From c7d332670c8aa2e078370a07128a6004f160a858 Mon Sep 17 00:00:00 2001 From: "M. Sherafati" Date: Thu, 24 Jan 2019 15:41:47 +0330 Subject: [PATCH 1/6] Create DataFrame of ID & Cat --- Cat-List.ipynb | 274 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 274 insertions(+) create mode 100644 Cat-List.ipynb diff --git a/Cat-List.ipynb b/Cat-List.ipynb new file mode 100644 index 0000000..20936b0 --- /dev/null +++ b/Cat-List.ipynb @@ -0,0 +1,274 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Create Category List " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Import Pacjage" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Var " + ] + }, + { + "cell_type": "code", + "execution_count": 43, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "CPU times: user 10.6 s, sys: 340 ms, total: 10.9 s\n", + "Wall time: 10.9 s\n" + ] + } + ], + "source": [ + "%%time\n", + "Archive_DataFrame = pd.read_csv('/home/mohammad/Documents/ML-Sharif/Archive_DataFrame.csv',index_col=0 ,usecols = ['subject','Unnamed: 0'],converters = {'subject' : eval})" + ] + }, + { + "cell_type": "code", + "execution_count": 46, + "metadata": {}, + "outputs": [], + "source": [ + "#Archive_DataFrame = Archive_DataFrame.rename(index=str, columns={\"Unnamed: 0\": \"ID\",})" + ] + }, + { + "cell_type": "code", + "execution_count": 47, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
subject
0705.1532[Mathematics - Dynamical Systems]
0706.1373[Nonlinear Sciences - Exactly Solvable and Int...
0706.2509[High Energy Physics - Theory]
0708.1339[Condensed Matter - Mesoscale and Nanoscale Ph...
0709.1272[Computer Science - Mathematical Software, Com...
\n", + "
" + ], + "text/plain": [ + " subject\n", + "0705.1532 [Mathematics - Dynamical Systems]\n", + "0706.1373 [Nonlinear Sciences - Exactly Solvable and Int...\n", + "0706.2509 [High Energy Physics - Theory]\n", + "0708.1339 [Condensed Matter - Mesoscale and Nanoscale Ph...\n", + "0709.1272 [Computer Science - Mathematical Software, Com..." + ] + }, + "execution_count": 47, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "Archive_DataFrame.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 49, + "metadata": {}, + "outputs": [], + "source": [ + "Archive_DataFrame.to_csv('Id_Cat.csv', sep='\\t')\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Main Code" + ] + }, + { + "cell_type": "code", + "execution_count": 40, + "metadata": {}, + "outputs": [], + "source": [ + "org_Sub = (Archive_DataFrame['subject'].values)" + ] + }, + { + "cell_type": "code", + "execution_count": 41, + "metadata": {}, + "outputs": [], + "source": [ + "# Seperate between 1 Sub, Two or more " + ] + }, + { + "cell_type": "code", + "execution_count": 42, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['Quantum Physics', 'Condensed Matter - Statistical Mechanics']" + ] + }, + "execution_count": 42, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "org_Sub[6]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Test Area" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['Quantum Physics', 'Condensed Matter - Statistical Mechanics']" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "Archive_DataFrame.iloc[6]['subject']\n" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['General Relativity and Quantum Cosmology',\n", + " 'Astrophysics - Cosmology and Nongalactic Astrophysics',\n", + " 'High Energy Physics - Theory']" + ] + }, + "execution_count": 19, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "Archive_DataFrame.iloc[-3]['subject']\n" + ] + }, + { + "cell_type": "code", + "execution_count": 50, + "metadata": {}, + "outputs": [], + "source": [ + "#Archive_DataFrame" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.7" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} From 7588bf80205db5e1bfc080b88b8589b7ed20e071 Mon Sep 17 00:00:00 2001 From: "M. Sherafati" Date: Sun, 3 Feb 2019 14:23:23 +0330 Subject: [PATCH 2/6] Create Function to produce Category --- .ipynb_checkpoints/Cat-List-checkpoint.ipynb | 1786 ++++++++++++++++++ Cat-List.ipynb | 1582 +++++++++++++++- 2 files changed, 3333 insertions(+), 35 deletions(-) create mode 100644 .ipynb_checkpoints/Cat-List-checkpoint.ipynb diff --git a/.ipynb_checkpoints/Cat-List-checkpoint.ipynb b/.ipynb_checkpoints/Cat-List-checkpoint.ipynb new file mode 100644 index 0000000..c2f68ca --- /dev/null +++ b/.ipynb_checkpoints/Cat-List-checkpoint.ipynb @@ -0,0 +1,1786 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Create Category List " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Import Pacjage" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Var " + ] + }, + { + "cell_type": "code", + "execution_count": 231, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "CPU times: user 12 s, sys: 412 ms, total: 12.4 s\n", + "Wall time: 12.5 s\n" + ] + } + ], + "source": [ + "%%time\n", + "Cat_Id = pd.read_csv('/home/mohammad/Documents/ML-Sharif/Archive_DataFrame.csv',index_col=0 ,usecols = ['subject','Unnamed: 0'],converters = {'subject' : eval})" + ] + }, + { + "cell_type": "code", + "execution_count": 224, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
subject
0705.1532[Mathematics - Dynamical Systems]
0706.1373[Nonlinear Sciences - Exactly Solvable and Int...
0706.2509[High Energy Physics - Theory]
0708.1339[Condensed Matter - Mesoscale and Nanoscale Ph...
0709.1272[Computer Science - Mathematical Software, Com...
\n", + "
" + ], + "text/plain": [ + " subject\n", + "0705.1532 [Mathematics - Dynamical Systems]\n", + "0706.1373 [Nonlinear Sciences - Exactly Solvable and Int...\n", + "0706.2509 [High Energy Physics - Theory]\n", + "0708.1339 [Condensed Matter - Mesoscale and Nanoscale Ph...\n", + "0709.1272 [Computer Science - Mathematical Software, Com..." + ] + }, + "execution_count": 224, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "Cat_Id.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 111, + "metadata": {}, + "outputs": [], + "source": [ + "# Save to CSV\n", + "#Archive_DataFrame.to_csv('Id_Cat.csv', sep='\\t')" + ] + }, + { + "cell_type": "code", + "execution_count": 112, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['Mathematics - Dynamical Systems']" + ] + }, + "execution_count": 112, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "(Cat_Id.iloc[0]['subject'])\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Main Code" + ] + }, + { + "cell_type": "code", + "execution_count": 134, + "metadata": {}, + "outputs": [], + "source": [ + "# One Argument \n", + "Cat_Id_OneArgu = Cat_Id[Cat_Id['subject'] == 'Mathematics - Dynamical Systems']\n", + "#w for w in z if not w in stop_words\n", + "#Cat_Id['subject'].iloc[1]\n" + ] + }, + { + "cell_type": "code", + "execution_count": 135, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
subject
\n", + "
" + ], + "text/plain": [ + "Empty DataFrame\n", + "Columns: [subject]\n", + "Index: []" + ] + }, + "execution_count": 135, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "Cat_Id_OneArgu" + ] + }, + { + "cell_type": "code", + "execution_count": 131, + "metadata": {}, + "outputs": [ + { + "ename": "KeyError", + "evalue": "False", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mKeyError\u001b[0m Traceback (most recent call last)", + "\u001b[0;32m~/.local/lib/python3.6/site-packages/pandas/core/indexes/base.py\u001b[0m in \u001b[0;36mget_loc\u001b[0;34m(self, key, method, tolerance)\u001b[0m\n\u001b[1;32m 3077\u001b[0m \u001b[0;32mtry\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 3078\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_engine\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mget_loc\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mkey\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 3079\u001b[0m \u001b[0;32mexcept\u001b[0m \u001b[0mKeyError\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32mpandas/_libs/index.pyx\u001b[0m in \u001b[0;36mpandas._libs.index.IndexEngine.get_loc\u001b[0;34m()\u001b[0m\n", + "\u001b[0;32mpandas/_libs/index.pyx\u001b[0m in \u001b[0;36mpandas._libs.index.IndexEngine.get_loc\u001b[0;34m()\u001b[0m\n", + "\u001b[0;32mpandas/_libs/hashtable_class_helper.pxi\u001b[0m in \u001b[0;36mpandas._libs.hashtable.PyObjectHashTable.get_item\u001b[0;34m()\u001b[0m\n", + "\u001b[0;32mpandas/_libs/hashtable_class_helper.pxi\u001b[0m in \u001b[0;36mpandas._libs.hashtable.PyObjectHashTable.get_item\u001b[0;34m()\u001b[0m\n", + "\u001b[0;31mKeyError\u001b[0m: False", + "\nDuring handling of the above exception, another exception occurred:\n", + "\u001b[0;31mKeyError\u001b[0m Traceback (most recent call last)", + "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0mCat_Id\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mCat_Id\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mlen\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mCat_Id\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;34m'subject'\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m==\u001b[0m\u001b[0;36m1\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m]\u001b[0m \u001b[0;31m#Cat_Id.iloc[0]['subject']\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m", + "\u001b[0;32m~/.local/lib/python3.6/site-packages/pandas/core/frame.py\u001b[0m in \u001b[0;36m__getitem__\u001b[0;34m(self, key)\u001b[0m\n\u001b[1;32m 2686\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_getitem_multilevel\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mkey\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 2687\u001b[0m \u001b[0;32melse\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 2688\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_getitem_column\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mkey\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 2689\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 2690\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0m_getitem_column\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mkey\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m~/.local/lib/python3.6/site-packages/pandas/core/frame.py\u001b[0m in \u001b[0;36m_getitem_column\u001b[0;34m(self, key)\u001b[0m\n\u001b[1;32m 2693\u001b[0m \u001b[0;31m# get column\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 2694\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mcolumns\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mis_unique\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 2695\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_get_item_cache\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mkey\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 2696\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 2697\u001b[0m \u001b[0;31m# duplicate columns & possible reduce dimensionality\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m~/.local/lib/python3.6/site-packages/pandas/core/generic.py\u001b[0m in \u001b[0;36m_get_item_cache\u001b[0;34m(self, item)\u001b[0m\n\u001b[1;32m 2487\u001b[0m \u001b[0mres\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mcache\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mget\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mitem\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 2488\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mres\u001b[0m \u001b[0;32mis\u001b[0m \u001b[0;32mNone\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 2489\u001b[0;31m \u001b[0mvalues\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_data\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mget\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mitem\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 2490\u001b[0m \u001b[0mres\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_box_item_values\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mitem\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mvalues\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 2491\u001b[0m \u001b[0mcache\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mitem\u001b[0m\u001b[0;34m]\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mres\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m~/.local/lib/python3.6/site-packages/pandas/core/internals.py\u001b[0m in \u001b[0;36mget\u001b[0;34m(self, item, fastpath)\u001b[0m\n\u001b[1;32m 4113\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 4114\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0;32mnot\u001b[0m \u001b[0misna\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mitem\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 4115\u001b[0;31m \u001b[0mloc\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mitems\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mget_loc\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mitem\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 4116\u001b[0m \u001b[0;32melse\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 4117\u001b[0m \u001b[0mindexer\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mnp\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0marange\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mlen\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mitems\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0misna\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mitems\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m~/.local/lib/python3.6/site-packages/pandas/core/indexes/base.py\u001b[0m in \u001b[0;36mget_loc\u001b[0;34m(self, key, method, tolerance)\u001b[0m\n\u001b[1;32m 3078\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_engine\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mget_loc\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mkey\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 3079\u001b[0m \u001b[0;32mexcept\u001b[0m \u001b[0mKeyError\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 3080\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_engine\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mget_loc\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_maybe_cast_indexer\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mkey\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 3081\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 3082\u001b[0m \u001b[0mindexer\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mget_indexer\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mkey\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mmethod\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mmethod\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mtolerance\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mtolerance\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32mpandas/_libs/index.pyx\u001b[0m in \u001b[0;36mpandas._libs.index.IndexEngine.get_loc\u001b[0;34m()\u001b[0m\n", + "\u001b[0;32mpandas/_libs/index.pyx\u001b[0m in \u001b[0;36mpandas._libs.index.IndexEngine.get_loc\u001b[0;34m()\u001b[0m\n", + "\u001b[0;32mpandas/_libs/hashtable_class_helper.pxi\u001b[0m in \u001b[0;36mpandas._libs.hashtable.PyObjectHashTable.get_item\u001b[0;34m()\u001b[0m\n", + "\u001b[0;32mpandas/_libs/hashtable_class_helper.pxi\u001b[0m in \u001b[0;36mpandas._libs.hashtable.PyObjectHashTable.get_item\u001b[0;34m()\u001b[0m\n", + "\u001b[0;31mKeyError\u001b[0m: False" + ] + } + ], + "source": [ + "Cat_Id[len(Cat_Id['subject'])==1] #Cat_Id.iloc[0]['subject']" + ] + }, + { + "cell_type": "code", + "execution_count": 126, + "metadata": {}, + "outputs": [ + { + "ename": "SyntaxError", + "evalue": "invalid syntax (, line 1)", + "output_type": "error", + "traceback": [ + "\u001b[0;36m File \u001b[0;32m\"\"\u001b[0;36m, line \u001b[0;32m1\u001b[0m\n\u001b[0;31m Cat_Id_OneArgu = Cat_Id[i for i in len(Cat_Id['subject']) if Cat_Id['subject'][i]== Cat_Id.iloc[i]['subject']]\u001b[0m\n\u001b[0m ^\u001b[0m\n\u001b[0;31mSyntaxError\u001b[0m\u001b[0;31m:\u001b[0m invalid syntax\n" + ] + } + ], + "source": [ + "Cat_Id_OneArgu = Cat_Id[i for i in len(Cat_Id['subject']) if Cat_Id['subject'][i]== Cat_Id.iloc[i]['subject']]" + ] + }, + { + "cell_type": "code", + "execution_count": 225, + "metadata": {}, + "outputs": [], + "source": [ + "def splitter(cat_entry):\n", + " elm = cat_entry.split(' - ')\n", + " if len(elm)==1:\n", + " return [elm[0], np.nan]\n", + " else:\n", + " return elm" + ] + }, + { + "cell_type": "code", + "execution_count": 240, + "metadata": {}, + "outputs": [], + "source": [ + "'''\n", + "flag 0=> label = cat[0]\n", + "flag 1=> label = sub_cat[0]\n", + "flag 2=> label = cat\n", + "flag 3=> label = sub_cat\n", + "\n", + "\n", + "input cat_list is assued to be\n", + "[cat1-subcat1,cat2-subcat2,....]\n", + "'''\n", + "def fun_cat(cat_list, flag=0):\n", + "# print(cat_list)\n", + " if flag==0:\n", + " \n", + " return splitter(cat_list[0])[0]\n", + " elif flag==1:\n", + "# print(cat_list[0])\n", + " return splitter(cat_list[0])[1]\n", + " elif flag==2:\n", + " return [splitter(c)[0] for c in cat_list]\n", + " elif flag==3:\n", + " return [splitter(c)[1] for c in cat_list]\n", + " " + ] + }, + { + "cell_type": "code", + "execution_count": 235, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
subject
0705.1532[Mathematics - Dynamical Systems]
0706.1373[Nonlinear Sciences - Exactly Solvable and Int...
0706.2509[High Energy Physics - Theory]
0708.1339[Condensed Matter - Mesoscale and Nanoscale Ph...
0709.1272[Computer Science - Mathematical Software, Com...
\n", + "
" + ], + "text/plain": [ + " subject\n", + "0705.1532 [Mathematics - Dynamical Systems]\n", + "0706.1373 [Nonlinear Sciences - Exactly Solvable and Int...\n", + "0706.2509 [High Energy Physics - Theory]\n", + "0708.1339 [Condensed Matter - Mesoscale and Nanoscale Ph...\n", + "0709.1272 [Computer Science - Mathematical Software, Com..." + ] + }, + "execution_count": 235, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "len( Cat_Id['subject'] )#.apply(lambda x: fun_cat(x, flag=3) )\n", + "test_df = Cat_Id.copy().iloc[:100]\n", + "\n", + "test_df.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 203, + "metadata": {}, + "outputs": [], + "source": [ + "test_df = Cat_Id.iloc[:1000]" + ] + }, + { + "cell_type": "code", + "execution_count": 244, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
subject
0705.1532Dynamical Systems
0706.1373Exactly Solvable and Integrable Systems
0706.2509Theory
0708.1339Mesoscale and Nanoscale Physics
0709.1272Mathematical Software
0709.1704NaN
0710.2868NaN
0710.4005Fluid Dynamics
0711.4246NaN
0711.4508Computational Complexity
\n", + "
" + ], + "text/plain": [ + " subject\n", + "0705.1532 Dynamical Systems\n", + "0706.1373 Exactly Solvable and Integrable Systems\n", + "0706.2509 Theory\n", + "0708.1339 Mesoscale and Nanoscale Physics\n", + "0709.1272 Mathematical Software\n", + "0709.1704 NaN\n", + "0710.2868 NaN\n", + "0710.4005 Fluid Dynamics\n", + "0711.4246 NaN\n", + "0711.4508 Computational Complexity" + ] + }, + "execution_count": 244, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "test_df = Cat_Id.copy().iloc[:100]\n", + "test_df['subject'] = test_df['subject'].apply(lambda x: fun_cat(x, flag=1) )\n", + "test_df.head(10)" + ] + }, + { + "cell_type": "code", + "execution_count": 178, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'Nonlinear Sciences'" + ] + }, + "execution_count": 178, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "fun_cat( test_df['subject'].iloc[1] )" + ] + }, + { + "cell_type": "code", + "execution_count": 163, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['Mesoscale and Nanoscale Physics', 'Superconductivity']" + ] + }, + "execution_count": 163, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "[c.split(' - ',1)[1] for c in Cat_Id['subject'][3]]" + ] + }, + { + "cell_type": "code", + "execution_count": 117, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['Mathematics - Dynamical Systems']" + ] + }, + "execution_count": 117, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "Cat_Id.iloc[0]['subject']\n" + ] + }, + { + "cell_type": "code", + "execution_count": 118, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
subject
\n", + "
" + ], + "text/plain": [ + "Empty DataFrame\n", + "Columns: [subject]\n", + "Index: []" + ] + }, + "execution_count": 118, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "Cat_Id_OneArgu" + ] + }, + { + "cell_type": "code", + "execution_count": 119, + "metadata": {}, + "outputs": [], + "source": [ + "org_Sub = (Cat_Id['subject'].values)" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [], + "source": [ + "# Save Just First Argument of Category\n", + "First_Argu = []\n", + "for i in org_Sub:\n", + " Temp = (i[0])\n", + " if '-' in Temp : \n", + " MainBranch , SubBranch = Temp.split(' - ',1)\n", + " \n", + " First_Argu.append([MainBranch,SubBranch])\n", + " \n", + " else:\n", + " First_Argu.append([Temp,'Null'])" + ] + }, + { + "cell_type": "code", + "execution_count": 136, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[['Mathematics', 'Dynamical Systems'],\n", + " ['Nonlinear Sciences', 'Exactly Solvable and Integrable Systems'],\n", + " ['High Energy Physics', 'Theory'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Computer Science', 'Mathematical Software'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Physics', 'Fluid Dynamics'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['Computer Science', 'Computational Complexity'],\n", + " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", + " ['Computer Science', 'Computational Geometry'],\n", + " ['Mathematics', 'Analysis of PDEs'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Mathematics', 'Analysis of PDEs'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Mathematics', 'Group Theory'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Computer Science', 'Information Theory'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Computer Science', 'Digital Libraries'],\n", + " ['General Relativity and Quantum Cosmology', 'Null'],\n", + " ['Astrophysics', 'Null'],\n", + " ['High Energy Physics', 'Experiment'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Condensed Matter', 'Superconductivity'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Nonlinear Sciences', 'Adaptation and Self-Organizing Systems'],\n", + " ['Physics', 'General Physics'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Mathematics', 'Analysis of PDEs'],\n", + " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Mathematics', 'Logic'],\n", + " ['Mathematics', 'Group Theory'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['Mathematics', 'Algebraic Topology'],\n", + " ['Computer Science', 'Operating Systems'],\n", + " ['Mathematics', 'Commutative Algebra'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Mathematics', 'Analysis of PDEs'],\n", + " ['Physics', 'Optics'],\n", + " ['Mathematics', 'Optimization and Control'],\n", + " ['Mathematics', 'Operator Algebras'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Mathematics', 'Rings and Algebras'],\n", + " ['High Energy Physics', 'Phenomenology'],\n", + " ['Computer Science', 'Artificial Intelligence'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['Mathematics', 'Algebraic Topology'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Computer Science', 'Logic in Computer Science'],\n", + " ['Physics', 'Space Physics'],\n", + " ['Mathematics', 'K-Theory and Homology'],\n", + " ['Computer Science', 'Information Theory'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Condensed Matter', 'Disordered Systems and Neural Networks'],\n", + " ['Computer Science', 'Networking and Internet Architecture'],\n", + " ['Computer Science', 'Networking and Internet Architecture'],\n", + " ['Computer Science', 'Networking and Internet Architecture'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['Physics', 'Accelerator Physics'],\n", + " ['High Energy Physics', 'Phenomenology'],\n", + " ['Quantitative Biology', 'Populations and Evolution'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Mathematics', 'Analysis of PDEs'],\n", + " ['Nuclear Theory', 'Null'],\n", + " ['Physics', 'Physics and Society'],\n", + " ['Computer Science', 'Information Theory'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Mathematics', 'Quantum Algebra'],\n", + " ['Mathematics', 'History and Overview'],\n", + " ['Computer Science', 'Cryptography and Security'],\n", + " ['Nuclear Theory', 'Null'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['Nonlinear Sciences', 'Chaotic Dynamics'],\n", + " ['Computer Science', 'Data Structures and Algorithms'],\n", + " ['Nonlinear Sciences', 'Chaotic Dynamics'],\n", + " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", + " ['Condensed Matter', 'Other Condensed Matter'],\n", + " ['Mathematics', 'Metric Geometry'],\n", + " ['Physics', 'Atomic and Molecular Clusters'],\n", + " ['Physics', 'Atomic Physics'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['Condensed Matter', 'Disordered Systems and Neural Networks'],\n", + " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", + " ['Condensed Matter', 'Statistical Mechanics'],\n", + " ['High Energy Physics', 'Phenomenology'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Computer Science', 'Computer Science and Game Theory'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Condensed Matter', 'Statistical Mechanics'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Computer Science', 'Computer Science and Game Theory'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['Mathematics', 'History and Overview'],\n", + " ['Mathematics', 'History and Overview'],\n", + " ['Mathematics', 'Representation Theory'],\n", + " ['Mathematics', 'Functional Analysis'],\n", + " ['Physics', 'Atomic Physics'],\n", + " ['Physics', 'Atomic Physics'],\n", + " ['Condensed Matter', 'Other Condensed Matter'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Mathematics', 'Complex Variables'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['Physics', 'Data Analysis, Statistics and Probability'],\n", + " ['Computer Science', 'Symbolic Computation'],\n", + " ['Mathematics', 'Number Theory'],\n", + " ['Mathematics', 'Representation Theory'],\n", + " ['Computer Science', 'Information Theory'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Computer Science', 'Data Structures and Algorithms'],\n", + " ['Physics', 'Physics and Society'],\n", + " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", + " ['Computer Science', 'Information Retrieval'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Condensed Matter', 'Superconductivity'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Condensed Matter', 'Soft Condensed Matter'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Mathematics', 'Quantum Algebra'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['General Relativity and Quantum Cosmology', 'Null'],\n", + " ['Computer Science', 'Information Theory'],\n", + " ['Computer Science', 'Information Theory'],\n", + " ['Computer Science', 'Information Theory'],\n", + " ['Computer Science', 'Information Theory'],\n", + " ['Computer Science', 'Information Theory'],\n", + " ['Computer Science', 'Information Theory'],\n", + " ['Computer Science', 'Information Theory'],\n", + " ['Computer Science', 'Information Theory'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['High Energy Physics', 'Phenomenology'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['High Energy Physics', 'Phenomenology'],\n", + " ['Mathematics', 'Quantum Algebra'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Mathematics', 'Classical Analysis and ODEs'],\n", + " ['Physics', 'Chemical Physics'],\n", + " ['Physics', 'Optics'],\n", + " ['Physics', 'Data Analysis, Statistics and Probability'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['High Energy Physics', 'Theory'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Mathematics', 'Rings and Algebras'],\n", + " ['Mathematics', 'Analysis of PDEs'],\n", + " ['Physics', 'General Physics'],\n", + " ['Mathematics', 'K-Theory and Homology'],\n", + " ['Mathematics', 'Numerical Analysis'],\n", + " ['Mathematics', 'Numerical Analysis'],\n", + " ['High Energy Physics', 'Phenomenology'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Mathematics', 'Optimization and Control'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['Mathematics', 'Analysis of PDEs'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Condensed Matter', 'Disordered Systems and Neural Networks'],\n", + " ['Condensed Matter', 'Disordered Systems and Neural Networks'],\n", + " ['Condensed Matter', 'Soft Condensed Matter'],\n", + " ['Condensed Matter', 'Soft Condensed Matter'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['Mathematics', 'History and Overview'],\n", + " ['Nonlinear Sciences', 'Chaotic Dynamics'],\n", + " ['Physics', 'Atmospheric and Oceanic Physics'],\n", + " ['Physics', 'Chemical Physics'],\n", + " ['Condensed Matter', 'Disordered Systems and Neural Networks'],\n", + " ['General Relativity and Quantum Cosmology', 'Null'],\n", + " ['Quantitative Biology', 'Populations and Evolution'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['Physics', 'Optics'],\n", + " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", + " ['Mathematics', 'Geometric Topology'],\n", + " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['High Energy Physics', 'Theory'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Mathematics', 'Dynamical Systems'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Mathematics', 'Geometric Topology'],\n", + " ['Mathematics', 'Representation Theory'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Computer Science', 'Information Theory'],\n", + " ['High Energy Physics', 'Phenomenology'],\n", + " ['Computer Science', 'Computational Complexity'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['Mathematics', 'Dynamical Systems'],\n", + " ['Mathematics', 'Dynamical Systems'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Mathematics', 'Geometric Topology'],\n", + " ['Statistics', 'Methodology'],\n", + " ['Condensed Matter', 'Disordered Systems and Neural Networks'],\n", + " ['Condensed Matter', 'Other Condensed Matter'],\n", + " ['Physics', 'Atmospheric and Oceanic Physics'],\n", + " ['Mathematics', 'Complex Variables'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Computer Science', 'Cryptography and Security'],\n", + " ['Nuclear Experiment', 'Null'],\n", + " ['General Relativity and Quantum Cosmology', 'Null'],\n", + " ['Quantitative Biology', 'Neurons and Cognition'],\n", + " ['Physics', 'General Physics'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Physics', 'History and Philosophy of Physics'],\n", + " ['Physics', 'Classical Physics'],\n", + " ['Mathematics', 'Analysis of PDEs'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Computer Science', 'Computation and Language'],\n", + " ['Mathematics', 'Optimization and Control'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Mathematics', 'Optimization and Control'],\n", + " ['High Energy Physics', 'Theory'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['Mathematics', 'Geometric Topology'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['Computer Science', 'Other Computer Science'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Condensed Matter', 'Other Condensed Matter'],\n", + " ['Condensed Matter', 'Statistical Mechanics'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['Mathematics', 'Group Theory'],\n", + " ['Mathematics', 'Group Theory'],\n", + " ['Mathematics', 'Commutative Algebra'],\n", + " ['Mathematics', 'Representation Theory'],\n", + " ['Mathematics', 'Representation Theory'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Mathematics', 'Number Theory'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Condensed Matter', 'Superconductivity'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Condensed Matter', 'Superconductivity'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Physics', 'Accelerator Physics'],\n", + " ['Physics', 'Accelerator Physics'],\n", + " ['Condensed Matter', 'Superconductivity'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['Mathematics', 'Representation Theory'],\n", + " ['Mathematics', 'Representation Theory'],\n", + " ['Mathematics', 'Representation Theory'],\n", + " ['Mathematics', 'Representation Theory'],\n", + " ['Mathematics', 'Number Theory'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Physics', 'Optics'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Mathematics', 'Quantum Algebra'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Quantitative Biology', 'Molecular Networks'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Condensed Matter', 'Disordered Systems and Neural Networks'],\n", + " ['Condensed Matter', 'Superconductivity'],\n", + " ['Condensed Matter', 'Other Condensed Matter'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Condensed Matter', 'Other Condensed Matter'],\n", + " ['Mathematics', 'Optimization and Control'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Mathematics', 'Functional Analysis'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Mathematics', 'Classical Analysis and ODEs'],\n", + " ['Physics', 'Plasma Physics'],\n", + " ['High Energy Physics', 'Phenomenology'],\n", + " ['Mathematics', 'Optimization and Control'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['High Energy Physics', 'Phenomenology'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Computer Science', 'Artificial Intelligence'],\n", + " ['Mathematics', 'Representation Theory'],\n", + " ['Computer Science', 'Data Structures and Algorithms'],\n", + " ['High Energy Physics', 'Phenomenology'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Mathematics', 'Representation Theory'],\n", + " ['Mathematics', 'Representation Theory'],\n", + " ['Mathematics', 'Group Theory'],\n", + " ['Mathematics', 'Representation Theory'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Mathematics', 'Representation Theory'],\n", + " ['Mathematics', 'Group Theory'],\n", + " ['Mathematics', 'Representation Theory'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Mathematics', 'Algebraic Topology'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['Physics', 'Optics'],\n", + " ['Physics', 'Optics'],\n", + " ['Condensed Matter', 'Statistical Mechanics'],\n", + " ['Nonlinear Sciences', 'Exactly Solvable and Integrable Systems'],\n", + " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", + " ['Mathematics', 'Commutative Algebra'],\n", + " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", + " ['Mathematics', 'Numerical Analysis'],\n", + " ['Mathematics', 'Logic'],\n", + " ['Physics', 'Physics and Society'],\n", + " ['Mathematics', 'Metric Geometry'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Condensed Matter', 'Statistical Mechanics'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['Condensed Matter', 'Soft Condensed Matter'],\n", + " ['Condensed Matter', 'Other Condensed Matter'],\n", + " ['Condensed Matter', 'Statistical Mechanics'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Condensed Matter', 'Superconductivity'],\n", + " ['Mathematics', 'Algebraic Topology'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Nuclear Theory', 'Null'],\n", + " ['High Energy Physics', 'Theory'],\n", + " ['High Energy Physics', 'Theory'],\n", + " ['Mathematics', 'Dynamical Systems'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Nuclear Theory', 'Null'],\n", + " ['Mathematics', 'Logic'],\n", + " ['Mathematics', 'Logic'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Mathematics', 'Functional Analysis'],\n", + " ['Mathematics', 'Functional Analysis'],\n", + " ['Mathematics', 'Functional Analysis'],\n", + " ['Mathematics', 'Functional Analysis'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['Mathematics', 'Algebraic Topology'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Mathematics', 'Complex Variables'],\n", + " ['Mathematics', 'Complex Variables'],\n", + " ['Mathematics', 'Analysis of PDEs'],\n", + " ['Computer Science', 'Logic in Computer Science'],\n", + " ['Mathematics', 'History and Overview'],\n", + " ['Physics', 'Fluid Dynamics'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['Physics', 'Biological Physics'],\n", + " ['Mathematics', 'Representation Theory'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Nonlinear Sciences', 'Pattern Formation and Solitons'],\n", + " ['Nonlinear Sciences', 'Cellular Automata and Lattice Gases'],\n", + " ['Statistics', 'Computation'],\n", + " ['Physics', 'Biological Physics'],\n", + " ['Physics', 'Atomic Physics'],\n", + " ['Computer Science', 'Information Theory'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['High Energy Physics', 'Phenomenology'],\n", + " ['Physics', 'General Physics'],\n", + " ['Mathematics', 'Group Theory'],\n", + " ['Mathematics', 'General Mathematics'],\n", + " ['Physics', 'General Physics'],\n", + " ['Computer Science', 'Human-Computer Interaction'],\n", + " ['General Relativity and Quantum Cosmology', 'Null'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Nonlinear Sciences', 'Chaotic Dynamics'],\n", + " ['Computer Science', 'Human-Computer Interaction'],\n", + " ['Nonlinear Sciences', 'Adaptation and Self-Organizing Systems'],\n", + " ['Condensed Matter', 'Other Condensed Matter'],\n", + " ['Physics', 'General Physics'],\n", + " ['Computer Science', 'Human-Computer Interaction'],\n", + " ['Mathematics', 'Classical Analysis and ODEs'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Mathematics', 'Analysis of PDEs'],\n", + " ['Quantitative Biology', 'Genomics'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Mathematics', 'Complex Variables'],\n", + " ['High Energy Physics', 'Phenomenology'],\n", + " ['General Relativity and Quantum Cosmology', 'Null'],\n", + " ['Mathematics', 'Dynamical Systems'],\n", + " ['Condensed Matter', 'Other Condensed Matter'],\n", + " ['Physics', 'Physics and Society'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Nuclear Experiment', 'Null'],\n", + " ['Mathematics', 'Analysis of PDEs'],\n", + " ['Mathematics', 'Geometric Topology'],\n", + " ['Mathematics', 'Category Theory'],\n", + " ['Mathematics', 'Number Theory'],\n", + " ['General Relativity and Quantum Cosmology', 'Null'],\n", + " ['Computer Science', 'Human-Computer Interaction'],\n", + " ['Mathematics', 'Optimization and Control'],\n", + " ['Mathematics', 'Geometric Topology'],\n", + " ['Mathematics', 'Category Theory'],\n", + " ['Physics', 'General Physics'],\n", + " ['Computer Science', 'Computational Geometry'],\n", + " ['Mathematics', 'Analysis of PDEs'],\n", + " ['Physics', 'Physics and Society'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Nuclear Experiment', 'Null'],\n", + " ['Physics', 'Geophysics'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Computer Science', 'Cryptography and Security'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Mathematics', 'Representation Theory'],\n", + " ['Mathematics', 'Representation Theory'],\n", + " ['Mathematics', 'Commutative Algebra'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Mathematics', 'Rings and Algebras'],\n", + " ['Computer Science', 'Information Theory'],\n", + " ['Condensed Matter', 'Other Condensed Matter'],\n", + " ['Mathematics', 'Number Theory'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", + " ['Quantitative Biology', 'Populations and Evolution'],\n", + " ['Physics', 'Fluid Dynamics'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Condensed Matter', 'Statistical Mechanics'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Condensed Matter', 'Other Condensed Matter'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Condensed Matter', 'Other Condensed Matter'],\n", + " ['Condensed Matter', 'Disordered Systems and Neural Networks'],\n", + " ['Condensed Matter', 'Superconductivity'],\n", + " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", + " ['Computer Science', 'Discrete Mathematics'],\n", + " ['Mathematics', 'General Mathematics'],\n", + " ['Condensed Matter', 'Superconductivity'],\n", + " ['Computer Science', 'Computer Vision and Pattern Recognition'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Computer Science', 'Information Theory'],\n", + " ['Mathematics', 'Rings and Algebras'],\n", + " ['Physics', 'Optics'],\n", + " ['Quantitative Biology', 'Genomics'],\n", + " ['Mathematics', 'Optimization and Control'],\n", + " ['Mathematics', 'Quantum Algebra'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", + " ['High Energy Physics', 'Phenomenology'],\n", + " ['Quantitative Biology', 'Quantitative Methods'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Mathematics', 'Statistics Theory'],\n", + " ['Computer Science', 'Information Theory'],\n", + " ['Mathematics', 'Statistics Theory'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Mathematics', 'Statistics Theory'],\n", + " ['Nuclear Experiment', 'Null'],\n", + " ['Statistics', 'Machine Learning'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Computer Science', 'Computer Science and Game Theory'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Physics', 'Fluid Dynamics'],\n", + " ['Mathematics', 'Probability'],\n", + " ['High Energy Physics', 'Experiment'],\n", + " ['Physics', 'Classical Physics'],\n", + " ['Mathematics', 'Number Theory'],\n", + " ['General Relativity and Quantum Cosmology', 'Null'],\n", + " ['Physics', 'Data Analysis, Statistics and Probability'],\n", + " ['Condensed Matter', 'Statistical Mechanics'],\n", + " ['Condensed Matter', 'Statistical Mechanics'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['Computer Science', 'Artificial Intelligence'],\n", + " ['Mathematics', 'Numerical Analysis'],\n", + " ['Mathematics', 'Rings and Algebras'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Nonlinear Sciences', 'Pattern Formation and Solitons'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Mathematics', 'Number Theory'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Quantitative Biology', 'Cell Behavior'],\n", + " ['Mathematics', 'Number Theory'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Physics', 'Biological Physics'],\n", + " ['Physics', 'Instrumentation and Detectors'],\n", + " ['Physics', 'Physics Education'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Mathematics', 'Representation Theory'],\n", + " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", + " ['High Energy Physics', 'Phenomenology'],\n", + " ['Mathematics', 'Geometric Topology'],\n", + " ['Mathematics', 'Geometric Topology'],\n", + " ['Mathematics', 'Geometric Topology'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Condensed Matter', 'Superconductivity'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Condensed Matter', 'Soft Condensed Matter'],\n", + " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['Physics', 'Instrumentation and Detectors'],\n", + " ['Condensed Matter', 'Soft Condensed Matter'],\n", + " ['Condensed Matter', 'Statistical Mechanics'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Physics', 'Physics and Society'],\n", + " ['Condensed Matter', 'Superconductivity'],\n", + " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Condensed Matter', 'Superconductivity'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['High Energy Physics', 'Phenomenology'],\n", + " ['Statistics', 'Computation'],\n", + " ['Mathematics', 'Statistics Theory'],\n", + " ['Condensed Matter', 'Superconductivity'],\n", + " ['High Energy Physics', 'Theory'],\n", + " ['Condensed Matter', 'Superconductivity'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", + " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", + " ['Physics', 'Physics and Society'],\n", + " ['Condensed Matter', 'Soft Condensed Matter'],\n", + " ['Condensed Matter', 'Soft Condensed Matter'],\n", + " ['Physics', 'Physics Education'],\n", + " ['Computer Science', 'Information Theory'],\n", + " ['Astrophysics', 'Null'],\n", + " ['High Energy Physics', 'Phenomenology'],\n", + " ['Mathematics', 'Functional Analysis'],\n", + " ['High Energy Physics', 'Theory'],\n", + " ['High Energy Physics', 'Theory'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Physics', 'Space Physics'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Mathematics', 'Statistics Theory'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Astrophysics', 'Null'],\n", + " ['High Energy Physics', 'Theory'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Condensed Matter', 'Soft Condensed Matter'],\n", + " ['Condensed Matter', 'Soft Condensed Matter'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Mathematics', 'Analysis of PDEs'],\n", + " ['High Energy Physics', 'Phenomenology'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Computer Science', 'Multiagent Systems'],\n", + " ['Computer Science', 'Databases'],\n", + " ['Computer Science', 'Databases'],\n", + " ['Computer Science', 'Databases'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Computer Science', 'Databases'],\n", + " ['Computer Science', 'Symbolic Computation'],\n", + " ['Mathematics', 'Analysis of PDEs'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['High Energy Physics', 'Theory'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Quantitative Biology', 'Genomics'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Astrophysics', 'Null'],\n", + " ['High Energy Physics', 'Phenomenology'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Mathematics', 'Functional Analysis'],\n", + " ['Computer Science', 'Information Theory'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['Condensed Matter', 'Other Condensed Matter'],\n", + " ['Physics', 'Instrumentation and Detectors'],\n", + " ['Physics', 'General Physics'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Mathematics', 'Number Theory'],\n", + " ['Quantitative Biology', 'Biomolecules'],\n", + " ['High Energy Physics', 'Theory'],\n", + " ['Condensed Matter', 'Soft Condensed Matter'],\n", + " ['High Energy Physics', 'Theory'],\n", + " ['Mathematics', 'Representation Theory'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['Mathematics', 'Statistics Theory'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['Mathematics', 'Spectral Theory'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['Nonlinear Sciences', 'Exactly Solvable and Integrable Systems'],\n", + " ['Nuclear Theory', 'Null'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Physics', 'Geophysics'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Condensed Matter', 'Statistical Mechanics'],\n", + " ['Mathematics', 'Statistics Theory'],\n", + " ['Quantitative Biology', 'Neurons and Cognition'],\n", + " ['Condensed Matter', 'Soft Condensed Matter'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Mathematics', 'Number Theory'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Mathematics', 'Statistics Theory'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['Condensed Matter', 'Statistical Mechanics'],\n", + " ['Condensed Matter', 'Soft Condensed Matter'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Mathematics', 'Geometric Topology'],\n", + " ['Condensed Matter', 'Statistical Mechanics'],\n", + " ['Statistics', 'Applications'],\n", + " ['Mathematics', 'Metric Geometry'],\n", + " ['General Relativity and Quantum Cosmology', 'Null'],\n", + " ['Physics', 'Geophysics'],\n", + " ['Condensed Matter', 'Soft Condensed Matter'],\n", + " ['Condensed Matter', 'Disordered Systems and Neural Networks'],\n", + " ['Condensed Matter', 'Soft Condensed Matter'],\n", + " ['Condensed Matter', 'Disordered Systems and Neural Networks'],\n", + " ['Condensed Matter', 'Superconductivity'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Condensed Matter', 'Superconductivity'],\n", + " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", + " ['Physics', 'Optics'],\n", + " ['Condensed Matter', 'Other Condensed Matter'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", + " ['Mathematics', 'Functional Analysis'],\n", + " ['Condensed Matter', 'Other Condensed Matter'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Condensed Matter', 'Statistical Mechanics'],\n", + " ['Mathematics', 'Quantum Algebra'],\n", + " ['Condensed Matter', 'Statistical Mechanics'],\n", + " ['Mathematics', 'Algebraic Topology'],\n", + " ['High Energy Physics', 'Experiment'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Statistics', 'Applications'],\n", + " ['High Energy Physics', 'Phenomenology'],\n", + " ['Mathematics', 'Geometric Topology'],\n", + " ['High Energy Physics', 'Experiment'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Mathematics', 'Symplectic Geometry'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Computer Science', 'Learning'],\n", + " ['Nonlinear Sciences', 'Exactly Solvable and Integrable Systems'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Nuclear Experiment', 'Null'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Condensed Matter', 'Statistical Mechanics'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Mathematics', 'Functional Analysis'],\n", + " ['Mathematics', 'Functional Analysis'],\n", + " ['Physics', 'Atomic Physics'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Mathematics', 'Number Theory'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Computer Science', 'Databases'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Physics', 'General Physics'],\n", + " ['Mathematics', 'Functional Analysis'],\n", + " ['High Energy Physics', 'Lattice'],\n", + " ['Mathematics', 'Functional Analysis'],\n", + " ['Physics', 'Physics Education'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Mathematics', 'Analysis of PDEs'],\n", + " ['Mathematics', 'Analysis of PDEs'],\n", + " ['Mathematics', 'Representation Theory'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['High Energy Physics', 'Phenomenology'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['Quantitative Biology', 'Populations and Evolution'],\n", + " ['Mathematics', 'Functional Analysis'],\n", + " ['Computer Science', 'Information Theory'],\n", + " ['Astrophysics', 'Null'],\n", + " ['High Energy Physics', 'Theory'],\n", + " ['Mathematics', 'Algebraic Topology'],\n", + " ['Mathematics', 'Geometric Topology'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Mathematics', 'Group Theory'],\n", + " ['Physics', 'Classical Physics'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", + " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", + " ['Computer Science', 'Computational Complexity'],\n", + " ['Mathematics', 'Classical Analysis and ODEs'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['High Energy Physics', 'Experiment'],\n", + " ['High Energy Physics', 'Experiment'],\n", + " ['High Energy Physics', 'Experiment'],\n", + " ['High Energy Physics', 'Experiment'],\n", + " ['High Energy Physics', 'Experiment'],\n", + " ['High Energy Physics', 'Experiment'],\n", + " ['High Energy Physics', 'Experiment'],\n", + " ['High Energy Physics', 'Experiment'],\n", + " ['High Energy Physics', 'Experiment'],\n", + " ['High Energy Physics', 'Experiment'],\n", + " ['High Energy Physics', 'Experiment'],\n", + " ['High Energy Physics', 'Experiment'],\n", + " ['High Energy Physics', 'Experiment'],\n", + " ['High Energy Physics', 'Experiment'],\n", + " ['High Energy Physics', 'Experiment'],\n", + " ['High Energy Physics', 'Experiment'],\n", + " ['High Energy Physics', 'Experiment'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['Physics', 'Physics and Society'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['Condensed Matter', 'Other Condensed Matter'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Mathematics', 'Number Theory'],\n", + " ['High Energy Physics', 'Theory'],\n", + " ['Physics', 'Optics'],\n", + " ['Mathematics', 'Group Theory'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Mathematics', 'Operator Algebras'],\n", + " ['Mathematics', 'Analysis of PDEs'],\n", + " ['Mathematics', 'Symplectic Geometry'],\n", + " ['Condensed Matter', 'Soft Condensed Matter'],\n", + " ['Condensed Matter', 'Superconductivity'],\n", + " ['Physics', 'Atmospheric and Oceanic Physics'],\n", + " ['Mathematics', 'Dynamical Systems'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['Mathematics', 'Statistics Theory'],\n", + " ['Mathematics', 'Spectral Theory'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Condensed Matter', 'Disordered Systems and Neural Networks'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Condensed Matter', 'Statistical Mechanics'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Physics', 'Optics'],\n", + " ['Condensed Matter', 'Statistical Mechanics'],\n", + " ['Condensed Matter', 'Statistical Mechanics'],\n", + " ['Condensed Matter', 'Other Condensed Matter'],\n", + " ['Mathematics', 'Quantum Algebra'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['High Energy Physics', 'Theory'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Mathematics', 'Number Theory'],\n", + " ['Quantitative Biology', 'Cell Behavior'],\n", + " ['High Energy Physics', 'Phenomenology'],\n", + " ['Physics', 'General Physics'],\n", + " ['Mathematics', 'Numerical Analysis'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Nuclear Theory', 'Null'],\n", + " ['Mathematics', 'Analysis of PDEs'],\n", + " ['High Energy Physics', 'Theory'],\n", + " ['Mathematics', 'Quantum Algebra'],\n", + " ['Physics', 'Optics'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['Condensed Matter', 'Soft Condensed Matter'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Condensed Matter', 'Statistical Mechanics'],\n", + " ['Computer Science', 'Computation and Language'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['High Energy Physics', 'Phenomenology'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Physics', 'General Physics'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Physics', 'General Physics'],\n", + " ['Condensed Matter', 'Soft Condensed Matter'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Condensed Matter', 'Disordered Systems and Neural Networks'],\n", + " ['Physics', 'Instrumentation and Detectors'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Physics', 'Physics and Society'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Mathematics', 'Numerical Analysis'],\n", + " ['High Energy Physics', 'Theory'],\n", + " ['Physics', 'Physics Education'],\n", + " ['Mathematics', 'Numerical Analysis'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Condensed Matter', 'Statistical Mechanics'],\n", + " ['Condensed Matter', 'Statistical Mechanics'],\n", + " ['Condensed Matter', 'Statistical Mechanics'],\n", + " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", + " ['Condensed Matter', 'Statistical Mechanics'],\n", + " ['Computer Science', 'Computational Complexity'],\n", + " ['Computer Science', 'Discrete Mathematics'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Mathematics', 'Metric Geometry'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['Computer Science', 'Human-Computer Interaction'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Mathematics', 'Geometric Topology'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Condensed Matter', 'Other Condensed Matter'],\n", + " ['Mathematics', 'Number Theory'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Condensed Matter', 'Superconductivity'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['High Energy Physics', 'Theory'],\n", + " ['Mathematics', 'Algebraic Topology'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Computer Science', 'Cryptography and Security'],\n", + " ['Mathematics', 'Statistics Theory'],\n", + " ['Quantitative Biology', 'Quantitative Methods'],\n", + " ['Computer Science', 'Information Retrieval'],\n", + " ['Computer Science', 'Learning'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Mathematics', 'Geometric Topology'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['Computer Science', 'Computational Complexity'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Computer Science', 'Software Engineering'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Mathematics', 'Analysis of PDEs'],\n", + " ['Computer Science', 'Computers and Society'],\n", + " ['Mathematics', 'Functional Analysis'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Mathematics', 'Commutative Algebra'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Computer Science', 'Information Theory'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Computer Science', 'Information Theory'],\n", + " ['Mathematics', 'Analysis of PDEs'],\n", + " ['Mathematics', 'Dynamical Systems'],\n", + " ['Quantitative Biology', 'Populations and Evolution'],\n", + " ['Mathematics', 'Complex Variables'],\n", + " ['Physics', 'Computational Physics'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Computer Science', 'Other Computer Science'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Physics', 'Plasma Physics'],\n", + " ['Nonlinear Sciences', 'Chaotic Dynamics'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Physics', 'Computational Physics'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Computer Science', 'Neural and Evolutionary Computing'],\n", + " ['Mathematics', 'Dynamical Systems'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Computer Science', 'Distributed, Parallel, and Cluster Computing'],\n", + " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", + " ['High Energy Physics', 'Phenomenology'],\n", + " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", + " ['Computer Science', 'Artificial Intelligence'],\n", + " ['Mathematics', 'General Mathematics'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Mathematics', 'Dynamical Systems'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['General Relativity and Quantum Cosmology', 'Null'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Condensed Matter', 'Other Condensed Matter'],\n", + " ['Nonlinear Sciences', 'Chaotic Dynamics'],\n", + " ['Mathematics', 'Spectral Theory'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Physics', 'Classical Physics'],\n", + " ['Physics', 'Atomic and Molecular Clusters'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['Physics', 'Atomic and Molecular Clusters'],\n", + " ['Condensed Matter', 'Superconductivity'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Quantitative Biology', 'Neurons and Cognition'],\n", + " ['Physics', 'Physics and Society'],\n", + " ['Mathematics', 'Classical Analysis and ODEs'],\n", + " ['Quantitative Biology', 'Molecular Networks'],\n", + " ['Computer Science', 'Data Structures and Algorithms'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Nuclear Theory', 'Null'],\n", + " ['Astrophysics', 'Null'],\n", + " ['High Energy Physics', 'Theory'],\n", + " ['High Energy Physics', 'Theory'],\n", + " ['High Energy Physics', 'Theory'],\n", + " ['High Energy Physics', 'Theory'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Mathematics', 'Operator Algebras'],\n", + " ['Mathematics', 'Geometric Topology'],\n", + " ['Mathematics', 'Quantum Algebra'],\n", + " ['Mathematics', 'Spectral Theory'],\n", + " ['Physics', 'Chemical Physics'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Mathematics', 'Quantum Algebra'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Condensed Matter', 'Statistical Mechanics'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Condensed Matter', 'Soft Condensed Matter'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Condensed Matter', 'Superconductivity'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Condensed Matter', 'Statistical Mechanics'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['Physics', 'Atomic Physics'],\n", + " ['Computer Science', 'Information Theory'],\n", + " ['Condensed Matter', 'Superconductivity'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['High Energy Physics', 'Theory'],\n", + " ['Physics', 'General Physics'],\n", + " ['Physics', 'General Physics'],\n", + " ['Computer Science', 'Other Computer Science'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['Mathematics', 'Analysis of PDEs'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Mathematics', 'Functional Analysis'],\n", + " ['Mathematics', 'Analysis of PDEs'],\n", + " ['Mathematics', 'Optimization and Control'],\n", + " ['Condensed Matter', 'Superconductivity'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Condensed Matter', 'Soft Condensed Matter'],\n", + " ['Computer Science', 'Software Engineering'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Physics', 'Geophysics'],\n", + " ['Mathematics', 'Operator Algebras'],\n", + " ['Nuclear Theory', 'Null'],\n", + " ...]" + ] + }, + "execution_count": 136, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "First_Argu" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "# Seperate between 1 Sub, Two or more " + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['Quantum Physics', 'Condensed Matter - Statistical Mechanics']" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "org_Sub[6]" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'Mathematics'" + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Test Area" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['Quantum Physics', 'Condensed Matter - Statistical Mechanics']" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "Archive_DataFrame.iloc[6]['subject']" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "3" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "len(Archive_DataFrame.iloc[-3]['subject'])" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.7" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/Cat-List.ipynb b/Cat-List.ipynb index 20936b0..c2f68ca 100644 --- a/Cat-List.ipynb +++ b/Cat-List.ipynb @@ -32,35 +32,297 @@ }, { "cell_type": "code", - "execution_count": 43, + "execution_count": 231, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "CPU times: user 10.6 s, sys: 340 ms, total: 10.9 s\n", - "Wall time: 10.9 s\n" + "CPU times: user 12 s, sys: 412 ms, total: 12.4 s\n", + "Wall time: 12.5 s\n" ] } ], "source": [ "%%time\n", - "Archive_DataFrame = pd.read_csv('/home/mohammad/Documents/ML-Sharif/Archive_DataFrame.csv',index_col=0 ,usecols = ['subject','Unnamed: 0'],converters = {'subject' : eval})" + "Cat_Id = pd.read_csv('/home/mohammad/Documents/ML-Sharif/Archive_DataFrame.csv',index_col=0 ,usecols = ['subject','Unnamed: 0'],converters = {'subject' : eval})" ] }, { "cell_type": "code", - "execution_count": 46, + "execution_count": 224, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
subject
0705.1532[Mathematics - Dynamical Systems]
0706.1373[Nonlinear Sciences - Exactly Solvable and Int...
0706.2509[High Energy Physics - Theory]
0708.1339[Condensed Matter - Mesoscale and Nanoscale Ph...
0709.1272[Computer Science - Mathematical Software, Com...
\n", + "
" + ], + "text/plain": [ + " subject\n", + "0705.1532 [Mathematics - Dynamical Systems]\n", + "0706.1373 [Nonlinear Sciences - Exactly Solvable and Int...\n", + "0706.2509 [High Energy Physics - Theory]\n", + "0708.1339 [Condensed Matter - Mesoscale and Nanoscale Ph...\n", + "0709.1272 [Computer Science - Mathematical Software, Com..." + ] + }, + "execution_count": 224, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "Cat_Id.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 111, "metadata": {}, "outputs": [], "source": [ - "#Archive_DataFrame = Archive_DataFrame.rename(index=str, columns={\"Unnamed: 0\": \"ID\",})" + "# Save to CSV\n", + "#Archive_DataFrame.to_csv('Id_Cat.csv', sep='\\t')" ] }, { "cell_type": "code", - "execution_count": 47, + "execution_count": 112, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['Mathematics - Dynamical Systems']" + ] + }, + "execution_count": 112, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "(Cat_Id.iloc[0]['subject'])\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Main Code" + ] + }, + { + "cell_type": "code", + "execution_count": 134, + "metadata": {}, + "outputs": [], + "source": [ + "# One Argument \n", + "Cat_Id_OneArgu = Cat_Id[Cat_Id['subject'] == 'Mathematics - Dynamical Systems']\n", + "#w for w in z if not w in stop_words\n", + "#Cat_Id['subject'].iloc[1]\n" + ] + }, + { + "cell_type": "code", + "execution_count": 135, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
subject
\n", + "
" + ], + "text/plain": [ + "Empty DataFrame\n", + "Columns: [subject]\n", + "Index: []" + ] + }, + "execution_count": 135, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "Cat_Id_OneArgu" + ] + }, + { + "cell_type": "code", + "execution_count": 131, + "metadata": {}, + "outputs": [ + { + "ename": "KeyError", + "evalue": "False", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mKeyError\u001b[0m Traceback (most recent call last)", + "\u001b[0;32m~/.local/lib/python3.6/site-packages/pandas/core/indexes/base.py\u001b[0m in \u001b[0;36mget_loc\u001b[0;34m(self, key, method, tolerance)\u001b[0m\n\u001b[1;32m 3077\u001b[0m \u001b[0;32mtry\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 3078\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_engine\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mget_loc\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mkey\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 3079\u001b[0m \u001b[0;32mexcept\u001b[0m \u001b[0mKeyError\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32mpandas/_libs/index.pyx\u001b[0m in \u001b[0;36mpandas._libs.index.IndexEngine.get_loc\u001b[0;34m()\u001b[0m\n", + "\u001b[0;32mpandas/_libs/index.pyx\u001b[0m in \u001b[0;36mpandas._libs.index.IndexEngine.get_loc\u001b[0;34m()\u001b[0m\n", + "\u001b[0;32mpandas/_libs/hashtable_class_helper.pxi\u001b[0m in \u001b[0;36mpandas._libs.hashtable.PyObjectHashTable.get_item\u001b[0;34m()\u001b[0m\n", + "\u001b[0;32mpandas/_libs/hashtable_class_helper.pxi\u001b[0m in \u001b[0;36mpandas._libs.hashtable.PyObjectHashTable.get_item\u001b[0;34m()\u001b[0m\n", + "\u001b[0;31mKeyError\u001b[0m: False", + "\nDuring handling of the above exception, another exception occurred:\n", + "\u001b[0;31mKeyError\u001b[0m Traceback (most recent call last)", + "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0mCat_Id\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mCat_Id\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mlen\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mCat_Id\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;34m'subject'\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m==\u001b[0m\u001b[0;36m1\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m]\u001b[0m \u001b[0;31m#Cat_Id.iloc[0]['subject']\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m", + "\u001b[0;32m~/.local/lib/python3.6/site-packages/pandas/core/frame.py\u001b[0m in \u001b[0;36m__getitem__\u001b[0;34m(self, key)\u001b[0m\n\u001b[1;32m 2686\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_getitem_multilevel\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mkey\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 2687\u001b[0m \u001b[0;32melse\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 2688\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_getitem_column\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mkey\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 2689\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 2690\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0m_getitem_column\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mkey\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m~/.local/lib/python3.6/site-packages/pandas/core/frame.py\u001b[0m in \u001b[0;36m_getitem_column\u001b[0;34m(self, key)\u001b[0m\n\u001b[1;32m 2693\u001b[0m \u001b[0;31m# get column\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 2694\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mcolumns\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mis_unique\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 2695\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_get_item_cache\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mkey\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 2696\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 2697\u001b[0m \u001b[0;31m# duplicate columns & possible reduce dimensionality\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m~/.local/lib/python3.6/site-packages/pandas/core/generic.py\u001b[0m in \u001b[0;36m_get_item_cache\u001b[0;34m(self, item)\u001b[0m\n\u001b[1;32m 2487\u001b[0m \u001b[0mres\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mcache\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mget\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mitem\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 2488\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mres\u001b[0m \u001b[0;32mis\u001b[0m \u001b[0;32mNone\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 2489\u001b[0;31m \u001b[0mvalues\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_data\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mget\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mitem\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 2490\u001b[0m \u001b[0mres\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_box_item_values\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mitem\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mvalues\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 2491\u001b[0m \u001b[0mcache\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mitem\u001b[0m\u001b[0;34m]\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mres\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m~/.local/lib/python3.6/site-packages/pandas/core/internals.py\u001b[0m in \u001b[0;36mget\u001b[0;34m(self, item, fastpath)\u001b[0m\n\u001b[1;32m 4113\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 4114\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0;32mnot\u001b[0m \u001b[0misna\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mitem\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 4115\u001b[0;31m \u001b[0mloc\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mitems\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mget_loc\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mitem\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 4116\u001b[0m \u001b[0;32melse\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 4117\u001b[0m \u001b[0mindexer\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mnp\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0marange\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mlen\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mitems\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0misna\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mitems\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m~/.local/lib/python3.6/site-packages/pandas/core/indexes/base.py\u001b[0m in \u001b[0;36mget_loc\u001b[0;34m(self, key, method, tolerance)\u001b[0m\n\u001b[1;32m 3078\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_engine\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mget_loc\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mkey\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 3079\u001b[0m \u001b[0;32mexcept\u001b[0m \u001b[0mKeyError\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 3080\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_engine\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mget_loc\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_maybe_cast_indexer\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mkey\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 3081\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 3082\u001b[0m \u001b[0mindexer\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mget_indexer\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mkey\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mmethod\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mmethod\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mtolerance\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mtolerance\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32mpandas/_libs/index.pyx\u001b[0m in \u001b[0;36mpandas._libs.index.IndexEngine.get_loc\u001b[0;34m()\u001b[0m\n", + "\u001b[0;32mpandas/_libs/index.pyx\u001b[0m in \u001b[0;36mpandas._libs.index.IndexEngine.get_loc\u001b[0;34m()\u001b[0m\n", + "\u001b[0;32mpandas/_libs/hashtable_class_helper.pxi\u001b[0m in \u001b[0;36mpandas._libs.hashtable.PyObjectHashTable.get_item\u001b[0;34m()\u001b[0m\n", + "\u001b[0;32mpandas/_libs/hashtable_class_helper.pxi\u001b[0m in \u001b[0;36mpandas._libs.hashtable.PyObjectHashTable.get_item\u001b[0;34m()\u001b[0m\n", + "\u001b[0;31mKeyError\u001b[0m: False" + ] + } + ], + "source": [ + "Cat_Id[len(Cat_Id['subject'])==1] #Cat_Id.iloc[0]['subject']" + ] + }, + { + "cell_type": "code", + "execution_count": 126, + "metadata": {}, + "outputs": [ + { + "ename": "SyntaxError", + "evalue": "invalid syntax (, line 1)", + "output_type": "error", + "traceback": [ + "\u001b[0;36m File \u001b[0;32m\"\"\u001b[0;36m, line \u001b[0;32m1\u001b[0m\n\u001b[0;31m Cat_Id_OneArgu = Cat_Id[i for i in len(Cat_Id['subject']) if Cat_Id['subject'][i]== Cat_Id.iloc[i]['subject']]\u001b[0m\n\u001b[0m ^\u001b[0m\n\u001b[0;31mSyntaxError\u001b[0m\u001b[0;31m:\u001b[0m invalid syntax\n" + ] + } + ], + "source": [ + "Cat_Id_OneArgu = Cat_Id[i for i in len(Cat_Id['subject']) if Cat_Id['subject'][i]== Cat_Id.iloc[i]['subject']]" + ] + }, + { + "cell_type": "code", + "execution_count": 225, + "metadata": {}, + "outputs": [], + "source": [ + "def splitter(cat_entry):\n", + " elm = cat_entry.split(' - ')\n", + " if len(elm)==1:\n", + " return [elm[0], np.nan]\n", + " else:\n", + " return elm" + ] + }, + { + "cell_type": "code", + "execution_count": 240, + "metadata": {}, + "outputs": [], + "source": [ + "'''\n", + "flag 0=> label = cat[0]\n", + "flag 1=> label = sub_cat[0]\n", + "flag 2=> label = cat\n", + "flag 3=> label = sub_cat\n", + "\n", + "\n", + "input cat_list is assued to be\n", + "[cat1-subcat1,cat2-subcat2,....]\n", + "'''\n", + "def fun_cat(cat_list, flag=0):\n", + "# print(cat_list)\n", + " if flag==0:\n", + " \n", + " return splitter(cat_list[0])[0]\n", + " elif flag==1:\n", + "# print(cat_list[0])\n", + " return splitter(cat_list[0])[1]\n", + " elif flag==2:\n", + " return [splitter(c)[0] for c in cat_list]\n", + " elif flag==3:\n", + " return [splitter(c)[1] for c in cat_list]\n", + " " + ] + }, + { + "cell_type": "code", + "execution_count": 235, "metadata": {}, "outputs": [ { @@ -121,79 +383,1295 @@ "0709.1272 [Computer Science - Mathematical Software, Com..." ] }, - "execution_count": 47, + "execution_count": 235, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "Archive_DataFrame.head()" + "len( Cat_Id['subject'] )#.apply(lambda x: fun_cat(x, flag=3) )\n", + "test_df = Cat_Id.copy().iloc[:100]\n", + "\n", + "test_df.head()" ] }, { "cell_type": "code", - "execution_count": 49, + "execution_count": 203, "metadata": {}, "outputs": [], "source": [ - "Archive_DataFrame.to_csv('Id_Cat.csv', sep='\\t')\n" + "test_df = Cat_Id.iloc[:1000]" ] }, { - "cell_type": "markdown", + "cell_type": "code", + "execution_count": 244, "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
subject
0705.1532Dynamical Systems
0706.1373Exactly Solvable and Integrable Systems
0706.2509Theory
0708.1339Mesoscale and Nanoscale Physics
0709.1272Mathematical Software
0709.1704NaN
0710.2868NaN
0710.4005Fluid Dynamics
0711.4246NaN
0711.4508Computational Complexity
\n", + "
" + ], + "text/plain": [ + " subject\n", + "0705.1532 Dynamical Systems\n", + "0706.1373 Exactly Solvable and Integrable Systems\n", + "0706.2509 Theory\n", + "0708.1339 Mesoscale and Nanoscale Physics\n", + "0709.1272 Mathematical Software\n", + "0709.1704 NaN\n", + "0710.2868 NaN\n", + "0710.4005 Fluid Dynamics\n", + "0711.4246 NaN\n", + "0711.4508 Computational Complexity" + ] + }, + "execution_count": 244, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "### Main Code" + "test_df = Cat_Id.copy().iloc[:100]\n", + "test_df['subject'] = test_df['subject'].apply(lambda x: fun_cat(x, flag=1) )\n", + "test_df.head(10)" + ] + }, + { + "cell_type": "code", + "execution_count": 178, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'Nonlinear Sciences'" + ] + }, + "execution_count": 178, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "fun_cat( test_df['subject'].iloc[1] )" + ] + }, + { + "cell_type": "code", + "execution_count": 163, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['Mesoscale and Nanoscale Physics', 'Superconductivity']" + ] + }, + "execution_count": 163, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "[c.split(' - ',1)[1] for c in Cat_Id['subject'][3]]" + ] + }, + { + "cell_type": "code", + "execution_count": 117, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['Mathematics - Dynamical Systems']" + ] + }, + "execution_count": 117, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "Cat_Id.iloc[0]['subject']\n" + ] + }, + { + "cell_type": "code", + "execution_count": 118, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
subject
\n", + "
" + ], + "text/plain": [ + "Empty DataFrame\n", + "Columns: [subject]\n", + "Index: []" + ] + }, + "execution_count": 118, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "Cat_Id_OneArgu" ] }, { "cell_type": "code", - "execution_count": 40, + "execution_count": 119, "metadata": {}, "outputs": [], "source": [ - "org_Sub = (Archive_DataFrame['subject'].values)" + "org_Sub = (Cat_Id['subject'].values)" ] }, { "cell_type": "code", - "execution_count": 41, + "execution_count": 16, "metadata": {}, "outputs": [], "source": [ - "# Seperate between 1 Sub, Two or more " + "# Save Just First Argument of Category\n", + "First_Argu = []\n", + "for i in org_Sub:\n", + " Temp = (i[0])\n", + " if '-' in Temp : \n", + " MainBranch , SubBranch = Temp.split(' - ',1)\n", + " \n", + " First_Argu.append([MainBranch,SubBranch])\n", + " \n", + " else:\n", + " First_Argu.append([Temp,'Null'])" ] }, { "cell_type": "code", - "execution_count": 42, + "execution_count": 136, "metadata": {}, "outputs": [ { "data": { "text/plain": [ - "['Quantum Physics', 'Condensed Matter - Statistical Mechanics']" + "[['Mathematics', 'Dynamical Systems'],\n", + " ['Nonlinear Sciences', 'Exactly Solvable and Integrable Systems'],\n", + " ['High Energy Physics', 'Theory'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Computer Science', 'Mathematical Software'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Physics', 'Fluid Dynamics'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['Computer Science', 'Computational Complexity'],\n", + " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", + " ['Computer Science', 'Computational Geometry'],\n", + " ['Mathematics', 'Analysis of PDEs'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Mathematics', 'Analysis of PDEs'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Mathematics', 'Group Theory'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Computer Science', 'Information Theory'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Computer Science', 'Digital Libraries'],\n", + " ['General Relativity and Quantum Cosmology', 'Null'],\n", + " ['Astrophysics', 'Null'],\n", + " ['High Energy Physics', 'Experiment'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Condensed Matter', 'Superconductivity'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Nonlinear Sciences', 'Adaptation and Self-Organizing Systems'],\n", + " ['Physics', 'General Physics'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Mathematics', 'Analysis of PDEs'],\n", + " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Mathematics', 'Logic'],\n", + " ['Mathematics', 'Group Theory'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['Mathematics', 'Algebraic Topology'],\n", + " ['Computer Science', 'Operating Systems'],\n", + " ['Mathematics', 'Commutative Algebra'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Mathematics', 'Analysis of PDEs'],\n", + " ['Physics', 'Optics'],\n", + " ['Mathematics', 'Optimization and Control'],\n", + " ['Mathematics', 'Operator Algebras'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Mathematics', 'Rings and Algebras'],\n", + " ['High Energy Physics', 'Phenomenology'],\n", + " ['Computer Science', 'Artificial Intelligence'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['Mathematics', 'Algebraic Topology'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Computer Science', 'Logic in Computer Science'],\n", + " ['Physics', 'Space Physics'],\n", + " ['Mathematics', 'K-Theory and Homology'],\n", + " ['Computer Science', 'Information Theory'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Condensed Matter', 'Disordered Systems and Neural Networks'],\n", + " ['Computer Science', 'Networking and Internet Architecture'],\n", + " ['Computer Science', 'Networking and Internet Architecture'],\n", + " ['Computer Science', 'Networking and Internet Architecture'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['Physics', 'Accelerator Physics'],\n", + " ['High Energy Physics', 'Phenomenology'],\n", + " ['Quantitative Biology', 'Populations and Evolution'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Mathematics', 'Analysis of PDEs'],\n", + " ['Nuclear Theory', 'Null'],\n", + " ['Physics', 'Physics and Society'],\n", + " ['Computer Science', 'Information Theory'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Mathematics', 'Quantum Algebra'],\n", + " ['Mathematics', 'History and Overview'],\n", + " ['Computer Science', 'Cryptography and Security'],\n", + " ['Nuclear Theory', 'Null'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['Nonlinear Sciences', 'Chaotic Dynamics'],\n", + " ['Computer Science', 'Data Structures and Algorithms'],\n", + " ['Nonlinear Sciences', 'Chaotic Dynamics'],\n", + " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", + " ['Condensed Matter', 'Other Condensed Matter'],\n", + " ['Mathematics', 'Metric Geometry'],\n", + " ['Physics', 'Atomic and Molecular Clusters'],\n", + " ['Physics', 'Atomic Physics'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['Condensed Matter', 'Disordered Systems and Neural Networks'],\n", + " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", + " ['Condensed Matter', 'Statistical Mechanics'],\n", + " ['High Energy Physics', 'Phenomenology'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Computer Science', 'Computer Science and Game Theory'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Condensed Matter', 'Statistical Mechanics'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Computer Science', 'Computer Science and Game Theory'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['Mathematics', 'History and Overview'],\n", + " ['Mathematics', 'History and Overview'],\n", + " ['Mathematics', 'Representation Theory'],\n", + " ['Mathematics', 'Functional Analysis'],\n", + " ['Physics', 'Atomic Physics'],\n", + " ['Physics', 'Atomic Physics'],\n", + " ['Condensed Matter', 'Other Condensed Matter'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Mathematics', 'Complex Variables'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['Physics', 'Data Analysis, Statistics and Probability'],\n", + " ['Computer Science', 'Symbolic Computation'],\n", + " ['Mathematics', 'Number Theory'],\n", + " ['Mathematics', 'Representation Theory'],\n", + " ['Computer Science', 'Information Theory'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Computer Science', 'Data Structures and Algorithms'],\n", + " ['Physics', 'Physics and Society'],\n", + " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", + " ['Computer Science', 'Information Retrieval'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Condensed Matter', 'Superconductivity'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Condensed Matter', 'Soft Condensed Matter'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Mathematics', 'Quantum Algebra'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['General Relativity and Quantum Cosmology', 'Null'],\n", + " ['Computer Science', 'Information Theory'],\n", + " ['Computer Science', 'Information Theory'],\n", + " ['Computer Science', 'Information Theory'],\n", + " ['Computer Science', 'Information Theory'],\n", + " ['Computer Science', 'Information Theory'],\n", + " ['Computer Science', 'Information Theory'],\n", + " ['Computer Science', 'Information Theory'],\n", + " ['Computer Science', 'Information Theory'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['High Energy Physics', 'Phenomenology'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['High Energy Physics', 'Phenomenology'],\n", + " ['Mathematics', 'Quantum Algebra'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Mathematics', 'Classical Analysis and ODEs'],\n", + " ['Physics', 'Chemical Physics'],\n", + " ['Physics', 'Optics'],\n", + " ['Physics', 'Data Analysis, Statistics and Probability'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['High Energy Physics', 'Theory'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Mathematics', 'Rings and Algebras'],\n", + " ['Mathematics', 'Analysis of PDEs'],\n", + " ['Physics', 'General Physics'],\n", + " ['Mathematics', 'K-Theory and Homology'],\n", + " ['Mathematics', 'Numerical Analysis'],\n", + " ['Mathematics', 'Numerical Analysis'],\n", + " ['High Energy Physics', 'Phenomenology'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Mathematics', 'Optimization and Control'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['Mathematics', 'Analysis of PDEs'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Condensed Matter', 'Disordered Systems and Neural Networks'],\n", + " ['Condensed Matter', 'Disordered Systems and Neural Networks'],\n", + " ['Condensed Matter', 'Soft Condensed Matter'],\n", + " ['Condensed Matter', 'Soft Condensed Matter'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['Mathematics', 'History and Overview'],\n", + " ['Nonlinear Sciences', 'Chaotic Dynamics'],\n", + " ['Physics', 'Atmospheric and Oceanic Physics'],\n", + " ['Physics', 'Chemical Physics'],\n", + " ['Condensed Matter', 'Disordered Systems and Neural Networks'],\n", + " ['General Relativity and Quantum Cosmology', 'Null'],\n", + " ['Quantitative Biology', 'Populations and Evolution'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['Physics', 'Optics'],\n", + " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", + " ['Mathematics', 'Geometric Topology'],\n", + " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['High Energy Physics', 'Theory'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Mathematics', 'Dynamical Systems'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Mathematics', 'Geometric Topology'],\n", + " ['Mathematics', 'Representation Theory'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Computer Science', 'Information Theory'],\n", + " ['High Energy Physics', 'Phenomenology'],\n", + " ['Computer Science', 'Computational Complexity'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['Mathematics', 'Dynamical Systems'],\n", + " ['Mathematics', 'Dynamical Systems'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Mathematics', 'Geometric Topology'],\n", + " ['Statistics', 'Methodology'],\n", + " ['Condensed Matter', 'Disordered Systems and Neural Networks'],\n", + " ['Condensed Matter', 'Other Condensed Matter'],\n", + " ['Physics', 'Atmospheric and Oceanic Physics'],\n", + " ['Mathematics', 'Complex Variables'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Computer Science', 'Cryptography and Security'],\n", + " ['Nuclear Experiment', 'Null'],\n", + " ['General Relativity and Quantum Cosmology', 'Null'],\n", + " ['Quantitative Biology', 'Neurons and Cognition'],\n", + " ['Physics', 'General Physics'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Physics', 'History and Philosophy of Physics'],\n", + " ['Physics', 'Classical Physics'],\n", + " ['Mathematics', 'Analysis of PDEs'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Computer Science', 'Computation and Language'],\n", + " ['Mathematics', 'Optimization and Control'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Mathematics', 'Optimization and Control'],\n", + " ['High Energy Physics', 'Theory'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['Mathematics', 'Geometric Topology'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['Computer Science', 'Other Computer Science'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Condensed Matter', 'Other Condensed Matter'],\n", + " ['Condensed Matter', 'Statistical Mechanics'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['Mathematics', 'Group Theory'],\n", + " ['Mathematics', 'Group Theory'],\n", + " ['Mathematics', 'Commutative Algebra'],\n", + " ['Mathematics', 'Representation Theory'],\n", + " ['Mathematics', 'Representation Theory'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Mathematics', 'Number Theory'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Condensed Matter', 'Superconductivity'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Condensed Matter', 'Superconductivity'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Physics', 'Accelerator Physics'],\n", + " ['Physics', 'Accelerator Physics'],\n", + " ['Condensed Matter', 'Superconductivity'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['Mathematics', 'Representation Theory'],\n", + " ['Mathematics', 'Representation Theory'],\n", + " ['Mathematics', 'Representation Theory'],\n", + " ['Mathematics', 'Representation Theory'],\n", + " ['Mathematics', 'Number Theory'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Physics', 'Optics'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Mathematics', 'Quantum Algebra'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Quantitative Biology', 'Molecular Networks'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Condensed Matter', 'Disordered Systems and Neural Networks'],\n", + " ['Condensed Matter', 'Superconductivity'],\n", + " ['Condensed Matter', 'Other Condensed Matter'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Condensed Matter', 'Other Condensed Matter'],\n", + " ['Mathematics', 'Optimization and Control'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Mathematics', 'Functional Analysis'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Mathematics', 'Classical Analysis and ODEs'],\n", + " ['Physics', 'Plasma Physics'],\n", + " ['High Energy Physics', 'Phenomenology'],\n", + " ['Mathematics', 'Optimization and Control'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['High Energy Physics', 'Phenomenology'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Computer Science', 'Artificial Intelligence'],\n", + " ['Mathematics', 'Representation Theory'],\n", + " ['Computer Science', 'Data Structures and Algorithms'],\n", + " ['High Energy Physics', 'Phenomenology'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Mathematics', 'Representation Theory'],\n", + " ['Mathematics', 'Representation Theory'],\n", + " ['Mathematics', 'Group Theory'],\n", + " ['Mathematics', 'Representation Theory'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Mathematics', 'Representation Theory'],\n", + " ['Mathematics', 'Group Theory'],\n", + " ['Mathematics', 'Representation Theory'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Mathematics', 'Algebraic Topology'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['Physics', 'Optics'],\n", + " ['Physics', 'Optics'],\n", + " ['Condensed Matter', 'Statistical Mechanics'],\n", + " ['Nonlinear Sciences', 'Exactly Solvable and Integrable Systems'],\n", + " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", + " ['Mathematics', 'Commutative Algebra'],\n", + " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", + " ['Mathematics', 'Numerical Analysis'],\n", + " ['Mathematics', 'Logic'],\n", + " ['Physics', 'Physics and Society'],\n", + " ['Mathematics', 'Metric Geometry'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Condensed Matter', 'Statistical Mechanics'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['Condensed Matter', 'Soft Condensed Matter'],\n", + " ['Condensed Matter', 'Other Condensed Matter'],\n", + " ['Condensed Matter', 'Statistical Mechanics'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Condensed Matter', 'Superconductivity'],\n", + " ['Mathematics', 'Algebraic Topology'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Nuclear Theory', 'Null'],\n", + " ['High Energy Physics', 'Theory'],\n", + " ['High Energy Physics', 'Theory'],\n", + " ['Mathematics', 'Dynamical Systems'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Nuclear Theory', 'Null'],\n", + " ['Mathematics', 'Logic'],\n", + " ['Mathematics', 'Logic'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Mathematics', 'Functional Analysis'],\n", + " ['Mathematics', 'Functional Analysis'],\n", + " ['Mathematics', 'Functional Analysis'],\n", + " ['Mathematics', 'Functional Analysis'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['Mathematics', 'Algebraic Topology'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Mathematics', 'Complex Variables'],\n", + " ['Mathematics', 'Complex Variables'],\n", + " ['Mathematics', 'Analysis of PDEs'],\n", + " ['Computer Science', 'Logic in Computer Science'],\n", + " ['Mathematics', 'History and Overview'],\n", + " ['Physics', 'Fluid Dynamics'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['Physics', 'Biological Physics'],\n", + " ['Mathematics', 'Representation Theory'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Nonlinear Sciences', 'Pattern Formation and Solitons'],\n", + " ['Nonlinear Sciences', 'Cellular Automata and Lattice Gases'],\n", + " ['Statistics', 'Computation'],\n", + " ['Physics', 'Biological Physics'],\n", + " ['Physics', 'Atomic Physics'],\n", + " ['Computer Science', 'Information Theory'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['High Energy Physics', 'Phenomenology'],\n", + " ['Physics', 'General Physics'],\n", + " ['Mathematics', 'Group Theory'],\n", + " ['Mathematics', 'General Mathematics'],\n", + " ['Physics', 'General Physics'],\n", + " ['Computer Science', 'Human-Computer Interaction'],\n", + " ['General Relativity and Quantum Cosmology', 'Null'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Nonlinear Sciences', 'Chaotic Dynamics'],\n", + " ['Computer Science', 'Human-Computer Interaction'],\n", + " ['Nonlinear Sciences', 'Adaptation and Self-Organizing Systems'],\n", + " ['Condensed Matter', 'Other Condensed Matter'],\n", + " ['Physics', 'General Physics'],\n", + " ['Computer Science', 'Human-Computer Interaction'],\n", + " ['Mathematics', 'Classical Analysis and ODEs'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Mathematics', 'Analysis of PDEs'],\n", + " ['Quantitative Biology', 'Genomics'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Mathematics', 'Complex Variables'],\n", + " ['High Energy Physics', 'Phenomenology'],\n", + " ['General Relativity and Quantum Cosmology', 'Null'],\n", + " ['Mathematics', 'Dynamical Systems'],\n", + " ['Condensed Matter', 'Other Condensed Matter'],\n", + " ['Physics', 'Physics and Society'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Nuclear Experiment', 'Null'],\n", + " ['Mathematics', 'Analysis of PDEs'],\n", + " ['Mathematics', 'Geometric Topology'],\n", + " ['Mathematics', 'Category Theory'],\n", + " ['Mathematics', 'Number Theory'],\n", + " ['General Relativity and Quantum Cosmology', 'Null'],\n", + " ['Computer Science', 'Human-Computer Interaction'],\n", + " ['Mathematics', 'Optimization and Control'],\n", + " ['Mathematics', 'Geometric Topology'],\n", + " ['Mathematics', 'Category Theory'],\n", + " ['Physics', 'General Physics'],\n", + " ['Computer Science', 'Computational Geometry'],\n", + " ['Mathematics', 'Analysis of PDEs'],\n", + " ['Physics', 'Physics and Society'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Nuclear Experiment', 'Null'],\n", + " ['Physics', 'Geophysics'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Computer Science', 'Cryptography and Security'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Mathematics', 'Representation Theory'],\n", + " ['Mathematics', 'Representation Theory'],\n", + " ['Mathematics', 'Commutative Algebra'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Mathematics', 'Rings and Algebras'],\n", + " ['Computer Science', 'Information Theory'],\n", + " ['Condensed Matter', 'Other Condensed Matter'],\n", + " ['Mathematics', 'Number Theory'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", + " ['Quantitative Biology', 'Populations and Evolution'],\n", + " ['Physics', 'Fluid Dynamics'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Condensed Matter', 'Statistical Mechanics'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Condensed Matter', 'Other Condensed Matter'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Condensed Matter', 'Other Condensed Matter'],\n", + " ['Condensed Matter', 'Disordered Systems and Neural Networks'],\n", + " ['Condensed Matter', 'Superconductivity'],\n", + " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", + " ['Computer Science', 'Discrete Mathematics'],\n", + " ['Mathematics', 'General Mathematics'],\n", + " ['Condensed Matter', 'Superconductivity'],\n", + " ['Computer Science', 'Computer Vision and Pattern Recognition'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Computer Science', 'Information Theory'],\n", + " ['Mathematics', 'Rings and Algebras'],\n", + " ['Physics', 'Optics'],\n", + " ['Quantitative Biology', 'Genomics'],\n", + " ['Mathematics', 'Optimization and Control'],\n", + " ['Mathematics', 'Quantum Algebra'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", + " ['High Energy Physics', 'Phenomenology'],\n", + " ['Quantitative Biology', 'Quantitative Methods'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Mathematics', 'Statistics Theory'],\n", + " ['Computer Science', 'Information Theory'],\n", + " ['Mathematics', 'Statistics Theory'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Mathematics', 'Statistics Theory'],\n", + " ['Nuclear Experiment', 'Null'],\n", + " ['Statistics', 'Machine Learning'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Computer Science', 'Computer Science and Game Theory'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Physics', 'Fluid Dynamics'],\n", + " ['Mathematics', 'Probability'],\n", + " ['High Energy Physics', 'Experiment'],\n", + " ['Physics', 'Classical Physics'],\n", + " ['Mathematics', 'Number Theory'],\n", + " ['General Relativity and Quantum Cosmology', 'Null'],\n", + " ['Physics', 'Data Analysis, Statistics and Probability'],\n", + " ['Condensed Matter', 'Statistical Mechanics'],\n", + " ['Condensed Matter', 'Statistical Mechanics'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['Computer Science', 'Artificial Intelligence'],\n", + " ['Mathematics', 'Numerical Analysis'],\n", + " ['Mathematics', 'Rings and Algebras'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Nonlinear Sciences', 'Pattern Formation and Solitons'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Mathematics', 'Number Theory'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Quantitative Biology', 'Cell Behavior'],\n", + " ['Mathematics', 'Number Theory'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Physics', 'Biological Physics'],\n", + " ['Physics', 'Instrumentation and Detectors'],\n", + " ['Physics', 'Physics Education'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Mathematics', 'Representation Theory'],\n", + " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", + " ['High Energy Physics', 'Phenomenology'],\n", + " ['Mathematics', 'Geometric Topology'],\n", + " ['Mathematics', 'Geometric Topology'],\n", + " ['Mathematics', 'Geometric Topology'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Condensed Matter', 'Superconductivity'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Condensed Matter', 'Soft Condensed Matter'],\n", + " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['Physics', 'Instrumentation and Detectors'],\n", + " ['Condensed Matter', 'Soft Condensed Matter'],\n", + " ['Condensed Matter', 'Statistical Mechanics'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Physics', 'Physics and Society'],\n", + " ['Condensed Matter', 'Superconductivity'],\n", + " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Condensed Matter', 'Superconductivity'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['High Energy Physics', 'Phenomenology'],\n", + " ['Statistics', 'Computation'],\n", + " ['Mathematics', 'Statistics Theory'],\n", + " ['Condensed Matter', 'Superconductivity'],\n", + " ['High Energy Physics', 'Theory'],\n", + " ['Condensed Matter', 'Superconductivity'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", + " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", + " ['Physics', 'Physics and Society'],\n", + " ['Condensed Matter', 'Soft Condensed Matter'],\n", + " ['Condensed Matter', 'Soft Condensed Matter'],\n", + " ['Physics', 'Physics Education'],\n", + " ['Computer Science', 'Information Theory'],\n", + " ['Astrophysics', 'Null'],\n", + " ['High Energy Physics', 'Phenomenology'],\n", + " ['Mathematics', 'Functional Analysis'],\n", + " ['High Energy Physics', 'Theory'],\n", + " ['High Energy Physics', 'Theory'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Physics', 'Space Physics'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Mathematics', 'Statistics Theory'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Astrophysics', 'Null'],\n", + " ['High Energy Physics', 'Theory'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Condensed Matter', 'Soft Condensed Matter'],\n", + " ['Condensed Matter', 'Soft Condensed Matter'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Mathematics', 'Analysis of PDEs'],\n", + " ['High Energy Physics', 'Phenomenology'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Computer Science', 'Multiagent Systems'],\n", + " ['Computer Science', 'Databases'],\n", + " ['Computer Science', 'Databases'],\n", + " ['Computer Science', 'Databases'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Computer Science', 'Databases'],\n", + " ['Computer Science', 'Symbolic Computation'],\n", + " ['Mathematics', 'Analysis of PDEs'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['High Energy Physics', 'Theory'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Quantitative Biology', 'Genomics'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Astrophysics', 'Null'],\n", + " ['High Energy Physics', 'Phenomenology'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Mathematics', 'Functional Analysis'],\n", + " ['Computer Science', 'Information Theory'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['Condensed Matter', 'Other Condensed Matter'],\n", + " ['Physics', 'Instrumentation and Detectors'],\n", + " ['Physics', 'General Physics'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Mathematics', 'Number Theory'],\n", + " ['Quantitative Biology', 'Biomolecules'],\n", + " ['High Energy Physics', 'Theory'],\n", + " ['Condensed Matter', 'Soft Condensed Matter'],\n", + " ['High Energy Physics', 'Theory'],\n", + " ['Mathematics', 'Representation Theory'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['Mathematics', 'Statistics Theory'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['Mathematics', 'Spectral Theory'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['Nonlinear Sciences', 'Exactly Solvable and Integrable Systems'],\n", + " ['Nuclear Theory', 'Null'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Physics', 'Geophysics'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Condensed Matter', 'Statistical Mechanics'],\n", + " ['Mathematics', 'Statistics Theory'],\n", + " ['Quantitative Biology', 'Neurons and Cognition'],\n", + " ['Condensed Matter', 'Soft Condensed Matter'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Mathematics', 'Number Theory'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Mathematics', 'Statistics Theory'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['Condensed Matter', 'Statistical Mechanics'],\n", + " ['Condensed Matter', 'Soft Condensed Matter'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Mathematics', 'Geometric Topology'],\n", + " ['Condensed Matter', 'Statistical Mechanics'],\n", + " ['Statistics', 'Applications'],\n", + " ['Mathematics', 'Metric Geometry'],\n", + " ['General Relativity and Quantum Cosmology', 'Null'],\n", + " ['Physics', 'Geophysics'],\n", + " ['Condensed Matter', 'Soft Condensed Matter'],\n", + " ['Condensed Matter', 'Disordered Systems and Neural Networks'],\n", + " ['Condensed Matter', 'Soft Condensed Matter'],\n", + " ['Condensed Matter', 'Disordered Systems and Neural Networks'],\n", + " ['Condensed Matter', 'Superconductivity'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Condensed Matter', 'Superconductivity'],\n", + " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", + " ['Physics', 'Optics'],\n", + " ['Condensed Matter', 'Other Condensed Matter'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", + " ['Mathematics', 'Functional Analysis'],\n", + " ['Condensed Matter', 'Other Condensed Matter'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Condensed Matter', 'Statistical Mechanics'],\n", + " ['Mathematics', 'Quantum Algebra'],\n", + " ['Condensed Matter', 'Statistical Mechanics'],\n", + " ['Mathematics', 'Algebraic Topology'],\n", + " ['High Energy Physics', 'Experiment'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Statistics', 'Applications'],\n", + " ['High Energy Physics', 'Phenomenology'],\n", + " ['Mathematics', 'Geometric Topology'],\n", + " ['High Energy Physics', 'Experiment'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Mathematics', 'Symplectic Geometry'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Computer Science', 'Learning'],\n", + " ['Nonlinear Sciences', 'Exactly Solvable and Integrable Systems'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Nuclear Experiment', 'Null'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Condensed Matter', 'Statistical Mechanics'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Mathematics', 'Functional Analysis'],\n", + " ['Mathematics', 'Functional Analysis'],\n", + " ['Physics', 'Atomic Physics'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Mathematics', 'Number Theory'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Computer Science', 'Databases'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Physics', 'General Physics'],\n", + " ['Mathematics', 'Functional Analysis'],\n", + " ['High Energy Physics', 'Lattice'],\n", + " ['Mathematics', 'Functional Analysis'],\n", + " ['Physics', 'Physics Education'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Mathematics', 'Analysis of PDEs'],\n", + " ['Mathematics', 'Analysis of PDEs'],\n", + " ['Mathematics', 'Representation Theory'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['High Energy Physics', 'Phenomenology'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['Quantitative Biology', 'Populations and Evolution'],\n", + " ['Mathematics', 'Functional Analysis'],\n", + " ['Computer Science', 'Information Theory'],\n", + " ['Astrophysics', 'Null'],\n", + " ['High Energy Physics', 'Theory'],\n", + " ['Mathematics', 'Algebraic Topology'],\n", + " ['Mathematics', 'Geometric Topology'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Mathematics', 'Group Theory'],\n", + " ['Physics', 'Classical Physics'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", + " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", + " ['Computer Science', 'Computational Complexity'],\n", + " ['Mathematics', 'Classical Analysis and ODEs'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['High Energy Physics', 'Experiment'],\n", + " ['High Energy Physics', 'Experiment'],\n", + " ['High Energy Physics', 'Experiment'],\n", + " ['High Energy Physics', 'Experiment'],\n", + " ['High Energy Physics', 'Experiment'],\n", + " ['High Energy Physics', 'Experiment'],\n", + " ['High Energy Physics', 'Experiment'],\n", + " ['High Energy Physics', 'Experiment'],\n", + " ['High Energy Physics', 'Experiment'],\n", + " ['High Energy Physics', 'Experiment'],\n", + " ['High Energy Physics', 'Experiment'],\n", + " ['High Energy Physics', 'Experiment'],\n", + " ['High Energy Physics', 'Experiment'],\n", + " ['High Energy Physics', 'Experiment'],\n", + " ['High Energy Physics', 'Experiment'],\n", + " ['High Energy Physics', 'Experiment'],\n", + " ['High Energy Physics', 'Experiment'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['Physics', 'Physics and Society'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['Condensed Matter', 'Other Condensed Matter'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Mathematics', 'Number Theory'],\n", + " ['High Energy Physics', 'Theory'],\n", + " ['Physics', 'Optics'],\n", + " ['Mathematics', 'Group Theory'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Mathematics', 'Operator Algebras'],\n", + " ['Mathematics', 'Analysis of PDEs'],\n", + " ['Mathematics', 'Symplectic Geometry'],\n", + " ['Condensed Matter', 'Soft Condensed Matter'],\n", + " ['Condensed Matter', 'Superconductivity'],\n", + " ['Physics', 'Atmospheric and Oceanic Physics'],\n", + " ['Mathematics', 'Dynamical Systems'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['Mathematics', 'Statistics Theory'],\n", + " ['Mathematics', 'Spectral Theory'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Condensed Matter', 'Disordered Systems and Neural Networks'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Condensed Matter', 'Statistical Mechanics'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Physics', 'Optics'],\n", + " ['Condensed Matter', 'Statistical Mechanics'],\n", + " ['Condensed Matter', 'Statistical Mechanics'],\n", + " ['Condensed Matter', 'Other Condensed Matter'],\n", + " ['Mathematics', 'Quantum Algebra'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['High Energy Physics', 'Theory'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Mathematics', 'Number Theory'],\n", + " ['Quantitative Biology', 'Cell Behavior'],\n", + " ['High Energy Physics', 'Phenomenology'],\n", + " ['Physics', 'General Physics'],\n", + " ['Mathematics', 'Numerical Analysis'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Nuclear Theory', 'Null'],\n", + " ['Mathematics', 'Analysis of PDEs'],\n", + " ['High Energy Physics', 'Theory'],\n", + " ['Mathematics', 'Quantum Algebra'],\n", + " ['Physics', 'Optics'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['Condensed Matter', 'Soft Condensed Matter'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Condensed Matter', 'Statistical Mechanics'],\n", + " ['Computer Science', 'Computation and Language'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['High Energy Physics', 'Phenomenology'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Physics', 'General Physics'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Physics', 'General Physics'],\n", + " ['Condensed Matter', 'Soft Condensed Matter'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Condensed Matter', 'Disordered Systems and Neural Networks'],\n", + " ['Physics', 'Instrumentation and Detectors'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Physics', 'Physics and Society'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Mathematics', 'Numerical Analysis'],\n", + " ['High Energy Physics', 'Theory'],\n", + " ['Physics', 'Physics Education'],\n", + " ['Mathematics', 'Numerical Analysis'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Condensed Matter', 'Statistical Mechanics'],\n", + " ['Condensed Matter', 'Statistical Mechanics'],\n", + " ['Condensed Matter', 'Statistical Mechanics'],\n", + " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", + " ['Condensed Matter', 'Statistical Mechanics'],\n", + " ['Computer Science', 'Computational Complexity'],\n", + " ['Computer Science', 'Discrete Mathematics'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Mathematics', 'Metric Geometry'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['Computer Science', 'Human-Computer Interaction'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Mathematics', 'Geometric Topology'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Condensed Matter', 'Other Condensed Matter'],\n", + " ['Mathematics', 'Number Theory'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Condensed Matter', 'Superconductivity'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['High Energy Physics', 'Theory'],\n", + " ['Mathematics', 'Algebraic Topology'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Computer Science', 'Cryptography and Security'],\n", + " ['Mathematics', 'Statistics Theory'],\n", + " ['Quantitative Biology', 'Quantitative Methods'],\n", + " ['Computer Science', 'Information Retrieval'],\n", + " ['Computer Science', 'Learning'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Mathematics', 'Geometric Topology'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['Computer Science', 'Computational Complexity'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Computer Science', 'Software Engineering'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Mathematics', 'Analysis of PDEs'],\n", + " ['Computer Science', 'Computers and Society'],\n", + " ['Mathematics', 'Functional Analysis'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Mathematics', 'Commutative Algebra'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Computer Science', 'Information Theory'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Computer Science', 'Information Theory'],\n", + " ['Mathematics', 'Analysis of PDEs'],\n", + " ['Mathematics', 'Dynamical Systems'],\n", + " ['Quantitative Biology', 'Populations and Evolution'],\n", + " ['Mathematics', 'Complex Variables'],\n", + " ['Physics', 'Computational Physics'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Computer Science', 'Other Computer Science'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Physics', 'Plasma Physics'],\n", + " ['Nonlinear Sciences', 'Chaotic Dynamics'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Physics', 'Computational Physics'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Computer Science', 'Neural and Evolutionary Computing'],\n", + " ['Mathematics', 'Dynamical Systems'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Computer Science', 'Distributed, Parallel, and Cluster Computing'],\n", + " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", + " ['High Energy Physics', 'Phenomenology'],\n", + " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", + " ['Computer Science', 'Artificial Intelligence'],\n", + " ['Mathematics', 'General Mathematics'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Mathematics', 'Dynamical Systems'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['General Relativity and Quantum Cosmology', 'Null'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Condensed Matter', 'Other Condensed Matter'],\n", + " ['Nonlinear Sciences', 'Chaotic Dynamics'],\n", + " ['Mathematics', 'Spectral Theory'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Physics', 'Classical Physics'],\n", + " ['Physics', 'Atomic and Molecular Clusters'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['Physics', 'Atomic and Molecular Clusters'],\n", + " ['Condensed Matter', 'Superconductivity'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Quantitative Biology', 'Neurons and Cognition'],\n", + " ['Physics', 'Physics and Society'],\n", + " ['Mathematics', 'Classical Analysis and ODEs'],\n", + " ['Quantitative Biology', 'Molecular Networks'],\n", + " ['Computer Science', 'Data Structures and Algorithms'],\n", + " ['Astrophysics', 'Null'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Nuclear Theory', 'Null'],\n", + " ['Astrophysics', 'Null'],\n", + " ['High Energy Physics', 'Theory'],\n", + " ['High Energy Physics', 'Theory'],\n", + " ['High Energy Physics', 'Theory'],\n", + " ['High Energy Physics', 'Theory'],\n", + " ['Mathematical Physics', 'Null'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Mathematics', 'Operator Algebras'],\n", + " ['Mathematics', 'Geometric Topology'],\n", + " ['Mathematics', 'Quantum Algebra'],\n", + " ['Mathematics', 'Spectral Theory'],\n", + " ['Physics', 'Chemical Physics'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Mathematics', 'Quantum Algebra'],\n", + " ['Mathematics', 'Combinatorics'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Condensed Matter', 'Statistical Mechanics'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Condensed Matter', 'Soft Condensed Matter'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Condensed Matter', 'Superconductivity'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['Condensed Matter', 'Statistical Mechanics'],\n", + " ['Quantum Physics', 'Null'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['Physics', 'Atomic Physics'],\n", + " ['Computer Science', 'Information Theory'],\n", + " ['Condensed Matter', 'Superconductivity'],\n", + " ['Condensed Matter', 'Materials Science'],\n", + " ['High Energy Physics', 'Theory'],\n", + " ['Physics', 'General Physics'],\n", + " ['Physics', 'General Physics'],\n", + " ['Computer Science', 'Other Computer Science'],\n", + " ['Mathematics', 'Algebraic Geometry'],\n", + " ['Mathematics', 'Analysis of PDEs'],\n", + " ['Mathematics', 'Probability'],\n", + " ['Mathematics', 'Functional Analysis'],\n", + " ['Mathematics', 'Analysis of PDEs'],\n", + " ['Mathematics', 'Optimization and Control'],\n", + " ['Condensed Matter', 'Superconductivity'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Condensed Matter', 'Soft Condensed Matter'],\n", + " ['Computer Science', 'Software Engineering'],\n", + " ['Mathematics', 'Differential Geometry'],\n", + " ['Physics', 'Geophysics'],\n", + " ['Mathematics', 'Operator Algebras'],\n", + " ['Nuclear Theory', 'Null'],\n", + " ...]" ] }, - "execution_count": 42, + "execution_count": 136, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "org_Sub[6]" + "First_Argu" ] }, { - "cell_type": "markdown", + "cell_type": "code", + "execution_count": 6, "metadata": {}, + "outputs": [], "source": [ - "### Test Area" + "# Seperate between 1 Sub, Two or more " ] }, { "cell_type": "code", - "execution_count": 7, + "execution_count": 15, "metadata": {}, "outputs": [ { @@ -202,44 +1680,78 @@ "['Quantum Physics', 'Condensed Matter - Statistical Mechanics']" ] }, - "execution_count": 7, + "execution_count": 15, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "Archive_DataFrame.iloc[6]['subject']\n" + "org_Sub[6]" ] }, { "cell_type": "code", - "execution_count": 19, + "execution_count": 20, "metadata": {}, "outputs": [ { "data": { "text/plain": [ - "['General Relativity and Quantum Cosmology',\n", - " 'Astrophysics - Cosmology and Nongalactic Astrophysics',\n", - " 'High Energy Physics - Theory']" + "'Mathematics'" ] }, - "execution_count": 19, + "execution_count": 20, "metadata": {}, "output_type": "execute_result" } ], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, "source": [ - "Archive_DataFrame.iloc[-3]['subject']\n" + "### Test Area" ] }, { "cell_type": "code", - "execution_count": 50, + "execution_count": 8, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['Quantum Physics', 'Condensed Matter - Statistical Mechanics']" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "Archive_DataFrame.iloc[6]['subject']" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "3" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "#Archive_DataFrame" + "len(Archive_DataFrame.iloc[-3]['subject'])" ] }, { From ea66047147f3aeb398a971a01344cb1903251f80 Mon Sep 17 00:00:00 2001 From: "M. Sherafati" Date: Mon, 4 Feb 2019 12:19:00 +0330 Subject: [PATCH 3/6] Create Category --- .ipynb_checkpoints/Cat-List-checkpoint.ipynb | 1415 +---------------- Cat-List.ipynb | 1476 +----------------- 2 files changed, 81 insertions(+), 2810 deletions(-) diff --git a/.ipynb_checkpoints/Cat-List-checkpoint.ipynb b/.ipynb_checkpoints/Cat-List-checkpoint.ipynb index c2f68ca..a51e573 100644 --- a/.ipynb_checkpoints/Cat-List-checkpoint.ipynb +++ b/.ipynb_checkpoints/Cat-List-checkpoint.ipynb @@ -16,11 +16,12 @@ }, { "cell_type": "code", - "execution_count": 1, + "execution_count": 13, "metadata": {}, "outputs": [], "source": [ - "import pandas as pd" + "import pandas as pd\n", + "import numpy as np" ] }, { @@ -32,15 +33,15 @@ }, { "cell_type": "code", - "execution_count": 231, + "execution_count": 2, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "CPU times: user 12 s, sys: 412 ms, total: 12.4 s\n", - "Wall time: 12.5 s\n" + "CPU times: user 11.2 s, sys: 618 ms, total: 11.8 s\n", + "Wall time: 11.9 s\n" ] } ], @@ -51,7 +52,7 @@ }, { "cell_type": "code", - "execution_count": 224, + "execution_count": 3, "metadata": {}, "outputs": [ { @@ -112,7 +113,7 @@ "0709.1272 [Computer Science - Mathematical Software, Com..." ] }, - "execution_count": 224, + "execution_count": 3, "metadata": {}, "output_type": "execute_result" } @@ -123,17 +124,7 @@ }, { "cell_type": "code", - "execution_count": 111, - "metadata": {}, - "outputs": [], - "source": [ - "# Save to CSV\n", - "#Archive_DataFrame.to_csv('Id_Cat.csv', sep='\\t')" - ] - }, - { - "cell_type": "code", - "execution_count": 112, + "execution_count": 5, "metadata": {}, "outputs": [ { @@ -142,13 +133,13 @@ "['Mathematics - Dynamical Systems']" ] }, - "execution_count": 112, + "execution_count": 5, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "(Cat_Id.iloc[0]['subject'])\n" + "(Cat_Id.iloc[0]['subject'])" ] }, { @@ -160,124 +151,7 @@ }, { "cell_type": "code", - "execution_count": 134, - "metadata": {}, - "outputs": [], - "source": [ - "# One Argument \n", - "Cat_Id_OneArgu = Cat_Id[Cat_Id['subject'] == 'Mathematics - Dynamical Systems']\n", - "#w for w in z if not w in stop_words\n", - "#Cat_Id['subject'].iloc[1]\n" - ] - }, - { - "cell_type": "code", - "execution_count": 135, - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
subject
\n", - "
" - ], - "text/plain": [ - "Empty DataFrame\n", - "Columns: [subject]\n", - "Index: []" - ] - }, - "execution_count": 135, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "Cat_Id_OneArgu" - ] - }, - { - "cell_type": "code", - "execution_count": 131, - "metadata": {}, - "outputs": [ - { - "ename": "KeyError", - "evalue": "False", - "output_type": "error", - "traceback": [ - "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[0;31mKeyError\u001b[0m Traceback (most recent call last)", - "\u001b[0;32m~/.local/lib/python3.6/site-packages/pandas/core/indexes/base.py\u001b[0m in \u001b[0;36mget_loc\u001b[0;34m(self, key, method, tolerance)\u001b[0m\n\u001b[1;32m 3077\u001b[0m \u001b[0;32mtry\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 3078\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_engine\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mget_loc\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mkey\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 3079\u001b[0m \u001b[0;32mexcept\u001b[0m \u001b[0mKeyError\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32mpandas/_libs/index.pyx\u001b[0m in \u001b[0;36mpandas._libs.index.IndexEngine.get_loc\u001b[0;34m()\u001b[0m\n", - "\u001b[0;32mpandas/_libs/index.pyx\u001b[0m in \u001b[0;36mpandas._libs.index.IndexEngine.get_loc\u001b[0;34m()\u001b[0m\n", - "\u001b[0;32mpandas/_libs/hashtable_class_helper.pxi\u001b[0m in \u001b[0;36mpandas._libs.hashtable.PyObjectHashTable.get_item\u001b[0;34m()\u001b[0m\n", - "\u001b[0;32mpandas/_libs/hashtable_class_helper.pxi\u001b[0m in \u001b[0;36mpandas._libs.hashtable.PyObjectHashTable.get_item\u001b[0;34m()\u001b[0m\n", - "\u001b[0;31mKeyError\u001b[0m: False", - "\nDuring handling of the above exception, another exception occurred:\n", - "\u001b[0;31mKeyError\u001b[0m Traceback (most recent call last)", - "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0mCat_Id\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mCat_Id\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mlen\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mCat_Id\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;34m'subject'\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m==\u001b[0m\u001b[0;36m1\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m]\u001b[0m \u001b[0;31m#Cat_Id.iloc[0]['subject']\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m", - "\u001b[0;32m~/.local/lib/python3.6/site-packages/pandas/core/frame.py\u001b[0m in \u001b[0;36m__getitem__\u001b[0;34m(self, key)\u001b[0m\n\u001b[1;32m 2686\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_getitem_multilevel\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mkey\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 2687\u001b[0m \u001b[0;32melse\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 2688\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_getitem_column\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mkey\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 2689\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 2690\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0m_getitem_column\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mkey\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m~/.local/lib/python3.6/site-packages/pandas/core/frame.py\u001b[0m in \u001b[0;36m_getitem_column\u001b[0;34m(self, key)\u001b[0m\n\u001b[1;32m 2693\u001b[0m \u001b[0;31m# get column\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 2694\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mcolumns\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mis_unique\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 2695\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_get_item_cache\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mkey\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 2696\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 2697\u001b[0m \u001b[0;31m# duplicate columns & possible reduce dimensionality\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m~/.local/lib/python3.6/site-packages/pandas/core/generic.py\u001b[0m in \u001b[0;36m_get_item_cache\u001b[0;34m(self, item)\u001b[0m\n\u001b[1;32m 2487\u001b[0m \u001b[0mres\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mcache\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mget\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mitem\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 2488\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mres\u001b[0m \u001b[0;32mis\u001b[0m \u001b[0;32mNone\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 2489\u001b[0;31m \u001b[0mvalues\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_data\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mget\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mitem\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 2490\u001b[0m \u001b[0mres\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_box_item_values\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mitem\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mvalues\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 2491\u001b[0m \u001b[0mcache\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mitem\u001b[0m\u001b[0;34m]\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mres\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m~/.local/lib/python3.6/site-packages/pandas/core/internals.py\u001b[0m in \u001b[0;36mget\u001b[0;34m(self, item, fastpath)\u001b[0m\n\u001b[1;32m 4113\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 4114\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0;32mnot\u001b[0m \u001b[0misna\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mitem\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 4115\u001b[0;31m \u001b[0mloc\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mitems\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mget_loc\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mitem\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 4116\u001b[0m \u001b[0;32melse\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 4117\u001b[0m \u001b[0mindexer\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mnp\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0marange\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mlen\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mitems\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0misna\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mitems\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m~/.local/lib/python3.6/site-packages/pandas/core/indexes/base.py\u001b[0m in \u001b[0;36mget_loc\u001b[0;34m(self, key, method, tolerance)\u001b[0m\n\u001b[1;32m 3078\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_engine\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mget_loc\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mkey\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 3079\u001b[0m \u001b[0;32mexcept\u001b[0m \u001b[0mKeyError\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 3080\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_engine\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mget_loc\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_maybe_cast_indexer\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mkey\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 3081\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 3082\u001b[0m \u001b[0mindexer\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mget_indexer\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mkey\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mmethod\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mmethod\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mtolerance\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mtolerance\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32mpandas/_libs/index.pyx\u001b[0m in \u001b[0;36mpandas._libs.index.IndexEngine.get_loc\u001b[0;34m()\u001b[0m\n", - "\u001b[0;32mpandas/_libs/index.pyx\u001b[0m in \u001b[0;36mpandas._libs.index.IndexEngine.get_loc\u001b[0;34m()\u001b[0m\n", - "\u001b[0;32mpandas/_libs/hashtable_class_helper.pxi\u001b[0m in \u001b[0;36mpandas._libs.hashtable.PyObjectHashTable.get_item\u001b[0;34m()\u001b[0m\n", - "\u001b[0;32mpandas/_libs/hashtable_class_helper.pxi\u001b[0m in \u001b[0;36mpandas._libs.hashtable.PyObjectHashTable.get_item\u001b[0;34m()\u001b[0m\n", - "\u001b[0;31mKeyError\u001b[0m: False" - ] - } - ], - "source": [ - "Cat_Id[len(Cat_Id['subject'])==1] #Cat_Id.iloc[0]['subject']" - ] - }, - { - "cell_type": "code", - "execution_count": 126, - "metadata": {}, - "outputs": [ - { - "ename": "SyntaxError", - "evalue": "invalid syntax (, line 1)", - "output_type": "error", - "traceback": [ - "\u001b[0;36m File \u001b[0;32m\"\"\u001b[0;36m, line \u001b[0;32m1\u001b[0m\n\u001b[0;31m Cat_Id_OneArgu = Cat_Id[i for i in len(Cat_Id['subject']) if Cat_Id['subject'][i]== Cat_Id.iloc[i]['subject']]\u001b[0m\n\u001b[0m ^\u001b[0m\n\u001b[0;31mSyntaxError\u001b[0m\u001b[0;31m:\u001b[0m invalid syntax\n" - ] - } - ], - "source": [ - "Cat_Id_OneArgu = Cat_Id[i for i in len(Cat_Id['subject']) if Cat_Id['subject'][i]== Cat_Id.iloc[i]['subject']]" - ] - }, - { - "cell_type": "code", - "execution_count": 225, + "execution_count": 9, "metadata": {}, "outputs": [], "source": [ @@ -291,7 +165,7 @@ }, { "cell_type": "code", - "execution_count": 240, + "execution_count": 10, "metadata": {}, "outputs": [], "source": [ @@ -322,91 +196,27 @@ }, { "cell_type": "code", - "execution_count": 235, + "execution_count": 19, "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
subject
0705.1532[Mathematics - Dynamical Systems]
0706.1373[Nonlinear Sciences - Exactly Solvable and Int...
0706.2509[High Energy Physics - Theory]
0708.1339[Condensed Matter - Mesoscale and Nanoscale Ph...
0709.1272[Computer Science - Mathematical Software, Com...
\n", - "
" - ], - "text/plain": [ - " subject\n", - "0705.1532 [Mathematics - Dynamical Systems]\n", - "0706.1373 [Nonlinear Sciences - Exactly Solvable and Int...\n", - "0706.2509 [High Energy Physics - Theory]\n", - "0708.1339 [Condensed Matter - Mesoscale and Nanoscale Ph...\n", - "0709.1272 [Computer Science - Mathematical Software, Com..." - ] - }, - "execution_count": 235, - "metadata": {}, - "output_type": "execute_result" - } - ], + "outputs": [], "source": [ - "len( Cat_Id['subject'] )#.apply(lambda x: fun_cat(x, flag=3) )\n", - "test_df = Cat_Id.copy().iloc[:100]\n", - "\n", - "test_df.head()" + "# Cat_Id['subject'].apply(lambda x: fun_cat(x, flag=1) )\n", + "# test_df = Cat_Id.copy().iloc[:100]\n", + "# test_df.head()" ] }, { "cell_type": "code", - "execution_count": 203, + "execution_count": 20, "metadata": {}, "outputs": [], "source": [ - "test_df = Cat_Id.iloc[:1000]" + "#test_df = Cat_Id.iloc[:1000]" ] }, { "cell_type": "code", - "execution_count": 244, + "execution_count": 26, "metadata": {}, "outputs": [ { @@ -492,7 +302,7 @@ "0711.4508 Computational Complexity" ] }, - "execution_count": 244, + "execution_count": 26, "metadata": {}, "output_type": "execute_result" } @@ -560,65 +370,7 @@ } ], "source": [ - "Cat_Id.iloc[0]['subject']\n" - ] - }, - { - "cell_type": "code", - "execution_count": 118, - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
subject
\n", - "
" - ], - "text/plain": [ - "Empty DataFrame\n", - "Columns: [subject]\n", - "Index: []" - ] - }, - "execution_count": 118, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "Cat_Id_OneArgu" - ] - }, - { - "cell_type": "code", - "execution_count": 119, - "metadata": {}, - "outputs": [], - "source": [ - "org_Sub = (Cat_Id['subject'].values)" + "Cat_Id.iloc[0]['subject']" ] }, { @@ -639,1127 +391,6 @@ " else:\n", " First_Argu.append([Temp,'Null'])" ] - }, - { - "cell_type": "code", - "execution_count": 136, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "[['Mathematics', 'Dynamical Systems'],\n", - " ['Nonlinear Sciences', 'Exactly Solvable and Integrable Systems'],\n", - " ['High Energy Physics', 'Theory'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Computer Science', 'Mathematical Software'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Physics', 'Fluid Dynamics'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['Computer Science', 'Computational Complexity'],\n", - " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", - " ['Computer Science', 'Computational Geometry'],\n", - " ['Mathematics', 'Analysis of PDEs'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Mathematics', 'Analysis of PDEs'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Mathematics', 'Group Theory'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Computer Science', 'Information Theory'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Computer Science', 'Digital Libraries'],\n", - " ['General Relativity and Quantum Cosmology', 'Null'],\n", - " ['Astrophysics', 'Null'],\n", - " ['High Energy Physics', 'Experiment'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Condensed Matter', 'Superconductivity'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Nonlinear Sciences', 'Adaptation and Self-Organizing Systems'],\n", - " ['Physics', 'General Physics'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Mathematics', 'Analysis of PDEs'],\n", - " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Mathematics', 'Logic'],\n", - " ['Mathematics', 'Group Theory'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['Mathematics', 'Algebraic Topology'],\n", - " ['Computer Science', 'Operating Systems'],\n", - " ['Mathematics', 'Commutative Algebra'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Mathematics', 'Analysis of PDEs'],\n", - " ['Physics', 'Optics'],\n", - " ['Mathematics', 'Optimization and Control'],\n", - " ['Mathematics', 'Operator Algebras'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Mathematics', 'Rings and Algebras'],\n", - " ['High Energy Physics', 'Phenomenology'],\n", - " ['Computer Science', 'Artificial Intelligence'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['Mathematics', 'Algebraic Topology'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Computer Science', 'Logic in Computer Science'],\n", - " ['Physics', 'Space Physics'],\n", - " ['Mathematics', 'K-Theory and Homology'],\n", - " ['Computer Science', 'Information Theory'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Condensed Matter', 'Disordered Systems and Neural Networks'],\n", - " ['Computer Science', 'Networking and Internet Architecture'],\n", - " ['Computer Science', 'Networking and Internet Architecture'],\n", - " ['Computer Science', 'Networking and Internet Architecture'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['Physics', 'Accelerator Physics'],\n", - " ['High Energy Physics', 'Phenomenology'],\n", - " ['Quantitative Biology', 'Populations and Evolution'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Mathematics', 'Analysis of PDEs'],\n", - " ['Nuclear Theory', 'Null'],\n", - " ['Physics', 'Physics and Society'],\n", - " ['Computer Science', 'Information Theory'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Mathematics', 'Quantum Algebra'],\n", - " ['Mathematics', 'History and Overview'],\n", - " ['Computer Science', 'Cryptography and Security'],\n", - " ['Nuclear Theory', 'Null'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['Nonlinear Sciences', 'Chaotic Dynamics'],\n", - " ['Computer Science', 'Data Structures and Algorithms'],\n", - " ['Nonlinear Sciences', 'Chaotic Dynamics'],\n", - " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", - " ['Condensed Matter', 'Other Condensed Matter'],\n", - " ['Mathematics', 'Metric Geometry'],\n", - " ['Physics', 'Atomic and Molecular Clusters'],\n", - " ['Physics', 'Atomic Physics'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['Condensed Matter', 'Disordered Systems and Neural Networks'],\n", - " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", - " ['Condensed Matter', 'Statistical Mechanics'],\n", - " ['High Energy Physics', 'Phenomenology'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Computer Science', 'Computer Science and Game Theory'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Condensed Matter', 'Statistical Mechanics'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Computer Science', 'Computer Science and Game Theory'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['Mathematics', 'History and Overview'],\n", - " ['Mathematics', 'History and Overview'],\n", - " ['Mathematics', 'Representation Theory'],\n", - " ['Mathematics', 'Functional Analysis'],\n", - " ['Physics', 'Atomic Physics'],\n", - " ['Physics', 'Atomic Physics'],\n", - " ['Condensed Matter', 'Other Condensed Matter'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Mathematics', 'Complex Variables'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['Physics', 'Data Analysis, Statistics and Probability'],\n", - " ['Computer Science', 'Symbolic Computation'],\n", - " ['Mathematics', 'Number Theory'],\n", - " ['Mathematics', 'Representation Theory'],\n", - " ['Computer Science', 'Information Theory'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Computer Science', 'Data Structures and Algorithms'],\n", - " ['Physics', 'Physics and Society'],\n", - " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", - " ['Computer Science', 'Information Retrieval'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Condensed Matter', 'Superconductivity'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Condensed Matter', 'Soft Condensed Matter'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Mathematics', 'Quantum Algebra'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['General Relativity and Quantum Cosmology', 'Null'],\n", - " ['Computer Science', 'Information Theory'],\n", - " ['Computer Science', 'Information Theory'],\n", - " ['Computer Science', 'Information Theory'],\n", - " ['Computer Science', 'Information Theory'],\n", - " ['Computer Science', 'Information Theory'],\n", - " ['Computer Science', 'Information Theory'],\n", - " ['Computer Science', 'Information Theory'],\n", - " ['Computer Science', 'Information Theory'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['High Energy Physics', 'Phenomenology'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['High Energy Physics', 'Phenomenology'],\n", - " ['Mathematics', 'Quantum Algebra'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Mathematics', 'Classical Analysis and ODEs'],\n", - " ['Physics', 'Chemical Physics'],\n", - " ['Physics', 'Optics'],\n", - " ['Physics', 'Data Analysis, Statistics and Probability'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['High Energy Physics', 'Theory'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Mathematics', 'Rings and Algebras'],\n", - " ['Mathematics', 'Analysis of PDEs'],\n", - " ['Physics', 'General Physics'],\n", - " ['Mathematics', 'K-Theory and Homology'],\n", - " ['Mathematics', 'Numerical Analysis'],\n", - " ['Mathematics', 'Numerical Analysis'],\n", - " ['High Energy Physics', 'Phenomenology'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Mathematics', 'Optimization and Control'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['Mathematics', 'Analysis of PDEs'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Condensed Matter', 'Disordered Systems and Neural Networks'],\n", - " ['Condensed Matter', 'Disordered Systems and Neural Networks'],\n", - " ['Condensed Matter', 'Soft Condensed Matter'],\n", - " ['Condensed Matter', 'Soft Condensed Matter'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['Mathematics', 'History and Overview'],\n", - " ['Nonlinear Sciences', 'Chaotic Dynamics'],\n", - " ['Physics', 'Atmospheric and Oceanic Physics'],\n", - " ['Physics', 'Chemical Physics'],\n", - " ['Condensed Matter', 'Disordered Systems and Neural Networks'],\n", - " ['General Relativity and Quantum Cosmology', 'Null'],\n", - " ['Quantitative Biology', 'Populations and Evolution'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['Physics', 'Optics'],\n", - " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", - " ['Mathematics', 'Geometric Topology'],\n", - " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['High Energy Physics', 'Theory'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Mathematics', 'Dynamical Systems'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Mathematics', 'Geometric Topology'],\n", - " ['Mathematics', 'Representation Theory'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Computer Science', 'Information Theory'],\n", - " ['High Energy Physics', 'Phenomenology'],\n", - " ['Computer Science', 'Computational Complexity'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['Mathematics', 'Dynamical Systems'],\n", - " ['Mathematics', 'Dynamical Systems'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Mathematics', 'Geometric Topology'],\n", - " ['Statistics', 'Methodology'],\n", - " ['Condensed Matter', 'Disordered Systems and Neural Networks'],\n", - " ['Condensed Matter', 'Other Condensed Matter'],\n", - " ['Physics', 'Atmospheric and Oceanic Physics'],\n", - " ['Mathematics', 'Complex Variables'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Computer Science', 'Cryptography and Security'],\n", - " ['Nuclear Experiment', 'Null'],\n", - " ['General Relativity and Quantum Cosmology', 'Null'],\n", - " ['Quantitative Biology', 'Neurons and Cognition'],\n", - " ['Physics', 'General Physics'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Physics', 'History and Philosophy of Physics'],\n", - " ['Physics', 'Classical Physics'],\n", - " ['Mathematics', 'Analysis of PDEs'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Computer Science', 'Computation and Language'],\n", - " ['Mathematics', 'Optimization and Control'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Mathematics', 'Optimization and Control'],\n", - " ['High Energy Physics', 'Theory'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['Mathematics', 'Geometric Topology'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['Computer Science', 'Other Computer Science'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Condensed Matter', 'Other Condensed Matter'],\n", - " ['Condensed Matter', 'Statistical Mechanics'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['Mathematics', 'Group Theory'],\n", - " ['Mathematics', 'Group Theory'],\n", - " ['Mathematics', 'Commutative Algebra'],\n", - " ['Mathematics', 'Representation Theory'],\n", - " ['Mathematics', 'Representation Theory'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Mathematics', 'Number Theory'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Condensed Matter', 'Superconductivity'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Condensed Matter', 'Superconductivity'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Physics', 'Accelerator Physics'],\n", - " ['Physics', 'Accelerator Physics'],\n", - " ['Condensed Matter', 'Superconductivity'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['Mathematics', 'Representation Theory'],\n", - " ['Mathematics', 'Representation Theory'],\n", - " ['Mathematics', 'Representation Theory'],\n", - " ['Mathematics', 'Representation Theory'],\n", - " ['Mathematics', 'Number Theory'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Physics', 'Optics'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Mathematics', 'Quantum Algebra'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Quantitative Biology', 'Molecular Networks'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Condensed Matter', 'Disordered Systems and Neural Networks'],\n", - " ['Condensed Matter', 'Superconductivity'],\n", - " ['Condensed Matter', 'Other Condensed Matter'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Condensed Matter', 'Other Condensed Matter'],\n", - " ['Mathematics', 'Optimization and Control'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Mathematics', 'Functional Analysis'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Mathematics', 'Classical Analysis and ODEs'],\n", - " ['Physics', 'Plasma Physics'],\n", - " ['High Energy Physics', 'Phenomenology'],\n", - " ['Mathematics', 'Optimization and Control'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['High Energy Physics', 'Phenomenology'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Computer Science', 'Artificial Intelligence'],\n", - " ['Mathematics', 'Representation Theory'],\n", - " ['Computer Science', 'Data Structures and Algorithms'],\n", - " ['High Energy Physics', 'Phenomenology'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Mathematics', 'Representation Theory'],\n", - " ['Mathematics', 'Representation Theory'],\n", - " ['Mathematics', 'Group Theory'],\n", - " ['Mathematics', 'Representation Theory'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Mathematics', 'Representation Theory'],\n", - " ['Mathematics', 'Group Theory'],\n", - " ['Mathematics', 'Representation Theory'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Mathematics', 'Algebraic Topology'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['Physics', 'Optics'],\n", - " ['Physics', 'Optics'],\n", - " ['Condensed Matter', 'Statistical Mechanics'],\n", - " ['Nonlinear Sciences', 'Exactly Solvable and Integrable Systems'],\n", - " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", - " ['Mathematics', 'Commutative Algebra'],\n", - " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", - " ['Mathematics', 'Numerical Analysis'],\n", - " ['Mathematics', 'Logic'],\n", - " ['Physics', 'Physics and Society'],\n", - " ['Mathematics', 'Metric Geometry'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Condensed Matter', 'Statistical Mechanics'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['Condensed Matter', 'Soft Condensed Matter'],\n", - " ['Condensed Matter', 'Other Condensed Matter'],\n", - " ['Condensed Matter', 'Statistical Mechanics'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Condensed Matter', 'Superconductivity'],\n", - " ['Mathematics', 'Algebraic Topology'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Nuclear Theory', 'Null'],\n", - " ['High Energy Physics', 'Theory'],\n", - " ['High Energy Physics', 'Theory'],\n", - " ['Mathematics', 'Dynamical Systems'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Nuclear Theory', 'Null'],\n", - " ['Mathematics', 'Logic'],\n", - " ['Mathematics', 'Logic'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Mathematics', 'Functional Analysis'],\n", - " ['Mathematics', 'Functional Analysis'],\n", - " ['Mathematics', 'Functional Analysis'],\n", - " ['Mathematics', 'Functional Analysis'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['Mathematics', 'Algebraic Topology'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Mathematics', 'Complex Variables'],\n", - " ['Mathematics', 'Complex Variables'],\n", - " ['Mathematics', 'Analysis of PDEs'],\n", - " ['Computer Science', 'Logic in Computer Science'],\n", - " ['Mathematics', 'History and Overview'],\n", - " ['Physics', 'Fluid Dynamics'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['Physics', 'Biological Physics'],\n", - " ['Mathematics', 'Representation Theory'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Nonlinear Sciences', 'Pattern Formation and Solitons'],\n", - " ['Nonlinear Sciences', 'Cellular Automata and Lattice Gases'],\n", - " ['Statistics', 'Computation'],\n", - " ['Physics', 'Biological Physics'],\n", - " ['Physics', 'Atomic Physics'],\n", - " ['Computer Science', 'Information Theory'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['High Energy Physics', 'Phenomenology'],\n", - " ['Physics', 'General Physics'],\n", - " ['Mathematics', 'Group Theory'],\n", - " ['Mathematics', 'General Mathematics'],\n", - " ['Physics', 'General Physics'],\n", - " ['Computer Science', 'Human-Computer Interaction'],\n", - " ['General Relativity and Quantum Cosmology', 'Null'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Nonlinear Sciences', 'Chaotic Dynamics'],\n", - " ['Computer Science', 'Human-Computer Interaction'],\n", - " ['Nonlinear Sciences', 'Adaptation and Self-Organizing Systems'],\n", - " ['Condensed Matter', 'Other Condensed Matter'],\n", - " ['Physics', 'General Physics'],\n", - " ['Computer Science', 'Human-Computer Interaction'],\n", - " ['Mathematics', 'Classical Analysis and ODEs'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Mathematics', 'Analysis of PDEs'],\n", - " ['Quantitative Biology', 'Genomics'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Mathematics', 'Complex Variables'],\n", - " ['High Energy Physics', 'Phenomenology'],\n", - " ['General Relativity and Quantum Cosmology', 'Null'],\n", - " ['Mathematics', 'Dynamical Systems'],\n", - " ['Condensed Matter', 'Other Condensed Matter'],\n", - " ['Physics', 'Physics and Society'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Nuclear Experiment', 'Null'],\n", - " ['Mathematics', 'Analysis of PDEs'],\n", - " ['Mathematics', 'Geometric Topology'],\n", - " ['Mathematics', 'Category Theory'],\n", - " ['Mathematics', 'Number Theory'],\n", - " ['General Relativity and Quantum Cosmology', 'Null'],\n", - " ['Computer Science', 'Human-Computer Interaction'],\n", - " ['Mathematics', 'Optimization and Control'],\n", - " ['Mathematics', 'Geometric Topology'],\n", - " ['Mathematics', 'Category Theory'],\n", - " ['Physics', 'General Physics'],\n", - " ['Computer Science', 'Computational Geometry'],\n", - " ['Mathematics', 'Analysis of PDEs'],\n", - " ['Physics', 'Physics and Society'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Nuclear Experiment', 'Null'],\n", - " ['Physics', 'Geophysics'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Computer Science', 'Cryptography and Security'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Mathematics', 'Representation Theory'],\n", - " ['Mathematics', 'Representation Theory'],\n", - " ['Mathematics', 'Commutative Algebra'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Mathematics', 'Rings and Algebras'],\n", - " ['Computer Science', 'Information Theory'],\n", - " ['Condensed Matter', 'Other Condensed Matter'],\n", - " ['Mathematics', 'Number Theory'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", - " ['Quantitative Biology', 'Populations and Evolution'],\n", - " ['Physics', 'Fluid Dynamics'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Condensed Matter', 'Statistical Mechanics'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Condensed Matter', 'Other Condensed Matter'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Condensed Matter', 'Other Condensed Matter'],\n", - " ['Condensed Matter', 'Disordered Systems and Neural Networks'],\n", - " ['Condensed Matter', 'Superconductivity'],\n", - " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", - " ['Computer Science', 'Discrete Mathematics'],\n", - " ['Mathematics', 'General Mathematics'],\n", - " ['Condensed Matter', 'Superconductivity'],\n", - " ['Computer Science', 'Computer Vision and Pattern Recognition'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Computer Science', 'Information Theory'],\n", - " ['Mathematics', 'Rings and Algebras'],\n", - " ['Physics', 'Optics'],\n", - " ['Quantitative Biology', 'Genomics'],\n", - " ['Mathematics', 'Optimization and Control'],\n", - " ['Mathematics', 'Quantum Algebra'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", - " ['High Energy Physics', 'Phenomenology'],\n", - " ['Quantitative Biology', 'Quantitative Methods'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Mathematics', 'Statistics Theory'],\n", - " ['Computer Science', 'Information Theory'],\n", - " ['Mathematics', 'Statistics Theory'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Mathematics', 'Statistics Theory'],\n", - " ['Nuclear Experiment', 'Null'],\n", - " ['Statistics', 'Machine Learning'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Computer Science', 'Computer Science and Game Theory'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Physics', 'Fluid Dynamics'],\n", - " ['Mathematics', 'Probability'],\n", - " ['High Energy Physics', 'Experiment'],\n", - " ['Physics', 'Classical Physics'],\n", - " ['Mathematics', 'Number Theory'],\n", - " ['General Relativity and Quantum Cosmology', 'Null'],\n", - " ['Physics', 'Data Analysis, Statistics and Probability'],\n", - " ['Condensed Matter', 'Statistical Mechanics'],\n", - " ['Condensed Matter', 'Statistical Mechanics'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['Computer Science', 'Artificial Intelligence'],\n", - " ['Mathematics', 'Numerical Analysis'],\n", - " ['Mathematics', 'Rings and Algebras'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Nonlinear Sciences', 'Pattern Formation and Solitons'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Mathematics', 'Number Theory'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Quantitative Biology', 'Cell Behavior'],\n", - " ['Mathematics', 'Number Theory'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Physics', 'Biological Physics'],\n", - " ['Physics', 'Instrumentation and Detectors'],\n", - " ['Physics', 'Physics Education'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Mathematics', 'Representation Theory'],\n", - " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", - " ['High Energy Physics', 'Phenomenology'],\n", - " ['Mathematics', 'Geometric Topology'],\n", - " ['Mathematics', 'Geometric Topology'],\n", - " ['Mathematics', 'Geometric Topology'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Condensed Matter', 'Superconductivity'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Condensed Matter', 'Soft Condensed Matter'],\n", - " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['Physics', 'Instrumentation and Detectors'],\n", - " ['Condensed Matter', 'Soft Condensed Matter'],\n", - " ['Condensed Matter', 'Statistical Mechanics'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Physics', 'Physics and Society'],\n", - " ['Condensed Matter', 'Superconductivity'],\n", - " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Condensed Matter', 'Superconductivity'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['High Energy Physics', 'Phenomenology'],\n", - " ['Statistics', 'Computation'],\n", - " ['Mathematics', 'Statistics Theory'],\n", - " ['Condensed Matter', 'Superconductivity'],\n", - " ['High Energy Physics', 'Theory'],\n", - " ['Condensed Matter', 'Superconductivity'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", - " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", - " ['Physics', 'Physics and Society'],\n", - " ['Condensed Matter', 'Soft Condensed Matter'],\n", - " ['Condensed Matter', 'Soft Condensed Matter'],\n", - " ['Physics', 'Physics Education'],\n", - " ['Computer Science', 'Information Theory'],\n", - " ['Astrophysics', 'Null'],\n", - " ['High Energy Physics', 'Phenomenology'],\n", - " ['Mathematics', 'Functional Analysis'],\n", - " ['High Energy Physics', 'Theory'],\n", - " ['High Energy Physics', 'Theory'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Physics', 'Space Physics'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Mathematics', 'Statistics Theory'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Astrophysics', 'Null'],\n", - " ['High Energy Physics', 'Theory'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Condensed Matter', 'Soft Condensed Matter'],\n", - " ['Condensed Matter', 'Soft Condensed Matter'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Mathematics', 'Analysis of PDEs'],\n", - " ['High Energy Physics', 'Phenomenology'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Computer Science', 'Multiagent Systems'],\n", - " ['Computer Science', 'Databases'],\n", - " ['Computer Science', 'Databases'],\n", - " ['Computer Science', 'Databases'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Computer Science', 'Databases'],\n", - " ['Computer Science', 'Symbolic Computation'],\n", - " ['Mathematics', 'Analysis of PDEs'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['High Energy Physics', 'Theory'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Quantitative Biology', 'Genomics'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Astrophysics', 'Null'],\n", - " ['High Energy Physics', 'Phenomenology'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Mathematics', 'Functional Analysis'],\n", - " ['Computer Science', 'Information Theory'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['Condensed Matter', 'Other Condensed Matter'],\n", - " ['Physics', 'Instrumentation and Detectors'],\n", - " ['Physics', 'General Physics'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Mathematics', 'Number Theory'],\n", - " ['Quantitative Biology', 'Biomolecules'],\n", - " ['High Energy Physics', 'Theory'],\n", - " ['Condensed Matter', 'Soft Condensed Matter'],\n", - " ['High Energy Physics', 'Theory'],\n", - " ['Mathematics', 'Representation Theory'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['Mathematics', 'Statistics Theory'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['Mathematics', 'Spectral Theory'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['Nonlinear Sciences', 'Exactly Solvable and Integrable Systems'],\n", - " ['Nuclear Theory', 'Null'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Physics', 'Geophysics'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Condensed Matter', 'Statistical Mechanics'],\n", - " ['Mathematics', 'Statistics Theory'],\n", - " ['Quantitative Biology', 'Neurons and Cognition'],\n", - " ['Condensed Matter', 'Soft Condensed Matter'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Mathematics', 'Number Theory'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Mathematics', 'Statistics Theory'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['Condensed Matter', 'Statistical Mechanics'],\n", - " ['Condensed Matter', 'Soft Condensed Matter'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Mathematics', 'Geometric Topology'],\n", - " ['Condensed Matter', 'Statistical Mechanics'],\n", - " ['Statistics', 'Applications'],\n", - " ['Mathematics', 'Metric Geometry'],\n", - " ['General Relativity and Quantum Cosmology', 'Null'],\n", - " ['Physics', 'Geophysics'],\n", - " ['Condensed Matter', 'Soft Condensed Matter'],\n", - " ['Condensed Matter', 'Disordered Systems and Neural Networks'],\n", - " ['Condensed Matter', 'Soft Condensed Matter'],\n", - " ['Condensed Matter', 'Disordered Systems and Neural Networks'],\n", - " ['Condensed Matter', 'Superconductivity'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Condensed Matter', 'Superconductivity'],\n", - " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", - " ['Physics', 'Optics'],\n", - " ['Condensed Matter', 'Other Condensed Matter'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", - " ['Mathematics', 'Functional Analysis'],\n", - " ['Condensed Matter', 'Other Condensed Matter'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Condensed Matter', 'Statistical Mechanics'],\n", - " ['Mathematics', 'Quantum Algebra'],\n", - " ['Condensed Matter', 'Statistical Mechanics'],\n", - " ['Mathematics', 'Algebraic Topology'],\n", - " ['High Energy Physics', 'Experiment'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Statistics', 'Applications'],\n", - " ['High Energy Physics', 'Phenomenology'],\n", - " ['Mathematics', 'Geometric Topology'],\n", - " ['High Energy Physics', 'Experiment'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Mathematics', 'Symplectic Geometry'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Computer Science', 'Learning'],\n", - " ['Nonlinear Sciences', 'Exactly Solvable and Integrable Systems'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Nuclear Experiment', 'Null'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Condensed Matter', 'Statistical Mechanics'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Mathematics', 'Functional Analysis'],\n", - " ['Mathematics', 'Functional Analysis'],\n", - " ['Physics', 'Atomic Physics'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Mathematics', 'Number Theory'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Computer Science', 'Databases'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Physics', 'General Physics'],\n", - " ['Mathematics', 'Functional Analysis'],\n", - " ['High Energy Physics', 'Lattice'],\n", - " ['Mathematics', 'Functional Analysis'],\n", - " ['Physics', 'Physics Education'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Mathematics', 'Analysis of PDEs'],\n", - " ['Mathematics', 'Analysis of PDEs'],\n", - " ['Mathematics', 'Representation Theory'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['High Energy Physics', 'Phenomenology'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['Quantitative Biology', 'Populations and Evolution'],\n", - " ['Mathematics', 'Functional Analysis'],\n", - " ['Computer Science', 'Information Theory'],\n", - " ['Astrophysics', 'Null'],\n", - " ['High Energy Physics', 'Theory'],\n", - " ['Mathematics', 'Algebraic Topology'],\n", - " ['Mathematics', 'Geometric Topology'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Mathematics', 'Group Theory'],\n", - " ['Physics', 'Classical Physics'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", - " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", - " ['Computer Science', 'Computational Complexity'],\n", - " ['Mathematics', 'Classical Analysis and ODEs'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['High Energy Physics', 'Experiment'],\n", - " ['High Energy Physics', 'Experiment'],\n", - " ['High Energy Physics', 'Experiment'],\n", - " ['High Energy Physics', 'Experiment'],\n", - " ['High Energy Physics', 'Experiment'],\n", - " ['High Energy Physics', 'Experiment'],\n", - " ['High Energy Physics', 'Experiment'],\n", - " ['High Energy Physics', 'Experiment'],\n", - " ['High Energy Physics', 'Experiment'],\n", - " ['High Energy Physics', 'Experiment'],\n", - " ['High Energy Physics', 'Experiment'],\n", - " ['High Energy Physics', 'Experiment'],\n", - " ['High Energy Physics', 'Experiment'],\n", - " ['High Energy Physics', 'Experiment'],\n", - " ['High Energy Physics', 'Experiment'],\n", - " ['High Energy Physics', 'Experiment'],\n", - " ['High Energy Physics', 'Experiment'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['Physics', 'Physics and Society'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['Condensed Matter', 'Other Condensed Matter'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Mathematics', 'Number Theory'],\n", - " ['High Energy Physics', 'Theory'],\n", - " ['Physics', 'Optics'],\n", - " ['Mathematics', 'Group Theory'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Mathematics', 'Operator Algebras'],\n", - " ['Mathematics', 'Analysis of PDEs'],\n", - " ['Mathematics', 'Symplectic Geometry'],\n", - " ['Condensed Matter', 'Soft Condensed Matter'],\n", - " ['Condensed Matter', 'Superconductivity'],\n", - " ['Physics', 'Atmospheric and Oceanic Physics'],\n", - " ['Mathematics', 'Dynamical Systems'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['Mathematics', 'Statistics Theory'],\n", - " ['Mathematics', 'Spectral Theory'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Condensed Matter', 'Disordered Systems and Neural Networks'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Condensed Matter', 'Statistical Mechanics'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Physics', 'Optics'],\n", - " ['Condensed Matter', 'Statistical Mechanics'],\n", - " ['Condensed Matter', 'Statistical Mechanics'],\n", - " ['Condensed Matter', 'Other Condensed Matter'],\n", - " ['Mathematics', 'Quantum Algebra'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['High Energy Physics', 'Theory'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Mathematics', 'Number Theory'],\n", - " ['Quantitative Biology', 'Cell Behavior'],\n", - " ['High Energy Physics', 'Phenomenology'],\n", - " ['Physics', 'General Physics'],\n", - " ['Mathematics', 'Numerical Analysis'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Nuclear Theory', 'Null'],\n", - " ['Mathematics', 'Analysis of PDEs'],\n", - " ['High Energy Physics', 'Theory'],\n", - " ['Mathematics', 'Quantum Algebra'],\n", - " ['Physics', 'Optics'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['Condensed Matter', 'Soft Condensed Matter'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Condensed Matter', 'Statistical Mechanics'],\n", - " ['Computer Science', 'Computation and Language'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['High Energy Physics', 'Phenomenology'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Physics', 'General Physics'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Physics', 'General Physics'],\n", - " ['Condensed Matter', 'Soft Condensed Matter'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Condensed Matter', 'Disordered Systems and Neural Networks'],\n", - " ['Physics', 'Instrumentation and Detectors'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Physics', 'Physics and Society'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Mathematics', 'Numerical Analysis'],\n", - " ['High Energy Physics', 'Theory'],\n", - " ['Physics', 'Physics Education'],\n", - " ['Mathematics', 'Numerical Analysis'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Condensed Matter', 'Statistical Mechanics'],\n", - " ['Condensed Matter', 'Statistical Mechanics'],\n", - " ['Condensed Matter', 'Statistical Mechanics'],\n", - " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", - " ['Condensed Matter', 'Statistical Mechanics'],\n", - " ['Computer Science', 'Computational Complexity'],\n", - " ['Computer Science', 'Discrete Mathematics'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Mathematics', 'Metric Geometry'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['Computer Science', 'Human-Computer Interaction'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Mathematics', 'Geometric Topology'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Condensed Matter', 'Other Condensed Matter'],\n", - " ['Mathematics', 'Number Theory'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Condensed Matter', 'Superconductivity'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['High Energy Physics', 'Theory'],\n", - " ['Mathematics', 'Algebraic Topology'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Computer Science', 'Cryptography and Security'],\n", - " ['Mathematics', 'Statistics Theory'],\n", - " ['Quantitative Biology', 'Quantitative Methods'],\n", - " ['Computer Science', 'Information Retrieval'],\n", - " ['Computer Science', 'Learning'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Mathematics', 'Geometric Topology'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['Computer Science', 'Computational Complexity'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Computer Science', 'Software Engineering'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Mathematics', 'Analysis of PDEs'],\n", - " ['Computer Science', 'Computers and Society'],\n", - " ['Mathematics', 'Functional Analysis'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Mathematics', 'Commutative Algebra'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Computer Science', 'Information Theory'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Computer Science', 'Information Theory'],\n", - " ['Mathematics', 'Analysis of PDEs'],\n", - " ['Mathematics', 'Dynamical Systems'],\n", - " ['Quantitative Biology', 'Populations and Evolution'],\n", - " ['Mathematics', 'Complex Variables'],\n", - " ['Physics', 'Computational Physics'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Computer Science', 'Other Computer Science'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Physics', 'Plasma Physics'],\n", - " ['Nonlinear Sciences', 'Chaotic Dynamics'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Physics', 'Computational Physics'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Computer Science', 'Neural and Evolutionary Computing'],\n", - " ['Mathematics', 'Dynamical Systems'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Computer Science', 'Distributed, Parallel, and Cluster Computing'],\n", - " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", - " ['High Energy Physics', 'Phenomenology'],\n", - " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", - " ['Computer Science', 'Artificial Intelligence'],\n", - " ['Mathematics', 'General Mathematics'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Mathematics', 'Dynamical Systems'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['General Relativity and Quantum Cosmology', 'Null'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Condensed Matter', 'Other Condensed Matter'],\n", - " ['Nonlinear Sciences', 'Chaotic Dynamics'],\n", - " ['Mathematics', 'Spectral Theory'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Physics', 'Classical Physics'],\n", - " ['Physics', 'Atomic and Molecular Clusters'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['Physics', 'Atomic and Molecular Clusters'],\n", - " ['Condensed Matter', 'Superconductivity'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Quantitative Biology', 'Neurons and Cognition'],\n", - " ['Physics', 'Physics and Society'],\n", - " ['Mathematics', 'Classical Analysis and ODEs'],\n", - " ['Quantitative Biology', 'Molecular Networks'],\n", - " ['Computer Science', 'Data Structures and Algorithms'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Nuclear Theory', 'Null'],\n", - " ['Astrophysics', 'Null'],\n", - " ['High Energy Physics', 'Theory'],\n", - " ['High Energy Physics', 'Theory'],\n", - " ['High Energy Physics', 'Theory'],\n", - " ['High Energy Physics', 'Theory'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Mathematics', 'Operator Algebras'],\n", - " ['Mathematics', 'Geometric Topology'],\n", - " ['Mathematics', 'Quantum Algebra'],\n", - " ['Mathematics', 'Spectral Theory'],\n", - " ['Physics', 'Chemical Physics'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Mathematics', 'Quantum Algebra'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Condensed Matter', 'Statistical Mechanics'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Condensed Matter', 'Soft Condensed Matter'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Condensed Matter', 'Superconductivity'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Condensed Matter', 'Statistical Mechanics'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['Physics', 'Atomic Physics'],\n", - " ['Computer Science', 'Information Theory'],\n", - " ['Condensed Matter', 'Superconductivity'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['High Energy Physics', 'Theory'],\n", - " ['Physics', 'General Physics'],\n", - " ['Physics', 'General Physics'],\n", - " ['Computer Science', 'Other Computer Science'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['Mathematics', 'Analysis of PDEs'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Mathematics', 'Functional Analysis'],\n", - " ['Mathematics', 'Analysis of PDEs'],\n", - " ['Mathematics', 'Optimization and Control'],\n", - " ['Condensed Matter', 'Superconductivity'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Condensed Matter', 'Soft Condensed Matter'],\n", - " ['Computer Science', 'Software Engineering'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Physics', 'Geophysics'],\n", - " ['Mathematics', 'Operator Algebras'],\n", - " ['Nuclear Theory', 'Null'],\n", - " ...]" - ] - }, - "execution_count": 136, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "First_Argu" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "metadata": {}, - "outputs": [], - "source": [ - "# Seperate between 1 Sub, Two or more " - ] - }, - { - "cell_type": "code", - "execution_count": 15, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "['Quantum Physics', 'Condensed Matter - Statistical Mechanics']" - ] - }, - "execution_count": 15, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "org_Sub[6]" - ] - }, - { - "cell_type": "code", - "execution_count": 20, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "'Mathematics'" - ] - }, - "execution_count": 20, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Test Area" - ] - }, - { - "cell_type": "code", - "execution_count": 8, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "['Quantum Physics', 'Condensed Matter - Statistical Mechanics']" - ] - }, - "execution_count": 8, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "Archive_DataFrame.iloc[6]['subject']" - ] - }, - { - "cell_type": "code", - "execution_count": 21, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "3" - ] - }, - "execution_count": 21, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "len(Archive_DataFrame.iloc[-3]['subject'])" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] } ], "metadata": { diff --git a/Cat-List.ipynb b/Cat-List.ipynb index c2f68ca..eaa3a05 100644 --- a/Cat-List.ipynb +++ b/Cat-List.ipynb @@ -16,11 +16,12 @@ }, { "cell_type": "code", - "execution_count": 1, + "execution_count": 13, "metadata": {}, "outputs": [], "source": [ - "import pandas as pd" + "import pandas as pd\n", + "import numpy as np" ] }, { @@ -32,15 +33,15 @@ }, { "cell_type": "code", - "execution_count": 231, + "execution_count": 2, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "CPU times: user 12 s, sys: 412 ms, total: 12.4 s\n", - "Wall time: 12.5 s\n" + "CPU times: user 11.2 s, sys: 618 ms, total: 11.8 s\n", + "Wall time: 11.9 s\n" ] } ], @@ -51,7 +52,7 @@ }, { "cell_type": "code", - "execution_count": 224, + "execution_count": 3, "metadata": {}, "outputs": [ { @@ -112,7 +113,7 @@ "0709.1272 [Computer Science - Mathematical Software, Com..." ] }, - "execution_count": 224, + "execution_count": 3, "metadata": {}, "output_type": "execute_result" } @@ -123,17 +124,7 @@ }, { "cell_type": "code", - "execution_count": 111, - "metadata": {}, - "outputs": [], - "source": [ - "# Save to CSV\n", - "#Archive_DataFrame.to_csv('Id_Cat.csv', sep='\\t')" - ] - }, - { - "cell_type": "code", - "execution_count": 112, + "execution_count": 5, "metadata": {}, "outputs": [ { @@ -142,13 +133,13 @@ "['Mathematics - Dynamical Systems']" ] }, - "execution_count": 112, + "execution_count": 5, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "(Cat_Id.iloc[0]['subject'])\n" + "(Cat_Id.iloc[0]['subject'])" ] }, { @@ -160,124 +151,7 @@ }, { "cell_type": "code", - "execution_count": 134, - "metadata": {}, - "outputs": [], - "source": [ - "# One Argument \n", - "Cat_Id_OneArgu = Cat_Id[Cat_Id['subject'] == 'Mathematics - Dynamical Systems']\n", - "#w for w in z if not w in stop_words\n", - "#Cat_Id['subject'].iloc[1]\n" - ] - }, - { - "cell_type": "code", - "execution_count": 135, - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
subject
\n", - "
" - ], - "text/plain": [ - "Empty DataFrame\n", - "Columns: [subject]\n", - "Index: []" - ] - }, - "execution_count": 135, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "Cat_Id_OneArgu" - ] - }, - { - "cell_type": "code", - "execution_count": 131, - "metadata": {}, - "outputs": [ - { - "ename": "KeyError", - "evalue": "False", - "output_type": "error", - "traceback": [ - "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[0;31mKeyError\u001b[0m Traceback (most recent call last)", - "\u001b[0;32m~/.local/lib/python3.6/site-packages/pandas/core/indexes/base.py\u001b[0m in \u001b[0;36mget_loc\u001b[0;34m(self, key, method, tolerance)\u001b[0m\n\u001b[1;32m 3077\u001b[0m \u001b[0;32mtry\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 3078\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_engine\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mget_loc\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mkey\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 3079\u001b[0m \u001b[0;32mexcept\u001b[0m \u001b[0mKeyError\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32mpandas/_libs/index.pyx\u001b[0m in \u001b[0;36mpandas._libs.index.IndexEngine.get_loc\u001b[0;34m()\u001b[0m\n", - "\u001b[0;32mpandas/_libs/index.pyx\u001b[0m in \u001b[0;36mpandas._libs.index.IndexEngine.get_loc\u001b[0;34m()\u001b[0m\n", - "\u001b[0;32mpandas/_libs/hashtable_class_helper.pxi\u001b[0m in \u001b[0;36mpandas._libs.hashtable.PyObjectHashTable.get_item\u001b[0;34m()\u001b[0m\n", - "\u001b[0;32mpandas/_libs/hashtable_class_helper.pxi\u001b[0m in \u001b[0;36mpandas._libs.hashtable.PyObjectHashTable.get_item\u001b[0;34m()\u001b[0m\n", - "\u001b[0;31mKeyError\u001b[0m: False", - "\nDuring handling of the above exception, another exception occurred:\n", - "\u001b[0;31mKeyError\u001b[0m Traceback (most recent call last)", - "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0mCat_Id\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mCat_Id\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mlen\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mCat_Id\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;34m'subject'\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m==\u001b[0m\u001b[0;36m1\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m]\u001b[0m \u001b[0;31m#Cat_Id.iloc[0]['subject']\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m", - "\u001b[0;32m~/.local/lib/python3.6/site-packages/pandas/core/frame.py\u001b[0m in \u001b[0;36m__getitem__\u001b[0;34m(self, key)\u001b[0m\n\u001b[1;32m 2686\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_getitem_multilevel\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mkey\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 2687\u001b[0m \u001b[0;32melse\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 2688\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_getitem_column\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mkey\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 2689\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 2690\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0m_getitem_column\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mkey\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m~/.local/lib/python3.6/site-packages/pandas/core/frame.py\u001b[0m in \u001b[0;36m_getitem_column\u001b[0;34m(self, key)\u001b[0m\n\u001b[1;32m 2693\u001b[0m \u001b[0;31m# get column\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 2694\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mcolumns\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mis_unique\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 2695\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_get_item_cache\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mkey\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 2696\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 2697\u001b[0m \u001b[0;31m# duplicate columns & possible reduce dimensionality\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m~/.local/lib/python3.6/site-packages/pandas/core/generic.py\u001b[0m in \u001b[0;36m_get_item_cache\u001b[0;34m(self, item)\u001b[0m\n\u001b[1;32m 2487\u001b[0m \u001b[0mres\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mcache\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mget\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mitem\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 2488\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mres\u001b[0m \u001b[0;32mis\u001b[0m \u001b[0;32mNone\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 2489\u001b[0;31m \u001b[0mvalues\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_data\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mget\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mitem\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 2490\u001b[0m \u001b[0mres\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_box_item_values\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mitem\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mvalues\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 2491\u001b[0m \u001b[0mcache\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mitem\u001b[0m\u001b[0;34m]\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mres\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m~/.local/lib/python3.6/site-packages/pandas/core/internals.py\u001b[0m in \u001b[0;36mget\u001b[0;34m(self, item, fastpath)\u001b[0m\n\u001b[1;32m 4113\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 4114\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0;32mnot\u001b[0m \u001b[0misna\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mitem\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 4115\u001b[0;31m \u001b[0mloc\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mitems\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mget_loc\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mitem\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 4116\u001b[0m \u001b[0;32melse\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 4117\u001b[0m \u001b[0mindexer\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mnp\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0marange\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mlen\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mitems\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0misna\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mitems\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m~/.local/lib/python3.6/site-packages/pandas/core/indexes/base.py\u001b[0m in \u001b[0;36mget_loc\u001b[0;34m(self, key, method, tolerance)\u001b[0m\n\u001b[1;32m 3078\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_engine\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mget_loc\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mkey\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 3079\u001b[0m \u001b[0;32mexcept\u001b[0m \u001b[0mKeyError\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 3080\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_engine\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mget_loc\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_maybe_cast_indexer\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mkey\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 3081\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 3082\u001b[0m \u001b[0mindexer\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mget_indexer\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mkey\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mmethod\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mmethod\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mtolerance\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mtolerance\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32mpandas/_libs/index.pyx\u001b[0m in \u001b[0;36mpandas._libs.index.IndexEngine.get_loc\u001b[0;34m()\u001b[0m\n", - "\u001b[0;32mpandas/_libs/index.pyx\u001b[0m in \u001b[0;36mpandas._libs.index.IndexEngine.get_loc\u001b[0;34m()\u001b[0m\n", - "\u001b[0;32mpandas/_libs/hashtable_class_helper.pxi\u001b[0m in \u001b[0;36mpandas._libs.hashtable.PyObjectHashTable.get_item\u001b[0;34m()\u001b[0m\n", - "\u001b[0;32mpandas/_libs/hashtable_class_helper.pxi\u001b[0m in \u001b[0;36mpandas._libs.hashtable.PyObjectHashTable.get_item\u001b[0;34m()\u001b[0m\n", - "\u001b[0;31mKeyError\u001b[0m: False" - ] - } - ], - "source": [ - "Cat_Id[len(Cat_Id['subject'])==1] #Cat_Id.iloc[0]['subject']" - ] - }, - { - "cell_type": "code", - "execution_count": 126, - "metadata": {}, - "outputs": [ - { - "ename": "SyntaxError", - "evalue": "invalid syntax (, line 1)", - "output_type": "error", - "traceback": [ - "\u001b[0;36m File \u001b[0;32m\"\"\u001b[0;36m, line \u001b[0;32m1\u001b[0m\n\u001b[0;31m Cat_Id_OneArgu = Cat_Id[i for i in len(Cat_Id['subject']) if Cat_Id['subject'][i]== Cat_Id.iloc[i]['subject']]\u001b[0m\n\u001b[0m ^\u001b[0m\n\u001b[0;31mSyntaxError\u001b[0m\u001b[0;31m:\u001b[0m invalid syntax\n" - ] - } - ], - "source": [ - "Cat_Id_OneArgu = Cat_Id[i for i in len(Cat_Id['subject']) if Cat_Id['subject'][i]== Cat_Id.iloc[i]['subject']]" - ] - }, - { - "cell_type": "code", - "execution_count": 225, + "execution_count": 9, "metadata": {}, "outputs": [], "source": [ @@ -291,7 +165,7 @@ }, { "cell_type": "code", - "execution_count": 240, + "execution_count": 10, "metadata": {}, "outputs": [], "source": [ @@ -322,91 +196,27 @@ }, { "cell_type": "code", - "execution_count": 235, + "execution_count": 19, "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
subject
0705.1532[Mathematics - Dynamical Systems]
0706.1373[Nonlinear Sciences - Exactly Solvable and Int...
0706.2509[High Energy Physics - Theory]
0708.1339[Condensed Matter - Mesoscale and Nanoscale Ph...
0709.1272[Computer Science - Mathematical Software, Com...
\n", - "
" - ], - "text/plain": [ - " subject\n", - "0705.1532 [Mathematics - Dynamical Systems]\n", - "0706.1373 [Nonlinear Sciences - Exactly Solvable and Int...\n", - "0706.2509 [High Energy Physics - Theory]\n", - "0708.1339 [Condensed Matter - Mesoscale and Nanoscale Ph...\n", - "0709.1272 [Computer Science - Mathematical Software, Com..." - ] - }, - "execution_count": 235, - "metadata": {}, - "output_type": "execute_result" - } - ], + "outputs": [], "source": [ - "len( Cat_Id['subject'] )#.apply(lambda x: fun_cat(x, flag=3) )\n", - "test_df = Cat_Id.copy().iloc[:100]\n", - "\n", - "test_df.head()" + "# Cat_Id['subject'].apply(lambda x: fun_cat(x, flag=1) )\n", + "# test_df = Cat_Id.copy().iloc[:100]\n", + "# test_df.head()" ] }, { "cell_type": "code", - "execution_count": 203, + "execution_count": 20, "metadata": {}, "outputs": [], "source": [ - "test_df = Cat_Id.iloc[:1000]" + "#test_df = Cat_Id.iloc[:1000]" ] }, { "cell_type": "code", - "execution_count": 244, + "execution_count": 34, "metadata": {}, "outputs": [ { @@ -436,85 +246,94 @@ " \n", " \n", " 0705.1532\n", - " Dynamical Systems\n", + " [Dynamical Systems]\n", " \n", " \n", " 0706.1373\n", - " Exactly Solvable and Integrable Systems\n", + " [Exactly Solvable and Integrable Systems]\n", " \n", " \n", " 0706.2509\n", - " Theory\n", + " [Theory]\n", " \n", " \n", " 0708.1339\n", - " Mesoscale and Nanoscale Physics\n", + " [Mesoscale and Nanoscale Physics, Superconduct...\n", " \n", " \n", " 0709.1272\n", - " Mathematical Software\n", + " [Mathematical Software, Distributed, Parallel,...\n", " \n", " \n", " 0709.1704\n", - " NaN\n", + " [nan, General Physics]\n", " \n", " \n", " 0710.2868\n", - " NaN\n", + " [nan, Statistical Mechanics]\n", " \n", " \n", " 0710.4005\n", - " Fluid Dynamics\n", + " [Fluid Dynamics, nan]\n", " \n", " \n", " 0711.4246\n", - " NaN\n", + " [nan, Statistical Mechanics, Probability, nan]\n", " \n", " \n", " 0711.4508\n", - " Computational Complexity\n", + " [Computational Complexity, Computer Vision and...\n", " \n", " \n", "\n", "" ], "text/plain": [ - " subject\n", - "0705.1532 Dynamical Systems\n", - "0706.1373 Exactly Solvable and Integrable Systems\n", - "0706.2509 Theory\n", - "0708.1339 Mesoscale and Nanoscale Physics\n", - "0709.1272 Mathematical Software\n", - "0709.1704 NaN\n", - "0710.2868 NaN\n", - "0710.4005 Fluid Dynamics\n", - "0711.4246 NaN\n", - "0711.4508 Computational Complexity" + " subject\n", + "0705.1532 [Dynamical Systems]\n", + "0706.1373 [Exactly Solvable and Integrable Systems]\n", + "0706.2509 [Theory]\n", + "0708.1339 [Mesoscale and Nanoscale Physics, Superconduct...\n", + "0709.1272 [Mathematical Software, Distributed, Parallel,...\n", + "0709.1704 [nan, General Physics]\n", + "0710.2868 [nan, Statistical Mechanics]\n", + "0710.4005 [Fluid Dynamics, nan]\n", + "0711.4246 [nan, Statistical Mechanics, Probability, nan]\n", + "0711.4508 [Computational Complexity, Computer Vision and..." ] }, - "execution_count": 244, + "execution_count": 34, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "test_df = Cat_Id.copy().iloc[:100]\n", - "test_df['subject'] = test_df['subject'].apply(lambda x: fun_cat(x, flag=1) )\n", + "test_df = Cat_Id.copy()\n", + "test_df['subject'] = test_df['subject'].apply(lambda x: fun_cat(x, flag=3) )\n", "test_df.head(10)" ] }, { "cell_type": "code", - "execution_count": 178, + "execution_count": 35, + "metadata": {}, + "outputs": [], + "source": [ + "test_df.to_csv('ALL_SubCat.csv', sep='\\t') \n" + ] + }, + { + "cell_type": "code", + "execution_count": 36, "metadata": {}, "outputs": [ { "data": { "text/plain": [ - "'Nonlinear Sciences'" + "'Exactly Solvable and Integrable Systems'" ] }, - "execution_count": 178, + "execution_count": 36, "metadata": {}, "output_type": "execute_result" } @@ -560,65 +379,7 @@ } ], "source": [ - "Cat_Id.iloc[0]['subject']\n" - ] - }, - { - "cell_type": "code", - "execution_count": 118, - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
subject
\n", - "
" - ], - "text/plain": [ - "Empty DataFrame\n", - "Columns: [subject]\n", - "Index: []" - ] - }, - "execution_count": 118, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "Cat_Id_OneArgu" - ] - }, - { - "cell_type": "code", - "execution_count": 119, - "metadata": {}, - "outputs": [], - "source": [ - "org_Sub = (Cat_Id['subject'].values)" + "Cat_Id.iloc[0]['subject']" ] }, { @@ -639,1127 +400,6 @@ " else:\n", " First_Argu.append([Temp,'Null'])" ] - }, - { - "cell_type": "code", - "execution_count": 136, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "[['Mathematics', 'Dynamical Systems'],\n", - " ['Nonlinear Sciences', 'Exactly Solvable and Integrable Systems'],\n", - " ['High Energy Physics', 'Theory'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Computer Science', 'Mathematical Software'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Physics', 'Fluid Dynamics'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['Computer Science', 'Computational Complexity'],\n", - " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", - " ['Computer Science', 'Computational Geometry'],\n", - " ['Mathematics', 'Analysis of PDEs'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Mathematics', 'Analysis of PDEs'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Mathematics', 'Group Theory'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Computer Science', 'Information Theory'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Computer Science', 'Digital Libraries'],\n", - " ['General Relativity and Quantum Cosmology', 'Null'],\n", - " ['Astrophysics', 'Null'],\n", - " ['High Energy Physics', 'Experiment'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Condensed Matter', 'Superconductivity'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Nonlinear Sciences', 'Adaptation and Self-Organizing Systems'],\n", - " ['Physics', 'General Physics'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Mathematics', 'Analysis of PDEs'],\n", - " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Mathematics', 'Logic'],\n", - " ['Mathematics', 'Group Theory'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['Mathematics', 'Algebraic Topology'],\n", - " ['Computer Science', 'Operating Systems'],\n", - " ['Mathematics', 'Commutative Algebra'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Mathematics', 'Analysis of PDEs'],\n", - " ['Physics', 'Optics'],\n", - " ['Mathematics', 'Optimization and Control'],\n", - " ['Mathematics', 'Operator Algebras'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Mathematics', 'Rings and Algebras'],\n", - " ['High Energy Physics', 'Phenomenology'],\n", - " ['Computer Science', 'Artificial Intelligence'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['Mathematics', 'Algebraic Topology'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Computer Science', 'Logic in Computer Science'],\n", - " ['Physics', 'Space Physics'],\n", - " ['Mathematics', 'K-Theory and Homology'],\n", - " ['Computer Science', 'Information Theory'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Condensed Matter', 'Disordered Systems and Neural Networks'],\n", - " ['Computer Science', 'Networking and Internet Architecture'],\n", - " ['Computer Science', 'Networking and Internet Architecture'],\n", - " ['Computer Science', 'Networking and Internet Architecture'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['Physics', 'Accelerator Physics'],\n", - " ['High Energy Physics', 'Phenomenology'],\n", - " ['Quantitative Biology', 'Populations and Evolution'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Mathematics', 'Analysis of PDEs'],\n", - " ['Nuclear Theory', 'Null'],\n", - " ['Physics', 'Physics and Society'],\n", - " ['Computer Science', 'Information Theory'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Mathematics', 'Quantum Algebra'],\n", - " ['Mathematics', 'History and Overview'],\n", - " ['Computer Science', 'Cryptography and Security'],\n", - " ['Nuclear Theory', 'Null'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['Nonlinear Sciences', 'Chaotic Dynamics'],\n", - " ['Computer Science', 'Data Structures and Algorithms'],\n", - " ['Nonlinear Sciences', 'Chaotic Dynamics'],\n", - " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", - " ['Condensed Matter', 'Other Condensed Matter'],\n", - " ['Mathematics', 'Metric Geometry'],\n", - " ['Physics', 'Atomic and Molecular Clusters'],\n", - " ['Physics', 'Atomic Physics'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['Condensed Matter', 'Disordered Systems and Neural Networks'],\n", - " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", - " ['Condensed Matter', 'Statistical Mechanics'],\n", - " ['High Energy Physics', 'Phenomenology'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Computer Science', 'Computer Science and Game Theory'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Condensed Matter', 'Statistical Mechanics'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Computer Science', 'Computer Science and Game Theory'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['Mathematics', 'History and Overview'],\n", - " ['Mathematics', 'History and Overview'],\n", - " ['Mathematics', 'Representation Theory'],\n", - " ['Mathematics', 'Functional Analysis'],\n", - " ['Physics', 'Atomic Physics'],\n", - " ['Physics', 'Atomic Physics'],\n", - " ['Condensed Matter', 'Other Condensed Matter'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Mathematics', 'Complex Variables'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['Physics', 'Data Analysis, Statistics and Probability'],\n", - " ['Computer Science', 'Symbolic Computation'],\n", - " ['Mathematics', 'Number Theory'],\n", - " ['Mathematics', 'Representation Theory'],\n", - " ['Computer Science', 'Information Theory'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Computer Science', 'Data Structures and Algorithms'],\n", - " ['Physics', 'Physics and Society'],\n", - " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", - " ['Computer Science', 'Information Retrieval'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Condensed Matter', 'Superconductivity'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Condensed Matter', 'Soft Condensed Matter'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Mathematics', 'Quantum Algebra'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['General Relativity and Quantum Cosmology', 'Null'],\n", - " ['Computer Science', 'Information Theory'],\n", - " ['Computer Science', 'Information Theory'],\n", - " ['Computer Science', 'Information Theory'],\n", - " ['Computer Science', 'Information Theory'],\n", - " ['Computer Science', 'Information Theory'],\n", - " ['Computer Science', 'Information Theory'],\n", - " ['Computer Science', 'Information Theory'],\n", - " ['Computer Science', 'Information Theory'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['High Energy Physics', 'Phenomenology'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['High Energy Physics', 'Phenomenology'],\n", - " ['Mathematics', 'Quantum Algebra'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Mathematics', 'Classical Analysis and ODEs'],\n", - " ['Physics', 'Chemical Physics'],\n", - " ['Physics', 'Optics'],\n", - " ['Physics', 'Data Analysis, Statistics and Probability'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['High Energy Physics', 'Theory'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Mathematics', 'Rings and Algebras'],\n", - " ['Mathematics', 'Analysis of PDEs'],\n", - " ['Physics', 'General Physics'],\n", - " ['Mathematics', 'K-Theory and Homology'],\n", - " ['Mathematics', 'Numerical Analysis'],\n", - " ['Mathematics', 'Numerical Analysis'],\n", - " ['High Energy Physics', 'Phenomenology'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Mathematics', 'Optimization and Control'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['Mathematics', 'Analysis of PDEs'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Condensed Matter', 'Disordered Systems and Neural Networks'],\n", - " ['Condensed Matter', 'Disordered Systems and Neural Networks'],\n", - " ['Condensed Matter', 'Soft Condensed Matter'],\n", - " ['Condensed Matter', 'Soft Condensed Matter'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['Mathematics', 'History and Overview'],\n", - " ['Nonlinear Sciences', 'Chaotic Dynamics'],\n", - " ['Physics', 'Atmospheric and Oceanic Physics'],\n", - " ['Physics', 'Chemical Physics'],\n", - " ['Condensed Matter', 'Disordered Systems and Neural Networks'],\n", - " ['General Relativity and Quantum Cosmology', 'Null'],\n", - " ['Quantitative Biology', 'Populations and Evolution'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['Physics', 'Optics'],\n", - " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", - " ['Mathematics', 'Geometric Topology'],\n", - " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['High Energy Physics', 'Theory'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Mathematics', 'Dynamical Systems'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Mathematics', 'Geometric Topology'],\n", - " ['Mathematics', 'Representation Theory'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Computer Science', 'Information Theory'],\n", - " ['High Energy Physics', 'Phenomenology'],\n", - " ['Computer Science', 'Computational Complexity'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['Mathematics', 'Dynamical Systems'],\n", - " ['Mathematics', 'Dynamical Systems'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Mathematics', 'Geometric Topology'],\n", - " ['Statistics', 'Methodology'],\n", - " ['Condensed Matter', 'Disordered Systems and Neural Networks'],\n", - " ['Condensed Matter', 'Other Condensed Matter'],\n", - " ['Physics', 'Atmospheric and Oceanic Physics'],\n", - " ['Mathematics', 'Complex Variables'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Computer Science', 'Cryptography and Security'],\n", - " ['Nuclear Experiment', 'Null'],\n", - " ['General Relativity and Quantum Cosmology', 'Null'],\n", - " ['Quantitative Biology', 'Neurons and Cognition'],\n", - " ['Physics', 'General Physics'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Physics', 'History and Philosophy of Physics'],\n", - " ['Physics', 'Classical Physics'],\n", - " ['Mathematics', 'Analysis of PDEs'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Computer Science', 'Computation and Language'],\n", - " ['Mathematics', 'Optimization and Control'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Mathematics', 'Optimization and Control'],\n", - " ['High Energy Physics', 'Theory'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['Mathematics', 'Geometric Topology'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['Computer Science', 'Other Computer Science'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Condensed Matter', 'Other Condensed Matter'],\n", - " ['Condensed Matter', 'Statistical Mechanics'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['Mathematics', 'Group Theory'],\n", - " ['Mathematics', 'Group Theory'],\n", - " ['Mathematics', 'Commutative Algebra'],\n", - " ['Mathematics', 'Representation Theory'],\n", - " ['Mathematics', 'Representation Theory'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Mathematics', 'Number Theory'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Condensed Matter', 'Superconductivity'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Condensed Matter', 'Superconductivity'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Physics', 'Accelerator Physics'],\n", - " ['Physics', 'Accelerator Physics'],\n", - " ['Condensed Matter', 'Superconductivity'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['Mathematics', 'Representation Theory'],\n", - " ['Mathematics', 'Representation Theory'],\n", - " ['Mathematics', 'Representation Theory'],\n", - " ['Mathematics', 'Representation Theory'],\n", - " ['Mathematics', 'Number Theory'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Physics', 'Optics'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Mathematics', 'Quantum Algebra'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Quantitative Biology', 'Molecular Networks'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Condensed Matter', 'Disordered Systems and Neural Networks'],\n", - " ['Condensed Matter', 'Superconductivity'],\n", - " ['Condensed Matter', 'Other Condensed Matter'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Condensed Matter', 'Other Condensed Matter'],\n", - " ['Mathematics', 'Optimization and Control'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Mathematics', 'Functional Analysis'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Mathematics', 'Classical Analysis and ODEs'],\n", - " ['Physics', 'Plasma Physics'],\n", - " ['High Energy Physics', 'Phenomenology'],\n", - " ['Mathematics', 'Optimization and Control'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['High Energy Physics', 'Phenomenology'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Computer Science', 'Artificial Intelligence'],\n", - " ['Mathematics', 'Representation Theory'],\n", - " ['Computer Science', 'Data Structures and Algorithms'],\n", - " ['High Energy Physics', 'Phenomenology'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Mathematics', 'Representation Theory'],\n", - " ['Mathematics', 'Representation Theory'],\n", - " ['Mathematics', 'Group Theory'],\n", - " ['Mathematics', 'Representation Theory'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Mathematics', 'Representation Theory'],\n", - " ['Mathematics', 'Group Theory'],\n", - " ['Mathematics', 'Representation Theory'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Mathematics', 'Algebraic Topology'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['Physics', 'Optics'],\n", - " ['Physics', 'Optics'],\n", - " ['Condensed Matter', 'Statistical Mechanics'],\n", - " ['Nonlinear Sciences', 'Exactly Solvable and Integrable Systems'],\n", - " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", - " ['Mathematics', 'Commutative Algebra'],\n", - " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", - " ['Mathematics', 'Numerical Analysis'],\n", - " ['Mathematics', 'Logic'],\n", - " ['Physics', 'Physics and Society'],\n", - " ['Mathematics', 'Metric Geometry'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Condensed Matter', 'Statistical Mechanics'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['Condensed Matter', 'Soft Condensed Matter'],\n", - " ['Condensed Matter', 'Other Condensed Matter'],\n", - " ['Condensed Matter', 'Statistical Mechanics'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Condensed Matter', 'Superconductivity'],\n", - " ['Mathematics', 'Algebraic Topology'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Nuclear Theory', 'Null'],\n", - " ['High Energy Physics', 'Theory'],\n", - " ['High Energy Physics', 'Theory'],\n", - " ['Mathematics', 'Dynamical Systems'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Nuclear Theory', 'Null'],\n", - " ['Mathematics', 'Logic'],\n", - " ['Mathematics', 'Logic'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Mathematics', 'Functional Analysis'],\n", - " ['Mathematics', 'Functional Analysis'],\n", - " ['Mathematics', 'Functional Analysis'],\n", - " ['Mathematics', 'Functional Analysis'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['Mathematics', 'Algebraic Topology'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Mathematics', 'Complex Variables'],\n", - " ['Mathematics', 'Complex Variables'],\n", - " ['Mathematics', 'Analysis of PDEs'],\n", - " ['Computer Science', 'Logic in Computer Science'],\n", - " ['Mathematics', 'History and Overview'],\n", - " ['Physics', 'Fluid Dynamics'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['Physics', 'Biological Physics'],\n", - " ['Mathematics', 'Representation Theory'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Nonlinear Sciences', 'Pattern Formation and Solitons'],\n", - " ['Nonlinear Sciences', 'Cellular Automata and Lattice Gases'],\n", - " ['Statistics', 'Computation'],\n", - " ['Physics', 'Biological Physics'],\n", - " ['Physics', 'Atomic Physics'],\n", - " ['Computer Science', 'Information Theory'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['High Energy Physics', 'Phenomenology'],\n", - " ['Physics', 'General Physics'],\n", - " ['Mathematics', 'Group Theory'],\n", - " ['Mathematics', 'General Mathematics'],\n", - " ['Physics', 'General Physics'],\n", - " ['Computer Science', 'Human-Computer Interaction'],\n", - " ['General Relativity and Quantum Cosmology', 'Null'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Nonlinear Sciences', 'Chaotic Dynamics'],\n", - " ['Computer Science', 'Human-Computer Interaction'],\n", - " ['Nonlinear Sciences', 'Adaptation and Self-Organizing Systems'],\n", - " ['Condensed Matter', 'Other Condensed Matter'],\n", - " ['Physics', 'General Physics'],\n", - " ['Computer Science', 'Human-Computer Interaction'],\n", - " ['Mathematics', 'Classical Analysis and ODEs'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Mathematics', 'Analysis of PDEs'],\n", - " ['Quantitative Biology', 'Genomics'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Mathematics', 'Complex Variables'],\n", - " ['High Energy Physics', 'Phenomenology'],\n", - " ['General Relativity and Quantum Cosmology', 'Null'],\n", - " ['Mathematics', 'Dynamical Systems'],\n", - " ['Condensed Matter', 'Other Condensed Matter'],\n", - " ['Physics', 'Physics and Society'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Nuclear Experiment', 'Null'],\n", - " ['Mathematics', 'Analysis of PDEs'],\n", - " ['Mathematics', 'Geometric Topology'],\n", - " ['Mathematics', 'Category Theory'],\n", - " ['Mathematics', 'Number Theory'],\n", - " ['General Relativity and Quantum Cosmology', 'Null'],\n", - " ['Computer Science', 'Human-Computer Interaction'],\n", - " ['Mathematics', 'Optimization and Control'],\n", - " ['Mathematics', 'Geometric Topology'],\n", - " ['Mathematics', 'Category Theory'],\n", - " ['Physics', 'General Physics'],\n", - " ['Computer Science', 'Computational Geometry'],\n", - " ['Mathematics', 'Analysis of PDEs'],\n", - " ['Physics', 'Physics and Society'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Nuclear Experiment', 'Null'],\n", - " ['Physics', 'Geophysics'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Computer Science', 'Cryptography and Security'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Mathematics', 'Representation Theory'],\n", - " ['Mathematics', 'Representation Theory'],\n", - " ['Mathematics', 'Commutative Algebra'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Mathematics', 'Rings and Algebras'],\n", - " ['Computer Science', 'Information Theory'],\n", - " ['Condensed Matter', 'Other Condensed Matter'],\n", - " ['Mathematics', 'Number Theory'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", - " ['Quantitative Biology', 'Populations and Evolution'],\n", - " ['Physics', 'Fluid Dynamics'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Condensed Matter', 'Statistical Mechanics'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Condensed Matter', 'Other Condensed Matter'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Condensed Matter', 'Other Condensed Matter'],\n", - " ['Condensed Matter', 'Disordered Systems and Neural Networks'],\n", - " ['Condensed Matter', 'Superconductivity'],\n", - " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", - " ['Computer Science', 'Discrete Mathematics'],\n", - " ['Mathematics', 'General Mathematics'],\n", - " ['Condensed Matter', 'Superconductivity'],\n", - " ['Computer Science', 'Computer Vision and Pattern Recognition'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Computer Science', 'Information Theory'],\n", - " ['Mathematics', 'Rings and Algebras'],\n", - " ['Physics', 'Optics'],\n", - " ['Quantitative Biology', 'Genomics'],\n", - " ['Mathematics', 'Optimization and Control'],\n", - " ['Mathematics', 'Quantum Algebra'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", - " ['High Energy Physics', 'Phenomenology'],\n", - " ['Quantitative Biology', 'Quantitative Methods'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Mathematics', 'Statistics Theory'],\n", - " ['Computer Science', 'Information Theory'],\n", - " ['Mathematics', 'Statistics Theory'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Mathematics', 'Statistics Theory'],\n", - " ['Nuclear Experiment', 'Null'],\n", - " ['Statistics', 'Machine Learning'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Computer Science', 'Computer Science and Game Theory'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Physics', 'Fluid Dynamics'],\n", - " ['Mathematics', 'Probability'],\n", - " ['High Energy Physics', 'Experiment'],\n", - " ['Physics', 'Classical Physics'],\n", - " ['Mathematics', 'Number Theory'],\n", - " ['General Relativity and Quantum Cosmology', 'Null'],\n", - " ['Physics', 'Data Analysis, Statistics and Probability'],\n", - " ['Condensed Matter', 'Statistical Mechanics'],\n", - " ['Condensed Matter', 'Statistical Mechanics'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['Computer Science', 'Artificial Intelligence'],\n", - " ['Mathematics', 'Numerical Analysis'],\n", - " ['Mathematics', 'Rings and Algebras'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Nonlinear Sciences', 'Pattern Formation and Solitons'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Mathematics', 'Number Theory'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Quantitative Biology', 'Cell Behavior'],\n", - " ['Mathematics', 'Number Theory'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Physics', 'Biological Physics'],\n", - " ['Physics', 'Instrumentation and Detectors'],\n", - " ['Physics', 'Physics Education'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Mathematics', 'Representation Theory'],\n", - " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", - " ['High Energy Physics', 'Phenomenology'],\n", - " ['Mathematics', 'Geometric Topology'],\n", - " ['Mathematics', 'Geometric Topology'],\n", - " ['Mathematics', 'Geometric Topology'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Condensed Matter', 'Superconductivity'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Condensed Matter', 'Soft Condensed Matter'],\n", - " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['Physics', 'Instrumentation and Detectors'],\n", - " ['Condensed Matter', 'Soft Condensed Matter'],\n", - " ['Condensed Matter', 'Statistical Mechanics'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Physics', 'Physics and Society'],\n", - " ['Condensed Matter', 'Superconductivity'],\n", - " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Condensed Matter', 'Superconductivity'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['High Energy Physics', 'Phenomenology'],\n", - " ['Statistics', 'Computation'],\n", - " ['Mathematics', 'Statistics Theory'],\n", - " ['Condensed Matter', 'Superconductivity'],\n", - " ['High Energy Physics', 'Theory'],\n", - " ['Condensed Matter', 'Superconductivity'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", - " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", - " ['Physics', 'Physics and Society'],\n", - " ['Condensed Matter', 'Soft Condensed Matter'],\n", - " ['Condensed Matter', 'Soft Condensed Matter'],\n", - " ['Physics', 'Physics Education'],\n", - " ['Computer Science', 'Information Theory'],\n", - " ['Astrophysics', 'Null'],\n", - " ['High Energy Physics', 'Phenomenology'],\n", - " ['Mathematics', 'Functional Analysis'],\n", - " ['High Energy Physics', 'Theory'],\n", - " ['High Energy Physics', 'Theory'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Physics', 'Space Physics'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Mathematics', 'Statistics Theory'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Astrophysics', 'Null'],\n", - " ['High Energy Physics', 'Theory'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Condensed Matter', 'Soft Condensed Matter'],\n", - " ['Condensed Matter', 'Soft Condensed Matter'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Mathematics', 'Analysis of PDEs'],\n", - " ['High Energy Physics', 'Phenomenology'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Computer Science', 'Multiagent Systems'],\n", - " ['Computer Science', 'Databases'],\n", - " ['Computer Science', 'Databases'],\n", - " ['Computer Science', 'Databases'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Computer Science', 'Databases'],\n", - " ['Computer Science', 'Symbolic Computation'],\n", - " ['Mathematics', 'Analysis of PDEs'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['High Energy Physics', 'Theory'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Quantitative Biology', 'Genomics'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Astrophysics', 'Null'],\n", - " ['High Energy Physics', 'Phenomenology'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Mathematics', 'Functional Analysis'],\n", - " ['Computer Science', 'Information Theory'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['Condensed Matter', 'Other Condensed Matter'],\n", - " ['Physics', 'Instrumentation and Detectors'],\n", - " ['Physics', 'General Physics'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Mathematics', 'Number Theory'],\n", - " ['Quantitative Biology', 'Biomolecules'],\n", - " ['High Energy Physics', 'Theory'],\n", - " ['Condensed Matter', 'Soft Condensed Matter'],\n", - " ['High Energy Physics', 'Theory'],\n", - " ['Mathematics', 'Representation Theory'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['Mathematics', 'Statistics Theory'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['Mathematics', 'Spectral Theory'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['Nonlinear Sciences', 'Exactly Solvable and Integrable Systems'],\n", - " ['Nuclear Theory', 'Null'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Physics', 'Geophysics'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Condensed Matter', 'Statistical Mechanics'],\n", - " ['Mathematics', 'Statistics Theory'],\n", - " ['Quantitative Biology', 'Neurons and Cognition'],\n", - " ['Condensed Matter', 'Soft Condensed Matter'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Mathematics', 'Number Theory'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Mathematics', 'Statistics Theory'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['Condensed Matter', 'Statistical Mechanics'],\n", - " ['Condensed Matter', 'Soft Condensed Matter'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Mathematics', 'Geometric Topology'],\n", - " ['Condensed Matter', 'Statistical Mechanics'],\n", - " ['Statistics', 'Applications'],\n", - " ['Mathematics', 'Metric Geometry'],\n", - " ['General Relativity and Quantum Cosmology', 'Null'],\n", - " ['Physics', 'Geophysics'],\n", - " ['Condensed Matter', 'Soft Condensed Matter'],\n", - " ['Condensed Matter', 'Disordered Systems and Neural Networks'],\n", - " ['Condensed Matter', 'Soft Condensed Matter'],\n", - " ['Condensed Matter', 'Disordered Systems and Neural Networks'],\n", - " ['Condensed Matter', 'Superconductivity'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Condensed Matter', 'Superconductivity'],\n", - " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", - " ['Physics', 'Optics'],\n", - " ['Condensed Matter', 'Other Condensed Matter'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", - " ['Mathematics', 'Functional Analysis'],\n", - " ['Condensed Matter', 'Other Condensed Matter'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Condensed Matter', 'Statistical Mechanics'],\n", - " ['Mathematics', 'Quantum Algebra'],\n", - " ['Condensed Matter', 'Statistical Mechanics'],\n", - " ['Mathematics', 'Algebraic Topology'],\n", - " ['High Energy Physics', 'Experiment'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Statistics', 'Applications'],\n", - " ['High Energy Physics', 'Phenomenology'],\n", - " ['Mathematics', 'Geometric Topology'],\n", - " ['High Energy Physics', 'Experiment'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Mathematics', 'Symplectic Geometry'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Computer Science', 'Learning'],\n", - " ['Nonlinear Sciences', 'Exactly Solvable and Integrable Systems'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Nuclear Experiment', 'Null'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Condensed Matter', 'Statistical Mechanics'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Mathematics', 'Functional Analysis'],\n", - " ['Mathematics', 'Functional Analysis'],\n", - " ['Physics', 'Atomic Physics'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Mathematics', 'Number Theory'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Computer Science', 'Databases'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Physics', 'General Physics'],\n", - " ['Mathematics', 'Functional Analysis'],\n", - " ['High Energy Physics', 'Lattice'],\n", - " ['Mathematics', 'Functional Analysis'],\n", - " ['Physics', 'Physics Education'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Mathematics', 'Analysis of PDEs'],\n", - " ['Mathematics', 'Analysis of PDEs'],\n", - " ['Mathematics', 'Representation Theory'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['High Energy Physics', 'Phenomenology'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['Quantitative Biology', 'Populations and Evolution'],\n", - " ['Mathematics', 'Functional Analysis'],\n", - " ['Computer Science', 'Information Theory'],\n", - " ['Astrophysics', 'Null'],\n", - " ['High Energy Physics', 'Theory'],\n", - " ['Mathematics', 'Algebraic Topology'],\n", - " ['Mathematics', 'Geometric Topology'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Mathematics', 'Group Theory'],\n", - " ['Physics', 'Classical Physics'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", - " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", - " ['Computer Science', 'Computational Complexity'],\n", - " ['Mathematics', 'Classical Analysis and ODEs'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['High Energy Physics', 'Experiment'],\n", - " ['High Energy Physics', 'Experiment'],\n", - " ['High Energy Physics', 'Experiment'],\n", - " ['High Energy Physics', 'Experiment'],\n", - " ['High Energy Physics', 'Experiment'],\n", - " ['High Energy Physics', 'Experiment'],\n", - " ['High Energy Physics', 'Experiment'],\n", - " ['High Energy Physics', 'Experiment'],\n", - " ['High Energy Physics', 'Experiment'],\n", - " ['High Energy Physics', 'Experiment'],\n", - " ['High Energy Physics', 'Experiment'],\n", - " ['High Energy Physics', 'Experiment'],\n", - " ['High Energy Physics', 'Experiment'],\n", - " ['High Energy Physics', 'Experiment'],\n", - " ['High Energy Physics', 'Experiment'],\n", - " ['High Energy Physics', 'Experiment'],\n", - " ['High Energy Physics', 'Experiment'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['Physics', 'Physics and Society'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['Condensed Matter', 'Other Condensed Matter'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Mathematics', 'Number Theory'],\n", - " ['High Energy Physics', 'Theory'],\n", - " ['Physics', 'Optics'],\n", - " ['Mathematics', 'Group Theory'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Mathematics', 'Operator Algebras'],\n", - " ['Mathematics', 'Analysis of PDEs'],\n", - " ['Mathematics', 'Symplectic Geometry'],\n", - " ['Condensed Matter', 'Soft Condensed Matter'],\n", - " ['Condensed Matter', 'Superconductivity'],\n", - " ['Physics', 'Atmospheric and Oceanic Physics'],\n", - " ['Mathematics', 'Dynamical Systems'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['Mathematics', 'Statistics Theory'],\n", - " ['Mathematics', 'Spectral Theory'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Condensed Matter', 'Disordered Systems and Neural Networks'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Condensed Matter', 'Statistical Mechanics'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Physics', 'Optics'],\n", - " ['Condensed Matter', 'Statistical Mechanics'],\n", - " ['Condensed Matter', 'Statistical Mechanics'],\n", - " ['Condensed Matter', 'Other Condensed Matter'],\n", - " ['Mathematics', 'Quantum Algebra'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['High Energy Physics', 'Theory'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Mathematics', 'Number Theory'],\n", - " ['Quantitative Biology', 'Cell Behavior'],\n", - " ['High Energy Physics', 'Phenomenology'],\n", - " ['Physics', 'General Physics'],\n", - " ['Mathematics', 'Numerical Analysis'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Nuclear Theory', 'Null'],\n", - " ['Mathematics', 'Analysis of PDEs'],\n", - " ['High Energy Physics', 'Theory'],\n", - " ['Mathematics', 'Quantum Algebra'],\n", - " ['Physics', 'Optics'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['Condensed Matter', 'Soft Condensed Matter'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Condensed Matter', 'Statistical Mechanics'],\n", - " ['Computer Science', 'Computation and Language'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['High Energy Physics', 'Phenomenology'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Physics', 'General Physics'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Physics', 'General Physics'],\n", - " ['Condensed Matter', 'Soft Condensed Matter'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Condensed Matter', 'Disordered Systems and Neural Networks'],\n", - " ['Physics', 'Instrumentation and Detectors'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Physics', 'Physics and Society'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Mathematics', 'Numerical Analysis'],\n", - " ['High Energy Physics', 'Theory'],\n", - " ['Physics', 'Physics Education'],\n", - " ['Mathematics', 'Numerical Analysis'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Condensed Matter', 'Statistical Mechanics'],\n", - " ['Condensed Matter', 'Statistical Mechanics'],\n", - " ['Condensed Matter', 'Statistical Mechanics'],\n", - " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", - " ['Condensed Matter', 'Statistical Mechanics'],\n", - " ['Computer Science', 'Computational Complexity'],\n", - " ['Computer Science', 'Discrete Mathematics'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Mathematics', 'Metric Geometry'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['Computer Science', 'Human-Computer Interaction'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Mathematics', 'Geometric Topology'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Condensed Matter', 'Other Condensed Matter'],\n", - " ['Mathematics', 'Number Theory'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Condensed Matter', 'Superconductivity'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['High Energy Physics', 'Theory'],\n", - " ['Mathematics', 'Algebraic Topology'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Computer Science', 'Cryptography and Security'],\n", - " ['Mathematics', 'Statistics Theory'],\n", - " ['Quantitative Biology', 'Quantitative Methods'],\n", - " ['Computer Science', 'Information Retrieval'],\n", - " ['Computer Science', 'Learning'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Mathematics', 'Geometric Topology'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['Computer Science', 'Computational Complexity'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Computer Science', 'Software Engineering'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Mathematics', 'Analysis of PDEs'],\n", - " ['Computer Science', 'Computers and Society'],\n", - " ['Mathematics', 'Functional Analysis'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Mathematics', 'Commutative Algebra'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Computer Science', 'Information Theory'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Computer Science', 'Information Theory'],\n", - " ['Mathematics', 'Analysis of PDEs'],\n", - " ['Mathematics', 'Dynamical Systems'],\n", - " ['Quantitative Biology', 'Populations and Evolution'],\n", - " ['Mathematics', 'Complex Variables'],\n", - " ['Physics', 'Computational Physics'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Computer Science', 'Other Computer Science'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Physics', 'Plasma Physics'],\n", - " ['Nonlinear Sciences', 'Chaotic Dynamics'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Physics', 'Computational Physics'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Computer Science', 'Neural and Evolutionary Computing'],\n", - " ['Mathematics', 'Dynamical Systems'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Computer Science', 'Distributed, Parallel, and Cluster Computing'],\n", - " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", - " ['High Energy Physics', 'Phenomenology'],\n", - " ['Condensed Matter', 'Strongly Correlated Electrons'],\n", - " ['Computer Science', 'Artificial Intelligence'],\n", - " ['Mathematics', 'General Mathematics'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Mathematics', 'Dynamical Systems'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['General Relativity and Quantum Cosmology', 'Null'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Condensed Matter', 'Other Condensed Matter'],\n", - " ['Nonlinear Sciences', 'Chaotic Dynamics'],\n", - " ['Mathematics', 'Spectral Theory'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Physics', 'Classical Physics'],\n", - " ['Physics', 'Atomic and Molecular Clusters'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['Physics', 'Atomic and Molecular Clusters'],\n", - " ['Condensed Matter', 'Superconductivity'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Quantitative Biology', 'Neurons and Cognition'],\n", - " ['Physics', 'Physics and Society'],\n", - " ['Mathematics', 'Classical Analysis and ODEs'],\n", - " ['Quantitative Biology', 'Molecular Networks'],\n", - " ['Computer Science', 'Data Structures and Algorithms'],\n", - " ['Astrophysics', 'Null'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Nuclear Theory', 'Null'],\n", - " ['Astrophysics', 'Null'],\n", - " ['High Energy Physics', 'Theory'],\n", - " ['High Energy Physics', 'Theory'],\n", - " ['High Energy Physics', 'Theory'],\n", - " ['High Energy Physics', 'Theory'],\n", - " ['Mathematical Physics', 'Null'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Mathematics', 'Operator Algebras'],\n", - " ['Mathematics', 'Geometric Topology'],\n", - " ['Mathematics', 'Quantum Algebra'],\n", - " ['Mathematics', 'Spectral Theory'],\n", - " ['Physics', 'Chemical Physics'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Mathematics', 'Quantum Algebra'],\n", - " ['Mathematics', 'Combinatorics'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['Condensed Matter', 'Mesoscale and Nanoscale Physics'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Condensed Matter', 'Statistical Mechanics'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Condensed Matter', 'Soft Condensed Matter'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Condensed Matter', 'Superconductivity'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['Condensed Matter', 'Statistical Mechanics'],\n", - " ['Quantum Physics', 'Null'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['Physics', 'Atomic Physics'],\n", - " ['Computer Science', 'Information Theory'],\n", - " ['Condensed Matter', 'Superconductivity'],\n", - " ['Condensed Matter', 'Materials Science'],\n", - " ['High Energy Physics', 'Theory'],\n", - " ['Physics', 'General Physics'],\n", - " ['Physics', 'General Physics'],\n", - " ['Computer Science', 'Other Computer Science'],\n", - " ['Mathematics', 'Algebraic Geometry'],\n", - " ['Mathematics', 'Analysis of PDEs'],\n", - " ['Mathematics', 'Probability'],\n", - " ['Mathematics', 'Functional Analysis'],\n", - " ['Mathematics', 'Analysis of PDEs'],\n", - " ['Mathematics', 'Optimization and Control'],\n", - " ['Condensed Matter', 'Superconductivity'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Condensed Matter', 'Soft Condensed Matter'],\n", - " ['Computer Science', 'Software Engineering'],\n", - " ['Mathematics', 'Differential Geometry'],\n", - " ['Physics', 'Geophysics'],\n", - " ['Mathematics', 'Operator Algebras'],\n", - " ['Nuclear Theory', 'Null'],\n", - " ...]" - ] - }, - "execution_count": 136, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "First_Argu" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "metadata": {}, - "outputs": [], - "source": [ - "# Seperate between 1 Sub, Two or more " - ] - }, - { - "cell_type": "code", - "execution_count": 15, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "['Quantum Physics', 'Condensed Matter - Statistical Mechanics']" - ] - }, - "execution_count": 15, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "org_Sub[6]" - ] - }, - { - "cell_type": "code", - "execution_count": 20, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "'Mathematics'" - ] - }, - "execution_count": 20, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Test Area" - ] - }, - { - "cell_type": "code", - "execution_count": 8, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "['Quantum Physics', 'Condensed Matter - Statistical Mechanics']" - ] - }, - "execution_count": 8, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "Archive_DataFrame.iloc[6]['subject']" - ] - }, - { - "cell_type": "code", - "execution_count": 21, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "3" - ] - }, - "execution_count": 21, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "len(Archive_DataFrame.iloc[-3]['subject'])" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] } ], "metadata": { From 807f652faf192c3fc8bc155418223d6760cd9234 Mon Sep 17 00:00:00 2001 From: "M. Sherafati" Date: Mon, 4 Feb 2019 12:43:19 +0330 Subject: [PATCH 4/6] :) --- .ipynb_checkpoints/Cat-List-checkpoint.ipynb | 65 +++++++++++--------- 1 file changed, 37 insertions(+), 28 deletions(-) diff --git a/.ipynb_checkpoints/Cat-List-checkpoint.ipynb b/.ipynb_checkpoints/Cat-List-checkpoint.ipynb index a51e573..eaa3a05 100644 --- a/.ipynb_checkpoints/Cat-List-checkpoint.ipynb +++ b/.ipynb_checkpoints/Cat-List-checkpoint.ipynb @@ -216,7 +216,7 @@ }, { "cell_type": "code", - "execution_count": 26, + "execution_count": 34, "metadata": {}, "outputs": [ { @@ -246,85 +246,94 @@ " \n", " \n", " 0705.1532\n", - " Dynamical Systems\n", + " [Dynamical Systems]\n", " \n", " \n", " 0706.1373\n", - " Exactly Solvable and Integrable Systems\n", + " [Exactly Solvable and Integrable Systems]\n", " \n", " \n", " 0706.2509\n", - " Theory\n", + " [Theory]\n", " \n", " \n", " 0708.1339\n", - " Mesoscale and Nanoscale Physics\n", + " [Mesoscale and Nanoscale Physics, Superconduct...\n", " \n", " \n", " 0709.1272\n", - " Mathematical Software\n", + " [Mathematical Software, Distributed, Parallel,...\n", " \n", " \n", " 0709.1704\n", - " NaN\n", + " [nan, General Physics]\n", " \n", " \n", " 0710.2868\n", - " NaN\n", + " [nan, Statistical Mechanics]\n", " \n", " \n", " 0710.4005\n", - " Fluid Dynamics\n", + " [Fluid Dynamics, nan]\n", " \n", " \n", " 0711.4246\n", - " NaN\n", + " [nan, Statistical Mechanics, Probability, nan]\n", " \n", " \n", " 0711.4508\n", - " Computational Complexity\n", + " [Computational Complexity, Computer Vision and...\n", " \n", " \n", "\n", "" ], "text/plain": [ - " subject\n", - "0705.1532 Dynamical Systems\n", - "0706.1373 Exactly Solvable and Integrable Systems\n", - "0706.2509 Theory\n", - "0708.1339 Mesoscale and Nanoscale Physics\n", - "0709.1272 Mathematical Software\n", - "0709.1704 NaN\n", - "0710.2868 NaN\n", - "0710.4005 Fluid Dynamics\n", - "0711.4246 NaN\n", - "0711.4508 Computational Complexity" + " subject\n", + "0705.1532 [Dynamical Systems]\n", + "0706.1373 [Exactly Solvable and Integrable Systems]\n", + "0706.2509 [Theory]\n", + "0708.1339 [Mesoscale and Nanoscale Physics, Superconduct...\n", + "0709.1272 [Mathematical Software, Distributed, Parallel,...\n", + "0709.1704 [nan, General Physics]\n", + "0710.2868 [nan, Statistical Mechanics]\n", + "0710.4005 [Fluid Dynamics, nan]\n", + "0711.4246 [nan, Statistical Mechanics, Probability, nan]\n", + "0711.4508 [Computational Complexity, Computer Vision and..." ] }, - "execution_count": 26, + "execution_count": 34, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "test_df = Cat_Id.copy().iloc[:100]\n", - "test_df['subject'] = test_df['subject'].apply(lambda x: fun_cat(x, flag=1) )\n", + "test_df = Cat_Id.copy()\n", + "test_df['subject'] = test_df['subject'].apply(lambda x: fun_cat(x, flag=3) )\n", "test_df.head(10)" ] }, { "cell_type": "code", - "execution_count": 178, + "execution_count": 35, + "metadata": {}, + "outputs": [], + "source": [ + "test_df.to_csv('ALL_SubCat.csv', sep='\\t') \n" + ] + }, + { + "cell_type": "code", + "execution_count": 36, "metadata": {}, "outputs": [ { "data": { "text/plain": [ - "'Nonlinear Sciences'" + "'Exactly Solvable and Integrable Systems'" ] }, - "execution_count": 178, + "execution_count": 36, "metadata": {}, "output_type": "execute_result" } From 04374077867f10d1294a0b5c5587cac230c40c6a Mon Sep 17 00:00:00 2001 From: "M. Sherafati" Date: Thu, 7 Feb 2019 15:45:16 +0330 Subject: [PATCH 5/6] Read Sub Cat And ID --- ...int.ipynb => Sub_Cat[0]R-checkpoint.ipynb} | 0 Sub_Cat[0].csv | 1029856 ++++++++++++++ Sub_Cat[0]R.ipynb | 597 + 3 files changed, 1030453 insertions(+) rename .ipynb_checkpoints/{Untitled-checkpoint.ipynb => Sub_Cat[0]R-checkpoint.ipynb} (100%) create mode 100644 Sub_Cat[0].csv create mode 100644 Sub_Cat[0]R.ipynb diff --git a/.ipynb_checkpoints/Untitled-checkpoint.ipynb b/.ipynb_checkpoints/Sub_Cat[0]R-checkpoint.ipynb similarity index 100% rename from .ipynb_checkpoints/Untitled-checkpoint.ipynb rename to .ipynb_checkpoints/Sub_Cat[0]R-checkpoint.ipynb diff --git a/Sub_Cat[0].csv b/Sub_Cat[0].csv new file mode 100644 index 0000000..fec9de4 --- /dev/null +++ b/Sub_Cat[0].csv @@ -0,0 +1,1029856 @@ + subject +0705.1532 Dynamical Systems +0706.1373 Exactly Solvable and Integrable Systems +0706.2509 Theory +0708.1339 Mesoscale and Nanoscale Physics +0709.1272 Mathematical Software +0709.1704 +0710.2868 +0710.4005 Fluid Dynamics +0711.4246 +0711.4508 Computational Complexity +0712.1999 Strongly Correlated Electrons +0712.2094 Computational Geometry +0712.2764 Analysis of PDEs +0801.1036 Combinatorics +0801.2085 Analysis of PDEs +0802.2794 Mesoscale and Nanoscale Physics +0802.4385 Materials Science +0803.0234 Group Theory +0803.0480 Materials Science +0803.3777 Information Theory +0804.2068 +0805.0246 Mesoscale and Nanoscale Physics +0805.0817 Combinatorics +0805.1154 Digital Libraries +0805.2503 +0805.2545 +0805.3968 Experiment +0805.4749 +0806.0785 Materials Science +0806.1014 +0806.1084 Superconductivity +0806.1448 +0806.1634 Adaptation and Self-Organizing Systems +0806.1716 General Physics +0806.1748 +0806.1752 Analysis of PDEs +0806.1756 Strongly Correlated Electrons +0806.1757 Differential Geometry +0806.1759 Logic +0806.1763 Group Theory +0806.1765 Algebraic Geometry +0806.1767 Algebraic Topology +0806.1768 Operating Systems +0806.1772 Commutative Algebra +0806.1776 Combinatorics +0806.1782 Analysis of PDEs +0806.1784 Optics +0806.1785 Optimization and Control +0806.1791 Operator Algebras +0806.1800 +0806.1803 Rings and Algebras +0806.1805 Phenomenology +0806.1806 Artificial Intelligence +0806.1807 +0806.1810 +0806.1814 Algebraic Topology +0806.1820 Probability +0806.1827 Logic in Computer Science +0806.1829 Space Physics +0806.1832 K-Theory and Homology +0806.1834 Information Theory +0806.1836 Differential Geometry +0806.1838 Disordered Systems and Neural Networks +0806.1843 Networking and Internet Architecture +0806.1845 Networking and Internet Architecture +0806.1846 Networking and Internet Architecture +0806.1848 Differential Geometry +0806.1849 Algebraic Geometry +0806.1864 Accelerator Physics +0806.1868 Phenomenology +0806.1872 Populations and Evolution +0806.1873 Combinatorics +0806.1877 +0806.1898 Probability +0806.1902 Analysis of PDEs +0806.1905 +0806.1909 Physics and Society +0806.1919 Information Theory +0806.1922 Mesoscale and Nanoscale Physics +0806.1924 Differential Geometry +0806.1926 Quantum Algebra +0806.1927 History and Overview +0806.1931 Cryptography and Security +0806.1936 +0806.1941 +0806.1945 Chaotic Dynamics +0806.1948 Data Structures and Algorithms +0806.1949 Chaotic Dynamics +cond-mat/0504520 Strongly Correlated Electrons +cond-mat/0701502 Other Condensed Matter +math/0702630 Metric Geometry +physics/0606032 Atomic and Molecular Clusters +physics/0611302 Atomic Physics +quant-ph/0506203 +quant-ph/0512247 +0707.2929 +0710.1249 Disordered Systems and Neural Networks +0710.3457 Strongly Correlated Electrons +0802.1308 +0803.2919 +0803.3185 Strongly Correlated Electrons +0804.1366 Statistical Mechanics +0804.2056 Phenomenology +0804.2061 Mesoscale and Nanoscale Physics +0804.3860 Computer Science and Game Theory +0805.4244 Materials Science +0806.0450 +0806.2499 Statistical Mechanics +0808.0249 +cs/0608081 Computer Science and Game Theory +math-ph/0611055 +math/0412062 History and Overview +math/0507401 History and Overview +math/0612733 Representation Theory +0704.3349 Functional Analysis +0704.3430 Atomic Physics +0705.3442 Atomic Physics +0706.3686 Other Condensed Matter +0707.1472 Mesoscale and Nanoscale Physics +0708.1048 Complex Variables +0708.3424 Algebraic Geometry +0709.3512 Data Analysis, Statistics and Probability +0710.0510 Symbolic Computation +0710.1669 Number Theory +0711.3433 Representation Theory +0711.4380 Information Theory +0712.2431 Differential Geometry +0712.3203 Data Structures and Algorithms +0802.1431 Physics and Society +0802.2303 Strongly Correlated Electrons +0802.3522 Information Retrieval +0803.3031 Mesoscale and Nanoscale Physics +0804.4207 +0805.0165 +0805.1282 Superconductivity +0805.4298 Mesoscale and Nanoscale Physics +0805.4546 Soft Condensed Matter +0806.1040 Combinatorics +0806.2928 Quantum Algebra +0806.3241 Materials Science +0806.3277 Combinatorics +0806.3279 +0806.3292 Combinatorics +0806.3299 +0806.3317 Information Theory +0806.3320 Information Theory +0806.3321 Information Theory +0806.3322 Information Theory +0806.3324 Information Theory +0806.3325 Information Theory +0806.3328 Information Theory +0806.3329 Information Theory +0806.3334 Differential Geometry +0806.3336 Phenomenology +0806.3338 +0806.3341 Phenomenology +0806.3351 Quantum Algebra +0806.3359 +0806.3366 Classical Analysis and ODEs +0806.3368 Chemical Physics +0806.3375 Optics +0806.3378 Data Analysis, Statistics and Probability +0806.3392 Combinatorics +0806.3393 Theory +0806.3404 +0806.3411 Rings and Algebras +0806.3417 Analysis of PDEs +0806.3418 General Physics +0806.3421 K-Theory and Homology +0806.3422 Numerical Analysis +0806.3425 Numerical Analysis +0806.3435 Phenomenology +0806.3437 +0806.3442 Optimization and Control +0806.3443 +0806.3444 Algebraic Geometry +0806.3449 Analysis of PDEs +astro-ph/0412439 +astro-ph/0612461 +cond-mat/0308016 Disordered Systems and Neural Networks +cond-mat/0308098 Disordered Systems and Neural Networks +cond-mat/0501364 Soft Condensed Matter +cond-mat/0502624 Soft Condensed Matter +math-ph/0510072 +math/0308237 Probability +math/0608143 Algebraic Geometry +math/0701462 History and Overview +nlin/0609052 Chaotic Dynamics +physics/0608105 Atmospheric and Oceanic Physics +physics/0703278 Chemical Physics +0705.3679 Disordered Systems and Neural Networks +0707.1524 +0707.1741 Populations and Evolution +0707.3362 +0708.1519 Optics +0708.3475 Strongly Correlated Electrons +0709.2249 Geometric Topology +0709.3711 Strongly Correlated Electrons +0710.4338 +0711.0062 Theory +0711.0207 Materials Science +0711.2374 Dynamical Systems +0711.2940 Mesoscale and Nanoscale Physics +0711.4405 Geometric Topology +0801.1289 Representation Theory +0801.4306 +0801.4562 +0801.4563 +0801.4568 +0801.4571 Information Theory +0801.4582 Phenomenology +0801.4585 Computational Complexity +0801.4588 Mesoscale and Nanoscale Physics +0801.4590 Algebraic Geometry +0801.4608 Differential Geometry +0801.4609 Algebraic Geometry +0801.4616 Dynamical Systems +0801.4619 Dynamical Systems +0801.4621 Probability +0801.4628 Geometric Topology +0801.4629 Methodology +0801.4633 Disordered Systems and Neural Networks +0801.4642 Other Condensed Matter +0801.4648 Atmospheric and Oceanic Physics +0801.4652 Complex Variables +0801.4656 +0801.4658 +0801.4663 +0801.4664 Cryptography and Security +0801.4667 +0801.4671 +0801.4684 Neurons and Cognition +0801.4688 General Physics +0801.4692 Differential Geometry +0801.4694 History and Philosophy of Physics +0801.4697 Classical Physics +0801.4698 Analysis of PDEs +0801.4708 Probability +0801.4716 Computation and Language +0801.4717 Optimization and Control +0801.4726 Probability +0801.4731 Optimization and Control +0801.4737 Theory +0801.4740 Algebraic Geometry +0801.4741 Geometric Topology +0801.4742 +0801.4744 +0801.4747 Algebraic Geometry +0801.4750 Other Computer Science +0801.4752 +0801.4754 +0801.4756 Other Condensed Matter +cond-mat/0605208 Statistical Mechanics +math-ph/0611088 +math-ph/0701072 +math/0409245 Group Theory +math/0501288 Group Theory +math/0703595 Commutative Algebra +0704.3342 Representation Theory +0705.2096 Representation Theory +0711.2918 Mesoscale and Nanoscale Physics +0712.2812 Number Theory +0804.4468 +0806.1675 Superconductivity +0807.3505 Materials Science +0807.3735 Superconductivity +0808.0594 +0809.4795 Accelerator Physics +0809.4796 Accelerator Physics +cond-mat/0206293 Superconductivity +math-ph/0506043 +math/0106057 Representation Theory +math/0207275 Representation Theory +math/0311406 Representation Theory +math/0507610 Representation Theory +math/0512365 Number Theory +0705.2620 Combinatorics +0707.1164 +0709.1773 Optics +0710.0812 Materials Science +0710.0822 Materials Science +0710.2687 Quantum Algebra +0710.5549 +0711.1522 Molecular Networks +0712.0820 Mesoscale and Nanoscale Physics +0801.0513 Disordered Systems and Neural Networks +0801.4506 Superconductivity +0802.0230 Other Condensed Matter +0802.1155 +0803.0899 Other Condensed Matter +0803.2091 Optimization and Control +0803.3847 Mesoscale and Nanoscale Physics +0804.1246 Mesoscale and Nanoscale Physics +0804.2869 Functional Analysis +0805.0332 Mesoscale and Nanoscale Physics +0805.4344 Classical Analysis and ODEs +0805.4514 Plasma Physics +0806.1394 Phenomenology +0806.2860 Optimization and Control +0806.4152 Algebraic Geometry +0806.4554 Phenomenology +0807.0125 Differential Geometry +0807.0337 Artificial Intelligence +0807.0343 Representation Theory +cs/0612028 Data Structures and Algorithms +hep-ph/0408025 Phenomenology +math/0409199 Combinatorics +math/0502086 Representation Theory +math/0504078 Representation Theory +math/0505087 Group Theory +math/0511043 Representation Theory +math/0511544 Combinatorics +math/0511737 Representation Theory +math/0601373 Group Theory +math/0604224 Representation Theory +math/0605275 Combinatorics +math/0611436 Algebraic Topology +math/0701311 Algebraic Geometry +physics/0502116 Optics +physics/0609207 Optics +0704.2317 Statistical Mechanics +0705.2112 Exactly Solvable and Integrable Systems +0705.4379 Strongly Correlated Electrons +0706.1124 Commutative Algebra +0706.1974 Strongly Correlated Electrons +0708.1900 Numerical Analysis +0708.1979 Logic +0708.4343 Physics and Society +0710.3116 Metric Geometry +0710.4568 Mesoscale and Nanoscale Physics +0710.4933 Materials Science +0711.2221 Mesoscale and Nanoscale Physics +0801.2932 Statistical Mechanics +0802.0760 +0802.1066 Strongly Correlated Electrons +0802.3120 Algebraic Geometry +0803.0114 Soft Condensed Matter +0803.2947 Other Condensed Matter +0803.3967 Statistical Mechanics +0804.1695 Differential Geometry +0804.3499 Mesoscale and Nanoscale Physics +0805.0700 Superconductivity +0805.3673 Algebraic Topology +0805.3690 +0805.3820 +0805.3962 +0805.4426 Theory +0805.4520 Theory +0806.0008 Dynamical Systems +0806.0019 Mesoscale and Nanoscale Physics +0806.0026 +0806.0031 Logic +0806.0033 Logic +0806.0035 Differential Geometry +0806.0047 Functional Analysis +0806.0052 Functional Analysis +0806.0056 Functional Analysis +0806.0058 Functional Analysis +0806.0062 Algebraic Geometry +0806.0065 Algebraic Topology +0806.0089 Algebraic Geometry +0806.0090 Differential Geometry +0806.0093 Complex Variables +0806.0097 Complex Variables +0806.0100 Analysis of PDEs +0806.0103 Logic in Computer Science +0806.0104 History and Overview +0806.0105 Fluid Dynamics +0806.0107 Algebraic Geometry +0806.0109 Biological Physics +0806.0111 Representation Theory +0806.0117 Materials Science +0806.0124 Pattern Formation and Solitons +0806.0127 Cellular Automata and Lattice Gases +0806.0129 Computation +0806.0138 Biological Physics +0806.0140 Atomic Physics +0806.0142 Information Theory +0806.0151 +0806.0154 +0806.0160 Phenomenology +0806.0165 General Physics +0806.0168 Group Theory +0806.0169 General Mathematics +0806.0171 General Physics +0806.0172 Human-Computer Interaction +0806.0175 +0806.0178 Combinatorics +0806.0180 Chaotic Dynamics +0806.0182 Human-Computer Interaction +0806.0184 Adaptation and Self-Organizing Systems +0806.0186 Other Condensed Matter +0806.0188 General Physics +0806.0189 Human-Computer Interaction +0806.0197 Classical Analysis and ODEs +0806.0201 Differential Geometry +0806.0204 Analysis of PDEs +0806.0205 Genomics +0806.0219 Algebraic Geometry +0806.0220 Differential Geometry +0806.0221 Strongly Correlated Electrons +0806.0222 Mesoscale and Nanoscale Physics +0806.0225 Complex Variables +0806.0226 Phenomenology +0806.0241 +0806.0260 Dynamical Systems +0806.0262 Other Condensed Matter +0806.0273 Physics and Society +0806.0279 Combinatorics +0806.0280 Combinatorics +0806.0281 Combinatorics +0806.0286 +0806.0299 Analysis of PDEs +0806.0303 Geometric Topology +0806.0308 Category Theory +0806.0309 Number Theory +0806.0312 +0806.0314 Human-Computer Interaction +0806.0320 Optimization and Control +0806.0326 Geometric Topology +0806.0332 Category Theory +0806.0334 General Physics +0806.0341 Computational Geometry +0806.0342 Analysis of PDEs +0806.0344 Physics and Society +0806.0349 +0806.0351 Differential Geometry +0806.0353 +0806.0360 Geophysics +0806.0362 Probability +cs/0607131 Cryptography and Security +math/0511633 Combinatorics +math/0603033 Combinatorics +math/0610720 Representation Theory +math/0611233 Representation Theory +math/0612437 Commutative Algebra +math/0702452 Combinatorics +quant-ph/0602019 +0707.3643 Rings and Algebras +0709.0907 Information Theory +0710.1090 Other Condensed Matter +0710.3217 Number Theory +0711.1084 Materials Science +0711.2996 Strongly Correlated Electrons +0711.3253 Populations and Evolution +0801.0346 Fluid Dynamics +0801.3745 +0801.4666 Probability +0802.3337 Mesoscale and Nanoscale Physics +0803.0269 Statistical Mechanics +0803.2543 +0803.2922 Other Condensed Matter +0803.3028 Materials Science +0804.2253 Mesoscale and Nanoscale Physics +0804.2254 Strongly Correlated Electrons +0804.3620 +0805.0738 Other Condensed Matter +0805.3013 Disordered Systems and Neural Networks +0805.4305 Superconductivity +0806.0123 Strongly Correlated Electrons +0806.0311 Discrete Mathematics +0806.1721 General Mathematics +0806.2751 Superconductivity +0806.3939 Computer Vision and Pattern Recognition +0807.3265 Probability +0807.3329 +0807.3332 Information Theory +0807.3337 Rings and Algebras +0807.3351 Optics +0807.3353 Genomics +0807.3355 Optimization and Control +0807.3363 Quantum Algebra +0807.3371 +0807.3372 Strongly Correlated Electrons +0807.3384 Phenomenology +0807.3387 Quantitative Methods +0807.3391 +0807.3392 Statistics Theory +0807.3396 Information Theory +0807.3397 Statistics Theory +0807.3406 Combinatorics +0807.3410 Statistics Theory +0807.3421 +0807.3423 Machine Learning +0807.3425 Mesoscale and Nanoscale Physics +0807.3426 Materials Science +0807.3427 Computer Science and Game Theory +0807.3430 Materials Science +0807.3434 Fluid Dynamics +0807.3441 Probability +0807.3446 Experiment +0807.3454 Classical Physics +0807.3461 Number Theory +0807.3465 +0807.3466 Data Analysis, Statistics and Probability +0807.3472 Statistical Mechanics +0807.3474 Statistical Mechanics +0807.3477 +0807.3483 Artificial Intelligence +0807.3490 Numerical Analysis +0807.3499 Rings and Algebras +0807.3506 Probability +0807.3508 +0807.3509 Pattern Formation and Solitons +0807.3510 Materials Science +0807.3511 +0807.3515 +0807.3518 Number Theory +0807.3519 Combinatorics +0807.3521 Cell Behavior +0807.3522 Number Theory +0807.3524 Probability +0807.3528 Biological Physics +0807.3532 Instrumentation and Detectors +0807.3534 Physics Education +0807.3541 Combinatorics +0807.3543 Combinatorics +0807.3546 Representation Theory +cond-mat/0703480 Strongly Correlated Electrons +hep-ph/0603024 Phenomenology +math/0410233 Geometric Topology +math/0609683 Geometric Topology +math/0703638 Geometric Topology +quant-ph/0611052 +0704.2582 Superconductivity +0704.3115 Mesoscale and Nanoscale Physics +0706.0618 Soft Condensed Matter +0706.2774 Strongly Correlated Electrons +0707.4617 Algebraic Geometry +0711.0872 Materials Science +0802.1409 Mesoscale and Nanoscale Physics +0802.2739 Algebraic Geometry +0802.3722 Instrumentation and Detectors +0803.0712 Soft Condensed Matter +0803.1811 Statistical Mechanics +0803.2197 Mesoscale and Nanoscale Physics +0803.4058 Physics and Society +0804.0168 Superconductivity +0804.1685 Strongly Correlated Electrons +0804.2342 Mesoscale and Nanoscale Physics +0804.3082 +0804.3467 +0804.4324 +0805.1538 +0805.2919 Mesoscale and Nanoscale Physics +0805.3737 Superconductivity +0806.1574 Mesoscale and Nanoscale Physics +0807.0420 Phenomenology +0807.0725 Computation +0807.1005 Statistics Theory +0807.1525 Superconductivity +0807.2861 Theory +0807.3172 Superconductivity +0807.3556 +0807.4489 Strongly Correlated Electrons +0808.0644 Strongly Correlated Electrons +0808.3320 Physics and Society +0808.4036 Soft Condensed Matter +0808.4048 Soft Condensed Matter +0809.0013 Physics Education +0809.1017 Information Theory +0809.1444 +0809.1758 Phenomenology +0809.2294 Functional Analysis +0809.2353 Theory +0809.2558 Theory +0809.2612 +0809.2616 Space Physics +0809.2618 Differential Geometry +0809.2623 Combinatorics +0809.2625 Statistics Theory +0809.2626 Combinatorics +0809.2629 +0809.2641 Theory +0809.2642 +0809.2649 Soft Condensed Matter +0809.2653 Soft Condensed Matter +0809.2655 +0809.2660 Materials Science +0809.2662 Materials Science +0809.2664 Analysis of PDEs +0809.2669 Phenomenology +0809.2679 Differential Geometry +0809.2680 Multiagent Systems +0809.2686 Databases +0809.2687 Databases +0809.2688 Databases +0809.2690 Materials Science +0809.2691 Databases +0809.2696 Symbolic Computation +0809.2698 Analysis of PDEs +0809.2700 Mesoscale and Nanoscale Physics +0809.2701 Theory +0809.2711 +0809.2714 Genomics +0809.2717 +0809.2722 Differential Geometry +0809.2725 Differential Geometry +0809.2729 Differential Geometry +0809.2735 Differential Geometry +0809.2740 +0809.2742 +0809.2743 +0809.2745 Phenomenology +0809.2751 +0809.2752 Functional Analysis +0809.2754 Information Theory +0809.2757 +0809.2761 Algebraic Geometry +0809.2765 Other Condensed Matter +0809.2766 Instrumentation and Detectors +0809.2770 General Physics +0809.2772 +0809.2774 Number Theory +0809.2775 Biomolecules +0809.2778 Theory +cond-mat/0605086 Soft Condensed Matter +hep-th/0511287 Theory +math/0409256 Representation Theory +math/0506511 Algebraic Geometry +math/0510276 Statistics Theory +math/0604183 Algebraic Geometry +math/0612279 Spectral Theory +math/0702548 Algebraic Geometry +nlin/0612002 Exactly Solvable and Integrable Systems +nucl-th/0607014 +0704.0945 Probability +0704.3671 Mesoscale and Nanoscale Physics +0705.1412 Geophysics +0705.3588 Probability +0706.2720 Probability +0706.3351 Statistical Mechanics +0707.3715 Statistics Theory +0708.0703 Neurons and Cognition +0708.2823 Soft Condensed Matter +0708.4183 Probability +0708.4397 Number Theory +0709.3165 Probability +0710.0302 +0710.2039 Statistics Theory +0710.3659 +0711.2576 Probability +0712.2482 +0801.0443 Statistical Mechanics +0801.2437 Soft Condensed Matter +0801.3194 +0801.3860 +0802.1370 Geometric Topology +0803.0535 Statistical Mechanics +0804.3166 Applications +0805.0776 Metric Geometry +0805.1236 +0805.1725 Geophysics +0805.3417 Soft Condensed Matter +0805.3889 Disordered Systems and Neural Networks +0805.4519 Soft Condensed Matter +0806.2322 Disordered Systems and Neural Networks +0806.2445 Superconductivity +0806.4258 +0807.0632 Superconductivity +0807.0707 Strongly Correlated Electrons +0808.0536 Optics +0808.0612 Other Condensed Matter +0808.1023 +0808.1029 +0808.1032 +0808.1037 +0808.1406 Strongly Correlated Electrons +0808.2946 Functional Analysis +0808.3719 Other Condensed Matter +0809.0218 +0809.0523 Statistical Mechanics +0809.0534 Quantum Algebra +0809.0709 Statistical Mechanics +0809.1125 Algebraic Topology +0809.3007 Experiment +0809.4905 Materials Science +0810.0268 +0810.1164 Applications +0810.4078 Phenomenology +0810.4505 Geometric Topology +0810.5007 Experiment +0811.1231 Differential Geometry +0811.2002 Symplectic Geometry +0811.2005 +0811.2016 Learning +0811.2021 Exactly Solvable and Integrable Systems +0811.2023 Algebraic Geometry +0811.2039 Materials Science +0811.2040 Probability +0811.2046 Probability +0811.2058 +0811.2060 +0811.2062 +0811.2063 +0811.2064 Probability +0811.2071 +0811.2076 Probability +0811.2078 Statistical Mechanics +0811.2082 Materials Science +0811.2083 Differential Geometry +0811.2090 Functional Analysis +0811.2091 Functional Analysis +0811.2092 Atomic Physics +0811.2093 Probability +0811.2102 Number Theory +0811.2103 +0811.2115 +0811.2117 Databases +0811.2119 Combinatorics +0811.2123 General Physics +0811.2126 Functional Analysis +0811.2127 Lattice +0811.2131 Functional Analysis +0811.2133 Physics Education +0811.2145 +0811.2146 Materials Science +0811.2147 Combinatorics +0811.2149 +0811.2151 Analysis of PDEs +0811.2159 Analysis of PDEs +0811.2160 Representation Theory +0811.2167 Materials Science +0811.2172 Materials Science +0811.2175 +0811.2184 Phenomenology +0811.2186 +0811.2189 Populations and Evolution +0811.2191 Functional Analysis +0811.2201 Information Theory +astro-ph/0603275 +hep-th/0702158 Theory +math/0211058 Algebraic Topology +math/0504206 Geometric Topology +math/0701879 Probability +math/0703496 Differential Geometry +math/0703639 Group Theory +physics/0611024 Classical Physics +quant-ph/0509212 +quant-ph/0612090 +0706.3418 Strongly Correlated Electrons +0803.1163 Strongly Correlated Electrons +0803.1672 Computational Complexity +0803.3525 Classical Analysis and ODEs +0804.0901 Combinatorics +0804.3200 Mesoscale and Nanoscale Physics +hep-ex/0605028 Experiment +hep-ex/0605045 Experiment +hep-ex/0605051 Experiment +hep-ex/0605061 Experiment +hep-ex/0605082 Experiment +hep-ex/0605084 Experiment +hep-ex/0605088 Experiment +hep-ex/0605094 Experiment +hep-ex/0605115 Experiment +hep-ex/0607005 Experiment +hep-ex/0607007 Experiment +hep-ex/0609012 Experiment +hep-ex/0611001 Experiment +hep-ex/0612002 Experiment +hep-ex/0701003 Experiment +hep-ex/0701030 Experiment +hep-ex/0703001 Experiment +math/0311125 Probability +math/0601507 Algebraic Geometry +physics/0607109 Physics and Society +quant-ph/0604174 +0704.1431 Combinatorics +0705.2396 +0708.0191 Other Condensed Matter +0708.1330 +0708.1430 Number Theory +0708.1489 Theory +0709.2022 Optics +0709.2700 Group Theory +0709.3079 Combinatorics +0710.4111 Operator Algebras +0710.4174 Analysis of PDEs +0710.4484 Symplectic Geometry +0710.5160 Soft Condensed Matter +0711.0776 Superconductivity +0711.1551 Atmospheric and Oceanic Physics +0711.1905 Dynamical Systems +0711.3462 +0711.3465 +0712.3259 Mesoscale and Nanoscale Physics +0801.2995 Strongly Correlated Electrons +0802.0426 Algebraic Geometry +0802.1388 Statistics Theory +0802.2032 Spectral Theory +0802.2166 +0803.1292 +0803.2064 Disordered Systems and Neural Networks +0803.2243 +0803.3173 Statistical Mechanics +0804.0003 +0804.0992 +0804.4374 +0805.0043 Optics +0805.1482 Statistical Mechanics +0805.3457 Statistical Mechanics +0806.2427 Other Condensed Matter +0806.2695 Quantum Algebra +0806.3433 Combinatorics +0806.3520 Theory +0806.4509 Materials Science +0807.0240 Number Theory +0807.0247 Cell Behavior +0807.0248 Phenomenology +0807.0256 General Physics +0807.0257 Numerical Analysis +0807.0260 Materials Science +0807.0263 +0807.0265 Analysis of PDEs +0807.0269 Theory +0807.0271 Quantum Algebra +0807.0279 Optics +0807.0280 +0807.0281 Soft Condensed Matter +0807.0288 Mesoscale and Nanoscale Physics +0807.0306 Statistical Mechanics +0807.0311 Computation and Language +0807.0312 Algebraic Geometry +0807.0313 Combinatorics +0807.0321 Phenomenology +0807.0326 Probability +0807.0328 General Physics +0807.0330 +0807.0332 General Physics +0807.0333 Soft Condensed Matter +0807.0334 +0807.0340 Disordered Systems and Neural Networks +0807.0349 Instrumentation and Detectors +0807.0357 Differential Geometry +0807.0372 Physics and Society +0807.0378 Materials Science +0807.0403 Numerical Analysis +0807.0406 Theory +0807.0418 Physics Education +0807.0432 Numerical Analysis +0807.0433 Combinatorics +0807.0436 +cond-mat/0407523 Statistical Mechanics +cond-mat/0410712 Statistical Mechanics +cond-mat/0506139 Statistical Mechanics +cond-mat/0606818 Strongly Correlated Electrons +cond-mat/9907082 Statistical Mechanics +cs/0607036 Computational Complexity +cs/0612142 Discrete Mathematics +math/0602065 Probability +math/0610904 Metric Geometry +quant-ph/0605106 +0705.4067 +0706.0120 +0706.1162 Human-Computer Interaction +0706.2083 Mesoscale and Nanoscale Physics +0707.0953 Probability +0707.1130 Geometric Topology +0707.1352 Algebraic Geometry +0708.0180 +0709.1362 Other Condensed Matter +0709.4154 Number Theory +0710.1143 +0710.2305 Combinatorics +0710.3360 Superconductivity +0710.4585 Mesoscale and Nanoscale Physics +0711.0964 Algebraic Geometry +0711.2081 Theory +0711.4859 Algebraic Topology +0712.0730 +0712.1611 Combinatorics +0712.4057 Cryptography and Security +0802.1644 Statistics Theory +0802.1667 Quantitative Methods +0802.1738 Information Retrieval +0802.2158 Learning +0802.2279 +0802.2281 +0802.2294 Geometric Topology +0802.2299 +0802.2300 Computational Complexity +0802.2304 Mesoscale and Nanoscale Physics +0802.2306 Software Engineering +0802.2307 +0802.2309 +0802.2316 Analysis of PDEs +0802.2317 Computers and Society +0802.2322 Functional Analysis +0802.2323 Combinatorics +0802.2325 Differential Geometry +0802.2326 Mesoscale and Nanoscale Physics +0802.2329 Commutative Algebra +0802.2337 +0802.2339 +0802.2345 Information Theory +0802.2346 Differential Geometry +0802.2349 Information Theory +0802.2352 Analysis of PDEs +0802.2353 Dynamical Systems +0802.2355 Populations and Evolution +0802.2356 Complex Variables +0802.2362 Computational Physics +0802.2367 +0802.2370 +0802.2371 Other Computer Science +0802.2373 Probability +0802.2374 Differential Geometry +0802.2376 Plasma Physics +0802.2383 Chaotic Dynamics +0802.2384 Materials Science +0802.2387 Strongly Correlated Electrons +0802.2394 +0802.2399 Computational Physics +0802.2407 Materials Science +0802.2411 Neural and Evolutionary Computing +0802.2413 Dynamical Systems +0802.2416 +0802.2418 Distributed, Parallel, and Cluster Computing +0802.2420 Strongly Correlated Electrons +0802.2422 Phenomenology +0802.2425 Strongly Correlated Electrons +0802.2429 Artificial Intelligence +0802.2439 General Mathematics +0802.2443 +0802.2445 Dynamical Systems +0802.2448 +0802.2450 +0802.2454 Differential Geometry +0802.2455 Other Condensed Matter +0802.2465 Chaotic Dynamics +0802.2468 Spectral Theory +0802.2474 Differential Geometry +0802.2479 Classical Physics +0802.2480 Atomic and Molecular Clusters +0802.2481 Algebraic Geometry +0802.2482 Atomic and Molecular Clusters +0802.2485 Superconductivity +0802.2493 +0802.2495 Probability +0802.2505 +0802.2508 Neurons and Cognition +0802.2511 Physics and Society +0802.2517 Classical Analysis and ODEs +0802.2526 Molecular Networks +0802.2528 Data Structures and Algorithms +0802.2532 +0802.2533 Combinatorics +0802.2538 +astro-ph/0303455 +hep-th/0205149 Theory +hep-th/0408169 Theory +hep-th/0512190 Theory +hep-th/0603019 Theory +math-ph/0606001 +math/0410487 Differential Geometry +math/0506236 Differential Geometry +math/0604120 Operator Algebras +math/0611005 Geometric Topology +math/0701399 Quantum Algebra +math/0703616 Spectral Theory +physics/0606140 Chemical Physics +quant-ph/0105058 +quant-ph/0602156 +0704.1403 Quantum Algebra +0705.2888 Combinatorics +0708.0093 Algebraic Geometry +0708.1639 Mesoscale and Nanoscale Physics +0708.4408 Probability +0710.1593 Statistical Mechanics +0710.3132 Probability +0710.3264 Soft Condensed Matter +0711.1053 Materials Science +0711.2325 +0712.0443 Superconductivity +0712.3082 Materials Science +0802.0224 Statistical Mechanics +0802.0329 +0802.3014 Algebraic Geometry +0803.0511 Atomic Physics +0803.0778 Information Theory +0803.4384 Superconductivity +0804.1273 Materials Science +0804.1994 Theory +0804.3080 General Physics +0804.4299 General Physics +0805.0541 Other Computer Science +0805.0601 Algebraic Geometry +0805.0610 Analysis of PDEs +0805.0617 Probability +0805.0620 Functional Analysis +0805.0625 Analysis of PDEs +0805.0639 Optimization and Control +0805.0644 Superconductivity +0805.0646 Differential Geometry +0805.0647 Soft Condensed Matter +0805.0650 Software Engineering +0805.0658 Differential Geometry +0805.0664 Geophysics +0805.0667 Operator Algebras +0805.0671 +0805.0672 Strongly Correlated Electrons +0805.0674 General Mathematics +0805.0675 Phenomenology +0805.0682 Phenomenology +0805.0686 Rings and Algebras +0805.0688 Soft Condensed Matter +0805.0689 Materials Science +0805.0693 Functional Analysis +0805.0696 Biomolecules +0805.0702 General Physics +0805.0711 Statistical Mechanics +0805.0725 +0805.0727 Mesoscale and Nanoscale Physics +0805.0728 Chaotic Dynamics +0805.0732 Statistics Theory +0805.0736 Superconductivity +0805.0739 Atmospheric and Oceanic Physics +0805.0741 Strongly Correlated Electrons +0805.0742 Experiment +0805.0743 Algebraic Topology +0805.0747 Databases +0805.0750 Analysis of PDEs +0805.0752 +0805.0753 Materials Science +0805.0756 Algebraic Geometry +0805.0766 Computer Science and Game Theory +0805.0769 Optics +0805.0771 +0805.0773 +0805.0775 Number Theory +0805.0782 Networking and Internet Architecture +0805.0785 Artificial Intelligence +0805.0787 Representation Theory +cond-mat/0306204 Soft Condensed Matter +cond-mat/0401526 Soft Condensed Matter +cond-mat/0505632 Strongly Correlated Electrons +cond-mat/0606767 Materials Science +cs/0701098 Information Theory +hep-ph/0612197 Phenomenology +math/0505615 Complex Variables +math/0605093 Algebraic Geometry +math/0611034 Classical Analysis and ODEs +math/0611038 Classical Analysis and ODEs +math/0612668 Algebraic Geometry +nlin/0608001 Chaotic Dynamics +quant-ph/0611153 +0704.2916 Probability +0706.0670 +0707.3758 Algebraic Geometry +0707.4490 Materials Science +0709.0341 Soft Condensed Matter +0710.0436 Statistics Theory +0710.3605 +0712.1916 Digital Libraries +0801.0756 Information Theory +0802.1379 Networking and Internet Architecture +0802.2636 Statistics Theory +0802.2690 Other Condensed Matter +0803.1380 Algebraic Geometry +0803.2021 +0804.1126 Atmospheric and Oceanic Physics +0804.1135 Atmospheric and Oceanic Physics +0804.1514 Strongly Correlated Electrons +0805.1577 Materials Science +0806.0922 Strongly Correlated Electrons +0806.2349 Quantum Algebra +0806.2837 Soft Condensed Matter +0806.4629 Strongly Correlated Electrons +0806.4763 Strongly Correlated Electrons +0807.4610 Superconductivity +0808.3999 Plasma Physics +0809.1027 Statistics Theory +0809.1506 Symplectic Geometry +0809.2131 Statistical Mechanics +0810.2257 Quantum Algebra +0810.4658 Information Theory +0810.4740 Number Theory +0811.1668 Strongly Correlated Electrons +0811.1699 +0811.1755 Phenomenology +0811.1786 +0811.1790 Information Theory +0811.1792 +0811.1793 Number Theory +0811.1803 Analysis of PDEs +0811.1805 +0811.1817 Optics +0811.1818 Complex Variables +0811.1819 Theory +0811.1820 Differential Geometry +0811.1824 Operator Algebras +0811.1825 Computational Complexity +0811.1829 Statistical Mechanics +0811.1831 Applications +0811.1832 Disordered Systems and Neural Networks +0811.1839 Statistical Mechanics +0811.1842 Applications +0811.1846 Statistics Theory +0811.1849 Analysis of PDEs +0811.1851 +0811.1853 General Physics +0811.1854 Chemical Physics +0811.1859 Cryptography and Security +0811.1862 Probability +0811.1865 Commutative Algebra +0811.1870 +0811.1871 Number Theory +0811.1878 Artificial Intelligence +0811.1879 +0811.1882 Discrete Mathematics +0811.1889 Materials Science +0811.1898 Atomic and Molecular Clusters +0811.1900 Materials Science +0811.1911 Phenomenology +0811.1914 Logic in Computer Science +0811.1917 Statistics Theory +0811.1924 Materials Science +0811.1925 Combinatorics +0811.1934 Optimization and Control +0811.1935 Probability +0811.1939 Optimization and Control +0811.1950 Software Engineering +0811.1957 +0811.1958 +0811.1959 Multimedia +0811.1965 +0811.1970 +0811.1971 +0811.1974 Human-Computer Interaction +0811.1975 +0811.1978 Complex Variables +0811.1983 Combinatorics +math/0504371 Representation Theory +math/0505196 Probability +math/0602054 Probability +nucl-th/0601094 +quant-ph/0612118 +0704.3469 Combinatorics +0705.3520 Superconductivity +0706.4027 Materials Science +0707.2192 Differential Geometry +0707.2392 Algebraic Geometry +0708.3559 +0709.0527 Other Condensed Matter +0709.1023 +0710.3206 Representation Theory +0801.0205 Disordered Systems and Neural Networks +0802.1064 Mesoscale and Nanoscale Physics +0802.2126 Materials Science +0803.0372 Materials Science +0803.0591 Operator Algebras +0804.0197 Statistical Mechanics +0804.0323 Mesoscale and Nanoscale Physics +0804.0796 Superconductivity +0804.1843 Phenomenology +0804.3186 Populations and Evolution +0804.4013 +0805.0063 Soft Condensed Matter +0805.0378 Strongly Correlated Electrons +0805.3485 +0805.4231 Fluid Dynamics +0806.4590 Chaotic Dynamics +0807.0618 Strongly Correlated Electrons +0807.0820 Optics +0807.1543 Information Theory +0807.3251 Materials Science +0808.0056 Artificial Intelligence +0808.0197 Superconductivity +0808.0382 +0808.0451 Differential Geometry +0808.1589 Dynamical Systems +0808.4059 Differential Geometry +0809.0185 Atomic Physics +0809.0743 Analysis of PDEs +0809.1064 +0809.2258 Combinatorics +0809.3122 Classical Analysis and ODEs +0809.3187 Computational Engineering, Finance, and Science +0809.3623 Theory +0809.3670 +0809.3872 Experiment +0809.3973 Number Theory +0809.4006 +0809.4013 +0809.4017 Computer Science and Game Theory +0809.4026 Fluid Dynamics +0809.4034 Theory +0809.4039 Analysis of PDEs +0809.4040 Differential Geometry +0809.4046 Strongly Correlated Electrons +0809.4047 Computation +0809.4057 Differential Geometry +0809.4061 Number Theory +0809.4070 Differential Geometry +0809.4073 +0809.4075 Theory +0809.4077 Superconductivity +0809.4081 Differential Geometry +0809.4082 Operating Systems +0809.4084 Analysis of PDEs +0809.4088 +0809.4089 Optimization and Control +0809.4091 General Mathematics +0809.4099 Group Theory +0809.4101 Information Theory +0809.4104 Statistical Mechanics +0809.4105 +0809.4108 Software Engineering +0809.4109 Software Engineering +0809.4110 Classical Analysis and ODEs +0809.4112 +0809.4113 +0809.4121 General Physics +0809.4123 Commutative Algebra +0809.4124 +0809.4130 +0809.4132 Optics +0809.4141 Commutative Algebra +0809.4144 General Mathematics +0809.4146 Phenomenology +0809.4147 Fluid Dynamics +0809.4149 Information Theory +0809.4154 Experiment +0809.4155 Statistics Theory +0809.4169 Commutative Algebra +0809.4174 Analysis of PDEs +0809.4175 Probability +0809.4181 Methodology +0809.4182 Spectral Theory +0809.4183 Cryptography and Security +0809.4184 Probability +0809.4186 +0809.4187 Dynamical Systems +0809.4191 Phenomenology +0809.4202 Populations and Evolution +0809.4205 Methodology +0809.4208 Experiment +0809.4210 Instrumentation and Detectors +0809.4211 Analysis of PDEs +0809.4239 Geometric Topology +0809.4247 Materials Science +cond-mat/0306414 Mesoscale and Nanoscale Physics +cond-mat/0307180 Mesoscale and Nanoscale Physics +cond-mat/0405333 Disordered Systems and Neural Networks +cond-mat/0412423 Strongly Correlated Electrons +cond-mat/0509378 Mesoscale and Nanoscale Physics +cond-mat/0601375 Superconductivity +cond-mat/0601378 Superconductivity +cond-mat/0608596 Materials Science +cs/0611040 Logic in Computer Science +math/0506139 Analysis of PDEs +nucl-th/0703053 +q-bio/0604033 Quantitative Methods +0706.1493 Atomic and Molecular Clusters +0709.2127 Algebraic Geometry +0710.1195 Mesoscale and Nanoscale Physics +0711.1987 Statistical Mechanics +0711.2460 Classical Analysis and ODEs +0711.3537 Number Theory +0712.0489 Probability +0712.2580 Quantum Algebra +0712.4199 Probability +0801.2121 +0801.3957 Group Theory +0802.0633 Analysis of PDEs +0802.2612 Discrete Mathematics +0802.3284 Discrete Mathematics +0803.4349 Logic +0804.1062 Strongly Correlated Electrons +0804.2081 Mesoscale and Nanoscale Physics +0804.3385 +0805.1443 +0805.3042 +0805.4216 Theory +0806.0375 +0807.2310 Differential Geometry +0807.2413 +0807.4613 Superconductivity +0808.1733 Superconductivity +0808.2394 Superconductivity +0808.2739 Materials Science +0809.1864 Probability +0809.3627 +0809.4080 Biomolecules +0809.4233 Probability +0809.4349 Probability +0810.2351 Superconductivity +0810.2471 Strongly Correlated Electrons +0810.3055 Analysis of PDEs +0810.3168 Commutative Algebra +0810.3229 Experiment +0810.4686 Optics +0810.5479 Algebraic Geometry +0811.0463 Computational Complexity +0811.1046 Differential Geometry +0811.1050 History and Philosophy of Physics +0811.1055 Combinatorics +0811.1060 Rings and Algebras +0811.1069 Commutative Algebra +0811.1071 +0811.1080 +0811.1081 Quantitative Methods +0811.1082 Classical Analysis and ODEs +0811.1104 Strongly Correlated Electrons +0811.1107 Probability +0811.1111 Experiment +0811.1122 +0811.1124 Materials Science +0811.1129 +0811.1130 Data Analysis, Statistics and Probability +0811.1131 Superconductivity +0811.1133 Experiment +0811.1138 +0811.1149 Combinatorics +0811.1152 Analysis of PDEs +0811.1153 Statistics Theory +0811.1154 +0811.1158 +0811.1165 Logic +0811.1168 Algebraic Geometry +0811.1170 Algebraic Geometry +0811.1172 Classical Analysis and ODEs +0811.1173 Dynamical Systems +0811.1177 Geophysics +0811.1179 Exactly Solvable and Integrable Systems +0811.1183 Geophysics +0811.1185 Differential Geometry +0811.1190 Analysis of PDEs +0811.1193 Analysis of PDEs +0811.1195 Soft Condensed Matter +0811.1201 Plasma Physics +0811.1204 Analysis of PDEs +0811.1208 Probability +0811.1211 Algebraic Geometry +cond-mat/9811274 +cs/0610042 Discrete Mathematics +math/0405261 Geometric Topology +math/0510109 Quantum Algebra +math/0511468 Statistics Theory +math/0604488 Probability +math/0606735 Category Theory +math/0612835 Analysis of PDEs +math/0701938 Statistics Theory +math/9810055 Quantum Algebra +physics/0604151 General Physics +0704.0841 Theory +0705.4245 Probability +0707.4117 Statistical Mechanics +0709.0006 +0710.1614 K-Theory and Homology +0710.3761 Optics +0710.4022 History and Overview +0710.4024 History and Overview +0710.4025 History and Overview +0710.4028 History and Overview +0710.4032 History and Overview +0710.5137 Mesoscale and Nanoscale Physics +0712.2151 Phenomenology +0712.3887 +0801.0734 Algebraic Geometry +cond-mat/0702269 Statistical Mechanics +cond-mat/9903412 +gr-qc/0701050 +math/0210047 Category Theory +math/0210114 K-Theory and Homology +math/0306018 Category Theory +math/0312339 Category Theory +math/0702564 Combinatorics +math/0703847 Spectral Theory +0704.1386 Mesoscale and Nanoscale Physics +0705.2531 +0706.4478 +0707.1626 Functional Analysis +0707.2221 Analysis of PDEs +0707.4237 Superconductivity +0708.0612 Physics and Society +0708.2237 Disordered Systems and Neural Networks +0708.3249 Geometric Topology +0709.0754 Atomic Physics +0709.1803 Materials Science +0709.3549 Combinatorics +0709.3962 Representation Theory +0710.0886 Quantum Algebra +0710.0887 Quantum Algebra +0711.1231 Distributed, Parallel, and Cluster Computing +0711.3280 +0801.1750 Superconductivity +0802.2194 Statistical Mechanics +0802.3125 Machine Learning +0802.3159 Materials Science +0802.3388 +0803.1322 Algebraic Geometry +0803.2247 Analysis of PDEs +0803.2471 Operator Algebras +0803.3008 Algebraic Geometry +0803.3019 Theory +0803.3314 Networking and Internet Architecture +0803.3349 Quantum Algebra +0803.3449 Number Theory +0803.3468 Number Theory +0803.3471 Statistical Mechanics +0803.3494 Chemical Physics +0803.3496 Materials Science +0803.3498 Logic +0803.3510 Differential Geometry +0803.3515 Other Computer Science +0803.3519 Accelerator Physics +0803.3520 Combinatorics +0803.3522 Probability +0803.3533 Differential Geometry +0803.3536 Symplectic Geometry +0803.3539 Neural and Evolutionary Computing +0803.3549 Analysis of PDEs +0803.3551 +0803.3555 Group Theory +0803.3557 Optimization and Control +0803.3563 Algebraic Geometry +0803.3570 Representation Theory +0803.3586 Number Theory +0803.3588 +0803.3592 General Mathematics +0803.3594 Category Theory +0803.3598 Operator Algebras +0803.3599 Other Condensed Matter +0803.3600 Operator Algebras +0803.3605 General Mathematics +0803.3609 Phenomenology +0803.3612 Classical Physics +0803.3615 Geophysics +cond-mat/0007192 Strongly Correlated Electrons +cond-mat/0008172 Strongly Correlated Electrons +cond-mat/0010243 Strongly Correlated Electrons +cond-mat/0010354 Strongly Correlated Electrons +cond-mat/0103219 Mesoscale and Nanoscale Physics +cs/0604080 Discrete Mathematics +cs/0607092 Discrete Mathematics +hep-th/0512327 Theory +hep-th/0612021 Theory +math-ph/0510010 +math/0508468 Numerical Analysis +math/0510375 Rings and Algebras +math/0511404 Algebraic Topology +math/0612654 Algebraic Geometry +0707.3276 Number Theory +0708.3588 Superconductivity +0709.1181 Rings and Algebras +0710.2168 Classical Analysis and ODEs +0710.4007 Dynamical Systems +0711.0351 Information Theory +0803.0412 Populations and Evolution +0804.2008 General Physics +0804.4549 Analysis of PDEs +0804.4796 Physics Education +0805.4630 Superconductivity +0806.1043 Superconductivity +0806.3064 Biomolecules +0809.0281 Phenomenology +cond-mat/0610730 Mesoscale and Nanoscale Physics +cond-mat/0610755 Superconductivity +math/0502225 Representation Theory +math/0511723 Rings and Algebras +math/0606715 Differential Geometry +math/0702678 Rings and Algebras +physics/0603251 Space Physics +0706.1757 Chemical Physics +0707.2885 History and Overview +0711.3794 Algebraic Geometry +0801.2214 Biological Physics +0801.4659 Statistical Mechanics +0805.0515 Strongly Correlated Electrons +0805.2702 Strongly Correlated Electrons +0807.4255 +0808.0136 Phenomenology +0808.0667 Differential Geometry +math/0605600 Statistics Theory +0704.3445 Statistical Mechanics +0706.2634 Algebraic Geometry +0708.1793 +0710.0115 +0710.3981 Classical Analysis and ODEs +0710.4358 Group Theory +0710.5065 Algebraic Topology +0712.1255 Statistical Mechanics +0802.1237 Data Structures and Algorithms +0802.2876 +0803.0115 Soft Condensed Matter +0803.2864 General Physics +0804.1664 Atomic and Molecular Clusters +0804.4700 +0805.0466 +0805.0983 Statistical Mechanics +0805.2159 +0805.4323 Computer Science and Game Theory +0806.2000 +0807.0303 Materials Science +0807.1096 Phenomenology +0808.2507 Algebraic Topology +0808.3743 Algebraic Geometry +0809.0499 Superconductivity +0809.1557 Plasma Physics +0809.1991 Number Theory +0809.3167 Atomic Physics +0809.5203 +0810.0179 Atomic Physics +0810.1446 Phenomenology +0810.3456 Analysis of PDEs +0810.3784 Materials Science +0810.4244 Phenomenology +0810.4391 Statistical Mechanics +0810.4462 Phenomenology +0810.4542 Commutative Algebra +0810.4548 Theory +0810.4553 Machine Learning +0810.4555 Optics +0810.4556 +0810.4557 Lattice +0810.4567 Operator Algebras +0810.4569 Rings and Algebras +0810.4570 +0810.4571 Algebraic Geometry +0810.4572 +0810.4580 Cell Behavior +0810.4581 Superconductivity +0810.4582 Materials Science +0810.4583 Physics and Society +0810.4587 Physics and Society +0810.4590 Physics and Society +0810.4598 Superconductivity +0810.4600 Representation Theory +0810.4601 Representation Theory +0810.4607 +0810.4612 Materials Science +0810.4613 General Physics +0810.4615 General Physics +0810.4616 Computation and Language +0810.4620 Group Theory +0810.4623 +0810.4628 Complex Variables +0810.4634 Combinatorics +0810.4644 Probability +0810.4655 Combinatorics +0810.4659 +0810.4663 Materials Science +0810.4665 Theory +0810.4667 Combinatorics +0810.4668 Artificial Intelligence +0810.4670 Representation Theory +0810.4675 Algebraic Geometry +0810.4682 Soft Condensed Matter +0810.4684 Exactly Solvable and Integrable Systems +0810.4691 Analysis of PDEs +0810.4693 Instrumentation and Detectors +0810.4698 Group Theory +0810.4701 Combinatorics +0810.4702 Chaotic Dynamics +0810.4707 K-Theory and Homology +0810.4713 Cryptography and Security +0810.4732 Tissues and Organs +0810.4733 Operator Algebras +0810.4734 Other Condensed Matter +0810.4738 Tissues and Organs +0810.4741 Information Theory +0810.4744 Materials Science +0810.4752 Machine Learning +0810.4754 Experiment +0810.4757 Representation Theory +0810.4764 Probability +0810.4774 Commutative Algebra +0810.4780 Statistics Theory +0810.4782 Analysis of PDEs +0810.4783 Strongly Correlated Electrons +0810.4784 Geophysics +0810.4788 Number Theory +0810.4789 Combinatorics +0810.4792 Statistical Mechanics +0810.4794 Classical Analysis and ODEs +0810.4798 Dynamical Systems +0810.4801 +0810.4802 Statistics Theory +0810.4803 +0810.4805 Differential Geometry +0810.4806 General Topology +0810.4808 Statistics Theory +0810.4809 Databases +0810.4817 Experiment +0810.4819 Experiment +0810.4820 Number Theory +0810.4821 Statistics Theory +0810.4825 +0810.4831 Experiment +0810.4833 Differential Geometry +0810.4841 Phenomenology +0810.4860 Quantitative Methods +0810.4871 Materials Science +0810.4875 History and Overview +0810.4876 +0810.4877 Phenomenology +0810.4878 Complex Variables +0810.4881 Phenomenology +0810.4893 Phenomenology +0810.4894 Classical Analysis and ODEs +0810.4895 Theory +0810.4901 Combinatorics +0810.4903 +0810.4904 Logic in Computer Science +0810.4906 Phenomenology +0810.4907 Commutative Algebra +0810.4909 Theory +0810.4910 +0810.4911 Algebraic Geometry +0810.4913 Phenomenology +0810.4918 Phenomenology +hep-ph/0608242 Phenomenology +math/0504540 Classical Analysis and ODEs +0704.0392 Neurons and Cognition +0704.3357 +0705.2407 Geometric Topology +0705.3635 Superconductivity +0706.0714 +0706.4113 Complex Variables +0707.0329 Populations and Evolution +0708.0363 Representation Theory +0709.0422 Phenomenology +0709.3262 Information Theory +0709.4108 Strongly Correlated Electrons +0710.1185 +0710.3200 Materials Science +0711.0140 +0711.4565 +0712.1680 Classical Analysis and ODEs +0801.2889 Strongly Correlated Electrons +0802.4463 +0803.1533 +0804.2520 Chaotic Dynamics +0804.2759 Strongly Correlated Electrons +0804.3454 Strongly Correlated Electrons +0804.4076 Probability +0804.4249 Materials Science +0805.0614 Materials Science +0805.1988 Strongly Correlated Electrons +0805.2262 Experiment +0806.1976 Representation Theory +0807.0065 +0807.0751 +0807.2934 Differential Geometry +0807.4009 Statistical Mechanics +0807.4422 Materials Science +0807.4547 General Physics +0807.5136 Theory +0808.2211 Lattice +0808.3040 +0808.3181 Theory +0808.3399 Applications +0808.3402 Probability +0808.3405 Number Theory +0808.3412 Differential Geometry +0808.3415 Group Theory +0808.3416 Computation +0808.3418 Information Theory +0808.3419 +0808.3421 Complex Variables +0808.3423 Mesoscale and Nanoscale Physics +0808.3424 Operator Algebras +0808.3425 +0808.3428 Analysis of PDEs +0808.3431 Information Theory +0808.3439 Combinatorics +0808.3441 Physics Education +0808.3444 Theory +0808.3445 +0808.3450 Spectral Theory +0808.3454 Analysis of PDEs +0808.3467 Analysis of PDEs +0808.3471 Phenomenology +0808.3476 +0808.3486 Classical Analysis and ODEs +0808.3488 Geometric Topology +0808.3494 Probability +0808.3499 Classical Analysis and ODEs +0808.3504 Information Theory +0808.3508 Experiment +0808.3516 Probability +0808.3517 Phenomenology +0808.3518 General Topology +0808.3526 Materials Science +0808.3529 Atomic Physics +0808.3535 Distributed, Parallel, and Cluster Computing +0808.3536 Distributed, Parallel, and Cluster Computing +0808.3541 History and Philosophy of Physics +0808.3542 Strongly Correlated Electrons +0808.3545 Software Engineering +0808.3548 Distributed, Parallel, and Cluster Computing +0808.3553 Mesoscale and Nanoscale Physics +0808.3555 Soft Condensed Matter +0808.3567 Theory +0808.3570 Quantum Algebra +cond-mat/0412202 Strongly Correlated Electrons +math/0606780 Number Theory +math/0608144 Quantum Algebra +math/0610593 Spectral Theory +math/0611017 Statistics Theory +math/0612857 Statistics Theory +0704.2776 Representation Theory +0704.2777 Representation Theory +0705.0216 Materials Science +0706.2856 Mesoscale and Nanoscale Physics +0706.3594 Superconductivity +0707.3958 Biological Physics +0708.2638 Atomic Physics +0708.2680 Mesoscale and Nanoscale Physics +0709.2271 Soft Condensed Matter +0709.3169 K-Theory and Homology +0709.3583 Strongly Correlated Electrons +0710.1315 Strongly Correlated Electrons +0710.2150 Mesoscale and Nanoscale Physics +0710.2407 +0710.5458 Strongly Correlated Electrons +0711.3115 Soft Condensed Matter +0712.0011 Statistical Mechanics +0712.1023 Plasma Physics +0712.1190 Lattice +0712.1399 Statistical Mechanics +0801.0459 General Physics +0801.1012 Other Quantitative Biology +0801.3624 Computational Complexity +0802.0437 Classical Analysis and ODEs +0802.1177 Phenomenology +0802.1244 Learning +0802.1372 Information Theory +0802.1822 Algebraic Geometry +0802.2696 Combinatorics +0802.2720 +0802.2727 Phenomenology +0802.2728 +0802.2730 Algebraic Geometry +0802.2742 Combinatorics +0802.2744 Strongly Correlated Electrons +0802.2747 Geometric Topology +0802.2752 Algebraic Topology +0802.2755 Discrete Mathematics +0802.2756 +0802.2764 +0802.2766 +0802.2769 Commutative Algebra +0802.2770 +0802.2773 Robotics +0802.2774 Differential Geometry +0802.2781 +0802.2790 Strongly Correlated Electrons +0802.2800 Statistics Theory +0802.2806 Classical Analysis and ODEs +0802.2814 +0802.2823 Information Theory +0802.2824 Representation Theory +0802.2825 Data Structures and Algorithms +0802.2826 Information Theory +0802.2827 Data Structures and Algorithms +0802.2828 Other Computer Science +0802.2829 Data Structures and Algorithms +0802.2831 Computational Complexity +0802.2832 Data Structures and Algorithms +0802.2833 Computational Complexity +0802.2834 Data Structures and Algorithms +0802.2835 +0802.2836 Data Structures and Algorithms +0802.2838 Data Structures and Algorithms +0802.2840 Theory +0802.2841 Data Structures and Algorithms +0802.2842 Information Theory +0802.2843 Computational Complexity +0802.2844 Information Theory +0802.2845 Data Structures and Algorithms +0802.2847 Data Structures and Algorithms +0802.2849 +0802.2850 Data Structures and Algorithms +0802.2851 Data Structures and Algorithms +0802.2852 Data Structures and Algorithms +0802.2853 Logic in Computer Science +0802.2854 Discrete Mathematics +0802.2855 Data Structures and Algorithms +0802.2857 Computational Complexity +0802.2860 Computational Complexity +0802.2861 Computational Geometry +0802.2862 Logic in Computer Science +0802.2863 Computational Complexity +0802.2864 Data Structures and Algorithms +0802.2865 Computational Geometry +0802.2866 Logic in Computer Science +0802.2867 Data Structures and Algorithms +0802.2868 Computational Complexity +0802.2869 Computational Complexity +0802.2871 Logic in Computer Science +0802.2882 Phenomenology +0802.2885 Category Theory +0802.2889 +0802.2897 Classical Analysis and ODEs +0802.2900 Materials Science +0802.2905 Combinatorics +0802.2907 Materials Science +0802.2914 +0802.2920 Group Theory +0802.2921 Algebraic Geometry +0802.2923 Statistical Mechanics +0802.2924 Number Theory +0802.2927 +cond-mat/0612387 Superconductivity +cs/0105036 Logic in Computer Science +cs/0112006 Artificial Intelligence +cs/0201013 Logic in Computer Science +cs/0211004 Artificial Intelligence +math/0508122 Algebraic Geometry +math/0609562 Combinatorics +math/0703247 Spectral Theory +physics/0604042 Space Physics +physics/0703142 Optics +q-bio/0507018 Genomics +quant-ph/0210204 +quant-ph/0703215 +0708.0188 Strongly Correlated Electrons +0709.1906 Optics +0711.3643 Complex Variables +0711.4400 Logic +0801.3085 Phenomenology +cond-mat/0509374 Strongly Correlated Electrons +physics/0703231 General Physics +q-bio/0611089 Neurons and Cognition +quant-ph/0212080 +quant-ph/0504213 +0706.1785 +0707.4428 +0710.2649 Symplectic Geometry +0801.3021 Algebraic Geometry +0802.2090 +0806.0858 +0806.1753 Materials Science +0807.1370 +0808.2915 Optics +0809.0153 Analysis of PDEs +0809.4694 Combinatorics +0809.4873 Classical Analysis and ODEs +cond-mat/0501557 Soft Condensed Matter +cs/0701083 Data Structures and Algorithms +math/0205210 Algebraic Geometry +quant-ph/0506241 +0708.1763 +0708.3947 Metric Geometry +0711.2279 +0711.3285 Theory +0801.1495 Numerical Analysis +0801.3958 Logic +0802.1469 +0802.2674 Numerical Analysis +0803.0503 Analysis of PDEs +0803.0826 Theory +0803.1015 Differential Geometry +0804.1400 Mesoscale and Nanoscale Physics +0806.1096 Statistical Mechanics +0806.2075 Rings and Algebras +0806.4105 +0807.1072 Probability +0807.1352 Superconductivity +0808.3017 +0809.0487 Optics +0810.1624 Cryptography and Security +0810.1648 Learning +0810.5048 Materials Science +0810.5077 +math/0502227 Representation Theory +math/0504328 Geometric Topology +math/0512352 Geometric Topology +nlin/0703058 Chaotic Dynamics +quant-ph/0505120 +0704.0480 Mesoscale and Nanoscale Physics +0705.0069 Statistics Theory +0705.0212 Plasma Physics +0705.1420 Operator Algebras +0706.1267 +0706.4018 Probability +0707.3157 Atomic Physics +0708.1539 +0708.3990 Number Theory +0709.2391 Atomic Physics +0709.2779 Mesoscale and Nanoscale Physics +0709.4181 Mesoscale and Nanoscale Physics +0710.1115 Analysis of PDEs +0710.4542 Materials Science +0711.3100 Analysis of PDEs +0712.2805 Mesoscale and Nanoscale Physics +0712.3792 Mesoscale and Nanoscale Physics +0801.0087 Superconductivity +0801.2420 +0801.3137 Other Condensed Matter +0801.3829 Materials Science +0802.1325 +0802.2079 Algebraic Geometry +0802.2301 Atomic Physics +0802.2382 +0802.3225 Statistical Mechanics +0802.4019 Mesoscale and Nanoscale Physics +0802.4325 Computational Geometry +0803.2594 Other Condensed Matter +0803.2733 +0803.3069 +0803.4187 Statistical Mechanics +0804.0274 Theory +0804.0283 Differential Geometry +0804.0429 Rings and Algebras +0804.0436 Differential Geometry +0804.0450 Probability +0804.0456 Phenomenology +0804.0460 Group Theory +0804.0466 Atomic and Molecular Clusters +0804.0475 Commutative Algebra +0804.0488 Differential Geometry +0804.0490 Experiment +0804.0493 Complex Variables +0804.0504 Strongly Correlated Electrons +0804.0507 +0804.0526 Operator Algebras +0804.0528 Artificial Intelligence +0804.0534 Probability +0804.0539 Information Theory +0804.0548 +0804.0557 Complex Variables +0804.0560 Numerical Analysis +0804.0565 Differential Geometry +0804.0574 +0804.0575 +0804.0577 Probability +0804.0583 Functional Analysis +0804.0588 Number Theory +0804.0589 +0804.0590 Algebraic Geometry +0804.0596 Differential Geometry +0804.0597 Rings and Algebras +0804.0601 Functional Analysis +0804.0602 Chemical Physics +0804.0606 Data Analysis, Statistics and Probability +0804.0611 Information Theory +cond-mat/0306327 Mesoscale and Nanoscale Physics +cond-mat/0702669 Statistical Mechanics +cs/0407022 Numerical Analysis +math-ph/0612074 +math/0605456 Operator Algebras +math/0605507 Algebraic Geometry +math/0607628 Operator Algebras +math/0609236 Metric Geometry +math/0703072 Probability +quant-ph/0607030 +quant-ph/0611149 +quant-ph/0703078 +0704.0451 Mesoscale and Nanoscale Physics +0704.0866 Complex Variables +0704.3421 Commutative Algebra +0707.0041 Chaotic Dynamics +0707.0806 Operator Algebras +0707.0925 Geometric Topology +0707.1314 +0707.3129 Quantum Algebra +0707.3451 Spectral Theory +0707.3974 Mesoscale and Nanoscale Physics +0708.4237 Mesoscale and Nanoscale Physics +0708.4254 Geometric Topology +0709.1080 Cryptography and Security +0709.3852 +0710.0508 Machine Learning +0710.2631 Physics Education +0710.4209 Algebraic Geometry +0710.4895 Materials Science +0710.4913 Statistical Mechanics +0711.0653 Soft Condensed Matter +0711.1869 Materials Science +0711.2791 +0711.3929 Disordered Systems and Neural Networks +0712.0348 Strongly Correlated Electrons +0712.1733 Materials Science +0712.3422 Probability +0712.3561 Mesoscale and Nanoscale Physics +0801.1890 Theory +0801.2862 Quantum Algebra +0801.3416 Probability +0801.3512 Algebraic Geometry +0802.0365 +0802.1465 Computational Complexity +0802.1540 Phenomenology +0802.1992 +0802.2563 +0802.2939 +0802.2948 Analysis of PDEs +0802.2951 +0802.2967 Neurons and Cognition +0802.2971 History and Philosophy of Physics +0802.2975 Information Theory +0802.2984 +0802.2993 Operator Algebras +0802.2998 Probability +0802.3001 Mesoscale and Nanoscale Physics +0802.3003 Statistical Mechanics +0802.3010 Quantum Algebra +0802.3021 Geometric Topology +0802.3023 Experiment +0802.3025 Optics +0802.3031 Representation Theory +0802.3035 Group Theory +0802.3036 Dynamical Systems +0802.3037 Other Computer Science +0802.3038 Other Computer Science +0802.3040 Other Computer Science +0802.3041 Other Computer Science +0802.3042 Other Computer Science +0802.3043 Other Computer Science +0802.3044 Other Computer Science +0802.3045 Statistical Mechanics +0802.3046 Other Computer Science +0802.3047 Other Computer Science +0802.3048 Other Computer Science +0802.3049 Other Computer Science +0802.3050 Other Computer Science +0802.3051 Other Computer Science +0802.3052 Other Computer Science +0802.3053 Other Computer Science +0802.3054 Other Computer Science +0802.3055 Other Computer Science +0802.3056 Other Computer Science +0802.3057 Other Computer Science +0802.3058 Classical Physics +0802.3059 Other Computer Science +0802.3060 Other Computer Science +0802.3061 Other Computer Science +0802.3062 Other Computer Science +0802.3063 Other Computer Science +0802.3064 Other Computer Science +0802.3065 Other Computer Science +0802.3066 Other Computer Science +0802.3067 Other Computer Science +0802.3068 Other Computer Science +0802.3069 Other Computer Science +0802.3070 Other Computer Science +0802.3071 Other Computer Science +0802.3072 Other Computer Science +0802.3073 Other Computer Science +0802.3074 Other Computer Science +0802.3075 Other Computer Science +0802.3076 Other Computer Science +0802.3077 Other Computer Science +0802.3078 Other Computer Science +0802.3079 Other Computer Science +0802.3080 Other Computer Science +0802.3081 Other Computer Science +0802.3082 Other Computer Science +0802.3083 Other Computer Science +0802.3084 Atmospheric and Oceanic Physics +0802.3086 Other Computer Science +0802.3087 Other Computer Science +0802.3088 Other Computer Science +0802.3089 Other Computer Science +0802.3090 Other Computer Science +0802.3091 Other Computer Science +0802.3092 Other Computer Science +0802.3093 Other Computer Science +0802.3094 Other Computer Science +0802.3095 Other Computer Science +0802.3096 Metric Geometry +0802.3097 Other Computer Science +0802.3099 Other Computer Science +0802.3100 Other Computer Science +0802.3101 Other Computer Science +0802.3102 Other Computer Science +0802.3103 Other Computer Science +0802.3104 Other Computer Science +0802.3105 Other Computer Science +0802.3106 Other Computer Science +0802.3107 Other Computer Science +0802.3114 Optics +0802.3118 Algebraic Geometry +0802.3123 +0802.3126 +0802.3129 Analysis of PDEs +0802.3130 Atmospheric and Oceanic Physics +0802.3136 Algebraic Geometry +0802.3137 Artificial Intelligence +0802.3140 Biomolecules +0802.3141 Statistics Theory +0802.3142 Statistics Theory +0802.3143 Methodology +0802.3144 Phenomenology +0802.3149 Algebraic Geometry +0802.3150 Machine Learning +0802.3152 Statistics Theory +0802.3153 Optimization and Control +0802.3165 Representation Theory +0802.3167 Analysis of PDEs +0802.3170 Physics and Society +0802.3171 General Physics +0802.3179 K-Theory and Homology +0802.3190 Statistics Theory +0802.3191 Statistics Theory +0802.3200 Number Theory +cond-mat/0505344 Strongly Correlated Electrons +cond-mat/0512508 Mesoscale and Nanoscale Physics +cond-mat/0609247 Strongly Correlated Electrons +cond-mat/0702489 Mesoscale and Nanoscale Physics +cs/0611075 Networking and Internet Architecture +hep-th/9405168 Theory +math/0510664 Algebraic Topology +math/0603420 Functional Analysis +math/0611223 Differential Geometry +math/0611819 Differential Geometry +math/0612552 Rings and Algebras +math/0703696 Probability +quant-ph/0601141 +quant-ph/0604145 +0704.1283 Strongly Correlated Electrons +0704.1623 Mesoscale and Nanoscale Physics +0706.0709 Other Condensed Matter +0706.3321 Materials Science +0708.3654 Combinatorics +0710.0571 +0710.3368 Statistical Mechanics +0710.3586 +math/0504010 Differential Geometry +math/0602310 Number Theory +math/0612311 Commutative Algebra +physics/0605256 Fluid Dynamics +quant-ph/0602184 +quant-ph/0602185 +quant-ph/0611284 +0704.0843 Strongly Correlated Electrons +0704.2627 Atomic Physics +0705.2649 Dynamical Systems +0706.0626 Algebraic Topology +0708.1091 Quantum Algebra +0709.4436 Other Condensed Matter +0710.4276 +0711.4435 Differential Geometry +0712.1673 Statistics Theory +0712.2538 +0712.3795 +0801.1123 +0801.1715 Databases +0801.3600 Algebraic Geometry +0801.3751 Methodology +0801.3902 Methodology +0801.4088 Functional Analysis +0801.4221 Methodology +0802.0013 Phenomenology +0802.0392 +0802.0557 Methodology +0802.0561 Optics +0802.0743 Methodology +0802.0754 Methodology +0802.0874 +0802.0884 Algebraic Geometry +0802.0889 Algebraic Geometry +0802.0890 Complex Variables +0802.0892 Complex Variables +0802.0895 Classical Analysis and ODEs +0802.0896 Theory +0802.0898 Complex Variables +0802.0919 Dynamical Systems +0802.0924 Materials Science +0802.0925 Algebraic Geometry +0802.0926 Probability +0802.0933 Probability +0802.0940 Theory +0802.0947 Complex Variables +0802.0954 Algebraic Topology +0802.0959 Algebraic Geometry +0802.0962 Fluid Dynamics +0802.0966 Probability +0802.0969 Medical Physics +0802.0978 Algebraic Geometry +0802.0979 Number Theory +0802.0981 General Topology +0802.0986 Analysis of PDEs +0802.0987 +0802.0994 Dynamical Systems +0802.0996 Algebraic Topology +0802.1002 Learning +0802.1006 Algebraic Topology +0802.1008 Methodology +0802.1013 Chaotic Dynamics +0802.1015 Networking and Internet Architecture +0802.1016 Statistical Mechanics +0802.1024 Adaptation and Self-Organizing Systems +0802.1025 Statistics Theory +0802.1026 Data Structures and Algorithms +0802.1030 +0802.1035 General Mathematics +0802.1038 Quantum Algebra +0802.1039 Analysis of PDEs +0802.1047 Statistics Theory +0802.1052 Logic +0802.1056 Biomolecules +0802.1058 Combinatorics +0802.1059 Data Structures and Algorithms +0802.1060 Algebraic Geometry +0802.1062 Algebraic Geometry +cond-mat/0608029 Superconductivity +cond-mat/0612296 Materials Science +cond-mat/9812288 Mesoscale and Nanoscale Physics +math-ph/0501002 +math/0405376 Metric Geometry +math/0508267 Statistics Theory +math/0511459 Number Theory +math/0604541 Differential Geometry +math/0608424 Functional Analysis +math/0612511 Group Theory +math/0702243 Classical Analysis and ODEs +physics/0703114 Optics +quant-ph/0602234 +quant-ph/0701129 +0707.2766 Biological Physics +0708.2154 Analysis of PDEs +0708.3319 Algebraic Geometry +0709.1142 +0711.0858 Probability +0802.3928 Mesoscale and Nanoscale Physics +0803.1133 Category Theory +0804.0270 Symplectic Geometry +0805.4648 Cryptography and Security +0806.1340 Computational Geometry +0806.1591 +math/0609641 Algebraic Topology +math/0612414 Algebraic Geometry +0704.1837 Strongly Correlated Electrons +0705.1180 +0706.1602 Geometric Topology +0707.1530 Strongly Correlated Electrons +0708.0504 +0801.0555 Pattern Formation and Solitons +0801.2575 Logic +0801.2576 +0801.2582 Metric Geometry +0801.2586 Quantum Algebra +0801.2588 Information Theory +0801.2590 Complex Variables +0801.2597 Combinatorics +0801.2600 Methodology +0801.2601 Representation Theory +0801.2606 +0801.2607 Strongly Correlated Electrons +0801.2610 Populations and Evolution +0801.2617 Superconductivity +0801.2618 Software Engineering +0801.2621 Statistical Mechanics +0801.2626 Analysis of PDEs +0801.2627 +0801.2631 +0801.2641 +0801.2645 Chemical Physics +0801.2646 Phenomenology +0801.2650 Algebraic Geometry +0801.2654 +0801.2655 Analysis of PDEs +0801.2658 Analysis of PDEs +0801.2666 Other Computer Science +0801.2669 +0801.2677 General Mathematics +0801.2678 Analysis of PDEs +0801.2679 Experiment +0801.2681 General Mathematics +0801.2683 Fluid Dynamics +0801.2686 Theory +0801.2689 Pattern Formation and Solitons +0801.2696 Strongly Correlated Electrons +0801.2698 +0801.2700 Popular Physics +0801.2701 Superconductivity +0801.2708 Populations and Evolution +0801.2720 Representation Theory +0801.2723 Representation Theory +0801.2731 Medical Physics +0801.2734 Strongly Correlated Electrons +0801.2736 Materials Science +0801.2742 Computational Physics +0801.2748 Computation +0801.2750 +0801.2753 Probability +0801.2754 Soft Condensed Matter +0801.2755 +0801.2761 +math/0701658 Dynamical Systems +quant-ph/0703190 +0704.3489 +0704.3494 Representation Theory +0706.2638 Probability +0707.2296 Number Theory +0707.4565 Computational Complexity +0708.0453 Materials Science +0708.2309 Networking and Internet Architecture +0708.3316 Mesoscale and Nanoscale Physics +0709.0894 Disordered Systems and Neural Networks +0709.1329 Materials Science +0709.3210 Mesoscale and Nanoscale Physics +0709.3453 +0710.1621 Quantum Algebra +0710.1853 Disordered Systems and Neural Networks +0710.2304 Quantum Algebra +0710.5901 Algebraic Geometry +0711.3657 Methodology +0711.3971 Atomic Physics +0712.0623 Mesoscale and Nanoscale Physics +0801.0310 +0801.1414 +0801.3311 +0801.3762 Representation Theory +0801.4281 Statistical Mechanics +0801.4705 Statistical Mechanics +0802.1396 Mesoscale and Nanoscale Physics +0802.3002 +0802.3007 Disordered Systems and Neural Networks +0803.0551 +0803.1421 Quantum Algebra +0804.1673 Analysis of PDEs +0804.2109 Operator Algebras +0804.2228 +0804.2258 +0804.2265 Geometric Topology +0804.2269 Classical Physics +0804.2273 Digital Libraries +0804.2274 Chemical Physics +0804.2277 Combinatorics +0804.2278 +0804.2282 +0804.2285 Superconductivity +0804.2297 Phenomenology +0804.2300 Group Theory +0804.2311 Functional Analysis +0804.2312 Strongly Correlated Electrons +0804.2319 Physics and Society +0804.2322 Materials Science +0804.2323 +0804.2327 +0804.2331 Combinatorics +0804.2333 Classical Analysis and ODEs +0804.2335 Representation Theory +0804.2339 +0804.2346 Discrete Mathematics +0804.2349 Cryptography and Security +0804.2352 Quantitative Methods +0804.2355 Mesoscale and Nanoscale Physics +0804.2366 +0804.2369 Other Condensed Matter +0804.2372 +0804.2384 +0804.2401 Artificial Intelligence +0804.2404 Representation Theory +0804.2413 Computation +0804.2417 +0804.2418 Other Condensed Matter +0804.2426 +0804.2428 Phenomenology +0804.2429 Computational Complexity +0804.2430 Chaotic Dynamics +0804.2446 General Physics +0804.2461 Strongly Correlated Electrons +0804.2473 Information Theory +cond-mat/0308288 Statistical Mechanics +cond-mat/0609071 Materials Science +cs/0511007 Networking and Internet Architecture +cs/0512095 Networking and Internet Architecture +cs/0604017 Networking and Internet Architecture +cs/0605007 Networking and Internet Architecture +cs/0612040 Networking and Internet Architecture +math/0203176 Probability +math/0203177 Probability +math/0206204 Combinatorics +math/0401136 Differential Geometry +math/0511290 Statistics Theory +math/0701150 Analysis of PDEs +math/0702742 Number Theory +math/0703274 Quantum Algebra +math/0703904 Combinatorics +nlin/0601065 Chaotic Dynamics +physics/0604004 Data Analysis, Statistics and Probability +quant-ph/0502107 +quant-ph/0606011 +0705.0606 Combinatorics +0707.3691 +0707.3938 +0708.2736 Materials Science +0710.0068 General Physics +0710.1210 Geophysics +0710.2980 Optics +0710.3738 Mesoscale and Nanoscale Physics +0710.4336 Soft Condensed Matter +0711.0940 Mesoscale and Nanoscale Physics +0711.4788 Statistical Mechanics +0712.2009 Disordered Systems and Neural Networks +0801.0582 +0801.4836 Mesoscale and Nanoscale Physics +0802.1631 Statistical Mechanics +0802.1713 +0802.2204 Numerical Analysis +0803.1034 +0803.2712 +0804.0012 Other Condensed Matter +0804.1140 Operator Algebras +0804.1551 Chaotic Dynamics +0804.1764 Accelerator Physics +0804.3422 Phenomenology +0805.0275 Combinatorics +0805.0542 Superconductivity +0805.0607 Operator Algebras +0805.0754 Disordered Systems and Neural Networks +0805.1313 Analysis of PDEs +0805.1389 Exactly Solvable and Integrable Systems +0805.1414 K-Theory and Homology +0805.1418 Materials Science +0805.1422 Classical Analysis and ODEs +0805.1427 Differential Geometry +0805.1434 Probability +0805.1437 Information Theory +0805.1439 Representation Theory +0805.1440 Representation Theory +0805.1441 Category Theory +0805.1445 Analysis of PDEs +0805.1454 +0805.1455 Combinatorics +0805.1458 Probability +0805.1462 Computational Physics +0805.1465 Rings and Algebras +0805.1466 General Mathematics +0805.1472 Other Condensed Matter +0805.1477 Plasma Physics +0805.1479 Combinatorics +0805.1483 Computational Physics +0805.1494 Statistical Mechanics +0805.1501 Complex Variables +0805.1508 Atmospheric and Oceanic Physics +0805.1520 Combinatorics +0805.1523 Number Theory +0805.1525 Number Theory +0805.1527 Algebraic Topology +0805.1529 Algebraic Topology +0805.1539 Metric Geometry +0805.1540 Phenomenology +0805.1541 Algebraic Geometry +0805.1547 +0805.1548 Logic +0805.1549 Combinatorics +0805.1550 Theory +0805.1553 Spectral Theory +0805.1554 Number Theory +0805.1560 Number Theory +0805.1563 Optimization and Control +0805.1569 Optimization and Control +0805.1570 Optimization and Control +0805.1571 Optimization and Control +0805.1572 Optimization and Control +0805.1574 Group Theory +0805.1575 Group Theory +0805.1576 +0805.1580 Classical Analysis and ODEs +0805.1591 +0805.1596 Spectral Theory +0805.1598 Data Structures and Algorithms +0805.1599 Optics +0805.1604 Strongly Correlated Electrons +0805.1610 General Physics +0805.1621 Complex Variables +0805.1622 Combinatorics +0805.1624 Theory +0805.1625 General Physics +0805.1626 +0805.1629 Methodology +0805.1630 +0805.1631 Probability +0805.1635 Geophysics +0805.1637 Atomic and Molecular Clusters +0805.1642 Theory +0805.1643 Materials Science +0805.1648 Soft Condensed Matter +0805.1649 Phenomenology +0805.1650 Probability +0805.1652 Soft Condensed Matter +0805.1654 Optimization and Control +0805.1660 Optimization and Control +0805.1662 Information Theory +0805.1663 Materials Science +0805.1664 Optimization and Control +0805.1669 Optimization and Control +0805.1671 Materials Science +0805.1678 Classical Analysis and ODEs +0805.1681 +0805.1683 Spectral Theory +0805.1685 Theory +0805.1686 +0805.1687 +0805.1691 Phenomenology +0805.1697 +0805.1699 Complex Variables +0805.1702 General Mathematics +0805.1710 Optimization and Control +0805.1716 Mesoscale and Nanoscale Physics +0805.1721 +0805.1722 Experiment +0805.1727 Artificial Intelligence +0805.1729 Number Theory +cond-mat/0602491 Statistical Mechanics +cond-mat/0610084 Mesoscale and Nanoscale Physics +hep-ph/0702145 Phenomenology +math-ph/0603039 +math/0603559 Probability +math/0603561 Probability +math/0608697 Probability +math/0702515 Combinatorics +physics/0609095 Data Analysis, Statistics and Probability +0707.0221 Probability +0708.0892 Mesoscale and Nanoscale Physics +0709.3547 Combinatorics +0709.4500 Data Analysis, Statistics and Probability +0711.0003 Mesoscale and Nanoscale Physics +0712.1574 Number Theory +0801.2197 +0802.1199 +0803.2401 Chaotic Dynamics +astro-ph/9708084 +math/0411641 Geometric Topology +0704.0148 Materials Science +0704.2891 Algebraic Geometry +0706.0871 Atomic Physics +0706.3612 +0707.0043 Classical Analysis and ODEs +0712.0001 Algebraic Geometry +0801.1362 Cryptography and Security +cond-mat/0507205 Statistical Mechanics +math-ph/0608056 +q-bio/0509006 Populations and Evolution +q-bio/0605039 Biomolecules +q-bio/0607010 Populations and Evolution +quant-ph/0702164 +0707.1079 +0708.0747 Combinatorics +0708.1699 +0708.2376 Differential Geometry +0710.2233 Exactly Solvable and Integrable Systems +0710.3008 Algebraic Geometry +0710.3242 Soft Condensed Matter +0711.1199 Physics and Society +0711.2899 Representation Theory +0712.3809 Soft Condensed Matter +0802.3370 Phenomenology +0803.0839 Soft Condensed Matter +0804.2039 Probability +0804.4626 Combinatorics +0805.2149 Superconductivity +0805.3992 Superconductivity +0806.3646 Neural and Evolutionary Computing +0807.0224 +0807.2182 General Physics +0807.2912 Materials Science +0807.3523 Experiment +0807.4318 Number Theory +0808.0122 General Mathematics +0808.1098 +0808.1112 Dynamical Systems +0808.1115 Theory +0808.1117 General Physics +0808.1119 Computational Complexity +0808.1125 Artificial Intelligence +0808.1128 Data Structures and Algorithms +0808.1130 Fluid Dynamics +0808.1133 Spectral Theory +0808.1135 Neurons and Cognition +0808.1136 Superconductivity +0808.1149 Probability +0808.1150 +0808.1154 Disordered Systems and Neural Networks +0808.1157 Combinatorics +0808.1162 Materials Science +0808.1173 Classical Analysis and ODEs +0808.1176 Geometric Topology +0808.1178 +0808.1185 Differential Geometry +0808.1187 Geometric Topology +0808.1188 Other Condensed Matter +0808.1190 Chemical Physics +0808.1191 Analysis of PDEs +0808.1200 Chemical Physics +0808.1204 Number Theory +0808.1205 General Physics +0808.1206 Functional Analysis +0808.1207 Networking and Internet Architecture +0808.1211 Artificial Intelligence +0808.1214 +0808.1215 Cryptography and Security +0808.1216 Number Theory +0808.1217 Metric Geometry +0808.1222 Materials Science +0808.1226 Methodology +0808.1228 Metric Geometry +0808.1232 Group Theory +0808.1236 +0808.1240 Mesoscale and Nanoscale Physics +0808.1247 Robotics +0808.1254 +0808.1255 Materials Science +0808.1270 Number Theory +0808.1273 Functional Analysis +0808.1275 Theory +0808.1276 Functional Analysis +0808.1280 +0808.1281 Symplectic Geometry +math-ph/0607049 +math/0407527 Combinatorics +math/0606590 Operator Algebras +math/0612334 Differential Geometry +quant-ph/0511226 +0708.2552 +0708.3039 Other Condensed Matter +0712.1722 Geometric Topology +0802.2938 Number Theory +0803.1408 Category Theory +0804.3171 Databases +cond-mat/0607646 Soft Condensed Matter +math/0102035 Differential Geometry +math/0401110 Differential Geometry +math/0511012 Differential Geometry +math/0604099 Algebraic Geometry +quant-ph/0306021 +0705.0376 +0708.2653 Optics +0709.2090 +0710.4207 Group Theory +0711.1701 Number Theory +0712.2739 Fluid Dynamics +0801.3607 Strongly Correlated Electrons +0803.2038 Superconductivity +0803.3141 Commutative Algebra +0804.0805 Mesoscale and Nanoscale Physics +0804.1516 Statistical Mechanics +0804.4063 +0805.1169 Optimization and Control +0805.2762 Differential Geometry +0806.0704 Disordered Systems and Neural Networks +0806.1496 Lattice +0807.1347 Number Theory +0807.1432 Geometric Topology +0808.2869 +0808.3892 Discrete Mathematics +0809.1335 Experiment +0809.1979 +0809.1986 +0809.2184 Materials Science +0809.2366 Phenomenology +0809.4485 Instrumentation and Detectors +0809.4915 Experiment +0810.0181 Experiment +0810.0501 Experiment +0810.1355 Data Structures and Algorithms +0810.1573 +0810.1696 +0810.1737 Theory +0810.1739 +0810.1740 +0810.1743 Theory +0810.1746 Classical Physics +0810.1747 Algebraic Topology +0810.1749 Biomolecules +0810.1751 Experiment +0810.1752 Biomolecules +0810.1762 +0810.1763 Plasma Physics +0810.1770 +0810.1775 Materials Science +0810.1778 Pattern Formation and Solitons +0810.1779 Differential Geometry +0810.1789 Spectral Theory +0810.1798 Fluid Dynamics +0810.1799 Geometric Topology +0810.1800 Fluid Dynamics +0810.1803 +0810.1806 Strongly Correlated Electrons +0810.1807 Number Theory +0810.1808 Information Theory +0810.1812 Strongly Correlated Electrons +0810.1814 Number Theory +0810.1815 Superconductivity +0810.1817 Complex Variables +0810.1822 Experiment +0810.1824 Probability +0810.1829 Quantum Algebra +0810.1831 Chaotic Dynamics +0810.1834 Biomolecules +0810.1846 Disordered Systems and Neural Networks +0810.1851 Computational Complexity +0810.1852 +0810.1853 Representation Theory +0810.1856 +0810.1858 Cryptography and Security +0810.1872 Phenomenology +0810.1876 Phenomenology +0810.1880 Analysis of PDEs +0810.1883 Classical Physics +0810.1886 Geometric Topology +0810.1887 +0810.1893 Probability +0810.1904 Discrete Mathematics +0810.1910 Materials Science +0810.1927 Number Theory +0810.1928 Theory +0810.1939 Optics +0810.1944 Superconductivity +0810.1945 Physics and Society +0810.1949 Other Condensed Matter +math/0112235 Operator Algebras +math/0201093 Operator Algebras +math/0405249 Quantum Algebra +math/0509254 Quantum Algebra +math/0605104 Combinatorics +math/0606108 Number Theory +math/0607284 Combinatorics +math/0702450 Probability +math/0703596 Dynamical Systems +quant-ph/0004024 +quant-ph/9706044 +quant-ph/9803029 +quant-ph/9910008 +quant-ph/9910009 +quant-ph/9910017 +quant-ph/9910038 +quant-ph/9912066 +0704.2660 Superconductivity +0706.2448 +0706.2508 Strongly Correlated Electrons +0706.3114 Probability +0706.3988 +0707.0645 Materials Science +0707.3783 Statistical Mechanics +0708.2405 +0708.2589 Geometric Topology +0709.4204 Differential Geometry +0709.4321 Mesoscale and Nanoscale Physics +0710.2456 Materials Science +0710.2931 Materials Science +0710.5905 Mesoscale and Nanoscale Physics +0711.1831 +0711.2433 Mesoscale and Nanoscale Physics +0711.3270 Mesoscale and Nanoscale Physics +0712.0625 +0712.1853 Other Condensed Matter +0801.0661 Mesoscale and Nanoscale Physics +0801.3405 Atomic Physics +0801.4138 Algebraic Geometry +0802.0549 Other Condensed Matter +0802.3850 +0802.3984 Materials Science +0802.4026 +0802.4031 Soft Condensed Matter +0802.4369 Dynamical Systems +0803.0231 General Physics +0803.4038 Mesoscale and Nanoscale Physics +0804.0404 Materials Science +0804.0851 Theory +0804.1499 +0804.2107 Phenomenology +0804.2487 Information Theory +0804.2493 Differential Geometry +0804.2496 Combinatorics +0804.2497 Analysis of PDEs +0804.2509 Strongly Correlated Electrons +0804.2512 +0804.2514 Phenomenology +0804.2515 Other Condensed Matter +0804.2518 General Physics +0804.2533 Numerical Analysis +0804.2534 Chaotic Dynamics +0804.2535 Logic in Computer Science +0804.2537 Materials Science +0804.2545 Materials Science +0804.2547 Analysis of PDEs +0804.2550 Dynamical Systems +0804.2551 Dynamical Systems +0804.2553 +0804.2558 Commutative Algebra +0804.2562 Dynamical Systems +0804.2568 +0804.2584 Combinatorics +0804.2592 Algebraic Geometry +0804.2593 Number Theory +0804.2594 Optics +0804.2614 Human-Computer Interaction +0804.2623 Superconductivity +0804.2625 Mesoscale and Nanoscale Physics +0804.2636 Materials Science +0804.2641 +0804.2646 Biomolecules +0804.2648 +0804.2651 +0804.2655 Spectral Theory +0804.2656 Logic +0804.2657 Soft Condensed Matter +0804.2661 Geometric Topology +bayes-an/9504001 Data Analysis, Statistics and Probability +cond-mat/0001223 Materials Science +cond-mat/0001228 Materials Science +cond-mat/0508370 Other Condensed Matter +cond-mat/0703068 Mesoscale and Nanoscale Physics +cond-mat/9907273 Disordered Systems and Neural Networks +gr-qc/0311030 +hep-ph/0605101 Phenomenology +math/0408390 Quantum Algebra +math/0512012 Number Theory +math/0612823 Combinatorics +math/0702887 Symplectic Geometry +quant-ph/0607127 +0705.2268 Functional Analysis +0709.2392 Materials Science +0712.2423 Number Theory +0801.0333 Phenomenology +0802.2692 Strongly Correlated Electrons +0803.0009 Soft Condensed Matter +0803.0203 Superconductivity +0804.1162 Optics +0804.1607 Distributed, Parallel, and Cluster Computing +cond-mat/0005016 Mesoscale and Nanoscale Physics +cond-mat/0005456 Statistical Mechanics +cond-mat/0105220 Mesoscale and Nanoscale Physics +cond-mat/0111057 Mesoscale and Nanoscale Physics +cond-mat/0205344 Mesoscale and Nanoscale Physics +cond-mat/0209507 Mesoscale and Nanoscale Physics +cond-mat/0302553 Mesoscale and Nanoscale Physics +cond-mat/0308117 +cond-mat/0311458 Superconductivity +cond-mat/0312053 Mesoscale and Nanoscale Physics +cond-mat/0403377 Mesoscale and Nanoscale Physics +cond-mat/0405178 Mesoscale and Nanoscale Physics +cond-mat/0405383 Mesoscale and Nanoscale Physics +cond-mat/0408187 Statistical Mechanics +cond-mat/0410059 Disordered Systems and Neural Networks +cond-mat/0411180 Mesoscale and Nanoscale Physics +cond-mat/0504382 Mesoscale and Nanoscale Physics +cond-mat/0508215 Mesoscale and Nanoscale Physics +cond-mat/0512689 Mesoscale and Nanoscale Physics +cond-mat/0602645 Mesoscale and Nanoscale Physics +cond-mat/0603317 Mesoscale and Nanoscale Physics +cond-mat/0606271 Superconductivity +cond-mat/0702287 Strongly Correlated Electrons +cond-mat/9311048 +cond-mat/9403009 +cond-mat/9406117 +cond-mat/9501130 +cond-mat/9507105 +cond-mat/9607021 +cond-mat/9607137 +cond-mat/9609132 +cond-mat/9703246 Mesoscale and Nanoscale Physics +cond-mat/9704122 +cond-mat/9709329 +cond-mat/9811124 Mesoscale and Nanoscale Physics +cond-mat/9812217 +cond-mat/9908187 Mesoscale and Nanoscale Physics +math/0610941 Combinatorics +math/0611049 Functional Analysis +math/0612021 Combinatorics +math/0701690 Rings and Algebras +math/0703866 Differential Geometry +physics/0108052 Atomic Physics +physics/0111191 Atomic Physics +physics/0503036 Data Analysis, Statistics and Probability +physics/0510198 Physics and Society +physics/0610051 Physics and Society +physics/9911020 Atomic Physics +0705.1256 +0705.2256 +0705.4626 Dynamical Systems +0706.3330 Fluid Dynamics +0707.1341 +0707.3697 +0707.4189 Superconductivity +0708.1876 Mesoscale and Nanoscale Physics +0708.2667 Strongly Correlated Electrons +0709.0316 Physics and Society +0709.0486 Atomic Physics +0709.2707 Materials Science +0709.3546 Strongly Correlated Electrons +0710.3863 Classical Analysis and ODEs +0710.4989 +0711.1073 +0712.1826 Theory +0712.2608 +0712.3689 Exactly Solvable and Integrable Systems +0802.2408 Analysis of PDEs +0802.2544 Differential Geometry +0802.2554 Group Theory +0802.2562 +0802.2564 Statistical Mechanics +0802.2565 Chaotic Dynamics +0802.2569 Phenomenology +0802.2570 Differential Geometry +0802.2574 Information Theory +0802.2575 Geometric Topology +0802.2580 Geometric Topology +0802.2587 Information Theory +0802.2591 Other Condensed Matter +0802.2592 Probability +0802.2596 Metric Geometry +0802.2597 Spectral Theory +0802.2599 Materials Science +0802.2609 +0802.2625 Classical Analysis and ODEs +0802.2629 Chaotic Dynamics +0802.2632 Differential Geometry +0802.2643 Methodology +0802.2645 Probability +0802.2650 Statistical Mechanics +0802.2654 Number Theory +0802.2656 +0802.2658 +0802.2659 +0802.2661 +0802.2662 +0802.2665 +0802.2666 Information Theory +0802.2667 Accelerator Physics +0802.2668 Discrete Mathematics +0802.2676 Statistics Theory +0802.2682 +0802.2683 Molecular Networks +0802.2684 Information Theory +0802.2687 Spectral Theory +0802.2701 Information Theory +0802.2703 Information Theory +cond-mat/0406116 Soft Condensed Matter +cond-mat/0507378 Mesoscale and Nanoscale Physics +cond-mat/0510770 Materials Science +cond-mat/0601642 Mesoscale and Nanoscale Physics +cond-mat/0703049 Mesoscale and Nanoscale Physics +cs/0612073 Information Theory +hep-ph/0601265 Phenomenology +hep-ph/9806483 Phenomenology +hep-th/0411189 Theory +hep-th/9403189 Theory +math-ph/0703041 +math/0508128 Spectral Theory +math/0606488 Probability +math/0610930 Differential Geometry +math/0611790 Commutative Algebra +physics/0504177 Biological Physics +physics/0611128 Optics +quant-ph/0207088 +quant-ph/0608228 +quant-ph/0702175 +quant-ph/0703099 +0704.2034 Algebraic Geometry +0705.2784 +0707.2293 Networking and Internet Architecture +0707.2777 Materials Science +0707.3698 Soft Condensed Matter +0707.4305 Algebraic Geometry +0708.3396 +0708.3503 Functional Analysis +0709.1859 Statistical Mechanics +0709.2906 Classical Analysis and ODEs +0709.2907 Classical Analysis and ODEs +0710.2487 +0711.0715 Quantitative Methods +0711.1423 Other Condensed Matter +0801.0955 Strongly Correlated Electrons +0801.1589 Geometric Topology +0801.4027 +0802.0024 Computational Complexity +0802.2098 Theory +0802.3260 Algebraic Geometry +0802.3526 Theory +0802.3813 +0803.0610 Information Theory +0803.1478 +0803.2574 Other Condensed Matter +0803.3452 Mesoscale and Nanoscale Physics +0804.1336 Materials Science +0804.1463 Chaotic Dynamics +0805.0107 Classical Analysis and ODEs +0805.2053 +0805.2974 +0805.3949 Statistics Theory +0805.4317 Superconductivity +0806.0729 Statistics Theory +0806.1131 +0806.1417 Analysis of PDEs +0806.3125 Strongly Correlated Electrons +0806.3537 Learning +0806.4599 Strongly Correlated Electrons +0807.0721 Biomolecules +0807.0877 Materials Science +0807.1282 Discrete Mathematics +0807.1327 Mesoscale and Nanoscale Physics +0807.1332 Materials Science +0807.1340 Strongly Correlated Electrons +0807.1343 Mesoscale and Nanoscale Physics +0807.1345 Mesoscale and Nanoscale Physics +0807.1356 Other Condensed Matter +0807.1359 Numerical Analysis +0807.1371 Theory +0807.1382 Classical Physics +0807.1386 Other Condensed Matter +0807.1388 Other Condensed Matter +0807.1393 +0807.1395 Soft Condensed Matter +0807.1396 Materials Science +0807.1398 +0807.1402 Phenomenology +0807.1404 Phenomenology +0807.1407 Operator Algebras +0807.1408 Phenomenology +0807.1411 Analysis of PDEs +0807.1412 Computational Complexity +0807.1413 Probability +0807.1418 Experiment +0807.1428 Geophysics +0807.1431 Atomic and Molecular Clusters +0807.1440 Differential Geometry +0807.1441 Materials Science +0807.1451 Combinatorics +0807.1455 Number Theory +0807.1459 Materials Science +0807.1468 Optimization and Control +0807.1470 Phenomenology +0807.1475 Computational Engineering, Finance, and Science +0807.1483 Geometric Topology +0807.1488 Representation Theory +0807.1489 +0807.1490 +0807.1491 Geometric Topology +0807.1496 Discrete Mathematics +0807.1497 Numerical Analysis +0807.1501 Phenomenology +0807.1524 Logic in Computer Science +0807.1526 Mesoscale and Nanoscale Physics +cond-mat/0109272 Soft Condensed Matter +cond-mat/0204177 Soft Condensed Matter +cond-mat/0209051 Soft Condensed Matter +cond-mat/0307130 Soft Condensed Matter +cond-mat/0407343 Soft Condensed Matter +cond-mat/0512583 Mesoscale and Nanoscale Physics +cond-mat/0612032 Statistical Mechanics +cs/0508112 Logic in Computer Science +hep-th/0610307 Theory +math/0111058 Geometric Topology +math/0412300 Dynamical Systems +math/0506012 Dynamical Systems +math/0511746 Dynamical Systems +math/0512017 Dynamical Systems +math/0610672 Algebraic Geometry +math/0612002 Algebraic Topology +math/0702387 Number Theory +physics/0701246 General Physics +0704.2769 Theory +0704.3656 Statistical Mechanics +0705.3967 +0706.3309 +0709.3411 Functional Analysis +0709.3905 Algebraic Geometry +0710.1688 Statistics Theory +0711.1716 Geometric Topology +0711.4032 +0711.4658 Materials Science +0712.3707 Geometric Topology +0801.3654 Computer Vision and Pattern Recognition +0802.2252 Superconductivity +0802.4294 Dynamical Systems +0803.0851 Statistical Mechanics +0803.1234 Phenomenology +0803.2185 Materials Science +0804.1793 Superconductivity +0804.2031 Exactly Solvable and Integrable Systems +0804.2842 Complex Variables +0804.3129 Materials Science +0805.0028 Optics +0805.1661 Data Structures and Algorithms +0805.1707 +0805.2872 Algebraic Geometry +0805.3299 Materials Science +0805.4457 Strongly Correlated Electrons +0806.2621 Strongly Correlated Electrons +0806.2727 Materials Science +0806.4964 Superconductivity +0807.0435 +0807.0772 Disordered Systems and Neural Networks +0807.1790 +0807.3376 +0808.0412 Probability +0808.0635 +0809.0550 General Mathematics +0809.1460 Genomics +0809.1843 Phenomenology +0809.3172 +0809.5017 Dynamical Systems +0810.1072 Statistical Mechanics +0810.1125 Fluid Dynamics +0810.1374 Statistics Theory +0810.3049 Optics +0810.3390 +0810.3566 Experiment +0810.3922 +0810.4062 Combinatorics +0810.4337 +0810.4338 Number Theory +0810.4339 Logic +0810.4343 Operator Algebras +0810.4345 Statistical Mechanics +0810.4348 Statistical Mechanics +0810.4355 Genomics +0810.4356 Spectral Theory +0810.4358 History and Philosophy of Physics +0810.4363 Strongly Correlated Electrons +0810.4367 +0810.4372 +0810.4373 Combinatorics +0810.4377 Dynamical Systems +0810.4378 Probability +0810.4388 +0810.4390 Materials Science +0810.4397 Pattern Formation and Solitons +0810.4404 Information Theory +0810.4413 Differential Geometry +0810.4415 Superconductivity +0810.4416 Strongly Correlated Electrons +0810.4422 Applications +0810.4427 Probability +0810.4430 Adaptation and Self-Organizing Systems +0810.4431 Human-Computer Interaction +0810.4432 Probability +0810.4433 Geometric Topology +0810.4438 Probability +0810.4442 Information Theory +0810.4451 Programming Languages +0810.4452 +0810.4454 Classical Physics +0810.4456 Statistical Mechanics +0810.4480 K-Theory and Homology +0810.4485 Probability +0810.4487 Commutative Algebra +0810.4489 Other Condensed Matter +0810.4492 +0810.4494 +0810.4496 Algebraic Geometry +0810.4504 Probability +0810.4509 Probability +0810.4510 Experiment +0810.4517 Analysis of PDEs +0810.4522 Combinatorics +0810.4523 Number Theory +0810.4525 Theory +0810.4530 Differential Geometry +0810.4532 Disordered Systems and Neural Networks +0810.4536 +cond-mat/0511509 Superconductivity +hep-th/0209001 Theory +math/0508549 Analysis of PDEs +math/0510343 Analysis of PDEs +math/0605408 Number Theory +math/0607367 Differential Geometry +0704.2712 Complex Variables +0707.1368 Classical Analysis and ODEs +0708.3114 K-Theory and Homology +0710.4334 Theory +0801.1924 Probability +0801.2802 Plasma Physics +0802.2778 +0803.3647 Combinatorics +0805.2689 Data Analysis, Statistics and Probability +0807.2688 Strongly Correlated Electrons +0809.0022 +math-ph/0308023 +math-ph/0502006 +math/0604029 Algebraic Topology +0704.0198 Strongly Correlated Electrons +0709.1514 Probability +0709.2156 Combinatorics +0712.0908 Instrumentation and Detectors +0801.4002 Mesoscale and Nanoscale Physics +0803.0901 Phenomenology +cond-mat/0404515 Other Condensed Matter +cond-mat/0606038 Statistical Mechanics +physics/0504034 Physics and Society +q-bio/0609027 Populations and Evolution +0704.1115 Experiment +0704.3825 Group Theory +0705.0933 Rings and Algebras +0705.3690 Chaotic Dynamics +0705.4432 Algebraic Geometry +0706.1325 History and Philosophy of Physics +0706.2906 Information Theory +0708.0537 Commutative Algebra +0708.2709 Statistical Mechanics +0710.2401 Atomic and Molecular Clusters +0710.2778 Strongly Correlated Electrons +0710.3762 Mesoscale and Nanoscale Physics +0711.0056 Theory +0711.0889 Other Condensed Matter +0711.1489 Chaotic Dynamics +0711.3903 +0712.1166 Mesoscale and Nanoscale Physics +0712.1543 +0712.2392 Strongly Correlated Electrons +0801.0723 Strongly Correlated Electrons +0801.3454 Disordered Systems and Neural Networks +0802.0138 Atomic and Molecular Clusters +0802.1133 Statistical Mechanics +0802.1351 Mesoscale and Nanoscale Physics +0802.2870 +0803.0988 Data Structures and Algorithms +0803.1891 Number Theory +0803.3331 Disordered Systems and Neural Networks +0803.3999 Theory +0803.4308 Operating Systems +0804.0177 Phenomenology +0804.0483 Statistical Mechanics +0804.0621 +0804.0623 +0804.0624 Geometric Topology +0804.0630 Materials Science +0804.0633 Functional Analysis +0804.0635 Information Theory +0804.0640 Combinatorics +0804.0657 Metric Geometry +0804.0659 Cryptography and Security +0804.0660 Logic in Computer Science +0804.0666 Geometric Topology +0804.0673 Logic +0804.0674 Differential Geometry +0804.0675 Other Condensed Matter +0804.0679 Statistical Mechanics +0804.0687 Group Theory +0804.0688 Materials Science +0804.0690 Differential Geometry +0804.0696 Quantitative Methods +0804.0698 +0804.0700 Optimization and Control +0804.0708 +0804.0710 +0804.0712 Superconductivity +0804.0714 +0804.0721 +0804.0724 Combinatorics +0804.0725 Algebraic Geometry +0804.0728 Differential Geometry +0804.0745 Optics +0804.0747 Data Analysis, Statistics and Probability +0804.0753 Combinatorics +0804.0754 General Physics +0804.0756 Commutative Algebra +0804.0757 Exactly Solvable and Integrable Systems +0804.0759 Neurons and Cognition +0804.0764 Optics +0804.0775 Logic +0804.0777 Algebraic Topology +0804.0779 Theory +0804.0780 Dynamical Systems +0804.0785 +0804.0787 Combinatorics +0804.0789 Theory +0804.0790 Information Theory +0804.0794 Algebraic Geometry +cond-mat/0310377 Statistical Mechanics +cond-mat/0701121 Disordered Systems and Neural Networks +cs/0701004 Computational Complexity +gr-qc/0401021 +math/0412111 Metric Geometry +math/0506410 Analysis of PDEs +math/0509552 Geometric Topology +math/0602491 Algebraic Geometry +physics/0511014 Classical Physics +quant-ph/0702181 +quant-ph/0703056 +0707.4061 Other Condensed Matter +cond-mat/0702241 Other Condensed Matter +math/0007128 Differential Geometry +math/0305124 Differential Geometry +math/0402201 Differential Geometry +math/0508428 Differential Geometry +math/0511110 Differential Geometry +math/0701556 Differential Geometry +q-bio/0703029 Cell Behavior +quant-ph/0702007 +0706.1954 General Topology +0707.2164 Materials Science +0710.3860 Complex Variables +0712.4160 Algebraic Geometry +0801.3181 General Topology +0801.4812 Populations and Evolution +0803.1947 General Topology +0803.2382 Space Physics +0804.1825 Algebraic Topology +0807.0543 +0808.2803 General Topology +0809.4731 Strongly Correlated Electrons +0810.2579 General Physics +0811.1141 +0811.4609 +0812.0624 Differential Geometry +0812.1388 Applications +0812.1883 Geometric Topology +0812.3214 Computational Complexity +0812.3493 Classical Physics +0812.4467 Populations and Evolution +0812.4575 Superconductivity +0812.4579 +0812.4583 Cell Behavior +0812.4587 +0812.4588 Operator Algebras +0812.4591 Exactly Solvable and Integrable Systems +0812.4601 Strongly Correlated Electrons +0812.4606 Number Theory +0812.4613 Statistical Mechanics +0812.4615 +0812.4617 +0812.4618 Data Analysis, Statistics and Probability +0812.4623 Other Condensed Matter +0812.4626 Algebraic Topology +0812.4629 +0812.4636 Representation Theory +0812.4646 Networking and Internet Architecture +0812.4650 Geometric Topology +0812.4652 +0812.4653 Number Theory +0812.4661 +0812.4665 Number Theory +0812.4666 Classical Analysis and ODEs +0812.4669 Statistical Mechanics +0812.4674 Data Analysis, Statistics and Probability +0812.4679 Classical Physics +0812.4680 Materials Science +0812.4682 +0812.4686 +0812.4687 Classical Analysis and ODEs +0812.4688 Algebraic Geometry +0812.4690 Functional Analysis +0812.4695 Rings and Algebras +0812.4697 Complex Variables +0812.4698 Mesoscale and Nanoscale Physics +0812.4699 Methodology +0812.4707 Cell Behavior +0812.4719 Physics and Society +0812.4720 Physics and Society +0812.4722 Strongly Correlated Electrons +0812.4726 +0812.4735 +0812.4736 Genomics +0812.4737 General Finance +0812.4744 Networking and Internet Architecture +0812.4746 Theory +0812.4749 +0812.4752 Popular Physics +0812.4755 Medical Physics +0812.4756 Classical Physics +0812.4757 Medical Physics +0812.4768 Mesoscale and Nanoscale Physics +0812.4769 Operator Algebras +0812.4770 Classical Analysis and ODEs +0812.4772 Functional Analysis +0812.4777 Geophysics +0812.4783 Representation Theory +0812.4784 Combinatorics +0812.4785 Classical Physics +0812.4786 Exactly Solvable and Integrable Systems +0812.4792 Computer Science and Game Theory +0812.4794 Pattern Formation and Solitons +0812.4799 Materials Science +0812.4803 Information Theory +0812.4808 +0812.4811 +0812.4812 Classical Physics +0812.4814 Logic in Computer Science +0812.4818 Representation Theory +0812.4819 Classical Analysis and ODEs +0812.4820 Experiment +0812.4826 Information Theory +0812.4829 Classical Analysis and ODEs +0812.4831 Combinatorics +0812.4842 Classical Physics +0812.4843 Numerical Analysis +0812.4845 Soft Condensed Matter +0812.4850 General Mathematics +0812.4857 +0812.4858 +0812.4859 +0812.4871 Algebraic Geometry +0812.4872 +0812.4880 +0812.4881 Statistics Theory +0812.4882 Applications +0812.4885 Probability +0812.4891 Theory +0812.4898 +0812.4915 +0812.4917 Phenomenology +0812.4919 Data Structures and Algorithms +0812.4920 Combinatorics +0812.4926 Pattern Formation and Solitons +0812.4927 Medical Physics +0812.4929 Symplectic Geometry +0812.4930 Medical Physics +0812.4932 History and Philosophy of Physics +0812.4934 Medical Physics +0812.4938 Geophysics +0812.4940 Materials Science +0812.4943 Phenomenology +0812.4948 Combinatorics +0812.4955 Statistical Mechanics +0812.4957 Soft Condensed Matter +0812.4958 Materials Science +0812.4962 Algebraic Geometry +0812.4963 Commutative Algebra +0812.4966 Commutative Algebra +0812.4974 Spectral Theory +0812.4977 Analysis of PDEs +0812.4982 Analysis of PDEs +0812.4983 Cryptography and Security +0812.4985 Information Theory +0812.4986 Databases +0812.4988 Algebraic Topology +0812.4989 Phenomenology +0812.4994 Number Theory +0812.4995 +0812.4996 Experiment +0812.5001 Rings and Algebras +0812.5002 Rings and Algebras +0812.5003 Rings and Algebras +0812.5005 Populations and Evolution +0812.5010 +0812.5011 +0812.5014 Materials Science +0812.5015 Functional Analysis +0812.5016 Functional Analysis +0812.5017 Functional Analysis +0812.5019 +0812.5020 Functional Analysis +0812.5021 +0812.5022 Functional Analysis +0812.5023 Representation Theory +0812.5024 Functional Analysis +0812.5025 Functional Analysis +0812.5026 Information Theory +0812.5027 History and Overview +0812.5029 Classical Physics +0812.5032 Learning +0812.5037 Phenomenology +0812.5038 Spectral Theory +0812.5042 Theory +0812.5045 Theory +0812.5051 +0812.5056 Rings and Algebras +0812.5059 Statistical Mechanics +0812.5068 Analysis of PDEs +0812.5069 +0812.5071 Statistical Mechanics +0812.5075 General Mathematics +0812.5079 Data Analysis, Statistics and Probability +0812.5082 Representation Theory +0812.5089 Metric Geometry +0812.5092 General Topology +0812.5093 Number Theory +0812.5094 Molecular Networks +0812.5099 Functional Analysis +0812.5100 Classical Analysis and ODEs +0812.5109 Disordered Systems and Neural Networks +0812.5114 Populations and Evolution +0812.5116 +math/0503631 General Topology +math/0508563 General Topology +math/0509432 General Topology +math/0512275 General Topology +math/0603290 General Topology +math/0606188 General Topology +math/0612753 General Topology +math/0703069 Geometric Topology +math/0703894 General Topology +physics/0612090 Classical Physics +physics/0612232 Classical Physics +0706.4239 Number Theory +0709.1751 Probability +0709.3258 +0709.3851 Theory +0710.4880 Phenomenology +0710.5509 Soft Condensed Matter +0711.3736 Group Theory +0801.1666 Theory +0802.0281 Operator Algebras +0803.3396 +0804.0463 +0804.1838 Differential Geometry +0804.1879 Logic in Computer Science +0804.1983 Quantum Algebra +0804.1995 Quantum Algebra +0804.2001 Quantum Algebra +0804.2002 Quantum Algebra +0804.2004 Quantum Algebra +0804.2005 Quantum Algebra +0805.0224 Theory +0805.0577 Information Theory +0805.2150 Superconductivity +0805.3583 Tissues and Organs +0806.4110 Mesoscale and Nanoscale Physics +0806.4712 Operator Algebras +0807.1649 Statistical Mechanics +0807.1807 Statistical Mechanics +0807.3470 Machine Learning +0807.3628 +0807.4190 Strongly Correlated Electrons +0807.4769 Strongly Correlated Electrons +0808.0031 Experiment +0808.0049 Operator Algebras +0808.0248 Algebraic Geometry +0808.2675 Strongly Correlated Electrons +0809.0146 Chemical Physics +0809.2185 Strongly Correlated Electrons +0809.3249 Atomic Physics +0809.3295 +0809.4599 Populations and Evolution +0810.0947 Functional Analysis +0810.4306 Phenomenology +0810.4379 +0810.4711 Cryptography and Security +0810.5375 +0811.0436 Programming Languages +0811.2055 Graphics +0811.2278 +0811.2415 Data Analysis, Statistics and Probability +0811.2421 Algebraic Geometry +0811.2424 +0811.2428 Classical Analysis and ODEs +0811.2434 Combinatorics +0811.2435 Algebraic Geometry +0811.2437 Subcellular Processes +0811.2441 Populations and Evolution +0811.2444 Phenomenology +0811.2457 Data Structures and Algorithms +0811.2459 Soft Condensed Matter +0811.2464 Data Analysis, Statistics and Probability +0811.2469 Numerical Analysis +0811.2470 Numerical Analysis +0811.2473 Numerical Analysis +0811.2476 Numerical Analysis +0811.2477 Number Theory +0811.2478 Numerical Analysis +0811.2480 Numerical Analysis +0811.2483 Materials Science +0811.2491 +0811.2493 +0811.2499 Functional Analysis +0811.2500 Materials Science +0811.2502 Mesoscale and Nanoscale Physics +0811.2505 Category Theory +0811.2507 Dynamical Systems +0811.2521 Differential Geometry +0811.2522 Algebraic Geometry +0811.2525 Information Theory +0811.2528 +0811.2535 Software Engineering +0811.2540 Strongly Correlated Electrons +0811.2541 Group Theory +0811.2544 Differential Geometry +0811.2545 Dynamical Systems +0811.2546 Data Structures and Algorithms +0811.2552 Exactly Solvable and Integrable Systems +0811.2555 Analysis of PDEs +0811.2558 +0811.2563 Distributed, Parallel, and Cluster Computing +0811.2565 +0811.2566 Atmospheric and Oceanic Physics +0811.2569 Superconductivity +0811.2570 Disordered Systems and Neural Networks +0811.2573 +0811.2574 Fluid Dynamics +0811.2578 Software Engineering +0811.2581 Differential Geometry +0811.2586 Computational Complexity +0811.2587 Exactly Solvable and Integrable Systems +0811.2590 Rings and Algebras +0811.2594 Classical Analysis and ODEs +0811.2595 Optimization and Control +0811.2601 Complex Variables +0811.2607 Other Condensed Matter +0811.2610 Logic +0811.2611 Materials Science +0811.2612 +0811.2620 Representation Theory +0811.2626 Strongly Correlated Electrons +0811.2627 Category Theory +0811.2629 Probability +0811.2634 +0811.2637 Computational Engineering, Finance, and Science +0811.2638 +0811.2642 Experiment +0811.2643 +0811.2644 +0811.2649 Statistics Theory +0811.2650 Commutative Algebra +0811.2652 +0811.2656 Metric Geometry +0811.2662 Populations and Evolution +0811.2663 +0811.2672 Strongly Correlated Electrons +0811.2675 Discrete Mathematics +0811.2678 Statistics Theory +0811.2680 +0811.2684 Category Theory +0811.2688 +0811.2689 Rings and Algebras +0811.2693 +0811.2694 Theory +0811.2697 Strongly Correlated Electrons +0811.2701 Analysis of PDEs +0811.2702 Combinatorics +0811.2704 Combinatorics +0811.2708 Functional Analysis +0811.2709 Soft Condensed Matter +0811.2710 Phenomenology +0811.2714 +0811.2715 Atomic Physics +0811.2723 Materials Science +0811.2725 Geometric Topology +0811.2733 Probability +0811.2738 General Topology +0811.2742 Chemical Physics +0811.2743 Geophysics +0811.2766 Representation Theory +0811.2768 Representation Theory +0811.2779 Metric Geometry +0811.2785 Chaotic Dynamics +cond-mat/0608021 Other Condensed Matter +cond-mat/0610868 Statistical Mechanics +cond-mat/0611554 Other Condensed Matter +math-ph/0605014 +math-ph/0610006 +math-ph/0610017 +math/0702007 Probability +math/0702325 Probability +physics/0608031 Physics and Society +0705.3454 Other Condensed Matter +0705.3597 Biomolecules +0706.2024 Quantitative Methods +0706.3538 +0707.1121 Computational Physics +0707.1533 +0707.3356 +0708.2651 Differential Geometry +0709.1149 +0709.1230 Strongly Correlated Electrons +0710.1763 +0802.1378 Mesoscale and Nanoscale Physics +0802.3822 Rings and Algebras +0802.3871 Mesoscale and Nanoscale Physics +0803.1723 Networking and Internet Architecture +0803.1756 Algebraic Geometry +0803.3107 Strongly Correlated Electrons +0804.0284 Combinatorics +0804.1245 Group Theory +0804.1351 Mesoscale and Nanoscale Physics +0804.1443 Quantitative Methods +0804.1960 Mesoscale and Nanoscale Physics +0804.2717 Statistical Mechanics +0804.4606 +0804.4659 Pattern Formation and Solitons +0805.0774 Combinatorics +0805.2091 Phenomenology +0805.4070 General Mathematics +0806.1488 Combinatorics +0806.2371 Quantum Algebra +0806.3490 Other Condensed Matter +0806.4010 Algebraic Geometry +0806.4535 Combinatorics +0806.4538 Analysis of PDEs +0807.0010 Algebraic Geometry +0807.0013 History and Philosophy of Physics +0807.0015 Data Analysis, Statistics and Probability +0807.0017 +0807.0019 Number Theory +0807.0020 Phenomenology +0807.0021 Phenomenology +0807.0024 Phenomenology +0807.0025 +0807.0026 +0807.0027 Quantum Algebra +0807.0030 Lattice +0807.0035 Complex Variables +0807.0036 +0807.0037 +0807.0045 Symplectic Geometry +0807.0052 Quantum Algebra +0807.0054 Probability +0807.0055 Instrumentation and Detectors +0807.0061 Group Theory +0807.0062 Chemical Physics +0807.0070 Software Engineering +0807.0073 Superconductivity +0807.0075 Statistical Mechanics +0807.0080 Probability +0807.0084 Biological Physics +0807.0106 Mesoscale and Nanoscale Physics +0807.0108 Chemical Physics +0807.0120 Optics +0807.0123 +0807.0124 Group Theory +0807.0126 +0807.0131 Classical Analysis and ODEs +0807.0137 +0807.0138 +0807.0140 Distributed, Parallel, and Cluster Computing +0807.0154 Complex Variables +0807.0161 Software Engineering +0807.0166 Phenomenology +0807.0168 Algebraic Topology +0807.0170 Phenomenology +0807.0171 Number Theory +0807.0172 Phenomenology +0807.0178 Exactly Solvable and Integrable Systems +0807.0182 Geometric Topology +0807.0187 Geophysics +0807.0191 Experiment +0807.0198 Phenomenology +0807.0204 Information Theory +0807.0216 +0807.0218 +0807.0219 Algebraic Geometry +0807.0222 Data Structures and Algorithms +cond-mat/0606612 Disordered Systems and Neural Networks +cond-mat/0607751 Statistical Mechanics +math/0506193 Representation Theory +math/0601217 Analysis of PDEs +math/0602127 Differential Geometry +q-bio/0702027 Quantitative Methods +0711.0609 Optimization and Control +0712.1963 +0801.3603 Strongly Correlated Electrons +0806.3936 Superconductivity +cond-mat/0106546 Superconductivity +cond-mat/0608695 Disordered Systems and Neural Networks +math/0609129 Combinatorics +math/0609143 Combinatorics +math/0611747 Probability +0704.2050 Operator Algebras +0705.1087 Chemical Physics +0707.3248 Information Theory +0708.0530 +0711.1774 Geometric Topology +0801.2804 Soft Condensed Matter +0802.1103 Applications +0802.2343 Differential Geometry +0802.2782 Theory +0803.1706 Statistical Finance +0806.0157 +0807.0958 Theory +0807.4418 Complex Variables +0809.0117 Algebraic Geometry +0809.0428 Statistical Mechanics +0809.0505 Other Condensed Matter +0809.3168 Probability +0810.0410 Optics +0810.3360 Representation Theory +0810.4085 Superconductivity +0810.5074 Phenomenology +0811.1943 Classical Physics +0811.2048 Theory +0811.2852 Phenomenology +math/0608318 Number Theory +0712.0497 +0801.3626 Algebraic Topology +0805.0486 +0805.4311 Soft Condensed Matter +0806.1708 +0806.1709 +0808.1412 Functional Analysis +0808.2581 +0808.2734 Biological Physics +0809.0874 Computers and Society +0809.3989 Superconductivity +0812.1213 Theory +0812.1825 Analysis of PDEs +hep-th/0505034 Theory +physics/0701335 Physics and Society +0707.0183 Differential Geometry +0711.3851 +0712.0428 Other Condensed Matter +0804.2488 General Physics +0806.0923 Physics and Society +math/0511505 Operator Algebras +math/0601058 Rings and Algebras +math/0601164 Analysis of PDEs +0704.2041 Algebraic Geometry +0707.4620 +0709.0086 Numerical Analysis +0710.4015 Exactly Solvable and Integrable Systems +0710.4998 Number Theory +0710.5877 Representation Theory +0711.2697 Strongly Correlated Electrons +0712.1158 Optics +0712.2033 Metric Geometry +0801.1556 Algebraic Geometry +0801.3981 Materials Science +0801.4033 Quantum Algebra +0801.4969 Optics +0802.3462 Mesoscale and Nanoscale Physics +0802.3902 Mesoscale and Nanoscale Physics +0803.1575 Logic in Computer Science +0804.3586 Dynamical Systems +0804.3725 Superconductivity +0804.4026 Superconductivity +0805.0026 Other Condensed Matter +0805.2170 Computational Complexity +0805.3755 Chaotic Dynamics +0806.0540 Mesoscale and Nanoscale Physics +0806.1277 +0806.1357 Differential Geometry +0806.3439 Statistical Mechanics +0806.4510 Information Theory +0807.2284 Superconductivity +0807.5056 Materials Science +0808.1875 +0808.2078 +0808.2547 Spectral Theory +0808.3268 +0809.0515 +0809.0519 Computer Science and Game Theory +0809.0524 Multimedia +0809.0525 Soft Condensed Matter +0809.0527 Molecular Networks +0809.0530 +0809.0532 Phenomenology +0809.0535 Algebraic Geometry +0809.0542 +0809.0549 Phenomenology +0809.0551 Combinatorics +0809.0556 Materials Science +0809.0559 Molecular Networks +0809.0563 Statistical Mechanics +0809.0566 +0809.0569 +0809.0570 Functional Analysis +0809.0573 +0809.0574 Spectral Theory +0809.0578 Materials Science +0809.0581 Geophysics +0809.0585 +0809.0587 General Physics +0809.0588 Accelerator Physics +0809.0593 Number Theory +0809.0596 +0809.0602 Operator Algebras +0809.0605 +0809.0610 Artificial Intelligence +0809.0612 Phenomenology +0809.0616 +0809.0618 Biological Physics +0809.0621 Soft Condensed Matter +0809.0635 Information Theory +0809.0636 Analysis of PDEs +0809.0637 Biomolecules +0809.0640 +0809.0641 Classical Analysis and ODEs +0809.0642 Materials Science +0809.0648 Phenomenology +0809.0653 Classical Analysis and ODEs +0809.0658 Dynamical Systems +0809.0662 Artificial Intelligence +0809.0669 Physics and Society +0809.0671 Experiment +0809.0672 Other Condensed Matter +0809.0675 Experiment +0809.0676 Cryptography and Security +0809.0680 Software Engineering +0809.0688 Probability +cond-mat/0607712 Strongly Correlated Electrons +cs/0510057 Symbolic Computation +cs/0511066 Symbolic Computation +math/0507110 Combinatorics +math/0606772 Algebraic Geometry +math/0611226 Algebraic Topology +math/0703460 Differential Geometry +0705.2636 Combinatorics +0705.4562 General Physics +0706.3759 Classical Analysis and ODEs +0712.3866 Other Condensed Matter +0712.4073 Strongly Correlated Electrons +0802.0677 Dynamical Systems +0802.1401 Dynamical Systems +0804.2901 Statistical Mechanics +0804.2967 Mesoscale and Nanoscale Physics +0804.3272 Materials Science +0805.0530 Other Quantitative Biology +0805.3605 Information Theory +0805.4543 Algebraic Geometry +0705.1477 +0705.1529 Theory +0706.3527 Mesoscale and Nanoscale Physics +0707.0031 +0707.0040 Other Condensed Matter +0707.0790 +0707.1762 Physics and Society +0707.2256 +0707.2747 Superconductivity +0708.2411 Superconductivity +0708.3172 Physics and Society +0708.4011 Biological Physics +0709.0463 Superconductivity +0709.1104 +0709.2109 +0710.5350 +0710.5395 Mesoscale and Nanoscale Physics +0711.0343 Materials Science +0711.0397 Other Condensed Matter +0711.2384 Strongly Correlated Electrons +0711.3947 +0711.4459 Group Theory +0712.1480 +0712.1518 Statistical Mechanics +0712.1531 General Physics +0712.2230 Differential Geometry +0712.2292 Phenomenology +0801.0093 +0801.1434 Strongly Correlated Electrons +0801.1465 Phenomenology +0801.4095 Strongly Correlated Electrons +0802.0851 Probability +0803.0242 Representation Theory +0803.0556 +0803.0566 Spectral Theory +0803.0585 Statistical Mechanics +0803.0588 Quantum Algebra +0803.0589 Number Theory +0803.0597 Information Theory +0803.0600 Probability +0803.0603 Pattern Formation and Solitons +0803.0611 Differential Geometry +0803.0618 Algebraic Geometry +0803.0620 +0803.0626 Dynamical Systems +0803.0629 Differential Geometry +0803.0630 Probability +0803.0632 Networking and Internet Architecture +0803.0637 +0803.0639 +0803.0642 +0803.0652 Strongly Correlated Electrons +0803.0658 Commutative Algebra +0803.0669 +0803.0673 +0803.0675 Analysis of PDEs +0803.0676 Commutative Algebra +0803.0678 Phenomenology +0803.0680 K-Theory and Homology +0803.0681 +0803.0683 Superconductivity +0803.0686 Phenomenology +0803.0697 Analysis of PDEs +0803.0700 Number Theory +0803.0701 Data Structures and Algorithms +0803.0703 Dynamical Systems +0803.0705 +0803.0707 Combinatorics +0803.0724 Dynamical Systems +0803.0725 Statistical Mechanics +0803.0729 Analysis of PDEs +0803.0730 Chemical Physics +0803.0733 Superconductivity +cond-mat/0301397 +cond-mat/0703278 Other Condensed Matter +cs/0610102 Information Theory +hep-th/0610293 Theory +math/0211289 Representation Theory +math/0408303 Quantum Algebra +math/0601216 Complex Variables +math/0602206 Quantum Algebra +math/0607110 Algebraic Topology +math/0607170 Representation Theory +math/0607630 Representation Theory +math/0609514 Statistics Theory +math/0610497 Number Theory +math/0702498 Complex Variables +physics/0509169 Atomic Physics +q-bio/0611052 Quantitative Methods +quant-ph/0511082 +quant-ph/0703170 +quant-ph/0703268 +0706.0267 Mesoscale and Nanoscale Physics +0706.3031 Combinatorics +0708.0923 Group Theory +0708.2789 Other Condensed Matter +0709.1416 Probability +0709.2442 Commutative Algebra +0709.3990 Statistical Mechanics +0711.3025 +0711.4178 Medical Physics +0711.4261 +0711.4784 Statistical Mechanics +0712.1102 Strongly Correlated Electrons +0801.2056 Other Condensed Matter +0801.2087 Strongly Correlated Electrons +0801.2982 Populations and Evolution +0801.3476 Materials Science +0803.3270 Number Theory +0804.0809 Algebraic Geometry +0804.1132 Theory +0804.3792 Phenomenology +0805.0100 +0805.2447 Operator Algebras +0805.3706 Physics and Society +0805.3712 Materials Science +0805.3721 +0805.3724 Materials Science +0805.3727 Chaotic Dynamics +0805.3732 Algebraic Geometry +0805.3739 +0805.3740 Probability +0805.3741 +0805.3743 Combinatorics +0805.3746 Analysis of PDEs +0805.3750 +0805.3751 Differential Geometry +0805.3767 Spectral Theory +0805.3772 Optimization and Control +0805.3795 Classical Analysis and ODEs +0805.3798 Methodology +0805.3800 Artificial Intelligence +0805.3802 Artificial Intelligence +0805.3808 Optimization and Control +0805.3809 Functional Analysis +0805.3811 Optimization and Control +0805.3812 General Physics +0805.3813 Group Theory +0805.3823 +0805.3825 History and Philosophy of Physics +0805.3827 Phenomenology +0805.3829 Chemical Physics +0805.3832 Spectral Theory +0805.3835 Computation +0805.3839 Algebraic Geometry +0805.3841 Cell Behavior +0805.3849 Theory +0805.3851 Populations and Evolution +0805.3853 Probability +0805.3856 Optimization and Control +0805.3859 +0805.3860 +0805.3864 Theory +0805.3865 Phenomenology +0805.3866 Experiment +0805.3878 Experiment +0805.3880 +0805.3883 Experiment +0805.3886 Physics and Society +0805.3888 Analysis of PDEs +0805.3891 +0805.3896 Differential Geometry +0805.3897 Performance +0805.3899 Commutative Algebra +0805.3906 Statistics Theory +0805.3921 Number Theory +0805.3923 Number Theory +0805.3929 Experiment +0805.3933 K-Theory and Homology +0805.3948 +0805.3950 Functional Analysis +0805.3954 Experiment +0805.3963 +0805.3982 Algebraic Geometry +0805.3997 Algebraic Geometry +0805.3998 Mesoscale and Nanoscale Physics +0805.4002 +cond-mat/0306658 Strongly Correlated Electrons +cond-mat/0509772 Strongly Correlated Electrons +cond-mat/0601541 Soft Condensed Matter +cond-mat/0611055 Soft Condensed Matter +cond-mat/0701131 Statistical Mechanics +cond-mat/0701132 Statistical Mechanics +cond-mat/0703556 Strongly Correlated Electrons +cs/0610063 Logic in Computer Science +math/0507411 Probability +math/0602091 Probability +math/0607398 Probability +math/0608604 Algebraic Geometry +math/0612862 Algebraic Geometry +math/0701920 Probability +math/0703268 Geometric Topology +physics/0703043 General Physics +0705.0723 Number Theory +0705.1040 Dynamical Systems +0705.1149 +0705.1411 +0707.0309 Neurons and Cognition +0707.0609 Physics and Society +0707.4315 +0707.4335 +0708.2710 Symplectic Geometry +0708.3079 +0708.3535 +0708.3645 +0709.0017 Statistical Mechanics +0709.1729 +0709.3779 +0710.0986 Other Condensed Matter +0710.3258 Populations and Evolution +0710.3737 Superconductivity +0710.4035 Exactly Solvable and Integrable Systems +0711.0856 Statistical Mechanics +0711.2082 Mesoscale and Nanoscale Physics +0711.2990 Classical Analysis and ODEs +0711.3802 +0711.4019 Materials Science +0712.3103 +0801.1153 Experiment +0801.1371 Probability +0801.4631 +0801.4892 Chaotic Dynamics +0802.0799 Networking and Internet Architecture +0802.1303 Combinatorics +0802.1340 Representation Theory +0802.1524 +0802.1536 +0802.1545 Rings and Algebras +0802.1554 Numerical Analysis +0802.1560 Materials Science +0802.1561 +0802.1562 +0802.1566 Materials Science +0802.1567 Information Theory +0802.1568 Number Theory +0802.1571 Combinatorics +0802.1573 History and Overview +0802.1574 Materials Science +0802.1586 Software Engineering +0802.1587 +0802.1591 Rings and Algebras +0802.1597 Analysis of PDEs +0802.1604 Computer Science and Game Theory +0802.1605 +0802.1607 Probability +0802.1608 Analysis of PDEs +0802.1612 Complex Variables +0802.1616 General Mathematics +0802.1619 Number Theory +0802.1633 +0802.1635 +0802.1636 +0802.1637 Probability +0802.1638 Dynamical Systems +0802.1640 Algebraic Geometry +0802.1641 +0802.1643 +0802.1645 Number Theory +0802.1647 +0802.1653 Pattern Formation and Solitons +0802.1654 Functional Analysis +0802.1660 +0802.1661 Cryptography and Security +0802.1673 Algebraic Geometry +0802.1677 Atomic Physics +0802.1678 Experiment +0802.1689 +0802.1691 +0802.1697 +0802.1699 Computational Complexity +0802.1707 +astro-ph/0001134 +astro-ph/0612123 +cond-mat/0111591 Superconductivity +cond-mat/0408015 Strongly Correlated Electrons +cond-mat/0503113 Strongly Correlated Electrons +cs/0605012 Artificial Intelligence +math-ph/0011009 +math/0509519 Probability +math/0601127 Number Theory +math/0604495 General Mathematics +math/0609576 K-Theory and Homology +math/0611377 General Mathematics +math/0612839 Number Theory +math/0702230 Geometric Topology +nlin/0703044 Cellular Automata and Lattice Gases +physics/0606237 Physics and Society +quant-ph/0602203 +quant-ph/0606103 +quant-ph/0611209 +quant-ph/0701170 +0704.3958 Other Condensed Matter +0705.4534 Probability +0706.1802 General Physics +0706.2004 Other Condensed Matter +0706.2044 Geometric Topology +0706.3328 +0706.3556 Superconductivity +0707.0422 Strongly Correlated Electrons +0707.2902 Materials Science +0707.3880 +0708.0058 Materials Science +0708.0424 Materials Science +0708.4253 Physics and Society +0710.0209 +0710.2419 Logic in Computer Science +0710.5670 Computation +0711.0233 +0711.0447 History and Overview +0711.3370 Mesoscale and Nanoscale Physics +0711.4634 Computers and Society +0712.0942 Superconductivity +0712.1879 Other Condensed Matter +0712.1966 Strongly Correlated Electrons +0801.0624 Atomic Physics +0801.1514 Computers and Society +0801.3116 Computers and Society +0801.3192 +0801.4611 Strongly Correlated Electrons +0802.1551 Differential Geometry +0802.2277 +0802.3966 Theory +0802.4086 Representation Theory +0803.0782 Combinatorics +0803.1170 +0803.1243 Phenomenology +0803.1659 Combinatorics +0803.1665 +0803.1673 +0803.1683 Experiment +0803.1684 +0803.1688 Fluid Dynamics +0803.1693 +0803.1694 Statistical Mechanics +0803.1695 Information Theory +0803.1702 Adaptation and Self-Organizing Systems +0803.1713 +0803.1716 Human-Computer Interaction +0803.1732 Geometric Topology +0803.1733 Information Theory +0803.1745 Chemical Physics +0803.1748 Software Engineering +0803.1749 Functional Analysis +0803.1751 Software Engineering +0803.1754 Human-Computer Interaction +0803.1759 +0803.1762 Materials Science +0803.1763 Quantum Algebra +0803.1767 +0803.1788 Analysis of PDEs +0803.1789 Materials Science +0803.1792 Other Condensed Matter +0803.1803 +0803.1804 Superconductivity +0803.1807 Information Theory +0803.1809 Theory +0803.1814 +0803.1817 +0803.1822 Superconductivity +0803.1825 Algebraic Geometry +cond-mat/0512491 Disordered Systems and Neural Networks +cond-mat/0611539 Materials Science +cond-mat/0701718 Superconductivity +cond-mat/0701719 Superconductivity +dg-ga/9712004 Differential Geometry +math/0405596 Classical Analysis and ODEs +math/0511347 Optimization and Control +math/0611126 Differential Geometry +math/0611157 Geometric Topology +math/0612742 Analysis of PDEs +0706.3674 Algebraic Geometry +0707.0416 Disordered Systems and Neural Networks +0707.2519 +0707.2713 Phenomenology +0707.4298 Computational Geometry +0709.0096 Complex Variables +0709.1412 Statistical Mechanics +0709.2789 +0710.0457 +0710.3282 Chaotic Dynamics +0710.4211 Phenomenology +0710.5313 General Physics +0711.1023 Algebraic Topology +0711.4699 Statistical Mechanics +0712.1687 Mesoscale and Nanoscale Physics +0712.3675 +0712.4158 Dynamical Systems +0801.4075 Strongly Correlated Electrons +0802.4248 +0802.4429 Mesoscale and Nanoscale Physics +0803.3879 Physics and Society +0804.2279 Strongly Correlated Electrons +0804.4059 Materials Science +0805.0443 Mesoscale and Nanoscale Physics +0805.0655 +0805.0853 Mesoscale and Nanoscale Physics +0805.3473 +0805.3776 +0806.3710 Computation and Language +0806.4151 Combinatorics +0806.4803 +0807.1839 Plasma Physics +0807.1940 Phenomenology +0807.1943 Populations and Evolution +0807.1948 General Physics +0807.1950 Physics Education +0807.1957 Popular Physics +0807.1968 Phenomenology +0807.1976 Strongly Correlated Electrons +0807.1977 Phenomenology +0807.1989 General Physics +0807.1991 General Physics +0807.1993 Numerical Analysis +0807.1999 Atomic and Molecular Clusters +0807.2012 Dynamical Systems +0807.2013 Atomic Physics +0807.2016 Algebraic Geometry +0807.2018 General Mathematics +0807.2023 Networking and Internet Architecture +0807.2025 +0807.2038 General Physics +0807.2043 Cryptography and Security +0807.2049 Cryptography and Security +0807.2052 Complex Variables +0807.2053 Cryptography and Security +0807.2062 Complex Variables +0807.2066 +0807.2069 +0807.2072 Quantum Algebra +0807.2075 Probability +0807.2078 Physics and Society +0807.2080 +0807.2081 Statistical Mechanics +0807.2082 Physics and Society +0807.2085 +0807.2089 Statistical Mechanics +0807.2090 Statistics Theory +0807.2095 Algebraic Topology +0807.2097 Data Analysis, Statistics and Probability +0807.2098 +0807.2099 Number Theory +0807.2100 Statistics Theory +0807.2107 Chaotic Dynamics +0807.2110 Probability +0807.2118 Number Theory +0807.2119 +0807.2121 Theory +0807.2122 +0807.2123 Dynamical Systems +0807.2130 Materials Science +0807.2132 Phenomenology +0807.2137 Metric Geometry +0807.2143 +0807.2150 Combinatorics +0807.2151 +0807.2154 Statistical Mechanics +0807.2157 +0807.2160 Analysis of PDEs +0807.2162 Statistics Theory +0807.2163 Combinatorics +0807.2169 Differential Geometry +0807.2178 Computational Geometry +0807.2180 Representation Theory +0807.2186 +0807.2190 +0807.2191 Algebraic Geometry +0807.2193 Analysis of PDEs +0807.2195 Geometric Topology +0807.2198 Algebraic Geometry +0807.2199 Algebraic Geometry +0807.2205 Functional Analysis +0807.2206 Functional Analysis +0807.2207 Group Theory +0807.2214 Phenomenology +0807.2215 Phenomenology +0807.2218 Computational Geometry +0807.2224 Mesoscale and Nanoscale Physics +0807.2231 Dynamical Systems +0807.2235 Phenomenology +0807.2236 Biomolecules +astro-ph/0609046 +cond-mat/0510698 Statistical Mechanics +cond-mat/0605710 Statistical Mechanics +cond-mat/0609429 Other Condensed Matter +cond-mat/0610269 Statistical Mechanics +cond-mat/0611250 Statistical Mechanics +cs/0701023 Computational Complexity +math-ph/0605032 +math/0405073 Algebraic Geometry +math/0410482 Combinatorics +math/0502025 Combinatorics +math/0607134 Functional Analysis +math/0610577 Differential Geometry +physics/0702017 Physics and Society +quant-ph/0611065 +quant-ph/0701155 +quant-ph/0703042 +quant-ph/0703131 +0704.2966 Mesoscale and Nanoscale Physics +0705.1598 Methodology +0705.3968 +0706.1438 Differential Geometry +0707.4239 Operator Algebras +0708.2688 Soft Condensed Matter +0708.3480 Differential Geometry +0709.0391 Complex Variables +0709.1246 Superconductivity +0709.2108 Data Analysis, Statistics and Probability +0710.1628 Theory +0711.3608 +0712.0393 Dynamical Systems +0712.0532 Chaotic Dynamics +0712.1119 Physics and Society +0712.2313 Soft Condensed Matter +0712.2747 Quantum Algebra +0712.3876 Data Structures and Algorithms +0801.0209 Dynamical Systems +0801.0891 Theory +0801.1166 Soft Condensed Matter +0801.2220 +0801.2323 Information Theory +0802.2154 +0802.2758 Machine Learning +0802.4187 Dynamical Systems +0803.1506 Differential Geometry +0803.1582 Statistics Theory +0804.1177 Complex Variables +0804.2935 General Mathematics +0804.3417 +0804.4087 Mesoscale and Nanoscale Physics +0804.4161 +0804.4193 Differential Geometry +0804.4195 Information Theory +0804.4198 Differential Geometry +0804.4199 +0804.4200 Differential Geometry +0804.4202 Statistics Theory +0804.4203 Differential Geometry +0804.4205 Differential Geometry +0804.4208 Differential Geometry +0804.4211 Differential Geometry +0804.4213 Materials Science +0804.4215 +0804.4225 Phenomenology +0804.4233 Algebraic Topology +0804.4234 Complex Variables +0804.4238 Chaotic Dynamics +0804.4244 Dynamical Systems +0804.4245 Combinatorics +0804.4247 Strongly Correlated Electrons +0804.4248 Classical Analysis and ODEs +0804.4252 +0804.4257 Statistical Mechanics +0804.4265 +0804.4266 Statistics Theory +0804.4268 Combinatorics +0804.4271 Materials Science +0804.4272 +0804.4273 Functional Analysis +0804.4278 +0804.4279 Applications +0804.4280 +0804.4285 Group Theory +0804.4286 Group Theory +0804.4287 Commutative Algebra +0804.4288 Experiment +0804.4289 +0804.4298 Information Theory +0804.4301 Analysis of PDEs +0804.4302 Analysis of PDEs +0804.4327 Geometric Topology +0804.4332 Superconductivity +0804.4345 +0804.4350 +0804.4355 +0804.4356 Physics and Society +0804.4359 Biomolecules +0804.4361 Methodology +0804.4364 +0804.4366 Disordered Systems and Neural Networks +0804.4375 Quantitative Methods +0804.4379 +0804.4381 +0804.4388 Analysis of PDEs +0804.4393 General Physics +0804.4395 Robotics +0804.4403 Differential Geometry +0804.4410 Combinatorics +0804.4423 Geophysics +0804.4427 Functional Analysis +0804.4434 +0804.4436 +0804.4438 Commutative Algebra +0804.4441 Probability +0804.4444 Strongly Correlated Electrons +0804.4451 Learning +0804.4453 +0804.4454 K-Theory and Homology +0804.4462 Optimization and Control +0804.4466 Information Theory +cond-mat/0605324 Statistical Mechanics +cond-mat/0605587 Statistical Mechanics +cond-mat/0701504 Statistical Mechanics +math/0510269 Algebraic Geometry +math/0511260 Rings and Algebras +math/0607141 Rings and Algebras +math/0703175 Algebraic Geometry +quant-ph/0512176 +quant-ph/0608206 +0704.1236 Algebraic Geometry +0705.0846 Strongly Correlated Electrons +0705.2328 +0705.3428 Strongly Correlated Electrons +0705.4073 +0706.3229 Algebraic Topology +0706.3310 Superconductivity +0706.4458 K-Theory and Homology +0707.1555 Strongly Correlated Electrons +0708.1927 Probability +0708.3328 Disordered Systems and Neural Networks +0708.3682 Disordered Systems and Neural Networks +0708.3703 +0709.0213 +0709.1071 Statistical Mechanics +0709.1387 History and Philosophy of Physics +0709.3574 Theory +0709.4667 +0710.0227 Optics +0710.3547 Statistical Mechanics +0710.4220 +0710.4940 Soft Condensed Matter +0711.4770 +0712.0336 Optimization and Control +0712.1507 Combinatorics +0801.0951 Mesoscale and Nanoscale Physics +0802.0822 Other Condensed Matter +0802.1456 Analysis of PDEs +0802.1514 Discrete Mathematics +0802.1690 Combinatorics +0802.1696 Combinatorics +0802.1816 +0802.1924 +0802.1925 Number Theory +0802.1931 Geophysics +0802.1942 Classical Analysis and ODEs +0802.1952 Representation Theory +0802.1955 Probability +0802.1958 General Physics +0802.1964 Algebraic Geometry +0802.1967 Fluid Dynamics +0802.1969 Materials Science +0802.1976 +0802.1977 Algebraic Geometry +0802.1979 +0802.1983 Analysis of PDEs +0802.1988 Analysis of PDEs +0802.1989 Molecular Networks +0802.1990 Algebraic Geometry +0802.1993 Strongly Correlated Electrons +0802.1995 Fluid Dynamics +0802.1997 +0802.1998 +0802.2005 +0802.2012 Strongly Correlated Electrons +0802.2015 Learning +0802.2016 Phenomenology +0802.2024 Analysis of PDEs +0802.2038 Representation Theory +0802.2044 Algebraic Topology +0802.2045 Information Theory +0802.2056 Experiment +0802.2062 Adaptation and Self-Organizing Systems +0802.2066 General Physics +0802.2067 Mesoscale and Nanoscale Physics +0802.2073 +0802.2083 Other Condensed Matter +0802.2086 Materials Science +0802.2087 Methodology +0802.2091 Superconductivity +cond-mat/0703807 Materials Science +math/0211037 Category Theory +math/0404158 Combinatorics +math/0410550 Combinatorics +math/0503210 Combinatorics +math/0602435 Differential Geometry +math/0603056 K-Theory and Homology +math/0612010 Representation Theory +math/0701165 Category Theory +math/9911207 Category Theory +nlin/0104040 Pattern Formation and Solitons +quant-ph/0701094 +quant-ph/0702133 +0710.4307 Differential Geometry +0711.1731 +0712.1946 +0803.0963 Mesoscale and Nanoscale Physics +0804.4474 +0806.2704 Operator Algebras +0808.3232 Theory +0808.3317 +0808.4160 Statistical Mechanics +0809.0267 Algebraic Geometry +0809.2929 Experiment +0809.3246 Superconductivity +0809.3423 Experiment +0809.4963 Experiment +0809.5207 Experiment +0810.0511 Phenomenology +0810.0516 Phenomenology +0810.0524 Theory +0810.0532 Multiagent Systems +0810.0617 Phenomenology +0810.0976 Soft Condensed Matter +0810.1801 Geometric Topology +0810.2789 Number Theory +0810.2793 Experiment +0810.2797 +0810.2806 +0810.2818 Dynamical Systems +0810.2819 Operator Algebras +0810.2836 Materials Science +0810.2837 Networking and Internet Architecture +0810.2839 Combinatorics +0810.2840 Algebraic Geometry +0810.2841 Phenomenology +0810.2842 Number Theory +0810.2847 Number Theory +0810.2849 Rings and Algebras +0810.2861 Artificial Intelligence +0810.2862 Analysis of PDEs +0810.2865 Computer Science and Game Theory +0810.2869 Instrumentation and Detectors +0810.2875 Phenomenology +0810.2877 Logic in Computer Science +0810.2881 Exactly Solvable and Integrable Systems +0810.2883 Combinatorics +0810.2886 Analysis of PDEs +0810.2891 Logic in Computer Science +0810.2899 +0810.2909 Instrumentation and Detectors +0810.2914 Experiment +0810.2919 Combinatorics +0810.2921 Phenomenology +0810.2924 Information Theory +0810.2926 Algebraic Geometry +0810.2928 Experiment +0810.2929 Materials Science +0810.2940 Materials Science +0810.2942 Strongly Correlated Electrons +0810.2944 Statistical Mechanics +0810.2947 Optics +0810.2948 Experiment +0810.2953 Information Theory +0810.2965 Dynamical Systems +0810.2966 Experiment +0810.2976 Soft Condensed Matter +0810.2978 Differential Geometry +0810.2980 Dynamical Systems +0810.2982 Probability +0810.2983 Numerical Analysis +0810.2986 Complex Variables +0810.2995 +cond-mat/0611494 Statistical Mechanics +cs/0604088 Mathematical Software +math/0511219 Dynamical Systems +quant-ph/0504050 +quant-ph/0604090 +0708.4155 Adaptation and Self-Organizing Systems +0709.3876 +0710.0103 Soft Condensed Matter +0710.2454 Combinatorics +0710.2906 Theory +0710.5695 Statistical Mechanics +0802.4417 Complex Variables +0804.1079 Computational Complexity +0805.0517 Computational Complexity +0805.2543 Optics +0806.0941 Mesoscale and Nanoscale Physics +0808.3263 Number Theory +cond-mat/0603712 Mesoscale and Nanoscale Physics +nlin/0611054 Adaptation and Self-Organizing Systems +0704.1692 Physics and Society +0704.3145 Geometric Topology +0707.0442 Probability +0707.4632 Spectral Theory +0708.2093 +0708.2212 Combinatorics +0709.0127 Spectral Theory +0710.2787 Quantum Algebra +0710.3401 Probability +0710.5247 Representation Theory +0711.1011 +0711.1561 Representation Theory +0801.3294 Dynamical Systems +0802.3402 Algebraic Geometry +0802.3896 +0803.1041 Algebraic Topology +0803.1158 Soft Condensed Matter +0803.1334 +0804.3142 Probability +0805.1690 +0805.3932 Mesoscale and Nanoscale Physics +0805.4831 Strongly Correlated Electrons +0806.1150 +0806.1364 Algebraic Geometry +0806.3432 Strongly Correlated Electrons +0806.4806 Superconductivity +0807.0285 Strongly Correlated Electrons +0807.0702 Fluid Dynamics +0807.4986 Superconductivity +0807.5083 Materials Science +0808.0494 +0808.1938 Optics +0808.3605 Materials Science +0809.1877 +0809.1903 Analysis of PDEs +0809.2545 Soft Condensed Matter +0809.3563 +0809.4368 +0810.0897 Analysis of PDEs +0810.1978 +0810.3029 Physics and Society +0810.3310 +0811.1083 Databases +0811.1419 Analysis of PDEs +0811.1593 Functional Analysis +0811.1938 +0811.1994 +0811.2114 Other Condensed Matter +0811.2759 History and Overview +0811.2784 +0811.2970 Number Theory +0811.2999 Strongly Correlated Electrons +0811.3002 +0811.3003 Dynamical Systems +0811.3004 Classical Analysis and ODEs +0811.3005 Classical Analysis and ODEs +0811.3007 History and Philosophy of Physics +0811.3011 Analysis of PDEs +0811.3014 +0811.3015 +0811.3016 Optimization and Control +0811.3019 Number Theory +0811.3023 Probability +0811.3024 Probability +0811.3032 +0811.3040 Biomolecules +0811.3043 Dynamical Systems +0811.3044 +0811.3048 Fluid Dynamics +0811.3055 Artificial Intelligence +0811.3059 Algebraic Geometry +0811.3060 Materials Science +0811.3061 Number Theory +0811.3062 Data Structures and Algorithms +0811.3063 Quantum Algebra +0811.3072 Operator Algebras +0811.3079 Statistical Mechanics +0811.3082 Materials Science +0811.3085 Optics +0811.3088 Materials Science +0811.3092 +0811.3094 Optimization and Control +0811.3106 +0811.3112 Exactly Solvable and Integrable Systems +0811.3115 Statistical Mechanics +0811.3118 Atmospheric and Oceanic Physics +0811.3124 Populations and Evolution +0811.3125 Operator Algebras +0811.3126 Differential Geometry +0811.3132 Number Theory +0811.3137 Digital Libraries +0811.3140 Networking and Internet Architecture +0811.3141 Other Condensed Matter +0811.3153 Algebraic Geometry +0811.3160 Algebraic Geometry +0811.3161 Computational Complexity +0811.3162 Atomic Physics +0811.3169 Algebraic Geometry +0811.3184 Subcellular Processes +0811.3185 +0811.3188 Soft Condensed Matter +0811.3190 Disordered Systems and Neural Networks +0811.3192 Algebraic Geometry +0811.3195 Algebraic Geometry +0811.3199 Dynamical Systems +0811.3201 +0811.3202 Adaptation and Self-Organizing Systems +math/0503721 Commutative Algebra +math/0506531 Geometric Topology +math/0702454 General Mathematics +physics/0502115 General Physics +physics/0702156 Data Analysis, Statistics and Probability +0704.3506 +0706.4423 Strongly Correlated Electrons +0708.2329 Other Condensed Matter +0708.3775 +0709.2089 Mesoscale and Nanoscale Physics +0709.2649 +0709.3625 Mesoscale and Nanoscale Physics +0710.3336 Disordered Systems and Neural Networks +0710.4860 Statistical Mechanics +0710.5351 Strongly Correlated Electrons +0711.2916 Other Condensed Matter +0711.3246 Soft Condensed Matter +0711.4566 Differential Geometry +0711.4633 +0712.0931 Mesoscale and Nanoscale Physics +0712.3083 Strongly Correlated Electrons +0801.1957 Theory +0801.2801 +0801.3288 +0801.3520 Physics and Society +0801.4300 Statistical Mechanics +0801.4385 +0801.4620 Other Condensed Matter +0802.0208 Analysis of PDEs +0802.0211 Algebraic Geometry +0802.0212 Software Engineering +0802.0218 Methodology +0802.0219 Methodology +0802.0225 General Physics +0802.0232 +0802.0233 +0802.0241 Classical Physics +0802.0248 Complex Variables +0802.0251 Neural and Evolutionary Computing +0802.0252 Neural and Evolutionary Computing +0802.0254 +0802.0258 Quantitative Methods +0802.0260 Discrete Mathematics +0802.0265 Differential Geometry +0802.0282 Number Theory +0802.0287 Neural and Evolutionary Computing +0802.0288 Statistical Mechanics +0802.0292 Operator Algebras +0802.0295 Differential Geometry +0802.0297 Spectral Theory +0802.0300 Differential Geometry +0802.0302 +0802.0305 Theory +0802.0307 Differential Geometry +0802.0308 Biomolecules +0802.0310 Phenomenology +0802.0312 Physics Education +0802.0315 General Physics +0802.0316 Classical Analysis and ODEs +0802.0320 Geometric Topology +0802.0323 Analysis of PDEs +0802.0330 +0802.0335 +0802.0339 Probability +0802.0342 Information Theory +0802.0344 Operator Algebras +0802.0348 Mesoscale and Nanoscale Physics +0802.0349 Probability +0802.0357 Symplectic Geometry +0802.0359 Differential Geometry +0802.0369 Algebraic Geometry +0802.0372 +0802.0373 Probability +0802.0376 +0802.0378 Analysis of PDEs +0802.0387 +0802.0389 Strongly Correlated Electrons +0802.0391 +0802.0396 Statistical Mechanics +0802.0397 Classical Analysis and ODEs +0802.0400 +0802.0401 Instrumentation and Detectors +0802.0404 +0802.0405 Group Theory +0802.0414 Optimization and Control +0802.0415 +0802.0418 +0802.0421 Physics and Society +0802.0423 Computational Complexity +0802.0425 Classical Physics +0802.0428 Classical Analysis and ODEs +0802.0433 Applications +0802.0435 Mesoscale and Nanoscale Physics +0802.0439 Complex Variables +0802.0440 Representation Theory +0802.0442 Rings and Algebras +0802.0444 Applications +0802.0445 Quantum Algebra +0802.0446 +0802.0450 Applications +0802.0451 Algebraic Geometry +0802.0457 Representation Theory +0802.0464 +0802.0466 +0802.0477 Rings and Algebras +0802.0483 Computers and Society +0802.0484 Instrumentation and Detectors +0802.0487 Information Theory +cond-mat/0609601 Mesoscale and Nanoscale Physics +cond-mat/0702135 Strongly Correlated Electrons +cs/0610054 Logic in Computer Science +math-ph/0701009 +math/0402203 Analysis of PDEs +math/0506415 History and Overview +math/0512197 Operator Algebras +math/0603649 Representation Theory +math/0605514 Dynamical Systems +math/0607397 Analysis of PDEs +math/0610282 Spectral Theory +math/0612575 Functional Analysis +math/0701021 Probability +math/0703732 Classical Analysis and ODEs +physics/0607199 Classical Physics +physics/0611096 General Physics +q-bio/0611047 Genomics +quant-ph/0609090 +0705.4589 Analysis of PDEs +0707.1842 Functional Analysis +0707.3065 Mesoscale and Nanoscale Physics +0708.0576 Chemical Physics +0709.1710 Geometric Topology +0709.2060 Spectral Theory +0710.0502 Spectral Theory +0710.0511 Symplectic Geometry +0710.4349 Algebraic Geometry +0710.5798 Other Condensed Matter +0711.4120 Functional Analysis +0711.4885 +0801.2067 Commutative Algebra +0802.1334 General Mathematics +0802.1825 +0802.2428 Learning +0802.3211 Strongly Correlated Electrons +0803.2165 +0803.4226 +0803.4355 Artificial Intelligence +0804.1616 Strongly Correlated Electrons +0804.4134 +0804.4275 Biomolecules +0805.3251 General Mathematics +0805.4357 +0806.0443 +0806.2090 Computational Geometry +0806.2700 +0806.3771 Group Theory +0807.1970 Number Theory +0807.3166 Superconductivity +0807.4916 Analysis of PDEs +0808.0185 +0808.2478 Theory +0808.2572 Theory +0808.2827 Numerical Analysis +0808.3089 +0808.3198 Mesoscale and Nanoscale Physics +0808.3312 Populations and Evolution +0809.1655 Mesoscale and Nanoscale Physics +0809.1656 Differential Geometry +0809.1659 Cryptography and Security +0809.1669 Number Theory +0809.1672 Experiment +0809.1677 Group Theory +0809.1679 +0809.1680 +0809.1686 Artificial Intelligence +0809.1689 Functional Analysis +0809.1691 Number Theory +0809.1698 Adaptation and Self-Organizing Systems +0809.1699 Algebraic Geometry +0809.1700 Geometric Topology +0809.1701 Algebraic Geometry +0809.1703 Chemical Physics +0809.1709 Combinatorics +0809.1710 Discrete Mathematics +0809.1712 Probability +0809.1715 Data Structures and Algorithms +0809.1716 Neurons and Cognition +0809.1717 Biomolecules +0809.1718 Neurons and Cognition +0809.1721 Classical Physics +0809.1735 +0809.1740 General Physics +0809.1742 Soft Condensed Matter +0809.1745 +0809.1748 Phenomenology +0809.1760 Category Theory +0809.1769 Optimization and Control +0809.1777 Methodology +0809.1784 Disordered Systems and Neural Networks +0809.1787 Combinatorics +0809.1788 History and Philosophy of Physics +0809.1789 Functional Analysis +0809.1790 Discrete Mathematics +0809.1791 Algebraic Geometry +0809.1794 Theory +0809.1795 Phenomenology +0809.1799 Strongly Correlated Electrons +0809.1800 +0809.1802 Computer Vision and Pattern Recognition +0809.1803 Experiment +0809.1805 Analysis of PDEs +0809.1808 Functional Analysis +0809.1809 Soft Condensed Matter +0809.1812 Logic in Computer Science +0809.1821 Classical Analysis and ODEs +0809.1828 Combinatorics +0809.1830 Accelerator Physics +0809.1832 Theory +0809.1834 Optimization and Control +0809.1836 Computational Complexity +0809.1840 Statistics Theory +0809.1844 Analysis of PDEs +0809.1846 Combinatorics +0809.1847 Complex Variables +0809.1849 General Physics +0809.1860 Methodology +cond-mat/0610771 Statistical Mechanics +cond-mat/0703134 Strongly Correlated Electrons +math/0607777 Geometric Topology +math/0703678 Algebraic Geometry +0704.2438 Number Theory +0705.0461 +0706.2769 Strongly Correlated Electrons +0707.2600 Mesoscale and Nanoscale Physics +0707.3633 Statistical Mechanics +0707.4130 Experiment +0708.4345 +0710.2959 Theory +0710.3950 +0710.5230 Information Theory +0712.0376 Other Condensed Matter +0712.3575 Statistical Mechanics +0712.4324 Mesoscale and Nanoscale Physics +0801.4307 Neural and Evolutionary Computing +0801.4498 Strongly Correlated Electrons +0802.1734 +0802.1894 Chemical Physics +0802.2970 +0802.3374 Mesoscale and Nanoscale Physics +0802.4042 Mesoscale and Nanoscale Physics +0802.4443 +0803.0013 Other Condensed Matter +0804.1165 Statistical Mechanics +0804.4094 Statistical Mechanics +0805.0703 Number Theory +0805.1316 +0805.1526 +0805.1619 +0805.1738 Algebraic Geometry +0805.1779 +0805.1780 History and Philosophy of Physics +0805.1854 Computer Vision and Pattern Recognition +0805.1859 Populations and Evolution +0805.2004 Phenomenology +0805.2162 +0805.2163 Strongly Correlated Electrons +0805.2171 Strongly Correlated Electrons +0805.2178 Dynamical Systems +0805.2181 +0805.2184 +0805.2185 Networking and Internet Architecture +0805.2189 Human-Computer Interaction +0805.2202 Phenomenology +0805.2223 Phenomenology +0805.2224 General Mathematics +0805.2234 Phenomenology +0805.2235 Complex Variables +0805.2236 Phenomenology +0805.2240 General Physics +0805.2241 Phenomenology +0805.2244 Materials Science +0805.2247 Phenomenology +0805.2248 Phenomenology +0805.2249 Biological Physics +0805.2267 Phenomenology +0805.2270 +0805.2272 Phenomenology +0805.2273 Experiment +0805.2274 +0805.2281 Other Condensed Matter +0805.2286 Cryptography and Security +0805.2288 Molecular Networks +0805.2295 Complex Variables +0805.2297 Theory +0805.2298 Tissues and Organs +0805.2308 Artificial Intelligence +0805.2313 Representation Theory +0805.2317 Experiment +0805.2319 +0805.2324 Computer Vision and Pattern Recognition +0805.2325 +0805.2326 +0805.2350 Experiment +0805.2354 Phenomenology +0805.2360 General Physics +0805.2362 Learning +0805.2363 Phenomenology +0805.2365 Experiment +0805.2368 Learning +0805.2375 Atmospheric and Oceanic Physics +0805.2377 Rings and Algebras +0805.2379 Information Theory +0805.2392 Lattice +hep-th/0111139 Theory +math/0004042 Quantum Algebra +math/0512344 Optimization and Control +math/0605626 Representation Theory +math/0610498 Numerical Analysis +physics/0205050 Atomic Physics +physics/0702141 Instrumentation and Detectors +0704.4002 Algebraic Topology +0706.3898 Phenomenology +0707.0223 +0707.0813 Probability +0709.0351 Phenomenology +0709.1608 Phenomenology +0709.2115 Phenomenology +0710.0346 Phenomenology +0710.2817 Phenomenology +0710.3035 Phenomenology +0710.5111 Phenomenology +0711.1601 Theory +0711.2399 Data Structures and Algorithms +0712.0327 Phenomenology +0801.2680 Phenomenology +0801.3232 Phenomenology +0801.3533 Phenomenology +0802.1527 Mesoscale and Nanoscale Physics +0802.2155 Methodology +0802.2372 Phenomenology +0802.2510 Phenomenology +0802.3775 Optics +0804.2072 Phenomenology +0804.3416 General Mathematics +0804.3833 Phenomenology +0804.4055 Phenomenology +0804.4567 Phenomenology +0805.1524 Geometric Topology +0805.3000 Phenomenology +0805.3619 Phenomenology +0806.0377 +0806.1061 +0806.1436 Symplectic Geometry +0806.1736 Phenomenology +0806.1741 Theory +0806.2233 Lattice +0806.2698 Phenomenology +0806.2900 Phenomenology +0806.3254 Phenomenology +0806.3296 Strongly Correlated Electrons +0806.4529 Phenomenology +0806.4971 Theory +0807.0317 Phenomenology +0807.0509 Phenomenology +0807.0514 Phenomenology +0807.1926 Phenomenology +0807.2020 Lattice +0807.2449 +0807.2462 +0807.2547 Statistics Theory +0807.3228 Theory +0807.3279 Phenomenology +0807.3463 Lattice +0807.3696 Theory +0807.4097 Theory +0807.4338 Theory +0807.4747 Theory +0807.4853 Statistics Theory +0808.0211 Theory +0808.0388 Disordered Systems and Neural Networks +0808.0508 Phenomenology +0808.0893 Theory +0808.0912 Theory +0808.1105 +0808.1242 Phenomenology +0808.1360 Phenomenology +0808.1368 Information Theory +0808.1859 Theory +0808.2245 Materials Science +0808.2305 Phenomenology +0808.2512 Phenomenology +0808.2909 Theory +0808.3255 +0808.3509 Phenomenology +0808.3515 +0808.3598 Phenomenology +0808.3629 Phenomenology +0808.3977 Phenomenology +0809.0425 Phenomenology +0809.0471 Phenomenology +0809.0677 +0809.0713 Phenomenology +0809.0781 Phenomenology +0809.0806 Theory +0809.1223 Phenomenology +0809.1355 Phenomenology +0809.1367 Theory +0809.1786 +0809.2208 +0809.2233 Phenomenology +0809.2422 +0809.2888 Theory +0809.3013 Theory +0809.3064 Phenomenology +0809.3382 +0809.3780 Phenomenology +0809.4327 Phenomenology +0809.4537 +0809.4939 +0810.0020 Phenomenology +0810.0306 Theory +0810.0377 Theory +0810.0718 Optimization and Control +0810.1026 Phenomenology +0810.1318 +0810.1517 +0810.2097 Theory +0810.2610 Theory +0810.3333 Phenomenology +0811.0913 +0811.1084 Operator Algebras +0811.1665 Theory +0811.2244 Theory +0811.2557 Strongly Correlated Electrons +0811.2599 Phenomenology +0811.2674 Phenomenology +0811.2778 +0811.3679 Theory +0811.3794 +0812.0641 +0812.1158 Analysis of PDEs +0812.1762 +0812.2734 Discrete Mathematics +0812.2939 Functional Analysis +0812.3181 Analysis of PDEs +0812.4093 Differential Geometry +0812.4153 Phenomenology +0812.4296 Digital Libraries +astro-ph/0006173 +astro-ph/0207109 +astro-ph/9708233 +gr-qc/0511115 +gr-qc/9606029 +gr-qc/9708061 +hep-ph/0210003 Phenomenology +hep-ph/0211144 Phenomenology +hep-ph/9605401 Phenomenology +hep-ph/9707438 Phenomenology +math/0509301 Differential Geometry +math/0601014 Algebraic Geometry +physics/0702028 Classical Physics +quant-ph/9705016 +quant-ph/9705041 +quant-ph/9708004 +quant-ph/9802067 +0705.3070 +0709.3452 Representation Theory +0709.3690 General Physics +0710.0856 Probability +0710.4455 Superconductivity +0710.5184 +0710.5364 Operator Algebras +0711.3889 +0712.1976 Statistical Mechanics +0801.1416 Symbolic Computation +0802.0271 Number Theory +0802.0878 Algebraic Geometry +0802.2198 Theory +0803.2187 Other Condensed Matter +0803.2323 +0803.4283 Superconductivity +0804.0375 Mesoscale and Nanoscale Physics +0804.1857 Disordered Systems and Neural Networks +0804.2817 Materials Science +0804.3204 Strongly Correlated Electrons +0804.3219 Mesoscale and Nanoscale Physics +0804.3250 Strongly Correlated Electrons +0805.2883 Disordered Systems and Neural Networks +0805.4272 Strongly Correlated Electrons +0805.4555 Optics +0806.0961 Analysis of PDEs +0806.3855 +0806.4907 Numerical Analysis +0806.4961 Other Condensed Matter +0807.2643 Superconductivity +0807.5071 Mesoscale and Nanoscale Physics +0808.0404 +0808.1985 Superconductivity +0808.2349 Numerical Analysis +0808.2958 Phenomenology +0808.3115 Mesoscale and Nanoscale Physics +0809.1059 +0809.2575 Mesoscale and Nanoscale Physics +0809.2931 Information Theory +0809.2936 Phenomenology +0809.2940 Phenomenology +0809.2996 Theory +0809.3009 Software Engineering +0809.3010 Cryptography and Security +0809.3011 Functional Analysis +0809.3016 Software Engineering +0809.3021 Data Analysis, Statistics and Probability +0809.3023 Category Theory +0809.3025 Analysis of PDEs +0809.3029 Theory +0809.3032 Rings and Algebras +0809.3035 Information Theory +0809.3037 Analysis of PDEs +0809.3043 Commutative Algebra +0809.3044 Robotics +0809.3051 Strongly Correlated Electrons +0809.3057 +0809.3059 +0809.3061 Operator Algebras +0809.3066 Probability +0809.3068 Algebraic Geometry +0809.3076 Number Theory +0809.3102 Geometric Topology +0809.3104 Differential Geometry +0809.3107 Geometric Topology +0809.3108 Differential Geometry +0809.3109 Geometric Topology +0809.3110 Biomolecules +0809.3111 +0809.3112 Phenomenology +0809.3114 Superconductivity +0809.3117 Combinatorics +0809.3118 Chaotic Dynamics +0809.3119 Materials Science +0809.3123 Theory +0809.3126 +0809.3127 Classical Analysis and ODEs +0809.3130 +0809.3131 Dynamical Systems +0809.3137 +0809.3138 Functional Analysis +0809.3140 Databases +0809.3143 Strongly Correlated Electrons +0809.3147 Materials Science +0809.3151 +0809.3159 Information Theory +0809.3163 Optics +0809.3169 Combinatorics +0809.3179 Robotics +0809.3180 Robotics +0809.3181 Robotics +0809.3182 Robotics +0809.3183 +0809.3184 Functional Analysis +0809.3194 Fluid Dynamics +0809.3206 Theory +0809.3212 Quantum Algebra +0809.3219 +0809.3221 Algebraic Geometry +0809.3222 Algebraic Geometry +0809.3229 +0809.3232 Data Structures and Algorithms +cond-mat/0605730 Statistical Mechanics +gr-qc/0510102 +math/0503320 Probability +math/0503321 Probability +math/0601489 Representation Theory +math/0603467 Geometric Topology +math/0608377 Representation Theory +math/0612272 Probability +math/0703702 Complex Variables +quant-ph/0207012 +quant-ph/0309219 +0705.0186 Statistical Mechanics +0705.1118 Disordered Systems and Neural Networks +0705.4274 +0707.2404 Optimization and Control +0709.0129 Analysis of PDEs +0709.3956 Mesoscale and Nanoscale Physics +0710.1622 Molecular Networks +0711.3052 Atomic and Molecular Clusters +0711.3203 Chemical Physics +0802.1295 Differential Geometry +0802.2980 Combinatorics +cs/0611076 Performance +math-ph/0609078 +math/0409434 Differential Geometry +math/0411582 Representation Theory +math/0512506 Quantum Algebra +math/0612174 Representation Theory +physics/0303100 Chemical Physics +physics/0607022 Physics and Society +physics/0703149 Atomic Physics +quant-ph/0701083 +0707.1485 Number Theory +0709.4258 Strongly Correlated Electrons +0712.1404 +0801.0222 Computational Physics +0802.2444 Other Condensed Matter +0805.0346 Statistical Mechanics +0805.2878 +0805.3335 General Physics +0806.2506 Strongly Correlated Electrons +0806.2941 Probability +0807.0367 Analysis of PDEs +0807.1695 +0808.0975 Materials Science +0808.1067 +0808.3852 Methodology +0809.3357 Cryptography and Security +0809.4424 +0809.4844 Theory +0809.4854 Phenomenology +0809.5066 Optics +0809.5068 Differential Geometry +0809.5070 Algebraic Geometry +0809.5075 Geometric Topology +0809.5078 +0809.5080 General Topology +0809.5081 +0809.5085 +0809.5087 Neural and Evolutionary Computing +0809.5088 Geometric Topology +0809.5089 Probability +0809.5102 Probability +0809.5105 +0809.5115 Algebraic Geometry +0809.5119 Mesoscale and Nanoscale Physics +0809.5126 +0809.5130 Spectral Theory +0809.5135 Soft Condensed Matter +0809.5139 +0809.5153 Numerical Analysis +0809.5154 Multimedia +0809.5159 Numerical Analysis +0809.5160 Optics +0809.5161 +0809.5162 Materials Science +0809.5164 +0809.5167 Atomic Physics +0809.5185 Algebraic Geometry +0809.5188 Networking and Internet Architecture +0809.5189 Networking and Internet Architecture +0809.5190 Analysis of PDEs +0809.5192 Networking and Internet Architecture +0809.5194 Applications +0809.5195 Biological Physics +0809.5196 Adaptation and Self-Organizing Systems +0809.5201 Applications +0809.5209 Number Theory +0809.5210 +0809.5212 Information Theory +0809.5214 Soft Condensed Matter +0809.5215 +0809.5217 Information Theory +0809.5224 Algebraic Geometry +0809.5231 Phenomenology +0809.5235 Phenomenology +0809.5238 Operating Systems +0809.5239 Soft Condensed Matter +0809.5244 Statistical Mechanics +0809.5250 Physics and Society +0809.5251 +0809.5254 Phenomenology +0809.5255 Soft Condensed Matter +0809.5265 Experiment +0809.5266 Cryptography and Security +0809.5274 Classical Analysis and ODEs +0809.5277 General Physics +0809.5281 Numerical Analysis +0809.5285 Other Condensed Matter +0809.5287 Functional Analysis +cond-mat/0408095 Superconductivity +math/0407063 Differential Geometry +math/0412056 Symplectic Geometry +math/0511015 Symplectic Geometry +math/0606081 Analysis of PDEs +0705.0311 Classical Physics +0706.0378 +0706.0902 Statistical Mechanics +0708.1063 Materials Science +0708.1486 Mesoscale and Nanoscale Physics +0709.0033 Statistical Mechanics +0710.1665 Statistical Mechanics +0710.3372 Algebraic Geometry +0712.1087 Computational Physics +0712.2218 Neurons and Cognition +0712.2280 +0801.1018 +0801.2345 Digital Libraries +0801.3371 Strongly Correlated Electrons +0802.2478 Probability +0802.4431 Representation Theory +0803.0411 Rings and Algebras +0803.0708 Mesoscale and Nanoscale Physics +0803.2444 +0803.3151 Other Condensed Matter +0805.3223 Materials Science +0807.1922 Differential Geometry +0807.2032 Lattice +0807.2149 Data Analysis, Statistics and Probability +0807.2166 Commutative Algebra +0807.2976 +0807.4226 Experiment +0807.4635 Theory +0807.4731 Optimization and Control +0807.4732 +0807.4741 +0807.4742 Materials Science +0807.4745 Group Theory +0807.4746 Metric Geometry +0807.4760 Experiment +0807.4761 Operator Algebras +0807.4772 Populations and Evolution +0807.4780 Geometric Topology +0807.4784 Molecular Networks +0807.4795 Geometric Topology +0807.4802 Algebraic Geometry +0807.4807 Optimization and Control +0807.4808 Classical Analysis and ODEs +0807.4810 Other Condensed Matter +0807.4811 +0807.4814 +0807.4817 Symplectic Geometry +0807.4818 Representation Theory +0807.4819 +0807.4820 Data Analysis, Statistics and Probability +0807.4821 Phenomenology +0807.4822 Number Theory +0807.4824 +0807.4829 Group Theory +0807.4834 Number Theory +0807.4835 Classical Analysis and ODEs +0807.4836 Logic +0807.4837 General Physics +0807.4839 Algebraic Geometry +0807.4858 Computation +0807.4859 Statistics Theory +0807.4860 Molecular Networks +0807.4862 Statistics Theory +0807.4869 Mesoscale and Nanoscale Physics +0807.4874 +0807.4879 Statistics Theory +0807.4881 Information Theory +0807.4887 Statistical Mechanics +0807.4891 Geometric Topology +0807.4894 Algebraic Topology +0807.4896 +0807.4900 Experiment +0807.4903 Physics and Society +0807.4904 Probability +0807.4912 Computers and Society +0807.4915 Optics +0807.4918 Experiment +cond-mat/0703539 Other Condensed Matter +cond-mat/0703708 Materials Science +hep-ph/0202113 Phenomenology +hep-ph/0305206 Phenomenology +hep-ph/0411101 Phenomenology +hep-ph/0501063 Phenomenology +math/0410020 Rings and Algebras +math/0608040 Category Theory +math/9911212 Analysis of PDEs +physics/0003094 Medical Physics +physics/0310151 Medical Physics +physics/0611293 Classical Physics +quant-ph/0607143 +0704.1833 Networking and Internet Architecture +0705.1448 Optics +0706.1517 Strongly Correlated Electrons +0709.0914 Mesoscale and Nanoscale Physics +0709.2008 Number Theory +0709.3691 Optics +0710.0765 +0711.0921 Materials Science +0711.2797 Theory +0711.4202 Probability +0712.2016 +0802.1511 Superconductivity +0802.2027 Computational Complexity +0802.4436 General Topology +0803.0657 Theory +0803.0790 Atomic Physics +0803.1497 Classical Analysis and ODEs +0803.2150 Commutative Algebra +0803.3021 Superconductivity +0803.3061 Neurons and Cognition +0803.3302 Theory +0803.3444 Algebraic Geometry +0803.3805 Group Theory +0803.3821 Algebraic Topology +0803.3824 Numerical Analysis +0803.3826 Classical Physics +0803.3837 Neurons and Cognition +0803.3846 Commutative Algebra +0803.3870 +0803.3880 Information Theory +0803.3896 Differential Geometry +0803.3903 +0803.3908 Algebraic Geometry +0803.3913 Probability +0803.3922 Strongly Correlated Electrons +0803.3926 Mesoscale and Nanoscale Physics +0803.3928 Mesoscale and Nanoscale Physics +0803.3935 Differential Geometry +0803.3937 +0803.3938 +0803.3939 Phenomenology +0803.3943 Differential Geometry +0803.3945 Atmospheric and Oceanic Physics +0803.3950 Fluid Dynamics +0803.3956 General Mathematics +0803.3961 Functional Analysis +0803.3979 +0803.3980 Combinatorics +0803.3981 Classical Analysis and ODEs +0803.3988 Optimization and Control +0803.3989 Materials Science +0803.3990 Biomolecules +0803.3992 Classical Analysis and ODEs +0803.3993 Classical Analysis and ODEs +0803.3996 Superconductivity +0803.3997 Complex Variables +cond-mat/0502114 Other Condensed Matter +cond-mat/0503695 Mesoscale and Nanoscale Physics +cs/0511059 Networking and Internet Architecture +cs/0608068 Networking and Internet Architecture +cs/0608069 Networking and Internet Architecture +math-ph/0703078 +math/0506489 Optimization and Control +quant-ph/0610040 +0706.0695 Theory +0707.2660 Analysis of PDEs +0710.4077 Group Theory +0712.2027 Optics +0712.2755 Classical Physics +0801.3442 Methodology +0801.4318 Strongly Correlated Electrons +0801.4356 Strongly Correlated Electrons +0802.4440 Superconductivity +0804.0682 Other Quantitative Biology +0804.3847 Optics +0805.0765 +0805.2445 Mesoscale and Nanoscale Physics +0805.4805 Rings and Algebras +0806.0391 +0806.4822 Theory +0806.4958 Information Theory +0807.0251 Mesoscale and Nanoscale Physics +0807.1036 Probability +0807.1512 Theory +0807.1520 +0807.1572 +0807.2501 +0807.3176 +0807.3516 Statistical Mechanics +0807.3655 Functional Analysis +0807.3688 Phenomenology +0807.3759 K-Theory and Homology +0807.3962 +0807.3964 Algebraic Geometry +0807.3973 Experiment +0807.3979 Programming Languages +0807.3990 Rings and Algebras +0807.3991 Number Theory +0807.3993 +0807.3996 Computers and Society +0807.3998 Atmospheric and Oceanic Physics +0807.4002 Applications +0807.4005 Applications +0807.4008 Number Theory +0807.4010 Methodology +0807.4011 Applications +0807.4012 Experiment +0807.4016 Applications +0807.4017 Spectral Theory +0807.4018 Applications +0807.4019 Applications +0807.4020 Analysis of PDEs +0807.4023 Applications +0807.4024 Applications +0807.4026 Atomic and Molecular Clusters +0807.4028 Applications +0807.4033 Mesoscale and Nanoscale Physics +0807.4038 Probability +0807.4041 Classical Analysis and ODEs +0807.4048 Experiment +0807.4051 Algebraic Geometry +0807.4057 Probability +0807.4059 +0807.4060 Theory +0807.4061 Functional Analysis +0807.4062 Physics and Society +0807.4068 Differential Geometry +0807.4070 +0807.4071 Applications +0807.4074 Information Theory +0807.4075 Physics and Society +0807.4076 Experiment +0807.4080 Phenomenology +0807.4083 General Physics +0807.4085 Algebraic Geometry +0807.4086 Methodology +0807.4088 Mesoscale and Nanoscale Physics +0807.4090 Analysis of PDEs +0807.4092 Applications +0807.4095 Phenomenology +0807.4101 Representation Theory +0807.4102 +0807.4103 Functional Analysis +0807.4105 Applications +0807.4107 +0807.4109 +0807.4111 +0807.4123 Category Theory +0807.4126 Functional Analysis +0807.4128 Information Theory +0807.4138 Geometric Topology +0807.4139 +0807.4140 General Physics +0807.4146 Operator Algebras +0807.4148 Analysis of PDEs +0807.4149 Quantum Algebra +0807.4153 Strongly Correlated Electrons +0807.4156 Strongly Correlated Electrons +0807.4157 Functional Analysis +0807.4158 +0807.4162 Algebraic Geometry +0807.4165 Algebraic Topology +0807.4170 +math-ph/0510080 +math-ph/0606062 +math/0312321 Classical Analysis and ODEs +math/0512428 Classical Analysis and ODEs +math/0512658 Algebraic Topology +math/0606090 Combinatorics +math/0607755 Spectral Theory +math/0608151 Differential Geometry +math/0612152 Geometric Topology +math/0701414 Probability +math/0701751 Group Theory +math/0702399 Differential Geometry +math/0702713 Algebraic Topology +0709.3110 Probability +0709.4575 Statistical Mechanics +0711.3000 +0711.3257 Materials Science +0802.0290 Mesoscale and Nanoscale Physics +0803.3117 Information Theory +0803.3718 Mesoscale and Nanoscale Physics +0803.4129 Dynamical Systems +0805.3742 Group Theory +math/0612071 Complex Variables +0705.2286 Populations and Evolution +0706.4353 Algebraic Geometry +0707.3341 +0708.1705 Theory +0708.4209 Theory +0709.0395 Phenomenology +0709.1053 +0709.4376 Differential Geometry +0710.0841 +0710.2616 Differential Geometry +0711.1473 +0711.1671 Theory +0711.3090 Statistical Mechanics +0712.0465 +0712.0505 Phenomenology +0712.1089 +0712.1107 +0712.3385 Theory +0712.3682 +0712.4024 Theory +0712.4248 Symbolic Computation +0801.0095 Phenomenology +0801.1754 +0801.1892 +0801.2925 Superconductivity +0801.3995 Algebraic Geometry +0801.4728 Theory +0802.0184 Exactly Solvable and Integrable Systems +0802.0479 Theory +0802.1430 Learning +0802.1655 +0802.2638 Theory +0802.3193 Phenomenology +0802.3381 Phenomenology +0802.3445 Theory +0802.3454 Theory +0802.4128 Phenomenology +0803.0409 Popular Physics +0803.4070 Phenomenology +0803.4161 Phenomenology +0803.4447 +0803.4485 Phenomenology +0804.0164 Theory +0804.0275 +0804.0372 Differential Geometry +0804.0549 Phenomenology +0804.0618 Phenomenology +0804.0974 +0804.1060 Theory +0804.1528 Phenomenology +0804.1918 Phenomenology +0804.2597 Phenomenology +0804.3210 Phenomenology +0804.3370 Materials Science +0804.4217 +0805.0123 Instrumentation and Detectors +0805.0261 Phenomenology +0805.0273 Phenomenology +0805.0656 Exactly Solvable and Integrable Systems +0805.0690 Experiment +0805.0709 Experiment +0805.1582 Adaptation and Self-Organizing Systems +0805.2819 Statistical Mechanics +0805.4387 Theory +0805.4500 +0805.4536 +0805.4725 Phenomenology +0806.0005 Superconductivity +0806.0451 Phenomenology +0806.0764 Phenomenology +0806.3810 +0807.0298 Theory +0807.0525 Phenomenology +0807.1389 Phenomenology +0807.1746 Phenomenology +0807.1966 +0807.2314 Theory +0807.2316 Experiment +0807.2775 Phenomenology +0807.2802 Instrumentation and Detectors +0807.5118 Phenomenology +0808.1989 +0808.2344 Phenomenology +0808.3082 Phenomenology +0809.0385 Optics +0809.2174 Differential Geometry +0809.2586 Materials Science +0809.3324 Superconductivity +0809.3472 Spectral Theory +0810.1242 General Physics +0810.1335 Complex Variables +0810.1667 Analysis of PDEs +0810.1791 Strongly Correlated Electrons +0810.2183 Theory +0810.2554 +0810.3300 +0810.3833 Statistical Mechanics +0810.4226 Lattice +0810.4491 Probability +0810.5373 Algebraic Geometry +0811.1210 Materials Science +0811.1475 Materials Science +0812.1129 Phenomenology +0812.1849 Differential Geometry +0812.3398 Dynamical Systems +0812.3407 Combinatorics +0812.3412 +0812.3427 Classical Analysis and ODEs +0812.3433 Rings and Algebras +0812.3434 Logic +0812.3435 Rings and Algebras +0812.3437 +0812.3443 Rings and Algebras +0812.3446 +0812.3454 Algebraic Geometry +0812.3457 +0812.3459 Mesoscale and Nanoscale Physics +0812.3470 +0812.3472 Algebraic Geometry +0812.3473 Theory +0812.3474 +0812.3475 Geometric Topology +0812.3478 Artificial Intelligence +0812.3491 +0812.3495 Experiment +0812.3499 Group Theory +0812.3503 Theory +0812.3505 Probability +0812.3518 Physics and Society +0812.3524 +0812.3527 Algebraic Geometry +0812.3533 +0812.3536 Statistics Theory +0812.3537 Analysis of PDEs +0812.3545 General Mathematics +0812.3550 Programming Languages +0812.3556 Phenomenology +0812.3559 Soft Condensed Matter +0812.3562 +0812.3580 Analysis of PDEs +0812.3589 +0812.3592 Algebraic Geometry +0812.3593 Computational Complexity +0812.3596 Operator Algebras +0812.3606 Analysis of PDEs +0812.3616 Phenomenology +0812.3621 +0812.3641 +0812.3642 Information Theory +0812.3651 Probability +astro-ph/0001251 +astro-ph/0001374 +astro-ph/0003192 +astro-ph/0003319 +cond-mat/0606657 Soft Condensed Matter +cond-mat/0703742 Statistical Mechanics +cs/0607085 Learning +gr-qc/0001063 +gr-qc/0002052 +gr-qc/0603083 +gr-qc/0612162 +gr-qc/9811049 +hep-lat/0610043 Lattice +hep-lat/0702016 Lattice +hep-ph/0409113 Phenomenology +hep-ph/0512324 Phenomenology +hep-ph/0512357 Phenomenology +hep-ph/0602165 Phenomenology +hep-th/0510268 Theory +hep-th/0511262 Theory +hep-th/0601167 Theory +hep-th/0602029 Theory +hep-th/0603020 Theory +hep-th/0603140 Theory +hep-th/0604170 Theory +hep-th/0606115 Theory +hep-th/0609130 Theory +hep-th/0609205 Theory +hep-th/0609217 Theory +hep-th/0610061 Theory +hep-th/0610182 Theory +hep-th/0610194 Theory +hep-th/0610197 Theory +hep-th/0611025 Theory +hep-th/0611066 Theory +hep-th/0611282 Theory +hep-th/0702228 Theory +hep-th/0703108 Theory +math/0610515 Probability +math/0610872 Algebraic Geometry +math/0611288 Differential Geometry +nlin/0408050 Adaptation and Self-Organizing Systems +nlin/0611008 Exactly Solvable and Integrable Systems +nlin/0612003 Exactly Solvable and Integrable Systems +nlin/0702055 Exactly Solvable and Integrable Systems +physics/0701192 Data Analysis, Statistics and Probability +quant-ph/0512228 +quant-ph/0602002 +quant-ph/0602224 +quant-ph/0603077 +quant-ph/0605091 +quant-ph/9602016 +0704.0124 Complex Variables +0709.0178 Human-Computer Interaction +0712.2030 +0801.4279 General Physics +0803.2788 +0806.3743 Rings and Algebras +0807.2572 Mesoscale and Nanoscale Physics +0807.2606 Mesoscale and Nanoscale Physics +0808.3943 Analysis of PDEs +0809.2070 Category Theory +math/0611891 Dynamical Systems +math/0702479 Spectral Theory +quant-ph/0507146 +0704.2639 Symplectic Geometry +0705.0943 Other Condensed Matter +0706.3880 Data Analysis, Statistics and Probability +0708.0090 Soft Condensed Matter +0709.0350 Geometric Topology +0710.0359 Geometric Topology +0711.1440 +0711.4588 +0801.2353 Strongly Correlated Electrons +0801.3847 +0802.1914 +0802.2797 Atomic Physics +0802.4459 Dynamical Systems +0803.4195 Mesoscale and Nanoscale Physics +0804.1582 Superconductivity +0804.2252 Superconductivity +0804.3707 Phenomenology +0804.4376 Probability +0805.1007 +0805.1238 +0806.0716 Mesoscale and Nanoscale Physics +0806.0887 +0806.1209 Superconductivity +0806.4837 +0807.2819 Probability +0807.3535 Complex Variables +0807.3761 Geometric Topology +0807.5032 +0808.0199 Instrumentation and Detectors +0808.0204 Instrumentation and Detectors +0808.0213 Analysis of PDEs +0808.0215 Optics +0808.0218 Experiment +0808.0220 Molecular Networks +0808.0221 General Physics +0808.0223 +0808.0226 Experiment +0808.0234 Information Theory +0808.0235 Information Theory +0808.0247 Cryptography and Security +0808.0250 Analysis of PDEs +0808.0251 Analysis of PDEs +0808.0252 Commutative Algebra +0808.0253 Algebraic Geometry +0808.0254 +0808.0258 Classical Analysis and ODEs +0808.0265 Rings and Algebras +0808.0273 Experiment +0808.0276 Physics and Society +0808.0285 Phenomenology +0808.0286 Classical Physics +0808.0291 Information Theory +0808.0294 Algebraic Geometry +0808.0295 +0808.0301 Functional Analysis +0808.0309 Multimedia +0808.0312 Classical Physics +0808.0316 Differential Geometry +0808.0317 Classical Analysis and ODEs +0808.0329 Materials Science +0808.0339 Medical Physics +0808.0340 Chemical Physics +0808.0345 Combinatorics +0808.0347 Software Engineering +0808.0348 Differential Geometry +0808.0352 Functional Analysis +0808.0354 +0808.0357 Combinatorics +0808.0364 Functional Analysis +0808.0369 +0808.0373 Algebraic Topology +0808.0374 Robotics +0808.0377 Group Theory +0808.0381 Algebraic Geometry +0808.0386 Geometric Topology +0808.0387 Robotics +0808.0389 +0808.0392 Experiment +0808.0393 Differential Geometry +0808.0406 Chaotic Dynamics +0808.0407 Quantum Algebra +0808.0415 Symplectic Geometry +0808.0417 +0808.0418 Number Theory +0808.0419 Materials Science +0808.0420 Materials Science +0808.0425 Probability +0808.0431 Differential Geometry +0808.0432 Chaotic Dynamics +0808.0433 Strongly Correlated Electrons +0808.0435 +0808.0444 Phenomenology +0808.0459 Algebraic Geometry +0808.0463 Mesoscale and Nanoscale Physics +0808.0473 +0808.0483 +0808.0484 +0808.0485 Functional Analysis +0808.0489 +cond-mat/0508322 Mesoscale and Nanoscale Physics +cond-mat/0607550 Mesoscale and Nanoscale Physics +cond-mat/0611277 Soft Condensed Matter +cs/0611090 Information Theory +math/0309430 Metric Geometry +math/0508141 Geometric Topology +math/0508270 Probability +math/0605587 Symplectic Geometry +math/0605753 Operator Algebras +math/0611573 Numerical Analysis +math/0612645 Numerical Analysis +math/0701580 Optimization and Control +math/0703643 Commutative Algebra +math/9907109 Combinatorics +0705.2872 General Physics +0801.0789 +0802.1711 Strongly Correlated Electrons +0804.4421 +0804.4685 Methodology +0805.0080 Materials Science +0805.2141 Phenomenology +0806.3884 +0807.0839 Probability +math/0506313 Category Theory +math/0512106 Category Theory +math/0606240 Complex Variables +math/0702274 Group Theory +0706.3750 Combinatorics +0707.1473 Functional Analysis +0709.0225 Populations and Evolution +0711.0272 Theory +0711.4779 +0712.2256 Other Condensed Matter +0801.1798 Populations and Evolution +0801.4394 Statistical Mechanics +0803.0044 Mesoscale and Nanoscale Physics +0803.3991 Statistics Theory +0804.1119 K-Theory and Homology +0806.0691 Cell Behavior +0807.0122 Populations and Evolution +0808.0469 Number Theory +cond-mat/9503015 +0704.0872 Spectral Theory +0707.1195 Strongly Correlated Electrons +0707.3811 Genomics +0709.1757 Differential Geometry +0709.2890 Populations and Evolution +0710.0296 Representation Theory +0710.3371 Biological Physics +0710.3947 Differential Geometry +0711.3125 +0712.1375 Probability +0801.1717 General Topology +0801.2274 Algebraic Geometry +0801.2639 +0801.2775 Phenomenology +0801.2776 Algebraic Geometry +0801.2777 +0801.2784 Lattice +0801.2789 Quantum Algebra +0801.2790 Methodology +0801.2796 Number Theory +0801.2807 Computational Physics +0801.2816 Atomic Physics +0801.2817 Atomic Physics +0801.2819 Superconductivity +0801.2820 +0801.2822 Differential Geometry +0801.2823 Other Computer Science +0801.2828 Algebraic Geometry +0801.2834 Algebraic Geometry +0801.2835 Algebraic Geometry +0801.2839 +0801.2845 Combinatorics +0801.2846 Algebraic Geometry +0801.2854 Medical Physics +0801.2855 Populations and Evolution +0801.2858 Statistical Mechanics +0801.2859 +0801.2879 +0801.2881 General Physics +0801.2882 +0801.2884 +0801.2887 Rings and Algebras +0801.2888 Analysis of PDEs +0801.2897 Geophysics +0801.2901 Quantum Algebra +0801.2906 +0801.2919 +0801.2920 Biological Physics +0801.2930 +0801.2931 Computer Science and Game Theory +0801.2933 +0801.2938 +0801.2939 Combinatorics +0801.2942 Classical Analysis and ODEs +0801.2945 Dynamical Systems +0801.2946 Popular Physics +0801.2953 Dynamical Systems +0801.2954 Geophysics +0801.2955 Group Theory +0801.2957 Analysis of PDEs +0801.2958 Dynamical Systems +0801.2959 Probability +cond-mat/0610719 Mesoscale and Nanoscale Physics +cond-mat/0611490 Statistical Mechanics +math/0605760 Complex Variables +math/0611700 Number Theory +math/0701168 Number Theory +physics/0506124 General Physics +0704.2267 Materials Science +0705.0120 Exactly Solvable and Integrable Systems +0705.2625 Differential Geometry +0705.3823 Algebraic Geometry +0705.3995 Information Theory +0706.0921 Probability +0707.2088 Other Condensed Matter +0707.2789 Strongly Correlated Electrons +0710.2698 +0710.3535 Hardware Architecture +0711.0261 Information Theory +0711.0370 +0711.0829 Programming Languages +0711.0995 +0711.2243 Statistical Mechanics +0711.2878 Disordered Systems and Neural Networks +0711.3627 Other Condensed Matter +0712.0936 Superconductivity +0712.1885 Mesoscale and Nanoscale Physics +0712.3875 Commutative Algebra +0801.0241 Optics +0801.1969 Differential Geometry +0801.2226 Programming Languages +0801.3563 Disordered Systems and Neural Networks +0802.2518 Atomic Physics +0802.4070 +0803.1544 Accelerator Physics +0803.2049 Mesoscale and Nanoscale Physics +0804.0542 Classical Analysis and ODEs +0804.0797 Software Engineering +0804.0814 Instrumentation and Detectors +0804.0818 +0804.0823 Group Theory +0804.0828 +0804.0829 Dynamical Systems +0804.0834 Number Theory +0804.0837 Differential Geometry +0804.0838 Neurons and Cognition +0804.0845 Functional Analysis +0804.0847 Theory +0804.0860 Dynamical Systems +0804.0862 Distributed, Parallel, and Cluster Computing +0804.0868 Materials Science +0804.0874 +0804.0877 General Physics +0804.0883 Superconductivity +0804.0884 +0804.0889 Probability +0804.0891 +0804.0893 Soft Condensed Matter +0804.0905 Analysis of PDEs +0804.0919 General Mathematics +0804.0926 Phenomenology +0804.0927 Geometric Topology +0804.0929 Materials Science +0804.0930 Dynamical Systems +0804.0932 Functional Analysis +0804.0934 Optimization and Control +0804.0936 Data Structures and Algorithms +0804.0937 Human-Computer Interaction +0804.0938 Analysis of PDEs +0804.0940 Data Structures and Algorithms +0804.0941 Human-Computer Interaction +0804.0942 Computational Geometry +0804.0943 Human-Computer Interaction +0804.0946 Computational Geometry +0804.0949 Phenomenology +0804.0950 Atomic Physics +0804.0958 Strongly Correlated Electrons +0804.0960 Algebraic Geometry +0804.0961 Probability +0804.0962 +0804.0964 Commutative Algebra +0804.0978 Rings and Algebras +0804.0980 Information Theory +0804.0981 Plasma Physics +0804.0985 Other Condensed Matter +0804.0986 Computational Geometry +0804.0988 Analysis of PDEs +0804.1003 +0804.1006 +0804.1008 Algebraic Geometry +0804.1015 Rings and Algebras +0804.1018 Analysis of PDEs +0804.1023 Algebraic Geometry +0804.1028 Classical Analysis and ODEs +0804.1029 +0804.1041 Computational Geometry +0804.1063 +0804.1065 Spectral Theory +0804.1067 Symplectic Geometry +0804.1076 Spectral Theory +0804.1083 Information Theory +0804.1088 +0804.1094 Analysis of PDEs +0804.1095 Combinatorics +0804.1099 Phenomenology +0804.1109 +0804.1111 +0804.1115 Data Structures and Algorithms +0804.1116 Populations and Evolution +0804.1117 Information Theory +astro-ph/0409027 +cond-mat/0403769 Statistical Mechanics +math/0603086 Combinatorics +math/0609269 Operator Algebras +math/0701287 Analysis of PDEs +nucl-ex/0612004 +physics/0610117 Biological Physics +physics/0610147 Biological Physics +physics/0703022 Biological Physics +0705.0984 Combinatorics +0705.1542 Computational Physics +0705.3006 Rings and Algebras +0707.4064 Physics and Society +0708.2476 Materials Science +0709.4464 Computational Engineering, Finance, and Science +0710.1935 +0712.3683 Lattice +0801.3802 Computational Complexity +0801.4704 Geometric Topology +0802.1093 Atomic Physics +0802.1471 Data Structures and Algorithms +0802.2178 Physics and Society +0802.4223 Quantum Algebra +0803.0476 Physics and Society +0803.0559 Other Condensed Matter +0803.3054 +0803.3250 Superconductivity +0804.3415 Mesoscale and Nanoscale Physics +0804.3724 Differential Geometry +0805.2778 Category Theory +0805.4428 Chemical Physics +0805.4823 Analysis of PDEs +0806.0229 Mesoscale and Nanoscale Physics +0807.0012 +0807.1071 Strongly Correlated Electrons +0807.1748 +0807.4229 Discrete Mathematics +0808.2255 Classical Analysis and ODEs +0808.2580 Strongly Correlated Electrons +0808.3125 +0809.1714 +0809.3218 +0810.2214 Combinatorics +0810.2838 +0810.5102 Atomic Physics +0811.0872 +0811.3992 Atomic Physics +0811.4431 General Physics +0811.4435 Number Theory +0811.4438 Dynamical Systems +0811.4440 Functional Analysis +0811.4446 Plasma Physics +0811.4447 Applications +0811.4452 Exactly Solvable and Integrable Systems +0811.4455 Probability +0811.4462 Representation Theory +0811.4463 Methodology +0811.4469 Optics +0811.4476 Strongly Correlated Electrons +0811.4481 +0811.4482 Statistical Mechanics +0811.4483 Multimedia +0811.4486 Analysis of PDEs +0811.4490 +0811.4494 Optics +0811.4501 Theory +0811.4507 Probability +0811.4529 +0811.4530 Phenomenology +0811.4535 Optics +0811.4538 Numerical Analysis +0811.4544 Materials Science +0811.4545 Number Theory +0811.4546 Phenomenology +0811.4547 Materials Science +0811.4548 +0811.4552 Commutative Algebra +0811.4561 Superconductivity +0811.4571 Phenomenology +0811.4572 Rings and Algebras +0811.4573 +0811.4576 Classical Analysis and ODEs +0811.4578 Soft Condensed Matter +0811.4581 Biomolecules +0811.4591 Materials Science +0811.4600 Atmospheric and Oceanic Physics +0811.4601 Probability +0811.4626 Representation Theory +0811.4627 Commutative Algebra +0811.4630 Information Theory +0811.4631 General Physics +0811.4632 K-Theory and Homology +0811.4636 Classical Analysis and ODEs +0811.4640 Atmospheric and Oceanic Physics +0811.4641 Classical Analysis and ODEs +0811.4645 +0811.4646 +0811.4648 +0811.4649 Other Condensed Matter +0811.4650 +0811.4651 +0811.4653 +0811.4654 +0811.4655 +0811.4656 Phenomenology +0811.4658 +0811.4662 +0811.4666 Commutative Algebra +0811.4669 Exactly Solvable and Integrable Systems +0811.4672 Data Structures and Algorithms +0811.4675 Superconductivity +0811.4677 Statistics Theory +0811.4681 Graphics +0811.4685 Functional Analysis +0811.4688 Experiment +0811.4690 K-Theory and Homology +0811.4697 Information Theory +0811.4700 Multimedia +0811.4702 Information Theory +0811.4704 Category Theory +0811.4709 Materials Science +0811.4712 Quantum Algebra +0811.4714 Analysis of PDEs +0811.4717 Information Retrieval +0811.4718 Information Theory +0811.4720 Logic in Computer Science +0811.4724 Optimization and Control +0811.4728 Algebraic Geometry +0811.4730 Plasma Physics +0811.4733 Robotics +0811.4761 +0811.4762 Rings and Algebras +0811.4771 Mesoscale and Nanoscale Physics +astro-ph/0001511 +astro-ph/0005059 +astro-ph/9804316 +astro-ph/9808163 +astro-ph/9809167 +astro-ph/9904346 +astro-ph/9904408 +math-ph/0701033 +math/0011058 Differential Geometry +math/0606477 Combinatorics +math/0608188 Commutative Algebra +math/0612262 Functional Analysis +math/0612642 Geometric Topology +physics/0201012 Physics and Society +physics/0612025 Physics and Society +0706.3729 Logic +0706.4299 Differential Geometry +0707.1444 General Mathematics +0709.3184 Probability +0709.4513 Information Theory +0711.3830 Statistical Mechanics +0712.2145 +0712.3189 Statistical Mechanics +0801.2833 Chaotic Dynamics +0801.4094 Statistical Mechanics +0802.0358 +0802.0958 Strongly Correlated Electrons +0802.2555 Atomic Physics +0802.3204 Disordered Systems and Neural Networks +0803.1321 Data Structures and Algorithms +0804.1195 Materials Science +0804.3183 Theory +0804.3189 General Mathematics +0804.3769 Algebraic Geometry +0805.0146 +0805.0149 Learning +0805.0154 Information Theory +0805.0158 Functional Analysis +0805.0164 Superconductivity +0805.0168 +0805.0173 Information Theory +0805.0185 +0805.0192 Digital Libraries +0805.0194 Probability +0805.0197 Disordered Systems and Neural Networks +0805.0205 Analysis of PDEs +0805.0209 Functional Analysis +0805.0214 Superconductivity +0805.0217 +0805.0221 Materials Science +0805.0226 Soft Condensed Matter +0805.0230 General Physics +0805.0247 Atomic Physics +0805.0248 Instrumentation and Detectors +0805.0254 Optics +0805.0256 Number Theory +0805.0260 Other Condensed Matter +0805.0268 Cryptography and Security +0805.0270 Statistical Mechanics +0805.0272 Information Theory +0805.0280 Materials Science +0805.0292 General Mathematics +0805.0294 Probability +0805.0297 Probability +0805.0299 +0805.0303 Phenomenology +0805.0304 +cond-mat/0106500 Statistical Mechanics +cond-mat/0309167 +cond-mat/0501089 Statistical Mechanics +cond-mat/0503223 Statistical Mechanics +cond-mat/0504457 Statistical Mechanics +cond-mat/0507618 Statistical Mechanics +cond-mat/0604508 Materials Science +cond-mat/0605667 Statistical Mechanics +cond-mat/0605668 Statistical Mechanics +cond-mat/0606040 Statistical Mechanics +cond-mat/0609074 Statistical Mechanics +cs/0604101 Symbolic Computation +cs/0606022 Information Theory +cs/0606121 Information Theory +math/0312030 Algebraic Geometry +math/0401067 Combinatorics +math/0405334 Combinatorics +math/0501266 Combinatorics +math/0504018 Combinatorics +math/0509322 Probability +math/0603182 Differential Geometry +math/0603617 Combinatorics +math/0604380 Numerical Analysis +math/0701171 Combinatorics +nucl-th/0612013 +0704.2258 Information Theory +0708.0616 Statistical Mechanics +0708.1632 Soft Condensed Matter +0708.2858 Statistical Mechanics +0711.4610 Statistical Mechanics +0711.4749 Differential Geometry +0801.3088 Numerical Analysis +0804.1044 Complex Variables +0807.2689 Combinatorics +0807.3644 Numerical Analysis +nlin/0608050 Pattern Formation and Solitons +physics/0611100 General Physics +0704.3355 Rings and Algebras +0705.3921 +0706.1519 Statistical Mechanics +0708.2724 Biological Physics +0709.0112 Probability +0709.0346 Biomolecules +0709.3507 Phenomenology +0710.0226 General Physics +0710.2689 Mesoscale and Nanoscale Physics +0710.4325 Mesoscale and Nanoscale Physics +0710.4570 Soft Condensed Matter +0710.4580 Soft Condensed Matter +0711.0796 Tissues and Organs +0711.2341 +0711.2771 Functional Analysis +0711.4539 Chaotic Dynamics +0712.1686 Probability +0712.3410 Probability +0712.3414 Probability +0712.3415 Probability +0712.3420 Probability +0712.3424 Probability +0712.3432 Statistics Theory +0712.3468 Probability +0712.3769 +0712.4236 Analysis of PDEs +0712.4269 Theory +0712.4403 Theory +0801.0004 Differential Geometry +0801.0008 Differential Geometry +0801.0009 Statistical Mechanics +0801.0010 Category Theory +0801.0027 Disordered Systems and Neural Networks +0801.0029 Mesoscale and Nanoscale Physics +0801.0030 Number Theory +0801.0044 +0801.0047 Phenomenology +0801.0053 Chemical Physics +0801.0062 Strongly Correlated Electrons +0801.0063 Algebraic Topology +0801.0065 Classical Analysis and ODEs +0801.0066 Disordered Systems and Neural Networks +0801.0069 Quantum Algebra +0801.0074 Functional Analysis +0801.0076 Dynamical Systems +0801.0077 Geometric Topology +0801.0079 Statistics Theory +0801.0081 Functional Analysis +0801.0097 Materials Science +0801.0098 Materials Science +0801.0102 Information Theory +0801.0103 Differential Geometry +0801.0105 Materials Science +0801.0121 Physics and Society +0801.0124 Populations and Evolution +0801.0128 +0801.0131 Databases +0801.0133 Programming Languages +0801.0135 Programming Languages +0801.0136 Programming Languages +0801.0138 Atomic Physics +0801.0139 Databases +0801.0140 Pattern Formation and Solitons +0801.0142 Probability +0801.0145 Materials Science +0801.0147 +0801.0153 Differential Geometry +0801.0154 +0801.0156 Mesoscale and Nanoscale Physics +0801.0158 Statistics Theory +0801.0159 Discrete Mathematics +0801.0165 Geometric Topology +0801.0167 +0801.0169 +0801.0170 General Topology +0801.0171 Superconductivity +0801.0173 Algebraic Geometry +0801.0175 Differential Geometry +0801.0178 Statistical Mechanics +0801.0184 Optimization and Control +0801.0187 Materials Science +0801.0196 Probability +0801.0199 Category Theory +0801.0202 Combinatorics +0801.0204 +0801.0207 Applications +0801.0211 +0801.0212 +0801.0213 Classical Analysis and ODEs +0801.0214 Chaotic Dynamics +0801.0224 Lattice +0801.0234 Theory +0801.0235 Theory +0801.0239 Statistical Mechanics +0801.0242 Statistical Mechanics +0801.0250 Neurons and Cognition +0801.0260 +0801.0262 Lattice +0801.0264 +0801.0270 Combinatorics +0801.0277 Other Quantitative Biology +0801.0281 Optimization and Control +0801.0284 Differential Geometry +0801.0285 Differential Geometry +0801.0289 Logic +0801.0295 Atomic Physics +0801.0299 Statistical Mechanics +0801.0304 Theory +0801.0308 History and Philosophy of Physics +0801.0311 Neurons and Cognition +0801.0313 Functional Analysis +0801.0318 Experiment +0801.0320 General Physics +0801.0326 General Physics +0801.0327 Methodology +0801.0330 Probability +0801.0332 Algebraic Topology +0801.0339 Algebraic Geometry +0801.0340 Information Theory +0801.0343 +0801.0344 Phenomenology +0801.0349 Logic +0801.0352 Information Theory +0801.0353 Logic +0801.0354 Logic +0801.0361 +0801.0368 Materials Science +0801.0369 Analysis of PDEs +0801.0372 Materials Science +0801.0373 Materials Science +0801.0375 Other Condensed Matter +0801.0376 +0801.0377 Strongly Correlated Electrons +0801.0378 Computational Physics +0801.0381 Materials Science +0801.0386 Digital Libraries +0801.0387 Optics +0801.0390 Information Theory +0801.0391 Commutative Algebra +0801.0397 +0801.0400 Materials Science +0801.0404 Complex Variables +0801.0407 Materials Science +0801.0409 +0801.0410 Plasma Physics +0801.0413 Strongly Correlated Electrons +0801.0422 Other Condensed Matter +0801.0432 Theory +0801.0435 Materials Science +cond-mat/0702516 Mesoscale and Nanoscale Physics +cond-mat/0702601 Disordered Systems and Neural Networks +cond-mat/0703453 Mesoscale and Nanoscale Physics +math/0410524 Algebraic Geometry +math/0411463 Group Theory +math/0504176 Group Theory +math/0603154 Probability +math/0606086 Probability +math/0606411 Probability +math/0608006 Differential Geometry +math/0610983 Group Theory +math/0612747 Probability +math/0612790 Functional Analysis +math/9906009 Combinatorics +math/9906011 Combinatorics +math/9906012 Combinatorics +math/9906187 Combinatorics +quant-ph/0412069 +quant-ph/0703244 +0706.3028 Commutative Algebra +0708.0657 +0708.0925 Physics and Society +0709.1506 Statistics Theory +0709.2102 Complex Variables +0709.4453 Theory +0709.4620 Strongly Correlated Electrons +0710.0507 Differential Geometry +0710.2138 Soft Condensed Matter +0710.3561 Artificial Intelligence +0712.0142 Combinatorics +0712.2418 Algebraic Geometry +0712.3025 Phenomenology +0712.3591 Fluid Dynamics +0801.3642 Cryptography and Security +0801.3826 Commutative Algebra +0801.3832 Neurons and Cognition +0801.4065 Applications +0801.4079 Cryptography and Security +0801.4376 +0801.4384 Other Quantitative Biology +0801.4386 +0801.4392 Combinatorics +0801.4393 Combinatorics +0801.4395 Quantitative Methods +0801.4396 Differential Geometry +0801.4402 +0801.4404 Combinatorics +0801.4405 Computational Geometry +0801.4407 Physics and Society +0801.4409 Optics +0801.4414 Classical Physics +0801.4422 General Mathematics +0801.4423 Human-Computer Interaction +0801.4429 Geometric Topology +0801.4436 Atomic Physics +0801.4439 Commutative Algebra +0801.4445 Strongly Correlated Electrons +0801.4449 Physics and Society +0801.4451 Rings and Algebras +0801.4455 +0801.4460 Spectral Theory +0801.4467 +0801.4470 General Physics +0801.4472 General Physics +0801.4480 Other Computer Science +0801.4481 Chemical Physics +0801.4483 Other Computer Science +0801.4487 +0801.4500 Dynamical Systems +0801.4515 +0801.4518 Strongly Correlated Electrons +0801.4521 Theory +0801.4522 Applications +0801.4525 Data Analysis, Statistics and Probability +0801.4530 +0801.4533 Group Theory +0801.4534 +0801.4542 +0801.4549 +0801.4556 Molecular Networks +0801.4557 Functional Analysis +cond-mat/0603542 Materials Science +gr-qc/0406022 +gr-qc/0406024 +hep-th/0008116 Theory +hep-th/0611138 Theory +math/0305288 Algebraic Geometry +math/0402178 Numerical Analysis +math/0512109 Symplectic Geometry +math/0601669 Algebraic Geometry +math/0606777 Number Theory +math/0607767 Probability +math/0608196 Quantum Algebra +math/0701136 Complex Variables +math/0701535 Metric Geometry +q-bio/0512048 Populations and Evolution +quant-ph/0604165 +0704.0013 Number Theory +0706.3622 Data Analysis, Statistics and Probability +0707.3253 Differential Geometry +0709.3551 Mesoscale and Nanoscale Physics +0710.1724 +0712.0288 +0712.1494 +0712.1718 Theory +0801.1698 Probability +0801.4408 Applications +0802.3749 +0803.0381 Phenomenology +0803.2578 Combinatorics +0803.3427 Mesoscale and Nanoscale Physics +0804.0236 +0804.3291 Metric Geometry +0805.0490 Soft Condensed Matter +0805.1820 +0805.2151 +0805.2686 Representation Theory +0805.3529 Numerical Analysis +0805.3530 Mesoscale and Nanoscale Physics +0805.3537 Computers and Society +0805.3546 +0805.3553 +0805.3566 Materials Science +0805.3569 Networking and Internet Architecture +0805.3571 +0805.3607 +0805.3611 +0805.3615 Physics and Society +0805.3620 Probability +0805.3623 Phenomenology +0805.3626 +0805.3628 +0805.3630 Differential Geometry +0805.3634 +0805.3639 Geophysics +0805.3645 +0805.3647 +0805.3649 +0805.3664 General Physics +0805.3665 +0805.3670 +0805.3671 History and Overview +0805.3674 Operator Algebras +0805.3677 Mesoscale and Nanoscale Physics +0805.3683 +0805.3684 Experiment +0805.3685 Functional Analysis +0805.3691 Molecular Networks +0805.3692 +cond-mat/0610752 Statistical Mechanics +cond-mat/0612590 Other Condensed Matter +cond-mat/0703552 Other Condensed Matter +math/0607139 Rings and Algebras +math/0611201 Representation Theory +quant-ph/0604146 +0710.1871 Mesoscale and Nanoscale Physics +0801.0297 History and Overview +0801.3062 Number Theory +cond-mat/0604292 Other Condensed Matter +gr-qc/0405027 +math/0504210 Analysis of PDEs +math/0512226 Classical Analysis and ODEs +math/0606576 Statistics Theory +math/0607478 Representation Theory +physics/0603042 Computational Physics +0705.4003 +0705.4522 +0706.0723 Combinatorics +0706.2013 Probability +0707.0741 +0707.1838 Numerical Analysis +0707.4093 Lattice +0710.0139 +0710.0773 Superconductivity +0710.1502 +0710.5850 Materials Science +0711.0552 Representation Theory +0712.0779 Soft Condensed Matter +0712.2699 General Mathematics +0712.4258 +0801.0109 Physics and Society +0801.0509 Algebraic Geometry +0801.2665 Representation Theory +0802.0945 Mesoscale and Nanoscale Physics +0802.1080 Spectral Theory +0802.1688 +0802.1826 Statistical Mechanics +0802.4296 +0803.1027 +0803.1630 +0803.2782 Mesoscale and Nanoscale Physics +0803.3172 +0803.3591 Cell Behavior +0804.0227 +0804.2223 Mesoscale and Nanoscale Physics +0804.3221 Plasma Physics +0804.3303 Rings and Algebras +0804.3615 Computational Complexity +0804.4719 Combinatorics +0805.0633 +0805.0800 Differential Geometry +0805.1595 +0805.2401 Quantum Algebra +0805.2403 Group Theory +0805.2410 Geometric Topology +0805.2416 Combinatorics +0805.2417 General Physics +0805.2419 Superconductivity +0805.2422 Information Theory +0805.2423 Information Theory +0805.2431 +0805.2435 Phenomenology +0805.2440 Artificial Intelligence +0805.2446 +0805.2451 General Physics +0805.2461 Number Theory +0805.2464 Combinatorics +0805.2467 Experiment +0805.2474 Experiment +0805.2475 Materials Science +0805.2476 Experiment +0805.2481 Representation Theory +0805.2483 Disordered Systems and Neural Networks +0805.2486 Disordered Systems and Neural Networks +0805.2494 Geometric Topology +0805.2495 Theory +0805.2506 Phenomenology +0805.2508 Number Theory +0805.2514 +0805.2521 Phenomenology +0805.2522 Adaptation and Self-Organizing Systems +0805.2530 Phenomenology +0805.2534 Algebraic Geometry +0805.2539 Atomic Physics +0805.2547 Dynamical Systems +0805.2549 +0805.2568 General Mathematics +0805.2569 Number Theory +0805.2572 Number Theory +0805.2578 Statistical Mechanics +0805.2579 +0805.2590 Combinatorics +0805.2591 Experiment +cond-mat/0301610 Superconductivity +cond-mat/0608358 Soft Condensed Matter +cond-mat/0610561 Strongly Correlated Electrons +cs/0505034 Logic in Computer Science +cs/0601128 Computational Geometry +cs/0605058 Numerical Analysis +hep-ph/0508110 Phenomenology +math/0201113 Algebraic Geometry +math/0406173 Probability +math/0407304 Differential Geometry +math/0410412 Category Theory +math/0507384 Representation Theory +math/0508517 Dynamical Systems +math/0509089 K-Theory and Homology +math/0510377 Representation Theory +math/0605414 Probability +math/0607623 Combinatorics +math/0607761 Analysis of PDEs +math/0611018 Algebraic Geometry +math/0612171 Number Theory +physics/0508017 Data Analysis, Statistics and Probability +q-bio/0612048 Biomolecules +quant-ph/0412075 +quant-ph/0605183 +quant-ph/0610064 +0704.0425 Theory +0704.2713 Combinatorics +0705.0091 Mesoscale and Nanoscale Physics +0705.3078 Medical Physics +0706.0655 Optics +0706.0722 Combinatorics +0707.0581 Algebraic Geometry +0707.4287 Algebraic Geometry +0708.2101 Statistical Mechanics +0708.4263 Mesoscale and Nanoscale Physics +0709.3384 Discrete Mathematics +0710.2106 Combinatorics +0710.4167 Operator Algebras +0711.1599 Strongly Correlated Electrons +0711.3405 Number Theory +0802.1387 Discrete Mathematics +0802.2467 Combinatorics +0802.3227 General Physics +0802.3249 History and Philosophy of Physics +0802.3253 Information Theory +0802.3254 Computational Complexity +0802.3255 Probability +0802.3265 Complex Variables +0802.3266 Theory +0802.3270 Differential Geometry +0802.3271 Rings and Algebras +0802.3273 Superconductivity +0802.3280 +0802.3281 +0802.3285 Computer Vision and Pattern Recognition +0802.3287 +0802.3288 Computer Vision and Pattern Recognition +0802.3293 Artificial Intelligence +0802.3294 Soft Condensed Matter +0802.3296 Probability +0802.3303 +0802.3323 Biomolecules +0802.3324 +0802.3327 Statistics Theory +0802.3328 Cryptography and Security +0802.3343 Geometric Topology +0802.3352 Phenomenology +0802.3354 Strongly Correlated Electrons +0802.3355 Distributed, Parallel, and Cluster Computing +cond-mat/0602109 Mesoscale and Nanoscale Physics +cond-mat/0602625 Statistical Mechanics +cond-mat/0701785 Materials Science +hep-th/0411016 Theory +math/0201202 Differential Geometry +math/0304043 Differential Geometry +math/0402321 Analysis of PDEs +math/0403142 Differential Geometry +math/0502094 Differential Geometry +math/0506568 Differential Geometry +math/0603703 Algebraic Geometry +math/0608631 Statistics Theory +math/0702516 Number Theory +physics/0701349 Physics and Society +0704.3624 Superconductivity +0706.1849 Probability +0707.1215 +0708.0311 Chaotic Dynamics +0709.3725 Atmospheric and Oceanic Physics +0710.3126 Theory +0711.2152 K-Theory and Homology +0711.3241 Superconductivity +0711.3372 Statistical Mechanics +0712.2796 Differential Geometry +0712.3966 +0712.4304 Biological Physics +0801.2614 +0801.3660 +0802.2233 Mesoscale and Nanoscale Physics +0803.2266 Soft Condensed Matter +0803.3330 Quantitative Methods +0803.4397 Computational Physics +0804.1872 Statistical Mechanics +0804.3460 Materials Science +0805.4329 Phenomenology +0805.4440 Information Theory +0805.4692 Genomics +0806.0591 Atmospheric and Oceanic Physics +0806.0794 Phenomenology +0806.0795 Disordered Systems and Neural Networks +0806.0857 Combinatorics +0806.0860 Cryptography and Security +0806.0861 +0806.0878 Geometric Topology +0806.0880 Probability +0806.0889 Phenomenology +0806.0893 Optics +0806.0900 Superconductivity +0806.0910 Strongly Correlated Electrons +0806.0914 Dynamical Systems +0806.0921 Computational Complexity +0806.0930 Complex Variables +0806.0934 Number Theory +0806.0939 General Mathematics +0806.0967 +0806.0969 Analysis of PDEs +0806.0973 Combinatorics +0806.0976 Superconductivity +0806.0978 Quantum Algebra +0806.0979 Populations and Evolution +0806.0984 Number Theory +0806.0993 Probability +0806.0994 Strongly Correlated Electrons +0806.0995 Experiment +0806.1000 History and Overview +0806.1001 Number Theory +0806.1008 Differential Geometry +0806.1010 +0806.1021 Quantum Algebra +0806.1023 Phenomenology +0806.1036 Differential Geometry +0806.1038 Rings and Algebras +astro-ph/0511201 +hep-ph/0605115 Phenomenology +math/0605487 Commutative Algebra +math/0607150 Statistics Theory +math/0611113 Differential Geometry +math/0702818 Analysis of PDEs +physics/0102086 General Physics +quant-ph/0602139 +0706.1082 Theory +0707.2317 Mesoscale and Nanoscale Physics +0707.2836 Information Theory +0707.3545 Probability +0707.3548 Numerical Analysis +0709.3803 Group Theory +0710.3208 Theory +0710.5210 Other Condensed Matter +0710.5426 Algebraic Topology +0711.1438 Mesoscale and Nanoscale Physics +0711.3814 Spectral Theory +0712.1840 Number Theory +0801.1881 +0801.4753 Differential Geometry +0801.4788 Strongly Correlated Electrons +0802.3808 Other Condensed Matter +0803.1495 +0803.4066 Strongly Correlated Electrons +0804.4196 Strongly Correlated Electrons +0805.0405 Superconductivity +0805.0715 Statistical Mechanics +0805.3320 General Topology +0805.3604 Strongly Correlated Electrons +0805.4149 +0805.4503 Strongly Correlated Electrons +0806.1626 Strongly Correlated Electrons +0806.3342 Mesoscale and Nanoscale Physics +0807.0147 Logic +0807.3788 Superconductivity +0807.4585 Materials Science +0808.1223 +0808.1239 Group Theory +0808.1283 Subcellular Processes +0808.1292 +0808.1299 Probability +0808.1315 +0808.1317 +0808.1319 Algebraic Topology +0808.1327 Geometric Topology +0808.1336 Phenomenology +0808.1343 Computers and Society +0808.1344 General Physics +0808.1346 Differential Geometry +0808.1347 Statistical Mechanics +0808.1352 Mesoscale and Nanoscale Physics +0808.1354 Logic +0808.1358 Differential Geometry +0808.1359 Functional Analysis +0808.1362 General Physics +0808.1364 Computational Complexity +0808.1365 Differential Geometry +0808.1366 Experiment +0808.1374 Strongly Correlated Electrons +0808.1376 Algebraic Geometry +0808.1378 Neural and Evolutionary Computing +0808.1385 +0808.1386 Superconductivity +0808.1392 +0808.1400 Information Theory +0808.1403 Operator Algebras +0808.1404 Functional Analysis +0808.1410 Cryptography and Security +0808.1411 +0808.1422 Symplectic Geometry +0808.1426 Strongly Correlated Electrons +0808.1427 Combinatorics +0808.1429 Combinatorics +0808.1434 Combinatorics +0808.1435 Statistical Mechanics +0808.1437 +0808.1438 Number Theory +0808.1439 +0808.1443 Medical Physics +0808.1452 Statistics Theory +0808.1455 Networking and Internet Architecture +0808.1460 Materials Science +0808.1462 General Physics +0808.1468 Mesoscale and Nanoscale Physics +0808.1470 Discrete Mathematics +0808.1472 Soft Condensed Matter +0808.1475 Other Condensed Matter +0808.1476 Number Theory +0808.1480 Classical Analysis and ODEs +0808.1481 +0808.1482 Geometric Topology +0808.1483 Commutative Algebra +0808.1486 Accelerator Physics +0808.1496 Phenomenology +0808.1498 Computational Physics +0808.1503 Geophysics +0808.1505 Distributed, Parallel, and Cluster Computing +0808.1507 Number Theory +0808.1508 Software Engineering +0808.1509 Probability +0808.1511 +0808.1515 +0808.1517 Algebraic Geometry +0808.1529 Algebraic Geometry +0808.1534 Exactly Solvable and Integrable Systems +0808.1537 +0808.1543 Experiment +0808.1546 +0808.1558 +0808.1559 +0808.1564 +astro-ph/0603746 +cond-mat/0609683 Other Condensed Matter +math/0408421 Number Theory +math/0506131 Complex Variables +math/0601632 Probability +math/0602514 Representation Theory +math/0606141 Complex Variables +math/0612206 Representation Theory +quant-ph/0503100 +quant-ph/0607064 +quant-ph/0608099 +quant-ph/0608216 +quant-ph/0608217 +0704.2694 Probability +0705.0436 Physics and Society +0705.1988 Operator Algebras +0705.4532 Algebraic Geometry +0706.3749 +0707.3943 +0708.1663 Other Condensed Matter +0708.3668 Representation Theory +0708.4023 Physics and Society +0709.2941 Functional Analysis +0711.0662 Mesoscale and Nanoscale Physics +0711.1610 Number Theory +0711.3882 +0712.0117 +0712.2031 +0712.2324 Biological Physics +0801.0388 Superconductivity +0802.0116 Logic in Computer Science +0802.2878 Atomic Physics +0803.1881 Probability +0803.2848 Probability +0803.4387 Popular Physics +0804.0210 +0804.0247 General Physics +0804.0253 Chaotic Dynamics +0804.0258 Combinatorics +0804.0267 General Physics +0804.0279 +0804.0282 +0804.0287 General Physics +0804.0288 Operator Algebras +0804.0290 Statistical Mechanics +0804.0293 Strongly Correlated Electrons +0804.0296 +0804.0302 Probability +0804.0304 Space Physics +0804.0306 Differential Geometry +0804.0311 Optimization and Control +0804.0315 Superconductivity +0804.0317 Computation and Language +0804.0322 Materials Science +0804.0325 Strongly Correlated Electrons +0804.0326 Category Theory +0804.0334 Plasma Physics +0804.0335 Plasma Physics +0804.0341 +0804.0352 Neural and Evolutionary Computing +0804.0353 Neural and Evolutionary Computing +0804.0366 Software Engineering +0804.0369 Data Analysis, Statistics and Probability +0804.0374 Soft Condensed Matter +0804.0377 Analysis of PDEs +0804.0380 Data Analysis, Statistics and Probability +0804.0385 Information Theory +0804.0386 Materials Science +0804.0387 Functional Analysis +0804.0388 Algebraic Geometry +0804.0390 Computation +0804.0392 Soft Condensed Matter +0804.0399 Statistical Mechanics +0804.0407 Probability +0804.0410 +0804.0414 Differential Geometry +0804.0415 Instrumentation and Detectors +0804.0418 Plasma Physics +cs/0605068 Symbolic Computation +cs/0610027 Logic in Computer Science +cs/0703121 Symbolic Computation +gr-qc/0502051 +hep-th/0602165 Theory +math/0312415 Representation Theory +math/0411575 Group Theory +math/0503646 Representation Theory +math/0608037 Differential Geometry +math/0609851 Number Theory +math/0611624 Number Theory +math/0611696 Commutative Algebra +physics/0602116 Atomic Physics +quant-ph/0404133 +quant-ph/0702006 +0801.3673 +0801.3675 Genomics +0801.3680 Computational Complexity +0801.3684 +0801.3695 Optimization and Control +0801.3704 Operator Algebras +0801.3708 Algebraic Geometry +0801.3709 +0801.3711 Other Computer Science +0801.3713 Classical Physics +0801.3714 Discrete Mathematics +0801.3718 Symplectic Geometry +0801.3726 Mesoscale and Nanoscale Physics +0801.3727 Popular Physics +0801.3728 Mesoscale and Nanoscale Physics +0801.3734 Mesoscale and Nanoscale Physics +0801.3738 +0801.3742 Phenomenology +0801.3748 Analysis of PDEs +0801.3749 +0801.3764 Neurons and Cognition +0801.3766 Spectral Theory +0801.3767 +0801.3770 Rings and Algebras +0801.3777 Phenomenology +0801.3780 Probability +0801.3785 Physics and Society +0801.3788 Combinatorics +0801.3789 Statistical Mechanics +0801.3792 Number Theory +0801.3794 Materials Science +0801.3797 Probability +0801.3807 +0801.3809 Analysis of PDEs +0801.3811 Algebraic Geometry +0801.3813 Classical Analysis and ODEs +0801.3814 +0801.3816 Optimization and Control +0801.3817 Computation and Language +0801.3835 Number Theory +0801.3840 Number Theory +0801.3841 Cryptography and Security +0705.1109 Computational Physics +0705.3568 +0707.0376 Functional Analysis +0709.0085 Strongly Correlated Electrons +0710.0268 Representation Theory +0710.0713 Theory +0710.5868 +0712.0837 Number Theory +0712.3282 Phenomenology +0802.2463 Mesoscale and Nanoscale Physics +0802.3344 Materials Science +0803.2495 Computer Science and Game Theory +0803.4125 Disordered Systems and Neural Networks +0805.1092 Numerical Analysis +0805.2203 Theory +0805.3240 Mesoscale and Nanoscale Physics +0806.0073 Functional Analysis +0806.0974 Physics and Society +0806.1175 Algebraic Geometry +0807.0028 +0807.2748 Representation Theory +0807.4758 +0808.2441 +0808.3577 Analysis of PDEs +0809.4896 Experiment +0810.0476 +0810.0508 Combinatorics +0810.1639 Data Structures and Algorithms +0810.1705 Numerical Analysis +0810.2191 +0810.2319 +0810.2498 Phenomenology +0810.3598 Phenomenology +0810.4749 Probability +0810.5363 Operator Algebras +0810.5582 Databases +0811.0005 +0811.0017 +0811.0019 Materials Science +0811.0023 Spectral Theory +0811.0029 Representation Theory +0811.0030 +0811.0036 Geometric Topology +0811.0038 +0811.0042 Combinatorics +0811.0043 Number Theory +0811.0044 Geometric Topology +0811.0048 Computer Science and Game Theory +0811.0064 Numerical Analysis +0811.0070 Logic +0811.0071 Computer Science and Game Theory +0811.0073 Materials Science +0811.0075 Logic +0811.0076 Number Theory +0811.0077 Other Computer Science +0811.0078 Other Computer Science +0811.0079 Other Computer Science +0811.0081 Geometric Topology +0811.0083 Other Computer Science +0811.0085 +0811.0089 Logic +0811.0093 Dynamical Systems +0811.0100 Functional Analysis +0811.0101 Other Condensed Matter +0811.0103 Algebraic Geometry +0811.0104 Functional Analysis +0811.0108 Statistical Mechanics +0811.0109 Dynamical Systems +0811.0111 +0811.0114 General Mathematics +0811.0115 Molecular Networks +0811.0119 Phenomenology +0811.0121 Methodology +0811.0124 Classical Physics +0811.0127 Phenomenology +0811.0130 Plasma Physics +0811.0131 Artificial Intelligence +0811.0139 Learning +0811.0142 +0811.0148 Methodology +0811.0152 Information Theory +0811.0154 Atomic Physics +0811.0157 Materials Science +0811.0162 Materials Science +0811.0165 Differential Geometry +0811.0166 Programming Languages +0811.0168 Numerical Analysis +0811.0171 +0811.0175 +0811.0177 Superconductivity +0811.0180 Materials Science +0811.0183 Algebraic Geometry +0811.0191 Algebraic Topology +0811.0192 Dynamical Systems +0811.0194 Algebraic Geometry +0811.0199 Differential Geometry +0811.0204 Mesoscale and Nanoscale Physics +0811.0215 Representation Theory +0811.0221 Materials Science +0811.0228 Analysis of PDEs +0811.0232 +0811.0235 Algebraic Topology +0811.0236 Algebraic Topology +0811.0238 Materials Science +0811.0240 Probability +0811.0242 +0811.0247 +0811.0248 Strongly Correlated Electrons +0811.0249 +0811.0254 Computational Geometry +0811.0256 Algebraic Geometry +0811.0259 Differential Geometry +0811.0261 +0811.0265 Statistical Mechanics +0811.0268 Theory +0811.0270 Geometric Topology +0811.0273 Networking and Internet Architecture +0811.0276 Probability +0811.0285 Information Theory +0811.0289 Classical Analysis and ODEs +0811.0302 Algebraic Geometry +0811.0303 +0811.0310 Artificial Intelligence +0811.0312 +0811.0316 +0811.0318 Category Theory +0811.0324 Other Condensed Matter +0811.0325 Information Theory +0811.0333 Classical Physics +0811.0336 Representation Theory +0811.0340 Artificial Intelligence +0811.0347 Populations and Evolution +0811.0357 Atmospheric and Oceanic Physics +0811.0360 Classical Analysis and ODEs +0811.0361 Strongly Correlated Electrons +0811.0362 Theory +0811.0364 Geometric Topology +0811.0367 Theory +0811.0372 Number Theory +0811.0374 Soft Condensed Matter +0811.0379 +0811.0380 Materials Science +cond-mat/0703245 Materials Science +cs/0703020 Data Structures and Algorithms +math/0604182 Probability +math/0702017 Analysis of PDEs +math/0702622 Probability +quant-ph/0504099 +0704.1769 Statistical Mechanics +0706.0834 Other Condensed Matter +0706.3293 Strongly Correlated Electrons +0706.4401 Statistical Mechanics +0706.4462 Disordered Systems and Neural Networks +0707.2058 Mesoscale and Nanoscale Physics +0707.3161 +0708.2991 Atomic Physics +0709.0990 Differential Geometry +0711.0290 Strongly Correlated Electrons +0711.3702 Materials Science +0711.3931 Statistics Theory +0711.4748 Phenomenology +0711.4954 +0712.2861 +0801.0780 General Physics +0801.4278 Quantitative Methods +0801.4885 Soft Condensed Matter +0802.0160 Materials Science +0802.1793 Statistical Mechanics +0802.2226 Statistical Mechanics +0802.2347 +0802.3222 Strongly Correlated Electrons +0803.2190 Chemical Physics +0803.3581 Other Condensed Matter +0804.4387 Materials Science +0805.0357 Complex Variables +0805.1394 Materials Science +0805.3505 Phenomenology +0805.4163 +0805.4325 Statistical Mechanics +0805.4618 Probability +0805.4620 Information Theory +0805.4624 +0805.4628 Soft Condensed Matter +0805.4631 Algebraic Geometry +0805.4632 Dynamical Systems +0805.4633 Materials Science +0805.4663 +0805.4665 Cryptography and Security +0805.4673 Mesoscale and Nanoscale Physics +0805.4685 +0805.4686 Theory +0805.4687 Probability +0805.4689 Algebraic Geometry +0805.4694 K-Theory and Homology +0805.4704 Probability +0805.4705 +0805.4707 Functional Analysis +0805.4710 Functional Analysis +0805.4718 Computational Complexity +0805.4721 Functional Analysis +0805.4730 Superconductivity +0805.4738 Theory +0805.4739 General Topology +0805.4748 Information Theory +0805.4761 Functional Analysis +0805.4762 General Physics +0805.4763 Statistical Mechanics +0805.4765 +0805.4776 +0805.4782 Algebraic Geometry +0805.4785 Algebraic Geometry +0805.4793 Combinatorics +0805.4798 Optics +0805.4800 Optimization and Control +0805.4803 Phenomenology +0805.4807 Differential Geometry +0805.4809 Phenomenology +0805.4811 Experiment +0805.4817 Operator Algebras +0805.4830 Experiment +0805.4835 Group Theory +cond-mat/0604304 Disordered Systems and Neural Networks +cond-mat/0702011 Strongly Correlated Electrons +hep-th/0401052 Theory +math/0506021 Differential Geometry +math/0604004 Algebraic Geometry +math/0605479 Combinatorics +math/0609345 Number Theory +math/0703484 Probability +math/0703647 Logic +q-bio/0510024 Quantitative Methods +quant-ph/0702241 +0707.1643 Algebraic Geometry +0708.2553 Strongly Correlated Electrons +0709.0118 Other Condensed Matter +0709.2104 Differential Geometry +0710.2950 Combinatorics +0803.1700 +math/0203161 Differential Geometry +math/0409451 Probability +math/0507608 Group Theory +q-bio/0609051 Populations and Evolution +0706.3192 Functional Analysis +0801.4820 General Physics +0803.0735 Materials Science +0804.3820 General Physics +0804.4821 +astro-ph/0608272 +cond-mat/0703405 Disordered Systems and Neural Networks +math/0511329 Spectral Theory +math/0701228 Complex Variables +math/0701262 Classical Analysis and ODEs +0801.2553 Geometric Topology +0801.2712 +0805.2450 +0806.4356 Differential Geometry +0807.0668 +0807.3900 Mesoscale and Nanoscale Physics +0808.0492 Materials Science +0808.2310 Theory +0809.4823 Classical Physics +0811.1657 +0811.2026 Machine Learning +0706.1219 +0707.1739 Information Theory +0707.4374 +0709.0948 +0709.1799 Symplectic Geometry +0710.5097 Algebraic Topology +0711.4080 Functional Analysis +0801.1676 Symbolic Computation +0802.0197 +0802.0788 +0802.1681 Numerical Analysis +0802.1785 Information Theory +0802.2947 Mesoscale and Nanoscale Physics +0802.3874 Functional Analysis +0802.3980 +0803.1921 Statistical Mechanics +0803.2157 +0805.1363 Strongly Correlated Electrons +0805.3466 +0806.1963 Probability +0806.3545 Classical Analysis and ODEs +0806.4859 Logic in Computer Science +0807.4567 Experiment +0808.0362 Combinatorics +0808.2515 Information Theory +0808.2543 Symbolic Computation +0808.2596 Symbolic Computation +0808.2763 Superconductivity +0808.2852 Geometric Topology +0808.4041 Lattice +0809.0004 Number Theory +0809.0017 Algebraic Geometry +0809.0019 Algebraic Geometry +0809.0024 Computer Science and Game Theory +0809.0027 Biomolecules +0809.0029 Populations and Evolution +0809.0046 +0809.0050 +0809.0055 Space Physics +0809.0056 Materials Science +0809.0062 Numerical Analysis +0809.0070 Information Theory +0809.0074 Representation Theory +0809.0076 Number Theory +0809.0082 Theory +0809.0084 Materials Science +0809.0089 +0809.0091 Information Theory +0809.0095 Commutative Algebra +0809.0098 Operator Algebras +0809.0099 Information Theory +0809.0104 Number Theory +0809.0110 Populations and Evolution +0809.0111 General Physics +0809.0120 Superconductivity +0809.0121 +0809.0122 Phenomenology +0809.0123 Superconductivity +0809.0124 Computation and Language +0809.0128 Superconductivity +0809.0132 Materials Science +0809.0142 Chaotic Dynamics +0809.0143 Representation Theory +0809.0148 Chaotic Dynamics +0809.0152 Optics +0809.0155 Algebraic Geometry +0809.0156 Commutative Algebra +0809.0158 Networking and Internet Architecture +0809.0159 Computational Geometry +0809.0176 Number Theory +0809.0178 Classical Analysis and ODEs +0809.0186 Analysis of PDEs +0809.0188 Computational Complexity +0809.0193 Quantum Algebra +0809.0197 Classical Physics +0809.0199 Information Theory +0809.0204 General Physics +0809.0207 Materials Science +0809.0208 +0809.0210 Theory +0809.0215 Probability +0809.0216 Cryptography and Security +0809.0219 Phenomenology +0809.0225 Algebraic Geometry +0809.0229 Optics +0809.0231 Rings and Algebras +0809.0232 +0809.0243 +0809.0245 Representation Theory +0809.0248 Probability +0809.0249 +0809.0262 Probability +0809.0264 Quantum Algebra +0809.0270 Functional Analysis +0809.0271 Artificial Intelligence +0809.0277 Dynamical Systems +0809.0279 Probability +0809.0285 Populations and Evolution +0809.0286 Materials Science +0809.0294 Chaotic Dynamics +0809.0296 Experiment +0809.0298 Algebraic Geometry +0809.0300 Metric Geometry +0809.0303 Phenomenology +0809.0306 Operator Algebras +math/0611014 Algebraic Geometry +math/0612586 Differential Geometry +math/0702784 Probability +0704.2524 Differential Geometry +0704.2900 Logic in Computer Science +0706.0448 Representation Theory +0707.2051 +0708.0087 +0708.1928 Biomolecules +0708.2987 Number Theory +0709.0026 Group Theory +0709.3287 Symplectic Geometry +0710.1499 Distributed, Parallel, and Cluster Computing +0710.2918 Quantum Algebra +0710.5824 Strongly Correlated Electrons +0711.0318 Strongly Correlated Electrons +0711.1552 Dynamical Systems +0712.0733 Dynamical Systems +0801.0359 +0801.3500 Strongly Correlated Electrons +0801.3984 Other Condensed Matter +0801.4848 +0802.2250 Differential Geometry +0802.4343 Strongly Correlated Electrons +0803.2306 Logic in Computer Science +0804.1517 +0804.2334 Mesoscale and Nanoscale Physics +0804.3690 Combinatorics +0804.4887 Mesoscale and Nanoscale Physics +0805.3629 +0806.1301 Superconductivity +0807.2177 Strongly Correlated Electrons +0807.3136 Spectral Theory +0807.4641 Mesoscale and Nanoscale Physics +0807.4648 Soft Condensed Matter +0808.0206 +0808.1355 Optics +0808.1430 Group Theory +0808.1610 +0808.1632 Mesoscale and Nanoscale Physics +0808.3173 Statistical Mechanics +0809.0357 Phenomenology +0809.1099 Phenomenology +0809.1107 Materials Science +0809.1111 Probability +0809.1113 Materials Science +0809.1121 Differential Geometry +0809.1129 Algebraic Geometry +0809.1132 Operating Systems +0809.1136 Algebraic Geometry +0809.1138 Populations and Evolution +0809.1141 Probability +0809.1142 Probability +0809.1143 Probability +0809.1144 Rings and Algebras +0809.1147 Analysis of PDEs +0809.1158 Differential Geometry +0809.1160 Theory +0809.1163 Commutative Algebra +0809.1164 Analysis of PDEs +0809.1169 +0809.1171 Data Structures and Algorithms +0809.1177 Distributed, Parallel, and Cluster Computing +0809.1180 Biomolecules +0809.1186 Differential Geometry +0809.1187 Logic +0809.1192 Disordered Systems and Neural Networks +0809.1194 Algebraic Geometry +0809.1201 Algebraic Geometry +0809.1206 +0809.1207 Analysis of PDEs +0809.1221 General Physics +0809.1225 +0809.1226 Information Theory +0809.1227 Probability +0809.1233 Algebraic Geometry +0809.1235 Dynamical Systems +0809.1242 Algebraic Geometry +0809.1243 Algebraic Geometry +0809.1246 Statistical Mechanics +0809.1247 Geometric Topology +0809.1251 Algebraic Geometry +0809.1252 Information Theory +0809.1261 Geometric Topology +0809.1264 Information Theory +0809.1265 Adaptation and Self-Organizing Systems +0809.1266 Combinatorics +0809.1269 +0809.1278 +0809.1281 Statistics Theory +0809.1283 +0809.1288 Probability +0809.1297 General Physics +0809.1298 Differential Geometry +0809.1299 Strongly Correlated Electrons +0809.1300 Information Theory +0809.1304 History and Philosophy of Physics +0809.1309 Classical Physics +0809.1312 Functional Analysis +0809.1318 Cryptography and Security +0809.1329 Phenomenology +0809.1330 Information Theory +0809.1332 Probability +0809.1337 Number Theory +0809.1348 Information Theory +0809.1350 Analysis of PDEs +0809.1351 General Physics +0809.1356 Algebraic Geometry +0809.1363 Representation Theory +0809.1365 Classical Analysis and ODEs +0809.1366 Cryptography and Security +0809.1372 History and Overview +0809.1374 Theory +0809.1386 Algebraic Geometry +0809.1387 Representation Theory +0809.1396 +0809.1399 +0809.1411 Combinatorics +0809.1421 Dynamical Systems +cs/0701086 Information Theory +cs/0703096 Other Computer Science +math/0205261 Classical Analysis and ODEs +math/0309007 Quantum Algebra +math/0405061 Differential Geometry +math/0504367 Combinatorics +math/0509478 Combinatorics +math/0509608 Combinatorics +math/0509628 Algebraic Geometry +math/0601293 Combinatorics +math/0606446 Combinatorics +math/0606450 Combinatorics +math/0606774 Differential Geometry +math/0609707 Combinatorics +math/0611562 Optimization and Control +math/0611865 Combinatorics +math/0703142 Combinatorics +quant-ph/0506230 +0704.0665 Analysis of PDEs +0704.2213 Quantum Algebra +0707.1265 Strongly Correlated Electrons +0708.1903 Discrete Mathematics +0709.1227 Data Structures and Algorithms +0709.1249 Physics and Society +0709.1975 Analysis of PDEs +0710.0108 Physics and Society +0801.2224 Statistics Theory +0801.2411 Physics and Society +0802.1007 Materials Science +0802.1018 Materials Science +0802.3358 Statistical Mechanics +0802.4318 Physics and Society +0803.3450 Phenomenology +0803.4051 Strongly Correlated Electrons +0803.4069 +0804.2505 +0805.2581 Algebraic Geometry +0806.3005 Materials Science +0806.3445 Soft Condensed Matter +0806.4908 Materials Science +0807.1505 +0808.1039 +0808.1041 +0808.1042 +0808.2940 Phenomenology +0809.0611 Probability +0809.1807 Theory +0809.2179 Phenomenology +0809.2807 Theory +0809.3284 +0809.3539 Combinatorics +0809.4214 Combinatorics +0809.4738 Combinatorics +0809.4901 Experiment +0809.5186 Quantum Algebra +0810.0395 Experiment +0810.0448 Experiment +0810.0505 +0810.0661 Experiment +0810.0721 +0810.0758 Methodology +0810.1283 +0810.1290 +0810.1296 Phenomenology +0810.1298 +0810.1313 Algebraic Geometry +0810.1316 Discrete Mathematics +0810.1319 Information Theory +0810.1320 Soft Condensed Matter +0810.1325 +0810.1329 Statistics Theory +0810.1331 Experiment +0810.1332 +0810.1342 Number Theory +0810.1344 Combinatorics +0810.1348 Combinatorics +0810.1354 Number Theory +0810.1363 Differential Geometry +0810.1365 Geometric Topology +0810.1366 Differential Geometry +0810.1367 +0810.1368 Networking and Internet Architecture +0810.1369 +0810.1380 Differential Geometry +0810.1382 Algebraic Geometry +0810.1386 Optimization and Control +0810.1388 Atomic and Molecular Clusters +0810.1391 General Topology +0810.1395 Experiment +0810.1396 Experiment +0810.1398 Experiment +0810.1416 +0810.1420 Experiment +0810.1424 Information Theory +0810.1426 Physics and Society +0810.1430 Networking and Internet Architecture +0810.1433 Functional Analysis +0810.1434 +0810.1435 Analysis of PDEs +0810.1437 Combinatorics +0810.1440 Phenomenology +0810.1449 Phenomenology +0810.1452 +0810.1460 Differential Geometry +0810.1463 Mesoscale and Nanoscale Physics +0810.1464 Differential Geometry +0810.1468 Phenomenology +0810.1473 Algebraic Geometry +0810.1474 Dynamical Systems +0810.1475 Numerical Analysis +0810.1479 Numerical Analysis +0810.1485 Combinatorics +0810.1486 Statistical Mechanics +0810.1488 Combinatorics +0810.1501 Theory +0810.1503 Theory +0810.1506 Networking and Internet Architecture +0810.1508 +0810.1513 Networking and Internet Architecture +chao-dyn/9511009 Chaotic Dynamics +chao-dyn/9610018 Chaotic Dynamics +cs/0701194 Computation and Language +math/0606079 Analysis of PDEs +math/0607020 Analysis of PDEs +math/0607456 Analysis of PDEs +math/0610302 Geometric Topology +math/0611165 Analysis of PDEs +math/0701054 Analysis of PDEs +math/0701866 Combinatorics +math/0702088 Analysis of PDEs +0704.0746 Mesoscale and Nanoscale Physics +0704.3730 Statistical Mechanics +0705.3433 History and Overview +0705.4057 Dynamical Systems +0705.4486 Mesoscale and Nanoscale Physics +0706.1910 General Physics +0707.3803 +0708.0566 Mesoscale and Nanoscale Physics +0708.2458 General Physics +0709.3951 +0710.5349 Statistics Theory +0711.1422 Statistical Mechanics +0712.0658 Phenomenology +0712.2250 Strongly Correlated Electrons +0712.4364 Physics and Society +0801.1914 Statistical Mechanics +0801.3357 Fluid Dynamics +0802.1242 +0802.4293 Combinatorics +0803.0816 Mesoscale and Nanoscale Physics +0803.0819 Strongly Correlated Electrons +0803.0845 Cryptography and Security +0803.2036 Classical Physics +0803.2037 Disordered Systems and Neural Networks +0803.2045 Theory +0803.2047 Differential Geometry +0803.2048 Differential Geometry +0803.2056 Analysis of PDEs +0803.2060 K-Theory and Homology +0803.2061 Classical Physics +0803.2065 Optimization and Control +0803.2066 +0803.2077 +0803.2079 Differential Geometry +0803.2083 Algebraic Geometry +0803.2084 Materials Science +0803.2086 Instrumentation and Detectors +0803.2088 Classical Analysis and ODEs +0803.2094 +0803.2103 Complex Variables +0803.2105 Algebraic Geometry +0803.2110 Dynamical Systems +0803.2112 Combinatorics +0803.2113 Optics +0803.2125 Mesoscale and Nanoscale Physics +0803.2126 Combinatorics +0803.2127 Materials Science +0803.2128 Lattice +0803.2134 +0803.2141 Rings and Algebras +0803.2142 Optics +0803.2154 +0803.2159 +0803.2167 Phenomenology +0803.2168 +0803.2174 Data Structures and Algorithms +0803.2179 Physics and Society +0803.2184 Algebraic Geometry +0803.2200 Spectral Theory +0803.2206 Other Condensed Matter +0803.2209 Dynamical Systems +0803.2213 Group Theory +0803.2214 Differential Geometry +0803.2215 Rings and Algebras +0803.2219 Distributed, Parallel, and Cluster Computing +0803.2227 Probability +0803.2231 Phenomenology +cs/0703129 Information Theory +hep-th/0106139 Theory +math/0601580 Number Theory +math/0602288 Differential Geometry +math/0603656 Analysis of PDEs +math/0703228 Group Theory +physics/0606154 General Physics +quant-ph/0702189 +0705.1475 Physics and Society +0707.4084 Physics and Society +0710.5939 Algebraic Geometry +0711.0184 Quantum Algebra +0711.1481 Soft Condensed Matter +0712.3945 +0801.3798 Atomic Physics +0803.1740 Number Theory +0803.3271 Statistical Mechanics +0803.4079 Combinatorics +0803.4224 Numerical Analysis +0804.0348 Dynamical Systems +cs/0508094 Information Theory +math/0604595 Functional Analysis +math/0702157 Combinatorics +nlin/0603016 Chaotic Dynamics +quant-ph/0506266 +0704.0011 Number Theory +0710.2297 Mesoscale and Nanoscale Physics +0711.4487 Statistical Mechanics +0712.2259 +0712.3391 Superconductivity +0801.3261 Probability +0802.0078 +0802.2620 Biomolecules +0803.1255 Optics +0803.2176 Rings and Algebras +0804.0144 Number Theory +0804.0604 +0804.1507 Cellular Automata and Lattice Gases +0804.1770 Probability +0804.2610 Statistical Mechanics +0804.2825 Fluid Dynamics +0804.4456 Soft Condensed Matter +0804.4602 Statistical Mechanics +0805.0125 Soft Condensed Matter +0805.0659 Other Condensed Matter +0805.2512 Statistical Mechanics +0805.2759 Soft Condensed Matter +0806.0122 Symplectic Geometry +0806.0712 Superconductivity +0806.2641 Mesoscale and Nanoscale Physics +0807.1728 +0807.3263 Statistical Mechanics +0807.3419 Differential Geometry +0807.3657 +0807.3953 Theory +0808.1762 +0808.2206 Physics and Society +0808.2458 Theory +0808.2466 +0808.2479 Functional Analysis +0808.2482 Complex Variables +0808.2483 +0808.2484 Statistical Mechanics +0808.2486 Information Theory +0808.2487 Operator Algebras +0808.2488 Materials Science +0808.2502 Group Theory +0808.2504 +0808.2506 +0808.2514 General Physics +0808.2517 Physics and Society +0808.2522 Algebraic Geometry +0808.2524 Differential Geometry +0808.2525 Differential Geometry +0808.2527 Differential Geometry +0808.2534 +0808.2535 Mesoscale and Nanoscale Physics +0808.2537 Algebraic Geometry +0808.2541 Instrumentation and Detectors +0808.2545 Differential Geometry +0808.2549 +0808.2553 Rings and Algebras +0808.2558 +0808.2563 Mesoscale and Nanoscale Physics +0808.2571 Phenomenology +0808.2578 Optimization and Control +0808.2579 Experiment +0808.2593 Probability +0808.2600 Mesoscale and Nanoscale Physics +0808.2609 General Physics +0808.2615 Theory +0808.2617 Exactly Solvable and Integrable Systems +0808.2621 Materials Science +0808.2635 History and Overview +0808.2637 Functional Analysis +cond-mat/0603650 Statistical Mechanics +cond-mat/0604481 Statistical Mechanics +math/0608558 Spectral Theory +math/0611237 Spectral Theory +0704.2001 +0705.0880 Algebraic Geometry +0705.0902 Biological Physics +0707.0021 +0707.4307 +0708.2215 Phenomenology +0709.3244 Mesoscale and Nanoscale Physics +0711.0541 Biomolecules +0711.0642 Metric Geometry +0711.2357 +0712.1163 Data Structures and Algorithms +0801.0446 Algebraic Geometry +0801.1202 Mesoscale and Nanoscale Physics +0801.2779 +0801.3386 Phenomenology +0801.3890 Strongly Correlated Electrons +0801.4064 Representation Theory +0802.0246 Representation Theory +0802.0572 Combinatorics +0803.0108 +0803.2905 Computational Physics +0804.2314 Strongly Correlated Electrons +0804.2929 Geophysics +0804.3432 Theory +0805.0002 +0805.0003 Phenomenology +0805.0006 Algebraic Geometry +0805.0010 Exactly Solvable and Integrable Systems +0805.0013 Materials Science +0805.0020 +0805.0022 Computational Geometry +0805.0025 Numerical Analysis +0805.0046 Differential Geometry +0805.0050 Information Theory +0805.0051 Information Theory +0805.0052 Number Theory +0805.0065 Information Theory +0805.0071 Functional Analysis +0805.0072 +0805.0075 Analysis of PDEs +0805.0083 Combinatorics +0805.0084 Populations and Evolution +0805.0090 Optics +0805.0091 Optics +0805.0093 +0805.0096 Optics +0805.0099 +0805.0103 +0805.0108 Information Theory +0805.0109 Combinatorics +0805.0111 Algebraic Geometry +0805.0112 Statistical Mechanics +0805.0113 Theory +0805.0116 General Physics +0805.0118 Chaotic Dynamics +0805.0119 Algebraic Geometry +0805.0120 Information Retrieval +0805.0121 Soft Condensed Matter +0805.0127 Differential Geometry +0805.0128 Differential Geometry +0805.0131 Information Theory +cond-mat/0607577 Strongly Correlated Electrons +cond-mat/0607818 Disordered Systems and Neural Networks +cond-mat/0703087 Other Condensed Matter +cond-mat/0703751 Materials Science +math/0605232 Algebraic Geometry +math/0606679 Geometric Topology +math/0609224 Probability +math/0701361 Group Theory +math/0703507 Rings and Algebras +quant-ph/0703133 +0704.0236 Differential Geometry +0704.0329 Probability +0704.3020 Probability +0704.3674 Dynamical Systems +0706.0431 Discrete Mathematics +0706.3102 +0707.0074 +0707.1745 Classical Analysis and ODEs +0709.0913 Strongly Correlated Electrons +0711.1648 Disordered Systems and Neural Networks +0711.3384 Disordered Systems and Neural Networks +0801.1241 +0801.2364 Other Condensed Matter +0801.3936 Rings and Algebras +0802.2019 +0803.3440 Soft Condensed Matter +0804.3262 Materials Science +0804.3311 Mesoscale and Nanoscale Physics +0804.4684 Mesoscale and Nanoscale Physics +0805.2859 +0806.0345 +0806.1041 Computational Complexity +0806.2703 Functional Analysis +0806.3448 +0806.3486 Strongly Correlated Electrons +0806.4531 Mesoscale and Nanoscale Physics +0807.2247 Mesoscale and Nanoscale Physics +0807.3780 Mesoscale and Nanoscale Physics +0808.0526 +0808.1342 Other Condensed Matter +0808.1351 Representation Theory +0808.1910 Probability +0808.2467 +0809.0951 Number Theory +0809.1282 Phenomenology +0809.2032 Exactly Solvable and Integrable Systems +0809.2107 +0809.2271 +0809.2279 Differential Geometry +0809.2281 Dynamical Systems +0809.2291 Metric Geometry +0809.2307 +0809.2308 Group Theory +0809.2311 +0809.2312 Algebraic Geometry +0809.2313 Functional Analysis +0809.2315 Information Theory +0809.2318 Analysis of PDEs +0809.2322 Networking and Internet Architecture +0809.2324 Lattice +0809.2326 Classical Analysis and ODEs +0809.2332 +0809.2333 Operator Algebras +0809.2341 Atomic Physics +0809.2345 Functional Analysis +0809.2346 Classical Physics +0809.2350 Information Theory +0809.2355 +0809.2360 Differential Geometry +0809.2363 Optimization and Control +0809.2365 Optimization and Control +0809.2375 Materials Science +0809.2376 +0809.2380 Algebraic Topology +0809.2381 Statistical Mechanics +0809.2390 +0809.2394 Logic in Computer Science +0809.2401 Differential Geometry +0809.2407 Numerical Analysis +0809.2413 +0809.2414 Combinatorics +0809.2415 Biological Physics +0809.2429 Optics +0809.2434 +0809.2435 Space Physics +0809.2437 +0809.2442 +0809.2443 Discrete Mathematics +0809.2457 General Physics +0809.2458 Pattern Formation and Solitons +0809.2489 Data Structures and Algorithms +0809.2493 Combinatorics +0809.2500 +0809.2511 Functional Analysis +0809.2521 Algebraic Geometry +0809.2525 Discrete Mathematics +0809.2527 +0809.2528 Algebraic Geometry +0809.2532 Performance +0809.2535 Statistical Mechanics +0809.2536 Representation Theory +0809.2537 Statistical Mechanics +0809.2541 Performance +0809.2546 Computational Complexity +0809.2549 Theory +0809.2550 +0809.2551 Combinatorics +0809.2553 Information Retrieval +0809.2554 Data Structures and Algorithms +0809.2563 Differential Geometry +0809.2565 Optics +0809.2570 Analysis of PDEs +0809.2573 Phenomenology +0809.2576 +0809.2584 Analysis of PDEs +0809.2585 Biomolecules +0809.2588 +0809.2589 Theory +cond-mat/0010044 Strongly Correlated Electrons +cond-mat/0203414 Disordered Systems and Neural Networks +cond-mat/0207618 Mesoscale and Nanoscale Physics +cond-mat/0210679 Strongly Correlated Electrons +cond-mat/0307455 Disordered Systems and Neural Networks +cond-mat/0312527 Disordered Systems and Neural Networks +cond-mat/0402471 Disordered Systems and Neural Networks +cond-mat/0403618 Disordered Systems and Neural Networks +cond-mat/0501586 Disordered Systems and Neural Networks +cond-mat/0512399 Disordered Systems and Neural Networks +cond-mat/0512450 Disordered Systems and Neural Networks +cond-mat/0604053 Statistical Mechanics +cond-mat/0607052 Strongly Correlated Electrons +math/0010199 Differential Geometry +math/0610069 Representation Theory +math/9903177 Differential Geometry +math/9905089 Differential Geometry +quant-ph/0406211 +quant-ph/0502185 +0706.0694 Combinatorics +0707.2401 Atomic Physics +0708.3201 Differential Geometry +0709.0483 +0712.1620 Representation Theory +0801.2587 Biomolecules +0802.0982 Mesoscale and Nanoscale Physics +0802.2619 Statistical Mechanics +0803.1190 Mesoscale and Nanoscale Physics +0804.0324 Theory +0804.0899 Theory +0804.1489 Geometric Topology +0804.2464 Superconductivity +0806.0378 +0806.0760 Soft Condensed Matter +0806.2544 +0806.3891 Rings and Algebras +0806.4935 +0807.1436 General Mathematics +0807.2620 Number Theory +0807.3853 +0807.4683 Operator Algebras +0808.0422 +0808.0495 Strongly Correlated Electrons +0808.2430 Disordered Systems and Neural Networks +0808.2963 +0808.3580 +0809.1482 Classical Analysis and ODEs +0809.3278 Functional Analysis +0809.5028 +0810.1013 Analysis of PDEs +0810.2283 +0810.2418 Mesoscale and Nanoscale Physics +0810.2968 +0810.3761 Group Theory +0810.4019 Experiment +0810.4124 +0810.4534 Experiment +0810.4672 Applications +0810.4710 +0810.4975 Experiment +0810.5340 Analysis of PDEs +0810.5351 Cryptography and Security +0810.5353 +0810.5362 Combinatorics +0810.5364 Operator Algebras +0810.5366 Representation Theory +0810.5371 Combinatorics +0810.5374 +0810.5380 Analysis of PDEs +0810.5381 Neurons and Cognition +0810.5386 Quantum Algebra +0810.5392 Differential Geometry +0810.5395 Quantum Algebra +0810.5405 Mesoscale and Nanoscale Physics +0810.5407 Information Retrieval +0810.5408 Mesoscale and Nanoscale Physics +0810.5413 Phenomenology +0810.5417 Differential Geometry +0810.5421 Numerical Analysis +0810.5422 +0810.5423 Numerical Analysis +0810.5424 Superconductivity +0810.5425 +0810.5429 Complex Variables +0810.5432 Plasma Physics +0810.5433 Plasma Physics +0810.5434 Quantitative Methods +0810.5435 Probability +0810.5438 Statistical Mechanics +0810.5439 Distributed, Parallel, and Cluster Computing +0810.5440 Group Theory +0810.5449 Superconductivity +0810.5456 +0810.5465 Analysis of PDEs +0810.5474 Computation +0810.5476 Materials Science +0810.5477 Data Structures and Algorithms +0810.5480 General Physics +0810.5482 Discrete Mathematics +0810.5484 Learning +0810.5486 Algebraic Geometry +0810.5490 Exactly Solvable and Integrable Systems +0810.5493 Quantum Algebra +0810.5494 Group Theory +0810.5499 +0810.5502 Statistical Mechanics +0810.5513 Representation Theory +0810.5514 Physics and Society +0810.5515 Physics and Society +0810.5516 Logic in Computer Science +0810.5518 +0810.5520 Combinatorics +0810.5522 Geometric Topology +0810.5531 Materials Science +0810.5537 Analysis of PDEs +0810.5540 Functional Analysis +0810.5548 Optics +cond-mat/0602036 Strongly Correlated Electrons +math/0601411 Differential Geometry +math/0603127 Algebraic Geometry +math/0604239 Geometric Topology +math/0610077 Functional Analysis +math/0610709 Differential Geometry +math/0701890 Combinatorics +0709.0103 Analysis of PDEs +0710.5340 Information Theory +0711.0123 Analysis of PDEs +0711.3687 Applications +0712.0271 Information Theory +0712.0900 Fluid Dynamics +0712.1658 Programming Languages +0712.1979 +0712.2226 Disordered Systems and Neural Networks +0712.2831 +0712.4074 Adaptation and Self-Organizing Systems +0802.4270 +0803.0764 +0803.1353 Chaotic Dynamics +0803.3044 Phenomenology +0804.4284 Information Theory +0805.1200 +0805.1680 Soft Condensed Matter +0805.1728 +0805.3778 Strongly Correlated Electrons +0805.4743 Strongly Correlated Electrons +0806.0045 Plasma Physics +0806.4323 Materials Science +0807.4004 Strongly Correlated Electrons +0808.0496 Strongly Correlated Electrons +0808.1731 Functional Analysis +0808.2134 Superconductivity +0808.2639 +0809.1380 Quantum Algebra +0809.1705 +0809.2531 Statistical Mechanics +0810.1069 +0810.1439 Combinatorics +0810.1684 +0810.3062 +0810.3743 +0810.4588 Complex Variables +0810.4884 Human-Computer Interaction +0811.0272 Soft Condensed Matter +0811.0970 +0811.1227 Metric Geometry +0811.1235 +0811.1239 Machine Learning +0811.1245 Differential Geometry +0811.1250 Learning +0811.1254 Combinatorics +0811.1255 Complex Variables +0811.1256 Superconductivity +0811.1260 Computation and Language +0811.1265 Operator Algebras +0811.1274 Group Theory +0811.1277 +0811.1278 Materials Science +0811.1281 Molecular Networks +0811.1289 Molecular Networks +0811.1291 +0811.1292 +0811.1293 Strongly Correlated Electrons +0811.1298 Group Theory +0811.1299 Optics +0811.1300 Number Theory +0811.1301 Distributed, Parallel, and Cluster Computing +0811.1302 Analysis of PDEs +0811.1304 Distributed, Parallel, and Cluster Computing +0811.1305 Computational Complexity +0811.1306 Representation Theory +0811.1317 Information Theory +0811.1323 Analysis of PDEs +0811.1325 Geometric Topology +0811.1326 Soft Condensed Matter +0811.1327 +0811.1328 Representation Theory +0811.1343 +0811.1349 Classical Analysis and ODEs +0811.1350 Functional Analysis +0811.1361 Atomic Physics +0811.1362 Complex Variables +0811.1363 Fluid Dynamics +0811.1365 Computational Geometry +0811.1366 Phenomenology +0811.1367 Analysis of PDEs +0811.1368 Analysis of PDEs +0811.1374 Numerical Analysis +0811.1377 Instrumentation and Detectors +0811.1384 Differential Geometry +0811.1385 Group Theory +0811.1395 Operator Algebras +0811.1399 Representation Theory +0811.1411 Fluid Dynamics +0811.1413 Fluid Dynamics +0811.1417 Atomic and Molecular Clusters +0811.1424 Materials Science +0811.1428 Materials Science +0811.1432 Materials Science +0811.1433 Optics +0811.1435 Analysis of PDEs +0811.1441 Phenomenology +0811.1443 Theory +0811.1449 Discrete Mathematics +0811.1453 Materials Science +0811.1454 +0811.1458 Phenomenology +0811.1476 Analysis of PDEs +0811.1477 Applications +0811.1482 Operator Algebras +0811.1484 Algebraic Geometry +0811.1486 Theory +0811.1487 Materials Science +0811.1490 Probability +0811.1495 Number Theory +0811.1502 +0811.1504 Distributed, Parallel, and Cluster Computing +0811.1505 Strongly Correlated Electrons +0811.1510 +0811.1513 Cellular Automata and Lattice Gases +0811.1515 Algebraic Geometry +0811.1521 Functional Analysis +0811.1522 Representation Theory +0811.1525 Combinatorics +0811.1528 Statistical Mechanics +0811.1536 Lattice +0811.1539 Differential Geometry +0811.1541 Combinatorics +0811.1544 Experiment +0811.1545 +0811.1547 Number Theory +0811.1551 Group Theory +0811.1553 Populations and Evolution +0811.1563 Atomic Physics +0811.1570 +cond-mat/0510743 Strongly Correlated Electrons +math/0607387 General Mathematics +physics/0607004 Fluid Dynamics +quant-ph/0412033 +0709.2896 Statistical Mechanics +0710.1289 Soft Condensed Matter +0712.0002 Differential Geometry +0801.2412 Combinatorics +0801.2815 K-Theory and Homology +0801.3804 Statistical Mechanics +0801.3937 Strongly Correlated Electrons +0802.3164 +0803.4328 Superconductivity +0804.1012 Optimization and Control +0805.3901 Discrete Mathematics +cs/0703027 Computation and Language +math/0111236 Dynamical Systems +math/0211386 Dynamical Systems +math/0305301 Dynamical Systems +math/0507002 Classical Analysis and ODEs +math/0511710 Differential Geometry +math/0611737 Algebraic Geometry +0705.3328 Statistical Mechanics +0705.3788 Probability +0707.3850 Materials Science +0708.0665 Superconductivity +0710.4554 +0710.5852 Disordered Systems and Neural Networks +0711.3105 Other Condensed Matter +0712.2904 Operator Algebras +0801.4930 +0802.1019 Dynamical Systems +0802.3359 Soft Condensed Matter +0803.0302 Combinatorics +0803.0922 Statistical Mechanics +0803.2703 Superconductivity +0803.3771 Mesoscale and Nanoscale Physics +0804.2161 Strongly Correlated Electrons +0804.2686 Mesoscale and Nanoscale Physics +0804.4056 +0805.0615 Information Theory +0805.3547 Instrumentation and Detectors +0805.4021 Superconductivity +0805.4732 Complex Variables +0806.0618 +0806.2193 Statistical Mechanics +0806.3310 Complex Variables +0806.3377 Analysis of PDEs +0806.4632 Soft Condensed Matter +0807.0640 Representation Theory +0807.0641 Optimization and Control +0807.0645 Experiment +0807.0651 Atomic Physics +0807.0653 Representation Theory +0807.0661 Other Computer Science +0807.0672 Computational Complexity +0807.0681 Soft Condensed Matter +0807.0684 +0807.0685 Theory +0807.0688 Representation Theory +0807.0689 Combinatorics +0807.0691 Quantum Algebra +0807.0696 Algebraic Geometry +0807.0699 General Physics +0807.0704 Logic in Computer Science +0807.0709 +0807.0716 Materials Science +0807.0718 Discrete Mathematics +0807.0723 +0807.0729 +0807.0731 +0807.0742 Biological Physics +0807.0744 Analysis of PDEs +0807.0749 Probability +0807.0757 Space Physics +0807.0769 Superconductivity +0807.0770 Strongly Correlated Electrons +0807.0774 Superconductivity +0807.0776 Functional Analysis +0807.0779 Functional Analysis +0807.0788 Probability +0807.0791 +0807.0796 Algebraic Topology +0807.0813 Differential Geometry +0807.0817 Quantum Algebra +0807.0821 Information Theory +0807.0822 Phenomenology +0807.0831 Phenomenology +0807.0832 General Physics +0807.0842 Chaotic Dynamics +0807.0845 Differential Geometry +0807.0846 Differential Geometry +0807.0847 Strongly Correlated Electrons +0807.0849 Materials Science +0807.0850 +0807.0856 Complex Variables +0807.0861 Number Theory +0807.0865 Superconductivity +0807.0868 Information Theory +0807.0871 Analysis of PDEs +0807.0881 Classical Physics +0807.0882 Analysis of PDEs +0807.0887 Networking and Internet Architecture +0807.0891 Combinatorics +0807.0892 Populations and Evolution +0807.0897 Geophysics +0807.0899 Strongly Correlated Electrons +0807.0912 Fluid Dynamics +0807.0914 Combinatorics +0807.0918 Materials Science +0807.0928 Data Structures and Algorithms +0807.0931 +0807.0939 Quantum Algebra +0807.0950 Fluid Dynamics +0807.0953 Plasma Physics +0807.0956 Numerical Analysis +0807.0957 General Physics +0807.0963 Phenomenology +0807.0964 Statistical Mechanics +0807.0967 +0807.0970 Dynamical Systems +0807.0972 Strongly Correlated Electrons +0807.0973 Differential Geometry +0807.0977 Theory +0807.0982 Algebraic Geometry +0807.0984 Superconductivity +0807.0985 Phenomenology +0807.0986 Number Theory +0807.0987 Materials Science +0807.0990 Biological Physics +0807.0991 +0807.0992 Other Computer Science +0807.0995 Dynamical Systems +0807.0997 Differential Geometry +0807.0998 Statistical Mechanics +0807.1001 Methodology +0807.1002 Category Theory +0807.1007 Algebraic Geometry +0807.1015 Probability +0807.1024 +0807.1028 +0807.1029 Optics +0807.1030 Probability +0807.1032 Group Theory +0807.1033 +0807.1039 Genomics +0807.1041 Genomics +0807.1043 +0807.1050 Optics +0807.1055 Cell Behavior +0807.1059 Tissues and Organs +0807.1061 Tissues and Organs +0807.1063 Exactly Solvable and Integrable Systems +0807.1073 General Mathematics +0807.1083 +0807.1085 +0807.1087 Optics +0807.1088 Space Physics +0807.1089 Superconductivity +cond-mat/9706227 Mesoscale and Nanoscale Physics +math/0408177 Category Theory +math/0504196 Logic +math/0604354 Algebraic Geometry +math/0701195 Commutative Algebra +quant-ph/0506001 +0705.1874 Probability +0706.0355 Theory +0708.4354 Combinatorics +0709.2286 Algebraic Topology +0709.3320 Algebraic Geometry +0710.3419 Probability +0710.4651 Probability +0712.2219 Probability +0801.0528 General Physics +0802.0726 Discrete Mathematics +0804.0165 Physics and Society +0804.1432 Functional Analysis +0804.4850 Physics and Society +0805.2556 Strongly Correlated Electrons +0807.0048 Adaptation and Self-Organizing Systems +0807.0588 Differential Geometry +0807.2030 Group Theory +0807.2209 Disordered Systems and Neural Networks +0807.2217 Disordered Systems and Neural Networks +0807.2957 Mesoscale and Nanoscale Physics +0808.2107 Phenomenology +0809.3377 Statistical Mechanics +0809.3654 Other Condensed Matter +0810.2475 Superconductivity +0810.4689 Phenomenology +0810.5277 Algebraic Geometry +0811.0123 Artificial Intelligence +0811.0895 Phenomenology +0811.1574 Representation Theory +0811.1575 Strongly Correlated Electrons +0811.1600 +0811.1607 Group Theory +0811.1618 Artificial Intelligence +0811.1622 +0811.1629 Learning +0811.1632 Fluid Dynamics +0811.1640 Applications +0811.1643 +0811.1645 Applications +0811.1651 Differential Geometry +0811.1654 Operator Algebras +0811.1655 Algebraic Topology +0811.1663 Applications +0811.1664 Computer Science and Game Theory +0811.1669 +0811.1671 +0811.1673 Optics +0811.1677 +0811.1679 Applications +0811.1683 Computational Physics +0811.1686 Applications +0811.1689 Analysis of PDEs +0811.1694 Superconductivity +0811.1697 Applications +0811.1700 Applications +0811.1701 Functional Analysis +0811.1704 Probability +0811.1705 Applications +0811.1711 Artificial Intelligence +0811.1715 Complex Variables +0811.1725 Group Theory +0811.1726 Probability +0811.1728 Superconductivity +0811.1731 +0811.1734 Numerical Analysis +0811.1738 Rings and Algebras +0811.1739 +0811.1742 Functional Analysis +0811.1744 Mesoscale and Nanoscale Physics +0811.1745 +0811.1747 Optimization and Control +0811.1751 Atmospheric and Oceanic Physics +0811.1763 Functional Analysis +0811.1765 Phenomenology +0811.1770 Information Theory +0811.1771 General Topology +astro-ph/0701774 +cond-mat/0608297 Disordered Systems and Neural Networks +cs/0612014 Multiagent Systems +math/0606055 Probability +math/0611312 Algebraic Geometry +physics/0701116 General Physics +physics/0703200 General Physics +0704.2471 +0705.1944 Strongly Correlated Electrons +0705.2287 Analysis of PDEs +0706.2789 Differential Geometry +0707.2008 Classical Analysis and ODEs +0708.0111 Biomolecules +0708.2263 +0709.1254 Phenomenology +0710.0265 Representation Theory +0710.1801 Superconductivity +0711.0476 Group Theory +0711.4841 Combinatorics +0712.0157 Representation Theory +0801.4018 Geometric Topology +0802.0094 Plasma Physics +0802.0566 Statistics Theory +0802.0601 General Physics +0802.0701 Fluid Dynamics +0802.0712 Analysis of PDEs +0802.0715 Phenomenology +0802.0716 Phenomenology +0802.0717 Phenomenology +0802.0721 Strongly Correlated Electrons +0802.0722 Complex Variables +0802.0729 Materials Science +0802.0730 Metric Geometry +0802.0731 Materials Science +0802.0742 Algebraic Geometry +0802.0745 Digital Libraries +0802.0748 Materials Science +0802.0750 +0802.0755 +0802.0756 Exactly Solvable and Integrable Systems +0802.0759 Differential Geometry +0802.0765 Probability +0802.0768 Chaotic Dynamics +0802.0769 Phenomenology +0802.0773 +0802.0776 Information Theory +0802.0778 Probability +0802.0780 Statistical Mechanics +0802.0789 Complex Variables +0802.0790 Materials Science +0802.0792 Complex Variables +0802.0794 Methodology +0802.0796 +0802.0800 Category Theory +0802.0802 Data Structures and Algorithms +0802.0803 +0802.0804 Atmospheric and Oceanic Physics +0802.0805 Differential Geometry +0802.0808 Information Theory +0802.0809 Differential Geometry +0802.0812 Geometric Topology +0802.0814 Geometric Topology +0802.0816 +0802.0817 Statistics Theory +0802.0826 Optimization and Control +0802.0832 Cryptography and Security +0802.0835 Data Structures and Algorithms +0802.0848 +0802.0849 +0802.0850 Classical Analysis and ODEs +0802.0853 Algebraic Geometry +0802.0856 Geometric Topology +0802.0858 +0802.0860 +0802.0861 Neural and Evolutionary Computing +0802.0867 Materials Science +0802.0869 Optimization and Control +cond-mat/0607738 Statistical Mechanics +cond-mat/0609009 Mesoscale and Nanoscale Physics +cond-mat/0610507 Superconductivity +cond-mat/0703620 Statistical Mechanics +cs/0601126 Information Theory +cs/0702060 Discrete Mathematics +gr-qc/0512096 +math/0406118 Combinatorics +math/0509273 Classical Analysis and ODEs +math/0511325 Rings and Algebras +math/0512614 Number Theory +math/0602163 Combinatorics +math/0603167 Differential Geometry +math/0611050 Probability +math/0612578 Dynamical Systems +math/0701405 Statistics Theory +math/0701605 Statistics Theory +nucl-th/0501080 +q-bio/0703049 Biomolecules +0704.0778 Algebraic Geometry +0709.2997 Methodology +0709.3225 Other Condensed Matter +0712.3970 Mesoscale and Nanoscale Physics +0801.1783 Computational Complexity +0801.2947 +0801.3160 Materials Science +0801.3735 Mesoscale and Nanoscale Physics +0803.0483 Subcellular Processes +0803.0780 Statistical Mechanics +0803.0942 +0803.0975 Superconductivity +0804.1783 +0804.2649 Mesoscale and Nanoscale Physics +0804.4290 Superconductivity +0804.4550 Dynamical Systems +0805.0242 Classical Analysis and ODEs +0805.0274 Classical Analysis and ODEs +0805.1291 Classical Analysis and ODEs +0805.1788 Multiagent Systems +0805.2357 Mesoscale and Nanoscale Physics +0805.2418 +0805.2990 +0805.3215 Analysis of PDEs +0806.0942 Other Condensed Matter +0806.1265 Superconductivity +0806.1839 Strongly Correlated Electrons +0806.3446 Materials Science +0806.4544 +0807.1780 Strongly Correlated Electrons +0807.3937 Physics and Society +0807.4749 Genomics +0808.2001 Materials Science +0808.3135 +0808.3184 Materials Science +0809.0179 General Physics +0809.0201 Classical Physics +0809.0918 Information Theory +0809.1089 Analysis of PDEs +0809.1090 Statistical Mechanics +0809.1115 +0809.1339 Theory +0809.1433 Differential Geometry +0809.1437 Programming Languages +0809.1443 +0809.1446 +0809.1448 Other Condensed Matter +0809.1450 Algebraic Topology +0809.1451 Theory +0809.1452 +0809.1458 Commutative Algebra +0809.1463 +0809.1465 Computer Science and Game Theory +0809.1466 +0809.1471 Physics Education +0809.1473 Populations and Evolution +0809.1476 Symbolic Computation +0809.1478 +0809.1485 Accelerator Physics +0809.1488 Numerical Analysis +0809.1493 Learning +0809.1495 Statistical Mechanics +0809.1496 +0809.1504 Algebraic Topology +0809.1505 +0809.1518 Soft Condensed Matter +0809.1520 Materials Science +0809.1522 Combinatorics +0809.1524 Geometric Topology +0809.1531 +0809.1537 +0809.1542 Analysis of PDEs +0809.1543 Materials Science +0809.1546 Dynamical Systems +0809.1555 Spectral Theory +0809.1560 Group Theory +0809.1563 Representation Theory +0809.1565 Experiment +0809.1575 +0809.1578 Populations and Evolution +0809.1579 Combinatorics +0809.1582 Accelerator Physics +0809.1584 Symplectic Geometry +0809.1586 Combinatorics +0809.1601 Theory +0809.1603 Disordered Systems and Neural Networks +0809.1604 Combinatorics +0809.1605 Quantitative Methods +0809.1606 +0809.1613 Materials Science +0809.1615 Combinatorics +0809.1618 Artificial Intelligence +0809.1626 Dynamical Systems +0809.1630 Neurons and Cognition +0809.1633 Accelerator Physics +0809.1634 Materials Science +0809.1635 Number Theory +0809.1636 Number Theory +0809.1641 Theory +astro-ph/0612228 +math/0505507 Number Theory +0706.0153 Statistics Theory +0706.3710 Information Theory +0707.0696 +0709.3288 +0710.3747 +0712.4284 Strongly Correlated Electrons +0801.0123 Materials Science +0803.0073 Operator Algebras +0804.1615 General Physics +0804.3154 +0804.3339 Superconductivity +0804.3977 Other Condensed Matter +0804.4446 +0805.2500 Statistical Mechanics +0805.2959 Superconductivity +0806.0215 Quantitative Methods +0806.1138 Statistical Mechanics +0806.1487 +0806.3349 Strongly Correlated Electrons +0806.3549 Functional Analysis +0807.1730 Superconductivity +0807.4244 Superconductivity +0807.4603 Statistical Mechanics +0807.5111 Data Structures and Algorithms +0809.1826 Optimization and Control +0809.2231 Fluid Dynamics +0809.3090 Soft Condensed Matter +0809.3250 Computation and Language +0809.3260 +0809.3261 Analysis of PDEs +0809.3263 Algebraic Geometry +0809.3268 Mesoscale and Nanoscale Physics +0809.3270 General Mathematics +0809.3274 Functional Analysis +0809.3275 Cellular Automata and Lattice Gases +0809.3276 Networking and Internet Architecture +0809.3279 Networking and Internet Architecture +0809.3280 Networking and Internet Architecture +0809.3281 Commutative Algebra +0809.3283 Networking and Internet Architecture +0809.3285 Networking and Internet Architecture +0809.3294 Pattern Formation and Solitons +0809.3296 Materials Science +0809.3297 +0809.3306 +0809.3307 Rings and Algebras +0809.3309 Dynamical Systems +0809.3314 +0809.3315 Classical Analysis and ODEs +0809.3318 Classical Physics +0809.3330 Logic +0809.3335 Complex Variables +0809.3345 +0809.3346 +0809.3348 Phenomenology +0809.3351 +0809.3352 Computer Vision and Pattern Recognition +0809.3353 Commutative Algebra +0809.3360 Strongly Correlated Electrons +0809.3369 Analysis of PDEs +0809.3370 Information Theory +0809.3372 Group Theory +0809.3378 K-Theory and Homology +0809.3380 +0809.3381 +0809.3384 Robotics +0809.3385 Functional Analysis +0809.3386 Superconductivity +0809.3391 Analysis of PDEs +0809.3392 +0809.3394 Category Theory +0809.3403 +0809.3410 Number Theory +0809.3414 Experiment +0809.3415 Networking and Internet Architecture +0809.3417 Algebraic Geometry +0809.3421 Classical Analysis and ODEs +0809.3422 Mesoscale and Nanoscale Physics +0809.3425 Logic +0809.3430 Logic +0809.3431 Phenomenology +0809.3435 +0809.3438 Functional Analysis +0809.3440 Geophysics +0809.3441 Logic +0809.3447 Human-Computer Interaction +cond-mat/9704221 Disordered Systems and Neural Networks +cs/0509069 Data Structures and Algorithms +hep-lat/0602013 Lattice +hep-lat/0701016 Lattice +hep-th/0605080 Theory +math/0303247 Geometric Topology +math/0510370 Geometric Topology +math/0601451 Differential Geometry +math/0604208 Commutative Algebra +0712.0758 Materials Science +0712.4201 Computational Physics +0801.0393 Probability +0801.1310 +0804.1425 Number Theory +0804.4651 Soft Condensed Matter +0806.0816 Superconductivity +0806.3232 Chemical Physics +0806.4697 Functional Analysis +0807.0557 Theory +cond-mat/0612235 Superconductivity +math/0702847 Complex Variables +0704.2567 Statistical Mechanics +0706.2213 Geometric Topology +0711.1633 +0711.3015 Strongly Correlated Electrons +0801.2384 Combinatorics +0802.1440 Classical Analysis and ODEs +0802.1759 +0803.0059 +0704.3700 Fluid Dynamics +0707.2041 +0708.0553 Commutative Algebra +0708.3105 Commutative Algebra +0708.3880 Algebraic Geometry +0710.3707 Materials Science +0710.5258 Superconductivity +0801.2243 Group Theory +0802.0368 +0802.2822 +0803.1743 Algebraic Geometry +0803.2196 Statistical Mechanics +0804.0107 Statistical Mechanics +0804.1034 Molecular Networks +0804.2506 Representation Theory +0805.1959 Mesoscale and Nanoscale Physics +0805.4372 Superconductivity +0806.0676 Information Theory +0806.1992 Mesoscale and Nanoscale Physics +0807.1514 Pattern Formation and Solitons +0807.4765 Biomolecules +0807.4942 Mesoscale and Nanoscale Physics +0808.0844 History and Overview +0808.1433 Optics +0808.3481 Lattice +0808.3679 Other Condensed Matter +0808.4057 Methodology +0809.0373 Algebraic Geometry +0809.1188 Algebraic Geometry +0809.1660 +0809.1874 +0809.1879 Algebraic Geometry +0809.1883 Combinatorics +0809.1891 Commutative Algebra +0809.1895 Data Structures and Algorithms +0809.1896 Optics +0809.1897 Strongly Correlated Electrons +0809.1900 Information Theory +0809.1910 Information Theory +0809.1913 Phenomenology +0809.1916 Distributed, Parallel, and Cluster Computing +0809.1920 Pattern Formation and Solitons +0809.1921 Chemical Physics +0809.1922 Rings and Algebras +0809.1925 Phenomenology +0809.1929 +0809.1935 +0809.1937 Soft Condensed Matter +0809.1945 +0809.1946 +0809.1950 +0809.1952 Functional Analysis +0809.1956 Plasma Physics +0809.1957 General Physics +0809.1960 Combinatorics +0809.1961 Biological Physics +0809.1962 Fluid Dynamics +0809.1963 Databases +0809.1965 Databases +0809.1970 +0809.1971 Databases +0809.1980 Combinatorics +0809.1981 Databases +0809.1983 Differential Geometry +0809.1989 Discrete Mathematics +0809.1992 Differential Geometry +0809.1995 Operator Algebras +0809.1997 Theory +0809.1998 Phenomenology +0809.2000 Probability +0809.2002 Phenomenology +0809.2004 Soft Condensed Matter +0809.2017 Optimization and Control +0809.2021 Commutative Algebra +0809.2025 +0809.2031 +0809.2065 Number Theory +0809.2068 Commutative Algebra +0809.2071 Plasma Physics +0809.2072 Numerical Analysis +0809.2074 Number Theory +0809.2075 Data Structures and Algorithms +0809.2082 Probability +0809.2085 Learning +0809.2086 Algebraic Geometry +cond-mat/0105312 Mesoscale and Nanoscale Physics +cond-mat/0412171 Statistical Mechanics +cond-mat/0611684 Materials Science +cs/0510038 Learning +nlin/0609015 Chaotic Dynamics +quant-ph/0503093 +quant-ph/0702246 +0704.1869 +0706.1002 Computational Geometry +0706.3205 +0707.0620 +0707.1049 Superconductivity +0707.4275 Number Theory +0709.3914 Representation Theory +0710.3260 Strongly Correlated Electrons +0710.4486 Computational Engineering, Finance, and Science +0710.5546 Superconductivity +0801.2632 Commutative Algebra +0802.3221 +0802.4327 +0803.1264 +0803.2265 Other Condensed Matter +0803.4007 Mesoscale and Nanoscale Physics +0804.0013 Strongly Correlated Electrons +0804.0356 Strongly Correlated Electrons +0804.1583 Group Theory +0804.1742 General Physics +0804.2076 Mesoscale and Nanoscale Physics +0805.1868 Strongly Correlated Electrons +0805.3542 +0806.4691 Plasma Physics +0807.3585 +0808.3635 Statistical Mechanics +0809.1315 Phenomenology +0809.1409 Software Engineering +0809.1814 Other Condensed Matter +0809.4171 Functional Analysis +0810.1241 Rings and Algebras +0810.1997 Computational Geometry +0810.4403 Other Condensed Matter +0810.4723 +0810.4796 Data Structures and Algorithms +0810.5192 +0810.5567 Probability +0811.0405 Computers and Society +0811.0622 Probability +0811.0623 Computational Complexity +0811.0625 Soft Condensed Matter +0811.0633 Adaptation and Self-Organizing Systems +0811.0636 Complex Variables +0811.0640 +0811.0653 Fluid Dynamics +0811.0659 Methodology +0811.0663 +0811.0664 Statistical Mechanics +0811.0669 Soft Condensed Matter +0811.0672 Statistics Theory +0811.0677 Physics Education +0811.0678 Probability +0811.0680 +0811.0683 Statistics Theory +0811.0686 Classical Analysis and ODEs +0811.0687 Algebraic Geometry +0811.0688 Cellular Automata and Lattice Gases +0811.0689 Algebraic Geometry +0811.0691 Theory +0811.0699 Computational Complexity +0811.0705 Information Theory +0811.0706 Exactly Solvable and Integrable Systems +0811.0709 Computers and Society +0811.0712 Geometric Topology +0811.0717 Applications +0811.0719 Information Retrieval +0811.0722 +0811.0734 +0811.0740 Combinatorics +0811.0741 Databases +0811.0746 +0811.0751 Group Theory +0811.0752 +0811.0753 Statistics Theory +0811.0754 Algebraic Geometry +0811.0755 Geophysics +0811.0757 Statistics Theory +0811.0763 Algebraic Geometry +0811.0765 Numerical Analysis +0811.0766 +0811.0767 +0811.0769 Quantitative Methods +0811.0778 Information Theory +0811.0788 Experiment +0811.0793 +0811.0794 Differential Geometry +0811.0803 Algebraic Topology +0811.0808 Functional Analysis +0811.0811 General Literature +math-ph/0611052 +math/0401223 Number Theory +math/0406236 Number Theory +math/0503317 Number Theory +math/0607474 Number Theory +math/0610539 Number Theory +math/0611427 Number Theory +math/0701912 Number Theory +math/9712278 +math/9801140 +physics/9611006 +physics/9611008 +physics/9612003 +physics/9612015 +physics/9701004 +physics/9701006 +physics/9701009 +physics/9701010 +physics/9702018 +physics/9702025 +physics/9702030 +physics/9702031 +physics/9702033 +physics/9703007 +physics/9703022 +physics/9703030 +physics/9703033 +physics/9704001 +physics/9704007 +physics/9705011 +physics/9705021 +physics/9706009 +physics/9707012 +physics/9707013 +physics/9707023 +physics/9708001 +physics/9708015 +physics/9708031 +physics/9708035 Optics +physics/9709008 +physics/9709011 +physics/9709016 +physics/9709044 +physics/9709045 +physics/9710002 +physics/9710004 Fluid Dynamics +physics/9710006 +physics/9710016 +physics/9710022 +physics/9710032 +physics/9710037 +physics/9711010 +physics/9711013 +physics/9711027 Computational Physics +physics/9712002 +physics/9712004 +physics/9712006 +physics/9712010 +physics/9712019 +physics/9712027 +physics/9712034 +physics/9712045 +physics/9712052 +physics/9712054 +physics/9801010 +physics/9801011 +physics/9801016 +physics/9801019 +physics/9802027 +physics/9802044 +physics/9802046 +physics/9803002 +physics/9803017 Optics +physics/9803028 +physics/9803030 +0704.0450 Strongly Correlated Electrons +0707.0335 Optimization and Control +0707.2732 Combinatorics +0708.2895 Probability +0709.0291 Combinatorics +0709.2242 +0709.3828 +0709.4284 +0710.0735 Disordered Systems and Neural Networks +0710.4052 Other Condensed Matter +0711.0130 Mesoscale and Nanoscale Physics +0711.2835 Computational Geometry +0711.3194 +0712.1122 +0712.1125 +0712.3851 Other Condensed Matter +0801.2707 +0801.4576 Materials Science +0801.4593 Geometric Topology +0801.4605 K-Theory and Homology +0802.2049 Group Theory +0802.2856 Data Structures and Algorithms +0802.3675 Algebraic Geometry +0802.4101 Information Theory +0802.4110 Superconductivity +0802.4112 Physics and Society +0802.4115 Numerical Analysis +0802.4116 Mesoscale and Nanoscale Physics +0802.4120 Analysis of PDEs +0802.4125 Algebraic Geometry +0802.4126 Computational Engineering, Finance, and Science +0802.4131 Logic in Computer Science +0802.4133 Statistical Mechanics +0802.4145 +0802.4146 +0802.4147 Disordered Systems and Neural Networks +0802.4153 Experiment +0802.4156 Optimization and Control +0802.4164 Materials Science +0802.4169 Theory +0802.4175 Mesoscale and Nanoscale Physics +0802.4177 Theory +0802.4179 Disordered Systems and Neural Networks +0802.4180 Chemical Physics +0802.4181 Category Theory +0802.4183 Probability +0802.4186 Combinatorics +0802.4189 Materials Science +0802.4191 Applications +0802.4193 +0802.4197 Superconductivity +0802.4199 Soft Condensed Matter +0802.4219 +0802.4224 Symplectic Geometry +0802.4233 Information Theory +0802.4243 Classical Physics +0802.4244 Networking and Internet Architecture +0802.4254 +0802.4267 Mesoscale and Nanoscale Physics +0802.4274 +0802.4279 Molecular Networks +0802.4280 Algebraic Geometry +0802.4281 Dynamical Systems +0802.4283 Dynamical Systems +cs/0404044 Computational Complexity +gr-qc/0405028 +math/0408361 Geometric Topology +math/0602026 Group Theory +math/0609433 Group Theory +math/0609685 Geometric Topology +math/0609735 Operator Algebras +math/0701788 Logic +math/0703675 Probability +q-bio/0703059 Molecular Networks +quant-ph/0701092 +0704.1349 Analysis of PDEs +0705.0178 Cryptography and Security +0705.1064 Statistical Mechanics +0706.2950 Mesoscale and Nanoscale Physics +0707.1175 Quantum Algebra +0707.2624 Chaotic Dynamics +0707.4193 Fluid Dynamics +0707.4416 Physics and Society +0708.0456 Soft Condensed Matter +0708.2774 +0708.2902 Statistical Mechanics +0709.1111 +0709.4591 Strongly Correlated Electrons +0710.1967 Superconductivity +0710.3175 Complex Variables +0711.1615 Algebraic Geometry +0712.1776 Optics +0712.3327 Information Theory +0712.3548 +0712.3990 Other Condensed Matter +0712.4124 Classical Analysis and ODEs +0801.0398 Computational Complexity +0801.0594 +0801.0629 Phenomenology +0801.0844 Populations and Evolution +0801.0939 Combinatorics +0801.1258 +0801.1322 Chemical Physics +0801.1327 History and Philosophy of Physics +0801.1330 Optics +0801.1332 Group Theory +0801.1336 Artificial Intelligence +0801.1338 Classical Analysis and ODEs +0801.1341 Symbolic Computation +0801.1353 Operator Algebras +0801.1365 +0801.1367 Number Theory +0801.1376 +0801.1379 +0801.1390 Combinatorics +0801.1391 Mesoscale and Nanoscale Physics +0801.1400 +0801.1412 Geometric Topology +0801.1415 Computation and Language +0801.1417 Geometric Topology +0801.1418 Number Theory +0801.1419 Distributed, Parallel, and Cluster Computing +0801.1420 Statistical Mechanics +0801.1424 Atomic and Molecular Clusters +0801.1428 Theory +0801.1437 Pattern Formation and Solitons +0801.1439 +0801.1440 Machine Learning +0801.1441 General Mathematics +0801.1447 Differential Geometry +0801.1454 Pattern Formation and Solitons +0801.1457 Other Condensed Matter +0801.1459 Data Analysis, Statistics and Probability +0801.1462 Rings and Algebras +0801.1468 Materials Science +0801.1471 +0801.1472 +0801.1476 Fluid Dynamics +0801.1479 Fluid Dynamics +0801.1482 Plasma Physics +0801.1493 Classical Analysis and ODEs +0801.1500 Graphics +cond-mat/0504355 Materials Science +cond-mat/0609352 Materials Science +cond-mat/0612207 Strongly Correlated Electrons +cond-mat/0612223 Materials Science +math/0502220 Probability +math/0503312 Quantum Algebra +math/0505459 Complex Variables +math/0604442 Algebraic Topology +math/0607221 Algebraic Geometry +math/0612275 Algebraic Geometry +physics/0702183 Optics +0704.0479 Algebraic Geometry +0704.3275 Strongly Correlated Electrons +0706.0498 Statistics Theory +0706.1253 Strongly Correlated Electrons +0707.1742 Number Theory +0707.1743 Number Theory +0707.3671 Other Quantitative Biology +0708.1959 Mesoscale and Nanoscale Physics +0708.3107 Classical Analysis and ODEs +0708.4294 Probability +0709.1882 +0709.2147 +0710.0059 Computational Physics +0710.3865 Statistical Mechanics +0711.1850 Geometric Topology +0712.4027 Numerical Analysis +0801.1861 Mesoscale and Nanoscale Physics +0801.1877 Physics and Society +0802.0700 Superconductivity +0802.0964 Methodology +0802.2846 Data Structures and Algorithms +0802.3950 Statistical Mechanics +0802.4020 Statistics Theory +0803.0930 Physics and Society +0803.2122 Combinatorics +0804.1610 Quantum Algebra +0804.3727 Superconductivity +0804.3954 Complex Variables +0804.4499 +0805.1078 +0805.2309 +0805.2936 Populations and Evolution +0805.2961 +0805.2963 +0805.2981 Theory +0805.2992 Soft Condensed Matter +0805.2994 Soft Condensed Matter +0805.2998 Group Theory +0805.3004 Experiment +0805.3005 Machine Learning +0805.3006 Strongly Correlated Electrons +0805.3021 +0805.3026 Classical Analysis and ODEs +0805.3037 Phenomenology +0805.3041 Numerical Analysis +0805.3050 General Physics +0805.3058 Computational Complexity +0805.3069 +0805.3072 Rings and Algebras +0805.3075 Phenomenology +0805.3077 +0805.3079 Computation +0805.3080 Algebraic Geometry +0805.3087 Optimization and Control +0805.3090 Materials Science +0805.3092 Fluid Dynamics +0805.3095 Differential Geometry +0805.3100 Phenomenology +0805.3101 Theory +0805.3105 Plasma Physics +0805.3108 +0805.3112 Phenomenology +0805.3113 Probability +0805.3118 Information Theory +0805.3119 Experiment +0805.3126 Artificial Intelligence +0805.3137 Soft Condensed Matter +0805.3148 Differential Geometry +0805.3149 Numerical Analysis +astro-ph/0212010 +math/0406537 Differential Geometry +math/0410592 Combinatorics +math/0411044 Classical Analysis and ODEs +math/0506629 Quantum Algebra +math/0511333 Combinatorics +math/0701005 Combinatorics +math/0701630 K-Theory and Homology +physics/0502143 Instrumentation and Detectors +0707.0830 +0707.3375 Classical Analysis and ODEs +0709.3149 Commutative Algebra +0711.2975 Other Condensed Matter +0711.3735 +0711.4392 Differential Geometry +0712.1253 Superconductivity +0712.1437 +0712.4076 Analysis of PDEs +0801.2867 +0802.0665 Rings and Algebras +0802.3189 Algebraic Geometry +0803.3286 Materials Science +0803.3914 Materials Science +0804.1525 +0804.3775 Superconductivity +0806.0200 +0806.2896 +0806.4462 +0806.4507 Probability +0807.1836 Differential Geometry +0807.3360 Differential Geometry +0807.4248 Geometric Topology +0807.4861 Phenomenology +0807.4927 Geometric Topology +0807.4938 Logic +0807.4941 +0807.4945 Optics +0807.4946 +0807.4947 Logic +0807.4952 Dynamical Systems +0807.4955 Group Theory +0807.4959 Materials Science +0807.4960 Experiment +0807.4963 Dynamical Systems +0807.4978 Experiment +0807.4982 Analysis of PDEs +0807.4983 +0807.4995 Information Theory +0807.5007 Statistical Mechanics +0807.5008 Statistics Theory +0807.5009 Mesoscale and Nanoscale Physics +0807.5011 Rings and Algebras +0807.5015 Differential Geometry +0807.5017 Rings and Algebras +0807.5022 Optimization and Control +0807.5023 Classical Physics +0807.5028 Combinatorics +0807.5035 Probability +0807.5036 Experiment +0807.5037 Number Theory +0807.5045 Superconductivity +0807.5048 Optics +0807.5060 Group Theory +0807.5068 Populations and Evolution +0807.5078 Analysis of PDEs +0807.5082 Popular Physics +0807.5086 Materials Science +0807.5087 Phenomenology +0807.5088 +0807.5090 Geometric Topology +0807.5093 +0807.5094 Functional Analysis +0807.5097 Phenomenology +0807.5115 Differential Geometry +0807.5117 K-Theory and Homology +0807.5128 Phenomenology +0807.5130 General Physics +0807.5131 Complex Variables +0807.5138 Group Theory +hep-ph/0503247 Phenomenology +math/0302075 Geometric Topology +math/0506227 Probability +math/0606602 Probability +math/0609552 Group Theory +math/0612549 Algebraic Topology +math/0612589 Algebraic Topology +math/0703088 Probability +math/0703120 Number Theory +quant-ph/0510201 +quant-ph/0510207 +0704.0002 Combinatorics +0707.2125 Differential Geometry +0710.5624 +0712.0932 Computer Vision and Pattern Recognition +0801.4076 Complex Variables +0802.2972 Superconductivity +0802.4213 Mesoscale and Nanoscale Physics +0804.0305 Representation Theory +0805.1587 Phenomenology +0807.1641 Algebraic Geometry +0807.1850 +0807.4275 Symplectic Geometry +0808.1164 General Mathematics +0808.2171 Atomic Physics +0808.3704 Fluid Dynamics +0809.0059 Statistical Mechanics +0811.2773 Phenomenology +0811.3352 Other Condensed Matter +0811.3487 Materials Science +0811.3653 Populations and Evolution +0812.0213 +0812.1951 Computational Geometry +0812.2019 +0812.2089 Theory +cond-mat/0702187 Strongly Correlated Electrons +hep-th/0602024 Theory +physics/0509126 Computational Physics +0705.0770 Materials Science +0705.0813 Superconductivity +0707.3855 +0707.4203 Numerical Analysis +0708.0404 Mesoscale and Nanoscale Physics +0708.1223 Materials Science +0710.3155 Disordered Systems and Neural Networks +0711.0789 Strongly Correlated Electrons +0711.2168 Mesoscale and Nanoscale Physics +0711.4316 Number Theory +0711.4632 Statistical Mechanics +0712.1867 Probability +0712.3801 Symplectic Geometry +0801.3502 Soft Condensed Matter +0801.4126 +0802.0753 Statistical Mechanics +0802.1367 Materials Science +0803.0962 Molecular Networks +physics/0611020 Fluid Dynamics +0705.1602 Superconductivity +0706.0690 Algebraic Geometry +0706.4202 Mesoscale and Nanoscale Physics +0707.0432 Commutative Algebra +0707.1376 +0707.1807 Mesoscale and Nanoscale Physics +0707.2280 Optics +0707.4172 Strongly Correlated Electrons +0708.0584 +0711.1856 Cryptography and Security +0711.4259 +0712.1637 +0712.2205 +0712.3258 Optics +0712.3687 Probability +0712.3741 Lattice +0712.3867 +0712.4061 Algebraic Geometry +0712.4069 Group Theory +0712.4383 Phenomenology +cond-mat/0611749 Statistical Mechanics +math-ph/0702018 +math/0308203 Differential Geometry +math/0407514 Differential Geometry +math/0612660 Symplectic Geometry +quant-ph/0510212 +0704.0589 General Finance +0704.0745 Computational Finance +0704.1225 General Finance +0704.3961 +0705.0053 Portfolio Management +0705.1056 General Finance +0705.2097 Portfolio Management +0705.3319 Trading and Market Microstructure +0705.3760 Pricing of Securities +0705.4487 General Finance +0706.0051 Portfolio Management +0706.0468 Portfolio Management +0706.0474 Portfolio Management +0706.0478 Portfolio Management +0707.3609 Metric Geometry +0708.1715 Portfolio Management +0708.3015 +0708.3448 +0709.0976 Trading and Market Microstructure +0709.2070 Pricing of Securities +0709.3216 Soft Condensed Matter +0710.5301 Computational Finance +0711.2880 Physics and Society +0711.4106 Differential Geometry +0712.1343 Computational Finance +0712.3537 Statistical Finance +0712.3836 Group Theory +0801.1397 Biological Physics +0801.2591 +0801.4220 Statistical Finance +0801.4941 Portfolio Management +0802.3250 Pricing of Securities +0802.3256 Strongly Correlated Electrons +0802.4460 Statistical Finance +0803.1364 Portfolio Management +0803.1815 Probability +0803.1877 Pricing of Securities +0803.3093 Portfolio Management +0803.3220 Strongly Correlated Electrons +0803.3284 Probability +0804.0853 Probability +0804.0900 Computational Finance +0804.2820 Phenomenology +0804.2897 Commutative Algebra +0804.3000 Optimization and Control +0804.3900 Pricing of Securities +0805.0122 Portfolio Management +0805.0611 Computational Finance +0805.2386 Optimization and Control +0805.2574 Representation Theory +0805.2873 +0805.3213 Statistical Finance +0805.3885 +0805.4365 +0805.4468 +0806.0240 Probability +0806.0287 Pricing of Securities +0806.0307 Pricing of Securities +0806.2358 Risk Management +0806.2648 Superconductivity +0806.4061 Portfolio Management +0806.4675 Computational Finance +0807.0309 Pricing of Securities +0807.1213 Computational Finance +0807.1227 Computational Finance +0807.2604 Other Condensed Matter +0807.2763 Atomic Physics +0807.2962 Pricing of Securities +0807.3627 Other Condensed Matter +0807.3665 Statistical Mechanics +0808.0151 +0808.0573 Geometric Topology +0808.1248 History and Philosophy of Physics +0808.2715 Strongly Correlated Electrons +0808.2892 Computational Finance +0808.3370 Mesoscale and Nanoscale Physics +0808.3453 Information Theory +0808.3712 Information Theory +0808.3851 +0809.0484 General Physics +0809.1254 Strongly Correlated Electrons +0809.1346 Superconductivity +0809.1393 Computational Finance +0810.1901 +0810.1948 Optics +0810.2002 Optics +0810.4064 Mesoscale and Nanoscale Physics +0810.4392 Algebraic Geometry +0810.5694 Statistical Mechanics +0810.5698 Pricing of Securities +0811.0128 +0811.0376 Statistical Finance +0811.0473 Statistical Finance +0811.0591 Computational Finance +0811.0800 Risk Management +0811.1455 Differential Geometry +0811.2641 Group Theory +0811.3109 Number Theory +0811.3284 Networking and Internet Architecture +0812.1299 Phenomenology +0812.1394 Information Retrieval +0812.1561 +0812.1567 +0812.1570 +0812.1573 Analysis of PDEs +0812.1583 Experiment +0812.1585 Soft Condensed Matter +0812.1587 Data Structures and Algorithms +0812.1595 Discrete Mathematics +0812.1596 Theory +0812.1597 Information Theory +0812.1599 Multiagent Systems +0812.1600 Logic +0812.1610 Phenomenology +0812.1612 Quantum Algebra +0812.1615 Machine Learning +0812.1616 Combinatorics +0812.1622 Mesoscale and Nanoscale Physics +0812.1624 Optimization and Control +0812.1626 +0812.1628 Networking and Internet Architecture +0812.1630 +0812.1634 Algebraic Geometry +0812.1637 General Physics +0812.1641 Metric Geometry +0812.1642 +0812.1646 Analysis of PDEs +0812.1647 Graphics +0812.1653 Classical Physics +0812.1656 Genomics +0812.1662 +0812.1674 Category Theory +0812.1675 +0812.1677 +0812.1679 History and Philosophy of Physics +0812.1685 Rings and Algebras +0812.1687 Number Theory +0812.1688 Classical Physics +0812.1689 Number Theory +0812.1692 Group Theory +0812.1697 Optimization and Control +0812.1701 Strongly Correlated Electrons +0812.1706 +0812.1711 +0812.1717 Materials Science +0812.1720 Metric Geometry +0812.1732 +0812.1735 +0812.1743 +0812.1748 +0812.1751 +0812.1752 Probability +0812.1754 General Physics +0812.1757 History and Philosophy of Physics +0812.1760 +0812.1763 Operator Algebras +0812.1764 Strongly Correlated Electrons +0812.1766 +0812.1775 Probability +0812.1778 Information Theory +0812.1779 Probability +0812.1780 Information Theory +0812.1783 Geometric Topology +0812.1790 Theory +cond-mat/0001117 Statistical Mechanics +cond-mat/0001253 Statistical Mechanics +cond-mat/0003025 Statistical Mechanics +cond-mat/0004308 Statistical Mechanics +cond-mat/0008057 Statistical Mechanics +cond-mat/0008069 Statistical Mechanics +cond-mat/0010222 Statistical Mechanics +cond-mat/0103020 Statistical Mechanics +cond-mat/0104127 Statistical Mechanics +cond-mat/0104295 Statistical Mechanics +cond-mat/0104318 Statistical Mechanics +cond-mat/0106520 Statistical Mechanics +cond-mat/0107208 Statistical Mechanics +cond-mat/0109139 Statistical Mechanics +cond-mat/0111563 Statistical Mechanics +cond-mat/0202356 Statistical Mechanics +cond-mat/0203166 Statistical Mechanics +cond-mat/0203304 Statistical Mechanics +cond-mat/0204593 Statistical Mechanics +cond-mat/0205078 Statistical Mechanics +cond-mat/0207475 Statistical Mechanics +cond-mat/0208191 Soft Condensed Matter +cond-mat/0209446 Statistical Mechanics +cond-mat/0209475 Statistical Mechanics +cond-mat/0210513 Statistical Mechanics +cond-mat/0211317 Statistical Mechanics +cond-mat/0211534 Statistical Mechanics +cond-mat/0302402 Other Condensed Matter +cond-mat/0302579 Statistical Mechanics +cond-mat/0303271 Statistical Mechanics +cond-mat/0303304 Statistical Mechanics +cond-mat/0304601 Statistical Mechanics +cond-mat/0305062 Statistical Mechanics +cond-mat/0306605 Statistical Mechanics +cond-mat/0307244 Statistical Mechanics +cond-mat/0307341 Statistical Mechanics +cond-mat/0309533 Statistical Mechanics +cond-mat/0311155 Statistical Mechanics +cond-mat/0312568 Statistical Mechanics +cond-mat/0401308 Statistical Mechanics +cond-mat/0402240 Statistical Mechanics +cond-mat/0404107 Other Condensed Matter +cond-mat/0404520 Other Condensed Matter +cond-mat/0404680 Other Condensed Matter +cond-mat/0405646 Other Condensed Matter +cond-mat/0408143 Other Condensed Matter +cond-mat/0501002 Other Condensed Matter +cond-mat/0503532 Disordered Systems and Neural Networks +cond-mat/9710197 Statistical Mechanics +cond-mat/9808168 Statistical Mechanics +cond-mat/9810257 Disordered Systems and Neural Networks +cond-mat/9811197 Statistical Mechanics +cond-mat/9901277 Statistical Mechanics +cond-mat/9901279 Statistical Mechanics +cond-mat/9902045 Statistical Mechanics +cond-mat/9907339 Disordered Systems and Neural Networks +cs/0703105 Information Theory +hep-ph/0607179 Phenomenology +math-ph/0412071 +math-ph/0607066 +math/0103118 Probability +math/0104190 Probability +math/0208130 Optimization and Control +math/0211383 Probability +math/0301278 Optimization and Control +math/0302243 Optimization and Control +math/0305010 Probability +math/0305017 Probability +math/0305274 Probability +math/0307197 Probability +math/0310223 Statistics Theory +math/0401144 Probability +math/0402456 Analysis of PDEs +math/0405290 Probability +math/0405293 Probability +math/0407119 Probability +math/0407127 Probability +math/0410453 Probability +math/0411034 Statistics Theory +math/0501045 Probability +math/0503013 Probability +math/0503055 Statistics Theory +math/0503314 Statistics Theory +math/0503473 Probability +math/0503516 Probability +math/0503541 Probability +math/0503579 Probability +math/0505208 Probability +math/0505243 Probability +math/0506125 Numerical Analysis +math/0506378 Statistics Theory +math/0507082 Statistics Theory +math/0508448 Probability +math/0508489 Probability +math/0509016 Probability +math/0509232 Analysis of PDEs +math/0509503 Probability +math/0510333 Optimization and Control +math/0511234 Statistics Theory +math/0601627 Probability +math/0602178 Probability +math/0602451 Probability +math/0602462 Probability +math/0602521 Probability +math/0602532 Probability +math/0602592 Probability +math/0603041 Probability +math/0603284 Probability +math/0603316 Probability +math/0604302 Probability +math/0604316 Probability +math/0604503 Algebraic Geometry +math/0605051 Probability +math/0605065 Probability +math/0606471 Statistics Theory +math/0607112 Probability +math/0607212 Probability +math/0607617 Probability +math/0607775 Probability +math/0609402 Probability +math/0609403 Probability +math/0610224 Probability +math/0610621 Probability +math/0610749 Probability +math/0611274 Statistics Theory +math/0611644 Probability +math/0611869 Probability +math/0612034 Probability +math/0612035 Probability +math/0612181 Probability +math/0612222 Group Theory +math/0612341 Probability +math/0702115 Group Theory +math/0702405 Probability +math/0702409 Probability +math/0702413 Probability +math/0702423 Probability +math/0702435 Analysis of PDEs +math/0702828 Probability +math/0702893 Probability +math/0703022 Probability +math/0703424 Probability +math/0703743 Probability +math/0703782 Optimization and Control +math/0703824 Optimization and Control +math/0703828 Optimization and Control +math/0703833 Optimization and Control +math/0703862 Optimization and Control +math/9805014 Probability +math/9806127 Probability +nlin/0108022 Adaptation and Self-Organizing Systems +nlin/0205011 Adaptation and Self-Organizing Systems +nlin/0403056 Exactly Solvable and Integrable Systems +physics/0112045 Physics and Society +physics/0305089 Physics and Society +physics/0308062 Computational Physics +physics/0503163 Physics and Society +physics/0505032 Physics and Society +physics/0505047 Physics and Society +physics/0505079 Physics and Society +physics/0505210 Physics and Society +physics/0508104 Data Analysis, Statistics and Probability +physics/0602102 Physics and Society +physics/0602107 Physics and Society +physics/0603013 Computational Physics +physics/0607276 Data Analysis, Statistics and Probability +physics/0608281 Data Analysis, Statistics and Probability +physics/0611130 Physics and Society +physics/0611138 Physics and Society +physics/0703180 Physics and Society +physics/0703181 Physics and Society +0704.3536 Information Theory +0704.3727 General Mathematics +0708.1711 Representation Theory +0708.4139 +0709.0301 +0711.0727 Representation Theory +0712.1843 Commutative Algebra +0712.1910 Superconductivity +0801.2849 Other Condensed Matter +0801.4054 Networking and Internet Architecture +0802.2803 Representation Theory +0803.0308 Exactly Solvable and Integrable Systems +0803.1579 Materials Science +0803.3129 Superconductivity +0803.4210 Algebraic Geometry +0804.0685 Superconductivity +0804.1497 Phenomenology +0804.1630 Data Analysis, Statistics and Probability +0804.4852 Dynamical Systems +0805.1123 +0805.2393 Strongly Correlated Electrons +0806.2244 +0806.4444 Cell Behavior +0807.0419 Superconductivity +0807.0843 Materials Science +0807.1739 Theory +0807.1753 Distributed, Parallel, and Cluster Computing +0807.1756 Populations and Evolution +0807.1760 +0807.1768 Optics +0807.1772 Experiment +0807.1784 Algebraic Geometry +0807.1801 Combinatorics +0807.1812 Analysis of PDEs +0807.1815 +0807.1825 Analysis of PDEs +0807.1830 Quantum Algebra +0807.1833 Physics and Society +0807.1838 Algebraic Geometry +0807.1840 +0807.1842 Fluid Dynamics +0807.1846 Probability +0807.1851 Representation Theory +0807.1853 Quantum Algebra +0807.1857 Other Condensed Matter +0807.1861 Strongly Correlated Electrons +0807.1863 Symplectic Geometry +0807.1864 Materials Science +0807.1865 +0807.1869 Genomics +0807.1871 Fluid Dynamics +0807.1872 Category Theory +0807.1885 +0807.1891 Data Structures and Algorithms +0807.1892 Combinatorics +0807.1898 Genomics +0807.1899 +0807.1900 Differential Geometry +cond-mat/0007421 Strongly Correlated Electrons +cond-mat/0703344 Mesoscale and Nanoscale Physics +math/0404385 Number Theory +math/0506188 Geometric Topology +math/0508088 Differential Geometry +math/0602144 Algebraic Geometry +math/0604061 Geometric Topology +math/0606305 Metric Geometry +0704.1893 Soft Condensed Matter +0704.1904 Chaotic Dynamics +0705.1630 +0705.1669 +0705.3419 Algebraic Geometry +0706.1994 Statistical Mechanics +0707.0296 +0707.1050 +0707.1358 Theory +0707.2101 Phenomenology +0707.2332 Number Theory +0707.4529 Optics +0708.2098 +0708.2472 +0708.2889 +0708.3327 Phenomenology +0709.2301 +0709.2660 Optics +0709.3560 Computation +0709.4225 +0710.3325 Phenomenology +0710.3536 Computer Science and Game Theory +0710.4049 Theory +0710.4551 Strongly Correlated Electrons +0710.4898 +0710.4935 +0710.4992 +0710.5722 +0711.0222 Medical Physics +0711.0798 Theory +0711.1518 +0711.2019 +0711.2680 Theory +0711.3639 Theory +0711.3745 Theory +0711.5026 Materials Science +0712.0190 Strongly Correlated Electrons +0712.0605 Optics +0712.1019 +0712.1530 Theory +0712.2238 +0712.2439 Theory +0712.3063 +0712.3119 Theory +0712.3328 +0712.3541 +0712.3664 +0712.4195 Optics +0712.4196 Pattern Formation and Solitons +0801.0305 Theory +0801.0730 Phenomenology +0801.0808 Theory +0801.1232 +0801.1903 +0801.1984 +0801.2970 Strongly Correlated Electrons +0801.3429 +0801.3763 Materials Science +0801.4471 Phenomenology +0801.4554 Phenomenology +0802.0256 Theory +0802.2114 Optics +0802.2212 Phenomenology +0802.2525 Phenomenology +0802.2858 Phenomenology +0802.2893 Experiment +0802.3453 +0802.3955 Experiment +0803.0101 General Physics +0804.3342 Strongly Correlated Electrons +0804.3714 Phenomenology +0804.3883 Experiment +0804.3921 +0804.4022 +0804.4281 Mesoscale and Nanoscale Physics +0805.0401 Phenomenology +0805.0994 Phenomenology +0805.1555 Mesoscale and Nanoscale Physics +0805.2384 +0805.2491 Experiment +0805.3117 Phenomenology +0805.3910 Phenomenology +0805.4390 Experiment +0805.4462 Experiment +0805.4475 +0805.4708 Experiment +0806.0328 Phenomenology +0806.0521 Phenomenology +0806.2250 Phenomenology +0806.2608 Phenomenology +0806.2659 Theory +0806.2793 Phenomenology +0806.3116 Fluid Dynamics +0806.4092 Phenomenology +0806.4512 Superconductivity +0807.1215 Experiment +0807.1220 Experiment +0807.1612 Experiment +0807.1682 +0807.2244 Phenomenology +0807.2762 Phenomenology +0807.2894 Mesoscale and Nanoscale Physics +0807.4205 Phenomenology +0807.4206 Phenomenology +0807.4653 +0808.3300 +0809.0040 Mesoscale and Nanoscale Physics +0809.1376 Representation Theory +0809.2022 +0809.2316 +0809.2323 +0809.2328 +0809.2514 Analysis of PDEs +0809.2741 +0809.3054 Phenomenology +0810.3242 Quantum Algebra +0810.4718 Phenomenology +0810.5368 Superconductivity +0810.5743 Complex Variables +0811.0082 +0811.0540 Phenomenology +0811.0630 Popular Physics +0811.0710 Geometric Topology +0811.0819 Programming Languages +0811.0823 Neural and Evolutionary Computing +0811.0830 Complex Variables +0811.0835 Symplectic Geometry +0811.0836 +0811.0840 Differential Geometry +0811.0843 +0811.0849 Mesoscale and Nanoscale Physics +0811.0851 Combinatorics +0811.0858 +0811.0865 Experiment +0811.0868 +0811.0887 Number Theory +0811.0891 Logic +0811.0893 Phenomenology +0811.0897 Superconductivity +0811.0899 +0811.0902 Operator Algebras +0811.0921 Optics +0811.0922 +0811.0937 Analysis of PDEs +0811.0940 Algebraic Geometry +0811.0942 Artificial Intelligence +0811.0944 +0811.0946 Analysis of PDEs +0811.0948 Statistics Theory +0811.0951 Analysis of PDEs +0811.0952 Information Theory +0811.0954 Popular Physics +0811.0958 Operator Algebras +0811.0962 Classical Analysis and ODEs +0811.0964 Logic in Computer Science +0811.0968 Optics +0811.0971 Artificial Intelligence +0811.0977 Logic in Computer Science +0811.0979 Probability +0811.0980 Adaptation and Self-Organizing Systems +0811.0987 Computational Complexity +0811.0990 Materials Science +0811.0995 +0811.0997 +0811.1000 Information Theory +0811.1003 Probability +0811.1009 +0811.1013 Commutative Algebra +0811.1014 Dynamical Systems +0811.1015 Probability +0811.1020 +astro-ph/0208168 +astro-ph/0210601 +astro-ph/0301617 +astro-ph/0303307 +astro-ph/0507200 +astro-ph/0605249 +astro-ph/0612285 +astro-ph/0703721 +astro-ph/9908072 +cond-mat/0512016 Mesoscale and Nanoscale Physics +cond-mat/0609615 Superconductivity +cond-mat/9905393 Soft Condensed Matter +cond-mat/9908420 Statistical Mechanics +cs/0603118 Logic in Computer Science +gr-qc/0305065 +gr-qc/0401065 +gr-qc/0410030 +hep-ex/0001045 Experiment +hep-ex/0001054 Experiment +hep-ex/0002062 Experiment +hep-ex/0007040 Experiment +hep-ex/0009017 Experiment +hep-ex/0009021 Experiment +hep-ex/0010029 Experiment +hep-ex/0011022 Experiment +hep-ex/0011052 Experiment +hep-ex/0101044 Experiment +hep-ex/0101045 Experiment +hep-ex/0210016 Experiment +hep-ex/0611056 Experiment +hep-ex/9808031 Experiment +hep-ex/9904015 Experiment +hep-ex/9906041 Experiment +hep-ex/9911030 Experiment +hep-ph/0302057 Phenomenology +hep-th/9908083 Theory +math/0012078 Classical Analysis and ODEs +math/0107082 Classical Analysis and ODEs +math/0305079 Classical Analysis and ODEs +math/0305131 Classical Analysis and ODEs +math/0605280 Rings and Algebras +math/0607246 Algebraic Topology +math/0610347 Rings and Algebras +nucl-th/0308001 +physics/0607261 Instrumentation and Detectors +physics/0608090 Instrumentation and Detectors +physics/0610017 Accelerator Physics +physics/0610145 Accelerator Physics +physics/0610285 Accelerator Physics +physics/0610287 Instrumentation and Detectors +physics/0702171 Instrumentation and Detectors +0710.3358 Complex Variables +0804.0634 Atomic Physics +0805.1997 Theory +0806.4963 Theory +0807.3595 Strongly Correlated Electrons +0808.0296 Superconductivity +0810.4473 Other Condensed Matter +0811.1246 Theory +0812.1379 Distributed, Parallel, and Cluster Computing +0812.3506 Optics +0812.3628 Phenomenology +0812.3904 Probability +math/0610518 Statistics Theory +math/0610520 Probability +physics/0605152 Physics Education +physics/0612118 Physics Education +quant-ph/9904051 +0704.0743 Strongly Correlated Electrons +0704.3894 Differential Geometry +0705.0564 Information Theory +0705.2451 Combinatorics +0708.1582 Combinatorics +0710.0622 Mesoscale and Nanoscale Physics +0801.2492 Mesoscale and Nanoscale Physics +0801.2905 +0802.4058 Materials Science +0804.4782 Theory +cond-mat/0106355 Strongly Correlated Electrons +math/0607483 Algebraic Geometry +quant-ph/0605178 +0707.1494 Classical Analysis and ODEs +0707.1659 Statistical Mechanics +0711.4306 Mesoscale and Nanoscale Physics +0712.0757 Mesoscale and Nanoscale Physics +0712.3762 Geometric Topology +0801.1020 Other Condensed Matter +0801.1286 Phenomenology +0801.4790 Discrete Mathematics +0802.0629 Mesoscale and Nanoscale Physics +0802.1941 Disordered Systems and Neural Networks +0802.2319 Statistical Mechanics +0802.2872 Experiment +0803.2557 +0804.0251 Operator Algebras +0804.2309 Materials Science +0805.2860 Combinatorics +0806.0020 General Mathematics +0806.0986 +0806.2919 Phenomenology +0806.3552 +0806.4606 +0806.4619 Combinatorics +0806.4624 +0806.4625 Experiment +0806.4628 Phenomenology +0806.4634 Experiment +0806.4637 Algebraic Geometry +0806.4642 Machine Learning +0806.4648 Robotics +0806.4650 Neural and Evolutionary Computing +0806.4654 Strongly Correlated Electrons +0806.4655 Differential Geometry +0806.4659 Differential Geometry +0806.4666 Differential Geometry +0806.4670 Theory +0806.4671 Differential Geometry +0806.4672 Differential Geometry +0806.4684 Probability +0806.4689 Geometric Topology +0806.4699 Combinatorics +0806.4702 Fluid Dynamics +0806.4706 Materials Science +0806.4721 Optimization and Control +0806.4722 Information Theory +0806.4728 Differential Geometry +0806.4729 General Physics +0806.4732 Logic +0806.4737 Information Theory +0806.4743 Rings and Algebras +0806.4749 Databases +0806.4751 +0806.4760 Logic +0806.4761 Functional Analysis +0806.4764 Phenomenology +0806.4772 Geophysics +0806.4775 Soft Condensed Matter +0806.4784 Other Condensed Matter +0806.4785 Logic +0806.4786 Experiment +0806.4801 Group Theory +0806.4802 Computer Science and Game Theory +0806.4804 Superconductivity +0806.4813 Experiment +0806.4820 Commutative Algebra +0806.4830 Number Theory +0806.4846 Phenomenology +0806.4848 Combinatorics +0806.4849 Materials Science +0806.4853 Exactly Solvable and Integrable Systems +0806.4858 Computational Geometry +0806.4869 Algebraic Geometry +0806.4872 Statistical Mechanics +0806.4875 +0806.4879 Phenomenology +0806.4885 Differential Geometry +0806.4887 Instrumentation and Detectors +0806.4890 Phenomenology +0806.4891 +0806.4896 +0806.4899 Data Structures and Algorithms +0806.4902 Analysis of PDEs +0806.4903 Analysis of PDEs +0806.4910 Fluid Dynamics +0806.4911 +0806.4912 Plasma Physics +0806.4915 Analysis of PDEs +0806.4916 Group Theory +0806.4918 Phenomenology +0806.4919 Functional Analysis +0806.4924 Physics Education +0806.4929 +0806.4933 +0806.4939 Quantum Algebra +0806.4946 Logic +0806.4947 Number Theory +0806.4949 Logic +0806.4950 Phenomenology +0806.4954 +0806.4960 Theory +0806.4966 Optimization and Control +0806.4967 Number Theory +0806.4969 Phenomenology +0806.4976 Combinatorics +0806.4979 Information Theory +cond-mat/0702207 Mesoscale and Nanoscale Physics +cond-mat/0702210 Mesoscale and Nanoscale Physics +gr-qc/0609098 +math/0409101 Representation Theory +math/0411095 Combinatorics +math/0411182 Representation Theory +math/0501103 Differential Geometry +math/0501284 Number Theory +math/0509532 K-Theory and Homology +math/0605332 Algebraic Geometry +physics/0602084 General Physics +0705.2342 +0709.3533 +0710.3846 Representation Theory +0712.2448 Combinatorics +0801.4787 Strongly Correlated Electrons +0802.1535 General Mathematics +0802.3774 Strongly Correlated Electrons +0805.4659 +0806.2762 Chemical Physics +0806.3145 +0806.3618 Soft Condensed Matter +0808.2332 Data Analysis, Statistics and Probability +math/0610363 Optimization and Control +quant-ph/0503017 +quant-ph/0506181 +0704.0382 Number Theory +0705.0803 Phenomenology +0707.0197 Geometric Topology +0707.3495 Group Theory +0707.4378 Mesoscale and Nanoscale Physics +0711.0320 Mesoscale and Nanoscale Physics +0711.3388 Combinatorics +0711.3997 Classical Physics +0712.1165 Data Analysis, Statistics and Probability +0712.1293 Disordered Systems and Neural Networks +0801.0821 +0801.4122 Quantitative Methods +0801.4499 Probability +0802.4260 Functional Analysis +0803.2433 Combinatorics +0803.3096 +0803.4383 +0804.0421 +0805.1184 General Topology +0805.1287 +0805.3353 +0806.0990 Other Condensed Matter +0807.0771 Mesoscale and Nanoscale Physics +0807.2883 Differential Geometry +0807.3661 Applications +0807.3729 Superconductivity +0807.3811 +0808.1545 +0809.2476 Instrumentation and Detectors +0809.3936 Algebraic Geometry +0809.4930 Phenomenology +0810.0232 Experiment +0810.0315 Experiment +0810.0465 Experiment +0810.0475 Phenomenology +0810.0551 Experiment +0810.2179 Logic in Computer Science +0810.2192 Theory +0810.2703 Experiment +0810.2876 Combinatorics +0810.3009 +0810.3016 +0810.3019 Combinatorics +0810.3023 Computer Science and Game Theory +0810.3024 General Topology +0810.3026 General Topology +0810.3027 Complex Variables +0810.3030 General Topology +0810.3031 Theory +0810.3032 Physics Education +0810.3035 Biological Physics +0810.3037 Materials Science +0810.3038 Numerical Analysis +0810.3042 Biological Physics +0810.3045 Experiment +0810.3051 Statistical Mechanics +0810.3057 Materials Science +0810.3069 Experiment +0810.3072 Functional Analysis +0810.3073 Classical Analysis and ODEs +0810.3076 Human-Computer Interaction +0810.3082 History and Overview +0810.3086 +0810.3090 Functional Analysis +0810.3094 Strongly Correlated Electrons +0810.3098 Probability +0810.3099 General Physics +0810.3104 Phenomenology +0810.3106 Theory +0810.3110 Functional Analysis +0810.3116 Theory +0810.3124 Materials Science +0810.3126 Classical Physics +0810.3127 General Topology +0810.3128 Probability +0810.3132 Representation Theory +0810.3133 Combinatorics +0810.3137 Statistical Mechanics +0810.3143 Materials Science +0810.3144 Experiment +0810.3146 Geometric Topology +0810.3147 Number Theory +0810.3148 Representation Theory +0810.3151 Differential Geometry +0810.3154 Chaotic Dynamics +0810.3160 +0810.3161 Experiment +0810.3162 Logic in Computer Science +0810.3164 Dynamical Systems +0810.3165 Phenomenology +0810.3167 Experiment +0810.3169 Experiment +0810.3170 General Physics +0810.3171 Experiment +0810.3173 Probability +0810.3174 Instrumentation and Detectors +0810.3178 Experiment +0810.3182 Computer Science and Game Theory +0810.3184 Instrumentation and Detectors +0810.3188 General Physics +0810.3189 Combinatorics +0810.3195 Differential Geometry +0810.3196 General Mathematics +0810.3200 Phenomenology +0810.3203 Symbolic Computation +0810.3208 Phenomenology +0810.3210 Phenomenology +0810.3219 Experiment +0810.3221 Classical Physics +0810.3222 Other Condensed Matter +0810.3223 Number Theory +0810.3226 Information Theory +0810.3227 Distributed, Parallel, and Cluster Computing +0810.3230 +0810.3231 Experiment +cond-mat/0311140 Strongly Correlated Electrons +cs/0603005 Mathematical Software +hep-th/0411111 Theory +math/0701212 Differential Geometry +math/0701597 Algebraic Geometry +0705.0577 Superconductivity +0706.1483 Number Theory +0707.0701 Artificial Intelligence +0707.4332 Geometric Topology +0708.4012 Strongly Correlated Electrons +0709.3290 +0712.2603 Functional Analysis +0801.3874 +0801.4494 General Mathematics +0802.1036 Quantum Algebra +0802.1600 Computational Physics +0802.2502 Disordered Systems and Neural Networks +0803.0544 +0804.0174 Strongly Correlated Electrons +0804.0234 Other Condensed Matter +0804.0309 Phenomenology +0804.1847 Disordered Systems and Neural Networks +0804.4111 Strongly Correlated Electrons +0804.4372 Populations and Evolution +0805.3698 Statistical Mechanics +0806.1059 +0806.1315 Materials Science +0806.2132 Fluid Dynamics +0806.2622 Optics +0806.2982 +0806.3567 Other Condensed Matter +0806.3601 +0807.0536 +0808.0015 Statistical Mechanics +0808.1006 +0809.0093 Strongly Correlated Electrons +0809.0606 Disordered Systems and Neural Networks +0809.1622 Number Theory +0809.2024 +0809.2843 Operator Algebras +0809.2874 +0809.3559 +0809.4153 +0809.5004 Experiment +0810.0265 Theory +0810.0414 Experiment +0810.0997 +0810.1002 Probability +0810.1051 Strongly Correlated Electrons +0810.1055 +0810.1056 Mesoscale and Nanoscale Physics +0810.1063 Complex Variables +0810.1067 Experiment +0810.1073 Experiment +0810.1087 Disordered Systems and Neural Networks +0810.1091 History and Overview +0810.1093 Number Theory +0810.1101 Other Condensed Matter +0810.1102 Disordered Systems and Neural Networks +0810.1111 Fluid Dynamics +0810.1117 Statistical Mechanics +0810.1119 Information Theory +0810.1128 Analysis of PDEs +0810.1132 Networking and Internet Architecture +0810.1135 Differential Geometry +0810.1137 +0810.1144 Phenomenology +0810.1146 Numerical Analysis +0810.1147 Functional Analysis +0810.1154 Number Theory +0810.1156 Statistics Theory +0810.1162 Group Theory +0810.1163 Computation +0810.1170 Mesoscale and Nanoscale Physics +0810.1171 Phenomenology +0810.1173 Statistics Theory +0810.1174 Analysis of PDEs +0810.1176 Group Theory +0810.1184 +0810.1185 Materials Science +0810.1188 General Physics +0810.1197 Information Theory +0810.1198 +0810.1199 Computation and Language +0810.1201 Rings and Algebras +0810.1204 +0810.1206 Classical Analysis and ODEs +0810.1207 Computation and Language +0810.1209 Phenomenology +0810.1212 Computation and Language +0810.1217 Phenomenology +0810.1226 Networking and Internet Architecture +0810.1228 Biological Physics +0810.1235 Differential Geometry +0810.1237 Chaotic Dynamics +0810.1243 Theory +0810.1247 Phenomenology +0810.1248 Information Theory +0810.1250 Biological Physics +0810.1253 Information Theory +0810.1257 Analysis of PDEs +0810.1258 Soft Condensed Matter +0810.1260 Information Theory +0810.1261 Computation and Language +0810.1262 +0810.1265 Dynamical Systems +0810.1266 Analysis of PDEs +0810.1267 Information Theory +0810.1275 Phenomenology +0810.1279 Category Theory +astro-ph/0601038 +chao-dyn/9310002 Chaotic Dynamics +chao-dyn/9310005 Chaotic Dynamics +chao-dyn/9503006 Chaotic Dynamics +chao-dyn/9503007 Chaotic Dynamics +chao-dyn/9703007 Chaotic Dynamics +chao-dyn/9804044 Chaotic Dynamics +cond-mat/0005363 Strongly Correlated Electrons +cond-mat/0006231 Strongly Correlated Electrons +cond-mat/0010081 Strongly Correlated Electrons +cond-mat/0201153 Strongly Correlated Electrons +cond-mat/0211657 Strongly Correlated Electrons +cond-mat/0303321 Strongly Correlated Electrons +cond-mat/0307575 Strongly Correlated Electrons +cond-mat/0312725 Strongly Correlated Electrons +cond-mat/0401127 Strongly Correlated Electrons +cond-mat/0412257 Strongly Correlated Electrons +cond-mat/0412484 Strongly Correlated Electrons +cond-mat/0503407 Strongly Correlated Electrons +cond-mat/0504199 Strongly Correlated Electrons +cond-mat/0506021 Strongly Correlated Electrons +cond-mat/0511397 Strongly Correlated Electrons +cond-mat/0511624 Strongly Correlated Electrons +cond-mat/0601005 Strongly Correlated Electrons +cond-mat/0602592 Strongly Correlated Electrons +cond-mat/0603812 Strongly Correlated Electrons +cond-mat/0605567 Strongly Correlated Electrons +cond-mat/0606604 Strongly Correlated Electrons +cond-mat/0610611 Strongly Correlated Electrons +cond-mat/9906287 Strongly Correlated Electrons +cond-mat/9907141 Strongly Correlated Electrons +cond-mat/9911292 Strongly Correlated Electrons +cs/0508037 Computational Complexity +math-ph/0503042 +math-ph/0611086 +math/0603556 Algebraic Geometry +math/0610259 Analysis of PDEs +0704.2369 Adaptation and Self-Organizing Systems +0706.0227 Disordered Systems and Neural Networks +0707.2954 +0710.5044 Combinatorics +0711.0414 Strongly Correlated Electrons +0711.3471 Statistical Mechanics +0711.3749 Theory +0712.0027 Combinatorics +0712.1456 Statistics Theory +0712.4018 +0801.1386 Molecular Networks +0801.3631 Disordered Systems and Neural Networks +0801.3689 Dynamical Systems +0801.3790 Computational Complexity +0801.4170 Mesoscale and Nanoscale Physics +0802.2789 Statistical Mechanics +0803.3713 Numerical Analysis +0803.4167 Theory +0804.0142 Algebraic Geometry +0804.1459 Superconductivity +0804.1524 Superconductivity +0804.3959 +0804.4010 Other Condensed Matter +0804.4016 +0804.4018 +0804.4019 Logic +0804.4020 Optimization and Control +0804.4021 Fluid Dynamics +0804.4025 Phenomenology +0804.4027 Materials Science +0804.4038 Representation Theory +0804.4045 +0804.4048 Optics +0804.4052 Spectral Theory +0804.4058 +0804.4060 +0804.4062 Algebraic Geometry +0804.4064 Superconductivity +0804.4069 +0804.4070 Populations and Evolution +0804.4071 Logic in Computer Science +0804.4074 +0804.4075 Logic in Computer Science +0804.4077 +0804.4086 General Physics +0804.4093 Combinatorics +0804.4095 Algebraic Geometry +0804.4101 Other Condensed Matter +0804.4120 Algebraic Geometry +0804.4126 +0804.4133 Optics +0804.4153 Number Theory +0804.4156 +0804.4164 Algebraic Topology +0804.4171 Superconductivity +cond-mat/0312427 Mesoscale and Nanoscale Physics +cond-mat/0411707 Mesoscale and Nanoscale Physics +math-ph/0701063 +math/0008015 Differential Geometry +math/0011039 Differential Geometry +math/0611011 Category Theory +0708.2759 Chaotic Dynamics +0708.3216 +0709.3660 Differential Geometry +0709.3788 Probability +0710.0071 Optimization and Control +0710.5900 Statistics Theory +0711.0354 Fluid Dynamics +0712.0413 Optimization and Control +0712.2813 Commutative Algebra +0801.3474 Soft Condensed Matter +0802.0022 Phenomenology +0802.0972 Differential Geometry +0802.2096 Number Theory +0802.2475 Classical Analysis and ODEs +0803.3467 Neurons and Cognition +0803.4123 +0804.3306 +0804.4106 +0805.1804 Materials Science +0805.2471 Soft Condensed Matter +0805.2613 +0805.2715 Mesoscale and Nanoscale Physics +0805.2969 +0805.3156 +0805.3158 Combinatorics +0805.3163 Experiment +0805.3164 Information Theory +0805.3166 +0805.3171 Experiment +0805.3178 +0805.3181 Experiment +0805.3183 General Physics +0805.3184 General Physics +0805.3186 Materials Science +0805.3192 Chaotic Dynamics +0805.3194 Numerical Analysis +0805.3195 Operator Algebras +0805.3197 General Physics +0805.3198 Theory +0805.3217 Computer Vision and Pattern Recognition +0805.3218 Computer Vision and Pattern Recognition +0805.3219 Analysis of PDEs +0805.3229 Number Theory +0805.3235 Statistical Mechanics +0805.3237 Operating Systems +0805.3243 Experiment +0805.3247 Mesoscale and Nanoscale Physics +0805.3253 +0805.3261 Logic in Computer Science +0805.3262 +0805.3270 Rings and Algebras +0805.3272 Numerical Analysis +0805.3277 Combinatorics +0805.3281 Materials Science +0805.3285 Phenomenology +0805.3303 General Mathematics +0805.3307 General Mathematics +0805.3308 Analysis of PDEs +0805.3311 Statistical Mechanics +0805.3315 Strongly Correlated Electrons +0805.3324 Materials Science +0805.3332 Plasma Physics +0805.3340 Differential Geometry +cs/0701192 Programming Languages +math/0008047 Quantum Algebra +math/0603528 Differential Geometry +0705.4241 Strongly Correlated Electrons +0706.2432 +0707.2148 Commutative Algebra +0710.1392 Algebraic Geometry +0711.4635 Statistical Mechanics +0712.3313 Materials Science +0801.1163 +0803.2325 Metric Geometry +0804.1372 Superconductivity +0805.4200 Superconductivity +0807.0667 Mesoscale and Nanoscale Physics +0807.2551 +0807.4453 Superconductivity +0807.5034 Materials Science +0808.0414 Analysis of PDEs +0809.3443 Algebraic Geometry +0809.4256 Atomic Physics +math/0605127 Differential Geometry +math/0607084 Number Theory +math/0608728 Geometric Topology +quant-ph/0703023 +0705.1279 Representation Theory +0705.2824 Analysis of PDEs +0708.0881 Mesoscale and Nanoscale Physics +0709.3195 Numerical Analysis +0710.2044 Statistics Theory +0710.3621 Computational Engineering, Finance, and Science +0710.5890 +0711.2224 Differential Geometry +0711.3378 Mesoscale and Nanoscale Physics +0711.3815 Optics +0711.4218 Statistics Theory +0712.0306 Symplectic Geometry +0712.3210 Probability +0801.2984 +0801.3338 Disordered Systems and Neural Networks +0801.3842 Other Condensed Matter +0802.1791 +0803.0689 Statistical Mechanics +0803.0912 Mesoscale and Nanoscale Physics +0804.0998 Atomic Physics +0804.1975 Mesoscale and Nanoscale Physics +0805.0970 +0805.1862 Classical Physics +0805.2279 Phenomenology +0805.3868 Geophysics +0806.2770 +0806.3620 Number Theory +0807.1619 Statistical Mechanics +0807.1951 Phenomenology +0807.1953 Materials Science +0807.2047 Computer Vision and Pattern Recognition +0807.2161 +0807.2225 +0807.2238 K-Theory and Homology +0807.2256 +0807.2257 K-Theory and Homology +0807.2258 +0807.2260 Superconductivity +0807.2264 Probability +0807.2265 Algebraic Geometry +0807.2269 Numerical Analysis +0807.2275 Methodology +0807.2277 History and Overview +0807.2282 Neural and Evolutionary Computing +0807.2300 Soft Condensed Matter +0807.2301 Phenomenology +0807.2302 Materials Science +0807.2308 +0807.2311 Analysis of PDEs +0807.2318 Optimization and Control +0807.2319 Mesoscale and Nanoscale Physics +0807.2323 Algebraic Geometry +0807.2324 Phenomenology +0807.2327 Algebraic Geometry +0807.2328 Networking and Internet Architecture +0807.2331 Theory +0807.2340 +0807.2342 +0807.2344 Algebraic Geometry +0807.2345 Representation Theory +0807.2349 Probability +0807.2361 Phenomenology +0807.2362 Functional Analysis +0807.2364 Phenomenology +0807.2365 Combinatorics +0807.2369 Superconductivity +0807.2371 Commutative Algebra +0807.2381 Cryptography and Security +0807.2382 Numerical Analysis +0807.2383 Software Engineering +0807.2388 Functional Analysis +0807.2392 Functional Analysis +0807.2403 Phenomenology +0807.2410 Materials Science +0807.2420 Combinatorics +0807.2425 +0807.2427 +0807.2431 Geometric Topology +0807.2440 Information Theory +0807.2441 Analysis of PDEs +cond-mat/0507574 Superconductivity +math/0012021 Algebraic Topology +math/0310146 Algebraic Topology +math/0506230 Differential Geometry +math/0609477 Differential Geometry +math/0702451 Commutative Algebra +nlin/0602037 Pattern Formation and Solitons +nucl-th/0606033 +0707.0725 Disordered Systems and Neural Networks +0710.2296 Combinatorics +0804.3554 Materials Science +0810.2136 Optics +0810.2828 +0810.5726 Mesoscale and Nanoscale Physics +0811.0880 Strongly Correlated Electrons +0811.1389 +0811.4216 +math/0511556 Number Theory +math/0612369 Combinatorics +0705.4360 +0707.4134 Geometric Topology +0710.0212 Fluid Dynamics +0710.2821 Algebraic Geometry +0710.5060 Statistical Mechanics +0710.5535 +0711.1954 Theory +0711.4940 Classical Analysis and ODEs +0712.0958 Probability +0712.0992 Strongly Correlated Electrons +0712.3105 Analysis of PDEs +0801.2184 +0802.0204 +0802.1778 +0802.2859 +0803.1216 Optics +0804.2317 +0804.3382 Data Analysis, Statistics and Probability +0804.4243 +0804.4500 +0804.4632 +0805.0452 Chaotic Dynamics +0805.1888 Phenomenology +0805.2596 +0805.2624 +0805.2625 Representation Theory +0805.2629 Information Theory +0805.2640 +0805.2641 Information Theory +0805.2643 General Physics +0805.2644 Theory +0805.2645 Theory +0805.2646 Data Structures and Algorithms +0805.2651 +0805.2656 Group Theory +0805.2657 +0805.2659 Statistical Mechanics +0805.2663 Number Theory +0805.2664 Phenomenology +0805.2674 Combinatorics +0805.2679 Dynamical Systems +0805.2680 Group Theory +0805.2682 Dynamical Systems +0805.2688 +0805.2690 Computer Vision and Pattern Recognition +0805.2691 Information Theory +0805.2693 Functional Analysis +0805.2696 Combinatorics +0805.2701 Group Theory +0805.2707 History and Overview +0805.2709 Combinatorics +0805.2711 Analysis of PDEs +0805.2716 Other Condensed Matter +0805.2722 Algebraic Topology +0805.2723 Atomic Physics +0805.2729 Commutative Algebra +0805.2730 Functional Analysis +0805.2732 Operator Algebras +0805.2735 +0805.2743 Geometric Topology +0805.2749 Software Engineering +0805.2753 Phenomenology +0805.2757 +0805.2758 Functional Analysis +0805.2765 +0805.2767 Operator Algebras +0805.2773 Combinatorics +0805.2782 Combinatorics +0805.2786 +0805.2793 Differential Geometry +0805.2803 Experiment +0805.2807 Analysis of PDEs +0805.2815 General Physics +0805.2816 Differential Geometry +0805.2821 Operator Algebras +0805.2823 Phenomenology +0805.2825 Phenomenology +0805.2830 Probability +0805.2831 Algebraic Geometry +0805.2839 Superconductivity +0805.2846 Complex Variables +0805.2848 +0805.2863 Experiment +0805.2885 Number Theory +0805.2888 Superconductivity +0805.2893 Theory +0805.2906 Experiment +0805.2910 +0805.2917 Functional Analysis +0805.2918 Mesoscale and Nanoscale Physics +0805.2921 +0805.2923 +0805.2929 Numerical Analysis +0805.2932 Number Theory +cs/0507052 Computational Complexity +gr-qc/0609119 +math/0505285 Group Theory +math/0601762 Differential Geometry +math/0701458 Probability +0704.0001 Phenomenology +0704.0007 +0704.0031 Phenomenology +0704.0032 Phenomenology +0704.0039 Phenomenology +0704.0048 +0704.0060 +0704.0064 Theory +0704.0075 Phenomenology +0704.0076 Phenomenology +0704.0078 +0704.0083 Theory +0704.0092 Lattice +0704.0100 +0704.0101 Theory +0704.0103 +0704.0106 Phenomenology +0704.0116 +0704.0120 Experiment +0704.0121 Theory +0704.0138 +0704.0140 Theory +0704.0143 Phenomenology +0704.0149 +0704.0152 +0704.0154 +0704.0167 Phenomenology +0704.0169 Phenomenology +0704.0180 +0704.0186 Phenomenology +0704.0196 Phenomenology +0704.0220 +0704.0224 +0704.0228 +0704.0240 Theory +0704.0245 Theory +0704.0247 Theory +0704.0254 Phenomenology +0704.0255 +0704.0258 Theory +0704.0278 +0704.0284 Theory +0704.0288 +0704.0293 Phenomenology +0704.0294 Phenomenology +0704.0296 Theory +0704.0299 Theory +0704.0303 +0704.0314 Phenomenology +0704.0318 +0704.0328 Phenomenology +0704.0330 Phenomenology +0704.0353 +0704.0366 +0704.0371 +0704.0384 +0704.0399 +0704.0404 Phenomenology +0704.0407 +0704.0413 Phenomenology +0704.0424 +0704.0429 Subcellular Processes +0704.0435 +0704.0438 Phenomenology +0704.0440 Other Condensed Matter +0704.0443 +0704.0445 Theory +0704.0490 Phenomenology +0704.0496 +0704.0504 +0704.0505 Theory +0704.0507 Theory +0704.0510 Phenomenology +0704.0513 +0704.0531 Theory +0704.0553 Theory +0704.0554 +0704.0559 Phenomenology +0704.0563 General Physics +0704.0594 Experiment +0704.0595 Differential Geometry +0704.0597 Experiment +0704.0601 Phenomenology +0704.0605 Phenomenology +0704.0612 Phenomenology +0704.0619 Phenomenology +0704.0628 +0704.0631 Theory +0704.0646 +0704.0655 +0704.0666 Theory +0704.0668 Phenomenology +0704.0670 +0704.0672 Theory +0704.0697 Phenomenology +0704.0705 +0704.0710 +0704.0711 +0704.0719 +0704.0722 Lattice +0704.0732 Theory +0704.0737 Theory +0704.0753 +0704.0756 Theory +0704.0777 Theory +0704.0780 +0704.0782 +0704.0784 Theory +0704.0786 Phenomenology +0704.0790 Theory +0704.0793 Theory +0704.0794 +0704.0795 Lattice +0704.0796 +0704.0797 +0704.0806 +0704.0822 Theory +0704.0870 Accelerator Physics +0704.0916 +0704.0920 +0704.0921 Theory +0704.0928 Phenomenology +0704.0934 +0704.0940 Theory +0704.0955 Theory +0704.0959 Phenomenology +0704.0966 +0704.0971 Phenomenology +0704.0986 +0704.0987 Phenomenology +0704.0992 +0704.0995 Phenomenology +0704.1000 Experiment +0704.1015 Theory +0704.1024 +0704.1027 Phenomenology +0704.1035 +0704.1038 Theory +0704.1049 Phenomenology +0704.1060 Theory +0704.1061 Phenomenology +0704.1062 +0704.1072 +0704.1073 +0704.1075 Phenomenology +0704.1084 Theory +0704.1085 Theory +0704.1086 +0704.1104 Theory +0704.1108 +0704.1111 Theory +0704.1124 Theory +0704.1136 +0704.1137 +0704.1143 Phenomenology +0704.1153 Phenomenology +0704.1160 Theory +0704.1165 Phenomenology +0704.1185 Theory +0704.1188 Phenomenology +0704.1199 Phenomenology +0704.1201 Phenomenology +0704.1209 +0704.1219 Theory +0704.1224 +0704.1229 +0704.1232 Phenomenology +0704.1234 Theory +0704.1239 Theory +0704.1248 Phenomenology +0704.1256 Phenomenology +0704.1261 +0704.1270 +0704.1290 Theory +0704.1307 Experiment +0704.1311 Theory +0704.1320 Theory +0704.1324 +0704.1328 +0704.1336 +0704.1342 +0704.1344 Phenomenology +0704.1345 Phenomenology +0704.1351 +0704.1354 Experiment +0704.1369 Experiment +0704.1404 +0704.1405 Theory +0704.1410 +0704.1416 Lattice +0704.1417 Phenomenology +0704.1422 Phenomenology +0704.1426 Phenomenology +0704.1436 +0704.1447 +0704.1451 Phenomenology +0704.1452 Theory +0704.1460 Theory +0704.1470 Theory +0704.1490 Lattice +0704.1505 Phenomenology +0704.1512 Theory +0704.1514 Theory +0704.1527 Phenomenology +0704.1530 +0704.1535 Theory +0704.1540 Theory +0704.1545 Theory +0704.1565 Phenomenology +0704.1567 +0704.1568 Theory +0704.1590 Phenomenology +0704.1591 Phenomenology +0704.1594 +0704.1604 Phenomenology +0704.1613 +0704.1615 +0704.1616 Phenomenology +0704.1637 Theory +0704.1638 +0704.1639 Phenomenology +0704.1646 Instrumentation and Detectors +0704.1647 Phenomenology +0704.1651 Theory +0704.1653 Theory +0704.1662 Phenomenology +0704.1669 +0704.1674 Phenomenology +0704.1677 Phenomenology +0704.1685 +0704.1693 +0704.1699 +0704.1703 +0704.1719 Phenomenology +0704.1721 Phenomenology +0704.1724 Phenomenology +0704.1725 Theory +0704.1727 Theory +0704.1728 +0704.1733 +0704.1740 Phenomenology +0704.1743 +0704.1753 Phenomenology +0704.1759 Quantum Algebra +0704.1761 Theory +0704.1774 +0704.1777 Phenomenology +0704.1781 +0704.1784 Theory +0704.1785 +0704.1800 Phenomenology +0704.1805 Theory +0704.1808 +0704.1819 Theory +0704.1826 Phenomenology +0704.1831 +0704.1835 Phenomenology +0704.1845 Phenomenology +0704.1848 Theory +0704.1855 Theory +0704.1856 +0704.1863 Experiment +0704.1871 +0704.1898 Theory +0704.1905 +0704.1913 Phenomenology +0704.1932 +0704.1944 +0704.1956 Phenomenology +0704.1960 Theory +0704.1961 Phenomenology +0704.1964 +0704.1967 +0704.1978 +0704.1981 Experiment +0704.1984 +0704.1992 +0704.1998 +0704.2000 Experiment +0704.2011 +0704.2013 +0704.2016 Lattice +0704.2020 Phenomenology +0704.2021 +0704.2039 +0704.2045 Phenomenology +0704.2046 Quantum Algebra +0704.2067 Theory +0704.2069 Theory +0704.2071 Theory +0704.2072 +0704.2074 +0704.2076 Theory +0704.2101 +0704.2103 Theory +0704.2111 Theory +0704.2124 Phenomenology +0704.2135 +0704.2156 Lattice +0704.2158 Phenomenology +0704.2164 Phenomenology +0704.2165 Phenomenology +0704.2172 Phenomenology +0704.2176 +0704.2185 Phenomenology +0704.2192 +0704.2198 Theory +0704.2218 Theory +0704.2219 Theory +0704.2222 Theory +0704.2224 Theory +0704.2232 Phenomenology +0704.2233 Theory +0704.2237 Theory +0704.2243 +0704.2251 Theory +0704.2273 Phenomenology +0704.2277 Lattice +0704.2281 Phenomenology +0704.2284 +0704.2291 +0704.2292 Phenomenology +0704.2301 +0704.2308 Phenomenology +0704.2311 Theory +0704.2312 +0704.2314 Phenomenology +0704.2321 Theory +0704.2334 Theory +0704.2347 +0704.2349 Theory +0704.2368 Phenomenology +0704.2382 Lattice +0704.2385 Lattice +0704.2394 Experiment +0704.2397 +0704.2400 Phenomenology +0704.2423 Phenomenology +0704.2424 Theory +0704.2426 +0704.2429 Theory +0704.2433 Lattice +0704.2434 +0704.2444 +0704.2447 +0704.2449 Theory +0704.2457 Phenomenology +0704.2465 Theory +0704.2468 +0704.2472 Theory +0704.2482 Theory +0704.2490 Theory +0704.2493 Phenomenology +0704.2506 +0704.2508 +0704.2514 +0704.2515 Experiment +0704.2520 Theory +0704.2526 Theory +0704.2543 +0704.2553 Theory +0704.2558 +0704.2559 +0704.2563 Theory +0704.2568 Phenomenology +0704.2570 Lattice +0704.2588 Phenomenology +0704.2591 Lattice +0704.2593 Phenomenology +0704.2599 Phenomenology +0704.2612 +0704.2613 Theory +0704.2616 +0704.2618 Phenomenology +0704.2630 Theory +0704.2635 Lattice +0704.2647 +0704.2652 Experiment +0704.2653 +0704.2654 Phenomenology +0704.2658 Theory +0704.2667 +0704.2672 Experiment +0704.2673 Phenomenology +0704.2676 Experiment +0704.2683 +0704.2696 Lattice +0704.2707 Theory +0704.2717 Theory +0704.2720 +0704.2724 +0704.2729 +0704.2736 +0704.2751 Theory +0704.2764 +0704.2785 Phenomenology +0704.2788 +0704.2804 Differential Geometry +0704.2809 Phenomenology +0704.2812 Theory +0704.2823 +0704.2825 +0704.2827 +0704.2840 Theory +0704.2851 Phenomenology +0704.2854 +0704.2861 +0704.2878 Theory +0704.2881 +0704.2884 Theory +0704.2892 +0704.2894 +0704.2905 Theory +0704.2914 Phenomenology +0704.2915 +0704.2917 +0704.2944 Phenomenology +0704.2946 Instrumentation and Detectors +0704.2960 Theory +0704.2983 +0704.2986 +0704.3000 Phenomenology +0704.3004 Phenomenology +0704.3016 +0704.3029 Phenomenology +0704.3040 Theory +0704.3042 +0704.3044 +0704.3046 Theory +0704.3048 Phenomenology +0704.3080 Theory +0704.3082 Theory +0704.3084 Theory +0704.3101 Phenomenology +0704.3102 +0704.3105 Phenomenology +0704.3118 Theory +0704.3119 Theory +0704.3148 +0704.3153 Phenomenology +0704.3164 Theory +0704.3167 Phenomenology +0704.3180 Phenomenology +0704.3181 Theory +0704.3186 Theory +0704.3201 Phenomenology +0704.3214 Theory +0704.3234 Phenomenology +0704.3242 +0704.3255 Theory +0704.3258 Phenomenology +0704.3272 Theory +0704.3276 Theory +0704.3285 Phenomenology +0704.3295 Theory +0704.3299 Phenomenology +0704.3308 Theory +0704.3310 Phenomenology +0704.3311 Phenomenology +0704.3326 Theory +0704.3330 +0704.3340 Phenomenology +0704.3343 Theory +0704.3367 Phenomenology +0704.3368 +0704.3372 +0704.3384 Phenomenology +0704.3407 Theory +0704.3413 Theory +0704.3414 +0704.3429 +0704.3442 Theory +0704.3459 Phenomenology +0704.3462 Theory +0704.3464 Theory +0704.3465 +0704.3473 Theory +0704.3477 +0704.3481 Phenomenology +0704.3484 Theory +0704.3498 Phenomenology +0704.3507 +0704.3508 +0704.3514 Instrumentation and Detectors +0704.3516 Theory +0704.3532 Phenomenology +0704.3537 Phenomenology +0704.3538 Experiment +0704.3540 Theory +0704.3544 Theory +0704.3547 Theory +0704.3550 +0704.3553 +0704.3559 Theory +0704.3563 Theory +0704.3568 Phenomenology +0704.3569 +0704.3571 Phenomenology +0704.3580 +0704.3585 Phenomenology +0704.3586 Theory +0704.3599 Experiment +0704.3606 +0704.3607 +0704.3612 Theory +0704.3621 +0704.3626 Phenomenology +0704.3634 +0704.3648 +0704.3652 Phenomenology +0704.3655 Phenomenology +0704.3664 Phenomenology +0704.3667 Theory +0704.3668 +0704.3676 Phenomenology +0704.3688 Theory +0704.3691 +0704.3712 Experiment +0704.3719 Theory +0704.3726 +0704.3728 Theory +0704.3735 Phenomenology +0704.3747 Lattice +0704.3764 +0704.3769 +0704.3770 Phenomenology +0704.3784 +0704.3790 Phenomenology +0704.3793 +0704.3800 +0704.3827 Phenomenology +0704.3838 Phenomenology +0704.3882 Lattice +0704.3891 Theory +0704.3896 Phenomenology +0704.3898 +0704.3909 Experiment +0704.3913 Theory +0704.3920 Theory +0704.3927 +0704.3934 Phenomenology +0704.3936 +0704.3963 +0704.3968 Phenomenology +0704.3981 Phenomenology +0704.3986 +0704.3987 Phenomenology +0704.3996 Phenomenology +0704.4000 Phenomenology +0705.0006 +0705.0008 Theory +0705.0013 Theory +0705.0018 Lattice +0705.0021 Phenomenology +0705.0028 Phenomenology +0705.0035 Phenomenology +0705.0036 Phenomenology +0705.0049 +0705.0051 Phenomenology +0705.0059 +0705.0067 +0705.0068 Phenomenology +0705.0072 Phenomenology +0705.0074 Phenomenology +0705.0079 Phenomenology +0705.0101 Phenomenology +0705.0107 Phenomenology +0705.0112 Theory +0705.0115 Phenomenology +0705.0122 +0705.0126 +0705.0133 Phenomenology +0705.0139 +0705.0143 Theory +0705.0151 Phenomenology +0705.0159 Theory +0705.0162 Phenomenology +0705.0165 +0705.0180 Phenomenology +0705.0219 Phenomenology +0705.0221 +0705.0226 Phenomenology +0705.0228 +0705.0231 +0705.0239 Instrumentation and Detectors +0705.0240 Theory +0705.0242 Theory +0705.0246 +0705.0254 Phenomenology +0705.0258 Theory +0705.0264 Phenomenology +0705.0268 +0705.0282 Phenomenology +0705.0283 Lattice +0705.0294 Phenomenology +0705.0300 +0705.0301 Phenomenology +0705.0306 Experiment +0705.0307 Theory +0705.0308 Phenomenology +0705.0310 Instrumentation and Detectors +0705.0321 Theory +0705.0329 Phenomenology +0705.0331 +0705.0343 +0705.0345 Phenomenology +0705.0349 +0705.0382 +0705.0383 Lattice +0705.0394 Theory +0705.0397 Phenomenology +0705.0399 Phenomenology +0705.0400 +0705.0440 +0705.0459 +0705.0465 Theory +0705.0469 +0705.0470 Phenomenology +0705.0473 Theory +0705.0486 Phenomenology +0705.0502 +0705.0513 +0705.0526 +0705.0527 Mesoscale and Nanoscale Physics +0705.0533 +0705.0534 Phenomenology +0705.0535 Theory +0705.0548 +0705.0550 Theory +0705.0554 Phenomenology +0705.0557 +0705.0563 Theory +0705.0565 Phenomenology +0705.0572 Lattice +0705.0579 Phenomenology +0705.0597 Theory +0705.0613 Theory +0705.0617 Lattice +0705.0624 Phenomenology +0705.0632 Theory +0705.0638 +0705.0644 +0705.0646 Theory +0705.0673 Phenomenology +0705.0674 +0705.0676 Theory +0705.0680 Phenomenology +0705.0688 +0705.0689 Phenomenology +0705.0691 +0705.0703 Phenomenology +0705.0712 +0705.0720 +0705.0727 +0705.0740 +0705.0746 Phenomenology +0705.0747 Theory +0705.0756 Theory +0705.0757 Phenomenology +0705.0774 +0705.0782 +0705.0792 Phenomenology +0705.0794 Phenomenology +0705.0802 Phenomenology +0705.0810 +0705.0812 Experiment +0705.0827 Theory +0705.0837 Phenomenology +0705.0842 +0705.0849 Atomic Physics +0705.0850 +0705.0861 Lattice +0705.0865 Phenomenology +0705.0866 Theory +0705.0871 Theory +0705.0882 Theory +0705.0884 Phenomenology +0705.0890 Theory +0705.0892 Phenomenology +0705.0916 Phenomenology +0705.0917 Phenomenology +0705.0921 Phenomenology +0705.0924 +0705.0934 Phenomenology +0705.0945 Phenomenology +0705.0954 Phenomenology +0705.0980 Theory +0705.0983 Theory +0705.1005 Phenomenology +0705.1014 Phenomenology +0705.1017 +0705.1039 +0705.1044 +0705.1047 Phenomenology +0705.1048 Theory +0705.1049 +0705.1051 +0705.1054 Theory +0705.1058 +0705.1059 +0705.1060 +0705.1068 Theory +0705.1080 +0705.1089 Phenomenology +0705.1092 +0705.1098 Theory +0705.1111 +0705.1121 Phenomenology +0705.1131 +0705.1147 +0705.1157 Theory +0705.1158 +0705.1162 Theory +0705.1178 Theory +0705.1179 +0705.1181 Phenomenology +0705.1188 Phenomenology +0705.1196 Phenomenology +0705.1200 Phenomenology +0705.1207 +0705.1211 Theory +0705.1225 Theory +0705.1228 Theory +0705.1233 Theory +0705.1234 Phenomenology +0705.1264 +0705.1277 +0705.1290 Phenomenology +0705.1291 +0705.1313 +0705.1318 +0705.1322 Theory +0705.1326 Phenomenology +0705.1330 Phenomenology +0705.1334 Phenomenology +0705.1337 +0705.1346 +0705.1352 Phenomenology +0705.1357 Phenomenology +0705.1358 +0705.1359 +0705.1362 +0705.1366 Phenomenology +0705.1369 +0705.1371 +0705.1379 Phenomenology +0705.1391 Phenomenology +0705.1404 Theory +0705.1419 +0705.1422 Theory +0705.1429 +0705.1447 Phenomenology +0705.1468 Theory +0705.1473 +0705.1476 Phenomenology +0705.1483 Theory +0705.1491 +0705.1495 Phenomenology +0705.1498 +0705.1499 Phenomenology +0705.1503 Phenomenology +0705.1507 Theory +0705.1511 +0705.1518 +0705.1528 Strongly Correlated Electrons +0705.1550 Experiment +0705.1570 +0705.1571 +0705.1572 +0705.1573 Phenomenology +0705.1575 Phenomenology +0705.1584 Phenomenology +0705.1586 Theory +0705.1596 Phenomenology +0705.1624 Phenomenology +0705.1634 Phenomenology +0705.1642 +0705.1665 +0705.1678 +0705.1681 +0705.1688 +0705.1691 +0705.1693 Theory +0705.1695 Phenomenology +0705.1697 +0705.1716 +0705.1719 Phenomenology +0705.1729 Phenomenology +0705.1738 +0705.1749 Phenomenology +0705.1756 +0705.1769 Theory +0705.1772 +0705.1785 Theory +0705.1786 Theory +0705.1791 Theory +0705.1816 Theory +0705.1821 Phenomenology +0705.1826 +0705.1840 Theory +0705.1857 Phenomenology +0705.1864 Theory +0705.1871 Theory +0705.1872 Theory +0705.1878 +0705.1879 Theory +0705.1883 Phenomenology +0705.1885 Phenomenology +0705.1896 Phenomenology +0705.1902 Phenomenology +0705.1906 +0705.1908 Theory +0705.1916 Theory +0705.1920 Phenomenology +0705.1923 Theory +0705.1924 Theory +0705.1929 Theory +0705.1933 Statistical Mechanics +0705.1975 Phenomenology +0705.1981 +0705.1982 Theory +0705.1983 Theory +0705.1987 +0705.1995 Phenomenology +0705.2002 Theory +0705.2008 Phenomenology +0705.2010 +0705.2013 Phenomenology +0705.2014 Lattice +0705.2019 Phenomenology +0705.2025 Phenomenology +0705.2047 +0705.2059 Theory +0705.2062 Theory +0705.2064 +0705.2066 +0705.2068 Theory +0705.2070 +0705.2113 Theory +0705.2131 +0705.2141 Phenomenology +0705.2146 Theory +0705.2150 Theory +0705.2151 +0705.2153 Phenomenology +0705.2169 +0705.2183 Phenomenology +0705.2193 Phenomenology +0705.2197 Theory +0705.2198 Lattice +0705.2200 Theory +0705.2203 +0705.2204 Phenomenology +0705.2208 Theory +0705.2212 Lattice +0705.2233 Theory +0705.2241 Phenomenology +0705.2245 Theory +0705.2249 Theory +0705.2252 +0705.2259 Theory +0705.2277 Phenomenology +0705.2282 Accelerator Physics +0705.2289 +0705.2290 Phenomenology +0705.2306 +0705.2325 +0705.2326 Phenomenology +0705.2331 Theory +0705.2336 +0705.2340 Lattice +0705.2347 Theory +0705.2352 Theory +0705.2357 +0705.2364 Theory +0705.2368 +0705.2369 Theory +0705.2380 +0705.2382 +0705.2386 Instrumentation and Detectors +0705.2388 +0705.2399 Phenomenology +0705.2403 Phenomenology +0705.2405 +0705.2410 Theory +0705.2413 Phenomenology +0705.2427 Theory +0705.2429 Theory +0705.2430 Theory +0705.2440 +0705.2443 +0705.2449 +0705.2465 +0705.2469 Theory +0705.2470 Phenomenology +0705.2471 Theory +0705.2478 +0705.2490 Theory +0705.2496 +0705.2501 Phenomenology +0705.2502 +0705.2511 +0705.2519 +0705.2533 +0705.2534 Theory +0705.2544 +0705.2555 +0705.2559 Phenomenology +0705.2562 Theory +0705.2563 Theory +0705.2567 Theory +0705.2571 +0705.2575 Phenomenology +0705.2595 Phenomenology +0705.2606 Theory +0705.2609 Phenomenology +0705.2610 Phenomenology +0705.2611 Theory +0705.2616 Phenomenology +0705.2621 Phenomenology +0705.2629 Lattice +0705.2634 Theory +0705.2639 Theory +0705.2656 +0705.2659 +0705.2666 Phenomenology +0705.2680 Theory +0705.2681 +0705.2682 Theory +0705.2695 +0705.2716 Theory +0705.2718 Lattice +0705.2723 Theory +0705.2729 +0705.2733 +0705.2744 Phenomenology +0705.2748 +0705.2751 Statistical Mechanics +0705.2755 Theory +0705.2777 Theory +0705.2778 Theory +0705.2797 Lattice +0705.2801 Experiment +0705.2834 Theory +0705.2844 Theory +0705.2851 +0705.2852 +0705.2880 +0705.2885 +0705.2887 Phenomenology +0705.2893 +0705.2898 Theory +0705.2900 Phenomenology +0705.2903 Theory +0705.2909 Phenomenology +0705.2917 Phenomenology +0705.2924 Phenomenology +0705.2926 Theory +0705.2928 Lattice +0705.2930 +0705.2939 Theory +0705.2949 Theory +0705.2952 +0705.2957 Phenomenology +0705.2960 Theory +0705.2968 +0705.2980 Theory +0705.2981 Theory +0705.2982 Theory +0705.2984 +0705.2987 +0705.2999 +0705.3007 Theory +0705.3027 +0705.3035 Phenomenology +0705.3037 Phenomenology +0705.3041 Phenomenology +0705.3043 Theory +0705.3049 Phenomenology +0705.3055 Phenomenology +0705.3064 Theory +0705.3074 +0705.3075 Phenomenology +0705.3079 Phenomenology +0705.3082 Phenomenology +0705.3086 Phenomenology +0705.3092 Phenomenology +0705.3095 Theory +0705.3098 +0705.3101 Phenomenology +0705.3103 Phenomenology +0705.3115 +0705.3127 Phenomenology +0705.3129 Theory +0705.3138 +0705.3148 Theory +0705.3150 Theory +0705.3151 Lattice +0705.3160 Theory +0705.3181 Phenomenology +0705.3192 +0705.3193 +0705.3206 Theory +0705.3210 Theory +0705.3221 Phenomenology +0705.3225 Instrumentation and Detectors +0705.3229 Experiment +0705.3230 Phenomenology +0705.3238 +0705.3260 Phenomenology +0705.3263 Theory +0705.3265 Theory +0705.3279 Phenomenology +0705.3287 Phenomenology +0705.3291 Theory +0705.3292 Theory +0705.3306 Theory +0705.3307 +0705.3314 Phenomenology +0705.3320 Theory +0705.3323 +0705.3330 Theory +0705.3334 Phenomenology +0705.3367 Lattice +0705.3380 Theory +0705.3385 Phenomenology +0705.3392 Phenomenology +0705.3393 Theory +0705.3420 Lattice +0705.3422 +0705.3437 +0705.3439 +0705.3440 Theory +0705.3452 Theory +0705.3472 Phenomenology +0705.3475 +0705.3483 Experiment +0705.3484 Theory +0705.3493 Phenomenology +0705.3494 Theory +0705.3517 Theory +0705.3518 Phenomenology +0705.3523 Lattice +0705.3528 Theory +0705.3530 Theory +0705.3540 Theory +0705.3541 Strongly Correlated Electrons +0705.3546 Theory +0705.3550 +0705.3553 Phenomenology +0705.3579 +0705.3580 Phenomenology +0705.3587 +0705.3591 Theory +0705.3608 Theory +0705.3615 Atomic Physics +0705.3620 +0705.3630 Theory +0705.3636 Phenomenology +0705.3637 Phenomenology +0705.3650 Phenomenology +0705.3655 +0705.3656 Theory +0705.3672 Phenomenology +0705.3682 Phenomenology +0705.3692 Theory +0705.3694 Accelerator Physics +0705.3696 Mesoscale and Nanoscale Physics +0705.3697 Theory +0705.3698 Lattice +0705.3703 Instrumentation and Detectors +0705.3704 Atomic Physics +0705.3714 Theory +0705.3720 Phenomenology +0705.3745 Lattice +0705.3755 +0705.3782 Phenomenology +0705.3786 Phenomenology +0705.3787 Phenomenology +0705.3789 Theory +0705.3795 +0705.3796 +0705.3809 Phenomenology +0705.3814 Lattice +0705.3816 +0705.3828 Theory +0705.3829 +0705.3831 Lattice +0705.3835 +0705.3837 Theory +0705.3844 Phenomenology +0705.3845 +0705.3847 Theory +0705.3866 Theory +0705.3871 Theory +0705.3887 Phenomenology +0705.3891 Statistical Mechanics +0705.3892 +0705.3893 Theory +0705.3899 Phenomenology +0705.3909 Phenomenology +0705.3915 Phenomenology +0705.3933 +0705.3936 +0705.3939 Phenomenology +0705.3947 Theory +0705.3950 +0705.3951 +0705.3960 +0705.3965 +0705.3973 +0705.3998 +0705.4002 +0705.4012 +0705.4022 Theory +0705.4027 Phenomenology +0705.4029 Phenomenology +0705.4046 Phenomenology +0705.4050 Theory +0705.4052 Phenomenology +0705.4059 Phenomenology +0705.4063 +0705.4069 +0705.4070 Phenomenology +0705.4082 Theory +0705.4097 Phenomenology +0705.4115 Phenomenology +0705.4129 Lattice +0705.4141 Theory +0705.4156 Phenomenology +0705.4160 Phenomenology +0705.4183 Experiment +0705.4202 +0705.4205 Theory +0705.4206 Accelerator Physics +0705.4214 Theory +0705.4219 Phenomenology +0705.4227 Phenomenology +0705.4249 +0705.4265 +0705.4267 Theory +0705.4280 Phenomenology +0705.4294 Theory +0705.4298 +0705.4313 +0705.4317 Phenomenology +0705.4335 Other Condensed Matter +0705.4337 +0705.4340 Phenomenology +0705.4345 Phenomenology +0705.4357 Phenomenology +0705.4381 Theory +0705.4383 Phenomenology +0705.4384 Theory +0705.4387 Phenomenology +0705.4392 Phenomenology +0705.4393 Theory +0705.4398 +0705.4402 Phenomenology +0705.4407 Phenomenology +0705.4409 +0705.4414 Theory +0705.4418 +0705.4419 Phenomenology +0705.4421 Phenomenology +0705.4426 +0705.4428 Atomic Physics +0705.4434 +0705.4443 +0705.4449 +0705.4452 +0705.4457 +0705.4459 +0705.4461 Theory +0705.4471 Theory +0705.4477 +0705.4484 Theory +0705.4492 +0705.4493 Phenomenology +0705.4507 +0705.4511 +0705.4512 +0705.4526 +0705.4528 Phenomenology +0705.4533 Theory +0705.4547 Phenomenology +0705.4551 Statistical Mechanics +0705.4559 Phenomenology +0705.4565 +0705.4568 +0705.4574 +0705.4575 Theory +0705.4581 Theory +0705.4585 +0705.4599 Phenomenology +0705.4600 +0705.4601 +0705.4603 +0705.4609 +0705.4613 Theory +0705.4620 +0705.4627 +0705.4628 Theory +0705.4629 Experiment +0705.4644 +0705.4645 +0705.4652 +0705.4660 Lattice +0705.4666 Phenomenology +0705.4667 Phenomenology +0705.4668 +0705.4669 +0705.4677 Phenomenology +0706.0004 +0706.0007 Phenomenology +0706.0012 +0706.0021 Theory +0706.0034 +0706.0036 Theory +0706.0039 +0706.0048 +0706.0053 Phenomenology +0706.0055 +0706.0060 +0706.0071 Theory +0706.0074 +0706.0080 +0706.0087 +0706.0090 +0706.0092 +0706.0102 Instrumentation and Detectors +0706.0108 Phenomenology +0706.0114 +0706.0129 +0706.0130 +0706.0131 Data Analysis, Statistics and Probability +0706.0132 +0706.0142 +0706.0145 +0706.0175 Theory +0706.0179 +0706.0183 +0706.0199 +0706.0200 Phenomenology +0706.0207 Theory +0706.0212 Statistical Mechanics +0706.0217 Theory +0706.0222 Theory +0706.0226 +0706.0232 Phenomenology +0706.0233 +0706.0242 +0706.0258 +0706.0260 +0706.0263 +0706.0273 +0706.0274 +0706.0275 Theory +0706.0277 +0706.0279 +0706.0283 +0706.0288 Theory +0706.0293 Phenomenology +0706.0295 Theory +0706.0296 Phenomenology +0706.0302 Phenomenology +0706.0312 Phenomenology +0706.0316 Phenomenology +0706.0325 Phenomenology +0706.0340 Theory +0706.0354 Phenomenology +0706.0364 +0706.0365 Theory +0706.0368 Theory +0706.0369 +0706.0375 +0706.0384 Phenomenology +0706.0391 +0706.0399 Phenomenology +0706.0409 Theory +0706.0410 Theory +0706.0412 +0706.0424 Theory +0706.0426 Statistical Mechanics +0706.0432 Phenomenology +0706.0437 Experiment +0706.0441 Phenomenology +0706.0442 Theory +0706.0454 Phenomenology +0706.0459 Phenomenology +0706.0467 +0706.0471 +0706.0472 +0706.0485 Theory +0706.0490 Phenomenology +0706.0491 +0706.0495 +0706.0509 +0706.0511 Theory +0706.0514 Theory +0706.0533 +0706.0536 Phenomenology +0706.0553 +0706.0586 +0706.0589 Phenomenology +0706.0595 Theory +0706.0596 Phenomenology +0706.0603 Theory +0706.0607 +0706.0616 Phenomenology +0706.0636 +0706.0646 +0706.0649 +0706.0654 +0706.0658 +0706.0663 Theory +0706.0678 +0706.0691 +0706.0693 Phenomenology +0706.0698 +0706.0704 +0706.0706 Theory +0706.0728 Theory +0706.0731 Theory +0706.0740 +0706.0746 Instrumentation and Detectors +0706.0762 Theory +0706.0771 Phenomenology +0706.0772 Theory +0706.0779 +0706.0781 Phenomenology +0706.0805 Phenomenology +0706.0820 Theory +0706.0827 Phenomenology +0706.0850 Phenomenology +0706.0865 Phenomenology +0706.0890 Theory +0706.0892 +0706.0897 Phenomenology +0706.0904 +0706.0909 Phenomenology +0706.0913 +0706.0920 Theory +0706.0923 +0706.0928 +0706.0942 Phenomenology +0706.0948 Phenomenology +0706.0949 +0706.0955 Phenomenology +0706.0956 +0706.0964 +0706.0974 +0706.0976 Theory +0706.0977 Phenomenology +0706.0979 Theory +0706.0981 +0706.0983 Theory +0706.0984 +0706.0985 +0706.0986 Phenomenology +0706.0990 Theory +0706.0991 +0706.0992 +0706.1014 Theory +0706.1020 Theory +0706.1026 Phenomenology +0706.1039 Phenomenology +0706.1043 Theory +0706.1057 +0706.1064 +0706.1067 +0706.1071 +0706.1085 Phenomenology +0706.1086 +0706.1089 Geophysics +0706.1104 Theory +0706.1114 Theory +0706.1131 Lattice +0706.1133 Phenomenology +0706.1136 Instrumentation and Detectors +0706.1146 +0706.1150 Phenomenology +0706.1153 Phenomenology +0706.1157 +0706.1158 Theory +0706.1163 Theory +0706.1182 +0706.1183 Theory +0706.1185 +0706.1186 Phenomenology +0706.1189 +0706.1191 +0706.1196 Phenomenology +0706.1197 +0706.1200 Theory +0706.1207 Lattice +0706.1209 Phenomenology +0706.1210 Theory +0706.1213 +0706.1216 Phenomenology +0706.1222 +0706.1223 +0706.1240 +0706.1242 +0706.1258 +0706.1262 Phenomenology +0706.1281 Phenomenology +0706.1282 +0706.1284 Phenomenology +0706.1305 +0706.1315 +0706.1319 +0706.1338 Theory +0706.1341 Experiment +0706.1344 Theory +0706.1349 +0706.1360 +0706.1361 Theory +0706.1375 +0706.1377 Theory +0706.1378 Theory +0706.1392 Lattice +0706.1397 Phenomenology +0706.1411 Theory +0706.1436 Phenomenology +0706.1440 Theory +0706.1442 Phenomenology +0706.1443 Theory +0706.1445 Theory +0706.1450 +0706.1455 +0706.1462 Phenomenology +0706.1469 Theory +0706.1473 Exactly Solvable and Integrable Systems +0706.1474 Experiment +0706.1479 Theory +0706.1490 Phenomenology +0706.1509 +0706.1513 +0706.1515 Theory +0706.1522 +0706.1534 +0706.1543 Phenomenology +0706.1547 +0706.1555 Theory +0706.1571 Phenomenology +0706.1573 Theory +0706.1577 Theory +0706.1599 +0706.1619 +0706.1628 +0706.1629 +0706.1631 Theory +0706.1640 Experiment +0706.1647 Lattice +0706.1649 Theory +0706.1654 +0706.1660 Theory +0706.1667 Theory +0706.1690 Experiment +0706.1696 Phenomenology +0706.1708 Theory +0706.1721 +0706.1726 Lattice +0706.1756 +0706.1760 Phenomenology +0706.1768 Theory +0706.1775 +0706.1778 Theory +0706.1781 Phenomenology +0706.1795 Theory +0706.1823 Phenomenology +0706.1829 Phenomenology +0706.1830 Theory +0706.1843 Theory +0706.1844 Phenomenology +0706.1845 Phenomenology +0706.1847 Theory +0706.1875 Theory +0706.1877 Theory +0706.1898 Experiment +0706.1899 +0706.1923 Theory +0706.1930 +0706.1934 Phenomenology +0706.1946 Phenomenology +0706.1957 Theory +0706.1960 +0706.1979 +0706.1980 Theory +0706.1981 +0706.1992 Phenomenology +0706.2003 +0706.2008 +0706.2011 +0706.2014 +0706.2015 Theory +0706.2018 Phenomenology +0706.2031 Classical Physics +0706.2036 +0706.2045 Experiment +0706.2054 Phenomenology +0706.2055 +0706.2071 Phenomenology +0706.2072 +0706.2074 Phenomenology +0706.2091 +0706.2098 +0706.2101 +0706.2108 +0706.2109 +0706.2129 Theory +0706.2156 Phenomenology +0706.2167 Theory +0706.2168 Phenomenology +0706.2179 +0706.2183 Phenomenology +0706.2186 +0706.2188 +0706.2195 +0706.2203 +0706.2205 Phenomenology +0706.2207 Theory +0706.2211 +0706.2215 Theory +0706.2216 Theory +0706.2221 +0706.2224 Quantum Algebra +0706.2237 Phenomenology +0706.2252 Theory +0706.2264 Phenomenology +0706.2273 +0706.2278 +0706.2280 Accelerator Physics +0706.2292 Accelerator Physics +0706.2298 Lattice +0706.2299 +0706.2300 Phenomenology +0706.2304 Theory +0706.2318 +0706.2319 +0706.2330 +0706.2339 Phenomenology +0706.2341 Phenomenology +0706.2342 Theory +0706.2349 +0706.2358 Experiment +0706.2360 +0706.2367 +0706.2377 Phenomenology +0706.2379 Theory +0706.2393 +0706.2395 +0706.2396 +0706.2399 +0706.2401 Phenomenology +0706.2407 Phenomenology +0706.2422 +0706.2426 Phenomenology +0706.2435 +0706.2444 +0706.2460 Lattice +0706.2472 Theory +0706.2474 Phenomenology +0706.2486 +0706.2489 Theory +0706.2498 +0706.2500 +0706.2502 Theory +0706.2503 +0706.2504 +0706.2523 +0706.2525 Phenomenology +0706.2526 +0706.2529 Lattice +0706.2532 Phenomenology +0706.2533 Phenomenology +0706.2534 Phenomenology +0706.2540 Phenomenology +0706.2541 +0706.2543 +0706.2556 +0706.2560 Phenomenology +0706.2561 +0706.2562 +0706.2565 Experiment +0706.2569 Phenomenology +0706.2576 Instrumentation and Detectors +0706.2581 Theory +0706.2597 +0706.2600 Theory +0706.2611 Phenomenology +0706.2641 Instrumentation and Detectors +0706.2651 Accelerator Physics +0706.2654 Theory +0706.2655 Theory +0706.2659 +0706.2665 Phenomenology +0706.2676 Phenomenology +0706.2678 Phenomenology +0706.2682 Phenomenology +0706.2685 Phenomenology +0706.2687 +0706.2690 +0706.2693 +0706.2694 Phenomenology +0706.2695 +0706.2696 +0706.2698 +0706.2708 +0706.2710 +0706.2723 +0706.2727 +0706.2730 +0706.2733 Phenomenology +0706.2737 +0706.2741 Experiment +0706.2749 +0706.2751 Theory +0706.2753 Phenomenology +0706.2771 +0706.2786 Experiment +0706.2787 Quantum Algebra +0706.2793 Phenomenology +0706.2796 Phenomenology +0706.2804 Experiment +0706.2830 +0706.2833 Superconductivity +0706.2834 +0706.2836 Phenomenology +0706.2843 +0706.2846 Phenomenology +0706.2857 Theory +0706.2859 Theory +0706.2862 Phenomenology +0706.2864 +0706.2871 Phenomenology +0706.2891 +0706.2897 Accelerator Physics +0706.2909 +0706.2911 +0706.2914 Phenomenology +0706.2929 Theory +0706.2933 +0706.2937 +0706.2942 +0706.2944 Phenomenology +0706.2945 Materials Science +0706.2949 +0706.2952 +0706.2953 Phenomenology +0706.2972 Phenomenology +0706.2975 Phenomenology +0706.2983 Theory +0706.2984 Phenomenology +0706.2988 Phenomenology +0706.2989 +0706.2997 Phenomenology +0706.3005 +0706.3007 Lattice +0706.3016 Mesoscale and Nanoscale Physics +0706.3019 +0706.3023 +0706.3026 Lattice +0706.3027 Phenomenology +0706.3041 +0706.3047 +0706.3049 Theory +0706.3053 +0706.3056 +0706.3059 Phenomenology +0706.3064 +0706.3070 Theory +0706.3075 Theory +0706.3077 Statistical Mechanics +0706.3080 +0706.3085 +0706.3103 Atomic Physics +0706.3112 Theory +0706.3119 Theory +0706.3120 Phenomenology +0706.3127 Theory +0706.3134 Theory +0706.3135 Phenomenology +0706.3145 Phenomenology +0706.3155 Phenomenology +0706.3166 Differential Geometry +0706.3167 Phenomenology +0706.3169 Theory +0706.3176 Theory +0706.3179 +0706.3182 +0706.3184 +0706.3198 +0706.3199 Theory +0706.3201 Theory +0706.3202 +0706.3203 Phenomenology +0706.3208 Phenomenology +0706.3215 Strongly Correlated Electrons +0706.3227 +0706.3228 Theory +0706.3231 Theory +0706.3235 Phenomenology +0706.3239 Theory +0706.3241 Phenomenology +0706.3243 +0706.3248 Instrumentation and Detectors +0706.3258 Phenomenology +0706.3271 +0706.3283 Phenomenology +0706.3287 +0706.3288 Phenomenology +0706.3301 +0706.3307 Theory +0706.3312 +0706.3316 Instrumentation and Detectors +0706.3356 +0706.3357 +0706.3382 Theory +0706.3385 +0706.3386 +0706.3388 Phenomenology +0706.3391 +0706.3393 Theory +0706.3394 Theory +0706.3396 Theory +0706.3408 Lattice +0706.3419 Experiment +0706.3428 +0706.3436 Phenomenology +0706.3440 +0706.3452 +0706.3466 Theory +0706.3473 Theory +0706.3485 +0706.3494 Statistical Mechanics +0706.3496 Phenomenology +0706.3497 +0706.3509 +0706.3516 Instrumentation and Detectors +0706.3517 Theory +0706.3518 Lattice +0706.3531 +0706.3543 +0706.3549 Lattice +0706.3563 Theory +0706.3567 +0706.3568 +0706.3569 +0706.3585 +0706.3586 Theory +0706.3598 +0706.3599 +0706.3600 +0706.3605 Theory +0706.3606 Instrumentation and Detectors +0706.3636 Theory +0706.3645 Theory +0706.3650 Theory +0706.3653 +0706.3658 Theory +0706.3659 Theory +0706.3662 Theory +0706.3663 Theory +0706.3667 +0706.3672 Phenomenology +0706.3685 Phenomenology +0706.3688 Theory +0706.3690 Theory +0706.3692 Phenomenology +0706.3717 Phenomenology +0706.3724 +0706.3730 +0706.3731 Lattice +0706.3732 +0706.3736 Theory +0706.3741 +0706.3746 Theory +0706.3757 +0706.3770 +0706.3771 +0706.3782 +0706.3784 Phenomenology +0706.3786 Theory +0706.3788 Phenomenology +0706.3792 +0706.3797 Phenomenology +0706.3801 Phenomenology +0706.3802 +0706.3804 +0706.3809 Experiment +0706.3811 Theory +0706.3820 +0706.3823 +0706.3835 +0706.3853 Phenomenology +0706.3854 Theory +0706.3859 +0706.3860 +0706.3864 +0706.3871 +0706.3873 Phenomenology +0706.3886 +0706.3890 +0706.3896 +0706.3903 Theory +0706.3909 Phenomenology +0706.3913 General Physics +0706.3915 Theory +0706.3919 Lattice +0706.3921 Phenomenology +0706.3936 Theory +0706.3939 +0706.3951 Theory +0706.3955 Experiment +0706.3958 +0706.3960 Phenomenology +0706.3978 Theory +0706.3982 Theory +0706.3994 +0706.3999 Theory +0706.4000 Superconductivity +0706.4006 Theory +0706.4008 +0706.4010 +0706.4023 +0706.4025 Theory +0706.4026 +0706.4039 +0706.4049 +0706.4052 Theory +0706.4064 +0706.4071 Phenomenology +0706.4074 Experiment +0706.4084 +0706.4105 +0706.4114 Experiment +0706.4117 Phenomenology +0706.4121 Theory +0706.4125 Theory +0706.4141 Phenomenology +0706.4142 +0706.4153 Lattice +0706.4154 +0706.4156 +0706.4165 Phenomenology +0706.4167 Experiment +0706.4171 +0706.4173 Phenomenology +0706.4191 Phenomenology +0706.4196 Theory +0706.4200 +0706.4204 +0706.4206 Lattice +0706.4215 Phenomenology +0706.4222 Phenomenology +0706.4231 +0706.4242 Phenomenology +0706.4248 +0706.4259 Phenomenology +0706.4266 +0706.4269 Phenomenology +0706.4277 +0706.4285 Theory +0706.4286 +0706.4289 +0706.4293 +0706.4304 +0706.4307 Theory +0706.4311 Phenomenology +0706.4313 Phenomenology +0706.4316 +0706.4330 +0706.4349 Phenomenology +0706.4357 +0706.4359 Lattice +0706.4363 +0706.4366 Lattice +0706.4373 Phenomenology +0706.4378 Theory +0706.4380 Phenomenology +0706.4381 Phenomenology +0706.4383 +0706.4385 Lattice +0706.4393 +0706.4402 +0706.4407 Theory +0706.4427 Phenomenology +0706.4428 +0706.4429 Experiment +0706.4431 +0706.4435 +0706.4437 +0706.4461 +0706.4468 Experiment +0706.4471 Theory +0706.4482 +0707.0001 Theory +0707.0002 Theory +0707.0005 Phenomenology +0707.0006 +0707.0020 Phenomenology +0707.0042 +0707.0051 Phenomenology +0707.0053 +0707.0055 Lattice +0707.0060 Phenomenology +0707.0064 Phenomenology +0707.0076 +0707.0079 Lattice +0707.0081 Theory +0707.0092 Theory +0707.0099 +0707.0105 Theory +0707.0106 +0707.0122 +0707.0128 +0707.0135 +0707.0138 Experiment +0707.0146 +0707.0164 +0707.0166 +0707.0168 Theory +0707.0190 +0707.0196 +0707.0200 +0707.0208 +0707.0209 Phenomenology +0707.0215 +0707.0222 Experiment +0707.0231 Optics +0707.0232 +0707.0249 +0707.0262 Phenomenology +0707.0263 Experiment +0707.0273 +0707.0274 Phenomenology +0707.0290 +0707.0292 +0707.0293 Strongly Correlated Electrons +0707.0294 Phenomenology +0707.0301 +0707.0302 Accelerator Physics +0707.0310 Theory +0707.0314 +0707.0326 Theory +0707.0331 Phenomenology +0707.0341 Theory +0707.0343 Phenomenology +0707.0351 Phenomenology +0707.0354 +0707.0355 +0707.0357 Theory +0707.0361 +0707.0363 +0707.0368 +0707.0374 Instrumentation and Detectors +0707.0378 Phenomenology +0707.0381 Phenomenology +0707.0387 Theory +0707.0396 Lattice +0707.0404 Experiment +0707.0405 Theory +0707.0409 +0707.0410 +0707.0419 Phenomenology +0707.0423 Phenomenology +0707.0424 Theory +0707.0426 +0707.0428 +0707.0431 +0707.0436 +0707.0438 +0707.0448 +0707.0468 +0707.0471 +0707.0484 +0707.0486 +0707.0497 Theory +0707.0502 +0707.0511 Theory +0707.0520 +0707.0528 +0707.0530 +0707.0535 +0707.0543 Theory +0707.0544 +0707.0549 +0707.0552 Theory +0707.0564 Phenomenology +0707.0576 +0707.0577 +0707.0579 +0707.0582 Lattice +0707.0587 Lattice +0707.0588 +0707.0601 Theory +0707.0615 +0707.0632 Phenomenology +0707.0633 Phenomenology +0707.0635 +0707.0646 Theory +0707.0650 Phenomenology +0707.0669 +0707.0677 Phenomenology +0707.0680 Theory +0707.0697 Experiment +0707.0702 +0707.0706 +0707.0708 +0707.0710 +0707.0716 Phenomenology +0707.0719 Theory +0707.0723 +0707.0726 +0707.0729 Phenomenology +0707.0730 +0707.0736 +0707.0757 Theory +0707.0767 +0707.0773 Phenomenology +0707.0775 Theory +0707.0781 Phenomenology +0707.0793 +0707.0797 Phenomenology +0707.0801 +0707.0812 Phenomenology +0707.0824 Phenomenology +0707.0825 Theory +0707.0839 Phenomenology +0707.0842 Theory +0707.0843 Phenomenology +0707.0847 +0707.0851 Theory +0707.0856 +0707.0857 +0707.0863 Phenomenology +0707.0867 +0707.0868 Theory +0707.0875 +0707.0876 +0707.0877 Phenomenology +0707.0883 +0707.0884 Theory +0707.0886 +0707.0893 Phenomenology +0707.0894 Theory +0707.0912 Phenomenology +0707.0914 Phenomenology +0707.0919 Phenomenology +0707.0921 +0707.0923 Phenomenology +0707.0931 +0707.0942 +0707.0946 Phenomenology +0707.0947 +0707.0964 Theory +0707.1009 +0707.1056 Theory +0707.1061 +0707.1077 +0707.1081 +0707.1085 Theory +0707.1088 +0707.1094 +0707.1101 Phenomenology +0707.1118 +0707.1127 Experiment +0707.1128 +0707.1132 +0707.1138 Phenomenology +0707.1145 Phenomenology +0707.1149 Lattice +0707.1153 Theory +0707.1157 Theory +0707.1172 General Physics +0707.1173 Phenomenology +0707.1180 +0707.1181 +0707.1182 +0707.1186 Theory +0707.1188 Phenomenology +0707.1192 Experiment +0707.1198 Accelerator Physics +0707.1200 Theory +0707.1202 +0707.1219 Theory +0707.1234 Phenomenology +0707.1242 Experiment +0707.1248 +0707.1268 Phenomenology +0707.1270 Theory +0707.1272 Phenomenology +0707.1275 Phenomenology +0707.1283 +0707.1285 Phenomenology +0707.1286 Phenomenology +0707.1294 Phenomenology +0707.1296 Experiment +0707.1323 Phenomenology +0707.1329 Theory +0707.1332 Phenomenology +0707.1350 +0707.1370 +0707.1371 Experiment +0707.1378 Phenomenology +0707.1385 +0707.1388 Phenomenology +0707.1393 Theory +0707.1396 Theory +0707.1401 Phenomenology +0707.1416 Theory +0707.1419 Phenomenology +0707.1421 Theory +0707.1424 Phenomenology +0707.1426 Theory +0707.1428 +0707.1440 Phenomenology +0707.1457 +0707.1475 +0707.1481 +0707.1487 +0707.1488 Experiment +0707.1489 +0707.1491 Phenomenology +0707.1506 Phenomenology +0707.1508 Experiment +0707.1516 +0707.1518 Phenomenology +0707.1519 +0707.1520 Other Condensed Matter +0707.1535 Phenomenology +0707.1536 Phenomenology +0707.1545 Theory +0707.1556 Phenomenology +0707.1576 +0707.1584 +0707.1591 Phenomenology +0707.1592 Phenomenology +0707.1597 Theory +0707.1632 Phenomenology +0707.1636 +0707.1645 +0707.1651 Phenomenology +0707.1664 Theory +0707.1667 +0707.1670 Lattice +0707.1678 +0707.1679 +0707.1685 Accelerator Physics +0707.1694 Phenomenology +0707.1697 Theory +0707.1723 Phenomenology +0707.1735 Phenomenology +0707.1737 Theory +0707.1747 Phenomenology +0707.1758 Instrumentation and Detectors +0707.1768 Theory +0707.1776 +0707.1788 +0707.1789 Phenomenology +0707.1799 Theory +0707.1816 +0707.1817 Phenomenology +0707.1861 +0707.1862 Statistical Mechanics +0707.1869 Lattice +0707.1871 Theory +0707.1873 Phenomenology +0707.1898 +0707.1903 Theory +0707.1933 Theory +0707.1943 +0707.1948 Phenomenology +0707.1949 Phenomenology +0707.1951 +0707.1972 +0707.1987 Lattice +0707.1995 Theory +0707.1997 Phenomenology +0707.2010 Phenomenology +0707.2013 Theory +0707.2030 Phenomenology +0707.2063 Phenomenology +0707.2065 Phenomenology +0707.2066 Phenomenology +0707.2074 Phenomenology +0707.2081 Theory +0707.2082 Theory +0707.2083 +0707.2089 +0707.2120 +0707.2128 +0707.2129 +0707.2132 Phenomenology +0707.2157 +0707.2168 +0707.2174 Theory +0707.2177 Phenomenology +0707.2181 Theory +0707.2207 Theory +0707.2208 Phenomenology +0707.2216 +0707.2217 Differential Geometry +0707.2222 Phenomenology +0707.2285 Phenomenology +0707.2289 Experiment +0707.2299 +0707.2302 Theory +0707.2303 Theory +0707.2304 Theory +0707.2309 Phenomenology +0707.2314 Phenomenology +0707.2315 Theory +0707.2323 Phenomenology +0707.2336 Theory +0707.2373 Phenomenology +0707.2379 Phenomenology +0707.2385 Phenomenology +0707.2389 +0707.2402 Lattice +0707.2410 +0707.2413 Experiment +0707.2419 Phenomenology +0707.2430 Statistical Mechanics +0707.2434 Theory +0707.2449 Theory +0707.2451 Phenomenology +0707.2452 Phenomenology +0707.2453 +0707.2458 Lattice +0707.2463 Phenomenology +0707.2473 +0707.2480 Theory +0707.2496 Phenomenology +0707.2504 Phenomenology +0707.2509 Phenomenology +0707.2510 Phenomenology +0707.2511 Theory +0707.2523 Phenomenology +0707.2531 Theory +0707.2533 Phenomenology +0707.2541 Experiment +0707.2543 Instrumentation and Detectors +0707.2545 Phenomenology +0707.2548 +0707.2553 Phenomenology +0707.2559 +0707.2588 +0707.2589 Phenomenology +0707.2590 Theory +0707.2613 +0707.2616 +0707.2623 Phenomenology +0707.2635 Phenomenology +0707.2637 Phenomenology +0707.2639 +0707.2641 Phenomenology +0707.2651 +0707.2661 +0707.2664 +0707.2665 Phenomenology +0707.2671 Theory +0707.2673 +0707.2681 +0707.2686 +0707.2692 +0707.2695 +0707.2699 Theory +0707.2700 Phenomenology +0707.2712 Theory +0707.2726 +0707.2727 +0707.2730 Theory +0707.2737 Theory +0707.2738 Theory +0707.2740 +0707.2742 +0707.2745 Theory +0707.2748 +0707.2749 +0707.2752 +0707.2754 Theory +0707.2756 +0707.2762 Theory +0707.2764 +0707.2768 +0707.2775 +0707.2788 Lattice +0707.2794 +0707.2795 +0707.2797 +0707.2801 Phenomenology +0707.2812 Phenomenology +0707.2815 +0707.2824 +0707.2825 +0707.2827 +0707.2829 +0707.2838 Phenomenology +0707.2844 Phenomenology +0707.2854 +0707.2855 Phenomenology +0707.2860 Lattice +0707.2863 Theory +0707.2872 Lattice +0707.2878 Phenomenology +0707.2882 +0707.2894 +0707.2897 Phenomenology +0707.2933 +0707.2936 Theory +0707.2941 +0707.2942 Phenomenology +0707.2944 Phenomenology +0707.2955 Phenomenology +0707.2958 Phenomenology +0707.2959 Phenomenology +0707.2967 Phenomenology +0707.2973 Phenomenology +0707.2977 Theory +0707.2982 +0707.2990 +0707.2991 +0707.3000 +0707.3006 Phenomenology +0707.3020 Phenomenology +0707.3024 Phenomenology +0707.3025 +0707.3027 Phenomenology +0707.3032 Phenomenology +0707.3033 +0707.3044 Phenomenology +0707.3050 +0707.3059 +0707.3069 Soft Condensed Matter +0707.3093 Experiment +0707.3096 Phenomenology +0707.3098 Phenomenology +0707.3101 +0707.3105 Theory +0707.3107 +0707.3118 +0707.3133 +0707.3135 Theory +0707.3142 +0707.3145 Phenomenology +0707.3149 +0707.3150 Phenomenology +0707.3152 Phenomenology +0707.3156 Phenomenology +0707.3162 Phenomenology +0707.3166 Theory +0707.3180 Geophysics +0707.3181 Geophysics +0707.3184 Geophysics +0707.3189 Theory +0707.3191 +0707.3196 Phenomenology +0707.3201 +0707.3202 Phenomenology +0707.3203 Geophysics +0707.3222 +0707.3225 Lattice +0707.3228 Theory +0707.3240 Theory +0707.3247 Phenomenology +0707.3257 Instrumentation and Detectors +0707.3258 +0707.3260 +0707.3280 +0707.3285 Phenomenology +0707.3292 Phenomenology +0707.3298 Accelerator Physics +0707.3300 Phenomenology +0707.3308 Phenomenology +0707.3309 Lattice +0707.3314 +0707.3318 +0707.3326 +0707.3330 +0707.3332 +0707.3333 +0707.3334 +0707.3343 Phenomenology +0707.3354 Phenomenology +0707.3355 Theory +0707.3357 +0707.3365 +0707.3366 Phenomenology +0707.3367 Phenomenology +0707.3372 Phenomenology +0707.3380 +0707.3384 Theory +0707.3389 +0707.3396 +0707.3397 Phenomenology +0707.3406 Theory +0707.3413 +0707.3416 +0707.3419 Phenomenology +0707.3422 Phenomenology +0707.3431 Theory +0707.3439 Phenomenology +0707.3443 +0707.3444 Phenomenology +0707.3447 Phenomenology +0707.3453 Theory +0707.3471 Theory +0707.3475 +0707.3488 Phenomenology +0707.3492 Phenomenology +0707.3493 +0707.3494 Phenomenology +0707.3500 +0707.3514 +0707.3519 +0707.3522 Theory +0707.3525 +0707.3533 Lattice +0707.3537 Lattice +0707.3558 +0707.3591 Phenomenology +0707.3594 Phenomenology +0707.3595 Phenomenology +0707.3596 Phenomenology +0707.3600 Phenomenology +0707.3618 +0707.3624 +0707.3632 +0707.3648 Phenomenology +0707.3650 Phenomenology +0707.3652 Phenomenology +0707.3653 Theory +0707.3661 Phenomenology +0707.3662 Phenomenology +0707.3688 Phenomenology +0707.3689 +0707.3699 Experiment +0707.3712 Phenomenology +0707.3720 Phenomenology +0707.3724 Phenomenology +0707.3740 Lattice +0707.3749 Experiment +0707.3751 +0707.3755 Theory +0707.3769 +0707.3772 +0707.3785 Phenomenology +0707.3786 Theory +0707.3800 Phenomenology +0707.3818 Theory +0707.3826 Phenomenology +0707.3830 +0707.3832 Theory +0707.3843 +0707.3849 Lattice +0707.3858 Theory +0707.3859 Phenomenology +0707.3879 Phenomenology +0707.3885 Theory +0707.3893 Phenomenology +0707.3902 +0707.3904 Experiment +0707.3921 +0707.3932 +0707.3942 Theory +0707.3952 Phenomenology +0707.3954 Phenomenology +0707.3962 +0707.3966 +0707.3967 Phenomenology +0707.3969 +0707.3978 Theory +0707.3982 Phenomenology +0707.3983 Phenomenology +0707.3996 Phenomenology +0707.3997 Experiment +0707.3998 +0707.4006 Theory +0707.4011 Theory +0707.4015 +0707.4016 +0707.4018 Lattice +0707.4019 Instrumentation and Detectors +0707.4021 Instrumentation and Detectors +0707.4023 +0707.4027 +0707.4035 +0707.4037 Phenomenology +0707.4039 Theory +0707.4044 Phenomenology +0707.4049 Theory +0707.4053 +0707.4056 Phenomenology +0707.4067 +0707.4070 Phenomenology +0707.4073 Theory +0707.4077 Experiment +0707.4089 Phenomenology +0707.4100 Phenomenology +0707.4105 +0707.4107 +0707.4119 Other Condensed Matter +0707.4120 +0707.4123 Phenomenology +0707.4151 Experiment +0707.4163 Phenomenology +0707.4165 +0707.4167 +0707.4168 Phenomenology +0707.4170 +0707.4179 +0707.4183 +0707.4186 Phenomenology +0707.4199 +0707.4218 Theory +0707.4221 Theory +0707.4238 Phenomenology +0707.4247 +0707.4252 +0707.4254 Theory +0707.4266 Phenomenology +0707.4268 +0707.4282 Theory +0707.4283 +0707.4293 +0707.4296 Phenomenology +0707.4306 Theory +0707.4308 Theory +0707.4309 Phenomenology +0707.4312 +0707.4319 Phenomenology +0707.4324 +0707.4325 +0707.4327 +0707.4334 Theory +0707.4336 Experiment +0707.4337 Phenomenology +0707.4362 +0707.4380 +0707.4403 Phenomenology +0707.4405 +0707.4423 +0707.4425 Theory +0707.4434 +0707.4439 Phenomenology +0707.4442 Phenomenology +0707.4446 +0707.4454 Theory +0707.4455 +0707.4465 Theory +0707.4471 Theory +0707.4483 +0707.4510 Theory +0707.4513 +0707.4523 +0707.4526 +0707.4537 +0707.4538 Phenomenology +0707.4548 +0707.4554 Theory +0707.4562 Theory +0707.4568 Theory +0707.4572 Theory +0707.4592 Theory +0707.4593 Phenomenology +0707.4608 +0707.4639 +0707.4654 +0707.4658 Phenomenology +0707.4660 Theory +0707.4669 Theory +0707.4671 +0707.4672 +0707.4680 +0707.4681 +0708.0001 +0708.0005 Phenomenology +0708.0020 Plasma Physics +0708.0026 Phenomenology +0708.0030 +0708.0032 +0708.0035 +0708.0036 Phenomenology +0708.0037 +0708.0062 +0708.0069 Theory +0708.0081 +0708.0082 Experiment +0708.0095 +0708.0105 Phenomenology +0708.0115 +0708.0118 Theory +0708.0119 Phenomenology +0708.0120 Physics and Society +0708.0152 Phenomenology +0708.0157 Theory +0708.0159 +0708.0160 Experiment +0708.0166 Phenomenology +0708.0172 Phenomenology +0708.0194 +0708.0199 Phenomenology +0708.0207 Lattice +0708.0218 +0708.0223 Phenomenology +0708.0231 Phenomenology +0708.0238 Statistical Mechanics +0708.0240 Theory +0708.0248 Phenomenology +0708.0250 +0708.0299 Lattice +0708.0304 Experiment +0708.0307 Phenomenology +0708.0321 +0708.0324 Phenomenology +0708.0325 Theory +0708.0327 +0708.0351 +0708.0373 +0708.0391 +0708.0393 Theory +0708.0400 Theory +0708.0411 +0708.0415 Experiment +0708.0430 +0708.0432 Theory +0708.0433 Theory +0708.0438 Lattice +0708.0439 Theory +0708.0449 +0708.0450 +0708.0454 Phenomenology +0708.0459 +0708.0469 Theory +0708.0475 Phenomenology +0708.0476 Phenomenology +0708.0482 Theory +0708.0483 Theory +0708.0484 Lattice +0708.0488 Phenomenology +0708.0493 Theory +0708.0502 +0708.0513 +0708.0521 +0708.0525 +0708.0549 Phenomenology +0708.0556 Phenomenology +0708.0558 Lattice +0708.0567 Phenomenology +0708.0574 Theory +0708.0578 Phenomenology +0708.0583 Theory +0708.0589 Theory +0708.0596 Theory +0708.0602 Phenomenology +0708.0609 Theory +0708.0628 +0708.0633 Phenomenology +0708.0636 Theory +0708.0642 +0708.0655 +0708.0658 +0708.0668 Theory +0708.0671 Phenomenology +0708.0672 Theory +0708.0674 +0708.0675 +0708.0680 +0708.0682 Theory +0708.0708 +0708.0720 +0708.0723 +0708.0729 Theory +0708.0738 +0708.0743 Theory +0708.0750 +0708.0759 Theory +0708.0768 Instrumentation and Detectors +0708.0769 Phenomenology +0708.0779 Lattice +0708.0783 Theory +0708.0792 Phenomenology +0708.0800 +0708.0801 +0708.0802 Theory +0708.0812 Phenomenology +0708.0816 Phenomenology +0708.0820 +0708.0825 +0708.0828 +0708.0831 +0708.0848 +0708.0868 +0708.0871 +0708.0875 Instrumentation and Detectors +0708.0883 +0708.0884 +0708.0886 +0708.0888 Theory +0708.0889 +0708.0903 Lattice +0708.0914 Phenomenology +0708.0916 Phenomenology +0708.0917 +0708.0924 Theory +0708.0928 Theory +0708.0929 Physics Education +0708.0936 Phenomenology +0708.0937 Phenomenology +0708.0940 Phenomenology +0708.0943 +0708.0949 +0708.0989 Phenomenology +0708.0992 Theory +0708.1002 Theory +0708.1009 Phenomenology +0708.1010 Experiment +0708.1014 Theory +0708.1016 Theory +0708.1023 Theory +0708.1024 +0708.1029 Experiment +0708.1035 Phenomenology +0708.1038 +0708.1052 Theory +0708.1053 +0708.1055 +0708.1057 Phenomenology +0708.1059 +0708.1072 +0708.1075 Theory +0708.1076 +0708.1080 +0708.1088 Theory +0708.1105 Experiment +0708.1118 +0708.1119 +0708.1121 Phenomenology +0708.1122 Experiment +0708.1125 Exactly Solvable and Integrable Systems +0708.1127 +0708.1132 +0708.1141 +0708.1144 +0708.1151 Theory +0708.1153 +0708.1154 Theory +0708.1158 +0708.1161 Phenomenology +0708.1162 +0708.1163 +0708.1166 +0708.1168 +0708.1169 +0708.1177 +0708.1180 +0708.1182 +0708.1183 +0708.1190 +0708.1195 Phenomenology +0708.1199 +0708.1206 +0708.1220 +0708.1225 Phenomenology +0708.1227 +0708.1235 Phenomenology +0708.1236 +0708.1250 Phenomenology +0708.1260 Phenomenology +0708.1261 +0708.1268 Theory +0708.1281 Phenomenology +0708.1283 Theory +0708.1284 Phenomenology +0708.1295 Lattice +0708.1311 Experiment +0708.1322 Theory +0708.1325 Phenomenology +0708.1342 Theory +0708.1344 Phenomenology +0708.1346 Theory +0708.1347 Theory +0708.1362 Statistical Mechanics +0708.1364 +0708.1368 Theory +0708.1377 Lattice +0708.1379 Theory +0708.1393 Theory +0708.1398 +0708.1404 Phenomenology +0708.1420 +0708.1421 Lattice +0708.1443 Experiment +0708.1460 +0708.1463 Phenomenology +0708.1472 Theory +0708.1482 +0708.1488 +0708.1493 +0708.1494 Theory +0708.1502 Phenomenology +0708.1507 +0708.1537 +0708.1543 +0708.1557 Theory +0708.1561 Theory +0708.1576 Phenomenology +0708.1595 +0708.1600 +0708.1602 +0708.1612 Phenomenology +0708.1615 +0708.1618 +0708.1619 +0708.1621 Phenomenology +0708.1631 Phenomenology +0708.1656 Theory +0708.1659 Phenomenology +0708.1667 Theory +0708.1670 +0708.1683 +0708.1687 Phenomenology +0708.1689 Phenomenology +0708.1697 Phenomenology +0708.1701 Theory +0708.1717 Phenomenology +0708.1729 Phenomenology +0708.1731 Lattice +0708.1732 Theory +0708.1737 +0708.1740 Pattern Formation and Solitons +0708.1747 +0708.1769 +0708.1772 Theory +0708.1779 Theory +0708.1780 +0708.1783 +0708.1785 Phenomenology +0708.1786 Phenomenology +0708.1790 Experiment +0708.1803 +0708.1806 Atomic Physics +0708.1810 +0708.1811 +0708.1812 +0708.1816 Phenomenology +0708.1830 Theory +0708.1857 Lattice +0708.1871 Theory +0708.1894 +0708.1911 Theory +0708.1912 Phenomenology +0708.1933 +0708.1939 Phenomenology +0708.1946 Experiment +0708.1948 Phenomenology +0708.1960 Phenomenology +0708.1967 Theory +0708.1972 +0708.1976 Instrumentation and Detectors +0708.1994 Theory +0708.2000 Phenomenology +0708.2004 Theory +0708.2007 Phenomenology +0708.2012 Theory +0708.2013 +0708.2014 +0708.2015 +0708.2016 Phenomenology +0708.2018 +0708.2033 Phenomenology +0708.2037 +0708.2047 +0708.2048 Phenomenology +0708.2052 +0708.2079 Phenomenology +0708.2127 Phenomenology +0708.2133 Phenomenology +0708.2146 +0708.2171 Plasma Physics +0708.2183 +0708.2189 +0708.2194 Theory +0708.2208 Theory +0708.2209 +0708.2210 Theory +0708.2238 Phenomenology +0708.2258 +0708.2262 +0708.2267 Theory +0708.2276 Theory +0708.2297 +0708.2311 Theory +0708.2317 +0708.2328 Phenomenology +0708.2356 +0708.2357 +0708.2359 Lattice +0708.2360 +0708.2362 +0708.2368 Phenomenology +0708.2370 Instrumentation and Detectors +0708.2372 +0708.2378 +0708.2381 +0708.2389 Theory +0708.2390 +0708.2404 Lattice +0708.2407 Exactly Solvable and Integrable Systems +0708.2416 +0708.2423 Phenomenology +0708.2427 Phenomenology +0708.2433 +0708.2436 +0708.2443 Phenomenology +0708.2450 +0708.2466 Phenomenology +0708.2469 +0708.2471 Theory +0708.2483 +0708.2487 +0708.2493 +0708.2501 Phenomenology +0708.2503 Phenomenology +0708.2507 Phenomenology +0708.2521 Phenomenology +0708.2533 +0708.2534 Theory +0708.2537 +0708.2561 +0708.2568 Theory +0708.2573 +0708.2578 +0708.2579 +0708.2587 +0708.2588 Phenomenology +0708.2599 +0708.2603 Phenomenology +0708.2604 Experiment +0708.2613 +0708.2617 Phenomenology +0708.2625 +0708.2630 +0708.2639 +0708.2645 +0708.2646 Phenomenology +0708.2661 +0708.2665 Experiment +0708.2675 Phenomenology +0708.2689 +0708.2690 +0708.2691 Theory +0708.2693 +0708.2696 +0708.2701 Phenomenology +0708.2719 +0708.2720 +0708.2731 Phenomenology +0708.2735 Phenomenology +0708.2738 +0708.2742 +0708.2745 +0708.2747 Theory +0708.2749 +0708.2750 +0708.2755 Phenomenology +0708.2760 +0708.2766 Theory +0708.2767 Phenomenology +0708.2768 Phenomenology +0708.2799 Theory +0708.2807 Lattice +0708.2810 +0708.2812 Phenomenology +0708.2813 +0708.2816 +0708.2818 Theory +0708.2824 +0708.2830 +0708.2833 Phenomenology +0708.2835 Phenomenology +0708.2839 Theory +0708.2846 Phenomenology +0708.2864 Lattice +0708.2867 +0708.2868 Theory +0708.2876 +0708.2901 +0708.2903 Phenomenology +0708.2905 Phenomenology +0708.2906 Physics Education +0708.2907 Phenomenology +0708.2934 +0708.2935 +0708.2939 Phenomenology +0708.2946 Theory +0708.2947 +0708.2950 Theory +0708.2955 +0708.2965 +0708.2968 +0708.2969 Materials Science +0708.2975 Phenomenology +0708.2977 +0708.2980 +0708.2990 Theory +0708.2996 +0708.3001 Phenomenology +0708.3002 Theory +0708.3007 +0708.3010 Phenomenology +0708.3030 Phenomenology +0708.3032 Theory +0708.3033 +0708.3037 +0708.3038 +0708.3046 +0708.3047 +0708.3051 Theory +0708.3052 Phenomenology +0708.3060 Phenomenology +0708.3065 Theory +0708.3066 Theory +0708.3069 Theory +0708.3076 Phenomenology +0708.3080 Phenomenology +0708.3086 +0708.3089 +0708.3094 Theory +0708.3097 Theory +0708.3100 Phenomenology +0708.3115 Theory +0708.3116 +0708.3121 Theory +0708.3131 Theory +0708.3137 Phenomenology +0708.3139 Phenomenology +0708.3150 Instrumentation and Detectors +0708.3156 +0708.3159 +0708.3173 Theory +0708.3176 Theory +0708.3197 +0708.3214 Lattice +0708.3219 +0708.3222 Theory +0708.3240 +0708.3246 Phenomenology +0708.3248 Phenomenology +0708.3252 +0708.3256 Phenomenology +0708.3277 +0708.3280 +0708.3283 +0708.3285 Phenomenology +0708.3290 +0708.3291 Phenomenology +0708.3292 Experiment +0708.3302 Theory +0708.3313 Experiment +0708.3321 Phenomenology +0708.3325 +0708.3332 Phenomenology +0708.3335 Lattice +0708.3337 Phenomenology +0708.3340 Phenomenology +0708.3342 Phenomenology +0708.3348 Theory +0708.3353 +0708.3363 Theory +0708.3364 Phenomenology +0708.3371 Phenomenology +0708.3376 +0708.3380 Phenomenology +0708.3402 Phenomenology +0708.3427 Lattice +0708.3439 Theory +0708.3447 Lattice +0708.3452 Theory +0708.3455 Phenomenology +0708.3459 Theory +0708.3461 Theory +0708.3466 +0708.3478 +0708.3496 Phenomenology +0708.3497 Phenomenology +0708.3516 Phenomenology +0708.3526 Phenomenology +0708.3543 +0708.3558 +0708.3560 Phenomenology +0708.3569 Phenomenology +0708.3586 +0708.3593 Phenomenology +0708.3603 Phenomenology +0708.3610 Lattice +0708.3612 Phenomenology +0708.3614 +0708.3620 Phenomenology +0708.3622 +0708.3626 Phenomenology +0708.3633 Strongly Correlated Electrons +0708.3634 +0708.3635 Data Analysis, Statistics and Probability +0708.3636 Phenomenology +0708.3639 +0708.3659 Phenomenology +0708.3665 Phenomenology +0708.3670 Theory +0708.3706 Theory +0708.3712 Phenomenology +0708.3714 +0708.3717 Experiment +0708.3729 +0708.3731 Phenomenology +0708.3738 Theory +0708.3754 +0708.3765 Phenomenology +0708.3778 Theory +0708.3790 Phenomenology +0708.3802 Phenomenology +0708.3805 Theory +0708.3812 Experiment +0708.3820 +0708.3821 Phenomenology +0708.3823 Theory +0708.3828 Theory +0708.3842 +0708.3844 Theory +0708.3862 Theory +0708.3884 Phenomenology +0708.3892 Experiment +0708.3913 Phenomenology +0708.3940 History and Philosophy of Physics +0708.3941 +0708.3957 Phenomenology +0708.3970 Phenomenology +0708.3983 Phenomenology +0708.3984 Theory +0708.3987 +0708.3989 +0708.4003 Phenomenology +0708.4005 Phenomenology +0708.4008 Phenomenology +0708.4033 Phenomenology +0708.4048 +0708.4054 Phenomenology +0708.4056 Theory +0708.4057 Experiment +0708.4087 Lattice +0708.4089 Experiment +0708.4091 Phenomenology +0708.4098 Phenomenology +0708.4115 +0708.4116 Theory +0708.4121 Phenomenology +0708.4129 Lattice +0708.4135 +0708.4143 +0708.4144 +0708.4159 Theory +0708.4167 Phenomenology +0708.4179 Theory +0708.4196 +0708.4216 +0708.4218 +0708.4225 Experiment +0708.4231 Theory +0708.4232 Phenomenology +0708.4242 +0708.4261 Theory +0708.4265 +0708.4266 +0708.4268 +0708.4296 +0708.4297 Phenomenology +0708.4299 +0708.4302 Phenomenology +0708.4305 Theory +0708.4319 Phenomenology +0708.4320 Phenomenology +0708.4332 Lattice +0708.4339 Phenomenology +0708.4351 Theory +0708.4355 +0708.4363 +0708.4365 Theory +0708.4367 +0708.4384 +0708.4391 +0708.4394 Phenomenology +0708.4398 Phenomenology +0708.4405 Phenomenology +0709.0002 +0709.0007 Phenomenology +0709.0008 Lattice +0709.0009 +0709.0022 +0709.0043 Phenomenology +0709.0045 +0709.0046 +0709.0049 Phenomenology +0709.0060 Phenomenology +0709.0075 Phenomenology +0709.0076 +0709.0077 +0709.0090 +0709.0115 +0709.0126 +0709.0131 +0709.0137 Phenomenology +0709.0140 Theory +0709.0144 +0709.0157 +0709.0161 Phenomenology +0709.0163 Theory +0709.0171 Phenomenology +0709.0173 Experiment +0709.0180 Theory +0709.0183 +0709.0192 General Physics +0709.0202 +0709.0210 +0709.0211 +0709.0228 +0709.0235 Phenomenology +0709.0241 Theory +0709.0253 +0709.0265 Lattice +0709.0277 +0709.0279 +0709.0282 Phenomenology +0709.0285 +0709.0286 +0709.0288 Phenomenology +0709.0294 +0709.0297 Phenomenology +0709.0299 +0709.0307 +0709.0314 Phenomenology +0709.0328 +0709.0330 General Physics +0709.0331 Instrumentation and Detectors +0709.0339 Phenomenology +0709.0365 Phenomenology +0709.0369 Phenomenology +0709.0374 +0709.0383 Phenomenology +0709.0386 +0709.0397 Phenomenology +0709.0398 Theory +0709.0401 +0709.0403 +0709.0413 Phenomenology +0709.0419 Theory +0709.0432 Theory +0709.0439 +0709.0441 +0709.0442 +0709.0450 +0709.0468 +0709.0471 Theory +0709.0476 Phenomenology +0709.0484 Lattice +0709.0499 Other Condensed Matter +0709.0500 Phenomenology +0709.0502 Theory +0709.0507 Phenomenology +0709.0508 +0709.0519 +0709.0532 +0709.0533 Instrumentation and Detectors +0709.0534 +0709.0536 +0709.0539 +0709.0545 +0709.0551 +0709.0559 Theory +0709.0565 +0709.0567 +0709.0578 +0709.0579 Theory +0709.0582 Classical Physics +0709.0586 Phenomenology +0709.0603 +0709.0614 Phenomenology +0709.0616 +0709.0629 Phenomenology +0709.0630 +0709.0634 Instrumentation and Detectors +0709.0635 +0709.0655 Theory +0709.0657 +0709.0660 +0709.0665 +0709.0666 Phenomenology +0709.0669 Lattice +0709.0673 Experiment +0709.0678 Phenomenology +0709.0693 Lattice +0709.0695 +0709.0697 +0709.0706 Phenomenology +0709.0708 +0709.0714 Phenomenology +0709.0731 Theory +0709.0732 +0709.0742 +0709.0744 Instrumentation and Detectors +0709.0763 Phenomenology +0709.0765 Phenomenology +0709.0767 +0709.0770 +0709.0774 +0709.0775 Phenomenology +0709.0781 Lattice +0709.0794 Phenomenology +0709.0822 Lattice +0709.0835 Phenomenology +0709.0856 +0709.0857 Phenomenology +0709.0858 Phenomenology +0709.0869 Theory +0709.0872 +0709.0873 Theory +0709.0875 +0709.0891 +0709.0892 +0709.0898 +0709.0899 Phenomenology +0709.0900 +0709.0901 Phenomenology +0709.0903 Statistical Mechanics +0709.0909 Lattice +0709.0924 Theory +0709.0932 Lattice +0709.0936 General Physics +0709.0939 Phenomenology +0709.0940 +0709.0950 Phenomenology +0709.0973 Theory +0709.0996 +0709.1001 Plasma Physics +0709.1002 Lattice +0709.1005 +0709.1006 +0709.1007 Experiment +0709.1010 Theory +0709.1011 +0709.1019 Phenomenology +0709.1022 Phenomenology +0709.1026 Phenomenology +0709.1027 Phenomenology +0709.1028 Theory +0709.1036 +0709.1050 +0709.1069 Phenomenology +0709.1072 +0709.1075 Phenomenology +0709.1078 +0709.1081 +0709.1087 Phenomenology +0709.1089 Theory +0709.1093 Phenomenology +0709.1094 Instrumentation and Detectors +0709.1107 Phenomenology +0709.1109 Theory +0709.1119 +0709.1128 +0709.1131 +0709.1157 Phenomenology +0709.1168 Theory +0709.1169 Lattice +0709.1170 Theory +0709.1171 Theory +0709.1186 +0709.1199 Theory +0709.1202 Phenomenology +0709.1233 Phenomenology +0709.1239 +0709.1240 +0709.1244 +0709.1245 +0709.1257 Theory +0709.1312 Phenomenology +0709.1317 Phenomenology +0709.1318 Theory +0709.1319 Theory +0709.1325 Statistical Mechanics +0709.1340 Experiment +0709.1348 Phenomenology +0709.1364 Phenomenology +0709.1371 Phenomenology +0709.1384 Phenomenology +0709.1390 Phenomenology +0709.1393 +0709.1400 +0709.1403 +0709.1409 +0709.1426 Theory +0709.1428 +0709.1439 Phenomenology +0709.1447 Theory +0709.1480 Theory +0709.1481 Phenomenology +0709.1483 Theory +0709.1485 +0709.1486 Phenomenology +0709.1488 +0709.1505 Phenomenology +0709.1517 +0709.1520 Theory +0709.1522 Theory +0709.1523 Theory +0709.1524 Phenomenology +0709.1526 Phenomenology +0709.1531 Lattice +0709.1532 Theory +0709.1534 Lattice +0709.1568 Phenomenology +0709.1584 Phenomenology +0709.1603 +0709.1618 +0709.1620 +0709.1624 +0709.1625 +0709.1632 Phenomenology +0709.1633 +0709.1637 Theory +0709.1638 Phenomenology +0709.1646 +0709.1652 Phenomenology +0709.1658 Theory +0709.1661 Theory +0709.1664 Phenomenology +0709.1668 Differential Geometry +0709.1671 Theory +0709.1673 Theory +0709.1684 +0709.1702 +0709.1743 +0709.1745 Phenomenology +0709.1752 Phenomenology +0709.1753 Phenomenology +0709.1786 Phenomenology +0709.1789 Phenomenology +0709.1816 Phenomenology +0709.1827 Phenomenology +0709.1848 Phenomenology +0709.1880 +0709.1888 Theory +0709.1898 Phenomenology +0709.1923 Phenomenology +0709.1931 Phenomenology +0709.1937 Phenomenology +0709.1952 Theory +0709.1955 Lattice +0709.1960 Phenomenology +0709.1965 +0709.1996 Phenomenology +0709.2017 Differential Geometry +0709.2024 Statistical Mechanics +0709.2029 +0709.2044 +0709.2051 +0709.2053 +0709.2075 Phenomenology +0709.2086 Phenomenology +0709.2091 Phenomenology +0709.2111 Phenomenology +0709.2112 Phenomenology +0709.2128 Theory +0709.2129 +0709.2131 +0709.2134 Phenomenology +0709.2136 Theory +0709.2137 +0709.2139 +0709.2140 Theory +0709.2142 +0709.2152 +0709.2160 +0709.2162 Theory +0709.2163 Phenomenology +0709.2165 +0709.2177 +0709.2180 Lattice +0709.2185 +0709.2187 Other Condensed Matter +0709.2190 +0709.2197 +0709.2208 Theory +0709.2211 +0709.2218 Lattice +0709.2220 Phenomenology +0709.2221 Phenomenology +0709.2235 Phenomenology +0709.2262 Phenomenology +0709.2269 Phenomenology +0709.2270 Theory +0709.2275 +0709.2285 +0709.2291 Phenomenology +0709.2297 +0709.2298 +0709.2307 Theory +0709.2312 +0709.2316 Phenomenology +0709.2339 Phenomenology +0709.2347 Theory +0709.2365 +0709.2369 +0709.2377 Phenomenology +0709.2388 Theory +0709.2394 General Physics +0709.2399 Theory +0709.2431 Phenomenology +0709.2433 +0709.2435 +0709.2438 Phenomenology +0709.2439 Phenomenology +0709.2440 Theory +0709.2456 Theory +0709.2478 Phenomenology +0709.2502 Phenomenology +0709.2505 +0709.2535 +0709.2536 +0709.2541 +0709.2544 Phenomenology +0709.2545 +0709.2546 Theory +0709.2549 +0709.2552 +0709.2565 Experiment +0709.2569 Phenomenology +0709.2583 Phenomenology +0709.2589 +0709.2594 Phenomenology +0709.2602 +0709.2611 Phenomenology +0709.2628 +0709.2632 Theory +0709.2634 Phenomenology +0709.2657 +0709.2671 +0709.2691 Theory +0709.2697 Phenomenology +0709.2699 +0709.2709 Phenomenology +0709.2728 +0709.2734 +0709.2740 Phenomenology +0709.2741 +0709.2742 Phenomenology +0709.2743 +0709.2745 +0709.2750 Phenomenology +0709.2751 +0709.2754 Theory +0709.2759 Phenomenology +0709.2770 +0709.2772 +0709.2784 +0709.2795 Theory +0709.2799 Theory +0709.2816 +0709.2817 Phenomenology +0709.2822 Theory +0709.2834 +0709.2840 Phenomenology +0709.2842 +0709.2844 Phenomenology +0709.2854 Phenomenology +0709.2860 Symplectic Geometry +0709.2870 +0709.2871 +0709.2872 +0709.2876 Theory +0709.2877 Phenomenology +0709.2881 Phenomenology +0709.2884 Phenomenology +0709.2889 Lattice +0709.2899 Theory +0709.2903 +0709.2904 Theory +0709.2914 Theory +0709.2917 Experiment +0709.2922 +0709.2925 +0709.2945 Phenomenology +0709.2948 +0709.2957 +0709.2965 Phenomenology +0709.2971 +0709.2985 Phenomenology +0709.2988 +0709.2994 Phenomenology +0709.2996 +0709.3001 +0709.3007 +0709.3008 +0709.3010 Phenomenology +0709.3014 Phenomenology +0709.3020 Phenomenology +0709.3025 +0709.3038 Phenomenology +0709.3043 +0709.3048 Experiment +0709.3057 Phenomenology +0709.3059 Theory +0709.3060 +0709.3066 Experiment +0709.3069 Theory +0709.3072 +0709.3074 +0709.3077 Lattice +0709.3080 Phenomenology +0709.3090 Theory +0709.3096 Theory +0709.3097 +0709.3098 +0709.3101 +0709.3105 +0709.3111 Theory +0709.3113 +0709.3114 +0709.3120 +0709.3139 +0709.3148 Experiment +0709.3152 +0709.3159 Theory +0709.3162 +0709.3166 Theory +0709.3174 Phenomenology +0709.3181 +0709.3189 +0709.3205 Lattice +0709.3214 Phenomenology +0709.3227 Theory +0709.3236 Phenomenology +0709.3239 Lattice +0709.3253 Phenomenology +0709.3272 Phenomenology +0709.3280 Theory +0709.3282 Theory +0709.3284 +0709.3293 +0709.3294 Phenomenology +0709.3295 +0709.3296 Theory +0709.3299 Theory +0709.3300 +0709.3308 +0709.3309 Phenomenology +0709.3314 +0709.3337 Theory +0709.3341 Phenomenology +0709.3357 Theory +0709.3362 Phenomenology +0709.3363 Phenomenology +0709.3364 Phenomenology +0709.3371 Experiment +0709.3379 Lattice +0709.3386 Lattice +0709.3393 +0709.3421 Theory +0709.3422 +0709.3428 Theory +0709.3442 Phenomenology +0709.3450 Phenomenology +0709.3459 Phenomenology +0709.3471 Phenomenology +0709.3472 +0709.3481 Instrumentation and Detectors +0709.3482 Phenomenology +0709.3486 Lattice +0709.3488 Theory +0709.3491 Phenomenology +0709.3497 Lattice +0709.3499 Theory +0709.3500 +0709.3501 Theory +0709.3505 +0709.3510 +0709.3513 Phenomenology +0709.3519 Phenomenology +0709.3520 Theory +0709.3527 +0709.3538 Experiment +0709.3543 +0709.3552 Theory +0709.3559 +0709.3568 Theory +0709.3575 Plasma Physics +0709.3576 Phenomenology +0709.3605 Theory +0709.3612 Instrumentation and Detectors +0709.3616 Experiment +0709.3619 Theory +0709.3623 +0709.3636 Experiment +0709.3637 +0709.3638 +0709.3645 +0709.3656 Lattice +0709.3658 Lattice +0709.3668 Theory +0709.3669 +0709.3670 +0709.3672 +0709.3677 +0709.3679 +0709.3684 Theory +0709.3708 Lattice +0709.3714 +0709.3719 +0709.3722 +0709.3726 Phenomenology +0709.3727 +0709.3729 +0709.3739 +0709.3742 Experiment +0709.3744 Phenomenology +0709.3746 +0709.3749 Phenomenology +0709.3750 Instrumentation and Detectors +0709.3756 Instrumentation and Detectors +0709.3757 Theory +0709.3758 Theory +0709.3761 +0709.3767 Phenomenology +0709.3770 Theory +0709.3782 Phenomenology +0709.3791 Theory +0709.3797 +0709.3825 Phenomenology +0709.3831 Theory +0709.3845 +0709.3866 +0709.3885 Phenomenology +0709.3889 Phenomenology +0709.3899 Phenomenology +0709.3908 Mesoscale and Nanoscale Physics +0709.3910 Theory +0709.3912 Theory +0709.3913 Phenomenology +0709.3916 Theory +0709.3918 Phenomenology +0709.3919 Theory +0709.3926 Accelerator Physics +0709.3930 Theory +0709.3935 Phenomenology +0709.3944 Phenomenology +0709.3946 Phenomenology +0709.3963 Theory +0709.3972 +0709.3981 +0709.3985 Phenomenology +0709.4000 +0709.4009 +0709.4013 Phenomenology +0709.4021 +0709.4029 +0709.4039 Phenomenology +0709.4044 Phenomenology +0709.4053 Phenomenology +0709.4060 Phenomenology +0709.4066 Phenomenology +0709.4067 Phenomenology +0709.4081 +0709.4090 Phenomenology +0709.4092 Phenomenology +0709.4101 Phenomenology +0709.4126 Theory +0709.4129 +0709.4155 +0709.4161 +0709.4169 Theory +0709.4170 Lattice +0709.4174 Phenomenology +0709.4187 Theory +0709.4193 Lattice +0709.4196 Phenomenology +0709.4197 +0709.4218 Instrumentation and Detectors +0709.4220 +0709.4221 Phenomenology +0709.4224 Lattice +0709.4231 Theory +0709.4235 +0709.4249 +0709.4251 +0709.4262 Theory +0709.4277 Theory +0709.4336 Lattice +0709.4338 Phenomenology +0709.4342 +0709.4343 Phenomenology +0709.4354 Phenomenology +0709.4368 Lattice +0709.4369 Theory +0709.4378 Phenomenology +0709.4385 Theory +0709.4388 Phenomenology +0709.4391 +0709.4395 Phenomenology +0709.4405 Phenomenology +0709.4406 Phenomenology +0709.4414 +0709.4422 Phenomenology +0709.4426 Experiment +0709.4427 Phenomenology +0709.4433 Experiment +0709.4443 Theory +0709.4448 +0709.4450 Phenomenology +0709.4454 +0709.4456 Lattice +0709.4461 Phenomenology +0709.4474 Phenomenology +0709.4478 Theory +0709.4482 Theory +0709.4491 Phenomenology +0709.4494 Lattice +0709.4498 Experiment +0709.4514 Instrumentation and Detectors +0709.4519 Phenomenology +0709.4524 Instrumentation and Detectors +0709.4525 Phenomenology +0709.4535 Phenomenology +0709.4538 +0709.4541 +0709.4552 +0709.4564 Lattice +0709.4567 +0709.4581 +0709.4583 Phenomenology +0709.4585 Lattice +0709.4588 +0709.4593 +0709.4595 Lattice +0709.4600 Theory +0709.4603 Theory +0709.4605 Theory +0709.4610 +0709.4611 Theory +0709.4622 Phenomenology +0709.4623 +0709.4624 Phenomenology +0709.4630 Lattice +0709.4632 Theory +0709.4634 Phenomenology +0709.4637 Phenomenology +0709.4640 +0709.4641 Phenomenology +0709.4648 Lattice +0709.4651 Theory +0709.4657 Theory +0709.4659 +0709.4665 Theory +0710.0001 Theory +0710.0014 Lattice +0710.0017 Lattice +0710.0028 Phenomenology +0710.0031 Phenomenology +0710.0039 Experiment +0710.0040 +0710.0047 +0710.0051 Phenomenology +0710.0066 Lattice +0710.0077 +0710.0079 Theory +0710.0097 Lattice +0710.0120 Theory +0710.0123 Phenomenology +0710.0140 Lattice +0710.0148 Theory +0710.0170 Theory +0710.0172 Instrumentation and Detectors +0710.0174 Lattice +0710.0196 Phenomenology +0710.0214 +0710.0221 Theory +0710.0239 +0710.0258 +0710.0264 Lattice +0710.0277 +0710.0294 Lattice +0710.0299 Theory +0710.0306 +0710.0308 Accelerator Physics +0710.0310 +0710.0312 +0710.0315 Theory +0710.0323 Lattice +0710.0325 Phenomenology +0710.0327 +0710.0331 Phenomenology +0710.0332 +0710.0333 Phenomenology +0710.0338 Lattice +0710.0340 Phenomenology +0710.0343 Phenomenology +0710.0344 Lattice +0710.0347 Lattice +0710.0354 Lattice +0710.0356 +0710.0362 Phenomenology +0710.0376 Theory +0710.0380 +0710.0388 Theory +0710.0393 Theory +0710.0404 Theory +0710.0415 Experiment +0710.0416 +0710.0421 Theory +0710.0425 Lattice +0710.0434 Lattice +0710.0435 +0710.0438 Lattice +0710.0449 Phenomenology +0710.0452 Theory +0710.0453 Theory +0710.0454 Phenomenology +0710.0458 Phenomenology +0710.0462 Lattice +0710.0466 Experiment +0710.0471 Lattice +0710.0472 +0710.0476 Lattice +0710.0477 +0710.0480 Lattice +0710.0481 Lattice +0710.0486 +0710.0489 Lattice +0710.0500 Theory +0710.0501 Theory +0710.0505 Theory +0710.0525 Phenomenology +0710.0530 Phenomenology +0710.0542 +0710.0543 Phenomenology +0710.0544 +0710.0548 Phenomenology +0710.0549 Lattice +0710.0551 Lattice +0710.0553 Phenomenology +0710.0560 Lattice +0710.0568 Phenomenology +0710.0570 Phenomenology +0710.0573 Theory +0710.0575 Experiment +0710.0584 Phenomenology +0710.0605 Phenomenology +0710.0606 +0710.0612 Theory +0710.0613 Theory +0710.0614 +0710.0615 +0710.0620 Theory +0710.0628 +0710.0649 Lattice +0710.0653 Lattice +0710.0674 Lattice +0710.0688 +0710.0691 Lattice +0710.0702 +0710.0703 +0710.0707 Theory +0710.0722 +0710.0725 +0710.0737 Lattice +0710.0739 Lattice +0710.0741 Lattice +0710.0743 Phenomenology +0710.0747 Instrumentation and Detectors +0710.0752 +0710.0754 Materials Science +0710.0756 Phenomenology +0710.0762 +0710.0769 +0710.0775 +0710.0781 Lattice +0710.0785 +0710.0788 +0710.0791 +0710.0806 Theory +0710.0814 +0710.0818 Theory +0710.0819 +0710.0820 +0710.0826 Phenomenology +0710.0827 +0710.0832 +0710.0835 Phenomenology +0710.0844 +0710.0855 +0710.0863 Phenomenology +0710.0879 +0710.0880 +0710.0894 Theory +0710.0940 Phenomenology +0710.0945 Lattice +0710.0948 Phenomenology +0710.0952 Theory +0710.0953 +0710.0965 Theory +0710.0966 +0710.0968 +0710.0970 +0710.0974 Theory +0710.0978 Phenomenology +0710.0990 Lattice +0710.0994 Phenomenology +0710.0995 Phenomenology +0710.0997 Lattice +0710.0998 Lattice +0710.1002 Theory +0710.1010 +0710.1029 Phenomenology +0710.1032 +0710.1038 Phenomenology +0710.1044 Phenomenology +0710.1049 Experiment +0710.1050 Theory +0710.1054 Phenomenology +0710.1061 Theory +0710.1063 Theory +0710.1070 Lattice +0710.1077 +0710.1083 Theory +0710.1084 Phenomenology +0710.1092 +0710.1101 +0710.1102 Phenomenology +0710.1106 Lattice +0710.1111 Lattice +0710.1130 Lattice +0710.1138 Lattice +0710.1150 Phenomenology +0710.1154 Phenomenology +0710.1161 Lattice +0710.1164 Lattice +0710.1175 +0710.1186 Phenomenology +0710.1188 Lattice +0710.1192 +0710.1196 +0710.1212 Phenomenology +0710.1219 +0710.1223 Phenomenology +0710.1229 +0710.1233 Phenomenology +0710.1257 Theory +0710.1260 Theory +0710.1261 +0710.1265 +0710.1266 Phenomenology +0710.1267 Phenomenology +0710.1271 +0710.1279 +0710.1291 +0710.1299 Theory +0710.1300 Phenomenology +0710.1311 +0710.1326 +0710.1330 Lattice +0710.1337 Experiment +0710.1340 +0710.1363 Accelerator Physics +0710.1368 Experiment +0710.1374 Optics +0710.1394 Theory +0710.1397 +0710.1406 +0710.1414 Lattice +0710.1422 Lattice +0710.1424 Lattice +0710.1429 +0710.1434 +0710.1449 Lattice +0710.1450 +0710.1453 Phenomenology +0710.1454 Phenomenology +0710.1464 Lattice +0710.1472 +0710.1474 Phenomenology +0710.1486 +0710.1492 Phenomenology +0710.1498 Experiment +0710.1505 Phenomenology +0710.1507 Lattice +0710.1508 Phenomenology +0710.1510 +0710.1512 +0710.1517 Lattice +0710.1524 Theory +0710.1527 Quantum Algebra +0710.1533 Lattice +0710.1535 +0710.1536 Experiment +0710.1539 +0710.1540 Phenomenology +0710.1541 +0710.1545 Phenomenology +0710.1547 +0710.1552 +0710.1555 Phenomenology +0710.1556 Phenomenology +0710.1557 +0710.1562 +0710.1563 Phenomenology +0710.1567 Phenomenology +0710.1572 Phenomenology +0710.1573 Phenomenology +0710.1577 Phenomenology +0710.1580 Lattice +0710.1584 +0710.1585 Phenomenology +0710.1598 +0710.1619 Phenomenology +0710.1632 Phenomenology +0710.1636 Theory +0710.1640 +0710.1647 Experiment +0710.1649 Lattice +0710.1655 Lattice +0710.1656 +0710.1660 Lattice +0710.1672 Theory +0710.1673 Theory +0710.1675 +0710.1682 +0710.1696 Phenomenology +0710.1707 Theory +0710.1708 +0710.1711 Lattice +0710.1725 Lattice +0710.1726 Theory +0710.1735 Theory +0710.1738 Theory +0710.1741 Lattice +0710.1751 Lattice +0710.1755 +0710.1783 Theory +0710.1791 Phenomenology +0710.1792 Phenomenology +0710.1793 Phenomenology +0710.1796 +0710.1798 +0710.1802 +0710.1813 Lattice +0710.1821 Phenomenology +0710.1823 +0710.1829 Theory +0710.1838 Phenomenology +0710.1851 +0710.1859 +0710.1874 +0710.1878 Phenomenology +0710.1883 Phenomenology +0710.1887 +0710.1890 +0710.1907 +0710.1914 Theory +0710.1915 Phenomenology +0710.1927 Phenomenology +0710.1944 +0710.1955 Phenomenology +0710.1956 Theory +0710.1958 +0710.1966 Lattice +0710.1988 Lattice +0710.1998 Theory +0710.2000 +0710.2013 +0710.2014 +0710.2022 Phenomenology +0710.2032 +0710.2042 +0710.2046 Phenomenology +0710.2047 +0710.2055 +0710.2067 Phenomenology +0710.2068 Lattice +0710.2074 Theory +0710.2075 Theory +0710.2078 Phenomenology +0710.2100 Lattice +0710.2122 +0710.2142 +0710.2158 +0710.2159 Lattice +0710.2163 Phenomenology +0710.2164 +0710.2171 +0710.2173 Lattice +0710.2177 Phenomenology +0710.2179 Lattice +0710.2180 Phenomenology +0710.2182 Theory +0710.2187 +0710.2189 +0710.2193 +0710.2194 +0710.2201 Lattice +0710.2209 Theory +0710.2210 Phenomenology +0710.2212 Phenomenology +0710.2221 +0710.2226 +0710.2234 Phenomenology +0710.2239 +0710.2244 Theory +0710.2251 Lattice +0710.2273 Phenomenology +0710.2277 Lattice +0710.2280 Phenomenology +0710.2285 +0710.2290 +0710.2291 Theory +0710.2292 Phenomenology +0710.2293 +0710.2294 Theory +0710.2306 Theory +0710.2312 Theory +0710.2315 Chaotic Dynamics +0710.2325 Phenomenology +0710.2329 Lattice +0710.2333 +0710.2345 +0710.2349 Strongly Correlated Electrons +0710.2368 +0710.2380 Lattice +0710.2406 Theory +0710.2408 Phenomenology +0710.2413 Phenomenology +0710.2414 History and Philosophy of Physics +0710.2415 Phenomenology +0710.2416 Phenomenology +0710.2417 Theory +0710.2433 +0710.2435 +0710.2441 Lattice +0710.2442 Lattice +0710.2443 +0710.2444 Lattice +0710.2453 +0710.2458 +0710.2468 Theory +0710.2469 Phenomenology +0710.2474 Theory +0710.2475 +0710.2492 Lattice +0710.2494 Phenomenology +0710.2498 Lattice +0710.2501 Phenomenology +0710.2503 +0710.2516 Phenomenology +0710.2528 +0710.2535 Theory +0710.2538 +0710.2540 Theory +0710.2543 +0710.2554 +0710.2565 Lattice +0710.2568 +0710.2579 Theory +0710.2584 +0710.2588 +0710.2590 Theory +0710.2593 Theory +0710.2599 +0710.2600 Phenomenology +0710.2601 Phenomenology +0710.2607 Lattice +0710.2619 Phenomenology +0710.2628 +0710.2639 Phenomenology +0710.2653 Phenomenology +0710.2655 +0710.2664 +0710.2666 +0710.2667 +0710.2672 Phenomenology +0710.2679 +0710.2684 +0710.2691 +0710.2696 Phenomenology +0710.2709 +0710.2713 Phenomenology +0710.2714 Phenomenology +0710.2730 Lattice +0710.2734 Phenomenology +0710.2738 +0710.2741 +0710.2744 Lattice +0710.2749 Atomic and Molecular Clusters +0710.2769 Theory +0710.2770 +0710.2780 +0710.2785 Phenomenology +0710.2786 Experiment +0710.2788 Lattice +0710.2790 Phenomenology +0710.2793 +0710.2795 Lattice +0710.2799 Lattice +0710.2834 Phenomenology +0710.2840 Theory +0710.2846 Phenomenology +0710.2849 +0710.2851 Experiment +0710.2853 Phenomenology +0710.2857 Phenomenology +0710.2862 Lattice +0710.2863 Lattice +0710.2865 Lattice +0710.2872 +0710.2877 +0710.2881 Theory +0710.2894 +0710.2905 Theory +0710.2917 Phenomenology +0710.2919 Lattice +0710.2923 Phenomenology +0710.2924 +0710.2925 +0710.2926 Phenomenology +0710.2927 +0710.2928 Phenomenology +0710.2943 +0710.2944 +0710.2945 +0710.2948 Lattice +0710.2951 Theory +0710.2955 +0710.2956 Theory +0710.2958 Lattice +0710.2966 Experiment +0710.2968 Phenomenology +0710.2969 Phenomenology +0710.2971 Phenomenology +0710.2978 Theory +0710.2983 +0710.2993 +0710.3000 +0710.3009 Theory +0710.3016 Phenomenology +0710.3017 Theory +0710.3020 Phenomenology +0710.3026 +0710.3037 +0710.3040 Theory +0710.3048 Phenomenology +0710.3050 Phenomenology +0710.3051 Statistical Mechanics +0710.3052 +0710.3055 Theory +0710.3056 Phenomenology +0710.3057 Phenomenology +0710.3060 Phenomenology +0710.3068 Phenomenology +0710.3075 Phenomenology +0710.3080 Theory +0710.3083 Phenomenology +0710.3084 Statistical Mechanics +0710.3090 Phenomenology +0710.3103 Phenomenology +0710.3106 +0710.3108 +0710.3109 Phenomenology +0710.3112 +0710.3114 +0710.3125 Phenomenology +0710.3128 History and Philosophy of Physics +0710.3129 Phenomenology +0710.3133 Phenomenology +0710.3135 Theory +0710.3148 +0710.3162 Theory +0710.3163 +0710.3169 Phenomenology +0710.3172 Lattice +0710.3181 +0710.3186 Theory +0710.3198 +0710.3199 Phenomenology +0710.3201 +0710.3233 +0710.3234 Lattice +0710.3240 Theory +0710.3248 +0710.3251 Lattice +0710.3265 Phenomenology +0710.3272 Theory +0710.3274 +0710.3277 +0710.3280 +0710.3281 Phenomenology +0710.3288 Experiment +0710.3294 Phenomenology +0710.3308 +0710.3309 Phenomenology +0710.3318 Phenomenology +0710.3323 +0710.3330 +0710.3331 Phenomenology +0710.3334 Phenomenology +0710.3337 Lattice +0710.3338 Experiment +0710.3339 Phenomenology +0710.3349 Phenomenology +0710.3350 Atomic Physics +0710.3359 +0710.3365 +0710.3369 +0710.3393 Experiment +0710.3396 +0710.3403 Phenomenology +0710.3410 +0710.3412 Experiment +0710.3416 +0710.3429 Theory +0710.3431 +0710.3432 Phenomenology +0710.3438 +0710.3440 Theory +0710.3445 Theory +0710.3449 Theory +0710.3469 Experiment +0710.3479 Theory +0710.3480 Theory +0710.3482 Superconductivity +0710.3490 Phenomenology +0710.3495 Theory +0710.3496 Lattice +0710.3498 Experiment +0710.3501 +0710.3513 Theory +0710.3522 Lattice +0710.3524 +0710.3525 Phenomenology +0710.3527 Mesoscale and Nanoscale Physics +0710.3537 +0710.3540 +0710.3544 +0710.3552 Theory +0710.3554 Phenomenology +0710.3559 Theory +0710.3562 Phenomenology +0710.3564 Theory +0710.3577 Lattice +0710.3593 +0710.3594 +0710.3597 +0710.3611 Lattice +0710.3612 Lattice +0710.3614 +0710.3620 Theory +0710.3622 Lattice +0710.3626 +0710.3629 Phenomenology +0710.3658 Theory +0710.3670 Theory +0710.3672 Phenomenology +0710.3677 +0710.3680 +0710.3691 +0710.3694 +0710.3699 Phenomenology +0710.3700 +0710.3708 +0710.3710 Phenomenology +0710.3717 Lattice +0710.3733 Theory +0710.3748 +0710.3752 +0710.3755 Theory +0710.3768 +0710.3771 Theory +0710.3772 +0710.3787 +0710.3790 Theory +0710.3796 Phenomenology +0710.3805 +0710.3808 +0710.3823 +0710.3827 Theory +0710.3828 Phenomenology +0710.3832 Theory +0710.3833 Theory +0710.3836 Theory +0710.3841 Theory +0710.3851 Phenomenology +0710.3856 Lattice +0710.3874 +0710.3876 +0710.3885 +0710.3902 +0710.3903 +0710.3929 +0710.3930 Phenomenology +0710.3933 Theory +0710.3938 +0710.3941 +0710.3945 Phenomenology +0710.3954 Theory +0710.3966 Experiment +0710.3971 Theory +0710.3995 +0710.4003 +0710.4017 +0710.4020 +0710.4021 Theory +0710.4026 Theory +0710.4034 Theory +0710.4056 +0710.4058 +0710.4060 +0710.4067 Phenomenology +0710.4068 +0710.4073 +0710.4088 Theory +0710.4094 +0710.4101 +0710.4121 Phenomenology +0710.4130 Theory +0710.4131 +0710.4133 +0710.4134 +0710.4135 +0710.4136 +0710.4139 Theory +0710.4140 Theory +0710.4151 Theory +0710.4156 Experiment +0710.4158 +0710.4162 +0710.4169 Phenomenology +0710.4185 Phenomenology +0710.4191 +0710.4192 +0710.4197 Lattice +0710.4201 Phenomenology +0710.4206 +0710.4212 +0710.4215 Lattice +0710.4225 Lattice +0710.4227 Phenomenology +0710.4239 Phenomenology +0710.4241 +0710.4247 +0710.4249 Theory +0710.4250 +0710.4252 +0710.4258 Experiment +0710.4273 Phenomenology +0710.4275 Theory +0710.4283 Theory +0710.4299 +0710.4305 +0710.4312 Lattice +0710.4315 +0710.4330 Phenomenology +0710.4331 Phenomenology +0710.4342 Theory +0710.4343 Theory +0710.4344 Theory +0710.4345 +0710.4348 Theory +0710.4350 +0710.4362 +0710.4369 +0710.4373 Phenomenology +0710.4374 +0710.4377 Theory +0710.4379 +0710.4386 Theory +0710.4393 +0710.4405 Phenomenology +0710.4411 +0710.4416 Phenomenology +0710.4418 +0710.4430 Phenomenology +0710.4456 Phenomenology +0710.4458 Theory +0710.4463 Phenomenology +0710.4467 +0710.4471 Theory +0710.4476 Phenomenology +0710.4504 Phenomenology +0710.4509 +0710.4512 +0710.4513 +0710.4530 Phenomenology +0710.4537 +0710.4543 +0710.4548 Phenomenology +0710.4560 +0710.4564 +0710.4576 +0710.4577 Theory +0710.4598 Theory +0710.4599 Theory +0710.4600 Theory +0710.4608 Phenomenology +0710.4609 Theory +0710.4615 Phenomenology +0710.4620 +0710.4621 Lattice +0710.4664 Theory +0710.4696 +0710.4730 +0710.4749 Phenomenology +0710.4767 Phenomenology +0710.4775 Phenomenology +0710.4789 Theory +0710.4837 +0710.4854 +0710.4857 Atomic Physics +0710.4866 Lattice +0710.4874 Phenomenology +0710.4876 Theory +0710.4888 +0710.4897 Phenomenology +0710.4900 Theory +0710.4908 Experiment +0710.4909 +0710.4912 Theory +0710.4919 +0710.4928 Theory +0710.4931 Theory +0710.4939 Phenomenology +0710.4944 +0710.4953 +0710.4954 Phenomenology +0710.4961 Theory +0710.4964 +0710.4967 Theory +0710.4974 Experiment +0710.5001 +0710.5017 +0710.5026 +0710.5027 Phenomenology +0710.5032 Phenomenology +0710.5034 +0710.5038 Phenomenology +0710.5040 Theory +0710.5051 Theory +0710.5052 +0710.5058 Lattice +0710.5070 +0710.5073 +0710.5075 Phenomenology +0710.5086 +0710.5100 Phenomenology +0710.5104 +0710.5105 Theory +0710.5107 Phenomenology +0710.5118 +0710.5121 Phenomenology +0710.5125 Phenomenology +0710.5135 +0710.5139 Phenomenology +0710.5147 Lattice +0710.5155 +0710.5165 +0710.5167 +0710.5169 +0710.5170 Theory +0710.5172 Theory +0710.5178 Theory +0710.5180 +0710.5186 Phenomenology +0710.5189 Experiment +0710.5191 Experiment +0710.5192 +0710.5197 +0710.5200 +0710.5203 Theory +0710.5205 Lattice +0710.5231 Chaotic Dynamics +0710.5232 Theory +0710.5243 Phenomenology +0710.5250 +0710.5261 +0710.5262 +0710.5267 Theory +0710.5269 Theory +0710.5273 +0710.5274 Phenomenology +0710.5282 +0710.5283 Lattice +0710.5297 Theory +0710.5300 +0710.5310 +0710.5312 +0710.5320 Phenomenology +0710.5337 Lattice +0710.5341 +0710.5342 Theory +0710.5346 Lattice +0710.5365 Phenomenology +0710.5366 +0710.5368 +0710.5378 Theory +0710.5384 +0710.5392 +0710.5402 Theory +0710.5407 +0710.5409 +0710.5410 Phenomenology +0710.5417 Lattice +0710.5420 +0710.5431 +0710.5432 Phenomenology +0710.5433 +0710.5445 Lattice +0710.5461 Phenomenology +0710.5469 Theory +0710.5482 Phenomenology +0710.5491 Phenomenology +0710.5498 +0710.5505 +0710.5508 +0710.5517 +0710.5519 Theory +0710.5524 +0710.5525 +0710.5528 Phenomenology +0710.5534 Phenomenology +0710.5536 Lattice +0710.5542 +0710.5556 Theory +0710.5557 Theory +0710.5561 +0710.5563 Phenomenology +0710.5572 +0710.5574 +0710.5581 Phenomenology +0710.5587 Experiment +0710.5590 Phenomenology +0710.5596 +0710.5597 +0710.5600 +0710.5615 Phenomenology +0710.5618 +0710.5620 Phenomenology +0710.5647 Lattice +0710.5660 Phenomenology +0710.5662 Theory +0710.5663 Theory +0710.5677 +0710.5688 Theory +0710.5689 Theory +0710.5690 +0710.5691 Chaotic Dynamics +0710.5692 +0710.5694 +0710.5698 Theory +0710.5699 Phenomenology +0710.5700 Phenomenology +0710.5702 +0710.5709 Theory +0710.5712 +0710.5714 +0710.5717 +0710.5719 +0710.5721 +0710.5734 +0710.5736 +0710.5739 +0710.5741 Theory +0710.5762 Theory +0710.5771 Lattice +0710.5773 Phenomenology +0710.5778 +0710.5780 +0710.5795 +0710.5809 Phenomenology +0710.5823 Phenomenology +0710.5828 Mesoscale and Nanoscale Physics +0710.5829 +0710.5832 +0710.5841 Phenomenology +0710.5844 +0710.5847 Theory +0710.5859 +0710.5865 Physics and Society +0710.5866 Theory +0710.5873 Theory +0710.5875 Theory +0710.5878 Phenomenology +0710.5906 Phenomenology +0710.5913 +0710.5914 History and Philosophy of Physics +0710.5933 +0711.0008 Phenomenology +0711.0015 +0711.0022 Phenomenology +0711.0023 Lattice +0711.0024 Lattice +0711.0028 Phenomenology +0711.0031 Theory +0711.0032 Experiment +0711.0036 Theory +0711.0045 Phenomenology +0711.0052 Phenomenology +0711.0060 Optics +0711.0077 +0711.0078 Theory +0711.0079 +0711.0090 +0711.0095 +0711.0102 Theory +0711.0116 Theory +0711.0127 +0711.0129 Theory +0711.0133 Theory +0711.0139 Phenomenology +0711.0142 Phenomenology +0711.0146 +0711.0147 Phenomenology +0711.0152 +0711.0154 Phenomenology +0711.0155 Theory +0711.0159 Phenomenology +0711.0167 Lattice +0711.0181 +0711.0187 Phenomenology +0711.0192 Theory +0711.0193 +0711.0195 Theory +0711.0203 Phenomenology +0711.0209 Theory +0711.0221 Theory +0711.0226 +0711.0232 Phenomenology +0711.0236 Phenomenology +0711.0243 +0711.0260 +0711.0262 Lattice +0711.0271 Experiment +0711.0273 +0711.0276 +0711.0288 +0711.0300 Phenomenology +0711.0306 +0711.0309 +0711.0321 Phenomenology +0711.0332 +0711.0338 Theory +0711.0349 +0711.0363 Phenomenology +0711.0364 Phenomenology +0711.0371 Theory +0711.0376 Theory +0711.0382 Theory +0711.0385 Theory +0711.0386 Theory +0711.0387 Phenomenology +0711.0392 +0711.0396 Phenomenology +0711.0404 Theory +0711.0416 Phenomenology +0711.0421 Theory +0711.0428 +0711.0430 +0711.0443 +0711.0444 Theory +0711.0483 Phenomenology +0711.0488 Phenomenology +0711.0494 Phenomenology +0711.0496 Phenomenology +0711.0497 Phenomenology +0711.0508 Lattice +0711.0509 Lattice +0711.0512 Theory +0711.0529 Experiment +0711.0548 Experiment +0711.0553 +0711.0556 Theory +0711.0564 +0711.0566 Lattice +0711.0578 Phenomenology +0711.0590 Phenomenology +0711.0608 +0711.0610 Phenomenology +0711.0612 +0711.0613 +0711.0625 Phenomenology +0711.0627 Theory +0711.0636 Phenomenology +0711.0637 Mesoscale and Nanoscale Physics +0711.0656 Lattice +0711.0658 Theory +0711.0659 Theory +0711.0661 Lattice +0711.0669 +0711.0670 Phenomenology +0711.0675 Phenomenology +0711.0678 Theory +0711.0691 Phenomenology +0711.0696 Lattice +0711.0697 +0711.0698 Phenomenology +0711.0733 Phenomenology +0711.0736 Theory +0711.0738 Lattice +0711.0745 Phenomenology +0711.0748 Lattice +0711.0749 Phenomenology +0711.0757 +0711.0769 Experiment +0711.0774 Theory +0711.0777 +0711.0779 +0711.0786 +0711.0792 Phenomenology +0711.0809 +0711.0812 +0711.0817 Phenomenology +0711.0819 Lattice +0711.0828 Phenomenology +0711.0835 Phenomenology +0711.0843 +0711.0866 Theory +0711.0867 +0711.0869 Theory +0711.0881 +0711.0885 Theory +0711.0887 Theory +0711.0907 +0711.0930 +0711.0931 Theory +0711.0935 Phenomenology +0711.0936 Phenomenology +0711.0938 Instrumentation and Detectors +0711.0939 Theory +0711.0941 +0711.0955 Theory +0711.0956 Phenomenology +0711.0961 +0711.0963 +0711.0972 +0711.0981 Experiment +0711.0985 Phenomenology +0711.0989 +0711.0992 Theory +0711.0994 +0711.1001 Phenomenology +0711.1002 +0711.1003 +0711.1004 +0711.1007 Phenomenology +0711.1029 +0711.1030 Phenomenology +0711.1034 Phenomenology +0711.1045 Theory +0711.1048 +0711.1049 Phenomenology +0711.1057 +0711.1058 +0711.1063 +0711.1067 Phenomenology +0711.1079 +0711.1090 +0711.1097 +0711.1103 +0711.1111 Theory +0711.1112 Theory +0711.1115 +0711.1116 Phenomenology +0711.1119 +0711.1127 Phenomenology +0711.1150 +0711.1154 Phenomenology +0711.1165 +0711.1176 Lattice +0711.1178 Theory +0711.1179 Phenomenology +0711.1183 Experiment +0711.1198 Experiment +0711.1206 Theory +0711.1209 Theory +0711.1221 Theory +0711.1238 Phenomenology +0711.1253 +0711.1254 Theory +0711.1266 Lattice +0711.1270 Phenomenology +0711.1278 Phenomenology +0711.1279 +0711.1284 +0711.1292 +0711.1308 +0711.1323 Phenomenology +0711.1328 Phenomenology +0711.1337 Phenomenology +0711.1345 Phenomenology +0711.1347 Theory +0711.1352 +0711.1363 Phenomenology +0711.1364 Theory +0711.1395 Theory +0711.1408 +0711.1410 +0711.1414 Theory +0711.1415 Theory +0711.1416 Phenomenology +0711.1427 Lattice +0711.1435 Phenomenology +0711.1445 +0711.1446 Theory +0711.1450 +0711.1459 Phenomenology +0711.1470 +0711.1496 Statistical Mechanics +0711.1506 Phenomenology +0711.1511 Experiment +0711.1523 Accelerator Physics +0711.1524 Theory +0711.1525 Theory +0711.1541 +0711.1544 Experiment +0711.1559 +0711.1562 Other Condensed Matter +0711.1566 Phenomenology +0711.1570 Phenomenology +0711.1593 Instrumentation and Detectors +0711.1618 Theory +0711.1619 Theory +0711.1627 +0711.1631 Theory +0711.1634 Phenomenology +0711.1665 Phenomenology +0711.1678 +0711.1687 Phenomenology +0711.1710 Probability +0711.1722 +0711.1743 Phenomenology +0711.1744 Theory +0711.1757 Phenomenology +0711.1762 +0711.1773 Theory +0711.1776 +0711.1790 +0711.1802 +0711.1803 Lattice +0711.1804 Phenomenology +0711.1812 +0711.1816 +0711.1821 Phenomenology +0711.1839 +0711.1854 Phenomenology +0711.1868 +0711.1870 Theory +0711.1871 Lattice +0711.1872 +0711.1880 +0711.1883 +0711.1898 Phenomenology +0711.1916 Phenomenology +0711.1925 Lattice +0711.1955 Theory +0711.1961 Lattice +0711.1963 Lattice +0711.1966 +0711.1967 +0711.1971 Theory +0711.1974 Theory +0711.1975 Theory +0711.1982 Phenomenology +0711.1984 +0711.1988 +0711.1991 +0711.1996 +0711.1997 +0711.2005 Phenomenology +0711.2018 Phenomenology +0711.2028 +0711.2031 +0711.2035 Theory +0711.2038 Theory +0711.2046 Phenomenology +0711.2072 Theory +0711.2079 Phenomenology +0711.2084 +0711.2086 +0711.2090 +0711.2099 Lattice +0711.2107 Phenomenology +0711.2121 Phenomenology +0711.2122 Theory +0711.2125 Phenomenology +0711.2129 Strongly Correlated Electrons +0711.2132 Lattice +0711.2133 +0711.2159 Theory +0711.2170 +0711.2174 Lattice +0711.2184 Phenomenology +0711.2187 Theory +0711.2189 Experiment +0711.2194 Theory +0711.2200 +0711.2206 Theory +0711.2214 Theory +0711.2216 Experiment +0711.2222 +0711.2226 +0711.2233 +0711.2234 +0711.2236 Quantum Algebra +0711.2237 +0711.2251 Lattice +0711.2255 +0711.2271 +0711.2272 Theory +0711.2273 +0711.2275 Phenomenology +0711.2280 Lattice +0711.2292 Theory +0711.2293 +0711.2297 +0711.2298 Phenomenology +0711.2299 Phenomenology +0711.2300 Theory +0711.2306 Phenomenology +0711.2313 +0711.2322 Lattice +0711.2326 +0711.2359 Phenomenology +0711.2364 Phenomenology +0711.2367 +0711.2370 Phenomenology +0711.2378 Popular Physics +0711.2387 Theory +0711.2390 +0711.2395 +0711.2415 Theory +0711.2423 +0711.2424 +0711.2428 Phenomenology +0711.2431 Data Analysis, Statistics and Probability +0711.2441 +0711.2445 Theory +0711.2447 +0711.2450 +0711.2451 Theory +0711.2452 Theory +0711.2455 +0711.2467 Phenomenology +0711.2469 +0711.2472 +0711.2473 Phenomenology +0711.2474 +0711.2475 +0711.2492 +0711.2500 Phenomenology +0711.2511 Phenomenology +0711.2513 +0711.2514 Theory +0711.2516 Phenomenology +0711.2521 +0711.2524 Strongly Correlated Electrons +0711.2528 +0711.2534 Theory +0711.2536 +0711.2556 +0711.2557 Phenomenology +0711.2559 Theory +0711.2560 Theory +0711.2563 +0711.2573 +0711.2574 +0711.2579 +0711.2580 +0711.2587 +0711.2589 Phenomenology +0711.2590 +0711.2594 Exactly Solvable and Integrable Systems +0711.2600 Phenomenology +0711.2603 +0711.2622 +0711.2626 Phenomenology +0711.2628 +0711.2630 +0711.2632 +0711.2635 Phenomenology +0711.2636 Phenomenology +0711.2644 Theory +0711.2650 Phenomenology +0711.2655 +0711.2656 +0711.2659 Theory +0711.2667 +0711.2678 Lattice +0711.2679 Theory +0711.2686 +0711.2689 +0711.2692 Lattice +0711.2727 Phenomenology +0711.2728 Phenomenology +0711.2731 Phenomenology +0711.2742 Theory +0711.2743 +0711.2744 Phenomenology +0711.2747 Instrumentation and Detectors +0711.2748 +0711.2759 Theory +0711.2788 Theory +0711.2789 Phenomenology +0711.2792 Theory +0711.2803 Theory +0711.2805 +0711.2826 Theory +0711.2828 Theory +0711.2837 +0711.2845 Lattice +0711.2859 Phenomenology +0711.2870 Phenomenology +0711.2875 +0711.2890 Phenomenology +0711.2902 Phenomenology +0711.2904 +0711.2906 +0711.2931 Phenomenology +0711.2933 Phenomenology +0711.2935 Phenomenology +0711.2942 Theory +0711.2953 Phenomenology +0711.2956 Phenomenology +0711.2967 +0711.2988 Experiment +0711.2991 Theory +0711.2992 +0711.2994 Theory +0711.2995 +0711.3003 Phenomenology +0711.3006 +0711.3007 +0711.3010 Phenomenology +0711.3012 Phenomenology +0711.3026 Theory +0711.3029 Experiment +0711.3039 Phenomenology +0711.3053 +0711.3059 Theory +0711.3063 +0711.3083 Phenomenology +0711.3084 +0711.3086 Phenomenology +0711.3091 +0711.3107 +0711.3126 Phenomenology +0711.3143 Phenomenology +0711.3145 +0711.3154 +0711.3166 Theory +0711.3169 Phenomenology +0711.3170 +0711.3175 Phenomenology +0711.3184 +0711.3189 +0711.3193 Phenomenology +0711.3207 Experiment +0711.3210 Theory +0711.3211 Phenomenology +0711.3214 Theory +0711.3222 Theory +0711.3226 Theory +0711.3228 Theory +0711.3233 Theory +0711.3252 Experiment +0711.3268 Phenomenology +0711.3303 Phenomenology +0711.3339 Lattice +0711.3346 +0711.3361 Phenomenology +0711.3366 +0711.3367 +0711.3376 Phenomenology +0711.3379 Theory +0711.3382 +0711.3389 Theory +0711.3397 Phenomenology +0711.3404 Theory +0711.3417 Theory +0711.3424 Phenomenology +0711.3435 Theory +0711.3442 Theory +0711.3443 +0711.3450 Phenomenology +0711.3472 Experiment +0711.3476 Phenomenology +0711.3478 +0711.3516 Phenomenology +0711.3528 +0711.3532 Theory +0711.3535 +0711.3536 Phenomenology +0711.3541 Theory +0711.3550 Theory +0711.3561 Instrumentation and Detectors +0711.3569 Phenomenology +0711.3575 +0711.3576 Phenomenology +0711.3582 General Physics +0711.3590 Phenomenology +0711.3599 Theory +0711.3600 Theory +0711.3602 +0711.3613 +0711.3626 Phenomenology +0711.3641 +0711.3670 Phenomenology +0711.3684 +0711.3685 Theory +0711.3709 +0711.3721 +0711.3729 +0711.3756 +0711.3770 +0711.3776 Theory +0711.3781 Theory +0711.3795 Phenomenology +0711.3813 Phenomenology +0711.3833 +0711.3847 Phenomenology +0711.3888 Lattice +0711.3891 Phenomenology +0711.3893 Theory +0711.3910 Phenomenology +0711.3911 +0711.3943 Phenomenology +0711.3950 Phenomenology +0711.3953 Lattice +0711.3967 +0711.3973 Phenomenology +0711.3996 +0711.3998 Phenomenology +0711.4009 +0711.4013 +0711.4014 Phenomenology +0711.4022 Phenomenology +0711.4026 +0711.4039 +0711.4055 Phenomenology +0711.4062 +0711.4066 +0711.4072 Lattice +0711.4101 Theory +0711.4118 Theory +0711.4119 +0711.4134 Atomic Physics +0711.4153 Phenomenology +0711.4162 Phenomenology +0711.4184 Theory +0711.4188 +0711.4191 Theory +0711.4193 Theory +0711.4203 Phenomenology +0711.4219 Theory +0711.4222 Phenomenology +0711.4223 Phenomenology +0711.4235 Theory +0711.4252 +0711.4272 Theory +0711.4273 Theory +0711.4281 +0711.4284 Phenomenology +0711.4290 Lattice +0711.4300 +0711.4303 Phenomenology +0711.4304 Phenomenology +0711.4312 Phenomenology +0711.4314 Theory +0711.4319 Theory +0711.4340 Phenomenology +0711.4353 Phenomenology +0711.4354 Theory +0711.4364 Phenomenology +0711.4374 Phenomenology +0711.4386 +0711.4397 +0711.4413 +0711.4415 +0711.4422 Theory +0711.4423 +0711.4429 Phenomenology +0711.4443 +0711.4448 Phenomenology +0711.4455 +0711.4482 Phenomenology +0711.4496 Theory +0711.4511 Theory +0711.4513 +0711.4517 Phenomenology +0711.4526 Phenomenology +0711.4541 Theory +0711.4544 Phenomenology +0711.4546 Theory +0711.4554 +0711.4558 +0711.4564 Theory +0711.4570 Instrumentation and Detectors +0711.4591 Phenomenology +0711.4593 Phenomenology +0711.4612 +0711.4614 Theory +0711.4621 +0711.4623 Theory +0711.4630 Theory +0711.4636 Phenomenology +0711.4643 Phenomenology +0711.4645 Phenomenology +0711.4646 Phenomenology +0711.4665 Lattice +0711.4672 Phenomenology +0711.4673 Theory +0711.4674 +0711.4680 Theory +0711.4709 +0711.4722 Phenomenology +0711.4723 +0711.4751 +0711.4754 Phenomenology +0711.4756 Phenomenology +0711.4767 +0711.4771 Theory +0711.4785 +0711.4796 +0711.4802 +0711.4808 +0711.4813 Theory +0711.4817 Theory +0711.4819 Phenomenology +0711.4860 +0711.4861 Phenomenology +0711.4866 Phenomenology +0711.4877 Theory +0711.4894 Theory +0711.4917 +0711.4928 Phenomenology +0711.4943 +0711.4962 Theory +0711.4965 Lattice +0711.4967 Theory +0711.4982 Theory +0711.4987 Phenomenology +0711.4991 Phenomenology +0711.4992 +0711.4993 Phenomenology +0711.5006 Phenomenology +0711.5012 Theory +0711.5022 +0711.5023 Phenomenology +0712.0010 Lattice +0712.0019 +0712.0024 +0712.0032 Theory +0712.0034 +0712.0038 +0712.0050 Theory +0712.0051 Phenomenology +0712.0053 +0712.0071 +0712.0076 Theory +0712.0081 +0712.0082 +0712.0085 +0712.0088 +0712.0089 +0712.0095 Phenomenology +0712.0122 +0712.0132 Theory +0712.0145 Phenomenology +0712.0151 Phenomenology +0712.0154 Phenomenology +0712.0188 Theory +0712.0196 +0712.0207 Phenomenology +0712.0208 +0712.0237 Phenomenology +0712.0238 +0712.0239 +0712.0242 Phenomenology +0712.0252 +0712.0254 Phenomenology +0712.0257 Phenomenology +0712.0258 +0712.0272 +0712.0276 +0712.0298 Phenomenology +0712.0300 Phenomenology +0712.0303 +0712.0304 Phenomenology +0712.0316 +0712.0322 Theory +0712.0323 +0712.0324 Theory +0712.0330 +0712.0338 +0712.0341 Theory +0712.0342 +0712.0343 +0712.0354 Phenomenology +0712.0360 Theory +0712.0361 Phenomenology +0712.0385 Theory +0712.0386 Phenomenology +0712.0388 +0712.0390 Theory +0712.0396 Phenomenology +0712.0400 +0712.0402 Phenomenology +0712.0406 Phenomenology +0712.0414 Theory +0712.0426 Theory +0712.0429 Phenomenology +0712.0445 Theory +0712.0448 Phenomenology +0712.0466 Phenomenology +0712.0470 +0712.0481 Phenomenology +0712.0484 +0712.0486 +0712.0495 +0712.0503 Phenomenology +0712.0506 Theory +0712.0509 Phenomenology +0712.0535 Theory +0712.0537 Theory +0712.0542 Theory +0712.0544 Experiment +0712.0546 Phenomenology +0712.0549 Theory +0712.0550 +0712.0562 +0712.0566 Theory +0712.0567 +0712.0570 Theory +0712.0572 Phenomenology +0712.0590 Theory +0712.0592 +0712.0594 +0712.0598 Experiment +0712.0599 Experiment +0712.0600 +0712.0607 +0712.0611 Theory +0712.0614 Theory +0712.0615 Theory +0712.0618 +0712.0619 Phenomenology +0712.0626 Exactly Solvable and Integrable Systems +0712.0633 +0712.0635 +0712.0645 +0712.0654 +0712.0668 Experiment +0712.0672 Theory +0712.0674 Phenomenology +0712.0677 +0712.0683 +0712.0687 +0712.0698 +0712.0699 +0712.0700 Theory +0712.0704 +0712.0705 +0712.0713 +0712.0727 Theory +0712.0732 Phenomenology +0712.0735 Theory +0712.0747 Theory +0712.0774 Phenomenology +0712.0777 Phenomenology +0712.0778 +0712.0780 Phenomenology +0712.0791 Theory +0712.0803 Experiment +0712.0808 Theory +0712.0817 +0712.0834 +0712.0850 Theory +0712.0851 Experiment +0712.0885 Phenomenology +0712.0888 +0712.0902 Theory +0712.0903 Phenomenology +0712.0909 Phenomenology +0712.0918 Theory +0712.0923 Theory +0712.0943 Phenomenology +0712.0947 +0712.0984 +0712.0995 +0712.0999 Lattice +0712.1011 Phenomenology +0712.1012 Phenomenology +0712.1021 Theory +0712.1026 Theory +0712.1028 +0712.1030 +0712.1031 Phenomenology +0712.1034 Phenomenology +0712.1053 Phenomenology +0712.1058 Theory +0712.1061 Lattice +0712.1104 Phenomenology +0712.1120 Phenomenology +0712.1121 Theory +0712.1127 Experiment +0712.1130 +0712.1141 +0712.1143 Experiment +0712.1146 Theory +0712.1148 +0712.1162 +0712.1168 +0712.1177 +0712.1186 +0712.1188 +0712.1191 +0712.1193 Theory +0712.1195 Phenomenology +0712.1196 Theory +0712.1201 Lattice +0712.1204 Theory +0712.1206 Phenomenology +0712.1209 Theory +0712.1216 Lattice +0712.1217 +0712.1230 Theory +0712.1234 Phenomenology +0712.1252 Theory +0712.1256 +0712.1260 Theory +0712.1278 +0712.1280 Experiment +0712.1285 Phenomenology +0712.1292 +0712.1294 Phenomenology +0712.1297 +0712.1313 +0712.1314 +0712.1336 Phenomenology +0712.1338 +0712.1346 Theory +0712.1347 Theory +0712.1356 +0712.1361 Theory +0712.1371 +0712.1389 +0712.1396 Theory +0712.1397 Theory +0712.1405 Phenomenology +0712.1413 +0712.1419 Phenomenology +0712.1421 +0712.1429 +0712.1434 +0712.1450 Phenomenology +0712.1469 Lattice +0712.1475 Phenomenology +0712.1479 Phenomenology +0712.1505 +0712.1510 +0712.1517 Phenomenology +0712.1520 +0712.1523 Phenomenology +0712.1525 +0712.1528 Phenomenology +0712.1575 +0712.1578 +0712.1579 Phenomenology +0712.1582 Theory +0712.1590 +0712.1594 +0712.1596 Theory +0712.1613 +0712.1619 +0712.1647 +0712.1648 +0712.1650 Theory +0712.1670 Theory +0712.1671 Phenomenology +0712.1711 Phenomenology +0712.1715 +0712.1717 Materials Science +0712.1727 +0712.1758 Phenomenology +0712.1778 +0712.1779 Phenomenology +0712.1786 Phenomenology +0712.1793 Theory +0712.1799 Phenomenology +0712.1810 +0712.1811 Phenomenology +0712.1815 Theory +0712.1820 Theory +0712.1830 +0712.1838 +0712.1861 Phenomenology +0712.1873 Theory +0712.1881 +0712.1882 Phenomenology +0712.1883 +0712.1886 Theory +0712.1911 +0712.1915 Phenomenology +0712.1938 +0712.1948 Phenomenology +0712.1953 Phenomenology +0712.1964 Instrumentation and Detectors +0712.1967 +0712.1969 +0712.1988 +0712.1993 +0712.1998 +0712.2001 Phenomenology +0712.2008 Phenomenology +0712.2010 Theory +0712.2025 Theory +0712.2041 Phenomenology +0712.2044 +0712.2050 +0712.2055 Phenomenology +0712.2074 Phenomenology +0712.2079 Phenomenology +0712.2081 +0712.2103 Phenomenology +0712.2126 Experiment +0712.2142 Theory +0712.2144 +0712.2154 +0712.2155 Theory +0712.2164 Theory +0712.2165 Theory +0712.2176 Phenomenology +0712.2179 Instrumentation and Detectors +0712.2190 +0712.2191 +0712.2192 Theory +0712.2195 +0712.2197 Phenomenology +0712.2200 +0712.2208 Phenomenology +0712.2209 +0712.2216 Theory +0712.2221 Theory +0712.2228 Theory +0712.2236 +0712.2237 Theory +0712.2243 Theory +0712.2260 +0712.2268 +0712.2272 +0712.2277 +0712.2281 Theory +0712.2282 +0712.2283 +0712.2288 Phenomenology +0712.2301 +0712.2316 Theory +0712.2321 Theory +0712.2327 Phenomenology +0712.2332 +0712.2340 Experiment +0712.2353 Experiment +0712.2359 +0712.2363 +0712.2369 +0712.2382 Phenomenology +0712.2399 +0712.2402 +0712.2407 Phenomenology +0712.2425 Theory +0712.2429 Lattice +0712.2442 Phenomenology +0712.2445 +0712.2447 Phenomenology +0712.2450 +0712.2451 Theory +0712.2454 Phenomenology +0712.2460 +0712.2462 Phenomenology +0712.2463 Phenomenology +0712.2470 +0712.2472 +0712.2479 Theory +0712.2492 +0712.2499 +0712.2500 +0712.2511 +0712.2516 +0712.2517 +0712.2519 Phenomenology +0712.2535 +0712.2540 +0712.2560 Lattice +0712.2561 +0712.2570 +0712.2588 +0712.2593 +0712.2607 Phenomenology +0712.2609 Phenomenology +0712.2610 Phenomenology +0712.2611 Phenomenology +0712.2612 Phenomenology +0712.2615 Lattice +0712.2625 Lattice +0712.2634 +0712.2648 Theory +0712.2653 Theory +0712.2659 Experiment +0712.2662 +0712.2667 +0712.2670 Phenomenology +0712.2673 Optics +0712.2686 Theory +0712.2693 Phenomenology +0712.2695 Representation Theory +0712.2707 Phenomenology +0712.2714 Theory +0712.2717 Theory +0712.2725 Theory +0712.2728 Theory +0712.2733 Experiment +0712.2743 Theory +0712.2761 Phenomenology +0712.2762 Phenomenology +0712.2763 Phenomenology +0712.2778 +0712.2787 +0712.2793 Phenomenology +0712.2795 +0712.2811 Theory +0712.2819 +0712.2822 Theory +0712.2825 +0712.2833 Instrumentation and Detectors +0712.2846 Statistical Mechanics +0712.2848 Accelerator Physics +0712.2859 Theory +0712.2886 Phenomenology +0712.2903 Phenomenology +0712.2918 Theory +0712.2922 +0712.2926 Phenomenology +0712.2933 Phenomenology +0712.2947 Phenomenology +0712.2953 Phenomenology +0712.2954 Phenomenology +0712.2980 +0712.2985 Phenomenology +0712.2989 Theory +0712.2990 +0712.2991 +0712.2993 +0712.2999 Phenomenology +0712.3003 +0712.3008 +0712.3009 Phenomenology +0712.3011 Theory +0712.3013 +0712.3030 +0712.3033 +0712.3034 Theory +0712.3038 Theory +0712.3040 Theory +0712.3074 Lattice +0712.3087 +0712.3089 Experiment +0712.3095 Theory +0712.3099 +0712.3107 +0712.3157 +0712.3158 Phenomenology +0712.3163 Phenomenology +0712.3170 Theory +0712.3194 Theory +0712.3199 +0712.3200 +0712.3224 Theory +0712.3226 Theory +0712.3232 Theory +0712.3235 Theory +0712.3242 +0712.3246 +0712.3252 +0712.3292 +0712.3301 Quantum Algebra +0712.3305 Theory +0712.3308 +0712.3315 +0712.3324 Theory +0712.3330 +0712.3337 +0712.3347 Phenomenology +0712.3373 +0712.3398 Phenomenology +0712.3404 +0712.3409 Theory +0712.3419 +0712.3437 Phenomenology +0712.3450 +0712.3457 +0712.3463 +0712.3491 Theory +0712.3499 +0712.3506 Phenomenology +0712.3508 +0712.3514 Phenomenology +0712.3517 Lattice +0712.3518 +0712.3522 Theory +0712.3525 Lattice +0712.3529 Theory +0712.3530 Theory +0712.3532 Theory +0712.3539 +0712.3544 Phenomenology +0712.3546 +0712.3547 Theory +0712.3551 Theory +0712.3555 +0712.3565 +0712.3574 Theory +0712.3589 Theory +0712.3595 Phenomenology +0712.3603 +0712.3604 +0712.3608 +0712.3625 Theory +0712.3631 Theory +0712.3642 +0712.3644 +0712.3661 +0712.3669 Theory +0712.3685 +0712.3686 Theory +0712.3694 Theory +0712.3699 Theory +0712.3716 +0712.3732 Phenomenology +0712.3734 Phenomenology +0712.3742 +0712.3750 +0712.3751 Phenomenology +0712.3754 +0712.3755 Lattice +0712.3756 Phenomenology +0712.3758 +0712.3760 Theory +0712.3765 Exactly Solvable and Integrable Systems +0712.3772 Lattice +0712.3782 Phenomenology +0712.3787 +0712.3797 +0712.3799 +0712.3805 Experiment +0712.3806 +0712.3808 +0712.3811 Theory +0712.3814 Phenomenology +0712.3821 Theory +0712.3838 +0712.3839 +0712.3871 Theory +0712.3872 Theory +0712.3893 +0712.3901 Phenomenology +0712.3907 +0712.3912 Phenomenology +0712.3919 +0712.3926 Phenomenology +0712.3933 Phenomenology +0712.3938 Theory +0712.3941 +0712.3942 +0712.3943 Phenomenology +0712.3949 +0712.3957 +0712.3958 +0712.3959 +0712.3963 Phenomenology +0712.3974 +0712.3982 +0712.4013 +0712.4017 Theory +0712.4019 Phenomenology +0712.4028 +0712.4034 Phenomenology +0712.4035 +0712.4038 +0712.4044 +0712.4053 Phenomenology +0712.4062 Theory +0712.4064 +0712.4066 +0712.4072 Phenomenology +0712.4086 Theory +0712.4097 +0712.4098 Chemical Physics +0712.4106 Classical Analysis and ODEs +0712.4116 Theory +0712.4119 Theory +0712.4120 Theory +0712.4121 +0712.4122 +0712.4125 +0712.4138 Theory +0712.4144 Theory +0712.4146 Phenomenology +0712.4147 Theory +0712.4154 Experiment +0712.4155 Theory +0712.4157 +0712.4164 Experiment +0712.4167 Theory +0712.4184 +0712.4187 Phenomenology +0712.4202 Theory +0712.4206 Phenomenology +0712.4208 Theory +0712.4212 Theory +0712.4218 Phenomenology +0712.4220 Phenomenology +0712.4234 Experiment +0712.4240 Phenomenology +0712.4245 Theory +0712.4260 Phenomenology +0712.4263 Phenomenology +0712.4271 Experiment +0712.4278 Theory +0712.4285 +0712.4292 Theory +0712.4314 Phenomenology +0712.4327 +0712.4330 Theory +0712.4333 +0712.4345 Phenomenology +0712.4353 +0712.4355 Phenomenology +0712.4363 +0712.4366 Theory +0712.4367 Experiment +0712.4370 Instrumentation and Detectors +0712.4371 Statistical Mechanics +0712.4372 +0712.4376 +0712.4384 Phenomenology +0712.4386 Phenomenology +0712.4392 Theory +0712.4394 +0712.4401 Lattice +0801.0018 Phenomenology +0801.0022 Phenomenology +0801.0025 +0801.0026 Phenomenology +0801.0032 Theory +0801.0034 Phenomenology +0801.0041 Phenomenology +0801.0067 Theory +0801.0106 Theory +0801.0110 +0801.0118 +0801.0122 +0801.0129 Theory +0801.0141 +0801.0164 Theory +0801.0179 +0801.0181 Phenomenology +0801.0182 Experiment +0801.0185 Theory +0801.0189 Phenomenology +0801.0216 +0801.0225 Theory +0801.0226 Theory +0801.0228 Theory +0801.0231 Phenomenology +0801.0236 Phenomenology +0801.0237 Phenomenology +0801.0238 Theory +0801.0248 Phenomenology +0801.0251 Phenomenology +0801.0257 Theory +0801.0263 +0801.0267 Phenomenology +0801.0272 +0801.0273 +0801.0290 +0801.0296 +0801.0303 Phenomenology +0801.0307 +0801.0319 +0801.0323 +0801.0331 Theory +0801.0356 Theory +0801.0367 +0801.0389 Phenomenology +0801.0399 Phenomenology +0801.0411 Theory +0801.0434 Phenomenology +0801.0437 Phenomenology +0801.0445 +0801.0450 +0801.0453 +0801.0467 Theory +0801.0473 Phenomenology +0801.0478 Phenomenology +0801.0487 +0801.0493 Phenomenology +0801.0498 +0801.0502 +0801.0503 Theory +0801.0536 Phenomenology +0801.0566 Theory +0801.0572 Phenomenology +0801.0573 Theory +0801.0578 Theory +0801.0588 +0801.0626 Phenomenology +0801.0630 +0801.0642 +0801.0644 +0801.0648 Phenomenology +0801.0653 Phenomenology +0801.0657 Theory +0801.0663 Phenomenology +0801.0669 Theory +0801.0724 +0801.0735 +0801.0740 +0801.0743 Phenomenology +0801.0747 Theory +0801.0760 Theory +0801.0762 Theory +0801.0763 Lattice +0801.0776 Experiment +0801.0783 +0801.0784 +0801.0788 Phenomenology +0801.0801 Theory +0801.0810 Theory +0801.0834 +0801.0845 Theory +0801.0853 +0801.0861 Theory +0801.0872 Phenomenology +0801.0877 Experiment +0801.0889 +0801.0924 +0801.0937 Phenomenology +0801.0943 Phenomenology +0801.0944 Theory +0801.0983 +0801.0994 +0801.1000 +0801.1021 Theory +0801.1073 +0801.1074 Phenomenology +0801.1078 +0801.1085 Theory +0801.1098 +0801.1117 Theory +0801.1119 +0801.1140 Phenomenology +0801.1146 Theory +0801.1152 Experiment +0801.1165 Lattice +0801.1169 Phenomenology +0801.1235 Experiment +0801.1254 +0801.1274 Theory +0801.1326 Experiment +0801.1347 +0801.1363 +0801.1366 +0801.1374 Phenomenology +0801.1375 +0801.1385 +0801.1398 +0801.1450 +0801.1467 +0801.1473 +0801.1480 Subcellular Processes +0801.1484 +0801.1489 +0801.1490 Phenomenology +0801.1492 Theory +0801.1498 +0801.1502 Phenomenology +0801.1518 +0801.1527 Phenomenology +0801.1528 +0801.1534 Phenomenology +0801.1547 +0801.1554 +0801.1562 +0801.1565 +0801.1566 Phenomenology +0801.1603 Theory +0801.1605 Theory +0801.1619 +0801.1624 +0801.1628 +0801.1645 Phenomenology +0801.1659 Accelerator Physics +0801.1660 Phenomenology +0801.1662 Phenomenology +0801.1665 +0801.1667 Theory +0801.1671 Theory +0801.1693 Theory +0801.1702 Theory +0801.1722 Phenomenology +0801.1726 +0801.1729 +0801.1743 Strongly Correlated Electrons +0801.1748 Theory +0801.1755 +0801.1785 Theory +0801.1802 Phenomenology +0801.1821 Phenomenology +0801.1831 Phenomenology +0801.1845 Phenomenology +0801.1854 Theory +0801.1857 Lattice +0801.1859 Theory +0801.1874 Atomic Physics +0801.1901 Phenomenology +0801.1908 Experiment +0801.1937 Phenomenology +0801.1974 Phenomenology +0801.1985 +0801.2000 +0801.2008 +0801.2011 Phenomenology +0801.2023 Phenomenology +0801.2026 +0801.2027 +0801.2028 Phenomenology +0801.2029 Phenomenology +0801.2031 +0801.2036 Phenomenology +0801.2040 Theory +0801.2044 +0801.2053 +0801.2062 Theory +0801.2064 Theory +0801.2068 +0801.2090 +0801.2099 Theory +0801.2102 Phenomenology +0801.2143 Phenomenology +0801.2157 Theory +0801.2163 Theory +0801.2180 Mesoscale and Nanoscale Physics +0801.2189 +0801.2195 +0801.2199 Phenomenology +0801.2200 +0801.2204 Phenomenology +0801.2206 Instrumentation and Detectors +0801.2213 +0801.2218 +0801.2229 Phenomenology +0801.2232 Phenomenology +0801.2244 Phenomenology +0801.2253 Theory +0801.2265 +0801.2279 +0801.2294 Theory +0801.2297 Phenomenology +0801.2306 Theory +0801.2307 +0801.2317 +0801.2361 Phenomenology +0801.2372 +0801.2401 Theory +0801.2414 Phenomenology +0801.2415 Phenomenology +0801.2427 Phenomenology +0801.2431 +0801.2433 +0801.2434 Theory +0801.2438 +0801.2459 Theory +0801.2462 Theory +0801.2464 Theory +0801.2468 Instrumentation and Detectors +0801.2469 Phenomenology +0801.2475 Experiment +0801.2482 Phenomenology +0801.2535 Lattice +0801.2539 Phenomenology +0801.2543 Theory +0801.2544 Phenomenology +0801.2545 Phenomenology +0801.2552 Phenomenology +0801.2581 Theory +0801.2593 +0801.2596 Phenomenology +0801.2622 +0801.2630 Theory +0801.2633 Phenomenology +0801.2643 Phenomenology +0801.2648 Phenomenology +0801.2660 +0801.2661 Theory +0801.2671 +0801.2682 Phenomenology +0801.2695 +0801.2697 Phenomenology +0801.2703 Theory +0801.2710 +0801.2715 +0801.2743 +0801.2752 +0801.2785 Theory +0801.2803 Phenomenology +0801.2810 Theory +0801.2813 +0801.2832 +0801.2836 Theory +0801.2842 Theory +0801.2843 Phenomenology +0801.2850 +0801.2871 Phenomenology +0801.2880 +0801.2883 +0801.2885 Theory +0801.2891 Phenomenology +0801.2896 +0801.2904 +0801.2936 Theory +0801.2949 Phenomenology +0801.2973 +0801.2983 +0801.3000 Lattice +0801.3029 Phenomenology +0801.3032 Theory +0801.3071 Phenomenology +0801.3080 Theory +0801.3087 Phenomenology +0801.3090 +0801.3123 Phenomenology +0801.3130 Theory +0801.3131 +0801.3146 Lattice +0801.3163 +0801.3172 +0801.3188 Theory +0801.3190 +0801.3195 +0801.3208 Theory +0801.3210 +0801.3222 Phenomenology +0801.3223 +0801.3235 +0801.3256 +0801.3269 +0801.3276 +0801.3292 +0801.3334 Phenomenology +0801.3335 +0801.3343 +0801.3355 Phenomenology +0801.3358 Theory +0801.3360 Phenomenology +0801.3361 Lattice +0801.3375 Theory +0801.3389 +0801.3392 +0801.3417 Phenomenology +0801.3425 +0801.3441 Phenomenology +0801.3445 +0801.3447 +0801.3450 +0801.3455 Theory +0801.3456 Phenomenology +0801.3464 Phenomenology +0801.3466 +0801.3470 Phenomenology +0801.3477 Theory +0801.3478 +0801.3486 Phenomenology +0801.3491 Phenomenology +0801.3496 +0801.3503 Theory +0801.3522 Theory +0801.3527 Theory +0801.3529 +0801.3535 +0801.3540 Phenomenology +0801.3548 +0801.3558 Phenomenology +0801.3575 Phenomenology +0801.3580 Accelerator Physics +0801.3583 Theory +0801.3586 Experiment +0801.3618 Phenomenology +0801.3627 Phenomenology +0801.3635 +0801.3653 +0801.3656 Phenomenology +0801.3662 Theory +0801.3666 Phenomenology +0801.3671 Theory +0801.3674 Theory +0801.3693 Phenomenology +0801.3716 Phenomenology +0801.3722 Lattice +0801.3731 Theory +0801.3769 +0801.3771 Phenomenology +0801.3781 +0801.3799 Phenomenology +0801.3805 +0801.3808 Theory +0801.3821 +0801.3822 +0801.3823 Lattice +0801.3839 Phenomenology +0801.3879 +0801.3882 +0801.3905 +0801.3906 Experiment +0801.3907 Phenomenology +0801.3932 Lattice +0801.3942 +0801.3972 Phenomenology +0801.3998 Phenomenology +0801.4016 Lattice +0801.4034 Phenomenology +0801.4044 Phenomenology +0801.4051 Lattice +0801.4070 +0801.4074 +0801.4090 +0801.4108 Phenomenology +0801.4110 Theory +0801.4111 Theory +0801.4132 Mesoscale and Nanoscale Physics +0801.4147 Phenomenology +0801.4149 +0801.4171 +0801.4185 +0801.4186 Lattice +0801.4195 +0801.4196 Phenomenology +0801.4215 Theory +0801.4216 Theory +0801.4219 +0801.4231 Phenomenology +0801.4241 +0801.4254 Phenomenology +0801.4257 +0801.4265 Statistical Mechanics +0801.4282 +0801.4284 Phenomenology +0801.4313 +0801.4330 +0801.4339 +0801.4342 +0801.4343 Phenomenology +0801.4346 Phenomenology +0801.4347 Phenomenology +0801.4349 Phenomenology +0801.4357 Phenomenology +0801.4361 +0801.4363 Phenomenology +0801.4374 Phenomenology +0801.4378 Phenomenology +0801.4380 +0801.4383 Phenomenology +0801.4387 +0801.4389 Phenomenology +0801.4399 Theory +0801.4401 +0801.4421 Theory +0801.4427 +0801.4434 +0801.4466 Other Condensed Matter +0801.4478 Theory +0801.4495 Phenomenology +0801.4504 +0801.4507 Theory +0801.4512 +0801.4514 +0801.4517 +0801.4520 +0801.4523 Optics +0801.4526 Theory +0801.4538 Theory +0801.4545 +0801.4553 +0801.4564 Theory +0801.4569 Phenomenology +0801.4575 +0801.4584 +0801.4591 +0801.4600 +0801.4603 Phenomenology +0801.4606 +0801.4640 Phenomenology +0801.4645 +0801.4651 Phenomenology +0801.4654 +0801.4690 +0801.4696 Phenomenology +0801.4707 Lattice +0801.4720 Theory +0801.4730 +0801.4734 +0801.4739 Phenomenology +0801.4766 +0801.4782 Theory +0801.4793 Theory +0801.4810 Phenomenology +0801.4821 Phenomenology +0801.4834 +0801.4842 +0801.4883 Lattice +0801.4894 +0801.4896 Phenomenology +0801.4907 Theory +0801.4908 Phenomenology +0801.4919 +0801.4920 +0801.4938 Phenomenology +0801.4958 +0801.4970 Phenomenology +0802.0007 Phenomenology +0802.0009 Theory +0802.0032 Phenomenology +0802.0043 +0802.0049 Phenomenology +0802.0051 +0802.0057 Theory +0802.0060 Phenomenology +0802.0080 Theory +0802.0086 Phenomenology +0802.0087 +0802.0088 Phenomenology +0802.0095 +0802.0103 Theory +0802.0106 Phenomenology +0802.0112 +0802.0121 Phenomenology +0802.0141 Theory +0802.0170 Lattice +0802.0171 Phenomenology +0802.0174 +0802.0177 Phenomenology +0802.0180 Phenomenology +0802.0203 Phenomenology +0802.0227 Phenomenology +0802.0234 Phenomenology +0802.0238 +0802.0239 Lattice +0802.0259 +0802.0267 Theory +0802.0276 Phenomenology +0802.0293 Phenomenology +0802.0309 Phenomenology +0802.0319 Phenomenology +0802.0321 Phenomenology +0802.0322 Theory +0802.0325 Phenomenology +0802.0338 Theory +0802.0343 Phenomenology +0802.0354 Theory +0802.0355 Theory +0802.0363 +0802.0377 +0802.0381 Phenomenology +0802.0398 Theory +0802.0408 Phenomenology +0802.0410 Theory +0802.0470 Theory +0802.0506 Phenomenology +0802.0521 Phenomenology +0802.0525 Phenomenology +0802.0530 +0802.0618 +0802.0652 +0802.0659 +0802.0668 +0802.0669 Phenomenology +0802.0675 Mesoscale and Nanoscale Physics +0802.0688 +0802.0702 Phenomenology +0802.0711 +0802.0714 Phenomenology +0802.0719 Theory +0802.0724 Phenomenology +0802.0740 Phenomenology +0802.0741 Theory +0802.0761 Theory +0802.0762 Phenomenology +0802.0775 Theory +0802.0777 Theory +0802.0784 Theory +0802.0813 Phenomenology +0802.0838 +0802.0840 Theory +0802.0862 Lattice +0802.0864 +0802.0866 Theory +0802.0868 Theory +0802.0876 Phenomenology +0802.0880 +0802.0891 Lattice +0802.0894 Phenomenology +0802.0905 Statistical Mechanics +0802.0908 +0802.0929 +0802.0934 Phenomenology +0802.0936 +0802.0937 Phenomenology +0802.0939 +0802.0942 +0802.0948 +0802.0949 Phenomenology +0802.0971 +0802.0973 Theory +0802.0980 Phenomenology +0802.0985 +0802.0989 +0802.0997 Theory +0802.1000 Experiment +0802.1017 Theory +0802.1020 Theory +0802.1029 +0802.1048 Experiment +0802.1053 +0802.1061 Phenomenology +0802.1068 +0802.1084 Phenomenology +0802.1110 +0802.1119 Phenomenology +0802.1128 +0802.1137 Phenomenology +0802.1145 Phenomenology +0802.1175 Phenomenology +0802.1178 Phenomenology +0802.1187 +0802.1188 Phenomenology +0802.1190 +0802.1193 Theory +0802.1196 +0802.1201 +0802.1209 Phenomenology +0802.1215 +0802.1221 +0802.1230 +0802.1238 +0802.1243 +0802.1250 Theory +0802.1274 Symbolic Computation +0802.1277 Phenomenology +0802.1290 Theory +0802.1298 +0802.1326 +0802.1330 Phenomenology +0802.1343 Instrumentation and Detectors +0802.1356 +0802.1392 Theory +0802.1404 +0802.1405 Phenomenology +0802.1410 Phenomenology +0802.1434 Phenomenology +0802.1455 +0802.1470 Lattice +0802.1472 +0802.1474 +0802.1481 Phenomenology +0802.1482 Phenomenology +0802.1490 Lattice +0802.1506 +0802.1526 +0802.1530 +0802.1531 +0802.1546 +0802.1552 +0802.1553 +0802.1557 Theory +0802.1563 Lattice +0802.1572 Phenomenology +0802.1576 Theory +0802.1589 Phenomenology +0802.1599 +0802.1602 Phenomenology +0802.1611 +0802.1613 +0802.1624 Theory +0802.1625 +0802.1627 Phenomenology +0802.1656 Phenomenology +0802.1658 Theory +0802.1664 Strongly Correlated Electrons +0802.1671 Theory +0802.1687 +0802.1693 Phenomenology +0802.1695 +0802.1710 +0802.1714 Phenomenology +0802.1718 Phenomenology +0802.1736 Phenomenology +0802.1745 +0802.1758 Phenomenology +0802.1792 Phenomenology +0802.1795 Lattice +0802.1802 Phenomenology +0802.1813 Theory +0802.1830 Phenomenology +0802.1834 Phenomenology +0802.1835 General Physics +0802.1845 +0802.1849 Phenomenology +0802.1876 Phenomenology +0802.1889 Theory +0802.1898 Phenomenology +0802.1939 Theory +0802.1947 Theory +0802.1948 +0802.1949 Phenomenology +0802.1950 Theory +0802.1953 +0802.1965 +0802.1970 Theory +0802.1972 +0802.1980 Theory +0802.1994 Phenomenology +0802.2018 Theory +0802.2020 Lattice +0802.2023 +0802.2025 Phenomenology +0802.2030 Phenomenology +0802.2037 Theory +0802.2071 Phenomenology +0802.2072 +0802.2075 Phenomenology +0802.2081 Theory +0802.2151 +0802.2152 Theory +0802.2183 +0802.2190 Theory +0802.2209 Phenomenology +0802.2215 Phenomenology +0802.2221 Phenomenology +0802.2230 +0802.2240 +0802.2241 Phenomenology +0802.2254 Phenomenology +0802.2262 +0802.2274 Theory +0802.2278 Instrumentation and Detectors +0802.2286 Theory +0802.2290 Theory +0802.2296 +0802.2310 Phenomenology +0802.2318 +0802.2320 Theory +0802.2341 +0802.2348 Phenomenology +0802.2350 Experiment +0802.2366 Phenomenology +0802.2368 Phenomenology +0802.2375 Exactly Solvable and Integrable Systems +0802.2379 Phenomenology +0802.2396 Phenomenology +0802.2400 Experiment +0802.2406 General Physics +0802.2409 Phenomenology +0802.2412 Phenomenology +0802.2431 +0802.2442 +0802.2449 Theory +0802.2452 Phenomenology +0802.2456 Theory +0802.2457 +0802.2461 Phenomenology +0802.2464 +0802.2470 Phenomenology +0802.2484 +0802.2487 Phenomenology +0802.2496 Lattice +0802.2500 Phenomenology +0802.2513 Phenomenology +0802.2520 +0802.2527 +0802.2542 +0802.2548 Statistical Mechanics +0802.2593 Phenomenology +0802.2595 Theory +0802.2608 +0802.2614 +0802.2618 Phenomenology +0802.2622 Phenomenology +0802.2630 +0802.2637 Theory +0802.2646 +0802.2648 Phenomenology +0802.2649 +0802.2660 Theory +0802.2669 Phenomenology +0802.2680 Phenomenology +0802.2686 +0802.2702 Phenomenology +0802.2715 +0802.2738 Phenomenology +0802.2753 Theory +0802.2762 Phenomenology +0802.2802 +0802.2821 Phenomenology +0802.2830 +0802.2891 Phenomenology +0802.2896 Phenomenology +0802.2904 Phenomenology +0802.2910 Theory +0802.2911 +0802.2917 Phenomenology +0802.2931 Lattice +0802.2952 Experiment +0802.2954 Phenomenology +0802.2962 Phenomenology +0802.2968 Phenomenology +0802.2976 Theory +0802.2979 Phenomenology +0802.2982 Phenomenology +0802.2983 +0802.2997 Phenomenology +0802.2999 +0802.3008 Phenomenology +0802.3015 Theory +0802.3018 +0802.3029 Lattice +0802.3117 Theory +0802.3127 Phenomenology +0802.3135 Theory +0802.3147 +0802.3169 +0802.3173 Plasma Physics +0802.3180 +0802.3187 Phenomenology +0802.3188 +0802.3197 Phenomenology +0802.3198 +0802.3210 +0802.3212 Statistical Mechanics +0802.3220 +0802.3232 +0802.3241 Phenomenology +0802.3245 +0802.3246 +0802.3247 +0802.3257 Phenomenology +0802.3261 Phenomenology +0802.3263 +0802.3275 Theory +0802.3292 Theory +0802.3299 Experiment +0802.3306 General Physics +0802.3314 +0802.3316 +0802.3318 Theory +0802.3330 Theory +0802.3333 Theory +0802.3335 +0802.3338 +0802.3341 +0802.3348 +0802.3349 Phenomenology +0802.3373 +0802.3378 Phenomenology +0802.3379 Theory +0802.3389 +0802.3426 +0802.3431 Phenomenology +0802.3439 Experiment +0802.3470 Phenomenology +0802.3496 +0802.3500 Phenomenology +0802.3508 Theory +0802.3525 Theory +0802.3552 +0802.3592 Phenomenology +0802.3605 +0802.3606 +0802.3610 Phenomenology +0802.3615 Phenomenology +0802.3618 +0802.3621 Experiment +0802.3622 +0802.3630 Quantum Algebra +0802.3633 Theory +0802.3637 Lattice +0802.3658 +0802.3673 +0802.3685 +0802.3699 Phenomenology +0802.3702 Phenomenology +0802.3725 Phenomenology +0802.3727 Phenomenology +0802.3738 +0802.3740 +0802.3751 +0802.3765 Theory +0802.3766 Phenomenology +0802.3772 +0802.3773 Optics +0802.3781 +0802.3790 Phenomenology +0802.3791 +0802.3816 +0802.3821 +0802.3829 Theory +0802.3833 Phenomenology +0802.3906 Phenomenology +0802.3909 Phenomenology +0802.3920 Theory +0802.3943 Experiment +0802.3952 Lattice +0802.3954 +0802.3968 Experiment +0802.3999 +0802.4015 Phenomenology +0802.4022 Phenomenology +0802.4038 +0802.4047 +0802.4049 Phenomenology +0802.4050 Phenomenology +0802.4063 +0802.4077 +0802.4098 Phenomenology +0802.4104 +0802.4106 Theory +0802.4122 +0802.4124 Phenomenology +0802.4129 Theory +0802.4138 +0802.4142 Phenomenology +0802.4143 Phenomenology +0802.4159 Optics +0802.4161 +0802.4176 Theory +0802.4201 Theory +0802.4221 Phenomenology +0802.4228 Phenomenology +0802.4229 Phenomenology +0802.4231 Theory +0802.4236 +0802.4239 +0802.4247 Lattice +0802.4249 +0802.4257 +0802.4258 Experiment +0802.4263 +0802.4277 +0802.4290 Phenomenology +0802.4301 Phenomenology +0802.4303 Phenomenology +0802.4334 Phenomenology +0802.4335 Phenomenology +0802.4353 Phenomenology +0802.4354 Phenomenology +0802.4364 Phenomenology +0802.4415 +0802.4423 Phenomenology +0802.4427 +0802.4430 Phenomenology +0802.4444 Theory +0803.0001 Phenomenology +0803.0002 +0803.0027 +0803.0030 Experiment +0803.0033 Experiment +0803.0062 Phenomenology +0803.0106 Phenomenology +0803.0129 Lattice +0803.0131 Phenomenology +0803.0144 Phenomenology +0803.0151 +0803.0157 +0803.0175 Phenomenology +0803.0176 Theory +0803.0180 Theory +0803.0181 +0803.0182 Lattice +0803.0186 Lattice +0803.0192 Phenomenology +0803.0215 Theory +0803.0218 Phenomenology +0803.0223 Theory +0803.0226 +0803.0227 Phenomenology +0803.0230 Theory +0803.0232 Theory +0803.0236 Theory +0803.0246 Phenomenology +0803.0253 Phenomenology +0803.0255 +0803.0258 Phenomenology +0803.0266 Theory +0803.0271 Lattice +0803.0273 Phenomenology +0803.0274 +0803.0277 +0803.0279 Phenomenology +0803.0281 +0803.0283 Theory +0803.0303 Theory +0803.0317 +0803.0321 +0803.0343 Phenomenology +0803.0344 Theory +0803.0351 +0803.0369 +0803.0380 Phenomenology +0803.0388 +0803.0390 +0803.0410 Phenomenology +0803.0416 +0803.0423 Phenomenology +0803.0424 Theory +0803.0435 Theory +0803.0446 Phenomenology +0803.0453 Phenomenology +0803.0457 Phenomenology +0803.0495 Phenomenology +0803.0497 Phenomenology +0803.0501 +0803.0504 Theory +0803.0507 Other Condensed Matter +0803.0510 Phenomenology +0803.0512 Phenomenology +0803.0518 +0803.0521 +0803.0526 Theory +0803.0527 Phenomenology +0803.0537 Theory +0803.0540 +0803.0590 +0803.0594 Instrumentation and Detectors +0803.0601 +0803.0602 +0803.0604 +0803.0606 Phenomenology +0803.0631 Phenomenology +0803.0649 +0803.0660 +0803.0670 Theory +0803.0672 Phenomenology +0803.0684 Theory +0803.0695 Phenomenology +0803.0706 Phenomenology +0803.0736 Theory +0803.0749 Theory +0803.0785 Theory +0803.0796 Phenomenology +0803.0807 Phenomenology +0803.0808 +0803.0809 Phenomenology +0803.0813 Phenomenology +0803.0815 Phenomenology +0803.0827 Theory +0803.0834 +0803.0861 Theory +0803.0887 Phenomenology +0803.0889 +0803.0915 +0803.0920 +0803.0943 Theory +0803.0960 Phenomenology +0803.0979 Phenomenology +0803.0995 +0803.0996 Phenomenology +0803.1004 Differential Geometry +0803.1031 +0803.1052 +0803.1057 Phenomenology +0803.1071 +0803.1073 Phenomenology +0803.1086 Theory +0803.1092 Lattice +0803.1106 +0803.1125 Other Condensed Matter +0803.1143 Phenomenology +0803.1153 Theory +0803.1160 Phenomenology +0803.1161 +0803.1180 Phenomenology +0803.1203 Theory +0803.1231 Phenomenology +0803.1262 +0803.1280 +0803.1295 Phenomenology +0803.1300 +0803.1307 +0803.1311 Theory +0803.1338 Theory +0803.1356 Phenomenology +0803.1366 +0803.1369 Theory +0803.1392 Phenomenology +0803.1400 Phenomenology +0803.1401 +0803.1410 +0803.1414 Phenomenology +0803.1422 Phenomenology +0803.1423 Phenomenology +0803.1458 Theory +0803.1465 Theory +0803.1468 +0803.1470 Theory +0803.1475 Theory +0803.1485 +0803.1490 +0803.1494 Theory +0803.1501 Theory +0803.1513 Phenomenology +0803.1514 Experiment +0803.1534 Experiment +0803.1537 Phenomenology +0803.1540 +0803.1547 Theory +0803.1551 Theory +0803.1562 Theory +0803.1565 Theory +0803.1566 Theory +0803.1569 +0803.1583 History and Philosophy of Physics +0803.1588 Phenomenology +0803.1603 Theory +0803.1608 Phenomenology +0803.1616 +0803.1617 Experiment +0803.1620 +0803.1629 +0803.1663 Theory +0803.1667 Theory +0803.1692 Phenomenology +0803.1701 Phenomenology +0803.1704 +0803.1707 Lattice +0803.1727 Phenomenology +0803.1741 Theory +0803.1742 Theory +0803.1744 Phenomenology +0803.1755 +0803.1758 Phenomenology +0803.1776 Theory +0803.1786 Phenomenology +0803.1790 Phenomenology +0803.1798 Lattice +0803.1801 Theory +0803.1820 +0803.1836 Theory +0803.1880 Theory +0803.1882 Phenomenology +0803.1898 Phenomenology +0803.1902 Phenomenology +0803.1915 +0803.1929 +0803.1940 Phenomenology +0803.1941 Phenomenology +0803.1949 Theory +0803.1980 +0803.1989 Phenomenology +0803.2018 +0803.2019 Theory +0803.2035 Theory +0803.2075 +0803.2102 Phenomenology +0803.2106 Phenomenology +0803.2109 Phenomenology +0803.2137 Experiment +0803.2158 Experiment +0803.2164 Phenomenology +0803.2170 Theory +0803.2186 Phenomenology +0803.2191 Phenomenology +0803.2194 +0803.2195 Instrumentation and Detectors +0803.2216 Lattice +0803.2218 Phenomenology +0803.2224 Phenomenology +0803.2236 +0803.2238 +0803.2246 Theory +0803.2259 Experiment +0803.2263 Experiment +0803.2267 +0803.2276 Phenomenology +0803.2278 Phenomenology +0803.2288 +0803.2291 +0803.2307 Lattice +0803.2309 +0803.2318 +0803.2324 Theory +0803.2340 Phenomenology +0803.2347 Phenomenology +0803.2348 +0803.2377 +0803.2385 Phenomenology +0803.2398 +0803.2407 +0803.2409 Theory +0803.2413 Theory +0803.2421 Phenomenology +0803.2422 Phenomenology +0803.2431 Theory +0803.2438 Theory +0803.2449 +0803.2451 Lattice +0803.2476 Experiment +0803.2500 +0803.2518 Theory +0803.2530 +0803.2550 +0803.2553 Theory +0803.2569 Lattice +0803.2577 Theory +0803.2598 Phenomenology +0803.2603 Phenomenology +0803.2604 Phenomenology +0803.2613 Theory +0803.2626 Phenomenology +0803.2630 Theory +0803.2632 Phenomenology +0803.2638 Theory +0803.2640 Phenomenology +0803.2642 +0803.2652 Statistical Mechanics +0803.2657 +0803.2659 Theory +0803.2661 Phenomenology +0803.2664 Phenomenology +0803.2671 +0803.2673 +0803.2686 +0803.2707 +0803.2729 Phenomenology +0803.2738 +0803.2742 +0803.2743 Theory +0803.2744 Lattice +0803.2760 +0803.2775 Phenomenology +0803.2779 Experiment +0803.2807 +0803.2819 Theory +0803.2823 +0803.2835 Phenomenology +0803.2855 +0803.2858 +0803.2867 Theory +0803.2888 Instrumentation and Detectors +0803.2889 Phenomenology +0803.2894 Lattice +0803.2899 +0803.2910 Phenomenology +0803.2911 +0803.2915 +0803.2932 Phenomenology +0803.2946 Theory +0803.2956 Phenomenology +0803.2962 Phenomenology +0803.2992 Phenomenology +0803.2993 Experiment +0803.2998 Theory +0803.3011 Phenomenology +0803.3034 Phenomenology +0803.3035 Theory +0803.3037 Theory +0803.3041 Theory +0803.3065 Phenomenology +0803.3085 Theory +0803.3100 Phenomenology +0803.3101 Phenomenology +0803.3103 +0803.3121 Lattice +0803.3146 Phenomenology +0803.3149 Theory +0803.3156 Phenomenology +0803.3162 +0803.3171 Lattice +0803.3190 Lattice +0803.3210 +0803.3229 Phenomenology +0803.3233 +0803.3234 +0803.3248 Theory +0803.3256 Experiment +0803.3257 Phenomenology +0803.3258 +0803.3259 +0803.3272 Theory +0803.3280 Theory +0803.3289 +0803.3292 +0803.3295 Theory +0803.3320 Theory +0803.3336 +0803.3362 +0803.3366 +0803.3376 Theory +0803.3384 Theory +0803.3385 Theory +0803.3389 Phenomenology +0803.3399 +0803.3420 Theory +0803.3421 Theory +0803.3423 Experiment +0803.3433 +0803.3447 +0803.3475 Theory +0803.3479 Phenomenology +0803.3492 Theory +0803.3505 Exactly Solvable and Integrable Systems +0803.3512 Atomic Physics +0803.3517 Phenomenology +0803.3524 Phenomenology +0803.3528 Phenomenology +0803.3538 Strongly Correlated Electrons +0803.3582 Phenomenology +0803.3602 History and Philosophy of Physics +0803.3611 Theory +0803.3633 Phenomenology +0803.3659 +0803.3661 +0803.3672 Phenomenology +0803.3680 Theory +0803.3684 +0803.3696 Phenomenology +0803.3701 +0803.3724 Phenomenology +0803.3725 Phenomenology +0803.3752 Phenomenology +0803.3762 +0803.3768 Theory +0803.3770 +0803.3795 Phenomenology +0803.3801 Theory +0803.3803 Theory +0803.3804 +0803.3809 Phenomenology +0803.3810 Phenomenology +0803.3822 Strongly Correlated Electrons +0803.3827 +0803.3832 Theory +0803.3833 Theory +0803.3855 Theory +0803.3927 +0803.3936 +0803.3940 Phenomenology +0803.3964 Phenomenology +0803.3965 Theory +0803.3970 Theory +0803.4000 +0803.4005 Phenomenology +0803.4008 Phenomenology +0803.4012 +0803.4068 +0803.4094 +0803.4103 +0803.4106 +0803.4119 Phenomenology +0803.4132 Phenomenology +0803.4134 Phenomenology +0803.4139 Phenomenology +0803.4141 Lattice +0803.4163 Theory +0803.4170 Instrumentation and Detectors +0803.4172 Other Condensed Matter +0803.4173 Phenomenology +0803.4177 Phenomenology +0803.4180 Phenomenology +0803.4190 +0803.4192 Theory +0803.4193 +0803.4194 +0803.4207 Phenomenology +0803.4212 Theory +0803.4214 Phenomenology +0803.4222 Theory +0803.4257 Theory +0803.4267 Phenomenology +0803.4270 Phenomenology +0803.4273 Theory +0803.4278 +0803.4295 +0803.4309 +0803.4312 Experiment +0803.4313 Phenomenology +0803.4318 Phenomenology +0803.4323 Theory +0803.4325 Theory +0803.4330 Phenomenology +0803.4333 Theory +0803.4340 Phenomenology +0803.4351 Theory +0803.4360 Phenomenology +0803.4362 +0803.4369 +0803.4375 +0803.4380 Phenomenology +0803.4405 Phenomenology +0803.4420 Phenomenology +0803.4427 Mesoscale and Nanoscale Physics +0803.4431 +0803.4445 Theory +0803.4446 +0803.4449 +0803.4459 +0803.4460 Phenomenology +0803.4472 Theory +0803.4482 +0803.4484 +0803.4492 Phenomenology +0803.4493 Phenomenology +0803.4497 Theory +0803.4501 Phenomenology +0804.0033 Phenomenology +0804.0039 General Physics +0804.0055 Theory +0804.0067 +0804.0075 Phenomenology +0804.0081 Phenomenology +0804.0084 +0804.0106 Phenomenology +0804.0124 Phenomenology +0804.0130 +0804.0131 Theory +0804.0163 +0804.0166 Phenomenology +0804.0169 +0804.0184 Theory +0804.0187 Theory +0804.0198 Theory +0804.0200 Theory +0804.0203 Phenomenology +0804.0205 +0804.0214 Phenomenology +0804.0229 Theory +0804.0231 Theory +0804.0232 +0804.0244 Theory +0804.0252 Theory +0804.0255 Phenomenology +0804.0268 Phenomenology +0804.0276 Plasma Physics +0804.0295 Theory +0804.0297 Theory +0804.0300 Lattice +0804.0301 +0804.0314 Theory +0804.0328 +0804.0329 Theory +0804.0359 Phenomenology +0804.0360 +0804.0373 +0804.0383 Theory +0804.0391 +0804.0422 Phenomenology +0804.0423 Phenomenology +0804.0431 Theory +0804.0434 Theory +0804.0452 Phenomenology +0804.0454 Phenomenology +0804.0457 Theory +0804.0476 Phenomenology +0804.0513 Theory +0804.0527 +0804.0541 +0804.0555 +0804.0568 Theory +0804.0572 +0804.0584 Theory +0804.0592 Phenomenology +0804.0594 +0804.0608 Theory +0804.0616 +0804.0647 Experiment +0804.0652 Theory +0804.0654 Theory +0804.0656 +0804.0661 +0804.0717 Phenomenology +0804.0752 Phenomenology +0804.0769 Theory +0804.0770 Theory +0804.0772 +0804.0778 Theory +0804.0791 Theory +0804.0799 +0804.0801 Phenomenology +0804.0831 Experiment +0804.0833 +0804.0841 +0804.0861 +0804.0903 +0804.0945 Theory +0804.0951 Theory +0804.0956 +0804.0963 Theory +0804.0968 +0804.0979 Phenomenology +0804.0993 Phenomenology +0804.1019 Theory +0804.1072 Theory +0804.1084 +0804.1087 Theory +0804.1097 +0804.1105 +0804.1107 Experiment +0804.1112 Phenomenology +0804.1114 Theory +0804.1129 +0804.1142 Phenomenology +0804.1145 Lattice +0804.1151 +0804.1152 Theory +0804.1156 Theory +0804.1169 +0804.1198 +0804.1204 Phenomenology +0804.1209 +0804.1210 Phenomenology +0804.1211 Theory +0804.1231 Phenomenology +0804.1234 Exactly Solvable and Integrable Systems +0804.1237 Phenomenology +0804.1241 Theory +0804.1259 Theory +0804.1260 +0804.1265 Phenomenology +0804.1283 Statistical Mechanics +0804.1326 Theory +0804.1328 +0804.1343 Theory +0804.1352 +0804.1356 Phenomenology +0804.1373 Phenomenology +0804.1402 Lattice +0804.1410 +0804.1417 Phenomenology +0804.1452 Phenomenology +0804.1454 Experiment +0804.1455 +0804.1469 Phenomenology +0804.1476 Phenomenology +0804.1484 Phenomenology +0804.1505 Theory +0804.1531 +0804.1534 Lattice +0804.1541 Theory +0804.1557 Lattice +0804.1560 +0804.1566 Theory +0804.1572 Phenomenology +0804.1585 Theory +0804.1591 Theory +0804.1623 +0804.1686 +0804.1723 Theory +0804.1738 Theory +0804.1749 +0804.1775 +0804.1779 Phenomenology +0804.1782 Fluid Dynamics +0804.1787 +0804.1789 +0804.1797 +0804.1832 Theory +0804.1835 Theory +0804.1844 +0804.1860 +0804.1867 Theory +0804.1876 Theory +0804.1877 Lattice +0804.1899 +0804.1907 Phenomenology +0804.1914 Theory +0804.1920 Theory +0804.1934 +0804.1950 Theory +0804.2013 Phenomenology +0804.2019 +0804.2042 Phenomenology +0804.2063 Experiment +0804.2065 +0804.2066 Theory +0804.2079 Theory +0804.2083 Plasma Physics +0804.2084 Theory +0804.2090 Phenomenology +0804.2108 Phenomenology +0804.2127 +0804.2140 Phenomenology +0804.2160 +0804.2182 Theory +0804.2185 Phenomenology +0804.2196 +0804.2199 +0804.2201 Theory +0804.2204 Phenomenology +0804.2220 Phenomenology +0804.2261 Phenomenology +0804.2262 Theory +0804.2289 Theory +0804.2295 Phenomenology +0804.2298 Experiment +0804.2338 Phenomenology +0804.2351 +0804.2353 Theory +0804.2364 Phenomenology +0804.2370 Phenomenology +0804.2371 Lattice +0804.2381 Phenomenology +0804.2408 Phenomenology +0804.2423 Theory +0804.2424 Phenomenology +0804.2427 +0804.2452 Phenomenology +0804.2459 +0804.2471 +0804.2477 Phenomenology +0804.2502 +0804.2507 Phenomenology +0804.2510 Phenomenology +0804.2519 Theory +0804.2530 Phenomenology +0804.2541 +0804.2570 +0804.2573 Phenomenology +0804.2579 +0804.2601 Phenomenology +0804.2603 +0804.2617 Theory +0804.2618 Phenomenology +0804.2622 Phenomenology +0804.2627 Theory +0804.2632 Phenomenology +0804.2635 +0804.2640 +0804.2643 Phenomenology +0804.2652 Phenomenology +0804.2711 Lattice +0804.2741 +0804.2744 Phenomenology +0804.2756 Experiment +0804.2764 Theory +0804.2768 Phenomenology +0804.2813 +0804.2823 +0804.2838 Phenomenology +0804.2857 Theory +0804.2865 Phenomenology +0804.2884 +0804.2890 +0804.2899 Phenomenology +0804.2922 +0804.2936 Theory +0804.2941 Lattice +0804.2957 Phenomenology +0804.2961 Theory +0804.3007 Phenomenology +0804.3008 Phenomenology +0804.3013 Experiment +0804.3024 Phenomenology +0804.3027 +0804.3038 +0804.3047 Phenomenology +0804.3066 Theory +0804.3075 +0804.3092 +0804.3098 +0804.3102 Phenomenology +0804.3124 +0804.3139 Theory +0804.3147 +0804.3161 Theory +0804.3182 Phenomenology +0804.3185 Phenomenology +0804.3233 +0804.3246 Theory +0804.3247 +0804.3251 Experiment +0804.3268 Theory +0804.3274 +0804.3285 +0804.3322 +0804.3341 Theory +0804.3344 Phenomenology +0804.3345 Phenomenology +0804.3352 +0804.3380 +0804.3383 Lattice +0804.3394 +0804.3402 +0804.3414 Phenomenology +0804.3443 Statistical Mechanics +0804.3446 Theory +0804.3449 +0804.3450 Phenomenology +0804.3458 Theory +0804.3466 Theory +0804.3476 +0804.3479 Phenomenology +0804.3504 Phenomenology +0804.3512 Phenomenology +0804.3519 Theory +0804.3520 +0804.3525 +0804.3528 +0804.3537 Theory +0804.3560 Phenomenology +0804.3565 Theory +0804.3566 Theory +0804.3567 Theory +0804.3588 Theory +0804.3592 Theory +0804.3601 Phenomenology +0804.3608 +0804.3654 Lattice +0804.3656 Experiment +0804.3661 Phenomenology +0804.3664 Experiment +0804.3679 +0804.3685 Theory +0804.3693 +0804.3695 +0804.3702 +0804.3711 Theory +0804.3721 Theory +0804.3722 +0804.3730 Theory +0804.3736 Experiment +0804.3763 +0804.3773 +0804.3777 Phenomenology +0804.3786 Phenomenology +0804.3787 +0804.3804 +0804.3805 Phenomenology +0804.3815 +0804.3834 Phenomenology +0804.3849 +0804.3865 +0804.3892 +0804.3910 Theory +0804.3913 Theory +0804.3929 Lattice +0804.3931 Theory +0804.3933 Phenomenology +0804.3949 Phenomenology +0804.3952 +0804.3972 Theory +0804.3978 Phenomenology +0804.3990 Phenomenology +0804.3993 +0804.4004 Phenomenology +0804.4017 Phenomenology +0804.4029 +0804.4044 Phenomenology +0804.4051 Phenomenology +0804.4053 Theory +0804.4066 Theory +0804.4072 Phenomenology +0804.4088 +0804.4091 +0804.4092 +0804.4096 Theory +0804.4102 +0804.4104 +0804.4112 +0804.4119 Phenomenology +0804.4128 +0804.4131 +0804.4144 +0804.4146 Experiment +0804.4148 Lattice +0804.4158 Phenomenology +0804.4192 Phenomenology +0804.4224 +0804.4232 Phenomenology +0804.4254 +0804.4260 Instrumentation and Detectors +0804.4269 Instrumentation and Detectors +0804.4270 +0804.4291 Theory +0804.4296 +0804.4297 +0804.4300 Theory +0804.4309 +0804.4319 +0804.4320 Phenomenology +0804.4330 Phenomenology +0804.4331 +0804.4335 Theory +0804.4337 Phenomenology +0804.4339 +0804.4346 +0804.4348 +0804.4352 +0804.4363 +0804.4386 +0804.4400 Theory +0804.4402 +0804.4407 +0804.4408 Phenomenology +0804.4414 Theory +0804.4417 +0804.4418 Theory +0804.4424 Phenomenology +0804.4448 +0804.4450 Theory +0804.4452 Phenomenology +0804.4460 Phenomenology +0804.4470 Theory +0804.4493 Phenomenology +0804.4501 Theory +0804.4504 +0804.4518 Phenomenology +0804.4542 Phenomenology +0804.4557 Phenomenology +0804.4558 +0804.4562 +0804.4577 Experiment +0804.4581 Phenomenology +0804.4601 +0804.4604 Phenomenology +0804.4608 Phenomenology +0804.4619 Theory +0804.4620 Phenomenology +0804.4643 +0804.4660 +0804.4661 +0804.4670 +0804.4696 +0804.4711 Phenomenology +0804.4718 Phenomenology +0804.4742 +0804.4743 +0804.4760 +0804.4773 +0804.4784 +0804.4786 Theory +0804.4793 Theory +0804.4801 +0804.4806 History and Philosophy of Physics +0804.4807 Theory +0804.4825 +0804.4827 +0804.4841 +0804.4846 +0804.4864 +0804.4888 +0804.4893 Phenomenology +0804.4897 Phenomenology +0805.0011 Theory +0805.0015 Instrumentation and Detectors +0805.0047 Theory +0805.0060 Phenomenology +0805.0064 +0805.0079 Theory +0805.0081 +0805.0097 Phenomenology +0805.0098 +0805.0102 +0805.0136 +0805.0143 Phenomenology +0805.0145 Phenomenology +0805.0153 +0805.0160 +0805.0170 Phenomenology +0805.0186 Experiment +0805.0187 +0805.0199 Phenomenology +0805.0207 Theory +0805.0208 +0805.0211 Theory +0805.0213 Phenomenology +0805.0216 Phenomenology +0805.0236 Lattice +0805.0253 Phenomenology +0805.0271 Phenomenology +0805.0281 Phenomenology +0805.0282 +0805.0287 Theory +0805.0290 Instrumentation and Detectors +0805.0318 Phenomenology +0805.0325 Phenomenology +0805.0354 Phenomenology +0805.0372 Theory +0805.0385 Phenomenology +0805.0388 Theory +0805.0416 Phenomenology +0805.0424 Theory +0805.0431 Phenomenology +0805.0442 Phenomenology +0805.0453 Theory +0805.0471 Phenomenology +0805.0479 Phenomenology +0805.0519 +0805.0536 Superconductivity +0805.0543 Popular Physics +0805.0546 Theory +0805.0548 Theory +0805.0558 +0805.0608 +0805.0626 Theory +0805.0627 Phenomenology +0805.0636 Theory +0805.0653 Phenomenology +0805.0665 Theory +0805.0707 Phenomenology +0805.0710 Phenomenology +0805.0717 Phenomenology +0805.0731 +0805.0734 +0805.0737 +0805.0760 Phenomenology +0805.0763 +0805.0780 +0805.0781 Phenomenology +0805.0784 Phenomenology +0805.0805 +0805.0809 +0805.0838 Theory +0805.0870 Theory +0805.0971 Phenomenology +0805.0973 Phenomenology +0805.0993 Phenomenology +0805.0997 Phenomenology +0805.1004 Theory +0805.1005 +0805.1049 Phenomenology +0805.1093 +0805.1122 Phenomenology +0805.1125 +0805.1149 Theory +0805.1159 Theory +0805.1160 +0805.1174 Lattice +0805.1187 +0805.1192 +0805.1194 Theory +0805.1212 +0805.1224 +0805.1225 +0805.1229 Theory +0805.1265 Theory +0805.1271 Plasma Physics +0805.1298 +0805.1310 Theory +0805.1332 +0805.1337 Phenomenology +0805.1350 Lattice +0805.1351 +0805.1352 +0805.1379 Phenomenology +0805.1384 Phenomenology +0805.1410 Theory +0805.1451 +0805.1461 Theory +0805.1471 +0805.1474 Phenomenology +0805.1484 Phenomenology +0805.1499 Instrumentation and Detectors +0805.1503 Phenomenology +0805.1504 Instrumentation and Detectors +0805.1506 Experiment +0805.1509 Phenomenology +0805.1551 Theory +0805.1562 +0805.1585 Statistical Mechanics +0805.1601 Phenomenology +0805.1603 Phenomenology +0805.1613 Phenomenology +0805.1615 Phenomenology +0805.1636 +0805.1647 Phenomenology +0805.1677 Phenomenology +0805.1684 Phenomenology +0805.1704 Phenomenology +0805.1718 +0805.1719 Phenomenology +0805.1735 Phenomenology +0805.1736 Phenomenology +0805.1756 +0805.1799 +0805.1816 Phenomenology +0805.1858 +0805.1874 Theory +0805.1885 Phenomenology +0805.1895 Theory +0805.1902 Theory +0805.1903 +0805.1908 +0805.1912 +0805.1951 +0805.1963 Phenomenology +0805.1965 Phenomenology +0805.1982 Theory +0805.1998 +0805.1999 +0805.2010 +0805.2019 Phenomenology +0805.2024 Theory +0805.2098 Phenomenology +0805.2107 Phenomenology +0805.2113 Phenomenology +0805.2124 +0805.2129 Phenomenology +0805.2142 +0805.2145 +0805.2146 Lattice +0805.2155 +0805.2191 +0805.2237 Phenomenology +0805.2250 +0805.2271 Instrumentation and Detectors +0805.2283 Theory +0805.2289 Phenomenology +0805.2301 Phenomenology +0805.2318 +0805.2343 Phenomenology +0805.2344 +0805.2347 Theory +0805.2353 Theory +0805.2369 Lattice +0805.2380 Theory +0805.2385 +0805.2387 +0805.2390 +0805.2391 Theory +0805.2398 Phenomenology +0805.2412 +0805.2430 Theory +0805.2439 Phenomenology +0805.2442 Phenomenology +0805.2454 +0805.2459 Instrumentation and Detectors +0805.2513 +0805.2531 +0805.2536 +0805.2553 +0805.2554 Phenomenology +0805.2583 Phenomenology +0805.2598 Complex Variables +0805.2623 Phenomenology +0805.2634 +0805.2637 Accelerator Physics +0805.2650 Phenomenology +0805.2667 +0805.2683 Theory +0805.2687 Phenomenology +0805.2734 Phenomenology +0805.2738 Theory +0805.2754 +0805.2763 Theory +0805.2774 +0805.2780 Experiment +0805.2795 +0805.2800 Theory +0805.2802 Phenomenology +0805.2806 Phenomenology +0805.2813 +0805.2833 Phenomenology +0805.2837 Theory +0805.2866 Lattice +0805.2889 Experiment +0805.2916 Phenomenology +0805.2922 Theory +0805.2927 Theory +0805.2939 +0805.2966 +0805.2982 Theory +0805.2988 Phenomenology +0805.2991 Theory +0805.2997 +0805.2999 Lattice +0805.3017 +0805.3036 Experiment +0805.3046 +0805.3067 Phenomenology +0805.3089 +0805.3103 +0805.3110 Experiment +0805.3115 +0805.3133 +0805.3144 Phenomenology +0805.3146 +0805.3147 Theory +0805.3157 Theory +0805.3175 +0805.3225 Experiment +0805.3233 Theory +0805.3271 +0805.3276 Theory +0805.3278 Theory +0805.3291 Phenomenology +0805.3300 Phenomenology +0805.3301 +0805.3318 +0805.3327 Phenomenology +0805.3329 +0805.3351 Theory +0805.3373 Theory +0805.3401 +0805.3419 +0805.3428 +0805.3447 Theory +0805.3467 Phenomenology +0805.3480 Theory +0805.3486 Phenomenology +0805.3488 Theory +0805.3491 +0805.3514 +0805.3558 Theory +0805.3560 Experiment +0805.3570 +0805.3590 Phenomenology +0805.3627 +0805.3641 +0805.3653 Phenomenology +0805.3655 +0805.3687 Phenomenology +0805.3705 Theory +0805.3720 Phenomenology +0805.3744 Theory +0805.3752 +0805.3773 Experiment +0805.3804 Phenomenology +0805.3805 +0805.3818 Theory +0805.3844 Phenomenology +0805.3871 Experiment +0805.3873 +0805.3876 Phenomenology +0805.3879 Theory +0805.3887 Phenomenology +0805.3895 +0805.3911 Phenomenology +0805.3953 Phenomenology +0805.3969 +0805.3978 +0805.3989 Phenomenology +0805.3993 Phenomenology +0805.4003 Theory +0805.4006 Phenomenology +0805.4013 +0805.4038 Theory +0805.4039 +0805.4042 Materials Science +0805.4051 Experiment +0805.4052 Theory +0805.4066 Experiment +0805.4079 +0805.4088 Phenomenology +0805.4099 +0805.4110 Theory +0805.4119 Phenomenology +0805.4145 Theory +0805.4153 +0805.4156 +0805.4158 +0805.4178 +0805.4179 +0805.4194 Theory +0805.4202 Phenomenology +0805.4255 Mesoscale and Nanoscale Physics +0805.4259 +0805.4267 Phenomenology +0805.4277 +0805.4287 +0805.4292 Phenomenology +0805.4318 +0805.4368 Phenomenology +0805.4383 +0805.4384 Theory +0805.4400 +0805.4409 Theory +0805.4443 Theory +0805.4446 +0805.4450 Lattice +0805.4464 Theory +0805.4466 +0805.4478 Phenomenology +0805.4485 +0805.4505 +0805.4515 Theory +0805.4534 Phenomenology +0805.4538 +0805.4552 Phenomenology +0805.4577 Theory +0805.4601 Phenomenology +0805.4613 Phenomenology +0805.4627 Lattice +0805.4644 +0805.4667 Phenomenology +0805.4672 Experiment +0805.4677 Phenomenology +0805.4688 +0805.4702 +0805.4719 Theory +0805.4724 Theory +0805.4769 +0805.4780 +0805.4781 +0805.4787 +0805.4802 Phenomenology +0805.4812 +0805.4821 Phenomenology +0805.4828 +0806.0003 Phenomenology +0806.0007 +0806.0013 Lattice +0806.0023 Phenomenology +0806.0030 Theory +0806.0046 Phenomenology +0806.0048 Phenomenology +0806.0076 Theory +0806.0079 +0806.0133 +0806.0149 Theory +0806.0152 Theory +0806.0155 Theory +0806.0179 Phenomenology +0806.0190 Theory +0806.0218 +0806.0223 Instrumentation and Detectors +0806.0242 Phenomenology +0806.0285 +0806.0290 Phenomenology +0806.0292 Phenomenology +0806.0293 +0806.0296 +0806.0301 Experiment +0806.0305 Phenomenology +0806.0329 Strongly Correlated Electrons +0806.0331 +0806.0352 +0806.0359 Theory +0806.0367 Theory +0806.0386 Phenomenology +0806.0418 Phenomenology +0806.0446 +0806.0447 +0806.0457 +0806.0475 +0806.0499 Phenomenology +0806.0504 +0806.0536 Theory +0806.0551 +0806.0555 Theory +0806.0568 Theory +0806.0583 Phenomenology +0806.0590 Phenomenology +0806.0595 +0806.0610 Phenomenology +0806.0648 +0806.0660 Theory +0806.0665 +0806.0667 Phenomenology +0806.0670 Phenomenology +0806.0672 Phenomenology +0806.0679 +0806.0692 Phenomenology +0806.0713 +0806.0717 Phenomenology +0806.0742 +0806.0745 +0806.0758 Theory +0806.0759 +0806.0766 +0806.0771 +0806.0788 Theory +0806.0807 Experiment +0806.0808 Phenomenology +0806.0845 +0806.0846 Mesoscale and Nanoscale Physics +0806.0848 Phenomenology +0806.0859 +0806.0864 Optimization and Control +0806.0883 Experiment +0806.0886 +0806.0943 Phenomenology +0806.0946 Experiment +0806.0997 Phenomenology +0806.1018 +0806.1080 Theory +0806.1098 Phenomenology +0806.1119 Theory +0806.1135 +0806.1181 +0806.1184 Phenomenology +0806.1187 Lattice +0806.1191 +0806.1194 +0806.1197 Theory +0806.1240 Phenomenology +0806.1254 Phenomenology +0806.1270 +0806.1274 +0806.1310 Theory +0806.1332 +0806.1356 Phenomenology +0806.1367 +0806.1375 Phenomenology +0806.1396 +0806.1399 +0806.1447 Phenomenology +0806.1454 Phenomenology +0806.1467 Phenomenology +0806.1498 Phenomenology +0806.1516 Phenomenology +0806.1535 Theory +0806.1614 Theory +0806.1629 Theory +0806.1651 Theory +0806.1669 Phenomenology +0806.1677 +0806.1681 Theory +0806.1695 +0806.1718 +0806.1726 Theory +0806.1738 +0806.1742 +0806.1751 Phenomenology +0806.1883 Theory +0806.1914 +0806.1932 Phenomenology +0806.1937 +0806.1944 Theory +0806.1962 Phenomenology +0806.1970 Phenomenology +0806.1977 Phenomenology +0806.1983 +0806.1989 +0806.1996 Theory +0806.2018 +0806.2041 Theory +0806.2064 Phenomenology +0806.2087 Phenomenology +0806.2095 Theory +0806.2097 +0806.2103 Theory +0806.2116 +0806.2121 +0806.2129 +0806.2141 Theory +0806.2143 Phenomenology +0806.2150 Phenomenology +0806.2184 +0806.2190 +0806.2200 Phenomenology +0806.2209 +0806.2212 Theory +0806.2213 Phenomenology +0806.2223 Experiment +0806.2247 Phenomenology +0806.2254 +0806.2255 +0806.2267 Phenomenology +0806.2268 +0806.2269 Phenomenology +0806.2270 Theory +0806.2273 +0806.2278 Lattice +0806.2307 +0806.2309 Theory +0806.2312 Lattice +0806.2328 Theory +0806.2338 Experiment +0806.2365 +0806.2388 Theory +0806.2415 +0806.2422 Phenomenology +0806.2441 Theory +0806.2462 +0806.2463 +0806.2464 +0806.2466 Theory +0806.2489 +0806.2494 +0806.2505 +0806.2510 Phenomenology +0806.2554 Phenomenology +0806.2558 Phenomenology +0806.2571 +0806.2584 Theory +0806.2593 +0806.2595 Accelerator Physics +0806.2602 Statistical Mechanics +0806.2614 +0806.2618 Phenomenology +0806.2623 Theory +0806.2631 Experiment +0806.2668 Other Condensed Matter +0806.2687 +0806.2706 +0806.2716 +0806.2757 +0806.2767 +0806.2791 Theory +0806.2798 Phenomenology +0806.2799 Statistical Mechanics +0806.2804 +0806.2813 +0806.2821 +0806.2834 +0806.2857 +0806.2864 Phenomenology +0806.2880 Theory +0806.2945 +0806.2966 +0806.2986 Phenomenology +0806.2993 Phenomenology +0806.3025 +0806.3039 Theory +0806.3047 Phenomenology +0806.3052 +0806.3070 Theory +0806.3082 +0806.3083 Theory +0806.3102 Theory +0806.3111 Theory +0806.3118 Theory +0806.3166 Phenomenology +0806.3200 Theory +0806.3207 Theory +0806.3224 Phenomenology +0806.3225 Phenomenology +0806.3259 Phenomenology +0806.3264 Lattice +0806.3266 Phenomenology +0806.3282 Phenomenology +0806.3307 Phenomenology +0806.3333 Phenomenology +0806.3348 Theory +0806.3358 Theory +0806.3360 Phenomenology +0806.3361 Phenomenology +0806.3374 Phenomenology +0806.3381 Phenomenology +0806.3397 +0806.3405 Phenomenology +0806.3414 Phenomenology +0806.3454 Phenomenology +0806.3465 +0806.3478 +0806.3488 +0806.3497 +0806.3504 +0806.3505 Theory +0806.3506 Lattice +0806.3513 Theory +0806.3515 Theory +0806.3529 +0806.3535 Experiment +0806.3540 Superconductivity +0806.3548 Theory +0806.3554 Lattice +0806.3584 Phenomenology +0806.3613 +0806.3624 Phenomenology +0806.3648 Phenomenology +0806.3672 Phenomenology +0806.3675 Theory +0806.3678 Phenomenology +0806.3679 Phenomenology +0806.3735 +0806.3762 Theory +0806.3778 Phenomenology +0806.3786 +0806.3818 Theory +0806.3837 Phenomenology +0806.3857 +0806.3870 +0806.3880 Phenomenology +0806.3890 Theory +0806.3922 Phenomenology +0806.3929 +0806.3953 Strongly Correlated Electrons +0806.3961 +0806.3977 +0806.4044 Theory +0806.4059 +0806.4068 Theory +0806.4075 Phenomenology +0806.4080 Phenomenology +0806.4099 Phenomenology +0806.4100 +0806.4102 +0806.4118 Phenomenology +0806.4175 Theory +0806.4212 Theory +0806.4219 Lattice +0806.4281 +0806.4285 +0806.4296 +0806.4304 Phenomenology +0806.4307 Phenomenology +0806.4317 Phenomenology +0806.4319 +0806.4322 Phenomenology +0806.4340 +0806.4348 Theory +0806.4351 Phenomenology +0806.4355 Theory +0806.4365 Theory +0806.4366 +0806.4370 Theory +0806.4371 Lattice +0806.4412 +0806.4417 +0806.4434 +0806.4435 Phenomenology +0806.4442 +0806.4443 +0806.4459 +0806.4489 +0806.4555 Phenomenology +0806.4558 Theory +0806.4574 +0806.4575 +0806.4586 Lattice +0806.4601 Phenomenology +0806.4605 Phenomenology +0806.4661 Phenomenology +0806.4665 Phenomenology +0806.4710 +0806.4715 Theory +0806.4733 Theory +0806.4747 Phenomenology +0806.4765 +0806.4791 +0806.4794 Theory +0806.4799 Phenomenology +0806.4800 Theory +0806.4825 +0806.4835 +0806.4862 Theory +0806.4871 +0806.4883 +0806.4886 Phenomenology +0806.4900 Theory +0806.4905 Phenomenology +0806.4909 Phenomenology +0806.4914 +0806.4926 Phenomenology +0806.4945 Experiment +0806.4948 Theory +0806.4957 Phenomenology +0806.4974 Instrumentation and Detectors +0807.0011 Phenomenology +0807.0041 Space Physics +0807.0047 Theory +0807.0050 Theory +0807.0066 Phenomenology +0807.0077 Theory +0807.0082 +0807.0102 Phenomenology +0807.0132 Phenomenology +0807.0174 Phenomenology +0807.0200 +0807.0202 Phenomenology +0807.0211 Phenomenology +0807.0214 +0807.0270 Phenomenology +0807.0278 Phenomenology +0807.0294 +0807.0315 +0807.0329 +0807.0345 Lattice +0807.0347 +0807.0353 +0807.0394 Phenomenology +0807.0401 +0807.0424 +0807.0477 +0807.0478 +0807.0480 Theory +0807.0481 Phenomenology +0807.0490 Phenomenology +0807.0503 Phenomenology +0807.0513 Theory +0807.0515 Phenomenology +0807.0524 +0807.0586 Theory +0807.0611 +0807.0622 +0807.0637 Phenomenology +0807.0659 +0807.0665 +0807.0669 Phenomenology +0807.0679 +0807.0708 Phenomenology +0807.0734 +0807.0743 Phenomenology +0807.0754 Theory +0807.0787 Theory +0807.0789 Theory +0807.0802 Theory +0807.0808 Theory +0807.0812 Theory +0807.0825 Theory +0807.0828 Phenomenology +0807.0829 Theory +0807.0851 Phenomenology +0807.0855 Lattice +0807.0873 +0807.0885 +0807.0896 Phenomenology +0807.0915 Phenomenology +0807.0923 Theory +0807.0969 +0807.0975 Phenomenology +0807.0976 Phenomenology +0807.0994 Phenomenology +0807.1008 Phenomenology +0807.1046 Theory +0807.1074 Theory +0807.1080 Phenomenology +0807.1082 Phenomenology +0807.1117 Phenomenology +0807.1125 Experiment +0807.1128 Mesoscale and Nanoscale Physics +0807.1172 Pattern Formation and Solitons +0807.1178 +0807.1179 +0807.1195 Theory +0807.1223 Phenomenology +0807.1232 Theory +0807.1238 Phenomenology +0807.1245 Phenomenology +0807.1252 Phenomenology +0807.1275 Lattice +0807.1284 Phenomenology +0807.1293 Theory +0807.1299 Experiment +0807.1315 Theory +0807.1358 Theory +0807.1390 Lattice +0807.1449 Phenomenology +0807.1453 Phenomenology +0807.1495 Theory +0807.1500 Theory +0807.1504 +0807.1509 +0807.1536 Instrumentation and Detectors +0807.1567 Theory +0807.1587 Phenomenology +0807.1605 Phenomenology +0807.1613 +0807.1634 Phenomenology +0807.1646 Phenomenology +0807.1680 Phenomenology +0807.1729 Phenomenology +0807.1755 Phenomenology +0807.1767 General Physics +0807.1822 Phenomenology +0807.1856 Lattice +0807.1897 Theory +0807.1905 Lattice +0807.1927 Theory +0807.1947 Theory +0807.1955 +0807.1964 Theory +0807.1965 +0807.1982 +0807.2055 +0807.2074 Theory +0807.2159 +0807.2170 Experiment +0807.2189 Phenomenology +0807.2201 +0807.2220 Computational Physics +0807.2228 Superconductivity +0807.2259 Phenomenology +0807.2285 Theory +0807.2298 Phenomenology +0807.2335 Phenomenology +0807.2352 Theory +0807.2355 Phenomenology +0807.2402 +0807.2414 +0807.2419 Theory +0807.2430 Phenomenology +0807.2465 Phenomenology +0807.2489 +0807.2510 Statistical Mechanics +0807.2537 +0807.2571 Theory +0807.2591 Optics +0807.2595 +0807.2603 +0807.2652 +0807.2721 Phenomenology +0807.2732 +0807.2740 +0807.2759 Phenomenology +0807.2766 Phenomenology +0807.2792 +0807.2794 Phenomenology +0807.2817 Theory +0807.2820 Phenomenology +0807.2825 Phenomenology +0807.2830 Phenomenology +0807.2838 +0807.2841 Theory +0807.2895 Instrumentation and Detectors +0807.2902 Chaotic Dynamics +0807.2944 Lattice +0807.2947 +0807.2973 Phenomenology +0807.2984 Phenomenology +0807.2985 +0807.2986 Phenomenology +0807.2999 Theory +0807.3016 Instrumentation and Detectors +0807.3039 Theory +0807.3042 +0807.3043 +0807.3055 Phenomenology +0807.3066 +0807.3080 Phenomenology +0807.3083 Phenomenology +0807.3120 Phenomenology +0807.3123 Experiment +0807.3195 Phenomenology +0807.3221 +0807.3241 Phenomenology +0807.3243 Phenomenology +0807.3258 +0807.3302 +0807.3319 Theory +0807.3325 +0807.3333 Theory +0807.3385 Phenomenology +0807.3389 +0807.3398 +0807.3413 Phenomenology +0807.3418 +0807.3468 +0807.3481 Phenomenology +0807.3488 Phenomenology +0807.3493 Phenomenology +0807.3538 +0807.3539 Theory +0807.3548 +0807.3561 +0807.3591 +0807.3605 Theory +0807.3646 Theory +0807.3687 +0807.3701 Phenomenology +0807.3705 Phenomenology +0807.3740 Phenomenology +0807.3791 Phenomenology +0807.3821 Instrumentation and Detectors +0807.3830 Phenomenology +0807.3847 Phenomenology +0807.3854 +0807.3878 +0807.3959 Phenomenology +0807.3983 +0807.3988 +0807.4143 Phenomenology +0807.4150 Lattice +0807.4167 Phenomenology +0807.4230 +0807.4239 +0807.4241 +0807.4269 +0807.4291 Phenomenology +0807.4313 Phenomenology +0807.4333 +0807.4353 +0807.4355 +0807.4372 +0807.4388 +0807.4398 Theory +0807.4399 General Physics +0807.4410 +0807.4412 Phenomenology +0807.4424 Phenomenology +0807.4426 Theory +0807.4442 Phenomenology +0807.4458 Experiment +0807.4480 Phenomenology +0807.4515 Phenomenology +0807.4524 Phenomenology +0807.4542 +0807.4574 +0807.4584 Lattice +0807.4587 Phenomenology +0807.4598 Phenomenology +0807.4606 +0807.4682 +0807.4691 Phenomenology +0807.4698 Lattice +0807.4713 Phenomenology +0807.4738 Theory +0807.4774 +0807.4809 +0807.4856 +0807.4885 Theory +0807.4892 +0807.4893 Phenomenology +0807.4895 Theory +0807.4909 Experiment +0807.4919 +0807.4923 Phenomenology +0807.4961 Experiment +0807.4993 Statistical Mechanics +0807.5010 Theory +0807.5043 +0807.5055 +0807.5065 +0807.5067 Instrumentation and Detectors +0807.5069 Instrumentation and Detectors +0807.5077 +0807.5102 +0807.5103 Phenomenology +0808.0022 Phenomenology +0808.0066 Phenomenology +0808.0083 +0808.0087 Phenomenology +0808.0160 +0808.0181 +0808.0241 Statistical Mechanics +0808.0269 Experiment +0808.0322 Phenomenology +0808.0330 +0808.0331 Phenomenology +0808.0344 +0808.0356 +0808.0361 +0808.0366 Phenomenology +0808.0405 +0808.0427 +0808.0446 Experiment +0808.0475 +0808.0482 +0808.0486 +0808.0542 Theory +0808.0562 Phenomenology +0808.0671 +0808.0703 Experiment +0808.0719 Phenomenology +0808.0763 +0808.0771 +0808.0772 +0808.0790 +0808.0800 +0808.0807 Phenomenology +0808.0810 +0808.0839 +0808.0848 Phenomenology +0808.0880 +0808.0943 Theory +0808.1004 Phenomenology +0808.1043 +0808.1044 Theory +0808.1054 Theory +0808.1077 Phenomenology +0808.1080 +0808.1096 Lattice +0808.1127 Lattice +0808.1132 +0808.1156 +0808.1221 Phenomenology +0808.1252 +0808.1294 Phenomenology +0808.1296 Experiment +0808.1447 Phenomenology +0808.1504 +0808.1512 Phenomenology +0808.1544 +0808.1552 +0808.1553 Theory +0808.1570 +0808.1595 Phenomenology +0808.1597 Theory +0808.1606 +0808.1615 +0808.1625 Phenomenology +0808.1646 +0808.1651 Phenomenology +0808.1680 Phenomenology +0808.1682 Phenomenology +0808.1693 Theory +0808.1739 Phenomenology +0808.1778 Theory +0808.1800 Theory +0808.1805 +0808.1807 Phenomenology +0808.1831 +0808.1837 Theory +0808.1877 +0808.1880 +0808.1925 Lattice +0808.2029 +0808.2056 Lattice +0808.2069 +0808.2071 Phenomenology +0808.2101 +0808.2118 Phenomenology +0808.2128 Phenomenology +0808.2131 +0808.2136 Phenomenology +0808.2259 +0808.2284 +0808.2315 +0808.2347 +0808.2379 +0808.2555 Phenomenology +0808.2561 +0808.2573 +0808.2613 +0808.2683 Phenomenology +0808.2706 Experiment +0808.2776 Theory +0808.2781 Theory +0808.2800 Experiment +0808.2921 Phenomenology +0808.2962 +0808.2979 +0808.3052 Theory +0808.3062 Theory +0808.3097 Phenomenology +0808.3101 Lattice +0808.3110 +0808.3121 Phenomenology +0808.3159 +0808.3168 Phenomenology +0808.3182 +0808.3223 +0808.3240 +0808.3302 Phenomenology +0808.3306 +0808.3349 Phenomenology +0808.3368 Theory +0808.3372 Phenomenology +0808.3376 +0808.3382 Phenomenology +0808.3507 +0808.3533 +0808.3554 +0808.3568 Theory +0808.3626 +0808.3632 Phenomenology +0808.3639 Phenomenology +0808.3691 Theory +0808.3692 +0808.3731 Phenomenology +0808.3761 Phenomenology +0808.3786 Plasma Physics +0808.3805 +0808.3953 Theory +0808.3991 +0808.4076 Theory +0808.4080 +0808.4106 Theory +0808.4155 Theory +0809.0010 +0809.0025 Statistical Mechanics +0809.0083 Theory +0809.0087 Phenomenology +0809.0114 Theory +0809.0118 Theory +0809.0184 Theory +0809.0273 +0809.0304 +0809.0318 Theory +0809.0376 Theory +0809.0380 Theory +0809.0388 +0809.0447 +0809.0469 +0809.0491 Phenomenology +0809.0537 +0809.0544 Theory +0809.0546 +0809.0562 Theory +0809.0564 Theory +0809.0565 +0809.0567 Theory +0809.0607 +0809.0609 Phenomenology +0809.0652 Theory +0809.0722 Strongly Correlated Electrons +0809.0738 +0809.0886 +0809.0907 +0809.0927 +0809.0933 Lattice +0809.0998 +0809.1095 +0809.1131 +0809.1183 +0809.1185 Phenomenology +0809.1222 +0809.1284 +0809.1302 Phenomenology +0809.1375 +0809.1378 Phenomenology +0809.1408 Theory +0809.1442 Phenomenology +0809.1666 Phenomenology +0809.1702 Phenomenology +0809.1733 Phenomenology +0809.1923 +0809.1927 Phenomenology +0809.2033 +0809.2162 +0809.2359 Phenomenology +0809.2444 Popular Physics +0809.2449 Phenomenology +0809.2567 +0809.2715 +0809.2789 Theory +0809.2861 +0809.2894 Mesoscale and Nanoscale Physics +0809.2924 Theory +0809.3052 +0809.3075 Lattice +0809.3161 +0809.3162 Phenomenology +0809.3202 +0809.3416 Statistical Mechanics +0809.3496 +0809.3498 +0809.3560 Theory +0809.3659 Theory +0809.3897 Theory +0809.3900 +0810.0149 Differential Geometry +0810.0293 Phenomenology +0810.0316 Phenomenology +0810.0543 Phenomenology +0810.0696 +0810.0697 Theory +0810.0876 +0810.1083 +0810.1177 +0810.1790 +0810.2095 Theory +0810.2363 +0810.2715 +0810.2843 Phenomenology +0810.2845 Phenomenology +0810.2952 Theory +0810.3732 +0810.3741 +0810.3954 Theory +0810.4349 Phenomenology +0810.4735 +0811.0237 Physics and Society +0811.0577 Functional Analysis +0811.0655 +0811.0985 +0811.1157 Differential Geometry +0811.1249 Superconductivity +0811.2975 +0811.3159 Functional Analysis +0811.3576 Functional Analysis +0811.3689 Adaptation and Self-Organizing Systems +0811.3818 Analysis of PDEs +0811.3963 +0811.3975 Computer Science and Game Theory +0811.3976 Quantum Algebra +0811.3981 +0811.3983 Geometric Topology +0811.3986 Number Theory +0811.3991 Representation Theory +0811.3998 Algebraic Geometry +0811.4006 +0811.4007 Discrete Mathematics +0811.4019 Phenomenology +0811.4022 Classical Physics +0811.4024 Classical Physics +0811.4025 Cell Behavior +0811.4027 Classical Analysis and ODEs +0811.4028 Differential Geometry +0811.4030 Networking and Internet Architecture +0811.4033 Information Theory +0811.4036 Cell Behavior +0811.4042 Other Condensed Matter +0811.4048 Strongly Correlated Electrons +0811.4059 Geometric Topology +0811.4061 Software Engineering +0811.4064 Group Theory +0811.4066 Chaotic Dynamics +0811.4069 Theory +0811.4080 Algebraic Geometry +0811.4081 Numerical Analysis +0811.4082 Strongly Correlated Electrons +0811.4084 +0811.4087 Theory +0811.4094 Number Theory +0811.4098 Strongly Correlated Electrons +0811.4114 +0811.4115 +0811.4121 Graphics +0811.4122 Differential Geometry +0811.4124 Analysis of PDEs +0811.4138 Cryptography and Security +0811.4139 Number Theory +0811.4145 Superconductivity +0811.4152 Combinatorics +0811.4157 Soft Condensed Matter +0811.4159 Commutative Algebra +acc-phys/9411004 Accelerator Physics +acc-phys/9503003 Accelerator Physics +acc-phys/9504003 Accelerator Physics +acc-phys/9505001 Accelerator Physics +acc-phys/9604004 Accelerator Physics +acc-phys/9609002 Accelerator Physics +acc-phys/9609004 Accelerator Physics +astro-ph/0001136 +astro-ph/0001137 +astro-ph/0001145 +astro-ph/0001151 +astro-ph/0001167 +astro-ph/0001208 +astro-ph/0001219 +astro-ph/0001240 +astro-ph/0001314 +astro-ph/0001315 +astro-ph/0001327 +astro-ph/0001337 +astro-ph/0001361 +astro-ph/0001379 +astro-ph/0001456 +astro-ph/0001467 +astro-ph/0001476 +astro-ph/0001492 +astro-ph/0002151 +astro-ph/0002216 +astro-ph/0002232 +astro-ph/0002256 +astro-ph/0002341 +astro-ph/0002462 +astro-ph/0002492 +astro-ph/0002500 +astro-ph/0002506 +astro-ph/0002507 +astro-ph/0003054 +astro-ph/0003061 +astro-ph/0003132 +astro-ph/0003171 +astro-ph/0003190 +astro-ph/0003198 +astro-ph/0003270 +astro-ph/0003314 +astro-ph/0003317 +astro-ph/0003378 +astro-ph/0003398 +astro-ph/0003407 +astro-ph/0003463 +astro-ph/0003479 +astro-ph/0003481 +astro-ph/0004052 +astro-ph/0004092 +astro-ph/0004187 +astro-ph/0004233 +astro-ph/0004243 +astro-ph/0004299 +astro-ph/0004349 +astro-ph/0004366 +astro-ph/0004404 +astro-ph/0005214 +astro-ph/0005229 +astro-ph/0005253 +astro-ph/0005287 +astro-ph/0005290 +astro-ph/0005293 +astro-ph/0005299 +astro-ph/0005322 +astro-ph/0005331 +astro-ph/0005336 +astro-ph/0005376 +astro-ph/0005508 +astro-ph/0005550 +astro-ph/0005552 +astro-ph/0005557 +astro-ph/0005602 +astro-ph/0006048 +astro-ph/0006252 +astro-ph/0006275 +astro-ph/0006276 +astro-ph/0006300 +astro-ph/0006305 +astro-ph/0006314 +astro-ph/0006343 +astro-ph/0006345 +astro-ph/0006370 +astro-ph/0006394 +astro-ph/0006395 +astro-ph/0006396 +astro-ph/0006404 +astro-ph/0006429 +astro-ph/0007059 +astro-ph/0007128 +astro-ph/0007182 +astro-ph/0007184 +astro-ph/0007201 +astro-ph/0007202 +astro-ph/0007214 +astro-ph/0007266 +astro-ph/0007386 +astro-ph/0007457 +astro-ph/0008051 +astro-ph/0008104 +astro-ph/0008204 +astro-ph/0008205 +astro-ph/0008222 +astro-ph/0008245 +astro-ph/0008294 +astro-ph/0008339 +astro-ph/0008376 +astro-ph/0008438 +astro-ph/0008446 +astro-ph/0008454 +astro-ph/0008458 +astro-ph/0008498 +astro-ph/0008517 +astro-ph/0009020 +astro-ph/0009127 +astro-ph/0009136 +astro-ph/0009234 +astro-ph/0009235 +astro-ph/0009236 +astro-ph/0009261 +astro-ph/0009333 +astro-ph/0009353 +astro-ph/0009378 +astro-ph/0010052 +astro-ph/0010056 +astro-ph/0010111 +astro-ph/0010180 +astro-ph/0010201 +astro-ph/0010224 +astro-ph/0010292 +astro-ph/0010309 +astro-ph/0010346 +astro-ph/0010351 +astro-ph/0010352 +astro-ph/0010364 +astro-ph/0010366 +astro-ph/0010463 +astro-ph/0010485 +astro-ph/0010633 +astro-ph/0011051 +astro-ph/0011109 +astro-ph/0011156 +astro-ph/0011172 +astro-ph/0011214 +astro-ph/0011220 +astro-ph/0011243 +astro-ph/0011273 +astro-ph/0011313 +astro-ph/0011319 +astro-ph/0011326 +astro-ph/0011341 +astro-ph/0011346 +astro-ph/0011372 +astro-ph/0011373 +astro-ph/0011375 +astro-ph/0011398 +astro-ph/0011465 +astro-ph/0011576 +astro-ph/0012198 +astro-ph/0012287 +astro-ph/0012298 +astro-ph/0012318 +astro-ph/0012356 +astro-ph/0012419 +astro-ph/0012457 +astro-ph/0012539 +astro-ph/0101030 +astro-ph/0101055 +astro-ph/0101133 +astro-ph/0101162 +astro-ph/0101175 +astro-ph/0101231 +astro-ph/0101235 +astro-ph/0101283 +astro-ph/0101285 +astro-ph/0101328 +astro-ph/0101336 +astro-ph/0101386 +astro-ph/0101463 +astro-ph/0101476 +astro-ph/0101500 +astro-ph/0101570 +astro-ph/0102022 +astro-ph/0102063 +astro-ph/0102107 +astro-ph/0102136 +astro-ph/0102144 +astro-ph/0102235 +astro-ph/0102294 +astro-ph/0102321 +astro-ph/0102353 +astro-ph/0102374 +astro-ph/0102418 +astro-ph/0102456 +astro-ph/0102466 +astro-ph/0102490 +astro-ph/0103021 +astro-ph/0103150 +astro-ph/0103160 +astro-ph/0103165 +astro-ph/0103198 +astro-ph/0103267 +astro-ph/0103335 +astro-ph/0103342 +astro-ph/0103372 +astro-ph/0103383 +astro-ph/0103397 +astro-ph/0103506 +astro-ph/0104043 +astro-ph/0104061 +astro-ph/0104088 +astro-ph/0104165 +astro-ph/0104173 +astro-ph/0104199 +astro-ph/0104218 +astro-ph/0104256 +astro-ph/0104274 +astro-ph/0104307 +astro-ph/0104335 +astro-ph/0104486 +astro-ph/0105087 +astro-ph/0105153 +astro-ph/0105158 +astro-ph/0105178 +astro-ph/0105227 +astro-ph/0105231 +astro-ph/0105317 +astro-ph/0105322 +astro-ph/0105339 +astro-ph/0105381 +astro-ph/0105397 +astro-ph/0105439 +astro-ph/0105459 +astro-ph/0105479 +astro-ph/0105490 +astro-ph/0105504 +astro-ph/0105511 +astro-ph/0106049 +astro-ph/0106099 +astro-ph/0106100 +astro-ph/0106108 +astro-ph/0106199 +astro-ph/0106244 +astro-ph/0106259 +astro-ph/0106271 +astro-ph/0106311 +astro-ph/0106359 +astro-ph/0106494 +astro-ph/0106498 +astro-ph/0106522 +astro-ph/0106537 +astro-ph/0106544 +astro-ph/0107177 +astro-ph/0107234 +astro-ph/0107246 +astro-ph/0107256 +astro-ph/0107314 +astro-ph/0107321 +astro-ph/0107482 +astro-ph/0107570 +astro-ph/0107592 +astro-ph/0107605 +astro-ph/0108023 +astro-ph/0108093 +astro-ph/0108096 +astro-ph/0108125 +astro-ph/0108153 +astro-ph/0108209 +astro-ph/0108217 +astro-ph/0108231 +astro-ph/0108309 +astro-ph/0108397 +astro-ph/0108422 +astro-ph/0108443 +astro-ph/0108478 +astro-ph/0108518 +astro-ph/0109008 +astro-ph/0109035 +astro-ph/0109045 +astro-ph/0109124 +astro-ph/0109157 +astro-ph/0109314 +astro-ph/0109336 +astro-ph/0109414 +astro-ph/0109458 +astro-ph/0110013 +astro-ph/0110095 +astro-ph/0110135 +astro-ph/0110259 +astro-ph/0110271 +astro-ph/0110291 +astro-ph/0110307 +astro-ph/0110308 +astro-ph/0110386 +astro-ph/0110440 +astro-ph/0110451 +astro-ph/0110452 +astro-ph/0110621 +astro-ph/0110632 +astro-ph/0110636 +astro-ph/0111025 +astro-ph/0111042 +astro-ph/0111054 +astro-ph/0111102 +astro-ph/0111184 +astro-ph/0111203 +astro-ph/0111214 +astro-ph/0111223 +astro-ph/0111292 +astro-ph/0111305 +astro-ph/0111325 +astro-ph/0111332 +astro-ph/0111368 +astro-ph/0111390 +astro-ph/0111417 +astro-ph/0111538 +astro-ph/0111586 +astro-ph/0111606 +astro-ph/0112046 +astro-ph/0112087 +astro-ph/0112113 +astro-ph/0112161 +astro-ph/0112225 +astro-ph/0112296 +astro-ph/0112372 +astro-ph/0112478 +astro-ph/0112487 +astro-ph/0112491 +astro-ph/0112519 +astro-ph/0112524 +astro-ph/0112551 +astro-ph/0112563 +astro-ph/0201051 +astro-ph/0201055 +astro-ph/0201074 +astro-ph/0201125 +astro-ph/0201143 +astro-ph/0201177 +astro-ph/0201180 +astro-ph/0201187 +astro-ph/0201244 +astro-ph/0201256 +astro-ph/0201263 +astro-ph/0201276 +astro-ph/0201376 +astro-ph/0201433 +astro-ph/0201454 +astro-ph/0201513 +astro-ph/0201544 +astro-ph/0202007 +astro-ph/0202076 +astro-ph/0202083 +astro-ph/0202098 +astro-ph/0202111 +astro-ph/0202113 +astro-ph/0202115 +astro-ph/0202147 +astro-ph/0202175 +astro-ph/0202233 +astro-ph/0202251 +astro-ph/0202272 +astro-ph/0202320 +astro-ph/0202390 +astro-ph/0202415 +astro-ph/0202429 +astro-ph/0202437 +astro-ph/0202468 +astro-ph/0202492 +astro-ph/0203004 +astro-ph/0203014 +astro-ph/0203017 +astro-ph/0203020 +astro-ph/0203082 +astro-ph/0203084 +astro-ph/0203101 +astro-ph/0203109 +astro-ph/0203149 +astro-ph/0203152 +astro-ph/0203177 +astro-ph/0203205 +astro-ph/0203219 +astro-ph/0203243 +astro-ph/0203263 +astro-ph/0203335 +astro-ph/0203337 +astro-ph/0203403 +astro-ph/0203437 +astro-ph/0203452 +astro-ph/0203468 +astro-ph/0203481 +astro-ph/0203514 +astro-ph/0204034 +astro-ph/0204055 +astro-ph/0204080 +astro-ph/0204126 +astro-ph/0204144 +astro-ph/0204204 +astro-ph/0204229 +astro-ph/0204273 +astro-ph/0204306 +astro-ph/0204325 +astro-ph/0204331 +astro-ph/0204388 +astro-ph/0204410 +astro-ph/0204452 +astro-ph/0204462 +astro-ph/0204473 +astro-ph/0204504 +astro-ph/0204520 +astro-ph/0205012 +astro-ph/0205060 +astro-ph/0205085 +astro-ph/0205106 +astro-ph/0205109 +astro-ph/0205125 +astro-ph/0205144 +astro-ph/0205159 +astro-ph/0205161 +astro-ph/0205188 +astro-ph/0205191 +astro-ph/0205198 +astro-ph/0205202 +astro-ph/0205204 +astro-ph/0205215 +astro-ph/0205216 +astro-ph/0205230 +astro-ph/0205237 +astro-ph/0205238 +astro-ph/0205314 +astro-ph/0205319 +astro-ph/0205324 +astro-ph/0205340 +astro-ph/0205353 +astro-ph/0205387 +astro-ph/0205415 +astro-ph/0205417 +astro-ph/0205420 +astro-ph/0205435 +astro-ph/0205436 +astro-ph/0205437 +astro-ph/0205471 +astro-ph/0205476 +astro-ph/0205499 +astro-ph/0205519 +astro-ph/0206030 +astro-ph/0206037 +astro-ph/0206088 +astro-ph/0206121 +astro-ph/0206124 +astro-ph/0206162 +astro-ph/0206164 +astro-ph/0206175 +astro-ph/0206180 +astro-ph/0206217 +astro-ph/0206271 +astro-ph/0206318 +astro-ph/0206357 +astro-ph/0206385 +astro-ph/0206495 +astro-ph/0207013 +astro-ph/0207044 +astro-ph/0207095 +astro-ph/0207117 +astro-ph/0207149 +astro-ph/0207185 +astro-ph/0207216 +astro-ph/0207240 +astro-ph/0207299 +astro-ph/0207315 +astro-ph/0207335 +astro-ph/0207347 +astro-ph/0207366 +astro-ph/0207395 +astro-ph/0207396 +astro-ph/0207401 +astro-ph/0207403 +astro-ph/0207405 +astro-ph/0207409 +astro-ph/0207499 +astro-ph/0207506 +astro-ph/0207523 +astro-ph/0207526 +astro-ph/0207536 +astro-ph/0207555 +astro-ph/0207564 +astro-ph/0207565 +astro-ph/0207571 +astro-ph/0207579 +astro-ph/0207581 +astro-ph/0207584 +astro-ph/0207587 +astro-ph/0207617 +astro-ph/0207620 +astro-ph/0207627 +astro-ph/0207634 +astro-ph/0207637 +astro-ph/0207641 +astro-ph/0207644 +astro-ph/0207650 +astro-ph/0207663 +astro-ph/0207666 +astro-ph/0207667 +astro-ph/0207669 +astro-ph/0208002 +astro-ph/0208003 +astro-ph/0208005 +astro-ph/0208006 +astro-ph/0208013 +astro-ph/0208016 +astro-ph/0208020 +astro-ph/0208063 +astro-ph/0208071 +astro-ph/0208093 +astro-ph/0208098 +astro-ph/0208204 +astro-ph/0208223 +astro-ph/0208224 +astro-ph/0208243 +astro-ph/0208301 +astro-ph/0208374 +astro-ph/0208394 +astro-ph/0208403 +astro-ph/0208419 +astro-ph/0208429 +astro-ph/0208440 +astro-ph/0208444 +astro-ph/0208457 +astro-ph/0208458 +astro-ph/0208474 +astro-ph/0208475 +astro-ph/0208508 +astro-ph/0208555 +astro-ph/0209001 +astro-ph/0209016 +astro-ph/0209031 +astro-ph/0209035 +astro-ph/0209056 +astro-ph/0209127 +astro-ph/0209136 +astro-ph/0209242 +astro-ph/0209253 +astro-ph/0209257 +astro-ph/0209274 +astro-ph/0209324 +astro-ph/0209330 +astro-ph/0209363 +astro-ph/0209431 +astro-ph/0209453 +astro-ph/0209506 +astro-ph/0209542 +astro-ph/0209606 +astro-ph/0210021 +astro-ph/0210022 +astro-ph/0210033 +astro-ph/0210050 +astro-ph/0210067 +astro-ph/0210124 +astro-ph/0210152 +astro-ph/0210182 +astro-ph/0210197 +astro-ph/0210210 +astro-ph/0210213 +astro-ph/0210215 +astro-ph/0210221 +astro-ph/0210223 +astro-ph/0210225 +astro-ph/0210258 +astro-ph/0210361 +astro-ph/0210363 +astro-ph/0210367 +astro-ph/0210369 +astro-ph/0210371 +astro-ph/0210399 +astro-ph/0210400 +astro-ph/0210401 +astro-ph/0210469 +astro-ph/0210522 +astro-ph/0210523 +astro-ph/0210567 +astro-ph/0210595 +astro-ph/0210667 +astro-ph/0210669 +astro-ph/0211044 +astro-ph/0211080 +astro-ph/0211087 +astro-ph/0211119 +astro-ph/0211201 +astro-ph/0211206 +astro-ph/0211255 +astro-ph/0211264 +astro-ph/0211286 +astro-ph/0211297 +astro-ph/0211304 +astro-ph/0211312 +astro-ph/0211327 +astro-ph/0211331 +astro-ph/0211335 +astro-ph/0211337 +astro-ph/0211339 +astro-ph/0211343 +astro-ph/0211451 +astro-ph/0211496 +astro-ph/0211522 +astro-ph/0211580 +astro-ph/0211585 +astro-ph/0211586 +astro-ph/0211590 +astro-ph/0211591 +astro-ph/0211592 +astro-ph/0211594 +astro-ph/0211597 +astro-ph/0211598 +astro-ph/0211599 +astro-ph/0211601 +astro-ph/0211603 +astro-ph/0211604 +astro-ph/0211605 +astro-ph/0211607 +astro-ph/0211612 +astro-ph/0211613 +astro-ph/0211614 +astro-ph/0211617 +astro-ph/0211619 +astro-ph/0211637 +astro-ph/0211638 +astro-ph/0211641 +astro-ph/0211646 +astro-ph/0211648 +astro-ph/0211655 +astro-ph/0212012 +astro-ph/0212013 +astro-ph/0212019 +astro-ph/0212032 +astro-ph/0212043 +astro-ph/0212045 +astro-ph/0212051 +astro-ph/0212084 +astro-ph/0212092 +astro-ph/0212094 +astro-ph/0212095 +astro-ph/0212096 +astro-ph/0212098 +astro-ph/0212109 +astro-ph/0212114 +astro-ph/0212141 +astro-ph/0212166 +astro-ph/0212172 +astro-ph/0212191 +astro-ph/0212257 +astro-ph/0212266 +astro-ph/0212282 +astro-ph/0212289 +astro-ph/0212397 +astro-ph/0212414 +astro-ph/0212419 +astro-ph/0212431 +astro-ph/0212463 +astro-ph/0212467 +astro-ph/0212476 +astro-ph/0212481 +astro-ph/0212505 +astro-ph/0212521 +astro-ph/0212548 +astro-ph/0212572 +astro-ph/0212573 +astro-ph/0301018 +astro-ph/0301019 +astro-ph/0301022 +astro-ph/0301088 +astro-ph/0301135 +astro-ph/0301154 +astro-ph/0301158 +astro-ph/0301166 +astro-ph/0301181 +astro-ph/0301210 +astro-ph/0301220 +astro-ph/0301233 +astro-ph/0301270 +astro-ph/0301294 +astro-ph/0301295 +astro-ph/0301304 +astro-ph/0301306 +astro-ph/0301311 +astro-ph/0301312 +astro-ph/0301320 +astro-ph/0301321 +astro-ph/0301323 +astro-ph/0301325 +astro-ph/0301326 +astro-ph/0301329 +astro-ph/0301330 +astro-ph/0301335 +astro-ph/0301336 +astro-ph/0301338 +astro-ph/0301339 +astro-ph/0301341 +astro-ph/0301344 +astro-ph/0301353 +astro-ph/0301362 +astro-ph/0301363 +astro-ph/0301371 +astro-ph/0301387 +astro-ph/0301391 +astro-ph/0301392 +astro-ph/0301393 +astro-ph/0301396 +astro-ph/0301400 +astro-ph/0301409 +astro-ph/0301436 +astro-ph/0301437 +astro-ph/0301481 +astro-ph/0301497 +astro-ph/0301551 +astro-ph/0301608 +astro-ph/0301632 +astro-ph/0301653 +astro-ph/0302005 +astro-ph/0302036 +astro-ph/0302049 +astro-ph/0302111 +astro-ph/0302127 +astro-ph/0302128 +astro-ph/0302130 +astro-ph/0302148 +astro-ph/0302166 +astro-ph/0302184 +astro-ph/0302185 +astro-ph/0302187 +astro-ph/0302193 +astro-ph/0302196 +astro-ph/0302198 +astro-ph/0302200 +astro-ph/0302205 +astro-ph/0302207 +astro-ph/0302211 +astro-ph/0302214 +astro-ph/0302219 +astro-ph/0302223 +astro-ph/0302227 +astro-ph/0302238 +astro-ph/0302295 +astro-ph/0302312 +astro-ph/0302318 +astro-ph/0302329 +astro-ph/0302343 +astro-ph/0302344 +astro-ph/0302345 +astro-ph/0302346 +astro-ph/0302347 +astro-ph/0302348 +astro-ph/0302349 +astro-ph/0302350 +astro-ph/0302364 +astro-ph/0302365 +astro-ph/0302366 +astro-ph/0302367 +astro-ph/0302371 +astro-ph/0302373 +astro-ph/0302374 +astro-ph/0302375 +astro-ph/0302377 +astro-ph/0302378 +astro-ph/0302380 +astro-ph/0302381 +astro-ph/0302383 +astro-ph/0302384 +astro-ph/0302385 +astro-ph/0302386 +astro-ph/0302387 +astro-ph/0302389 +astro-ph/0302390 +astro-ph/0302391 +astro-ph/0302394 +astro-ph/0302427 +astro-ph/0302428 +astro-ph/0302431 +astro-ph/0302435 +astro-ph/0302437 +astro-ph/0302438 +astro-ph/0302446 +astro-ph/0302448 +astro-ph/0302449 +astro-ph/0302450 +astro-ph/0302455 +astro-ph/0302459 +astro-ph/0302460 +astro-ph/0302479 +astro-ph/0302498 +astro-ph/0302517 +astro-ph/0302533 +astro-ph/0302575 +astro-ph/0302594 +astro-ph/0303009 +astro-ph/0303033 +astro-ph/0303041 +astro-ph/0303079 +astro-ph/0303171 +astro-ph/0303211 +astro-ph/0303218 +astro-ph/0303221 +astro-ph/0303250 +astro-ph/0303266 +astro-ph/0303302 +astro-ph/0303388 +astro-ph/0303394 +astro-ph/0303396 +astro-ph/0303406 +astro-ph/0303407 +astro-ph/0303473 +astro-ph/0303475 +astro-ph/0303481 +astro-ph/0303555 +astro-ph/0303637 +astro-ph/0303638 +astro-ph/0304001 +astro-ph/0304013 +astro-ph/0304023 +astro-ph/0304027 +astro-ph/0304040 +astro-ph/0304042 +astro-ph/0304055 +astro-ph/0304056 +astro-ph/0304059 +astro-ph/0304096 +astro-ph/0304154 +astro-ph/0304156 +astro-ph/0304212 +astro-ph/0304219 +astro-ph/0304226 +astro-ph/0304292 +astro-ph/0304321 +astro-ph/0304339 +astro-ph/0304349 +astro-ph/0304363 +astro-ph/0304371 +astro-ph/0304382 +astro-ph/0304393 +astro-ph/0304414 +astro-ph/0304443 +astro-ph/0304462 +astro-ph/0304489 +astro-ph/0304511 +astro-ph/0304529 +astro-ph/0305001 +astro-ph/0305010 +astro-ph/0305093 +astro-ph/0305113 +astro-ph/0305127 +astro-ph/0305158 +astro-ph/0305164 +astro-ph/0305185 +astro-ph/0305196 +astro-ph/0305199 +astro-ph/0305202 +astro-ph/0305216 +astro-ph/0305227 +astro-ph/0305292 +astro-ph/0305325 +astro-ph/0305335 +astro-ph/0305341 +astro-ph/0305377 +astro-ph/0305393 +astro-ph/0305399 +astro-ph/0305457 +astro-ph/0305471 +astro-ph/0305503 +astro-ph/0305510 +astro-ph/0305526 +astro-ph/0305546 +astro-ph/0305578 +astro-ph/0305597 +astro-ph/0306006 +astro-ph/0306013 +astro-ph/0306033 +astro-ph/0306037 +astro-ph/0306046 +astro-ph/0306052 +astro-ph/0306053 +astro-ph/0306055 +astro-ph/0306096 +astro-ph/0306137 +astro-ph/0306140 +astro-ph/0306145 +astro-ph/0306147 +astro-ph/0306207 +astro-ph/0306208 +astro-ph/0306215 +astro-ph/0306219 +astro-ph/0306242 +astro-ph/0306261 +astro-ph/0306276 +astro-ph/0306280 +astro-ph/0306293 +astro-ph/0306296 +astro-ph/0306337 +astro-ph/0306403 +astro-ph/0306417 +astro-ph/0306425 +astro-ph/0306432 +astro-ph/0306469 +astro-ph/0306484 +astro-ph/0306498 +astro-ph/0306499 +astro-ph/0306515 +astro-ph/0306528 +astro-ph/0306573 +astro-ph/0307001 +astro-ph/0307015 +astro-ph/0307029 +astro-ph/0307034 +astro-ph/0307067 +astro-ph/0307073 +astro-ph/0307082 +astro-ph/0307123 +astro-ph/0307148 +astro-ph/0307149 +astro-ph/0307153 +astro-ph/0307184 +astro-ph/0307212 +astro-ph/0307214 +astro-ph/0307222 +astro-ph/0307236 +astro-ph/0307248 +astro-ph/0307289 +astro-ph/0307325 +astro-ph/0307331 +astro-ph/0307352 +astro-ph/0307361 +astro-ph/0307375 +astro-ph/0307460 +astro-ph/0307471 +astro-ph/0307504 +astro-ph/0307515 +astro-ph/0307535 +astro-ph/0308002 +astro-ph/0308023 +astro-ph/0308029 +astro-ph/0308042 +astro-ph/0308052 +astro-ph/0308095 +astro-ph/0308103 +astro-ph/0308105 +astro-ph/0308106 +astro-ph/0308111 +astro-ph/0308172 +astro-ph/0308196 +astro-ph/0308243 +astro-ph/0308252 +astro-ph/0308255 +astro-ph/0308302 +astro-ph/0308360 +astro-ph/0308370 +astro-ph/0308407 +astro-ph/0308418 +astro-ph/0308464 +astro-ph/0308508 +astro-ph/0309010 +astro-ph/0309074 +astro-ph/0309084 +astro-ph/0309134 +astro-ph/0309141 +astro-ph/0309205 +astro-ph/0309211 +astro-ph/0309284 +astro-ph/0309301 +astro-ph/0309329 +astro-ph/0309330 +astro-ph/0309332 +astro-ph/0309357 +astro-ph/0309368 +astro-ph/0309405 +astro-ph/0309443 +astro-ph/0309454 +astro-ph/0309508 +astro-ph/0309519 +astro-ph/0309549 +astro-ph/0309551 +astro-ph/0309553 +astro-ph/0309556 +astro-ph/0309580 +astro-ph/0309585 +astro-ph/0309610 +astro-ph/0309622 +astro-ph/0309638 +astro-ph/0309656 +astro-ph/0309665 +astro-ph/0309718 +astro-ph/0309733 +astro-ph/0309748 +astro-ph/0309804 +astro-ph/0309817 +astro-ph/0310003 +astro-ph/0310020 +astro-ph/0310042 +astro-ph/0310070 +astro-ph/0310127 +astro-ph/0310158 +astro-ph/0310163 +astro-ph/0310188 +astro-ph/0310194 +astro-ph/0310198 +astro-ph/0310223 +astro-ph/0310234 +astro-ph/0310267 +astro-ph/0310268 +astro-ph/0310273 +astro-ph/0310299 +astro-ph/0310331 +astro-ph/0310334 +astro-ph/0310336 +astro-ph/0310345 +astro-ph/0310382 +astro-ph/0310421 +astro-ph/0310453 +astro-ph/0310472 +astro-ph/0310477 +astro-ph/0310478 +astro-ph/0310511 +astro-ph/0310551 +astro-ph/0310552 +astro-ph/0310568 +astro-ph/0310570 +astro-ph/0310575 +astro-ph/0310610 +astro-ph/0310652 +astro-ph/0310667 +astro-ph/0310699 +astro-ph/0310725 +astro-ph/0310760 +astro-ph/0310763 +astro-ph/0310764 +astro-ph/0310770 +astro-ph/0310771 +astro-ph/0310824 +astro-ph/0310849 +astro-ph/0310860 +astro-ph/0311010 +astro-ph/0311019 +astro-ph/0311062 +astro-ph/0311122 +astro-ph/0311131 +astro-ph/0311145 +astro-ph/0311202 +astro-ph/0311220 +astro-ph/0311230 +astro-ph/0311231 +astro-ph/0311253 +astro-ph/0311260 +astro-ph/0311263 +astro-ph/0311302 +astro-ph/0311319 +astro-ph/0311343 +astro-ph/0311378 +astro-ph/0311489 +astro-ph/0311502 +astro-ph/0311511 +astro-ph/0311535 +astro-ph/0311537 +astro-ph/0311589 +astro-ph/0311618 +astro-ph/0311619 +astro-ph/0312002 +astro-ph/0312009 +astro-ph/0312046 +astro-ph/0312053 +astro-ph/0312062 +astro-ph/0312091 +astro-ph/0312102 +astro-ph/0312133 +astro-ph/0312148 +astro-ph/0312185 +astro-ph/0312192 +astro-ph/0312201 +astro-ph/0312247 +astro-ph/0312253 +astro-ph/0312264 +astro-ph/0312273 +astro-ph/0312348 +astro-ph/0312395 +astro-ph/0312400 +astro-ph/0312418 +astro-ph/0312427 +astro-ph/0312431 +astro-ph/0312463 +astro-ph/0312467 +astro-ph/0312533 +astro-ph/0312544 +astro-ph/0312589 +astro-ph/0312644 +astro-ph/0401011 +astro-ph/0401036 +astro-ph/0401059 +astro-ph/0401084 +astro-ph/0401109 +astro-ph/0401171 +astro-ph/0401172 +astro-ph/0401227 +astro-ph/0401276 +astro-ph/0401315 +astro-ph/0401340 +astro-ph/0401374 +astro-ph/0401439 +astro-ph/0401445 +astro-ph/0401496 +astro-ph/0401512 +astro-ph/0401549 +astro-ph/0401556 +astro-ph/0401577 +astro-ph/0402002 +astro-ph/0402030 +astro-ph/0402087 +astro-ph/0402091 +astro-ph/0402137 +astro-ph/0402177 +astro-ph/0402240 +astro-ph/0402242 +astro-ph/0402272 +astro-ph/0402279 +astro-ph/0402308 +astro-ph/0402363 +astro-ph/0402380 +astro-ph/0402392 +astro-ph/0402407 +astro-ph/0402417 +astro-ph/0402451 +astro-ph/0402466 +astro-ph/0402475 +astro-ph/0402495 +astro-ph/0402498 +astro-ph/0402512 +astro-ph/0402514 +astro-ph/0402529 +astro-ph/0402582 +astro-ph/0402602 +astro-ph/0402619 +astro-ph/0402632 +astro-ph/0402643 +astro-ph/0402665 +astro-ph/0402667 +astro-ph/0402676 +astro-ph/0403001 +astro-ph/0403017 +astro-ph/0403047 +astro-ph/0403060 +astro-ph/0403072 +astro-ph/0403074 +astro-ph/0403080 +astro-ph/0403114 +astro-ph/0403161 +astro-ph/0403291 +astro-ph/0403319 +astro-ph/0403325 +astro-ph/0403405 +astro-ph/0403450 +astro-ph/0403451 +astro-ph/0403515 +astro-ph/0403546 +astro-ph/0403552 +astro-ph/0403588 +astro-ph/0403614 +astro-ph/0403622 +astro-ph/0403683 +astro-ph/0403695 +astro-ph/0404055 +astro-ph/0404110 +astro-ph/0404156 +astro-ph/0404197 +astro-ph/0404204 +astro-ph/0404225 +astro-ph/0404226 +astro-ph/0404255 +astro-ph/0404322 +astro-ph/0404368 +astro-ph/0404371 +astro-ph/0404399 +astro-ph/0404451 +astro-ph/0404512 +astro-ph/0404540 +astro-ph/0404585 +astro-ph/0404600 +astro-ph/0405001 +astro-ph/0405016 +astro-ph/0405026 +astro-ph/0405052 +astro-ph/0405138 +astro-ph/0405171 +astro-ph/0405218 +astro-ph/0405329 +astro-ph/0405340 +astro-ph/0405362 +astro-ph/0405373 +astro-ph/0405413 +astro-ph/0405503 +astro-ph/0405507 +astro-ph/0405519 +astro-ph/0405616 +astro-ph/0406034 +astro-ph/0406043 +astro-ph/0406082 +astro-ph/0406086 +astro-ph/0406101 +astro-ph/0406121 +astro-ph/0406134 +astro-ph/0406145 +astro-ph/0406183 +astro-ph/0406222 +astro-ph/0406223 +astro-ph/0406272 +astro-ph/0406308 +astro-ph/0406331 +astro-ph/0406337 +astro-ph/0406346 +astro-ph/0406371 +astro-ph/0406403 +astro-ph/0406429 +astro-ph/0406473 +astro-ph/0406483 +astro-ph/0406548 +astro-ph/0406608 +astro-ph/0406654 +astro-ph/0407007 +astro-ph/0407008 +astro-ph/0407065 +astro-ph/0407095 +astro-ph/0407170 +astro-ph/0407295 +astro-ph/0407319 +astro-ph/0407349 +astro-ph/0407372 +astro-ph/0407410 +astro-ph/0407421 +astro-ph/0407432 +astro-ph/0407465 +astro-ph/0407468 +astro-ph/0407522 +astro-ph/0407539 +astro-ph/0407594 +astro-ph/0407600 +astro-ph/0407622 +astro-ph/0407623 +astro-ph/0408003 +astro-ph/0408006 +astro-ph/0408033 +astro-ph/0408056 +astro-ph/0408065 +astro-ph/0408076 +astro-ph/0408077 +astro-ph/0408081 +astro-ph/0408107 +astro-ph/0408117 +astro-ph/0408150 +astro-ph/0408183 +astro-ph/0408186 +astro-ph/0408229 +astro-ph/0408233 +astro-ph/0408245 +astro-ph/0408273 +astro-ph/0408281 +astro-ph/0408315 +astro-ph/0408365 +astro-ph/0408383 +astro-ph/0408401 +astro-ph/0408415 +astro-ph/0408554 +astro-ph/0408557 +astro-ph/0408564 +astro-ph/0409025 +astro-ph/0409120 +astro-ph/0409131 +astro-ph/0409132 +astro-ph/0409154 +astro-ph/0409216 +astro-ph/0409316 +astro-ph/0409335 +astro-ph/0409357 +astro-ph/0409406 +astro-ph/0409423 +astro-ph/0409431 +astro-ph/0409433 +astro-ph/0409453 +astro-ph/0409481 +astro-ph/0409527 +astro-ph/0409563 +astro-ph/0409574 +astro-ph/0409593 +astro-ph/0409596 +astro-ph/0409630 +astro-ph/0409633 +astro-ph/0409700 +astro-ph/0410033 +astro-ph/0410097 +astro-ph/0410129 +astro-ph/0410164 +astro-ph/0410173 +astro-ph/0410190 +astro-ph/0410195 +astro-ph/0410207 +astro-ph/0410239 +astro-ph/0410241 +astro-ph/0410246 +astro-ph/0410253 +astro-ph/0410294 +astro-ph/0410321 +astro-ph/0410359 +astro-ph/0410448 +astro-ph/0410489 +astro-ph/0410503 +astro-ph/0410522 +astro-ph/0410527 +astro-ph/0410560 +astro-ph/0410561 +astro-ph/0410562 +astro-ph/0410587 +astro-ph/0410615 +astro-ph/0410683 +astro-ph/0410741 +astro-ph/0411040 +astro-ph/0411044 +astro-ph/0411049 +astro-ph/0411059 +astro-ph/0411065 +astro-ph/0411092 +astro-ph/0411150 +astro-ph/0411160 +astro-ph/0411186 +astro-ph/0411209 +astro-ph/0411250 +astro-ph/0411253 +astro-ph/0411257 +astro-ph/0411258 +astro-ph/0411447 +astro-ph/0411463 +astro-ph/0411468 +astro-ph/0411543 +astro-ph/0411552 +astro-ph/0411586 +astro-ph/0411624 +astro-ph/0411630 +astro-ph/0411634 +astro-ph/0411675 +astro-ph/0411681 +astro-ph/0411738 +astro-ph/0411792 +astro-ph/0412010 +astro-ph/0412016 +astro-ph/0412035 +astro-ph/0412061 +astro-ph/0412065 +astro-ph/0412096 +astro-ph/0412097 +astro-ph/0412134 +astro-ph/0412135 +astro-ph/0412138 +astro-ph/0412144 +astro-ph/0412206 +astro-ph/0412210 +astro-ph/0412230 +astro-ph/0412243 +astro-ph/0412249 +astro-ph/0412269 +astro-ph/0412291 +astro-ph/0412308 +astro-ph/0412312 +astro-ph/0412346 +astro-ph/0412347 +astro-ph/0412432 +astro-ph/0412535 +astro-ph/0412549 +astro-ph/0412567 +astro-ph/0412589 +astro-ph/0412605 +astro-ph/0412617 +astro-ph/0412618 +astro-ph/0412638 +astro-ph/0412648 +astro-ph/0412669 +astro-ph/0412702 +astro-ph/0412703 +astro-ph/0501038 +astro-ph/0501063 +astro-ph/0501081 +astro-ph/0501115 +astro-ph/0501168 +astro-ph/0501171 +astro-ph/0501174 +astro-ph/0501194 +astro-ph/0501224 +astro-ph/0501227 +astro-ph/0501236 +astro-ph/0501266 +astro-ph/0501317 +astro-ph/0501362 +astro-ph/0501423 +astro-ph/0501451 +astro-ph/0501475 +astro-ph/0501478 +astro-ph/0501555 +astro-ph/0501607 +astro-ph/0501622 +astro-ph/0501639 +astro-ph/0501656 +astro-ph/0502003 +astro-ph/0502069 +astro-ph/0502090 +astro-ph/0502102 +astro-ph/0502110 +astro-ph/0502133 +astro-ph/0502155 +astro-ph/0502205 +astro-ph/0502210 +astro-ph/0502218 +astro-ph/0502228 +astro-ph/0502243 +astro-ph/0502339 +astro-ph/0502340 +astro-ph/0502344 +astro-ph/0502373 +astro-ph/0502394 +astro-ph/0502486 +astro-ph/0502496 +astro-ph/0502501 +astro-ph/0502562 +astro-ph/0502574 +astro-ph/0502583 +astro-ph/0503041 +astro-ph/0503061 +astro-ph/0503085 +astro-ph/0503093 +astro-ph/0503098 +astro-ph/0503099 +astro-ph/0503102 +astro-ph/0503132 +astro-ph/0503157 +astro-ph/0503160 +astro-ph/0503164 +astro-ph/0503188 +astro-ph/0503212 +astro-ph/0503265 +astro-ph/0503270 +astro-ph/0503275 +astro-ph/0503287 +astro-ph/0503294 +astro-ph/0503338 +astro-ph/0503369 +astro-ph/0503385 +astro-ph/0503405 +astro-ph/0503407 +astro-ph/0503422 +astro-ph/0503425 +astro-ph/0503472 +astro-ph/0503486 +astro-ph/0503497 +astro-ph/0503502 +astro-ph/0503512 +astro-ph/0503516 +astro-ph/0503549 +astro-ph/0503551 +astro-ph/0503555 +astro-ph/0503568 +astro-ph/0503581 +astro-ph/0503582 +astro-ph/0503593 +astro-ph/0503601 +astro-ph/0503603 +astro-ph/0503604 +astro-ph/0503627 +astro-ph/0503679 +astro-ph/0503681 +astro-ph/0503688 +astro-ph/0503690 +astro-ph/0503693 +astro-ph/0504001 +astro-ph/0504022 +astro-ph/0504027 +astro-ph/0504034 +astro-ph/0504050 +astro-ph/0504069 +astro-ph/0504164 +astro-ph/0504169 +astro-ph/0504188 +astro-ph/0504193 +astro-ph/0504210 +astro-ph/0504217 +astro-ph/0504223 +astro-ph/0504225 +astro-ph/0504229 +astro-ph/0504236 +astro-ph/0504264 +astro-ph/0504270 +astro-ph/0504282 +astro-ph/0504290 +astro-ph/0504326 +astro-ph/0504336 +astro-ph/0504372 +astro-ph/0504404 +astro-ph/0504406 +astro-ph/0504416 +astro-ph/0504422 +astro-ph/0504455 +astro-ph/0504482 +astro-ph/0504489 +astro-ph/0504490 +astro-ph/0504505 +astro-ph/0504510 +astro-ph/0504515 +astro-ph/0504519 +astro-ph/0504523 +astro-ph/0504527 +astro-ph/0504549 +astro-ph/0504564 +astro-ph/0504583 +astro-ph/0504591 +astro-ph/0504627 +astro-ph/0504662 +astro-ph/0505006 +astro-ph/0505079 +astro-ph/0505080 +astro-ph/0505085 +astro-ph/0505101 +astro-ph/0505103 +astro-ph/0505113 +astro-ph/0505122 +astro-ph/0505127 +astro-ph/0505133 +astro-ph/0505141 +astro-ph/0505147 +astro-ph/0505155 +astro-ph/0505158 +astro-ph/0505217 +astro-ph/0505230 +astro-ph/0505240 +astro-ph/0505253 +astro-ph/0505261 +astro-ph/0505262 +astro-ph/0505263 +astro-ph/0505267 +astro-ph/0505323 +astro-ph/0505325 +astro-ph/0505328 +astro-ph/0505347 +astro-ph/0505354 +astro-ph/0505361 +astro-ph/0505413 +astro-ph/0505436 +astro-ph/0505474 +astro-ph/0505482 +astro-ph/0505494 +astro-ph/0505518 +astro-ph/0505519 +astro-ph/0505526 +astro-ph/0505536 +astro-ph/0505541 +astro-ph/0505543 +astro-ph/0505551 +astro-ph/0505559 +astro-ph/0505581 +astro-ph/0505586 +astro-ph/0505597 +astro-ph/0505602 +astro-ph/0505607 +astro-ph/0506010 +astro-ph/0506022 +astro-ph/0506026 +astro-ph/0506041 +astro-ph/0506043 +astro-ph/0506044 +astro-ph/0506047 +astro-ph/0506054 +astro-ph/0506056 +astro-ph/0506061 +astro-ph/0506069 +astro-ph/0506091 +astro-ph/0506101 +astro-ph/0506113 +astro-ph/0506117 +astro-ph/0506123 +astro-ph/0506128 +astro-ph/0506130 +astro-ph/0506148 +astro-ph/0506152 +astro-ph/0506157 +astro-ph/0506171 +astro-ph/0506172 +astro-ph/0506175 +astro-ph/0506187 +astro-ph/0506188 +astro-ph/0506189 +astro-ph/0506193 +astro-ph/0506202 +astro-ph/0506203 +astro-ph/0506205 +astro-ph/0506208 +astro-ph/0506210 +astro-ph/0506213 +astro-ph/0506224 +astro-ph/0506238 +astro-ph/0506251 +astro-ph/0506269 +astro-ph/0506287 +astro-ph/0506289 +astro-ph/0506310 +astro-ph/0506315 +astro-ph/0506348 +astro-ph/0506358 +astro-ph/0506398 +astro-ph/0506416 +astro-ph/0506422 +astro-ph/0506424 +astro-ph/0506427 +astro-ph/0506445 +astro-ph/0506467 +astro-ph/0506477 +astro-ph/0506484 +astro-ph/0506499 +astro-ph/0506536 +astro-ph/0506539 +astro-ph/0506543 +astro-ph/0506548 +astro-ph/0506551 +astro-ph/0506570 +astro-ph/0506573 +astro-ph/0506581 +astro-ph/0506608 +astro-ph/0506628 +astro-ph/0506631 +astro-ph/0506635 +astro-ph/0506642 +astro-ph/0506653 +astro-ph/0506672 +astro-ph/0506708 +astro-ph/0506710 +astro-ph/0506728 +astro-ph/0506729 +astro-ph/0506730 +astro-ph/0506733 +astro-ph/0506737 +astro-ph/0506738 +astro-ph/0506740 +astro-ph/0506741 +astro-ph/0506743 +astro-ph/0506754 +astro-ph/0507004 +astro-ph/0507011 +astro-ph/0507023 +astro-ph/0507028 +astro-ph/0507039 +astro-ph/0507045 +astro-ph/0507055 +astro-ph/0507060 +astro-ph/0507071 +astro-ph/0507127 +astro-ph/0507135 +astro-ph/0507139 +astro-ph/0507149 +astro-ph/0507153 +astro-ph/0507164 +astro-ph/0507176 +astro-ph/0507187 +astro-ph/0507238 +astro-ph/0507240 +astro-ph/0507246 +astro-ph/0507254 +astro-ph/0507263 +astro-ph/0507264 +astro-ph/0507295 +astro-ph/0507300 +astro-ph/0507307 +astro-ph/0507314 +astro-ph/0507319 +astro-ph/0507356 +astro-ph/0507387 +astro-ph/0507417 +astro-ph/0507418 +astro-ph/0507427 +astro-ph/0507437 +astro-ph/0507465 +astro-ph/0507467 +astro-ph/0507482 +astro-ph/0507496 +astro-ph/0507522 +astro-ph/0507526 +astro-ph/0507545 +astro-ph/0507578 +astro-ph/0507584 +astro-ph/0507585 +astro-ph/0507612 +astro-ph/0507617 +astro-ph/0507620 +astro-ph/0507632 +astro-ph/0507633 +astro-ph/0507636 +astro-ph/0507645 +astro-ph/0507649 +astro-ph/0507652 +astro-ph/0507663 +astro-ph/0507666 +astro-ph/0507669 +astro-ph/0507675 +astro-ph/0507677 +astro-ph/0507706 +astro-ph/0507709 +astro-ph/0507711 +astro-ph/0508005 +astro-ph/0508018 +astro-ph/0508040 +astro-ph/0508045 +astro-ph/0508049 +astro-ph/0508057 +astro-ph/0508062 +astro-ph/0508069 +astro-ph/0508070 +astro-ph/0508071 +astro-ph/0508091 +astro-ph/0508122 +astro-ph/0508149 +astro-ph/0508156 +astro-ph/0508158 +astro-ph/0508166 +astro-ph/0508178 +astro-ph/0508193 +astro-ph/0508202 +astro-ph/0508203 +astro-ph/0508226 +astro-ph/0508250 +astro-ph/0508267 +astro-ph/0508279 +astro-ph/0508296 +astro-ph/0508300 +astro-ph/0508301 +astro-ph/0508325 +astro-ph/0508333 +astro-ph/0508334 +astro-ph/0508345 +astro-ph/0508349 +astro-ph/0508352 +astro-ph/0508361 +astro-ph/0508378 +astro-ph/0508390 +astro-ph/0508399 +astro-ph/0508401 +astro-ph/0508432 +astro-ph/0508435 +astro-ph/0508437 +astro-ph/0508453 +astro-ph/0508460 +astro-ph/0508468 +astro-ph/0508471 +astro-ph/0508473 +astro-ph/0508489 +astro-ph/0508491 +astro-ph/0508499 +astro-ph/0508501 +astro-ph/0508505 +astro-ph/0508506 +astro-ph/0508514 +astro-ph/0508518 +astro-ph/0508571 +astro-ph/0508573 +astro-ph/0508604 +astro-ph/0508621 +astro-ph/0508636 +astro-ph/0508649 +astro-ph/0508653 +astro-ph/0508675 +astro-ph/0508681 +astro-ph/0509002 +astro-ph/0509020 +astro-ph/0509041 +astro-ph/0509045 +astro-ph/0509067 +astro-ph/0509081 +astro-ph/0509098 +astro-ph/0509103 +astro-ph/0509107 +astro-ph/0509120 +astro-ph/0509129 +astro-ph/0509146 +astro-ph/0509191 +astro-ph/0509204 +astro-ph/0509224 +astro-ph/0509234 +astro-ph/0509258 +astro-ph/0509261 +astro-ph/0509264 +astro-ph/0509267 +astro-ph/0509271 +astro-ph/0509301 +astro-ph/0509309 +astro-ph/0509310 +astro-ph/0509322 +astro-ph/0509325 +astro-ph/0509328 +astro-ph/0509332 +astro-ph/0509358 +astro-ph/0509360 +astro-ph/0509373 +astro-ph/0509395 +astro-ph/0509437 +astro-ph/0509487 +astro-ph/0509531 +astro-ph/0509551 +astro-ph/0509561 +astro-ph/0509565 +astro-ph/0509577 +astro-ph/0509591 +astro-ph/0509609 +astro-ph/0509612 +astro-ph/0509644 +astro-ph/0509648 +astro-ph/0509676 +astro-ph/0509690 +astro-ph/0509702 +astro-ph/0509732 +astro-ph/0509736 +astro-ph/0509742 +astro-ph/0509770 +astro-ph/0509774 +astro-ph/0509779 +astro-ph/0509802 +astro-ph/0509819 +astro-ph/0509821 +astro-ph/0509831 +astro-ph/0509854 +astro-ph/0509887 +astro-ph/0510010 +astro-ph/0510015 +astro-ph/0510017 +astro-ph/0510027 +astro-ph/0510038 +astro-ph/0510050 +astro-ph/0510068 +astro-ph/0510081 +astro-ph/0510100 +astro-ph/0510109 +astro-ph/0510110 +astro-ph/0510112 +astro-ph/0510144 +astro-ph/0510160 +astro-ph/0510171 +astro-ph/0510186 +astro-ph/0510207 +astro-ph/0510211 +astro-ph/0510227 +astro-ph/0510241 +astro-ph/0510246 +astro-ph/0510252 +astro-ph/0510257 +astro-ph/0510289 +astro-ph/0510301 +astro-ph/0510325 +astro-ph/0510330 +astro-ph/0510335 +astro-ph/0510359 +astro-ph/0510372 +astro-ph/0510373 +astro-ph/0510374 +astro-ph/0510375 +astro-ph/0510379 +astro-ph/0510389 +astro-ph/0510390 +astro-ph/0510397 +astro-ph/0510401 +astro-ph/0510407 +astro-ph/0510409 +astro-ph/0510410 +astro-ph/0510420 +astro-ph/0510450 +astro-ph/0510453 +astro-ph/0510454 +astro-ph/0510455 +astro-ph/0510470 +astro-ph/0510485 +astro-ph/0510499 +astro-ph/0510504 +astro-ph/0510505 +astro-ph/0510508 +astro-ph/0510519 +astro-ph/0510527 +astro-ph/0510536 +astro-ph/0510545 +astro-ph/0510549 +astro-ph/0510630 +astro-ph/0510636 +astro-ph/0510653 +astro-ph/0510686 +astro-ph/0510687 +astro-ph/0510691 +astro-ph/0510694 +astro-ph/0510696 +astro-ph/0510705 +astro-ph/0510708 +astro-ph/0510716 +astro-ph/0510720 +astro-ph/0510729 +astro-ph/0510756 +astro-ph/0510760 +astro-ph/0510774 +astro-ph/0510788 +astro-ph/0510803 +astro-ph/0510810 +astro-ph/0510817 +astro-ph/0510820 +astro-ph/0510821 +astro-ph/0510825 +astro-ph/0510857 +astro-ph/0511007 +astro-ph/0511010 +astro-ph/0511020 +astro-ph/0511029 +astro-ph/0511037 +astro-ph/0511040 +astro-ph/0511041 +astro-ph/0511081 +astro-ph/0511082 +astro-ph/0511086 +astro-ph/0511087 +astro-ph/0511089 +astro-ph/0511094 +astro-ph/0511119 +astro-ph/0511132 +astro-ph/0511136 +astro-ph/0511142 +astro-ph/0511148 +astro-ph/0511162 +astro-ph/0511198 +astro-ph/0511202 +astro-ph/0511205 +astro-ph/0511213 +astro-ph/0511218 +astro-ph/0511231 +astro-ph/0511259 +astro-ph/0511275 +astro-ph/0511282 +astro-ph/0511289 +astro-ph/0511313 +astro-ph/0511318 +astro-ph/0511337 +astro-ph/0511377 +astro-ph/0511391 +astro-ph/0511398 +astro-ph/0511400 +astro-ph/0511439 +astro-ph/0511465 +astro-ph/0511468 +astro-ph/0511502 +astro-ph/0511523 +astro-ph/0511547 +astro-ph/0511549 +astro-ph/0511611 +astro-ph/0511617 +astro-ph/0511618 +astro-ph/0511624 +astro-ph/0511626 +astro-ph/0511627 +astro-ph/0511628 +astro-ph/0511630 +astro-ph/0511632 +astro-ph/0511647 +astro-ph/0511648 +astro-ph/0511650 +astro-ph/0511659 +astro-ph/0511661 +astro-ph/0511678 +astro-ph/0511702 +astro-ph/0511726 +astro-ph/0511731 +astro-ph/0511739 +astro-ph/0511774 +astro-ph/0511776 +astro-ph/0511779 +astro-ph/0511780 +astro-ph/0511782 +astro-ph/0511792 +astro-ph/0511812 +astro-ph/0511837 +astro-ph/0511838 +astro-ph/0512011 +astro-ph/0512014 +astro-ph/0512018 +astro-ph/0512043 +astro-ph/0512044 +astro-ph/0512071 +astro-ph/0512082 +astro-ph/0512085 +astro-ph/0512086 +astro-ph/0512088 +astro-ph/0512108 +astro-ph/0512116 +astro-ph/0512119 +astro-ph/0512120 +astro-ph/0512124 +astro-ph/0512127 +astro-ph/0512128 +astro-ph/0512130 +astro-ph/0512131 +astro-ph/0512150 +astro-ph/0512155 +astro-ph/0512169 +astro-ph/0512175 +astro-ph/0512187 +astro-ph/0512198 +astro-ph/0512201 +astro-ph/0512206 +astro-ph/0512207 +astro-ph/0512208 +astro-ph/0512212 +astro-ph/0512213 +astro-ph/0512216 +astro-ph/0512229 +astro-ph/0512232 +astro-ph/0512240 +astro-ph/0512243 +astro-ph/0512254 +astro-ph/0512260 +astro-ph/0512261 +astro-ph/0512262 +astro-ph/0512263 +astro-ph/0512265 +astro-ph/0512300 +astro-ph/0512303 +astro-ph/0512323 +astro-ph/0512339 +astro-ph/0512347 +astro-ph/0512348 +astro-ph/0512411 +astro-ph/0512413 +astro-ph/0512416 +astro-ph/0512431 +astro-ph/0512443 +astro-ph/0512448 +astro-ph/0512465 +astro-ph/0512476 +astro-ph/0512478 +astro-ph/0512480 +astro-ph/0512483 +astro-ph/0512487 +astro-ph/0512490 +astro-ph/0512491 +astro-ph/0512510 +astro-ph/0512526 +astro-ph/0512541 +astro-ph/0512554 +astro-ph/0512569 +astro-ph/0512585 +astro-ph/0512586 +astro-ph/0512588 +astro-ph/0512590 +astro-ph/0512602 +astro-ph/0512611 +astro-ph/0512613 +astro-ph/0512637 +astro-ph/0512651 +astro-ph/0512652 +astro-ph/0601001 +astro-ph/0601004 +astro-ph/0601005 +astro-ph/0601008 +astro-ph/0601009 +astro-ph/0601010 +astro-ph/0601025 +astro-ph/0601028 +astro-ph/0601037 +astro-ph/0601044 +astro-ph/0601047 +astro-ph/0601054 +astro-ph/0601064 +astro-ph/0601081 +astro-ph/0601083 +astro-ph/0601087 +astro-ph/0601089 +astro-ph/0601091 +astro-ph/0601092 +astro-ph/0601115 +astro-ph/0601116 +astro-ph/0601133 +astro-ph/0601134 +astro-ph/0601136 +astro-ph/0601137 +astro-ph/0601138 +astro-ph/0601145 +astro-ph/0601148 +astro-ph/0601155 +astro-ph/0601162 +astro-ph/0601163 +astro-ph/0601187 +astro-ph/0601206 +astro-ph/0601214 +astro-ph/0601246 +astro-ph/0601254 +astro-ph/0601257 +astro-ph/0601268 +astro-ph/0601273 +astro-ph/0601294 +astro-ph/0601301 +astro-ph/0601303 +astro-ph/0601304 +astro-ph/0601311 +astro-ph/0601317 +astro-ph/0601321 +astro-ph/0601346 +astro-ph/0601347 +astro-ph/0601384 +astro-ph/0601394 +astro-ph/0601399 +astro-ph/0601400 +astro-ph/0601401 +astro-ph/0601431 +astro-ph/0601432 +astro-ph/0601434 +astro-ph/0601445 +astro-ph/0601449 +astro-ph/0601453 +astro-ph/0601457 +astro-ph/0601458 +astro-ph/0601485 +astro-ph/0601491 +astro-ph/0601495 +astro-ph/0601506 +astro-ph/0601517 +astro-ph/0601519 +astro-ph/0601529 +astro-ph/0601547 +astro-ph/0601548 +astro-ph/0601549 +astro-ph/0601553 +astro-ph/0601568 +astro-ph/0601575 +astro-ph/0601593 +astro-ph/0601598 +astro-ph/0601610 +astro-ph/0601613 +astro-ph/0601618 +astro-ph/0601628 +astro-ph/0601629 +astro-ph/0601648 +astro-ph/0601668 +astro-ph/0601684 +astro-ph/0601685 +astro-ph/0601700 +astro-ph/0601706 +astro-ph/0601713 +astro-ph/0601714 +astro-ph/0601716 +astro-ph/0602001 +astro-ph/0602003 +astro-ph/0602019 +astro-ph/0602031 +astro-ph/0602032 +astro-ph/0602054 +astro-ph/0602072 +astro-ph/0602074 +astro-ph/0602082 +astro-ph/0602089 +astro-ph/0602092 +astro-ph/0602116 +astro-ph/0602118 +astro-ph/0602120 +astro-ph/0602128 +astro-ph/0602139 +astro-ph/0602143 +astro-ph/0602146 +astro-ph/0602159 +astro-ph/0602163 +astro-ph/0602164 +astro-ph/0602193 +astro-ph/0602202 +astro-ph/0602210 +astro-ph/0602227 +astro-ph/0602245 +astro-ph/0602250 +astro-ph/0602252 +astro-ph/0602258 +astro-ph/0602282 +astro-ph/0602288 +astro-ph/0602289 +astro-ph/0602319 +astro-ph/0602320 +astro-ph/0602322 +astro-ph/0602324 +astro-ph/0602326 +astro-ph/0602327 +astro-ph/0602337 +astro-ph/0602348 +astro-ph/0602351 +astro-ph/0602358 +astro-ph/0602366 +astro-ph/0602375 +astro-ph/0602397 +astro-ph/0602402 +astro-ph/0602405 +astro-ph/0602407 +astro-ph/0602409 +astro-ph/0602413 +astro-ph/0602415 +astro-ph/0602417 +astro-ph/0602422 +astro-ph/0602430 +astro-ph/0602441 +astro-ph/0602449 +astro-ph/0602455 +astro-ph/0602460 +astro-ph/0602467 +astro-ph/0602473 +astro-ph/0602474 +astro-ph/0602477 +astro-ph/0602478 +astro-ph/0602484 +astro-ph/0602519 +astro-ph/0602526 +astro-ph/0602529 +astro-ph/0602542 +astro-ph/0602545 +astro-ph/0602553 +astro-ph/0602557 +astro-ph/0602569 +astro-ph/0602570 +astro-ph/0602571 +astro-ph/0602573 +astro-ph/0602577 +astro-ph/0602579 +astro-ph/0602599 +astro-ph/0602604 +astro-ph/0602606 +astro-ph/0602613 +astro-ph/0602616 +astro-ph/0602633 +astro-ph/0603007 +astro-ph/0603010 +astro-ph/0603014 +astro-ph/0603027 +astro-ph/0603032 +astro-ph/0603044 +astro-ph/0603052 +astro-ph/0603055 +astro-ph/0603057 +astro-ph/0603060 +astro-ph/0603063 +astro-ph/0603073 +astro-ph/0603087 +astro-ph/0603091 +astro-ph/0603108 +astro-ph/0603109 +astro-ph/0603120 +astro-ph/0603123 +astro-ph/0603126 +astro-ph/0603130 +astro-ph/0603131 +astro-ph/0603142 +astro-ph/0603152 +astro-ph/0603158 +astro-ph/0603163 +astro-ph/0603166 +astro-ph/0603169 +astro-ph/0603171 +astro-ph/0603175 +astro-ph/0603176 +astro-ph/0603200 +astro-ph/0603209 +astro-ph/0603220 +astro-ph/0603224 +astro-ph/0603235 +astro-ph/0603241 +astro-ph/0603246 +astro-ph/0603250 +astro-ph/0603257 +astro-ph/0603265 +astro-ph/0603280 +astro-ph/0603282 +astro-ph/0603283 +astro-ph/0603286 +astro-ph/0603291 +astro-ph/0603300 +astro-ph/0603308 +astro-ph/0603317 +astro-ph/0603327 +astro-ph/0603334 +astro-ph/0603338 +astro-ph/0603352 +astro-ph/0603353 +astro-ph/0603363 +astro-ph/0603366 +astro-ph/0603368 +astro-ph/0603371 +astro-ph/0603380 +astro-ph/0603397 +astro-ph/0603398 +astro-ph/0603401 +astro-ph/0603407 +astro-ph/0603425 +astro-ph/0603438 +astro-ph/0603441 +astro-ph/0603448 +astro-ph/0603450 +astro-ph/0603452 +astro-ph/0603464 +astro-ph/0603476 +astro-ph/0603478 +astro-ph/0603487 +astro-ph/0603488 +astro-ph/0603496 +astro-ph/0603500 +astro-ph/0603510 +astro-ph/0603511 +astro-ph/0603517 +astro-ph/0603522 +astro-ph/0603527 +astro-ph/0603530 +astro-ph/0603536 +astro-ph/0603537 +astro-ph/0603540 +astro-ph/0603541 +astro-ph/0603542 +astro-ph/0603545 +astro-ph/0603553 +astro-ph/0603566 +astro-ph/0603572 +astro-ph/0603582 +astro-ph/0603583 +astro-ph/0603588 +astro-ph/0603601 +astro-ph/0603621 +astro-ph/0603625 +astro-ph/0603647 +astro-ph/0603660 +astro-ph/0603665 +astro-ph/0603671 +astro-ph/0603675 +astro-ph/0603680 +astro-ph/0603685 +astro-ph/0603696 +astro-ph/0603699 +astro-ph/0603703 +astro-ph/0603704 +astro-ph/0603725 +astro-ph/0603732 +astro-ph/0603738 +astro-ph/0603761 +astro-ph/0603764 +astro-ph/0603770 +astro-ph/0603784 +astro-ph/0603791 +astro-ph/0603793 +astro-ph/0603803 +astro-ph/0603806 +astro-ph/0603817 +astro-ph/0603828 +astro-ph/0603830 +astro-ph/0603833 +astro-ph/0603848 +astro-ph/0603850 +astro-ph/0603853 +astro-ph/0603859 +astro-ph/0604003 +astro-ph/0604012 +astro-ph/0604014 +astro-ph/0604019 +astro-ph/0604039 +astro-ph/0604045 +astro-ph/0604070 +astro-ph/0604078 +astro-ph/0604080 +astro-ph/0604083 +astro-ph/0604087 +astro-ph/0604093 +astro-ph/0604095 +astro-ph/0604098 +astro-ph/0604099 +astro-ph/0604107 +astro-ph/0604111 +astro-ph/0604112 +astro-ph/0604113 +astro-ph/0604115 +astro-ph/0604119 +astro-ph/0604120 +astro-ph/0604123 +astro-ph/0604125 +astro-ph/0604129 +astro-ph/0604139 +astro-ph/0604142 +astro-ph/0604148 +astro-ph/0604149 +astro-ph/0604151 +astro-ph/0604152 +astro-ph/0604167 +astro-ph/0604171 +astro-ph/0604173 +astro-ph/0604175 +astro-ph/0604182 +astro-ph/0604188 +astro-ph/0604189 +astro-ph/0604192 +astro-ph/0604199 +astro-ph/0604201 +astro-ph/0604202 +astro-ph/0604206 +astro-ph/0604210 +astro-ph/0604211 +astro-ph/0604215 +astro-ph/0604217 +astro-ph/0604218 +astro-ph/0604219 +astro-ph/0604220 +astro-ph/0604222 +astro-ph/0604224 +astro-ph/0604225 +astro-ph/0604231 +astro-ph/0604244 +astro-ph/0604247 +astro-ph/0604251 +astro-ph/0604253 +astro-ph/0604256 +astro-ph/0604259 +astro-ph/0604260 +astro-ph/0604264 +astro-ph/0604265 +astro-ph/0604267 +astro-ph/0604272 +astro-ph/0604277 +astro-ph/0604279 +astro-ph/0604284 +astro-ph/0604285 +astro-ph/0604286 +astro-ph/0604291 +astro-ph/0604293 +astro-ph/0604296 +astro-ph/0604297 +astro-ph/0604299 +astro-ph/0604315 +astro-ph/0604318 +astro-ph/0604320 +astro-ph/0604321 +astro-ph/0604323 +astro-ph/0604324 +astro-ph/0604330 +astro-ph/0604333 +astro-ph/0604334 +astro-ph/0604336 +astro-ph/0604338 +astro-ph/0604341 +astro-ph/0604345 +astro-ph/0604348 +astro-ph/0604349 +astro-ph/0604353 +astro-ph/0604357 +astro-ph/0604358 +astro-ph/0604359 +astro-ph/0604360 +astro-ph/0604362 +astro-ph/0604381 +astro-ph/0604388 +astro-ph/0604390 +astro-ph/0604399 +astro-ph/0604400 +astro-ph/0604402 +astro-ph/0604406 +astro-ph/0604408 +astro-ph/0604409 +astro-ph/0604413 +astro-ph/0604414 +astro-ph/0604418 +astro-ph/0604420 +astro-ph/0604421 +astro-ph/0604422 +astro-ph/0604426 +astro-ph/0604429 +astro-ph/0604431 +astro-ph/0604438 +astro-ph/0604445 +astro-ph/0604449 +astro-ph/0604453 +astro-ph/0604458 +astro-ph/0604466 +astro-ph/0604471 +astro-ph/0604472 +astro-ph/0604473 +astro-ph/0604478 +astro-ph/0604483 +astro-ph/0604484 +astro-ph/0604485 +astro-ph/0604487 +astro-ph/0604490 +astro-ph/0604492 +astro-ph/0604493 +astro-ph/0604494 +astro-ph/0604495 +astro-ph/0604496 +astro-ph/0604501 +astro-ph/0604503 +astro-ph/0604504 +astro-ph/0604505 +astro-ph/0604509 +astro-ph/0604515 +astro-ph/0604518 +astro-ph/0604523 +astro-ph/0604526 +astro-ph/0604530 +astro-ph/0604531 +astro-ph/0604532 +astro-ph/0604533 +astro-ph/0604534 +astro-ph/0604539 +astro-ph/0604542 +astro-ph/0604552 +astro-ph/0604553 +astro-ph/0604554 +astro-ph/0604557 +astro-ph/0604563 +astro-ph/0604564 +astro-ph/0604570 +astro-ph/0604573 +astro-ph/0604574 +astro-ph/0604587 +astro-ph/0604591 +astro-ph/0604592 +astro-ph/0604607 +astro-ph/0604616 +astro-ph/0605003 +astro-ph/0605005 +astro-ph/0605006 +astro-ph/0605007 +astro-ph/0605010 +astro-ph/0605016 +astro-ph/0605018 +astro-ph/0605026 +astro-ph/0605030 +astro-ph/0605032 +astro-ph/0605035 +astro-ph/0605071 +astro-ph/0605076 +astro-ph/0605077 +astro-ph/0605078 +astro-ph/0605096 +astro-ph/0605098 +astro-ph/0605103 +astro-ph/0605110 +astro-ph/0605120 +astro-ph/0605121 +astro-ph/0605134 +astro-ph/0605135 +astro-ph/0605139 +astro-ph/0605141 +astro-ph/0605143 +astro-ph/0605148 +astro-ph/0605168 +astro-ph/0605170 +astro-ph/0605193 +astro-ph/0605197 +astro-ph/0605199 +astro-ph/0605204 +astro-ph/0605205 +astro-ph/0605210 +astro-ph/0605214 +astro-ph/0605215 +astro-ph/0605223 +astro-ph/0605224 +astro-ph/0605226 +astro-ph/0605228 +astro-ph/0605241 +astro-ph/0605250 +astro-ph/0605262 +astro-ph/0605266 +astro-ph/0605267 +astro-ph/0605272 +astro-ph/0605281 +astro-ph/0605283 +astro-ph/0605288 +astro-ph/0605292 +astro-ph/0605294 +astro-ph/0605304 +astro-ph/0605305 +astro-ph/0605306 +astro-ph/0605312 +astro-ph/0605313 +astro-ph/0605314 +astro-ph/0605325 +astro-ph/0605330 +astro-ph/0605338 +astro-ph/0605355 +astro-ph/0605362 +astro-ph/0605365 +astro-ph/0605374 +astro-ph/0605377 +astro-ph/0605381 +astro-ph/0605382 +astro-ph/0605384 +astro-ph/0605387 +astro-ph/0605388 +astro-ph/0605389 +astro-ph/0605392 +astro-ph/0605397 +astro-ph/0605401 +astro-ph/0605402 +astro-ph/0605406 +astro-ph/0605408 +astro-ph/0605409 +astro-ph/0605414 +astro-ph/0605417 +astro-ph/0605418 +astro-ph/0605422 +astro-ph/0605435 +astro-ph/0605445 +astro-ph/0605449 +astro-ph/0605455 +astro-ph/0605456 +astro-ph/0605468 +astro-ph/0605481 +astro-ph/0605485 +astro-ph/0605492 +astro-ph/0605495 +astro-ph/0605497 +astro-ph/0605503 +astro-ph/0605510 +astro-ph/0605514 +astro-ph/0605516 +astro-ph/0605520 +astro-ph/0605529 +astro-ph/0605530 +astro-ph/0605536 +astro-ph/0605538 +astro-ph/0605542 +astro-ph/0605546 +astro-ph/0605547 +astro-ph/0605548 +astro-ph/0605563 +astro-ph/0605569 +astro-ph/0605574 +astro-ph/0605578 +astro-ph/0605580 +astro-ph/0605584 +astro-ph/0605592 +astro-ph/0605593 +astro-ph/0605594 +astro-ph/0605596 +astro-ph/0605601 +astro-ph/0605603 +astro-ph/0605605 +astro-ph/0605609 +astro-ph/0605621 +astro-ph/0605632 +astro-ph/0605633 +astro-ph/0605634 +astro-ph/0605640 +astro-ph/0605641 +astro-ph/0605645 +astro-ph/0605649 +astro-ph/0605653 +astro-ph/0605657 +astro-ph/0605662 +astro-ph/0605669 +astro-ph/0605670 +astro-ph/0605671 +astro-ph/0605674 +astro-ph/0605678 +astro-ph/0605683 +astro-ph/0605687 +astro-ph/0605690 +astro-ph/0605691 +astro-ph/0605702 +astro-ph/0605705 +astro-ph/0605706 +astro-ph/0605707 +astro-ph/0605708 +astro-ph/0605709 +astro-ph/0605710 +astro-ph/0605723 +astro-ph/0605724 +astro-ph/0605727 +astro-ph/0605733 +astro-ph/0605734 +astro-ph/0605745 +astro-ph/0605748 +astro-ph/0605750 +astro-ph/0605753 +astro-ph/0606006 +astro-ph/0606008 +astro-ph/0606011 +astro-ph/0606015 +astro-ph/0606019 +astro-ph/0606022 +astro-ph/0606023 +astro-ph/0606027 +astro-ph/0606028 +astro-ph/0606039 +astro-ph/0606040 +astro-ph/0606042 +astro-ph/0606046 +astro-ph/0606052 +astro-ph/0606064 +astro-ph/0606067 +astro-ph/0606070 +astro-ph/0606073 +astro-ph/0606078 +astro-ph/0606079 +astro-ph/0606081 +astro-ph/0606084 +astro-ph/0606086 +astro-ph/0606087 +astro-ph/0606088 +astro-ph/0606089 +astro-ph/0606092 +astro-ph/0606096 +astro-ph/0606097 +astro-ph/0606098 +astro-ph/0606103 +astro-ph/0606107 +astro-ph/0606110 +astro-ph/0606111 +astro-ph/0606117 +astro-ph/0606119 +astro-ph/0606121 +astro-ph/0606125 +astro-ph/0606127 +astro-ph/0606129 +astro-ph/0606133 +astro-ph/0606135 +astro-ph/0606136 +astro-ph/0606138 +astro-ph/0606140 +astro-ph/0606144 +astro-ph/0606148 +astro-ph/0606158 +astro-ph/0606162 +astro-ph/0606165 +astro-ph/0606170 +astro-ph/0606181 +astro-ph/0606184 +astro-ph/0606186 +astro-ph/0606192 +astro-ph/0606194 +astro-ph/0606195 +astro-ph/0606201 +astro-ph/0606207 +astro-ph/0606208 +astro-ph/0606209 +astro-ph/0606211 +astro-ph/0606213 +astro-ph/0606214 +astro-ph/0606216 +astro-ph/0606218 +astro-ph/0606228 +astro-ph/0606232 +astro-ph/0606236 +astro-ph/0606240 +astro-ph/0606242 +astro-ph/0606244 +astro-ph/0606253 +astro-ph/0606255 +astro-ph/0606276 +astro-ph/0606277 +astro-ph/0606281 +astro-ph/0606283 +astro-ph/0606285 +astro-ph/0606286 +astro-ph/0606289 +astro-ph/0606308 +astro-ph/0606310 +astro-ph/0606313 +astro-ph/0606318 +astro-ph/0606321 +astro-ph/0606322 +astro-ph/0606323 +astro-ph/0606330 +astro-ph/0606331 +astro-ph/0606337 +astro-ph/0606346 +astro-ph/0606348 +astro-ph/0606349 +astro-ph/0606352 +astro-ph/0606354 +astro-ph/0606358 +astro-ph/0606360 +astro-ph/0606365 +astro-ph/0606375 +astro-ph/0606382 +astro-ph/0606386 +astro-ph/0606410 +astro-ph/0606416 +astro-ph/0606417 +astro-ph/0606422 +astro-ph/0606428 +astro-ph/0606429 +astro-ph/0606431 +astro-ph/0606432 +astro-ph/0606433 +astro-ph/0606442 +astro-ph/0606449 +astro-ph/0606454 +astro-ph/0606457 +astro-ph/0606459 +astro-ph/0606461 +astro-ph/0606466 +astro-ph/0606479 +astro-ph/0606482 +astro-ph/0606483 +astro-ph/0606487 +astro-ph/0606492 +astro-ph/0606494 +astro-ph/0606496 +astro-ph/0606500 +astro-ph/0606504 +astro-ph/0606516 +astro-ph/0606519 +astro-ph/0606523 +astro-ph/0606524 +astro-ph/0606526 +astro-ph/0606527 +astro-ph/0606529 +astro-ph/0606530 +astro-ph/0606531 +astro-ph/0606532 +astro-ph/0606536 +astro-ph/0606541 +astro-ph/0606544 +astro-ph/0606545 +astro-ph/0606549 +astro-ph/0606552 +astro-ph/0606559 +astro-ph/0606567 +astro-ph/0606568 +astro-ph/0606570 +astro-ph/0606575 +astro-ph/0606577 +astro-ph/0606579 +astro-ph/0606581 +astro-ph/0606585 +astro-ph/0606595 +astro-ph/0606599 +astro-ph/0606604 +astro-ph/0606605 +astro-ph/0606607 +astro-ph/0606608 +astro-ph/0606613 +astro-ph/0606615 +astro-ph/0606617 +astro-ph/0606618 +astro-ph/0606635 +astro-ph/0606638 +astro-ph/0606639 +astro-ph/0606640 +astro-ph/0606641 +astro-ph/0606642 +astro-ph/0606645 +astro-ph/0606648 +astro-ph/0606649 +astro-ph/0606654 +astro-ph/0606655 +astro-ph/0606665 +astro-ph/0606669 +astro-ph/0606677 +astro-ph/0606679 +astro-ph/0606686 +astro-ph/0606689 +astro-ph/0606690 +astro-ph/0606693 +astro-ph/0606696 +astro-ph/0606699 +astro-ph/0606702 +astro-ph/0606705 +astro-ph/0606709 +astro-ph/0606711 +astro-ph/0606712 +astro-ph/0606714 +astro-ph/0606716 +astro-ph/0606725 +astro-ph/0606731 +astro-ph/0606732 +astro-ph/0606740 +astro-ph/0606742 +astro-ph/0606744 +astro-ph/0606746 +astro-ph/0606752 +astro-ph/0606755 +astro-ph/0606756 +astro-ph/0606761 +astro-ph/0607005 +astro-ph/0607006 +astro-ph/0607007 +astro-ph/0607011 +astro-ph/0607013 +astro-ph/0607014 +astro-ph/0607024 +astro-ph/0607025 +astro-ph/0607028 +astro-ph/0607032 +astro-ph/0607036 +astro-ph/0607039 +astro-ph/0607042 +astro-ph/0607046 +astro-ph/0607049 +astro-ph/0607052 +astro-ph/0607053 +astro-ph/0607055 +astro-ph/0607059 +astro-ph/0607060 +astro-ph/0607062 +astro-ph/0607063 +astro-ph/0607064 +astro-ph/0607069 +astro-ph/0607070 +astro-ph/0607073 +astro-ph/0607078 +astro-ph/0607080 +astro-ph/0607085 +astro-ph/0607089 +astro-ph/0607092 +astro-ph/0607093 +astro-ph/0607095 +astro-ph/0607112 +astro-ph/0607117 +astro-ph/0607118 +astro-ph/0607119 +astro-ph/0607121 +astro-ph/0607122 +astro-ph/0607125 +astro-ph/0607126 +astro-ph/0607132 +astro-ph/0607138 +astro-ph/0607145 +astro-ph/0607147 +astro-ph/0607148 +astro-ph/0607150 +astro-ph/0607158 +astro-ph/0607160 +astro-ph/0607161 +astro-ph/0607165 +astro-ph/0607166 +astro-ph/0607175 +astro-ph/0607179 +astro-ph/0607180 +astro-ph/0607181 +astro-ph/0607203 +astro-ph/0607204 +astro-ph/0607205 +astro-ph/0607207 +astro-ph/0607212 +astro-ph/0607216 +astro-ph/0607219 +astro-ph/0607223 +astro-ph/0607226 +astro-ph/0607232 +astro-ph/0607234 +astro-ph/0607237 +astro-ph/0607241 +astro-ph/0607243 +astro-ph/0607245 +astro-ph/0607248 +astro-ph/0607249 +astro-ph/0607255 +astro-ph/0607265 +astro-ph/0607267 +astro-ph/0607269 +astro-ph/0607275 +astro-ph/0607280 +astro-ph/0607294 +astro-ph/0607306 +astro-ph/0607308 +astro-ph/0607312 +astro-ph/0607313 +astro-ph/0607314 +astro-ph/0607315 +astro-ph/0607318 +astro-ph/0607320 +astro-ph/0607331 +astro-ph/0607333 +astro-ph/0607335 +astro-ph/0607341 +astro-ph/0607346 +astro-ph/0607347 +astro-ph/0607354 +astro-ph/0607356 +astro-ph/0607361 +astro-ph/0607363 +astro-ph/0607364 +astro-ph/0607366 +astro-ph/0607368 +astro-ph/0607374 +astro-ph/0607381 +astro-ph/0607385 +astro-ph/0607391 +astro-ph/0607392 +astro-ph/0607393 +astro-ph/0607401 +astro-ph/0607402 +astro-ph/0607405 +astro-ph/0607416 +astro-ph/0607417 +astro-ph/0607423 +astro-ph/0607428 +astro-ph/0607431 +astro-ph/0607437 +astro-ph/0607440 +astro-ph/0607446 +astro-ph/0607450 +astro-ph/0607453 +astro-ph/0607456 +astro-ph/0607461 +astro-ph/0607464 +astro-ph/0607468 +astro-ph/0607476 +astro-ph/0607480 +astro-ph/0607485 +astro-ph/0607488 +astro-ph/0607494 +astro-ph/0607502 +astro-ph/0607508 +astro-ph/0607509 +astro-ph/0607510 +astro-ph/0607512 +astro-ph/0607514 +astro-ph/0607517 +astro-ph/0607523 +astro-ph/0607524 +astro-ph/0607526 +astro-ph/0607527 +astro-ph/0607528 +astro-ph/0607536 +astro-ph/0607537 +astro-ph/0607538 +astro-ph/0607540 +astro-ph/0607541 +astro-ph/0607544 +astro-ph/0607549 +astro-ph/0607554 +astro-ph/0607555 +astro-ph/0607556 +astro-ph/0607557 +astro-ph/0607571 +astro-ph/0607575 +astro-ph/0607576 +astro-ph/0607579 +astro-ph/0607580 +astro-ph/0607581 +astro-ph/0607583 +astro-ph/0607586 +astro-ph/0607598 +astro-ph/0607604 +astro-ph/0607605 +astro-ph/0607606 +astro-ph/0607607 +astro-ph/0607616 +astro-ph/0607617 +astro-ph/0607618 +astro-ph/0607626 +astro-ph/0607628 +astro-ph/0607630 +astro-ph/0607632 +astro-ph/0607634 +astro-ph/0607635 +astro-ph/0607639 +astro-ph/0607642 +astro-ph/0607643 +astro-ph/0607647 +astro-ph/0607651 +astro-ph/0607652 +astro-ph/0607654 +astro-ph/0607665 +astro-ph/0607666 +astro-ph/0607674 +astro-ph/0608003 +astro-ph/0608007 +astro-ph/0608020 +astro-ph/0608021 +astro-ph/0608024 +astro-ph/0608025 +astro-ph/0608026 +astro-ph/0608033 +astro-ph/0608035 +astro-ph/0608036 +astro-ph/0608037 +astro-ph/0608040 +astro-ph/0608050 +astro-ph/0608053 +astro-ph/0608058 +astro-ph/0608061 +astro-ph/0608067 +astro-ph/0608071 +astro-ph/0608083 +astro-ph/0608087 +astro-ph/0608090 +astro-ph/0608093 +astro-ph/0608096 +astro-ph/0608098 +astro-ph/0608099 +astro-ph/0608102 +astro-ph/0608104 +astro-ph/0608107 +astro-ph/0608114 +astro-ph/0608115 +astro-ph/0608119 +astro-ph/0608122 +astro-ph/0608123 +astro-ph/0608124 +astro-ph/0608125 +astro-ph/0608129 +astro-ph/0608132 +astro-ph/0608133 +astro-ph/0608137 +astro-ph/0608143 +astro-ph/0608144 +astro-ph/0608145 +astro-ph/0608151 +astro-ph/0608154 +astro-ph/0608155 +astro-ph/0608156 +astro-ph/0608159 +astro-ph/0608165 +astro-ph/0608167 +astro-ph/0608168 +astro-ph/0608169 +astro-ph/0608174 +astro-ph/0608179 +astro-ph/0608182 +astro-ph/0608184 +astro-ph/0608185 +astro-ph/0608188 +astro-ph/0608189 +astro-ph/0608190 +astro-ph/0608191 +astro-ph/0608197 +astro-ph/0608204 +astro-ph/0608206 +astro-ph/0608209 +astro-ph/0608210 +astro-ph/0608211 +astro-ph/0608212 +astro-ph/0608224 +astro-ph/0608225 +astro-ph/0608228 +astro-ph/0608230 +astro-ph/0608247 +astro-ph/0608249 +astro-ph/0608253 +astro-ph/0608268 +astro-ph/0608270 +astro-ph/0608274 +astro-ph/0608276 +astro-ph/0608279 +astro-ph/0608294 +astro-ph/0608295 +astro-ph/0608297 +astro-ph/0608301 +astro-ph/0608304 +astro-ph/0608305 +astro-ph/0608313 +astro-ph/0608315 +astro-ph/0608320 +astro-ph/0608326 +astro-ph/0608329 +astro-ph/0608332 +astro-ph/0608341 +astro-ph/0608351 +astro-ph/0608352 +astro-ph/0608354 +astro-ph/0608357 +astro-ph/0608359 +astro-ph/0608360 +astro-ph/0608362 +astro-ph/0608364 +astro-ph/0608366 +astro-ph/0608372 +astro-ph/0608374 +astro-ph/0608375 +astro-ph/0608377 +astro-ph/0608379 +astro-ph/0608385 +astro-ph/0608387 +astro-ph/0608388 +astro-ph/0608391 +astro-ph/0608398 +astro-ph/0608401 +astro-ph/0608402 +astro-ph/0608404 +astro-ph/0608406 +astro-ph/0608408 +astro-ph/0608411 +astro-ph/0608415 +astro-ph/0608416 +astro-ph/0608419 +astro-ph/0608420 +astro-ph/0608429 +astro-ph/0608436 +astro-ph/0608448 +astro-ph/0608451 +astro-ph/0608453 +astro-ph/0608455 +astro-ph/0608468 +astro-ph/0608471 +astro-ph/0608472 +astro-ph/0608473 +astro-ph/0608476 +astro-ph/0608483 +astro-ph/0608486 +astro-ph/0608489 +astro-ph/0608490 +astro-ph/0608495 +astro-ph/0608496 +astro-ph/0608497 +astro-ph/0608502 +astro-ph/0608508 +astro-ph/0608509 +astro-ph/0608512 +astro-ph/0608514 +astro-ph/0608515 +astro-ph/0608517 +astro-ph/0608519 +astro-ph/0608522 +astro-ph/0608527 +astro-ph/0608528 +astro-ph/0608529 +astro-ph/0608530 +astro-ph/0608531 +astro-ph/0608538 +astro-ph/0608541 +astro-ph/0608544 +astro-ph/0608547 +astro-ph/0608548 +astro-ph/0608550 +astro-ph/0608555 +astro-ph/0608556 +astro-ph/0608563 +astro-ph/0608565 +astro-ph/0608567 +astro-ph/0608568 +astro-ph/0608569 +astro-ph/0608570 +astro-ph/0608571 +astro-ph/0608573 +astro-ph/0608579 +astro-ph/0608585 +astro-ph/0608588 +astro-ph/0608589 +astro-ph/0608599 +astro-ph/0608602 +astro-ph/0608607 +astro-ph/0608608 +astro-ph/0608609 +astro-ph/0608610 +astro-ph/0608619 +astro-ph/0608621 +astro-ph/0608626 +astro-ph/0608629 +astro-ph/0608632 +astro-ph/0608633 +astro-ph/0608635 +astro-ph/0608636 +astro-ph/0608639 +astro-ph/0608640 +astro-ph/0608641 +astro-ph/0608643 +astro-ph/0608645 +astro-ph/0608647 +astro-ph/0608649 +astro-ph/0608650 +astro-ph/0608656 +astro-ph/0608660 +astro-ph/0608663 +astro-ph/0608667 +astro-ph/0608670 +astro-ph/0608679 +astro-ph/0608684 +astro-ph/0608686 +astro-ph/0608688 +astro-ph/0608689 +astro-ph/0608690 +astro-ph/0608696 +astro-ph/0608701 +astro-ph/0608703 +astro-ph/0608706 +astro-ph/0608707 +astro-ph/0608710 +astro-ph/0608713 +astro-ph/0609001 +astro-ph/0609002 +astro-ph/0609006 +astro-ph/0609007 +astro-ph/0609008 +astro-ph/0609009 +astro-ph/0609011 +astro-ph/0609013 +astro-ph/0609014 +astro-ph/0609016 +astro-ph/0609020 +astro-ph/0609027 +astro-ph/0609034 +astro-ph/0609035 +astro-ph/0609037 +astro-ph/0609040 +astro-ph/0609045 +astro-ph/0609048 +astro-ph/0609054 +astro-ph/0609061 +astro-ph/0609064 +astro-ph/0609073 +astro-ph/0609074 +astro-ph/0609079 +astro-ph/0609082 +astro-ph/0609090 +astro-ph/0609091 +astro-ph/0609095 +astro-ph/0609099 +astro-ph/0609101 +astro-ph/0609109 +astro-ph/0609113 +astro-ph/0609115 +astro-ph/0609117 +astro-ph/0609119 +astro-ph/0609122 +astro-ph/0609125 +astro-ph/0609126 +astro-ph/0609136 +astro-ph/0609137 +astro-ph/0609139 +astro-ph/0609141 +astro-ph/0609142 +astro-ph/0609149 +astro-ph/0609151 +astro-ph/0609154 +astro-ph/0609166 +astro-ph/0609171 +astro-ph/0609176 +astro-ph/0609180 +astro-ph/0609181 +astro-ph/0609183 +astro-ph/0609187 +astro-ph/0609189 +astro-ph/0609190 +astro-ph/0609194 +astro-ph/0609199 +astro-ph/0609201 +astro-ph/0609203 +astro-ph/0609205 +astro-ph/0609211 +astro-ph/0609212 +astro-ph/0609214 +astro-ph/0609216 +astro-ph/0609217 +astro-ph/0609222 +astro-ph/0609223 +astro-ph/0609229 +astro-ph/0609233 +astro-ph/0609236 +astro-ph/0609239 +astro-ph/0609243 +astro-ph/0609244 +astro-ph/0609246 +astro-ph/0609247 +astro-ph/0609248 +astro-ph/0609249 +astro-ph/0609252 +astro-ph/0609261 +astro-ph/0609265 +astro-ph/0609268 +astro-ph/0609272 +astro-ph/0609273 +astro-ph/0609274 +astro-ph/0609275 +astro-ph/0609285 +astro-ph/0609289 +astro-ph/0609295 +astro-ph/0609296 +astro-ph/0609301 +astro-ph/0609302 +astro-ph/0609308 +astro-ph/0609309 +astro-ph/0609314 +astro-ph/0609316 +astro-ph/0609317 +astro-ph/0609326 +astro-ph/0609328 +astro-ph/0609330 +astro-ph/0609331 +astro-ph/0609334 +astro-ph/0609335 +astro-ph/0609337 +astro-ph/0609339 +astro-ph/0609349 +astro-ph/0609356 +astro-ph/0609357 +astro-ph/0609359 +astro-ph/0609364 +astro-ph/0609367 +astro-ph/0609369 +astro-ph/0609375 +astro-ph/0609386 +astro-ph/0609396 +astro-ph/0609406 +astro-ph/0609407 +astro-ph/0609409 +astro-ph/0609410 +astro-ph/0609411 +astro-ph/0609412 +astro-ph/0609414 +astro-ph/0609421 +astro-ph/0609423 +astro-ph/0609425 +astro-ph/0609429 +astro-ph/0609440 +astro-ph/0609442 +astro-ph/0609448 +astro-ph/0609451 +astro-ph/0609453 +astro-ph/0609455 +astro-ph/0609458 +astro-ph/0609459 +astro-ph/0609460 +astro-ph/0609462 +astro-ph/0609463 +astro-ph/0609464 +astro-ph/0609465 +astro-ph/0609468 +astro-ph/0609473 +astro-ph/0609479 +astro-ph/0609481 +astro-ph/0609486 +astro-ph/0609488 +astro-ph/0609498 +astro-ph/0609499 +astro-ph/0609502 +astro-ph/0609504 +astro-ph/0609505 +astro-ph/0609512 +astro-ph/0609525 +astro-ph/0609526 +astro-ph/0609528 +astro-ph/0609533 +astro-ph/0609534 +astro-ph/0609535 +astro-ph/0609540 +astro-ph/0609541 +astro-ph/0609547 +astro-ph/0609548 +astro-ph/0609551 +astro-ph/0609552 +astro-ph/0609557 +astro-ph/0609561 +astro-ph/0609568 +astro-ph/0609570 +astro-ph/0609577 +astro-ph/0609579 +astro-ph/0609581 +astro-ph/0609583 +astro-ph/0609585 +astro-ph/0609586 +astro-ph/0609587 +astro-ph/0609588 +astro-ph/0609589 +astro-ph/0609590 +astro-ph/0609594 +astro-ph/0609596 +astro-ph/0609617 +astro-ph/0609629 +astro-ph/0609633 +astro-ph/0609635 +astro-ph/0609636 +astro-ph/0609638 +astro-ph/0609640 +astro-ph/0609641 +astro-ph/0609648 +astro-ph/0609650 +astro-ph/0609651 +astro-ph/0609655 +astro-ph/0609656 +astro-ph/0609674 +astro-ph/0609679 +astro-ph/0609682 +astro-ph/0609687 +astro-ph/0609688 +astro-ph/0609694 +astro-ph/0609695 +astro-ph/0609696 +astro-ph/0609697 +astro-ph/0609699 +astro-ph/0609700 +astro-ph/0609702 +astro-ph/0609704 +astro-ph/0609705 +astro-ph/0609707 +astro-ph/0609708 +astro-ph/0609711 +astro-ph/0609712 +astro-ph/0609713 +astro-ph/0609714 +astro-ph/0609717 +astro-ph/0609725 +astro-ph/0609726 +astro-ph/0609728 +astro-ph/0609729 +astro-ph/0609731 +astro-ph/0609732 +astro-ph/0609736 +astro-ph/0609737 +astro-ph/0609739 +astro-ph/0609747 +astro-ph/0609749 +astro-ph/0609757 +astro-ph/0609767 +astro-ph/0609768 +astro-ph/0609773 +astro-ph/0609775 +astro-ph/0609777 +astro-ph/0609779 +astro-ph/0609788 +astro-ph/0609791 +astro-ph/0609793 +astro-ph/0609795 +astro-ph/0609798 +astro-ph/0609800 +astro-ph/0609801 +astro-ph/0609803 +astro-ph/0609805 +astro-ph/0609811 +astro-ph/0609814 +astro-ph/0609818 +astro-ph/0609819 +astro-ph/0609829 +astro-ph/0609831 +astro-ph/0610003 +astro-ph/0610006 +astro-ph/0610009 +astro-ph/0610010 +astro-ph/0610015 +astro-ph/0610017 +astro-ph/0610022 +astro-ph/0610023 +astro-ph/0610026 +astro-ph/0610032 +astro-ph/0610034 +astro-ph/0610038 +astro-ph/0610044 +astro-ph/0610046 +astro-ph/0610048 +astro-ph/0610052 +astro-ph/0610054 +astro-ph/0610055 +astro-ph/0610056 +astro-ph/0610059 +astro-ph/0610060 +astro-ph/0610061 +astro-ph/0610071 +astro-ph/0610072 +astro-ph/0610073 +astro-ph/0610074 +astro-ph/0610077 +astro-ph/0610078 +astro-ph/0610079 +astro-ph/0610080 +astro-ph/0610082 +astro-ph/0610083 +astro-ph/0610084 +astro-ph/0610085 +astro-ph/0610087 +astro-ph/0610090 +astro-ph/0610094 +astro-ph/0610096 +astro-ph/0610099 +astro-ph/0610105 +astro-ph/0610107 +astro-ph/0610108 +astro-ph/0610112 +astro-ph/0610116 +astro-ph/0610122 +astro-ph/0610125 +astro-ph/0610126 +astro-ph/0610128 +astro-ph/0610129 +astro-ph/0610130 +astro-ph/0610131 +astro-ph/0610134 +astro-ph/0610135 +astro-ph/0610137 +astro-ph/0610139 +astro-ph/0610140 +astro-ph/0610141 +astro-ph/0610144 +astro-ph/0610145 +astro-ph/0610149 +astro-ph/0610150 +astro-ph/0610152 +astro-ph/0610153 +astro-ph/0610159 +astro-ph/0610165 +astro-ph/0610168 +astro-ph/0610172 +astro-ph/0610173 +astro-ph/0610174 +astro-ph/0610175 +astro-ph/0610176 +astro-ph/0610177 +astro-ph/0610182 +astro-ph/0610184 +astro-ph/0610185 +astro-ph/0610186 +astro-ph/0610187 +astro-ph/0610188 +astro-ph/0610192 +astro-ph/0610195 +astro-ph/0610196 +astro-ph/0610197 +astro-ph/0610201 +astro-ph/0610202 +astro-ph/0610204 +astro-ph/0610208 +astro-ph/0610209 +astro-ph/0610214 +astro-ph/0610220 +astro-ph/0610221 +astro-ph/0610222 +astro-ph/0610226 +astro-ph/0610234 +astro-ph/0610237 +astro-ph/0610239 +astro-ph/0610241 +astro-ph/0610247 +astro-ph/0610251 +astro-ph/0610253 +astro-ph/0610255 +astro-ph/0610257 +astro-ph/0610260 +astro-ph/0610261 +astro-ph/0610265 +astro-ph/0610267 +astro-ph/0610268 +astro-ph/0610270 +astro-ph/0610272 +astro-ph/0610273 +astro-ph/0610277 +astro-ph/0610278 +astro-ph/0610279 +astro-ph/0610280 +astro-ph/0610281 +astro-ph/0610283 +astro-ph/0610284 +astro-ph/0610294 +astro-ph/0610295 +astro-ph/0610297 +astro-ph/0610298 +astro-ph/0610299 +astro-ph/0610304 +astro-ph/0610307 +astro-ph/0610309 +astro-ph/0610310 +astro-ph/0610313 +astro-ph/0610314 +astro-ph/0610316 +astro-ph/0610326 +astro-ph/0610329 +astro-ph/0610331 +astro-ph/0610332 +astro-ph/0610336 +astro-ph/0610340 +astro-ph/0610344 +astro-ph/0610350 +astro-ph/0610353 +astro-ph/0610356 +astro-ph/0610361 +astro-ph/0610365 +astro-ph/0610368 +astro-ph/0610369 +astro-ph/0610372 +astro-ph/0610373 +astro-ph/0610374 +astro-ph/0610380 +astro-ph/0610381 +astro-ph/0610382 +astro-ph/0610384 +astro-ph/0610385 +astro-ph/0610386 +astro-ph/0610390 +astro-ph/0610391 +astro-ph/0610393 +astro-ph/0610396 +astro-ph/0610398 +astro-ph/0610405 +astro-ph/0610407 +astro-ph/0610413 +astro-ph/0610417 +astro-ph/0610419 +astro-ph/0610421 +astro-ph/0610422 +astro-ph/0610423 +astro-ph/0610424 +astro-ph/0610427 +astro-ph/0610429 +astro-ph/0610435 +astro-ph/0610437 +astro-ph/0610438 +astro-ph/0610441 +astro-ph/0610447 +astro-ph/0610449 +astro-ph/0610453 +astro-ph/0610454 +astro-ph/0610457 +astro-ph/0610458 +astro-ph/0610461 +astro-ph/0610467 +astro-ph/0610470 +astro-ph/0610472 +astro-ph/0610474 +astro-ph/0610477 +astro-ph/0610480 +astro-ph/0610481 +astro-ph/0610483 +astro-ph/0610484 +astro-ph/0610485 +astro-ph/0610487 +astro-ph/0610494 +astro-ph/0610504 +astro-ph/0610508 +astro-ph/0610514 +astro-ph/0610520 +astro-ph/0610521 +astro-ph/0610522 +astro-ph/0610529 +astro-ph/0610530 +astro-ph/0610532 +astro-ph/0610538 +astro-ph/0610545 +astro-ph/0610549 +astro-ph/0610550 +astro-ph/0610551 +astro-ph/0610552 +astro-ph/0610554 +astro-ph/0610555 +astro-ph/0610556 +astro-ph/0610562 +astro-ph/0610564 +astro-ph/0610565 +astro-ph/0610566 +astro-ph/0610569 +astro-ph/0610574 +astro-ph/0610577 +astro-ph/0610578 +astro-ph/0610583 +astro-ph/0610590 +astro-ph/0610595 +astro-ph/0610602 +astro-ph/0610605 +astro-ph/0610608 +astro-ph/0610617 +astro-ph/0610618 +astro-ph/0610621 +astro-ph/0610626 +astro-ph/0610631 +astro-ph/0610633 +astro-ph/0610634 +astro-ph/0610639 +astro-ph/0610644 +astro-ph/0610645 +astro-ph/0610648 +astro-ph/0610650 +astro-ph/0610651 +astro-ph/0610654 +astro-ph/0610656 +astro-ph/0610657 +astro-ph/0610660 +astro-ph/0610661 +astro-ph/0610668 +astro-ph/0610671 +astro-ph/0610674 +astro-ph/0610677 +astro-ph/0610678 +astro-ph/0610680 +astro-ph/0610682 +astro-ph/0610683 +astro-ph/0610688 +astro-ph/0610690 +astro-ph/0610691 +astro-ph/0610693 +astro-ph/0610697 +astro-ph/0610700 +astro-ph/0610704 +astro-ph/0610706 +astro-ph/0610707 +astro-ph/0610714 +astro-ph/0610715 +astro-ph/0610718 +astro-ph/0610719 +astro-ph/0610725 +astro-ph/0610726 +astro-ph/0610728 +astro-ph/0610729 +astro-ph/0610730 +astro-ph/0610733 +astro-ph/0610734 +astro-ph/0610735 +astro-ph/0610742 +astro-ph/0610747 +astro-ph/0610748 +astro-ph/0610753 +astro-ph/0610757 +astro-ph/0610759 +astro-ph/0610762 +astro-ph/0610763 +astro-ph/0610767 +astro-ph/0610768 +astro-ph/0610775 +astro-ph/0610776 +astro-ph/0610786 +astro-ph/0610788 +astro-ph/0610789 +astro-ph/0610793 +astro-ph/0610794 +astro-ph/0610797 +astro-ph/0610801 +astro-ph/0610806 +astro-ph/0610807 +astro-ph/0610811 +astro-ph/0610812 +astro-ph/0610817 +astro-ph/0610819 +astro-ph/0610820 +astro-ph/0610821 +astro-ph/0610829 +astro-ph/0610830 +astro-ph/0610838 +astro-ph/0610840 +astro-ph/0610843 +astro-ph/0610844 +astro-ph/0610846 +astro-ph/0610862 +astro-ph/0610865 +astro-ph/0610868 +astro-ph/0610870 +astro-ph/0610882 +astro-ph/0610886 +astro-ph/0610888 +astro-ph/0610890 +astro-ph/0610891 +astro-ph/0610894 +astro-ph/0610896 +astro-ph/0610898 +astro-ph/0610902 +astro-ph/0610909 +astro-ph/0610910 +astro-ph/0610911 +astro-ph/0610912 +astro-ph/0610914 +astro-ph/0610918 +astro-ph/0610919 +astro-ph/0610920 +astro-ph/0610922 +astro-ph/0610924 +astro-ph/0610928 +astro-ph/0610931 +astro-ph/0610932 +astro-ph/0610933 +astro-ph/0610934 +astro-ph/0610941 +astro-ph/0610951 +astro-ph/0610952 +astro-ph/0610953 +astro-ph/0610954 +astro-ph/0610955 +astro-ph/0610958 +astro-ph/0610959 +astro-ph/0610960 +astro-ph/0610961 +astro-ph/0610962 +astro-ph/0611002 +astro-ph/0611004 +astro-ph/0611008 +astro-ph/0611009 +astro-ph/0611014 +astro-ph/0611015 +astro-ph/0611017 +astro-ph/0611022 +astro-ph/0611025 +astro-ph/0611026 +astro-ph/0611031 +astro-ph/0611032 +astro-ph/0611035 +astro-ph/0611045 +astro-ph/0611048 +astro-ph/0611050 +astro-ph/0611052 +astro-ph/0611053 +astro-ph/0611055 +astro-ph/0611058 +astro-ph/0611062 +astro-ph/0611063 +astro-ph/0611064 +astro-ph/0611066 +astro-ph/0611068 +astro-ph/0611069 +astro-ph/0611071 +astro-ph/0611072 +astro-ph/0611075 +astro-ph/0611076 +astro-ph/0611078 +astro-ph/0611082 +astro-ph/0611083 +astro-ph/0611087 +astro-ph/0611093 +astro-ph/0611094 +astro-ph/0611095 +astro-ph/0611097 +astro-ph/0611101 +astro-ph/0611102 +astro-ph/0611103 +astro-ph/0611106 +astro-ph/0611107 +astro-ph/0611111 +astro-ph/0611112 +astro-ph/0611117 +astro-ph/0611120 +astro-ph/0611122 +astro-ph/0611124 +astro-ph/0611126 +astro-ph/0611129 +astro-ph/0611130 +astro-ph/0611132 +astro-ph/0611134 +astro-ph/0611135 +astro-ph/0611140 +astro-ph/0611142 +astro-ph/0611144 +astro-ph/0611145 +astro-ph/0611150 +astro-ph/0611151 +astro-ph/0611153 +astro-ph/0611154 +astro-ph/0611156 +astro-ph/0611157 +astro-ph/0611164 +astro-ph/0611165 +astro-ph/0611166 +astro-ph/0611171 +astro-ph/0611175 +astro-ph/0611177 +astro-ph/0611180 +astro-ph/0611183 +astro-ph/0611184 +astro-ph/0611189 +astro-ph/0611190 +astro-ph/0611191 +astro-ph/0611192 +astro-ph/0611196 +astro-ph/0611197 +astro-ph/0611199 +astro-ph/0611200 +astro-ph/0611201 +astro-ph/0611211 +astro-ph/0611215 +astro-ph/0611217 +astro-ph/0611224 +astro-ph/0611226 +astro-ph/0611230 +astro-ph/0611231 +astro-ph/0611234 +astro-ph/0611238 +astro-ph/0611241 +astro-ph/0611242 +astro-ph/0611244 +astro-ph/0611245 +astro-ph/0611246 +astro-ph/0611247 +astro-ph/0611251 +astro-ph/0611253 +astro-ph/0611255 +astro-ph/0611258 +astro-ph/0611260 +astro-ph/0611266 +astro-ph/0611268 +astro-ph/0611271 +astro-ph/0611279 +astro-ph/0611281 +astro-ph/0611282 +astro-ph/0611295 +astro-ph/0611296 +astro-ph/0611301 +astro-ph/0611302 +astro-ph/0611310 +astro-ph/0611311 +astro-ph/0611313 +astro-ph/0611327 +astro-ph/0611338 +astro-ph/0611339 +astro-ph/0611342 +astro-ph/0611345 +astro-ph/0611347 +astro-ph/0611348 +astro-ph/0611352 +astro-ph/0611354 +astro-ph/0611355 +astro-ph/0611358 +astro-ph/0611359 +astro-ph/0611360 +astro-ph/0611365 +astro-ph/0611371 +astro-ph/0611372 +astro-ph/0611373 +astro-ph/0611374 +astro-ph/0611375 +astro-ph/0611380 +astro-ph/0611382 +astro-ph/0611385 +astro-ph/0611388 +astro-ph/0611395 +astro-ph/0611397 +astro-ph/0611398 +astro-ph/0611401 +astro-ph/0611406 +astro-ph/0611408 +astro-ph/0611409 +astro-ph/0611415 +astro-ph/0611418 +astro-ph/0611421 +astro-ph/0611423 +astro-ph/0611431 +astro-ph/0611435 +astro-ph/0611439 +astro-ph/0611440 +astro-ph/0611441 +astro-ph/0611442 +astro-ph/0611447 +astro-ph/0611449 +astro-ph/0611450 +astro-ph/0611453 +astro-ph/0611454 +astro-ph/0611460 +astro-ph/0611469 +astro-ph/0611474 +astro-ph/0611479 +astro-ph/0611493 +astro-ph/0611495 +astro-ph/0611496 +astro-ph/0611499 +astro-ph/0611501 +astro-ph/0611502 +astro-ph/0611503 +astro-ph/0611507 +astro-ph/0611512 +astro-ph/0611517 +astro-ph/0611518 +astro-ph/0611521 +astro-ph/0611522 +astro-ph/0611524 +astro-ph/0611531 +astro-ph/0611535 +astro-ph/0611536 +astro-ph/0611537 +astro-ph/0611539 +astro-ph/0611540 +astro-ph/0611541 +astro-ph/0611543 +astro-ph/0611544 +astro-ph/0611545 +astro-ph/0611546 +astro-ph/0611547 +astro-ph/0611549 +astro-ph/0611550 +astro-ph/0611554 +astro-ph/0611557 +astro-ph/0611558 +astro-ph/0611568 +astro-ph/0611569 +astro-ph/0611572 +astro-ph/0611579 +astro-ph/0611580 +astro-ph/0611581 +astro-ph/0611582 +astro-ph/0611583 +astro-ph/0611585 +astro-ph/0611589 +astro-ph/0611592 +astro-ph/0611594 +astro-ph/0611601 +astro-ph/0611604 +astro-ph/0611605 +astro-ph/0611608 +astro-ph/0611610 +astro-ph/0611617 +astro-ph/0611618 +astro-ph/0611621 +astro-ph/0611628 +astro-ph/0611629 +astro-ph/0611630 +astro-ph/0611633 +astro-ph/0611634 +astro-ph/0611636 +astro-ph/0611640 +astro-ph/0611641 +astro-ph/0611642 +astro-ph/0611643 +astro-ph/0611646 +astro-ph/0611647 +astro-ph/0611648 +astro-ph/0611649 +astro-ph/0611652 +astro-ph/0611653 +astro-ph/0611658 +astro-ph/0611659 +astro-ph/0611660 +astro-ph/0611664 +astro-ph/0611665 +astro-ph/0611668 +astro-ph/0611671 +astro-ph/0611676 +astro-ph/0611677 +astro-ph/0611678 +astro-ph/0611679 +astro-ph/0611682 +astro-ph/0611683 +astro-ph/0611684 +astro-ph/0611685 +astro-ph/0611686 +astro-ph/0611692 +astro-ph/0611693 +astro-ph/0611694 +astro-ph/0611695 +astro-ph/0611698 +astro-ph/0611706 +astro-ph/0611707 +astro-ph/0611709 +astro-ph/0611711 +astro-ph/0611717 +astro-ph/0611719 +astro-ph/0611720 +astro-ph/0611722 +astro-ph/0611723 +astro-ph/0611725 +astro-ph/0611726 +astro-ph/0611728 +astro-ph/0611733 +astro-ph/0611737 +astro-ph/0611739 +astro-ph/0611740 +astro-ph/0611741 +astro-ph/0611742 +astro-ph/0611744 +astro-ph/0611746 +astro-ph/0611750 +astro-ph/0611751 +astro-ph/0611755 +astro-ph/0611756 +astro-ph/0611761 +astro-ph/0611763 +astro-ph/0611764 +astro-ph/0611768 +astro-ph/0611769 +astro-ph/0611771 +astro-ph/0611775 +astro-ph/0611776 +astro-ph/0611778 +astro-ph/0611783 +astro-ph/0611792 +astro-ph/0611794 +astro-ph/0611800 +astro-ph/0611802 +astro-ph/0611807 +astro-ph/0611813 +astro-ph/0611817 +astro-ph/0611819 +astro-ph/0611821 +astro-ph/0611827 +astro-ph/0611829 +astro-ph/0611832 +astro-ph/0611834 +astro-ph/0611835 +astro-ph/0611837 +astro-ph/0611838 +astro-ph/0611839 +astro-ph/0611840 +astro-ph/0611841 +astro-ph/0611851 +astro-ph/0611852 +astro-ph/0611861 +astro-ph/0611865 +astro-ph/0611867 +astro-ph/0611868 +astro-ph/0611869 +astro-ph/0611870 +astro-ph/0611871 +astro-ph/0611873 +astro-ph/0611874 +astro-ph/0611876 +astro-ph/0611877 +astro-ph/0611882 +astro-ph/0611884 +astro-ph/0611887 +astro-ph/0611889 +astro-ph/0611891 +astro-ph/0611892 +astro-ph/0611894 +astro-ph/0611899 +astro-ph/0611900 +astro-ph/0611905 +astro-ph/0611909 +astro-ph/0611914 +astro-ph/0611915 +astro-ph/0611917 +astro-ph/0611920 +astro-ph/0611922 +astro-ph/0611924 +astro-ph/0611925 +astro-ph/0611927 +astro-ph/0611931 +astro-ph/0611932 +astro-ph/0611934 +astro-ph/0611935 +astro-ph/0611937 +astro-ph/0611940 +astro-ph/0611942 +astro-ph/0611945 +astro-ph/0611948 +astro-ph/0612001 +astro-ph/0612002 +astro-ph/0612004 +astro-ph/0612005 +astro-ph/0612006 +astro-ph/0612007 +astro-ph/0612010 +astro-ph/0612015 +astro-ph/0612016 +astro-ph/0612018 +astro-ph/0612021 +astro-ph/0612022 +astro-ph/0612030 +astro-ph/0612033 +astro-ph/0612036 +astro-ph/0612041 +astro-ph/0612042 +astro-ph/0612048 +astro-ph/0612050 +astro-ph/0612051 +astro-ph/0612054 +astro-ph/0612060 +astro-ph/0612070 +astro-ph/0612072 +astro-ph/0612074 +astro-ph/0612079 +astro-ph/0612081 +astro-ph/0612084 +astro-ph/0612085 +astro-ph/0612087 +astro-ph/0612091 +astro-ph/0612103 +astro-ph/0612104 +astro-ph/0612106 +astro-ph/0612108 +astro-ph/0612110 +astro-ph/0612116 +astro-ph/0612119 +astro-ph/0612121 +astro-ph/0612124 +astro-ph/0612128 +astro-ph/0612132 +astro-ph/0612137 +astro-ph/0612140 +astro-ph/0612143 +astro-ph/0612144 +astro-ph/0612145 +astro-ph/0612147 +astro-ph/0612151 +astro-ph/0612156 +astro-ph/0612157 +astro-ph/0612160 +astro-ph/0612163 +astro-ph/0612168 +astro-ph/0612170 +astro-ph/0612171 +astro-ph/0612174 +astro-ph/0612175 +astro-ph/0612177 +astro-ph/0612181 +astro-ph/0612187 +astro-ph/0612189 +astro-ph/0612190 +astro-ph/0612191 +astro-ph/0612192 +astro-ph/0612193 +astro-ph/0612195 +astro-ph/0612196 +astro-ph/0612205 +astro-ph/0612207 +astro-ph/0612211 +astro-ph/0612216 +astro-ph/0612217 +astro-ph/0612218 +astro-ph/0612219 +astro-ph/0612224 +astro-ph/0612226 +astro-ph/0612227 +astro-ph/0612229 +astro-ph/0612235 +astro-ph/0612236 +astro-ph/0612244 +astro-ph/0612245 +astro-ph/0612247 +astro-ph/0612251 +astro-ph/0612252 +astro-ph/0612253 +astro-ph/0612257 +astro-ph/0612263 +astro-ph/0612268 +astro-ph/0612270 +astro-ph/0612271 +astro-ph/0612277 +astro-ph/0612279 +astro-ph/0612280 +astro-ph/0612282 +astro-ph/0612283 +astro-ph/0612284 +astro-ph/0612293 +astro-ph/0612294 +astro-ph/0612298 +astro-ph/0612300 +astro-ph/0612307 +astro-ph/0612308 +astro-ph/0612317 +astro-ph/0612318 +astro-ph/0612325 +astro-ph/0612327 +astro-ph/0612337 +astro-ph/0612347 +astro-ph/0612354 +astro-ph/0612357 +astro-ph/0612359 +astro-ph/0612371 +astro-ph/0612378 +astro-ph/0612385 +astro-ph/0612395 +astro-ph/0612397 +astro-ph/0612402 +astro-ph/0612407 +astro-ph/0612416 +astro-ph/0612424 +astro-ph/0612425 +astro-ph/0612427 +astro-ph/0612430 +astro-ph/0612431 +astro-ph/0612434 +astro-ph/0612436 +astro-ph/0612439 +astro-ph/0612440 +astro-ph/0612444 +astro-ph/0612452 +astro-ph/0612457 +astro-ph/0612460 +astro-ph/0612467 +astro-ph/0612473 +astro-ph/0612479 +astro-ph/0612490 +astro-ph/0612493 +astro-ph/0612501 +astro-ph/0612502 +astro-ph/0612504 +astro-ph/0612505 +astro-ph/0612512 +astro-ph/0612514 +astro-ph/0612517 +astro-ph/0612518 +astro-ph/0612521 +astro-ph/0612524 +astro-ph/0612528 +astro-ph/0612536 +astro-ph/0612538 +astro-ph/0612539 +astro-ph/0612542 +astro-ph/0612549 +astro-ph/0612554 +astro-ph/0612562 +astro-ph/0612565 +astro-ph/0612566 +astro-ph/0612569 +astro-ph/0612573 +astro-ph/0612574 +astro-ph/0612578 +astro-ph/0612580 +astro-ph/0612587 +astro-ph/0612593 +astro-ph/0612598 +astro-ph/0612600 +astro-ph/0612607 +astro-ph/0612608 +astro-ph/0612611 +astro-ph/0612612 +astro-ph/0612625 +astro-ph/0612629 +astro-ph/0612635 +astro-ph/0612636 +astro-ph/0612638 +astro-ph/0612640 +astro-ph/0612641 +astro-ph/0612642 +astro-ph/0612644 +astro-ph/0612645 +astro-ph/0612656 +astro-ph/0612660 +astro-ph/0612666 +astro-ph/0612669 +astro-ph/0612673 +astro-ph/0612687 +astro-ph/0612700 +astro-ph/0612701 +astro-ph/0612708 +astro-ph/0612709 +astro-ph/0612712 +astro-ph/0612713 +astro-ph/0612718 +astro-ph/0612719 +astro-ph/0612720 +astro-ph/0612725 +astro-ph/0612728 +astro-ph/0612732 +astro-ph/0612734 +astro-ph/0612738 +astro-ph/0612741 +astro-ph/0612745 +astro-ph/0612746 +astro-ph/0612750 +astro-ph/0612751 +astro-ph/0612752 +astro-ph/0612755 +astro-ph/0612756 +astro-ph/0612761 +astro-ph/0612771 +astro-ph/0612775 +astro-ph/0612781 +astro-ph/0612782 +astro-ph/0612786 +astro-ph/0612787 +astro-ph/0701001 +astro-ph/0701004 +astro-ph/0701013 +astro-ph/0701014 +astro-ph/0701015 +astro-ph/0701018 +astro-ph/0701020 +astro-ph/0701027 +astro-ph/0701028 +astro-ph/0701030 +astro-ph/0701034 +astro-ph/0701035 +astro-ph/0701038 +astro-ph/0701041 +astro-ph/0701044 +astro-ph/0701046 +astro-ph/0701047 +astro-ph/0701054 +astro-ph/0701055 +astro-ph/0701068 +astro-ph/0701070 +astro-ph/0701074 +astro-ph/0701078 +astro-ph/0701080 +astro-ph/0701082 +astro-ph/0701104 +astro-ph/0701120 +astro-ph/0701128 +astro-ph/0701130 +astro-ph/0701131 +astro-ph/0701135 +astro-ph/0701136 +astro-ph/0701140 +astro-ph/0701141 +astro-ph/0701142 +astro-ph/0701148 +astro-ph/0701149 +astro-ph/0701151 +astro-ph/0701152 +astro-ph/0701157 +astro-ph/0701158 +astro-ph/0701161 +astro-ph/0701162 +astro-ph/0701166 +astro-ph/0701168 +astro-ph/0701178 +astro-ph/0701184 +astro-ph/0701186 +astro-ph/0701192 +astro-ph/0701193 +astro-ph/0701194 +astro-ph/0701201 +astro-ph/0701206 +astro-ph/0701211 +astro-ph/0701213 +astro-ph/0701216 +astro-ph/0701218 +astro-ph/0701221 +astro-ph/0701224 +astro-ph/0701245 +astro-ph/0701250 +astro-ph/0701267 +astro-ph/0701271 +astro-ph/0701275 +astro-ph/0701278 +astro-ph/0701280 +astro-ph/0701281 +astro-ph/0701282 +astro-ph/0701285 +astro-ph/0701286 +astro-ph/0701295 +astro-ph/0701298 +astro-ph/0701300 +astro-ph/0701301 +astro-ph/0701303 +astro-ph/0701304 +astro-ph/0701305 +astro-ph/0701308 +astro-ph/0701312 +astro-ph/0701315 +astro-ph/0701320 +astro-ph/0701324 +astro-ph/0701327 +astro-ph/0701332 +astro-ph/0701335 +astro-ph/0701338 +astro-ph/0701340 +astro-ph/0701345 +astro-ph/0701351 +astro-ph/0701352 +astro-ph/0701353 +astro-ph/0701356 +astro-ph/0701358 +astro-ph/0701364 +astro-ph/0701370 +astro-ph/0701373 +astro-ph/0701379 +astro-ph/0701380 +astro-ph/0701383 +astro-ph/0701384 +astro-ph/0701387 +astro-ph/0701388 +astro-ph/0701395 +astro-ph/0701397 +astro-ph/0701399 +astro-ph/0701405 +astro-ph/0701407 +astro-ph/0701410 +astro-ph/0701412 +astro-ph/0701419 +astro-ph/0701420 +astro-ph/0701423 +astro-ph/0701426 +astro-ph/0701427 +astro-ph/0701428 +astro-ph/0701429 +astro-ph/0701432 +astro-ph/0701433 +astro-ph/0701435 +astro-ph/0701442 +astro-ph/0701444 +astro-ph/0701449 +astro-ph/0701452 +astro-ph/0701454 +astro-ph/0701461 +astro-ph/0701464 +astro-ph/0701465 +astro-ph/0701467 +astro-ph/0701469 +astro-ph/0701470 +astro-ph/0701471 +astro-ph/0701472 +astro-ph/0701475 +astro-ph/0701479 +astro-ph/0701481 +astro-ph/0701487 +astro-ph/0701489 +astro-ph/0701497 +astro-ph/0701501 +astro-ph/0701506 +astro-ph/0701509 +astro-ph/0701527 +astro-ph/0701529 +astro-ph/0701531 +astro-ph/0701532 +astro-ph/0701534 +astro-ph/0701535 +astro-ph/0701538 +astro-ph/0701541 +astro-ph/0701542 +astro-ph/0701550 +astro-ph/0701551 +astro-ph/0701555 +astro-ph/0701556 +astro-ph/0701558 +astro-ph/0701560 +astro-ph/0701562 +astro-ph/0701564 +astro-ph/0701567 +astro-ph/0701571 +astro-ph/0701576 +astro-ph/0701578 +astro-ph/0701582 +astro-ph/0701590 +astro-ph/0701593 +astro-ph/0701596 +astro-ph/0701602 +astro-ph/0701612 +astro-ph/0701614 +astro-ph/0701617 +astro-ph/0701618 +astro-ph/0701624 +astro-ph/0701629 +astro-ph/0701630 +astro-ph/0701634 +astro-ph/0701635 +astro-ph/0701636 +astro-ph/0701644 +astro-ph/0701645 +astro-ph/0701649 +astro-ph/0701662 +astro-ph/0701664 +astro-ph/0701667 +astro-ph/0701668 +astro-ph/0701670 +astro-ph/0701674 +astro-ph/0701679 +astro-ph/0701680 +astro-ph/0701682 +astro-ph/0701690 +astro-ph/0701694 +astro-ph/0701695 +astro-ph/0701699 +astro-ph/0701707 +astro-ph/0701714 +astro-ph/0701715 +astro-ph/0701722 +astro-ph/0701724 +astro-ph/0701725 +astro-ph/0701730 +astro-ph/0701731 +astro-ph/0701733 +astro-ph/0701734 +astro-ph/0701736 +astro-ph/0701739 +astro-ph/0701745 +astro-ph/0701747 +astro-ph/0701751 +astro-ph/0701752 +astro-ph/0701761 +astro-ph/0701762 +astro-ph/0701764 +astro-ph/0701766 +astro-ph/0701768 +astro-ph/0701778 +astro-ph/0701782 +astro-ph/0701783 +astro-ph/0701784 +astro-ph/0701786 +astro-ph/0701798 +astro-ph/0701801 +astro-ph/0701802 +astro-ph/0701803 +astro-ph/0701804 +astro-ph/0701811 +astro-ph/0701821 +astro-ph/0701841 +astro-ph/0701842 +astro-ph/0701849 +astro-ph/0701850 +astro-ph/0701851 +astro-ph/0701857 +astro-ph/0701858 +astro-ph/0701859 +astro-ph/0701866 +astro-ph/0701867 +astro-ph/0701871 +astro-ph/0701872 +astro-ph/0701877 +astro-ph/0701879 +astro-ph/0701880 +astro-ph/0701884 +astro-ph/0701885 +astro-ph/0701886 +astro-ph/0701887 +astro-ph/0701889 +astro-ph/0701890 +astro-ph/0701894 +astro-ph/0701896 +astro-ph/0701898 +astro-ph/0701900 +astro-ph/0701903 +astro-ph/0701908 +astro-ph/0701914 +astro-ph/0701915 +astro-ph/0701920 +astro-ph/0701923 +astro-ph/0701924 +astro-ph/0701925 +astro-ph/0702001 +astro-ph/0702002 +astro-ph/0702003 +astro-ph/0702005 +astro-ph/0702010 +astro-ph/0702012 +astro-ph/0702013 +astro-ph/0702029 +astro-ph/0702040 +astro-ph/0702048 +astro-ph/0702053 +astro-ph/0702058 +astro-ph/0702060 +astro-ph/0702063 +astro-ph/0702065 +astro-ph/0702068 +astro-ph/0702072 +astro-ph/0702073 +astro-ph/0702076 +astro-ph/0702077 +astro-ph/0702078 +astro-ph/0702079 +astro-ph/0702082 +astro-ph/0702084 +astro-ph/0702087 +astro-ph/0702088 +astro-ph/0702090 +astro-ph/0702092 +astro-ph/0702095 +astro-ph/0702096 +astro-ph/0702097 +astro-ph/0702104 +astro-ph/0702105 +astro-ph/0702107 +astro-ph/0702108 +astro-ph/0702109 +astro-ph/0702112 +astro-ph/0702113 +astro-ph/0702121 +astro-ph/0702123 +astro-ph/0702126 +astro-ph/0702132 +astro-ph/0702133 +astro-ph/0702136 +astro-ph/0702138 +astro-ph/0702143 +astro-ph/0702144 +astro-ph/0702145 +astro-ph/0702147 +astro-ph/0702149 +astro-ph/0702155 +astro-ph/0702157 +astro-ph/0702170 +astro-ph/0702171 +astro-ph/0702176 +astro-ph/0702178 +astro-ph/0702181 +astro-ph/0702182 +astro-ph/0702187 +astro-ph/0702196 +astro-ph/0702199 +astro-ph/0702202 +astro-ph/0702204 +astro-ph/0702207 +astro-ph/0702209 +astro-ph/0702214 +astro-ph/0702217 +astro-ph/0702223 +astro-ph/0702228 +astro-ph/0702229 +astro-ph/0702234 +astro-ph/0702239 +astro-ph/0702240 +astro-ph/0702241 +astro-ph/0702247 +astro-ph/0702249 +astro-ph/0702258 +astro-ph/0702259 +astro-ph/0702260 +astro-ph/0702261 +astro-ph/0702264 +astro-ph/0702269 +astro-ph/0702272 +astro-ph/0702278 +astro-ph/0702282 +astro-ph/0702284 +astro-ph/0702287 +astro-ph/0702288 +astro-ph/0702289 +astro-ph/0702291 +astro-ph/0702292 +astro-ph/0702297 +astro-ph/0702305 +astro-ph/0702308 +astro-ph/0702310 +astro-ph/0702315 +astro-ph/0702316 +astro-ph/0702317 +astro-ph/0702324 +astro-ph/0702335 +astro-ph/0702340 +astro-ph/0702346 +astro-ph/0702348 +astro-ph/0702350 +astro-ph/0702351 +astro-ph/0702354 +astro-ph/0702355 +astro-ph/0702360 +astro-ph/0702361 +astro-ph/0702362 +astro-ph/0702364 +astro-ph/0702365 +astro-ph/0702366 +astro-ph/0702369 +astro-ph/0702373 +astro-ph/0702375 +astro-ph/0702376 +astro-ph/0702379 +astro-ph/0702381 +astro-ph/0702382 +astro-ph/0702389 +astro-ph/0702390 +astro-ph/0702398 +astro-ph/0702402 +astro-ph/0702406 +astro-ph/0702408 +astro-ph/0702410 +astro-ph/0702423 +astro-ph/0702432 +astro-ph/0702435 +astro-ph/0702436 +astro-ph/0702440 +astro-ph/0702441 +astro-ph/0702445 +astro-ph/0702446 +astro-ph/0702455 +astro-ph/0702460 +astro-ph/0702464 +astro-ph/0702467 +astro-ph/0702468 +astro-ph/0702473 +astro-ph/0702476 +astro-ph/0702478 +astro-ph/0702479 +astro-ph/0702481 +astro-ph/0702484 +astro-ph/0702485 +astro-ph/0702487 +astro-ph/0702491 +astro-ph/0702503 +astro-ph/0702505 +astro-ph/0702506 +astro-ph/0702508 +astro-ph/0702518 +astro-ph/0702519 +astro-ph/0702524 +astro-ph/0702525 +astro-ph/0702527 +astro-ph/0702529 +astro-ph/0702532 +astro-ph/0702537 +astro-ph/0702543 +astro-ph/0702551 +astro-ph/0702553 +astro-ph/0702562 +astro-ph/0702565 +astro-ph/0702566 +astro-ph/0702567 +astro-ph/0702572 +astro-ph/0702581 +astro-ph/0702583 +astro-ph/0702584 +astro-ph/0702587 +astro-ph/0702589 +astro-ph/0702600 +astro-ph/0702601 +astro-ph/0702606 +astro-ph/0702607 +astro-ph/0702608 +astro-ph/0702611 +astro-ph/0702613 +astro-ph/0702614 +astro-ph/0702617 +astro-ph/0702619 +astro-ph/0702627 +astro-ph/0702628 +astro-ph/0702632 +astro-ph/0702637 +astro-ph/0702645 +astro-ph/0702648 +astro-ph/0702653 +astro-ph/0702656 +astro-ph/0702659 +astro-ph/0702661 +astro-ph/0702664 +astro-ph/0702668 +astro-ph/0702670 +astro-ph/0702672 +astro-ph/0702673 +astro-ph/0702677 +astro-ph/0702678 +astro-ph/0702679 +astro-ph/0702691 +astro-ph/0702693 +astro-ph/0702695 +astro-ph/0702704 +astro-ph/0702706 +astro-ph/0702709 +astro-ph/0702710 +astro-ph/0702714 +astro-ph/0702717 +astro-ph/0702718 +astro-ph/0702719 +astro-ph/0702720 +astro-ph/0702722 +astro-ph/0702725 +astro-ph/0702726 +astro-ph/0702728 +astro-ph/0702733 +astro-ph/0702734 +astro-ph/0702735 +astro-ph/0702736 +astro-ph/0702741 +astro-ph/0702745 +astro-ph/0702751 +astro-ph/0702753 +astro-ph/0702754 +astro-ph/0703010 +astro-ph/0703011 +astro-ph/0703012 +astro-ph/0703016 +astro-ph/0703017 +astro-ph/0703019 +astro-ph/0703020 +astro-ph/0703025 +astro-ph/0703035 +astro-ph/0703040 +astro-ph/0703043 +astro-ph/0703056 +astro-ph/0703059 +astro-ph/0703062 +astro-ph/0703063 +astro-ph/0703071 +astro-ph/0703073 +astro-ph/0703075 +astro-ph/0703082 +astro-ph/0703104 +astro-ph/0703108 +astro-ph/0703115 +astro-ph/0703121 +astro-ph/0703123 +astro-ph/0703126 +astro-ph/0703129 +astro-ph/0703133 +astro-ph/0703135 +astro-ph/0703136 +astro-ph/0703139 +astro-ph/0703140 +astro-ph/0703144 +astro-ph/0703145 +astro-ph/0703147 +astro-ph/0703151 +astro-ph/0703154 +astro-ph/0703155 +astro-ph/0703157 +astro-ph/0703162 +astro-ph/0703164 +astro-ph/0703165 +astro-ph/0703167 +astro-ph/0703171 +astro-ph/0703174 +astro-ph/0703176 +astro-ph/0703177 +astro-ph/0703179 +astro-ph/0703183 +astro-ph/0703184 +astro-ph/0703193 +astro-ph/0703196 +astro-ph/0703198 +astro-ph/0703200 +astro-ph/0703202 +astro-ph/0703203 +astro-ph/0703210 +astro-ph/0703217 +astro-ph/0703226 +astro-ph/0703227 +astro-ph/0703228 +astro-ph/0703232 +astro-ph/0703234 +astro-ph/0703241 +astro-ph/0703243 +astro-ph/0703245 +astro-ph/0703246 +astro-ph/0703250 +astro-ph/0703254 +astro-ph/0703259 +astro-ph/0703261 +astro-ph/0703262 +astro-ph/0703265 +astro-ph/0703266 +astro-ph/0703267 +astro-ph/0703273 +astro-ph/0703274 +astro-ph/0703275 +astro-ph/0703277 +astro-ph/0703288 +astro-ph/0703292 +astro-ph/0703297 +astro-ph/0703300 +astro-ph/0703301 +astro-ph/0703305 +astro-ph/0703309 +astro-ph/0703310 +astro-ph/0703312 +astro-ph/0703317 +astro-ph/0703318 +astro-ph/0703319 +astro-ph/0703333 +astro-ph/0703334 +astro-ph/0703340 +astro-ph/0703342 +astro-ph/0703344 +astro-ph/0703347 +astro-ph/0703352 +astro-ph/0703360 +astro-ph/0703364 +astro-ph/0703375 +astro-ph/0703381 +astro-ph/0703382 +astro-ph/0703390 +astro-ph/0703391 +astro-ph/0703392 +astro-ph/0703403 +astro-ph/0703407 +astro-ph/0703409 +astro-ph/0703411 +astro-ph/0703413 +astro-ph/0703414 +astro-ph/0703415 +astro-ph/0703416 +astro-ph/0703417 +astro-ph/0703427 +astro-ph/0703428 +astro-ph/0703435 +astro-ph/0703440 +astro-ph/0703442 +astro-ph/0703444 +astro-ph/0703450 +astro-ph/0703454 +astro-ph/0703457 +astro-ph/0703459 +astro-ph/0703460 +astro-ph/0703461 +astro-ph/0703462 +astro-ph/0703465 +astro-ph/0703472 +astro-ph/0703483 +astro-ph/0703487 +astro-ph/0703488 +astro-ph/0703493 +astro-ph/0703495 +astro-ph/0703505 +astro-ph/0703507 +astro-ph/0703509 +astro-ph/0703511 +astro-ph/0703512 +astro-ph/0703513 +astro-ph/0703515 +astro-ph/0703516 +astro-ph/0703517 +astro-ph/0703520 +astro-ph/0703522 +astro-ph/0703525 +astro-ph/0703528 +astro-ph/0703531 +astro-ph/0703533 +astro-ph/0703534 +astro-ph/0703537 +astro-ph/0703540 +astro-ph/0703544 +astro-ph/0703545 +astro-ph/0703546 +astro-ph/0703549 +astro-ph/0703551 +astro-ph/0703552 +astro-ph/0703553 +astro-ph/0703556 +astro-ph/0703557 +astro-ph/0703565 +astro-ph/0703566 +astro-ph/0703575 +astro-ph/0703580 +astro-ph/0703582 +astro-ph/0703583 +astro-ph/0703585 +astro-ph/0703587 +astro-ph/0703591 +astro-ph/0703592 +astro-ph/0703593 +astro-ph/0703595 +astro-ph/0703596 +astro-ph/0703602 +astro-ph/0703604 +astro-ph/0703615 +astro-ph/0703619 +astro-ph/0703620 +astro-ph/0703621 +astro-ph/0703622 +astro-ph/0703623 +astro-ph/0703624 +astro-ph/0703625 +astro-ph/0703627 +astro-ph/0703628 +astro-ph/0703630 +astro-ph/0703636 +astro-ph/0703637 +astro-ph/0703638 +astro-ph/0703643 +astro-ph/0703645 +astro-ph/0703647 +astro-ph/0703655 +astro-ph/0703659 +astro-ph/0703663 +astro-ph/0703664 +astro-ph/0703667 +astro-ph/0703670 +astro-ph/0703671 +astro-ph/0703675 +astro-ph/0703678 +astro-ph/0703682 +astro-ph/0703685 +astro-ph/0703690 +astro-ph/0703695 +astro-ph/0703698 +astro-ph/0703702 +astro-ph/0703704 +astro-ph/0703705 +astro-ph/0703708 +astro-ph/0703709 +astro-ph/0703713 +astro-ph/0703716 +astro-ph/0703719 +astro-ph/0703720 +astro-ph/0703722 +astro-ph/0703723 +astro-ph/0703724 +astro-ph/0703727 +astro-ph/0703728 +astro-ph/0703729 +astro-ph/0703730 +astro-ph/0703731 +astro-ph/0703738 +astro-ph/0703739 +astro-ph/0703744 +astro-ph/0703749 +astro-ph/0703750 +astro-ph/0703751 +astro-ph/0703757 +astro-ph/0703758 +astro-ph/0703761 +astro-ph/0703762 +astro-ph/0703764 +astro-ph/0703768 +astro-ph/0703772 +astro-ph/0703776 +astro-ph/0703778 +astro-ph/0703781 +astro-ph/0703782 +astro-ph/0703784 +astro-ph/0703786 +astro-ph/0703789 +astro-ph/0703792 +astro-ph/0703797 +astro-ph/0703799 +astro-ph/0703800 +astro-ph/0703804 +astro-ph/0703808 +astro-ph/0703810 +astro-ph/9211004 +astro-ph/9302013 +astro-ph/9303012 +astro-ph/9305032 +astro-ph/9306024 +astro-ph/9308021 +astro-ph/9308023 +astro-ph/9309006 +astro-ph/9309041 +astro-ph/9309050 +astro-ph/9311040 +astro-ph/9311073 +astro-ph/9312003 +astro-ph/9312017 +astro-ph/9312062 +astro-ph/9401012 +astro-ph/9402037 +astro-ph/9403035 +astro-ph/9404054 +astro-ph/9405002 +astro-ph/9405063 +astro-ph/9405069 +astro-ph/9407048 +astro-ph/9408042 +astro-ph/9410003 +astro-ph/9410010 +astro-ph/9410028 +astro-ph/9411035 +astro-ph/9411098 +astro-ph/9412005 +astro-ph/9412009 +astro-ph/9412078 +astro-ph/9501101 +astro-ph/9503094 +astro-ph/9504011 +astro-ph/9505005 +astro-ph/9505043 +astro-ph/9505093 +astro-ph/9505102 +astro-ph/9506051 +astro-ph/9506099 +astro-ph/9507006 +astro-ph/9507023 +astro-ph/9507060 +astro-ph/9507106 +astro-ph/9508003 +astro-ph/9508025 +astro-ph/9508046 +astro-ph/9508070 +astro-ph/9508078 +astro-ph/9508100 +astro-ph/9508108 +astro-ph/9509006 +astro-ph/9509009 +astro-ph/9509010 +astro-ph/9509049 +astro-ph/9509092 +astro-ph/9510019 +astro-ph/9510041 +astro-ph/9510123 +astro-ph/9511011 +astro-ph/9511055 +astro-ph/9511069 +astro-ph/9511071 +astro-ph/9511095 +astro-ph/9512017 +astro-ph/9512044 +astro-ph/9512103 +astro-ph/9601009 +astro-ph/9601059 +astro-ph/9601104 +astro-ph/9601140 +astro-ph/9601189 +astro-ph/9602012 +astro-ph/9602055 +astro-ph/9602081 +astro-ph/9602141 +astro-ph/9603032 +astro-ph/9603033 +astro-ph/9603045 +astro-ph/9603071 +astro-ph/9603087 +astro-ph/9603161 +astro-ph/9604061 +astro-ph/9604167 +astro-ph/9604172 +astro-ph/9605010 +astro-ph/9605039 +astro-ph/9605112 +astro-ph/9605123 +astro-ph/9605176 +astro-ph/9606059 +astro-ph/9606125 +astro-ph/9606158 +astro-ph/9606171 +astro-ph/9607013 +astro-ph/9607014 +astro-ph/9607038 +astro-ph/9607060 +astro-ph/9607163 +astro-ph/9608033 +astro-ph/9608040 +astro-ph/9608054 +astro-ph/9608170 +astro-ph/9608177 +astro-ph/9608182 +astro-ph/9608192 +astro-ph/9609038 +astro-ph/9609144 +astro-ph/9609204 +astro-ph/9610100 +astro-ph/9610115 +astro-ph/9610166 +astro-ph/9610184 +astro-ph/9610256 +astro-ph/9610265 +astro-ph/9611062 +astro-ph/9611107 +astro-ph/9611194 +astro-ph/9611208 +astro-ph/9612025 +astro-ph/9612071 +astro-ph/9612135 +astro-ph/9612197 +astro-ph/9612209 +astro-ph/9612222 +astro-ph/9612237 +astro-ph/9701056 +astro-ph/9701131 +astro-ph/9702135 +astro-ph/9702159 +astro-ph/9702186 +astro-ph/9703137 +astro-ph/9703138 +astro-ph/9704077 +astro-ph/9704118 +astro-ph/9704150 +astro-ph/9704161 +astro-ph/9704166 +astro-ph/9704196 +astro-ph/9704211 +astro-ph/9704231 +astro-ph/9704299 +astro-ph/9705008 +astro-ph/9705043 +astro-ph/9705142 +astro-ph/9705157 +astro-ph/9705188 +astro-ph/9706012 +astro-ph/9706044 +astro-ph/9706056 +astro-ph/9706069 +astro-ph/9706163 +astro-ph/9706215 +astro-ph/9706250 +astro-ph/9706287 +astro-ph/9706289 +astro-ph/9706294 +astro-ph/9707017 +astro-ph/9707098 +astro-ph/9707106 +astro-ph/9707220 +astro-ph/9707226 +astro-ph/9707351 +astro-ph/9708046 +astro-ph/9708092 +astro-ph/9708202 +astro-ph/9708225 +astro-ph/9709072 +astro-ph/9709119 +astro-ph/9709123 +astro-ph/9709153 +astro-ph/9709240 +astro-ph/9710222 +astro-ph/9710270 +astro-ph/9710327 +astro-ph/9711052 +astro-ph/9711057 +astro-ph/9711080 +astro-ph/9711133 +astro-ph/9711171 +astro-ph/9711236 +astro-ph/9711347 +astro-ph/9712008 +astro-ph/9712020 +astro-ph/9712055 +astro-ph/9712060 +astro-ph/9712109 +astro-ph/9712157 +astro-ph/9712238 +astro-ph/9712260 +astro-ph/9712272 +astro-ph/9712343 +astro-ph/9801003 +astro-ph/9801028 +astro-ph/9801044 +astro-ph/9801054 +astro-ph/9801082 +astro-ph/9801187 +astro-ph/9801190 +astro-ph/9801234 +astro-ph/9801280 +astro-ph/9802074 +astro-ph/9802084 +astro-ph/9802098 +astro-ph/9802234 +astro-ph/9802237 +astro-ph/9802251 +astro-ph/9802252 +astro-ph/9802331 +astro-ph/9803021 +astro-ph/9803131 +astro-ph/9803232 +astro-ph/9803343 +astro-ph/9804012 +astro-ph/9804148 +astro-ph/9804236 +astro-ph/9804264 +astro-ph/9804289 +astro-ph/9804301 +astro-ph/9804331 +astro-ph/9805009 +astro-ph/9805015 +astro-ph/9805121 +astro-ph/9805201 +astro-ph/9805260 +astro-ph/9805341 +astro-ph/9806024 +astro-ph/9806176 +astro-ph/9806197 +astro-ph/9806250 +astro-ph/9806272 +astro-ph/9806312 +astro-ph/9806340 +astro-ph/9807006 +astro-ph/9807078 +astro-ph/9807085 +astro-ph/9807158 +astro-ph/9807279 +astro-ph/9807286 +astro-ph/9807298 +astro-ph/9807307 +astro-ph/9808050 +astro-ph/9808196 +astro-ph/9809030 +astro-ph/9809034 +astro-ph/9809223 +astro-ph/9809242 +astro-ph/9809280 +astro-ph/9810070 +astro-ph/9810146 +astro-ph/9810189 +astro-ph/9810266 +astro-ph/9810291 +astro-ph/9810332 +astro-ph/9810439 +astro-ph/9810479 +astro-ph/9811074 +astro-ph/9811119 +astro-ph/9811132 +astro-ph/9811144 +astro-ph/9811185 +astro-ph/9811362 +astro-ph/9811371 +astro-ph/9811443 +astro-ph/9811460 +astro-ph/9812025 +astro-ph/9812083 +astro-ph/9812124 +astro-ph/9812133 +astro-ph/9812150 +astro-ph/9812265 +astro-ph/9812319 +astro-ph/9812399 +astro-ph/9812404 +astro-ph/9812474 +astro-ph/9901014 +astro-ph/9901049 +astro-ph/9901068 +astro-ph/9901099 +astro-ph/9901101 +astro-ph/9901113 +astro-ph/9901122 +astro-ph/9901129 +astro-ph/9901179 +astro-ph/9901215 +astro-ph/9901240 +astro-ph/9901264 +astro-ph/9901281 +astro-ph/9901292 +astro-ph/9901293 +astro-ph/9901304 +astro-ph/9901338 +astro-ph/9901403 +astro-ph/9901416 +astro-ph/9902065 +astro-ph/9902233 +astro-ph/9902245 +astro-ph/9902248 +astro-ph/9902272 +astro-ph/9902285 +astro-ph/9902315 +astro-ph/9902325 +astro-ph/9902334 +astro-ph/9902345 +astro-ph/9903043 +astro-ph/9903054 +astro-ph/9903081 +astro-ph/9903164 +astro-ph/9903209 +astro-ph/9903237 +astro-ph/9903335 +astro-ph/9903341 +astro-ph/9903342 +astro-ph/9903343 +astro-ph/9903347 +astro-ph/9903386 +astro-ph/9903399 +astro-ph/9903433 +astro-ph/9903436 +astro-ph/9903456 +astro-ph/9903467 +astro-ph/9904017 +astro-ph/9904022 +astro-ph/9904082 +astro-ph/9904090 +astro-ph/9904098 +astro-ph/9904108 +astro-ph/9904120 +astro-ph/9904122 +astro-ph/9904130 +astro-ph/9904132 +astro-ph/9904143 +astro-ph/9904149 +astro-ph/9904225 +astro-ph/9904265 +astro-ph/9904282 +astro-ph/9904295 +astro-ph/9904345 +astro-ph/9904350 +astro-ph/9904351 +astro-ph/9904355 +astro-ph/9904390 +astro-ph/9904405 +astro-ph/9905012 +astro-ph/9905127 +astro-ph/9905170 +astro-ph/9905224 +astro-ph/9905234 +astro-ph/9905287 +astro-ph/9905288 +astro-ph/9905289 +astro-ph/9905301 +astro-ph/9905320 +astro-ph/9905323 +astro-ph/9905368 +astro-ph/9905381 +astro-ph/9906007 +astro-ph/9906068 +astro-ph/9906073 +astro-ph/9906171 +astro-ph/9906197 +astro-ph/9906204 +astro-ph/9906232 +astro-ph/9906245 +astro-ph/9906289 +astro-ph/9906387 +astro-ph/9906399 +astro-ph/9906405 +astro-ph/9906438 +astro-ph/9906481 +astro-ph/9906493 +astro-ph/9907011 +astro-ph/9907021 +astro-ph/9907024 +astro-ph/9907052 +astro-ph/9907112 +astro-ph/9907139 +astro-ph/9907161 +astro-ph/9907206 +astro-ph/9907259 +astro-ph/9907264 +astro-ph/9907265 +astro-ph/9907266 +astro-ph/9907295 +astro-ph/9907338 +astro-ph/9907340 +astro-ph/9907381 +astro-ph/9908016 +astro-ph/9908078 +astro-ph/9908093 +astro-ph/9908116 +astro-ph/9908119 +astro-ph/9908160 +astro-ph/9908216 +astro-ph/9908218 +astro-ph/9908224 +astro-ph/9908276 +astro-ph/9908280 +astro-ph/9908296 +astro-ph/9908317 +astro-ph/9908359 +astro-ph/9909032 +astro-ph/9909076 +astro-ph/9909092 +astro-ph/9909112 +astro-ph/9909150 +astro-ph/9909165 +astro-ph/9909192 +astro-ph/9909247 +astro-ph/9909295 +astro-ph/9909317 +astro-ph/9909392 +astro-ph/9910060 +astro-ph/9910075 +astro-ph/9910104 +astro-ph/9910144 +astro-ph/9910166 +astro-ph/9910195 +astro-ph/9910229 +astro-ph/9910267 +astro-ph/9910306 +astro-ph/9910388 +astro-ph/9911077 +astro-ph/9911079 +astro-ph/9911144 +astro-ph/9911158 +astro-ph/9911177 +astro-ph/9911234 +astro-ph/9911372 +astro-ph/9911396 +astro-ph/9911461 +astro-ph/9911502 +astro-ph/9912048 +astro-ph/9912054 +astro-ph/9912085 +astro-ph/9912096 +astro-ph/9912215 +astro-ph/9912430 +astro-ph/9912456 +astro-ph/9912458 +astro-ph/9912463 +astro-ph/9912508 +astro-ph/9912525 +astro-ph/9912548 +astro-ph/9912564 +chao-dyn/9512007 Chaotic Dynamics +chao-dyn/9512008 Chaotic Dynamics +chao-dyn/9603012 Chaotic Dynamics +chao-dyn/9810033 Chaotic Dynamics +chao-dyn/9909039 Chaotic Dynamics +cond-mat/0001207 Statistical Mechanics +cond-mat/0001349 Statistical Mechanics +cond-mat/0003091 Statistical Mechanics +cond-mat/0003324 +cond-mat/0004195 Soft Condensed Matter +cond-mat/0004199 Statistical Mechanics +cond-mat/0004341 Statistical Mechanics +cond-mat/0005130 Statistical Mechanics +cond-mat/0005286 Statistical Mechanics +cond-mat/0006112 Statistical Mechanics +cond-mat/0006204 +cond-mat/0006259 Mesoscale and Nanoscale Physics +cond-mat/0006367 Statistical Mechanics +cond-mat/0007063 Statistical Mechanics +cond-mat/0007226 Mesoscale and Nanoscale Physics +cond-mat/0007476 Statistical Mechanics +cond-mat/0008422 Statistical Mechanics +cond-mat/0008444 Disordered Systems and Neural Networks +cond-mat/0009054 Statistical Mechanics +cond-mat/0009389 Mesoscale and Nanoscale Physics +cond-mat/0010030 Mesoscale and Nanoscale Physics +cond-mat/0010061 Statistical Mechanics +cond-mat/0010062 Statistical Mechanics +cond-mat/0010360 Statistical Mechanics +cond-mat/0010463 +cond-mat/0011454 +cond-mat/0012121 Soft Condensed Matter +cond-mat/0012141 Statistical Mechanics +cond-mat/0012164 Statistical Mechanics +cond-mat/0101060 Statistical Mechanics +cond-mat/0101219 Statistical Mechanics +cond-mat/0102036 Statistical Mechanics +cond-mat/0102245 Statistical Mechanics +cond-mat/0102247 Statistical Mechanics +cond-mat/0102268 Mesoscale and Nanoscale Physics +cond-mat/0104383 Statistical Mechanics +cond-mat/0105229 Statistical Mechanics +cond-mat/0105270 +cond-mat/0105416 Statistical Mechanics +cond-mat/0106049 Statistical Mechanics +cond-mat/0106152 Superconductivity +cond-mat/0106372 Statistical Mechanics +cond-mat/0106492 +cond-mat/0107516 Mesoscale and Nanoscale Physics +cond-mat/0108410 Statistical Mechanics +cond-mat/0108411 Statistical Mechanics +cond-mat/0109259 Statistical Mechanics +cond-mat/0109260 Superconductivity +cond-mat/0110108 Mesoscale and Nanoscale Physics +cond-mat/0110195 Statistical Mechanics +cond-mat/0110205 Statistical Mechanics +cond-mat/0110287 Statistical Mechanics +cond-mat/0110322 Strongly Correlated Electrons +cond-mat/0111085 +cond-mat/0112444 Statistical Mechanics +cond-mat/0201213 Statistical Mechanics +cond-mat/0201354 Statistical Mechanics +cond-mat/0201489 Statistical Mechanics +cond-mat/0201496 Statistical Mechanics +cond-mat/0202017 Statistical Mechanics +cond-mat/0202346 Statistical Mechanics +cond-mat/0203411 Statistical Mechanics +cond-mat/0204161 Strongly Correlated Electrons +cond-mat/0204267 Statistical Mechanics +cond-mat/0205101 Statistical Mechanics +cond-mat/0205128 Strongly Correlated Electrons +cond-mat/0206045 Strongly Correlated Electrons +cond-mat/0206233 +cond-mat/0206257 Strongly Correlated Electrons +cond-mat/0206352 Statistical Mechanics +cond-mat/0207180 Statistical Mechanics +cond-mat/0207301 Strongly Correlated Electrons +cond-mat/0207656 +cond-mat/0208360 Materials Science +cond-mat/0208455 Statistical Mechanics +cond-mat/0208561 Mesoscale and Nanoscale Physics +cond-mat/0210248 Strongly Correlated Electrons +cond-mat/0210310 Soft Condensed Matter +cond-mat/0210330 Statistical Mechanics +cond-mat/0212280 Statistical Mechanics +cond-mat/0212365 Statistical Mechanics +cond-mat/0212475 Statistical Mechanics +cond-mat/0212564 Statistical Mechanics +cond-mat/0302311 Strongly Correlated Electrons +cond-mat/0302571 +cond-mat/0303148 Statistical Mechanics +cond-mat/0303235 Statistical Mechanics +cond-mat/0305138 Other Condensed Matter +cond-mat/0306171 Statistical Mechanics +cond-mat/0306285 Strongly Correlated Electrons +cond-mat/0306351 +cond-mat/0306362 Statistical Mechanics +cond-mat/0306498 Statistical Mechanics +cond-mat/0306561 +cond-mat/0307227 Statistical Mechanics +cond-mat/0307338 Strongly Correlated Electrons +cond-mat/0308216 Strongly Correlated Electrons +cond-mat/0308324 Superconductivity +cond-mat/0308333 Statistical Mechanics +cond-mat/0308363 Superconductivity +cond-mat/0308466 Statistical Mechanics +cond-mat/0309307 Statistical Mechanics +cond-mat/0310153 Strongly Correlated Electrons +cond-mat/0310269 Statistical Mechanics +cond-mat/0312373 Statistical Mechanics +cond-mat/0402562 Mesoscale and Nanoscale Physics +cond-mat/0402625 Statistical Mechanics +cond-mat/0405062 Disordered Systems and Neural Networks +cond-mat/0406431 Strongly Correlated Electrons +cond-mat/0408538 Other Condensed Matter +cond-mat/0409172 Superconductivity +cond-mat/0409310 Statistical Mechanics +cond-mat/0409594 Statistical Mechanics +cond-mat/0409691 Strongly Correlated Electrons +cond-mat/0410474 Strongly Correlated Electrons +cond-mat/0410749 Statistical Mechanics +cond-mat/0501080 Statistical Mechanics +cond-mat/0501110 Other Condensed Matter +cond-mat/0502339 Statistical Mechanics +cond-mat/0502534 Superconductivity +cond-mat/0502588 Strongly Correlated Electrons +cond-mat/0503511 Statistical Mechanics +cond-mat/0503581 Other Condensed Matter +cond-mat/0504758 Statistical Mechanics +cond-mat/0505089 Strongly Correlated Electrons +cond-mat/0505384 Statistical Mechanics +cond-mat/0505742 Statistical Mechanics +cond-mat/0506208 Other Condensed Matter +cond-mat/0506428 Mesoscale and Nanoscale Physics +cond-mat/0508650 Strongly Correlated Electrons +cond-mat/0509136 Statistical Mechanics +cond-mat/0510034 Statistical Mechanics +cond-mat/0510458 Statistical Mechanics +cond-mat/0512058 Statistical Mechanics +cond-mat/0512157 Mesoscale and Nanoscale Physics +cond-mat/0512175 Statistical Mechanics +cond-mat/0512317 Mesoscale and Nanoscale Physics +cond-mat/0601307 Other Condensed Matter +cond-mat/0601342 Strongly Correlated Electrons +cond-mat/0601391 Materials Science +cond-mat/0603125 Mesoscale and Nanoscale Physics +cond-mat/0603157 Statistical Mechanics +cond-mat/0603521 Disordered Systems and Neural Networks +cond-mat/0603717 Strongly Correlated Electrons +cond-mat/0604149 Superconductivity +cond-mat/0604248 Other Condensed Matter +cond-mat/0604538 Statistical Mechanics +cond-mat/0604579 Superconductivity +cond-mat/0605348 Strongly Correlated Electrons +cond-mat/0605408 Statistical Mechanics +cond-mat/0605438 Statistical Mechanics +cond-mat/0605638 Statistical Mechanics +cond-mat/0605683 Strongly Correlated Electrons +cond-mat/0606043 Superconductivity +cond-mat/0606069 Other Condensed Matter +cond-mat/0606217 Mesoscale and Nanoscale Physics +cond-mat/0606243 Other Condensed Matter +cond-mat/0606434 Strongly Correlated Electrons +cond-mat/0606706 Statistical Mechanics +cond-mat/0606766 Strongly Correlated Electrons +cond-mat/0607019 Statistical Mechanics +cond-mat/0607082 Statistical Mechanics +cond-mat/0607138 Strongly Correlated Electrons +cond-mat/0607310 Strongly Correlated Electrons +cond-mat/0607394 Materials Science +cond-mat/0607396 Statistical Mechanics +cond-mat/0607536 Soft Condensed Matter +cond-mat/0607538 Soft Condensed Matter +cond-mat/0607736 Strongly Correlated Electrons +cond-mat/0607788 Statistical Mechanics +cond-mat/0607834 Other Condensed Matter +cond-mat/0608023 Statistical Mechanics +cond-mat/0608078 Superconductivity +cond-mat/0608424 Superconductivity +cond-mat/0608447 Statistical Mechanics +cond-mat/0608553 Other Condensed Matter +cond-mat/0608588 Mesoscale and Nanoscale Physics +cond-mat/0608667 Strongly Correlated Electrons +cond-mat/0609039 Strongly Correlated Electrons +cond-mat/0609072 Statistical Mechanics +cond-mat/0609088 Mesoscale and Nanoscale Physics +cond-mat/0609431 Other Condensed Matter +cond-mat/0609435 Statistical Mechanics +cond-mat/0609598 Statistical Mechanics +cond-mat/0609731 Strongly Correlated Electrons +cond-mat/0609740 Mesoscale and Nanoscale Physics +cond-mat/0609768 Mesoscale and Nanoscale Physics +cond-mat/0610011 Other Condensed Matter +cond-mat/0610045 Statistical Mechanics +cond-mat/0610108 Other Condensed Matter +cond-mat/0610162 Other Condensed Matter +cond-mat/0610193 Statistical Mechanics +cond-mat/0610375 Statistical Mechanics +cond-mat/0610398 Superconductivity +cond-mat/0610481 Statistical Mechanics +cond-mat/0610647 Statistical Mechanics +cond-mat/0611082 Strongly Correlated Electrons +cond-mat/0611316 Statistical Mechanics +cond-mat/0611352 Mesoscale and Nanoscale Physics +cond-mat/0611386 Superconductivity +cond-mat/0611400 Other Condensed Matter +cond-mat/0611543 Statistical Mechanics +cond-mat/0611628 Mesoscale and Nanoscale Physics +cond-mat/0611658 Strongly Correlated Electrons +cond-mat/0611733 Strongly Correlated Electrons +cond-mat/0611746 Strongly Correlated Electrons +cond-mat/0611769 Other Condensed Matter +cond-mat/0612080 Superconductivity +cond-mat/0612123 Other Condensed Matter +cond-mat/0612125 Other Condensed Matter +cond-mat/0612130 Strongly Correlated Electrons +cond-mat/0612192 Statistical Mechanics +cond-mat/0612220 Strongly Correlated Electrons +cond-mat/0612252 Other Condensed Matter +cond-mat/0612269 Mesoscale and Nanoscale Physics +cond-mat/0612318 Statistical Mechanics +cond-mat/0612343 Strongly Correlated Electrons +cond-mat/0612361 Other Condensed Matter +cond-mat/0612363 Strongly Correlated Electrons +cond-mat/0612374 Strongly Correlated Electrons +cond-mat/0612460 Statistical Mechanics +cond-mat/0612594 Statistical Mechanics +cond-mat/0612623 Strongly Correlated Electrons +cond-mat/0612656 Disordered Systems and Neural Networks +cond-mat/0701006 Mesoscale and Nanoscale Physics +cond-mat/0701061 Statistical Mechanics +cond-mat/0701096 Mesoscale and Nanoscale Physics +cond-mat/0701113 Statistical Mechanics +cond-mat/0701134 Strongly Correlated Electrons +cond-mat/0701139 Superconductivity +cond-mat/0701154 Statistical Mechanics +cond-mat/0701251 Other Condensed Matter +cond-mat/0701259 Statistical Mechanics +cond-mat/0701331 Statistical Mechanics +cond-mat/0701333 Mesoscale and Nanoscale Physics +cond-mat/0701491 Statistical Mechanics +cond-mat/0701550 Disordered Systems and Neural Networks +cond-mat/0701641 Statistical Mechanics +cond-mat/0701768 Strongly Correlated Electrons +cond-mat/0701786 Statistical Mechanics +cond-mat/0702070 Statistical Mechanics +cond-mat/0702075 Statistical Mechanics +cond-mat/0702252 Mesoscale and Nanoscale Physics +cond-mat/0702326 Mesoscale and Nanoscale Physics +cond-mat/0702366 Strongly Correlated Electrons +cond-mat/0702498 Superconductivity +cond-mat/0702569 Statistical Mechanics +cond-mat/0702581 Statistical Mechanics +cond-mat/0703114 Statistical Mechanics +cond-mat/0703117 Statistical Mechanics +cond-mat/0703122 Statistical Mechanics +cond-mat/0703163 Other Condensed Matter +cond-mat/0703183 Soft Condensed Matter +cond-mat/0703184 Superconductivity +cond-mat/0703228 Statistical Mechanics +cond-mat/0703291 Statistical Mechanics +cond-mat/0703319 Statistical Mechanics +cond-mat/0703326 Statistical Mechanics +cond-mat/0703366 Superconductivity +cond-mat/0703445 Statistical Mechanics +cond-mat/0703547 Strongly Correlated Electrons +cond-mat/0703609 Strongly Correlated Electrons +cond-mat/0703630 Other Condensed Matter +cond-mat/0703691 Statistical Mechanics +cond-mat/0703787 Statistical Mechanics +cond-mat/9207018 +cond-mat/9208005 +cond-mat/9209002 +cond-mat/9209029 +cond-mat/9212034 +cond-mat/9301007 +cond-mat/9301021 +cond-mat/9301037 +cond-mat/9507061 +cond-mat/9507115 +cond-mat/9509039 +cond-mat/9510046 +cond-mat/9510074 +cond-mat/9512007 +cond-mat/9603013 +cond-mat/9603078 +cond-mat/9603083 +cond-mat/9603156 +cond-mat/9604084 +cond-mat/9605019 +cond-mat/9607091 +cond-mat/9609242 +cond-mat/9611072 +cond-mat/9612187 Statistical Mechanics +cond-mat/9612228 +cond-mat/9702218 Strongly Correlated Electrons +cond-mat/9704048 Superconductivity +cond-mat/9704211 +cond-mat/9705125 Mesoscale and Nanoscale Physics +cond-mat/9707039 Statistical Mechanics +cond-mat/9707199 Statistical Mechanics +cond-mat/9708006 Statistical Mechanics +cond-mat/9709171 Statistical Mechanics +cond-mat/9709208 Statistical Mechanics +cond-mat/9711071 +cond-mat/9711080 +cond-mat/9711265 Statistical Mechanics +cond-mat/9711294 Statistical Mechanics +cond-mat/9801075 Mesoscale and Nanoscale Physics +cond-mat/9801148 Statistical Mechanics +cond-mat/9801183 Statistical Mechanics +cond-mat/9803240 Statistical Mechanics +cond-mat/9803325 Strongly Correlated Electrons +cond-mat/9804227 Statistical Mechanics +cond-mat/9804302 Statistical Mechanics +cond-mat/9805119 +cond-mat/9805125 Disordered Systems and Neural Networks +cond-mat/9806041 Statistical Mechanics +cond-mat/9806190 Statistical Mechanics +cond-mat/9806360 Soft Condensed Matter +cond-mat/9807241 Mesoscale and Nanoscale Physics +cond-mat/9809102 Statistical Mechanics +cond-mat/9810311 Statistical Mechanics +cond-mat/9811264 Statistical Mechanics +cond-mat/9812267 Statistical Mechanics +cond-mat/9812371 Statistical Mechanics +cond-mat/9903410 Statistical Mechanics +cond-mat/9904413 Statistical Mechanics +cond-mat/9905138 Statistical Mechanics +cond-mat/9905234 Statistical Mechanics +cond-mat/9905430 Statistical Mechanics +cond-mat/9906166 Superconductivity +cond-mat/9907019 Strongly Correlated Electrons +cond-mat/9907214 +cond-mat/9907335 Statistical Mechanics +cond-mat/9908068 Statistical Mechanics +cond-mat/9908290 Strongly Correlated Electrons +cond-mat/9908326 +cond-mat/9909120 Mesoscale and Nanoscale Physics +cond-mat/9909168 Statistical Mechanics +cond-mat/9909407 Statistical Mechanics +cond-mat/9910508 Statistical Mechanics +cond-mat/9911107 Statistical Mechanics +cond-mat/9911443 Statistical Mechanics +cond-mat/9912008 Mesoscale and Nanoscale Physics +cond-mat/9912071 Statistical Mechanics +cond-mat/9912143 Strongly Correlated Electrons +cond-mat/9912473 +cs/0111006 Databases +cs/0111008 Networking and Internet Architecture +cs/0111013 Software Engineering +cs/0111014 Software Engineering +cs/0303013 Software Engineering +cs/0304043 Symbolic Computation +cs/0305047 Other Computer Science +cs/0305049 Software Engineering +cs/0305050 Distributed, Parallel, and Cluster Computing +cs/0305054 Performance +cs/0305060 Performance +cs/0305062 Distributed, Parallel, and Cluster Computing +cs/0305063 Distributed, Parallel, and Cluster Computing +cs/0305066 Distributed, Parallel, and Cluster Computing +cs/0306009 Distributed, Parallel, and Cluster Computing +cs/0306011 Distributed, Parallel, and Cluster Computing +cs/0306012 Graphics +cs/0306024 Other Computer Science +cs/0306030 Distributed, Parallel, and Cluster Computing +cs/0306031 Graphics +cs/0306034 Databases +cs/0306042 Software Engineering +cs/0306074 Distributed, Parallel, and Cluster Computing +cs/0306078 Software Engineering +cs/0306080 Software Engineering +cs/0306100 Distributed, Parallel, and Cluster Computing +cs/0306133 Distributed, Parallel, and Cluster Computing +cs/0307001 Distributed, Parallel, and Cluster Computing +cs/0307019 Distributed, Parallel, and Cluster Computing +cs/0307021 Distributed, Parallel, and Cluster Computing +cs/0604052 Symbolic Computation +cs/0608005 Symbolic Computation +cs/9811020 Digital Libraries +dg-ga/9612008 Differential Geometry +dg-ga/9703016 Differential Geometry +dg-ga/9704006 Differential Geometry +funct-an/9406005 Functional Analysis +funct-an/9702001 Functional Analysis +gr-qc/0001014 +gr-qc/0001045 +gr-qc/0001046 +gr-qc/0001056 +gr-qc/0001060 +gr-qc/0002005 +gr-qc/0002015 +gr-qc/0002040 +gr-qc/0002049 +gr-qc/0002079 +gr-qc/0002091 +gr-qc/0003007 +gr-qc/0003067 +gr-qc/0003070 +gr-qc/0003082 +gr-qc/0003105 +gr-qc/0004034 +gr-qc/0004073 +gr-qc/0004075 +gr-qc/0005019 +gr-qc/0005082 +gr-qc/0005096 +gr-qc/0005106 +gr-qc/0005115 +gr-qc/0005131 +gr-qc/0006021 +gr-qc/0006022 +gr-qc/0006040 +gr-qc/0006084 +gr-qc/0006107 +gr-qc/0007015 +gr-qc/0007050 +gr-qc/0007052 +gr-qc/0007057 +gr-qc/0007070 +gr-qc/0007080 +gr-qc/0008007 +gr-qc/0008042 +gr-qc/0008066 +gr-qc/0008067 +gr-qc/0009014 +gr-qc/0009016 +gr-qc/0009037 +gr-qc/0009041 +gr-qc/0009044 +gr-qc/0009047 +gr-qc/0009056 +gr-qc/0009059 +gr-qc/0009083 +gr-qc/0009087 +gr-qc/0010021 +gr-qc/0010051 +gr-qc/0010058 +gr-qc/0010062 +gr-qc/0011058 +gr-qc/0012010 +gr-qc/0012029 +gr-qc/0012040 +gr-qc/0012057 +gr-qc/0012075 +gr-qc/0012079 +gr-qc/0101041 +gr-qc/0102014 +gr-qc/0102049 +gr-qc/0102069 +gr-qc/0102071 +gr-qc/0102090 +gr-qc/0103012 +gr-qc/0103018 +gr-qc/0103033 +gr-qc/0103073 +gr-qc/0103074 +gr-qc/0103095 +gr-qc/0103099 +gr-qc/0104010 +gr-qc/0104020 +gr-qc/0104026 +gr-qc/0104063 +gr-qc/0104070 +gr-qc/0104083 +gr-qc/0105015 +gr-qc/0105029 +gr-qc/0105031 +gr-qc/0105038 +gr-qc/0105104 +gr-qc/0105105 +gr-qc/0105106 +gr-qc/0105111 +gr-qc/0106031 +gr-qc/0106033 +gr-qc/0106060 +gr-qc/0106065 +gr-qc/0106096 +gr-qc/0107001 +gr-qc/0107004 +gr-qc/0107039 +gr-qc/0107044 +gr-qc/0107052 +gr-qc/0107068 +gr-qc/0107070 +gr-qc/0109049 +gr-qc/0109083 +gr-qc/0109086 +gr-qc/0110003 +gr-qc/0110010 +gr-qc/0110035 +gr-qc/0110069 +gr-qc/0110101 +gr-qc/0110119 +gr-qc/0111003 +gr-qc/0111011 +gr-qc/0111015 +gr-qc/0111035 +gr-qc/0111080 +gr-qc/0112002 +gr-qc/0112010 +gr-qc/0112056 +gr-qc/0112074 +gr-qc/0201033 +gr-qc/0201048 +gr-qc/0201069 +gr-qc/0201085 +gr-qc/0201102 +gr-qc/0202035 +gr-qc/0203004 +gr-qc/0203012 +gr-qc/0203049 +gr-qc/0203052 +gr-qc/0203082 +gr-qc/0204060 +gr-qc/0204069 +gr-qc/0204074 +gr-qc/0204092 +gr-qc/0205002 +gr-qc/0205036 +gr-qc/0205046 +gr-qc/0205072 +gr-qc/0205100 +gr-qc/0205111 +gr-qc/0205116 +gr-qc/0205121 +gr-qc/0205129 +gr-qc/0206008 +gr-qc/0206025 +gr-qc/0206054 +gr-qc/0206072 +gr-qc/0207011 +gr-qc/0207015 +gr-qc/0207022 +gr-qc/0207026 +gr-qc/0207041 +gr-qc/0207071 +gr-qc/0207091 +gr-qc/0207104 +gr-qc/0208005 +gr-qc/0208047 +gr-qc/0209003 +gr-qc/0209017 +gr-qc/0209024 +gr-qc/0209042 +gr-qc/0209092 +gr-qc/0210018 +gr-qc/0210033 +gr-qc/0210037 +gr-qc/0210056 +gr-qc/0210080 +gr-qc/0210101 +gr-qc/0211037 +gr-qc/0211108 +gr-qc/0212030 +gr-qc/0212049 +gr-qc/0212075 +gr-qc/0212091 +gr-qc/0301041 +gr-qc/0301081 +gr-qc/0301089 +gr-qc/0301097 +gr-qc/0301123 +gr-qc/0302030 +gr-qc/0302035 +gr-qc/0302038 +gr-qc/0302049 +gr-qc/0302054 +gr-qc/0302058 +gr-qc/0303019 +gr-qc/0303033 +gr-qc/0303052 +gr-qc/0303053 +gr-qc/0303113 +gr-qc/0304013 +gr-qc/0304017 +gr-qc/0304047 +gr-qc/0304060 +gr-qc/0304071 +gr-qc/0304086 +gr-qc/0304089 +gr-qc/0305035 +gr-qc/0305037 +gr-qc/0305041 +gr-qc/0305048 +gr-qc/0305078 +gr-qc/0305085 +gr-qc/0305101 +gr-qc/0306020 +gr-qc/0306048 +gr-qc/0306056 +gr-qc/0306114 +gr-qc/0307015 +gr-qc/0307027 +gr-qc/0307036 +gr-qc/0307048 +gr-qc/0307098 +gr-qc/0307112 +gr-qc/0307115 +gr-qc/0307116 +gr-qc/0308042 +gr-qc/0308043 +gr-qc/0308046 +gr-qc/0308050 +gr-qc/0308069 +gr-qc/0309007 +gr-qc/0309020 +gr-qc/0309043 +gr-qc/0309067 +gr-qc/0309074 +gr-qc/0309100 +gr-qc/0309109 +gr-qc/0309119 +gr-qc/0309123 +gr-qc/0309130 +gr-qc/0310019 +gr-qc/0310023 +gr-qc/0310041 +gr-qc/0310048 +gr-qc/0310050 +gr-qc/0310080 +gr-qc/0310085 +gr-qc/0310086 +gr-qc/0310099 +gr-qc/0310100 +gr-qc/0310106 +gr-qc/0310133 +gr-qc/0311004 +gr-qc/0311018 +gr-qc/0311021 +gr-qc/0311025 +gr-qc/0311029 +gr-qc/0311036 +gr-qc/0311039 +gr-qc/0311050 +gr-qc/0311086 +gr-qc/0312009 +gr-qc/0312041 +gr-qc/0312056 +gr-qc/0312060 +gr-qc/0312088 +gr-qc/0312092 +gr-qc/0312112 +gr-qc/0401010 +gr-qc/0401022 +gr-qc/0401052 +gr-qc/0401062 +gr-qc/0401098 +gr-qc/0401101 +gr-qc/0401107 +gr-qc/0401116 +gr-qc/0402005 +gr-qc/0402023 +gr-qc/0402057 +gr-qc/0402061 +gr-qc/0402062 +gr-qc/0402124 +gr-qc/0402125 +gr-qc/0403028 +gr-qc/0403039 +gr-qc/0403063 +gr-qc/0403066 +gr-qc/0403080 +gr-qc/0403088 +gr-qc/0403093 +gr-qc/0404018 +gr-qc/0404026 +gr-qc/0404045 +gr-qc/0404056 +gr-qc/0404063 +gr-qc/0404065 +gr-qc/0404077 +gr-qc/0404091 +gr-qc/0404115 +gr-qc/0404120 +gr-qc/0405009 +gr-qc/0405015 +gr-qc/0405061 +gr-qc/0405075 +gr-qc/0405103 +gr-qc/0406027 +gr-qc/0406037 +gr-qc/0406042 +gr-qc/0406088 +gr-qc/0406104 +gr-qc/0407039 +gr-qc/0407049 +gr-qc/0407061 +gr-qc/0407101 +gr-qc/0408008 +gr-qc/0408028 +gr-qc/0408054 +gr-qc/0408061 +gr-qc/0408067 +gr-qc/0408097 +gr-qc/0408098 +gr-qc/0409011 +gr-qc/0409070 +gr-qc/0409089 +gr-qc/0409106 +gr-qc/0409111 +gr-qc/0409117 +gr-qc/0409118 +gr-qc/0410007 +gr-qc/0410014 +gr-qc/0410019 +gr-qc/0410047 +gr-qc/0410048 +gr-qc/0410055 +gr-qc/0410060 +gr-qc/0410070 +gr-qc/0410073 +gr-qc/0410096 +gr-qc/0410108 +gr-qc/0410118 +gr-qc/0411010 +gr-qc/0411013 +gr-qc/0411057 +gr-qc/0411100 +gr-qc/0411126 +gr-qc/0411149 +gr-qc/0412010 +gr-qc/0412025 +gr-qc/0412038 +gr-qc/0412039 +gr-qc/0412066 +gr-qc/0412084 +gr-qc/0412089 +gr-qc/0412101 +gr-qc/0412123 +gr-qc/0501003 +gr-qc/0501051 +gr-qc/0501061 +gr-qc/0501090 +gr-qc/0501096 +gr-qc/0501098 +gr-qc/0502015 +gr-qc/0502022 +gr-qc/0502027 +gr-qc/0502059 +gr-qc/0502060 +gr-qc/0502074 +gr-qc/0502075 +gr-qc/0502083 +gr-qc/0502099 +gr-qc/0502102 +gr-qc/0502115 +gr-qc/0503011 +gr-qc/0503014 +gr-qc/0503042 +gr-qc/0503043 +gr-qc/0503045 +gr-qc/0503051 +gr-qc/0503061 +gr-qc/0503071 +gr-qc/0503072 +gr-qc/0503078 +gr-qc/0503084 +gr-qc/0503094 +gr-qc/0503124 +gr-qc/0504006 +gr-qc/0504018 +gr-qc/0504020 +gr-qc/0504024 +gr-qc/0504067 +gr-qc/0504077 +gr-qc/0504126 +gr-qc/0504133 +gr-qc/0504147 +gr-qc/0505016 +gr-qc/0505019 +gr-qc/0505026 +gr-qc/0505039 +gr-qc/0505041 +gr-qc/0505042 +gr-qc/0505078 +gr-qc/0505087 +gr-qc/0505101 +gr-qc/0505142 +gr-qc/0505161 +gr-qc/0506010 +gr-qc/0506041 +gr-qc/0506043 +gr-qc/0506057 +gr-qc/0506064 +gr-qc/0506080 +gr-qc/0506082 +gr-qc/0506084 +gr-qc/0506112 +gr-qc/0506123 +gr-qc/0507014 +gr-qc/0507027 +gr-qc/0507039 +gr-qc/0507041 +gr-qc/0507075 +gr-qc/0507100 +gr-qc/0507116 +gr-qc/0507122 +gr-qc/0508022 +gr-qc/0508024 +gr-qc/0508025 +gr-qc/0508035 +gr-qc/0508065 +gr-qc/0508068 +gr-qc/0508083 +gr-qc/0508084 +gr-qc/0508085 +gr-qc/0508089 +gr-qc/0508103 +gr-qc/0508106 +gr-qc/0508113 +gr-qc/0508123 +gr-qc/0508124 +gr-qc/0509003 +gr-qc/0509052 +gr-qc/0509058 +gr-qc/0509082 +gr-qc/0509096 +gr-qc/0509124 +gr-qc/0509127 +gr-qc/0510010 +gr-qc/0510020 +gr-qc/0510042 +gr-qc/0510043 +gr-qc/0510077 +gr-qc/0510093 +gr-qc/0510115 +gr-qc/0511026 +gr-qc/0511030 +gr-qc/0511036 +gr-qc/0511041 +gr-qc/0511048 +gr-qc/0511070 +gr-qc/0511074 +gr-qc/0511094 +gr-qc/0511098 +gr-qc/0511103 +gr-qc/0511110 +gr-qc/0511118 +gr-qc/0511150 +gr-qc/0511164 +gr-qc/0512001 +gr-qc/0512008 +gr-qc/0512024 +gr-qc/0512029 +gr-qc/0512043 +gr-qc/0512046 +gr-qc/0512053 +gr-qc/0512084 +gr-qc/0512105 +gr-qc/0512107 +gr-qc/0512110 +gr-qc/0512118 +gr-qc/0512121 +gr-qc/0512131 +gr-qc/0512155 +gr-qc/0512158 +gr-qc/0512160 +gr-qc/0512164 +gr-qc/0601004 +gr-qc/0601029 +gr-qc/0601033 +gr-qc/0601038 +gr-qc/0601039 +gr-qc/0601042 +gr-qc/0601049 +gr-qc/0601052 +gr-qc/0601067 +gr-qc/0601088 +gr-qc/0601091 +gr-qc/0601092 +gr-qc/0601093 +gr-qc/0601097 +gr-qc/0601099 +gr-qc/0601108 +gr-qc/0601133 +gr-qc/0602017 +gr-qc/0602026 +gr-qc/0602030 +gr-qc/0602047 +gr-qc/0602050 +gr-qc/0602054 +gr-qc/0602059 +gr-qc/0602072 +gr-qc/0602079 +gr-qc/0602081 +gr-qc/0602086 +gr-qc/0602089 +gr-qc/0602093 +gr-qc/0602096 +gr-qc/0602105 +gr-qc/0602110 +gr-qc/0603001 +gr-qc/0603009 +gr-qc/0603011 +gr-qc/0603014 +gr-qc/0603016 +gr-qc/0603018 +gr-qc/0603019 +gr-qc/0603020 +gr-qc/0603021 +gr-qc/0603024 +gr-qc/0603027 +gr-qc/0603028 +gr-qc/0603030 +gr-qc/0603034 +gr-qc/0603037 +gr-qc/0603039 +gr-qc/0603042 +gr-qc/0603046 +gr-qc/0603054 +gr-qc/0603056 +gr-qc/0603063 +gr-qc/0603075 +gr-qc/0603076 +gr-qc/0603082 +gr-qc/0603085 +gr-qc/0603086 +gr-qc/0603087 +gr-qc/0603089 +gr-qc/0603090 +gr-qc/0603093 +gr-qc/0603094 +gr-qc/0603098 +gr-qc/0603100 +gr-qc/0603112 +gr-qc/0603114 +gr-qc/0603121 +gr-qc/0603129 +gr-qc/0603135 +gr-qc/0604006 +gr-qc/0604010 +gr-qc/0604011 +gr-qc/0604013 +gr-qc/0604016 +gr-qc/0604017 +gr-qc/0604025 +gr-qc/0604035 +gr-qc/0604054 +gr-qc/0604056 +gr-qc/0604059 +gr-qc/0604060 +gr-qc/0604061 +gr-qc/0604062 +gr-qc/0604063 +gr-qc/0604067 +gr-qc/0604069 +gr-qc/0604081 +gr-qc/0604082 +gr-qc/0604086 +gr-qc/0604090 +gr-qc/0604095 +gr-qc/0604098 +gr-qc/0604103 +gr-qc/0604107 +gr-qc/0604108 +gr-qc/0604110 +gr-qc/0604111 +gr-qc/0604118 +gr-qc/0604120 +gr-qc/0604124 +gr-qc/0605002 +gr-qc/0605003 +gr-qc/0605004 +gr-qc/0605014 +gr-qc/0605027 +gr-qc/0605029 +gr-qc/0605030 +gr-qc/0605034 +gr-qc/0605039 +gr-qc/0605042 +gr-qc/0605043 +gr-qc/0605045 +gr-qc/0605048 +gr-qc/0605072 +gr-qc/0605087 +gr-qc/0605089 +gr-qc/0605101 +gr-qc/0605105 +gr-qc/0605106 +gr-qc/0605108 +gr-qc/0605113 +gr-qc/0605114 +gr-qc/0605115 +gr-qc/0605117 +gr-qc/0605119 +gr-qc/0605120 +gr-qc/0605121 +gr-qc/0605122 +gr-qc/0605123 +gr-qc/0605130 +gr-qc/0605133 +gr-qc/0605135 +gr-qc/0605137 +gr-qc/0605142 +gr-qc/0605144 +gr-qc/0605146 +gr-qc/0605148 +gr-qc/0605149 +gr-qc/0606004 +gr-qc/0606009 +gr-qc/0606013 +gr-qc/0606014 +gr-qc/0606015 +gr-qc/0606020 +gr-qc/0606021 +gr-qc/0606024 +gr-qc/0606027 +gr-qc/0606033 +gr-qc/0606034 +gr-qc/0606038 +gr-qc/0606040 +gr-qc/0606046 +gr-qc/0606048 +gr-qc/0606051 +gr-qc/0606052 +gr-qc/0606054 +gr-qc/0606060 +gr-qc/0606063 +gr-qc/0606069 +gr-qc/0606072 +gr-qc/0606078 +gr-qc/0606079 +gr-qc/0606099 +gr-qc/0606102 +gr-qc/0606107 +gr-qc/0606110 +gr-qc/0606118 +gr-qc/0606121 +gr-qc/0606122 +gr-qc/0606126 +gr-qc/0606128 +gr-qc/0606131 +gr-qc/0606136 +gr-qc/0607001 +gr-qc/0607002 +gr-qc/0607003 +gr-qc/0607004 +gr-qc/0607005 +gr-qc/0607015 +gr-qc/0607019 +gr-qc/0607020 +gr-qc/0607028 +gr-qc/0607030 +gr-qc/0607038 +gr-qc/0607039 +gr-qc/0607049 +gr-qc/0607052 +gr-qc/0607053 +gr-qc/0607055 +gr-qc/0607064 +gr-qc/0607067 +gr-qc/0607069 +gr-qc/0607072 +gr-qc/0607075 +gr-qc/0607076 +gr-qc/0607078 +gr-qc/0607079 +gr-qc/0607080 +gr-qc/0607082 +gr-qc/0607086 +gr-qc/0607088 +gr-qc/0607097 +gr-qc/0607099 +gr-qc/0607100 +gr-qc/0607101 +gr-qc/0607108 +gr-qc/0607111 +gr-qc/0607120 +gr-qc/0607121 +gr-qc/0607125 +gr-qc/0607129 +gr-qc/0607130 +gr-qc/0607131 +gr-qc/0607132 +gr-qc/0607135 +gr-qc/0607137 +gr-qc/0607140 +gr-qc/0607141 +gr-qc/0608002 +gr-qc/0608004 +gr-qc/0608007 +gr-qc/0608016 +gr-qc/0608028 +gr-qc/0608030 +gr-qc/0608032 +gr-qc/0608037 +gr-qc/0608039 +gr-qc/0608042 +gr-qc/0608043 +gr-qc/0608049 +gr-qc/0608050 +gr-qc/0608052 +gr-qc/0608053 +gr-qc/0608058 +gr-qc/0608063 +gr-qc/0608066 +gr-qc/0608069 +gr-qc/0608074 +gr-qc/0608075 +gr-qc/0608076 +gr-qc/0608077 +gr-qc/0608080 +gr-qc/0608084 +gr-qc/0608086 +gr-qc/0608091 +gr-qc/0608092 +gr-qc/0608095 +gr-qc/0608097 +gr-qc/0608098 +gr-qc/0608099 +gr-qc/0608100 +gr-qc/0608106 +gr-qc/0608107 +gr-qc/0608109 +gr-qc/0608110 +gr-qc/0608115 +gr-qc/0608116 +gr-qc/0608117 +gr-qc/0608121 +gr-qc/0608122 +gr-qc/0608124 +gr-qc/0608125 +gr-qc/0608136 +gr-qc/0608137 +gr-qc/0608139 +gr-qc/0609002 +gr-qc/0609007 +gr-qc/0609008 +gr-qc/0609009 +gr-qc/0609012 +gr-qc/0609013 +gr-qc/0609014 +gr-qc/0609016 +gr-qc/0609019 +gr-qc/0609021 +gr-qc/0609023 +gr-qc/0609024 +gr-qc/0609027 +gr-qc/0609029 +gr-qc/0609031 +gr-qc/0609032 +gr-qc/0609039 +gr-qc/0609040 +gr-qc/0609041 +gr-qc/0609042 +gr-qc/0609047 +gr-qc/0609048 +gr-qc/0609049 +gr-qc/0609050 +gr-qc/0609055 +gr-qc/0609057 +gr-qc/0609058 +gr-qc/0609062 +gr-qc/0609063 +gr-qc/0609064 +gr-qc/0609069 +gr-qc/0609071 +gr-qc/0609072 +gr-qc/0609074 +gr-qc/0609076 +gr-qc/0609077 +gr-qc/0609079 +gr-qc/0609080 +gr-qc/0609084 +gr-qc/0609085 +gr-qc/0609086 +gr-qc/0609087 +gr-qc/0609088 +gr-qc/0609089 +gr-qc/0609090 +gr-qc/0609093 +gr-qc/0609097 +gr-qc/0609114 +gr-qc/0609115 +gr-qc/0609117 +gr-qc/0609118 +gr-qc/0609120 +gr-qc/0609121 +gr-qc/0609122 +gr-qc/0609123 +gr-qc/0609124 +gr-qc/0609125 +gr-qc/0609126 +gr-qc/0609127 +gr-qc/0609128 +gr-qc/0609130 +gr-qc/0609131 +gr-qc/0609132 +gr-qc/0609133 +gr-qc/0610003 +gr-qc/0610004 +gr-qc/0610006 +gr-qc/0610008 +gr-qc/0610009 +gr-qc/0610011 +gr-qc/0610012 +gr-qc/0610013 +gr-qc/0610014 +gr-qc/0610019 +gr-qc/0610020 +gr-qc/0610021 +gr-qc/0610022 +gr-qc/0610023 +gr-qc/0610024 +gr-qc/0610025 +gr-qc/0610032 +gr-qc/0610033 +gr-qc/0610039 +gr-qc/0610041 +gr-qc/0610043 +gr-qc/0610044 +gr-qc/0610045 +gr-qc/0610046 +gr-qc/0610047 +gr-qc/0610048 +gr-qc/0610050 +gr-qc/0610055 +gr-qc/0610056 +gr-qc/0610060 +gr-qc/0610064 +gr-qc/0610067 +gr-qc/0610072 +gr-qc/0610074 +gr-qc/0610080 +gr-qc/0610082 +gr-qc/0610086 +gr-qc/0610087 +gr-qc/0610088 +gr-qc/0610089 +gr-qc/0610092 +gr-qc/0610094 +gr-qc/0610096 +gr-qc/0610098 +gr-qc/0610099 +gr-qc/0610102 +gr-qc/0610103 +gr-qc/0610104 +gr-qc/0610107 +gr-qc/0610110 +gr-qc/0610115 +gr-qc/0610116 +gr-qc/0610117 +gr-qc/0610118 +gr-qc/0610119 +gr-qc/0610121 +gr-qc/0610122 +gr-qc/0610123 +gr-qc/0610125 +gr-qc/0610126 +gr-qc/0610127 +gr-qc/0610128 +gr-qc/0610129 +gr-qc/0610131 +gr-qc/0610133 +gr-qc/0610134 +gr-qc/0610139 +gr-qc/0610140 +gr-qc/0610141 +gr-qc/0610142 +gr-qc/0610143 +gr-qc/0610144 +gr-qc/0610147 +gr-qc/0610150 +gr-qc/0610153 +gr-qc/0610154 +gr-qc/0610160 +gr-qc/0611003 +gr-qc/0611004 +gr-qc/0611005 +gr-qc/0611006 +gr-qc/0611013 +gr-qc/0611015 +gr-qc/0611020 +gr-qc/0611022 +gr-qc/0611024 +gr-qc/0611027 +gr-qc/0611030 +gr-qc/0611031 +gr-qc/0611032 +gr-qc/0611035 +gr-qc/0611038 +gr-qc/0611040 +gr-qc/0611041 +gr-qc/0611042 +gr-qc/0611044 +gr-qc/0611047 +gr-qc/0611049 +gr-qc/0611050 +gr-qc/0611051 +gr-qc/0611053 +gr-qc/0611054 +gr-qc/0611055 +gr-qc/0611057 +gr-qc/0611060 +gr-qc/0611062 +gr-qc/0611064 +gr-qc/0611065 +gr-qc/0611067 +gr-qc/0611069 +gr-qc/0611070 +gr-qc/0611071 +gr-qc/0611072 +gr-qc/0611075 +gr-qc/0611076 +gr-qc/0611079 +gr-qc/0611082 +gr-qc/0611083 +gr-qc/0611085 +gr-qc/0611086 +gr-qc/0611088 +gr-qc/0611090 +gr-qc/0611092 +gr-qc/0611094 +gr-qc/0611095 +gr-qc/0611097 +gr-qc/0611101 +gr-qc/0611102 +gr-qc/0611103 +gr-qc/0611105 +gr-qc/0611107 +gr-qc/0611110 +gr-qc/0611111 +gr-qc/0611112 +gr-qc/0611113 +gr-qc/0611114 +gr-qc/0611119 +gr-qc/0611120 +gr-qc/0611122 +gr-qc/0611123 +gr-qc/0611126 +gr-qc/0611132 +gr-qc/0611133 +gr-qc/0611134 +gr-qc/0611135 +gr-qc/0611136 +gr-qc/0611137 +gr-qc/0611139 +gr-qc/0611140 +gr-qc/0611141 +gr-qc/0611142 +gr-qc/0611143 +gr-qc/0611144 +gr-qc/0611145 +gr-qc/0611147 +gr-qc/0611148 +gr-qc/0611149 +gr-qc/0611152 +gr-qc/0611155 +gr-qc/0611156 +gr-qc/0611157 +gr-qc/0612001 +gr-qc/0612002 +gr-qc/0612003 +gr-qc/0612004 +gr-qc/0612005 +gr-qc/0612007 +gr-qc/0612008 +gr-qc/0612009 +gr-qc/0612010 +gr-qc/0612012 +gr-qc/0612013 +gr-qc/0612014 +gr-qc/0612018 +gr-qc/0612019 +gr-qc/0612020 +gr-qc/0612023 +gr-qc/0612024 +gr-qc/0612026 +gr-qc/0612027 +gr-qc/0612029 +gr-qc/0612032 +gr-qc/0612033 +gr-qc/0612035 +gr-qc/0612038 +gr-qc/0612039 +gr-qc/0612043 +gr-qc/0612044 +gr-qc/0612046 +gr-qc/0612047 +gr-qc/0612049 +gr-qc/0612053 +gr-qc/0612055 +gr-qc/0612057 +gr-qc/0612058 +gr-qc/0612059 +gr-qc/0612065 +gr-qc/0612066 +gr-qc/0612067 +gr-qc/0612068 +gr-qc/0612070 +gr-qc/0612071 +gr-qc/0612072 +gr-qc/0612073 +gr-qc/0612075 +gr-qc/0612081 +gr-qc/0612090 +gr-qc/0612096 +gr-qc/0612100 +gr-qc/0612101 +gr-qc/0612102 +gr-qc/0612103 +gr-qc/0612104 +gr-qc/0612105 +gr-qc/0612107 +gr-qc/0612109 +gr-qc/0612110 +gr-qc/0612111 +gr-qc/0612112 +gr-qc/0612117 +gr-qc/0612119 +gr-qc/0612120 +gr-qc/0612121 +gr-qc/0612122 +gr-qc/0612123 +gr-qc/0612128 +gr-qc/0612129 +gr-qc/0612131 +gr-qc/0612133 +gr-qc/0612135 +gr-qc/0612136 +gr-qc/0612137 +gr-qc/0612140 +gr-qc/0612143 +gr-qc/0612144 +gr-qc/0612145 +gr-qc/0612146 +gr-qc/0612148 +gr-qc/0612149 +gr-qc/0612150 +gr-qc/0612152 +gr-qc/0612153 +gr-qc/0612155 +gr-qc/0612156 +gr-qc/0612157 +gr-qc/0612159 +gr-qc/0612164 +gr-qc/0612167 +gr-qc/0612168 +gr-qc/0612171 +gr-qc/0612172 +gr-qc/0612173 +gr-qc/0612180 +gr-qc/0612191 +gr-qc/0612192 +gr-qc/0701001 +gr-qc/0701002 +gr-qc/0701003 +gr-qc/0701005 +gr-qc/0701009 +gr-qc/0701013 +gr-qc/0701014 +gr-qc/0701016 +gr-qc/0701019 +gr-qc/0701020 +gr-qc/0701021 +gr-qc/0701022 +gr-qc/0701024 +gr-qc/0701025 +gr-qc/0701026 +gr-qc/0701027 +gr-qc/0701028 +gr-qc/0701029 +gr-qc/0701035 +gr-qc/0701037 +gr-qc/0701038 +gr-qc/0701041 +gr-qc/0701043 +gr-qc/0701044 +gr-qc/0701047 +gr-qc/0701053 +gr-qc/0701054 +gr-qc/0701055 +gr-qc/0701061 +gr-qc/0701064 +gr-qc/0701066 +gr-qc/0701070 +gr-qc/0701071 +gr-qc/0701072 +gr-qc/0701073 +gr-qc/0701075 +gr-qc/0701078 +gr-qc/0701081 +gr-qc/0701086 +gr-qc/0701087 +gr-qc/0701089 +gr-qc/0701090 +gr-qc/0701091 +gr-qc/0701095 +gr-qc/0701096 +gr-qc/0701098 +gr-qc/0701099 +gr-qc/0701101 +gr-qc/0701102 +gr-qc/0701104 +gr-qc/0701109 +gr-qc/0701110 +gr-qc/0701111 +gr-qc/0701113 +gr-qc/0701114 +gr-qc/0701118 +gr-qc/0701119 +gr-qc/0701121 +gr-qc/0701122 +gr-qc/0701123 +gr-qc/0701125 +gr-qc/0701126 +gr-qc/0701129 +gr-qc/0701130 +gr-qc/0701132 +gr-qc/0701133 +gr-qc/0701134 +gr-qc/0701138 +gr-qc/0701139 +gr-qc/0701140 +gr-qc/0701142 +gr-qc/0701147 +gr-qc/0701148 +gr-qc/0701149 +gr-qc/0701152 +gr-qc/0701153 +gr-qc/0701154 +gr-qc/0701156 +gr-qc/0701157 +gr-qc/0701161 +gr-qc/0701166 +gr-qc/0701167 +gr-qc/0701169 +gr-qc/0701170 +gr-qc/0701171 +gr-qc/0701172 +gr-qc/0701173 +gr-qc/0702001 +gr-qc/0702003 +gr-qc/0702005 +gr-qc/0702006 +gr-qc/0702008 +gr-qc/0702011 +gr-qc/0702014 +gr-qc/0702015 +gr-qc/0702016 +gr-qc/0702018 +gr-qc/0702019 +gr-qc/0702027 +gr-qc/0702028 +gr-qc/0702029 +gr-qc/0702031 +gr-qc/0702032 +gr-qc/0702033 +gr-qc/0702036 +gr-qc/0702037 +gr-qc/0702038 +gr-qc/0702039 +gr-qc/0702041 +gr-qc/0702042 +gr-qc/0702043 +gr-qc/0702044 +gr-qc/0702046 +gr-qc/0702049 +gr-qc/0702050 +gr-qc/0702051 +gr-qc/0702052 +gr-qc/0702053 +gr-qc/0702055 +gr-qc/0702056 +gr-qc/0702057 +gr-qc/0702058 +gr-qc/0702060 +gr-qc/0702061 +gr-qc/0702062 +gr-qc/0702063 +gr-qc/0702064 +gr-qc/0702066 +gr-qc/0702067 +gr-qc/0702069 +gr-qc/0702071 +gr-qc/0702072 +gr-qc/0702073 +gr-qc/0702075 +gr-qc/0702076 +gr-qc/0702078 +gr-qc/0702080 +gr-qc/0702082 +gr-qc/0702084 +gr-qc/0702086 +gr-qc/0702087 +gr-qc/0702089 +gr-qc/0702091 +gr-qc/0702092 +gr-qc/0702093 +gr-qc/0702094 +gr-qc/0702096 +gr-qc/0702098 +gr-qc/0702099 +gr-qc/0702102 +gr-qc/0702103 +gr-qc/0702104 +gr-qc/0702106 +gr-qc/0702110 +gr-qc/0702111 +gr-qc/0702112 +gr-qc/0702113 +gr-qc/0702116 +gr-qc/0702117 +gr-qc/0702118 +gr-qc/0702119 +gr-qc/0702120 +gr-qc/0702121 +gr-qc/0702124 +gr-qc/0702125 +gr-qc/0702127 +gr-qc/0702128 +gr-qc/0702134 +gr-qc/0702135 +gr-qc/0702138 +gr-qc/0702143 +gr-qc/0702144 +gr-qc/0702145 +gr-qc/0702146 +gr-qc/0702148 +gr-qc/0702149 +gr-qc/0702150 +gr-qc/0703001 +gr-qc/0703002 +gr-qc/0703003 +gr-qc/0703004 +gr-qc/0703006 +gr-qc/0703008 +gr-qc/0703009 +gr-qc/0703011 +gr-qc/0703016 +gr-qc/0703017 +gr-qc/0703022 +gr-qc/0703023 +gr-qc/0703024 +gr-qc/0703025 +gr-qc/0703026 +gr-qc/0703027 +gr-qc/0703028 +gr-qc/0703029 +gr-qc/0703030 +gr-qc/0703036 +gr-qc/0703037 +gr-qc/0703038 +gr-qc/0703039 +gr-qc/0703043 +gr-qc/0703044 +gr-qc/0703046 +gr-qc/0703047 +gr-qc/0703049 +gr-qc/0703052 +gr-qc/0703053 +gr-qc/0703059 +gr-qc/0703060 +gr-qc/0703061 +gr-qc/0703063 +gr-qc/0703064 +gr-qc/0703067 +gr-qc/0703069 +gr-qc/0703070 +gr-qc/0703071 +gr-qc/0703072 +gr-qc/0703073 +gr-qc/0703074 +gr-qc/0703075 +gr-qc/0703076 +gr-qc/0703077 +gr-qc/0703078 +gr-qc/0703080 +gr-qc/0703082 +gr-qc/0703083 +gr-qc/0703086 +gr-qc/0703089 +gr-qc/0703090 +gr-qc/0703091 +gr-qc/0703093 +gr-qc/0703096 +gr-qc/0703100 +gr-qc/0703103 +gr-qc/0703104 +gr-qc/0703105 +gr-qc/0703106 +gr-qc/0703107 +gr-qc/0703108 +gr-qc/0703109 +gr-qc/0703111 +gr-qc/0703112 +gr-qc/0703115 +gr-qc/0703116 +gr-qc/0703117 +gr-qc/0703118 +gr-qc/0703119 +gr-qc/0703120 +gr-qc/0703121 +gr-qc/0703123 +gr-qc/0703125 +gr-qc/0703127 +gr-qc/0703128 +gr-qc/0703129 +gr-qc/0703131 +gr-qc/0703135 +gr-qc/0703137 +gr-qc/0703138 +gr-qc/0703139 +gr-qc/0703140 +gr-qc/0703142 +gr-qc/0703143 +gr-qc/0703144 +gr-qc/0703145 +gr-qc/0703146 +gr-qc/0703147 +gr-qc/0703148 +gr-qc/0703150 +gr-qc/0703151 +gr-qc/0703152 +gr-qc/0703154 +gr-qc/0703155 +gr-qc/0703156 +gr-qc/9207003 +gr-qc/9208003 +gr-qc/9209010 +gr-qc/9209012 +gr-qc/9210009 +gr-qc/9210016 +gr-qc/9211002 +gr-qc/9211020 +gr-qc/9301023 +gr-qc/9302015 +gr-qc/9302019 +gr-qc/9302028 +gr-qc/9303017 +gr-qc/9307038 +gr-qc/9308007 +gr-qc/9309015 +gr-qc/9310019 +gr-qc/9312035 +gr-qc/9401027 +gr-qc/9402012 +gr-qc/9403043 +gr-qc/9403054 +gr-qc/9403057 +gr-qc/9404030 +gr-qc/9404034 +gr-qc/9404061 +gr-qc/9405009 +gr-qc/9406007 +gr-qc/9406046 +gr-qc/9408003 +gr-qc/9409012 +gr-qc/9409013 +gr-qc/9409039 +gr-qc/9410047 +gr-qc/9411071 +gr-qc/9412027 +gr-qc/9412052 +gr-qc/9501026 +gr-qc/9501036 +gr-qc/9502038 +gr-qc/9503013 +gr-qc/9503062 +gr-qc/9504019 +gr-qc/9505016 +gr-qc/9505046 +gr-qc/9506030 +gr-qc/9506041 +gr-qc/9506073 +gr-qc/9506075 +gr-qc/9506089 +gr-qc/9506090 +gr-qc/9508036 +gr-qc/9508051 +gr-qc/9508061 +gr-qc/9509004 +gr-qc/9509007 +gr-qc/9510029 +gr-qc/9510068 +gr-qc/9511026 +gr-qc/9511032 +gr-qc/9512036 +gr-qc/9602003 +gr-qc/9602044 +gr-qc/9602052 +gr-qc/9603008 +gr-qc/9603030 +gr-qc/9603044 +gr-qc/9603045 +gr-qc/9603050 +gr-qc/9603057 +gr-qc/9603063 +gr-qc/9604011 +gr-qc/9604018 +gr-qc/9604046 +gr-qc/9605036 +gr-qc/9605048 +gr-qc/9605066 +gr-qc/9606074 +gr-qc/9606089 +gr-qc/9607018 +gr-qc/9607022 +gr-qc/9608019 +gr-qc/9608050 +gr-qc/9609026 +gr-qc/9610031 +gr-qc/9610072 +gr-qc/9612053 +gr-qc/9703007 +gr-qc/9703009 +gr-qc/9703060 +gr-qc/9703066 +gr-qc/9704004 +gr-qc/9704010 +gr-qc/9704015 +gr-qc/9704022 +gr-qc/9704058 +gr-qc/9704059 +gr-qc/9705050 +gr-qc/9705086 +gr-qc/9706002 +gr-qc/9706061 +gr-qc/9707032 +gr-qc/9707049 +gr-qc/9708035 +gr-qc/9708045 +gr-qc/9709035 +gr-qc/9709042 +gr-qc/9709053 +gr-qc/9709054 +gr-qc/9710024 +gr-qc/9710089 +gr-qc/9710099 +gr-qc/9710102 +gr-qc/9711011 +gr-qc/9711064 +gr-qc/9711075 +gr-qc/9712028 +gr-qc/9712056 +gr-qc/9712057 +gr-qc/9712078 +gr-qc/9712084 +gr-qc/9712098 +gr-qc/9801004 +gr-qc/9801051 +gr-qc/9801107 +gr-qc/9802030 +gr-qc/9802046 +gr-qc/9802064 +gr-qc/9802068 +gr-qc/9803006 +gr-qc/9803010 +gr-qc/9803013 +gr-qc/9803031 +gr-qc/9803043 +gr-qc/9803076 +gr-qc/9803081 +gr-qc/9804005 +gr-qc/9804011 +gr-qc/9804012 +gr-qc/9804019 +gr-qc/9804041 +gr-qc/9804043 +gr-qc/9804053 +gr-qc/9804071 +gr-qc/9804076 +gr-qc/9805018 +gr-qc/9805024 +gr-qc/9805031 +gr-qc/9805046 +gr-qc/9805067 +gr-qc/9805088 +gr-qc/9806026 +gr-qc/9806039 +gr-qc/9806108 +gr-qc/9806117 +gr-qc/9808009 +gr-qc/9808020 +gr-qc/9808026 +gr-qc/9808035 +gr-qc/9808080 +gr-qc/9809004 +gr-qc/9809013 +gr-qc/9809058 +gr-qc/9809087 +gr-qc/9810011 +gr-qc/9810012 +gr-qc/9810020 +gr-qc/9810066 +gr-qc/9811003 +gr-qc/9811035 +gr-qc/9811036 +gr-qc/9811041 +gr-qc/9811063 +gr-qc/9811070 +gr-qc/9812024 +gr-qc/9812028 +gr-qc/9812046 +gr-qc/9812068 +gr-qc/9812082 +gr-qc/9812092 +gr-qc/9901014 +gr-qc/9901031 +gr-qc/9901038 +gr-qc/9901046 +gr-qc/9901050 +gr-qc/9901056 +gr-qc/9901066 +gr-qc/9901073 +gr-qc/9902030 +gr-qc/9902038 +gr-qc/9902047 +gr-qc/9902061 +gr-qc/9902064 +gr-qc/9902070 +gr-qc/9902075 +gr-qc/9903023 +gr-qc/9903030 +gr-qc/9903084 +gr-qc/9903107 +gr-qc/9904013 +gr-qc/9904017 +gr-qc/9904020 +gr-qc/9905021 +gr-qc/9905025 +gr-qc/9905090 +gr-qc/9905097 +gr-qc/9906049 +gr-qc/9906066 +gr-qc/9906092 +gr-qc/9906121 +gr-qc/9907010 +gr-qc/9907025 +gr-qc/9907031 +gr-qc/9907040 +gr-qc/9908012 +gr-qc/9908026 +gr-qc/9908029 +gr-qc/9908079 +gr-qc/9908081 +gr-qc/9908083 +gr-qc/9909002 +gr-qc/9909007 +gr-qc/9909018 +gr-qc/9909020 +gr-qc/9909021 +gr-qc/9909055 +gr-qc/9910033 +gr-qc/9910057 +gr-qc/9910093 +gr-qc/9910108 +gr-qc/9911015 +gr-qc/9911094 +gr-qc/9911106 +gr-qc/9911114 +gr-qc/9912042 +gr-qc/9912047 +gr-qc/9912092 +gr-qc/9912117 +hep-ex/0001003 Experiment +hep-ex/0001004 Experiment +hep-ex/0001005 Experiment +hep-ex/0001006 Experiment +hep-ex/0001007 Experiment +hep-ex/0001015 Experiment +hep-ex/0001017 Experiment +hep-ex/0001035 Experiment +hep-ex/0001038 Experiment +hep-ex/0001046 Experiment +hep-ex/0001047 Experiment +hep-ex/0001048 Experiment +hep-ex/0001051 Experiment +hep-ex/0001055 Experiment +hep-ex/0001056 Experiment +hep-ex/0001063 Experiment +hep-ex/0002006 Experiment +hep-ex/0002007 Experiment +hep-ex/0002008 Experiment +hep-ex/0002012 Experiment +hep-ex/0002017 Experiment +hep-ex/0002022 Experiment +hep-ex/0002024 Experiment +hep-ex/0002053 Experiment +hep-ex/0002058 Experiment +hep-ex/0003002 Experiment +hep-ex/0003011 Experiment +hep-ex/0003013 Experiment +hep-ex/0003016 Experiment +hep-ex/0003020 Experiment +hep-ex/0003031 Experiment +hep-ex/0003032 Experiment +hep-ex/0003033 Experiment +hep-ex/0004023 Experiment +hep-ex/0004031 Experiment +hep-ex/0005003 Experiment +hep-ex/0005005 Experiment +hep-ex/0005009 Experiment +hep-ex/0005010 Experiment +hep-ex/0005016 Experiment +hep-ex/0005017 Experiment +hep-ex/0005025 Experiment +hep-ex/0005027 Experiment +hep-ex/0005032 Experiment +hep-ex/0006003 Experiment +hep-ex/0006005 Experiment +hep-ex/0006029 Experiment +hep-ex/0007009 Experiment +hep-ex/0007014 Experiment +hep-ex/0007015 Experiment +hep-ex/0007016 Experiment +hep-ex/0007017 Experiment +hep-ex/0007018 Experiment +hep-ex/0007019 Experiment +hep-ex/0007026 Experiment +hep-ex/0007030 Experiment +hep-ex/0007035 Experiment +hep-ex/0007045 Experiment +hep-ex/0007051 Experiment +hep-ex/0007053 Experiment +hep-ex/0007059 Experiment +hep-ex/0008014 Experiment +hep-ex/0008018 Experiment +hep-ex/0008019 Experiment +hep-ex/0008021 Experiment +hep-ex/0008024 Experiment +hep-ex/0008031 Experiment +hep-ex/0008032 Experiment +hep-ex/0008038 Experiment +hep-ex/0008045 Experiment +hep-ex/0009001 Experiment +hep-ex/0009007 Experiment +hep-ex/0009013 Experiment +hep-ex/0009016 Experiment +hep-ex/0009018 Experiment +hep-ex/0009019 Experiment +hep-ex/0009020 Experiment +hep-ex/0009022 Experiment +hep-ex/0009023 Experiment +hep-ex/0009029 Experiment +hep-ex/0009030 Experiment +hep-ex/0009034 Experiment +hep-ex/0009035 Experiment +hep-ex/0009048 Experiment +hep-ex/0009049 Experiment +hep-ex/0009053 Experiment +hep-ex/0009059 Experiment +hep-ex/0009065 Experiment +hep-ex/0010013 Experiment +hep-ex/0010014 Experiment +hep-ex/0010015 Experiment +hep-ex/0010018 Experiment +hep-ex/0010019 Experiment +hep-ex/0010026 Experiment +hep-ex/0010031 Experiment +hep-ex/0010033 Experiment +hep-ex/0010043 Experiment +hep-ex/0010044 Experiment +hep-ex/0010057 Experiment +hep-ex/0010059 Experiment +hep-ex/0010063 Experiment +hep-ex/0010072 Experiment +hep-ex/0011026 Experiment +hep-ex/0011030 Experiment +hep-ex/0011036 Experiment +hep-ex/0011077 Experiment +hep-ex/0011079 Experiment +hep-ex/0011090 Experiment +hep-ex/0011091 Experiment +hep-ex/0011097 Experiment +hep-ex/0011098 Experiment +hep-ex/0012018 Experiment +hep-ex/0012030 Experiment +hep-ex/0012031 Experiment +hep-ex/0012039 Experiment +hep-ex/0012051 Experiment +hep-ex/0101014 Experiment +hep-ex/0101037 Experiment +hep-ex/0101039 Experiment +hep-ex/0101041 Experiment +hep-ex/0101043 Experiment +hep-ex/0101058 Experiment +hep-ex/0102002 Experiment +hep-ex/0102003 Experiment +hep-ex/0102018 Experiment +hep-ex/0102029 Experiment +hep-ex/0102030 Experiment +hep-ex/0102039 Experiment +hep-ex/0102040 Experiment +hep-ex/0102048 Experiment +hep-ex/0102049 Experiment +hep-ex/0103001 Experiment +hep-ex/0103012 Experiment +hep-ex/0104017 Experiment +hep-ex/0104029 Experiment +hep-ex/0104035 Experiment +hep-ex/0104037 Experiment +hep-ex/0104040 Experiment +hep-ex/0104049 Experiment +hep-ex/0105031 Experiment +hep-ex/0105048 Experiment +hep-ex/0105068 Experiment +hep-ex/0105083 Experiment +hep-ex/0105092 Experiment +hep-ex/0106005 Experiment +hep-ex/0106029 Experiment +hep-ex/0106062 Experiment +hep-ex/0106077 Experiment +hep-ex/0106083 Experiment +hep-ex/0106102 Experiment +hep-ex/0107009 Experiment +hep-ex/0107042 Experiment +hep-ex/0108017 Experiment +hep-ex/0108018 Experiment +hep-ex/0108027 Experiment +hep-ex/0108028 Experiment +hep-ex/0108031 Experiment +hep-ex/0108037 Experiment +hep-ex/0108039 Experiment +hep-ex/0108044 Experiment +hep-ex/0108047 Experiment +hep-ex/0108054 Experiment +hep-ex/0109004 Experiment +hep-ex/0109011 Experiment +hep-ex/0109016 Experiment +hep-ex/0109017 Experiment +hep-ex/0109018 Experiment +hep-ex/0109021 Experiment +hep-ex/0109026 Experiment +hep-ex/0109027 Experiment +hep-ex/0109030 Experiment +hep-ex/0109035 Experiment +hep-ex/0109038 Experiment +hep-ex/0109039 Experiment +hep-ex/0109041 Experiment +hep-ex/0110006 Experiment +hep-ex/0110009 Experiment +hep-ex/0110012 Experiment +hep-ex/0110016 Experiment +hep-ex/0110020 Experiment +hep-ex/0110023 Experiment +hep-ex/0110028 Experiment +hep-ex/0110033 Experiment +hep-ex/0110037 Experiment +hep-ex/0110040 Experiment +hep-ex/0110042 Experiment +hep-ex/0110047 Experiment +hep-ex/0110051 Experiment +hep-ex/0110060 Experiment +hep-ex/0110061 Experiment +hep-ex/0110062 Experiment +hep-ex/0110065 Experiment +hep-ex/0110075 Experiment +hep-ex/0111006 Experiment +hep-ex/0111007 Experiment +hep-ex/0111010 Experiment +hep-ex/0111013 Experiment +hep-ex/0111026 Experiment +hep-ex/0111030 Experiment +hep-ex/0111035 Experiment +hep-ex/0111047 Experiment +hep-ex/0111053 Experiment +hep-ex/0111059 Experiment +hep-ex/0111060 Experiment +hep-ex/0111067 Experiment +hep-ex/0111069 Experiment +hep-ex/0111071 Experiment +hep-ex/0111082 Experiment +hep-ex/0111087 Experiment +hep-ex/0111094 Experiment +hep-ex/0112003 Experiment +hep-ex/0112014 Experiment +hep-ex/0112022 Experiment +hep-ex/0112023 Experiment +hep-ex/0112024 Experiment +hep-ex/0112025 Experiment +hep-ex/0112031 Experiment +hep-ex/0112037 Experiment +hep-ex/0112044 Experiment +hep-ex/0112045 Experiment +hep-ex/0201007 Experiment +hep-ex/0201008 Experiment +hep-ex/0201020 Experiment +hep-ex/0201022 Experiment +hep-ex/0201025 Experiment +hep-ex/0201031 Experiment +hep-ex/0201040 Experiment +hep-ex/0201041 Experiment +hep-ex/0202005 Experiment +hep-ex/0202017 Experiment +hep-ex/0202018 Experiment +hep-ex/0202026 Experiment +hep-ex/0202027 Experiment +hep-ex/0202032 Experiment +hep-ex/0202035 Experiment +hep-ex/0202041 Experiment +hep-ex/0202043 Experiment +hep-ex/0203008 Experiment +hep-ex/0203011 Experiment +hep-ex/0203018 Experiment +hep-ex/0203019 Experiment +hep-ex/0203021 Experiment +hep-ex/0203022 Experiment +hep-ex/0203026 Experiment +hep-ex/0203027 Experiment +hep-ex/0204002 Experiment +hep-ex/0204003 Experiment +hep-ex/0204006 Experiment +hep-ex/0204008 Experiment +hep-ex/0204010 Experiment +hep-ex/0204014 Experiment +hep-ex/0204028 Experiment +hep-ex/0204032 Experiment +hep-ex/0204038 Experiment +hep-ex/0205002 Experiment +hep-ex/0205010 Experiment +hep-ex/0205021 Experiment +hep-ex/0205027 Experiment +hep-ex/0205029 Experiment +hep-ex/0205066 Experiment +hep-ex/0205068 Experiment +hep-ex/0205075 Experiment +hep-ex/0205076 Experiment +hep-ex/0205078 Experiment +hep-ex/0205093 Experiment +hep-ex/0205100 Experiment +hep-ex/0205104 Experiment +hep-ex/0205107 Experiment +hep-ex/0206002 Experiment +hep-ex/0206008 Experiment +hep-ex/0206013 Experiment +hep-ex/0206014 Experiment +hep-ex/0206021 Experiment +hep-ex/0206022 Experiment +hep-ex/0206026 Experiment +hep-ex/0206029 Experiment +hep-ex/0206054 Experiment +hep-ex/0206057 Experiment +hep-ex/0206058 Experiment +hep-ex/0206073 Experiment +hep-ex/0207006 Experiment +hep-ex/0207007 Experiment +hep-ex/0207012 Experiment +hep-ex/0207017 Experiment +hep-ex/0207022 Experiment +hep-ex/0207027 Experiment +hep-ex/0207038 Experiment +hep-ex/0207041 Experiment +hep-ex/0207042 Experiment +hep-ex/0207045 Experiment +hep-ex/0207046 Experiment +hep-ex/0207077 Experiment +hep-ex/0207090 Experiment +hep-ex/0207097 Experiment +hep-ex/0207100 Experiment +hep-ex/0208001 Experiment +hep-ex/0208009 Experiment +hep-ex/0208010 Experiment +hep-ex/0208014 Experiment +hep-ex/0208016 Experiment +hep-ex/0208018 Experiment +hep-ex/0208025 Experiment +hep-ex/0208029 Experiment +hep-ex/0208034 Experiment +hep-ex/0208041 Experiment +hep-ex/0208044 Experiment +hep-ex/0208046 Experiment +hep-ex/0208050 Experiment +hep-ex/0209002 Experiment +hep-ex/0209013 Experiment +hep-ex/0209018 Experiment +hep-ex/0209020 Experiment +hep-ex/0209026 Experiment +hep-ex/0209041 Experiment +hep-ex/0209051 Experiment +hep-ex/0209052 Experiment +hep-ex/0209072 Experiment +hep-ex/0209076 Experiment +hep-ex/0209078 Experiment +hep-ex/0209080 Experiment +hep-ex/0210009 Experiment +hep-ex/0210024 Experiment +hep-ex/0210035 Experiment +hep-ex/0210051 Experiment +hep-ex/0210053 Experiment +hep-ex/0210056 Experiment +hep-ex/0210066 Experiment +hep-ex/0211004 Experiment +hep-ex/0211007 Experiment +hep-ex/0211022 Experiment +hep-ex/0211024 Experiment +hep-ex/0211033 Experiment +hep-ex/0211042 Experiment +hep-ex/0211053 Experiment +hep-ex/0211056 Experiment +hep-ex/0211066 Experiment +hep-ex/0211071 Experiment +hep-ex/0212012 Experiment +hep-ex/0212017 Experiment +hep-ex/0212029 Experiment +hep-ex/0212033 Experiment +hep-ex/0212041 Experiment +hep-ex/0212048 Experiment +hep-ex/0212052 Experiment +hep-ex/0212054 Experiment +hep-ex/0212061 Experiment +hep-ex/0212065 Experiment +hep-ex/0212066 Experiment +hep-ex/0301004 Experiment +hep-ex/0301013 Experiment +hep-ex/0301017 Experiment +hep-ex/0301018 Experiment +hep-ex/0301020 Experiment +hep-ex/0301024 Experiment +hep-ex/0301032 Experiment +hep-ex/0301039 Experiment +hep-ex/0301040 Experiment +hep-ex/0302002 Experiment +hep-ex/0302004 Experiment +hep-ex/0302005 Experiment +hep-ex/0302007 Experiment +hep-ex/0302015 Experiment +hep-ex/0302024 Experiment +hep-ex/0302027 Experiment +hep-ex/0302029 Experiment +hep-ex/0302033 Experiment +hep-ex/0302039 Experiment +hep-ex/0303004 Experiment +hep-ex/0303005 Experiment +hep-ex/0303006 Experiment +hep-ex/0303008 Experiment +hep-ex/0303013 Experiment +hep-ex/0303018 Experiment +hep-ex/0303019 Experiment +hep-ex/0303024 Experiment +hep-ex/0303025 Experiment +hep-ex/0303026 Experiment +hep-ex/0303027 Experiment +hep-ex/0303028 Experiment +hep-ex/0303030 Experiment +hep-ex/0303031 Experiment +hep-ex/0303033 Experiment +hep-ex/0303036 Experiment +hep-ex/0303037 Experiment +hep-ex/0303046 Experiment +hep-ex/0304002 Experiment +hep-ex/0304006 Experiment +hep-ex/0304007 Experiment +hep-ex/0304009 Experiment +hep-ex/0304011 Experiment +hep-ex/0304012 Experiment +hep-ex/0304016 Experiment +hep-ex/0304021 Experiment +hep-ex/0304027 Experiment +hep-ex/0304032 Experiment +hep-ex/0304035 Experiment +hep-ex/0304038 Experiment +hep-ex/0304040 Experiment +hep-ex/0305002 Experiment +hep-ex/0305018 Experiment +hep-ex/0305038 Experiment +hep-ex/0305042 Experiment +hep-ex/0305049 Experiment +hep-ex/0305053 Experiment +hep-ex/0305070 Experiment +hep-ex/0305071 Experiment +hep-ex/0305075 Experiment +hep-ex/0305076 Experiment +hep-ex/0305081 Experiment +hep-ex/0305087 Experiment +hep-ex/0306003 Experiment +hep-ex/0306007 Experiment +hep-ex/0306022 Experiment +hep-ex/0306030 Experiment +hep-ex/0306033 Experiment +hep-ex/0306037 Experiment +hep-ex/0306038 Experiment +hep-ex/0306045 Experiment +hep-ex/0306047 Experiment +hep-ex/0306050 Experiment +hep-ex/0306052 Experiment +hep-ex/0306054 Experiment +hep-ex/0307004 Experiment +hep-ex/0307014 Experiment +hep-ex/0307019 Experiment +hep-ex/0307026 Experiment +hep-ex/0307048 Experiment +hep-ex/0307049 Experiment +hep-ex/0307050 Experiment +hep-ex/0307051 Experiment +hep-ex/0307054 Experiment +hep-ex/0307061 Experiment +hep-ex/0307062 Experiment +hep-ex/0307068 Experiment +hep-ex/0307079 Experiment +hep-ex/0307082 Experiment +hep-ex/0307083 Experiment +hep-ex/0308001 Experiment +hep-ex/0308008 Experiment +hep-ex/0308012 Experiment +hep-ex/0308018 Experiment +hep-ex/0308019 Experiment +hep-ex/0308021 Experiment +hep-ex/0308032 Experiment +hep-ex/0308033 Experiment +hep-ex/0308035 Experiment +hep-ex/0308037 Experiment +hep-ex/0308038 Experiment +hep-ex/0308040 Experiment +hep-ex/0308042 Experiment +hep-ex/0308044 Experiment +hep-ex/0308048 Experiment +hep-ex/0308050 Experiment +hep-ex/0308051 Experiment +hep-ex/0308052 Experiment +hep-ex/0308054 Experiment +hep-ex/0308057 Experiment +hep-ex/0308060 Experiment +hep-ex/0308061 Experiment +hep-ex/0308065 Experiment +hep-ex/0308067 Experiment +hep-ex/0308073 Experiment +hep-ex/0309006 Experiment +hep-ex/0309011 Experiment +hep-ex/0309013 Experiment +hep-ex/0309014 Experiment +hep-ex/0309019 Experiment +hep-ex/0309025 Experiment +hep-ex/0309032 Experiment +hep-ex/0309042 Experiment +hep-ex/0309051 Experiment +hep-ex/0309053 Experiment +hep-ex/0309057 Experiment +hep-ex/0309058 Experiment +hep-ex/0309069 Experiment +hep-ex/0309072 Experiment +hep-ex/0309075 Experiment +hep-ex/0309077 Experiment +hep-ex/0310013 Experiment +hep-ex/0310023 Experiment +hep-ex/0310024 Experiment +hep-ex/0310027 Experiment +hep-ex/0310028 Experiment +hep-ex/0310029 Experiment +hep-ex/0310034 Experiment +hep-ex/0310037 Experiment +hep-ex/0310041 Experiment +hep-ex/0310048 Experiment +hep-ex/0310050 Experiment +hep-ex/0310051 Experiment +hep-ex/0310058 Experiment +hep-ex/0311002 Experiment +hep-ex/0311003 Experiment +hep-ex/0311004 Experiment +hep-ex/0311005 Experiment +hep-ex/0311008 Experiment +hep-ex/0311016 Experiment +hep-ex/0311017 Experiment +hep-ex/0311020 Experiment +hep-ex/0311021 Experiment +hep-ex/0311031 Experiment +hep-ex/0311032 Experiment +hep-ex/0311037 Experiment +hep-ex/0311038 Experiment +hep-ex/0311042 Experiment +hep-ex/0311048 Experiment +hep-ex/0311049 Experiment +hep-ex/0311057 Experiment +hep-ex/0311061 Experiment +hep-ex/0312002 Experiment +hep-ex/0312004 Experiment +hep-ex/0312016 Experiment +hep-ex/0312027 Experiment +hep-ex/0312029 Experiment +hep-ex/0312030 Experiment +hep-ex/0312042 Experiment +hep-ex/0312043 Experiment +hep-ex/0312047 Experiment +hep-ex/0312051 Experiment +hep-ex/0312055 Experiment +hep-ex/0312059 Experiment +hep-ex/0312060 Experiment +hep-ex/0401002 Experiment +hep-ex/0401004 Experiment +hep-ex/0401006 Experiment +hep-ex/0401008 Experiment +hep-ex/0401011 Experiment +hep-ex/0401015 Experiment +hep-ex/0401022 Experiment +hep-ex/0401023 Experiment +hep-ex/0401025 Experiment +hep-ex/0401026 Experiment +hep-ex/0401027 Experiment +hep-ex/0401028 Experiment +hep-ex/0401029 Experiment +hep-ex/0401035 Experiment +hep-ex/0401038 Experiment +hep-ex/0402008 Experiment +hep-ex/0402011 Experiment +hep-ex/0402012 Experiment +hep-ex/0402013 Experiment +hep-ex/0402017 Experiment +hep-ex/0402021 Experiment +hep-ex/0402024 Experiment +hep-ex/0402025 Experiment +hep-ex/0402026 Experiment +hep-ex/0402034 Experiment +hep-ex/0402042 Experiment +hep-ex/0403001 Experiment +hep-ex/0403002 Experiment +hep-ex/0403004 Experiment +hep-ex/0403007 Experiment +hep-ex/0403011 Experiment +hep-ex/0403025 Experiment +hep-ex/0403030 Experiment +hep-ex/0403031 Experiment +hep-ex/0403033 Experiment +hep-ex/0403035 Experiment +hep-ex/0403036 Experiment +hep-ex/0403039 Experiment +hep-ex/0403040 Experiment +hep-ex/0403041 Experiment +hep-ex/0403042 Experiment +hep-ex/0403044 Experiment +hep-ex/0403045 Experiment +hep-ex/0403046 Experiment +hep-ex/0403047 Experiment +hep-ex/0403055 Experiment +hep-ex/0404002 Experiment +hep-ex/0404005 Experiment +hep-ex/0404006 Experiment +hep-ex/0404011 Experiment +hep-ex/0404012 Experiment +hep-ex/0404018 Experiment +hep-ex/0404019 Experiment +hep-ex/0404020 Experiment +hep-ex/0404027 Experiment +hep-ex/0404028 Experiment +hep-ex/0404029 Experiment +hep-ex/0404030 Experiment +hep-ex/0405004 Experiment +hep-ex/0405008 Experiment +hep-ex/0405010 Experiment +hep-ex/0405019 Experiment +hep-ex/0405044 Experiment +hep-ex/0405050 Experiment +hep-ex/0405065 Experiment +hep-ex/0405068 Experiment +hep-ex/0405071 Experiment +hep-ex/0405082 Experiment +hep-ex/0406001 Experiment +hep-ex/0406002 Experiment +hep-ex/0406003 Experiment +hep-ex/0406005 Experiment +hep-ex/0406006 Experiment +hep-ex/0406007 Experiment +hep-ex/0406008 Experiment +hep-ex/0406010 Experiment +hep-ex/0406012 Experiment +hep-ex/0406019 Experiment +hep-ex/0406022 Experiment +hep-ex/0406033 Experiment +hep-ex/0406039 Experiment +hep-ex/0406040 Experiment +hep-ex/0406057 Experiment +hep-ex/0406065 Experiment +hep-ex/0406068 Experiment +hep-ex/0406075 Experiment +hep-ex/0406079 Experiment +hep-ex/0407003 Experiment +hep-ex/0407007 Experiment +hep-ex/0407009 Experiment +hep-ex/0407013 Experiment +hep-ex/0407025 Experiment +hep-ex/0407026 Experiment +hep-ex/0407037 Experiment +hep-ex/0407038 Experiment +hep-ex/0407041 Experiment +hep-ex/0407047 Experiment +hep-ex/0407048 Experiment +hep-ex/0407054 Experiment +hep-ex/0407057 Experiment +hep-ex/0408003 Experiment +hep-ex/0408012 Experiment +hep-ex/0408017 Experiment +hep-ex/0408023 Experiment +hep-ex/0408026 Experiment +hep-ex/0408027 Experiment +hep-ex/0408034 Experiment +hep-ex/0408041 Experiment +hep-ex/0408042 Experiment +hep-ex/0408046 Experiment +hep-ex/0408048 Experiment +hep-ex/0408051 Experiment +hep-ex/0408066 Experiment +hep-ex/0408078 Experiment +hep-ex/0408096 Experiment +hep-ex/0408097 Experiment +hep-ex/0408098 Experiment +hep-ex/0408100 Experiment +hep-ex/0408101 Experiment +hep-ex/0408102 Experiment +hep-ex/0408105 Experiment +hep-ex/0408106 Experiment +hep-ex/0408113 Experiment +hep-ex/0408125 Experiment +hep-ex/0408126 Experiment +hep-ex/0408127 Experiment +hep-ex/0408130 Experiment +hep-ex/0409005 Experiment +hep-ex/0409007 Experiment +hep-ex/0409008 Experiment +hep-ex/0409011 Experiment +hep-ex/0409026 Experiment +hep-ex/0409034 Experiment +hep-ex/0409035 Experiment +hep-ex/0409040 Experiment +hep-ex/0409043 Experiment +hep-ex/0409058 Experiment +hep-ex/0409063 Experiment +hep-ex/0410010 Experiment +hep-ex/0410017 Experiment +hep-ex/0410021 Experiment +hep-ex/0410022 Experiment +hep-ex/0410027 Experiment +hep-ex/0410034 Experiment +hep-ex/0410039 Experiment +hep-ex/0410042 Experiment +hep-ex/0410044 Experiment +hep-ex/0410049 Experiment +hep-ex/0410052 Experiment +hep-ex/0410054 Experiment +hep-ex/0410062 Experiment +hep-ex/0410067 Experiment +hep-ex/0410071 Experiment +hep-ex/0410075 Experiment +hep-ex/0410078 Experiment +hep-ex/0410086 Experiment +hep-ex/0411001 Experiment +hep-ex/0411003 Experiment +hep-ex/0411015 Experiment +hep-ex/0411016 Experiment +hep-ex/0411020 Experiment +hep-ex/0411031 Experiment +hep-ex/0411054 Experiment +hep-ex/0411061 Experiment +hep-ex/0411065 Experiment +hep-ex/0411073 Experiment +hep-ex/0411082 Experiment +hep-ex/0411084 Experiment +hep-ex/0411091 Experiment +hep-ex/0412004 Experiment +hep-ex/0412007 Experiment +hep-ex/0412008 Experiment +hep-ex/0412017 Experiment +hep-ex/0412021 Experiment +hep-ex/0412029 Experiment +hep-ex/0412034 Experiment +hep-ex/0412037 Experiment +hep-ex/0412038 Experiment +hep-ex/0412040 Experiment +hep-ex/0412043 Experiment +hep-ex/0412051 Experiment +hep-ex/0412052 Experiment +hep-ex/0412058 Experiment +hep-ex/0412062 Experiment +hep-ex/0412066 Experiment +hep-ex/0412067 Experiment +hep-ex/0412069 Experiment +hep-ex/0501006 Experiment +hep-ex/0501008 Experiment +hep-ex/0501011 Experiment +hep-ex/0501013 Experiment +hep-ex/0501014 Experiment +hep-ex/0501034 Experiment +hep-ex/0501037 Experiment +hep-ex/0501038 Experiment +hep-ex/0501064 Experiment +hep-ex/0501071 Experiment +hep-ex/0501075 Experiment +hep-ex/0502004 Experiment +hep-ex/0502006 Experiment +hep-ex/0502013 Experiment +hep-ex/0502017 Experiment +hep-ex/0502020 Experiment +hep-ex/0502024 Experiment +hep-ex/0502026 Experiment +hep-ex/0502027 Experiment +hep-ex/0502028 Experiment +hep-ex/0502030 Experiment +hep-ex/0502031 Experiment +hep-ex/0502032 Experiment +hep-ex/0502035 Experiment +hep-ex/0502036 Experiment +hep-ex/0502037 Experiment +hep-ex/0502038 Experiment +hep-ex/0502041 Experiment +hep-ex/0502042 Experiment +hep-ex/0502043 Experiment +hep-ex/0503005 Experiment +hep-ex/0503022 Experiment +hep-ex/0503030 Experiment +hep-ex/0503033 Experiment +hep-ex/0503035 Experiment +hep-ex/0503036 Experiment +hep-ex/0503037 Experiment +hep-ex/0503040 Experiment +hep-ex/0503041 Experiment +hep-ex/0503043 Experiment +hep-ex/0503044 Experiment +hep-ex/0503048 Experiment +hep-ex/0504001 Experiment +hep-ex/0504008 Experiment +hep-ex/0504010 Experiment +hep-ex/0504018 Experiment +hep-ex/0504019 Experiment +hep-ex/0504023 Experiment +hep-ex/0504024 Experiment +hep-ex/0504030 Experiment +hep-ex/0504032 Experiment +hep-ex/0504036 Experiment +hep-ex/0504037 Experiment +hep-ex/0504040 Experiment +hep-ex/0504046 Experiment +hep-ex/0504055 Experiment +hep-ex/0504056 Experiment +hep-ex/0505006 Experiment +hep-ex/0505010 Experiment +hep-ex/0505011 Experiment +hep-ex/0505017 Experiment +hep-ex/0505018 Experiment +hep-ex/0505025 Experiment +hep-ex/0505053 Experiment +hep-ex/0505058 Experiment +hep-ex/0505063 Experiment +hep-ex/0505069 Experiment +hep-ex/0505070 Experiment +hep-ex/0505088 Experiment +hep-ex/0505097 Experiment +hep-ex/0506003 Experiment +hep-ex/0506020 Experiment +hep-ex/0506023 Experiment +hep-ex/0506028 Experiment +hep-ex/0506055 Experiment +hep-ex/0506063 Experiment +hep-ex/0506068 Experiment +hep-ex/0506080 Experiment +hep-ex/0507014 Experiment +hep-ex/0507020 Experiment +hep-ex/0507036 Experiment +hep-ex/0507043 Experiment +hep-ex/0507044 Experiment +hep-ex/0507046 Experiment +hep-ex/0507048 Experiment +hep-ex/0507056 Experiment +hep-ex/0507060 Experiment +hep-ex/0507063 Experiment +hep-ex/0507066 Experiment +hep-ex/0507068 Experiment +hep-ex/0507071 Experiment +hep-ex/0507073 Experiment +hep-ex/0507083 Experiment +hep-ex/0507084 Experiment +hep-ex/0507092 Experiment +hep-ex/0507100 Experiment +hep-ex/0507102 Experiment +hep-ex/0507103 Experiment +hep-ex/0507107 Experiment +hep-ex/0508011 Experiment +hep-ex/0508015 Experiment +hep-ex/0508020 Experiment +hep-ex/0508021 Experiment +hep-ex/0508024 Experiment +hep-ex/0508025 Experiment +hep-ex/0508028 Experiment +hep-ex/0508032 Experiment +hep-ex/0508034 Experiment +hep-ex/0508041 Experiment +hep-ex/0508044 Experiment +hep-ex/0508050 Experiment +hep-ex/0508053 Experiment +hep-ex/0508054 Experiment +hep-ex/0508060 Experiment +hep-ex/0508062 Experiment +hep-ex/0509006 Experiment +hep-ex/0509009 Experiment +hep-ex/0509017 Experiment +hep-ex/0509021 Experiment +hep-ex/0509022 Experiment +hep-ex/0509026 Experiment +hep-ex/0509032 Experiment +hep-ex/0509039 Experiment +hep-ex/0509042 Experiment +hep-ex/0510013 Experiment +hep-ex/0510019 Experiment +hep-ex/0510022 Experiment +hep-ex/0510023 Experiment +hep-ex/0510024 Experiment +hep-ex/0510025 Experiment +hep-ex/0510026 Experiment +hep-ex/0510064 Experiment +hep-ex/0510068 Experiment +hep-ex/0511012 Experiment +hep-ex/0511014 Experiment +hep-ex/0511021 Experiment +hep-ex/0511026 Experiment +hep-ex/0511028 Experiment +hep-ex/0511042 Experiment +hep-ex/0511044 Experiment +hep-ex/0511053 Experiment +hep-ex/0511056 Experiment +hep-ex/0511060 Experiment +hep-ex/0512005 Experiment +hep-ex/0512011 Experiment +hep-ex/0512012 Experiment +hep-ex/0512025 Experiment +hep-ex/0512035 Experiment +hep-ex/0512052 Experiment +hep-ex/0512075 Experiment +hep-ex/0512077 Experiment +hep-ex/0601007 Experiment +hep-ex/0601008 Experiment +hep-ex/0601021 Experiment +hep-ex/0601029 Experiment +hep-ex/0601032 Experiment +hep-ex/0601036 Experiment +hep-ex/0601040 Experiment +hep-ex/0601042 Experiment +hep-ex/0601047 Experiment +hep-ex/0602004 Experiment +hep-ex/0602016 Experiment +hep-ex/0602020 Experiment +hep-ex/0602022 Experiment +hep-ex/0602027 Experiment +hep-ex/0602030 Experiment +hep-ex/0602033 Experiment +hep-ex/0602042 Experiment +hep-ex/0603001 Experiment +hep-ex/0603004 Experiment +hep-ex/0603015 Experiment +hep-ex/0603023 Experiment +hep-ex/0603024 Experiment +hep-ex/0603029 Experiment +hep-ex/0603035 Experiment +hep-ex/0603036 Experiment +hep-ex/0603045 Experiment +hep-ex/0603046 Experiment +hep-ex/0603047 Experiment +hep-ex/0603056 Experiment +hep-ex/0604013 Experiment +hep-ex/0604015 Experiment +hep-ex/0604020 Experiment +hep-ex/0604023 Experiment +hep-ex/0604024 Experiment +hep-ex/0604029 Experiment +hep-ex/0604033 Experiment +hep-ex/0604038 Experiment +hep-ex/0604039 Experiment +hep-ex/0604040 Experiment +hep-ex/0604046 Experiment +hep-ex/0604054 Experiment +hep-ex/0605005 Experiment +hep-ex/0605006 Experiment +hep-ex/0605010 Experiment +hep-ex/0605023 Experiment +hep-ex/0605025 Experiment +hep-ex/0605030 Experiment +hep-ex/0605031 Experiment +hep-ex/0605032 Experiment +hep-ex/0605039 Experiment +hep-ex/0605040 Experiment +hep-ex/0605058 Experiment +hep-ex/0605068 Experiment +hep-ex/0605105 Experiment +hep-ex/0605107 Experiment +hep-ex/0605109 Experiment +hep-ex/0605116 Experiment +hep-ex/0605123 Experiment +hep-ex/0606002 Experiment +hep-ex/0606005 Experiment +hep-ex/0606009 Experiment +hep-ex/0606014 Experiment +hep-ex/0606018 Experiment +hep-ex/0606028 Experiment +hep-ex/0606029 Experiment +hep-ex/0606030 Experiment +hep-ex/0606032 Experiment +hep-ex/0606033 Experiment +hep-ex/0606035 Experiment +hep-ex/0606046 Experiment +hep-ex/0606051 Experiment +hep-ex/0606053 Experiment +hep-ex/0607004 Experiment +hep-ex/0607008 Experiment +hep-ex/0607009 Experiment +hep-ex/0607015 Experiment +hep-ex/0607018 Experiment +hep-ex/0607022 Experiment +hep-ex/0607023 Experiment +hep-ex/0607028 Experiment +hep-ex/0607029 Experiment +hep-ex/0607034 Experiment +hep-ex/0607046 Experiment +hep-ex/0607059 Experiment +hep-ex/0607070 Experiment +hep-ex/0607077 Experiment +hep-ex/0607102 Experiment +hep-ex/0608013 Experiment +hep-ex/0608015 Experiment +hep-ex/0608017 Experiment +hep-ex/0608025 Experiment +hep-ex/0608027 Experiment +hep-ex/0608029 Experiment +hep-ex/0608030 Experiment +hep-ex/0608033 Experiment +hep-ex/0608035 Experiment +hep-ex/0608038 Experiment +hep-ex/0608039 Experiment +hep-ex/0608043 Experiment +hep-ex/0608044 Experiment +hep-ex/0608046 Experiment +hep-ex/0608049 Experiment +hep-ex/0608052 Experiment +hep-ex/0608058 Experiment +hep-ex/0608063 Experiment +hep-ex/0609001 Experiment +hep-ex/0609005 Experiment +hep-ex/0609010 Experiment +hep-ex/0609014 Experiment +hep-ex/0609018 Experiment +hep-ex/0609019 Experiment +hep-ex/0609022 Experiment +hep-ex/0609024 Experiment +hep-ex/0609025 Experiment +hep-ex/0609030 Experiment +hep-ex/0609031 Experiment +hep-ex/0609032 Experiment +hep-ex/0609034 Experiment +hep-ex/0609036 Experiment +hep-ex/0609037 Experiment +hep-ex/0609038 Experiment +hep-ex/0609043 Experiment +hep-ex/0609045 Experiment +hep-ex/0609046 Experiment +hep-ex/0609053 Experiment +hep-ex/0609055 Experiment +hep-ex/0609058 Experiment +hep-ex/0609059 Experiment +hep-ex/0610003 Experiment +hep-ex/0610011 Experiment +hep-ex/0610016 Experiment +hep-ex/0610017 Experiment +hep-ex/0610020 Experiment +hep-ex/0610029 Experiment +hep-ex/0610030 Experiment +hep-ex/0610031 Experiment +hep-ex/0610038 Experiment +hep-ex/0610046 Experiment +hep-ex/0610051 Experiment +hep-ex/0610052 Experiment +hep-ex/0610056 Experiment +hep-ex/0610059 Experiment +hep-ex/0610061 Experiment +hep-ex/0610062 Experiment +hep-ex/0610064 Experiment +hep-ex/0610072 Experiment +hep-ex/0610078 Experiment +hep-ex/0610079 Experiment +hep-ex/0610081 Experiment +hep-ex/0610089 Experiment +hep-ex/0611002 Experiment +hep-ex/0611003 Experiment +hep-ex/0611005 Experiment +hep-ex/0611010 Experiment +hep-ex/0611015 Experiment +hep-ex/0611016 Experiment +hep-ex/0611019 Experiment +hep-ex/0611020 Experiment +hep-ex/0611024 Experiment +hep-ex/0611025 Experiment +hep-ex/0611031 Experiment +hep-ex/0611035 Experiment +hep-ex/0611039 Experiment +hep-ex/0611041 Experiment +hep-ex/0611042 Experiment +hep-ex/0611044 Experiment +hep-ex/0611045 Experiment +hep-ex/0611046 Experiment +hep-ex/0611050 Experiment +hep-ex/0611054 Experiment +hep-ex/0612001 Experiment +hep-ex/0612003 Experiment +hep-ex/0612004 Experiment +hep-ex/0612005 Experiment +hep-ex/0612007 Experiment +hep-ex/0612013 Experiment +hep-ex/0612014 Experiment +hep-ex/0612016 Experiment +hep-ex/0612022 Experiment +hep-ex/0612025 Experiment +hep-ex/0612027 Experiment +hep-ex/0612028 Experiment +hep-ex/0612029 Experiment +hep-ex/0612030 Experiment +hep-ex/0612031 Experiment +hep-ex/0612033 Experiment +hep-ex/0612036 Experiment +hep-ex/0612038 Experiment +hep-ex/0612040 Experiment +hep-ex/0612041 Experiment +hep-ex/0612043 Experiment +hep-ex/0612045 Experiment +hep-ex/0612048 Experiment +hep-ex/0612049 Experiment +hep-ex/0612052 Experiment +hep-ex/0612054 Experiment +hep-ex/0612055 Experiment +hep-ex/0612056 Experiment +hep-ex/0612062 Experiment +hep-ex/0612065 Experiment +hep-ex/0701004 Experiment +hep-ex/0701005 Experiment +hep-ex/0701007 Experiment +hep-ex/0701009 Experiment +hep-ex/0701012 Experiment +hep-ex/0701013 Experiment +hep-ex/0701014 Experiment +hep-ex/0701015 Experiment +hep-ex/0701017 Experiment +hep-ex/0701020 Experiment +hep-ex/0701022 Experiment +hep-ex/0701024 Experiment +hep-ex/0701025 Experiment +hep-ex/0701027 Experiment +hep-ex/0701034 Experiment +hep-ex/0701037 Experiment +hep-ex/0701041 Experiment +hep-ex/0701048 Experiment +hep-ex/0701049 Experiment +hep-ex/0701052 Experiment +hep-ex/0701056 Experiment +hep-ex/0701057 Experiment +hep-ex/0701058 Experiment +hep-ex/0702001 Experiment +hep-ex/0702002 Experiment +hep-ex/0702005 Experiment +hep-ex/0702007 Experiment +hep-ex/0702008 Experiment +hep-ex/0702009 Experiment +hep-ex/0702011 Experiment +hep-ex/0702012 Experiment +hep-ex/0702013 Experiment +hep-ex/0702014 Experiment +hep-ex/0702015 Experiment +hep-ex/0702016 Experiment +hep-ex/0702017 Experiment +hep-ex/0702018 Experiment +hep-ex/0702019 Experiment +hep-ex/0702021 Experiment +hep-ex/0702022 Experiment +hep-ex/0702025 Experiment +hep-ex/0702030 Experiment +hep-ex/0702039 Experiment +hep-ex/0702041 Experiment +hep-ex/0702044 Experiment +hep-ex/0702048 Experiment +hep-ex/0702049 Experiment +hep-ex/0702050 Experiment +hep-ex/0703006 Experiment +hep-ex/0703009 Experiment +hep-ex/0703012 Experiment +hep-ex/0703014 Experiment +hep-ex/0703015 Experiment +hep-ex/0703024 Experiment +hep-ex/0703031 Experiment +hep-ex/0703035 Experiment +hep-ex/0703036 Experiment +hep-ex/0703040 Experiment +hep-ex/0703046 Experiment +hep-ex/0703048 Experiment +hep-ex/0703049 Experiment +hep-ex/9406007 Experiment +hep-ex/9411001 Experiment +hep-ex/9501003 Experiment +hep-ex/9502004 Experiment +hep-ex/9503003 Experiment +hep-ex/9503010 Experiment +hep-ex/9503012 Experiment +hep-ex/9505007 Experiment +hep-ex/9506007 Experiment +hep-ex/9506015 Experiment +hep-ex/9507002 Experiment +hep-ex/9507008 Experiment +hep-ex/9508001 Experiment +hep-ex/9508003 Experiment +hep-ex/9508004 Experiment +hep-ex/9508005 Experiment +hep-ex/9508006 Experiment +hep-ex/9508009 Experiment +hep-ex/9508010 Experiment +hep-ex/9508013 Experiment +hep-ex/9509001 Experiment +hep-ex/9509003 Experiment +hep-ex/9509005 Experiment +hep-ex/9509006 Experiment +hep-ex/9509013 Experiment +hep-ex/9510004 Experiment +hep-ex/9510006 Experiment +hep-ex/9511001 Experiment +hep-ex/9511009 Experiment +hep-ex/9511012 Experiment +hep-ex/9511013 Experiment +hep-ex/9511015 Experiment +hep-ex/9512001 Experiment +hep-ex/9512004 Experiment +hep-ex/9512007 Experiment +hep-ex/9512008 Experiment +hep-ex/9601001 Experiment +hep-ex/9601004 Experiment +hep-ex/9601005 Experiment +hep-ex/9602001 Experiment +hep-ex/9602007 Experiment +hep-ex/9603002 Experiment +hep-ex/9603005 Experiment +hep-ex/9603006 Experiment +hep-ex/9603009 Experiment +hep-ex/9603010 Experiment +hep-ex/9604002 Experiment +hep-ex/9604005 Experiment +hep-ex/9604006 Experiment +hep-ex/9604007 Experiment +hep-ex/9605002 Experiment +hep-ex/9606006 Experiment +hep-ex/9606016 Experiment +hep-ex/9606017 Experiment +hep-ex/9607001 Experiment +hep-ex/9607010 Experiment +hep-ex/9607011 Experiment +hep-ex/9607012 Experiment +hep-ex/9607013 Experiment +hep-ex/9608003 Experiment +hep-ex/9608008 Experiment +hep-ex/9608010 Experiment +hep-ex/9608011 Experiment +hep-ex/9608016 Experiment +hep-ex/9608017 Experiment +hep-ex/9609008 Experiment +hep-ex/9609013 Experiment +hep-ex/9609019 Experiment +hep-ex/9610002 Experiment +hep-ex/9610007 Experiment +hep-ex/9611002 Experiment +hep-ex/9611003 Experiment +hep-ex/9611004 Experiment +hep-ex/9611007 Experiment +hep-ex/9611011 Experiment +hep-ex/9611018 Experiment +hep-ex/9612004 Experiment +hep-ex/9612005 Experiment +hep-ex/9612009 Experiment +hep-ex/9612011 Experiment +hep-ex/9701015 Experiment +hep-ex/9701017 Experiment +hep-ex/9701020 Experiment +hep-ex/9702003 Experiment +hep-ex/9702009 Experiment +hep-ex/9702011 Experiment +hep-ex/9702012 Experiment +hep-ex/9702015 Experiment +hep-ex/9703005 Experiment +hep-ex/9703008 Experiment +hep-ex/9703012 Experiment +hep-ex/9704008 Experiment +hep-ex/9704012 Experiment +hep-ex/9704015 Experiment +hep-ex/9704018 Experiment +hep-ex/9705001 Experiment +hep-ex/9705010 Experiment +hep-ex/9705014 Experiment +hep-ex/9705015 Experiment +hep-ex/9705017 Experiment +hep-ex/9705018 Experiment +hep-ex/9706002 Experiment +hep-ex/9706012 Experiment +hep-ex/9706014 Experiment +hep-ex/9707005 Experiment +hep-ex/9707009 Experiment +hep-ex/9707010 Experiment +hep-ex/9707015 Experiment +hep-ex/9707016 Experiment +hep-ex/9707017 Experiment +hep-ex/9707019 Experiment +hep-ex/9707021 Experiment +hep-ex/9707022 Experiment +hep-ex/9707023 Experiment +hep-ex/9707033 Experiment +hep-ex/9707040 Experiment +hep-ex/9707041 Experiment +hep-ex/9708006 Experiment +hep-ex/9708011 Experiment +hep-ex/9708012 Experiment +hep-ex/9708018 Experiment +hep-ex/9708019 Experiment +hep-ex/9708020 Experiment +hep-ex/9708021 Experiment +hep-ex/9708022 Experiment +hep-ex/9708023 Experiment +hep-ex/9708024 Experiment +hep-ex/9708027 Experiment +hep-ex/9708028 Experiment +hep-ex/9708029 Experiment +hep-ex/9709002 Experiment +hep-ex/9709003 Experiment +hep-ex/9709004 Experiment +hep-ex/9709006 Experiment +hep-ex/9709013 Experiment +hep-ex/9709017 Experiment +hep-ex/9709022 Experiment +hep-ex/9709023 Experiment +hep-ex/9709027 Experiment +hep-ex/9709028 Experiment +hep-ex/9710007 Experiment +hep-ex/9710010 Experiment +hep-ex/9710024 Experiment +hep-ex/9710032 Experiment +hep-ex/9711001 Experiment +hep-ex/9711006 Experiment +hep-ex/9711007 Experiment +hep-ex/9711012 Experiment +hep-ex/9712022 Experiment +hep-ex/9712024 Experiment +hep-ex/9712028 Experiment +hep-ex/9712029 Experiment +hep-ex/9801003 Experiment +hep-ex/9801004 Experiment +hep-ex/9801005 Experiment +hep-ex/9801007 Experiment +hep-ex/9801015 Experiment +hep-ex/9801022 Experiment +hep-ex/9801024 Experiment +hep-ex/9801025 Experiment +hep-ex/9801026 Experiment +hep-ex/9801027 Experiment +hep-ex/9801029 Experiment +hep-ex/9802002 Experiment +hep-ex/9802004 Experiment +hep-ex/9802008 Experiment +hep-ex/9802013 Experiment +hep-ex/9802015 Experiment +hep-ex/9803003 Experiment +hep-ex/9803004 Experiment +hep-ex/9803008 Experiment +hep-ex/9803009 Experiment +hep-ex/9803011 Experiment +hep-ex/9803017 Experiment +hep-ex/9803019 Experiment +hep-ex/9803020 Experiment +hep-ex/9803023 Experiment +hep-ex/9803026 Experiment +hep-ex/9803032 Experiment +hep-ex/9804003 Experiment +hep-ex/9804004 Experiment +hep-ex/9804008 Experiment +hep-ex/9805003 Experiment +hep-ex/9805009 Experiment +hep-ex/9805018 Experiment +hep-ex/9805025 Experiment +hep-ex/9805026 Experiment +hep-ex/9806002 Experiment +hep-ex/9806007 Experiment +hep-ex/9806008 Experiment +hep-ex/9806009 Experiment +hep-ex/9806012 Experiment +hep-ex/9806028 Experiment +hep-ex/9806029 Experiment +hep-ex/9806035 Experiment +hep-ex/9806036 Experiment +hep-ex/9806038 Experiment +hep-ex/9807001 Experiment +hep-ex/9807003 Experiment +hep-ex/9807004 Experiment +hep-ex/9807005 Experiment +hep-ex/9807006 Experiment +hep-ex/9807009 Experiment +hep-ex/9807016 Experiment +hep-ex/9807019 Experiment +hep-ex/9807021 Experiment +hep-ex/9807029 Experiment +hep-ex/9807032 Experiment +hep-ex/9808006 Experiment +hep-ex/9808009 Experiment +hep-ex/9808010 Experiment +hep-ex/9808011 Experiment +hep-ex/9808012 Experiment +hep-ex/9808013 Experiment +hep-ex/9808014 Experiment +hep-ex/9808015 Experiment +hep-ex/9808016 Experiment +hep-ex/9808019 Experiment +hep-ex/9808023 Experiment +hep-ex/9808024 Experiment +hep-ex/9808025 Experiment +hep-ex/9808026 Experiment +hep-ex/9808027 Experiment +hep-ex/9808029 Experiment +hep-ex/9808030 Experiment +hep-ex/9808034 Experiment +hep-ex/9808035 Experiment +hep-ex/9808036 Experiment +hep-ex/9808037 Experiment +hep-ex/9809002 Experiment +hep-ex/9809010 Experiment +hep-ex/9809015 Experiment +hep-ex/9809016 Experiment +hep-ex/9809026 Experiment +hep-ex/9809031 Experiment +hep-ex/9810001 Experiment +hep-ex/9810002 Experiment +hep-ex/9810003 Experiment +hep-ex/9810007 Experiment +hep-ex/9810008 Experiment +hep-ex/9810010 Experiment +hep-ex/9810016 Experiment +hep-ex/9810018 Experiment +hep-ex/9810020 Experiment +hep-ex/9810021 Experiment +hep-ex/9810034 Experiment +hep-ex/9811002 Experiment +hep-ex/9811013 Experiment +hep-ex/9811016 Experiment +hep-ex/9811025 Experiment +hep-ex/9811028 Experiment +hep-ex/9811029 Experiment +hep-ex/9811030 Experiment +hep-ex/9811038 Experiment +hep-ex/9811045 Experiment +hep-ex/9811049 Experiment +hep-ex/9812013 Experiment +hep-ex/9812014 Experiment +hep-ex/9812016 Experiment +hep-ex/9812017 Experiment +hep-ex/9812018 Experiment +hep-ex/9812023 Experiment +hep-ex/9812024 Experiment +hep-ex/9901006 Experiment +hep-ex/9901010 Experiment +hep-ex/9901011 Experiment +hep-ex/9901017 Experiment +hep-ex/9901020 Experiment +hep-ex/9901022 Experiment +hep-ex/9901023 Experiment +hep-ex/9901024 Experiment +hep-ex/9901025 Experiment +hep-ex/9901027 Experiment +hep-ex/9901032 Experiment +hep-ex/9901037 Experiment +hep-ex/9901040 Experiment +hep-ex/9901041 Experiment +hep-ex/9902003 Experiment +hep-ex/9902006 Experiment +hep-ex/9902013 Experiment +hep-ex/9902014 Experiment +hep-ex/9902019 Experiment +hep-ex/9902021 Experiment +hep-ex/9902024 Experiment +hep-ex/9902029 Experiment +hep-ex/9902031 Experiment +hep-ex/9903002 Experiment +hep-ex/9903004 Experiment +hep-ex/9903007 Experiment +hep-ex/9903008 Experiment +hep-ex/9903014 Experiment +hep-ex/9903015 Experiment +hep-ex/9903022 Experiment +hep-ex/9903027 Experiment +hep-ex/9903041 Experiment +hep-ex/9903042 Experiment +hep-ex/9903043 Experiment +hep-ex/9903044 Experiment +hep-ex/9903048 Experiment +hep-ex/9903049 Experiment +hep-ex/9903070 Experiment +hep-ex/9904011 Experiment +hep-ex/9904013 Experiment +hep-ex/9904014 Experiment +hep-ex/9904023 Experiment +hep-ex/9904030 Experiment +hep-ex/9904034 Experiment +hep-ex/9905012 Experiment +hep-ex/9905013 Experiment +hep-ex/9905024 Experiment +hep-ex/9905030 Experiment +hep-ex/9905036 Experiment +hep-ex/9905046 Experiment +hep-ex/9905052 Experiment +hep-ex/9906004 Experiment +hep-ex/9906010 Experiment +hep-ex/9906022 Experiment +hep-ex/9906027 Experiment +hep-ex/9906032 Experiment +hep-ex/9906034 Experiment +hep-ex/9906035 Experiment +hep-ex/9906039 Experiment +hep-ex/9906042 Experiment +hep-ex/9906043 Experiment +hep-ex/9906045 Experiment +hep-ex/9907002 Experiment +hep-ex/9907004 Experiment +hep-ex/9907005 Experiment +hep-ex/9907006 Experiment +hep-ex/9907007 Experiment +hep-ex/9907014 Experiment +hep-ex/9907019 Experiment +hep-ex/9907027 Experiment +hep-ex/9907029 Experiment +hep-ex/9907036 Experiment +hep-ex/9907037 Experiment +hep-ex/9907045 Experiment +hep-ex/9907052 Experiment +hep-ex/9907055 Experiment +hep-ex/9907060 Experiment +hep-ex/9907061 Experiment +hep-ex/9907062 Experiment +hep-ex/9907064 Experiment +hep-ex/9908001 Experiment +hep-ex/9908002 Experiment +hep-ex/9908007 Experiment +hep-ex/9908008 Experiment +hep-ex/9908011 Experiment +hep-ex/9908013 Experiment +hep-ex/9908017 Experiment +hep-ex/9908036 Experiment +hep-ex/9908045 Experiment +hep-ex/9908046 Experiment +hep-ex/9908049 Experiment +hep-ex/9908057 Experiment +hep-ex/9908059 Experiment +hep-ex/9908064 Experiment +hep-ex/9908065 Experiment +hep-ex/9909013 Experiment +hep-ex/9909015 Experiment +hep-ex/9909022 Experiment +hep-ex/9909029 Experiment +hep-ex/9909030 Experiment +hep-ex/9909036 Experiment +hep-ex/9909038 Experiment +hep-ex/9909040 Experiment +hep-ex/9909041 Experiment +hep-ex/9909049 Experiment +hep-ex/9909052 Experiment +hep-ex/9910001 Experiment +hep-ex/9910013 Experiment +hep-ex/9910026 Experiment +hep-ex/9910040 Experiment +hep-ex/9910047 Experiment +hep-ex/9910052 Experiment +hep-ex/9910057 Experiment +hep-ex/9910063 Experiment +hep-ex/9910064 Experiment +hep-ex/9910069 Experiment +hep-ex/9910070 Experiment +hep-ex/9911029 Experiment +hep-ex/9911038 Experiment +hep-ex/9911041 Experiment +hep-ex/9911045 Experiment +hep-ex/9912001 Experiment +hep-ex/9912003 Experiment +hep-ex/9912005 Experiment +hep-ex/9912009 Experiment +hep-ex/9912023 Experiment +hep-ex/9912031 Experiment +hep-ex/9912032 Experiment +hep-ex/9912033 Experiment +hep-ex/9912050 Experiment +hep-ex/9912052 Experiment +hep-ex/9912056 Experiment +hep-ex/9912058 Experiment +hep-ex/9912062 Experiment +hep-ex/9912063 Experiment +hep-ex/9912065 Experiment +hep-lat/0001013 Lattice +hep-lat/0001023 Lattice +hep-lat/0001025 Lattice +hep-lat/0001027 Lattice +hep-lat/0002010 Lattice +hep-lat/0002022 Lattice +hep-lat/0003015 Lattice +hep-lat/0004020 Lattice +hep-lat/0005014 Lattice +hep-lat/0006004 Lattice +hep-lat/0006005 Lattice +hep-lat/0006020 Lattice +hep-lat/0007004 Lattice +hep-lat/0007032 Lattice +hep-lat/0007035 Lattice +hep-lat/0007046 Lattice +hep-lat/0008005 Lattice +hep-lat/0008009 Lattice +hep-lat/0008012 Lattice +hep-lat/0009021 Lattice +hep-lat/0009029 Lattice +hep-lat/0010019 Lattice +hep-lat/0010036 Lattice +hep-lat/0010043 Lattice +hep-lat/0010049 Lattice +hep-lat/0010058 Lattice +hep-lat/0010065 Lattice +hep-lat/0010066 Lattice +hep-lat/0010068 Lattice +hep-lat/0010077 Lattice +hep-lat/0010092 Lattice +hep-lat/0010094 Lattice +hep-lat/0011010 Lattice +hep-lat/0011018 Lattice +hep-lat/0011029 Lattice +hep-lat/0011044 Lattice +hep-lat/0011082 Lattice +hep-lat/0011091 Lattice +hep-lat/0012003 Lattice +hep-lat/0012008 Lattice +hep-lat/0012010 Lattice +hep-lat/0012023 Lattice +hep-lat/0101003 Lattice +hep-lat/0101019 Lattice +hep-lat/0102002 Lattice +hep-lat/0103003 Lattice +hep-lat/0103005 Lattice +hep-lat/0103006 Lattice +hep-lat/0103012 Lattice +hep-lat/0103020 Lattice +hep-lat/0103023 Lattice +hep-lat/0103030 Lattice +hep-lat/0103031 Lattice +hep-lat/0103038 Lattice +hep-lat/0104002 Lattice +hep-lat/0104004 Lattice +hep-lat/0104006 Lattice +hep-lat/0104012 Lattice +hep-lat/0105003 Lattice +hep-lat/0105010 Lattice +hep-lat/0105011 Lattice +hep-lat/0105012 Lattice +hep-lat/0105023 Lattice +hep-lat/0106008 Lattice +hep-lat/0106016 Lattice +hep-lat/0107003 Lattice +hep-lat/0107006 Lattice +hep-lat/0107010 Lattice +hep-lat/0107011 Lattice +hep-lat/0107014 Lattice +hep-lat/0107016 Lattice +hep-lat/0107021 Lattice +hep-lat/0108001 Lattice +hep-lat/0108006 Lattice +hep-lat/0108016 Lattice +hep-lat/0108020 Lattice +hep-lat/0108022 Lattice +hep-lat/0109015 Lattice +hep-lat/0109028 Lattice +hep-lat/0109032 Lattice +hep-lat/0110012 Lattice +hep-lat/0110015 Lattice +hep-lat/0110030 Lattice +hep-lat/0110033 Lattice +hep-lat/0110034 Lattice +hep-lat/0110037 Lattice +hep-lat/0110044 Lattice +hep-lat/0110046 Lattice +hep-lat/0110048 Lattice +hep-lat/0110050 Lattice +hep-lat/0110057 Lattice +hep-lat/0110058 Lattice +hep-lat/0110066 Lattice +hep-lat/0110067 Lattice +hep-lat/0110072 Lattice +hep-lat/0110075 Lattice +hep-lat/0110077 Lattice +hep-lat/0110087 Lattice +hep-lat/0110098 Lattice +hep-lat/0110108 Lattice +hep-lat/0110121 Lattice +hep-lat/0110149 Lattice +hep-lat/0110159 Lattice +hep-lat/0110182 Lattice +hep-lat/0110210 Lattice +hep-lat/0110216 Lattice +hep-lat/0110220 Lattice +hep-lat/0111006 Lattice +hep-lat/0111008 Lattice +hep-lat/0111012 Lattice +hep-lat/0111024 Lattice +hep-lat/0111050 Lattice +hep-lat/0111051 Lattice +hep-lat/0111063 Lattice +hep-lat/0112002 Lattice +hep-lat/0112007 Lattice +hep-lat/0112016 Lattice +hep-lat/0112024 Lattice +hep-lat/0112029 Lattice +hep-lat/0112030 Lattice +hep-lat/0201008 Lattice +hep-lat/0202001 Lattice +hep-lat/0202009 Lattice +hep-lat/0202029 Lattice +hep-lat/0203027 Lattice +hep-lat/0204010 Lattice +hep-lat/0204030 Lattice +hep-lat/0205007 Lattice +hep-lat/0205011 Lattice +hep-lat/0205013 Lattice +hep-lat/0205018 Lattice +hep-lat/0205023 Lattice +hep-lat/0205025 Lattice +hep-lat/0206001 Lattice +hep-lat/0206015 Lattice +hep-lat/0206016 Lattice +hep-lat/0207002 Lattice +hep-lat/0207004 Lattice +hep-lat/0207007 Lattice +hep-lat/0207021 Lattice +hep-lat/0208003 Lattice +hep-lat/0208007 Lattice +hep-lat/0208008 Lattice +hep-lat/0208017 Lattice +hep-lat/0208031 Lattice +hep-lat/0208034 Lattice +hep-lat/0208038 Lattice +hep-lat/0208041 Lattice +hep-lat/0208045 Lattice +hep-lat/0208055 Lattice +hep-lat/0208070 Lattice +hep-lat/0208078 Lattice +hep-lat/0209013 Lattice +hep-lat/0209020 Lattice +hep-lat/0209028 Lattice +hep-lat/0209037 Lattice +hep-lat/0209039 Lattice +hep-lat/0209063 Lattice +hep-lat/0209066 Lattice +hep-lat/0209074 Lattice +hep-lat/0209079 Lattice +hep-lat/0209080 Lattice +hep-lat/0209082 Lattice +hep-lat/0209089 Lattice +hep-lat/0209097 Lattice +hep-lat/0209099 Lattice +hep-lat/0209100 Lattice +hep-lat/0209105 Lattice +hep-lat/0209106 Lattice +hep-lat/0209111 Lattice +hep-lat/0209117 Lattice +hep-lat/0209118 Lattice +hep-lat/0209132 Lattice +hep-lat/0209148 Lattice +hep-lat/0209151 Lattice +hep-lat/0209160 Lattice +hep-lat/0209163 Lattice +hep-lat/0210020 Lattice +hep-lat/0211022 Lattice +hep-lat/0211024 Lattice +hep-lat/0211043 Lattice +hep-lat/0212020 Lattice +hep-lat/0212039 Lattice +hep-lat/0301024 Lattice +hep-lat/0302005 Lattice +hep-lat/0302009 Lattice +hep-lat/0302019 Lattice +hep-lat/0302022 Lattice +hep-lat/0303001 Lattice +hep-lat/0303002 Lattice +hep-lat/0303012 Lattice +hep-lat/0303015 Lattice +hep-lat/0303026 Lattice +hep-lat/0304001 Lattice +hep-lat/0304004 Lattice +hep-lat/0304014 Lattice +hep-lat/0305008 Lattice +hep-lat/0305014 Lattice +hep-lat/0305016 Lattice +hep-lat/0306002 Lattice +hep-lat/0306007 Lattice +hep-lat/0306027 Lattice +hep-lat/0306028 Lattice +hep-lat/0306030 Lattice +hep-lat/0306033 Lattice +hep-lat/0307001 Lattice +hep-lat/0307002 Lattice +hep-lat/0307018 Lattice +hep-lat/0307020 Lattice +hep-lat/0307021 Lattice +hep-lat/0307030 Lattice +hep-lat/0308008 Lattice +hep-lat/0308014 Lattice +hep-lat/0308019 Lattice +hep-lat/0308021 Lattice +hep-lat/0308029 Lattice +hep-lat/0308033 Lattice +hep-lat/0309002 Lattice +hep-lat/0309004 Lattice +hep-lat/0309010 Lattice +hep-lat/0309026 Lattice +hep-lat/0309031 Lattice +hep-lat/0309033 Lattice +hep-lat/0309035 Lattice +hep-lat/0309041 Lattice +hep-lat/0309045 Lattice +hep-lat/0309047 Lattice +hep-lat/0309055 Lattice +hep-lat/0309065 Lattice +hep-lat/0309073 Lattice +hep-lat/0309078 Lattice +hep-lat/0309088 Lattice +hep-lat/0309091 Lattice +hep-lat/0309095 Lattice +hep-lat/0309101 Lattice +hep-lat/0309117 Lattice +hep-lat/0309162 Lattice +hep-lat/0309167 Lattice +hep-lat/0310002 Lattice +hep-lat/0310003 Lattice +hep-lat/0310011 Lattice +hep-lat/0310013 Lattice +hep-lat/0310027 Lattice +hep-lat/0310028 Lattice +hep-lat/0310038 Lattice +hep-lat/0310057 Lattice +hep-lat/0310063 Lattice +hep-lat/0311002 Lattice +hep-lat/0311017 Lattice +hep-lat/0311019 Lattice +hep-lat/0312002 Lattice +hep-lat/0312004 Lattice +hep-lat/0312006 Lattice +hep-lat/0312007 Lattice +hep-lat/0312015 Lattice +hep-lat/0312024 Lattice +hep-lat/0312032 Lattice +hep-lat/0401003 Lattice +hep-lat/0401019 Lattice +hep-lat/0401021 Lattice +hep-lat/0401022 Lattice +hep-lat/0401023 Lattice +hep-lat/0401031 Lattice +hep-lat/0402012 Lattice +hep-lat/0402015 Lattice +hep-lat/0402021 Lattice +hep-lat/0402030 Lattice +hep-lat/0402032 Lattice +hep-lat/0402034 Lattice +hep-lat/0403007 Lattice +hep-lat/0403012 Lattice +hep-lat/0403020 Lattice +hep-lat/0404005 Lattice +hep-lat/0404007 Lattice +hep-lat/0404010 Lattice +hep-lat/0405004 Lattice +hep-lat/0405009 Lattice +hep-lat/0405010 Lattice +hep-lat/0405028 Lattice +hep-lat/0405029 Lattice +hep-lat/0405030 Lattice +hep-lat/0406002 Lattice +hep-lat/0406006 Lattice +hep-lat/0406009 Lattice +hep-lat/0406010 Lattice +hep-lat/0406032 Lattice +hep-lat/0407007 Lattice +hep-lat/0407037 Lattice +hep-lat/0408002 Lattice +hep-lat/0408008 Lattice +hep-lat/0408009 Lattice +hep-lat/0408017 Lattice +hep-lat/0408024 Lattice +hep-lat/0408025 Lattice +hep-lat/0408034 Lattice +hep-lat/0409003 Lattice +hep-lat/0409020 Lattice +hep-lat/0409025 Lattice +hep-lat/0409041 Lattice +hep-lat/0409045 Lattice +hep-lat/0409046 Lattice +hep-lat/0409051 Lattice +hep-lat/0409061 Lattice +hep-lat/0409075 Lattice +hep-lat/0409076 Lattice +hep-lat/0409083 Lattice +hep-lat/0409095 Lattice +hep-lat/0409097 Lattice +hep-lat/0409106 Lattice +hep-lat/0409109 Lattice +hep-lat/0409116 Lattice +hep-lat/0409122 Lattice +hep-lat/0409126 Lattice +hep-lat/0409128 Lattice +hep-lat/0409130 Lattice +hep-lat/0409157 Lattice +hep-lat/0409161 Lattice +hep-lat/0409162 Lattice +hep-lat/0409164 Lattice +hep-lat/0409166 Lattice +hep-lat/0410005 Lattice +hep-lat/0410009 Lattice +hep-lat/0410010 Lattice +hep-lat/0410011 Lattice +hep-lat/0410013 Lattice +hep-lat/0410014 Lattice +hep-lat/0410019 Lattice +hep-lat/0410023 Lattice +hep-lat/0410041 Lattice +hep-lat/0410052 Lattice +hep-lat/0411012 Lattice +hep-lat/0411013 Lattice +hep-lat/0411022 Lattice +hep-lat/0411027 Lattice +hep-lat/0411034 Lattice +hep-lat/0411035 Lattice +hep-lat/0411036 Lattice +hep-lat/0411039 Lattice +hep-lat/0412002 Lattice +hep-lat/0412012 Lattice +hep-lat/0412017 Lattice +hep-lat/0412021 Lattice +hep-lat/0412029 Lattice +hep-lat/0412042 Lattice +hep-lat/0501005 Lattice +hep-lat/0501007 Lattice +hep-lat/0501025 Lattice +hep-lat/0501029 Lattice +hep-lat/0501030 Lattice +hep-lat/0502003 Lattice +hep-lat/0503003 Lattice +hep-lat/0503035 Lattice +hep-lat/0503038 Lattice +hep-lat/0504005 Lattice +hep-lat/0504007 Lattice +hep-lat/0504008 Lattice +hep-lat/0504015 Lattice +hep-lat/0505015 Lattice +hep-lat/0505019 Lattice +hep-lat/0505022 Lattice +hep-lat/0505023 Lattice +hep-lat/0506007 Lattice +hep-lat/0506011 Lattice +hep-lat/0506013 Lattice +hep-lat/0506017 Lattice +hep-lat/0506028 Lattice +hep-lat/0506030 Lattice +hep-lat/0507001 Lattice +hep-lat/0507007 Lattice +hep-lat/0507013 Lattice +hep-lat/0507027 Lattice +hep-lat/0507032 Lattice +hep-lat/0507033 Lattice +hep-lat/0508001 Lattice +hep-lat/0508010 Lattice +hep-lat/0508032 Lattice +hep-lat/0509003 Lattice +hep-lat/0509036 Lattice +hep-lat/0509065 Lattice +hep-lat/0509074 Lattice +hep-lat/0509102 Lattice +hep-lat/0509106 Lattice +hep-lat/0509133 Lattice +hep-lat/0509180 Lattice +hep-lat/0510050 Lattice +hep-lat/0510062 Lattice +hep-lat/0510065 Lattice +hep-lat/0510067 Lattice +hep-lat/0510071 Lattice +hep-lat/0510089 Lattice +hep-lat/0510112 Lattice +hep-lat/0510115 Lattice +hep-lat/0511005 Lattice +hep-lat/0511011 Lattice +hep-lat/0511040 Lattice +hep-lat/0511041 Lattice +hep-lat/0511057 Lattice +hep-lat/0512007 Lattice +hep-lat/0512010 Lattice +hep-lat/0512011 Lattice +hep-lat/0512023 Lattice +hep-lat/0512029 Lattice +hep-lat/0512030 Lattice +hep-lat/0512036 Lattice +hep-lat/0601004 Lattice +hep-lat/0601031 Lattice +hep-lat/0601034 Lattice +hep-lat/0602018 Lattice +hep-lat/0602022 Lattice +hep-lat/0602023 Lattice +hep-lat/0602026 Lattice +hep-lat/0602028 Lattice +hep-lat/0603006 Lattice +hep-lat/0603012 Lattice +hep-lat/0603013 Lattice +hep-lat/0603023 Lattice +hep-lat/0603025 Lattice +hep-lat/0603027 Lattice +hep-lat/0603028 Lattice +hep-lat/0604001 Lattice +hep-lat/0604007 Lattice +hep-lat/0604011 Lattice +hep-lat/0604013 Lattice +hep-lat/0604016 Lattice +hep-lat/0605007 Lattice +hep-lat/0605012 Lattice +hep-lat/0605014 Lattice +hep-lat/0605017 Lattice +hep-lat/0605019 Lattice +hep-lat/0606003 Lattice +hep-lat/0606004 Lattice +hep-lat/0606006 Lattice +hep-lat/0606011 Lattice +hep-lat/0606012 Lattice +hep-lat/0606014 Lattice +hep-lat/0606018 Lattice +hep-lat/0606019 Lattice +hep-lat/0606022 Lattice +hep-lat/0606023 Lattice +hep-lat/0607002 Lattice +hep-lat/0607005 Lattice +hep-lat/0607007 Lattice +hep-lat/0607011 Lattice +hep-lat/0607012 Lattice +hep-lat/0607014 Lattice +hep-lat/0607015 Lattice +hep-lat/0607018 Lattice +hep-lat/0607024 Lattice +hep-lat/0607026 Lattice +hep-lat/0607030 Lattice +hep-lat/0607032 Lattice +hep-lat/0607033 Lattice +hep-lat/0607036 Lattice +hep-lat/0608001 Lattice +hep-lat/0608005 Lattice +hep-lat/0608006 Lattice +hep-lat/0608009 Lattice +hep-lat/0608011 Lattice +hep-lat/0608012 Lattice +hep-lat/0608013 Lattice +hep-lat/0608014 Lattice +hep-lat/0608015 Lattice +hep-lat/0608016 Lattice +hep-lat/0608017 Lattice +hep-lat/0608020 Lattice +hep-lat/0608021 Lattice +hep-lat/0608022 Lattice +hep-lat/0608023 Lattice +hep-lat/0608025 Lattice +hep-lat/0608026 Lattice +hep-lat/0609001 Lattice +hep-lat/0609002 Lattice +hep-lat/0609003 Lattice +hep-lat/0609004 Lattice +hep-lat/0609005 Lattice +hep-lat/0609006 Lattice +hep-lat/0609007 Lattice +hep-lat/0609008 Lattice +hep-lat/0609011 Lattice +hep-lat/0609013 Lattice +hep-lat/0609015 Lattice +hep-lat/0609017 Lattice +hep-lat/0609018 Lattice +hep-lat/0609021 Lattice +hep-lat/0609022 Lattice +hep-lat/0609025 Lattice +hep-lat/0609026 Lattice +hep-lat/0609027 Lattice +hep-lat/0609028 Lattice +hep-lat/0609029 Lattice +hep-lat/0609030 Lattice +hep-lat/0609031 Lattice +hep-lat/0609032 Lattice +hep-lat/0609036 Lattice +hep-lat/0609037 Lattice +hep-lat/0609038 Lattice +hep-lat/0609039 Lattice +hep-lat/0609040 Lattice +hep-lat/0609042 Lattice +hep-lat/0609044 Lattice +hep-lat/0609045 Lattice +hep-lat/0609047 Lattice +hep-lat/0609048 Lattice +hep-lat/0609049 Lattice +hep-lat/0609050 Lattice +hep-lat/0609055 Lattice +hep-lat/0609058 Lattice +hep-lat/0609059 Lattice +hep-lat/0609061 Lattice +hep-lat/0609062 Lattice +hep-lat/0609063 Lattice +hep-lat/0609064 Lattice +hep-lat/0609066 Lattice +hep-lat/0609068 Lattice +hep-lat/0609070 Lattice +hep-lat/0609071 Lattice +hep-lat/0609073 Lattice +hep-lat/0609074 Lattice +hep-lat/0609075 Lattice +hep-lat/0609076 Lattice +hep-lat/0609077 Lattice +hep-lat/0609078 Lattice +hep-lat/0610002 Lattice +hep-lat/0610003 Lattice +hep-lat/0610004 Lattice +hep-lat/0610005 Lattice +hep-lat/0610009 Lattice +hep-lat/0610010 Lattice +hep-lat/0610011 Lattice +hep-lat/0610013 Lattice +hep-lat/0610014 Lattice +hep-lat/0610015 Lattice +hep-lat/0610016 Lattice +hep-lat/0610018 Lattice +hep-lat/0610019 Lattice +hep-lat/0610022 Lattice +hep-lat/0610023 Lattice +hep-lat/0610024 Lattice +hep-lat/0610026 Lattice +hep-lat/0610027 Lattice +hep-lat/0610029 Lattice +hep-lat/0610030 Lattice +hep-lat/0610031 Lattice +hep-lat/0610034 Lattice +hep-lat/0610036 Lattice +hep-lat/0610038 Lattice +hep-lat/0610039 Lattice +hep-lat/0610041 Lattice +hep-lat/0610042 Lattice +hep-lat/0610044 Lattice +hep-lat/0610045 Lattice +hep-lat/0610046 Lattice +hep-lat/0610047 Lattice +hep-lat/0610048 Lattice +hep-lat/0610049 Lattice +hep-lat/0610051 Lattice +hep-lat/0610055 Lattice +hep-lat/0610056 Lattice +hep-lat/0610057 Lattice +hep-lat/0610058 Lattice +hep-lat/0610060 Lattice +hep-lat/0610061 Lattice +hep-lat/0610064 Lattice +hep-lat/0610066 Lattice +hep-lat/0610068 Lattice +hep-lat/0610069 Lattice +hep-lat/0610071 Lattice +hep-lat/0610072 Lattice +hep-lat/0610074 Lattice +hep-lat/0610076 Lattice +hep-lat/0610077 Lattice +hep-lat/0610078 Lattice +hep-lat/0610079 Lattice +hep-lat/0610081 Lattice +hep-lat/0610082 Lattice +hep-lat/0610083 Lattice +hep-lat/0610085 Lattice +hep-lat/0610087 Lattice +hep-lat/0610090 Lattice +hep-lat/0610091 Lattice +hep-lat/0610092 Lattice +hep-lat/0610095 Lattice +hep-lat/0610096 Lattice +hep-lat/0610097 Lattice +hep-lat/0610098 Lattice +hep-lat/0610099 Lattice +hep-lat/0610101 Lattice +hep-lat/0610102 Lattice +hep-lat/0610103 Lattice +hep-lat/0610104 Lattice +hep-lat/0610105 Lattice +hep-lat/0610106 Lattice +hep-lat/0610107 Lattice +hep-lat/0610110 Lattice +hep-lat/0610111 Lattice +hep-lat/0610112 Lattice +hep-lat/0610113 Lattice +hep-lat/0610114 Lattice +hep-lat/0610116 Lattice +hep-lat/0610117 Lattice +hep-lat/0610118 Lattice +hep-lat/0610120 Lattice +hep-lat/0610121 Lattice +hep-lat/0610122 Lattice +hep-lat/0610124 Lattice +hep-lat/0610127 Lattice +hep-lat/0610129 Lattice +hep-lat/0610130 Lattice +hep-lat/0611001 Lattice +hep-lat/0611002 Lattice +hep-lat/0611003 Lattice +hep-lat/0611005 Lattice +hep-lat/0611007 Lattice +hep-lat/0611009 Lattice +hep-lat/0611010 Lattice +hep-lat/0611011 Lattice +hep-lat/0611013 Lattice +hep-lat/0611017 Lattice +hep-lat/0611018 Lattice +hep-lat/0611019 Lattice +hep-lat/0611021 Lattice +hep-lat/0611022 Lattice +hep-lat/0611023 Lattice +hep-lat/0611025 Lattice +hep-lat/0611026 Lattice +hep-lat/0611030 Lattice +hep-lat/0611031 Lattice +hep-lat/0611032 Lattice +hep-lat/0611034 Lattice +hep-lat/0611035 Lattice +hep-lat/0612001 Lattice +hep-lat/0612002 Lattice +hep-lat/0612003 Lattice +hep-lat/0612004 Lattice +hep-lat/0612005 Lattice +hep-lat/0612006 Lattice +hep-lat/0612009 Lattice +hep-lat/0612013 Lattice +hep-lat/0612015 Lattice +hep-lat/0612016 Lattice +hep-lat/0612017 Lattice +hep-lat/0612019 Lattice +hep-lat/0612020 Lattice +hep-lat/0612022 Lattice +hep-lat/0612023 Lattice +hep-lat/0612024 Lattice +hep-lat/0612026 Lattice +hep-lat/0612027 Lattice +hep-lat/0612028 Lattice +hep-lat/0612029 Lattice +hep-lat/0612030 Lattice +hep-lat/0612032 Lattice +hep-lat/0701001 Lattice +hep-lat/0701003 Lattice +hep-lat/0701004 Lattice +hep-lat/0701005 Lattice +hep-lat/0701006 Lattice +hep-lat/0701007 Lattice +hep-lat/0701008 Lattice +hep-lat/0701011 Lattice +hep-lat/0701014 Lattice +hep-lat/0701015 Lattice +hep-lat/0701018 Lattice +hep-lat/0701019 Lattice +hep-lat/0701020 Lattice +hep-lat/0701023 Lattice +hep-lat/0701024 Lattice +hep-lat/0702001 Lattice +hep-lat/0702002 Lattice +hep-lat/0702003 Lattice +hep-lat/0702005 Lattice +hep-lat/0702006 Lattice +hep-lat/0702007 Lattice +hep-lat/0702010 Lattice +hep-lat/0702011 Lattice +hep-lat/0702012 Lattice +hep-lat/0702015 Lattice +hep-lat/0702017 Lattice +hep-lat/0702018 Lattice +hep-lat/0702019 Lattice +hep-lat/0702021 Lattice +hep-lat/0702022 Lattice +hep-lat/0702023 Lattice +hep-lat/0702027 Lattice +hep-lat/0703001 Lattice +hep-lat/0703002 Lattice +hep-lat/0703003 Lattice +hep-lat/0703004 Lattice +hep-lat/0703007 Lattice +hep-lat/0703011 Lattice +hep-lat/0703014 Lattice +hep-lat/0703016 Lattice +hep-lat/0703017 Lattice +hep-lat/0703018 Lattice +hep-lat/0703019 Lattice +hep-lat/0703022 Lattice +hep-lat/0703023 Lattice +hep-lat/9205008 Lattice +hep-lat/9205010 Lattice +hep-lat/9205015 Lattice +hep-lat/9206003 Lattice +hep-lat/9206017 Lattice +hep-lat/9208015 Lattice +hep-lat/9208025 Lattice +hep-lat/9209019 Lattice +hep-lat/9210001 Lattice +hep-lat/9210002 Lattice +hep-lat/9210014 Lattice +hep-lat/9210020 Lattice +hep-lat/9210030 Lattice +hep-lat/9211019 Lattice +hep-lat/9211036 Lattice +hep-lat/9211062 Lattice +hep-lat/9212004 Lattice +hep-lat/9212016 Lattice +hep-lat/9301006 Lattice +hep-lat/9301019 Lattice +hep-lat/9301021 Lattice +hep-lat/9302007 Lattice +hep-lat/9304011 Lattice +hep-lat/9304012 Lattice +hep-lat/9305016 Lattice +hep-lat/9305023 Lattice +hep-lat/9306002 Lattice +hep-lat/9306015 Lattice +hep-lat/9307015 Lattice +hep-lat/9308004 Lattice +hep-lat/9308012 Lattice +hep-lat/9309009 Lattice +hep-lat/9309016 Lattice +hep-lat/9309017 Lattice +hep-lat/9310003 Lattice +hep-lat/9310026 Lattice +hep-lat/9311032 Lattice +hep-lat/9311052 Lattice +hep-lat/9311060 Lattice +hep-lat/9311071 Lattice +hep-lat/9311072 Lattice +hep-lat/9311073 Lattice +hep-lat/9312036 Lattice +hep-lat/9312057 Lattice +hep-lat/9312066 Lattice +hep-lat/9401003 Lattice +hep-lat/9401012 Lattice +hep-lat/9401013 Lattice +hep-lat/9403004 Lattice +hep-lat/9404001 Lattice +hep-lat/9404004 Lattice +hep-lat/9404006 Lattice +hep-lat/9411004 Lattice +hep-lat/9411015 Lattice +hep-lat/9411025 Lattice +hep-lat/9411028 Lattice +hep-lat/9411055 Lattice +hep-lat/9411080 Lattice +hep-lat/9411087 Lattice +hep-lat/9412010 Lattice +hep-lat/9412011 Lattice +hep-lat/9412029 Lattice +hep-lat/9412032 Lattice +hep-lat/9412038 Lattice +hep-lat/9412055 Lattice +hep-lat/9412064 Lattice +hep-lat/9412079 Lattice +hep-lat/9412087 Lattice +hep-lat/9412112 Lattice +hep-lat/9503016 Lattice +hep-lat/9503026 Lattice +hep-lat/9504004 Lattice +hep-lat/9504016 Lattice +hep-lat/9505001 Lattice +hep-lat/9505019 Lattice +hep-lat/9506009 Lattice +hep-lat/9507001 Lattice +hep-lat/9507002 Lattice +hep-lat/9507006 Lattice +hep-lat/9507023 Lattice +hep-lat/9508002 Lattice +hep-lat/9508004 Lattice +hep-lat/9508017 Lattice +hep-lat/9508030 Lattice +hep-lat/9509006 Lattice +hep-lat/9509008 Lattice +hep-lat/9509045 Lattice +hep-lat/9509048 Lattice +hep-lat/9509060 Lattice +hep-lat/9509076 Lattice +hep-lat/9509079 Lattice +hep-lat/9509083 Lattice +hep-lat/9509093 Lattice +hep-lat/9510004 Lattice +hep-lat/9510011 Lattice +hep-lat/9510017 Lattice +hep-lat/9510022 Lattice +hep-lat/9510025 Lattice +hep-lat/9510028 Lattice +hep-lat/9510039 Lattice +hep-lat/9511022 Lattice +hep-lat/9601007 Lattice +hep-lat/9602029 Lattice +hep-lat/9603006 Lattice +hep-lat/9603009 Lattice +hep-lat/9603015 Lattice +hep-lat/9604004 Lattice +hep-lat/9604018 Lattice +hep-lat/9604020 Lattice +hep-lat/9604024 Lattice +hep-lat/9605013 Lattice +hep-lat/9605023 Lattice +hep-lat/9605025 Lattice +hep-lat/9605028 Lattice +hep-lat/9605035 Lattice +hep-lat/9605039 Lattice +hep-lat/9606002 Lattice +hep-lat/9607018 Lattice +hep-lat/9607031 Lattice +hep-lat/9607042 Lattice +hep-lat/9607053 Lattice +hep-lat/9607065 Lattice +hep-lat/9607085 Lattice +hep-lat/9608005 Lattice +hep-lat/9608009 Lattice +hep-lat/9608015 Lattice +hep-lat/9608017 Lattice +hep-lat/9608026 Lattice +hep-lat/9608033 Lattice +hep-lat/9608035 Lattice +hep-lat/9608036 Lattice +hep-lat/9608046 Lattice +hep-lat/9608059 Lattice +hep-lat/9608063 Lattice +hep-lat/9608069 Lattice +hep-lat/9608070 Lattice +hep-lat/9608081 Lattice +hep-lat/9608086 Lattice +hep-lat/9608088 Lattice +hep-lat/9608092 Lattice +hep-lat/9608098 Lattice +hep-lat/9608102 Lattice +hep-lat/9608146 Lattice +hep-lat/9609008 Lattice +hep-lat/9609036 Lattice +hep-lat/9609039 Lattice +hep-lat/9609041 Lattice +hep-lat/9610005 Lattice +hep-lat/9610011 Lattice +hep-lat/9610026 Lattice +hep-lat/9611005 Lattice +hep-lat/9611008 Lattice +hep-lat/9611011 Lattice +hep-lat/9611031 Lattice +hep-lat/9612006 Lattice +hep-lat/9612025 Lattice +hep-lat/9701002 Lattice +hep-lat/9701007 Lattice +hep-lat/9701013 Lattice +hep-lat/9703006 Lattice +hep-lat/9703014 Lattice +hep-lat/9704007 Lattice +hep-lat/9704019 Lattice +hep-lat/9704020 Lattice +hep-lat/9705019 Lattice +hep-lat/9705033 Lattice +hep-lat/9706005 Lattice +hep-lat/9706013 Lattice +hep-lat/9706016 Lattice +hep-lat/9707008 Lattice +hep-lat/9707021 Lattice +hep-lat/9708012 Lattice +hep-lat/9709016 Lattice +hep-lat/9709017 Lattice +hep-lat/9709029 Lattice +hep-lat/9709032 Lattice +hep-lat/9709036 Lattice +hep-lat/9709049 Lattice +hep-lat/9709051 Lattice +hep-lat/9709074 Lattice +hep-lat/9709107 Lattice +hep-lat/9709116 Lattice +hep-lat/9709134 Lattice +hep-lat/9709142 Lattice +hep-lat/9709160 Lattice +hep-lat/9710007 Lattice +hep-lat/9710025 Lattice +hep-lat/9710030 Lattice +hep-lat/9710034 Lattice +hep-lat/9710037 Lattice +hep-lat/9710038 Lattice +hep-lat/9710039 Lattice +hep-lat/9710044 Lattice +hep-lat/9710052 Lattice +hep-lat/9710063 Lattice +hep-lat/9710084 Lattice +hep-lat/9710093 Lattice +hep-lat/9711013 Lattice +hep-lat/9711026 Lattice +hep-lat/9711033 Lattice +hep-lat/9711040 Lattice +hep-lat/9711050 Lattice +hep-lat/9712010 Lattice +hep-lat/9801004 Lattice +hep-lat/9801026 Lattice +hep-lat/9801027 Lattice +hep-lat/9802005 Lattice +hep-lat/9802008 Lattice +hep-lat/9802015 Lattice +hep-lat/9802018 Lattice +hep-lat/9802036 Lattice +hep-lat/9803001 Lattice +hep-lat/9803008 Lattice +hep-lat/9803009 Lattice +hep-lat/9803023 Lattice +hep-lat/9804003 Lattice +hep-lat/9804004 Lattice +hep-lat/9804005 Lattice +hep-lat/9804006 Lattice +hep-lat/9804027 Lattice +hep-lat/9804031 Lattice +hep-lat/9805004 Lattice +hep-lat/9805009 Lattice +hep-lat/9806028 Lattice +hep-lat/9807008 Lattice +hep-lat/9807032 Lattice +hep-lat/9807044 Lattice +hep-lat/9808004 Lattice +hep-lat/9808016 Lattice +hep-lat/9808028 Lattice +hep-lat/9808044 Lattice +hep-lat/9809001 Lattice +hep-lat/9809018 Lattice +hep-lat/9809029 Lattice +hep-lat/9809030 Lattice +hep-lat/9809031 Lattice +hep-lat/9809034 Lattice +hep-lat/9809035 Lattice +hep-lat/9809053 Lattice +hep-lat/9809055 Lattice +hep-lat/9809077 Lattice +hep-lat/9809087 Lattice +hep-lat/9809091 Lattice +hep-lat/9809095 Lattice +hep-lat/9809105 Lattice +hep-lat/9809109 Lattice +hep-lat/9809132 Lattice +hep-lat/9809142 Lattice +hep-lat/9809165 Lattice +hep-lat/9809171 Lattice +hep-lat/9809172 Lattice +hep-lat/9809178 Lattice +hep-lat/9810006 Lattice +hep-lat/9810009 Lattice +hep-lat/9810021 Lattice +hep-lat/9810035 Lattice +hep-lat/9810065 Lattice +hep-lat/9811010 Lattice +hep-lat/9811017 Lattice +hep-lat/9811018 Lattice +hep-lat/9811032 Lattice +hep-lat/9812019 Lattice +hep-lat/9901004 Lattice +hep-lat/9901007 Lattice +hep-lat/9901023 Lattice +hep-lat/9902026 Lattice +hep-lat/9903030 Lattice +hep-lat/9903037 Lattice +hep-lat/9904004 Lattice +hep-lat/9904009 Lattice +hep-lat/9905007 Lattice +hep-lat/9905023 Lattice +hep-lat/9906013 Lattice +hep-lat/9906024 Lattice +hep-lat/9906031 Lattice +hep-lat/9906037 Lattice +hep-lat/9907014 Lattice +hep-lat/9907019 Lattice +hep-lat/9908005 Lattice +hep-lat/9908008 Lattice +hep-lat/9908011 Lattice +hep-lat/9908018 Lattice +hep-lat/9908029 Lattice +hep-lat/9909005 Lattice +hep-lat/9909016 Lattice +hep-lat/9910008 Lattice +hep-lat/9910022 Lattice +hep-lat/9910023 Lattice +hep-lat/9910028 Lattice +hep-lat/9910036 Lattice +hep-lat/9911006 Lattice +hep-lat/9911018 Lattice +hep-lat/9912018 Lattice +hep-lat/9912034 Lattice +hep-lat/9912046 Lattice +hep-lat/9912049 Lattice +hep-ph/0001002 Phenomenology +hep-ph/0001016 Phenomenology +hep-ph/0001019 Phenomenology +hep-ph/0001035 Phenomenology +hep-ph/0001041 Phenomenology +hep-ph/0001050 Phenomenology +hep-ph/0001082 Phenomenology +hep-ph/0001104 Phenomenology +hep-ph/0001142 Phenomenology +hep-ph/0001164 Phenomenology +hep-ph/0001200 Phenomenology +hep-ph/0001206 Phenomenology +hep-ph/0001218 Phenomenology +hep-ph/0001261 Phenomenology +hep-ph/0001267 Phenomenology +hep-ph/0001284 Phenomenology +hep-ph/0001309 Phenomenology +hep-ph/0002024 Phenomenology +hep-ph/0002036 Phenomenology +hep-ph/0002044 Phenomenology +hep-ph/0002049 Phenomenology +hep-ph/0002057 Phenomenology +hep-ph/0002062 Phenomenology +hep-ph/0002064 Phenomenology +hep-ph/0002071 Phenomenology +hep-ph/0002073 Phenomenology +hep-ph/0002074 Phenomenology +hep-ph/0002075 Phenomenology +hep-ph/0002078 Phenomenology +hep-ph/0002094 Phenomenology +hep-ph/0002112 Phenomenology +hep-ph/0002123 Phenomenology +hep-ph/0002128 Phenomenology +hep-ph/0002163 Phenomenology +hep-ph/0002170 Phenomenology +hep-ph/0002172 Phenomenology +hep-ph/0002175 Phenomenology +hep-ph/0002183 Phenomenology +hep-ph/0002195 Phenomenology +hep-ph/0002203 Phenomenology +hep-ph/0002236 Phenomenology +hep-ph/0002259 Phenomenology +hep-ph/0002272 Phenomenology +hep-ph/0002277 Phenomenology +hep-ph/0002288 Phenomenology +hep-ph/0003007 Phenomenology +hep-ph/0003011 Phenomenology +hep-ph/0003035 Phenomenology +hep-ph/0003042 Phenomenology +hep-ph/0003057 Phenomenology +hep-ph/0003067 Phenomenology +hep-ph/0003076 Phenomenology +hep-ph/0003089 Phenomenology +hep-ph/0003107 Phenomenology +hep-ph/0003136 Phenomenology +hep-ph/0003167 Phenomenology +hep-ph/0003180 Phenomenology +hep-ph/0003186 Phenomenology +hep-ph/0003187 Phenomenology +hep-ph/0003234 Phenomenology +hep-ph/0003252 Phenomenology +hep-ph/0003260 Phenomenology +hep-ph/0003268 Phenomenology +hep-ph/0003271 Phenomenology +hep-ph/0003273 Phenomenology +hep-ph/0003278 Phenomenology +hep-ph/0003312 Phenomenology +hep-ph/0003318 Phenomenology +hep-ph/0003323 Phenomenology +hep-ph/0003328 Phenomenology +hep-ph/0004019 Phenomenology +hep-ph/0004028 Phenomenology +hep-ph/0004062 Phenomenology +hep-ph/0004069 Phenomenology +hep-ph/0004090 Phenomenology +hep-ph/0004124 Phenomenology +hep-ph/0004140 Phenomenology +hep-ph/0004145 Phenomenology +hep-ph/0004156 Phenomenology +hep-ph/0004175 Phenomenology +hep-ph/0004189 Phenomenology +hep-ph/0004190 Phenomenology +hep-ph/0004210 Phenomenology +hep-ph/0004270 Phenomenology +hep-ph/0005021 Phenomenology +hep-ph/0005038 Phenomenology +hep-ph/0005044 Phenomenology +hep-ph/0005046 Phenomenology +hep-ph/0005054 Phenomenology +hep-ph/0005056 Phenomenology +hep-ph/0005065 Phenomenology +hep-ph/0005068 Phenomenology +hep-ph/0005083 Phenomenology +hep-ph/0005087 Phenomenology +hep-ph/0005104 Phenomenology +hep-ph/0005110 Phenomenology +hep-ph/0005164 Phenomenology +hep-ph/0005173 Phenomenology +hep-ph/0005181 Phenomenology +hep-ph/0005196 Phenomenology +hep-ph/0005198 Phenomenology +hep-ph/0005208 Phenomenology +hep-ph/0005232 Phenomenology +hep-ph/0005236 Phenomenology +hep-ph/0005238 Phenomenology +hep-ph/0005251 Phenomenology +hep-ph/0005253 Phenomenology +hep-ph/0005275 Phenomenology +hep-ph/0005293 Phenomenology +hep-ph/0005308 Phenomenology +hep-ph/0006045 Phenomenology +hep-ph/0006052 Phenomenology +hep-ph/0006054 Phenomenology +hep-ph/0006059 Phenomenology +hep-ph/0006071 Phenomenology +hep-ph/0006079 Phenomenology +hep-ph/0006089 Phenomenology +hep-ph/0006097 Phenomenology +hep-ph/0006110 Phenomenology +hep-ph/0006117 Phenomenology +hep-ph/0006144 Phenomenology +hep-ph/0006146 Phenomenology +hep-ph/0006202 Phenomenology +hep-ph/0006239 Phenomenology +hep-ph/0006240 Phenomenology +hep-ph/0006247 Phenomenology +hep-ph/0006261 Phenomenology +hep-ph/0006278 Phenomenology +hep-ph/0006279 Phenomenology +hep-ph/0006304 Phenomenology +hep-ph/0006307 Phenomenology +hep-ph/0006309 Phenomenology +hep-ph/0006311 Phenomenology +hep-ph/0006312 Phenomenology +hep-ph/0006321 Phenomenology +hep-ph/0007008 Phenomenology +hep-ph/0007010 Phenomenology +hep-ph/0007022 Phenomenology +hep-ph/0007032 Phenomenology +hep-ph/0007067 Phenomenology +hep-ph/0007071 Phenomenology +hep-ph/0007100 Phenomenology +hep-ph/0007106 Phenomenology +hep-ph/0007110 Phenomenology +hep-ph/0007113 Phenomenology +hep-ph/0007125 Phenomenology +hep-ph/0007152 Phenomenology +hep-ph/0007176 Phenomenology +hep-ph/0007177 Phenomenology +hep-ph/0007192 Phenomenology +hep-ph/0007202 Phenomenology +hep-ph/0007205 Phenomenology +hep-ph/0007212 Phenomenology +hep-ph/0007218 Phenomenology +hep-ph/0007223 Phenomenology +hep-ph/0007230 Phenomenology +hep-ph/0007236 Phenomenology +hep-ph/0007245 Phenomenology +hep-ph/0007247 Phenomenology +hep-ph/0007267 Phenomenology +hep-ph/0007297 Phenomenology +hep-ph/0007313 Phenomenology +hep-ph/0007337 Phenomenology +hep-ph/0007338 Phenomenology +hep-ph/0007357 Phenomenology +hep-ph/0007358 Phenomenology +hep-ph/0007362 Phenomenology +hep-ph/0008010 Phenomenology +hep-ph/0008013 Phenomenology +hep-ph/0008019 Phenomenology +hep-ph/0008023 Phenomenology +hep-ph/0008053 Phenomenology +hep-ph/0008056 Phenomenology +hep-ph/0008062 Phenomenology +hep-ph/0008068 Phenomenology +hep-ph/0008079 Phenomenology +hep-ph/0008105 Phenomenology +hep-ph/0008114 Phenomenology +hep-ph/0008126 Phenomenology +hep-ph/0008132 Phenomenology +hep-ph/0008134 Phenomenology +hep-ph/0008148 Phenomenology +hep-ph/0008158 Phenomenology +hep-ph/0008166 Phenomenology +hep-ph/0008170 Phenomenology +hep-ph/0008189 Phenomenology +hep-ph/0008201 Phenomenology +hep-ph/0008217 Phenomenology +hep-ph/0008231 Phenomenology +hep-ph/0008233 Phenomenology +hep-ph/0008254 Phenomenology +hep-ph/0008287 Phenomenology +hep-ph/0008288 Phenomenology +hep-ph/0008317 Phenomenology +hep-ph/0008332 Phenomenology +hep-ph/0008334 Phenomenology +hep-ph/0009010 Phenomenology +hep-ph/0009029 Phenomenology +hep-ph/0009035 Phenomenology +hep-ph/0009079 Phenomenology +hep-ph/0009080 Phenomenology +hep-ph/0009083 Phenomenology +hep-ph/0009090 Phenomenology +hep-ph/0009124 Phenomenology +hep-ph/0009125 Phenomenology +hep-ph/0009129 Phenomenology +hep-ph/0009148 Phenomenology +hep-ph/0009151 Phenomenology +hep-ph/0009153 Phenomenology +hep-ph/0009212 Phenomenology +hep-ph/0009221 Phenomenology +hep-ph/0009234 Phenomenology +hep-ph/0009248 Phenomenology +hep-ph/0009260 Phenomenology +hep-ph/0009265 Phenomenology +hep-ph/0009283 Phenomenology +hep-ph/0009326 Phenomenology +hep-ph/0009328 Phenomenology +hep-ph/0009357 Phenomenology +hep-ph/0010003 Phenomenology +hep-ph/0010004 Phenomenology +hep-ph/0010014 Phenomenology +hep-ph/0010017 Phenomenology +hep-ph/0010026 Phenomenology +hep-ph/0010031 Phenomenology +hep-ph/0010047 Phenomenology +hep-ph/0010057 Phenomenology +hep-ph/0010058 Phenomenology +hep-ph/0010080 Phenomenology +hep-ph/0010086 Phenomenology +hep-ph/0010088 Phenomenology +hep-ph/0010120 Phenomenology +hep-ph/0010121 Phenomenology +hep-ph/0010145 Phenomenology +hep-ph/0010153 Phenomenology +hep-ph/0010162 Phenomenology +hep-ph/0010170 Phenomenology +hep-ph/0010189 Phenomenology +hep-ph/0010195 Phenomenology +hep-ph/0010198 Phenomenology +hep-ph/0010203 Phenomenology +hep-ph/0010204 Phenomenology +hep-ph/0010212 Phenomenology +hep-ph/0010227 Phenomenology +hep-ph/0010228 Phenomenology +hep-ph/0010247 Phenomenology +hep-ph/0010250 Phenomenology +hep-ph/0010289 Phenomenology +hep-ph/0010293 Phenomenology +hep-ph/0010303 Phenomenology +hep-ph/0010324 Phenomenology +hep-ph/0010334 Phenomenology +hep-ph/0010342 Phenomenology +hep-ph/0010353 Phenomenology +hep-ph/0011014 Phenomenology +hep-ph/0011047 Phenomenology +hep-ph/0011055 Phenomenology +hep-ph/0011056 Phenomenology +hep-ph/0011068 Phenomenology +hep-ph/0011086 Phenomenology +hep-ph/0011093 Phenomenology +hep-ph/0011094 Phenomenology +hep-ph/0011095 Phenomenology +hep-ph/0011108 Phenomenology +hep-ph/0011136 Phenomenology +hep-ph/0011150 Phenomenology +hep-ph/0011192 Phenomenology +hep-ph/0011201 Phenomenology +hep-ph/0011225 Phenomenology +hep-ph/0011243 Phenomenology +hep-ph/0011253 Phenomenology +hep-ph/0011254 Phenomenology +hep-ph/0011260 Phenomenology +hep-ph/0011270 Phenomenology +hep-ph/0011326 Phenomenology +hep-ph/0011330 Phenomenology +hep-ph/0011332 Phenomenology +hep-ph/0011334 Phenomenology +hep-ph/0011342 Phenomenology +hep-ph/0011356 Phenomenology +hep-ph/0011359 Phenomenology +hep-ph/0011360 Phenomenology +hep-ph/0011365 Phenomenology +hep-ph/0011369 Phenomenology +hep-ph/0011392 Phenomenology +hep-ph/0012001 Phenomenology +hep-ph/0012007 Phenomenology +hep-ph/0012020 Phenomenology +hep-ph/0012031 Phenomenology +hep-ph/0012037 Phenomenology +hep-ph/0012052 Phenomenology +hep-ph/0012078 Phenomenology +hep-ph/0012082 Phenomenology +hep-ph/0012083 Phenomenology +hep-ph/0012086 Phenomenology +hep-ph/0012088 Phenomenology +hep-ph/0012098 Phenomenology +hep-ph/0012120 Phenomenology +hep-ph/0012154 Phenomenology +hep-ph/0012167 Phenomenology +hep-ph/0012172 Phenomenology +hep-ph/0012175 Phenomenology +hep-ph/0012222 Phenomenology +hep-ph/0012223 Phenomenology +hep-ph/0012235 Phenomenology +hep-ph/0012251 Phenomenology +hep-ph/0012261 Phenomenology +hep-ph/0012262 Phenomenology +hep-ph/0012274 Phenomenology +hep-ph/0012278 Phenomenology +hep-ph/0012282 Phenomenology +hep-ph/0012306 Phenomenology +hep-ph/0012335 Phenomenology +hep-ph/0012336 Phenomenology +hep-ph/0012338 Phenomenology +hep-ph/0012348 Phenomenology +hep-ph/0012366 Phenomenology +hep-ph/0012367 Phenomenology +hep-ph/0101001 Phenomenology +hep-ph/0101002 Phenomenology +hep-ph/0101005 Phenomenology +hep-ph/0101007 Phenomenology +hep-ph/0101008 Phenomenology +hep-ph/0101013 Phenomenology +hep-ph/0101077 Phenomenology +hep-ph/0101083 Phenomenology +hep-ph/0101095 Phenomenology +hep-ph/0101118 Phenomenology +hep-ph/0101131 Phenomenology +hep-ph/0101136 Phenomenology +hep-ph/0101141 Phenomenology +hep-ph/0101154 Phenomenology +hep-ph/0101163 Phenomenology +hep-ph/0101174 Phenomenology +hep-ph/0101177 Phenomenology +hep-ph/0101179 Phenomenology +hep-ph/0101181 Phenomenology +hep-ph/0101194 Phenomenology +hep-ph/0101197 Phenomenology +hep-ph/0101237 Phenomenology +hep-ph/0101247 Phenomenology +hep-ph/0101295 Phenomenology +hep-ph/0101299 Phenomenology +hep-ph/0101304 Phenomenology +hep-ph/0101324 Phenomenology +hep-ph/0101356 Phenomenology +hep-ph/0102004 Phenomenology +hep-ph/0102012 Phenomenology +hep-ph/0102026 Phenomenology +hep-ph/0102067 Phenomenology +hep-ph/0102085 Phenomenology +hep-ph/0102090 Phenomenology +hep-ph/0102098 Phenomenology +hep-ph/0102116 Phenomenology +hep-ph/0102121 Phenomenology +hep-ph/0102129 Phenomenology +hep-ph/0102137 Phenomenology +hep-ph/0102143 Phenomenology +hep-ph/0102147 Phenomenology +hep-ph/0102149 Phenomenology +hep-ph/0102159 Phenomenology +hep-ph/0102172 Phenomenology +hep-ph/0102174 Phenomenology +hep-ph/0102181 Phenomenology +hep-ph/0102192 Phenomenology +hep-ph/0102196 Phenomenology +hep-ph/0102209 Phenomenology +hep-ph/0102212 Phenomenology +hep-ph/0102216 Phenomenology +hep-ph/0102229 Phenomenology +hep-ph/0102249 Phenomenology +hep-ph/0102252 Phenomenology +hep-ph/0102257 Phenomenology +hep-ph/0102279 Phenomenology +hep-ph/0102286 Phenomenology +hep-ph/0102309 Phenomenology +hep-ph/0102338 Phenomenology +hep-ph/0102344 Phenomenology +hep-ph/0103044 Phenomenology +hep-ph/0103059 Phenomenology +hep-ph/0103062 Phenomenology +hep-ph/0103065 Phenomenology +hep-ph/0103066 Phenomenology +hep-ph/0103084 Phenomenology +hep-ph/0103088 Phenomenology +hep-ph/0103090 Phenomenology +hep-ph/0103144 Phenomenology +hep-ph/0103157 Phenomenology +hep-ph/0103185 Phenomenology +hep-ph/0103212 Phenomenology +hep-ph/0103215 Phenomenology +hep-ph/0103222 Phenomenology +hep-ph/0103229 Phenomenology +hep-ph/0103232 Phenomenology +hep-ph/0103308 Phenomenology +hep-ph/0103317 Phenomenology +hep-ph/0104007 Phenomenology +hep-ph/0104034 Phenomenology +hep-ph/0104041 Phenomenology +hep-ph/0104048 Phenomenology +hep-ph/0104059 Phenomenology +hep-ph/0104087 Phenomenology +hep-ph/0104089 Phenomenology +hep-ph/0104100 Phenomenology +hep-ph/0104143 Phenomenology +hep-ph/0104150 Phenomenology +hep-ph/0104151 Phenomenology +hep-ph/0104165 Phenomenology +hep-ph/0104245 Phenomenology +hep-ph/0104256 Phenomenology +hep-ph/0104267 Phenomenology +hep-ph/0104290 Phenomenology +hep-ph/0104304 Phenomenology +hep-ph/0104313 Phenomenology +hep-ph/0105034 Phenomenology +hep-ph/0105053 Phenomenology +hep-ph/0105070 Phenomenology +hep-ph/0105086 Phenomenology +hep-ph/0105107 Phenomenology +hep-ph/0105124 Phenomenology +hep-ph/0105125 Phenomenology +hep-ph/0105150 Phenomenology +hep-ph/0105160 Phenomenology +hep-ph/0105197 Phenomenology +hep-ph/0105222 Phenomenology +hep-ph/0105267 Phenomenology +hep-ph/0105325 Phenomenology +hep-ph/0105330 Phenomenology +hep-ph/0105334 Phenomenology +hep-ph/0105344 Phenomenology +hep-ph/0106036 Phenomenology +hep-ph/0106037 Phenomenology +hep-ph/0106052 Phenomenology +hep-ph/0106054 Phenomenology +hep-ph/0106065 Phenomenology +hep-ph/0106074 Phenomenology +hep-ph/0106078 Phenomenology +hep-ph/0106151 Phenomenology +hep-ph/0106157 Phenomenology +hep-ph/0106169 Phenomenology +hep-ph/0106176 Phenomenology +hep-ph/0106189 Phenomenology +hep-ph/0106192 Phenomenology +hep-ph/0106212 Phenomenology +hep-ph/0106221 Phenomenology +hep-ph/0106237 Phenomenology +hep-ph/0106251 Phenomenology +hep-ph/0106292 Phenomenology +hep-ph/0106295 Phenomenology +hep-ph/0106322 Phenomenology +hep-ph/0106333 Phenomenology +hep-ph/0106345 Phenomenology +hep-ph/0107006 Phenomenology +hep-ph/0107011 Phenomenology +hep-ph/0107013 Phenomenology +hep-ph/0107060 Phenomenology +hep-ph/0107062 Phenomenology +hep-ph/0107112 Phenomenology +hep-ph/0107113 Phenomenology +hep-ph/0107124 Phenomenology +hep-ph/0107132 Phenomenology +hep-ph/0107142 Phenomenology +hep-ph/0107144 Phenomenology +hep-ph/0107150 Phenomenology +hep-ph/0107151 Phenomenology +hep-ph/0107182 Phenomenology +hep-ph/0107194 Phenomenology +hep-ph/0107207 Phenomenology +hep-ph/0107221 Phenomenology +hep-ph/0107235 Phenomenology +hep-ph/0107252 Phenomenology +hep-ph/0107261 Phenomenology +hep-ph/0107271 Phenomenology +hep-ph/0107277 Phenomenology +hep-ph/0107331 Phenomenology +hep-ph/0108014 Phenomenology +hep-ph/0108016 Phenomenology +hep-ph/0108041 Phenomenology +hep-ph/0108048 Phenomenology +hep-ph/0108051 Phenomenology +hep-ph/0108056 Phenomenology +hep-ph/0108069 Phenomenology +hep-ph/0108071 Phenomenology +hep-ph/0108101 Phenomenology +hep-ph/0108116 Phenomenology +hep-ph/0108121 Phenomenology +hep-ph/0108123 Phenomenology +hep-ph/0108130 Phenomenology +hep-ph/0108131 Phenomenology +hep-ph/0108154 Phenomenology +hep-ph/0108158 Phenomenology +hep-ph/0108173 Phenomenology +hep-ph/0108188 Phenomenology +hep-ph/0108211 Phenomenology +hep-ph/0108213 Phenomenology +hep-ph/0108227 Phenomenology +hep-ph/0108241 Phenomenology +hep-ph/0108242 Phenomenology +hep-ph/0108248 Phenomenology +hep-ph/0108252 Phenomenology +hep-ph/0108258 Phenomenology +hep-ph/0108263 Phenomenology +hep-ph/0108269 Phenomenology +hep-ph/0109026 Phenomenology +hep-ph/0109029 Phenomenology +hep-ph/0109032 Phenomenology +hep-ph/0109038 Phenomenology +hep-ph/0109040 Phenomenology +hep-ph/0109045 Phenomenology +hep-ph/0109071 Phenomenology +hep-ph/0109075 Phenomenology +hep-ph/0109077 Phenomenology +hep-ph/0109085 Phenomenology +hep-ph/0109104 Phenomenology +hep-ph/0109115 Phenomenology +hep-ph/0109118 Phenomenology +hep-ph/0109125 Phenomenology +hep-ph/0109146 Phenomenology +hep-ph/0109156 Phenomenology +hep-ph/0109158 Phenomenology +hep-ph/0109163 Phenomenology +hep-ph/0109178 Phenomenology +hep-ph/0109220 Phenomenology +hep-ph/0109229 Phenomenology +hep-ph/0109233 Phenomenology +hep-ph/0109246 Phenomenology +hep-ph/0109254 Phenomenology +hep-ph/0109257 Phenomenology +hep-ph/0109285 Phenomenology +hep-ph/0109288 Phenomenology +hep-ph/0110009 Phenomenology +hep-ph/0110034 Phenomenology +hep-ph/0110041 Phenomenology +hep-ph/0110062 Phenomenology +hep-ph/0110067 Phenomenology +hep-ph/0110072 Phenomenology +hep-ph/0110080 Phenomenology +hep-ph/0110081 Phenomenology +hep-ph/0110085 Phenomenology +hep-ph/0110096 Phenomenology +hep-ph/0110114 Phenomenology +hep-ph/0110123 Phenomenology +hep-ph/0110153 Phenomenology +hep-ph/0110156 Phenomenology +hep-ph/0110163 Phenomenology +hep-ph/0110180 Phenomenology +hep-ph/0110194 Phenomenology +hep-ph/0110221 Phenomenology +hep-ph/0110226 Phenomenology +hep-ph/0110231 Phenomenology +hep-ph/0110247 Phenomenology +hep-ph/0110249 Phenomenology +hep-ph/0110250 Phenomenology +hep-ph/0110259 Phenomenology +hep-ph/0110288 Phenomenology +hep-ph/0110295 Phenomenology +hep-ph/0110303 Phenomenology +hep-ph/0110319 Phenomenology +hep-ph/0110325 Phenomenology +hep-ph/0110346 Phenomenology +hep-ph/0110349 Phenomenology +hep-ph/0110391 Phenomenology +hep-ph/0110392 Phenomenology +hep-ph/0110404 Phenomenology +hep-ph/0111016 Phenomenology +hep-ph/0111034 Phenomenology +hep-ph/0111058 Phenomenology +hep-ph/0111059 Phenomenology +hep-ph/0111060 Phenomenology +hep-ph/0111075 Phenomenology +hep-ph/0111077 Phenomenology +hep-ph/0111078 Phenomenology +hep-ph/0111084 Phenomenology +hep-ph/0111089 Phenomenology +hep-ph/0111096 Phenomenology +hep-ph/0111097 Phenomenology +hep-ph/0111120 Phenomenology +hep-ph/0111124 Phenomenology +hep-ph/0111126 Phenomenology +hep-ph/0111139 Phenomenology +hep-ph/0111160 Phenomenology +hep-ph/0111190 Phenomenology +hep-ph/0111207 Phenomenology +hep-ph/0111217 Phenomenology +hep-ph/0111238 Phenomenology +hep-ph/0111245 Phenomenology +hep-ph/0111259 Phenomenology +hep-ph/0111274 Phenomenology +hep-ph/0111317 Phenomenology +hep-ph/0111328 Phenomenology +hep-ph/0111345 Phenomenology +hep-ph/0111358 Phenomenology +hep-ph/0111361 Phenomenology +hep-ph/0111374 Phenomenology +hep-ph/0111379 Phenomenology +hep-ph/0111392 Phenomenology +hep-ph/0112015 Phenomenology +hep-ph/0112061 Phenomenology +hep-ph/0112088 Phenomenology +hep-ph/0112113 Phenomenology +hep-ph/0112117 Phenomenology +hep-ph/0112125 Phenomenology +hep-ph/0112137 Phenomenology +hep-ph/0112151 Phenomenology +hep-ph/0112153 Phenomenology +hep-ph/0112170 Phenomenology +hep-ph/0112178 Phenomenology +hep-ph/0112186 Phenomenology +hep-ph/0112195 Phenomenology +hep-ph/0112211 Phenomenology +hep-ph/0112235 Phenomenology +hep-ph/0112245 Phenomenology +hep-ph/0112252 Phenomenology +hep-ph/0112259 Phenomenology +hep-ph/0112267 Phenomenology +hep-ph/0112279 Phenomenology +hep-ph/0112281 Phenomenology +hep-ph/0112290 Phenomenology +hep-ph/0112295 Phenomenology +hep-ph/0112297 Phenomenology +hep-ph/0112303 Phenomenology +hep-ph/0112314 Phenomenology +hep-ph/0112338 Phenomenology +hep-ph/0112352 Phenomenology +hep-ph/0112362 Phenomenology +hep-ph/0201007 Phenomenology +hep-ph/0201015 Phenomenology +hep-ph/0201019 Phenomenology +hep-ph/0201029 Phenomenology +hep-ph/0201043 Phenomenology +hep-ph/0201045 Phenomenology +hep-ph/0201047 Phenomenology +hep-ph/0201050 Phenomenology +hep-ph/0201053 Phenomenology +hep-ph/0201056 Phenomenology +hep-ph/0201089 Phenomenology +hep-ph/0201098 Phenomenology +hep-ph/0201125 Phenomenology +hep-ph/0201127 Phenomenology +hep-ph/0201143 Phenomenology +hep-ph/0201166 Phenomenology +hep-ph/0201184 Phenomenology +hep-ph/0201192 Phenomenology +hep-ph/0201194 Phenomenology +hep-ph/0201200 Phenomenology +hep-ph/0201242 Phenomenology +hep-ph/0201257 Phenomenology +hep-ph/0201274 Phenomenology +hep-ph/0201276 Phenomenology +hep-ph/0201285 Phenomenology +hep-ph/0201288 Phenomenology +hep-ph/0201294 Phenomenology +hep-ph/0201296 Phenomenology +hep-ph/0201304 Phenomenology +hep-ph/0202029 Phenomenology +hep-ph/0202048 Phenomenology +hep-ph/0202053 Phenomenology +hep-ph/0202061 Phenomenology +hep-ph/0202069 Phenomenology +hep-ph/0202071 Phenomenology +hep-ph/0202087 Phenomenology +hep-ph/0202091 Phenomenology +hep-ph/0202103 Phenomenology +hep-ph/0202104 Phenomenology +hep-ph/0202129 Phenomenology +hep-ph/0202139 Phenomenology +hep-ph/0202144 Phenomenology +hep-ph/0202162 Phenomenology +hep-ph/0202164 Phenomenology +hep-ph/0202165 Phenomenology +hep-ph/0202167 Phenomenology +hep-ph/0202175 Phenomenology +hep-ph/0202176 Phenomenology +hep-ph/0202190 Phenomenology +hep-ph/0202195 Phenomenology +hep-ph/0202198 Phenomenology +hep-ph/0202202 Phenomenology +hep-ph/0202207 Phenomenology +hep-ph/0202214 Phenomenology +hep-ph/0202251 Phenomenology +hep-ph/0202268 Phenomenology +hep-ph/0202278 Phenomenology +hep-ph/0203015 Phenomenology +hep-ph/0203069 Phenomenology +hep-ph/0203076 Phenomenology +hep-ph/0203083 Phenomenology +hep-ph/0203085 Phenomenology +hep-ph/0203097 Phenomenology +hep-ph/0203123 Phenomenology +hep-ph/0203129 Phenomenology +hep-ph/0203131 Phenomenology +hep-ph/0203134 Phenomenology +hep-ph/0203143 Phenomenology +hep-ph/0203145 Phenomenology +hep-ph/0203149 Phenomenology +hep-ph/0203152 Phenomenology +hep-ph/0203154 Phenomenology +hep-ph/0203161 Phenomenology +hep-ph/0203181 Phenomenology +hep-ph/0203200 Phenomenology +hep-ph/0203204 Phenomenology +hep-ph/0203206 Phenomenology +hep-ph/0203209 Phenomenology +hep-ph/0203225 Phenomenology +hep-ph/0203229 Phenomenology +hep-ph/0203238 Phenomenology +hep-ph/0203242 Phenomenology +hep-ph/0203255 Phenomenology +hep-ph/0203257 Phenomenology +hep-ph/0203261 Phenomenology +hep-ph/0204004 Phenomenology +hep-ph/0204049 Phenomenology +hep-ph/0204072 Phenomenology +hep-ph/0204080 Phenomenology +hep-ph/0204091 Phenomenology +hep-ph/0204092 Phenomenology +hep-ph/0204103 Phenomenology +hep-ph/0204120 Phenomenology +hep-ph/0204129 Phenomenology +hep-ph/0204135 Phenomenology +hep-ph/0204139 Phenomenology +hep-ph/0204140 Phenomenology +hep-ph/0204147 Phenomenology +hep-ph/0204157 Phenomenology +hep-ph/0204161 Phenomenology +hep-ph/0204173 Phenomenology +hep-ph/0204178 Phenomenology +hep-ph/0204180 Phenomenology +hep-ph/0204186 Phenomenology +hep-ph/0204188 Phenomenology +hep-ph/0204192 Phenomenology +hep-ph/0204202 Phenomenology +hep-ph/0204209 Phenomenology +hep-ph/0204221 Phenomenology +hep-ph/0204227 Phenomenology +hep-ph/0204256 Phenomenology +hep-ph/0204261 Phenomenology +hep-ph/0204279 Phenomenology +hep-ph/0204289 Phenomenology +hep-ph/0204290 Phenomenology +hep-ph/0204300 Phenomenology +hep-ph/0204311 Phenomenology +hep-ph/0204328 Phenomenology +hep-ph/0204339 Phenomenology +hep-ph/0204348 Phenomenology +hep-ph/0205001 Phenomenology +hep-ph/0205013 Phenomenology +hep-ph/0205015 Phenomenology +hep-ph/0205016 Phenomenology +hep-ph/0205064 Phenomenology +hep-ph/0205094 Phenomenology +hep-ph/0205095 Phenomenology +hep-ph/0205104 Phenomenology +hep-ph/0205106 Phenomenology +hep-ph/0205121 Phenomenology +hep-ph/0205125 Phenomenology +hep-ph/0205127 Phenomenology +hep-ph/0205146 Phenomenology +hep-ph/0205153 Phenomenology +hep-ph/0205156 Phenomenology +hep-ph/0205173 Phenomenology +hep-ph/0205195 Phenomenology +hep-ph/0205212 Phenomenology +hep-ph/0205233 Phenomenology +hep-ph/0205235 Phenomenology +hep-ph/0205248 Phenomenology +hep-ph/0205260 Phenomenology +hep-ph/0205273 Phenomenology +hep-ph/0205274 Phenomenology +hep-ph/0205314 Phenomenology +hep-ph/0205332 Phenomenology +hep-ph/0205340 Phenomenology +hep-ph/0205342 Phenomenology +hep-ph/0205345 Phenomenology +hep-ph/0205347 Phenomenology +hep-ph/0205349 Phenomenology +hep-ph/0206015 Phenomenology +hep-ph/0206018 Phenomenology +hep-ph/0206034 Phenomenology +hep-ph/0206038 Phenomenology +hep-ph/0206044 Phenomenology +hep-ph/0206056 Phenomenology +hep-ph/0206060 Phenomenology +hep-ph/0206071 Phenomenology +hep-ph/0206098 Phenomenology +hep-ph/0206104 Phenomenology +hep-ph/0206105 Phenomenology +hep-ph/0206115 Phenomenology +hep-ph/0206122 Phenomenology +hep-ph/0206136 Phenomenology +hep-ph/0206151 Phenomenology +hep-ph/0206154 Phenomenology +hep-ph/0206167 Phenomenology +hep-ph/0206169 Phenomenology +hep-ph/0206170 Phenomenology +hep-ph/0206172 Phenomenology +hep-ph/0206173 Phenomenology +hep-ph/0206194 Phenomenology +hep-ph/0206202 Phenomenology +hep-ph/0206209 Phenomenology +hep-ph/0206214 Phenomenology +hep-ph/0206224 Phenomenology +hep-ph/0206229 Phenomenology +hep-ph/0206234 Phenomenology +hep-ph/0206238 Phenomenology +hep-ph/0206243 Phenomenology +hep-ph/0206275 Phenomenology +hep-ph/0206284 Phenomenology +hep-ph/0206304 Phenomenology +hep-ph/0206307 Phenomenology +hep-ph/0207024 Phenomenology +hep-ph/0207035 Phenomenology +hep-ph/0207050 Phenomenology +hep-ph/0207055 Phenomenology +hep-ph/0207060 Phenomenology +hep-ph/0207065 Phenomenology +hep-ph/0207092 Phenomenology +hep-ph/0207099 Phenomenology +hep-ph/0207114 Phenomenology +hep-ph/0207123 Phenomenology +hep-ph/0207139 Phenomenology +hep-ph/0207155 Phenomenology +hep-ph/0207186 Phenomenology +hep-ph/0207217 Phenomenology +hep-ph/0207236 Phenomenology +hep-ph/0207237 Phenomenology +hep-ph/0207243 Phenomenology +hep-ph/0207280 Phenomenology +hep-ph/0207287 Phenomenology +hep-ph/0207293 Phenomenology +hep-ph/0207311 Phenomenology +hep-ph/0207326 Phenomenology +hep-ph/0207342 Phenomenology +hep-ph/0207348 Phenomenology +hep-ph/0207369 Phenomenology +hep-ph/0207372 Phenomenology +hep-ph/0208002 Phenomenology +hep-ph/0208010 Phenomenology +hep-ph/0208017 Phenomenology +hep-ph/0208031 Phenomenology +hep-ph/0208034 Phenomenology +hep-ph/0208035 Phenomenology +hep-ph/0208043 Phenomenology +hep-ph/0208047 Phenomenology +hep-ph/0208051 Phenomenology +hep-ph/0208062 Phenomenology +hep-ph/0208075 Phenomenology +hep-ph/0208101 Phenomenology +hep-ph/0208113 Phenomenology +hep-ph/0208114 Phenomenology +hep-ph/0208119 Phenomenology +hep-ph/0208120 Phenomenology +hep-ph/0208132 Phenomenology +hep-ph/0208142 Phenomenology +hep-ph/0208155 Phenomenology +hep-ph/0208171 Phenomenology +hep-ph/0208177 Phenomenology +hep-ph/0208199 Phenomenology +hep-ph/0208201 Phenomenology +hep-ph/0208209 Phenomenology +hep-ph/0208223 Phenomenology +hep-ph/0208247 Phenomenology +hep-ph/0208262 Phenomenology +hep-ph/0208271 Phenomenology +hep-ph/0209006 Phenomenology +hep-ph/0209010 Phenomenology +hep-ph/0209024 Phenomenology +hep-ph/0209030 Phenomenology +hep-ph/0209032 Phenomenology +hep-ph/0209040 Phenomenology +hep-ph/0209045 Phenomenology +hep-ph/0209059 Phenomenology +hep-ph/0209077 Phenomenology +hep-ph/0209079 Phenomenology +hep-ph/0209080 Phenomenology +hep-ph/0209098 Phenomenology +hep-ph/0209142 Phenomenology +hep-ph/0209147 Phenomenology +hep-ph/0209153 Phenomenology +hep-ph/0209158 Phenomenology +hep-ph/0209165 Phenomenology +hep-ph/0209179 Phenomenology +hep-ph/0209187 Phenomenology +hep-ph/0209192 Phenomenology +hep-ph/0209231 Phenomenology +hep-ph/0209240 Phenomenology +hep-ph/0209259 Phenomenology +hep-ph/0209262 Phenomenology +hep-ph/0209278 Phenomenology +hep-ph/0209316 Phenomenology +hep-ph/0209321 Phenomenology +hep-ph/0209325 Phenomenology +hep-ph/0209330 Phenomenology +hep-ph/0209337 Phenomenology +hep-ph/0209338 Phenomenology +hep-ph/0209347 Phenomenology +hep-ph/0210027 Phenomenology +hep-ph/0210043 Phenomenology +hep-ph/0210065 Phenomenology +hep-ph/0210078 Phenomenology +hep-ph/0210081 Phenomenology +hep-ph/0210082 Phenomenology +hep-ph/0210101 Phenomenology +hep-ph/0210132 Phenomenology +hep-ph/0210133 Phenomenology +hep-ph/0210135 Phenomenology +hep-ph/0210137 Phenomenology +hep-ph/0210148 Phenomenology +hep-ph/0210152 Phenomenology +hep-ph/0210211 Phenomenology +hep-ph/0210247 Phenomenology +hep-ph/0210257 Phenomenology +hep-ph/0210271 Phenomenology +hep-ph/0210306 Phenomenology +hep-ph/0210311 Phenomenology +hep-ph/0210313 Phenomenology +hep-ph/0210322 Phenomenology +hep-ph/0210334 Phenomenology +hep-ph/0210431 Phenomenology +hep-ph/0210436 Phenomenology +hep-ph/0211001 Phenomenology +hep-ph/0211026 Phenomenology +hep-ph/0211030 Phenomenology +hep-ph/0211052 Phenomenology +hep-ph/0211060 Phenomenology +hep-ph/0211065 Phenomenology +hep-ph/0211072 Phenomenology +hep-ph/0211098 Phenomenology +hep-ph/0211101 Phenomenology +hep-ph/0211119 Phenomenology +hep-ph/0211185 Phenomenology +hep-ph/0211196 Phenomenology +hep-ph/0211222 Phenomenology +hep-ph/0211244 Phenomenology +hep-ph/0211266 Phenomenology +hep-ph/0211275 Phenomenology +hep-ph/0211287 Phenomenology +hep-ph/0211304 Phenomenology +hep-ph/0211319 Phenomenology +hep-ph/0211327 Phenomenology +hep-ph/0211331 Phenomenology +hep-ph/0211359 Phenomenology +hep-ph/0211398 Phenomenology +hep-ph/0211399 Phenomenology +hep-ph/0211411 Phenomenology +hep-ph/0211412 Phenomenology +hep-ph/0211413 Phenomenology +hep-ph/0211438 Phenomenology +hep-ph/0211447 Phenomenology +hep-ph/0211462 Phenomenology +hep-ph/0211463 Phenomenology +hep-ph/0211465 Phenomenology +hep-ph/0211467 Phenomenology +hep-ph/0212047 Phenomenology +hep-ph/0212072 Phenomenology +hep-ph/0212078 Phenomenology +hep-ph/0212081 Phenomenology +hep-ph/0212082 Phenomenology +hep-ph/0212083 Phenomenology +hep-ph/0212090 Phenomenology +hep-ph/0212100 Phenomenology +hep-ph/0212114 Phenomenology +hep-ph/0212118 Phenomenology +hep-ph/0212121 Phenomenology +hep-ph/0212143 Phenomenology +hep-ph/0212153 Phenomenology +hep-ph/0212159 Phenomenology +hep-ph/0212173 Phenomenology +hep-ph/0212181 Phenomenology +hep-ph/0212193 Phenomenology +hep-ph/0212199 Phenomenology +hep-ph/0212201 Phenomenology +hep-ph/0212226 Phenomenology +hep-ph/0212259 Phenomenology +hep-ph/0212269 Phenomenology +hep-ph/0212279 Phenomenology +hep-ph/0212297 Phenomenology +hep-ph/0212302 Phenomenology +hep-ph/0212303 Phenomenology +hep-ph/0212306 Phenomenology +hep-ph/0212321 Phenomenology +hep-ph/0212361 Phenomenology +hep-ph/0212379 Phenomenology +hep-ph/0212402 Phenomenology +hep-ph/0212404 Phenomenology +hep-ph/0301009 Phenomenology +hep-ph/0301018 Phenomenology +hep-ph/0301039 Phenomenology +hep-ph/0301042 Phenomenology +hep-ph/0301052 Phenomenology +hep-ph/0301053 Phenomenology +hep-ph/0301064 Phenomenology +hep-ph/0301072 Phenomenology +hep-ph/0301090 Phenomenology +hep-ph/0301092 Phenomenology +hep-ph/0301094 Phenomenology +hep-ph/0301095 Phenomenology +hep-ph/0301096 Phenomenology +hep-ph/0301101 Phenomenology +hep-ph/0301116 Phenomenology +hep-ph/0301123 Phenomenology +hep-ph/0301149 Phenomenology +hep-ph/0301170 Phenomenology +hep-ph/0301173 Phenomenology +hep-ph/0301183 Phenomenology +hep-ph/0301189 Phenomenology +hep-ph/0301192 Phenomenology +hep-ph/0301211 Phenomenology +hep-ph/0301212 Phenomenology +hep-ph/0301213 Phenomenology +hep-ph/0301224 Phenomenology +hep-ph/0301232 Phenomenology +hep-ph/0301241 Phenomenology +hep-ph/0301244 Phenomenology +hep-ph/0301248 Phenomenology +hep-ph/0301262 Phenomenology +hep-ph/0301267 Phenomenology +hep-ph/0301275 Phenomenology +hep-ph/0302003 Phenomenology +hep-ph/0302013 Phenomenology +hep-ph/0302022 Phenomenology +hep-ph/0302032 Phenomenology +hep-ph/0302038 Phenomenology +hep-ph/0302040 Phenomenology +hep-ph/0302041 Phenomenology +hep-ph/0302051 Phenomenology +hep-ph/0302059 Phenomenology +hep-ph/0302066 Phenomenology +hep-ph/0302084 Phenomenology +hep-ph/0302094 Phenomenology +hep-ph/0302098 Phenomenology +hep-ph/0302117 Phenomenology +hep-ph/0302122 Phenomenology +hep-ph/0302128 Phenomenology +hep-ph/0302131 Phenomenology +hep-ph/0302132 Phenomenology +hep-ph/0302133 Phenomenology +hep-ph/0302134 Phenomenology +hep-ph/0302144 Phenomenology +hep-ph/0302151 Phenomenology +hep-ph/0302160 Phenomenology +hep-ph/0302162 Phenomenology +hep-ph/0302198 Phenomenology +hep-ph/0302200 Phenomenology +hep-ph/0302212 Phenomenology +hep-ph/0302230 Phenomenology +hep-ph/0302238 Phenomenology +hep-ph/0302239 Phenomenology +hep-ph/0302242 Phenomenology +hep-ph/0302248 Phenomenology +hep-ph/0302252 Phenomenology +hep-ph/0302260 Phenomenology +hep-ph/0302272 Phenomenology +hep-ph/0303010 Phenomenology +hep-ph/0303028 Phenomenology +hep-ph/0303039 Phenomenology +hep-ph/0303043 Phenomenology +hep-ph/0303048 Phenomenology +hep-ph/0303054 Phenomenology +hep-ph/0303055 Phenomenology +hep-ph/0303064 Phenomenology +hep-ph/0303065 Phenomenology +hep-ph/0303067 Phenomenology +hep-ph/0303072 Phenomenology +hep-ph/0303079 Phenomenology +hep-ph/0303081 Phenomenology +hep-ph/0303082 Phenomenology +hep-ph/0303088 Phenomenology +hep-ph/0303114 Phenomenology +hep-ph/0303116 Phenomenology +hep-ph/0303118 Phenomenology +hep-ph/0303130 Phenomenology +hep-ph/0303138 Phenomenology +hep-ph/0303141 Phenomenology +hep-ph/0303158 Phenomenology +hep-ph/0303164 Phenomenology +hep-ph/0303180 Phenomenology +hep-ph/0303183 Phenomenology +hep-ph/0303190 Phenomenology +hep-ph/0303200 Phenomenology +hep-ph/0303201 Phenomenology +hep-ph/0303206 Phenomenology +hep-ph/0303209 Phenomenology +hep-ph/0303211 Phenomenology +hep-ph/0303229 Phenomenology +hep-ph/0303232 Phenomenology +hep-ph/0303233 Phenomenology +hep-ph/0303246 Phenomenology +hep-ph/0303251 Phenomenology +hep-ph/0303253 Phenomenology +hep-ph/0304001 Phenomenology +hep-ph/0304002 Phenomenology +hep-ph/0304005 Phenomenology +hep-ph/0304020 Phenomenology +hep-ph/0304030 Phenomenology +hep-ph/0304046 Phenomenology +hep-ph/0304061 Phenomenology +hep-ph/0304074 Phenomenology +hep-ph/0304080 Phenomenology +hep-ph/0304081 Phenomenology +hep-ph/0304086 Phenomenology +hep-ph/0304092 Phenomenology +hep-ph/0304095 Phenomenology +hep-ph/0304105 Phenomenology +hep-ph/0304128 Phenomenology +hep-ph/0304161 Phenomenology +hep-ph/0304180 Phenomenology +hep-ph/0304193 Phenomenology +hep-ph/0304220 Phenomenology +hep-ph/0304226 Phenomenology +hep-ph/0304229 Phenomenology +hep-ph/0304231 Phenomenology +hep-ph/0304248 Phenomenology +hep-ph/0304249 Phenomenology +hep-ph/0304260 Phenomenology +hep-ph/0304261 Phenomenology +hep-ph/0304264 Phenomenology +hep-ph/0304269 Phenomenology +hep-ph/0304272 Phenomenology +hep-ph/0304277 Phenomenology +hep-ph/0304288 Phenomenology +hep-ph/0304300 Phenomenology +hep-ph/0305005 Phenomenology +hep-ph/0305012 Phenomenology +hep-ph/0305022 Phenomenology +hep-ph/0305025 Phenomenology +hep-ph/0305035 Phenomenology +hep-ph/0305038 Phenomenology +hep-ph/0305049 Phenomenology +hep-ph/0305060 Phenomenology +hep-ph/0305069 Phenomenology +hep-ph/0305075 Phenomenology +hep-ph/0305087 Phenomenology +hep-ph/0305089 Phenomenology +hep-ph/0305094 Phenomenology +hep-ph/0305102 Phenomenology +hep-ph/0305108 Phenomenology +hep-ph/0305111 Phenomenology +hep-ph/0305127 Phenomenology +hep-ph/0305152 Phenomenology +hep-ph/0305156 Phenomenology +hep-ph/0305158 Phenomenology +hep-ph/0305183 Phenomenology +hep-ph/0305188 Phenomenology +hep-ph/0305192 Phenomenology +hep-ph/0305209 Phenomenology +hep-ph/0305212 Phenomenology +hep-ph/0305213 Phenomenology +hep-ph/0305214 Phenomenology +hep-ph/0305219 Phenomenology +hep-ph/0305230 Phenomenology +hep-ph/0305234 Phenomenology +hep-ph/0305241 Phenomenology +hep-ph/0305275 Phenomenology +hep-ph/0305296 Phenomenology +hep-ph/0305300 Phenomenology +hep-ph/0305306 Phenomenology +hep-ph/0305314 Phenomenology +hep-ph/0306020 Phenomenology +hep-ph/0306024 Phenomenology +hep-ph/0306037 Phenomenology +hep-ph/0306039 Phenomenology +hep-ph/0306051 Phenomenology +hep-ph/0306054 Phenomenology +hep-ph/0306060 Phenomenology +hep-ph/0306068 Phenomenology +hep-ph/0306079 Phenomenology +hep-ph/0306081 Phenomenology +hep-ph/0306097 Phenomenology +hep-ph/0306109 Phenomenology +hep-ph/0306110 Phenomenology +hep-ph/0306135 Phenomenology +hep-ph/0306139 Phenomenology +hep-ph/0306142 Phenomenology +hep-ph/0306155 Phenomenology +hep-ph/0306156 Phenomenology +hep-ph/0306174 Phenomenology +hep-ph/0306185 Phenomenology +hep-ph/0306192 Phenomenology +hep-ph/0306194 Phenomenology +hep-ph/0306195 Phenomenology +hep-ph/0306201 Phenomenology +hep-ph/0306204 Phenomenology +hep-ph/0306245 Phenomenology +hep-ph/0306249 Phenomenology +hep-ph/0306279 Phenomenology +hep-ph/0306301 Phenomenology +hep-ph/0307003 Phenomenology +hep-ph/0307029 Phenomenology +hep-ph/0307038 Phenomenology +hep-ph/0307039 Phenomenology +hep-ph/0307042 Phenomenology +hep-ph/0307054 Phenomenology +hep-ph/0307058 Phenomenology +hep-ph/0307062 Phenomenology +hep-ph/0307066 Phenomenology +hep-ph/0307075 Phenomenology +hep-ph/0307081 Phenomenology +hep-ph/0307084 Phenomenology +hep-ph/0307099 Phenomenology +hep-ph/0307106 Phenomenology +hep-ph/0307111 Phenomenology +hep-ph/0307128 Phenomenology +hep-ph/0307133 Phenomenology +hep-ph/0307134 Phenomenology +hep-ph/0307143 Phenomenology +hep-ph/0307148 Phenomenology +hep-ph/0307152 Phenomenology +hep-ph/0307181 Phenomenology +hep-ph/0307185 Phenomenology +hep-ph/0307193 Phenomenology +hep-ph/0307224 Phenomenology +hep-ph/0307240 Phenomenology +hep-ph/0307244 Phenomenology +hep-ph/0307246 Phenomenology +hep-ph/0307266 Phenomenology +hep-ph/0307268 Phenomenology +hep-ph/0307284 Phenomenology +hep-ph/0307296 Phenomenology +hep-ph/0307297 Phenomenology +hep-ph/0307298 Phenomenology +hep-ph/0307306 Phenomenology +hep-ph/0307337 Phenomenology +hep-ph/0307344 Phenomenology +hep-ph/0307375 Phenomenology +hep-ph/0307377 Phenomenology +hep-ph/0307381 Phenomenology +hep-ph/0307382 Phenomenology +hep-ph/0308003 Phenomenology +hep-ph/0308015 Phenomenology +hep-ph/0308051 Phenomenology +hep-ph/0308053 Phenomenology +hep-ph/0308063 Phenomenology +hep-ph/0308075 Phenomenology +hep-ph/0308078 Phenomenology +hep-ph/0308080 Phenomenology +hep-ph/0308090 Phenomenology +hep-ph/0308098 Phenomenology +hep-ph/0308099 Phenomenology +hep-ph/0308105 Phenomenology +hep-ph/0308106 Phenomenology +hep-ph/0308129 Phenomenology +hep-ph/0308135 Phenomenology +hep-ph/0308152 Phenomenology +hep-ph/0308173 Phenomenology +hep-ph/0308179 Phenomenology +hep-ph/0308192 Phenomenology +hep-ph/0308195 Phenomenology +hep-ph/0308197 Phenomenology +hep-ph/0308205 Phenomenology +hep-ph/0308213 Phenomenology +hep-ph/0308228 Phenomenology +hep-ph/0308233 Phenomenology +hep-ph/0308240 Phenomenology +hep-ph/0308244 Phenomenology +hep-ph/0308254 Phenomenology +hep-ph/0308261 Phenomenology +hep-ph/0309015 Phenomenology +hep-ph/0309023 Phenomenology +hep-ph/0309030 Phenomenology +hep-ph/0309038 Phenomenology +hep-ph/0309042 Phenomenology +hep-ph/0309050 Phenomenology +hep-ph/0309058 Phenomenology +hep-ph/0309067 Phenomenology +hep-ph/0309077 Phenomenology +hep-ph/0309078 Phenomenology +hep-ph/0309080 Phenomenology +hep-ph/0309093 Phenomenology +hep-ph/0309106 Phenomenology +hep-ph/0309112 Phenomenology +hep-ph/0309129 Phenomenology +hep-ph/0309131 Phenomenology +hep-ph/0309134 Phenomenology +hep-ph/0309173 Phenomenology +hep-ph/0309177 Phenomenology +hep-ph/0309188 Phenomenology +hep-ph/0309200 Phenomenology +hep-ph/0309210 Phenomenology +hep-ph/0309230 Phenomenology +hep-ph/0309249 Phenomenology +hep-ph/0309253 Phenomenology +hep-ph/0309262 Phenomenology +hep-ph/0309264 Phenomenology +hep-ph/0309267 Phenomenology +hep-ph/0309268 Phenomenology +hep-ph/0309273 Phenomenology +hep-ph/0309274 Phenomenology +hep-ph/0309283 Phenomenology +hep-ph/0309286 Phenomenology +hep-ph/0309292 Phenomenology +hep-ph/0309294 Phenomenology +hep-ph/0309296 Phenomenology +hep-ph/0309307 Phenomenology +hep-ph/0309330 Phenomenology +hep-ph/0310003 Phenomenology +hep-ph/0310027 Phenomenology +hep-ph/0310032 Phenomenology +hep-ph/0310049 Phenomenology +hep-ph/0310052 Phenomenology +hep-ph/0310053 Phenomenology +hep-ph/0310059 Phenomenology +hep-ph/0310063 Phenomenology +hep-ph/0310090 Phenomenology +hep-ph/0310119 Phenomenology +hep-ph/0310121 Phenomenology +hep-ph/0310122 Phenomenology +hep-ph/0310141 Phenomenology +hep-ph/0310154 Phenomenology +hep-ph/0310160 Phenomenology +hep-ph/0310181 Phenomenology +hep-ph/0310183 Phenomenology +hep-ph/0310184 Phenomenology +hep-ph/0310191 Phenomenology +hep-ph/0310216 Phenomenology +hep-ph/0310218 Phenomenology +hep-ph/0310219 Phenomenology +hep-ph/0310226 Phenomenology +hep-ph/0310229 Phenomenology +hep-ph/0310258 Phenomenology +hep-ph/0310259 Phenomenology +hep-ph/0310261 Phenomenology +hep-ph/0310272 Phenomenology +hep-ph/0310283 Phenomenology +hep-ph/0310285 Phenomenology +hep-ph/0310293 Phenomenology +hep-ph/0310308 Phenomenology +hep-ph/0310338 Phenomenology +hep-ph/0310357 Phenomenology +hep-ph/0311001 Phenomenology +hep-ph/0311015 Phenomenology +hep-ph/0311023 Phenomenology +hep-ph/0311029 Phenomenology +hep-ph/0311032 Phenomenology +hep-ph/0311046 Phenomenology +hep-ph/0311056 Phenomenology +hep-ph/0311067 Phenomenology +hep-ph/0311076 Phenomenology +hep-ph/0311085 Phenomenology +hep-ph/0311087 Phenomenology +hep-ph/0311088 Phenomenology +hep-ph/0311089 Phenomenology +hep-ph/0311103 Phenomenology +hep-ph/0311106 Phenomenology +hep-ph/0311110 Phenomenology +hep-ph/0311112 Phenomenology +hep-ph/0311129 Phenomenology +hep-ph/0311133 Phenomenology +hep-ph/0311147 Phenomenology +hep-ph/0311162 Phenomenology +hep-ph/0311167 Phenomenology +hep-ph/0311171 Phenomenology +hep-ph/0311199 Phenomenology +hep-ph/0311215 Phenomenology +hep-ph/0311224 Phenomenology +hep-ph/0311227 Phenomenology +hep-ph/0311229 Phenomenology +hep-ph/0311231 Phenomenology +hep-ph/0311238 Phenomenology +hep-ph/0311245 Phenomenology +hep-ph/0311264 Phenomenology +hep-ph/0311276 Phenomenology +hep-ph/0311277 Phenomenology +hep-ph/0311278 Phenomenology +hep-ph/0311284 Phenomenology +hep-ph/0311287 Phenomenology +hep-ph/0311296 Phenomenology +hep-ph/0311298 Phenomenology +hep-ph/0311311 Phenomenology +hep-ph/0311314 Phenomenology +hep-ph/0311367 Phenomenology +hep-ph/0312024 Phenomenology +hep-ph/0312057 Phenomenology +hep-ph/0312065 Phenomenology +hep-ph/0312104 Phenomenology +hep-ph/0312106 Phenomenology +hep-ph/0312112 Phenomenology +hep-ph/0312113 Phenomenology +hep-ph/0312133 Phenomenology +hep-ph/0312172 Phenomenology +hep-ph/0312183 Phenomenology +hep-ph/0312205 Phenomenology +hep-ph/0312213 Phenomenology +hep-ph/0312225 Phenomenology +hep-ph/0312231 Phenomenology +hep-ph/0312238 Phenomenology +hep-ph/0312250 Phenomenology +hep-ph/0312260 Phenomenology +hep-ph/0312261 Phenomenology +hep-ph/0312262 Phenomenology +hep-ph/0312312 Phenomenology +hep-ph/0312320 Phenomenology +hep-ph/0312323 Phenomenology +hep-ph/0312347 Phenomenology +hep-ph/0312354 Phenomenology +hep-ph/0312355 Phenomenology +hep-ph/0312360 Phenomenology +hep-ph/0312390 Phenomenology +hep-ph/0401016 Phenomenology +hep-ph/0401020 Phenomenology +hep-ph/0401032 Phenomenology +hep-ph/0401040 Phenomenology +hep-ph/0401057 Phenomenology +hep-ph/0401065 Phenomenology +hep-ph/0401066 Phenomenology +hep-ph/0401086 Phenomenology +hep-ph/0401106 Phenomenology +hep-ph/0401125 Phenomenology +hep-ph/0401144 Phenomenology +hep-ph/0401164 Phenomenology +hep-ph/0401173 Phenomenology +hep-ph/0401176 Phenomenology +hep-ph/0401183 Phenomenology +hep-ph/0401190 Phenomenology +hep-ph/0401195 Phenomenology +hep-ph/0401210 Phenomenology +hep-ph/0401213 Phenomenology +hep-ph/0401215 Phenomenology +hep-ph/0401218 Phenomenology +hep-ph/0401221 Phenomenology +hep-ph/0401246 Phenomenology +hep-ph/0401247 Phenomenology +hep-ph/0402023 Phenomenology +hep-ph/0402028 Phenomenology +hep-ph/0402049 Phenomenology +hep-ph/0402054 Phenomenology +hep-ph/0402070 Phenomenology +hep-ph/0402082 Phenomenology +hep-ph/0402104 Phenomenology +hep-ph/0402109 Phenomenology +hep-ph/0402130 Phenomenology +hep-ph/0402139 Phenomenology +hep-ph/0402150 Phenomenology +hep-ph/0402158 Phenomenology +hep-ph/0402169 Phenomenology +hep-ph/0402171 Phenomenology +hep-ph/0402173 Phenomenology +hep-ph/0402177 Phenomenology +hep-ph/0402193 Phenomenology +hep-ph/0402206 Phenomenology +hep-ph/0402227 Phenomenology +hep-ph/0402230 Phenomenology +hep-ph/0402232 Phenomenology +hep-ph/0402237 Phenomenology +hep-ph/0402247 Phenomenology +hep-ph/0402248 Phenomenology +hep-ph/0402266 Phenomenology +hep-ph/0402267 Phenomenology +hep-ph/0402273 Phenomenology +hep-ph/0402278 Phenomenology +hep-ph/0402285 Phenomenology +hep-ph/0402296 Phenomenology +hep-ph/0403017 Phenomenology +hep-ph/0403018 Phenomenology +hep-ph/0403027 Phenomenology +hep-ph/0403042 Phenomenology +hep-ph/0403056 Phenomenology +hep-ph/0403057 Phenomenology +hep-ph/0403065 Phenomenology +hep-ph/0403072 Phenomenology +hep-ph/0403082 Phenomenology +hep-ph/0403083 Phenomenology +hep-ph/0403086 Phenomenology +hep-ph/0403111 Phenomenology +hep-ph/0403113 Phenomenology +hep-ph/0403119 Phenomenology +hep-ph/0403123 Phenomenology +hep-ph/0403138 Phenomenology +hep-ph/0403155 Phenomenology +hep-ph/0403157 Phenomenology +hep-ph/0403158 Phenomenology +hep-ph/0403166 Phenomenology +hep-ph/0403168 Phenomenology +hep-ph/0403188 Phenomenology +hep-ph/0403192 Phenomenology +hep-ph/0403206 Phenomenology +hep-ph/0403221 Phenomenology +hep-ph/0403224 Phenomenology +hep-ph/0403247 Phenomenology +hep-ph/0403277 Phenomenology +hep-ph/0403286 Phenomenology +hep-ph/0403294 Phenomenology +hep-ph/0403295 Phenomenology +hep-ph/0403296 Phenomenology +hep-ph/0404010 Phenomenology +hep-ph/0404045 Phenomenology +hep-ph/0404046 Phenomenology +hep-ph/0404049 Phenomenology +hep-ph/0404052 Phenomenology +hep-ph/0404066 Phenomenology +hep-ph/0404085 Phenomenology +hep-ph/0404088 Phenomenology +hep-ph/0404093 Phenomenology +hep-ph/0404099 Phenomenology +hep-ph/0404110 Phenomenology +hep-ph/0404113 Phenomenology +hep-ph/0404121 Phenomenology +hep-ph/0404122 Phenomenology +hep-ph/0404127 Phenomenology +hep-ph/0404132 Phenomenology +hep-ph/0404135 Phenomenology +hep-ph/0404139 Phenomenology +hep-ph/0404151 Phenomenology +hep-ph/0404161 Phenomenology +hep-ph/0404162 Phenomenology +hep-ph/0404167 Phenomenology +hep-ph/0404175 Phenomenology +hep-ph/0404177 Phenomenology +hep-ph/0404192 Phenomenology +hep-ph/0404193 Phenomenology +hep-ph/0404195 Phenomenology +hep-ph/0404219 Phenomenology +hep-ph/0404231 Phenomenology +hep-ph/0404243 Phenomenology +hep-ph/0404254 Phenomenology +hep-ph/0405001 Phenomenology +hep-ph/0405020 Phenomenology +hep-ph/0405023 Phenomenology +hep-ph/0405030 Phenomenology +hep-ph/0405054 Phenomenology +hep-ph/0405057 Phenomenology +hep-ph/0405059 Phenomenology +hep-ph/0405069 Phenomenology +hep-ph/0405075 Phenomenology +hep-ph/0405088 Phenomenology +hep-ph/0405099 Phenomenology +hep-ph/0405110 Phenomenology +hep-ph/0405126 Phenomenology +hep-ph/0405141 Phenomenology +hep-ph/0405155 Phenomenology +hep-ph/0405165 Phenomenology +hep-ph/0405167 Phenomenology +hep-ph/0405169 Phenomenology +hep-ph/0405170 Phenomenology +hep-ph/0405181 Phenomenology +hep-ph/0405219 Phenomenology +hep-ph/0405251 Phenomenology +hep-ph/0405253 Phenomenology +hep-ph/0405269 Phenomenology +hep-ph/0405273 Phenomenology +hep-ph/0405286 Phenomenology +hep-ph/0405292 Phenomenology +hep-ph/0405294 Phenomenology +hep-ph/0406019 Phenomenology +hep-ph/0406033 Phenomenology +hep-ph/0406034 Phenomenology +hep-ph/0406036 Phenomenology +hep-ph/0406039 Phenomenology +hep-ph/0406044 Phenomenology +hep-ph/0406064 Phenomenology +hep-ph/0406068 Phenomenology +hep-ph/0406075 Phenomenology +hep-ph/0406080 Phenomenology +hep-ph/0406098 Phenomenology +hep-ph/0406117 Phenomenology +hep-ph/0406120 Phenomenology +hep-ph/0406127 Phenomenology +hep-ph/0406128 Phenomenology +hep-ph/0406132 Phenomenology +hep-ph/0406136 Phenomenology +hep-ph/0406137 Phenomenology +hep-ph/0406143 Phenomenology +hep-ph/0406144 Phenomenology +hep-ph/0406145 Phenomenology +hep-ph/0406154 Phenomenology +hep-ph/0406155 Phenomenology +hep-ph/0406166 Phenomenology +hep-ph/0406184 Phenomenology +hep-ph/0406196 Phenomenology +hep-ph/0406201 Phenomenology +hep-ph/0406205 Phenomenology +hep-ph/0406207 Phenomenology +hep-ph/0406227 Phenomenology +hep-ph/0406242 Phenomenology +hep-ph/0406252 Phenomenology +hep-ph/0406255 Phenomenology +hep-ph/0406268 Phenomenology +hep-ph/0406271 Phenomenology +hep-ph/0406286 Phenomenology +hep-ph/0406292 Phenomenology +hep-ph/0406293 Phenomenology +hep-ph/0406301 Phenomenology +hep-ph/0406305 Phenomenology +hep-ph/0406312 Phenomenology +hep-ph/0406319 Phenomenology +hep-ph/0406323 Phenomenology +hep-ph/0406328 Phenomenology +hep-ph/0406335 Phenomenology +hep-ph/0406339 Phenomenology +hep-ph/0407005 Phenomenology +hep-ph/0407007 Phenomenology +hep-ph/0407011 Phenomenology +hep-ph/0407013 Phenomenology +hep-ph/0407017 Phenomenology +hep-ph/0407018 Phenomenology +hep-ph/0407023 Phenomenology +hep-ph/0407025 Phenomenology +hep-ph/0407036 Phenomenology +hep-ph/0407037 Phenomenology +hep-ph/0407043 Phenomenology +hep-ph/0407059 Phenomenology +hep-ph/0407062 Phenomenology +hep-ph/0407063 Phenomenology +hep-ph/0407070 Phenomenology +hep-ph/0407086 Phenomenology +hep-ph/0407091 Phenomenology +hep-ph/0407104 Phenomenology +hep-ph/0407119 Phenomenology +hep-ph/0407120 Phenomenology +hep-ph/0407157 Phenomenology +hep-ph/0407161 Phenomenology +hep-ph/0407165 Phenomenology +hep-ph/0407178 Phenomenology +hep-ph/0407185 Phenomenology +hep-ph/0407218 Phenomenology +hep-ph/0407222 Phenomenology +hep-ph/0407223 Phenomenology +hep-ph/0407227 Phenomenology +hep-ph/0407236 Phenomenology +hep-ph/0407240 Phenomenology +hep-ph/0407248 Phenomenology +hep-ph/0407250 Phenomenology +hep-ph/0407261 Phenomenology +hep-ph/0407281 Phenomenology +hep-ph/0407287 Phenomenology +hep-ph/0407294 Phenomenology +hep-ph/0407317 Phenomenology +hep-ph/0407325 Phenomenology +hep-ph/0407326 Phenomenology +hep-ph/0407342 Phenomenology +hep-ph/0407343 Phenomenology +hep-ph/0407350 Phenomenology +hep-ph/0408002 Phenomenology +hep-ph/0408044 Phenomenology +hep-ph/0408064 Phenomenology +hep-ph/0408068 Phenomenology +hep-ph/0408070 Phenomenology +hep-ph/0408072 Phenomenology +hep-ph/0408085 Phenomenology +hep-ph/0408089 Phenomenology +hep-ph/0408098 Phenomenology +hep-ph/0408102 Phenomenology +hep-ph/0408104 Phenomenology +hep-ph/0408117 Phenomenology +hep-ph/0408124 Phenomenology +hep-ph/0408134 Phenomenology +hep-ph/0408141 Phenomenology +hep-ph/0408154 Phenomenology +hep-ph/0408158 Phenomenology +hep-ph/0408170 Phenomenology +hep-ph/0408176 Phenomenology +hep-ph/0408187 Phenomenology +hep-ph/0408192 Phenomenology +hep-ph/0408204 Phenomenology +hep-ph/0408212 Phenomenology +hep-ph/0408230 Phenomenology +hep-ph/0408234 Phenomenology +hep-ph/0408239 Phenomenology +hep-ph/0408254 Phenomenology +hep-ph/0408268 Phenomenology +hep-ph/0408281 Phenomenology +hep-ph/0408284 Phenomenology +hep-ph/0408291 Phenomenology +hep-ph/0408306 Phenomenology +hep-ph/0408321 Phenomenology +hep-ph/0408323 Phenomenology +hep-ph/0408333 Phenomenology +hep-ph/0408334 Phenomenology +hep-ph/0408337 Phenomenology +hep-ph/0408344 Phenomenology +hep-ph/0408355 Phenomenology +hep-ph/0408362 Phenomenology +hep-ph/0409010 Phenomenology +hep-ph/0409051 Phenomenology +hep-ph/0409061 Phenomenology +hep-ph/0409064 Phenomenology +hep-ph/0409071 Phenomenology +hep-ph/0409095 Phenomenology +hep-ph/0409103 Phenomenology +hep-ph/0409121 Phenomenology +hep-ph/0409135 Phenomenology +hep-ph/0409177 Phenomenology +hep-ph/0409185 Phenomenology +hep-ph/0409190 Phenomenology +hep-ph/0409214 Phenomenology +hep-ph/0409221 Phenomenology +hep-ph/0409225 Phenomenology +hep-ph/0409240 Phenomenology +hep-ph/0409247 Phenomenology +hep-ph/0409248 Phenomenology +hep-ph/0409273 Phenomenology +hep-ph/0409302 Phenomenology +hep-ph/0409312 Phenomenology +hep-ph/0409334 Phenomenology +hep-ph/0409361 Phenomenology +hep-ph/0410006 Phenomenology +hep-ph/0410017 Phenomenology +hep-ph/0410047 Phenomenology +hep-ph/0410080 Phenomenology +hep-ph/0410089 Phenomenology +hep-ph/0410091 Phenomenology +hep-ph/0410109 Phenomenology +hep-ph/0410110 Phenomenology +hep-ph/0410152 Phenomenology +hep-ph/0410154 Phenomenology +hep-ph/0410155 Phenomenology +hep-ph/0410168 Phenomenology +hep-ph/0410187 Phenomenology +hep-ph/0410196 Phenomenology +hep-ph/0410198 Phenomenology +hep-ph/0410203 Phenomenology +hep-ph/0410204 Phenomenology +hep-ph/0410206 Phenomenology +hep-ph/0410235 Phenomenology +hep-ph/0410250 Phenomenology +hep-ph/0410261 Phenomenology +hep-ph/0410264 Phenomenology +hep-ph/0410265 Phenomenology +hep-ph/0410283 Phenomenology +hep-ph/0410288 Phenomenology +hep-ph/0410298 Phenomenology +hep-ph/0410300 Phenomenology +hep-ph/0410317 Phenomenology +hep-ph/0410334 Phenomenology +hep-ph/0410337 Phenomenology +hep-ph/0410340 Phenomenology +hep-ph/0410344 Phenomenology +hep-ph/0410352 Phenomenology +hep-ph/0410373 Phenomenology +hep-ph/0410375 Phenomenology +hep-ph/0410381 Phenomenology +hep-ph/0410382 Phenomenology +hep-ph/0410396 Phenomenology +hep-ph/0411004 Phenomenology +hep-ph/0411005 Phenomenology +hep-ph/0411038 Phenomenology +hep-ph/0411058 Phenomenology +hep-ph/0411065 Phenomenology +hep-ph/0411093 Phenomenology +hep-ph/0411106 Phenomenology +hep-ph/0411107 Phenomenology +hep-ph/0411113 Phenomenology +hep-ph/0411119 Phenomenology +hep-ph/0411122 Phenomenology +hep-ph/0411125 Phenomenology +hep-ph/0411147 Phenomenology +hep-ph/0411150 Phenomenology +hep-ph/0411163 Phenomenology +hep-ph/0411166 Phenomenology +hep-ph/0411172 Phenomenology +hep-ph/0411186 Phenomenology +hep-ph/0411189 Phenomenology +hep-ph/0411200 Phenomenology +hep-ph/0411213 Phenomenology +hep-ph/0411222 Phenomenology +hep-ph/0411233 Phenomenology +hep-ph/0411241 Phenomenology +hep-ph/0411248 Phenomenology +hep-ph/0411259 Phenomenology +hep-ph/0411260 Phenomenology +hep-ph/0411265 Phenomenology +hep-ph/0411277 Phenomenology +hep-ph/0411298 Phenomenology +hep-ph/0411304 Phenomenology +hep-ph/0411311 Phenomenology +hep-ph/0411312 Phenomenology +hep-ph/0411313 Phenomenology +hep-ph/0411332 Phenomenology +hep-ph/0411336 Phenomenology +hep-ph/0411337 Phenomenology +hep-ph/0411338 Phenomenology +hep-ph/0411347 Phenomenology +hep-ph/0411358 Phenomenology +hep-ph/0411367 Phenomenology +hep-ph/0411385 Phenomenology +hep-ph/0411386 Phenomenology +hep-ph/0412004 Phenomenology +hep-ph/0412008 Phenomenology +hep-ph/0412021 Phenomenology +hep-ph/0412023 Phenomenology +hep-ph/0412055 Phenomenology +hep-ph/0412066 Phenomenology +hep-ph/0412075 Phenomenology +hep-ph/0412078 Phenomenology +hep-ph/0412079 Phenomenology +hep-ph/0412089 Phenomenology +hep-ph/0412093 Phenomenology +hep-ph/0412098 Phenomenology +hep-ph/0412102 Phenomenology +hep-ph/0412108 Phenomenology +hep-ph/0412122 Phenomenology +hep-ph/0412140 Phenomenology +hep-ph/0412149 Phenomenology +hep-ph/0412165 Phenomenology +hep-ph/0412172 Phenomenology +hep-ph/0412177 Phenomenology +hep-ph/0412182 Phenomenology +hep-ph/0412187 Phenomenology +hep-ph/0412226 Phenomenology +hep-ph/0412229 Phenomenology +hep-ph/0412249 Phenomenology +hep-ph/0412267 Phenomenology +hep-ph/0412268 Phenomenology +hep-ph/0412269 Phenomenology +hep-ph/0412280 Phenomenology +hep-ph/0412281 Phenomenology +hep-ph/0412340 Phenomenology +hep-ph/0412347 Phenomenology +hep-ph/0412350 Phenomenology +hep-ph/0412366 Phenomenology +hep-ph/0412402 Phenomenology +hep-ph/0412409 Phenomenology +hep-ph/0412412 Phenomenology +hep-ph/0501013 Phenomenology +hep-ph/0501015 Phenomenology +hep-ph/0501025 Phenomenology +hep-ph/0501035 Phenomenology +hep-ph/0501047 Phenomenology +hep-ph/0501058 Phenomenology +hep-ph/0501059 Phenomenology +hep-ph/0501073 Phenomenology +hep-ph/0501085 Phenomenology +hep-ph/0501086 Phenomenology +hep-ph/0501101 Phenomenology +hep-ph/0501102 Phenomenology +hep-ph/0501105 Phenomenology +hep-ph/0501112 Phenomenology +hep-ph/0501114 Phenomenology +hep-ph/0501116 Phenomenology +hep-ph/0501128 Phenomenology +hep-ph/0501130 Phenomenology +hep-ph/0501146 Phenomenology +hep-ph/0501153 Phenomenology +hep-ph/0501156 Phenomenology +hep-ph/0501202 Phenomenology +hep-ph/0501205 Phenomenology +hep-ph/0501218 Phenomenology +hep-ph/0501225 Phenomenology +hep-ph/0501229 Phenomenology +hep-ph/0501255 Phenomenology +hep-ph/0501265 Phenomenology +hep-ph/0501278 Phenomenology +hep-ph/0501287 Phenomenology +hep-ph/0501289 Phenomenology +hep-ph/0501291 Phenomenology +hep-ph/0502013 Phenomenology +hep-ph/0502020 Phenomenology +hep-ph/0502023 Phenomenology +hep-ph/0502026 Phenomenology +hep-ph/0502028 Phenomenology +hep-ph/0502042 Phenomenology +hep-ph/0502051 Phenomenology +hep-ph/0502066 Phenomenology +hep-ph/0502092 Phenomenology +hep-ph/0502110 Phenomenology +hep-ph/0502113 Phenomenology +hep-ph/0502119 Phenomenology +hep-ph/0502127 Phenomenology +hep-ph/0502128 Phenomenology +hep-ph/0502130 Phenomenology +hep-ph/0502141 Phenomenology +hep-ph/0502150 Phenomenology +hep-ph/0502155 Phenomenology +hep-ph/0502163 Phenomenology +hep-ph/0502168 Phenomenology +hep-ph/0502187 Phenomenology +hep-ph/0502196 Phenomenology +hep-ph/0502199 Phenomenology +hep-ph/0502200 Phenomenology +hep-ph/0502211 Phenomenology +hep-ph/0502212 Phenomenology +hep-ph/0502229 Phenomenology +hep-ph/0502232 Phenomenology +hep-ph/0502235 Phenomenology +hep-ph/0502251 Phenomenology +hep-ph/0502252 Phenomenology +hep-ph/0503018 Phenomenology +hep-ph/0503024 Phenomenology +hep-ph/0503043 Phenomenology +hep-ph/0503045 Phenomenology +hep-ph/0503059 Phenomenology +hep-ph/0503061 Phenomenology +hep-ph/0503065 Phenomenology +hep-ph/0503067 Phenomenology +hep-ph/0503073 Phenomenology +hep-ph/0503079 Phenomenology +hep-ph/0503083 Phenomenology +hep-ph/0503094 Phenomenology +hep-ph/0503102 Phenomenology +hep-ph/0503121 Phenomenology +hep-ph/0503129 Phenomenology +hep-ph/0503135 Phenomenology +hep-ph/0503137 Phenomenology +hep-ph/0503148 Phenomenology +hep-ph/0503152 Phenomenology +hep-ph/0503161 Phenomenology +hep-ph/0503165 Phenomenology +hep-ph/0503167 Phenomenology +hep-ph/0503171 Phenomenology +hep-ph/0503184 Phenomenology +hep-ph/0503195 Phenomenology +hep-ph/0503211 Phenomenology +hep-ph/0503238 Phenomenology +hep-ph/0503250 Phenomenology +hep-ph/0503260 Phenomenology +hep-ph/0503263 Phenomenology +hep-ph/0503270 Phenomenology +hep-ph/0503273 Phenomenology +hep-ph/0503283 Phenomenology +hep-ph/0503285 Phenomenology +hep-ph/0503292 Phenomenology +hep-ph/0503294 Phenomenology +hep-ph/0503298 Phenomenology +hep-ph/0504013 Phenomenology +hep-ph/0504015 Phenomenology +hep-ph/0504021 Phenomenology +hep-ph/0504033 Phenomenology +hep-ph/0504043 Phenomenology +hep-ph/0504059 Phenomenology +hep-ph/0504087 Phenomenology +hep-ph/0504088 Phenomenology +hep-ph/0504098 Phenomenology +hep-ph/0504099 Phenomenology +hep-ph/0504100 Phenomenology +hep-ph/0504106 Phenomenology +hep-ph/0504114 Phenomenology +hep-ph/0504157 Phenomenology +hep-ph/0504167 Phenomenology +hep-ph/0504182 Phenomenology +hep-ph/0504187 Phenomenology +hep-ph/0504189 Phenomenology +hep-ph/0504194 Phenomenology +hep-ph/0504197 Phenomenology +hep-ph/0504200 Phenomenology +hep-ph/0504202 Phenomenology +hep-ph/0504214 Phenomenology +hep-ph/0504215 Phenomenology +hep-ph/0504235 Phenomenology +hep-ph/0504242 Phenomenology +hep-ph/0504247 Phenomenology +hep-ph/0504259 Phenomenology +hep-ph/0504262 Phenomenology +hep-ph/0504276 Phenomenology +hep-ph/0505002 Phenomenology +hep-ph/0505010 Phenomenology +hep-ph/0505034 Phenomenology +hep-ph/0505035 Phenomenology +hep-ph/0505058 Phenomenology +hep-ph/0505069 Phenomenology +hep-ph/0505076 Phenomenology +hep-ph/0505083 Phenomenology +hep-ph/0505088 Phenomenology +hep-ph/0505096 Phenomenology +hep-ph/0505100 Phenomenology +hep-ph/0505101 Phenomenology +hep-ph/0505112 Phenomenology +hep-ph/0505113 Phenomenology +hep-ph/0505128 Phenomenology +hep-ph/0505195 Phenomenology +hep-ph/0505202 Phenomenology +hep-ph/0505205 Phenomenology +hep-ph/0505206 Phenomenology +hep-ph/0505212 Phenomenology +hep-ph/0505215 Phenomenology +hep-ph/0505226 Phenomenology +hep-ph/0505236 Phenomenology +hep-ph/0505237 Phenomenology +hep-ph/0505247 Phenomenology +hep-ph/0505253 Phenomenology +hep-ph/0505261 Phenomenology +hep-ph/0506009 Phenomenology +hep-ph/0506022 Phenomenology +hep-ph/0506046 Phenomenology +hep-ph/0506049 Phenomenology +hep-ph/0506051 Phenomenology +hep-ph/0506053 Phenomenology +hep-ph/0506054 Phenomenology +hep-ph/0506061 Phenomenology +hep-ph/0506064 Phenomenology +hep-ph/0506070 Phenomenology +hep-ph/0506087 Phenomenology +hep-ph/0506095 Phenomenology +hep-ph/0506110 Phenomenology +hep-ph/0506114 Phenomenology +hep-ph/0506120 Phenomenology +hep-ph/0506125 Phenomenology +hep-ph/0506133 Phenomenology +hep-ph/0506134 Phenomenology +hep-ph/0506138 Phenomenology +hep-ph/0506141 Phenomenology +hep-ph/0506154 Phenomenology +hep-ph/0506165 Phenomenology +hep-ph/0506230 Phenomenology +hep-ph/0506234 Phenomenology +hep-ph/0506237 Phenomenology +hep-ph/0506242 Phenomenology +hep-ph/0506260 Phenomenology +hep-ph/0506261 Phenomenology +hep-ph/0506265 Phenomenology +hep-ph/0506270 Phenomenology +hep-ph/0506275 Phenomenology +hep-ph/0506277 Phenomenology +hep-ph/0506286 Phenomenology +hep-ph/0506295 Phenomenology +hep-ph/0506296 Phenomenology +hep-ph/0506305 Phenomenology +hep-ph/0506309 Phenomenology +hep-ph/0506314 Phenomenology +hep-ph/0506325 Phenomenology +hep-ph/0507013 Phenomenology +hep-ph/0507025 Phenomenology +hep-ph/0507027 Phenomenology +hep-ph/0507035 Phenomenology +hep-ph/0507049 Phenomenology +hep-ph/0507050 Phenomenology +hep-ph/0507062 Phenomenology +hep-ph/0507066 Phenomenology +hep-ph/0507069 Phenomenology +hep-ph/0507078 Phenomenology +hep-ph/0507079 Phenomenology +hep-ph/0507119 Phenomenology +hep-ph/0507121 Phenomenology +hep-ph/0507139 Phenomenology +hep-ph/0507150 Phenomenology +hep-ph/0507155 Phenomenology +hep-ph/0507159 Phenomenology +hep-ph/0507163 Phenomenology +hep-ph/0507167 Phenomenology +hep-ph/0507177 Phenomenology +hep-ph/0507191 Phenomenology +hep-ph/0507198 Phenomenology +hep-ph/0507206 Phenomenology +hep-ph/0507218 Phenomenology +hep-ph/0507230 Phenomenology +hep-ph/0507245 Phenomenology +hep-ph/0507250 Phenomenology +hep-ph/0507251 Phenomenology +hep-ph/0507263 Phenomenology +hep-ph/0507270 Phenomenology +hep-ph/0507274 Phenomenology +hep-ph/0507276 Phenomenology +hep-ph/0507283 Phenomenology +hep-ph/0507296 Phenomenology +hep-ph/0507299 Phenomenology +hep-ph/0507303 Phenomenology +hep-ph/0507310 Phenomenology +hep-ph/0507312 Phenomenology +hep-ph/0507314 Phenomenology +hep-ph/0507317 Phenomenology +hep-ph/0507329 Phenomenology +hep-ph/0507332 Phenomenology +hep-ph/0508013 Phenomenology +hep-ph/0508018 Phenomenology +hep-ph/0508029 Phenomenology +hep-ph/0508041 Phenomenology +hep-ph/0508068 Phenomenology +hep-ph/0508070 Phenomenology +hep-ph/0508073 Phenomenology +hep-ph/0508078 Phenomenology +hep-ph/0508084 Phenomenology +hep-ph/0508086 Phenomenology +hep-ph/0508090 Phenomenology +hep-ph/0508094 Phenomenology +hep-ph/0508104 Phenomenology +hep-ph/0508107 Phenomenology +hep-ph/0508114 Phenomenology +hep-ph/0508115 Phenomenology +hep-ph/0508123 Phenomenology +hep-ph/0508127 Phenomenology +hep-ph/0508142 Phenomenology +hep-ph/0508152 Phenomenology +hep-ph/0508158 Phenomenology +hep-ph/0508175 Phenomenology +hep-ph/0508180 Phenomenology +hep-ph/0508184 Phenomenology +hep-ph/0508190 Phenomenology +hep-ph/0508198 Phenomenology +hep-ph/0508207 Phenomenology +hep-ph/0508210 Phenomenology +hep-ph/0508218 Phenomenology +hep-ph/0508227 Phenomenology +hep-ph/0508230 Phenomenology +hep-ph/0508239 Phenomenology +hep-ph/0508249 Phenomenology +hep-ph/0508251 Phenomenology +hep-ph/0508258 Phenomenology +hep-ph/0508278 Phenomenology +hep-ph/0508284 Phenomenology +hep-ph/0508288 Phenomenology +hep-ph/0508290 Phenomenology +hep-ph/0508296 Phenomenology +hep-ph/0508308 Phenomenology +hep-ph/0508309 Phenomenology +hep-ph/0508311 Phenomenology +hep-ph/0509015 Phenomenology +hep-ph/0509017 Phenomenology +hep-ph/0509024 Phenomenology +hep-ph/0509026 Phenomenology +hep-ph/0509030 Phenomenology +hep-ph/0509036 Phenomenology +hep-ph/0509040 Phenomenology +hep-ph/0509050 Phenomenology +hep-ph/0509054 Phenomenology +hep-ph/0509056 Phenomenology +hep-ph/0509073 Phenomenology +hep-ph/0509074 Phenomenology +hep-ph/0509095 Phenomenology +hep-ph/0509098 Phenomenology +hep-ph/0509101 Phenomenology +hep-ph/0509110 Phenomenology +hep-ph/0509113 Phenomenology +hep-ph/0509122 Phenomenology +hep-ph/0509127 Phenomenology +hep-ph/0509140 Phenomenology +hep-ph/0509141 Phenomenology +hep-ph/0509145 Phenomenology +hep-ph/0509146 Phenomenology +hep-ph/0509151 Phenomenology +hep-ph/0509172 Phenomenology +hep-ph/0509176 Phenomenology +hep-ph/0509192 Phenomenology +hep-ph/0509195 Phenomenology +hep-ph/0509204 Phenomenology +hep-ph/0509209 Phenomenology +hep-ph/0509215 Phenomenology +hep-ph/0509216 Phenomenology +hep-ph/0509224 Phenomenology +hep-ph/0509233 Phenomenology +hep-ph/0509241 Phenomenology +hep-ph/0509247 Phenomenology +hep-ph/0509254 Phenomenology +hep-ph/0509257 Phenomenology +hep-ph/0509270 Phenomenology +hep-ph/0509271 Phenomenology +hep-ph/0509277 Phenomenology +hep-ph/0509299 Phenomenology +hep-ph/0509315 Phenomenology +hep-ph/0509320 Phenomenology +hep-ph/0509338 Phenomenology +hep-ph/0509351 Phenomenology +hep-ph/0509355 Phenomenology +hep-ph/0509372 Phenomenology +hep-ph/0510001 Phenomenology +hep-ph/0510013 Phenomenology +hep-ph/0510016 Phenomenology +hep-ph/0510022 Phenomenology +hep-ph/0510028 Phenomenology +hep-ph/0510039 Phenomenology +hep-ph/0510054 Phenomenology +hep-ph/0510060 Phenomenology +hep-ph/0510066 Phenomenology +hep-ph/0510085 Phenomenology +hep-ph/0510087 Phenomenology +hep-ph/0510093 Phenomenology +hep-ph/0510108 Phenomenology +hep-ph/0510109 Phenomenology +hep-ph/0510135 Phenomenology +hep-ph/0510141 Phenomenology +hep-ph/0510143 Phenomenology +hep-ph/0510144 Phenomenology +hep-ph/0510147 Phenomenology +hep-ph/0510153 Phenomenology +hep-ph/0510156 Phenomenology +hep-ph/0510172 Phenomenology +hep-ph/0510180 Phenomenology +hep-ph/0510182 Phenomenology +hep-ph/0510185 Phenomenology +hep-ph/0510192 Phenomenology +hep-ph/0510199 Phenomenology +hep-ph/0510203 Phenomenology +hep-ph/0510213 Phenomenology +hep-ph/0510214 Phenomenology +hep-ph/0510219 Phenomenology +hep-ph/0510224 Phenomenology +hep-ph/0510228 Phenomenology +hep-ph/0510232 Phenomenology +hep-ph/0510233 Phenomenology +hep-ph/0510234 Phenomenology +hep-ph/0510241 Phenomenology +hep-ph/0510246 Phenomenology +hep-ph/0510249 Phenomenology +hep-ph/0510266 Phenomenology +hep-ph/0510277 Phenomenology +hep-ph/0510307 Phenomenology +hep-ph/0510315 Phenomenology +hep-ph/0510322 Phenomenology +hep-ph/0510325 Phenomenology +hep-ph/0510335 Phenomenology +hep-ph/0510338 Phenomenology +hep-ph/0510339 Phenomenology +hep-ph/0510349 Phenomenology +hep-ph/0510352 Phenomenology +hep-ph/0510354 Phenomenology +hep-ph/0510358 Phenomenology +hep-ph/0510364 Phenomenology +hep-ph/0510376 Phenomenology +hep-ph/0510379 Phenomenology +hep-ph/0510382 Phenomenology +hep-ph/0510386 Phenomenology +hep-ph/0510387 Phenomenology +hep-ph/0510395 Phenomenology +hep-ph/0510399 Phenomenology +hep-ph/0510409 Phenomenology +hep-ph/0510410 Phenomenology +hep-ph/0511005 Phenomenology +hep-ph/0511016 Phenomenology +hep-ph/0511020 Phenomenology +hep-ph/0511024 Phenomenology +hep-ph/0511027 Phenomenology +hep-ph/0511035 Phenomenology +hep-ph/0511036 Phenomenology +hep-ph/0511054 Phenomenology +hep-ph/0511058 Phenomenology +hep-ph/0511061 Phenomenology +hep-ph/0511062 Phenomenology +hep-ph/0511066 Phenomenology +hep-ph/0511067 Phenomenology +hep-ph/0511076 Phenomenology +hep-ph/0511088 Phenomenology +hep-ph/0511090 Phenomenology +hep-ph/0511107 Phenomenology +hep-ph/0511116 Phenomenology +hep-ph/0511124 Phenomenology +hep-ph/0511147 Phenomenology +hep-ph/0511150 Phenomenology +hep-ph/0511154 Phenomenology +hep-ph/0511158 Phenomenology +hep-ph/0511160 Phenomenology +hep-ph/0511161 Phenomenology +hep-ph/0511167 Phenomenology +hep-ph/0511169 Phenomenology +hep-ph/0511186 Phenomenology +hep-ph/0511189 Phenomenology +hep-ph/0511200 Phenomenology +hep-ph/0511204 Phenomenology +hep-ph/0511211 Phenomenology +hep-ph/0511218 Phenomenology +hep-ph/0511220 Phenomenology +hep-ph/0511223 Phenomenology +hep-ph/0511230 Phenomenology +hep-ph/0511234 Phenomenology +hep-ph/0511237 Phenomenology +hep-ph/0511240 Phenomenology +hep-ph/0511241 Phenomenology +hep-ph/0511245 Phenomenology +hep-ph/0511255 Phenomenology +hep-ph/0511269 Phenomenology +hep-ph/0511271 Phenomenology +hep-ph/0511272 Phenomenology +hep-ph/0511280 Phenomenology +hep-ph/0511287 Phenomenology +hep-ph/0511289 Phenomenology +hep-ph/0511290 Phenomenology +hep-ph/0511298 Phenomenology +hep-ph/0511302 Phenomenology +hep-ph/0511303 Phenomenology +hep-ph/0511305 Phenomenology +hep-ph/0511310 Phenomenology +hep-ph/0511328 Phenomenology +hep-ph/0511330 Phenomenology +hep-ph/0511334 Phenomenology +hep-ph/0511339 Phenomenology +hep-ph/0511347 Phenomenology +hep-ph/0511349 Phenomenology +hep-ph/0511350 Phenomenology +hep-ph/0512001 Phenomenology +hep-ph/0512002 Phenomenology +hep-ph/0512011 Phenomenology +hep-ph/0512015 Phenomenology +hep-ph/0512041 Phenomenology +hep-ph/0512043 Phenomenology +hep-ph/0512048 Phenomenology +hep-ph/0512060 Phenomenology +hep-ph/0512068 Phenomenology +hep-ph/0512074 Phenomenology +hep-ph/0512085 Phenomenology +hep-ph/0512086 Phenomenology +hep-ph/0512091 Phenomenology +hep-ph/0512093 Phenomenology +hep-ph/0512100 Phenomenology +hep-ph/0512103 Phenomenology +hep-ph/0512105 Phenomenology +hep-ph/0512106 Phenomenology +hep-ph/0512108 Phenomenology +hep-ph/0512115 Phenomenology +hep-ph/0512117 Phenomenology +hep-ph/0512119 Phenomenology +hep-ph/0512122 Phenomenology +hep-ph/0512125 Phenomenology +hep-ph/0512127 Phenomenology +hep-ph/0512128 Phenomenology +hep-ph/0512131 Phenomenology +hep-ph/0512134 Phenomenology +hep-ph/0512139 Phenomenology +hep-ph/0512145 Phenomenology +hep-ph/0512147 Phenomenology +hep-ph/0512148 Phenomenology +hep-ph/0512150 Phenomenology +hep-ph/0512151 Phenomenology +hep-ph/0512157 Phenomenology +hep-ph/0512160 Phenomenology +hep-ph/0512175 Phenomenology +hep-ph/0512182 Phenomenology +hep-ph/0512186 Phenomenology +hep-ph/0512193 Phenomenology +hep-ph/0512196 Phenomenology +hep-ph/0512197 Phenomenology +hep-ph/0512205 Phenomenology +hep-ph/0512206 Phenomenology +hep-ph/0512210 Phenomenology +hep-ph/0512212 Phenomenology +hep-ph/0512214 Phenomenology +hep-ph/0512221 Phenomenology +hep-ph/0512235 Phenomenology +hep-ph/0512239 Phenomenology +hep-ph/0512244 Phenomenology +hep-ph/0512246 Phenomenology +hep-ph/0512249 Phenomenology +hep-ph/0512252 Phenomenology +hep-ph/0512256 Phenomenology +hep-ph/0512258 Phenomenology +hep-ph/0512260 Phenomenology +hep-ph/0512261 Phenomenology +hep-ph/0512262 Phenomenology +hep-ph/0512268 Phenomenology +hep-ph/0512284 Phenomenology +hep-ph/0512286 Phenomenology +hep-ph/0512293 Phenomenology +hep-ph/0512295 Phenomenology +hep-ph/0512302 Phenomenology +hep-ph/0512310 Phenomenology +hep-ph/0512317 Phenomenology +hep-ph/0512325 Phenomenology +hep-ph/0512327 Phenomenology +hep-ph/0512335 Phenomenology +hep-ph/0512346 Phenomenology +hep-ph/0512347 Phenomenology +hep-ph/0512348 Phenomenology +hep-ph/0512350 Phenomenology +hep-ph/0512351 Phenomenology +hep-ph/0512353 Phenomenology +hep-ph/0512356 Phenomenology +hep-ph/0512364 Phenomenology +hep-ph/0512367 Phenomenology +hep-ph/0512372 Phenomenology +hep-ph/0601002 Phenomenology +hep-ph/0601003 Phenomenology +hep-ph/0601004 Phenomenology +hep-ph/0601007 Phenomenology +hep-ph/0601009 Phenomenology +hep-ph/0601028 Phenomenology +hep-ph/0601032 Phenomenology +hep-ph/0601037 Phenomenology +hep-ph/0601042 Phenomenology +hep-ph/0601046 Phenomenology +hep-ph/0601048 Phenomenology +hep-ph/0601058 Phenomenology +hep-ph/0601063 Phenomenology +hep-ph/0601064 Phenomenology +hep-ph/0601067 Phenomenology +hep-ph/0601072 Phenomenology +hep-ph/0601073 Phenomenology +hep-ph/0601078 Phenomenology +hep-ph/0601082 Phenomenology +hep-ph/0601085 Phenomenology +hep-ph/0601091 Phenomenology +hep-ph/0601109 Phenomenology +hep-ph/0601110 Phenomenology +hep-ph/0601112 Phenomenology +hep-ph/0601115 Phenomenology +hep-ph/0601120 Phenomenology +hep-ph/0601122 Phenomenology +hep-ph/0601124 Phenomenology +hep-ph/0601127 Phenomenology +hep-ph/0601128 Phenomenology +hep-ph/0601129 Phenomenology +hep-ph/0601131 Phenomenology +hep-ph/0601132 Phenomenology +hep-ph/0601133 Phenomenology +hep-ph/0601136 Phenomenology +hep-ph/0601144 Phenomenology +hep-ph/0601145 Phenomenology +hep-ph/0601147 Phenomenology +hep-ph/0601150 Phenomenology +hep-ph/0601155 Phenomenology +hep-ph/0601158 Phenomenology +hep-ph/0601160 Phenomenology +hep-ph/0601161 Phenomenology +hep-ph/0601162 Phenomenology +hep-ph/0601165 Phenomenology +hep-ph/0601175 Phenomenology +hep-ph/0601177 Phenomenology +hep-ph/0601180 Phenomenology +hep-ph/0601185 Phenomenology +hep-ph/0601186 Phenomenology +hep-ph/0601193 Phenomenology +hep-ph/0601195 Phenomenology +hep-ph/0601198 Phenomenology +hep-ph/0601199 Phenomenology +hep-ph/0601200 Phenomenology +hep-ph/0601201 Phenomenology +hep-ph/0601202 Phenomenology +hep-ph/0601203 Phenomenology +hep-ph/0601206 Phenomenology +hep-ph/0601209 Phenomenology +hep-ph/0601211 Phenomenology +hep-ph/0601215 Phenomenology +hep-ph/0601217 Phenomenology +hep-ph/0601218 Phenomenology +hep-ph/0601223 Phenomenology +hep-ph/0601234 Phenomenology +hep-ph/0601239 Phenomenology +hep-ph/0601240 Phenomenology +hep-ph/0601245 Phenomenology +hep-ph/0601247 Phenomenology +hep-ph/0601249 Phenomenology +hep-ph/0601250 Phenomenology +hep-ph/0601252 Phenomenology +hep-ph/0601253 Phenomenology +hep-ph/0601272 Phenomenology +hep-ph/0602002 Phenomenology +hep-ph/0602008 Phenomenology +hep-ph/0602017 Phenomenology +hep-ph/0602023 Phenomenology +hep-ph/0602025 Phenomenology +hep-ph/0602026 Phenomenology +hep-ph/0602041 Phenomenology +hep-ph/0602042 Phenomenology +hep-ph/0602047 Phenomenology +hep-ph/0602050 Phenomenology +hep-ph/0602058 Phenomenology +hep-ph/0602061 Phenomenology +hep-ph/0602063 Phenomenology +hep-ph/0602071 Phenomenology +hep-ph/0602072 Phenomenology +hep-ph/0602075 Phenomenology +hep-ph/0602077 Phenomenology +hep-ph/0602080 Phenomenology +hep-ph/0602091 Phenomenology +hep-ph/0602093 Phenomenology +hep-ph/0602095 Phenomenology +hep-ph/0602103 Phenomenology +hep-ph/0602106 Phenomenology +hep-ph/0602112 Phenomenology +hep-ph/0602120 Phenomenology +hep-ph/0602123 Phenomenology +hep-ph/0602129 Phenomenology +hep-ph/0602135 Phenomenology +hep-ph/0602138 Phenomenology +hep-ph/0602142 Phenomenology +hep-ph/0602150 Phenomenology +hep-ph/0602156 Phenomenology +hep-ph/0602157 Phenomenology +hep-ph/0602158 Phenomenology +hep-ph/0602162 Phenomenology +hep-ph/0602164 Phenomenology +hep-ph/0602167 Phenomenology +hep-ph/0602169 Phenomenology +hep-ph/0602175 Phenomenology +hep-ph/0602179 Phenomenology +hep-ph/0602182 Phenomenology +hep-ph/0602186 Phenomenology +hep-ph/0602187 Phenomenology +hep-ph/0602188 Phenomenology +hep-ph/0602191 Phenomenology +hep-ph/0602193 Phenomenology +hep-ph/0602194 Phenomenology +hep-ph/0602195 Phenomenology +hep-ph/0602196 Phenomenology +hep-ph/0602200 Phenomenology +hep-ph/0602207 Phenomenology +hep-ph/0602210 Phenomenology +hep-ph/0602213 Phenomenology +hep-ph/0602214 Phenomenology +hep-ph/0602216 Phenomenology +hep-ph/0602224 Phenomenology +hep-ph/0602229 Phenomenology +hep-ph/0602232 Phenomenology +hep-ph/0602235 Phenomenology +hep-ph/0602238 Phenomenology +hep-ph/0602239 Phenomenology +hep-ph/0602240 Phenomenology +hep-ph/0602241 Phenomenology +hep-ph/0602246 Phenomenology +hep-ph/0602248 Phenomenology +hep-ph/0602249 Phenomenology +hep-ph/0602250 Phenomenology +hep-ph/0603007 Phenomenology +hep-ph/0603010 Phenomenology +hep-ph/0603013 Phenomenology +hep-ph/0603027 Phenomenology +hep-ph/0603030 Phenomenology +hep-ph/0603036 Phenomenology +hep-ph/0603037 Phenomenology +hep-ph/0603039 Phenomenology +hep-ph/0603041 Phenomenology +hep-ph/0603050 Phenomenology +hep-ph/0603054 Phenomenology +hep-ph/0603062 Phenomenology +hep-ph/0603065 Phenomenology +hep-ph/0603067 Phenomenology +hep-ph/0603070 Phenomenology +hep-ph/0603072 Phenomenology +hep-ph/0603073 Phenomenology +hep-ph/0603074 Phenomenology +hep-ph/0603078 Phenomenology +hep-ph/0603083 Phenomenology +hep-ph/0603087 Phenomenology +hep-ph/0603092 Phenomenology +hep-ph/0603093 Phenomenology +hep-ph/0603094 Phenomenology +hep-ph/0603096 Phenomenology +hep-ph/0603098 Phenomenology +hep-ph/0603099 Phenomenology +hep-ph/0603101 Phenomenology +hep-ph/0603106 Phenomenology +hep-ph/0603108 Phenomenology +hep-ph/0603109 Phenomenology +hep-ph/0603118 Phenomenology +hep-ph/0603120 Phenomenology +hep-ph/0603122 Phenomenology +hep-ph/0603128 Phenomenology +hep-ph/0603134 Phenomenology +hep-ph/0603138 Phenomenology +hep-ph/0603143 Phenomenology +hep-ph/0603144 Phenomenology +hep-ph/0603154 Phenomenology +hep-ph/0603164 Phenomenology +hep-ph/0603171 Phenomenology +hep-ph/0603178 Phenomenology +hep-ph/0603180 Phenomenology +hep-ph/0603182 Phenomenology +hep-ph/0603184 Phenomenology +hep-ph/0603185 Phenomenology +hep-ph/0603186 Phenomenology +hep-ph/0603188 Phenomenology +hep-ph/0603189 Phenomenology +hep-ph/0603190 Phenomenology +hep-ph/0603192 Phenomenology +hep-ph/0603194 Phenomenology +hep-ph/0603198 Phenomenology +hep-ph/0603206 Phenomenology +hep-ph/0603207 Phenomenology +hep-ph/0603213 Phenomenology +hep-ph/0603215 Phenomenology +hep-ph/0603221 Phenomenology +hep-ph/0603222 Phenomenology +hep-ph/0603224 Phenomenology +hep-ph/0603228 Phenomenology +hep-ph/0603234 Phenomenology +hep-ph/0603236 Phenomenology +hep-ph/0603238 Phenomenology +hep-ph/0603243 Phenomenology +hep-ph/0603244 Phenomenology +hep-ph/0603245 Phenomenology +hep-ph/0603250 Phenomenology +hep-ph/0603252 Phenomenology +hep-ph/0603253 Phenomenology +hep-ph/0603256 Phenomenology +hep-ph/0603261 Phenomenology +hep-ph/0603262 Phenomenology +hep-ph/0603267 Phenomenology +hep-ph/0604002 Phenomenology +hep-ph/0604003 Phenomenology +hep-ph/0604007 Phenomenology +hep-ph/0604011 Phenomenology +hep-ph/0604018 Phenomenology +hep-ph/0604019 Phenomenology +hep-ph/0604022 Phenomenology +hep-ph/0604023 Phenomenology +hep-ph/0604025 Phenomenology +hep-ph/0604028 Phenomenology +hep-ph/0604031 Phenomenology +hep-ph/0604034 Phenomenology +hep-ph/0604038 Phenomenology +hep-ph/0604039 Phenomenology +hep-ph/0604042 Phenomenology +hep-ph/0604043 Phenomenology +hep-ph/0604053 Phenomenology +hep-ph/0604054 Phenomenology +hep-ph/0604064 Phenomenology +hep-ph/0604065 Phenomenology +hep-ph/0604071 Phenomenology +hep-ph/0604076 Phenomenology +hep-ph/0604078 Phenomenology +hep-ph/0604082 Phenomenology +hep-ph/0604084 Phenomenology +hep-ph/0604087 Phenomenology +hep-ph/0604102 Phenomenology +hep-ph/0604103 Phenomenology +hep-ph/0604104 Phenomenology +hep-ph/0604111 Phenomenology +hep-ph/0604116 Phenomenology +hep-ph/0604117 Phenomenology +hep-ph/0604118 Phenomenology +hep-ph/0604119 Phenomenology +hep-ph/0604121 Phenomenology +hep-ph/0604128 Phenomenology +hep-ph/0604130 Phenomenology +hep-ph/0604135 Phenomenology +hep-ph/0604138 Phenomenology +hep-ph/0604139 Phenomenology +hep-ph/0604141 Phenomenology +hep-ph/0604143 Phenomenology +hep-ph/0604144 Phenomenology +hep-ph/0604149 Phenomenology +hep-ph/0604154 Phenomenology +hep-ph/0604161 Phenomenology +hep-ph/0604162 Phenomenology +hep-ph/0604166 Phenomenology +hep-ph/0604167 Phenomenology +hep-ph/0604178 Phenomenology +hep-ph/0604179 Phenomenology +hep-ph/0604183 Phenomenology +hep-ph/0604187 Phenomenology +hep-ph/0604195 Phenomenology +hep-ph/0604196 Phenomenology +hep-ph/0604197 Phenomenology +hep-ph/0604198 Phenomenology +hep-ph/0604199 Phenomenology +hep-ph/0604200 Phenomenology +hep-ph/0604202 Phenomenology +hep-ph/0604203 Phenomenology +hep-ph/0604207 Phenomenology +hep-ph/0604208 Phenomenology +hep-ph/0604214 Phenomenology +hep-ph/0604223 Phenomenology +hep-ph/0604225 Phenomenology +hep-ph/0604227 Phenomenology +hep-ph/0604232 Phenomenology +hep-ph/0604233 Phenomenology +hep-ph/0604238 Phenomenology +hep-ph/0604239 Phenomenology +hep-ph/0604249 Phenomenology +hep-ph/0604252 Phenomenology +hep-ph/0604255 Phenomenology +hep-ph/0604258 Phenomenology +hep-ph/0604261 Phenomenology +hep-ph/0604262 Phenomenology +hep-ph/0604264 Phenomenology +hep-ph/0604266 Phenomenology +hep-ph/0604271 Phenomenology +hep-ph/0604273 Phenomenology +hep-ph/0604274 Phenomenology +hep-ph/0605001 Phenomenology +hep-ph/0605002 Phenomenology +hep-ph/0605008 Phenomenology +hep-ph/0605012 Phenomenology +hep-ph/0605015 Phenomenology +hep-ph/0605019 Phenomenology +hep-ph/0605021 Phenomenology +hep-ph/0605023 Phenomenology +hep-ph/0605031 Phenomenology +hep-ph/0605035 Phenomenology +hep-ph/0605037 Phenomenology +hep-ph/0605038 Phenomenology +hep-ph/0605039 Phenomenology +hep-ph/0605041 Phenomenology +hep-ph/0605047 Phenomenology +hep-ph/0605050 Phenomenology +hep-ph/0605053 Phenomenology +hep-ph/0605055 Phenomenology +hep-ph/0605056 Phenomenology +hep-ph/0605062 Phenomenology +hep-ph/0605063 Phenomenology +hep-ph/0605064 Phenomenology +hep-ph/0605068 Phenomenology +hep-ph/0605073 Phenomenology +hep-ph/0605074 Phenomenology +hep-ph/0605075 Phenomenology +hep-ph/0605076 Phenomenology +hep-ph/0605078 Phenomenology +hep-ph/0605081 Phenomenology +hep-ph/0605084 Phenomenology +hep-ph/0605087 Phenomenology +hep-ph/0605088 Phenomenology +hep-ph/0605095 Phenomenology +hep-ph/0605096 Phenomenology +hep-ph/0605099 Phenomenology +hep-ph/0605105 Phenomenology +hep-ph/0605108 Phenomenology +hep-ph/0605112 Phenomenology +hep-ph/0605113 Phenomenology +hep-ph/0605120 Phenomenology +hep-ph/0605125 Phenomenology +hep-ph/0605127 Phenomenology +hep-ph/0605128 Phenomenology +hep-ph/0605131 Phenomenology +hep-ph/0605133 Phenomenology +hep-ph/0605135 Phenomenology +hep-ph/0605139 Phenomenology +hep-ph/0605140 Phenomenology +hep-ph/0605142 Phenomenology +hep-ph/0605145 Phenomenology +hep-ph/0605147 Phenomenology +hep-ph/0605148 Phenomenology +hep-ph/0605151 Phenomenology +hep-ph/0605158 Phenomenology +hep-ph/0605164 Phenomenology +hep-ph/0605169 Phenomenology +hep-ph/0605173 Phenomenology +hep-ph/0605174 Phenomenology +hep-ph/0605177 Phenomenology +hep-ph/0605178 Phenomenology +hep-ph/0605185 Phenomenology +hep-ph/0605190 Phenomenology +hep-ph/0605191 Phenomenology +hep-ph/0605193 Phenomenology +hep-ph/0605199 Phenomenology +hep-ph/0605200 Phenomenology +hep-ph/0605201 Phenomenology +hep-ph/0605202 Phenomenology +hep-ph/0605207 Phenomenology +hep-ph/0605212 Phenomenology +hep-ph/0605213 Phenomenology +hep-ph/0605215 Phenomenology +hep-ph/0605217 Phenomenology +hep-ph/0605218 Phenomenology +hep-ph/0605220 Phenomenology +hep-ph/0605230 Phenomenology +hep-ph/0605237 Phenomenology +hep-ph/0605239 Phenomenology +hep-ph/0605243 Phenomenology +hep-ph/0605244 Phenomenology +hep-ph/0605245 Phenomenology +hep-ph/0605247 Phenomenology +hep-ph/0605251 Phenomenology +hep-ph/0605253 Phenomenology +hep-ph/0605255 Phenomenology +hep-ph/0605256 Phenomenology +hep-ph/0605258 Phenomenology +hep-ph/0605260 Phenomenology +hep-ph/0605261 Phenomenology +hep-ph/0605266 Phenomenology +hep-ph/0605268 Phenomenology +hep-ph/0605271 Phenomenology +hep-ph/0605273 Phenomenology +hep-ph/0605276 Phenomenology +hep-ph/0605279 Phenomenology +hep-ph/0605282 Phenomenology +hep-ph/0605286 Phenomenology +hep-ph/0605289 Phenomenology +hep-ph/0605293 Phenomenology +hep-ph/0605295 Phenomenology +hep-ph/0605298 Phenomenology +hep-ph/0605299 Phenomenology +hep-ph/0605302 Phenomenology +hep-ph/0605304 Phenomenology +hep-ph/0605310 Phenomenology +hep-ph/0605312 Phenomenology +hep-ph/0605314 Phenomenology +hep-ph/0605315 Phenomenology +hep-ph/0605318 Phenomenology +hep-ph/0605319 Phenomenology +hep-ph/0605330 Phenomenology +hep-ph/0605331 Phenomenology +hep-ph/0605332 Phenomenology +hep-ph/0605333 Phenomenology +hep-ph/0605336 Phenomenology +hep-ph/0605338 Phenomenology +hep-ph/0605341 Phenomenology +hep-ph/0606001 Phenomenology +hep-ph/0606002 Phenomenology +hep-ph/0606003 Phenomenology +hep-ph/0606004 Phenomenology +hep-ph/0606007 Phenomenology +hep-ph/0606008 Phenomenology +hep-ph/0606012 Phenomenology +hep-ph/0606015 Phenomenology +hep-ph/0606016 Phenomenology +hep-ph/0606017 Phenomenology +hep-ph/0606021 Phenomenology +hep-ph/0606022 Phenomenology +hep-ph/0606023 Phenomenology +hep-ph/0606030 Phenomenology +hep-ph/0606031 Phenomenology +hep-ph/0606033 Phenomenology +hep-ph/0606036 Phenomenology +hep-ph/0606037 Phenomenology +hep-ph/0606039 Phenomenology +hep-ph/0606040 Phenomenology +hep-ph/0606041 Phenomenology +hep-ph/0606044 Phenomenology +hep-ph/0606045 Phenomenology +hep-ph/0606049 Phenomenology +hep-ph/0606052 Phenomenology +hep-ph/0606055 Phenomenology +hep-ph/0606056 Phenomenology +hep-ph/0606062 Phenomenology +hep-ph/0606064 Phenomenology +hep-ph/0606065 Phenomenology +hep-ph/0606068 Phenomenology +hep-ph/0606069 Phenomenology +hep-ph/0606073 Phenomenology +hep-ph/0606074 Phenomenology +hep-ph/0606076 Phenomenology +hep-ph/0606077 Phenomenology +hep-ph/0606080 Phenomenology +hep-ph/0606082 Phenomenology +hep-ph/0606084 Phenomenology +hep-ph/0606088 Phenomenology +hep-ph/0606093 Phenomenology +hep-ph/0606095 Phenomenology +hep-ph/0606097 Phenomenology +hep-ph/0606099 Phenomenology +hep-ph/0606102 Phenomenology +hep-ph/0606107 Phenomenology +hep-ph/0606110 Phenomenology +hep-ph/0606112 Phenomenology +hep-ph/0606118 Phenomenology +hep-ph/0606126 Phenomenology +hep-ph/0606127 Phenomenology +hep-ph/0606129 Phenomenology +hep-ph/0606130 Phenomenology +hep-ph/0606131 Phenomenology +hep-ph/0606132 Phenomenology +hep-ph/0606133 Phenomenology +hep-ph/0606135 Phenomenology +hep-ph/0606136 Phenomenology +hep-ph/0606141 Phenomenology +hep-ph/0606144 Phenomenology +hep-ph/0606149 Phenomenology +hep-ph/0606154 Phenomenology +hep-ph/0606158 Phenomenology +hep-ph/0606161 Phenomenology +hep-ph/0606163 Phenomenology +hep-ph/0606165 Phenomenology +hep-ph/0606168 Phenomenology +hep-ph/0606169 Phenomenology +hep-ph/0606170 Phenomenology +hep-ph/0606172 Phenomenology +hep-ph/0606173 Phenomenology +hep-ph/0606174 Phenomenology +hep-ph/0606183 Phenomenology +hep-ph/0606184 Phenomenology +hep-ph/0606185 Phenomenology +hep-ph/0606186 Phenomenology +hep-ph/0606187 Phenomenology +hep-ph/0606189 Phenomenology +hep-ph/0606190 Phenomenology +hep-ph/0606191 Phenomenology +hep-ph/0606195 Phenomenology +hep-ph/0606196 Phenomenology +hep-ph/0606198 Phenomenology +hep-ph/0606200 Phenomenology +hep-ph/0606201 Phenomenology +hep-ph/0606202 Phenomenology +hep-ph/0606203 Phenomenology +hep-ph/0606204 Phenomenology +hep-ph/0606205 Phenomenology +hep-ph/0606206 Phenomenology +hep-ph/0606207 Phenomenology +hep-ph/0606208 Phenomenology +hep-ph/0606209 Phenomenology +hep-ph/0606211 Phenomenology +hep-ph/0606215 Phenomenology +hep-ph/0606216 Phenomenology +hep-ph/0606217 Phenomenology +hep-ph/0606218 Phenomenology +hep-ph/0606225 Phenomenology +hep-ph/0606227 Phenomenology +hep-ph/0606228 Phenomenology +hep-ph/0606230 Phenomenology +hep-ph/0606233 Phenomenology +hep-ph/0606235 Phenomenology +hep-ph/0606236 Phenomenology +hep-ph/0606237 Phenomenology +hep-ph/0606238 Phenomenology +hep-ph/0606242 Phenomenology +hep-ph/0606243 Phenomenology +hep-ph/0606247 Phenomenology +hep-ph/0606249 Phenomenology +hep-ph/0606253 Phenomenology +hep-ph/0606256 Phenomenology +hep-ph/0606258 Phenomenology +hep-ph/0606267 Phenomenology +hep-ph/0606268 Phenomenology +hep-ph/0606271 Phenomenology +hep-ph/0606273 Phenomenology +hep-ph/0606278 Phenomenology +hep-ph/0606283 Phenomenology +hep-ph/0606284 Phenomenology +hep-ph/0606286 Phenomenology +hep-ph/0606287 Phenomenology +hep-ph/0606288 Phenomenology +hep-ph/0606289 Phenomenology +hep-ph/0606291 Phenomenology +hep-ph/0606292 Phenomenology +hep-ph/0606293 Phenomenology +hep-ph/0606298 Phenomenology +hep-ph/0606299 Phenomenology +hep-ph/0606302 Phenomenology +hep-ph/0606303 Phenomenology +hep-ph/0606304 Phenomenology +hep-ph/0606310 Phenomenology +hep-ph/0606312 Phenomenology +hep-ph/0606314 Phenomenology +hep-ph/0606315 Phenomenology +hep-ph/0606316 Phenomenology +hep-ph/0606321 Phenomenology +hep-ph/0607001 Phenomenology +hep-ph/0607002 Phenomenology +hep-ph/0607003 Phenomenology +hep-ph/0607004 Phenomenology +hep-ph/0607013 Phenomenology +hep-ph/0607014 Phenomenology +hep-ph/0607016 Phenomenology +hep-ph/0607017 Phenomenology +hep-ph/0607019 Phenomenology +hep-ph/0607021 Phenomenology +hep-ph/0607022 Phenomenology +hep-ph/0607025 Phenomenology +hep-ph/0607026 Phenomenology +hep-ph/0607032 Phenomenology +hep-ph/0607039 Phenomenology +hep-ph/0607042 Phenomenology +hep-ph/0607044 Phenomenology +hep-ph/0607045 Phenomenology +hep-ph/0607047 Phenomenology +hep-ph/0607048 Phenomenology +hep-ph/0607050 Phenomenology +hep-ph/0607058 Phenomenology +hep-ph/0607059 Phenomenology +hep-ph/0607060 Phenomenology +hep-ph/0607061 Phenomenology +hep-ph/0607062 Phenomenology +hep-ph/0607066 Phenomenology +hep-ph/0607067 Phenomenology +hep-ph/0607068 Phenomenology +hep-ph/0607070 Phenomenology +hep-ph/0607072 Phenomenology +hep-ph/0607074 Phenomenology +hep-ph/0607079 Phenomenology +hep-ph/0607080 Phenomenology +hep-ph/0607082 Phenomenology +hep-ph/0607083 Phenomenology +hep-ph/0607084 Phenomenology +hep-ph/0607085 Phenomenology +hep-ph/0607087 Phenomenology +hep-ph/0607097 Phenomenology +hep-ph/0607100 Phenomenology +hep-ph/0607101 Phenomenology +hep-ph/0607102 Phenomenology +hep-ph/0607103 Phenomenology +hep-ph/0607106 Phenomenology +hep-ph/0607107 Phenomenology +hep-ph/0607108 Phenomenology +hep-ph/0607110 Phenomenology +hep-ph/0607111 Phenomenology +hep-ph/0607114 Phenomenology +hep-ph/0607117 Phenomenology +hep-ph/0607118 Phenomenology +hep-ph/0607120 Phenomenology +hep-ph/0607121 Phenomenology +hep-ph/0607124 Phenomenology +hep-ph/0607126 Phenomenology +hep-ph/0607127 Phenomenology +hep-ph/0607130 Phenomenology +hep-ph/0607132 Phenomenology +hep-ph/0607133 Phenomenology +hep-ph/0607134 Phenomenology +hep-ph/0607135 Phenomenology +hep-ph/0607138 Phenomenology +hep-ph/0607139 Phenomenology +hep-ph/0607140 Phenomenology +hep-ph/0607142 Phenomenology +hep-ph/0607145 Phenomenology +hep-ph/0607146 Phenomenology +hep-ph/0607147 Phenomenology +hep-ph/0607150 Phenomenology +hep-ph/0607151 Phenomenology +hep-ph/0607152 Phenomenology +hep-ph/0607155 Phenomenology +hep-ph/0607159 Phenomenology +hep-ph/0607162 Phenomenology +hep-ph/0607163 Phenomenology +hep-ph/0607165 Phenomenology +hep-ph/0607166 Phenomenology +hep-ph/0607167 Phenomenology +hep-ph/0607168 Phenomenology +hep-ph/0607174 Phenomenology +hep-ph/0607175 Phenomenology +hep-ph/0607177 Phenomenology +hep-ph/0607178 Phenomenology +hep-ph/0607182 Phenomenology +hep-ph/0607183 Phenomenology +hep-ph/0607190 Phenomenology +hep-ph/0607191 Phenomenology +hep-ph/0607194 Phenomenology +hep-ph/0607195 Phenomenology +hep-ph/0607196 Phenomenology +hep-ph/0607197 Phenomenology +hep-ph/0607201 Phenomenology +hep-ph/0607203 Phenomenology +hep-ph/0607204 Phenomenology +hep-ph/0607206 Phenomenology +hep-ph/0607207 Phenomenology +hep-ph/0607209 Phenomenology +hep-ph/0607212 Phenomenology +hep-ph/0607213 Phenomenology +hep-ph/0607215 Phenomenology +hep-ph/0607216 Phenomenology +hep-ph/0607218 Phenomenology +hep-ph/0607220 Phenomenology +hep-ph/0607224 Phenomenology +hep-ph/0607226 Phenomenology +hep-ph/0607227 Phenomenology +hep-ph/0607232 Phenomenology +hep-ph/0607234 Phenomenology +hep-ph/0607236 Phenomenology +hep-ph/0607237 Phenomenology +hep-ph/0607243 Phenomenology +hep-ph/0607245 Phenomenology +hep-ph/0607247 Phenomenology +hep-ph/0607253 Phenomenology +hep-ph/0607254 Phenomenology +hep-ph/0607255 Phenomenology +hep-ph/0607257 Phenomenology +hep-ph/0607258 Phenomenology +hep-ph/0607262 Phenomenology +hep-ph/0607270 Phenomenology +hep-ph/0607271 Phenomenology +hep-ph/0607272 Phenomenology +hep-ph/0607277 Phenomenology +hep-ph/0607279 Phenomenology +hep-ph/0607281 Phenomenology +hep-ph/0607284 Phenomenology +hep-ph/0607285 Phenomenology +hep-ph/0607288 Phenomenology +hep-ph/0607289 Phenomenology +hep-ph/0607291 Phenomenology +hep-ph/0607295 Phenomenology +hep-ph/0607296 Phenomenology +hep-ph/0607298 Phenomenology +hep-ph/0607299 Phenomenology +hep-ph/0607301 Phenomenology +hep-ph/0607302 Phenomenology +hep-ph/0607304 Phenomenology +hep-ph/0607305 Phenomenology +hep-ph/0607307 Phenomenology +hep-ph/0607311 Phenomenology +hep-ph/0607314 Phenomenology +hep-ph/0607315 Phenomenology +hep-ph/0607316 Phenomenology +hep-ph/0607317 Phenomenology +hep-ph/0607318 Phenomenology +hep-ph/0607319 Phenomenology +hep-ph/0607321 Phenomenology +hep-ph/0607324 Phenomenology +hep-ph/0607325 Phenomenology +hep-ph/0607327 Phenomenology +hep-ph/0607329 Phenomenology +hep-ph/0607331 Phenomenology +hep-ph/0607332 Phenomenology +hep-ph/0607334 Phenomenology +hep-ph/0607335 Phenomenology +hep-ph/0607336 Phenomenology +hep-ph/0607337 Phenomenology +hep-ph/0607338 Phenomenology +hep-ph/0607340 Phenomenology +hep-ph/0607342 Phenomenology +hep-ph/0607343 Phenomenology +hep-ph/0607344 Phenomenology +hep-ph/0607345 Phenomenology +hep-ph/0607346 Phenomenology +hep-ph/0608001 Phenomenology +hep-ph/0608004 Phenomenology +hep-ph/0608006 Phenomenology +hep-ph/0608007 Phenomenology +hep-ph/0608008 Phenomenology +hep-ph/0608011 Phenomenology +hep-ph/0608013 Phenomenology +hep-ph/0608017 Phenomenology +hep-ph/0608019 Phenomenology +hep-ph/0608022 Phenomenology +hep-ph/0608024 Phenomenology +hep-ph/0608027 Phenomenology +hep-ph/0608030 Phenomenology +hep-ph/0608031 Phenomenology +hep-ph/0608032 Phenomenology +hep-ph/0608033 Phenomenology +hep-ph/0608034 Phenomenology +hep-ph/0608036 Phenomenology +hep-ph/0608037 Phenomenology +hep-ph/0608040 Phenomenology +hep-ph/0608041 Phenomenology +hep-ph/0608042 Phenomenology +hep-ph/0608047 Phenomenology +hep-ph/0608048 Phenomenology +hep-ph/0608049 Phenomenology +hep-ph/0608050 Phenomenology +hep-ph/0608051 Phenomenology +hep-ph/0608054 Phenomenology +hep-ph/0608055 Phenomenology +hep-ph/0608058 Phenomenology +hep-ph/0608060 Phenomenology +hep-ph/0608062 Phenomenology +hep-ph/0608063 Phenomenology +hep-ph/0608064 Phenomenology +hep-ph/0608065 Phenomenology +hep-ph/0608066 Phenomenology +hep-ph/0608072 Phenomenology +hep-ph/0608074 Phenomenology +hep-ph/0608077 Phenomenology +hep-ph/0608078 Phenomenology +hep-ph/0608080 Phenomenology +hep-ph/0608081 Phenomenology +hep-ph/0608083 Phenomenology +hep-ph/0608085 Phenomenology +hep-ph/0608087 Phenomenology +hep-ph/0608088 Phenomenology +hep-ph/0608089 Phenomenology +hep-ph/0608090 Phenomenology +hep-ph/0608091 Phenomenology +hep-ph/0608092 Phenomenology +hep-ph/0608093 Phenomenology +hep-ph/0608094 Phenomenology +hep-ph/0608100 Phenomenology +hep-ph/0608102 Phenomenology +hep-ph/0608105 Phenomenology +hep-ph/0608106 Phenomenology +hep-ph/0608110 Phenomenology +hep-ph/0608111 Phenomenology +hep-ph/0608112 Phenomenology +hep-ph/0608116 Phenomenology +hep-ph/0608117 Phenomenology +hep-ph/0608119 Phenomenology +hep-ph/0608120 Phenomenology +hep-ph/0608123 Phenomenology +hep-ph/0608125 Phenomenology +hep-ph/0608126 Phenomenology +hep-ph/0608127 Phenomenology +hep-ph/0608128 Phenomenology +hep-ph/0608132 Phenomenology +hep-ph/0608137 Phenomenology +hep-ph/0608139 Phenomenology +hep-ph/0608140 Phenomenology +hep-ph/0608141 Phenomenology +hep-ph/0608142 Phenomenology +hep-ph/0608143 Phenomenology +hep-ph/0608144 Phenomenology +hep-ph/0608146 Phenomenology +hep-ph/0608148 Phenomenology +hep-ph/0608152 Phenomenology +hep-ph/0608153 Phenomenology +hep-ph/0608159 Phenomenology +hep-ph/0608162 Phenomenology +hep-ph/0608164 Phenomenology +hep-ph/0608167 Phenomenology +hep-ph/0608169 Phenomenology +hep-ph/0608171 Phenomenology +hep-ph/0608172 Phenomenology +hep-ph/0608173 Phenomenology +hep-ph/0608176 Phenomenology +hep-ph/0608178 Phenomenology +hep-ph/0608179 Phenomenology +hep-ph/0608181 Phenomenology +hep-ph/0608182 Phenomenology +hep-ph/0608185 Phenomenology +hep-ph/0608187 Phenomenology +hep-ph/0608188 Phenomenology +hep-ph/0608189 Phenomenology +hep-ph/0608192 Phenomenology +hep-ph/0608195 Phenomenology +hep-ph/0608198 Phenomenology +hep-ph/0608200 Phenomenology +hep-ph/0608203 Phenomenology +hep-ph/0608205 Phenomenology +hep-ph/0608207 Phenomenology +hep-ph/0608209 Phenomenology +hep-ph/0608211 Phenomenology +hep-ph/0608212 Phenomenology +hep-ph/0608214 Phenomenology +hep-ph/0608215 Phenomenology +hep-ph/0608219 Phenomenology +hep-ph/0608221 Phenomenology +hep-ph/0608222 Phenomenology +hep-ph/0608223 Phenomenology +hep-ph/0608227 Phenomenology +hep-ph/0608228 Phenomenology +hep-ph/0608232 Phenomenology +hep-ph/0608233 Phenomenology +hep-ph/0608234 Phenomenology +hep-ph/0608235 Phenomenology +hep-ph/0608236 Phenomenology +hep-ph/0608237 Phenomenology +hep-ph/0608239 Phenomenology +hep-ph/0608240 Phenomenology +hep-ph/0608243 Phenomenology +hep-ph/0608246 Phenomenology +hep-ph/0608248 Phenomenology +hep-ph/0608249 Phenomenology +hep-ph/0608250 Phenomenology +hep-ph/0608253 Phenomenology +hep-ph/0608255 Phenomenology +hep-ph/0608258 Phenomenology +hep-ph/0608262 Phenomenology +hep-ph/0608264 Phenomenology +hep-ph/0608267 Phenomenology +hep-ph/0608269 Phenomenology +hep-ph/0608270 Phenomenology +hep-ph/0608271 Phenomenology +hep-ph/0608272 Phenomenology +hep-ph/0608273 Phenomenology +hep-ph/0608274 Phenomenology +hep-ph/0608276 Phenomenology +hep-ph/0608277 Phenomenology +hep-ph/0608279 Phenomenology +hep-ph/0608281 Phenomenology +hep-ph/0608282 Phenomenology +hep-ph/0608283 Phenomenology +hep-ph/0608285 Phenomenology +hep-ph/0608287 Phenomenology +hep-ph/0608288 Phenomenology +hep-ph/0608293 Phenomenology +hep-ph/0608296 Phenomenology +hep-ph/0608297 Phenomenology +hep-ph/0608298 Phenomenology +hep-ph/0608300 Phenomenology +hep-ph/0608301 Phenomenology +hep-ph/0608302 Phenomenology +hep-ph/0608303 Phenomenology +hep-ph/0608304 Phenomenology +hep-ph/0608306 Phenomenology +hep-ph/0608308 Phenomenology +hep-ph/0608309 Phenomenology +hep-ph/0608310 Phenomenology +hep-ph/0608311 Phenomenology +hep-ph/0608313 Phenomenology +hep-ph/0608314 Phenomenology +hep-ph/0608315 Phenomenology +hep-ph/0608316 Phenomenology +hep-ph/0608318 Phenomenology +hep-ph/0608319 Phenomenology +hep-ph/0608320 Phenomenology +hep-ph/0608321 Phenomenology +hep-ph/0608323 Phenomenology +hep-ph/0608324 Phenomenology +hep-ph/0608325 Phenomenology +hep-ph/0608326 Phenomenology +hep-ph/0608328 Phenomenology +hep-ph/0608329 Phenomenology +hep-ph/0608330 Phenomenology +hep-ph/0608331 Phenomenology +hep-ph/0608332 Phenomenology +hep-ph/0608334 Phenomenology +hep-ph/0608335 Phenomenology +hep-ph/0608337 Phenomenology +hep-ph/0608340 Phenomenology +hep-ph/0608341 Phenomenology +hep-ph/0608346 Phenomenology +hep-ph/0609001 Phenomenology +hep-ph/0609002 Phenomenology +hep-ph/0609004 Phenomenology +hep-ph/0609005 Phenomenology +hep-ph/0609006 Phenomenology +hep-ph/0609007 Phenomenology +hep-ph/0609009 Phenomenology +hep-ph/0609010 Phenomenology +hep-ph/0609011 Phenomenology +hep-ph/0609013 Phenomenology +hep-ph/0609015 Phenomenology +hep-ph/0609016 Phenomenology +hep-ph/0609017 Phenomenology +hep-ph/0609019 Phenomenology +hep-ph/0609020 Phenomenology +hep-ph/0609021 Phenomenology +hep-ph/0609028 Phenomenology +hep-ph/0609029 Phenomenology +hep-ph/0609030 Phenomenology +hep-ph/0609035 Phenomenology +hep-ph/0609036 Phenomenology +hep-ph/0609037 Phenomenology +hep-ph/0609044 Phenomenology +hep-ph/0609053 Phenomenology +hep-ph/0609056 Phenomenology +hep-ph/0609057 Phenomenology +hep-ph/0609058 Phenomenology +hep-ph/0609059 Phenomenology +hep-ph/0609060 Phenomenology +hep-ph/0609061 Phenomenology +hep-ph/0609064 Phenomenology +hep-ph/0609065 Phenomenology +hep-ph/0609068 Phenomenology +hep-ph/0609069 Phenomenology +hep-ph/0609070 Phenomenology +hep-ph/0609073 Phenomenology +hep-ph/0609074 Phenomenology +hep-ph/0609075 Phenomenology +hep-ph/0609076 Phenomenology +hep-ph/0609077 Phenomenology +hep-ph/0609078 Phenomenology +hep-ph/0609079 Phenomenology +hep-ph/0609082 Phenomenology +hep-ph/0609084 Phenomenology +hep-ph/0609085 Phenomenology +hep-ph/0609086 Phenomenology +hep-ph/0609087 Phenomenology +hep-ph/0609088 Phenomenology +hep-ph/0609089 Phenomenology +hep-ph/0609090 Phenomenology +hep-ph/0609091 Phenomenology +hep-ph/0609092 Phenomenology +hep-ph/0609101 Phenomenology +hep-ph/0609105 Phenomenology +hep-ph/0609107 Phenomenology +hep-ph/0609108 Phenomenology +hep-ph/0609109 Phenomenology +hep-ph/0609112 Phenomenology +hep-ph/0609115 Phenomenology +hep-ph/0609116 Phenomenology +hep-ph/0609117 Phenomenology +hep-ph/0609120 Phenomenology +hep-ph/0609121 Phenomenology +hep-ph/0609123 Phenomenology +hep-ph/0609125 Phenomenology +hep-ph/0609129 Phenomenology +hep-ph/0609131 Phenomenology +hep-ph/0609133 Phenomenology +hep-ph/0609136 Phenomenology +hep-ph/0609139 Phenomenology +hep-ph/0609143 Phenomenology +hep-ph/0609144 Phenomenology +hep-ph/0609147 Phenomenology +hep-ph/0609150 Phenomenology +hep-ph/0609151 Phenomenology +hep-ph/0609161 Phenomenology +hep-ph/0609164 Phenomenology +hep-ph/0609166 Phenomenology +hep-ph/0609168 Phenomenology +hep-ph/0609172 Phenomenology +hep-ph/0609173 Phenomenology +hep-ph/0609176 Phenomenology +hep-ph/0609178 Phenomenology +hep-ph/0609179 Phenomenology +hep-ph/0609183 Phenomenology +hep-ph/0609185 Phenomenology +hep-ph/0609186 Phenomenology +hep-ph/0609188 Phenomenology +hep-ph/0609191 Phenomenology +hep-ph/0609193 Phenomenology +hep-ph/0609194 Phenomenology +hep-ph/0609195 Phenomenology +hep-ph/0609197 Phenomenology +hep-ph/0609198 Phenomenology +hep-ph/0609200 Phenomenology +hep-ph/0609202 Phenomenology +hep-ph/0609205 Phenomenology +hep-ph/0609207 Phenomenology +hep-ph/0609208 Phenomenology +hep-ph/0609210 Phenomenology +hep-ph/0609213 Phenomenology +hep-ph/0609214 Phenomenology +hep-ph/0609216 Phenomenology +hep-ph/0609218 Phenomenology +hep-ph/0609219 Phenomenology +hep-ph/0609220 Phenomenology +hep-ph/0609222 Phenomenology +hep-ph/0609223 Phenomenology +hep-ph/0609224 Phenomenology +hep-ph/0609225 Phenomenology +hep-ph/0609228 Phenomenology +hep-ph/0609230 Phenomenology +hep-ph/0609232 Phenomenology +hep-ph/0609233 Phenomenology +hep-ph/0609238 Phenomenology +hep-ph/0609239 Phenomenology +hep-ph/0609241 Phenomenology +hep-ph/0609244 Phenomenology +hep-ph/0609246 Phenomenology +hep-ph/0609247 Phenomenology +hep-ph/0609249 Phenomenology +hep-ph/0609252 Phenomenology +hep-ph/0609255 Phenomenology +hep-ph/0609256 Phenomenology +hep-ph/0609257 Phenomenology +hep-ph/0609258 Phenomenology +hep-ph/0609259 Phenomenology +hep-ph/0609262 Phenomenology +hep-ph/0609263 Phenomenology +hep-ph/0609264 Phenomenology +hep-ph/0609266 Phenomenology +hep-ph/0609267 Phenomenology +hep-ph/0609268 Phenomenology +hep-ph/0609269 Phenomenology +hep-ph/0609270 Phenomenology +hep-ph/0609271 Phenomenology +hep-ph/0609272 Phenomenology +hep-ph/0609273 Phenomenology +hep-ph/0609274 Phenomenology +hep-ph/0609278 Phenomenology +hep-ph/0609284 Phenomenology +hep-ph/0609286 Phenomenology +hep-ph/0609287 Phenomenology +hep-ph/0609288 Phenomenology +hep-ph/0609290 Phenomenology +hep-ph/0609295 Phenomenology +hep-ph/0609296 Phenomenology +hep-ph/0609297 Phenomenology +hep-ph/0609299 Phenomenology +hep-ph/0609300 Phenomenology +hep-ph/0609301 Phenomenology +hep-ph/0609302 Phenomenology +hep-ph/0609304 Phenomenology +hep-ph/0609305 Phenomenology +hep-ph/0609309 Phenomenology +hep-ph/0609310 Phenomenology +hep-ph/0609312 Phenomenology +hep-ph/0610001 Phenomenology +hep-ph/0610002 Phenomenology +hep-ph/0610003 Phenomenology +hep-ph/0610004 Phenomenology +hep-ph/0610006 Phenomenology +hep-ph/0610007 Phenomenology +hep-ph/0610008 Phenomenology +hep-ph/0610009 Phenomenology +hep-ph/0610013 Phenomenology +hep-ph/0610015 Phenomenology +hep-ph/0610016 Phenomenology +hep-ph/0610020 Phenomenology +hep-ph/0610021 Phenomenology +hep-ph/0610023 Phenomenology +hep-ph/0610024 Phenomenology +hep-ph/0610025 Phenomenology +hep-ph/0610026 Phenomenology +hep-ph/0610027 Phenomenology +hep-ph/0610028 Phenomenology +hep-ph/0610029 Phenomenology +hep-ph/0610030 Phenomenology +hep-ph/0610036 Phenomenology +hep-ph/0610038 Phenomenology +hep-ph/0610039 Phenomenology +hep-ph/0610041 Phenomenology +hep-ph/0610042 Phenomenology +hep-ph/0610043 Phenomenology +hep-ph/0610044 Phenomenology +hep-ph/0610046 Phenomenology +hep-ph/0610048 Phenomenology +hep-ph/0610049 Phenomenology +hep-ph/0610051 Phenomenology +hep-ph/0610052 Phenomenology +hep-ph/0610054 Phenomenology +hep-ph/0610055 Phenomenology +hep-ph/0610059 Phenomenology +hep-ph/0610060 Phenomenology +hep-ph/0610061 Phenomenology +hep-ph/0610062 Phenomenology +hep-ph/0610066 Phenomenology +hep-ph/0610067 Phenomenology +hep-ph/0610068 Phenomenology +hep-ph/0610070 Phenomenology +hep-ph/0610071 Phenomenology +hep-ph/0610072 Phenomenology +hep-ph/0610073 Phenomenology +hep-ph/0610074 Phenomenology +hep-ph/0610075 Phenomenology +hep-ph/0610077 Phenomenology +hep-ph/0610078 Phenomenology +hep-ph/0610080 Phenomenology +hep-ph/0610081 Phenomenology +hep-ph/0610082 Phenomenology +hep-ph/0610084 Phenomenology +hep-ph/0610085 Phenomenology +hep-ph/0610086 Phenomenology +hep-ph/0610087 Phenomenology +hep-ph/0610089 Phenomenology +hep-ph/0610090 Phenomenology +hep-ph/0610094 Phenomenology +hep-ph/0610095 Phenomenology +hep-ph/0610098 Phenomenology +hep-ph/0610099 Phenomenology +hep-ph/0610101 Phenomenology +hep-ph/0610106 Phenomenology +hep-ph/0610107 Phenomenology +hep-ph/0610108 Phenomenology +hep-ph/0610111 Phenomenology +hep-ph/0610112 Phenomenology +hep-ph/0610116 Phenomenology +hep-ph/0610118 Phenomenology +hep-ph/0610119 Phenomenology +hep-ph/0610122 Phenomenology +hep-ph/0610123 Phenomenology +hep-ph/0610124 Phenomenology +hep-ph/0610125 Phenomenology +hep-ph/0610126 Phenomenology +hep-ph/0610127 Phenomenology +hep-ph/0610128 Phenomenology +hep-ph/0610130 Phenomenology +hep-ph/0610131 Phenomenology +hep-ph/0610132 Phenomenology +hep-ph/0610133 Phenomenology +hep-ph/0610135 Phenomenology +hep-ph/0610137 Phenomenology +hep-ph/0610138 Phenomenology +hep-ph/0610141 Phenomenology +hep-ph/0610142 Phenomenology +hep-ph/0610144 Phenomenology +hep-ph/0610146 Phenomenology +hep-ph/0610147 Phenomenology +hep-ph/0610150 Phenomenology +hep-ph/0610151 Phenomenology +hep-ph/0610153 Phenomenology +hep-ph/0610154 Phenomenology +hep-ph/0610156 Phenomenology +hep-ph/0610159 Phenomenology +hep-ph/0610160 Phenomenology +hep-ph/0610161 Phenomenology +hep-ph/0610163 Phenomenology +hep-ph/0610164 Phenomenology +hep-ph/0610166 Phenomenology +hep-ph/0610167 Phenomenology +hep-ph/0610168 Phenomenology +hep-ph/0610170 Phenomenology +hep-ph/0610171 Phenomenology +hep-ph/0610172 Phenomenology +hep-ph/0610173 Phenomenology +hep-ph/0610174 Phenomenology +hep-ph/0610175 Phenomenology +hep-ph/0610179 Phenomenology +hep-ph/0610180 Phenomenology +hep-ph/0610181 Phenomenology +hep-ph/0610185 Phenomenology +hep-ph/0610186 Phenomenology +hep-ph/0610187 Phenomenology +hep-ph/0610188 Phenomenology +hep-ph/0610189 Phenomenology +hep-ph/0610191 Phenomenology +hep-ph/0610195 Phenomenology +hep-ph/0610197 Phenomenology +hep-ph/0610199 Phenomenology +hep-ph/0610203 Phenomenology +hep-ph/0610204 Phenomenology +hep-ph/0610207 Phenomenology +hep-ph/0610208 Phenomenology +hep-ph/0610210 Phenomenology +hep-ph/0610211 Phenomenology +hep-ph/0610213 Phenomenology +hep-ph/0610214 Phenomenology +hep-ph/0610215 Phenomenology +hep-ph/0610216 Phenomenology +hep-ph/0610217 Phenomenology +hep-ph/0610220 Phenomenology +hep-ph/0610221 Phenomenology +hep-ph/0610223 Phenomenology +hep-ph/0610224 Phenomenology +hep-ph/0610226 Phenomenology +hep-ph/0610227 Phenomenology +hep-ph/0610228 Phenomenology +hep-ph/0610229 Phenomenology +hep-ph/0610231 Phenomenology +hep-ph/0610232 Phenomenology +hep-ph/0610233 Phenomenology +hep-ph/0610236 Phenomenology +hep-ph/0610237 Phenomenology +hep-ph/0610239 Phenomenology +hep-ph/0610240 Phenomenology +hep-ph/0610245 Phenomenology +hep-ph/0610249 Phenomenology +hep-ph/0610251 Phenomenology +hep-ph/0610252 Phenomenology +hep-ph/0610253 Phenomenology +hep-ph/0610254 Phenomenology +hep-ph/0610257 Phenomenology +hep-ph/0610260 Phenomenology +hep-ph/0610261 Phenomenology +hep-ph/0610262 Phenomenology +hep-ph/0610263 Phenomenology +hep-ph/0610264 Phenomenology +hep-ph/0610265 Phenomenology +hep-ph/0610266 Phenomenology +hep-ph/0610273 Phenomenology +hep-ph/0610274 Phenomenology +hep-ph/0610276 Phenomenology +hep-ph/0610277 Phenomenology +hep-ph/0610278 Phenomenology +hep-ph/0610279 Phenomenology +hep-ph/0610283 Phenomenology +hep-ph/0610284 Phenomenology +hep-ph/0610286 Phenomenology +hep-ph/0610287 Phenomenology +hep-ph/0610288 Phenomenology +hep-ph/0610289 Phenomenology +hep-ph/0610291 Phenomenology +hep-ph/0610293 Phenomenology +hep-ph/0610296 Phenomenology +hep-ph/0610299 Phenomenology +hep-ph/0610301 Phenomenology +hep-ph/0610302 Phenomenology +hep-ph/0610303 Phenomenology +hep-ph/0610308 Phenomenology +hep-ph/0610310 Phenomenology +hep-ph/0610311 Phenomenology +hep-ph/0610312 Phenomenology +hep-ph/0610313 Phenomenology +hep-ph/0610314 Phenomenology +hep-ph/0610315 Phenomenology +hep-ph/0610316 Phenomenology +hep-ph/0610317 Phenomenology +hep-ph/0610318 Phenomenology +hep-ph/0610319 Phenomenology +hep-ph/0610320 Phenomenology +hep-ph/0610322 Phenomenology +hep-ph/0610323 Phenomenology +hep-ph/0610324 Phenomenology +hep-ph/0610325 Phenomenology +hep-ph/0610327 Phenomenology +hep-ph/0610328 Phenomenology +hep-ph/0610330 Phenomenology +hep-ph/0610331 Phenomenology +hep-ph/0610333 Phenomenology +hep-ph/0610334 Phenomenology +hep-ph/0610335 Phenomenology +hep-ph/0610336 Phenomenology +hep-ph/0610338 Phenomenology +hep-ph/0610339 Phenomenology +hep-ph/0610340 Phenomenology +hep-ph/0610342 Phenomenology +hep-ph/0610343 Phenomenology +hep-ph/0610344 Phenomenology +hep-ph/0610345 Phenomenology +hep-ph/0610346 Phenomenology +hep-ph/0610347 Phenomenology +hep-ph/0610351 Phenomenology +hep-ph/0610352 Phenomenology +hep-ph/0610353 Phenomenology +hep-ph/0610354 Phenomenology +hep-ph/0610355 Phenomenology +hep-ph/0610356 Phenomenology +hep-ph/0610357 Phenomenology +hep-ph/0610359 Phenomenology +hep-ph/0610360 Phenomenology +hep-ph/0610362 Phenomenology +hep-ph/0610364 Phenomenology +hep-ph/0610365 Phenomenology +hep-ph/0610366 Phenomenology +hep-ph/0610367 Phenomenology +hep-ph/0610368 Phenomenology +hep-ph/0610369 Phenomenology +hep-ph/0610370 Phenomenology +hep-ph/0610372 Phenomenology +hep-ph/0610373 Phenomenology +hep-ph/0610375 Phenomenology +hep-ph/0610376 Phenomenology +hep-ph/0610378 Phenomenology +hep-ph/0610379 Phenomenology +hep-ph/0610380 Phenomenology +hep-ph/0610381 Phenomenology +hep-ph/0610382 Phenomenology +hep-ph/0610383 Phenomenology +hep-ph/0610385 Phenomenology +hep-ph/0610386 Phenomenology +hep-ph/0610387 Phenomenology +hep-ph/0610388 Phenomenology +hep-ph/0610389 Phenomenology +hep-ph/0610390 Phenomenology +hep-ph/0610391 Phenomenology +hep-ph/0610393 Phenomenology +hep-ph/0610394 Phenomenology +hep-ph/0610397 Phenomenology +hep-ph/0610398 Phenomenology +hep-ph/0610402 Phenomenology +hep-ph/0610403 Phenomenology +hep-ph/0610405 Phenomenology +hep-ph/0610407 Phenomenology +hep-ph/0610408 Phenomenology +hep-ph/0610409 Phenomenology +hep-ph/0610411 Phenomenology +hep-ph/0610413 Phenomenology +hep-ph/0610415 Phenomenology +hep-ph/0610416 Phenomenology +hep-ph/0610417 Phenomenology +hep-ph/0610418 Phenomenology +hep-ph/0610419 Phenomenology +hep-ph/0610421 Phenomenology +hep-ph/0610422 Phenomenology +hep-ph/0610424 Phenomenology +hep-ph/0610425 Phenomenology +hep-ph/0610426 Phenomenology +hep-ph/0610427 Phenomenology +hep-ph/0610428 Phenomenology +hep-ph/0610429 Phenomenology +hep-ph/0610430 Phenomenology +hep-ph/0610431 Phenomenology +hep-ph/0610432 Phenomenology +hep-ph/0610434 Phenomenology +hep-ph/0610435 Phenomenology +hep-ph/0610436 Phenomenology +hep-ph/0610437 Phenomenology +hep-ph/0610438 Phenomenology +hep-ph/0610439 Phenomenology +hep-ph/0610440 Phenomenology +hep-ph/0610441 Phenomenology +hep-ph/0610442 Phenomenology +hep-ph/0611003 Phenomenology +hep-ph/0611004 Phenomenology +hep-ph/0611005 Phenomenology +hep-ph/0611006 Phenomenology +hep-ph/0611007 Phenomenology +hep-ph/0611009 Phenomenology +hep-ph/0611010 Phenomenology +hep-ph/0611011 Phenomenology +hep-ph/0611014 Phenomenology +hep-ph/0611015 Phenomenology +hep-ph/0611016 Phenomenology +hep-ph/0611017 Phenomenology +hep-ph/0611018 Phenomenology +hep-ph/0611020 Phenomenology +hep-ph/0611021 Phenomenology +hep-ph/0611024 Phenomenology +hep-ph/0611026 Phenomenology +hep-ph/0611027 Phenomenology +hep-ph/0611028 Phenomenology +hep-ph/0611029 Phenomenology +hep-ph/0611030 Phenomenology +hep-ph/0611033 Phenomenology +hep-ph/0611034 Phenomenology +hep-ph/0611035 Phenomenology +hep-ph/0611036 Phenomenology +hep-ph/0611037 Phenomenology +hep-ph/0611039 Phenomenology +hep-ph/0611042 Phenomenology +hep-ph/0611043 Phenomenology +hep-ph/0611046 Phenomenology +hep-ph/0611048 Phenomenology +hep-ph/0611049 Phenomenology +hep-ph/0611052 Phenomenology +hep-ph/0611053 Phenomenology +hep-ph/0611054 Phenomenology +hep-ph/0611055 Phenomenology +hep-ph/0611056 Phenomenology +hep-ph/0611058 Phenomenology +hep-ph/0611059 Phenomenology +hep-ph/0611061 Phenomenology +hep-ph/0611062 Phenomenology +hep-ph/0611063 Phenomenology +hep-ph/0611064 Phenomenology +hep-ph/0611065 Phenomenology +hep-ph/0611066 Phenomenology +hep-ph/0611068 Phenomenology +hep-ph/0611069 Phenomenology +hep-ph/0611070 Phenomenology +hep-ph/0611071 Phenomenology +hep-ph/0611074 Phenomenology +hep-ph/0611075 Phenomenology +hep-ph/0611076 Phenomenology +hep-ph/0611077 Phenomenology +hep-ph/0611078 Phenomenology +hep-ph/0611079 Phenomenology +hep-ph/0611081 Phenomenology +hep-ph/0611082 Phenomenology +hep-ph/0611084 Phenomenology +hep-ph/0611085 Phenomenology +hep-ph/0611086 Phenomenology +hep-ph/0611087 Phenomenology +hep-ph/0611088 Phenomenology +hep-ph/0611089 Phenomenology +hep-ph/0611090 Phenomenology +hep-ph/0611091 Phenomenology +hep-ph/0611092 Phenomenology +hep-ph/0611094 Phenomenology +hep-ph/0611097 Phenomenology +hep-ph/0611098 Phenomenology +hep-ph/0611099 Phenomenology +hep-ph/0611101 Phenomenology +hep-ph/0611102 Phenomenology +hep-ph/0611105 Phenomenology +hep-ph/0611107 Phenomenology +hep-ph/0611108 Phenomenology +hep-ph/0611109 Phenomenology +hep-ph/0611110 Phenomenology +hep-ph/0611111 Phenomenology +hep-ph/0611113 Phenomenology +hep-ph/0611115 Phenomenology +hep-ph/0611116 Phenomenology +hep-ph/0611118 Phenomenology +hep-ph/0611119 Phenomenology +hep-ph/0611121 Phenomenology +hep-ph/0611123 Phenomenology +hep-ph/0611124 Phenomenology +hep-ph/0611125 Phenomenology +hep-ph/0611126 Phenomenology +hep-ph/0611127 Phenomenology +hep-ph/0611130 Phenomenology +hep-ph/0611131 Phenomenology +hep-ph/0611133 Phenomenology +hep-ph/0611134 Phenomenology +hep-ph/0611135 Phenomenology +hep-ph/0611136 Phenomenology +hep-ph/0611140 Phenomenology +hep-ph/0611143 Phenomenology +hep-ph/0611144 Phenomenology +hep-ph/0611147 Phenomenology +hep-ph/0611149 Phenomenology +hep-ph/0611150 Phenomenology +hep-ph/0611152 Phenomenology +hep-ph/0611156 Phenomenology +hep-ph/0611157 Phenomenology +hep-ph/0611158 Phenomenology +hep-ph/0611159 Phenomenology +hep-ph/0611161 Phenomenology +hep-ph/0611164 Phenomenology +hep-ph/0611166 Phenomenology +hep-ph/0611169 Phenomenology +hep-ph/0611171 Phenomenology +hep-ph/0611172 Phenomenology +hep-ph/0611175 Phenomenology +hep-ph/0611176 Phenomenology +hep-ph/0611178 Phenomenology +hep-ph/0611179 Phenomenology +hep-ph/0611180 Phenomenology +hep-ph/0611181 Phenomenology +hep-ph/0611182 Phenomenology +hep-ph/0611184 Phenomenology +hep-ph/0611185 Phenomenology +hep-ph/0611186 Phenomenology +hep-ph/0611192 Phenomenology +hep-ph/0611193 Phenomenology +hep-ph/0611195 Phenomenology +hep-ph/0611197 Phenomenology +hep-ph/0611199 Phenomenology +hep-ph/0611200 Phenomenology +hep-ph/0611202 Phenomenology +hep-ph/0611204 Phenomenology +hep-ph/0611205 Phenomenology +hep-ph/0611207 Phenomenology +hep-ph/0611208 Phenomenology +hep-ph/0611209 Phenomenology +hep-ph/0611210 Phenomenology +hep-ph/0611211 Phenomenology +hep-ph/0611213 Phenomenology +hep-ph/0611216 Phenomenology +hep-ph/0611220 Phenomenology +hep-ph/0611221 Phenomenology +hep-ph/0611222 Phenomenology +hep-ph/0611223 Phenomenology +hep-ph/0611225 Phenomenology +hep-ph/0611226 Phenomenology +hep-ph/0611228 Phenomenology +hep-ph/0611229 Phenomenology +hep-ph/0611231 Phenomenology +hep-ph/0611233 Phenomenology +hep-ph/0611235 Phenomenology +hep-ph/0611238 Phenomenology +hep-ph/0611239 Phenomenology +hep-ph/0611240 Phenomenology +hep-ph/0611241 Phenomenology +hep-ph/0611242 Phenomenology +hep-ph/0611244 Phenomenology +hep-ph/0611249 Phenomenology +hep-ph/0611250 Phenomenology +hep-ph/0611256 Phenomenology +hep-ph/0611257 Phenomenology +hep-ph/0611258 Phenomenology +hep-ph/0611260 Phenomenology +hep-ph/0611261 Phenomenology +hep-ph/0611263 Phenomenology +hep-ph/0611267 Phenomenology +hep-ph/0611268 Phenomenology +hep-ph/0611271 Phenomenology +hep-ph/0611272 Phenomenology +hep-ph/0611273 Phenomenology +hep-ph/0611274 Phenomenology +hep-ph/0611275 Phenomenology +hep-ph/0611279 Phenomenology +hep-ph/0611280 Phenomenology +hep-ph/0611281 Phenomenology +hep-ph/0611284 Phenomenology +hep-ph/0611285 Phenomenology +hep-ph/0611287 Phenomenology +hep-ph/0611288 Phenomenology +hep-ph/0611290 Phenomenology +hep-ph/0611292 Phenomenology +hep-ph/0611294 Phenomenology +hep-ph/0611295 Phenomenology +hep-ph/0611296 Phenomenology +hep-ph/0611297 Phenomenology +hep-ph/0611298 Phenomenology +hep-ph/0611301 Phenomenology +hep-ph/0611302 Phenomenology +hep-ph/0611303 Phenomenology +hep-ph/0611305 Phenomenology +hep-ph/0611306 Phenomenology +hep-ph/0611307 Phenomenology +hep-ph/0611308 Phenomenology +hep-ph/0611312 Phenomenology +hep-ph/0611313 Phenomenology +hep-ph/0611314 Phenomenology +hep-ph/0611316 Phenomenology +hep-ph/0611319 Phenomenology +hep-ph/0611321 Phenomenology +hep-ph/0611322 Phenomenology +hep-ph/0611323 Phenomenology +hep-ph/0611325 Phenomenology +hep-ph/0611328 Phenomenology +hep-ph/0611329 Phenomenology +hep-ph/0611331 Phenomenology +hep-ph/0611332 Phenomenology +hep-ph/0611333 Phenomenology +hep-ph/0611335 Phenomenology +hep-ph/0611338 Phenomenology +hep-ph/0611340 Phenomenology +hep-ph/0611345 Phenomenology +hep-ph/0611346 Phenomenology +hep-ph/0611348 Phenomenology +hep-ph/0611351 Phenomenology +hep-ph/0611352 Phenomenology +hep-ph/0611355 Phenomenology +hep-ph/0611356 Phenomenology +hep-ph/0611360 Phenomenology +hep-ph/0611361 Phenomenology +hep-ph/0611362 Phenomenology +hep-ph/0611364 Phenomenology +hep-ph/0611365 Phenomenology +hep-ph/0611366 Phenomenology +hep-ph/0611368 Phenomenology +hep-ph/0611370 Phenomenology +hep-ph/0611371 Phenomenology +hep-ph/0611372 Phenomenology +hep-ph/0611374 Phenomenology +hep-ph/0611375 Phenomenology +hep-ph/0611376 Phenomenology +hep-ph/0611377 Phenomenology +hep-ph/0611379 Phenomenology +hep-ph/0611381 Phenomenology +hep-ph/0611382 Phenomenology +hep-ph/0611383 Phenomenology +hep-ph/0611385 Phenomenology +hep-ph/0611386 Phenomenology +hep-ph/0611388 Phenomenology +hep-ph/0611389 Phenomenology +hep-ph/0611391 Phenomenology +hep-ph/0611392 Phenomenology +hep-ph/0612002 Phenomenology +hep-ph/0612004 Phenomenology +hep-ph/0612005 Phenomenology +hep-ph/0612006 Phenomenology +hep-ph/0612008 Phenomenology +hep-ph/0612009 Phenomenology +hep-ph/0612010 Phenomenology +hep-ph/0612011 Phenomenology +hep-ph/0612013 Phenomenology +hep-ph/0612016 Phenomenology +hep-ph/0612017 Phenomenology +hep-ph/0612019 Phenomenology +hep-ph/0612020 Phenomenology +hep-ph/0612022 Phenomenology +hep-ph/0612023 Phenomenology +hep-ph/0612025 Phenomenology +hep-ph/0612027 Phenomenology +hep-ph/0612030 Phenomenology +hep-ph/0612031 Phenomenology +hep-ph/0612033 Phenomenology +hep-ph/0612034 Phenomenology +hep-ph/0612036 Phenomenology +hep-ph/0612037 Phenomenology +hep-ph/0612038 Phenomenology +hep-ph/0612040 Phenomenology +hep-ph/0612043 Phenomenology +hep-ph/0612045 Phenomenology +hep-ph/0612046 Phenomenology +hep-ph/0612048 Phenomenology +hep-ph/0612049 Phenomenology +hep-ph/0612050 Phenomenology +hep-ph/0612052 Phenomenology +hep-ph/0612053 Phenomenology +hep-ph/0612054 Phenomenology +hep-ph/0612055 Phenomenology +hep-ph/0612057 Phenomenology +hep-ph/0612058 Phenomenology +hep-ph/0612061 Phenomenology +hep-ph/0612062 Phenomenology +hep-ph/0612063 Phenomenology +hep-ph/0612066 Phenomenology +hep-ph/0612067 Phenomenology +hep-ph/0612068 Phenomenology +hep-ph/0612069 Phenomenology +hep-ph/0612070 Phenomenology +hep-ph/0612071 Phenomenology +hep-ph/0612073 Phenomenology +hep-ph/0612074 Phenomenology +hep-ph/0612075 Phenomenology +hep-ph/0612077 Phenomenology +hep-ph/0612079 Phenomenology +hep-ph/0612080 Phenomenology +hep-ph/0612081 Phenomenology +hep-ph/0612082 Phenomenology +hep-ph/0612083 Phenomenology +hep-ph/0612087 Phenomenology +hep-ph/0612089 Phenomenology +hep-ph/0612091 Phenomenology +hep-ph/0612093 Phenomenology +hep-ph/0612094 Phenomenology +hep-ph/0612095 Phenomenology +hep-ph/0612096 Phenomenology +hep-ph/0612098 Phenomenology +hep-ph/0612099 Phenomenology +hep-ph/0612101 Phenomenology +hep-ph/0612102 Phenomenology +hep-ph/0612103 Phenomenology +hep-ph/0612104 Phenomenology +hep-ph/0612106 Phenomenology +hep-ph/0612109 Phenomenology +hep-ph/0612111 Phenomenology +hep-ph/0612113 Phenomenology +hep-ph/0612114 Phenomenology +hep-ph/0612116 Phenomenology +hep-ph/0612117 Phenomenology +hep-ph/0612118 Phenomenology +hep-ph/0612119 Phenomenology +hep-ph/0612121 Phenomenology +hep-ph/0612122 Phenomenology +hep-ph/0612123 Phenomenology +hep-ph/0612124 Phenomenology +hep-ph/0612125 Phenomenology +hep-ph/0612130 Phenomenology +hep-ph/0612131 Phenomenology +hep-ph/0612132 Phenomenology +hep-ph/0612133 Phenomenology +hep-ph/0612134 Phenomenology +hep-ph/0612135 Phenomenology +hep-ph/0612137 Phenomenology +hep-ph/0612140 Phenomenology +hep-ph/0612142 Phenomenology +hep-ph/0612143 Phenomenology +hep-ph/0612144 Phenomenology +hep-ph/0612145 Phenomenology +hep-ph/0612146 Phenomenology +hep-ph/0612147 Phenomenology +hep-ph/0612148 Phenomenology +hep-ph/0612150 Phenomenology +hep-ph/0612152 Phenomenology +hep-ph/0612153 Phenomenology +hep-ph/0612154 Phenomenology +hep-ph/0612155 Phenomenology +hep-ph/0612156 Phenomenology +hep-ph/0612157 Phenomenology +hep-ph/0612158 Phenomenology +hep-ph/0612161 Phenomenology +hep-ph/0612162 Phenomenology +hep-ph/0612164 Phenomenology +hep-ph/0612165 Phenomenology +hep-ph/0612169 Phenomenology +hep-ph/0612170 Phenomenology +hep-ph/0612174 Phenomenology +hep-ph/0612175 Phenomenology +hep-ph/0612176 Phenomenology +hep-ph/0612178 Phenomenology +hep-ph/0612179 Phenomenology +hep-ph/0612181 Phenomenology +hep-ph/0612183 Phenomenology +hep-ph/0612184 Phenomenology +hep-ph/0612186 Phenomenology +hep-ph/0612187 Phenomenology +hep-ph/0612191 Phenomenology +hep-ph/0612192 Phenomenology +hep-ph/0612195 Phenomenology +hep-ph/0612196 Phenomenology +hep-ph/0612198 Phenomenology +hep-ph/0612200 Phenomenology +hep-ph/0612201 Phenomenology +hep-ph/0612202 Phenomenology +hep-ph/0612203 Phenomenology +hep-ph/0612204 Phenomenology +hep-ph/0612205 Phenomenology +hep-ph/0612206 Phenomenology +hep-ph/0612207 Phenomenology +hep-ph/0612208 Phenomenology +hep-ph/0612209 Phenomenology +hep-ph/0612211 Phenomenology +hep-ph/0612212 Phenomenology +hep-ph/0612214 Phenomenology +hep-ph/0612215 Phenomenology +hep-ph/0612216 Phenomenology +hep-ph/0612218 Phenomenology +hep-ph/0612219 Phenomenology +hep-ph/0612221 Phenomenology +hep-ph/0612222 Phenomenology +hep-ph/0612223 Phenomenology +hep-ph/0612225 Phenomenology +hep-ph/0612229 Phenomenology +hep-ph/0612230 Phenomenology +hep-ph/0612231 Phenomenology +hep-ph/0612235 Phenomenology +hep-ph/0612237 Phenomenology +hep-ph/0612242 Phenomenology +hep-ph/0612243 Phenomenology +hep-ph/0612244 Phenomenology +hep-ph/0612247 Phenomenology +hep-ph/0612248 Phenomenology +hep-ph/0612249 Phenomenology +hep-ph/0612251 Phenomenology +hep-ph/0612252 Phenomenology +hep-ph/0612253 Phenomenology +hep-ph/0612254 Phenomenology +hep-ph/0612256 Phenomenology +hep-ph/0612258 Phenomenology +hep-ph/0612262 Phenomenology +hep-ph/0612265 Phenomenology +hep-ph/0612267 Phenomenology +hep-ph/0612268 Phenomenology +hep-ph/0612269 Phenomenology +hep-ph/0612270 Phenomenology +hep-ph/0612271 Phenomenology +hep-ph/0612273 Phenomenology +hep-ph/0612278 Phenomenology +hep-ph/0612279 Phenomenology +hep-ph/0612280 Phenomenology +hep-ph/0612283 Phenomenology +hep-ph/0612284 Phenomenology +hep-ph/0612287 Phenomenology +hep-ph/0612288 Phenomenology +hep-ph/0612290 Phenomenology +hep-ph/0612291 Phenomenology +hep-ph/0612294 Phenomenology +hep-ph/0612295 Phenomenology +hep-ph/0612297 Phenomenology +hep-ph/0612299 Phenomenology +hep-ph/0612301 Phenomenology +hep-ph/0612304 Phenomenology +hep-ph/0612306 Phenomenology +hep-ph/0612307 Phenomenology +hep-ph/0612310 Phenomenology +hep-ph/0612314 Phenomenology +hep-ph/0612315 Phenomenology +hep-ph/0612317 Phenomenology +hep-ph/0612319 Phenomenology +hep-ph/0612320 Phenomenology +hep-ph/0612322 Phenomenology +hep-ph/0612323 Phenomenology +hep-ph/0612327 Phenomenology +hep-ph/0612328 Phenomenology +hep-ph/0612330 Phenomenology +hep-ph/0612331 Phenomenology +hep-ph/0612332 Phenomenology +hep-ph/0612342 Phenomenology +hep-ph/0612343 Phenomenology +hep-ph/0612344 Phenomenology +hep-ph/0612345 Phenomenology +hep-ph/0612346 Phenomenology +hep-ph/0612348 Phenomenology +hep-ph/0612349 Phenomenology +hep-ph/0612350 Phenomenology +hep-ph/0612351 Phenomenology +hep-ph/0612352 Phenomenology +hep-ph/0612353 Phenomenology +hep-ph/0612354 Phenomenology +hep-ph/0612357 Phenomenology +hep-ph/0612359 Phenomenology +hep-ph/0612360 Phenomenology +hep-ph/0612361 Phenomenology +hep-ph/0612362 Phenomenology +hep-ph/0612363 Phenomenology +hep-ph/0612365 Phenomenology +hep-ph/0612366 Phenomenology +hep-ph/0612369 Phenomenology +hep-ph/0612370 Phenomenology +hep-ph/0612371 Phenomenology +hep-ph/0612372 Phenomenology +hep-ph/0701001 Phenomenology +hep-ph/0701002 Phenomenology +hep-ph/0701004 Phenomenology +hep-ph/0701005 Phenomenology +hep-ph/0701007 Phenomenology +hep-ph/0701008 Phenomenology +hep-ph/0701010 Phenomenology +hep-ph/0701011 Phenomenology +hep-ph/0701012 Phenomenology +hep-ph/0701013 Phenomenology +hep-ph/0701014 Phenomenology +hep-ph/0701015 Phenomenology +hep-ph/0701016 Phenomenology +hep-ph/0701017 Phenomenology +hep-ph/0701018 Phenomenology +hep-ph/0701019 Phenomenology +hep-ph/0701020 Phenomenology +hep-ph/0701022 Phenomenology +hep-ph/0701023 Phenomenology +hep-ph/0701025 Phenomenology +hep-ph/0701027 Phenomenology +hep-ph/0701028 Phenomenology +hep-ph/0701029 Phenomenology +hep-ph/0701031 Phenomenology +hep-ph/0701032 Phenomenology +hep-ph/0701037 Phenomenology +hep-ph/0701038 Phenomenology +hep-ph/0701039 Phenomenology +hep-ph/0701040 Phenomenology +hep-ph/0701041 Phenomenology +hep-ph/0701042 Phenomenology +hep-ph/0701043 Phenomenology +hep-ph/0701044 Phenomenology +hep-ph/0701045 Phenomenology +hep-ph/0701046 Phenomenology +hep-ph/0701047 Phenomenology +hep-ph/0701048 Phenomenology +hep-ph/0701050 Phenomenology +hep-ph/0701051 Phenomenology +hep-ph/0701052 Phenomenology +hep-ph/0701054 Phenomenology +hep-ph/0701056 Phenomenology +hep-ph/0701057 Phenomenology +hep-ph/0701060 Phenomenology +hep-ph/0701062 Phenomenology +hep-ph/0701063 Phenomenology +hep-ph/0701064 Phenomenology +hep-ph/0701065 Phenomenology +hep-ph/0701068 Phenomenology +hep-ph/0701070 Phenomenology +hep-ph/0701072 Phenomenology +hep-ph/0701073 Phenomenology +hep-ph/0701074 Phenomenology +hep-ph/0701075 Phenomenology +hep-ph/0701076 Phenomenology +hep-ph/0701077 Phenomenology +hep-ph/0701078 Phenomenology +hep-ph/0701080 Phenomenology +hep-ph/0701081 Phenomenology +hep-ph/0701082 Phenomenology +hep-ph/0701083 Phenomenology +hep-ph/0701085 Phenomenology +hep-ph/0701086 Phenomenology +hep-ph/0701087 Phenomenology +hep-ph/0701088 Phenomenology +hep-ph/0701089 Phenomenology +hep-ph/0701091 Phenomenology +hep-ph/0701093 Phenomenology +hep-ph/0701097 Phenomenology +hep-ph/0701098 Phenomenology +hep-ph/0701099 Phenomenology +hep-ph/0701103 Phenomenology +hep-ph/0701104 Phenomenology +hep-ph/0701105 Phenomenology +hep-ph/0701106 Phenomenology +hep-ph/0701109 Phenomenology +hep-ph/0701110 Phenomenology +hep-ph/0701111 Phenomenology +hep-ph/0701117 Phenomenology +hep-ph/0701119 Phenomenology +hep-ph/0701123 Phenomenology +hep-ph/0701126 Phenomenology +hep-ph/0701131 Phenomenology +hep-ph/0701132 Phenomenology +hep-ph/0701133 Phenomenology +hep-ph/0701134 Phenomenology +hep-ph/0701135 Phenomenology +hep-ph/0701136 Phenomenology +hep-ph/0701138 Phenomenology +hep-ph/0701140 Phenomenology +hep-ph/0701141 Phenomenology +hep-ph/0701142 Phenomenology +hep-ph/0701143 Phenomenology +hep-ph/0701144 Phenomenology +hep-ph/0701145 Phenomenology +hep-ph/0701149 Phenomenology +hep-ph/0701152 Phenomenology +hep-ph/0701154 Phenomenology +hep-ph/0701155 Phenomenology +hep-ph/0701156 Phenomenology +hep-ph/0701157 Phenomenology +hep-ph/0701159 Phenomenology +hep-ph/0701160 Phenomenology +hep-ph/0701162 Phenomenology +hep-ph/0701163 Phenomenology +hep-ph/0701164 Phenomenology +hep-ph/0701165 Phenomenology +hep-ph/0701167 Phenomenology +hep-ph/0701168 Phenomenology +hep-ph/0701169 Phenomenology +hep-ph/0701170 Phenomenology +hep-ph/0701171 Phenomenology +hep-ph/0701173 Phenomenology +hep-ph/0701175 Phenomenology +hep-ph/0701176 Phenomenology +hep-ph/0701177 Phenomenology +hep-ph/0701178 Phenomenology +hep-ph/0701179 Phenomenology +hep-ph/0701181 Phenomenology +hep-ph/0701182 Phenomenology +hep-ph/0701183 Phenomenology +hep-ph/0701185 Phenomenology +hep-ph/0701186 Phenomenology +hep-ph/0701187 Phenomenology +hep-ph/0701188 Phenomenology +hep-ph/0701189 Phenomenology +hep-ph/0701190 Phenomenology +hep-ph/0701191 Phenomenology +hep-ph/0701192 Phenomenology +hep-ph/0701193 Phenomenology +hep-ph/0701194 Phenomenology +hep-ph/0701196 Phenomenology +hep-ph/0701197 Phenomenology +hep-ph/0701198 Phenomenology +hep-ph/0701199 Phenomenology +hep-ph/0701202 Phenomenology +hep-ph/0701203 Phenomenology +hep-ph/0701204 Phenomenology +hep-ph/0701205 Phenomenology +hep-ph/0701206 Phenomenology +hep-ph/0701207 Phenomenology +hep-ph/0701209 Phenomenology +hep-ph/0701211 Phenomenology +hep-ph/0701212 Phenomenology +hep-ph/0701214 Phenomenology +hep-ph/0701215 Phenomenology +hep-ph/0701219 Phenomenology +hep-ph/0701220 Phenomenology +hep-ph/0701221 Phenomenology +hep-ph/0701222 Phenomenology +hep-ph/0701223 Phenomenology +hep-ph/0701225 Phenomenology +hep-ph/0701230 Phenomenology +hep-ph/0701231 Phenomenology +hep-ph/0701234 Phenomenology +hep-ph/0701235 Phenomenology +hep-ph/0701236 Phenomenology +hep-ph/0701237 Phenomenology +hep-ph/0701240 Phenomenology +hep-ph/0701241 Phenomenology +hep-ph/0701242 Phenomenology +hep-ph/0701244 Phenomenology +hep-ph/0701245 Phenomenology +hep-ph/0701246 Phenomenology +hep-ph/0701247 Phenomenology +hep-ph/0701249 Phenomenology +hep-ph/0701251 Phenomenology +hep-ph/0701254 Phenomenology +hep-ph/0701255 Phenomenology +hep-ph/0701256 Phenomenology +hep-ph/0701257 Phenomenology +hep-ph/0701258 Phenomenology +hep-ph/0701261 Phenomenology +hep-ph/0701262 Phenomenology +hep-ph/0701263 Phenomenology +hep-ph/0701264 Phenomenology +hep-ph/0701265 Phenomenology +hep-ph/0701267 Phenomenology +hep-ph/0701269 Phenomenology +hep-ph/0701270 Phenomenology +hep-ph/0701272 Phenomenology +hep-ph/0701275 Phenomenology +hep-ph/0701276 Phenomenology +hep-ph/0701277 Phenomenology +hep-ph/0702002 Phenomenology +hep-ph/0702003 Phenomenology +hep-ph/0702005 Phenomenology +hep-ph/0702007 Phenomenology +hep-ph/0702009 Phenomenology +hep-ph/0702011 Phenomenology +hep-ph/0702012 Phenomenology +hep-ph/0702014 Phenomenology +hep-ph/0702019 Phenomenology +hep-ph/0702020 Phenomenology +hep-ph/0702021 Phenomenology +hep-ph/0702022 Phenomenology +hep-ph/0702023 Phenomenology +hep-ph/0702026 Phenomenology +hep-ph/0702027 Phenomenology +hep-ph/0702028 Phenomenology +hep-ph/0702030 Phenomenology +hep-ph/0702033 Phenomenology +hep-ph/0702034 Phenomenology +hep-ph/0702036 Phenomenology +hep-ph/0702040 Phenomenology +hep-ph/0702041 Phenomenology +hep-ph/0702042 Phenomenology +hep-ph/0702043 Phenomenology +hep-ph/0702047 Phenomenology +hep-ph/0702048 Phenomenology +hep-ph/0702049 Phenomenology +hep-ph/0702050 Phenomenology +hep-ph/0702053 Phenomenology +hep-ph/0702054 Phenomenology +hep-ph/0702055 Phenomenology +hep-ph/0702058 Phenomenology +hep-ph/0702059 Phenomenology +hep-ph/0702060 Phenomenology +hep-ph/0702061 Phenomenology +hep-ph/0702063 Phenomenology +hep-ph/0702065 Phenomenology +hep-ph/0702067 Phenomenology +hep-ph/0702068 Phenomenology +hep-ph/0702069 Phenomenology +hep-ph/0702070 Phenomenology +hep-ph/0702071 Phenomenology +hep-ph/0702072 Phenomenology +hep-ph/0702073 Phenomenology +hep-ph/0702074 Phenomenology +hep-ph/0702075 Phenomenology +hep-ph/0702077 Phenomenology +hep-ph/0702078 Phenomenology +hep-ph/0702079 Phenomenology +hep-ph/0702081 Phenomenology +hep-ph/0702083 Phenomenology +hep-ph/0702085 Phenomenology +hep-ph/0702089 Phenomenology +hep-ph/0702093 Phenomenology +hep-ph/0702095 Phenomenology +hep-ph/0702096 Phenomenology +hep-ph/0702097 Phenomenology +hep-ph/0702098 Phenomenology +hep-ph/0702099 Phenomenology +hep-ph/0702102 Phenomenology +hep-ph/0702103 Phenomenology +hep-ph/0702104 Phenomenology +hep-ph/0702105 Phenomenology +hep-ph/0702106 Phenomenology +hep-ph/0702107 Phenomenology +hep-ph/0702109 Phenomenology +hep-ph/0702110 Phenomenology +hep-ph/0702111 Phenomenology +hep-ph/0702112 Phenomenology +hep-ph/0702113 Phenomenology +hep-ph/0702115 Phenomenology +hep-ph/0702116 Phenomenology +hep-ph/0702118 Phenomenology +hep-ph/0702119 Phenomenology +hep-ph/0702121 Phenomenology +hep-ph/0702122 Phenomenology +hep-ph/0702125 Phenomenology +hep-ph/0702126 Phenomenology +hep-ph/0702128 Phenomenology +hep-ph/0702129 Phenomenology +hep-ph/0702131 Phenomenology +hep-ph/0702132 Phenomenology +hep-ph/0702133 Phenomenology +hep-ph/0702134 Phenomenology +hep-ph/0702138 Phenomenology +hep-ph/0702139 Phenomenology +hep-ph/0702140 Phenomenology +hep-ph/0702142 Phenomenology +hep-ph/0702143 Phenomenology +hep-ph/0702144 Phenomenology +hep-ph/0702147 Phenomenology +hep-ph/0702154 Phenomenology +hep-ph/0702155 Phenomenology +hep-ph/0702156 Phenomenology +hep-ph/0702157 Phenomenology +hep-ph/0702158 Phenomenology +hep-ph/0702159 Phenomenology +hep-ph/0702162 Phenomenology +hep-ph/0702163 Phenomenology +hep-ph/0702164 Phenomenology +hep-ph/0702166 Phenomenology +hep-ph/0702167 Phenomenology +hep-ph/0702169 Phenomenology +hep-ph/0702170 Phenomenology +hep-ph/0702171 Phenomenology +hep-ph/0702172 Phenomenology +hep-ph/0702174 Phenomenology +hep-ph/0702175 Phenomenology +hep-ph/0702176 Phenomenology +hep-ph/0702177 Phenomenology +hep-ph/0702178 Phenomenology +hep-ph/0702179 Phenomenology +hep-ph/0702180 Phenomenology +hep-ph/0702181 Phenomenology +hep-ph/0702182 Phenomenology +hep-ph/0702183 Phenomenology +hep-ph/0702185 Phenomenology +hep-ph/0702187 Phenomenology +hep-ph/0702188 Phenomenology +hep-ph/0702189 Phenomenology +hep-ph/0702190 Phenomenology +hep-ph/0702191 Phenomenology +hep-ph/0702193 Phenomenology +hep-ph/0702196 Phenomenology +hep-ph/0702201 Phenomenology +hep-ph/0702204 Phenomenology +hep-ph/0702205 Phenomenology +hep-ph/0702207 Phenomenology +hep-ph/0702208 Phenomenology +hep-ph/0702209 Phenomenology +hep-ph/0702210 Phenomenology +hep-ph/0702211 Phenomenology +hep-ph/0702213 Phenomenology +hep-ph/0702214 Phenomenology +hep-ph/0702215 Phenomenology +hep-ph/0702216 Phenomenology +hep-ph/0702217 Phenomenology +hep-ph/0702218 Phenomenology +hep-ph/0702221 Phenomenology +hep-ph/0702222 Phenomenology +hep-ph/0702223 Phenomenology +hep-ph/0702225 Phenomenology +hep-ph/0702226 Phenomenology +hep-ph/0702227 Phenomenology +hep-ph/0702230 Phenomenology +hep-ph/0702231 Phenomenology +hep-ph/0702236 Phenomenology +hep-ph/0702237 Phenomenology +hep-ph/0702238 Phenomenology +hep-ph/0702239 Phenomenology +hep-ph/0702241 Phenomenology +hep-ph/0702242 Phenomenology +hep-ph/0702243 Phenomenology +hep-ph/0702246 Phenomenology +hep-ph/0702247 Phenomenology +hep-ph/0702248 Phenomenology +hep-ph/0702249 Phenomenology +hep-ph/0702250 Phenomenology +hep-ph/0702251 Phenomenology +hep-ph/0702254 Phenomenology +hep-ph/0702255 Phenomenology +hep-ph/0702256 Phenomenology +hep-ph/0702258 Phenomenology +hep-ph/0702260 Phenomenology +hep-ph/0702261 Phenomenology +hep-ph/0702262 Phenomenology +hep-ph/0702263 Phenomenology +hep-ph/0702264 Phenomenology +hep-ph/0702265 Phenomenology +hep-ph/0702267 Phenomenology +hep-ph/0702269 Phenomenology +hep-ph/0702272 Phenomenology +hep-ph/0702274 Phenomenology +hep-ph/0702275 Phenomenology +hep-ph/0702276 Phenomenology +hep-ph/0702281 Phenomenology +hep-ph/0702282 Phenomenology +hep-ph/0702284 Phenomenology +hep-ph/0702285 Phenomenology +hep-ph/0702288 Phenomenology +hep-ph/0702290 Phenomenology +hep-ph/0702291 Phenomenology +hep-ph/0702292 Phenomenology +hep-ph/0702293 Phenomenology +hep-ph/0702294 Phenomenology +hep-ph/0702296 Phenomenology +hep-ph/0703002 Phenomenology +hep-ph/0703003 Phenomenology +hep-ph/0703005 Phenomenology +hep-ph/0703006 Phenomenology +hep-ph/0703007 Phenomenology +hep-ph/0703009 Phenomenology +hep-ph/0703010 Phenomenology +hep-ph/0703011 Phenomenology +hep-ph/0703012 Phenomenology +hep-ph/0703013 Phenomenology +hep-ph/0703015 Phenomenology +hep-ph/0703016 Phenomenology +hep-ph/0703017 Phenomenology +hep-ph/0703020 Phenomenology +hep-ph/0703022 Phenomenology +hep-ph/0703025 Phenomenology +hep-ph/0703029 Phenomenology +hep-ph/0703032 Phenomenology +hep-ph/0703033 Phenomenology +hep-ph/0703035 Phenomenology +hep-ph/0703038 Phenomenology +hep-ph/0703040 Phenomenology +hep-ph/0703041 Phenomenology +hep-ph/0703042 Phenomenology +hep-ph/0703043 Phenomenology +hep-ph/0703044 Phenomenology +hep-ph/0703045 Phenomenology +hep-ph/0703046 Phenomenology +hep-ph/0703047 Phenomenology +hep-ph/0703049 Phenomenology +hep-ph/0703051 Phenomenology +hep-ph/0703053 Phenomenology +hep-ph/0703055 Phenomenology +hep-ph/0703057 Phenomenology +hep-ph/0703059 Phenomenology +hep-ph/0703061 Phenomenology +hep-ph/0703063 Phenomenology +hep-ph/0703064 Phenomenology +hep-ph/0703066 Phenomenology +hep-ph/0703067 Phenomenology +hep-ph/0703069 Phenomenology +hep-ph/0703070 Phenomenology +hep-ph/0703071 Phenomenology +hep-ph/0703072 Phenomenology +hep-ph/0703074 Phenomenology +hep-ph/0703076 Phenomenology +hep-ph/0703077 Phenomenology +hep-ph/0703078 Phenomenology +hep-ph/0703079 Phenomenology +hep-ph/0703080 Phenomenology +hep-ph/0703081 Phenomenology +hep-ph/0703082 Phenomenology +hep-ph/0703083 Phenomenology +hep-ph/0703084 Phenomenology +hep-ph/0703089 Phenomenology +hep-ph/0703090 Phenomenology +hep-ph/0703091 Phenomenology +hep-ph/0703092 Phenomenology +hep-ph/0703094 Phenomenology +hep-ph/0703095 Phenomenology +hep-ph/0703096 Phenomenology +hep-ph/0703097 Phenomenology +hep-ph/0703098 Phenomenology +hep-ph/0703099 Phenomenology +hep-ph/0703103 Phenomenology +hep-ph/0703106 Phenomenology +hep-ph/0703107 Phenomenology +hep-ph/0703111 Phenomenology +hep-ph/0703120 Phenomenology +hep-ph/0703122 Phenomenology +hep-ph/0703129 Phenomenology +hep-ph/0703130 Phenomenology +hep-ph/0703133 Phenomenology +hep-ph/0703137 Phenomenology +hep-ph/0703138 Phenomenology +hep-ph/0703140 Phenomenology +hep-ph/0703141 Phenomenology +hep-ph/0703142 Phenomenology +hep-ph/0703144 Phenomenology +hep-ph/0703146 Phenomenology +hep-ph/0703147 Phenomenology +hep-ph/0703148 Phenomenology +hep-ph/0703149 Phenomenology +hep-ph/0703150 Phenomenology +hep-ph/0703151 Phenomenology +hep-ph/0703152 Phenomenology +hep-ph/0703153 Phenomenology +hep-ph/0703154 Phenomenology +hep-ph/0703155 Phenomenology +hep-ph/0703157 Phenomenology +hep-ph/0703159 Phenomenology +hep-ph/0703160 Phenomenology +hep-ph/0703162 Phenomenology +hep-ph/0703166 Phenomenology +hep-ph/0703167 Phenomenology +hep-ph/0703168 Phenomenology +hep-ph/0703169 Phenomenology +hep-ph/0703172 Phenomenology +hep-ph/0703174 Phenomenology +hep-ph/0703175 Phenomenology +hep-ph/0703176 Phenomenology +hep-ph/0703177 Phenomenology +hep-ph/0703178 Phenomenology +hep-ph/0703179 Phenomenology +hep-ph/0703181 Phenomenology +hep-ph/0703183 Phenomenology +hep-ph/0703184 Phenomenology +hep-ph/0703186 Phenomenology +hep-ph/0703190 Phenomenology +hep-ph/0703191 Phenomenology +hep-ph/0703195 Phenomenology +hep-ph/0703196 Phenomenology +hep-ph/0703197 Phenomenology +hep-ph/0703199 Phenomenology +hep-ph/0703201 Phenomenology +hep-ph/0703204 Phenomenology +hep-ph/0703205 Phenomenology +hep-ph/0703207 Phenomenology +hep-ph/0703209 Phenomenology +hep-ph/0703211 Phenomenology +hep-ph/0703212 Phenomenology +hep-ph/0703213 Phenomenology +hep-ph/0703215 Phenomenology +hep-ph/0703217 Phenomenology +hep-ph/0703218 Phenomenology +hep-ph/0703219 Phenomenology +hep-ph/0703220 Phenomenology +hep-ph/0703221 Phenomenology +hep-ph/0703222 Phenomenology +hep-ph/0703224 Phenomenology +hep-ph/0703225 Phenomenology +hep-ph/0703227 Phenomenology +hep-ph/0703228 Phenomenology +hep-ph/0703230 Phenomenology +hep-ph/0703231 Phenomenology +hep-ph/0703232 Phenomenology +hep-ph/0703233 Phenomenology +hep-ph/0703234 Phenomenology +hep-ph/0703236 Phenomenology +hep-ph/0703237 Phenomenology +hep-ph/0703239 Phenomenology +hep-ph/0703242 Phenomenology +hep-ph/0703243 Phenomenology +hep-ph/0703246 Phenomenology +hep-ph/0703248 Phenomenology +hep-ph/0703249 Phenomenology +hep-ph/0703251 Phenomenology +hep-ph/0703253 Phenomenology +hep-ph/0703255 Phenomenology +hep-ph/0703256 Phenomenology +hep-ph/0703257 Phenomenology +hep-ph/0703259 Phenomenology +hep-ph/0703260 Phenomenology +hep-ph/0703261 Phenomenology +hep-ph/0703262 Phenomenology +hep-ph/0703264 Phenomenology +hep-ph/0703265 Phenomenology +hep-ph/0703266 Phenomenology +hep-ph/0703269 Phenomenology +hep-ph/0703270 Phenomenology +hep-ph/0703272 Phenomenology +hep-ph/0703273 Phenomenology +hep-ph/0703276 Phenomenology +hep-ph/0703277 Phenomenology +hep-ph/0703278 Phenomenology +hep-ph/0703280 Phenomenology +hep-ph/0703283 Phenomenology +hep-ph/0703284 Phenomenology +hep-ph/0703285 Phenomenology +hep-ph/0703286 Phenomenology +hep-ph/0703289 Phenomenology +hep-ph/0703291 Phenomenology +hep-ph/0703294 Phenomenology +hep-ph/0703295 Phenomenology +hep-ph/0703296 Phenomenology +hep-ph/0703298 Phenomenology +hep-ph/0703299 Phenomenology +hep-ph/0703300 Phenomenology +hep-ph/0703301 Phenomenology +hep-ph/0703303 Phenomenology +hep-ph/0703304 Phenomenology +hep-ph/0703306 Phenomenology +hep-ph/0703308 Phenomenology +hep-ph/0703311 Phenomenology +hep-ph/0703312 Phenomenology +hep-ph/0703313 Phenomenology +hep-ph/0703315 Phenomenology +hep-ph/0703316 Phenomenology +hep-ph/0703318 Phenomenology +hep-ph/0703320 Phenomenology +hep-ph/9204207 Phenomenology +hep-ph/9205229 Phenomenology +hep-ph/9205230 Phenomenology +hep-ph/9205237 Phenomenology +hep-ph/9205243 Phenomenology +hep-ph/9206203 Phenomenology +hep-ph/9206224 Phenomenology +hep-ph/9206227 Phenomenology +hep-ph/9206247 Phenomenology +hep-ph/9206249 Phenomenology +hep-ph/9206254 Phenomenology +hep-ph/9207209 Phenomenology +hep-ph/9207210 Phenomenology +hep-ph/9207234 Phenomenology +hep-ph/9207253 Phenomenology +hep-ph/9208228 Phenomenology +hep-ph/9208230 Phenomenology +hep-ph/9208238 Phenomenology +hep-ph/9208248 Phenomenology +hep-ph/9208251 Phenomenology +hep-ph/9209206 Phenomenology +hep-ph/9209217 Phenomenology +hep-ph/9209224 Phenomenology +hep-ph/9209231 Phenomenology +hep-ph/9209233 Phenomenology +hep-ph/9209241 Phenomenology +hep-ph/9209259 Phenomenology +hep-ph/9209276 Phenomenology +hep-ph/9209285 Phenomenology +hep-ph/9209297 Phenomenology +hep-ph/9210221 Phenomenology +hep-ph/9210223 Phenomenology +hep-ph/9210258 Phenomenology +hep-ph/9210265 Phenomenology +hep-ph/9210279 Phenomenology +hep-ph/9210281 Phenomenology +hep-ph/9211214 Phenomenology +hep-ph/9211225 Phenomenology +hep-ph/9211244 Phenomenology +hep-ph/9211296 Phenomenology +hep-ph/9211307 Phenomenology +hep-ph/9211320 Phenomenology +hep-ph/9212206 Phenomenology +hep-ph/9212207 Phenomenology +hep-ph/9212219 Phenomenology +hep-ph/9212245 Phenomenology +hep-ph/9212253 Phenomenology +hep-ph/9212278 Phenomenology +hep-ph/9212294 Phenomenology +hep-ph/9212295 Phenomenology +hep-ph/9212308 Phenomenology +hep-ph/9301202 Phenomenology +hep-ph/9301211 Phenomenology +hep-ph/9301239 Phenomenology +hep-ph/9301247 Phenomenology +hep-ph/9301253 Phenomenology +hep-ph/9301254 Phenomenology +hep-ph/9301280 Phenomenology +hep-ph/9302206 Phenomenology +hep-ph/9302225 Phenomenology +hep-ph/9302226 Phenomenology +hep-ph/9302227 Phenomenology +hep-ph/9302249 Phenomenology +hep-ph/9302251 Phenomenology +hep-ph/9302252 Phenomenology +hep-ph/9302253 Phenomenology +hep-ph/9302262 Phenomenology +hep-ph/9302285 Phenomenology +hep-ph/9302292 Phenomenology +hep-ph/9302317 Phenomenology +hep-ph/9302318 Phenomenology +hep-ph/9303202 Phenomenology +hep-ph/9303223 Phenomenology +hep-ph/9303259 Phenomenology +hep-ph/9303263 Phenomenology +hep-ph/9303271 Phenomenology +hep-ph/9303287 Phenomenology +hep-ph/9303291 Phenomenology +hep-ph/9303306 Phenomenology +hep-ph/9304223 Phenomenology +hep-ph/9304241 Phenomenology +hep-ph/9304242 Phenomenology +hep-ph/9304243 Phenomenology +hep-ph/9304247 Phenomenology +hep-ph/9304262 Phenomenology +hep-ph/9304311 Phenomenology +hep-ph/9305232 Phenomenology +hep-ph/9305254 Phenomenology +hep-ph/9305336 Phenomenology +hep-ph/9306216 Phenomenology +hep-ph/9306221 Phenomenology +hep-ph/9306239 Phenomenology +hep-ph/9306251 Phenomenology +hep-ph/9306305 Phenomenology +hep-ph/9306326 Phenomenology +hep-ph/9306332 Phenomenology +hep-ph/9307208 Phenomenology +hep-ph/9307213 Phenomenology +hep-ph/9307243 Phenomenology +hep-ph/9307244 Phenomenology +hep-ph/9307245 Phenomenology +hep-ph/9307296 Phenomenology +hep-ph/9307302 Phenomenology +hep-ph/9307320 Phenomenology +hep-ph/9307336 Phenomenology +hep-ph/9308204 Phenomenology +hep-ph/9308234 Phenomenology +hep-ph/9308258 Phenomenology +hep-ph/9308260 Phenomenology +hep-ph/9308261 Phenomenology +hep-ph/9308278 Phenomenology +hep-ph/9308292 Phenomenology +hep-ph/9308294 Phenomenology +hep-ph/9308295 Phenomenology +hep-ph/9308327 Phenomenology +hep-ph/9308337 Phenomenology +hep-ph/9308347 Phenomenology +hep-ph/9308350 Phenomenology +hep-ph/9308362 Phenomenology +hep-ph/9309221 Phenomenology +hep-ph/9309223 Phenomenology +hep-ph/9309225 Phenomenology +hep-ph/9309247 Phenomenology +hep-ph/9309248 Phenomenology +hep-ph/9309252 Phenomenology +hep-ph/9309266 Phenomenology +hep-ph/9309275 Phenomenology +hep-ph/9309293 Phenomenology +hep-ph/9309310 Phenomenology +hep-ph/9309328 Phenomenology +hep-ph/9309333 Phenomenology +hep-ph/9309335 Phenomenology +hep-ph/9310215 Phenomenology +hep-ph/9310225 Phenomenology +hep-ph/9310233 Phenomenology +hep-ph/9310246 Phenomenology +hep-ph/9310256 Phenomenology +hep-ph/9310325 Phenomenology +hep-ph/9310349 Phenomenology +hep-ph/9312215 Phenomenology +hep-ph/9312250 Phenomenology +hep-ph/9312269 Phenomenology +hep-ph/9312306 Phenomenology +hep-ph/9312341 Phenomenology +hep-ph/9312356 Phenomenology +hep-ph/9401209 Phenomenology +hep-ph/9402203 Phenomenology +hep-ph/9402243 Phenomenology +hep-ph/9402251 Phenomenology +hep-ph/9402293 Phenomenology +hep-ph/9402328 Phenomenology +hep-ph/9403224 Phenomenology +hep-ph/9403296 Phenomenology +hep-ph/9403316 Phenomenology +hep-ph/9403317 Phenomenology +hep-ph/9403347 Phenomenology +hep-ph/9403360 Phenomenology +hep-ph/9403372 Phenomenology +hep-ph/9403384 Phenomenology +hep-ph/9404209 Phenomenology +hep-ph/9404239 Phenomenology +hep-ph/9404294 Phenomenology +hep-ph/9404327 Phenomenology +hep-ph/9405216 Phenomenology +hep-ph/9405267 Phenomenology +hep-ph/9405273 Phenomenology +hep-ph/9405352 Phenomenology +hep-ph/9405373 Phenomenology +hep-ph/9406204 Phenomenology +hep-ph/9406284 Phenomenology +hep-ph/9406287 Phenomenology +hep-ph/9406296 Phenomenology +hep-ph/9406347 Phenomenology +hep-ph/9406360 Phenomenology +hep-ph/9406396 Phenomenology +hep-ph/9407285 Phenomenology +hep-ph/9407286 Phenomenology +hep-ph/9407321 Phenomenology +hep-ph/9407359 Phenomenology +hep-ph/9407381 Phenomenology +hep-ph/9407395 Phenomenology +hep-ph/9408207 Phenomenology +hep-ph/9408253 Phenomenology +hep-ph/9408301 Phenomenology +hep-ph/9408312 Phenomenology +hep-ph/9408397 Phenomenology +hep-ph/9408406 Phenomenology +hep-ph/9409270 Phenomenology +hep-ph/9409335 Phenomenology +hep-ph/9409362 Phenomenology +hep-ph/9409380 Phenomenology +hep-ph/9409392 Phenomenology +hep-ph/9409431 Phenomenology +hep-ph/9409436 Phenomenology +hep-ph/9409461 Phenomenology +hep-ph/9409464 Phenomenology +hep-ph/9410205 Phenomenology +hep-ph/9410217 Phenomenology +hep-ph/9410234 Phenomenology +hep-ph/9410245 Phenomenology +hep-ph/9410315 Phenomenology +hep-ph/9410340 Phenomenology +hep-ph/9410376 Phenomenology +hep-ph/9411203 Phenomenology +hep-ph/9411234 Phenomenology +hep-ph/9411268 Phenomenology +hep-ph/9411285 Phenomenology +hep-ph/9411286 Phenomenology +hep-ph/9411301 Phenomenology +hep-ph/9411388 Phenomenology +hep-ph/9411392 Phenomenology +hep-ph/9411397 Phenomenology +hep-ph/9412213 Phenomenology +hep-ph/9412259 Phenomenology +hep-ph/9412269 Phenomenology +hep-ph/9412309 Phenomenology +hep-ph/9412313 Phenomenology +hep-ph/9412322 Phenomenology +hep-ph/9412338 Phenomenology +hep-ph/9412348 Phenomenology +hep-ph/9412352 Phenomenology +hep-ph/9412353 Phenomenology +hep-ph/9412393 Phenomenology +hep-ph/9412399 Phenomenology +hep-ph/9501251 Phenomenology +hep-ph/9501304 Phenomenology +hep-ph/9502274 Phenomenology +hep-ph/9502276 Phenomenology +hep-ph/9502295 Phenomenology +hep-ph/9503332 Phenomenology +hep-ph/9503406 Phenomenology +hep-ph/9503414 Phenomenology +hep-ph/9503437 Phenomenology +hep-ph/9503442 Phenomenology +hep-ph/9503448 Phenomenology +hep-ph/9503488 Phenomenology +hep-ph/9504220 Phenomenology +hep-ph/9504230 Phenomenology +hep-ph/9504243 Phenomenology +hep-ph/9504258 Phenomenology +hep-ph/9504264 Phenomenology +hep-ph/9504274 Phenomenology +hep-ph/9504316 Phenomenology +hep-ph/9504318 Phenomenology +hep-ph/9504322 Phenomenology +hep-ph/9504333 Phenomenology +hep-ph/9504355 Phenomenology +hep-ph/9504414 Phenomenology +hep-ph/9504426 Phenomenology +hep-ph/9505204 Phenomenology +hep-ph/9505205 Phenomenology +hep-ph/9505215 Phenomenology +hep-ph/9505281 Phenomenology +hep-ph/9505294 Phenomenology +hep-ph/9505318 Phenomenology +hep-ph/9505322 Phenomenology +hep-ph/9505360 Phenomenology +hep-ph/9505367 Phenomenology +hep-ph/9505375 Phenomenology +hep-ph/9505394 Phenomenology +hep-ph/9505405 Phenomenology +hep-ph/9505416 Phenomenology +hep-ph/9505419 Phenomenology +hep-ph/9505425 Phenomenology +hep-ph/9506204 Phenomenology +hep-ph/9506226 Phenomenology +hep-ph/9506289 Phenomenology +hep-ph/9506305 Phenomenology +hep-ph/9506308 Phenomenology +hep-ph/9506356 Phenomenology +hep-ph/9506359 Phenomenology +hep-ph/9506375 Phenomenology +hep-ph/9506391 Phenomenology +hep-ph/9506406 Phenomenology +hep-ph/9506410 Phenomenology +hep-ph/9506427 Phenomenology +hep-ph/9506430 Phenomenology +hep-ph/9506442 Phenomenology +hep-ph/9506448 Phenomenology +hep-ph/9507213 Phenomenology +hep-ph/9507218 Phenomenology +hep-ph/9507227 Phenomenology +hep-ph/9507251 Phenomenology +hep-ph/9507275 Phenomenology +hep-ph/9507287 Phenomenology +hep-ph/9507315 Phenomenology +hep-ph/9507316 Phenomenology +hep-ph/9507326 Phenomenology +hep-ph/9507346 Phenomenology +hep-ph/9507365 Phenomenology +hep-ph/9507372 Phenomenology +hep-ph/9507387 Phenomenology +hep-ph/9507388 Phenomenology +hep-ph/9507392 Phenomenology +hep-ph/9507419 Phenomenology +hep-ph/9507444 Phenomenology +hep-ph/9507449 Phenomenology +hep-ph/9508205 Phenomenology +hep-ph/9508220 Phenomenology +hep-ph/9508225 Phenomenology +hep-ph/9508229 Phenomenology +hep-ph/9508239 Phenomenology +hep-ph/9508248 Phenomenology +hep-ph/9508250 Phenomenology +hep-ph/9508258 Phenomenology +hep-ph/9508259 Phenomenology +hep-ph/9508298 Phenomenology +hep-ph/9508311 Phenomenology +hep-ph/9508321 Phenomenology +hep-ph/9508323 Phenomenology +hep-ph/9508326 Phenomenology +hep-ph/9508343 Phenomenology +hep-ph/9508346 Phenomenology +hep-ph/9508379 Phenomenology +hep-ph/9508381 Phenomenology +hep-ph/9508384 Phenomenology +hep-ph/9508410 Phenomenology +hep-ph/9509213 Phenomenology +hep-ph/9509227 Phenomenology +hep-ph/9509247 Phenomenology +hep-ph/9509255 Phenomenology +hep-ph/9509256 Phenomenology +hep-ph/9509258 Phenomenology +hep-ph/9509260 Phenomenology +hep-ph/9509277 Phenomenology +hep-ph/9509285 Phenomenology +hep-ph/9509289 Phenomenology +hep-ph/9509296 Phenomenology +hep-ph/9509304 Phenomenology +hep-ph/9509305 Phenomenology +hep-ph/9509307 Phenomenology +hep-ph/9509326 Phenomenology +hep-ph/9509348 Phenomenology +hep-ph/9509352 Phenomenology +hep-ph/9509364 Phenomenology +hep-ph/9509366 Phenomenology +hep-ph/9509373 Phenomenology +hep-ph/9509399 Phenomenology +hep-ph/9509411 Phenomenology +hep-ph/9509412 Phenomenology +hep-ph/9509433 Phenomenology +hep-ph/9510212 Phenomenology +hep-ph/9510220 Phenomenology +hep-ph/9510232 Phenomenology +hep-ph/9510242 Phenomenology +hep-ph/9510250 Phenomenology +hep-ph/9510252 Phenomenology +hep-ph/9510258 Phenomenology +hep-ph/9510275 Phenomenology +hep-ph/9510277 Phenomenology +hep-ph/9510284 Phenomenology +hep-ph/9510303 Phenomenology +hep-ph/9510356 Phenomenology +hep-ph/9510367 Phenomenology +hep-ph/9510378 Phenomenology +hep-ph/9510420 Phenomenology +hep-ph/9510421 Phenomenology +hep-ph/9510425 Phenomenology +hep-ph/9511203 Phenomenology +hep-ph/9511205 Phenomenology +hep-ph/9511210 Phenomenology +hep-ph/9511221 Phenomenology +hep-ph/9511259 Phenomenology +hep-ph/9511285 Phenomenology +hep-ph/9511327 Phenomenology +hep-ph/9511331 Phenomenology +hep-ph/9511335 Phenomenology +hep-ph/9511336 Phenomenology +hep-ph/9511337 Phenomenology +hep-ph/9511379 Phenomenology +hep-ph/9511380 Phenomenology +hep-ph/9511397 Phenomenology +hep-ph/9511419 Phenomenology +hep-ph/9511434 Phenomenology +hep-ph/9511441 Phenomenology +hep-ph/9511449 Phenomenology +hep-ph/9511471 Phenomenology +hep-ph/9512231 Phenomenology +hep-ph/9512237 Phenomenology +hep-ph/9512248 Phenomenology +hep-ph/9512268 Phenomenology +hep-ph/9512285 Phenomenology +hep-ph/9512292 Phenomenology +hep-ph/9512321 Phenomenology +hep-ph/9512324 Phenomenology +hep-ph/9512366 Phenomenology +hep-ph/9512373 Phenomenology +hep-ph/9512380 Phenomenology +hep-ph/9512381 Phenomenology +hep-ph/9512399 Phenomenology +hep-ph/9512401 Phenomenology +hep-ph/9512408 Phenomenology +hep-ph/9512427 Phenomenology +hep-ph/9512446 Phenomenology +hep-ph/9601201 Phenomenology +hep-ph/9601210 Phenomenology +hep-ph/9601231 Phenomenology +hep-ph/9601237 Phenomenology +hep-ph/9601309 Phenomenology +hep-ph/9601322 Phenomenology +hep-ph/9601343 Phenomenology +hep-ph/9601351 Phenomenology +hep-ph/9601365 Phenomenology +hep-ph/9601371 Phenomenology +hep-ph/9602227 Phenomenology +hep-ph/9602233 Phenomenology +hep-ph/9602249 Phenomenology +hep-ph/9602258 Phenomenology +hep-ph/9602266 Phenomenology +hep-ph/9602285 Phenomenology +hep-ph/9602294 Phenomenology +hep-ph/9602306 Phenomenology +hep-ph/9602312 Phenomenology +hep-ph/9602315 Phenomenology +hep-ph/9602321 Phenomenology +hep-ph/9602333 Phenomenology +hep-ph/9602359 Phenomenology +hep-ph/9602366 Phenomenology +hep-ph/9602370 Phenomenology +hep-ph/9602372 Phenomenology +hep-ph/9602399 Phenomenology +hep-ph/9602407 Phenomenology +hep-ph/9602432 Phenomenology +hep-ph/9603201 Phenomenology +hep-ph/9603214 Phenomenology +hep-ph/9603256 Phenomenology +hep-ph/9603267 Phenomenology +hep-ph/9603271 Phenomenology +hep-ph/9603294 Phenomenology +hep-ph/9603311 Phenomenology +hep-ph/9603327 Phenomenology +hep-ph/9603349 Phenomenology +hep-ph/9603358 Phenomenology +hep-ph/9603359 Phenomenology +hep-ph/9603364 Phenomenology +hep-ph/9603366 Phenomenology +hep-ph/9603386 Phenomenology +hep-ph/9603390 Phenomenology +hep-ph/9603392 Phenomenology +hep-ph/9603404 Phenomenology +hep-ph/9603420 Phenomenology +hep-ph/9603425 Phenomenology +hep-ph/9603429 Phenomenology +hep-ph/9603433 Phenomenology +hep-ph/9603434 Phenomenology +hep-ph/9603436 Phenomenology +hep-ph/9603443 Phenomenology +hep-ph/9603449 Phenomenology +hep-ph/9604215 Phenomenology +hep-ph/9604242 Phenomenology +hep-ph/9604243 Phenomenology +hep-ph/9604250 Phenomenology +hep-ph/9604257 Phenomenology +hep-ph/9604258 Phenomenology +hep-ph/9604284 Phenomenology +hep-ph/9604313 Phenomenology +hep-ph/9604323 Phenomenology +hep-ph/9604358 Phenomenology +hep-ph/9604364 Phenomenology +hep-ph/9604369 Phenomenology +hep-ph/9604389 Phenomenology +hep-ph/9604406 Phenomenology +hep-ph/9604415 Phenomenology +hep-ph/9605211 Phenomenology +hep-ph/9605234 Phenomenology +hep-ph/9605246 Phenomenology +hep-ph/9605298 Phenomenology +hep-ph/9605317 Phenomenology +hep-ph/9605334 Phenomenology +hep-ph/9605351 Phenomenology +hep-ph/9605364 Phenomenology +hep-ph/9605384 Phenomenology +hep-ph/9605389 Phenomenology +hep-ph/9605400 Phenomenology +hep-ph/9605420 Phenomenology +hep-ph/9605444 Phenomenology +hep-ph/9605452 Phenomenology +hep-ph/9606202 Phenomenology +hep-ph/9606212 Phenomenology +hep-ph/9606268 Phenomenology +hep-ph/9606275 Phenomenology +hep-ph/9606281 Phenomenology +hep-ph/9606293 Phenomenology +hep-ph/9606297 Phenomenology +hep-ph/9606346 Phenomenology +hep-ph/9606354 Phenomenology +hep-ph/9606362 Phenomenology +hep-ph/9606366 Phenomenology +hep-ph/9606381 Phenomenology +hep-ph/9606383 Phenomenology +hep-ph/9606386 Phenomenology +hep-ph/9606394 Phenomenology +hep-ph/9606398 Phenomenology +hep-ph/9606399 Phenomenology +hep-ph/9606402 Phenomenology +hep-ph/9606412 Phenomenology +hep-ph/9606429 Phenomenology +hep-ph/9606449 Phenomenology +hep-ph/9606458 Phenomenology +hep-ph/9606471 Phenomenology +hep-ph/9607226 Phenomenology +hep-ph/9607239 Phenomenology +hep-ph/9607264 Phenomenology +hep-ph/9607285 Phenomenology +hep-ph/9607286 Phenomenology +hep-ph/9607297 Phenomenology +hep-ph/9607305 Phenomenology +hep-ph/9607355 Phenomenology +hep-ph/9607365 Phenomenology +hep-ph/9607367 Phenomenology +hep-ph/9607379 Phenomenology +hep-ph/9607395 Phenomenology +hep-ph/9607399 Phenomenology +hep-ph/9607439 Phenomenology +hep-ph/9607449 Phenomenology +hep-ph/9607452 Phenomenology +hep-ph/9607456 Phenomenology +hep-ph/9607466 Phenomenology +hep-ph/9607473 Phenomenology +hep-ph/9608203 Phenomenology +hep-ph/9608224 Phenomenology +hep-ph/9608231 Phenomenology +hep-ph/9608248 Phenomenology +hep-ph/9608256 Phenomenology +hep-ph/9608299 Phenomenology +hep-ph/9608317 Phenomenology +hep-ph/9608321 Phenomenology +hep-ph/9608329 Phenomenology +hep-ph/9608339 Phenomenology +hep-ph/9608343 Phenomenology +hep-ph/9608388 Phenomenology +hep-ph/9608398 Phenomenology +hep-ph/9608452 Phenomenology +hep-ph/9608459 Phenomenology +hep-ph/9608475 Phenomenology +hep-ph/9609204 Phenomenology +hep-ph/9609216 Phenomenology +hep-ph/9609257 Phenomenology +hep-ph/9609263 Phenomenology +hep-ph/9609287 Phenomenology +hep-ph/9609297 Phenomenology +hep-ph/9609301 Phenomenology +hep-ph/9609306 Phenomenology +hep-ph/9609318 Phenomenology +hep-ph/9609319 Phenomenology +hep-ph/9609323 Phenomenology +hep-ph/9609339 Phenomenology +hep-ph/9609341 Phenomenology +hep-ph/9609342 Phenomenology +hep-ph/9609359 Phenomenology +hep-ph/9609368 Phenomenology +hep-ph/9609371 Phenomenology +hep-ph/9609404 Phenomenology +hep-ph/9609413 Phenomenology +hep-ph/9609428 Phenomenology +hep-ph/9609459 Phenomenology +hep-ph/9609474 Phenomenology +hep-ph/9609488 Phenomenology +hep-ph/9610219 Phenomenology +hep-ph/9610223 Phenomenology +hep-ph/9610233 Phenomenology +hep-ph/9610237 Phenomenology +hep-ph/9610242 Phenomenology +hep-ph/9610258 Phenomenology +hep-ph/9610280 Phenomenology +hep-ph/9610312 Phenomenology +hep-ph/9610313 Phenomenology +hep-ph/9610317 Phenomenology +hep-ph/9610319 Phenomenology +hep-ph/9610325 Phenomenology +hep-ph/9610331 Phenomenology +hep-ph/9610338 Phenomenology +hep-ph/9610375 Phenomenology +hep-ph/9610382 Phenomenology +hep-ph/9610451 Phenomenology +hep-ph/9610470 Phenomenology +hep-ph/9610514 Phenomenology +hep-ph/9610544 Phenomenology +hep-ph/9611217 Phenomenology +hep-ph/9611244 Phenomenology +hep-ph/9611272 Phenomenology +hep-ph/9611277 Phenomenology +hep-ph/9611281 Phenomenology +hep-ph/9611290 Phenomenology +hep-ph/9611292 Phenomenology +hep-ph/9611297 Phenomenology +hep-ph/9611320 Phenomenology +hep-ph/9611327 Phenomenology +hep-ph/9611328 Phenomenology +hep-ph/9611332 Phenomenology +hep-ph/9611333 Phenomenology +hep-ph/9611347 Phenomenology +hep-ph/9611363 Phenomenology +hep-ph/9611365 Phenomenology +hep-ph/9611376 Phenomenology +hep-ph/9611400 Phenomenology +hep-ph/9612211 Phenomenology +hep-ph/9612230 Phenomenology +hep-ph/9612242 Phenomenology +hep-ph/9612252 Phenomenology +hep-ph/9612261 Phenomenology +hep-ph/9612265 Phenomenology +hep-ph/9612268 Phenomenology +hep-ph/9612280 Phenomenology +hep-ph/9612284 Phenomenology +hep-ph/9612286 Phenomenology +hep-ph/9612287 Phenomenology +hep-ph/9612318 Phenomenology +hep-ph/9612347 Phenomenology +hep-ph/9612367 Phenomenology +hep-ph/9612374 Phenomenology +hep-ph/9612377 Phenomenology +hep-ph/9612390 Phenomenology +hep-ph/9612394 Phenomenology +hep-ph/9612413 Phenomenology +hep-ph/9612416 Phenomenology +hep-ph/9612418 Phenomenology +hep-ph/9612450 Phenomenology +hep-ph/9612454 Phenomenology +hep-ph/9612457 Phenomenology +hep-ph/9612471 Phenomenology +hep-ph/9701222 Phenomenology +hep-ph/9701227 Phenomenology +hep-ph/9701248 Phenomenology +hep-ph/9701254 Phenomenology +hep-ph/9701271 Phenomenology +hep-ph/9701301 Phenomenology +hep-ph/9701325 Phenomenology +hep-ph/9701390 Phenomenology +hep-ph/9701392 Phenomenology +hep-ph/9701399 Phenomenology +hep-ph/9701401 Phenomenology +hep-ph/9701402 Phenomenology +hep-ph/9701403 Phenomenology +hep-ph/9701415 Phenomenology +hep-ph/9701418 Phenomenology +hep-ph/9701419 Phenomenology +hep-ph/9701425 Phenomenology +hep-ph/9702255 Phenomenology +hep-ph/9702276 Phenomenology +hep-ph/9702281 Phenomenology +hep-ph/9702290 Phenomenology +hep-ph/9702301 Phenomenology +hep-ph/9702308 Phenomenology +hep-ph/9702314 Phenomenology +hep-ph/9702363 Phenomenology +hep-ph/9702373 Phenomenology +hep-ph/9702381 Phenomenology +hep-ph/9702386 Phenomenology +hep-ph/9702416 Phenomenology +hep-ph/9702436 Phenomenology +hep-ph/9703201 Phenomenology +hep-ph/9703214 Phenomenology +hep-ph/9703220 Phenomenology +hep-ph/9703238 Phenomenology +hep-ph/9703240 Phenomenology +hep-ph/9703246 Phenomenology +hep-ph/9703248 Phenomenology +hep-ph/9703249 Phenomenology +hep-ph/9703253 Phenomenology +hep-ph/9703257 Phenomenology +hep-ph/9703270 Phenomenology +hep-ph/9703271 Phenomenology +hep-ph/9703272 Phenomenology +hep-ph/9703274 Phenomenology +hep-ph/9703275 Phenomenology +hep-ph/9703290 Phenomenology +hep-ph/9703292 Phenomenology +hep-ph/9703306 Phenomenology +hep-ph/9703329 Phenomenology +hep-ph/9703330 Phenomenology +hep-ph/9703358 Phenomenology +hep-ph/9703360 Phenomenology +hep-ph/9703391 Phenomenology +hep-ph/9703397 Phenomenology +hep-ph/9703399 Phenomenology +hep-ph/9703441 Phenomenology +hep-ph/9703454 Phenomenology +hep-ph/9703462 Phenomenology +hep-ph/9704201 Phenomenology +hep-ph/9704238 Phenomenology +hep-ph/9704239 Phenomenology +hep-ph/9704249 Phenomenology +hep-ph/9704274 Phenomenology +hep-ph/9704296 Phenomenology +hep-ph/9704326 Phenomenology +hep-ph/9704339 Phenomenology +hep-ph/9704342 Phenomenology +hep-ph/9704360 Phenomenology +hep-ph/9704361 Phenomenology +hep-ph/9704374 Phenomenology +hep-ph/9704379 Phenomenology +hep-ph/9704432 Phenomenology +hep-ph/9704440 Phenomenology +hep-ph/9705217 Phenomenology +hep-ph/9705221 Phenomenology +hep-ph/9705222 Phenomenology +hep-ph/9705227 Phenomenology +hep-ph/9705230 Phenomenology +hep-ph/9705255 Phenomenology +hep-ph/9705259 Phenomenology +hep-ph/9705268 Phenomenology +hep-ph/9705287 Phenomenology +hep-ph/9705291 Phenomenology +hep-ph/9705302 Phenomenology +hep-ph/9705305 Phenomenology +hep-ph/9705344 Phenomenology +hep-ph/9705351 Phenomenology +hep-ph/9705352 Phenomenology +hep-ph/9705367 Phenomenology +hep-ph/9705368 Phenomenology +hep-ph/9705388 Phenomenology +hep-ph/9705401 Phenomenology +hep-ph/9705435 Phenomenology +hep-ph/9705437 Phenomenology +hep-ph/9705453 Phenomenology +hep-ph/9706210 Phenomenology +hep-ph/9706218 Phenomenology +hep-ph/9706223 Phenomenology +hep-ph/9706239 Phenomenology +hep-ph/9706256 Phenomenology +hep-ph/9706271 Phenomenology +hep-ph/9706293 Phenomenology +hep-ph/9706297 Phenomenology +hep-ph/9706312 Phenomenology +hep-ph/9706331 Phenomenology +hep-ph/9706344 Phenomenology +hep-ph/9706348 Phenomenology +hep-ph/9706381 Phenomenology +hep-ph/9706385 Phenomenology +hep-ph/9706395 Phenomenology +hep-ph/9706423 Phenomenology +hep-ph/9706445 Phenomenology +hep-ph/9706452 Phenomenology +hep-ph/9706454 Phenomenology +hep-ph/9706464 Phenomenology +hep-ph/9706509 Phenomenology +hep-ph/9706510 Phenomenology +hep-ph/9706512 Phenomenology +hep-ph/9706516 Phenomenology +hep-ph/9706526 Phenomenology +hep-ph/9706534 Phenomenology +hep-ph/9706538 Phenomenology +hep-ph/9706540 Phenomenology +hep-ph/9706543 Phenomenology +hep-ph/9706549 Phenomenology +hep-ph/9706551 Phenomenology +hep-ph/9707224 Phenomenology +hep-ph/9707231 Phenomenology +hep-ph/9707248 Phenomenology +hep-ph/9707253 Phenomenology +hep-ph/9707264 Phenomenology +hep-ph/9707296 Phenomenology +hep-ph/9707334 Phenomenology +hep-ph/9707357 Phenomenology +hep-ph/9707371 Phenomenology +hep-ph/9707377 Phenomenology +hep-ph/9707387 Phenomenology +hep-ph/9707407 Phenomenology +hep-ph/9707412 Phenomenology +hep-ph/9707426 Phenomenology +hep-ph/9707431 Phenomenology +hep-ph/9707458 Phenomenology +hep-ph/9707469 Phenomenology +hep-ph/9707474 Phenomenology +hep-ph/9707509 Phenomenology +hep-ph/9707523 Phenomenology +hep-ph/9708222 Phenomenology +hep-ph/9708248 Phenomenology +hep-ph/9708249 Phenomenology +hep-ph/9708250 Phenomenology +hep-ph/9708258 Phenomenology +hep-ph/9708270 Phenomenology +hep-ph/9708280 Phenomenology +hep-ph/9708395 Phenomenology +hep-ph/9708406 Phenomenology +hep-ph/9708431 Phenomenology +hep-ph/9708440 Phenomenology +hep-ph/9708463 Phenomenology +hep-ph/9708469 Phenomenology +hep-ph/9708478 Phenomenology +hep-ph/9708484 Phenomenology +hep-ph/9708488 Phenomenology +hep-ph/9709215 Phenomenology +hep-ph/9709222 Phenomenology +hep-ph/9709264 Phenomenology +hep-ph/9709274 Phenomenology +hep-ph/9709292 Phenomenology +hep-ph/9709305 Phenomenology +hep-ph/9709307 Phenomenology +hep-ph/9709316 Phenomenology +hep-ph/9709319 Phenomenology +hep-ph/9709322 Phenomenology +hep-ph/9709354 Phenomenology +hep-ph/9709371 Phenomenology +hep-ph/9709376 Phenomenology +hep-ph/9709384 Phenomenology +hep-ph/9709413 Phenomenology +hep-ph/9709428 Phenomenology +hep-ph/9709432 Phenomenology +hep-ph/9709442 Phenomenology +hep-ph/9709448 Phenomenology +hep-ph/9709450 Phenomenology +hep-ph/9709453 Phenomenology +hep-ph/9709455 Phenomenology +hep-ph/9709465 Phenomenology +hep-ph/9709487 Phenomenology +hep-ph/9709488 Phenomenology +hep-ph/9710217 Phenomenology +hep-ph/9710235 Phenomenology +hep-ph/9710238 Phenomenology +hep-ph/9710255 Phenomenology +hep-ph/9710308 Phenomenology +hep-ph/9710314 Phenomenology +hep-ph/9710317 Phenomenology +hep-ph/9710319 Phenomenology +hep-ph/9710335 Phenomenology +hep-ph/9710340 Phenomenology +hep-ph/9710360 Phenomenology +hep-ph/9710361 Phenomenology +hep-ph/9710364 Phenomenology +hep-ph/9710390 Phenomenology +hep-ph/9710401 Phenomenology +hep-ph/9710406 Phenomenology +hep-ph/9710433 Phenomenology +hep-ph/9710440 Phenomenology +hep-ph/9710450 Phenomenology +hep-ph/9710463 Phenomenology +hep-ph/9710469 Phenomenology +hep-ph/9710473 Phenomenology +hep-ph/9710474 Phenomenology +hep-ph/9710491 Phenomenology +hep-ph/9710510 Phenomenology +hep-ph/9710517 Phenomenology +hep-ph/9710541 Phenomenology +hep-ph/9711204 Phenomenology +hep-ph/9711236 Phenomenology +hep-ph/9711248 Phenomenology +hep-ph/9711302 Phenomenology +hep-ph/9711321 Phenomenology +hep-ph/9711329 Phenomenology +hep-ph/9711340 Phenomenology +hep-ph/9711346 Phenomenology +hep-ph/9711357 Phenomenology +hep-ph/9711381 Phenomenology +hep-ph/9711442 Phenomenology +hep-ph/9711446 Phenomenology +hep-ph/9711455 Phenomenology +hep-ph/9711459 Phenomenology +hep-ph/9711463 Phenomenology +hep-ph/9711485 Phenomenology +hep-ph/9711488 Phenomenology +hep-ph/9711502 Phenomenology +hep-ph/9711511 Phenomenology +hep-ph/9711517 Phenomenology +hep-ph/9712216 Phenomenology +hep-ph/9712245 Phenomenology +hep-ph/9712293 Phenomenology +hep-ph/9712302 Phenomenology +hep-ph/9712350 Phenomenology +hep-ph/9712352 Phenomenology +hep-ph/9712391 Phenomenology +hep-ph/9712397 Phenomenology +hep-ph/9712416 Phenomenology +hep-ph/9712448 Phenomenology +hep-ph/9712456 Phenomenology +hep-ph/9712471 Phenomenology +hep-ph/9712496 Phenomenology +hep-ph/9712502 Phenomenology +hep-ph/9712514 Phenomenology +hep-ph/9712515 Phenomenology +hep-ph/9712533 Phenomenology +hep-ph/9801226 Phenomenology +hep-ph/9801234 Phenomenology +hep-ph/9801246 Phenomenology +hep-ph/9801251 Phenomenology +hep-ph/9801279 Phenomenology +hep-ph/9801284 Phenomenology +hep-ph/9801292 Phenomenology +hep-ph/9801293 Phenomenology +hep-ph/9801344 Phenomenology +hep-ph/9801353 Phenomenology +hep-ph/9801357 Phenomenology +hep-ph/9801358 Phenomenology +hep-ph/9801361 Phenomenology +hep-ph/9801371 Phenomenology +hep-ph/9801375 Phenomenology +hep-ph/9801399 Phenomenology +hep-ph/9801410 Phenomenology +hep-ph/9801435 Phenomenology +hep-ph/9801445 Phenomenology +hep-ph/9801454 Phenomenology +hep-ph/9802201 Phenomenology +hep-ph/9802214 Phenomenology +hep-ph/9802220 Phenomenology +hep-ph/9802235 Phenomenology +hep-ph/9802242 Phenomenology +hep-ph/9802246 Phenomenology +hep-ph/9802247 Phenomenology +hep-ph/9802254 Phenomenology +hep-ph/9802261 Phenomenology +hep-ph/9802267 Phenomenology +hep-ph/9802268 Phenomenology +hep-ph/9802273 Phenomenology +hep-ph/9802286 Phenomenology +hep-ph/9802290 Phenomenology +hep-ph/9802294 Phenomenology +hep-ph/9802303 Phenomenology +hep-ph/9802304 Phenomenology +hep-ph/9802310 Phenomenology +hep-ph/9802376 Phenomenology +hep-ph/9802378 Phenomenology +hep-ph/9802387 Phenomenology +hep-ph/9802396 Phenomenology +hep-ph/9802403 Phenomenology +hep-ph/9802404 Phenomenology +hep-ph/9802416 Phenomenology +hep-ph/9802425 Phenomenology +hep-ph/9802442 Phenomenology +hep-ph/9802447 Phenomenology +hep-ph/9803214 Phenomenology +hep-ph/9803218 Phenomenology +hep-ph/9803225 Phenomenology +hep-ph/9803233 Phenomenology +hep-ph/9803239 Phenomenology +hep-ph/9803242 Phenomenology +hep-ph/9803254 Phenomenology +hep-ph/9803255 Phenomenology +hep-ph/9803305 Phenomenology +hep-ph/9803306 Phenomenology +hep-ph/9803315 Phenomenology +hep-ph/9803324 Phenomenology +hep-ph/9803335 Phenomenology +hep-ph/9803341 Phenomenology +hep-ph/9803349 Phenomenology +hep-ph/9803362 Phenomenology +hep-ph/9803364 Phenomenology +hep-ph/9803365 Phenomenology +hep-ph/9803397 Phenomenology +hep-ph/9803422 Phenomenology +hep-ph/9803445 Phenomenology +hep-ph/9803446 Phenomenology +hep-ph/9803454 Phenomenology +hep-ph/9803470 Phenomenology +hep-ph/9803473 Phenomenology +hep-ph/9803479 Phenomenology +hep-ph/9804223 Phenomenology +hep-ph/9804226 Phenomenology +hep-ph/9804230 Phenomenology +hep-ph/9804237 Phenomenology +hep-ph/9804258 Phenomenology +hep-ph/9804273 Phenomenology +hep-ph/9804282 Phenomenology +hep-ph/9804286 Phenomenology +hep-ph/9804288 Phenomenology +hep-ph/9804290 Phenomenology +hep-ph/9804291 Phenomenology +hep-ph/9804306 Phenomenology +hep-ph/9804309 Phenomenology +hep-ph/9804310 Phenomenology +hep-ph/9804332 Phenomenology +hep-ph/9804340 Phenomenology +hep-ph/9804341 Phenomenology +hep-ph/9804348 Phenomenology +hep-ph/9804357 Phenomenology +hep-ph/9804359 Phenomenology +hep-ph/9804361 Phenomenology +hep-ph/9804370 Phenomenology +hep-ph/9804380 Phenomenology +hep-ph/9804386 Phenomenology +hep-ph/9804388 Phenomenology +hep-ph/9804391 Phenomenology +hep-ph/9804397 Phenomenology +hep-ph/9804398 Phenomenology +hep-ph/9804436 Phenomenology +hep-ph/9804455 Phenomenology +hep-ph/9804466 Phenomenology +hep-ph/9805206 Phenomenology +hep-ph/9805213 Phenomenology +hep-ph/9805219 Phenomenology +hep-ph/9805229 Phenomenology +hep-ph/9805239 Phenomenology +hep-ph/9805258 Phenomenology +hep-ph/9805270 Phenomenology +hep-ph/9805272 Phenomenology +hep-ph/9805281 Phenomenology +hep-ph/9805287 Phenomenology +hep-ph/9805324 Phenomenology +hep-ph/9805335 Phenomenology +hep-ph/9805348 Phenomenology +hep-ph/9805349 Phenomenology +hep-ph/9805375 Phenomenology +hep-ph/9805405 Phenomenology +hep-ph/9805416 Phenomenology +hep-ph/9805418 Phenomenology +hep-ph/9805428 Phenomenology +hep-ph/9805431 Phenomenology +hep-ph/9805443 Phenomenology +hep-ph/9805456 Phenomenology +hep-ph/9805461 Phenomenology +hep-ph/9805470 Phenomenology +hep-ph/9805472 Phenomenology +hep-ph/9806208 Phenomenology +hep-ph/9806241 Phenomenology +hep-ph/9806246 Phenomenology +hep-ph/9806248 Phenomenology +hep-ph/9806280 Phenomenology +hep-ph/9806301 Phenomenology +hep-ph/9806316 Phenomenology +hep-ph/9806342 Phenomenology +hep-ph/9806352 Phenomenology +hep-ph/9806361 Phenomenology +hep-ph/9806365 Phenomenology +hep-ph/9806366 Phenomenology +hep-ph/9806374 Phenomenology +hep-ph/9806391 Phenomenology +hep-ph/9806394 Phenomenology +hep-ph/9806409 Phenomenology +hep-ph/9806412 Phenomenology +hep-ph/9806423 Phenomenology +hep-ph/9806428 Phenomenology +hep-ph/9806467 Phenomenology +hep-ph/9806491 Phenomenology +hep-ph/9806511 Phenomenology +hep-ph/9807206 Phenomenology +hep-ph/9807214 Phenomenology +hep-ph/9807230 Phenomenology +hep-ph/9807237 Phenomenology +hep-ph/9807253 Phenomenology +hep-ph/9807258 Phenomenology +hep-ph/9807275 Phenomenology +hep-ph/9807326 Phenomenology +hep-ph/9807331 Phenomenology +hep-ph/9807351 Phenomenology +hep-ph/9807358 Phenomenology +hep-ph/9807388 Phenomenology +hep-ph/9807420 Phenomenology +hep-ph/9807421 Phenomenology +hep-ph/9807446 Phenomenology +hep-ph/9807452 Phenomenology +hep-ph/9807455 Phenomenology +hep-ph/9807480 Phenomenology +hep-ph/9807486 Phenomenology +hep-ph/9807488 Phenomenology +hep-ph/9807497 Phenomenology +hep-ph/9807504 Phenomenology +hep-ph/9807537 Phenomenology +hep-ph/9807563 Phenomenology +hep-ph/9807565 Phenomenology +hep-ph/9808205 Phenomenology +hep-ph/9808220 Phenomenology +hep-ph/9808225 Phenomenology +hep-ph/9808228 Phenomenology +hep-ph/9808239 Phenomenology +hep-ph/9808241 Phenomenology +hep-ph/9808242 Phenomenology +hep-ph/9808253 Phenomenology +hep-ph/9808261 Phenomenology +hep-ph/9808264 Phenomenology +hep-ph/9808270 Phenomenology +hep-ph/9808283 Phenomenology +hep-ph/9808345 Phenomenology +hep-ph/9808346 Phenomenology +hep-ph/9808386 Phenomenology +hep-ph/9808392 Phenomenology +hep-ph/9808415 Phenomenology +hep-ph/9808426 Phenomenology +hep-ph/9808456 Phenomenology +hep-ph/9808463 Phenomenology +hep-ph/9809224 Phenomenology +hep-ph/9809243 Phenomenology +hep-ph/9809244 Phenomenology +hep-ph/9809256 Phenomenology +hep-ph/9809257 Phenomenology +hep-ph/9809262 Phenomenology +hep-ph/9809268 Phenomenology +hep-ph/9809298 Phenomenology +hep-ph/9809303 Phenomenology +hep-ph/9809315 Phenomenology +hep-ph/9809318 Phenomenology +hep-ph/9809337 Phenomenology +hep-ph/9809350 Phenomenology +hep-ph/9809385 Phenomenology +hep-ph/9809424 Phenomenology +hep-ph/9809429 Phenomenology +hep-ph/9809441 Phenomenology +hep-ph/9809456 Phenomenology +hep-ph/9809458 Phenomenology +hep-ph/9809472 Phenomenology +hep-ph/9809474 Phenomenology +hep-ph/9809483 Phenomenology +hep-ph/9809490 Phenomenology +hep-ph/9809494 Phenomenology +hep-ph/9809498 Phenomenology +hep-ph/9809521 Phenomenology +hep-ph/9809529 Phenomenology +hep-ph/9809550 Phenomenology +hep-ph/9809555 Phenomenology +hep-ph/9809583 Phenomenology +hep-ph/9809594 Phenomenology +hep-ph/9810203 Phenomenology +hep-ph/9810206 Phenomenology +hep-ph/9810233 Phenomenology +hep-ph/9810288 Phenomenology +hep-ph/9810296 Phenomenology +hep-ph/9810306 Phenomenology +hep-ph/9810321 Phenomenology +hep-ph/9810330 Phenomenology +hep-ph/9810332 Phenomenology +hep-ph/9810346 Phenomenology +hep-ph/9810350 Phenomenology +hep-ph/9810351 Phenomenology +hep-ph/9810354 Phenomenology +hep-ph/9810360 Phenomenology +hep-ph/9810386 Phenomenology +hep-ph/9810403 Phenomenology +hep-ph/9810404 Phenomenology +hep-ph/9810409 Phenomenology +hep-ph/9810415 Phenomenology +hep-ph/9810447 Phenomenology +hep-ph/9810470 Phenomenology +hep-ph/9810478 Phenomenology +hep-ph/9810489 Phenomenology +hep-ph/9810518 Phenomenology +hep-ph/9810529 Phenomenology +hep-ph/9810531 Phenomenology +hep-ph/9810543 Phenomenology +hep-ph/9811246 Phenomenology +hep-ph/9811249 Phenomenology +hep-ph/9811250 Phenomenology +hep-ph/9811254 Phenomenology +hep-ph/9811288 Phenomenology +hep-ph/9811300 Phenomenology +hep-ph/9811316 Phenomenology +hep-ph/9811318 Phenomenology +hep-ph/9811345 Phenomenology +hep-ph/9811378 Phenomenology +hep-ph/9811386 Phenomenology +hep-ph/9811388 Phenomenology +hep-ph/9811392 Phenomenology +hep-ph/9811400 Phenomenology +hep-ph/9811401 Phenomenology +hep-ph/9811403 Phenomenology +hep-ph/9811422 Phenomenology +hep-ph/9811426 Phenomenology +hep-ph/9811432 Phenomenology +hep-ph/9811444 Phenomenology +hep-ph/9811474 Phenomenology +hep-ph/9811495 Phenomenology +hep-ph/9811514 Phenomenology +hep-ph/9811518 Phenomenology +hep-ph/9812228 Phenomenology +hep-ph/9812229 Phenomenology +hep-ph/9812233 Phenomenology +hep-ph/9812258 Phenomenology +hep-ph/9812285 Phenomenology +hep-ph/9812297 Phenomenology +hep-ph/9812303 Phenomenology +hep-ph/9812308 Phenomenology +hep-ph/9812317 Phenomenology +hep-ph/9812318 Phenomenology +hep-ph/9812320 Phenomenology +hep-ph/9812328 Phenomenology +hep-ph/9812331 Phenomenology +hep-ph/9812352 Phenomenology +hep-ph/9812359 Phenomenology +hep-ph/9812371 Phenomenology +hep-ph/9812383 Phenomenology +hep-ph/9812395 Phenomenology +hep-ph/9812399 Phenomenology +hep-ph/9812405 Phenomenology +hep-ph/9812411 Phenomenology +hep-ph/9812415 Phenomenology +hep-ph/9812417 Phenomenology +hep-ph/9812418 Phenomenology +hep-ph/9812426 Phenomenology +hep-ph/9812450 Phenomenology +hep-ph/9812454 Phenomenology +hep-ph/9812467 Phenomenology +hep-ph/9812471 Phenomenology +hep-ph/9812475 Phenomenology +hep-ph/9812478 Phenomenology +hep-ph/9812481 Phenomenology +hep-ph/9812497 Phenomenology +hep-ph/9812499 Phenomenology +hep-ph/9812500 Phenomenology +hep-ph/9812513 Phenomenology +hep-ph/9812517 Phenomenology +hep-ph/9812535 Phenomenology +hep-ph/9901210 Phenomenology +hep-ph/9901215 Phenomenology +hep-ph/9901225 Phenomenology +hep-ph/9901231 Phenomenology +hep-ph/9901247 Phenomenology +hep-ph/9901249 Phenomenology +hep-ph/9901270 Phenomenology +hep-ph/9901273 Phenomenology +hep-ph/9901274 Phenomenology +hep-ph/9901276 Phenomenology +hep-ph/9901277 Phenomenology +hep-ph/9901278 Phenomenology +hep-ph/9901287 Phenomenology +hep-ph/9901306 Phenomenology +hep-ph/9901334 Phenomenology +hep-ph/9901335 Phenomenology +hep-ph/9901359 Phenomenology +hep-ph/9901361 Phenomenology +hep-ph/9901404 Phenomenology +hep-ph/9901426 Phenomenology +hep-ph/9901429 Phenomenology +hep-ph/9901442 Phenomenology +hep-ph/9902201 Phenomenology +hep-ph/9902212 Phenomenology +hep-ph/9902225 Phenomenology +hep-ph/9902226 Phenomenology +hep-ph/9902237 Phenomenology +hep-ph/9902252 Phenomenology +hep-ph/9902260 Phenomenology +hep-ph/9902279 Phenomenology +hep-ph/9902294 Phenomenology +hep-ph/9902295 Phenomenology +hep-ph/9902296 Phenomenology +hep-ph/9902299 Phenomenology +hep-ph/9902301 Phenomenology +hep-ph/9902310 Phenomenology +hep-ph/9902323 Phenomenology +hep-ph/9902326 Phenomenology +hep-ph/9902330 Phenomenology +hep-ph/9902332 Phenomenology +hep-ph/9902338 Phenomenology +hep-ph/9902350 Phenomenology +hep-ph/9902366 Phenomenology +hep-ph/9902374 Phenomenology +hep-ph/9902380 Phenomenology +hep-ph/9902410 Phenomenology +hep-ph/9902412 Phenomenology +hep-ph/9902434 Phenomenology +hep-ph/9902451 Phenomenology +hep-ph/9902456 Phenomenology +hep-ph/9902463 Phenomenology +hep-ph/9902467 Phenomenology +hep-ph/9902474 Phenomenology +hep-ph/9902475 Phenomenology +hep-ph/9902481 Phenomenology +hep-ph/9903215 Phenomenology +hep-ph/9903217 Phenomenology +hep-ph/9903229 Phenomenology +hep-ph/9903234 Phenomenology +hep-ph/9903282 Phenomenology +hep-ph/9903291 Phenomenology +hep-ph/9903294 Phenomenology +hep-ph/9903295 Phenomenology +hep-ph/9903326 Phenomenology +hep-ph/9903327 Phenomenology +hep-ph/9903341 Phenomenology +hep-ph/9903354 Phenomenology +hep-ph/9903358 Phenomenology +hep-ph/9903376 Phenomenology +hep-ph/9903384 Phenomenology +hep-ph/9903390 Phenomenology +hep-ph/9903400 Phenomenology +hep-ph/9903408 Phenomenology +hep-ph/9903433 Phenomenology +hep-ph/9903451 Phenomenology +hep-ph/9903468 Phenomenology +hep-ph/9903472 Phenomenology +hep-ph/9903476 Phenomenology +hep-ph/9903477 Phenomenology +hep-ph/9903491 Phenomenology +hep-ph/9903511 Phenomenology +hep-ph/9903515 Phenomenology +hep-ph/9903520 Phenomenology +hep-ph/9903527 Phenomenology +hep-ph/9904203 Phenomenology +hep-ph/9904206 Phenomenology +hep-ph/9904216 Phenomenology +hep-ph/9904229 Phenomenology +hep-ph/9904263 Phenomenology +hep-ph/9904266 Phenomenology +hep-ph/9904267 Phenomenology +hep-ph/9904307 Phenomenology +hep-ph/9904334 Phenomenology +hep-ph/9904336 Phenomenology +hep-ph/9904338 Phenomenology +hep-ph/9904370 Phenomenology +hep-ph/9904408 Phenomenology +hep-ph/9904422 Phenomenology +hep-ph/9904428 Phenomenology +hep-ph/9904462 Phenomenology +hep-ph/9904472 Phenomenology +hep-ph/9904481 Phenomenology +hep-ph/9904483 Phenomenology +hep-ph/9904495 Phenomenology +hep-ph/9904501 Phenomenology +hep-ph/9904504 Phenomenology +hep-ph/9904511 Phenomenology +hep-ph/9905210 Phenomenology +hep-ph/9905221 Phenomenology +hep-ph/9905236 Phenomenology +hep-ph/9905239 Phenomenology +hep-ph/9905264 Phenomenology +hep-ph/9905282 Phenomenology +hep-ph/9905350 Phenomenology +hep-ph/9905378 Phenomenology +hep-ph/9905386 Phenomenology +hep-ph/9905402 Phenomenology +hep-ph/9905410 Phenomenology +hep-ph/9905433 Phenomenology +hep-ph/9905450 Phenomenology +hep-ph/9905495 Phenomenology +hep-ph/9905501 Phenomenology +hep-ph/9905509 Phenomenology +hep-ph/9905514 Phenomenology +hep-ph/9905517 Phenomenology +hep-ph/9905550 Phenomenology +hep-ph/9905551 Phenomenology +hep-ph/9905557 Phenomenology +hep-ph/9905568 Phenomenology +hep-ph/9905570 Phenomenology +hep-ph/9905573 Phenomenology +hep-ph/9906219 Phenomenology +hep-ph/9906230 Phenomenology +hep-ph/9906234 Phenomenology +hep-ph/9906248 Phenomenology +hep-ph/9906249 Phenomenology +hep-ph/9906253 Phenomenology +hep-ph/9906266 Phenomenology +hep-ph/9906289 Phenomenology +hep-ph/9906293 Phenomenology +hep-ph/9906298 Phenomenology +hep-ph/9906320 Phenomenology +hep-ph/9906359 Phenomenology +hep-ph/9906360 Phenomenology +hep-ph/9906362 Phenomenology +hep-ph/9906376 Phenomenology +hep-ph/9906388 Phenomenology +hep-ph/9906402 Phenomenology +hep-ph/9906448 Phenomenology +hep-ph/9906467 Phenomenology +hep-ph/9906473 Phenomenology +hep-ph/9906475 Phenomenology +hep-ph/9906501 Phenomenology +hep-ph/9906507 Phenomenology +hep-ph/9906516 Phenomenology +hep-ph/9906555 Phenomenology +hep-ph/9907213 Phenomenology +hep-ph/9907217 Phenomenology +hep-ph/9907219 Phenomenology +hep-ph/9907234 Phenomenology +hep-ph/9907238 Phenomenology +hep-ph/9907261 Phenomenology +hep-ph/9907282 Phenomenology +hep-ph/9907283 Phenomenology +hep-ph/9907303 Phenomenology +hep-ph/9907322 Phenomenology +hep-ph/9907324 Phenomenology +hep-ph/9907327 Phenomenology +hep-ph/9907334 Phenomenology +hep-ph/9907375 Phenomenology +hep-ph/9907383 Phenomenology +hep-ph/9907399 Phenomenology +hep-ph/9907408 Phenomenology +hep-ph/9907417 Phenomenology +hep-ph/9907422 Phenomenology +hep-ph/9907424 Phenomenology +hep-ph/9907425 Phenomenology +hep-ph/9907446 Phenomenology +hep-ph/9907453 Phenomenology +hep-ph/9907471 Phenomenology +hep-ph/9907472 Phenomenology +hep-ph/9907473 Phenomenology +hep-ph/9907494 Phenomenology +hep-ph/9907496 Phenomenology +hep-ph/9907499 Phenomenology +hep-ph/9907518 Phenomenology +hep-ph/9907519 Phenomenology +hep-ph/9907520 Phenomenology +hep-ph/9907523 Phenomenology +hep-ph/9907524 Phenomenology +hep-ph/9907534 Phenomenology +hep-ph/9907553 Phenomenology +hep-ph/9907563 Phenomenology +hep-ph/9907567 Phenomenology +hep-ph/9908208 Phenomenology +hep-ph/9908249 Phenomenology +hep-ph/9908252 Phenomenology +hep-ph/9908274 Phenomenology +hep-ph/9908283 Phenomenology +hep-ph/9908299 Phenomenology +hep-ph/9908318 Phenomenology +hep-ph/9908326 Phenomenology +hep-ph/9908334 Phenomenology +hep-ph/9908351 Phenomenology +hep-ph/9908357 Phenomenology +hep-ph/9908376 Phenomenology +hep-ph/9908438 Phenomenology +hep-ph/9908441 Phenomenology +hep-ph/9908450 Phenomenology +hep-ph/9908451 Phenomenology +hep-ph/9908483 Phenomenology +hep-ph/9908507 Phenomenology +hep-ph/9908509 Phenomenology +hep-ph/9908513 Phenomenology +hep-ph/9909202 Phenomenology +hep-ph/9909217 Phenomenology +hep-ph/9909218 Phenomenology +hep-ph/9909265 Phenomenology +hep-ph/9909294 Phenomenology +hep-ph/9909301 Phenomenology +hep-ph/9909302 Phenomenology +hep-ph/9909326 Phenomenology +hep-ph/9909333 Phenomenology +hep-ph/9909334 Phenomenology +hep-ph/9909352 Phenomenology +hep-ph/9909359 Phenomenology +hep-ph/9909367 Phenomenology +hep-ph/9909374 Phenomenology +hep-ph/9909389 Phenomenology +hep-ph/9909407 Phenomenology +hep-ph/9909420 Phenomenology +hep-ph/9909426 Phenomenology +hep-ph/9909435 Phenomenology +hep-ph/9909464 Phenomenology +hep-ph/9909468 Phenomenology +hep-ph/9909475 Phenomenology +hep-ph/9909497 Phenomenology +hep-ph/9909529 Phenomenology +hep-ph/9909554 Phenomenology +hep-ph/9909571 Phenomenology +hep-ph/9910211 Phenomenology +hep-ph/9910224 Phenomenology +hep-ph/9910236 Phenomenology +hep-ph/9910241 Phenomenology +hep-ph/9910242 Phenomenology +hep-ph/9910250 Phenomenology +hep-ph/9910251 Phenomenology +hep-ph/9910256 Phenomenology +hep-ph/9910260 Phenomenology +hep-ph/9910261 Phenomenology +hep-ph/9910300 Phenomenology +hep-ph/9910309 Phenomenology +hep-ph/9910315 Phenomenology +hep-ph/9910320 Phenomenology +hep-ph/9910321 Phenomenology +hep-ph/9910330 Phenomenology +hep-ph/9910333 Phenomenology +hep-ph/9910343 Phenomenology +hep-ph/9910346 Phenomenology +hep-ph/9910351 Phenomenology +hep-ph/9910366 Phenomenology +hep-ph/9910377 Phenomenology +hep-ph/9910380 Phenomenology +hep-ph/9910381 Phenomenology +hep-ph/9910396 Phenomenology +hep-ph/9910433 Phenomenology +hep-ph/9910452 Phenomenology +hep-ph/9910474 Phenomenology +hep-ph/9910483 Phenomenology +hep-ph/9910522 Phenomenology +hep-ph/9910523 Phenomenology +hep-ph/9911266 Phenomenology +hep-ph/9911273 Phenomenology +hep-ph/9911277 Phenomenology +hep-ph/9911308 Phenomenology +hep-ph/9911320 Phenomenology +hep-ph/9911358 Phenomenology +hep-ph/9911364 Phenomenology +hep-ph/9911395 Phenomenology +hep-ph/9911421 Phenomenology +hep-ph/9911434 Phenomenology +hep-ph/9911474 Phenomenology +hep-ph/9911477 Phenomenology +hep-ph/9911496 Phenomenology +hep-ph/9911511 Phenomenology +hep-ph/9911529 Phenomenology +hep-ph/9911530 Phenomenology +hep-ph/9911535 Phenomenology +hep-ph/9911536 Phenomenology +hep-ph/9911539 Phenomenology +hep-ph/9912204 Phenomenology +hep-ph/9912205 Phenomenology +hep-ph/9912206 Phenomenology +hep-ph/9912212 Phenomenology +hep-ph/9912224 Phenomenology +hep-ph/9912226 Phenomenology +hep-ph/9912251 Phenomenology +hep-ph/9912252 Phenomenology +hep-ph/9912260 Phenomenology +hep-ph/9912261 Phenomenology +hep-ph/9912290 Phenomenology +hep-ph/9912300 Phenomenology +hep-ph/9912304 Phenomenology +hep-ph/9912336 Phenomenology +hep-ph/9912349 Phenomenology +hep-ph/9912350 Phenomenology +hep-ph/9912354 Phenomenology +hep-ph/9912390 Phenomenology +hep-ph/9912408 Phenomenology +hep-ph/9912436 Phenomenology +hep-ph/9912447 Phenomenology +hep-ph/9912452 Phenomenology +hep-ph/9912453 Phenomenology +hep-ph/9912463 Phenomenology +hep-ph/9912468 Phenomenology +hep-ph/9912469 Phenomenology +hep-ph/9912486 Phenomenology +hep-ph/9912506 Phenomenology +hep-ph/9912516 Phenomenology +hep-ph/9912548 Phenomenology +hep-ph/9912551 Phenomenology +hep-th/0001023 Theory +hep-th/0001024 Theory +hep-th/0001085 Theory +hep-th/0001188 Theory +hep-th/0001189 Theory +hep-th/0001221 Theory +hep-th/0002010 Theory +hep-th/0002026 Theory +hep-th/0002049 Theory +hep-th/0002096 Theory +hep-th/0002098 Theory +hep-th/0002100 Theory +hep-th/0002108 Theory +hep-th/0002124 Theory +hep-th/0002132 Theory +hep-th/0002159 Theory +hep-th/0002160 Theory +hep-th/0002161 Theory +hep-th/0002171 Theory +hep-th/0002208 Theory +hep-th/0002212 Theory +hep-th/0002232 Theory +hep-th/0002233 Theory +hep-th/0002241 Theory +hep-th/0002253 Theory +hep-th/0003011 Theory +hep-th/0003015 Theory +hep-th/0003045 Theory +hep-th/0003049 Theory +hep-th/0003059 Theory +hep-th/0003093 Theory +hep-th/0003103 Theory +hep-th/0003104 Theory +hep-th/0003115 Theory +hep-th/0003118 Theory +hep-th/0003120 Theory +hep-th/0003126 Theory +hep-th/0003145 Theory +hep-th/0003155 Theory +hep-th/0003210 Theory +hep-th/0003258 Theory +hep-th/0003266 Theory +hep-th/0003276 Theory +hep-th/0003294 Theory +hep-th/0004004 Theory +hep-th/0004036 Theory +hep-th/0004045 Theory +hep-th/0004051 Theory +hep-th/0004052 Theory +hep-th/0004070 Theory +hep-th/0004109 Theory +hep-th/0004114 Theory +hep-th/0004119 Theory +hep-th/0004126 Theory +hep-th/0004145 Theory +hep-th/0004166 Theory +hep-th/0005005 Theory +hep-th/0005016 Theory +hep-th/0005032 Theory +hep-th/0005061 Theory +hep-th/0005072 Theory +hep-th/0005075 Theory +hep-th/0005082 Theory +hep-th/0005104 Theory +hep-th/0005105 Theory +hep-th/0005107 Theory +hep-th/0005141 Theory +hep-th/0005171 Theory +hep-th/0005183 Theory +hep-th/0005209 Theory +hep-th/0005217 Theory +hep-th/0005225 Theory +hep-th/0005229 Theory +hep-th/0005242 Theory +hep-th/0005254 Theory +hep-th/0005277 Theory +hep-th/0006020 Theory +hep-th/0006034 Theory +hep-th/0006075 Theory +hep-th/0006081 Theory +hep-th/0006089 Theory +hep-th/0006144 Theory +hep-th/0006172 Theory +hep-th/0006173 Theory +hep-th/0006197 Theory +hep-th/0006215 Theory +hep-th/0006220 Theory +hep-th/0006222 Theory +hep-th/0006235 Theory +hep-th/0007032 Theory +hep-th/0007040 Theory +hep-th/0007048 Theory +hep-th/0007051 Theory +hep-th/0007080 Theory +hep-th/0007091 Theory +hep-th/0007112 Theory +hep-th/0007151 Theory +hep-th/0007174 Theory +hep-th/0007238 Theory +hep-th/0007242 Theory +hep-th/0008002 Theory +hep-th/0008003 Theory +hep-th/0008036 Theory +hep-th/0008039 Theory +hep-th/0008052 Theory +hep-th/0008063 Theory +hep-th/0008071 Theory +hep-th/0008072 Theory +hep-th/0008074 Theory +hep-th/0008095 Theory +hep-th/0008099 Theory +hep-th/0008126 Theory +hep-th/0008192 Theory +hep-th/0008234 Theory +hep-th/0008237 Theory +hep-th/0008249 Theory +hep-th/0009024 Theory +hep-th/0009036 Theory +hep-th/0009039 Theory +hep-th/0009052 Theory +hep-th/0009055 Theory +hep-th/0009087 Theory +hep-th/0009093 Theory +hep-th/0009122 Theory +hep-th/0009153 Theory +hep-th/0009154 Theory +hep-th/0009177 Theory +hep-th/0009181 Theory +hep-th/0009220 Theory +hep-th/0010006 Theory +hep-th/0010013 Theory +hep-th/0010065 Theory +hep-th/0010097 Theory +hep-th/0010126 Theory +hep-th/0010136 Theory +hep-th/0010137 Theory +hep-th/0010151 Theory +hep-th/0010162 Theory +hep-th/0010186 Theory +hep-th/0010210 Theory +hep-th/0010243 Theory +hep-th/0010269 Theory +hep-th/0011027 Theory +hep-th/0011054 Theory +hep-th/0011055 Theory +hep-th/0011056 Theory +hep-th/0011076 Theory +hep-th/0011096 Theory +hep-th/0011107 Theory +hep-th/0011117 Theory +hep-th/0011126 Theory +hep-th/0011146 Theory +hep-th/0011154 Theory +hep-th/0011157 Theory +hep-th/0011210 Theory +hep-th/0011233 Theory +hep-th/0011256 Theory +hep-th/0011276 Theory +hep-th/0012014 Theory +hep-th/0012037 Theory +hep-th/0012048 Theory +hep-th/0012060 Theory +hep-th/0012127 Theory +hep-th/0012134 Theory +hep-th/0012143 Theory +hep-th/0012147 Theory +hep-th/0012154 Theory +hep-th/0012158 Theory +hep-th/0012166 Theory +hep-th/0012174 Theory +hep-th/0012190 Theory +hep-th/0012196 Theory +hep-th/0012205 Theory +hep-th/0012206 Theory +hep-th/0012209 Theory +hep-th/0012212 Theory +hep-th/0012224 Theory +hep-th/0101009 Theory +hep-th/0101092 Theory +hep-th/0101107 Theory +hep-th/0101113 Theory +hep-th/0101126 Theory +hep-th/0101148 Theory +hep-th/0101154 Theory +hep-th/0101209 Theory +hep-th/0102010 Theory +hep-th/0102044 Theory +hep-th/0102100 Theory +hep-th/0102165 Theory +hep-th/0102166 Theory +hep-th/0102191 Theory +hep-th/0102199 Theory +hep-th/0103023 Theory +hep-th/0103037 Theory +hep-th/0103050 Theory +hep-th/0103051 Theory +hep-th/0103055 Theory +hep-th/0103096 Theory +hep-th/0103108 Theory +hep-th/0103110 Theory +hep-th/0103136 Theory +hep-th/0103137 Theory +hep-th/0103143 Theory +hep-th/0103166 Theory +hep-th/0103182 Theory +hep-th/0103198 Theory +hep-th/0103214 Theory +hep-th/0103221 Theory +hep-th/0103233 Theory +hep-th/0103239 Theory +hep-th/0103255 Theory +hep-th/0103263 Theory +hep-th/0104002 Theory +hep-th/0104008 Theory +hep-th/0104034 Theory +hep-th/0104057 Theory +hep-th/0104076 Theory +hep-th/0104177 Theory +hep-th/0104204 Theory +hep-th/0104205 Theory +hep-th/0104216 Theory +hep-th/0104224 Theory +hep-th/0104235 Theory +hep-th/0105100 Theory +hep-th/0105108 Theory +hep-th/0105109 Theory +hep-th/0105120 Theory +hep-th/0105146 Theory +hep-th/0105151 Theory +hep-th/0105164 Theory +hep-th/0105171 Theory +hep-th/0105181 Theory +hep-th/0105201 Theory +hep-th/0105210 Theory +hep-th/0105214 Theory +hep-th/0105255 Theory +hep-th/0105270 Theory +hep-th/0105279 Theory +hep-th/0105301 Theory +hep-th/0105303 Theory +hep-th/0105317 Theory +hep-th/0106006 Theory +hep-th/0106026 Theory +hep-th/0106029 Theory +hep-th/0106033 Theory +hep-th/0106071 Theory +hep-th/0106089 Theory +hep-th/0106100 Theory +hep-th/0106108 Theory +hep-th/0106127 Theory +hep-th/0106136 Theory +hep-th/0106143 Theory +hep-th/0106178 Theory +hep-th/0106191 Theory +hep-th/0106194 Theory +hep-th/0106203 Theory +hep-th/0106215 Theory +hep-th/0106263 Theory +hep-th/0106270 Theory +hep-th/0106275 Theory +hep-th/0106287 Theory +hep-th/0107003 Theory +hep-th/0107025 Theory +hep-th/0107049 Theory +hep-th/0107052 Theory +hep-th/0107076 Theory +hep-th/0107088 Theory +hep-th/0107107 Theory +hep-th/0107143 Theory +hep-th/0107170 Theory +hep-th/0107204 Theory +hep-th/0107207 Theory +hep-th/0107223 Theory +hep-th/0107238 Theory +hep-th/0107252 Theory +hep-th/0108006 Theory +hep-th/0108041 Theory +hep-th/0108054 Theory +hep-th/0108083 Theory +hep-th/0108146 Theory +hep-th/0108148 Theory +hep-th/0108183 Theory +hep-th/0108186 Theory +hep-th/0108188 Theory +hep-th/0109006 Theory +hep-th/0109008 Theory +hep-th/0109032 Theory +hep-th/0109038 Theory +hep-th/0109043 Theory +hep-th/0109049 Theory +hep-th/0109067 Theory +hep-th/0109088 Theory +hep-th/0109106 Theory +hep-th/0109123 Theory +hep-th/0109126 Theory +hep-th/0109154 Theory +hep-th/0109180 Theory +hep-th/0109183 Theory +hep-th/0109195 Theory +hep-th/0109208 Theory +hep-th/0109220 Theory +hep-th/0109223 Theory +hep-th/0110020 Theory +hep-th/0110024 Theory +hep-th/0110027 Theory +hep-th/0110028 Theory +hep-th/0110047 Theory +hep-th/0110081 Theory +hep-th/0110083 Theory +hep-th/0110090 Theory +hep-th/0110096 Theory +hep-th/0110097 Theory +hep-th/0110104 Theory +hep-th/0110105 Theory +hep-th/0110114 Theory +hep-th/0110131 Theory +hep-th/0110151 Theory +hep-th/0110160 Theory +hep-th/0110174 Theory +hep-th/0110217 Theory +hep-th/0110224 Theory +hep-th/0110228 Theory +hep-th/0110229 Theory +hep-th/0110230 Theory +hep-th/0110247 Theory +hep-th/0110254 Theory +hep-th/0110276 Theory +hep-th/0110283 Theory +hep-th/0110297 Theory +hep-th/0110298 Theory +hep-th/0111007 Theory +hep-th/0111016 Theory +hep-th/0111020 Theory +hep-th/0111028 Theory +hep-th/0111029 Theory +hep-th/0111040 Theory +hep-th/0111046 Theory +hep-th/0111073 Theory +hep-th/0111136 Theory +hep-th/0111146 Theory +hep-th/0111158 Theory +hep-th/0111160 Theory +hep-th/0111228 Theory +hep-th/0111233 Theory +hep-th/0111235 Theory +hep-th/0111264 Theory +hep-th/0111289 Theory +hep-th/0112005 Theory +hep-th/0112007 Theory +hep-th/0112016 Theory +hep-th/0112028 Theory +hep-th/0112041 Theory +hep-th/0112049 Theory +hep-th/0112060 Theory +hep-th/0112075 Theory +hep-th/0112079 Theory +hep-th/0112125 Theory +hep-th/0112127 Theory +hep-th/0112156 Theory +hep-th/0112168 Theory +hep-th/0112181 Theory +hep-th/0112182 Theory +hep-th/0112184 Theory +hep-th/0112196 Theory +hep-th/0112250 Theory +hep-th/0112253 Theory +hep-th/0112260 Theory +hep-th/0112262 Theory +hep-th/0201007 Theory +hep-th/0201049 Theory +hep-th/0201055 Theory +hep-th/0201056 Theory +hep-th/0201064 Theory +hep-th/0201076 Theory +hep-th/0201080 Theory +hep-th/0201123 Theory +hep-th/0201155 Theory +hep-th/0201187 Theory +hep-th/0201199 Theory +hep-th/0201207 Theory +hep-th/0201211 Theory +hep-th/0201230 Theory +hep-th/0201272 Theory +hep-th/0202032 Theory +hep-th/0202039 Theory +hep-th/0202042 Theory +hep-th/0202047 Theory +hep-th/0202085 Theory +hep-th/0202111 Theory +hep-th/0202113 Theory +hep-th/0202114 Theory +hep-th/0202164 Theory +hep-th/0202173 Theory +hep-th/0203004 Theory +hep-th/0203014 Theory +hep-th/0203020 Theory +hep-th/0203055 Theory +hep-th/0203078 Theory +hep-th/0203088 Theory +hep-th/0203095 Theory +hep-th/0203101 Theory +hep-th/0203137 Theory +hep-th/0203140 Theory +hep-th/0203144 Theory +hep-th/0203145 Theory +hep-th/0203153 Theory +hep-th/0203197 Theory +hep-th/0203205 Theory +hep-th/0203245 Theory +hep-th/0203269 Theory +hep-th/0204006 Theory +hep-th/0204015 Theory +hep-th/0204022 Theory +hep-th/0204039 Theory +hep-th/0204044 Theory +hep-th/0204049 Theory +hep-th/0204055 Theory +hep-th/0204094 Theory +hep-th/0204097 Theory +hep-th/0204107 Theory +hep-th/0204123 Theory +hep-th/0204129 Theory +hep-th/0204148 Theory +hep-th/0204150 Theory +hep-th/0204153 Theory +hep-th/0204176 Theory +hep-th/0204188 Theory +hep-th/0204192 Theory +hep-th/0204240 Theory +hep-th/0204242 Theory +hep-th/0204246 Theory +hep-th/0204259 Theory +hep-th/0205001 Theory +hep-th/0205012 Theory +hep-th/0205020 Theory +hep-th/0205044 Theory +hep-th/0205061 Theory +hep-th/0205062 Theory +hep-th/0205068 Theory +hep-th/0205112 Theory +hep-th/0205113 Theory +hep-th/0205131 Theory +hep-th/0205169 Theory +hep-th/0205172 Theory +hep-th/0205181 Theory +hep-th/0205199 Theory +hep-th/0205206 Theory +hep-th/0205208 Theory +hep-th/0205231 Theory +hep-th/0205232 Theory +hep-th/0205249 Theory +hep-th/0205261 Theory +hep-th/0205263 Theory +hep-th/0205279 Theory +hep-th/0205297 Theory +hep-th/0205300 Theory +hep-th/0205313 Theory +hep-th/0205318 Theory +hep-th/0206011 Theory +hep-th/0206053 Theory +hep-th/0206058 Theory +hep-th/0206076 Theory +hep-th/0206082 Theory +hep-th/0206089 Theory +hep-th/0206100 Theory +hep-th/0206104 Theory +hep-th/0206123 Theory +hep-th/0206134 Theory +hep-th/0206143 Theory +hep-th/0206149 Theory +hep-th/0206161 Theory +hep-th/0206168 Theory +hep-th/0206172 Theory +hep-th/0206195 Theory +hep-th/0206199 Theory +hep-th/0206224 Theory +hep-th/0206233 Theory +hep-th/0206241 Theory +hep-th/0206251 Theory +hep-th/0207034 Theory +hep-th/0207049 Theory +hep-th/0207071 Theory +hep-th/0207079 Theory +hep-th/0207130 Theory +hep-th/0207138 Theory +hep-th/0207140 Theory +hep-th/0207167 Theory +hep-th/0207202 Theory +hep-th/0207205 Theory +hep-th/0207207 Theory +hep-th/0207208 Theory +hep-th/0207210 Theory +hep-th/0207233 Theory +hep-th/0207247 Theory +hep-th/0207267 Theory +hep-th/0208016 Theory +hep-th/0208034 Theory +hep-th/0208106 Theory +hep-th/0208107 Theory +hep-th/0208108 Theory +hep-th/0208115 Theory +hep-th/0208146 Theory +hep-th/0208152 Theory +hep-th/0208172 Theory +hep-th/0208175 Theory +hep-th/0208184 Theory +hep-th/0208189 Theory +hep-th/0208207 Theory +hep-th/0208212 Theory +hep-th/0208214 Theory +hep-th/0209008 Theory +hep-th/0209020 Theory +hep-th/0209025 Theory +hep-th/0209036 Theory +hep-th/0209060 Theory +hep-th/0209067 Theory +hep-th/0209080 Theory +hep-th/0209087 Theory +hep-th/0209110 Theory +hep-th/0209136 Theory +hep-th/0209142 Theory +hep-th/0209153 Theory +hep-th/0209158 Theory +hep-th/0209187 Theory +hep-th/0209189 Theory +hep-th/0209193 Theory +hep-th/0209213 Theory +hep-th/0209242 Theory +hep-th/0209261 Theory +hep-th/0210015 Theory +hep-th/0210023 Theory +hep-th/0210027 Theory +hep-th/0210036 Theory +hep-th/0210039 Theory +hep-th/0210076 Theory +hep-th/0210077 Theory +hep-th/0210082 Theory +hep-th/0210085 Theory +hep-th/0210097 Theory +hep-th/0210104 Theory +hep-th/0210159 Theory +hep-th/0210195 Theory +hep-th/0210204 Theory +hep-th/0210206 Theory +hep-th/0210225 Theory +hep-th/0210263 Theory +hep-th/0210276 Theory +hep-th/0210292 Theory +hep-th/0210301 Theory +hep-th/0210311 Theory +hep-th/0211024 Theory +hep-th/0211060 Theory +hep-th/0211080 Theory +hep-th/0211107 Theory +hep-th/0211122 Theory +hep-th/0211123 Theory +hep-th/0211124 Theory +hep-th/0211154 Theory +hep-th/0211158 Theory +hep-th/0211177 Theory +hep-th/0211187 Theory +hep-th/0211235 Theory +hep-th/0211236 Theory +hep-th/0211245 Theory +hep-th/0211251 Theory +hep-th/0211272 Theory +hep-th/0211273 Theory +hep-th/0211292 Theory +hep-th/0212033 Theory +hep-th/0212090 Theory +hep-th/0212104 Theory +hep-th/0212117 Theory +hep-th/0212122 Theory +hep-th/0212126 Theory +hep-th/0212140 Theory +hep-th/0212142 Theory +hep-th/0212150 Theory +hep-th/0212156 Theory +hep-th/0212224 Theory +hep-th/0212246 Theory +hep-th/0212275 Theory +hep-th/0212289 Theory +hep-th/0212290 Theory +hep-th/0212292 Theory +hep-th/0212295 Theory +hep-th/0212309 Theory +hep-th/0212321 Theory +hep-th/0301004 Theory +hep-th/0301033 Theory +hep-th/0301054 Theory +hep-th/0301064 Theory +hep-th/0301068 Theory +hep-th/0301121 Theory +hep-th/0301140 Theory +hep-th/0301143 Theory +hep-th/0301146 Theory +hep-th/0301196 Theory +hep-th/0301197 Theory +hep-th/0301206 Theory +hep-th/0301209 Theory +hep-th/0301213 Theory +hep-th/0301217 Theory +hep-th/0301236 Theory +hep-th/0301240 Theory +hep-th/0301255 Theory +hep-th/0302004 Theory +hep-th/0302009 Theory +hep-th/0302018 Theory +hep-th/0302030 Theory +hep-th/0302036 Theory +hep-th/0302123 Theory +hep-th/0302134 Theory +hep-th/0302184 Theory +hep-th/0302221 Theory +hep-th/0303068 Theory +hep-th/0303081 Theory +hep-th/0303097 Theory +hep-th/0303100 Theory +hep-th/0303101 Theory +hep-th/0303122 Theory +hep-th/0303135 Theory +hep-th/0303136 Theory +hep-th/0303160 Theory +hep-th/0303161 Theory +hep-th/0303162 Theory +hep-th/0303187 Theory +hep-th/0303191 Theory +hep-th/0303238 Theory +hep-th/0303245 Theory +hep-th/0304024 Theory +hep-th/0304035 Theory +hep-th/0304044 Theory +hep-th/0304052 Theory +hep-th/0304055 Theory +hep-th/0304071 Theory +hep-th/0304074 Theory +hep-th/0304077 Theory +hep-th/0304092 Theory +hep-th/0304101 Theory +hep-th/0304107 Theory +hep-th/0304125 Theory +hep-th/0304128 Theory +hep-th/0304134 Theory +hep-th/0304136 Theory +hep-th/0304156 Theory +hep-th/0304183 Theory +hep-th/0304192 Theory +hep-th/0304202 Theory +hep-th/0304205 Theory +hep-th/0304207 Theory +hep-th/0304220 Theory +hep-th/0304223 Theory +hep-th/0304260 Theory +hep-th/0304264 Theory +hep-th/0304271 Theory +hep-th/0305002 Theory +hep-th/0305004 Theory +hep-th/0305033 Theory +hep-th/0305046 Theory +hep-th/0305047 Theory +hep-th/0305079 Theory +hep-th/0305084 Theory +hep-th/0305091 Theory +hep-th/0305097 Theory +hep-th/0305108 Theory +hep-th/0305109 Theory +hep-th/0305116 Theory +hep-th/0305120 Theory +hep-th/0305121 Theory +hep-th/0305126 Theory +hep-th/0305127 Theory +hep-th/0305136 Theory +hep-th/0305169 Theory +hep-th/0305180 Theory +hep-th/0305193 Theory +hep-th/0305209 Theory +hep-th/0305210 Theory +hep-th/0305219 Theory +hep-th/0306043 Theory +hep-th/0306054 Theory +hep-th/0306062 Theory +hep-th/0306071 Theory +hep-th/0306105 Theory +hep-th/0306120 Theory +hep-th/0306138 Theory +hep-th/0306156 Theory +hep-th/0306163 Theory +hep-th/0306169 Theory +hep-th/0306182 Theory +hep-th/0306191 Theory +hep-th/0306201 Theory +hep-th/0306209 Theory +hep-th/0306250 Theory +hep-th/0306256 Theory +hep-th/0306275 Theory +hep-th/0306281 Theory +hep-th/0307010 Theory +hep-th/0307042 Theory +hep-th/0307075 Theory +hep-th/0307095 Theory +hep-th/0307098 Theory +hep-th/0307108 Theory +hep-th/0307128 Theory +hep-th/0307132 Theory +hep-th/0307149 Theory +hep-th/0307171 Theory +hep-th/0307177 Theory +hep-th/0307193 Theory +hep-th/0307229 Theory +hep-th/0307233 Theory +hep-th/0307246 Theory +hep-th/0307247 Theory +hep-th/0307259 Theory +hep-th/0307261 Theory +hep-th/0307280 Theory +hep-th/0307288 Theory +hep-th/0308018 Theory +hep-th/0308037 Theory +hep-th/0308052 Theory +hep-th/0308053 Theory +hep-th/0308081 Theory +hep-th/0308100 Theory +hep-th/0308110 Theory +hep-th/0308111 Theory +hep-th/0308128 Theory +hep-th/0308138 Theory +hep-th/0308139 Theory +hep-th/0308150 Theory +hep-th/0308157 Theory +hep-th/0308161 Theory +hep-th/0308190 Theory +hep-th/0308192 Theory +hep-th/0309009 Theory +hep-th/0309033 Theory +hep-th/0309047 Theory +hep-th/0309059 Theory +hep-th/0309067 Theory +hep-th/0309068 Theory +hep-th/0309077 Theory +hep-th/0309096 Theory +hep-th/0309130 Theory +hep-th/0309133 Theory +hep-th/0309142 Theory +hep-th/0309165 Theory +hep-th/0309173 Theory +hep-th/0309196 Theory +hep-th/0309198 Theory +hep-th/0309201 Theory +hep-th/0309203 Theory +hep-th/0309217 Theory +hep-th/0309239 Theory +hep-th/0309265 Theory +hep-th/0310006 Theory +hep-th/0310016 Theory +hep-th/0310021 Theory +hep-th/0310027 Theory +hep-th/0310038 Theory +hep-th/0310099 Theory +hep-th/0310113 Theory +hep-th/0310117 Theory +hep-th/0310139 Theory +hep-th/0310147 Theory +hep-th/0310221 Theory +hep-th/0310277 Theory +hep-th/0310289 Theory +hep-th/0311009 Theory +hep-th/0311012 Theory +hep-th/0311023 Theory +hep-th/0311042 Theory +hep-th/0311045 Theory +hep-th/0311049 Theory +hep-th/0311050 Theory +hep-th/0311075 Theory +hep-th/0311077 Theory +hep-th/0311092 Theory +hep-th/0311108 Theory +hep-th/0311109 Theory +hep-th/0311130 Theory +hep-th/0311170 Theory +hep-th/0311181 Theory +hep-th/0311193 Theory +hep-th/0311238 Theory +hep-th/0311241 Theory +hep-th/0311243 Theory +hep-th/0311244 Theory +hep-th/0311253 Theory +hep-th/0311262 Theory +hep-th/0311265 Theory +hep-th/0312007 Theory +hep-th/0312012 Theory +hep-th/0312019 Theory +hep-th/0312033 Theory +hep-th/0312055 Theory +hep-th/0312059 Theory +hep-th/0312066 Theory +hep-th/0312089 Theory +hep-th/0312113 Theory +hep-th/0312126 Theory +hep-th/0312157 Theory +hep-th/0312160 Theory +hep-th/0312164 Theory +hep-th/0312186 Theory +hep-th/0312210 Theory +hep-th/0312218 Theory +hep-th/0312219 Theory +hep-th/0312232 Theory +hep-th/0312233 Theory +hep-th/0312256 Theory +hep-th/0312273 Theory +hep-th/0312303 Theory +hep-th/0401037 Theory +hep-th/0401054 Theory +hep-th/0401072 Theory +hep-th/0401088 Theory +hep-th/0401090 Theory +hep-th/0401128 Theory +hep-th/0401141 Theory +hep-th/0401142 Theory +hep-th/0401177 Theory +hep-th/0401206 Theory +hep-th/0402041 Theory +hep-th/0402061 Theory +hep-th/0402091 Theory +hep-th/0402094 Theory +hep-th/0402105 Theory +hep-th/0402129 Theory +hep-th/0402135 Theory +hep-th/0402139 Theory +hep-th/0402140 Theory +hep-th/0402144 Theory +hep-th/0402173 Theory +hep-th/0402190 Theory +hep-th/0402215 Theory +hep-th/0403013 Theory +hep-th/0403016 Theory +hep-th/0403042 Theory +hep-th/0403044 Theory +hep-th/0403049 Theory +hep-th/0403052 Theory +hep-th/0403084 Theory +hep-th/0403107 Theory +hep-th/0403119 Theory +hep-th/0403126 Theory +hep-th/0403154 Theory +hep-th/0403182 Theory +hep-th/0403202 Theory +hep-th/0403215 Theory +hep-th/0403220 Theory +hep-th/0403222 Theory +hep-th/0403265 Theory +hep-th/0403278 Theory +hep-th/0404011 Theory +hep-th/0404017 Theory +hep-th/0404027 Theory +hep-th/0404030 Theory +hep-th/0404041 Theory +hep-th/0404056 Theory +hep-th/0404059 Theory +hep-th/0404069 Theory +hep-th/0404071 Theory +hep-th/0404073 Theory +hep-th/0404077 Theory +hep-th/0404085 Theory +hep-th/0404112 Theory +hep-th/0404124 Theory +hep-th/0404134 Theory +hep-th/0404145 Theory +hep-th/0404147 Theory +hep-th/0404162 Theory +hep-th/0404173 Theory +hep-th/0404174 Theory +hep-th/0404181 Theory +hep-th/0404189 Theory +hep-th/0404200 Theory +hep-th/0404212 Theory +hep-th/0404222 Theory +hep-th/0404228 Theory +hep-th/0404260 Theory +hep-th/0405014 Theory +hep-th/0405017 Theory +hep-th/0405022 Theory +hep-th/0405042 Theory +hep-th/0405050 Theory +hep-th/0405062 Theory +hep-th/0405078 Theory +hep-th/0405083 Theory +hep-th/0405087 Theory +hep-th/0405091 Theory +hep-th/0405098 Theory +hep-th/0405100 Theory +hep-th/0405103 Theory +hep-th/0405113 Theory +hep-th/0405118 Theory +hep-th/0405127 Theory +hep-th/0405134 Theory +hep-th/0405142 Theory +hep-th/0405157 Theory +hep-th/0405160 Theory +hep-th/0405178 Theory +hep-th/0405180 Theory +hep-th/0405187 Theory +hep-th/0405215 Theory +hep-th/0405237 Theory +hep-th/0405241 Theory +hep-th/0405282 Theory +hep-th/0406005 Theory +hep-th/0406016 Theory +hep-th/0406019 Theory +hep-th/0406021 Theory +hep-th/0406022 Theory +hep-th/0406023 Theory +hep-th/0406050 Theory +hep-th/0406060 Theory +hep-th/0406070 Theory +hep-th/0406092 Theory +hep-th/0406103 Theory +hep-th/0406106 Theory +hep-th/0406117 Theory +hep-th/0406136 Theory +hep-th/0406137 Theory +hep-th/0406141 Theory +hep-th/0406143 Theory +hep-th/0406150 Theory +hep-th/0406191 Theory +hep-th/0406195 Theory +hep-th/0406203 Theory +hep-th/0406207 Theory +hep-th/0406208 Theory +hep-th/0406210 Theory +hep-th/0406223 Theory +hep-th/0406224 Theory +hep-th/0406231 Theory +hep-th/0406245 Theory +hep-th/0406247 Theory +hep-th/0406253 Theory +hep-th/0406257 Theory +hep-th/0406259 Theory +hep-th/0406264 Theory +hep-th/0406265 Theory +hep-th/0406275 Theory +hep-th/0407037 Theory +hep-th/0407038 Theory +hep-th/0407041 Theory +hep-th/0407043 Theory +hep-th/0407046 Theory +hep-th/0407053 Theory +hep-th/0407063 Theory +hep-th/0407065 Theory +hep-th/0407068 Theory +hep-th/0407071 Theory +hep-th/0407075 Theory +hep-th/0407081 Theory +hep-th/0407092 Theory +hep-th/0407094 Theory +hep-th/0407135 Theory +hep-th/0407139 Theory +hep-th/0407144 Theory +hep-th/0407145 Theory +hep-th/0407152 Theory +hep-th/0407158 Theory +hep-th/0407165 Theory +hep-th/0407176 Theory +hep-th/0407178 Theory +hep-th/0407192 Theory +hep-th/0407193 Theory +hep-th/0407205 Theory +hep-th/0407220 Theory +hep-th/0407224 Theory +hep-th/0407240 Theory +hep-th/0407243 Theory +hep-th/0407244 Theory +hep-th/0407261 Theory +hep-th/0407263 Theory +hep-th/0407269 Theory +hep-th/0407271 Theory +hep-th/0408005 Theory +hep-th/0408014 Theory +hep-th/0408016 Theory +hep-th/0408036 Theory +hep-th/0408037 Theory +hep-th/0408062 Theory +hep-th/0408063 Theory +hep-th/0408066 Theory +hep-th/0408070 Theory +hep-th/0408085 Theory +hep-th/0408086 Theory +hep-th/0408094 Theory +hep-th/0408105 Theory +hep-th/0408113 Theory +hep-th/0408119 Theory +hep-th/0408121 Theory +hep-th/0408127 Theory +hep-th/0408133 Theory +hep-th/0408134 Theory +hep-th/0408138 Theory +hep-th/0408149 Theory +hep-th/0408150 Theory +hep-th/0408155 Theory +hep-th/0408156 Theory +hep-th/0408160 Theory +hep-th/0408161 Theory +hep-th/0408173 Theory +hep-th/0408175 Theory +hep-th/0408186 Theory +hep-th/0408190 Theory +hep-th/0408198 Theory +hep-th/0408200 Theory +hep-th/0408210 Theory +hep-th/0408236 Theory +hep-th/0408242 Theory +hep-th/0409002 Theory +hep-th/0409018 Theory +hep-th/0409020 Theory +hep-th/0409023 Theory +hep-th/0409027 Theory +hep-th/0409034 Theory +hep-th/0409066 Theory +hep-th/0409076 Theory +hep-th/0409081 Theory +hep-th/0409085 Theory +hep-th/0409090 Theory +hep-th/0409097 Theory +hep-th/0409098 Theory +hep-th/0409104 Theory +hep-th/0409122 Theory +hep-th/0409124 Theory +hep-th/0409128 Theory +hep-th/0409132 Theory +hep-th/0409137 Theory +hep-th/0409164 Theory +hep-th/0409173 Theory +hep-th/0409181 Theory +hep-th/0409190 Theory +hep-th/0409195 Theory +hep-th/0409199 Theory +hep-th/0409200 Theory +hep-th/0409212 Theory +hep-th/0409217 Theory +hep-th/0409219 Theory +hep-th/0409223 Theory +hep-th/0409238 Theory +hep-th/0409243 Theory +hep-th/0409249 Theory +hep-th/0409253 Theory +hep-th/0409270 Theory +hep-th/0409273 Theory +hep-th/0409284 Theory +hep-th/0409289 Theory +hep-th/0409298 Theory +hep-th/0409299 Theory +hep-th/0409303 Theory +hep-th/0409312 Theory +hep-th/0409315 Theory +hep-th/0410007 Theory +hep-th/0410022 Theory +hep-th/0410026 Theory +hep-th/0410045 Theory +hep-th/0410047 Theory +hep-th/0410049 Theory +hep-th/0410055 Theory +hep-th/0410060 Theory +hep-th/0410067 Theory +hep-th/0410098 Theory +hep-th/0410141 Theory +hep-th/0410158 Theory +hep-th/0410167 Theory +hep-th/0410177 Theory +hep-th/0410186 Theory +hep-th/0410191 Theory +hep-th/0410192 Theory +hep-th/0410206 Theory +hep-th/0410210 Theory +hep-th/0410217 Theory +hep-th/0410236 Theory +hep-th/0410261 Theory +hep-th/0410264 Theory +hep-th/0410275 Theory +hep-th/0410282 Theory +hep-th/0411001 Theory +hep-th/0411009 Theory +hep-th/0411014 Theory +hep-th/0411019 Theory +hep-th/0411023 Theory +hep-th/0411029 Theory +hep-th/0411057 Theory +hep-th/0411060 Theory +hep-th/0411066 Theory +hep-th/0411073 Theory +hep-th/0411077 Theory +hep-th/0411081 Theory +hep-th/0411088 Theory +hep-th/0411095 Theory +hep-th/0411099 Theory +hep-th/0411123 Theory +hep-th/0411128 Theory +hep-th/0411129 Theory +hep-th/0411132 Theory +hep-th/0411135 Theory +hep-th/0411148 Theory +hep-th/0411157 Theory +hep-th/0411169 Theory +hep-th/0411170 Theory +hep-th/0411191 Theory +hep-th/0411192 Theory +hep-th/0411200 Theory +hep-th/0411205 Theory +hep-th/0411213 Theory +hep-th/0411221 Theory +hep-th/0411237 Theory +hep-th/0411250 Theory +hep-th/0411257 Theory +hep-th/0411273 Theory +hep-th/0412003 Theory +hep-th/0412015 Theory +hep-th/0412016 Theory +hep-th/0412022 Theory +hep-th/0412023 Theory +hep-th/0412040 Theory +hep-th/0412044 Theory +hep-th/0412045 Theory +hep-th/0412071 Theory +hep-th/0412075 Theory +hep-th/0412109 Theory +hep-th/0412116 Theory +hep-th/0412140 Theory +hep-th/0412187 Theory +hep-th/0412204 Theory +hep-th/0412205 Theory +hep-th/0412223 Theory +hep-th/0412235 Theory +hep-th/0412251 Theory +hep-th/0412268 Theory +hep-th/0412273 Theory +hep-th/0412276 Theory +hep-th/0412280 Theory +hep-th/0412286 Theory +hep-th/0412294 Theory +hep-th/0412305 Theory +hep-th/0412307 Theory +hep-th/0412308 Theory +hep-th/0412337 Theory +hep-th/0501004 Theory +hep-th/0501005 Theory +hep-th/0501006 Theory +hep-th/0501041 Theory +hep-th/0501048 Theory +hep-th/0501058 Theory +hep-th/0501065 Theory +hep-th/0501070 Theory +hep-th/0501099 Theory +hep-th/0501104 Theory +hep-th/0501105 Theory +hep-th/0501109 Theory +hep-th/0501121 Theory +hep-th/0501122 Theory +hep-th/0501123 Theory +hep-th/0501130 Theory +hep-th/0501131 Theory +hep-th/0501139 Theory +hep-th/0501140 Theory +hep-th/0501148 Theory +hep-th/0501153 Theory +hep-th/0501160 Theory +hep-th/0501176 Theory +hep-th/0501197 Theory +hep-th/0501209 Theory +hep-th/0501228 Theory +hep-th/0501241 Theory +hep-th/0502014 Theory +hep-th/0502028 Theory +hep-th/0502038 Theory +hep-th/0502046 Theory +hep-th/0502049 Theory +hep-th/0502130 Theory +hep-th/0502139 Theory +hep-th/0502146 Theory +hep-th/0502149 Theory +hep-th/0502152 Theory +hep-th/0502173 Theory +hep-th/0502184 Theory +hep-th/0502243 Theory +hep-th/0503006 Theory +hep-th/0503030 Theory +hep-th/0503044 Theory +hep-th/0503061 Theory +hep-th/0503085 Theory +hep-th/0503124 Theory +hep-th/0503141 Theory +hep-th/0503142 Theory +hep-th/0503145 Theory +hep-th/0503178 Theory +hep-th/0503194 Theory +hep-th/0503213 Theory +hep-th/0503216 Theory +hep-th/0504004 Theory +hep-th/0504006 Theory +hep-th/0504022 Theory +hep-th/0504047 Theory +hep-th/0504053 Theory +hep-th/0504083 Theory +hep-th/0504103 Theory +hep-th/0504142 Theory +hep-th/0504160 Theory +hep-th/0504163 Theory +hep-th/0504190 Theory +hep-th/0504203 Theory +hep-th/0504212 Theory +hep-th/0504220 Theory +hep-th/0504221 Theory +hep-th/0504234 Theory +hep-th/0505014 Theory +hep-th/0505017 Theory +hep-th/0505018 Theory +hep-th/0505041 Theory +hep-th/0505048 Theory +hep-th/0505051 Theory +hep-th/0505055 Theory +hep-th/0505066 Theory +hep-th/0505069 Theory +hep-th/0505082 Theory +hep-th/0505100 Theory +hep-th/0505118 Theory +hep-th/0505133 Theory +hep-th/0505159 Theory +hep-th/0505162 Theory +hep-th/0505163 Theory +hep-th/0505195 Theory +hep-th/0505205 Theory +hep-th/0505215 Theory +hep-th/0505238 Theory +hep-th/0506006 Theory +hep-th/0506021 Theory +hep-th/0506029 Theory +hep-th/0506053 Theory +hep-th/0506073 Theory +hep-th/0506090 Theory +hep-th/0506094 Theory +hep-th/0506103 Theory +hep-th/0506106 Theory +hep-th/0506119 Theory +hep-th/0506136 Theory +hep-th/0506153 Theory +hep-th/0506154 Theory +hep-th/0506156 Theory +hep-th/0506157 Theory +hep-th/0506173 Theory +hep-th/0506236 Theory +hep-th/0506239 Theory +hep-th/0506244 Theory +hep-th/0506258 Theory +hep-th/0506263 Theory +hep-th/0507026 Theory +hep-th/0507063 Theory +hep-th/0507068 Theory +hep-th/0507072 Theory +hep-th/0507073 Theory +hep-th/0507095 Theory +hep-th/0507109 Theory +hep-th/0507115 Theory +hep-th/0507124 Theory +hep-th/0507137 Theory +hep-th/0507146 Theory +hep-th/0507152 Theory +hep-th/0507154 Theory +hep-th/0507171 Theory +hep-th/0507182 Theory +hep-th/0507216 Theory +hep-th/0507228 Theory +hep-th/0507253 Theory +hep-th/0507276 Theory +hep-th/0507285 Theory +hep-th/0507291 Theory +hep-th/0508010 Theory +hep-th/0508046 Theory +hep-th/0508050 Theory +hep-th/0508060 Theory +hep-th/0508067 Theory +hep-th/0508069 Theory +hep-th/0508074 Theory +hep-th/0508079 Theory +hep-th/0508093 Theory +hep-th/0508109 Theory +hep-th/0508117 Theory +hep-th/0508123 Theory +hep-th/0508139 Theory +hep-th/0508143 Theory +hep-th/0508151 Theory +hep-th/0508163 Theory +hep-th/0508167 Theory +hep-th/0508179 Theory +hep-th/0508185 Theory +hep-th/0508232 Theory +hep-th/0508240 Theory +hep-th/0509017 Theory +hep-th/0509018 Theory +hep-th/0509026 Theory +hep-th/0509031 Theory +hep-th/0509034 Theory +hep-th/0509037 Theory +hep-th/0509050 Theory +hep-th/0509055 Theory +hep-th/0509057 Theory +hep-th/0509059 Theory +hep-th/0509064 Theory +hep-th/0509077 Theory +hep-th/0509081 Theory +hep-th/0509083 Theory +hep-th/0509085 Theory +hep-th/0509098 Theory +hep-th/0509101 Theory +hep-th/0509109 Theory +hep-th/0509113 Theory +hep-th/0509117 Theory +hep-th/0509118 Theory +hep-th/0509123 Theory +hep-th/0509124 Theory +hep-th/0509128 Theory +hep-th/0509131 Theory +hep-th/0509133 Theory +hep-th/0509135 Theory +hep-th/0509143 Theory +hep-th/0509148 Theory +hep-th/0509155 Theory +hep-th/0509159 Theory +hep-th/0509161 Theory +hep-th/0509167 Theory +hep-th/0509182 Theory +hep-th/0509193 Theory +hep-th/0509205 Theory +hep-th/0509210 Theory +hep-th/0509218 Theory +hep-th/0509227 Theory +hep-th/0509231 Theory +hep-th/0509235 Theory +hep-th/0510002 Theory +hep-th/0510013 Theory +hep-th/0510017 Theory +hep-th/0510022 Theory +hep-th/0510028 Theory +hep-th/0510032 Theory +hep-th/0510042 Theory +hep-th/0510043 Theory +hep-th/0510044 Theory +hep-th/0510045 Theory +hep-th/0510053 Theory +hep-th/0510055 Theory +hep-th/0510057 Theory +hep-th/0510062 Theory +hep-th/0510064 Theory +hep-th/0510065 Theory +hep-th/0510066 Theory +hep-th/0510067 Theory +hep-th/0510068 Theory +hep-th/0510069 Theory +hep-th/0510074 Theory +hep-th/0510076 Theory +hep-th/0510082 Theory +hep-th/0510098 Theory +hep-th/0510102 Theory +hep-th/0510113 Theory +hep-th/0510119 Theory +hep-th/0510121 Theory +hep-th/0510128 Theory +hep-th/0510140 Theory +hep-th/0510145 Theory +hep-th/0510149 Theory +hep-th/0510155 Theory +hep-th/0510156 Theory +hep-th/0510160 Theory +hep-th/0510161 Theory +hep-th/0510162 Theory +hep-th/0510165 Theory +hep-th/0510168 Theory +hep-th/0510182 Theory +hep-th/0510190 Theory +hep-th/0510193 Theory +hep-th/0510196 Theory +hep-th/0510202 Theory +hep-th/0510212 Theory +hep-th/0510215 Theory +hep-th/0510219 Theory +hep-th/0510220 Theory +hep-th/0510235 Theory +hep-th/0510237 Theory +hep-th/0510240 Theory +hep-th/0510242 Theory +hep-th/0510247 Theory +hep-th/0510252 Theory +hep-th/0510255 Theory +hep-th/0510259 Theory +hep-th/0510262 Theory +hep-th/0510267 Theory +hep-th/0510273 Theory +hep-th/0510274 Theory +hep-th/0511003 Theory +hep-th/0511010 Theory +hep-th/0511011 Theory +hep-th/0511022 Theory +hep-th/0511030 Theory +hep-th/0511040 Theory +hep-th/0511041 Theory +hep-th/0511054 Theory +hep-th/0511055 Theory +hep-th/0511059 Theory +hep-th/0511060 Theory +hep-th/0511063 Theory +hep-th/0511066 Theory +hep-th/0511074 Theory +hep-th/0511079 Theory +hep-th/0511081 Theory +hep-th/0511083 Theory +hep-th/0511094 Theory +hep-th/0511095 Theory +hep-th/0511098 Theory +hep-th/0511099 Theory +hep-th/0511102 Theory +hep-th/0511121 Theory +hep-th/0511122 Theory +hep-th/0511133 Theory +hep-th/0511137 Theory +hep-th/0511151 Theory +hep-th/0511157 Theory +hep-th/0511159 Theory +hep-th/0511167 Theory +hep-th/0511175 Theory +hep-th/0511178 Theory +hep-th/0511180 Theory +hep-th/0511183 Theory +hep-th/0511200 Theory +hep-th/0511206 Theory +hep-th/0511208 Theory +hep-th/0511210 Theory +hep-th/0511213 Theory +hep-th/0511219 Theory +hep-th/0511224 Theory +hep-th/0511226 Theory +hep-th/0511231 Theory +hep-th/0511241 Theory +hep-th/0511245 Theory +hep-th/0511246 Theory +hep-th/0511249 Theory +hep-th/0511252 Theory +hep-th/0511259 Theory +hep-th/0511266 Theory +hep-th/0511278 Theory +hep-th/0511280 Theory +hep-th/0511281 Theory +hep-th/0511286 Theory +hep-th/0511289 Theory +hep-th/0511292 Theory +hep-th/0511293 Theory +hep-th/0511298 Theory +hep-th/0511301 Theory +hep-th/0511303 Theory +hep-th/0511305 Theory +hep-th/0511307 Theory +hep-th/0512003 Theory +hep-th/0512006 Theory +hep-th/0512008 Theory +hep-th/0512013 Theory +hep-th/0512017 Theory +hep-th/0512020 Theory +hep-th/0512022 Theory +hep-th/0512026 Theory +hep-th/0512027 Theory +hep-th/0512030 Theory +hep-th/0512032 Theory +hep-th/0512042 Theory +hep-th/0512049 Theory +hep-th/0512058 Theory +hep-th/0512059 Theory +hep-th/0512063 Theory +hep-th/0512067 Theory +hep-th/0512068 Theory +hep-th/0512071 Theory +hep-th/0512075 Theory +hep-th/0512078 Theory +hep-th/0512079 Theory +hep-th/0512081 Theory +hep-th/0512085 Theory +hep-th/0512090 Theory +hep-th/0512091 Theory +hep-th/0512096 Theory +hep-th/0512097 Theory +hep-th/0512098 Theory +hep-th/0512103 Theory +hep-th/0512107 Theory +hep-th/0512110 Theory +hep-th/0512111 Theory +hep-th/0512113 Theory +hep-th/0512114 Theory +hep-th/0512117 Theory +hep-th/0512118 Theory +hep-th/0512123 Theory +hep-th/0512124 Theory +hep-th/0512127 Theory +hep-th/0512129 Theory +hep-th/0512130 Theory +hep-th/0512131 Theory +hep-th/0512132 Theory +hep-th/0512133 Theory +hep-th/0512136 Theory +hep-th/0512137 Theory +hep-th/0512140 Theory +hep-th/0512143 Theory +hep-th/0512149 Theory +hep-th/0512150 Theory +hep-th/0512151 Theory +hep-th/0512159 Theory +hep-th/0512162 Theory +hep-th/0512163 Theory +hep-th/0512165 Theory +hep-th/0512167 Theory +hep-th/0512168 Theory +hep-th/0512175 Theory +hep-th/0512176 Theory +hep-th/0512182 Theory +hep-th/0512184 Theory +hep-th/0512185 Theory +hep-th/0512198 Theory +hep-th/0512199 Theory +hep-th/0512201 Theory +hep-th/0512203 Theory +hep-th/0512205 Theory +hep-th/0512208 Theory +hep-th/0512209 Theory +hep-th/0512219 Theory +hep-th/0512225 Theory +hep-th/0512227 Theory +hep-th/0512229 Theory +hep-th/0512232 Theory +hep-th/0512234 Theory +hep-th/0512237 Theory +hep-th/0512241 Theory +hep-th/0512249 Theory +hep-th/0512250 Theory +hep-th/0512254 Theory +hep-th/0512257 Theory +hep-th/0512262 Theory +hep-th/0512265 Theory +hep-th/0512272 Theory +hep-th/0512278 Theory +hep-th/0512280 Theory +hep-th/0512289 Theory +hep-th/0512291 Theory +hep-th/0512299 Theory +hep-th/0512303 Theory +hep-th/0512306 Theory +hep-th/0512314 Theory +hep-th/0512317 Theory +hep-th/0512325 Theory +hep-th/0512330 Theory +hep-th/0512333 Theory +hep-th/0512337 Theory +hep-th/0512338 Theory +hep-th/0512342 Theory +hep-th/0512344 Theory +hep-th/0512345 Theory +hep-th/0512346 Theory +hep-th/0512348 Theory +hep-th/0512350 Theory +hep-th/0512353 Theory +hep-th/0512355 Theory +hep-th/0601002 Theory +hep-th/0601003 Theory +hep-th/0601004 Theory +hep-th/0601005 Theory +hep-th/0601007 Theory +hep-th/0601008 Theory +hep-th/0601011 Theory +hep-th/0601013 Theory +hep-th/0601014 Theory +hep-th/0601015 Theory +hep-th/0601017 Theory +hep-th/0601025 Theory +hep-th/0601027 Theory +hep-th/0601028 Theory +hep-th/0601030 Theory +hep-th/0601032 Theory +hep-th/0601034 Theory +hep-th/0601036 Theory +hep-th/0601037 Theory +hep-th/0601039 Theory +hep-th/0601040 Theory +hep-th/0601044 Theory +hep-th/0601045 Theory +hep-th/0601050 Theory +hep-th/0601054 Theory +hep-th/0601056 Theory +hep-th/0601058 Theory +hep-th/0601059 Theory +hep-th/0601061 Theory +hep-th/0601062 Theory +hep-th/0601064 Theory +hep-th/0601065 Theory +hep-th/0601066 Theory +hep-th/0601074 Theory +hep-th/0601077 Theory +hep-th/0601078 Theory +hep-th/0601079 Theory +hep-th/0601082 Theory +hep-th/0601085 Theory +hep-th/0601089 Theory +hep-th/0601090 Theory +hep-th/0601093 Theory +hep-th/0601095 Theory +hep-th/0601096 Theory +hep-th/0601098 Theory +hep-th/0601101 Theory +hep-th/0601105 Theory +hep-th/0601106 Theory +hep-th/0601112 Theory +hep-th/0601113 Theory +hep-th/0601114 Theory +hep-th/0601119 Theory +hep-th/0601120 Theory +hep-th/0601122 Theory +hep-th/0601124 Theory +hep-th/0601126 Theory +hep-th/0601129 Theory +hep-th/0601131 Theory +hep-th/0601132 Theory +hep-th/0601134 Theory +hep-th/0601139 Theory +hep-th/0601141 Theory +hep-th/0601148 Theory +hep-th/0601153 Theory +hep-th/0601154 Theory +hep-th/0601156 Theory +hep-th/0601160 Theory +hep-th/0601161 Theory +hep-th/0601169 Theory +hep-th/0601173 Theory +hep-th/0601175 Theory +hep-th/0601177 Theory +hep-th/0601178 Theory +hep-th/0601181 Theory +hep-th/0601186 Theory +hep-th/0601187 Theory +hep-th/0601188 Theory +hep-th/0601193 Theory +hep-th/0601197 Theory +hep-th/0601208 Theory +hep-th/0601209 Theory +hep-th/0601219 Theory +hep-th/0601220 Theory +hep-th/0601222 Theory +hep-th/0601224 Theory +hep-th/0601227 Theory +hep-th/0601229 Theory +hep-th/0601230 Theory +hep-th/0601233 Theory +hep-th/0601236 Theory +hep-th/0602001 Theory +hep-th/0602002 Theory +hep-th/0602007 Theory +hep-th/0602008 Theory +hep-th/0602010 Theory +hep-th/0602015 Theory +hep-th/0602017 Theory +hep-th/0602019 Theory +hep-th/0602023 Theory +hep-th/0602028 Theory +hep-th/0602031 Theory +hep-th/0602039 Theory +hep-th/0602050 Theory +hep-th/0602052 Theory +hep-th/0602055 Theory +hep-th/0602056 Theory +hep-th/0602061 Theory +hep-th/0602062 Theory +hep-th/0602064 Theory +hep-th/0602067 Theory +hep-th/0602068 Theory +hep-th/0602069 Theory +hep-th/0602070 Theory +hep-th/0602072 Theory +hep-th/0602076 Theory +hep-th/0602080 Theory +hep-th/0602081 Theory +hep-th/0602082 Theory +hep-th/0602083 Theory +hep-th/0602094 Theory +hep-th/0602096 Theory +hep-th/0602099 Theory +hep-th/0602100 Theory +hep-th/0602101 Theory +hep-th/0602102 Theory +hep-th/0602106 Theory +hep-th/0602107 Theory +hep-th/0602109 Theory +hep-th/0602110 Theory +hep-th/0602111 Theory +hep-th/0602113 Theory +hep-th/0602114 Theory +hep-th/0602116 Theory +hep-th/0602117 Theory +hep-th/0602123 Theory +hep-th/0602130 Theory +hep-th/0602131 Theory +hep-th/0602134 Theory +hep-th/0602144 Theory +hep-th/0602148 Theory +hep-th/0602154 Theory +hep-th/0602156 Theory +hep-th/0602158 Theory +hep-th/0602159 Theory +hep-th/0602160 Theory +hep-th/0602161 Theory +hep-th/0602172 Theory +hep-th/0602173 Theory +hep-th/0602175 Theory +hep-th/0602176 Theory +hep-th/0602179 Theory +hep-th/0602180 Theory +hep-th/0602187 Theory +hep-th/0602192 Theory +hep-th/0602194 Theory +hep-th/0602196 Theory +hep-th/0602198 Theory +hep-th/0602200 Theory +hep-th/0602201 Theory +hep-th/0602203 Theory +hep-th/0602204 Theory +hep-th/0602205 Theory +hep-th/0602208 Theory +hep-th/0602209 Theory +hep-th/0602210 Theory +hep-th/0602212 Theory +hep-th/0602214 Theory +hep-th/0602216 Theory +hep-th/0602217 Theory +hep-th/0602222 Theory +hep-th/0602224 Theory +hep-th/0602225 Theory +hep-th/0602227 Theory +hep-th/0602228 Theory +hep-th/0602229 Theory +hep-th/0602238 Theory +hep-th/0602241 Theory +hep-th/0602242 Theory +hep-th/0602243 Theory +hep-th/0602244 Theory +hep-th/0602253 Theory +hep-th/0602260 Theory +hep-th/0602265 Theory +hep-th/0602267 Theory +hep-th/0602268 Theory +hep-th/0602272 Theory +hep-th/0602274 Theory +hep-th/0602276 Theory +hep-th/0602277 Theory +hep-th/0602284 Theory +hep-th/0602285 Theory +hep-th/0602286 Theory +hep-th/0602289 Theory +hep-th/0602292 Theory +hep-th/0602295 Theory +hep-th/0603005 Theory +hep-th/0603006 Theory +hep-th/0603012 Theory +hep-th/0603013 Theory +hep-th/0603014 Theory +hep-th/0603015 Theory +hep-th/0603017 Theory +hep-th/0603018 Theory +hep-th/0603021 Theory +hep-th/0603022 Theory +hep-th/0603023 Theory +hep-th/0603024 Theory +hep-th/0603026 Theory +hep-th/0603027 Theory +hep-th/0603029 Theory +hep-th/0603031 Theory +hep-th/0603032 Theory +hep-th/0603033 Theory +hep-th/0603038 Theory +hep-th/0603042 Theory +hep-th/0603043 Theory +hep-th/0603047 Theory +hep-th/0603049 Theory +hep-th/0603056 Theory +hep-th/0603057 Theory +hep-th/0603060 Theory +hep-th/0603061 Theory +hep-th/0603065 Theory +hep-th/0603066 Theory +hep-th/0603068 Theory +hep-th/0603071 Theory +hep-th/0603072 Theory +hep-th/0603077 Theory +hep-th/0603078 Theory +hep-th/0603080 Theory +hep-th/0603083 Theory +hep-th/0603090 Theory +hep-th/0603091 Theory +hep-th/0603092 Theory +hep-th/0603096 Theory +hep-th/0603099 Theory +hep-th/0603105 Theory +hep-th/0603106 Theory +hep-th/0603111 Theory +hep-th/0603114 Theory +hep-th/0603116 Theory +hep-th/0603117 Theory +hep-th/0603120 Theory +hep-th/0603123 Theory +hep-th/0603125 Theory +hep-th/0603126 Theory +hep-th/0603135 Theory +hep-th/0603136 Theory +hep-th/0603143 Theory +hep-th/0603145 Theory +hep-th/0603146 Theory +hep-th/0603147 Theory +hep-th/0603154 Theory +hep-th/0603155 Theory +hep-th/0603158 Theory +hep-th/0603160 Theory +hep-th/0603163 Theory +hep-th/0603164 Theory +hep-th/0603169 Theory +hep-th/0603171 Theory +hep-th/0603174 Theory +hep-th/0603179 Theory +hep-th/0603180 Theory +hep-th/0603182 Theory +hep-th/0603183 Theory +hep-th/0603185 Theory +hep-th/0603186 Theory +hep-th/0603187 Theory +hep-th/0603189 Theory +hep-th/0603190 Theory +hep-th/0603192 Theory +hep-th/0603194 Theory +hep-th/0603195 Theory +hep-th/0603197 Theory +hep-th/0603199 Theory +hep-th/0603200 Theory +hep-th/0603205 Theory +hep-th/0603212 Theory +hep-th/0603213 Theory +hep-th/0603215 Theory +hep-th/0603216 Theory +hep-th/0603219 Theory +hep-th/0603221 Theory +hep-th/0603222 Theory +hep-th/0603224 Theory +hep-th/0603226 Theory +hep-th/0603228 Theory +hep-th/0603231 Theory +hep-th/0603234 Theory +hep-th/0603235 Theory +hep-th/0603239 Theory +hep-th/0603241 Theory +hep-th/0603242 Theory +hep-th/0603248 Theory +hep-th/0603255 Theory +hep-th/0603256 Theory +hep-th/0604001 Theory +hep-th/0604009 Theory +hep-th/0604010 Theory +hep-th/0604012 Theory +hep-th/0604014 Theory +hep-th/0604018 Theory +hep-th/0604019 Theory +hep-th/0604022 Theory +hep-th/0604025 Theory +hep-th/0604026 Theory +hep-th/0604029 Theory +hep-th/0604030 Theory +hep-th/0604031 Theory +hep-th/0604036 Theory +hep-th/0604038 Theory +hep-th/0604039 Theory +hep-th/0604041 Theory +hep-th/0604043 Theory +hep-th/0604048 Theory +hep-th/0604049 Theory +hep-th/0604050 Theory +hep-th/0604056 Theory +hep-th/0604057 Theory +hep-th/0604060 Theory +hep-th/0604064 Theory +hep-th/0604065 Theory +hep-th/0604068 Theory +hep-th/0604069 Theory +hep-th/0604070 Theory +hep-th/0604071 Theory +hep-th/0604072 Theory +hep-th/0604073 Theory +hep-th/0604074 Theory +hep-th/0604079 Theory +hep-th/0604082 Theory +hep-th/0604092 Theory +hep-th/0604094 Theory +hep-th/0604096 Theory +hep-th/0604101 Theory +hep-th/0604106 Theory +hep-th/0604107 Theory +hep-th/0604110 Theory +hep-th/0604112 Theory +hep-th/0604113 Theory +hep-th/0604116 Theory +hep-th/0604121 Theory +hep-th/0604122 Theory +hep-th/0604126 Theory +hep-th/0604127 Theory +hep-th/0604129 Theory +hep-th/0604131 Theory +hep-th/0604134 Theory +hep-th/0604137 Theory +hep-th/0604141 Theory +hep-th/0604142 Theory +hep-th/0604146 Theory +hep-th/0604153 Theory +hep-th/0604156 Theory +hep-th/0604157 Theory +hep-th/0604158 Theory +hep-th/0604162 Theory +hep-th/0604164 Theory +hep-th/0604166 Theory +hep-th/0604167 Theory +hep-th/0604168 Theory +hep-th/0604171 Theory +hep-th/0604172 Theory +hep-th/0604173 Theory +hep-th/0604177 Theory +hep-th/0604178 Theory +hep-th/0604181 Theory +hep-th/0604182 Theory +hep-th/0604183 Theory +hep-th/0604184 Theory +hep-th/0604188 Theory +hep-th/0604201 Theory +hep-th/0604202 Theory +hep-th/0604204 Theory +hep-th/0604207 Theory +hep-th/0604208 Theory +hep-th/0604210 Theory +hep-th/0604211 Theory +hep-th/0604215 Theory +hep-th/0604217 Theory +hep-th/0605001 Theory +hep-th/0605004 Theory +hep-th/0605006 Theory +hep-th/0605007 Theory +hep-th/0605008 Theory +hep-th/0605010 Theory +hep-th/0605011 Theory +hep-th/0605012 Theory +hep-th/0605016 Theory +hep-th/0605021 Theory +hep-th/0605025 Theory +hep-th/0605026 Theory +hep-th/0605032 Theory +hep-th/0605035 Theory +hep-th/0605039 Theory +hep-th/0605040 Theory +hep-th/0605041 Theory +hep-th/0605043 Theory +hep-th/0605046 Theory +hep-th/0605047 Theory +hep-th/0605048 Theory +hep-th/0605056 Theory +hep-th/0605057 Theory +hep-th/0605058 Theory +hep-th/0605059 Theory +hep-th/0605064 Theory +hep-th/0605065 Theory +hep-th/0605066 Theory +hep-th/0605069 Theory +hep-th/0605070 Theory +hep-th/0605071 Theory +hep-th/0605072 Theory +hep-th/0605076 Theory +hep-th/0605078 Theory +hep-th/0605081 Theory +hep-th/0605084 Theory +hep-th/0605088 Theory +hep-th/0605090 Theory +hep-th/0605091 Theory +hep-th/0605102 Theory +hep-th/0605104 Theory +hep-th/0605105 Theory +hep-th/0605107 Theory +hep-th/0605109 Theory +hep-th/0605112 Theory +hep-th/0605115 Theory +hep-th/0605119 Theory +hep-th/0605120 Theory +hep-th/0605126 Theory +hep-th/0605127 Theory +hep-th/0605129 Theory +hep-th/0605131 Theory +hep-th/0605134 Theory +hep-th/0605137 Theory +hep-th/0605143 Theory +hep-th/0605149 Theory +hep-th/0605153 Theory +hep-th/0605154 Theory +hep-th/0605156 Theory +hep-th/0605161 Theory +hep-th/0605162 Theory +hep-th/0605164 Theory +hep-th/0605165 Theory +hep-th/0605173 Theory +hep-th/0605176 Theory +hep-th/0605179 Theory +hep-th/0605180 Theory +hep-th/0605182 Theory +hep-th/0605183 Theory +hep-th/0605184 Theory +hep-th/0605185 Theory +hep-th/0605187 Theory +hep-th/0605192 Theory +hep-th/0605193 Theory +hep-th/0605194 Theory +hep-th/0605195 Theory +hep-th/0605196 Theory +hep-th/0605197 Theory +hep-th/0605198 Theory +hep-th/0605200 Theory +hep-th/0605201 Theory +hep-th/0605204 Theory +hep-th/0605213 Theory +hep-th/0605217 Theory +hep-th/0605218 Theory +hep-th/0605220 Theory +hep-th/0605222 Theory +hep-th/0605224 Theory +hep-th/0605226 Theory +hep-th/0605227 Theory +hep-th/0605228 Theory +hep-th/0605238 Theory +hep-th/0605239 Theory +hep-th/0605243 Theory +hep-th/0605244 Theory +hep-th/0605245 Theory +hep-th/0605250 Theory +hep-th/0605252 Theory +hep-th/0605253 Theory +hep-th/0605254 Theory +hep-th/0605258 Theory +hep-th/0605263 Theory +hep-th/0605264 Theory +hep-th/0605266 Theory +hep-th/0605267 Theory +hep-th/0605268 Theory +hep-th/0605271 Theory +hep-th/0605273 Theory +hep-th/0605274 Theory +hep-th/0605275 Theory +hep-th/0605277 Theory +hep-th/0605278 Theory +hep-th/0605281 Theory +hep-th/0605283 Theory +hep-th/0605288 Theory +hep-th/0605289 Theory +hep-th/0605290 Theory +hep-th/0605291 Theory +hep-th/0605295 Theory +hep-th/0606003 Theory +hep-th/0606004 Theory +hep-th/0606005 Theory +hep-th/0606007 Theory +hep-th/0606009 Theory +hep-th/0606010 Theory +hep-th/0606017 Theory +hep-th/0606018 Theory +hep-th/0606019 Theory +hep-th/0606026 Theory +hep-th/0606028 Theory +hep-th/0606030 Theory +hep-th/0606031 Theory +hep-th/0606032 Theory +hep-th/0606033 Theory +hep-th/0606036 Theory +hep-th/0606045 Theory +hep-th/0606047 Theory +hep-th/0606048 Theory +hep-th/0606050 Theory +hep-th/0606052 Theory +hep-th/0606053 Theory +hep-th/0606054 Theory +hep-th/0606055 Theory +hep-th/0606061 Theory +hep-th/0606064 Theory +hep-th/0606065 Theory +hep-th/0606068 Theory +hep-th/0606070 Theory +hep-th/0606071 Theory +hep-th/0606072 Theory +hep-th/0606081 Theory +hep-th/0606091 Theory +hep-th/0606092 Theory +hep-th/0606095 Theory +hep-th/0606098 Theory +hep-th/0606104 Theory +hep-th/0606106 Theory +hep-th/0606108 Theory +hep-th/0606114 Theory +hep-th/0606116 Theory +hep-th/0606117 Theory +hep-th/0606120 Theory +hep-th/0606124 Theory +hep-th/0606126 Theory +hep-th/0606128 Theory +hep-th/0606129 Theory +hep-th/0606130 Theory +hep-th/0606136 Theory +hep-th/0606139 Theory +hep-th/0606141 Theory +hep-th/0606143 Theory +hep-th/0606144 Theory +hep-th/0606146 Theory +hep-th/0606147 Theory +hep-th/0606149 Theory +hep-th/0606151 Theory +hep-th/0606152 Theory +hep-th/0606153 Theory +hep-th/0606155 Theory +hep-th/0606158 Theory +hep-th/0606160 Theory +hep-th/0606163 Theory +hep-th/0606164 Theory +hep-th/0606166 Theory +hep-th/0606169 Theory +hep-th/0606171 Theory +hep-th/0606172 Theory +hep-th/0606174 Theory +hep-th/0606176 Theory +hep-th/0606178 Theory +hep-th/0606182 Theory +hep-th/0606183 Theory +hep-th/0606186 Theory +hep-th/0606187 Theory +hep-th/0606189 Theory +hep-th/0606191 Theory +hep-th/0606192 Theory +hep-th/0606195 Theory +hep-th/0606196 Theory +hep-th/0606197 Theory +hep-th/0606198 Theory +hep-th/0606199 Theory +hep-th/0606200 Theory +hep-th/0606201 Theory +hep-th/0606202 Theory +hep-th/0606204 Theory +hep-th/0606206 Theory +hep-th/0606207 Theory +hep-th/0606208 Theory +hep-th/0606210 Theory +hep-th/0606211 Theory +hep-th/0606213 Theory +hep-th/0606214 Theory +hep-th/0606215 Theory +hep-th/0606219 Theory +hep-th/0606225 Theory +hep-th/0606228 Theory +hep-th/0606232 Theory +hep-th/0606235 Theory +hep-th/0606237 Theory +hep-th/0606242 Theory +hep-th/0606243 Theory +hep-th/0606247 Theory +hep-th/0606249 Theory +hep-th/0606254 Theory +hep-th/0606256 Theory +hep-th/0606261 Theory +hep-th/0606262 Theory +hep-th/0606263 Theory +hep-th/0606267 Theory +hep-th/0606272 Theory +hep-th/0606275 Theory +hep-th/0606280 Theory +hep-th/0606281 Theory +hep-th/0606284 Theory +hep-th/0606285 Theory +hep-th/0606286 Theory +hep-th/0607004 Theory +hep-th/0607005 Theory +hep-th/0607006 Theory +hep-th/0607012 Theory +hep-th/0607013 Theory +hep-th/0607016 Theory +hep-th/0607018 Theory +hep-th/0607019 Theory +hep-th/0607020 Theory +hep-th/0607022 Theory +hep-th/0607023 Theory +hep-th/0607024 Theory +hep-th/0607025 Theory +hep-th/0607027 Theory +hep-th/0607029 Theory +hep-th/0607031 Theory +hep-th/0607038 Theory +hep-th/0607046 Theory +hep-th/0607049 Theory +hep-th/0607052 Theory +hep-th/0607055 Theory +hep-th/0607058 Theory +hep-th/0607059 Theory +hep-th/0607062 Theory +hep-th/0607066 Theory +hep-th/0607067 Theory +hep-th/0607071 Theory +hep-th/0607078 Theory +hep-th/0607080 Theory +hep-th/0607081 Theory +hep-th/0607083 Theory +hep-th/0607092 Theory +hep-th/0607097 Theory +hep-th/0607100 Theory +hep-th/0607101 Theory +hep-th/0607107 Theory +hep-th/0607112 Theory +hep-th/0607113 Theory +hep-th/0607114 Theory +hep-th/0607116 Theory +hep-th/0607117 Theory +hep-th/0607119 Theory +hep-th/0607120 Theory +hep-th/0607121 Theory +hep-th/0607127 Theory +hep-th/0607128 Theory +hep-th/0607132 Theory +hep-th/0607133 Theory +hep-th/0607139 Theory +hep-th/0607141 Theory +hep-th/0607142 Theory +hep-th/0607145 Theory +hep-th/0607148 Theory +hep-th/0607151 Theory +hep-th/0607154 Theory +hep-th/0607158 Theory +hep-th/0607163 Theory +hep-th/0607164 Theory +hep-th/0607167 Theory +hep-th/0607168 Theory +hep-th/0607172 Theory +hep-th/0607179 Theory +hep-th/0607180 Theory +hep-th/0607182 Theory +hep-th/0607183 Theory +hep-th/0607189 Theory +hep-th/0607190 Theory +hep-th/0607191 Theory +hep-th/0607193 Theory +hep-th/0607196 Theory +hep-th/0607199 Theory +hep-th/0607201 Theory +hep-th/0607208 Theory +hep-th/0607209 Theory +hep-th/0607210 Theory +hep-th/0607214 Theory +hep-th/0607215 Theory +hep-th/0607216 Theory +hep-th/0607220 Theory +hep-th/0607221 Theory +hep-th/0607228 Theory +hep-th/0607231 Theory +hep-th/0607234 Theory +hep-th/0607238 Theory +hep-th/0607240 Theory +hep-th/0607241 Theory +hep-th/0607246 Theory +hep-th/0607247 Theory +hep-th/0607248 Theory +hep-th/0607249 Theory +hep-th/0607251 Theory +hep-th/0608001 Theory +hep-th/0608002 Theory +hep-th/0608004 Theory +hep-th/0608005 Theory +hep-th/0608008 Theory +hep-th/0608015 Theory +hep-th/0608020 Theory +hep-th/0608022 Theory +hep-th/0608023 Theory +hep-th/0608028 Theory +hep-th/0608031 Theory +hep-th/0608032 Theory +hep-th/0608036 Theory +hep-th/0608037 Theory +hep-th/0608042 Theory +hep-th/0608045 Theory +hep-th/0608048 Theory +hep-th/0608053 Theory +hep-th/0608055 Theory +hep-th/0608058 Theory +hep-th/0608060 Theory +hep-th/0608065 Theory +hep-th/0608067 Theory +hep-th/0608068 Theory +hep-th/0608069 Theory +hep-th/0608070 Theory +hep-th/0608071 Theory +hep-th/0608073 Theory +hep-th/0608074 Theory +hep-th/0608078 Theory +hep-th/0608080 Theory +hep-th/0608081 Theory +hep-th/0608083 Theory +hep-th/0608086 Theory +hep-th/0608087 Theory +hep-th/0608089 Theory +hep-th/0608091 Theory +hep-th/0608092 Theory +hep-th/0608093 Theory +hep-th/0608094 Theory +hep-th/0608095 Theory +hep-th/0608100 Theory +hep-th/0608103 Theory +hep-th/0608104 Theory +hep-th/0608105 Theory +hep-th/0608111 Theory +hep-th/0608112 Theory +hep-th/0608113 Theory +hep-th/0608114 Theory +hep-th/0608115 Theory +hep-th/0608119 Theory +hep-th/0608120 Theory +hep-th/0608121 Theory +hep-th/0608122 Theory +hep-th/0608124 Theory +hep-th/0608126 Theory +hep-th/0608130 Theory +hep-th/0608131 Theory +hep-th/0608133 Theory +hep-th/0608134 Theory +hep-th/0608135 Theory +hep-th/0608136 Theory +hep-th/0608140 Theory +hep-th/0608147 Theory +hep-th/0608149 Theory +hep-th/0608150 Theory +hep-th/0608151 Theory +hep-th/0608153 Theory +hep-th/0608154 Theory +hep-th/0608156 Theory +hep-th/0608159 Theory +hep-th/0608160 Theory +hep-th/0608163 Theory +hep-th/0608165 Theory +hep-th/0608166 Theory +hep-th/0608167 Theory +hep-th/0608168 Theory +hep-th/0608169 Theory +hep-th/0608175 Theory +hep-th/0608176 Theory +hep-th/0608177 Theory +hep-th/0608179 Theory +hep-th/0608180 Theory +hep-th/0608185 Theory +hep-th/0608186 Theory +hep-th/0608187 Theory +hep-th/0608188 Theory +hep-th/0608189 Theory +hep-th/0608192 Theory +hep-th/0608194 Theory +hep-th/0608197 Theory +hep-th/0608199 Theory +hep-th/0608205 Theory +hep-th/0608206 Theory +hep-th/0608210 Theory +hep-th/0608211 Theory +hep-th/0608214 Theory +hep-th/0608216 Theory +hep-th/0608218 Theory +hep-th/0608221 Theory +hep-th/0608225 Theory +hep-th/0608227 Theory +hep-th/0609003 Theory +hep-th/0609004 Theory +hep-th/0609005 Theory +hep-th/0609006 Theory +hep-th/0609009 Theory +hep-th/0609010 Theory +hep-th/0609013 Theory +hep-th/0609014 Theory +hep-th/0609016 Theory +hep-th/0609017 Theory +hep-th/0609020 Theory +hep-th/0609023 Theory +hep-th/0609024 Theory +hep-th/0609027 Theory +hep-th/0609028 Theory +hep-th/0609029 Theory +hep-th/0609030 Theory +hep-th/0609031 Theory +hep-th/0609034 Theory +hep-th/0609035 Theory +hep-th/0609036 Theory +hep-th/0609039 Theory +hep-th/0609041 Theory +hep-th/0609045 Theory +hep-th/0609046 Theory +hep-th/0609048 Theory +hep-th/0609049 Theory +hep-th/0609050 Theory +hep-th/0609051 Theory +hep-th/0609053 Theory +hep-th/0609054 Theory +hep-th/0609055 Theory +hep-th/0609056 Theory +hep-th/0609059 Theory +hep-th/0609063 Theory +hep-th/0609067 Theory +hep-th/0609068 Theory +hep-th/0609069 Theory +hep-th/0609072 Theory +hep-th/0609076 Theory +hep-th/0609077 Theory +hep-th/0609078 Theory +hep-th/0609079 Theory +hep-th/0609081 Theory +hep-th/0609082 Theory +hep-th/0609084 Theory +hep-th/0609086 Theory +hep-th/0609090 Theory +hep-th/0609091 Theory +hep-th/0609092 Theory +hep-th/0609093 Theory +hep-th/0609094 Theory +hep-th/0609095 Theory +hep-th/0609099 Theory +hep-th/0609100 Theory +hep-th/0609104 Theory +hep-th/0609106 Theory +hep-th/0609107 Theory +hep-th/0609110 Theory +hep-th/0609111 Theory +hep-th/0609112 Theory +hep-th/0609113 Theory +hep-th/0609114 Theory +hep-th/0609118 Theory +hep-th/0609121 Theory +hep-th/0609127 Theory +hep-th/0609128 Theory +hep-th/0609132 Theory +hep-th/0609134 Theory +hep-th/0609136 Theory +hep-th/0609138 Theory +hep-th/0609140 Theory +hep-th/0609141 Theory +hep-th/0609143 Theory +hep-th/0609144 Theory +hep-th/0609145 Theory +hep-th/0609148 Theory +hep-th/0609150 Theory +hep-th/0609151 Theory +hep-th/0609152 Theory +hep-th/0609153 Theory +hep-th/0609154 Theory +hep-th/0609155 Theory +hep-th/0609156 Theory +hep-th/0609157 Theory +hep-th/0609158 Theory +hep-th/0609162 Theory +hep-th/0609166 Theory +hep-th/0609167 Theory +hep-th/0609170 Theory +hep-th/0609172 Theory +hep-th/0609175 Theory +hep-th/0609178 Theory +hep-th/0609179 Theory +hep-th/0609181 Theory +hep-th/0609184 Theory +hep-th/0609187 Theory +hep-th/0609188 Theory +hep-th/0609189 Theory +hep-th/0609191 Theory +hep-th/0609193 Theory +hep-th/0609195 Theory +hep-th/0609196 Theory +hep-th/0609197 Theory +hep-th/0609198 Theory +hep-th/0609199 Theory +hep-th/0609200 Theory +hep-th/0609201 Theory +hep-th/0609204 Theory +hep-th/0609206 Theory +hep-th/0609212 Theory +hep-th/0609214 Theory +hep-th/0609218 Theory +hep-th/0609219 Theory +hep-th/0609222 Theory +hep-th/0609226 Theory +hep-th/0610001 Theory +hep-th/0610005 Theory +hep-th/0610008 Theory +hep-th/0610010 Theory +hep-th/0610011 Theory +hep-th/0610012 Theory +hep-th/0610013 Theory +hep-th/0610014 Theory +hep-th/0610015 Theory +hep-th/0610018 Theory +hep-th/0610019 Theory +hep-th/0610023 Theory +hep-th/0610024 Theory +hep-th/0610025 Theory +hep-th/0610026 Theory +hep-th/0610030 Theory +hep-th/0610031 Theory +hep-th/0610033 Theory +hep-th/0610036 Theory +hep-th/0610039 Theory +hep-th/0610040 Theory +hep-th/0610044 Theory +hep-th/0610046 Theory +hep-th/0610047 Theory +hep-th/0610048 Theory +hep-th/0610052 Theory +hep-th/0610053 Theory +hep-th/0610054 Theory +hep-th/0610058 Theory +hep-th/0610059 Theory +hep-th/0610062 Theory +hep-th/0610064 Theory +hep-th/0610067 Theory +hep-th/0610069 Theory +hep-th/0610071 Theory +hep-th/0610073 Theory +hep-th/0610077 Theory +hep-th/0610081 Theory +hep-th/0610082 Theory +hep-th/0610083 Theory +hep-th/0610085 Theory +hep-th/0610087 Theory +hep-th/0610089 Theory +hep-th/0610092 Theory +hep-th/0610093 Theory +hep-th/0610094 Theory +hep-th/0610095 Theory +hep-th/0610100 Theory +hep-th/0610102 Theory +hep-th/0610103 Theory +hep-th/0610104 Theory +hep-th/0610105 Theory +hep-th/0610106 Theory +hep-th/0610108 Theory +hep-th/0610109 Theory +hep-th/0610110 Theory +hep-th/0610111 Theory +hep-th/0610116 Theory +hep-th/0610118 Theory +hep-th/0610125 Theory +hep-th/0610126 Theory +hep-th/0610128 Theory +hep-th/0610133 Theory +hep-th/0610134 Theory +hep-th/0610135 Theory +hep-th/0610136 Theory +hep-th/0610137 Theory +hep-th/0610138 Theory +hep-th/0610140 Theory +hep-th/0610142 Theory +hep-th/0610143 Theory +hep-th/0610144 Theory +hep-th/0610145 Theory +hep-th/0610146 Theory +hep-th/0610147 Theory +hep-th/0610148 Theory +hep-th/0610151 Theory +hep-th/0610152 Theory +hep-th/0610153 Theory +hep-th/0610155 Theory +hep-th/0610156 Theory +hep-th/0610157 Theory +hep-th/0610159 Theory +hep-th/0610161 Theory +hep-th/0610164 Theory +hep-th/0610166 Theory +hep-th/0610167 Theory +hep-th/0610169 Theory +hep-th/0610172 Theory +hep-th/0610173 Theory +hep-th/0610180 Theory +hep-th/0610183 Theory +hep-th/0610184 Theory +hep-th/0610185 Theory +hep-th/0610187 Theory +hep-th/0610190 Theory +hep-th/0610192 Theory +hep-th/0610200 Theory +hep-th/0610201 Theory +hep-th/0610204 Theory +hep-th/0610205 Theory +hep-th/0610206 Theory +hep-th/0610207 Theory +hep-th/0610208 Theory +hep-th/0610209 Theory +hep-th/0610210 Theory +hep-th/0610213 Theory +hep-th/0610215 Theory +hep-th/0610218 Theory +hep-th/0610220 Theory +hep-th/0610221 Theory +hep-th/0610224 Theory +hep-th/0610225 Theory +hep-th/0610227 Theory +hep-th/0610229 Theory +hep-th/0610231 Theory +hep-th/0610239 Theory +hep-th/0610241 Theory +hep-th/0610242 Theory +hep-th/0610243 Theory +hep-th/0610245 Theory +hep-th/0610246 Theory +hep-th/0610247 Theory +hep-th/0610248 Theory +hep-th/0610249 Theory +hep-th/0610253 Theory +hep-th/0610255 Theory +hep-th/0610256 Theory +hep-th/0610258 Theory +hep-th/0610260 Theory +hep-th/0610261 Theory +hep-th/0610262 Theory +hep-th/0610267 Theory +hep-th/0610268 Theory +hep-th/0610274 Theory +hep-th/0610278 Theory +hep-th/0610279 Theory +hep-th/0610280 Theory +hep-th/0610283 Theory +hep-th/0610284 Theory +hep-th/0610285 Theory +hep-th/0610286 Theory +hep-th/0610287 Theory +hep-th/0610289 Theory +hep-th/0610290 Theory +hep-th/0610291 Theory +hep-th/0610292 Theory +hep-th/0610296 Theory +hep-th/0610301 Theory +hep-th/0610302 Theory +hep-th/0610303 Theory +hep-th/0610306 Theory +hep-th/0610308 Theory +hep-th/0610309 Theory +hep-th/0610312 Theory +hep-th/0610313 Theory +hep-th/0610314 Theory +hep-th/0610315 Theory +hep-th/0610316 Theory +hep-th/0610317 Theory +hep-th/0610318 Theory +hep-th/0610319 Theory +hep-th/0610322 Theory +hep-th/0610323 Theory +hep-th/0610324 Theory +hep-th/0610325 Theory +hep-th/0610327 Theory +hep-th/0610329 Theory +hep-th/0610335 Theory +hep-th/0610336 Theory +hep-th/0611001 Theory +hep-th/0611008 Theory +hep-th/0611009 Theory +hep-th/0611010 Theory +hep-th/0611011 Theory +hep-th/0611012 Theory +hep-th/0611014 Theory +hep-th/0611015 Theory +hep-th/0611017 Theory +hep-th/0611024 Theory +hep-th/0611026 Theory +hep-th/0611029 Theory +hep-th/0611030 Theory +hep-th/0611034 Theory +hep-th/0611037 Theory +hep-th/0611038 Theory +hep-th/0611039 Theory +hep-th/0611040 Theory +hep-th/0611041 Theory +hep-th/0611042 Theory +hep-th/0611047 Theory +hep-th/0611048 Theory +hep-th/0611050 Theory +hep-th/0611051 Theory +hep-th/0611054 Theory +hep-th/0611055 Theory +hep-th/0611056 Theory +hep-th/0611061 Theory +hep-th/0611063 Theory +hep-th/0611067 Theory +hep-th/0611070 Theory +hep-th/0611072 Theory +hep-th/0611076 Theory +hep-th/0611077 Theory +hep-th/0611080 Theory +hep-th/0611081 Theory +hep-th/0611083 Theory +hep-th/0611084 Theory +hep-th/0611086 Theory +hep-th/0611087 Theory +hep-th/0611088 Theory +hep-th/0611090 Theory +hep-th/0611091 Theory +hep-th/0611092 Theory +hep-th/0611093 Theory +hep-th/0611094 Theory +hep-th/0611095 Theory +hep-th/0611098 Theory +hep-th/0611104 Theory +hep-th/0611107 Theory +hep-th/0611108 Theory +hep-th/0611109 Theory +hep-th/0611114 Theory +hep-th/0611116 Theory +hep-th/0611117 Theory +hep-th/0611119 Theory +hep-th/0611120 Theory +hep-th/0611123 Theory +hep-th/0611126 Theory +hep-th/0611128 Theory +hep-th/0611129 Theory +hep-th/0611131 Theory +hep-th/0611135 Theory +hep-th/0611136 Theory +hep-th/0611140 Theory +hep-th/0611141 Theory +hep-th/0611144 Theory +hep-th/0611146 Theory +hep-th/0611147 Theory +hep-th/0611152 Theory +hep-th/0611154 Theory +hep-th/0611157 Theory +hep-th/0611159 Theory +hep-th/0611160 Theory +hep-th/0611161 Theory +hep-th/0611162 Theory +hep-th/0611163 Theory +hep-th/0611167 Theory +hep-th/0611173 Theory +hep-th/0611175 Theory +hep-th/0611176 Theory +hep-th/0611178 Theory +hep-th/0611179 Theory +hep-th/0611181 Theory +hep-th/0611184 Theory +hep-th/0611187 Theory +hep-th/0611188 Theory +hep-th/0611189 Theory +hep-th/0611191 Theory +hep-th/0611192 Theory +hep-th/0611193 Theory +hep-th/0611194 Theory +hep-th/0611195 Theory +hep-th/0611196 Theory +hep-th/0611198 Theory +hep-th/0611199 Theory +hep-th/0611202 Theory +hep-th/0611203 Theory +hep-th/0611204 Theory +hep-th/0611205 Theory +hep-th/0611206 Theory +hep-th/0611207 Theory +hep-th/0611209 Theory +hep-th/0611213 Theory +hep-th/0611214 Theory +hep-th/0611216 Theory +hep-th/0611221 Theory +hep-th/0611223 Theory +hep-th/0611224 Theory +hep-th/0611225 Theory +hep-th/0611226 Theory +hep-th/0611227 Theory +hep-th/0611231 Theory +hep-th/0611232 Theory +hep-th/0611233 Theory +hep-th/0611234 Theory +hep-th/0611236 Theory +hep-th/0611237 Theory +hep-th/0611239 Theory +hep-th/0611240 Theory +hep-th/0611241 Theory +hep-th/0611243 Theory +hep-th/0611244 Theory +hep-th/0611247 Theory +hep-th/0611248 Theory +hep-th/0611251 Theory +hep-th/0611253 Theory +hep-th/0611256 Theory +hep-th/0611257 Theory +hep-th/0611259 Theory +hep-th/0611260 Theory +hep-th/0611261 Theory +hep-th/0611262 Theory +hep-th/0611264 Theory +hep-th/0611265 Theory +hep-th/0611268 Theory +hep-th/0611269 Theory +hep-th/0611270 Theory +hep-th/0611272 Theory +hep-th/0611273 Theory +hep-th/0611276 Theory +hep-th/0611284 Theory +hep-th/0611285 Theory +hep-th/0611286 Theory +hep-th/0611287 Theory +hep-th/0611289 Theory +hep-th/0611292 Theory +hep-th/0611293 Theory +hep-th/0611297 Theory +hep-th/0611298 Theory +hep-th/0611299 Theory +hep-th/0611300 Theory +hep-th/0611302 Theory +hep-th/0611304 Theory +hep-th/0611305 Theory +hep-th/0611306 Theory +hep-th/0611307 Theory +hep-th/0611308 Theory +hep-th/0611309 Theory +hep-th/0611310 Theory +hep-th/0611312 Theory +hep-th/0611313 Theory +hep-th/0611315 Theory +hep-th/0611317 Theory +hep-th/0611318 Theory +hep-th/0611319 Theory +hep-th/0611321 Theory +hep-th/0611323 Theory +hep-th/0611325 Theory +hep-th/0611326 Theory +hep-th/0611328 Theory +hep-th/0611329 Theory +hep-th/0611330 Theory +hep-th/0611334 Theory +hep-th/0611335 Theory +hep-th/0611337 Theory +hep-th/0611339 Theory +hep-th/0611340 Theory +hep-th/0611341 Theory +hep-th/0611342 Theory +hep-th/0611345 Theory +hep-th/0611347 Theory +hep-th/0611348 Theory +hep-th/0611349 Theory +hep-th/0611352 Theory +hep-th/0611354 Theory +hep-th/0611355 Theory +hep-th/0612001 Theory +hep-th/0612002 Theory +hep-th/0612003 Theory +hep-th/0612009 Theory +hep-th/0612010 Theory +hep-th/0612013 Theory +hep-th/0612014 Theory +hep-th/0612016 Theory +hep-th/0612017 Theory +hep-th/0612020 Theory +hep-th/0612024 Theory +hep-th/0612025 Theory +hep-th/0612026 Theory +hep-th/0612027 Theory +hep-th/0612028 Theory +hep-th/0612031 Theory +hep-th/0612033 Theory +hep-th/0612035 Theory +hep-th/0612040 Theory +hep-th/0612047 Theory +hep-th/0612051 Theory +hep-th/0612052 Theory +hep-th/0612058 Theory +hep-th/0612059 Theory +hep-th/0612061 Theory +hep-th/0612062 Theory +hep-th/0612063 Theory +hep-th/0612067 Theory +hep-th/0612069 Theory +hep-th/0612071 Theory +hep-th/0612074 Theory +hep-th/0612075 Theory +hep-th/0612077 Theory +hep-th/0612079 Theory +hep-th/0612080 Theory +hep-th/0612083 Theory +hep-th/0612087 Theory +hep-th/0612088 Theory +hep-th/0612089 Theory +hep-th/0612090 Theory +hep-th/0612092 Theory +hep-th/0612093 Theory +hep-th/0612094 Theory +hep-th/0612097 Theory +hep-th/0612098 Theory +hep-th/0612103 Theory +hep-th/0612104 Theory +hep-th/0612106 Theory +hep-th/0612110 Theory +hep-th/0612111 Theory +hep-th/0612114 Theory +hep-th/0612116 Theory +hep-th/0612120 Theory +hep-th/0612121 Theory +hep-th/0612124 Theory +hep-th/0612127 Theory +hep-th/0612128 Theory +hep-th/0612133 Theory +hep-th/0612134 Theory +hep-th/0612136 Theory +hep-th/0612137 Theory +hep-th/0612138 Theory +hep-th/0612139 Theory +hep-th/0612140 Theory +hep-th/0612142 Theory +hep-th/0612143 Theory +hep-th/0612144 Theory +hep-th/0612145 Theory +hep-th/0612146 Theory +hep-th/0612147 Theory +hep-th/0612148 Theory +hep-th/0612151 Theory +hep-th/0612152 Theory +hep-th/0612153 Theory +hep-th/0612154 Theory +hep-th/0612155 Theory +hep-th/0612158 Theory +hep-th/0612159 Theory +hep-th/0612161 Theory +hep-th/0612163 Theory +hep-th/0612165 Theory +hep-th/0612167 Theory +hep-th/0612170 Theory +hep-th/0612173 Theory +hep-th/0612176 Theory +hep-th/0612179 Theory +hep-th/0612180 Theory +hep-th/0612181 Theory +hep-th/0612183 Theory +hep-th/0612184 Theory +hep-th/0612186 Theory +hep-th/0612187 Theory +hep-th/0612189 Theory +hep-th/0612191 Theory +hep-th/0612195 Theory +hep-th/0612197 Theory +hep-th/0612198 Theory +hep-th/0612202 Theory +hep-th/0612204 Theory +hep-th/0612206 Theory +hep-th/0612208 Theory +hep-th/0612209 Theory +hep-th/0612211 Theory +hep-th/0612215 Theory +hep-th/0612216 Theory +hep-th/0612217 Theory +hep-th/0612220 Theory +hep-th/0612221 Theory +hep-th/0612223 Theory +hep-th/0612224 Theory +hep-th/0612226 Theory +hep-th/0612227 Theory +hep-th/0612233 Theory +hep-th/0612238 Theory +hep-th/0612239 Theory +hep-th/0612241 Theory +hep-th/0612242 Theory +hep-th/0612243 Theory +hep-th/0612244 Theory +hep-th/0612246 Theory +hep-th/0612247 Theory +hep-th/0612248 Theory +hep-th/0612250 Theory +hep-th/0612251 Theory +hep-th/0612255 Theory +hep-th/0612258 Theory +hep-th/0612260 Theory +hep-th/0612261 Theory +hep-th/0612263 Theory +hep-th/0612264 Theory +hep-th/0612265 Theory +hep-th/0612268 Theory +hep-th/0612270 Theory +hep-th/0612271 Theory +hep-th/0612273 Theory +hep-th/0612274 Theory +hep-th/0612279 Theory +hep-th/0612281 Theory +hep-th/0612282 Theory +hep-th/0612284 Theory +hep-th/0612285 Theory +hep-th/0612290 Theory +hep-th/0612293 Theory +hep-th/0612294 Theory +hep-th/0612296 Theory +hep-th/0612298 Theory +hep-th/0612301 Theory +hep-th/0612308 Theory +hep-th/0612309 Theory +hep-th/0701001 Theory +hep-th/0701002 Theory +hep-th/0701003 Theory +hep-th/0701004 Theory +hep-th/0701006 Theory +hep-th/0701007 Theory +hep-th/0701008 Theory +hep-th/0701009 Theory +hep-th/0701012 Theory +hep-th/0701014 Theory +hep-th/0701015 Theory +hep-th/0701016 Theory +hep-th/0701017 Theory +hep-th/0701021 Theory +hep-th/0701022 Theory +hep-th/0701025 Theory +hep-th/0701026 Theory +hep-th/0701028 Theory +hep-th/0701029 Theory +hep-th/0701032 Theory +hep-th/0701033 Theory +hep-th/0701034 Theory +hep-th/0701036 Theory +hep-th/0701041 Theory +hep-th/0701042 Theory +hep-th/0701045 Theory +hep-th/0701046 Theory +hep-th/0701047 Theory +hep-th/0701048 Theory +hep-th/0701049 Theory +hep-th/0701050 Theory +hep-th/0701053 Theory +hep-th/0701057 Theory +hep-th/0701058 Theory +hep-th/0701059 Theory +hep-th/0701061 Theory +hep-th/0701065 Theory +hep-th/0701068 Theory +hep-th/0701070 Theory +hep-th/0701071 Theory +hep-th/0701072 Theory +hep-th/0701073 Theory +hep-th/0701076 Theory +hep-th/0701078 Theory +hep-th/0701079 Theory +hep-th/0701081 Theory +hep-th/0701082 Theory +hep-th/0701085 Theory +hep-th/0701086 Theory +hep-th/0701088 Theory +hep-th/0701089 Theory +hep-th/0701093 Theory +hep-th/0701095 Theory +hep-th/0701096 Theory +hep-th/0701100 Theory +hep-th/0701101 Theory +hep-th/0701104 Theory +hep-th/0701105 Theory +hep-th/0701106 Theory +hep-th/0701107 Theory +hep-th/0701109 Theory +hep-th/0701110 Theory +hep-th/0701111 Theory +hep-th/0701113 Theory +hep-th/0701114 Theory +hep-th/0701115 Theory +hep-th/0701116 Theory +hep-th/0701117 Theory +hep-th/0701119 Theory +hep-th/0701120 Theory +hep-th/0701121 Theory +hep-th/0701122 Theory +hep-th/0701130 Theory +hep-th/0701133 Theory +hep-th/0701134 Theory +hep-th/0701135 Theory +hep-th/0701136 Theory +hep-th/0701139 Theory +hep-th/0701141 Theory +hep-th/0701142 Theory +hep-th/0701143 Theory +hep-th/0701144 Theory +hep-th/0701147 Theory +hep-th/0701150 Theory +hep-th/0701151 Theory +hep-th/0701153 Theory +hep-th/0701155 Theory +hep-th/0701159 Theory +hep-th/0701160 Theory +hep-th/0701161 Theory +hep-th/0701163 Theory +hep-th/0701165 Theory +hep-th/0701166 Theory +hep-th/0701169 Theory +hep-th/0701170 Theory +hep-th/0701171 Theory +hep-th/0701172 Theory +hep-th/0701175 Theory +hep-th/0701177 Theory +hep-th/0701178 Theory +hep-th/0701180 Theory +hep-th/0701183 Theory +hep-th/0701184 Theory +hep-th/0701185 Theory +hep-th/0701188 Theory +hep-th/0701189 Theory +hep-th/0701190 Theory +hep-th/0701191 Theory +hep-th/0701193 Theory +hep-th/0701195 Theory +hep-th/0701197 Theory +hep-th/0701198 Theory +hep-th/0701201 Theory +hep-th/0701202 Theory +hep-th/0701206 Theory +hep-th/0701208 Theory +hep-th/0701209 Theory +hep-th/0701210 Theory +hep-th/0701211 Theory +hep-th/0701213 Theory +hep-th/0701215 Theory +hep-th/0701216 Theory +hep-th/0701220 Theory +hep-th/0701221 Theory +hep-th/0701222 Theory +hep-th/0701223 Theory +hep-th/0701224 Theory +hep-th/0701225 Theory +hep-th/0701226 Theory +hep-th/0701229 Theory +hep-th/0701230 Theory +hep-th/0701233 Theory +hep-th/0701234 Theory +hep-th/0701243 Theory +hep-th/0701246 Theory +hep-th/0701247 Theory +hep-th/0701248 Theory +hep-th/0701249 Theory +hep-th/0701250 Theory +hep-th/0701253 Theory +hep-th/0701254 Theory +hep-th/0701257 Theory +hep-th/0701260 Theory +hep-th/0701261 Theory +hep-th/0701264 Theory +hep-th/0701265 Theory +hep-th/0701267 Theory +hep-th/0701268 Theory +hep-th/0701270 Theory +hep-th/0701271 Theory +hep-th/0701272 Theory +hep-th/0701273 Theory +hep-th/0701276 Theory +hep-th/0701278 Theory +hep-th/0701279 Theory +hep-th/0701281 Theory +hep-th/0701282 Theory +hep-th/0701283 Theory +hep-th/0701284 Theory +hep-th/0701285 Theory +hep-th/0701286 Theory +hep-th/0701288 Theory +hep-th/0701290 Theory +hep-th/0701293 Theory +hep-th/0701294 Theory +hep-th/0702001 Theory +hep-th/0702003 Theory +hep-th/0702005 Theory +hep-th/0702007 Theory +hep-th/0702010 Theory +hep-th/0702011 Theory +hep-th/0702013 Theory +hep-th/0702015 Theory +hep-th/0702016 Theory +hep-th/0702020 Theory +hep-th/0702024 Theory +hep-th/0702027 Theory +hep-th/0702029 Theory +hep-th/0702031 Theory +hep-th/0702033 Theory +hep-th/0702035 Theory +hep-th/0702038 Theory +hep-th/0702043 Theory +hep-th/0702048 Theory +hep-th/0702049 Theory +hep-th/0702051 Theory +hep-th/0702052 Theory +hep-th/0702054 Theory +hep-th/0702056 Theory +hep-th/0702061 Theory +hep-th/0702062 Theory +hep-th/0702065 Theory +hep-th/0702066 Theory +hep-th/0702067 Theory +hep-th/0702071 Theory +hep-th/0702074 Theory +hep-th/0702075 Theory +hep-th/0702077 Theory +hep-th/0702078 Theory +hep-th/0702081 Theory +hep-th/0702084 Theory +hep-th/0702085 Theory +hep-th/0702089 Theory +hep-th/0702091 Theory +hep-th/0702093 Theory +hep-th/0702094 Theory +hep-th/0702095 Theory +hep-th/0702098 Theory +hep-th/0702099 Theory +hep-th/0702100 Theory +hep-th/0702101 Theory +hep-th/0702104 Theory +hep-th/0702106 Theory +hep-th/0702108 Theory +hep-th/0702112 Theory +hep-th/0702113 Theory +hep-th/0702115 Theory +hep-th/0702117 Theory +hep-th/0702124 Theory +hep-th/0702127 Theory +hep-th/0702129 Theory +hep-th/0702130 Theory +hep-th/0702131 Theory +hep-th/0702132 Theory +hep-th/0702133 Theory +hep-th/0702134 Theory +hep-th/0702135 Theory +hep-th/0702136 Theory +hep-th/0702137 Theory +hep-th/0702138 Theory +hep-th/0702139 Theory +hep-th/0702144 Theory +hep-th/0702145 Theory +hep-th/0702148 Theory +hep-th/0702150 Theory +hep-th/0702151 Theory +hep-th/0702153 Theory +hep-th/0702154 Theory +hep-th/0702155 Theory +hep-th/0702157 Theory +hep-th/0702159 Theory +hep-th/0702161 Theory +hep-th/0702162 Theory +hep-th/0702164 Theory +hep-th/0702166 Theory +hep-th/0702167 Theory +hep-th/0702168 Theory +hep-th/0702169 Theory +hep-th/0702171 Theory +hep-th/0702172 Theory +hep-th/0702173 Theory +hep-th/0702174 Theory +hep-th/0702175 Theory +hep-th/0702178 Theory +hep-th/0702179 Theory +hep-th/0702180 Theory +hep-th/0702181 Theory +hep-th/0702183 Theory +hep-th/0702184 Theory +hep-th/0702185 Theory +hep-th/0702186 Theory +hep-th/0702190 Theory +hep-th/0702191 Theory +hep-th/0702192 Theory +hep-th/0702194 Theory +hep-th/0702198 Theory +hep-th/0702201 Theory +hep-th/0702202 Theory +hep-th/0702206 Theory +hep-th/0702207 Theory +hep-th/0702209 Theory +hep-th/0702211 Theory +hep-th/0702213 Theory +hep-th/0702214 Theory +hep-th/0702215 Theory +hep-th/0702220 Theory +hep-th/0702222 Theory +hep-th/0702224 Theory +hep-th/0702225 Theory +hep-th/0702226 Theory +hep-th/0702227 Theory +hep-th/0702229 Theory +hep-th/0703002 Theory +hep-th/0703004 Theory +hep-th/0703005 Theory +hep-th/0703006 Theory +hep-th/0703007 Theory +hep-th/0703009 Theory +hep-th/0703010 Theory +hep-th/0703014 Theory +hep-th/0703015 Theory +hep-th/0703017 Theory +hep-th/0703018 Theory +hep-th/0703019 Theory +hep-th/0703025 Theory +hep-th/0703027 Theory +hep-th/0703028 Theory +hep-th/0703029 Theory +hep-th/0703030 Theory +hep-th/0703031 Theory +hep-th/0703032 Theory +hep-th/0703035 Theory +hep-th/0703041 Theory +hep-th/0703042 Theory +hep-th/0703043 Theory +hep-th/0703046 Theory +hep-th/0703049 Theory +hep-th/0703050 Theory +hep-th/0703051 Theory +hep-th/0703052 Theory +hep-th/0703053 Theory +hep-th/0703057 Theory +hep-th/0703058 Theory +hep-th/0703062 Theory +hep-th/0703064 Theory +hep-th/0703065 Theory +hep-th/0703066 Theory +hep-th/0703068 Theory +hep-th/0703069 Theory +hep-th/0703072 Theory +hep-th/0703074 Theory +hep-th/0703075 Theory +hep-th/0703076 Theory +hep-th/0703079 Theory +hep-th/0703080 Theory +hep-th/0703081 Theory +hep-th/0703082 Theory +hep-th/0703083 Theory +hep-th/0703084 Theory +hep-th/0703085 Theory +hep-th/0703086 Theory +hep-th/0703088 Theory +hep-th/0703090 Theory +hep-th/0703091 Theory +hep-th/0703095 Theory +hep-th/0703096 Theory +hep-th/0703097 Theory +hep-th/0703099 Theory +hep-th/0703103 Theory +hep-th/0703104 Theory +hep-th/0703110 Theory +hep-th/0703112 Theory +hep-th/0703116 Theory +hep-th/0703117 Theory +hep-th/0703119 Theory +hep-th/0703121 Theory +hep-th/0703122 Theory +hep-th/0703123 Theory +hep-th/0703126 Theory +hep-th/0703127 Theory +hep-th/0703128 Theory +hep-th/0703129 Theory +hep-th/0703132 Theory +hep-th/0703135 Theory +hep-th/0703136 Theory +hep-th/0703138 Theory +hep-th/0703139 Theory +hep-th/0703141 Theory +hep-th/0703142 Theory +hep-th/0703144 Theory +hep-th/0703145 Theory +hep-th/0703147 Theory +hep-th/0703149 Theory +hep-th/0703151 Theory +hep-th/0703156 Theory +hep-th/0703158 Theory +hep-th/0703160 Theory +hep-th/0703162 Theory +hep-th/0703163 Theory +hep-th/0703165 Theory +hep-th/0703167 Theory +hep-th/0703169 Theory +hep-th/0703173 Theory +hep-th/0703174 Theory +hep-th/0703176 Theory +hep-th/0703177 Theory +hep-th/0703178 Theory +hep-th/0703179 Theory +hep-th/0703185 Theory +hep-th/0703186 Theory +hep-th/0703189 Theory +hep-th/0703191 Theory +hep-th/0703193 Theory +hep-th/0703195 Theory +hep-th/0703197 Theory +hep-th/0703198 Theory +hep-th/0703199 Theory +hep-th/0703200 Theory +hep-th/0703203 Theory +hep-th/0703205 Theory +hep-th/0703206 Theory +hep-th/0703207 Theory +hep-th/0703208 Theory +hep-th/0703210 Theory +hep-th/0703211 Theory +hep-th/0703212 Theory +hep-th/0703213 Theory +hep-th/0703214 Theory +hep-th/0703215 Theory +hep-th/0703218 Theory +hep-th/0703220 Theory +hep-th/0703221 Theory +hep-th/0703226 Theory +hep-th/0703228 Theory +hep-th/0703232 Theory +hep-th/0703233 Theory +hep-th/0703234 Theory +hep-th/0703235 Theory +hep-th/0703237 Theory +hep-th/0703242 Theory +hep-th/0703243 Theory +hep-th/0703247 Theory +hep-th/0703248 Theory +hep-th/0703253 Theory +hep-th/0703257 Theory +hep-th/0703258 Theory +hep-th/0703263 Theory +hep-th/0703264 Theory +hep-th/0703265 Theory +hep-th/0703266 Theory +hep-th/0703270 Theory +hep-th/0703273 Theory +hep-th/0703275 Theory +hep-th/0703276 Theory +hep-th/0703277 Theory +hep-th/0703278 Theory +hep-th/0703280 Theory +hep-th/0703282 Theory +hep-th/0703283 Theory +hep-th/0703284 Theory +hep-th/0703290 Theory +hep-th/9109003 Theory +hep-th/9109035 Theory +hep-th/9110008 Theory +hep-th/9110044 Theory +hep-th/9111003 Theory +hep-th/9111024 Theory +hep-th/9111036 Theory +hep-th/9111049 Theory +hep-th/9111054 Theory +hep-th/9112043 Theory +hep-th/9201006 Theory +hep-th/9201019 Theory +hep-th/9201034 Theory +hep-th/9201074 Theory +hep-th/9202001 Theory +hep-th/9202009 Theory +hep-th/9202018 Theory +hep-th/9202032 Theory +hep-th/9202084 Theory +hep-th/9203040 Theory +hep-th/9203054 Theory +hep-th/9203082 Theory +hep-th/9203083 Theory +hep-th/9204016 Theory +hep-th/9204071 Theory +hep-th/9204089 Theory +hep-th/9204103 Theory +hep-th/9205064 Theory +hep-th/9205099 Theory +hep-th/9205110 Theory +hep-th/9206002 Theory +hep-th/9206003 Theory +hep-th/9206053 Theory +hep-th/9206082 Theory +hep-th/9207071 Theory +hep-th/9207118 Theory +hep-th/9208050 Theory +hep-th/9208055 Theory +hep-th/9208074 Theory +hep-th/9209044 Theory +hep-th/9210017 Theory +hep-th/9210027 Theory +hep-th/9210088 Theory +hep-th/9210091 Theory +hep-th/9211046 Theory +hep-th/9211096 Theory +hep-th/9211133 Theory +hep-th/9212002 Theory +hep-th/9212043 Theory +hep-th/9301005 Theory +hep-th/9301068 Theory +hep-th/9301100 Theory +hep-th/9301116 Theory +hep-th/9302008 Theory +hep-th/9302011 Theory +hep-th/9302047 Theory +hep-th/9303007 Theory +hep-th/9303046 Theory +hep-th/9303176 Theory +hep-th/9304035 Theory +hep-th/9304102 Theory +hep-th/9305004 Theory +hep-th/9305072 Theory +hep-th/9305105 Theory +hep-th/9305114 Theory +hep-th/9305155 Theory +hep-th/9305160 Theory +hep-th/9306070 Theory +hep-th/9306158 Theory +hep-th/9307003 Theory +hep-th/9307010 Theory +hep-th/9307035 Theory +hep-th/9307044 Theory +hep-th/9307092 Theory +hep-th/9307154 Theory +hep-th/9307175 Theory +hep-th/9307188 Theory +hep-th/9307195 Theory +hep-th/9308013 Theory +hep-th/9308061 Theory +hep-th/9308116 Theory +hep-th/9308142 Theory +hep-th/9309148 Theory +hep-th/9309154 Theory +hep-th/9309156 Theory +hep-th/9310031 Theory +hep-th/9310086 Theory +hep-th/9310114 Theory +hep-th/9310151 Theory +hep-th/9310164 Theory +hep-th/9310174 Theory +hep-th/9311081 Theory +hep-th/9311143 Theory +hep-th/9312004 Theory +hep-th/9312030 Theory +hep-th/9312105 Theory +hep-th/9312183 Theory +hep-th/9401025 Theory +hep-th/9401085 Theory +hep-th/9401098 Theory +hep-th/9401125 Theory +hep-th/9402030 Theory +hep-th/9402100 Theory +hep-th/9402106 Theory +hep-th/9402144 Theory +hep-th/9402146 Theory +hep-th/9402151 Theory +hep-th/9403048 Theory +hep-th/9403087 Theory +hep-th/9403092 Theory +hep-th/9403107 Theory +hep-th/9403196 Theory +hep-th/9404031 Theory +hep-th/9404050 Theory +hep-th/9404057 Theory +hep-th/9404089 Theory +hep-th/9404097 Theory +hep-th/9404107 Theory +hep-th/9404183 Theory +hep-th/9405058 Theory +hep-th/9405088 Theory +hep-th/9405109 Theory +hep-th/9405129 Theory +hep-th/9405149 Theory +hep-th/9405194 Theory +hep-th/9406196 Theory +hep-th/9406217 Theory +hep-th/9407053 Theory +hep-th/9407095 Theory +hep-th/9407148 Theory +hep-th/9408028 Theory +hep-th/9408065 Theory +hep-th/9408073 Theory +hep-th/9408075 Theory +hep-th/9408113 Theory +hep-th/9408121 Theory +hep-th/9408158 Theory +hep-th/9409021 Theory +hep-th/9409030 Theory +hep-th/9409040 Theory +hep-th/9409101 Theory +hep-th/9409134 Theory +hep-th/9409156 Theory +hep-th/9409175 Theory +hep-th/9409176 Theory +hep-th/9410097 Theory +hep-th/9410137 Theory +hep-th/9410225 Theory +hep-th/9411060 Theory +hep-th/9411111 Theory +hep-th/9411195 Theory +hep-th/9412080 Theory +hep-th/9412088 Theory +hep-th/9412130 Theory +hep-th/9412144 Theory +hep-th/9412184 Theory +hep-th/9501011 Theory +hep-th/9501081 Theory +hep-th/9501087 Theory +hep-th/9501110 Theory +hep-th/9501133 Theory +hep-th/9502038 Theory +hep-th/9502156 Theory +hep-th/9503016 Theory +hep-th/9503160 Theory +hep-th/9503161 Theory +hep-th/9503193 Theory +hep-th/9503234 Theory +hep-th/9504005 Theory +hep-th/9504019 Theory +hep-th/9504029 Theory +hep-th/9504033 Theory +hep-th/9504039 Theory +hep-th/9504086 Theory +hep-th/9504117 Theory +hep-th/9504123 Theory +hep-th/9504159 Theory +hep-th/9505008 Theory +hep-th/9505014 Theory +hep-th/9505015 Theory +hep-th/9505052 Theory +hep-th/9505070 Theory +hep-th/9505075 Theory +hep-th/9505078 Theory +hep-th/9505082 Theory +hep-th/9505133 Theory +hep-th/9505148 Theory +hep-th/9505164 Theory +hep-th/9505179 Theory +hep-th/9506011 Theory +hep-th/9506032 Theory +hep-th/9506064 Theory +hep-th/9506067 Theory +hep-th/9506078 Theory +hep-th/9506098 Theory +hep-th/9506129 Theory +hep-th/9506132 Theory +hep-th/9506161 Theory +hep-th/9506166 Theory +hep-th/9506178 Theory +hep-th/9506182 Theory +hep-th/9506193 Theory +hep-th/9506213 Theory +hep-th/9507014 Theory +hep-th/9507058 Theory +hep-th/9508035 Theory +hep-th/9508052 Theory +hep-th/9508074 Theory +hep-th/9508111 Theory +hep-th/9508130 Theory +hep-th/9508160 Theory +hep-th/9508163 Theory +hep-th/9509039 Theory +hep-th/9509056 Theory +hep-th/9509078 Theory +hep-th/9509079 Theory +hep-th/9509095 Theory +hep-th/9509098 Theory +hep-th/9509113 Theory +hep-th/9509120 Theory +hep-th/9509156 Theory +hep-th/9510002 Theory +hep-th/9510009 Theory +hep-th/9510030 Theory +hep-th/9510039 Theory +hep-th/9510053 Theory +hep-th/9510096 Theory +hep-th/9510108 Theory +hep-th/9510142 Theory +hep-th/9510162 Theory +hep-th/9510185 Theory +hep-th/9510196 Theory +hep-th/9510199 Theory +hep-th/9510208 Theory +hep-th/9510211 Theory +hep-th/9511010 Theory +hep-th/9511013 Theory +hep-th/9511018 Theory +hep-th/9511060 Theory +hep-th/9511061 Theory +hep-th/9511071 Theory +hep-th/9511084 Theory +hep-th/9511090 Theory +hep-th/9511102 Theory +hep-th/9511129 Theory +hep-th/9511151 Theory +hep-th/9511155 Theory +hep-th/9511166 Theory +hep-th/9511169 Theory +hep-th/9512007 Theory +hep-th/9512025 Theory +hep-th/9512065 Theory +hep-th/9512073 Theory +hep-th/9512090 Theory +hep-th/9512093 Theory +hep-th/9512097 Theory +hep-th/9512099 Theory +hep-th/9512120 Theory +hep-th/9512163 Theory +hep-th/9512172 Theory +hep-th/9512184 Theory +hep-th/9512186 Theory +hep-th/9512218 Theory +hep-th/9512220 Theory +hep-th/9601031 Theory +hep-th/9601032 Theory +hep-th/9601037 Theory +hep-th/9601039 Theory +hep-th/9601086 Theory +hep-th/9601135 Theory +hep-th/9602001 Theory +hep-th/9602026 Theory +hep-th/9602037 Theory +hep-th/9602046 Theory +hep-th/9602060 Theory +hep-th/9602159 Theory +hep-th/9603010 Theory +hep-th/9603011 Theory +hep-th/9603015 Theory +hep-th/9603091 Theory +hep-th/9603125 Theory +hep-th/9603127 Theory +hep-th/9603149 Theory +hep-th/9603157 Theory +hep-th/9603164 Theory +hep-th/9603174 Theory +hep-th/9603193 Theory +hep-th/9604017 Theory +hep-th/9604045 Theory +hep-th/9604049 Theory +hep-th/9604079 Theory +hep-th/9604090 Theory +hep-th/9604125 Theory +hep-th/9604155 Theory +hep-th/9604172 Theory +hep-th/9604173 Theory +hep-th/9605001 Theory +hep-th/9605019 Theory +hep-th/9605041 Theory +hep-th/9605051 Theory +hep-th/9605067 Theory +hep-th/9605074 Theory +hep-th/9605076 Theory +hep-th/9605100 Theory +hep-th/9605107 Theory +hep-th/9605169 Theory +hep-th/9605196 Theory +hep-th/9605214 Theory +hep-th/9606007 Theory +hep-th/9606040 Theory +hep-th/9606068 Theory +hep-th/9606069 Theory +hep-th/9606095 Theory +hep-th/9606100 Theory +hep-th/9606101 Theory +hep-th/9606155 Theory +hep-th/9607007 Theory +hep-th/9607026 Theory +hep-th/9607050 Theory +hep-th/9607077 Theory +hep-th/9607169 Theory +hep-th/9607170 Theory +hep-th/9607182 Theory +hep-th/9607186 Theory +hep-th/9607192 Theory +hep-th/9607218 Theory +hep-th/9607222 Theory +hep-th/9607229 Theory +hep-th/9608002 Theory +hep-th/9608024 Theory +hep-th/9608056 Theory +hep-th/9608070 Theory +hep-th/9608071 Theory +hep-th/9608081 Theory +hep-th/9608088 Theory +hep-th/9608089 Theory +hep-th/9608124 Theory +hep-th/9608162 Theory +hep-th/9608181 Theory +hep-th/9609030 Theory +hep-th/9609031 Theory +hep-th/9609042 Theory +hep-th/9609047 Theory +hep-th/9609078 Theory +hep-th/9609080 Theory +hep-th/9609103 Theory +hep-th/9609108 Theory +hep-th/9609134 Theory +hep-th/9609138 Theory +hep-th/9609171 Theory +hep-th/9609177 Theory +hep-th/9609203 Theory +hep-th/9609227 Theory +hep-th/9609234 Theory +hep-th/9610028 Theory +hep-th/9610071 Theory +hep-th/9610105 Theory +hep-th/9610126 Theory +hep-th/9610161 Theory +hep-th/9610182 Theory +hep-th/9610200 Theory +hep-th/9611042 Theory +hep-th/9611072 Theory +hep-th/9611117 Theory +hep-th/9611150 Theory +hep-th/9611202 Theory +hep-th/9611212 Theory +hep-th/9612006 Theory +hep-th/9612016 Theory +hep-th/9612069 Theory +hep-th/9612076 Theory +hep-th/9612088 Theory +hep-th/9612099 Theory +hep-th/9612118 Theory +hep-th/9612143 Theory +hep-th/9612210 Theory +hep-th/9612217 Theory +hep-th/9612244 Theory +hep-th/9701008 Theory +hep-th/9701016 Theory +hep-th/9701086 Theory +hep-th/9701101 Theory +hep-th/9701102 Theory +hep-th/9701179 Theory +hep-th/9701189 Theory +hep-th/9702045 Theory +hep-th/9702049 Theory +hep-th/9702083 Theory +hep-th/9702090 Theory +hep-th/9702101 Theory +hep-th/9702147 Theory +hep-th/9702174 Theory +hep-th/9702184 Theory +hep-th/9703010 Theory +hep-th/9703040 Theory +hep-th/9703055 Theory +hep-th/9703079 Theory +hep-th/9703080 Theory +hep-th/9703119 Theory +hep-th/9703126 Theory +hep-th/9703184 Theory +hep-th/9703185 Theory +hep-th/9703217 Theory +hep-th/9704005 Theory +hep-th/9704025 Theory +hep-th/9704048 Theory +hep-th/9704119 Theory +hep-th/9704124 Theory +hep-th/9704142 Theory +hep-th/9704168 Theory +hep-th/9704194 Theory +hep-th/9705033 Theory +hep-th/9705039 Theory +hep-th/9705052 Theory +hep-th/9705087 Theory +hep-th/9705101 Theory +hep-th/9705123 Theory +hep-th/9705128 Theory +hep-th/9705145 Theory +hep-th/9705165 Theory +hep-th/9705168 Theory +hep-th/9705180 Theory +hep-th/9705216 Theory +hep-th/9705224 Theory +hep-th/9706010 Theory +hep-th/9706034 Theory +hep-th/9706086 Theory +hep-th/9706095 Theory +hep-th/9706100 Theory +hep-th/9706110 Theory +hep-th/9706115 Theory +hep-th/9706147 Theory +hep-th/9706159 Theory +hep-th/9706166 Theory +hep-th/9706181 Theory +hep-th/9706193 Theory +hep-th/9706207 Theory +hep-th/9706217 Theory +hep-th/9706222 Theory +hep-th/9707009 Theory +hep-th/9707014 Theory +hep-th/9707016 Theory +hep-th/9707029 Theory +hep-th/9707030 Theory +hep-th/9707032 Theory +hep-th/9707042 Theory +hep-th/9707056 Theory +hep-th/9707079 Theory +hep-th/9707083 Theory +hep-th/9707098 Theory +hep-th/9707099 Theory +hep-th/9707131 Theory +hep-th/9707144 Theory +hep-th/9707149 Theory +hep-th/9707167 Theory +hep-th/9707168 Theory +hep-th/9707214 Theory +hep-th/9707218 Theory +hep-th/9707220 Theory +hep-th/9707231 Theory +hep-th/9707240 Theory +hep-th/9707252 Theory +hep-th/9708018 Theory +hep-th/9708025 Theory +hep-th/9708035 Theory +hep-th/9708063 Theory +hep-th/9708086 Theory +hep-th/9708092 Theory +hep-th/9708103 Theory +hep-th/9708107 Theory +hep-th/9708112 Theory +hep-th/9708125 Theory +hep-th/9708145 Theory +hep-th/9708167 Theory +hep-th/9709016 Theory +hep-th/9709084 Theory +hep-th/9709086 Theory +hep-th/9709091 Theory +hep-th/9709092 Theory +hep-th/9709108 Theory +hep-th/9709137 Theory +hep-th/9709145 Theory +hep-th/9709160 Theory +hep-th/9709187 Theory +hep-th/9709201 Theory +hep-th/9709204 Theory +hep-th/9709206 Theory +hep-th/9709216 Theory +hep-th/9709220 Theory +hep-th/9710023 Theory +hep-th/9710056 Theory +hep-th/9710071 Theory +hep-th/9710073 Theory +hep-th/9710075 Theory +hep-th/9710093 Theory +hep-th/9710097 Theory +hep-th/9710101 Theory +hep-th/9710123 Theory +hep-th/9710165 Theory +hep-th/9710190 Theory +hep-th/9710193 Theory +hep-th/9710241 Theory +hep-th/9711004 Theory +hep-th/9711008 Theory +hep-th/9711013 Theory +hep-th/9711022 Theory +hep-th/9711042 Theory +hep-th/9711067 Theory +hep-th/9711078 Theory +hep-th/9711084 Theory +hep-th/9711085 Theory +hep-th/9711092 Theory +hep-th/9711112 Theory +hep-th/9711126 Theory +hep-th/9711133 Theory +hep-th/9711142 Theory +hep-th/9711159 Theory +hep-th/9711168 Theory +hep-th/9711186 Theory +hep-th/9711190 Theory +hep-th/9711198 Theory +hep-th/9712020 Theory +hep-th/9712048 Theory +hep-th/9712050 Theory +hep-th/9712052 Theory +hep-th/9712066 Theory +hep-th/9712067 Theory +hep-th/9712074 Theory +hep-th/9712091 Theory +hep-th/9712100 Theory +hep-th/9712105 Theory +hep-th/9712106 Theory +hep-th/9712113 Theory +hep-th/9712130 Theory +hep-th/9712132 Theory +hep-th/9712133 Theory +hep-th/9712159 Theory +hep-th/9712173 Theory +hep-th/9712185 Theory +hep-th/9712198 Theory +hep-th/9712222 Theory +hep-th/9712243 Theory +hep-th/9712244 Theory +hep-th/9712254 Theory +hep-th/9801010 Theory +hep-th/9801017 Theory +hep-th/9801033 Theory +hep-th/9801046 Theory +hep-th/9801078 Theory +hep-th/9801081 Theory +hep-th/9801101 Theory +hep-th/9801107 Theory +hep-th/9801126 Theory +hep-th/9801127 Theory +hep-th/9801129 Theory +hep-th/9801139 Theory +hep-th/9801187 Theory +hep-th/9802016 Theory +hep-th/9802039 Theory +hep-th/9802084 Theory +hep-th/9802109 Theory +hep-th/9802115 Theory +hep-th/9802159 Theory +hep-th/9802180 Theory +hep-th/9802185 Theory +hep-th/9803063 Theory +hep-th/9803075 Theory +hep-th/9803100 Theory +hep-th/9803106 Theory +hep-th/9803111 Theory +hep-th/9803112 Theory +hep-th/9803179 Theory +hep-th/9803181 Theory +hep-th/9803205 Theory +hep-th/9803249 Theory +hep-th/9803262 Theory +hep-th/9804022 Theory +hep-th/9804027 Theory +hep-th/9804035 Theory +hep-th/9804050 Theory +hep-th/9804088 Theory +hep-th/9804108 Theory +hep-th/9804176 Theory +hep-th/9804186 Theory +hep-th/9804204 Theory +hep-th/9804205 Theory +hep-th/9805005 Theory +hep-th/9805072 Theory +hep-th/9805089 Theory +hep-th/9805101 Theory +hep-th/9805143 Theory +hep-th/9805145 Theory +hep-th/9805162 Theory +hep-th/9805166 Theory +hep-th/9805180 Theory +hep-th/9805183 Theory +hep-th/9805189 Theory +hep-th/9805190 Theory +hep-th/9805211 Theory +hep-th/9805214 Theory +hep-th/9806066 Theory +hep-th/9806074 Theory +hep-th/9806094 Theory +hep-th/9806125 Theory +hep-th/9806128 Theory +hep-th/9806131 Theory +hep-th/9806135 Theory +hep-th/9806171 Theory +hep-th/9806194 Theory +hep-th/9806220 Theory +hep-th/9807018 Theory +hep-th/9807025 Theory +hep-th/9807039 Theory +hep-th/9807048 Theory +hep-th/9807060 Theory +hep-th/9807092 Theory +hep-th/9807118 Theory +hep-th/9807121 Theory +hep-th/9807124 Theory +hep-th/9807180 Theory +hep-th/9807192 Theory +hep-th/9808001 Theory +hep-th/9808014 Theory +hep-th/9808018 Theory +hep-th/9808083 Theory +hep-th/9808097 Theory +hep-th/9808104 Theory +hep-th/9808106 Theory +hep-th/9808129 Theory +hep-th/9808150 Theory +hep-th/9808153 Theory +hep-th/9808154 Theory +hep-th/9808158 Theory +hep-th/9809017 Theory +hep-th/9809033 Theory +hep-th/9809037 Theory +hep-th/9809134 Theory +hep-th/9809153 Theory +hep-th/9809159 Theory +hep-th/9809179 Theory +hep-th/9809214 Theory +hep-th/9810016 Theory +hep-th/9810037 Theory +hep-th/9810049 Theory +hep-th/9810078 Theory +hep-th/9810107 Theory +hep-th/9810108 Theory +hep-th/9810131 Theory +hep-th/9810164 Theory +hep-th/9810201 Theory +hep-th/9810206 Theory +hep-th/9810217 Theory +hep-th/9811015 Theory +hep-th/9811024 Theory +hep-th/9811033 Theory +hep-th/9811041 Theory +hep-th/9811056 Theory +hep-th/9811059 Theory +hep-th/9811062 Theory +hep-th/9811068 Theory +hep-th/9811139 Theory +hep-th/9811164 Theory +hep-th/9811175 Theory +hep-th/9811191 Theory +hep-th/9811195 Theory +hep-th/9811208 Theory +hep-th/9811213 Theory +hep-th/9811217 Theory +hep-th/9811244 Theory +hep-th/9811257 Theory +hep-th/9812004 Theory +hep-th/9812038 Theory +hep-th/9812051 Theory +hep-th/9812058 Theory +hep-th/9812059 Theory +hep-th/9812060 Theory +hep-th/9812103 Theory +hep-th/9812116 Theory +hep-th/9812135 Theory +hep-th/9812136 Theory +hep-th/9812191 Theory +hep-th/9812218 Theory +hep-th/9812230 Theory +hep-th/9901001 Theory +hep-th/9901003 Theory +hep-th/9901025 Theory +hep-th/9901056 Theory +hep-th/9901098 Theory +hep-th/9901110 Theory +hep-th/9901125 Theory +hep-th/9901151 Theory +hep-th/9902013 Theory +hep-th/9902021 Theory +hep-th/9902034 Theory +hep-th/9902045 Theory +hep-th/9902055 Theory +hep-th/9902116 Theory +hep-th/9902123 Theory +hep-th/9902174 Theory +hep-th/9902175 Theory +hep-th/9902180 Theory +hep-th/9902200 Theory +hep-th/9902209 Theory +hep-th/9903017 Theory +hep-th/9903066 Theory +hep-th/9903081 Theory +hep-th/9903146 Theory +hep-th/9903156 Theory +hep-th/9903165 Theory +hep-th/9903194 Theory +hep-th/9903195 Theory +hep-th/9903198 Theory +hep-th/9903206 Theory +hep-th/9903209 Theory +hep-th/9903212 Theory +hep-th/9903254 Theory +hep-th/9903260 Theory +hep-th/9903262 Theory +hep-th/9904018 Theory +hep-th/9904053 Theory +hep-th/9904059 Theory +hep-th/9904069 Theory +hep-th/9904075 Theory +hep-th/9904089 Theory +hep-th/9904092 Theory +hep-th/9904095 Theory +hep-th/9904100 Theory +hep-th/9904126 Theory +hep-th/9904129 Theory +hep-th/9904213 Theory +hep-th/9904216 Theory +hep-th/9905003 Theory +hep-th/9905035 Theory +hep-th/9905052 Theory +hep-th/9905053 Theory +hep-th/9905058 Theory +hep-th/9905085 Theory +hep-th/9905095 Theory +hep-th/9905100 Theory +hep-th/9905105 Theory +hep-th/9905111 Theory +hep-th/9905147 Theory +hep-th/9905171 Theory +hep-th/9905174 Theory +hep-th/9905179 Theory +hep-th/9905224 Theory +hep-th/9905225 Theory +hep-th/9905229 Theory +hep-th/9906023 Theory +hep-th/9906027 Theory +hep-th/9906029 Theory +hep-th/9906035 Theory +hep-th/9906059 Theory +hep-th/9906064 Theory +hep-th/9906089 Theory +hep-th/9906094 Theory +hep-th/9906105 Theory +hep-th/9906130 Theory +hep-th/9906142 Theory +hep-th/9906148 Theory +hep-th/9906155 Theory +hep-th/9906186 Theory +hep-th/9906198 Theory +hep-th/9906221 Theory +hep-th/9906228 Theory +hep-th/9907009 Theory +hep-th/9907048 Theory +hep-th/9907063 Theory +hep-th/9907066 Theory +hep-th/9907076 Theory +hep-th/9907092 Theory +hep-th/9907108 Theory +hep-th/9907113 Theory +hep-th/9907122 Theory +hep-th/9907132 Theory +hep-th/9907135 Theory +hep-th/9907136 Theory +hep-th/9907143 Theory +hep-th/9907165 Theory +hep-th/9907177 Theory +hep-th/9907180 Theory +hep-th/9907186 Theory +hep-th/9907197 Theory +hep-th/9907202 Theory +hep-th/9907207 Theory +hep-th/9907225 Theory +hep-th/9908001 Theory +hep-th/9908002 Theory +hep-th/9908021 Theory +hep-th/9908024 Theory +hep-th/9908038 Theory +hep-th/9908055 Theory +hep-th/9908096 Theory +hep-th/9908181 Theory +hep-th/9908187 Theory +hep-th/9908188 Theory +hep-th/9908196 Theory +hep-th/9909004 Theory +hep-th/9909029 Theory +hep-th/9909033 Theory +hep-th/9909039 Theory +hep-th/9909045 Theory +hep-th/9909059 Theory +hep-th/9909083 Theory +hep-th/9909128 Theory +hep-th/9909145 Theory +hep-th/9909205 Theory +hep-th/9909221 Theory +hep-th/9909228 Theory +hep-th/9910001 Theory +hep-th/9910023 Theory +hep-th/9910034 Theory +hep-th/9910052 Theory +hep-th/9910055 Theory +hep-th/9910066 Theory +hep-th/9910100 Theory +hep-th/9910112 Theory +hep-th/9910128 Theory +hep-th/9910165 Theory +hep-th/9910179 Theory +hep-th/9910181 Theory +hep-th/9910215 Theory +hep-th/9910233 Theory +hep-th/9910253 Theory +hep-th/9911010 Theory +hep-th/9911013 Theory +hep-th/9911037 Theory +hep-th/9911058 Theory +hep-th/9911111 Theory +hep-th/9911121 Theory +hep-th/9911126 Theory +hep-th/9911129 Theory +hep-th/9911179 Theory +hep-th/9911196 Theory +hep-th/9911213 Theory +hep-th/9911216 Theory +hep-th/9912003 Theory +hep-th/9912006 Theory +hep-th/9912010 Theory +hep-th/9912059 Theory +hep-th/9912075 Theory +hep-th/9912129 Theory +hep-th/9912132 Theory +hep-th/9912147 Theory +hep-th/9912169 Theory +hep-th/9912180 Theory +hep-th/9912197 Theory +hep-th/9912206 Theory +hep-th/9912222 Theory +hep-th/9912272 Theory +hep-th/9912284 Theory +math-ph/0001027 +math-ph/0001043 +math-ph/0007011 +math-ph/0007012 +math-ph/0007033 +math-ph/0008014 +math-ph/0009038 +math-ph/0010051 +math-ph/0101024 +math-ph/0102031 +math-ph/0102035 +math-ph/0109006 +math-ph/0109019 +math-ph/0110013 +math-ph/0111020 +math-ph/0112017 +math-ph/0112019 +math-ph/0112030 +math-ph/0112040 +math-ph/0201011 +math-ph/0201050 +math-ph/0202041 +math-ph/0203041 +math-ph/0204051 +math-ph/0205019 +math-ph/0205036 +math-ph/0206006 +math-ph/0206028 +math-ph/0206042 +math-ph/0206047 +math-ph/0207004 +math-ph/0207033 +math-ph/0208003 +math-ph/0209022 +math-ph/0209030 +math-ph/0209033 +math-ph/0209035 +math-ph/0211019 +math-ph/0212023 +math-ph/0301028 +math-ph/0301041 +math-ph/0302042 +math-ph/0302052 +math-ph/0303003 +math-ph/0303030 +math-ph/0303043 +math-ph/0303066 +math-ph/0304008 +math-ph/0305010 +math-ph/0305037 +math-ph/0305061 +math-ph/0306028 +math-ph/0306032 +math-ph/0306047 +math-ph/0306058 +math-ph/0307003 +math-ph/0307010 +math-ph/0307017 +math-ph/0307021 +math-ph/0308043 +math-ph/0309013 +math-ph/0309064 +math-ph/0310009 +math-ph/0310015 +math-ph/0310028 +math-ph/0310032 +math-ph/0401003 +math-ph/0401013 +math-ph/0401031 +math-ph/0401032 +math-ph/0402006 +math-ph/0402029 +math-ph/0403047 +math-ph/0403050 +math-ph/0405056 +math-ph/0406002 +math-ph/0408048 +math-ph/0408057 +math-ph/0409038 +math-ph/0410027 +math-ph/0410031 +math-ph/0411031 +math-ph/0412049 +math-ph/0503058 +math-ph/0504014 +math-ph/0504015 +math-ph/0505022 +math-ph/0505040 +math-ph/0505057 +math-ph/0505081 +math-ph/0506014 +math-ph/0506075 +math-ph/0506076 +math-ph/0509026 +math-ph/0509058 +math-ph/0510052 +math-ph/0511030 +math-ph/0511037 +math-ph/0511080 +math-ph/0511085 +math-ph/0512009 +math-ph/0512040 +math-ph/0512060 +math-ph/0512083 +math-ph/0601012 +math-ph/0601053 +math-ph/0601065 +math-ph/0602043 +math-ph/0602049 +math-ph/0603056 +math-ph/0603066 +math-ph/0603081 +math-ph/0603082 +math-ph/0603083 +math-ph/0604022 +math-ph/0604023 +math-ph/0604044 +math-ph/0604069 +math-ph/0605009 +math-ph/0605026 +math-ph/0605073 +math-ph/0606007 +math-ph/0606030 +math-ph/0606033 +math-ph/0606060 +math-ph/0606069 +math-ph/0607015 +math-ph/0607036 +math-ph/0607046 +math-ph/0607057 +math-ph/0608012 +math-ph/0608044 +math-ph/0608063 +math-ph/0609022 +math-ph/0609025 +math-ph/0609042 +math-ph/0609057 +math-ph/0609058 +math-ph/0609059 +math-ph/0609064 +math-ph/0609089 +math-ph/0610009 +math-ph/0610013 +math-ph/0610018 +math-ph/0610022 +math-ph/0610023 +math-ph/0610024 +math-ph/0610049 +math-ph/0610051 +math-ph/0610061 +math-ph/0610070 +math-ph/0610075 +math-ph/0610077 +math-ph/0611006 +math-ph/0611023 +math-ph/0611025 +math-ph/0611030 +math-ph/0611043 +math-ph/0611053 +math-ph/0611058 +math-ph/0611064 +math-ph/0611078 +math-ph/0612001 +math-ph/0612026 +math-ph/0612029 +math-ph/0612041 +math-ph/0612054 +math-ph/0612059 +math-ph/0612076 +math-ph/0612079 +math-ph/0612080 +math-ph/0701015 +math-ph/0701034 +math-ph/0701036 +math-ph/0701037 +math-ph/0701053 +math-ph/0701071 +math-ph/0702020 +math-ph/0702025 +math-ph/0702034 +math-ph/0702047 +math-ph/0702066 +math-ph/0702067 +math-ph/0702074 +math-ph/0702077 +math-ph/0702088 +math-ph/0702095 +math-ph/0702096 +math-ph/0702097 +math-ph/0703003 +math-ph/0703006 +math-ph/0703013 +math-ph/0703030 +math-ph/0703032 +math-ph/0703052 +math-ph/0703059 +math-ph/0703061 +math-ph/0703069 +math-ph/0703076 +math-ph/0703085 +math-ph/9805008 +math-ph/9805010 +math-ph/9806012 +math-ph/9806014 +math-ph/9809001 +math-ph/9811029 +math-ph/9812003 +math-ph/9812008 +math-ph/9812028 +math-ph/9901018 +math-ph/9905022 +math-ph/9906020 +math-ph/9908021 +math/0002034 Probability +math/0002061 Statistics Theory +math/0003156 Probability +math/0005034 Differential Geometry +math/0005111 Quantum Algebra +math/0005138 Quantum Algebra +math/0005295 Probability +math/0008010 Algebraic Geometry +math/0009013 Algebraic Geometry +math/0010165 Probability +math/0011019 Probability +math/0012058 Representation Theory +math/0101160 Quantum Algebra +math/0102142 Differential Geometry +math/0104105 Quantum Algebra +math/0106006 Algebraic Geometry +math/0106129 Quantum Algebra +math/0108152 Differential Geometry +math/0108207 Quantum Algebra +math/0109090 Representation Theory +math/0109140 Quantum Algebra +math/0112202 Quantum Algebra +math/0112234 Probability +math/0203262 Probability +math/0204357 Rings and Algebras +math/0205155 Quantum Algebra +math/0206239 Classical Analysis and ODEs +math/0207017 Differential Geometry +math/0207181 Quantum Algebra +math/0208174 Combinatorics +math/0209343 Probability +math/0210340 Quantum Algebra +math/0211367 Operator Algebras +math/0303357 Quantum Algebra +math/0304135 Quantum Algebra +math/0305424 Quantum Algebra +math/0306084 Quantum Algebra +math/0306201 Quantum Algebra +math/0306235 Differential Geometry +math/0306362 Differential Geometry +math/0309465 Category Theory +math/0310072 Differential Geometry +math/0310080 Quantum Algebra +math/0310210 Probability +math/0311235 Quantum Algebra +math/0311355 Differential Geometry +math/0402020 Differential Geometry +math/0402100 Differential Geometry +math/0403002 Differential Geometry +math/0405085 Differential Geometry +math/0406627 Differential Geometry +math/0410551 Differential Geometry +math/0411281 Quantum Algebra +math/0411507 Category Theory +math/0412263 Probability +math/0504184 Quantum Algebra +math/0505130 Operator Algebras +math/0505293 Quantum Algebra +math/0506094 Group Theory +math/0506301 Algebraic Geometry +math/0506359 Symplectic Geometry +math/0507050 Quantum Algebra +math/0507114 Representation Theory +math/0508220 Geometric Topology +math/0509298 Combinatorics +math/0510156 Analysis of PDEs +math/0510185 Group Theory +math/0510406 Differential Geometry +math/0511328 Quantum Algebra +math/0511441 Differential Geometry +math/0511526 Probability +math/0511590 Category Theory +math/0512076 Category Theory +math/0512245 Symplectic Geometry +math/0512470 Algebraic Geometry +math/0601181 Quantum Algebra +math/0601250 Quantum Algebra +math/0601334 Spectral Theory +math/0601419 Differential Geometry +math/0601554 Quantum Algebra +math/0601625 Complex Variables +math/0601630 Quantum Algebra +math/0601697 Quantum Algebra +math/0601751 Differential Geometry +math/0602177 Representation Theory +math/0603485 Geometric Topology +math/0603591 Quantum Algebra +math/0603633 Quantum Algebra +math/0604093 Algebraic Geometry +math/0604102 Functional Analysis +math/0604270 Differential Geometry +math/0604281 Representation Theory +math/0604325 Differential Geometry +math/0604610 Quantum Algebra +math/0605451 Quantum Algebra +math/0605516 Differential Geometry +math/0605590 Differential Geometry +math/0605710 Differential Geometry +math/0605762 Differential Geometry +math/0605781 Functional Analysis +math/0606323 Differential Geometry +math/0606401 Differential Geometry +math/0606506 Quantum Algebra +math/0607081 Differential Geometry +math/0607745 Quantum Algebra +math/0608248 Quantum Algebra +math/0608456 Algebraic Geometry +math/0609036 Representation Theory +math/0609306 Quantum Algebra +math/0609813 Rings and Algebras +math/0609841 Symplectic Geometry +math/0610505 Quantum Algebra +math/0610804 Differential Geometry +math/0610851 Quantum Algebra +math/0610873 Quantum Algebra +math/0610874 Quantum Algebra +math/0610933 Differential Geometry +math/0611111 Geometric Topology +math/0611762 Algebraic Geometry +math/0701010 Classical Analysis and ODEs +math/0701122 Differential Geometry +math/0701749 Quantum Algebra +math/0701893 Quantum Algebra +math/0702042 Differential Geometry +math/0702080 Quantum Algebra +math/0702081 Quantum Algebra +math/0702188 Quantum Algebra +math/0702189 Algebraic Geometry +math/0702305 Differential Geometry +math/0702598 Differential Geometry +math/0702894 Geometric Topology +math/9801031 Quantum Algebra +math/9801112 Quantum Algebra +math/9801119 Algebraic Geometry +math/9804059 Algebraic Geometry +math/9805039 Representation Theory +math/9805071 Algebraic Geometry +math/9807137 Quantum Algebra +math/9809078 Quantum Algebra +math/9811157 Probability +math/9811170 Probability +math/9902116 Probability +math/9903093 Quantum Algebra +math/9904022 Probability +math/9904029 Quantum Algebra +math/9904040 K-Theory and Homology +math/9905151 Probability +math/9906144 Quantum Algebra +math/9906189 Quantum Algebra +math/9907023 Quantum Algebra +math/9908151 Quantum Algebra +math/9909067 Quantum Algebra +math/9911034 Quantum Algebra +math/9911084 Probability +math/9911149 Operator Algebras +math/9911201 Quantum Algebra +math/9912078 Quantum Algebra +math/9912218 Quantum Algebra +math/9912233 Probability +nlin/0002027 Exactly Solvable and Integrable Systems +nlin/0003005 Exactly Solvable and Integrable Systems +nlin/0004011 Exactly Solvable and Integrable Systems +nlin/0004013 Exactly Solvable and Integrable Systems +nlin/0004022 Exactly Solvable and Integrable Systems +nlin/0004023 Exactly Solvable and Integrable Systems +nlin/0006029 Exactly Solvable and Integrable Systems +nlin/0006041 Chaotic Dynamics +nlin/0007020 Exactly Solvable and Integrable Systems +nlin/0009026 Exactly Solvable and Integrable Systems +nlin/0011014 Chaotic Dynamics +nlin/0012025 Exactly Solvable and Integrable Systems +nlin/0102011 Chaotic Dynamics +nlin/0104071 Exactly Solvable and Integrable Systems +nlin/0105053 Exactly Solvable and Integrable Systems +nlin/0107067 Exactly Solvable and Integrable Systems +nlin/0107069 Chaotic Dynamics +nlin/0109002 Exactly Solvable and Integrable Systems +nlin/0110049 Exactly Solvable and Integrable Systems +nlin/0201004 Exactly Solvable and Integrable Systems +nlin/0202028 Chaotic Dynamics +nlin/0204054 Exactly Solvable and Integrable Systems +nlin/0207036 Exactly Solvable and Integrable Systems +nlin/0207039 Chaotic Dynamics +nlin/0208035 Exactly Solvable and Integrable Systems +nlin/0305031 Exactly Solvable and Integrable Systems +nlin/0307043 Exactly Solvable and Integrable Systems +nlin/0312006 Chaotic Dynamics +nlin/0312014 Chaotic Dynamics +nlin/0403055 Exactly Solvable and Integrable Systems +nlin/0404016 Chaotic Dynamics +nlin/0404017 Exactly Solvable and Integrable Systems +nlin/0404058 Chaotic Dynamics +nlin/0410029 Exactly Solvable and Integrable Systems +nlin/0510026 Chaotic Dynamics +nlin/0512035 Exactly Solvable and Integrable Systems +nlin/0512042 Exactly Solvable and Integrable Systems +nlin/0602059 Exactly Solvable and Integrable Systems +nlin/0603024 Chaotic Dynamics +nlin/0603031 Chaotic Dynamics +nlin/0604022 Exactly Solvable and Integrable Systems +nlin/0604073 Exactly Solvable and Integrable Systems +nlin/0608046 Pattern Formation and Solitons +nlin/0608068 Exactly Solvable and Integrable Systems +nlin/0609001 Exactly Solvable and Integrable Systems +nlin/0610032 Pattern Formation and Solitons +nlin/0701063 Chaotic Dynamics +nlin/0703018 Exactly Solvable and Integrable Systems +nlin/0703035 Exactly Solvable and Integrable Systems +nlin/0703043 Exactly Solvable and Integrable Systems +nucl-ex/0001001 +nucl-ex/0001009 +nucl-ex/0001010 +nucl-ex/0002003 +nucl-ex/0003001 +nucl-ex/0003002 +nucl-ex/0003010 +nucl-ex/0004003 +nucl-ex/0004004 +nucl-ex/0004008 +nucl-ex/0005004 +nucl-ex/0005005 +nucl-ex/0006009 +nucl-ex/0007017 +nucl-ex/0007022 +nucl-ex/0009004 +nucl-ex/0009005 +nucl-ex/0009011 +nucl-ex/0009017 +nucl-ex/0010002 +nucl-ex/0010013 +nucl-ex/0010020 +nucl-ex/0011001 +nucl-ex/0011006 +nucl-ex/0011007 +nucl-ex/0011009 +nucl-ex/0011010 +nucl-ex/0011020 +nucl-ex/0012004 +nucl-ex/0012008 +nucl-ex/0101001 +nucl-ex/0101002 +nucl-ex/0101003 +nucl-ex/0101014 +nucl-ex/0102014 +nucl-ex/0103009 +nucl-ex/0103010 +nucl-ex/0103014 +nucl-ex/0104003 +nucl-ex/0104004 +nucl-ex/0104011 +nucl-ex/0104012 +nucl-ex/0104025 +nucl-ex/0105002 +nucl-ex/0105004 +nucl-ex/0105006 +nucl-ex/0105008 +nucl-ex/0106002 +nucl-ex/0106009 +nucl-ex/0106021 +nucl-ex/0107004 +nucl-ex/0107005 +nucl-ex/0108003 +nucl-ex/0108007 +nucl-ex/0108012 +nucl-ex/0108022 +nucl-ex/0108023 +nucl-ex/0109003 +nucl-ex/0109010 +nucl-ex/0109014 +nucl-ex/0109018 +nucl-ex/0109020 +nucl-ex/0110008 +nucl-ex/0111009 +nucl-ex/0111016 +nucl-ex/0111021 +nucl-ex/0112002 +nucl-ex/0112005 +nucl-ex/0112006 +nucl-ex/0112010 +nucl-ex/0201002 +nucl-ex/0201005 +nucl-ex/0201006 +nucl-ex/0201008 +nucl-ex/0201009 +nucl-ex/0201012 +nucl-ex/0201016 +nucl-ex/0201017 +nucl-ex/0201018 +nucl-ex/0201019 +nucl-ex/0202002 +nucl-ex/0202003 +nucl-ex/0202008 +nucl-ex/0202010 +nucl-ex/0202017 +nucl-ex/0202021 +nucl-ex/0203013 +nucl-ex/0203014 +nucl-ex/0203015 +nucl-ex/0203016 +nucl-ex/0203019 +nucl-ex/0204005 +nucl-ex/0204007 +nucl-ex/0205014 +nucl-ex/0205020 +nucl-ex/0206004 +nucl-ex/0206011 +nucl-ex/0207009 +nucl-ex/0208007 +nucl-ex/0209021 +nucl-ex/0210004 +nucl-ex/0210027 +nucl-ex/0210033 +nucl-ex/0210037 +nucl-ex/0210040 +nucl-ex/0211001 +nucl-ex/0211005 +nucl-ex/0211006 +nucl-ex/0211009 +nucl-ex/0211014 +nucl-ex/0211020 +nucl-ex/0211022 +nucl-ex/0211024 +nucl-ex/0211026 +nucl-ex/0212004 +nucl-ex/0212009 +nucl-ex/0212013 +nucl-ex/0212028 +nucl-ex/0301002 +nucl-ex/0301010 +nucl-ex/0301015 +nucl-ex/0302002 +nucl-ex/0302005 +nucl-ex/0302015 +nucl-ex/0302021 +nucl-ex/0302031 +nucl-ex/0303003 +nucl-ex/0303011 +nucl-ex/0304005 +nucl-ex/0304011 +nucl-ex/0304013 +nucl-ex/0304022 +nucl-ex/0305013 +nucl-ex/0305015 +nucl-ex/0305020 +nucl-ex/0305030 +nucl-ex/0305031 +nucl-ex/0305036 +nucl-ex/0306021 +nucl-ex/0306023 +nucl-ex/0306024 +nucl-ex/0306025 +nucl-ex/0306029 +nucl-ex/0306032 +nucl-ex/0306033 +nucl-ex/0307007 +nucl-ex/0307010 +nucl-ex/0307016 +nucl-ex/0307017 +nucl-ex/0307022 +nucl-ex/0307023 +nucl-ex/0307024 +nucl-ex/0307025 +nucl-ex/0308003 +nucl-ex/0308005 +nucl-ex/0308006 +nucl-ex/0308009 +nucl-ex/0308011 +nucl-ex/0308021 +nucl-ex/0308025 +nucl-ex/0308033 +nucl-ex/0309013 +nucl-ex/0310002 +nucl-ex/0310004 +nucl-ex/0310005 +nucl-ex/0310008 +nucl-ex/0310014 +nucl-ex/0310015 +nucl-ex/0310021 +nucl-ex/0310026 +nucl-ex/0310029 +nucl-ex/0311002 +nucl-ex/0311006 +nucl-ex/0311008 +nucl-ex/0311009 +nucl-ex/0311021 +nucl-ex/0312021 +nucl-ex/0401009 +nucl-ex/0401019 +nucl-ex/0401021 +nucl-ex/0401022 +nucl-ex/0402018 +nucl-ex/0403003 +nucl-ex/0403025 +nucl-ex/0403033 +nucl-ex/0403041 +nucl-ex/0403055 +nucl-ex/0404010 +nucl-ex/0404012 +nucl-ex/0404018 +nucl-ex/0404036 +nucl-ex/0405003 +nucl-ex/0405023 +nucl-ex/0405026 +nucl-ex/0405027 +nucl-ex/0405028 +nucl-ex/0406003 +nucl-ex/0406004 +nucl-ex/0406017 +nucl-ex/0406031 +nucl-ex/0406035 +nucl-ex/0407001 +nucl-ex/0407003 +nucl-ex/0407006 +nucl-ex/0407017 +nucl-ex/0408006 +nucl-ex/0408007 +nucl-ex/0408009 +nucl-ex/0408013 +nucl-ex/0408015 +nucl-ex/0409001 +nucl-ex/0409003 +nucl-ex/0409005 +nucl-ex/0409008 +nucl-ex/0409021 +nucl-ex/0409028 +nucl-ex/0410001 +nucl-ex/0410008 +nucl-ex/0410010 +nucl-ex/0410012 +nucl-ex/0410016 +nucl-ex/0410020 +nucl-ex/0410022 +nucl-ex/0411006 +nucl-ex/0411019 +nucl-ex/0411021 +nucl-ex/0411040 +nucl-ex/0411041 +nucl-ex/0411045 +nucl-ex/0411049 +nucl-ex/0411051 +nucl-ex/0411054 +nucl-ex/0412002 +nucl-ex/0412019 +nucl-ex/0412027 +nucl-ex/0412030 +nucl-ex/0501004 +nucl-ex/0501027 +nucl-ex/0501031 +nucl-ex/0502009 +nucl-ex/0502019 +nucl-ex/0503003 +nucl-ex/0503009 +nucl-ex/0503019 +nucl-ex/0503021 +nucl-ex/0504005 +nucl-ex/0504008 +nucl-ex/0504016 +nucl-ex/0504022 +nucl-ex/0505006 +nucl-ex/0505008 +nucl-ex/0505011 +nucl-ex/0505016 +nucl-ex/0505023 +nucl-ex/0506005 +nucl-ex/0506007 +nucl-ex/0506014 +nucl-ex/0506016 +nucl-ex/0506018 +nucl-ex/0507001 +nucl-ex/0507004 +nucl-ex/0507007 +nucl-ex/0507032 +nucl-ex/0508004 +nucl-ex/0508011 +nucl-ex/0508014 +nucl-ex/0508019 +nucl-ex/0508032 +nucl-ex/0509014 +nucl-ex/0509021 +nucl-ex/0509031 +nucl-ex/0509034 +nucl-ex/0510013 +nucl-ex/0510018 +nucl-ex/0510024 +nucl-ex/0510031 +nucl-ex/0510036 +nucl-ex/0510047 +nucl-ex/0510053 +nucl-ex/0510056 +nucl-ex/0510066 +nucl-ex/0510070 +nucl-ex/0510071 +nucl-ex/0510074 +nucl-ex/0510081 +nucl-ex/0511002 +nucl-ex/0511003 +nucl-ex/0511004 +nucl-ex/0511005 +nucl-ex/0511019 +nucl-ex/0511023 +nucl-ex/0511034 +nucl-ex/0511040 +nucl-ex/0511045 +nucl-ex/0511049 +nucl-ex/0512016 +nucl-ex/0512020 +nucl-ex/0512025 +nucl-ex/0512028 +nucl-ex/0512035 +nucl-ex/0512041 +nucl-ex/0601006 +nucl-ex/0601030 +nucl-ex/0601032 +nucl-ex/0601036 +nucl-ex/0601037 +nucl-ex/0601038 +nucl-ex/0601040 +nucl-ex/0602003 +nucl-ex/0602011 +nucl-ex/0602021 +nucl-ex/0602022 +nucl-ex/0602023 +nucl-ex/0603003 +nucl-ex/0603004 +nucl-ex/0603006 +nucl-ex/0603009 +nucl-ex/0603010 +nucl-ex/0603013 +nucl-ex/0603017 +nucl-ex/0603026 +nucl-ex/0603029 +nucl-ex/0603030 +nucl-ex/0604001 +nucl-ex/0604018 +nucl-ex/0605002 +nucl-ex/0605006 +nucl-ex/0605008 +nucl-ex/0605013 +nucl-ex/0605014 +nucl-ex/0605018 +nucl-ex/0605022 +nucl-ex/0605029 +nucl-ex/0605030 +nucl-ex/0605032 +nucl-ex/0606014 +nucl-ex/0606015 +nucl-ex/0606016 +nucl-ex/0606019 +nucl-ex/0606026 +nucl-ex/0606028 +nucl-ex/0606029 +nucl-ex/0606030 +nucl-ex/0606033 +nucl-ex/0606035 +nucl-ex/0607001 +nucl-ex/0607003 +nucl-ex/0607005 +nucl-ex/0607006 +nucl-ex/0607017 +nucl-ex/0607022 +nucl-ex/0607023 +nucl-ex/0607025 +nucl-ex/0607028 +nucl-ex/0607033 +nucl-ex/0607034 +nucl-ex/0608002 +nucl-ex/0608003 +nucl-ex/0608004 +nucl-ex/0608006 +nucl-ex/0608009 +nucl-ex/0608010 +nucl-ex/0608011 +nucl-ex/0608012 +nucl-ex/0608014 +nucl-ex/0608018 +nucl-ex/0608029 +nucl-ex/0608033 +nucl-ex/0608035 +nucl-ex/0608036 +nucl-ex/0608039 +nucl-ex/0608041 +nucl-ex/0608042 +nucl-ex/0608046 +nucl-ex/0608047 +nucl-ex/0608049 +nucl-ex/0608053 +nucl-ex/0609003 +nucl-ex/0609004 +nucl-ex/0609006 +nucl-ex/0609007 +nucl-ex/0609009 +nucl-ex/0609010 +nucl-ex/0609016 +nucl-ex/0609022 +nucl-ex/0609023 +nucl-ex/0609025 +nucl-ex/0609026 +nucl-ex/0609027 +nucl-ex/0609028 +nucl-ex/0609029 +nucl-ex/0609030 +nucl-ex/0609033 +nucl-ex/0609034 +nucl-ex/0609035 +nucl-ex/0609037 +nucl-ex/0609038 +nucl-ex/0609039 +nucl-ex/0609040 +nucl-ex/0609041 +nucl-ex/0609042 +nucl-ex/0609044 +nucl-ex/0609047 +nucl-ex/0610001 +nucl-ex/0610003 +nucl-ex/0610004 +nucl-ex/0610005 +nucl-ex/0610007 +nucl-ex/0610009 +nucl-ex/0610010 +nucl-ex/0610011 +nucl-ex/0610012 +nucl-ex/0610013 +nucl-ex/0610014 +nucl-ex/0610016 +nucl-ex/0610018 +nucl-ex/0610021 +nucl-ex/0610022 +nucl-ex/0610025 +nucl-ex/0610026 +nucl-ex/0610027 +nucl-ex/0610029 +nucl-ex/0610031 +nucl-ex/0610032 +nucl-ex/0610033 +nucl-ex/0610034 +nucl-ex/0610036 +nucl-ex/0610037 +nucl-ex/0610039 +nucl-ex/0610040 +nucl-ex/0610041 +nucl-ex/0610046 +nucl-ex/0610048 +nucl-ex/0611001 +nucl-ex/0611003 +nucl-ex/0611004 +nucl-ex/0611006 +nucl-ex/0611007 +nucl-ex/0611008 +nucl-ex/0611009 +nucl-ex/0611013 +nucl-ex/0611015 +nucl-ex/0611016 +nucl-ex/0611017 +nucl-ex/0611018 +nucl-ex/0611019 +nucl-ex/0611020 +nucl-ex/0611022 +nucl-ex/0611023 +nucl-ex/0611025 +nucl-ex/0611026 +nucl-ex/0611027 +nucl-ex/0611030 +nucl-ex/0611031 +nucl-ex/0611032 +nucl-ex/0611033 +nucl-ex/0611036 +nucl-ex/0611037 +nucl-ex/0611038 +nucl-ex/0611040 +nucl-ex/0612001 +nucl-ex/0612002 +nucl-ex/0612005 +nucl-ex/0612006 +nucl-ex/0612007 +nucl-ex/0612008 +nucl-ex/0612009 +nucl-ex/0612011 +nucl-ex/0612014 +nucl-ex/0612019 +nucl-ex/0612020 +nucl-ex/0612021 +nucl-ex/0612024 +nucl-ex/0612028 +nucl-ex/0612029 +nucl-ex/0701001 +nucl-ex/0701003 +nucl-ex/0701004 +nucl-ex/0701005 +nucl-ex/0701006 +nucl-ex/0701008 +nucl-ex/0701009 +nucl-ex/0701011 +nucl-ex/0701014 +nucl-ex/0701015 +nucl-ex/0701017 +nucl-ex/0701018 +nucl-ex/0701019 +nucl-ex/0701021 +nucl-ex/0701023 +nucl-ex/0701025 +nucl-ex/0701027 +nucl-ex/0701029 +nucl-ex/0701030 +nucl-ex/0701031 +nucl-ex/0701032 +nucl-ex/0701033 +nucl-ex/0701034 +nucl-ex/0701035 +nucl-ex/0701037 +nucl-ex/0701038 +nucl-ex/0701040 +nucl-ex/0701041 +nucl-ex/0701042 +nucl-ex/0701043 +nucl-ex/0701044 +nucl-ex/0701045 +nucl-ex/0701046 +nucl-ex/0701047 +nucl-ex/0701048 +nucl-ex/0701049 +nucl-ex/0701050 +nucl-ex/0701051 +nucl-ex/0701052 +nucl-ex/0701054 +nucl-ex/0701055 +nucl-ex/0701056 +nucl-ex/0701057 +nucl-ex/0701059 +nucl-ex/0701060 +nucl-ex/0701061 +nucl-ex/0701062 +nucl-ex/0701063 +nucl-ex/0701064 +nucl-ex/0701065 +nucl-ex/0701066 +nucl-ex/0701067 +nucl-ex/0701068 +nucl-ex/0701069 +nucl-ex/0701070 +nucl-ex/0701071 +nucl-ex/0701074 +nucl-ex/0701075 +nucl-ex/0701076 +nucl-ex/0701080 +nucl-ex/0702002 +nucl-ex/0702003 +nucl-ex/0702004 +nucl-ex/0702007 +nucl-ex/0702008 +nucl-ex/0702011 +nucl-ex/0702012 +nucl-ex/0702013 +nucl-ex/0702014 +nucl-ex/0702016 +nucl-ex/0702018 +nucl-ex/0702019 +nucl-ex/0702020 +nucl-ex/0702022 +nucl-ex/0702023 +nucl-ex/0702024 +nucl-ex/0702025 +nucl-ex/0702026 +nucl-ex/0702028 +nucl-ex/0702030 +nucl-ex/0702032 +nucl-ex/0702033 +nucl-ex/0702034 +nucl-ex/0702035 +nucl-ex/0702037 +nucl-ex/0702038 +nucl-ex/0702039 +nucl-ex/0702041 +nucl-ex/0702042 +nucl-ex/0702043 +nucl-ex/0702047 +nucl-ex/0702048 +nucl-ex/0702049 +nucl-ex/0702052 +nucl-ex/0702053 +nucl-ex/0702054 +nucl-ex/0702055 +nucl-ex/0702056 +nucl-ex/0702057 +nucl-ex/0702058 +nucl-ex/0702059 +nucl-ex/0703001 +nucl-ex/0703003 +nucl-ex/0703004 +nucl-ex/0703005 +nucl-ex/0703007 +nucl-ex/0703008 +nucl-ex/0703009 +nucl-ex/0703011 +nucl-ex/0703014 +nucl-ex/0703020 +nucl-ex/0703021 +nucl-ex/0703024 +nucl-ex/0703025 +nucl-ex/0703027 +nucl-ex/0703029 +nucl-ex/0703030 +nucl-ex/0703031 +nucl-ex/0703032 +nucl-ex/0703034 +nucl-ex/0703037 +nucl-ex/0703039 +nucl-ex/0703043 +nucl-ex/0703044 +nucl-ex/0703045 +nucl-ex/0703046 +nucl-ex/0703047 +nucl-ex/9502003 +nucl-ex/9504002 +nucl-ex/9504003 +nucl-ex/9507001 +nucl-ex/9508001 +nucl-ex/9511001 +nucl-ex/9601001 +nucl-ex/9605001 +nucl-ex/9605002 +nucl-ex/9605003 +nucl-ex/9605005 +nucl-ex/9607005 +nucl-ex/9607009 +nucl-ex/9608001 +nucl-ex/9608002 +nucl-ex/9610005 +nucl-ex/9610010 +nucl-ex/9611001 +nucl-ex/9612002 +nucl-ex/9612003 +nucl-ex/9702003 +nucl-ex/9703002 +nucl-ex/9703003 +nucl-ex/9705001 +nucl-ex/9705002 +nucl-ex/9706003 +nucl-ex/9706005 +nucl-ex/9706006 +nucl-ex/9707002 +nucl-ex/9707004 +nucl-ex/9709003 +nucl-ex/9709006 +nucl-ex/9710002 +nucl-ex/9711001 +nucl-ex/9711004 +nucl-ex/9711005 +nucl-ex/9712004 +nucl-ex/9712005 +nucl-ex/9801002 +nucl-ex/9801005 +nucl-ex/9802002 +nucl-ex/9802006 +nucl-ex/9803014 +nucl-ex/9805008 +nucl-ex/9807003 +nucl-ex/9808005 +nucl-ex/9809001 +nucl-ex/9809003 +nucl-ex/9809004 +nucl-ex/9810005 +nucl-ex/9810010 +nucl-ex/9810018 +nucl-ex/9811001 +nucl-ex/9811003 +nucl-ex/9811004 +nucl-ex/9811006 +nucl-ex/9811012 +nucl-ex/9811013 +nucl-ex/9812002 +nucl-ex/9901005 +nucl-ex/9902003 +nucl-ex/9903003 +nucl-ex/9903010 +nucl-ex/9905001 +nucl-ex/9906013 +nucl-ex/9907001 +nucl-ex/9908005 +nucl-ex/9908009 +nucl-ex/9908011 +nucl-ex/9908017 +nucl-ex/9909007 +nucl-ex/9909013 +nucl-ex/9910005 +nucl-ex/9910006 +nucl-ex/9911003 +nucl-ex/9911005 +nucl-ex/9911010 +nucl-th/0001006 +nucl-th/0001027 +nucl-th/0002021 +nucl-th/0002022 +nucl-th/0002051 +nucl-th/0003031 +nucl-th/0003046 +nucl-th/0003049 +nucl-th/0003056 +nucl-th/0003065 +nucl-th/0003072 +nucl-th/0004001 +nucl-th/0004014 +nucl-th/0004015 +nucl-th/0004019 +nucl-th/0004033 +nucl-th/0004064 +nucl-th/0004066 +nucl-th/0005063 +nucl-th/0005070 +nucl-th/0005071 +nucl-th/0006003 +nucl-th/0006005 +nucl-th/0006021 +nucl-th/0006031 +nucl-th/0006036 +nucl-th/0006049 +nucl-th/0006051 +nucl-th/0006058 +nucl-th/0006075 +nucl-th/0006081 +nucl-th/0006082 +nucl-th/0006084 +nucl-th/0007021 +nucl-th/0007040 +nucl-th/0008028 +nucl-th/0008039 +nucl-th/0008049 +nucl-th/0008050 +nucl-th/0008058 +nucl-th/0008061 +nucl-th/0009008 +nucl-th/0009018 +nucl-th/0009040 +nucl-th/0009063 +nucl-th/0009069 +nucl-th/0009076 +nucl-th/0009078 +nucl-th/0009083 +nucl-th/0009085 +nucl-th/0009086 +nucl-th/0010009 +nucl-th/0010012 +nucl-th/0010026 +nucl-th/0010028 +nucl-th/0010049 +nucl-th/0010056 +nucl-th/0010062 +nucl-th/0010088 +nucl-th/0010098 +nucl-th/0010103 +nucl-th/0010104 +nucl-th/0011011 +nucl-th/0011021 +nucl-th/0011023 +nucl-th/0011029 +nucl-th/0011048 +nucl-th/0011050 +nucl-th/0011069 +nucl-th/0011077 +nucl-th/0011079 +nucl-th/0011084 +nucl-th/0011093 +nucl-th/0012011 +nucl-th/0012032 +nucl-th/0012056 +nucl-th/0012058 +nucl-th/0012064 +nucl-th/0012077 +nucl-th/0012088 +nucl-th/0101003 +nucl-th/0101006 +nucl-th/0101035 +nucl-th/0101037 +nucl-th/0101045 +nucl-th/0101049 +nucl-th/0101064 +nucl-th/0102004 +nucl-th/0102026 +nucl-th/0102032 +nucl-th/0102051 +nucl-th/0102053 +nucl-th/0103005 +nucl-th/0103012 +nucl-th/0103036 +nucl-th/0104006 +nucl-th/0104030 +nucl-th/0104047 +nucl-th/0104051 +nucl-th/0104055 +nucl-th/0104061 +nucl-th/0104064 +nucl-th/0104080 +nucl-th/0104087 +nucl-th/0105040 +nucl-th/0105046 +nucl-th/0106026 +nucl-th/0106035 +nucl-th/0106036 +nucl-th/0106037 +nucl-th/0106056 +nucl-th/0107014 +nucl-th/0107018 +nucl-th/0107028 +nucl-th/0107047 +nucl-th/0107071 +nucl-th/0108001 +nucl-th/0108006 +nucl-th/0108007 +nucl-th/0108019 +nucl-th/0108035 +nucl-th/0108041 +nucl-th/0108046 +nucl-th/0108065 +nucl-th/0108067 +nucl-th/0109001 +nucl-th/0109008 +nucl-th/0109020 +nucl-th/0109026 +nucl-th/0109044 +nucl-th/0109049 +nucl-th/0109074 +nucl-th/0110013 +nucl-th/0110035 +nucl-th/0110046 +nucl-th/0110067 +nucl-th/0110071 +nucl-th/0111020 +nucl-th/0111022 +nucl-th/0111040 +nucl-th/0112016 +nucl-th/0112026 +nucl-th/0112032 +nucl-th/0112045 +nucl-th/0112047 +nucl-th/0112053 +nucl-th/0112062 +nucl-th/0112064 +nucl-th/0112067 +nucl-th/0112068 +nucl-th/0112080 +nucl-th/0201003 +nucl-th/0201015 +nucl-th/0201019 +nucl-th/0201026 +nucl-th/0201034 +nucl-th/0201037 +nucl-th/0201039 +nucl-th/0201040 +nucl-th/0201053 +nucl-th/0201055 +nucl-th/0201076 +nucl-th/0202004 +nucl-th/0202016 +nucl-th/0202017 +nucl-th/0202019 +nucl-th/0202024 +nucl-th/0202027 +nucl-th/0202034 +nucl-th/0203011 +nucl-th/0203021 +nucl-th/0203034 +nucl-th/0203038 +nucl-th/0203071 +nucl-th/0203081 +nucl-th/0204001 +nucl-th/0204040 +nucl-th/0204066 +nucl-th/0204070 +nucl-th/0204075 +nucl-th/0205005 +nucl-th/0205012 +nucl-th/0205027 +nucl-th/0205033 +nucl-th/0205047 +nucl-th/0205057 +nucl-th/0205067 +nucl-th/0205068 +nucl-th/0206013 +nucl-th/0206028 +nucl-th/0206035 +nucl-th/0206039 +nucl-th/0206046 +nucl-th/0206048 +nucl-th/0206061 +nucl-th/0207004 +nucl-th/0207041 +nucl-th/0207042 +nucl-th/0207050 +nucl-th/0207066 +nucl-th/0207069 +nucl-th/0208003 +nucl-th/0208005 +nucl-th/0208006 +nucl-th/0209002 +nucl-th/0209059 +nucl-th/0209079 +nucl-th/0209090 +nucl-th/0210008 +nucl-th/0210009 +nucl-th/0210033 +nucl-th/0210044 +nucl-th/0211040 +nucl-th/0211047 +nucl-th/0211048 +nucl-th/0211058 +nucl-th/0211067 +nucl-th/0211076 +nucl-th/0211078 +nucl-th/0211082 +nucl-th/0212014 +nucl-th/0212023 +nucl-th/0212048 +nucl-th/0212060 +nucl-th/0212062 +nucl-th/0212066 +nucl-th/0212084 +nucl-th/0212096 +nucl-th/0212098 +nucl-th/0301009 +nucl-th/0301016 +nucl-th/0301021 +nucl-th/0301028 +nucl-th/0301037 +nucl-th/0301087 +nucl-th/0301093 +nucl-th/0302004 +nucl-th/0302006 +nucl-th/0302030 +nucl-th/0302053 +nucl-th/0302070 +nucl-th/0303012 +nucl-th/0303021 +nucl-th/0303039 +nucl-th/0303057 +nucl-th/0303067 +nucl-th/0304044 +nucl-th/0304047 +nucl-th/0304052 +nucl-th/0304082 +nucl-th/0305008 +nucl-th/0305010 +nucl-th/0305035 +nucl-th/0305038 +nucl-th/0305042 +nucl-th/0305058 +nucl-th/0305059 +nucl-th/0305074 +nucl-th/0306011 +nucl-th/0306018 +nucl-th/0306019 +nucl-th/0306027 +nucl-th/0306043 +nucl-th/0306047 +nucl-th/0306050 +nucl-th/0306054 +nucl-th/0306069 +nucl-th/0306074 +nucl-th/0306076 +nucl-th/0307043 +nucl-th/0307046 +nucl-th/0307056 +nucl-th/0307063 +nucl-th/0307084 +nucl-th/0307085 +nucl-th/0307088 +nucl-th/0307117 +nucl-th/0308048 +nucl-th/0309021 +nucl-th/0309022 +nucl-th/0309040 +nucl-th/0309047 +nucl-th/0309055 +nucl-th/0309071 +nucl-th/0309075 +nucl-th/0310027 +nucl-th/0310044 +nucl-th/0310047 +nucl-th/0310081 +nucl-th/0310086 +nucl-th/0311005 +nucl-th/0311019 +nucl-th/0311037 +nucl-th/0311041 +nucl-th/0311042 +nucl-th/0311052 +nucl-th/0311066 +nucl-th/0311089 +nucl-th/0312007 +nucl-th/0312010 +nucl-th/0312027 +nucl-th/0312045 +nucl-th/0312054 +nucl-th/0312066 +nucl-th/0312080 +nucl-th/0312081 +nucl-th/0312087 +nucl-th/0312091 +nucl-th/0312102 +nucl-th/0312115 +nucl-th/0312126 +nucl-th/0402003 +nucl-th/0402027 +nucl-th/0402036 +nucl-th/0402046 +nucl-th/0402078 +nucl-th/0402082 +nucl-th/0403002 +nucl-th/0403023 +nucl-th/0403031 +nucl-th/0403033 +nucl-th/0404039 +nucl-th/0404052 +nucl-th/0404083 +nucl-th/0404085 +nucl-th/0405011 +nucl-th/0405024 +nucl-th/0405057 +nucl-th/0406007 +nucl-th/0406018 +nucl-th/0406029 +nucl-th/0406036 +nucl-th/0406046 +nucl-th/0406051 +nucl-th/0406053 +nucl-th/0406077 +nucl-th/0406081 +nucl-th/0407007 +nucl-th/0407025 +nucl-th/0407032 +nucl-th/0407033 +nucl-th/0407053 +nucl-th/0407084 +nucl-th/0407086 +nucl-th/0407093 +nucl-th/0407102 +nucl-th/0408008 +nucl-th/0408027 +nucl-th/0409012 +nucl-th/0409017 +nucl-th/0409029 +nucl-th/0409078 +nucl-th/0410006 +nucl-th/0410066 +nucl-th/0410087 +nucl-th/0410099 +nucl-th/0410100 +nucl-th/0410116 +nucl-th/0411001 +nucl-th/0411043 +nucl-th/0411045 +nucl-th/0411089 +nucl-th/0411097 +nucl-th/0411110 +nucl-th/0411112 +nucl-th/0412014 +nucl-th/0412061 +nucl-th/0412081 +nucl-th/0412101 +nucl-th/0412102 +nucl-th/0501028 +nucl-th/0501033 +nucl-th/0501057 +nucl-th/0501071 +nucl-th/0502029 +nucl-th/0502059 +nucl-th/0502065 +nucl-th/0502073 +nucl-th/0502075 +nucl-th/0503003 +nucl-th/0503029 +nucl-th/0503048 +nucl-th/0503049 +nucl-th/0503062 +nucl-th/0503075 +nucl-th/0503082 +nucl-th/0503083 +nucl-th/0503085 +nucl-th/0503088 +nucl-th/0504007 +nucl-th/0504008 +nucl-th/0504028 +nucl-th/0504032 +nucl-th/0504040 +nucl-th/0504044 +nucl-th/0504067 +nucl-th/0504072 +nucl-th/0504073 +nucl-th/0504085 +nucl-th/0505010 +nucl-th/0505016 +nucl-th/0505042 +nucl-th/0505045 +nucl-th/0505047 +nucl-th/0505058 +nucl-th/0505071 +nucl-th/0505079 +nucl-th/0506005 +nucl-th/0506041 +nucl-th/0506046 +nucl-th/0506047 +nucl-th/0506049 +nucl-th/0506063 +nucl-th/0506071 +nucl-th/0507004 +nucl-th/0507017 +nucl-th/0507019 +nucl-th/0507023 +nucl-th/0507024 +nucl-th/0507025 +nucl-th/0507033 +nucl-th/0507037 +nucl-th/0507063 +nucl-th/0507076 +nucl-th/0508023 +nucl-th/0508024 +nucl-th/0508028 +nucl-th/0508037 +nucl-th/0508043 +nucl-th/0508051 +nucl-th/0508053 +nucl-th/0508055 +nucl-th/0509004 +nucl-th/0509022 +nucl-th/0509023 +nucl-th/0509032 +nucl-th/0509033 +nucl-th/0509037 +nucl-th/0509040 +nucl-th/0509051 +nucl-th/0509054 +nucl-th/0509087 +nucl-th/0509088 +nucl-th/0510014 +nucl-th/0510017 +nucl-th/0510022 +nucl-th/0510025 +nucl-th/0510032 +nucl-th/0510050 +nucl-th/0510056 +nucl-th/0510057 +nucl-th/0510064 +nucl-th/0510074 +nucl-th/0510078 +nucl-th/0511004 +nucl-th/0511007 +nucl-th/0511012 +nucl-th/0511023 +nucl-th/0511027 +nucl-th/0511031 +nucl-th/0511033 +nucl-th/0511036 +nucl-th/0511037 +nucl-th/0511038 +nucl-th/0511042 +nucl-th/0511044 +nucl-th/0511045 +nucl-th/0511046 +nucl-th/0511055 +nucl-th/0511056 +nucl-th/0511057 +nucl-th/0511071 +nucl-th/0511076 +nucl-th/0511078 +nucl-th/0511083 +nucl-th/0511087 +nucl-th/0511091 +nucl-th/0512013 +nucl-th/0512022 +nucl-th/0512027 +nucl-th/0512028 +nucl-th/0512033 +nucl-th/0512034 +nucl-th/0512035 +nucl-th/0512038 +nucl-th/0512039 +nucl-th/0512048 +nucl-th/0512065 +nucl-th/0512067 +nucl-th/0512068 +nucl-th/0512079 +nucl-th/0512082 +nucl-th/0512084 +nucl-th/0512089 +nucl-th/0512093 +nucl-th/0512106 +nucl-th/0601002 +nucl-th/0601007 +nucl-th/0601009 +nucl-th/0601011 +nucl-th/0601012 +nucl-th/0601027 +nucl-th/0601029 +nucl-th/0601039 +nucl-th/0601050 +nucl-th/0601057 +nucl-th/0601059 +nucl-th/0601062 +nucl-th/0601063 +nucl-th/0601064 +nucl-th/0601067 +nucl-th/0601072 +nucl-th/0601086 +nucl-th/0601090 +nucl-th/0601099 +nucl-th/0601100 +nucl-th/0601103 +nucl-th/0602002 +nucl-th/0602003 +nucl-th/0602006 +nucl-th/0602007 +nucl-th/0602010 +nucl-th/0602019 +nucl-th/0602020 +nucl-th/0602021 +nucl-th/0602023 +nucl-th/0602027 +nucl-th/0602028 +nucl-th/0602029 +nucl-th/0602038 +nucl-th/0602044 +nucl-th/0602045 +nucl-th/0602046 +nucl-th/0602049 +nucl-th/0602051 +nucl-th/0602052 +nucl-th/0602053 +nucl-th/0602054 +nucl-th/0602058 +nucl-th/0602070 +nucl-th/0602073 +nucl-th/0603001 +nucl-th/0603003 +nucl-th/0603009 +nucl-th/0603018 +nucl-th/0603020 +nucl-th/0603025 +nucl-th/0603026 +nucl-th/0603033 +nucl-th/0603037 +nucl-th/0603041 +nucl-th/0603042 +nucl-th/0603045 +nucl-th/0603047 +nucl-th/0603050 +nucl-th/0603056 +nucl-th/0603058 +nucl-th/0603060 +nucl-th/0603061 +nucl-th/0603065 +nucl-th/0603066 +nucl-th/0604002 +nucl-th/0604006 +nucl-th/0604008 +nucl-th/0604009 +nucl-th/0604014 +nucl-th/0604016 +nucl-th/0604026 +nucl-th/0604031 +nucl-th/0604032 +nucl-th/0604035 +nucl-th/0604041 +nucl-th/0604042 +nucl-th/0604044 +nucl-th/0604053 +nucl-th/0604061 +nucl-th/0604063 +nucl-th/0604067 +nucl-th/0604071 +nucl-th/0605001 +nucl-th/0605003 +nucl-th/0605004 +nucl-th/0605006 +nucl-th/0605008 +nucl-th/0605013 +nucl-th/0605014 +nucl-th/0605016 +nucl-th/0605022 +nucl-th/0605023 +nucl-th/0605024 +nucl-th/0605026 +nucl-th/0605027 +nucl-th/0605028 +nucl-th/0605031 +nucl-th/0605038 +nucl-th/0605040 +nucl-th/0605042 +nucl-th/0605045 +nucl-th/0605046 +nucl-th/0605048 +nucl-th/0605049 +nucl-th/0605050 +nucl-th/0605052 +nucl-th/0605053 +nucl-th/0605054 +nucl-th/0605056 +nucl-th/0605057 +nucl-th/0605058 +nucl-th/0605065 +nucl-th/0605066 +nucl-th/0605068 +nucl-th/0605069 +nucl-th/0605070 +nucl-th/0605076 +nucl-th/0605081 +nucl-th/0605084 +nucl-th/0606003 +nucl-th/0606010 +nucl-th/0606019 +nucl-th/0606020 +nucl-th/0606029 +nucl-th/0606030 +nucl-th/0606034 +nucl-th/0606036 +nucl-th/0606039 +nucl-th/0606042 +nucl-th/0606043 +nucl-th/0606044 +nucl-th/0606045 +nucl-th/0606047 +nucl-th/0606048 +nucl-th/0606050 +nucl-th/0606052 +nucl-th/0606058 +nucl-th/0606062 +nucl-th/0607001 +nucl-th/0607002 +nucl-th/0607003 +nucl-th/0607005 +nucl-th/0607009 +nucl-th/0607012 +nucl-th/0607013 +nucl-th/0607016 +nucl-th/0607017 +nucl-th/0607018 +nucl-th/0607022 +nucl-th/0607023 +nucl-th/0607026 +nucl-th/0607029 +nucl-th/0607031 +nucl-th/0607032 +nucl-th/0607036 +nucl-th/0607045 +nucl-th/0607046 +nucl-th/0607047 +nucl-th/0607050 +nucl-th/0607051 +nucl-th/0607053 +nucl-th/0607054 +nucl-th/0607058 +nucl-th/0607059 +nucl-th/0607060 +nucl-th/0607061 +nucl-th/0607062 +nucl-th/0607064 +nucl-th/0607068 +nucl-th/0607069 +nucl-th/0607070 +nucl-th/0608003 +nucl-th/0608004 +nucl-th/0608006 +nucl-th/0608007 +nucl-th/0608010 +nucl-th/0608015 +nucl-th/0608016 +nucl-th/0608018 +nucl-th/0608019 +nucl-th/0608020 +nucl-th/0608021 +nucl-th/0608022 +nucl-th/0608023 +nucl-th/0608024 +nucl-th/0608025 +nucl-th/0608031 +nucl-th/0608034 +nucl-th/0608036 +nucl-th/0608040 +nucl-th/0608042 +nucl-th/0608043 +nucl-th/0608044 +nucl-th/0608045 +nucl-th/0608048 +nucl-th/0608049 +nucl-th/0608050 +nucl-th/0608051 +nucl-th/0608053 +nucl-th/0608055 +nucl-th/0608056 +nucl-th/0608057 +nucl-th/0608058 +nucl-th/0608061 +nucl-th/0608062 +nucl-th/0608067 +nucl-th/0608068 +nucl-th/0608072 +nucl-th/0608073 +nucl-th/0608076 +nucl-th/0608077 +nucl-th/0608078 +nucl-th/0608079 +nucl-th/0608080 +nucl-th/0609002 +nucl-th/0609003 +nucl-th/0609004 +nucl-th/0609007 +nucl-th/0609008 +nucl-th/0609012 +nucl-th/0609013 +nucl-th/0609014 +nucl-th/0609015 +nucl-th/0609017 +nucl-th/0609019 +nucl-th/0609021 +nucl-th/0609022 +nucl-th/0609023 +nucl-th/0609024 +nucl-th/0609025 +nucl-th/0609029 +nucl-th/0609030 +nucl-th/0609031 +nucl-th/0609033 +nucl-th/0609035 +nucl-th/0609036 +nucl-th/0609038 +nucl-th/0609039 +nucl-th/0609040 +nucl-th/0609041 +nucl-th/0609042 +nucl-th/0609043 +nucl-th/0609044 +nucl-th/0609047 +nucl-th/0609051 +nucl-th/0609052 +nucl-th/0609053 +nucl-th/0609055 +nucl-th/0609056 +nucl-th/0609058 +nucl-th/0609059 +nucl-th/0609061 +nucl-th/0609063 +nucl-th/0609064 +nucl-th/0609067 +nucl-th/0609071 +nucl-th/0609072 +nucl-th/0609073 +nucl-th/0609074 +nucl-th/0609076 +nucl-th/0609077 +nucl-th/0609078 +nucl-th/0609079 +nucl-th/0609080 +nucl-th/0609081 +nucl-th/0609083 +nucl-th/0609084 +nucl-th/0610004 +nucl-th/0610006 +nucl-th/0610007 +nucl-th/0610008 +nucl-th/0610014 +nucl-th/0610016 +nucl-th/0610017 +nucl-th/0610019 +nucl-th/0610021 +nucl-th/0610022 +nucl-th/0610024 +nucl-th/0610025 +nucl-th/0610026 +nucl-th/0610030 +nucl-th/0610031 +nucl-th/0610033 +nucl-th/0610034 +nucl-th/0610035 +nucl-th/0610036 +nucl-th/0610037 +nucl-th/0610039 +nucl-th/0610040 +nucl-th/0610043 +nucl-th/0610045 +nucl-th/0610048 +nucl-th/0610049 +nucl-th/0610052 +nucl-th/0610053 +nucl-th/0610055 +nucl-th/0610056 +nucl-th/0610058 +nucl-th/0610060 +nucl-th/0610061 +nucl-th/0610062 +nucl-th/0610067 +nucl-th/0610068 +nucl-th/0610069 +nucl-th/0610070 +nucl-th/0610071 +nucl-th/0610072 +nucl-th/0610074 +nucl-th/0610075 +nucl-th/0610076 +nucl-th/0610078 +nucl-th/0610079 +nucl-th/0610080 +nucl-th/0610081 +nucl-th/0610082 +nucl-th/0610083 +nucl-th/0610084 +nucl-th/0610085 +nucl-th/0610086 +nucl-th/0610090 +nucl-th/0610091 +nucl-th/0610093 +nucl-th/0610094 +nucl-th/0610096 +nucl-th/0610097 +nucl-th/0610098 +nucl-th/0610099 +nucl-th/0610101 +nucl-th/0610102 +nucl-th/0610103 +nucl-th/0610104 +nucl-th/0610105 +nucl-th/0610106 +nucl-th/0610107 +nucl-th/0610108 +nucl-th/0610110 +nucl-th/0610112 +nucl-th/0610113 +nucl-th/0610116 +nucl-th/0610117 +nucl-th/0610118 +nucl-th/0610119 +nucl-th/0610121 +nucl-th/0610123 +nucl-th/0610125 +nucl-th/0610126 +nucl-th/0610127 +nucl-th/0610128 +nucl-th/0611001 +nucl-th/0611002 +nucl-th/0611003 +nucl-th/0611004 +nucl-th/0611006 +nucl-th/0611007 +nucl-th/0611009 +nucl-th/0611011 +nucl-th/0611013 +nucl-th/0611014 +nucl-th/0611015 +nucl-th/0611016 +nucl-th/0611017 +nucl-th/0611018 +nucl-th/0611019 +nucl-th/0611020 +nucl-th/0611021 +nucl-th/0611022 +nucl-th/0611023 +nucl-th/0611024 +nucl-th/0611025 +nucl-th/0611026 +nucl-th/0611027 +nucl-th/0611029 +nucl-th/0611030 +nucl-th/0611031 +nucl-th/0611033 +nucl-th/0611034 +nucl-th/0611036 +nucl-th/0611037 +nucl-th/0611039 +nucl-th/0611040 +nucl-th/0611041 +nucl-th/0611042 +nucl-th/0611043 +nucl-th/0611044 +nucl-th/0611045 +nucl-th/0611046 +nucl-th/0611047 +nucl-th/0611049 +nucl-th/0611050 +nucl-th/0611055 +nucl-th/0611056 +nucl-th/0611057 +nucl-th/0611058 +nucl-th/0611061 +nucl-th/0611062 +nucl-th/0611064 +nucl-th/0611066 +nucl-th/0611067 +nucl-th/0611068 +nucl-th/0611069 +nucl-th/0611070 +nucl-th/0611071 +nucl-th/0611072 +nucl-th/0611075 +nucl-th/0611076 +nucl-th/0611078 +nucl-th/0611079 +nucl-th/0611080 +nucl-th/0611082 +nucl-th/0611083 +nucl-th/0611085 +nucl-th/0611086 +nucl-th/0611087 +nucl-th/0611089 +nucl-th/0611090 +nucl-th/0611091 +nucl-th/0611092 +nucl-th/0611095 +nucl-th/0611096 +nucl-th/0611097 +nucl-th/0611101 +nucl-th/0611103 +nucl-th/0611104 +nucl-th/0612004 +nucl-th/0612005 +nucl-th/0612009 +nucl-th/0612010 +nucl-th/0612011 +nucl-th/0612012 +nucl-th/0612017 +nucl-th/0612020 +nucl-th/0612021 +nucl-th/0612023 +nucl-th/0612025 +nucl-th/0612026 +nucl-th/0612027 +nucl-th/0612030 +nucl-th/0612031 +nucl-th/0612035 +nucl-th/0612036 +nucl-th/0612037 +nucl-th/0612041 +nucl-th/0612044 +nucl-th/0612046 +nucl-th/0612048 +nucl-th/0612049 +nucl-th/0612051 +nucl-th/0612053 +nucl-th/0612056 +nucl-th/0612058 +nucl-th/0612059 +nucl-th/0612064 +nucl-th/0612068 +nucl-th/0612069 +nucl-th/0612070 +nucl-th/0612071 +nucl-th/0612074 +nucl-th/0612075 +nucl-th/0612076 +nucl-th/0612078 +nucl-th/0612079 +nucl-th/0612081 +nucl-th/0612082 +nucl-th/0612083 +nucl-th/0612085 +nucl-th/0612086 +nucl-th/0612087 +nucl-th/0612088 +nucl-th/0612093 +nucl-th/0612096 +nucl-th/0612097 +nucl-th/0612098 +nucl-th/0612099 +nucl-th/0612100 +nucl-th/0612101 +nucl-th/0612104 +nucl-th/0612109 +nucl-th/0701002 +nucl-th/0701003 +nucl-th/0701010 +nucl-th/0701011 +nucl-th/0701012 +nucl-th/0701013 +nucl-th/0701014 +nucl-th/0701015 +nucl-th/0701016 +nucl-th/0701017 +nucl-th/0701018 +nucl-th/0701019 +nucl-th/0701020 +nucl-th/0701021 +nucl-th/0701022 +nucl-th/0701025 +nucl-th/0701026 +nucl-th/0701027 +nucl-th/0701028 +nucl-th/0701029 +nucl-th/0701030 +nucl-th/0701031 +nucl-th/0701032 +nucl-th/0701033 +nucl-th/0701034 +nucl-th/0701037 +nucl-th/0701038 +nucl-th/0701040 +nucl-th/0701041 +nucl-th/0701042 +nucl-th/0701044 +nucl-th/0701045 +nucl-th/0701046 +nucl-th/0701047 +nucl-th/0701048 +nucl-th/0701050 +nucl-th/0701051 +nucl-th/0701052 +nucl-th/0701053 +nucl-th/0701054 +nucl-th/0701055 +nucl-th/0701056 +nucl-th/0701059 +nucl-th/0701060 +nucl-th/0701062 +nucl-th/0701063 +nucl-th/0701064 +nucl-th/0701065 +nucl-th/0701066 +nucl-th/0701067 +nucl-th/0701068 +nucl-th/0701069 +nucl-th/0701070 +nucl-th/0701072 +nucl-th/0701074 +nucl-th/0701075 +nucl-th/0701076 +nucl-th/0701077 +nucl-th/0701078 +nucl-th/0701079 +nucl-th/0701080 +nucl-th/0701082 +nucl-th/0701084 +nucl-th/0701086 +nucl-th/0701087 +nucl-th/0701088 +nucl-th/0701089 +nucl-th/0701090 +nucl-th/0701091 +nucl-th/0701092 +nucl-th/0701093 +nucl-th/0701094 +nucl-th/0701095 +nucl-th/0702001 +nucl-th/0702002 +nucl-th/0702003 +nucl-th/0702004 +nucl-th/0702005 +nucl-th/0702006 +nucl-th/0702007 +nucl-th/0702008 +nucl-th/0702010 +nucl-th/0702011 +nucl-th/0702012 +nucl-th/0702013 +nucl-th/0702014 +nucl-th/0702015 +nucl-th/0702016 +nucl-th/0702017 +nucl-th/0702018 +nucl-th/0702020 +nucl-th/0702021 +nucl-th/0702022 +nucl-th/0702023 +nucl-th/0702025 +nucl-th/0702026 +nucl-th/0702027 +nucl-th/0702029 +nucl-th/0702030 +nucl-th/0702031 +nucl-th/0702032 +nucl-th/0702033 +nucl-th/0702034 +nucl-th/0702035 +nucl-th/0702036 +nucl-th/0702037 +nucl-th/0702038 +nucl-th/0702039 +nucl-th/0702044 +nucl-th/0702046 +nucl-th/0702048 +nucl-th/0702049 +nucl-th/0702051 +nucl-th/0702052 +nucl-th/0702054 +nucl-th/0702056 +nucl-th/0702057 +nucl-th/0702058 +nucl-th/0702059 +nucl-th/0702060 +nucl-th/0702061 +nucl-th/0702062 +nucl-th/0702064 +nucl-th/0702065 +nucl-th/0702066 +nucl-th/0702068 +nucl-th/0702069 +nucl-th/0702070 +nucl-th/0702071 +nucl-th/0702072 +nucl-th/0702073 +nucl-th/0702075 +nucl-th/0702077 +nucl-th/0702079 +nucl-th/0702080 +nucl-th/0702081 +nucl-th/0702082 +nucl-th/0702083 +nucl-th/0702085 +nucl-th/0702086 +nucl-th/0702087 +nucl-th/0702088 +nucl-th/0702089 +nucl-th/0703001 +nucl-th/0703002 +nucl-th/0703003 +nucl-th/0703004 +nucl-th/0703005 +nucl-th/0703006 +nucl-th/0703008 +nucl-th/0703009 +nucl-th/0703010 +nucl-th/0703012 +nucl-th/0703014 +nucl-th/0703015 +nucl-th/0703016 +nucl-th/0703017 +nucl-th/0703018 +nucl-th/0703019 +nucl-th/0703022 +nucl-th/0703024 +nucl-th/0703025 +nucl-th/0703032 +nucl-th/0703033 +nucl-th/0703034 +nucl-th/0703035 +nucl-th/0703036 +nucl-th/0703037 +nucl-th/0703038 +nucl-th/0703039 +nucl-th/0703040 +nucl-th/0703041 +nucl-th/0703042 +nucl-th/0703043 +nucl-th/0703044 +nucl-th/0703046 +nucl-th/0703047 +nucl-th/0703048 +nucl-th/0703049 +nucl-th/0703051 +nucl-th/0703052 +nucl-th/0703054 +nucl-th/0703055 +nucl-th/0703056 +nucl-th/0703063 +nucl-th/0703064 +nucl-th/0703065 +nucl-th/0703066 +nucl-th/0703068 +nucl-th/0703069 +nucl-th/0703070 +nucl-th/0703071 +nucl-th/0703072 +nucl-th/0703073 +nucl-th/0703074 +nucl-th/0703076 +nucl-th/0703078 +nucl-th/0703082 +nucl-th/0703083 +nucl-th/0703084 +nucl-th/0703085 +nucl-th/0703087 +nucl-th/0703088 +nucl-th/0703091 +nucl-th/0703092 +nucl-th/0703094 +nucl-th/0703096 +nucl-th/0703097 +nucl-th/0703098 +nucl-th/0703099 +nucl-th/0703102 +nucl-th/0703103 +nucl-th/9210002 +nucl-th/9210003 +nucl-th/9210004 +nucl-th/9210011 +nucl-th/9210012 +nucl-th/9210014 +nucl-th/9210015 +nucl-th/9210016 +nucl-th/9211002 +nucl-th/9211004 +nucl-th/9211005 +nucl-th/9211007 +nucl-th/9211011 +nucl-th/9211012 +nucl-th/9212003 +nucl-th/9301002 +nucl-th/9301004 +nucl-th/9301005 +nucl-th/9301006 +nucl-th/9301007 +nucl-th/9301008 +nucl-th/9301011 +nucl-th/9301012 +nucl-th/9301014 +nucl-th/9301015 +nucl-th/9301016 +nucl-th/9301021 +nucl-th/9301022 +nucl-th/9302004 +nucl-th/9302006 +nucl-th/9302007 +nucl-th/9302013 +nucl-th/9303003 +nucl-th/9303004 +nucl-th/9303005 +nucl-th/9303006 +nucl-th/9303007 +nucl-th/9303008 +nucl-th/9303009 +nucl-th/9303010 +nucl-th/9303011 +nucl-th/9303012 +nucl-th/9303014 +nucl-th/9303015 +nucl-th/9303016 +nucl-th/9303017 +nucl-th/9303025 +nucl-th/9303026 +nucl-th/9304001 +nucl-th/9304004 +nucl-th/9304008 +nucl-th/9304010 +nucl-th/9304013 +nucl-th/9304014 +nucl-th/9304016 +nucl-th/9304021 +nucl-th/9304023 +nucl-th/9304024 +nucl-th/9304025 +nucl-th/9305009 +nucl-th/9305014 +nucl-th/9305016 +nucl-th/9305017 +nucl-th/9306001 +nucl-th/9306002 +nucl-th/9306004 +nucl-th/9306005 +nucl-th/9306009 +nucl-th/9306011 +nucl-th/9307003 +nucl-th/9307009 +nucl-th/9307012 +nucl-th/9307014 +nucl-th/9307018 +nucl-th/9307020 +nucl-th/9307021 +nucl-th/9307023 +nucl-th/9307028 +nucl-th/9308007 +nucl-th/9308008 +nucl-th/9308011 +nucl-th/9308013 +nucl-th/9308016 +nucl-th/9309003 +nucl-th/9309004 +nucl-th/9309005 +nucl-th/9309014 +nucl-th/9309015 +nucl-th/9309016 +nucl-th/9309019 +nucl-th/9309024 +nucl-th/9310005 +nucl-th/9310026 +nucl-th/9311002 +nucl-th/9311013 +nucl-th/9312016 +nucl-th/9312017 +nucl-th/9312022 +nucl-th/9401020 +nucl-th/9402008 +nucl-th/9402018 +nucl-th/9402020 +nucl-th/9402021 +nucl-th/9402026 +nucl-th/9402027 +nucl-th/9404019 +nucl-th/9404030 +nucl-th/9405018 +nucl-th/9405023 +nucl-th/9405026 +nucl-th/9406007 +nucl-th/9406008 +nucl-th/9406011 +nucl-th/9406031 +nucl-th/9406035 +nucl-th/9406038 +nucl-th/9407007 +nucl-th/9407014 +nucl-th/9407030 +nucl-th/9408018 +nucl-th/9409010 +nucl-th/9409012 +nucl-th/9409019 +nucl-th/9409023 +nucl-th/9410003 +nucl-th/9410009 +nucl-th/9410019 +nucl-th/9410020 +nucl-th/9410031 +nucl-th/9410039 +nucl-th/9410043 +nucl-th/9410048 +nucl-th/9411010 +nucl-th/9411011 +nucl-th/9411014 +nucl-th/9412001 +nucl-th/9412014 +nucl-th/9412018 +nucl-th/9412022 +nucl-th/9412032 +nucl-th/9501026 +nucl-th/9503021 +nucl-th/9503023 +nucl-th/9503027 +nucl-th/9504003 +nucl-th/9504006 +nucl-th/9504007 +nucl-th/9504011 +nucl-th/9504012 +nucl-th/9504017 +nucl-th/9504032 +nucl-th/9504033 +nucl-th/9505001 +nucl-th/9505005 +nucl-th/9505010 +nucl-th/9505013 +nucl-th/9505019 +nucl-th/9505021 +nucl-th/9505022 +nucl-th/9505024 +nucl-th/9505027 +nucl-th/9505032 +nucl-th/9505035 +nucl-th/9505038 +nucl-th/9505040 +nucl-th/9505042 +nucl-th/9506001 +nucl-th/9506004 +nucl-th/9506005 +nucl-th/9506008 +nucl-th/9506010 +nucl-th/9506011 +nucl-th/9506017 +nucl-th/9506018 +nucl-th/9506023 +nucl-th/9506029 +nucl-th/9506030 +nucl-th/9506034 +nucl-th/9506036 +nucl-th/9507002 +nucl-th/9507006 +nucl-th/9507008 +nucl-th/9507013 +nucl-th/9507019 +nucl-th/9507024 +nucl-th/9507025 +nucl-th/9507027 +nucl-th/9507040 +nucl-th/9507044 +nucl-th/9508001 +nucl-th/9508013 +nucl-th/9508021 +nucl-th/9508023 +nucl-th/9508025 +nucl-th/9508035 +nucl-th/9508040 +nucl-th/9508045 +nucl-th/9508047 +nucl-th/9508048 +nucl-th/9509002 +nucl-th/9509005 +nucl-th/9509007 +nucl-th/9509013 +nucl-th/9509017 +nucl-th/9509025 +nucl-th/9509027 +nucl-th/9509029 +nucl-th/9509030 +nucl-th/9509031 +nucl-th/9509037 +nucl-th/9510001 +nucl-th/9510002 +nucl-th/9510006 +nucl-th/9510017 +nucl-th/9510023 +nucl-th/9510024 +nucl-th/9510025 +nucl-th/9510030 +nucl-th/9510038 +nucl-th/9510039 +nucl-th/9510040 +nucl-th/9510049 +nucl-th/9510054 +nucl-th/9510057 +nucl-th/9510063 +nucl-th/9510064 +nucl-th/9510065 +nucl-th/9511003 +nucl-th/9511006 +nucl-th/9511010 +nucl-th/9511013 +nucl-th/9511016 +nucl-th/9511026 +nucl-th/9511027 +nucl-th/9511039 +nucl-th/9511040 +nucl-th/9511041 +nucl-th/9512003 +nucl-th/9512008 +nucl-th/9512011 +nucl-th/9512012 +nucl-th/9512013 +nucl-th/9512014 +nucl-th/9512022 +nucl-th/9512023 +nucl-th/9512024 +nucl-th/9512026 +nucl-th/9512028 +nucl-th/9512036 +nucl-th/9512037 +nucl-th/9512039 +nucl-th/9512040 +nucl-th/9512042 +nucl-th/9512043 +nucl-th/9601003 +nucl-th/9601005 +nucl-th/9601008 +nucl-th/9601009 +nucl-th/9601019 +nucl-th/9601022 +nucl-th/9601024 +nucl-th/9601025 +nucl-th/9601030 +nucl-th/9601044 +nucl-th/9602002 +nucl-th/9602003 +nucl-th/9602007 +nucl-th/9602009 +nucl-th/9602018 +nucl-th/9602021 +nucl-th/9602023 +nucl-th/9602024 +nucl-th/9602028 +nucl-th/9602029 +nucl-th/9602031 +nucl-th/9602038 +nucl-th/9602041 +nucl-th/9602042 +nucl-th/9602044 +nucl-th/9603006 +nucl-th/9603007 +nucl-th/9603008 +nucl-th/9603012 +nucl-th/9603013 +nucl-th/9603018 +nucl-th/9603019 +nucl-th/9603022 +nucl-th/9603024 +nucl-th/9603028 +nucl-th/9603030 +nucl-th/9603035 +nucl-th/9603039 +nucl-th/9603044 +nucl-th/9604002 +nucl-th/9604005 +nucl-th/9604008 +nucl-th/9604009 +nucl-th/9604016 +nucl-th/9604018 +nucl-th/9604020 +nucl-th/9604022 +nucl-th/9604027 +nucl-th/9604029 +nucl-th/9604031 +nucl-th/9604035 +nucl-th/9604036 +nucl-th/9604038 +nucl-th/9604039 +nucl-th/9604044 +nucl-th/9604045 +nucl-th/9605001 +nucl-th/9605005 +nucl-th/9605008 +nucl-th/9605009 +nucl-th/9605011 +nucl-th/9605016 +nucl-th/9605017 +nucl-th/9605019 +nucl-th/9605020 +nucl-th/9605027 +nucl-th/9605028 +nucl-th/9605030 +nucl-th/9605034 +nucl-th/9605037 +nucl-th/9605041 +nucl-th/9605045 +nucl-th/9606002 +nucl-th/9606003 +nucl-th/9606009 +nucl-th/9606015 +nucl-th/9606019 +nucl-th/9606021 +nucl-th/9606028 +nucl-th/9606031 +nucl-th/9606033 +nucl-th/9606036 +nucl-th/9606040 +nucl-th/9606044 +nucl-th/9606048 +nucl-th/9606052 +nucl-th/9606058 +nucl-th/9607001 +nucl-th/9607002 +nucl-th/9607003 +nucl-th/9607022 +nucl-th/9607025 +nucl-th/9607026 +nucl-th/9607028 +nucl-th/9607029 +nucl-th/9607039 +nucl-th/9607043 +nucl-th/9607045 +nucl-th/9607049 +nucl-th/9607053 +nucl-th/9608003 +nucl-th/9608006 +nucl-th/9608007 +nucl-th/9608008 +nucl-th/9608010 +nucl-th/9608011 +nucl-th/9608012 +nucl-th/9608018 +nucl-th/9608019 +nucl-th/9608023 +nucl-th/9608026 +nucl-th/9608027 +nucl-th/9608032 +nucl-th/9608043 +nucl-th/9608044 +nucl-th/9608048 +nucl-th/9608049 +nucl-th/9608054 +nucl-th/9608055 +nucl-th/9608061 +nucl-th/9608063 +nucl-th/9609005 +nucl-th/9609011 +nucl-th/9609012 +nucl-th/9609020 +nucl-th/9609023 +nucl-th/9609024 +nucl-th/9609027 +nucl-th/9609031 +nucl-th/9609034 +nucl-th/9609035 +nucl-th/9609042 +nucl-th/9609043 +nucl-th/9609046 +nucl-th/9609049 +nucl-th/9609061 +nucl-th/9609066 +nucl-th/9610002 +nucl-th/9610007 +nucl-th/9610010 +nucl-th/9610011 +nucl-th/9610020 +nucl-th/9610027 +nucl-th/9610028 +nucl-th/9610032 +nucl-th/9610036 +nucl-th/9610043 +nucl-th/9610045 +nucl-th/9610049 +nucl-th/9610050 +nucl-th/9610051 +nucl-th/9611012 +nucl-th/9611014 +nucl-th/9611018 +nucl-th/9611020 +nucl-th/9611022 +nucl-th/9611025 +nucl-th/9611026 +nucl-th/9611027 +nucl-th/9611030 +nucl-th/9611031 +nucl-th/9611034 +nucl-th/9611038 +nucl-th/9611039 +nucl-th/9611041 +nucl-th/9611045 +nucl-th/9611047 +nucl-th/9611052 +nucl-th/9611053 +nucl-th/9612001 +nucl-th/9612006 +nucl-th/9612015 +nucl-th/9612021 +nucl-th/9612025 +nucl-th/9612027 +nucl-th/9612033 +nucl-th/9612034 +nucl-th/9612036 +nucl-th/9612044 +nucl-th/9612046 +nucl-th/9612050 +nucl-th/9612052 +nucl-th/9612055 +nucl-th/9701002 +nucl-th/9701003 +nucl-th/9701006 +nucl-th/9701019 +nucl-th/9701023 +nucl-th/9701027 +nucl-th/9701029 +nucl-th/9701032 +nucl-th/9701060 +nucl-th/9701065 +nucl-th/9702003 +nucl-th/9702008 +nucl-th/9702010 +nucl-th/9702018 +nucl-th/9702019 +nucl-th/9702020 +nucl-th/9702021 +nucl-th/9702025 +nucl-th/9702030 +nucl-th/9702036 +nucl-th/9702039 +nucl-th/9702041 +nucl-th/9702047 +nucl-th/9702050 +nucl-th/9702051 +nucl-th/9703003 +nucl-th/9703007 +nucl-th/9703009 +nucl-th/9703011 +nucl-th/9703012 +nucl-th/9703013 +nucl-th/9703021 +nucl-th/9703027 +nucl-th/9703033 +nucl-th/9703038 +nucl-th/9703043 +nucl-th/9703046 +nucl-th/9703050 +nucl-th/9703052 +nucl-th/9703057 +nucl-th/9703058 +nucl-th/9703059 +nucl-th/9704003 +nucl-th/9704004 +nucl-th/9704005 +nucl-th/9704007 +nucl-th/9704017 +nucl-th/9704019 +nucl-th/9704020 +nucl-th/9704022 +nucl-th/9704023 +nucl-th/9704029 +nucl-th/9704031 +nucl-th/9704032 +nucl-th/9704034 +nucl-th/9704036 +nucl-th/9704045 +nucl-th/9704050 +nucl-th/9704056 +nucl-th/9704057 +nucl-th/9704058 +nucl-th/9704064 +nucl-th/9705001 +nucl-th/9705006 +nucl-th/9705009 +nucl-th/9705014 +nucl-th/9705016 +nucl-th/9705020 +nucl-th/9705021 +nucl-th/9705024 +nucl-th/9705030 +nucl-th/9705031 +nucl-th/9705036 +nucl-th/9705039 +nucl-th/9705045 +nucl-th/9705046 +nucl-th/9705049 +nucl-th/9705053 +nucl-th/9705059 +nucl-th/9706002 +nucl-th/9706003 +nucl-th/9706007 +nucl-th/9706009 +nucl-th/9706013 +nucl-th/9706016 +nucl-th/9706018 +nucl-th/9706019 +nucl-th/9706021 +nucl-th/9706028 +nucl-th/9706030 +nucl-th/9706032 +nucl-th/9706033 +nucl-th/9706036 +nucl-th/9706043 +nucl-th/9706050 +nucl-th/9706051 +nucl-th/9706054 +nucl-th/9706060 +nucl-th/9706062 +nucl-th/9706064 +nucl-th/9706068 +nucl-th/9706078 +nucl-th/9706080 +nucl-th/9706084 +nucl-th/9706085 +nucl-th/9707006 +nucl-th/9707013 +nucl-th/9707015 +nucl-th/9707016 +nucl-th/9707017 +nucl-th/9707019 +nucl-th/9707020 +nucl-th/9707023 +nucl-th/9707043 +nucl-th/9707046 +nucl-th/9707052 +nucl-th/9707054 +nucl-th/9708005 +nucl-th/9708008 +nucl-th/9708010 +nucl-th/9708011 +nucl-th/9708018 +nucl-th/9708020 +nucl-th/9708022 +nucl-th/9708026 +nucl-th/9708029 +nucl-th/9708032 +nucl-th/9708035 +nucl-th/9708036 +nucl-th/9708037 +nucl-th/9708040 +nucl-th/9708041 +nucl-th/9708042 +nucl-th/9708043 +nucl-th/9708045 +nucl-th/9708047 +nucl-th/9708049 +nucl-th/9708051 +nucl-th/9708053 +nucl-th/9709007 +nucl-th/9709008 +nucl-th/9709012 +nucl-th/9709013 +nucl-th/9709028 +nucl-th/9709030 +nucl-th/9709033 +nucl-th/9709034 +nucl-th/9709035 +nucl-th/9709046 +nucl-th/9709058 +nucl-th/9709071 +nucl-th/9710001 +nucl-th/9710003 +nucl-th/9710005 +nucl-th/9710010 +nucl-th/9710011 +nucl-th/9710017 +nucl-th/9710021 +nucl-th/9710030 +nucl-th/9710032 +nucl-th/9710033 +nucl-th/9710037 +nucl-th/9710046 +nucl-th/9710048 +nucl-th/9710050 +nucl-th/9710051 +nucl-th/9710053 +nucl-th/9710055 +nucl-th/9710056 +nucl-th/9710067 +nucl-th/9710068 +nucl-th/9711003 +nucl-th/9711006 +nucl-th/9711014 +nucl-th/9711016 +nucl-th/9711018 +nucl-th/9711023 +nucl-th/9711027 +nucl-th/9711030 +nucl-th/9711034 +nucl-th/9711036 +nucl-th/9711037 +nucl-th/9711040 +nucl-th/9711043 +nucl-th/9711045 +nucl-th/9711046 +nucl-th/9711051 +nucl-th/9711052 +nucl-th/9711057 +nucl-th/9711062 +nucl-th/9711064 +nucl-th/9711066 +nucl-th/9712001 +nucl-th/9712006 +nucl-th/9712022 +nucl-th/9712023 +nucl-th/9712024 +nucl-th/9712025 +nucl-th/9712028 +nucl-th/9712031 +nucl-th/9712034 +nucl-th/9712037 +nucl-th/9712040 +nucl-th/9712041 +nucl-th/9712047 +nucl-th/9712054 +nucl-th/9712059 +nucl-th/9712062 +nucl-th/9712066 +nucl-th/9712068 +nucl-th/9712071 +nucl-th/9712081 +nucl-th/9801005 +nucl-th/9801012 +nucl-th/9801013 +nucl-th/9801022 +nucl-th/9801027 +nucl-th/9801028 +nucl-th/9801029 +nucl-th/9801033 +nucl-th/9801036 +nucl-th/9801037 +nucl-th/9801041 +nucl-th/9801049 +nucl-th/9801051 +nucl-th/9801052 +nucl-th/9801055 +nucl-th/9801059 +nucl-th/9802006 +nucl-th/9802008 +nucl-th/9802013 +nucl-th/9802014 +nucl-th/9802020 +nucl-th/9802023 +nucl-th/9802034 +nucl-th/9802036 +nucl-th/9802039 +nucl-th/9802049 +nucl-th/9802051 +nucl-th/9802052 +nucl-th/9802054 +nucl-th/9802067 +nucl-th/9802078 +nucl-th/9802083 +nucl-th/9802085 +nucl-th/9803008 +nucl-th/9803013 +nucl-th/9803014 +nucl-th/9803016 +nucl-th/9803017 +nucl-th/9803025 +nucl-th/9803026 +nucl-th/9803027 +nucl-th/9803030 +nucl-th/9803031 +nucl-th/9803038 +nucl-th/9803042 +nucl-th/9803047 +nucl-th/9803053 +nucl-th/9804004 +nucl-th/9804013 +nucl-th/9804014 +nucl-th/9804016 +nucl-th/9804017 +nucl-th/9804020 +nucl-th/9804023 +nucl-th/9804027 +nucl-th/9804030 +nucl-th/9804031 +nucl-th/9804042 +nucl-th/9804046 +nucl-th/9804055 +nucl-th/9804056 +nucl-th/9804057 +nucl-th/9804058 +nucl-th/9804060 +nucl-th/9804062 +nucl-th/9804066 +nucl-th/9804067 +nucl-th/9804075 +nucl-th/9804077 +nucl-th/9804078 +nucl-th/9805002 +nucl-th/9805005 +nucl-th/9805007 +nucl-th/9805008 +nucl-th/9805009 +nucl-th/9805010 +nucl-th/9805011 +nucl-th/9805017 +nucl-th/9805022 +nucl-th/9805024 +nucl-th/9805026 +nucl-th/9805028 +nucl-th/9805034 +nucl-th/9805040 +nucl-th/9805042 +nucl-th/9805043 +nucl-th/9805045 +nucl-th/9805046 +nucl-th/9805047 +nucl-th/9805050 +nucl-th/9805051 +nucl-th/9805054 +nucl-th/9805055 +nucl-th/9805056 +nucl-th/9806003 +nucl-th/9806014 +nucl-th/9806018 +nucl-th/9806019 +nucl-th/9806027 +nucl-th/9806031 +nucl-th/9806034 +nucl-th/9806040 +nucl-th/9806047 +nucl-th/9806061 +nucl-th/9806067 +nucl-th/9806071 +nucl-th/9806081 +nucl-th/9806082 +nucl-th/9806084 +nucl-th/9806085 +nucl-th/9806092 +nucl-th/9806097 +nucl-th/9806100 +nucl-th/9806103 +nucl-th/9807003 +nucl-th/9807004 +nucl-th/9807005 +nucl-th/9807007 +nucl-th/9807009 +nucl-th/9807013 +nucl-th/9807015 +nucl-th/9807021 +nucl-th/9807033 +nucl-th/9807034 +nucl-th/9807037 +nucl-th/9807047 +nucl-th/9807061 +nucl-th/9807065 +nucl-th/9807078 +nucl-th/9807079 +nucl-th/9807080 +nucl-th/9807082 +nucl-th/9807088 +nucl-th/9808002 +nucl-th/9808005 +nucl-th/9808007 +nucl-th/9808010 +nucl-th/9808014 +nucl-th/9808024 +nucl-th/9808026 +nucl-th/9808037 +nucl-th/9808038 +nucl-th/9808052 +nucl-th/9808056 +nucl-th/9808059 +nucl-th/9808074 +nucl-th/9809006 +nucl-th/9809015 +nucl-th/9809020 +nucl-th/9809023 +nucl-th/9809031 +nucl-th/9809032 +nucl-th/9809033 +nucl-th/9809037 +nucl-th/9809042 +nucl-th/9809055 +nucl-th/9809065 +nucl-th/9809080 +nucl-th/9809084 +nucl-th/9810031 +nucl-th/9810042 +nucl-th/9810048 +nucl-th/9810056 +nucl-th/9810071 +nucl-th/9811026 +nucl-th/9811075 +nucl-th/9811078 +nucl-th/9811082 +nucl-th/9811097 +nucl-th/9812015 +nucl-th/9812016 +nucl-th/9812022 +nucl-th/9812025 +nucl-th/9812053 +nucl-th/9812068 +nucl-th/9901014 +nucl-th/9901035 +nucl-th/9901049 +nucl-th/9901068 +nucl-th/9901074 +nucl-th/9902013 +nucl-th/9902015 +nucl-th/9902018 +nucl-th/9902028 +nucl-th/9902034 +nucl-th/9902048 +nucl-th/9902054 +nucl-th/9902056 +nucl-th/9902058 +nucl-th/9902062 +nucl-th/9903001 +nucl-th/9903022 +nucl-th/9903032 +nucl-th/9903045 +nucl-th/9904008 +nucl-th/9904030 +nucl-th/9905012 +nucl-th/9905015 +nucl-th/9905022 +nucl-th/9905030 +nucl-th/9905034 +nucl-th/9905035 +nucl-th/9905047 +nucl-th/9906008 +nucl-th/9906067 +nucl-th/9906084 +nucl-th/9906088 +nucl-th/9906096 +nucl-th/9907010 +nucl-th/9907024 +nucl-th/9907026 +nucl-th/9907030 +nucl-th/9907054 +nucl-th/9907079 +nucl-th/9907119 +nucl-th/9908014 +nucl-th/9908022 +nucl-th/9908023 +nucl-th/9908087 +nucl-th/9909001 +nucl-th/9909051 +nucl-th/9909058 +nucl-th/9909066 +nucl-th/9909081 +nucl-th/9910011 +nucl-th/9910012 +nucl-th/9910066 +nucl-th/9910076 +nucl-th/9911008 +nucl-th/9911020 +nucl-th/9911024 +nucl-th/9911028 +nucl-th/9911038 +nucl-th/9912009 +nucl-th/9912029 +nucl-th/9912031 +nucl-th/9912046 +nucl-th/9912063 +nucl-th/9912074 +physics/0001009 Atomic Physics +physics/0003060 Accelerator Physics +physics/0006039 Classical Physics +physics/0006056 Fluid Dynamics +physics/0007013 Accelerator Physics +physics/0007014 Accelerator Physics +physics/0008014 Accelerator Physics +physics/0008031 Accelerator Physics +physics/0008036 Accelerator Physics +physics/0008041 Accelerator Physics +physics/0008056 Accelerator Physics +physics/0008064 Accelerator Physics +physics/0008067 Accelerator Physics +physics/0008068 Accelerator Physics +physics/0008072 Accelerator Physics +physics/0008101 Accelerator Physics +physics/0008108 Accelerator Physics +physics/0008146 Accelerator Physics +physics/0008152 Accelerator Physics +physics/0008157 Accelerator Physics +physics/0008191 Accelerator Physics +physics/0008193 Accelerator Physics +physics/0009005 Accelerator Physics +physics/0009012 Space Physics +physics/0010001 Accelerator Physics +physics/0010028 Atomic Physics +physics/0011031 Fluid Dynamics +physics/0012056 Accelerator Physics +physics/0103068 Atomic Physics +physics/0104010 Atomic Physics +physics/0104086 Accelerator Physics +physics/0105022 Physics Education +physics/0105049 General Physics +physics/0105070 Optics +physics/0106003 Accelerator Physics +physics/0106007 Accelerator Physics +physics/0106010 Accelerator Physics +physics/0106058 Accelerator Physics +physics/0106060 Accelerator Physics +physics/0106061 Accelerator Physics +physics/0106067 Accelerator Physics +physics/0106099 Accelerator Physics +physics/0107048 Accelerator Physics +physics/0107049 Accelerator Physics +physics/0107065 Accelerator Physics +physics/0108001 Accelerator Physics +physics/0108027 Accelerator Physics +physics/0108042 Accelerator Physics +physics/0108063 Accelerator Physics +physics/0109002 Accelerator Physics +physics/0109042 Accelerator Physics +physics/0109061 Accelerator Physics +physics/0110089 Accelerator Physics +physics/0112005 Classical Physics +physics/0112034 Physics Education +physics/0202062 Computational Physics +physics/0202063 Accelerator Physics +physics/0204034 Classical Physics +physics/0207033 Instrumentation and Detectors +physics/0208014 Optics +physics/0208028 Accelerator Physics +physics/0208081 Accelerator Physics +physics/0209068 Accelerator Physics +physics/0210058 History and Philosophy of Physics +physics/0211017 Accelerator Physics +physics/0301026 Optics +physics/0302045 Classical Physics +physics/0305070 Instrumentation and Detectors +physics/0305086 Accelerator Physics +physics/0305088 Accelerator Physics +physics/0305106 Accelerator Physics +physics/0305115 Accelerator Physics +physics/0305117 Classical Physics +physics/0306005 Accelerator Physics +physics/0306009 General Physics +physics/0306028 General Physics +physics/0306033 Computational Physics +physics/0306036 Data Analysis, Statistics and Probability +physics/0306037 Data Analysis, Statistics and Probability +physics/0306048 Accelerator Physics +physics/0306107 Computational Physics +physics/0306112 Computational Physics +physics/0306122 Computational Physics +physics/0306126 Accelerator Physics +physics/0306142 Classical Physics +physics/0307034 Accelerator Physics +physics/0307047 General Physics +physics/0307067 General Physics +physics/0307125 General Physics +physics/0307127 Physics and Society +physics/0308044 Accelerator Physics +physics/0310028 Accelerator Physics +physics/0310142 Chemical Physics +physics/0310155 Instrumentation and Detectors +physics/0311008 Instrumentation and Detectors +physics/0401106 Instrumentation and Detectors +physics/0401138 Optics +physics/0402083 Data Analysis, Statistics and Probability +physics/0404008 Atomic Physics +physics/0404100 Instrumentation and Detectors +physics/0404127 Plasma Physics +physics/0405109 Accelerator Physics +physics/0406139 Classical Physics +physics/0407009 Instrumentation and Detectors +physics/0407140 Atomic Physics +physics/0408075 Instrumentation and Detectors +physics/0408109 Medical Physics +physics/0409048 Instrumentation and Detectors +physics/0409137 Instrumentation and Detectors +physics/0409155 Classical Physics +physics/0410037 Physics Education +physics/0411063 Accelerator Physics +physics/0411071 Chemical Physics +physics/0411072 Chemical Physics +physics/0411073 Chemical Physics +physics/0411074 Chemical Physics +physics/0411135 Instrumentation and Detectors +physics/0411214 Instrumentation and Detectors +physics/0411218 Accelerator Physics +physics/0412006 Accelerator Physics +physics/0412102 Data Analysis, Statistics and Probability +physics/0412147 Plasma Physics +physics/0501044 General Physics +physics/0501071 Accelerator Physics +physics/0501132 General Physics +physics/0502008 Instrumentation and Detectors +physics/0502065 Instrumentation and Detectors +physics/0502092 Chemical Physics +physics/0502139 Accelerator Physics +physics/0503084 History and Philosophy of Physics +physics/0504085 Instrumentation and Detectors +physics/0504145 Accelerator Physics +physics/0505127 Instrumentation and Detectors +physics/0505151 Instrumentation and Detectors +physics/0505171 Instrumentation and Detectors +physics/0506032 Classical Physics +physics/0506078 Classical Physics +physics/0506084 Computational Physics +physics/0506193 Instrumentation and Detectors +physics/0506194 Instrumentation and Detectors +physics/0506197 Instrumentation and Detectors +physics/0506198 Instrumentation and Detectors +physics/0507028 Instrumentation and Detectors +physics/0507063 Accelerator Physics +physics/0507080 Instrumentation and Detectors +physics/0507095 Accelerator Physics +physics/0507206 Plasma Physics +physics/0508054 Accelerator Physics +physics/0508074 Instrumentation and Detectors +physics/0508126 Instrumentation and Detectors +physics/0508137 Instrumentation and Detectors +physics/0509023 Instrumentation and Detectors +physics/0509077 Instrumentation and Detectors +physics/0509144 Chemical Physics +physics/0509214 Instrumentation and Detectors +physics/0509222 Instrumentation and Detectors +physics/0510023 Plasma Physics +physics/0511037 Instrumentation and Detectors +physics/0511053 Instrumentation and Detectors +physics/0511116 General Physics +physics/0511158 Instrumentation and Detectors +physics/0511165 Accelerator Physics +physics/0511185 Physics Education +physics/0511229 Instrumentation and Detectors +physics/0512031 General Physics +physics/0512057 Instrumentation and Detectors +physics/0512094 Instrumentation and Detectors +physics/0512115 Accelerator Physics +physics/0512153 Instrumentation and Detectors +physics/0512171 Instrumentation and Detectors +physics/0512200 Classical Physics +physics/0512254 History and Philosophy of Physics +physics/0601012 Optics +physics/0601103 Accelerator Physics +physics/0601115 Instrumentation and Detectors +physics/0601119 Instrumentation and Detectors +physics/0601204 Instrumentation and Detectors +physics/0602049 Geophysics +physics/0602081 General Physics +physics/0602114 Instrumentation and Detectors +physics/0602146 History and Philosophy of Physics +physics/0602172 Accelerator Physics +physics/0602180 Instrumentation and Detectors +physics/0602188 Instrumentation and Detectors +physics/0603022 Instrumentation and Detectors +physics/0603176 Atomic Physics +physics/0603188 Accelerator Physics +physics/0603192 Instrumentation and Detectors +physics/0603250 Plasma Physics +physics/0604011 Instrumentation and Detectors +physics/0604028 Accelerator Physics +physics/0604030 Instrumentation and Detectors +physics/0604043 Instrumentation and Detectors +physics/0604107 Instrumentation and Detectors +physics/0604108 Accelerator Physics +physics/0604114 Instrumentation and Detectors +physics/0604171 History and Philosophy of Physics +physics/0604200 Instrumentation and Detectors +physics/0605015 Instrumentation and Detectors +physics/0605076 General Physics +physics/0605084 Accelerator Physics +physics/0605085 Physics Education +physics/0605088 Instrumentation and Detectors +physics/0605097 Physics and Society +physics/0605121 Instrumentation and Detectors +physics/0605127 Instrumentation and Detectors +physics/0605158 Instrumentation and Detectors +physics/0605164 Instrumentation and Detectors +physics/0605208 Instrumentation and Detectors +physics/0605233 Instrumentation and Detectors +physics/0606034 Accelerator Physics +physics/0606037 Instrumentation and Detectors +physics/0606061 Accelerator Physics +physics/0606092 Plasma Physics +physics/0606098 Plasma Physics +physics/0606122 Fluid Dynamics +physics/0606162 Instrumentation and Detectors +physics/0606178 Optics +physics/0606197 Classical Physics +physics/0606198 Instrumentation and Detectors +physics/0606210 Medical Physics +physics/0606247 Instrumentation and Detectors +physics/0607005 General Physics +physics/0607009 Accelerator Physics +physics/0607038 Computational Physics +physics/0607126 Data Analysis, Statistics and Probability +physics/0607275 Accelerator Physics +physics/0607278 Accelerator Physics +physics/0608012 Instrumentation and Detectors +physics/0608034 Instrumentation and Detectors +physics/0608053 General Physics +physics/0608089 General Physics +physics/0608095 Classical Physics +physics/0608114 Classical Physics +physics/0608152 Popular Physics +physics/0608193 General Physics +physics/0608308 Data Analysis, Statistics and Probability +physics/0609014 Atomic Physics +physics/0609017 Instrumentation and Detectors +physics/0609022 Atomic Physics +physics/0609039 Instrumentation and Detectors +physics/0609089 Plasma Physics +physics/0609106 Accelerator Physics +physics/0609129 Accelerator Physics +physics/0609137 History and Philosophy of Physics +physics/0609176 Computational Physics +physics/0609187 Instrumentation and Detectors +physics/0609195 Accelerator Physics +physics/0609205 Instrumentation and Detectors +physics/0609206 Computational Physics +physics/0609249 Atomic Physics +physics/0609254 General Physics +physics/0610009 Medical Physics +physics/0610028 Physics Education +physics/0610042 General Physics +physics/0610052 General Physics +physics/0610054 History and Philosophy of Physics +physics/0610066 Instrumentation and Detectors +physics/0610080 Instrumentation and Detectors +physics/0610090 Accelerator Physics +physics/0610111 Computational Physics +physics/0610112 Instrumentation and Detectors +physics/0610116 Space Physics +physics/0610153 Instrumentation and Detectors +physics/0610168 History and Philosophy of Physics +physics/0610206 Computational Physics +physics/0610227 Instrumentation and Detectors +physics/0610232 Instrumentation and Detectors +physics/0610259 Instrumentation and Detectors +physics/0610284 Plasma Physics +physics/0611012 Accelerator Physics +physics/0611033 Classical Physics +physics/0611036 Atomic Physics +physics/0611068 Instrumentation and Detectors +physics/0611081 Instrumentation and Detectors +physics/0611084 Instrumentation and Detectors +physics/0611129 Instrumentation and Detectors +physics/0611142 Instrumentation and Detectors +physics/0611157 Accelerator Physics +physics/0611183 Instrumentation and Detectors +physics/0611185 Instrumentation and Detectors +physics/0611192 General Physics +physics/0611194 Instrumentation and Detectors +physics/0611224 Accelerator Physics +physics/0611229 Instrumentation and Detectors +physics/0611238 Accelerator Physics +physics/0611241 Atomic Physics +physics/0611249 Accelerator Physics +physics/0611267 Data Analysis, Statistics and Probability +physics/0611273 Instrumentation and Detectors +physics/0611278 Instrumentation and Detectors +physics/0611290 Medical Physics +physics/0612007 General Physics +physics/0612018 Instrumentation and Detectors +physics/0612021 Atomic Physics +physics/0612036 Data Analysis, Statistics and Probability +physics/0612044 Medical Physics +physics/0612050 Atomic Physics +physics/0612062 Plasma Physics +physics/0612074 Classical Physics +physics/0612077 Accelerator Physics +physics/0612083 Instrumentation and Detectors +physics/0612152 Instrumentation and Detectors +physics/0612171 Popular Physics +physics/0612194 Accelerator Physics +physics/0612227 Plasma Physics +physics/0612234 Physics and Society +physics/0612240 Accelerator Physics +physics/0612241 Accelerator Physics +physics/0612243 Plasma Physics +physics/0612244 Atomic Physics +physics/0701001 Instrumentation and Detectors +physics/0701070 General Physics +physics/0701085 Instrumentation and Detectors +physics/0701088 Instrumentation and Detectors +physics/0701104 General Physics +physics/0701108 Instrumentation and Detectors +physics/0701122 Instrumentation and Detectors +physics/0701133 Instrumentation and Detectors +physics/0701153 Instrumentation and Detectors +physics/0701154 Plasma Physics +physics/0701186 Plasma Physics +physics/0701188 Medical Physics +physics/0701206 Atomic Physics +physics/0701207 Atomic Physics +physics/0701208 Atomic Physics +physics/0701212 Classical Physics +physics/0701213 Optics +physics/0701270 Instrumentation and Detectors +physics/0701273 Instrumentation and Detectors +physics/0701275 Instrumentation and Detectors +physics/0701281 Instrumentation and Detectors +physics/0701342 Accelerator Physics +physics/0702069 Physics and Society +physics/0702070 Instrumentation and Detectors +physics/0702078 Instrumentation and Detectors +physics/0702085 Instrumentation and Detectors +physics/0702087 General Physics +physics/0702092 Instrumentation and Detectors +physics/0702103 Instrumentation and Detectors +physics/0702162 Instrumentation and Detectors +physics/0702181 Instrumentation and Detectors +physics/0702182 Instrumentation and Detectors +physics/0702190 Instrumentation and Detectors +physics/0702193 Instrumentation and Detectors +physics/0702237 Instrumentation and Detectors +physics/0702246 Instrumentation and Detectors +physics/0703044 Instrumentation and Detectors +physics/0703049 Optics +physics/0703064 Physics Education +physics/0703068 Instrumentation and Detectors +physics/0703116 Classical Physics +physics/0703117 Classical Physics +physics/0703158 Instrumentation and Detectors +physics/0703163 Atomic Physics +physics/0703170 Instrumentation and Detectors +physics/0703171 Accelerator Physics +physics/0703176 Instrumentation and Detectors +physics/0703191 General Physics +physics/0703199 Instrumentation and Detectors +physics/0703243 Instrumentation and Detectors +physics/0703244 General Physics +physics/0703247 Instrumentation and Detectors +physics/0703253 Instrumentation and Detectors +physics/0703275 Atomic Physics +physics/0703276 Atomic Physics +physics/9610009 Accelerator Physics +physics/9612016 Accelerator Physics +physics/9702032 +physics/9704002 Popular Physics +physics/9705028 Accelerator Physics +physics/9705039 Atomic Physics +physics/9707005 +physics/9708004 +physics/9709001 Instrumentation and Detectors +physics/9709013 Accelerator Physics +physics/9709014 Accelerator Physics +physics/9709033 +physics/9709046 +physics/9710040 +physics/9711015 Accelerator Physics +physics/9711021 Data Analysis, Statistics and Probability +physics/9801008 +physics/9801023 +physics/9802041 +physics/9803029 +physics/9803045 +physics/9807039 Instrumentation and Detectors +physics/9807050 Plasma Physics +physics/9808033 History and Philosophy of Physics +physics/9905002 Instrumentation and Detectors +physics/9907017 Physics Education +physics/9910011 Instrumentation and Detectors +q-alg/9507007 Quantum Algebra +q-alg/9507021 Quantum Algebra +q-alg/9507027 Quantum Algebra +q-alg/9509004 Quantum Algebra +q-alg/9509016 Quantum Algebra +q-alg/9510011 Quantum Algebra +q-alg/9511006 Quantum Algebra +q-alg/9601001 Quantum Algebra +q-alg/9602023 Quantum Algebra +q-alg/9602032 Quantum Algebra +q-alg/9603004 Quantum Algebra +q-alg/9603006 Quantum Algebra +q-alg/9607023 Quantum Algebra +q-alg/9609009 Quantum Algebra +q-alg/9611008 Quantum Algebra +q-alg/9612021 Quantum Algebra +q-alg/9612022 Quantum Algebra +q-alg/9704006 Quantum Algebra +q-alg/9705013 Quantum Algebra +q-alg/9707029 Quantum Algebra +q-alg/9709039 Quantum Algebra +q-alg/9710019 Quantum Algebra +q-bio/0602019 Biomolecules +quant-ph/0001049 +quant-ph/0001063 +quant-ph/0002003 +quant-ph/0002056 +quant-ph/0003091 +quant-ph/0003130 +quant-ph/0004065 +quant-ph/0005071 +quant-ph/0007027 +quant-ph/0007103 +quant-ph/0008077 +quant-ph/0009072 +quant-ph/0012076 +quant-ph/0012151 +quant-ph/0101010 +quant-ph/0101024 +quant-ph/0101076 +quant-ph/0104077 +quant-ph/0106045 +quant-ph/0106106 +quant-ph/0106110 +quant-ph/0106134 +quant-ph/0106163 +quant-ph/0109093 +quant-ph/0109111 +quant-ph/0110165 +quant-ph/0112016 +quant-ph/0112052 +quant-ph/0112076 +quant-ph/0112105 +quant-ph/0201131 +quant-ph/0202047 +quant-ph/0202062 +quant-ph/0202081 +quant-ph/0203002 +quant-ph/0203135 +quant-ph/0205007 +quant-ph/0205027 +quant-ph/0205104 +quant-ph/0207017 +quant-ph/0207038 +quant-ph/0207151 +quant-ph/0208072 +quant-ph/0208151 +quant-ph/0209097 +quant-ph/0211047 +quant-ph/0211074 +quant-ph/0211097 +quant-ph/0301017 +quant-ph/0302115 +quant-ph/0302117 +quant-ph/0302199 +quant-ph/0303051 +quant-ph/0303073 +quant-ph/0303123 +quant-ph/0304080 +quant-ph/0304135 +quant-ph/0305093 +quant-ph/0306059 +quant-ph/0306080 +quant-ph/0306115 +quant-ph/0307108 +quant-ph/0307201 +quant-ph/0308084 +quant-ph/0309089 +quant-ph/0309189 +quant-ph/0310005 +quant-ph/0310149 +quant-ph/0310162 +quant-ph/0310194 +quant-ph/0311049 +quant-ph/0312025 +quant-ph/0312048 +quant-ph/0312059 +quant-ph/0312070 +quant-ph/0312072 +quant-ph/0312144 +quant-ph/0402092 +quant-ph/0402101 +quant-ph/0402140 +quant-ph/0402166 +quant-ph/0404008 +quant-ph/0404103 +quant-ph/0404177 +quant-ph/0405152 +quant-ph/0407084 +quant-ph/0407160 +quant-ph/0407162 +quant-ph/0407195 +quant-ph/0408056 +quant-ph/0408064 +quant-ph/0410203 +quant-ph/0411144 +quant-ph/0411170 +quant-ph/0412149 +quant-ph/0412204 +quant-ph/0501048 +quant-ph/0501052 +quant-ph/0501083 +quant-ph/0502109 +quant-ph/0503235 +quant-ph/0506131 +quant-ph/0507015 +quant-ph/0507166 +quant-ph/0507175 +quant-ph/0508219 +quant-ph/0508234 +quant-ph/0509034 +quant-ph/0509071 +quant-ph/0509117 +quant-ph/0510156 +quant-ph/0510234 +quant-ph/0511067 +quant-ph/0511135 +quant-ph/0511192 +quant-ph/0511214 +quant-ph/0511248 +quant-ph/0512035 +quant-ph/0512076 +quant-ph/0512140 +quant-ph/0512191 +quant-ph/0601002 +quant-ph/0601112 +quant-ph/0601123 +quant-ph/0601188 +quant-ph/0602024 +quant-ph/0602151 +quant-ph/0602161 +quant-ph/0602194 +quant-ph/0603005 +quant-ph/0603027 +quant-ph/0603122 +quant-ph/0603170 +quant-ph/0604007 +quant-ph/0604127 +quant-ph/0604162 +quant-ph/0605068 +quant-ph/0605069 +quant-ph/0605072 +quant-ph/0605094 +quant-ph/0605112 +quant-ph/0605120 +quant-ph/0605121 +quant-ph/0605135 +quant-ph/0605141 +quant-ph/0606005 +quant-ph/0606012 +quant-ph/0606043 +quant-ph/0606070 +quant-ph/0606091 +quant-ph/0606100 +quant-ph/0606235 +quant-ph/0607081 +quant-ph/0607124 +quant-ph/0607165 +quant-ph/0607168 +quant-ph/0607191 +quant-ph/0607203 +quant-ph/0607207 +quant-ph/0607222 +quant-ph/0608036 +quant-ph/0608083 +quant-ph/0608093 +quant-ph/0608117 +quant-ph/0608180 +quant-ph/0608186 +quant-ph/0608209 +quant-ph/0608221 +quant-ph/0608243 +quant-ph/0609032 +quant-ph/0609058 +quant-ph/0609070 +quant-ph/0609163 +quant-ph/0609190 +quant-ph/0609227 +quant-ph/0610009 +quant-ph/0610024 +quant-ph/0610089 +quant-ph/0610131 +quant-ph/0610170 +quant-ph/0610204 +quant-ph/0610255 +quant-ph/0611030 +quant-ph/0611068 +quant-ph/0611076 +quant-ph/0611082 +quant-ph/0611116 +quant-ph/0611119 +quant-ph/0611155 +quant-ph/0611194 +quant-ph/0611243 +quant-ph/0611271 +quant-ph/0612023 +quant-ph/0612030 +quant-ph/0612032 +quant-ph/0612091 +quant-ph/0612093 +quant-ph/0612122 +quant-ph/0612131 +quant-ph/0612137 +quant-ph/0612139 +quant-ph/0701006 +quant-ph/0701014 +quant-ph/0701022 +quant-ph/0701047 +quant-ph/0701074 +quant-ph/0701076 +quant-ph/0701106 +quant-ph/0701116 +quant-ph/0701177 +quant-ph/0701186 +quant-ph/0701206 +quant-ph/0701208 +quant-ph/0701233 +quant-ph/0701244 +quant-ph/0702009 +quant-ph/0702028 +quant-ph/0702060 +quant-ph/0702111 +quant-ph/0702119 +quant-ph/0702141 +quant-ph/0702143 +quant-ph/0702256 +quant-ph/0702267 +quant-ph/0703013 +quant-ph/0703016 +quant-ph/0703044 +quant-ph/0703060 +quant-ph/0703062 +quant-ph/0703064 +quant-ph/0703066 +quant-ph/0703088 +quant-ph/0703139 +quant-ph/0703196 +quant-ph/0703214 +quant-ph/0703254 +quant-ph/0703262 +quant-ph/0703276 +quant-ph/9412001 +quant-ph/9504008 +quant-ph/9504010 +quant-ph/9505024 +quant-ph/9506013 +quant-ph/9506018 +quant-ph/9506023 +quant-ph/9506024 +quant-ph/9507010 +quant-ph/9509014 +quant-ph/9509015 +quant-ph/9509017 +quant-ph/9510022 +quant-ph/9510027 +quant-ph/9510030 +quant-ph/9511017 +quant-ph/9511022 +quant-ph/9511027 +quant-ph/9511030 +quant-ph/9512002 +quant-ph/9512012 +quant-ph/9512020 +quant-ph/9512030 +quant-ph/9601022 +quant-ph/9602002 +quant-ph/9603019 +quant-ph/9604017 +quant-ph/9605041 +quant-ph/9605042 +quant-ph/9606009 +quant-ph/9606023 +quant-ph/9607012 +quant-ph/9607016 +quant-ph/9607022 +quant-ph/9608013 +quant-ph/9608031 +quant-ph/9608033 +quant-ph/9608036 +quant-ph/9609008 +quant-ph/9609019 +quant-ph/9610013 +quant-ph/9610021 +quant-ph/9610024 +quant-ph/9611003 +quant-ph/9611020 +quant-ph/9611040 +quant-ph/9612014 +quant-ph/9701002 +quant-ph/9701015 +quant-ph/9701026 +quant-ph/9701031 +quant-ph/9701033 +quant-ph/9702004 +quant-ph/9702007 +quant-ph/9702040 +quant-ph/9702043 +quant-ph/9702052 +quant-ph/9704040 +quant-ph/9704041 +quant-ph/9705007 +quant-ph/9705039 +quant-ph/9707004 +quant-ph/9707036 +quant-ph/9707059 +quant-ph/9708011 +quant-ph/9708013 +quant-ph/9708036 +quant-ph/9709002 +quant-ph/9709015 +quant-ph/9709034 +quant-ph/9710024 +quant-ph/9711002 +quant-ph/9711008 +quant-ph/9711066 +quant-ph/9712039 +quant-ph/9712052 +quant-ph/9801019 +quant-ph/9801029 +quant-ph/9801076 +quant-ph/9802017 +quant-ph/9802048 +quant-ph/9803010 +quant-ph/9803032 +quant-ph/9803039 +quant-ph/9803047 +quant-ph/9803083 +quant-ph/9803084 +quant-ph/9804062 +quant-ph/9805025 +quant-ph/9805026 +quant-ph/9805031 +quant-ph/9805081 +quant-ph/9806005 +quant-ph/9806014 +quant-ph/9806016 +quant-ph/9806020 +quant-ph/9806042 +quant-ph/9806046 +quant-ph/9806096 +quant-ph/9807002 +quant-ph/9807003 +quant-ph/9808018 +quant-ph/9808044 +quant-ph/9808050 +quant-ph/9809014 +quant-ph/9809018 +quant-ph/9809020 +quant-ph/9809026 +quant-ph/9809044 +quant-ph/9809074 +quant-ph/9809075 +quant-ph/9810011 +quant-ph/9810024 +quant-ph/9810026 +quant-ph/9810033 +quant-ph/9810064 +quant-ph/9811008 +quant-ph/9811061 +quant-ph/9811081 +quant-ph/9901052 +quant-ph/9902039 +quant-ph/9902054 +quant-ph/9902086 +quant-ph/9903013 +quant-ph/9903020 +quant-ph/9903027 +quant-ph/9903058 +quant-ph/9903072 +quant-ph/9903073 +quant-ph/9903087 +quant-ph/9903097 +quant-ph/9903098 +quant-ph/9904027 +quant-ph/9904052 +quant-ph/9904090 +quant-ph/9904091 +quant-ph/9904098 +quant-ph/9904102 +quant-ph/9905002 +quant-ph/9905033 +quant-ph/9905073 +quant-ph/9906029 +quant-ph/9906033 +quant-ph/9906040 +quant-ph/9906057 +quant-ph/9906071 +quant-ph/9906083 +quant-ph/9906107 +quant-ph/9909093 +quant-ph/9910014 +quant-ph/9910051 +quant-ph/9910104 +quant-ph/9911114 +quant-ph/9912042 +quant-ph/9912094 +solv-int/9510001 Exactly Solvable and Integrable Systems +solv-int/9604005 Exactly Solvable and Integrable Systems +solv-int/9701005 Exactly Solvable and Integrable Systems +solv-int/9703011 Exactly Solvable and Integrable Systems +solv-int/9712009 Exactly Solvable and Integrable Systems +solv-int/9802015 Exactly Solvable and Integrable Systems +solv-int/9803015 Exactly Solvable and Integrable Systems +solv-int/9810006 Exactly Solvable and Integrable Systems +solv-int/9902017 Exactly Solvable and Integrable Systems +solv-int/9903003 Exactly Solvable and Integrable Systems +solv-int/9904012 Exactly Solvable and Integrable Systems +solv-int/9908002 Exactly Solvable and Integrable Systems +solv-int/9909016 Exactly Solvable and Integrable Systems +0707.2195 +0708.2345 Statistical Mechanics +0710.2463 Soft Condensed Matter +0801.3628 Soft Condensed Matter +0803.0917 Algebraic Geometry +cs/0610147 Networking and Internet Architecture +0709.1837 Differential Geometry +0802.1422 Soft Condensed Matter +cond-mat/0605068 Mesoscale and Nanoscale Physics +math/0702734 Complex Variables +0707.3207 K-Theory and Homology +0707.3536 Machine Learning +0709.4102 General Mathematics +0710.1367 General Physics +0711.1699 +0712.1224 Cryptography and Security +0801.0099 General Physics +0801.0429 Plasma Physics +0802.3432 Classical Analysis and ODEs +0803.3079 Combinatorics +0806.0251 General Mathematics +0806.2321 Strongly Correlated Electrons +0806.2433 Analysis of PDEs +0806.4374 Phenomenology +math-ph/0702003 +math/0612744 Metric Geometry +math/0701917 Probability +quant-ph/0601001 +0705.2807 Combinatorics +0706.2291 Analysis of PDEs +0707.0822 Group Theory +0801.3946 Number Theory +0801.4322 +0803.3249 Statistical Mechanics +0804.0208 +0807.3691 +0808.0818 Strongly Correlated Electrons +0810.0230 Functional Analysis +0810.0768 General Mathematics +0810.3345 Cryptography and Security +0810.3358 Experiment +math/0701235 General Mathematics +0710.1932 Superconductivity +0712.3598 Differential Geometry +0712.3600 Differential Geometry +0712.3601 Differential Geometry +0712.3962 Quantum Algebra +0712.4020 Materials Science +0801.0071 +0801.0114 Number Theory +0801.0337 Other Computer Science +astro-ph/0703779 +math/0702306 Probability +0704.3899 Symplectic Geometry +0705.1889 Other Condensed Matter +0706.1503 Probability +0706.2726 Strongly Correlated Electrons +0707.3085 Statistical Mechanics +0707.3701 Mesoscale and Nanoscale Physics +0708.4164 Information Theory +0709.2587 Metric Geometry +0709.3518 Strongly Correlated Electrons +0710.0330 Algebraic Geometry +0710.2121 +0710.2700 Materials Science +0710.5617 Mesoscale and Nanoscale Physics +0712.1254 Theory +0712.3384 Representation Theory +0801.1154 +0802.1708 +0802.4242 Number Theory +0803.4027 Biological Physics +0805.1323 Algebraic Geometry +0805.2165 +0805.2218 Strongly Correlated Electrons +0806.0313 Strongly Correlated Electrons +0806.0515 Superconductivity +0807.2138 Superconductivity +0807.4014 Quantitative Methods +0807.4040 Populations and Evolution +0807.4096 Superconductivity +0808.2336 Geometric Topology +0809.0554 +0809.0571 Statistical Mechanics +0809.2182 Algebraic Geometry +0809.2776 Combinatorics +0809.3575 Category Theory +0809.3750 Probability +0809.4273 Superconductivity +0809.4285 Mesoscale and Nanoscale Physics +0809.4286 +0809.4293 Phenomenology +0809.4298 Theory +0809.4305 Biological Physics +0809.4310 Subcellular Processes +0809.4313 +0809.4315 Phenomenology +0809.4316 Information Theory +0809.4319 +0809.4328 Rings and Algebras +0809.4342 Networking and Internet Architecture +0809.4343 Category Theory +0809.4357 Algebraic Topology +0809.4358 +0809.4363 Phenomenology +0809.4364 Algebraic Topology +0809.4367 Algebraic Topology +0809.4371 Group Theory +0809.4376 +0809.4377 Phenomenology +0809.4380 Probability +0809.4387 Probability +0809.4389 Dynamical Systems +0809.4392 Classical Physics +0809.4393 Probability +0809.4395 Distributed, Parallel, and Cluster Computing +0809.4398 Data Structures and Algorithms +0809.4403 +0809.4409 Strongly Correlated Electrons +0809.4417 +0809.4420 +0809.4422 +0809.4427 Differential Geometry +0809.4429 Functional Analysis +0809.4435 Geometric Topology +0809.4436 Dynamical Systems +0809.4439 Operator Algebras +0809.4443 Group Theory +0809.4446 Geometric Topology +0809.4448 Combinatorics +0809.4450 Differential Geometry +0809.4454 Pattern Formation and Solitons +0809.4456 +0809.4462 +0809.4465 General Physics +0809.4466 +cond-mat/0602236 Superconductivity +cond-mat/0703236 Mesoscale and Nanoscale Physics +cs/0608057 Computer Science and Game Theory +math-ph/0511021 +math/0403097 Differential Geometry +math/0412320 Metric Geometry +math/0610531 Numerical Analysis +math/0611668 Probability +math/0612013 Differential Geometry +math/0702340 Algebraic Geometry +math/0702575 Differential Geometry +math/0703026 Algebraic Geometry +math/0703217 Algebraic Geometry +physics/0103031 General Physics +quant-ph/0502114 +0705.2601 Materials Science +0706.1218 Differential Geometry +0707.1133 Probability +0711.4432 +0801.0403 +0801.1364 Information Theory +0802.2763 Optics +0804.2850 Optics +0805.0676 Strongly Correlated Electrons +0805.2606 Phenomenology +0805.3771 Spectral Theory +0805.4795 +0806.0209 Superconductivity +0806.1252 Materials Science +0806.2157 +0806.2185 +0806.4052 History and Overview +0806.4840 +0807.1141 Group Theory +0807.5120 Computational Engineering, Finance, and Science +0809.0145 Strongly Correlated Electrons +0809.1347 Symplectic Geometry +0809.2937 Strongly Correlated Electrons +0809.3093 Differential Geometry +0809.3365 Information Theory +0809.3726 Biological Physics +0809.4644 Materials Science +0809.4689 Pattern Formation and Solitons +0809.4712 +0809.4722 Populations and Evolution +0809.4723 Disordered Systems and Neural Networks +0809.4734 Group Theory +0809.4735 Group Theory +0809.4743 Information Theory +0809.4755 Quantitative Methods +0809.4756 +0809.4757 +0809.4759 +0809.4761 +0809.4767 Atomic Physics +0809.4779 Disordered Systems and Neural Networks +0809.4780 +0809.4783 Classical Analysis and ODEs +0809.4784 Artificial Intelligence +0809.4785 Representation Theory +0809.4788 Subcellular Processes +0809.4790 Quantum Algebra +0809.4794 Cryptography and Security +0809.4797 Disordered Systems and Neural Networks +0809.4802 Numerical Analysis +0809.4804 Information Theory +0809.4807 Information Theory +0809.4810 Representation Theory +0809.4812 Software Engineering +0809.4817 +0809.4821 Discrete Mathematics +0809.4826 Differential Geometry +0809.4828 +0809.4829 Phenomenology +0809.4830 Statistical Mechanics +0809.4834 Information Retrieval +0809.4840 Combinatorics +0809.4843 +0809.4845 Exactly Solvable and Integrable Systems +0809.4846 Applications +0809.4856 Probability +0809.4862 Dynamical Systems +0809.4863 Materials Science +0809.4866 Machine Learning +0809.4868 Optics +0809.4869 Materials Science +0809.4877 Metric Geometry +0809.4878 Rings and Algebras +0809.4882 Data Structures and Algorithms +0809.4898 +0809.4910 Phenomenology +0809.4914 Statistics Theory +0809.4916 Computers and Society +0809.4917 Other Computer Science +0809.4920 Other Computer Science +0809.4924 Networking and Internet Architecture +0809.4926 Algebraic Geometry +0809.4929 Other Computer Science +0809.4931 Dynamical Systems +0809.4936 Probability +0809.4937 Statistics Theory +0809.4938 Methodology +0809.4942 +0809.4945 +0809.4948 Mesoscale and Nanoscale Physics +0809.4949 +0809.4958 Statistical Mechanics +0809.4960 Phenomenology +0809.4964 General Topology +0809.4965 Dynamical Systems +0809.4967 Other Condensed Matter +0809.4968 Analysis of PDEs +0809.4972 Mesoscale and Nanoscale Physics +0809.4976 +0809.4979 Probability +0809.4983 +0809.4985 Networking and Internet Architecture +0809.4986 Networking and Internet Architecture +0809.4987 Networking and Internet Architecture +0809.4989 Networking and Internet Architecture +0809.4992 Classical Physics +0809.5000 Mesoscale and Nanoscale Physics +0809.5003 +0809.5005 Computational Geometry +0809.5009 Information Theory +0809.5013 Strongly Correlated Electrons +0809.5016 Networking and Internet Architecture +0809.5018 +0809.5021 Classical Analysis and ODEs +0809.5024 Optimization and Control +0809.5027 +0809.5031 Number Theory +0809.5036 Statistical Mechanics +0809.5040 +alg-geom/9711009 Algebraic Geometry +cs/0701197 Information Theory +hep-lat/0605005 Lattice +math/0411180 Dynamical Systems +math/0702263 Analysis of PDEs +math/0702440 Statistics Theory +physics/0606124 Physics Education +quant-ph/0605249 +quant-ph/0701148 +quant-ph/0702215 +0704.3404 Analysis of PDEs +0705.0732 Number Theory +0705.1969 +0706.1485 Statistics Theory +0706.2094 +0707.3841 Classical Physics +0707.4450 +0709.4533 Classical Analysis and ODEs +0710.2223 Mesoscale and Nanoscale Physics +0801.2827 Physics and Society +0802.0143 Mesoscale and Nanoscale Physics +0802.2490 Strongly Correlated Electrons +0804.3683 +0804.4560 Applications +0805.2346 Mesoscale and Nanoscale Physics +0805.4770 Physics and Society +0806.0148 Mesoscale and Nanoscale Physics +0806.4592 Phenomenology +0807.0254 +0807.2905 Atomic Physics +0807.4058 Mesoscale and Nanoscale Physics +0807.4840 Combinatorics +0808.0924 Strongly Correlated Electrons +0808.2970 Statistical Mechanics +0808.3867 +0809.1289 Chaotic Dynamics +0810.0542 Materials Science +0810.1860 +0810.2571 Operator Algebras +0810.3205 Representation Theory +0810.3709 Number Theory +0810.3996 +0810.4374 Theory +0810.4618 General Physics +0810.4631 Analysis of PDEs +0810.5120 +0810.5124 +0810.5140 Analysis of PDEs +0810.5141 Lattice +0810.5143 Analysis of PDEs +0810.5148 Optimization and Control +0810.5150 +0810.5152 Quantum Algebra +0810.5169 Number Theory +0810.5173 Optics +0810.5176 Number Theory +0810.5177 Number Theory +0810.5181 Number Theory +0810.5189 Combinatorics +0810.5193 Differential Geometry +0810.5197 Theory +0810.5198 Neurons and Cognition +0810.5204 Statistics Theory +0810.5206 Classical Analysis and ODEs +0810.5209 +0810.5217 Logic +0810.5219 Number Theory +0810.5222 Molecular Networks +0810.5223 +0810.5224 Optics +0810.5228 +0810.5238 Phenomenology +0810.5246 Analysis of PDEs +0810.5252 Geometric Topology +0810.5256 Complex Variables +0810.5259 Analysis of PDEs +0810.5261 Differential Geometry +0810.5263 Data Structures and Algorithms +0810.5264 +0810.5267 Plasma Physics +0810.5269 Dynamical Systems +0810.5273 +0810.5274 General Physics +0810.5276 Statistics Theory +0810.5280 Plasma Physics +0810.5281 Phenomenology +0810.5284 Geophysics +0810.5285 Probability +0810.5288 Statistics Theory +0810.5289 Optics +0810.5291 Physics and Society +0810.5297 Geophysics +0810.5299 Combinatorics +0810.5303 Differential Geometry +0810.5310 Number Theory +0810.5312 Theory +0810.5325 Computer Vision and Pattern Recognition +astro-ph/0508355 +cond-mat/0702059 Statistical Mechanics +gr-qc/0611033 +math-ph/0211004 +math/0411068 Symplectic Geometry +0704.3089 Geometric Topology +0705.0492 Mesoscale and Nanoscale Physics +0705.0824 Atomic Physics +0705.2578 K-Theory and Homology +0706.2260 Mesoscale and Nanoscale Physics +0707.3753 +0708.2821 +0708.4404 Probability +0709.0977 Other Condensed Matter +0709.3604 Statistical Mechanics +0709.3810 Combinatorics +0710.0106 Functional Analysis +0710.4427 Probability +0710.5601 +0711.1140 Combinatorics +0712.2207 Algebraic Geometry +0712.3230 Algebraic Geometry +0802.4456 Materials Science +0803.3419 Number Theory +0805.0365 Mesoscale and Nanoscale Physics +0805.3884 Materials Science +0805.3980 Mesoscale and Nanoscale Physics +0806.2633 Operator Algebras +0806.2942 Materials Science +0806.3785 Superconductivity +0806.4776 Complex Variables +0807.0740 +0807.1523 Discrete Mathematics +0807.4969 Popular Physics +0808.1771 Data Structures and Algorithms +0808.2602 Hardware Architecture +0808.2647 Strongly Correlated Electrons +0808.2649 Fluid Dynamics +0808.2656 Phenomenology +0808.2659 Information Theory +0808.2660 Populations and Evolution +0808.2664 Numerical Analysis +0808.2671 +0808.2672 Complex Variables +0808.2677 Other Condensed Matter +0808.2685 +0808.2688 Rings and Algebras +0808.2692 Classical Analysis and ODEs +0808.2694 +0808.2700 Statistics Theory +0808.2703 Information Theory +0808.2705 Functional Analysis +0808.2713 Geometric Topology +0808.2731 Probability +0808.2733 +0808.2747 Probability +0808.2748 Classical Analysis and ODEs +0808.2750 Classical Analysis and ODEs +0808.2751 Classical Analysis and ODEs +0808.2755 Number Theory +0808.2757 Chaotic Dynamics +0808.2768 Materials Science +0808.2773 General Physics +0808.2774 +0808.2775 +0808.2778 Statistical Mechanics +0808.2779 Probability +0808.2780 Other Condensed Matter +0808.2789 Group Theory +0808.2793 Geophysics +0808.2795 General Topology +0808.2802 Optics +0808.2804 General Physics +0808.2805 Spectral Theory +math/0212363 Operator Algebras +math/0212368 Operator Algebras +math/0406183 Probability +math/0407357 Functional Analysis +math/0501013 Functional Analysis +math/0501139 Functional Analysis +math/0611383 Representation Theory +physics/0702019 General Physics +0704.1445 Strongly Correlated Electrons +0704.1921 +0704.2885 Probability +0704.3677 Theory +0705.4106 Materials Science +0706.0699 Analysis of PDEs +0707.1526 +0707.2358 Mesoscale and Nanoscale Physics +0707.2520 General Physics +0707.3324 Strongly Correlated Electrons +0708.2790 +0708.2917 Disordered Systems and Neural Networks +0709.0817 Superconductivity +0709.0923 Data Analysis, Statistics and Probability +0709.2395 Chaotic Dynamics +0709.3104 Materials Science +0710.3953 Experiment +0710.4498 Strongly Correlated Electrons +0710.5522 Commutative Algebra +0711.1016 Logic in Computer Science +0711.1462 Mesoscale and Nanoscale Physics +0711.1625 Phenomenology +0712.0126 Commutative Algebra +0712.1573 Theory +0801.0539 Strongly Correlated Electrons +0801.0665 Combinatorics +0801.0746 +0801.0750 General Physics +0801.0758 +0801.0764 +0801.0766 +0801.0767 Differential Geometry +0801.0768 Materials Science +0801.0769 Materials Science +0801.0770 Materials Science +0801.0771 Materials Science +0801.0772 Mesoscale and Nanoscale Physics +0801.0773 Mesoscale and Nanoscale Physics +0801.0774 Mesoscale and Nanoscale Physics +0801.0775 Mesoscale and Nanoscale Physics +0801.0777 Functional Analysis +0801.0785 General Physics +0801.0786 General Mathematics +0801.0787 Soft Condensed Matter +0801.0796 Populations and Evolution +0801.0797 Populations and Evolution +0801.0804 Phenomenology +0801.0807 Spectral Theory +0801.0809 Rings and Algebras +0801.0811 +0801.0813 Logic in Computer Science +0801.0817 General Physics +0801.0818 Experiment +0801.0823 Representation Theory +0801.0824 General Physics +0801.0825 Operator Algebras +0801.0828 +0801.0829 Differential Geometry +0801.0833 Combinatorics +0801.0838 Superconductivity +0801.0842 Chaotic Dynamics +0801.0843 Dynamical Systems +0801.0847 Populations and Evolution +0801.0848 Applications +0801.0849 Populations and Evolution +0801.0852 Strongly Correlated Electrons +0801.0855 +0801.0857 Information Theory +0801.0859 +0801.0865 General Physics +0801.0867 General Mathematics +0801.0868 Chemical Physics +0801.0869 Materials Science +0801.0879 +0801.0880 Mesoscale and Nanoscale Physics +0801.0884 Number Theory +0801.0890 General Physics +0801.0894 General Physics +0801.0897 History and Overview +0801.0899 General Physics +0801.0904 Algebraic Topology +0801.0911 Strongly Correlated Electrons +0801.0916 Number Theory +0801.0919 Number Theory +0801.0921 Number Theory +0801.0922 Methodology +0801.0935 Theory +0801.0936 +0801.0945 Materials Science +0801.0949 Logic in Computer Science +0801.0957 +0801.0958 Phenomenology +0801.0970 Statistics Theory +0801.0972 Number Theory +0801.0973 Lattice +0801.0986 Materials Science +0801.0988 Theory +0801.0991 +0801.0996 Numerical Analysis +0801.0997 General Physics +0801.0999 General Physics +0801.1001 General Physics +0801.1003 General Physics +0801.1004 General Physics +0801.1006 General Physics +0801.1007 General Physics +0801.1009 General Physics +0801.1010 Physics and Society +0801.1013 Atmospheric and Oceanic Physics +0801.1022 Quantitative Methods +0801.1024 Experiment +0801.1027 Dynamical Systems +0801.1029 General Physics +0801.1030 General Physics +0801.1033 Human-Computer Interaction +0801.1037 General Physics +0801.1038 General Physics +0801.1040 General Physics +0801.1041 General Physics +0801.1043 General Physics +0801.1044 General Physics +0801.1045 General Physics +0801.1046 General Physics +0801.1047 General Physics +0801.1049 General Physics +0801.1050 Probability +0801.1054 Number Theory +0801.1056 General Physics +0801.1057 +0801.1058 General Physics +0801.1063 Information Retrieval +0801.1066 History and Overview +0801.1079 Probability +0801.1083 Analysis of PDEs +0801.1087 Analysis of PDEs +0801.1093 Differential Geometry +0801.1099 +cond-mat/0512121 Other Condensed Matter +cond-mat/0602442 Materials Science +cond-mat/0609188 Soft Condensed Matter +cond-mat/0609495 Strongly Correlated Electrons +cond-mat/0703401 Statistical Mechanics +math/0407135 Metric Geometry +math/0509024 Group Theory +math/0603274 Probability +math/0612196 Dynamical Systems +math/0701348 Number Theory +physics/0611261 Data Analysis, Statistics and Probability +quant-ph/0310155 +0707.2603 Dynamical Systems +0710.5813 +0711.2057 Functional Analysis +0803.1461 Chemical Physics +0806.1894 Applications +0807.3469 Statistics Theory +0807.4314 General Physics +0808.3759 Soft Condensed Matter +0811.3081 Statistical Mechanics +cond-mat/0308181 Disordered Systems and Neural Networks +cond-mat/0412107 Disordered Systems and Neural Networks +cond-mat/9801309 Statistical Mechanics +math/0407134 Probability +math/0503481 Probability +math/0601379 Probability +math/0605180 Analysis of PDEs +math/0609110 Combinatorics +math/9409219 Combinatorics +math/9901100 Dynamical Systems +0807.2477 Algebraic Geometry +0807.2758 +0808.2447 Representation Theory +0808.2848 Phenomenology +0808.3734 Disordered Systems and Neural Networks +0809.0100 Phenomenology +0809.4836 Strongly Correlated Electrons +0810.2354 Functional Analysis +0810.4197 Strongly Correlated Electrons +0811.0544 Dynamical Systems +0811.4592 +0812.0484 Strongly Correlated Electrons +0812.4002 Probability +cs/0703033 Information Retrieval +math/0601105 Geometric Topology +0705.4312 Probability +0707.0820 Strongly Correlated Electrons +0707.3112 Materials Science +0707.3776 Strongly Correlated Electrons +0709.1516 Statistics Theory +0709.1919 Probability +0709.2853 Superconductivity +0710.4302 Mesoscale and Nanoscale Physics +0711.1819 Combinatorics +0712.0401 +0712.0574 Probability +0712.3329 Artificial Intelligence +0712.3825 Artificial Intelligence +0801.1858 +0801.1891 Strongly Correlated Electrons +0801.2934 Statistics Theory +0801.3354 Operator Algebras +0801.4837 Statistics Theory +0802.0785 Cellular Automata and Lattice Gases +0802.2793 Commutative Algebra +0803.2285 Cryptography and Security +0803.2925 Neural and Evolutionary Computing +0803.3236 Superconductivity +0804.2343 Discrete Mathematics +0804.3201 Soft Condensed Matter +0804.4445 Optics +0805.3245 Theory +0806.0119 Probability +0806.0890 Phenomenology +0806.2019 +0806.3970 +0806.3975 +0806.3976 Theory +0806.3980 Cell Behavior +0806.3982 +0806.3990 Number Theory +0806.3994 Experiment +0806.3997 +0806.4000 Phenomenology +0806.4004 Differential Geometry +0806.4011 Superconductivity +0806.4013 Strongly Correlated Electrons +0806.4020 Robotics +0806.4021 Robotics +0806.4022 Statistical Mechanics +0806.4023 +0806.4024 Logic +0806.4031 Representation Theory +0806.4039 Theory +0806.4043 Differential Geometry +0806.4046 +0806.4057 Number Theory +0806.4060 Other Condensed Matter +0806.4064 Group Theory +0806.4069 General Physics +0806.4070 Accelerator Physics +0806.4071 +0806.4078 Superconductivity +0806.4083 Analysis of PDEs +0806.4091 General Physics +0806.4093 Rings and Algebras +0806.4096 History and Overview +0806.4111 Algebraic Topology +0806.4113 Algebraic Topology +0806.4119 +0806.4123 Optics +0806.4126 Phenomenology +0806.4133 Optimization and Control +0806.4134 Superconductivity +0806.4138 Materials Science +0806.4139 Analysis of PDEs +0806.4143 Operator Algebras +0806.4148 Analysis of PDEs +0806.4154 Cell Behavior +0806.4155 Classical Analysis and ODEs +0806.4156 Rings and Algebras +0806.4157 Statistical Mechanics +0806.4158 +0806.4161 Neurons and Cognition +0806.4164 Adaptation and Self-Organizing Systems +0806.4169 Chemical Physics +0806.4178 Representation Theory +0806.4179 Differential Geometry +cs/0206006 Artificial Intelligence +cs/0503026 Learning +cs/0606077 Learning +math/0405503 Number Theory +math/0409484 Number Theory +math/0411446 Number Theory +math/0510154 Number Theory +math/0602546 Number Theory +math/0608165 Probability +math/0610631 Number Theory +quant-ph/0506153 +quant-ph/0611063 +0705.0797 Statistical Mechanics +0705.1576 Number Theory +0708.1777 Chemical Physics +0711.3491 +0711.3779 +0712.1862 Chemical Physics +0801.0146 Probability +0801.4914 +0803.2054 Superconductivity +0803.3530 Mesoscale and Nanoscale Physics +0804.0018 Chemical Physics +cs/0308009 Computational Engineering, Finance, and Science +math/0404364 Algebraic Geometry +math/0603072 Number Theory +quant-ph/0605167 +0704.3957 General Physics +0706.0389 Differential Geometry +0709.2639 Statistical Mechanics +0709.3617 Strongly Correlated Electrons +0709.4629 Superconductivity +0710.2129 Theory +0710.3778 Mesoscale and Nanoscale Physics +0711.0199 Soft Condensed Matter +0711.1092 +0712.1042 Strongly Correlated Electrons +0801.0101 Superconductivity +0801.0698 Mesoscale and Nanoscale Physics +0801.3094 Probability +0801.3105 Algebraic Geometry +0801.3701 Theory +0802.3405 Strongly Correlated Electrons +0803.2923 Chemical Physics +0803.3445 Fluid Dynamics +0804.0213 +0804.0887 Superconductivity +0804.3012 Probability +0804.4220 +0804.4404 Differential Geometry +0805.1195 +0805.2951 Strongly Correlated Electrons +0805.3256 Logic in Computer Science +0805.3312 Experiment +0805.3631 General Mathematics +0805.4413 Chemical Physics +0805.4418 Geometric Topology +0805.4422 Geometric Topology +0805.4423 Geometric Topology +0805.4429 Superconductivity +0805.4431 Algebraic Geometry +0805.4433 Computational Physics +0805.4435 +0805.4436 Algebraic Geometry +0805.4439 Spectral Theory +0805.4442 Combinatorics +0805.4469 Numerical Analysis +0805.4471 Information Theory +0805.4473 Algebraic Geometry +0805.4481 Theory +0805.4483 K-Theory and Homology +0805.4487 +0805.4488 +0805.4494 Classical Physics +0805.4496 Optics +0805.4497 Optics +0805.4502 Information Theory +0805.4506 Differential Geometry +0805.4507 Disordered Systems and Neural Networks +0805.4508 Information Retrieval +0805.4510 Other Condensed Matter +0805.4513 Algebraic Geometry +0805.4521 Computation and Language +0805.4527 +0805.4547 Number Theory +0805.4550 Analysis of PDEs +0805.4551 Analysis of PDEs +0805.4554 +0805.4558 Data Analysis, Statistics and Probability +0805.4559 Algebraic Geometry +0805.4568 +0805.4576 Algebraic Geometry +0805.4578 Algebraic Geometry +0805.4588 Algebraic Geometry +0805.4592 Analysis of PDEs +0805.4596 History and Overview +0805.4597 Functional Analysis +0805.4600 Computational Physics +0805.4602 Mesoscale and Nanoscale Physics +0805.4604 Functional Analysis +0805.4609 Functional Analysis +0805.4612 Theory +cond-mat/0512604 Soft Condensed Matter +math/0601317 Representation Theory +math/0603615 Differential Geometry +math/0604247 Differential Geometry +math/0606284 Group Theory +math/0610316 Algebraic Geometry +math/0612724 Combinatorics +math/0701859 Representation Theory +physics/0702199 Fluid Dynamics +physics/0702208 Fluid Dynamics +0706.1192 Optimization and Control +0709.4615 Soft Condensed Matter +0710.5222 Analysis of PDEs +0711.4524 Superconductivity +0712.1604 Algebraic Geometry +0802.1850 +0803.2821 Number Theory +0804.1124 Analysis of PDEs +0805.4312 Soft Condensed Matter +0807.2347 +0808.1093 Strongly Correlated Electrons +0809.4974 +0810.1556 +0810.2580 Phenomenology +0810.5330 Combinatorics +0811.0475 Cryptography and Security +cond-mat/0701536 Mesoscale and Nanoscale Physics +math/0605368 Analysis of PDEs +0704.2037 +0706.1531 Soft Condensed Matter +0706.3218 Group Theory +0709.0227 +0712.2036 Soft Condensed Matter +0801.3783 Mesoscale and Nanoscale Physics +0801.4543 Populations and Evolution +0802.4172 +0803.2014 +0803.2411 +0803.3325 Superconductivity +0803.3535 Strongly Correlated Electrons +0804.2462 Mesoscale and Nanoscale Physics +0804.3800 Strongly Correlated Electrons +0805.0255 Strongly Correlated Electrons +0805.1062 Superconductivity +0806.0288 Materials Science +0806.2013 Theory +0806.2654 Superconductivity +0806.3346 Superconductivity +0806.3737 Materials Science +0806.4585 Phenomenology +0807.1235 +0807.1577 Materials Science +0808.0974 Superconductivity +0808.1473 +0808.2070 Materials Science +0808.2708 Theory +0808.2855 Statistical Mechanics +0808.3123 Strongly Correlated Electrons +0808.3145 Information Theory +0808.3147 Differential Geometry +0808.3155 Probability +0808.3157 Phenomenology +0808.3161 +0808.3165 Materials Science +0808.3166 Cryptography and Security +0808.3171 Mesoscale and Nanoscale Physics +0808.3172 General Physics +0808.3175 Phenomenology +0808.3192 Probability +0808.3197 Data Structures and Algorithms +0808.3206 Combinatorics +0808.3207 +0808.3208 Dynamical Systems +0808.3209 Algebraic Geometry +0808.3210 Algebraic Geometry +0808.3214 Information Theory +0808.3216 +0808.3225 Number Theory +0808.3228 +0808.3229 Disordered Systems and Neural Networks +0808.3235 Algebraic Geometry +0808.3238 Metric Geometry +0808.3241 Classical Analysis and ODEs +0808.3246 +0808.3247 Functional Analysis +0808.3248 Functional Analysis +0808.3249 Metric Geometry +0808.3252 +0808.3253 Algebraic Geometry +0808.3258 Commutative Algebra +0808.3260 Algebraic Geometry +0808.3261 Mesoscale and Nanoscale Physics +0808.3262 Rings and Algebras +0808.3266 Number Theory +0808.3270 +0808.3271 Statistical Mechanics +0808.3272 Statistical Mechanics +0808.3273 Statistical Mechanics +0808.3274 Phenomenology +0808.3275 Soft Condensed Matter +0808.3282 +0808.3286 Algebraic Geometry +0808.3288 Statistical Mechanics +0808.3291 Functional Analysis +0808.3292 Software Engineering +0808.3301 Probability +0808.3304 Complex Variables +0808.3309 Materials Science +0808.3313 Experiment +0808.3316 +0808.3322 +0808.3331 Data Structures and Algorithms +0808.3333 Combinatorics +0808.3336 +0808.3338 +0808.3346 Chemical Physics +0808.3347 Experiment +0808.3351 Algebraic Geometry +0808.3355 Soft Condensed Matter +0808.3362 +0808.3367 Experiment +0808.3374 +0808.3383 +0808.3385 +0808.3389 Number Theory +0808.3390 Phenomenology +0808.3396 Materials Science +cond-mat/9810370 Superconductivity +math/0202292 Quantum Algebra +math/0212066 Number Theory +math/0406293 Classical Analysis and ODEs +math/0603259 Algebraic Geometry +nlin/0505003 Exactly Solvable and Integrable Systems +nlin/0702017 Exactly Solvable and Integrable Systems +physics/0610030 Space Physics +0706.4161 Computational Geometry +0707.0194 Statistical Mechanics +0709.3251 +0711.2836 Geometric Topology +0711.3338 Information Theory +0711.3644 Statistical Mechanics +0801.0782 Superconductivity +0801.1814 +0803.1101 Mesoscale and Nanoscale Physics +0804.0922 Quantum Algebra +0804.2026 Physics and Society +cond-mat/0608303 Mesoscale and Nanoscale Physics +cond-mat/0701425 Mesoscale and Nanoscale Physics +math/0302346 Algebraic Topology +math/0609081 Differential Geometry +0709.2183 Statistical Mechanics +0710.4945 Commutative Algebra +0712.4310 +0802.1912 General Mathematics +0804.1889 Probability +0804.4050 +0804.4778 Differential Geometry +0804.4842 Commutative Algebra +0805.2037 +0806.3687 Quantum Algebra +0806.4682 +0807.1837 Strongly Correlated Electrons +0807.2706 Superconductivity +0808.0429 Phenomenology +0808.0578 Superconductivity +0808.0659 Other Condensed Matter +0808.1257 Mesoscale and Nanoscale Physics +0809.0818 Superconductivity +0809.1730 Disordered Systems and Neural Networks +0809.2398 Exactly Solvable and Integrable Systems +0809.2753 Materials Science +0809.3362 Disordered Systems and Neural Networks +0809.3611 +0809.5175 Theory +0810.0581 Algebraic Topology +0810.2889 Soft Condensed Matter +0810.3544 Statistical Mechanics +0810.4327 Probability +0811.1132 +0811.2143 Phenomenology +0811.2237 +0811.2792 Superconductivity +0811.2805 +0811.2808 General Topology +0811.2817 Soft Condensed Matter +0811.2818 Materials Science +0811.2824 Soft Condensed Matter +0811.2826 +0811.2829 Differential Geometry +0811.2835 Operator Algebras +0811.2840 +0811.2842 +0811.2843 Computation +0811.2844 Statistics Theory +0811.2850 Information Theory +0811.2853 Data Structures and Algorithms +0811.2854 Functional Analysis +0811.2861 Other Condensed Matter +0811.2866 Instrumentation and Detectors +0811.2868 Multimedia +0811.2876 +0811.2885 Instrumentation and Detectors +0811.2886 Instrumentation and Detectors +0811.2889 Dynamical Systems +0811.2892 Probability +0811.2895 Algebraic Geometry +0811.2904 Databases +0811.2907 +0811.2910 +0811.2915 Differential Geometry +0811.2921 Experiment +0811.2924 +0811.2926 +0811.2931 +0811.2938 +0811.2945 Strongly Correlated Electrons +0811.2952 +0811.2958 Functional Analysis +0811.2959 +0811.2961 Theory +0811.2981 Combinatorics +0811.2984 Numerical Analysis +0811.2985 Classical Physics +0811.2986 +0811.2992 +0811.2994 Materials Science +cond-mat/0010189 Superconductivity +cond-mat/0203614 Superconductivity +cond-mat/0212274 Superconductivity +cond-mat/0307211 Superconductivity +cond-mat/0309446 Soft Condensed Matter +cond-mat/0405294 Soft Condensed Matter +cond-mat/0503322 Strongly Correlated Electrons +cond-mat/0702523 Superconductivity +cond-mat/0703627 Strongly Correlated Electrons +cond-mat/9907005 Superconductivity +cond-mat/9910003 Superconductivity +math-ph/0611069 +math/0102015 Differential Geometry +math/0406185 Differential Geometry +math/0406212 Differential Geometry +math/0407490 Differential Geometry +math/0411189 Differential Geometry +math/0510493 Differential Geometry +math/0602512 Differential Geometry +math/0603532 Differential Geometry +math/0611707 Differential Geometry +quant-ph/0612221 +0704.3795 Chaotic Dynamics +0707.2513 Materials Science +0708.2269 Dynamical Systems +0709.1316 Operator Algebras +0709.3715 Algebraic Topology +0709.4118 Logic in Computer Science +0712.4321 +0801.2656 Chaotic Dynamics +0802.0384 Materials Science +0802.0827 Operator Algebras +0802.1451 Materials Science +0804.0207 Chemical Physics +0804.3961 Theory +0807.2494 Data Analysis, Statistics and Probability +0808.1305 +0809.2155 +0809.4059 Neurons and Cognition +0809.4118 +0810.3383 Optics +0810.3968 Mesoscale and Nanoscale Physics +0810.4181 Theory +0811.1076 Medical Physics +0811.1693 Information Theory +0811.4078 Experiment +0811.4506 Representation Theory +0812.0253 Materials Science +0812.0540 Number Theory +0812.0598 Computer Science and Game Theory +0812.0806 +0812.0808 +0812.0816 +0812.0820 Probability +0812.0823 Commutative Algebra +0812.0827 Differential Geometry +0812.0832 Materials Science +0812.0834 Probability +0812.0835 +0812.0837 Statistics Theory +0812.0838 Statistics Theory +0812.0861 Combinatorics +0812.0870 Combinatorics +0812.0872 Combinatorics +0812.0873 Quantitative Methods +0812.0874 Human-Computer Interaction +0812.0879 Soft Condensed Matter +0812.0882 Neural and Evolutionary Computing +0812.0890 Exactly Solvable and Integrable Systems +0812.0896 Probability +0812.0899 Dynamical Systems +0812.0900 Phenomenology +0812.0902 Spectral Theory +0812.0904 Performance +0812.0908 Soft Condensed Matter +0812.0918 Materials Science +0812.0920 Chaotic Dynamics +0812.0921 +0812.0927 Analysis of PDEs +0812.0930 General Mathematics +0812.0932 General Physics +0812.0933 Learning +0812.0936 Quantitative Methods +0812.0940 Quantitative Methods +0812.0950 Theory +0812.0952 Soft Condensed Matter +0812.0966 Disordered Systems and Neural Networks +0812.0970 Algebraic Geometry +0812.0971 +0812.0982 Analysis of PDEs +0812.0983 Statistical Mechanics +0812.0990 +0812.0997 Optimization and Control +0812.0999 +0812.1004 General Physics +0812.1006 +0812.1011 Numerical Analysis +0812.1014 Artificial Intelligence +0812.1015 Theory +0812.1016 Probability +math-ph/0602006 +math/0003065 Algebraic Topology +math/0305381 Differential Geometry +math/0407022 Algebraic Topology +math/0610599 Differential Geometry +math/0701227 Analysis of PDEs +math/0702662 Analysis of PDEs +math/9811037 Algebraic Topology +quant-ph/0607032 +quant-ph/0611011 +0710.3627 Geometric Topology +0802.2820 +0804.2732 Strongly Correlated Electrons +0805.4511 Phenomenology +0806.1707 +0807.3529 Analysis of PDEs +0808.0290 +0808.3281 Information Theory +0809.0250 Statistical Finance +0809.4758 Other Condensed Matter +0809.4865 Superconductivity +cond-mat/0703459 Statistical Mechanics +cs/0412099 Cryptography and Security +cs/0508059 Cryptography and Security +math-ph/0510074 +quant-ph/0602229 +quant-ph/0701085 +0704.1702 Algebraic Geometry +0704.2206 Logic +0706.0234 Number Theory +0707.1131 Mesoscale and Nanoscale Physics +0707.2260 +0707.4408 Differential Geometry +0708.0371 +0708.1681 Materials Science +0710.5797 Statistics Theory +0711.3752 Soft Condensed Matter +0801.2343 Disordered Systems and Neural Networks +0801.4510 +0802.0713 Strongly Correlated Electrons +0803.0710 Mesoscale and Nanoscale Physics +0803.2458 Materials Science +0803.2688 Soft Condensed Matter +0804.1379 Probability +0804.4638 General Physics +0805.2869 Functional Analysis +0805.3398 +0806.0681 Commutative Algebra +0806.3577 Fluid Dynamics +0806.3616 +0806.4185 Theory +0806.4196 Logic +0806.4198 Strongly Correlated Electrons +0806.4199 Chaotic Dynamics +0806.4202 History and Philosophy of Physics +0806.4203 Functional Analysis +0806.4204 Functional Analysis +0806.4205 +0806.4206 Functional Analysis +0806.4208 Combinatorics +0806.4210 Learning +0806.4213 Combinatorics +0806.4220 Logic +0806.4221 Distributed, Parallel, and Cluster Computing +0806.4223 Superconductivity +0806.4224 Statistical Mechanics +0806.4225 Soft Condensed Matter +0806.4241 Superconductivity +0806.4243 +0806.4247 Differential Geometry +0806.4250 Phenomenology +0806.4259 Operator Algebras +0806.4260 +0806.4265 Theory +0806.4268 Physics and Society +0806.4271 Algebraic Geometry +0806.4278 Optimization and Control +0806.4282 +0806.4284 Dynamical Systems +0806.4286 Numerical Analysis +0806.4287 Optics +0806.4288 Physics and Society +0806.4293 Multimedia +0806.4294 Statistics Theory +0806.4308 Quantum Algebra +0806.4310 Other Condensed Matter +0806.4311 Superconductivity +0806.4313 Differential Geometry +0806.4315 +0806.4318 Combinatorics +0806.4325 Other Condensed Matter +0806.4330 Number Theory +0806.4334 +0806.4341 Artificial Intelligence +0806.4343 Mesoscale and Nanoscale Physics +0806.4352 Analysis of PDEs +0806.4360 Differential Geometry +0806.4363 +0806.4375 Combinatorics +hep-th/0605216 Theory +math/0609711 K-Theory and Homology +quant-ph/0604027 +0704.3184 +0706.3723 Logic in Computer Science +0708.0724 Strongly Correlated Electrons +0709.0345 Differential Geometry +0709.1956 +0709.2049 Materials Science +0709.2327 Materials Science +0709.2653 Other Condensed Matter +0710.3901 Discrete Mathematics +0711.0614 Differential Geometry +0712.1565 Materials Science +0712.3790 Pattern Formation and Solitons +0712.3793 Classical Physics +0801.1846 Populations and Evolution +0801.2940 +0801.3060 Strongly Correlated Electrons +0801.3579 Phenomenology +0801.4166 Strongly Correlated Electrons +0802.2434 Statistical Mechanics +0802.3639 Plasma Physics +0803.2139 Geometric Topology +0803.2556 +0803.2710 +0803.2713 Superconductivity +0803.2723 +0803.2726 Phenomenology +0803.2731 Materials Science +0803.2732 Subcellular Processes +0803.2734 Symplectic Geometry +0803.2761 Materials Science +0803.2762 General Physics +0803.2769 Algebraic Geometry +0803.2781 K-Theory and Homology +0803.2783 Statistical Mechanics +0803.2784 Analysis of PDEs +0803.2790 +0803.2795 Number Theory +0803.2803 Combinatorics +0803.2806 Spectral Theory +0803.2820 +0803.2827 Information Theory +0803.2830 Probability +0803.2833 +0803.2834 Combinatorics +0803.2846 Phenomenology +0803.2868 Mesoscale and Nanoscale Physics +astro-ph/0505092 +cond-mat/0506053 Disordered Systems and Neural Networks +cond-mat/0702136 Statistical Mechanics +cond-mat/0703740 Strongly Correlated Electrons +math-ph/0608026 +math/0501318 Algebraic Geometry +math/0610912 Algebraic Topology +0706.0169 Complex Variables +0707.4197 Commutative Algebra +0708.3519 +0712.2774 Plasma Physics +0801.2670 Mesoscale and Nanoscale Physics +0801.4267 Functional Analysis +0802.1930 Mesoscale and Nanoscale Physics +0802.3835 Geometric Topology +0802.4174 Mesoscale and Nanoscale Physics +0803.0903 Statistical Mechanics +0803.1578 Mesoscale and Nanoscale Physics +0803.2572 Superconductivity +0803.3664 Computational Physics +0804.0859 Soft Condensed Matter +0804.1312 Statistical Mechanics +0804.1893 Multiagent Systems +0805.1812 +0805.3336 +0805.3956 Strongly Correlated Electrons +0805.4584 Superconductivity +0806.0706 General Physics +0806.1794 Optics +0806.2175 +0807.2786 Algebraic Geometry +0807.2837 +0807.4301 Optics +0808.0946 Combinatorics +0808.1046 Differential Geometry +0808.2200 Dynamical Systems +0808.2215 Phenomenology +0808.2216 Phenomenology +0808.2217 Theory +0808.2222 Data Structures and Algorithms +0808.2225 +0808.2227 Computer Vision and Pattern Recognition +0808.2230 Number Theory +0808.2232 Quantitative Methods +0808.2241 Machine Learning +0808.2242 General Physics +0808.2246 Digital Libraries +0808.2252 Statistical Mechanics +0808.2256 Group Theory +0808.2262 Mesoscale and Nanoscale Physics +0808.2263 Theory +0808.2268 Probability +0808.2271 +0808.2272 +0808.2274 Differential Geometry +0808.2275 Operator Algebras +0808.2276 Theory +0808.2279 Differential Geometry +0808.2286 Statistical Mechanics +0808.2293 Superconductivity +0808.2296 Other Computer Science +0808.2297 Commutative Algebra +0808.2299 +0808.2300 +0808.2301 Theory +0808.2302 Materials Science +0808.2304 Group Theory +0808.2311 Rings and Algebras +0808.2312 Soft Condensed Matter +0808.2314 Information Theory +0808.2316 Optimization and Control +0808.2319 Probability +0808.2321 Complex Variables +0808.2322 Neurons and Cognition +0808.2325 Networking and Internet Architecture +0808.2328 Strongly Correlated Electrons +0808.2334 Dynamical Systems +0808.2361 +0808.2363 Differential Geometry +0808.2366 Functional Analysis +0808.2374 Phenomenology +0808.2390 Functional Analysis +0808.2393 Applications +0808.2395 Number Theory +0808.2401 Biological Physics +0808.2406 +0808.2407 +0808.2409 +0808.2411 Quantum Algebra +0808.2416 Materials Science +0808.2421 Superconductivity +0808.2423 Quantum Algebra +0808.2424 Probability +0808.2426 Plasma Physics +0808.2431 Computers and Society +0808.2433 Analysis of PDEs +0808.2443 Other Condensed Matter +0808.2457 Functional Analysis +0808.2463 Geometric Topology +gr-qc/0408056 +math/0512132 Number Theory +math/0606059 Number Theory +math/0609260 Representation Theory +math/0703295 Operator Algebras +0704.1101 Combinatorics +0707.0121 +0709.0260 +0710.1879 Information Theory +0712.1712 Algebraic Geometry +0712.3261 Complex Variables +0712.3413 Analysis of PDEs +0801.4093 +0801.4765 Mesoscale and Nanoscale Physics +0802.1657 Materials Science +0802.2588 +0802.3207 Fluid Dynamics +0802.3394 Strongly Correlated Electrons +0803.3386 Disordered Systems and Neural Networks +0803.3906 +0804.4722 +0805.0553 Other Condensed Matter +0805.0812 Differential Geometry +0805.2406 Statistical Mechanics +0805.3106 Experiment +0805.3210 +0806.0769 Phenomenology +0806.4090 +0807.2561 Strongly Correlated Electrons +0807.3252 +0807.4791 Materials Science +0807.5024 Materials Science +0808.1718 +0808.1956 Superconductivity +0808.2008 Geometric Topology +0808.2491 +0808.3820 +0810.0148 +0810.1088 Symplectic Geometry +0810.1130 Combinatorics +0810.3017 +0810.3316 Atomic Physics +0810.3348 Instrumentation and Detectors +0810.3349 Experiment +0810.3350 Experiment +0810.3758 Experiment +0810.3864 Combinatorics +0810.3926 Group Theory +0810.3927 +0810.3929 +0810.3932 Statistical Mechanics +0810.3935 Networking and Internet Architecture +0810.3937 Experiment +0810.3940 Algebraic Geometry +0810.3943 +0810.3951 +0810.3955 Computational Physics +0810.3958 +0810.3960 +0810.3961 Phenomenology +0810.3963 Statistical Mechanics +0810.3967 Differential Geometry +0810.3969 Commutative Algebra +0810.3975 Physics and Society +0810.3977 Optimization and Control +0810.3978 Statistics Theory +0810.3981 Representation Theory +0810.3983 Adaptation and Self-Organizing Systems +0810.3985 Statistics Theory +0810.3986 +0810.3989 Optics +0810.3990 Biological Physics +0810.3993 Atomic Physics +0810.3995 Statistics Theory +0810.4002 Data Structures and Algorithms +0810.4005 +0810.4009 Differential Geometry +0810.4012 Statistics Theory +0810.4017 Number Theory +0810.4021 Fluid Dynamics +0810.4026 +0810.4028 Commutative Algebra +0810.4034 +0810.4035 Plasma Physics +0810.4039 Classical Analysis and ODEs +0810.4040 Algebraic Geometry +0810.4044 Geometric Topology +0810.4060 Group Theory +0810.4061 Discrete Mathematics +0810.4066 +0810.4067 Experiment +0810.4072 Analysis of PDEs +0810.4079 Algebraic Geometry +0810.4084 Experiment +0810.4090 General Physics +0810.4096 Materials Science +0810.4098 Chaotic Dynamics +0810.4101 Numerical Analysis +0810.4102 +0810.4117 Functional Analysis +0810.4120 Combinatorics +0810.4121 Phenomenology +0810.4123 Analysis of PDEs +0810.4127 Theory +0810.4129 Algebraic Geometry +0810.4132 Phenomenology +0810.4133 Instrumentation and Detectors +0810.4137 Symplectic Geometry +0810.4139 Soft Condensed Matter +cond-mat/0608591 Materials Science +math/0505628 Commutative Algebra +math/0606381 Geometric Topology +math/0701602 Analysis of PDEs +math/0702317 Probability +math/0703744 Group Theory +0705.2645 Materials Science +0705.3179 Mesoscale and Nanoscale Physics +0705.4283 +0706.1405 Combinatorics +0706.2411 Superconductivity +0706.4012 Phenomenology +0708.0524 Superconductivity +0708.2567 +0708.3184 Theory +0709.0692 Strongly Correlated Electrons +0709.1323 Materials Science +0709.2566 Materials Science +0709.3212 Atomic Physics +0709.3736 Analysis of PDEs +0710.2240 Atomic Physics +0710.5133 Combinatorics +0710.5304 Mesoscale and Nanoscale Physics +0710.5903 +0711.0405 Mesoscale and Nanoscale Physics +0711.2003 Plasma Physics +0712.2906 +0712.3028 +0712.3704 Number Theory +0712.3868 +0712.4162 Phenomenology +0801.0350 Logic +0801.0351 Logic +0801.0380 Physics and Society +0801.0597 Information Theory +0801.0599 +0801.0604 Strongly Correlated Electrons +0801.0614 Strongly Correlated Electrons +0801.0615 Strongly Correlated Electrons +0801.0621 Rings and Algebras +0801.0622 Differential Geometry +0801.0625 Multimedia +0801.0632 Geophysics +0801.0643 +0801.0651 Representation Theory +0801.0652 Rings and Algebras +0801.0654 Tissues and Organs +0801.0659 Group Theory +0801.0660 +0801.0662 Statistical Mechanics +0801.0675 Phenomenology +0801.0676 Statistical Mechanics +0801.0677 Logic in Computer Science +0801.0678 Robotics +0801.0679 Combinatorics +0801.0681 Classical Physics +0801.0685 Commutative Algebra +0801.0686 Chaotic Dynamics +0801.0687 Spectral Theory +0801.0690 +0801.0692 Complex Variables +0801.0694 General Physics +0801.0695 Probability +0801.0696 +0801.0700 +0801.0709 Representation Theory +0801.0714 Programming Languages +0801.0716 +0801.0725 Geophysics +0801.0731 Functional Analysis +0801.0732 Disordered Systems and Neural Networks +0801.0737 Operator Algebras +cond-mat/0602277 Soft Condensed Matter +cond-mat/0703415 Strongly Correlated Electrons +cs/0703134 Neural and Evolutionary Computing +math/0502172 Optimization and Control +math/0510267 Functional Analysis +math/0601552 Analysis of PDEs +math/0606093 Group Theory +math/0701419 Statistics Theory +math/0702467 Complex Variables +math/0702789 Geometric Topology +quant-ph/0507238 +quant-ph/0602031 +quant-ph/0702258 +0704.1130 General Physics +0704.3420 +0705.2963 Classical Analysis and ODEs +0706.2501 Algebraic Geometry +0710.0287 Number Theory +0712.3802 Dynamical Systems +0801.2221 Differential Geometry +0801.2644 Rings and Algebras +0801.3828 Soft Condensed Matter +0801.4127 Differential Geometry +0802.2757 Statistical Mechanics +0803.0668 Statistics Theory +0803.2082 Geometric Topology +0804.1411 +0804.1936 +0804.3090 +0804.3649 Differential Geometry +0804.3670 Optics +0805.1028 Strongly Correlated Electrons +0805.1090 +0805.1475 Statistical Mechanics +0805.2505 +0805.3509 Soft Condensed Matter +0807.1880 +0807.2210 Other Condensed Matter +0807.2809 Algebraic Geometry +0807.4374 Algebraic Geometry +0807.4465 Statistical Mechanics +0808.0694 Theory +0808.1630 +0808.3480 +0809.1951 +0809.4900 Theory +0809.4956 Experiment +0809.4969 Experiment +0809.4970 Category Theory +0809.5012 Other Condensed Matter +0810.0023 Dynamical Systems +0810.0540 Phenomenology +0810.0553 Experiment +0810.1071 +0810.1543 +0810.1888 Fluid Dynamics +0810.1946 Fluid Dynamics +0810.2273 Materials Science +0810.2294 +0810.2301 +0810.2302 Soft Condensed Matter +0810.2305 Spectral Theory +0810.2309 Dynamical Systems +0810.2310 +0810.2312 Strongly Correlated Electrons +0810.2315 Spectral Theory +0810.2318 Number Theory +0810.2326 Analysis of PDEs +0810.2328 Experiment +0810.2334 +0810.2335 Representation Theory +0810.2340 Algebraic Geometry +0810.2341 Biological Physics +0810.2344 Cellular Automata and Lattice Gases +0810.2352 Information Theory +0810.2353 Experiment +0810.2370 Geophysics +0810.2371 Combinatorics +0810.2374 Theory +0810.2380 Strongly Correlated Electrons +0810.2381 Experiment +0810.2382 Theory +0810.2383 +0810.2390 Data Structures and Algorithms +0810.2395 Representation Theory +0810.2396 Experiment +0810.2398 Category Theory +0810.2402 Commutative Algebra +0810.2404 +0810.2412 +0810.2414 Instrumentation and Detectors +0810.2416 +0810.2429 Other Condensed Matter +0810.2436 Phenomenology +0810.2441 Algebraic Geometry +0810.2445 Algebraic Geometry +0810.2449 Theory +0810.2451 Strongly Correlated Electrons +0810.2465 Differential Geometry +0810.2466 Differential Geometry +0810.2467 Probability +0810.2470 Materials Science +0810.2476 Experiment +0810.2477 Number Theory +0810.2485 Optics +0810.2486 Computer Science and Game Theory +0810.2487 Number Theory +0810.2490 Optics +0810.2493 Experiment +0810.2500 Operator Algebras +0810.2505 Soft Condensed Matter +0810.2514 Analysis of PDEs +0810.2517 Numerical Analysis +0810.2519 Experiment +0810.2520 +0810.2521 Analysis of PDEs +0810.2523 Strongly Correlated Electrons +0810.2529 Information Theory +cond-mat/0409474 Strongly Correlated Electrons +cs/0510064 Discrete Mathematics +cs/0609140 Robotics +math-ph/0612004 +math/0112247 Algebraic Geometry +math/0501329 Algebraic Geometry +math/0507118 Algebraic Geometry +math/0507212 Complex Variables +math/0508511 Quantum Algebra +math/0606666 Algebraic Geometry +math/0607492 Algebraic Geometry +math/0609706 Complex Variables +math/0609796 Algebraic Geometry +physics/0701092 General Physics +q-bio/0605046 Cell Behavior +q-bio/0702057 Molecular Networks +quant-ph/0311078 +0704.1106 Phenomenology +0704.2466 Physics and Society +0704.3436 Mesoscale and Nanoscale Physics +0706.0106 Optics +0706.3879 +0706.4152 Statistical Mechanics +0707.3080 Mesoscale and Nanoscale Physics +0707.3680 Mesoscale and Nanoscale Physics +0708.3241 Other Condensed Matter +0709.0218 Databases +0709.0566 Databases +0709.4063 Computers and Society +0710.0515 Strongly Correlated Electrons +0710.0871 Computers and Society +0710.1075 +0710.1468 General Mathematics +0710.1750 Materials Science +0710.2362 Biological Physics +0711.3789 +0711.4613 Computers and Society +0712.0223 Materials Science +0712.2411 +0712.2591 Software Engineering +0712.2594 General Literature +0712.2958 Operating Systems +0801.0609 Software Engineering +0801.0715 Computers and Society +0801.0920 Number Theory +0801.1240 Statistical Mechanics +0801.1516 Computers and Society +0801.1856 Computers and Society +0801.3026 Mesoscale and Nanoscale Physics +0801.3114 Human-Computer Interaction +0801.3118 Computers and Society +0801.3119 Computers and Society +0801.3133 +0801.3678 Computers and Society +0801.3690 Programming Languages +0801.3853 Software Engineering +0801.4268 Computers and Society +0801.4274 Human-Computer Interaction +0801.4280 Software Engineering +0801.4774 Software Engineering +0801.4775 Software Engineering +0801.4802 Software Engineering +0802.1484 Operator Algebras +0802.1623 +0802.2932 Software Engineering +0802.3209 Analysis of PDEs +0802.3457 Software Engineering +0802.3475 Software Engineering +0802.3476 Human-Computer Interaction +0802.3477 Human-Computer Interaction +0802.3478 Human-Computer Interaction +0802.3479 Human-Computer Interaction +0802.3519 Probability +0802.3939 Human-Computer Interaction +0802.3940 Software Engineering +0803.0011 Other Computer Science +0803.0015 Software Engineering +0803.0159 Computers and Society +0803.0162 Software Engineering +0803.0163 Software Engineering +0803.0164 Human-Computer Interaction +0803.0165 Human-Computer Interaction +0803.0166 Human-Computer Interaction +0803.0167 Human-Computer Interaction +0803.0168 Human-Computer Interaction +0803.0169 Human-Computer Interaction +0803.0199 Number Theory +0803.0494 Phenomenology +0803.0596 Quantum Algebra +0803.0743 +0803.0983 Statistical Mechanics +0803.0987 Differential Geometry +0803.0991 Number Theory +0803.0998 Commutative Algebra +0803.1001 Physics and Society +0803.1006 Functional Analysis +0803.1008 Classical Analysis and ODEs +0803.1012 Analysis of PDEs +0803.1021 Analysis of PDEs +0803.1024 Exactly Solvable and Integrable Systems +0803.1025 Information Theory +0803.1028 Exactly Solvable and Integrable Systems +0803.1046 Strongly Correlated Electrons +0803.1048 +0803.1049 Materials Science +0803.1055 Fluid Dynamics +0803.1059 General Physics +0803.1061 Space Physics +0803.1067 Probability +0803.1070 Soft Condensed Matter +0803.1076 Representation Theory +0803.1079 Superconductivity +0803.1088 Combinatorics +0803.1091 Other Condensed Matter +0803.1096 Information Theory +0803.1099 Statistical Mechanics +0803.1111 Cryptography and Security +0803.1119 Rings and Algebras +0803.1124 +0803.1129 Combinatorics +0803.1139 General Topology +0803.1145 History and Philosophy of Physics +0803.1146 Combinatorics +0803.1151 Phenomenology +0803.1152 +0803.1157 General Physics +0803.1175 General Topology +astro-ph/0701167 +cond-mat/0504002 Superconductivity +cond-mat/0609120 Soft Condensed Matter +hep-th/0605050 Theory +math/0103010 Algebraic Geometry +math/0110102 Algebraic Geometry +math/0501493 Combinatorics +math/9804113 Algebraic Geometry +quant-ph/0605244 +0706.0599 Geometric Topology +0709.0662 Superconductivity +0709.3256 Strongly Correlated Electrons +0802.1851 Classical Physics +0803.0088 Soft Condensed Matter +0803.3379 Pattern Formation and Solitons +0805.0007 +0805.2027 Learning +0806.2035 Populations and Evolution +0807.0087 Populations and Evolution +0807.0381 Phenomenology +math-ph/0510059 +math-ph/0511092 +physics/0701249 General Physics +0705.0700 Methodology +0705.1710 +0705.2592 Strongly Correlated Electrons +0705.4190 Differential Geometry +0706.2539 +0706.3647 Populations and Evolution +0708.3125 Materials Science +0708.4366 Representation Theory +0709.0400 Optimization and Control +0709.1478 +0710.0654 Probability +0710.2936 Analysis of PDEs +0710.4910 Physics and Society +0711.1513 +0711.4021 +0712.1935 Computational Physics +0712.2917 Theory +0801.0484 Superconductivity +0801.0902 Phenomenology +0801.3155 Dynamical Systems +0801.4290 Representation Theory +0801.4443 Geometric Topology +0802.0108 Algebraic Topology +0803.1326 General Physics +0803.2328 Mesoscale and Nanoscale Physics +0803.2412 Number Theory +0803.2514 Theory +0803.2522 Number Theory +0803.2527 Human-Computer Interaction +0803.2529 +0803.2532 +0803.2540 Group Theory +0803.2542 Group Theory +0803.2547 Theory +0803.2549 Applications +0803.2561 Adaptation and Self-Organizing Systems +0803.2562 +0803.2564 +0803.2565 +0803.2571 Chemical Physics +0803.2575 +0803.2576 Probability +0803.2589 History and Philosophy of Physics +0803.2591 +0803.2596 General Physics +0803.2599 Rings and Algebras +0803.2601 Number Theory +0803.2605 Number Theory +0803.2611 Number Theory +0803.2612 Mesoscale and Nanoscale Physics +0803.2620 Differential Geometry +0803.2625 Statistical Mechanics +0803.2629 Commutative Algebra +0803.2633 Phenomenology +0803.2634 Analysis of PDEs +0803.2636 Number Theory +0803.2645 +0803.2651 +0803.2654 Dynamical Systems +0803.2656 Probability +0803.2668 Differential Geometry +0803.2669 +0803.2678 Molecular Networks +0803.2682 +0803.2685 +0803.2695 Neural and Evolutionary Computing +math-ph/0701006 +math/0402082 Algebraic Topology +math/0503364 Functional Analysis +math/0504146 Functional Analysis +math/0510116 Group Theory +math/0511117 Complex Variables +math/0601496 Complex Variables +math/0603139 Operator Algebras +math/0603578 Numerical Analysis +math/0612190 Numerical Analysis +math/0702381 Number Theory +math/0703195 Analysis of PDEs +nucl-th/0605064 +q-bio/0611041 Other Quantitative Biology +quant-ph/0702131 +0704.1414 Probability +0706.2420 K-Theory and Homology +0707.3551 Algebraic Geometry +0707.3704 Algebraic Topology +0707.4673 Geometric Topology +0709.1691 Superconductivity +0710.1898 Algebraic Geometry +0712.2798 Numerical Analysis +0801.4822 Combinatorics +0802.0465 Mesoscale and Nanoscale Physics +0802.3124 Soft Condensed Matter +0803.0752 Strongly Correlated Electrons +0804.3163 General Topology +0805.0383 General Mathematics +0805.1044 +0805.2049 +0806.1101 Strongly Correlated Electrons +0806.1476 Rings and Algebras +0806.1771 +0806.4120 Statistics Theory +0807.0564 Information Theory +0807.0913 Analysis of PDEs +0807.1937 +0807.4022 Chemical Physics +0808.2626 Symplectic Geometry +0808.3990 Networking and Internet Architecture +0809.0679 Experiment +0809.0929 +0809.2593 Representation Theory +0809.2790 +0809.2797 +0809.2801 Representation Theory +0809.2806 Functional Analysis +0809.2811 Soft Condensed Matter +0809.2818 Digital Libraries +0809.2826 +0809.2827 +0809.2828 Analysis of PDEs +0809.2832 Strongly Correlated Electrons +0809.2836 +0809.2840 Information Theory +0809.2855 +0809.2860 +0809.2862 +0809.2864 +0809.2865 +0809.2868 Functional Analysis +0809.2870 +0809.2881 Superconductivity +0809.2884 Discrete Mathematics +0809.2893 +0809.2896 Fluid Dynamics +0809.2901 Mesoscale and Nanoscale Physics +0809.2902 Phenomenology +0809.2915 Experiment +0809.2917 Phenomenology +0809.2922 Mesoscale and Nanoscale Physics +0809.2947 Commutative Algebra +0809.2955 Experiment +0809.2956 Computational Geometry +0809.2957 Combinatorics +0809.2958 Probability +0809.2961 +0809.2964 History and Philosophy of Physics +0809.2970 Data Structures and Algorithms +0809.2971 Probability +0809.2973 Molecular Networks +0809.2989 Probability +cond-mat/0011023 Statistical Mechanics +cond-mat/0503357 Mesoscale and Nanoscale Physics +math/0204307 Algebraic Geometry +math/0506319 Number Theory +math/0607590 Differential Geometry +math/0610376 Representation Theory +math/0611332 Classical Analysis and ODEs +0705.3097 General Physics +0707.4253 Differential Geometry +0709.2141 Geometric Topology +0709.3129 +0710.4521 Quantum Algebra +0710.4822 +0711.4023 Strongly Correlated Electrons +0801.1690 General Physics +0802.4040 Numerical Analysis +0803.3152 +0804.0339 Differential Geometry +0804.1056 Statistics Theory +0804.2190 Number Theory +0804.2192 Mesoscale and Nanoscale Physics +0806.1573 Strongly Correlated Electrons +0806.1678 Chaotic Dynamics +0806.2248 Probability +0807.0558 Statistical Mechanics +0807.4408 Superconductivity +0808.1420 Superconductivity +0808.1528 Spectral Theory +0809.1501 +0809.3896 +0809.4509 General Mathematics +0809.4815 Theory +0810.0291 +0810.0310 Combinatorics +0810.0313 General Physics +0810.0317 +0810.0325 Functional Analysis +0810.0326 Networking and Internet Architecture +0810.0327 +0810.0331 Mesoscale and Nanoscale Physics +0810.0332 Artificial Intelligence +0810.0333 Mesoscale and Nanoscale Physics +0810.0334 Experiment +0810.0335 Experiment +0810.0342 Geometric Topology +0810.0345 Group Theory +0810.0348 +0810.0350 Materials Science +0810.0352 Rings and Algebras +0810.0354 Algebraic Geometry +0810.0355 Atomic Physics +0810.0364 Optimization and Control +0810.0365 Logic +0810.0370 Soft Condensed Matter +0810.0371 +0810.0372 Programming Languages +0810.0384 Cellular Automata and Lattice Gases +0810.0385 +0810.0390 Group Theory +0810.0394 Performance +0810.0396 Number Theory +0810.0399 Group Theory +0810.0406 +0810.0408 +0810.0409 Phenomenology +0810.0411 Representation Theory +0810.0420 Instrumentation and Detectors +0810.0421 Physics and Society +0810.0423 +0810.0427 Combinatorics +0810.0428 Materials Science +0810.0429 Materials Science +0810.0434 Classical Physics +0810.0437 Statistical Mechanics +0810.0440 Rings and Algebras +0810.0443 Group Theory +0810.0444 +0810.0449 Materials Science +0810.0450 Phenomenology +0810.0451 Operator Algebras +0810.0453 Mesoscale and Nanoscale Physics +0810.0457 Space Physics +0810.0458 Mesoscale and Nanoscale Physics +0810.0459 Instrumentation and Detectors +0810.0464 Analysis of PDEs +0810.0469 Experiment +0810.0480 General Physics +0810.0485 Number Theory +0810.0486 Physics and Society +0810.0494 Experiment +0810.0506 +0810.0510 Soft Condensed Matter +0810.0514 +0810.0518 Classical Analysis and ODEs +0810.0519 Geophysics +0810.0520 +0810.0522 Analysis of PDEs +cond-mat/0405451 Statistical Mechanics +cond-mat/0703141 Strongly Correlated Electrons +cond-mat/0703803 Mesoscale and Nanoscale Physics +math/0403242 Differential Geometry +math/0605757 Probability +math/0610682 Probability +math/0611369 Probability +math/0702217 Functional Analysis +quant-ph/0512015 +0704.2496 Mesoscale and Nanoscale Physics +0705.1310 Functional Analysis +0707.0993 Mesoscale and Nanoscale Physics +0707.1040 Materials Science +0708.1041 Mesoscale and Nanoscale Physics +0708.2951 Phenomenology +0708.4043 Optics +0709.1355 Disordered Systems and Neural Networks +0709.4207 +0710.3332 Logic in Computer Science +0710.4246 Disordered Systems and Neural Networks +0710.5772 Symplectic Geometry +0711.0074 +0711.0244 Strongly Correlated Electrons +0711.1324 Mesoscale and Nanoscale Physics +0711.1760 Optics +0711.3517 +0711.3705 Mesoscale and Nanoscale Physics +0711.4729 Other Condensed Matter +0712.0077 General Physics +0712.0589 Disordered Systems and Neural Networks +0712.1027 Methodology +0712.1725 Algebraic Geometry +0712.3583 Strongly Correlated Electrons +0801.0161 Operator Algebras +0802.2928 Number Theory +0802.4184 Disordered Systems and Neural Networks +0803.1919 +0803.2497 General Physics +0803.2977 Phenomenology +0803.3474 Classical Analysis and ODEs +0804.0481 Group Theory +0804.1824 Materials Science +0804.1910 Theory +0804.1953 Algebraic Geometry +0804.1956 Dynamical Systems +0804.1964 +0804.1970 Cryptography and Security +0804.1974 Computational Complexity +0804.1977 +0804.1981 History and Overview +0804.1989 +0804.1997 Geometric Topology +0804.2015 Representation Theory +0804.2016 Materials Science +0804.2018 Complex Variables +0804.2021 Phenomenology +0804.2022 Pattern Formation and Solitons +0804.2023 Statistical Mechanics +0804.2029 Probability +0804.2034 Quantum Algebra +0804.2038 Number Theory +0804.2041 Representation Theory +0804.2043 Networking and Internet Architecture +0804.2045 +0804.2047 +0804.2048 Rings and Algebras +0804.2049 Rings and Algebras +0804.2050 Probability +0804.2051 +0804.2052 Quantum Algebra +0804.2054 General Physics +0804.2058 Networking and Internet Architecture +0804.2067 Fluid Dynamics +0804.2071 Rings and Algebras +0804.2073 Geometric Topology +0804.2074 +0804.2075 Functional Analysis +0804.2085 Representation Theory +0804.2087 Mesoscale and Nanoscale Physics +0804.2091 Soft Condensed Matter +0804.2097 Computer Science and Game Theory +0804.2098 Fluid Dynamics +0804.2100 Chemical Physics +0804.2101 Materials Science +0804.2103 +0804.2111 Phenomenology +0804.2116 +0804.2120 Classical Analysis and ODEs +0804.2122 Algebraic Geometry +0804.2124 Number Theory +0804.2131 Differential Geometry +0804.2132 Differential Geometry +0804.2134 Algebraic Geometry +0804.2136 Chaotic Dynamics +0804.2146 +0804.2154 Algebraic Geometry +0804.2156 Optics +0804.2159 Physics and Society +0804.2164 Materials Science +0804.2166 Number Theory +0804.2178 +0804.2187 Symplectic Geometry +0804.2189 Information Theory +0804.2197 Dynamical Systems +0804.2203 Numerical Analysis +0804.2205 Theory +0804.2209 +0804.2210 Other Condensed Matter +0804.2212 Materials Science +0804.2217 Strongly Correlated Electrons +0804.2219 Algebraic Geometry +0804.2221 Soft Condensed Matter +0804.2222 Algebraic Geometry +0804.2224 Materials Science +0804.2227 Algebraic Geometry +0804.2229 Combinatorics +0804.2236 Statistical Mechanics +0804.2238 +0804.2245 Dynamical Systems +0804.2248 Theory +cond-mat/0408330 Statistical Mechanics +cond-mat/0501092 Statistical Mechanics +cond-mat/0509649 Statistical Mechanics +cond-mat/0602186 Statistical Mechanics +cond-mat/0703646 Soft Condensed Matter +cond-mat/0703780 Other Condensed Matter +math/0408185 Dynamical Systems +math/0411210 Algebraic Geometry +math/0412354 General Mathematics +math/0501118 History and Overview +math/0605430 General Mathematics +math/0608226 Complex Variables +math/0608637 Probability +math/0611857 Differential Geometry +math/0701739 Statistics Theory +physics/0605167 Fluid Dynamics +quant-ph/0211176 +0704.3942 +0705.0772 Algebraic Geometry +0707.0900 +0707.1006 Atomic Physics +0707.2729 Classical Analysis and ODEs +0707.3337 Differential Geometry +0707.3631 Spectral Theory +0707.4036 Adaptation and Self-Organizing Systems +0709.3651 Combinatorics +0710.2844 Statistical Mechanics +0710.3322 +0710.4340 Differential Geometry +0710.4894 +0710.5928 Phenomenology +0711.3553 Quantum Algebra +0712.1544 Phenomenology +0801.4862 Operator Algebras +0801.4882 +0802.1231 Combinatorics +0802.1735 Materials Science +0802.2751 Operator Algebras +0803.1050 Strongly Correlated Electrons +0803.4156 Phenomenology +0804.1384 Mesoscale and Nanoscale Physics +0804.2062 +0805.1588 Phenomenology +0805.1668 +0805.4740 Analysis of PDEs +0806.4731 Materials Science +0806.4894 +0807.1700 +0807.2248 Materials Science +0807.2322 Phenomenology +0807.2378 Data Analysis, Statistics and Probability +0807.2422 Optics +0807.2457 Phenomenology +0807.2464 Information Theory +0807.2471 Information Theory +0807.2473 Combinatorics +0807.2474 Materials Science +0807.2482 Analysis of PDEs +0807.2485 +0807.2487 Group Theory +0807.2491 Physics Education +0807.2492 +0807.2493 Popular Physics +0807.2500 Combinatorics +0807.2506 Pattern Formation and Solitons +0807.2507 +0807.2508 Theory +0807.2514 Phenomenology +0807.2519 Materials Science +0807.2520 +0807.2527 Mesoscale and Nanoscale Physics +0807.2528 +0807.2532 +0807.2538 Exactly Solvable and Integrable Systems +0807.2544 Statistics Theory +0807.2548 +0807.2550 Neurons and Cognition +0807.2552 Commutative Algebra +0807.2557 Classical Physics +0807.2563 Statistics Theory +0807.2564 Soft Condensed Matter +0807.2565 Numerical Analysis +0807.2566 +0807.2567 +0807.2569 Machine Learning +0807.2582 Atomic Physics +0807.2588 Applications +0807.2598 Statistics Theory +0807.2599 Phenomenology +0807.2609 +0807.2616 Materials Science +0807.2618 Representation Theory +0807.2619 Statistical Mechanics +0807.2628 Human-Computer Interaction +0807.2629 Number Theory +math/0403483 Differential Geometry +math/0601480 Differential Geometry +physics/0103010 General Physics +physics/0606240 General Physics +quant-ph/0609014 +0707.0756 Physics and Society +0708.0460 +0708.0593 +0709.3880 Computer Science and Game Theory +0710.0959 Theory +0711.1494 Rings and Algebras +0711.1707 +0711.3490 Combinatorics +0712.1387 Mesoscale and Nanoscale Physics +0802.0873 Phenomenology +0802.4192 Statistics Theory +0803.3545 +0804.1472 Strongly Correlated Electrons +0804.1495 Number Theory +0804.2989 Theory +0805.0373 +0805.3987 Algebraic Geometry +0806.1307 Functional Analysis +0806.2259 Statistical Mechanics +0806.3170 Phenomenology +0807.4094 Superconductivity +0808.0119 Materials Science +0808.2452 Mesoscale and Nanoscale Physics +0808.2916 Strongly Correlated Electrons +0808.3994 Phenomenology +0808.4051 Statistics Theory +0808.4062 Physics and Society +0810.1172 General Physics +0810.1637 +0810.4221 Probability +0811.1115 Statistics Theory +0811.3763 Strongly Correlated Electrons +0811.4206 Number Theory +0811.4652 Number Theory +0812.0277 Dynamical Systems +0812.0555 Dynamical Systems +0812.0972 Networking and Internet Architecture +0812.2390 Logic in Computer Science +0812.2480 +0812.2497 Statistical Mechanics +0812.2498 Complex Variables +0812.2499 Group Theory +0812.2512 Materials Science +0812.2518 Cryptography and Security +0812.2522 Combinatorics +0812.2529 Multimedia +0812.2533 General Mathematics +0812.2535 Artificial Intelligence +0812.2539 Popular Physics +0812.2540 Phenomenology +0812.2541 Popular Physics +0812.2543 Networking and Internet Architecture +0812.2544 Networking and Internet Architecture +0812.2547 Differential Geometry +0812.2549 +0812.2550 Differential Geometry +0812.2552 Dynamical Systems +0812.2553 Number Theory +0812.2554 Spectral Theory +0812.2557 Soft Condensed Matter +0812.2558 Geometric Topology +0812.2559 Information Theory +0812.2562 Numerical Analysis +0812.2566 Commutative Algebra +0812.2569 Phenomenology +0812.2573 Dynamical Systems +0812.2574 Computer Vision and Pattern Recognition +0812.2575 Computer Vision and Pattern Recognition +0812.2580 Materials Science +0812.2582 +0812.2589 Classical Analysis and ODEs +0812.2590 Group Theory +0812.2593 Strongly Correlated Electrons +0812.2599 Data Structures and Algorithms +0812.2602 Information Theory +0812.2603 Trading and Market Microstructure +0812.2604 Portfolio Management +0812.2613 Number Theory +0812.2615 +0812.2619 Metric Geometry +0812.2621 +0812.2627 +0812.2628 Methodology +0812.2639 Operator Algebras +0812.2641 +0812.2644 Differential Geometry +0812.2646 Dynamical Systems +0812.2647 Algebraic Geometry +0812.2648 Chaotic Dynamics +0812.2649 Number Theory +0812.2650 +0812.2654 +0812.2657 Algebraic Geometry +0812.2658 Algebraic Geometry +0812.2659 Combinatorics +0812.2662 Algebraic Geometry +0812.2667 Functional Analysis +0812.2670 Atomic Physics +0812.2675 Theory +0812.2676 Analysis of PDEs +0812.2677 Analysis of PDEs +0812.2680 Analysis of PDEs +0812.2685 Analysis of PDEs +0812.2687 Algebraic Topology +0812.2688 Analysis of PDEs +0812.2697 Strongly Correlated Electrons +0812.2698 +0812.2706 Dynamical Systems +0812.2718 Dynamical Systems +0812.2722 Strongly Correlated Electrons +0812.2730 Mesoscale and Nanoscale Physics +0812.2739 Algebraic Geometry +0812.2741 Rings and Algebras +0812.2743 Differential Geometry +0812.2744 Classical Analysis and ODEs +0812.2747 Materials Science +0812.2754 Complex Variables +0812.2758 Materials Science +0812.2759 Materials Science +0812.2760 Materials Science +0812.2763 +0812.2766 Phenomenology +0812.2772 +0812.2778 Analysis of PDEs +0812.2779 Biological Physics +0812.2780 Differential Geometry +0812.2782 Algebraic Geometry +0812.2785 Artificial Intelligence +0812.2787 Populations and Evolution +0812.2792 Chemical Physics +0812.2796 Materials Science +0812.2800 +0812.2805 +0812.2817 Combinatorics +0812.2820 Combinatorics +0812.2824 +0812.2830 Other Condensed Matter +0812.2833 General Physics +0812.2839 Probability +0812.2845 Dynamical Systems +0812.2859 +0812.2860 Number Theory +0812.2863 Probability +0812.2869 +0812.2873 Phenomenology +0812.2874 Databases +0812.2876 +0812.2877 +0812.2879 Databases +0812.2891 Networking and Internet Architecture +0812.2892 Computer Vision and Pattern Recognition +astro-ph/0702290 +gr-qc/0605054 +gr-qc/0610105 +math-ph/0604057 +math/0411031 Number Theory +math/0611885 Quantum Algebra +math/0612235 Logic +0704.3751 Statistical Mechanics +0705.1689 Statistical Mechanics +0706.2439 Geometric Topology +0707.0325 +0708.0653 +0708.1239 Statistical Mechanics +0708.3064 +0709.0556 Statistical Mechanics +0709.1669 Strongly Correlated Electrons +0709.3017 Other Condensed Matter +0710.2751 Probability +0711.0758 Mesoscale and Nanoscale Physics +0712.0141 +0712.1265 Other Condensed Matter +0712.3109 Strongly Correlated Electrons +0712.3666 +0801.0755 Quantum Algebra +0801.2608 +0802.0216 General Physics +0802.0379 Other Condensed Matter +0802.0500 Strongly Correlated Electrons +0802.0524 Exactly Solvable and Integrable Systems +0802.1336 Operator Algebras +0802.2943 +0802.3110 Information Theory +0803.3916 Materials Science +0804.0122 +0804.2123 Theory +0804.4216 History and Philosophy of Physics +0804.4534 +0805.0313 +0805.0319 Superconductivity +0805.0322 Materials Science +0805.0324 Dynamical Systems +0805.0333 +0805.0336 Theory +0805.0337 Information Theory +0805.0339 +0805.0341 Number Theory +0805.0343 +0805.0345 Algebraic Topology +0805.0347 Chaotic Dynamics +0805.0349 Algebraic Geometry +0805.0355 Strongly Correlated Electrons +0805.0356 +0805.0359 Rings and Algebras +0805.0360 Computational Engineering, Finance, and Science +0805.0363 General Physics +0805.0366 General Physics +0805.0368 Dynamical Systems +0805.0369 Soft Condensed Matter +0805.0374 Probability +0805.0375 Information Theory +0805.0381 Soft Condensed Matter +0805.0382 Soft Condensed Matter +0805.0387 +0805.0389 Data Structures and Algorithms +0805.0390 Fluid Dynamics +0805.0393 Instrumentation and Detectors +0805.0394 Combinatorics +0805.0396 Group Theory +0805.0400 Probability +0805.0403 Theory +0805.0409 +0805.0410 Combinatorics +0805.0412 +0805.0415 Combinatorics +0805.0419 Chaotic Dynamics +0805.0428 Adaptation and Self-Organizing Systems +0805.0429 Analysis of PDEs +0805.0430 Materials Science +0805.0433 Functional Analysis +0805.0434 Geometric Topology +0805.0436 General Physics +0805.0438 Information Theory +0805.0447 Probability +0805.0455 Other Computer Science +0805.0458 Classical Analysis and ODEs +0805.0460 Materials Science +0805.0464 Classical Analysis and ODEs +0805.0465 Statistics Theory +0805.0467 Commutative Algebra +0805.0468 Rings and Algebras +0805.0480 Probability +0805.0484 Biomolecules +0805.0492 Algebraic Geometry +0805.0495 Optics +0805.0505 Strongly Correlated Electrons +0805.0509 Algebraic Topology +0805.0510 Information Theory +0805.0513 +0805.0514 Information Theory +0805.0516 Information Theory +0805.0518 Materials Science +0805.0521 Information Theory +0805.0522 Algebraic Geometry +0805.0525 Medical Physics +0805.0527 Chemical Physics +0805.0544 Analysis of PDEs +0805.0547 Space Physics +0805.0557 Probability +0805.0560 Computers and Society +0805.0562 General Mathematics +0805.0567 Phenomenology +0805.0569 +0805.0571 +0805.0574 Strongly Correlated Electrons +0805.0579 +0805.0581 Fluid Dynamics +0805.0582 K-Theory and Homology +0805.0585 Discrete Mathematics +0805.0587 +0805.0589 Information Theory +0805.0592 Neurons and Cognition +cond-mat/0408142 Materials Science +cond-mat/0604447 Materials Science +cond-mat/0609379 Statistical Mechanics +math/0308099 Differential Geometry +math/0411356 Combinatorics +math/0509004 Combinatorics +math/0601198 Differential Geometry +math/0601582 Differential Geometry +math/0606468 Algebraic Geometry +math/0608342 Differential Geometry +math/0701603 Probability +physics/0312096 General Physics +quant-ph/0409065 +quant-ph/0506012 +0704.0248 Optics +0704.0758 +0704.1486 Strongly Correlated Electrons +0704.1571 Discrete Mathematics +0704.1982 Differential Geometry +0704.3169 Complex Variables +0704.3765 Optics +0705.1432 Mesoscale and Nanoscale Physics +0705.3266 Optics +0706.3874 Rings and Algebras +0707.0057 Superconductivity +0707.1620 Mesoscale and Nanoscale Physics +0707.1924 Disordered Systems and Neural Networks +0707.3178 Algebraic Geometry +0707.4152 Mesoscale and Nanoscale Physics +0707.4461 Superconductivity +0708.0028 Materials Science +0709.0343 +0709.2480 Mesoscale and Nanoscale Physics +0709.3164 Mesoscale and Nanoscale Physics +0709.4078 Commutative Algebra +0709.4411 Combinatorics +0710.0431 Information Theory +0710.3601 +0710.3985 Atomic Physics +0711.0110 Computational Complexity +0711.0855 Materials Science +0711.3028 K-Theory and Homology +0712.3280 Strongly Correlated Electrons +0801.0892 Theory +0801.1177 Commutative Algebra +0801.3211 Differential Geometry +0801.3275 +0801.4574 Theory +0801.4623 Experiment +0801.4682 Statistical Mechanics +0801.4686 Disordered Systems and Neural Networks +0802.0005 Algebraic Geometry +0802.0006 +0802.0010 +0802.0011 +0802.0012 Analysis of PDEs +0802.0016 +0802.0017 Data Structures and Algorithms +0802.0029 Biomolecules +0802.0030 Information Theory +0802.0039 Geometric Topology +0802.0054 Number Theory +0802.0059 Fluid Dynamics +0802.0063 Soft Condensed Matter +0802.0064 Dynamical Systems +0802.0065 Rings and Algebras +0802.0066 Dynamical Systems +0802.0067 Materials Science +0802.0070 +0802.0072 Disordered Systems and Neural Networks +0802.0074 Neurons and Cognition +0802.0075 Combinatorics +0802.0079 +0802.0083 +0802.0098 Differential Geometry +0802.0102 Number Theory +0802.0110 +0802.0114 Fluid Dynamics +0802.0117 Optimization and Control +0802.0127 Superconductivity +0802.0130 Optimization and Control +0802.0134 Materials Science +0802.0148 Atomic Physics +0802.0151 +0802.0155 +0802.0156 Logic +0802.0159 Complex Variables +0802.0166 Dynamical Systems +0802.0173 Quantum Algebra +0802.0183 Classical Analysis and ODEs +0802.0186 Materials Science +0802.0187 Probability +0802.0188 Other Computer Science +0802.0189 Dynamical Systems +0802.0190 +0802.0191 Methodology +0802.0192 Functional Analysis +0802.0193 Materials Science +0802.0194 Number Theory +cond-mat/0310312 Materials Science +cond-mat/0512434 Materials Science +cond-mat/0610052 Strongly Correlated Electrons +cond-mat/0611784 Materials Science +math-ph/0309005 +math/0207189 Differential Geometry +math/0603742 Algebraic Geometry +math/0606791 Algebraic Geometry +math/0610418 Operator Algebras +physics/0509117 Chemical Physics +quant-ph/0608101 +quant-ph/0609172 +quant-ph/0610121 +quant-ph/0701150 +0704.1789 Number Theory +0704.2048 Combinatorics +0705.4442 Databases +0705.4637 Strongly Correlated Electrons +0706.2925 Mesoscale and Nanoscale Physics +0706.3160 Mesoscale and Nanoscale Physics +0707.2961 Strongly Correlated Electrons +0707.2970 +0708.3181 Genomics +0709.1442 Optics +0709.1607 Differential Geometry +0709.2827 Strongly Correlated Electrons +0710.1058 +0710.1443 Representation Theory +0710.3367 +0710.3931 Mesoscale and Nanoscale Physics +0710.4966 +0711.0862 +0711.1322 General Topology +0711.2283 Atomic and Molecular Clusters +0711.3230 Strongly Correlated Electrons +0711.4495 Statistical Mechanics +0712.1651 Differential Geometry +0712.1660 Strongly Correlated Electrons +0712.2127 Plasma Physics +0712.3359 Phenomenology +0712.3396 Populations and Evolution +0801.0590 Discrete Mathematics +0801.1111 +0801.1113 Theory +0801.1124 Soft Condensed Matter +0801.1128 Phenomenology +0801.1130 Analysis of PDEs +0801.1133 Quantum Algebra +0801.1136 Information Theory +0801.1138 Information Theory +0801.1148 Theory +0801.1159 Mesoscale and Nanoscale Physics +0801.1161 +0801.1162 Strongly Correlated Electrons +0801.1168 Algebraic Geometry +0801.1174 Theory +0801.1175 Instrumentation and Detectors +0801.1178 Materials Science +0801.1181 +0801.1182 Theory +0801.1183 Commutative Algebra +0801.1186 Mesoscale and Nanoscale Physics +0801.1189 Cellular Automata and Lattice Gases +0801.1196 Probability +0801.1197 Chaotic Dynamics +0801.1207 K-Theory and Homology +0801.1209 Probability +0801.1210 Distributed, Parallel, and Cluster Computing +0801.1212 Rings and Algebras +0801.1214 Algebraic Geometry +0801.1218 +0801.1219 Programming Languages +0801.1221 Probability +0801.1222 Strongly Correlated Electrons +0801.1228 +0801.1233 Operator Algebras +0801.1237 +0801.1239 Combinatorics +0801.1246 Differential Geometry +0801.1261 +0801.1265 Probability +0801.1268 Strongly Correlated Electrons +0801.1275 Artificial Intelligence +0801.1280 Rings and Algebras +0801.1283 +0801.1284 Theory +0801.1288 Algebraic Geometry +0801.1290 Strongly Correlated Electrons +0801.1296 Cell Behavior +0801.1301 Instrumentation and Detectors +0801.1303 Strongly Correlated Electrons +0801.1304 Materials Science +0801.1306 Information Theory +0801.1307 Computational Complexity +0801.1308 +0801.1309 Probability +0801.1317 +cond-mat/0603547 Strongly Correlated Electrons +cond-mat/0611063 Disordered Systems and Neural Networks +cond-mat/0612076 Statistical Mechanics +math/0501285 Number Theory +math/0504207 Group Theory +math/0504522 Combinatorics +math/0606207 Number Theory +math/0608521 Number Theory +math/0609686 Dynamical Systems +math/0611645 Statistics Theory +math/0701587 Combinatorics +math/0702553 Probability +quant-ph/0503236 +0707.0848 +0707.3049 +0708.0687 Superconductivity +0708.3512 +0711.0157 +0711.1538 Strongly Correlated Electrons +0711.3744 Materials Science +0711.4075 Information Theory +0712.1889 +0801.0874 Combinatorics +0801.2793 Computational Geometry +0802.2186 Statistics Theory +0802.3202 Strongly Correlated Electrons +0803.1329 +0803.2383 Optics +0803.3734 Differential Geometry +0804.0027 Combinatorics +0804.1603 Optimization and Control +0804.1849 Combinatorics +0804.2439 Soft Condensed Matter +0805.0767 Theory +0805.0804 Commutative Algebra +0805.0955 Statistical Mechanics +0805.1064 +0805.1065 +0805.1077 Rings and Algebras +0805.1082 Commutative Algebra +0805.1096 Artificial Intelligence +0805.1097 Space Physics +0805.1099 +0805.1112 Materials Science +0805.1131 +0805.1140 Dynamical Systems +0805.1147 Representation Theory +0805.1151 Strongly Correlated Electrons +0805.1153 Neural and Evolutionary Computing +0805.1173 Analysis of PDEs +0805.1176 +0805.1177 +0805.1179 Statistics Theory +0805.1190 Numerical Analysis +0805.1191 +0805.1198 Probability +0805.1209 Information Theory +0805.1210 Disordered Systems and Neural Networks +0805.1211 Algebraic Geometry +0805.1213 Computer Science and Game Theory +0805.1222 +astro-ph/0412323 +cond-mat/0511663 Materials Science +cond-mat/0608616 Other Condensed Matter +math/0310009 Algebraic Geometry +math/0311284 Algebraic Geometry +math/0407176 Geometric Topology +math/0609324 Complex Variables +math/0612492 Operator Algebras +physics/0411124 Space Physics +quant-ph/0702201 +0704.2782 Atmospheric and Oceanic Physics +0706.2718 Quantum Algebra +0708.2354 +0708.3544 Quantum Algebra +0709.1627 Commutative Algebra +0711.0701 Number Theory +0711.0916 Biomolecules +0711.3023 Algebraic Geometry +0712.4063 Disordered Systems and Neural Networks +0802.2106 Theory +0802.2169 +0803.1581 Optics +0803.2861 Superconductivity +0803.3355 Number Theory +0804.0836 +0804.1704 Strongly Correlated Electrons +0804.1982 Computer Vision and Pattern Recognition +0804.3575 Learning +0805.3857 Materials Science +0805.4590 Mesoscale and Nanoscale Physics +0806.0057 Statistical Mechanics +0806.3274 Genomics +0806.3615 Representation Theory +0806.4724 Mesoscale and Nanoscale Physics +0807.1636 Atomic Physics +0807.4997 Soft Condensed Matter +0807.5084 Phenomenology +0808.0002 +0808.0004 +0808.0005 +0808.0011 Experiment +0808.0017 Experiment +0808.0019 Algebraic Geometry +0808.0028 Phenomenology +0808.0035 Probability +0808.0041 Materials Science +0808.0043 Biomolecules +0808.0048 Experiment +0808.0050 Experiment +0808.0055 Software Engineering +0808.0059 +0808.0060 Biological Physics +0808.0064 Geometric Topology +0808.0065 Superconductivity +0808.0069 Materials Science +0808.0070 +0808.0074 Experiment +0808.0084 +0808.0086 Experiment +0808.0095 General Mathematics +0808.0096 Experiment +0808.0098 General Physics +0808.0108 Quantum Algebra +0808.0110 Analysis of PDEs +0808.0113 Algebraic Geometry +0808.0114 Experiment +0808.0115 Materials Science +0808.0117 Geometric Topology +0808.0123 Analysis of PDEs +0808.0126 Classical Physics +0808.0130 Instrumentation and Detectors +0808.0134 Physics and Society +0808.0142 Dynamical Systems +0808.0145 +0808.0146 Functional Analysis +0808.0149 Operator Algebras +0808.0157 Algebraic Geometry +0808.0162 Experiment +0808.0164 +0808.0166 Superconductivity +0808.0167 Differential Geometry +0808.0174 +cond-mat/0508178 Strongly Correlated Electrons +cond-mat/0607545 Mesoscale and Nanoscale Physics +cs/0411034 Artificial Intelligence +math/0404409 Functional Analysis +math/0404414 Functional Analysis +math/0508105 Rings and Algebras +math/0611129 Algebraic Geometry +math/0611501 Quantum Algebra +math/0612859 Combinatorics +physics/0610109 Atmospheric and Oceanic Physics +q-bio/0702033 Neurons and Cognition +quant-ph/0702019 +0707.2853 Statistical Mechanics +0707.2989 +0708.2857 Phenomenology +0710.0167 Algebraic Topology +0710.1290 Analysis of PDEs +0710.2895 +0801.0276 Chaotic Dynamics +cs/0610114 Computational Complexity +hep-th/0606023 Theory +0705.0456 Statistics Theory +0706.1276 Algebraic Topology +0706.2373 Superconductivity +0708.4317 Plasma Physics +0709.2004 Other Condensed Matter +0710.3928 Combinatorics +0710.5115 General Physics +0801.2637 Mesoscale and Nanoscale Physics +0802.3436 Probability +0803.2156 Other Condensed Matter +0804.0802 +0805.0463 Applications +0805.1567 Discrete Mathematics +0806.0587 Other Condensed Matter +0806.0982 +0806.1025 Complex Variables +0806.4035 +0806.4726 Superconductivity +0807.2087 +0808.0116 Statistical Mechanics +0808.1736 Disordered Systems and Neural Networks +0808.2658 Differential Geometry +0809.2206 +0809.2468 Statistical Mechanics +0809.2572 Geometric Topology +0810.0089 Mesoscale and Nanoscale Physics +0810.0825 Plasma Physics +0810.1007 Complex Variables +0810.1487 Representation Theory +0811.0785 General Physics +0811.1429 Experiment +0811.1560 Phenomenology +0811.1927 +0811.2229 Analysis of PDEs +0811.2232 Adaptation and Self-Organizing Systems +0811.2233 Algebraic Geometry +0811.2238 Analysis of PDEs +0811.2241 Mesoscale and Nanoscale Physics +0811.2243 Classical Analysis and ODEs +0811.2249 Numerical Analysis +0811.2256 Analysis of PDEs +0811.2257 Phenomenology +0811.2265 +0811.2267 Algebraic Topology +0811.2272 +0811.2273 Functional Analysis +0811.2274 Algebraic Topology +0811.2276 Probability +0811.2277 Differential Geometry +0811.2281 Statistics Theory +0811.2282 Disordered Systems and Neural Networks +0811.2288 Phenomenology +0811.2289 Geometric Topology +0811.2291 Group Theory +0811.2299 Statistics Theory +0811.2302 +0811.2304 Number Theory +0811.2306 Chaotic Dynamics +0811.2313 Strongly Correlated Electrons +0811.2314 Materials Science +0811.2321 Soft Condensed Matter +0811.2324 Representation Theory +0811.2326 Plasma Physics +0811.2336 +0811.2337 Spectral Theory +0811.2340 Number Theory +0811.2342 Materials Science +0811.2352 Complex Variables +0811.2356 Information Theory +0811.2358 +0811.2365 Rings and Algebras +0811.2385 +0811.2389 Group Theory +0811.2395 Classical Analysis and ODEs +0811.2399 Phenomenology +0811.2402 +0811.2406 Pattern Formation and Solitons +0811.2407 Algebraic Geometry +0811.2410 Phenomenology +0811.2411 +0811.2412 Soft Condensed Matter +cond-mat/0406079 Strongly Correlated Electrons +cond-mat/0611206 Other Condensed Matter +cond-mat/0702371 Superconductivity +cond-mat/0703443 Other Condensed Matter +math/0101249 Differential Geometry +math/0506362 Group Theory +math/0609770 Representation Theory +math/0611938 Differential Geometry +math/0702327 Algebraic Geometry +0704.0016 Phenomenology +0704.0718 +0704.0799 +0704.1071 +0704.1383 +0704.1519 +0704.1532 +0704.1927 +0704.2095 +0704.2096 +0704.2783 +0704.3076 +0704.3467 +0704.3697 +0705.0001 +0705.0027 +0705.0332 +0705.0384 Phenomenology +0705.0445 +0705.0484 +0705.0696 +0705.0889 +0705.1032 +0705.1287 Combinatorics +0705.1301 +0705.1311 +0705.1553 Phenomenology +0705.1723 +0705.1781 +0705.1963 +0705.2185 +0705.2406 +0705.2536 +0705.2683 +0705.2992 +0705.3154 +0705.3340 +0705.3894 +0705.3980 +0705.4234 +0705.4240 +0706.0127 Theory +0706.0451 +0706.1125 Phenomenology +0706.1314 +0706.1511 +0706.1604 +0706.1703 +0706.1779 +0706.1891 +0706.1931 +0706.2192 Phenomenology +0706.2594 +0706.2633 Theory +0706.3018 +0706.3290 +0706.3297 Phenomenology +0706.3700 +0706.4086 +0706.4250 +0707.0585 +0707.0838 Theory +0707.1284 Theory +0707.1346 +0707.1495 +0707.1730 +0707.1792 +0707.1970 +0707.1982 +0707.2070 +0707.2279 Experiment +0707.3130 +0707.3199 Phenomenology +0707.3344 Phenomenology +0707.3446 Phenomenology +0707.3677 +0707.3736 Phenomenology +0707.3993 Phenomenology +0707.4162 Lattice +0707.4217 Theory +0707.4410 Theory +0707.4659 +0708.0031 +0708.0122 +0708.0441 +0708.0830 +0708.1353 +0708.1603 +0708.1688 +0708.1762 Theory +0708.2123 Theory +0708.2223 Phenomenology +0708.2655 Phenomenology +0708.2728 +0708.3212 +0708.3493 +0708.3674 +0708.3759 Phenomenology +0709.0042 Phenomenology +0709.0088 Theory +0709.0123 +0709.0167 Theory +0709.0501 +0709.0776 Theory +0709.0777 Phenomenology +0709.0964 Statistical Mechanics +0709.1144 +0709.1193 Phenomenology +0709.1224 +0709.1391 +0709.1553 Phenomenology +0709.1586 Phenomenology +0709.1619 +0709.1769 +0709.1867 +0709.1915 +0709.1944 +0709.2042 Theory +0709.2195 +0709.3696 Accelerator Physics +0709.3839 +0709.4040 +0709.4325 Theory +0709.4625 Experiment +0709.4635 Phenomenology +0709.4639 Phenomenology +0710.0233 Phenomenology +0710.0581 Phenomenology +0710.0767 +0710.1294 Phenomenology +0710.1380 Theory +0710.1441 Phenomenology +0710.1569 Phenomenology +0710.1681 Phenomenology +0710.1812 Theory +0710.2485 Accelerator Physics +0710.3107 Theory +0710.3213 Experiment +0710.3743 Theory +0710.3923 +0710.4216 Phenomenology +0710.4413 Phenomenology +0710.5089 Phenomenology +0710.5339 Theory +0710.5373 +0710.5645 +0710.5650 Phenomenology +0710.5723 +0710.5731 +0710.5744 +0710.5922 +0710.5923 +0711.0470 +0711.0712 Theory +0711.0816 +0711.0966 +0711.1075 Phenomenology +0711.1123 +0711.1138 +0711.1280 +0711.1297 +0711.1585 +0711.1611 Phenomenology +0711.1793 +0711.1950 +0711.2321 +0711.2464 Phenomenology +0711.2698 +0711.2707 +0711.2882 Phenomenology +0711.2921 Phenomenology +0711.2936 +0711.2966 +0711.3240 Theory +0711.3360 +0711.3760 Phenomenology +0711.3854 +0711.4025 +0711.4108 Theory +0711.4471 Phenomenology +0711.4547 Theory +0711.4556 Phenomenology +0711.4683 Theory +0711.4815 +0711.4854 +0711.4895 +0711.4972 Theory +0712.0017 +0712.0118 Phenomenology +0712.0135 Theory +0712.0159 Theory +0712.0490 Phenomenology +0712.0526 Phenomenology +0712.0568 Phenomenology +0712.0621 Phenomenology +0712.1137 +0712.1185 +0712.1225 Theory +0712.1569 Theory +0712.1713 +0712.1888 +0712.1977 +0712.2697 +0712.2930 Lattice +0712.2968 Phenomenology +0712.3151 +0712.3362 Experiment +0712.3397 +0712.3399 Accelerator Physics +0712.3401 Quantum Algebra +0712.3527 +0712.3536 +0712.3846 +0712.4136 Plasma Physics +0712.4181 +0712.4328 Phenomenology +0712.4331 Phenomenology +0801.0198 Theory +0801.0200 Theory +0801.0355 +0801.0415 Phenomenology +0801.0430 Theory +0801.0444 Theory +0801.0586 Algebraic Geometry +0801.0587 Lattice +0801.0705 +0801.0742 +0801.1199 +0801.1486 +0801.1508 Theory +0801.1700 +0801.1732 Other Condensed Matter +0801.1800 Phenomenology +0801.1815 Other Condensed Matter +0801.1826 Phenomenology +0801.1880 Phenomenology +0801.2017 +0801.2043 Phenomenology +0801.2238 Phenomenology +0801.2288 Phenomenology +0801.2572 +0801.2688 Theory +0801.2717 +0801.2733 Phenomenology +0801.2739 Theory +0801.2741 +0801.2771 +0801.2811 Phenomenology +0801.2990 Experiment +0801.3126 Phenomenology +0801.3281 Phenomenology +0801.3385 Theory +0801.3497 +0801.3514 +0801.3827 +0801.3867 Phenomenology +0801.4001 +0801.4011 Other Condensed Matter +0801.4023 +0801.4028 Phenomenology +0801.4125 +0801.4200 +0801.4214 Theory +0801.4489 +0802.0200 +0802.0863 Lattice +0802.0877 +0802.0990 +0802.1086 +0802.1146 +0802.1208 Phenomenology +0802.1515 +0802.1634 +0802.1794 +0802.2041 +0802.2102 +0802.2117 Theory +0802.2642 Phenomenology +0802.2934 Phenomenology +0802.2958 Theory +0802.3332 +0802.3367 Phenomenology +0802.3377 +0802.3967 Theory +0802.4082 +0802.4336 +0802.4349 +0802.4379 Theory +0802.4416 Phenomenology +0803.0032 Databases +0803.0055 Computational Complexity +0803.0065 Theory +0803.0135 Analysis of PDEs +0803.0184 +0803.0187 +0803.0189 Distributed, Parallel, and Cluster Computing +0803.0202 General Physics +0803.0214 General Physics +0803.0249 Instrumentation and Detectors +0803.0264 Geophysics +0803.0275 Classical Physics +0803.0280 Chaotic Dynamics +0803.0402 Statistics Theory +0803.0439 Numerical Analysis +0803.0523 Lattice +0803.0525 Computation +0803.0528 Networking and Internet Architecture +0803.0529 Other Computer Science +0803.0581 +0803.0653 Cryptography and Security +0803.0666 Software Engineering +0803.0797 Lattice +0803.0803 Networking and Internet Architecture +0803.0829 Probability +0803.0835 Statistics Theory +0803.0847 Statistics Theory +0803.0850 Genomics +0803.0860 Statistics Theory +0803.0867 +0803.0868 Statistics Theory +0803.0874 Mathematical Software +0803.0902 Optics +0803.0954 Databases +0803.0956 Discrete Mathematics +0803.0966 Databases +0803.1029 Statistics Theory +0803.1104 Human-Computer Interaction +0803.1109 Number Theory +0803.1110 Commutative Algebra +0803.1112 Statistics Theory +0803.1115 Group Theory +0803.1126 Optimization and Control +0803.1221 Robotics +0803.1227 Information Theory +0803.1246 +0803.1254 +0803.1256 Soft Condensed Matter +0803.1296 Computational Geometry +0803.1306 Geophysics +0803.1308 Geophysics +0803.1310 Number Theory +0803.1368 Lattice +0803.1371 Theory +0803.1395 +0803.1396 +0803.1432 +0803.1433 +0803.1434 Geophysics +0803.1435 Geophysics +0803.1457 Artificial Intelligence +0803.1555 Databases +0803.1570 Optimization and Control +0803.1573 Fluid Dynamics +0803.1580 Algebraic Geometry +0803.1586 Computer Vision and Pattern Recognition +0803.1592 Phenomenology +0803.1598 Neural and Evolutionary Computing +0803.1600 Neural and Evolutionary Computing +0803.1610 Networking and Internet Architecture +0803.1664 Probability +0803.1709 Statistics Theory +0803.1719 +0803.1736 Statistics Theory +0803.1752 Statistics Theory +0803.1753 Statistics Theory +0803.1764 Networking and Internet Architecture +0803.1774 Other Condensed Matter +0803.1780 Analysis of PDEs +0803.1781 Analysis of PDEs +0803.1783 Analysis of PDEs +0803.1829 Atomic Physics +0803.1830 Logic in Computer Science +0803.1841 Logic in Computer Science +0803.1842 Logic in Computer Science +0803.1850 Theory +0803.1908 Networking and Internet Architecture +0803.1909 Statistics Theory +0803.1911 +0803.1912 Geophysics +0803.1913 Geophysics +0803.1922 Statistics Theory +0803.1931 Statistics Theory +0803.1942 Statistics Theory +0803.1943 Dynamical Systems +0803.1944 Networking and Internet Architecture +0803.1956 Statistics Theory +0803.1961 Statistics Theory +0803.1971 Statistics Theory +0803.1975 Symbolic Computation +0803.1978 Optimization and Control +0803.2092 Quantitative Methods +0803.2093 Mathematical Software +0803.2095 Statistics Theory +0803.2100 Statistics Theory +0803.2108 Methodology +0803.2118 Statistics Theory +0803.2119 Statistics Theory +0803.2121 Statistics Theory +0803.2129 Networking and Internet Architecture +0803.2132 Statistics Theory +0803.2135 Discrete Mathematics +0803.2160 Number Theory +0803.2162 Statistics Theory +0803.2171 Statistics Theory +0803.2181 Statistics Theory +0803.2220 Information Retrieval +0803.2305 Logic in Computer Science +0803.2314 Neural and Evolutionary Computing +0803.2315 Other Computer Science +0803.2317 Logic in Computer Science +0803.2369 Complex Variables +0803.2371 Numerical Analysis +0803.2394 Computation +0803.2419 Medical Physics +0803.2434 Dynamical Systems +0803.2441 Probability +0803.2469 Numerical Analysis +0803.2546 +0803.2559 Logic in Computer Science +0803.2583 Algebraic Geometry +0803.2584 Phenomenology +0803.2593 Probability +0803.2610 +0803.2615 Data Structures and Algorithms +0803.2616 Geometric Topology +0803.2622 Applications +0803.2665 +0803.2699 Combinatorics +0803.2728 Lattice +0803.2799 Phenomenology +0803.2810 Combinatorics +0803.2813 Combinatorics +0803.2831 Materials Science +0803.2837 Materials Science +0803.2842 Data Structures and Algorithms +0803.2856 Computation and Language +0803.2934 Statistics Theory +0803.2959 Analysis of PDEs +0803.2963 Statistics Theory +0803.2980 Theory +0803.2984 Statistics Theory +0803.2986 Statistics Theory +0803.2999 Statistics Theory +0803.3007 Statistics Theory +0803.3017 Statistics Theory +0803.3043 Phenomenology +0803.3056 Strongly Correlated Electrons +0803.3057 General Mathematics +0803.3110 Statistical Mechanics +0803.3124 Statistics Theory +0803.3126 Statistics Theory +0803.3127 Statistics Theory +0803.3130 Statistics Theory +0803.3131 Functional Analysis +0803.3134 Statistics Theory +0803.3135 Statistics Theory +0803.3136 Statistics Theory +0803.3160 Classical Physics +0803.3186 Human-Computer Interaction +0803.3192 Artificial Intelligence +0803.3197 Lattice +0803.3221 +0803.3223 +0803.3224 Databases +0803.3230 Cryptography and Security +0803.3269 +0803.3316 +0803.3338 Networking and Internet Architecture +0803.3343 Applications +0803.3347 +0803.3411 +0803.3442 +0803.3483 Theory +0803.3501 Artificial Intelligence +0803.3502 Numerical Analysis +0803.3504 Methodology +0803.3531 Data Structures and Algorithms +0803.3547 Theory +0803.3553 Information Theory +0803.3580 Representation Theory +0803.3676 Methodology +0803.3678 Applications +0803.3697 Applications +0803.3727 Theory +0803.3740 Applications +0803.3757 Applications +0803.3781 Discrete Mathematics +0803.3812 Artificial Intelligence +0803.3845 +0803.3863 Applications +0803.3872 Applications +0803.3875 Applications +0803.3876 Applications +0803.3881 Applications +0803.3891 Applications +0803.3904 Applications +0803.3911 Applications +0803.3919 Applications +0803.3920 Medical Physics +0803.3924 Medical Physics +0803.3925 Lattice +0803.3942 Applications +0803.3968 Theory +0803.4049 Networking and Internet Architecture +0803.4055 Applications +0803.4057 Applications +0803.4065 Applications +0803.4072 +0803.4082 Algebraic Topology +0803.4090 Theory +0803.4092 Machine Learning +0803.4101 Statistics Theory +0803.4112 Statistics Theory +0803.4118 Statistics Theory +0803.4124 Phenomenology +0803.4155 Probability +0803.4223 Distributed, Parallel, and Cluster Computing +0803.4240 Neural and Evolutionary Computing +0803.4241 Neural and Evolutionary Computing +0803.4242 Analysis of PDEs +0803.4248 Neural and Evolutionary Computing +0803.4260 Data Structures and Algorithms +0803.4339 Lattice +0803.4414 Plasma Physics +0803.4416 Pricing of Securities +0803.4436 +0803.4437 Methodology +0803.4455 Optics +0803.4483 +0804.0079 Applications +0804.0080 Applications +0804.0083 Phenomenology +0804.0088 Applications +0804.0090 Applications +0804.0093 Applications +0804.0095 Applications +0804.0097 Applications +0804.0099 Applications +0804.0102 Applications +0804.0103 Applications +0804.0121 Probability +0804.0127 Pricing of Securities +0804.0143 Computation and Language +0804.0145 Dynamical Systems +0804.0149 Data Structures and Algorithms +0804.0154 Functional Analysis +0804.0158 Probability +0804.0162 Statistical Finance +0804.0173 Combinatorics +0804.0292 Number Theory +0804.0313 Number Theory +0804.0338 Fluid Dynamics +0804.0381 +0804.0382 +0804.0441 Information Theory +0804.0486 Statistics Theory +0804.0508 +0804.0509 +0804.0551 Statistics Theory +0804.0556 Human-Computer Interaction +0804.0558 Artificial Intelligence +0804.0561 Graphics +0804.0570 Data Structures and Algorithms +0804.0581 Numerical Analysis +0804.0599 Artificial Intelligence +0804.0650 Applications +0804.0658 Statistics Theory +0804.0671 Statistics Theory +0804.0678 Statistics Theory +0804.0693 Statistics Theory +0804.0703 Statistics Theory +0804.0704 Group Theory +0804.0709 Statistics Theory +0804.0713 Statistics Theory +0804.0719 Statistics Theory +0804.0723 Statistics Theory +0804.0737 Statistics Theory +0804.0741 Statistics Theory +0804.0743 Networking and Internet Architecture +0804.0758 Statistics Theory +0804.0765 Phenomenology +0804.0768 Statistics Theory +0804.0852 Artificial Intelligence +0804.0872 Phenomenology +0804.0879 General Literature +0804.0920 Algebraic Geometry +0804.0970 Programming Languages +0804.0987 Statistics Theory +0804.0991 Statistics Theory +0804.1001 Statistics Theory +0804.1009 Analysis of PDEs +0804.1026 Machine Learning +0804.1033 Computation and Language +0804.1040 Statistics Theory +0804.1075 +0804.1092 Combinatorics +0804.1118 Programming Languages +0804.1133 Neural and Evolutionary Computing +0804.1184 Cryptography and Security +0804.1185 Cryptography and Security +0804.1187 Computational Engineering, Finance, and Science +0804.1189 Statistics Theory +0804.1201 Quantitative Methods +0804.1202 Biomolecules +0804.1203 +0804.1214 Discrete Mathematics +0804.1221 Rings and Algebras +0804.1225 Differential Geometry +0804.1270 Discrete Mathematics +0804.1278 +0804.1291 Classical Analysis and ODEs +0804.1302 Learning +0804.1304 Numerical Analysis +0804.1357 Theory +0804.1367 Atomic Physics +0804.1409 Databases +0804.1415 Probability +0804.1416 Dynamical Systems +0804.1419 Differential Geometry +0804.1421 Computer Science and Game Theory +0804.1422 Applications +0804.1431 Probability +0804.1440 Computational Complexity +0804.1447 +0804.1461 Probability +0804.1478 +0804.1479 Classical Analysis and ODEs +0804.1521 Phenomenology +0804.1523 Theory +0804.1546 Phenomenology +0804.1584 Statistics Theory +0804.1698 +0804.1708 +0804.1710 Analysis of PDEs +0804.1711 Analysis of PDEs +0804.1714 Analysis of PDEs +0804.1715 Statistics Theory +0804.1716 Statistics Theory +0804.1758 Discrete Mathematics +0804.1760 Discrete Mathematics +0804.1762 Discrete Mathematics +0804.1873 +0804.1884 Probability +0804.1921 Discrete Mathematics +0804.1955 +0804.1992 Materials Science +0804.2032 Data Structures and Algorithms +0804.2035 General Literature +0804.2037 Other Computer Science +0804.2044 Phenomenology +0804.2057 Information Retrieval +0804.2082 +0804.2095 Logic in Computer Science +0804.2112 Data Structures and Algorithms +0804.2126 Optics +0804.2129 Optics +0804.2155 Cryptography and Security +0804.2181 Symbolic Computation +0804.2216 Phenomenology +0804.2230 Probability +0804.2247 Computation +0804.2288 Computer Science and Game Theory +0804.2307 Optics +0804.2330 Probability +0804.2357 Metric Geometry +0804.2382 Mesoscale and Nanoscale Physics +0804.2387 +0804.2409 Mesoscale and Nanoscale Physics +0804.2414 Methodology +0804.2528 Probability +0804.2561 Pricing of Securities +0804.2585 Probability +0804.2588 Probability +0804.2621 General Literature +0804.2642 Discrete Mathematics +0804.2729 Computational Complexity +0804.2739 Optics +0804.2752 Methodology +0804.2757 Methodology +0804.2770 Methodology +0804.2777 Methodology +0804.2799 Experiment +0804.2802 Phenomenology +0804.2834 Theory +0804.2905 Lattice +0804.2946 Soft Condensed Matter +0804.2952 Soft Condensed Matter +0804.2958 Methodology +0804.2962 Methodology +0804.2965 Methodology +0804.2969 Methodology +0804.2970 Methodology +0804.2973 Methodology +0804.2982 Methodology +0804.2992 Symbolic Computation +0804.2996 Methodology +0804.3001 Algebraic Geometry +0804.3002 Materials Science +0804.3160 Computer Science and Game Theory +0804.3216 Phenomenology +0804.3220 Experiment +0804.3223 +0804.3237 Computers and Society +0804.3238 +0804.3243 Methodology +0804.3244 Methodology +0804.3264 +0804.3277 Probability +0804.3334 +0804.3478 Phenomenology +0804.3494 Algebraic Geometry +0804.3496 Probability +0804.3518 +0804.3558 Classical Analysis and ODEs +0804.3643 Quantitative Methods +0804.3680 Information Theory +0804.3694 +0804.3715 Statistics Theory +0804.3762 Logic in Computer Science +0804.3796 Networking and Internet Architecture +0804.3814 Networking and Internet Architecture +0804.3850 +0804.3859 +0804.3914 Logic in Computer Science +0804.3947 Data Structures and Algorithms +0804.3951 Analysis of PDEs +0804.3955 +0804.3965 Combinatorics +0804.3975 Numerical Analysis +0804.4001 +0804.4067 +0804.4080 Phenomenology +0804.4116 Software Engineering +0804.4127 Statistical Mechanics +0804.4135 Optimization and Control +0804.4137 +0804.4138 Data Structures and Algorithms +0804.4142 +0804.4221 +0804.4323 General Topology +0804.4325 Applications +0804.4354 Analysis of PDEs +0804.4377 Materials Science +0804.4378 Materials Science +0804.4440 Theory +0804.4515 Phenomenology +0804.4516 +0804.4524 Computer Science and Game Theory +0804.4525 Programming Languages +0804.4530 Computer Science and Game Theory +0804.4574 Phenomenology +0804.4590 Distributed, Parallel, and Cluster Computing +0804.4628 Cryptography and Security +0804.4674 +0804.4706 Lattice +0804.4733 Theory +0804.4740 Computational Geometry +0804.4780 Statistics Theory +0804.4808 Neural and Evolutionary Computing +0804.4809 Neural and Evolutionary Computing +0804.4863 Lattice +0804.4865 Multimedia +0804.4898 Learning +0805.0035 Mesoscale and Nanoscale Physics +0805.0070 +0805.0073 Classical Physics +0805.0078 Phenomenology +0805.0106 Spectral Theory +0805.0129 Information Theory +0805.0152 Phenomenology +0805.0202 Artificial Intelligence +0805.0231 Neural and Evolutionary Computing +0805.0232 Dynamical Systems +0805.0240 Materials Science +0805.0306 +0805.0411 Instrumentation and Detectors +0805.0418 Phenomenology +0805.0473 Materials Science +0805.0531 Other Condensed Matter +0805.0550 Numerical Analysis +0805.0648 Computational Geometry +0805.0744 Medical Physics +0805.0745 Statistics Theory +0805.0778 Statistics Theory +0805.0779 Statistics Theory +0805.0845 Logic in Computer Science +0805.0854 Other Computer Science +0805.0855 Other Computer Science +0805.0856 Other Computer Science +0805.0857 Other Computer Science +0805.0858 Other Computer Science +0805.0859 Other Computer Science +0805.0860 Other Computer Science +0805.0861 Other Computer Science +0805.0862 Other Computer Science +0805.0863 Other Computer Science +0805.0864 Other Computer Science +0805.0865 Other Computer Science +0805.0866 Other Computer Science +0805.0868 Other Computer Science +0805.0869 Probability +0805.0871 Other Computer Science +0805.0872 Other Computer Science +0805.0873 Other Computer Science +0805.0874 Other Computer Science +0805.0876 Other Computer Science +0805.0877 Other Computer Science +0805.0879 Other Computer Science +0805.0880 Other Computer Science +0805.0881 Other Computer Science +0805.0882 Other Computer Science +0805.0883 Other Computer Science +0805.0884 Other Computer Science +0805.0885 Other Computer Science +0805.0887 Other Computer Science +0805.0888 Other Computer Science +0805.0889 Other Computer Science +0805.0890 Other Computer Science +0805.0891 Other Computer Science +0805.0892 Other Computer Science +0805.0893 Other Computer Science +0805.0895 Other Computer Science +0805.0896 Other Computer Science +0805.0897 Other Computer Science +0805.0898 Other Computer Science +0805.0899 Other Computer Science +0805.0900 Other Computer Science +0805.0901 Other Computer Science +0805.0903 Other Computer Science +0805.0904 Other Computer Science +0805.0905 Other Computer Science +0805.0906 Other Computer Science +0805.0907 Other Computer Science +0805.0908 Other Computer Science +0805.0911 Other Computer Science +0805.0912 Other Computer Science +0805.0913 Other Computer Science +0805.0914 Other Computer Science +0805.0915 Other Computer Science +0805.0916 Other Computer Science +0805.0917 Other Computer Science +0805.0918 Other Computer Science +0805.0919 Other Computer Science +0805.0920 Other Computer Science +0805.0922 Other Computer Science +0805.0925 Other Computer Science +0805.0926 Other Computer Science +0805.0927 Other Computer Science +0805.0929 Other Computer Science +0805.0930 Other Computer Science +0805.0931 Other Computer Science +0805.0932 Other Computer Science +0805.0933 Other Computer Science +0805.0934 Other Computer Science +0805.0935 Other Computer Science +0805.0937 Other Computer Science +0805.0938 Other Computer Science +0805.0939 Other Computer Science +0805.0940 Other Computer Science +0805.0941 Other Computer Science +0805.0942 Other Computer Science +0805.0943 Other Computer Science +0805.0945 Other Computer Science +0805.1030 Computational Complexity +0805.1098 +0805.1115 Phenomenology +0805.1117 +0805.1119 Phenomenology +0805.1130 Computer Science and Game Theory +0805.1296 Neural and Evolutionary Computing +0805.1297 Methodology +0805.1374 Applications +0805.1391 Logic in Computer Science +0805.1405 Theory +0805.1419 Phenomenology +0805.1487 Databases +0805.1589 Phenomenology +0805.1606 +0805.1723 Neurons and Cognition +0805.1754 +0805.1759 Computer Science and Game Theory +0805.1798 Computer Science and Game Theory +0805.1802 Statistical Mechanics +0805.1853 Materials Science +0805.1860 Functional Analysis +0805.1906 Probability +0805.1907 Probability +0805.1961 Atomic Physics +0805.1976 Statistics Theory +0805.1994 Chemical Physics +0805.2016 General Mathematics +0805.2029 Statistics Theory +0805.2041 Statistics Theory +0805.2044 Methodology +0805.2068 Distributed, Parallel, and Cluster Computing +0805.2072 Statistics Theory +0805.2084 Probability +0805.2096 Statistical Finance +0805.2139 Number Theory +0805.2140 Algebraic Geometry +0805.2214 Statistics Theory +0805.2216 Statistics Theory +0805.2219 Statistics Theory +0805.2228 Statistics Theory +0805.2229 Statistics Theory +0805.2231 Statistics Theory +0805.2239 Statistics Theory +0805.2242 Statistics Theory +0805.2246 Statistics Theory +0805.2258 Statistics Theory +0805.2264 Statistics Theory +0805.2268 Statistics Theory +0805.2276 Statistics Theory +0805.2285 Statistics Theory +0805.2292 Methodology +0805.2300 Statistics Theory +0805.2303 Computation and Language +0805.2305 Statistics Theory +0805.2316 Statistics Theory +0805.2322 Statistics Theory +0805.2328 Methodology +0805.2334 Phenomenology +0805.2382 Experiment +0805.2456 Statistics Theory +0805.2460 Statistics Theory +0805.2470 Statistics Theory +0805.2473 Statistics Theory +0805.2479 Statistics Theory +0805.2485 Statistics Theory +0805.2490 Applications +0805.2492 Statistics Theory +0805.2496 Applications +0805.2501 Statistics Theory +0805.2516 Statistics Theory +0805.2523 Statistics Theory +0805.2529 Analysis of PDEs +0805.2533 Analysis of PDEs +0805.2535 Analysis of PDEs +0805.2537 Computation and Language +0805.2538 Theory +0805.2560 +0805.2561 +0805.2600 +0805.2615 +0805.2620 Computer Science and Game Theory +0805.2622 Computer Science and Game Theory +0805.2648 Theory +0805.2671 Data Structures and Algorithms +0805.2712 +0805.2740 +0805.2752 Learning +0805.2775 Learning +0805.2799 Phenomenology +0805.2801 Probability +0805.2808 Probability +0805.2829 Applications +0805.2835 Applications +0805.2838 Statistics Theory +0805.2840 Applications +0805.2845 Applications +0805.2854 Networking and Internet Architecture +0805.2864 Other Computer Science +0805.2879 Methodology +0805.2881 Applications +0805.2949 Performance +0805.3008 Applications +0805.3019 Applications +0805.3027 Applications +0805.3032 Applications +0805.3034 Statistics Theory +0805.3038 Representation Theory +0805.3040 Statistics Theory +0805.3043 Statistics Theory +0805.3045 Phenomenology +0805.3051 Symplectic Geometry +0805.3054 Probability +0805.3059 Other Computer Science +0805.3062 Other Computer Science +0805.3064 Statistics Theory +0805.3066 Statistics Theory +0805.3070 Statistics Theory +0805.3073 Statistics Theory +0805.3116 +0805.3120 Analysis of PDEs +0805.3169 +0805.3196 Distributed, Parallel, and Cluster Computing +0805.3203 Statistics Theory +0805.3204 Statistics Theory +0805.3205 Statistics Theory +0805.3209 Methodology +0805.3220 Statistics Theory +0805.3224 Statistics Theory +0805.3238 Statistics Theory +0805.3244 Statistics Theory +0805.3248 Statistics Theory +0805.3252 Functional Analysis +0805.3264 Applications +0805.3267 Artificial Intelligence +0805.3269 Applications +0805.3273 Statistics Theory +0805.3279 Applications +0805.3282 Geometric Topology +0805.3286 Applications +0805.3287 Statistics Theory +0805.3334 Experiment +0805.3394 Probability +0805.3404 Phenomenology +0805.3410 Computation and Language +0805.3415 Statistics Theory +0805.3418 Probability +0805.3450 Probability +0805.3503 +0805.3517 Theory +0805.3518 Artificial Intelligence +0805.3556 Experiment +0805.3614 Analysis of PDEs +0805.3632 +0805.3643 Information Theory +0805.3654 Analysis of PDEs +0805.3657 Analysis of PDEs +0805.3658 Statistics Theory +0805.3659 Analysis of PDEs +0805.3660 Analysis of PDEs +0805.3661 Analysis of PDEs +0805.3719 Phenomenology +0805.3747 Artificial Intelligence +0805.3787 Analysis of PDEs +0805.3788 Complex Variables +0805.3789 Analysis of PDEs +0805.3790 Analysis of PDEs +0805.3814 Pattern Formation and Solitons +0805.3834 +0805.3934 Instrumentation and Detectors +0805.3935 Artificial Intelligence +0805.3937 Analysis of PDEs +0805.3939 Artificial Intelligence +0805.3960 +0805.4044 Theory +0805.4050 Phenomenology +0805.4072 Logic in Computer Science +0805.4081 Information Theory +0805.4085 Information Theory +0805.4101 Artificial Intelligence +0805.4107 Networking and Internet Architecture +0805.4108 +0805.4113 +0805.4125 Analysis of PDEs +0805.4134 Networking and Internet Architecture +0805.4135 Rings and Algebras +0805.4137 Chaotic Dynamics +0805.4138 Rings and Algebras +0805.4159 Phenomenology +0805.4167 Computer Science and Game Theory +0805.4170 Phenomenology +0805.4177 Phenomenology +0805.4290 Learning +0805.4300 Data Structures and Algorithms +0805.4306 +0805.4314 +0805.4346 Phenomenology +0805.4369 Computation and Language +0805.4397 +0805.4453 +0805.4470 Theory +0805.4522 Classical Physics +0805.4523 +0805.4566 Classical Physics +0805.4585 +0805.4606 Computers and Society +0805.4629 Lattice +0805.4675 Analysis of PDEs +0805.4680 Operating Systems +0805.4722 Information Retrieval +0805.4745 Software Engineering +0805.4752 Instrumentation and Detectors +0805.4754 Information Retrieval +0805.4760 Representation Theory +0805.4768 Phenomenology +0805.4773 Phenomenology +0805.4789 +0806.0060 Category Theory +0806.0069 Experiment +0806.0075 Databases +0806.0084 Neurons and Cognition +0806.0087 Neurons and Cognition +0806.0114 Phenomenology +0806.0128 Networking and Internet Architecture +0806.0130 Networking and Internet Architecture +0806.0132 Operating Systems +0806.0134 Networking and Internet Architecture +0806.0202 Phenomenology +0806.0239 Computational Finance +0806.0250 Artificial Intelligence +0806.0269 Phenomenology +0806.0272 +0806.0282 Distributed, Parallel, and Cluster Computing +0806.0283 Information Theory +0806.0327 +0806.0336 Theory +0806.0394 Theory +0806.0428 +0806.0459 Classical Analysis and ODEs +0806.0473 Robotics +0806.0519 Computers and Society +0806.0526 Artificial Intelligence +0806.0561 Classical Physics +0806.0575 +0806.0642 +0806.0737 Theory +0806.0784 Artificial Intelligence +0806.0806 Probability +0806.0818 Phenomenology +0806.0894 Lattice +0806.0915 Phenomenology +0806.0937 +0806.1013 +0806.1046 +0806.1049 Phenomenology +0806.1055 +0806.1057 Phenomenology +0806.1072 +0806.1095 +0806.1097 Phenomenology +0806.1103 Quantitative Methods +0806.1115 Phenomenology +0806.1151 Mesoscale and Nanoscale Physics +0806.1156 Learning +0806.1157 Phenomenology +0806.1173 Probability +0806.1264 Neurons and Cognition +0806.1266 Analysis of PDEs +0806.1267 Populations and Evolution +0806.1321 Group Theory +0806.1322 Tissues and Organs +0806.1381 Operating Systems +0806.1382 Neurons and Cognition +0806.1385 Other Computer Science +0806.1393 Spectral Theory +0806.1397 Information Theory +0806.1408 Classical Analysis and ODEs +0806.1409 Classical Analysis and ODEs +0806.1428 +0806.1437 +0806.1439 Information Theory +0806.1494 Combinatorics +0806.1509 Strongly Correlated Electrons +0806.1520 +0806.1521 +0806.1541 Phenomenology +0806.1567 Networking and Internet Architecture +0806.1569 Networking and Internet Architecture +0806.1578 Methodology +0806.1579 Statistics Theory +0806.1580 Statistics Theory +0806.1585 Symplectic Geometry +0806.1594 Soft Condensed Matter +0806.1605 Geophysics +0806.1609 Materials Science +0806.1613 Materials Science +0806.1619 Materials Science +0806.1630 Phenomenology +0806.1632 Differential Geometry +0806.1640 Artificial Intelligence +0806.1645 Classical Analysis and ODEs +0806.1711 Networking and Internet Architecture +0806.1725 Statistics Theory +0806.1796 Computer Vision and Pattern Recognition +0806.1797 Artificial Intelligence +0806.1798 Computer Vision and Pattern Recognition +0806.1802 Artificial Intelligence +0806.1811 +0806.1812 Cryptography and Security +0806.1816 Software Engineering +0806.1823 Theory +0806.1856 +0806.1893 Networking and Internet Architecture +0806.1895 Networking and Internet Architecture +0806.1896 Data Analysis, Statistics and Probability +0806.1918 Computers and Society +0806.1997 Phenomenology +0806.1998 Phenomenology +0806.2005 Tissues and Organs +0806.2007 Computer Vision and Pattern Recognition +0806.2008 Computer Vision and Pattern Recognition +0806.2071 Dynamical Systems +0806.2080 Classical Analysis and ODEs +0806.2139 Computer Science and Game Theory +0806.2140 Artificial Intelligence +0806.2186 +0806.2264 Logic +0806.2281 +0806.2299 Theory +0806.2314 Theory +0806.2354 +0806.2423 +0806.2444 Trading and Market Microstructure +0806.2477 Theory +0806.2481 +0806.2482 +0806.2503 Probability +0806.2509 Networking and Internet Architecture +0806.2512 Probability +0806.2517 Logic in Computer Science +0806.2518 Probability +0806.2525 Probability +0806.2540 Instrumentation and Detectors +0806.2548 Numerical Analysis +0806.2549 Networking and Internet Architecture +0806.2550 Networking and Internet Architecture +0806.2561 Probability +0806.2570 Pricing of Securities +0806.2581 Computation and Language +0806.2582 Probability +0806.2597 +0806.2682 Information Theory +0806.2710 Discrete Mathematics +0806.2718 Probability +0806.2726 Information Theory +0806.2731 Probability +0806.2738 Information Theory +0806.2745 Probability +0806.2747 Probability +0806.2760 Information Theory +0806.2768 Probability +0806.2782 Probability +0806.2802 Logic in Computer Science +0806.2901 Statistics Theory +0806.2905 Statistics Theory +0806.2908 Number Theory +0806.2909 Statistics Theory +0806.2910 +0806.2914 Statistics Theory +0806.2924 Networking and Internet Architecture +0806.2931 Statistics Theory +0806.2939 Statistics Theory +0806.2963 Statistics Theory +0806.2970 Statistics Theory +0806.2976 Statistics Theory +0806.2977 Experiment +0806.2985 Statistics Theory +0806.3007 Phenomenology +0806.3022 +0806.3024 Statistics Theory +0806.3030 Fluid Dynamics +0806.3031 Multiagent Systems +0806.3032 Multiagent Systems +0806.3087 Phenomenology +0806.3147 +0806.3165 Theory +0806.3174 Phenomenology +0806.3195 Data Analysis, Statistics and Probability +0806.3197 Probability +0806.3289 +0806.3305 Phenomenology +0806.3356 +0806.3379 Probability +0806.3382 Phenomenology +0806.3400 Chemical Physics +0806.3401 Chemical Physics +0806.3402 Atomic Physics +0806.3456 Computational Geometry +0806.3498 Theory +0806.3574 Theory +0806.3649 +0806.3655 +0806.3657 Phenomenology +0806.3662 Phenomenology +0806.3668 Data Structures and Algorithms +0806.3684 Applications +0806.3708 Other Computer Science +0806.3733 Geometric Topology +0806.3823 Quantitative Methods +0806.3835 Biological Physics +0806.3864 History and Overview +0806.3875 Phenomenology +0806.3886 +0806.3895 +0806.3924 Theory +0806.3928 Computer Vision and Pattern Recognition +0806.3969 +0806.4028 Optics +0806.4073 Data Structures and Algorithms +0806.4076 +0806.4125 Risk Management +0806.4127 Algebraic Geometry +0806.4130 Logic in Computer Science +0806.4140 Statistics Theory +0806.4176 Number Theory +0806.4181 Soft Condensed Matter +0806.4242 Statistics Theory +0806.4246 Chemical Physics +0806.4263 Probability +0806.4305 Phenomenology +0806.4331 Soft Condensed Matter +0806.4338 Classical Physics +0806.4344 Computer Science and Game Theory +0806.4362 +0806.4364 Theory +0806.4372 Data Structures and Algorithms +0806.4422 Learning +0806.4423 Learning +0806.4426 Statistics Theory +0806.4447 Probability +0806.4452 +0806.4518 Cell Behavior +0806.4523 +0806.4557 Phenomenology +0806.4560 Phenomenology +0806.4613 Phenomenology +0806.4615 Theory +0806.4640 +0806.4652 Data Structures and Algorithms +0806.4735 Data Structures and Algorithms +0806.4777 Theory +0806.4832 +0806.4877 Strongly Correlated Electrons +0806.4881 Algebraic Geometry +0806.4920 Databases +0806.4921 Information Retrieval +0806.4927 Phenomenology +0806.4941 Experiment +0807.0116 +0807.0205 Theory +0807.0206 Theory +0807.0207 +0807.0225 Theory +0807.0316 Phenomenology +0807.0366 +0807.0448 +0807.0449 +0807.0457 Theory +0807.0530 Instrumentation and Detectors +0807.0538 Exactly Solvable and Integrable Systems +0807.0607 Theory +0807.0646 +0807.0649 +0807.0700 +0807.0746 Theory +0807.0795 Phenomenology +0807.0854 +0807.0903 Theory +0807.0909 Theory +0807.0941 +0807.0960 Theory +0807.0961 +0807.1054 Phenomenology +0807.1150 +0807.1155 +0807.1186 Theory +0807.1187 Differential Geometry +0807.1260 +0807.1335 +0807.1384 +0807.1399 Phenomenology +0807.1417 Phenomenology +0807.1472 Instrumentation and Detectors +0807.1556 Phenomenology +0807.1564 Theory +0807.1624 Phenomenology +0807.1666 Theory +0807.1692 Experiment +0807.1696 Theory +0807.1742 +0807.1785 Theory +0807.1995 Theory +0807.2026 Instrumentation and Detectors +0807.2050 Phenomenology +0807.2133 Phenomenology +0807.2141 Experiment +0807.2148 Phenomenology +0807.2208 Phenomenology +0807.2216 +0807.2261 Theory +0807.2306 Theory +0807.2424 Experiment +0807.2452 +0807.2607 Theory +0807.2685 Theory +0807.2696 Theory +0807.2785 Phenomenology +0807.2831 +0807.2851 +0807.3073 +0807.3160 Phenomenology +0807.3217 Phenomenology +0807.3231 Phenomenology +0807.3367 Experiment +0807.3467 +0807.3525 Instrumentation and Detectors +0807.3537 +0807.3643 +0807.3745 +0807.3762 +0807.3778 +0807.3824 +0807.3844 +0807.3872 +0807.3905 Soft Condensed Matter +0807.4054 Theory +0807.4214 Phenomenology +0807.4221 +0807.4265 Phenomenology +0807.4304 +0807.4474 Phenomenology +0807.4554 +0807.4668 Phenomenology +0807.4737 +0807.4798 Phenomenology +0807.5039 Phenomenology +0808.0182 Phenomenology +0808.0332 +0808.0341 +0808.0370 Phenomenology +0808.0471 +0808.0690 Phenomenology +0808.0705 Phenomenology +0808.0905 +0808.0956 +0808.1107 +0808.1152 +0808.1350 Phenomenology +0808.1357 Theory +0808.1598 +0808.1623 +0808.1631 Lattice +0808.1724 +0808.1785 +0808.1902 +0808.1912 Theory +0808.1942 Theory +0808.2025 +0808.2049 +0808.2050 +0808.2058 Phenomenology +0808.2093 +0808.2100 +0808.2114 Phenomenology +0808.2179 +0808.2389 Phenomenology +0808.2397 Phenomenology +0808.2399 Phenomenology +0808.2413 Phenomenology +0808.2448 Theory +0808.2449 +0808.2576 Experiment +0808.2673 Experiment +0808.2746 +0808.2929 +0808.2977 +0808.3005 +0808.3006 +0808.3013 +0808.3057 Theory +0808.3074 +0808.3094 Phenomenology +0808.3113 +0808.3174 Phenomenology +0808.3303 +0808.3342 +0808.3457 +0808.3478 +0808.3482 +0808.3527 Phenomenology +0808.3628 +0808.3630 +0808.3644 +0808.3718 +0808.3727 +0808.3745 Theory +0808.3754 +0808.3898 +0808.3912 Phenomenology +0808.3944 +0808.3965 Phenomenology +0808.3985 +0808.4015 +0808.4063 Mesoscale and Nanoscale Physics +0808.4094 Theory +0808.4142 Experiment +0809.0002 +0809.0006 +0809.0154 Theory +0809.0170 +0809.0172 +0809.0200 +0809.0234 +0809.0265 +0809.0295 Theory +0809.0297 Theory +0809.0378 +0809.0495 +0809.0584 +0809.0625 Phenomenology +0809.0661 Theory +0809.0698 +0809.0700 +0809.0718 +0809.0754 +0809.0765 +0809.0766 +0809.0797 +0809.0821 Phenomenology +0809.0844 Theory +0809.0872 Phenomenology +0809.0900 Mesoscale and Nanoscale Physics +0809.0921 +0809.0956 +0809.0958 +0809.1041 Phenomenology +0809.1058 +0809.1065 +0809.1066 +0809.1106 +0809.1117 +0809.1175 +0809.1238 Theory +0809.1245 +0809.1301 Phenomenology +0809.1388 +0809.1416 Theory +0809.1426 +0809.1456 +0809.1638 Theory +0809.1654 +0809.1661 +0809.1665 +0809.1706 +0809.1720 Theory +0809.1737 +0809.1744 Phenomenology +0809.1816 Other Condensed Matter +0809.1933 +0809.1948 +0809.2028 Phenomenology +0809.2098 +0809.2101 +0809.2128 +0809.2144 +0809.2171 +0809.2210 +0809.2334 +0809.2416 +0809.2464 +0809.2502 Theory +0809.2540 +0809.2582 Phenomenology +0809.2597 +0809.2598 +0809.2676 +0809.2684 Theory +0809.2825 Atomic Physics +0809.2907 +0809.2914 +0809.3028 Phenomenology +0809.3079 Theory +0809.3115 +0809.3174 +0809.3300 Phenomenology +0809.3601 +0809.3958 Theory +0809.3980 Phenomenology +0809.4072 +0809.4074 Theory +0809.4161 +0809.4193 +0809.4264 Theory +0809.4312 Theory +0809.4382 Instrumentation and Detectors +0809.4513 Theory +0809.4548 Theory +0809.4603 Theory +0809.4744 +0809.4778 Theory +0809.5107 +0809.5112 +0809.5183 Phenomenology +0809.5240 Experiment +0809.5262 Phenomenology +0809.5269 +0810.0114 +0810.0178 Mesoscale and Nanoscale Physics +0810.0244 +0810.0447 +0810.0492 Phenomenology +0810.0779 +0810.1124 +0810.1304 Phenomenology +0810.1397 +0810.1423 +0810.1467 +0810.1484 Theory +0810.1583 Theory +0810.1604 +0810.1772 Strongly Correlated Electrons +0810.1832 Phenomenology +0810.1917 +0810.2170 Phenomenology +0810.2231 Statistical Mechanics +0810.2268 +0810.2408 Theory +0810.2567 +0810.2591 +0810.2645 +0810.2668 Phenomenology +0810.2678 +0810.2736 Phenomenology +0810.2779 +0810.2817 Theory +0810.2920 Theory +0810.3013 +0810.3064 Theory +0810.3152 Atomic Physics +0810.3175 Experiment +0810.3296 Theory +0810.3517 Phenomenology +0810.3696 Instrumentation and Detectors +0810.3736 Geophysics +0810.3792 +0810.3798 +0810.3817 Phenomenology +0810.3910 Theory +0810.4073 +0810.4165 Popular Physics +0810.4513 +0810.4673 +0810.4720 Superconductivity +0810.4746 +0810.5279 +0810.5333 Theory +0810.5469 +0810.5497 Experiment +0810.5570 +0811.0001 +0811.0018 +0811.0158 +0811.0263 Theory +0811.0375 +0811.0487 +0811.0612 +0811.0661 +0811.0696 +0811.0824 +0811.0847 Phenomenology +0811.0909 Probability +0811.0938 +0811.1002 Phenomenology +0811.1054 +0811.1063 Theory +0811.1144 +0811.1189 +0811.1514 Phenomenology +0811.1581 +0811.1696 Probability +0811.1791 +0811.1867 +0811.2007 +0811.2037 Lattice +0811.2066 +0811.2213 Geometric Topology +0811.2221 +0811.2345 +0811.2408 +0811.2468 +0811.2471 +0811.2474 +0811.2679 +0811.2713 +0811.2789 +0811.2790 +0811.2832 +0811.2896 +0811.2971 Accelerator Physics +0811.2980 +0811.2983 +0811.3050 Phenomenology +0811.3058 +0811.3156 +0811.3304 +0811.3374 +0811.3380 Instrumentation and Detectors +0811.3465 +0811.3590 +0811.3600 Data Analysis, Statistics and Probability +0811.3806 +0811.3821 +0811.3926 +0811.4020 +0811.4151 Algebraic Geometry +0811.4193 Instrumentation and Detectors +0811.4236 +0811.4289 +0811.4322 +0811.4616 Phenomenology +0811.4732 Plasma Physics +0811.4746 +0811.4750 +0812.0014 +0812.0199 +0812.0339 +0812.0483 +0812.0516 Phenomenology +0812.0586 +0812.0689 +0812.0720 +0812.0864 +0812.1022 +0812.1077 Phenomenology +0812.1110 +0812.1112 Experiment +0812.1221 +0812.1441 +0812.1607 Phenomenology +0812.1935 +0812.2463 +0812.2938 +0812.2992 Theory +0812.3159 Operator Algebras +0812.3165 Superconductivity +0812.3173 Atmospheric and Oceanic Physics +0812.3176 Atmospheric and Oceanic Physics +0812.3178 Atmospheric and Oceanic Physics +0812.3180 Atmospheric and Oceanic Physics +0812.3185 Geophysics +0812.3188 Statistics Theory +0812.3200 +0812.3201 Methodology +0812.3205 Adaptation and Self-Organizing Systems +0812.3208 Statistics Theory +0812.3211 +0812.3222 Algebraic Geometry +0812.3236 Representation Theory +0812.3249 Computational Geometry +0812.3251 Materials Science +0812.3252 Statistics Theory +0812.3253 Statistics Theory +0812.3254 Statistics Theory +0812.3263 Optics +0812.3265 +0812.3266 +0812.3275 Functional Analysis +0812.3285 Information Theory +0812.3286 Representation Theory +0812.3288 Analysis of PDEs +0812.3290 +0812.3295 Superconductivity +0812.3297 Phenomenology +0812.3300 Soft Condensed Matter +0812.3306 Information Theory +0812.3311 Probability +0812.3316 Differential Geometry +0812.3318 Dynamical Systems +0812.3326 Probability +0812.3338 Experiment +0812.3344 Molecular Networks +0812.3355 Rings and Algebras +0812.3356 +0812.3365 Quantum Algebra +0812.3366 Mesoscale and Nanoscale Physics +0812.3369 Algebraic Geometry +0812.3374 Number Theory +0812.3377 Phenomenology +0812.3384 Populations and Evolution +0812.3385 Dynamical Systems +0812.3386 +0812.3389 Differential Geometry +acc-phys/9605001 Accelerator Physics +acc-phys/9609006 Accelerator Physics +astro-ph/0001413 +astro-ph/0002229 +astro-ph/0003177 +astro-ph/0011318 +astro-ph/0012052 +astro-ph/0012354 +astro-ph/0104144 +astro-ph/0105435 +astro-ph/0106104 +astro-ph/0106485 +astro-ph/0109357 +astro-ph/0204528 +astro-ph/0211068 +astro-ph/0307175 +astro-ph/0307377 +astro-ph/0310546 +astro-ph/0312100 +astro-ph/0407061 +astro-ph/0410398 +astro-ph/0410468 +astro-ph/0411410 +astro-ph/0411572 +astro-ph/0411578 +astro-ph/0411728 +astro-ph/0412066 +astro-ph/0412216 +astro-ph/0502050 +astro-ph/0506613 +astro-ph/0509080 +astro-ph/0509504 +astro-ph/0509597 +astro-ph/0510772 +astro-ph/0511708 +astro-ph/0512224 +astro-ph/0512422 +astro-ph/0512603 +astro-ph/0601320 +astro-ph/0601558 +astro-ph/0603594 +astro-ph/0604237 +astro-ph/0604365 +astro-ph/0606266 +astro-ph/0606406 +astro-ph/0606408 +astro-ph/0608142 +astro-ph/0608278 +astro-ph/0608390 +astro-ph/0608403 +astro-ph/0610155 +astro-ph/0611163 +astro-ph/0611466 +astro-ph/0611687 +astro-ph/0612107 +astro-ph/0701017 +astro-ph/0702124 +astro-ph/0702235 +astro-ph/0702595 +astro-ph/0703143 +astro-ph/0703163 +astro-ph/0703166 +astro-ph/0703213 +astro-ph/9407010 +astro-ph/9508071 +astro-ph/9707215 +astro-ph/9709194 +astro-ph/9810083 +astro-ph/9906489 +chao-dyn/9910018 Chaotic Dynamics +chao-dyn/9910035 Chaotic Dynamics +cond-mat/0003161 Soft Condensed Matter +cond-mat/0003171 Statistical Mechanics +cond-mat/0006007 Statistical Mechanics +cond-mat/0006176 Superconductivity +cond-mat/0007289 Statistical Mechanics +cond-mat/0011141 Disordered Systems and Neural Networks +cond-mat/0012088 Superconductivity +cond-mat/0012511 Superconductivity +cond-mat/0101360 Statistical Mechanics +cond-mat/0102100 Mesoscale and Nanoscale Physics +cond-mat/0103396 Superconductivity +cond-mat/0106190 Mesoscale and Nanoscale Physics +cond-mat/0106416 Statistical Mechanics +cond-mat/0106460 Statistical Mechanics +cond-mat/0108069 +cond-mat/0108369 Statistical Mechanics +cond-mat/0109004 Superconductivity +cond-mat/0109430 +cond-mat/0109547 Statistical Mechanics +cond-mat/0111523 +cond-mat/0112271 Soft Condensed Matter +cond-mat/0201048 Superconductivity +cond-mat/0201088 Superconductivity +cond-mat/0201285 Statistical Mechanics +cond-mat/0201292 Superconductivity +cond-mat/0202491 Superconductivity +cond-mat/0203096 Statistical Mechanics +cond-mat/0203274 Superconductivity +cond-mat/0203406 +cond-mat/0204239 Superconductivity +cond-mat/0204530 Mesoscale and Nanoscale Physics +cond-mat/0205417 +cond-mat/0211489 Soft Condensed Matter +cond-mat/0301499 Statistical Mechanics +cond-mat/0304484 Materials Science +cond-mat/0305609 Soft Condensed Matter +cond-mat/0403070 Statistical Mechanics +cond-mat/0405183 Statistical Mechanics +cond-mat/0409179 Other Condensed Matter +cond-mat/0409325 Mesoscale and Nanoscale Physics +cond-mat/0411752 Strongly Correlated Electrons +cond-mat/0504608 Other Condensed Matter +cond-mat/0506443 Strongly Correlated Electrons +cond-mat/0611427 Statistical Mechanics +cond-mat/0612348 Statistical Mechanics +cond-mat/0612601 Other Condensed Matter +cond-mat/9302003 +cond-mat/9506016 +cond-mat/9511140 +cond-mat/9512110 +cond-mat/9604130 +cond-mat/9604164 +cond-mat/9605092 +cond-mat/9606083 +cond-mat/9612001 Statistical Mechanics +cond-mat/9707123 Strongly Correlated Electrons +cond-mat/9710015 Strongly Correlated Electrons +cond-mat/9802111 Disordered Systems and Neural Networks +cond-mat/9802273 Disordered Systems and Neural Networks +cond-mat/9805300 Disordered Systems and Neural Networks +cond-mat/9806059 +cond-mat/9807085 +cond-mat/9808066 +cond-mat/9901298 Mesoscale and Nanoscale Physics +cond-mat/9902066 Soft Condensed Matter +cond-mat/9902269 Strongly Correlated Electrons +cond-mat/9902296 Statistical Mechanics +cond-mat/9903068 Disordered Systems and Neural Networks +cond-mat/9908113 Superconductivity +cond-mat/9908373 Mesoscale and Nanoscale Physics +cond-mat/9909087 Statistical Mechanics +cond-mat/9909315 +gr-qc/0310043 +gr-qc/0402018 +gr-qc/0503027 +gr-qc/0602028 +gr-qc/0603127 +gr-qc/0605058 +gr-qc/0605116 +gr-qc/0606105 +gr-qc/0609067 +gr-qc/0611016 +gr-qc/0702048 +gr-qc/0702130 +gr-qc/9601017 +gr-qc/9810017 +hep-ex/0005002 Experiment +hep-ex/0209048 Experiment +hep-ex/0209068 Experiment +hep-ex/0606065 Experiment +hep-ex/0610086 Experiment +hep-lat/0001032 Lattice +hep-lat/0502007 Lattice +hep-lat/0703009 Lattice +hep-lat/9306019 Lattice +hep-lat/9511026 Lattice +hep-ph/0004155 Phenomenology +hep-ph/0101032 Phenomenology +hep-ph/0106215 Phenomenology +hep-ph/0203186 Phenomenology +hep-ph/0212133 Phenomenology +hep-ph/0303262 Phenomenology +hep-ph/0304058 Phenomenology +hep-ph/0308014 Phenomenology +hep-ph/0311270 Phenomenology +hep-ph/0402168 Phenomenology +hep-ph/0403131 Phenomenology +hep-ph/0407174 Phenomenology +hep-ph/0408271 Phenomenology +hep-ph/0409122 Phenomenology +hep-ph/0412074 Phenomenology +hep-ph/0507028 Phenomenology +hep-ph/0508315 Phenomenology +hep-ph/0510138 Phenomenology +hep-ph/0608038 Phenomenology +hep-ph/0610384 Phenomenology +hep-ph/0610404 Phenomenology +hep-ph/0611045 Phenomenology +hep-ph/0611189 Phenomenology +hep-ph/0611191 Phenomenology +hep-ph/0701208 Phenomenology +hep-ph/0703114 Phenomenology +hep-ph/0703115 Phenomenology +hep-ph/0703118 Phenomenology +hep-ph/0703124 Phenomenology +hep-ph/9503481 Phenomenology +hep-ph/9505336 Phenomenology +hep-ph/9507235 Phenomenology +hep-ph/9601217 Phenomenology +hep-ph/9608294 Phenomenology +hep-ph/9611454 Phenomenology +hep-ph/9612407 Phenomenology +hep-ph/9905468 Phenomenology +hep-ph/9906244 Phenomenology +hep-ph/9908328 Phenomenology +hep-ph/9909238 Phenomenology +hep-ph/9910373 Phenomenology +hep-th/0112071 Theory +hep-th/0207137 Theory +hep-th/0310204 Theory +hep-th/0407250 Theory +hep-th/0502183 Theory +hep-th/0503235 Theory +hep-th/0507162 Theory +hep-th/0508137 Theory +hep-th/0608191 Theory +hep-th/0609074 Theory +hep-th/0609098 Theory +hep-th/0609133 Theory +hep-th/0610263 Theory +hep-th/0611346 Theory +hep-th/0612036 Theory +hep-th/0703175 Theory +hep-th/0703267 Theory +hep-th/0703289 Theory +hep-th/9308023 Theory +hep-th/9311099 Theory +hep-th/9401046 Theory +hep-th/9406215 Theory +hep-th/9701095 Theory +hep-th/9703110 Theory +hep-th/9706117 Theory +hep-th/9706192 Theory +hep-th/9808079 Theory +math-ph/0609070 +math-ph/0612045 +math-ph/9804001 +math/0601289 Optimization and Control +math/0608324 Geometric Topology +math/0609490 Geometric Topology +math/0609708 Number Theory +math/0701618 Group Theory +math/0702058 Probability +nlin/0101035 Exactly Solvable and Integrable Systems +nlin/0110001 Exactly Solvable and Integrable Systems +nlin/0207006 Chaotic Dynamics +nlin/0405013 Chaotic Dynamics +nlin/0410050 Chaotic Dynamics +nlin/0502054 Exactly Solvable and Integrable Systems +nucl-ex/0305012 +nucl-ex/0507030 +nucl-ex/0609001 +nucl-th/0104013 +nucl-th/0502046 +nucl-th/0605044 +nucl-th/0610124 +nucl-th/9907011 +physics/0009090 Atomic Physics +physics/0102020 Optics +physics/0102045 Atomic Physics +physics/0110032 Atomic Physics +physics/0403014 Accelerator Physics +physics/0404050 Atomic Physics +physics/0412033 Plasma Physics +physics/0501036 Instrumentation and Detectors +physics/0501144 Atomic Physics +physics/0507040 Atomic Physics +physics/0510229 Instrumentation and Detectors +physics/0511065 Medical Physics +physics/0603071 Data Analysis, Statistics and Probability +physics/0604098 Chemical Physics +physics/0606128 Chemical Physics +physics/0609026 General Physics +physics/0612175 Accelerator Physics +physics/0612203 Chemical Physics +physics/9911054 Atomic and Molecular Clusters +quant-ph/0008040 +quant-ph/0103129 +quant-ph/0201137 +quant-ph/0204031 +quant-ph/0204126 +quant-ph/0208076 +quant-ph/0410236 +quant-ph/0702263 +quant-ph/9604024 +quant-ph/9605021 +quant-ph/9608028 +quant-ph/9608046 +quant-ph/9609024 +quant-ph/9611011 +quant-ph/9611014 +quant-ph/9702031 +quant-ph/9704002 +quant-ph/9708002 +quant-ph/9709024 +quant-ph/9802002 +quant-ph/9802005 +quant-ph/9808065 +quant-ph/9810014 +quant-ph/9810022 +quant-ph/9902031 +quant-ph/9902036 +quant-ph/9902063 +quant-ph/9902082 +quant-ph/9903034 +quant-ph/9903039 +quant-ph/9903062 +quant-ph/9903068 +quant-ph/9903076 +quant-ph/9903083 +quant-ph/9903101 +quant-ph/9904049 +quant-ph/9904055 +quant-ph/9904059 +quant-ph/9904064 +quant-ph/9904068 +quant-ph/9904100 +quant-ph/9905023 +quant-ph/9905027 +quant-ph/9905051 +quant-ph/9905082 +quant-ph/9905095 +quant-ph/9905101 +quant-ph/9906025 +quant-ph/9906026 +quant-ph/9906027 +quant-ph/9906072 +quant-ph/9906078 +quant-ph/9906080 +quant-ph/9907018 +quant-ph/9907036 +quant-ph/9907042 +quant-ph/9907047 +quant-ph/9907059 +quant-ph/9907062 +quant-ph/9907072 +quant-ph/9907080 +quant-ph/9907088 +quant-ph/9912093 +0704.0093 Superconductivity +0706.0833 +0706.2827 Algebraic Geometry +0706.3024 Group Theory +0706.3354 Other Condensed Matter +0707.2709 Mesoscale and Nanoscale Physics +0707.3197 Strongly Correlated Electrons +0707.3427 Mesoscale and Nanoscale Physics +0707.3819 Mesoscale and Nanoscale Physics +0708.0804 Geometric Topology +0708.3154 +0708.3685 Complex Variables +0708.3739 Statistical Mechanics +0709.0880 Materials Science +0709.1268 +0709.3121 Machine Learning +0710.0169 Information Retrieval +0710.0285 +0710.1056 +0710.1342 Theory +0710.2050 Materials Science +0712.0714 Theory +0712.1018 +0712.1219 Neurons and Cognition +0712.1844 Optimization and Control +0712.3147 Artificial Intelligence +0712.3624 Mesoscale and Nanoscale Physics +0801.0465 Quantum Algebra +0801.0738 Geometric Topology +0801.2089 Number Theory +0801.2098 Fluid Dynamics +0801.2171 Dynamical Systems +0801.2175 Graphics +0801.2185 Information Theory +0801.2187 Cryptography and Security +0801.2196 Physics and Society +0801.2201 Hardware Architecture +0801.2202 +0801.2205 Rings and Algebras +0801.2207 Rings and Algebras +0801.2210 Rings and Algebras +0801.2211 Rings and Algebras +0801.2225 Materials Science +0801.2230 Analysis of PDEs +0801.2234 Analysis of PDEs +0801.2240 +0801.2247 Commutative Algebra +0801.2249 Materials Science +0801.2252 Materials Science +0801.2255 +0801.2256 Combinatorics +0801.2259 Operator Algebras +0801.2261 Other Quantitative Biology +0801.2282 Algebraic Geometry +0801.2286 Algebraic Geometry +0801.2295 Atmospheric and Oceanic Physics +0801.2302 Other Quantitative Biology +0801.2304 +0801.2305 Logic +0801.2308 Classical Physics +0801.2309 Optics +0801.2310 Analysis of PDEs +0801.2311 Fluid Dynamics +0801.2312 Materials Science +0801.2314 Functional Analysis +0801.2315 +0801.2316 Analysis of PDEs +0801.2319 Probability +0801.2321 +0801.2322 Spectral Theory +0801.2324 Strongly Correlated Electrons +0801.2325 Probability +0801.2327 +0801.2329 Commutative Algebra +0801.2330 Strongly Correlated Electrons +0801.2331 +0801.2333 Fluid Dynamics +0801.2335 Disordered Systems and Neural Networks +0801.2336 Probability +0801.2341 Probability +0801.2344 Phenomenology +0801.2347 Discrete Mathematics +0801.2349 Fluid Dynamics +0801.2350 +0801.2351 Probability +0801.2352 K-Theory and Homology +0801.2354 Populations and Evolution +0801.2355 Analysis of PDEs +0801.2356 +0801.2362 Chemical Physics +0801.2368 Logic +0801.2376 Complex Variables +0801.2378 Data Structures and Algorithms +cond-mat/0504100 Superconductivity +cond-mat/0612197 Superconductivity +math/0505205 Metric Geometry +math/0510040 Quantum Algebra +math/0602158 Operator Algebras +math/0605228 Operator Algebras +math/0606747 Numerical Analysis +math/0607583 Number Theory +math/0609713 Complex Variables +math/0612006 Algebraic Geometry +math/0703230 Algebraic Geometry +nlin/0612005 Pattern Formation and Solitons +nlin/0701010 Exactly Solvable and Integrable Systems +physics/0702194 Biological Physics +quant-ph/0702229 +0704.2510 +0705.1299 Atomic Physics +0705.3312 Strongly Correlated Electrons +0706.1574 Statistical Mechanics +0706.1841 Strongly Correlated Electrons +0706.3815 General Topology +0706.3937 Metric Geometry +0706.4180 General Physics +0707.1402 Plasma Physics +0707.4230 Mesoscale and Nanoscale Physics +0708.3161 Strongly Correlated Electrons +0709.1399 Soft Condensed Matter +0709.3016 Logic +0709.4352 Differential Geometry +0709.4596 Statistical Mechanics +0710.0976 Statistical Mechanics +0710.5264 Soft Condensed Matter +0711.1256 Disordered Systems and Neural Networks +0711.2195 Algebraic Geometry +0711.3836 Quantum Algebra +0712.1300 Dynamical Systems +0712.1669 Analysis of PDEs +0801.1201 Strongly Correlated Electrons +0802.1590 Quantum Algebra +0802.1706 +0802.2193 Cellular Automata and Lattice Gases +0802.2875 Theory +0802.3376 Algebraic Geometry +0802.3659 Operator Algebras +0802.4272 Dynamical Systems +0802.4300 Quantum Algebra +0802.4308 Representation Theory +0802.4310 Theory +0802.4313 Symplectic Geometry +0802.4316 Materials Science +0802.4323 Algebraic Geometry +0802.4324 Atmospheric and Oceanic Physics +0802.4326 Computation and Language +0802.4331 Number Theory +0802.4337 General Physics +0802.4350 Chaotic Dynamics +0802.4355 +0802.4356 +0802.4358 Analysis of PDEs +0802.4360 Mesoscale and Nanoscale Physics +0802.4361 Molecular Networks +0802.4371 Combinatorics +0802.4373 General Mathematics +0802.4381 Optimization and Control +0802.4382 Optimization and Control +0802.4389 +0802.4390 Information Theory +0802.4400 Mesoscale and Nanoscale Physics +0802.4414 Category Theory +0802.4418 Statistical Mechanics +0802.4425 Group Theory +0802.4432 Complex Variables +0802.4434 Probability +0802.4437 Superconductivity +0802.4448 +0802.4450 Multiagent Systems +0802.4451 Algebraic Geometry +0802.4453 +cond-mat/0609604 Other Condensed Matter +cs/0612051 Information Theory +gr-qc/0609003 +math/0407145 Metric Geometry +math/0608197 Differential Geometry +math/0612712 Differential Geometry +math/0702242 Combinatorics +math/0703297 Symplectic Geometry +physics/0101074 General Physics +q-alg/9709011 Quantum Algebra +0704.1847 Physics and Society +0706.2905 +0706.3108 Computational Physics +0706.3405 Combinatorics +0707.3174 Combinatorics +0707.3882 +0709.1466 Classical Analysis and ODEs +0710.5816 Statistical Mechanics +0801.1278 Statistical Mechanics +0802.1406 Statistics Theory +0802.3347 Statistical Mechanics +0803.0222 Superconductivity +0803.3849 +0804.2292 +0805.0088 Atomic Physics +0805.4806 Strongly Correlated Electrons +0806.3355 Algebraic Geometry +0806.4627 Databases +0807.0233 Statistical Mechanics +0807.2212 +0807.3554 +0807.4694 Number Theory +0808.1614 +0808.1717 Complex Variables +0808.3030 Soft Condensed Matter +0808.3230 Optimization and Control +0808.3746 Learning +0809.2310 Phenomenology +0809.2579 Algebraic Geometry +0809.2851 Digital Libraries +0809.3509 Experiment +0809.4232 Probability +0809.4809 Experiment +0809.4957 Statistical Mechanics +0810.0026 +0810.0872 +0810.1078 Strongly Correlated Electrons +0810.2128 Phenomenology +0810.2608 Combinatorics +0810.2631 +0810.2860 +0810.3039 +0810.3246 Superconductivity +0810.3247 Materials Science +0810.3248 Physics and Society +0810.3249 Materials Science +0810.3252 +0810.3264 Strongly Correlated Electrons +0810.3266 Algebraic Topology +0810.3269 Instrumentation and Detectors +0810.3270 Phenomenology +0810.3273 Spectral Theory +0810.3275 Spectral Theory +0810.3277 Spectral Theory +0810.3284 Experiment +0810.3286 Optimization and Control +0810.3290 Materials Science +0810.3293 +0810.3295 Optimization and Control +0810.3297 +0810.3298 Combinatorics +0810.3299 Symplectic Geometry +0810.3301 Experiment +0810.3302 Strongly Correlated Electrons +0810.3306 Differential Geometry +0810.3307 Differential Geometry +0810.3308 K-Theory and Homology +0810.3309 Lattice +0810.3312 Experiment +0810.3315 Phenomenology +0810.3318 +0810.3320 Experiment +0810.3323 Experiment +0810.3324 Phenomenology +0810.3326 Experiment +0810.3328 Theory +0810.3330 +0810.3332 Programming Languages +0810.3334 Algebraic Geometry +0810.3338 Experiment +0810.3343 Probability +0810.3346 +0810.3356 Neural and Evolutionary Computing +0810.3361 Experiment +0810.3362 Experiment +0810.3365 +0810.3367 Analysis of PDEs +0810.3368 +0810.3369 Analysis of PDEs +0810.3370 Optics +0810.3371 Differential Geometry +0810.3375 Classical Physics +0810.3381 +0810.3387 Strongly Correlated Electrons +0810.3388 Combinatorics +0810.3393 +0810.3398 Analysis of PDEs +0810.3401 Optics +0810.3408 Instrumentation and Detectors +0810.3409 +0810.3410 Statistical Mechanics +0810.3411 Phenomenology +0810.3415 Experiment +0810.3416 Computation and Language +0810.3418 Computer Vision and Pattern Recognition +0810.3422 Information Theory +0810.3426 +0810.3427 Analysis of PDEs +0810.3428 Experiment +0810.3429 Instrumentation and Detectors +0810.3436 Experiment +0810.3438 Data Structures and Algorithms +0810.3443 Experiment +0810.3448 Experiment +0810.3451 Artificial Intelligence +0810.3461 Statistical Mechanics +0810.3463 Phenomenology +0810.3464 Experiment +0810.3468 Performance +0810.3474 Artificial Intelligence +0810.3476 Materials Science +0810.3484 Neural and Evolutionary Computing +0810.3487 Soft Condensed Matter +0810.3489 Soft Condensed Matter +0810.3492 Neural and Evolutionary Computing +0810.3494 +0810.3497 Soft Condensed Matter +0810.3499 +0810.3501 Superconductivity +0810.3508 +0810.3509 Materials Science +0810.3510 Phenomenology +0810.3512 General Physics +0810.3514 Experiment +0810.3515 Experiment +0810.3524 Phenomenology +0810.3525 Learning +0810.3533 Experiment +0810.3534 Materials Science +0810.3541 Experiment +0810.3543 +0810.3546 Experiment +0810.3554 Combinatorics +0810.3555 Instrumentation and Detectors +0810.3557 +0810.3558 +0810.3560 Phenomenology +0810.3563 +0810.3564 Information Theory +0810.3570 Experiment +0810.3572 +0810.3573 Chaotic Dynamics +0810.3574 Experiment +0810.3578 Quantum Algebra +0810.3579 Computer Vision and Pattern Recognition +0810.3582 Experiment +0810.3583 Experiment +0810.3587 Number Theory +0810.3590 Numerical Analysis +0810.3591 +0810.3599 Phenomenology +0810.3600 +0810.3602 Plasma Physics +0810.3604 Experiment +0810.3606 Experiment +0810.3609 Data Analysis, Statistics and Probability +0810.3610 Experiment +0810.3611 Classical Physics +0810.3612 Experiment +0810.3617 Experiment +0810.3618 Experiment +0810.3620 Phenomenology +0810.3623 Theory +0810.3624 Phenomenology +0810.3626 Networking and Internet Architecture +0810.3627 Experiment +0810.3629 Quantum Algebra +0810.3632 Experiment +0810.3633 Phenomenology +0810.3634 Algebraic Geometry +0810.3635 Phenomenology +0810.3638 Representation Theory +0810.3639 +0810.3641 Symbolic Computation +0810.3642 Experiment +0810.3643 Experiment +0810.3644 +0810.3645 Experiment +0810.3646 Experiment +math/0311002 Number Theory +math/0408069 Number Theory +math/0411062 Operator Algebras +math/0604524 Number Theory +math/0610204 Geometric Topology +physics/0512268 Physics and Society +0704.0957 Probability +0704.3139 Materials Science +0706.1336 Chaotic Dynamics +0706.3848 Discrete Mathematics +0708.1108 General Physics +0708.1357 Combinatorics +0708.2803 +0710.2242 Algebraic Geometry +0711.0730 +0711.1824 Theory +0712.1181 Experiment +0801.0515 Superconductivity +0801.1005 Mesoscale and Nanoscale Physics +0801.1621 Rings and Algebras +0801.1749 Classical Analysis and ODEs +0801.1832 Group Theory +0801.2077 Materials Science +0801.2926 Algebraic Geometry +0801.2987 Combinatorics +0801.2991 Probability +0801.2996 Complex Variables +0801.3003 +0801.3004 Other Condensed Matter +0801.3007 Genomics +0801.3008 Number Theory +0801.3011 Rings and Algebras +0801.3012 Strongly Correlated Electrons +0801.3013 Rings and Algebras +0801.3016 Representation Theory +0801.3017 Analysis of PDEs +0801.3022 Representation Theory +0801.3024 Information Theory +0801.3025 Representation Theory +0801.3027 Probability +0801.3030 Popular Physics +0801.3037 +0801.3038 Metric Geometry +0801.3039 Phenomenology +0801.3041 Complex Variables +0801.3042 Information Theory +0801.3050 +0801.3054 Phenomenology +0801.3055 Strongly Correlated Electrons +0801.3057 Other Condensed Matter +0801.3059 +0801.3061 Mesoscale and Nanoscale Physics +0801.3065 Logic in Computer Science +0801.3066 Superconductivity +0801.3070 Superconductivity +0801.3075 +0801.3076 Theory +0801.3084 Materials Science +0801.3091 Superconductivity +0801.3093 Group Theory +0801.3095 Strongly Correlated Electrons +0801.3101 Algebraic Geometry +0801.3102 Human-Computer Interaction +0801.3104 +0801.3107 Geometric Topology +0801.3108 Algebraic Topology +0801.3132 Experiment +0801.3135 Mesoscale and Nanoscale Physics +0801.3147 Data Structures and Algorithms +0801.3148 Soft Condensed Matter +0801.3157 Statistics Theory +0801.3158 Atomic Physics +0801.3161 Materials Science +0801.3162 Classical Physics +0801.3164 Theory +0801.3173 +0801.3175 +0801.3177 +0801.3178 Group Theory +0801.3183 Soft Condensed Matter +0801.3185 Optimization and Control +0801.3189 +0801.3200 +0801.3207 Mesoscale and Nanoscale Physics +0801.3214 +0801.3221 Statistical Mechanics +0801.3226 +0801.3227 Geometric Topology +0801.3236 Algebraic Geometry +0801.3240 +0801.3243 +0801.3245 Algebraic Geometry +0801.3248 Differential Geometry +0801.3249 Graphics +0801.3250 +0801.3253 Geometric Topology +0801.3257 Probability +0801.3258 +0801.3260 Quantum Algebra +0801.3262 +cond-mat/0404133 Superconductivity +hep-th/0611032 Theory +math/0202075 Spectral Theory +math/0611438 Commutative Algebra +math/0703323 Algebraic Geometry +q-bio/0612028 Populations and Evolution +quant-ph/0506023 +quant-ph/0611215 +0706.0115 +0706.1233 +0706.3095 Instrumentation and Detectors +0707.1431 +0708.1784 Phenomenology +0708.4141 +0709.4261 +0709.4270 +0709.4278 +0709.4279 +0709.4281 +0710.0010 Optimization and Control +0710.0058 +0710.4766 Theory +0710.5490 Phenomenology +0710.5676 Theory +0711.0960 +0711.1194 +0711.1465 Theory +0711.1714 +0711.1717 +0711.3504 +0711.3546 +0711.3554 +0712.0946 Theory +0801.1797 Theory +0801.2808 Theory +0801.4799 Phenomenology +0802.0801 Theory +0802.2726 Phenomenology +0803.0574 +0803.0787 Phenomenology +0803.3287 +0803.3304 Theory +0804.1252 Phenomenology +0804.3809 Lattice +0804.3824 +0805.0613 Theory +0805.3063 Phenomenology +0806.0213 Phenomenology +0806.0608 +0806.1370 +0806.2661 Theory +0806.4460 Theory +0806.4630 Fluid Dynamics +0807.0555 Phenomenology +0807.1588 Phenomenology +0807.2990 +0807.3968 Superconductivity +0807.4486 Phenomenology +0807.4625 Phenomenology +0808.0169 +0808.0355 Theory +0808.0614 Theory +0808.1155 +0808.2333 Phenomenology +0809.0043 Phenomenology +0809.0054 Optics +0809.0175 Theory +0809.0543 Instrumentation and Detectors +0809.1083 Theory +0809.1480 +0809.4895 Theory +0810.0298 Theory +0810.1089 +0810.1246 Theory +0810.2964 Theory +0810.4291 Theory +0812.3613 Numerical Analysis +0812.4459 Quantum Algebra +0812.4460 Artificial Intelligence +0812.4461 Information Retrieval +0812.4462 Mesoscale and Nanoscale Physics +0812.4463 Superconductivity +0812.4465 +0812.4475 Operator Algebras +0812.4476 Geometric Topology +0812.4477 Algebraic Geometry +0812.4478 Classical Physics +0812.4479 Number Theory +0812.4480 Algebraic Geometry +0812.4482 Quantum Algebra +0812.4492 Physics Education +0812.4494 Phenomenology +0812.4498 Differential Geometry +0812.4507 Classical Physics +0812.4511 +0812.4523 Computational Engineering, Finance, and Science +0812.4532 +0812.4535 Differential Geometry +0812.4544 Complex Variables +0812.4548 Computational Finance +0812.4549 Differential Geometry +0812.4561 +0812.4562 Combinatorics +0812.4563 Phenomenology +0812.4564 Complex Variables +0812.4565 +0812.4567 Classical Analysis and ODEs +0812.4570 Classical Analysis and ODEs +0812.4572 Phenomenology +astro-ph/0505520 +astro-ph/0611712 +hep-ph/0610395 Phenomenology +hep-ph/9504403 Phenomenology +hep-ph/9506235 Phenomenology +hep-ph/9508213 Phenomenology +hep-ph/9508404 Phenomenology +hep-ph/9605387 Phenomenology +hep-ph/9609271 Phenomenology +hep-ph/9609283 Phenomenology +hep-ph/9704232 Phenomenology +hep-ph/9707484 Phenomenology +hep-ph/9803273 Phenomenology +hep-th/0611059 Theory +math/0605604 Differential Geometry +nucl-th/0701085 +0705.4498 Operator Algebras +0712.0686 +0803.3138 Spectral Theory +0805.3453 Superconductivity +0806.1826 Classical Analysis and ODEs +0807.2436 Statistical Mechanics +0809.5273 Operator Algebras +0810.2469 Superconductivity +0811.1251 Materials Science +0811.2401 Theory +0811.2603 Physics and Society +gr-qc/0502037 +gr-qc/0606053 +math/0504551 Probability +quant-ph/0604133 +quant-ph/0703225 +0705.2302 Probability +0706.0638 Quantum Algebra +0708.1965 Probability +0710.0721 Quantum Algebra +0710.5011 Strongly Correlated Electrons +0712.1990 Atomic Physics +0712.2160 +0712.3049 +0801.0875 Dynamical Systems +0801.1185 Information Theory +0801.3413 Analysis of PDEs +0801.4175 Superconductivity +0802.0708 +0802.1225 +0802.2902 Chemical Physics +0803.0293 Strongly Correlated Electrons +0803.0869 Mesoscale and Nanoscale Physics +0803.2641 +0803.2737 Strongly Correlated Electrons +0803.2844 +0803.3072 Analysis of PDEs +0803.3177 Spectral Theory +0803.3179 Analysis of PDEs +0803.3397 Representation Theory +0803.3477 +0804.1649 Symbolic Computation +0804.1679 Symbolic Computation +0804.1687 Commutative Algebra +0804.1707 Symbolic Computation +0804.2053 Superconductivity +0804.2243 Superconductivity +0805.0450 Geophysics +0805.0634 Populations and Evolution +0805.1319 Cellular Automata and Lattice Gases +0805.1429 +0805.1893 +0805.1928 +0805.1941 +0805.1945 Experiment +0805.1946 Experiment +0805.1949 Probability +0805.1953 Complex Variables +0805.1954 Functional Analysis +0805.1956 Differential Geometry +0805.1958 Superconductivity +0805.1960 Experiment +0805.1967 Probability +0805.1968 Performance +0805.1970 Phenomenology +0805.1980 Classical Analysis and ODEs +0805.1985 Number Theory +0805.1986 +0805.1991 Phenomenology +0805.1992 Phenomenology +0805.1995 Mesoscale and Nanoscale Physics +0805.1996 Operator Algebras +0805.2002 Statistics Theory +0805.2011 Analysis of PDEs +0805.2017 +0805.2025 Functional Analysis +0805.2026 Logic +0805.2028 Functional Analysis +0805.2032 General Topology +0805.2034 Logic +0805.2045 Digital Libraries +0805.2051 Soft Condensed Matter +0805.2052 Phenomenology +0805.2056 +0805.2060 Differential Geometry +0805.2066 Geometric Topology +0805.2076 Materials Science +0805.2079 +0805.2081 Discrete Mathematics +0805.2082 +0805.2083 Discrete Mathematics +0805.2086 Experiment +0805.2090 Phenomenology +0805.2092 Number Theory +0805.2095 Number Theory +0805.2100 Soft Condensed Matter +0805.2104 Dynamical Systems +0805.2105 Combinatorics +0805.2111 Numerical Analysis +0805.2112 +0805.2114 Number Theory +0805.2115 Strongly Correlated Electrons +0805.2122 +0805.2125 Geophysics +0805.2127 Phenomenology +0805.2128 Combinatorics +0805.2132 +0805.2135 Computational Complexity +0805.2144 Number Theory +0805.2147 +cond-mat/0612006 Strongly Correlated Electrons +hep-ph/0204116 Phenomenology +math/0210286 Probability +math/0501550 Geometric Topology +math/0504067 Dynamical Systems +math/0505675 Differential Geometry +math/0611590 Algebraic Geometry +math/0701552 Algebraic Topology +math/0703348 Symplectic Geometry +q-bio/0508031 Biomolecules +q-bio/0702035 Populations and Evolution +0705.2186 Commutative Algebra +0705.3022 Biological Physics +0706.4233 Optimization and Control +0708.3886 Superconductivity +0710.3713 Soft Condensed Matter +0711.0059 Materials Science +0801.0283 Differential Geometry +0802.0366 Mesoscale and Nanoscale Physics +0802.2336 Algebraic Geometry +0802.3364 Methodology +0803.0541 Mesoscale and Nanoscale Physics +0803.3799 Strongly Correlated Electrons +0804.0396 Computational Complexity +0804.1286 Mesoscale and Nanoscale Physics +0804.3234 Computer Vision and Pattern Recognition +0805.1408 Strongly Correlated Electrons +0805.2497 +0806.3112 Quantum Algebra +0807.0966 Exactly Solvable and Integrable Systems +0807.1234 Differential Geometry +0807.2513 Materials Science +0808.0681 Mesoscale and Nanoscale Physics +0808.0724 Differential Geometry +0808.0732 Cryptography and Security +0808.0733 Strongly Correlated Electrons +0808.1170 Materials Science +0809.1034 Mesoscale and Nanoscale Physics +0809.1490 Statistical Mechanics +0809.1756 Theory +0810.0158 Statistical Mechanics +0810.1133 Experiment +0810.1200 Experiment +0810.3040 +0810.3396 Phenomenology +0810.3654 Theory +0810.4149 Superconductivity +0810.4153 Optimization and Control +0810.4156 Mesoscale and Nanoscale Physics +0810.4158 Algebraic Geometry +0810.4168 Populations and Evolution +0810.4171 Cryptography and Security +0810.4173 Group Theory +0810.4175 Experiment +0810.4177 Group Theory +0810.4183 Geometric Topology +0810.4185 Numerical Analysis +0810.4188 Information Theory +0810.4190 Differential Geometry +0810.4191 Geometric Topology +0810.4196 Numerical Analysis +0810.4203 Differential Geometry +0810.4215 Plasma Physics +0810.4219 +0810.4224 Number Theory +0810.4225 Numerical Analysis +0810.4238 Statistics Theory +0810.4240 Functional Analysis +0810.4241 Group Theory +0810.4245 Phenomenology +0810.4249 Computational Complexity +0810.4250 Phenomenology +0810.4253 Operator Algebras +0810.4259 Differential Geometry +0810.4263 Statistics Theory +0810.4271 Probability +0810.4272 Materials Science +0810.4279 Algebraic Geometry +0810.4287 +0810.4293 Theory +0810.4300 Dynamical Systems +0810.4321 Experiment +0810.4323 Classical Physics +0810.4324 +0810.4326 Optimization and Control +cond-mat/0603725 Disordered Systems and Neural Networks +cond-mat/0607083 Statistical Mechanics +cond-mat/0607520 Materials Science +math/0308135 Representation Theory +math/0604113 Differential Geometry +math/0608616 Functional Analysis +math/0701671 Algebraic Geometry +math/0701795 Functional Analysis +quant-ph/0310004 +quant-ph/0612181 +0704.2227 Mesoscale and Nanoscale Physics +0706.0789 Probability +0706.2550 +0706.3445 +0706.3472 Probability +0707.3001 +0708.4213 Representation Theory +0710.1059 Theory +0710.1625 K-Theory and Homology +0712.0037 Statistical Mechanics +0712.1951 Probability +0801.0035 Mesoscale and Nanoscale Physics +0801.0600 Other Condensed Matter +0801.3754 Algebraic Geometry +0802.1512 Statistical Mechanics +0802.1817 +0802.4241 Strongly Correlated Electrons +0803.0063 +0803.4412 Mesoscale and Nanoscale Physics +0804.3073 Functional Analysis +0804.3318 Chemical Physics +0805.0657 Atomic and Molecular Clusters +0805.0992 Combinatorics +0805.2062 Mesoscale and Nanoscale Physics +0805.2094 Phenomenology +0805.2772 Classical Analysis and ODEs +0805.4100 Group Theory +0805.4227 Number Theory +0805.4726 +0806.1662 Mesoscale and Nanoscale Physics +0806.3852 Phenomenology +0806.3992 +0806.4502 General Physics +0807.0577 General Mathematics +0807.0655 +0807.0886 Chemical Physics +0807.0936 Rings and Algebras +0807.0971 +0807.1106 Methodology +0807.1131 History and Overview +0807.1136 Fluid Dynamics +0807.1138 Phenomenology +0807.1139 Data Structures and Algorithms +0807.1140 Strongly Correlated Electrons +0807.1142 Rings and Algebras +0807.1148 Rings and Algebras +0807.1152 Algebraic Geometry +0807.1153 Networking and Internet Architecture +0807.1156 +0807.1159 Materials Science +0807.1160 Networking and Internet Architecture +0807.1162 Performance +0807.1165 Logic in Computer Science +0807.1167 Theory +0807.1169 Networking and Internet Architecture +0807.1170 Algebraic Geometry +0807.1173 Software Engineering +0807.1174 Number Theory +0807.1175 Strongly Correlated Electrons +0807.1177 Analysis of PDEs +0807.1188 Phenomenology +0807.1190 Rings and Algebras +0807.1197 Disordered Systems and Neural Networks +0807.1200 +0807.1206 Genomics +0807.1209 Chemical Physics +0807.1211 Programming Languages +0807.1214 Group Theory +0807.1217 Combinatorics +0807.1221 Computational Geometry +0807.1228 Performance +0807.1236 Phenomenology +0807.1240 +0807.1242 Soft Condensed Matter +0807.1246 Strongly Correlated Electrons +0807.1247 Complex Variables +0807.1251 +0807.1254 Logic +0807.1257 Functional Analysis +0807.1262 Materials Science +0807.1265 Analysis of PDEs +0807.1267 Distributed, Parallel, and Cluster Computing +0807.1272 +0807.1273 Statistical Mechanics +0807.1276 Genomics +0807.1277 Discrete Mathematics +0807.1285 Adaptation and Self-Organizing Systems +0807.1289 Functional Analysis +0807.1291 Experiment +0807.1296 +0807.1297 Computer Science and Game Theory +0807.1307 Symplectic Geometry +0807.1320 +cond-mat/0208540 Mesoscale and Nanoscale Physics +cond-mat/0411042 Strongly Correlated Electrons +cond-mat/0411058 Mesoscale and Nanoscale Physics +cond-mat/0507417 Soft Condensed Matter +cond-mat/0512189 Soft Condensed Matter +cond-mat/0603128 Statistical Mechanics +cond-mat/0607659 Mesoscale and Nanoscale Physics +cond-mat/0608019 Soft Condensed Matter +cond-mat/0609418 Soft Condensed Matter +cond-mat/0612279 Statistical Mechanics +cond-mat/0701382 Materials Science +cond-mat/0701716 Soft Condensed Matter +cond-mat/9709031 Mesoscale and Nanoscale Physics +cond-mat/9907190 Superconductivity +cs/0405112 Discrete Mathematics +cs/0412017 Networking and Internet Architecture +cs/0703026 Symbolic Computation +hep-ph/0604186 Phenomenology +hep-th/0111188 Theory +math/0105002 Quantum Algebra +math/0203229 Combinatorics +math/0207030 Combinatorics +math/0305403 Dynamical Systems +math/0309241 Classical Analysis and ODEs +math/0309242 Classical Analysis and ODEs +math/0409260 Symplectic Geometry +math/0609198 Classical Analysis and ODEs +math/0701451 Dynamical Systems +math/0702164 Differential Geometry +nucl-th/0407047 +q-bio/0611088 Genomics +0704.3912 Algebraic Geometry +0706.3467 +0708.2261 +0708.3981 Differential Geometry +0709.1562 Strongly Correlated Electrons +0709.2094 Other Condensed Matter +0709.2857 Geometric Topology +0710.0824 Logic in Computer Science +0710.0858 Mesoscale and Nanoscale Physics +0710.0902 +0710.3475 Disordered Systems and Neural Networks +0711.0080 Statistical Mechanics +0711.3359 Phenomenology +0711.3614 Strongly Correlated Electrons +0712.1774 +0712.1823 Mesoscale and Nanoscale Physics +0712.2941 Statistical Mechanics +0712.3021 Differential Geometry +0712.3924 Statistical Mechanics +0801.0160 Mesoscale and Nanoscale Physics +0801.0963 Combinatorics +0801.1191 Strongly Correlated Electrons +0801.1300 Data Structures and Algorithms +0801.1768 Materials Science +0801.4367 Geometric Topology +0801.4639 Phenomenology +0803.1135 Algebraic Geometry +0803.2399 Data Analysis, Statistics and Probability +0803.3507 Statistical Mechanics +0803.3719 Soft Condensed Matter +0804.0058 Chemical Physics +0804.0209 Combinatorics +0804.0474 Materials Science +0804.0632 Theory +0804.2362 Combinatorics +0804.2677 +0804.2683 General Physics +0804.2684 +0804.2689 +0804.2690 Commutative Algebra +0804.2698 Differential Geometry +0804.2699 Computational Complexity +0804.2700 Functional Analysis +0804.2704 +0804.2708 Applications +0804.2709 Group Theory +0804.2715 Differential Geometry +0804.2721 +0804.2722 Representation Theory +0804.2728 Mesoscale and Nanoscale Physics +0804.2733 Statistics Theory +0804.2734 +0804.2743 Experiment +0804.2746 Statistical Mechanics +0804.2754 General Physics +0804.2766 Complex Variables +0804.2773 Dynamical Systems +0804.2776 Combinatorics +0804.2787 +0804.2789 Fluid Dynamics +0804.2790 General Physics +0804.2792 +0804.2806 Materials Science +0804.2808 Information Theory +0804.2831 Computer Science and Game Theory +0804.2832 Functional Analysis +0804.2833 Analysis of PDEs +0804.2844 Human-Computer Interaction +0804.2845 Optics +0804.2847 Computers and Society +0804.2851 Human-Computer Interaction +0804.2852 Software Engineering +0804.2858 Phenomenology +0804.2873 Probability +cond-mat/0606592 Other Condensed Matter +cond-mat/0701036 Mesoscale and Nanoscale Physics +cs/0507019 Human-Computer Interaction +math/0212044 Algebraic Geometry +math/0401379 Combinatorics +math/0604181 Quantum Algebra +math/0605722 K-Theory and Homology +math/0610091 General Mathematics +math/0610155 Analysis of PDEs +math/0612622 Spectral Theory +math/0703337 K-Theory and Homology +0704.2674 Analysis of PDEs +0707.1796 Mesoscale and Nanoscale Physics +0707.1927 Mesoscale and Nanoscale Physics +0707.2061 Strongly Correlated Electrons +0707.4575 Materials Science +0708.1060 Atomic Physics +0708.1920 Mesoscale and Nanoscale Physics +0709.0584 Soft Condensed Matter +0709.1739 Number Theory +0710.0242 +0710.1272 Biological Physics +0710.2267 Algebraic Geometry +0710.3196 +0710.3702 +0711.2665 Computational Physics +0711.2915 Number Theory +0711.3831 Other Condensed Matter +0712.0914 Functional Analysis +0712.4131 Representation Theory +0801.0564 Symplectic Geometry +0801.0863 +0801.2290 General Physics +0801.2844 Dynamical Systems +0801.4871 +0802.0885 Optics +0802.1107 Computational Physics +0802.1212 Strongly Correlated Electrons +0802.1749 Atomic Physics +0802.2925 Other Condensed Matter +0802.2935 +0802.3408 Classical Physics +0802.3567 +0802.3706 Fluid Dynamics +0802.3708 Algebraic Geometry +0802.3709 Materials Science +0802.3711 +0802.3712 +0802.3713 +0802.3715 Phenomenology +0802.3718 Cryptography and Security +0802.3719 Differential Geometry +0802.3734 Computational Complexity +0802.3735 Biological Physics +0802.3737 Commutative Algebra +0802.3744 Other Quantitative Biology +0802.3746 Cryptography and Security +0802.3752 Geophysics +0802.3754 Mesoscale and Nanoscale Physics +0802.3760 Algebraic Geometry +0802.3762 +0802.3763 Algebraic Geometry +0802.3767 Other Computer Science +0802.3768 Other Computer Science +0802.3783 Medical Physics +0802.3784 Software Engineering +0802.3789 Computers and Society +0802.3793 Theory +0802.3796 Theory +0802.3799 Representation Theory +0802.3801 Dynamical Systems +0802.3806 +0802.3809 Number Theory +0802.3812 General Physics +0802.3823 +0802.3826 +0802.3832 Combinatorics +0802.3836 Quantum Algebra +0802.3840 General Mathematics +0802.3843 Number Theory +0802.3844 +0802.3846 +0802.3855 Cryptography and Security +0802.3859 Combinatorics +0802.3860 Computational Complexity +0802.3870 Analysis of PDEs +0802.3876 Molecular Networks +0802.3879 Disordered Systems and Neural Networks +0802.3880 Strongly Correlated Electrons +0802.3881 Data Structures and Algorithms +0802.3883 +0802.3884 General Physics +0802.3890 Applications +cond-mat/0611360 Soft Condensed Matter +cond-mat/0703509 Soft Condensed Matter +cond-mat/0703616 Materials Science +cs/0606015 Information Theory +math-ph/0506064 +math/0210424 General Topology +math/0404331 Algebraic Topology +math/0404332 Algebraic Topology +math/0404399 Category Theory +math/0501547 Symplectic Geometry +math/0509582 Geometric Topology +math/0603487 Geometric Topology +math/0607241 Metric Geometry +math/0607568 Metric Geometry +math/0703610 Operator Algebras +physics/0606068 Physics and Society +quant-ph/0604001 +quant-ph/0610203 +quant-ph/0703258 +quant-ph/0703264 +0704.0285 Mesoscale and Nanoscale Physics +0704.3526 Superconductivity +0705.0019 +0705.1684 +0706.0245 +0706.3747 General Physics +0707.3023 Classical Analysis and ODEs +0708.0784 Optics +0709.1918 Probability +0709.3115 Differential Geometry +0710.3511 Geometric Topology +0710.4613 Materials Science +0712.0847 +0712.1703 Materials Science +0801.1220 Probability +0802.3505 Analysis of PDEs +0803.2816 Mesoscale and Nanoscale Physics +0805.0188 Mesoscale and Nanoscale Physics +0806.2980 Probability +0806.3283 Materials Science +0806.4298 Superconductivity +0806.4408 Differential Geometry +0807.1508 Phenomenology +0807.1808 Differential Geometry +0807.4315 Superconductivity +0807.4642 +0808.0159 Statistical Mechanics +0808.0380 Statistical Mechanics +0808.2764 Other Condensed Matter +0808.2989 +0809.1176 Functional Analysis +0809.1545 Probability +0809.3152 Phenomenology +0809.3605 Experiment +0809.4657 Accelerator Physics +0809.5221 Phenomenology +0810.0064 +0810.2534 +0810.2544 Strongly Correlated Electrons +0810.2545 +0810.2550 Experiment +0810.2555 +0810.2559 Popular Physics +0810.2565 Analysis of PDEs +0810.2568 Complex Variables +0810.2570 Complex Variables +0810.2573 Analysis of PDEs +0810.2574 +0810.2577 Analysis of PDEs +0810.2584 +0810.2585 Algebraic Topology +0810.2601 Phenomenology +0810.2602 +0810.2603 Physics and Society +0810.2606 Materials Science +0810.2609 +0810.2611 Experiment +0810.2616 Materials Science +0810.2617 Quantitative Methods +0810.2618 +0810.2622 Phenomenology +0810.2624 +0810.2628 Experiment +0810.2632 +0810.2634 Numerical Analysis +0810.2636 +0810.2637 Representation Theory +0810.2638 +0810.2641 Differential Geometry +0810.2643 Computation +0810.2644 Mesoscale and Nanoscale Physics +0810.2646 +0810.2651 +0810.2653 Logic in Computer Science +0810.2662 +0810.2663 Experiment +0810.2664 Experiment +0810.2666 Robotics +0810.2673 Functional Analysis +0810.2675 Experiment +0810.2681 Probability +0810.2687 Algebraic Geometry +0810.2692 Materials Science +0810.2697 Discrete Mathematics +0810.2722 +0810.2726 +0810.2727 Combinatorics +0810.2737 Rings and Algebras +0810.2740 Instrumentation and Detectors +0810.2741 Analysis of PDEs +0810.2743 Representation Theory +0810.2745 Geophysics +0810.2746 Information Theory +0810.2753 Statistics Theory +0810.2754 Dynamical Systems +0810.2761 Algebraic Topology +0810.2764 Information Retrieval +0810.2766 Classical Analysis and ODEs +0810.2769 Instrumentation and Detectors +0810.2771 Representation Theory +0810.2776 General Physics +0810.2777 Probability +0810.2778 +cond-mat/0003062 Materials Science +math/0610400 Number Theory +math/0701222 Combinatorics +math/0701518 Differential Geometry +math/0702143 Algebraic Geometry +0704.2679 +0704.3173 Statistical Mechanics +0705.0276 Quantum Algebra +0705.0468 Classical Analysis and ODEs +0705.2577 +0705.2671 Statistical Mechanics +0705.2889 Exactly Solvable and Integrable Systems +0705.3250 Quantum Algebra +0705.3628 +0705.4198 Strongly Correlated Electrons +0705.4546 Quantum Algebra +0706.2719 Exactly Solvable and Integrable Systems +0706.2790 Geometric Topology +0706.3387 Exactly Solvable and Integrable Systems +0707.1950 Exactly Solvable and Integrable Systems +0707.2378 Superconductivity +0707.2869 +0707.3164 Differential Geometry +0707.4033 Differential Geometry +0708.1551 Quantum Algebra +0708.2053 Physics and Society +0708.2170 Differential Geometry +0708.2186 Algebraic Geometry +0708.3506 Pattern Formation and Solitons +0708.3540 Representation Theory +0708.3771 Materials Science +0708.4172 Differential Geometry +0709.1198 +0709.2373 +0709.2471 Differential Geometry +0710.0492 Differential Geometry +0710.2471 Soft Condensed Matter +0711.2229 Strongly Correlated Electrons +0711.4661 Representation Theory +0801.0151 Statistical Mechanics +0801.1358 +0802.2745 Spectral Theory +0802.3837 +0803.0727 Probability +0803.1291 Statistical Mechanics +0803.4231 Rings and Algebras +0804.0750 Theory +0804.0957 Computational Complexity +0804.2157 Algebraic Geometry +0804.2812 Symplectic Geometry +0804.3426 +0804.3562 Phenomenology +0804.3599 Information Retrieval +0804.3600 General Mathematics +0804.3621 Representation Theory +0804.3628 Dynamical Systems +0804.3636 Physics and Society +0804.3638 Combinatorics +0804.3641 Strongly Correlated Electrons +0804.3644 Materials Science +0804.3646 Materials Science +0804.3650 Numerical Analysis +0804.3652 Symplectic Geometry +0804.3659 +0804.3662 +0804.3663 Materials Science +0804.3665 +0804.3666 Quantitative Methods +0804.3669 Atomic Physics +0804.3671 Discrete Mathematics +0804.3676 Adaptation and Self-Organizing Systems +0804.3677 Chaotic Dynamics +0804.3678 Statistics Theory +0804.3687 Optics +0804.3696 Classical Analysis and ODEs +0804.3698 +0804.3701 Spectral Theory +0804.3706 Experiment +0804.3708 +0804.3710 +0804.3716 General Mathematics +0804.3717 +0804.3731 Phenomenology +0804.3737 General Topology +0804.3739 Classical Analysis and ODEs +0804.3742 +0804.3752 Cryptography and Security +0804.3760 +0804.3778 +0804.3780 +0804.3783 +0804.3788 Representation Theory +0804.3789 +0804.3790 Analysis of PDEs +0804.3791 Digital Libraries +cond-mat/0602427 Statistical Mechanics +cond-mat/0605364 Statistical Mechanics +cond-mat/0607465 Strongly Correlated Electrons +cond-mat/0701075 Statistical Mechanics +math-ph/0502028 +math-ph/0508016 +math-ph/0508032 +math-ph/0508065 +math-ph/0511010 +math-ph/0511035 +math-ph/0511071 +math-ph/0511075 +math-ph/0511076 +math-ph/0511077 +math-ph/0511081 +math-ph/0512029 +math-ph/0512084 +math-ph/0601002 +math-ph/0601037 +math-ph/0601042 +math-ph/0601059 +math-ph/0601060 +math-ph/0602008 +math-ph/0602012 +math-ph/0602050 +math-ph/0602065 +math-ph/0602066 +math-ph/0603011 +math-ph/0603071 +math-ph/0604021 +math-ph/0606040 +math-ph/0606042 +math-ph/0609081 +math-ph/0610048 +math-ph/0610083 +math-ph/0611018 +math-ph/0611020 +math-ph/0611040 +math-ph/0611045 +math-ph/0612048 +math-ph/0701012 +math-ph/0702032 +math-ph/0702033 +math-ph/0702040 +math-ph/0702048 +math-ph/0702084 +math-ph/0702089 +math-ph/0703012 +math-ph/0703038 +math-ph/0703044 +math-ph/0703045 +math-ph/0703062 +math-ph/0703071 +math-ph/0703072 +math-ph/0703080 +math/0404262 Quantum Algebra +math/0501322 Algebraic Geometry +math/0507009 Number Theory +math/0510095 Geometric Topology +math/0511632 Quantum Algebra +math/0601330 Probability +math/0602441 Functional Analysis +math/0602677 Representation Theory +math/0603408 Classical Analysis and ODEs +math/0604220 Optimization and Control +math/0604278 Analysis of PDEs +math/0605091 Representation Theory +math/0605204 Classical Analysis and ODEs +math/0605334 Rings and Algebras +math/0605717 Representation Theory +math/0606045 Analysis of PDEs +math/0606121 Quantum Algebra +math/0606391 Classical Analysis and ODEs +math/0606711 Representation Theory +math/0607130 Algebraic Geometry +math/0609177 Differential Geometry +math/0610322 Quantum Algebra +math/0610718 Classical Analysis and ODEs +math/0611639 Combinatorics +math/0612086 Quantum Algebra +math/0612108 Complex Variables +math/0612467 Dynamical Systems +math/0612558 Quantum Algebra +math/0612730 Quantum Algebra +math/0701134 Quantum Algebra +math/0701135 Classical Analysis and ODEs +math/0701677 Classical Analysis and ODEs +math/0701778 K-Theory and Homology +math/0702107 Classical Analysis and ODEs +math/0702280 Number Theory +math/0702383 Differential Geometry +math/0702624 Quantum Algebra +math/0702676 Quantum Algebra +math/0703043 Dynamical Systems +math/0703057 Classical Analysis and ODEs +math/0703189 Differential Geometry +math/0703665 Symplectic Geometry +nlin/0408027 Exactly Solvable and Integrable Systems +nlin/0506027 Exactly Solvable and Integrable Systems +nlin/0507004 Exactly Solvable and Integrable Systems +nlin/0511035 Exactly Solvable and Integrable Systems +nlin/0511039 Exactly Solvable and Integrable Systems +nlin/0511055 Exactly Solvable and Integrable Systems +nlin/0511058 Exactly Solvable and Integrable Systems +nlin/0512012 Exactly Solvable and Integrable Systems +nlin/0512016 Exactly Solvable and Integrable Systems +nlin/0512021 Exactly Solvable and Integrable Systems +nlin/0512032 Exactly Solvable and Integrable Systems +nlin/0512046 Exactly Solvable and Integrable Systems +nlin/0601007 Exactly Solvable and Integrable Systems +nlin/0601036 Exactly Solvable and Integrable Systems +nlin/0602010 Exactly Solvable and Integrable Systems +nlin/0602038 Exactly Solvable and Integrable Systems +nlin/0603009 Exactly Solvable and Integrable Systems +nlin/0604032 Exactly Solvable and Integrable Systems +nlin/0604076 Pattern Formation and Solitons +nlin/0605027 Exactly Solvable and Integrable Systems +nlin/0605041 Exactly Solvable and Integrable Systems +nlin/0606039 Exactly Solvable and Integrable Systems +nlin/0606071 Exactly Solvable and Integrable Systems +nlin/0608038 Exactly Solvable and Integrable Systems +nlin/0608039 Exactly Solvable and Integrable Systems +nlin/0610011 Exactly Solvable and Integrable Systems +nlin/0610031 Exactly Solvable and Integrable Systems +nlin/0610073 Exactly Solvable and Integrable Systems +nlin/0612019 Exactly Solvable and Integrable Systems +nlin/0612037 Exactly Solvable and Integrable Systems +nlin/0612042 Exactly Solvable and Integrable Systems +nlin/0612060 Exactly Solvable and Integrable Systems +nlin/0612063 Exactly Solvable and Integrable Systems +nlin/0701003 Exactly Solvable and Integrable Systems +nlin/0701004 Exactly Solvable and Integrable Systems +nlin/0701006 Exactly Solvable and Integrable Systems +nlin/0701030 Exactly Solvable and Integrable Systems +nlin/0701040 Exactly Solvable and Integrable Systems +nlin/0701054 Exactly Solvable and Integrable Systems +nlin/0703002 Exactly Solvable and Integrable Systems +nlin/0703016 Exactly Solvable and Integrable Systems +nlin/0703025 Exactly Solvable and Integrable Systems +nlin/0703057 Exactly Solvable and Integrable Systems +physics/0504048 Fluid Dynamics +physics/0602018 Atomic Physics +physics/0605106 Fluid Dynamics +quant-ph/0511125 +quant-ph/0511238 +quant-ph/0703239 +0708.1935 +0708.4295 Other Condensed Matter +0709.0953 +0710.3826 +0802.1701 Other Condensed Matter +0802.3223 Chaotic Dynamics +0803.1729 Materials Science +0803.3526 Mesoscale and Nanoscale Physics +0803.3994 Soft Condensed Matter +0803.4307 Other Condensed Matter +0804.1398 Superconductivity +0804.1712 +0805.4191 Theory +0806.0191 +0806.0233 Combinatorics +0806.0248 Other Condensed Matter +0806.0263 +0806.0870 Computer Vision and Pattern Recognition +0806.0899 Methodology +0806.1006 +0806.1144 +0806.1770 +math/0601738 Differential Geometry +nlin/0702047 Adaptation and Self-Organizing Systems +quant-ph/0511128 +0704.1730 Combinatorics +0706.1423 Strongly Correlated Electrons +0706.2876 Optimization and Control +0706.4310 Strongly Correlated Electrons +0707.0129 Algebraic Geometry +0707.2126 Discrete Mathematics +0710.0938 Combinatorics +0711.0282 Superconductivity +0711.3466 Materials Science +0711.4586 Strongly Correlated Electrons +0712.0753 Mesoscale and Nanoscale Physics +0801.3755 Dynamical Systems +0802.0386 Materials Science +0802.0839 Strongly Correlated Electrons +0802.2621 Experiment +0802.3854 Neurons and Cognition +0803.0491 Combinatorics +cs/0703036 Information Theory +math/0701026 K-Theory and Homology +0704.1186 Disordered Systems and Neural Networks +0704.3759 Physics and Society +0705.2398 +0705.4455 General Physics +0707.1821 Statistical Mechanics +0707.3546 Optics +0708.0219 +0709.0847 +0710.1046 Algebraic Geometry +0711.1326 +0711.1503 +0711.3421 Biomolecules +0711.4333 Mesoscale and Nanoscale Physics +0712.0907 Materials Science +0712.2163 +0712.2600 Theory +0712.2804 Combinatorics +0801.0592 Strongly Correlated Electrons +0801.1866 Soft Condensed Matter +0801.3452 Group Theory +0802.0420 Algebraic Geometry +0802.3642 +0803.3372 Algebraic Geometry +0804.0186 Superconductivity +0804.1561 Theory +0804.1567 Superconductivity +0804.1568 Geometric Topology +0804.1569 Group Theory +0804.1577 Strongly Correlated Electrons +0804.1581 Phenomenology +0804.1587 Combinatorics +0804.1599 Algebraic Geometry +0804.1602 Information Theory +0804.1606 +0804.1609 +0804.1611 Materials Science +0804.1626 Algebraic Geometry +0804.1628 Analysis of PDEs +0804.1634 Probability +0804.1644 +0804.1647 Algebraic Geometry +0804.1650 Combinatorics +0804.1652 Number Theory +0804.1653 Information Theory +0804.1655 Atomic and Molecular Clusters +0804.1656 Probability +0804.1658 Number Theory +0804.1662 Algebraic Geometry +0804.1663 +0804.1666 Materials Science +0804.1668 Geometric Topology +0804.1674 +0804.1676 Physics and Society +0804.1682 Differential Geometry +0804.1684 Experiment +0804.1690 Applications +0804.1693 Numerical Analysis +0804.1697 Information Theory +0804.1699 Algebraic Geometry +0804.1724 Data Structures and Algorithms +0804.1725 Functional Analysis +0804.1726 Superconductivity +0804.1732 Differential Geometry +0804.1733 Functional Analysis +0804.1736 Phenomenology +0804.1740 Combinatorics +0804.1743 +0804.1744 Disordered Systems and Neural Networks +0804.1745 +0804.1746 Phenomenology +0804.1751 +0804.1752 Differential Geometry +0804.1755 Strongly Correlated Electrons +0804.1761 Probability +0804.1763 Rings and Algebras +0804.1771 +0804.1780 Numerical Analysis +0804.1788 Cryptography and Security +astro-ph/9411049 +cs/0510070 Information Theory +cs/0611032 Neural and Evolutionary Computing +math/0504429 Combinatorics +math/0504528 Combinatorics +math/0505010 Combinatorics +math/0508535 Differential Geometry +math/0603001 Combinatorics +math/0611548 Operator Algebras +math/0701257 Algebraic Geometry +quant-ph/0608146 +0704.2380 Probability +0709.0986 Representation Theory +0709.1629 Probability +0710.3388 Chaotic Dynamics +0710.4918 +0712.0740 +0712.2682 Data Structures and Algorithms +0712.3889 Other Condensed Matter +0803.2442 Other Condensed Matter +0804.0875 Mesoscale and Nanoscale Physics +0804.4047 Algebraic Geometry +0804.4735 Algebraic Geometry +0805.2602 Algebraic Topology +0805.3606 Statistical Mechanics +0805.4794 +0806.1228 Mesoscale and Nanoscale Physics +0806.3751 +0807.2164 Theory +0807.4066 Other Condensed Matter +0808.0439 Mesoscale and Nanoscale Physics +0808.0853 Statistics Theory +0808.1181 +0808.1767 Operator Algebras +0808.2343 Applications +0808.2499 Combinatorics +0808.2766 Number Theory +0808.2817 Geometric Topology +0808.2819 Strongly Correlated Electrons +0808.2825 Phenomenology +0808.2834 Spectral Theory +0808.2837 Information Theory +0808.2838 +0808.2839 Geometric Topology +0808.2846 Popular Physics +0808.2849 Representation Theory +0808.2851 Operator Algebras +0808.2856 Functional Analysis +0808.2862 Spectral Theory +0808.2863 Probability +0808.2865 Probability +0808.2872 Other Condensed Matter +0808.2876 Statistical Mechanics +0808.2877 Probability +0808.2878 Analysis of PDEs +0808.2886 Phenomenology +0808.2887 Materials Science +0808.2895 Analysis of PDEs +0808.2904 Computation and Language +0808.2907 Probability +0808.2922 Populations and Evolution +0808.2926 +0808.2931 Computational Geometry +0808.2932 Group Theory +0808.2934 Experiment +0808.2935 Experiment +0808.2942 Functional Analysis +0808.2943 Combinatorics +0808.2948 Phenomenology +0808.2951 Quantum Algebra +0808.2956 +0808.2957 Theory +0808.2964 Information Theory +0808.2969 Materials Science +0808.2972 +0808.2984 Learning +math/0601594 Operator Algebras +math/0605023 Analysis of PDEs +math/0703508 Number Theory +quant-ph/0702045 +0709.2530 Statistical Mechanics +0802.0150 +0802.0774 +0803.0519 +0803.1155 Strongly Correlated Electrons +0804.2930 Combinatorics +0806.1625 +0704.2443 Materials Science +0705.2540 Statistics Theory +0705.4074 Numerical Analysis +0708.1321 Statistics Theory +0708.2163 +0708.4153 +0710.2170 Materials Science +0710.2439 Soft Condensed Matter +0710.5308 +0710.5856 Quantum Algebra +0711.1768 Strongly Correlated Electrons +0711.3162 Strongly Correlated Electrons +0712.0806 Disordered Systems and Neural Networks +0712.0893 Superconductivity +0712.3586 Disordered Systems and Neural Networks +0801.0020 Other Condensed Matter +0801.1378 Other Condensed Matter +0802.0993 Optimization and Control +0802.1307 Number Theory +0802.3461 Number Theory +0803.2853 Complex Variables +0803.3018 +0803.3123 Theory +0803.3187 Logic in Computer Science +0803.3222 Group Theory +0803.3231 Software Engineering +0803.3263 Commutative Algebra +0803.3268 Number Theory +0803.3288 +0803.3291 Logic +0803.3293 Logic +0803.3294 Logic +0803.3296 Logic +0803.3298 Analysis of PDEs +0803.3300 General Physics +0803.3301 Algebraic Geometry +0803.3307 Phenomenology +0803.3309 Classical Analysis and ODEs +0803.3312 Strongly Correlated Electrons +0803.3315 Statistical Mechanics +0803.3326 Analysis of PDEs +0803.3335 Representation Theory +0803.3337 Algebraic Geometry +0803.3340 Operator Algebras +0803.3344 Dynamical Systems +0803.3348 Statistical Mechanics +0803.3353 Rings and Algebras +0803.3365 Algebraic Geometry +0803.3371 Chemical Physics +0803.3377 Analysis of PDEs +0803.3382 +0803.3383 Group Theory +0803.3388 +0803.3394 Human-Computer Interaction +0803.3398 +0803.3400 Exactly Solvable and Integrable Systems +0803.3402 Functional Analysis +0803.3403 +0803.3406 Combinatorics +0803.3414 Combinatorics +0803.3417 Disordered Systems and Neural Networks +0803.3431 Dynamical Systems +0803.3432 Physics and Society +0803.3435 Symbolic Computation +0803.3436 Applications +cond-mat/0205379 Statistical Mechanics +cond-mat/0611395 Soft Condensed Matter +cond-mat/0612507 Mesoscale and Nanoscale Physics +cs/0607050 Graphics +cs/0703061 Information Theory +math/0412507 Complex Variables +math/0510417 Number Theory +math/0605625 Algebraic Geometry +math/0609499 Complex Variables +math/0609693 Representation Theory +math/0702582 Group Theory +q-bio/0507032 Genomics +quant-ph/0511247 +quant-ph/0610240 +0704.0250 Strongly Correlated Electrons +0704.0564 Theory +0704.2868 Combinatorics +0705.3026 +0706.0443 +0706.1670 Other Condensed Matter +0707.0661 +0707.1857 Quantum Algebra +0707.2529 Mesoscale and Nanoscale Physics +0707.3976 Mesoscale and Nanoscale Physics +0708.3296 Materials Science +0709.1800 Biological Physics +0709.1820 Superconductivity +0709.4244 Superconductivity +0710.3643 Other Condensed Matter +0711.0557 Information Theory +0711.0689 +0711.2709 +0711.3907 Algebraic Geometry +0712.3275 Commutative Algebra +0712.3455 Other Condensed Matter +0801.2837 Biological Physics +0801.3171 Mesoscale and Nanoscale Physics +0802.3176 Phenomenology +0802.3539 Statistics Theory +0802.3905 Theory +0802.3946 Probability +0802.4139 Representation Theory +0802.4338 Algebraic Geometry +0803.0753 Soft Condensed Matter +0803.0755 Information Theory +0803.0769 +0803.0770 +0803.0779 +0803.0781 +0803.0784 Analysis of PDEs +0803.0789 General Physics +0803.0792 Data Structures and Algorithms +0803.0800 Classical Analysis and ODEs +0803.0804 Functional Analysis +0803.0814 Strongly Correlated Electrons +0803.0822 Information Retrieval +0803.0823 Soft Condensed Matter +0803.0825 +0803.0828 +0803.0831 Number Theory +0803.0840 Representation Theory +0803.0842 Representation Theory +0803.0848 Combinatorics +0803.0852 Number Theory +0803.0853 Category Theory +0803.0857 Exactly Solvable and Integrable Systems +0803.0864 Combinatorics +0803.0875 Information Theory +0803.0880 Superconductivity +0803.0881 Materials Science +0803.0882 Exactly Solvable and Integrable Systems +0803.0886 +0803.0893 Exactly Solvable and Integrable Systems +0803.0898 Geometric Topology +0803.0904 Optimization and Control +0803.0905 +0803.0906 Probability +0803.0909 +0803.0910 +0803.0919 Theory +0803.0923 +0803.0927 +0803.0931 +0803.0932 Probability +0803.0934 Statistical Mechanics +0803.0935 Phenomenology +0803.0939 Physics and Society +0803.0944 +0803.0947 +0803.0957 Analysis of PDEs +0803.0961 Exactly Solvable and Integrable Systems +0803.0964 Genomics +0803.0968 Rings and Algebras +0803.0972 +0803.0976 Chemical Physics +alg-geom/9606013 Algebraic Geometry +cond-mat/0612309 Other Condensed Matter +cond-mat/0612693 Mesoscale and Nanoscale Physics +cond-mat/0703041 Materials Science +hep-th/0701102 Theory +math/0406506 Dynamical Systems +math/0501280 Geometric Topology +math/0505242 Algebraic Geometry +math/0507176 Algebraic Geometry +math/0508200 Algebraic Geometry +math/0510167 Algebraic Geometry +math/0610916 Statistics Theory +math/0612507 Statistics Theory +math/0701159 Group Theory +math/0702097 Combinatorics +math/0703509 Symplectic Geometry +math/0703658 History and Overview +nlin/0410049 Exactly Solvable and Integrable Systems +quant-ph/0611083 +0704.1212 Optics +0705.0181 +0707.0759 +0707.0986 Optics +0707.2199 +0707.4356 Soft Condensed Matter +0707.4618 Combinatorics +0708.0667 +0708.4357 Pattern Formation and Solitons +0709.1776 Differential Geometry +0709.3922 Soft Condensed Matter +0710.3909 Differential Geometry +0711.0589 Number Theory +0711.0604 Number Theory +0711.3862 Differential Geometry +0712.2072 Functional Analysis +0712.2547 Optics +0801.1718 Information Theory +0801.1721 General Topology +0801.3228 +0802.2392 Strongly Correlated Electrons +0802.2719 Statistical Mechanics +0802.2884 Biomolecules +0803.0207 +0804.3709 Other Condensed Matter +0804.4174 General Physics +0804.4545 Statistical Mechanics +0804.4804 Populations and Evolution +0805.1564 Statistical Mechanics +0805.1772 Mesoscale and Nanoscale Physics +0805.2355 +0805.4619 Statistical Mechanics +0806.0532 Superconductivity +0806.1979 Atomic and Molecular Clusters +0806.2711 Superconductivity +0806.3639 +0806.3794 Theory +0806.4703 Databases +0806.4818 Mesoscale and Nanoscale Physics +0807.3428 +0807.3559 Materials Science +0807.3563 Theory +0807.3565 Soft Condensed Matter +0807.3566 +0807.3568 Mesoscale and Nanoscale Physics +0807.3571 Probability +0807.3578 Algebraic Geometry +0807.3581 +0807.3583 Complex Variables +0807.3584 Superconductivity +0807.3590 Metric Geometry +0807.3592 +0807.3593 Information Theory +0807.3600 Discrete Mathematics +0807.3602 Representation Theory +0807.3603 Number Theory +0807.3608 Neurons and Cognition +0807.3609 Other Condensed Matter +0807.3614 +0807.3619 +0807.3620 Plasma Physics +0807.3621 Dynamical Systems +0807.3623 Strongly Correlated Electrons +0807.3626 +0807.3632 Distributed, Parallel, and Cluster Computing +0807.3633 Other Condensed Matter +0807.3642 Symplectic Geometry +0807.3647 Complex Variables +0807.3660 +0807.3668 General Physics +0807.3669 Artificial Intelligence +0807.3681 Statistical Mechanics +0807.3685 Theory +0807.3699 Discrete Mathematics +0807.3702 Combinatorics +0807.3704 Operator Algebras +0807.3706 History and Philosophy of Physics +0807.3709 Dynamical Systems +0807.3710 Physics and Society +0807.3712 Complex Variables +0807.3723 Optimization and Control +0807.3732 Hardware Architecture +0807.3734 Methodology +0807.3738 Combinatorics +cond-mat/0501271 Materials Science +cond-mat/0502636 Materials Science +cond-mat/0606056 Disordered Systems and Neural Networks +cond-mat/0607151 Superconductivity +cond-mat/0607388 Materials Science +math/0306301 Quantum Algebra +math/0405042 Spectral Theory +math/0605242 Optimization and Control +math/0605610 Optimization and Control +math/0606244 K-Theory and Homology +math/0607223 Differential Geometry +nucl-th/0404013 +nucl-th/0404090 +physics/0212016 Optics +physics/0411120 Optics +physics/0606111 Optics +quant-ph/0603244 +0705.3931 Commutative Algebra +0705.4166 Geometric Topology +0706.0445 Statistical Mechanics +0707.4047 Geometric Topology +0708.1746 Physics and Society +0709.3790 Dynamical Systems +0710.0348 Mesoscale and Nanoscale Physics +0710.3589 Strongly Correlated Electrons +0711.3936 Differential Geometry +0711.4028 Biological Physics +0711.4955 Superconductivity +0712.1288 Phenomenology +0801.2612 Soft Condensed Matter +0801.2840 +0802.2583 +0803.1206 +0803.2494 +cond-mat/0601014 Statistical Mechanics +cs/0611116 Distributed, Parallel, and Cluster Computing +math/0608653 Geometric Topology +math/0702174 Differential Geometry +q-bio/0612049 Neurons and Cognition +0704.1047 +0706.0370 Mesoscale and Nanoscale Physics +0708.0416 Strongly Correlated Electrons +0708.1574 Algebraic Geometry +0710.3653 Optics +0710.5716 Disordered Systems and Neural Networks +0801.4846 Statistical Mechanics +cond-mat/0703717 Strongly Correlated Electrons +math-ph/0703033 +0704.1203 Lattice +0708.3260 Probability +0710.4991 Number Theory +0711.4714 +0712.0656 Lattice +0712.3766 Numerical Analysis +0712.3774 Numerical Analysis +0712.3778 Analysis of PDEs +0712.4092 Metric Geometry +0801.1271 Classical Analysis and ODEs +0801.2812 Algebraic Geometry +0803.2883 Materials Science +0805.0512 Physics and Society +0805.1974 Logic in Computer Science +0805.2374 +0805.2856 +0805.3557 Mesoscale and Nanoscale Physics +0805.4105 Strongly Correlated Electrons +0806.2154 Phenomenology +0807.2015 Mesoscale and Nanoscale Physics +0807.3036 +0809.3475 Materials Science +0809.3948 +0809.3998 +0809.4037 +0810.1346 Materials Science +0810.1357 Statistical Mechanics +0811.1066 Phenomenology +0811.4091 +0812.2865 Theory +0812.3508 +0812.3960 +0812.4001 Analysis of PDEs +0812.4092 Phenomenology +0812.4286 Algebraic Geometry +0812.4295 Quantitative Methods +0812.4299 Differential Geometry +0812.4301 +0812.4310 +0812.4317 Algebraic Geometry +0812.4318 Algebraic Geometry +0812.4328 Differential Geometry +0812.4329 Discrete Mathematics +0812.4330 Strongly Correlated Electrons +0812.4334 Information Theory +0812.4336 Phenomenology +0812.4340 Analysis of PDEs +0812.4341 Populations and Evolution +0812.4343 General Physics +0812.4350 Spectral Theory +0812.4355 Atomic Physics +0812.4365 Classical Analysis and ODEs +0812.4367 Discrete Mathematics +0812.4379 Materials Science +0812.4381 +0812.4383 +0812.4386 Soft Condensed Matter +0812.4393 Commutative Algebra +0812.4394 Theory +0812.4397 Combinatorics +0812.4398 Symplectic Geometry +0812.4400 +0812.4403 Algebraic Geometry +0812.4408 Theory +0812.4409 Phenomenology +0812.4414 Probability +0812.4419 Phenomenology +0812.4423 +0812.4424 Atomic Physics +0812.4430 +0812.4434 Group Theory +0812.4442 Data Structures and Algorithms +0812.4446 Computation and Language +cond-mat/9209010 +cond-mat/9211007 +cs/0603058 Information Theory +gr-qc/0401037 +hep-lat/9405024 Lattice +hep-ph/0605070 Phenomenology +math/0006109 Analysis of PDEs +math/0412133 General Mathematics +math/0605776 Algebraic Geometry +math/0608743 Complex Variables +math/0701213 Algebraic Geometry +physics/0108017 General Physics +0704.2287 Superconductivity +0707.2668 Phenomenology +0708.2041 Algebraic Topology +0708.2102 Analysis of PDEs +0710.2870 Complex Variables +0711.1638 Geometric Topology +0711.2922 Logic +0711.4892 General Physics +0712.0458 Theory +0801.3273 +0802.0727 Complex Variables +0802.1324 Phenomenology +0803.2448 Materials Science +0803.3114 Statistical Mechanics +0803.3462 +0803.4017 +0804.3768 Superconductivity +0805.0328 +0805.3524 Geophysics +0807.0799 Cryptography and Security +0807.2784 Superconductivity +0807.2994 Rings and Algebras +0807.3690 General Mathematics +0808.0774 Combinatorics +0808.0920 Operating Systems +0808.0928 Combinatorics +0808.0929 Strongly Correlated Electrons +0808.0935 Materials Science +0808.0941 Phenomenology +0808.0948 Information Theory +0808.0952 Strongly Correlated Electrons +0808.0955 Differential Geometry +0808.0959 +0808.0960 +0808.0962 Logic in Computer Science +0808.0964 Number Theory +0808.0965 Soft Condensed Matter +0808.0967 Statistics Theory +0808.0970 Phenomenology +0808.0972 Phenomenology +0808.0973 Artificial Intelligence +0808.0976 Statistics Theory +0808.0977 Statistics Theory +0808.0979 Materials Science +0808.0980 Data Structures and Algorithms +0808.0981 Statistical Mechanics +0808.0982 Classical Analysis and ODEs +0808.0985 Statistics Theory +0808.0989 Statistics Theory +0808.0998 Pattern Formation and Solitons +0808.1002 +0808.1010 Statistics Theory +0808.1011 Experiment +0808.1012 Statistics Theory +0808.1013 Statistics Theory +0808.1015 Theory +0808.1016 Statistics Theory +0808.1020 Instrumentation and Detectors +0808.1021 Biological Physics +0808.1024 Superconductivity +0808.1025 Statistics Theory +0808.1027 Phenomenology +0808.1030 Statistics Theory +0808.1031 Experiment +0808.1036 +0808.1045 +0808.1055 Phenomenology +0808.1057 Phenomenology +0808.1058 Algebraic Topology +0808.1059 Experiment +0808.1062 Networking and Internet Architecture +0808.1066 Algebraic Topology +0808.1071 +0808.1076 Cell Behavior +0808.1084 Optics +0808.1085 Dynamical Systems +0808.1086 Mesoscale and Nanoscale Physics +0808.1089 Experiment +0808.1095 Group Theory +cond-mat/0412635 Materials Science +cond-mat/0606188 Superconductivity +math-ph/0612039 +math-ph/0703049 +math/0007193 Number Theory +math/0208025 Metric Geometry +math/0309025 Complex Variables +math/0407207 Complex Variables +math/0407408 Algebraic Geometry +math/0411151 Analysis of PDEs +math/0503750 Complex Variables +math/0604324 Classical Analysis and ODEs +math/0606745 Complex Variables +0707.2432 Computational Engineering, Finance, and Science +0709.2966 Phenomenology +0710.0734 Algebraic Topology +0711.3402 Analysis of PDEs +0711.4867 Quantum Algebra +0712.0397 Adaptation and Self-Organizing Systems +0712.2122 Representation Theory +0712.3610 Materials Science +0802.0833 Atomic Physics +0802.1408 Representation Theory +0802.2750 +0803.1056 +0804.0646 Symplectic Geometry +0804.1240 Dynamical Systems +0804.2463 Soft Condensed Matter +0805.0362 Mesoscale and Nanoscale Physics +0805.1435 Materials Science +0806.0938 Strongly Correlated Electrons +0806.3937 Geophysics +0807.0926 Analysis of PDEs +0807.3313 Probability +0807.3635 Exactly Solvable and Integrable Systems +0807.3948 Strongly Correlated Electrons +0807.4604 Superconductivity +0808.1436 Superconductivity +0809.0965 History and Overview +0809.1512 Analysis of PDEs +0809.2694 +0809.3257 Differential Geometry +0809.3901 Materials Science +0809.4219 Strongly Correlated Electrons +0810.2462 Analysis of PDEs +0810.3565 Mesoscale and Nanoscale Physics +0810.4114 Experiment +0810.4704 +0810.4766 +0810.4812 Data Structures and Algorithms +0810.4900 Theory +0810.4926 Atomic Physics +0810.4934 Data Structures and Algorithms +0810.4935 Algebraic Topology +0810.4943 +0810.4960 Category Theory +0810.4965 Numerical Analysis +0810.4974 +0810.4976 +0810.4978 Materials Science +0810.4990 Fluid Dynamics +0810.4993 Information Theory +0810.4998 Logic in Computer Science +0810.5004 Statistics Theory +0810.5010 Operator Algebras +0810.5016 Mesoscale and Nanoscale Physics +0810.5027 Differential Geometry +0810.5029 Classical Analysis and ODEs +0810.5030 Representation Theory +0810.5031 Classical Analysis and ODEs +0810.5035 Superconductivity +0810.5047 Analysis of PDEs +0810.5052 Analysis of PDEs +0810.5053 Classical Physics +0810.5058 Optics +0810.5061 Atomic Physics +0810.5064 Information Theory +0810.5065 Superconductivity +0810.5075 Functional Analysis +0810.5078 History and Overview +0810.5079 Analysis of PDEs +0810.5082 Phenomenology +0810.5088 +0810.5090 Information Theory +0810.5098 Information Theory +0810.5112 Experiment +0810.5113 Combinatorics +0810.5116 Dynamical Systems +0810.5117 Machine Learning +cs/0612050 Symbolic Computation +math/0507318 Differential Geometry +math/0605560 Number Theory +0707.4198 Other Computer Science +0710.4381 Analysis of PDEs +0711.0242 +0801.4430 Mesoscale and Nanoscale Physics +0803.4117 General Topology +0804.3489 Statistical Mechanics +0805.0334 Materials Science +0805.3007 Phenomenology +astro-ph/0502034 +math/0402364 Optimization and Control +math/0409391 Dynamical Systems +0704.3787 +0705.0088 Geometric Topology +0705.0670 Dynamical Systems +0705.2339 Theory +0706.1424 Strongly Correlated Electrons +0706.4069 Probability +0707.1292 Operator Algebras +0708.0670 Spectral Theory +0708.2254 Lattice +0709.1038 Strongly Correlated Electrons +0709.4166 Applications +0710.4138 +0711.0746 +0711.2555 Complex Variables +0711.2645 Mesoscale and Nanoscale Physics +0711.3841 Dynamical Systems +0712.3274 Representation Theory +0801.3229 Superconductivity +0802.2536 Phenomenology +0803.2212 Databases +0803.2440 Mesoscale and Nanoscale Physics +0804.0537 +0804.1249 Mesoscale and Nanoscale Physics +0804.1855 Strongly Correlated Electrons +0804.3872 Strongly Correlated Electrons +0805.3200 Information Theory +0806.1431 Phenomenology +0806.1665 Complex Variables +0806.1674 +0806.1990 Theory +0806.2161 +0806.2164 Geometric Topology +0806.2166 Phenomenology +0806.2171 +0806.2172 Geometric Topology +0806.2182 Analysis of PDEs +0806.2187 Analysis of PDEs +0806.2192 +0806.2196 History and Philosophy of Physics +0806.2206 Phenomenology +0806.2214 Phenomenology +0806.2235 +0806.2240 +0806.2256 Rings and Algebras +0806.2258 Analysis of PDEs +0806.2260 Soft Condensed Matter +0806.2261 +0806.2286 Space Physics +0806.2289 Statistical Mechanics +0806.2290 Superconductivity +0806.2292 +0806.2294 Statistical Mechanics +0806.2303 Superconductivity +0806.2304 Geometric Topology +0806.2306 +0806.2313 Probability +0806.2315 Functional Analysis +0806.2317 Combinatorics +cond-mat/0006416 Strongly Correlated Electrons +cond-mat/0307636 Strongly Correlated Electrons +cond-mat/0311128 Strongly Correlated Electrons +cond-mat/0407028 Superconductivity +cond-mat/0503150 Statistical Mechanics +cond-mat/0606010 Strongly Correlated Electrons +cond-mat/0611583 Strongly Correlated Electrons +cond-mat/0702153 Mesoscale and Nanoscale Physics +cond-mat/0703342 Mesoscale and Nanoscale Physics +cond-mat/9310044 +cond-mat/9401025 +cond-mat/9511005 +cond-mat/9608035 +cond-mat/9911037 Strongly Correlated Electrons +hep-th/0612297 Theory +math-ph/0611022 +math/0211381 Complex Variables +math/0411100 Complex Variables +math/0604379 Symplectic Geometry +math/0611487 Commutative Algebra +supr-con/9501001 Superconductivity +0706.2187 Strongly Correlated Electrons +0708.1682 Materials Science +0712.2998 Number Theory +0712.3605 +math/0608779 Group Theory +math/0611287 Functional Analysis +0707.2816 Optimization and Control +0709.2507 Spectral Theory +0710.5039 +0711.1644 Exactly Solvable and Integrable Systems +0801.0925 General Physics +0802.1057 Biomolecules +0803.2070 Numerical Analysis +0803.3898 Pattern Formation and Solitons +0805.1828 Disordered Systems and Neural Networks +0806.0770 Materials Science +0806.2004 Strongly Correlated Electrons +0806.3978 Neurons and Cognition +math/0506124 Optimization and Control +math/0509225 Optimization and Control +math/0512199 Algebraic Geometry +math/0601648 Probability +math/0603564 Algebraic Geometry +math/0606322 Algebraic Geometry +math/0607012 Algebraic Geometry +math/0607026 Optimization and Control +math/0609737 Algebraic Geometry +math/0610306 Logic +math/0701166 Representation Theory +nlin/0601039 Exactly Solvable and Integrable Systems +nlin/0606062 Exactly Solvable and Integrable Systems +nlin/0611055 Exactly Solvable and Integrable Systems +physics/0505141 Fluid Dynamics +physics/0505164 Fluid Dynamics +physics/0512215 Fluid Dynamics +physics/0611132 Fluid Dynamics +0705.3724 Populations and Evolution +0705.4099 Superconductivity +0705.4277 Functional Analysis +0706.1425 Strongly Correlated Electrons +0709.1891 Fluid Dynamics +0710.2859 Mesoscale and Nanoscale Physics +0710.3804 Computational Complexity +0711.2119 Statistics Theory +0711.3205 Information Theory +0712.0597 Mesoscale and Nanoscale Physics +0712.1593 +0712.1771 Phenomenology +0712.1902 Optics +0712.2604 Superconductivity +0801.3031 Mesoscale and Nanoscale Physics +0801.4513 Strongly Correlated Electrons +0801.4860 Physics and Society +0802.0818 +0802.2761 Mesoscale and Nanoscale Physics +0803.0777 Materials Science +0803.1183 +0803.3666 Superconductivity +0803.3721 +0804.4514 Materials Science +0805.1269 Complex Variables +0805.2166 Operator Algebras +0805.2215 Superconductivity +0805.3009 +0805.3154 +0805.3352 +0805.3354 Number Theory +0805.3360 Phenomenology +0805.3362 +0805.3365 Physics and Society +0805.3366 Computation and Language +0805.3367 Phenomenology +0805.3368 Neurons and Cognition +0805.3371 +0805.3380 Differential Geometry +0805.3381 Differential Geometry +0805.3383 +0805.3390 Robotics +0805.3406 Information Theory +0805.3414 +0805.3420 Number Theory +0805.3422 Algebraic Geometry +0805.3425 Algebraic Geometry +0805.3426 General Physics +0805.3430 Phenomenology +0805.3432 Quantum Algebra +0805.3434 General Physics +0805.3436 Dynamical Systems +0805.3437 Quantum Algebra +0805.3440 Phenomenology +0805.3441 Phenomenology +0805.3448 +0805.3456 Optimization and Control +0805.3460 Rings and Algebras +0805.3461 Phenomenology +0805.3464 Data Analysis, Statistics and Probability +0805.3471 Soft Condensed Matter +0805.3478 Instrumentation and Detectors +0805.3479 Combinatorics +0805.3484 Information Theory +0805.3493 Combinatorics +0805.3494 Algebraic Geometry +0805.3497 Differential Geometry +0805.3513 Operator Algebras +0805.3522 Number Theory +0805.3523 Neurons and Cognition +cond-mat/0508769 Superconductivity +cond-mat/0702419 Statistical Mechanics +cs/0501004 Computers and Society +math/0401017 Operator Algebras +math/0505591 Functional Analysis +math/0510514 Functional Analysis +math/0511621 Geometric Topology +math/0601509 Functional Analysis +math/0607299 Functional Analysis +math/0608001 Geometric Topology +math/0608058 Complex Variables +math/0612037 Rings and Algebras +quant-ph/9903100 +0705.0717 Algebraic Geometry +0710.5811 Materials Science +0711.1875 Statistical Mechanics +0711.3081 Metric Geometry +0801.2988 Combinatorics +math/0510541 Group Theory +0705.4200 Numerical Analysis +0710.3845 +0711.0549 General Physics +0803.4468 Strongly Correlated Electrons +0804.3836 +0805.0041 Superconductivity +0805.0155 +0805.1552 Superconductivity +0805.3578 Neurons and Cognition +0806.0965 Analysis of PDEs +0807.0853 Superconductivity +0807.1645 Algebraic Geometry +0807.1777 +0807.3552 Mesoscale and Nanoscale Physics +0807.3786 Superconductivity +0807.4693 Strongly Correlated Electrons +0807.4985 +0808.0488 Mesoscale and Nanoscale Physics +0808.0838 Superconductivity +0808.1103 Statistical Mechanics +0808.1994 +0809.0620 Materials Science +0809.3514 +0809.4322 Functional Analysis +0809.4670 Experiment +0809.4814 Classical Analysis and ODEs +0809.5176 Experiment +0810.0761 Materials Science +0810.0860 Instrumentation and Detectors +0810.0922 +0810.1312 Phenomenology +0810.1526 Metric Geometry +0810.1529 +0810.1533 Dynamical Systems +0810.1534 +0810.1551 Fluid Dynamics +0810.1562 Computational Physics +0810.1566 Differential Geometry +0810.1567 Lattice +0810.1568 Statistical Mechanics +0810.1572 Statistics Theory +0810.1574 Symbolic Computation +0810.1577 Analysis of PDEs +0810.1579 Superconductivity +0810.1587 Fluid Dynamics +0810.1592 History and Philosophy of Physics +0810.1606 Populations and Evolution +0810.1607 Superconductivity +0810.1608 Statistical Mechanics +0810.1609 +0810.1611 Mesoscale and Nanoscale Physics +0810.1614 Algebraic Geometry +0810.1619 Combinatorics +0810.1621 Quantum Algebra +0810.1629 General Physics +0810.1632 Group Theory +0810.1638 Metric Geometry +0810.1644 Statistics Theory +0810.1646 Differential Geometry +0810.1650 Discrete Mathematics +0810.1652 Differential Geometry +0810.1655 Networking and Internet Architecture +0810.1657 Experiment +0810.1659 Plasma Physics +0810.1666 Experiment +0810.1678 Algebraic Topology +0810.1679 Fluid Dynamics +0810.1688 Algebraic Geometry +0810.1691 Number Theory +0810.1697 Geometric Topology +0810.1702 Fluid Dynamics +0810.1706 +0810.1707 Probability +0810.1717 +0810.1718 Statistics Theory +0810.1721 Strongly Correlated Electrons +0810.1725 Fluid Dynamics +0810.1728 General Physics +0810.1731 Group Theory +0810.1732 Information Retrieval +math-ph/0512095 +math/0212274 Algebraic Topology +math/0406341 Differential Geometry +math/0601515 Number Theory +math/0608229 Operator Algebras +0706.2104 Analysis of PDEs +0708.3727 Group Theory +0709.4017 Optimization and Control +0710.5182 Phenomenology +0710.5214 Fluid Dynamics +0711.0503 Probability +0711.3894 Algebraic Geometry +0711.4929 Algebraic Geometry +0711.4961 Category Theory +0712.0067 General Physics +0712.0521 Dynamical Systems +0712.0987 Probability +0712.2166 +0801.1477 General Physics +0801.4230 Logic in Computer Science +0803.0575 Combinatorics +0803.1244 Combinatorics +0803.1362 General Physics +0804.1837 General Finance +0805.0668 Superconductivity +0805.0692 +0805.1423 General Physics +0805.3294 Superconductivity +0805.3986 Algebraic Geometry +0805.4295 Other Condensed Matter +0806.1704 Algebraic Geometry +0806.1978 Data Structures and Algorithms +0806.2865 Strongly Correlated Electrons +0806.3589 Geometric Topology +0807.0753 Statistical Mechanics +0807.2923 Superconductivity +0807.3779 Statistical Mechanics +0807.3863 Number Theory +0807.4586 Probability +0808.1005 Strongly Correlated Electrons +0808.2269 Number Theory +0808.2836 Superconductivity +0808.4070 General Physics +0809.1307 Commutative Algebra +0809.2539 +0809.2980 +0809.2988 Algebraic Geometry +0809.4194 Networking and Internet Architecture +0810.0117 Algebraic Geometry +0810.1145 +0810.2056 Differential Geometry +0810.4546 Mesoscale and Nanoscale Physics +0811.0617 Phenomenology +0811.0783 +0811.1414 Statistical Mechanics +0811.3423 Statistical Mechanics +0812.0136 Optimization and Control +0812.0156 Combinatorics +0812.0994 Phenomenology +0812.1021 Experiment +0812.1026 General Physics +0812.1029 Information Retrieval +0812.1043 Combinatorics +0812.1053 Phenomenology +0812.1054 +0812.1062 Quantitative Methods +0812.1066 +0812.1069 Computational Physics +0812.1082 Strongly Correlated Electrons +0812.1084 Statistics Theory +0812.1091 Information Theory +0812.1092 Theory +0812.1094 Neural and Evolutionary Computing +0812.1106 +0812.1107 Methodology +0812.1111 +0812.1119 Graphics +0812.1124 Statistics Theory +0812.1125 Materials Science +0812.1127 Experiment +0812.1135 Classical Analysis and ODEs +0812.1136 Strongly Correlated Electrons +0812.1143 Soft Condensed Matter +0812.1144 Phenomenology +0812.1145 Other Condensed Matter +0812.1153 Numerical Analysis +0812.1154 +0812.1165 Combinatorics +0812.1169 +0812.1173 Representation Theory +0812.1184 Analysis of PDEs +0812.1194 Discrete Mathematics +0812.1198 Geophysics +0812.1206 +0812.1207 Strongly Correlated Electrons +0812.1211 Chemical Physics +0812.1212 Phenomenology +0812.1218 Other Computer Science +cond-mat/0306744 Strongly Correlated Electrons +cond-mat/0408013 Other Condensed Matter +cond-mat/0509642 Soft Condensed Matter +cond-mat/0611666 Soft Condensed Matter +cond-mat/0612453 Soft Condensed Matter +cs/0703056 Databases +cs/0703058 Databases +math/0309417 Geometric Topology +math/0403296 Number Theory +math/0409225 Probability +math/0610506 Probability +math/0611180 Combinatorics +math/0702059 Analysis of PDEs +physics/0601166 Physics and Society +quant-ph/0404125 +0705.1888 Other Condensed Matter +0705.4463 Materials Science +0706.0338 Superconductivity +0706.1709 Chaotic Dynamics +0707.0545 +0707.1582 Statistical Mechanics +0707.2703 Strongly Correlated Electrons +0708.0382 Strongly Correlated Electrons +0708.0704 Combinatorics +0708.3504 Mesoscale and Nanoscale Physics +0709.1381 Mesoscale and Nanoscale Physics +0709.2061 +0709.2622 +0709.4153 Other Condensed Matter +0710.3459 Number Theory +0710.5246 Superconductivity +0711.0623 Strongly Correlated Electrons +0711.1758 Statistical Mechanics +0711.3411 Analysis of PDEs +0712.0461 Statistical Mechanics +0712.0960 Mesoscale and Nanoscale Physics +0712.1636 Phenomenology +0712.2322 Pattern Formation and Solitons +0712.3777 Metric Geometry +0712.4222 Logic in Computer Science +0801.0728 Combinatorics +0801.1312 Theory +0802.0073 Statistical Mechanics +0802.0136 +0802.1987 Analysis of PDEs +0803.1336 Representation Theory +0803.1794 Mesoscale and Nanoscale Physics +0803.2400 Strongly Correlated Electrons +0803.2545 Theory +0803.2976 +0803.3604 General Physics +0803.3861 Statistical Mechanics +0803.4010 Theory +0803.4013 +0803.4014 Mesoscale and Nanoscale Physics +0803.4019 Classical Analysis and ODEs +0803.4022 Numerical Analysis +0803.4024 +0803.4029 +0803.4030 Discrete Mathematics +0803.4031 Materials Science +0803.4034 Analysis of PDEs +0803.4040 Classical Physics +0803.4041 Superconductivity +0803.4045 +0803.4048 Other Condensed Matter +0803.4054 Quantum Algebra +0803.4056 Materials Science +0803.4060 Statistical Mechanics +0803.4064 Classical Analysis and ODEs +0803.4083 Computational Physics +0803.4086 Soft Condensed Matter +0803.4093 +0803.4095 Algebraic Geometry +0803.4098 Algebraic Geometry +0803.4105 Statistical Mechanics +0803.4108 Phenomenology +0803.4111 Statistical Mechanics +0803.4128 +0803.4133 +0803.4136 K-Theory and Homology +0803.4140 Soft Condensed Matter +0803.4142 Physics Education +0803.4145 Materials Science +0803.4169 Strongly Correlated Electrons +0803.4178 Complex Variables +0803.4182 Combinatorics +0803.4184 General Mathematics +cond-mat/0503129 Disordered Systems and Neural Networks +cond-mat/0503506 Soft Condensed Matter +cond-mat/0610198 Other Condensed Matter +cond-mat/0611329 Soft Condensed Matter +cs/0605028 Information Theory +hep-th/0207113 Theory +math/0501532 Probability +math/0611360 Algebraic Geometry +math/0701360 Probability +math/0701459 Algebraic Geometry +math/0701522 Algebraic Geometry +quant-ph/0608200 +quant-ph/0703200 +0707.4349 Dynamical Systems +0708.0598 Human-Computer Interaction +acc-phys/9411001 Accelerator Physics +acc-phys/9411002 Accelerator Physics +acc-phys/9411003 Accelerator Physics +acc-phys/9506001 Accelerator Physics +acc-phys/9508001 Accelerator Physics +acc-phys/9510005 Accelerator Physics +acc-phys/9510006 Accelerator Physics +acc-phys/9512001 Accelerator Physics +acc-phys/9601001 Accelerator Physics +acc-phys/9602003 Accelerator Physics +acc-phys/9603001 Accelerator Physics +acc-phys/9603002 Accelerator Physics +acc-phys/9603003 Accelerator Physics +acc-phys/9605002 Accelerator Physics +acc-phys/9607001 Accelerator Physics +acc-phys/9609001 Accelerator Physics +acc-phys/9609003 Accelerator Physics +acc-phys/9609005 Accelerator Physics +adap-org/9303001 Adaptation and Self-Organizing Systems +adap-org/9303003 Adaptation and Self-Organizing Systems +adap-org/9305001 Adaptation and Self-Organizing Systems +adap-org/9305002 Adaptation and Self-Organizing Systems +adap-org/9306001 Adaptation and Self-Organizing Systems +adap-org/9306003 Adaptation and Self-Organizing Systems +adap-org/9306005 Adaptation and Self-Organizing Systems +adap-org/9309001 Adaptation and Self-Organizing Systems +adap-org/9311002 Adaptation and Self-Organizing Systems +adap-org/9311003 Adaptation and Self-Organizing Systems +adap-org/9402001 Adaptation and Self-Organizing Systems +adap-org/9402002 Adaptation and Self-Organizing Systems +adap-org/9404001 Adaptation and Self-Organizing Systems +adap-org/9405002 Adaptation and Self-Organizing Systems +adap-org/9405003 Adaptation and Self-Organizing Systems +adap-org/9406001 Adaptation and Self-Organizing Systems +adap-org/9407003 Adaptation and Self-Organizing Systems +adap-org/9409001 Adaptation and Self-Organizing Systems +adap-org/9409002 Adaptation and Self-Organizing Systems +adap-org/9409003 Adaptation and Self-Organizing Systems +adap-org/9409004 Adaptation and Self-Organizing Systems +adap-org/9410001 Adaptation and Self-Organizing Systems +adap-org/9410004 Adaptation and Self-Organizing Systems +adap-org/9410005 Adaptation and Self-Organizing Systems +adap-org/9410006 Adaptation and Self-Organizing Systems +adap-org/9411001 Adaptation and Self-Organizing Systems +adap-org/9411003 Adaptation and Self-Organizing Systems +adap-org/9412001 Adaptation and Self-Organizing Systems +adap-org/9501003 Adaptation and Self-Organizing Systems +adap-org/9502005 Adaptation and Self-Organizing Systems +adap-org/9502006 Adaptation and Self-Organizing Systems +adap-org/9503002 Adaptation and Self-Organizing Systems +adap-org/9503004 Adaptation and Self-Organizing Systems +adap-org/9504003 Adaptation and Self-Organizing Systems +adap-org/9504007 Adaptation and Self-Organizing Systems +adap-org/9505001 Adaptation and Self-Organizing Systems +adap-org/9505002 Adaptation and Self-Organizing Systems +adap-org/9507002 Adaptation and Self-Organizing Systems +adap-org/9507007 Adaptation and Self-Organizing Systems +adap-org/9507008 Adaptation and Self-Organizing Systems +adap-org/9508001 Adaptation and Self-Organizing Systems +adap-org/9508002 Adaptation and Self-Organizing Systems +adap-org/9508003 Adaptation and Self-Organizing Systems +adap-org/9508004 Adaptation and Self-Organizing Systems +adap-org/9508005 Adaptation and Self-Organizing Systems +adap-org/9509001 Adaptation and Self-Organizing Systems +adap-org/9509003 Adaptation and Self-Organizing Systems +adap-org/9510001 Adaptation and Self-Organizing Systems +adap-org/9511002 Adaptation and Self-Organizing Systems +adap-org/9511004 Adaptation and Self-Organizing Systems +adap-org/9601001 Adaptation and Self-Organizing Systems +adap-org/9603001 Adaptation and Self-Organizing Systems +adap-org/9605001 Adaptation and Self-Organizing Systems +adap-org/9606002 Adaptation and Self-Organizing Systems +adap-org/9607002 Adaptation and Self-Organizing Systems +adap-org/9610001 Adaptation and Self-Organizing Systems +adap-org/9610003 Adaptation and Self-Organizing Systems +adap-org/9611002 Adaptation and Self-Organizing Systems +adap-org/9611003 Adaptation and Self-Organizing Systems +adap-org/9611005 Adaptation and Self-Organizing Systems +adap-org/9611006 Adaptation and Self-Organizing Systems +adap-org/9611008 Adaptation and Self-Organizing Systems +adap-org/9702003 Adaptation and Self-Organizing Systems +adap-org/9702004 Adaptation and Self-Organizing Systems +adap-org/9704002 Adaptation and Self-Organizing Systems +adap-org/9704005 Adaptation and Self-Organizing Systems +adap-org/9706005 Adaptation and Self-Organizing Systems +adap-org/9707005 Adaptation and Self-Organizing Systems +adap-org/9707006 Adaptation and Self-Organizing Systems +adap-org/9707007 Adaptation and Self-Organizing Systems +adap-org/9707008 Adaptation and Self-Organizing Systems +adap-org/9708001 Adaptation and Self-Organizing Systems +adap-org/9708002 Adaptation and Self-Organizing Systems +adap-org/9708003 Adaptation and Self-Organizing Systems +adap-org/9708004 Adaptation and Self-Organizing Systems +adap-org/9708005 Adaptation and Self-Organizing Systems +adap-org/9708007 Adaptation and Self-Organizing Systems +adap-org/9709001 Adaptation and Self-Organizing Systems +adap-org/9709002 Adaptation and Self-Organizing Systems +adap-org/9709004 Adaptation and Self-Organizing Systems +adap-org/9709005 Adaptation and Self-Organizing Systems +adap-org/9709006 Adaptation and Self-Organizing Systems +alg-geom/9202001 Algebraic Geometry +alg-geom/9202002 Algebraic Geometry +alg-geom/9202003 Algebraic Geometry +alg-geom/9202004 Algebraic Geometry +alg-geom/9202005 Algebraic Geometry +alg-geom/9202006 Algebraic Geometry +alg-geom/9202007 Algebraic Geometry +alg-geom/9202008 Algebraic Geometry +alg-geom/9202010 Algebraic Geometry +alg-geom/9202011 Algebraic Geometry +alg-geom/9202012 Algebraic Geometry +alg-geom/9202013 Algebraic Geometry +alg-geom/9202014 Algebraic Geometry +alg-geom/9202015 Algebraic Geometry +alg-geom/9202016 Algebraic Geometry +alg-geom/9202017 Algebraic Geometry +alg-geom/9202018 Algebraic Geometry +alg-geom/9202019 Algebraic Geometry +alg-geom/9202020 Algebraic Geometry +alg-geom/9202021 Algebraic Geometry +alg-geom/9202022 Algebraic Geometry +alg-geom/9202023 Algebraic Geometry +alg-geom/9202024 Algebraic Geometry +alg-geom/9202025 Algebraic Geometry +alg-geom/9202026 Algebraic Geometry +alg-geom/9202027 Algebraic Geometry +alg-geom/9202028 Algebraic Geometry +alg-geom/9203001 Algebraic Geometry +alg-geom/9203002 Algebraic Geometry +alg-geom/9203003 Algebraic Geometry +alg-geom/9203004 Algebraic Geometry +alg-geom/9203005 Algebraic Geometry +alg-geom/9205001 Algebraic Geometry +alg-geom/9205002 Algebraic Geometry +alg-geom/9205003 Algebraic Geometry +alg-geom/9205004 Algebraic Geometry +alg-geom/9205006 Algebraic Geometry +alg-geom/9205007 Algebraic Geometry +alg-geom/9206003 Algebraic Geometry +alg-geom/9206004 Algebraic Geometry +alg-geom/9206006 Algebraic Geometry +alg-geom/9206007 Algebraic Geometry +alg-geom/9206008 Algebraic Geometry +alg-geom/9206009 Algebraic Geometry +alg-geom/9207001 Algebraic Geometry +alg-geom/9208003 Algebraic Geometry +alg-geom/9208004 Algebraic Geometry +alg-geom/9209001 Algebraic Geometry +alg-geom/9210001 Algebraic Geometry +alg-geom/9210002 Algebraic Geometry +alg-geom/9210003 Algebraic Geometry +alg-geom/9210004 Algebraic Geometry +alg-geom/9210005 Algebraic Geometry +alg-geom/9210006 Algebraic Geometry +alg-geom/9210007 Algebraic Geometry +alg-geom/9210009 Algebraic Geometry +alg-geom/9211001 Algebraic Geometry +alg-geom/9212001 Algebraic Geometry +alg-geom/9212003 Algebraic Geometry +alg-geom/9212004 Algebraic Geometry +alg-geom/9301001 Algebraic Geometry +alg-geom/9301002 Algebraic Geometry +alg-geom/9301003 Algebraic Geometry +alg-geom/9301004 Algebraic Geometry +alg-geom/9301005 Algebraic Geometry +alg-geom/9301006 Algebraic Geometry +alg-geom/9301007 Algebraic Geometry +alg-geom/9302001 Algebraic Geometry +alg-geom/9302002 Algebraic Geometry +alg-geom/9302003 Algebraic Geometry +alg-geom/9302004 Algebraic Geometry +alg-geom/9302005 Algebraic Geometry +alg-geom/9303001 Algebraic Geometry +alg-geom/9303002 Algebraic Geometry +alg-geom/9303004 Algebraic Geometry +alg-geom/9303005 Algebraic Geometry +alg-geom/9303006 Algebraic Geometry +alg-geom/9303007 Algebraic Geometry +alg-geom/9304001 Algebraic Geometry +alg-geom/9304002 Algebraic Geometry +alg-geom/9304004 Algebraic Geometry +alg-geom/9304005 Algebraic Geometry +alg-geom/9304006 Algebraic Geometry +alg-geom/9304007 Algebraic Geometry +alg-geom/9305001 Algebraic Geometry +alg-geom/9305002 Algebraic Geometry +alg-geom/9305003 Algebraic Geometry +alg-geom/9305004 Algebraic Geometry +alg-geom/9305005 Algebraic Geometry +alg-geom/9305010 Algebraic Geometry +alg-geom/9305011 Algebraic Geometry +alg-geom/9306001 Algebraic Geometry +alg-geom/9306002 Algebraic Geometry +alg-geom/9306003 Algebraic Geometry +alg-geom/9306004 Algebraic Geometry +alg-geom/9306005 Algebraic Geometry +alg-geom/9306006 Algebraic Geometry +alg-geom/9306007 Algebraic Geometry +alg-geom/9306008 Algebraic Geometry +alg-geom/9306009 Algebraic Geometry +alg-geom/9306010 Algebraic Geometry +alg-geom/9306011 Algebraic Geometry +alg-geom/9307001 Algebraic Geometry +alg-geom/9307002 Algebraic Geometry +alg-geom/9307003 Algebraic Geometry +alg-geom/9307004 Algebraic Geometry +alg-geom/9307005 Algebraic Geometry +alg-geom/9307006 Algebraic Geometry +alg-geom/9307007 Algebraic Geometry +alg-geom/9307008 Algebraic Geometry +alg-geom/9307009 Algebraic Geometry +alg-geom/9308001 Algebraic Geometry +alg-geom/9308002 Algebraic Geometry +alg-geom/9308003 Algebraic Geometry +alg-geom/9308004 Algebraic Geometry +alg-geom/9308005 Algebraic Geometry +alg-geom/9308006 Algebraic Geometry +alg-geom/9309001 Algebraic Geometry +alg-geom/9309004 Algebraic Geometry +alg-geom/9309005 Algebraic Geometry +alg-geom/9309006 Algebraic Geometry +alg-geom/9309007 Algebraic Geometry +alg-geom/9310001 Algebraic Geometry +alg-geom/9310002 Algebraic Geometry +alg-geom/9310003 Algebraic Geometry +alg-geom/9310004 Algebraic Geometry +alg-geom/9310005 Algebraic Geometry +alg-geom/9310006 Algebraic Geometry +alg-geom/9310007 Algebraic Geometry +alg-geom/9310008 Algebraic Geometry +alg-geom/9311001 Algebraic Geometry +alg-geom/9311003 Algebraic Geometry +alg-geom/9311004 Algebraic Geometry +alg-geom/9311005 Algebraic Geometry +alg-geom/9311006 Algebraic Geometry +alg-geom/9311007 Algebraic Geometry +alg-geom/9311008 Algebraic Geometry +alg-geom/9311010 Algebraic Geometry +alg-geom/9311011 Algebraic Geometry +alg-geom/9311012 Algebraic Geometry +alg-geom/9311013 Algebraic Geometry +alg-geom/9312001 Algebraic Geometry +alg-geom/9312002 Algebraic Geometry +alg-geom/9312003 Algebraic Geometry +alg-geom/9312004 Algebraic Geometry +alg-geom/9312005 Algebraic Geometry +alg-geom/9312006 Algebraic Geometry +alg-geom/9312009 Algebraic Geometry +alg-geom/9312010 Algebraic Geometry +alg-geom/9312011 Algebraic Geometry +alg-geom/9312012 Algebraic Geometry +alg-geom/9401001 Algebraic Geometry +alg-geom/9401002 Algebraic Geometry +alg-geom/9401003 Algebraic Geometry +alg-geom/9401004 Algebraic Geometry +alg-geom/9401005 Algebraic Geometry +alg-geom/9401006 Algebraic Geometry +alg-geom/9401008 Algebraic Geometry +alg-geom/9401009 Algebraic Geometry +alg-geom/9401010 Algebraic Geometry +alg-geom/9402001 Algebraic Geometry +alg-geom/9402002 Algebraic Geometry +alg-geom/9402003 Algebraic Geometry +alg-geom/9402004 Algebraic Geometry +alg-geom/9402006 Algebraic Geometry +alg-geom/9402008 Algebraic Geometry +alg-geom/9402009 Algebraic Geometry +alg-geom/9402010 Algebraic Geometry +alg-geom/9402012 Algebraic Geometry +alg-geom/9402013 Algebraic Geometry +alg-geom/9402014 Algebraic Geometry +alg-geom/9403001 Algebraic Geometry +alg-geom/9403002 Algebraic Geometry +alg-geom/9403003 Algebraic Geometry +alg-geom/9403004 Algebraic Geometry +alg-geom/9403005 Algebraic Geometry +alg-geom/9403006 Algebraic Geometry +alg-geom/9403007 Algebraic Geometry +alg-geom/9403008 Algebraic Geometry +alg-geom/9403009 Algebraic Geometry +alg-geom/9403010 Algebraic Geometry +alg-geom/9403011 Algebraic Geometry +alg-geom/9403012 Algebraic Geometry +alg-geom/9403014 Algebraic Geometry +alg-geom/9403015 Algebraic Geometry +alg-geom/9403016 Algebraic Geometry +alg-geom/9404001 Algebraic Geometry +alg-geom/9404002 Algebraic Geometry +alg-geom/9404003 Algebraic Geometry +alg-geom/9404004 Algebraic Geometry +alg-geom/9404005 Algebraic Geometry +alg-geom/9404006 Algebraic Geometry +alg-geom/9404007 Algebraic Geometry +alg-geom/9404008 Algebraic Geometry +alg-geom/9404009 Algebraic Geometry +alg-geom/9404012 Algebraic Geometry +alg-geom/9404013 Algebraic Geometry +alg-geom/9405001 Algebraic Geometry +alg-geom/9405002 Algebraic Geometry +alg-geom/9405003 Algebraic Geometry +alg-geom/9405004 Algebraic Geometry +alg-geom/9405005 Algebraic Geometry +alg-geom/9405006 Algebraic Geometry +alg-geom/9405007 Algebraic Geometry +alg-geom/9405008 Algebraic Geometry +alg-geom/9405009 Algebraic Geometry +alg-geom/9405010 Algebraic Geometry +alg-geom/9405011 Algebraic Geometry +alg-geom/9405012 Algebraic Geometry +alg-geom/9405013 Algebraic Geometry +alg-geom/9405014 Algebraic Geometry +alg-geom/9406001 Algebraic Geometry +alg-geom/9406002 Algebraic Geometry +alg-geom/9406003 Algebraic Geometry +alg-geom/9406004 Algebraic Geometry +alg-geom/9406005 Algebraic Geometry +alg-geom/9406006 Algebraic Geometry +alg-geom/9406007 Algebraic Geometry +alg-geom/9407001 Algebraic Geometry +alg-geom/9407002 Algebraic Geometry +alg-geom/9407003 Algebraic Geometry +alg-geom/9407004 Algebraic Geometry +alg-geom/9407005 Algebraic Geometry +alg-geom/9407006 Algebraic Geometry +alg-geom/9407007 Algebraic Geometry +alg-geom/9407008 Algebraic Geometry +alg-geom/9407009 Algebraic Geometry +alg-geom/9407010 Algebraic Geometry +alg-geom/9407011 Algebraic Geometry +alg-geom/9407012 Algebraic Geometry +alg-geom/9408001 Algebraic Geometry +alg-geom/9408002 Algebraic Geometry +alg-geom/9408003 Algebraic Geometry +alg-geom/9408004 Algebraic Geometry +alg-geom/9408005 Algebraic Geometry +alg-geom/9408006 Algebraic Geometry +alg-geom/9408007 Algebraic Geometry +alg-geom/9408008 Algebraic Geometry +alg-geom/9408009 Algebraic Geometry +alg-geom/9408010 Algebraic Geometry +alg-geom/9408011 Algebraic Geometry +alg-geom/9409001 Algebraic Geometry +alg-geom/9409002 Algebraic Geometry +alg-geom/9409003 Algebraic Geometry +alg-geom/9409004 Algebraic Geometry +alg-geom/9409005 Algebraic Geometry +alg-geom/9410001 Algebraic Geometry +alg-geom/9410002 Algebraic Geometry +alg-geom/9410004 Algebraic Geometry +alg-geom/9410005 Algebraic Geometry +alg-geom/9410006 Algebraic Geometry +alg-geom/9410007 Algebraic Geometry +alg-geom/9410008 Algebraic Geometry +alg-geom/9410010 Algebraic Geometry +alg-geom/9410011 Algebraic Geometry +alg-geom/9410012 Algebraic Geometry +alg-geom/9410013 Algebraic Geometry +alg-geom/9410015 Algebraic Geometry +alg-geom/9410016 Algebraic Geometry +alg-geom/9410017 Algebraic Geometry +alg-geom/9410018 Algebraic Geometry +alg-geom/9410019 Algebraic Geometry +alg-geom/9410020 Algebraic Geometry +alg-geom/9410021 Algebraic Geometry +alg-geom/9410023 Algebraic Geometry +alg-geom/9410024 Algebraic Geometry +alg-geom/9410025 Algebraic Geometry +alg-geom/9410026 Algebraic Geometry +alg-geom/9410027 Algebraic Geometry +alg-geom/9410028 Algebraic Geometry +alg-geom/9410030 Algebraic Geometry +alg-geom/9410031 Algebraic Geometry +alg-geom/9410032 Algebraic Geometry +alg-geom/9411001 Algebraic Geometry +alg-geom/9411002 Algebraic Geometry +alg-geom/9411003 Algebraic Geometry +alg-geom/9411004 Algebraic Geometry +alg-geom/9411005 Algebraic Geometry +alg-geom/9411006 Algebraic Geometry +alg-geom/9411007 Algebraic Geometry +alg-geom/9411008 Algebraic Geometry +alg-geom/9411009 Algebraic Geometry +alg-geom/9411010 Algebraic Geometry +alg-geom/9411011 Algebraic Geometry +alg-geom/9411012 Algebraic Geometry +alg-geom/9411013 Algebraic Geometry +alg-geom/9411015 Algebraic Geometry +alg-geom/9411017 Algebraic Geometry +alg-geom/9411018 Algebraic Geometry +alg-geom/9411019 Algebraic Geometry +alg-geom/9412001 Algebraic Geometry +alg-geom/9412002 Algebraic Geometry +alg-geom/9412003 Algebraic Geometry +alg-geom/9412004 Algebraic Geometry +alg-geom/9412005 Algebraic Geometry +alg-geom/9412007 Algebraic Geometry +alg-geom/9412008 Algebraic Geometry +alg-geom/9412009 Algebraic Geometry +alg-geom/9412010 Algebraic Geometry +alg-geom/9412011 Algebraic Geometry +alg-geom/9412012 Algebraic Geometry +alg-geom/9412013 Algebraic Geometry +alg-geom/9412015 Algebraic Geometry +alg-geom/9412016 Algebraic Geometry +alg-geom/9412017 Algebraic Geometry +alg-geom/9412018 Algebraic Geometry +alg-geom/9412019 Algebraic Geometry +alg-geom/9412020 Algebraic Geometry +alg-geom/9412021 Algebraic Geometry +alg-geom/9501001 Algebraic Geometry +alg-geom/9501002 Algebraic Geometry +alg-geom/9501011 Algebraic Geometry +alg-geom/9501012 Algebraic Geometry +alg-geom/9502001 Algebraic Geometry +alg-geom/9502004 Algebraic Geometry +alg-geom/9502005 Algebraic Geometry +alg-geom/9502006 Algebraic Geometry +alg-geom/9502009 Algebraic Geometry +alg-geom/9502010 Algebraic Geometry +alg-geom/9502011 Algebraic Geometry +alg-geom/9502012 Algebraic Geometry +alg-geom/9502013 Algebraic Geometry +alg-geom/9502014 Algebraic Geometry +alg-geom/9502015 Algebraic Geometry +alg-geom/9502016 Algebraic Geometry +alg-geom/9502017 Algebraic Geometry +alg-geom/9502018 Algebraic Geometry +alg-geom/9502019 Algebraic Geometry +alg-geom/9502020 Algebraic Geometry +alg-geom/9502021 Algebraic Geometry +alg-geom/9502022 Algebraic Geometry +alg-geom/9502023 Algebraic Geometry +alg-geom/9502025 Algebraic Geometry +alg-geom/9502026 Algebraic Geometry +alg-geom/9503001 Algebraic Geometry +alg-geom/9503004 Algebraic Geometry +alg-geom/9503005 Algebraic Geometry +alg-geom/9503006 Algebraic Geometry +alg-geom/9503007 Algebraic Geometry +alg-geom/9503008 Algebraic Geometry +alg-geom/9503009 Algebraic Geometry +alg-geom/9503011 Algebraic Geometry +alg-geom/9503012 Algebraic Geometry +alg-geom/9503013 Algebraic Geometry +alg-geom/9503014 Algebraic Geometry +alg-geom/9503017 Algebraic Geometry +alg-geom/9503018 Algebraic Geometry +alg-geom/9503019 Algebraic Geometry +alg-geom/9503021 Algebraic Geometry +alg-geom/9503022 Algebraic Geometry +alg-geom/9503023 Algebraic Geometry +alg-geom/9503024 Algebraic Geometry +alg-geom/9503025 Algebraic Geometry +alg-geom/9504001 Algebraic Geometry +alg-geom/9504002 Algebraic Geometry +alg-geom/9504004 Algebraic Geometry +alg-geom/9504005 Algebraic Geometry +alg-geom/9504006 Algebraic Geometry +alg-geom/9504007 Algebraic Geometry +alg-geom/9504009 Algebraic Geometry +alg-geom/9504010 Algebraic Geometry +alg-geom/9504011 Algebraic Geometry +alg-geom/9504012 Algebraic Geometry +alg-geom/9504013 Algebraic Geometry +alg-geom/9504014 Algebraic Geometry +alg-geom/9504015 Algebraic Geometry +alg-geom/9504016 Algebraic Geometry +alg-geom/9504017 Algebraic Geometry +alg-geom/9505001 Algebraic Geometry +alg-geom/9505002 Algebraic Geometry +alg-geom/9505003 Algebraic Geometry +alg-geom/9505004 Algebraic Geometry +alg-geom/9505005 Algebraic Geometry +alg-geom/9505006 Algebraic Geometry +alg-geom/9505007 Algebraic Geometry +alg-geom/9505008 Algebraic Geometry +alg-geom/9505009 Algebraic Geometry +alg-geom/9505010 Algebraic Geometry +alg-geom/9505011 Algebraic Geometry +alg-geom/9505012 Algebraic Geometry +alg-geom/9505013 Algebraic Geometry +alg-geom/9505014 Algebraic Geometry +alg-geom/9505017 Algebraic Geometry +alg-geom/9505018 Algebraic Geometry +alg-geom/9505019 Algebraic Geometry +alg-geom/9505021 Algebraic Geometry +alg-geom/9505022 Algebraic Geometry +alg-geom/9505023 Algebraic Geometry +alg-geom/9505024 Algebraic Geometry +alg-geom/9505025 Algebraic Geometry +alg-geom/9505026 Algebraic Geometry +alg-geom/9505027 Algebraic Geometry +alg-geom/9505028 Algebraic Geometry +alg-geom/9505030 Algebraic Geometry +alg-geom/9505031 Algebraic Geometry +alg-geom/9505032 Algebraic Geometry +alg-geom/9505033 Algebraic Geometry +alg-geom/9505035 Algebraic Geometry +alg-geom/9505036 Algebraic Geometry +alg-geom/9505038 Algebraic Geometry +alg-geom/9506001 Algebraic Geometry +alg-geom/9506002 Algebraic Geometry +alg-geom/9506003 Algebraic Geometry +alg-geom/9506005 Algebraic Geometry +alg-geom/9506006 Algebraic Geometry +alg-geom/9506007 Algebraic Geometry +alg-geom/9506008 Algebraic Geometry +alg-geom/9506009 Algebraic Geometry +alg-geom/9506010 Algebraic Geometry +alg-geom/9506011 Algebraic Geometry +alg-geom/9506012 Algebraic Geometry +alg-geom/9506013 Algebraic Geometry +alg-geom/9506014 Algebraic Geometry +alg-geom/9506015 Algebraic Geometry +alg-geom/9506016 Algebraic Geometry +alg-geom/9506017 Algebraic Geometry +alg-geom/9506018 Algebraic Geometry +alg-geom/9506019 Algebraic Geometry +alg-geom/9506023 Algebraic Geometry +alg-geom/9506024 Algebraic Geometry +alg-geom/9506025 Algebraic Geometry +alg-geom/9506026 Algebraic Geometry +alg-geom/9507001 Algebraic Geometry +alg-geom/9507002 Algebraic Geometry +alg-geom/9507003 Algebraic Geometry +alg-geom/9507004 Algebraic Geometry +alg-geom/9507005 Algebraic Geometry +alg-geom/9507006 Algebraic Geometry +alg-geom/9507007 Algebraic Geometry +alg-geom/9507009 Algebraic Geometry +alg-geom/9507011 Algebraic Geometry +alg-geom/9507012 Algebraic Geometry +alg-geom/9507013 Algebraic Geometry +alg-geom/9507015 Algebraic Geometry +alg-geom/9507016 Algebraic Geometry +alg-geom/9507017 Algebraic Geometry +alg-geom/9508001 Algebraic Geometry +alg-geom/9508002 Algebraic Geometry +alg-geom/9508003 Algebraic Geometry +alg-geom/9508004 Algebraic Geometry +alg-geom/9508005 Algebraic Geometry +alg-geom/9508006 Algebraic Geometry +alg-geom/9508008 Algebraic Geometry +alg-geom/9508009 Algebraic Geometry +alg-geom/9508010 Algebraic Geometry +alg-geom/9508011 Algebraic Geometry +alg-geom/9508012 Algebraic Geometry +alg-geom/9509004 Algebraic Geometry +alg-geom/9509005 Algebraic Geometry +alg-geom/9509007 Algebraic Geometry +alg-geom/9509008 Algebraic Geometry +alg-geom/9510001 Algebraic Geometry +alg-geom/9510002 Algebraic Geometry +alg-geom/9510004 Algebraic Geometry +alg-geom/9510005 Algebraic Geometry +alg-geom/9510006 Algebraic Geometry +alg-geom/9510007 Algebraic Geometry +alg-geom/9510008 Algebraic Geometry +alg-geom/9510009 Algebraic Geometry +alg-geom/9510010 Algebraic Geometry +alg-geom/9510012 Algebraic Geometry +alg-geom/9510014 Algebraic Geometry +alg-geom/9510015 Algebraic Geometry +alg-geom/9510016 Algebraic Geometry +alg-geom/9510017 Algebraic Geometry +alg-geom/9510018 Algebraic Geometry +alg-geom/9511003 Algebraic Geometry +alg-geom/9511004 Algebraic Geometry +alg-geom/9511005 Algebraic Geometry +alg-geom/9511006 Algebraic Geometry +alg-geom/9511007 Algebraic Geometry +alg-geom/9511008 Algebraic Geometry +alg-geom/9511009 Algebraic Geometry +alg-geom/9511010 Algebraic Geometry +alg-geom/9511011 Algebraic Geometry +alg-geom/9511012 Algebraic Geometry +alg-geom/9511013 Algebraic Geometry +alg-geom/9511014 Algebraic Geometry +alg-geom/9511016 Algebraic Geometry +alg-geom/9511017 Algebraic Geometry +alg-geom/9511018 Algebraic Geometry +alg-geom/9511019 Algebraic Geometry +alg-geom/9512001 Algebraic Geometry +alg-geom/9512004 Algebraic Geometry +alg-geom/9512005 Algebraic Geometry +alg-geom/9512007 Algebraic Geometry +alg-geom/9512008 Algebraic Geometry +alg-geom/9512010 Algebraic Geometry +alg-geom/9512011 Algebraic Geometry +alg-geom/9512012 Algebraic Geometry +alg-geom/9512013 Algebraic Geometry +alg-geom/9512014 Algebraic Geometry +alg-geom/9512015 Algebraic Geometry +alg-geom/9512016 Algebraic Geometry +alg-geom/9512017 Algebraic Geometry +alg-geom/9512018 Algebraic Geometry +alg-geom/9601001 Algebraic Geometry +alg-geom/9601002 Algebraic Geometry +alg-geom/9601004 Algebraic Geometry +alg-geom/9601006 Algebraic Geometry +alg-geom/9601007 Algebraic Geometry +alg-geom/9601009 Algebraic Geometry +alg-geom/9601012 Algebraic Geometry +alg-geom/9601013 Algebraic Geometry +alg-geom/9601014 Algebraic Geometry +alg-geom/9601015 Algebraic Geometry +alg-geom/9601017 Algebraic Geometry +alg-geom/9601018 Algebraic Geometry +alg-geom/9601019 Algebraic Geometry +alg-geom/9601020 Algebraic Geometry +alg-geom/9601021 Algebraic Geometry +alg-geom/9601023 Algebraic Geometry +alg-geom/9601024 Algebraic Geometry +alg-geom/9601026 Algebraic Geometry +alg-geom/9602001 Algebraic Geometry +alg-geom/9602002 Algebraic Geometry +alg-geom/9602003 Algebraic Geometry +alg-geom/9602004 Algebraic Geometry +alg-geom/9602005 Algebraic Geometry +alg-geom/9602007 Algebraic Geometry +alg-geom/9602008 Algebraic Geometry +alg-geom/9602009 Algebraic Geometry +alg-geom/9602010 Algebraic Geometry +alg-geom/9602011 Algebraic Geometry +alg-geom/9602012 Algebraic Geometry +alg-geom/9602013 Algebraic Geometry +alg-geom/9602014 Algebraic Geometry +alg-geom/9602015 Algebraic Geometry +alg-geom/9602016 Algebraic Geometry +alg-geom/9602017 Algebraic Geometry +alg-geom/9602018 Algebraic Geometry +alg-geom/9602022 Algebraic Geometry +alg-geom/9602023 Algebraic Geometry +alg-geom/9602024 Algebraic Geometry +alg-geom/9603001 Algebraic Geometry +alg-geom/9603002 Algebraic Geometry +alg-geom/9603003 Algebraic Geometry +alg-geom/9603004 Algebraic Geometry +alg-geom/9603005 Algebraic Geometry +alg-geom/9603006 Algebraic Geometry +alg-geom/9603008 Algebraic Geometry +alg-geom/9603009 Algebraic Geometry +alg-geom/9603011 Algebraic Geometry +alg-geom/9603013 Algebraic Geometry +alg-geom/9603014 Algebraic Geometry +alg-geom/9603015 Algebraic Geometry +alg-geom/9603016 Algebraic Geometry +alg-geom/9603017 Algebraic Geometry +alg-geom/9603019 Algebraic Geometry +alg-geom/9603020 Algebraic Geometry +alg-geom/9603021 Algebraic Geometry +alg-geom/9603022 Algebraic Geometry +alg-geom/9603023 Algebraic Geometry +alg-geom/9603024 Algebraic Geometry +alg-geom/9603025 Algebraic Geometry +alg-geom/9604002 Algebraic Geometry +alg-geom/9604003 Algebraic Geometry +alg-geom/9604004 Algebraic Geometry +alg-geom/9604005 Algebraic Geometry +alg-geom/9604006 Algebraic Geometry +alg-geom/9604007 Algebraic Geometry +alg-geom/9604008 Algebraic Geometry +alg-geom/9604009 Algebraic Geometry +alg-geom/9604010 Algebraic Geometry +alg-geom/9604012 Algebraic Geometry +alg-geom/9604013 Algebraic Geometry +alg-geom/9604015 Algebraic Geometry +alg-geom/9604017 Algebraic Geometry +alg-geom/9604018 Algebraic Geometry +alg-geom/9604020 Algebraic Geometry +alg-geom/9604021 Algebraic Geometry +alg-geom/9604022 Algebraic Geometry +alg-geom/9604023 Algebraic Geometry +alg-geom/9605001 Algebraic Geometry +alg-geom/9605004 Algebraic Geometry +alg-geom/9605006 Algebraic Geometry +alg-geom/9605007 Algebraic Geometry +alg-geom/9605008 Algebraic Geometry +alg-geom/9605010 Algebraic Geometry +alg-geom/9605011 Algebraic Geometry +alg-geom/9605012 Algebraic Geometry +alg-geom/9605013 Algebraic Geometry +alg-geom/9605014 Algebraic Geometry +alg-geom/9606001 Algebraic Geometry +alg-geom/9606002 Algebraic Geometry +alg-geom/9606003 Algebraic Geometry +alg-geom/9606004 Algebraic Geometry +alg-geom/9606005 Algebraic Geometry +alg-geom/9606007 Algebraic Geometry +alg-geom/9606008 Algebraic Geometry +alg-geom/9606011 Algebraic Geometry +alg-geom/9606012 Algebraic Geometry +alg-geom/9606014 Algebraic Geometry +alg-geom/9606015 Algebraic Geometry +alg-geom/9606016 Algebraic Geometry +alg-geom/9606017 Algebraic Geometry +alg-geom/9606019 Algebraic Geometry +alg-geom/9607001 Algebraic Geometry +alg-geom/9607002 Algebraic Geometry +alg-geom/9607003 Algebraic Geometry +alg-geom/9607004 Algebraic Geometry +alg-geom/9607005 Algebraic Geometry +alg-geom/9607007 Algebraic Geometry +alg-geom/9607008 Algebraic Geometry +alg-geom/9607009 Algebraic Geometry +alg-geom/9607010 Algebraic Geometry +alg-geom/9607012 Algebraic Geometry +alg-geom/9607013 Algebraic Geometry +alg-geom/9607014 Algebraic Geometry +alg-geom/9607015 Algebraic Geometry +alg-geom/9607016 Algebraic Geometry +alg-geom/9607017 Algebraic Geometry +alg-geom/9607018 Algebraic Geometry +alg-geom/9607019 Algebraic Geometry +alg-geom/9607020 Algebraic Geometry +alg-geom/9607021 Algebraic Geometry +alg-geom/9607022 Algebraic Geometry +alg-geom/9607024 Algebraic Geometry +alg-geom/9607025 Algebraic Geometry +alg-geom/9607026 Algebraic Geometry +alg-geom/9608001 Algebraic Geometry +alg-geom/9608002 Algebraic Geometry +alg-geom/9608003 Algebraic Geometry +alg-geom/9608004 Algebraic Geometry +alg-geom/9608005 Algebraic Geometry +alg-geom/9608006 Algebraic Geometry +alg-geom/9608008 Algebraic Geometry +alg-geom/9608009 Algebraic Geometry +alg-geom/9608010 Algebraic Geometry +alg-geom/9608011 Algebraic Geometry +alg-geom/9608012 Algebraic Geometry +alg-geom/9608013 Algebraic Geometry +alg-geom/9608014 Algebraic Geometry +alg-geom/9608015 Algebraic Geometry +alg-geom/9608017 Algebraic Geometry +alg-geom/9608018 Algebraic Geometry +alg-geom/9608019 Algebraic Geometry +alg-geom/9608021 Algebraic Geometry +alg-geom/9608022 Algebraic Geometry +alg-geom/9608023 Algebraic Geometry +alg-geom/9608024 Algebraic Geometry +alg-geom/9608025 Algebraic Geometry +alg-geom/9608026 Algebraic Geometry +alg-geom/9608027 Algebraic Geometry +alg-geom/9608028 Algebraic Geometry +alg-geom/9608029 Algebraic Geometry +alg-geom/9608030 Algebraic Geometry +alg-geom/9608031 Algebraic Geometry +alg-geom/9608032 Algebraic Geometry +alg-geom/9608034 Algebraic Geometry +alg-geom/9609001 Algebraic Geometry +alg-geom/9609002 Algebraic Geometry +alg-geom/9609003 Algebraic Geometry +alg-geom/9609004 Algebraic Geometry +alg-geom/9609005 Algebraic Geometry +alg-geom/9609006 Algebraic Geometry +alg-geom/9609007 Algebraic Geometry +alg-geom/9609008 Algebraic Geometry +alg-geom/9609009 Algebraic Geometry +alg-geom/9609010 Algebraic Geometry +alg-geom/9609011 Algebraic Geometry +alg-geom/9609012 Algebraic Geometry +alg-geom/9609013 Algebraic Geometry +alg-geom/9609014 Algebraic Geometry +alg-geom/9609015 Algebraic Geometry +alg-geom/9609016 Algebraic Geometry +alg-geom/9609017 Algebraic Geometry +alg-geom/9609018 Algebraic Geometry +alg-geom/9609020 Algebraic Geometry +alg-geom/9610001 Algebraic Geometry +alg-geom/9610002 Algebraic Geometry +alg-geom/9610003 Algebraic Geometry +alg-geom/9610004 Algebraic Geometry +alg-geom/9610005 Algebraic Geometry +alg-geom/9610006 Algebraic Geometry +alg-geom/9610007 Algebraic Geometry +alg-geom/9610008 Algebraic Geometry +alg-geom/9610009 Algebraic Geometry +alg-geom/9610010 Algebraic Geometry +alg-geom/9610011 Algebraic Geometry +alg-geom/9610012 Algebraic Geometry +alg-geom/9610013 Algebraic Geometry +alg-geom/9610014 Algebraic Geometry +alg-geom/9610015 Algebraic Geometry +alg-geom/9610016 Algebraic Geometry +alg-geom/9610017 Algebraic Geometry +alg-geom/9610018 Algebraic Geometry +alg-geom/9610019 Algebraic Geometry +alg-geom/9610021 Algebraic Geometry +alg-geom/9610022 Algebraic Geometry +alg-geom/9610023 Algebraic Geometry +alg-geom/9611001 Algebraic Geometry +alg-geom/9611002 Algebraic Geometry +alg-geom/9611003 Algebraic Geometry +alg-geom/9611004 Algebraic Geometry +alg-geom/9611005 Algebraic Geometry +alg-geom/9611006 Algebraic Geometry +alg-geom/9611007 Algebraic Geometry +alg-geom/9611008 Algebraic Geometry +alg-geom/9611009 Algebraic Geometry +alg-geom/9611011 Algebraic Geometry +alg-geom/9611012 Algebraic Geometry +alg-geom/9611013 Algebraic Geometry +alg-geom/9611014 Algebraic Geometry +alg-geom/9611015 Algebraic Geometry +alg-geom/9611017 Algebraic Geometry +alg-geom/9611018 Algebraic Geometry +alg-geom/9611019 Algebraic Geometry +alg-geom/9611020 Algebraic Geometry +alg-geom/9611021 Algebraic Geometry +alg-geom/9611022 Algebraic Geometry +alg-geom/9611023 Algebraic Geometry +alg-geom/9611024 Algebraic Geometry +alg-geom/9611025 Algebraic Geometry +alg-geom/9611026 Algebraic Geometry +alg-geom/9611027 Algebraic Geometry +alg-geom/9611029 Algebraic Geometry +alg-geom/9611031 Algebraic Geometry +alg-geom/9611032 Algebraic Geometry +alg-geom/9611033 Algebraic Geometry +alg-geom/9611034 Algebraic Geometry +alg-geom/9611035 Algebraic Geometry +alg-geom/9612001 Algebraic Geometry +alg-geom/9612003 Algebraic Geometry +alg-geom/9612004 Algebraic Geometry +alg-geom/9612005 Algebraic Geometry +alg-geom/9612006 Algebraic Geometry +alg-geom/9612007 Algebraic Geometry +alg-geom/9612008 Algebraic Geometry +alg-geom/9612009 Algebraic Geometry +alg-geom/9612010 Algebraic Geometry +alg-geom/9612011 Algebraic Geometry +alg-geom/9612012 Algebraic Geometry +alg-geom/9612013 Algebraic Geometry +alg-geom/9612014 Algebraic Geometry +alg-geom/9612015 Algebraic Geometry +alg-geom/9612016 Algebraic Geometry +alg-geom/9612018 Algebraic Geometry +alg-geom/9612019 Algebraic Geometry +alg-geom/9612020 Algebraic Geometry +alg-geom/9701001 Algebraic Geometry +alg-geom/9701002 Algebraic Geometry +alg-geom/9701003 Algebraic Geometry +alg-geom/9701004 Algebraic Geometry +alg-geom/9701006 Algebraic Geometry +alg-geom/9701007 Algebraic Geometry +alg-geom/9701009 Algebraic Geometry +alg-geom/9701010 Algebraic Geometry +alg-geom/9701011 Algebraic Geometry +alg-geom/9701012 Algebraic Geometry +alg-geom/9701013 Algebraic Geometry +alg-geom/9701014 Algebraic Geometry +alg-geom/9701016 Algebraic Geometry +alg-geom/9701017 Algebraic Geometry +alg-geom/9701018 Algebraic Geometry +alg-geom/9701019 Algebraic Geometry +alg-geom/9702001 Algebraic Geometry +alg-geom/9702003 Algebraic Geometry +alg-geom/9702005 Algebraic Geometry +alg-geom/9702006 Algebraic Geometry +alg-geom/9702007 Algebraic Geometry +alg-geom/9702008 Algebraic Geometry +alg-geom/9702012 Algebraic Geometry +alg-geom/9702013 Algebraic Geometry +alg-geom/9702014 Algebraic Geometry +alg-geom/9702015 Algebraic Geometry +alg-geom/9702017 Algebraic Geometry +alg-geom/9702018 Algebraic Geometry +alg-geom/9702019 Algebraic Geometry +alg-geom/9703002 Algebraic Geometry +alg-geom/9703003 Algebraic Geometry +alg-geom/9703005 Algebraic Geometry +alg-geom/9703006 Algebraic Geometry +alg-geom/9703008 Algebraic Geometry +alg-geom/9703009 Algebraic Geometry +alg-geom/9703010 Algebraic Geometry +alg-geom/9703011 Algebraic Geometry +alg-geom/9703012 Algebraic Geometry +alg-geom/9703014 Algebraic Geometry +alg-geom/9703015 Algebraic Geometry +alg-geom/9703016 Algebraic Geometry +alg-geom/9703017 Algebraic Geometry +alg-geom/9703018 Algebraic Geometry +alg-geom/9703019 Algebraic Geometry +alg-geom/9703021 Algebraic Geometry +alg-geom/9703023 Algebraic Geometry +alg-geom/9703024 Algebraic Geometry +alg-geom/9703026 Algebraic Geometry +alg-geom/9703028 Algebraic Geometry +alg-geom/9703029 Algebraic Geometry +alg-geom/9703031 Algebraic Geometry +alg-geom/9703032 Algebraic Geometry +alg-geom/9703033 Algebraic Geometry +alg-geom/9703034 Algebraic Geometry +alg-geom/9703035 Algebraic Geometry +alg-geom/9703036 Algebraic Geometry +alg-geom/9703038 Algebraic Geometry +alg-geom/9704001 Algebraic Geometry +alg-geom/9704002 Algebraic Geometry +alg-geom/9704004 Algebraic Geometry +alg-geom/9704005 Algebraic Geometry +alg-geom/9704006 Algebraic Geometry +alg-geom/9704007 Algebraic Geometry +alg-geom/9704009 Algebraic Geometry +alg-geom/9704011 Algebraic Geometry +alg-geom/9704013 Algebraic Geometry +alg-geom/9704014 Algebraic Geometry +alg-geom/9704015 Algebraic Geometry +alg-geom/9704016 Algebraic Geometry +alg-geom/9704017 Algebraic Geometry +alg-geom/9704018 Algebraic Geometry +alg-geom/9704019 Algebraic Geometry +alg-geom/9704020 Algebraic Geometry +alg-geom/9704021 Algebraic Geometry +alg-geom/9704022 Algebraic Geometry +alg-geom/9705001 Algebraic Geometry +alg-geom/9705002 Algebraic Geometry +alg-geom/9705003 Algebraic Geometry +alg-geom/9705004 Algebraic Geometry +alg-geom/9705005 Algebraic Geometry +alg-geom/9705006 Algebraic Geometry +alg-geom/9705007 Algebraic Geometry +alg-geom/9705008 Algebraic Geometry +alg-geom/9705009 Algebraic Geometry +alg-geom/9705012 Algebraic Geometry +alg-geom/9705013 Algebraic Geometry +alg-geom/9705014 Algebraic Geometry +alg-geom/9705015 Algebraic Geometry +alg-geom/9705016 Algebraic Geometry +alg-geom/9705017 Algebraic Geometry +alg-geom/9705018 Algebraic Geometry +alg-geom/9705019 Algebraic Geometry +alg-geom/9705020 Algebraic Geometry +alg-geom/9705021 Algebraic Geometry +alg-geom/9705022 Algebraic Geometry +alg-geom/9705023 Algebraic Geometry +alg-geom/9705024 Algebraic Geometry +alg-geom/9705025 Algebraic Geometry +alg-geom/9705026 Algebraic Geometry +alg-geom/9705027 Algebraic Geometry +alg-geom/9705028 Algebraic Geometry +alg-geom/9706001 Algebraic Geometry +alg-geom/9706002 Algebraic Geometry +alg-geom/9706004 Algebraic Geometry +alg-geom/9706006 Algebraic Geometry +alg-geom/9706007 Algebraic Geometry +alg-geom/9706008 Algebraic Geometry +alg-geom/9706010 Algebraic Geometry +alg-geom/9706012 Algebraic Geometry +alg-geom/9707001 Algebraic Geometry +alg-geom/9707002 Algebraic Geometry +alg-geom/9707003 Algebraic Geometry +alg-geom/9707005 Algebraic Geometry +alg-geom/9707006 Algebraic Geometry +alg-geom/9707008 Algebraic Geometry +alg-geom/9707009 Algebraic Geometry +alg-geom/9707010 Algebraic Geometry +alg-geom/9707011 Algebraic Geometry +alg-geom/9707012 Algebraic Geometry +alg-geom/9707014 Algebraic Geometry +alg-geom/9707015 Algebraic Geometry +alg-geom/9707016 Algebraic Geometry +alg-geom/9707017 Algebraic Geometry +alg-geom/9707018 Algebraic Geometry +alg-geom/9708001 Algebraic Geometry +alg-geom/9708002 Algebraic Geometry +alg-geom/9708003 Algebraic Geometry +alg-geom/9708004 Algebraic Geometry +alg-geom/9708005 Algebraic Geometry +alg-geom/9708006 Algebraic Geometry +alg-geom/9708007 Algebraic Geometry +alg-geom/9708008 Algebraic Geometry +alg-geom/9708010 Algebraic Geometry +alg-geom/9708011 Algebraic Geometry +alg-geom/9708012 Algebraic Geometry +alg-geom/9708013 Algebraic Geometry +alg-geom/9708016 Algebraic Geometry +alg-geom/9708017 Algebraic Geometry +alg-geom/9708018 Algebraic Geometry +alg-geom/9708019 Algebraic Geometry +alg-geom/9708021 Algebraic Geometry +alg-geom/9708022 Algebraic Geometry +alg-geom/9708025 Algebraic Geometry +alg-geom/9708026 Algebraic Geometry +alg-geom/9709001 Algebraic Geometry +alg-geom/9709002 Algebraic Geometry +alg-geom/9709003 Algebraic Geometry +alg-geom/9709004 Algebraic Geometry +alg-geom/9709005 Algebraic Geometry +alg-geom/9709006 Algebraic Geometry +alg-geom/9709007 Algebraic Geometry +alg-geom/9709008 Algebraic Geometry +alg-geom/9709009 Algebraic Geometry +alg-geom/9709010 Algebraic Geometry +alg-geom/9709011 Algebraic Geometry +alg-geom/9709012 Algebraic Geometry +alg-geom/9709013 Algebraic Geometry +alg-geom/9709014 Algebraic Geometry +alg-geom/9709015 Algebraic Geometry +alg-geom/9709017 Algebraic Geometry +alg-geom/9709018 Algebraic Geometry +alg-geom/9709019 Algebraic Geometry +alg-geom/9709021 Algebraic Geometry +alg-geom/9709022 Algebraic Geometry +alg-geom/9709023 Algebraic Geometry +alg-geom/9709024 Algebraic Geometry +alg-geom/9709026 Algebraic Geometry +alg-geom/9709027 Algebraic Geometry +alg-geom/9709028 Algebraic Geometry +alg-geom/9709029 Algebraic Geometry +alg-geom/9709030 Algebraic Geometry +alg-geom/9709031 Algebraic Geometry +alg-geom/9709032 Algebraic Geometry +ao-sci/9505001 Atmospheric and Oceanic Physics +ao-sci/9508001 Atmospheric and Oceanic Physics +ao-sci/9510001 Atmospheric and Oceanic Physics +ao-sci/9605001 Atmospheric and Oceanic Physics +ao-sci/9605002 Atmospheric and Oceanic Physics +ao-sci/9606001 Atmospheric and Oceanic Physics +ao-sci/9609001 Atmospheric and Oceanic Physics +astro-ph/9211005 +astro-ph/9302006 +astro-ph/9305019 +astro-ph/9309021 +astro-ph/9311013 +astro-ph/9311045 +astro-ph/9311046 +astro-ph/9311047 +astro-ph/9311067 +astro-ph/9311068 +astro-ph/9311076 +astro-ph/9401014 +astro-ph/9401048 +astro-ph/9403048 +astro-ph/9404048 +astro-ph/9404070 +astro-ph/9404072 +astro-ph/9404076 +astro-ph/9405060 +astro-ph/9406035 +astro-ph/9407055 +astro-ph/9408040 +astro-ph/9408076 +astro-ph/9408077 +astro-ph/9408102 +astro-ph/9409026 +astro-ph/9409076 +astro-ph/9409082 +astro-ph/9410011 +astro-ph/9410048 +astro-ph/9410055 +astro-ph/9410091 +astro-ph/9411083 +astro-ph/9412040 +astro-ph/9412063 +astro-ph/9501051 +astro-ph/9501088 +astro-ph/9503042 +astro-ph/9504038 +astro-ph/9504058 +astro-ph/9504066 +astro-ph/9505057 +astro-ph/9505105 +astro-ph/9505107 +astro-ph/9505110 +astro-ph/9506013 +astro-ph/9506062 +astro-ph/9506117 +astro-ph/9506141 +astro-ph/9506142 +astro-ph/9507022 +astro-ph/9507034 +astro-ph/9507069 +astro-ph/9507082 +astro-ph/9507083 +astro-ph/9508028 +astro-ph/9508055 +astro-ph/9508098 +astro-ph/9508110 +astro-ph/9508132 +astro-ph/9508135 +astro-ph/9508154 +astro-ph/9508159 +astro-ph/9509041 +astro-ph/9509043 +astro-ph/9509053 +astro-ph/9509059 +astro-ph/9509079 +astro-ph/9509110 +astro-ph/9509114 +astro-ph/9509123 +astro-ph/9509131 +astro-ph/9510024 +astro-ph/9510044 +astro-ph/9510066 +astro-ph/9510106 +astro-ph/9510116 +astro-ph/9510128 +astro-ph/9510145 +astro-ph/9510159 +astro-ph/9511073 +astro-ph/9511089 +astro-ph/9511101 +astro-ph/9512003 +astro-ph/9512020 +astro-ph/9512038 +astro-ph/9512107 +astro-ph/9512121 +astro-ph/9512122 +astro-ph/9601076 +astro-ph/9601126 +astro-ph/9601127 +astro-ph/9601165 +astro-ph/9602009 +astro-ph/9602040 +astro-ph/9602110 +astro-ph/9603019 +astro-ph/9603070 +astro-ph/9603072 +astro-ph/9603127 +astro-ph/9603128 +astro-ph/9603129 +astro-ph/9603130 +astro-ph/9604003 +astro-ph/9604093 +astro-ph/9605070 +astro-ph/9605078 +astro-ph/9605097 +astro-ph/9605124 +astro-ph/9605125 +astro-ph/9605183 +astro-ph/9606032 +astro-ph/9606052 +astro-ph/9606063 +astro-ph/9606110 +astro-ph/9606117 +astro-ph/9606155 +astro-ph/9606159 +astro-ph/9606166 +astro-ph/9607006 +astro-ph/9607111 +astro-ph/9607160 +astro-ph/9608061 +astro-ph/9608085 +astro-ph/9608099 +astro-ph/9608148 +astro-ph/9608168 +astro-ph/9609007 +astro-ph/9609071 +astro-ph/9609133 +astro-ph/9609151 +astro-ph/9609193 +astro-ph/9610024 +astro-ph/9610072 +astro-ph/9610089 +astro-ph/9610133 +astro-ph/9610149 +astro-ph/9610167 +astro-ph/9610169 +astro-ph/9610188 +astro-ph/9610266 +astro-ph/9611004 +astro-ph/9611032 +astro-ph/9611065 +astro-ph/9611079 +astro-ph/9612003 +astro-ph/9612017 +astro-ph/9612050 +astro-ph/9612087 +astro-ph/9612090 +astro-ph/9612093 +astro-ph/9612102 +astro-ph/9612146 +astro-ph/9612224 +astro-ph/9612225 +astro-ph/9612227 +astro-ph/9612242 +astro-ph/9701035 +astro-ph/9701070 +astro-ph/9701104 +astro-ph/9701161 +astro-ph/9701230 +astro-ph/9701237 +astro-ph/9702044 +astro-ph/9702057 +astro-ph/9702058 +astro-ph/9702061 +astro-ph/9702148 +astro-ph/9702168 +astro-ph/9702226 +astro-ph/9703003 +astro-ph/9703044 +astro-ph/9703089 +astro-ph/9703090 +astro-ph/9703101 +astro-ph/9703108 +astro-ph/9703139 +astro-ph/9703140 +astro-ph/9703154 +astro-ph/9703161 +astro-ph/9703170 +astro-ph/9703181 +astro-ph/9704007 +astro-ph/9704057 +astro-ph/9704162 +astro-ph/9704179 +astro-ph/9704187 +astro-ph/9704193 +astro-ph/9704219 +astro-ph/9704232 +astro-ph/9704235 +astro-ph/9704237 +astro-ph/9704252 +astro-ph/9704264 +astro-ph/9704285 +astro-ph/9705041 +astro-ph/9705069 +astro-ph/9705101 +astro-ph/9705115 +astro-ph/9705184 +astro-ph/9705198 +astro-ph/9705209 +astro-ph/9705236 +astro-ph/9706010 +astro-ph/9706036 +astro-ph/9706076 +astro-ph/9706102 +astro-ph/9706124 +astro-ph/9706126 +astro-ph/9706133 +astro-ph/9706141 +astro-ph/9706148 +astro-ph/9706160 +astro-ph/9706177 +astro-ph/9706181 +astro-ph/9706209 +astro-ph/9706236 +astro-ph/9706263 +astro-ph/9706271 +astro-ph/9706280 +astro-ph/9707043 +astro-ph/9707081 +astro-ph/9707099 +astro-ph/9707155 +astro-ph/9707156 +astro-ph/9707228 +astro-ph/9707249 +astro-ph/9707257 +astro-ph/9707268 +astro-ph/9707285 +astro-ph/9707290 +astro-ph/9708042 +astro-ph/9708101 +astro-ph/9708110 +astro-ph/9708118 +astro-ph/9708130 +astro-ph/9708131 +astro-ph/9708213 +astro-ph/9708238 +astro-ph/9709011 +astro-ph/9709039 +astro-ph/9709054 +astro-ph/9709082 +astro-ph/9709084 +astro-ph/9709225 +astro-ph/9709277 +astro-ph/9709286 +atom-ph/9509002 Atomic Physics +atom-ph/9509003 Atomic Physics +atom-ph/9511001 Atomic Physics +atom-ph/9512001 Atomic Physics +atom-ph/9512002 Atomic Physics +atom-ph/9601005 Atomic Physics +atom-ph/9603002 Atomic Physics +atom-ph/9603006 Atomic Physics +atom-ph/9603007 Atomic Physics +atom-ph/9603008 Atomic Physics +atom-ph/9604007 Atomic Physics +atom-ph/9605001 Atomic Physics +atom-ph/9605005 Atomic Physics +atom-ph/9605007 Atomic Physics +atom-ph/9607002 Atomic Physics +atom-ph/9607003 Atomic Physics +atom-ph/9607006 Atomic Physics +bayes-an/9506001 Data Analysis, Statistics and Probability +bayes-an/9506002 Data Analysis, Statistics and Probability +bayes-an/9506004 Data Analysis, Statistics and Probability +bayes-an/9510001 Data Analysis, Statistics and Probability +bayes-an/9511001 Data Analysis, Statistics and Probability +bayes-an/9601001 Data Analysis, Statistics and Probability +bayes-an/9604001 Data Analysis, Statistics and Probability +bayes-an/9609001 Data Analysis, Statistics and Probability +chao-dyn/9301001 Chaotic Dynamics +chao-dyn/9301002 Chaotic Dynamics +chao-dyn/9301004 Chaotic Dynamics +chao-dyn/9302001 Chaotic Dynamics +chao-dyn/9302004 Chaotic Dynamics +chao-dyn/9303003 Chaotic Dynamics +chao-dyn/9303005 Chaotic Dynamics +chao-dyn/9303006 Chaotic Dynamics +chao-dyn/9303015 Chaotic Dynamics +chao-dyn/9303017 Chaotic Dynamics +chao-dyn/9303018 Chaotic Dynamics +chao-dyn/9304002 Chaotic Dynamics +chao-dyn/9304003 Chaotic Dynamics +chao-dyn/9304004 Chaotic Dynamics +chao-dyn/9304005 Chaotic Dynamics +chao-dyn/9304007 Chaotic Dynamics +chao-dyn/9304008 Chaotic Dynamics +chao-dyn/9304009 Chaotic Dynamics +chao-dyn/9304010 Chaotic Dynamics +chao-dyn/9305001 Chaotic Dynamics +chao-dyn/9305004 Chaotic Dynamics +chao-dyn/9305007 Chaotic Dynamics +chao-dyn/9305008 Chaotic Dynamics +chao-dyn/9305009 Chaotic Dynamics +chao-dyn/9305010 Chaotic Dynamics +chao-dyn/9306001 Chaotic Dynamics +chao-dyn/9306002 Chaotic Dynamics +chao-dyn/9306008 Chaotic Dynamics +chao-dyn/9306010 Chaotic Dynamics +chao-dyn/9306012 Chaotic Dynamics +chao-dyn/9307005 Chaotic Dynamics +chao-dyn/9307006 Chaotic Dynamics +chao-dyn/9307009 Chaotic Dynamics +chao-dyn/9307010 Chaotic Dynamics +chao-dyn/9307015 Chaotic Dynamics +chao-dyn/9307018 Chaotic Dynamics +chao-dyn/9307020 Chaotic Dynamics +chao-dyn/9308001 Chaotic Dynamics +chao-dyn/9308004 Chaotic Dynamics +chao-dyn/9308006 Chaotic Dynamics +chao-dyn/9309001 Chaotic Dynamics +chao-dyn/9309002 Chaotic Dynamics +chao-dyn/9310001 Chaotic Dynamics +chao-dyn/9310004 Chaotic Dynamics +chao-dyn/9311001 Chaotic Dynamics +chao-dyn/9311010 Chaotic Dynamics +chao-dyn/9312002 Chaotic Dynamics +chao-dyn/9312003 Chaotic Dynamics +chao-dyn/9312005 Chaotic Dynamics +chao-dyn/9312006 Chaotic Dynamics +chao-dyn/9401001 Chaotic Dynamics +chao-dyn/9401003 Chaotic Dynamics +chao-dyn/9401004 Chaotic Dynamics +chao-dyn/9402001 Chaotic Dynamics +chao-dyn/9402004 Chaotic Dynamics +chao-dyn/9403001 Chaotic Dynamics +chao-dyn/9403003 Chaotic Dynamics +chao-dyn/9404002 Chaotic Dynamics +chao-dyn/9404003 Chaotic Dynamics +chao-dyn/9405005 Chaotic Dynamics +chao-dyn/9406003 Chaotic Dynamics +chao-dyn/9406005 Chaotic Dynamics +chao-dyn/9406009 Chaotic Dynamics +chao-dyn/9406013 Chaotic Dynamics +chao-dyn/9407003 Chaotic Dynamics +chao-dyn/9407004 Chaotic Dynamics +chao-dyn/9407005 Chaotic Dynamics +chao-dyn/9407006 Chaotic Dynamics +chao-dyn/9407009 Chaotic Dynamics +chao-dyn/9407010 Chaotic Dynamics +chao-dyn/9407012 Chaotic Dynamics +chao-dyn/9407015 Chaotic Dynamics +chao-dyn/9407016 Chaotic Dynamics +chao-dyn/9408001 Chaotic Dynamics +chao-dyn/9408002 Chaotic Dynamics +chao-dyn/9410001 Chaotic Dynamics +chao-dyn/9410003 Chaotic Dynamics +chao-dyn/9410011 Chaotic Dynamics +chao-dyn/9411001 Chaotic Dynamics +chao-dyn/9411008 Chaotic Dynamics +chao-dyn/9411009 Chaotic Dynamics +chao-dyn/9411010 Chaotic Dynamics +chao-dyn/9411011 Chaotic Dynamics +chao-dyn/9411014 Chaotic Dynamics +chao-dyn/9411016 Chaotic Dynamics +chao-dyn/9412002 Chaotic Dynamics +chao-dyn/9412006 Chaotic Dynamics +chao-dyn/9412010 Chaotic Dynamics +chao-dyn/9501003 Chaotic Dynamics +chao-dyn/9501010 Chaotic Dynamics +chao-dyn/9501012 Chaotic Dynamics +chao-dyn/9501022 Chaotic Dynamics +chao-dyn/9501026 Chaotic Dynamics +chao-dyn/9502002 Chaotic Dynamics +chao-dyn/9502004 Chaotic Dynamics +chao-dyn/9502008 Chaotic Dynamics +chao-dyn/9502023 Chaotic Dynamics +chao-dyn/9502025 Chaotic Dynamics +chao-dyn/9503003 Chaotic Dynamics +chao-dyn/9503004 Chaotic Dynamics +chao-dyn/9503005 Chaotic Dynamics +chao-dyn/9504001 Chaotic Dynamics +chao-dyn/9504004 Chaotic Dynamics +chao-dyn/9505003 Chaotic Dynamics +chao-dyn/9505015 Chaotic Dynamics +chao-dyn/9506005 Chaotic Dynamics +chao-dyn/9506015 Chaotic Dynamics +chao-dyn/9507002 Chaotic Dynamics +chao-dyn/9508002 Chaotic Dynamics +chao-dyn/9508004 Chaotic Dynamics +chao-dyn/9508008 Chaotic Dynamics +chao-dyn/9509002 Chaotic Dynamics +chao-dyn/9509003 Chaotic Dynamics +chao-dyn/9509004 Chaotic Dynamics +chao-dyn/9509009 Chaotic Dynamics +chao-dyn/9509010 Chaotic Dynamics +chao-dyn/9509012 Chaotic Dynamics +chao-dyn/9509014 Chaotic Dynamics +chao-dyn/9509016 Chaotic Dynamics +chao-dyn/9509021 Chaotic Dynamics +chao-dyn/9509022 Chaotic Dynamics +chao-dyn/9509023 Chaotic Dynamics +chao-dyn/9510009 Chaotic Dynamics +chao-dyn/9510013 Chaotic Dynamics +chao-dyn/9510015 Chaotic Dynamics +chao-dyn/9510017 Chaotic Dynamics +chao-dyn/9510020 Chaotic Dynamics +chao-dyn/9511005 Chaotic Dynamics +chao-dyn/9511010 Chaotic Dynamics +chao-dyn/9512002 Chaotic Dynamics +chao-dyn/9512003 Chaotic Dynamics +chao-dyn/9512005 Chaotic Dynamics +chao-dyn/9512009 Chaotic Dynamics +chao-dyn/9601003 Chaotic Dynamics +chao-dyn/9601011 Chaotic Dynamics +chao-dyn/9601015 Chaotic Dynamics +chao-dyn/9601017 Chaotic Dynamics +chao-dyn/9602004 Chaotic Dynamics +chao-dyn/9602005 Chaotic Dynamics +chao-dyn/9602010 Chaotic Dynamics +chao-dyn/9602013 Chaotic Dynamics +chao-dyn/9602016 Chaotic Dynamics +chao-dyn/9602017 Chaotic Dynamics +chao-dyn/9602018 Chaotic Dynamics +chao-dyn/9602019 Chaotic Dynamics +chao-dyn/9602020 Chaotic Dynamics +chao-dyn/9602021 Chaotic Dynamics +chao-dyn/9602023 Chaotic Dynamics +chao-dyn/9603008 Chaotic Dynamics +chao-dyn/9603016 Chaotic Dynamics +chao-dyn/9603017 Chaotic Dynamics +chao-dyn/9603018 Chaotic Dynamics +chao-dyn/9604008 Chaotic Dynamics +chao-dyn/9604014 Chaotic Dynamics +chao-dyn/9604015 Chaotic Dynamics +chao-dyn/9605004 Chaotic Dynamics +chao-dyn/9605005 Chaotic Dynamics +chao-dyn/9605008 Chaotic Dynamics +chao-dyn/9605012 Chaotic Dynamics +chao-dyn/9605013 Chaotic Dynamics +chao-dyn/9606001 Chaotic Dynamics +chao-dyn/9606009 Chaotic Dynamics +chao-dyn/9606017 Chaotic Dynamics +chao-dyn/9607001 Chaotic Dynamics +chao-dyn/9607002 Chaotic Dynamics +chao-dyn/9607003 Chaotic Dynamics +chao-dyn/9607008 Chaotic Dynamics +chao-dyn/9607010 Chaotic Dynamics +chao-dyn/9607013 Chaotic Dynamics +chao-dyn/9607015 Chaotic Dynamics +chao-dyn/9607016 Chaotic Dynamics +chao-dyn/9608007 Chaotic Dynamics +chao-dyn/9609006 Chaotic Dynamics +chao-dyn/9609008 Chaotic Dynamics +chao-dyn/9609009 Chaotic Dynamics +chao-dyn/9609011 Chaotic Dynamics +chao-dyn/9609012 Chaotic Dynamics +chao-dyn/9609015 Chaotic Dynamics +chao-dyn/9609019 Chaotic Dynamics +chao-dyn/9610003 Chaotic Dynamics +chao-dyn/9610005 Chaotic Dynamics +chao-dyn/9610008 Chaotic Dynamics +chao-dyn/9610011 Chaotic Dynamics +chao-dyn/9610015 Chaotic Dynamics +chao-dyn/9610020 Chaotic Dynamics +chao-dyn/9611017 Chaotic Dynamics +chao-dyn/9611018 Chaotic Dynamics +chao-dyn/9612003 Chaotic Dynamics +chao-dyn/9612004 Chaotic Dynamics +chao-dyn/9612010 Chaotic Dynamics +chao-dyn/9612020 Chaotic Dynamics +chao-dyn/9612021 Chaotic Dynamics +chao-dyn/9612023 Chaotic Dynamics +chao-dyn/9612024 Chaotic Dynamics +chao-dyn/9612026 Chaotic Dynamics +chao-dyn/9701003 Chaotic Dynamics +chao-dyn/9701010 Chaotic Dynamics +chao-dyn/9701016 Chaotic Dynamics +chao-dyn/9701018 Chaotic Dynamics +chao-dyn/9701021 Chaotic Dynamics +chao-dyn/9701022 Chaotic Dynamics +chao-dyn/9701024 Chaotic Dynamics +chao-dyn/9701025 Chaotic Dynamics +chao-dyn/9702003 Chaotic Dynamics +chao-dyn/9702004 Chaotic Dynamics +chao-dyn/9702010 Chaotic Dynamics +chao-dyn/9702015 Chaotic Dynamics +chao-dyn/9703001 Chaotic Dynamics +chao-dyn/9703003 Chaotic Dynamics +chao-dyn/9703006 Chaotic Dynamics +chao-dyn/9704005 Chaotic Dynamics +chao-dyn/9704007 Chaotic Dynamics +chao-dyn/9704019 Chaotic Dynamics +chao-dyn/9705002 Chaotic Dynamics +chao-dyn/9705003 Chaotic Dynamics +chao-dyn/9705005 Chaotic Dynamics +chao-dyn/9705012 Chaotic Dynamics +chao-dyn/9705013 Chaotic Dynamics +chao-dyn/9705014 Chaotic Dynamics +chao-dyn/9705015 Chaotic Dynamics +chao-dyn/9705016 Chaotic Dynamics +chao-dyn/9705017 Chaotic Dynamics +chao-dyn/9706005 Chaotic Dynamics +chao-dyn/9706007 Chaotic Dynamics +chao-dyn/9706010 Chaotic Dynamics +chao-dyn/9706014 Chaotic Dynamics +chao-dyn/9706026 Chaotic Dynamics +chao-dyn/9706027 Chaotic Dynamics +chao-dyn/9707009 Chaotic Dynamics +chao-dyn/9707013 Chaotic Dynamics +chao-dyn/9707017 Chaotic Dynamics +chao-dyn/9707021 Chaotic Dynamics +chao-dyn/9708009 Chaotic Dynamics +chao-dyn/9708012 Chaotic Dynamics +chao-dyn/9708013 Chaotic Dynamics +chao-dyn/9708015 Chaotic Dynamics +chao-dyn/9708018 Chaotic Dynamics +chao-dyn/9708021 Chaotic Dynamics +chao-dyn/9709001 Chaotic Dynamics +chao-dyn/9709002 Chaotic Dynamics +chao-dyn/9709006 Chaotic Dynamics +chao-dyn/9709008 Chaotic Dynamics +chao-dyn/9709015 Chaotic Dynamics +chao-dyn/9709016 Chaotic Dynamics +chao-dyn/9709022 Chaotic Dynamics +chao-dyn/9709023 Chaotic Dynamics +chao-dyn/9709024 Chaotic Dynamics +chao-dyn/9709027 Chaotic Dynamics +chem-ph/9403002 Chemical Physics +chem-ph/9403006 Chemical Physics +chem-ph/9404001 Chemical Physics +chem-ph/9404002 Chemical Physics +chem-ph/9407002 Chemical Physics +chem-ph/9410002 Chemical Physics +chem-ph/9411004 Chemical Physics +chem-ph/9411007 Chemical Physics +chem-ph/9411008 Chemical Physics +chem-ph/9411010 Chemical Physics +chem-ph/9412002 Chemical Physics +chem-ph/9412003 Chemical Physics +chem-ph/9504002 Chemical Physics +chem-ph/9505004 Chemical Physics +chem-ph/9505005 Chemical Physics +chem-ph/9505006 Chemical Physics +chem-ph/9506004 Chemical Physics +chem-ph/9507004 Chemical Physics +chem-ph/9508002 Chemical Physics +chem-ph/9510001 Chemical Physics +chem-ph/9510002 Chemical Physics +chem-ph/9510003 Chemical Physics +chem-ph/9512001 Chemical Physics +chem-ph/9512005 Chemical Physics +chem-ph/9601002 Chemical Physics +chem-ph/9601004 Chemical Physics +chem-ph/9603002 Chemical Physics +chem-ph/9603004 Chemical Physics +chem-ph/9603005 Chemical Physics +chem-ph/9604003 Chemical Physics +chem-ph/9605004 Chemical Physics +chem-ph/9606001 Chemical Physics +chem-ph/9606002 Chemical Physics +chem-ph/9607002 Chemical Physics +chem-ph/9608004 Chemical Physics +chem-ph/9608005 Chemical Physics +cmp-lg/9404002 Computation and Language +cmp-lg/9404003 Computation and Language +cmp-lg/9404004 Computation and Language +cmp-lg/9404005 Computation and Language +cmp-lg/9404006 Computation and Language +cmp-lg/9404007 Computation and Language +cmp-lg/9404008 Computation and Language +cmp-lg/9404009 Computation and Language +cmp-lg/9404010 Computation and Language +cmp-lg/9404011 Computation and Language +cmp-lg/9405001 Computation and Language +cmp-lg/9405002 Computation and Language +cmp-lg/9405003 Computation and Language +cmp-lg/9405004 Computation and Language +cmp-lg/9405005 Computation and Language +cmp-lg/9405006 Computation and Language +cmp-lg/9405007 Computation and Language +cmp-lg/9405008 Computation and Language +cmp-lg/9405010 Computation and Language +cmp-lg/9405011 Computation and Language +cmp-lg/9405012 Computation and Language +cmp-lg/9405013 Computation and Language +cmp-lg/9405014 Computation and Language +cmp-lg/9405015 Computation and Language +cmp-lg/9405016 Computation and Language +cmp-lg/9405017 Computation and Language +cmp-lg/9405018 Computation and Language +cmp-lg/9405019 Computation and Language +cmp-lg/9405020 Computation and Language +cmp-lg/9405021 Computation and Language +cmp-lg/9405022 Computation and Language +cmp-lg/9405023 Computation and Language +cmp-lg/9405024 Computation and Language +cmp-lg/9405025 Computation and Language +cmp-lg/9405026 Computation and Language +cmp-lg/9405027 Computation and Language +cmp-lg/9405028 Computation and Language +cmp-lg/9405029 Computation and Language +cmp-lg/9405030 Computation and Language +cmp-lg/9405031 Computation and Language +cmp-lg/9405032 Computation and Language +cmp-lg/9405033 Computation and Language +cmp-lg/9405034 Computation and Language +cmp-lg/9405035 Computation and Language +cmp-lg/9406001 Computation and Language +cmp-lg/9406002 Computation and Language +cmp-lg/9406003 Computation and Language +cmp-lg/9406004 Computation and Language +cmp-lg/9406005 Computation and Language +cmp-lg/9406006 Computation and Language +cmp-lg/9406008 Computation and Language +cmp-lg/9406009 Computation and Language +cmp-lg/9406010 Computation and Language +cmp-lg/9406011 Computation and Language +cmp-lg/9406012 Computation and Language +cmp-lg/9406013 Computation and Language +cmp-lg/9406014 Computation and Language +cmp-lg/9406015 Computation and Language +cmp-lg/9406016 Computation and Language +cmp-lg/9406017 Computation and Language +cmp-lg/9406018 Computation and Language +cmp-lg/9406019 Computation and Language +cmp-lg/9406020 Computation and Language +cmp-lg/9406021 Computation and Language +cmp-lg/9406022 Computation and Language +cmp-lg/9406024 Computation and Language +cmp-lg/9406025 Computation and Language +cmp-lg/9406026 Computation and Language +cmp-lg/9406027 Computation and Language +cmp-lg/9406028 Computation and Language +cmp-lg/9406029 Computation and Language +cmp-lg/9406030 Computation and Language +cmp-lg/9406031 Computation and Language +cmp-lg/9406032 Computation and Language +cmp-lg/9406033 Computation and Language +cmp-lg/9406034 Computation and Language +cmp-lg/9406035 Computation and Language +cmp-lg/9406037 Computation and Language +cmp-lg/9406038 Computation and Language +cmp-lg/9406039 Computation and Language +cmp-lg/9406040 Computation and Language +cmp-lg/9407001 Computation and Language +cmp-lg/9407002 Computation and Language +cmp-lg/9407003 Computation and Language +cmp-lg/9407005 Computation and Language +cmp-lg/9407006 Computation and Language +cmp-lg/9407007 Computation and Language +cmp-lg/9407008 Computation and Language +cmp-lg/9407009 Computation and Language +cmp-lg/9407010 Computation and Language +cmp-lg/9407011 Computation and Language +cmp-lg/9407012 Computation and Language +cmp-lg/9407013 Computation and Language +cmp-lg/9407014 Computation and Language +cmp-lg/9407015 Computation and Language +cmp-lg/9407016 Computation and Language +cmp-lg/9407017 Computation and Language +cmp-lg/9407018 Computation and Language +cmp-lg/9407019 Computation and Language +cmp-lg/9407020 Computation and Language +cmp-lg/9407021 Computation and Language +cmp-lg/9407022 Computation and Language +cmp-lg/9407023 Computation and Language +cmp-lg/9407025 Computation and Language +cmp-lg/9407026 Computation and Language +cmp-lg/9407027 Computation and Language +cmp-lg/9407028 Computation and Language +cmp-lg/9407029 Computation and Language +cmp-lg/9407030 Computation and Language +cmp-lg/9408001 Computation and Language +cmp-lg/9408002 Computation and Language +cmp-lg/9408003 Computation and Language +cmp-lg/9408004 Computation and Language +cmp-lg/9408006 Computation and Language +cmp-lg/9408007 Computation and Language +cmp-lg/9408008 Computation and Language +cmp-lg/9408009 Computation and Language +cmp-lg/9408010 Computation and Language +cmp-lg/9408011 Computation and Language +cmp-lg/9408012 Computation and Language +cmp-lg/9408013 Computation and Language +cmp-lg/9408014 Computation and Language +cmp-lg/9408015 Computation and Language +cmp-lg/9408016 Computation and Language +cmp-lg/9408017 Computation and Language +cmp-lg/9408018 Computation and Language +cmp-lg/9408019 Computation and Language +cmp-lg/9408020 Computation and Language +cmp-lg/9408021 Computation and Language +cmp-lg/9409001 Computation and Language +cmp-lg/9409002 Computation and Language +cmp-lg/9409003 Computation and Language +cmp-lg/9409004 Computation and Language +cmp-lg/9409005 Computation and Language +cmp-lg/9409006 Computation and Language +cmp-lg/9409007 Computation and Language +cmp-lg/9409008 Computation and Language +cmp-lg/9409009 Computation and Language +cmp-lg/9409010 Computation and Language +cmp-lg/9409011 Computation and Language +cmp-lg/9409012 Computation and Language +cmp-lg/9410001 Computation and Language +cmp-lg/9410002 Computation and Language +cmp-lg/9410003 Computation and Language +cmp-lg/9410004 Computation and Language +cmp-lg/9410005 Computation and Language +cmp-lg/9410006 Computation and Language +cmp-lg/9410007 Computation and Language +cmp-lg/9410008 Computation and Language +cmp-lg/9410009 Computation and Language +cmp-lg/9410010 Computation and Language +cmp-lg/9410011 Computation and Language +cmp-lg/9410012 Computation and Language +cmp-lg/9410013 Computation and Language +cmp-lg/9410014 Computation and Language +cmp-lg/9410015 Computation and Language +cmp-lg/9410016 Computation and Language +cmp-lg/9410017 Computation and Language +cmp-lg/9410018 Computation and Language +cmp-lg/9410019 Computation and Language +cmp-lg/9410020 Computation and Language +cmp-lg/9410021 Computation and Language +cmp-lg/9410022 Computation and Language +cmp-lg/9410023 Computation and Language +cmp-lg/9410024 Computation and Language +cmp-lg/9410025 Computation and Language +cmp-lg/9410026 Computation and Language +cmp-lg/9410027 Computation and Language +cmp-lg/9410028 Computation and Language +cmp-lg/9410029 Computation and Language +cmp-lg/9410030 Computation and Language +cmp-lg/9410032 Computation and Language +cmp-lg/9410033 Computation and Language +cmp-lg/9410034 Computation and Language +cmp-lg/9411001 Computation and Language +cmp-lg/9411002 Computation and Language +cmp-lg/9411003 Computation and Language +cmp-lg/9411004 Computation and Language +cmp-lg/9411005 Computation and Language +cmp-lg/9411006 Computation and Language +cmp-lg/9411007 Computation and Language +cmp-lg/9411008 Computation and Language +cmp-lg/9411009 Computation and Language +cmp-lg/9411010 Computation and Language +cmp-lg/9411011 Computation and Language +cmp-lg/9411012 Computation and Language +cmp-lg/9411013 Computation and Language +cmp-lg/9411014 Computation and Language +cmp-lg/9411015 Computation and Language +cmp-lg/9411016 Computation and Language +cmp-lg/9411019 Computation and Language +cmp-lg/9411020 Computation and Language +cmp-lg/9411021 Computation and Language +cmp-lg/9411022 Computation and Language +cmp-lg/9411023 Computation and Language +cmp-lg/9411024 Computation and Language +cmp-lg/9411025 Computation and Language +cmp-lg/9411026 Computation and Language +cmp-lg/9411027 Computation and Language +cmp-lg/9411028 Computation and Language +cmp-lg/9411029 Computation and Language +cmp-lg/9411030 Computation and Language +cmp-lg/9411031 Computation and Language +cmp-lg/9411032 Computation and Language +cmp-lg/9412001 Computation and Language +cmp-lg/9412002 Computation and Language +cmp-lg/9412003 Computation and Language +cmp-lg/9412004 Computation and Language +cmp-lg/9412005 Computation and Language +cmp-lg/9412006 Computation and Language +cmp-lg/9412007 Computation and Language +cmp-lg/9412008 Computation and Language +cmp-lg/9501005 Computation and Language +cmp-lg/9502001 Computation and Language +cmp-lg/9502013 Computation and Language +cmp-lg/9502019 Computation and Language +cmp-lg/9502021 Computation and Language +cmp-lg/9502025 Computation and Language +cmp-lg/9502026 Computation and Language +cmp-lg/9502034 Computation and Language +cmp-lg/9502035 Computation and Language +cmp-lg/9503004 Computation and Language +cmp-lg/9503009 Computation and Language +cmp-lg/9503021 Computation and Language +cmp-lg/9503022 Computation and Language +cmp-lg/9503023 Computation and Language +cmp-lg/9503024 Computation and Language +cmp-lg/9504001 Computation and Language +cmp-lg/9504002 Computation and Language +cmp-lg/9504003 Computation and Language +cmp-lg/9504004 Computation and Language +cmp-lg/9504005 Computation and Language +cmp-lg/9504006 Computation and Language +cmp-lg/9504007 Computation and Language +cmp-lg/9504008 Computation and Language +cmp-lg/9504009 Computation and Language +cmp-lg/9504010 Computation and Language +cmp-lg/9504011 Computation and Language +cmp-lg/9504012 Computation and Language +cmp-lg/9504013 Computation and Language +cmp-lg/9504014 Computation and Language +cmp-lg/9504015 Computation and Language +cmp-lg/9504016 Computation and Language +cmp-lg/9504017 Computation and Language +cmp-lg/9504018 Computation and Language +cmp-lg/9504019 Computation and Language +cmp-lg/9504021 Computation and Language +cmp-lg/9504022 Computation and Language +cmp-lg/9504023 Computation and Language +cmp-lg/9504024 Computation and Language +cmp-lg/9504025 Computation and Language +cmp-lg/9504026 Computation and Language +cmp-lg/9504027 Computation and Language +cmp-lg/9504028 Computation and Language +cmp-lg/9504030 Computation and Language +cmp-lg/9504031 Computation and Language +cmp-lg/9504032 Computation and Language +cmp-lg/9504033 Computation and Language +cmp-lg/9504034 Computation and Language +cmp-lg/9505001 Computation and Language +cmp-lg/9505002 Computation and Language +cmp-lg/9505003 Computation and Language +cmp-lg/9505004 Computation and Language +cmp-lg/9505005 Computation and Language +cmp-lg/9505006 Computation and Language +cmp-lg/9505007 Computation and Language +cmp-lg/9505008 Computation and Language +cmp-lg/9505009 Computation and Language +cmp-lg/9505010 Computation and Language +cmp-lg/9505011 Computation and Language +cmp-lg/9505012 Computation and Language +cmp-lg/9505013 Computation and Language +cmp-lg/9505014 Computation and Language +cmp-lg/9505015 Computation and Language +cmp-lg/9505016 Computation and Language +cmp-lg/9505017 Computation and Language +cmp-lg/9505018 Computation and Language +cmp-lg/9505019 Computation and Language +cmp-lg/9505020 Computation and Language +cmp-lg/9505021 Computation and Language +cmp-lg/9505022 Computation and Language +cmp-lg/9505023 Computation and Language +cmp-lg/9505024 Computation and Language +cmp-lg/9505025 Computation and Language +cmp-lg/9505026 Computation and Language +cmp-lg/9505027 Computation and Language +cmp-lg/9505028 Computation and Language +cmp-lg/9505029 Computation and Language +cmp-lg/9505030 Computation and Language +cmp-lg/9505033 Computation and Language +cmp-lg/9505034 Computation and Language +cmp-lg/9505036 Computation and Language +cmp-lg/9505037 Computation and Language +cmp-lg/9505038 Computation and Language +cmp-lg/9505039 Computation and Language +cmp-lg/9505041 Computation and Language +cmp-lg/9505042 Computation and Language +cmp-lg/9505043 Computation and Language +cmp-lg/9505044 Computation and Language +cmp-lg/9505045 Computation and Language +cmp-lg/9506001 Computation and Language +cmp-lg/9506002 Computation and Language +cmp-lg/9506003 Computation and Language +cmp-lg/9506004 Computation and Language +cmp-lg/9506005 Computation and Language +cmp-lg/9506006 Computation and Language +cmp-lg/9506007 Computation and Language +cmp-lg/9506009 Computation and Language +cmp-lg/9506010 Computation and Language +cmp-lg/9506012 Computation and Language +cmp-lg/9506013 Computation and Language +cmp-lg/9506015 Computation and Language +cmp-lg/9506016 Computation and Language +cmp-lg/9506017 Computation and Language +cmp-lg/9506018 Computation and Language +cmp-lg/9506020 Computation and Language +cmp-lg/9506021 Computation and Language +cmp-lg/9506023 Computation and Language +cmp-lg/9506024 Computation and Language +cmp-lg/9506025 Computation and Language +cmp-lg/9506026 Computation and Language +cmp-lg/9507001 Computation and Language +cmp-lg/9507005 Computation and Language +cmp-lg/9507006 Computation and Language +cmp-lg/9507009 Computation and Language +cmp-lg/9507010 Computation and Language +cmp-lg/9507011 Computation and Language +cmp-lg/9507012 Computation and Language +cmp-lg/9507013 Computation and Language +cmp-lg/9507014 Computation and Language +cmp-lg/9508001 Computation and Language +cmp-lg/9508003 Computation and Language +cmp-lg/9508004 Computation and Language +cmp-lg/9508005 Computation and Language +cmp-lg/9508006 Computation and Language +cmp-lg/9508007 Computation and Language +cmp-lg/9508008 Computation and Language +cmp-lg/9508009 Computation and Language +cmp-lg/9508010 Computation and Language +cmp-lg/9508011 Computation and Language +cmp-lg/9508012 Computation and Language +cmp-lg/9509001 Computation and Language +cmp-lg/9509002 Computation and Language +cmp-lg/9509003 Computation and Language +cmp-lg/9509004 Computation and Language +cmp-lg/9509005 Computation and Language +cmp-lg/9510001 Computation and Language +cmp-lg/9510002 Computation and Language +cmp-lg/9510003 Computation and Language +cmp-lg/9510005 Computation and Language +cmp-lg/9510006 Computation and Language +cmp-lg/9510007 Computation and Language +cmp-lg/9511001 Computation and Language +cmp-lg/9511002 Computation and Language +cmp-lg/9511003 Computation and Language +cmp-lg/9511004 Computation and Language +cmp-lg/9511005 Computation and Language +cmp-lg/9511006 Computation and Language +cmp-lg/9511007 Computation and Language +cmp-lg/9512001 Computation and Language +cmp-lg/9512002 Computation and Language +cmp-lg/9512003 Computation and Language +cmp-lg/9512004 Computation and Language +cmp-lg/9512005 Computation and Language +cmp-lg/9601001 Computation and Language +cmp-lg/9601002 Computation and Language +cmp-lg/9601004 Computation and Language +cmp-lg/9601005 Computation and Language +cmp-lg/9601006 Computation and Language +cmp-lg/9601007 Computation and Language +cmp-lg/9601008 Computation and Language +cmp-lg/9601009 Computation and Language +cmp-lg/9602001 Computation and Language +cmp-lg/9602002 Computation and Language +cmp-lg/9602003 Computation and Language +cmp-lg/9602004 Computation and Language +cmp-lg/9603001 Computation and Language +cmp-lg/9603002 Computation and Language +cmp-lg/9603003 Computation and Language +cmp-lg/9603004 Computation and Language +cmp-lg/9603005 Computation and Language +cmp-lg/9604001 Computation and Language +cmp-lg/9604002 Computation and Language +cmp-lg/9604003 Computation and Language +cmp-lg/9604004 Computation and Language +cmp-lg/9604005 Computation and Language +cmp-lg/9604006 Computation and Language +cmp-lg/9604007 Computation and Language +cmp-lg/9604008 Computation and Language +cmp-lg/9604009 Computation and Language +cmp-lg/9604010 Computation and Language +cmp-lg/9604011 Computation and Language +cmp-lg/9604012 Computation and Language +cmp-lg/9604013 Computation and Language +cmp-lg/9604014 Computation and Language +cmp-lg/9604015 Computation and Language +cmp-lg/9604016 Computation and Language +cmp-lg/9604017 Computation and Language +cmp-lg/9604018 Computation and Language +cmp-lg/9604019 Computation and Language +cmp-lg/9604020 Computation and Language +cmp-lg/9604021 Computation and Language +cmp-lg/9604022 Computation and Language +cmp-lg/9604023 Computation and Language +cmp-lg/9604024 Computation and Language +cmp-lg/9604025 Computation and Language +cmp-lg/9604026 Computation and Language +cmp-lg/9605001 Computation and Language +cmp-lg/9605002 Computation and Language +cmp-lg/9605003 Computation and Language +cmp-lg/9605004 Computation and Language +cmp-lg/9605005 Computation and Language +cmp-lg/9605006 Computation and Language +cmp-lg/9605007 Computation and Language +cmp-lg/9605008 Computation and Language +cmp-lg/9605009 Computation and Language +cmp-lg/9605010 Computation and Language +cmp-lg/9605011 Computation and Language +cmp-lg/9605012 Computation and Language +cmp-lg/9605013 Computation and Language +cmp-lg/9605014 Computation and Language +cmp-lg/9605015 Computation and Language +cmp-lg/9605016 Computation and Language +cmp-lg/9605017 Computation and Language +cmp-lg/9605018 Computation and Language +cmp-lg/9605019 Computation and Language +cmp-lg/9605020 Computation and Language +cmp-lg/9605021 Computation and Language +cmp-lg/9605022 Computation and Language +cmp-lg/9605023 Computation and Language +cmp-lg/9605024 Computation and Language +cmp-lg/9605025 Computation and Language +cmp-lg/9605026 Computation and Language +cmp-lg/9605027 Computation and Language +cmp-lg/9605028 Computation and Language +cmp-lg/9605029 Computation and Language +cmp-lg/9605030 Computation and Language +cmp-lg/9605032 Computation and Language +cmp-lg/9605033 Computation and Language +cmp-lg/9605034 Computation and Language +cmp-lg/9605035 Computation and Language +cmp-lg/9605036 Computation and Language +cmp-lg/9605037 Computation and Language +cmp-lg/9605038 Computation and Language +cmp-lg/9606001 Computation and Language +cmp-lg/9606002 Computation and Language +cmp-lg/9606003 Computation and Language +cmp-lg/9606004 Computation and Language +cmp-lg/9606005 Computation and Language +cmp-lg/9606006 Computation and Language +cmp-lg/9606007 Computation and Language +cmp-lg/9606008 Computation and Language +cmp-lg/9606009 Computation and Language +cmp-lg/9606010 Computation and Language +cmp-lg/9606011 Computation and Language +cmp-lg/9606012 Computation and Language +cmp-lg/9606013 Computation and Language +cmp-lg/9606014 Computation and Language +cmp-lg/9606016 Computation and Language +cmp-lg/9606017 Computation and Language +cmp-lg/9606018 Computation and Language +cmp-lg/9606019 Computation and Language +cmp-lg/9606020 Computation and Language +cmp-lg/9606021 Computation and Language +cmp-lg/9606022 Computation and Language +cmp-lg/9606023 Computation and Language +cmp-lg/9606024 Computation and Language +cmp-lg/9606025 Computation and Language +cmp-lg/9606026 Computation and Language +cmp-lg/9606027 Computation and Language +cmp-lg/9606028 Computation and Language +cmp-lg/9606029 Computation and Language +cmp-lg/9606030 Computation and Language +cmp-lg/9606031 Computation and Language +cmp-lg/9606032 Computation and Language +cmp-lg/9607002 Computation and Language +cmp-lg/9607003 Computation and Language +cmp-lg/9607004 Computation and Language +cmp-lg/9607005 Computation and Language +cmp-lg/9607006 Computation and Language +cmp-lg/9607007 Computation and Language +cmp-lg/9607008 Computation and Language +cmp-lg/9607009 Computation and Language +cmp-lg/9607010 Computation and Language +cmp-lg/9607011 Computation and Language +cmp-lg/9607012 Computation and Language +cmp-lg/9607013 Computation and Language +cmp-lg/9607014 Computation and Language +cmp-lg/9607015 Computation and Language +cmp-lg/9607016 Computation and Language +cmp-lg/9607018 Computation and Language +cmp-lg/9607019 Computation and Language +cmp-lg/9607020 Computation and Language +cmp-lg/9607021 Computation and Language +cmp-lg/9607022 Computation and Language +cmp-lg/9607023 Computation and Language +cmp-lg/9607024 Computation and Language +cmp-lg/9607025 Computation and Language +cmp-lg/9607026 Computation and Language +cmp-lg/9607027 Computation and Language +cmp-lg/9607028 Computation and Language +cmp-lg/9607029 Computation and Language +cmp-lg/9607030 Computation and Language +cmp-lg/9607031 Computation and Language +cmp-lg/9607033 Computation and Language +cmp-lg/9607034 Computation and Language +cmp-lg/9607035 Computation and Language +cmp-lg/9607036 Computation and Language +cmp-lg/9607037 Computation and Language +cmp-lg/9608001 Computation and Language +cmp-lg/9608002 Computation and Language +cmp-lg/9608003 Computation and Language +cmp-lg/9608004 Computation and Language +cmp-lg/9608005 Computation and Language +cmp-lg/9608006 Computation and Language +cmp-lg/9608007 Computation and Language +cmp-lg/9608008 Computation and Language +cmp-lg/9608009 Computation and Language +cmp-lg/9608010 Computation and Language +cmp-lg/9608011 Computation and Language +cmp-lg/9608012 Computation and Language +cmp-lg/9608013 Computation and Language +cmp-lg/9608014 Computation and Language +cmp-lg/9608015 Computation and Language +cmp-lg/9608016 Computation and Language +cmp-lg/9608017 Computation and Language +cmp-lg/9608018 Computation and Language +cmp-lg/9608019 Computation and Language +cmp-lg/9608021 Computation and Language +cmp-lg/9609001 Computation and Language +cmp-lg/9609002 Computation and Language +cmp-lg/9609003 Computation and Language +cmp-lg/9609005 Computation and Language +cmp-lg/9609006 Computation and Language +cmp-lg/9609007 Computation and Language +cmp-lg/9609008 Computation and Language +cmp-lg/9609009 Computation and Language +cmp-lg/9609010 Computation and Language +cmp-lg/9610001 Computation and Language +cmp-lg/9610002 Computation and Language +cmp-lg/9610003 Computation and Language +cmp-lg/9610004 Computation and Language +cmp-lg/9610005 Computation and Language +cmp-lg/9610006 Computation and Language +cmp-lg/9611002 Computation and Language +cmp-lg/9611003 Computation and Language +cmp-lg/9611004 Computation and Language +cmp-lg/9611006 Computation and Language +cmp-lg/9612001 Computation and Language +cmp-lg/9612002 Computation and Language +cmp-lg/9612003 Computation and Language +cmp-lg/9612004 Computation and Language +cmp-lg/9612005 Computation and Language +cmp-lg/9701001 Computation and Language +cmp-lg/9701002 Computation and Language +cmp-lg/9701003 Computation and Language +cmp-lg/9701004 Computation and Language +cmp-lg/9702004 Computation and Language +cmp-lg/9702005 Computation and Language +cmp-lg/9702006 Computation and Language +cmp-lg/9702007 Computation and Language +cmp-lg/9702008 Computation and Language +cmp-lg/9702009 Computation and Language +cmp-lg/9702010 Computation and Language +cmp-lg/9702011 Computation and Language +cmp-lg/9702012 Computation and Language +cmp-lg/9702013 Computation and Language +cmp-lg/9702014 Computation and Language +cmp-lg/9702015 Computation and Language +cmp-lg/9703001 Computation and Language +cmp-lg/9703003 Computation and Language +cmp-lg/9703004 Computation and Language +cmp-lg/9703005 Computation and Language +cmp-lg/9704001 Computation and Language +cmp-lg/9704002 Computation and Language +cmp-lg/9704004 Computation and Language +cmp-lg/9704005 Computation and Language +cmp-lg/9704006 Computation and Language +cmp-lg/9704007 Computation and Language +cmp-lg/9704008 Computation and Language +cmp-lg/9704009 Computation and Language +cmp-lg/9704010 Computation and Language +cmp-lg/9704012 Computation and Language +cmp-lg/9704013 Computation and Language +cmp-lg/9704014 Computation and Language +cmp-lg/9705001 Computation and Language +cmp-lg/9705002 Computation and Language +cmp-lg/9705003 Computation and Language +cmp-lg/9705004 Computation and Language +cmp-lg/9705005 Computation and Language +cmp-lg/9705006 Computation and Language +cmp-lg/9705007 Computation and Language +cmp-lg/9705008 Computation and Language +cmp-lg/9705009 Computation and Language +cmp-lg/9705010 Computation and Language +cmp-lg/9705011 Computation and Language +cmp-lg/9705012 Computation and Language +cmp-lg/9705013 Computation and Language +cmp-lg/9705014 Computation and Language +cmp-lg/9705015 Computation and Language +cmp-lg/9705016 Computation and Language +cmp-lg/9706001 Computation and Language +cmp-lg/9706004 Computation and Language +cmp-lg/9706005 Computation and Language +cmp-lg/9706006 Computation and Language +cmp-lg/9706007 Computation and Language +cmp-lg/9706008 Computation and Language +cmp-lg/9706010 Computation and Language +cmp-lg/9706011 Computation and Language +cmp-lg/9706012 Computation and Language +cmp-lg/9706013 Computation and Language +cmp-lg/9706015 Computation and Language +cmp-lg/9706016 Computation and Language +cmp-lg/9706017 Computation and Language +cmp-lg/9706018 Computation and Language +cmp-lg/9706019 Computation and Language +cmp-lg/9706020 Computation and Language +cmp-lg/9706021 Computation and Language +cmp-lg/9706022 Computation and Language +cmp-lg/9706023 Computation and Language +cmp-lg/9706024 Computation and Language +cmp-lg/9706025 Computation and Language +cmp-lg/9706026 Computation and Language +cmp-lg/9706027 Computation and Language +cmp-lg/9706028 Computation and Language +cmp-lg/9706029 Computation and Language +cmp-lg/9707001 Computation and Language +cmp-lg/9707002 Computation and Language +cmp-lg/9707003 Computation and Language +cmp-lg/9707004 Computation and Language +cmp-lg/9707005 Computation and Language +cmp-lg/9707006 Computation and Language +cmp-lg/9707007 Computation and Language +cmp-lg/9707008 Computation and Language +cmp-lg/9707009 Computation and Language +cmp-lg/9707010 Computation and Language +cmp-lg/9707011 Computation and Language +cmp-lg/9707012 Computation and Language +cmp-lg/9707013 Computation and Language +cmp-lg/9707014 Computation and Language +cmp-lg/9707015 Computation and Language +cmp-lg/9707016 Computation and Language +cmp-lg/9707017 Computation and Language +cmp-lg/9707018 Computation and Language +cmp-lg/9707019 Computation and Language +cmp-lg/9707020 Computation and Language +cmp-lg/9708001 Computation and Language +cmp-lg/9708002 Computation and Language +cmp-lg/9708003 Computation and Language +cmp-lg/9708005 Computation and Language +cmp-lg/9708006 Computation and Language +cmp-lg/9708007 Computation and Language +cmp-lg/9708008 Computation and Language +cmp-lg/9708009 Computation and Language +cmp-lg/9708010 Computation and Language +cmp-lg/9708011 Computation and Language +cmp-lg/9708012 Computation and Language +cmp-lg/9708013 Computation and Language +cmp-lg/9709001 Computation and Language +cmp-lg/9709002 Computation and Language +cmp-lg/9709003 Computation and Language +cmp-lg/9709004 Computation and Language +cmp-lg/9709005 Computation and Language +cmp-lg/9709006 Computation and Language +cmp-lg/9709007 Computation and Language +cmp-lg/9709008 Computation and Language +cmp-lg/9709009 Computation and Language +cmp-lg/9709010 Computation and Language +cmp-lg/9709011 Computation and Language +cmp-lg/9709012 Computation and Language +cmp-lg/9709013 Computation and Language +cmp-lg/9709014 Computation and Language +comp-gas/9302001 Cellular Automata and Lattice Gases +comp-gas/9302003 Cellular Automata and Lattice Gases +comp-gas/9303002 Cellular Automata and Lattice Gases +comp-gas/9304003 Cellular Automata and Lattice Gases +comp-gas/9304004 Cellular Automata and Lattice Gases +comp-gas/9305002 Cellular Automata and Lattice Gases +comp-gas/9306001 Cellular Automata and Lattice Gases +comp-gas/9307001 Cellular Automata and Lattice Gases +comp-gas/9307002 Cellular Automata and Lattice Gases +comp-gas/9307003 Cellular Automata and Lattice Gases +comp-gas/9308002 Cellular Automata and Lattice Gases +comp-gas/9308003 Cellular Automata and Lattice Gases +comp-gas/9310001 Cellular Automata and Lattice Gases +comp-gas/9312001 Cellular Automata and Lattice Gases +comp-gas/9401004 Cellular Automata and Lattice Gases +comp-gas/9403001 Cellular Automata and Lattice Gases +comp-gas/9403002 Cellular Automata and Lattice Gases +comp-gas/9403004 Cellular Automata and Lattice Gases +comp-gas/9403005 Cellular Automata and Lattice Gases +comp-gas/9403006 Cellular Automata and Lattice Gases +comp-gas/9405001 Cellular Automata and Lattice Gases +comp-gas/9405007 Cellular Automata and Lattice Gases +comp-gas/9407002 Cellular Automata and Lattice Gases +comp-gas/9408001 Cellular Automata and Lattice Gases +comp-gas/9411001 Cellular Automata and Lattice Gases +comp-gas/9501007 Cellular Automata and Lattice Gases +comp-gas/9501009 Cellular Automata and Lattice Gases +comp-gas/9505001 Cellular Automata and Lattice Gases +comp-gas/9505003 Cellular Automata and Lattice Gases +comp-gas/9508001 Cellular Automata and Lattice Gases +comp-gas/9509001 Cellular Automata and Lattice Gases +comp-gas/9509002 Cellular Automata and Lattice Gases +comp-gas/9509003 Cellular Automata and Lattice Gases +comp-gas/9509004 Cellular Automata and Lattice Gases +comp-gas/9509005 Cellular Automata and Lattice Gases +comp-gas/9511002 Cellular Automata and Lattice Gases +comp-gas/9511003 Cellular Automata and Lattice Gases +comp-gas/9601001 Cellular Automata and Lattice Gases +comp-gas/9605002 Cellular Automata and Lattice Gases +comp-gas/9607003 Cellular Automata and Lattice Gases +comp-gas/9609003 Cellular Automata and Lattice Gases +comp-gas/9611002 Cellular Automata and Lattice Gases +comp-gas/9704001 Cellular Automata and Lattice Gases +comp-gas/9707001 Cellular Automata and Lattice Gases +cond-mat/9204010 +cond-mat/9204011 +cond-mat/9210006 +cond-mat/9302019 +cond-mat/9303032 +cond-mat/9303039 +cond-mat/9305014 +cond-mat/9305041 +cond-mat/9306002 +cond-mat/9306046 +cond-mat/9307022 +cond-mat/9307053 +cond-mat/9308009 +cond-mat/9308018 Disordered Systems and Neural Networks +cond-mat/9309003 +cond-mat/9309005 +cond-mat/9309029 +cond-mat/9310019 +cond-mat/9310029 +cond-mat/9310040 +cond-mat/9310046 +cond-mat/9310051 +cond-mat/9311033 +cond-mat/9311054 +cond-mat/9312012 +cond-mat/9312025 +cond-mat/9312042 +cond-mat/9312098 +cond-mat/9401005 +cond-mat/9401055 +cond-mat/9401069 +cond-mat/9402008 +cond-mat/9402017 +cond-mat/9402039 +cond-mat/9402076 +cond-mat/9402091 +cond-mat/9403032 +cond-mat/9403088 +cond-mat/9404012 +cond-mat/9404025 +cond-mat/9404049 +cond-mat/9405017 +cond-mat/9405023 +cond-mat/9405027 +cond-mat/9405036 +cond-mat/9405049 +cond-mat/9406030 +cond-mat/9406083 Mesoscale and Nanoscale Physics +cond-mat/9408093 +cond-mat/9409011 +cond-mat/9409027 +cond-mat/9410024 Strongly Correlated Electrons +cond-mat/9410034 +cond-mat/9410039 +cond-mat/9410046 +cond-mat/9410109 +cond-mat/9411007 +cond-mat/9411041 +cond-mat/9411062 +cond-mat/9411112 +cond-mat/9412018 +cond-mat/9412030 +cond-mat/9412053 +cond-mat/9412060 +cond-mat/9412119 +cond-mat/9501038 +cond-mat/9501046 +cond-mat/9501098 +cond-mat/9501139 +cond-mat/9503068 +cond-mat/9503093 +cond-mat/9503125 +cond-mat/9503150 +cond-mat/9503161 +cond-mat/9503169 +cond-mat/9503174 +cond-mat/9504004 +cond-mat/9504028 +cond-mat/9504032 +cond-mat/9504072 +cond-mat/9505002 +cond-mat/9505003 +cond-mat/9505011 +cond-mat/9505032 +cond-mat/9505058 +cond-mat/9505061 +cond-mat/9505069 +cond-mat/9505116 +cond-mat/9505148 +cond-mat/9506014 +cond-mat/9506043 +cond-mat/9506058 +cond-mat/9506071 +cond-mat/9506079 +cond-mat/9506089 +cond-mat/9506128 +cond-mat/9507053 +cond-mat/9507090 +cond-mat/9507128 +cond-mat/9508080 +cond-mat/9509020 +cond-mat/9509025 +cond-mat/9509040 +cond-mat/9509073 Disordered Systems and Neural Networks +cond-mat/9509083 +cond-mat/9509088 +cond-mat/9509155 +cond-mat/9509156 +cond-mat/9510002 +cond-mat/9510020 +cond-mat/9510063 +cond-mat/9510097 +cond-mat/9510103 +cond-mat/9511002 +cond-mat/9511003 +cond-mat/9511029 +cond-mat/9511052 +cond-mat/9511078 +cond-mat/9511091 +cond-mat/9511092 +cond-mat/9511125 +cond-mat/9511131 +cond-mat/9511135 +cond-mat/9511138 +cond-mat/9512003 +cond-mat/9512056 +cond-mat/9512073 +cond-mat/9512142 +cond-mat/9512150 +cond-mat/9512156 +cond-mat/9512161 +cond-mat/9512163 +cond-mat/9512169 Strongly Correlated Electrons +cond-mat/9601010 +cond-mat/9601030 +cond-mat/9601042 +cond-mat/9601092 +cond-mat/9601115 +cond-mat/9601127 +cond-mat/9602011 +cond-mat/9602037 Statistical Mechanics +cond-mat/9602048 +cond-mat/9602065 +cond-mat/9602071 Mesoscale and Nanoscale Physics +cond-mat/9602079 +cond-mat/9602090 +cond-mat/9602099 +cond-mat/9603046 +cond-mat/9603056 +cond-mat/9603079 +cond-mat/9603085 +cond-mat/9603091 +cond-mat/9603094 +cond-mat/9603124 +cond-mat/9603127 +cond-mat/9604030 Statistical Mechanics +cond-mat/9604034 +cond-mat/9604045 +cond-mat/9604056 +cond-mat/9604115 +cond-mat/9604120 +cond-mat/9605014 Mesoscale and Nanoscale Physics +cond-mat/9605035 +cond-mat/9605066 Statistical Mechanics +cond-mat/9605112 +cond-mat/9605114 +cond-mat/9605121 +cond-mat/9605127 +cond-mat/9605140 Disordered Systems and Neural Networks +cond-mat/9605184 +cond-mat/9605188 +cond-mat/9606011 +cond-mat/9606015 Mesoscale and Nanoscale Physics +cond-mat/9606028 +cond-mat/9606065 +cond-mat/9606089 +cond-mat/9606111 Soft Condensed Matter +cond-mat/9606219 +cond-mat/9607009 +cond-mat/9607020 +cond-mat/9607031 +cond-mat/9607066 +cond-mat/9607103 Disordered Systems and Neural Networks +cond-mat/9607147 +cond-mat/9607163 +cond-mat/9607193 +cond-mat/9607202 Statistical Mechanics +cond-mat/9607209 +cond-mat/9608011 +cond-mat/9608019 +cond-mat/9608054 +cond-mat/9608067 +cond-mat/9608074 +cond-mat/9608127 +cond-mat/9609100 +cond-mat/9609115 +cond-mat/9609126 +cond-mat/9609168 +cond-mat/9609172 +cond-mat/9609183 +cond-mat/9609239 +cond-mat/9609250 +cond-mat/9609252 +cond-mat/9609291 +cond-mat/9610017 Statistical Mechanics +cond-mat/9610019 Statistical Mechanics +cond-mat/9610025 Mesoscale and Nanoscale Physics +cond-mat/9610031 Strongly Correlated Electrons +cond-mat/9610037 Mesoscale and Nanoscale Physics +cond-mat/9610041 Statistical Mechanics +cond-mat/9610042 Soft Condensed Matter +cond-mat/9610045 Materials Science +cond-mat/9610056 Strongly Correlated Electrons +cond-mat/9610058 Strongly Correlated Electrons +cond-mat/9610065 Superconductivity +cond-mat/9610070 Soft Condensed Matter +cond-mat/9610083 Superconductivity +cond-mat/9610095 Statistical Mechanics +cond-mat/9610103 Statistical Mechanics +cond-mat/9610104 Superconductivity +cond-mat/9610113 Soft Condensed Matter +cond-mat/9610130 Materials Science +cond-mat/9610131 +cond-mat/9610140 Superconductivity +cond-mat/9610153 Mesoscale and Nanoscale Physics +cond-mat/9610173 Statistical Mechanics +cond-mat/9610183 Materials Science +cond-mat/9610190 Statistical Mechanics +cond-mat/9610193 Strongly Correlated Electrons +cond-mat/9610203 Statistical Mechanics +cond-mat/9610204 Mesoscale and Nanoscale Physics +cond-mat/9610215 Statistical Mechanics +cond-mat/9610219 Strongly Correlated Electrons +cond-mat/9610223 Superconductivity +cond-mat/9611002 Mesoscale and Nanoscale Physics +cond-mat/9611012 Statistical Mechanics +cond-mat/9611024 +cond-mat/9611032 Strongly Correlated Electrons +cond-mat/9611050 Superconductivity +cond-mat/9611057 Statistical Mechanics +cond-mat/9611060 Disordered Systems and Neural Networks +cond-mat/9611064 Strongly Correlated Electrons +cond-mat/9611065 Statistical Mechanics +cond-mat/9611066 Soft Condensed Matter +cond-mat/9611070 Superconductivity +cond-mat/9611079 Mesoscale and Nanoscale Physics +cond-mat/9611083 Superconductivity +cond-mat/9611087 Mesoscale and Nanoscale Physics +cond-mat/9611090 +cond-mat/9611095 Materials Science +cond-mat/9611101 Statistical Mechanics +cond-mat/9611105 Statistical Mechanics +cond-mat/9611117 Statistical Mechanics +cond-mat/9611119 Materials Science +cond-mat/9611124 Materials Science +cond-mat/9611127 Mesoscale and Nanoscale Physics +cond-mat/9611132 Strongly Correlated Electrons +cond-mat/9611137 Mesoscale and Nanoscale Physics +cond-mat/9611138 Strongly Correlated Electrons +cond-mat/9611140 Mesoscale and Nanoscale Physics +cond-mat/9611152 Mesoscale and Nanoscale Physics +cond-mat/9611162 Mesoscale and Nanoscale Physics +cond-mat/9611171 Statistical Mechanics +cond-mat/9611177 Superconductivity +cond-mat/9611184 Mesoscale and Nanoscale Physics +cond-mat/9611190 Mesoscale and Nanoscale Physics +cond-mat/9611191 Materials Science +cond-mat/9611219 Statistical Mechanics +cond-mat/9611220 Materials Science +cond-mat/9611221 Statistical Mechanics +cond-mat/9611225 Strongly Correlated Electrons +cond-mat/9611230 Disordered Systems and Neural Networks +cond-mat/9611241 Materials Science +cond-mat/9612003 Statistical Mechanics +cond-mat/9612004 Materials Science +cond-mat/9612008 Mesoscale and Nanoscale Physics +cond-mat/9612010 Disordered Systems and Neural Networks +cond-mat/9612015 Disordered Systems and Neural Networks +cond-mat/9612016 Statistical Mechanics +cond-mat/9612017 Mesoscale and Nanoscale Physics +cond-mat/9612026 Materials Science +cond-mat/9612032 Superconductivity +cond-mat/9612033 Strongly Correlated Electrons +cond-mat/9612034 Disordered Systems and Neural Networks +cond-mat/9612041 Strongly Correlated Electrons +cond-mat/9612051 Materials Science +cond-mat/9612055 Statistical Mechanics +cond-mat/9612060 +cond-mat/9612063 Mesoscale and Nanoscale Physics +cond-mat/9612071 Disordered Systems and Neural Networks +cond-mat/9612077 Statistical Mechanics +cond-mat/9612085 Soft Condensed Matter +cond-mat/9612087 Strongly Correlated Electrons +cond-mat/9612089 Strongly Correlated Electrons +cond-mat/9612094 Materials Science +cond-mat/9612096 Materials Science +cond-mat/9612103 Statistical Mechanics +cond-mat/9612104 Materials Science +cond-mat/9612107 Materials Science +cond-mat/9612114 Mesoscale and Nanoscale Physics +cond-mat/9612117 Statistical Mechanics +cond-mat/9612122 Disordered Systems and Neural Networks +cond-mat/9612126 Mesoscale and Nanoscale Physics +cond-mat/9612134 Strongly Correlated Electrons +cond-mat/9612135 Superconductivity +cond-mat/9612152 Soft Condensed Matter +cond-mat/9612154 Materials Science +cond-mat/9612160 Strongly Correlated Electrons +cond-mat/9612162 Mesoscale and Nanoscale Physics +cond-mat/9612169 Soft Condensed Matter +cond-mat/9612173 Mesoscale and Nanoscale Physics +cond-mat/9612177 Mesoscale and Nanoscale Physics +cond-mat/9612179 Mesoscale and Nanoscale Physics +cond-mat/9612183 Statistical Mechanics +cond-mat/9612185 +cond-mat/9612186 Statistical Mechanics +cond-mat/9612196 Statistical Mechanics +cond-mat/9612215 Strongly Correlated Electrons +cond-mat/9612222 Soft Condensed Matter +cond-mat/9612229 Statistical Mechanics +cond-mat/9612231 Superconductivity +cond-mat/9612245 Strongly Correlated Electrons +cond-mat/9612253 +cond-mat/9701005 Strongly Correlated Electrons +cond-mat/9701015 Disordered Systems and Neural Networks +cond-mat/9701026 Mesoscale and Nanoscale Physics +cond-mat/9701031 Disordered Systems and Neural Networks +cond-mat/9701032 Disordered Systems and Neural Networks +cond-mat/9701040 Soft Condensed Matter +cond-mat/9701048 Mesoscale and Nanoscale Physics +cond-mat/9701059 Mesoscale and Nanoscale Physics +cond-mat/9701068 Disordered Systems and Neural Networks +cond-mat/9701073 Strongly Correlated Electrons +cond-mat/9701074 Superconductivity +cond-mat/9701082 Mesoscale and Nanoscale Physics +cond-mat/9701093 Strongly Correlated Electrons +cond-mat/9701097 Strongly Correlated Electrons +cond-mat/9701105 Mesoscale and Nanoscale Physics +cond-mat/9701111 Strongly Correlated Electrons +cond-mat/9701120 Mesoscale and Nanoscale Physics +cond-mat/9701121 Mesoscale and Nanoscale Physics +cond-mat/9701128 Mesoscale and Nanoscale Physics +cond-mat/9701137 Strongly Correlated Electrons +cond-mat/9701165 Disordered Systems and Neural Networks +cond-mat/9701176 Strongly Correlated Electrons +cond-mat/9701185 +cond-mat/9701190 Disordered Systems and Neural Networks +cond-mat/9701201 +cond-mat/9701206 Strongly Correlated Electrons +cond-mat/9701207 Statistical Mechanics +cond-mat/9701208 Superconductivity +cond-mat/9701222 Statistical Mechanics +cond-mat/9702005 Statistical Mechanics +cond-mat/9702006 Statistical Mechanics +cond-mat/9702007 Strongly Correlated Electrons +cond-mat/9702009 Strongly Correlated Electrons +cond-mat/9702012 Statistical Mechanics +cond-mat/9702031 Disordered Systems and Neural Networks +cond-mat/9702050 Materials Science +cond-mat/9702061 Statistical Mechanics +cond-mat/9702069 Disordered Systems and Neural Networks +cond-mat/9702070 Disordered Systems and Neural Networks +cond-mat/9702072 Disordered Systems and Neural Networks +cond-mat/9702073 Statistical Mechanics +cond-mat/9702077 Strongly Correlated Electrons +cond-mat/9702087 Superconductivity +cond-mat/9702090 Materials Science +cond-mat/9702092 Statistical Mechanics +cond-mat/9702111 Disordered Systems and Neural Networks +cond-mat/9702122 Soft Condensed Matter +cond-mat/9702125 Strongly Correlated Electrons +cond-mat/9702134 Statistical Mechanics +cond-mat/9702136 Soft Condensed Matter +cond-mat/9702138 Statistical Mechanics +cond-mat/9702147 Strongly Correlated Electrons +cond-mat/9702150 Mesoscale and Nanoscale Physics +cond-mat/9702156 +cond-mat/9702167 Superconductivity +cond-mat/9702179 Superconductivity +cond-mat/9702181 +cond-mat/9702192 Statistical Mechanics +cond-mat/9702198 Materials Science +cond-mat/9702204 Disordered Systems and Neural Networks +cond-mat/9702211 Mesoscale and Nanoscale Physics +cond-mat/9702234 Strongly Correlated Electrons +cond-mat/9702239 Mesoscale and Nanoscale Physics +cond-mat/9702242 +cond-mat/9702244 Mesoscale and Nanoscale Physics +cond-mat/9702246 Disordered Systems and Neural Networks +cond-mat/9702247 Strongly Correlated Electrons +cond-mat/9703005 Strongly Correlated Electrons +cond-mat/9703014 Mesoscale and Nanoscale Physics +cond-mat/9703027 Materials Science +cond-mat/9703030 Materials Science +cond-mat/9703032 Disordered Systems and Neural Networks +cond-mat/9703034 +cond-mat/9703043 Statistical Mechanics +cond-mat/9703048 Superconductivity +cond-mat/9703049 Strongly Correlated Electrons +cond-mat/9703054 Materials Science +cond-mat/9703072 Superconductivity +cond-mat/9703078 +cond-mat/9703080 Mesoscale and Nanoscale Physics +cond-mat/9703085 Strongly Correlated Electrons +cond-mat/9703086 Materials Science +cond-mat/9703100 Superconductivity +cond-mat/9703101 Strongly Correlated Electrons +cond-mat/9703124 Superconductivity +cond-mat/9703130 +cond-mat/9703140 Superconductivity +cond-mat/9703169 Mesoscale and Nanoscale Physics +cond-mat/9703184 Mesoscale and Nanoscale Physics +cond-mat/9703192 Superconductivity +cond-mat/9703198 Statistical Mechanics +cond-mat/9703207 Strongly Correlated Electrons +cond-mat/9703210 +cond-mat/9703218 Statistical Mechanics +cond-mat/9703219 Disordered Systems and Neural Networks +cond-mat/9703227 Soft Condensed Matter +cond-mat/9703242 Statistical Mechanics +cond-mat/9703243 Statistical Mechanics +cond-mat/9703255 Mesoscale and Nanoscale Physics +cond-mat/9704001 Strongly Correlated Electrons +cond-mat/9704028 Strongly Correlated Electrons +cond-mat/9704036 Statistical Mechanics +cond-mat/9704054 Soft Condensed Matter +cond-mat/9704059 Statistical Mechanics +cond-mat/9704062 Superconductivity +cond-mat/9704085 Soft Condensed Matter +cond-mat/9704087 Statistical Mechanics +cond-mat/9704089 Disordered Systems and Neural Networks +cond-mat/9704105 +cond-mat/9704106 +cond-mat/9704116 Superconductivity +cond-mat/9704125 Superconductivity +cond-mat/9704129 Disordered Systems and Neural Networks +cond-mat/9704138 Strongly Correlated Electrons +cond-mat/9704139 Statistical Mechanics +cond-mat/9704141 Statistical Mechanics +cond-mat/9704151 Mesoscale and Nanoscale Physics +cond-mat/9704164 Superconductivity +cond-mat/9704176 Superconductivity +cond-mat/9704200 Strongly Correlated Electrons +cond-mat/9704201 Materials Science +cond-mat/9704203 Strongly Correlated Electrons +cond-mat/9704208 Statistical Mechanics +cond-mat/9704215 Statistical Mechanics +cond-mat/9704222 +cond-mat/9704227 Disordered Systems and Neural Networks +cond-mat/9704230 Mesoscale and Nanoscale Physics +cond-mat/9704245 Strongly Correlated Electrons +cond-mat/9704249 Strongly Correlated Electrons +cond-mat/9705001 Mesoscale and Nanoscale Physics +cond-mat/9705004 Materials Science +cond-mat/9705012 Mesoscale and Nanoscale Physics +cond-mat/9705013 Strongly Correlated Electrons +cond-mat/9705029 Statistical Mechanics +cond-mat/9705033 Strongly Correlated Electrons +cond-mat/9705039 Superconductivity +cond-mat/9705045 Statistical Mechanics +cond-mat/9705046 Statistical Mechanics +cond-mat/9705057 Strongly Correlated Electrons +cond-mat/9705061 Superconductivity +cond-mat/9705066 Statistical Mechanics +cond-mat/9705072 Statistical Mechanics +cond-mat/9705077 +cond-mat/9705096 Disordered Systems and Neural Networks +cond-mat/9705101 Statistical Mechanics +cond-mat/9705116 Mesoscale and Nanoscale Physics +cond-mat/9705118 Statistical Mechanics +cond-mat/9705119 Strongly Correlated Electrons +cond-mat/9705120 Statistical Mechanics +cond-mat/9705122 Strongly Correlated Electrons +cond-mat/9705123 Materials Science +cond-mat/9705128 Superconductivity +cond-mat/9705130 Materials Science +cond-mat/9705140 Strongly Correlated Electrons +cond-mat/9705143 Soft Condensed Matter +cond-mat/9705159 Disordered Systems and Neural Networks +cond-mat/9705160 Statistical Mechanics +cond-mat/9705164 Soft Condensed Matter +cond-mat/9705171 Statistical Mechanics +cond-mat/9705175 Statistical Mechanics +cond-mat/9705179 Strongly Correlated Electrons +cond-mat/9705188 Mesoscale and Nanoscale Physics +cond-mat/9705189 Materials Science +cond-mat/9705191 Superconductivity +cond-mat/9705197 Superconductivity +cond-mat/9705199 Strongly Correlated Electrons +cond-mat/9705200 Soft Condensed Matter +cond-mat/9705211 Soft Condensed Matter +cond-mat/9705212 Materials Science +cond-mat/9705215 Statistical Mechanics +cond-mat/9705219 +cond-mat/9705235 Statistical Mechanics +cond-mat/9705241 Strongly Correlated Electrons +cond-mat/9705243 Disordered Systems and Neural Networks +cond-mat/9705267 Mesoscale and Nanoscale Physics +cond-mat/9705270 Disordered Systems and Neural Networks +cond-mat/9705272 Strongly Correlated Electrons +cond-mat/9705279 Strongly Correlated Electrons +cond-mat/9705281 Mesoscale and Nanoscale Physics +cond-mat/9705282 Superconductivity +cond-mat/9705293 Soft Condensed Matter +cond-mat/9705295 Statistical Mechanics +cond-mat/9705297 Statistical Mechanics +cond-mat/9706003 Statistical Mechanics +cond-mat/9706011 Statistical Mechanics +cond-mat/9706016 Mesoscale and Nanoscale Physics +cond-mat/9706020 Statistical Mechanics +cond-mat/9706028 Disordered Systems and Neural Networks +cond-mat/9706042 Disordered Systems and Neural Networks +cond-mat/9706059 +cond-mat/9706061 Mesoscale and Nanoscale Physics +cond-mat/9706066 Mesoscale and Nanoscale Physics +cond-mat/9706068 Strongly Correlated Electrons +cond-mat/9706073 Strongly Correlated Electrons +cond-mat/9706080 Disordered Systems and Neural Networks +cond-mat/9706087 Superconductivity +cond-mat/9706098 Statistical Mechanics +cond-mat/9706106 Statistical Mechanics +cond-mat/9706108 Superconductivity +cond-mat/9706109 Strongly Correlated Electrons +cond-mat/9706122 Statistical Mechanics +cond-mat/9706123 Strongly Correlated Electrons +cond-mat/9706125 Disordered Systems and Neural Networks +cond-mat/9706145 Superconductivity +cond-mat/9706156 Statistical Mechanics +cond-mat/9706161 Superconductivity +cond-mat/9706176 Soft Condensed Matter +cond-mat/9706193 Statistical Mechanics +cond-mat/9706201 Strongly Correlated Electrons +cond-mat/9706202 Statistical Mechanics +cond-mat/9706235 Strongly Correlated Electrons +cond-mat/9706236 Mesoscale and Nanoscale Physics +cond-mat/9706238 Statistical Mechanics +cond-mat/9706248 Materials Science +cond-mat/9706266 Statistical Mechanics +cond-mat/9706285 Superconductivity +cond-mat/9706292 Mesoscale and Nanoscale Physics +cond-mat/9706294 Materials Science +cond-mat/9706301 Statistical Mechanics +cond-mat/9707001 Statistical Mechanics +cond-mat/9707002 Strongly Correlated Electrons +cond-mat/9707004 Superconductivity +cond-mat/9707018 Superconductivity +cond-mat/9707021 Soft Condensed Matter +cond-mat/9707023 Statistical Mechanics +cond-mat/9707033 Materials Science +cond-mat/9707038 Superconductivity +cond-mat/9707043 Soft Condensed Matter +cond-mat/9707051 Strongly Correlated Electrons +cond-mat/9707053 Strongly Correlated Electrons +cond-mat/9707055 Mesoscale and Nanoscale Physics +cond-mat/9707061 Strongly Correlated Electrons +cond-mat/9707093 Strongly Correlated Electrons +cond-mat/9707097 Strongly Correlated Electrons +cond-mat/9707100 +cond-mat/9707106 Materials Science +cond-mat/9707136 Superconductivity +cond-mat/9707140 Superconductivity +cond-mat/9707146 Statistical Mechanics +cond-mat/9707157 Materials Science +cond-mat/9707170 Materials Science +cond-mat/9707171 Materials Science +cond-mat/9707176 Materials Science +cond-mat/9707181 Materials Science +cond-mat/9707182 Materials Science +cond-mat/9707188 Materials Science +cond-mat/9707189 Materials Science +cond-mat/9707193 Statistical Mechanics +cond-mat/9707194 Mesoscale and Nanoscale Physics +cond-mat/9707208 Mesoscale and Nanoscale Physics +cond-mat/9707217 Materials Science +cond-mat/9707223 Strongly Correlated Electrons +cond-mat/9707225 Superconductivity +cond-mat/9707228 Statistical Mechanics +cond-mat/9707233 Strongly Correlated Electrons +cond-mat/9707234 Mesoscale and Nanoscale Physics +cond-mat/9707255 Statistical Mechanics +cond-mat/9707265 Materials Science +cond-mat/9707267 Strongly Correlated Electrons +cond-mat/9707280 +cond-mat/9707284 Soft Condensed Matter +cond-mat/9707287 Statistical Mechanics +cond-mat/9707288 Disordered Systems and Neural Networks +cond-mat/9707295 Strongly Correlated Electrons +cond-mat/9707303 Strongly Correlated Electrons +cond-mat/9707310 Mesoscale and Nanoscale Physics +cond-mat/9707316 Strongly Correlated Electrons +cond-mat/9707319 +cond-mat/9707320 Mesoscale and Nanoscale Physics +cond-mat/9707331 Mesoscale and Nanoscale Physics +cond-mat/9707334 Statistical Mechanics +cond-mat/9707335 Superconductivity +cond-mat/9707338 Materials Science +cond-mat/9707339 Strongly Correlated Electrons +cond-mat/9707341 Disordered Systems and Neural Networks +cond-mat/9708003 Strongly Correlated Electrons +cond-mat/9708009 Strongly Correlated Electrons +cond-mat/9708015 Statistical Mechanics +cond-mat/9708022 Disordered Systems and Neural Networks +cond-mat/9708023 Soft Condensed Matter +cond-mat/9708033 Soft Condensed Matter +cond-mat/9708041 Mesoscale and Nanoscale Physics +cond-mat/9708044 Soft Condensed Matter +cond-mat/9708050 Superconductivity +cond-mat/9708067 Mesoscale and Nanoscale Physics +cond-mat/9708078 Statistical Mechanics +cond-mat/9708084 Superconductivity +cond-mat/9708096 Disordered Systems and Neural Networks +cond-mat/9708101 Statistical Mechanics +cond-mat/9708102 Materials Science +cond-mat/9708109 Mesoscale and Nanoscale Physics +cond-mat/9708119 Superconductivity +cond-mat/9708121 Statistical Mechanics +cond-mat/9708123 Statistical Mechanics +cond-mat/9708124 Materials Science +cond-mat/9708125 Strongly Correlated Electrons +cond-mat/9708131 Soft Condensed Matter +cond-mat/9708134 Materials Science +cond-mat/9708146 Materials Science +cond-mat/9708149 Superconductivity +cond-mat/9708155 Statistical Mechanics +cond-mat/9708157 Materials Science +cond-mat/9708163 Mesoscale and Nanoscale Physics +cond-mat/9708184 Disordered Systems and Neural Networks +cond-mat/9708186 Statistical Mechanics +cond-mat/9708210 Soft Condensed Matter +cond-mat/9708223 Soft Condensed Matter +cond-mat/9709001 Mesoscale and Nanoscale Physics +cond-mat/9709008 Statistical Mechanics +cond-mat/9709019 Statistical Mechanics +cond-mat/9709027 Statistical Mechanics +cond-mat/9709029 Strongly Correlated Electrons +cond-mat/9709045 Statistical Mechanics +cond-mat/9709046 Statistical Mechanics +cond-mat/9709053 Statistical Mechanics +cond-mat/9709060 Strongly Correlated Electrons +cond-mat/9709061 Superconductivity +cond-mat/9709070 Mesoscale and Nanoscale Physics +cond-mat/9709081 Mesoscale and Nanoscale Physics +cond-mat/9709086 Strongly Correlated Electrons +cond-mat/9709087 Strongly Correlated Electrons +cond-mat/9709094 +cond-mat/9709107 Superconductivity +cond-mat/9709114 Materials Science +cond-mat/9709115 +cond-mat/9709117 Statistical Mechanics +cond-mat/9709128 Mesoscale and Nanoscale Physics +cond-mat/9709133 Soft Condensed Matter +cond-mat/9709135 +cond-mat/9709136 Statistical Mechanics +cond-mat/9709143 Strongly Correlated Electrons +cond-mat/9709144 Strongly Correlated Electrons +cond-mat/9709152 Materials Science +cond-mat/9709159 Superconductivity +cond-mat/9709165 Disordered Systems and Neural Networks +cond-mat/9709177 Soft Condensed Matter +cond-mat/9709178 Superconductivity +cond-mat/9709183 Soft Condensed Matter +cond-mat/9709185 Materials Science +cond-mat/9709188 Materials Science +cond-mat/9709189 Strongly Correlated Electrons +cond-mat/9709194 Materials Science +cond-mat/9709195 Superconductivity +cond-mat/9709200 Disordered Systems and Neural Networks +cond-mat/9709201 +cond-mat/9709205 Soft Condensed Matter +cond-mat/9709207 Statistical Mechanics +cond-mat/9709209 Mesoscale and Nanoscale Physics +cond-mat/9709211 Materials Science +cond-mat/9709230 Superconductivity +cond-mat/9709233 Mesoscale and Nanoscale Physics +cond-mat/9709237 Strongly Correlated Electrons +cond-mat/9709241 +cond-mat/9709243 Mesoscale and Nanoscale Physics +cond-mat/9709244 Statistical Mechanics +cond-mat/9709248 Superconductivity +cond-mat/9709249 Superconductivity +cond-mat/9709251 Mesoscale and Nanoscale Physics +cond-mat/9709256 Strongly Correlated Electrons +cond-mat/9709261 Mesoscale and Nanoscale Physics +cond-mat/9709266 Strongly Correlated Electrons +cond-mat/9709268 +cond-mat/9709275 Materials Science +cond-mat/9709276 Mesoscale and Nanoscale Physics +cond-mat/9709278 Superconductivity +cond-mat/9709280 Mesoscale and Nanoscale Physics +cond-mat/9709281 Mesoscale and Nanoscale Physics +cond-mat/9709284 Strongly Correlated Electrons +cond-mat/9709326 Statistical Mechanics +cond-mat/9709331 +cond-mat/9709333 Strongly Correlated Electrons +cond-mat/9709343 Soft Condensed Matter +cond-mat/9709347 Superconductivity +cs/9301101 Logic in Computer Science +cs/9301102 Logic in Computer Science +cs/9301104 Logic in Computer Science +cs/9301106 Logic in Computer Science +cs/9301107 Logic in Computer Science +cs/9301111 Computational Complexity +cs/9301112 Graphics +cs/9301113 Computational Complexity +cs/9301114 General Literature +cs/9301115 Data Structures and Algorithms +cs/9301116 Data Structures and Algorithms +cs/9308101 Artificial Intelligence +cs/9308102 Artificial Intelligence +cs/9309101 Artificial Intelligence +cs/9311101 Artificial Intelligence +cs/9311103 Logic in Computer Science +cs/9401102 Programming Languages +cs/9402102 Artificial Intelligence +cs/9403101 Artificial Intelligence +cs/9408102 Artificial Intelligence +cs/9408103 Artificial Intelligence +cs/9501103 Artificial Intelligence +cs/9504101 Artificial Intelligence +cs/9506102 Artificial Intelligence +cs/9511102 Logic in Computer Science +cs/9602101 Artificial Intelligence +cs/9605101 Artificial Intelligence +cs/9608104 Artificial Intelligence +cs/9608105 Data Structures and Algorithms +cs/9609102 Artificial Intelligence +cs/9705102 Artificial Intelligence +cs/9706101 Artificial Intelligence +cs/9707101 Artificial Intelligence +cs/9707102 Artificial Intelligence +dg-ga/9406001 Differential Geometry +dg-ga/9406002 Differential Geometry +dg-ga/9406003 Differential Geometry +dg-ga/9406004 Differential Geometry +dg-ga/9406005 Differential Geometry +dg-ga/9406006 Differential Geometry +dg-ga/9406007 Differential Geometry +dg-ga/9407001 Differential Geometry +dg-ga/9407002 Differential Geometry +dg-ga/9407003 Differential Geometry +dg-ga/9407004 Differential Geometry +dg-ga/9407006 Differential Geometry +dg-ga/9407007 Differential Geometry +dg-ga/9407008 Differential Geometry +dg-ga/9407009 Differential Geometry +dg-ga/9407010 Differential Geometry +dg-ga/9407011 Differential Geometry +dg-ga/9407012 Differential Geometry +dg-ga/9407013 Differential Geometry +dg-ga/9407014 Differential Geometry +dg-ga/9407015 Differential Geometry +dg-ga/9408001 Differential Geometry +dg-ga/9408004 Differential Geometry +dg-ga/9409001 Differential Geometry +dg-ga/9409002 Differential Geometry +dg-ga/9409003 Differential Geometry +dg-ga/9409004 Differential Geometry +dg-ga/9410001 Differential Geometry +dg-ga/9410003 Differential Geometry +dg-ga/9410005 Differential Geometry +dg-ga/9410006 Differential Geometry +dg-ga/9410007 Differential Geometry +dg-ga/9411001 Differential Geometry +dg-ga/9411003 Differential Geometry +dg-ga/9411004 Differential Geometry +dg-ga/9411005 Differential Geometry +dg-ga/9411006 Differential Geometry +dg-ga/9411007 Differential Geometry +dg-ga/9411008 Differential Geometry +dg-ga/9411009 Differential Geometry +dg-ga/9411010 Differential Geometry +dg-ga/9411012 Differential Geometry +dg-ga/9411013 Differential Geometry +dg-ga/9411014 Differential Geometry +dg-ga/9411015 Differential Geometry +dg-ga/9412001 Differential Geometry +dg-ga/9412002 Differential Geometry +dg-ga/9412003 Differential Geometry +dg-ga/9412004 Differential Geometry +dg-ga/9412005 Differential Geometry +dg-ga/9412006 Differential Geometry +dg-ga/9412007 Differential Geometry +dg-ga/9501006 Differential Geometry +dg-ga/9502001 Differential Geometry +dg-ga/9502002 Differential Geometry +dg-ga/9502003 Differential Geometry +dg-ga/9503003 Differential Geometry +dg-ga/9503004 Differential Geometry +dg-ga/9503006 Differential Geometry +dg-ga/9503007 Differential Geometry +dg-ga/9503008 Differential Geometry +dg-ga/9503009 Differential Geometry +dg-ga/9503010 Differential Geometry +dg-ga/9503011 Differential Geometry +dg-ga/9503012 Differential Geometry +dg-ga/9503014 Differential Geometry +dg-ga/9503015 Differential Geometry +dg-ga/9504001 Differential Geometry +dg-ga/9504002 Differential Geometry +dg-ga/9504003 Differential Geometry +dg-ga/9505001 Differential Geometry +dg-ga/9505002 Differential Geometry +dg-ga/9505003 Differential Geometry +dg-ga/9505005 Differential Geometry +dg-ga/9505007 Differential Geometry +dg-ga/9506002 Differential Geometry +dg-ga/9506003 Differential Geometry +dg-ga/9506004 Differential Geometry +dg-ga/9506005 Differential Geometry +dg-ga/9506006 Differential Geometry +dg-ga/9506007 Differential Geometry +dg-ga/9506008 Differential Geometry +dg-ga/9506009 Differential Geometry +dg-ga/9506011 Differential Geometry +dg-ga/9506012 Differential Geometry +dg-ga/9507001 Differential Geometry +dg-ga/9507002 Differential Geometry +dg-ga/9507003 Differential Geometry +dg-ga/9507004 Differential Geometry +dg-ga/9507005 Differential Geometry +dg-ga/9508001 Differential Geometry +dg-ga/9508002 Differential Geometry +dg-ga/9508003 Differential Geometry +dg-ga/9508004 Differential Geometry +dg-ga/9508007 Differential Geometry +dg-ga/9508008 Differential Geometry +dg-ga/9508010 Differential Geometry +dg-ga/9508011 Differential Geometry +dg-ga/9508012 Differential Geometry +dg-ga/9508013 Differential Geometry +dg-ga/9509001 Differential Geometry +dg-ga/9509002 Differential Geometry +dg-ga/9509004 Differential Geometry +dg-ga/9509005 Differential Geometry +dg-ga/9510001 Differential Geometry +dg-ga/9510002 Differential Geometry +dg-ga/9510003 Differential Geometry +dg-ga/9510004 Differential Geometry +dg-ga/9510006 Differential Geometry +dg-ga/9510007 Differential Geometry +dg-ga/9510009 Differential Geometry +dg-ga/9510010 Differential Geometry +dg-ga/9511001 Differential Geometry +dg-ga/9511002 Differential Geometry +dg-ga/9511003 Differential Geometry +dg-ga/9511004 Differential Geometry +dg-ga/9511005 Differential Geometry +dg-ga/9511006 Differential Geometry +dg-ga/9511007 Differential Geometry +dg-ga/9511008 Differential Geometry +dg-ga/9511009 Differential Geometry +dg-ga/9511010 Differential Geometry +dg-ga/9511011 Differential Geometry +dg-ga/9511012 Differential Geometry +dg-ga/9511013 Differential Geometry +dg-ga/9511014 Differential Geometry +dg-ga/9511015 Differential Geometry +dg-ga/9511016 Differential Geometry +dg-ga/9511017 Differential Geometry +dg-ga/9511018 Differential Geometry +dg-ga/9512001 Differential Geometry +dg-ga/9512002 Differential Geometry +dg-ga/9512003 Differential Geometry +dg-ga/9512004 Differential Geometry +dg-ga/9512005 Differential Geometry +dg-ga/9512006 Differential Geometry +dg-ga/9512007 Differential Geometry +dg-ga/9512008 Differential Geometry +dg-ga/9512009 Differential Geometry +dg-ga/9512010 Differential Geometry +dg-ga/9512012 Differential Geometry +dg-ga/9601001 Differential Geometry +dg-ga/9601002 Differential Geometry +dg-ga/9601003 Differential Geometry +dg-ga/9601004 Differential Geometry +dg-ga/9601005 Differential Geometry +dg-ga/9601006 Differential Geometry +dg-ga/9601007 Differential Geometry +dg-ga/9601008 Differential Geometry +dg-ga/9601009 Differential Geometry +dg-ga/9601011 Differential Geometry +dg-ga/9602001 Differential Geometry +dg-ga/9602002 Differential Geometry +dg-ga/9602003 Differential Geometry +dg-ga/9602004 Differential Geometry +dg-ga/9602005 Differential Geometry +dg-ga/9602006 Differential Geometry +dg-ga/9602008 Differential Geometry +dg-ga/9602009 Differential Geometry +dg-ga/9602011 Differential Geometry +dg-ga/9602012 Differential Geometry +dg-ga/9603001 Differential Geometry +dg-ga/9603002 Differential Geometry +dg-ga/9603003 Differential Geometry +dg-ga/9603004 Differential Geometry +dg-ga/9603005 Differential Geometry +dg-ga/9603006 Differential Geometry +dg-ga/9603007 Differential Geometry +dg-ga/9603008 Differential Geometry +dg-ga/9603009 Differential Geometry +dg-ga/9603010 Differential Geometry +dg-ga/9603011 Differential Geometry +dg-ga/9603012 Differential Geometry +dg-ga/9603013 Differential Geometry +dg-ga/9603014 Differential Geometry +dg-ga/9603016 Differential Geometry +dg-ga/9603017 Differential Geometry +dg-ga/9604001 Differential Geometry +dg-ga/9604002 Differential Geometry +dg-ga/9604004 Differential Geometry +dg-ga/9604005 Differential Geometry +dg-ga/9604006 Differential Geometry +dg-ga/9604007 Differential Geometry +dg-ga/9604008 Differential Geometry +dg-ga/9605002 Differential Geometry +dg-ga/9605003 Differential Geometry +dg-ga/9605004 Differential Geometry +dg-ga/9605005 Differential Geometry +dg-ga/9605007 Differential Geometry +dg-ga/9605008 Differential Geometry +dg-ga/9605009 Differential Geometry +dg-ga/9606001 Differential Geometry +dg-ga/9606002 Differential Geometry +dg-ga/9606003 Differential Geometry +dg-ga/9606004 Differential Geometry +dg-ga/9606005 Differential Geometry +dg-ga/9606006 Differential Geometry +dg-ga/9606007 Differential Geometry +dg-ga/9606008 Differential Geometry +dg-ga/9606009 Differential Geometry +dg-ga/9606010 Differential Geometry +dg-ga/9606011 Differential Geometry +dg-ga/9606012 Differential Geometry +dg-ga/9606013 Differential Geometry +dg-ga/9606014 Differential Geometry +dg-ga/9607001 Differential Geometry +dg-ga/9607002 Differential Geometry +dg-ga/9607003 Differential Geometry +dg-ga/9607004 Differential Geometry +dg-ga/9607005 Differential Geometry +dg-ga/9607006 Differential Geometry +dg-ga/9608001 Differential Geometry +dg-ga/9608002 Differential Geometry +dg-ga/9608003 Differential Geometry +dg-ga/9608004 Differential Geometry +dg-ga/9608005 Differential Geometry +dg-ga/9608006 Differential Geometry +dg-ga/9608007 Differential Geometry +dg-ga/9608008 Differential Geometry +dg-ga/9608009 Differential Geometry +dg-ga/9608010 Differential Geometry +dg-ga/9609001 Differential Geometry +dg-ga/9609002 Differential Geometry +dg-ga/9609003 Differential Geometry +dg-ga/9609004 Differential Geometry +dg-ga/9609005 Differential Geometry +dg-ga/9609006 Differential Geometry +dg-ga/9609007 Differential Geometry +dg-ga/9609008 Differential Geometry +dg-ga/9609009 Differential Geometry +dg-ga/9609010 Differential Geometry +dg-ga/9609011 Differential Geometry +dg-ga/9610003 Differential Geometry +dg-ga/9610004 Differential Geometry +dg-ga/9610006 Differential Geometry +dg-ga/9610007 Differential Geometry +dg-ga/9610008 Differential Geometry +dg-ga/9610009 Differential Geometry +dg-ga/9610010 Differential Geometry +dg-ga/9610011 Differential Geometry +dg-ga/9610012 Differential Geometry +dg-ga/9610013 Differential Geometry +dg-ga/9610014 Differential Geometry +dg-ga/9610015 Differential Geometry +dg-ga/9610016 Differential Geometry +dg-ga/9610018 Differential Geometry +dg-ga/9610019 Differential Geometry +dg-ga/9610020 Differential Geometry +dg-ga/9611001 Differential Geometry +dg-ga/9611002 Differential Geometry +dg-ga/9611003 Differential Geometry +dg-ga/9611004 Differential Geometry +dg-ga/9611005 Differential Geometry +dg-ga/9611006 Differential Geometry +dg-ga/9611007 Differential Geometry +dg-ga/9611008 Differential Geometry +dg-ga/9611009 Differential Geometry +dg-ga/9611010 Differential Geometry +dg-ga/9611011 Differential Geometry +dg-ga/9612001 Differential Geometry +dg-ga/9612002 Differential Geometry +dg-ga/9612003 Differential Geometry +dg-ga/9612005 Differential Geometry +dg-ga/9612006 Differential Geometry +dg-ga/9612007 Differential Geometry +dg-ga/9612010 Differential Geometry +dg-ga/9612011 Differential Geometry +dg-ga/9612012 Differential Geometry +dg-ga/9612013 Differential Geometry +dg-ga/9612014 Differential Geometry +dg-ga/9612015 Differential Geometry +dg-ga/9612017 Differential Geometry +dg-ga/9612018 Differential Geometry +dg-ga/9701001 Differential Geometry +dg-ga/9701002 Differential Geometry +dg-ga/9701003 Differential Geometry +dg-ga/9701004 Differential Geometry +dg-ga/9701005 Differential Geometry +dg-ga/9701006 Differential Geometry +dg-ga/9701008 Differential Geometry +dg-ga/9701010 Differential Geometry +dg-ga/9701011 Differential Geometry +dg-ga/9702001 Differential Geometry +dg-ga/9702002 Differential Geometry +dg-ga/9702003 Differential Geometry +dg-ga/9702005 Differential Geometry +dg-ga/9702007 Differential Geometry +dg-ga/9702008 Differential Geometry +dg-ga/9702009 Differential Geometry +dg-ga/9702010 Differential Geometry +dg-ga/9702011 Differential Geometry +dg-ga/9702012 Differential Geometry +dg-ga/9702013 Differential Geometry +dg-ga/9702014 Differential Geometry +dg-ga/9702016 Differential Geometry +dg-ga/9702017 Differential Geometry +dg-ga/9702018 Differential Geometry +dg-ga/9702019 Differential Geometry +dg-ga/9702020 Differential Geometry +dg-ga/9703001 Differential Geometry +dg-ga/9703003 Differential Geometry +dg-ga/9703004 Differential Geometry +dg-ga/9703005 Differential Geometry +dg-ga/9703006 Differential Geometry +dg-ga/9703007 Differential Geometry +dg-ga/9703008 Differential Geometry +dg-ga/9703009 Differential Geometry +dg-ga/9703010 Differential Geometry +dg-ga/9703011 Differential Geometry +dg-ga/9703012 Differential Geometry +dg-ga/9703013 Differential Geometry +dg-ga/9703014 Differential Geometry +dg-ga/9703015 Differential Geometry +dg-ga/9703017 Differential Geometry +dg-ga/9703018 Differential Geometry +dg-ga/9703020 Differential Geometry +dg-ga/9703021 Differential Geometry +dg-ga/9703022 Differential Geometry +dg-ga/9704001 Differential Geometry +dg-ga/9704003 Differential Geometry +dg-ga/9704004 Differential Geometry +dg-ga/9704005 Differential Geometry +dg-ga/9704007 Differential Geometry +dg-ga/9704008 Differential Geometry +dg-ga/9704009 Differential Geometry +dg-ga/9704010 Differential Geometry +dg-ga/9704012 Differential Geometry +dg-ga/9704013 Differential Geometry +dg-ga/9704014 Differential Geometry +dg-ga/9704016 Differential Geometry +dg-ga/9704017 Differential Geometry +dg-ga/9705001 Differential Geometry +dg-ga/9705002 Differential Geometry +dg-ga/9705003 Differential Geometry +dg-ga/9705004 Differential Geometry +dg-ga/9705006 Differential Geometry +dg-ga/9705007 Differential Geometry +dg-ga/9705008 Differential Geometry +dg-ga/9705009 Differential Geometry +dg-ga/9705010 Differential Geometry +dg-ga/9706001 Differential Geometry +dg-ga/9706002 Differential Geometry +dg-ga/9706003 Differential Geometry +dg-ga/9706005 Differential Geometry +dg-ga/9706006 Differential Geometry +dg-ga/9706007 Differential Geometry +dg-ga/9706009 Differential Geometry +dg-ga/9706010 Differential Geometry +dg-ga/9706011 Differential Geometry +dg-ga/9706013 Differential Geometry +dg-ga/9706014 Differential Geometry +dg-ga/9706015 Differential Geometry +dg-ga/9706016 Differential Geometry +dg-ga/9706017 Differential Geometry +dg-ga/9707002 Differential Geometry +dg-ga/9707003 Differential Geometry +dg-ga/9707004 Differential Geometry +dg-ga/9707005 Differential Geometry +dg-ga/9707006 Differential Geometry +dg-ga/9707007 Differential Geometry +dg-ga/9707010 Differential Geometry +dg-ga/9707011 Differential Geometry +dg-ga/9707012 Differential Geometry +dg-ga/9707014 Differential Geometry +dg-ga/9707015 Differential Geometry +dg-ga/9707016 Differential Geometry +dg-ga/9707018 Differential Geometry +dg-ga/9707019 Differential Geometry +dg-ga/9707020 Differential Geometry +dg-ga/9707021 Differential Geometry +dg-ga/9707023 Differential Geometry +dg-ga/9707024 Differential Geometry +dg-ga/9707026 Differential Geometry +dg-ga/9708001 Differential Geometry +dg-ga/9708002 Differential Geometry +dg-ga/9708003 Differential Geometry +dg-ga/9708004 Differential Geometry +dg-ga/9708005 Differential Geometry +dg-ga/9708006 Differential Geometry +dg-ga/9708007 Differential Geometry +dg-ga/9708008 Differential Geometry +dg-ga/9708009 Differential Geometry +dg-ga/9708010 Differential Geometry +dg-ga/9708011 Differential Geometry +dg-ga/9708012 Differential Geometry +dg-ga/9708013 Differential Geometry +dg-ga/9708014 Differential Geometry +dg-ga/9709001 Differential Geometry +dg-ga/9709002 Differential Geometry +dg-ga/9709003 Differential Geometry +dg-ga/9709004 Differential Geometry +dg-ga/9709005 Differential Geometry +dg-ga/9709006 Differential Geometry +dg-ga/9709007 Differential Geometry +dg-ga/9709008 Differential Geometry +dg-ga/9709009 Differential Geometry +dg-ga/9709010 Differential Geometry +dg-ga/9709011 Differential Geometry +dg-ga/9709012 Differential Geometry +dg-ga/9709013 Differential Geometry +dg-ga/9709015 Differential Geometry +dg-ga/9709016 Differential Geometry +dg-ga/9709017 Differential Geometry +dg-ga/9709018 Differential Geometry +dg-ga/9709019 Differential Geometry +dg-ga/9709020 Differential Geometry +dg-ga/9709021 Differential Geometry +funct-an/9205001 Functional Analysis +funct-an/9205002 Functional Analysis +funct-an/9205003 Functional Analysis +funct-an/9208001 Functional Analysis +funct-an/9211002 Functional Analysis +funct-an/9211003 Functional Analysis +funct-an/9211004 Functional Analysis +funct-an/9211008 Functional Analysis +funct-an/9211012 Functional Analysis +funct-an/9211013 Functional Analysis +funct-an/9211014 Functional Analysis +funct-an/9211015 Functional Analysis +funct-an/9212001 Functional Analysis +funct-an/9212002 Functional Analysis +funct-an/9212003 Functional Analysis +funct-an/9212004 Functional Analysis +funct-an/9212005 Functional Analysis +funct-an/9301001 Functional Analysis +funct-an/9301004 Functional Analysis +funct-an/9301005 Functional Analysis +funct-an/9302001 Functional Analysis +funct-an/9302002 Functional Analysis +funct-an/9302004 Functional Analysis +funct-an/9302007 Functional Analysis +funct-an/9303001 Functional Analysis +funct-an/9303003 Functional Analysis +funct-an/9305001 Functional Analysis +funct-an/9305004 Functional Analysis +funct-an/9306002 Functional Analysis +funct-an/9306003 Functional Analysis +funct-an/9307001 Functional Analysis +funct-an/9308001 Functional Analysis +funct-an/9308002 Functional Analysis +funct-an/9311002 Functional Analysis +funct-an/9311003 Functional Analysis +funct-an/9311004 Functional Analysis +funct-an/9312002 Functional Analysis +funct-an/9312003 Functional Analysis +funct-an/9312004 Functional Analysis +funct-an/9312005 Functional Analysis +funct-an/9401002 Functional Analysis +funct-an/9403003 Functional Analysis +funct-an/9403004 Functional Analysis +funct-an/9404001 Functional Analysis +funct-an/9404002 Functional Analysis +funct-an/9405001 Functional Analysis +funct-an/9405002 Functional Analysis +funct-an/9405003 Functional Analysis +funct-an/9405004 Functional Analysis +funct-an/9405005 Functional Analysis +funct-an/9406001 Functional Analysis +funct-an/9406002 Functional Analysis +funct-an/9406003 Functional Analysis +funct-an/9406004 Functional Analysis +funct-an/9408001 Functional Analysis +funct-an/9408002 Functional Analysis +funct-an/9408003 Functional Analysis +funct-an/9409001 Functional Analysis +funct-an/9409003 Functional Analysis +funct-an/9409004 Functional Analysis +funct-an/9410001 Functional Analysis +funct-an/9410002 Functional Analysis +funct-an/9410004 Functional Analysis +funct-an/9410005 Functional Analysis +funct-an/9411001 Functional Analysis +funct-an/9411002 Functional Analysis +funct-an/9411003 Functional Analysis +funct-an/9411004 Functional Analysis +funct-an/9411006 Functional Analysis +funct-an/9411007 Functional Analysis +funct-an/9411008 Functional Analysis +funct-an/9412002 Functional Analysis +funct-an/9412003 Functional Analysis +funct-an/9412004 Functional Analysis +funct-an/9501003 Functional Analysis +funct-an/9501005 Functional Analysis +funct-an/9501007 Functional Analysis +funct-an/9501008 Functional Analysis +funct-an/9502001 Functional Analysis +funct-an/9502002 Functional Analysis +funct-an/9502005 Functional Analysis +funct-an/9503001 Functional Analysis +funct-an/9504001 Functional Analysis +funct-an/9505001 Functional Analysis +funct-an/9506001 Functional Analysis +funct-an/9506003 Functional Analysis +funct-an/9506005 Functional Analysis +funct-an/9506008 Functional Analysis +funct-an/9506009 Functional Analysis +funct-an/9506010 Functional Analysis +funct-an/9507001 Functional Analysis +funct-an/9508001 Functional Analysis +funct-an/9508002 Functional Analysis +funct-an/9509002 Functional Analysis +funct-an/9509003 Functional Analysis +funct-an/9510001 Functional Analysis +funct-an/9510002 Functional Analysis +funct-an/9510003 Functional Analysis +funct-an/9510004 Functional Analysis +funct-an/9510005 Functional Analysis +funct-an/9510006 Functional Analysis +funct-an/9511001 Functional Analysis +funct-an/9511003 Functional Analysis +funct-an/9512002 Functional Analysis +funct-an/9512003 Functional Analysis +funct-an/9512004 Functional Analysis +funct-an/9601001 Functional Analysis +funct-an/9601002 Functional Analysis +funct-an/9601003 Functional Analysis +funct-an/9602001 Functional Analysis +funct-an/9602002 Functional Analysis +funct-an/9602003 Functional Analysis +funct-an/9602004 Functional Analysis +funct-an/9602006 Functional Analysis +funct-an/9602007 Functional Analysis +funct-an/9602008 Functional Analysis +funct-an/9604001 Functional Analysis +funct-an/9604002 Functional Analysis +funct-an/9604003 Functional Analysis +funct-an/9604004 Functional Analysis +funct-an/9604005 Functional Analysis +funct-an/9604006 Functional Analysis +funct-an/9604007 Functional Analysis +funct-an/9604008 Functional Analysis +funct-an/9604009 Functional Analysis +funct-an/9604011 Functional Analysis +funct-an/9604012 Functional Analysis +funct-an/9605002 Functional Analysis +funct-an/9605003 Functional Analysis +funct-an/9605004 Functional Analysis +funct-an/9605005 Functional Analysis +funct-an/9605006 Functional Analysis +funct-an/9606001 Functional Analysis +funct-an/9606003 Functional Analysis +funct-an/9606004 Functional Analysis +funct-an/9606005 Functional Analysis +funct-an/9607001 Functional Analysis +funct-an/9607002 Functional Analysis +funct-an/9608001 Functional Analysis +funct-an/9608006 Functional Analysis +funct-an/9609002 Functional Analysis +funct-an/9609003 Functional Analysis +funct-an/9610001 Functional Analysis +funct-an/9610002 Functional Analysis +funct-an/9610003 Functional Analysis +funct-an/9611001 Functional Analysis +funct-an/9611002 Functional Analysis +funct-an/9611003 Functional Analysis +funct-an/9611004 Functional Analysis +funct-an/9612001 Functional Analysis +funct-an/9612002 Functional Analysis +funct-an/9612003 Functional Analysis +funct-an/9612004 Functional Analysis +funct-an/9612005 Functional Analysis +funct-an/9612006 Functional Analysis +funct-an/9612007 Functional Analysis +funct-an/9612008 Functional Analysis +funct-an/9612009 Functional Analysis +funct-an/9701001 Functional Analysis +funct-an/9701002 Functional Analysis +funct-an/9701003 Functional Analysis +funct-an/9701004 Functional Analysis +funct-an/9701005 Functional Analysis +funct-an/9701007 Functional Analysis +funct-an/9701008 Functional Analysis +funct-an/9701009 Functional Analysis +funct-an/9701010 Functional Analysis +funct-an/9701011 Functional Analysis +funct-an/9701012 Functional Analysis +funct-an/9701013 Functional Analysis +funct-an/9702002 Functional Analysis +funct-an/9702003 Functional Analysis +funct-an/9702004 Functional Analysis +funct-an/9702005 Functional Analysis +funct-an/9702006 Functional Analysis +funct-an/9702008 Functional Analysis +funct-an/9702009 Functional Analysis +funct-an/9702010 Functional Analysis +funct-an/9702011 Functional Analysis +funct-an/9702012 Functional Analysis +funct-an/9702013 Functional Analysis +funct-an/9702014 Functional Analysis +funct-an/9702015 Functional Analysis +funct-an/9702016 Functional Analysis +funct-an/9702017 Functional Analysis +funct-an/9702019 Functional Analysis +funct-an/9703001 Functional Analysis +funct-an/9703002 Functional Analysis +funct-an/9703003 Functional Analysis +funct-an/9703004 Functional Analysis +funct-an/9703005 Functional Analysis +funct-an/9704001 Functional Analysis +funct-an/9704002 Functional Analysis +funct-an/9704003 Functional Analysis +funct-an/9704004 Functional Analysis +funct-an/9704005 Functional Analysis +funct-an/9704006 Functional Analysis +funct-an/9704008 Functional Analysis +funct-an/9705001 Functional Analysis +funct-an/9705003 Functional Analysis +funct-an/9705005 Functional Analysis +funct-an/9705006 Functional Analysis +funct-an/9705007 Functional Analysis +funct-an/9706001 Functional Analysis +funct-an/9706002 Functional Analysis +funct-an/9706003 Functional Analysis +funct-an/9706004 Functional Analysis +funct-an/9706005 Functional Analysis +funct-an/9706006 Functional Analysis +funct-an/9706007 Functional Analysis +funct-an/9706008 Functional Analysis +funct-an/9707002 Functional Analysis +funct-an/9707003 Functional Analysis +funct-an/9707005 Functional Analysis +funct-an/9707006 Functional Analysis +funct-an/9707007 Functional Analysis +funct-an/9707008 Functional Analysis +funct-an/9707009 Functional Analysis +funct-an/9707010 Functional Analysis +funct-an/9708001 Functional Analysis +funct-an/9708003 Functional Analysis +funct-an/9708004 Functional Analysis +funct-an/9709001 Functional Analysis +funct-an/9709002 Functional Analysis +funct-an/9709003 Functional Analysis +funct-an/9709004 Functional Analysis +funct-an/9709005 Functional Analysis +funct-an/9709006 Functional Analysis +funct-an/9709007 Functional Analysis +gr-qc/9212002 +gr-qc/9301015 +gr-qc/9301016 +gr-qc/9301018 +gr-qc/9302018 +gr-qc/9302035 +gr-qc/9303004 +gr-qc/9303015 +gr-qc/9303020 +gr-qc/9303021 +gr-qc/9303025 +gr-qc/9303034 +gr-qc/9304005 +gr-qc/9304016 +gr-qc/9306003 +gr-qc/9308023 +gr-qc/9309011 +gr-qc/9310010 +gr-qc/9311031 +gr-qc/9311032 +gr-qc/9312027 +gr-qc/9401016 +gr-qc/9401018 +gr-qc/9403007 +gr-qc/9403042 +gr-qc/9403059 +gr-qc/9404013 +gr-qc/9404017 +gr-qc/9404021 +gr-qc/9404023 +gr-qc/9405022 +gr-qc/9405024 +gr-qc/9405026 +gr-qc/9405072 +gr-qc/9406012 +gr-qc/9406023 +gr-qc/9406034 +gr-qc/9407008 +gr-qc/9408027 +gr-qc/9408029 +gr-qc/9409007 +gr-qc/9409019 +gr-qc/9409028 +gr-qc/9409048 +gr-qc/9411004 +gr-qc/9411027 +gr-qc/9411035 +gr-qc/9411053 +gr-qc/9411055 +gr-qc/9411064 +gr-qc/9412026 +gr-qc/9412033 +gr-qc/9412054 +gr-qc/9412074 +gr-qc/9501023 +gr-qc/9502035 +gr-qc/9503036 +gr-qc/9503066 +gr-qc/9504002 +gr-qc/9504011 +gr-qc/9504013 +gr-qc/9504024 +gr-qc/9504029 +gr-qc/9504050 +gr-qc/9505020 +gr-qc/9506006 +gr-qc/9506009 +gr-qc/9506017 +gr-qc/9506051 +gr-qc/9506081 +gr-qc/9507003 +gr-qc/9507009 +gr-qc/9507018 +gr-qc/9507023 +gr-qc/9507031 +gr-qc/9507041 +gr-qc/9507057 +gr-qc/9508015 +gr-qc/9508016 +gr-qc/9508045 +gr-qc/9508056 +gr-qc/9508060 +gr-qc/9508064 +gr-qc/9508065 +gr-qc/9509024 +gr-qc/9509043 +gr-qc/9509046 +gr-qc/9509054 +gr-qc/9509060 +gr-qc/9510018 +gr-qc/9510055 +gr-qc/9510061 +gr-qc/9511017 +gr-qc/9511020 +gr-qc/9511021 +gr-qc/9511027 +gr-qc/9512002 +gr-qc/9512008 +gr-qc/9512015 +gr-qc/9512027 +gr-qc/9512046 +gr-qc/9601004 +gr-qc/9601051 +gr-qc/9602002 +gr-qc/9604014 +gr-qc/9604016 +gr-qc/9604044 +gr-qc/9605001 +gr-qc/9605016 +gr-qc/9605019 +gr-qc/9605045 +gr-qc/9605067 +gr-qc/9606040 +gr-qc/9606055 +gr-qc/9606070 +gr-qc/9606081 +gr-qc/9607033 +gr-qc/9607038 +gr-qc/9607055 +gr-qc/9607073 +gr-qc/9608014 +gr-qc/9608023 +gr-qc/9608066 +gr-qc/9608068 +gr-qc/9609054 +gr-qc/9609070 +gr-qc/9610018 +gr-qc/9610030 +gr-qc/9610049 +gr-qc/9610065 +gr-qc/9611024 +gr-qc/9611039 +gr-qc/9611050 +gr-qc/9611064 +gr-qc/9612003 +gr-qc/9612022 +gr-qc/9612032 +gr-qc/9612038 +gr-qc/9612043 +gr-qc/9612055 +gr-qc/9612061 +gr-qc/9701009 +gr-qc/9701022 +gr-qc/9701028 +gr-qc/9701048 +gr-qc/9701062 +gr-qc/9701065 +gr-qc/9702013 +gr-qc/9702014 +gr-qc/9702029 +gr-qc/9702047 +gr-qc/9702054 +gr-qc/9703011 +gr-qc/9703025 +gr-qc/9703032 +gr-qc/9703085 +gr-qc/9704055 +gr-qc/9704057 +gr-qc/9704061 +gr-qc/9704072 +gr-qc/9704080 +gr-qc/9705001 +gr-qc/9705005 +gr-qc/9705006 +gr-qc/9705016 +gr-qc/9705022 +gr-qc/9705024 +gr-qc/9705025 +gr-qc/9705031 +gr-qc/9705058 +gr-qc/9705076 +gr-qc/9706059 +gr-qc/9706066 +gr-qc/9706068 +gr-qc/9706082 +gr-qc/9707016 +gr-qc/9708004 +gr-qc/9708055 +gr-qc/9708069 +gr-qc/9709002 +gr-qc/9709030 +gr-qc/9709049 +gr-qc/9709050 +gr-qc/9709076 +hep-ex/9408003 Experiment +hep-ex/9410001 Experiment +hep-ex/9410003 Experiment +hep-ex/9507013 Experiment +hep-ex/9509009 Experiment +hep-ex/9511002 Experiment +hep-ex/9511003 Experiment +hep-ex/9511006 Experiment +hep-ex/9511007 Experiment +hep-ex/9604011 Experiment +hep-ex/9605001 Experiment +hep-ex/9606009 Experiment +hep-ex/9608013 Experiment +hep-ex/9611012 Experiment +hep-ex/9612013 Experiment +hep-ex/9701005 Experiment +hep-ex/9704016 Experiment +hep-ex/9706028 Experiment +hep-ex/9707024 Experiment +hep-ex/9709005 Experiment +hep-ex/9709026 Experiment +hep-lat/9208001 Lattice +hep-lat/9208011 Lattice +hep-lat/9212002 Lattice +hep-lat/9212014 Lattice +hep-lat/9302012 Lattice +hep-lat/9306008 Lattice +hep-lat/9309012 Lattice +hep-lat/9310011 Lattice +hep-lat/9402012 Lattice +hep-lat/9403021 Lattice +hep-lat/9406001 Lattice +hep-lat/9406006 Lattice +hep-lat/9409021 Lattice +hep-lat/9411029 Lattice +hep-lat/9411059 Lattice +hep-lat/9412034 Lattice +hep-lat/9505015 Lattice +hep-lat/9506006 Lattice +hep-lat/9507021 Lattice +hep-lat/9508006 Lattice +hep-lat/9508031 Lattice +hep-lat/9509090 Lattice +hep-lat/9510043 Lattice +hep-lat/9510044 Lattice +hep-lat/9511013 Lattice +hep-lat/9511028 Lattice +hep-lat/9512015 Lattice +hep-lat/9512017 Lattice +hep-lat/9512021 Lattice +hep-lat/9512023 Lattice +hep-lat/9601003 Lattice +hep-lat/9601018 Lattice +hep-lat/9602002 Lattice +hep-lat/9602024 Lattice +hep-lat/9605007 Lattice +hep-lat/9607050 Lattice +hep-lat/9608024 Lattice +hep-lat/9608085 Lattice +hep-lat/9609024 Lattice +hep-lat/9609037 Lattice +hep-lat/9610012 Lattice +hep-lat/9611001 Lattice +hep-lat/9611017 Lattice +hep-lat/9611023 Lattice +hep-lat/9704003 Lattice +hep-lat/9705041 Lattice +hep-lat/9706001 Lattice +hep-lat/9706004 Lattice +hep-lat/9708021 Lattice +hep-ph/9203215 Phenomenology +hep-ph/9205215 Phenomenology +hep-ph/9205219 Phenomenology +hep-ph/9206220 Phenomenology +hep-ph/9206223 Phenomenology +hep-ph/9206253 Phenomenology +hep-ph/9206265 Phenomenology +hep-ph/9207207 Phenomenology +hep-ph/9208222 Phenomenology +hep-ph/9209209 Phenomenology +hep-ph/9210225 Phenomenology +hep-ph/9210236 Phenomenology +hep-ph/9210252 Phenomenology +hep-ph/9211218 Phenomenology +hep-ph/9211253 Phenomenology +hep-ph/9211273 Phenomenology +hep-ph/9211278 Phenomenology +hep-ph/9211327 Phenomenology +hep-ph/9212216 Phenomenology +hep-ph/9212227 Phenomenology +hep-ph/9212232 Phenomenology +hep-ph/9212269 Phenomenology +hep-ph/9212293 Phenomenology +hep-ph/9301210 Phenomenology +hep-ph/9301296 Phenomenology +hep-ph/9302220 Phenomenology +hep-ph/9302244 Phenomenology +hep-ph/9302287 Phenomenology +hep-ph/9302297 Phenomenology +hep-ph/9303214 Phenomenology +hep-ph/9303256 Phenomenology +hep-ph/9303262 Phenomenology +hep-ph/9303265 Phenomenology +hep-ph/9303323 Phenomenology +hep-ph/9304279 Phenomenology +hep-ph/9304285 Phenomenology +hep-ph/9304291 Phenomenology +hep-ph/9304300 Phenomenology +hep-ph/9305268 Phenomenology +hep-ph/9305318 Phenomenology +hep-ph/9305330 Phenomenology +hep-ph/9306228 Phenomenology +hep-ph/9306243 Phenomenology +hep-ph/9306327 Phenomenology +hep-ph/9307215 Phenomenology +hep-ph/9307246 Phenomenology +hep-ph/9307338 Phenomenology +hep-ph/9308233 Phenomenology +hep-ph/9308268 Phenomenology +hep-ph/9308354 Phenomenology +hep-ph/9308360 Phenomenology +hep-ph/9308361 Phenomenology +hep-ph/9309302 Phenomenology +hep-ph/9310202 Phenomenology +hep-ph/9310220 Phenomenology +hep-ph/9310272 Phenomenology +hep-ph/9310360 Phenomenology +hep-ph/9311246 Phenomenology +hep-ph/9311309 Phenomenology +hep-ph/9311324 Phenomenology +hep-ph/9312231 Phenomenology +hep-ph/9312240 Phenomenology +hep-ph/9312241 Phenomenology +hep-ph/9312330 Phenomenology +hep-ph/9312348 Phenomenology +hep-ph/9401235 Phenomenology +hep-ph/9402322 Phenomenology +hep-ph/9402329 Phenomenology +hep-ph/9402353 Phenomenology +hep-ph/9403220 Phenomenology +hep-ph/9403247 Phenomenology +hep-ph/9403309 Phenomenology +hep-ph/9403344 Phenomenology +hep-ph/9403354 Phenomenology +hep-ph/9403369 Phenomenology +hep-ph/9404241 Phenomenology +hep-ph/9404271 Phenomenology +hep-ph/9404287 Phenomenology +hep-ph/9404351 Phenomenology +hep-ph/9405248 Phenomenology +hep-ph/9405264 Phenomenology +hep-ph/9405294 Phenomenology +hep-ph/9405359 Phenomenology +hep-ph/9405363 Phenomenology +hep-ph/9405374 Phenomenology +hep-ph/9405404 Phenomenology +hep-ph/9405432 Phenomenology +hep-ph/9406206 Phenomenology +hep-ph/9406216 Phenomenology +hep-ph/9406253 Phenomenology +hep-ph/9406270 Phenomenology +hep-ph/9406301 Phenomenology +hep-ph/9406341 Phenomenology +hep-ph/9407218 Phenomenology +hep-ph/9407270 Phenomenology +hep-ph/9407284 Phenomenology +hep-ph/9407295 Phenomenology +hep-ph/9407319 Phenomenology +hep-ph/9407331 Phenomenology +hep-ph/9407396 Phenomenology +hep-ph/9407403 Phenomenology +hep-ph/9408252 Phenomenology +hep-ph/9408263 Phenomenology +hep-ph/9408283 Phenomenology +hep-ph/9408286 Phenomenology +hep-ph/9408327 Phenomenology +hep-ph/9408379 Phenomenology +hep-ph/9409213 Phenomenology +hep-ph/9409248 Phenomenology +hep-ph/9409256 Phenomenology +hep-ph/9409280 Phenomenology +hep-ph/9409282 Phenomenology +hep-ph/9409306 Phenomenology +hep-ph/9409307 Phenomenology +hep-ph/9409328 Phenomenology +hep-ph/9409332 Phenomenology +hep-ph/9409376 Phenomenology +hep-ph/9409403 Phenomenology +hep-ph/9409442 Phenomenology +hep-ph/9410216 Phenomenology +hep-ph/9410270 Phenomenology +hep-ph/9410303 Phenomenology +hep-ph/9410312 Phenomenology +hep-ph/9410323 Phenomenology +hep-ph/9410401 Phenomenology +hep-ph/9411225 Phenomenology +hep-ph/9411248 Phenomenology +hep-ph/9411281 Phenomenology +hep-ph/9411295 Phenomenology +hep-ph/9411344 Phenomenology +hep-ph/9411349 Phenomenology +hep-ph/9411362 Phenomenology +hep-ph/9411373 Phenomenology +hep-ph/9411384 Phenomenology +hep-ph/9411389 Phenomenology +hep-ph/9411401 Phenomenology +hep-ph/9411444 Phenomenology +hep-ph/9412201 Phenomenology +hep-ph/9412211 Phenomenology +hep-ph/9412228 Phenomenology +hep-ph/9412231 Phenomenology +hep-ph/9412236 Phenomenology +hep-ph/9412260 Phenomenology +hep-ph/9412262 Phenomenology +hep-ph/9412279 Phenomenology +hep-ph/9412299 Phenomenology +hep-ph/9412358 Phenomenology +hep-ph/9412372 Phenomenology +hep-ph/9412388 Phenomenology +hep-ph/9501360 Phenomenology +hep-ph/9501401 Phenomenology +hep-ph/9501410 Phenomenology +hep-ph/9502264 Phenomenology +hep-ph/9502281 Phenomenology +hep-ph/9502333 Phenomenology +hep-ph/9502358 Phenomenology +hep-ph/9502362 Phenomenology +hep-ph/9503216 Phenomenology +hep-ph/9503252 Phenomenology +hep-ph/9503269 Phenomenology +hep-ph/9503270 Phenomenology +hep-ph/9503289 Phenomenology +hep-ph/9503300 Phenomenology +hep-ph/9503351 Phenomenology +hep-ph/9503353 Phenomenology +hep-ph/9503359 Phenomenology +hep-ph/9503373 Phenomenology +hep-ph/9503405 Phenomenology +hep-ph/9503419 Phenomenology +hep-ph/9503474 Phenomenology +hep-ph/9503478 Phenomenology +hep-ph/9504254 Phenomenology +hep-ph/9504261 Phenomenology +hep-ph/9504294 Phenomenology +hep-ph/9504297 Phenomenology +hep-ph/9504308 Phenomenology +hep-ph/9504340 Phenomenology +hep-ph/9504358 Phenomenology +hep-ph/9504365 Phenomenology +hep-ph/9504366 Phenomenology +hep-ph/9504367 Phenomenology +hep-ph/9504419 Phenomenology +hep-ph/9504428 Phenomenology +hep-ph/9504430 Phenomenology +hep-ph/9505236 Phenomenology +hep-ph/9505242 Phenomenology +hep-ph/9505277 Phenomenology +hep-ph/9505286 Phenomenology +hep-ph/9505338 Phenomenology +hep-ph/9505386 Phenomenology +hep-ph/9505400 Phenomenology +hep-ph/9505401 Phenomenology +hep-ph/9505436 Phenomenology +hep-ph/9506212 Phenomenology +hep-ph/9506230 Phenomenology +hep-ph/9506251 Phenomenology +hep-ph/9506312 Phenomenology +hep-ph/9506339 Phenomenology +hep-ph/9506343 Phenomenology +hep-ph/9506344 Phenomenology +hep-ph/9506369 Phenomenology +hep-ph/9506383 Phenomenology +hep-ph/9506397 Phenomenology +hep-ph/9506413 Phenomenology +hep-ph/9506440 Phenomenology +hep-ph/9506460 Phenomenology +hep-ph/9506468 Phenomenology +hep-ph/9507232 Phenomenology +hep-ph/9507236 Phenomenology +hep-ph/9507240 Phenomenology +hep-ph/9507241 Phenomenology +hep-ph/9507250 Phenomenology +hep-ph/9507272 Phenomenology +hep-ph/9507286 Phenomenology +hep-ph/9507291 Phenomenology +hep-ph/9507301 Phenomenology +hep-ph/9507313 Phenomenology +hep-ph/9507318 Phenomenology +hep-ph/9507374 Phenomenology +hep-ph/9507396 Phenomenology +hep-ph/9507421 Phenomenology +hep-ph/9507423 Phenomenology +hep-ph/9507446 Phenomenology +hep-ph/9507447 Phenomenology +hep-ph/9507448 Phenomenology +hep-ph/9507454 Phenomenology +hep-ph/9507468 Phenomenology +hep-ph/9508209 Phenomenology +hep-ph/9508218 Phenomenology +hep-ph/9508224 Phenomenology +hep-ph/9508270 Phenomenology +hep-ph/9508284 Phenomenology +hep-ph/9508295 Phenomenology +hep-ph/9508297 Phenomenology +hep-ph/9508305 Phenomenology +hep-ph/9508309 Phenomenology +hep-ph/9508339 Phenomenology +hep-ph/9508342 Phenomenology +hep-ph/9508364 Phenomenology +hep-ph/9508369 Phenomenology +hep-ph/9508371 Phenomenology +hep-ph/9508387 Phenomenology +hep-ph/9509219 Phenomenology +hep-ph/9509220 Phenomenology +hep-ph/9509266 Phenomenology +hep-ph/9509274 Phenomenology +hep-ph/9509288 Phenomenology +hep-ph/9509298 Phenomenology +hep-ph/9509314 Phenomenology +hep-ph/9509317 Phenomenology +hep-ph/9509354 Phenomenology +hep-ph/9509367 Phenomenology +hep-ph/9509376 Phenomenology +hep-ph/9509403 Phenomenology +hep-ph/9509404 Phenomenology +hep-ph/9509427 Phenomenology +hep-ph/9510270 Phenomenology +hep-ph/9510287 Phenomenology +hep-ph/9510288 Phenomenology +hep-ph/9510328 Phenomenology +hep-ph/9510343 Phenomenology +hep-ph/9510384 Phenomenology +hep-ph/9510398 Phenomenology +hep-ph/9510402 Phenomenology +hep-ph/9510405 Phenomenology +hep-ph/9510412 Phenomenology +hep-ph/9510419 Phenomenology +hep-ph/9510428 Phenomenology +hep-ph/9510440 Phenomenology +hep-ph/9510451 Phenomenology +hep-ph/9511228 Phenomenology +hep-ph/9511282 Phenomenology +hep-ph/9511306 Phenomenology +hep-ph/9511330 Phenomenology +hep-ph/9511345 Phenomenology +hep-ph/9511359 Phenomenology +hep-ph/9511373 Phenomenology +hep-ph/9511393 Phenomenology +hep-ph/9511404 Phenomenology +hep-ph/9511409 Phenomenology +hep-ph/9511445 Phenomenology +hep-ph/9512212 Phenomenology +hep-ph/9512214 Phenomenology +hep-ph/9512232 Phenomenology +hep-ph/9512247 Phenomenology +hep-ph/9512279 Phenomenology +hep-ph/9512289 Phenomenology +hep-ph/9512291 Phenomenology +hep-ph/9512297 Phenomenology +hep-ph/9512318 Phenomenology +hep-ph/9512347 Phenomenology +hep-ph/9512363 Phenomenology +hep-ph/9512376 Phenomenology +hep-ph/9512393 Phenomenology +hep-ph/9512440 Phenomenology +hep-ph/9601202 Phenomenology +hep-ph/9601240 Phenomenology +hep-ph/9601253 Phenomenology +hep-ph/9601255 Phenomenology +hep-ph/9601330 Phenomenology +hep-ph/9601352 Phenomenology +hep-ph/9601359 Phenomenology +hep-ph/9601369 Phenomenology +hep-ph/9601389 Phenomenology +hep-ph/9602217 Phenomenology +hep-ph/9602251 Phenomenology +hep-ph/9602362 Phenomenology +hep-ph/9602395 Phenomenology +hep-ph/9602433 Phenomenology +hep-ph/9603218 Phenomenology +hep-ph/9603255 Phenomenology +hep-ph/9603280 Phenomenology +hep-ph/9603301 Phenomenology +hep-ph/9603306 Phenomenology +hep-ph/9603383 Phenomenology +hep-ph/9603441 Phenomenology +hep-ph/9604204 Phenomenology +hep-ph/9604226 Phenomenology +hep-ph/9604254 Phenomenology +hep-ph/9604261 Phenomenology +hep-ph/9604265 Phenomenology +hep-ph/9604271 Phenomenology +hep-ph/9604308 Phenomenology +hep-ph/9604311 Phenomenology +hep-ph/9604319 Phenomenology +hep-ph/9604325 Phenomenology +hep-ph/9604340 Phenomenology +hep-ph/9604354 Phenomenology +hep-ph/9604363 Phenomenology +hep-ph/9604443 Phenomenology +hep-ph/9605212 Phenomenology +hep-ph/9605227 Phenomenology +hep-ph/9605293 Phenomenology +hep-ph/9605294 Phenomenology +hep-ph/9605338 Phenomenology +hep-ph/9605402 Phenomenology +hep-ph/9605451 Phenomenology +hep-ph/9605457 Phenomenology +hep-ph/9605460 Phenomenology +hep-ph/9606204 Phenomenology +hep-ph/9606227 Phenomenology +hep-ph/9606263 Phenomenology +hep-ph/9606294 Phenomenology +hep-ph/9606306 Phenomenology +hep-ph/9606407 Phenomenology +hep-ph/9606447 Phenomenology +hep-ph/9606472 Phenomenology +hep-ph/9606473 Phenomenology +hep-ph/9607211 Phenomenology +hep-ph/9607224 Phenomenology +hep-ph/9607240 Phenomenology +hep-ph/9607260 Phenomenology +hep-ph/9607291 Phenomenology +hep-ph/9607306 Phenomenology +hep-ph/9607321 Phenomenology +hep-ph/9607322 Phenomenology +hep-ph/9607325 Phenomenology +hep-ph/9607327 Phenomenology +hep-ph/9607330 Phenomenology +hep-ph/9607340 Phenomenology +hep-ph/9607356 Phenomenology +hep-ph/9607378 Phenomenology +hep-ph/9607385 Phenomenology +hep-ph/9607435 Phenomenology +hep-ph/9607436 Phenomenology +hep-ph/9607472 Phenomenology +hep-ph/9607476 Phenomenology +hep-ph/9607483 Phenomenology +hep-ph/9608240 Phenomenology +hep-ph/9608283 Phenomenology +hep-ph/9608325 Phenomenology +hep-ph/9608338 Phenomenology +hep-ph/9608391 Phenomenology +hep-ph/9608421 Phenomenology +hep-ph/9608439 Phenomenology +hep-ph/9608455 Phenomenology +hep-ph/9608465 Phenomenology +hep-ph/9608488 Phenomenology +hep-ph/9609230 Phenomenology +hep-ph/9609232 Phenomenology +hep-ph/9609300 Phenomenology +hep-ph/9609305 Phenomenology +hep-ph/9609310 Phenomenology +hep-ph/9609387 Phenomenology +hep-ph/9609398 Phenomenology +hep-ph/9609437 Phenomenology +hep-ph/9609476 Phenomenology +hep-ph/9609531 Phenomenology +hep-ph/9610216 Phenomenology +hep-ph/9610235 Phenomenology +hep-ph/9610238 Phenomenology +hep-ph/9610259 Phenomenology +hep-ph/9610316 Phenomenology +hep-ph/9610324 Phenomenology +hep-ph/9610376 Phenomenology +hep-ph/9610390 Phenomenology +hep-ph/9610393 Phenomenology +hep-ph/9610432 Phenomenology +hep-ph/9610457 Phenomenology +hep-ph/9610459 Phenomenology +hep-ph/9610474 Phenomenology +hep-ph/9610519 Phenomenology +hep-ph/9610520 Phenomenology +hep-ph/9610536 Phenomenology +hep-ph/9610542 Phenomenology +hep-ph/9610545 Phenomenology +hep-ph/9611215 Phenomenology +hep-ph/9611274 Phenomenology +hep-ph/9611322 Phenomenology +hep-ph/9611337 Phenomenology +hep-ph/9611372 Phenomenology +hep-ph/9611379 Phenomenology +hep-ph/9611397 Phenomenology +hep-ph/9611413 Phenomenology +hep-ph/9611420 Phenomenology +hep-ph/9611462 Phenomenology +hep-ph/9611465 Phenomenology +hep-ph/9612206 Phenomenology +hep-ph/9612238 Phenomenology +hep-ph/9612244 Phenomenology +hep-ph/9612248 Phenomenology +hep-ph/9612258 Phenomenology +hep-ph/9612274 Phenomenology +hep-ph/9612283 Phenomenology +hep-ph/9612288 Phenomenology +hep-ph/9612293 Phenomenology +hep-ph/9612303 Phenomenology +hep-ph/9612352 Phenomenology +hep-ph/9612386 Phenomenology +hep-ph/9612456 Phenomenology +hep-ph/9612482 Phenomenology +hep-ph/9612489 Phenomenology +hep-ph/9701213 Phenomenology +hep-ph/9701241 Phenomenology +hep-ph/9701272 Phenomenology +hep-ph/9701274 Phenomenology +hep-ph/9701275 Phenomenology +hep-ph/9701287 Phenomenology +hep-ph/9701304 Phenomenology +hep-ph/9701312 Phenomenology +hep-ph/9701322 Phenomenology +hep-ph/9701327 Phenomenology +hep-ph/9701349 Phenomenology +hep-ph/9701388 Phenomenology +hep-ph/9701397 Phenomenology +hep-ph/9701411 Phenomenology +hep-ph/9701412 Phenomenology +hep-ph/9702224 Phenomenology +hep-ph/9702228 Phenomenology +hep-ph/9702272 Phenomenology +hep-ph/9702289 Phenomenology +hep-ph/9702323 Phenomenology +hep-ph/9702340 Phenomenology +hep-ph/9702365 Phenomenology +hep-ph/9702390 Phenomenology +hep-ph/9702408 Phenomenology +hep-ph/9702432 Phenomenology +hep-ph/9702434 Phenomenology +hep-ph/9702437 Phenomenology +hep-ph/9702438 Phenomenology +hep-ph/9702439 Phenomenology +hep-ph/9703287 Phenomenology +hep-ph/9703307 Phenomenology +hep-ph/9703310 Phenomenology +hep-ph/9703339 Phenomenology +hep-ph/9703347 Phenomenology +hep-ph/9703418 Phenomenology +hep-ph/9703425 Phenomenology +hep-ph/9704251 Phenomenology +hep-ph/9704267 Phenomenology +hep-ph/9704285 Phenomenology +hep-ph/9704311 Phenomenology +hep-ph/9704343 Phenomenology +hep-ph/9704354 Phenomenology +hep-ph/9705370 Phenomenology +hep-ph/9705376 Phenomenology +hep-ph/9705395 Phenomenology +hep-ph/9705434 Phenomenology +hep-ph/9705451 Phenomenology +hep-ph/9705454 Phenomenology +hep-ph/9706224 Phenomenology +hep-ph/9706251 Phenomenology +hep-ph/9706292 Phenomenology +hep-ph/9706329 Phenomenology +hep-ph/9706346 Phenomenology +hep-ph/9706366 Phenomenology +hep-ph/9706451 Phenomenology +hep-ph/9706499 Phenomenology +hep-ph/9706528 Phenomenology +hep-ph/9707203 Phenomenology +hep-ph/9707232 Phenomenology +hep-ph/9707278 Phenomenology +hep-ph/9707279 Phenomenology +hep-ph/9707310 Phenomenology +hep-ph/9707349 Phenomenology +hep-ph/9707354 Phenomenology +hep-ph/9707359 Phenomenology +hep-ph/9707383 Phenomenology +hep-ph/9707408 Phenomenology +hep-ph/9707422 Phenomenology +hep-ph/9707522 Phenomenology +hep-ph/9707526 Phenomenology +hep-ph/9707527 Phenomenology +hep-ph/9707528 Phenomenology +hep-ph/9708203 Phenomenology +hep-ph/9708206 Phenomenology +hep-ph/9708242 Phenomenology +hep-ph/9708313 Phenomenology +hep-ph/9708376 Phenomenology +hep-ph/9708388 Phenomenology +hep-ph/9708394 Phenomenology +hep-ph/9708418 Phenomenology +hep-ph/9708466 Phenomenology +hep-ph/9709227 Phenomenology +hep-ph/9709237 Phenomenology +hep-ph/9709238 Phenomenology +hep-ph/9709269 Phenomenology +hep-ph/9709287 Phenomenology +hep-ph/9709303 Phenomenology +hep-ph/9709304 Phenomenology +hep-ph/9709349 Phenomenology +hep-ph/9709357 Phenomenology +hep-ph/9709374 Phenomenology +hep-ph/9709395 Phenomenology +hep-ph/9709420 Phenomenology +hep-ph/9709475 Phenomenology +hep-ph/9709507 Phenomenology +hep-th/0605177 Theory +hep-th/9108019 Theory +hep-th/9109043 Theory +hep-th/9109044 Theory +hep-th/9110051 Theory +hep-th/9110056 Theory +hep-th/9111005 Theory +hep-th/9111023 Theory +hep-th/9111025 Theory +hep-th/9111051 Theory +hep-th/9112002 Theory +hep-th/9112041 Theory +hep-th/9112071 Theory +hep-th/9201055 Theory +hep-th/9201057 Theory +hep-th/9201066 Theory +hep-th/9201073 Theory +hep-th/9202017 Theory +hep-th/9202044 Theory +hep-th/9202048 Theory +hep-th/9202055 Theory +hep-th/9202078 Theory +hep-th/9202083 Theory +hep-th/9202088 Theory +hep-th/9203011 Theory +hep-th/9203049 Theory +hep-th/9203064 Theory +hep-th/9204058 Theory +hep-th/9204078 Theory +hep-th/9204087 Theory +hep-th/9205038 Theory +hep-th/9205067 Theory +hep-th/9205080 Theory +hep-th/9205104 Theory +hep-th/9205105 Theory +hep-th/9206012 Theory +hep-th/9206021 Theory +hep-th/9206030 Theory +hep-th/9206074 Theory +hep-th/9207037 Theory +hep-th/9207044 Theory +hep-th/9207045 Theory +hep-th/9207056 Theory +hep-th/9207081 Theory +hep-th/9207090 Theory +hep-th/9208022 Theory +hep-th/9208051 Theory +hep-th/9208075 Theory +hep-th/9209014 Theory +hep-th/9209019 Theory +hep-th/9209029 Theory +hep-th/9209040 Theory +hep-th/9209056 Theory +hep-th/9209066 Theory +hep-th/9209079 Theory +hep-th/9209080 Theory +hep-th/9209117 Theory +hep-th/9210005 Theory +hep-th/9210018 Theory +hep-th/9210020 Theory +hep-th/9210044 Theory +hep-th/9210046 Theory +hep-th/9210051 Theory +hep-th/9210078 Theory +hep-th/9210079 Theory +hep-th/9210092 Theory +hep-th/9210161 Theory +hep-th/9210165 Theory +hep-th/9211017 Theory +hep-th/9211059 Theory +hep-th/9211067 Theory +hep-th/9211077 Theory +hep-th/9211100 Theory +hep-th/9211120 Theory +hep-th/9211125 Theory +hep-th/9211137 Theory +hep-th/9212025 Theory +hep-th/9212040 Theory +hep-th/9212064 Theory +hep-th/9212072 Theory +hep-th/9212084 Theory +hep-th/9212087 Theory +hep-th/9212094 Theory +hep-th/9212138 Theory +hep-th/9212143 Theory +hep-th/9212150 Theory +hep-th/9212151 Theory +hep-th/9301009 Theory +hep-th/9301022 Theory +hep-th/9301023 Theory +hep-th/9301031 Theory +hep-th/9301051 Theory +hep-th/9301062 Theory +hep-th/9301063 Theory +hep-th/9301066 Theory +hep-th/9301082 Theory +hep-th/9301094 Theory +hep-th/9301104 Theory +hep-th/9301121 Theory +hep-th/9302013 Theory +hep-th/9302028 Theory +hep-th/9302034 Theory +hep-th/9302052 Theory +hep-th/9302092 Theory +hep-th/9302098 Theory +hep-th/9302102 Theory +hep-th/9302104 Theory +hep-th/9302113 Theory +hep-th/9302118 Theory +hep-th/9302127 Theory +hep-th/9302131 Theory +hep-th/9302141 Theory +hep-th/9303035 Theory +hep-th/9303036 Theory +hep-th/9303037 Theory +hep-th/9303063 Theory +hep-th/9303066 Theory +hep-th/9303092 Theory +hep-th/9303094 Theory +hep-th/9303130 Theory +hep-th/9303138 Theory +hep-th/9304008 Theory +hep-th/9304030 Theory +hep-th/9304042 Theory +hep-th/9304049 Theory +hep-th/9304056 Theory +hep-th/9304064 Theory +hep-th/9304087 Theory +hep-th/9304098 Theory +hep-th/9304099 Theory +hep-th/9304101 Theory +hep-th/9304118 Theory +hep-th/9304122 Theory +hep-th/9304123 Theory +hep-th/9304138 Theory +hep-th/9304146 Theory +hep-th/9304152 Theory +hep-th/9304156 Theory +hep-th/9304160 Theory +hep-th/9305022 Theory +hep-th/9305024 Theory +hep-th/9305027 Theory +hep-th/9305040 Theory +hep-th/9305045 Theory +hep-th/9305051 Theory +hep-th/9305074 Theory +hep-th/9305088 Theory +hep-th/9305101 Theory +hep-th/9305138 Theory +hep-th/9305158 Theory +hep-th/9305182 Theory +hep-th/9305184 Theory +hep-th/9306005 Theory +hep-th/9306022 Theory +hep-th/9306032 Theory +hep-th/9306041 Theory +hep-th/9306053 Theory +hep-th/9306061 Theory +hep-th/9306078 Theory +hep-th/9306095 Theory +hep-th/9306104 Theory +hep-th/9306110 Theory +hep-th/9306111 Theory +hep-th/9306113 Theory +hep-th/9306119 Theory +hep-th/9306129 Theory +hep-th/9306137 Theory +hep-th/9306143 Theory +hep-th/9306152 Theory +hep-th/9307008 Theory +hep-th/9307009 Theory +hep-th/9307032 Theory +hep-th/9307041 Theory +hep-th/9307058 Theory +hep-th/9307069 Theory +hep-th/9307094 Theory +hep-th/9307129 Theory +hep-th/9307149 Theory +hep-th/9307152 Theory +hep-th/9307153 Theory +hep-th/9307157 Theory +hep-th/9307163 Theory +hep-th/9307164 Theory +hep-th/9307192 Theory +hep-th/9308003 Theory +hep-th/9308008 Theory +hep-th/9308035 Theory +hep-th/9308039 Theory +hep-th/9308040 Theory +hep-th/9308055 Theory +hep-th/9308056 Theory +hep-th/9308058 Theory +hep-th/9308060 Theory +hep-th/9308072 Theory +hep-th/9308132 Theory +hep-th/9308138 Theory +hep-th/9309006 Theory +hep-th/9309008 Theory +hep-th/9309029 Theory +hep-th/9309031 Theory +hep-th/9309032 Theory +hep-th/9309046 Theory +hep-th/9309053 Theory +hep-th/9309063 Theory +hep-th/9309076 Theory +hep-th/9309102 Theory +hep-th/9309108 Theory +hep-th/9309145 Theory +hep-th/9309147 Theory +hep-th/9309159 Theory +hep-th/9310009 Theory +hep-th/9310014 Theory +hep-th/9310022 Theory +hep-th/9310026 Theory +hep-th/9310040 Theory +hep-th/9310054 Theory +hep-th/9310056 Theory +hep-th/9310057 Theory +hep-th/9310068 Theory +hep-th/9310071 Theory +hep-th/9310113 Theory +hep-th/9310154 Theory +hep-th/9310161 Theory +hep-th/9310187 Theory +hep-th/9310196 Theory +hep-th/9311040 Theory +hep-th/9311049 Theory +hep-th/9311051 Theory +hep-th/9311074 Theory +hep-th/9311075 Theory +hep-th/9311082 Theory +hep-th/9311089 Theory +hep-th/9311090 Theory +hep-th/9311096 Theory +hep-th/9311109 Theory +hep-th/9311125 Theory +hep-th/9311137 Theory +hep-th/9311149 Theory +hep-th/9311155 Theory +hep-th/9311167 Theory +hep-th/9311171 Theory +hep-th/9311176 Theory +hep-th/9311178 Theory +hep-th/9311184 Theory +hep-th/9311186 Theory +hep-th/9311188 Theory +hep-th/9312022 Theory +hep-th/9312023 Theory +hep-th/9312037 Theory +hep-th/9312041 Theory +hep-th/9312051 Theory +hep-th/9312057 Theory +hep-th/9312065 Theory +hep-th/9312075 Theory +hep-th/9312076 Theory +hep-th/9312101 Theory +hep-th/9312103 Theory +hep-th/9312111 Theory +hep-th/9312112 Theory +hep-th/9312113 Theory +hep-th/9312116 Theory +hep-th/9312119 Theory +hep-th/9312123 Theory +hep-th/9312139 Theory +hep-th/9312140 Theory +hep-th/9312151 Theory +hep-th/9312167 Theory +hep-th/9312193 Theory +hep-th/9312195 Theory +hep-th/9312196 Theory +hep-th/9312203 Theory +hep-th/9401016 Theory +hep-th/9401023 Theory +hep-th/9401028 Theory +hep-th/9401043 Theory +hep-th/9401050 Theory +hep-th/9401060 Theory +hep-th/9401064 Theory +hep-th/9401067 Theory +hep-th/9401068 Theory +hep-th/9401076 Theory +hep-th/9401087 Theory +hep-th/9401101 Theory +hep-th/9401119 Theory +hep-th/9401127 Theory +hep-th/9401130 Theory +hep-th/9401141 Theory +hep-th/9401158 Theory +hep-th/9401165 Theory +hep-th/9402018 Theory +hep-th/9402025 Theory +hep-th/9402041 Theory +hep-th/9402043 Theory +hep-th/9402054 Theory +hep-th/9402058 Theory +hep-th/9402070 Theory +hep-th/9402080 Theory +hep-th/9402095 Theory +hep-th/9402109 Theory +hep-th/9402126 Theory +hep-th/9402134 Theory +hep-th/9402153 Theory +hep-th/9403002 Theory +hep-th/9403003 Theory +hep-th/9403004 Theory +hep-th/9403009 Theory +hep-th/9403011 Theory +hep-th/9403055 Theory +hep-th/9403064 Theory +hep-th/9403068 Theory +hep-th/9403072 Theory +hep-th/9403090 Theory +hep-th/9403095 Theory +hep-th/9403097 Theory +hep-th/9403123 Theory +hep-th/9403133 Theory +hep-th/9403135 Theory +hep-th/9403142 Theory +hep-th/9403143 Theory +hep-th/9403148 Theory +hep-th/9403165 Theory +hep-th/9403168 Theory +hep-th/9403172 Theory +hep-th/9403174 Theory +hep-th/9403178 Theory +hep-th/9404009 Theory +hep-th/9404010 Theory +hep-th/9404025 Theory +hep-th/9404036 Theory +hep-th/9404043 Theory +hep-th/9404046 Theory +hep-th/9404062 Theory +hep-th/9404090 Theory +hep-th/9404103 Theory +hep-th/9404104 Theory +hep-th/9404110 Theory +hep-th/9404111 Theory +hep-th/9404135 Theory +hep-th/9404137 Theory +hep-th/9404142 Theory +hep-th/9404151 Theory +hep-th/9404168 Theory +hep-th/9404175 Theory +hep-th/9405021 Theory +hep-th/9405035 Theory +hep-th/9405045 Theory +hep-th/9405050 Theory +hep-th/9405056 Theory +hep-th/9405075 Theory +hep-th/9405079 Theory +hep-th/9405094 Theory +hep-th/9405101 Theory +hep-th/9405122 Theory +hep-th/9405137 Theory +hep-th/9405140 Theory +hep-th/9405179 Theory +hep-th/9405184 Theory +hep-th/9406001 Theory +hep-th/9406008 Theory +hep-th/9406060 Theory +hep-th/9406065 Theory +hep-th/9406068 Theory +hep-th/9406075 Theory +hep-th/9406078 Theory +hep-th/9406095 Theory +hep-th/9406099 Theory +hep-th/9406107 Theory +hep-th/9406118 Theory +hep-th/9406119 Theory +hep-th/9406120 Theory +hep-th/9406166 Theory +hep-th/9406168 Theory +hep-th/9406172 Theory +hep-th/9406185 Theory +hep-th/9406186 Theory +hep-th/9406190 Theory +hep-th/9406194 Theory +hep-th/9406197 Theory +hep-th/9406200 Theory +hep-th/9406205 Theory +hep-th/9407005 Theory +hep-th/9407018 Theory +hep-th/9407037 Theory +hep-th/9407047 Theory +hep-th/9407056 Theory +hep-th/9407057 Theory +hep-th/9407073 Theory +hep-th/9407082 Theory +hep-th/9407093 Theory +hep-th/9407094 Theory +hep-th/9407099 Theory +hep-th/9407102 Theory +hep-th/9407103 Theory +hep-th/9407110 Theory +hep-th/9407124 Theory +hep-th/9407138 Theory +hep-th/9407140 Theory +hep-th/9407149 Theory +hep-th/9408012 Theory +hep-th/9408037 Theory +hep-th/9408054 Theory +hep-th/9408059 Theory +hep-th/9408064 Theory +hep-th/9408078 Theory +hep-th/9408080 Theory +hep-th/9408102 Theory +hep-th/9408106 Theory +hep-th/9408109 Theory +hep-th/9408131 Theory +hep-th/9408143 Theory +hep-th/9408166 Theory +hep-th/9408170 Theory +hep-th/9408175 Theory +hep-th/9409012 Theory +hep-th/9409025 Theory +hep-th/9409032 Theory +hep-th/9409052 Theory +hep-th/9409053 Theory +hep-th/9409055 Theory +hep-th/9409061 Theory +hep-th/9409063 Theory +hep-th/9409068 Theory +hep-th/9409070 Theory +hep-th/9409071 Theory +hep-th/9409079 Theory +hep-th/9409088 Theory +hep-th/9409137 Theory +hep-th/9409161 Theory +hep-th/9409167 Theory +hep-th/9409190 Theory +hep-th/9409191 Theory +hep-th/9410007 Theory +hep-th/9410009 Theory +hep-th/9410025 Theory +hep-th/9410038 Theory +hep-th/9410055 Theory +hep-th/9410058 Theory +hep-th/9410059 Theory +hep-th/9410060 Theory +hep-th/9410061 Theory +hep-th/9410062 Theory +hep-th/9410106 Theory +hep-th/9410108 Theory +hep-th/9410118 Theory +hep-th/9410139 Theory +hep-th/9410146 Theory +hep-th/9410153 Theory +hep-th/9410154 Theory +hep-th/9410169 Theory +hep-th/9410181 Theory +hep-th/9410187 Theory +hep-th/9410188 Theory +hep-th/9410189 Theory +hep-th/9410202 Theory +hep-th/9410208 Theory +hep-th/9410210 Theory +hep-th/9410241 Theory +hep-th/9410242 Theory +hep-th/9411006 Theory +hep-th/9411008 Theory +hep-th/9411010 Theory +hep-th/9411033 Theory +hep-th/9411037 Theory +hep-th/9411044 Theory +hep-th/9411050 Theory +hep-th/9411076 Theory +hep-th/9411078 Theory +hep-th/9411083 Theory +hep-th/9411088 Theory +hep-th/9411097 Theory +hep-th/9411110 Theory +hep-th/9411113 Theory +hep-th/9411126 Theory +hep-th/9411140 Theory +hep-th/9411144 Theory +hep-th/9411145 Theory +hep-th/9411151 Theory +hep-th/9411157 Theory +hep-th/9411179 Theory +hep-th/9411186 Theory +hep-th/9411192 Theory +hep-th/9411193 Theory +hep-th/9411208 Theory +hep-th/9411209 Theory +hep-th/9411211 Theory +hep-th/9411227 Theory +hep-th/9411230 Theory +hep-th/9411240 Theory +hep-th/9412023 Theory +hep-th/9412025 Theory +hep-th/9412027 Theory +hep-th/9412031 Theory +hep-th/9412036 Theory +hep-th/9412037 Theory +hep-th/9412038 Theory +hep-th/9412045 Theory +hep-th/9412049 Theory +hep-th/9412051 Theory +hep-th/9412053 Theory +hep-th/9412054 Theory +hep-th/9412085 Theory +hep-th/9412099 Theory +hep-th/9412103 Theory +hep-th/9412105 Theory +hep-th/9412109 Theory +hep-th/9412153 Theory +hep-th/9412200 Theory +hep-th/9412219 Theory +hep-th/9412224 Theory +hep-th/9412237 Theory +hep-th/9412241 Theory +hep-th/9412243 Theory +hep-th/9501046 Theory +hep-th/9501114 Theory +hep-th/9501119 Theory +hep-th/9502061 Theory +hep-th/9502063 Theory +hep-th/9502081 Theory +hep-th/9502150 Theory +hep-th/9502165 Theory +hep-th/9503049 Theory +hep-th/9503058 Theory +hep-th/9503095 Theory +hep-th/9503167 Theory +hep-th/9503211 Theory +hep-th/9503231 Theory +hep-th/9504015 Theory +hep-th/9504023 Theory +hep-th/9504038 Theory +hep-th/9504058 Theory +hep-th/9504065 Theory +hep-th/9504115 Theory +hep-th/9504149 Theory +hep-th/9505097 Theory +hep-th/9505098 Theory +hep-th/9505103 Theory +hep-th/9505108 Theory +hep-th/9505169 Theory +hep-th/9505189 Theory +hep-th/9506006 Theory +hep-th/9506026 Theory +hep-th/9506049 Theory +hep-th/9506097 Theory +hep-th/9506134 Theory +hep-th/9506154 Theory +hep-th/9506165 Theory +hep-th/9506171 Theory +hep-th/9506173 Theory +hep-th/9506175 Theory +hep-th/9506197 Theory +hep-th/9506208 Theory +hep-th/9506215 Theory +hep-th/9507019 Theory +hep-th/9507024 Theory +hep-th/9507037 Theory +hep-th/9507048 Theory +hep-th/9507049 Theory +hep-th/9507052 Theory +hep-th/9507067 Theory +hep-th/9507095 Theory +hep-th/9507110 Theory +hep-th/9507166 Theory +hep-th/9508046 Theory +hep-th/9508053 Theory +hep-th/9508092 Theory +hep-th/9508097 Theory +hep-th/9508138 Theory +hep-th/9508145 Theory +hep-th/9508162 Theory +hep-th/9509001 Theory +hep-th/9509006 Theory +hep-th/9509015 Theory +hep-th/9509029 Theory +hep-th/9509046 Theory +hep-th/9509049 Theory +hep-th/9509067 Theory +hep-th/9509083 Theory +hep-th/9509084 Theory +hep-th/9509085 Theory +hep-th/9509090 Theory +hep-th/9509093 Theory +hep-th/9509107 Theory +hep-th/9509117 Theory +hep-th/9509124 Theory +hep-th/9510001 Theory +hep-th/9510014 Theory +hep-th/9510042 Theory +hep-th/9510054 Theory +hep-th/9510056 Theory +hep-th/9510061 Theory +hep-th/9510072 Theory +hep-th/9510140 Theory +hep-th/9510156 Theory +hep-th/9510160 Theory +hep-th/9510163 Theory +hep-th/9510164 Theory +hep-th/9510165 Theory +hep-th/9510172 Theory +hep-th/9510176 Theory +hep-th/9510232 Theory +hep-th/9511001 Theory +hep-th/9511005 Theory +hep-th/9511011 Theory +hep-th/9511024 Theory +hep-th/9511037 Theory +hep-th/9511069 Theory +hep-th/9511085 Theory +hep-th/9511107 Theory +hep-th/9511117 Theory +hep-th/9511127 Theory +hep-th/9511150 Theory +hep-th/9511176 Theory +hep-th/9511183 Theory +hep-th/9511185 Theory +hep-th/9511191 Theory +hep-th/9511194 Theory +hep-th/9511196 Theory +hep-th/9511201 Theory +hep-th/9511229 Theory +hep-th/9512039 Theory +hep-th/9512044 Theory +hep-th/9512077 Theory +hep-th/9512083 Theory +hep-th/9512088 Theory +hep-th/9512096 Theory +hep-th/9512109 Theory +hep-th/9512110 Theory +hep-th/9512116 Theory +hep-th/9512132 Theory +hep-th/9512139 Theory +hep-th/9512141 Theory +hep-th/9512159 Theory +hep-th/9512176 Theory +hep-th/9512195 Theory +hep-th/9512199 Theory +hep-th/9601013 Theory +hep-th/9601030 Theory +hep-th/9601093 Theory +hep-th/9601112 Theory +hep-th/9601117 Theory +hep-th/9601129 Theory +hep-th/9601139 Theory +hep-th/9601178 Theory +hep-th/9602052 Theory +hep-th/9602076 Theory +hep-th/9602092 Theory +hep-th/9602109 Theory +hep-th/9602123 Theory +hep-th/9602134 Theory +hep-th/9602161 Theory +hep-th/9602166 Theory +hep-th/9602172 Theory +hep-th/9603005 Theory +hep-th/9603025 Theory +hep-th/9603026 Theory +hep-th/9603039 Theory +hep-th/9603054 Theory +hep-th/9603056 Theory +hep-th/9603079 Theory +hep-th/9603104 Theory +hep-th/9603121 Theory +hep-th/9603130 Theory +hep-th/9603134 Theory +hep-th/9603167 Theory +hep-th/9603184 Theory +hep-th/9603205 Theory +hep-th/9604005 Theory +hep-th/9604020 Theory +hep-th/9604029 Theory +hep-th/9604041 Theory +hep-th/9604056 Theory +hep-th/9604085 Theory +hep-th/9604123 Theory +hep-th/9604128 Theory +hep-th/9604159 Theory +hep-th/9604176 Theory +hep-th/9604183 Theory +hep-th/9604194 Theory +hep-th/9604200 Theory +hep-th/9605006 Theory +hep-th/9605011 Theory +hep-th/9605014 Theory +hep-th/9605029 Theory +hep-th/9605052 Theory +hep-th/9605081 Theory +hep-th/9605092 Theory +hep-th/9605129 Theory +hep-th/9605130 Theory +hep-th/9605133 Theory +hep-th/9605161 Theory +hep-th/9605165 Theory +hep-th/9605182 Theory +hep-th/9605189 Theory +hep-th/9605194 Theory +hep-th/9605235 Theory +hep-th/9606019 Theory +hep-th/9606045 Theory +hep-th/9606047 Theory +hep-th/9606089 Theory +hep-th/9606091 Theory +hep-th/9606110 Theory +hep-th/9606150 Theory +hep-th/9606151 Theory +hep-th/9606188 Theory +hep-th/9607017 Theory +hep-th/9607025 Theory +hep-th/9607031 Theory +hep-th/9607053 Theory +hep-th/9607086 Theory +hep-th/9607092 Theory +hep-th/9607094 Theory +hep-th/9607133 Theory +hep-th/9607152 Theory +hep-th/9607174 Theory +hep-th/9607183 Theory +hep-th/9607187 Theory +hep-th/9607194 Theory +hep-th/9607195 Theory +hep-th/9607196 Theory +hep-th/9607209 Theory +hep-th/9607231 Theory +hep-th/9607235 Theory +hep-th/9607237 Theory +hep-th/9608069 Theory +hep-th/9608102 Theory +hep-th/9608115 Theory +hep-th/9608133 Theory +hep-th/9608137 Theory +hep-th/9608148 Theory +hep-th/9608153 Theory +hep-th/9608159 Theory +hep-th/9609044 Theory +hep-th/9609093 Theory +hep-th/9609115 Theory +hep-th/9610003 Theory +hep-th/9610059 Theory +hep-th/9610070 Theory +hep-th/9610089 Theory +hep-th/9610096 Theory +hep-th/9610114 Theory +hep-th/9610133 Theory +hep-th/9610145 Theory +hep-th/9610198 Theory +hep-th/9610235 Theory +hep-th/9610245 Theory +hep-th/9610246 Theory +hep-th/9611022 Theory +hep-th/9611025 Theory +hep-th/9611050 Theory +hep-th/9611084 Theory +hep-th/9611091 Theory +hep-th/9611106 Theory +hep-th/9611108 Theory +hep-th/9611120 Theory +hep-th/9611128 Theory +hep-th/9611132 Theory +hep-th/9611137 Theory +hep-th/9611139 Theory +hep-th/9611200 Theory +hep-th/9611203 Theory +hep-th/9611220 Theory +hep-th/9611221 Theory +hep-th/9611225 Theory +hep-th/9612003 Theory +hep-th/9612009 Theory +hep-th/9612010 Theory +hep-th/9612026 Theory +hep-th/9612038 Theory +hep-th/9612044 Theory +hep-th/9612045 Theory +hep-th/9612056 Theory +hep-th/9612082 Theory +hep-th/9612091 Theory +hep-th/9612121 Theory +hep-th/9612161 Theory +hep-th/9612184 Theory +hep-th/9612187 Theory +hep-th/9612195 Theory +hep-th/9612198 Theory +hep-th/9612215 Theory +hep-th/9612235 Theory +hep-th/9612254 Theory +hep-th/9612255 Theory +hep-th/9701001 Theory +hep-th/9701010 Theory +hep-th/9701025 Theory +hep-th/9701034 Theory +hep-th/9701039 Theory +hep-th/9701078 Theory +hep-th/9701079 Theory +hep-th/9701088 Theory +hep-th/9701089 Theory +hep-th/9701112 Theory +hep-th/9701124 Theory +hep-th/9701128 Theory +hep-th/9701164 Theory +hep-th/9701192 Theory +hep-th/9702001 Theory +hep-th/9702009 Theory +hep-th/9702032 Theory +hep-th/9702046 Theory +hep-th/9702062 Theory +hep-th/9702070 Theory +hep-th/9702113 Theory +hep-th/9702120 Theory +hep-th/9702124 Theory +hep-th/9702157 Theory +hep-th/9702162 Theory +hep-th/9703008 Theory +hep-th/9703013 Theory +hep-th/9703033 Theory +hep-th/9703056 Theory +hep-th/9703068 Theory +hep-th/9703087 Theory +hep-th/9703095 Theory +hep-th/9703103 Theory +hep-th/9703113 Theory +hep-th/9703117 Theory +hep-th/9703167 Theory +hep-th/9703170 Theory +hep-th/9703174 Theory +hep-th/9703175 Theory +hep-th/9703181 Theory +hep-th/9703183 Theory +hep-th/9704007 Theory +hep-th/9704016 Theory +hep-th/9704031 Theory +hep-th/9704042 Theory +hep-th/9704050 Theory +hep-th/9704060 Theory +hep-th/9704069 Theory +hep-th/9704072 Theory +hep-th/9704091 Theory +hep-th/9704099 Theory +hep-th/9704115 Theory +hep-th/9704122 Theory +hep-th/9704138 Theory +hep-th/9704159 Theory +hep-th/9704200 Theory +hep-th/9704201 Theory +hep-th/9704208 Theory +hep-th/9704211 Theory +hep-th/9705012 Theory +hep-th/9705018 Theory +hep-th/9705029 Theory +hep-th/9705051 Theory +hep-th/9705066 Theory +hep-th/9705071 Theory +hep-th/9705080 Theory +hep-th/9705131 Theory +hep-th/9705164 Theory +hep-th/9705209 Theory +hep-th/9705211 Theory +hep-th/9705214 Theory +hep-th/9705238 Theory +hep-th/9706011 Theory +hep-th/9706019 Theory +hep-th/9706033 Theory +hep-th/9706043 Theory +hep-th/9706045 Theory +hep-th/9706052 Theory +hep-th/9706060 Theory +hep-th/9706067 Theory +hep-th/9706092 Theory +hep-th/9706118 Theory +hep-th/9706121 Theory +hep-th/9706135 Theory +hep-th/9706146 Theory +hep-th/9706157 Theory +hep-th/9706161 Theory +hep-th/9706174 Theory +hep-th/9706182 Theory +hep-th/9706194 Theory +hep-th/9707023 Theory +hep-th/9707069 Theory +hep-th/9707089 Theory +hep-th/9707096 Theory +hep-th/9707104 Theory +hep-th/9707114 Theory +hep-th/9707124 Theory +hep-th/9707141 Theory +hep-th/9707166 Theory +hep-th/9707169 Theory +hep-th/9707201 Theory +hep-th/9707206 Theory +hep-th/9707230 Theory +hep-th/9707234 Theory +hep-th/9707258 Theory +hep-th/9707260 Theory +hep-th/9708010 Theory +hep-th/9708020 Theory +hep-th/9708024 Theory +hep-th/9708053 Theory +hep-th/9708057 Theory +hep-th/9708080 Theory +hep-th/9708083 Theory +hep-th/9708104 Theory +hep-th/9708108 Theory +hep-th/9708114 Theory +hep-th/9708144 Theory +hep-th/9708169 Theory +hep-th/9709001 Theory +hep-th/9709021 Theory +hep-th/9709025 Theory +hep-th/9709052 Theory +hep-th/9709062 Theory +hep-th/9709073 Theory +hep-th/9709090 Theory +hep-th/9709128 Theory +hep-th/9709135 Theory +hep-th/9709152 Theory +hep-th/9709183 Theory +hep-th/9709192 Theory +hep-th/9709207 Theory +hep-th/9709212 Theory +hep-th/9709217 Theory +math/0502297 Symplectic Geometry +math/0506396 Geometric Topology +math/0701309 Algebraic Topology +math/9201201 Complex Variables +math/9201205 Metric Geometry +math/9201206 Functional Analysis +math/9201207 Functional Analysis +math/9201211 Functional Analysis +math/9201212 Functional Analysis +math/9201214 Functional Analysis +math/9201215 Functional Analysis +math/9201219 Functional Analysis +math/9201220 Functional Analysis +math/9201221 Functional Analysis +math/9201223 Functional Analysis +math/9201224 Functional Analysis +math/9201226 Functional Analysis +math/9201229 Functional Analysis +math/9201232 Functional Analysis +math/9201235 Functional Analysis +math/9201238 Logic +math/9201240 Logic +math/9201242 Logic +math/9201245 Logic +math/9201248 Logic +math/9201250 Logic +math/9201251 Logic +math/9201259 Differential Geometry +math/9201262 History and Overview +math/9201264 Group Theory +math/9201269 Numerical Analysis +math/9201273 Dynamical Systems +math/9201276 Dynamical Systems +math/9201278 Dynamical Systems +math/9201287 Dynamical Systems +math/9201296 Dynamical Systems +math/9201297 Dynamical Systems +math/9201303 Combinatorics +math/9201304 Group Theory +math/9201305 Combinatorics +math/9202203 Functional Analysis +math/9203201 Complex Variables +math/9204204 Logic +math/9204206 Logic +math/9204208 Logic +math/9204210 Logic +math/9204214 Functional Analysis +math/9204218 Logic +math/9204223 Differential Geometry +math/9204233 Metric Geometry +math/9204234 Number Theory +math/9204236 Classical Analysis and ODEs +math/9204239 Analysis of PDEs +math/9204241 Dynamical Systems +math/9205201 Logic +math/9205206 Functional Analysis +math/9205211 History and Overview +math/9206201 Functional Analysis +math/9206202 Functional Analysis +math/9206203 Combinatorics +math/9207205 Logic +math/9207210 Number Theory +math/9207212 Analysis of PDEs +math/9207215 Differential Geometry +math/9207216 Complex Variables +math/9207217 Algebraic Topology +math/9207221 Classical Analysis and ODEs +math/9209202 Logic +math/9209204 Logic +math/9209205 Logic +math/9209207 Logic +math/9209211 Functional Analysis +math/9209212 Functional Analysis +math/9210203 Logic +math/9210204 Logic +math/9210207 Functional Analysis +math/9210214 Number Theory +math/9210219 Group Theory +math/9211203 Logic +math/9211205 Logic +math/9211206 Logic +math/9211207 Functional Analysis +math/9211213 Logic +math/9211216 Metric Geometry +math/9212201 Logic +math/9212203 Functional Analysis +math/9212210 Dynamical Systems +math/9301202 Combinatorics +math/9301210 Logic +math/9301213 Analysis of PDEs +math/9301215 Classical Analysis and ODEs +math/9301217 Classical Analysis and ODEs +math/9301218 Analysis of PDEs +math/9302201 Logic +math/9302202 Logic +math/9302204 Functional Analysis +math/9302205 Functional Analysis +math/9304201 Logic +math/9304203 Logic +math/9304204 Logic +math/9304205 Logic +math/9304213 Functional Analysis +math/9304216 Numerical Analysis +math/9304217 Dynamical Systems +math/9306202 Group Theory +math/9306204 Group Theory +math/9306205 Group Theory +math/9306213 Combinatorics +math/9306215 Logic +math/9306216 Differential Geometry +math/9307201 Functional Analysis +math/9307202 Combinatorics +math/9307216 Classical Analysis and ODEs +math/9307223 Classical Analysis and ODEs +math/9307225 Commutative Algebra +math/9307226 Differential Geometry +math/9307229 Metric Geometry +math/9307231 Number Theory +math/9307232 Spectral Theory +math/9307233 Geometric Topology +math/9308201 Logic +math/9308202 Logic +math/9308206 Functional Analysis +math/9308211 Logic +math/9308217 Logic +math/9309201 Complex Variables +math/9309207 Logic +math/9309211 Functional Analysis +math/9309212 Combinatorics +math/9310204 Group Theory +math/9310205 Group Theory +math/9310206 Group Theory +math/9310208 Group Theory +math/9310209 Group Theory +math/9310210 Logic +math/9310211 Logic +math/9310212 Logic +math/9310213 Logic +math/9310214 Functional Analysis +math/9310229 Spectral Theory +math/9310230 Rings and Algebras +math/9310234 Metric Geometry +math/9310236 Probability +math/9311201 Group Theory +math/9311202 Logic +math/9311203 Logic +math/9311206 Logic +math/9311211 Logic +math/9311212 Logic +math/9312201 Complex Variables +math/9312207 Functional Analysis +math/9312211 Classical Analysis and ODEs +math/9312214 Combinatorics +math/9401203 Logic +math/9401207 Functional Analysis +math/9401212 Logic +math/9401215 Logic +math/9401216 Logic +math/9401220 Algebraic Topology +math/9401225 Dynamical Systems +math/9402207 Functional Analysis +math/9402208 Functional Analysis +math/9402211 Functional Analysis +math/9402216 Classical Analysis and ODEs +math/9403204 Commutative Algebra +math/9403215 Combinatorics +math/9403220 Logic +math/9403221 Dynamical Systems +math/9404203 Group Theory +math/9404205 Logic +math/9404206 Logic +math/9404217 Classical Analysis and ODEs +math/9404228 Geometric Topology +math/9404235 Dynamical Systems +math/9404236 History and Overview +math/9405204 Logic +math/9405212 Combinatorics +math/9405215 Logic +math/9406201 Complex Variables +math/9406202 Group Theory +math/9406207 Group Theory +math/9406211 Functional Analysis +math/9406213 Functional Analysis +math/9406214 Probability +math/9406218 Functional Analysis +math/9406219 Logic +math/9406220 Combinatorics +math/9406221 Classical Analysis and ODEs +math/9406226 Classical Analysis and ODEs +math/9406230 Dynamical Systems +math/9407202 Number Theory +math/9407203 Logic +math/9407208 Logic +math/9407211 Combinatorics +math/9407212 Combinatorics +math/9407213 Classical Analysis and ODEs +math/9408205 Functional Analysis +math/9408206 Functional Analysis +math/9408210 Classical Analysis and ODEs +math/9408214 Logic +math/9409201 Logic +math/9409206 Logic +math/9409210 Numerical Analysis +math/9409216 Combinatorics +math/9409228 Classical Analysis and ODEs +math/9410202 Representation Theory +math/9410203 Functional Analysis +math/9410217 Spectral Theory +math/9410219 Algebraic Geometry +math/9411205 Logic +math/9411207 Logic +math/9411208 Logic +math/9411213 Number Theory +math/9411217 Combinatorics +math/9411218 Combinatorics +math/9411226 Classical Analysis and ODEs +math/9411234 Logic +math/9411239 Combinatorics +math/9411240 Combinatorics +math/9412203 Group Theory +math/9412204 Group Theory +math/9412205 Dynamical Systems +math/9412206 Representation Theory +math/9412209 Logic +math/9412210 Commutative Algebra +math/9412214 Functional Analysis +math/9412215 Functional Analysis +math/9412218 Functional Analysis +math/9412223 Combinatorics +math/9412231 Logic +math/9501202 Geometric Topology +math/9501211 Functional Analysis +math/9501217 Metric Geometry +math/9501223 Logic +math/9501227 Dynamical Systems +math/9501229 Algebraic Topology +math/9501234 Combinatorics +math/9502202 Geometric Topology +math/9502206 Logic +math/9502212 Combinatorics +math/9502217 Combinatorics +math/9502223 Combinatorics +math/9502228 Classical Analysis and ODEs +math/9502235 Dynamical Systems +math/9502237 Combinatorics +math/9502238 Combinatorics +math/9503201 Complex Variables +math/9503213 Functional Analysis +math/9503217 Category Theory +math/9503219 Number Theory +math/9503229 Algebraic Topology +math/9503230 Algebraic Topology +math/9503231 Algebraic Topology +math/9503233 Combinatorics +math/9503234 Combinatorics +math/9503235 Optimization and Control +math/9504206 Dynamical Systems +math/9504214 Combinatorics +math/9504228 Optimization and Control +math/9504229 Number Theory +math/9505208 Group Theory +math/9505211 Combinatorics +math/9506203 Complex Variables +math/9506205 Group Theory +math/9506206 Group Theory +math/9506210 Number Theory +math/9506214 Combinatorics +math/9506215 Combinatorics +math/9506218 Representation Theory +math/9507201 Group Theory +math/9507202 Group Theory +math/9507203 Group Theory +math/9507207 Geometric Topology +math/9507213 Logic +math/9507220 Combinatorics +math/9508201 Logic +math/9508202 Representation Theory +math/9508203 Representation Theory +math/9508204 Logic +math/9508205 Logic +math/9508209 Metric Geometry +math/9508211 Number Theory +math/9508216 Differential Geometry +math/9508221 Logic +math/9509201 Complex Variables +math/9509212 Logic +math/9509214 Functional Analysis +math/9509216 Functional Analysis +math/9509226 Logic +math/9510205 Complex Variables +math/9510210 Algebraic Topology +math/9511201 Complex Variables +math/9511203 Complex Variables +math/9511205 Logic +math/9511209 Number Theory +math/9511211 Complex Variables +math/9512218 Analysis of PDEs +math/9512223 Classical Analysis and ODEs +math/9512224 Combinatorics +math/9512227 Logic +math/9512228 Logic +math/9512230 Classical Analysis and ODEs +math/9601202 Group Theory +math/9601203 Logic +math/9601206 Spectral Theory +math/9601217 Number Theory +math/9601219 Logic +math/9602220 Representation Theory +math/9602221 Number Theory +math/9603203 Complex Variables +math/9603207 Functional Analysis +math/9603208 Metric Geometry +math/9603213 Functional Analysis +math/9603216 Classical Analysis and ODEs +math/9604202 Complex Variables +math/9604203 Complex Variables +math/9604210 Logic +math/9604217 Functional Analysis +math/9604220 Functional Analysis +math/9604225 Differential Geometry +math/9604226 Complex Variables +math/9604230 Dynamical Systems +math/9604232 Dynamical Systems +math/9604239 Dynamical Systems +math/9604246 Rings and Algebras +math/9605201 Group Theory +math/9605202 Group Theory +math/9605204 Group Theory +math/9605205 Group Theory +math/9605206 Group Theory +math/9605207 Group Theory +math/9605214 Functional Analysis +math/9605221 Metric Geometry +math/9605223 Metric Geometry +math/9605230 Classical Analysis and ODEs +math/9605231 Representation Theory +math/9605236 Rings and Algebras +math/9606201 Complex Variables +math/9606202 Complex Variables +math/9606203 Complex Variables +math/9606204 Complex Variables +math/9606207 Logic +math/9606211 Functional Analysis +math/9606220 Dynamical Systems +math/9606221 Dynamical Systems +math/9606222 Dynamical Systems +math/9606224 Combinatorics +math/9606229 Logic +math/9606232 Combinatorics +math/9607205 Functional Analysis +math/9607212 Functional Analysis +math/9607216 Algebraic Geometry +math/9607223 Algebraic Geometry +math/9607225 Algebraic Geometry +math/9607227 Logic +math/9607230 Operator Algebras +math/9608201 Complex Variables +math/9608202 Complex Variables +math/9608207 Algebraic Geometry +math/9608209 Algebraic Geometry +math/9608214 Commutative Algebra +math/9608215 Logic +math/9608216 Rings and Algebras +math/9609201 Complex Variables +math/9609218 Logic +math/9610201 Complex Variables +math/9610203 Complex Variables +math/9610206 Logic +math/9610215 Functional Analysis +math/9610217 Classical Analysis and ODEs +math/9610221 Algebraic Geometry +math/9610223 Dynamical Systems +math/9610224 Classical Analysis and ODEs +math/9610227 Logic +math/9610228 Number Theory +math/9611205 Group Theory +math/9611206 Group Theory +math/9611211 Complex Variables +math/9611213 Differential Geometry +math/9611216 Dynamical Systems +math/9611225 Number Theory +math/9611226 Number Theory +math/9612202 Complex Variables +math/9612204 Complex Variables +math/9612205 Complex Variables +math/9612206 Group Theory +math/9612217 Algebraic Geometry +math/9612223 Dynamical Systems +math/9612224 Classical Analysis and ODEs +math/9612225 Classical Analysis and ODEs +math/9612227 Logic +math/9612228 Logic +math/9612229 Number Theory +math/9701204 Functional Analysis +math/9701206 Functional Analysis +math/9701215 Dynamical Systems +math/9701225 Probability +math/9701229 Number Theory +math/9702202 Group Theory +math/9702211 Functional Analysis +math/9702214 Functional Analysis +math/9702216 Functional Analysis +math/9702228 Logic +math/9702232 Number Theory +math/9703201 Group Theory +math/9703202 Group Theory +math/9703206 Geometric Topology +math/9703219 Logic +math/9703221 Logic +math/9704201 Complex Variables +math/9704211 Functional Analysis +math/9704212 Functional Analysis +math/9704213 Functional Analysis +math/9704218 Rings and Algebras +math/9704225 Combinatorics +math/9704233 Group Theory +math/9705202 Complex Variables +math/9705208 Group Theory +math/9705211 Functional Analysis +math/9705213 Logic +math/9705221 Geometric Topology +math/9705224 Classical Analysis and ODEs +math/9705225 Logic +math/9705227 Complex Variables +math/9705228 Rings and Algebras +math/9705230 Number Theory +math/9706201 Complex Variables +math/9706213 Functional Analysis +math/9706223 Logic +math/9706229 Number Theory +math/9707207 Logic +math/9707211 Functional Analysis +math/9707216 Combinatorics +math/9707229 Analysis of PDEs +math/9707231 Commutative Algebra +math/9707233 Rings and Algebras +math/9707235 Number Theory +math/9707236 Number Theory +math/9707237 Number Theory +math/9707238 Number Theory +math/9708204 Functional Analysis +math/9708205 Functional Analysis +math/9708210 Logic +math/9708211 Dynamical Systems +math/9708215 Number Theory +math/9708216 Number Theory +math/9709201 Complex Variables +math/9709202 Group Theory +math/9709210 Functional Analysis +math/9709215 Functional Analysis +math/9709224 Dynamical Systems +math/9709231 Logic +math/9709234 Number Theory +math/9709235 Number Theory +mtrl-th/9411004 Materials Science +mtrl-th/9411005 Materials Science +mtrl-th/9412007 Materials Science +mtrl-th/9502001 Materials Science +mtrl-th/9503002 Materials Science +mtrl-th/9503009 Materials Science +mtrl-th/9504001 Materials Science +mtrl-th/9506003 Materials Science +mtrl-th/9508002 Materials Science +mtrl-th/9508006 Materials Science +mtrl-th/9508007 Materials Science +mtrl-th/9508010 Materials Science +mtrl-th/9510003 Materials Science +mtrl-th/9510004 Materials Science +mtrl-th/9511001 Materials Science +mtrl-th/9511003 Materials Science +mtrl-th/9512001 Materials Science +mtrl-th/9512003 Materials Science +mtrl-th/9601003 Materials Science +mtrl-th/9602003 Materials Science +mtrl-th/9603001 Materials Science +mtrl-th/9603009 Materials Science +mtrl-th/9605001 Materials Science +mtrl-th/9606002 Materials Science +mtrl-th/9607008 Materials Science +mtrl-th/9607011 Materials Science +mtrl-th/9607015 Materials Science +mtrl-th/9608005 Materials Science +mtrl-th/9609002 Materials Science +mtrl-th/9609006 Materials Science +mtrl-th/9609010 Materials Science +nucl-ex/9504001 +nucl-ex/9704006 +nucl-ex/9706010 +nucl-ex/9706011 +nucl-ex/9707008 +nucl-th/9301009 +nucl-th/9312013 +nucl-th/9402029 +nucl-th/9403005 +nucl-th/9408023 +nucl-th/9409011 +nucl-th/9409022 +nucl-th/9411017 +nucl-th/9503028 +nucl-th/9505028 +nucl-th/9505030 +nucl-th/9506012 +nucl-th/9508017 +nucl-th/9508027 +nucl-th/9509038 +nucl-th/9510010 +nucl-th/9510029 +nucl-th/9510042 +nucl-th/9510043 +nucl-th/9511014 +nucl-th/9511018 +nucl-th/9512016 +nucl-th/9512017 +nucl-th/9512032 +nucl-th/9601021 +nucl-th/9601031 +nucl-th/9602001 +nucl-th/9603017 +nucl-th/9604021 +nucl-th/9605033 +nucl-th/9606010 +nucl-th/9606012 +nucl-th/9606022 +nucl-th/9606051 +nucl-th/9606057 +nucl-th/9608036 +nucl-th/9609014 +nucl-th/9609022 +nucl-th/9612010 +nucl-th/9612038 +nucl-th/9612047 +nucl-th/9701005 +nucl-th/9701020 +nucl-th/9702032 +nucl-th/9702033 +nucl-th/9702044 +nucl-th/9703006 +nucl-th/9704010 +nucl-th/9704043 +nucl-th/9704052 +nucl-th/9705037 +nucl-th/9706026 +nucl-th/9706074 +nucl-th/9706079 +nucl-th/9707028 +nucl-th/9707030 +nucl-th/9707034 +nucl-th/9707048 +nucl-th/9708028 +nucl-th/9709004 +nucl-th/9709015 +nucl-th/9709031 +patt-sol/9303004 Pattern Formation and Solitons +patt-sol/9304001 Pattern Formation and Solitons +patt-sol/9304004 Pattern Formation and Solitons +patt-sol/9305001 Pattern Formation and Solitons +patt-sol/9305009 Pattern Formation and Solitons +patt-sol/9306001 Pattern Formation and Solitons +patt-sol/9307001 Pattern Formation and Solitons +patt-sol/9309001 Pattern Formation and Solitons +patt-sol/9310006 Pattern Formation and Solitons +patt-sol/9311002 Pattern Formation and Solitons +patt-sol/9311003 Pattern Formation and Solitons +patt-sol/9401004 Pattern Formation and Solitons +patt-sol/9403002 Pattern Formation and Solitons +patt-sol/9403004 Pattern Formation and Solitons +patt-sol/9404002 Pattern Formation and Solitons +patt-sol/9404003 Pattern Formation and Solitons +patt-sol/9407002 Pattern Formation and Solitons +patt-sol/9409005 Pattern Formation and Solitons +patt-sol/9412002 Pattern Formation and Solitons +patt-sol/9412003 Pattern Formation and Solitons +patt-sol/9501003 Pattern Formation and Solitons +patt-sol/9502008 Pattern Formation and Solitons +patt-sol/9504004 Pattern Formation and Solitons +patt-sol/9506001 Pattern Formation and Solitons +patt-sol/9506003 Pattern Formation and Solitons +patt-sol/9508001 Pattern Formation and Solitons +patt-sol/9509003 Pattern Formation and Solitons +patt-sol/9509004 Pattern Formation and Solitons +patt-sol/9510002 Pattern Formation and Solitons +patt-sol/9510005 Pattern Formation and Solitons +patt-sol/9601001 Pattern Formation and Solitons +patt-sol/9602004 Pattern Formation and Solitons +patt-sol/9602005 Pattern Formation and Solitons +patt-sol/9603002 Pattern Formation and Solitons +patt-sol/9604001 Pattern Formation and Solitons +patt-sol/9605001 Pattern Formation and Solitons +patt-sol/9606001 Pattern Formation and Solitons +patt-sol/9607006 Pattern Formation and Solitons +patt-sol/9608002 Pattern Formation and Solitons +patt-sol/9608003 Pattern Formation and Solitons +patt-sol/9608009 Pattern Formation and Solitons +patt-sol/9612001 Pattern Formation and Solitons +patt-sol/9701006 Pattern Formation and Solitons +patt-sol/9701009 Pattern Formation and Solitons +patt-sol/9702003 Pattern Formation and Solitons +patt-sol/9703006 Pattern Formation and Solitons +patt-sol/9704001 Pattern Formation and Solitons +patt-sol/9705001 Pattern Formation and Solitons +patt-sol/9705002 Pattern Formation and Solitons +patt-sol/9705007 Pattern Formation and Solitons +patt-sol/9706006 Pattern Formation and Solitons +patt-sol/9707001 Pattern Formation and Solitons +patt-sol/9707002 Pattern Formation and Solitons +patt-sol/9708003 Pattern Formation and Solitons +patt-sol/9709003 Pattern Formation and Solitons +patt-sol/9709006 Pattern Formation and Solitons +physics/9610002 Atmospheric and Oceanic Physics +physics/9610003 Computational Physics +physics/9610004 Computational Physics +physics/9610007 Fluid Dynamics +physics/9610008 Accelerator Physics +physics/9610011 Atmospheric and Oceanic Physics +physics/9610014 Fluid Dynamics +physics/9610017 Biological Physics +physics/9610018 Atomic Physics +physics/9610019 Computational Physics +physics/9610021 Atmospheric and Oceanic Physics +physics/9611003 Atomic Physics +physics/9611007 Atomic Physics +physics/9611010 Computational Physics +physics/9611011 Physics Education +physics/9611016 Data Analysis, Statistics and Probability +physics/9611017 Plasma Physics +physics/9611019 Atomic Physics +physics/9611021 Atomic Physics +physics/9611022 Physics Education +physics/9611025 Plasma Physics +physics/9611027 Chemical Physics +physics/9611029 Chemical Physics +physics/9612004 General Physics +physics/9612006 Chemical Physics +physics/9612007 Chemical Physics +physics/9612010 General Physics +physics/9612011 Atomic Physics +physics/9612012 Chemical Physics +physics/9701005 Accelerator Physics +physics/9701007 Atomic Physics +physics/9701013 Accelerator Physics +physics/9701026 Data Analysis, Statistics and Probability +physics/9702005 Popular Physics +physics/9702014 Popular Physics +physics/9702016 Accelerator Physics +physics/9702020 Chemical Physics +physics/9702026 General Physics +physics/9702027 Atomic Physics +physics/9703003 Optics +physics/9703005 History and Philosophy of Physics +physics/9703006 General Physics +physics/9703014 Popular Physics +physics/9703017 History and Philosophy of Physics +physics/9703019 Chemical Physics +physics/9703020 General Physics +physics/9703023 General Physics +physics/9703026 Atmospheric and Oceanic Physics +physics/9703028 General Physics +physics/9703029 Classical Physics +physics/9704011 Plasma Physics +physics/9704014 General Physics +physics/9704015 General Physics +physics/9704017 General Physics +physics/9704018 Physics Education +physics/9704020 Chemical Physics +physics/9704021 Instrumentation and Detectors +physics/9704023 Popular Physics +physics/9704024 General Physics +physics/9704027 Chemical Physics +physics/9705003 Physics Education +physics/9705004 Popular Physics +physics/9705007 General Physics +physics/9705014 General Physics +physics/9705015 General Physics +physics/9705017 Atomic Physics +physics/9705018 General Physics +physics/9705019 General Physics +physics/9705020 Fluid Dynamics +physics/9705025 Physics Education +physics/9705030 General Physics +physics/9705031 General Physics +physics/9705032 General Physics +physics/9705033 Geophysics +physics/9705034 Geophysics +physics/9705035 Geophysics +physics/9705036 Fluid Dynamics +physics/9705043 General Physics +physics/9706001 General Physics +physics/9706002 General Physics +physics/9706007 Atmospheric and Oceanic Physics +physics/9706011 General Physics +physics/9706016 Chemical Physics +physics/9706018 Biological Physics +physics/9706019 Biological Physics +physics/9706022 General Physics +physics/9706023 Popular Physics +physics/9706025 Data Analysis, Statistics and Probability +physics/9706032 General Physics +physics/9706035 Accelerator Physics +physics/9706037 General Physics +physics/9706038 General Physics +physics/9706039 Accelerator Physics +physics/9706041 Plasma Physics +physics/9707002 Data Analysis, Statistics and Probability +physics/9707003 Atomic Physics +physics/9707004 Atomic Physics +physics/9707014 History and Philosophy of Physics +physics/9707024 Optics +physics/9708002 Classical Physics +physics/9708008 Fluid Dynamics +physics/9708010 Optics +physics/9708012 Chemical Physics +physics/9708013 Accelerator Physics +physics/9708016 Fluid Dynamics +physics/9708017 Plasma Physics +physics/9708019 Plasma Physics +physics/9708020 Computational Physics +physics/9708022 Chemical Physics +physics/9708023 Classical Physics +physics/9708024 Atomic Physics +physics/9708025 Instrumentation and Detectors +physics/9708028 General Physics +physics/9708029 Chemical Physics +physics/9708037 Atmospheric and Oceanic Physics +physics/9709002 Fluid Dynamics +physics/9709006 General Physics +physics/9709012 General Physics +physics/9709015 Chemical Physics +physics/9709017 Popular Physics +physics/9709018 Plasma Physics +physics/9709020 Popular Physics +physics/9709025 Accelerator Physics +physics/9709029 Atomic Physics +physics/9709036 Physics Education +physics/9709037 Chemical Physics +physics/9709038 Physics Education +plasm-ph/9502001 Plasma Physics +plasm-ph/9512002 Plasma Physics +plasm-ph/9602001 Plasma Physics +plasm-ph/9602003 Plasma Physics +plasm-ph/9604001 Plasma Physics +plasm-ph/9604003 Plasma Physics +q-alg/9412001 Quantum Algebra +q-alg/9412002 Quantum Algebra +q-alg/9412003 Quantum Algebra +q-alg/9412004 Quantum Algebra +q-alg/9412005 Quantum Algebra +q-alg/9412006 Quantum Algebra +q-alg/9412007 Quantum Algebra +q-alg/9412008 Quantum Algebra +q-alg/9412009 Quantum Algebra +q-alg/9412010 Quantum Algebra +q-alg/9412012 Quantum Algebra +q-alg/9412013 Quantum Algebra +q-alg/9412014 Quantum Algebra +q-alg/9412017 Quantum Algebra +q-alg/9501003 Quantum Algebra +q-alg/9501005 Quantum Algebra +q-alg/9501008 Quantum Algebra +q-alg/9501014 Quantum Algebra +q-alg/9501016 Quantum Algebra +q-alg/9501017 Quantum Algebra +q-alg/9501018 Quantum Algebra +q-alg/9501022 Quantum Algebra +q-alg/9501024 Quantum Algebra +q-alg/9501032 Quantum Algebra +q-alg/9502003 Quantum Algebra +q-alg/9502005 Quantum Algebra +q-alg/9502008 Quantum Algebra +q-alg/9502013 Quantum Algebra +q-alg/9502015 Quantum Algebra +q-alg/9502017 Quantum Algebra +q-alg/9502018 Quantum Algebra +q-alg/9503011 Quantum Algebra +q-alg/9503013 Quantum Algebra +q-alg/9503014 Quantum Algebra +q-alg/9503015 Quantum Algebra +q-alg/9503016 Quantum Algebra +q-alg/9503022 Quantum Algebra +q-alg/9504001 Quantum Algebra +q-alg/9504002 Quantum Algebra +q-alg/9504003 Quantum Algebra +q-alg/9504004 Quantum Algebra +q-alg/9504007 Quantum Algebra +q-alg/9504010 Quantum Algebra +q-alg/9504011 Quantum Algebra +q-alg/9504012 Quantum Algebra +q-alg/9504013 Quantum Algebra +q-alg/9504014 Quantum Algebra +q-alg/9504017 Quantum Algebra +q-alg/9504018 Quantum Algebra +q-alg/9504019 Quantum Algebra +q-alg/9504021 Quantum Algebra +q-alg/9504022 Quantum Algebra +q-alg/9504024 Quantum Algebra +q-alg/9504026 Quantum Algebra +q-alg/9504028 Quantum Algebra +q-alg/9505001 Quantum Algebra +q-alg/9505002 Quantum Algebra +q-alg/9505003 Quantum Algebra +q-alg/9505005 Quantum Algebra +q-alg/9505008 Quantum Algebra +q-alg/9505009 Quantum Algebra +q-alg/9505010 Quantum Algebra +q-alg/9505012 Quantum Algebra +q-alg/9505015 Quantum Algebra +q-alg/9505018 Quantum Algebra +q-alg/9505019 Quantum Algebra +q-alg/9505020 Quantum Algebra +q-alg/9505022 Quantum Algebra +q-alg/9505024 Quantum Algebra +q-alg/9505027 Quantum Algebra +q-alg/9505029 Quantum Algebra +q-alg/9506001 Quantum Algebra +q-alg/9506002 Quantum Algebra +q-alg/9506003 Quantum Algebra +q-alg/9506004 Quantum Algebra +q-alg/9506008 Quantum Algebra +q-alg/9506009 Quantum Algebra +q-alg/9506010 Quantum Algebra +q-alg/9506011 Quantum Algebra +q-alg/9506012 Quantum Algebra +q-alg/9506013 Quantum Algebra +q-alg/9506015 Quantum Algebra +q-alg/9506018 Quantum Algebra +q-alg/9506021 Quantum Algebra +q-alg/9506023 Quantum Algebra +q-alg/9506025 Quantum Algebra +q-alg/9507002 Quantum Algebra +q-alg/9507010 Quantum Algebra +q-alg/9507011 Quantum Algebra +q-alg/9507016 Quantum Algebra +q-alg/9507017 Quantum Algebra +q-alg/9507018 Quantum Algebra +q-alg/9507020 Quantum Algebra +q-alg/9507022 Quantum Algebra +q-alg/9507023 Quantum Algebra +q-alg/9507024 Quantum Algebra +q-alg/9507035 Quantum Algebra +q-alg/9508004 Quantum Algebra +q-alg/9508005 Quantum Algebra +q-alg/9508006 Quantum Algebra +q-alg/9508007 Quantum Algebra +q-alg/9508008 Quantum Algebra +q-alg/9508016 Quantum Algebra +q-alg/9508018 Quantum Algebra +q-alg/9508020 Quantum Algebra +q-alg/9509001 Quantum Algebra +q-alg/9509002 Quantum Algebra +q-alg/9509005 Quantum Algebra +q-alg/9509009 Quantum Algebra +q-alg/9509010 Quantum Algebra +q-alg/9509011 Quantum Algebra +q-alg/9509012 Quantum Algebra +q-alg/9509013 Quantum Algebra +q-alg/9509014 Quantum Algebra +q-alg/9509017 Quantum Algebra +q-alg/9509020 Quantum Algebra +q-alg/9509021 Quantum Algebra +q-alg/9509022 Quantum Algebra +q-alg/9509023 Quantum Algebra +q-alg/9509024 Quantum Algebra +q-alg/9509025 Quantum Algebra +q-alg/9509026 Quantum Algebra +q-alg/9509027 Quantum Algebra +q-alg/9509028 Quantum Algebra +q-alg/9509029 Quantum Algebra +q-alg/9509030 Quantum Algebra +q-alg/9510003 Quantum Algebra +q-alg/9510004 Quantum Algebra +q-alg/9510006 Quantum Algebra +q-alg/9510008 Quantum Algebra +q-alg/9510009 Quantum Algebra +q-alg/9510010 Quantum Algebra +q-alg/9510012 Quantum Algebra +q-alg/9510013 Quantum Algebra +q-alg/9510015 Quantum Algebra +q-alg/9510016 Quantum Algebra +q-alg/9510017 Quantum Algebra +q-alg/9510020 Quantum Algebra +q-alg/9510022 Quantum Algebra +q-alg/9510024 Quantum Algebra +q-alg/9510025 Quantum Algebra +q-alg/9510026 Quantum Algebra +q-alg/9511001 Quantum Algebra +q-alg/9511003 Quantum Algebra +q-alg/9511004 Quantum Algebra +q-alg/9511005 Quantum Algebra +q-alg/9511008 Quantum Algebra +q-alg/9511010 Quantum Algebra +q-alg/9511011 Quantum Algebra +q-alg/9511012 Quantum Algebra +q-alg/9511014 Quantum Algebra +q-alg/9511015 Quantum Algebra +q-alg/9511016 Quantum Algebra +q-alg/9511018 Quantum Algebra +q-alg/9511020 Quantum Algebra +q-alg/9511021 Quantum Algebra +q-alg/9511022 Quantum Algebra +q-alg/9511023 Quantum Algebra +q-alg/9511024 Quantum Algebra +q-alg/9511025 Quantum Algebra +q-alg/9511026 Quantum Algebra +q-alg/9511027 Quantum Algebra +q-alg/9512001 Quantum Algebra +q-alg/9512002 Quantum Algebra +q-alg/9512003 Quantum Algebra +q-alg/9512005 Quantum Algebra +q-alg/9512006 Quantum Algebra +q-alg/9512007 Quantum Algebra +q-alg/9512010 Quantum Algebra +q-alg/9512012 Quantum Algebra +q-alg/9512013 Quantum Algebra +q-alg/9512014 Quantum Algebra +q-alg/9512016 Quantum Algebra +q-alg/9512021 Quantum Algebra +q-alg/9512024 Quantum Algebra +q-alg/9512027 Quantum Algebra +q-alg/9512028 Quantum Algebra +q-alg/9512029 Quantum Algebra +q-alg/9512030 Quantum Algebra +q-alg/9512031 Quantum Algebra +q-alg/9512033 Quantum Algebra +q-alg/9601002 Quantum Algebra +q-alg/9601004 Quantum Algebra +q-alg/9601005 Quantum Algebra +q-alg/9601013 Quantum Algebra +q-alg/9601015 Quantum Algebra +q-alg/9601017 Quantum Algebra +q-alg/9601018 Quantum Algebra +q-alg/9601019 Quantum Algebra +q-alg/9601020 Quantum Algebra +q-alg/9601022 Quantum Algebra +q-alg/9601024 Quantum Algebra +q-alg/9601025 Quantum Algebra +q-alg/9601027 Quantum Algebra +q-alg/9601029 Quantum Algebra +q-alg/9602002 Quantum Algebra +q-alg/9602003 Quantum Algebra +q-alg/9602004 Quantum Algebra +q-alg/9602005 Quantum Algebra +q-alg/9602006 Quantum Algebra +q-alg/9602009 Quantum Algebra +q-alg/9602010 Quantum Algebra +q-alg/9602012 Quantum Algebra +q-alg/9602013 Quantum Algebra +q-alg/9602018 Quantum Algebra +q-alg/9602019 Quantum Algebra +q-alg/9602021 Quantum Algebra +q-alg/9602024 Quantum Algebra +q-alg/9602025 Quantum Algebra +q-alg/9602026 Quantum Algebra +q-alg/9602027 Quantum Algebra +q-alg/9602028 Quantum Algebra +q-alg/9602031 Quantum Algebra +q-alg/9602033 Quantum Algebra +q-alg/9602034 Quantum Algebra +q-alg/9602037 Quantum Algebra +q-alg/9603001 Quantum Algebra +q-alg/9603002 Quantum Algebra +q-alg/9603003 Quantum Algebra +q-alg/9603005 Quantum Algebra +q-alg/9603007 Quantum Algebra +q-alg/9603011 Quantum Algebra +q-alg/9603013 Quantum Algebra +q-alg/9603014 Quantum Algebra +q-alg/9603015 Quantum Algebra +q-alg/9603016 Quantum Algebra +q-alg/9603018 Quantum Algebra +q-alg/9603019 Quantum Algebra +q-alg/9603020 Quantum Algebra +q-alg/9603022 Quantum Algebra +q-alg/9603024 Quantum Algebra +q-alg/9603025 Quantum Algebra +q-alg/9603026 Quantum Algebra +q-alg/9603027 Quantum Algebra +q-alg/9603028 Quantum Algebra +q-alg/9603029 Quantum Algebra +q-alg/9603030 Quantum Algebra +q-alg/9603031 Quantum Algebra +q-alg/9603033 Quantum Algebra +q-alg/9604001 Quantum Algebra +q-alg/9604005 Quantum Algebra +q-alg/9604006 Quantum Algebra +q-alg/9604007 Quantum Algebra +q-alg/9604013 Quantum Algebra +q-alg/9604014 Quantum Algebra +q-alg/9604016 Quantum Algebra +q-alg/9604018 Quantum Algebra +q-alg/9604020 Quantum Algebra +q-alg/9604022 Quantum Algebra +q-alg/9604023 Quantum Algebra +q-alg/9605001 Quantum Algebra +q-alg/9605002 Quantum Algebra +q-alg/9605003 Quantum Algebra +q-alg/9605004 Quantum Algebra +q-alg/9605005 Quantum Algebra +q-alg/9605006 Quantum Algebra +q-alg/9605007 Quantum Algebra +q-alg/9605008 Quantum Algebra +q-alg/9605009 Quantum Algebra +q-alg/9605010 Quantum Algebra +q-alg/9605012 Quantum Algebra +q-alg/9605014 Quantum Algebra +q-alg/9605016 Quantum Algebra +q-alg/9605017 Quantum Algebra +q-alg/9605019 Quantum Algebra +q-alg/9605020 Quantum Algebra +q-alg/9605023 Quantum Algebra +q-alg/9605026 Quantum Algebra +q-alg/9605027 Quantum Algebra +q-alg/9605028 Quantum Algebra +q-alg/9605029 Quantum Algebra +q-alg/9605030 Quantum Algebra +q-alg/9605032 Quantum Algebra +q-alg/9605034 Quantum Algebra +q-alg/9605035 Quantum Algebra +q-alg/9605036 Quantum Algebra +q-alg/9605037 Quantum Algebra +q-alg/9605038 Quantum Algebra +q-alg/9605039 Quantum Algebra +q-alg/9605040 Quantum Algebra +q-alg/9605041 Quantum Algebra +q-alg/9605042 Quantum Algebra +q-alg/9605043 Quantum Algebra +q-alg/9605044 Quantum Algebra +q-alg/9605046 Quantum Algebra +q-alg/9605048 Quantum Algebra +q-alg/9606003 Quantum Algebra +q-alg/9606005 Quantum Algebra +q-alg/9606006 Quantum Algebra +q-alg/9606007 Quantum Algebra +q-alg/9606008 Quantum Algebra +q-alg/9606011 Quantum Algebra +q-alg/9606015 Quantum Algebra +q-alg/9606016 Quantum Algebra +q-alg/9606017 Quantum Algebra +q-alg/9606019 Quantum Algebra +q-alg/9606021 Quantum Algebra +q-alg/9606023 Quantum Algebra +q-alg/9606024 Quantum Algebra +q-alg/9606025 Quantum Algebra +q-alg/9606026 Quantum Algebra +q-alg/9607001 Quantum Algebra +q-alg/9607005 Quantum Algebra +q-alg/9607006 Quantum Algebra +q-alg/9607007 Quantum Algebra +q-alg/9607008 Quantum Algebra +q-alg/9607010 Quantum Algebra +q-alg/9607011 Quantum Algebra +q-alg/9607013 Quantum Algebra +q-alg/9607014 Quantum Algebra +q-alg/9607015 Quantum Algebra +q-alg/9607016 Quantum Algebra +q-alg/9607017 Quantum Algebra +q-alg/9607018 Quantum Algebra +q-alg/9607019 Quantum Algebra +q-alg/9607024 Quantum Algebra +q-alg/9607025 Quantum Algebra +q-alg/9607026 Quantum Algebra +q-alg/9607028 Quantum Algebra +q-alg/9607030 Quantum Algebra +q-alg/9607031 Quantum Algebra +q-alg/9607032 Quantum Algebra +q-alg/9608001 Quantum Algebra +q-alg/9608002 Quantum Algebra +q-alg/9608005 Quantum Algebra +q-alg/9608007 Quantum Algebra +q-alg/9608008 Quantum Algebra +q-alg/9608009 Quantum Algebra +q-alg/9608012 Quantum Algebra +q-alg/9608013 Quantum Algebra +q-alg/9608014 Quantum Algebra +q-alg/9608016 Quantum Algebra +q-alg/9608018 Quantum Algebra +q-alg/9608019 Quantum Algebra +q-alg/9608020 Quantum Algebra +q-alg/9608021 Quantum Algebra +q-alg/9608022 Quantum Algebra +q-alg/9608023 Quantum Algebra +q-alg/9608024 Quantum Algebra +q-alg/9608025 Quantum Algebra +q-alg/9608026 Quantum Algebra +q-alg/9609004 Quantum Algebra +q-alg/9609007 Quantum Algebra +q-alg/9609010 Quantum Algebra +q-alg/9609013 Quantum Algebra +q-alg/9609014 Quantum Algebra +q-alg/9609015 Quantum Algebra +q-alg/9609018 Quantum Algebra +q-alg/9609021 Quantum Algebra +q-alg/9609024 Quantum Algebra +q-alg/9609027 Quantum Algebra +q-alg/9609029 Quantum Algebra +q-alg/9610001 Quantum Algebra +q-alg/9610003 Quantum Algebra +q-alg/9610006 Quantum Algebra +q-alg/9610008 Quantum Algebra +q-alg/9610013 Quantum Algebra +q-alg/9610014 Quantum Algebra +q-alg/9610016 Quantum Algebra +q-alg/9610017 Quantum Algebra +q-alg/9610018 Quantum Algebra +q-alg/9610019 Quantum Algebra +q-alg/9610020 Quantum Algebra +q-alg/9610022 Quantum Algebra +q-alg/9610023 Quantum Algebra +q-alg/9610024 Quantum Algebra +q-alg/9610026 Quantum Algebra +q-alg/9610030 Quantum Algebra +q-alg/9610032 Quantum Algebra +q-alg/9610033 Quantum Algebra +q-alg/9610034 Quantum Algebra +q-alg/9610035 Quantum Algebra +q-alg/9611001 Quantum Algebra +q-alg/9611002 Quantum Algebra +q-alg/9611003 Quantum Algebra +q-alg/9611004 Quantum Algebra +q-alg/9611006 Quantum Algebra +q-alg/9611007 Quantum Algebra +q-alg/9611011 Quantum Algebra +q-alg/9611012 Quantum Algebra +q-alg/9611014 Quantum Algebra +q-alg/9611015 Quantum Algebra +q-alg/9611016 Quantum Algebra +q-alg/9611017 Quantum Algebra +q-alg/9611018 Quantum Algebra +q-alg/9611019 Quantum Algebra +q-alg/9611021 Quantum Algebra +q-alg/9611022 Quantum Algebra +q-alg/9611023 Quantum Algebra +q-alg/9611024 Quantum Algebra +q-alg/9611025 Quantum Algebra +q-alg/9611026 Quantum Algebra +q-alg/9611027 Quantum Algebra +q-alg/9611029 Quantum Algebra +q-alg/9611030 Quantum Algebra +q-alg/9611032 Quantum Algebra +q-alg/9611033 Quantum Algebra +q-alg/9612001 Quantum Algebra +q-alg/9612002 Quantum Algebra +q-alg/9612003 Quantum Algebra +q-alg/9612005 Quantum Algebra +q-alg/9612007 Quantum Algebra +q-alg/9612008 Quantum Algebra +q-alg/9612010 Quantum Algebra +q-alg/9612011 Quantum Algebra +q-alg/9612013 Quantum Algebra +q-alg/9612014 Quantum Algebra +q-alg/9612015 Quantum Algebra +q-alg/9612017 Quantum Algebra +q-alg/9612018 Quantum Algebra +q-alg/9612019 Quantum Algebra +q-alg/9612023 Quantum Algebra +q-alg/9612026 Quantum Algebra +q-alg/9612028 Quantum Algebra +q-alg/9612030 Quantum Algebra +q-alg/9612034 Quantum Algebra +q-alg/9612035 Quantum Algebra +q-alg/9612036 Quantum Algebra +q-alg/9612037 Quantum Algebra +q-alg/9701001 Quantum Algebra +q-alg/9701002 Quantum Algebra +q-alg/9701003 Quantum Algebra +q-alg/9701005 Quantum Algebra +q-alg/9701006 Quantum Algebra +q-alg/9701007 Quantum Algebra +q-alg/9701008 Quantum Algebra +q-alg/9701009 Quantum Algebra +q-alg/9701010 Quantum Algebra +q-alg/9701012 Quantum Algebra +q-alg/9701013 Quantum Algebra +q-alg/9701015 Quantum Algebra +q-alg/9701017 Quantum Algebra +q-alg/9701019 Quantum Algebra +q-alg/9701020 Quantum Algebra +q-alg/9701021 Quantum Algebra +q-alg/9701023 Quantum Algebra +q-alg/9701024 Quantum Algebra +q-alg/9701025 Quantum Algebra +q-alg/9701027 Quantum Algebra +q-alg/9701028 Quantum Algebra +q-alg/9701032 Quantum Algebra +q-alg/9701033 Quantum Algebra +q-alg/9701034 Quantum Algebra +q-alg/9701035 Quantum Algebra +q-alg/9701036 Quantum Algebra +q-alg/9701038 Quantum Algebra +q-alg/9701039 Quantum Algebra +q-alg/9701041 Quantum Algebra +q-alg/9702003 Quantum Algebra +q-alg/9702004 Quantum Algebra +q-alg/9702005 Quantum Algebra +q-alg/9702007 Quantum Algebra +q-alg/9702009 Quantum Algebra +q-alg/9702010 Quantum Algebra +q-alg/9702011 Quantum Algebra +q-alg/9702012 Quantum Algebra +q-alg/9702013 Quantum Algebra +q-alg/9702014 Quantum Algebra +q-alg/9702015 Quantum Algebra +q-alg/9702017 Quantum Algebra +q-alg/9702019 Quantum Algebra +q-alg/9702021 Quantum Algebra +q-alg/9702022 Quantum Algebra +q-alg/9702025 Quantum Algebra +q-alg/9702027 Quantum Algebra +q-alg/9702031 Quantum Algebra +q-alg/9702032 Quantum Algebra +q-alg/9703001 Quantum Algebra +q-alg/9703002 Quantum Algebra +q-alg/9703003 Quantum Algebra +q-alg/9703004 Quantum Algebra +q-alg/9703005 Quantum Algebra +q-alg/9703007 Quantum Algebra +q-alg/9703009 Quantum Algebra +q-alg/9703010 Quantum Algebra +q-alg/9703015 Quantum Algebra +q-alg/9703017 Quantum Algebra +q-alg/9703021 Quantum Algebra +q-alg/9703024 Quantum Algebra +q-alg/9703025 Quantum Algebra +q-alg/9703026 Quantum Algebra +q-alg/9703029 Quantum Algebra +q-alg/9703031 Quantum Algebra +q-alg/9703033 Quantum Algebra +q-alg/9703035 Quantum Algebra +q-alg/9703036 Quantum Algebra +q-alg/9703042 Quantum Algebra +q-alg/9703043 Quantum Algebra +q-alg/9703044 Quantum Algebra +q-alg/9703047 Quantum Algebra +q-alg/9704003 Quantum Algebra +q-alg/9704004 Quantum Algebra +q-alg/9704007 Quantum Algebra +q-alg/9704008 Quantum Algebra +q-alg/9704009 Quantum Algebra +q-alg/9704014 Quantum Algebra +q-alg/9704016 Quantum Algebra +q-alg/9704017 Quantum Algebra +q-alg/9704019 Quantum Algebra +q-alg/9704020 Quantum Algebra +q-alg/9705003 Quantum Algebra +q-alg/9705005 Quantum Algebra +q-alg/9705007 Quantum Algebra +q-alg/9705008 Quantum Algebra +q-alg/9705009 Quantum Algebra +q-alg/9705010 Quantum Algebra +q-alg/9705011 Quantum Algebra +q-alg/9705014 Quantum Algebra +q-alg/9705015 Quantum Algebra +q-alg/9705016 Quantum Algebra +q-alg/9705017 Quantum Algebra +q-alg/9705019 Quantum Algebra +q-alg/9705020 Quantum Algebra +q-alg/9705021 Quantum Algebra +q-alg/9705022 Quantum Algebra +q-alg/9705025 Quantum Algebra +q-alg/9705026 Quantum Algebra +q-alg/9705027 Quantum Algebra +q-alg/9706003 Quantum Algebra +q-alg/9706005 Quantum Algebra +q-alg/9706006 Quantum Algebra +q-alg/9706007 Quantum Algebra +q-alg/9706008 Quantum Algebra +q-alg/9706009 Quantum Algebra +q-alg/9706010 Quantum Algebra +q-alg/9706012 Quantum Algebra +q-alg/9706015 Quantum Algebra +q-alg/9706017 Quantum Algebra +q-alg/9706018 Quantum Algebra +q-alg/9706020 Quantum Algebra +q-alg/9706021 Quantum Algebra +q-alg/9706022 Quantum Algebra +q-alg/9706023 Quantum Algebra +q-alg/9706024 Quantum Algebra +q-alg/9706025 Quantum Algebra +q-alg/9706026 Quantum Algebra +q-alg/9706027 Quantum Algebra +q-alg/9706028 Quantum Algebra +q-alg/9706032 Quantum Algebra +q-alg/9707001 Quantum Algebra +q-alg/9707003 Quantum Algebra +q-alg/9707004 Quantum Algebra +q-alg/9707005 Quantum Algebra +q-alg/9707009 Quantum Algebra +q-alg/9707010 Quantum Algebra +q-alg/9707012 Quantum Algebra +q-alg/9707014 Quantum Algebra +q-alg/9707016 Quantum Algebra +q-alg/9707017 Quantum Algebra +q-alg/9707018 Quantum Algebra +q-alg/9707019 Quantum Algebra +q-alg/9707021 Quantum Algebra +q-alg/9707022 Quantum Algebra +q-alg/9707027 Quantum Algebra +q-alg/9707028 Quantum Algebra +q-alg/9707032 Quantum Algebra +q-alg/9708001 Quantum Algebra +q-alg/9708002 Quantum Algebra +q-alg/9708004 Quantum Algebra +q-alg/9708005 Quantum Algebra +q-alg/9708006 Quantum Algebra +q-alg/9708007 Quantum Algebra +q-alg/9708009 Quantum Algebra +q-alg/9708010 Quantum Algebra +q-alg/9708012 Quantum Algebra +q-alg/9708018 Quantum Algebra +q-alg/9708019 Quantum Algebra +q-alg/9708021 Quantum Algebra +q-alg/9708023 Quantum Algebra +q-alg/9708026 Quantum Algebra +q-alg/9708027 Quantum Algebra +q-alg/9708028 Quantum Algebra +q-alg/9708029 Quantum Algebra +q-alg/9709001 Quantum Algebra +q-alg/9709002 Quantum Algebra +q-alg/9709008 Quantum Algebra +q-alg/9709010 Quantum Algebra +q-alg/9709014 Quantum Algebra +q-alg/9709015 Quantum Algebra +q-alg/9709018 Quantum Algebra +q-alg/9709019 Quantum Algebra +q-alg/9709020 Quantum Algebra +q-alg/9709021 Quantum Algebra +q-alg/9709025 Quantum Algebra +q-alg/9709026 Quantum Algebra +q-alg/9709027 Quantum Algebra +q-alg/9709029 Quantum Algebra +q-alg/9709030 Quantum Algebra +q-alg/9709031 Quantum Algebra +q-alg/9709033 Quantum Algebra +q-alg/9709034 Quantum Algebra +q-alg/9709035 Quantum Algebra +q-alg/9709036 Quantum Algebra +q-alg/9709037 Quantum Algebra +q-alg/9709038 Quantum Algebra +q-alg/9709041 Quantum Algebra +q-alg/9709042 Quantum Algebra +q-alg/9709043 Quantum Algebra +quant-ph/0703121 +quant-ph/9501014 +quant-ph/9502022 +quant-ph/9503011 +quant-ph/9503018 +quant-ph/9503020 +quant-ph/9503021 +quant-ph/9503022 +quant-ph/9503024 +quant-ph/9503025 +quant-ph/9505006 +quant-ph/9505015 +quant-ph/9505019 +quant-ph/9505023 +quant-ph/9505025 +quant-ph/9506010 +quant-ph/9506012 +quant-ph/9506020 +quant-ph/9506033 +quant-ph/9508003 +quant-ph/9508006 +quant-ph/9508007 +quant-ph/9508014 +quant-ph/9508015 +quant-ph/9510001 +quant-ph/9510026 +quant-ph/9511021 +quant-ph/9511032 +quant-ph/9511034 +quant-ph/9511035 +quant-ph/9511036 +quant-ph/9511037 +quant-ph/9511038 +quant-ph/9511043 +quant-ph/9512011 +quant-ph/9512016 +quant-ph/9512018 +quant-ph/9512026 +quant-ph/9601009 +quant-ph/9601024 +quant-ph/9601027 +quant-ph/9601028 +quant-ph/9602010 +quant-ph/9603015 +quant-ph/9603025 +quant-ph/9603027 +quant-ph/9604006 +quant-ph/9604007 +quant-ph/9604019 +quant-ph/9604030 +quant-ph/9604035 +quant-ph/9605002 +quant-ph/9605003 +quant-ph/9605010 +quant-ph/9605011 +quant-ph/9605023 +quant-ph/9605026 +quant-ph/9605040 +quant-ph/9605043 +quant-ph/9605045 +quant-ph/9606006 +quant-ph/9606010 +quant-ph/9606028 +quant-ph/9607009 +quant-ph/9607014 +quant-ph/9607029 +quant-ph/9608006 +quant-ph/9608010 +quant-ph/9608014 +quant-ph/9608026 +quant-ph/9608039 +quant-ph/9608048 +quant-ph/9609017 +quant-ph/9610010 +quant-ph/9610011 +quant-ph/9610019 +quant-ph/9610020 +quant-ph/9610029 +quant-ph/9610037 +quant-ph/9610041 +quant-ph/9611001 +quant-ph/9611009 +quant-ph/9611025 +quant-ph/9611049 +quant-ph/9612002 +quant-ph/9612028 +quant-ph/9612040 +quant-ph/9612043 +quant-ph/9612051 +quant-ph/9612052 +quant-ph/9701006 +quant-ph/9701011 +quant-ph/9701027 +quant-ph/9702026 +quant-ph/9702032 +quant-ph/9702034 +quant-ph/9702037 +quant-ph/9702039 +quant-ph/9702041 +quant-ph/9702045 +quant-ph/9702046 +quant-ph/9702050 +quant-ph/9702055 +quant-ph/9702056 +quant-ph/9702060 +quant-ph/9703007 +quant-ph/9703008 +quant-ph/9703013 +quant-ph/9703017 +quant-ph/9703055 +quant-ph/9704006 +quant-ph/9704010 +quant-ph/9704012 +quant-ph/9704017 +quant-ph/9704019 +quant-ph/9704021 +quant-ph/9704025 +quant-ph/9705017 +quant-ph/9706003 +quant-ph/9706012 +quant-ph/9706013 +quant-ph/9706015 +quant-ph/9706046 +quant-ph/9706049 +quant-ph/9706057 +quant-ph/9707002 +quant-ph/9707011 +quant-ph/9707022 +quant-ph/9707038 +quant-ph/9707044 +quant-ph/9707052 +quant-ph/9707054 +quant-ph/9708006 +quant-ph/9708007 +quant-ph/9708012 +quant-ph/9708015 +quant-ph/9708019 +quant-ph/9708051 +quant-ph/9709004 +quant-ph/9709010 +quant-ph/9709017 +quant-ph/9709026 +quant-ph/9709049 +quant-ph/9709059 +solv-int/9305003 Exactly Solvable and Integrable Systems +solv-int/9306002 Exactly Solvable and Integrable Systems +solv-int/9401002 Exactly Solvable and Integrable Systems +solv-int/9402002 Exactly Solvable and Integrable Systems +solv-int/9402003 Exactly Solvable and Integrable Systems +solv-int/9403001 Exactly Solvable and Integrable Systems +solv-int/9404001 Exactly Solvable and Integrable Systems +solv-int/9404002 Exactly Solvable and Integrable Systems +solv-int/9407003 Exactly Solvable and Integrable Systems +solv-int/9409001 Exactly Solvable and Integrable Systems +solv-int/9409003 Exactly Solvable and Integrable Systems +solv-int/9410001 Exactly Solvable and Integrable Systems +solv-int/9410004 Exactly Solvable and Integrable Systems +solv-int/9411003 Exactly Solvable and Integrable Systems +solv-int/9411005 Exactly Solvable and Integrable Systems +solv-int/9411006 Exactly Solvable and Integrable Systems +solv-int/9412001 Exactly Solvable and Integrable Systems +solv-int/9412002 Exactly Solvable and Integrable Systems +solv-int/9412003 Exactly Solvable and Integrable Systems +solv-int/9501001 Exactly Solvable and Integrable Systems +solv-int/9501002 Exactly Solvable and Integrable Systems +solv-int/9501003 Exactly Solvable and Integrable Systems +solv-int/9501004 Exactly Solvable and Integrable Systems +solv-int/9502005 Exactly Solvable and Integrable Systems +solv-int/9503003 Exactly Solvable and Integrable Systems +solv-int/9505001 Exactly Solvable and Integrable Systems +solv-int/9506003 Exactly Solvable and Integrable Systems +solv-int/9507006 Exactly Solvable and Integrable Systems +solv-int/9508004 Exactly Solvable and Integrable Systems +solv-int/9509002 Exactly Solvable and Integrable Systems +solv-int/9509004 Exactly Solvable and Integrable Systems +solv-int/9509006 Exactly Solvable and Integrable Systems +solv-int/9509009 Exactly Solvable and Integrable Systems +solv-int/9509010 Exactly Solvable and Integrable Systems +solv-int/9509011 Exactly Solvable and Integrable Systems +solv-int/9510003 Exactly Solvable and Integrable Systems +solv-int/9510009 Exactly Solvable and Integrable Systems +solv-int/9511003 Exactly Solvable and Integrable Systems +solv-int/9511004 Exactly Solvable and Integrable Systems +solv-int/9511006 Exactly Solvable and Integrable Systems +solv-int/9511009 Exactly Solvable and Integrable Systems +solv-int/9512002 Exactly Solvable and Integrable Systems +solv-int/9512003 Exactly Solvable and Integrable Systems +solv-int/9512008 Exactly Solvable and Integrable Systems +solv-int/9601002 Exactly Solvable and Integrable Systems +solv-int/9603001 Exactly Solvable and Integrable Systems +solv-int/9603005 Exactly Solvable and Integrable Systems +solv-int/9603010 Exactly Solvable and Integrable Systems +solv-int/9604002 Exactly Solvable and Integrable Systems +solv-int/9605003 Exactly Solvable and Integrable Systems +solv-int/9605004 Exactly Solvable and Integrable Systems +solv-int/9605005 Exactly Solvable and Integrable Systems +solv-int/9605007 Exactly Solvable and Integrable Systems +solv-int/9605009 Exactly Solvable and Integrable Systems +solv-int/9606001 Exactly Solvable and Integrable Systems +solv-int/9606002 Exactly Solvable and Integrable Systems +solv-int/9606003 Exactly Solvable and Integrable Systems +solv-int/9606004 Exactly Solvable and Integrable Systems +solv-int/9606005 Exactly Solvable and Integrable Systems +solv-int/9606006 Exactly Solvable and Integrable Systems +solv-int/9606008 Exactly Solvable and Integrable Systems +solv-int/9606009 Exactly Solvable and Integrable Systems +solv-int/9607001 Exactly Solvable and Integrable Systems +solv-int/9607004 Exactly Solvable and Integrable Systems +solv-int/9607005 Exactly Solvable and Integrable Systems +solv-int/9607006 Exactly Solvable and Integrable Systems +solv-int/9608005 Exactly Solvable and Integrable Systems +solv-int/9608006 Exactly Solvable and Integrable Systems +solv-int/9608008 Exactly Solvable and Integrable Systems +solv-int/9608010 Exactly Solvable and Integrable Systems +solv-int/9609006 Exactly Solvable and Integrable Systems +solv-int/9610002 Exactly Solvable and Integrable Systems +solv-int/9610003 Exactly Solvable and Integrable Systems +solv-int/9610006 Exactly Solvable and Integrable Systems +solv-int/9610010 Exactly Solvable and Integrable Systems +solv-int/9610013 Exactly Solvable and Integrable Systems +solv-int/9611001 Exactly Solvable and Integrable Systems +solv-int/9611003 Exactly Solvable and Integrable Systems +solv-int/9611008 Exactly Solvable and Integrable Systems +solv-int/9612001 Exactly Solvable and Integrable Systems +solv-int/9612010 Exactly Solvable and Integrable Systems +solv-int/9612011 Exactly Solvable and Integrable Systems +solv-int/9612012 Exactly Solvable and Integrable Systems +solv-int/9701002 Exactly Solvable and Integrable Systems +solv-int/9701006 Exactly Solvable and Integrable Systems +solv-int/9701014 Exactly Solvable and Integrable Systems +solv-int/9701016 Exactly Solvable and Integrable Systems +solv-int/9701018 Exactly Solvable and Integrable Systems +solv-int/9701020 Exactly Solvable and Integrable Systems +solv-int/9702004 Exactly Solvable and Integrable Systems +solv-int/9702005 Exactly Solvable and Integrable Systems +solv-int/9702007 Exactly Solvable and Integrable Systems +solv-int/9702008 Exactly Solvable and Integrable Systems +solv-int/9703001 Exactly Solvable and Integrable Systems +solv-int/9703002 Exactly Solvable and Integrable Systems +solv-int/9703004 Exactly Solvable and Integrable Systems +solv-int/9703010 Exactly Solvable and Integrable Systems +solv-int/9704004 Exactly Solvable and Integrable Systems +solv-int/9704007 Exactly Solvable and Integrable Systems +solv-int/9704009 Exactly Solvable and Integrable Systems +solv-int/9704011 Exactly Solvable and Integrable Systems +solv-int/9704013 Exactly Solvable and Integrable Systems +solv-int/9704014 Exactly Solvable and Integrable Systems +solv-int/9705002 Exactly Solvable and Integrable Systems +solv-int/9705003 Exactly Solvable and Integrable Systems +solv-int/9705004 Exactly Solvable and Integrable Systems +solv-int/9705005 Exactly Solvable and Integrable Systems +solv-int/9705008 Exactly Solvable and Integrable Systems +solv-int/9705010 Exactly Solvable and Integrable Systems +solv-int/9705012 Exactly Solvable and Integrable Systems +solv-int/9705016 Exactly Solvable and Integrable Systems +solv-int/9705018 Exactly Solvable and Integrable Systems +solv-int/9706001 Exactly Solvable and Integrable Systems +solv-int/9706003 Exactly Solvable and Integrable Systems +solv-int/9706006 Exactly Solvable and Integrable Systems +solv-int/9706007 Exactly Solvable and Integrable Systems +solv-int/9706008 Exactly Solvable and Integrable Systems +solv-int/9706009 Exactly Solvable and Integrable Systems +solv-int/9706010 Exactly Solvable and Integrable Systems +solv-int/9707001 Exactly Solvable and Integrable Systems +solv-int/9707002 Exactly Solvable and Integrable Systems +solv-int/9707004 Exactly Solvable and Integrable Systems +solv-int/9707006 Exactly Solvable and Integrable Systems +solv-int/9707010 Exactly Solvable and Integrable Systems +solv-int/9707011 Exactly Solvable and Integrable Systems +solv-int/9707012 Exactly Solvable and Integrable Systems +solv-int/9707013 Exactly Solvable and Integrable Systems +solv-int/9707016 Exactly Solvable and Integrable Systems +solv-int/9708003 Exactly Solvable and Integrable Systems +solv-int/9709001 Exactly Solvable and Integrable Systems +solv-int/9709005 Exactly Solvable and Integrable Systems +solv-int/9709006 Exactly Solvable and Integrable Systems +solv-int/9709012 Exactly Solvable and Integrable Systems +solv-int/9709013 Exactly Solvable and Integrable Systems +supr-con/9411001 Superconductivity +supr-con/9412002 Superconductivity +supr-con/9507007 Superconductivity +supr-con/9508005 Superconductivity +supr-con/9511001 Superconductivity +supr-con/9601001 Superconductivity +supr-con/9604002 Superconductivity +supr-con/9606001 Superconductivity +supr-con/9608001 Superconductivity +0704.1948 Dynamical Systems +0705.1555 Strongly Correlated Electrons +0705.4215 Mesoscale and Nanoscale Physics +0706.1903 Atomic Physics +0706.2781 Other Condensed Matter +0707.0746 Materials Science +0708.0012 Strongly Correlated Electrons +0708.3888 Superconductivity +0709.0237 Superconductivity +0709.0469 +0709.1008 Probability +0709.2027 Genomics +0709.2030 Genomics +0709.2031 Genomics +0709.2336 Disordered Systems and Neural Networks +0709.3163 Other Condensed Matter +0710.0113 Superconductivity +0710.0147 Soft Condensed Matter +0710.0870 Functional Analysis +0710.1819 Mesoscale and Nanoscale Physics +0710.4288 Strongly Correlated Electrons +0710.5481 Other Condensed Matter +0711.3196 +0711.4758 Other Condensed Matter +0712.0517 +0801.1002 Information Theory +0801.4032 +0801.4035 Phenomenology +0801.4039 +0801.4042 Atomic Physics +0801.4046 +0801.4049 General Mathematics +0801.4055 +0801.4056 Classical Physics +0801.4061 Learning +0801.4062 Optics +0801.4063 Chaotic Dynamics +0801.4066 Optics +0801.4069 Combinatorics +0801.4073 Materials Science +0801.4081 +0801.4082 Networking and Internet Architecture +0801.4089 General Physics +0801.4100 +0801.4102 Functional Analysis +0801.4105 Logic in Computer Science +0801.4109 +0801.4117 Optics +0801.4121 Analysis of PDEs +0801.4123 +0801.4130 Computer Science and Game Theory +0801.4133 Logic +0801.4134 Computational Physics +0801.4136 Representation Theory +0801.4144 Rings and Algebras +0801.4145 Functional Analysis +0801.4146 Statistics Theory +0801.4150 Distributed, Parallel, and Cluster Computing +0801.4151 +0801.4154 Theory +0801.4156 Probability +0801.4158 Data Analysis, Statistics and Probability +0801.4160 Fluid Dynamics +0801.4168 Phenomenology +0801.4181 Combinatorics +0801.4182 Classical Physics +0801.4192 +0801.4198 Information Theory +0801.4201 Optics +0801.4203 Theory +0801.4206 Group Theory +0801.4209 Numerical Analysis +0801.4210 +0801.4211 Materials Science +0801.4212 Superconductivity +0801.4218 Geometric Topology +0801.4222 Differential Geometry +0801.4223 Cellular Automata and Lattice Gases +0801.4225 Cellular Automata and Lattice Gases +0801.4227 +0801.4238 Data Structures and Algorithms +0801.4247 +0801.4260 Probability +0801.4261 Chemical Physics +0801.4264 Statistical Mechanics +0801.4269 Physics and Society +0801.4271 +0801.4277 Phenomenology +0801.4292 Operating Systems +0801.4295 Analysis of PDEs +0801.4301 Quantitative Methods +0801.4310 Number Theory +0801.4315 +0801.4320 Algebraic Geometry +0801.4325 +0801.4329 Statistics Theory +0801.4331 Mesoscale and Nanoscale Physics +0801.4335 +0801.4336 Optimization and Control +0801.4340 +0801.4350 General Physics +0801.4351 Chaotic Dynamics +0801.4352 Strongly Correlated Electrons +0801.4355 Other Computer Science +0801.4364 Logic +0801.4365 Populations and Evolution +0801.4368 Logic +cond-mat/0104513 +cond-mat/0301129 Strongly Correlated Electrons +cond-mat/0606775 Mesoscale and Nanoscale Physics +cond-mat/0609734 Strongly Correlated Electrons +cond-mat/0611417 Mesoscale and Nanoscale Physics +cond-mat/0612512 Mesoscale and Nanoscale Physics +cond-mat/0702138 Statistical Mechanics +gr-qc/0612141 +gr-qc/0701011 +math-ph/0605008 +math/0002057 Quantum Algebra +math/0012228 Quantum Algebra +math/0110081 Quantum Algebra +math/0202013 Differential Geometry +math/0205116 Quantum Algebra +math/0309452 Quantum Algebra +math/0311190 Representation Theory +math/0311303 Quantum Algebra +math/0311513 Analysis of PDEs +math/0406604 Quantum Algebra +math/0501540 Quantum Algebra +math/0505676 Differential Geometry +math/0601337 Quantum Algebra +math/0608534 Group Theory +math/0609705 Algebraic Geometry +math/0609847 General Mathematics +math/0610383 Representation Theory +math/0611808 Algebraic Topology +math/9905027 Quantum Algebra +math/9907061 Quantum Algebra +quant-ph/0604024 +0704.1362 Quantitative Methods +0704.2536 Statistical Mechanics +0706.0110 +0706.0386 Differential Geometry +0706.3304 Theory +0707.1398 Fluid Dynamics +0707.1414 Fluid Dynamics +0708.0894 Strongly Correlated Electrons +0708.1017 Dynamical Systems +0709.0618 Superconductivity +0709.0840 Superconductivity +0710.1466 Classical Analysis and ODEs +0710.2457 Phenomenology +0710.2856 Classical Analysis and ODEs +0710.5385 +0711.0220 +0711.2895 +0712.4230 +0801.0107 Plasma Physics +0801.1714 Materials Science +0801.1716 Materials Science +0801.4721 +0802.2334 Exactly Solvable and Integrable Systems +0802.2749 +0803.0225 Discrete Mathematics +0803.2606 +0803.3339 Disordered Systems and Neural Networks +0803.3790 Superconductivity +0803.4244 Superconductivity +0805.0551 Rings and Algebras +0806.2789 Metric Geometry +0806.2953 Geometric Topology +0806.3020 Probability +0806.3086 Differential Geometry +0806.3088 Differential Geometry +0806.3089 +0806.3092 +0806.3097 Statistical Mechanics +0806.3100 Analysis of PDEs +0806.3103 +0806.3115 Databases +0806.3121 Distributed, Parallel, and Cluster Computing +0806.3129 Chaotic Dynamics +0806.3130 Quantitative Methods +0806.3133 Information Theory +0806.3134 Optimization and Control +0806.3136 Geophysics +0806.3150 Analysis of PDEs +0806.3151 Statistical Mechanics +0806.3154 Materials Science +0806.3155 Exactly Solvable and Integrable Systems +0806.3157 General Physics +0806.3160 Classical Analysis and ODEs +0806.3163 Number Theory +0806.3176 Physics and Society +0806.3181 Mesoscale and Nanoscale Physics +0806.3188 Probability +0806.3198 Materials Science +0806.3201 Physics and Society +0806.3206 Strongly Correlated Electrons +0806.3210 Rings and Algebras +0806.3212 +0806.3215 Distributed, Parallel, and Cluster Computing +0806.3216 +0806.3223 Geometric Topology +0806.3227 Information Theory +0806.3231 Optics +0806.3233 Other Condensed Matter +0806.3235 +0806.3239 Optics +0806.3245 Geometric Topology +0806.3246 Information Theory +0806.3248 Statistics Theory +0806.3260 Numerical Analysis +0806.3261 Atomic Physics +0806.3262 Operator Algebras +astro-ph/0606446 +cond-mat/0607716 Materials Science +cs/0401011 Data Structures and Algorithms +cs/0506069 Computational Complexity +math/0508120 Algebraic Geometry +math/0604391 Differential Geometry +math/0609020 Statistics Theory +math/0609021 Statistics Theory +0704.0051 Physics Education +0706.0362 Operator Algebras +0706.0557 Geometric Topology +0706.0748 Probability +0706.4386 Statistical Mechanics +0707.0721 Phenomenology +0707.1960 General Physics +0707.4329 Geometric Topology +0708.2459 Mesoscale and Nanoscale Physics +0708.3523 Strongly Correlated Electrons +0709.4377 Soft Condensed Matter +0710.5423 Other Quantitative Biology +0711.1810 Mesoscale and Nanoscale Physics +0711.3496 Combinatorics +0711.4412 Combinatorics +0712.3662 Representation Theory +0801.2948 Statistical Mechanics +0801.4000 +0802.1072 Geometric Topology +0803.0403 +0803.1550 Statistical Mechanics +0803.1951 Materials Science +0803.4114 Algebraic Topology +0803.4458 Fluid Dynamics +0804.1271 Soft Condensed Matter +0805.1638 +0805.1741 Human-Computer Interaction +0805.1744 General Mathematics +0805.1761 Dynamical Systems +0805.1765 Computational Complexity +0805.1766 Plasma Physics +0805.1768 Statistics Theory +0805.1773 Probability +0805.1774 Materials Science +0805.1775 +0805.1781 Analysis of PDEs +0805.1782 Theory +0805.1785 Multiagent Systems +0805.1786 Multiagent Systems +0805.1787 Multiagent Systems +0805.1791 General Physics +0805.1795 Chaotic Dynamics +0805.1796 Chemical Physics +0805.1806 Computational Engineering, Finance, and Science +0805.1807 Classical Analysis and ODEs +0805.1810 Group Theory +0805.1813 Materials Science +0805.1815 Plasma Physics +0805.1821 +0805.1824 Phenomenology +0805.1833 Rings and Algebras +0805.1835 Phenomenology +0805.1845 Differential Geometry +0805.1857 Information Theory +0805.1865 Algebraic Geometry +0805.1866 +0805.1872 Combinatorics +0805.1875 Algebraic Geometry +0805.1877 Networking and Internet Architecture +0805.1878 Algebraic Geometry +0805.1881 Geophysics +0805.1882 Instrumentation and Detectors +0805.1886 Cryptography and Security +0805.1887 Logic +0805.1889 Logic +0805.1896 Other Condensed Matter +0805.1909 Rings and Algebras +0805.1918 Classical Analysis and ODEs +cond-mat/0609557 Strongly Correlated Electrons +cond-mat/0701397 Statistical Mechanics +math/0405119 Combinatorics +math/0509358 Combinatorics +math/0601541 Quantum Algebra +math/0611655 Geometric Topology +math/0702363 Group Theory +0704.2194 +0705.2902 Mesoscale and Nanoscale Physics +0706.2670 +0707.0352 Materials Science +0707.2130 Analysis of PDEs +0707.2728 General Mathematics +0707.3487 +0707.3890 Mesoscale and Nanoscale Physics +0707.4451 Commutative Algebra +0709.0217 Populations and Evolution +0709.3009 Materials Science +0710.0731 Symplectic Geometry +0710.0868 Complex Variables +0710.1034 Strongly Correlated Electrons +0710.1845 Dynamical Systems +0710.1986 Probability +0710.2618 +0710.5357 Phenomenology +0711.2141 Statistical Mechanics +0711.4555 Statistics Theory +0711.4896 Statistical Mechanics +0712.0079 Fluid Dynamics +0712.1927 Mesoscale and Nanoscale Physics +0801.3702 Information Theory +0801.4622 Statistical Mechanics +0802.4021 +0803.1634 Fluid Dynamics +0803.4033 Rings and Algebras +0804.0668 Algebraic Geometry +0804.0824 Superconductivity +0804.1030 Applications +0804.1046 Computer Vision and Pattern Recognition +0804.1139 Optimization and Control +0804.1146 +0804.1155 Probability +0804.1158 Differential Geometry +0804.1159 Experiment +0804.1160 Materials Science +0804.1161 +0804.1170 Data Structures and Algorithms +0804.1171 Other Condensed Matter +0804.1172 Information Theory +0804.1173 Computational Geometry +0804.1188 Differential Geometry +0804.1193 Information Theory +0804.1196 Geometric Topology +0804.1213 Algebraic Geometry +0804.1218 Soft Condensed Matter +0804.1228 Phenomenology +0804.1232 +0804.1233 Atomic and Molecular Clusters +0804.1235 Group Theory +0804.1242 Analysis of PDEs +0804.1243 Group Theory +0804.1250 Lattice +0804.1255 +0804.1258 Rings and Algebras +0804.1263 Probability +0804.1264 Rings and Algebras +0804.1268 Combinatorics +0804.1274 Algebraic Geometry +0804.1276 +0804.1279 Quantum Algebra +0804.1280 Combinatorics +0804.1282 +0804.1287 +0804.1289 Combinatorics +0804.1294 Combinatorics +0804.1296 Combinatorics +0804.1299 Combinatorics +0804.1303 Combinatorics +0804.1305 Geometric Topology +0804.1307 Combinatorics +0804.1310 Combinatorics +0804.1313 Representation Theory +0804.1315 Phenomenology +0804.1316 Differential Geometry +0804.1325 Machine Learning +0804.1332 Superconductivity +0804.1339 Probability +0804.1340 General Mathematics +0804.1341 Superconductivity +0804.1344 Rings and Algebras +0804.1345 Analysis of PDEs +0804.1347 Statistical Mechanics +cond-mat/0107321 +cond-mat/0109347 Superconductivity +cond-mat/0503757 Statistical Mechanics +cond-mat/0612301 Statistical Mechanics +cond-mat/0702424 Materials Science +math-ph/0506008 +math/0510146 Functional Analysis +math/0511392 Dynamical Systems +math/0601677 Geometric Topology +math/0609037 Symplectic Geometry +math/0611634 Functional Analysis +0704.1582 Operator Algebras +0705.3851 Statistics Theory +0707.0560 Statistical Mechanics +0707.1757 Theory +0707.4292 Spectral Theory +0710.4627 Other Condensed Matter +0711.0256 +0802.1391 +0802.2029 Mesoscale and Nanoscale Physics +0803.2780 Mesoscale and Nanoscale Physics +0804.0316 Combinatorics +0804.4227 Phenomenology +0805.0427 +0805.0532 Neurons and Cognition +0805.1493 Dynamical Systems +0805.4204 Quantum Algebra +0806.0998 Phenomenology +0806.1052 +0806.1881 Other Condensed Matter +0806.4754 +0807.0308 Molecular Networks +0808.0202 Discrete Mathematics +0809.0356 +0809.2351 +0809.2400 +0809.4069 Adaptation and Self-Organizing Systems +0810.4352 Quantum Algebra +0811.0758 Algebraic Topology +0811.1061 Symbolic Computation +0811.1342 Functional Analysis +0811.3559 Classical Analysis and ODEs +0811.4040 Networking and Internet Architecture +0811.4063 Analysis of PDEs +0811.4178 +0811.4180 Metric Geometry +0811.4182 Number Theory +0811.4186 Information Retrieval +0811.4197 Metric Geometry +0811.4200 Information Theory +0811.4204 Group Theory +0811.4208 Machine Learning +0811.4209 Exactly Solvable and Integrable Systems +0811.4211 Geometric Topology +0811.4218 Phenomenology +0811.4219 Analysis of PDEs +0811.4220 Analysis of PDEs +0811.4221 Analysis of PDEs +0811.4222 Analysis of PDEs +0811.4229 Materials Science +0811.4234 Representation Theory +0811.4238 +0811.4243 Fluid Dynamics +0811.4247 +0811.4249 Superconductivity +0811.4250 +0811.4255 Analysis of PDEs +0811.4257 Cryptography and Security +0811.4258 Chaotic Dynamics +0811.4263 Algebraic Geometry +0811.4266 Geometric Topology +0811.4268 Phenomenology +0811.4271 Strongly Correlated Electrons +0811.4273 Representation Theory +0811.4275 Optimization and Control +0811.4277 +0811.4287 Number Theory +0811.4288 Number Theory +0811.4295 +0811.4297 +0811.4299 +0811.4302 Statistical Mechanics +0811.4305 Classical Analysis and ODEs +0811.4309 K-Theory and Homology +0811.4312 Strongly Correlated Electrons +0811.4317 Superconductivity +0811.4319 +0811.4321 Probability +0811.4324 Programming Languages +0811.4328 Space Physics +0811.4329 +0811.4330 Materials Science +0811.4335 Superconductivity +0811.4338 Strongly Correlated Electrons +0811.4339 Information Theory +0811.4340 +0811.4342 Strongly Correlated Electrons +0811.4343 History and Overview +0811.4346 Data Structures and Algorithms +0811.4348 Medical Physics +0811.4349 Information Theory +0811.4352 Superconductivity +0811.4354 Information Theory +0811.4357 Phenomenology +0811.4360 Classical Analysis and ODEs +0811.4361 Number Theory +0811.4364 Software Engineering +0811.4365 Geometric Topology +0811.4366 Differential Geometry +0811.4368 +0811.4375 Materials Science +0811.4378 Optics +0811.4379 Number Theory +0811.4380 Combinatorics +0811.4382 Combinatorics +0811.4390 +0811.4395 Information Theory +0811.4402 Plasma Physics +0811.4403 Information Theory +0811.4407 Plasma Physics +0811.4415 Combinatorics +0811.4419 Optics +0811.4420 Algebraic Geometry +cond-mat/0505126 Materials Science +cond-mat/0508508 Strongly Correlated Electrons +gr-qc/0604007 +quant-ph/0702083 +0709.2114 +0712.1326 Phenomenology +0712.4137 Probability +0805.3174 Geometric Topology +cs/0412096 Computational Complexity +math/0605362 Algebraic Geometry +math/0606239 Algebraic Geometry +math/0606289 Algebraic Geometry +0704.0286 Analysis of PDEs +0704.2727 Algebraic Geometry +0708.0557 +0708.0646 Physics and Society +0709.2066 Mesoscale and Nanoscale Physics +0709.3652 +0710.0876 Superconductivity +0710.3919 Differential Geometry +0710.4415 Quantum Algebra +0802.0313 Theory +math/0106074 Combinatorics +math/0406099 Algebraic Geometry +math/0610240 Probability +math/9804086 Representation Theory +math/9905032 Combinatorics +q-alg/9612025 Quantum Algebra +q-alg/9703037 Quantum Algebra +q-alg/9712050 Quantum Algebra +quant-ph/0606016 +0705.1273 Probability +0707.1109 Geometric Topology +0708.4197 Other Condensed Matter +0710.1519 Probability +0710.2608 Statistics Theory +0710.5641 Differential Geometry +0711.4192 Analysis of PDEs +0801.0538 Differential Geometry +0801.3608 Superconductivity +0802.2601 Other Condensed Matter +0802.3994 Algebraic Geometry +0803.0328 Optics +0803.0756 Strongly Correlated Electrons +0804.0478 Representation Theory +0804.2611 Other Condensed Matter +0804.3782 Theory +0805.3501 +0805.4332 Probability +0806.1440 Algebraic Geometry +0807.0335 Metric Geometry +0807.0648 Atomic Physics +0807.2120 Data Structures and Algorithms +0808.1516 Mesoscale and Nanoscale Physics +0808.1635 Optics +0809.0242 +0809.0663 Representation Theory +0809.1692 Analysis of PDEs +0809.2093 Computational Complexity +0809.2097 Data Structures and Algorithms +0809.2102 History and Philosophy of Physics +0809.2110 Mesoscale and Nanoscale Physics +0809.2112 +0809.2114 Analysis of PDEs +0809.2116 Complex Variables +0809.2118 Theory +0809.2121 Algebraic Geometry +0809.2125 Numerical Analysis +0809.2127 Representation Theory +0809.2134 Combinatorics +0809.2139 History and Overview +0809.2141 Plasma Physics +0809.2149 Chaotic Dynamics +0809.2150 Atomic Physics +0809.2151 +0809.2160 Algebraic Geometry +0809.2167 Dynamical Systems +0809.2169 Superconductivity +0809.2183 +0809.2187 +0809.2188 Rings and Algebras +0809.2203 +0809.2205 +0809.2220 Chaotic Dynamics +0809.2229 Chaotic Dynamics +0809.2236 Combinatorics +0809.2239 Mesoscale and Nanoscale Physics +0809.2240 Group Theory +0809.2241 Differential Geometry +0809.2246 +0809.2251 Group Theory +0809.2255 Spectral Theory +0809.2257 Strongly Correlated Electrons +0809.2261 Soft Condensed Matter +0809.2265 +0809.2268 Differential Geometry +0809.2276 +cond-mat/0002426 Statistical Mechanics +cond-mat/0003401 Statistical Mechanics +cond-mat/0507681 Other Condensed Matter +cond-mat/0608710 Other Condensed Matter +cs/0609062 Programming Languages +cs/0612095 Learning +math/0104128 Differential Geometry +math/0605656 Differential Geometry +math/0606047 Optimization and Control +math/0607526 Quantum Algebra +math/0610160 Differential Geometry +math/0702353 Numerical Analysis +0704.0644 Combinatorics +0705.1607 Mesoscale and Nanoscale Physics +0706.4260 Statistical Mechanics +0708.2457 Number Theory +0709.0879 Materials Science +0711.1478 Classical Analysis and ODEs +0712.3494 Biomolecules +0712.4190 Phenomenology +0801.2719 Statistical Mechanics +0801.3121 Mesoscale and Nanoscale Physics +0802.2364 Mesoscale and Nanoscale Physics +0802.3520 Functional Analysis +0803.2736 General Mathematics +0803.3426 Superconductivity +0803.3593 Strongly Correlated Electrons +0804.4426 Geometric Topology +0805.1904 +0805.3651 Soft Condensed Matter +0805.3893 +0805.4049 Discrete Mathematics +0805.4553 Exactly Solvable and Integrable Systems +0805.4701 Combinatorics +0806.0425 Symplectic Geometry +0806.2361 General Mathematics +0806.3278 +0806.4283 Strongly Correlated Electrons +0806.4337 +0806.4378 Statistical Mechanics +0806.4391 Learning +0806.4393 +0806.4398 Number Theory +0806.4400 Superconductivity +0806.4413 Algebraic Geometry +0806.4424 +0806.4428 +0806.4432 Superconductivity +0806.4433 Commutative Algebra +0806.4440 Statistical Mechanics +0806.4441 Probability +0806.4445 Statistics Theory +0806.4450 Strongly Correlated Electrons +0806.4466 General Physics +0806.4470 Analysis of PDEs +0806.4471 General Mathematics +0806.4478 Probability +0806.4479 Statistical Mechanics +0806.4488 Algebraic Geometry +0806.4491 General Mathematics +0806.4492 Algebraic Geometry +0806.4493 +0806.4496 Representation Theory +0806.4497 Probability +0806.4498 Dynamical Systems +0806.4499 General Topology +0806.4503 Phenomenology +0806.4515 History and Philosophy of Physics +0806.4516 Materials Science +0806.4524 Phenomenology +0806.4525 Analysis of PDEs +0806.4527 +0806.4532 Commutative Algebra +0806.4547 Algebraic Topology +0806.4548 +0806.4550 Analysis of PDEs +0806.4556 Fluid Dynamics +0806.4565 Statistical Mechanics +0806.4572 Information Theory +0806.4576 Populations and Evolution +0806.4580 Number Theory +cond-mat/0604113 Mesoscale and Nanoscale Physics +cond-mat/0606589 Mesoscale and Nanoscale Physics +cs/0607094 Computational Geometry +hep-th/0608181 Theory +math/0605627 Algebraic Topology +math/0607802 Statistics Theory +math/0608368 Differential Geometry +math/0609825 Combinatorics +math/0611578 Geometric Topology +quant-ph/0512159 +0706.0453 Dynamical Systems +0709.0259 Information Theory +0710.1136 Differential Geometry +0710.5480 Theory +0711.3940 Number Theory +0712.0630 +0712.4161 Applications +0801.2625 Probability +0801.2756 Chaotic Dynamics +0801.4844 Group Theory +0802.2723 Information Theory +0802.3689 +0804.1471 Disordered Systems and Neural Networks +0804.3290 Functional Analysis +0804.4422 Strongly Correlated Electrons +0805.3780 Materials Science +0805.3821 Superconductivity +0806.1122 Analysis of PDEs +0806.2360 Computational Geometry +0806.3705 +0807.0529 +0807.2416 Biological Physics +0807.4182 +0808.0178 +0808.1325 Experiment +0808.2210 +0808.2605 Phenomenology +0808.2772 Superconductivity +0808.3489 Dynamical Systems +0808.3825 Commutative Algebra +0809.0125 +0809.0451 +0809.0580 Dynamical Systems +0809.1200 Theory +0809.3175 Experiment +0809.3701 Optics +0809.3956 Experiment +0809.4150 Experiment +0809.4641 Phenomenology +0809.4713 Differential Geometry +0809.4725 Numerical Analysis +0809.4773 Phenomenology +0809.5010 Experiment +0809.5133 +0809.5144 Experiment +0810.0088 Quantum Algebra +0810.0112 Experiment +0810.0254 Lattice +0810.0374 Lattice +0810.0381 Instrumentation and Detectors +0810.0404 Experiment +0810.0502 Experiment +0810.0531 Mesoscale and Nanoscale Physics +0810.0533 Experiment +0810.0537 +0810.0546 Lattice +0810.0548 Lattice +0810.0561 Applications +0810.0566 Experiment +0810.0567 Information Theory +0810.0572 Probability +0810.0574 Differential Geometry +0810.0575 Differential Geometry +0810.0576 Differential Geometry +0810.0578 Differential Geometry +0810.0579 Statistics Theory +0810.0583 Instrumentation and Detectors +0810.0591 Geometric Topology +0810.0593 Probability +0810.0594 Combinatorics +0810.0595 +0810.0599 Probability +0810.0601 Complex Variables +0810.0605 Classical Physics +0810.0606 Phenomenology +0810.0607 Statistical Mechanics +0810.0614 History and Philosophy of Physics +0810.0616 Mesoscale and Nanoscale Physics +0810.0619 Phenomenology +0810.0627 +0810.0631 +0810.0647 Analysis of PDEs +0810.0648 Plasma Physics +0810.0650 Probability +0810.0651 Dynamical Systems +0810.0653 Complex Variables +0810.0654 Analysis of PDEs +0810.0656 Functional Analysis +0810.0657 +0810.0669 Differential Geometry +0810.0671 +0810.0673 +0810.0674 Data Structures and Algorithms +0810.0681 Soft Condensed Matter +0810.0683 +0810.0684 +0810.0688 Representation Theory +0810.0689 Materials Science +0810.0690 Group Theory +0810.0692 +0810.0693 +astro-ph/0312516 +cond-mat/0510532 Soft Condensed Matter +cond-mat/0612229 Strongly Correlated Electrons +cs/0609076 Information Theory +math/0309336 Category Theory +math/0407437 Group Theory +math/0505518 Combinatorics +math/0611033 Differential Geometry +math/0703773 Differential Geometry +physics/0510086 General Physics +physics/0606253 Data Analysis, Statistics and Probability +physics/0702174 Popular Physics +quant-ph/0611231 +0705.4462 Statistical Mechanics +0705.4510 Functional Analysis +0706.0173 +0706.2866 Disordered Systems and Neural Networks +0707.2186 Probability +0707.3501 Superconductivity +0709.1610 Classical Analysis and ODEs +0709.2731 Soft Condensed Matter +0709.3447 Algebraic Geometry +0710.0538 Mesoscale and Nanoscale Physics +0710.2383 +0710.5240 Mesoscale and Nanoscale Physics +0711.0255 +0711.1218 +0712.1822 Materials Science +0712.2544 +0801.0779 Strongly Correlated Electrons +0801.3138 General Physics +0801.3483 Superconductivity +0801.4179 Differential Geometry +0802.0887 +0802.1083 Geometric Topology +0802.2491 Probability +0802.3626 Logic in Computer Science +0802.3635 Representation Theory +0802.3703 Combinatorics +0802.3800 Representation Theory +0802.3865 Rings and Algebras +0802.3895 Software Engineering +0802.3901 +0802.3903 +0802.3910 +0802.3915 Quantitative Methods +0802.3917 +0802.3919 Human-Computer Interaction +0802.3924 Human-Computer Interaction +0802.3925 Functional Analysis +0802.3937 Fluid Dynamics +0802.3941 Statistical Mechanics +0802.3944 +0802.3961 +0802.3963 +0802.3964 Quantum Algebra +0802.3969 Applications +0802.3973 Chaotic Dynamics +0802.3974 Logic in Computer Science +0802.3976 Soft Condensed Matter +0802.3977 +0802.3993 Soft Condensed Matter +0802.3997 +0802.3998 Materials Science +0802.4006 Numerical Analysis +0802.4007 Representation Theory +0802.4008 +0802.4010 Neurons and Cognition +0802.4014 Mesoscale and Nanoscale Physics +0802.4016 Number Theory +0802.4017 Number Theory +0802.4029 +0802.4032 Exactly Solvable and Integrable Systems +0802.4034 Physics Education +0802.4045 Dynamical Systems +0802.4056 Phenomenology +0802.4065 Theory +0802.4067 Algebraic Geometry +0802.4068 Geometric Topology +0802.4072 +0802.4073 Mesoscale and Nanoscale Physics +0802.4079 Information Theory +cond-mat/0703470 Disordered Systems and Neural Networks +hep-th/0703183 Theory +math/0210379 General Topology +math/0501379 Combinatorics +math/0507249 Combinatorics +math/0509006 Functional Analysis +math/0608748 Geometric Topology +math/0609285 Statistics Theory +math/0609436 Quantum Algebra +math/0611100 Quantum Algebra +math/0611534 Quantum Algebra +math/0611540 Quantum Algebra +math/0612134 Combinatorics +math/0612183 Differential Geometry +math/0702836 Algebraic Geometry +math/0703183 Geometric Topology +quant-ph/0601191 +quant-ph/0612019 +0705.4571 Representation Theory +0706.1863 Superconductivity +0707.2840 +0707.2927 Rings and Algebras +0707.4614 +0708.0887 Differential Geometry +0708.1571 Number Theory +0708.2082 General Mathematics +0708.3027 Differential Geometry +0708.4287 Probability +0709.0876 Mesoscale and Nanoscale Physics +0709.1018 Disordered Systems and Neural Networks +0710.2922 +0710.2994 Number Theory +0710.4117 Neurons and Cognition +0710.5296 Strongly Correlated Electrons +0711.3440 Group Theory +0712.0080 Mesoscale and Nanoscale Physics +0801.0992 Mesoscale and Nanoscale Physics +0801.1396 Algebraic Geometry +0801.1997 Rings and Algebras +0801.2156 +0801.2231 Statistics Theory +0801.3723 Mesoscale and Nanoscale Physics +0801.4626 Strongly Correlated Electrons +0802.1394 Group Theory +0802.2010 +0802.2293 Strongly Correlated Electrons +0802.2986 Atomic Physics +0802.4212 General Physics +0803.0427 Differential Geometry +0803.1120 Information Theory +0803.1347 +0803.2785 Quantum Algebra +0803.2928 Experiment +0803.3013 Phenomenology +0803.3327 +0803.3329 Phenomenology +0803.3487 Number Theory +0803.3636 Plasma Physics +0803.3643 +0803.3645 Information Theory +0803.3657 Information Theory +0803.3658 Information Theory +0803.3660 Probability +0803.3669 K-Theory and Homology +0803.3670 Discrete Mathematics +0803.3682 +0803.3683 Analysis of PDEs +0803.3685 +0803.3687 Algebraic Geometry +0803.3689 K-Theory and Homology +0803.3693 Data Structures and Algorithms +0803.3695 Number Theory +0803.3698 Statistical Mechanics +0803.3699 +0803.3702 Algebraic Geometry +0803.3703 Physics and Society +0803.3705 Mesoscale and Nanoscale Physics +0803.3708 Algebraic Geometry +0803.3711 Differential Geometry +0803.3716 Probability +0803.3726 Dynamical Systems +0803.3738 Classical Analysis and ODEs +0803.3739 Analysis of PDEs +0803.3742 Networking and Internet Architecture +0803.3744 Mesoscale and Nanoscale Physics +0803.3746 Neural and Evolutionary Computing +0803.3755 Statistical Mechanics +0803.3758 Dynamical Systems +0803.3765 Superconductivity +0803.3767 Functional Analysis +0803.3776 General Physics +0803.3778 General Mathematics +0803.3798 Algebraic Topology +cond-mat/0403522 Strongly Correlated Electrons +cond-mat/0502292 Strongly Correlated Electrons +hep-ph/0604063 Phenomenology +math/0212039 Algebraic Geometry +math/0602473 Geometric Topology +math/0607449 Differential Geometry +math/0608577 Number Theory +math/0610353 Algebraic Geometry +math/0610895 Representation Theory +math/0610896 Representation Theory +math/0611681 Statistics Theory +math/0701721 Commutative Algebra +math/0701770 Statistics Theory +math/0703597 Probability +physics/0603045 Optics +physics/0604207 General Physics +physics/0607067 General Physics +quant-ph/0703256 +0704.0040 Operator Algebras +0705.0566 Materials Science +0705.2321 Probability +0706.3175 Other Condensed Matter +0706.3695 Materials Science +0707.3403 Quantum Algebra +0707.4375 +0709.4246 Mesoscale and Nanoscale Physics +0711.2810 Representation Theory +0712.3827 Chaotic Dynamics +0802.0526 Soft Condensed Matter +0802.1078 Superconductivity +0802.2709 Algebraic Geometry +0802.4256 Materials Science +0803.0018 Numerical Analysis +0803.1141 Number Theory +0803.2955 Statistical Mechanics +0804.0784 Materials Science +0804.1944 +0804.2972 Statistical Mechanics +0805.1843 Other Condensed Matter +0806.1592 Strongly Correlated Electrons +0807.0165 Plasma Physics +0807.1094 Superconductivity +0807.2463 Group Theory +0808.0786 Mesoscale and Nanoscale Physics +0808.2080 Geometric Topology +0808.2439 Algebraic Geometry +0808.3606 +0808.3637 Lattice +0809.0323 Group Theory +0809.0342 Experiment +0809.0577 Statistical Mechanics +0809.0603 Combinatorics +0809.0692 +0809.0702 Combinatorics +0809.0708 General Physics +0809.0719 Numerical Analysis +0809.0723 Information Retrieval +0809.0725 Mesoscale and Nanoscale Physics +0809.0727 Robotics +0809.0728 Information Theory +0809.0729 +0809.0730 Geometric Topology +0809.0740 Metric Geometry +0809.0741 Combinatorics +0809.0742 +0809.0744 Metric Geometry +0809.0746 Metric Geometry +0809.0748 Combinatorics +0809.0752 Spectral Theory +0809.0753 Artificial Intelligence +0809.0755 Artificial Intelligence +0809.0760 +0809.0767 Commutative Algebra +0809.0772 Dynamical Systems +0809.0777 Optics +0809.0782 +0809.0803 Geophysics +0809.0804 Rings and Algebras +0809.0808 Functional Analysis +0809.0812 Probability +0809.0813 Probability +0809.0814 Statistics Theory +0809.0819 Chaotic Dynamics +0809.0820 Soft Condensed Matter +0809.0823 +0809.0824 Differential Geometry +0809.0826 Functional Analysis +0809.0829 Differential Geometry +0809.0833 Networking and Internet Architecture +0809.0850 +0809.0861 Phenomenology +0809.0870 Algebraic Geometry +0809.0871 Combinatorics +0809.0885 Experiment +cs/0310034 Computational Geometry +hep-th/0312048 Theory +math/0402021 Rings and Algebras +math/0411009 Combinatorics +math/0505334 Combinatorics +math/0609237 Group Theory +math/0612570 Operator Algebras +math/0702579 Algebraic Geometry +math/0703663 Spectral Theory +0704.0567 Pricing of Securities +0704.0773 Statistical Finance +0704.1786 General Physics +0705.0029 General Finance +0705.0503 Statistics Theory +0705.1297 Pricing of Securities +0705.1302 Pricing of Securities +0705.2820 Trading and Market Microstructure +0705.3117 Disordered Systems and Neural Networks +0705.3248 Data Analysis, Statistics and Probability +0705.4023 Trading and Market Microstructure +0705.4382 Materials Science +0706.0168 Data Analysis, Statistics and Probability +0706.0462 Pricing of Securities +0706.0480 Portfolio Management +0706.0664 Dynamical Systems +0706.1028 General Finance +0706.1247 Statistical Finance +0706.1300 Pricing of Securities +0706.1454 General Finance +0706.1836 Statistics Theory +0706.1839 Physics and Society +0706.2140 Statistical Finance +0706.3331 Risk Management +0706.4432 General Finance +0707.0854 General Finance +0707.2284 Statistical Finance +0707.2341 General Finance +0707.3198 Portfolio Management +0707.3478 Risk Management +0707.3482 Statistical Finance +0707.3703 General Finance +0707.4414 Algebraic Geometry +0708.0063 Statistical Finance +0708.0121 Risk Management +0708.0124 Risk Management +0708.0353 Statistical Finance +0708.0544 Pricing of Securities +0708.0562 Statistical Finance +0708.0588 Portfolio Management +0708.0998 Computational Finance +0708.1146 Pricing of Securities +0708.2020 Pricing of Securities +0708.2071 Physics and Society +0708.2542 Portfolio Management +0708.3467 General Finance +0708.3472 Statistical Finance +0708.4022 Statistical Finance +0708.4095 Pricing of Securities +0708.4289 General Physics +0708.4376 Statistical Finance +0709.0159 Statistical Finance +0709.0232 Risk Management +0709.0440 Statistical Finance +0709.0668 Statistical Finance +0709.0810 Statistical Finance +0709.1219 Statistical Finance +0709.1281 Probability +0709.1536 Statistical Finance +0709.1589 Pricing of Securities +0709.2209 Statistical Finance +0709.2416 Statistical Finance +0709.2830 Portfolio Management +0709.4093 General Finance +0709.4355 General Finance +0710.0069 Pricing of Securities +0710.0114 Trading and Market Microstructure +0710.0241 Pricing of Securities +0710.0459 General Finance +0710.0576 Data Analysis, Statistics and Probability +0710.0745 General Finance +0710.0753 Pricing of Securities +0710.0802 Statistical Finance +0710.1014 General Finance +0710.1139 General Finance +0710.1893 Statistical Finance +0710.1909 Trading and Market Microstructure +0710.2403 Mesoscale and Nanoscale Physics +0710.2583 Statistical Finance +0710.2758 Pricing of Securities +0710.2792 Pricing of Securities +0710.2876 General Finance +0710.2991 Statistical Finance +0710.3892 Risk Management +0710.4106 Risk Management +0710.5101 Other Condensed Matter +0710.5497 Statistical Finance +0711.0223 Pricing of Securities +0711.0644 Statistical Finance +0711.1143 Pricing of Securities +0711.1272 Pricing of Securities +0711.1594 Methodology +0711.1595 Statistical Finance +0711.2550 Statistical Finance +0711.2624 Pricing of Securities +0711.2718 Portfolio Management +0711.2807 Pricing of Securities +0711.3106 Statistical Finance +0711.4710 General Finance +0712.0912 Trading and Market Microstructure +0712.1093 Pricing of Securities +0712.2088 General Finance +0712.2220 General Finance +0712.2684 General Finance +0712.2687 Trading and Market Microstructure +0712.3363 Risk Management +0712.3992 Physics and Society +0801.1475 Statistical Finance +0801.1599 Statistical Finance +0801.1710 Statistical Finance +0801.2980 General Finance +0801.3047 Statistical Finance +0801.3191 Probability +0801.3263 Statistical Finance +0801.3348 Trading and Market Microstructure +0801.3712 Trading and Market Microstructure +0801.4337 General Finance +0801.4665 Symplectic Geometry +0802.0214 Statistical Finance +0802.0220 Statistical Finance +0802.0223 Statistical Finance +0802.1407 Computational Finance +0802.1416 General Finance +0802.1823 Pricing of Securities +0802.2172 Pricing of Securities +0802.3039 Pricing of Securities +0802.3291 Trading and Market Microstructure +0802.3541 Physics and Society +0802.3553 Computational Finance +0802.3585 Pricing of Securities +0802.3679 Pricing of Securities +0802.4043 Statistical Finance +0803.0057 Statistical Finance +0803.0436 Statistical Finance +0803.1087 Artificial Intelligence +0803.1374 Statistical Finance +0803.1589 Pricing of Securities +0803.1769 Statistical Finance +0803.2169 Pricing of Securities +0803.2198 Pricing of Securities +0803.2302 Pricing of Securities +0803.2388 General Finance +0803.2402 Classical Physics +0803.2773 Data Analysis, Statistics and Probability +0803.2996 General Finance +0803.3959 Physics and Society +0803.4282 Pricing of Securities +0803.4480 Statistical Finance +0804.0185 Statistical Finance +0804.0277 Data Structures and Algorithms +0804.0459 +0804.0482 Pricing of Securities +0804.1039 Statistical Finance +0804.1414 General Finance +0804.2255 Materials Science +0804.2441 Chaotic Dynamics +0804.2589 Pricing of Securities +0804.2772 General Finance +0804.3209 Risk Management +0804.3431 Statistical Finance +0804.3658 General Finance +0804.3818 Statistical Finance +0804.4191 Statistical Finance +0804.4522 Portfolio Management +0805.1353 Trading and Market Microstructure +0805.2477 Statistical Finance +0805.2713 Statistical Finance +0805.2792 General Finance +0805.3014 Disordered Systems and Neural Networks +0805.3129 Risk Management +0805.3981 Portfolio Management +0806.0815 Strongly Correlated Electrons +0806.0932 Pricing of Securities +0806.1986 Superconductivity +0806.2124 Trading and Market Microstructure +0806.2606 General Finance +0806.2841 +0806.3365 Materials Science +0806.3399 Risk Management +0806.3813 General Finance +0806.4026 Portfolio Management +0806.4676 Pricing of Securities +0806.4834 Portfolio Management +0807.0563 Statistical Mechanics +0807.0925 Trading and Market Microstructure +0807.1201 Statistical Finance +0807.1639 General Finance +0807.1771 Statistical Finance +0807.1831 Statistical Finance +0807.1888 Trading and Market Microstructure +0807.2083 Statistical Finance +0807.2124 Pricing of Securities +0807.3464 Statistical Finance +0807.3479 Statistical Finance +0807.3898 General Finance +0807.3960 Trading and Market Microstructure +0807.4394 Statistical Finance +0807.4484 General Finance +0807.4958 Risk Management +0807.5001 Probability +0808.1090 Statistical Finance +0808.1538 Statistical Finance +0808.3196 Computer Science and Game Theory +0808.3269 Data Analysis, Statistics and Probability +0808.3360 Statistical Finance +0808.4012 Pricing of Securities +0809.0437 Statistical Finance +0809.0448 Trading and Market Microstructure +0809.0822 Trading and Market Microstructure +0809.0979 Cellular Automata and Lattice Gases +0809.1139 Statistical Finance +0809.1747 Pricing of Securities +0809.1985 Pricing of Securities +0809.2878 Pricing of Securities +0809.3148 Algebraic Geometry +0809.3305 Pricing of Securities +0809.3375 Pricing of Securities +0809.3824 Trading and Market Microstructure +0809.3902 Statistical Finance +0809.4372 Risk Management +0809.4519 Dynamical Systems +0809.4570 Statistical Finance +0809.5065 Mesoscale and Nanoscale Physics +0810.0207 +0810.0678 Portfolio Management +0810.0917 General Finance +0810.1059 Probability +0810.2016 Pricing of Securities +0810.2894 Statistical Mechanics +0810.3439 Fluid Dynamics +0810.3603 Algebraic Geometry +0810.4608 General Finance +0810.4912 Statistical Finance +0811.0290 Number Theory +0811.0352 General Finance +0811.0356 General Finance +0811.0489 General Finance +0811.0490 General Finance +0811.0889 General Finance +0811.0892 General Finance +0811.0896 General Finance +0811.0957 General Physics +0811.0961 Differential Geometry +0811.1182 General Finance +0811.1896 Probability +0811.2011 Representation Theory +0811.2124 General Finance +0811.2125 General Finance +0811.3090 Physics and Society +0811.3705 Statistics Theory +0811.3749 Probability +0811.4637 Statistical Mechanics +0812.0019 Rings and Algebras +0812.0020 Functional Analysis +0812.0030 Data Analysis, Statistics and Probability +0812.0032 Algebraic Geometry +0812.0035 Number Theory +0812.0036 Number Theory +0812.0037 Group Theory +0812.0039 Differential Geometry +0812.0040 +0812.0041 Symplectic Geometry +0812.0046 +0812.0047 Combinatorics +0812.0049 Symplectic Geometry +0812.0051 Methodology +0812.0052 Methodology +0812.0054 +0812.0058 Optimization and Control +0812.0059 Representation Theory +0812.0062 Algebraic Geometry +0812.0063 Classical Analysis and ODEs +0812.0067 Symbolic Computation +0812.0071 Analysis of PDEs +0812.0073 Dynamical Systems +0812.0075 Complex Variables +0812.0076 Complex Variables +0812.0083 Classical Analysis and ODEs +0812.0093 +0812.0095 Materials Science +0812.0096 Operator Algebras +0812.0100 +0812.0103 Soft Condensed Matter +0812.0104 Probability +0812.0105 Analysis of PDEs +0812.0108 General Physics +0812.0111 Cellular Automata and Lattice Gases +0812.0114 +0812.0126 +0812.0129 Symplectic Geometry +0812.0131 Probability +0812.0134 Atmospheric and Oceanic Physics +0812.0135 +0812.0142 Optics +0812.0148 Other Condensed Matter +0812.0151 Algebraic Topology +0812.0154 Algebraic Topology +0812.0157 Tissues and Organs +0812.0160 Biomolecules +0812.0162 Differential Geometry +0812.0164 Combinatorics +0812.0168 +0812.0170 +0812.0172 Numerical Analysis +0812.0174 General Physics +0812.0179 Number Theory +0812.0180 Instrumentation and Detectors +0812.0183 Theory +0812.0189 Operator Algebras +0812.0190 +0812.0191 Subcellular Processes +0812.0197 Computational Geometry +0812.0198 Computer Science and Game Theory +0812.0209 Data Structures and Algorithms +0812.0212 General Physics +0812.0220 Superconductivity +0812.0230 Phenomenology +0812.0238 +0812.0240 +0812.0250 +0812.0259 Representation Theory +0812.0262 Digital Libraries +0812.0270 Phenomenology +0812.0271 Algebraic Geometry +0812.0276 Symplectic Geometry +0812.0280 +0812.0283 Computational Complexity +0812.0286 Algebraic Geometry +0812.0289 Optics +0812.0292 General Physics +0812.0293 +0812.0297 +0812.0299 Symplectic Geometry +0812.0300 Soft Condensed Matter +0812.0312 Complex Variables +0812.0313 Algebraic Topology +0812.0314 Complex Variables +0812.0315 Phenomenology +0812.0317 Algebraic Topology +0812.0319 Information Theory +0812.0327 Geophysics +0812.0329 Information Theory +0812.0357 Strongly Correlated Electrons +0812.0359 Phenomenology +cond-mat/0001434 Statistical Mechanics +cond-mat/0004376 Statistical Mechanics +cond-mat/0005416 Statistical Mechanics +cond-mat/0005430 Statistical Mechanics +cond-mat/0006034 Disordered Systems and Neural Networks +cond-mat/0006038 Statistical Mechanics +cond-mat/0006133 Statistical Mechanics +cond-mat/0006260 Statistical Mechanics +cond-mat/0008466 Statistical Mechanics +cond-mat/0009042 Statistical Mechanics +cond-mat/0009260 Statistical Mechanics +cond-mat/0009350 Statistical Mechanics +cond-mat/0009437 Statistical Mechanics +cond-mat/0010190 Statistical Mechanics +cond-mat/0010211 Statistical Mechanics +cond-mat/0011042 Statistical Mechanics +cond-mat/0011145 Statistical Mechanics +cond-mat/0011149 Statistical Mechanics +cond-mat/0011280 Statistical Mechanics +cond-mat/0011295 Statistical Mechanics +cond-mat/0011337 Disordered Systems and Neural Networks +cond-mat/0011373 Statistical Mechanics +cond-mat/0012419 Statistical Mechanics +cond-mat/0012479 Statistical Mechanics +cond-mat/0012497 Disordered Systems and Neural Networks +cond-mat/0012514 Soft Condensed Matter +cond-mat/0101351 Statistical Mechanics +cond-mat/0101371 Statistical Mechanics +cond-mat/0102301 Statistical Mechanics +cond-mat/0102304 Statistical Mechanics +cond-mat/0102369 Statistical Mechanics +cond-mat/0103033 Statistical Mechanics +cond-mat/0103106 Statistical Mechanics +cond-mat/0103544 Statistical Mechanics +cond-mat/0103606 Statistical Mechanics +cond-mat/0103621 Statistical Mechanics +cond-mat/0104362 Statistical Mechanics +cond-mat/0104456 Disordered Systems and Neural Networks +cond-mat/0104472 Statistical Mechanics +cond-mat/0105373 Disordered Systems and Neural Networks +cond-mat/0106317 Statistical Mechanics +cond-mat/0106401 Disordered Systems and Neural Networks +cond-mat/0107150 Statistical Mechanics +cond-mat/0107190 Statistical Mechanics +cond-mat/0107593 Statistical Mechanics +cond-mat/0108017 Statistical Mechanics +cond-mat/0108028 Statistical Mechanics +cond-mat/0108033 Disordered Systems and Neural Networks +cond-mat/0108549 Disordered Systems and Neural Networks +cond-mat/0109026 Disordered Systems and Neural Networks +cond-mat/0109410 Statistical Mechanics +cond-mat/0110124 Statistical Mechanics +cond-mat/0111257 Statistical Mechanics +cond-mat/0111349 Statistical Mechanics +cond-mat/0111525 Disordered Systems and Neural Networks +cond-mat/0111529 Statistical Mechanics +cond-mat/0111579 Statistical Mechanics +cond-mat/0112045 Statistical Mechanics +cond-mat/0112484 Disordered Systems and Neural Networks +cond-mat/0201192 Statistical Mechanics +cond-mat/0201345 Disordered Systems and Neural Networks +cond-mat/0201514 Statistical Mechanics +cond-mat/0202028 Statistical Mechanics +cond-mat/0202203 Statistical Mechanics +cond-mat/0202352 Statistical Mechanics +cond-mat/0202388 Statistical Mechanics +cond-mat/0203046 Statistical Mechanics +cond-mat/0203399 Statistical Mechanics +cond-mat/0203591 Disordered Systems and Neural Networks +cond-mat/0203607 Statistical Mechanics +cond-mat/0204234 Statistical Mechanics +cond-mat/0204261 Statistical Mechanics +cond-mat/0204626 Statistical Mechanics +cond-mat/0205262 Disordered Systems and Neural Networks +cond-mat/0205520 Statistical Mechanics +cond-mat/0205636 Statistical Mechanics +cond-mat/0206457 Soft Condensed Matter +cond-mat/0207156 Statistical Mechanics +cond-mat/0207227 Statistical Mechanics +cond-mat/0207376 Statistical Mechanics +cond-mat/0207428 Statistical Mechanics +cond-mat/0207523 Disordered Systems and Neural Networks +cond-mat/0208240 Soft Condensed Matter +cond-mat/0208310 Disordered Systems and Neural Networks +cond-mat/0208574 Statistical Mechanics +cond-mat/0209065 Statistical Mechanics +cond-mat/0209103 Disordered Systems and Neural Networks +cond-mat/0209373 Statistical Mechanics +cond-mat/0209584 Disordered Systems and Neural Networks +cond-mat/0209685 Statistical Mechanics +cond-mat/0211039 Soft Condensed Matter +cond-mat/0211175 Statistical Mechanics +cond-mat/0212010 Statistical Mechanics +cond-mat/0212249 Statistical Mechanics +cond-mat/0212393 Statistical Mechanics +cond-mat/0212641 Statistical Mechanics +cond-mat/0301268 Statistical Mechanics +cond-mat/0302095 Statistical Mechanics +cond-mat/0302147 Statistical Mechanics +cond-mat/0302270 Statistical Mechanics +cond-mat/0302434 Statistical Mechanics +cond-mat/0302507 Statistical Mechanics +cond-mat/0303222 Statistical Mechanics +cond-mat/0303306 Statistical Mechanics +cond-mat/0303568 Statistical Mechanics +cond-mat/0304143 Statistical Mechanics +cond-mat/0304331 Statistical Mechanics +cond-mat/0305004 Statistical Mechanics +cond-mat/0305270 Statistical Mechanics +cond-mat/0305417 Disordered Systems and Neural Networks +cond-mat/0306496 Statistical Mechanics +cond-mat/0307170 Statistical Mechanics +cond-mat/0307332 Statistical Mechanics +cond-mat/0307759 Statistical Mechanics +cond-mat/0308017 Statistical Mechanics +cond-mat/0308358 Statistical Mechanics +cond-mat/0308365 Statistical Mechanics +cond-mat/0308548 Statistical Mechanics +cond-mat/0309003 Other Condensed Matter +cond-mat/0309233 Statistical Mechanics +cond-mat/0309416 Statistical Mechanics +cond-mat/0310092 Statistical Mechanics +cond-mat/0310305 Statistical Mechanics +cond-mat/0310343 Statistical Mechanics +cond-mat/0310544 Statistical Mechanics +cond-mat/0311053 Other Condensed Matter +cond-mat/0311096 Disordered Systems and Neural Networks +cond-mat/0311235 Statistical Mechanics +cond-mat/0311257 Statistical Mechanics +cond-mat/0311581 Statistical Mechanics +cond-mat/0312118 Disordered Systems and Neural Networks +cond-mat/0312149 Statistical Mechanics +cond-mat/0312413 Other Condensed Matter +cond-mat/0312658 Statistical Mechanics +cond-mat/0312703 Other Condensed Matter +cond-mat/0401225 Statistical Mechanics +cond-mat/0401329 Statistical Mechanics +cond-mat/0401495 Disordered Systems and Neural Networks +cond-mat/0401503 Statistical Mechanics +cond-mat/0402049 Disordered Systems and Neural Networks +cond-mat/0402185 Statistical Mechanics +cond-mat/0402390 Other Condensed Matter +cond-mat/0402511 Statistical Mechanics +cond-mat/0402573 Statistical Mechanics +cond-mat/0402654 Statistical Mechanics +cond-mat/0403045 Statistical Mechanics +cond-mat/0403067 Disordered Systems and Neural Networks +cond-mat/0403161 Statistical Mechanics +cond-mat/0403167 Other Condensed Matter +cond-mat/0403177 Statistical Mechanics +cond-mat/0403465 Other Condensed Matter +cond-mat/0403469 Other Condensed Matter +cond-mat/0403563 Statistical Mechanics +cond-mat/0403624 Statistical Mechanics +cond-mat/0403681 Statistical Mechanics +cond-mat/0403713 Other Condensed Matter +cond-mat/0403761 Other Condensed Matter +cond-mat/0403767 Other Condensed Matter +cond-mat/0404103 Other Condensed Matter +cond-mat/0404106 Other Condensed Matter +cond-mat/0404108 Other Condensed Matter +cond-mat/0404264 Statistical Mechanics +cond-mat/0404684 Other Condensed Matter +cond-mat/0405390 Statistical Mechanics +cond-mat/0406224 Other Condensed Matter +cond-mat/0406225 Statistical Mechanics +cond-mat/0406326 Statistical Mechanics +cond-mat/0406385 Other Condensed Matter +cond-mat/0406556 Other Condensed Matter +cond-mat/0406694 Other Condensed Matter +cond-mat/0406696 Other Condensed Matter +cond-mat/0407321 Other Condensed Matter +cond-mat/0407383 Statistical Mechanics +cond-mat/0407418 Statistical Mechanics +cond-mat/0407603 Other Condensed Matter +cond-mat/0407769 Other Condensed Matter +cond-mat/0408166 Statistical Mechanics +cond-mat/0408227 Other Condensed Matter +cond-mat/0408292 Other Condensed Matter +cond-mat/0408358 Other Condensed Matter +cond-mat/0408409 Statistical Mechanics +cond-mat/0408625 Statistical Mechanics +cond-mat/0409097 Other Condensed Matter +cond-mat/0409319 Other Condensed Matter +cond-mat/0409342 Disordered Systems and Neural Networks +cond-mat/0409375 Other Condensed Matter +cond-mat/0410079 Other Condensed Matter +cond-mat/0410225 Other Condensed Matter +cond-mat/0410289 Other Condensed Matter +cond-mat/0410294 Other Condensed Matter +cond-mat/0410762 Statistical Mechanics +cond-mat/0410768 Other Condensed Matter +cond-mat/0411699 Other Condensed Matter +cond-mat/0412014 Other Condensed Matter +cond-mat/0412526 Other Condensed Matter +cond-mat/0412723 Statistical Mechanics +cond-mat/0501057 Other Condensed Matter +cond-mat/0501261 Statistical Mechanics +cond-mat/0501292 Other Condensed Matter +cond-mat/0501320 Other Condensed Matter +cond-mat/0501325 Statistical Mechanics +cond-mat/0501639 Other Condensed Matter +cond-mat/0501699 Other Condensed Matter +cond-mat/0502582 Materials Science +cond-mat/0502583 Materials Science +cond-mat/0503567 Disordered Systems and Neural Networks +cond-mat/0503607 Statistical Mechanics +cond-mat/0508122 Disordered Systems and Neural Networks +cond-mat/0508451 Statistical Mechanics +cond-mat/0512087 Disordered Systems and Neural Networks +cond-mat/0601279 Statistical Mechanics +cond-mat/0601576 Materials Science +cond-mat/0603134 Disordered Systems and Neural Networks +cond-mat/0603612 Disordered Systems and Neural Networks +cond-mat/0609048 Statistical Mechanics +cond-mat/0610022 Statistical Mechanics +cond-mat/0701571 Superconductivity +cond-mat/0702236 Disordered Systems and Neural Networks +cond-mat/0703492 Statistical Mechanics +cond-mat/9705075 Statistical Mechanics +cond-mat/9705087 Statistical Mechanics +cond-mat/9707042 Statistical Mechanics +cond-mat/9711008 Disordered Systems and Neural Networks +cond-mat/9801240 Statistical Mechanics +cond-mat/9801321 Statistical Mechanics +cond-mat/9803059 Statistical Mechanics +cond-mat/9803238 Statistical Mechanics +cond-mat/9803367 Disordered Systems and Neural Networks +cond-mat/9805115 Statistical Mechanics +cond-mat/9807066 Statistical Mechanics +cond-mat/9808240 Statistical Mechanics +cond-mat/9808305 Statistical Mechanics +cond-mat/9809199 Soft Condensed Matter +cond-mat/9810091 Disordered Systems and Neural Networks +cond-mat/9810232 Statistical Mechanics +cond-mat/9811292 Statistical Mechanics +cond-mat/9812318 Statistical Mechanics +cond-mat/9901035 Statistical Mechanics +cond-mat/9901225 Disordered Systems and Neural Networks +cond-mat/9902044 Statistical Mechanics +cond-mat/9902046 Statistical Mechanics +cond-mat/9902047 Statistical Mechanics +cond-mat/9903220 Statistical Mechanics +cond-mat/9903221 Statistical Mechanics +cond-mat/9906413 Statistical Mechanics +cond-mat/9907217 Statistical Mechanics +cond-mat/9909131 Statistical Mechanics +cond-mat/9909302 Statistical Mechanics +cond-mat/9909439 Statistical Mechanics +cond-mat/9910141 Statistical Mechanics +cond-mat/9912330 Disordered Systems and Neural Networks +cs/0605112 Digital Libraries +cs/0610053 Computational Engineering, Finance, and Science +cs/0612065 Computer Science and Game Theory +dg-ga/9707009 Differential Geometry +gr-qc/0610100 +math/0205120 Probability +math/0207259 Probability +math/0207260 Probability +math/0302104 Optimization and Control +math/0304151 Optimization and Control +math/0307265 Probability +math/0309211 Classical Analysis and ODEs +math/0309276 Numerical Analysis +math/0309457 Probability +math/0311144 Probability +math/0404447 Probability +math/0406067 Probability +math/0407060 Probability +math/0502105 Probability +math/0502189 Probability +math/0502201 Probability +math/0503198 Combinatorics +math/0503550 Probability +math/0503580 Probability +math/0505551 Probability +math/0506077 Probability +math/0506127 Probability +math/0506621 Probability +math/0508487 Probability +math/0509139 Probability +math/0509231 Analysis of PDEs +math/0509367 Probability +math/0510662 Statistics Theory +math/0601526 Analysis of PDEs +math/0602013 Probability +math/0602594 Probability +math/0604311 Probability +math/0604640 Probability +math/0604641 Probability +math/0605049 Probability +math/0605062 Probability +math/0605064 Probability +math/0605421 Probability +math/0605457 Probability +math/0605599 Probability +math/0606183 Probability +math/0606520 Probability +math/0607123 Probability +math/0609170 Statistics Theory +math/0610489 Probability +math/0610791 Number Theory +math/0610852 Statistics Theory +math/0611186 Statistics Theory +math/0611187 Statistics Theory +math/0612075 Probability +math/0612816 Number Theory +math/0701650 Optimization and Control +math/0702173 Probability +math/0702249 Probability +math/0702473 Probability +math/0702726 Probability +math/0702727 Probability +math/0702810 Statistics Theory +math/0702812 Statistics Theory +math/0702814 Statistics Theory +math/0702815 Statistics Theory +math/0702849 Probability +math/0703074 Probability +math/0703079 Optimization and Control +math/0703085 Probability +math/0703714 Optimization and Control +math/0703811 Statistics Theory +math/0703820 Optimization and Control +math/0703823 Optimization and Control +math/0703827 Probability +math/0703831 Probability +math/0703832 Probability +math/0703834 Statistics Theory +math/0703850 Optimization and Control +math/9806030 Probability +math/9907160 Optimization and Control +nlin/0108012 Adaptation and Self-Organizing Systems +nlin/0206032 Chaotic Dynamics +nlin/0209010 Adaptation and Self-Organizing Systems +nlin/0311055 Adaptation and Self-Organizing Systems +nlin/0403041 Adaptation and Self-Organizing Systems +nlin/0411006 Adaptation and Self-Organizing Systems +nlin/0506015 Adaptation and Self-Organizing Systems +nlin/0507037 Chaotic Dynamics +nlin/0507054 Adaptation and Self-Organizing Systems +nlin/0601074 Chaotic Dynamics +nlin/0602019 Chaotic Dynamics +nlin/0701016 Chaotic Dynamics +physics/0007075 Computational Physics +physics/0101042 Physics and Society +physics/0203038 Data Analysis, Statistics and Probability +physics/0205053 Physics and Society +physics/0210025 Physics and Society +physics/0301023 Physics and Society +physics/0303028 Physics and Society +physics/0311074 Classical Physics +physics/0502045 Physics and Society +physics/0502084 Physics and Society +physics/0503006 Physics and Society +physics/0503016 Physics and Society +physics/0503076 Physics and Society +physics/0503126 Physics and Society +physics/0503139 Physics and Society +physics/0503157 Physics and Society +physics/0503214 Physics and Society +physics/0503230 Physics and Society +physics/0503242 Physics and Society +physics/0504002 Physics and Society +physics/0504009 Physics and Society +physics/0504014 Physics and Society +physics/0504121 Physics and Society +physics/0504122 Physics and Society +physics/0504143 Physics and Society +physics/0504150 Physics and Society +physics/0504158 Physics and Society +physics/0504161 Physics and Society +physics/0504197 Physics and Society +physics/0504210 Physics and Society +physics/0504217 Physics and Society +physics/0504221 Physics and Society +physics/0505142 Physics and Society +physics/0505173 Physics and Society +physics/0505178 Physics and Society +physics/0506027 Physics and Society +physics/0506072 Physics and Society +physics/0506103 Physics and Society +physics/0506114 Physics and Society +physics/0506224 Physics and Society +physics/0507006 Physics and Society +physics/0507020 Physics and Society +physics/0507022 Physics and Society +physics/0507054 Physics and Society +physics/0507073 Physics and Society +physics/0507098 Data Analysis, Statistics and Probability +physics/0507101 Physics and Society +physics/0507111 Data Analysis, Statistics and Probability +physics/0507136 Physics and Society +physics/0507161 Physics and Society +physics/0507162 Physics and Society +physics/0508023 Physics and Society +physics/0508156 Physics and Society +physics/0508162 Physics and Society +physics/0508172 Data Analysis, Statistics and Probability +physics/0508188 Data Analysis, Statistics and Probability +physics/0508203 Physics and Society +physics/0508218 Physics and Society +physics/0509014 Physics and Society +physics/0509020 Physics and Society +physics/0509102 Physics and Society +physics/0509142 Data Analysis, Statistics and Probability +physics/0509172 Physics and Society +physics/0509194 Physics and Society +physics/0509235 Physics and Society +physics/0510007 Physics and Society +physics/0510028 Physics and Society +physics/0510058 Physics and Society +physics/0510068 Physics and Society +physics/0510112 Data Analysis, Statistics and Probability +physics/0511091 Physics and Society +physics/0511101 Physics and Society +physics/0511119 Physics and Society +physics/0511129 Physics and Society +physics/0511191 Physics and Society +physics/0511224 Physics and Society +physics/0512090 Data Analysis, Statistics and Probability +physics/0512169 Physics and Society +physics/0512193 Physics and Society +physics/0512216 Physics and Society +physics/0512225 Physics and Society +physics/0512240 Data Analysis, Statistics and Probability +physics/0601028 General Physics +physics/0601047 Data Analysis, Statistics and Probability +physics/0601098 Physics and Society +physics/0601126 Data Analysis, Statistics and Probability +physics/0601174 Physics and Society +physics/0601176 Physics and Society +physics/0601187 General Physics +physics/0601222 Data Analysis, Statistics and Probability +physics/0602015 Physics and Society +physics/0602054 General Physics +physics/0602055 Computational Physics +physics/0602097 Physics and Society +physics/0602153 General Physics +physics/0603012 Physics and Society +physics/0603084 Data Analysis, Statistics and Probability +physics/0603103 Physics and Society +physics/0603141 Physics and Society +physics/0603147 Physics and Society +physics/0603152 Physics and Society +physics/0603182 General Physics +physics/0604145 General Physics +physics/0604161 Physics and Society +physics/0605115 Physics and Society +physics/0605147 Physics and Society +physics/0605149 Data Analysis, Statistics and Probability +physics/0605203 General Physics +physics/0605251 Physics and Society +physics/0606015 Physics and Society +physics/0606020 Physics and Society +physics/0606035 Physics and Society +physics/0606040 Data Analysis, Statistics and Probability +physics/0606041 Data Analysis, Statistics and Probability +physics/0606115 Physics and Society +physics/0606161 Physics and Society +physics/0606213 Physics and Society +physics/0606224 Data Analysis, Statistics and Probability +physics/0607014 Physics and Society +physics/0607030 General Physics +physics/0607048 General Physics +physics/0607076 Data Analysis, Statistics and Probability +physics/0607131 Physics and Society +physics/0607176 Data Analysis, Statistics and Probability +physics/0607180 Physics and Society +physics/0607182 Data Analysis, Statistics and Probability +physics/0607197 Physics and Society +physics/0607217 Physics and Society +physics/0607245 Data Analysis, Statistics and Probability +physics/0607246 Data Analysis, Statistics and Probability +physics/0607247 Physics and Society +physics/0607265 Physics and Society +physics/0607268 Physics and Society +physics/0607282 Data Analysis, Statistics and Probability +physics/0607288 General Physics +physics/0607293 Physics and Society +physics/0608004 Data Analysis, Statistics and Probability +physics/0608009 Data Analysis, Statistics and Probability +physics/0608010 General Physics +physics/0608022 Physics and Society +physics/0608032 Physics and Society +physics/0608091 Physics and Society +physics/0608129 General Physics +physics/0608148 Physics and Society +physics/0608190 Physics and Society +physics/0608191 Physics and Society +physics/0608197 Physics and Society +physics/0608214 Physics and Society +physics/0608224 Data Analysis, Statistics and Probability +physics/0608273 Physics and Society +physics/0608299 Physics and Society +physics/0609006 Physics and Society +physics/0609023 General Physics +physics/0609053 Physics and Society +physics/0609066 Physics and Society +physics/0609093 Physics and Society +physics/0609100 Physics and Society +physics/0609136 Physics and Society +physics/0609164 Physics and Society +physics/0609170 Physics and Society +physics/0609210 Physics and Society +physics/0609230 Physics and Society +physics/0610023 Physics and Society +physics/0610047 Physics and Society +physics/0610049 General Physics +physics/0610160 Physics and Society +physics/0610162 Physics and Society +physics/0610165 Physics and Society +physics/0610250 Physics and Society +physics/0611027 Physics and Society +physics/0611159 Physics and Society +physics/0611281 Data Analysis, Statistics and Probability +physics/0612084 Physics and Society +physics/0612091 Physics and Society +physics/0612170 Physics and Society +physics/0612221 Data Analysis, Statistics and Probability +physics/0701017 Physics and Society +physics/0701025 Physics and Society +physics/0701179 Physics and Society +physics/0702003 Data Analysis, Statistics and Probability +physics/0702027 Physics and Society +physics/0702035 Physics and Society +physics/0702060 General Physics +physics/0702157 General Physics +physics/0702185 Data Analysis, Statistics and Probability +physics/0703002 General Physics +physics/0703023 Physics and Society +physics/0703128 Physics and Society +physics/0703156 Physics and Society +physics/0703157 General Physics +physics/0703201 Physics and Society +physics/0703280 General Physics +physics/9809029 General Physics +q-bio/0311022 Quantitative Methods +0705.2216 Functional Analysis +0706.2359 Strongly Correlated Electrons +0706.2380 Biomolecules +0706.3022 Superconductivity +0707.1726 Mesoscale and Nanoscale Physics +0708.0016 Theory +0708.0224 Statistics Theory +0708.0296 +0710.4337 Materials Science +0710.5108 Geometric Topology +0711.2074 Strongly Correlated Electrons +0711.2670 Strongly Correlated Electrons +0711.3231 Other Condensed Matter +0711.4016 +0712.0926 Strongly Correlated Electrons +0712.2740 +0712.3332 Populations and Evolution +0801.2577 Combinatorics +0801.4162 Number Theory +0802.0703 +0802.1510 +0802.2137 Differential Geometry +0803.0229 +0803.4209 Geometric Topology +0803.4217 Superconductivity +0803.4232 Geometric Topology +0803.4233 Combinatorics +0803.4235 General Physics +0803.4237 Soft Condensed Matter +0803.4245 General Physics +0803.4247 +0803.4253 Artificial Intelligence +0803.4261 Computational Complexity +0803.4263 Geophysics +0803.4265 +0803.4271 Materials Science +0803.4284 +0803.4285 Geometric Topology +0803.4287 Materials Science +0803.4288 +0803.4289 Classical Physics +0803.4292 Combinatorics +0803.4293 +0803.4300 Metric Geometry +0803.4301 Number Theory +0803.4302 General Physics +0803.4311 Networking and Internet Architecture +0803.4317 +0803.4321 Discrete Mathematics +0803.4322 Data Analysis, Statistics and Probability +0803.4324 +0803.4326 Analysis of PDEs +0803.4335 +0803.4336 Functional Analysis +0803.4337 +0803.4341 +0803.4343 +0803.4348 Algebraic Geometry +0803.4353 +0803.4359 +0803.4368 Differential Geometry +0803.4378 +0803.4381 Group Theory +0803.4382 Representation Theory +0803.4388 Number Theory +0803.4389 Number Theory +0803.4395 Combinatorics +0803.4404 Operator Algebras +0803.4410 Operator Algebras +0803.4413 Statistical Mechanics +0803.4417 Operator Algebras +0803.4418 Combinatorics +0803.4421 Physics and Society +0803.4426 Materials Science +0803.4429 Geophysics +0803.4438 +0803.4440 Geophysics +0803.4444 Computational Physics +0803.4450 Soft Condensed Matter +0803.4454 Geometric Topology +0803.4456 +0803.4464 Chemical Physics +0803.4473 General Topology +0803.4475 Experiment +0803.4478 Geometric Topology +0803.4486 Combinatorics +0803.4489 +0803.4510 +0803.4511 Digital Libraries +0803.4512 Algebraic Geometry +0803.4516 Computational Complexity +cond-mat/0612362 Superconductivity +cond-mat/0702010 Mesoscale and Nanoscale Physics +cs/0602007 Cryptography and Security +math/0207168 Number Theory +math/0510023 Number Theory +math/0606343 Geometric Topology +math/0607647 Numerical Analysis +math/0610346 Differential Geometry +math/0610348 Algebraic Geometry +physics/0212095 Biological Physics +physics/0407078 History and Philosophy of Physics +q-bio/0702024 Quantitative Methods +quant-ph/0605240 +0704.1195 Complex Variables +0705.4220 Group Theory +0706.4255 +0707.0957 Theory +0707.3791 Theory +0708.0061 Statistics Theory +0708.4184 +0709.1307 Applications +0710.1339 +0711.1262 Number Theory +0711.2245 +0711.2342 Algebraic Geometry +0712.1514 +0801.0815 Information Theory +0801.2986 +0801.4283 Algebraic Geometry +0803.1523 Optics +0804.0262 Probability +0805.3359 History and Overview +0805.4326 Mesoscale and Nanoscale Physics +0806.2059 Biomolecules +0806.2195 Superconductivity +0806.2776 Superconductivity +0806.3191 +0806.3236 Probability +0806.3661 +0807.3574 Information Theory +0807.3784 Mesoscale and Nanoscale Physics +0807.3802 +0807.5049 Mesoscale and Nanoscale Physics +0808.0525 Dynamical Systems +0808.1274 Symplectic Geometry +0808.1612 Data Analysis, Statistics and Probability +0808.2557 +0808.2744 +0809.0670 Mesoscale and Nanoscale Physics +0809.1690 Representation Theory +0809.1723 Strongly Correlated Electrons +0810.3123 Probability +0811.1492 Exactly Solvable and Integrable Systems +0811.2645 +0811.2660 +0812.0463 Combinatorics +0812.1216 +0812.2110 +0812.2192 Algebraic Topology +0812.2260 Numerical Analysis +0812.2702 Logic in Computer Science +0812.2728 Biological Physics +0812.2926 Programming Languages +0812.2928 Operator Algebras +0812.2930 Exactly Solvable and Integrable Systems +0812.2931 Functional Analysis +0812.2933 Operator Algebras +0812.2934 Functional Analysis +0812.2937 Combinatorics +0812.2941 Geometric Topology +0812.2944 Dynamical Systems +0812.2947 Soft Condensed Matter +0812.2955 Strongly Correlated Electrons +0812.2959 +0812.2967 Computational Geometry +0812.2970 +0812.2973 Superconductivity +0812.2976 +0812.2978 Combinatorics +0812.2979 +0812.2988 Multimedia +0812.2989 Multimedia +0812.2990 Discrete Mathematics +0812.2991 Artificial Intelligence +0812.2998 Phenomenology +0812.3000 Methodology +0812.3003 Materials Science +0812.3007 Probability +0812.3009 Analysis of PDEs +0812.3025 Number Theory +0812.3035 Strongly Correlated Electrons +0812.3038 Statistics Theory +0812.3041 Experiment +0812.3046 Algebraic Geometry +0812.3050 Differential Geometry +0812.3055 Statistics Theory +0812.3056 Combinatorics +0812.3057 +0812.3060 Symplectic Geometry +0812.3062 +0812.3063 Computational Physics +0812.3066 Information Theory +0812.3068 Logic in Computer Science +0812.3070 Computation and Language +0812.3072 +0812.3074 Theory +0812.3075 Functional Analysis +0812.3076 Optics +0812.3079 Combinatorics +0812.3082 Combinatorics +0812.3083 Computational Finance +0812.3086 Geometric Topology +0812.3096 Strongly Correlated Electrons +0812.3104 +0812.3105 Group Theory +0812.3108 Theory +0812.3115 Numerical Analysis +0812.3116 Numerical Analysis +0812.3118 Mesoscale and Nanoscale Physics +0812.3130 +0812.3133 Differential Geometry +0812.3136 Physics Education +0812.3139 Atomic Physics +0812.3142 Mesoscale and Nanoscale Physics +0812.3145 Learning +0812.3147 Learning +math-ph/0606032 +math/0308050 Combinatorics +math/0502513 K-Theory and Homology +math/0510482 Number Theory +math/0602193 Combinatorics +math/0702120 Statistics Theory +quant-ph/0402178 +quant-ph/0408176 +quant-ph/0602073 +quant-ph/0608090 +0704.2824 Commutative Algebra +0704.3558 Functional Analysis +0705.1670 Other Condensed Matter +0705.1855 Analysis of PDEs +0707.4622 Mesoscale and Nanoscale Physics +0709.2372 Classical Physics +0710.2914 Other Condensed Matter +0710.3321 Materials Science +0711.2764 Quantum Algebra +0801.2853 Classical Physics +0801.3451 Plasma Physics +0801.3604 +0802.1579 Superconductivity +0803.1167 Other Condensed Matter +0803.3646 Functional Analysis +0804.0907 Phenomenology +0804.3697 Mesoscale and Nanoscale Physics +0804.3785 Strongly Correlated Electrons +0805.0215 Physics and Society +0805.2975 Experiment +0806.0926 Superconductivity +0806.2036 Phenomenology +0806.2159 Numerical Analysis +0806.3522 Differential Geometry +0808.2197 Dynamical Systems +0808.2938 +0808.3305 +0808.3458 Probability +0808.3505 +0808.3775 Space Physics +0808.3781 +0808.3782 Geometric Topology +0808.3790 Optimization and Control +0808.3791 Phenomenology +0808.3794 Symplectic Geometry +0808.3797 Experiment +0808.3802 +0808.3809 Superconductivity +0808.3812 +0808.3815 +0808.3816 Superconductivity +0808.3824 +0808.3830 Atomic Physics +0808.3831 Other Condensed Matter +0808.3835 +0808.3836 Materials Science +0808.3837 Atomic Physics +0808.3840 Rings and Algebras +0808.3841 Algebraic Topology +0808.3842 Probability +0808.3848 Other Condensed Matter +0808.3855 Methodology +0808.3856 Methodology +0808.3857 Methodology +0808.3859 Methodology +0808.3861 Methodology +0808.3864 Methodology +0808.3865 Pattern Formation and Solitons +0808.3872 Biological Physics +0808.3877 Algebraic Geometry +0808.3879 Functional Analysis +0808.3880 +0808.3885 Mesoscale and Nanoscale Physics +0808.3887 +0808.3889 Computation and Language +0808.3893 Complex Variables +0808.3901 Superconductivity +0808.3911 +0808.3914 Methodology +0808.3920 Experiment +0808.3929 Theory +0808.3935 Group Theory +0808.3947 Populations and Evolution +0808.3956 Statistical Mechanics +0808.3958 +0808.3959 Information Theory +0808.3962 Accelerator Physics +0808.3963 Exactly Solvable and Integrable Systems +0808.3970 Algebraic Geometry +0808.3971 Information Theory +0808.3976 +0808.3979 Combinatorics +cond-mat/9606075 +math-ph/0602030 +physics/0702102 Data Analysis, Statistics and Probability +q-bio/0602016 Populations and Evolution +0706.0801 Combinatorics +0709.3192 Methodology +0709.4109 +0710.3883 Theory +0710.4607 Algebraic Geometry +0711.1873 Group Theory +0711.2809 Representation Theory +0711.3381 Materials Science +0712.1194 Strongly Correlated Electrons +0712.1794 Algebraic Geometry +0712.4130 Materials Science +0801.0617 +0801.1173 Optics +0801.1460 Mesoscale and Nanoscale Physics +0801.1873 Operator Algebras +0801.2528 Materials Science +0801.3166 Number Theory +0801.4148 +0802.0795 Mesoscale and Nanoscale Physics +0802.3304 +0802.3601 +0802.3755 Optics +0803.0429 Superconductivity +0803.0921 +0804.2198 +0804.2444 +0805.0673 Materials Science +0805.4351 Strongly Correlated Electrons +0806.1955 Tissues and Organs +0806.1957 Logic +0806.1958 Accelerator Physics +0806.1974 Dynamical Systems +0806.1981 Algebraic Geometry +0806.1984 Computer Vision and Pattern Recognition +0806.1991 Other Condensed Matter +0806.1995 +0806.2016 +0806.2023 Combinatorics +0806.2024 +0806.2027 Combinatorics +0806.2030 Strongly Correlated Electrons +0806.2033 Operator Algebras +0806.2037 +0806.2038 Algebraic Geometry +0806.2039 Optics +0806.2046 +0806.2047 +0806.2048 +0806.2053 Quantum Algebra +0806.2056 Algebraic Geometry +0806.2057 Combinatorics +0806.2062 Other Condensed Matter +0806.2063 +0806.2067 +0806.2069 Populations and Evolution +0806.2073 Geometric Topology +0806.2076 +0806.2084 Information Theory +0806.2085 +0806.2086 Classical Analysis and ODEs +0806.2088 Functional Analysis +0806.2089 Rings and Algebras +0806.2092 Combinatorics +0806.2093 +0806.2094 Phenomenology +0806.2099 Tissues and Organs +0806.2101 +0806.2102 +0806.2114 Combinatorics +0806.2119 Experiment +0806.2136 Mesoscale and Nanoscale Physics +0806.2138 +cond-mat/0611201 Statistical Mechanics +cond-mat/0612011 Strongly Correlated Electrons +cs/0511070 Information Theory +math/0609801 Probability +q-bio/0612023 Populations and Evolution +quant-ph/0608044 +0706.2331 Computational Engineering, Finance, and Science +0709.4550 Strongly Correlated Electrons +0710.2092 Disordered Systems and Neural Networks +0711.0044 +0711.3427 Other Condensed Matter +0711.4650 +0712.2486 +0801.2073 +0802.0656 +0803.0757 +0804.2033 Commutative Algebra +0804.2145 Combinatorics +0804.3435 Strongly Correlated Electrons +0805.1847 +0805.2814 Combinatorics +0805.3053 Materials Science +0805.3635 Strongly Correlated Electrons +0806.1885 Other Condensed Matter +0806.2600 +0806.3050 Fluid Dynamics +0806.4207 +0807.0464 +0807.0468 Number Theory +0807.0533 +0807.0581 Mesoscale and Nanoscale Physics +0807.2909 +0807.3711 Mesoscale and Nanoscale Physics +0807.4910 +0808.1624 +0808.1741 Algebraic Geometry +0808.2461 Algebraic Geometry +0808.3552 Other Condensed Matter +0809.1650 Theory +0810.5632 Statistical Mechanics +0811.1200 Differential Geometry +0811.1609 Analysis of PDEs +0811.3849 Phenomenology +0811.4400 +0811.4764 Rings and Algebras +0812.0125 Differential Geometry +0812.0305 Numerical Analysis +0812.0371 Number Theory +0812.0382 Computational Geometry +0812.0386 Classical Physics +0812.0406 Superconductivity +0812.0408 +0812.0412 Group Theory +0812.0415 Complex Variables +0812.0425 Geometric Topology +0812.0429 +0812.0435 Combinatorics +0812.0438 Databases +0812.0440 Combinatorics +0812.0444 Commutative Algebra +0812.0446 Soft Condensed Matter +0812.0447 Combinatorics +0812.0448 Differential Geometry +0812.0449 Statistics Theory +0812.0455 Mesoscale and Nanoscale Physics +0812.0461 Instrumentation and Detectors +0812.0469 Phenomenology +0812.0470 Experiment +0812.0472 Strongly Correlated Electrons +0812.0476 Classical Analysis and ODEs +0812.0477 +0812.0482 +0812.0486 Computer Science and Game Theory +0812.0492 Computer Science and Game Theory +0812.0494 Numerical Analysis +0812.0496 Probability +0812.0499 +0812.0501 Statistical Mechanics +0812.0510 Phenomenology +0812.0514 General Physics +0812.0515 Computer Science and Game Theory +0812.0517 +0812.0519 Phenomenology +0812.0524 Phenomenology +0812.0527 Rings and Algebras +0812.0529 Phenomenology +0812.0530 Theory +0812.0539 Phenomenology +0812.0544 Algebraic Geometry +0812.0554 Functional Analysis +0812.0560 Number Theory +0812.0563 Biological Physics +0812.0564 Programming Languages +0812.0568 Exactly Solvable and Integrable Systems +0812.0582 Analysis of PDEs +0812.0588 General Physics +cond-mat/0509632 Superconductivity +quant-ph/0406048 +quant-ph/0505111 +quant-ph/0611167 +0705.3133 Phenomenology +0706.3957 Algebraic Geometry +0707.2508 +0707.4242 Computation +0708.3791 Statistical Mechanics +0709.1167 Artificial Intelligence +0710.2220 Statistical Mechanics +0710.3391 Rings and Algebras +0710.4318 Symbolic Computation +0711.0066 Mesoscale and Nanoscale Physics +0711.0906 Combinatorics +0711.3810 Theory +0711.3839 Statistical Mechanics +0712.0185 Space Physics +0712.0692 Algebraic Geometry +0801.0753 Populations and Evolution +0801.4115 +0802.1094 Group Theory +0803.3630 Spectral Theory +0805.3293 +0806.1706 Analysis of PDEs +0806.2079 +0807.0386 Mesoscale and Nanoscale Physics +0807.1348 +0807.1933 Strongly Correlated Electrons +0807.3536 Materials Science +0807.4065 Number Theory +0807.4245 Mesoscale and Nanoscale Physics +0808.1313 Chaotic Dynamics +0808.2644 +0808.3354 Strongly Correlated Electrons +0809.0203 Materials Science +0809.4460 Mesoscale and Nanoscale Physics +0810.1830 Materials Science +0810.1908 Probability +0810.3041 Theory +0810.3904 Statistical Mechanics +0810.4276 Phenomenology +0810.4551 Phenomenology +0810.4579 Functional Analysis +0810.5018 +0810.5562 Commutative Algebra +0810.5564 Classical Physics +0810.5565 Probability +0810.5566 Geometric Topology +0810.5568 Materials Science +0810.5569 Complex Variables +0810.5572 Algebraic Geometry +0810.5573 Computer Vision and Pattern Recognition +0810.5575 Programming Languages +0810.5577 Applications +0810.5578 Databases +0810.5581 Exactly Solvable and Integrable Systems +0810.5584 Algebraic Geometry +0810.5589 Other Condensed Matter +0810.5595 Algebraic Geometry +0810.5596 Distributed, Parallel, and Cluster Computing +0810.5597 +0810.5601 +0810.5603 Applications +0810.5604 Differential Geometry +0810.5607 +0810.5614 +0810.5621 Differential Geometry +0810.5630 +0810.5631 Learning +0810.5638 Analysis of PDEs +0810.5639 +0810.5640 +0810.5644 +0810.5646 Analysis of PDEs +0810.5647 Symbolic Computation +0810.5652 Representation Theory +0810.5655 Methodology +0810.5657 Materials Science +0810.5658 Strongly Correlated Electrons +0810.5659 Theory +0810.5662 Probability +0810.5667 Phenomenology +0810.5669 Chemical Physics +0810.5673 Probability +0810.5676 Populations and Evolution +0810.5688 Algebraic Geometry +0810.5691 History and Overview +0810.5700 Strongly Correlated Electrons +0810.5708 Geophysics +0810.5717 Artificial Intelligence +0810.5719 Materials Science +0810.5721 Experiment +0810.5725 Logic in Computer Science +0810.5730 Phenomenology +0810.5732 Distributed, Parallel, and Cluster Computing +0810.5736 Strongly Correlated Electrons +0810.5742 Phenomenology +0810.5751 +0810.5755 Medical Physics +0810.5758 Distributed, Parallel, and Cluster Computing +0810.5759 Superconductivity +0810.5760 Number Theory +0810.5761 Materials Science +0810.5763 Networking and Internet Architecture +0810.5766 Analysis of PDEs +astro-ph/0510718 +cond-mat/0203082 Superconductivity +cond-mat/0310318 Mesoscale and Nanoscale Physics +cond-mat/0403327 Superconductivity +math/0409513 Rings and Algebras +math/0505178 Algebraic Geometry +math/0601464 Rings and Algebras +math/0606364 Functional Analysis +math/0606366 Functional Analysis +math/0607673 Representation Theory +math/0609449 Representation Theory +math/0611355 Representation Theory +quant-ph/0208006 +0707.1865 +0707.3477 Statistical Mechanics +0710.1126 Strongly Correlated Electrons +0710.1128 Strongly Correlated Electrons +0710.1653 +0710.5570 +0711.4311 Functional Analysis +0802.1570 Neurons and Cognition +0803.1464 Mesoscale and Nanoscale Physics +0803.4246 Materials Science +0805.1079 Classical Physics +0805.1890 +physics/0507110 Physics Education +0710.0686 +0711.3890 Algebraic Geometry +0801.0470 Mesoscale and Nanoscale Physics +0803.0127 Other Condensed Matter +0804.1600 +0804.3590 +0806.0548 Superconductivity +0806.3597 Phenomenology +0807.0748 Materials Science +0807.4349 +0808.0148 Data Structures and Algorithms +0808.0734 +math/0608668 Algebraic Geometry +math/9811079 Metric Geometry +0704.0230 +0705.1540 Mesoscale and Nanoscale Physics +0705.4672 Phenomenology +0706.0246 Optimization and Control +0706.3917 Symplectic Geometry +0706.4151 Statistical Mechanics +0707.3241 Probability +0709.1518 +0709.3054 Mesoscale and Nanoscale Physics +0710.0521 Statistical Mechanics +0710.0810 Representation Theory +0710.1204 +0710.2323 Mesoscale and Nanoscale Physics +0710.2847 +0710.3374 Number Theory +0712.0539 +0712.2464 Computational Physics +0801.0073 Dynamical Systems +0801.1452 Algebraic Geometry +0801.1674 Numerical Analysis +0801.1681 +0801.1683 Atmospheric and Oceanic Physics +0801.1687 Logic in Computer Science +0801.1694 General Physics +0801.1696 +0801.1701 Classical Analysis and ODEs +0801.1703 Information Theory +0801.1704 +0801.1707 +0801.1720 Complex Variables +0801.1724 Applications +0801.1731 Logic +0801.1733 Number Theory +0801.1736 Information Theory +0801.1737 Discrete Mathematics +0801.1738 Chemical Physics +0801.1744 Combinatorics +0801.1745 Classical Analysis and ODEs +0801.1746 Theory +0801.1757 +0801.1760 Algebraic Geometry +0801.1765 Strongly Correlated Electrons +0801.1766 Computational Complexity +0801.1769 +0801.1770 +0801.1771 +0801.1772 Distributed, Parallel, and Cluster Computing +0801.1775 Mesoscale and Nanoscale Physics +0801.1776 +0801.1777 +0801.1789 Phenomenology +0801.1793 +0801.1804 Number Theory +0801.1810 Number Theory +0801.1812 Functional Analysis +0801.1819 Materials Science +0801.1822 Quantum Algebra +0801.1830 Probability +cond-mat/0303363 Mesoscale and Nanoscale Physics +cond-mat/0308203 Strongly Correlated Electrons +cond-mat/0405344 Strongly Correlated Electrons +cond-mat/0603536 Superconductivity +cond-mat/0607318 Superconductivity +cond-mat/0702117 Mesoscale and Nanoscale Physics +gr-qc/0608118 +hep-th/0610240 Theory +math/0502186 Number Theory +math/0609510 Dynamical Systems +math/0610060 Algebraic Geometry +nlin/0702039 Chaotic Dynamics +physics/0702253 Classical Physics +0706.1441 +0711.3264 Analysis of PDEs +0712.1309 Dynamical Systems +0801.2663 Classical Physics +0801.3378 Soft Condensed Matter +0802.2305 Information Theory +0802.2816 Numerical Analysis +cond-mat/0609252 Materials Science +cond-mat/0701041 Mesoscale and Nanoscale Physics +math/0703601 Rings and Algebras +math/0703856 Combinatorics +quant-ph/0701113 +0704.3386 Algebraic Geometry +0704.3475 +0705.2569 Other Condensed Matter +0705.4497 Other Condensed Matter +0707.0834 General Physics +0707.2811 +0709.1689 Geometric Topology +0710.1639 Mesoscale and Nanoscale Physics +0710.2095 Strongly Correlated Electrons +0710.4079 Group Theory +0711.1124 Statistical Mechanics +0711.4648 Complex Variables +0712.2374 Statistical Mechanics +0712.4308 Materials Science +0801.1225 Number Theory +0801.3577 Superconductivity +0803.0650 Atomic Physics +0803.2178 Analysis of PDEs +0803.2778 Quantum Algebra +0803.2812 Computer Vision and Pattern Recognition +0803.3086 Soft Condensed Matter +0803.3087 Classical Physics +0803.3092 Functional Analysis +0803.3099 Logic in Computer Science +0803.3104 Superconductivity +0803.3105 +0803.3106 History and Overview +0803.3109 +0803.3111 Probability +0803.3119 General Mathematics +0803.3122 Metric Geometry +0803.3132 Chaotic Dynamics +0803.3133 Classical Analysis and ODEs +0803.3142 +0803.3143 Biomolecules +0803.3144 Geometric Topology +0803.3150 Physics and Society +0803.3154 +0803.3159 +0803.3164 Probability +0803.3166 Spectral Theory +0803.3167 Physics Education +0803.3168 Soft Condensed Matter +0803.3170 Spectral Theory +0803.3175 Spectral Theory +0803.3178 Spectral Theory +0803.3180 Genomics +0803.3183 +0803.3195 Geometric Topology +0803.3196 Algebraic Geometry +0803.3204 +0803.3205 Algebraic Topology +0803.3208 Analysis of PDEs +cond-mat/0310527 Strongly Correlated Electrons +math/0304292 Commutative Algebra +math/0607038 Representation Theory +math/0612669 Combinatorics +math/0702733 Commutative Algebra +physics/0611136 Optics +physics/0611151 Chemical Physics +0706.3237 Analysis of PDEs +0707.2011 Other Quantitative Biology +0708.3273 Materials Science +0709.0749 Computational Complexity +0709.0751 Computational Complexity +0710.0805 Computational Complexity +0710.1936 Number Theory +0710.3669 Representation Theory +0712.2400 +0802.1106 Number Theory +0803.0014 Logic in Computer Science +0803.0719 Statistical Mechanics +0803.1810 +0803.3073 Logic +0803.4042 Algebraic Geometry +0805.0042 Differential Geometry +0805.0210 Commutative Algebra +0805.0561 +0805.1334 Statistical Mechanics +0805.1497 Materials Science +0805.2014 Functional Analysis +0805.4078 Statistical Mechanics +0806.4050 +0806.4662 Neurons and Cognition +0807.0916 Geometric Topology +0807.2511 +0807.3496 +0808.2835 Materials Science +0808.2965 +0808.3287 Computational Physics +0808.3612 +0808.3982 Phenomenology +0808.3986 +0808.3988 Populations and Evolution +0808.3989 Symplectic Geometry +0808.3995 +0808.3997 Dynamical Systems +0808.4000 +0808.4005 Differential Geometry +0808.4009 Functional Analysis +0808.4010 Probability +0808.4011 +0808.4018 Atomic and Molecular Clusters +0808.4019 Analysis of PDEs +0808.4022 Combinatorics +0808.4024 Probability +0808.4026 Theory +0808.4029 Algebraic Geometry +0808.4030 Superconductivity +0808.4031 Applications +0808.4032 Methodology +0808.4033 Statistical Mechanics +0808.4042 Statistics Theory +0808.4043 Methodology +0808.4045 +0808.4055 +0808.4058 Algebraic Geometry +0808.4060 Cryptography and Security +0808.4069 Number Theory +0808.4071 Algebraic Geometry +0808.4081 Geophysics +0808.4082 Number Theory +0808.4083 Geophysics +0808.4084 Geophysics +0808.4087 Phenomenology +0808.4088 Soft Condensed Matter +0808.4100 Rings and Algebras +0808.4101 +0808.4102 Experiment +0808.4104 Networking and Internet Architecture +0808.4105 +0808.4109 Group Theory +0808.4114 Algebraic Geometry +0808.4117 +0808.4123 +0808.4124 Experiment +0808.4131 Other Condensed Matter +0808.4135 Information Theory +0808.4138 Differential Geometry +0808.4144 Representation Theory +0808.4145 Mesoscale and Nanoscale Physics +0808.4148 Complex Variables +0808.4149 Biological Physics +math/9407209 Functional Analysis +0803.1516 Materials Science +0804.4768 Soft Condensed Matter +0805.4338 Information Theory +0806.0980 Superconductivity +0806.2972 Soft Condensed Matter +0808.2997 Representation Theory +0809.0257 Computational Complexity +0809.0691 Representation Theory +0809.1918 General Mathematics +0809.3030 Computers and Society +cond-mat/0605469 Mesoscale and Nanoscale Physics +cond-mat/0608403 Strongly Correlated Electrons +math/0612116 Geometric Topology +0704.2976 Functional Analysis +0705.2840 Geophysics +0705.4305 Theory +0706.1917 Chaotic Dynamics +0706.2085 Strongly Correlated Electrons +0706.3620 Group Theory +0708.1387 Strongly Correlated Electrons +0708.1407 Strongly Correlated Electrons +0708.2451 Number Theory +0709.0214 +0709.0580 Superconductivity +0709.3940 Phenomenology +0709.4522 Theory +0710.0851 Materials Science +0710.1386 Commutative Algebra +0710.3153 Materials Science +0710.5331 Phenomenology +0711.1257 Dynamical Systems +0711.2439 Mesoscale and Nanoscale Physics +0712.0769 Other Computer Science +0712.3816 +0801.0168 Data Analysis, Statistics and Probability +0801.0176 Data Analysis, Statistics and Probability +0801.0246 General Physics +0801.1571 Phenomenology +0801.1782 +0801.1915 Soft Condensed Matter +0801.2392 Rings and Algebras +0801.2393 Probability +0801.2396 +0801.2404 Combinatorics +0801.2407 +0801.2409 Dynamical Systems +0801.2423 Information Theory +0801.2425 Materials Science +0801.2426 Phenomenology +0801.2441 Analysis of PDEs +0801.2445 Analysis of PDEs +0801.2447 Quantitative Methods +0801.2450 +0801.2457 Fluid Dynamics +0801.2458 Fluid Dynamics +0801.2460 Materials Science +0801.2465 +0801.2470 Rings and Algebras +0801.2472 Phenomenology +0801.2477 Functional Analysis +0801.2480 Information Theory +0801.2481 Rings and Algebras +0801.2483 +0801.2486 Functional Analysis +0801.2487 Classical Physics +0801.2489 Optics +0801.2494 Algebraic Geometry +0801.2496 Representation Theory +0801.2497 +0801.2499 Optimization and Control +0801.2507 Representation Theory +0801.2509 Probability +0801.2510 Computation and Language +0801.2512 Phenomenology +0801.2517 Phenomenology +0801.2518 +0801.2520 Physics and Society +0801.2521 Other Condensed Matter +0801.2523 +0801.2526 Probability +0801.2530 Dynamical Systems +0801.2531 Operator Algebras +0801.2532 +0801.2536 Theory +0801.2537 +0801.2541 Lattice +0801.2551 +0801.2555 Methodology +0801.2567 Quantum Algebra +math/0405153 Dynamical Systems +math/0505221 Differential Geometry +math/0512575 Algebraic Topology +math/0512576 Algebraic Topology +math/0606434 Dynamical Systems +math/0607696 Numerical Analysis +math/0701468 Geometric Topology +math/0702105 Algebraic Geometry +math/0703855 Algebraic Geometry +q-bio/0504013 Quantitative Methods +q-bio/0609049 Quantitative Methods +0705.1805 +0705.3501 Numerical Analysis +0706.0281 Exactly Solvable and Integrable Systems +0707.4158 +0708.1131 +0708.2941 Representation Theory +0709.0044 Theory +0709.0588 +0709.3392 Other Condensed Matter +0710.3266 Statistical Mechanics +0710.4493 +0711.0934 +0711.2429 +0711.3801 +0712.0063 Mesoscale and Nanoscale Physics +0712.1052 +0801.2219 Materials Science +0802.0104 Number Theory +0802.0528 Differential Geometry +0802.1347 Functional Analysis +0802.2541 Geometric Topology +0802.2873 +0802.2886 Combinatorics +0802.3546 Functional Analysis +0803.0450 Databases +0803.0812 General Mathematics +0803.0892 Algebraic Geometry +0803.1023 Populations and Evolution +0803.1033 Combinatorics +0803.1182 +0803.1184 Theory +0803.1192 Dynamical Systems +0803.1194 Theory +0803.1197 General Physics +0803.1200 Geometric Topology +0803.1201 +0803.1202 Optimization and Control +0803.1217 Discrete Mathematics +0803.1218 +0803.1219 +0803.1220 Cryptography and Security +0803.1225 Probability +0803.1228 +0803.1230 Other Condensed Matter +0803.1237 Algebraic Geometry +0803.1238 Strongly Correlated Electrons +0803.1239 Physics and Society +0803.1240 +0803.1241 +0803.1242 +0803.1248 Combinatorics +0803.1250 Differential Geometry +0803.1257 Materials Science +0803.1258 Geometric Topology +0803.1259 Theory +0803.1260 Complex Variables +0803.1261 Genomics +0803.1268 Classical Analysis and ODEs +0803.1269 Number Theory +0803.1281 Lattice +0803.1283 Functional Analysis +0803.1284 Differential Geometry +0803.1285 Rings and Algebras +0803.1289 +0803.1304 Classical Analysis and ODEs +0803.1305 General Mathematics +0803.1314 Differential Geometry +0803.1315 Theory +0803.1317 Metric Geometry +0803.1319 Physics and Society +0803.1320 Quantum Algebra +0803.1331 Group Theory +0803.1332 Commutative Algebra +0803.1342 +0803.1346 Algebraic Geometry +0803.1348 Algebraic Geometry +0803.1350 +0803.1355 +0803.1359 Analysis of PDEs +0803.1360 Computers and Society +0803.1365 Numerical Analysis +0803.1376 +0803.1382 Analysis of PDEs +0803.1385 Molecular Networks +0803.1387 Dynamical Systems +0803.1389 +0803.1391 +0803.1398 Number Theory +0803.1413 Probability +0803.1417 Medical Physics +0803.1428 Rings and Algebras +0803.1437 Soft Condensed Matter +0803.1445 Information Theory +0803.1450 Accelerator Physics +0803.1451 Experiment +0803.1453 Probability +0803.1454 Information Theory +0803.1474 Optimization and Control +astro-ph/0307072 +math-ph/0207037 +math-ph/0301019 +math-ph/0405064 +math/0203030 Metric Geometry +math/0411144 Group Theory +math/0508049 Differential Geometry +math/0601067 Metric Geometry +math/0609183 Numerical Analysis +math/0612833 Classical Analysis and ODEs +quant-ph/0610150 +0707.4290 Algebraic Geometry +0708.1898 Statistical Mechanics +0708.4279 K-Theory and Homology +0709.2007 Statistics Theory +0710.0651 +0710.2321 Classical Physics +0711.2427 Soft Condensed Matter +0711.3153 General Physics +0711.3492 Populations and Evolution +0712.1259 Disordered Systems and Neural Networks +0801.0306 Quantum Algebra +0801.1097 Combinatorics +0801.3242 +0801.4771 +0802.2488 Materials Science +0803.0183 +0803.1808 Superconductivity +0803.2763 Other Condensed Matter +0803.2776 Superconductivity +0803.2798 +0804.2315 Statistical Mechanics +0804.2443 General Physics +0804.2980 Soft Condensed Matter +0804.4655 Combinatorics +0805.0257 Operator Algebras +0805.1897 Differential Geometry +0805.3725 Physics and Society +0805.3916 Pattern Formation and Solitons +0805.4161 Theory +0805.4207 +0805.4211 Software Engineering +0805.4213 +0805.4214 +0805.4218 Software Engineering +0805.4219 Software Engineering +0805.4220 Numerical Analysis +0805.4224 Software Engineering +0805.4228 +0805.4230 +0805.4233 +0805.4236 Software Engineering +0805.4239 Materials Science +0805.4240 Optics +0805.4242 Materials Science +0805.4243 Rings and Algebras +0805.4246 Lattice +0805.4247 Neural and Evolutionary Computing +0805.4248 Information Theory +0805.4249 Information Theory +0805.4250 Theory +0805.4253 Geometric Topology +0805.4254 +0805.4256 Functional Analysis +0805.4262 Materials Science +0805.4281 Exactly Solvable and Integrable Systems +0805.4282 Number Theory +0805.4293 Superconductivity +0805.4302 +0805.4304 +0805.4310 Exactly Solvable and Integrable Systems +0805.4315 Genomics +0805.4321 Soft Condensed Matter +0805.4322 +0805.4334 Statistical Mechanics +0805.4336 Soft Condensed Matter +0805.4337 Phenomenology +0805.4339 Theory +0805.4340 Superconductivity +0805.4341 Strongly Correlated Electrons +0805.4345 +0805.4348 +0805.4353 Probability +0805.4355 Chaotic Dynamics +0805.4358 Combinatorics +0805.4361 +0805.4366 Functional Analysis +0805.4367 Dynamical Systems +0805.4370 Functional Analysis +0805.4371 Phenomenology +0805.4394 Cryptography and Security +0805.4395 +0805.4403 Dynamical Systems +0805.4405 Chaotic Dynamics +0805.4406 Experiment +0805.4410 Theory +0805.4411 +cond-mat/0701692 Superconductivity +cs/0702016 Logic in Computer Science +math/0402460 Number Theory +math/0410203 Algebraic Geometry +math/0507084 Probability +math/0602114 Number Theory +math/0612204 Operator Algebras +math/0702785 Probability +math/0703052 Number Theory +physics/0703218 Data Analysis, Statistics and Probability +0704.0126 Superconductivity +0706.0971 Geometric Topology +0709.2282 Analysis of PDEs +0710.3899 Other Condensed Matter +0711.3915 Information Theory +0712.1198 Analysis of PDEs +0712.1325 +0801.1302 Data Analysis, Statistics and Probability +0801.3803 +0801.4581 Geometric Topology +0802.3443 Superconductivity +0803.0090 Algebraic Geometry +0803.0623 Superconductivity +0803.0723 Strongly Correlated Electrons +0803.1288 Superconductivity +0803.2764 Disordered Systems and Neural Networks +0803.3311 +0804.1689 Mesoscale and Nanoscale Physics +0804.4775 Other Condensed Matter +0805.0200 Operating Systems +0805.0802 Cryptography and Security +0805.3155 Computer Science and Game Theory +0805.3280 Materials Science +0806.0254 Strongly Correlated Electrons +0806.1369 +0806.3038 Mesoscale and Nanoscale Physics +0807.0289 +0807.0591 Phenomenology +0809.0626 Mesoscale and Nanoscale Physics +0809.0651 Algebraic Geometry +0809.0902 General Mathematics +0809.0904 Differential Geometry +0809.0905 Algebraic Geometry +0809.0906 +0809.0909 +0809.0911 Functional Analysis +0809.0920 Algebraic Geometry +0809.0923 +0809.0926 Materials Science +0809.0935 +0809.0937 Algebraic Geometry +0809.0938 Group Theory +0809.0939 +0809.0941 Differential Geometry +0809.0944 Phenomenology +0809.0945 Phenomenology +0809.0946 Differential Geometry +0809.0948 Group Theory +0809.0954 Number Theory +0809.0959 Group Theory +0809.0960 Experiment +0809.0961 Artificial Intelligence +0809.0968 Plasma Physics +0809.0971 Materials Science +0809.0982 Representation Theory +0809.0986 Probability +0809.1000 Complex Variables +0809.1002 Other Condensed Matter +0809.1011 Soft Condensed Matter +0809.1015 Soft Condensed Matter +0809.1019 Human-Computer Interaction +0809.1022 +0809.1023 +0809.1024 Methodology +0809.1042 Theory +0809.1045 +0809.1048 Number Theory +0809.1050 Experiment +0809.1052 Combinatorics +0809.1061 Networking and Internet Architecture +0809.1063 Quantitative Methods +0809.1068 Strongly Correlated Electrons +0809.1075 Representation Theory +0809.1076 +0809.1077 Artificial Intelligence +0809.1081 Physics Education +0809.1084 +0809.1088 Geometric Topology +cond-mat/0209100 +cond-mat/0401219 Other Condensed Matter +cond-mat/0406629 Other Condensed Matter +cond-mat/0601490 Mesoscale and Nanoscale Physics +cond-mat/0607116 Other Condensed Matter +cond-mat/0609750 Mesoscale and Nanoscale Physics +quant-ph/0106005 +quant-ph/0602144 +0704.0201 Representation Theory +0705.2547 Classical Analysis and ODEs +0706.2826 Other Condensed Matter +0707.0495 Mesoscale and Nanoscale Physics +0710.3587 +0710.4078 Algebraic Geometry +0710.5819 Soft Condensed Matter +0711.2756 +0712.1116 Theory +0712.1808 Strongly Correlated Electrons +0712.3659 Atomic Physics +0802.0003 Combinatorics +0802.1164 Materials Science +0802.1596 +0802.2144 Statistical Mechanics +0803.2488 Strongly Correlated Electrons +0804.3604 +0804.3996 Statistical Mechanics +0805.2078 +0805.3545 Materials Science +0805.3925 Superconductivity +0806.2332 Computational Geometry +0806.2765 Analysis of PDEs +0806.3925 Materials Science +0807.3153 Superconductivity +0808.0128 Popular Physics +0808.0209 Phenomenology +0808.0503 +0808.0506 Theory +0808.0512 Operator Algebras +0808.0518 Digital Libraries +0808.0520 Statistical Mechanics +0808.0521 Logic in Computer Science +0808.0532 General Physics +0808.0534 Experiment +0808.0544 Information Theory +0808.0547 Geometric Topology +0808.0552 Differential Geometry +0808.0554 Logic in Computer Science +0808.0558 Information Theory +0808.0560 +0808.0572 Methodology +0808.0574 +0808.0582 Methodology +0808.0583 +0808.0586 Programming Languages +0808.0588 +0808.0590 Atomic Physics +0808.0592 Statistical Mechanics +0808.0593 Methodology +0808.0596 Information Theory +0808.0597 Methodology +0808.0599 Methodology +0808.0603 Methodology +0808.0604 +0808.0607 Representation Theory +0808.0618 +0808.0620 Methodology +0808.0625 K-Theory and Homology +0808.0629 +0808.0631 Methodology +0808.0634 Cryptography and Security +0808.0638 Methodology +0808.0639 Methodology +0808.0645 Methodology +0808.0647 Computational Complexity +0808.0648 Dynamical Systems +0808.0650 Phenomenology +0808.0654 Experiment +0808.0655 +0808.0656 +0808.0657 Methodology +0808.0665 Discrete Mathematics +0808.0668 Fluid Dynamics +0808.0670 +0808.0674 Phenomenology +0808.0675 +0808.0677 Instrumentation and Detectors +0808.0679 +0808.0683 Experiment +0808.0684 Cryptography and Security +0808.0686 +0808.0688 Number Theory +0808.0695 Algebraic Geometry +0808.0697 Experiment +0808.0699 Algebraic Geometry +0808.0701 +cond-mat/0501257 Disordered Systems and Neural Networks +math/0409503 Quantum Algebra +math/0501313 Combinatorics +math/9910136 Quantum Algebra +quant-ph/0304099 +quant-ph/0305134 +quant-ph/0311171 +0706.0237 +0706.4439 +0707.3607 Combinatorics +0708.0679 Differential Geometry +0708.1136 Biomolecules +0708.3414 +0708.4304 Mesoscale and Nanoscale Physics +0709.4269 Phenomenology +0710.1163 Quantum Algebra +0710.5793 Number Theory +0711.0324 Category Theory +0711.0765 Algebraic Geometry +0711.3392 Mesoscale and Nanoscale Physics +0711.3557 Functional Analysis +0712.2389 Artificial Intelligence +0801.2453 +0801.3601 Atomic and Molecular Clusters +0802.1217 Number Theory +0802.1564 Quantum Algebra +0802.3229 +0803.1666 Geometric Topology +0804.1301 Statistical Mechanics +0804.2215 Mesoscale and Nanoscale Physics +0804.4734 Strongly Correlated Electrons +0805.0482 +0805.2252 +0805.3754 Representation Theory +0805.4046 +0806.0259 Superconductivity +0806.0805 Combinatorics +0806.0881 Algebraic Geometry +0806.0903 Information Theory +0806.1345 Representation Theory +0806.1526 Pattern Formation and Solitons +0806.1528 Spectral Theory +0806.1538 Representation Theory +0806.1539 +0806.1543 Multimedia +0806.1544 +0806.1545 +0806.1547 +0806.1549 Information Theory +0806.1550 +0806.1554 +0806.1557 Probability +0806.1558 +0806.1561 Combinatorics +0806.1563 Number Theory +0806.1570 Operator Algebras +0806.1576 Mesoscale and Nanoscale Physics +0806.1587 Physics and Society +0806.1595 Mesoscale and Nanoscale Physics +0806.1596 Number Theory +0806.1597 +0806.1598 Dynamical Systems +0806.1600 Analysis of PDEs +0806.1610 Cryptography and Security +0806.1611 +0806.1612 Soft Condensed Matter +0806.1615 Quantum Algebra +0806.1621 Numerical Analysis +0806.1623 +0806.1636 Logic in Computer Science +0806.1657 +0806.1658 Soft Condensed Matter +0806.1661 Superconductivity +0806.1667 Number Theory +0806.1679 +0806.1692 Group Theory +0806.1693 General Physics +0806.1694 Number Theory +0806.1697 Atomic Physics +0806.1702 Algebraic Geometry +0806.1705 Dynamical Systems +0806.1713 Strongly Correlated Electrons +0806.1717 +0806.1722 Data Structures and Algorithms +0806.1723 Materials Science +0806.1724 Computational Geometry +0806.1727 Computer Science and Game Theory +0806.1733 Quantitative Methods +gr-qc/0702070 +hep-th/0205250 Theory +math/0112105 Geometric Topology +math/0404514 Dynamical Systems +math/0407071 Geometric Topology +math/0503162 Geometric Topology +physics/0406150 Physics Education +physics/0606229 General Physics +quant-ph/0608244 +0704.2990 Instrumentation and Detectors +0704.3812 +0708.2299 Analysis of PDEs +0708.2940 Statistical Mechanics +0709.1569 +0710.1446 Mesoscale and Nanoscale Physics +0710.5666 +0801.0841 +0801.2797 Combinatorics +0801.4746 Computation and Language +0802.0514 Phenomenology +math/0306223 Category Theory +math/0601755 Combinatorics +0705.1819 Superconductivity +0705.4041 Atomic Physics +0707.0242 Strongly Correlated Electrons +0707.0722 Other Condensed Matter +0707.1411 Combinatorics +0707.1702 +0707.3067 Statistical Mechanics +0708.0545 Mesoscale and Nanoscale Physics +0708.2286 Disordered Systems and Neural Networks +0709.1858 Physics and Society +0709.2313 +0709.2328 +0710.4027 Phenomenology +0710.5622 +0711.0394 Strongly Correlated Electrons +0711.1728 +0711.2010 Computational Complexity +0711.4370 +0801.0931 Information Theory +0801.3237 +0801.3279 Optics +0801.3280 Medical Physics +0801.3290 Data Analysis, Statistics and Probability +0801.3296 Algebraic Topology +0801.3298 Materials Science +0801.3304 +0801.3314 Probability +0801.3317 Materials Science +0801.3319 Statistics Theory +0801.3320 +0801.3322 Analysis of PDEs +0801.3325 Phenomenology +0801.3333 Materials Science +0801.3336 +0801.3337 Chemical Physics +0801.3339 Representation Theory +0801.3350 Mesoscale and Nanoscale Physics +0801.3356 Dynamical Systems +0801.3366 Statistical Mechanics +0801.3379 Analysis of PDEs +0801.3381 Materials Science +0801.3382 Tissues and Organs +0801.3387 Soft Condensed Matter +0801.3388 Mesoscale and Nanoscale Physics +0801.3390 Optimization and Control +0801.3394 Combinatorics +0801.3395 +0801.3396 Complex Variables +0801.3398 Pattern Formation and Solitons +0801.3400 +0801.3401 Classical Analysis and ODEs +0801.3404 Functional Analysis +0801.3408 Discrete Mathematics +0801.3409 Differential Geometry +0801.3419 Materials Science +0801.3436 +astro-ph/0702546 +cond-mat/0609642 Other Condensed Matter +cs/0511035 Networking and Internet Architecture +math-ph/0604031 +math/0501363 Analysis of PDEs +math/0602632 Rings and Algebras +math/0611811 Analysis of PDEs +math/0612843 Number Theory +math/0701901 Optimization and Control +physics/0609213 Physics and Society +q-bio/0605050 Populations and Evolution +q-bio/0608018 Populations and Evolution +quant-ph/0209037 +quant-ph/0609068 +quant-ph/0701127 +0706.0635 Combinatorics +0706.3489 Disordered Systems and Neural Networks +0707.1892 K-Theory and Homology +0707.1973 Other Condensed Matter +0707.3799 Representation Theory +0707.3915 Statistical Mechanics +0708.0807 Superconductivity +0709.2324 K-Theory and Homology +0709.2803 Statistical Mechanics +0710.0586 Operator Algebras +0710.2562 +0710.2572 +0710.3821 +0710.4023 History and Overview +0710.4047 History and Overview +0710.5294 +0711.0606 +0711.1766 Information Theory +0711.3562 +0801.0620 Mesoscale and Nanoscale Physics +0801.0837 Rings and Algebras +0801.1248 Fluid Dynamics +0801.3053 Applications +0801.3056 Neurons and Cognition +0801.3321 Materials Science +0801.4904 +0802.0250 Numerical Analysis +0802.0547 Number Theory +0802.0965 +0802.1010 Materials Science +0802.1111 Analysis of PDEs +0802.1450 Algebraic Geometry +0802.1549 +0802.1617 Computational Geometry +0802.2109 Geometric Topology +0802.2111 Complex Variables +0802.2112 Cryptography and Security +0802.2113 +0802.2121 Numerical Analysis +0802.2122 General Physics +0802.2123 General Physics +0802.2127 Artificial Intelligence +0802.2130 Data Structures and Algorithms +0802.2131 Analysis of PDEs +0802.2133 Algebraic Geometry +0802.2135 Statistical Mechanics +0802.2136 +0802.2140 Other Condensed Matter +0802.2147 Representation Theory +0802.2156 +0802.2157 Discrete Mathematics +0802.2161 Analysis of PDEs +0802.2165 Optimization and Control +0802.2167 Soft Condensed Matter +0802.2171 Probability +0802.2175 Combinatorics +0802.2184 Data Structures and Algorithms +0802.2187 +0802.2196 Number Theory +0802.2197 Spectral Theory +0802.2202 Differential Geometry +0802.2205 Superconductivity +0802.2208 Mesoscale and Nanoscale Physics +0802.2214 +0802.2220 Materials Science +0802.2227 +0802.2228 Discrete Mathematics +0802.2234 Computation and Language +0802.2236 +0802.2244 Biomolecules +0802.2245 +0802.2246 +0802.2248 Data Analysis, Statistics and Probability +0802.2258 Software Engineering +0802.2261 Probability +0802.2269 General Physics +0802.2271 Populations and Evolution +0802.2272 Number Theory +0802.2273 +0802.2275 Combinatorics +0802.2276 Functional Analysis +astro-ph/0702304 +cond-mat/0012007 Statistical Mechanics +cond-mat/0306733 Mesoscale and Nanoscale Physics +cond-mat/0606413 Mesoscale and Nanoscale Physics +cond-mat/0612105 Statistical Mechanics +cond-mat/0702519 Mesoscale and Nanoscale Physics +hep-th/0602066 Theory +math/0205324 Quantum Algebra +math/0208156 Quantum Algebra +math/0312478 Representation Theory +math/0406166 Combinatorics +math/0607266 Quantum Algebra +math/0610216 Algebraic Topology +math/0610826 Classical Analysis and ODEs +math/0610827 Probability +math/0611348 Operator Algebras +math/0611349 Operator Algebras +quant-ph/0607146 +quant-ph/0703248 +0704.3096 Algebraic Geometry +0705.0753 Chaotic Dynamics +0705.3044 Mesoscale and Nanoscale Physics +0705.3362 Analysis of PDEs +0706.0674 +0706.1257 +0707.3364 Algebraic Geometry +0707.4636 Mesoscale and Nanoscale Physics +0709.0882 Representation Theory +0709.3002 +0710.0095 +0710.0522 Other Condensed Matter +0710.0911 Combinatorics +0710.1076 Mesoscale and Nanoscale Physics +0710.1938 Strongly Correlated Electrons +0710.2143 Quantum Algebra +0710.2284 Distributed, Parallel, and Cluster Computing +0710.3297 Statistical Mechanics +0710.5786 Mesoscale and Nanoscale Physics +0711.0457 Exactly Solvable and Integrable Systems +0711.1010 Biomolecules +0711.2585 Data Structures and Algorithms +0711.3646 Materials Science +0712.1914 Disordered Systems and Neural Networks +0801.1740 Soft Condensed Matter +0801.2010 Combinatorics +0801.2052 Representation Theory +0801.3362 Atomic Physics +0802.0865 Logic in Computer Science +0802.3437 Information Theory +0803.0985 Differential Geometry +0803.2143 Optics +0803.2824 Networking and Internet Architecture +0803.3254 Superconductivity +0803.3364 Representation Theory +0804.0023 +0804.0856 +0804.0888 Superconductivity +0804.1306 Neurons and Cognition +0804.1504 Popular Physics +0804.1737 Classical Physics +0804.1790 +0804.1796 Dynamical Systems +0804.1801 Superconductivity +0804.1803 Analysis of PDEs +0804.1811 Information Theory +0804.1817 Superconductivity +0804.1818 Materials Science +0804.1830 Differential Geometry +0804.1845 Data Structures and Algorithms +0804.1848 Probability +0804.1858 Differential Geometry +0804.1868 Materials Science +0804.1890 Theory +0804.1894 Networking and Internet Architecture +0804.1905 Statistics Theory +0804.1908 Other Condensed Matter +0804.1911 Computational Physics +0804.1919 +0804.1931 General Physics +0804.1935 Combinatorics +0804.1937 Representation Theory +0804.1941 Popular Physics +0804.1943 Dynamical Systems +0804.1945 Functional Analysis +0804.1948 Functional Analysis +0804.1949 Dynamical Systems +0804.1952 Atomic Physics +cond-mat/0611062 Mesoscale and Nanoscale Physics +cond-mat/0702190 Superconductivity +cond-mat/0702524 Statistical Mechanics +cs/0508097 Data Structures and Algorithms +cs/0601009 Information Theory +cs/0702151 Data Structures and Algorithms +math/0407094 Differential Geometry +math/0509653 Number Theory +math/0510494 Differential Geometry +math/0601208 Differential Geometry +math/0603108 Statistics Theory +math/0605168 Probability +math/0610540 Representation Theory +math/0611663 Number Theory +math/0611911 Dynamical Systems +math/0703488 Representation Theory +physics/0703083 Optics +physics/0703161 Fluid Dynamics +0706.1800 Combinatorics +0706.3652 Soft Condensed Matter +0708.3767 Probability +0711.0883 Statistics Theory +0802.2933 Mesoscale and Nanoscale Physics +0803.4166 Materials Science +0804.0362 Statistical Mechanics +0804.1741 +0804.3613 Mesoscale and Nanoscale Physics +0805.0493 Soft Condensed Matter +0806.0021 Functional Analysis +0806.2577 Materials Science +0806.2898 Soft Condensed Matter +0806.3651 Biological Physics +0806.4144 +0806.4457 Soft Condensed Matter +0806.4798 Materials Science +0807.0664 Soft Condensed Matter +0807.0719 Superconductivity +0807.1301 +0809.0757 Artificial Intelligence +0809.1547 Optics +0809.2481 +0809.5128 Superconductivity +0809.5148 +0810.0003 +0810.0007 +0810.0022 Statistical Mechanics +0810.0027 +0810.0038 Rings and Algebras +0810.0041 Rings and Algebras +0810.0045 Lattice +0810.0046 Probability +0810.0047 Computational Physics +0810.0048 +0810.0059 Spectral Theory +0810.0060 Combinatorics +0810.0067 Algebraic Geometry +0810.0068 Information Theory +0810.0069 Representation Theory +0810.0074 +0810.0075 Data Structures and Algorithms +0810.0076 Complex Variables +0810.0090 Materials Science +0810.0091 Algebraic Geometry +0810.0092 Number Theory +0810.0093 Rings and Algebras +0810.0095 General Mathematics +0810.0100 Theory +0810.0118 K-Theory and Homology +0810.0125 Atmospheric and Oceanic Physics +0810.0126 Statistical Mechanics +0810.0132 +0810.0133 Soft Condensed Matter +0810.0135 Performance +0810.0139 Artificial Intelligence +0810.0142 Fluid Dynamics +0810.0152 +0810.0153 +0810.0154 Information Theory +0810.0155 Fluid Dynamics +0810.0156 Artificial Intelligence +0810.0159 +0810.0160 Phenomenology +0810.0165 Other Condensed Matter +0810.0166 +0810.0171 Mesoscale and Nanoscale Physics +0810.0172 +0810.0174 Geometric Topology +0810.0175 Materials Science +0810.0176 Experiment +0810.0185 Dynamical Systems +0810.0186 Group Theory +0810.0187 Geometric Topology +0810.0195 Differential Geometry +0810.0211 Probability +0810.0213 Fluid Dynamics +0810.0215 Commutative Algebra +0810.0216 Statistical Mechanics +0810.0220 Probability +0810.0221 +0810.0222 Number Theory +0810.0223 Quantum Algebra +0810.0224 General Physics +0810.0226 +0810.0229 Number Theory +0810.0234 Number Theory +0810.0238 Spectral Theory +0810.0239 Subcellular Processes +0810.0240 Statistical Mechanics +0810.0242 Geophysics +0810.0249 Phenomenology +0810.0255 Analysis of PDEs +0810.0256 Mesoscale and Nanoscale Physics +0810.0257 Probability +0810.0263 +0810.0264 Data Structures and Algorithms +cond-mat/0306572 Soft Condensed Matter +cond-mat/0402501 Superconductivity +cond-mat/0404236 Soft Condensed Matter +cond-mat/0506212 Soft Condensed Matter +cond-mat/0606527 Soft Condensed Matter +cond-mat/0608317 Strongly Correlated Electrons +cond-mat/0608363 Soft Condensed Matter +cond-mat/0703548 Soft Condensed Matter +math-ph/0001004 +math-ph/0111010 +math-ph/0506037 +math-ph/0508001 +math/0401161 Differential Geometry +math/0501210 Spectral Theory +math/0511228 Number Theory +math/0601433 Dynamical Systems +math/0605240 Operator Algebras +math/0701141 Metric Geometry +math/0702593 Number Theory +physics/0403022 Fluid Dynamics +physics/0503225 Fluid Dynamics +0705.0026 +0707.0383 Other Condensed Matter +0710.0670 +0801.0888 Strongly Correlated Electrons +0802.1043 Experiment +0803.0795 Superconductivity +0803.2974 Differential Geometry +0804.3532 Materials Science +0804.4305 Numerical Analysis +0806.0077 Other Condensed Matter +cs/0701028 Computation and Language +0705.2397 Algebraic Geometry +0706.0924 +0707.1610 Soft Condensed Matter +0709.2670 +0709.2980 +0710.0825 +0710.3489 General Physics +0712.1539 Geometric Topology +0712.2522 Mesoscale and Nanoscale Physics +0801.0054 Number Theory +0801.0396 Group Theory +0801.0929 Commutative Algebra +0801.1383 Dynamical Systems +0802.1717 Theory +0802.2799 Mesoscale and Nanoscale Physics +0802.3024 Chaotic Dynamics +0803.0190 Statistical Mechanics +0803.2517 Strongly Correlated Electrons +0803.4150 Strongly Correlated Electrons +0803.4171 Spectral Theory +0804.1130 +0804.2714 +0804.3493 Representation Theory +0804.4416 +0805.0488 Other Condensed Matter +0805.1128 Genomics +0805.1215 Mesoscale and Nanoscale Physics +0805.1256 +0805.1347 Mesoscale and Nanoscale Physics +0805.2404 Phenomenology +0805.3232 Mesoscale and Nanoscale Physics +0805.3379 Functional Analysis +0805.3584 Statistics Theory +0806.1525 +0806.2020 +0806.2202 Number Theory +0806.2562 Data Analysis, Statistics and Probability +0806.3892 Algebraic Geometry +0808.1061 Algebraic Geometry +0808.1753 Information Retrieval +0808.2924 Other Condensed Matter +0808.3512 Statistical Mechanics +0809.0557 Representation Theory +0809.2178 Algebraic Topology +0809.2820 Superconductivity +0809.3454 Probability +0809.3459 Metric Geometry +0809.3460 K-Theory and Homology +0809.3464 Theory +0809.3466 +0809.3478 Combinatorics +0809.3485 Multimedia +0809.3488 Operator Algebras +0809.3489 Classical Physics +0809.3491 Theory +0809.3495 +0809.3499 Mesoscale and Nanoscale Physics +0809.3501 Theory +0809.3502 +0809.3503 Cryptography and Security +0809.3504 Optics +0809.3506 Materials Science +0809.3507 Commutative Algebra +0809.3508 +0809.3512 Analysis of PDEs +0809.3529 Biological Physics +0809.3534 Symplectic Geometry +0809.3535 Space Physics +0809.3538 Operator Algebras +0809.3540 Statistical Mechanics +0809.3542 Networking and Internet Architecture +0809.3548 +0809.3552 Materials Science +0809.3571 Human-Computer Interaction +0809.3574 Software Engineering +0809.3578 Biological Physics +0809.3579 Theory +0809.3584 Software Engineering +0809.3585 Superconductivity +0809.3586 Software Engineering +0809.3587 Software Engineering +0809.3590 Quantum Algebra +0809.3591 Cellular Automata and Lattice Gases +0809.3592 Phenomenology +0809.3595 Human-Computer Interaction +0809.3596 +0809.3597 Human-Computer Interaction +0809.3600 Information Theory +0809.3606 +0809.3609 Software Engineering +0809.3612 Human-Computer Interaction +0809.3613 Software Engineering +0809.3614 Computational Complexity +0809.3616 Soft Condensed Matter +0809.3618 Computer Vision and Pattern Recognition +0809.3619 Materials Science +0809.3621 Optimization and Control +0809.3622 Number Theory +0809.3626 Functional Analysis +0809.3630 Quantum Algebra +0809.3631 Analysis of PDEs +0809.3633 Phenomenology +0809.3634 Numerical Analysis +0809.3645 Optics +0809.3646 Data Structures and Algorithms +0809.3647 Optimization and Control +0809.3648 Phenomenology +0809.3652 +0809.3655 +0809.3663 Analysis of PDEs +0809.3665 +0809.3666 Soft Condensed Matter +0809.3672 Representation Theory +0809.3674 Combinatorics +0809.3676 Category Theory +0809.3688 Computational Engineering, Finance, and Science +0809.3690 Computer Vision and Pattern Recognition +0809.3691 History and Overview +0809.3695 Fluid Dynamics +0809.3697 Statistics Theory +0809.3698 Phenomenology +0809.3699 Differential Geometry +0809.3702 Probability +0809.3704 Group Theory +0809.3707 Geometric Topology +0809.3710 Representation Theory +0809.3713 Classical Physics +0809.3715 Molecular Networks +0809.3725 Combinatorics +0809.3728 Fluid Dynamics +0809.3729 Dynamical Systems +0809.3735 +0809.3740 +0809.3743 Phenomenology +0809.3744 Theory +0809.3753 Symplectic Geometry +0809.3770 Fluid Dynamics +0809.3775 +cond-mat/0412034 Statistical Mechanics +cond-mat/0702061 Strongly Correlated Electrons +math/0509003 Geometric Topology +math/0602555 Group Theory +math/0608385 Complex Variables +math/0703764 Representation Theory +physics/0607065 Atomic Physics +0704.1747 Number Theory +0705.1377 Statistical Mechanics +0705.2883 Materials Science +0705.3194 Disordered Systems and Neural Networks +0705.3743 Statistical Mechanics +0708.0262 Optics +0708.1807 Strongly Correlated Electrons +0708.2753 +0709.0195 Logic +0709.0531 Statistics Theory +0709.1090 Statistical Mechanics +0710.2907 Mesoscale and Nanoscale Physics +0710.3904 Mesoscale and Nanoscale Physics +0711.0087 +0711.0455 Molecular Networks +0711.2059 Statistical Mechanics +0711.2217 +0711.2755 Statistical Mechanics +0711.3058 +0711.4234 Disordered Systems and Neural Networks +0712.1324 Rings and Algebras +0801.1753 Other Condensed Matter +0801.4249 Phenomenology +0801.4760 Algebraic Geometry +0801.4769 +0801.4777 Computational Complexity +0801.4778 Materials Science +0801.4780 +0801.4786 Group Theory +0801.4794 Discrete Mathematics +0801.4798 Analysis of PDEs +0801.4800 Geometric Topology +0801.4805 +0801.4807 Computer Vision and Pattern Recognition +0801.4809 General Physics +0801.4815 Geometric Topology +0801.4816 Classical Physics +0801.4823 +0801.4824 Optimization and Control +0801.4829 +0801.4832 Differential Geometry +0801.4839 +0801.4843 +0801.4845 Discrete Mathematics +0801.4850 Plasma Physics +0801.4851 Computer Science and Game Theory +0801.4854 +0801.4859 Statistical Mechanics +0801.4863 +0801.4864 +0801.4866 Commutative Algebra +0801.4868 +0801.4878 Classical Physics +0801.4880 Biological Physics +0801.4881 Differential Geometry +0801.4884 Combinatorics +0801.4890 Phenomenology +0801.4891 Theory +0801.4897 +0801.4899 Analysis of PDEs +0801.4905 Phenomenology +0801.4906 +0801.4911 Computational Complexity +0801.4912 +0801.4916 Materials Science +0801.4917 Computational Complexity +0801.4918 Other Condensed Matter +0801.4923 Category Theory +0801.4943 +0801.4950 +0801.4952 +0801.4957 +0801.4963 Probability +0801.4965 Quantum Algebra +cond-mat/0509566 Statistical Mechanics +cond-mat/0509567 Statistical Mechanics +cond-mat/0612214 Statistical Mechanics +math/0406033 Number Theory +math/0603665 Combinatorics +math/0604163 Number Theory +math/0604314 Number Theory +math/0605139 Algebraic Geometry +math/0611497 Operator Algebras +math/0703691 Probability +math/0703857 Probability +nlin/0605001 Chaotic Dynamics +physics/0512075 Physics and Society +0706.3324 Statistical Mechanics +0706.3375 Data Analysis, Statistics and Probability +0707.1442 Other Condensed Matter +0709.2035 Soft Condensed Matter +0709.2610 Soft Condensed Matter +0710.1610 Materials Science +0710.5326 +0711.4346 Number Theory +0712.0681 +0801.1103 Mesoscale and Nanoscale Physics +0801.4660 +0802.0146 Differential Geometry +0802.1502 Materials Science +0802.1720 Dynamical Systems +0803.1040 +0803.2588 Statistical Mechanics +0803.3416 Strongly Correlated Electrons +0804.1093 Strongly Correlated Electrons +0804.2105 Superconductivity +0804.3155 Information Theory +0804.3320 Strongly Correlated Electrons +0805.1531 +0805.2211 Statistical Mechanics +0805.2409 Quantum Algebra +0805.4043 Mesoscale and Nanoscale Physics +0805.4139 Materials Science +0806.0350 Statistical Mechanics +0806.1758 Differential Geometry +0806.2451 Superconductivity +0807.0571 Mesoscale and Nanoscale Physics +0808.0749 Statistical Mechanics +0808.1836 Algebraic Geometry +0808.2616 Phenomenology +0808.3222 Computational Complexity +0808.3804 Instrumentation and Detectors +0808.4139 Experiment +0809.0276 +0809.0320 Probability +0809.0322 Classical Analysis and ODEs +0809.0328 Theory +0809.0329 +0809.0335 General Physics +0809.0336 +0809.0339 +0809.0341 +0809.0343 Dynamical Systems +0809.0344 Algebraic Geometry +0809.0347 Experiment +0809.0348 Statistical Mechanics +0809.0349 Combinatorics +0809.0351 +0809.0355 Discrete Mathematics +0809.0382 Probability +0809.0383 +0809.0384 Representation Theory +0809.0386 Number Theory +0809.0387 Applications +0809.0390 +0809.0393 Functional Analysis +0809.0397 Exactly Solvable and Integrable Systems +0809.0402 Number Theory +0809.0406 Artificial Intelligence +0809.0407 +0809.0409 +0809.0410 Artificial Intelligence +0809.0416 Artificial Intelligence +0809.0422 +0809.0423 Probability +0809.0434 Differential Geometry +0809.0442 Statistical Mechanics +0809.0443 Fluid Dynamics +0809.0450 Experiment +0809.0455 Chaotic Dynamics +0809.0458 Artificial Intelligence +0809.0460 Data Structures and Algorithms +0809.0461 Human-Computer Interaction +0809.0462 Experiment +0809.0465 Numerical Analysis +0809.0472 +0809.0477 Probability +0809.0482 Number Theory +0809.0493 Group Theory +0809.0494 Logic in Computer Science +0809.0500 Functional Analysis +cond-mat/0610696 Materials Science +math/0612331 Combinatorics +math/0612662 Rings and Algebras +math/0703371 Representation Theory +quant-ph/0506223 +quant-ph/0703240 +0705.4341 Operator Algebras +0710.3795 +0710.4920 Number Theory +0711.0822 Statistical Mechanics +0712.0707 Probability +0712.1238 +0801.1913 General Physics +0801.4625 Strongly Correlated Electrons +0802.1097 Mesoscale and Nanoscale Physics +0803.0034 Other Computer Science +0803.2163 +0803.2173 Methodology +0803.2203 Strongly Correlated Electrons +0803.3368 Materials Science +0803.3720 Strongly Correlated Electrons +0804.1866 Statistical Mechanics +0804.2546 Mesoscale and Nanoscale Physics +0804.3579 Dynamical Systems +0804.4479 +0805.1544 Analysis of PDEs +0805.2063 Logic in Computer Science +0805.2468 Geometric Topology +0805.3577 +0805.3616 Functional Analysis +0805.3729 +0805.3972 Artificial Intelligence +0805.4009 Optics +0805.4017 Genomics +0805.4022 Numerical Analysis +0805.4023 Information Theory +0805.4024 +0805.4027 Commutative Algebra +0805.4029 Programming Languages +0805.4041 +0805.4047 Classical Physics +0805.4053 Information Theory +0805.4056 Algebraic Geometry +0805.4057 General Mathematics +0805.4058 +0805.4065 Spectral Theory +0805.4076 Algebraic Topology +0805.4084 Combinatorics +0805.4087 Molecular Networks +0805.4090 General Physics +0805.4094 Mesoscale and Nanoscale Physics +0805.4097 Superconductivity +0805.4103 Strongly Correlated Electrons +0805.4128 Probability +0805.4133 Combinatorics +0805.4140 Dynamical Systems +0805.4144 Differential Geometry +0805.4147 Computational Geometry +0805.4148 Algebraic Geometry +0805.4150 Geometric Topology +0805.4157 +0805.4162 Algebraic Geometry +0805.4166 Functional Analysis +0805.4169 +0805.4181 Algebraic Geometry +0805.4185 Rings and Algebras +0805.4187 Differential Geometry +cond-mat/0604446 Other Condensed Matter +hep-ph/0407337 Phenomenology +math/0605455 Quantum Algebra +math/0605702 Algebraic Geometry +math/0612064 Quantum Algebra +math/0612065 Quantum Algebra +0706.1381 Algebraic Geometry +0707.2050 Algebraic Geometry +0707.3992 General Physics +0711.3187 +0801.4706 Information Theory +0805.1745 Soft Condensed Matter +0805.2148 Mesoscale and Nanoscale Physics +0806.3466 Optics +0809.0868 Geometric Topology +0809.1521 Numerical Analysis +0809.3207 +0809.3677 Applications +0809.4568 Strongly Correlated Electrons +0809.5193 +0810.2846 Rings and Algebras +hep-ph/0112317 Phenomenology +hep-ph/0509289 Phenomenology +hep-ph/0511212 Phenomenology +hep-ph/0603029 Phenomenology +hep-ph/0606160 Phenomenology +hep-ph/0701238 Phenomenology +math/0602387 Algebraic Geometry +math/0602631 Geometric Topology +math/0701574 Complex Variables +physics/0105002 General Physics +0704.0649 Rings and Algebras +0704.3705 +0705.4460 Superconductivity +0707.4429 Superconductivity +0707.4453 Materials Science +0708.1982 Quantum Algebra +0709.2526 Mesoscale and Nanoscale Physics +0710.0337 +0710.0996 Physics and Society +0710.2784 Statistical Mechanics +0710.3701 +0711.0178 Soft Condensed Matter +0711.1000 Strongly Correlated Electrons +0711.1745 Strongly Correlated Electrons +0711.2377 Materials Science +0711.2795 Disordered Systems and Neural Networks +0711.2909 Artificial Intelligence +0711.3901 Classical Physics +0711.4973 Atomic and Molecular Clusters +0801.1089 +0801.1234 General Physics +0801.1262 Probability +0801.4161 General Physics +0801.4735 Differential Geometry +0802.1539 Analysis of PDEs +0803.0070 Chaotic Dynamics +0803.0865 Analysis of PDEs +0803.2447 Discrete Mathematics +0803.3078 Differential Geometry +0804.0465 Operator Algebras +0804.1754 Mesoscale and Nanoscale Physics +0804.2389 Theory +0804.2888 Disordered Systems and Neural Networks +0804.2898 Biological Physics +0804.2908 Logic +0804.2910 Combinatorics +0804.2911 +0804.2913 +0804.2914 Strongly Correlated Electrons +0804.2915 Statistical Mechanics +0804.2932 +0804.2933 Commutative Algebra +0804.2950 Information Theory +0804.2956 Combinatorics +0804.2964 Soft Condensed Matter +0804.2966 Strongly Correlated Electrons +0804.2968 Mesoscale and Nanoscale Physics +0804.2977 Algebraic Geometry +0804.2984 Superconductivity +0804.2986 Complex Variables +0804.2991 Information Theory +0804.3003 +0804.3015 +0804.3019 Number Theory +0804.3028 Data Structures and Algorithms +0804.3029 Combinatorics +0804.3031 Number Theory +0804.3032 Combinatorics +0804.3033 Statistics Theory +0804.3036 Combinatorics +0804.3046 Quantum Algebra +0804.3048 Geometric Topology +0804.3051 Analysis of PDEs +0804.3052 Probability +0804.3053 Phenomenology +0804.3057 General Mathematics +0804.3058 +0804.3060 Adaptation and Self-Organizing Systems +0804.3067 Differential Geometry +0804.3076 +0804.3085 Strongly Correlated Electrons +0804.3086 Superconductivity +astro-ph/0701133 +cond-mat/0012103 Materials Science +cond-mat/0107153 Materials Science +cond-mat/0303178 Statistical Mechanics +cond-mat/0309280 Statistical Mechanics +cond-mat/0309437 Statistical Mechanics +cond-mat/0310562 Statistical Mechanics +cond-mat/0610476 Soft Condensed Matter +hep-th/0308186 Theory +hep-th/9905010 Theory +math/0202078 Functional Analysis +math/0206297 Algebraic Geometry +math/0604197 Probability +math/0702357 Complex Variables +quant-ph/0504042 +quant-ph/0512167 +0705.2843 +0706.1937 K-Theory and Homology +0706.3642 Classical Analysis and ODEs +0709.1306 +0709.3435 Phenomenology +0709.4579 Algebraic Topology +0711.2720 +0711.3130 General Physics +0711.3763 Theory +0711.4210 Logic +0712.3323 Probability +0712.4250 Data Analysis, Statistics and Probability +0801.1945 +0801.2488 +0801.3725 Probability +0802.0115 Soft Condensed Matter +0802.1167 Theory +0805.3284 Materials Science +0806.0658 Number Theory +0806.1882 +0806.2420 +0807.0438 +0807.3156 Information Theory +0807.3527 Strongly Correlated Electrons +0809.1362 Mesoscale and Nanoscale Physics +0809.4483 Strongly Correlated Electrons +0810.3134 General Physics +0810.5442 Phenomenology +0811.1746 General Physics +0811.2335 Probability +cond-mat/0107452 Superconductivity +cond-mat/0112166 Superconductivity +cond-mat/0205293 Superconductivity +cond-mat/0206407 Superconductivity +cond-mat/0307330 Superconductivity +cond-mat/0308440 Superconductivity +cond-mat/0405495 Superconductivity +cond-mat/0410722 Superconductivity +cond-mat/0604475 Superconductivity +math/0612124 Group Theory +math/0703330 Algebraic Topology +quant-ph/0406051 +quant-ph/0703132 +0707.1451 Phenomenology +0711.0141 Probability +0711.0741 Physics and Society +0802.2378 Number Theory +0803.4204 Statistical Mechanics +0806.3912 Plasma Physics +q-bio/0506006 Cell Behavior +0704.0661 Algebraic Geometry +0704.1704 Mesoscale and Nanoscale Physics +0704.1973 Mesoscale and Nanoscale Physics +0704.2848 Algebraic Geometry +0705.2301 +0705.2517 Atmospheric and Oceanic Physics +0705.3582 Strongly Correlated Electrons +0705.4170 Theory +0706.1488 Mesoscale and Nanoscale Physics +0706.2080 Soft Condensed Matter +0707.3762 Mesoscale and Nanoscale Physics +0708.0950 Strongly Correlated Electrons +0708.1095 Soft Condensed Matter +0709.0333 Mesoscale and Nanoscale Physics +0709.1654 Operator Algebras +0709.3305 Phenomenology +0710.2411 Combinatorics +0710.3484 Strongly Correlated Electrons +0711.1846 Optics +0711.2726 Computational Physics +0711.3611 Mesoscale and Nanoscale Physics +0711.4350 Strongly Correlated Electrons +0712.2477 Theory +0712.3358 Disordered Systems and Neural Networks +0801.2559 +0802.2401 +0802.3320 Analysis of PDEs +0802.3926 Molecular Networks +0802.4057 Logic in Computer Science +0802.4216 Phenomenology +0803.0323 Physics Education +0803.0331 Classical Analysis and ODEs +0803.0333 Differential Geometry +0803.0336 Complex Variables +0803.0339 Analysis of PDEs +0803.0358 Functional Analysis +0803.0360 Data Analysis, Statistics and Probability +0803.0361 Other Condensed Matter +0803.0363 Quantum Algebra +0803.0365 Numerical Analysis +0803.0374 Pattern Formation and Solitons +0803.0377 Theory +0803.0379 Group Theory +0803.0382 Atmospheric and Oceanic Physics +0803.0383 Biological Physics +0803.0391 Symplectic Geometry +0803.0404 Computer Science and Game Theory +0803.0405 Multimedia +0803.0408 Differential Geometry +0803.0413 Number Theory +0803.0415 Functional Analysis +0803.0420 General Mathematics +0803.0421 Commutative Algebra +0803.0425 Number Theory +0803.0433 Probability +0803.0434 Probability +0803.0440 Strongly Correlated Electrons +0803.0441 Numerical Analysis +0803.0442 Probability +0803.0443 Metric Geometry +0803.0449 +0803.0460 Metric Geometry +0803.0463 Rings and Algebras +0803.0465 Quantitative Methods +0803.0467 +0803.0471 Number Theory +0803.0472 Rings and Algebras +0803.0486 +0803.0490 Dynamical Systems +0803.0509 Analysis of PDEs +0803.0515 Human-Computer Interaction +0803.0520 Analysis of PDEs +0803.0530 Statistical Mechanics +0803.0534 Representation Theory +0803.0536 Theory +cond-mat/0109092 +cond-mat/0304586 +cond-mat/0405608 Other Condensed Matter +cond-mat/0509360 Strongly Correlated Electrons +cond-mat/0612581 Superconductivity +cs/0607118 Computational Complexity +math-ph/0403045 +math/0503149 Combinatorics +math/0509649 Algebraic Geometry +math/0605659 Differential Geometry +nlin/0606044 Adaptation and Self-Organizing Systems +physics/0304010 Physics Education +physics/0311038 Physics Education +0708.1647 Chemical Physics +0708.2403 +0709.1922 +0710.1301 +0710.5386 +0711.0311 Discrete Mathematics +0711.1990 Strongly Correlated Electrons +0712.2668 Statistical Mechanics +0801.3691 Complex Variables +0802.4051 +0803.0645 Algebraic Geometry +0803.2111 Statistics Theory +0804.2246 +0804.3539 Plasma Physics +0804.3569 Superconductivity +0804.3974 Strongly Correlated Electrons +0804.4677 +0804.4871 Plasma Physics +0805.0189 Other Condensed Matter +0805.1364 Plasma Physics +0805.1376 Plasma Physics +0805.3974 +0805.4034 Mesoscale and Nanoscale Physics +0807.0276 Strongly Correlated Electrons +0807.1711 General Physics +0807.1828 +0807.2615 +0807.2726 Statistics Theory +0808.2141 +0808.2358 Strongly Correlated Electrons +0808.2944 Functional Analysis +0809.1020 Mesoscale and Nanoscale Physics +0809.1368 Mesoscale and Nanoscale Physics +0810.3488 Populations and Evolution +0810.4159 Materials Science +0811.0736 Strongly Correlated Electrons +0811.1899 Disordered Systems and Neural Networks +0811.2075 Plasma Physics +0811.2136 Phenomenology +0811.3022 Combinatorics +0811.3176 Distributed, Parallel, and Cluster Computing +0811.3211 +0811.3215 Category Theory +0811.3227 Dynamical Systems +0811.3228 Instrumentation and Detectors +0811.3232 +0811.3235 Symplectic Geometry +0811.3238 Combinatorics +0811.3241 Combinatorics +0811.3244 Data Structures and Algorithms +0811.3247 Data Structures and Algorithms +0811.3254 +0811.3257 Classical Analysis and ODEs +0811.3259 Strongly Correlated Electrons +0811.3262 Superconductivity +0811.3264 Theory +0811.3269 +0811.3276 General Topology +0811.3280 General Topology +0811.3286 Analysis of PDEs +0811.3288 +0811.3292 Analysis of PDEs +0811.3297 +0811.3302 Number Theory +0811.3303 Group Theory +0811.3305 Algebraic Geometry +0811.3306 Representation Theory +0811.3309 Materials Science +0811.3312 +0811.3323 +0811.3324 Dynamical Systems +0811.3325 Rings and Algebras +0811.3328 Software Engineering +0811.3333 Functional Analysis +0811.3337 Data Analysis, Statistics and Probability +0811.3342 Computation +0811.3351 Statistical Mechanics +0811.3356 Differential Geometry +0811.3359 Medical Physics +0811.3365 Complex Variables +0811.3373 Discrete Mathematics +0811.3384 Instrumentation and Detectors +0811.3389 Genomics +0811.3397 Symplectic Geometry +0811.3398 Algebraic Geometry +0811.3400 Logic in Computer Science +0811.3402 Logic +0811.3403 History and Philosophy of Physics +0811.3410 Theory +0811.3418 Algebraic Geometry +hep-th/0510079 Theory +math/0404130 Algebraic Topology +math/0605534 Algebraic Topology +math/0609022 Logic +math/0701837 Rings and Algebras +math/9602203 Logic +physics/0304093 General Physics +0704.0473 Optimization and Control +0707.2248 Quantum Algebra +0708.0748 Plasma Physics +0711.0489 Mesoscale and Nanoscale Physics +0711.0492 Mesoscale and Nanoscale Physics +0711.2812 Representation Theory +0712.0825 Mesoscale and Nanoscale Physics +0712.3739 Statistical Mechanics +0801.0286 Plasma Physics +0803.1502 Quantum Algebra +cond-mat/0612417 Statistical Mechanics +cs/0607102 Information Theory +math/0607200 Numerical Analysis +math/0609655 Logic +math/0610952 Quantum Algebra +quant-ph/0607119 +quant-ph/0701189 +0704.3917 +0707.0859 Strongly Correlated Electrons +0710.2224 Theory +0803.3743 Differential Geometry +0805.4278 +0808.1951 Materials Science +0809.0707 Differential Geometry +0707.1732 +0710.4120 Mesoscale and Nanoscale Physics +0712.3436 +0802.3759 Statistical Mechanics +0804.4360 Materials Science +0806.1283 Spectral Theory +0806.4326 Computational Geometry +0808.0885 +0808.2000 Methodology +0809.1801 Fluid Dynamics +0809.1854 Number Theory +0809.2079 +cond-mat/0204246 Statistical Mechanics +math/0502398 Analysis of PDEs +math/0603273 Algebraic Geometry +math/0606158 Commutative Algebra +0704.1661 General Physics +0705.0270 Soft Condensed Matter +0705.4047 Number Theory +0710.0608 Superconductivity +0710.1287 Dynamical Systems +0710.1375 Physics Education +0712.4326 General Physics +0801.0494 +0801.1200 Strongly Correlated Electrons +0801.3351 Atomic Physics +0802.3313 Dynamical Systems +0803.0349 Subcellular Processes +0803.1267 Other Condensed Matter +0803.2875 Statistical Mechanics +0804.0485 Superconductivity +0804.1104 Physics and Society +0804.3729 Differential Geometry +0805.1667 Phenomenology +0805.2524 Experiment +0805.4455 Molecular Networks +0806.0277 Mesoscale and Nanoscale Physics +0806.0752 Superconductivity +0806.0904 Geometric Topology +0806.2355 +0806.3273 +0806.3462 General Physics +0806.3468 Combinatorics +0806.3469 Combinatorics +0806.3476 +0806.3479 Genomics +0806.3481 Metric Geometry +0806.3483 +0806.3485 Materials Science +0806.3492 Superconductivity +0806.3500 Optimization and Control +0806.3511 +0806.3512 Optics +0806.3514 Numerical Analysis +0806.3516 +0806.3518 +0806.3519 +0806.3528 Soft Condensed Matter +0806.3531 Classical Analysis and ODEs +0806.3532 Space Physics +0806.3534 Representation Theory +0806.3536 Software Engineering +0806.3546 Operator Algebras +0806.3551 Superconductivity +0806.3555 Phenomenology +0806.3561 Strongly Correlated Electrons +0806.3562 Probability +0806.3570 Soft Condensed Matter +0806.3571 Superconductivity +0806.3572 Dynamical Systems +0806.3580 Algebraic Topology +0806.3583 Combinatorics +0806.3588 Algebraic Topology +0806.3591 Populations and Evolution +0806.3595 Geometric Topology +0806.3596 Theory +0806.3598 Exactly Solvable and Integrable Systems +0806.3604 Soft Condensed Matter +0806.3609 Optimization and Control +0806.3617 Metric Geometry +0806.3621 Operator Algebras +0806.3622 Space Physics +0806.3625 Mesoscale and Nanoscale Physics +0806.3628 Information Theory +0806.3629 Information Theory +0806.3630 Information Theory +0806.3631 Information Theory +0806.3632 Operator Algebras +0806.3633 Information Theory +0806.3636 Operator Algebras +0806.3641 Combinatorics +0806.3643 +0806.3645 +0806.3654 Experiment +0806.3658 Materials Science +0806.3673 Phenomenology +0806.3681 Information Theory +0806.3683 Geometric Topology +0806.3701 +0806.3702 Analysis of PDEs +0806.3703 +0806.3706 Probability +0806.3712 Algebraic Geometry +0806.3722 Combinatorics +0806.3734 Biomolecules +0806.3736 Strongly Correlated Electrons +0806.3739 Combinatorics +0806.3740 Representation Theory +astro-ph/9505094 +cond-mat/0304050 Statistical Mechanics +cond-mat/0308339 Soft Condensed Matter +cond-mat/0308360 Statistical Mechanics +cond-mat/0308502 Disordered Systems and Neural Networks +cond-mat/0310432 Strongly Correlated Electrons +cond-mat/0403125 Disordered Systems and Neural Networks +cond-mat/0610034 Soft Condensed Matter +cond-mat/0610426 Mesoscale and Nanoscale Physics +cond-mat/0701206 Strongly Correlated Electrons +cs/0608121 Information Theory +gr-qc/9506024 +math/0207241 Complex Variables +math/0308094 Analysis of PDEs +math/0308129 Analysis of PDEs +math/0308130 Analysis of PDEs +math/0308282 Probability +math/0408084 Complex Variables +math/0508019 Rings and Algebras +math/0611554 Representation Theory +math/0701138 Algebraic Geometry +math/0701839 Algebraic Geometry +nlin/0308013 Adaptation and Self-Organizing Systems +nlin/0308015 Exactly Solvable and Integrable Systems +physics/0308041 Biological Physics +physics/0308078 Popular Physics +0704.2231 Strongly Correlated Electrons +0705.1549 +0705.3603 Exactly Solvable and Integrable Systems +0706.0314 Exactly Solvable and Integrable Systems +0706.2831 +0707.4551 Phenomenology +0708.0866 +0708.0957 Differential Geometry +0708.3180 Differential Geometry +0708.3788 +0709.1987 Group Theory +0709.3698 +0709.4528 Differential Geometry +0710.0216 Theory +0710.0519 Differential Geometry +0710.2585 Differential Geometry +0710.2756 +0710.4432 +0710.4995 Symplectic Geometry +0711.0041 Analysis of PDEs +0711.0814 Classical Analysis and ODEs +0711.0852 Statistical Mechanics +0711.1041 Differential Geometry +0711.1674 +0711.2177 Adaptation and Self-Organizing Systems +0711.2401 Classical Analysis and ODEs +0711.3347 +0711.3544 +0711.3746 Differential Geometry +0711.3905 +0711.4550 +0711.4707 Analysis of PDEs +0711.4798 Differential Geometry +0712.0333 Optics +0712.2107 Strongly Correlated Electrons +0712.2123 Differential Geometry +0712.2794 Differential Geometry +0712.3910 Theory +0712.4282 Differential Geometry +0801.0822 +0801.1137 Materials Science +0801.2773 +0801.2780 Statistical Mechanics +0801.2848 +0802.0482 +0802.0744 Quantum Algebra +0802.0751 +0802.0974 Representation Theory +0802.1253 Exactly Solvable and Integrable Systems +0802.2332 Representation Theory +0802.2634 +0802.3521 +0803.1415 Superconductivity +0803.1651 Exactly Solvable and Integrable Systems +0803.1678 Differential Geometry +0803.1824 +0803.2667 Chaotic Dynamics +0803.3866 Differential Geometry +0803.4168 K-Theory and Homology +0803.4331 Differential Geometry +0804.0479 Strongly Correlated Electrons +0804.1081 Classical Analysis and ODEs +0804.3802 Operator Algebras +0804.3816 Algebraic Geometry +0804.3817 Learning +0804.3819 +0804.3821 Chemical Physics +0804.3825 Information Theory +0804.3828 Classical Analysis and ODEs +0804.3830 General Mathematics +0804.3831 Theory +0804.3854 Physics and Society +0804.3857 +0804.3862 Robotics +0804.3867 Functional Analysis +0804.3874 Robotics +0804.3879 Robotics +0804.3881 Robotics +0804.3882 Robotics +0804.3885 Robotics +0804.3886 +0804.3888 Rings and Algebras +0804.3891 Robotics +0804.3894 Robotics +0804.3895 Robotics +0804.3897 Robotics +0804.3899 Experiment +0804.3902 Data Structures and Algorithms +0804.3907 Soft Condensed Matter +0804.3912 Statistical Mechanics +0804.3926 Statistics Theory +0804.3932 Classical Physics +0804.3935 Probability +0804.3938 Probability +0804.3943 Probability +0804.3945 Populations and Evolution +0804.3948 +0804.3956 Rings and Algebras +0804.3958 Rings and Algebras +0804.3960 Rings and Algebras +0804.3962 Rings and Algebras +0804.3964 Rings and Algebras +0804.3986 Algebraic Geometry +0804.3989 Methodology +0804.3991 General Physics +astro-ph/0703430 +cond-mat/0505428 Mesoscale and Nanoscale Physics +cs/0702116 Logic in Computer Science +math/0303163 Number Theory +math/0410134 Differential Geometry +math/0410314 Differential Geometry +math/0605337 Probability +math/0606552 Differential Geometry +math/0608388 Combinatorics +math/0608651 Differential Geometry +math/0611318 Operator Algebras +math/0612732 Number Theory +nlin/0604033 Exactly Solvable and Integrable Systems +physics/0607117 Classical Physics +physics/0607118 Classical Physics +physics/0612213 Accelerator Physics +physics/0701019 History and Philosophy of Physics +physics/0703179 Computational Physics +q-bio/0612004 Neurons and Cognition +quant-ph/0607096 +0707.1843 Probability +0709.3646 Algebraic Topology +0711.0156 Materials Science +0712.0616 Discrete Mathematics +0803.0156 Combinatorics +0804.3393 +0804.4005 Differential Geometry +0804.4367 +0805.2741 +0806.0042 +0806.0404 Mesoscale and Nanoscale Physics +0807.1709 Mesoscale and Nanoscale Physics +0807.4032 Mesoscale and Nanoscale Physics +0808.3202 K-Theory and Homology +0809.3536 Mesoscale and Nanoscale Physics +0809.4849 Dynamical Systems +0811.3273 Atomic Physics +0812.0826 Algebraic Geometry +0812.0836 Logic +0812.0995 Atomic and Molecular Clusters +math-ph/0411045 +math/0509621 Geometric Topology +math/0603429 Geometric Topology +math/0603565 Group Theory +math/0604045 Geometric Topology +math/0701240 Number Theory +0704.0003 General Physics +0704.3818 +0705.4028 Optics +0706.3390 Disordered Systems and Neural Networks +0708.3250 Statistical Mechanics +0708.3251 Statistical Mechanics +0709.0938 Materials Science +0710.5769 Materials Science +0801.0194 Algebraic Geometry +quant-ph/9807071 +0704.3564 Superconductivity +0705.0522 Mesoscale and Nanoscale Physics +0705.4084 Molecular Networks +0706.1850 Statistical Mechanics +0707.0772 Number Theory +0707.1721 Fluid Dynamics +0707.2466 Soft Condensed Matter +0707.2948 Mesoscale and Nanoscale Physics +0707.3410 Differential Geometry +0708.0102 Optimization and Control +0708.1067 Biological Physics +0709.1251 +0710.2483 Commutative Algebra +0710.2879 +0711.3368 Commutative Algebra +0712.0802 Theory +0712.1154 Mesoscale and Nanoscale Physics +0801.0701 Information Theory +0801.1384 Other Condensed Matter +0801.3300 Theory +0801.4681 Chemical Physics +0801.4813 Theory +0802.0091 Pattern Formation and Solitons +0802.0498 +0802.0509 Applications +0802.0510 Algebraic Topology +0802.0518 +0802.0536 Statistics Theory +0802.0539 Chemical Physics +0802.0542 +0802.0543 Networking and Internet Architecture +0802.0550 Distributed, Parallel, and Cluster Computing +0802.0552 Distributed, Parallel, and Cluster Computing +0802.0554 Information Theory +0802.0556 Molecular Networks +0802.0558 Optics +0802.0560 +0802.0563 Classical Analysis and ODEs +0802.0569 Differential Geometry +0802.0573 Theory +0802.0578 Analysis of PDEs +0802.0579 Numerical Analysis +0802.0580 Information Theory +0802.0581 +0802.0590 Symplectic Geometry +0802.0597 Materials Science +0802.0598 Classical Analysis and ODEs +0802.0600 Category Theory +0802.0602 +0802.0609 Classical Physics +0802.0610 +0802.0612 Algebraic Geometry +0802.0614 Phenomenology +0802.0615 Methodology +0802.0616 Probability +0802.0617 Combinatorics +0802.0620 Mesoscale and Nanoscale Physics +0802.0622 Methodology +0802.0626 +0802.0627 +0802.0630 Combinatorics +0802.0634 Theory +0802.0638 Methodology +0802.0639 +0802.0642 +0802.0645 Probability +0802.0647 Probability +0802.0654 Commutative Algebra +0802.0672 Physics and Society +0802.0679 Complex Variables +0802.0680 +0802.0681 General Physics +0802.0685 +0802.0691 Applications +0802.0692 Rings and Algebras +0802.0694 +cmp-lg/9706003 Computation and Language +cond-mat/0610228 Disordered Systems and Neural Networks +cs/0006018 Computation and Language +cs/0609146 Information Theory +hep-th/9108028 Theory +hep-th/9109033 Theory +hep-th/9112019 Theory +hep-th/9112050 Theory +math/0602188 Probability +math/0609767 Differential Geometry +physics/0307116 Atomic Physics +physics/0702010 Physics and Society +0705.3838 +0706.3968 Statistics Theory +0706.4271 +0710.4000 +0711.2658 +0711.4390 Statistical Mechanics +0712.2491 Physics and Society +0802.0035 Probability +0802.1812 Probability +0802.2476 Information Theory +0802.3455 Probability +0803.3691 Other Condensed Matter +0803.3760 +0804.0740 +0804.3595 +0805.0566 Strongly Correlated Electrons +0805.1220 Materials Science +0805.2595 Superconductivity +0805.3306 Mesoscale and Nanoscale Physics +0805.3854 +0806.4106 Other Condensed Matter +0807.0319 Symplectic Geometry +0808.0304 Phenomenology +0808.0556 Programming Languages +0808.0652 +0808.0717 Classical Analysis and ODEs +0808.0720 Probability +0808.0725 +0808.0726 Experiment +0808.0727 +0808.0728 Experiment +0808.0730 Physics and Society +0808.0731 Mesoscale and Nanoscale Physics +0808.0735 +0808.0738 Materials Science +0808.0741 Dynamical Systems +0808.0746 Theory +0808.0750 Populations and Evolution +0808.0752 Geometric Topology +0808.0753 Symbolic Computation +0808.0754 Mathematical Software +0808.0760 Data Structures and Algorithms +0808.0762 Complex Variables +0808.0767 General Physics +0808.0768 Information Theory +0808.0775 +0808.0776 +0808.0777 Methodology +0808.0780 Machine Learning +0808.0781 Methodology +0808.0782 Physics and Society +0808.0783 Analysis of PDEs +0808.0789 Functional Analysis +0808.0791 Complex Variables +0808.0794 +0808.0795 Classical Physics +0808.0798 Medical Physics +0808.0804 Superconductivity +0808.0808 +0808.0811 Theory +0808.0812 Phenomenology +0808.0814 Phenomenology +0808.0821 Other Condensed Matter +0808.0824 Experiment +0808.0826 +0808.0833 Experiment +0808.0835 Operator Algebras +0808.0836 Instrumentation and Detectors +0808.0840 Theory +0808.0845 Information Theory +0808.0847 Phenomenology +0808.0852 +0808.0858 Experiment +0808.0867 Experiment +0808.0868 Dynamical Systems +0808.0869 +0808.0876 Information Theory +0808.0878 Strongly Correlated Electrons +0808.0890 Rings and Algebras +0808.0894 Complex Variables +0808.0895 Superconductivity +0808.0897 Atmospheric and Oceanic Physics +0808.0901 Experiment +cond-mat/0609015 Disordered Systems and Neural Networks +cond-mat/0703256 Superconductivity +math/0006139 Algebraic Geometry +math/0510059 Algebraic Geometry +math/0703042 Dynamical Systems +math/0703171 Operator Algebras +nlin/0609033 Adaptation and Self-Organizing Systems +nucl-th/0111003 +quant-ph/0311191 +0704.0157 Statistical Mechanics +0705.0698 Number Theory +0705.0766 Differential Geometry +0705.3963 Differential Geometry +0706.2185 Strongly Correlated Electrons +0707.0475 +0707.1152 General Physics +0710.1134 History and Philosophy of Physics +0710.5451 +0710.5679 +0712.0086 +0801.0553 +0801.1578 +0801.1663 Symplectic Geometry +0801.4454 Strongly Correlated Electrons +0802.1166 Statistical Mechanics +0802.3863 Mesoscale and Nanoscale Physics +0802.3900 Disordered Systems and Neural Networks +0802.4384 +0803.1773 Physics and Society +0803.2741 Materials Science +0803.3211 Complex Variables +0804.0430 Mesoscale and Nanoscale Physics +0804.1794 Strongly Correlated Electrons +0804.3681 Statistical Mechanics +0804.3784 Networking and Internet Architecture +0805.3588 Other Quantitative Biology +0805.4060 Networking and Internet Architecture +0805.4616 Superconductivity +0806.1627 Statistical Mechanics +0806.3985 Phenomenology +0806.4407 Phenomenology +0807.0088 History and Philosophy of Physics +0807.0736 Mesoscale and Nanoscale Physics +0807.0800 Superconductivity +0807.0943 Quantum Algebra +0807.1376 Number Theory +0807.1426 Physics and Society +0807.2024 Phenomenology +0807.2533 Geophysics +0807.2601 Phenomenology +0807.2639 +0807.2640 +0807.2641 +0807.2648 Robotics +0807.2649 +0807.2655 Computational Physics +0807.2656 History and Overview +0807.2658 Geometric Topology +0807.2659 Materials Science +0807.2662 +0807.2664 Materials Science +0807.2665 Populations and Evolution +0807.2667 Materials Science +0807.2668 +0807.2669 Soft Condensed Matter +0807.2679 Geometric Topology +0807.2680 Information Theory +0807.2682 Number Theory +0807.2690 Combinatorics +0807.2691 +0807.2692 Combinatorics +0807.2698 Biomolecules +0807.2701 Information Theory +0807.2704 Statistical Mechanics +0807.2705 Functional Analysis +0807.2708 Space Physics +0807.2714 Representation Theory +0807.2715 Exactly Solvable and Integrable Systems +0807.2718 Instrumentation and Detectors +0807.2720 Strongly Correlated Electrons +0807.2724 Information Theory +0807.2725 Statistical Mechanics +0807.2727 Classical Physics +0807.2730 Information Theory +0807.2731 Biological Physics +0807.2733 +0807.2735 Experiment +0807.2742 Probability +0807.2743 Computers and Society +0807.2747 Mesoscale and Nanoscale Physics +0807.2750 +0807.2753 +0807.2761 General Physics +0807.2771 Materials Science +0807.2772 Materials Science +0807.2773 Theory +0807.2787 Materials Science +0807.2788 Superconductivity +0807.2791 Exactly Solvable and Integrable Systems +0807.2795 +0807.2800 Superconductivity +0807.2807 Mesoscale and Nanoscale Physics +0807.2810 Functional Analysis +0807.2814 +0807.2816 Materials Science +0807.2823 Phenomenology +0807.2824 Representation Theory +0807.2828 +0807.2836 Human-Computer Interaction +0807.2840 Superconductivity +0807.2848 Strongly Correlated Electrons +0807.2849 Combinatorics +0807.2850 Fluid Dynamics +0807.2855 +cond-mat/0606029 Statistical Mechanics +cs/0501023 Information Theory +hep-lat/0701021 Lattice +math-ph/0507031 +math/0506289 Numerical Analysis +math/0506344 Algebraic Geometry +math/0604169 Differential Geometry +math/0609125 Rings and Algebras +math/0701038 Geometric Topology +math/0703836 Statistics Theory +0707.1959 Statistical Mechanics +0710.4525 +0711.0567 Materials Science +0712.3540 Statistical Mechanics +0802.2483 Mesoscale and Nanoscale Physics +0803.1032 +0803.1799 +0803.1979 Superconductivity +0804.4043 Mesoscale and Nanoscale Physics +0806.0231 Algebraic Geometry +0806.4787 Computational Geometry +cond-mat/0212242 Mesoscale and Nanoscale Physics +cond-mat/0307700 Superconductivity +cond-mat/0311384 Mesoscale and Nanoscale Physics +cond-mat/0405511 Superconductivity +gr-qc/0612134 +0709.1255 Algebraic Geometry +0802.3743 +0803.2073 Materials Science +0806.0849 Strongly Correlated Electrons +0806.3543 Optics +0807.1896 Superconductivity +0807.3163 Algebraic Geometry +0808.1308 Materials Science +0809.3067 Strongly Correlated Electrons +0810.3257 Mesoscale and Nanoscale Physics +0810.5473 Experiment +0811.4606 Combinatorics +cond-mat/0611650 Materials Science +gr-qc/0702009 +nlin/0205067 Adaptation and Self-Organizing Systems +physics/0110067 Biological Physics +physics/0204035 Computational Physics +physics/0610067 General Physics +physics/0611077 General Physics +physics/0611108 Computational Physics +0705.2390 Differential Geometry +0708.0690 Mesoscale and Nanoscale Physics +0708.2748 Strongly Correlated Electrons +0709.1865 Functional Analysis +0709.4238 +0711.0999 Strongly Correlated Electrons +0712.3577 Atomic Physics +0801.1337 Representation Theory +0801.1638 Strongly Correlated Electrons +0802.0126 +0802.0341 Superconductivity +0802.2817 Theory +0802.2899 Optics +0802.3894 Strongly Correlated Electrons +0802.4289 Mesoscale and Nanoscale Physics +0803.0738 +0803.1069 Statistical Mechanics +0803.4268 +0803.4320 +0804.2374 +0804.2691 +0804.3040 Strongly Correlated Electrons +0805.1400 History and Philosophy of Physics +0805.2527 Mesoscale and Nanoscale Physics +0805.3107 Strongly Correlated Electrons +0805.4444 Biological Physics +0806.0002 Strongly Correlated Electrons +0806.1473 Applications +0806.1921 +0806.2591 Superconductivity +0806.2996 Commutative Algebra +0807.3177 Analysis of PDEs +0807.4091 Soft Condensed Matter +0807.4727 Combinatorics +0808.0237 General Physics +0808.1371 Other Quantitative Biology +0808.1474 +0808.1744 Distributed, Parallel, and Cluster Computing +0808.1745 +0808.1751 Biological Physics +0808.1755 Theory +0808.1757 +0808.1760 Number Theory +0808.1761 Metric Geometry +0808.1766 Data Structures and Algorithms +0808.1772 Materials Science +0808.1774 Differential Geometry +0808.1780 Biological Physics +0808.1784 Superconductivity +0808.1787 Data Structures and Algorithms +0808.1792 Probability +0808.1797 Phenomenology +0808.1799 Theory +0808.1801 Geophysics +0808.1802 Distributed, Parallel, and Cluster Computing +0808.1803 Phenomenology +0808.1814 +0808.1816 +0808.1821 Algebraic Geometry +0808.1825 Phenomenology +0808.1827 Group Theory +0808.1829 Number Theory +0808.1830 Plasma Physics +0808.1833 Materials Science +0808.1835 Analysis of PDEs +0808.1839 +0808.1840 Numerical Analysis +0808.1841 +0808.1842 General Physics +0808.1843 Differential Geometry +0808.1845 Phenomenology +0808.1846 Accelerator Physics +0808.1847 Phenomenology +0808.1850 Classical Analysis and ODEs +0808.1854 Phenomenology +0808.1856 Phenomenology +0808.1857 Instrumentation and Detectors +0808.1858 Functional Analysis +0808.1863 +0808.1867 Experiment +0808.1871 +0808.1872 +0808.1873 Classical Analysis and ODEs +0808.1876 Dynamical Systems +0808.1878 +0808.1883 Fluid Dynamics +0808.1884 Combinatorics +0808.1885 +astro-ph/0611213 +cond-mat/0609054 Strongly Correlated Electrons +cond-mat/0612466 Strongly Correlated Electrons +math/0502277 Dynamical Systems +math/0510205 Quantum Algebra +math/0607717 Representation Theory +math/0608235 Representation Theory +math/0610052 Differential Geometry +math/0610096 Analysis of PDEs +math/0610203 Algebraic Geometry +math/0611539 Functional Analysis +quant-ph/0508193 +quant-ph/0612182 +quant-ph/0701151 +0704.2555 Differential Geometry +0704.3036 Quantum Algebra +0708.1417 Symplectic Geometry +0709.0805 Probability +0709.3432 Chaotic Dynamics +0710.0639 Differential Geometry +0711.4689 Algebraic Topology +0712.1337 Logic in Computer Science +0712.3519 +0801.1430 Numerical Analysis +0803.1845 Numerical Analysis +0804.1778 Materials Science +0805.3806 Quantum Algebra +0805.3872 Statistical Mechanics +0807.0562 Mesoscale and Nanoscale Physics +0807.3634 Materials Science +0807.4626 Data Structures and Algorithms +0808.1448 Applications +0808.3098 Analysis of PDEs +0809.0164 Operator Algebras +0809.1600 Theory +0809.3277 +0809.3999 Phenomenology +0810.0600 Other Condensed Matter +0810.1499 Disordered Systems and Neural Networks +0810.2130 Quantum Algebra +0810.2907 Soft Condensed Matter +0811.0912 Fluid Dynamics +0811.1624 Materials Science +0811.1756 Algebraic Geometry +0812.0523 Phenomenology +0812.0905 +0812.0924 Statistical Mechanics +0812.1045 Computers and Society +0812.1219 Complex Variables +0812.1229 Phenomenology +0812.1237 Applications +0812.1241 Geometric Topology +0812.1244 Multimedia +0812.1245 Data Analysis, Statistics and Probability +0812.1257 Operator Algebras +0812.1265 Differential Geometry +0812.1273 Soft Condensed Matter +0812.1276 Combinatorics +0812.1278 Combinatorics +0812.1280 Combinatorics +0812.1281 +0812.1282 Computational Physics +0812.1289 Commutative Algebra +0812.1290 +0812.1291 Computational Complexity +0812.1295 +0812.1303 Number Theory +0812.1305 +0812.1309 Materials Science +0812.1315 Soft Condensed Matter +0812.1316 Data Analysis, Statistics and Probability +0812.1317 Other Condensed Matter +0812.1319 Soft Condensed Matter +0812.1320 Algebraic Topology +0812.1321 Networking and Internet Architecture +0812.1323 +0812.1326 Superconductivity +0812.1330 Logic +0812.1334 Differential Geometry +0812.1336 +0812.1339 +0812.1341 +0812.1351 Differential Geometry +0812.1357 Learning +0812.1362 +0812.1371 Exactly Solvable and Integrable Systems +0812.1373 Differential Geometry +0812.1374 Number Theory +0812.1375 Differential Geometry +0812.1376 Algebraic Topology +0812.1378 Differential Geometry +0812.1382 Geometric Topology +0812.1386 Atomic Physics +0812.1390 Computational Geometry +0812.1396 Geometric Topology +0812.1398 Exactly Solvable and Integrable Systems +0812.1401 Functional Analysis +0812.1404 +0812.1405 Information Theory +0812.1414 Experiment +0812.1418 Algebraic Geometry +0812.1419 Phenomenology +0812.1423 Theory +0812.1424 Materials Science +0812.1431 Theory +0812.1432 Representation Theory +0812.1442 Soft Condensed Matter +0812.1449 Representation Theory +0812.1450 Dynamical Systems +0812.1458 Experiment +0812.1461 Strongly Correlated Electrons +0812.1462 Artificial Intelligence +0812.1464 Category Theory +0812.1466 +0812.1468 Rings and Algebras +0812.1475 Representation Theory +0812.1479 Classical Physics +0812.1480 Biological Physics +0812.1481 Algebraic Topology +0812.1484 Computation +0812.1497 Instrumentation and Detectors +0812.1506 Phenomenology +0812.1508 Statistical Mechanics +0812.1510 Exactly Solvable and Integrable Systems +0812.1513 +0812.1521 Optics +0812.1523 Phenomenology +0812.1526 Number Theory +0812.1529 Experiment +0812.1535 Combinatorics +0812.1537 +0812.1539 Methodology +0812.1544 Chemical Physics +0812.1545 Superconductivity +0812.1546 Quantum Algebra +0812.1552 Other Condensed Matter +0812.1553 Information Theory +0812.1554 Information Theory +0812.1556 K-Theory and Homology +0812.1557 Information Theory +0812.1558 Information Theory +0812.1560 Information Theory +cond-mat/0503417 Strongly Correlated Electrons +cs/0409029 Symbolic Computation +math/0403195 Quantum Algebra +math/0607458 Analysis of PDEs +math/0607661 Algebraic Geometry +math/0608231 Probability +math/0610524 Rings and Algebras +physics/0702240 Computational Physics +q-bio/0611054 Quantitative Methods +0705.4488 Probability +0710.5211 Algebraic Geometry +0711.0562 Analysis of PDEs +0711.3239 Soft Condensed Matter +0801.4012 Mesoscale and Nanoscale Physics +0801.4508 Number Theory +0802.0640 Superconductivity +0802.3283 Networking and Internet Architecture +0802.4357 Algebraic Topology +0803.1233 Mesoscale and Nanoscale Physics +0803.1327 Representation Theory +0804.0677 Quantum Algebra +0804.1324 Superconductivity +0804.1547 Superconductivity +0804.4622 Neural and Evolutionary Computing +0804.4803 Fluid Dynamics +0805.0962 Mesoscale and Nanoscale Physics +0805.2565 Soft Condensed Matter +0805.2794 Superconductivity +0805.3305 Combinatorics +0806.3455 +0806.3538 +0806.3575 Phenomenology +0806.3581 +0806.3586 Differential Geometry +0806.3759 +0806.3764 Physics Education +0806.3765 Digital Libraries +0806.3767 +0806.3772 Biomolecules +0806.3775 Soft Condensed Matter +0806.3783 Complex Variables +0806.3792 General Physics +0806.3793 Superconductivity +0806.3795 +0806.3800 Differential Geometry +0806.3802 Information Theory +0806.3803 Differential Geometry +0806.3804 Phenomenology +0806.3807 Representation Theory +0806.3815 Phenomenology +0806.3834 +0806.3846 Statistical Mechanics +0806.3847 Fluid Dynamics +0806.3853 Optimization and Control +0806.3858 Experiment +0806.3861 +0806.3887 Computer Vision and Pattern Recognition +0806.3902 Number Theory +0806.3919 Statistical Mechanics +0806.3921 Experiment +0806.3926 Algebraic Geometry +0806.3931 Soft Condensed Matter +0806.3934 Statistical Mechanics +0806.3938 Multiagent Systems +0806.3940 Exactly Solvable and Integrable Systems +0806.3942 Combinatorics +0806.3944 Number Theory +0806.3946 Medical Physics +0806.3950 +0806.3956 +0806.3957 Experiment +0806.3958 Phenomenology +0806.3960 Representation Theory +0806.3963 Numerical Analysis +adap-org/9303002 Adaptation and Self-Organizing Systems +adap-org/9306002 Adaptation and Self-Organizing Systems +adap-org/9611007 Adaptation and Self-Organizing Systems +gr-qc/0703066 +math/0607546 Differential Geometry +math/0608193 Probability +math/0609229 Metric Geometry +math/0703182 Operator Algebras +0706.2452 Optics +0708.1963 Materials Science +0708.4093 Differential Geometry +0709.0079 Mesoscale and Nanoscale Physics +0710.2060 Materials Science +0710.3296 Probability +0711.3056 +0712.3204 Mesoscale and Nanoscale Physics +0801.0532 Algebraic Topology +0801.2192 +0803.2202 +0803.2878 Combinatorics +0803.2890 Theory +0803.2898 History and Overview +0803.2901 Combinatorics +0803.2904 Populations and Evolution +0803.2906 Phenomenology +0803.2912 +0803.2920 +0803.2926 Theory +0803.2936 Phenomenology +0803.2941 Representation Theory +0803.2942 Statistical Mechanics +0803.2948 Superconductivity +0803.2949 Statistical Mechanics +0803.2950 Statistical Mechanics +0803.2958 Functional Analysis +0803.2960 Algebraic Geometry +0803.2961 Algebraic Geometry +0803.2978 General Physics +0803.2979 Operator Algebras +0803.2987 Algebraic Geometry +0803.3001 Combinatorics +0803.3010 Group Theory +0803.3012 Phenomenology +0803.3014 +0803.3015 Strongly Correlated Electrons +0803.3026 Strongly Correlated Electrons +0803.3027 Symbolic Computation +0803.3048 +0803.3049 Materials Science +0803.3051 Medical Physics +0803.3053 Medical Physics +0803.3055 Dynamical Systems +0803.3062 Differential Geometry +alg-geom/9704003 Algebraic Geometry +alg-geom/9705011 Algebraic Geometry +astro-ph/0607646 +cond-mat/0304650 +cond-mat/0609253 Mesoscale and Nanoscale Physics +cond-mat/0701638 Disordered Systems and Neural Networks +hep-th/0502193 Theory +math/0102077 Algebraic Geometry +math/0511379 Algebraic Geometry +math/0606311 Algebraic Geometry +math/0701027 Group Theory +math/0703514 Representation Theory +physics/0607289 Biological Physics +quant-ph/0701156 +quant-ph/0703124 +0707.4602 Algebraic Geometry +0709.2577 Algebraic Geometry +0711.0239 Number Theory +0711.3096 Representation Theory +0807.1884 General Physics +0807.2387 Materials Science +0808.0315 Theory +0808.2081 Computer Science and Game Theory +0809.5044 Mesoscale and Nanoscale Physics +math-ph/0606025 +math/0605552 Probability +math/0607587 Probability +0704.0086 Probability +0706.1317 Adaptation and Self-Organizing Systems +0707.2994 Probability +0707.3707 +0707.3903 General Mathematics +0708.2659 Category Theory +0708.3960 +0709.1936 Dynamical Systems +0710.5202 Category Theory +0710.5323 Category Theory +0711.2366 Differential Geometry +0711.3558 +0712.0060 +0801.1448 Soft Condensed Matter +0801.2413 Dynamical Systems +0801.3465 Other Condensed Matter +0801.4311 +0802.2985 Soft Condensed Matter +0803.1638 +0803.1828 +0803.4174 Statistical Mechanics +0804.0731 Classical Physics +0804.1465 Soft Condensed Matter +0805.1819 Mesoscale and Nanoscale Physics +0805.2672 Phenomenology +0805.3548 Representation Theory +0806.0051 Theory +0806.0492 Analysis of PDEs +0806.1835 Phenomenology +0806.2147 Superconductivity +0806.2210 Chaotic Dynamics +0806.2331 Molecular Networks +0806.2339 Numerical Analysis +0806.2341 Biological Physics +0806.2346 Quantum Algebra +0806.2347 Experiment +0806.2348 +0806.2356 Artificial Intelligence +0806.2359 Algebraic Topology +0806.2366 Combinatorics +0806.2368 Biological Physics +0806.2370 Differential Geometry +0806.2373 Cell Behavior +0806.2379 Superconductivity +0806.2381 Materials Science +0806.2384 Accelerator Physics +0806.2389 Experiment +0806.2391 Functional Analysis +0806.2394 Quantitative Methods +0806.2398 Geophysics +0806.2399 Geophysics +0806.2403 Dynamical Systems +0806.2405 +0806.2411 Analysis of PDEs +0806.2414 Combinatorics +0806.2416 Mesoscale and Nanoscale Physics +0806.2424 Methodology +0806.2430 Functional Analysis +0806.2432 Strongly Correlated Electrons +0806.2436 +0806.2439 +0806.2440 Experiment +0806.2443 +0806.2453 Statistical Mechanics +0806.2457 Differential Geometry +0806.2460 Statistical Mechanics +0806.2461 Group Theory +0806.2465 Geophysics +0806.2467 Differential Geometry +0806.2469 Optimization and Control +0806.2470 Optics +0806.2486 Number Theory +0806.2487 Experiment +0806.2491 Combinatorics +0806.2495 Algebraic Geometry +0806.2498 Phenomenology +0806.2500 Populations and Evolution +0806.2501 Differential Geometry +0806.2511 Mesoscale and Nanoscale Physics +0806.2522 Experiment +0806.2526 +0806.2529 General Physics +0806.2536 Phenomenology +0806.2539 Quantum Algebra +0806.2541 +0806.2546 Numerical Analysis +0806.2547 Analysis of PDEs +0806.2555 Computational Complexity +0806.2560 +0806.2567 Representation Theory +0806.2569 Theory +0806.2585 +0806.2590 Materials Science +0806.2599 Combinatorics +0806.2603 +0806.2605 Representation Theory +0806.2607 Optics +0806.2615 Experiment +0806.2619 Quantum Algebra +0806.2640 Operator Algebras +0806.2645 Combinatorics +0806.2646 Machine Learning +0806.2653 +cond-mat/0502304 Mesoscale and Nanoscale Physics +cond-mat/0512603 Mesoscale and Nanoscale Physics +cs/0608054 Computational Complexity +math/0305439 Differential Geometry +math/0604262 Probability +math/0610463 Algebraic Geometry +math/9912159 Complex Variables +quant-ph/0412206 +quant-ph/0611078 +0707.0828 Applications +0707.2813 +0709.1742 Quantum Algebra +0801.1855 Analysis of PDEs +0802.3694 Statistical Mechanics +0802.4081 Phenomenology +0803.2793 Strongly Correlated Electrons +0804.0125 +0805.3525 Mesoscale and Nanoscale Physics +0806.0196 Representation Theory +0806.1350 +0806.3139 Materials Science +0807.3167 Probability +0807.4202 Superconductivity +0808.2427 +0809.1197 Superconductivity +0809.2949 +0810.0383 Algebraic Geometry +0810.1465 Representation Theory +0810.3238 Theory +0810.4664 Probability +math-ph/0701021 +math-ph/0703023 +math/0503469 Rings and Algebras +math/0510253 Quantum Algebra +math/0701064 Quantum Algebra +nlin/0601013 Chaotic Dynamics +physics/0110046 Fluid Dynamics +0705.2209 Data Analysis, Statistics and Probability +0708.3413 Representation Theory +0710.1323 Number Theory +0711.1467 Mesoscale and Nanoscale Physics +0801.4285 Probability +0801.4326 Probability +0801.4668 Probability +0803.4304 +0805.1432 Mesoscale and Nanoscale Physics +0807.1660 Phenomenology +0807.4232 Probability +0807.4297 Optimization and Control +0808.3925 +0810.3319 Mesoscale and Nanoscale Physics +0810.4498 Superconductivity +0811.3522 Algebraic Geometry +0811.4187 Theory +0812.2671 +math-ph/0701035 +math-ph/0702005 +quant-ph/0502104 +0708.0443 Combinatorics +0708.3872 Group Theory +0802.0764 Representation Theory +0803.0553 Rings and Algebras +0803.1637 Combinatorics +0807.4045 Soft Condensed Matter +0809.3214 Sound +0810.2329 +0810.3340 General Physics +math-ph/0702044 +math/0509067 Number Theory +0705.1370 +0705.3076 Combinatorics +0706.0077 Dynamical Systems +0707.0451 +0707.3398 +0708.2515 +0708.2562 Functional Analysis +0708.3815 Phenomenology +0709.0128 +0709.1105 +0709.2590 Number Theory +0710.2764 Statistical Mechanics +0710.3689 Statistical Mechanics +0711.0071 Quantum Algebra +0711.1532 Disordered Systems and Neural Networks +0711.1679 Experiment +0712.2651 +0801.0192 Geometric Topology +0801.0703 +0801.2706 +0801.3139 Geometric Topology +0801.4610 Statistics Theory +0801.4785 Mesoscale and Nanoscale Physics +0802.0793 Methodology +0802.1120 Fluid Dynamics +0802.1159 Fluid Dynamics +0802.1213 +0802.1216 Superconductivity +0802.1220 Information Theory +0802.1223 Cell Behavior +0802.1224 Other Condensed Matter +0802.1227 Classical Analysis and ODEs +0802.1233 Optimization and Control +0802.1247 Statistical Mechanics +0802.1248 Statistical Mechanics +0802.1258 Computer Vision and Pattern Recognition +0802.1260 Algebraic Geometry +0802.1262 +0802.1271 Superconductivity +0802.1272 Physics and Society +0802.1279 Commutative Algebra +0802.1281 Spectral Theory +0802.1282 Commutative Algebra +0802.1287 Molecular Networks +0802.1291 +0802.1293 Combinatorics +0802.1301 Number Theory +0802.1313 Materials Science +0802.1315 Phenomenology +0802.1317 Probability +0802.1319 Statistics Theory +0802.1322 +0802.1323 Group Theory +0802.1327 Information Theory +0802.1338 Discrete Mathematics +0802.1342 Mesoscale and Nanoscale Physics +0802.1357 Computation +0802.1359 Optics +0802.1362 Computer Science and Game Theory +0802.1365 Statistical Mechanics +0802.1366 History and Philosophy of Physics +0802.1369 Information Theory +0802.1373 Materials Science +0802.1375 Functional Analysis +0802.1376 +0802.1377 Biological Physics +0802.1380 Information Theory +0802.1381 Combinatorics +0802.1383 Information Theory +0802.1389 Distributed, Parallel, and Cluster Computing +0802.1390 +0802.1393 Multiagent Systems +0802.1398 +0802.1400 Algebraic Geometry +0802.1403 +0802.1419 +0802.1420 Materials Science +0802.1426 Rings and Algebras +0802.1427 Data Structures and Algorithms +0802.1428 General Mathematics +0802.1429 General Mathematics +0802.1432 +0802.1433 Classical Physics +0802.1435 +0802.1447 Geometric Topology +0802.1448 +0802.1449 Mesoscale and Nanoscale Physics +0802.1453 General Mathematics +0802.1464 +0802.1468 Dynamical Systems +0802.1477 Spectral Theory +0802.1480 Materials Science +0802.1491 Differential Geometry +0802.1495 Geometric Topology +0802.1496 Rings and Algebras +0802.1499 Disordered Systems and Neural Networks +0802.1501 +0802.1505 Lattice +0802.1509 Algebraic Topology +0802.1513 Biological Physics +0802.1517 Machine Learning +cond-mat/0511218 Superconductivity +gr-qc/0701042 +gr-qc/9212014 +hep-ph/0701213 Phenomenology +hep-ph/9811507 Phenomenology +math-ph/0702056 +math/0403121 Combinatorics +math/0503685 Commutative Algebra +math/0509113 Functional Analysis +math/0509209 Commutative Algebra +math/0510061 Differential Geometry +math/0512231 Geometric Topology +math/0606148 Algebraic Geometry +math/0606577 Combinatorics +math/0607289 Rings and Algebras +math/0607715 Metric Geometry +math/0609006 Representation Theory +math/0702461 Quantum Algebra +math/0702610 K-Theory and Homology +nlin/0412022 Pattern Formation and Solitons +physics/0212014 Optics +quant-ph/0607160 +quant-ph/0703251 +0708.1264 +0708.2952 Optics +0709.1209 Representation Theory +0712.0580 Analysis of PDEs +0802.2139 Number Theory +0803.1065 Materials Science +0806.1341 Experiment +0807.2438 Chaotic Dynamics +0807.2539 +0808.0023 Computational Complexity +math/0606584 Probability +0705.1099 +0705.1492 Analysis of PDEs +0706.1415 +0706.3226 Algebraic Topology +0708.1569 Strongly Correlated Electrons +0708.1794 Neurons and Cognition +0709.4065 General Physics +0710.5475 Spectral Theory +0710.5761 Geometric Topology +0711.0708 Information Theory +0711.2320 Quantum Algebra +0711.4308 Mesoscale and Nanoscale Physics +0711.4479 +0711.4488 Probability +0712.4093 +0801.2490 Mesoscale and Nanoscale Physics +0802.1900 Other Condensed Matter +0802.3748 Data Analysis, Statistics and Probability +0803.1150 Strongly Correlated Electrons +0803.1297 Other Condensed Matter +0803.2850 Optics +0805.0048 Probability +0805.0049 Exactly Solvable and Integrable Systems +0805.0474 +0805.0719 Statistical Mechanics +0805.0846 +0805.2510 Rings and Algebras +0805.2555 +0805.2675 Networking and Internet Architecture +0805.2714 +0805.4183 Differential Geometry +0806.0028 Disordered Systems and Neural Networks +0806.1011 +0806.1234 Classical Physics +0806.1236 Probability +0806.1237 Other Condensed Matter +0806.1239 +0806.1241 Biological Physics +0806.1242 Combinatorics +0806.1244 +0806.1246 Digital Libraries +0806.1247 Functional Analysis +0806.1248 Statistical Mechanics +0806.1249 Phenomenology +0806.1258 Physics and Society +0806.1259 Fluid Dynamics +0806.1271 Networking and Internet Architecture +0806.1273 Number Theory +0806.1275 Complex Variables +0806.1276 Dynamical Systems +0806.1280 Artificial Intelligence +0806.1282 Disordered Systems and Neural Networks +0806.1284 Cryptography and Security +0806.1294 History and Overview +0806.1297 Quantitative Methods +0806.1300 Combinatorics +0806.1304 +0806.1308 Algebraic Geometry +0806.1316 Artificial Intelligence +0806.1318 Superconductivity +0806.1323 +0806.1325 Metric Geometry +0806.1327 Number Theory +0806.1330 Experiment +0806.1333 +0806.1346 +0806.1351 Algebraic Geometry +0806.1353 Analysis of PDEs +0806.1355 Other Computer Science +0806.1358 +0806.1361 Software Engineering +0806.1363 Analysis of PDEs +0806.1365 +0806.1371 Combinatorics +0806.1377 Cryptography and Security +0806.1378 Populations and Evolution +0806.1383 +0806.1390 Combinatorics +0806.1395 Combinatorics +0806.1398 Commutative Algebra +0806.1401 Algebraic Geometry +0806.1402 Chaotic Dynamics +0806.1403 Combinatorics +0806.1404 Materials Science +0806.1405 Classical Analysis and ODEs +0806.1407 Materials Science +0806.1423 Rings and Algebras +0806.1425 Materials Science +0806.1435 Functional Analysis +0806.1446 Computer Vision and Pattern Recognition +0806.1451 Analysis of PDEs +0806.1453 Analysis of PDEs +0806.1463 Disordered Systems and Neural Networks +0806.1465 Theory +0806.1470 Soft Condensed Matter +0806.1474 +0806.1479 Other Condensed Matter +0806.1481 +0806.1486 Soft Condensed Matter +0806.1489 Optics +0806.1492 History and Overview +0806.1499 +0806.1506 +0806.1510 Materials Science +0806.1514 General Mathematics +0806.1515 +astro-ph/0409556 +astro-ph/0606658 +cond-mat/0506687 Statistical Mechanics +cond-mat/0702192 Materials Science +math-ph/0501022 +math/0306150 Differential Geometry +math/0602470 Spectral Theory +math/0610648 Differential Geometry +math/0611082 Complex Variables +math/0701754 Probability +math/0703912 Probability +physics/0701272 Atomic Physics +quant-ph/0606144 +quant-ph/0702166 +0704.3107 +0707.1140 +0707.1999 Algebraic Topology +0708.3019 Information Theory +0711.4377 Soft Condensed Matter +0712.1378 Probability +0801.1805 +0804.2841 Group Theory +0805.3539 Chemical Physics +0806.4645 Materials Science +0808.0243 Number Theory +0808.0888 Statistical Mechanics +0811.0094 Superconductivity +astro-ph/0512275 +astro-ph/0604456 +math/0702382 Number Theory +math/0703613 Algebraic Geometry +nlin/0301009 Chaotic Dynamics +0704.2771 Rings and Algebras +0704.3047 +0705.1632 Plasma Physics +0707.0799 Information Theory +0707.0823 Applications +0707.0837 Statistics Theory +0707.4674 Mesoscale and Nanoscale Physics +0708.0477 Group Theory +0708.1133 Mesoscale and Nanoscale Physics +0708.1559 +0709.3741 Operator Algebras +0710.3649 +0711.0754 Mesoscale and Nanoscale Physics +0711.2419 Probability +0711.3255 Representation Theory +0711.5015 Phenomenology +0712.0741 Materials Science +0712.2149 Computational Physics +0801.3506 Differential Geometry +0801.4655 Probability +0801.4736 Mesoscale and Nanoscale Physics +0802.0162 Rings and Algebras +0802.0179 Information Theory +0802.0332 Geometric Topology +0803.0086 Exactly Solvable and Integrable Systems +0803.1436 Differential Geometry +0804.3884 Algebraic Geometry +0804.4276 Number Theory +0804.4397 Algebraic Geometry +0805.1242 Fluid Dynamics +0805.1243 Classical Physics +0805.1248 Experiment +0805.1251 Instrumentation and Detectors +0805.1272 Combinatorics +0805.1273 Combinatorics +0805.1274 Combinatorics +0805.1276 Combinatorics +0805.1277 Combinatorics +0805.1279 Combinatorics +0805.1280 Combinatorics +0805.1284 +0805.1286 +0805.1288 Artificial Intelligence +0805.1289 Genomics +0805.1293 Other Computer Science +0805.1300 Networking and Internet Architecture +0805.1304 Rings and Algebras +0805.1306 Probability +0805.1307 Differential Geometry +0805.1311 +0805.1324 Mesoscale and Nanoscale Physics +0805.1325 Combinatorics +0805.1327 Information Theory +0805.1333 Phenomenology +0805.1338 Phenomenology +0805.1342 Representation Theory +0805.1345 Number Theory +0805.1348 Data Structures and Algorithms +0805.1360 Statistical Mechanics +0805.1361 Number Theory +0805.1373 Discrete Mathematics +0805.1375 Symplectic Geometry +0805.1390 Machine Learning +0805.1392 Disordered Systems and Neural Networks +0805.1395 Populations and Evolution +0805.1396 Materials Science +0805.1398 Combinatorics +0805.1401 Computational Geometry +cs/0504001 Learning +cs/0605115 Cryptography and Security +math/0505127 Probability +math/0605581 Numerical Analysis +math/0606271 Operator Algebras +quant-ph/0204022 +quant-ph/0305028 +quant-ph/0305179 +quant-ph/0306051 +quant-ph/0403120 +quant-ph/0504012 +0704.3358 Probability +0705.1082 Combinatorics +0707.4087 Data Analysis, Statistics and Probability +0709.1097 Analysis of PDEs +0709.3603 +0710.4043 Strongly Correlated Electrons +0711.3204 Mesoscale and Nanoscale Physics +0711.3438 +0801.0049 Geometric Topology +0802.0697 Analysis of PDEs +0802.4171 Phenomenology +0803.0247 +0803.1710 Materials Science +0803.3181 +0805.0457 Statistical Mechanics +0805.3826 Analysis of PDEs +0806.1461 Algebraic Geometry +0806.1961 +0806.4264 Information Theory +0807.0042 Information Theory +0807.0046 +0807.0519 Complex Variables +0807.3763 Mesoscale and Nanoscale Physics +0808.3314 +0809.0263 Phenomenology +0809.0751 Phenomenology +0809.3639 Neurons and Cognition +0809.3771 Algebraic Geometry +0809.4461 +0809.4484 Computer Science and Game Theory +0809.4498 Materials Science +0809.4501 Computer Vision and Pattern Recognition +0809.4503 Phenomenology +0809.4521 Representation Theory +0809.4523 +0809.4525 Commutative Algebra +0809.4526 History and Overview +0809.4533 Mesoscale and Nanoscale Physics +0809.4539 +0809.4542 Phenomenology +0809.4544 Strongly Correlated Electrons +0809.4547 Rings and Algebras +0809.4551 Mesoscale and Nanoscale Physics +0809.4556 +0809.4557 Complex Variables +0809.4558 Differential Geometry +0809.4561 Algebraic Topology +0809.4563 Lattice +0809.4566 Phenomenology +0809.4567 Optics +0809.4571 Differential Geometry +0809.4573 +0809.4576 Networking and Internet Architecture +0809.4577 Data Structures and Algorithms +0809.4579 Algebraic Geometry +0809.4580 Analysis of PDEs +0809.4582 Artificial Intelligence +0809.4583 +0809.4587 Algebraic Topology +0809.4590 +0809.4593 +0809.4601 Probability +0809.4609 +0809.4610 Physics and Society +0809.4612 Differential Geometry +0809.4614 +0809.4616 +0809.4620 Materials Science +0809.4622 Neural and Evolutionary Computing +0809.4623 Optimization and Control +0809.4631 Statistical Mechanics +0809.4632 Learning +0809.4633 Analysis of PDEs +0809.4635 Programming Languages +0809.4638 Phenomenology +0809.4639 Soft Condensed Matter +0809.4648 +0809.4653 Classical Analysis and ODEs +0809.4654 Computation +0809.4655 Physics and Society +0809.4661 +0809.4664 +0809.4669 Algebraic Geometry +0809.4674 Materials Science +0809.4676 Optimization and Control +0809.4678 +0809.4690 Combinatorics +0809.4692 Theory +0809.4695 Group Theory +0809.4701 Theory +cond-mat/0605235 Soft Condensed Matter +cs/0610059 Computer Vision and Pattern Recognition +gr-qc/0703132 +math-ph/0510069 +math-ph/0607025 +math-ph/0607060 +math/0503302 Representation Theory +math/0505282 K-Theory and Homology +math/0507513 Representation Theory +math/0603227 Probability +math/0609647 Representation Theory +math/0611860 Probability +math/0612378 Group Theory +math/0701282 Representation Theory +math/0702238 Dynamical Systems +math/0703456 Combinatorics +math/0703605 Representation Theory +physics/0703034 General Physics +quant-ph/0511207 +quant-ph/0608144 +quant-ph/0703158 +0707.0402 +0707.4679 Theory +0708.4035 Materials Science +0711.3114 Phenomenology +0711.4035 Spectral Theory +0711.4176 Statistical Mechanics +0711.4472 Phenomenology +0801.1356 Number Theory +0801.1360 Number Theory +0801.3111 Neural and Evolutionary Computing +0801.3113 Neural and Evolutionary Computing +0801.3862 Materials Science +0801.4602 Statistical Mechanics +0803.4424 Strongly Correlated Electrons +0804.3011 Atomic Physics +0805.0631 Optimization and Control +0805.2834 Theory +0805.3039 Optics +0805.4118 Statistical Mechanics +0805.4623 Strongly Correlated Electrons +0806.0847 Phenomenology +0806.1647 +0806.2203 Other Condensed Matter +0806.2532 +0806.3770 Superconductivity +0806.3848 Strongly Correlated Electrons +0806.4200 Information Theory +0807.1942 +0807.2105 Populations and Evolution +0807.2585 Statistical Mechanics +0807.3700 Plasma Physics +0807.4346 Group Theory +0807.4539 Algebraic Geometry +0807.4550 Representation Theory +0807.4562 Algebraic Geometry +0807.4565 Phenomenology +0807.4569 Superconductivity +0807.4571 +0807.4582 Data Structures and Algorithms +0807.4583 Physics and Society +0807.4591 Analysis of PDEs +0807.4593 Soft Condensed Matter +0807.4600 Plasma Physics +0807.4601 Disordered Systems and Neural Networks +0807.4602 Dynamical Systems +0807.4609 Distributed, Parallel, and Cluster Computing +0807.4620 Databases +0807.4623 Human-Computer Interaction +0807.4624 +0807.4630 Combinatorics +0807.4632 Statistical Mechanics +0807.4640 Analysis of PDEs +0807.4645 Optics +0807.4647 Materials Science +0807.4649 Applications +0807.4654 Number Theory +0807.4655 Combinatorics +0807.4656 Networking and Internet Architecture +0807.4657 Analysis of PDEs +0807.4658 Applications +0807.4663 Applications +0807.4665 Probability +0807.4670 +0807.4671 Number Theory +0807.4672 Applications +0807.4673 Optics +0807.4674 Algebraic Geometry +0807.4676 +0807.4681 Materials Science +0807.4684 Representation Theory +0807.4685 Group Theory +0807.4692 Analysis of PDEs +0807.4699 Soft Condensed Matter +0807.4710 +0807.4712 Optics +0807.4720 Analysis of PDEs +0807.4724 Strongly Correlated Electrons +0807.4725 Classical Physics +0807.4726 Probability +cond-mat/0503083 Statistical Mechanics +gr-qc/0408043 +math/0703044 Differential Geometry +physics/0701139 Plasma Physics +quant-ph/0612156 +0704.2056 +0707.2485 Fluid Dynamics +0709.1578 Algebraic Geometry +0710.3908 Commutative Algebra +0712.0152 Optimization and Control +math/0506115 Representation Theory +math/0606514 Probability +math/0609550 Algebraic Geometry +quant-ph/0507028 +0704.1008 Representation Theory +0704.2826 Probability +0706.0668 +0707.2920 Dynamical Systems +0708.0374 Dynamical Systems +0710.3257 Chaotic Dynamics +0711.2260 +0712.3678 Analysis of PDEs +0801.0082 Quantitative Methods +0801.1125 Mesoscale and Nanoscale Physics +0801.4669 Probability +0802.0607 Chaotic Dynamics +0802.1154 Strongly Correlated Electrons +0802.1555 Information Theory +0802.2351 Mesoscale and Nanoscale Physics +0802.2357 Mesoscale and Nanoscale Physics +0802.3670 +0804.1016 +0804.2139 +0804.2751 Materials Science +0804.3873 Soft Condensed Matter +0805.0264 Superconductivity +0805.1314 +0805.1328 Optics +0805.2164 Mesoscale and Nanoscale Physics +0805.4664 +0807.1608 +0807.3771 +0807.4679 +0807.4999 Theory +0808.2283 Materials Science +0808.2285 Materials Science +0808.3437 Pattern Formation and Solitons +0808.3511 Neurons and Cognition +0808.3574 Cryptography and Security +0808.3587 Methodology +0808.3588 Differential Geometry +0808.3594 Phenomenology +0808.3599 Probability +0808.3603 +0808.3604 Algebraic Geometry +0808.3613 +0808.3614 Combinatorics +0808.3615 Number Theory +0808.3617 +0808.3618 +0808.3621 Theory +0808.3631 Probability +0808.3636 Physics Education +0808.3646 Geometric Topology +0808.3649 Probability +0808.3650 Experiment +0808.3656 Probability +0808.3659 Materials Science +0808.3672 Phenomenology +0808.3685 Dynamical Systems +0808.3693 Distributed, Parallel, and Cluster Computing +0808.3695 Physics Education +0808.3699 +0808.3700 Phenomenology +0808.3715 Materials Science +0808.3716 Materials Science +0808.3717 General Literature +0808.3721 Analysis of PDEs +0808.3741 Differential Geometry +0808.3748 Superconductivity +0808.3751 Probability +0808.3753 Algebraic Geometry +0808.3760 Combinatorics +0808.3765 Theory +cond-mat/0109159 Statistical Mechanics +cond-mat/0202339 Statistical Mechanics +cond-mat/0302414 Statistical Mechanics +cond-mat/0302514 Statistical Mechanics +cond-mat/0311346 Statistical Mechanics +cond-mat/0406027 Statistical Mechanics +cond-mat/0602062 Other Condensed Matter +cond-mat/9712267 Statistical Mechanics +cond-mat/9907262 Statistical Mechanics +math-ph/0302049 +math-ph/0605076 +math/0211322 Probability +math/0406205 Analysis of PDEs +math/0507578 Probability +math/0512453 Category Theory +math/0603239 Group Theory +math/0603453 Dynamical Systems +math/0603704 Numerical Analysis +math/0604341 Dynamical Systems +math/0605053 Probability +math/0608357 Probability +math/0610086 Analysis of PDEs +math/0610100 Probability +math/0610591 Representation Theory +math/0610939 Probability +math/0701633 Combinatorics +math/0703073 Quantum Algebra +physics/0302018 Biological Physics +q-bio/0407029 Tissues and Organs +q-bio/0611084 Populations and Evolution +quant-ph/0203068 +quant-ph/0203139 +quant-ph/0512057 +quant-ph/0607039 +0704.1039 Symplectic Geometry +0704.3527 Functional Analysis +0705.0788 +0707.0026 Genomics +0707.3167 Algebraic Geometry +0708.1657 Functional Analysis +0709.0354 Strongly Correlated Electrons +0709.2464 Classical Analysis and ODEs +0709.3413 Statistics Theory +0710.4561 Algebraic Geometry +0710.4779 Chaotic Dynamics +0711.1088 Mesoscale and Nanoscale Physics +0711.1580 Chaotic Dynamics +0711.2227 Cell Behavior +0712.2897 Materials Science +0801.1060 Information Theory +0801.1320 +0801.1898 Geometric Topology +0801.2728 Statistical Mechanics +0801.4496 Strongly Correlated Electrons +0801.4501 Statistical Mechanics +0802.1318 +0802.1423 Materials Science +0802.3168 Materials Science +0803.2614 +0803.3235 Strongly Correlated Electrons +0804.1037 Strongly Correlated Electrons +0804.3673 +0804.3844 Dynamical Systems +0804.4042 Information Theory +0804.4162 +0804.4223 Complex Variables +0804.4237 Neural and Evolutionary Computing +0804.4307 Lattice +0804.4480 General Mathematics +0804.4485 Mesoscale and Nanoscale Physics +0804.4490 General Mathematics +0804.4497 Functional Analysis +0804.4498 Disordered Systems and Neural Networks +0804.4505 Classical Analysis and ODEs +0804.4517 Information Theory +0804.4519 Analysis of PDEs +0804.4521 Numerical Analysis +0804.4526 Combinatorics +0804.4528 Atomic Physics +0804.4529 Phenomenology +0804.4532 Materials Science +0804.4533 Metric Geometry +0804.4546 Superconductivity +0804.4548 Logic +0804.4551 Biomolecules +0804.4561 Statistical Mechanics +0804.4570 Dynamical Systems +0804.4578 +0804.4582 +0804.4587 Algebraic Geometry +0804.4588 Differential Geometry +0804.4593 Atomic Physics +0804.4594 +0804.4598 +0804.4605 Number Theory +0804.4607 +0804.4612 Phenomenology +0804.4615 Classical Analysis and ODEs +0804.4617 Combinatorics +0804.4633 Experiment +0804.4637 Dynamical Systems +0804.4639 +0804.4640 General Mathematics +0804.4647 +0804.4648 Classical Analysis and ODEs +0804.4650 +0804.4656 Theory +0804.4657 Algebraic Geometry +0804.4658 Algebraic Geometry +0804.4662 Information Theory +0804.4663 Combinatorics +0804.4664 Strongly Correlated Electrons +0804.4665 +0804.4666 Discrete Mathematics +0804.4676 Materials Science +0804.4682 Learning +math-ph/0512003 +math/0104178 Number Theory +math/0505110 Numerical Analysis +math/0511539 Functional Analysis +math/0601132 Algebraic Geometry +math/0601276 Operator Algebras +math/0604608 Differential Geometry +math/0605354 Geometric Topology +math/0607137 Algebraic Geometry +math/0609727 Differential Geometry +math/0611837 Algebraic Geometry +math/0612731 Number Theory +math/0701501 Group Theory +physics/0703155 Optics +0710.0149 Atomic Physics +0710.1112 +0712.0108 Differential Geometry +0801.2139 Mesoscale and Nanoscale Physics +0801.2847 General Physics +0803.3892 Statistical Mechanics +0804.0566 +0804.0825 Fluid Dynamics +0804.2006 +0805.2302 Experiment +hep-th/0607213 Theory +0708.1221 +0709.1174 Materials Science +0710.4198 Strongly Correlated Electrons +0712.2295 +0712.2948 Complex Variables +0712.3186 Algebraic Geometry +0712.3439 Strongly Correlated Electrons +0712.4362 Rings and Algebras +0801.3935 +0802.1021 Algebraic Geometry +0802.3417 Other Condensed Matter +0803.0461 Commutative Algebra +0803.0958 Mesoscale and Nanoscale Physics +0803.1330 Theory +0803.1427 +0803.1552 Populations and Evolution +0803.2008 Soft Condensed Matter +0803.3303 Probability +0804.0419 Soft Condensed Matter +0804.0990 Strongly Correlated Electrons +0804.1042 K-Theory and Homology +0804.2504 Other Condensed Matter +0804.3006 +0804.3503 +0805.2582 Mesoscale and Nanoscale Physics +0805.2907 Combinatorics +0805.3672 Algebraic Geometry +0805.4563 Algebraic Geometry +0806.1022 Operator Algebras +0806.3335 Disordered Systems and Neural Networks +0806.3603 Other Condensed Matter +0806.4369 Materials Science +0807.0878 +0807.2104 Phenomenology +0807.3679 Theory +0807.4850 Logic +0808.1547 Functional Analysis +0808.1742 Analysis of PDEs +0808.2063 +0808.2073 Information Theory +0808.2085 Materials Science +0808.2086 Quantum Algebra +0808.2087 Group Theory +0808.2088 Probability +0808.2091 Phenomenology +0808.2092 Information Theory +0808.2094 Strongly Correlated Electrons +0808.2097 Differential Geometry +0808.2102 Statistical Mechanics +0808.2103 +0808.2106 Strongly Correlated Electrons +0808.2109 Computational Physics +0808.2115 +0808.2117 +0808.2123 Computational Physics +0808.2125 Materials Science +0808.2132 Materials Science +0808.2144 +0808.2160 Numerical Analysis +0808.2170 Adaptation and Self-Organizing Systems +0808.2172 Classical Analysis and ODEs +0808.2181 Information Theory +cond-mat/0703153 Strongly Correlated Electrons +math/0408085 Complex Variables +math/0411639 Algebraic Geometry +math/0601070 Statistics Theory +math/0602553 Algebraic Geometry +math/0701668 Statistics Theory +math/0701815 Algebraic Topology +math/0702623 Number Theory +physics/0508052 Physics and Society +quant-ph/0504078 +0704.3011 Other Condensed Matter +0705.1926 Logic +0705.4068 Optimization and Control +0708.1722 Plasma Physics +0709.0663 Algebraic Geometry +0710.3227 Analysis of PDEs +0710.3937 Complex Variables +0710.4081 +0710.4310 Differential Geometry +0712.2932 Populations and Evolution +0801.2611 Algebraic Geometry +0801.3186 +0801.3895 +0802.1957 Computer Science and Game Theory +0803.0398 Physics and Society +0803.0617 +0803.0665 Geometric Topology +0803.1643 +0803.3608 Category Theory +0804.1636 Other Condensed Matter +0804.1637 Other Condensed Matter +0804.1638 Other Condensed Matter +0804.1639 Other Condensed Matter +0804.4667 Strongly Correlated Electrons +0805.1016 Functional Analysis +0805.1746 +0805.1777 +0806.1441 Mesoscale and Nanoscale Physics +0806.2735 +0806.3213 Materials Science +0806.3553 Classical Analysis and ODEs +0806.4717 Combinatorics +0807.1329 Quantum Algebra +0807.1792 Phenomenology +0807.1803 Cell Behavior +0807.2109 Geophysics +0807.2200 Functional Analysis +0807.2329 Phenomenology +0807.2411 Biological Physics +0807.2626 Number Theory +0807.2865 Geometric Topology +0807.2871 Group Theory +0807.2872 Phenomenology +0807.2876 +0807.2877 Fluid Dynamics +0807.2878 Chemical Physics +0807.2880 Physics and Society +0807.2881 Geometric Topology +0807.2887 Disordered Systems and Neural Networks +0807.2889 +0807.2890 Combinatorics +0807.2901 Strongly Correlated Electrons +0807.2904 Strongly Correlated Electrons +0807.2906 Mesoscale and Nanoscale Physics +0807.2907 Dynamical Systems +0807.2915 +0807.2916 Analysis of PDEs +0807.2925 Rings and Algebras +0807.2928 Computer Vision and Pattern Recognition +0807.2929 Numerical Analysis +0807.2930 Number Theory +0807.2931 Probability +0807.2932 Group Theory +0807.2939 Numerical Analysis +0807.2953 Classical Analysis and ODEs +0807.2956 Commutative Algebra +0807.2960 Statistics Theory +0807.2961 Logic in Computer Science +0807.2964 Materials Science +0807.2967 Commutative Algebra +0807.2968 Materials Science +0807.2971 Number Theory +0807.2972 Databases +0807.2978 Superconductivity +0807.2982 Operator Algebras +0807.2983 Learning +0807.2988 Data Analysis, Statistics and Probability +0807.2989 Classical Physics +0807.2992 +0807.2993 Human-Computer Interaction +0807.2995 Tissues and Organs +0807.2997 Human-Computer Interaction +0807.3004 +0807.3006 Data Structures and Algorithms +0807.3013 General Mathematics +0807.3023 Phenomenology +0807.3027 +astro-ph/0609524 +cs/0512101 Information Theory +math-ph/0611075 +math/0511119 Differential Geometry +math/0512104 Algebraic Geometry +math/0603477 Number Theory +math/0603480 Differential Geometry +physics/0304092 Fluid Dynamics +q-bio/0703041 Populations and Evolution +quant-ph/0701013 +0704.1477 Soft Condensed Matter +0704.3868 Other Condensed Matter +0705.2009 Information Theory +0706.2956 Soft Condensed Matter +0707.0179 Other Condensed Matter +0708.2244 Disordered Systems and Neural Networks +0709.0792 Fluid Dynamics +0710.0718 Strongly Correlated Electrons +0710.2746 Statistics Theory +0710.3551 Soft Condensed Matter +0711.3520 +0712.0991 Strongly Correlated Electrons +0712.1320 Logic +0712.1855 Number Theory +0712.2276 +0712.3571 +0712.4249 Theory +0801.1015 Other Condensed Matter +0801.2373 Strongly Correlated Electrons +0802.1385 Mesoscale and Nanoscale Physics +0802.2397 Mesoscale and Nanoscale Physics +0802.2472 +0803.0731 Information Theory +0803.0774 Mesoscale and Nanoscale Physics +0803.2694 Category Theory +0803.3009 Mesoscale and Nanoscale Physics +0803.4146 Soft Condensed Matter +0804.0840 Number Theory +0804.0982 Mesoscale and Nanoscale Physics +0804.2354 Information Retrieval +0804.2795 Analysis of PDEs +0804.3122 +0804.3286 Algebraic Geometry +0804.3550 Number Theory +0804.3747 Algebraic Geometry +0804.3751 Quantum Algebra +0804.3841 Combinatorics +0804.4014 Number Theory +0804.4160 +0804.4892 Combinatorics +0805.0016 Combinatorics +0805.0649 Representation Theory +0805.0794 Statistical Mechanics +0805.0811 Optics +0805.0813 +0805.0814 Classical Analysis and ODEs +0805.0818 Physics Education +0805.0819 Other Quantitative Biology +0805.0821 Optics +0805.0825 Complex Variables +0805.0828 Optimization and Control +0805.0832 +0805.0844 Algebraic Geometry +0805.0849 Cryptography and Security +0805.0850 Cryptography and Security +0805.0902 Differential Geometry +0805.0909 Cryptography and Security +0805.0924 Physics and Society +0805.0936 +0805.0947 General Physics +0805.0948 Accelerator Physics +0805.0950 +0805.0951 Theory +0805.0959 Classical Analysis and ODEs +0805.0969 Fluid Dynamics +0805.0978 Superconductivity +0805.0982 Strongly Correlated Electrons +0805.0984 Phenomenology +0805.0990 Information Theory +0805.0996 Phenomenology +0805.0998 Physics and Society +0805.1003 Spectral Theory +0805.1006 Representation Theory +0805.1018 Representation Theory +0805.1020 Algebraic Geometry +0805.1021 +0805.1022 Other Condensed Matter +0805.1023 Differential Geometry +0805.1026 Combinatorics +0805.1031 Probability +0805.1032 Complex Variables +0805.1033 +0805.1037 Mesoscale and Nanoscale Physics +0805.1038 Analysis of PDEs +0805.1039 Functional Analysis +0805.1043 Quantum Algebra +0805.1045 Symplectic Geometry +0805.1050 +0805.1052 General Mathematics +cond-mat/0409773 Other Condensed Matter +cond-mat/0611634 Other Condensed Matter +math/0309447 Group Theory +math/0607034 Algebraic Geometry +physics/0701058 General Physics +quant-ph/0412026 +0705.1107 +0706.2996 Combinatorics +0707.2116 Statistics Theory +0707.2576 Combinatorics +0709.1660 Optimization and Control +0709.2330 Probability +0710.1544 +0710.2496 Probability +0710.2500 Probability +0710.3259 +0710.3757 Probability +0710.3760 Probability +0710.3773 Probability +0710.3775 Probability +0710.4096 Strongly Correlated Electrons +0710.5144 Probability +0711.0350 Probability +0711.0367 Probability +0711.0471 Probability +0711.0472 Probability +0711.4976 Soft Condensed Matter +0712.2225 Mesoscale and Nanoscale Physics +0712.2592 Probability +0801.0491 Phenomenology +0803.1594 +0803.3455 Computer Science and Game Theory +0803.4071 Strongly Correlated Electrons +0803.4332 Probability +0804.0451 Materials Science +0804.1468 Rings and Algebras +0804.1885 Statistical Mechanics +0805.1593 Databases +0805.3091 Statistics Theory +0805.4467 +0806.0615 Optics +0806.1233 Other Condensed Matter +0806.2455 +0806.2534 Optics +0806.2870 +0806.2871 Complex Variables +0806.2873 Theory +0806.2884 Optics +0806.2887 +0806.2890 Computer Vision and Pattern Recognition +0806.2894 Dynamical Systems +0806.2895 Phenomenology +0806.2916 Classical Analysis and ODEs +0806.2917 Representation Theory +0806.2921 Classical Analysis and ODEs +0806.2930 +0806.2934 Geometric Topology +0806.2936 Combinatorics +0806.2943 General Mathematics +0806.2952 Analysis of PDEs +0806.2954 Materials Science +0806.2957 General Physics +0806.2961 Classical Analysis and ODEs +0806.2962 +0806.2967 Dynamical Systems +0806.2968 Group Theory +0806.2975 +0806.2979 Analysis of PDEs +0806.2987 Analysis of PDEs +0806.2991 Information Theory +0806.2992 Experiment +0806.2994 Analysis of PDEs +0806.2997 Plasma Physics +0806.3001 Mesoscale and Nanoscale Physics +0806.3006 Materials Science +0806.3012 Statistics Theory +0806.3013 Rings and Algebras +0806.3014 Complex Variables +0806.3015 Optimization and Control +0806.3016 Spectral Theory +0806.3019 +0806.3028 +0806.3029 Phenomenology +0806.3037 Phenomenology +0806.3042 +0806.3043 Phenomenology +0806.3048 Molecular Networks +0806.3061 +cond-mat/0212170 Mesoscale and Nanoscale Physics +math/0212148 Algebraic Geometry +math/0403122 Algebraic Geometry +math/0410271 Statistics Theory +math/0603444 Algebraic Geometry +math/0611244 Algebraic Geometry +math/0612351 Combinatorics +math/0703129 Algebraic Geometry +math/0703166 Algebraic Geometry +math/0703168 Algebraic Geometry +physics/0703164 Physics and Society +quant-ph/0703095 +0706.1293 Other Quantitative Biology +0706.2885 General Physics +0709.3629 Differential Geometry +0710.0198 Information Theory +0710.0199 Information Theory +0710.3299 +0711.3790 Superconductivity +0712.1761 Superconductivity +0712.2940 Probability +0801.2495 Other Condensed Matter +0802.1814 Materials Science +0803.0592 +0804.1971 +0804.4767 Number Theory +0805.0398 +cond-mat/0509750 Materials Science +cond-mat/0607513 Statistical Mechanics +cond-mat/9904298 Statistical Mechanics +math/0607785 Combinatorics +0704.1876 General Physics +0705.0147 +0706.0708 Classical Analysis and ODEs +0710.0283 Number Theory +0710.1151 Statistics Theory +0710.4190 Statistics Theory +0710.5136 Lattice +0711.3245 Mesoscale and Nanoscale Physics +0712.3227 +0712.3848 Mesoscale and Nanoscale Physics +0801.3720 Strongly Correlated Electrons +0803.3005 Algebraic Geometry +0804.2077 Atomic Physics +0805.0718 +0805.1129 Phenomenology +0805.3423 Phenomenology +0805.4461 Commutative Algebra +0805.4709 Soft Condensed Matter +0806.1362 Superconductivity +0806.4810 Mesoscale and Nanoscale Physics +0807.1014 Statistical Finance +0807.2734 Statistics Theory +0808.1304 Superconductivity +0808.1340 Theory +0808.3194 Statistics Theory +0809.1572 Mesoscale and Nanoscale Physics +0809.2145 Other Condensed Matter +0809.2636 +0809.2816 Strongly Correlated Electrons +0809.2960 Theory +0810.0102 Statistics Theory +0811.1346 Chaotic Dynamics +0811.1772 +0811.4044 Theory +0811.4684 +0812.2086 Chaotic Dynamics +0812.3340 +0812.3436 +0812.3670 Algebraic Geometry +0812.3684 Algebraic Geometry +0812.3692 Algebraic Geometry +0812.3701 +0812.3702 Data Structures and Algorithms +0812.3710 Differential Geometry +0812.3715 Databases +0812.3716 Software Engineering +0812.3717 Disordered Systems and Neural Networks +0812.3719 Software Engineering +0812.3720 +0812.3721 Complex Variables +0812.3722 Strongly Correlated Electrons +0812.3726 +0812.3730 Analysis of PDEs +0812.3740 General Physics +0812.3743 +0812.3746 Group Theory +0812.3753 Chaotic Dynamics +0812.3756 +0812.3760 Pattern Formation and Solitons +0812.3765 Probability +0812.3766 +0812.3768 Mesoscale and Nanoscale Physics +0812.3770 +0812.3773 Representation Theory +0812.3777 Algebraic Geometry +0812.3778 Chaotic Dynamics +0812.3779 Functional Analysis +0812.3790 +0812.3796 +0812.3816 Dynamical Systems +0812.3822 Numerical Analysis +0812.3828 +0812.3835 Plasma Physics +0812.3848 Probability +0812.3851 Numerical Analysis +0812.3865 +0812.3868 Strongly Correlated Electrons +0812.3869 General Physics +0812.3870 Representation Theory +0812.3871 Hardware Architecture +0812.3873 Information Theory +0812.3879 Classical Analysis and ODEs +0812.3890 Information Theory +hep-ph/0305150 Phenomenology +hep-ph/0306055 Phenomenology +hep-ph/9503323 Phenomenology +hep-ph/9503434 Phenomenology +hep-ph/9503443 Phenomenology +hep-ph/9504399 Phenomenology +hep-ph/9505350 Phenomenology +hep-ph/9607288 Phenomenology +hep-th/0610017 Theory +math/0305207 Dynamical Systems +physics/0701289 General Physics +0706.4338 Differential Geometry +0708.2022 Algebraic Geometry +0709.0868 Physics and Society +0709.4079 Methodology +0710.4565 Algebraic Geometry +0801.1370 Chaotic Dynamics +0801.1951 Probability +0801.2216 Differential Geometry +0801.2921 Superconductivity +0803.0054 Computation +0803.1526 Physics and Society +0804.3492 Theory +0804.4115 Strongly Correlated Electrons +0805.1320 Strongly Correlated Electrons +0805.2938 Multimedia +0805.3817 +0806.0098 Mesoscale and Nanoscale Physics +0806.1034 Cryptography and Security +0806.4274 Materials Science +0807.1122 +0807.2274 Superconductivity +0808.0378 Classical Analysis and ODEs +0808.1431 Performance +0808.1879 +0808.2923 History and Philosophy of Physics +0808.2986 +0808.2992 Computational Physics +0808.2998 Representation Theory +0808.2999 Statistical Mechanics +0808.3002 Materials Science +0808.3003 Number Theory +0808.3004 Methodology +0808.3007 +0808.3019 Distributed, Parallel, and Cluster Computing +0808.3020 Logic +0808.3021 Probability +0808.3023 Logic +0808.3029 Operator Algebras +0808.3031 Statistical Mechanics +0808.3032 Mesoscale and Nanoscale Physics +0808.3033 Probability +0808.3037 Probability +0808.3039 Mesoscale and Nanoscale Physics +0808.3044 Spectral Theory +0808.3046 Phenomenology +0808.3048 Probability +0808.3053 Dynamical Systems +0808.3054 Probability +0808.3055 Methodology +0808.3058 Geometric Topology +0808.3069 Probability +0808.3071 Statistical Mechanics +0808.3072 Logic +0808.3073 Logic +0808.3075 Logic +0808.3076 Soft Condensed Matter +0808.3077 Logic +0808.3078 Dynamical Systems +0808.3080 Superconductivity +0808.3084 Soft Condensed Matter +0808.3088 +0808.3092 Statistical Mechanics +0808.3093 +0808.3099 Biomolecules +0808.3100 Performance +0808.3105 Probability +0808.3107 Strongly Correlated Electrons +0808.3114 Group Theory +0808.3117 +0808.3118 +0808.3119 Group Theory +0808.3120 +0808.3131 Experiment +0808.3133 Phenomenology +cond-mat/0703465 Other Condensed Matter +math-ph/0702004 +math/0406016 Algebraic Geometry +math/0412436 Differential Geometry +physics/0611089 Physics and Society +0704.1355 Phenomenology +0704.2856 Other Condensed Matter +0706.1005 +0706.2194 Fluid Dynamics +0706.2335 +0708.0436 +0708.2809 +0709.3521 Mesoscale and Nanoscale Physics +0710.2033 Differential Geometry +0710.3269 Probability +0711.2009 Strongly Correlated Electrons +0711.2751 +0712.0364 Data Analysis, Statistics and Probability +0712.0702 Algebraic Topology +0801.1188 Materials Science +0801.2943 Atomic Physics +0802.1702 Data Analysis, Statistics and Probability +0802.2440 Statistical Mechanics +0802.3172 Phenomenology +0802.3433 Dynamical Systems +0802.3577 Statistical Mechanics +0802.3580 Statistical Mechanics +0803.0219 Analysis of PDEs +0803.3668 Representation Theory +0803.4091 Physics and Society +0804.1058 Other Condensed Matter +0804.3391 Numerical Analysis +0804.3392 +0804.3396 +0804.3401 +0804.3406 Analysis of PDEs +0804.3407 Complex Variables +0804.3408 Analysis of PDEs +0804.3409 Phenomenology +0804.3410 Soft Condensed Matter +0804.3411 Numerical Analysis +0804.3418 Optics +0804.3430 Information Theory +0804.3441 Mesoscale and Nanoscale Physics +0804.3447 Operator Algebras +0804.3451 Functional Analysis +0804.3452 Differential Geometry +0804.3453 Information Theory +0804.3455 +0804.3456 Materials Science +0804.3477 Statistical Mechanics +0804.3481 Symplectic Geometry +0804.3484 Representation Theory +0804.3485 Populations and Evolution +0804.3486 Networking and Internet Architecture +0804.3487 +0804.3491 +0804.3497 Probability +0804.3500 Computational Geometry +0804.3502 +0804.3507 Information Theory +0804.3522 Statistical Mechanics +0804.3530 Number Theory +0804.3531 +0804.3534 Phenomenology +0804.3541 Combinatorics +0804.3542 +0804.3549 Analysis of PDEs +0804.3553 K-Theory and Homology +0804.3577 Algebraic Geometry +0804.3578 +0804.3583 Discrete Mathematics +0804.3585 Atomic Physics +cond-mat/0503043 Statistical Mechanics +cond-mat/0503515 Strongly Correlated Electrons +cond-mat/0610784 Disordered Systems and Neural Networks +cond-mat/0611408 Statistical Mechanics +hep-th/0605033 Theory +math-ph/0510068 +math/0508138 Geometric Topology +math/0509117 Dynamical Systems +math/0512623 Quantum Algebra +math/0605278 Algebraic Geometry +math/0606505 Differential Geometry +nlin/0510055 Exactly Solvable and Integrable Systems +nlin/0511007 Exactly Solvable and Integrable Systems +physics/0505156 Optics +physics/0509136 Classical Physics +q-bio/0609040 Cell Behavior +q-bio/0703001 Quantitative Methods +quant-ph/0312024 +quant-ph/0511212 +0704.1166 Pattern Formation and Solitons +0705.1706 Geometric Topology +0706.0140 Materials Science +0707.0217 Chaotic Dynamics +0708.0253 +0708.1112 +0708.2275 +0708.2804 Information Theory +0708.4180 General Physics +0709.0208 Fluid Dynamics +0709.1085 Statistical Mechanics +0709.3243 Strongly Correlated Electrons +0710.2960 +0710.5099 Other Condensed Matter +0711.0281 +0711.2029 Chaotic Dynamics +0711.3413 Mesoscale and Nanoscale Physics +0711.5029 +0712.0382 Superconductivity +0712.0640 Soft Condensed Matter +0712.1420 +0801.0232 Artificial Intelligence +0801.0382 General Physics +0801.3948 Accelerator Physics +0801.4077 Materials Science +0802.2880 Data Analysis, Statistics and Probability +0802.4198 Computation and Language +0802.4419 Biological Physics +0803.0722 Algebraic Geometry +0803.0992 History and Philosophy of Physics +0803.1271 Phenomenology +0803.2114 +0803.2240 +0803.2241 +0803.2245 +0803.2258 History and Philosophy of Physics +0803.2275 Superconductivity +0803.2282 Operator Algebras +0803.2284 Operator Algebras +0803.2286 Algebraic Geometry +0803.2299 Pattern Formation and Solitons +0803.2301 Differential Geometry +0803.2311 Combinatorics +0803.2319 Symbolic Computation +0803.2322 Analysis of PDEs +0803.2329 Classical Analysis and ODEs +0803.2333 Theory +0803.2337 Information Theory +0803.2342 +0803.2344 Data Analysis, Statistics and Probability +0803.2345 Data Analysis, Statistics and Probability +0803.2346 Classical Analysis and ODEs +0803.2351 Number Theory +0803.2358 Mesoscale and Nanoscale Physics +0803.2361 +0803.2363 Computer Vision and Pattern Recognition +0803.2366 Number Theory +0803.2374 Operator Algebras +0803.2379 Geometric Topology +0803.2381 Number Theory +0803.2386 Mathematical Software +0803.2390 Mesoscale and Nanoscale Physics +0803.2391 Differential Geometry +0803.2395 Quantitative Methods +0803.2403 Mesoscale and Nanoscale Physics +0803.2406 Combinatorics +0803.2415 Materials Science +0803.2424 Dynamical Systems +0803.2429 Category Theory +0803.2437 +0803.2445 General Physics +0803.2453 Physics and Society +0803.2456 +0803.2459 Probability +0803.2460 Information Theory +0803.2470 Mesoscale and Nanoscale Physics +0803.2472 Operator Algebras +0803.2477 Rings and Algebras +0803.2486 Statistics Theory +0803.2487 Differential Geometry +0803.2502 Spectral Theory +0803.2503 Theory +0803.2504 Algebraic Geometry +0803.2506 Commutative Algebra +0803.2509 +cond-mat/0109291 Statistical Mechanics +cond-mat/0608718 Materials Science +cond-mat/0702645 Other Condensed Matter +cond-mat/0703237 Other Condensed Matter +cs/0512102 Computation and Language +hep-ph/0703121 Phenomenology +math-ph/0703001 +math/0105243 Differential Geometry +math/0404208 Metric Geometry +math/0409094 Group Theory +math/0409464 Numerical Analysis +math/0702854 Operator Algebras +quant-ph/0601140 +quant-ph/0611131 +quant-ph/0612186 +quant-ph/0612196 +0704.2687 Analysis of PDEs +0704.2845 Combinatorics +0704.3509 Combinatorics +0704.3642 Geometric Topology +0705.0291 Metric Geometry +0706.3471 Mesoscale and Nanoscale Physics +0707.1375 Algebraic Geometry +0708.1271 General Physics +0709.0142 +0709.2272 Functional Analysis +0709.3273 +0710.3034 Strongly Correlated Electrons +0710.3644 Strongly Correlated Electrons +0710.4436 Statistical Mechanics +0711.3247 Networking and Internet Architecture +0711.4094 Strongly Correlated Electrons +0712.0750 Mesoscale and Nanoscale Physics +0801.0759 Statistical Mechanics +0801.1973 Theory +0802.1176 Networking and Internet Architecture +0802.3013 Computational Physics +0803.0833 Phenomenology +0803.1303 +0803.1574 +0803.1636 Phenomenology +0803.1837 +0803.1838 Quantitative Methods +0803.1856 Dynamical Systems +0803.1859 General Mathematics +0803.1860 Combinatorics +0803.1862 Human-Computer Interaction +0803.1864 Superconductivity +0803.1866 Human-Computer Interaction +0803.1869 +0803.1875 Human-Computer Interaction +0803.1883 Group Theory +0803.1888 Optics +0803.1896 +0803.1899 Functional Analysis +0803.1910 +0803.1918 Plasma Physics +0803.1920 +0803.1923 Neurons and Cognition +0803.1925 Analysis of PDEs +0803.1926 Neural and Evolutionary Computing +0803.1930 Analysis of PDEs +0803.1932 Statistical Mechanics +0803.1933 +0803.1936 Materials Science +0803.1937 Analysis of PDEs +0803.1939 Analysis of PDEs +0803.1946 +0803.1948 Statistical Mechanics +0803.1959 Space Physics +0803.1960 +0803.1962 Statistical Mechanics +0803.1968 Materials Science +0803.1974 +0803.1988 Theory +0803.1992 Information Theory +0803.2011 Superconductivity +0803.2022 +0803.2025 Physics and Society +0803.2027 Software Engineering +0803.2034 Operator Algebras +math/0604303 Algebraic Geometry +math/0604319 General Topology +math/0604540 Geometric Topology +math/0605340 Probability +math/0701066 Combinatorics +0704.0063 Phenomenology +0704.1194 Disordered Systems and Neural Networks +0704.1794 Mesoscale and Nanoscale Physics +0705.2298 Logic +0705.2833 Exactly Solvable and Integrable Systems +0706.0249 Combinatorics +0706.3523 Logic in Computer Science +0706.4132 Theory +0707.2426 General Physics +0707.3603 Representation Theory +0707.4215 Group Theory +0708.0168 Operator Algebras +0708.0387 +0708.0531 Spectral Theory +0708.3223 Combinatorics +0708.3315 Disordered Systems and Neural Networks +0708.4342 Exactly Solvable and Integrable Systems +0709.1117 Materials Science +0709.2293 +0710.1012 Statistical Mechanics +0710.5403 Statistical Mechanics +0711.0581 Number Theory +0711.4057 +0711.4241 +0712.0109 Software Engineering +0712.0256 +0712.2559 Probability +0801.0223 Theory +0802.3134 Materials Science +0803.0539 Geometric Topology +0803.1290 +0803.1388 +0803.1455 Combinatorics +0803.1492 Probability +0803.1493 Strongly Correlated Electrons +0803.1499 +0803.1500 Digital Libraries +0803.1503 Statistical Mechanics +0803.1508 Number Theory +0803.1510 Populations and Evolution +0803.1511 Information Theory +0803.1515 Dynamical Systems +0803.1519 Geometric Topology +0803.1520 Distributed, Parallel, and Cluster Computing +0803.1521 Distributed, Parallel, and Cluster Computing +0803.1522 Dynamical Systems +0803.1524 +0803.1525 Dynamical Systems +0803.1527 Phenomenology +0803.1528 +0803.1531 Materials Science +0803.1535 Commutative Algebra +0803.1536 Rings and Algebras +0803.1546 Combinatorics +0803.1554 +0803.1557 Analysis of PDEs +0803.1561 +0803.1564 Soft Condensed Matter +0803.1571 Phenomenology +0803.1595 Combinatorics +0803.1602 Statistical Mechanics +0803.1606 Number Theory +0803.1612 Group Theory +0803.1614 K-Theory and Homology +0803.1625 General Physics +0803.1628 Machine Learning +0803.1632 Mesoscale and Nanoscale Physics +0803.1633 General Physics +0803.1635 K-Theory and Homology +0803.1641 K-Theory and Homology +0803.1642 Geometric Topology +0803.1645 Commutative Algebra +0803.1647 Statistical Mechanics +0803.1653 +0803.1658 +cond-mat/0501363 Statistical Mechanics +cond-mat/0503215 Statistical Mechanics +cond-mat/0605448 Disordered Systems and Neural Networks +cond-mat/0611069 Soft Condensed Matter +cond-mat/0702528 Materials Science +hep-th/0612172 Theory +math-ph/0702076 +math/0605434 Differential Geometry +math/0611516 Symplectic Geometry +nlin/0603028 Exactly Solvable and Integrable Systems +q-bio/0611092 Quantitative Methods +0704.0888 Strongly Correlated Electrons +0705.4208 Commutative Algebra +0707.1045 Materials Science +0708.0962 Number Theory +0708.3584 Algebraic Topology +0709.0625 Quantitative Methods +0709.1677 Algebraic Geometry +0709.4111 Superconductivity +0710.0626 Strongly Correlated Electrons +0710.2364 +0711.3470 Optics +0711.4107 +0712.2034 Biological Physics +0712.2726 Probability +0712.2735 +0712.3996 Combinatorics +0801.2636 Analysis of PDEs +0802.0619 Number Theory +0802.1076 Cryptography and Security +0802.1079 Classical Analysis and ODEs +0802.1081 Complex Variables +0802.1082 Group Theory +0802.1089 +0802.1091 Chemical Physics +0802.1092 Computational Physics +0802.1095 History and Philosophy of Physics +0802.1096 Rings and Algebras +0802.1098 Cellular Automata and Lattice Gases +0802.1100 Functional Analysis +0802.1101 General Mathematics +0802.1112 Commutative Algebra +0802.1113 Cryptography and Security +0802.1115 +0802.1116 +0802.1124 +0802.1141 +0802.1147 Number Theory +0802.1156 +0802.1161 Fluid Dynamics +0802.1163 +0802.1171 +0802.1181 +0802.1186 +0802.1192 Probability +0802.1194 Atomic Physics +0802.1197 Atomic Physics +0802.1198 Rings and Algebras +0802.1202 +0802.1205 Number Theory +0802.1206 Other Condensed Matter +0802.1207 +astro-ph/0608252 +astro-ph/0612319 +cond-mat/0504790 Statistical Mechanics +cond-mat/0507412 Mesoscale and Nanoscale Physics +cond-mat/0508664 Strongly Correlated Electrons +cond-mat/0510027 Statistical Mechanics +cond-mat/0511586 Strongly Correlated Electrons +cond-mat/0607402 Strongly Correlated Electrons +cond-mat/0609496 Strongly Correlated Electrons +cond-mat/0612061 Statistical Mechanics +gr-qc/9806003 +math-ph/0504085 +math-ph/0510014 +math/0312397 Combinatorics +math/0401083 Quantum Algebra +math/0402125 Combinatorics +math/0402254 Combinatorics +math/0402291 Combinatorics +math/0402344 Combinatorics +math/0403017 Combinatorics +math/0403054 Combinatorics +math/0403107 Combinatorics +math/0403123 Combinatorics +math/0403139 Combinatorics +math/0405577 Combinatorics +math/0405578 Combinatorics +math/0405591 Combinatorics +math/0406258 Combinatorics +math/0411002 Combinatorics +math/0412233 Combinatorics +math/0503286 Combinatorics +math/0510027 Combinatorics +math/0511111 Statistics Theory +math/0512032 Quantum Algebra +math/0601091 Statistics Theory +math/0601098 Statistics Theory +math/0702592 Group Theory +math/0703306 Dynamical Systems +math/0703669 Geometric Topology +physics/0703168 Atomic Physics +0710.0201 Quantum Algebra +0710.3861 Information Theory +0805.4286 +0806.4141 Materials Science +0806.4147 Materials Science +0807.3395 Analysis of PDEs +0807.4696 Representation Theory +0808.1944 Phenomenology +0810.5492 Differential Geometry +astro-ph/0505493 +0704.2010 Artificial Intelligence +0704.3111 Strongly Correlated Electrons +0706.1892 +0708.0958 Physics and Society +0709.3950 Theory +0709.4403 Algebraic Geometry +0710.1162 Theory +0710.3675 +0711.1452 Disordered Systems and Neural Networks +0711.2400 Probability +0712.0146 Combinatorics +0712.1616 +0712.3435 +0801.3449 Statistical Mechanics +0801.4869 Phenomenology +0802.3817 Strongly Correlated Electrons +0803.0742 Statistical Mechanics +0806.0419 Other Condensed Matter +0806.0992 +0807.1685 Probability +0807.3475 Mesoscale and Nanoscale Physics +0808.0442 Mesoscale and Nanoscale Physics +0808.2067 Mesoscale and Nanoscale Physics +0808.2632 Other Condensed Matter +0809.1422 Other Condensed Matter +0810.0344 +0810.2905 Phenomenology +0810.4290 +0811.0258 Chaotic Dynamics +0811.2682 Statistical Mechanics +0812.1297 +0812.1469 +0812.1794 +0812.1807 Computational Physics +0812.1816 Group Theory +0812.1821 Fluid Dynamics +0812.1823 Differential Geometry +0812.1824 Optics +0812.1829 Algebraic Topology +0812.1831 +0812.1832 +0812.1833 +0812.1837 +0812.1838 Other Condensed Matter +0812.1839 Combinatorics +0812.1841 Phenomenology +0812.1843 Artificial Intelligence +0812.1844 +0812.1853 +0812.1861 Optics +0812.1862 Strongly Correlated Electrons +0812.1864 Populations and Evolution +0812.1869 Learning +0812.1870 +0812.1874 Chemical Physics +0812.1876 Plasma Physics +0812.1884 Classical Physics +0812.1885 Classical Physics +0812.1889 +0812.1894 Populations and Evolution +0812.1898 Geometric Topology +0812.1901 +0812.1904 Algebraic Geometry +0812.1908 Discrete Mathematics +0812.1915 Computational Complexity +0812.1917 Combinatorics +0812.1933 Classical Analysis and ODEs +0812.1949 Machine Learning +0812.1950 General Mathematics +0812.1952 +0812.1954 Experiment +0812.1955 Statistical Mechanics +0812.1957 Geometric Topology +0812.1958 Functional Analysis +0812.1963 Symplectic Geometry +0812.1967 Logic in Computer Science +0812.1968 Dynamical Systems +0812.1969 Number Theory +0812.1979 Rings and Algebras +0812.1980 Theory +0812.1986 Software Engineering +0812.1987 Strongly Correlated Electrons +0812.1988 Strongly Correlated Electrons +0812.1992 +0812.1993 Differential Geometry +0812.2000 Statistical Finance +0812.2002 +0812.2009 Algebraic Topology +0812.2011 Data Structures and Algorithms +0812.2014 Data Structures and Algorithms +0812.2017 Dynamical Systems +cond-mat/0103515 +cond-mat/0504706 Materials Science +cond-mat/0606220 Disordered Systems and Neural Networks +cond-mat/0606295 Disordered Systems and Neural Networks +gr-qc/0511035 +math/0506493 Operator Algebras +math/0610626 Analysis of PDEs +math/0702719 Algebraic Topology +physics/0503138 Physics and Society +physics/0701083 Classical Physics +0705.0915 Computational Complexity +0705.2182 Number Theory +0706.0868 +0707.1102 Number Theory +0709.2409 +0711.0534 Mesoscale and Nanoscale Physics +0711.0550 Algebraic Geometry +0711.1719 Materials Science +0711.1827 Computational Complexity +0711.4286 +0712.2404 +0712.3048 +0712.3647 Analysis of PDEs +0801.3380 Populations and Evolution +0801.4237 Analysis of PDEs +0802.0595 Superconductivity +0802.1009 Applications +0802.1421 Differential Geometry +0803.3871 General Physics +0804.3343 Algebraic Geometry +0804.3997 Materials Science +0804.4039 Distributed, Parallel, and Cluster Computing +0805.0839 Phenomenology +0805.0963 Computer Science and Game Theory +0805.2057 Phenomenology +0805.3609 Strongly Correlated Electrons +0806.0044 Number Theory +0806.0513 +0806.1050 Differential Geometry +0806.1058 Superconductivity +0806.1062 Information Theory +0806.1066 Other Condensed Matter +0806.1067 +0806.1070 Disordered Systems and Neural Networks +0806.1071 Databases +0806.1076 +0806.1082 Algebraic Topology +0806.1083 Numerical Analysis +0806.1089 Networking and Internet Architecture +0806.1092 Optimization and Control +0806.1093 Networking and Internet Architecture +0806.1100 Software Engineering +0806.1102 +0806.1105 Accelerator Physics +0806.1109 Statistical Mechanics +0806.1118 Group Theory +0806.1123 Group Theory +0806.1124 Group Theory +0806.1125 Group Theory +0806.1126 Materials Science +0806.1130 General Physics +0806.1139 Logic in Computer Science +0806.1140 +0806.1142 Differential Geometry +0806.1145 Optics +0806.1168 Functional Analysis +0806.1176 General Physics +0806.1189 +0806.1190 +0806.1199 Information Theory +0806.1202 Experiment +0806.1213 Algebraic Geometry +0806.1216 General Physics +0806.1217 Superconductivity +gr-qc/0602013 +math/0311067 Algebraic Topology +math/0311075 Differential Geometry +math/0503154 Group Theory +math/0511276 Number Theory +math/0511513 Combinatorics +math/0606665 Differential Geometry +math/0611364 Operator Algebras +q-bio/0609003 Genomics +0707.0251 Representation Theory +0707.0300 Algebraic Topology +0807.0654 Complex Variables +0810.2720 Materials Science +0810.4311 General Physics +0811.0067 Differential Geometry +0811.0150 Theory +cond-mat/0607522 Strongly Correlated Electrons +gr-qc/0405046 +math/0609473 Algebraic Geometry +0706.3977 Soft Condensed Matter +0707.2307 Statistical Mechanics +0709.1066 Soft Condensed Matter +0710.1624 +0710.3207 Experiment +0710.3422 Physics and Society +0711.2959 Group Theory +0711.3371 Differential Geometry +0712.0595 +0712.1701 +0801.2851 Soft Condensed Matter +0801.3700 Phenomenology +0801.4128 Statistical Mechanics +0801.4497 +0802.0199 Strongly Correlated Electrons +0802.0636 Optics +0803.2289 Theory +0803.2730 Mesoscale and Nanoscale Physics +0803.3596 +0804.0496 Quantum Algebra +0804.2171 Materials Science +0805.0182 Materials Science +0806.1584 Representation Theory +0806.2352 Superconductivity +0807.1202 Disordered Systems and Neural Networks +0807.1268 History and Philosophy of Physics +0807.1403 Algebraic Geometry +0807.1540 Commutative Algebra +0807.1544 Theory +0807.1549 Combinatorics +0807.1552 Rings and Algebras +0807.1557 Combinatorics +0807.1558 Tissues and Organs +0807.1559 Phenomenology +0807.1560 Information Retrieval +0807.1562 Chaotic Dynamics +0807.1583 Rings and Algebras +0807.1594 Complex Variables +0807.1596 Dynamical Systems +0807.1598 Dynamical Systems +0807.1600 Dynamical Systems +0807.1620 Combinatorics +0807.1623 Optics +0807.1628 Classical Analysis and ODEs +0807.1629 Pattern Formation and Solitons +0807.1632 Combinatorics +0807.1633 Analysis of PDEs +0807.1638 General Physics +0807.1644 Complex Variables +0807.1655 Populations and Evolution +0807.1656 Number Theory +0807.1659 Functional Analysis +0807.1662 Differential Geometry +0807.1665 +0807.1667 Graphics +0807.1670 Experiment +0807.1672 +0807.1675 Commutative Algebra +0807.1676 Probability +0807.1677 Geometric Topology +0807.1679 Combinatorics +0807.1688 Superconductivity +0807.1697 Analysis of PDEs +0807.1705 Data Analysis, Statistics and Probability +0807.1710 +0807.1715 Complex Variables +0807.1719 Number Theory +0807.1720 Distributed, Parallel, and Cluster Computing +math-ph/0502011 +math-ph/0510026 +math/0408086 Complex Variables +math/0512212 K-Theory and Homology +math/0702539 Algebraic Geometry +physics/0502012 Classical Physics +physics/0610003 General Physics +quant-ph/0609186 +0704.3916 Classical Analysis and ODEs +0706.0622 +0706.1109 +0706.1815 +0707.0920 Data Analysis, Statistics and Probability +0707.0980 Number Theory +0707.2558 Materials Science +0707.2781 Combinatorics +0708.0879 Differential Geometry +0708.1363 Representation Theory +0708.4211 Differential Geometry +0709.2287 Algebraic Topology +0709.2497 Materials Science +0710.0604 +0710.0751 +0710.4033 Algebraic Topology +0711.1464 Mesoscale and Nanoscale Physics +0711.3860 Theory +0712.1491 +0712.1501 +0801.0245 General Physics +0801.0316 Materials Science +0801.1657 +0801.1835 +0801.1853 Materials Science +0801.1862 Group Theory +0801.1864 Computation +0801.1867 Spectral Theory +0801.1868 Optics +0801.1870 Atmospheric and Oceanic Physics +0801.1871 Mesoscale and Nanoscale Physics +0801.1872 Spectral Theory +0801.1879 Superconductivity +0801.1883 Neural and Evolutionary Computing +0801.1885 Neurons and Cognition +0801.1886 Chaotic Dynamics +0801.1888 +0801.1889 Strongly Correlated Electrons +0801.1893 +0801.1900 +0801.1904 General Topology +0801.1907 Operator Algebras +0801.1910 History and Overview +0801.1911 Classical Physics +0801.1919 Group Theory +0801.1920 +0801.1925 Human-Computer Interaction +0801.1928 Phenomenology +0801.1931 Neurons and Cognition +0801.1933 Theory +0801.1935 General Physics +0801.1940 +0801.1943 Geometric Topology +0801.1949 Chaotic Dynamics +0801.1950 Spectral Theory +0801.1952 Mesoscale and Nanoscale Physics +0801.1953 +0801.1961 Materials Science +0801.1966 Statistics Theory +0801.1971 +0801.1982 Physics and Society +0801.1988 Learning +0801.1992 Operator Algebras +0801.1999 Analysis of PDEs +0801.2001 Analysis of PDEs +0801.2004 +0801.2009 General Topology +0801.2012 Dynamical Systems +0801.2018 Phenomenology +0801.2020 +0801.2021 Number Theory +0801.2022 +0801.2024 General Physics +0801.2033 Quantitative Methods +0801.2034 Information Theory +0801.2035 Optics +0801.2037 +0801.2038 Other Quantitative Biology +0801.2039 +0801.2042 Physics Education +0801.2047 Fluid Dynamics +0801.2048 Phenomenology +0801.2055 Quantum Algebra +0801.2058 Rings and Algebras +0801.2066 +0801.2070 Statistics Theory +0801.2072 Phenomenology +0801.2075 Differential Geometry +0801.2080 +0801.2081 Optics +0801.2083 Probability +0801.2088 Dynamical Systems +0801.2092 Discrete Mathematics +0801.2093 Phenomenology +0801.2095 Optimization and Control +0801.2096 Fluid Dynamics +0801.2097 Logic +0801.2103 Number Theory +0801.2105 Geophysics +0801.2106 Probability +0801.2109 Algebraic Geometry +0801.2111 Probability +0801.2115 Probability +0801.2122 +0801.2125 Probability +0801.2126 General Physics +0801.2129 Analysis of PDEs +0801.2132 Geometric Topology +0801.2145 Classical Analysis and ODEs +cond-mat/0311131 Materials Science +cond-mat/0604526 Mesoscale and Nanoscale Physics +cs/0610036 Cryptography and Security +math/0104025 General Mathematics +math/0208231 Group Theory +math/0401193 Group Theory +math/0401201 Algebraic Geometry +math/0403509 Rings and Algebras +math/0406278 Algebraic Topology +math/0412390 Group Theory +math/0507278 Group Theory +math/0508474 Metric Geometry +math/0510298 Group Theory +math/0604386 Quantum Algebra +math/0609001 Combinatorics +math/0701030 Rings and Algebras +math/0703690 Probability +q-bio/0703040 Populations and Evolution +quant-ph/0602129 +0704.0033 Optics +0704.0035 Optics +0704.1134 Optics +0704.1287 +0708.0103 Mesoscale and Nanoscale Physics +0709.1229 Dynamical Systems +0710.1387 Commutative Algebra +0710.3289 Mesoscale and Nanoscale Physics +0711.3353 Combinatorics +0711.3390 +0711.4430 Mesoscale and Nanoscale Physics +0801.3448 Materials Science +0801.3484 Soft Condensed Matter +0801.3800 +0802.0944 +0802.1932 Strongly Correlated Electrons +0802.3272 Soft Condensed Matter +0803.1226 Mesoscale and Nanoscale Physics +0803.2002 Statistical Mechanics +0803.4149 Statistical Mechanics +0804.0002 Superconductivity +0804.0337 Information Theory +0804.0692 +0804.0736 Complex Variables +0804.1148 Mesoscale and Nanoscale Physics +0805.3295 Algebraic Topology +0805.4810 Statistical Mechanics +0806.3623 Strongly Correlated Electrons +0806.3949 +0806.4295 +0807.0864 Lattice +0807.1919 Functional Analysis +0807.2332 Number Theory +0807.2673 Phenomenology +0807.4067 Analysis of PDEs +0807.4069 Analysis of PDEs +0807.4184 Materials Science +0807.4185 Strongly Correlated Electrons +0807.4187 Experiment +0807.4213 Analysis of PDEs +0807.4222 Strongly Correlated Electrons +0807.4224 Software Engineering +0807.4231 Methodology +0807.4234 Discrete Mathematics +0807.4235 Geometric Topology +0807.4236 Methodology +0807.4237 +0807.4242 Operator Algebras +0807.4243 Algebraic Geometry +0807.4256 Category Theory +0807.4270 Operator Algebras +0807.4272 Cell Behavior +0807.4279 Quantitative Methods +0807.4280 Materials Science +0807.4281 Materials Science +0807.4285 +0807.4290 Superconductivity +0807.4298 Geophysics +0807.4305 Experiment +0807.4307 +0807.4309 Cryptography and Security +0807.4316 Operator Algebras +0807.4320 Logic +0807.4321 Logic +0807.4322 Statistical Mechanics +0807.4323 +0807.4324 Logic +0807.4326 Combinatorics +0807.4327 Logic +0807.4329 Phenomenology +0807.4330 Complex Variables +0807.4336 Probability +0807.4337 +0807.4343 Group Theory +0807.4345 Robotics +0807.4348 Analysis of PDEs +0807.4350 Group Theory +0807.4351 Superconductivity +0807.4359 Phenomenology +0807.4360 Rings and Algebras +0807.4368 Data Structures and Algorithms +0807.4378 Physics and Society +0807.4379 Phenomenology +0807.4381 Analysis of PDEs +0807.4385 Strongly Correlated Electrons +0807.4390 Biological Physics +0807.4391 +0807.4395 Statistical Mechanics +0807.4397 Atomic Physics +0807.4401 Differential Geometry +0807.4403 Algebraic Geometry +0807.4409 Chaotic Dynamics +0807.4413 +0807.4416 Optimization and Control +0807.4425 Chaotic Dynamics +0807.4430 Dynamical Systems +0807.4431 Theory +0807.4435 Atomic and Molecular Clusters +0807.4439 Differential Geometry +0807.4446 Combinatorics +0807.4448 +0807.4450 Combinatorics +0807.4463 Combinatorics +0807.4464 Phenomenology +0807.4466 +0807.4475 Data Analysis, Statistics and Probability +0807.4476 +0807.4478 Computer Vision and Pattern Recognition +0807.4491 Experiment +0807.4492 +0807.4501 Complex Variables +0807.4503 Complex Variables +0807.4506 +0807.4518 Popular Physics +0807.4519 Classical Physics +0807.4521 Algebraic Topology +cond-mat/0702400 Mesoscale and Nanoscale Physics +cond-mat/0703361 Mesoscale and Nanoscale Physics +cs/0604072 Computational Complexity +nlin/0603045 Adaptation and Self-Organizing Systems +physics/0702108 Physics and Society +0705.4133 +0707.2807 +0710.1773 +0712.0723 Algebraic Geometry +0712.2773 Databases +0801.2668 Probability +0801.3374 Chaotic Dynamics +0802.2200 Soft Condensed Matter +0803.2074 Algebraic Geometry +0803.3792 Disordered Systems and Neural Networks +0804.0931 Statistical Mechanics +0804.2302 Number Theory +0804.4121 Statistical Mechanics +0805.1682 +0805.2911 +0805.3922 Superconductivity +0807.3887 +0808.2511 Mesoscale and Nanoscale Physics +0808.3321 Other Condensed Matter +0809.1036 +0809.3644 Functional Analysis +0810.1810 Classical Physics +0810.4868 Fluid Dynamics +0810.4902 General Mathematics +0810.5383 Statistical Mechanics +0811.0040 Soft Condensed Matter +0811.0153 +0811.0229 Materials Science +0811.0283 +0811.0390 Algebraic Geometry +0811.0402 Algebraic Geometry +0811.0412 Mesoscale and Nanoscale Physics +0811.0413 Information Theory +0811.0416 +0811.0417 Information Theory +0811.0418 +0811.0419 Information Theory +0811.0422 +0811.0427 Combinatorics +0811.0431 Information Theory +0811.0432 Materials Science +0811.0433 Information Theory +0811.0435 +0811.0441 +0811.0443 +0811.0451 Chemical Physics +0811.0453 Computation and Language +0811.0454 Combinatorics +0811.0455 +0811.0465 Analysis of PDEs +0811.0470 Phenomenology +0811.0472 +0811.0474 Numerical Analysis +0811.0478 Algebraic Geometry +0811.0481 Phenomenology +0811.0484 Machine Learning +0811.0498 Strongly Correlated Electrons +0811.0500 Materials Science +0811.0504 Probability +0811.0506 Strongly Correlated Electrons +0811.0507 Probability +0811.0514 Quantitative Methods +0811.0522 General Physics +0811.0525 Probability +0811.0528 Computation +0811.0541 Neurons and Cognition +0811.0543 Information Theory +0811.0547 Differential Geometry +0811.0549 Analysis of PDEs +0811.0554 +0811.0556 +0811.0557 Number Theory +0811.0571 +0811.0573 Digital Libraries +0811.0578 +0811.0579 Computation and Language +0811.0580 Analysis of PDEs +0811.0582 Multimedia +0811.0587 Materials Science +0811.0594 +0811.0598 Plasma Physics +0811.0602 Artificial Intelligence +0811.0603 Information Retrieval +math-ph/0604024 +math/0505647 Classical Analysis and ODEs +math/0605485 Number Theory +math/0701516 Classical Analysis and ODEs +quant-ph/0409009 +quant-ph/0609080 +quant-ph/0703191 +0707.4475 Mesoscale and Nanoscale Physics +0708.1975 Materials Science +0710.2610 +0710.5567 Algebraic Topology +0712.2887 Optimization and Control +0803.2223 Probability +cond-mat/0703310 Mesoscale and Nanoscale Physics +math/0403026 Geometric Topology +0705.1434 Algebraic Geometry +0709.2496 Classical Analysis and ODEs +0712.3617 Computational Engineering, Finance, and Science +0801.4932 Analysis of PDEs +0803.1278 Functional Analysis +0807.2287 Classical Analysis and ODEs +0807.3223 Robotics +0807.3225 Robotics +0807.5085 +0808.4028 Complex Variables +0809.2173 Experiment +0809.2979 Combinatorics +0704.1607 +0708.2874 Experiment +0709.0203 Mesoscale and Nanoscale Physics +0709.3700 Mesoscale and Nanoscale Physics +0712.1955 Mesoscale and Nanoscale Physics +0712.4241 +0801.3277 Symplectic Geometry +0801.3970 Mesoscale and Nanoscale Physics +0802.3770 General Mathematics +0803.0208 Mesoscale and Nanoscale Physics +0803.4496 Functional Analysis +0804.0603 Other Condensed Matter +0804.0808 Number Theory +0804.1464 Theory +0805.1114 Materials Science +0805.1924 +0806.0500 Other Condensed Matter +0806.0804 +0806.2729 Dynamical Systems +0807.0858 Strongly Correlated Electrons +0807.1734 Databases +0807.4389 Strongly Correlated Electrons +0807.5122 Differential Geometry +0808.0067 Strongly Correlated Electrons +0808.1139 General Physics +0808.1853 Materials Science +0808.2874 +0808.3050 Chaotic Dynamics +0808.4147 Other Condensed Matter +0809.1538 +0809.2672 Instrumentation and Detectors +0809.3742 Algebraic Geometry +0809.3940 +0809.4165 Experiment +0809.4290 Experiment +0809.4946 Experiment +0810.0081 Theory +0810.0712 Statistical Mechanics +0810.0723 Phenomenology +0810.0727 Phenomenology +0810.0732 Combinatorics +0810.0733 Logic +0810.0734 Logic +0810.0736 Functional Analysis +0810.0737 +0810.0747 Information Theory +0810.0748 Optimization and Control +0810.0753 Programming Languages +0810.0754 Disordered Systems and Neural Networks +0810.0763 Information Theory +0810.0769 Group Theory +0810.0770 Atomic Physics +0810.0771 Theory +0810.0776 Optimization and Control +0810.0777 Number Theory +0810.0778 Geometric Topology +0810.0781 +0810.0782 Complex Variables +0810.0785 Information Theory +0810.0787 Representation Theory +0810.0788 Atomic Physics +0810.0789 +0810.0791 Representation Theory +0810.0796 Experiment +0810.0800 Numerical Analysis +0810.0807 Experiment +0810.0809 Experiment +0810.0811 Dynamical Systems +0810.0814 Statistical Mechanics +0810.0815 Statistical Mechanics +0810.0817 +0810.0823 +0810.0830 Robotics +0810.0831 Functional Analysis +0810.0840 Functional Analysis +0810.0841 Populations and Evolution +0810.0842 Combinatorics +0810.0846 Combinatorics +0810.0849 Representation Theory +0810.0850 Materials Science +0810.0852 History and Overview +0810.0855 Representation Theory +0810.0863 Materials Science +0810.0864 +0810.0868 Populations and Evolution +0810.0871 Phenomenology +0810.0877 Numerical Analysis +0810.0879 Applications +0810.0882 Information Theory +0810.0888 Functional Analysis +0810.0891 Chaotic Dynamics +0810.0895 Classical Physics +0810.0905 General Physics +0810.0907 Experiment +0810.0912 +0810.0914 Statistics Theory +0810.0915 Algebraic Geometry +0810.0916 +0810.0927 +0810.0928 +0810.0931 +0810.0933 Combinatorics +0810.0943 +0810.0944 Statistics Theory +0810.0951 +0810.0952 Representation Theory +0810.0954 +0810.0955 Atomic Physics +0810.0959 +0810.0961 Superconductivity +0810.0962 Algebraic Topology +0810.0966 Combinatorics +0810.0970 Mesoscale and Nanoscale Physics +0810.0972 Functional Analysis +0810.0974 +0810.0982 General Physics +0810.0984 Geometric Topology +0810.0993 +0810.0995 Materials Science +0810.1000 Experiment +0810.1004 Statistics Theory +0810.1009 Theory +0810.1018 Computational Complexity +0810.1020 +0810.1022 Exactly Solvable and Integrable Systems +0810.1028 Commutative Algebra +0810.1034 +0810.1037 Phenomenology +0810.1039 Populations and Evolution +0810.1041 Experiment +0810.1042 Analysis of PDEs +cond-mat/0403297 Mesoscale and Nanoscale Physics +cond-mat/0601520 Mesoscale and Nanoscale Physics +cs/0703007 Logic in Computer Science +hep-th/0608062 Theory +math/0605294 Combinatorics +math/0608730 Geometric Topology +0704.3332 Group Theory +0706.2438 Algebraic Geometry +0707.3640 Algebraic Topology +0708.2933 Theory +0709.0849 Rings and Algebras +0709.4226 Functional Analysis +0711.3766 Statistical Mechanics +0712.0569 Group Theory +0801.1878 Strongly Correlated Electrons +0803.1343 Mesoscale and Nanoscale Physics +0804.0176 Theory +0804.2040 Mesoscale and Nanoscale Physics +0805.1252 Combinatorics +0806.1809 Number Theory +0808.2261 +0811.4596 +math/0604404 Rings and Algebras +math/0605537 Algebraic Geometry +math/0702052 Combinatorics +math/0703672 Algebraic Geometry +0704.1372 Analysis of PDEs +0705.3836 Strongly Correlated Electrons +0708.1695 Logic +0709.1495 Soft Condensed Matter +0709.1941 Computational Geometry +0710.4867 Data Analysis, Statistics and Probability +0712.0431 Other Condensed Matter +0801.0933 Group Theory +0801.1090 Other Condensed Matter +0801.2788 Mesoscale and Nanoscale Physics +0802.0516 +0802.0855 +0802.4406 +0803.0079 +0803.1351 Statistical Mechanics +0803.2997 Other Condensed Matter +0803.3128 Other Condensed Matter +0803.4078 Other Condensed Matter +0803.4137 Group Theory +0804.3444 Mesoscale and Nanoscale Physics +0805.1666 Soft Condensed Matter +0805.3784 Soft Condensed Matter +0806.1831 Differential Geometry +0807.0782 Statistics Theory +0807.2135 Phenomenology +0807.2267 Rings and Algebras +0807.2435 Phenomenology +0807.3038 Quantitative Methods +0807.3045 Differential Geometry +0807.3046 Cellular Automata and Lattice Gases +0807.3047 Symplectic Geometry +0807.3050 Information Theory +0807.3052 Quantum Algebra +0807.3057 Theory +0807.3064 Populations and Evolution +0807.3078 +0807.3086 Statistical Mechanics +0807.3088 Commutative Algebra +0807.3091 Mesoscale and Nanoscale Physics +0807.3092 Materials Science +0807.3093 Representation Theory +0807.3094 Information Theory +0807.3095 Representation Theory +0807.3099 Theory +0807.3105 Representation Theory +0807.3106 General Mathematics +0807.3107 Mesoscale and Nanoscale Physics +0807.3109 Complex Variables +0807.3111 +0807.3117 General Mathematics +0807.3122 Strongly Correlated Electrons +0807.3129 Other Condensed Matter +0807.3148 Number Theory +0807.3151 Computation +0807.3161 History and Overview +0807.3168 Human-Computer Interaction +0807.3178 Representation Theory +0807.3180 K-Theory and Homology +0807.3183 Human-Computer Interaction +0807.3184 Human-Computer Interaction +0807.3186 Human-Computer Interaction +0807.3187 Software Engineering +0807.3198 Information Theory +0807.3201 Statistical Mechanics +0807.3202 Combinatorics +0807.3205 Classical Physics +0807.3210 Metric Geometry +0807.3215 Materials Science +0807.3222 Information Theory +0807.3227 Mesoscale and Nanoscale Physics +0807.3230 Materials Science +0807.3232 Algebraic Geometry +0807.3233 Combinatorics +0807.3235 Differential Geometry +0807.3236 Soft Condensed Matter +0807.3247 Biological Physics +0807.3253 General Physics +0807.3257 Algebraic Geometry +0807.3259 Superconductivity +0807.3260 Dynamical Systems +0807.3261 Strongly Correlated Electrons +0807.3262 Materials Science +0807.3267 Differential Geometry +0807.3268 Probability +0807.3273 Complex Variables +0807.3277 Cryptography and Security +0807.3278 Dynamical Systems +0807.3285 Algebraic Geometry +0807.3286 +0807.3287 Molecular Networks +0807.3289 Algebraic Topology +0807.3295 Commutative Algebra +0807.3300 Biomolecules +0807.3303 Other Condensed Matter +0807.3308 Probability +0807.3310 Classical Analysis and ODEs +0807.3311 Phenomenology +0807.3318 Materials Science +0807.3321 Number Theory +0807.3322 Combinatorics +0807.3326 Networking and Internet Architecture +0807.3327 Functional Analysis +astro-ph/0303248 +astro-ph/0305364 +astro-ph/0309569 +cond-mat/0505025 Materials Science +cond-mat/0605232 Mesoscale and Nanoscale Physics +cond-mat/0611372 Mesoscale and Nanoscale Physics +cond-mat/0701416 Mesoscale and Nanoscale Physics +cs/0412067 Information Theory +cs/0606087 Discrete Mathematics +gr-qc/0212068 +math/0409016 Representation Theory +math/0702251 Differential Geometry +math/0703487 Combinatorics +quant-ph/0609007 +0710.3951 Soft Condensed Matter +0711.0493 Probability +0712.2521 Theory +0802.2419 +0803.1879 Populations and Evolution +0803.3730 Algebraic Geometry +0804.0442 Superconductivity +0807.4594 +0807.4680 Artificial Intelligence +0808.2362 Phenomenology +0809.1906 Data Structures and Algorithms +0809.2372 Experiment +0810.0380 Experiment +0810.0839 Statistical Mechanics +0810.1500 Group Theory +cond-mat/0408613 Superconductivity +math/0512532 Probability +math/0611245 Differential Geometry +0704.1627 Geophysics +0705.2740 Experiment +0706.1260 Strongly Correlated Electrons +0706.1431 +0707.0139 Soft Condensed Matter +0707.2512 Other Condensed Matter +0707.4391 Computational Physics +0708.0138 Probability +0708.0819 Mesoscale and Nanoscale Physics +0708.3351 Phenomenology +0709.0615 Atomic Physics +0709.3799 Mesoscale and Nanoscale Physics +0709.3997 Differential Geometry +0709.4156 Materials Science +0710.1971 Materials Science +0710.2680 Statistical Mechanics +0710.5299 +0710.5814 +0711.0109 +0711.1017 +0711.4105 Statistical Mechanics +0711.4402 Soft Condensed Matter +0711.4585 Chaotic Dynamics +0712.0978 Other Condensed Matter +0712.3995 Theory +0801.1942 Number Theory +0801.2251 Phenomenology +0801.2794 K-Theory and Homology +0801.2878 Functional Analysis +0801.3134 Strongly Correlated Electrons +0801.3331 Number Theory +0801.3364 +0801.3457 +0801.3458 +0801.3468 Analysis of PDEs +0801.3473 Differential Geometry +0801.3490 Statistics Theory +0801.3499 Algebraic Geometry +0801.3504 Differential Geometry +0801.3505 Probability +0801.3507 Theory +0801.3508 +0801.3509 +0801.3511 Information Theory +0801.3521 Information Theory +0801.3534 Algebraic Geometry +0801.3537 Logic +0801.3541 Mesoscale and Nanoscale Physics +0801.3553 Materials Science +0801.3556 Functional Analysis +0801.3559 Computation +0801.3561 Differential Geometry +0801.3576 Experiment +0801.3582 Lattice +0801.3589 +0801.3592 Optimization and Control +0801.3593 Phenomenology +0801.3605 Complex Variables +0801.3610 Complex Variables +0801.3613 Mesoscale and Nanoscale Physics +0801.3615 Analysis of PDEs +0801.3619 Materials Science +0801.3620 +0801.3629 Complex Variables +0801.3636 Differential Geometry +0801.3639 Logic +0801.3644 Statistical Mechanics +0801.3652 Exactly Solvable and Integrable Systems +cond-mat/0007170 Strongly Correlated Electrons +cond-mat/0008048 Strongly Correlated Electrons +cond-mat/0504020 Statistical Mechanics +cond-mat/0512480 Strongly Correlated Electrons +cond-mat/0603314 Soft Condensed Matter +cond-mat/0606763 Mesoscale and Nanoscale Physics +math/0404394 Number Theory +math/0507309 Differential Geometry +math/0611432 Probability +math/0612224 Probability +math/0703810 Algebraic Geometry +math/0703819 Classical Analysis and ODEs +quant-ph/0612183 +0704.1076 Statistical Mechanics +0704.3224 +0704.4001 Theory +0705.0520 Algebraic Geometry +0705.1552 +0706.0291 General Physics +0706.1747 Statistical Mechanics +0706.2065 Geometric Topology +0706.2499 Algebraic Geometry +0707.2012 Analysis of PDEs +0707.2435 Other Condensed Matter +0707.3390 Learning +0707.4171 Mesoscale and Nanoscale Physics +0708.0308 General Physics +0708.1135 Mesoscale and Nanoscale Physics +0708.1483 General Physics +0709.1065 Strongly Correlated Electrons +0709.2843 Soft Condensed Matter +0709.3692 Distributed, Parallel, and Cluster Computing +0710.1854 Differential Geometry +0710.5614 Geometric Topology +0710.5869 Number Theory +0711.3768 Functional Analysis +0711.4500 +0712.2302 Distributed, Parallel, and Cluster Computing +0712.2649 +0712.3722 +0712.4040 Materials Science +0801.0719 Adaptation and Self-Organizing Systems +0801.1092 Experiment +0801.1709 Analysis of PDEs +0801.2167 +0801.2561 +0801.2914 Statistical Mechanics +0801.3174 Probability +0801.3203 Probability +0801.3330 Probability +0801.3340 Probability +0801.3353 Probability +0801.3370 Probability +0801.3852 Spectral Theory +0801.3858 Operator Algebras +0801.3859 +0801.3864 Computation and Language +0801.3865 Numerical Analysis +0801.3866 Representation Theory +0801.3869 Representation Theory +0801.3871 Computational Complexity +0801.3883 Probability +0801.3892 Strongly Correlated Electrons +0801.3897 +0801.3900 Mesoscale and Nanoscale Physics +0801.3904 Algebraic Topology +0801.3908 Information Retrieval +0801.3911 Rings and Algebras +0801.3912 Computational Complexity +0801.3913 Soft Condensed Matter +0801.3914 Chemical Physics +0801.3917 Soft Condensed Matter +0801.3918 Probability +0801.3921 Geometric Topology +0801.3922 Soft Condensed Matter +0801.3924 Cryptography and Security +0801.3926 Information Theory +0801.3930 Cryptography and Security +0801.3939 Number Theory +0801.3943 Dynamical Systems +0801.3945 Exactly Solvable and Integrable Systems +0801.3951 Dynamical Systems +0801.3953 Logic +0801.3962 Dynamical Systems +0801.3963 Neurons and Cognition +0801.3965 Other Computer Science +0801.3966 +0801.3967 Superconductivity +0801.3975 Statistical Mechanics +0801.3978 Computational Physics +0801.3979 Mesoscale and Nanoscale Physics +0801.3980 Algebraic Topology +0801.3982 Chaotic Dynamics +0801.3983 Information Theory +0801.3986 Information Theory +0801.3987 Information Theory +0801.3989 Classical Analysis and ODEs +0801.3990 Analysis of PDEs +0801.3996 General Physics +0801.4007 Algebraic Geometry +0801.4008 +0801.4013 Computational Geometry +0801.4019 Computational Geometry +0801.4024 Information Theory +cond-mat/0005502 Strongly Correlated Electrons +cond-mat/0605721 Strongly Correlated Electrons +cond-mat/0607226 Other Condensed Matter +cond-mat/0612475 Strongly Correlated Electrons +cond-mat/0612635 Strongly Correlated Electrons +cs/0702112 Information Theory +math/0603365 Algebraic Geometry +math/0609385 Probability +math/0610284 Symplectic Geometry +math/0612125 Operator Algebras +math/0702066 Differential Geometry +quant-ph/0605086 +quant-ph/0701227 +0708.0794 Mesoscale and Nanoscale Physics +0710.5633 Theory +0711.0561 Other Condensed Matter +0711.0990 Geometric Topology +0711.1801 +0801.1333 Data Analysis, Statistics and Probability +0801.2690 Number Theory +0801.4579 Other Condensed Matter +0803.2756 Materials Science +0803.3500 General Physics +0804.2517 Quantum Algebra +0804.3106 Statistical Mechanics +0805.3097 Strongly Correlated Electrons +0806.0207 Superconductivity +0806.2324 Materials Science +0806.4694 Plasma Physics +0807.0485 Geophysics +0807.3110 +0807.3828 Other Condensed Matter +0808.0615 Geophysics +0808.0931 Strongly Correlated Electrons +0808.3768 Theory +0809.0849 Probability +0809.3248 +0809.4540 Phenomenology +0810.0053 Populations and Evolution +0810.2199 Phenomenology +0810.2832 Atomic Physics +0810.5135 Superconductivity +0811.0476 Atmospheric and Oceanic Physics +0811.0519 Functional Analysis +0811.3413 Differential Geometry +0811.4038 Atomic Physics +0811.4660 Phenomenology +0812.0275 Biological Physics +0812.0333 +0812.1640 Differential Geometry +0812.1820 +0812.1907 Instrumentation and Detectors +0812.2023 +0812.2024 +0812.2026 Logic +0812.2027 Logic +0812.2028 +0812.2032 +0812.2037 Chemical Physics +0812.2039 Optics +0812.2040 Optics +0812.2042 Classical Analysis and ODEs +0812.2043 Algebraic Geometry +0812.2045 Experiment +0812.2048 General Physics +0812.2049 Databases +0812.2051 Phenomenology +0812.2054 Rings and Algebras +0812.2057 Subcellular Processes +0812.2060 +0812.2061 Superconductivity +0812.2081 Numerical Analysis +0812.2082 Probability +0812.2084 Analysis of PDEs +0812.2092 Group Theory +0812.2094 Cryptography and Security +0812.2096 Algebraic Geometry +0812.2101 +0812.2102 +0812.2112 Logic +0812.2115 Discrete Mathematics +0812.2117 Other Condensed Matter +0812.2122 Algebraic Geometry +0812.2124 Representation Theory +0812.2126 Differential Geometry +0812.2132 Algebraic Geometry +0812.2137 Computational Complexity +0812.2140 Phenomenology +0812.2141 Data Analysis, Statistics and Probability +0812.2144 +0812.2145 Analysis of PDEs +0812.2149 +0812.2152 +0812.2155 Representation Theory +0812.2156 Rings and Algebras +0812.2157 Soft Condensed Matter +0812.2164 Distributed, Parallel, and Cluster Computing +0812.2165 Analysis of PDEs +0812.2168 +0812.2169 Classical Physics +0812.2173 Phenomenology +0812.2174 Molecular Networks +0812.2176 Phenomenology +0812.2179 Combinatorics +0812.2185 +0812.2188 Combinatorics +0812.2191 Classical Analysis and ODEs +0812.2193 Combinatorics +0812.2202 Numerical Analysis +0812.2211 +0812.2215 Group Theory +0812.2220 Group Theory +0812.2222 Number Theory +0812.2224 Mesoscale and Nanoscale Physics +0812.2226 Dynamical Systems +0812.2229 Differential Geometry +cond-mat/0509040 Statistical Mechanics +cond-mat/0609187 Other Condensed Matter +cond-mat/0703433 Other Condensed Matter +math/0703437 Combinatorics +quant-ph/0702243 +0707.2910 Probability +0709.0258 Methodology +0709.1458 Algebraic Geometry +0709.2584 Algebraic Geometry +0709.2659 Materials Science +0710.0107 Functional Analysis +0710.3656 Algebraic Geometry +0711.0486 Combinatorics +0711.1823 Complex Variables +0712.3067 +0712.3629 Algebraic Geometry +0802.2092 +0802.3108 Soft Condensed Matter +0803.2308 Theory +0803.3665 Probability +0803.4452 Algebraic Geometry +0804.4003 Other Condensed Matter +0805.4146 Accelerator Physics +0806.1503 Geometric Topology +0806.2480 Representation Theory +0806.3784 Optimization and Control +0806.4173 Mesoscale and Nanoscale Physics +0807.0190 Theory +0807.0666 Analysis of PDEs +0807.1621 Lattice +0807.4538 Soft Condensed Matter +0807.4775 Superconductivity +0809.0418 +0809.0512 Statistical Mechanics +0809.0711 Superconductivity +0809.1487 Statistical Mechanics +0809.1776 Other Condensed Matter +0809.1839 Disordered Systems and Neural Networks +0809.1898 Mesoscale and Nanoscale Physics +0809.3809 Biological Physics +0810.5524 Combinatorics +0811.3321 Mesoscale and Nanoscale Physics +0811.3985 Geometric Topology +0811.4055 +0811.4687 Dynamical Systems +0812.0027 Group Theory +0812.0462 Differential Geometry +0812.0595 Other Condensed Matter +0812.0596 Theory +0812.0604 Phenomenology +0812.0613 Experiment +0812.0617 Information Theory +0812.0619 Probability +0812.0625 Materials Science +0812.0635 Computer Science and Game Theory +0812.0638 Functional Analysis +0812.0642 Probability +0812.0644 Populations and Evolution +0812.0647 Fluid Dynamics +0812.0652 Algebraic Geometry +0812.0653 Soft Condensed Matter +0812.0654 Theory +0812.0659 Artificial Intelligence +0812.0664 Optics +0812.0665 Operator Algebras +0812.0666 Analysis of PDEs +0812.0669 +0812.0670 +0812.0672 Metric Geometry +0812.0676 Quantum Algebra +0812.0682 Theory +0812.0686 Cryptography and Security +0812.0688 Quantum Algebra +0812.0691 Phenomenology +0812.0698 Information Retrieval +0812.0706 Sound +0812.0708 Classical Analysis and ODEs +0812.0711 Materials Science +0812.0712 Populations and Evolution +0812.0714 +0812.0721 Theory +0812.0723 Instrumentation and Detectors +0812.0725 Theory +0812.0727 Phenomenology +0812.0728 Classical Analysis and ODEs +0812.0729 Theory +0812.0731 Materials Science +0812.0732 Theory +0812.0733 Combinatorics +0812.0736 Distributed, Parallel, and Cluster Computing +0812.0738 +0812.0739 Classical Analysis and ODEs +0812.0746 Materials Science +0812.0752 General Mathematics +0812.0756 Representation Theory +0812.0759 Information Theory +0812.0760 +0812.0761 Pricing of Securities +0812.0763 +0812.0765 Adaptation and Self-Organizing Systems +0812.0767 K-Theory and Homology +0812.0768 Instrumentation and Detectors +0812.0770 Phenomenology +0812.0772 Quantum Algebra +0812.0775 +0812.0779 Combinatorics +0812.0784 Number Theory +0812.0790 Artificial Intelligence +0812.0793 +0812.0794 Physics Education +0812.0795 +0812.0797 +0812.0798 Materials Science +0812.0799 Combinatorics +hep-th/0610235 Theory +math/0606612 Geometric Topology +math/0608285 Algebraic Topology +math/0610981 Combinatorics +math/0703374 Quantum Algebra +physics/0306059 General Physics +physics/0308098 General Physics +physics/0309088 General Physics +physics/0403130 General Physics +physics/0404059 General Physics +physics/0409121 General Physics +physics/0501159 General Physics +physics/0502095 General Physics +physics/0503003 General Physics +physics/0504027 General Physics +physics/0504199 General Physics +physics/0505025 General Physics +physics/0505119 General Physics +physics/0505130 General Physics +physics/0505190 General Physics +physics/0506156 General Physics +physics/0506184 General Physics +physics/0507016 General Physics +physics/0507097 General Physics +physics/0507190 General Physics +physics/0508084 General Physics +physics/0508134 General Physics +physics/0509225 General Physics +physics/0510113 General Physics +physics/0510178 General Physics +physics/0511051 General Physics +physics/0511062 General Physics +physics/0512013 General Physics +physics/0512032 General Physics +0704.0125 Analysis of PDEs +0704.0741 Disordered Systems and Neural Networks +0704.1105 +0704.3640 Quantitative Methods +0705.0518 Combinatorics +0705.2657 +0707.2916 Disordered Systems and Neural Networks +0708.0315 Analysis of PDEs +0708.0320 +0709.2374 Statistical Mechanics +0709.4144 Strongly Correlated Electrons +0710.1974 Strongly Correlated Electrons +0710.3390 Statistical Mechanics +0710.3503 +0710.4259 Probability +0711.1382 Theory +0711.1672 Space Physics +0711.2989 +0712.1270 Strongly Correlated Electrons +0712.3068 Mesoscale and Nanoscale Physics +0801.0271 Materials Science +0801.1630 Multiagent Systems +0801.2320 Functional Analysis +0801.3238 Statistical Mechanics +0801.3312 Mesoscale and Nanoscale Physics +0801.3587 Other Condensed Matter +0801.4597 Operator Algebras +0802.0899 +0802.2807 Populations and Evolution +0802.3795 Combinatorics +0803.3541 Functional Analysis +0803.3789 Differential Geometry +0803.3976 Symbolic Computation +0803.4077 +0804.0530 Operator Algebras +0804.1181 Combinatorics +0804.1349 +0804.1361 Combinatorics +0804.1368 +0804.1380 Combinatorics +0804.1387 Operator Algebras +0804.1390 Geophysics +0804.1395 Group Theory +0804.1396 Group Theory +0804.1407 Representation Theory +0804.1408 Optimization and Control +0804.1424 Number Theory +0804.1427 +0804.1430 Analysis of PDEs +0804.1434 Functional Analysis +0804.1435 Logic in Computer Science +0804.1437 Group Theory +0804.1442 +0804.1444 Probability +0804.1445 Logic +0804.1448 Computer Vision and Pattern Recognition +0804.1453 +0804.1470 Algebraic Topology +0804.1474 Statistical Mechanics +0804.1490 Information Theory +0804.1492 +0804.1493 Information Theory +0804.1494 Optics +0804.1502 Classical Physics +0804.1508 Dynamical Systems +0804.1509 Algebraic Geometry +0804.1510 +0804.1527 +0804.1539 Materials Science +cond-mat/0204618 Statistical Mechanics +cond-mat/0606014 Materials Science +cond-mat/0608069 Strongly Correlated Electrons +cond-mat/0610792 Materials Science +cond-mat/9905236 Statistical Mechanics +math/0512198 Commutative Algebra +math/0601084 Metric Geometry +math/0603428 Probability +math/0604485 Commutative Algebra +math/0608426 Metric Geometry +math/0701849 Probability +math/0702220 Classical Analysis and ODEs +math/0703449 Algebraic Geometry +math/0703648 Probability +math/0703901 Commutative Algebra +physics/0308037 General Physics +physics/0603260 Atmospheric and Oceanic Physics +0705.2074 Symplectic Geometry +0706.1193 Phenomenology +0710.0067 Dynamical Systems +0711.4269 Statistical Mechanics +0712.2351 Theory +0801.4270 Phenomenology +0802.0661 Functional Analysis +0802.2733 Analysis of PDEs +0803.1717 +0803.4175 Group Theory +0804.3668 Phenomenology +0805.2323 +0805.2784 Analysis of PDEs +0806.2272 Differential Geometry +0806.4526 Networking and Internet Architecture +0807.1154 Phenomenology +0807.3799 +0807.4098 Theory +0808.0143 +0808.1208 +0809.1150 Atomic Physics +0810.1797 +0810.1977 Symplectic Geometry +0810.5460 Materials Science +0811.0572 Lattice +0811.0919 +0812.0848 Analysis of PDEs +0812.1772 Theory +0812.3350 Algebraic Geometry +0812.3408 Representation Theory +0812.3907 +0812.3909 +0812.3920 Algebraic Geometry +0812.3924 +0812.3925 Probability +0812.3928 +0812.3943 Operator Algebras +0812.3946 Data Structures and Algorithms +0812.3950 +0812.3970 Functional Analysis +0812.3972 +0812.3973 Statistics Theory +0812.3976 +0812.3982 Phenomenology +0812.3985 Analysis of PDEs +0812.3986 General Physics +0812.3988 Genomics +0812.3999 Analysis of PDEs +0812.4000 Phenomenology +0812.4004 +0812.4010 Pricing of Securities +0812.4011 Materials Science +0812.4012 Combinatorics +0812.4013 +0812.4015 +0812.4020 +0812.4021 Analysis of PDEs +0812.4023 Operator Algebras +0812.4025 Materials Science +0812.4028 General Finance +0812.4030 Probability +0812.4037 +0812.4047 Combinatorics +0812.4050 Computational Finance +0812.4052 Computational Finance +0812.4060 Differential Geometry +0812.4064 Probability +0812.4074 +0812.4095 +0812.4097 +0812.4107 Analysis of PDEs +0812.4115 Rings and Algebras +0812.4129 Analysis of PDEs +0812.4142 +0812.4152 +0812.4156 Computational Finance +0812.4159 Pricing of Securities +0812.4163 Pricing of Securities +0812.4164 Phenomenology +0812.4170 Neural and Evolutionary Computing +0812.4172 Chaotic Dynamics +0812.4181 Cryptography and Security +0812.4194 +0812.4199 Pricing of Securities +0812.4202 Algebraic Geometry +0812.4206 Computer Science and Game Theory +0812.4210 Risk Management +0812.4211 +0812.4214 +0812.4222 Operator Algebras +0812.4228 +0812.4233 Statistics Theory +0812.4234 Phenomenology +0812.4236 Physics and Society +0812.4238 Genomics +0812.4239 Theory +0812.4240 Phenomenology +0812.4244 Analysis of PDEs +0812.4245 Algebraic Geometry +0812.4255 Fluid Dynamics +0812.4258 Biological Physics +0812.4264 Group Theory +0812.4266 Number Theory +0812.4278 Theory +cs/0612091 Digital Libraries +gr-qc/0305100 +math-ph/0609005 +math/0201119 Symplectic Geometry +math/0407191 Number Theory +math/0504281 Group Theory +math/0605261 Differential Geometry +0704.3753 Soft Condensed Matter +0707.1760 Operator Algebras +0707.3463 Mesoscale and Nanoscale Physics +0708.0891 Quantum Algebra +0710.1710 +0710.2841 +0711.1365 +0711.2329 Strongly Correlated Electrons +0712.3767 Mesoscale and Nanoscale Physics +0801.4922 Geometric Topology +0801.4966 Number Theory +0802.0280 Strongly Correlated Electrons +0802.0473 Mesoscale and Nanoscale Physics +0802.1348 Data Analysis, Statistics and Probability +0802.1776 Quantum Algebra +0803.1282 Superconductivity +0803.2511 +0803.3283 Plasma Physics +0803.4314 +0804.0966 Soft Condensed Matter +0804.1413 Strongly Correlated Electrons +0804.3437 Theory +0805.0921 Materials Science +0805.1957 Strongly Correlated Electrons +0805.4799 Phenomenology +0806.0040 +0806.0086 +0806.0358 Phenomenology +0806.0381 Combinatorics +0806.0390 Geometric Topology +0806.0398 Logic +0806.0406 Differential Geometry +0806.0409 Group Theory +0806.0424 Combinatorics +0806.0429 +0806.0430 Dynamical Systems +0806.0437 Analysis of PDEs +0806.0439 Rings and Algebras +0806.0440 Combinatorics +0806.0442 Probability +0806.0445 +0806.0448 Probability +0806.0449 Other Quantitative Biology +0806.0454 General Physics +0806.0462 Differential Geometry +0806.0479 Commutative Algebra +0806.0482 Spectral Theory +0806.0483 Chaotic Dynamics +0806.0494 +0806.0507 Functional Analysis +0806.0509 Theory +0806.0525 Dynamical Systems +0806.0528 General Physics +0806.0537 Neurons and Cognition +0806.0541 Representation Theory +0806.0567 +0806.0572 +0806.0574 +0806.0576 Cryptography and Security +0806.0577 +0806.0579 Information Theory +0806.0580 Strongly Correlated Electrons +0806.0600 Differential Geometry +0806.0604 Statistics Theory +0806.0612 Methodology +astro-ph/0412154 +astro-ph/0701202 +hep-ph/0701274 Phenomenology +math/0411652 Analysis of PDEs +math/0605082 Differential Geometry +math/0608704 Differential Geometry +quant-ph/0304179 +quant-ph/0502165 +0708.3190 Rings and Algebras +0709.2149 Algebraic Geometry +0710.5216 Strongly Correlated Electrons +0802.1760 Superconductivity +0802.3016 Representation Theory +0802.3449 Operator Algebras +0802.3532 Chaotic Dynamics +0804.0133 Strongly Correlated Electrons +0806.2680 Logic in Computer Science +0806.4082 +0807.0090 Number Theory +0807.0938 Statistical Mechanics +0807.2006 Phenomenology +cs/0605140 Computational Complexity +math-ph/0610058 +math/0612576 Complex Variables +math/0703558 Rings and Algebras +0705.0457 Number Theory +0705.4048 Differential Geometry +0706.1055 Chemical Physics +0707.1357 Statistical Mechanics +0708.0865 Probability +0708.3048 Computational Engineering, Finance, and Science +0709.1258 +0710.2513 Disordered Systems and Neural Networks +0710.2665 Metric Geometry +0710.2908 Algebraic Geometry +0710.3072 Algebraic Geometry +0711.3840 +0712.0326 Soft Condensed Matter +0801.0516 +0801.1751 Optics +0801.2667 Dynamical Systems +0801.4345 Differential Geometry +0802.2995 Combinatorics +0802.3289 Classical Physics +0802.3393 Theory +0802.3406 Plasma Physics +0802.3407 Algebraic Geometry +0802.3409 Lattice +0802.3410 Probability +0802.3412 Representation Theory +0802.3418 Quantum Algebra +0802.3419 Information Theory +0802.3420 Optics +0802.3421 Optics +0802.3429 Information Theory +0802.3430 Information Theory +0802.3434 Dynamical Systems +0802.3441 Hardware Architecture +0802.3444 Cryptography and Security +0802.3447 Molecular Networks +0802.3448 Databases +0802.3451 Spectral Theory +0802.3452 Analysis of PDEs +0802.3459 Applications +0802.3464 General Physics +0802.3469 Statistics Theory +0802.3474 +0802.3480 Human-Computer Interaction +0802.3481 Human-Computer Interaction +0802.3483 Human-Computer Interaction +0802.3484 +0802.3490 Networking and Internet Architecture +0802.3491 Combinatorics +0802.3502 Materials Science +0802.3511 Category Theory +0802.3516 Disordered Systems and Neural Networks +0802.3517 Representation Theory +0802.3523 Combinatorics +0802.3527 Combinatorics +0802.3529 Combinatorics +0802.3549 Differential Geometry +0802.3550 Differential Geometry +0802.3555 Fluid Dynamics +0802.3568 +0802.3569 Networking and Internet Architecture +0802.3571 Dynamical Systems +0802.3574 +0802.3579 Mesoscale and Nanoscale Physics +0802.3582 Databases +0802.3586 Statistical Mechanics +0802.3587 Statistical Mechanics +0802.3588 Phenomenology +0802.3590 Representation Theory +0802.3596 Differential Geometry +0802.3602 Atomic Physics +0802.3608 Differential Geometry +0802.3611 Information Theory +0802.3613 Analysis of PDEs +0802.3617 Logic in Computer Science +0802.3625 +0802.3628 Software Engineering +0802.3634 Networking and Internet Architecture +0802.3638 Probability +0802.3640 Functional Analysis +0802.3641 Soft Condensed Matter +0802.3646 Materials Science +0802.3647 Mesoscale and Nanoscale Physics +0802.3651 K-Theory and Homology +0802.3653 History and Overview +0802.3657 Number Theory +0802.3663 Other Condensed Matter +0802.3664 +0802.3665 Computers and Society +0802.3672 Phenomenology +0802.3678 +0802.3684 +0802.3688 +0802.3690 Computation +0802.3691 Algebraic Geometry +chao-dyn/9403004 Chaotic Dynamics +chao-dyn/9501011 Chaotic Dynamics +chao-dyn/9505010 Chaotic Dynamics +chao-dyn/9505013 Chaotic Dynamics +chao-dyn/9506006 Chaotic Dynamics +chao-dyn/9709011 Chaotic Dynamics +chao-dyn/9710019 Chaotic Dynamics +chao-dyn/9808004 Chaotic Dynamics +chao-dyn/9907004 Chaotic Dynamics +cmp-lg/9601003 Computation and Language +cond-mat/0002245 Statistical Mechanics +cond-mat/0008090 Statistical Mechanics +cond-mat/0511098 Superconductivity +cond-mat/0610201 Mesoscale and Nanoscale Physics +cond-mat/0610836 Superconductivity +cond-mat/9903418 +math/0703457 Category Theory +nlin/0001021 Chaotic Dynamics +nlin/0003025 Chaotic Dynamics +physics/0001071 Fluid Dynamics +quant-ph/0501064 +0708.3839 Representation Theory +0710.1234 Combinatorics +0712.2413 +0801.1932 Phenomenology +0802.0970 Strongly Correlated Electrons +0802.2651 Number Theory +0803.0043 Group Theory +0803.1532 +0804.1496 +0804.2894 Other Condensed Matter +0805.0523 +0805.3339 Databases +0806.1359 General Physics +0806.1925 Probability +0807.1204 Materials Science +0808.0180 Numerical Analysis +0808.0342 +0808.1108 Data Structures and Algorithms +0808.1229 Materials Science +0808.1428 Lattice +0808.1899 +0808.1903 Experiment +0808.1906 Phenomenology +0808.1915 Experiment +0808.1922 Probability +0808.1929 Algebraic Geometry +0808.1948 Superconductivity +0808.1952 Statistical Mechanics +0808.1954 Materials Science +0808.1965 Number Theory +0808.1967 +0808.1973 Theory +0808.1982 Lattice +0808.1987 Mesoscale and Nanoscale Physics +0808.1999 +0808.2002 Dynamical Systems +0808.2005 Algebraic Geometry +0808.2006 Phenomenology +0808.2011 Classical Physics +0808.2017 Data Structures and Algorithms +0808.2020 Phenomenology +0808.2021 Materials Science +0808.2022 Differential Geometry +0808.2023 Combinatorics +0808.2028 Differential Geometry +0808.2035 Differential Geometry +0808.2037 Functional Analysis +0808.2040 +0808.2045 Software Engineering +cond-mat/0606560 Superconductivity +cond-mat/0611126 Other Condensed Matter +math/0507215 Number Theory +math/0507216 Number Theory +math/0507218 Number Theory +quant-ph/0608002 +0704.2615 Geometric Topology +0705.3114 Symplectic Geometry +0709.3881 Algebraic Geometry +0711.1899 Phenomenology +0801.0117 Commutative Algebra +0801.1946 Geometric Topology +0801.1979 Data Structures and Algorithms +0801.2605 Differential Geometry +0802.2028 Materials Science +0802.2369 Classical Analysis and ODEs +0802.3248 Classical Analysis and ODEs +0804.1290 +0805.2942 +0805.4096 Quantum Algebra +0806.3309 Mesoscale and Nanoscale Physics +0806.4851 Quantum Algebra +0806.4913 Chemical Physics +0807.0683 +0807.1498 Theory +0807.1814 Other Condensed Matter +0807.2147 Phenomenology +0807.3589 +0807.4312 Superconductivity +0808.0669 Experiment +0808.1494 Mesoscale and Nanoscale Physics +0808.2212 Other Condensed Matter +0808.3136 +0808.4079 Computer Science and Game Theory +0809.0964 Fluid Dynamics +0809.1316 Materials Science +0809.1649 Phenomenology +0810.0346 Exactly Solvable and Integrable Systems +0810.0461 Phenomenology +0810.1322 Chemical Physics +0810.1466 Geometric Topology +0810.1693 Materials Science +0810.1951 Dynamical Systems +0810.1957 Fluid Dynamics +0810.1962 Fluid Dynamics +0810.1964 Analysis of PDEs +0810.1966 Fluid Dynamics +0810.1967 +0810.1968 Fluid Dynamics +0810.1970 +0810.1974 Fluid Dynamics +0810.1975 Fluid Dynamics +0810.1979 Combinatorics +0810.1980 Information Theory +0810.1981 Computer Science and Game Theory +0810.1988 Analysis of PDEs +0810.1991 Computers and Society +0810.1998 +0810.1999 Differential Geometry +0810.2001 Representation Theory +0810.2010 Methodology +0810.2011 +0810.2012 Number Theory +0810.2017 Materials Science +0810.2020 +0810.2021 Graphics +0810.2024 Differential Geometry +0810.2026 Atomic Physics +0810.2031 +0810.2035 +0810.2038 Other Condensed Matter +0810.2047 Strongly Correlated Electrons +0810.2048 Dynamical Systems +0810.2050 Experiment +0810.2051 Analysis of PDEs +0810.2052 Materials Science +0810.2053 Combinatorics +0810.2054 Number Theory +0810.2058 Algebraic Geometry +0810.2061 Logic in Computer Science +0810.2063 Multimedia +0810.2064 Analysis of PDEs +0810.2074 Experiment +0810.2088 Operator Algebras +0810.2093 Materials Science +0810.2094 General Mathematics +0810.2117 Algebraic Geometry +0810.2123 Probability +0810.2124 Statistics Theory +0810.2127 Representation Theory +0810.2132 Functional Analysis +0810.2133 Information Theory +0810.2134 Networking and Internet Architecture +0810.2138 Differential Geometry +0810.2141 Experiment +0810.2142 Mesoscale and Nanoscale Physics +0810.2144 Information Theory +0810.2152 Neurons and Cognition +0810.2153 Optics +0810.2160 Algebraic Geometry +0810.2162 +0810.2163 Plasma Physics +0810.2164 Information Theory +0810.2180 Group Theory +0810.2182 Probability +0810.2184 Functional Analysis +0810.2197 Soft Condensed Matter +0810.2198 +0810.2208 Information Theory +0810.2210 +0810.2211 Accelerator Physics +0810.2212 Experiment +0810.2217 Other Condensed Matter +0810.2218 Materials Science +0810.2220 Experiment +0810.2226 Distributed, Parallel, and Cluster Computing +0810.2227 Distributed, Parallel, and Cluster Computing +0810.2230 Complex Variables +0810.2232 Statistical Mechanics +0810.2234 Differential Geometry +0810.2235 Number Theory +0810.2244 +0810.2247 Combinatorics +0810.2249 +0810.2255 +0810.2261 Experiment +0810.2269 Materials Science +0810.2271 General Physics +0810.2276 Statistics Theory +0810.2278 Experiment +0810.2282 Theory +0810.2284 Quantitative Methods +0810.2285 +0810.2286 Analysis of PDEs +0810.2288 +alg-geom/9702009 Algebraic Geometry +gr-qc/0612074 +math/0611912 Quantum Algebra +math/0612298 Quantum Algebra +math/0702370 Combinatorics +math/0702667 Category Theory +quant-ph/0611277 +0704.2105 +0708.1708 Strongly Correlated Electrons +0711.2250 Statistical Mechanics +0712.0810 +0712.2501 Other Computer Science +0712.4091 +0801.0092 Computer Science and Game Theory +0801.0438 Functional Analysis +0801.0448 General Physics +0801.0449 Commutative Algebra +0801.0451 +0801.0452 Information Theory +0801.0455 Networking and Internet Architecture +0801.0456 Algebraic Geometry +0801.0458 +0801.0462 Complex Variables +0801.0463 Pattern Formation and Solitons +0801.0466 Dynamical Systems +0801.0468 Mesoscale and Nanoscale Physics +0801.0469 +0801.0472 Quantum Algebra +0801.0474 Computational Complexity +0801.0476 Materials Science +0801.0479 Geophysics +0801.0480 Number Theory +0801.0483 Commutative Algebra +0801.0485 Geophysics +0801.0492 +0801.0496 Probability +0801.0501 Phenomenology +0801.0504 Category Theory +0801.0507 Representation Theory +0801.0512 Exactly Solvable and Integrable Systems +0801.0514 Computational Complexity +0801.0517 +0801.0518 Computational Physics +0801.0521 +0801.0523 Numerical Analysis +0801.0524 Physics and Society +0801.0526 Algebraic Geometry +0801.0529 Phenomenology +0801.0530 Number Theory +0801.0533 Logic in Computer Science +0801.0534 Logic in Computer Science +0801.0535 Logic in Computer Science +0801.0537 Logic in Computer Science +0801.0540 Information Theory +0801.0543 Geophysics +0801.0544 Geophysics +0801.0545 Geophysics +0801.0548 Geophysics +0801.0556 Number Theory +0801.0558 Combinatorics +0801.0559 Geophysics +0801.0560 Geophysics +0801.0565 Statistical Mechanics +0801.0568 Combinatorics +0801.0570 Optimization and Control +0801.0574 Representation Theory +0801.0575 Cryptography and Security +0801.0577 +0801.0581 Information Theory +0801.0585 Dynamical Systems +0704.0763 +0705.3941 Strongly Correlated Electrons +0709.3610 Mesoscale and Nanoscale Physics +0709.4077 Symplectic Geometry +0709.4259 Phenomenology +0709.4292 +0709.4530 Strongly Correlated Electrons +0710.2393 Complex Variables +0710.2395 +0710.3472 +0710.5863 Commutative Algebra +0711.1488 Strongly Correlated Electrons +0711.2315 +0712.1640 Strongly Correlated Electrons +0712.2633 Mesoscale and Nanoscale Physics +0712.3307 Strongly Correlated Electrons +0801.3180 +0802.2149 +0802.2398 Mesoscale and Nanoscale Physics +0802.4366 Other Condensed Matter +0803.0311 Mesoscale and Nanoscale Physics +0803.2851 Strongly Correlated Electrons +0804.2275 Differential Geometry +0804.4600 Materials Science +0805.1442 Information Theory +0805.1852 Soft Condensed Matter +0806.1564 +0806.2385 Phenomenology +0806.2401 Algebraic Geometry +0806.2643 Information Theory +0806.2664 Superconductivity +0806.2669 Machine Learning +0806.2670 Strongly Correlated Electrons +0806.2673 +0806.2674 Information Theory +0806.2676 Algebraic Geometry +0806.2677 Optics +0806.2686 Classical Analysis and ODEs +0806.2691 +0806.2707 Computational Geometry +0806.2709 +0806.2715 Superconductivity +0806.2717 +0806.2719 General Topology +0806.2722 +0806.2724 Probability +0806.2730 Software Engineering +0806.2732 Optics +0806.2753 Representation Theory +0806.2759 Operator Algebras +0806.2761 Probability +0806.2769 +0806.2787 Combinatorics +0806.2796 +0806.2797 Numerical Analysis +0806.2808 Commutative Algebra +0806.2814 Optimization and Control +0806.2816 Differential Geometry +0806.2822 +0806.2827 Phenomenology +0806.2828 Algebraic Topology +0806.2831 Machine Learning +0806.2833 +0806.2843 Neural and Evolutionary Computing +0806.2844 Differential Geometry +0806.2847 General Mathematics +0806.2849 Soft Condensed Matter +0806.2854 Mesoscale and Nanoscale Physics +0806.2856 Algebraic Geometry +astro-ph/0701139 +cond-mat/0502503 Mesoscale and Nanoscale Physics +cond-mat/0702088 Materials Science +hep-ph/0403211 Phenomenology +hep-ph/0701122 Phenomenology +math/0308199 Group Theory +0707.1718 Algebraic Topology +0707.3572 Symplectic Geometry +0708.3509 Biomolecules +0709.1341 Metric Geometry +0709.4534 Dynamical Systems +0710.0919 Differential Geometry +0710.5634 Symplectic Geometry +0711.4781 Differential Geometry +0801.0635 Other Condensed Matter +0801.3643 Number Theory +0802.2539 Strongly Correlated Electrons +0802.3501 Mesoscale and Nanoscale Physics +0802.3828 +0803.1797 Statistical Mechanics +0803.4205 Mesoscale and Nanoscale Physics +0804.0180 +0804.0307 Superconductivity +0804.0591 Mesoscale and Nanoscale Physics +0804.2993 Strongly Correlated Electrons +0804.3591 Strongly Correlated Electrons +0805.0621 Theory +0805.1240 Symplectic Geometry +0806.2984 +0806.4397 Materials Science +0806.4847 Atomic Physics +0807.1581 Differential Geometry +0807.1582 Differential Geometry +0807.2395 Strongly Correlated Electrons +0807.3625 Disordered Systems and Neural Networks +0807.4445 Other Condensed Matter +0807.4733 Number Theory +0809.0035 General Physics +0809.0761 Phenomenology +0809.1204 Symplectic Geometry +0809.1228 Commutative Algebra +0809.1343 Soft Condensed Matter +0809.1764 Theory +0809.1768 Theory +0810.0425 Number Theory +0810.0481 Theory +0810.0837 Experiment +0810.1192 Functional Analysis +0810.2665 Robotics +0810.2808 Pattern Formation and Solitons +0810.3260 Probability +0810.3656 Experiment +0810.3664 Phenomenology +0810.3666 Experiment +0810.3668 Dynamical Systems +0810.3669 Materials Science +0810.3671 Computers and Society +0810.3677 Experiment +0810.3678 Experiment +0810.3679 +0810.3681 Experiment +0810.3682 Experiment +0810.3683 +0810.3686 Experiment +0810.3688 +0810.3689 +0810.3690 Experiment +0810.3692 Experiment +0810.3694 Experiment +0810.3697 Disordered Systems and Neural Networks +0810.3698 +0810.3699 Experiment +0810.3702 Classical Analysis and ODEs +0810.3703 +0810.3705 Experiment +0810.3706 Experiment +0810.3707 Theory +0810.3710 +0810.3711 Experiment +0810.3715 Distributed, Parallel, and Cluster Computing +0810.3716 Experiment +0810.3721 Group Theory +0810.3723 Experiment +0810.3726 Instrumentation and Detectors +0810.3727 +0810.3730 Algebraic Geometry +0810.3731 Symplectic Geometry +0810.3737 Experiment +0810.3738 Instrumentation and Detectors +0810.3739 Experiment +0810.3747 Experiment +0810.3748 Experiment +0810.3753 Experiment +0810.3754 Experiment +0810.3759 +0810.3760 +0810.3766 Experiment +0810.3770 Materials Science +0810.3775 Statistical Mechanics +0810.3776 Other Computer Science +0810.3778 Complex Variables +0810.3780 +0810.3789 Superconductivity +0810.3791 Lattice +0810.3796 +0810.3806 Materials Science +0810.3808 +0810.3810 Analysis of PDEs +0810.3811 Materials Science +0810.3814 +0810.3815 Theory +0810.3816 Symplectic Geometry +0810.3818 Physics and Society +0810.3826 +0810.3827 Information Theory +0810.3828 +0810.3831 Experiment +0810.3834 Quantitative Methods +0810.3838 Representation Theory +0810.3839 +0810.3840 Statistical Mechanics +0810.3841 +0810.3844 History and Overview +0810.3854 Atomic Physics +0810.3855 Dynamical Systems +0810.3856 +0810.3857 Experiment +0810.3859 +0810.3860 +0810.3862 Strongly Correlated Electrons +0810.3865 Artificial Intelligence +0810.3868 Analysis of PDEs +0810.3870 Geometric Topology +0810.3874 +0810.3879 Exactly Solvable and Integrable Systems +0810.3883 Differential Geometry +0810.3884 Dynamical Systems +0810.3890 +0810.3891 Information Theory +0810.3900 Information Theory +0810.3903 Experiment +0810.3905 Functional Analysis +cs/0109072 Logic in Computer Science +cs/0610120 Mathematical Software +hep-ph/0605300 Phenomenology +nlin/0502017 Exactly Solvable and Integrable Systems +nlin/0703011 Pattern Formation and Solitons +nucl-th/0501065 +quant-ph/0608042 +0704.0349 Combinatorics +0704.3156 Probability +0707.0481 Methodology +0708.4100 Statistical Mechanics +0708.4102 Statistical Mechanics +0708.4103 Statistical Mechanics +0708.4105 Statistical Mechanics +0708.4191 Rings and Algebras +0709.0785 Algebraic Topology +0712.0230 +0712.0299 +0712.0759 +0712.3198 Differential Geometry +0801.1373 Superconductivity +0802.3195 Materials Science +0802.3372 Geometric Topology +0803.2287 Statistical Mechanics +0804.1004 +0804.3866 +0804.4419 Strongly Correlated Electrons +0804.4703 +0805.3536 Phenomenology +0806.3761 Differential Geometry +0807.0784 Fluid Dynamics +0807.2330 Data Structures and Algorithms +0807.3024 Spectral Theory +0807.3667 +0807.3689 Strongly Correlated Electrons +0807.3754 +0807.3755 Information Retrieval +0807.3756 General Topology +0807.3758 Phenomenology +0807.3764 Analysis of PDEs +0807.3766 Representation Theory +0807.3768 Optimization and Control +0807.3782 Differential Geometry +0807.3790 Adaptation and Self-Organizing Systems +0807.3792 +0807.3795 Databases +0807.3798 Superconductivity +0807.3810 Analysis of PDEs +0807.3816 Probability +0807.3818 Phenomenology +0807.3822 Biological Physics +0807.3823 Disordered Systems and Neural Networks +0807.3835 Functional Analysis +0807.3840 Representation Theory +0807.3842 Analysis of PDEs +0807.3845 Computation and Language +0807.3850 +0807.3852 Analysis of PDEs +0807.3860 +0807.3861 +0807.3864 Analysis of PDEs +0807.3865 Discrete Mathematics +0807.3867 Classical Physics +0807.3868 Probability +0807.3874 Soft Condensed Matter +0807.3879 Cryptography and Security +0807.3884 +0807.3886 Algebraic Geometry +0807.3889 +0807.3892 Representation Theory +0807.3895 +0807.3897 Quantum Algebra +0807.3901 Biomolecules +0807.3903 Numerical Analysis +0807.3906 Functional Analysis +0807.3907 Combinatorics +0807.3908 Artificial Intelligence +0807.3910 Applications +0807.3918 +0807.3922 Operator Algebras +0807.3927 Analysis of PDEs +0807.3928 Other Condensed Matter +0807.3933 Operating Systems +0807.3940 Complex Variables +0807.3945 Chemical Physics +cond-mat/0611254 Statistical Mechanics +cond-mat/0611765 Materials Science +cond-mat/0703021 Materials Science +math/0605179 Quantum Algebra +math/0606154 Statistics Theory +math/0702219 Algebraic Geometry +physics/0611223 Fluid Dynamics +quant-ph/0505135 +quant-ph/0605137 +quant-ph/0610032 +quant-ph/0701123 +0705.0832 Probability +0707.0388 Theory +0707.3102 Chaotic Dynamics +0709.1979 Algebraic Geometry +0710.4143 +0712.0921 +0712.1845 Biological Physics +0801.0672 Information Theory +0801.3112 Information Theory +0801.3681 +0802.3340 Atmospheric and Oceanic Physics +0803.0288 Superconductivity +0803.0999 Populations and Evolution +0803.2479 Complex Variables +0803.2709 Mesoscale and Nanoscale Physics +0803.3484 Theory +0803.3642 Distributed, Parallel, and Cluster Computing +0803.4206 Computational Complexity +0804.4209 Superconductivity +0804.4689 Classical Analysis and ODEs +0804.4704 +0804.4707 Combinatorics +0804.4708 +0804.4714 Molecular Networks +0804.4716 Combinatorics +0804.4717 Robotics +0804.4720 Strongly Correlated Electrons +0804.4724 Strongly Correlated Electrons +0804.4725 +0804.4728 Rings and Algebras +0804.4729 Phenomenology +0804.4741 Learning +0804.4744 Computational Complexity +0804.4749 Robotics +0804.4750 Robotics +0804.4751 Phenomenology +0804.4752 Robotics +0804.4753 Robotics +0804.4754 Robotics +0804.4757 Robotics +0804.4759 Robotics +0804.4774 Information Theory +0804.4787 Algebraic Geometry +0804.4788 Other Condensed Matter +0804.4790 Geometric Topology +0804.4794 Mesoscale and Nanoscale Physics +0804.4795 Commutative Algebra +0804.4799 Information Theory +0804.4812 Superconductivity +0804.4832 Mesoscale and Nanoscale Physics +0804.4837 Number Theory +0804.4847 Combinatorics +0804.4849 +0804.4856 Number Theory +0804.4857 Phenomenology +0804.4858 Differential Geometry +0804.4870 Algebraic Geometry +0804.4873 Analysis of PDEs +0804.4876 Number Theory +0804.4878 Theory +0804.4879 Optics +0804.4880 Materials Science +0804.4883 Analysis of PDEs +0804.4885 Human-Computer Interaction +0804.4891 Phenomenology +0804.4894 Combinatorics +math/0508022 Combinatorics +physics/0607255 Fluid Dynamics +0705.1948 Operator Algebras +0705.2262 Numerical Analysis +0705.4683 Mesoscale and Nanoscale Physics +0706.0686 Classical Physics +0706.1419 Probability +0707.1423 General Mathematics +0707.1438 General Mathematics +0707.1441 General Mathematics +0707.3566 Operator Algebras +0708.1950 Strongly Correlated Electrons +0708.2131 +0709.3874 Quantum Algebra +0712.0439 Mesoscale and Nanoscale Physics +0712.0596 Operator Algebras +0712.2147 Functional Analysis +0712.3364 Strongly Correlated Electrons +0712.3890 Materials Science +0712.4089 +0801.1635 Dynamical Systems +0801.2513 General Mathematics +0802.1415 General Mathematics +0802.2978 Optimization and Control +0803.0488 Differential Geometry +0803.1459 Data Analysis, Statistics and Probability +0804.1261 +0804.2451 Differential Geometry +0804.2945 Superconductivity +0805.0367 General Mathematics +0805.0666 +0805.2421 Computer Science and Game Theory +0805.2931 Symplectic Geometry +0805.3044 Probability +0805.3081 +0805.3961 Phenomenology +0805.4662 Probability +0806.0082 +0806.0143 Phenomenology +0806.0321 +0806.0389 K-Theory and Homology +0806.0433 Combinatorics +0806.0434 Combinatorics +0806.0435 Combinatorics +0806.0465 Strongly Correlated Electrons +0806.0592 Algebraic Geometry +0806.0623 +0806.0626 +0806.0627 +0806.0632 Differential Geometry +0806.0635 General Mathematics +0806.0637 Algebraic Topology +0806.0640 Number Theory +0806.0641 Mesoscale and Nanoscale Physics +0806.0644 Lattice +0806.0656 +0806.0661 Numerical Analysis +0806.0673 Theory +0806.0674 Algebraic Geometry +0806.0675 Biological Physics +0806.0677 +0806.0687 Representation Theory +0806.0688 Soft Condensed Matter +0806.0689 Computer Vision and Pattern Recognition +0806.0690 Neurons and Cognition +0806.0693 Complex Variables +0806.0696 Algebraic Geometry +0806.0697 Representation Theory +0806.0708 +0806.0709 Optimization and Control +0806.0723 Phenomenology +0806.0724 Number Theory +0806.0740 Robotics +0806.0743 Robotics +0806.0744 Cell Behavior +0806.0755 Probability +0806.0761 Mesoscale and Nanoscale Physics +0806.0773 Strongly Correlated Electrons +0806.0774 Other Condensed Matter +0806.0786 Number Theory +0806.0789 Phenomenology +0806.0796 General Physics +0806.0797 +0806.0798 +0806.0799 Combinatorics +0806.0800 +0806.0811 Materials Science +0806.0822 Other Condensed Matter +0806.0825 Experiment +0806.0827 +0806.0830 Plasma Physics +0806.0832 Rings and Algebras +0806.0834 Algebraic Geometry +0806.0836 Algebraic Geometry +0806.0837 Cryptography and Security +0806.0838 Information Theory +0806.0839 Phenomenology +cs/0703017 Information Theory +math/0012161 Combinatorics +math/0509430 Probability +math/0701512 Differential Geometry +nlin/0610027 Pattern Formation and Solitons +quant-ph/0611144 +quant-ph/0701067 +0704.1941 Geometric Topology +0707.0089 Statistical Mechanics +0711.1845 Representation Theory +0801.0858 +0802.1865 Probability +0802.2512 Physics and Society +0804.0109 Atomic Physics +0804.3738 Superconductivity +0806.3152 Distributed, Parallel, and Cluster Computing +0806.4014 Probability +0807.1303 Strongly Correlated Electrons +0808.1445 Mesoscale and Nanoscale Physics +0808.2709 Dynamical Systems +0808.3042 Theory +math/0003172 Geometric Topology +math/0008126 Geometric Topology +math/0103041 Geometric Topology +math/0202226 Geometric Topology +math/0303012 Geometric Topology +math/0405076 Geometric Topology +math/0409201 Probability +math/0605671 Geometric Topology +math/0701318 Probability +math/9903017 Geometric Topology +0706.1112 Pattern Formation and Solitons +0706.2455 Number Theory +0707.0140 Mesoscale and Nanoscale Physics +0708.2840 Statistical Mechanics +0709.2304 Commutative Algebra +0710.2534 +0711.0436 Combinatorics +0711.3508 Combinatorics +0802.0249 +0802.1046 Numerical Analysis +cond-mat/0611346 Disordered Systems and Neural Networks +cond-mat/0611356 Materials Science +cs/0510095 Information Theory +math/0402210 Symplectic Geometry +math/0503295 Combinatorics +math/0612098 Differential Geometry +math/0612106 Number Theory +math/0612795 Symplectic Geometry +0706.1953 Operator Algebras +0711.3866 +0712.0938 Learning +0712.3956 Combinatorics +0801.1607 Probability +0801.2215 +0801.3961 Theory +0801.4607 Algebraic Geometry +0802.3290 Differential Geometry +0803.0397 Superconductivity +0804.1144 Other Condensed Matter +0804.1535 Combinatorics +0804.2173 Other Condensed Matter +0804.3059 Strongly Correlated Electrons +0805.0487 Statistical Mechanics +0805.1383 Materials Science +0806.2888 Quantitative Methods +0806.3186 Mesoscale and Nanoscale Physics +0806.3560 Quantum Algebra +0807.3974 Representation Theory +0807.4283 Superconductivity +0808.1243 Phenomenology +0809.1032 Other Condensed Matter +0809.1182 Rings and Algebras +0809.1798 Soft Condensed Matter +0809.2216 Other Condensed Matter +0809.2452 +0809.3724 Combinatorics +0809.4416 +0810.0935 Group Theory +0810.1781 Differential Geometry +0810.2480 Theory +0810.4991 Probability +0811.2347 Materials Science +0811.3676 Representation Theory +0812.0224 +0812.0580 Theory +0812.0605 +0812.1079 +0812.2257 Computational Geometry +0812.2258 Materials Science +0812.2261 Chaotic Dynamics +0812.2265 Probability +0812.2268 Representation Theory +0812.2273 Analysis of PDEs +0812.2277 Computer Science and Game Theory +0812.2278 Strongly Correlated Electrons +0812.2281 Number Theory +0812.2288 Networking and Internet Architecture +0812.2300 Combinatorics +0812.2305 Algebraic Geometry +0812.2309 Applications +0812.2312 Phenomenology +0812.2313 Robotics +0812.2319 Phenomenology +0812.2321 +0812.2333 +0812.2341 Phenomenology +0812.2342 Representation Theory +0812.2343 Materials Science +0812.2346 +0812.2348 +0812.2349 Analysis of PDEs +0812.2355 Optimization and Control +0812.2359 Mesoscale and Nanoscale Physics +0812.2361 Theory +0812.2364 Other Condensed Matter +0812.2367 Dynamical Systems +0812.2376 Analysis of PDEs +0812.2381 Representation Theory +0812.2384 Phenomenology +0812.2396 +0812.2405 Multimedia +0812.2410 Dynamical Systems +0812.2411 Multimedia +0812.2412 Methodology +0812.2415 +0812.2421 Classical Analysis and ODEs +0812.2426 Quantum Algebra +0812.2433 Rings and Algebras +0812.2434 Dynamical Systems +0812.2435 General Physics +0812.2439 Atomic Physics +0812.2443 Quantum Algebra +0812.2444 Computational Finance +0812.2449 Risk Management +0812.2451 Biomolecules +0812.2453 Materials Science +0812.2454 Information Theory +0812.2455 Number Theory +0812.2458 Information Theory +0812.2462 Geometric Topology +0812.2465 Phenomenology +cs/0303029 Networking and Internet Architecture +cs/0304038 Computational Complexity +cs/0304039 Computational Complexity +cs/0304040 Computational Complexity +cs/0304041 Computational Complexity +hep-ph/0508164 Phenomenology +math-ph/0607001 +math/0408309 Number Theory +math/0411026 Combinatorics +math/0610338 Metric Geometry +math/0701214 Group Theory +math/0701684 Logic +0705.0031 Number Theory +0705.1845 Biological Physics +0705.3378 General Physics +0709.4255 Number Theory +0710.5132 Biological Physics +0711.2623 Optimization and Control +0712.1583 Geometric Topology +0712.2384 Information Theory +0802.3138 Dynamical Systems +0803.0285 Representation Theory +0803.2357 Disordered Systems and Neural Networks +0803.3050 +0803.4453 +0804.0562 Materials Science +0804.1438 Group Theory +0805.1226 Networking and Internet Architecture +0805.3182 Analysis of PDEs +0806.0620 Statistical Mechanics +0806.1410 Statistical Mechanics +0806.2528 Superconductivity +0806.3387 +0807.0735 Strongly Correlated Electrons +0807.4614 Plasma Physics +0808.3702 Mesoscale and Nanoscale Physics +0809.5109 Algebraic Geometry +0810.0604 +0810.1441 Strongly Correlated Electrons +0810.3061 Mesoscale and Nanoscale Physics +0810.3131 Quantum Algebra +0810.4862 Materials Science +0811.0400 Rings and Algebras +0811.1271 Quantitative Methods +0811.3021 Superconductivity +0811.3034 Quantitative Methods +0811.3163 Subcellular Processes +0811.3258 Biomolecules +0811.3315 Biomolecules +0811.3421 +0811.3425 Commutative Algebra +0811.3440 +0811.3449 Data Structures and Algorithms +0811.3456 Materials Science +0811.3457 Superconductivity +0811.3460 Probability +0811.3464 Quantitative Methods +0811.3471 Chaotic Dynamics +0811.3472 Mesoscale and Nanoscale Physics +0811.3473 Superconductivity +0811.3477 Statistics Theory +0811.3479 Discrete Mathematics +0811.3484 Phenomenology +0811.3492 Software Engineering +0811.3496 Dynamical Systems +0811.3498 +0811.3499 Machine Learning +0811.3502 Genomics +0811.3503 Commutative Algebra +0811.3507 Genomics +0811.3508 Genomics +0811.3510 Genomics +0811.3513 Genomics +0811.3514 Genomics +0811.3515 Genomics +0811.3517 Algebraic Topology +0811.3518 Functional Analysis +0811.3521 Logic in Computer Science +0811.3525 Materials Science +0811.3527 +0811.3530 Dynamical Systems +0811.3532 +0811.3535 +0811.3536 Robotics +0811.3538 Populations and Evolution +0811.3541 +0811.3544 Representation Theory +0811.3572 Mesoscale and Nanoscale Physics +0811.3575 Materials Science +0811.3577 +0811.3580 Differential Geometry +0811.3585 Information Theory +0811.3587 Quantitative Methods +0811.3588 Classical Analysis and ODEs +0811.3591 +0811.3595 Combinatorics +0811.3602 Data Structures and Algorithms +0811.3605 +0811.3609 +0811.3616 +0811.3618 +0811.3619 Machine Learning +0811.3620 Software Engineering +0811.3621 Software Engineering +0811.3628 Machine Learning +0811.3630 +cond-mat/0305344 Materials Science +cond-mat/0305678 Materials Science +cs/0702041 Logic in Computer Science +cs/9906007 Logic in Computer Science +gr-qc/0001057 +math/0606201 Combinatorics +math/0609225 Geometric Topology +math/0611636 Rings and Algebras +math/0611640 Rings and Algebras +0704.0907 Mesoscale and Nanoscale Physics +0706.0493 Algebraic Geometry +0706.4443 Phenomenology +0706.4456 Phenomenology +0707.3806 +0707.4240 Operator Algebras +0709.4547 +0710.2382 Superconductivity +0710.2858 +0710.3855 +0710.4557 Strongly Correlated Electrons +0711.0451 Functional Analysis +0711.1676 Plasma Physics +0711.2135 Probability +0711.2144 Probability +0712.0760 Strongly Correlated Electrons +0712.3050 Strongly Correlated Electrons +0801.1653 +0801.1669 Materials Science +0801.3431 Differential Geometry +0802.1028 Statistical Mechanics +0803.1446 Soft Condensed Matter +0803.2916 Dynamical Systems +0803.3756 Geophysics +0803.4495 Strongly Correlated Electrons +0804.0582 Statistical Mechanics +0804.0672 +0804.1179 Discrete Mathematics +0804.2829 Phenomenology +0804.2947 History and Philosophy of Physics +0804.3094 Strongly Correlated Electrons +0804.3103 Graphics +0804.3109 Information Theory +0804.3112 Complex Variables +0804.3116 Physics and Society +0804.3120 Information Theory +0804.3132 General Physics +0804.3136 General Mathematics +0804.3143 Algebraic Geometry +0804.3144 Symplectic Geometry +0804.3148 +0804.3150 Algebraic Geometry +0804.3151 Algebraic Geometry +0804.3152 Computation +0804.3156 Classical Analysis and ODEs +0804.3162 Chaotic Dynamics +0804.3168 Representation Theory +0804.3174 Statistical Mechanics +0804.3176 Neurons and Cognition +0804.3184 Number Theory +0804.3191 Mesoscale and Nanoscale Physics +0804.3193 Differential Geometry +0804.3194 Representation Theory +0804.3199 General Mathematics +0804.3203 +0804.3205 Group Theory +0804.3211 Combinatorics +0804.3217 Tissues and Organs +0804.3218 Geometric Topology +0804.3226 Rings and Algebras +0804.3248 +0804.3252 Classical Analysis and ODEs +0804.3259 Information Theory +0804.3260 Number Theory +0804.3265 Theory +0804.3269 Computation and Language +0804.3279 Populations and Evolution +0804.3282 Phenomenology +0804.3292 Other Condensed Matter +0804.3294 +0804.3297 +0804.3300 Statistical Mechanics +0804.3302 Complex Variables +0804.3307 Physics and Society +0804.3308 Probability +0804.3309 +0804.3310 Theory +0804.3315 +0804.3329 Subcellular Processes +0804.3340 Materials Science +0804.3347 +0804.3357 Algebraic Topology +0804.3358 Materials Science +0804.3374 Optics +0804.3375 Combinatorics +0804.3377 +0804.3388 Numerical Analysis +astro-ph/0309512 +astro-ph/0310208 +astro-ph/0405525 +astro-ph/0511160 +cond-mat/0205207 Strongly Correlated Electrons +cond-mat/0502502 Strongly Correlated Electrons +cond-mat/0603121 Materials Science +cond-mat/0610855 Superconductivity +cond-mat/0611772 Strongly Correlated Electrons +cond-mat/0701105 Strongly Correlated Electrons +cond-mat/0703576 Materials Science +cond-mat/0703628 Mesoscale and Nanoscale Physics +hep-th/0509176 Theory +math-ph/0504021 +math/0511417 Number Theory +math/0602519 Differential Geometry +math/0602668 Rings and Algebras +math/0603255 Symplectic Geometry +math/0605115 Algebraic Geometry +math/0606088 Number Theory +math/0606297 Probability +math/0608132 Probability +math/0609235 Metric Geometry +math/0702666 Differential Geometry +nucl-th/0603051 +0704.1218 +0704.3363 Algebraic Geometry +0705.2167 Mesoscale and Nanoscale Physics +0705.3399 Commutative Algebra +0705.3740 Cryptography and Security +0706.3433 Soft Condensed Matter +0707.0103 Phenomenology +0708.3279 Algebraic Geometry +0708.3905 Phenomenology +0709.1077 Complex Variables +0709.2459 Superconductivity +0709.3081 +0709.3720 Strongly Correlated Electrons +0709.3917 Commutative Algebra +0710.2260 Exactly Solvable and Integrable Systems +0711.0330 +0711.0667 Theory +0711.3571 Materials Science +0711.3649 Optics +0712.0896 +0712.3991 Strongly Correlated Electrons +0801.0781 Materials Science +0801.2992 Dynamical Systems +0802.0502 Spectral Theory +0802.2795 Chemical Physics +0803.0045 Group Theory +0803.0885 +0803.1892 +0803.3782 Functional Analysis +0803.4151 +0803.4227 Operator Algebras +0804.0008 Disordered Systems and Neural Networks +0804.0010 General Mathematics +0804.0015 Phenomenology +0804.0020 Experiment +0804.0024 +0804.0025 Differential Geometry +0804.0028 Operator Algebras +0804.0030 +0804.0031 Methodology +0804.0034 Analysis of PDEs +0804.0037 Theory +0804.0045 Space Physics +0804.0048 Complex Variables +0804.0049 Space Physics +0804.0050 Information Theory +0804.0054 +0804.0063 Materials Science +0804.0069 Fluid Dynamics +0804.0071 Probability +0804.0074 Cryptography and Security +0804.0089 Complex Variables +0804.0091 Differential Geometry +0804.0094 +0804.0096 Mesoscale and Nanoscale Physics +0804.0098 Algebraic Geometry +0804.0100 Algebraic Geometry +0804.0113 Probability +0804.0114 Differential Geometry +0804.0116 +0804.0117 +0804.0126 +0804.0128 Analysis of PDEs +0804.0134 Multimedia +0804.0137 Probability +0804.0141 Mesoscale and Nanoscale Physics +0804.0150 Computational Physics +0804.0152 History and Overview +0804.0153 +0804.0157 Combinatorics +0804.0159 Accelerator Physics +0804.0167 Dynamical Systems +0804.0171 Spectral Theory +0804.0172 Theory +0804.0175 Statistical Mechanics +0804.0190 Neurons and Cognition +0804.0191 Other Condensed Matter +0804.0201 Differential Geometry +0804.0206 +0804.0216 Populations and Evolution +0804.0217 +0804.0226 Number Theory +0804.0230 Analysis of PDEs +cond-mat/0609349 Mesoscale and Nanoscale Physics +math-ph/0601010 +math/0205160 Classical Analysis and ODEs +math/0509712 Probability +math/0601706 Operator Algebras +math/0607800 Probability +math/0611709 Group Theory +math/0703180 Number Theory +nlin/0407007 Exactly Solvable and Integrable Systems +nlin/0503050 Exactly Solvable and Integrable Systems +nlin/0510011 Exactly Solvable and Integrable Systems +nlin/0605008 Exactly Solvable and Integrable Systems +physics/0507106 Physics and Society +physics/0612019 General Physics +quant-ph/0606211 +quant-ph/0702262 +0705.0337 Chemical Physics +0707.1203 Number Theory +0709.1719 Probability +0709.2836 Metric Geometry +0710.4466 Statistics Theory +0711.4670 Combinatorics +0801.3179 Exactly Solvable and Integrable Systems +0802.1609 +0802.2321 Theory +0802.2903 Algebraic Geometry +0803.0282 +0803.1584 Number Theory +0803.1766 Probability +0804.2470 Statistical Mechanics +0804.3594 Mesoscale and Nanoscale Physics +0805.0724 Mesoscale and Nanoscale Physics +0805.3114 Soft Condensed Matter +0805.4611 Rings and Algebras +0806.0106 Medical Physics +0806.1143 Materials Science +0807.1224 Probability +0807.1627 Mesoscale and Nanoscale Physics +0807.2954 Disordered Systems and Neural Networks +0807.3032 Superconductivity +0808.1363 Soft Condensed Matter +0808.1966 Optics +0808.2414 +0808.3129 Adaptation and Self-Organizing Systems +0809.0365 Mesoscale and Nanoscale Physics +0809.3904 Mesoscale and Nanoscale Physics +0810.2925 Differential Geometry +0810.3594 +0811.0370 Representation Theory +0811.0731 Information Theory +0811.3042 Dynamical Systems +0811.3412 +0811.3429 Classical Physics +0811.3531 +0811.3608 Phenomenology +0811.3637 Analysis of PDEs +0811.3652 Combinatorics +0811.3655 Commutative Algebra +0811.3657 Populations and Evolution +0811.3659 Biological Physics +0811.3673 Materials Science +0811.3674 +0811.3680 +0811.3681 Popular Physics +0811.3682 Probability +0811.3685 Chaotic Dynamics +0811.3686 Analysis of PDEs +0811.3691 Databases +0811.3694 Fluid Dynamics +0811.3695 Fluid Dynamics +0811.3696 +0811.3697 Dynamical Systems +0811.3699 Dynamical Systems +0811.3700 Phenomenology +0811.3702 Rings and Algebras +0811.3707 +0811.3708 Phenomenology +0811.3710 Differential Geometry +0811.3712 Performance +0811.3713 Data Analysis, Statistics and Probability +0811.3718 Strongly Correlated Electrons +0811.3722 Algebraic Topology +0811.3723 Data Structures and Algorithms +0811.3724 +0811.3727 +0811.3740 Differential Geometry +0811.3742 Complex Variables +0811.3745 +0811.3756 +0811.3760 Data Structures and Algorithms +0811.3761 +0811.3767 Strongly Correlated Electrons +0811.3769 Probability +0811.3772 +0811.3773 Phenomenology +0811.3777 Information Theory +0811.3778 Phenomenology +0811.3779 Data Structures and Algorithms +0811.3783 Physics and Society +0811.3786 +0811.3787 Rings and Algebras +0811.3789 Strongly Correlated Electrons +0811.3790 +0811.3791 +0811.3795 Strongly Correlated Electrons +0811.3802 Mesoscale and Nanoscale Physics +0811.3808 Soft Condensed Matter +0811.3809 Logic +0811.3811 Soft Condensed Matter +0811.3813 Superconductivity +0811.3817 Phenomenology +0811.3819 Algebraic Geometry +0811.3822 Soft Condensed Matter +0811.3825 +0811.3828 Networking and Internet Architecture +0811.3837 Phenomenology +0811.3839 +0811.3840 Statistical Mechanics +0811.3841 Differential Geometry +0811.3844 Phenomenology +0811.3846 General Physics +0811.3848 Operator Algebras +0811.3852 Algebraic Geometry +0811.3855 Phenomenology +0811.3857 Complex Variables +0811.3859 Computational Complexity +0811.3861 Complex Variables +0811.3865 Mesoscale and Nanoscale Physics +0811.3872 Strongly Correlated Electrons +0811.3877 General Physics +0811.3878 Plasma Physics +0811.3883 +0811.3884 Strongly Correlated Electrons +0811.3892 Quantum Algebra +0811.3895 +0811.3897 +0811.3902 Group Theory +0811.3904 Instrumentation and Detectors +0811.3912 General Physics +0811.3917 Dynamical Systems +0811.3918 +0811.3922 Representation Theory +0811.3927 Mesoscale and Nanoscale Physics +0811.3928 Analysis of PDEs +0811.3938 +0811.3943 Phenomenology +0811.3951 Adaptation and Self-Organizing Systems +0811.3954 Classical Physics +0811.3955 Classical Physics +0811.3956 Classical Physics +0811.3958 Computational Complexity +0811.3959 Computational Complexity +cond-mat/0606357 Soft Condensed Matter +gr-qc/0609004 +math/0610928 Logic +math/0701744 Dynamical Systems +nlin/0505052 Chaotic Dynamics +physics/0611088 Atomic Physics +0706.1322 Statistical Mechanics +0708.1951 Quantum Algebra +0709.1469 Strongly Correlated Electrons +0709.1986 +0710.2311 Group Theory +0710.3025 Strongly Correlated Electrons +0711.4004 Statistics Theory +0712.3985 Optics +0801.2069 Artificial Intelligence +0802.4264 General Physics +0804.3514 Statistical Mechanics +0804.4188 Algebraic Geometry +0804.4218 Quantitative Methods +0804.4738 Statistics Theory +0805.1358 Other Condensed Matter +0805.3492 Plasma Physics +0805.4068 Mesoscale and Nanoscale Physics +0805.4175 General Physics +0806.0896 Atomic Physics +0807.4841 Phenomenology +0808.0343 Algebraic Geometry +0808.0391 Lattice +0808.0863 Algebraic Geometry +0808.1137 +0808.1578 Strongly Correlated Electrons +0808.1581 +0808.1582 +0808.1584 Geometric Topology +0808.1585 Rings and Algebras +0808.1588 Methodology +0808.1590 Populations and Evolution +0808.1599 Combinatorics +0808.1604 Materials Science +0808.1608 Phenomenology +0808.1609 Complex Variables +0808.1622 Analysis of PDEs +0808.1627 Category Theory +0808.1638 Accelerator Physics +0808.1640 +0808.1641 Computational Complexity +0808.1643 Mesoscale and Nanoscale Physics +0808.1652 +0808.1653 Experiment +0808.1658 +0808.1659 +0808.1660 +0808.1661 Robotics +0808.1669 Probability +0808.1671 Computer Science and Game Theory +0808.1687 +0808.1689 Phenomenology +0808.1698 +0808.1700 Functional Analysis +0808.1701 +0808.1711 Complex Variables +0808.1721 Artificial Intelligence +hep-th/0301156 Theory +hep-th/0301158 Theory +hep-th/0301159 Theory +hep-th/0301160 Theory +math/0302021 Quantum Algebra +math/0407050 Geometric Topology +math/0409460 Geometric Topology +math/0412193 Probability +math/0507351 Quantum Algebra +math/0509365 Geometric Topology +math/0511602 Geometric Topology +math/0606258 Numerical Analysis +math/0608487 Geometric Topology +math/0701639 Complex Variables +math/0702038 Quantum Algebra +math/0703284 Number Theory +0704.2253 +0709.2943 Methodology +0711.1604 Combinatorics +0802.1099 Applications +0803.2375 Combinatorics +0803.3601 Quantum Algebra +astro-ph/0511358 +cond-mat/0703322 Other Condensed Matter +math/0603279 Representation Theory +math/0609275 Statistics Theory +math/0609630 Numerical Analysis +0704.0070 Mesoscale and Nanoscale Physics +0705.4088 Mesoscale and Nanoscale Physics +0706.1677 Dynamical Systems +0707.3467 Analysis of PDEs +0711.0752 Statistical Mechanics +0801.1249 +0801.1938 Number Theory +0801.1976 Combinatorics +0801.2284 Discrete Mathematics +math-ph/0610012 +math-ph/0610056 +math/0605296 Dynamical Systems +math/0609725 Differential Geometry +math/0609793 Metric Geometry +quant-ph/0611035 +0704.0626 +0704.0723 Mesoscale and Nanoscale Physics +0704.2063 +0705.1918 Strongly Correlated Electrons +0706.1904 Probability +0706.2272 Combinatorics +0707.0869 Strongly Correlated Electrons +0707.3188 Analysis of PDEs +0707.3614 Strongly Correlated Electrons +0707.4394 Strongly Correlated Electrons +0708.0021 Soft Condensed Matter +0708.1750 Atomic Physics +0708.2038 Genomics +0708.3204 +0709.2002 +0709.2011 +0709.2021 Probability +0710.1700 +0711.0214 Strongly Correlated Electrons +0711.0800 Superconductivity +0711.2208 Molecular Networks +0712.0366 Strongly Correlated Electrons +0712.4295 Optimization and Control +0801.0233 Combinatorics +0801.1895 Mesoscale and Nanoscale Physics +0801.1983 Complex Variables +0802.0649 Phenomenology +0802.3514 Combinatorics +0802.4246 +0803.0006 Algebraic Geometry +0803.0007 Biological Physics +0803.0012 Physics Education +0803.0016 Number Theory +0803.0020 Mesoscale and Nanoscale Physics +0803.0023 Differential Geometry +0803.0024 Mesoscale and Nanoscale Physics +0803.0025 Differential Geometry +0803.0028 Strongly Correlated Electrons +0803.0029 Differential Geometry +0803.0031 Algebraic Geometry +0803.0035 General Mathematics +0803.0037 Cryptography and Security +0803.0039 Analysis of PDEs +0803.0041 Functional Analysis +0803.0046 Chaotic Dynamics +0803.0050 General Physics +0803.0053 Distributed, Parallel, and Cluster Computing +0803.0066 +0803.0067 Statistical Mechanics +0803.0069 Rings and Algebras +0803.0071 Rings and Algebras +0803.0072 Algebraic Geometry +0803.0074 Complex Variables +0803.0083 Exactly Solvable and Integrable Systems +0803.0087 General Physics +0803.0089 General Physics +0803.0091 Soft Condensed Matter +0803.0093 Soft Condensed Matter +0803.0096 Statistical Mechanics +0803.0102 Soft Condensed Matter +0803.0110 +0803.0111 Pattern Formation and Solitons +0803.0113 +0803.0117 Algebraic Geometry +0803.0118 Rings and Algebras +0803.0121 +0803.0124 Strongly Correlated Electrons +0803.0133 Combinatorics +0803.0136 Complex Variables +0803.0137 Complex Variables +0803.0145 Representation Theory +0803.0153 Probability +0803.0193 +0803.0194 Computer Vision and Pattern Recognition +0803.0195 Populations and Evolution +0803.0196 Materials Science +0803.0197 Sound +0803.0217 Statistical Mechanics +0803.0221 Phenomenology +0803.0228 Analysis of PDEs +0803.0237 Group Theory +0803.0241 Distributed, Parallel, and Cluster Computing +0803.0243 Representation Theory +0803.0245 Superconductivity +0803.0248 Data Structures and Algorithms +0803.0252 Algebraic Topology +0803.0259 Other Condensed Matter +0803.0265 Information Theory +0803.0267 Rings and Algebras +0803.0284 Analysis of PDEs +0803.0286 Classical Analysis and ODEs +0803.0290 Number Theory +0803.0296 +0803.0298 Differential Geometry +0803.0300 General Physics +0803.0301 Statistical Mechanics +0803.0304 Geometric Topology +0803.0306 Materials Science +0803.0309 +0803.0316 Computational Geometry +astro-ph/0406604 +cond-mat/0403486 Strongly Correlated Electrons +cond-mat/0610249 Superconductivity +cond-mat/0703555 Strongly Correlated Electrons +cond-mat/0703557 Disordered Systems and Neural Networks +math/0403138 Algebraic Geometry +math/0505671 Differential Geometry +math/0507336 Operator Algebras +math/0511695 Algebraic Geometry +math/0601314 Geometric Topology +math/0601764 Differential Geometry +math/0604307 Algebraic Geometry +math/0605344 Group Theory +math/0605489 Operator Algebras +math/0610623 Optimization and Control +math/0703854 Statistics Theory +0704.0298 Functional Analysis +0706.2196 Algebraic Topology +0707.4469 Probability +0710.3595 Differential Geometry +0712.3055 Soft Condensed Matter +0712.3271 +0801.0713 Strongly Correlated Electrons +0801.2137 Other Condensed Matter +0801.2263 Probability +0803.1038 Algebraic Topology +0803.2474 Methodology +0804.0355 Other Condensed Matter +0805.1025 Statistical Mechanics +0805.2493 Combinatorics +0806.0278 Differential Geometry +0806.1343 Computer Science and Game Theory +0807.0359 Superconductivity +0807.2516 +0807.4191 +0808.0052 +0808.0646 Statistical Mechanics +0809.0435 +0809.1938 Exactly Solvable and Integrable Systems +0809.2670 +0809.2777 Lattice +0809.3203 Experiment +0809.3224 Experiment +0809.3457 Category Theory +0809.3682 Combinatorics +0809.3741 Lattice +0809.3764 +0809.3768 Optimization and Control +0809.3801 +0809.3802 +0809.3803 Machine Learning +0809.3804 Experiment +0809.3806 Soft Condensed Matter +0809.3810 Exactly Solvable and Integrable Systems +0809.3811 Differential Geometry +0809.3812 Differential Geometry +0809.3814 Commutative Algebra +0809.3815 Logic +0809.3816 Analysis of PDEs +0809.3818 Differential Geometry +0809.3821 Differential Geometry +0809.3826 Chemical Physics +0809.3828 Analysis of PDEs +0809.3829 Phenomenology +0809.3830 Differential Geometry +0809.3831 +0809.3834 Experiment +0809.3837 Analysis of PDEs +0809.3841 Optics +0809.3846 +0809.3851 Materials Science +0809.3853 Commutative Algebra +0809.3855 Optics +0809.3860 Logic +0809.3861 Pattern Formation and Solitons +0809.3865 Optics +0809.3868 +0809.3869 Statistics Theory +0809.3870 +0809.3875 Spectral Theory +0809.3876 +0809.3878 Theory +0809.3884 Differential Geometry +0809.3887 +0809.3889 +0809.3903 Other Condensed Matter +0809.3907 Soft Condensed Matter +0809.3910 Numerical Analysis +0809.3911 Functional Analysis +0809.3912 +0809.3913 +0809.3920 Other Condensed Matter +0809.3921 Functional Analysis +0809.3924 Number Theory +0809.3925 Analysis of PDEs +0809.3927 Algebraic Geometry +0809.3928 +0809.3929 Applications +0809.3937 Number Theory +0809.3942 Cryptography and Security +0809.3959 +0809.3961 Phenomenology +0809.3970 Complex Variables +0809.3976 Algebraic Geometry +0809.3984 K-Theory and Homology +0809.3996 Soft Condensed Matter +0809.4000 +0809.4001 Analysis of PDEs +astro-ph/0512513 +cond-mat/0509492 Other Condensed Matter +cond-mat/0608599 Mesoscale and Nanoscale Physics +cond-mat/0609333 Mesoscale and Nanoscale Physics +math-ph/0408026 +math/0603431 Algebraic Geometry +math/0607794 Geometric Topology +math/0608682 Symplectic Geometry +math/0701905 Symplectic Geometry +math/0703869 Symplectic Geometry +physics/0510219 General Physics +q-bio/0505033 Tissues and Organs +quant-ph/0612208 +0709.3285 +0709.4626 Analysis of PDEs +0710.0432 Number Theory +0711.2213 +0711.3259 Mesoscale and Nanoscale Physics +0711.3864 Logic +0711.3865 Logic +0801.0584 Theory +0801.1519 Mesoscale and Nanoscale Physics +0801.2961 Mesoscale and Nanoscale Physics +0801.3421 Superconductivity +0801.4886 Superconductivity +0803.1191 Disordered Systems and Neural Networks +0803.1352 Materials Science +0803.1399 Combinatorics +0803.2971 Mesoscale and Nanoscale Physics +0803.4080 Mesoscale and Nanoscale Physics +0804.0289 +0804.3242 Algebraic Topology +0804.3603 Theory +0805.0141 Complex Variables +0805.0404 Other Condensed Matter +0806.1163 Probability +0806.3730 Theory +0806.4339 +0806.4686 Learning +0807.0439 +0807.0454 Dynamical Systems +0807.0462 Discrete Mathematics +0807.0463 Number Theory +0807.0465 Differential Geometry +0807.0471 Commutative Algebra +0807.0472 Materials Science +0807.0476 Discrete Mathematics +0807.0479 Atmospheric and Oceanic Physics +0807.0483 Populations and Evolution +0807.0495 +0807.0496 Experiment +0807.0499 Subcellular Processes +0807.0502 Number Theory +0807.0505 Probability +0807.0510 Pattern Formation and Solitons +0807.0511 Mesoscale and Nanoscale Physics +0807.0516 Number Theory +0807.0517 Artificial Intelligence +0807.0537 Number Theory +0807.0541 +0807.0545 Phenomenology +0807.0548 Phenomenology +0807.0549 Optimization and Control +0807.0552 Computational Geometry +0807.0554 Probability +0807.0565 Physics and Society +0807.0568 Differential Geometry +0807.0569 Theory +0807.0574 Algebraic Geometry +0807.0575 Numerical Analysis +0807.0578 Superconductivity +0807.0580 Theory +0807.0590 +0807.0592 Combinatorics +0807.0595 Information Theory +0807.0598 Analysis of PDEs +0807.0599 Quantum Algebra +0807.0601 Mesoscale and Nanoscale Physics +0807.0604 Complex Variables +0807.0608 Rings and Algebras +0807.0609 Materials Science +0807.0617 Space Physics +0807.0623 +0807.0625 +0807.0626 Performance +0807.0627 Artificial Intelligence +0807.0629 Performance +0807.0633 Theory +math/0606076 Number Theory +math/0703780 Rings and Algebras +quant-ph/0701055 +quant-ph/0703260 +0704.1897 Mesoscale and Nanoscale Physics +0705.1705 +0705.2882 Mesoscale and Nanoscale Physics +0706.1345 +0706.4274 Pattern Formation and Solitons +0706.4466 Statistical Mechanics +0709.3032 Strongly Correlated Electrons +0712.0123 Commutative Algebra +0712.0127 Commutative Algebra +0712.1899 +0801.0104 Number Theory +0801.4135 +0802.2437 +cond-mat/0012350 +cond-mat/0503628 Mesoscale and Nanoscale Physics +math/0507179 Differential Geometry +math/0603151 Algebraic Geometry +math/0610213 Dynamical Systems +quant-ph/0509048 +quant-ph/0601182 +0707.2109 Other Condensed Matter +0710.4942 Materials Science +0712.3997 Other Condensed Matter +0801.1505 +0801.1506 +0801.1510 +0801.1511 +0801.1512 Complex Variables +0801.1515 Materials Science +0801.1521 Algebraic Geometry +0801.1522 Analysis of PDEs +0801.1524 Numerical Analysis +0801.1526 Representation Theory +0801.1533 Algebraic Geometry +0801.1536 Optics +0801.1538 Combinatorics +0801.1539 Phenomenology +0801.1550 +0801.1551 +0801.1559 Disordered Systems and Neural Networks +0801.1572 +0801.1574 +0801.1575 Soft Condensed Matter +0801.1581 Rings and Algebras +0801.1590 History and Philosophy of Physics +0801.1597 Superconductivity +0801.1598 Probability +0801.1600 Combinatorics +0801.1602 +0801.1611 Materials Science +0801.1612 Combinatorics +0801.1620 Geometric Topology +0801.1632 Commutative Algebra +0801.1634 Rings and Algebras +0801.1636 +0801.1648 Phenomenology +0801.1650 Quantum Algebra +0801.1654 History and Philosophy of Physics +0801.1661 Theory +math/0610787 Combinatorics +math/0703260 Probability +0704.1966 Complex Variables +0705.4674 Molecular Networks +0706.1745 Analysis of PDEs +0706.2259 Other Condensed Matter +0706.2312 Mesoscale and Nanoscale Physics +0706.3969 Soft Condensed Matter +0707.2968 +0708.3075 Logic +0709.0407 +0710.2595 Data Analysis, Statistics and Probability +0710.3310 Soft Condensed Matter +0710.4547 +0711.2506 Physics and Society +0711.2730 Cellular Automata and Lattice Gases +0712.0404 Mesoscale and Nanoscale Physics +0712.1922 Statistics Theory +0801.0247 General Physics +0801.0288 +0801.2899 Functional Analysis +0801.4967 Geometric Topology +0802.0478 Other Condensed Matter +0802.0583 Theory +0802.1700 Pattern Formation and Solitons +0802.1716 +0802.1719 Soft Condensed Matter +0802.1721 Biological Physics +0802.1722 Data Structures and Algorithms +0802.1727 +0802.1730 Complex Variables +0802.1732 +0802.1746 +0802.1756 Biological Physics +0802.1762 Populations and Evolution +0802.1764 General Mathematics +0802.1766 Optimization and Control +0802.1768 +0802.1771 Group Theory +0802.1772 Materials Science +0802.1790 Computational Complexity +0802.1796 Group Theory +0802.1798 +0802.1803 Strongly Correlated Electrons +0802.1804 Analysis of PDEs +0802.1807 Classical Analysis and ODEs +0802.1809 General Physics +0802.1818 +0802.1833 Category Theory +0802.1841 Materials Science +0802.1844 Analysis of PDEs +0802.1855 Phenomenology +0802.1860 Analysis of PDEs +0802.1862 Theory +0802.1871 General Physics +0802.1879 Optics +0802.1883 Plasma Physics +0802.1884 Computational Complexity +0802.1885 +0802.1886 Number Theory +0802.1887 Functional Analysis +0802.1888 Information Theory +0802.1892 Neurons and Cognition +0802.1893 Information Theory +0802.1896 Probability +0802.1897 Classical Physics +0802.1899 Optics +0802.1902 Neurons and Cognition +0802.1903 Neurons and Cognition +0802.1904 Neurons and Cognition +0802.1907 Neurons and Cognition +0802.1910 Number Theory +astro-ph/0211076 +astro-ph/0702580 +cond-mat/0611131 Other Condensed Matter +cond-mat/0702237 Materials Science +cs/0606075 Databases +math-ph/0601022 +math-ph/0609027 +math/0510202 Differential Geometry +math/0601522 Differential Geometry +math/0603158 Geometric Topology +math/0605571 Geometric Topology +math/0609531 Geometric Topology +math/0611927 Geometric Topology +1510.05794 Probability +1607.01618 Phenomenology +1612.02661 Phenomenology +1701.00060 +1701.03786 High Energy Astrophysical Phenomena +1701.03802 Astrophysics of Galaxies +1701.03855 Information Retrieval +1701.03897 Pricing of Securities +1701.03903 Metric Geometry +1701.03910 Instrumentation and Methods for Astrophysics +1701.03912 Atomic Physics +1701.03918 Learning +1701.03935 Applications +1701.03947 Information Retrieval +1701.03967 Numerical Analysis +1701.03972 +1701.03987 Analysis of PDEs +1701.03989 Numerical Analysis +1701.03998 Computers and Society +1701.04019 Soft Condensed Matter +1701.04023 Complex Variables +1701.04038 Phenomenology +1701.04042 Physics and Society +1701.04066 Networking and Internet Architecture +1701.04106 Classical Analysis and ODEs +1701.04132 Lattice +1701.04160 Probability +1701.04167 Risk Management +1701.04169 Representation Theory +1701.04178 High Energy Astrophysical Phenomena +1701.04201 Information Theory +1701.04204 Instrumentation and Methods for Astrophysics +1701.04215 High Energy Astrophysical Phenomena +1701.04221 Social and Information Networks +1701.04241 Physics and Society +1701.04253 Social and Information Networks +1701.04268 Optics +1701.04340 Phenomenology +1701.04354 Analysis of PDEs +1701.04394 Quantum Algebra +1701.04495 Number Theory +1701.04503 Machine Learning +1701.04518 Learning +1701.04593 Phenomenology +1701.04597 Phenomenology +1701.04659 Adaptation and Self-Organizing Systems +1701.04675 Neurons and Cognition +1701.04720 Analysis of PDEs +1701.04724 Learning +1701.04727 High Energy Astrophysical Phenomena +1701.04760 Astrophysics of Galaxies +1701.04797 Complex Variables +1701.04886 Algebraic Topology +0704.1633 Logic +0712.3072 +0805.1467 Combinatorics +0809.3178 +0906.4489 Cosmology and Nongalactic Astrophysics +1002.1112 Cosmology and Nongalactic Astrophysics +1005.3817 Cosmology and Nongalactic Astrophysics +1005.4995 High Energy Astrophysical Phenomena +1005.5353 Earth and Planetary Astrophysics +1006.2873 Cosmology and Nongalactic Astrophysics +1007.1258 Classical Physics +1008.0004 Cosmology and Nongalactic Astrophysics +1103.2910 Astrophysics of Galaxies +1106.3185 +1107.1124 +1107.2819 +1107.3849 Cosmology and Nongalactic Astrophysics +1108.1323 +1108.2448 +1109.0537 High Energy Astrophysical Phenomena +1109.2597 Cosmology and Nongalactic Astrophysics +1109.6255 +1109.6656 Cosmology and Nongalactic Astrophysics +1109.6921 Cosmology and Nongalactic Astrophysics +1110.4107 Cosmology and Nongalactic Astrophysics +1112.1461 Cosmology and Nongalactic Astrophysics +1203.6211 Quantum Gases +1206.3412 Cosmology and Nongalactic Astrophysics +1207.5840 Cosmology and Nongalactic Astrophysics +1208.2823 Differential Geometry +1208.3958 Numerical Analysis +1209.3612 Theory +1211.2688 Cosmology and Nongalactic Astrophysics +1211.5448 +1212.2256 +1212.4311 +1212.6024 +1302.4894 +1302.5165 Cosmology and Nongalactic Astrophysics +1303.1822 Phenomenology +1303.2381 +1303.3203 General Physics +1304.3823 History and Philosophy of Physics +1304.5718 Astrophysics of Galaxies +1305.5023 Instrumentation and Methods for Astrophysics +1306.0377 Numerical Analysis +1306.1826 +1306.4688 Algebraic Geometry +1306.4968 Cosmology and Nongalactic Astrophysics +1307.2280 Phenomenology +1308.0834 Cosmology and Nongalactic Astrophysics +1310.6733 Materials Science +1310.6865 Cosmology and Nongalactic Astrophysics +1310.8605 Group Theory +1311.3847 Theory +1312.1175 Cosmology and Nongalactic Astrophysics +1312.1538 +1312.4789 Group Theory +1401.1656 Number Theory +1401.3122 Solar and Stellar Astrophysics +1401.6724 Geometric Topology +1403.2725 Cosmology and Nongalactic Astrophysics +1403.6146 Astrophysics of Galaxies +1403.7463 Astrophysics of Galaxies +1403.7583 +1403.8118 Logic in Computer Science +1405.0993 Commutative Algebra +1405.1555 Cosmology and Nongalactic Astrophysics +1406.3143 Solar and Stellar Astrophysics +1406.3297 Algebraic Topology +1406.5591 Cosmology and Nongalactic Astrophysics +1407.5499 History and Overview +1407.5597 Theory +1407.5856 Quantitative Methods +1407.8512 Representation Theory +1409.1019 Numerical Analysis +1409.6996 Cosmology and Nongalactic Astrophysics +1409.8014 Theory +1410.0133 Cosmology and Nongalactic Astrophysics +1410.0367 Cosmology and Nongalactic Astrophysics +1410.3077 Strongly Correlated Electrons +1410.5598 Cosmology and Nongalactic Astrophysics +1411.4531 +1411.5653 Methodology +1412.0341 Differential Geometry +1412.6672 Quantum Gases +1501.02487 Data Structures and Algorithms +1501.03121 Algebraic Geometry +1501.04149 Differential Geometry +1501.04908 Cosmology and Nongalactic Astrophysics +1501.05820 Representation Theory +1501.06612 Algebraic Topology +1502.00903 Instrumentation and Methods for Astrophysics +1502.06284 Combinatorics +1503.02526 Algebraic Topology +1503.02627 Rings and Algebras +1503.03789 Mesoscale and Nanoscale Physics +1503.06650 Optimization and Control +1503.07797 Representation Theory +1503.08870 Logic +1504.00613 Group Theory +1504.00635 Accelerator Physics +1504.02053 Astrophysics of Galaxies +1504.04733 Algebraic Topology +1504.06671 Number Theory +1505.01748 +1505.01838 Complex Variables +1505.03490 Algebraic Topology +1505.07944 Geometric Topology +1506.00498 +1506.00629 Probability +1506.00997 Algebraic Topology +1506.07291 Optimization and Control +1506.07347 Information Theory +1507.00531 +1507.00604 Software Engineering +1507.02771 Geometric Topology +1507.03170 Astrophysics of Galaxies +1507.05354 Soft Condensed Matter +1507.05668 Algebraic Geometry +1507.06297 +1507.06708 Geometric Topology +1507.06847 Materials Science +1507.08388 Algebraic Geometry +1507.08692 +1508.00627 Dynamical Systems +1508.01049 Phenomenology +1508.01054 Mesoscale and Nanoscale Physics +1508.02636 Economics +1508.04099 +1508.04283 K-Theory and Homology +1508.06225 General Finance +1508.06469 Representation Theory +1509.00211 +1509.00508 +1509.02303 Combinatorics +1509.03984 Earth and Planetary Astrophysics +1509.04668 +1509.05055 Astrophysics of Galaxies +1509.05678 Algebraic Topology +1509.08972 Neural and Evolutionary Computing +1509.08991 +1510.01937 General Physics +1510.07184 +1510.08682 Atmospheric and Oceanic Physics +1511.00008 Astrophysics of Galaxies +1511.01095 Astrophysics of Galaxies +1511.01620 Theory +1511.03291 Algebraic Topology +1511.03775 Optics +1511.05048 +1511.05424 Instrumentation and Methods for Astrophysics +1511.06445 Algebraic Topology +1512.00353 Algebraic Topology +1512.01713 Computational Geometry +1512.02240 +1512.02664 +1512.05742 Computation and Language +1512.05924 Computational Finance +1512.06146 Solar and Stellar Astrophysics +1512.06489 Optics +1512.07765 +1512.07917 Phenomenology +1512.08203 Representation Theory +1512.08831 Data Structures and Algorithms +1601.01120 Optics +1601.01931 Group Theory +1601.02586 Classical Analysis and ODEs +1601.03634 Representation Theory +1601.04123 Algebraic Topology +1601.04228 Phenomenology +1601.04834 Solar and Stellar Astrophysics +1601.05453 Theory +1601.05550 High Energy Astrophysical Phenomena +1601.05890 Methodology +1601.06398 Algebraic Topology +1601.07186 Astrophysics of Galaxies +1601.07343 Combinatorics +1601.07609 Superconductivity +1602.00608 +1602.01386 Geometric Topology +1602.01791 Algebraic Geometry +1602.02349 +1602.02867 Artificial Intelligence +1602.03134 +1602.03144 Representation Theory +1602.03804 High Energy Astrophysical Phenomena +1602.05158 High Energy Astrophysical Phenomena +1602.05544 Analysis of PDEs +1602.06209 Information Theory +1602.06618 Algebraic Topology +1602.06737 Populations and Evolution +1603.01148 Theory +1603.01737 Spectral Theory +1603.02256 Cosmology and Nongalactic Astrophysics +1603.02796 Group Theory +1603.03510 Computation +1603.04016 Strongly Correlated Electrons +1603.06765 Computer Vision and Pattern Recognition +1603.08639 Dynamical Systems +1603.09741 Strongly Correlated Electrons +1604.00455 Solar and Stellar Astrophysics +1604.00596 Mathematical Finance +1604.00981 Learning +1604.01163 Quantum Gases +1604.01311 Commutative Algebra +1604.01612 Algebraic Geometry +1604.01956 Solar and Stellar Astrophysics +1604.02272 +1604.02492 Learning +1604.03422 Materials Science +1604.06206 Symplectic Geometry +1604.06666 Superconductivity +1604.06868 Theory +1604.07435 Astrophysics of Galaxies +1604.07719 Solar and Stellar Astrophysics +1604.08511 Strongly Correlated Electrons +1604.08676 High Energy Astrophysical Phenomena +1604.08837 Representation Theory +1605.00633 Phenomenology +1605.00757 Algebraic Geometry +1605.01881 +1605.03420 Mesoscale and Nanoscale Physics +1605.04221 Neurons and Cognition +1605.04886 Numerical Analysis +1605.05374 Cosmology and Nongalactic Astrophysics +1605.05435 Statistical Mechanics +1605.05833 Optimization and Control +1605.08046 Astrophysics of Galaxies +1605.08522 Astrophysics of Galaxies +1605.08845 Astrophysics of Galaxies +1606.01008 Phenomenology +1606.01207 Astrophysics of Galaxies +1606.01988 Theory +1606.03092 Cosmology and Nongalactic Astrophysics +1606.03522 Earth and Planetary Astrophysics +1606.03625 Numerical Analysis +1606.03896 Quantum Gases +1606.04021 +1606.04036 Software Engineering +1606.04546 Theory +1606.04977 +1606.05088 Superconductivity +1606.05265 +1606.05352 Astrophysics of Galaxies +1606.05392 +1606.05470 Algebraic Geometry +1606.06191 Phenomenology +1606.07442 Instrumentation and Methods for Astrophysics +1606.07815 Astrophysics of Galaxies +1606.07987 Fluid Dynamics +1606.08022 Data Structures and Algorithms +1606.08473 Strongly Correlated Electrons +1606.09098 Theory +1606.09284 Cell Behavior +1607.00447 Astrophysics of Galaxies +1607.00606 Quantum Algebra +1607.00611 Phenomenology +1607.01049 Cosmology and Nongalactic Astrophysics +1607.02087 Spectral Theory +1607.02204 Computer Vision and Pattern Recognition +1607.02211 High Energy Astrophysical Phenomena +1607.02294 +1607.02600 Cosmology and Nongalactic Astrophysics +1607.02793 Optimization and Control +1607.03275 Algebraic Geometry +1607.03883 Solar and Stellar Astrophysics +1607.04233 Combinatorics +1607.04313 Optics +1607.04562 Phenomenology +1607.04610 Phenomenology +1607.04713 Theory +1607.05333 +1607.06099 Astrophysics of Galaxies +1607.06277 Mesoscale and Nanoscale Physics +1607.06291 Combinatorics +1607.06464 Astrophysics of Galaxies +1607.06627 Numerical Analysis +1607.07115 Statistical Mechanics +1607.07236 Phenomenology +1607.07315 Fluid Dynamics +1607.07476 Astrophysics of Galaxies +1607.08057 Phenomenology +1607.08199 Algebraic Geometry +1607.08260 Algebraic Geometry +1607.08422 Quantum Algebra +1607.08879 +1608.00496 Optics +1608.00523 Phenomenology +1608.00559 +1608.01060 Theory +1608.02114 Astrophysics of Galaxies +1608.02380 Theory +1608.02682 Artificial Intelligence +1608.04447 Optics +1608.04576 Theory +1608.04617 Phenomenology +1608.04819 Numerical Analysis +1608.04832 Economics +1608.04881 Operator Algebras +1608.04922 Theory +1608.05877 Materials Science +1608.06436 Mesoscale and Nanoscale Physics +1608.06788 Materials Science +1608.07654 Analysis of PDEs +1608.08110 Lattice +1608.08624 +1608.08646 Information Retrieval +1608.08950 Mesoscale and Nanoscale Physics +1608.08966 +1609.00022 Solar and Stellar Astrophysics +1609.00258 Phenomenology +1609.01234 Mesoscale and Nanoscale Physics +1609.01267 Dynamical Systems +1609.01284 Cosmology and Nongalactic Astrophysics +1609.01293 High Energy Astrophysical Phenomena +1609.01320 Probability +1609.01424 +1609.01681 Plasma Physics +1609.01946 Theory +1609.02045 +1609.02061 Cosmology and Nongalactic Astrophysics +1609.02205 Functional Analysis +1609.02274 Materials Science +1609.02294 +1609.02439 +1609.02685 Functional Analysis +1609.03400 Applications +1609.03886 Phenomenology +1609.03887 Instrumentation and Detectors +1609.03947 Computer Vision and Pattern Recognition +1609.04294 Chemical Physics +1609.04444 High Energy Astrophysical Phenomena +1609.04475 Analysis of PDEs +1609.04686 High Energy Astrophysical Phenomena +1609.04696 +1609.04814 Astrophysics of Galaxies +1609.04838 Phenomenology +1609.04997 +1609.05362 Networking and Internet Architecture +1609.05624 Phenomenology +1609.06114 +1609.06138 Astrophysics of Galaxies +1609.06938 Astrophysics of Galaxies +1609.07065 Logic in Computer Science +1609.07159 Astrophysics of Galaxies +1609.07208 Phenomenology +1609.07427 Information Theory +1609.07445 Experiment +1609.07467 Analysis of PDEs +1609.07956 Plasma Physics +1609.07989 Solar and Stellar Astrophysics +1609.08090 +1609.08316 Mesoscale and Nanoscale Physics +1609.08613 Cosmology and Nongalactic Astrophysics +1609.08917 Astrophysics of Galaxies +1609.09001 Robotics +1609.09073 Astrophysics of Galaxies +1609.09170 Populations and Evolution +1609.09653 +1609.09820 Theory +1610.00073 Materials Science +1610.00138 +1610.00398 Fluid Dynamics +1610.00414 Optics +1610.00700 Robotics +1610.00719 Astrophysics of Galaxies +1610.00772 Astrophysics of Galaxies +1610.01057 Astrophysics of Galaxies +1610.01281 Combinatorics +1610.02046 Astrophysics of Galaxies +1610.02049 Earth and Planetary Astrophysics +1610.02080 Statistics Theory +1610.02364 Logic in Computer Science +1610.02507 Optics +1610.02510 Theory +1610.02859 Mesoscale and Nanoscale Physics +1610.02955 Optimization and Control +1610.02973 +1610.03127 Algebraic Topology +1610.03351 Cosmology and Nongalactic Astrophysics +1610.03473 Mesoscale and Nanoscale Physics +1610.03861 High Energy Astrophysical Phenomena +1610.04044 Number Theory +1610.04167 Learning +1610.04222 Experiment +1610.04244 +1610.04292 High Energy Astrophysical Phenomena +1610.04320 Solar and Stellar Astrophysics +1610.04413 Theory +1610.04615 Astrophysics of Galaxies +1610.04721 Optics +1610.04753 Astrophysics of Galaxies +1610.04862 Cosmology and Nongalactic Astrophysics +1610.04866 Pattern Formation and Solitons +1610.05486 Phenomenology +1610.06590 Astrophysics of Galaxies +1610.06611 High Energy Astrophysical Phenomena +1610.06649 Phenomenology +1610.06737 Phenomenology +1610.06762 Neurons and Cognition +1610.06854 +1610.06863 Optimization and Control +1610.06911 Statistical Mechanics +1610.07277 Biomolecules +1610.07285 Dynamical Systems +1610.07401 +1610.07429 Physics and Society +1610.07586 Statistical Mechanics +1610.07610 Astrophysics of Galaxies +1610.07631 Soft Condensed Matter +1610.07659 Classical Physics +1610.07814 +1610.07861 Statistical Mechanics +1610.08029 Cosmology and Nongalactic Astrophysics +1610.08092 High Energy Astrophysical Phenomena +1610.08102 High Energy Astrophysical Phenomena +1610.08447 Mesoscale and Nanoscale Physics +1610.08555 Astrophysics of Galaxies +1610.08561 +1610.08683 Phenomenology +1610.08867 Differential Geometry +1610.08939 Earth and Planetary Astrophysics +1610.09006 Theory +1610.09007 Solar and Stellar Astrophysics +1610.09061 High Energy Astrophysical Phenomena +1610.09388 Applications +1610.09458 Quantum Gases +1610.09634 Mesoscale and Nanoscale Physics +1610.10081 Phenomenology +1611.00065 Learning +1611.00171 Populations and Evolution +1611.00219 +1611.00471 Computer Vision and Pattern Recognition +1611.00689 Chemical Physics +1611.00787 Theory +1611.00794 Astrophysics of Galaxies +1611.00888 Atomic Physics +1611.01716 +1611.01806 Strongly Correlated Electrons +1611.02197 Geometric Topology +1611.02226 Chaotic Dynamics +1611.02558 Numerical Analysis +1611.02571 Statistics Theory +1611.02575 Astrophysics of Galaxies +1611.02780 +1611.02798 Earth and Planetary Astrophysics +1611.03100 +1611.03128 Earth and Planetary Astrophysics +1611.03510 Astrophysics of Galaxies +1611.03734 +1611.03865 Astrophysics of Galaxies +1611.03871 Earth and Planetary Astrophysics +1611.03987 Lattice +1611.04039 +1611.04040 Experiment +1611.04071 +1611.04600 Astrophysics of Galaxies +1611.04756 Statistical Mechanics +1611.04776 Geophysics +1611.04849 Computer Vision and Pattern Recognition +1611.05293 Accelerator Physics +1611.05447 Cosmology and Nongalactic Astrophysics +1611.05610 Algebraic Geometry +1611.06033 Theory +1611.06251 Mesoscale and Nanoscale Physics +1611.06698 Statistical Mechanics +1611.06819 Quantum Algebra +1611.06932 +1611.06988 High Energy Astrophysical Phenomena +1611.07026 Astrophysics of Galaxies +1611.07364 Atomic Physics +1611.07455 +1611.07456 Atomic Physics +1611.07496 +1611.07542 +1611.07595 Theory +1611.07602 +1611.08365 Adaptation and Self-Organizing Systems +1611.08511 Phenomenology +1611.08541 Logic in Computer Science +1611.08606 Cosmology and Nongalactic Astrophysics +1611.08608 Earth and Planetary Astrophysics +1611.08906 Computer Vision and Pattern Recognition +1611.08928 Neurons and Cognition +1611.09355 Phenomenology +1611.09365 High Energy Astrophysical Phenomena +1611.09552 Quantum Gases +1611.09776 +1611.09813 Computer Vision and Pattern Recognition +1611.10062 Superconductivity +1611.10256 Pattern Formation and Solitons +1612.00013 Astrophysics of Galaxies +1612.00197 Computer Vision and Pattern Recognition +1612.00620 Experiment +1612.00695 Plasma Physics +1612.00717 +1612.00849 Strongly Correlated Electrons +1612.01135 Theory +1612.01259 +1612.01377 +1612.01529 Astrophysics of Galaxies +1612.01759 Analysis of PDEs +1612.01764 Astrophysics of Galaxies +1612.01786 Astrophysics of Galaxies +1612.01826 +1612.02004 Cosmology and Nongalactic Astrophysics +1612.02050 Optics +1612.02103 Computer Vision and Pattern Recognition +1612.02131 Quantum Gases +1612.02306 Strongly Correlated Electrons +1612.02347 Cosmology and Nongalactic Astrophysics +1612.02386 Chemical Physics +1612.02613 Phenomenology +1612.02841 Phenomenology +1612.02846 Strongly Correlated Electrons +1612.03014 +1612.03474 Optics +1612.03509 Phenomenology +1612.03530 Computer Vision and Pattern Recognition +1612.03533 Atomic Physics +1612.03619 Superconductivity +1612.03664 Earth and Planetary Astrophysics +1612.03817 Superconductivity +1612.03920 Astrophysics of Galaxies +1612.03996 +1612.04073 Algebraic Topology +1612.04132 Phenomenology +1612.04155 High Energy Astrophysical Phenomena +1612.04262 Phenomenology +1612.04416 Phenomenology +1612.04483 Experiment +1612.04795 +1612.04956 Computer Vision and Pattern Recognition +1612.05012 Theory +1612.05092 +1612.05203 Computer Vision and Pattern Recognition +1612.05425 Optimization and Control +1612.06015 Chaotic Dynamics +1612.06137 Numerical Analysis +1612.06254 Phenomenology +1612.06864 Superconductivity +1612.07037 Solar and Stellar Astrophysics +1612.07054 Solar and Stellar Astrophysics +1612.07075 Phenomenology +1612.07251 Theory +1612.07260 Cosmology and Nongalactic Astrophysics +1612.07300 Atomic Physics +1612.07343 Materials Science +1612.07449 Atomic Physics +1612.07494 Solar and Stellar Astrophysics +1612.07515 Statistical Mechanics +1612.07541 Phenomenology +1612.07622 Solar and Stellar Astrophysics +1612.07626 High Energy Astrophysical Phenomena +1612.07787 Phenomenology +1612.07886 Quantum Gases +1612.08334 Cosmology and Nongalactic Astrophysics +1612.08399 Lattice +1612.08508 Theory +1612.08538 Phenomenology +1612.08564 Soft Condensed Matter +1612.08582 Instrumentation and Detectors +1612.08847 Metric Geometry +1612.09275 Mesoscale and Nanoscale Physics +1612.09370 Solar and Stellar Astrophysics +1612.09507 Space Physics +1701.00079 +1701.00312 Astrophysics of Galaxies +1701.00489 Solar and Stellar Astrophysics +1701.00556 Solar and Stellar Astrophysics +1701.00579 Data Analysis, Statistics and Probability +1701.00975 Solar and Stellar Astrophysics +1701.01069 High Energy Astrophysical Phenomena +1701.01080 Phenomenology +1701.01159 High Energy Astrophysical Phenomena +1701.01200 +1701.01445 Cosmology and Nongalactic Astrophysics +1701.01475 Instrumentation and Methods for Astrophysics +1701.01604 Astrophysics of Galaxies +1701.01856 Experiment +1701.01916 Phenomenology +1701.02087 Optics +1701.02276 Fluid Dynamics +1701.02352 Earth and Planetary Astrophysics +1701.02685 Astrophysics of Galaxies +1701.03201 Mesoscale and Nanoscale Physics +1701.03269 +1701.03289 Probability +1701.03433 Mesoscale and Nanoscale Physics +1701.03680 Mesoscale and Nanoscale Physics +1701.03690 Strongly Correlated Electrons +1701.03876 +1701.03949 Cosmology and Nongalactic Astrophysics +1701.04305 Astrophysics of Galaxies +1701.04393 +1701.04630 +1701.04733 Distributed, Parallel, and Cluster Computing +1701.04753 Statistical Mechanics +1701.04829 Astrophysics of Galaxies +1701.05019 Instrumentation and Methods for Astrophysics +1701.05021 Atomic Physics +1701.05096 Materials Science +1701.05207 Astrophysics of Galaxies +1701.05337 Cosmology and Nongalactic Astrophysics +1701.05403 Distributed, Parallel, and Cluster Computing +1701.05416 Strongly Correlated Electrons +1701.05491 +1701.05545 +1701.05561 Astrophysics of Galaxies +1701.05765 Solar and Stellar Astrophysics +1701.05898 Astrophysics of Galaxies +1701.05932 Mesoscale and Nanoscale Physics +1701.06352 Atomic Physics +1701.06402 Theory +1701.06419 +1701.06602 Superconductivity +1701.06774 High Energy Astrophysical Phenomena +1701.06805 Computer Vision and Pattern Recognition +1701.06947 Phenomenology +1701.07030 High Energy Astrophysical Phenomena +1701.07031 Astrophysics of Galaxies +1701.07191 Experiment +1701.07461 +1701.07679 Solar and Stellar Astrophysics +1701.07742 Number Theory +1701.07876 Strongly Correlated Electrons +1701.07971 Strongly Correlated Electrons +1701.07978 Astrophysics of Galaxies +1701.08171 Algebraic Geometry +1701.08177 High Energy Astrophysical Phenomena +1701.08258 Earth and Planetary Astrophysics +1701.08294 Symbolic Computation +1701.08319 Astrophysics of Galaxies +1701.08401 Learning +1701.08522 Astrophysics of Galaxies +1701.08609 Classical Analysis and ODEs +1701.08637 Solar and Stellar Astrophysics +1701.08656 Solar and Stellar Astrophysics +1701.08686 Quantum Gases +1701.08725 Mesoscale and Nanoscale Physics +1701.08741 Solar and Stellar Astrophysics +1701.08750 Phenomenology +1701.08881 High Energy Astrophysical Phenomena +1701.08887 Astrophysics of Galaxies +1701.08981 Systems and Control +1701.09166 Phenomenology +1702.00029 Solar and Stellar Astrophysics +1702.00100 Astrophysics of Galaxies +1702.00415 Astrophysics of Galaxies +1702.00426 Phenomenology +1702.00685 High Energy Astrophysical Phenomena +1702.00795 Cosmology and Nongalactic Astrophysics +1702.00808 High Energy Astrophysical Phenomena +1702.00967 Solar and Stellar Astrophysics +1702.01026 High Energy Astrophysical Phenomena +1702.01120 Astrophysics of Galaxies +1702.01157 Astrophysics of Galaxies +1702.01177 Astrophysics of Galaxies +1702.01288 +1702.01320 Theory +1702.01501 Astrophysics of Galaxies +1702.01547 Astrophysics of Galaxies +1702.01551 Experiment +1702.01647 Solar and Stellar Astrophysics +1702.01663 Phenomenology +1702.01693 Lattice +1702.01697 Space Physics +1702.01782 Astrophysics of Galaxies +1702.01797 Solar and Stellar Astrophysics +1702.02038 Instrumentation and Detectors +1702.02094 Earth and Planetary Astrophysics +1702.02127 High Energy Astrophysical Phenomena +1702.02167 High Energy Astrophysical Phenomena +1702.02306 Solar and Stellar Astrophysics +1702.02349 +1702.02354 High Energy Astrophysical Phenomena +1702.02487 Astrophysics of Galaxies +1702.02504 High Energy Astrophysical Phenomena +1702.02618 Astrophysics of Galaxies +1702.02691 Astrophysics of Galaxies +1702.02857 High Energy Astrophysical Phenomena +1702.02948 Theory +1702.03002 Astrophysics of Galaxies +1702.03132 Cosmology and Nongalactic Astrophysics +1702.03141 Astrophysics of Galaxies +1702.03163 Theory +1702.03211 High Energy Astrophysical Phenomena +1702.03282 Astrophysics of Galaxies +1702.03321 Solar and Stellar Astrophysics +1702.03384 Functional Analysis +1702.03529 Astrophysics of Galaxies +1702.03616 High Energy Astrophysical Phenomena +1702.03852 Astrophysics of Galaxies +1702.03876 Fluid Dynamics +1702.03943 Phenomenology +1702.04255 Astrophysics of Galaxies +1702.04355 Astrophysics of Galaxies +1702.04358 Astrophysics of Galaxies +1702.04727 Astrophysics of Galaxies +1702.04729 Astrophysics of Galaxies +1702.04745 Combinatorics +1702.04820 Astrophysics of Galaxies +1702.05249 Geophysics +1702.05559 Cosmology and Nongalactic Astrophysics +1702.05670 Statistical Mechanics +1702.05698 Learning +1702.05831 High Energy Astrophysical Phenomena +1702.06026 Astrophysics of Galaxies +1702.06123 Astrophysics of Galaxies +1702.06126 Astrophysics of Galaxies +1702.06558 Phenomenology +1702.06642 +1702.06644 Astrophysics of Galaxies +1702.06724 Sound +1702.06984 Solar and Stellar Astrophysics +1702.07070 Strongly Correlated Electrons +1702.07087 Solar and Stellar Astrophysics +1702.07106 Data Analysis, Statistics and Probability +1702.07167 Solar and Stellar Astrophysics +1702.07349 Astrophysics of Galaxies +1702.07352 Earth and Planetary Astrophysics +1702.07416 Atomic Physics +1702.07641 Astrophysics of Galaxies +1702.07761 Group Theory +1702.07988 Earth and Planetary Astrophysics +1702.08026 Probability +1702.08119 Algebraic Topology +1702.08244 Cosmology and Nongalactic Astrophysics +1702.08263 Instrumentation and Detectors +1702.08527 Astrophysics of Galaxies +1702.08910 +1703.00074 Mesoscale and Nanoscale Physics +1703.00177 Computer Vision and Pattern Recognition +1703.00311 Computer Vision and Pattern Recognition +1703.00322 Quantum Gases +1703.00401 Phenomenology +1703.00621 Instrumentation and Methods for Astrophysics +1703.00629 Cosmology and Nongalactic Astrophysics +1703.00655 Earth and Planetary Astrophysics +1703.00665 Solar and Stellar Astrophysics +1703.00680 High Energy Astrophysical Phenomena +1703.00835 Robotics +1703.01355 Theory +1703.01366 +1703.01407 Earth and Planetary Astrophysics +1703.01412 Mesoscale and Nanoscale Physics +1703.01448 Fluid Dynamics +1703.01681 Emerging Technologies +1703.01762 Algebraic Geometry +1703.01912 Classical Analysis and ODEs +1703.01984 Risk Management +1703.02006 Combinatorics +1703.02065 Learning +1703.02086 Solar and Stellar Astrophysics +1703.02270 Mesoscale and Nanoscale Physics +1703.02323 +1703.02395 Solar and Stellar Astrophysics +1703.02406 Solar and Stellar Astrophysics +1703.02661 Astrophysics of Galaxies +1703.03114 Phenomenology +1703.03321 Representation Theory +1703.03443 +1703.03562 Theory +1703.03653 Solar and Stellar Astrophysics +1703.03779 Cryptography and Security +1703.03791 Group Theory +1703.03799 Combinatorics +1703.04226 High Energy Astrophysical Phenomena +1703.04235 Phenomenology +1703.04458 Theory +1703.04465 +1703.04593 Disordered Systems and Neural Networks +1703.04650 Computation and Language +1703.04680 Optimization and Control +1703.04712 Solar and Stellar Astrophysics +1703.04755 Materials Science +1703.04825 Cosmology and Nongalactic Astrophysics +1703.04901 Social and Information Networks +1703.05070 Algebraic Topology +1703.05159 Solar and Stellar Astrophysics +1703.05161 Computer Vision and Pattern Recognition +1703.05190 Operator Algebras +1703.05193 High Energy Astrophysical Phenomena +1703.05240 Multiagent Systems +1703.05247 Astrophysics of Galaxies +1703.05333 +1703.05371 Instrumentation and Detectors +1703.05425 Disordered Systems and Neural Networks +1703.05489 Fluid Dynamics +1703.05640 +1703.05687 Applications +1703.05693 Computer Vision and Pattern Recognition +1703.05708 Mesoscale and Nanoscale Physics +1703.05728 Astrophysics of Galaxies +1703.05793 Combinatorics +1703.05801 Operator Algebras +1703.05824 Cosmology and Nongalactic Astrophysics +1703.05848 Theory +1703.05887 Solar and Stellar Astrophysics +1703.05926 Applications +1703.06053 Data Structures and Algorithms +1703.06125 Software Engineering +1703.06207 Artificial Intelligence +1703.06208 High Energy Astrophysical Phenomena +1703.06220 Spectral Theory +1703.06261 Robotics +1703.06274 Optics +1703.06321 Artificial Intelligence +1703.06343 Fluid Dynamics +1703.06433 +1703.06547 Information Theory +1703.06585 Computer Vision and Pattern Recognition +1703.06650 Atomic and Molecular Clusters +1703.06665 Algebraic Geometry +1703.06670 Neurons and Cognition +1703.06684 +1703.06781 +1703.06841 Analysis of PDEs +1703.06875 Astrophysics of Galaxies +1703.06877 Fluid Dynamics +1703.06880 Superconductivity +1703.06881 Phenomenology +1703.06882 Strongly Correlated Electrons +1703.06883 Earth and Planetary Astrophysics +1703.06884 Phenomenology +1703.06885 Earth and Planetary Astrophysics +1703.06886 Cosmology and Nongalactic Astrophysics +1703.06887 Phenomenology +1703.06888 Astrophysics of Galaxies +1703.06889 Astrophysics of Galaxies +1703.06890 Disordered Systems and Neural Networks +1703.06892 Phenomenology +1703.06893 Solar and Stellar Astrophysics +1703.06894 Mesoscale and Nanoscale Physics +1703.06895 Solar and Stellar Astrophysics +1703.06896 Phenomenology +1703.06897 High Energy Astrophysical Phenomena +1703.06899 Algebraic Geometry +1703.06901 High Energy Astrophysical Phenomena +1703.06902 Sound +1703.06903 Phenomenology +1703.06904 Strongly Correlated Electrons +1703.06906 Chemical Physics +1703.06907 Robotics +1703.06908 Logic +1703.06910 Soft Condensed Matter +1703.06911 General Physics +1703.06912 Machine Learning +1703.06913 Phenomenology +1703.06914 Learning +1703.06915 +1703.06916 Instrumentation and Methods for Astrophysics +1703.06919 +1703.06920 Probability +1703.06921 Astrophysics of Galaxies +1703.06922 Probability +1703.06924 Earth and Planetary Astrophysics +1703.06925 Learning +1703.06926 Metric Geometry +1703.06927 Superconductivity +1703.06928 Phenomenology +1703.06929 Astrophysics of Galaxies +1703.06930 Systems and Control +1703.06931 Computer Vision and Pattern Recognition +1703.06932 +1703.06934 Neural and Evolutionary Computing +1703.06936 Earth and Planetary Astrophysics +1703.06937 Astrophysics of Galaxies +1703.06939 Artificial Intelligence +1703.06940 Chemical Physics +1703.06941 Information Theory +1703.06943 Differential Geometry +1703.06944 Geometric Topology +1703.06945 Differential Geometry +1703.06946 Applications +1703.06947 Earth and Planetary Astrophysics +1703.06948 Solar and Stellar Astrophysics +1703.06949 Classical Analysis and ODEs +1703.06950 Chaotic Dynamics +1703.06951 Functional Analysis +1703.06952 Geometric Topology +1703.06953 Computer Vision and Pattern Recognition +1703.06954 Astrophysics of Galaxies +1703.06955 Algebraic Geometry +1703.06956 Optimization and Control +1703.06957 Applications +1703.06958 Computational Physics +1703.06960 Combinatorics +1703.06961 Instrumentation and Detectors +1703.06962 Analysis of PDEs +1703.06963 Analysis of PDEs +1703.06964 Strongly Correlated Electrons +1703.06965 Number Theory +1703.06966 Computational Physics +1703.06967 Networking and Internet Architecture +1703.06968 High Energy Astrophysical Phenomena +1703.06969 Mathematical Finance +1703.06970 +1703.06971 Computer Vision and Pattern Recognition +1703.06972 Optics +1703.06973 Number Theory +1703.06974 Number Theory +1703.06975 Machine Learning +1703.06976 Metric Geometry +1703.06977 Algebraic Geometry +1703.06978 Methodology +1703.06979 Group Theory +1703.06980 Atomic Physics +1703.06981 Chemical Physics +1703.06984 Optics +1703.06986 Cryptography and Security +1703.06987 Numerical Analysis +1703.06988 Social and Information Networks +1703.06989 Strongly Correlated Electrons +1703.06990 Learning +1703.06991 Mesoscale and Nanoscale Physics +1703.06992 Networking and Internet Architecture +1703.06994 Experiment +1703.06995 Computer Vision and Pattern Recognition +1703.06996 Mesoscale and Nanoscale Physics +1703.06997 Earth and Planetary Astrophysics +1703.06998 Analysis of PDEs +1703.06999 Materials Science +1703.07001 Data Analysis, Statistics and Probability +1703.07003 Group Theory +1703.07004 Learning +1703.07005 High Energy Astrophysical Phenomena +1703.07006 Solar and Stellar Astrophysics +1703.07007 Numerical Analysis +1703.07008 Combinatorics +1703.07009 Methodology +1703.07010 Number Theory +1703.07012 Social and Information Networks +1703.07013 Analysis of PDEs +1703.07014 Optics +1703.07015 Learning +1703.07016 Number Theory +1703.07017 Physics Education +1703.07018 Materials Science +1703.07019 Software Engineering +1703.07021 Probability +1703.07025 Optimization and Control +1703.07026 Learning +1703.07027 Learning +1703.07029 Astrophysics of Galaxies +1703.07030 Applications +1703.07031 Solar and Stellar Astrophysics +1703.07032 Optics +1703.07033 Software Engineering +1703.07034 Software Engineering +1703.07035 Information Theory +1703.07036 Software Engineering +1703.07037 Software Engineering +1703.07038 Fluid Dynamics +1703.07039 Computation +1703.07040 Superconductivity +1703.07041 Information Theory +1703.07042 Algebraic Geometry +1703.07044 Statistics Theory +1703.07045 Chaotic Dynamics +1703.07046 Mesoscale and Nanoscale Physics +1703.07047 Computer Vision and Pattern Recognition +1703.07048 Systems and Control +1703.07049 Systems and Control +1703.07051 Information Theory +1703.07053 Information Theory +1703.07055 Computation and Language +1703.07056 Machine Learning +1703.07057 Mesoscale and Nanoscale Physics +1703.07058 Combinatorics +1703.07059 +1703.07061 Functional Analysis +1703.07062 Materials Science +1703.07064 Rings and Algebras +1703.07065 Sound +1703.07067 Statistical Mechanics +1703.07068 Systems and Control +1703.07069 Algebraic Geometry +1703.07070 Cosmology and Nongalactic Astrophysics +1703.07071 Systems and Control +1703.07072 Statistics Theory +1703.07073 Operator Algebras +1703.07074 Information Theory +1703.07075 Artificial Intelligence +1703.07076 Learning +1703.07077 Numerical Analysis +1703.07078 High Energy Astrophysical Phenomena +1703.07079 Networking and Internet Architecture +1703.07080 Popular Physics +1703.07081 Probability +1703.07082 Information Theory +1703.07083 Optimization and Control +1703.07084 Atomic Physics +1703.07085 Soft Condensed Matter +1703.07086 Strongly Correlated Electrons +1703.07087 Differential Geometry +1703.07088 Information Theory +1703.07089 Information Theory +1703.07090 Computation and Language +1703.07093 Dynamical Systems +1703.07094 Optimization and Control +1703.07095 Strongly Correlated Electrons +1703.07096 Atomic Physics +1703.07097 Combinatorics +1703.07098 Algebraic Topology +1703.07099 Combinatorics +1703.07100 Mesoscale and Nanoscale Physics +1703.07102 Probability +1703.07103 Operator Algebras +1703.07104 Digital Libraries +1703.07105 Solar and Stellar Astrophysics +1703.07106 Combinatorics +1703.07107 Data Structures and Algorithms +1703.07108 Instrumentation and Detectors +1703.07110 +1703.07111 Analysis of PDEs +1703.07112 Phenomenology +1703.07113 Mesoscale and Nanoscale Physics +1703.07114 Optics +1703.07115 Learning +1703.07116 Databases +1703.07117 Data Analysis, Statistics and Probability +1703.07118 High Energy Astrophysical Phenomena +1703.07119 Mesoscale and Nanoscale Physics +1703.07120 Numerical Analysis +1703.07121 Astrophysics of Galaxies +1703.07122 Neural and Evolutionary Computing +1703.07123 Complex Variables +1703.07124 Earth and Planetary Astrophysics +1703.07126 Functional Analysis +1703.07127 Phenomenology +1703.07128 Materials Science +1703.07129 Optics +1703.07130 Numerical Analysis +1703.07131 Computer Vision and Pattern Recognition +1703.07132 Materials Science +1703.07134 Optics +1703.07135 Systems and Control +1703.07136 Phenomenology +1703.07137 Applications +1703.07139 Networking and Internet Architecture +1703.07140 Computer Vision and Pattern Recognition +1703.07141 Experiment +1703.07142 Algebraic Topology +1703.07143 Mesoscale and Nanoscale Physics +1703.07144 Computer Vision and Pattern Recognition +1703.07145 Probability +1703.07147 Algebraic Geometry +1703.07148 Rings and Algebras +1703.07149 Combinatorics +1703.07150 Distributed, Parallel, and Cluster Computing +1703.07151 Soft Condensed Matter +1703.07152 Instrumentation and Methods for Astrophysics +1703.07153 Astrophysics of Galaxies +1703.07154 Materials Science +1703.07155 Optics +1703.07156 Mesoscale and Nanoscale Physics +1703.07157 Dynamical Systems +1703.07158 Atomic Physics +1703.07160 Analysis of PDEs +1703.07161 Cosmology and Nongalactic Astrophysics +1703.07162 Computers and Society +1703.07164 Analysis of PDEs +1703.07165 Theory +1703.07166 Information Theory +1703.07167 Graphics +1703.07168 Machine Learning +1703.07169 Methodology +1703.07170 Discrete Mathematics +1703.07171 Optimization and Control +1703.07172 Sound +1703.07173 Algebraic Geometry +1703.07174 Phenomenology +1703.07175 Dynamical Systems +1703.07176 Phenomenology +1703.07177 Functional Analysis +1703.07178 Earth and Planetary Astrophysics +1703.07180 Probability +1703.07181 Commutative Algebra +1703.07182 High Energy Astrophysical Phenomena +1703.07183 Phenomenology +1703.07184 Computational Complexity +1703.07185 Computers and Society +1703.07187 Human-Computer Interaction +1703.07188 Astrophysics of Galaxies +1703.07189 Statistical Mechanics +1703.07190 Materials Science +1703.07192 Chemical Physics +1703.07193 Astrophysics of Galaxies +1703.07194 General Literature +1703.07196 Algebraic Geometry +1703.07197 Dynamical Systems +1703.07198 Machine Learning +1703.07199 Commutative Algebra +1703.07201 Differential Geometry +1703.07202 Strongly Correlated Electrons +1703.07203 Algebraic Geometry +1703.07204 Chemical Physics +1703.07205 Medical Physics +1703.07206 Mathematical Software +1703.07208 Solar and Stellar Astrophysics +1703.07209 Computational Physics +1703.07211 Probability +1703.07212 Strongly Correlated Electrons +1703.07213 Databases +1703.07214 Instrumentation and Detectors +1703.07215 Systems and Control +1703.07216 Systems and Control +1703.07217 Exactly Solvable and Integrable Systems +1703.07218 Computational Engineering, Finance, and Science +1703.07219 Instrumentation and Detectors +1703.07220 Computer Vision and Pattern Recognition +1703.07221 High Energy Astrophysical Phenomena +1703.07222 Quantum Gases +1703.07223 General Physics +1703.07224 Dynamical Systems +1703.07225 Cosmology and Nongalactic Astrophysics +1703.07226 Representation Theory +1703.07227 Materials Science +1703.07228 Analysis of PDEs +1703.07229 Mesoscale and Nanoscale Physics +1703.07230 Numerical Analysis +1703.07231 Computational Engineering, Finance, and Science +1703.07232 Astrophysics of Galaxies +1703.07233 Statistics Theory +1703.07234 Probability +1703.07235 Astrophysics of Galaxies +1703.07236 General Physics +1703.07237 Algebraic Geometry +1703.07238 Representation Theory +1703.07239 General Physics +1703.07240 Materials Science +1703.07241 Number Theory +1703.07242 Phenomenology +1703.07243 Complex Variables +1703.07244 Data Structures and Algorithms +1703.07246 Methodology +1703.07247 Data Structures and Algorithms +1703.07248 Superconductivity +1703.07249 +1703.07250 Optics +1703.07251 Combinatorics +1703.07252 Optimization and Control +1703.07253 Differential Geometry +1703.07254 Atmospheric and Oceanic Physics +1703.07256 Applications +1703.07257 Geometric Topology +1703.07258 Analysis of PDEs +1703.07259 Probability +1703.07260 Mesoscale and Nanoscale Physics +1703.07261 Robotics +1703.07262 Combinatorics +1703.07263 Number Theory +1703.07264 Representation Theory +1703.07265 Analysis of PDEs +1703.07266 Rings and Algebras +1703.07267 +1703.07268 Number Theory +1703.07269 Optimization and Control +1703.07271 Mesoscale and Nanoscale Physics +1703.07272 Probability +1703.07273 Rings and Algebras +1703.07274 Theory +1703.07275 Quantum Algebra +1703.07276 Probability +1703.07277 Symplectic Geometry +1703.07278 +1703.07279 Algebraic Geometry +1703.07280 Optimization and Control +1703.07281 Statistics Theory +1703.07282 +1703.07284 +1703.07285 Machine Learning +1703.07286 Neural and Evolutionary Computing +1703.07287 Optics +1703.07288 Representation Theory +1703.07289 Dynamical Systems +1703.07290 Data Structures and Algorithms +1703.07292 Materials Science +1703.07293 Analysis of PDEs +1703.07294 Solar and Stellar Astrophysics +1703.07295 Algebraic Geometry +1703.07296 Mesoscale and Nanoscale Physics +1703.07298 Analysis of PDEs +1703.07299 Algebraic Geometry +1703.07300 Numerical Analysis +1703.07302 Statistical Mechanics +1703.07303 Probability +1703.07304 Rings and Algebras +1703.07305 Methodology +1703.07308 Optimization and Control +1703.07309 Robotics +1703.07310 Materials Science +1703.07311 Materials Science +1703.07312 Optimization and Control +1703.07313 Numerical Analysis +1703.07314 High Energy Astrophysical Phenomena +1703.07315 Materials Science +1703.07319 Geometric Topology +1703.07320 Representation Theory +1703.07321 Solar and Stellar Astrophysics +1703.07322 Strongly Correlated Electrons +1703.07323 Cosmology and Nongalactic Astrophysics +1703.07324 Dynamical Systems +1703.07325 Strongly Correlated Electrons +1703.07327 Functional Analysis +1703.07328 Algebraic Geometry +1703.07329 Disordered Systems and Neural Networks +1703.07331 Astrophysics of Galaxies +1703.07332 Computer Vision and Pattern Recognition +1703.07333 Biological Physics +1703.07334 Computer Vision and Pattern Recognition +1703.07335 Lattice +1703.07336 Geometric Topology +1703.07337 Probability +1703.07339 Optimization and Control +1703.07340 Social and Information Networks +1703.07341 Solar and Stellar Astrophysics +1703.07343 Theory +1703.07344 Algebraic Geometry +1703.07345 Learning +1703.07346 Mesoscale and Nanoscale Physics +1703.07347 Theory +astro-ph/0009197 +astro-ph/0101228 +astro-ph/0108039 +astro-ph/0111412 +astro-ph/0306352 +astro-ph/0406006 +astro-ph/0411390 +astro-ph/0411623 +astro-ph/0412050 +astro-ph/0412247 +astro-ph/0509540 +astro-ph/0604010 +astro-ph/0611108 +astro-ph/0612152 +astro-ph/0701922 +astro-ph/0703052 +astro-ph/9810455 +astro-ph/9902075 +astro-ph/9908068 +cond-mat/0112324 Strongly Correlated Electrons +cond-mat/0210308 Statistical Mechanics +math-ph/0611065 +quant-ph/0612199 +1702.04463 Computer Vision and Pattern Recognition +0803.3390 +0810.4671 Mesoscale and Nanoscale Physics +1008.2657 Analysis of PDEs +1108.2407 Dynamical Systems +1108.4417 Theory +1205.3047 Emerging Technologies +1207.1109 Theory +1207.4195 Theory +1207.6460 Number Theory +1210.1542 Analysis of PDEs +1210.2398 Theory +1212.5993 General Physics +1303.4408 Computational Complexity +1303.6316 Numerical Analysis +1304.0035 Computer Vision and Pattern Recognition +1304.4357 Algebraic Geometry +1305.1839 Differential Geometry +1306.0393 Learning +1306.4831 Numerical Analysis +1308.2253 Number Theory +1309.4037 +1309.6588 Theory +1312.0540 Differential Geometry +1312.7497 Adaptation and Self-Organizing Systems +1402.5070 +1403.0613 Artificial Intelligence +1404.1164 General Finance +1404.2329 Computer Science and Game Theory +1404.5943 Computer Science and Game Theory +1405.2600 Artificial Intelligence +1405.6197 Theory +1406.0388 Astrophysics of Galaxies +1406.1892 Theory +1407.5476 Algebraic Geometry +1407.5477 Algebraic Geometry +1407.6925 Differential Geometry +1408.2439 Group Theory +1409.2360 Number Theory +1409.2777 General Physics +1409.3817 Numerical Analysis +1409.8234 Number Theory +1410.1180 Dynamical Systems +1411.2905 Numerical Analysis +1411.6897 Networking and Internet Architecture +1412.0231 Number Theory +1412.3874 Geometric Topology +1412.4736 Learning +1412.8016 Statistics Theory +1412.8591 Emerging Technologies +1501.04397 +1501.06164 Analysis of PDEs +1502.01538 Robotics +1502.01987 Algebraic Topology +1502.03528 Number Theory +1503.02876 Commutative Algebra +1503.04299 Commutative Algebra +1503.05285 Genomics +1503.06956 Optics +1503.07806 Instrumentation and Methods for Astrophysics +1504.01931 Quantum Algebra +1505.05998 Strongly Correlated Electrons +1505.06778 Algebraic Topology +1505.06805 Geometric Topology +1505.07171 Geometric Topology +1505.08009 Populations and Evolution +1506.02006 Dynamical Systems +1506.02402 Representation Theory +1506.02795 Combinatorics +1506.07018 Analysis of PDEs +1506.08145 +1507.02230 Algebraic Geometry +1507.04728 +1507.08001 Mesoscale and Nanoscale Physics +1508.00262 +1508.00916 Functional Analysis +1508.03250 Symplectic Geometry +1508.05586 Superconductivity +1508.05850 Phenomenology +1508.06704 +1508.07743 +1509.01148 Phenomenology +1509.01170 Geometric Topology +1509.01703 Information Theory +1509.03896 Mesoscale and Nanoscale Physics +1509.04509 Group Theory +1509.06271 K-Theory and Homology +1509.07231 Algebraic Geometry +1509.08775 Probability +1510.00838 Cosmology and Nongalactic Astrophysics +1510.02451 Methodology +1510.03863 Strongly Correlated Electrons +1510.05517 Probability +1510.05974 Functional Analysis +1510.07732 Analysis of PDEs +1511.01997 +1511.03745 Computer Vision and Pattern Recognition +1511.05532 +1511.05958 Robotics +1511.06171 Numerical Analysis +1511.06925 Computation +1511.09086 +1511.09299 Earth and Planetary Astrophysics +1512.00558 Representation Theory +1512.01179 Classical Analysis and ODEs +1512.03696 Dynamical Systems +1512.04674 Analysis of PDEs +1512.05405 Information Theory +1512.06771 Rings and Algebras +1512.08296 Representation Theory +1512.08518 Databases +1512.09364 Probability +1601.00416 Optimization and Control +1601.01858 Networking and Internet Architecture +1601.02777 Optimization and Control +1601.03368 Geometric Topology +1601.03742 Strongly Correlated Electrons +1601.04554 Systems and Control +1601.06629 Dynamical Systems +1602.00756 Functional Analysis +1602.02336 Algebraic Geometry +1602.03436 Statistics Theory +1602.04411 Probability +1602.04412 Representation Theory +1602.04605 Information Theory +1602.06166 Dynamical Systems +1602.06512 Probability +1602.06697 Computer Vision and Pattern Recognition +1602.07349 Information Theory +1602.07448 Spectral Theory +1602.08799 Mesoscale and Nanoscale Physics +1602.08898 +1603.01293 +1603.02656 Materials Science +1603.02769 Phenomenology +1603.04242 Phenomenology +1603.04255 Theory +1603.04826 Cosmology and Nongalactic Astrophysics +1603.05450 +1603.08588 Applications +1603.08893 Numerical Analysis +1604.00872 Computation +1604.01083 Instrumentation and Detectors +1604.01252 Computer Vision and Pattern Recognition +1604.02008 Optimization and Control +1604.02096 Physics and Society +1604.02113 Distributed, Parallel, and Cluster Computing +1604.02588 +1604.03491 Algebraic Geometry +1604.04942 Machine Learning +1604.05779 Adaptation and Self-Organizing Systems +1604.05781 Computers and Society +1604.06889 +1604.07678 Algebraic Geometry +1604.07685 Algebraic Geometry +1604.07925 +1604.08502 Geometric Topology +1604.08759 Mesoscale and Nanoscale Physics +1604.08845 Information Theory +1605.00059 Theory +1605.00246 Complex Variables +1605.00662 Category Theory +1605.01046 Learning +1605.02012 Functional Analysis +1605.02923 Analysis of PDEs +1605.03076 Populations and Evolution +1605.03721 Analysis of PDEs +1605.04413 Probability +1605.04635 Social and Information Networks +1605.04651 Data Structures and Algorithms +1605.05068 +1605.05073 Optimization and Control +1605.05121 Metric Geometry +1605.05141 Combinatorics +1605.06832 +1605.06845 Portfolio Management +1605.07807 +1605.09010 Probability +1605.09068 Learning +1606.00345 Numerical Analysis +1606.00395 General Topology +1606.00735 Statistical Mechanics +1606.00791 Theory +1606.01534 Probability +1606.01586 Combinatorics +1606.01814 Statistics Theory +1606.02126 Computation and Language +1606.02163 Classical Physics +1606.03119 Rings and Algebras +1606.03702 Combinatorics +1606.03993 Commutative Algebra +1606.04537 Theory +1606.05183 Data Structures and Algorithms +1606.06178 Theory +1606.07146 +1606.07985 Computational Physics +1606.08824 Computational Geometry +1607.00237 Theory +1607.00696 Statistics Theory +1607.01100 Social and Information Networks +1607.01956 +1607.01980 Data Analysis, Statistics and Probability +1607.02461 Probability +1607.02687 Other Computer Science +1607.03168 +1607.03656 +1607.04524 +1607.04751 Computation +1607.04983 Mesoscale and Nanoscale Physics +1607.05506 Machine Learning +1607.06696 Probability +1607.07075 K-Theory and Homology +1607.07205 Rings and Algebras +1607.07551 Superconductivity +1607.07605 +1607.08121 +1607.08122 +1607.08336 Materials Science +1607.08404 Numerical Analysis +1607.08465 K-Theory and Homology +1608.00103 Differential Geometry +1608.00159 Machine Learning +1608.00366 +1608.01582 Phenomenology +1608.01785 Logic in Computer Science +1608.01840 Strongly Correlated Electrons +1608.02575 Cosmology and Nongalactic Astrophysics +1608.02681 Logic in Computer Science +1608.02899 +1608.03276 Theory +1608.03506 Exactly Solvable and Integrable Systems +1608.03721 Number Theory +1608.03742 Analysis of PDEs +1608.03883 General Topology +1608.04311 Optimization and Control +1608.04503 Applications +1608.04577 Complex Variables +1608.04667 Computer Vision and Pattern Recognition +1608.04997 History and Overview +1608.05318 Theory +1608.05568 Materials Science +1608.05637 Discrete Mathematics +1608.05807 +1608.06659 Statistical Mechanics +1608.06690 Multimedia +1608.06850 Disordered Systems and Neural Networks +1608.07412 +1608.07955 Emerging Technologies +1608.07992 Number Theory +1608.08008 Cosmology and Nongalactic Astrophysics +1609.00250 Theory +1609.00296 +1609.00428 Geometric Topology +1609.00434 +1609.00712 Representation Theory +1609.00864 Systems and Control +1609.01400 Data Structures and Algorithms +1609.02230 Statistical Mechanics +1609.02507 Experiment +1609.02540 Algebraic Topology +1609.02599 Strongly Correlated Electrons +1609.02999 Mesoscale and Nanoscale Physics +1609.03089 Algebraic Geometry +1609.03130 Networking and Internet Architecture +1609.03433 Robotics +1609.03785 +1609.03868 Computer Vision and Pattern Recognition +1609.04769 Experiment +1609.04796 +1609.05265 Systems and Control +1609.05307 Robotics +1609.05425 Experiment +1609.05656 Information Theory +1609.06193 Systems and Control +1609.06780 Number Theory +1609.07220 Discrete Mathematics +1609.07792 Data Analysis, Statistics and Probability +1609.08449 Solar and Stellar Astrophysics +1609.08674 Optics +1609.08858 Optics +1609.08952 Soft Condensed Matter +1609.08977 +1609.09022 Probability +1609.09264 Algebraic Topology +1609.09788 Soft Condensed Matter +1610.00130 Data Structures and Algorithms +1610.01059 Cosmology and Nongalactic Astrophysics +1610.01449 Classical Analysis and ODEs +1610.01906 Computer Vision and Pattern Recognition +1610.02177 Computer Vision and Pattern Recognition +1610.02390 +1610.02865 Data Structures and Algorithms +1610.03019 Networking and Internet Architecture +1610.03421 Data Structures and Algorithms +1610.03517 Information Theory +1610.03564 Computer Science and Game Theory +1610.04084 Instrumentation and Detectors +1610.04776 Functional Analysis +1610.04954 Analysis of PDEs +1610.05366 Physics and Society +1610.06142 Plasma Physics +1610.06358 Instrumentation and Detectors +1610.06438 +1610.06443 Soft Condensed Matter +1610.06466 Soft Condensed Matter +1610.06552 Logic in Computer Science +1610.06846 Information Theory +1610.07086 Computer Vision and Pattern Recognition +1610.07119 Learning +1610.07525 Social and Information Networks +1610.07526 Phenomenology +1610.08217 Social and Information Networks +1610.08305 Data Structures and Algorithms +1610.09439 Quantum Algebra +1610.09619 +1610.10050 Programming Languages +1611.00600 Functional Analysis +1611.00608 Numerical Analysis +1611.00705 Lattice +1611.00886 Computational Complexity +1611.00972 Rings and Algebras +1611.00975 Computational Complexity +1611.01756 Logic +1611.01832 Mesoscale and Nanoscale Physics +1611.02301 Instrumentation and Detectors +1611.02331 Algebraic Geometry +1611.02508 Social and Information Networks +1611.02863 +1611.03157 Phenomenology +1611.03332 Classical Physics +1611.03437 +1611.03545 Methodology +1611.03729 Statistical Mechanics +1611.03750 Soft Condensed Matter +1611.04739 Experiment +1611.04871 Learning +1611.05065 Phenomenology +1611.05323 General Physics +1611.05478 Phenomenology +1611.05605 Applications +1611.06000 +1611.06585 Machine Learning +1611.06984 Plasma Physics +1611.07169 Computer Science and Game Theory +1611.08680 Logic +1611.08926 Differential Geometry +1611.09344 Theory +1611.09642 Mesoscale and Nanoscale Physics +1611.09647 Classical Physics +1611.09975 +1612.00344 Theory +1612.00694 Computation and Language +1612.00786 +1612.00917 Probability +1612.02434 Quantum Gases +1612.02705 Applications +1612.02733 Operator Algebras +1612.02950 Experiment +1612.03447 Strongly Correlated Electrons +1612.03606 +1612.03866 Theory +1612.04046 Plasma Physics +1612.04474 Cryptography and Security +1612.04871 Geometric Topology +1612.05047 +1612.05198 Applications +1612.05440 Social and Information Networks +1612.05539 Social and Information Networks +1612.05540 Superconductivity +1612.05753 Computer Vision and Pattern Recognition +1612.05902 Mesoscale and Nanoscale Physics +1612.06009 +1612.06340 Computer Science and Game Theory +1612.06536 +1612.06630 Strongly Correlated Electrons +1612.06887 Applications +1612.06903 Strongly Correlated Electrons +1612.08147 Mesoscale and Nanoscale Physics +1612.08446 Computer Science and Game Theory +1612.09445 Theory +1701.00277 Information Theory +1701.00289 Social and Information Networks +1701.00439 Optimization and Control +1701.00707 Genomics +1701.01263 Rings and Algebras +1701.01962 Astrophysics of Galaxies +1701.01989 Differential Geometry +1701.02194 Group Theory +1701.02361 Geometric Topology +1701.02824 Combinatorics +1701.03291 Information Theory +1701.03684 +1701.03781 Astrophysics of Galaxies +1701.04445 Solar and Stellar Astrophysics +1701.04697 +1701.05288 Quantum Algebra +1701.05790 Mesoscale and Nanoscale Physics +1701.06106 Learning +1701.06271 +1701.06283 Information Theory +1701.06709 Geometric Topology +1701.06716 Phenomenology +1701.06720 Applications +1701.06832 Experiment +1701.07370 Phenomenology +1701.07643 Theory +1701.07869 Astrophysics of Galaxies +1701.08112 Complex Variables +1701.08230 Computers and Society +1701.08334 Combinatorics +1701.08358 Superconductivity +1701.08476 Analysis of PDEs +1701.08481 Computer Vision and Pattern Recognition +1701.08627 Theory +1701.09060 Information Theory +1701.09181 Analysis of PDEs +1702.00018 High Energy Astrophysical Phenomena +1702.00263 Representation Theory +1702.00347 +1702.00633 Quantitative Methods +1702.00799 Theory +1702.00827 +1702.00837 Neural and Evolutionary Computing +1702.00859 Metric Geometry +1702.00985 Differential Geometry +1702.00998 +1702.01072 Biomolecules +1702.01279 Analysis of PDEs +1702.01591 Information Theory +1702.01602 Solar and Stellar Astrophysics +1702.01678 Classical Physics +1702.02144 Learning +1702.02192 Number Theory +1702.02257 Rings and Algebras +1702.02265 Computation and Language +1702.02308 Complex Variables +1702.02434 Astrophysics of Galaxies +1702.02456 Computers and Society +1702.02559 Data Structures and Algorithms +1702.02642 Information Theory +1702.02692 +1702.02769 Phenomenology +1702.02882 Computational Complexity +1702.03234 Classical Physics +1702.03333 Analysis of PDEs +1702.03405 +1702.03554 Phenomenology +1702.03566 Logic +1702.03658 +1702.03674 +1702.03901 Cosmology and Nongalactic Astrophysics +1702.03925 High Energy Astrophysical Phenomena +1702.03988 Classical Analysis and ODEs +1702.04228 Theory +1702.04336 Theory +1702.04387 Phenomenology +1702.04401 Metric Geometry +1702.04447 Fluid Dynamics +1702.04461 Metric Geometry +1702.04668 Phenomenology +1702.04825 Learning +1702.04959 Numerical Analysis +1702.05005 Computational Finance +1702.05065 Molecular Networks +1702.05104 Strongly Correlated Electrons +1702.05124 Numerical Analysis +1702.05185 +1702.05199 +1702.05227 Algebraic Geometry +1702.05343 Materials Science +1702.05372 +1702.05476 Materials Science +1702.05478 Classical Physics +1702.05479 +1702.05480 Algebraic Geometry +1702.05481 +1702.05482 Cosmology and Nongalactic Astrophysics +1702.05483 Earth and Planetary Astrophysics +1702.05484 Phenomenology +1702.05485 Astrophysics of Galaxies +1702.05486 Theory +1702.05487 Instrumentation and Methods for Astrophysics +1702.05488 Instrumentation and Methods for Astrophysics +1702.05489 Theory +1702.05490 Theory +1702.05491 Solar and Stellar Astrophysics +1702.05492 +1702.05495 Dynamical Systems +1702.05496 Optimization and Control +1702.05497 Theory +1702.05498 Phenomenology +1702.05500 Earth and Planetary Astrophysics +1702.05501 +1702.05502 Phenomenology +1702.05503 Analysis of PDEs +1702.05504 Phenomenology +1702.05505 Algebraic Geometry +1702.05506 Computer Vision and Pattern Recognition +1702.05508 High Energy Astrophysical Phenomena +1702.05509 Combinatorics +1702.05510 Distributed, Parallel, and Cluster Computing +1702.05511 Distributed, Parallel, and Cluster Computing +1702.05514 Quantum Gases +1702.05515 Artificial Intelligence +1702.05516 +1702.05517 +1702.05518 Computation +1702.05519 Astrophysics of Galaxies +1702.05520 Materials Science +1702.05521 Optics +1702.05522 Algebraic Geometry +1702.05524 Classical Analysis and ODEs +1702.05525 Phenomenology +1702.05526 Differential Geometry +1702.05527 Logic in Computer Science +1702.05528 Information Theory +1702.05529 Networking and Internet Architecture +1702.05530 Soft Condensed Matter +1702.05531 Computation and Language +1702.05532 Chemical Physics +1702.05533 +1702.05534 Number Theory +1702.05535 Classical Analysis and ODEs +1702.05536 Learning +1702.05537 Earth and Planetary Astrophysics +1702.05538 Machine Learning +1702.05539 Data Analysis, Statistics and Probability +1702.05540 Theory +1702.05541 Networking and Internet Architecture +1702.05542 Numerical Analysis +1702.05543 Computational Complexity +1702.05544 Information Theory +1702.05545 Statistics Theory +1702.05546 Computation +1702.05547 Computational Complexity +1702.05548 Optimization and Control +1702.05549 High Energy Astrophysical Phenomena +1702.05550 Mesoscale and Nanoscale Physics +1702.05551 Optimization and Control +1702.05552 Computer Vision and Pattern Recognition +1702.05553 Analysis of PDEs +1702.05554 Logic +1702.05555 Computer Vision and Pattern Recognition +1702.05557 Mesoscale and Nanoscale Physics +1702.05558 +1702.05561 Mesoscale and Nanoscale Physics +1702.05564 Computer Vision and Pattern Recognition +1702.05565 Materials Science +1702.05566 Mesoscale and Nanoscale Physics +1702.05568 Software Engineering +1702.05569 Information Theory +1702.05570 Data Structures and Algorithms +1702.05571 Learning +1702.05573 Computer Vision and Pattern Recognition +1702.05575 Learning +1702.05576 Plasma Physics +1702.05577 Optimization and Control +1702.05578 Logic in Computer Science +1702.05579 Materials Science +1702.05580 +1702.05581 Learning +1702.05582 Classical Analysis and ODEs +1702.05583 Pattern Formation and Solitons +1702.05584 Differential Geometry +1702.05585 Instrumentation and Methods for Astrophysics +1702.05586 Soft Condensed Matter +1702.05587 Plasma Physics +1702.05589 Data Structures and Algorithms +1702.05590 Optics +1702.05591 Systems and Control +1702.05592 Software Engineering +1702.05593 Atmospheric and Oceanic Physics +1702.05595 Category Theory +1702.05596 Computer Vision and Pattern Recognition +1702.05597 Databases +1702.05598 +1702.05599 Statistics Theory +1702.05600 +1702.05602 Materials Science +1702.05603 Optimization and Control +1702.05604 Mesoscale and Nanoscale Physics +1702.05605 Rings and Algebras +1702.05606 Solar and Stellar Astrophysics +1702.05607 Databases +1702.05608 Geometric Topology +1702.05610 Number Theory +1702.05611 Operator Algebras +1702.05613 Solar and Stellar Astrophysics +1702.05614 Emerging Technologies +1702.05615 +1702.05616 Networking and Internet Architecture +1702.05617 Analysis of PDEs +1702.05618 Analysis of PDEs +1702.05619 Computer Vision and Pattern Recognition +1702.05620 Neurons and Cognition +1702.05622 Information Theory +1702.05624 Computation and Language +1702.05625 +1702.05626 Data Structures and Algorithms +1702.05627 Materials Science +1702.05629 Solar and Stellar Astrophysics +1702.05630 +1702.05631 Analysis of PDEs +1702.05632 Information Theory +1702.05633 Computational Geometry +1702.05634 Combinatorics +1702.05635 Classical Analysis and ODEs +1702.05636 Number Theory +1702.05638 Computation and Language +1702.05639 Learning +1702.05640 Computer Science and Game Theory +1702.05641 Statistics Theory +1702.05642 Optimization and Control +1702.05643 Differential Geometry +1702.05645 Optimization and Control +1702.05646 Optimization and Control +1702.05647 Mesoscale and Nanoscale Physics +1702.05649 Mathematical Finance +1702.05650 Computer Vision and Pattern Recognition +1702.05651 Experiment +1702.05652 Solar and Stellar Astrophysics +1702.05653 Mesoscale and Nanoscale Physics +1702.05655 Rings and Algebras +1702.05656 +1702.05657 +1702.05658 Computer Vision and Pattern Recognition +1702.05659 Learning +1702.05660 +1702.05661 Algebraic Geometry +1702.05662 Applications +1702.05663 Computer Vision and Pattern Recognition +1702.05664 Computer Vision and Pattern Recognition +1702.05665 Mesoscale and Nanoscale Physics +1702.05666 Other Condensed Matter +1702.05667 Classical Physics +1702.05668 Mesoscale and Nanoscale Physics +1702.05669 Mesoscale and Nanoscale Physics +1702.05672 Mesoscale and Nanoscale Physics +1702.05673 Mesoscale and Nanoscale Physics +1702.05674 Mesoscale and Nanoscale Physics +1702.05676 Mesoscale and Nanoscale Physics +1702.05677 Learning +1702.05678 Data Structures and Algorithms +1702.05679 Information Theory +1702.05680 Biological Physics +1702.05681 Combinatorics +1702.05682 +1702.05685 +1702.05688 Solar and Stellar Astrophysics +1702.05690 Differential Geometry +1702.05691 +1702.05692 High Energy Astrophysical Phenomena +1702.05693 Computer Vision and Pattern Recognition +1702.05694 +1702.05695 Learning +1702.05696 Numerical Analysis +1702.05697 Materials Science +1702.05699 Cryptography and Security +1702.05700 Biological Physics +1702.05701 Software Engineering +1702.05702 Optimization and Control +1702.05703 Combinatorics +1702.05705 Rings and Algebras +1702.05706 Information Theory +1702.05707 Geometric Topology +1702.05708 Classical Analysis and ODEs +1702.05709 Mesoscale and Nanoscale Physics +1702.05710 Data Structures and Algorithms +1702.05711 Computer Vision and Pattern Recognition +1702.05712 Experiment +1702.05713 Computers and Society +1702.05714 Functional Analysis +1702.05715 +1702.05716 +1702.05717 +1702.05719 Information Theory +1702.05721 Phenomenology +1702.05722 Dynamical Systems +1702.05723 Software Engineering +1702.05724 Software Engineering +1702.05725 Experiment +1702.05726 Mesoscale and Nanoscale Physics +1702.05727 Phenomenology +1702.05728 +1702.05730 Information Theory +1702.05731 Functional Analysis +1702.05732 Computational Physics +1702.05733 Phenomenology +1702.05734 +1702.05736 Algebraic Geometry +1702.05739 Populations and Evolution +1702.05740 Probability +1702.05741 Information Theory +1702.05742 Mesoscale and Nanoscale Physics +1702.05745 Differential Geometry +1702.05746 +1702.05747 Computer Vision and Pattern Recognition +1702.05750 Combinatorics +1702.05751 Mesoscale and Nanoscale Physics +1702.05752 Logic in Computer Science +1702.05753 Phenomenology +1702.05754 Combinatorics +1702.05756 Theory +1702.05759 Numerical Analysis +1702.05760 Data Structures and Algorithms +1702.05763 Data Structures and Algorithms +1702.05764 Social and Information Networks +1702.05765 Statistical Mechanics +1702.05768 Dynamical Systems +1702.05770 Robotics +1702.05771 Materials Science +1702.05772 Functional Analysis +1702.05774 Geophysics +1702.05776 +1702.05778 Artificial Intelligence +1702.05779 Systems and Control +1702.05780 Probability +1702.05781 Information Theory +1702.05782 High Energy Astrophysical Phenomena +1702.05783 Probability +1702.05785 Superconductivity +1702.05788 Solar and Stellar Astrophysics +1702.05789 History and Overview +1702.05790 Differential Geometry +1702.05793 Computation and Language +1702.05794 Instrumentation and Detectors +1702.05796 Learning +1702.05797 Probability +1702.05798 Space Physics +1702.05799 +1702.05803 Computer Vision and Pattern Recognition +1702.05805 Data Structures and Algorithms +1702.05806 Optics +1702.05807 Programming Languages +1702.05808 Combinatorics +1702.05809 Social and Information Networks +1702.05812 Cryptography and Security +1702.05813 Analysis of PDEs +1702.05815 Learning +1702.05816 Differential Geometry +1702.05817 Soft Condensed Matter +1702.05818 +1702.05819 Number Theory +1702.05821 Computation and Language +1702.05822 Mesoscale and Nanoscale Physics +1702.05823 Number Theory +1702.05824 Statistical Mechanics +1702.05825 Computer Science and Game Theory +1702.05826 Systems and Control +1702.05827 Complex Variables +1702.05828 Materials Science +1702.05832 Methodology +1702.05833 Information Theory +1702.05835 Materials Science +1702.05836 Representation Theory +1702.05838 +1702.05839 Computer Vision and Pattern Recognition +1702.05841 Numerical Analysis +1702.05842 High Energy Astrophysical Phenomena +1702.05843 Software Engineering +1702.05844 Atomic Physics +1702.05845 Quantum Algebra +1702.05848 Information Theory +1702.05849 Software Engineering +1702.05850 +1702.05851 Optimization and Control +1702.05852 Probability +1702.05853 Information Theory +1702.05855 Complex Variables +1702.05856 Atomic Physics +1702.05857 Materials Science +1702.05858 Systems and Control +1702.05859 Numerical Analysis +1702.05861 Algebraic Geometry +1702.05863 Networking and Internet Architecture +1702.05864 Differential Geometry +1702.05865 Distributed, Parallel, and Cluster Computing +1702.05866 High Energy Astrophysical Phenomena +1702.05867 Information Theory +1702.05871 +1702.05872 Mesoscale and Nanoscale Physics +1702.05873 Combinatorics +1702.05874 Combinatorics +1702.05875 Materials Science +1702.05877 Instrumentation and Detectors +1702.05878 Multimedia +1702.05879 Methodology +1702.05880 Information Theory +1702.05881 Analysis of PDEs +1702.05882 Disordered Systems and Neural Networks +1702.05883 Classical Physics +1702.05884 +1702.05885 Algebraic Geometry +1702.05886 Functional Analysis +1702.05887 High Energy Astrophysical Phenomena +1702.05888 Data Structures and Algorithms +1702.05890 Phenomenology +1702.05893 Algebraic Geometry +1702.05894 Classical Analysis and ODEs +1702.05895 +1702.05896 Classical Analysis and ODEs +1702.05897 Strongly Correlated Electrons +1702.05898 Solar and Stellar Astrophysics +1702.05899 Information Theory +1702.05900 Computational Geometry +1702.05901 Information Theory +1702.05903 Statistical Mechanics +1702.05904 Atomic and Molecular Clusters +1702.05905 Solar and Stellar Astrophysics +1702.05906 +1702.05907 Mesoscale and Nanoscale Physics +1702.05908 +1702.05909 Mesoscale and Nanoscale Physics +1702.05910 Statistics Theory +1702.05911 Computer Vision and Pattern Recognition +1702.05912 Physics and Society +1702.05913 Social and Information Networks +1702.05914 Optimization and Control +1702.05916 Mesoscale and Nanoscale Physics +1702.05919 Optics +1702.05921 Probability +1702.05922 Optimization and Control +1702.05923 +1702.05924 Phenomenology +1702.05926 High Energy Astrophysical Phenomena +1702.05928 +1702.05929 +1702.05930 Superconductivity +1702.05931 Computer Vision and Pattern Recognition +1702.05932 Data Structures and Algorithms +1702.05933 Statistics Theory +1702.05934 Optimization and Control +1702.05935 Mesoscale and Nanoscale Physics +1702.05936 +1702.05937 Complex Variables +1702.05939 Neural and Evolutionary Computing +1702.05940 Statistical Mechanics +1702.05941 Computer Vision and Pattern Recognition +1702.05942 Mesoscale and Nanoscale Physics +1702.05943 Metric Geometry +1702.05944 Statistical Finance +1702.05945 Formal Languages and Automata Theory +1702.05946 Combinatorics +1702.05947 Combinatorics +1702.05949 Analysis of PDEs +1702.05951 Data Structures and Algorithms +1702.05953 Strongly Correlated Electrons +1702.05955 Earth and Planetary Astrophysics +1702.05956 Astrophysics of Galaxies +1702.05958 Computer Vision and Pattern Recognition +1702.05959 +1702.05961 Dynamical Systems +1702.05962 Computation and Language +1702.05963 Classical Analysis and ODEs +1702.05964 Algebraic Topology +1702.05965 Materials Science +1702.05968 Lattice +1702.05969 +1702.05972 Methodology +1702.05974 Materials Science +1702.05975 Classical Analysis and ODEs +1702.05976 Statistical Mechanics +1702.05978 +1702.05979 Dynamical Systems +1702.05980 Earth and Planetary Astrophysics +1702.05981 Representation Theory +1702.05982 Applications +1702.05983 Learning +1702.05984 Theory +1702.05985 Statistics Theory +1702.05986 History and Philosophy of Physics +1702.05987 Complex Variables +1702.05988 Theory +1702.05989 Dynamical Systems +1702.05990 Optics +1702.05991 Disordered Systems and Neural Networks +1702.05992 Probability +1702.05993 Computer Vision and Pattern Recognition +1702.05994 Dynamical Systems +1702.05997 Software Engineering +1702.05998 Biological Physics +1702.06000 Artificial Intelligence +1702.06001 Data Analysis, Statistics and Probability +1702.06002 History and Philosophy of Physics +1702.06003 Phenomenology +1702.06004 +1702.06005 Systems and Control +1702.06006 Astrophysics of Galaxies +1702.06008 +1702.06009 Materials Science +1702.06010 Algebraic Geometry +1702.06013 Algebraic Geometry +1702.06014 Analysis of PDEs +1702.06015 Chemical Physics +1702.06016 Social and Information Networks +1702.06017 Computational Complexity +1702.06019 Number Theory +1702.06020 Statistical Mechanics +1702.06022 Solar and Stellar Astrophysics +1702.06023 Chemical Physics +1702.06024 +1702.06025 Other Computer Science +1702.06027 Computation and Language +1702.06028 Logic in Computer Science +1702.06029 Data Analysis, Statistics and Probability +1702.06030 +1702.06031 Instrumentation and Methods for Astrophysics +1702.06032 Solar and Stellar Astrophysics +1702.06033 Materials Science +1702.06034 Analysis of PDEs +1702.06036 +1702.06037 Number Theory +1702.06038 Mesoscale and Nanoscale Physics +1702.06039 Materials Science +1702.06040 Solar and Stellar Astrophysics +1702.06041 Statistical Mechanics +1702.06042 Mesoscale and Nanoscale Physics +1702.06043 Logic +1702.06044 Differential Geometry +1702.06045 Information Theory +1702.06046 Solar and Stellar Astrophysics +1702.06047 Differential Geometry +1702.06048 Theory +1702.06049 Functional Analysis +1702.06050 Quantum Gases +1702.06052 +1702.06054 Learning +1702.06055 Statistical Finance +1702.06056 Mesoscale and Nanoscale Physics +1702.06057 Optics +1702.06058 Analysis of PDEs +1702.06059 High Energy Astrophysical Phenomena +1702.06061 +1702.06063 Phenomenology +1702.06064 Emerging Technologies +1702.06065 Astrophysics of Galaxies +1702.06066 Chemical Physics +1702.06067 Numerical Analysis +1702.06069 +1702.06071 Instrumentation and Detectors +1702.06074 Computational Engineering, Finance, and Science +1702.06075 Robotics +1702.06076 Soft Condensed Matter +1702.06077 Instrumentation and Detectors +1702.06079 Analysis of PDEs +1702.06080 Differential Geometry +1702.06081 Learning +1702.06082 Information Theory +1702.06083 Solar and Stellar Astrophysics +1702.06084 Dynamical Systems +1702.06085 Computer Vision and Pattern Recognition +1702.06086 Learning +1702.06088 Group Theory +1702.06091 Probability +1702.06092 Logic in Computer Science +1702.06093 Combinatorics +1702.06094 Mesoscale and Nanoscale Physics +1702.06095 Data Structures and Algorithms +1702.06096 Algebraic Geometry +1702.06098 Optics +1702.06099 Data Structures and Algorithms +1702.06100 +1702.06102 Logic +1702.06103 Learning +1702.06105 General Topology +1702.06106 Learning +1702.06109 Space Physics +1702.06110 Data Structures and Algorithms +1702.06111 Information Theory +1702.06112 Discrete Mathematics +1702.06113 Systems and Control +1702.06114 High Energy Astrophysical Phenomena +1702.06115 Dynamical Systems +cond-mat/0408263 Disordered Systems and Neural Networks +0810.4840 +0811.1519 +0907.0467 General Mathematics +0909.5139 Analysis of PDEs +0910.4163 Biological Physics +1002.4059 Analysis of PDEs +1003.5338 Computation +1005.3704 Analysis of PDEs +1104.5226 Computational Complexity +1107.0707 Probability +1109.4835 Symplectic Geometry +1110.6001 Algebraic Topology +1111.5247 +1205.3768 +1205.7051 Number Theory +1207.2988 Soft Condensed Matter +1207.5808 Theory +1210.7759 Quantum Algebra +1301.6855 Dynamical Systems +1301.6996 Analysis of PDEs +1302.2139 Differential Geometry +1303.3115 Differential Geometry +1304.2934 Probability +1304.3522 Analysis of PDEs +1305.0892 Number Theory +1306.5073 Mesoscale and Nanoscale Physics +1309.0903 Algebraic Geometry +1309.1294 Operator Algebras +1309.1899 Algebraic Geometry +1309.6996 Metric Geometry +1310.3791 Methodology +1310.4560 Statistical Mechanics +1310.7766 +1310.8061 Classical Analysis and ODEs +1311.0108 Statistical Mechanics +1311.3750 Classical Analysis and ODEs +1311.6424 Algebraic Geometry +1311.6609 Social and Information Networks +1312.0855 Classical Analysis and ODEs +1401.1634 Probability +1402.2249 Differential Geometry +1402.6309 Algebraic Topology +1403.6852 Algebraic Geometry +1404.0153 Geometric Topology +1404.1507 +1405.7667 +1406.2447 Quantitative Methods +1406.4334 Medical Physics +1406.5237 Statistical Mechanics +1407.7461 Algebraic Topology +1407.7497 Analysis of PDEs +1408.4204 Analysis of PDEs +1408.5943 Combinatorics +1411.0848 Group Theory +1411.1035 Analysis of PDEs +1411.1698 Probability +1411.1978 Analysis of PDEs +1411.5240 Discrete Mathematics +1411.5405 Group Theory +1411.6840 Algebraic Geometry +1412.1417 Quantum Algebra +1412.7172 Computer Science and Game Theory +1412.8636 +1501.00453 Number Theory +1501.00688 Representation Theory +1501.01183 Probability +1501.01391 Metric Geometry +1501.02968 Optimization and Control +1501.03571 Methodology +1502.01468 +1502.04445 +1502.04482 Combinatorics +1502.07327 Computational Complexity +1503.03644 Analysis of PDEs +1503.08702 Probability +1503.08801 Complex Variables +1504.00844 Number Theory +1504.02566 Data Analysis, Statistics and Probability +1504.03871 Computer Vision and Pattern Recognition +1504.04493 +1504.07778 Analysis of PDEs +1504.07810 Algebraic Geometry +1505.01374 Information Theory +1505.03429 Combinatorics +1505.06404 Algebraic Geometry +1506.04130 Computer Vision and Pattern Recognition +1506.06335 Medical Physics +1506.08765 Computer Vision and Pattern Recognition +1507.01724 General Topology +1507.02192 Commutative Algebra +1507.02395 Geometric Topology +1507.03166 Computational Complexity +1507.03949 +1507.03976 Theory +1507.04465 Combinatorics +1507.04777 Machine Learning +1507.05720 Quantitative Methods +1507.06463 +1507.06914 Statistical Mechanics +1508.00287 Number Theory +1508.03365 Methodology +1508.04084 Classical Analysis and ODEs +1508.05922 Algebraic Geometry +1508.07690 Cryptography and Security +1509.00881 Optics +1509.01466 Phenomenology +1509.01495 Instrumentation and Methods for Astrophysics +1509.08132 Dynamical Systems +1509.08343 Systems and Control +1509.08690 Computational Geometry +1510.01653 Functional Analysis +1510.03170 Computer Science and Game Theory +1510.03597 Classical Analysis and ODEs +1510.04311 +1510.04375 +1510.04517 +1510.05194 Combinatorics +1511.01864 Applications +1511.02322 Number Theory +1511.03511 Combinatorics +1511.03555 Computers and Society +1511.03602 Information Theory +1511.04218 Mathematical Finance +1511.04645 Group Theory +1511.06651 +1511.07360 Atomic Physics +1511.08075 Classical Analysis and ODEs +1512.00823 Analysis of PDEs +1512.01776 Strongly Correlated Electrons +1512.02951 Cryptography and Security +1512.03517 Group Theory +1512.03788 Atomic Physics +1512.05004 Digital Libraries +1512.06367 Analysis of PDEs +1512.07768 Combinatorics +1512.08060 Theory +1601.00385 Combinatorics +1601.03084 Dynamical Systems +1601.03952 Number Theory +1601.04396 Information Theory +1601.05331 Algebraic Topology +1601.05420 +1601.06480 Number Theory +1601.06520 Phenomenology +1601.06922 Strongly Correlated Electrons +1602.01492 +1602.01542 Geometric Topology +1602.01600 Information Theory +1602.02138 Dynamical Systems +1602.02152 +1602.02725 Mesoscale and Nanoscale Physics +1602.03341 Rings and Algebras +1602.05230 Metric Geometry +1602.05289 Plasma Physics +1602.05877 Quantitative Methods +1602.08494 Phenomenology +1602.08662 Information Theory +1603.01626 Spectral Theory +1603.02590 Astrophysics of Galaxies +1603.02791 Statistics Theory +1603.03212 Theory +1603.03340 Number Theory +1603.04926 K-Theory and Homology +1603.05132 Information Theory +1603.05383 Group Theory +1603.07655 +1603.08199 Computer Vision and Pattern Recognition +1603.08408 General Physics +1603.08445 Neurons and Cognition +1603.09149 Portfolio Management +1604.00003 High Energy Astrophysical Phenomena +1604.00657 Social and Information Networks +1604.00681 Artificial Intelligence +1604.00698 Statistics Theory +1604.00882 +1604.01509 Soft Condensed Matter +1604.02256 Rings and Algebras +1604.04248 Information Theory +1604.05022 +1604.06615 Optimization and Control +1604.07134 Metric Geometry +1604.07428 +1604.07522 General Topology +1604.08556 Representation Theory +1604.08841 Metric Geometry +1605.00348 +1605.00421 Astrophysics of Galaxies +1605.00610 Differential Geometry +1605.00964 Theory +1605.01068 Group Theory +1605.01188 Digital Libraries +1605.01254 Astrophysics of Galaxies +1605.01966 Quantum Algebra +1605.02262 Astrophysics of Galaxies +1605.03106 History and Philosophy of Physics +1605.03265 General Topology +1605.03557 Computer Vision and Pattern Recognition +1605.03810 Solar and Stellar Astrophysics +1605.03874 Probability +1605.03890 +1605.04569 Computation and Language +1605.05005 Materials Science +1605.05608 Quantum Gases +1605.06015 Computational Engineering, Finance, and Science +1605.06416 Statistics Theory +1605.06897 Phenomenology +1605.07306 Geophysics +1605.07439 Applications +1605.07494 Symplectic Geometry +1605.07528 Classical Analysis and ODEs +1605.08009 +1605.08636 Machine Learning +1605.09248 Phenomenology +1605.09305 Experiment +1606.02778 Algebraic Geometry +1606.03390 +1606.03841 Optimization and Control +1606.04471 Combinatorics +1606.04629 Analysis of PDEs +1606.04850 Number Theory +1606.05961 Quantum Algebra +1606.06367 Cosmology and Nongalactic Astrophysics +1606.06484 Soft Condensed Matter +1606.06700 Solar and Stellar Astrophysics +1606.07017 Dynamical Systems +1606.07412 Strongly Correlated Electrons +1606.07469 +1606.07995 Computation +1606.09273 +1606.09509 Disordered Systems and Neural Networks +1607.00291 Mathematical Software +1607.00485 Machine Learning +1607.00744 Theory +1607.01245 Analysis of PDEs +1607.01402 Theory +1607.01472 Networking and Internet Architecture +1607.01548 Number Theory +1607.01655 Optimization and Control +1607.01783 +1607.01892 Statistics Theory +1607.02533 Computer Vision and Pattern Recognition +1607.02539 Computer Vision and Pattern Recognition +1607.02597 Atmospheric and Oceanic Physics +1607.02885 Metric Geometry +1607.03238 Hardware Architecture +1607.04695 Networking and Internet Architecture +1607.04831 +1607.05059 High Energy Astrophysical Phenomena +1607.06057 Mesoscale and Nanoscale Physics +1607.07431 Data Structures and Algorithms +1607.08011 Networking and Internet Architecture +1607.08797 Cosmology and Nongalactic Astrophysics +1608.00065 +1608.00257 Number Theory +1608.00931 Computational Complexity +1608.01563 Combinatorics +1608.02125 Complex Variables +1608.02228 Complex Variables +1608.02539 Complex Variables +1608.02543 Complex Variables +1608.03263 Experiment +1608.03691 Phenomenology +1608.04181 Number Theory +1608.04182 Number Theory +1608.04365 Mesoscale and Nanoscale Physics +1608.04673 Number Theory +1608.05179 Sound +1608.05481 Computation +1608.06008 Mesoscale and Nanoscale Physics +1608.06635 Phenomenology +1608.07448 +1608.07462 Mesoscale and Nanoscale Physics +1608.07751 Superconductivity +1608.07754 Software Engineering +1608.07973 Computer Vision and Pattern Recognition +1608.08090 +1609.00168 Classical Analysis and ODEs +1609.01087 +1609.01811 Statistics Theory +1609.03389 Mesoscale and Nanoscale Physics +1609.04851 Plasma Physics +1609.05340 Materials Science +1609.05485 Materials Science +1609.05501 +1609.05741 Pattern Formation and Solitons +1609.06506 Functional Analysis +1609.06567 Statistical Mechanics +1609.06703 High Energy Astrophysical Phenomena +1609.06865 Statistics Theory +1609.06904 Optics +1609.07176 Phenomenology +1609.07384 Sound +1609.07431 Probability +1609.08070 Representation Theory +1609.08404 Soft Condensed Matter +1610.00150 Theory +1610.00234 Biological Physics +1610.00444 Classical Analysis and ODEs +1610.00628 Experiment +1610.01830 Geometric Topology +1610.01831 Atomic Physics +1610.01847 +1610.01897 Information Theory +1610.02190 Probability +1610.02451 Atomic Physics +1610.03545 Experiment +1610.03770 Statistical Mechanics +1610.03812 Computational Geometry +1610.03823 Mesoscale and Nanoscale Physics +1610.04498 Information Theory +1610.04550 Systems and Control +1610.04565 Plasma Physics +1610.04818 Strongly Correlated Electrons +1610.05333 Theory +1610.05955 Probability +1610.06692 Statistical Mechanics +1610.06874 Lattice +1610.07284 Information Theory +1610.07370 Chemical Physics +1610.07661 +1610.07919 Geometric Topology +1610.08260 Mesoscale and Nanoscale Physics +1610.08343 Instrumentation and Methods for Astrophysics +1610.09356 Complex Variables +1610.09478 +1610.09602 Mesoscale and Nanoscale Physics +1610.10092 Solar and Stellar Astrophysics +1611.00237 Theory +1611.00434 Chaotic Dynamics +1611.01043 Statistics Theory +1611.01173 Fluid Dynamics +1611.01236 Computer Vision and Pattern Recognition +1611.01353 Machine Learning +1611.01518 Strongly Correlated Electrons +1611.01656 Chaotic Dynamics +1611.01970 Chaotic Dynamics +1611.02261 Computer Vision and Pattern Recognition +1611.02490 +1611.03251 Metric Geometry +1611.03385 Data Structures and Algorithms +1611.03808 Classical Analysis and ODEs +1611.04042 Materials Science +1611.04147 Materials Science +1611.05193 Learning +1611.05324 +1611.05809 Statistical Mechanics +1611.06319 Soft Condensed Matter +1611.06353 Statistics Theory +1611.06821 Superconductivity +1611.06985 +1611.07322 +1611.07666 Materials Science +1611.07845 Experiment +1611.08112 Mesoscale and Nanoscale Physics +1611.08178 Physics and Society +1611.08571 +1611.08613 Theory +1611.08876 Algebraic Geometry +1611.09311 +1611.09358 Solar and Stellar Astrophysics +1611.09423 Combinatorics +1611.09522 Probability +1611.09614 Instrumentation and Methods for Astrophysics +1611.09710 Soft Condensed Matter +1611.09808 Theory +1611.09867 Solar and Stellar Astrophysics +1611.10159 Physics and Society +1611.10166 Mesoscale and Nanoscale Physics +1611.10297 Metric Geometry +1612.00169 Cosmology and Nongalactic Astrophysics +1612.00481 Chemical Physics +1612.00659 Theory +1612.01685 Astrophysics of Galaxies +1612.02470 Disordered Systems and Neural Networks +1612.02727 Complex Variables +1612.02752 Mesoscale and Nanoscale Physics +1612.02806 +1612.02999 Statistical Mechanics +1612.03115 Physics and Society +1612.03791 Computation and Language +1612.03928 Computer Vision and Pattern Recognition +1612.04607 Optimization and Control +1612.04629 Computation and Language +1612.04635 Algebraic Geometry +1612.04679 Social and Information Networks +1612.04936 Computation and Language +1612.05383 Analysis of PDEs +1612.05390 Cryptography and Security +1612.05750 Representation Theory +1612.05921 Algebraic Geometry +1612.06022 Chemical Physics +1612.06064 +1612.07060 Information Theory +1612.07691 +1612.07837 Sound +1612.07850 Robotics +1612.07855 Cosmology and Nongalactic Astrophysics +1612.08180 +1612.08181 Astrophysics of Galaxies +1612.08303 +1612.08816 Algebraic Topology +1612.09120 Phenomenology +1612.09295 Dynamical Systems +1612.09429 +1701.00078 Functional Analysis +1701.00271 High Energy Astrophysical Phenomena +1701.00333 Number Theory +1701.00512 Mesoscale and Nanoscale Physics +1701.01144 +1701.01369 Social and Information Networks +1701.01637 Materials Science +1701.01789 Cosmology and Nongalactic Astrophysics +1701.02130 Differential Geometry +1701.02216 Economics +1701.02788 High Energy Astrophysical Phenomena +1701.03236 Instrumentation and Detectors +1701.04081 +1701.04327 Information Theory +1701.04969 Systems and Control +1701.05537 Group Theory +1701.05562 Theory +1701.05680 Numerical Analysis +1701.06117 Strongly Correlated Electrons +1701.06377 Combinatorics +1701.06558 Complex Variables +1701.06726 Cryptography and Security +1701.06971 Mesoscale and Nanoscale Physics +1701.07388 Databases +1701.07428 Physics and Society +1701.07576 Information Theory +1701.07726 Mesoscale and Nanoscale Physics +1701.07856 Cosmology and Nongalactic Astrophysics +1701.07861 Populations and Evolution +1701.07926 Machine Learning +1701.08016 Mesoscale and Nanoscale Physics +1701.08433 Number Theory +1701.08499 +1701.08675 Phenomenology +1701.08749 +1701.08900 Combinatorics +1701.09175 Neural and Evolutionary Computing +1702.00235 Theory +1702.00288 Medical Physics +1702.00472 +1702.00511 Algebraic Geometry +1702.00559 Biological Physics +1702.00624 Mesoscale and Nanoscale Physics +1702.00675 Analysis of PDEs +1702.00735 Number Theory +1702.00771 +1702.00839 Phenomenology +1702.00852 Information Theory +1702.00898 Superconductivity +1702.01044 +1702.01142 Classical Analysis and ODEs +1702.01201 Applications +1702.01266 Exactly Solvable and Integrable Systems +1702.01400 Statistics Theory +1702.01467 Functional Analysis +1702.01469 Computational Physics +1702.01475 +1702.01485 Phenomenology +1702.01546 Experiment +1702.01627 Number Theory +1702.02009 Methodology +1702.02010 Methodology +1702.02031 Chemical Physics +1702.02037 Complex Variables +1702.02065 +1702.02190 Analysis of PDEs +1702.02211 Computation and Language +1702.02212 Computation and Language +1702.02297 Lattice +1702.02355 Theory +1702.02404 Spectral Theory +1702.02728 Dynamical Systems +1702.02774 Cosmology and Nongalactic Astrophysics +1702.02850 Information Theory +1702.02934 Robotics +1702.03055 Chemical Physics +1702.03114 Metric Geometry +1702.03171 Phenomenology +1702.03214 General Physics +1702.03242 Soft Condensed Matter +1702.03262 Optimization and Control +1702.03263 Quantum Gases +1702.03269 Optics +1702.03289 Distributed, Parallel, and Cluster Computing +1702.03290 Economics +1702.03293 High Energy Astrophysical Phenomena +1702.03294 Superconductivity +1702.03295 Instrumentation and Methods for Astrophysics +1702.03297 Phenomenology +1702.03298 Quantum Gases +1702.03299 Solar and Stellar Astrophysics +1702.03302 Disordered Systems and Neural Networks +1702.03303 Category Theory +1702.03304 Systems and Control +1702.03305 Computation and Language +1702.03306 Algebraic Geometry +1702.03307 Learning +1702.03308 Systems and Control +1702.03309 Astrophysics of Galaxies +1702.03310 Optimization and Control +1702.03311 Solar and Stellar Astrophysics +1702.03312 Optics +1702.03313 Complex Variables +1702.03314 Cosmology and Nongalactic Astrophysics +1702.03316 +1702.03317 Cosmology and Nongalactic Astrophysics +1702.03319 Phenomenology +1702.03320 Optics +1702.03322 Earth and Planetary Astrophysics +1702.03323 Astrophysics of Galaxies +1702.03324 Instrumentation and Methods for Astrophysics +1702.03325 Atmospheric and Oceanic Physics +1702.03327 Experiment +1702.03328 Geometric Topology +1702.03329 Optics +1702.03330 Theory +1702.03332 Phenomenology +1702.03334 Machine Learning +1702.03335 Probability +1702.03336 +1702.03337 Other Quantitative Biology +1702.03341 Instrumentation and Methods for Astrophysics +1702.03342 Computation and Language +1702.03343 Solar and Stellar Astrophysics +1702.03344 Mesoscale and Nanoscale Physics +1702.03345 Computer Vision and Pattern Recognition +1702.03346 Information Theory +1702.03347 Mesoscale and Nanoscale Physics +1702.03348 Superconductivity +1702.03349 Computer Vision and Pattern Recognition +1702.03350 Soft Condensed Matter +1702.03351 Networking and Internet Architecture +1702.03352 Solar and Stellar Astrophysics +1702.03353 Dynamical Systems +1702.03354 Numerical Analysis +1702.03355 Group Theory +1702.03357 +1702.03359 Superconductivity +1702.03360 +1702.03361 Numerical Analysis +1702.03363 Programming Languages +1702.03364 Computational Geometry +1702.03368 Group Theory +1702.03369 Group Theory +1702.03371 Group Theory +1702.03372 Information Theory +1702.03373 Superconductivity +1702.03374 Analysis of PDEs +1702.03375 Data Structures and Algorithms +1702.03376 +1702.03378 Materials Science +1702.03380 Learning +1702.03382 Pricing of Securities +1702.03385 Social and Information Networks +1702.03386 Earth and Planetary Astrophysics +1702.03387 Classical Analysis and ODEs +1702.03388 Biological Physics +1702.03390 Databases +1702.03391 Geometric Topology +1702.03392 Materials Science +1702.03394 Optimization and Control +1702.03395 Chemical Physics +1702.03396 Phenomenology +1702.03397 History and Overview +1702.03398 Mesoscale and Nanoscale Physics +1702.03399 Logic +1702.03403 Number Theory +1702.03404 Optics +1702.03406 Atomic Physics +1702.03407 Computer Vision and Pattern Recognition +1702.03408 Optics +1702.03410 Computer Vision and Pattern Recognition +1702.03411 Digital Libraries +1702.03412 Fluid Dynamics +1702.03413 +1702.03414 Logic in Computer Science +1702.03415 Spectral Theory +1702.03417 Methodology +1702.03418 Neurons and Cognition +1702.03419 Chaotic Dynamics +1702.03420 Phenomenology +1702.03421 Solar and Stellar Astrophysics +1702.03422 +1702.03423 Symplectic Geometry +1702.03424 Number Theory +1702.03425 Functional Analysis +1702.03427 Algebraic Geometry +1702.03428 Differential Geometry +1702.03429 Robotics +1702.03430 +1702.03431 Computer Vision and Pattern Recognition +1702.03432 Optimization and Control +1702.03433 Systems and Control +1702.03435 Robotics +1702.03436 Experiment +1702.03437 Classical Analysis and ODEs +1702.03438 Astrophysics of Galaxies +1702.03439 Group Theory +1702.03441 Rings and Algebras +1702.03442 Methodology +1702.03443 Neural and Evolutionary Computing +1702.03444 Probability +1702.03445 Algebraic Geometry +1702.03446 Information Theory +1702.03447 Databases +1702.03448 Theory +1702.03449 Information Theory +1702.03450 Logic in Computer Science +1702.03453 Methodology +1702.03455 Other Condensed Matter +1702.03456 Robotics +1702.03457 Software Engineering +1702.03458 Complex Variables +1702.03459 Materials Science +1702.03460 Soft Condensed Matter +1702.03461 Solar and Stellar Astrophysics +1702.03462 Combinatorics +1702.03464 Metric Geometry +1702.03465 Robotics +1702.03466 Multiagent Systems +1702.03467 Cryptography and Security +1702.03468 Algebraic Geometry +1702.03469 Dynamical Systems +1702.03470 Computation and Language +1702.03472 Combinatorics +1702.03474 Neurons and Cognition +1702.03478 Social and Information Networks +1702.03479 Geometric Topology +1702.03480 Analysis of PDEs +1702.03482 Mesoscale and Nanoscale Physics +1702.03484 Databases +1702.03485 Numerical Analysis +1702.03486 Classical Analysis and ODEs +1702.03487 Logic +1702.03488 Artificial Intelligence +1702.03491 Astrophysics of Galaxies +1702.03492 Neurons and Cognition +1702.03494 Mesoscale and Nanoscale Physics +1702.03495 Lattice +1702.03496 Other Condensed Matter +1702.03497 Theory +1702.03498 +1702.03499 Atomic Physics +1702.03500 Learning +1702.03501 Mesoscale and Nanoscale Physics +1702.03502 +1702.03503 Networking and Internet Architecture +1702.03506 Statistical Mechanics +1702.03507 Information Theory +1702.03508 +1702.03509 Materials Science +1702.03510 Information Theory +1702.03511 Programming Languages +1702.03512 +1702.03513 Mesoscale and Nanoscale Physics +1702.03515 Computer Vision and Pattern Recognition +1702.03517 Numerical Analysis +1702.03519 Databases +1702.03520 Phenomenology +1702.03521 General Topology +1702.03523 Logic in Computer Science +1702.03524 Combinatorics +1702.03525 Computation and Language +1702.03526 Differential Geometry +1702.03527 Combinatorics +1702.03528 +1702.03530 Statistics Theory +1702.03531 Analysis of PDEs +1702.03532 Rings and Algebras +1702.03535 Statistical Mechanics +1702.03536 Combinatorics +1702.03537 Machine Learning +1702.03539 Systems and Control +1702.03541 Symplectic Geometry +1702.03542 Medical Physics +1702.03543 Neurons and Cognition +1702.03545 +1702.03546 Combinatorics +1702.03547 Phenomenology +1702.03548 Algebraic Topology +1702.03549 Theory +1702.03551 Strongly Correlated Electrons +1702.03552 Analysis of PDEs +1702.03553 Materials Science +1702.03555 Robotics +1702.03556 Methodology +1702.03557 Methodology +1702.03558 Number Theory +1702.03559 Functional Analysis +1702.03560 Astrophysics of Galaxies +1702.03561 Numerical Analysis +1702.03562 Solar and Stellar Astrophysics +1702.03563 Distributed, Parallel, and Cluster Computing +1702.03565 +1702.03567 +1702.03568 +1702.03570 Earth and Planetary Astrophysics +1702.03571 Earth and Planetary Astrophysics +1702.03572 Symplectic Geometry +1702.03574 +1702.03575 Chemical Physics +1702.03576 Optimization and Control +1702.03577 Theory +1702.03578 Methodology +1702.03579 Neurons and Cognition +1702.03580 Algebraic Geometry +1702.03582 Biological Physics +1702.03583 Theory +1702.03587 Cryptography and Security +1702.03589 Information Theory +1702.03590 Information Theory +1702.03591 +1702.03592 Artificial Intelligence +1702.03594 Artificial Intelligence +1702.03595 Optics +1702.03596 Systems and Control +1702.03597 Methodology +1702.03599 Dynamical Systems +1702.03600 Computer Vision and Pattern Recognition +1702.03603 Physics and Society +1702.03604 +1702.03606 General Topology +1702.03607 Symplectic Geometry +1702.03608 Classical Analysis and ODEs +1702.03609 Strongly Correlated Electrons +1702.03610 Materials Science +1702.03611 Number Theory +1702.03613 Learning +1702.03614 Multiagent Systems +1702.03615 Computer Science and Game Theory +1702.03617 Quantum Gases +1702.03618 Methodology +1702.03619 Classical Analysis and ODEs +1702.03620 Computer Science and Game Theory +1702.03621 Computers and Society +1702.03622 Geometric Topology +1702.03623 Algebraic Geometry +1702.03624 Physics and Society +1702.03625 Computational Complexity +1702.03626 +1702.03627 Computer Science and Game Theory +1702.03628 Methodology +1702.03629 Systems and Control +1702.03630 Symplectic Geometry +1702.03631 Mesoscale and Nanoscale Physics +1702.03632 Methodology +1702.03633 Optics +1702.03634 Accelerator Physics +1702.03635 +1702.03636 Accelerator Physics +1702.03637 Phenomenology +1702.03639 Analysis of PDEs +1702.03640 Phenomenology +1702.03642 Exactly Solvable and Integrable Systems +1702.03644 Learning +1702.03646 Differential Geometry +1702.03649 +1702.03650 Chemical Physics +1702.03651 +1702.03652 Differential Geometry +1702.03654 Computation and Language +1702.03655 Mesoscale and Nanoscale Physics +1702.03656 Information Theory +1702.03659 Strongly Correlated Electrons +1702.03660 Robotics +1702.03663 Pattern Formation and Solitons +1702.03664 Instrumentation and Detectors +1702.03666 Plasma Physics +1702.03667 Combinatorics +1702.03668 Strongly Correlated Electrons +1702.03669 Theory +1702.03670 Materials Science +1702.03671 Numerical Analysis +1702.03673 Methodology +1702.03675 Networking and Internet Architecture +1702.03677 Materials Science +1702.03678 Earth and Planetary Astrophysics +1702.03679 Fluid Dynamics +1702.03680 Dynamical Systems +1702.03681 Networking and Internet Architecture +1702.03683 Algebraic Topology +1702.03684 Computer Vision and Pattern Recognition +1702.03686 Superconductivity +1702.03688 +1702.03689 +1702.03690 Computer Vision and Pattern Recognition +1702.03691 Dynamical Systems +1702.03693 Phenomenology +1702.03694 Theory +1702.03695 Information Theory +1702.03696 Methodology +1702.03697 Phenomenology +1702.03698 Statistics Theory +1702.03699 Phenomenology +1702.03700 Optimization and Control +1702.03701 Algebraic Geometry +1702.03703 Phenomenology +1702.03704 Commutative Algebra +1702.03705 Optics +1702.03706 Computation and Language +1702.03707 Combinatorics +1702.03708 Phenomenology +1702.03710 Mesoscale and Nanoscale Physics +1702.03711 Cosmology and Nongalactic Astrophysics +1702.03712 Materials Science +1702.03713 Neural and Evolutionary Computing +1702.03714 General Topology +1702.03715 Formal Languages and Automata Theory +1702.03716 Atmospheric and Oceanic Physics +1702.03718 Number Theory +1702.03720 Instrumentation and Detectors +1702.03721 Astrophysics of Galaxies +1702.03723 Instrumentation and Detectors +1702.03724 Artificial Intelligence +1702.03725 Biological Physics +1702.03726 Information Theory +1702.03727 Analysis of PDEs +1702.03729 Group Theory +1702.03730 Materials Science +1702.03731 Exactly Solvable and Integrable Systems +1702.03732 Soft Condensed Matter +1702.03733 Phenomenology +1702.03734 Social and Information Networks +1702.03737 Materials Science +1702.03738 Optimization and Control +1702.03739 Algebraic Geometry +1702.03741 Distributed, Parallel, and Cluster Computing +1702.03743 Soft Condensed Matter +1702.03744 Cosmology and Nongalactic Astrophysics +1702.03745 Analysis of PDEs +1702.03746 Analysis of PDEs +1702.03747 Representation Theory +1702.03748 +1702.03749 Analysis of PDEs +1702.03750 Numerical Analysis +1702.03751 Algebraic Geometry +1702.03752 Algebraic Geometry +1702.03753 Group Theory +1702.03755 Symbolic Computation +1702.03756 History and Overview +1702.03757 Phenomenology +1702.03758 High Energy Astrophysical Phenomena +1702.03759 Physics and Society +1702.03760 Statistics Theory +1702.03761 Mesoscale and Nanoscale Physics +1702.03762 Neurons and Cognition +1702.03763 +1702.03764 Soft Condensed Matter +1702.03765 Probability +1702.03766 Mesoscale and Nanoscale Physics +1702.03767 Learning +1702.03768 Fluid Dynamics +1702.03769 Statistical Mechanics +1702.03770 Instrumentation and Detectors +1702.03771 Optics +1702.03773 Social and Information Networks +1702.03774 Strongly Correlated Electrons +1702.03777 Classical Analysis and ODEs +1702.03779 Mesoscale and Nanoscale Physics +1702.03780 Analysis of PDEs +1702.03781 Instrumentation and Methods for Astrophysics +1702.03782 Analysis of PDEs +1702.03784 Superconductivity +1702.03786 Information Theory +1702.03787 Logic +1702.03788 Classical Analysis and ODEs +1702.03789 Group Theory +1702.03790 Digital Libraries +1702.03791 Sound +1702.03794 Strongly Correlated Electrons +1702.03795 Soft Condensed Matter +1702.03796 Probability +1702.03797 Earth and Planetary Astrophysics +1702.03799 Networking and Internet Architecture +1702.03800 Networking and Internet Architecture +1702.03801 Combinatorics +1702.03802 Probability +1702.03803 Pattern Formation and Solitons +1702.03804 Materials Science +1702.03806 Operator Algebras +1702.03807 Metric Geometry +1702.03808 Metric Geometry +1702.03809 Dynamical Systems +1702.03810 Optics +1702.03812 Emerging Technologies +1702.03813 Mesoscale and Nanoscale Physics +1702.03815 Cryptography and Security +1702.03816 Dynamical Systems +1702.03820 +1702.03821 Instrumentation and Detectors +1702.03822 Materials Science +1702.03823 +1702.03824 Computer Vision and Pattern Recognition +1702.03825 Databases +1702.03826 Chemical Physics +1702.03827 Mesoscale and Nanoscale Physics +1702.03828 Optimization and Control +1702.03830 Geometric Topology +1702.03831 Instrumentation and Detectors +1702.03833 Computer Vision and Pattern Recognition +1702.03835 Analysis of PDEs +1702.03837 Symplectic Geometry +1702.03839 +1702.03840 Differential Geometry +1702.03841 Probability +1702.03843 +1702.03844 Numerical Analysis +1702.03845 Strongly Correlated Electrons +1702.03846 +1702.03848 +1702.03850 Group Theory +1702.03851 Software Engineering +1702.03853 Astrophysics of Galaxies +1702.03855 Optimization and Control +1702.03856 Computation and Language +1702.03858 Solar and Stellar Astrophysics +1702.03859 Computation and Language +1702.03860 Number Theory +1702.03861 Number Theory +1702.03862 Applications +1702.03863 +1702.03864 +1702.03866 +1702.03867 Biological Physics +1702.03868 Number Theory +1702.03869 Number Theory +1702.03871 Functional Analysis +1702.03873 Dynamical Systems +1702.03875 History and Overview +1702.03877 Methodology +1702.03878 Logic +1702.03879 Materials Science +1702.03881 Number Theory +1702.03883 Optics +1702.03884 Statistics Theory +1702.03885 Earth and Planetary Astrophysics +1702.03886 Distributed, Parallel, and Cluster Computing +1702.03887 History and Overview +1702.03888 Astrophysics of Galaxies +1702.03890 Networking and Internet Architecture +1702.03891 Computation +1702.03892 Analysis of PDEs +1702.03894 Logic +1702.03899 Dynamical Systems +1702.03900 Phenomenology +1702.03902 Data Analysis, Statistics and Probability +1702.03903 Statistical Mechanics +1702.03904 Solar and Stellar Astrophysics +1702.03905 +1702.03907 Networking and Internet Architecture +1702.03908 Physics and Society +1702.03910 +1702.03911 Information Theory +1702.03912 Chaotic Dynamics +1702.03913 Cosmology and Nongalactic Astrophysics +1702.03914 Theory +1702.03915 Strongly Correlated Electrons +1702.03916 Biological Physics +1702.03917 Probability +1702.03918 Geometric Topology +1702.03920 Computer Vision and Pattern Recognition +1702.03921 Analysis of PDEs +1002.3797 Representation Theory +1006.5410 Geometric Topology +1108.3927 Geometric Topology +1202.4552 High Energy Astrophysical Phenomena +1203.1540 Fluid Dynamics +1204.5097 Fluid Dynamics +1205.1960 Data Structures and Algorithms +1209.0406 +1210.3544 Fluid Dynamics +1212.2780 +1304.1017 Instrumentation and Methods for Astrophysics +1304.3812 Cryptography and Security +1306.1926 Combinatorics +1307.3650 Data Structures and Algorithms +1308.3973 Complex Variables +1308.5856 Geometric Topology +1309.1562 Number Theory +1310.4853 Materials Science +1310.5884 Computation and Language +1401.1448 Logic in Computer Science +1401.3557 Geometric Topology +1404.2622 Algebraic Geometry +1405.4368 Group Theory +1408.1256 Logic in Computer Science +1410.4887 Dynamical Systems +1411.0852 Symplectic Geometry +1412.0290 Algebraic Geometry +1412.0904 Dynamical Systems +1412.4027 Algebraic Geometry +1412.6028 Plasma Physics +1412.8377 Rings and Algebras +1501.03043 Logic +1501.06461 Data Structures and Algorithms +1502.01039 Logic +1503.00173 Information Theory +1503.03144 Systems and Control +1504.05286 Probability +1505.01333 Statistical Finance +1505.04808 Numerical Analysis +1506.03815 +1506.04542 +1506.04638 Number Theory +1506.08080 Geometric Topology +1506.08621 Probability +1507.00785 Statistical Mechanics +1507.04906 Optics +1507.07907 Probability +1508.03181 Optimization and Control +1508.03366 Dynamical Systems +1508.03752 Representation Theory +1508.03833 Algebraic Geometry +1508.05775 Probability +1509.00380 Differential Geometry +1509.01527 Mesoscale and Nanoscale Physics +1509.09310 Dynamical Systems +1510.00885 Atomic Physics +1510.03405 Statistical Mechanics +1510.04383 Algebraic Geometry +1511.03368 +1511.04857 +1511.05100 Optics +1511.07272 Dynamical Systems +1511.07897 Probability +1511.08261 Strongly Correlated Electrons +1512.00696 +1512.02802 +1512.03601 Dynamical Systems +1512.03769 Methodology +1512.05599 Dynamical Systems +1512.06586 Numerical Analysis +1512.07145 Algebraic Geometry +1601.00232 Algebraic Topology +1601.00859 Algebraic Geometry +1601.01878 Neurons and Cognition +1601.04071 Physics and Society +1601.06811 Plasma Physics +1601.06859 Information Theory +1602.02179 Theory +1602.05314 Computer Vision and Pattern Recognition +1602.05757 Methodology +1602.06202 Methodology +1602.06501 Materials Science +1603.01566 Information Theory +1603.07591 Soft Condensed Matter +1603.07835 High Energy Astrophysical Phenomena +1603.08788 Optics +1603.09553 Phenomenology +1603.09601 Information Theory +1604.01093 Graphics +1604.01501 Optimization and Control +1604.02161 Metric Geometry +1604.02505 Combinatorics +1604.02804 +1604.03430 +1604.05084 Combinatorics +1604.05270 Materials Science +1604.05738 +1604.06900 Instrumentation and Detectors +1604.07440 Strongly Correlated Electrons +1605.02658 Category Theory +1605.04248 General Physics +1605.05550 Phenomenology +1605.05661 Quantum Gases +1605.07480 Information Theory +1605.07530 Differential Geometry +1605.08248 Mesoscale and Nanoscale Physics +1606.00536 Commutative Algebra +1606.03285 Space Physics +1606.04064 Optics +1606.04567 Computational Engineering, Finance, and Science +1606.05479 Optimization and Control +1606.06462 +1606.07563 +1606.09508 Numerical Analysis +1606.09520 Statistical Mechanics +1607.00381 Phenomenology +1607.00826 Mesoscale and Nanoscale Physics +1607.01924 Information Theory +1607.03127 Astrophysics of Galaxies +1607.03892 Strongly Correlated Electrons +1607.04711 Superconductivity +1607.07334 Theory +1608.00114 +1608.00260 Optics +1608.00296 +1608.01365 Applications +1608.01730 Mesoscale and Nanoscale Physics +1608.01777 +1608.02044 Analysis of PDEs +1608.02586 Strongly Correlated Electrons +1608.02986 Theory +1608.04043 Analysis of PDEs +1608.04420 Mesoscale and Nanoscale Physics +1608.04584 Materials Science +1608.04639 Metric Geometry +1608.04923 +1608.05108 +1608.05975 Mesoscale and Nanoscale Physics +1608.06649 Chemical Physics +1608.07090 +1608.07547 Hardware Architecture +1608.07592 Analysis of PDEs +1608.08176 Software Engineering +1608.08855 K-Theory and Homology +1609.00027 Probability +1609.00521 +1609.00779 Molecular Networks +1609.01387 Systems and Control +1609.01552 Disordered Systems and Neural Networks +1609.03799 High Energy Astrophysical Phenomena +1609.03818 +1609.04640 Trading and Market Microstructure +1609.05032 Soft Condensed Matter +1609.05262 Instrumentation and Detectors +1609.05827 Theory +1609.06210 Sound +1609.06880 Probability +1609.07265 Optics +1609.07361 +1609.09408 Machine Learning +1610.00485 Functional Analysis +1610.01826 Phenomenology +1610.01926 Probability +1610.02035 Disordered Systems and Neural Networks +1610.02347 Superconductivity +1610.02697 Mesoscale and Nanoscale Physics +1610.04604 Optimization and Control +1610.05370 +1610.05609 General Physics +1610.05905 +1610.05985 Computer Vision and Pattern Recognition +1610.07040 Theory +1610.08842 Statistical Mechanics +1610.09040 Superconductivity +1610.09535 +1610.09720 Populations and Evolution +1611.00101 Group Theory +1611.00368 Phenomenology +1611.00385 Soft Condensed Matter +1611.00595 Optimization and Control +1611.01007 Optics +1611.01319 Optics +1611.01327 Instrumentation and Methods for Astrophysics +1611.01628 Computation and Language +1611.01689 Analysis of PDEs +1611.01697 Superconductivity +1611.01839 Computation and Language +1611.02681 Mesoscale and Nanoscale Physics +1611.03848 High Energy Astrophysical Phenomena +1611.04867 Materials Science +1611.05852 Phenomenology +1611.06726 Functional Analysis +1611.07229 Atomic Physics +1611.07302 Systems and Control +1611.07632 Analysis of PDEs +1611.08438 Numerical Analysis +1611.09229 Optics +1612.00479 Optics +1612.00729 Computation and Language +1612.01002 Statistical Mechanics +1612.01218 Group Theory +1612.01536 Theory +1612.02298 Cryptography and Security +1612.04216 Physics and Society +1612.04381 Strongly Correlated Electrons +1612.04608 Accelerator Physics +1612.04705 Experiment +1612.05345 High Energy Astrophysical Phenomena +1612.05505 Combinatorics +1612.05776 Analysis of PDEs +1612.05938 Mesoscale and Nanoscale Physics +1612.06354 General Mathematics +1612.06572 Computation and Language +1612.06850 Methodology +1612.07062 Symplectic Geometry +1612.08133 Phenomenology +1612.08435 Superconductivity +1612.08509 Theory +1612.09469 Computational Finance +1701.00293 Complex Variables +1701.00346 Statistical Mechanics +1701.01341 Mesoscale and Nanoscale Physics +1701.01415 Physics Education +1701.01433 Quantitative Methods +1701.01849 Algebraic Geometry +1701.02257 Strongly Correlated Electrons +1701.02581 Lattice +1701.03920 Algebraic Topology +1701.05014 Information Theory +1701.05783 +1701.06179 Statistical Mechanics +1701.06860 Differential Geometry +1701.06923 +1701.07416 Cryptography and Security +1701.07418 Complex Variables +1701.07427 Phenomenology +1701.07501 Information Theory +1701.07601 Logic in Computer Science +1701.07724 Mesoscale and Nanoscale Physics +1701.07736 Information Theory +1701.07770 Geometric Topology +1701.08157 Instrumentation and Detectors +1701.08239 Theory +1701.08455 Mesoscale and Nanoscale Physics +1701.08473 Learning +1701.08479 Differential Geometry +1701.08727 Soft Condensed Matter +1701.08825 Dynamical Systems +1701.08893 Graphics +1701.09043 Economics +1701.09117 Statistical Mechanics +1701.09154 Commutative Algebra +1702.00034 Strongly Correlated Electrons +1702.00084 Representation Theory +1702.00197 Mesoscale and Nanoscale Physics +1702.00202 Adaptation and Self-Organizing Systems +1702.00317 Machine Learning +1702.00468 Instrumentation and Methods for Astrophysics +1702.00480 Lattice +1702.00483 Hardware Architecture +1702.00566 Theory +1702.00672 +1702.01130 Classical Analysis and ODEs +1702.01281 Probability +1702.01292 Theory +1702.01356 Geophysics +1702.01456 Functional Analysis +1702.01458 Phenomenology +1702.01666 Information Theory +1702.01703 Genomics +1702.01764 Cosmology and Nongalactic Astrophysics +1702.01825 Neurons and Cognition +1702.01976 Number Theory +1702.02002 Solar and Stellar Astrophysics +1702.02042 Strongly Correlated Electrons +1702.02047 Learning +1702.02086 Instrumentation and Detectors +1702.02098 Computation and Language +1702.02126 Classical Analysis and ODEs +1702.02134 Probability +1702.02138 Computer Vision and Pattern Recognition +1702.02139 Fluid Dynamics +1702.02140 +1702.02142 Combinatorics +1702.02143 Cosmology and Nongalactic Astrophysics +1702.02145 Soft Condensed Matter +1702.02146 Astrophysics of Galaxies +1702.02147 Earth and Planetary Astrophysics +1702.02148 Strongly Correlated Electrons +1702.02149 Astrophysics of Galaxies +1702.02151 Earth and Planetary Astrophysics +1702.02154 Theory +1702.02155 Phenomenology +1702.02156 +1702.02157 High Energy Astrophysical Phenomena +1702.02158 Instrumentation and Methods for Astrophysics +1702.02159 Cosmology and Nongalactic Astrophysics +1702.02160 Algebraic Geometry +1702.02162 Astrophysics of Galaxies +1702.02165 Machine Learning +1702.02166 Numerical Analysis +1702.02168 +1702.02169 +1702.02170 Computation and Language +1702.02173 Phenomenology +1702.02174 Information Theory +1702.02176 Differential Geometry +1702.02178 Human-Computer Interaction +1702.02179 Information Theory +1702.02180 High Energy Astrophysical Phenomena +1702.02182 Computational Physics +1702.02183 Probability +1702.02184 Learning +1702.02186 Algebraic Geometry +1702.02187 Astrophysics of Galaxies +1702.02188 Solar and Stellar Astrophysics +1702.02189 Astrophysics of Galaxies +1702.02195 Solar and Stellar Astrophysics +1702.02198 Strongly Correlated Electrons +1702.02199 Astrophysics of Galaxies +1702.02201 Networking and Internet Architecture +1702.02202 Analysis of PDEs +1702.02203 Theory +1702.02204 Distributed, Parallel, and Cluster Computing +1702.02205 Quantum Algebra +1702.02206 Computation and Language +1702.02207 Distributed, Parallel, and Cluster Computing +1702.02208 +1702.02209 +1702.02210 Mesoscale and Nanoscale Physics +1702.02213 Solar and Stellar Astrophysics +1702.02214 Solar and Stellar Astrophysics +1702.02215 Computers and Society +1702.02216 Quantum Gases +1702.02217 Neural and Evolutionary Computing +1702.02218 K-Theory and Homology +1702.02220 Combinatorics +1702.02221 Superconductivity +1702.02222 Soft Condensed Matter +1702.02223 Computer Vision and Pattern Recognition +1702.02225 Theory +1702.02226 Other Condensed Matter +1702.02227 Numerical Analysis +1702.02228 Other Condensed Matter +1702.02229 Functional Analysis +1702.02230 Astrophysics of Galaxies +1702.02231 Methodology +1702.02232 Probability +1702.02234 Phenomenology +1702.02235 Computer Vision and Pattern Recognition +1702.02236 Combinatorics +1702.02238 Dynamical Systems +1702.02241 Optimization and Control +1702.02242 Numerical Analysis +1702.02243 Phenomenology +1702.02244 Differential Geometry +1702.02246 Physics and Society +1702.02247 +1702.02248 Mesoscale and Nanoscale Physics +1702.02250 +1702.02251 Dynamical Systems +1702.02254 Economics +1702.02256 Instrumentation and Methods for Astrophysics +1702.02258 Computer Vision and Pattern Recognition +1702.02259 Geometric Topology +1702.02260 Mesoscale and Nanoscale Physics +1702.02261 Computation and Language +1702.02262 Learning +1702.02263 Social and Information Networks +1702.02264 Applications +1702.02266 Materials Science +1702.02267 Machine Learning +1702.02268 Applications +1702.02270 Mesoscale and Nanoscale Physics +1702.02271 +1702.02272 Programming Languages +1702.02273 Logic in Computer Science +1702.02274 Logic in Computer Science +1702.02275 Mesoscale and Nanoscale Physics +1702.02276 Theory +1702.02277 Neural and Evolutionary Computing +1702.02279 Information Theory +1702.02280 Programming Languages +1702.02281 Programming Languages +1702.02282 Programming Languages +1702.02283 Programming Languages +1702.02284 Learning +1702.02286 Methodology +1702.02287 Social and Information Networks +1702.02288 Materials Science +1702.02294 Astrophysics of Galaxies +1702.02295 Computer Vision and Pattern Recognition +1702.02298 Rings and Algebras +1702.02299 Optimization and Control +1702.02300 Numerical Analysis +1702.02301 Complex Variables +1702.02302 Artificial Intelligence +1702.02303 Lattice +1702.02304 Combinatorics +1702.02305 Combinatorics +1702.02307 Mesoscale and Nanoscale Physics +1702.02309 Mesoscale and Nanoscale Physics +1702.02310 +1702.02311 Networking and Internet Architecture +1702.02312 Commutative Algebra +1702.02313 Hardware Architecture +1702.02315 Metric Geometry +1702.02316 High Energy Astrophysical Phenomena +1702.02317 Numerical Analysis +1702.02318 Statistical Mechanics +1702.02320 Quantum Algebra +1702.02321 Data Structures and Algorithms +1702.02323 Chemical Physics +1702.02325 Number Theory +1702.02326 Representation Theory +1702.02327 Number Theory +1702.02328 Numerical Analysis +1702.02329 Strongly Correlated Electrons +1702.02330 Information Theory +1702.02331 Optics +1702.02332 Statistical Mechanics +1702.02333 Optics +1702.02334 Materials Science +1702.02336 Mesoscale and Nanoscale Physics +1702.02338 +1702.02339 Soft Condensed Matter +1702.02341 Solar and Stellar Astrophysics +1702.02342 Geometric Topology +1702.02343 Optics +1702.02344 Mesoscale and Nanoscale Physics +1702.02345 Symplectic Geometry +1702.02346 Solar and Stellar Astrophysics +1702.02347 Networking and Internet Architecture +1702.02350 Theory +1702.02351 Materials Science +1702.02352 High Energy Astrophysical Phenomena +1702.02353 Phenomenology +1702.02357 Mesoscale and Nanoscale Physics +1702.02358 Combinatorics +1702.02359 Computer Vision and Pattern Recognition +1702.02360 +1702.02361 Algebraic Geometry +1702.02362 Information Theory +1702.02364 Networking and Internet Architecture +1702.02365 Fluid Dynamics +1702.02366 Information Theory +1702.02367 Computation and Language +1702.02368 Biological Physics +1702.02369 Logic in Computer Science +1702.02370 Superconductivity +1702.02371 Networking and Internet Architecture +1702.02372 Information Theory +1702.02373 Soft Condensed Matter +1702.02374 Combinatorics +1702.02375 Dynamical Systems +1702.02376 Solar and Stellar Astrophysics +1702.02377 High Energy Astrophysical Phenomena +1702.02378 +1702.02379 Biological Physics +1702.02380 Networking and Internet Architecture +1702.02381 Social and Information Networks +1702.02382 Computer Vision and Pattern Recognition +1702.02383 Dynamical Systems +1702.02385 Logic in Computer Science +1702.02386 Materials Science +1702.02387 Mesoscale and Nanoscale Physics +1702.02388 Solar and Stellar Astrophysics +1702.02389 Materials Science +1702.02390 Computation and Language +1702.02391 Physics Education +1702.02393 Soft Condensed Matter +1702.02394 Astrophysics of Galaxies +1702.02398 Strongly Correlated Electrons +1702.02399 Physics and Society +1702.02400 Differential Geometry +1702.02401 Optics +1702.02402 +1702.02403 Mesoscale and Nanoscale Physics +1702.02405 Data Structures and Algorithms +1702.02406 Programming Languages +1702.02407 Mesoscale and Nanoscale Physics +1702.02408 Quantum Algebra +1702.02410 +1702.02411 Functional Analysis +1702.02412 Strongly Correlated Electrons +1702.02413 Mesoscale and Nanoscale Physics +1702.02414 Information Theory +1702.02415 Solar and Stellar Astrophysics +1702.02417 +1702.02418 +1702.02420 Astrophysics of Galaxies +1702.02421 Solar and Stellar Astrophysics +1702.02422 Distributed, Parallel, and Cluster Computing +1702.02423 Theory +1702.02424 +1702.02425 Category Theory +1702.02426 Computation and Language +1702.02427 Probability +1702.02428 Analysis of PDEs +1702.02429 Computation and Language +1702.02431 Theory +1702.02432 Other Statistics +1702.02436 Strongly Correlated Electrons +1702.02437 Analysis of PDEs +1702.02438 Strongly Correlated Electrons +1702.02439 Distributed, Parallel, and Cluster Computing +1702.02440 +1702.02441 Quantum Gases +1702.02442 Computers and Society +1702.02443 Optimization and Control +1702.02444 +1702.02445 Computer Vision and Pattern Recognition +1702.02446 Combinatorics +1702.02447 Computer Vision and Pattern Recognition +1702.02448 +1702.02449 Differential Geometry +1702.02450 Cryptography and Security +1702.02451 Mesoscale and Nanoscale Physics +1702.02452 Theory +1702.02454 General Topology +1702.02455 Distributed, Parallel, and Cluster Computing +1702.02457 Optics +1702.02459 +1702.02460 Distributed, Parallel, and Cluster Computing +1702.02461 Computers and Society +1702.02462 Social and Information Networks +1702.02463 Computer Vision and Pattern Recognition +1702.02465 Instrumentation and Detectors +1702.02466 Instrumentation and Detectors +1702.02467 +1702.02468 Astrophysics of Galaxies +1702.02470 Artificial Intelligence +1702.02471 Systems and Control +1702.02472 +1702.02473 Optimization and Control +1702.02474 Computational Physics +1702.02475 Fluid Dynamics +1702.02476 +1702.02477 Solar and Stellar Astrophysics +1702.02478 Computational Engineering, Finance, and Science +1702.02479 Algebraic Topology +1702.02481 Analysis of PDEs +1702.02482 Distributed, Parallel, and Cluster Computing +1702.02483 Cosmology and Nongalactic Astrophysics +1702.02485 Neurons and Cognition +1702.02486 Optimization and Control +1702.02488 +1702.02489 Cryptography and Security +1702.02490 Functional Analysis +1702.02491 +1702.02492 Neurons and Cognition +1702.02493 Phenomenology +1702.02494 Earth and Planetary Astrophysics +1702.02495 Mesoscale and Nanoscale Physics +1702.02496 Materials Science +1702.02497 Information Theory +1702.02499 Soft Condensed Matter +1702.02500 Chemical Physics +1702.02502 Statistics Theory +1702.02503 Analysis of PDEs +1702.02505 Optimization and Control +1702.02506 Quantum Algebra +1702.02507 +1702.02508 Computer Vision and Pattern Recognition +1702.02509 Complex Variables +1702.02511 Robotics +1702.02512 Computer Vision and Pattern Recognition +1702.02513 Analysis of PDEs +1702.02514 Computer Vision and Pattern Recognition +1702.02515 Numerical Analysis +1702.02516 Cryptography and Security +1702.02518 Materials Science +1702.02519 Learning +1702.02520 Cosmology and Nongalactic Astrophysics +1702.02522 Superconductivity +1702.02524 Phenomenology +1702.02526 Machine Learning +1702.02527 Physics and Society +1702.02528 Logic in Computer Science +1702.02530 Machine Learning +1702.02531 Superconductivity +1702.02532 Materials Science +1702.02534 Analysis of PDEs +1702.02535 Computation and Language +1702.02536 Mesoscale and Nanoscale Physics +1702.02537 Computer Vision and Pattern Recognition +1702.02538 Strongly Correlated Electrons +1702.02541 Multiagent Systems +1702.02543 Astrophysics of Galaxies +1702.02545 Computational Physics +1702.02549 Computer Vision and Pattern Recognition +1702.02550 +1702.02551 Dynamical Systems +1702.02553 Mesoscale and Nanoscale Physics +1702.02554 Mesoscale and Nanoscale Physics +1702.02556 Mesoscale and Nanoscale Physics +1702.02557 Mesoscale and Nanoscale Physics +1702.02558 +1702.02560 Commutative Algebra +1702.02561 +1702.02562 Information Theory +1507.06134 +1512.08193 Statistics Theory +1602.00131 Strongly Correlated Electrons +1604.00338 Quantum Algebra +1611.01416 General Mathematics +1611.08820 Algebraic Geometry +1611.09176 Databases +1611.09177 Databases +1611.10132 Instrumentation and Detectors +1611.10138 Instrumentation and Detectors +1612.05557 Soft Condensed Matter +1612.05728 Atomic Physics +1612.05802 Functional Analysis +1612.05959 Group Theory +1612.06337 Mesoscale and Nanoscale Physics +1612.06407 Soft Condensed Matter +1612.06410 +1612.06427 Data Analysis, Statistics and Probability +1612.06441 Physics and Society +1612.06467 Classical Analysis and ODEs +1612.06474 Optics +1612.06504 +1612.06509 Differential Geometry +1612.06528 Artificial Intelligence +1612.06551 Social and Information Networks +1612.06556 Lattice +1612.06589 Artificial Intelligence +1612.06594 Numerical Analysis +1612.06613 Superconductivity +1612.06614 Phenomenology +1612.06616 Mathematical Finance +1612.06646 Information Theory +1612.06648 Physics and Society +1612.06691 Experiment +1612.06709 Soft Condensed Matter +1612.06718 +1612.06746 Physics and Society +1612.06769 Experiment +1612.06788 Lattice +1612.06792 Experiment +1612.06807 Experiment +1612.06819 +1612.07079 Superconductivity +1612.07096 Superconductivity +0707.1909 Soft Condensed Matter +0707.2911 Soft Condensed Matter +0710.0931 Strongly Correlated Electrons +0711.2708 Materials Science +0712.2331 Fluid Dynamics +0802.4370 Other Condensed Matter +0803.0914 Mesoscale and Nanoscale Physics +0804.1622 Chemical Physics +0809.3461 Soft Condensed Matter +0811.2823 Statistical Mechanics +0901.3385 Materials Science +0901.3418 Other Condensed Matter +0902.0400 Biomolecules +0902.1164 Mesoscale and Nanoscale Physics +0902.1600 Materials Science +0902.1961 Materials Science +0902.2688 Pattern Formation and Solitons +0902.3562 Strongly Correlated Electrons +0903.3631 Chemical Physics +0903.3830 Materials Science +0904.2801 Biological Physics +0904.3918 Chemical Physics +0906.2971 Chemical Physics +0907.0854 +0908.1494 Materials Science +0908.1953 Statistical Mechanics +0908.2969 Chemical Physics +0909.0951 Mesoscale and Nanoscale Physics +0910.0952 Chemical Physics +0910.2765 High Energy Astrophysical Phenomena +0910.3597 Materials Science +0912.2926 Soft Condensed Matter +1002.0860 Soft Condensed Matter +1002.2000 Statistical Mechanics +1003.0035 Chemical Physics +1004.0566 Chemical Physics +1004.1959 Solar and Stellar Astrophysics +1005.0345 Soft Condensed Matter +1005.5369 Materials Science +1006.1638 Soft Condensed Matter +1006.2878 Chemical Physics +1007.2432 Biological Physics +1007.3193 Cosmology and Nongalactic Astrophysics +1007.5402 Soft Condensed Matter +1008.0205 Biological Physics +1008.2327 Strongly Correlated Electrons +1008.4263 Mesoscale and Nanoscale Physics +1008.5127 Chemical Physics +1009.5272 Solar and Stellar Astrophysics +1009.5273 Solar and Stellar Astrophysics +1011.0518 Atomic Physics +1011.3570 Materials Science +1011.5344 Astrophysics of Galaxies +1012.4522 Chemical Physics +1101.0771 Materials Science +1101.1084 Cosmology and Nongalactic Astrophysics +1101.4115 Mesoscale and Nanoscale Physics +1101.4217 Atomic Physics +1101.5424 Mesoscale and Nanoscale Physics +1102.5672 +1103.1978 Materials Science +1103.5080 Atomic and Molecular Clusters +1104.2225 Quantitative Methods +1104.3015 Atomic Physics +1104.5099 Materials Science +1105.1389 Statistical Mechanics +1105.2413 Chemical Physics +1106.0170 Mesoscale and Nanoscale Physics +1106.1305 Atomic Physics +1107.0306 Materials Science +1107.2654 Cosmology and Nongalactic Astrophysics +1109.2298 Atomic and Molecular Clusters +1109.3478 Astrophysics of Galaxies +1109.6459 Soft Condensed Matter +1111.5151 Chemical Physics +1112.5186 Cosmology and Nongalactic Astrophysics +1201.0331 Strongly Correlated Electrons +1201.3110 Atomic and Molecular Clusters +1201.3304 +1201.4253 Soft Condensed Matter +1202.0201 Statistical Mechanics +1202.2268 Quantitative Methods +1203.2111 Mesoscale and Nanoscale Physics +1203.3361 Chemical Physics +1203.3910 Mesoscale and Nanoscale Physics +1204.1522 Chemical Physics +1205.1001 Soft Condensed Matter +1206.0896 Statistical Mechanics +1206.1913 Materials Science +1207.5703 Mesoscale and Nanoscale Physics +1207.6335 Materials Science +1208.3334 Chemical Physics +1208.4132 Astrophysics of Galaxies +1209.4528 Soft Condensed Matter +1209.5530 Mesoscale and Nanoscale Physics +1210.6710 Materials Science +1210.7973 Materials Science +1211.0549 Astrophysics of Galaxies +1211.1529 Statistical Mechanics +1211.3562 Astrophysics of Galaxies +1211.6515 Cosmology and Nongalactic Astrophysics +1212.3488 Chemical Physics +1301.2210 Materials Science +1301.6156 Materials Science +1302.3718 Chemical Physics +1303.3458 Materials Science +1303.5542 Solar and Stellar Astrophysics +1304.0972 Materials Science +1304.5542 Materials Science +1305.2759 Chemical Physics +1305.6859 Cosmology and Nongalactic Astrophysics +1306.0648 Materials Science +1306.2370 Cosmology and Nongalactic Astrophysics +1307.4611 Chemical Physics +1307.6971 Materials Science +1308.3843 Biomolecules +1308.5593 Earth and Planetary Astrophysics +1308.6153 Chemical Physics +1308.6724 Materials Science +1309.1164 Solar and Stellar Astrophysics +1309.7762 Astrophysics of Galaxies +1310.8343 +1310.8389 Cosmology and Nongalactic Astrophysics +1311.0881 +1311.6431 Chemical Physics +1311.6444 Cosmology and Nongalactic Astrophysics +1312.0005 Mesoscale and Nanoscale Physics +1401.0156 Cosmology and Nongalactic Astrophysics +1401.2341 Chemical Physics +1401.5437 Strongly Correlated Electrons +1401.7701 Cosmology and Nongalactic Astrophysics +1401.7822 Chemical Physics +1402.1015 Mesoscale and Nanoscale Physics +1402.4567 Solar and Stellar Astrophysics +1402.5491 Materials Science +1403.0104 Algebraic Geometry +1403.0552 Materials Science +1403.3102 Materials Science +1403.3798 Materials Science +1403.5526 Mesoscale and Nanoscale Physics +1403.5886 Cosmology and Nongalactic Astrophysics +1404.0902 Chemical Physics +1404.7103 Cosmology and Nongalactic Astrophysics +1405.1178 Symplectic Geometry +1405.6753 Astrophysics of Galaxies +1406.1374 Astrophysics of Galaxies +1406.4410 Cosmology and Nongalactic Astrophysics +1406.6161 Astrophysics of Galaxies +1407.7868 Cosmology and Nongalactic Astrophysics +1407.7892 Number Theory +1408.4019 Earth and Planetary Astrophysics +1408.5878 Phenomenology +1408.6467 Cosmology and Nongalactic Astrophysics +1408.6899 Materials Science +1410.0114 +1410.2129 Dynamical Systems +1410.4358 Cosmology and Nongalactic Astrophysics +1410.4425 Solar and Stellar Astrophysics +1410.5854 Astrophysics of Galaxies +1410.8452 Cosmology and Nongalactic Astrophysics +1411.4743 Soft Condensed Matter +1411.5643 Materials Science +1411.7402 +1411.7553 +1412.5186 Cosmology and Nongalactic Astrophysics +1412.7474 Soft Condensed Matter +1412.7931 Cosmology and Nongalactic Astrophysics +1412.8466 Phenomenology +1412.8750 Materials Science +1502.04834 Geometric Topology +1502.06497 Theory +1503.01345 Fluid Dynamics +1503.01876 Experiment +1503.04307 +1503.05850 Algebraic Geometry +1503.06464 Atomic Physics +1503.08849 Phenomenology +1504.03290 Cosmology and Nongalactic Astrophysics +1504.04653 Instrumentation and Methods for Astrophysics +1504.05406 Algebraic Geometry +1504.07092 Cosmology and Nongalactic Astrophysics +1505.01132 Cosmology and Nongalactic Astrophysics +1505.06330 Cosmology and Nongalactic Astrophysics +1506.00772 Theory +1506.02837 Group Theory +1506.04868 Phenomenology +1507.04184 Astrophysics of Galaxies +1507.06912 Phenomenology +1508.00446 Combinatorics +1508.01664 Representation Theory +1508.03114 Mesoscale and Nanoscale Physics +1509.01426 Solar and Stellar Astrophysics +1509.05575 Chemical Physics +1509.07043 Statistical Mechanics +1510.04270 Cosmology and Nongalactic Astrophysics +1510.05923 Cosmology and Nongalactic Astrophysics +1510.06434 Earth and Planetary Astrophysics +1510.07045 Phenomenology +1510.07682 Strongly Correlated Electrons +1511.01022 Cosmology and Nongalactic Astrophysics +1511.02867 Phenomenology +1511.03915 Accelerator Physics +1511.07799 Cosmology and Nongalactic Astrophysics +1511.08667 Rings and Algebras +1511.09459 Theory +1512.01468 Cosmology and Nongalactic Astrophysics +1512.02089 Theory +1601.00975 Strongly Correlated Electrons +1601.03583 Algebraic Geometry +1601.06054 Soft Condensed Matter +1602.01676 Solar and Stellar Astrophysics +1602.01934 Phenomenology +1602.03340 Astrophysics of Galaxies +1602.03677 Strongly Correlated Electrons +1602.05427 Phenomenology +1602.07234 Phenomenology +1603.03521 +1603.04108 Biological Physics +1603.06474 History and Philosophy of Physics +1603.08288 High Energy Astrophysical Phenomena +1604.01231 High Energy Astrophysical Phenomena +1604.04404 Dynamical Systems +1604.05944 +1604.06088 Theory +1604.06382 Combinatorics +1604.06844 Disordered Systems and Neural Networks +1605.02095 Earth and Planetary Astrophysics +1605.02101 +1605.03463 Mesoscale and Nanoscale Physics +1605.06499 Mesoscale and Nanoscale Physics +1605.06594 Disordered Systems and Neural Networks +1605.08970 Statistical Mechanics +1606.00286 Plasma Physics +1606.00771 +1606.01060 Strongly Correlated Electrons +1606.03162 Materials Science +1606.03215 Mesoscale and Nanoscale Physics +1606.04605 Strongly Correlated Electrons +1606.04906 +1606.06186 Cosmology and Nongalactic Astrophysics +1606.06245 Superconductivity +1606.06252 Astrophysics of Galaxies +1606.07182 Chemical Physics +1606.07503 +1606.08250 Plasma Physics +1606.09025 High Energy Astrophysical Phenomena +1606.09454 Phenomenology +1607.00189 Statistical Mechanics +1607.02139 Cosmology and Nongalactic Astrophysics +1607.03843 Solar and Stellar Astrophysics +1607.04919 Earth and Planetary Astrophysics +1607.05277 Statistical Mechanics +1607.05614 High Energy Astrophysical Phenomena +1607.08164 Quantum Gases +1607.08545 Theory +1608.01070 Quantum Gases +1608.02018 High Energy Astrophysical Phenomena +1608.02423 Soft Condensed Matter +1608.02940 Phenomenology +1608.03494 Solar and Stellar Astrophysics +1608.04602 Strongly Correlated Electrons +1608.04853 Soft Condensed Matter +1608.05048 +1608.05650 General Finance +1608.05761 Strongly Correlated Electrons +1608.06147 Theory +1608.06243 Accelerator Physics +1608.06303 Optics +1608.06503 Phenomenology +1608.06585 Cosmology and Nongalactic Astrophysics +1608.06765 Phenomenology +1608.07004 Chemical Physics +1608.07105 Astrophysics of Galaxies +1608.07198 Earth and Planetary Astrophysics +1608.07231 Disordered Systems and Neural Networks +1608.07393 Experiment +1608.07599 Strongly Correlated Electrons +1608.07828 Solar and Stellar Astrophysics +1608.07924 Astrophysics of Galaxies +1608.08631 Solar and Stellar Astrophysics +1608.08769 Mesoscale and Nanoscale Physics +1608.08922 Phenomenology +1609.00527 +1609.00728 Solar and Stellar Astrophysics +1609.01030 +1609.01767 Materials Science +1609.02297 Materials Science +1609.02989 Astrophysics of Galaxies +1609.03274 Phenomenology +1609.03562 Astrophysics of Galaxies +1609.03564 Mesoscale and Nanoscale Physics +1609.04645 Theory +1609.05077 Materials Science +1609.05679 Mesoscale and Nanoscale Physics +1609.05937 Phenomenology +1609.06250 +1609.06351 Cosmology and Nongalactic Astrophysics +1609.06550 +1609.06752 Astrophysics of Galaxies +1609.06872 +1609.07096 Mesoscale and Nanoscale Physics +1609.07115 Lattice +1609.07882 Phenomenology +1609.07914 Solar and Stellar Astrophysics +1609.08096 Phenomenology +1609.08147 Mesoscale and Nanoscale Physics +1609.08989 Materials Science +1609.09506 Instrumentation and Methods for Astrophysics +1610.00350 Solar and Stellar Astrophysics +1610.00639 Theory +1610.00764 +1610.01079 Atomic Physics +1610.01466 Optics +1610.02057 Astrophysics of Galaxies +1610.02299 Strongly Correlated Electrons +1610.02552 High Energy Astrophysical Phenomena +1610.02998 Strongly Correlated Electrons +1610.03601 Fluid Dynamics +1610.03846 Optics +1610.03848 Phenomenology +1610.05635 +1610.06446 Materials Science +1610.06788 Solar and Stellar Astrophysics +1610.07558 Astrophysics of Galaxies +1610.07673 Materials Science +1610.08107 Mesoscale and Nanoscale Physics +1610.08381 Solar and Stellar Astrophysics +1610.08449 Solar and Stellar Astrophysics +1610.08516 Theory +1610.08634 Phenomenology +1610.08656 +1610.08752 Soft Condensed Matter +1610.08960 Theory +1610.09055 Astrophysics of Galaxies +1610.09071 Lattice +1610.09095 +1610.09105 Superconductivity +1610.09597 Materials Science +1610.09680 Cosmology and Nongalactic Astrophysics +1610.09697 Earth and Planetary Astrophysics +1611.00360 Theory +1611.00371 Materials Science +1611.00668 Physics Education +1611.00757 Cosmology and Nongalactic Astrophysics +1611.00881 Quantum Gases +1611.01220 Cosmology and Nongalactic Astrophysics +1611.01466 Phenomenology +1611.01748 Soft Condensed Matter +1611.01846 Theory +1611.01906 Theory +1611.02250 Solar and Stellar Astrophysics +1611.02287 Phenomenology +1611.02411 Lattice +1611.02599 Strongly Correlated Electrons +1611.02631 Atomic Physics +1611.03283 Solar and Stellar Astrophysics +1611.03371 Phenomenology +1611.03455 Strongly Correlated Electrons +1611.03491 Theory +1611.03691 +1611.03773 Phenomenology +1611.03957 Cosmology and Nongalactic Astrophysics +1611.04266 Superconductivity +1611.04730 Chaotic Dynamics +1611.05315 +1611.05463 Phenomenology +1611.05491 Mesoscale and Nanoscale Physics +1611.05580 High Energy Astrophysical Phenomena +1611.06042 Materials Science +1611.06106 Solar and Stellar Astrophysics +1611.06141 Phenomenology +1611.06207 +1611.06289 +1611.06415 +1611.06437 Classical Physics +1611.06887 Phenomenology +1611.06908 Lattice +1611.07376 Astrophysics of Galaxies +1611.07562 High Energy Astrophysical Phenomena +1611.07616 High Energy Astrophysical Phenomena +1611.07652 Strongly Correlated Electrons +1611.08169 Astrophysics of Galaxies +1611.08188 Statistical Mechanics +1611.08211 Mesoscale and Nanoscale Physics +1611.08457 Phenomenology +1611.08513 Solar and Stellar Astrophysics +1611.09275 +1611.09411 Theory +1611.09450 Solar and Stellar Astrophysics +1611.09454 Quantum Gases +1611.10269 Cosmology and Nongalactic Astrophysics +1612.00024 Phenomenology +1612.00026 Phenomenology +1612.00149 +1612.00200 +1612.00365 Classical Physics +1612.00452 Phenomenology +1612.00743 +1612.01066 +1612.01396 Biomolecules +1612.01522 Astrophysics of Galaxies +1612.02085 Earth and Planetary Astrophysics +1612.02827 Cosmology and Nongalactic Astrophysics +1612.02991 Astrophysics of Galaxies +1612.03008 Astrophysics of Galaxies +1612.03104 Strongly Correlated Electrons +1612.03384 Lattice +1612.03475 Phenomenology +1612.03786 Earth and Planetary Astrophysics +1612.04263 +1612.04753 Disordered Systems and Neural Networks +1612.05121 Mesoscale and Nanoscale Physics +1612.05591 High Energy Astrophysical Phenomena +1612.05692 +1612.05783 Astrophysics of Galaxies +1612.05860 +1612.06088 Solar and Stellar Astrophysics +1612.06349 Theory +1612.06827 Solar and Stellar Astrophysics +1612.07027 Astrophysics of Galaxies +1612.07183 Disordered Systems and Neural Networks +1612.07328 Phenomenology +1612.07329 +1612.07341 Superconductivity +1612.07492 Cosmology and Nongalactic Astrophysics +1612.07693 Mesoscale and Nanoscale Physics +1612.07988 Astrophysics of Galaxies +1612.08279 Quantum Gases +1612.08285 Theory +1612.09303 Mesoscale and Nanoscale Physics +1701.00724 Solar and Stellar Astrophysics +1701.01109 High Energy Astrophysical Phenomena +1701.01175 +1701.01607 Solar and Stellar Astrophysics +1701.01695 Astrophysics of Galaxies +1701.01912 High Energy Astrophysical Phenomena +1701.02312 High Energy Astrophysical Phenomena +1701.02436 Optics +1701.02535 High Energy Astrophysical Phenomena +1701.02536 Astrophysics of Galaxies +1701.02730 High Energy Astrophysical Phenomena +1701.02926 Theory +1701.03097 High Energy Astrophysical Phenomena +1701.03425 Earth and Planetary Astrophysics +1701.03857 Quantum Gases +1701.04181 Strongly Correlated Electrons +1701.04304 +1701.04325 Lattice +1701.04460 Phenomenology +1701.06461 +1701.07608 Solar and Stellar Astrophysics +1701.07815 Solar and Stellar Astrophysics +1701.07892 Solar and Stellar Astrophysics +1701.07944 Astrophysics of Galaxies +1701.08297 Experiment +1701.08647 Astrophysics of Galaxies +1701.08810 Machine Learning +1701.08821 Strongly Correlated Electrons +1701.08942 Strongly Correlated Electrons +1702.00013 Earth and Planetary Astrophysics +1702.00199 Solar and Stellar Astrophysics +1702.00789 Solar and Stellar Astrophysics +1702.00845 Astrophysics of Galaxies +1702.01033 Astrophysics of Galaxies +1702.01106 Instrumentation and Methods for Astrophysics +1702.01900 Astrophysics of Galaxies +1702.02153 Solar and Stellar Astrophysics +1702.02196 Astrophysics of Galaxies +1702.02252 Instrumentation and Methods for Astrophysics +1702.02615 Earth and Planetary Astrophysics +1702.02766 Earth and Planetary Astrophysics +1702.02784 Mesoscale and Nanoscale Physics +1702.02943 Earth and Planetary Astrophysics +1702.03127 High Energy Astrophysical Phenomena +1702.03315 Earth and Planetary Astrophysics +1702.03365 High Energy Astrophysical Phenomena +1702.03986 Solar and Stellar Astrophysics +1702.03997 Biological Physics +1702.04034 Instrumentation and Methods for Astrophysics +1702.04345 Astrophysics of Galaxies +1702.04617 Earth and Planetary Astrophysics +1702.04762 High Energy Astrophysical Phenomena +1702.05205 Astrophysics of Galaxies +1702.05562 Astrophysics of Galaxies +1702.06184 Astrophysics of Galaxies +1702.06311 Solar and Stellar Astrophysics +1702.06411 Cosmology and Nongalactic Astrophysics +1702.06545 Astrophysics of Galaxies +1702.06607 Solar and Stellar Astrophysics +1702.06817 Cosmology and Nongalactic Astrophysics +1702.07282 Astrophysics of Galaxies +1702.07771 Earth and Planetary Astrophysics +1702.07989 Earth and Planetary Astrophysics +1702.08393 Solar and Stellar Astrophysics +1703.02039 Astrophysics of Galaxies +1703.02234 Astrophysics of Galaxies +1703.03591 +1703.03728 Rings and Algebras +1703.04446 Computer Vision and Pattern Recognition +astro-ph/0602491 +astro-ph/0611862 +cond-mat/0003027 Soft Condensed Matter +cond-mat/0101179 Materials Science +cond-mat/0112424 Soft Condensed Matter +cond-mat/0201235 Statistical Mechanics +cond-mat/0202045 Soft Condensed Matter +cond-mat/0205547 Disordered Systems and Neural Networks +cond-mat/0411037 Materials Science +cond-mat/0412197 Materials Science +cond-mat/0501589 Materials Science +cond-mat/0503530 Soft Condensed Matter +cond-mat/0506442 Disordered Systems and Neural Networks +cond-mat/0701074 Soft Condensed Matter +cond-mat/0701335 Statistical Mechanics +cond-mat/0701493 Materials Science +cond-mat/9810049 +cond-mat/9811412 Soft Condensed Matter +cond-mat/9901237 Soft Condensed Matter +cond-mat/9911013 Soft Condensed Matter +physics/0203022 Chemical Physics +physics/0312076 Atomic Physics +physics/0403053 Chemical Physics +physics/0508111 Computational Physics +quant-ph/0510225 +0805.3363 Quantum Algebra +0810.1903 +0904.3891 Cosmology and Nongalactic Astrophysics +1001.3305 Theory +1008.4139 Theory +1009.4370 Phenomenology +1106.0044 Astrophysics of Galaxies +1205.1565 Geometric Topology +1206.0887 Geometric Topology +1206.2606 Theory +1208.5730 Commutative Algebra +1209.3339 Cosmology and Nongalactic Astrophysics +1210.1717 Differential Geometry +1210.5378 Methodology +1212.2217 Earth and Planetary Astrophysics +1303.4832 +1303.5873 Theory +1306.2343 Phenomenology +1306.4704 Phenomenology +1309.1983 Distributed, Parallel, and Cluster Computing +1309.2734 Computational Physics +1310.1832 Plasma Physics +1310.4015 Mesoscale and Nanoscale Physics +1310.7830 Earth and Planetary Astrophysics +1311.1229 Computational Physics +1311.1261 Algebraic Geometry +1311.1611 Astrophysics of Galaxies +1311.1653 Astrophysics of Galaxies +1311.5453 Materials Science +1311.5582 Disordered Systems and Neural Networks +1312.1136 Logic +1312.4255 Astrophysics of Galaxies +1312.7098 Operator Algebras +1401.5621 Materials Science +1401.7112 Functional Analysis +1402.0805 Commutative Algebra +1403.4674 Computational Physics +1404.2492 Numerical Analysis +1405.3057 Information Theory +1405.3705 Astrophysics of Galaxies +1405.6098 Soft Condensed Matter +1406.2211 Computational Physics +1406.2216 Soft Condensed Matter +1406.7592 Chemical Physics +1407.1852 Theory +1407.6288 Machine Learning +1408.1771 Mesoscale and Nanoscale Physics +1408.2656 Strongly Correlated Electrons +1409.2348 Solar and Stellar Astrophysics +1409.7702 Algebraic Topology +1410.1198 Differential Geometry +1410.2161 Geometric Topology +1410.3380 Dynamical Systems +1410.7058 Quantum Gases +1410.8764 Algebraic Geometry +1412.3581 Theory +1412.3596 Computer Vision and Pattern Recognition +1412.6331 Number Theory +1501.01020 Category Theory +1501.01667 Representation Theory +1501.02463 Differential Geometry +1501.02567 Geometric Topology +1501.06920 +1502.01007 Algebraic Topology +1502.07186 Numerical Analysis +1502.07342 Differential Geometry +1502.07928 Symplectic Geometry +1503.01406 Logic +1503.07040 Other Quantitative Biology +1503.07163 Tissues and Organs +1503.08503 Methodology +1503.08814 +1504.00516 Materials Science +1504.00916 Strongly Correlated Electrons +1504.01795 Mesoscale and Nanoscale Physics +1504.02218 Human-Computer Interaction +1504.02998 Number Theory +1504.05930 Statistical Mechanics +1505.01523 Data Structures and Algorithms +1505.03337 Information Theory +1505.03902 Tissues and Organs +1505.04061 Statistical Mechanics +1505.04750 +1505.06223 Biomolecules +1506.00191 Materials Science +1506.03661 Soft Condensed Matter +1506.03758 Trading and Market Microstructure +1506.04067 Soft Condensed Matter +1506.04286 Number Theory +1506.06954 Mesoscale and Nanoscale Physics +1507.01371 Probability +1507.06196 +1507.07324 Materials Science +1508.01393 Combinatorics +1508.02876 +1508.04683 Soft Condensed Matter +1508.06584 +1508.07923 Phenomenology +1509.00514 Information Theory +1509.02738 Geometric Topology +1509.02939 Symplectic Geometry +1509.03085 Information Theory +1509.04973 Materials Science +1509.05554 Dynamical Systems +1509.06117 Phenomenology +1509.06631 Classical Analysis and ODEs +1509.07081 Functional Analysis +1509.07227 Statistical Mechanics +1509.07719 General Topology +1510.00462 Number Theory +1510.00974 Operator Algebras +1510.02731 Algebraic Geometry +1510.04051 +1510.04983 Theory +1510.06459 +1510.06749 Theory +1511.01023 +1511.01237 +1511.02263 Strongly Correlated Electrons +1511.04291 Algebraic Topology +1511.05250 Fluid Dynamics +1511.06288 Phenomenology +1511.06585 Mesoscale and Nanoscale Physics +1511.06837 Group Theory +1511.06999 Analysis of PDEs +1511.07018 Phenomenology +1512.00116 Representation Theory +1512.00244 Instrumentation and Detectors +1512.00320 Materials Science +1512.00346 Operator Algebras +1512.00797 Rings and Algebras +1512.01160 Analysis of PDEs +1512.01225 Geometric Topology +1512.01931 Superconductivity +1512.03458 Phenomenology +1512.04565 Disordered Systems and Neural Networks +1512.05541 Theory +1512.06241 Atomic Physics +1512.07363 Algebraic Geometry +1512.07546 Plasma Physics +1512.08209 Superconductivity +1512.08492 Probability +1512.08531 Chemical Physics +1512.08636 +1512.08723 Quantum Gases +1512.09191 Lattice +1601.00154 Mesoscale and Nanoscale Physics +1601.00982 +1601.02273 Materials Science +1601.03907 Computational Engineering, Finance, and Science +1601.03918 Theory +1601.04221 Chemical Physics +1601.04616 Quantum Gases +1601.04765 Astrophysics of Galaxies +1601.05061 Dynamical Systems +1601.05097 Cosmology and Nongalactic Astrophysics +1601.05584 Statistics Theory +1601.06096 Geometric Topology +1601.06484 High Energy Astrophysical Phenomena +1601.07345 Numerical Analysis +1601.07693 Mesoscale and Nanoscale Physics +1601.08231 Rings and Algebras +1602.00465 Astrophysics of Galaxies +1602.00567 Quantum Algebra +1602.00704 Theory +1602.00757 Analysis of PDEs +1602.01622 Phenomenology +1602.01989 Phenomenology +1602.02369 Biomolecules +1602.02645 Phenomenology +1602.02746 Statistical Mechanics +1602.03128 Mesoscale and Nanoscale Physics +1602.03355 Soft Condensed Matter +1602.03627 Phenomenology +1602.03715 Number Theory +1602.03798 Superconductivity +1602.04338 +1602.04688 Numerical Analysis +1602.04739 Differential Geometry +1602.04744 +1602.05267 Algebraic Geometry +1602.05286 Physics and Society +1602.05650 Numerical Analysis +1602.05976 Soft Condensed Matter +1602.06140 Optimization and Control +1602.06506 Information Theory +1602.07472 Spectral Theory +1602.07971 Statistical Mechanics +1602.08011 Phenomenology +1602.08048 Statistics Theory +1602.08248 History and Philosophy of Physics +1602.09042 Plasma Physics +1603.00105 Mesoscale and Nanoscale Physics +1603.00227 Analysis of PDEs +1603.00540 Analysis of PDEs +1603.01328 Disordered Systems and Neural Networks +1603.01408 Populations and Evolution +1603.01537 Differential Geometry +1603.01948 Theory +1603.02046 Statistical Mechanics +1603.02189 +1603.02340 +1603.02851 +1603.03222 Astrophysics of Galaxies +1603.04334 Computational Physics +1603.04353 Operator Algebras +1603.04442 Strongly Correlated Electrons +1603.04717 Group Theory +1603.04819 Statistical Mechanics +1603.05571 Theory +1603.05635 +1603.06255 +1603.06331 Cosmology and Nongalactic Astrophysics +1603.06703 Soft Condensed Matter +1603.06767 Accelerator Physics +1603.07253 Computation and Language +1603.07289 Statistical Mechanics +1603.07418 Materials Science +1603.08023 Computation and Language +1603.08614 Earth and Planetary Astrophysics +1603.08866 +1603.09301 Combinatorics +1604.00011 Theory +1604.00079 Mesoscale and Nanoscale Physics +1604.00833 Robotics +1604.01159 Quantum Algebra +1604.01398 Mesoscale and Nanoscale Physics +1604.01663 +1604.01814 Fluid Dynamics +1604.02646 Learning +1604.02653 Data Analysis, Statistics and Probability +1604.03364 Functional Analysis +1604.03437 Atomic Physics +1604.03928 Chaotic Dynamics +1604.04472 Materials Science +1604.04710 Accelerator Physics +1604.05065 +1604.05125 +1604.05237 Geometric Topology +1604.05313 Theory +1604.05327 Theory +1604.05565 Biological Physics +1604.05591 Superconductivity +1604.05626 Materials Science +1604.05833 Materials Science +1604.05876 Plasma Physics +1604.05969 +1604.06062 +1604.06792 Phenomenology +1604.07115 +1604.07191 +1604.07913 Physics Education +1604.08015 Number Theory +1604.08300 Phenomenology +1605.00086 Data Analysis, Statistics and Probability +1605.00109 Materials Science +1605.00341 Theory +1605.00857 Theory +1605.00898 Phenomenology +1605.01052 Physics and Society +1605.01173 +1605.01423 Strongly Correlated Electrons +1605.01973 Populations and Evolution +1605.02061 Theory +1605.02070 Phenomenology +1605.02426 Atomic Physics +1605.02742 Phenomenology +1605.02913 Optics +1605.04305 +1605.04848 Instrumentation and Detectors +1605.05103 +1605.05196 Complex Variables +1605.05473 Numerical Analysis +1605.05759 Mesoscale and Nanoscale Physics +1605.05817 Strongly Correlated Electrons +1605.05852 Cosmology and Nongalactic Astrophysics +1605.06007 Soft Condensed Matter +1605.06256 Instrumentation and Detectors +1605.06575 Earth and Planetary Astrophysics +1605.06613 +1605.06719 +1605.07331 Statistical Mechanics +1605.07357 Phenomenology +1605.07525 Theory +1605.07538 Disordered Systems and Neural Networks +1605.07555 +1605.07697 Instrumentation and Detectors +1605.07769 Algebraic Geometry +1605.08232 General Physics +1605.08264 Materials Science +1605.08380 Mesoscale and Nanoscale Physics +1605.08419 Strongly Correlated Electrons +1605.08562 Chaotic Dynamics +1605.08896 Phenomenology +1605.08919 +1605.09225 Statistical Mechanics +1605.09404 Phenomenology +1605.09448 Dynamical Systems +1606.00371 +1606.00818 Materials Science +1606.00916 Phenomenology +1606.01065 Mesoscale and Nanoscale Physics +1606.01277 Lattice +1606.01503 Materials Science +1606.01859 Atomic Physics +1606.02400 Fluid Dynamics +1606.02559 Mesoscale and Nanoscale Physics +1606.02630 +1606.02735 Mesoscale and Nanoscale Physics +1606.02987 Cosmology and Nongalactic Astrophysics +1606.03135 Numerical Analysis +1606.03181 +1606.03218 Mesoscale and Nanoscale Physics +1606.03322 Physics Education +1606.03749 Computation +1606.03909 +1606.05260 Theory +1606.05322 Chemical Physics +1606.05649 Astrophysics of Galaxies +1606.05728 Mesoscale and Nanoscale Physics +1606.05764 Soft Condensed Matter +1606.05780 +1606.06118 Mesoscale and Nanoscale Physics +1606.06227 Materials Science +1606.06789 Computational Physics +1606.06835 Physics and Society +1606.06839 Mesoscale and Nanoscale Physics +1606.07024 Other Quantitative Biology +1606.07302 Optics +1606.07627 Lattice +1606.08076 Experiment +1606.08237 Classical Physics +1606.08361 Atomic Physics +1606.08496 Information Theory +1606.08524 Theory +1606.08564 Plasma Physics +1606.08679 Portfolio Management +1606.08697 Atomic Physics +1606.09063 Phenomenology +1606.09166 Differential Geometry +1606.09347 Materials Science +1606.09565 Cosmology and Nongalactic Astrophysics +1607.00063 +1607.00119 +1607.00352 +1607.00493 Statistical Mechanics +1607.00742 Materials Science +1607.00747 Optics +1607.00866 Information Theory +1607.00914 Theory +1607.01022 Phenomenology +1607.01223 Networking and Internet Architecture +1607.01687 General Topology +1607.01802 Instrumentation and Methods for Astrophysics +1607.02512 Strongly Correlated Electrons +1607.02570 Materials Science +1607.02593 Theory +1607.02704 Phenomenology +1607.02728 Mesoscale and Nanoscale Physics +1607.02778 Disordered Systems and Neural Networks +1607.02811 Quantum Gases +1607.02819 Soft Condensed Matter +1607.02894 Experiment +1607.02926 Soft Condensed Matter +1607.02941 Soft Condensed Matter +1607.03121 Phenomenology +1607.03142 Optimization and Control +1607.03712 Numerical Analysis +1607.03838 Phenomenology +1607.03989 Quantum Gases +1607.04037 +1607.04041 High Energy Astrophysical Phenomena +1607.04042 Analysis of PDEs +1607.04053 Phenomenology +1607.04212 Strongly Correlated Electrons +1607.04442 Functional Analysis +1607.04480 Materials Science +1607.04516 Mesoscale and Nanoscale Physics +1607.04574 Quantum Gases +1607.04630 Pattern Formation and Solitons +1607.04643 Phenomenology +1607.04761 Statistical Mechanics +1607.04884 Physics and Society +1607.04926 Information Theory +1607.04956 Atomic Physics +1607.04998 Theory +1607.05204 +1607.05249 Chemical Physics +1607.05395 Strongly Correlated Electrons +1607.05464 Mesoscale and Nanoscale Physics +1607.05509 +1607.05628 Atomic Physics +1607.05752 Spectral Theory +1607.05763 Chemical Physics +1607.05800 Statistical Mechanics +1607.05982 Mesoscale and Nanoscale Physics +1607.06131 Mesoscale and Nanoscale Physics +1607.06477 Chaotic Dynamics +1607.06997 Computer Vision and Pattern Recognition +1607.07041 Theory +1607.07148 +1607.07413 Theory +1607.07450 High Energy Astrophysical Phenomena +1607.07481 Phenomenology +1607.07660 Computer Vision and Pattern Recognition +1607.07669 General Topology +1607.08515 Disordered Systems and Neural Networks +1607.08781 Instrumentation and Methods for Astrophysics +1607.08887 Theory +1607.08906 Superconductivity +1608.00008 Phenomenology +1608.00038 Mesoscale and Nanoscale Physics +1608.00328 Theory +1608.00402 Quantum Gases +1608.00470 Computation and Language +1608.00541 Numerical Analysis +1608.00561 Instrumentation and Detectors +1608.00577 Phenomenology +1608.01014 Dynamical Systems +1608.01028 Pattern Formation and Solitons +1608.01062 Pattern Formation and Solitons +1608.01080 Plasma Physics +1608.01313 Mesoscale and Nanoscale Physics +1608.01314 Phenomenology +1608.01347 Soft Condensed Matter +1608.01438 +1608.01473 Biomolecules +1608.01515 Theory +1608.01591 Materials Science +1608.01629 Atomic Physics +1608.01792 Geophysics +1608.01956 +1608.01963 +1608.02103 Phenomenology +1608.02108 +1608.02141 Chemical Physics +1608.02174 Cosmology and Nongalactic Astrophysics +1608.02176 Phenomenology +1608.02514 Strongly Correlated Electrons +1608.02552 Solar and Stellar Astrophysics +1608.02593 +1608.02779 Quantum Algebra +1608.02862 +1608.03104 +1608.03111 Phenomenology +1608.03258 Cellular Automata and Lattice Gases +1608.03337 Adaptation and Self-Organizing Systems +1608.03392 Metric Geometry +1608.03746 +1608.03952 +1608.04096 Phenomenology +1608.04113 Statistical Mechanics +1608.04302 Phenomenology +1608.04330 Medical Physics +1608.04421 Astrophysics of Galaxies +1608.04490 Strongly Correlated Electrons +1608.04599 Classical Physics +1608.04634 +1608.04737 Astrophysics of Galaxies +1608.04882 +1608.04949 Solar and Stellar Astrophysics +1608.04991 Materials Science +1608.05066 Solar and Stellar Astrophysics +1608.05107 Chemical Physics +1608.05116 Theory +1608.05133 Optimization and Control +1608.05242 Mesoscale and Nanoscale Physics +1608.05277 Learning +1608.05316 High Energy Astrophysical Phenomena +1608.05355 Soft Condensed Matter +1608.05392 +1608.05441 Statistical Mechanics +1608.05492 Statistical Mechanics +1608.05580 Numerical Analysis +1608.05715 Theory +1608.05872 Complex Variables +1608.05897 Phenomenology +1608.05998 Phenomenology +1608.06083 Superconductivity +1608.06126 +1608.06260 Mesoscale and Nanoscale Physics +1608.06293 +1608.06344 Mesoscale and Nanoscale Physics +1608.06435 Physics and Society +1608.07110 Quantum Gases +1608.07128 Mesoscale and Nanoscale Physics +1608.07237 Theory +1608.07301 Chaotic Dynamics +1608.07400 Information Retrieval +1608.07419 Soft Condensed Matter +1608.07572 Atomic Physics +1608.07593 Strongly Correlated Electrons +1608.07688 Phenomenology +1608.07744 Rings and Algebras +1608.07761 Strongly Correlated Electrons +1608.07794 Physics and Society +1608.07808 Superconductivity +1608.07823 Statistical Mechanics +1608.07824 Phenomenology +1608.07919 Atomic Physics +1608.08065 Phenomenology +1608.08147 Disordered Systems and Neural Networks +1608.08181 Astrophysics of Galaxies +1608.08504 Theory +1608.08579 Mesoscale and Nanoscale Physics +1608.08582 General Finance +1608.08655 Statistical Mechanics +1608.08722 Spectral Theory +1608.08727 Theory +1609.00006 Disordered Systems and Neural Networks +1609.00171 Soft Condensed Matter +1609.00297 Phenomenology +1609.00334 Chemical Physics +1609.00336 Chemical Physics +1609.00350 +1609.00442 +1609.00950 Mesoscale and Nanoscale Physics +1609.00970 Phenomenology +1609.01189 Theory +1609.01285 Quantum Gases +1609.01379 Materials Science +1609.01457 Soft Condensed Matter +1609.01459 Artificial Intelligence +1609.01572 Statistical Mechanics +1609.01777 Materials Science +1609.01864 Phenomenology +1609.01876 Mesoscale and Nanoscale Physics +1609.01878 Strongly Correlated Electrons +1609.02026 Strongly Correlated Electrons +1609.02431 Superconductivity +1609.02491 Statistical Mechanics +1609.02492 +1609.02538 Phenomenology +1609.02565 Mesoscale and Nanoscale Physics +1609.02588 History and Overview +1609.02699 Mesoscale and Nanoscale Physics +1609.02739 Numerical Analysis +1609.02740 Biological Physics +1609.02862 +1609.03166 Strongly Correlated Electrons +1609.03318 Materials Science +1609.03358 Physics and Society +1609.03412 Emerging Technologies +1609.03467 Disordered Systems and Neural Networks +1609.03521 Strongly Correlated Electrons +1609.03566 Astrophysics of Galaxies +1609.03709 Mesoscale and Nanoscale Physics +1609.03888 Experiment +1609.04009 Soft Condensed Matter +1609.04010 Earth and Planetary Astrophysics +1609.04129 Mesoscale and Nanoscale Physics +1609.04179 Functional Analysis +1609.04275 Materials Science +1609.04339 Phenomenology +1609.04349 Materials Science +1609.04501 Lattice +1609.04576 +1609.04641 Soft Condensed Matter +1609.04743 Solar and Stellar Astrophysics +1609.04866 Materials Science +1609.05260 Materials Science +1609.05380 Superconductivity +1609.05389 +1609.05457 Theory +1609.05616 Artificial Intelligence +1609.05754 +1609.05762 Adaptation and Self-Organizing Systems +1609.05766 Geometric Topology +1609.05790 Fluid Dynamics +1609.05845 Mesoscale and Nanoscale Physics +1609.05980 Statistical Mechanics +1609.05995 Combinatorics +1609.06034 +1609.06039 +1609.06042 Phenomenology +1609.06310 Phenomenology +1609.06336 Pattern Formation and Solitons +1609.06548 Soft Condensed Matter +1609.06586 +1609.06952 High Energy Astrophysical Phenomena +1609.07002 Phenomenology +1609.07063 Mesoscale and Nanoscale Physics +1609.07260 +1609.07292 Subcellular Processes +1609.07344 Phenomenology +1609.07563 Mesoscale and Nanoscale Physics +1609.08091 High Energy Astrophysical Phenomena +1609.08102 Phenomenology +1609.08105 +1609.08166 +1609.08245 Mesoscale and Nanoscale Physics +1609.08305 +1609.08342 +1609.08895 Phenomenology +1609.08927 Astrophysics of Galaxies +1609.08955 Mesoscale and Nanoscale Physics +1609.08979 Algebraic Geometry +1609.09013 Optics +1609.09120 Theory +1609.09165 +1609.09259 Superconductivity +1609.09275 Cosmology and Nongalactic Astrophysics +1609.09318 Theory +1609.09406 Solar and Stellar Astrophysics +1609.09530 Optimization and Control +1609.09652 Optics +1609.09737 Soft Condensed Matter +1609.09831 Materials Science +1610.00206 Atomic Physics +1610.00264 Instrumentation and Detectors +1610.00354 Phenomenology +1610.00408 +1610.00531 +1610.00802 Earth and Planetary Astrophysics +1610.00917 Atomic Physics +1610.01037 +1610.01124 +1610.01316 Mesoscale and Nanoscale Physics +1610.01350 +1610.01361 Adaptation and Self-Organizing Systems +1610.01434 Instrumentation and Detectors +1610.01498 Astrophysics of Galaxies +1610.01731 High Energy Astrophysical Phenomena +1610.01810 Phenomenology +1610.01841 Earth and Planetary Astrophysics +1610.01920 +1610.02054 Materials Science +1610.02122 Methodology +1610.02203 Quantum Gases +1610.02257 Superconductivity +1610.02386 Mesoscale and Nanoscale Physics +1610.02394 Theory +1610.02505 Instrumentation and Detectors +1610.02520 Disordered Systems and Neural Networks +1610.02659 Phenomenology +1610.02987 Methodology +1610.03015 Materials Science +1610.03092 Astrophysics of Galaxies +1610.03262 Systems and Control +1610.03399 Strongly Correlated Electrons +1610.03481 Theory +1610.03733 Theory +1610.03752 Strongly Correlated Electrons +1610.03805 +1610.03921 Mesoscale and Nanoscale Physics +1610.03940 Solar and Stellar Astrophysics +1610.04037 Adaptation and Self-Organizing Systems +1610.04163 Theory +1610.04228 Theory +1610.04245 Statistical Mechanics +1610.04445 High Energy Astrophysical Phenomena +1610.04500 Materials Science +1610.04612 Phenomenology +1610.04844 Neurons and Cognition +1610.05111 Instrumentation and Detectors +1610.05362 High Energy Astrophysical Phenomena +1610.05374 Numerical Analysis +1610.05411 Mesoscale and Nanoscale Physics +1610.05450 Chaotic Dynamics +1610.05490 +1610.05573 High Energy Astrophysical Phenomena +1610.05677 Theory +1610.05967 Theory +1610.05992 +1610.06004 +1610.06172 Mesoscale and Nanoscale Physics +1610.06296 +1610.06451 Materials Science +1610.06477 Statistical Mechanics +1610.06584 Computational Physics +1610.06588 Phenomenology +1610.06771 Strongly Correlated Electrons +1610.06802 Astrophysics of Galaxies +1610.06803 High Energy Astrophysical Phenomena +1610.06955 Soft Condensed Matter +1610.07014 Astrophysics of Galaxies +1610.07015 High Energy Astrophysical Phenomena +1610.07121 Numerical Analysis +1610.07156 Mesoscale and Nanoscale Physics +1610.07189 Theory +1610.07292 General Finance +1610.07536 Solar and Stellar Astrophysics +1610.08047 High Energy Astrophysical Phenomena +1610.08175 High Energy Astrophysical Phenomena +1610.08202 Phenomenology +1610.08406 Chemical Physics +1610.08418 Quantum Gases +1610.08428 Astrophysics of Galaxies +1610.08489 Mesoscale and Nanoscale Physics +1610.08536 Experiment +1610.08709 Experiment +1610.08714 Strongly Correlated Electrons +1610.08908 +1610.08919 Quantum Gases +1610.08995 High Energy Astrophysical Phenomena +1610.09232 Combinatorics +1610.09710 Mesoscale and Nanoscale Physics +1610.09748 +1610.09824 High Energy Astrophysical Phenomena +1610.09873 Earth and Planetary Astrophysics +1610.09965 Probability +1610.10049 +1610.10069 Instrumentation and Detectors +1611.00025 Astrophysics of Galaxies +1611.00506 Classical Physics +1611.00857 Astrophysics of Galaxies +1611.01108 +1611.01162 High Energy Astrophysical Phenomena +1611.01197 Soft Condensed Matter +1611.01401 Superconductivity +1611.01740 +1611.02083 +1611.02094 Phenomenology +1611.02141 Solar and Stellar Astrophysics +1611.02191 High Energy Astrophysical Phenomena +1611.02285 Earth and Planetary Astrophysics +1611.02290 Cosmology and Nongalactic Astrophysics +1611.02778 Fluid Dynamics +1611.02996 Materials Science +1611.03092 Astrophysics of Galaxies +1611.03097 Superconductivity +1611.03203 Plasma Physics +1611.03478 Theory +1611.03501 Astrophysics of Galaxies +1611.03550 Soft Condensed Matter +1611.03597 Materials Science +1611.03661 +1611.03878 High Energy Astrophysical Phenomena +1611.04038 Accelerator Physics +1611.04267 +1611.04422 Analysis of PDEs +1611.04435 Astrophysics of Galaxies +1611.04441 Phenomenology +1611.04541 Superconductivity +1611.04572 Phenomenology +1611.04667 Solar and Stellar Astrophysics +1611.04698 Astrophysics of Galaxies +1611.04857 Mesoscale and Nanoscale Physics +1611.05114 Soft Condensed Matter +1611.05133 High Energy Astrophysical Phenomena +1611.05171 Differential Geometry +1611.05574 Plasma Physics +1611.06121 Statistical Mechanics +1611.06348 Statistical Mechanics +1611.06424 Strongly Correlated Electrons +1611.06461 +1611.06464 Instrumentation and Methods for Astrophysics +1611.06982 +1611.07069 Strongly Correlated Electrons +1611.07104 +1611.07128 Optics +1611.07280 Solar and Stellar Astrophysics +1611.07561 High Energy Astrophysical Phenomena +1611.07645 Phenomenology +1611.07775 +1611.07955 Experiment +1611.08021 Experiment +1611.08172 +1611.08218 High Energy Astrophysical Phenomena +1611.08463 Quantum Gases +1611.08567 Plasma Physics +1611.08582 Strongly Correlated Electrons +1611.08595 Astrophysics of Galaxies +1611.08743 Distributed, Parallel, and Cluster Computing +1611.08745 High Energy Astrophysical Phenomena +1611.08753 Materials Science +1611.08965 Pattern Formation and Solitons +1611.09228 Materials Science +1611.09278 Algebraic Geometry +1611.09459 Instrumentation and Methods for Astrophysics +1611.09518 Mesoscale and Nanoscale Physics +1611.09622 Mesoscale and Nanoscale Physics +1611.09652 Analysis of PDEs +1611.09780 Instrumentation and Detectors +1611.10006 Materials Science +1611.10070 Phenomenology +1611.10184 Soft Condensed Matter +1611.10273 Mesoscale and Nanoscale Physics +1612.00616 +1612.00705 Atmospheric and Oceanic Physics +1612.00726 Number Theory +1612.00815 Quantum Gases +1612.01126 +1612.01224 Fluid Dynamics +1612.01311 Fluid Dynamics +1612.01376 Instrumentation and Detectors +1612.01537 Solar and Stellar Astrophysics +1612.01555 Soft Condensed Matter +1612.01813 Analysis of PDEs +1612.01853 +1612.02146 Plasma Physics +1612.02206 +1612.02266 Mesoscale and Nanoscale Physics +1612.02394 High Energy Astrophysical Phenomena +1612.02774 High Energy Astrophysical Phenomena +1612.02868 High Energy Astrophysical Phenomena +1612.03253 Quantum Gases +1612.03286 Probability +1612.03379 Chaotic Dynamics +1612.03493 Experiment +1612.03528 Experiment +1612.03568 Solar and Stellar Astrophysics +1612.03752 Astrophysics of Galaxies +1612.03980 Astrophysics of Galaxies +1612.04480 +1612.04501 +1612.04503 Astrophysics of Galaxies +1612.04617 +1612.04632 Solar and Stellar Astrophysics +1612.04686 Strongly Correlated Electrons +1612.04792 Theory +1612.04863 Mesoscale and Nanoscale Physics +1612.05183 Differential Geometry +1612.05520 Strongly Correlated Electrons +1612.06954 Computational Geometry +1612.07065 Networking and Internet Architecture +1612.07557 Materials Science +1612.07779 History and Philosophy of Physics +1612.07995 Mesoscale and Nanoscale Physics +1612.08222 +1612.08227 Emerging Technologies +1612.08300 Mesoscale and Nanoscale Physics +1612.08466 +1612.08517 +1612.08518 +1612.08519 +1612.08525 +1612.08594 Mesoscale and Nanoscale Physics +1612.08737 Functional Analysis +1612.08777 Artificial Intelligence +1612.08895 Classical Analysis and ODEs +1612.09030 Learning +1612.09110 High Energy Astrophysical Phenomena +1612.09281 Theory +1612.09304 Analysis of PDEs +1612.09413 Methodology +1701.00013 Strongly Correlated Electrons +1701.00155 Algebraic Geometry +1701.00189 Theory +1701.00205 Logic +1701.00208 Logic +1701.00348 Optics +1701.00422 Machine Learning +1701.00483 +1701.00487 Human-Computer Interaction +1701.00490 Solar and Stellar Astrophysics +1701.00493 Earth and Planetary Astrophysics +1701.00496 Theory +1701.00498 Phenomenology +1701.00499 Optics +1701.00500 Metric Geometry +1701.00502 Astrophysics of Galaxies +1701.00503 Distributed, Parallel, and Cluster Computing +1701.00504 Computation and Language +1701.00507 Medical Physics +1701.00510 Quantum Algebra +1701.00511 Algebraic Geometry +1701.00513 Probability +1701.00514 Differential Geometry +1701.00515 General Mathematics +1701.00516 Geometric Topology +1701.00517 General Mathematics +1701.00518 General Mathematics +1701.00519 General Mathematics +1701.00520 General Physics +1701.00521 Plasma Physics +1701.00523 Populations and Evolution +1701.00524 Biological Physics +1701.00525 Number Theory +1701.00528 Theory +1701.00529 Computer Science and Game Theory +1701.00531 Geometric Topology +1701.00532 Fluid Dynamics +1701.00534 Classical Physics +1701.00536 Lattice +1701.00537 Numerical Analysis +1701.00540 Risk Management +1701.00544 Number Theory +1701.00545 Theory +1701.00546 Distributed, Parallel, and Cluster Computing +1701.00548 Accelerator Physics +1701.00549 Probability +1701.00550 +1701.00552 Functional Analysis +1701.00553 Pattern Formation and Solitons +1701.00558 Optimization and Control +1701.00559 Mesoscale and Nanoscale Physics +1701.00560 Representation Theory +1701.00561 Computer Vision and Pattern Recognition +1701.00562 Computation and Language +1701.00563 Dynamical Systems +1701.00565 Algebraic Topology +1701.00566 Probability +1701.00567 Category Theory +1701.00568 Physics and Society +1701.00569 Fluid Dynamics +1701.00570 Complex Variables +1701.00571 Geometric Topology +1701.00574 +1701.00575 +1701.00576 Computation and Language +1701.00577 Cosmology and Nongalactic Astrophysics +1701.00581 Instrumentation and Methods for Astrophysics +1701.00582 Mesoscale and Nanoscale Physics +1701.00583 Soft Condensed Matter +1701.00584 Soft Condensed Matter +1701.00585 Combinatorics +1701.00587 Cell Behavior +1701.00591 Superconductivity +1701.00592 Classical Physics +1701.00594 Physics and Society +1701.00595 Computers and Society +1701.00596 Superconductivity +1701.00597 Learning +1701.00600 Combinatorics +1701.00601 Differential Geometry +1701.00602 Molecular Networks +1701.00603 Phenomenology +1701.00604 Strongly Correlated Electrons +1701.00605 Representation Theory +1701.00609 Learning +1701.00610 Data Analysis, Statistics and Probability +1701.00611 Number Theory +1701.00612 Digital Libraries +1701.00613 Quantum Gases +1701.00614 Combinatorics +1701.00615 Astrophysics of Galaxies +1701.00616 Classical Analysis and ODEs +1701.00617 Probability +1701.00619 Instrumentation and Methods for Astrophysics +1701.00620 Metric Geometry +1701.00621 Rings and Algebras +1701.00622 Databases +1701.00624 Logic in Computer Science +1701.00625 Probability +1701.00626 Databases +1701.00627 Databases +1701.00628 Differential Geometry +1701.00629 Programming Languages +1701.00631 Programming Languages +1701.00632 Programming Languages +1701.00633 Programming Languages +1701.00634 Programming Languages +1701.00635 Data Structures and Algorithms +1701.00636 Programming Languages +1701.00637 Logic in Computer Science +1701.00638 Logic in Computer Science +1701.00639 Logic in Computer Science +1701.00640 Programming Languages +1701.00641 Theory +1701.00642 Artificial Intelligence +1701.00644 Phenomenology +1701.00645 Information Theory +1701.00646 Artificial Intelligence +1701.00647 +1701.00649 Programming Languages +1701.00650 Formal Languages and Automata Theory +1701.00651 Plasma Physics +1701.00654 High Energy Astrophysical Phenomena +1701.00655 Number Theory +1701.00656 +1701.00657 Astrophysics of Galaxies +1701.00658 Category Theory +1701.00659 Other Computer Science +1701.00660 Logic in Computer Science +1701.00661 +1701.00662 Operator Algebras +1701.00664 +1701.00666 Materials Science +1701.00667 Fluid Dynamics +1701.00668 Numerical Analysis +1701.00669 Computer Vision and Pattern Recognition +1701.00670 Optimization and Control +1701.00671 Soft Condensed Matter +1701.00672 Representation Theory +1701.00673 Quantitative Methods +1701.00674 Algebraic Geometry +1701.00675 +1701.00676 Group Theory +1701.00677 Machine Learning +1701.00679 Computational Geometry +1701.00681 Experiment +1701.00682 Theory +1701.00683 Instrumentation and Methods for Astrophysics +1701.00684 Algebraic Topology +1701.00685 Earth and Planetary Astrophysics +1701.00686 Group Theory +1701.00687 Accelerator Physics +1701.00688 Theory +1701.00689 Algebraic Geometry +1701.00690 Cosmology and Nongalactic Astrophysics +1701.00691 Networking and Internet Architecture +1701.00694 Computer Vision and Pattern Recognition +1701.00695 Optics +1701.00697 Operator Algebras +1701.00698 Number Theory +1701.00700 Combinatorics +1701.00703 Statistical Mechanics +1701.00704 Geophysics +1701.00706 Discrete Mathematics +1701.00708 Instrumentation and Methods for Astrophysics +1701.00709 Geophysics +1701.00711 Rings and Algebras +1701.00712 Biological Physics +1701.00713 Algebraic Geometry +1701.00715 Combinatorics +1701.00716 Quantum Gases +1701.00717 Probability +1701.00718 Probability +1701.00719 +1701.00720 Statistical Mechanics +1701.00721 General Topology +1701.00722 Numerical Analysis +1701.00723 Computer Vision and Pattern Recognition +1701.00725 Phenomenology +1701.00726 Lattice +1701.00727 Dynamical Systems +1701.00728 Computation and Language +1701.00730 Analysis of PDEs +1701.00731 +1701.00732 Cell Behavior +1701.00733 Solar and Stellar Astrophysics +1701.00736 Optimization and Control +1701.00737 Information Theory +1701.00738 Number Theory +1701.00739 Solar and Stellar Astrophysics +1701.00740 Cryptography and Security +1701.00741 High Energy Astrophysical Phenomena +1701.00742 Fluid Dynamics +1701.00745 Numerical Analysis +1701.00746 Solar and Stellar Astrophysics +1701.00748 +1701.00749 Information Retrieval +1701.00751 Solar and Stellar Astrophysics +1701.00752 Computers and Society +1701.00753 Numerical Analysis +1701.00754 Learning +1701.00755 Optics +1701.00756 Soft Condensed Matter +1701.00758 Functional Analysis +1701.00759 Solar and Stellar Astrophysics +1701.00760 Mesoscale and Nanoscale Physics +1701.00761 Phenomenology +1701.00762 Strongly Correlated Electrons +1701.00763 Theory +1701.00764 Theory +1701.00765 Adaptation and Self-Organizing Systems +1701.00766 Functional Analysis +1701.00767 Information Theory +1701.00768 Rings and Algebras +1701.00770 Methodology +1701.00773 Cryptography and Security +1701.00774 Dynamical Systems +astro-ph/0306414 +astro-ph/0405291 +astro-ph/0605339 +astro-ph/9602142 +astro-ph/9802184 +astro-ph/9805305 +astro-ph/9807340 +astro-ph/9907353 +gr-qc/0507109 +hep-ph/0003308 Phenomenology +hep-th/9904209 Theory +hep-th/9912211 Theory +math/0303184 Differential Geometry +quant-ph/9704027 +0711.1151 Combinatorics +0906.3902 Group Theory +0911.0127 Analysis of PDEs +1003.1402 +1006.4658 Algebraic Topology +1010.4472 Differential Geometry +1112.2321 Algebraic Topology +1202.2352 Theory +1203.4399 Algebraic Topology +1205.4409 Theory +1206.0620 Classical Physics +1209.2780 High Energy Astrophysical Phenomena +1209.5225 Algebraic Topology +1212.5341 Quantum Gases +1301.2079 Methodology +1301.3933 Methodology +1304.7533 General Finance +1305.0136 Algebraic Topology +1305.6448 Probability +1307.5694 Symplectic Geometry +1308.6751 General Mathematics +1309.7119 Computational Engineering, Finance, and Science +1309.7528 Information Theory +1310.3448 Algebraic Geometry +1310.4075 +1311.0010 Representation Theory +1311.2175 Probability +1312.2041 Populations and Evolution +1401.3800 Classical Physics +1401.5862 Lattice +1402.3586 +1402.6286 Information Theory +1402.6571 General Mathematics +1403.1965 Lattice +1403.4121 Number Theory +1404.5033 +1404.5433 Computer Science and Game Theory +1404.5582 Theory +1406.0698 Statistical Mechanics +1406.3219 Category Theory +1406.4297 Probability +1406.6260 Probability +1407.6239 Digital Libraries +1407.6860 Optimization and Control +1407.8479 Complex Variables +1409.0278 +1410.1979 +1410.3398 Differential Geometry +1410.3703 Combinatorics +1411.5709 Differential Geometry +1411.6740 Theory +1411.6755 Geometric Topology +1411.6819 Algebraic Geometry +1412.0558 Theory +1412.1006 Populations and Evolution +1412.3612 Quantum Algebra +1412.6084 Algebraic Geometry +1412.7634 Algebraic Geometry +1502.04540 Analysis of PDEs +1503.06278 Materials Science +1503.08099 Biological Physics +1504.01906 Numerical Analysis +1504.04449 +1504.05269 Theory +1504.05935 Cosmology and Nongalactic Astrophysics +1505.00177 Phenomenology +1505.02724 Probability +1505.05719 +1505.08165 Number Theory +1506.00188 Mathematical Finance +1506.00839 Computation and Language +1506.01489 Algebraic Topology +1506.03146 Solar and Stellar Astrophysics +1506.07718 Functional Analysis +1506.07866 Computer Vision and Pattern Recognition +1507.00286 Classical Analysis and ODEs +1507.00887 Optimization and Control +1507.01120 Combinatorics +1507.02986 Atomic Physics +1507.03403 Computational Geometry +1507.06790 Probability +1507.06867 Algebraic Topology +1507.08164 Discrete Mathematics +1507.08258 Cryptography and Security +1508.00895 Cosmology and Nongalactic Astrophysics +1508.02182 Optimization and Control +1508.04193 Number Theory +1509.00057 +1509.00467 +1509.00650 Methodology +1509.00683 Analysis of PDEs +1509.01431 Probability +1509.01799 Probability +1509.01847 Group Theory +1509.02254 Combinatorics +1509.04507 +1509.06344 History and Overview +1509.06753 +1509.08862 Rings and Algebras +1509.09283 Classical Analysis and ODEs +1510.00012 Computation +1510.00279 Number Theory +1510.03303 Materials Science +1510.04380 +1510.04425 +1510.05204 Quantum Gases +1510.05491 Learning +1510.05973 Theory +1510.06064 Number Theory +1510.06287 Probability +1510.07111 Optimization and Control +1510.09043 Algebraic Geometry +1511.00141 Quantum Gases +1511.01130 +1511.01166 Robotics +1511.01192 Numerical Analysis +1511.03379 Algebraic Geometry +1511.04020 Methodology +1511.04643 Neurons and Cognition +1511.05840 +1511.09201 Materials Science +1512.01161 Materials Science +1512.01552 Mesoscale and Nanoscale Physics +1512.01638 Analysis of PDEs +1512.02783 Analysis of PDEs +1512.04819 Statistical Mechanics +1512.05417 Social and Information Networks +1512.06126 Numerical Analysis +1512.07438 Cryptography and Security +1512.08164 Soft Condensed Matter +1512.08781 Materials Science +1601.02501 +1601.04143 Computer Vision and Pattern Recognition +1601.04222 Algebraic Geometry +1601.04996 +1601.05877 Numerical Analysis +1601.05899 Chemical Physics +1601.06050 Strongly Correlated Electrons +1601.06271 Analysis of PDEs +1601.06299 Spectral Theory +1601.07108 Social and Information Networks +1602.02010 Mesoscale and Nanoscale Physics +1602.02201 Information Theory +1602.02628 +1602.03083 Logic +1602.03966 Social and Information Networks +1602.04143 Atomic Physics +1602.04652 Data Structures and Algorithms +1602.04863 Group Theory +1602.05003 Machine Learning +1602.05942 +1602.08207 Information Theory +1602.08661 Theory +1603.01126 Other Condensed Matter +1603.01255 Materials Science +1603.01296 Number Theory +1603.02617 Computer Vision and Pattern Recognition +1603.02801 +1603.05175 Materials Science +1603.05557 Systems and Control +1603.05959 Computer Vision and Pattern Recognition +1603.07093 Mesoscale and Nanoscale Physics +1603.09676 Mesoscale and Nanoscale Physics +1604.00589 Networking and Internet Architecture +1604.02026 Mesoscale and Nanoscale Physics +1604.02560 Algebraic Geometry +1604.03744 Information Theory +1604.04102 +1604.04848 Computer Vision and Pattern Recognition +1604.05150 Soft Condensed Matter +1604.05195 Theory +1604.06129 Earth and Planetary Astrophysics +1604.07147 Operator Algebras +1605.00601 Systems and Control +1605.01161 Differential Geometry +1605.01897 Differential Geometry +1605.03929 Algebraic Geometry +1605.04326 Classical Physics +1605.04497 Algebraic Topology +1605.04571 +1605.04576 Information Theory +1605.04654 Classical Analysis and ODEs +1605.04703 Analysis of PDEs +1605.04960 Fluid Dynamics +1605.05596 Classical Analysis and ODEs +1605.06060 Mesoscale and Nanoscale Physics +1605.07124 Quantitative Methods +1605.07576 +1605.07723 Machine Learning +1605.08054 Astrophysics of Galaxies +1605.08606 +1605.08892 Plasma Physics +1605.09273 +1605.09782 Learning +1606.01031 +1606.01142 Theory +1606.01565 Mesoscale and Nanoscale Physics +1606.02365 Probability +1606.02391 Statistical Mechanics +1606.02403 Superconductivity +1606.02900 Performance +1606.03712 Spectral Theory +1606.04042 Data Structures and Algorithms +1606.04678 Information Theory +1606.04684 Mesoscale and Nanoscale Physics +1606.06596 +1606.07477 Phenomenology +1606.07951 Analysis of PDEs +1606.08136 Applications +1606.08267 Solar and Stellar Astrophysics +1606.08760 Dynamical Systems +1606.09121 Differential Geometry +1606.09330 +1606.09516 Strongly Correlated Electrons +1606.09618 Number Theory +1607.00271 Quantum Algebra +1607.00586 Algebraic Geometry +1607.00612 High Energy Astrophysical Phenomena +1607.01252 Theory +1607.01314 Cosmology and Nongalactic Astrophysics +1607.01463 Mesoscale and Nanoscale Physics +1607.01700 Dynamical Systems +1607.01994 Functional Analysis +1607.02578 +1607.02656 Instrumentation and Detectors +1607.02851 Plasma Physics +1607.03844 Mesoscale and Nanoscale Physics +1607.03959 Combinatorics +1607.04199 +1607.04961 Classical Analysis and ODEs +1607.05114 +1607.05135 Quantum Gases +1607.05378 Experiment +1607.05673 Algebraic Geometry +1607.06838 Fluid Dynamics +1607.07121 Physics Education +1607.08006 High Energy Astrophysical Phenomena +1607.08173 Plasma Physics +1607.08557 Theory +1607.08790 Soft Condensed Matter +1608.00421 Phenomenology +1608.00424 Category Theory +1608.00651 Dynamical Systems +1608.00682 Operator Algebras +1608.01008 Machine Learning +1608.01449 Materials Science +1608.02386 Phenomenology +1608.02489 Phenomenology +1608.02498 Accelerator Physics +1608.02561 Mesoscale and Nanoscale Physics +1608.02577 Phenomenology +1608.02604 Metric Geometry +1608.02730 Rings and Algebras +1608.03171 Information Theory +1608.03253 +1608.03577 Phenomenology +1608.04200 Computer Vision and Pattern Recognition +1608.04622 Neural and Evolutionary Computing +1608.05531 Strongly Correlated Electrons +1608.05674 Phenomenology +1608.06329 Superconductivity +1608.06710 Atmospheric and Oceanic Physics +1608.07311 Plasma Physics +1608.07341 Mesoscale and Nanoscale Physics +1608.07425 Quantum Gases +1608.08904 Strongly Correlated Electrons +1609.00680 Biomolecules +1609.01287 Theory +1609.01418 Mesoscale and Nanoscale Physics +1609.02428 Strongly Correlated Electrons +1609.03138 Combinatorics +1609.03263 Number Theory +1609.03375 Physics and Society +1609.03503 Information Theory +1609.03703 Social and Information Networks +1609.04305 Experiment +1609.04572 Experiment +1609.05203 Functional Analysis +1609.05414 Mesoscale and Nanoscale Physics +1609.05718 Atomic Physics +1609.05889 General Physics +1609.05955 Quantum Gases +1609.06225 High Energy Astrophysical Phenomena +1609.07080 Fluid Dynamics +1609.07101 Logic +1609.07316 Algebraic Topology +1609.08040 Analysis of PDEs +1609.08130 Numerical Analysis +1609.08133 Materials Science +1609.08221 Computer Vision and Pattern Recognition +1609.08451 Superconductivity +1609.08596 Combinatorics +1609.08630 Cosmology and Nongalactic Astrophysics +1609.09078 Phenomenology +1609.09596 Information Theory +1609.09733 Differential Geometry +1610.00033 Methodology +1610.00681 Systems and Control +1610.00941 Quantum Gases +1610.02023 Theory +1610.02108 Astrophysics of Galaxies +1610.02415 Learning +1610.02776 Mesoscale and Nanoscale Physics +1610.03314 Strongly Correlated Electrons +1610.03698 General Physics +1610.04388 Logic in Computer Science +1610.04712 Data Structures and Algorithms +1610.05445 Logic +1610.05466 Combinatorics +1610.06474 Probability +1610.07038 Numerical Analysis +1610.07252 Information Theory +1610.07341 Algebraic Geometry +1610.07355 Neural and Evolutionary Computing +1610.07364 Mesoscale and Nanoscale Physics +1610.07967 Number Theory +1610.08005 Group Theory +1610.08310 Theory +1610.08319 Mesoscale and Nanoscale Physics +1610.08394 Chemical Physics +1610.08703 Robotics +1610.08788 +1610.08898 Statistical Mechanics +1610.09013 Computer Vision and Pattern Recognition +1610.09429 Category Theory +1610.09654 Algebraic Geometry +1610.09699 Quantum Gases +1610.09917 Mesoscale and Nanoscale Physics +1610.09959 +1611.00510 +1611.00626 Quantum Gases +1611.01015 High Energy Astrophysical Phenomena +1611.01064 +1611.01320 +1611.01715 Multimedia +1611.01881 Instrumentation and Methods for Astrophysics +1611.02535 Materials Science +1611.02926 +1611.03191 Genomics +1611.04069 Machine Learning +1611.04213 Information Theory +1611.04610 Earth and Planetary Astrophysics +1611.04650 Theory +1611.04888 +1611.05329 +1611.05558 Computational Complexity +1611.05627 +1611.05669 Quantitative Methods +1611.06525 Chemical Physics +1611.06533 Superconductivity +1611.06537 Superconductivity +1611.06783 Number Theory +1611.06915 Computational Geometry +1611.07363 Optics +1611.08085 Molecular Networks +1611.08347 Geometric Topology +1611.08523 +1611.09324 Analysis of PDEs +1611.09561 Classical Analysis and ODEs +1611.10245 Optics +1612.00775 Machine Learning +1612.00915 Information Theory +1612.02052 Phenomenology +1612.02429 Astrophysics of Galaxies +1612.02460 Applications +1612.02482 Computation and Language +1612.02576 Chemical Physics +1612.02601 Quantum Gases +1612.03172 +1612.03326 History and Overview +1612.03396 Mesoscale and Nanoscale Physics +1612.03901 Information Theory +1612.04182 Analysis of PDEs +1612.04348 Algebraic Geometry +1612.04460 Computation and Language +1612.04923 Computational Physics +1612.05119 Mesoscale and Nanoscale Physics +1612.05646 Theory +1612.05993 Algebraic Geometry +1612.06005 Functional Analysis +1612.06255 Numerical Analysis +1612.06507 Networking and Internet Architecture +1612.06778 Computation and Language +1612.06794 Astrophysics of Galaxies +1612.06880 Theory +1612.07389 Analysis of PDEs +1612.07502 Soft Condensed Matter +1612.07547 Computer Science and Game Theory +1612.07577 Dynamical Systems +1612.07678 +1612.07813 Theory +1612.07880 Data Analysis, Statistics and Probability +1612.08124 Combinatorics +1612.08141 Computation +1612.08145 Pattern Formation and Solitons +1612.08448 Fluid Dynamics +1612.08549 Machine Learning +1612.08697 Combinatorics +1612.08704 Mesoscale and Nanoscale Physics +1612.08882 Multimedia +1612.08935 Neurons and Cognition +1612.08954 Theory +1612.08966 +1612.09051 Representation Theory +1612.09196 Quantum Algebra +1612.09245 Analysis of PDEs +1612.09299 Data Structures and Algorithms +1612.09449 Lattice +1701.00054 Strongly Correlated Electrons +1701.00311 Statistics Theory +1701.00347 Phenomenology +1701.00495 Computer Vision and Pattern Recognition +1701.00547 +1701.00606 +1701.00607 +1701.00747 Strongly Correlated Electrons +1701.00886 Computational Finance +1701.00901 Analysis of PDEs +1701.00944 +1701.01081 Computer Vision and Pattern Recognition +1701.01311 Neurons and Cognition +1701.01319 +1701.01368 Algebraic Geometry +1701.01459 Instrumentation and Detectors +1701.01512 Solar and Stellar Astrophysics +1701.01551 Phenomenology +1701.01582 Machine Learning +1701.01590 Cryptography and Security +1701.01591 Statistical Mechanics +1701.01726 Earth and Planetary Astrophysics +1701.01728 Astrophysics of Galaxies +1701.01730 Instrumentation and Methods for Astrophysics +1701.01731 Astrophysics of Galaxies +1701.01733 Earth and Planetary Astrophysics +1701.01736 High Energy Astrophysical Phenomena +1701.01737 Information Retrieval +1701.01738 Materials Science +1701.01739 Physics Education +1701.01740 Physics and Society +1701.01741 Methodology +1701.01743 Optics +1701.01745 Computer Vision and Pattern Recognition +1701.01746 Cell Behavior +1701.01748 Instrumentation and Methods for Astrophysics +1701.01749 Biological Physics +1701.01751 Geometric Topology +1701.01752 Quantum Algebra +1701.01753 Experiment +1701.01757 Accelerator Physics +1701.01759 +1701.01761 Phenomenology +1701.01762 Number Theory +1701.01763 Other Computer Science +1701.01764 +1701.01766 Number Theory +1701.01768 Optimization and Control +1701.01770 Optics +1701.01771 Other Computer Science +1701.01773 Data Analysis, Statistics and Probability +1701.01775 Instrumentation and Methods for Astrophysics +1701.01776 Biological Physics +1701.01777 Systems and Control +1701.01778 High Energy Astrophysical Phenomena +1701.01779 Computer Vision and Pattern Recognition +1701.01780 Numerical Analysis +1701.01781 Combinatorics +1701.01782 Probability +1701.01783 +1701.01784 Materials Science +1701.01785 Programming Languages +1701.01787 Applications +1701.01788 Astrophysics of Galaxies +1701.01791 Neural and Evolutionary Computing +1701.01793 Human-Computer Interaction +1701.01794 Strongly Correlated Electrons +1701.01795 Geometric Topology +1701.01796 Information Theory +1701.01797 Representation Theory +1701.01799 Networking and Internet Architecture +1701.01800 Information Theory +1701.01802 History and Philosophy of Physics +1701.01805 +1701.01808 Analysis of PDEs +1701.01810 Computer Science and Game Theory +1701.01811 Computation and Language +1701.01812 Optimization and Control +1701.01813 Number Theory +1701.01814 Computer Vision and Pattern Recognition +1701.01817 Group Theory +1701.01818 Materials Science +1701.01819 Strongly Correlated Electrons +1701.01820 Information Theory +1701.01824 Materials Science +1701.01825 High Energy Astrophysical Phenomena +1701.01826 Materials Science +1701.01827 Algebraic Geometry +1701.01828 +1701.01831 Instrumentation and Detectors +1701.01832 Superconductivity +1701.01833 Computer Vision and Pattern Recognition +1701.01834 Classical Physics +1701.01835 Differential Geometry +1701.01837 Phenomenology +1701.01838 Geometric Topology +1701.01839 Mesoscale and Nanoscale Physics +1701.01841 +1701.01842 Strongly Correlated Electrons +1701.01843 Materials Science +1701.01846 Mesoscale and Nanoscale Physics +1701.01847 Mesoscale and Nanoscale Physics +1701.01850 Information Theory +1701.01851 +1701.01852 +1701.01853 +1701.01854 Computation and Language +1701.01855 Mesoscale and Nanoscale Physics +1701.01857 Astrophysics of Galaxies +1701.01858 Social and Information Networks +1701.01859 Numerical Analysis +1701.01860 Instrumentation and Methods for Astrophysics +1701.01861 High Energy Astrophysical Phenomena +1701.01864 Theory +1701.01865 Statistical Mechanics +1701.01866 Computational Physics +1701.01867 Physics Education +1701.01868 Representation Theory +1701.01871 Experiment +1701.01872 Materials Science +1701.01873 Materials Science +1701.01874 Spectral Theory +1701.01875 Computer Vision and Pattern Recognition +1701.01876 Computer Vision and Pattern Recognition +1701.01877 Geophysics +1701.01878 +1701.01879 Computer Vision and Pattern Recognition +1701.01881 Geophysics +1701.01882 Systems and Control +1701.01883 +1701.01884 Optimization and Control +1701.01885 Computer Vision and Pattern Recognition +1701.01886 Cosmology and Nongalactic Astrophysics +1701.01887 Learning +1701.01888 +1701.01889 Functional Analysis +1701.01890 Number Theory +1701.01891 Pricing of Securities +1701.01892 Computer Vision and Pattern Recognition +1701.01893 Statistics Theory +1701.01894 Systems and Control +1701.01895 Combinatorics +1701.01896 Numerical Analysis +1701.01898 Algebraic Geometry +1701.01899 Rings and Algebras +1701.01900 Social and Information Networks +1701.01901 Functional Analysis +1701.01902 Dynamical Systems +1701.01903 +1701.01904 Analysis of PDEs +1701.01905 Algebraic Geometry +1701.01907 Classical Analysis and ODEs +1701.01908 Computation and Language +1701.01909 Computer Vision and Pattern Recognition +1701.01910 Dynamical Systems +1701.01911 Computer Vision and Pattern Recognition +1701.01913 Optimization and Control +1701.01914 Statistical Mechanics +1701.01917 Learning +1701.01918 Atomic Physics +1701.01920 Statistical Mechanics +1701.01921 Phenomenology +1701.01922 Phenomenology +1701.01923 Instrumentation and Detectors +1701.01924 Computer Vision and Pattern Recognition +1701.01925 Astrophysics of Galaxies +1701.01926 Networking and Internet Architecture +1701.01927 Number Theory +1701.01928 Networking and Internet Architecture +1701.01930 Computer Vision and Pattern Recognition +1701.01931 Networking and Internet Architecture +1701.01932 Computer Vision and Pattern Recognition +1701.01934 Phenomenology +1701.01936 Data Structures and Algorithms +1701.01937 Fluid Dynamics +1701.01938 Information Theory +1701.01939 Computational Complexity +1701.01940 Computer Vision and Pattern Recognition +1701.01942 Computer Vision and Pattern Recognition +1701.01944 Superconductivity +1701.01945 Optimization and Control +1701.01949 Statistical Mechanics +1701.01952 Information Theory +1701.01953 Combinatorics +1701.01954 Experiment +1701.01955 Optimization and Control +1701.01956 Statistics Theory +1701.01957 Statistical Mechanics +1701.01958 Information Theory +1701.01959 Mesoscale and Nanoscale Physics +1701.01960 Cryptography and Security +1701.01961 Statistics Theory +1701.01963 Computer Science and Game Theory +1701.01964 Mesoscale and Nanoscale Physics +1701.01965 Optimization and Control +1701.01966 Phenomenology +1701.01968 Dynamical Systems +1701.01969 Number Theory +1701.01970 Number Theory +1701.01971 Formal Languages and Automata Theory +1701.01972 Differential Geometry +1701.01974 Information Theory +1701.01975 Quantitative Methods +1701.01976 Instrumentation and Methods for Astrophysics +1701.01978 Number Theory +1701.01980 Geometric Topology +1701.01981 Information Theory +1701.01982 Superconductivity +1701.01984 Dynamical Systems +1701.01985 Algebraic Geometry +1701.01986 Algebraic Geometry +1701.01988 Complex Variables +1701.01990 Functional Analysis +1701.01991 Quantum Algebra +1701.01993 Mesoscale and Nanoscale Physics +1701.01994 Symbolic Computation +1701.01995 Analysis of PDEs +1701.01996 Computer Vision and Pattern Recognition +1701.01997 +1701.01998 Analysis of PDEs +1701.01999 +1701.02000 Discrete Mathematics +1701.02001 Logic +1701.02002 Methodology +1701.02003 High Energy Astrophysical Phenomena +1701.02006 Mesoscale and Nanoscale Physics +1701.02007 Operator Algebras +1701.02008 Group Theory +1701.02009 Information Theory +1701.02010 Information Theory +1701.02011 Chemical Physics +1701.02013 Information Theory +1701.02015 Mathematical Finance +1701.02016 Disordered Systems and Neural Networks +1701.02017 High Energy Astrophysical Phenomena +1701.02018 Number Theory +1701.02019 Materials Science +1701.02020 Logic +1701.02021 Information Retrieval +1701.02022 Instrumentation and Detectors +1701.02023 Chemical Physics +1701.02024 Logic +1701.02026 Learning +1701.02027 Materials Science +1701.02028 Risk Management +1701.02030 Networking and Internet Architecture +1701.02031 Logic +1701.02032 Experiment +1701.02033 Materials Science +1701.02034 High Energy Astrophysical Phenomena +1701.02036 Systems and Control +1701.02038 Dynamical Systems +1701.02039 Algebraic Geometry +1701.02041 Materials Science +1701.02043 Information Theory +1701.02044 Information Theory +1701.02045 Optimization and Control +1701.02047 Optimization and Control +1701.02048 Combinatorics +1701.02050 Information Retrieval +1701.02051 Mesoscale and Nanoscale Physics +1701.02052 Operator Algebras +1701.02053 Complex Variables +1701.02054 +1701.02056 Astrophysics of Galaxies +1701.02057 Symplectic Geometry +1701.02058 Learning +1701.02059 Biological Physics +1701.02060 Analysis of PDEs +1701.02062 +1701.02064 Probability +1701.02065 Cosmology and Nongalactic Astrophysics +1701.02066 Numerical Analysis +1701.02067 High Energy Astrophysical Phenomena +1701.02068 Astrophysics of Galaxies +1701.02070 Physics and Society +1701.02071 Machine Learning +1701.02072 Neurons and Cognition +1701.02073 Computation and Language +1701.02077 Materials Science +1701.02078 Optimization and Control +1701.02079 Materials Science +1701.02080 Networking and Internet Architecture +1701.02081 Information Theory +1701.02083 Algebraic Topology +1701.02084 Geometric Topology +1701.02085 Quantum Gases +1701.02086 Chemical Physics +1701.02088 Information Theory +1701.02089 Solar and Stellar Astrophysics +1701.02090 Theory +1701.02091 Analysis of PDEs +1701.02092 +1701.02093 Computers and Society +1701.02094 Mesoscale and Nanoscale Physics +1701.02096 Computer Vision and Pattern Recognition +1701.02097 Analysis of PDEs +1701.02098 +1701.02099 Probability +1701.02101 Analysis of PDEs +1701.02104 Commutative Algebra +1701.02105 +1701.02106 +1701.02107 Phenomenology +1701.02109 Combinatorics +1701.02110 Methodology +1701.02112 Solar and Stellar Astrophysics +1701.02113 Numerical Analysis +1701.02115 Number Theory +1701.02118 Logic in Computer Science +1701.02119 Information Theory +1701.02121 Analysis of PDEs +1701.02122 Phenomenology +1701.02123 Computer Vision and Pattern Recognition +1701.02124 Analysis of PDEs +1701.02125 Earth and Planetary Astrophysics +1701.02126 Probability +1701.02127 Computer Vision and Pattern Recognition +1701.02129 Probability +1701.02131 Solar and Stellar Astrophysics +1701.02132 Instrumentation and Methods for Astrophysics +1701.02133 Machine Learning +1701.02134 Differential Geometry +1701.02135 Number Theory +1701.02137 Strongly Correlated Electrons +1701.02139 Mesoscale and Nanoscale Physics +1701.02140 Phenomenology +1701.02141 Computer Vision and Pattern Recognition +1701.02142 Statistical Mechanics +1701.02143 +1701.02144 High Energy Astrophysical Phenomena +1701.02145 Cryptography and Security +1701.02148 Analysis of PDEs +1701.02149 Computation and Language +1701.02150 Networking and Internet Architecture +1701.02151 Cosmology and Nongalactic Astrophysics +1701.02152 Category Theory +1701.02153 Strongly Correlated Electrons +1701.02154 Quantum Gases +1701.02156 Methodology +1701.02157 Differential Geometry +1701.02158 Combinatorics +1701.02160 Networking and Internet Architecture +1701.02161 Numerical Analysis +1701.02162 Computational Complexity +1701.02164 Rings and Algebras +1701.02165 High Energy Astrophysical Phenomena +1701.02166 Computer Vision and Pattern Recognition +1701.02167 Mathematical Finance +1701.02168 Computer Science and Game Theory +1701.02169 Rings and Algebras +1701.02170 Complex Variables +1701.02171 Geometric Topology +1701.02174 Atmospheric and Oceanic Physics +1701.02177 Materials Science +1701.02178 Rings and Algebras +1701.02180 Operator Algebras +1701.02181 Atomic Physics +1701.02182 General Finance +1701.02185 Computation and Language +1701.02186 Algebraic Geometry +1701.02187 +1701.02189 Programming Languages +1701.02190 Databases +1701.02191 Analysis of PDEs +1701.02192 Optimization and Control +1701.02193 Discrete Mathematics +1701.02195 Systems and Control +1701.02197 Disordered Systems and Neural Networks +1701.02198 Strongly Correlated Electrons +1701.02199 Logic in Computer Science +1701.02202 Plasma Physics +1701.02203 Differential Geometry +1701.02205 Phenomenology +1701.02206 Solar and Stellar Astrophysics +1701.02208 Algebraic Topology +1701.02209 Soft Condensed Matter +1701.02210 Complex Variables +1701.02211 Soft Condensed Matter +1701.02212 High Energy Astrophysical Phenomena +1701.02215 Phenomenology +1701.02217 +1701.02219 Classical Analysis and ODEs +1701.02220 Software Engineering +1701.02221 Databases +1701.02222 Theory +1701.02223 Chemical Physics +1701.02224 Phenomenology +1701.02225 +1701.02226 +1701.02227 Logic +1701.02228 Probability +1701.02229 Computational Geometry +1701.02230 Analysis of PDEs +1701.02231 Logic in Computer Science +1701.02234 Probability +1701.02235 +1701.02237 Metric Geometry +1701.02239 +1701.02241 High Energy Astrophysical Phenomena +1701.02242 Functional Analysis +1701.02243 Computers and Society +1701.02244 Analysis of PDEs +1701.02245 Optimization and Control +1701.02246 Metric Geometry +1701.02247 Analysis of PDEs +1701.02249 Mesoscale and Nanoscale Physics +1701.02251 +1701.02252 +1701.02253 Mesoscale and Nanoscale Physics +1701.02254 +1701.02256 +1701.02258 Computer Vision and Pattern Recognition +1701.02260 Classical Analysis and ODEs +1701.02261 Information Theory +1701.02262 Symplectic Geometry +1701.02264 Numerical Analysis +1701.02265 Machine Learning +1701.02267 Physics Education +1701.02270 Exactly Solvable and Integrable Systems +1701.02271 Statistics Theory +1701.02279 +1701.02280 +1701.02282 +1701.02284 Programming Languages +1701.02285 Chemical Physics +1701.02286 Number Theory +1701.02288 Experiment +1701.02289 Classical Analysis and ODEs +1701.02292 Information Theory +1701.02293 Symplectic Geometry +1701.02294 Theory +1701.02295 Solar and Stellar Astrophysics +1701.02297 Differential Geometry +1701.02298 Social and Information Networks +1701.02299 Metric Geometry +cond-mat/0303241 +cond-mat/0305309 +cond-mat/0307344 +cond-mat/0310378 +cond-mat/0310515 Statistical Mechanics +cs/0602009 Other Computer Science +quant-ph/0007016 +quant-ph/0208043 +quant-ph/0611054 +quant-ph/9705002 +1110.2952 General Mathematics +1110.6653 Commutative Algebra +1205.6688 Probability +1302.0346 +1302.3045 Computer Science and Game Theory +1303.3031 Algebraic Geometry +1306.6084 Analysis of PDEs +1308.5134 Theory +1309.4618 Algebraic Geometry +1311.7407 Computational Complexity +1401.1542 Optics +1402.3706 Analysis of PDEs +1402.4206 Analysis of PDEs +1405.5855 Adaptation and Self-Organizing Systems +1407.2842 Functional Analysis +1407.2885 Representation Theory +1408.5276 Representation Theory +1410.5016 Emerging Technologies +1410.5291 General Physics +1411.0092 Other Computer Science +1411.6131 Analysis of PDEs +1411.7430 +1412.4496 Commutative Algebra +1412.5313 Algebraic Geometry +1412.6365 Algebraic Geometry +1501.02321 Analysis of PDEs +1503.00256 Methodology +1504.01915 Combinatorics +1504.07689 Theory +1505.04375 Classical Analysis and ODEs +1505.05852 Computer Science and Game Theory +1505.06868 Probability +1505.07647 Computer Vision and Pattern Recognition +1506.00819 +1506.03845 Earth and Planetary Astrophysics +1506.06289 Computer Vision and Pattern Recognition +1507.01670 Algebraic Topology +1507.01955 +1507.03479 Applications +1507.06966 Other Condensed Matter +1507.08029 Optimization and Control +1508.00036 Optimization and Control +1508.03019 Optics +1508.03136 Optimization and Control +1508.03205 Number Theory +1509.06729 Computer Vision and Pattern Recognition +1509.06914 Theory +1509.09194 Algebraic Topology +1510.00414 Phenomenology +1510.00801 Analysis of PDEs +1510.01833 Combinatorics +1510.03972 Fluid Dynamics +1510.06013 Probability +1510.06292 Geometric Topology +1510.07189 Numerical Analysis +1510.07408 +1510.07442 Functional Analysis +1510.08473 Distributed, Parallel, and Cluster Computing +1511.02579 Analysis of PDEs +1511.02933 Commutative Algebra +1511.06301 Analysis of PDEs +1511.06913 Group Theory +1511.06914 Theory +1512.02912 Economics +1512.03712 Plasma Physics +1512.05064 Emerging Technologies +1512.05614 Rings and Algebras +1512.06024 Biological Physics +1512.07399 Cosmology and Nongalactic Astrophysics +1512.07866 Probability +1601.00309 Functional Analysis +1601.01203 Digital Libraries +1601.02917 Physics and Society +1601.03508 Phenomenology +1601.04632 Analysis of PDEs +1601.05966 Analysis of PDEs +1601.07112 Cosmology and Nongalactic Astrophysics +1602.01993 Materials Science +1602.03028 High Energy Astrophysical Phenomena +1602.05015 Astrophysics of Galaxies +1602.06113 +1602.06496 Superconductivity +1602.06903 +1603.01625 +1603.01911 Discrete Mathematics +1603.02625 Statistics Theory +1603.03025 Combinatorics +1603.04813 Algebraic Geometry +1603.05204 +1603.06421 Statistical Mechanics +1603.06888 Economics +1603.09501 Optimization and Control +1603.09644 Statistical Mechanics +1603.09732 Computer Vision and Pattern Recognition +1604.01990 Logic in Computer Science +1604.02002 Analysis of PDEs +1604.02221 Other Statistics +1604.03000 Information Theory +1604.04173 Methodology +1604.06609 Probability +1604.08466 Numerical Analysis +1605.00996 Theory +1605.01903 Distributed, Parallel, and Cluster Computing +1605.02368 Phenomenology +1605.03452 Molecular Networks +1605.04955 Machine Learning +1605.05908 +1605.07127 Machine Learning +1605.08665 Combinatorics +1606.00729 Fluid Dynamics +1606.04160 Learning +1606.05644 +1606.06364 Machine Learning +1606.08140 Computation and Language +1606.08658 Machine Learning +1606.08706 Chemical Physics +1607.00449 Atomic Physics +1607.01832 Algebraic Geometry +1607.02888 Metric Geometry +1607.02948 +1607.02951 Distributed, Parallel, and Cluster Computing +1607.03098 Fluid Dynamics +1607.03232 Combinatorics +1607.03836 Combinatorics +1607.05178 Distributed, Parallel, and Cluster Computing +1607.05220 Geometric Topology +1607.05479 Theory +1607.06028 +1607.06066 Phenomenology +1607.06678 Geophysics +1607.06996 Machine Learning +1607.07666 +1607.08755 Cosmology and Nongalactic Astrophysics +1608.00162 Quantum Gases +1608.00994 +1608.01001 Classical Physics +1608.02566 +1608.02568 +1608.03023 Learning +1608.04364 Chemical Physics +1608.04596 General Physics +1608.05363 Theory +1608.06043 Computation and Language +1608.06715 Materials Science +1608.07746 Analysis of PDEs +1608.08040 Neurons and Cognition +1608.08235 Complex Variables +1609.00510 +1609.00529 Chemical Physics +1609.00962 Representation Theory +1609.01546 Mesoscale and Nanoscale Physics +1609.01691 Phenomenology +1609.03250 Artificial Intelligence +1609.03396 Computer Vision and Pattern Recognition +1609.03716 Materials Science +1609.05287 Astrophysics of Galaxies +1609.06028 +1609.07372 High Energy Astrophysical Phenomena +1609.07557 Probability +1609.07868 Phenomenology +1609.08551 Strongly Correlated Electrons +1609.08811 Robotics +1609.09049 Robotics +1609.09125 Phenomenology +1609.09499 Astrophysics of Galaxies +1610.00022 +1610.00047 High Energy Astrophysical Phenomena +1610.00402 Graphics +1610.00428 Functional Analysis +1610.00629 Phenomenology +1610.00851 Mesoscale and Nanoscale Physics +1610.00855 Discrete Mathematics +1610.01267 Performance +1610.01443 Computer Science and Game Theory +1610.01988 Information Theory +1610.02479 Experiment +1610.02586 Phenomenology +1610.02666 +1610.02690 Probability +1610.03116 Mesoscale and Nanoscale Physics +1610.03567 Instrumentation and Methods for Astrophysics +1610.04200 Analysis of PDEs +1610.05502 Analysis of PDEs +1610.05835 Analysis of PDEs +1610.05864 Materials Science +1610.06217 Combinatorics +1610.07165 Differential Geometry +1610.07362 Mesoscale and Nanoscale Physics +1610.08704 Optics +1610.08945 Operator Algebras +1611.00838 Machine Learning +1611.01317 Experiment +1611.01566 +1611.01989 Learning +1611.02613 Optics +1611.03051 Functional Analysis +1611.04124 Theory +1611.04262 Strongly Correlated Electrons +1611.04678 Chemical Physics +1611.04968 Solar and Stellar Astrophysics +1611.04982 Optimization and Control +1611.05019 Probability +1611.05829 Fluid Dynamics +1611.06598 Combinatorics +1611.07025 Phenomenology +1611.07369 Optimization and Control +1611.07491 Optimization and Control +1611.07846 Chemical Physics +1611.08750 Populations and Evolution +1611.09035 Logic in Computer Science +1611.09603 +1611.10253 Networking and Internet Architecture +1612.00660 Phenomenology +1612.02003 High Energy Astrophysical Phenomena +1612.02351 +1612.03301 Machine Learning +1612.03716 Computer Vision and Pattern Recognition +1612.03774 Number Theory +1612.05663 Materials Science +1612.05857 Mesoscale and Nanoscale Physics +1612.06258 Quantum Gases +1612.06372 Strongly Correlated Electrons +1612.06761 Theory +1612.07013 Phenomenology +1612.07238 Fluid Dynamics +1612.07407 Rings and Algebras +1612.07668 Astrophysics of Galaxies +1612.07766 Cryptography and Security +1612.07986 +1612.08101 Algebraic Geometry +1612.08734 +1612.08781 Statistical Mechanics +1701.00283 Representation Theory +1701.01228 +1701.01403 +1701.01464 Phenomenology +1701.01511 Molecular Networks +1701.02675 Numerical Analysis +1701.02706 Quantum Gases +1701.02758 Statistical Mechanics +1701.02783 +1701.02862 Rings and Algebras +1701.02877 Computation and Language +1701.02899 Probability +1701.03480 Phenomenology +1701.03563 Theory +1701.04546 Accelerator Physics +1701.04722 Learning +1701.04879 Plasma Physics +1701.05461 Dynamical Systems +1701.06249 Populations and Evolution +1701.06324 Instrumentation and Detectors +1701.06807 Computer Science and Game Theory +1701.08421 Cryptography and Security +1701.08605 Networking and Internet Architecture +1701.08607 Networking and Internet Architecture +1701.08683 Classical Physics +1702.00206 Cosmology and Nongalactic Astrophysics +1702.00439 +1702.00913 Phenomenology +1702.01405 Theory +1702.01593 +1702.01820 Instrumentation and Methods for Astrophysics +1702.01826 Solar and Stellar Astrophysics +1702.01985 Number Theory +1702.02269 K-Theory and Homology +1702.02938 Phenomenology +1702.03284 Phenomenology +1702.03452 Differential Geometry +1702.03505 Computer Vision and Pattern Recognition +1702.04133 Physics and Society +1702.04410 Phenomenology +1702.04833 +1702.05045 Theory +1702.05320 Instrumentation and Detectors +1702.05609 Populations and Evolution +1702.05748 Differential Geometry +1702.05960 Machine Learning +1702.06374 Phenomenology +1702.06540 Astrophysics of Galaxies +1702.06796 Theory +1702.07179 Combinatorics +1702.07666 Cosmology and Nongalactic Astrophysics +1702.07825 Computation and Language +1702.08000 Machine Learning +1702.08050 Group Theory +1702.08356 Astrophysics of Galaxies +1703.00363 Astrophysics of Galaxies +1703.00470 Statistical Mechanics +1703.00578 Theory +1703.00682 Probability +1703.01194 Mesoscale and Nanoscale Physics +1703.01295 Accelerator Physics +1703.01302 +1703.01357 Neurons and Cognition +1703.01372 Phenomenology +1703.01551 Superconductivity +1703.01696 Strongly Correlated Electrons +1703.01741 Materials Science +1703.01922 Materials Science +1703.01949 Analysis of PDEs +1703.01959 Cryptography and Security +1703.02071 Cosmology and Nongalactic Astrophysics +1703.02091 Computer Science and Game Theory +1703.02109 Classical Physics +1703.02118 Emerging Technologies +1703.02151 Computation +1703.02161 Computer Vision and Pattern Recognition +1703.02220 +1703.02238 Strongly Correlated Electrons +1703.02268 Dynamical Systems +1703.02285 Numerical Analysis +1703.02311 Computational Finance +1703.02373 Spectral Theory +1703.02381 Number Theory +1703.02393 Combinatorics +1703.02442 Computer Vision and Pattern Recognition +1703.02462 Methodology +1703.02514 Optics +1703.02516 Theory +1703.02529 Databases +1703.02532 General Physics +1703.02534 Instrumentation and Detectors +1703.02535 Disordered Systems and Neural Networks +1703.02537 Physics and Society +1703.02538 Theory +1703.02539 Astrophysics of Galaxies +1703.02540 Earth and Planetary Astrophysics +1703.02541 Superconductivity +1703.02542 +1703.02543 Mesoscale and Nanoscale Physics +1703.02544 High Energy Astrophysical Phenomena +1703.02545 Strongly Correlated Electrons +1703.02546 High Energy Astrophysical Phenomena +1703.02547 Statistical Mechanics +1703.02548 +1703.02549 Superconductivity +1703.02550 Astrophysics of Galaxies +1703.02551 Astrophysics of Galaxies +1703.02552 +1703.02553 Strongly Correlated Electrons +1703.02554 High Energy Astrophysical Phenomena +1703.02555 High Energy Astrophysical Phenomena +1703.02556 Cosmology and Nongalactic Astrophysics +1703.02557 +1703.02558 Phenomenology +1703.02559 +1703.02560 Differential Geometry +1703.02561 Chaotic Dynamics +1703.02562 Earth and Planetary Astrophysics +1703.02563 Computer Vision and Pattern Recognition +1703.02565 Optics +1703.02566 Astrophysics of Galaxies +1703.02568 Astrophysics of Galaxies +1703.02569 Analysis of PDEs +1703.02570 Learning +1703.02571 General Topology +1703.02572 Chemical Physics +1703.02573 Learning +1703.02574 Probability +1703.02575 Quantum Algebra +1703.02576 Phenomenology +1703.02577 Cryptography and Security +1703.02578 Geometric Topology +1703.02579 +1703.02580 Functional Analysis +1703.02581 Geometric Topology +1703.02584 Plasma Physics +1703.02585 Quantum Gases +1703.02586 Algebraic Topology +1703.02587 Differential Geometry +1703.02588 Logic +1703.02589 Computer Vision and Pattern Recognition +1703.02590 High Energy Astrophysical Phenomena +1703.02591 Databases +1703.02592 Soft Condensed Matter +1703.02593 Astrophysics of Galaxies +1703.02594 Theory +1703.02595 Geometric Topology +1703.02596 Learning +1703.02597 Representation Theory +1703.02598 Biomolecules +1703.02599 Analysis of PDEs +1703.02600 Group Theory +1703.02601 Mesoscale and Nanoscale Physics +1703.02602 Databases +1703.02603 +1703.02604 Astrophysics of Galaxies +1703.02605 Solar and Stellar Astrophysics +1703.02606 Phenomenology +1703.02607 Earth and Planetary Astrophysics +1703.02609 Representation Theory +1703.02610 Robotics +1703.02611 Biological Physics +1703.02612 Materials Science +1703.02613 Materials Science +1703.02614 Soft Condensed Matter +1703.02615 Analysis of PDEs +1703.02616 Astrophysics of Galaxies +1703.02617 +1703.02619 Differential Geometry +1703.02620 Computation and Language +1703.02622 Learning +1703.02623 Representation Theory +1703.02624 Optimization and Control +1703.02625 Social and Information Networks +1703.02626 Learning +1703.02627 Information Theory +1703.02629 Learning +1703.02631 Commutative Algebra +1703.02632 Fluid Dynamics +1703.02633 Number Theory +1703.02634 Quantum Gases +1703.02635 Instrumentation and Detectors +1703.02636 Classical Analysis and ODEs +1703.02637 Algebraic Geometry +1703.02638 Databases +1703.02639 Networking and Internet Architecture +1703.02640 Robotics +1703.02641 Machine Learning +1703.02642 Instrumentation and Methods for Astrophysics +1703.02644 Chaotic Dynamics +1703.02645 Artificial Intelligence +1703.02646 Optimization and Control +1703.02647 Machine Learning +1703.02648 Optimization and Control +1703.02650 Applications +1703.02651 Mesoscale and Nanoscale Physics +1703.02652 Computational Physics +1703.02654 Combinatorics +1703.02656 Earth and Planetary Astrophysics +1703.02657 Functional Analysis +1703.02658 Robotics +1703.02660 Learning +1703.02662 Learning +1703.02663 Algebraic Geometry +1703.02664 Networking and Internet Architecture +1703.02665 Geometric Topology +1703.02668 Combinatorics +1703.02669 Superconductivity +1703.02670 Earth and Planetary Astrophysics +1703.02671 Computational Geometry +1703.02672 Physics and Society +1703.02673 +1703.02674 Machine Learning +1703.02677 Phenomenology +1703.02678 Functional Analysis +1703.02679 Statistics Theory +1703.02680 Probability +1703.02681 +1703.02682 Machine Learning +1703.02683 Geometric Topology +1703.02684 Differential Geometry +1703.02685 Systems and Control +1703.02686 Astrophysics of Galaxies +1703.02687 Geometric Topology +1703.02689 Machine Learning +1703.02690 Machine Learning +1703.02693 Data Structures and Algorithms +1703.02694 Mathematical Finance +1703.02695 Classical Physics +1703.02696 Superconductivity +1703.02697 Algebraic Geometry +1703.02698 Cryptography and Security +1703.02699 Algebraic Geometry +1703.02700 Astrophysics of Galaxies +1703.02701 Materials Science +1703.02702 Learning +1703.02703 Algebraic Geometry +1703.02705 Number Theory +1703.02706 Analysis of PDEs +1703.02707 Optics +1703.02708 Materials Science +1703.02709 Number Theory +1703.02710 Computer Vision and Pattern Recognition +1703.02711 Solar and Stellar Astrophysics +1703.02712 Superconductivity +1703.02713 Classical Analysis and ODEs +1703.02714 +1703.02715 Statistical Finance +1703.02716 Computer Vision and Pattern Recognition +1703.02717 Atomic Physics +1703.02719 Computer Vision and Pattern Recognition +1703.02720 Statistics Theory +1703.02721 Machine Learning +1703.02722 Databases +1703.02723 Machine Learning +1703.02724 Statistics Theory +1703.02725 Biomolecules +1703.02726 Numerical Analysis +1703.02727 +1703.02728 Learning +1703.02729 Accelerator Physics +1703.02730 Probability +1703.02731 +1703.02732 Medical Physics +1703.02733 +1703.02734 Mesoscale and Nanoscale Physics +1703.02735 Functional Analysis +1703.02736 Statistics Theory +1703.02737 +1703.02738 Quantum Gases +1703.02739 Systems and Control +1703.02740 Phenomenology +1703.02741 Mesoscale and Nanoscale Physics +1703.02742 Information Theory +1703.02743 Distributed, Parallel, and Cluster Computing +1703.02744 Networking and Internet Architecture +1703.02745 Astrophysics of Galaxies +1703.02746 Strongly Correlated Electrons +1703.02747 Instrumentation and Detectors +1703.02748 Combinatorics +1703.02749 +1703.02750 Quantum Gases +1703.02751 Mesoscale and Nanoscale Physics +1703.02752 Pattern Formation and Solitons +1703.02753 Soft Condensed Matter +1703.02754 Software Engineering +1703.02755 Distributed, Parallel, and Cluster Computing +1703.02756 Materials Science +1703.02758 Molecular Networks +1703.02759 Mesoscale and Nanoscale Physics +1703.02760 Optimization and Control +1703.02761 Systems and Control +1703.02762 +1703.02763 Cosmology and Nongalactic Astrophysics +1703.02764 Logic +1703.02765 Theory +1703.02766 Lattice +1703.02767 Materials Science +1703.02768 Chaotic Dynamics +1703.02770 Algebraic Geometry +1703.02771 Astrophysics of Galaxies +1703.02773 +1703.02775 Classical Analysis and ODEs +1703.02776 Algebraic Geometry +1703.02777 Portfolio Management +1703.02778 Numerical Analysis +1703.02779 +1703.02780 Systems and Control +1703.02782 Probability +1703.02783 Algebraic Geometry +1703.02784 Data Structures and Algorithms +1703.02785 Chemical Physics +1703.02786 +1703.02787 Combinatorics +1703.02788 Distributed, Parallel, and Cluster Computing +1703.02789 Mesoscale and Nanoscale Physics +1703.02790 Dynamical Systems +1703.02791 Algebraic Topology +1703.02792 Functional Analysis +1703.02793 Algebraic Topology +1703.02794 Exactly Solvable and Integrable Systems +1703.02795 High Energy Astrophysical Phenomena +1703.02796 Complex Variables +1703.02797 Analysis of PDEs +1703.02798 Information Theory +1703.02799 Information Theory +1703.02800 Superconductivity +1703.02801 Theory +1703.02802 High Energy Astrophysical Phenomena +1703.02803 Theory +1703.02804 Phenomenology +1703.02805 Optics +1703.02806 Neural and Evolutionary Computing +1703.02807 Analysis of PDEs +1703.02809 Representation Theory +1703.02810 Artificial Intelligence +1703.02811 Instrumentation and Detectors +1703.02812 Quantum Gases +1703.02813 Quantum Gases +1703.02814 Analysis of PDEs +1703.02816 Soft Condensed Matter +1703.02817 Biological Physics +1703.02818 Cosmology and Nongalactic Astrophysics +1703.02819 Information Retrieval +1703.02820 Classical Analysis and ODEs +1703.02821 Instrumentation and Detectors +1703.02824 Materials Science +1703.02827 Algebraic Geometry +1703.02828 Populations and Evolution +1703.02829 Algebraic Geometry +1703.02830 Logic in Computer Science +1703.02831 Mesoscale and Nanoscale Physics +1703.02832 Analysis of PDEs +1703.02833 +1703.02834 Methodology +1703.02835 Biological Physics +1703.02837 Logic in Computer Science +1703.02838 Materials Science +1703.02839 Solar and Stellar Astrophysics +1703.02840 Number Theory +1703.02841 Functional Analysis +1703.02842 High Energy Astrophysical Phenomena +1703.02843 Superconductivity +1703.02844 Number Theory +1703.02845 Atomic Physics +1703.02846 Analysis of PDEs +1703.02847 Computers and Society +1703.02848 Number Theory +1703.02850 Quantitative Methods +1703.02851 Computer Science and Game Theory +1703.02852 Social and Information Networks +1703.02853 +1703.02854 Robotics +1703.02856 Analysis of PDEs +1703.02857 Numerical Analysis +1703.02858 +1703.02860 Computation and Language +1703.02861 +1703.02862 Functional Analysis +1703.02863 +1703.02864 Phenomenology +1703.02865 Physics and Society +1703.02866 Discrete Mathematics +1703.02867 Data Structures and Algorithms +1703.02868 Cryptography and Security +1703.02869 Materials Science +1703.02870 Applications +1703.02871 Populations and Evolution +1703.02872 Quantitative Methods +1703.02873 Software Engineering +1703.02875 +1703.02877 Algebraic Geometry +1703.02878 Optics +1703.02879 +1703.02880 +1703.02881 Analysis of PDEs +1703.02882 Numerical Analysis +1703.02883 Artificial Intelligence +1703.02884 General Physics +1703.02885 Mesoscale and Nanoscale Physics +1703.02886 Strongly Correlated Electrons +1703.02887 Dynamical Systems +1703.02888 Atomic Physics +1703.02889 Algebraic Geometry +1703.02890 Differential Geometry +1703.02891 General Physics +1703.02893 General Physics +1703.02894 Artificial Intelligence +1703.02895 Fluid Dynamics +1703.02897 Soft Condensed Matter +1703.02898 Computer Vision and Pattern Recognition +1703.02899 Learning +1703.02900 Superconductivity +1703.02901 Computational Geometry +1703.02902 Astrophysics of Galaxies +1703.02903 +1703.02905 Robotics +1703.02906 Physics and Society +1703.02908 Analysis of PDEs +1703.02909 Functional Analysis +1703.02910 Learning +1703.02911 +1703.02913 Astrophysics of Galaxies +1703.02914 Learning +1703.02915 Information Retrieval +1703.02917 Phenomenology +1703.02920 Instrumentation and Methods for Astrophysics +1703.02921 Computer Vision and Pattern Recognition +1703.02923 Theory +1703.02925 Software Engineering +1703.02926 Instrumentation and Detectors +1703.02927 Instrumentation and Methods for Astrophysics +1703.02928 Instrumentation and Detectors +1703.02929 Human-Computer Interaction +1703.02930 Learning +1703.02931 Computer Vision and Pattern Recognition +1703.02932 Solar and Stellar Astrophysics +1703.02933 Astrophysics of Galaxies +1703.02936 Adaptation and Self-Organizing Systems +1703.02937 Systems and Control +1703.02938 Human-Computer Interaction +1703.02940 Optics +1703.02941 Probability +1703.02942 Computer Vision and Pattern Recognition +1703.02943 Combinatorics +1703.02944 Computers and Society +1703.02945 +1703.02946 Materials Science +1703.02947 Combinatorics +1703.02948 Theory +1703.02949 Artificial Intelligence +1703.02950 Symplectic Geometry +1703.02953 Algebraic Geometry +1703.02954 Algebraic Geometry +1703.02955 Social and Information Networks +1703.02956 Astrophysics of Galaxies +1703.02957 Solar and Stellar Astrophysics +1703.02958 Phenomenology +1703.02959 +1703.02961 +1703.02962 Populations and Evolution +1703.02963 Probability +1703.02964 Phenomenology +1703.02965 Machine Learning +1703.02966 Statistical Mechanics +gr-qc/0111038 +math/0611625 Analysis of PDEs +0708.0898 +0803.2935 +0805.3758 Rings and Algebras +1007.2226 Probability +1104.2215 Information Theory +1201.6266 +1207.7233 Algebraic Geometry +1303.6159 Numerical Analysis +1305.4674 Strongly Correlated Electrons +1312.5198 Learning +1401.6164 Quantum Algebra +1403.3323 Combinatorics +1406.4060 Logic +1406.4552 +1406.7710 Probability +1409.0654 Populations and Evolution +1409.1856 Complex Variables +1411.7087 Logic +1412.0645 Methodology +1412.6890 Computation +1501.00616 Analysis of PDEs +1502.00401 Algebraic Topology +1502.01912 Mathematical Finance +1502.02966 Combinatorics +1502.03928 Superconductivity +1503.01866 Analysis of PDEs +1503.03388 Systems and Control +1503.03467 Numerical Analysis +1503.04894 Robotics +1503.05854 Soft Condensed Matter +1503.06804 Mesoscale and Nanoscale Physics +1504.08031 Statistics Theory +1504.08205 Analysis of PDEs +1505.00153 Optimization and Control +1505.04310 Materials Science +1505.06536 Algebraic Geometry +1506.01124 Pattern Formation and Solitons +1506.03389 Combinatorics +1507.00698 Dynamical Systems +1507.04223 Logic +1507.05438 +1507.06210 Optimization and Control +1507.08077 Numerical Analysis +1508.00253 Rings and Algebras +1508.02413 Complex Variables +1508.03641 Theory +1508.06937 Representation Theory +1509.02326 Functional Analysis +1509.06582 Optimization and Control +1509.07273 Analysis of PDEs +1510.01558 Number Theory +1510.02492 Solar and Stellar Astrophysics +1510.03345 Theory +1511.01061 Data Structures and Algorithms +1511.03327 Algebraic Geometry +1511.04928 Differential Geometry +1512.04027 +1512.04687 Statistical Mechanics +1601.01952 Systems and Control +1601.02160 Quantitative Methods +1601.02897 +1601.03524 Statistics Theory +1601.03710 Combinatorics +1601.04586 Methodology +1601.05992 Analysis of PDEs +1601.06845 Phenomenology +1602.01730 Populations and Evolution +1602.02976 Algebraic Geometry +1602.05852 Distributed, Parallel, and Cluster Computing +1602.05916 Learning +1602.07150 Strongly Correlated Electrons +1602.07599 Risk Management +1603.01562 Numerical Analysis +1603.04037 Computer Vision and Pattern Recognition +1603.04172 Information Theory +1603.05659 Neurons and Cognition +1603.06444 Commutative Algebra +1603.08134 Logic +1603.08176 Analysis of PDEs +1604.01018 Optics +1604.01293 Systems and Control +1604.03185 +1604.03312 +1604.03769 Phenomenology +1604.03908 Geometric Topology +1604.06096 Phenomenology +1604.06220 Strongly Correlated Electrons +1604.06542 Materials Science +1604.08107 Materials Science +1605.00333 Quantum Gases +1605.00553 Superconductivity +1605.02821 +1605.04151 Robotics +1605.04473 Numerical Analysis +1605.05169 Algebraic Geometry +1605.07856 Number Theory +1605.08744 Phenomenology +1605.08913 +1606.00991 Methodology +1606.01453 Computer Vision and Pattern Recognition +1606.02209 Dynamical Systems +1606.02318 Disordered Systems and Neural Networks +1606.02802 Dynamical Systems +1606.04519 Populations and Evolution +1606.04789 Machine Learning +1606.05872 Phenomenology +1606.06749 Functional Analysis +1606.06833 +1606.06998 Probability +1606.08677 Functional Analysis +1606.09180 Instrumentation and Methods for Astrophysics +1607.00946 Information Theory +1607.01048 Information Theory +1607.02360 Strongly Correlated Electrons +1607.02418 Analysis of PDEs +1607.03153 Cosmology and Nongalactic Astrophysics +1607.03769 Number Theory +1607.04740 Optics +1607.06573 Number Theory +1607.06639 Functional Analysis +1608.01918 +1608.02193 Artificial Intelligence +1608.02410 +1608.03117 Biological Physics +1608.05252 Logic in Computer Science +1608.05278 Analysis of PDEs +1608.05789 +1608.06053 Algebraic Geometry +1608.06702 Earth and Planetary Astrophysics +1608.08938 +1609.01540 +1609.02896 Chaotic Dynamics +1609.02930 Mesoscale and Nanoscale Physics +1609.02997 Machine Learning +1609.03056 Computer Vision and Pattern Recognition +1609.03188 Number Theory +1609.04649 Quantitative Methods +1609.04680 Soft Condensed Matter +1609.04687 Statistical Mechanics +1609.04697 Strongly Correlated Electrons +1609.04700 Mesoscale and Nanoscale Physics +1609.04704 Soft Condensed Matter +1609.04706 Soft Condensed Matter +1609.04710 Materials Science +1609.04713 Strongly Correlated Electrons +1609.04836 Learning +1609.04980 Soft Condensed Matter +1609.05423 Computational Physics +1609.06974 Soft Condensed Matter +1609.07223 Strongly Correlated Electrons +1609.07394 Strongly Correlated Electrons +1609.08301 Superconductivity +1609.09365 Computer Vision and Pattern Recognition +1609.09584 +1609.09759 Strongly Correlated Electrons +1610.00020 +1610.01022 Quantum Gases +1610.01100 Mesoscale and Nanoscale Physics +1610.01251 Quantum Gases +1610.01666 Analysis of PDEs +1610.03161 Statistical Mechanics +1610.03727 Networking and Internet Architecture +1610.04551 Sound +1610.05831 Numerical Analysis +1610.06107 Statistics Theory +1610.06685 Numerical Analysis +1610.08164 Materials Science +1610.08672 Physics and Society +1610.08717 Networking and Internet Architecture +1610.08738 Learning +1610.09630 Information Theory +1611.00128 Robotics +1611.00285 Neurons and Cognition +1611.01226 +1611.01852 Phenomenology +1611.01890 Social and Information Networks +1611.02043 Mesoscale and Nanoscale Physics +1611.02223 Functional Analysis +1611.02513 Mesoscale and Nanoscale Physics +1611.03088 Quantum Gases +1611.03135 Soft Condensed Matter +1611.03570 Dynamical Systems +1611.04360 +1611.04488 Machine Learning +1611.04675 Fluid Dynamics +1611.04918 Statistical Mechanics +1611.05098 Optics +1611.06359 +1611.06641 Computer Vision and Pattern Recognition +1611.07884 +1611.09085 Functional Analysis +1611.09966 High Energy Astrophysical Phenomena +1611.09971 Functional Analysis +1612.01512 Soft Condensed Matter +1612.01549 Astrophysics of Galaxies +1612.02332 Quantum Gases +1612.02436 Theory +1612.02565 Soft Condensed Matter +1612.02710 Methodology +1612.02743 Phenomenology +1612.03467 Instrumentation and Methods for Astrophysics +1612.04077 Cosmology and Nongalactic Astrophysics +1612.04400 Analysis of PDEs +1612.04687 Artificial Intelligence +1612.05384 Materials Science +1612.06510 Theory +1612.07159 Statistical Mechanics +1612.07166 Statistical Mechanics +1612.07176 Materials Science +1612.07181 Materials Science +1612.07188 Strongly Correlated Electrons +1612.07198 Superconductivity +1612.07200 Strongly Correlated Electrons +1612.07212 Strongly Correlated Electrons +1612.07219 Statistical Mechanics +1612.08478 Systems and Control +1612.08515 Systems and Control +1701.00150 Representation Theory +1701.00151 Representation Theory +1701.00181 Probability +1701.00268 Representation Theory +1701.00858 Statistics Theory +1701.01015 Algebraic Geometry +1701.01021 General Physics +1701.01182 Combinatorics +1701.01735 Solar and Stellar Astrophysics +1701.02201 Computation +1701.02655 Representation Theory +1701.02724 +1701.02952 Software Engineering +1701.03351 Complex Variables +1701.03616 Emerging Technologies +1701.04245 Learning +1701.06147 Phenomenology +1701.06281 Quantum Gases +1701.06665 Probability +1701.07691 Functional Analysis +1701.07740 Materials Science +1701.08019 Phenomenology +1701.08162 High Energy Astrophysical Phenomena +1701.08196 Numerical Analysis +1701.08507 Algebraic Geometry +1701.08539 Optics +1701.08550 Earth and Planetary Astrophysics +1701.08566 Discrete Mathematics +1701.08873 +1702.00056 Superconductivity +1702.00894 +1702.01002 Complex Variables +1702.01095 Optics +1702.01238 Computer Vision and Pattern Recognition +1702.01312 Probability +1702.01490 Theory +1702.01868 Fluid Dynamics +1702.01975 Machine Learning +1702.02041 Mesoscale and Nanoscale Physics +1702.02095 Group Theory +1702.02245 Instrumentation and Detectors +1702.02255 Number Theory +1702.02291 Instrumentation and Detectors +1702.02480 Optics +1702.02555 Machine Learning +1702.02574 Solar and Stellar Astrophysics +1702.02612 Superconductivity +1702.02617 Phenomenology +1702.02662 Combinatorics +1702.02730 Physics and Society +1702.02786 Optics +1702.02801 Differential Geometry +1702.02807 Neurons and Cognition +1702.02817 Information Retrieval +1702.02860 Probability +1702.02907 Cryptography and Security +1702.02916 Mesoscale and Nanoscale Physics +1702.02944 Phenomenology +1702.02945 Astrophysics of Galaxies +1702.02946 Solar and Stellar Astrophysics +1702.02947 Phenomenology +1702.02949 Phenomenology +1702.02951 Instrumentation and Methods for Astrophysics +1702.02952 Statistical Mechanics +1702.02954 Theory +1702.02955 Dynamical Systems +1702.02956 Disordered Systems and Neural Networks +1702.02957 +1702.02958 Analysis of PDEs +1702.02959 Materials Science +1702.02960 Astrophysics of Galaxies +1702.02962 Probability +1702.02963 Fluid Dynamics +1702.02964 Phenomenology +1702.02965 Probability +1702.02966 Applications +1702.02967 Optimization and Control +1702.02968 Performance +1702.02969 Optimization and Control +1702.02970 Data Structures and Algorithms +1702.02971 Astrophysics of Galaxies +1702.02972 Programming Languages +1702.02973 Numerical Analysis +1702.02974 Instrumentation and Detectors +1702.02976 Analysis of PDEs +1702.02977 Software Engineering +1702.02978 Distributed, Parallel, and Cluster Computing +1702.02979 +1702.02981 Numerical Analysis +1702.02982 Machine Learning +1702.02983 +1702.02984 Algebraic Topology +1702.02985 Commutative Algebra +1702.02986 Commutative Algebra +1702.02987 Mesoscale and Nanoscale Physics +1702.02988 Classical Analysis and ODEs +1702.02989 +1702.02990 High Energy Astrophysical Phenomena +1702.02991 Solar and Stellar Astrophysics +1702.02992 High Energy Astrophysical Phenomena +1702.02993 Fluid Dynamics +1702.02994 Earth and Planetary Astrophysics +1702.02995 +1702.02996 Phenomenology +1702.02998 Combinatorics +1702.02999 Software Engineering +1702.03000 Computer Vision and Pattern Recognition +1702.03001 Popular Physics +1702.03003 Materials Science +1702.03004 Cosmology and Nongalactic Astrophysics +1702.03006 Learning +1702.03007 Materials Science +1702.03008 Distributed, Parallel, and Cluster Computing +1702.03009 Materials Science +1702.03010 Biological Physics +1702.03011 Theory +1702.03012 Information Theory +1702.03013 +1702.03014 Solar and Stellar Astrophysics +1702.03015 Plasma Physics +1702.03016 Plasma Physics +1702.03018 Combinatorics +1702.03019 Materials Science +1702.03021 Information Theory +1702.03022 Materials Science +1702.03023 Computer Vision and Pattern Recognition +1702.03024 Analysis of PDEs +1702.03025 Experiment +1702.03026 Mesoscale and Nanoscale Physics +1702.03027 Numerical Analysis +1702.03028 Number Theory +1702.03029 +1702.03031 Astrophysics of Galaxies +1702.03032 Dynamical Systems +1702.03033 Computation and Language +1702.03034 Mesoscale and Nanoscale Physics +1702.03035 Mesoscale and Nanoscale Physics +1702.03036 Atomic and Molecular Clusters +1702.03037 Multiagent Systems +1702.03040 Learning +1702.03041 Computer Vision and Pattern Recognition +1702.03043 Metric Geometry +1702.03044 Computer Vision and Pattern Recognition +1702.03045 Materials Science +1702.03046 Systems and Control +1702.03047 Phenomenology +1702.03048 Materials Science +1702.03049 Information Theory +1702.03050 Cosmology and Nongalactic Astrophysics +1702.03051 Information Theory +1702.03052 Plasma Physics +1702.03053 Materials Science +1702.03054 Strongly Correlated Electrons +1702.03056 Strongly Correlated Electrons +1702.03058 Commutative Algebra +1702.03059 Information Theory +1702.03060 Combinatorics +1702.03061 +1702.03063 Phenomenology +1702.03066 Cosmology and Nongalactic Astrophysics +1702.03067 Cryptography and Security +1702.03069 High Energy Astrophysical Phenomena +1702.03070 Information Theory +1702.03072 Instrumentation and Detectors +1702.03073 Quantum Gases +1702.03074 Classical Analysis and ODEs +1702.03075 Combinatorics +1702.03076 Theory +1702.03077 +1702.03079 Numerical Analysis +1702.03080 Methodology +1702.03081 Physics and Society +1702.03082 Computation and Language +1702.03083 Systems and Control +1702.03084 Dynamical Systems +1702.03086 Earth and Planetary Astrophysics +1702.03088 +1702.03089 Probability +1702.03090 Probability +1702.03091 Accelerator Physics +1702.03092 Disordered Systems and Neural Networks +1702.03093 Group Theory +1702.03094 Analysis of PDEs +1702.03095 Spectral Theory +1702.03097 Systems and Control +1702.03098 Risk Management +1702.03099 +1702.03101 Discrete Mathematics +1702.03102 Combinatorics +1702.03103 Optics +1702.03104 Materials Science +1702.03105 Computer Vision and Pattern Recognition +1702.03107 Mesoscale and Nanoscale Physics +1702.03108 Astrophysics of Galaxies +1702.03109 Human-Computer Interaction +1702.03110 Mesoscale and Nanoscale Physics +1702.03111 +1702.03113 Algebraic Geometry +1702.03115 Computer Vision and Pattern Recognition +1702.03116 Theory +1702.03117 +1702.03119 Mesoscale and Nanoscale Physics +1702.03120 Quantum Gases +1702.03121 Computation and Language +1702.03123 +1702.03124 +1702.03125 Algebraic Geometry +1702.03126 Computation +1702.03128 Information Theory +1702.03129 Methodology +1702.03130 Probability +1702.03131 Information Theory +1702.03133 Chemical Physics +1702.03134 Dynamical Systems +1702.03135 +1702.03136 Earth and Planetary Astrophysics +1702.03137 +1702.03138 Optics +1702.03139 History and Philosophy of Physics +1702.03140 Functional Analysis +1702.03142 Optics +1702.03143 Probability +1702.03144 Statistical Mechanics +1702.03145 Mesoscale and Nanoscale Physics +1702.03146 Computation +1702.03147 Mesoscale and Nanoscale Physics +1702.03148 Analysis of PDEs +1702.03149 Solar and Stellar Astrophysics +1702.03150 Group Theory +1702.03152 Computational Complexity +1702.03153 Materials Science +1702.03155 Analysis of PDEs +1702.03156 High Energy Astrophysical Phenomena +1702.03157 Functional Analysis +1702.03158 Solar and Stellar Astrophysics +1702.03159 Atomic Physics +1702.03160 Phenomenology +1702.03161 Fluid Dynamics +1702.03162 Fluid Dynamics +1702.03164 Probability +1702.03165 Disordered Systems and Neural Networks +1702.03168 Cryptography and Security +1702.03169 Materials Science +1702.03170 Solar and Stellar Astrophysics +1702.03172 High Energy Astrophysical Phenomena +1702.03173 Probability +1702.03174 Numerical Analysis +1702.03176 Computer Vision and Pattern Recognition +1702.03177 Plasma Physics +1702.03178 Algebraic Geometry +1702.03179 Group Theory +1702.03181 Superconductivity +1702.03184 Solar and Stellar Astrophysics +1702.03185 Cosmology and Nongalactic Astrophysics +1702.03186 Discrete Mathematics +1702.03187 Combinatorics +1702.03188 Probability +1702.03189 Probability +1702.03190 Chaotic Dynamics +1702.03191 Analysis of PDEs +1702.03193 Phenomenology +1702.03194 Combinatorics +1702.03195 Probability +1702.03197 Computation and Language +1702.03198 General Physics +1702.03199 Strongly Correlated Electrons +1702.03201 Functional Analysis +1702.03202 +1702.03203 Plasma Physics +1702.03204 Networking and Internet Architecture +1702.03205 General Mathematics +1702.03207 History and Overview +1702.03208 Instrumentation and Methods for Astrophysics +1702.03209 +1702.03215 Algebraic Geometry +1702.03216 Emerging Technologies +1702.03217 Theory +1702.03218 Strongly Correlated Electrons +1702.03220 General Physics +1702.03221 Cosmology and Nongalactic Astrophysics +1702.03223 Quantum Algebra +1702.03225 Soft Condensed Matter +1702.03228 High Energy Astrophysical Phenomena +1702.03229 Numerical Analysis +1702.03230 Spectral Theory +1702.03231 Information Theory +1702.03232 Computational Finance +1702.03233 Materials Science +1702.03235 Physics and Society +1702.03236 Combinatorics +1702.03237 Metric Geometry +1702.03238 Mesoscale and Nanoscale Physics +1702.03240 +1702.03241 Information Theory +1702.03243 Mesoscale and Nanoscale Physics +1702.03244 Machine Learning +1702.03245 Algebraic Topology +1702.03246 Graphics +1702.03247 Analysis of PDEs +1702.03248 Systems and Control +1702.03249 Dynamical Systems +1702.03250 Information Theory +1702.03251 Mesoscale and Nanoscale Physics +1702.03252 Applications +1702.03253 Distributed, Parallel, and Cluster Computing +1702.03254 Analysis of PDEs +1702.03255 Symplectic Geometry +1702.03256 Classical Analysis and ODEs +1702.03257 Networking and Internet Architecture +1702.03258 Robotics +1702.03259 Data Structures and Algorithms +1702.03260 Learning +1702.03261 +1702.03264 Solar and Stellar Astrophysics +1702.03266 Computational Geometry +1702.03267 Computer Vision and Pattern Recognition +1702.03268 Strongly Correlated Electrons +1702.03270 Commutative Algebra +1702.03271 Quantitative Methods +1702.03272 Cosmology and Nongalactic Astrophysics +1702.03273 Materials Science +1702.03274 Artificial Intelligence +1702.03276 Instrumentation and Methods for Astrophysics +1702.03278 Mesoscale and Nanoscale Physics +1702.03279 Mesoscale and Nanoscale Physics +1702.03280 +1702.03281 Phenomenology +1702.03283 Theory +1702.03285 +1702.03286 Physics and Society +1702.03287 Phenomenology +1702.03288 Logic in Computer Science +quant-ph/0301162 +1701.05431 Distributed, Parallel, and Cluster Computing +0810.2042 Combinatorics +0912.1175 Biomolecules +0912.5129 Plasma Physics +1003.0088 Physics and Society +1101.4497 Combinatorics +1105.1497 Analysis of PDEs +1110.5980 Biomolecules +1112.4688 Exactly Solvable and Integrable Systems +1201.2449 Soft Condensed Matter +1201.4700 Combinatorics +1202.4962 Methodology +1209.5793 Algebraic Geometry +1211.1411 +1303.4255 Optics +1304.6666 Discrete Mathematics +1305.6122 Commutative Algebra +1306.3850 Biomolecules +1307.0672 Combinatorics +1307.0970 Optimization and Control +1307.1446 Methodology +1310.2897 Combinatorics +1311.1562 Optimization and Control +1311.3826 Formal Languages and Automata Theory +1312.0915 Methodology +1312.5116 Probability +1402.6683 Biological Physics +1405.0913 Computation +1405.7087 Algebraic Topology +1406.2922 Instrumentation and Methods for Astrophysics +1407.0335 Statistics Theory +1407.6849 Category Theory +1407.7355 Theory +1408.0629 Combinatorics +1408.1559 Probability +1409.0588 Geometric Topology +1409.1764 Geometric Topology +1409.3427 Geometric Topology +1409.5627 Computational Complexity +1410.1403 Representation Theory +1410.8325 Commutative Algebra +1411.2210 Phenomenology +1411.6642 Differential Geometry +1411.6649 Differential Geometry +1411.6655 Differential Geometry +1411.6658 Differential Geometry +1411.7408 Algebraic Topology +1412.5015 Atomic Physics +1412.5498 Digital Libraries +1412.8323 +1501.07591 Optimization and Control +1502.00042 Soft Condensed Matter +1502.00674 Economics +1502.01610 Mesoscale and Nanoscale Physics +1502.02281 Optimization and Control +1502.04350 +1502.06157 Chemical Physics +1503.02758 Mesoscale and Nanoscale Physics +1503.02831 Information Theory +1503.03513 Phenomenology +1503.05270 +1503.05529 Rings and Algebras +1503.06100 Cosmology and Nongalactic Astrophysics +1503.08282 Mesoscale and Nanoscale Physics +1504.00260 Combinatorics +1504.01207 Systems and Control +1504.02885 Quantum Algebra +1504.05255 Cryptography and Security +1504.05429 Other Computer Science +1504.06533 +1505.01886 Methodology +1505.05392 Numerical Analysis +1505.06938 Differential Geometry +1505.08125 Populations and Evolution +1506.02691 Computation +1506.03233 Group Theory +1506.03319 Information Theory +1506.03324 Information Theory +1506.05281 Algebraic Geometry +1506.06050 +1506.06664 Physics and Society +1506.08243 Optimization and Control +1507.00100 High Energy Astrophysical Phenomena +1507.00169 Physics and Society +1507.00903 +1507.01105 +1507.04576 Computer Vision and Pattern Recognition +1507.04711 Solar and Stellar Astrophysics +1507.07271 Methodology +1507.08695 Group Theory +1508.00522 Information Theory +1508.01641 Methodology +1508.02390 Strongly Correlated Electrons +1508.02932 General Mathematics +1508.04959 Optics +1508.05858 Probability +1508.07307 Theory +1509.00594 Information Retrieval +1509.01047 Information Theory +1509.01683 Logic in Computer Science +1509.02378 Geometric Topology +1509.02825 Classical Physics +1509.02886 Group Theory +1509.02888 Group Theory +1509.06073 Numerical Analysis +1509.08186 Exactly Solvable and Integrable Systems +1509.08956 Quantum Algebra +1510.00197 Group Theory +1510.01149 Dynamical Systems +1510.02348 Information Retrieval +1510.05575 Classical Analysis and ODEs +1511.01774 Theory +1511.02394 Metric Geometry +1511.02518 Number Theory +1511.02969 History and Overview +1511.04112 Methodology +1511.05190 Phenomenology +1511.05546 Computational Complexity +1511.05898 Representation Theory +1511.07025 +1511.07553 Differential Geometry +1512.00809 Methodology +1512.00982 Methodology +1512.01150 Discrete Mathematics +1512.04780 Complex Variables +1512.05015 Optimization and Control +1512.06848 Algebraic Geometry +1512.07566 Analysis of PDEs +1512.08990 Programming Languages +1512.09267 Chemical Physics +1601.00748 Rings and Algebras +1601.02136 Spectral Theory +1601.02516 Analysis of PDEs +1601.04002 +1601.05694 Group Theory +1601.05895 Mesoscale and Nanoscale Physics +1601.06077 +1601.07231 Combinatorics +1601.07322 Information Theory +1602.00498 Quantum Algebra +1602.00660 Complex Variables +1602.00935 Group Theory +1602.01142 Logic +1602.01525 Materials Science +1602.01870 Information Theory +1602.01943 Geometric Topology +1602.03823 Metric Geometry +1602.04666 Physics Education +1602.04808 Optics +1602.05508 General Physics +1602.05750 Classical Analysis and ODEs +1602.06885 Applications +1602.06918 Complex Variables +1602.07871 Probability +1602.08489 General Physics +1602.08798 Algebraic Topology +1602.09024 Experiment +1603.00984 Trading and Market Microstructure +1603.01019 Atomic Physics +1603.01070 Instrumentation and Methods for Astrophysics +1603.01234 Probability +1603.02117 Probability +1603.02917 +1603.04057 Cosmology and Nongalactic Astrophysics +1603.04371 +1603.06464 Operator Algebras +1603.07174 Adaptation and Self-Organizing Systems +1603.08914 Experiment +1603.09076 Dynamical Systems +1603.09433 Quantum Algebra +1604.00629 Fluid Dynamics +1604.01023 Phenomenology +1604.02563 Quantum Gases +1604.03224 Number Theory +1604.03447 Rings and Algebras +1604.03910 Algebraic Geometry +1604.05742 Probability +1604.06917 Mathematical Finance +1604.07779 Exactly Solvable and Integrable Systems +1604.08138 Strongly Correlated Electrons +1604.08743 Genomics +1605.00250 Geometric Topology +1605.00744 Representation Theory +1605.01033 Information Theory +1605.03232 Chemical Physics +1605.03841 Rings and Algebras +1605.03846 Algebraic Geometry +1605.04391 Methodology +1605.04890 Classical Analysis and ODEs +1605.05590 Distributed, Parallel, and Cluster Computing +1605.05935 Superconductivity +1605.06276 Learning +1605.06786 +1605.07202 +1605.08002 Networking and Internet Architecture +1605.08217 Superconductivity +1605.08372 K-Theory and Homology +1605.09242 Phenomenology +1606.01887 +1606.02826 +1606.02966 High Energy Astrophysical Phenomena +1606.03709 Probability +1606.03911 Physics and Society +1606.04376 Number Theory +1606.04411 Strongly Correlated Electrons +1606.04414 Machine Learning +1606.05526 General Physics +1606.05805 Probability +1606.05853 +1606.05922 Materials Science +1606.06465 Functional Analysis +1606.06552 Soft Condensed Matter +1606.06923 Number Theory +1606.07276 Adaptation and Self-Organizing Systems +1606.07330 Theory +1606.07861 Data Structures and Algorithms +1606.08201 Superconductivity +1606.08382 +1606.08580 Mesoscale and Nanoscale Physics +1606.09369 Superconductivity +1606.09626 +1607.00017 Cosmology and Nongalactic Astrophysics +1607.00175 +1607.01382 Algebraic Geometry +1607.01935 Information Theory +1607.01968 Numerical Analysis +1607.03054 +1607.03229 +1607.03463 Numerical Analysis +1607.03594 Learning +1607.04410 Optics +1607.05222 Statistics Theory +1607.05701 Theory +1607.05836 Computer Vision and Pattern Recognition +1607.05851 Computer Vision and Pattern Recognition +1607.06017 Optimization and Control +1607.06145 Instrumentation and Detectors +1607.08316 Artificial Intelligence +1608.00062 +1608.00087 Phenomenology +1608.00717 +1608.01240 Strongly Correlated Electrons +1608.01273 Statistical Mechanics +1608.01759 Optics +1608.01795 Probability +1608.02000 Astrophysics of Galaxies +1608.02578 Numerical Analysis +1608.02662 Phenomenology +1608.02749 Mesoscale and Nanoscale Physics +1608.02929 Strongly Correlated Electrons +1608.03543 Rings and Algebras +1608.03734 Representation Theory +1608.03920 Materials Science +1608.03935 Number Theory +1608.05059 Strongly Correlated Electrons +1608.05489 Functional Analysis +1608.05632 Analysis of PDEs +1608.05734 Functional Analysis +1608.05977 Strongly Correlated Electrons +1608.06519 General Physics +1608.06952 High Energy Astrophysical Phenomena +1608.07018 Theory +1608.07559 Phenomenology +1608.08510 Algebraic Geometry +1608.08552 High Energy Astrophysical Phenomena +1609.00085 Learning +1609.01920 +1609.02832 Materials Science +1609.04028 +1609.04558 Methodology +1609.04789 Learning +1609.04989 Mesoscale and Nanoscale Physics +1609.05430 Applications +1609.05674 Astrophysics of Galaxies +1609.06022 Combinatorics +1609.06793 Algebraic Geometry +1609.06811 Geometric Topology +1609.07030 Theory +1609.07045 Experiment +1609.07235 Complex Variables +1609.07490 Phenomenology +1609.07777 Functional Analysis +1609.07951 Probability +1609.08729 Multimedia +1609.08994 Phenomenology +1609.09245 Algebraic Geometry +1609.09438 Differential Geometry +1609.09514 Theory +1609.09639 Materials Science +1609.09688 Representation Theory +1609.09798 +1610.00683 Instrumentation and Methods for Astrophysics +1610.01771 +1610.01915 Instrumentation and Detectors +1610.02018 Chemical Physics +1610.02117 +1610.02134 Theory +1610.02703 Data Analysis, Statistics and Probability +1610.02819 Probability +1610.02858 Materials Science +1610.02960 Experiment +1610.03033 Theory +1610.03214 Symplectic Geometry +1610.03340 Number Theory +1610.03400 +1610.03895 +1610.03926 Differential Geometry +1610.04085 Functional Analysis +1610.04246 Statistical Mechanics +1610.05413 +1610.05757 +1610.06205 Phenomenology +1610.06773 Machine Learning +1610.06838 Chemical Physics +1610.07388 Artificial Intelligence +1610.07487 Statistics Theory +1610.07607 Theory +1610.07806 Differential Geometry +1610.07926 Differential Geometry +1610.08019 Theory +1610.08105 Representation Theory +1610.08157 Superconductivity +1610.08312 Software Engineering +1610.08680 Combinatorics +1610.08849 Combinatorics +1610.10076 Geometric Topology +1611.00352 +1611.00388 Neurons and Cognition +1611.00392 Cosmology and Nongalactic Astrophysics +1611.00667 +1611.01199 Information Theory +1611.01248 Number Theory +1611.02066 Phenomenology +1611.02372 Strongly Correlated Electrons +1611.03797 Theory +1611.04505 Statistics Theory +1611.04797 +1611.04811 Phenomenology +1611.05224 Methodology +1611.05280 Economics +1611.05337 +1611.05763 Learning +1611.05882 Astrophysics of Galaxies +1611.05889 +1611.05905 +1611.06327 +1611.06538 Information Theory +1611.06590 Phenomenology +1611.06644 High Energy Astrophysical Phenomena +1611.07267 General Topology +1611.07518 +1611.07886 Category Theory +1611.08532 Dynamical Systems +1611.08749 Sound +1611.09109 Geometric Topology +1611.09374 Theory +1611.09520 Neurons and Cognition +1611.09734 Rings and Algebras +1611.10246 Astrophysics of Galaxies +1611.10293 Analysis of PDEs +1612.01028 Strongly Correlated Electrons +1612.01568 Analysis of PDEs +1612.02295 Machine Learning +1612.02355 Cosmology and Nongalactic Astrophysics +1612.02476 Commutative Algebra +1612.02689 +1612.02895 Probability +1612.03616 Optics +1612.05074 Strongly Correlated Electrons +1612.05288 Differential Geometry +1612.05596 Neural and Evolutionary Computing +1612.05630 Geometric Topology +1612.05854 +1612.06027 Computation and Language +1612.06149 Statistics Theory +1612.06154 Software Engineering +1612.06537 Information Theory +1612.07021 +1612.07067 Portfolio Management +1612.07317 Instrumentation and Detectors +1612.07712 Neurons and Cognition +1612.08155 Strongly Correlated Electrons +1612.08614 +1612.08623 Algebraic Topology +1612.08901 +1612.09012 Differential Geometry +1612.09034 Optimization and Control +1612.09132 Phenomenology +1612.09382 Algebraic Geometry +1701.00063 Theory +1701.00101 Functional Analysis +1701.00239 Probability +1701.00366 Instrumentation and Methods for Astrophysics +1701.00463 Fluid Dynamics +1701.00473 Theory +1701.00784 Strongly Correlated Electrons +1701.00830 Algebraic Geometry +1701.00914 Mesoscale and Nanoscale Physics +1701.01040 Theory +1701.01083 Probability +1701.01085 Probability +1701.01332 General Physics +1701.01585 Algebraic Geometry +1701.02004 Differential Geometry +1701.02108 Group Theory +1701.02365 Fluid Dynamics +1701.02396 Computer Science and Game Theory +1701.02528 Networking and Internet Architecture +1701.02736 Astrophysics of Galaxies +1701.02882 Information Theory +1701.03036 General Physics +1701.03073 Functional Analysis +1701.03136 Data Structures and Algorithms +1701.03401 Representation Theory +1701.03541 +1701.03848 Instrumentation and Detectors +1701.03911 Statistical Mechanics +1701.04014 Pattern Formation and Solitons +1701.04080 Analysis of PDEs +1701.04086 Logic in Computer Science +1701.04131 Phenomenology +1701.04174 Cryptography and Security +1701.04212 Optics +1701.04301 Information Theory +1701.04308 Geometric Topology +1701.04310 Rings and Algebras +1701.04356 Theory +1701.04392 +1701.04419 Optimization and Control +1701.04488 Algebraic Geometry +1701.04542 Strongly Correlated Electrons +1701.04646 Phenomenology +1701.04682 Statistics Theory +1701.04691 Logic in Computer Science +1701.04865 High Energy Astrophysical Phenomena +1701.04901 Information Theory +1701.04903 Exactly Solvable and Integrable Systems +1701.04958 Information Theory +1701.05001 Formal Languages and Automata Theory +1701.05127 Materials Science +1701.05206 Strongly Correlated Electrons +1701.05229 Theory +1701.05254 Experiment +1701.05261 Experiment +1701.05300 Instrumentation and Methods for Astrophysics +1701.05352 Social and Information Networks +1701.05358 Computation +1701.05363 Machine Learning +1701.05386 Instrumentation and Methods for Astrophysics +1701.05424 +1701.05427 Mesoscale and Nanoscale Physics +1701.05447 Methodology +1701.05450 Methodology +1701.05463 Programming Languages +1701.05473 Biological Physics +1701.05499 Analysis of PDEs +1701.05507 Plasma Physics +1701.05510 Category Theory +1701.05517 Learning +1701.05550 +1701.05551 Functional Analysis +1701.05652 Computer Vision and Pattern Recognition +1701.05716 Exactly Solvable and Integrable Systems +1701.05780 Information Theory +1701.05844 Combinatorics +1701.05883 +1701.05896 Theory +1701.05897 +1701.05899 Strongly Correlated Electrons +1701.05900 Phenomenology +1701.05901 Astrophysics of Galaxies +1701.05902 Solar and Stellar Astrophysics +1701.05904 Astrophysics of Galaxies +1701.05905 Phenomenology +1701.05906 +1701.05908 Materials Science +1701.05910 Solar and Stellar Astrophysics +1701.05911 Statistics Theory +1701.05913 Mathematical Software +1701.05915 Number Theory +1701.05916 Lattice +1701.05917 Instrumentation and Methods for Astrophysics +1701.05918 Materials Science +1701.05919 Differential Geometry +1701.05920 Probability +1701.05921 Human-Computer Interaction +1701.05922 +1701.05923 Neural and Evolutionary Computing +1701.05924 Human-Computer Interaction +1701.05926 Theory +1701.05927 Machine Learning +1701.05928 Materials Science +1701.05929 Robotics +1701.05931 Information Theory +1701.05934 Combinatorics +1701.05935 Neural and Evolutionary Computing +1701.05936 Computation +1701.05937 Category Theory +1701.05938 Mesoscale and Nanoscale Physics +1701.05940 Software Engineering +1701.05941 Numerical Analysis +1701.05943 Optimization and Control +1701.05944 Information Theory +1701.05945 Distributed, Parallel, and Cluster Computing +1701.05946 Computer Science and Game Theory +1701.05947 Group Theory +1701.05948 Computer Science and Game Theory +1701.05949 Phenomenology +1701.05951 Atomic Physics +1701.05952 Information Theory +1701.05954 Optimization and Control +1701.05956 Algebraic Geometry +1701.05961 Combinatorics +1701.05964 Methodology +1701.05965 Information Theory +1701.05966 Symplectic Geometry +1701.05967 Risk Management +1701.05968 Exactly Solvable and Integrable Systems +1701.05969 Exactly Solvable and Integrable Systems +1701.05970 Populations and Evolution +1701.05971 Mesoscale and Nanoscale Physics +1701.05972 Materials Science +1701.05974 Numerical Analysis +1701.05975 Social and Information Networks +1701.05976 Applications +1701.05977 Probability +1701.05978 Probability +1701.05979 Numerical Analysis +1701.05980 Number Theory +1701.05981 Information Theory +1701.05982 Databases +1701.05984 +1701.05985 Group Theory +1701.05986 Distributed, Parallel, and Cluster Computing +1701.05987 Group Theory +1701.05988 Atmospheric and Oceanic Physics +1701.05990 Rings and Algebras +1701.05992 Rings and Algebras +1701.05993 Rings and Algebras +1701.05994 Statistics Theory +1701.05995 +1701.05996 Distributed, Parallel, and Cluster Computing +1701.05997 Commutative Algebra +1701.05999 Discrete Mathematics +1701.06000 Software Engineering +1701.06002 Superconductivity +1701.06003 Superconductivity +1701.06004 Performance +1701.06007 Phenomenology +1701.06008 Networking and Internet Architecture +1701.06010 Statistics Theory +1701.06011 Geometric Topology +1701.06012 Combinatorics +1701.06013 Geophysics +1701.06015 +1701.06016 +1701.06020 Emerging Technologies +1701.06022 Combinatorics +1701.06023 Chaotic Dynamics +1701.06026 Dynamical Systems +1701.06027 +1701.06029 Combinatorics +1701.06030 Numerical Analysis +1701.06031 Functional Analysis +1701.06032 Optics +1701.06033 Information Theory +1701.06034 Phenomenology +1701.06035 Superconductivity +1701.06036 +1701.06038 Economics +1701.06039 Superconductivity +1701.06040 Number Theory +1701.06041 Complex Variables +1701.06042 Probability +1701.06044 Optics +1701.06046 Superconductivity +1701.06047 Optics +1701.06049 Artificial Intelligence +1701.06050 Combinatorics +1701.06051 Networking and Internet Architecture +1701.06052 +1701.06053 +1701.06054 Methodology +1701.06055 Differential Geometry +1701.06056 Functional Analysis +1701.06057 Materials Science +1701.06058 High Energy Astrophysical Phenomena +1701.06059 High Energy Astrophysical Phenomena +1701.06061 Differential Geometry +1701.06063 Information Theory +1701.06065 Number Theory +1701.06067 High Energy Astrophysical Phenomena +1701.06068 Materials Science +1701.06069 +1701.06070 Algebraic Topology +1701.06071 Robotics +1701.06072 Commutative Algebra +1701.06073 Phenomenology +1701.06075 Learning +1701.06076 +1701.06077 Accelerator Physics +1701.06079 Biological Physics +1701.06080 +1701.06081 Mathematical Finance +1701.06082 Commutative Algebra +1701.06086 Cell Behavior +1701.06088 Statistics Theory +1701.06089 Quantum Algebra +1701.06090 Geometric Topology +1701.06091 Materials Science +1701.06092 Optimization and Control +1701.06093 Databases +1701.06094 Fluid Dynamics +1701.06095 Logic +1701.06096 Optimization and Control +1701.06097 Combinatorics +1701.06100 Computer Science and Game Theory +1701.06101 Physics and Society +1701.06103 Logic in Computer Science +1701.06104 Programming Languages +1701.06105 Methodology +1701.06107 Superconductivity +1701.06109 Computer Vision and Pattern Recognition +1701.06110 Information Theory +1701.06111 Information Theory +1701.06112 +1701.06113 Quantum Algebra +1701.06114 Quantum Algebra +1701.06115 Cosmology and Nongalactic Astrophysics +1701.06116 Optimization and Control +1701.06118 Numerical Analysis +1701.06119 Information Theory +1701.06120 Learning +1701.06121 Computer Vision and Pattern Recognition +1701.06122 Subcellular Processes +1701.06123 Computer Vision and Pattern Recognition +1701.06124 Rings and Algebras +1701.06125 Commutative Algebra +1701.06128 Solar and Stellar Astrophysics +1701.06129 Statistical Mechanics +1701.06130 +1701.06132 Astrophysics of Galaxies +1701.06134 Data Structures and Algorithms +1701.06135 Numerical Analysis +1701.06136 Differential Geometry +1701.06138 Solar and Stellar Astrophysics +1701.06139 Combinatorics +1701.06140 Statistics Theory +1701.06141 Computer Vision and Pattern Recognition +1701.06142 Logic in Computer Science +1701.06144 K-Theory and Homology +1701.06145 Classical Analysis and ODEs +1701.06146 Software Engineering +1701.06150 Atomic Physics +1701.06151 Mesoscale and Nanoscale Physics +1701.06152 Combinatorics +1701.06153 Physics and Society +1701.06155 Probability +1701.06157 Fluid Dynamics +1701.06158 Combinatorics +1701.06159 Accelerator Physics +1701.06160 High Energy Astrophysical Phenomena +1701.06161 +1701.06162 +1701.06163 Spectral Theory +1701.06164 Statistical Mechanics +1701.06165 Solar and Stellar Astrophysics +1701.06166 Exactly Solvable and Integrable Systems +1701.06167 Artificial Intelligence +1701.06168 Astrophysics of Galaxies +1701.06169 Functional Analysis +1701.06170 Disordered Systems and Neural Networks +1701.06171 Computer Vision and Pattern Recognition +1701.06176 Dynamical Systems +1701.06178 Networking and Internet Architecture +1701.06181 Information Theory +1701.06183 Computer Vision and Pattern Recognition +1701.06184 Subcellular Processes +1701.06186 +1701.06187 Information Theory +1701.06190 Computer Vision and Pattern Recognition +1701.06191 Probability +1701.06192 Number Theory +1701.06194 Commutative Algebra +1701.06196 Biological Physics +1701.06197 Geometric Topology +1701.06198 Mesoscale and Nanoscale Physics +1701.06199 Atomic Physics +1701.06200 Strongly Correlated Electrons +1701.06201 Information Theory +1701.06202 Complex Variables +1701.06203 Optimization and Control +1701.06206 +1701.06207 Human-Computer Interaction +1701.06208 Combinatorics +1701.06211 Classical Analysis and ODEs +1701.06212 Pattern Formation and Solitons +1701.06213 Mesoscale and Nanoscale Physics +1701.06214 Differential Geometry +1701.06215 Mesoscale and Nanoscale Physics +1701.06217 Combinatorics +1701.06218 Information Theory +1701.06219 Algebraic Topology +1701.06220 Computer Science and Game Theory +1701.06221 Analysis of PDEs +1701.06222 Representation Theory +1701.06223 +1701.06224 +1701.06225 Learning +1701.06226 Functional Analysis +1701.06227 Instrumentation and Methods for Astrophysics +1701.06228 Experiment +1701.06229 Representation Theory +1701.06230 Mesoscale and Nanoscale Physics +1701.06231 Probability +1701.06232 Social and Information Networks +1701.06233 Computers and Society +1701.06234 Optimization and Control +1701.06236 Social and Information Networks +1701.06237 Analysis of PDEs +1701.06238 Differential Geometry +1701.06239 Social and Information Networks +1701.06240 Algebraic Geometry +1701.06242 Astrophysics of Galaxies +1701.06243 Theory +1701.06244 Logic in Computer Science +1701.06245 Quantum Gases +1701.06246 Disordered Systems and Neural Networks +1701.06247 Computation and Language +1701.06248 Symbolic Computation +1701.06250 Social and Information Networks +1701.06251 Materials Science +1701.06252 Probability +1701.06254 Computational Engineering, Finance, and Science +1701.06256 Combinatorics +1701.06257 Number Theory +1701.06258 Discrete Mathematics +1701.06259 Complex Variables +1701.06261 Biological Physics +1701.06262 Quantum Algebra +1701.06263 Methodology +1701.06265 Chaotic Dynamics +1701.06266 Combinatorics +1701.06267 Quantitative Methods +1701.06268 Computational Complexity +1701.06269 Analysis of PDEs +1701.06273 Information Theory +1701.06276 Other Computer Science +1701.06277 Analysis of PDEs +1701.06279 Quantitative Methods +1701.06284 Mesoscale and Nanoscale Physics +1701.06288 +1701.06289 Information Theory +1701.06290 Information Theory +1701.06291 Phenomenology +1701.06292 Combinatorics +1701.06293 Mesoscale and Nanoscale Physics +1701.06294 Probability +1701.06295 Mesoscale and Nanoscale Physics +1701.06297 Chaotic Dynamics +1701.06298 High Energy Astrophysical Phenomena +1701.06299 Economics +1701.06300 Classical Analysis and ODEs +1701.06301 Combinatorics +1701.06302 Soft Condensed Matter +1701.06303 Information Theory +1701.06304 Information Theory +1701.06305 +1701.06306 Experiment +1701.06308 Probability +1701.06309 +1701.06313 Optics +1701.06314 Mesoscale and Nanoscale Physics +1701.06316 Superconductivity +1701.06317 Optimization and Control +1701.06318 +1701.06319 Mesoscale and Nanoscale Physics +1701.06320 Dynamical Systems +1701.06321 +1701.06322 Superconductivity +1701.06323 Numerical Analysis +1701.06325 Systems and Control +1701.06326 Materials Science +1701.06327 +1701.06328 Phenomenology +1701.06330 Mesoscale and Nanoscale Physics +1701.06331 Physics and Society +1701.06332 Optics +1701.06335 Phenomenology +1701.06336 Analysis of PDEs +1701.06337 Mesoscale and Nanoscale Physics +1701.06338 Information Theory +1701.06344 Soft Condensed Matter +1701.06345 Complex Variables +1701.06346 Metric Geometry +1701.06348 Quantum Algebra +1701.06350 +1701.06351 Computer Vision and Pattern Recognition +1701.06353 Numerical Analysis +1701.06354 Information Theory +1701.06355 +1701.06356 Computers and Society +1701.06358 Optics +1701.06359 Analysis of PDEs +1701.06360 Strongly Correlated Electrons +1701.06362 Fluid Dynamics +1701.06364 Combinatorics +1701.06365 Dynamical Systems +1701.06366 Spectral Theory +1701.06368 Information Theory +1701.06369 Strongly Correlated Electrons +1701.06371 Spectral Theory +1701.06372 Superconductivity +1701.06373 +1701.06374 High Energy Astrophysical Phenomena +1701.06375 Geophysics +1701.06376 Instrumentation and Methods for Astrophysics +1701.06378 Combinatorics +1701.06380 Number Theory +1701.06381 Information Theory +1701.06382 Hardware Architecture +1701.06383 Operator Algebras +1701.06385 Fluid Dynamics +1701.06386 Computational Complexity +1701.06388 Artificial Intelligence +1701.06389 Soft Condensed Matter +1701.06390 Differential Geometry +1701.06393 Computer Vision and Pattern Recognition +1701.06394 Analysis of PDEs +1701.06395 Mesoscale and Nanoscale Physics +1701.06396 +1701.06399 +1701.06400 Combinatorics +1701.06401 Phenomenology +1701.06404 Discrete Mathematics +1701.06405 Algebraic Topology +1701.06406 Theory +1701.06407 +1701.06408 Atomic Physics +1701.06409 Astrophysics of Galaxies +1701.06410 Economics +1701.06411 Materials Science +1701.06412 Human-Computer Interaction +1701.06414 Soft Condensed Matter +1701.06415 Performance +1701.06416 Information Theory +1701.06417 High Energy Astrophysical Phenomena +1701.06418 Dynamical Systems +1701.06420 Hardware Architecture +1701.06421 Machine Learning +1701.06422 Soft Condensed Matter +1701.06423 +1701.06424 Phenomenology +1701.06425 Computers and Society +1701.06426 Computers and Society +1701.06427 Computers and Society +1701.06428 Computers and Society +1701.06429 Computers and Society +1701.06430 Computational Geometry +1701.06431 Computers and Society +1701.06432 Computational Engineering, Finance, and Science +1701.06433 Computers and Society +1701.06434 Information Theory +1701.06435 Other Condensed Matter +1701.06436 Spectral Theory +1701.06437 Information Theory +1701.06438 Systems and Control +1701.06439 Computer Vision and Pattern Recognition +1701.06440 Solar and Stellar Astrophysics +1701.06441 Numerical Analysis +1701.06442 Numerical Analysis +1701.06443 +1701.06444 Rings and Algebras +1701.06445 Applications +1701.06446 Data Structures and Algorithms +1701.06448 Numerical Analysis +1701.06449 Physics and Society +1701.06450 Machine Learning +1701.06451 Combinatorics +1701.06452 Machine Learning +1701.06456 General Mathematics +1701.06458 Information Theory +1701.06459 Algebraic Topology +1701.06460 Materials Science +1701.06462 Computer Vision and Pattern Recognition +1701.06463 Systems and Control +1701.06465 High Energy Astrophysical Phenomena +1701.06466 Analysis of PDEs +1701.06467 Analysis of PDEs +1701.06468 Materials Science +1701.06469 Rings and Algebras +1701.06470 Optics +1701.06471 Differential Geometry +1701.06472 Strongly Correlated Electrons +1701.06473 Cosmology and Nongalactic Astrophysics +1701.06475 Commutative Algebra +1701.06476 Logic +1701.06478 Information Theory +1701.06479 Algebraic Geometry +1701.06481 Cryptography and Security +1701.06484 Instrumentation and Methods for Astrophysics +1701.06485 Strongly Correlated Electrons +1701.06486 Information Theory +1701.06487 Computer Vision and Pattern Recognition +1701.06488 Theory +1701.06489 Number Theory +1701.06490 Mesoscale and Nanoscale Physics +1701.06492 Astrophysics of Galaxies +1701.06493 Chemical Physics +1701.06495 Soft Condensed Matter +1701.06496 +1701.06497 +1701.06499 Chaotic Dynamics +1701.06500 History and Philosophy of Physics +1701.06502 Networking and Internet Architecture +1701.06503 Data Analysis, Statistics and Probability +1701.06504 Information Theory +1701.06505 Mesoscale and Nanoscale Physics +1701.06506 Information Theory +1701.06508 Machine Learning +1701.06509 Multimedia +1701.06510 Optics +1701.06511 Machine Learning +1701.06514 Differential Geometry +1701.06515 Differential Geometry +1701.06516 +1701.06517 Combinatorics +1701.06518 Algebraic Geometry +1701.06519 Optimization and Control +1701.06521 Computation and Language +1701.06522 Materials Science +1701.06523 Materials Science +1701.06524 +1701.06525 Atmospheric and Oceanic Physics +1701.06526 Classical Analysis and ODEs +1701.06527 Pattern Formation and Solitons +1701.06529 Materials Science +1701.06530 Superconductivity +1701.06531 Solar and Stellar Astrophysics +1701.06533 Analysis of PDEs +1701.06534 +1701.06535 Optimization and Control +1701.06536 Optimization and Control +1701.06537 Experiment +1701.06538 Learning +1701.06540 Optimization and Control +1701.06541 Mesoscale and Nanoscale Physics +1701.06542 Theory +1701.06543 Optimization and Control +1701.06546 Analysis of PDEs +1701.06548 Neural and Evolutionary Computing +1701.06550 Metric Geometry +1701.06551 Learning +1701.06552 Differential Geometry +1701.06554 Phenomenology +1701.06555 Information Theory +1701.06556 Mesoscale and Nanoscale Physics +1101.2786 Probability +1210.2347 Instrumentation and Detectors +1305.3801 Populations and Evolution +1306.1595 Combinatorics +1309.7367 Networking and Internet Architecture +1310.5200 Classical Physics +1312.6330 Cosmology and Nongalactic Astrophysics +1404.3062 Biological Physics +1405.2258 Quantitative Methods +1408.1151 Number Theory +1409.4709 +1410.0031 Representation Theory +1411.3121 Complex Variables +1412.1422 Materials Science +1412.2301 Materials Science +1412.4376 Analysis of PDEs +1501.03998 Statistical Mechanics +1502.01108 Commutative Algebra +1502.03153 Applications +1503.02411 +1503.03229 Commutative Algebra +1503.03603 Commutative Algebra +1503.08269 Mesoscale and Nanoscale Physics +1503.08659 Hardware Architecture +1504.02552 Quantum Algebra +1504.07960 Algebraic Geometry +1505.06697 Number Theory +1506.02189 Geometric Topology +1506.03224 Materials Science +1506.06940 Group Theory +1506.07262 Theory +1506.07853 Differential Geometry +1507.07106 Methodology +1508.02944 Quantum Gases +1508.04041 +1508.05956 Rings and Algebras +1508.06787 Number Theory +1509.00622 Formal Languages and Automata Theory +1509.03873 +1509.03907 Combinatorics +1509.06358 Methodology +1509.08024 Functional Analysis +1510.00108 Theory +1510.00682 Combinatorics +1510.03041 Combinatorics +1510.03246 Differential Geometry +1510.06774 Differential Geometry +1511.00409 Optics +1511.00707 Theory +1511.05324 Social and Information Networks +1511.06966 Combinatorics +1511.07877 +1511.08392 Biological Physics +1511.08609 Optimization and Control +1512.01216 +1512.01907 Information Theory +1512.02373 Dynamical Systems +1512.06494 Instrumentation and Detectors +1512.06616 +1512.07057 +1601.01714 Differential Geometry +1601.03382 Superconductivity +1601.06677 Mesoscale and Nanoscale Physics +1602.00348 Optimization and Control +1602.00416 +1602.00850 Numerical Analysis +1602.02334 Databases +1602.02981 Materials Science +1602.03874 Commutative Algebra +1602.04063 Number Theory +1602.04214 Chaotic Dynamics +1602.06648 Computer Science and Game Theory +1602.06723 Combinatorics +1602.07400 Combinatorics +1602.07592 Optimization and Control +1603.01584 Instrumentation and Detectors +1603.04592 Geometric Topology +1603.07165 Statistical Mechanics +1603.07364 Combinatorics +1603.08186 Category Theory +1603.08714 Artificial Intelligence +1604.04755 Strongly Correlated Electrons +1604.05360 Soft Condensed Matter +1604.05417 Computer Vision and Pattern Recognition +1604.08080 Logic in Computer Science +1604.08369 Mesoscale and Nanoscale Physics +1604.08506 +1605.00189 Statistics Theory +1605.00814 Applications +1605.01002 Analysis of PDEs +1605.01436 Information Theory +1605.03074 Number Theory +1605.03234 Information Theory +1605.03945 Optics +1605.04119 Complex Variables +1605.06922 Differential Geometry +1605.07911 Metric Geometry +1605.09165 Numerical Analysis +1606.00029 +1606.00034 Data Analysis, Statistics and Probability +1606.01223 Cosmology and Nongalactic Astrophysics +1606.01305 Neural and Evolutionary Computing +1606.01921 Number Theory +1606.04409 Plasma Physics +1606.04652 Numerical Analysis +1606.05471 +1606.06625 Numerical Analysis +1606.07581 Probability +1606.09016 Logic in Computer Science +1606.09103 Analysis of PDEs +1606.09507 Complex Variables +1606.09610 Human-Computer Interaction +1607.01015 Quantum Gases +1607.01303 Number Theory +1607.01751 Computational Finance +1607.02384 Complex Variables +1607.02526 Computer Science and Game Theory +1607.02619 +1607.02740 Phenomenology +1607.02827 Phenomenology +1607.03521 Optics +1607.04549 Distributed, Parallel, and Cluster Computing +1607.06074 Phenomenology +1607.06998 +1607.07291 General Topology +1607.07453 Cosmology and Nongalactic Astrophysics +1607.08485 Artificial Intelligence +1608.01283 Statistical Mechanics +1608.01891 Economics +1608.02233 Plasma Physics +1608.02773 Quantum Gases +1608.04218 Spectral Theory +1608.04228 +1608.06407 Commutative Algebra +1608.06856 Strongly Correlated Electrons +1608.06942 Cosmology and Nongalactic Astrophysics +1608.07303 Earth and Planetary Astrophysics +1608.07361 Mesoscale and Nanoscale Physics +1608.07684 +1608.08123 Superconductivity +1608.08429 +1609.00138 Representation Theory +1609.01119 Combinatorics +1609.01769 Strongly Correlated Electrons +1609.01919 Logic +1609.02729 +1609.02936 Atomic Physics +1609.03114 Strongly Correlated Electrons +1609.03144 +1609.03407 Mesoscale and Nanoscale Physics +1609.03702 Strongly Correlated Electrons +1609.03852 Adaptation and Self-Organizing Systems +1609.04218 Logic +1609.04279 Strongly Correlated Electrons +1609.04637 Other Quantitative Biology +1609.04878 +1609.04892 Symplectic Geometry +1609.06117 Phenomenology +1609.06247 Spectral Theory +1609.07077 Materials Science +1609.07332 Mesoscale and Nanoscale Physics +1609.07547 Astrophysics of Galaxies +1609.07841 Phenomenology +1609.08016 +1609.09330 General Physics +1609.09364 Group Theory +1610.00251 Computational Engineering, Finance, and Science +1610.00636 Combinatorics +1610.00828 Differential Geometry +1610.00837 Combinatorics +1610.01728 Distributed, Parallel, and Cluster Computing +1610.01928 +1610.01945 Learning +1610.02516 Multimedia +1610.02709 Statistical Mechanics +1610.02974 Mesoscale and Nanoscale Physics +1610.03280 Optics +1610.03308 Strongly Correlated Electrons +1610.03449 Theory +1610.03522 Probability +1610.03524 Distributed, Parallel, and Cluster Computing +1610.03553 Solar and Stellar Astrophysics +1610.04824 Analysis of PDEs +1610.05560 Geometric Topology +1610.05583 Economics +1610.07855 Statistical Mechanics +1610.08696 Machine Learning +1610.09335 Cosmology and Nongalactic Astrophysics +1610.09424 +1610.09840 Phenomenology +1610.09864 +1611.00636 Soft Condensed Matter +1611.00682 Complex Variables +1611.01834 Soft Condensed Matter +1611.02922 Geometric Topology +1611.03250 Phenomenology +1611.03262 Strongly Correlated Electrons +1611.03386 Plasma Physics +1611.03400 Superconductivity +1611.03800 Algebraic Geometry +1611.04239 Solar and Stellar Astrophysics +1611.04392 Numerical Analysis +1611.04417 Information Theory +1611.05782 Optics +1611.05856 Theory +1611.06140 Systems and Control +1611.06379 +1612.01625 Differential Geometry +1612.02461 Classical Analysis and ODEs +1612.02804 High Energy Astrophysical Phenomena +1612.02863 Accelerator Physics +1612.03169 Theory +1612.03473 Physics and Society +1612.04141 Optimization and Control +1612.04399 Soft Condensed Matter +1612.05614 Optimization and Control +1612.05670 Commutative Algebra +1612.06071 Instrumentation and Detectors +1612.06597 Materials Science +1612.07049 Instrumentation and Detectors +1612.07081 +1612.07265 Strongly Correlated Electrons +1612.07610 Materials Science +1612.08130 Functional Analysis +1612.08166 Theory +1612.08416 Optics +1612.08667 Algebraic Geometry +1612.08731 Graphics +1612.08872 Databases +1701.00395 +1701.00702 Materials Science +1701.00743 Plasma Physics +1701.00983 Earth and Planetary Astrophysics +1701.01009 Theory +1701.01249 Instrumentation and Methods for Astrophysics +1701.01296 +1701.01679 Algebraic Geometry +1701.01816 Statistical Mechanics +1701.01830 Optimization and Control +1701.02213 Phenomenology +1701.02491 Theory +1701.02558 Superconductivity +1701.02688 Phenomenology +1701.02797 Computer Vision and Pattern Recognition +1701.02942 Applications +1701.03001 Commutative Algebra +1701.03688 Algebraic Geometry +1701.04234 Theory +1701.04513 Differential Geometry +1701.04534 Atomic Physics +1701.04570 +1701.04596 Information Theory +1701.04667 Materials Science +1701.04672 Mesoscale and Nanoscale Physics +1701.04725 Metric Geometry +1701.04737 Materials Science +1701.04758 Solar and Stellar Astrophysics +1701.04817 Instrumentation and Methods for Astrophysics +1701.04818 Classical Physics +1701.04819 Space Physics +1701.04821 Solar and Stellar Astrophysics +1701.04824 Astrophysics of Galaxies +1701.04826 Astrophysics of Galaxies +1701.04827 Disordered Systems and Neural Networks +1701.04828 Phenomenology +1701.04831 Strongly Correlated Electrons +1701.04832 Materials Science +1701.04833 Astrophysics of Galaxies +1701.04834 Numerical Analysis +1701.04837 Functional Analysis +1701.04838 Quantum Gases +1701.04839 Algebraic Geometry +1701.04840 Soft Condensed Matter +1701.04842 Solar and Stellar Astrophysics +1701.04843 Optics +1701.04846 Methodology +1701.04848 Algebraic Geometry +1701.04849 Soft Condensed Matter +1701.04850 Dynamical Systems +1701.04852 Astrophysics of Galaxies +1701.04856 Theory +1701.04857 Experiment +1701.04858 Applications +1701.04860 Analysis of PDEs +1701.04864 Materials Science +1701.04867 Algebraic Geometry +1701.04868 Statistical Mechanics +1701.04870 Computer Science and Game Theory +1701.04871 Systems and Control +1701.04872 Differential Geometry +1701.04875 Complex Variables +1701.04877 Algebraic Topology +1701.04878 Classical Physics +1701.04881 Phenomenology +1701.04882 Pattern Formation and Solitons +1701.04883 Number Theory +1701.04884 Phenomenology +1701.04885 Functional Analysis +1701.04887 History and Overview +1701.04889 Methodology +1701.04890 Information Theory +1701.04891 +1701.04893 Neurons and Cognition +1701.04894 Quantum Gases +1701.04896 Strongly Correlated Electrons +1701.04902 +1701.04904 +1701.04905 Neurons and Cognition +1701.04909 Information Theory +1701.04912 Probability +1701.04913 Optics +1701.04914 Programming Languages +1701.04915 Logic in Computer Science +1701.04916 Logic in Computer Science +1701.04917 Logic in Computer Science +1701.04918 Logic in Computer Science +1701.04920 Logic in Computer Science +1701.04923 Computer Vision and Pattern Recognition +1701.04924 Geometric Topology +1701.04925 Robotics +1701.04927 Phenomenology +1701.04928 Computer Vision and Pattern Recognition +1701.04929 Programming Languages +1701.04930 Differential Geometry +1701.04931 Information Retrieval +1701.04932 Fluid Dynamics +1701.04934 Information Retrieval +1701.04936 Classical Analysis and ODEs +1701.04938 Optics +1701.04939 Systems and Control +1701.04940 Cryptography and Security +1701.04941 Systems and Control +1701.04942 Combinatorics +1701.04948 Atomic Physics +1701.04949 Neural and Evolutionary Computing +1701.04953 Phenomenology +1701.04954 Information Theory +1701.04955 Combinatorics +1701.04956 Combinatorics +1701.04957 +1701.04959 Pattern Formation and Solitons +1701.04960 Information Theory +1701.04961 Mesoscale and Nanoscale Physics +1701.04962 +1701.04963 Combinatorics +1701.04964 Differential Geometry +1701.04965 Differential Geometry +1701.04966 Complex Variables +1701.04968 Machine Learning +1701.04970 Statistics Theory +1701.04972 Solar and Stellar Astrophysics +1701.04973 Cosmology and Nongalactic Astrophysics +1701.04974 Physics and Society +1701.04976 Materials Science +1701.04977 Dynamical Systems +1701.04978 Number Theory +1701.04979 Strongly Correlated Electrons +1701.04980 Soft Condensed Matter +1701.04981 Differential Geometry +1701.04982 Information Theory +1701.04984 Information Theory +1701.04985 Phenomenology +1701.04986 +1701.04988 Differential Geometry +1701.04989 Fluid Dynamics +1701.04990 Commutative Algebra +1701.04991 +1701.04992 +1701.04993 Algebraic Geometry +1701.04994 High Energy Astrophysical Phenomena +1701.04995 Classical Analysis and ODEs +1701.04996 Differential Geometry +1701.04998 Differential Geometry +1701.05000 Metric Geometry +1701.05002 Quantum Gases +1701.05003 Computer Vision and Pattern Recognition +1701.05004 Neurons and Cognition +1701.05005 Analysis of PDEs +1701.05007 Cryptography and Security +1701.05009 Statistics Theory +1701.05010 Superconductivity +1701.05011 Computation and Language +1701.05012 +1701.05013 Computer Vision and Pattern Recognition +1701.05015 Lattice +1701.05016 Portfolio Management +1701.05017 Algebraic Geometry +1701.05020 Soft Condensed Matter +1701.05022 Soft Condensed Matter +1701.05024 +1701.05028 High Energy Astrophysical Phenomena +1701.05029 Classical Analysis and ODEs +1701.05030 Combinatorics +1701.05033 Instrumentation and Detectors +1701.05034 Programming Languages +1701.05036 Logic +1701.05037 Soft Condensed Matter +1701.05038 +1701.05039 Disordered Systems and Neural Networks +1701.05043 Plasma Physics +1701.05044 +1701.05045 Information Theory +1701.05046 High Energy Astrophysical Phenomena +1701.05048 Astrophysics of Galaxies +1701.05049 Mesoscale and Nanoscale Physics +1701.05050 +1701.05052 +1701.05053 Learning +1701.05054 Numerical Analysis +1701.05055 Information Theory +1701.05057 Mesoscale and Nanoscale Physics +1701.05058 Analysis of PDEs +1701.05059 Artificial Intelligence +1701.05060 Earth and Planetary Astrophysics +1701.05061 Probability +1701.05062 Materials Science +1701.05063 Logic in Computer Science +1701.05064 +1701.05065 Statistics Theory +1701.05067 Optimization and Control +1701.05069 Numerical Analysis +1701.05070 Fluid Dynamics +1701.05079 Statistical Mechanics +1701.05081 Materials Science +1701.05083 Computer Vision and Pattern Recognition +1701.05085 Probability +1701.05087 Differential Geometry +1701.05088 Computer Vision and Pattern Recognition +1701.05093 Classical Analysis and ODEs +1701.05094 Logic +1701.05095 +1701.05097 Accelerator Physics +1701.05098 General Mathematics +1701.05099 Databases +1701.05100 Probability +1701.05102 Algebraic Geometry +1701.05106 Probability +1701.05107 Spectral Theory +1701.05108 Multiagent Systems +1701.05109 Mesoscale and Nanoscale Physics +1701.05111 Physics Education +1701.05112 Functional Analysis +1701.05114 General Finance +1701.05115 Logic +1701.05118 General Physics +1701.05119 Materials Science +1701.05120 Theory +1701.05121 Neural and Evolutionary Computing +1701.05123 +1701.05126 Number Theory +1701.05128 Computation +1701.05129 Group Theory +1701.05130 Artificial Intelligence +1701.05134 Group Theory +1701.05135 Strongly Correlated Electrons +1701.05137 Mesoscale and Nanoscale Physics +1701.05139 Category Theory +1701.05140 Mesoscale and Nanoscale Physics +1701.05141 Computational Geometry +1701.05142 Strongly Correlated Electrons +1701.05143 Analysis of PDEs +1701.05144 Combinatorics +1701.05145 Soft Condensed Matter +1701.05146 Methodology +1701.05147 Differential Geometry +1701.05149 Information Retrieval +1701.05150 Differential Geometry +1701.05151 +1701.05153 Mesoscale and Nanoscale Physics +1701.05154 Soft Condensed Matter +1701.05155 Analysis of PDEs +1701.05156 Combinatorics +1701.05159 Neural and Evolutionary Computing +1701.05160 Formal Languages and Automata Theory +1701.05161 Classical Analysis and ODEs +1701.05162 Fluid Dynamics +1701.05163 Space Physics +1701.05164 Pattern Formation and Solitons +1701.05165 Analysis of PDEs +1701.05166 Information Theory +1701.05168 Theory +1701.05169 Theory +1701.05171 +1701.05172 Probability +1701.05174 Probability +1701.05175 Probability +1701.05176 Statistical Finance +1701.05177 Applications +1701.05178 Earth and Planetary Astrophysics +1701.05179 Methodology +1701.05180 +1701.05181 Superconductivity +0705.2447 Classical Analysis and ODEs +0710.0442 Classical Analysis and ODEs +1003.2895 Classical Analysis and ODEs +1009.3129 Dynamical Systems +1011.0683 Classical Analysis and ODEs +1104.0088 Dynamical Systems +1105.1589 Dynamical Systems +1201.5320 Metric Geometry +1202.0140 Dynamical Systems +1204.5886 Classical Analysis and ODEs +1205.3878 Combinatorics +1209.0629 Metric Geometry +1209.3648 Classical Analysis and ODEs +1212.5820 Dynamical Systems +1303.4665 Differential Geometry +1311.3275 +1312.2567 Dynamical Systems +1401.0231 Classical Analysis and ODEs +1401.7337 Probability +1404.6812 Information Theory +1405.0472 Symbolic Computation +1405.4525 Computation +1406.0528 +1408.0010 Theory +1410.3014 Number Theory +1411.6995 Lattice +1412.8338 Data Structures and Algorithms +1501.06082 Algebraic Topology +1502.00879 Algebraic Geometry +1503.05989 Instrumentation and Methods for Astrophysics +1503.07471 Phenomenology +1504.02704 Group Theory +1504.05354 Classical Analysis and ODEs +1504.07367 Differential Geometry +1506.03993 Methodology +1506.04319 Cryptography and Security +1506.07851 Classical Analysis and ODEs +1507.00026 Computational Complexity +1507.05343 Probability +1507.08586 Information Retrieval +1507.08897 +1508.02014 Functional Analysis +1508.02179 Digital Libraries +1508.03461 Probability +1508.06812 Analysis of PDEs +1509.03211 Classical Analysis and ODEs +1509.04519 Combinatorics +1509.07003 Analysis of PDEs +1509.07175 Computation and Language +1509.07571 Strongly Correlated Electrons +1509.08177 Analysis of PDEs +1510.01154 Probability +1510.03628 Complex Variables +1510.06955 Probability +1511.01287 Data Structures and Algorithms +1511.02360 Group Theory +1511.03950 Instrumentation and Detectors +1511.05700 +1511.06841 Learning +1511.09407 Mesoscale and Nanoscale Physics +1512.01608 Data Analysis, Statistics and Probability +1512.03027 +1512.04847 Algebraic Geometry +1512.06657 Computational Complexity +1512.09016 Statistics Theory +1601.01462 Methodology +1601.01998 Classical Analysis and ODEs +1602.03196 Dynamical Systems +1602.05033 Numerical Analysis +1602.07408 Optics +1602.08904 +1603.00704 Mesoscale and Nanoscale Physics +1603.01074 Numerical Analysis +1603.03706 Atmospheric and Oceanic Physics +1603.05888 Combinatorics +1603.07907 Analysis of PDEs +1603.09214 +1604.00241 Probability +1604.02173 Operator Algebras +1604.02424 Phenomenology +1604.04155 Physics and Society +1604.08350 +1604.08599 Astrophysics of Galaxies +1604.08812 Theory +1605.01009 Probability +1605.01267 Differential Geometry +1605.04307 Cosmology and Nongalactic Astrophysics +1605.04598 Information Theory +1605.04873 +1605.05838 Computational Complexity +1605.06791 Metric Geometry +1606.00530 Pricing of Securities +1606.02219 Other Condensed Matter +1606.02487 Rings and Algebras +1606.03718 Combinatorics +1606.04715 Algebraic Geometry +1606.04887 Lattice +1606.05198 Data Structures and Algorithms +1606.06920 Mesoscale and Nanoscale Physics +1607.04840 Phenomenology +1607.05495 Soft Condensed Matter +1607.06474 Theory +1607.06489 Strongly Correlated Electrons +1607.08068 Analysis of PDEs +1607.08335 +1608.00435 Experiment +1608.01555 General Mathematics +1608.01651 Differential Geometry +1608.02777 +1608.03144 Dynamical Systems +1608.03828 Computers and Society +1608.04618 Optics +1608.05196 Biological Physics +1608.06046 Rings and Algebras +1608.07674 Solar and Stellar Astrophysics +1608.08078 Number Theory +1609.00884 Mesoscale and Nanoscale Physics +1609.01372 Atomic Physics +1609.01534 Adaptation and Self-Organizing Systems +1609.01868 +1609.03777 Learning +1609.04377 Astrophysics of Galaxies +1609.04981 High Energy Astrophysical Phenomena +1609.05597 +1609.05933 +1609.06596 Materials Science +1609.06688 Phenomenology +1609.07042 Computer Vision and Pattern Recognition +1609.07552 Optics +1609.07745 Probability +1609.07861 Optics +1609.08229 Spectral Theory +1609.09020 Instrumentation and Detectors +1610.00858 Logic +1610.01502 Computer Vision and Pattern Recognition +1610.01916 Complex Variables +1610.02398 Phenomenology +1610.02476 Medical Physics +1610.03209 Functional Analysis +1610.03807 Computation and Language +1610.04933 +1610.06051 Theory +1610.06191 Strongly Correlated Electrons +1610.06629 Geometric Topology +1610.06830 Mesoscale and Nanoscale Physics +1610.07747 Other Condensed Matter +1610.08758 Cosmology and Nongalactic Astrophysics +1610.09505 Astrophysics of Galaxies +1610.09910 Representation Theory +1610.09924 Phenomenology +1610.09936 Physics and Society +1611.00207 Dynamical Systems +1611.00243 Instrumentation and Detectors +1611.00756 Optimization and Control +1611.01250 Functional Analysis +1611.01639 Learning +1611.01883 Operator Algebras +1611.02723 Emerging Technologies +1611.02749 Phenomenology +1611.03107 Instrumentation and Detectors +1611.03337 Mesoscale and Nanoscale Physics +1611.03963 Mesoscale and Nanoscale Physics +1611.04380 Phenomenology +1611.04594 Strongly Correlated Electrons +1611.05607 Computer Vision and Pattern Recognition +1611.06053 Subcellular Processes +1611.06701 +1611.06872 Classical Analysis and ODEs +1611.07093 Machine Learning +1611.07707 Statistical Mechanics +1611.07856 Data Analysis, Statistics and Probability +1611.08047 Geometric Topology +1611.09860 Astrophysics of Galaxies +1612.00883 Earth and Planetary Astrophysics +1612.01418 Strongly Correlated Electrons +1612.01822 Digital Libraries +1612.03196 Social and Information Networks +1612.03613 +1612.03880 Statistics Theory +1612.05486 Performance +1612.05497 Artificial Intelligence +1612.06730 Algebraic Geometry +1612.07126 Cosmology and Nongalactic Astrophysics +1612.07602 Artificial Intelligence +1612.07774 Earth and Planetary Astrophysics +1612.08312 Computational Physics +1612.08857 Astrophysics of Galaxies +1701.00874 Computation and Language +1701.01171 Theory +1701.01333 Fluid Dynamics +1701.01941 Computer Vision and Pattern Recognition +1701.01950 Functional Analysis +1701.02155 Soft Condensed Matter +1701.02738 Solar and Stellar Astrophysics +1701.03110 Theory +1701.03323 Phenomenology +1701.03669 High Energy Astrophysical Phenomena +1701.04650 Materials Science +1701.05187 History and Overview +1701.06087 +1701.06126 Combinatorics +1701.06193 Theory +1701.06507 Graphics +1701.07043 Phenomenology +1701.07346 Phenomenology +1701.07714 Algebraic Geometry +1701.07948 Optics +1701.07968 Representation Theory +1701.08121 Group Theory +1701.08264 Strongly Correlated Electrons +1701.08645 Theory +1701.08705 Experiment +1701.08960 Classical Analysis and ODEs +1701.09035 Theory +1701.09121 Superconductivity +1701.09123 Computation and Language +1701.09185 Probability +1702.00009 Cosmology and Nongalactic Astrophysics +1702.00014 Information Theory +1702.00061 Computer Vision and Pattern Recognition +1702.00111 Methodology +1702.00112 Human-Computer Interaction +1702.00167 Computation and Language +1702.00396 Instrumentation and Detectors +1702.00397 Fluid Dynamics +1702.00398 Instrumentation and Detectors +1702.00399 Space Physics +1702.00400 Astrophysics of Galaxies +1702.00401 Phenomenology +1702.00402 Astrophysics of Galaxies +1702.00403 Instrumentation and Methods for Astrophysics +1702.00404 Theory +1702.00405 Phenomenology +1702.00406 Astrophysics of Galaxies +1702.00407 Astrophysics of Galaxies +1702.00408 Cosmology and Nongalactic Astrophysics +1702.00409 Cosmology and Nongalactic Astrophysics +1702.00410 Phenomenology +1702.00411 Materials Science +1702.00412 Theory +1702.00413 Phenomenology +1702.00416 Solar and Stellar Astrophysics +1702.00417 Strongly Correlated Electrons +1702.00419 Superconductivity +1702.00421 Strongly Correlated Electrons +1702.00422 Optimization and Control +1702.00423 Theory +1702.00425 Robotics +1702.00427 Probability +1702.00429 Metric Geometry +1702.00430 Solar and Stellar Astrophysics +1702.00431 Algebraic Geometry +1702.00432 +1702.00433 Numerical Analysis +1702.00434 Computation +1702.00435 Group Theory +1702.00436 Digital Libraries +1702.00437 Materials Science +1702.00438 +1702.00440 Instrumentation and Methods for Astrophysics +1702.00441 Plasma Physics +1702.00442 Instrumentation and Methods for Astrophysics +1702.00443 Instrumentation and Methods for Astrophysics +1702.00444 Methodology +1702.00445 Strongly Correlated Electrons +1702.00446 Group Theory +1702.00447 Solar and Stellar Astrophysics +1702.00448 Earth and Planetary Astrophysics +1702.00449 Analysis of PDEs +1702.00450 Chemical Physics +1702.00451 Soft Condensed Matter +1702.00452 Mesoscale and Nanoscale Physics +1702.00453 Number Theory +1702.00454 Fluid Dynamics +1702.00455 Statistical Mechanics +1702.00456 Analysis of PDEs +1702.00459 Representation Theory +1702.00460 Accelerator Physics +1702.00462 Strongly Correlated Electrons +1702.00463 +1702.00464 Optimization and Control +1702.00465 Analysis of PDEs +1702.00466 Analysis of PDEs +1702.00469 Mesoscale and Nanoscale Physics +1702.00471 Number Theory +1702.00474 High Energy Astrophysical Phenomena +1702.00475 Fluid Dynamics +1702.00476 High Energy Astrophysical Phenomena +1702.00477 Neural and Evolutionary Computing +1702.00478 +1702.00479 Materials Science +1702.00481 +1702.00482 Statistics Theory +1702.00484 Algebraic Geometry +1702.00485 Astrophysics of Galaxies +1702.00486 +1702.00487 Strongly Correlated Electrons +1702.00489 Molecular Networks +1702.00491 Optics +1702.00492 Systems and Control +1702.00493 Information Theory +1702.00494 +1702.00496 Computational Physics +1702.00497 Astrophysics of Galaxies +1702.00499 Mesoscale and Nanoscale Physics +1702.00501 Methodology +1702.00503 Computer Vision and Pattern Recognition +1702.00504 +1702.00506 Computer Vision and Pattern Recognition +1702.00507 Instrumentation and Detectors +1702.00508 Geometric Topology +1702.00509 Computer Vision and Pattern Recognition +1702.00510 Metric Geometry +1702.00512 Subcellular Processes +1702.00515 Superconductivity +1702.00516 Algebraic Geometry +1702.00518 Machine Learning +1702.00519 Commutative Algebra +1702.00520 Functional Analysis +1702.00521 Combinatorics +1702.00523 Computer Vision and Pattern Recognition +1702.00524 Information Theory +1702.00525 Methodology +1702.00526 Optimization and Control +1702.00527 Systems and Control +1702.00528 Systems and Control +1702.00529 Spectral Theory +1702.00531 Optics +1702.00532 +1702.00533 Computational Complexity +1702.00534 Instrumentation and Methods for Astrophysics +1702.00536 Networking and Internet Architecture +1702.00538 Biological Physics +1702.00539 Artificial Intelligence +1702.00540 +1702.00541 Lattice +1702.00542 +1702.00543 Disordered Systems and Neural Networks +1702.00544 Astrophysics of Galaxies +1702.00547 Rings and Algebras +1702.00548 Cryptography and Security +1702.00549 Combinatorics +1702.00551 Rings and Algebras +1702.00552 Cryptography and Security +1702.00553 Optimization and Control +1702.00554 Digital Libraries +1702.00555 +1702.00556 Methodology +1702.00557 Experiment +1702.00558 Computational Complexity +1702.00561 Group Theory +1702.00562 Programming Languages +1702.00563 Numerical Analysis +1702.00564 Applications +1702.00565 Materials Science +1702.00567 Databases +1702.00568 Strongly Correlated Electrons +1702.00569 Combinatorics +1702.00571 Solar and Stellar Astrophysics +1702.00572 Fluid Dynamics +1702.00573 Materials Science +1702.00575 +1702.00577 Solar and Stellar Astrophysics +1702.00578 Mesoscale and Nanoscale Physics +1702.00579 Mesoscale and Nanoscale Physics +1702.00580 Geometric Topology +1702.00581 Group Theory +1702.00582 Other Computer Science +1702.00583 Computer Vision and Pattern Recognition +1702.00584 Information Theory +1702.00585 Social and Information Networks +1702.00586 Statistical Mechanics +1702.00590 Biological Physics +1702.00591 +1702.00594 +1702.00595 Probability +1702.00596 Fluid Dynamics +1702.00597 Astrophysics of Galaxies +1702.00598 Systems and Control +1702.00600 Dynamical Systems +1702.00601 Strongly Correlated Electrons +1702.00602 Functional Analysis +1702.00604 Combinatorics +1702.00605 Functional Analysis +1702.00607 Phenomenology +1702.00608 Information Theory +1702.00610 Learning +1702.00611 Classical Analysis and ODEs +1702.00612 Lattice +1702.00613 Dynamical Systems +1702.00614 Adaptation and Self-Organizing Systems +1702.00616 Computer Science and Game Theory +1702.00618 Chemical Physics +1702.00619 Information Retrieval +1702.00620 Soft Condensed Matter +1702.00621 Experiment +1702.00622 Discrete Mathematics +1702.00623 Instrumentation and Detectors +1702.00625 Algebraic Geometry +1702.00626 Classical Analysis and ODEs +1702.00627 Spectral Theory +1702.00628 Statistics Theory +1702.00629 Performance +1702.00630 Experiment +1702.00631 Classical Analysis and ODEs +1702.00632 Subcellular Processes +1702.00634 Soft Condensed Matter +1702.00635 Combinatorics +1702.00636 Spectral Theory +1702.00637 Analysis of PDEs +1702.00639 +1702.00641 Solar and Stellar Astrophysics +1702.00642 Quantum Gases +1702.00643 Superconductivity +1702.00645 Information Theory +1702.00647 Rings and Algebras +1702.00649 Strongly Correlated Electrons +1702.00650 Other Computer Science +1702.00651 Cosmology and Nongalactic Astrophysics +1702.00652 Combinatorics +1702.00653 Earth and Planetary Astrophysics +1702.00656 Soft Condensed Matter +1702.00657 Soft Condensed Matter +1702.00658 Differential Geometry +1702.00659 Phenomenology +1702.00660 +1702.00661 Analysis of PDEs +1702.00662 Statistics Theory +1702.00664 High Energy Astrophysical Phenomena +1702.00665 +1702.00666 Algebraic Topology +1702.00667 Earth and Planetary Astrophysics +1702.00668 Functional Analysis +1702.00669 Classical Analysis and ODEs +1702.00670 Lattice +1702.00671 Numerical Analysis +1702.00674 Experiment +1702.00677 Optics +1702.00678 Accelerator Physics +1702.00679 Algebraic Geometry +1702.00680 Plasma Physics +1702.00681 Combinatorics +1702.00682 Materials Science +1702.00683 +1702.00684 Materials Science +1702.00686 Systems and Control +1702.00687 Neurons and Cognition +1702.00688 Analysis of PDEs +1702.00689 Chemical Physics +1702.00691 Earth and Planetary Astrophysics +1702.00692 General Physics +1702.00693 +1702.00694 Robotics +1702.00695 Computational Engineering, Finance, and Science +1702.00697 Probability +1702.00698 +1702.00699 Dynamical Systems +1702.00700 Computation and Language +1702.00701 Analysis of PDEs +1702.00702 +1702.00703 Strongly Correlated Electrons +1702.00704 Complex Variables +1702.00705 Strongly Correlated Electrons +1702.00706 Strongly Correlated Electrons +1702.00707 Dynamical Systems +1702.00708 Optimization and Control +1702.00711 Instrumentation and Detectors +1702.00712 Analysis of PDEs +1702.00713 Numerical Analysis +1702.00714 Computer Vision and Pattern Recognition +1702.00715 Materials Science +1702.00716 Computation and Language +1702.00717 Superconductivity +1702.00719 Cryptography and Security +1702.00720 High Energy Astrophysical Phenomena +1702.00721 Representation Theory +1702.00722 Plasma Physics +1702.00723 Computer Vision and Pattern Recognition +1702.00724 Strongly Correlated Electrons +1702.00725 Astrophysics of Galaxies +1702.00726 Probability +1702.00727 Information Theory +1702.00728 Methodology +1702.00729 Complex Variables +1702.00732 High Energy Astrophysical Phenomena +1702.00733 Robotics +1702.00736 Formal Languages and Automata Theory +1702.00737 Graphics +1702.00738 Fluid Dynamics +1702.00739 Analysis of PDEs +1702.00740 Functional Analysis +1702.00742 Cosmology and Nongalactic Astrophysics +1702.00744 Chemical Physics +1702.00747 Analysis of PDEs +1702.00748 Phenomenology +1702.00749 +1702.00751 Analysis of PDEs +1702.00753 Probability +1702.00754 Computer Vision and Pattern Recognition +1702.00758 Learning +1702.00760 Classical Analysis and ODEs +1702.00761 Biological Physics +1702.00762 Analysis of PDEs +1702.00764 Computation and Language +1702.00765 Functional Analysis +1702.00766 Experiment +1702.00767 +1702.00768 Neurons and Cognition +1702.00769 Mesoscale and Nanoscale Physics +1702.00770 Algebraic Geometry +1702.00772 Dynamical Systems +1702.00773 Numerical Analysis +1702.00774 +1702.00775 Solar and Stellar Astrophysics +1702.00776 Information Theory +1702.00777 High Energy Astrophysical Phenomena +1702.00780 Artificial Intelligence +1702.00781 Commutative Algebra +1702.00782 Optics +math/0207104 Algebraic Geometry +math/0407339 Algebraic Geometry +math/0407340 Algebraic Geometry +0803.0437 Number Theory +0907.3182 Differential Geometry +0911.5231 +1012.4614 +1103.4884 Combinatorics +1104.0336 Functional Analysis +1201.4414 Algebraic Geometry +1202.5799 Logic +1206.0283 Functional Analysis +1206.1620 Differential Geometry +1207.2486 Functional Analysis +1207.4223 Logic +1210.6044 Physics and Society +1304.6009 Algebraic Geometry +1306.1290 Representation Theory +1307.7652 Algebraic Geometry +1309.5655 Artificial Intelligence +1312.0177 Functional Analysis +1401.3735 +1401.4220 Optimization and Control +1401.4626 Algebraic Geometry +1403.0039 Representation Theory +1404.2813 Data Analysis, Statistics and Probability +1405.3609 Probability +1407.3724 Algebraic Geometry +1408.4664 Dynamical Systems +1409.2351 +1410.1501 Geometric Topology +1411.1751 Computer Science and Game Theory +1411.1861 +1411.3375 Algebraic Geometry +1411.7807 Symplectic Geometry +1411.8005 Analysis of PDEs +1412.2947 Combinatorics +1412.4051 Data Structures and Algorithms +1502.01882 Differential Geometry +1502.04075 Mesoscale and Nanoscale Physics +1503.00395 Quantum Algebra +1503.07695 Quantum Algebra +1506.04035 High Energy Astrophysical Phenomena +1506.05537 Cosmology and Nongalactic Astrophysics +1507.04397 Optimization and Control +1507.04759 +1507.05462 Mesoscale and Nanoscale Physics +1508.00623 Tissues and Organs +1508.00850 Probability +1508.01922 Methodology +1508.02974 Algebraic Geometry +1508.04532 +1508.05515 Discrete Mathematics +1509.05292 +1510.04986 +1510.08318 Instrumentation and Methods for Astrophysics +1511.00601 Number Theory +1511.03607 Information Theory +1511.04777 Information Theory +1511.05090 +1512.00671 Strongly Correlated Electrons +1512.02568 Databases +1512.02720 Commutative Algebra +1512.03048 Information Theory +1512.03734 Differential Geometry +1512.04318 Differential Geometry +1512.05622 Probability +1512.07594 Group Theory +1601.01430 Theory +1601.03247 Atomic Physics +1601.04147 Logic in Computer Science +1601.05263 Mesoscale and Nanoscale Physics +1601.06559 Mesoscale and Nanoscale Physics +1601.07068 Numerical Analysis +1601.07618 Number Theory +1602.01093 Strongly Correlated Electrons +1602.01427 Complex Variables +1602.02001 Differential Geometry +1602.03521 Theory +1602.04971 Genomics +1602.06043 Logic in Computer Science +1602.06471 Algebraic Geometry +1603.02742 Materials Science +1603.02790 Dynamical Systems +1603.04088 Classical Analysis and ODEs +1603.09210 +1603.09714 Analysis of PDEs +1604.02266 +1604.02905 Mesoscale and Nanoscale Physics +1604.03433 Number Theory +1604.06510 Spectral Theory +1604.07509 Quantum Gases +1604.07815 Superconductivity +1604.07953 Computer Vision and Pattern Recognition +1605.01282 Quantum Algebra +1605.01551 Probability +1605.04082 +1605.04401 Optics +1605.06063 +1605.08100 Category Theory +1605.08277 Theory +1606.00061 Computer Vision and Pattern Recognition +1606.01069 Differential Geometry +1606.01663 +1606.03642 Emerging Technologies +1606.06336 Populations and Evolution +1606.09075 Cryptography and Security +1606.09147 Algebraic Geometry +1606.09158 Combinatorics +1606.09313 +1607.01984 +1607.02442 Cosmology and Nongalactic Astrophysics +1607.04099 Theory +1607.04272 Computational Physics +1607.05705 Phenomenology +1607.06445 Phenomenology +1607.07275 Atomic Physics +1607.07424 Mesoscale and Nanoscale Physics +1607.07857 Quantum Algebra +1607.08504 Representation Theory +1607.08575 Optics +1608.00677 +1608.00917 Systems and Control +1608.01110 Analysis of PDEs +1608.02111 Dynamical Systems +1608.02635 Combinatorics +1608.03858 Phenomenology +1608.04514 Phenomenology +1608.05032 Probability +1608.05446 Cosmology and Nongalactic Astrophysics +1608.08082 General Mathematics +1608.08372 Theory +1608.08467 Materials Science +1609.00015 +1609.00768 Mesoscale and Nanoscale Physics +1609.01204 Software Engineering +1609.01845 +1609.02174 Systems and Control +1609.03215 Dynamical Systems +1609.03304 Mesoscale and Nanoscale Physics +1609.03539 Superconductivity +1609.03790 Algebraic Geometry +1609.04991 Functional Analysis +1609.05132 Neural and Evolutionary Computing +1609.07612 Cryptography and Security +1609.08281 Learning +1609.08929 Probability +1609.08974 Statistical Mechanics +1610.00103 Analysis of PDEs +1610.00337 Soft Condensed Matter +1610.00805 Combinatorics +1610.01411 Classical Analysis and ODEs +1610.03049 History and Philosophy of Physics +1610.03410 Soft Condensed Matter +1610.03657 Mesoscale and Nanoscale Physics +1610.03815 Mesoscale and Nanoscale Physics +1610.04132 Quantum Gases +1610.04968 Classical Analysis and ODEs +1610.05164 Strongly Correlated Electrons +1610.05241 Mesoscale and Nanoscale Physics +1610.05553 Probability +1610.06133 Materials Science +1610.07960 Statistical Mechanics +1610.08354 Other Condensed Matter +1610.08905 Soft Condensed Matter +1611.01336 Analysis of PDEs +1611.01478 Combinatorics +1611.01522 Soft Condensed Matter +1611.02498 Strongly Correlated Electrons +1611.02868 Algebraic Geometry +1611.03864 Phenomenology +1611.04169 Operator Algebras +1611.04337 Theory +1611.05032 Phenomenology +1611.06557 Combinatorics +1611.07147 Instrumentation and Detectors +1611.07760 Phenomenology +1611.08950 Optics +1611.10149 Astrophysics of Galaxies +1611.10199 Fluid Dynamics +1612.00114 Theory +1612.00778 Applications +1612.01443 Phenomenology +1612.02593 Theory +1612.02850 Phenomenology +1612.03657 Analysis of PDEs +1612.03813 Software Engineering +1612.03833 Geophysics +1612.04043 Astrophysics of Galaxies +1612.04056 Sound +1612.04206 Algebraic Geometry +1612.04561 Representation Theory +1612.05931 Number Theory +1612.06163 +1612.06239 Instrumentation and Methods for Astrophysics +1612.06330 Theory +1612.06600 +1612.06841 Algebraic Geometry +1612.06989 Optics +1612.07304 Analysis of PDEs +1612.07334 Phenomenology +1612.07337 Phenomenology +1612.08048 Multiagent Systems +1612.08187 +1612.08201 Optimization and Control +1612.08695 Statistical Mechanics +1612.09243 Earth and Planetary Astrophysics +1701.00394 Number Theory +1701.00826 Mesoscale and Nanoscale Physics +1701.00877 Artificial Intelligence +1701.01055 Applications +1701.01442 Astrophysics of Galaxies +1701.01531 Quantitative Methods +1701.01628 Information Theory +1701.01640 Atomic Physics +1701.01792 Instrumentation and Methods for Astrophysics +1701.01967 Differential Geometry +1701.02095 Group Theory +1701.02183 +1701.02301 Machine Learning +1701.02364 Fluid Dynamics +1701.02544 Cosmology and Nongalactic Astrophysics +1701.02653 Probability +1701.02802 Astrophysics of Galaxies +1701.02821 Computational Finance +1701.02930 History and Philosophy of Physics +1701.03098 Trading and Market Microstructure +1701.03120 Probability +1701.03171 Theory +1701.03280 +1701.03336 Analysis of PDEs +1701.03655 Learning +1701.03833 Instrumentation and Methods for Astrophysics +1701.03843 Functional Analysis +1701.03849 Computation and Language +1701.03927 Soft Condensed Matter +1701.03991 Networking and Internet Architecture +1701.04145 +1701.04190 Strongly Correlated Electrons +1701.04225 Plasma Physics +1701.04323 Theory +1701.04358 Logic +1701.04434 +1701.04459 Solar and Stellar Astrophysics +1701.04526 Number Theory +1701.04623 Geophysics +1701.04647 Solar and Stellar Astrophysics +1701.04696 General Physics +1701.04707 Lattice +1701.04747 Algebraic Geometry +1701.04785 Complex Variables +1701.04983 Materials Science +1701.05008 Information Theory +1701.05075 Materials Science +1701.05080 Neurons and Cognition +1701.05105 Computer Vision and Pattern Recognition +1701.05132 Methodology +1701.05152 +1701.05182 +1701.05183 +1701.05185 Classical Physics +1701.05186 Instrumentation and Detectors +1701.05188 Cosmology and Nongalactic Astrophysics +1701.05190 Astrophysics of Galaxies +1701.05191 Earth and Planetary Astrophysics +1701.05192 Solar and Stellar Astrophysics +1701.05194 Strongly Correlated Electrons +1701.05195 Phenomenology +1701.05198 High Energy Astrophysical Phenomena +1701.05200 +1701.05202 Theory +1701.05205 Earth and Planetary Astrophysics +1701.05209 Information Theory +1701.05210 Populations and Evolution +1701.05212 Information Theory +1701.05213 Instrumentation and Methods for Astrophysics +1701.05214 Combinatorics +1701.05215 Combinatorics +1701.05217 Learning +1701.05219 Computer Science and Game Theory +1701.05220 +1701.05224 Atmospheric and Oceanic Physics +1701.05225 Social and Information Networks +1701.05227 Instrumentation and Detectors +1701.05230 Methodology +1701.05231 Astrophysics of Galaxies +1701.05233 Networking and Internet Architecture +1701.05234 Networking and Internet Architecture +1701.05235 Accelerator Physics +1701.05236 +1701.05238 Phenomenology +1701.05239 +1701.05240 High Energy Astrophysical Phenomena +1701.05241 Phenomenology +1701.05244 +1701.05245 Astrophysics of Galaxies +1701.05246 Dynamical Systems +1701.05248 Human-Computer Interaction +1701.05249 Classical Analysis and ODEs +1701.05250 Astrophysics of Galaxies +1701.05251 Logic in Computer Science +1701.05253 Dynamical Systems +1701.05255 Algebraic Geometry +1701.05256 Mesoscale and Nanoscale Physics +1701.05257 +1701.05258 +1701.05259 Phenomenology +1701.05260 Adaptation and Self-Organizing Systems +1701.05262 Analysis of PDEs +1701.05263 Phenomenology +1701.05264 Quantum Gases +1701.05265 Machine Learning +1701.05266 Mesoscale and Nanoscale Physics +1701.05267 Number Theory +1701.05268 Computer Vision and Pattern Recognition +1701.05270 Strongly Correlated Electrons +1701.05271 Optics +1701.05272 Dynamical Systems +1701.05273 Systems and Control +1701.05274 Experiment +1701.05275 Information Theory +1701.05277 Combinatorics +1701.05278 Populations and Evolution +1701.05280 Theory +1701.05282 Dynamical Systems +1701.05284 Information Theory +1701.05285 Optics +1701.05286 Computational Geometry +1701.05287 Combinatorics +1701.05289 Probability +1701.05290 Computational Geometry +1701.05291 Artificial Intelligence +1701.05292 Materials Science +1701.05294 Robotics +1701.05295 Dynamical Systems +1701.05297 Information Theory +1701.05298 Optimization and Control +1701.05299 +1701.05301 +1701.05302 Populations and Evolution +1701.05303 Logic in Computer Science +1701.05304 Functional Analysis +1701.05307 Physics and Society +1701.05308 Performance +1701.05310 Materials Science +1701.05311 Information Retrieval +1701.05312 Systems and Control +1701.05313 Superconductivity +1701.05314 Analysis of PDEs +1701.05315 Analysis of PDEs +1701.05317 Quantum Gases +1701.05318 Analysis of PDEs +1701.05319 Representation Theory +1701.05320 Mesoscale and Nanoscale Physics +1701.05321 Operator Algebras +1701.05322 Mesoscale and Nanoscale Physics +1701.05323 Cryptography and Security +1701.05324 Logic in Computer Science +1701.05325 Statistics Theory +1701.05326 Strongly Correlated Electrons +1701.05327 Software Engineering +1701.05328 Computational Complexity +1701.05329 Algebraic Geometry +1701.05330 Functional Analysis +1701.05331 Phenomenology +1701.05333 +1701.05334 Artificial Intelligence +1701.05336 Atomic and Molecular Clusters +1701.05338 Subcellular Processes +1701.05340 +1701.05341 Medical Physics +1701.05342 +1701.05343 Computation and Language +1701.05344 Optimization and Control +1701.05345 Phenomenology +1701.05346 +1701.05347 Physics and Society +1701.05348 Plasma Physics +1701.05349 Computer Vision and Pattern Recognition +1701.05351 Atmospheric and Oceanic Physics +1701.05353 Strongly Correlated Electrons +1701.05354 Space Physics +1701.05355 +1701.05356 +1701.05357 Optics +1701.05359 Space Physics +1701.05360 Computer Vision and Pattern Recognition +1701.05362 +1701.05364 Superconductivity +1701.05365 Commutative Algebra +1701.05367 Superconductivity +1701.05368 Other Condensed Matter +1701.05371 Probability +1701.05372 Differential Geometry +1701.05373 +1701.05374 Optics +1701.05375 Instrumentation and Detectors +1701.05377 Computer Vision and Pattern Recognition +1701.05378 Data Structures and Algorithms +1701.05380 Statistics Theory +1701.05381 Analysis of PDEs +1701.05383 Dynamical Systems +1701.05384 Computer Vision and Pattern Recognition +1701.05385 Instrumentation and Detectors +1701.05387 Probability +1701.05388 Analysis of PDEs +1701.05389 Logic in Computer Science +1701.05390 Experiment +1701.05392 Information Theory +1701.05393 Analysis of PDEs +1701.05397 Databases +1701.05398 Materials Science +1701.05399 Theory +1701.05400 Molecular Networks +1701.05401 +1701.05402 Networking and Internet Architecture +1701.05404 Experiment +1701.05406 Fluid Dynamics +1701.05408 Logic in Computer Science +1701.05410 +1701.05411 Biological Physics +1701.05412 Computer Vision and Pattern Recognition +1701.05413 Complex Variables +1701.05414 Operator Algebras +1701.05415 +1701.05417 +1701.05418 Probability +1701.05419 Computer Vision and Pattern Recognition +1701.05420 Numerical Analysis +1701.05421 Instrumentation and Detectors +1701.05422 Soft Condensed Matter +1701.05423 +1701.05425 Differential Geometry +1701.05429 +1701.05430 Commutative Algebra +1701.05432 Computer Vision and Pattern Recognition +1701.05433 Soft Condensed Matter +1701.05434 +1701.05435 Astrophysics of Galaxies +1701.05436 +1701.05437 Computational Physics +1701.05438 Group Theory +1701.05439 Soft Condensed Matter +1701.05440 Optimization and Control +1701.05441 Methodology +1701.05442 Differential Geometry +1701.05443 Dynamical Systems +1701.05444 Strongly Correlated Electrons +1701.05448 Materials Science +1701.05449 Databases +1701.05451 Distributed, Parallel, and Cluster Computing +1701.05452 Methodology +1701.05453 Software Engineering +1701.05455 Applications +1701.05457 Medical Physics +1701.05458 Statistics Theory +1701.05459 High Energy Astrophysical Phenomena +1701.05460 Solar and Stellar Astrophysics +1701.05462 Theory +1701.05464 Phenomenology +1701.05465 +1701.05466 Probability +1701.05467 Software Engineering +1701.05468 Information Theory +1701.05469 Analysis of PDEs +1701.05471 Mesoscale and Nanoscale Physics +1701.05472 Software Engineering +1701.05474 Logic +1701.05475 Computational Geometry +1701.05476 Theory +1701.05477 Statistical Mechanics +1701.05478 Distributed, Parallel, and Cluster Computing +1701.05479 Lattice +1701.05480 Plasma Physics +1701.05481 High Energy Astrophysical Phenomena +1701.05483 Analysis of PDEs +1701.05484 Information Theory +1701.05485 Plasma Physics +1701.05486 Experiment +1701.05487 Learning +1701.05489 Theory +1701.05490 Group Theory +1701.05492 Discrete Mathematics +1701.05493 Rings and Algebras +1701.05494 Numerical Analysis +1701.05496 High Energy Astrophysical Phenomena +1701.05497 Software Engineering +1701.05498 Computer Vision and Pattern Recognition +1701.05500 Algebraic Geometry +1701.05502 Lattice +1701.05503 Molecular Networks +1701.05504 Atomic Physics +1701.05505 Mesoscale and Nanoscale Physics +1701.05506 Cosmology and Nongalactic Astrophysics +1701.05508 Commutative Algebra +1701.05509 Operator Algebras +1701.05512 Machine Learning +1701.05513 Databases +1701.05515 +1701.05516 Combinatorics +1701.05518 +1701.05519 Materials Science +1701.05520 Theory +1701.05521 Logic in Computer Science +1701.05522 +1701.05523 Information Theory +1701.05525 Combinatorics +1701.05527 Algebraic Geometry +1701.05528 Strongly Correlated Electrons +1701.05529 Combinatorics +1701.05530 Methodology +1701.05531 Strongly Correlated Electrons +1701.05532 Combinatorics +1701.05534 Commutative Algebra +1701.05535 Dynamical Systems +1701.05536 Probability +1701.05538 Complex Variables +1701.05539 Strongly Correlated Electrons +1701.05540 Information Theory +1701.05542 Classical Analysis and ODEs +1701.05546 Statistical Mechanics +1701.05547 Methodology +1701.05548 Instrumentation and Methods for Astrophysics +1701.05549 Neural and Evolutionary Computing +1701.05552 Statistical Mechanics +1701.05553 Methodology +math/9905108 Algebraic Geometry +1408.1028 Probability +1604.01258 +1703.06013 General Physics +1703.10563 Theory +0803.2068 Probability +0902.4058 Probability +0902.4214 Probability +0905.2944 Probability +0906.0177 Statistics Theory +0907.2960 General Topology +1001.2901 Probability +1003.4813 General Mathematics +1006.0502 Probability +1007.2137 Probability +1008.4884 Phenomenology +1008.5350 Probability +1101.3287 Classical Analysis and ODEs +1101.3289 Statistics Theory +1101.3328 Statistics Theory +1102.2579 Combinatorics +1111.2622 Probability +1111.6220 Probability +1204.0249 Optimization and Control +1204.1761 Probability +1205.2254 Logic +1209.2271 Cosmology and Nongalactic Astrophysics +1211.0589 Probability +1212.1912 Probability +1212.6073 Algebraic Geometry +1301.0227 Differential Geometry +1302.4061 Software Engineering +1302.5328 Computational Geometry +1302.6524 Probability +1302.6706 Commutative Algebra +1309.1404 Probability +1309.3052 Software Engineering +1309.3751 Spectral Theory +1309.5928 Probability +1310.3506 Algebraic Geometry +1310.6025 Probability +1311.3962 Differential Geometry +1311.5533 Spectral Theory +1311.6196 Symplectic Geometry +1312.4654 Optimization and Control +1401.0738 Mesoscale and Nanoscale Physics +1401.6970 Differential Geometry +1401.7077 Computation and Language +1402.6092 Metric Geometry +1403.1554 Algebraic Geometry +1404.7256 +1405.0569 Analysis of PDEs +1406.7050 Mesoscale and Nanoscale Physics +1407.7007 Commutative Algebra +1408.0419 Commutative Algebra +1408.1657 +1408.4082 Differential Geometry +1409.5019 +1409.7890 Combinatorics +1410.4369 Complex Variables +1410.6828 Combinatorics +1412.0821 Operator Algebras +1412.6227 Astrophysics of Galaxies +1501.00602 Number Theory +1501.00954 Algebraic Geometry +1501.01337 Numerical Analysis +1501.02917 Information Theory +1501.06357 Phenomenology +1502.02298 Artificial Intelligence +1502.05745 Distributed, Parallel, and Cluster Computing +1502.07634 Logic in Computer Science +1503.00348 Classical Analysis and ODEs +1503.03880 Information Theory +1503.06482 Probability +1503.07387 Information Retrieval +1503.07607 Statistical Mechanics +1503.07705 Computational Complexity +1504.00792 Probability +1504.00803 Dynamical Systems +1504.02823 Representation Theory +1504.03840 +1504.04701 +1504.04948 Networking and Internet Architecture +1504.05504 Disordered Systems and Neural Networks +1505.02046 Cosmology and Nongalactic Astrophysics +1505.02085 Information Theory +1505.06579 +1506.00537 Functional Analysis +1506.01571 Rings and Algebras +1506.02813 Algebraic Geometry +1506.03748 Complex Variables +1506.04709 Statistics Theory +1506.06107 Computational Complexity +1506.06297 Applications +1506.07381 Dynamical Systems +1506.07608 Digital Libraries +1506.07852 Complex Variables +1506.08901 +1507.02493 Statistics Theory +1507.04802 Differential Geometry +1507.07706 Commutative Algebra +1507.08971 Statistical Mechanics +1508.00069 Optimization and Control +1508.01896 +1508.03476 Combinatorics +1508.04645 Probability +1508.05458 +1508.06243 Mesoscale and Nanoscale Physics +1508.06783 Mesoscale and Nanoscale Physics +1509.01327 Optimization and Control +1509.01981 Combinatorics +1509.02433 Representation Theory +1509.04554 Physics and Society +1509.05155 +1509.05363 Combinatorics +1509.05829 Analysis of PDEs +1509.07193 Statistical Mechanics +1509.07977 +1509.08351 Quantum Algebra +1510.00258 Metric Geometry +1510.00296 +1510.03395 Group Theory +1510.04554 Strongly Correlated Electrons +1510.05255 Representation Theory +1510.08751 Strongly Correlated Electrons +1510.08752 +1510.08977 +1511.00273 Methodology +1511.00769 Theory +1511.03589 K-Theory and Homology +1511.03773 +1511.04144 Statistics Theory +1511.05112 Theory +1511.06196 Computation +1511.07534 Number Theory +1511.09108 Instrumentation and Methods for Astrophysics +1512.00617 Commutative Algebra +1512.03521 +1512.03566 Cosmology and Nongalactic Astrophysics +1512.04174 Algebraic Geometry +1512.04175 Optimization and Control +1512.04787 +1512.05887 Mesoscale and Nanoscale Physics +1512.06159 Statistical Finance +1512.06574 Number Theory +1512.07166 General Physics +1512.08958 Biological Physics +1601.00330 High Energy Astrophysical Phenomena +1601.01011 Group Theory +1601.01168 Group Theory +1601.04487 Functional Analysis +1601.06637 Phenomenology +1601.07337 Commutative Algebra +1601.07541 Number Theory +1601.07695 Analysis of PDEs +1602.00570 Portfolio Management +1602.02536 Combinatorics +1602.03198 Number Theory +1602.03238 Pricing of Securities +1602.03671 Differential Geometry +1602.04121 Analysis of PDEs +1602.04403 Quantum Gases +1602.06074 Phenomenology +1602.07562 +1602.07607 Combinatorics +1602.07737 Lattice +1602.08032 Distributed, Parallel, and Cluster Computing +1602.08419 Cosmology and Nongalactic Astrophysics +1602.08894 Probability +1603.00936 Combinatorics +1603.00938 Combinatorics +1603.01606 Phenomenology +1603.02554 +1603.03378 Strongly Correlated Electrons +1603.04604 Analysis of PDEs +1603.04841 Probability +1603.05694 Methodology +1603.06361 Functional Analysis +1603.06660 Numerical Analysis +1603.07365 Probability +1603.07689 Computer Science and Game Theory +1603.07847 Optimization and Control +1603.08856 Algebraic Geometry +1603.09468 Analysis of PDEs +1604.00465 Theory +1604.01445 Computational Complexity +1604.01678 Strongly Correlated Electrons +1604.02889 Disordered Systems and Neural Networks +1604.04045 Combinatorics +1604.04082 Analysis of PDEs +1604.05113 Information Theory +1604.05862 Classical Analysis and ODEs +1604.06000 Analysis of PDEs +1604.06056 Data Structures and Algorithms +1604.06210 Computer Science and Game Theory +1604.06299 Populations and Evolution +1604.06723 Number Theory +1604.07088 Information Theory +1604.07753 +1604.08844 Combinatorics +1605.00401 Superconductivity +1605.02876 Statistical Mechanics +1605.03252 Superconductivity +1605.03742 Fluid Dynamics +1605.04261 Strongly Correlated Electrons +1605.04315 Strongly Correlated Electrons +1605.04426 Superconductivity +1605.05221 Optimization and Control +1605.05665 Algebraic Geometry +1605.06632 Number Theory +1605.06702 Combinatorics +1605.07027 Analysis of PDEs +1605.07503 Data Structures and Algorithms +1605.07890 Analysis of PDEs +1605.07936 Dynamical Systems +1605.08343 Algebraic Topology +1605.08407 Statistical Mechanics +1605.08608 Quantum Algebra +1605.08932 Operator Algebras +1605.09281 Combinatorics +1605.09494 History and Overview +1606.00511 Learning +1606.01293 Numerical Analysis +1606.01422 Quantitative Methods +1606.01570 Probability +1606.01787 Theory +1606.01983 High Energy Astrophysical Phenomena +1606.02422 Computational Engineering, Finance, and Science +1606.02804 +1606.03206 Theory +1606.03340 Classical Analysis and ODEs +1606.03462 Superconductivity +1606.04313 Materials Science +1606.04549 Phenomenology +1606.05078 +1606.05222 +1606.05631 Numerical Analysis +1606.07049 Lattice +1606.07394 Physics and Society +1606.07512 Optimization and Control +1606.07895 Experiment +1606.07898 Experiment +1606.08070 +1606.08180 Dynamical Systems +1606.08418 Differential Geometry +1606.09409 +1606.09578 Mesoscale and Nanoscale Physics +1606.09620 Spectral Theory +1607.00342 Theory +1607.00350 +1607.01208 Algebraic Geometry +1607.01809 +1607.01964 High Energy Astrophysical Phenomena +1607.02662 Probability +1607.02718 Phenomenology +1607.03373 Mesoscale and Nanoscale Physics +1607.04352 Information Theory +1607.04539 Plasma Physics +1607.06534 Machine Learning +1607.06932 Optics +1607.07040 Information Theory +1607.07151 Superconductivity +1607.07915 Atmospheric and Oceanic Physics +1607.08183 Systems and Control +1607.08430 Experiment +1607.08611 Disordered Systems and Neural Networks +1608.00486 Computer Vision and Pattern Recognition +1608.01761 Algebraic Geometry +1608.02002 Plasma Physics +1608.02474 Materials Science +1608.03177 Combinatorics +1608.03210 Computational Physics +1608.03815 Probability +1608.03970 Strongly Correlated Electrons +1608.04273 Computer Science and Game Theory +1608.04868 Multimedia +1608.05299 +1608.05330 Strongly Correlated Electrons +1608.05860 +1608.06082 Statistical Mechanics +1608.06406 Computational Physics +1608.06484 Experiment +1608.06770 Multimedia +1608.08100 Software Engineering +1608.08349 Mesoscale and Nanoscale Physics +1608.08366 Plasma Physics +1608.08874 Number Theory +1609.01265 Superconductivity +1609.01384 Quantitative Methods +1609.01526 Instrumentation and Methods for Astrophysics +1609.02736 Atomic Physics +1609.03178 +1609.03338 Logic in Computer Science +1609.03348 Learning +1609.03876 Networking and Internet Architecture +1609.04272 +1609.04594 +1609.05050 Phenomenology +1609.05302 Rings and Algebras +1609.05455 Mesoscale and Nanoscale Physics +1609.05509 Logic +1609.06185 +1609.06356 Mesoscale and Nanoscale Physics +1609.06758 Cosmology and Nongalactic Astrophysics +1609.06955 Optimization and Control +1609.07423 Strongly Correlated Electrons +1609.07834 Statistics Theory +1609.08164 Theory +1609.08181 Materials Science +1609.08335 +1609.08781 Phenomenology +1609.08807 Phenomenology +1609.08828 Combinatorics +1610.00042 Numerical Analysis +1610.00273 Disordered Systems and Neural Networks +1610.00454 Optics +1610.01330 Cosmology and Nongalactic Astrophysics +1610.01769 Theory +1610.01882 +1610.02010 High Energy Astrophysical Phenomena +1610.02086 Mesoscale and Nanoscale Physics +1610.02427 Methodology +1610.02646 Exactly Solvable and Integrable Systems +1610.02669 Theory +1610.03128 Solar and Stellar Astrophysics +1610.03508 High Energy Astrophysical Phenomena +1610.04093 Statistics Theory +1610.04237 Theory +1610.04479 Computational Physics +1610.04875 +1610.05263 Atomic Physics +1610.05926 Category Theory +1610.07207 K-Theory and Homology +1610.07682 Geometric Topology +1610.08076 Information Theory +1610.08087 Functional Analysis +1610.08617 +1610.09091 Computation and Language +1610.09881 Analysis of PDEs +1611.00463 Distributed, Parallel, and Cluster Computing +1611.01275 Theory +1611.01590 Neural and Evolutionary Computing +1611.01670 +1611.01838 Learning +1611.02116 Neurons and Cognition +1611.02186 Phenomenology +1611.02982 Theory +1611.03817 Phenomenology +1611.04106 Phenomenology +1611.04150 Information Theory +1611.04540 Solar and Stellar Astrophysics +1611.04761 Phenomenology +1611.04841 Computation and Language +1611.05035 Theory +1611.05262 +1611.05815 Analysis of PDEs +1611.06466 Solar and Stellar Astrophysics +1611.06634 Superconductivity +1611.07254 Statistical Mechanics +1611.07258 Combinatorics +1611.07479 Theory +1611.07486 Combinatorics +1611.07914 Operator Algebras +1611.08069 Computer Vision and Pattern Recognition +1611.08149 Phenomenology +1611.08242 Mesoscale and Nanoscale Physics +1611.08638 Optics +1611.08955 +1611.09680 +1611.09788 Optimization and Control +1611.09823 Artificial Intelligence +1611.10313 +1612.00143 Computational Complexity +1612.00165 Quantum Gases +1612.00248 Phenomenology +1612.00709 Earth and Planetary Astrophysics +1612.01269 +1612.01577 Networking and Internet Architecture +1612.01585 Rings and Algebras +1612.01612 Solar and Stellar Astrophysics +1612.02280 Classical Analysis and ODEs +1612.02487 Artificial Intelligence +1612.03443 Probability +1612.03587 Mesoscale and Nanoscale Physics +1612.03647 High Energy Astrophysical Phenomena +1612.03727 Physics and Society +1612.04203 Databases +1612.04748 Instrumentation and Methods for Astrophysics +1612.04889 +1612.05105 General Physics +1612.05374 Rings and Algebras +1612.05914 Functional Analysis +1612.05923 Cryptography and Security +1612.05985 History and Philosophy of Physics +1612.06795 Computer Vision and Pattern Recognition +1612.07211 Strongly Correlated Electrons +1612.07308 +1612.07382 Cosmology and Nongalactic Astrophysics +1612.07706 Operator Algebras +1612.07847 Differential Geometry +1612.07878 Systems and Control +1612.08140 Theory +1612.08443 Algebraic Geometry +1612.08527 +1612.08573 Operator Algebras +1612.08615 Theory +1612.08843 Computer Vision and Pattern Recognition +1612.08880 Quantum Gases +1612.08899 Geophysics +1612.08998 Numerical Analysis +1612.09041 High Energy Astrophysical Phenomena +1612.09061 Differential Geometry +1612.09393 Algebraic Geometry +1612.09415 Statistics Theory +1612.09536 +1701.00021 Optimization and Control +1701.00085 Theory +1701.00087 Theory +1701.00119 High Energy Astrophysical Phenomena +1701.00209 Theory +1701.00481 Machine Learning +1701.00580 Algebraic Geometry +1701.00598 Phenomenology +1701.00811 +1701.00844 High Energy Astrophysical Phenomena +1701.01398 Phenomenology +1701.01500 Multimedia +1701.01721 Statistical Mechanics +1701.01798 Superconductivity +1701.01807 Algebraic Geometry +1701.01848 +1701.01951 +1701.01979 Complex Variables +1701.02037 Theory +1701.02075 Information Theory +1701.02296 +1701.02302 Commutative Algebra +1701.02381 +1701.02556 +1701.02639 Statistical Mechanics +1701.02667 General Physics +1701.02739 Cosmology and Nongalactic Astrophysics +1701.02781 Mesoscale and Nanoscale Physics +1701.02838 Number Theory +1701.02957 +1701.03034 High Energy Astrophysical Phenomena +1701.03082 Mesoscale and Nanoscale Physics +1701.03147 Systems and Control +1701.03162 Applications +1701.03382 Phenomenology +1701.03430 Systems and Control +1701.03503 Algebraic Geometry +1701.03509 Symplectic Geometry +1701.03648 Statistical Mechanics +1701.03707 Optics +1701.03765 Cosmology and Nongalactic Astrophysics +1701.03782 +1701.03783 Instrumentation and Detectors +1701.03784 Plasma Physics +1701.03785 Systems and Control +1701.03787 Numerical Analysis +1701.03788 Materials Science +1701.03791 Cosmology and Nongalactic Astrophysics +1701.03792 Astrophysics of Galaxies +1701.03793 Strongly Correlated Electrons +1701.03795 Earth and Planetary Astrophysics +1701.03796 Mesoscale and Nanoscale Physics +1701.03797 +1701.03798 Astrophysics of Galaxies +1701.03800 High Energy Astrophysical Phenomena +1701.03805 +1701.03806 Differential Geometry +1701.03807 Earth and Planetary Astrophysics +1701.03808 Strongly Correlated Electrons +1701.03812 Complex Variables +1701.03813 +1701.03814 Phenomenology +1701.03816 Astrophysics of Galaxies +1701.03817 Astrophysics of Galaxies +1701.03818 Astrophysics of Galaxies +1701.03819 Astrophysics of Galaxies +1701.03820 Accelerator Physics +1701.03822 Methodology +1701.03823 Complex Variables +1701.03824 Accelerator Physics +1701.03825 Theory +1701.03826 Data Structures and Algorithms +1701.03827 Discrete Mathematics +1701.03828 Optics +1701.03829 Accelerator Physics +1701.03830 +1701.03831 Performance +1701.03832 Soft Condensed Matter +1701.03834 Sound +1701.03835 Geometric Topology +1701.03837 Instrumentation and Detectors +1701.03838 Medical Physics +1701.03839 Human-Computer Interaction +1701.03840 Information Theory +1701.03841 Strongly Correlated Electrons +1701.03845 +1701.03847 Complex Variables +1701.03850 Instrumentation and Detectors +1701.03851 Physics Education +1701.03852 Algebraic Geometry +1701.03854 Databases +1701.03856 Discrete Mathematics +1701.03858 Algebraic Geometry +1701.03860 Probability +1701.03861 Computation +1701.03862 Analysis of PDEs +1701.03863 Optimization and Control +1701.03864 Numerical Analysis +1701.03865 Earth and Planetary Astrophysics +1701.03866 Artificial Intelligence +1701.03867 Materials Science +1701.03868 Artificial Intelligence +1701.03869 Computer Vision and Pattern Recognition +1701.03870 Probability +1701.03871 Probability +1701.03872 Strongly Correlated Electrons +1701.03874 Information Theory +1701.03875 Disordered Systems and Neural Networks +1701.03878 Hardware Architecture +1701.03879 Soft Condensed Matter +1701.03880 Information Theory +1701.03881 Materials Science +1701.03882 Medical Physics +1701.03883 Populations and Evolution +1701.03884 Complex Variables +1701.03885 Operator Algebras +1701.03886 Mesoscale and Nanoscale Physics +1701.03888 +1701.03889 +1701.03890 +1701.03891 Machine Learning +1701.03892 Statistics Theory +1701.03893 Distributed, Parallel, and Cluster Computing +1701.03894 Chemical Physics +1701.03895 Quantum Algebra +1701.03896 Information Theory +1701.03898 Information Theory +1701.03900 +1701.03901 Number Theory +1701.03902 Rings and Algebras +1701.03904 Information Theory +1701.03905 High Energy Astrophysical Phenomena +1701.03906 Metric Geometry +1701.03907 +1701.03908 Systems and Control +1701.03909 Algebraic Geometry +1701.03913 Systems and Control +1701.03914 Instrumentation and Detectors +1701.03915 Representation Theory +1701.03916 Learning +1701.03917 Numerical Analysis +1701.03919 Materials Science +1701.03921 +1701.03922 Computer Science and Game Theory +1701.03924 Computation and Language +1701.03925 Algebraic Geometry +1701.03926 Cosmology and Nongalactic Astrophysics +1701.03928 Solar and Stellar Astrophysics +1701.03929 Number Theory +1701.03930 Materials Science +1701.03931 Instrumentation and Detectors +1701.03932 Analysis of PDEs +1701.03933 Materials Science +1701.03934 Methodology +1701.03936 Mesoscale and Nanoscale Physics +1701.03937 Artificial Intelligence +1701.03939 Information Retrieval +1701.03940 Learning +1701.03941 Optimization and Control +1701.03942 Information Retrieval +1701.03944 Formal Languages and Automata Theory +1701.03945 Cryptography and Security +1701.03946 Probability +1701.03950 +1701.03951 Algebraic Geometry +1701.03952 Instrumentation and Methods for Astrophysics +1701.03953 Astrophysics of Galaxies +1701.03954 Mesoscale and Nanoscale Physics +1701.03956 Rings and Algebras +1701.03957 +1701.03958 Numerical Analysis +1701.03959 Applications +1701.03960 Mathematical Finance +1701.03962 Atomic Physics +1701.03963 Human-Computer Interaction +1701.03964 Cosmology and Nongalactic Astrophysics +1701.03965 Dynamical Systems +1701.03966 Materials Science +1701.03968 Human-Computer Interaction +1701.03970 Mesoscale and Nanoscale Physics +1701.03971 Classical Analysis and ODEs +1701.03973 +1701.03977 Cryptography and Security +1701.03978 Computational Engineering, Finance, and Science +1701.03980 Machine Learning +1701.03981 Human-Computer Interaction +1701.03982 Geometric Topology +1701.03984 Materials Science +1701.03985 Strongly Correlated Electrons +1701.03986 Information Theory +1701.03988 Subcellular Processes +1701.03990 +1701.03992 Methodology +1701.03993 Populations and Evolution +1701.03995 Differential Geometry +1701.03996 Statistical Mechanics +1701.03997 Numerical Analysis +1701.03999 Geometric Topology +1701.04000 Plasma Physics +1701.04002 Analysis of PDEs +1701.04003 Operator Algebras +1701.04006 Methodology +1701.04007 Metric Geometry +1701.04008 Classical Analysis and ODEs +1701.04009 Algebraic Geometry +1701.04011 Numerical Analysis +1701.04012 Mesoscale and Nanoscale Physics +1701.04013 Cryptography and Security +1701.04015 Dynamical Systems +1701.04016 Differential Geometry +1701.04017 Dynamical Systems +1701.04018 Computer Vision and Pattern Recognition +1701.04020 Soft Condensed Matter +1701.04021 Data Structures and Algorithms +1701.04025 Probability +1701.04026 +1701.04027 Computation and Language +1701.04028 Information Theory +1701.04029 Phenomenology +1701.04030 Instrumentation and Methods for Astrophysics +1701.04031 Accelerator Physics +1701.04033 Operator Algebras +1701.04034 Algebraic Geometry +1701.04035 +1701.04036 +1701.04037 Astrophysics of Galaxies +1701.04039 Information Retrieval +1701.04040 Statistical Mechanics +1701.04041 K-Theory and Homology +1701.04043 Computer Vision and Pattern Recognition +1701.04045 Cryptography and Security +1701.04047 Information Theory +1701.04048 Fluid Dynamics +1701.04049 Cosmology and Nongalactic Astrophysics +1701.04052 Information Theory +1701.04056 Computation and Language +1701.04057 Instrumentation and Methods for Astrophysics +1701.04058 Classical Analysis and ODEs +1701.04059 +1701.04060 +1701.04063 Earth and Planetary Astrophysics +1701.04064 Software Engineering +1701.04067 Instrumentation and Methods for Astrophysics +1701.04068 Theory +1701.04069 +1701.04070 Optics +1701.04071 History and Philosophy of Physics +1701.04072 Optimization and Control +1701.04074 Complex Variables +1701.04076 Networking and Internet Architecture +1701.04079 Learning +1701.04082 Computer Vision and Pattern Recognition +1701.04083 Optimization and Control +1701.04084 +1701.04085 Strongly Correlated Electrons +1701.04087 Optimization and Control +1701.04089 Programming Languages +1701.04091 +1701.04092 Number Theory +1701.04093 Methodology +1701.04097 Mesoscale and Nanoscale Physics +1701.04098 Number Theory +1701.04100 Chemical Physics +1701.04101 Computer Vision and Pattern Recognition +1701.04102 Optimization and Control +1701.04103 +1701.04104 Superconductivity +1701.04105 Combinatorics +1701.04107 Combinatorics +1701.04108 Computational Complexity +1701.04110 Combinatorics +1701.04111 +1701.04112 Statistics Theory +1701.04113 Learning +1701.04114 +1701.04115 Atomic Physics +1701.04116 High Energy Astrophysical Phenomena +1701.04117 Soft Condensed Matter +1701.04118 Optimization and Control +1701.04119 Analysis of PDEs +1701.04120 Information Theory +1701.04121 Mesoscale and Nanoscale Physics +1701.04122 +1701.04123 Strongly Correlated Electrons +1701.04124 Materials Science +1701.04125 Spectral Theory +1701.04126 Other Computer Science +1701.04127 Operator Algebras +1701.04130 Information Theory +1701.04133 Representation Theory +1701.04134 Computational Finance +1701.04135 +1701.04136 +1701.04139 Dynamical Systems +1701.04140 Algebraic Geometry +1701.04141 Phenomenology +1701.04142 Differential Geometry +1701.04143 Learning +1701.04147 +1701.04149 Cosmology and Nongalactic Astrophysics +1701.04150 Materials Science +1701.04151 Probability +1701.04152 Probability +1701.04153 Instrumentation and Detectors +1701.04154 Superconductivity +1701.04156 Logic +1701.04157 Numerical Analysis +1701.04158 Probability +1701.04159 Classical Analysis and ODEs +1701.04161 Complex Variables +1701.04162 Combinatorics +1701.04163 Classical Analysis and ODEs +1701.04164 High Energy Astrophysical Phenomena +1701.04165 Information Theory +1701.04171 Quantitative Methods +1701.04173 Dynamical Systems +1701.04176 Statistics Theory +1701.04177 Statistics Theory +1701.04179 Classical Analysis and ODEs +1701.04180 Information Theory +1701.04182 Databases +1701.04183 Information Theory +1701.04184 Probability +1701.04185 Multimedia +1701.04186 Soft Condensed Matter +1701.04187 Information Theory +1701.04188 Statistics Theory +1701.04189 Computation and Language +1701.04191 Combinatorics +1701.04192 Rings and Algebras +1701.04193 Optics +1701.04194 Accelerator Physics +1701.04195 +1701.04196 Operator Algebras +1701.04197 Classical Physics +1701.04198 Experiment +1701.04199 +1701.04200 Optimization and Control +1701.04202 Geophysics +1701.04207 Machine Learning +1701.04208 Computers and Society +1701.04209 Mesoscale and Nanoscale Physics +1701.04210 Computer Vision and Pattern Recognition +1701.04216 Cosmology and Nongalactic Astrophysics +1701.04218 Classical Analysis and ODEs +1701.04219 Medical Physics +1701.04220 Cosmology and Nongalactic Astrophysics +1701.04222 Learning +1701.04223 Category Theory +1701.04226 +1701.04227 Combinatorics +1701.04231 Group Theory +1701.04233 Soft Condensed Matter +1701.04235 +1701.04236 Soft Condensed Matter +1701.04237 Materials Science +1701.04238 Learning +1701.04240 Logic in Computer Science +1701.04242 +1701.04244 Methodology +1701.04247 Methodology +1701.04249 Computer Vision and Pattern Recognition +1701.04250 Lattice +1701.04251 +1701.04252 Materials Science +1701.04254 Phenomenology +1701.04256 Computer Vision and Pattern Recognition +1701.04257 Dynamical Systems +1701.04258 Probability +1701.04259 Complex Variables +1701.04260 Pricing of Securities +1701.04261 Algebraic Geometry +1701.04262 Exactly Solvable and Integrable Systems +1701.04263 Functional Analysis +1701.04266 Optimization and Control +1701.04267 Functional Analysis +1701.04269 Phenomenology +1701.04270 Probability +1701.04273 Information Retrieval +1701.04277 Data Analysis, Statistics and Probability +1701.04278 Quantum Gases +1701.04280 Combinatorics +1701.04281 High Energy Astrophysical Phenomena +1701.04282 Phenomenology +1701.04287 Theory +1701.04288 Formal Languages and Automata Theory +1701.04289 Analysis of PDEs +1701.04290 Computation and Language +1701.04291 +1701.04292 Information Retrieval +1701.04293 Networking and Internet Architecture +1701.04294 Probability +1701.04295 Strongly Correlated Electrons +1701.04296 Quantum Gases +1701.04297 Strongly Correlated Electrons +1701.04298 +1701.04299 +1701.04300 Materials Science +1701.04302 +1701.04303 Graphics +1701.04309 Analysis of PDEs +1701.04311 Earth and Planetary Astrophysics +1701.04312 Earth and Planetary Astrophysics +1701.04313 Computation and Language +1701.04314 Metric Geometry +1701.04315 Quantitative Methods +1701.04317 History and Philosophy of Physics +1701.04318 Information Theory +1701.04319 Astrophysics of Galaxies +1701.04320 Classical Physics +1701.04322 General Topology +1701.04326 Functional Analysis +1701.04328 High Energy Astrophysical Phenomena +1701.04330 +1701.04332 High Energy Astrophysical Phenomena +1701.04334 Phenomenology +1701.04335 Theory +1701.04336 Differential Geometry +1701.04337 Theory +1701.04339 Databases +1701.04341 Symbolic Computation +1701.04342 Machine Learning +1701.04343 Fluid Dynamics +1701.04344 Analysis of PDEs +1701.04345 Dynamical Systems +1701.04346 Populations and Evolution +1701.04348 Classical Analysis and ODEs +1701.04350 Robotics +1701.04351 Probability +1701.04352 Probability +1701.04353 Optics +1701.04355 Learning +1701.04357 Classical Analysis and ODEs +1701.04359 Optics +1701.04361 Representation Theory +1701.04362 Atomic Physics +1701.04363 +1701.04364 Data Structures and Algorithms +1701.04365 Probability +1701.04366 Statistics Theory +1701.04367 Statistics Theory +1701.04368 Numerical Analysis +1701.04370 Numerical Analysis +1701.04371 Cryptography and Security +1701.04372 Group Theory +1701.04374 Group Theory +1701.04375 Discrete Mathematics +1701.04377 Representation Theory +1701.04378 +1701.04379 Differential Geometry +1701.04380 Number Theory +1701.04383 Graphics +1701.04384 Soft Condensed Matter +1701.04385 Algebraic Geometry +1701.04386 Mesoscale and Nanoscale Physics +1701.04387 Applications +1701.04388 Functional Analysis +1701.04389 Machine Learning +1701.04390 Soft Condensed Matter +1701.04391 Logic in Computer Science +1701.04396 Cosmology and Nongalactic Astrophysics +1701.04397 Differential Geometry +1701.04398 Medical Physics +1701.04399 Data Structures and Algorithms +1701.04400 High Energy Astrophysical Phenomena +cond-mat/0311050 Materials Science +cond-mat/0410751 Materials Science +cond-mat/0606013 Materials Science +math/0603030 Probability +math/0609697 General Mathematics +math/0611662 Classical Analysis and ODEs +math/0611665 Classical Analysis and ODEs +0807.1133 Combinatorics +1009.5308 Combinatorics +1101.2575 Information Theory +1103.4391 Quantum Algebra +1109.2690 Combinatorics +1111.4097 Number Theory +1202.2421 Number Theory +1203.5053 K-Theory and Homology +1205.0676 Representation Theory +1206.3749 Quantum Algebra +1210.0458 Symplectic Geometry +1210.2947 Materials Science +1303.1889 K-Theory and Homology +1304.6628 General Topology +1304.7976 +1304.8007 +1305.2580 Number Theory +1305.3489 Atomic Physics +1306.0955 Cosmology and Nongalactic Astrophysics +1307.6226 Geometric Topology +1307.6294 Methodology +1307.6377 +1311.6418 Analysis of PDEs +1404.1171 Representation Theory +1405.5798 Metric Geometry +1407.2846 Optics +1407.6398 Atomic Physics +1408.3694 Algebraic Topology +1410.5329 Learning +1411.2577 Data Structures and Algorithms +1411.3332 High Energy Astrophysical Phenomena +1412.0281 Operator Algebras +1501.01617 Methodology +1501.05284 Rings and Algebras +1502.05218 +1502.05240 Algebraic Geometry +1502.05338 Quantum Gases +1503.03019 Differential Geometry +1503.04383 General Topology +1503.07838 Differential Geometry +1504.00340 Methodology +1504.04778 Dynamical Systems +1504.07880 Data Structures and Algorithms +1504.08364 Representation Theory +1505.05175 Information Theory +1505.07294 Combinatorics +1505.07755 Operator Algebras +1506.00122 Networking and Internet Architecture +1506.01454 Operator Algebras +1506.03843 Formal Languages and Automata Theory +1506.06591 Soft Condensed Matter +1506.09047 +1507.07818 Geometric Topology +1507.08708 Computer Science and Game Theory +1507.08976 Geometric Topology +1508.00498 Information Theory +1508.06690 Probability +1508.07578 Dynamical Systems +1509.01465 Probability +1509.03386 Instrumentation and Detectors +1509.05962 Machine Learning +1510.00887 +1510.02685 Theory +1510.05044 +1510.05846 Fluid Dynamics +1510.08143 Solar and Stellar Astrophysics +1511.01803 Statistics Theory +1511.02613 Soft Condensed Matter +1511.03370 Rings and Algebras +1511.03899 Lattice +1511.04648 Numerical Analysis +1511.07861 Classical Analysis and ODEs +1512.03387 +1512.05581 Probability +1512.06260 Data Analysis, Statistics and Probability +1601.00857 General Physics +1601.01642 Strongly Correlated Electrons +1601.03532 +1601.05556 Numerical Analysis +1602.00449 Probability +1602.03438 Metric Geometry +1602.04970 Phenomenology +1602.07878 +1602.08425 Computer Vision and Pattern Recognition +1603.02912 General Physics +1603.03961 Mesoscale and Nanoscale Physics +1603.09018 Algebraic Geometry +1604.01225 Strongly Correlated Electrons +1604.01693 Social and Information Networks +1604.02031 Optimization and Control +1604.02098 Quantum Algebra +1604.02280 Analysis of PDEs +1604.03093 Mesoscale and Nanoscale Physics +1604.03611 Methodology +1604.04212 Phenomenology +1604.05302 Differential Geometry +1604.08911 Representation Theory +1605.00174 Rings and Algebras +1605.02092 Astrophysics of Galaxies +1605.02868 Probability +1605.03911 +1605.04783 Theory +1605.06588 Artificial Intelligence +1605.07222 Tissues and Organs +1606.00488 Materials Science +1606.01083 +1606.03611 Biological Physics +1606.03723 +1606.03950 General Mathematics +1606.04302 Atomic Physics +1606.05387 Emerging Technologies +1606.05528 General Physics +1606.05975 Data Structures and Algorithms +1606.06826 Combinatorics +1606.06829 Risk Management +1606.07196 Geometric Topology +1606.07544 Strongly Correlated Electrons +1606.08161 Superconductivity +1606.08177 Differential Geometry +1606.08329 Materials Science +1606.08603 +1606.09282 Computer Vision and Pattern Recognition +1607.00242 Computational Complexity +1607.00969 Neurons and Cognition +1607.01661 Probability +1607.01689 Statistical Mechanics +1607.01774 +1607.01912 Information Theory +1607.03376 Operator Algebras +1607.03758 Phenomenology +1607.04210 Optimization and Control +1607.05692 Statistical Mechanics +1607.06238 Differential Geometry +1607.08225 Representation Theory +1608.00806 Information Theory +1608.00924 Statistical Mechanics +1608.00997 Logic +1608.02120 Exactly Solvable and Integrable Systems +1608.03480 Quantum Gases +1608.04202 Representation Theory +1608.04272 Mesoscale and Nanoscale Physics +1608.05532 Operator Algebras +1608.07077 Materials Science +1608.08115 Mesoscale and Nanoscale Physics +1609.00156 Algebraic Geometry +1609.00528 Phenomenology +1609.00720 Instrumentation and Detectors +1609.00732 Theory +1609.02038 +1609.04799 Probability +1609.05264 Multiagent Systems +1609.05381 Quantum Gases +1609.06554 Quantum Gases +1609.06818 Algebraic Geometry +1609.06827 Algebraic Geometry +1609.08224 +1609.08707 Geophysics +1609.08876 Cosmology and Nongalactic Astrophysics +1609.09635 Superconductivity +1609.09717 Theory +1609.09775 +1610.02048 Disordered Systems and Neural Networks +1610.02797 Robotics +1610.02851 Information Theory +1610.03501 Theory +1610.03513 Instrumentation and Detectors +1610.03991 Numerical Analysis +1610.04218 Information Theory +1610.05202 Learning +1610.06183 Astrophysics of Galaxies +1610.06472 +1610.07312 Theory +1610.07343 Strongly Correlated Electrons +1610.07636 Information Theory +1610.07729 Data Structures and Algorithms +1610.08496 Combinatorics +1610.08823 Theory +1611.00749 Algebraic Geometry +1611.00783 Computational Complexity +1611.01578 Learning +1611.01617 Phenomenology +1611.01779 Learning +1611.01858 Materials Science +1611.01932 Mesoscale and Nanoscale Physics +1611.02131 Mesoscale and Nanoscale Physics +1611.02280 High Energy Astrophysical Phenomena +1611.06447 +1611.06553 Experiment +1611.06665 Optimization and Control +1611.07354 Commutative Algebra +1611.08518 Phenomenology +1612.00454 High Energy Astrophysical Phenomena +1612.00613 +1612.00801 Probability +1612.01880 Soft Condensed Matter +1612.01949 Chemical Physics +1612.02168 Data Structures and Algorithms +1612.02825 Phenomenology +1612.02968 Commutative Algebra +1612.03068 Combinatorics +1612.03639 Social and Information Networks +1612.03820 Atomic and Molecular Clusters +1612.03989 Computer Vision and Pattern Recognition +1612.04522 Statistical Mechanics +1612.05416 Networking and Internet Architecture +1612.05697 High Energy Astrophysical Phenomena +1612.06670 Cryptography and Security +1612.07299 Differential Geometry +1612.07879 Emerging Technologies +1612.08663 Mesoscale and Nanoscale Physics +1612.09099 +1701.01203 +1701.01270 Commutative Algebra +1701.01915 Number Theory +1701.02664 Computer Vision and Pattern Recognition +1701.03150 Numerical Analysis +1701.03670 Formal Languages and Automata Theory +1701.04275 Theory +1701.04338 Phenomenology +1701.04516 Learning +1701.04604 Mesoscale and Nanoscale Physics +1701.04951 Rings and Algebras +1701.05035 Soft Condensed Matter +1701.05082 Analysis of PDEs +1701.05661 Analysis of PDEs +1701.06045 Differential Geometry +1701.06204 Information Theory +1701.06645 Mesoscale and Nanoscale Physics +1701.06741 Hardware Architecture +1701.07202 Theory +1701.07517 Hardware Architecture +1701.07784 Analysis of PDEs +1701.08542 Strongly Correlated Electrons +1701.08595 Solar and Stellar Astrophysics +1701.08691 Soft Condensed Matter +1701.08858 Chemical Physics +1701.08877 Hardware Architecture +1702.00008 Lattice +1702.00395 Phenomenology +1702.00861 Analysis of PDEs +1702.01392 Instrumentation and Methods for Astrophysics +1702.01488 Systems and Control +1702.01738 Theory +1702.01961 Information Theory +1702.02163 Phenomenology +1702.02239 +1702.02348 Cosmology and Nongalactic Astrophysics +1702.02395 Soft Condensed Matter +1702.02433 +1702.02674 Mesoscale and Nanoscale Physics +1702.03057 Computation +1702.03183 Neurons and Cognition +1702.03196 Computation and Language +1702.03212 General Physics +1702.03291 +1702.03538 Spectral Theory +1702.03685 +1702.03818 Numerical Analysis +1702.03849 Learning +1702.03854 Astrophysics of Galaxies +1702.03938 Theory +1702.04014 Biological Physics +1702.04094 +1702.04096 +1702.04120 Numerical Analysis +1702.04179 Computer Vision and Pattern Recognition +1702.04189 Cosmology and Nongalactic Astrophysics +1702.04291 +1702.04297 Chemical Physics +1702.04339 High Energy Astrophysical Phenomena +1702.04346 Chemical Physics +1702.04347 Fluid Dynamics +1702.04349 Disordered Systems and Neural Networks +1702.04350 Theory +1702.04352 Astrophysics of Galaxies +1702.04354 Phenomenology +1702.04356 High Energy Astrophysical Phenomena +1702.04357 Mesoscale and Nanoscale Physics +1702.04359 Theory +1702.04361 Superconductivity +1702.04362 High Energy Astrophysical Phenomena +1702.04363 Statistical Mechanics +1702.04364 High Energy Astrophysical Phenomena +1702.04365 Earth and Planetary Astrophysics +1702.04366 Materials Science +1702.04367 +1702.04368 +1702.04369 Differential Geometry +1702.04370 High Energy Astrophysical Phenomena +1702.04371 Astrophysics of Galaxies +1702.04372 Computation and Language +1702.04373 Soft Condensed Matter +1702.04374 Soft Condensed Matter +1702.04375 Algebraic Geometry +1702.04376 Formal Languages and Automata Theory +1702.04377 Computer Vision and Pattern Recognition +1702.04378 Fluid Dynamics +1702.04380 Differential Geometry +1702.04381 Phenomenology +1702.04382 Number Theory +1702.04383 Solar and Stellar Astrophysics +1702.04384 Lattice +1702.04385 Earth and Planetary Astrophysics +1702.04386 Superconductivity +1702.04388 Computational Finance +1702.04389 Artificial Intelligence +1702.04390 Analysis of PDEs +1702.04391 Computation +1702.04392 Mesoscale and Nanoscale Physics +1702.04393 Mesoscale and Nanoscale Physics +1702.04394 Logic +1702.04395 Soft Condensed Matter +1702.04397 Algebraic Topology +1702.04398 Networking and Internet Architecture +1702.04399 Phenomenology +1702.04400 Optimization and Control +1702.04402 Instrumentation and Detectors +1702.04403 Dynamical Systems +1702.04404 Algebraic Geometry +1702.04405 Computer Vision and Pattern Recognition +1702.04406 +1702.04408 Strongly Correlated Electrons +1702.04409 Functional Analysis +1702.04411 +1702.04412 Quantum Gases +1702.04413 Analysis of PDEs +1702.04414 Solar and Stellar Astrophysics +1702.04415 Learning +1702.04416 Dynamical Systems +1702.04418 Biological Physics +1702.04419 High Energy Astrophysical Phenomena +1702.04420 +1702.04422 High Energy Astrophysical Phenomena +1702.04423 Learning +1702.04424 Numerical Analysis +1702.04425 Mesoscale and Nanoscale Physics +1702.04428 Differential Geometry +1702.04429 Solar and Stellar Astrophysics +1702.04431 Astrophysics of Galaxies +1702.04432 Combinatorics +1702.04434 Cryptography and Security +1702.04435 Materials Science +1702.04436 Group Theory +1702.04437 Phenomenology +1702.04440 Phenomenology +1702.04442 Strongly Correlated Electrons +1702.04443 Statistical Finance +1702.04444 Mesoscale and Nanoscale Physics +1702.04445 Quantum Gases +1702.04448 Optics +1702.04449 Social and Information Networks +1702.04450 Applications +1702.04451 Dynamical Systems +1702.04452 +1702.04454 +1702.04455 Computer Vision and Pattern Recognition +1702.04456 +1702.04458 Information Theory +1702.04459 Neural and Evolutionary Computing +1702.04460 Solar and Stellar Astrophysics +1702.04462 +1702.04464 Probability +1702.04465 Representation Theory +1702.04466 Information Theory +1702.04467 Distributed, Parallel, and Cluster Computing +1702.04468 Strongly Correlated Electrons +1702.04469 +1702.04470 Mesoscale and Nanoscale Physics +1702.04471 Computer Vision and Pattern Recognition +1702.04472 Networking and Internet Architecture +1702.04473 Methodology +1702.04474 Distributed, Parallel, and Cluster Computing +1702.04475 Representation Theory +1702.04476 Algebraic Geometry +1702.04477 Statistics Theory +1702.04478 Logic in Computer Science +1702.04480 Instrumentation and Methods for Astrophysics +1702.04481 Atomic Physics +1702.04484 Materials Science +1702.04485 Group Theory +1702.04486 Accelerator Physics +1702.04487 Computational Physics +1702.04489 Probability +1702.04490 Theory +1702.04491 Commutative Algebra +1702.04492 Cosmology and Nongalactic Astrophysics +1702.04493 Information Theory +1702.04494 Pattern Formation and Solitons +1702.04495 Optics +1702.04496 Representation Theory +1702.04498 Materials Science +1702.04499 Number Theory +1702.04500 Astrophysics of Galaxies +1702.04501 Software Engineering +1702.04503 Fluid Dynamics +1702.04504 Quantum Algebra +1702.04505 Dynamical Systems +1702.04506 Mesoscale and Nanoscale Physics +1702.04507 Astrophysics of Galaxies +1702.04508 Experiment +1702.04509 Mesoscale and Nanoscale Physics +1702.04510 Computation and Language +1702.04511 Cosmology and Nongalactic Astrophysics +1702.04512 Solar and Stellar Astrophysics +1702.04514 +1702.04515 Populations and Evolution +1702.04518 Fluid Dynamics +1702.04519 Experiment +1702.04520 +1702.04521 Computation and Language +1702.04522 Fluid Dynamics +1702.04523 Strongly Correlated Electrons +1702.04524 +1702.04525 Information Theory +1702.04526 Phenomenology +1702.04527 Fluid Dynamics +1702.04529 Combinatorics +1702.04530 Analysis of PDEs +1702.04531 Instrumentation and Detectors +1702.04532 +1702.04533 Exactly Solvable and Integrable Systems +1702.04534 Analysis of PDEs +1702.04535 Mesoscale and Nanoscale Physics +1702.04536 Data Structures and Algorithms +1702.04537 Human-Computer Interaction +1702.04538 Optimization and Control +1702.04539 Information Theory +1702.04540 Numerical Analysis +1702.04541 Fluid Dynamics +1702.04542 High Energy Astrophysical Phenomena +1702.04544 Optimization and Control +1702.04545 Soft Condensed Matter +1702.04546 Solar and Stellar Astrophysics +1702.04547 Optimization and Control +1702.04548 Strongly Correlated Electrons +1702.04549 Complex Variables +1702.04550 Representation Theory +1702.04551 Logic in Computer Science +1702.04552 Methodology +1702.04553 Statistical Mechanics +1702.04554 +1702.04556 Astrophysics of Galaxies +1702.04557 Phenomenology +1702.04558 Materials Science +1702.04559 Combinatorics +1702.04560 Analysis of PDEs +1702.04561 Machine Learning +1702.04562 Computer Vision and Pattern Recognition +1702.04563 Information Theory +1702.04565 Networking and Internet Architecture +1702.04567 General Mathematics +1702.04568 +1702.04569 Classical Analysis and ODEs +1702.04570 Methodology +1702.04571 Phenomenology +1702.04573 Information Theory +1702.04574 Materials Science +1702.04575 K-Theory and Homology +1702.04576 +1702.04577 Learning +1702.04578 Functional Analysis +1702.04579 Classical Analysis and ODEs +1702.04580 Solar and Stellar Astrophysics +1702.04581 Soft Condensed Matter +1702.04582 Combinatorics +1702.04583 Representation Theory +1702.04584 Artificial Intelligence +1702.04585 Soft Condensed Matter +1702.04586 Strongly Correlated Electrons +1702.04587 Plasma Physics +1702.04588 Differential Geometry +1702.04589 Numerical Analysis +1702.04590 Number Theory +1702.04594 Artificial Intelligence +1702.04595 Computer Vision and Pattern Recognition +1702.04596 Phenomenology +1702.04597 Formal Languages and Automata Theory +1702.04598 Experiment +1702.04599 Strongly Correlated Electrons +1702.04600 Strongly Correlated Electrons +1702.04602 Theory +1702.04603 Logic in Computer Science +1702.04604 +1702.04605 Rings and Algebras +1702.04607 Computational Physics +1702.04609 Symplectic Geometry +1702.04610 Differential Geometry +1702.04611 Differential Geometry +1702.04612 Strongly Correlated Electrons +1702.04613 Optics +1702.04614 Digital Libraries +1702.04615 Computation and Language +1702.04616 Mesoscale and Nanoscale Physics +1702.04619 Probability +1702.04620 Number Theory +1702.04621 Numerical Analysis +1702.04622 Theory +1702.04623 Algebraic Topology +1702.04625 Methodology +1702.04626 Classical Analysis and ODEs +1702.04627 Tissues and Organs +1702.04628 Pattern Formation and Solitons +1702.04630 +1702.04632 Algebraic Topology +1702.04633 Instrumentation and Methods for Astrophysics +1702.04634 Materials Science +1702.04635 General Physics +1702.04636 General Physics +1702.04638 Artificial Intelligence +1702.04639 Atomic Physics +1702.04640 General Physics +1702.04641 Computational Geometry +1702.04642 Computational Engineering, Finance, and Science +1702.04643 Astrophysics of Galaxies +1702.04645 Data Structures and Algorithms +1702.04646 +1702.04647 High Energy Astrophysical Phenomena +1702.04648 Analysis of PDEs +1702.04651 Instrumentation and Detectors +1702.04652 Cryptography and Security +1702.04653 Performance +1702.04654 Materials Science +1702.04656 Statistics Theory +1702.04657 Computer Vision and Pattern Recognition +1702.04658 Dynamical Systems +1702.04659 General Mathematics +1702.04660 Materials Science +1702.04661 Theory +1702.04662 Quantum Gases +1702.04663 Computer Vision and Pattern Recognition +1702.04664 Information Theory +1702.04665 Statistics Theory +1702.04666 Lattice +1702.04670 Fluid Dynamics +1702.04671 Materials Science +1702.04672 Statistics Theory +1702.04675 Superconductivity +1702.04676 Theory +1702.04677 Statistical Mechanics +1702.04678 Representation Theory +1702.04681 +1702.04682 Methodology +1702.04683 Learning +1702.04684 Machine Learning +1702.04686 Data Analysis, Statistics and Probability +1702.04687 +1702.04688 Probability +1702.04689 Fluid Dynamics +1702.04691 Materials Science +1702.04692 Optics +1702.04693 Logic in Computer Science +1702.04694 Information Theory +1702.04695 Soft Condensed Matter +1702.04696 Combinatorics +1702.04697 +1702.04698 Probability +1702.04699 Systems and Control +1702.04700 Optimization and Control +1702.04701 Instrumentation and Methods for Astrophysics +1702.04702 Solar and Stellar Astrophysics +1702.04703 Information Theory +1702.04705 +1702.04706 Mesoscale and Nanoscale Physics +1702.04707 Information Theory +1702.04708 Number Theory +1702.04709 Fluid Dynamics +1702.04710 Computer Vision and Pattern Recognition +1702.04711 Information Theory +1702.04713 +1702.04714 Strongly Correlated Electrons +hep-th/9611143 Theory +quant-ph/0007066 +quant-ph/0012051 +quant-ph/0102005 +quant-ph/0104043 +quant-ph/0109133 +1102.1809 Symbolic Computation +1106.6022 Artificial Intelligence +1112.2276 Medical Physics +1207.0425 Networking and Internet Architecture +1304.3212 Differential Geometry +1306.0615 Data Structures and Algorithms +1308.0110 +1309.3242 Artificial Intelligence +1311.0123 Mesoscale and Nanoscale Physics +1408.5713 High Energy Astrophysical Phenomena +0712.4273 Computation +1204.3750 Number Theory +1204.5801 Data Structures and Algorithms +1206.4390 Metric Geometry +1207.6613 Algebraic Topology +1212.3885 Phenomenology +1302.2068 Machine Learning +1303.1224 Analysis of PDEs +1305.4561 Computation and Language +1305.5057 Group Theory +1310.7692 Number Theory +1311.1714 Distributed, Parallel, and Cluster Computing +1312.4126 Logic in Computer Science +1312.4806 Theory +1401.2143 Quantum Algebra +1401.6957 Numerical Analysis +1403.0274 Group Theory +1403.2123 Cryptography and Security +1404.1678 Numerical Analysis +1405.2477 Biological Physics +1405.4147 Metric Geometry +1405.7275 Phenomenology +1407.3794 Theory +1408.1397 Theory +1409.0757 Programming Languages +1409.1369 Theory +1410.6892 Algebraic Geometry +1411.3335 Theory +1411.6370 Learning +1412.2308 Optics +1412.3553 Materials Science +1501.03644 Theory +1502.05428 Information Theory +1503.00957 K-Theory and Homology +1503.08623 Programming Languages +1504.00570 Quantum Gases +1504.04591 Classical Analysis and ODEs +1504.04804 Distributed, Parallel, and Cluster Computing +1504.07932 Phenomenology +1504.08259 Formal Languages and Automata Theory +1505.05777 Mesoscale and Nanoscale Physics +1505.05938 Materials Science +1506.01155 Probability +1506.01397 Mesoscale and Nanoscale Physics +1506.01565 Social and Information Networks +1506.05288 Classical Analysis and ODEs +1507.02184 Data Structures and Algorithms +1508.01129 Combinatorics +1508.03252 Logic +1508.03784 Statistical Mechanics +1508.05834 Combinatorics +1508.07392 Quantum Algebra +1508.07978 Metric Geometry +1509.02021 Biological Physics +1509.03448 Probability +1509.07583 Methodology +1510.05081 Analysis of PDEs +1510.05256 Dynamical Systems +1510.07168 Analysis of PDEs +1511.03992 +1511.04305 High Energy Astrophysical Phenomena +1511.05417 General Physics +1511.08090 Strongly Correlated Electrons +1512.04114 Cryptography and Security +1512.06236 Probability +1512.07641 Spectral Theory +1512.07892 +1601.00680 +1601.01152 Information Theory +1601.03812 Probability +1601.07888 Systems and Control +1602.00301 Analysis of PDEs +1602.02441 Theory +1602.02577 Group Theory +1602.03780 Social and Information Networks +1602.05629 Learning +1602.06518 Machine Learning +1602.06667 Robotics +1602.06970 Probability +1602.08740 Group Theory +1603.01491 Operator Algebras +1603.02884 Number Theory +1603.04809 Numerical Analysis +1603.05064 Computer Science and Game Theory +1603.05305 Optimization and Control +1603.06015 Computer Vision and Pattern Recognition +1603.07857 Statistical Mechanics +1603.09430 +1603.09521 +1604.00148 General Finance +1604.00451 Algebraic Topology +1604.01171 Statistics Theory +1604.02164 Algebraic Geometry +1604.03638 Statistics Theory +1604.04789 Artificial Intelligence +1604.06524 +1604.06543 Optimization and Control +1604.06959 Cryptography and Security +1604.08471 Differential Geometry +1605.00943 Materials Science +1605.01037 +1605.01277 Number Theory +1605.01391 Algebraic Topology +1605.01414 Cosmology and Nongalactic Astrophysics +1605.02569 Data Structures and Algorithms +1605.02975 General Physics +1605.03288 Theory +1605.03292 Numerical Analysis +1605.05742 Fluid Dynamics +1605.06420 Statistics Theory +1605.06955 Learning +1605.07102 +1605.08104 Learning +1606.00182 Learning +1606.01040 Information Theory +1606.02084 Subcellular Processes +1606.03862 Rings and Algebras +1606.03976 Machine Learning +1606.04128 Classical Analysis and ODEs +1606.05336 Machine Learning +1606.05615 Learning +1606.05755 Classical Analysis and ODEs +1606.06941 Mesoscale and Nanoscale Physics +1606.09525 Theory +1607.02051 Materials Science +1607.02095 Theory +1607.02364 +1607.02743 Pricing of Securities +1607.02983 +1607.05033 Classical Analysis and ODEs +1607.05041 Classical Analysis and ODEs +1607.05972 General Physics +1607.06604 Metric Geometry +1607.08693 Computation and Language +1607.08731 Probability +1608.01494 Optimization and Control +1608.01630 Classical Analysis and ODEs +1608.03839 +1608.03855 Applications +1608.04262 +1608.04802 Machine Learning +1608.07641 Numerical Analysis +1609.01781 Fluid Dynamics +1609.01952 Instrumentation and Methods for Astrophysics +1609.01976 +1609.01995 Artificial Intelligence +1609.02131 Dynamical Systems +1609.02723 Optics +1609.03600 Optimization and Control +1609.03877 Superconductivity +1609.05797 Computer Vision and Pattern Recognition +1609.05882 Phenomenology +1609.06512 Fluid Dynamics +1609.07320 Mesoscale and Nanoscale Physics +1609.08170 +1609.08417 Computer Vision and Pattern Recognition +1610.00374 Differential Geometry +1610.00377 Mesoscale and Nanoscale Physics +1610.00971 Spectral Theory +1610.01465 Computer Vision and Pattern Recognition +1610.01944 Computer Vision and Pattern Recognition +1610.03496 Theory +1610.04386 Machine Learning +1610.04601 Probability +1610.04928 Analysis of PDEs +1610.05387 Combinatorics +1610.06099 Mesoscale and Nanoscale Physics +1610.06273 Information Theory +1610.06303 Analysis of PDEs +1610.06616 Experiment +1610.06690 +1610.06781 Robotics +1610.06882 High Energy Astrophysical Phenomena +1610.06914 +1610.06917 +1610.07849 Strongly Correlated Electrons +1610.08741 Strongly Correlated Electrons +1610.09216 Analysis of PDEs +1610.09600 Machine Learning +1611.00395 Strongly Correlated Electrons +1611.01122 +1611.01572 Human-Computer Interaction +1611.01727 +1611.02611 +1611.02699 +1611.03071 Learning +1611.03623 Materials Science +1611.04517 Astrophysics of Galaxies +1611.04596 +1611.04599 Phenomenology +1611.05937 Algebraic Topology +1611.07035 Astrophysics of Galaxies +1611.07106 Theory +1611.07335 Strongly Correlated Electrons +1611.08858 Theory +1611.09094 Phenomenology +1611.09314 Theory +1611.10047 Neurons and Cognition +1611.10050 Strongly Correlated Electrons +1612.00359 Statistical Mechanics +1612.00375 +1612.01000 Mesoscale and Nanoscale Physics +1612.02293 +1612.02423 Optics +1612.02707 Learning +1612.02987 Differential Geometry +1612.03873 Combinatorics +1612.04473 Instrumentation and Methods for Astrophysics +1612.05290 +1612.06200 General Finance +1612.06854 Theory +1612.06927 +1612.06931 +1612.06941 Representation Theory +1612.07128 Distributed, Parallel, and Cluster Computing +1612.07521 Dynamical Systems +1612.07715 Instrumentation and Detectors +1612.08984 Phenomenology +1701.01462 Materials Science +1701.02595 Optimization and Control +1701.04579 +1701.04631 Analysis of PDEs +1701.05226 Artificial Intelligence +1701.05428 Adaptation and Self-Organizing Systems +1701.05772 Theory +1701.08076 +1701.08119 Programming Languages +1701.08386 Combinatorics +1701.08818 Information Theory +1701.08937 Algebraic Geometry +1702.00142 Data Structures and Algorithms +1702.00745 Analysis of PDEs +1702.01024 Cryptography and Security +1702.01933 Computer Vision and Pattern Recognition +1702.02093 +1702.02177 Complex Variables +1702.02501 Statistical Mechanics +1702.02599 Group Theory +1702.02746 Emerging Technologies +1702.03096 Logic in Computer Science +1702.03379 Cryptography and Security +1702.03775 Software Engineering +1702.03870 Classical Analysis and ODEs +1702.03872 Social and Information Networks +1702.04439 +1702.04528 Computer Vision and Pattern Recognition +1702.04618 +1702.04765 +1702.05076 Optics +1702.05279 Experiment +1702.05326 Adaptation and Self-Organizing Systems +1702.05350 Algebraic Topology +1702.05373 Computer Vision and Pattern Recognition +1702.05644 +1702.05837 Experiment +1702.05860 Learning +1702.06537 History and Overview +1702.06596 Combinatorics +1702.06943 Learning +1702.07104 Geometric Topology +1702.07215 Phenomenology +1702.07281 Artificial Intelligence +1702.07333 Computer Vision and Pattern Recognition +1702.07375 Networking and Internet Architecture +1702.07410 Computational Physics +1702.07479 Phenomenology +1702.07544 Multiagent Systems +1702.07638 Optimization and Control +1702.07655 Soft Condensed Matter +1702.07795 Statistics Theory +1702.07808 Analysis of PDEs +1702.07920 Robotics +1702.07949 Optics +1702.07956 Learning +1702.07963 Computer Vision and Pattern Recognition +1702.07986 Combinatorics +1702.08030 Optics +1702.08156 Combinatorics +1702.08195 Phenomenology +1702.08335 +1702.08338 Phenomenology +1702.08342 Cryptography and Security +1702.08410 Robotics +1702.08434 Computer Vision and Pattern Recognition +1702.08452 High Energy Astrophysical Phenomena +1702.08516 Computer Vision and Pattern Recognition +1702.08548 Optimization and Control +1702.08549 Optimization and Control +1702.08665 Rings and Algebras +1702.08669 Representation Theory +1702.08670 Learning +1702.08690 Computer Vision and Pattern Recognition +1702.08717 Computer Vision and Pattern Recognition +1702.08719 Cryptography and Security +1702.08720 Machine Learning +1702.08772 Phenomenology +1702.08831 Mesoscale and Nanoscale Physics +1702.08834 Experiment +1702.08837 Differential Geometry +1702.08838 Lattice +1702.08880 Computational Engineering, Finance, and Science +1703.00001 Instrumentation and Methods for Astrophysics +1703.00002 Atomic Physics +1703.00003 Number Theory +1703.00004 Number Theory +1703.00005 Astrophysics of Galaxies +1703.00006 Materials Science +1703.00008 Numerical Analysis +1703.00009 Sound +1703.00010 Cosmology and Nongalactic Astrophysics +1703.00011 Earth and Planetary Astrophysics +1703.00015 Solar and Stellar Astrophysics +1703.00016 Astrophysics of Galaxies +1703.00017 Phenomenology +1703.00018 Theory +1703.00019 Solar and Stellar Astrophysics +1703.00020 Astrophysics of Galaxies +1703.00021 High Energy Astrophysical Phenomena +1703.00022 High Energy Astrophysical Phenomena +1703.00023 High Energy Astrophysical Phenomena +1703.00026 Analysis of PDEs +1703.00027 Group Theory +1703.00028 Cosmology and Nongalactic Astrophysics +1703.00029 +1703.00031 Cryptography and Security +1703.00032 +1703.00033 Mesoscale and Nanoscale Physics +1703.00036 +1703.00037 Instrumentation and Methods for Astrophysics +1703.00038 Dynamical Systems +1703.00039 Machine Learning +1703.00040 Statistical Mechanics +1703.00041 Algebraic Topology +1703.00042 Distributed, Parallel, and Cluster Computing +1703.00043 Computational Complexity +1703.00044 Space Physics +1703.00048 Learning +1703.00050 Graphics +1703.00052 Astrophysics of Galaxies +1703.00054 Phenomenology +1703.00056 Applications +1703.00057 Combinatorics +1703.00058 +1703.00059 Number Theory +1703.00060 Learning +1703.00061 Graphics +1703.00062 Mathematical Finance +1703.00065 Group Theory +1703.00066 Learning +1703.00067 Mesoscale and Nanoscale Physics +1703.00068 High Energy Astrophysical Phenomena +1703.00069 Computer Vision and Pattern Recognition +1703.00070 Computational Physics +1703.00072 Classical Physics +1703.00073 Cryptography and Security +1703.00075 Computer Vision and Pattern Recognition +1703.00076 Analysis of PDEs +1703.00077 Experiment +1703.00078 Atomic and Molecular Clusters +1703.00079 Systems and Control +1703.00081 Analysis of PDEs +1703.00082 Quantum Algebra +1703.00083 Systems and Control +1703.00084 Systems and Control +1703.00085 Fluid Dynamics +1703.00086 Astrophysics of Galaxies +1703.00088 Combinatorics +1703.00089 Computation and Language +1703.00092 Dynamical Systems +1703.00093 Numerical Analysis +1703.00094 Complex Variables +1703.00095 Robotics +1703.00096 Computation and Language +1703.00097 Numerical Analysis +1703.00098 Instrumentation and Methods for Astrophysics +1703.00099 Computation and Language +1703.00100 Exactly Solvable and Integrable Systems +1703.00101 Exactly Solvable and Integrable Systems +1703.00102 Machine Learning +1703.00104 Information Theory +1703.00105 Exactly Solvable and Integrable Systems +1703.00106 Classical Analysis and ODEs +1703.00107 Algebraic Topology +1703.00108 Number Theory +1703.00109 Optics +1703.00110 Mesoscale and Nanoscale Physics +1703.00111 +1703.00112 Computational Geometry +1703.00114 Soft Condensed Matter +1703.00115 Materials Science +1703.00116 +1703.00117 Materials Science +1703.00118 +1703.00119 Learning +1703.00120 Systems and Control +1703.00122 Computer Vision and Pattern Recognition +1703.00124 Group Theory +1703.00125 Populations and Evolution +1703.00126 Materials Science +1703.00127 Materials Science +1703.00128 Numerical Analysis +1703.00129 Optimization and Control +1703.00130 Mesoscale and Nanoscale Physics +1703.00131 Experiment +1703.00132 Software Engineering +1703.00133 Software Engineering +1703.00134 Networking and Internet Architecture +1703.00135 Numerical Analysis +1703.00136 Adaptation and Self-Organizing Systems +1703.00137 Probability +1703.00138 Quantum Gases +1703.00139 Combinatorics +1703.00141 Phenomenology +1703.00142 +1703.00143 Information Theory +1703.00144 Learning +1703.00145 Functional Analysis +1703.00146 Mesoscale and Nanoscale Physics +1703.00147 Information Theory +1703.00148 Mesoscale and Nanoscale Physics +1703.00149 Biological Physics +1703.00150 Quantum Algebra +1703.00151 Optimization and Control +1703.00152 Computer Vision and Pattern Recognition +1703.00153 Phenomenology +1703.00154 Computer Vision and Pattern Recognition +1703.00155 Phenomenology +1703.00156 Numerical Analysis +1703.00157 Strongly Correlated Electrons +1703.00159 Logic in Computer Science +1703.00160 Computer Vision and Pattern Recognition +1703.00161 Superconductivity +1703.00162 Experiment +1703.00163 Optics +1703.00164 Physics Education +1703.00165 Number Theory +1703.00166 +1703.00167 Statistics Theory +1703.00168 Machine Learning +1703.00169 Cosmology and Nongalactic Astrophysics +1703.00170 Networking and Internet Architecture +1703.00171 High Energy Astrophysical Phenomena +1703.00172 Analysis of PDEs +1703.00173 Phenomenology +1703.00174 General Topology +1703.00175 Optics +1703.00176 Spectral Theory +1703.00178 Information Theory +1703.00181 Functional Analysis +1703.00182 Numerical Analysis +1703.00183 Analysis of PDEs +1703.00184 Mesoscale and Nanoscale Physics +1703.00185 Distributed, Parallel, and Cluster Computing +1703.00186 Distributed, Parallel, and Cluster Computing +1703.00187 +1703.00188 Information Theory +1703.00190 Multimedia +1703.00191 Numerical Analysis +1703.00192 Optimization and Control +1703.00193 +1703.00194 Robotics +1703.00195 Formal Languages and Automata Theory +1703.00196 Computer Vision and Pattern Recognition +1703.00197 Group Theory +1703.00198 Software Engineering +1703.00199 Phenomenology +1703.00200 Materials Science +1703.00201 +1703.00205 Optics +1703.00207 Cryptography and Security +1703.00208 Probability +1703.00209 Machine Learning +1703.00211 High Energy Astrophysical Phenomena +1703.00212 Graphics +1703.00213 Theory +1703.00214 Experiment +1703.00215 Phenomenology +1703.00216 Networking and Internet Architecture +1703.00217 Superconductivity +1703.00218 Solar and Stellar Astrophysics +1703.00219 Molecular Networks +1703.00220 Probability +1703.00221 +1703.00223 Neurons and Cognition +1703.00224 Materials Science +1703.00225 Fluid Dynamics +1703.00226 Populations and Evolution +1703.00227 Robotics +1703.00228 Classical Analysis and ODEs +1703.00229 Phenomenology +1703.00230 Algebraic Geometry +1703.00231 Analysis of PDEs +1703.00232 +1703.00233 Chemical Physics +1703.00234 Computer Vision and Pattern Recognition +1703.00235 Numerical Analysis +1703.00237 Logic in Computer Science +1703.00238 Complex Variables +1703.00240 Logic in Computer Science +1703.00241 Materials Science +1703.00243 Analysis of PDEs +1703.00244 Phenomenology +1703.00245 Phenomenology +1703.00246 Phenomenology +1703.00247 Artificial Intelligence +1703.00248 Mesoscale and Nanoscale Physics +1703.00249 Computer Vision and Pattern Recognition +1703.00251 +1703.00252 Analysis of PDEs +1703.00253 Methodology +1703.00254 Number Theory +1703.00255 +1703.00256 Experiment +1703.00257 Materials Science +1703.00258 Instrumentation and Methods for Astrophysics +1703.00259 Mathematical Finance +1703.00260 Optimization and Control +1703.00261 Number Theory +1703.00262 Optimization and Control +1703.00263 Cryptography and Security +1703.00264 Soft Condensed Matter +1703.00265 Mesoscale and Nanoscale Physics +1703.00266 Mesoscale and Nanoscale Physics +1703.00268 Combinatorics +1703.00269 Physics Education +1703.00270 Analysis of PDEs +1703.00271 Quantum Algebra +1703.00273 Combinatorics +1703.00274 +1703.00275 Classical Analysis and ODEs +1703.00276 Solar and Stellar Astrophysics +1703.00278 Theory +1703.00279 Numerical Analysis +1703.00280 Solar and Stellar Astrophysics +1703.00281 Classical Analysis and ODEs +1703.00282 Probability +1703.00283 Complex Variables +1703.00285 Pattern Formation and Solitons +1703.00286 Instrumentation and Methods for Astrophysics +1703.00287 Combinatorics +1703.00288 Materials Science +1703.00290 Symplectic Geometry +1703.00291 Other Computer Science +1703.00294 History and Philosophy of Physics +1703.00295 Analysis of PDEs +1703.00296 Earth and Planetary Astrophysics +1703.00298 Cryptography and Security +1703.00300 General Physics +1703.00301 General Physics +1703.00302 Systems and Control +1703.00303 Functional Analysis +1703.00304 Multimedia +1703.00306 +1703.00308 General Finance +1703.00309 +1703.00313 Astrophysics of Galaxies +1703.00314 Algebraic Topology +1703.00315 Computational Physics +1703.00316 Probability +1703.00317 Computation and Language +1703.00318 Group Theory +1703.00320 Computer Science and Game Theory +1703.00321 Numerical Analysis +1703.00323 Combinatorics +1703.00324 Strongly Correlated Electrons +1703.00325 Numerical Analysis +1703.00326 Optics +1703.00327 Fluid Dynamics +1703.00328 Fluid Dynamics +1703.00329 Machine Learning +1703.00330 Probability +1703.00331 Emerging Technologies +1703.00332 Information Theory +1703.00333 Differential Geometry +1703.00335 Geometric Topology +1703.00336 Geometric Topology +1703.00337 Probability +1703.00338 Rings and Algebras +1703.00339 Classical Analysis and ODEs +1703.00341 Differential Geometry +1703.00342 +1703.00344 +1703.00345 Combinatorics +1703.00347 Optics +1703.00348 Phenomenology +1703.00349 Theory +1703.00350 Physics Education +1703.00351 Theory +1703.00352 Other Statistics +1703.00354 Astrophysics of Galaxies +1703.00355 Statistical Mechanics +1703.00356 Computer Vision and Pattern Recognition +1703.00360 Materials Science +1703.00362 Classical Analysis and ODEs +1703.00365 Statistical Mechanics +1703.00366 Cryptography and Security +1703.00367 Strongly Correlated Electrons +1703.00369 Cryptography and Security +1703.00370 Phenomenology +1703.00372 Discrete Mathematics +1703.00373 +1703.00374 Distributed, Parallel, and Cluster Computing +1703.00375 Distributed, Parallel, and Cluster Computing +1703.00376 Combinatorics +1703.00377 Learning +1703.00378 Representation Theory +1703.00379 Mesoscale and Nanoscale Physics +1703.00380 Learning +1703.00381 Learning +1703.00383 Multimedia +1703.00384 Sound +1703.00385 Solar and Stellar Astrophysics +1703.00387 Quantum Gases +1703.00388 Chemical Physics +1703.00389 Populations and Evolution +1703.00390 Robotics +1703.00392 Lattice +1703.00395 Machine Learning +1703.00396 Applications +1703.00397 Information Retrieval +1703.00398 Applications +1703.00399 Networking and Internet Architecture +1703.00400 Astrophysics of Galaxies +1703.00403 Machine Learning +1703.00404 +1703.00405 Optimization and Control +1703.00406 Combinatorics +1703.00407 Geometric Topology +1703.00409 Physics and Society +1703.00411 Symplectic Geometry +1703.00412 Optimization and Control +1703.00413 Chaotic Dynamics +1703.00414 Combinatorics +1703.00415 Instrumentation and Methods for Astrophysics +1703.00416 Classical Analysis and ODEs +1703.00417 Theory +1703.00418 +1703.00419 Dynamical Systems +1703.00421 Theory +1703.00422 Analysis of PDEs +1703.00423 Complex Variables +1703.00424 High Energy Astrophysical Phenomena +1703.00425 Classical Analysis and ODEs +1703.00426 Artificial Intelligence +1703.00428 Networking and Internet Architecture +1703.00429 +1703.00431 Theory +1703.00432 Solar and Stellar Astrophysics +1703.00433 +1703.00434 Fluid Dynamics +1703.00436 Numerical Analysis +1703.00440 Learning +1703.00441 Learning +1703.00442 Commutative Algebra +1703.00443 Learning +0708.1441 +0809.3468 Medical Physics +0903.4012 Physics and Society +0907.3636 +1004.2570 Materials Science +1011.0435 Solar and Stellar Astrophysics +1101.0792 Logic +1104.2497 Cosmology and Nongalactic Astrophysics +1108.4918 Atmospheric and Oceanic Physics +1109.1121 Cosmology and Nongalactic Astrophysics +1109.4536 Cosmology and Nongalactic Astrophysics +1111.2065 Solar and Stellar Astrophysics +1111.2274 Solar and Stellar Astrophysics +1203.2777 Cosmology and Nongalactic Astrophysics +1203.4581 General Topology +1205.1974 +1207.5477 +1210.1018 Group Theory +1211.2141 Solar and Stellar Astrophysics +1211.7246 Atomic Physics +1301.5651 Solar and Stellar Astrophysics +1302.3938 Cosmology and Nongalactic Astrophysics +1303.1921 Commutative Algebra +1303.2125 Cosmology and Nongalactic Astrophysics +1303.2548 +1303.5556 Cosmology and Nongalactic Astrophysics +1303.7284 Atmospheric and Oceanic Physics +1305.4496 Atmospheric and Oceanic Physics +1305.4741 Spectral Theory +1306.1507 Cosmology and Nongalactic Astrophysics +1306.5848 Number Theory +1306.6468 Cosmology and Nongalactic Astrophysics +1307.6519 Solar and Stellar Astrophysics +1307.8062 Cosmology and Nongalactic Astrophysics +1308.1823 Number Theory +1308.4663 Cosmology and Nongalactic Astrophysics +1308.4798 Theory +1308.5645 Geophysics +1309.6636 Cosmology and Nongalactic Astrophysics +1311.1237 Computational Physics +1311.7432 High Energy Astrophysical Phenomena +1312.1242 Cosmology and Nongalactic Astrophysics +1401.2075 Cosmology and Nongalactic Astrophysics +1401.5890 Phenomenology +1402.0065 Number Theory +1402.0660 +1402.1726 Data Structures and Algorithms +1403.1040 Probability +1403.5848 K-Theory and Homology +1404.0102 Phenomenology +1405.0004 Solar and Stellar Astrophysics +1406.1076 Differential Geometry +1406.1080 Differential Geometry +1406.5836 Differential Geometry +1407.4630 Representation Theory +1407.6468 Astrophysics of Galaxies +1408.2265 +1409.2608 Astrophysics of Galaxies +1409.5119 +1410.2308 Operator Algebras +1410.3359 Combinatorics +1410.3381 Symplectic Geometry +1410.4192 Earth and Planetary Astrophysics +1411.0636 Solar and Stellar Astrophysics +1411.2543 Symplectic Geometry +1412.3819 Astrophysics of Galaxies +1412.3851 Cosmology and Nongalactic Astrophysics +1412.7076 Probability +1501.00554 +1502.01532 Optics +1502.02474 Robotics +1502.04398 Probability +1502.07893 +1503.03667 Number Theory +1503.06132 Number Theory +1503.06542 Differential Geometry +1504.00852 Number Theory +1504.03973 +1504.07277 Algebraic Topology +1504.07494 Information Theory +1504.07654 Statistical Mechanics +1505.01775 Algebraic Geometry +1505.03059 +1505.04222 Representation Theory +1505.05416 Classical Analysis and ODEs +1505.06779 Materials Science +1506.01050 Number Theory +1506.01262 Materials Science +1506.03529 Algebraic Geometry +1506.05097 Earth and Planetary Astrophysics +1506.06220 +1506.07129 Differential Geometry +1506.08684 Phenomenology +1506.08818 Earth and Planetary Astrophysics +1506.09070 History and Philosophy of Physics +1506.09174 Computer Vision and Pattern Recognition +1507.00569 Number Theory +1507.03204 Soft Condensed Matter +1507.05594 Analysis of PDEs +1507.05714 Soft Condensed Matter +1507.07532 Phenomenology +1507.07910 Probability +1507.08693 Mesoscale and Nanoscale Physics +1508.01604 Mesoscale and Nanoscale Physics +1508.02105 Materials Science +1508.05550 Learning +1509.00213 Lattice +1509.03245 Group Theory +1509.03256 Theory +1509.04167 Probability +1509.07456 +1509.08204 Cosmology and Nongalactic Astrophysics +1509.08347 Differential Geometry +1509.09318 +1510.00002 Medical Physics +1510.00397 Astrophysics of Galaxies +1510.01822 Astrophysics of Galaxies +1510.03197 High Energy Astrophysical Phenomena +1510.04838 Dynamical Systems +1510.05232 +1510.05233 Strongly Correlated Electrons +1510.05836 +1510.05870 Earth and Planetary Astrophysics +1510.07017 Combinatorics +1510.07190 Combinatorics +1510.07538 Analysis of PDEs +1511.04282 Probability +1511.04621 Methodology +1511.04943 +1511.06123 Exactly Solvable and Integrable Systems +1511.06852 Physics and Society +1511.07503 Plasma Physics +1511.07546 Theory +1511.08407 Computation and Language +1511.08616 +1511.08736 Cosmology and Nongalactic Astrophysics +1511.08841 Computational Complexity +1512.00223 +1512.02564 Analysis of PDEs +1512.03297 Number Theory +1512.03736 +1512.06351 Materials Science +1512.07164 Mesoscale and Nanoscale Physics +1512.08560 Methodology +1512.08623 +1601.00172 Systems and Control +1601.00509 +1601.00590 Group Theory +1601.00822 Physics and Society +1601.00892 Differential Geometry +1601.02280 Numerical Analysis +1601.02696 +1601.03126 Strongly Correlated Electrons +1601.03449 Physics and Society +1601.04188 Statistical Finance +1601.04261 Statistical Mechanics +1601.04598 Pattern Formation and Solitons +1601.04887 Phenomenology +1601.05039 Analysis of PDEs +1601.05378 Theory +1601.05812 Mesoscale and Nanoscale Physics +1601.06007 Instrumentation and Detectors +1601.06659 Physics Education +1601.06663 Atomic Physics +1601.06695 Quantum Gases +1601.06803 Theory +1601.06842 Mesoscale and Nanoscale Physics +1601.06889 Chemical Physics +1601.07164 Probability +1601.07634 +1601.07817 +1602.00049 Optics +1602.00862 +1602.01032 Atomic Physics +1602.02646 Numerical Analysis +1602.02777 Mesoscale and Nanoscale Physics +1602.02903 +1602.03326 +1602.03347 +1602.03912 Superconductivity +1602.04090 General Physics +1602.04694 Classical Analysis and ODEs +1602.05097 Logic +1602.05105 Fluid Dynamics +1602.05382 +1602.05466 Mesoscale and Nanoscale Physics +1602.05882 High Energy Astrophysical Phenomena +1602.05929 Analysis of PDEs +1602.06282 Algebraic Geometry +1602.06326 Computational Physics +1602.06815 Mesoscale and Nanoscale Physics +1602.06861 Exactly Solvable and Integrable Systems +1602.07321 Analysis of PDEs +1602.07875 +1602.07930 Superconductivity +1602.08244 +1602.08302 Phenomenology +1602.08645 +1602.08776 Statistical Mechanics +1602.08816 Phenomenology +1602.08941 Superconductivity +1602.08990 Strongly Correlated Electrons +1603.00146 Computer Vision and Pattern Recognition +1603.00599 Computational Physics +1603.00821 Earth and Planetary Astrophysics +1603.01174 Theory +1603.01253 +1603.01259 Theory +1603.01554 Numerical Analysis +1603.01738 Theory +1603.01759 Instrumentation and Detectors +1603.01844 Chaotic Dynamics +1603.02033 Theory +1603.02109 Superconductivity +1603.02315 Phenomenology +1603.02417 +1603.02523 Quantum Gases +1603.02700 +1603.02860 Theory +1603.03624 Systems and Control +1603.03891 Probability +1603.03997 +1603.04014 +1603.04381 Machine Learning +1603.04736 Astrophysics of Galaxies +1603.04820 Instrumentation and Detectors +1603.05579 Numerical Analysis +1603.05706 Dynamical Systems +1603.05823 Information Theory +1603.05834 Theory +1603.06106 Differential Geometry +1603.06334 Instrumentation and Detectors +1603.06429 +1603.06535 Soft Condensed Matter +1603.06543 Earth and Planetary Astrophysics +1603.06965 Materials Science +1603.07263 Phenomenology +1603.07293 Probability +1603.07495 Theory +1603.07638 Instrumentation and Detectors +1603.07640 +1603.07669 Instrumentation and Detectors +1603.07852 Solar and Stellar Astrophysics +1603.08043 Pattern Formation and Solitons +1603.08118 Analysis of PDEs +1603.08196 +1603.08760 Instrumentation and Detectors +1603.08765 Instrumentation and Detectors +1603.08940 Instrumentation and Methods for Astrophysics +1603.09047 Probability +1603.09147 Instrumentation and Detectors +1603.09324 Probability +1603.09410 Optics +1603.09690 Dynamical Systems +1604.00883 Analysis of PDEs +1604.01011 Optics +1604.01012 +1604.01337 +1604.01921 Instrumentation and Detectors +1604.01965 Symplectic Geometry +1604.02012 +1604.02548 +1604.02564 Optics +1604.02640 Fluid Dynamics +1604.02662 +1604.02842 Analysis of PDEs +1604.02957 Instrumentation and Detectors +1604.04097 Analysis of PDEs +1604.04121 Algebraic Geometry +1604.04231 +1604.04349 Phenomenology +1604.04717 Mesoscale and Nanoscale Physics +1604.04790 Statistical Mechanics +1604.04837 +1604.05045 Instrumentation and Detectors +1604.05335 Phenomenology +1604.05900 Quantum Gases +1604.05968 General Physics +1604.06109 Strongly Correlated Electrons +1604.06151 Information Theory +1604.06268 +1604.06269 General Physics +1604.06296 Strongly Correlated Electrons +1604.06298 Fluid Dynamics +1604.06536 Soft Condensed Matter +1604.06559 Differential Geometry +1604.06596 +1604.06754 Soft Condensed Matter +1604.06861 Analysis of PDEs +1604.06863 Materials Science +1604.06965 Optics +1604.07154 Mesoscale and Nanoscale Physics +1604.07413 Astrophysics of Galaxies +1604.07636 +1604.07730 Experiment +1604.07765 Theory +1604.07854 Phenomenology +1604.07951 +1604.08198 Superconductivity +1604.08213 Phenomenology +1604.08266 +1604.08301 High Energy Astrophysical Phenomena +1604.08316 +1604.08324 Pattern Formation and Solitons +1604.08361 Differential Geometry +1604.08573 +1604.08605 Materials Science +1604.08791 High Energy Astrophysical Phenomena +1604.08902 Plasma Physics +1604.08934 Machine Learning +1605.00100 Experiment +1605.00463 Instrumentation and Detectors +1605.00771 Phenomenology +1605.01036 Numerical Analysis +1605.01227 Combinatorics +1605.01244 Numerical Analysis +1605.01268 +1605.01447 Differential Geometry +1605.01590 +1605.01633 Theory +1605.01978 Combinatorics +1605.02247 Materials Science +1605.02300 Mesoscale and Nanoscale Physics +1605.02408 Optimization and Control +1605.02890 Experiment +1605.03023 +1605.03028 Optics +1605.03121 +1605.03155 Analysis of PDEs +1605.03163 Optics +1605.03180 Astrophysics of Galaxies +1605.03521 Theory +1605.03699 +1605.03749 Combinatorics +1605.03858 Differential Geometry +1605.03899 Optics +1605.03983 Instrumentation and Detectors +1605.04157 Optics +1605.04185 Phenomenology +1605.04551 K-Theory and Homology +1605.04577 +1605.04668 Theory +1605.04913 Astrophysics of Galaxies +1605.05025 Social and Information Networks +1605.05080 Exactly Solvable and Integrable Systems +1605.05381 +1605.05597 Theory +1605.05695 Probability +1605.05727 Solar and Stellar Astrophysics +1605.05829 Computer Vision and Pattern Recognition +1605.05907 +1605.05920 Phenomenology +1605.06011 +1605.06080 Theory +1605.06111 Theory +1605.06493 Dynamical Systems +1605.07035 +1605.07079 Learning +1605.07080 Superconductivity +1605.07131 +1605.07324 Mesoscale and Nanoscale Physics +1605.07823 Numerical Analysis +1605.08073 Fluid Dynamics +1605.08212 Atomic Physics +1605.08337 Theory +1605.08377 Medical Physics +1605.09156 Theory +1605.09367 High Energy Astrophysical Phenomena +1605.09614 Probability +1605.09767 Pattern Formation and Solitons +1606.00035 Earth and Planetary Astrophysics +1606.00206 Cosmology and Nongalactic Astrophysics +1606.00213 Soft Condensed Matter +1606.00317 Optics +1606.00557 Phenomenology +1606.00571 Instrumentation and Detectors +1606.00987 +1606.01124 Strongly Correlated Electrons +1606.01217 Experiment +1606.01420 Dynamical Systems +1606.01578 +1606.01723 Analysis of PDEs +1606.01901 Theory +1606.02013 +1606.02325 High Energy Astrophysical Phenomena +1606.02392 Chemical Physics +1606.02540 Fluid Dynamics +1606.02569 Fluid Dynamics +1606.02832 Numerical Analysis +1606.02846 Instrumentation and Detectors +1606.02957 Data Analysis, Statistics and Probability +1606.03061 Optics +1606.03208 Phenomenology +1606.03288 High Energy Astrophysical Phenomena +1606.03319 Mesoscale and Nanoscale Physics +1606.03347 Social and Information Networks +1606.03533 Instrumentation and Methods for Astrophysics +1606.03744 Exactly Solvable and Integrable Systems +1606.03870 Materials Science +1606.04047 Earth and Planetary Astrophysics +1606.04077 Classical Physics +1606.04354 Quantitative Methods +1606.04437 Accelerator Physics +1606.04441 Number Theory +1606.04543 Phenomenology +1606.04632 Experiment +1606.04710 Lattice +1606.04738 +1606.04878 Combinatorics +1606.05061 +1606.05075 Analysis of PDEs +1606.05104 Materials Science +1606.05109 +1606.05447 Statistical Mechanics +1606.05508 +1606.05569 +1606.05664 Learning +1606.05734 Earth and Planetary Astrophysics +1606.05737 Statistical Mechanics +1606.05827 Soft Condensed Matter +1606.05838 Optics +1606.05930 Cosmology and Nongalactic Astrophysics +1606.06134 Phenomenology +1606.06351 Computation +1606.06528 Phenomenology +1606.06608 Disordered Systems and Neural Networks +1606.06651 Mesoscale and Nanoscale Physics +1606.06720 Mathematical Finance +1606.06798 Numerical Analysis +1606.06808 Databases +1606.06974 Logic in Computer Science +1606.07107 Quantum Gases +1606.07473 Instrumentation and Methods for Astrophysics +1606.07501 Phenomenology +1606.07697 Strongly Correlated Electrons +1606.07865 +1606.07882 +1606.08086 +1606.08087 Data Structures and Algorithms +1606.08113 +1606.08168 Experiment +1606.08291 Applications +1606.08318 Other Condensed Matter +1606.08358 Quantum Gases +1606.08421 +1606.08433 Physics and Society +1606.08439 Quantum Gases +1606.08552 Quantum Algebra +1606.08747 Instrumentation and Detectors +1606.08822 +1606.08946 +1606.08975 Mesoscale and Nanoscale Physics +1606.09317 Phenomenology +1607.00100 +1607.00190 +1607.00219 Instrumentation and Detectors +1607.00282 Phenomenology +1607.00334 +1607.00338 Phenomenology +1607.00357 Tissues and Organs +1607.00583 Mesoscale and Nanoscale Physics +1607.00650 Phenomenology +1607.00671 Quantum Gases +1607.00864 Statistics Theory +1607.00908 Soft Condensed Matter +1607.01255 +1607.01475 Numerical Analysis +1607.01494 Materials Science +1607.01529 Atmospheric and Oceanic Physics +1607.01714 +1607.02043 High Energy Astrophysical Phenomena +1607.02056 Cosmology and Nongalactic Astrophysics +1607.02063 Mesoscale and Nanoscale Physics +1607.02324 Instrumentation and Detectors +1607.02427 Computational Physics +1607.02451 Fluid Dynamics +1607.02489 Numerical Analysis +1607.02610 Theory +1607.02724 Plasma Physics +1607.02872 Strongly Correlated Electrons +1607.02908 Quantum Gases +1607.02976 Atmospheric and Oceanic Physics +1607.03030 Phenomenology +1607.03103 Atomic Physics +1607.03231 Strongly Correlated Electrons +1607.03235 +1607.03319 History and Philosophy of Physics +1607.03329 +1607.03368 Cosmology and Nongalactic Astrophysics +1607.03412 Instrumentation and Methods for Astrophysics +1607.03437 Differential Geometry +1607.03461 Theory +1607.03480 +1607.03499 Algebraic Geometry +1607.03530 Optics +1607.03621 Chemical Physics +1607.03673 Astrophysics of Galaxies +1607.03724 +1607.03770 +1607.03826 General Topology +1607.03930 Statistical Mechanics +1607.04051 Mesoscale and Nanoscale Physics +1607.04065 Mesoscale and Nanoscale Physics +1607.04141 Data Analysis, Statistics and Probability +1607.04221 Soft Condensed Matter +1607.04281 Theory +1607.04384 Statistics Theory +1607.04536 +1607.04615 Materials Science +1607.04632 Physics and Society +1607.04805 Learning +1607.05235 Trading and Market Microstructure +1607.05259 +1607.05317 +1607.05380 Applications +1607.05665 Biological Physics +1607.05796 Exactly Solvable and Integrable Systems +1607.05862 Phenomenology +1607.05989 Spectral Theory +1607.06070 Functional Analysis +1607.06233 Functional Analysis +1607.06269 Distributed, Parallel, and Cluster Computing +1607.06327 Phenomenology +1607.06440 Phenomenology +1607.06499 Phenomenology +1607.06518 Solar and Stellar Astrophysics +1607.06661 General Mathematics +1607.06664 +1607.06814 Theory +1607.06831 +1607.06969 Soft Condensed Matter +1607.07044 Analysis of PDEs +1607.07133 +1607.07191 Optics +1607.07210 +1607.07225 Strongly Correlated Electrons +1607.07230 Accelerator Physics +1607.07379 Physics and Society +1607.07420 High Energy Astrophysical Phenomena +1607.07439 Theory +1607.07520 Strongly Correlated Electrons +1607.07912 Theory +1607.07996 +1607.08048 Fluid Dynamics +1607.08077 Computational Complexity +1607.08234 +1607.08249 Theory +1607.08296 Theory +1607.08520 Phenomenology +1607.08556 Probability +1607.08699 +1607.08763 Fluid Dynamics +1607.08785 Computational Physics +1607.08812 Physics and Society +1607.08836 Computational Physics +1607.08853 Computational Engineering, Finance, and Science +1607.08881 Theory +1608.00140 Mesoscale and Nanoscale Physics +1608.00303 Fluid Dynamics +1608.00369 High Energy Astrophysical Phenomena +1608.00569 Instrumentation and Detectors +1608.00595 Theory +1608.00599 +1608.00638 Phenomenology +1608.00683 Mesoscale and Nanoscale Physics +1608.00748 Analysis of PDEs +1608.00775 Computer Vision and Pattern Recognition +1608.00824 Mesoscale and Nanoscale Physics +1608.00915 Phenomenology +1608.01126 Instrumentation and Detectors +1608.01188 Mesoscale and Nanoscale Physics +1608.01192 +1608.01195 Phenomenology +1608.01217 Phenomenology +1608.01231 Phenomenology +1608.01265 Disordered Systems and Neural Networks +1608.01312 Phenomenology +1608.01322 Statistical Mechanics +1608.01451 Fluid Dynamics +1608.01479 Atomic Physics +1608.01579 +1608.01722 Commutative Algebra +1608.01740 Superconductivity +1608.01917 Analysis of PDEs +1608.01999 Phenomenology +1608.02098 Mesoscale and Nanoscale Physics +1608.02129 Mesoscale and Nanoscale Physics +1608.02131 Statistical Mechanics +1608.02248 Mesoscale and Nanoscale Physics +1608.02268 +1608.02378 Analysis of PDEs +1608.02405 Materials Science +1608.02409 Instrumentation and Detectors +1608.02416 Plasma Physics +1608.02453 Strongly Correlated Electrons +1608.02501 +1608.02556 Phenomenology +1608.02672 General Physics +1608.02798 Mesoscale and Nanoscale Physics +1608.02799 Optics +1608.02819 Phenomenology +1608.02840 Analysis of PDEs +1608.03031 Cosmology and Nongalactic Astrophysics +1608.03130 Atomic Physics +1608.03153 Medical Physics +1608.03155 Quantum Algebra +1608.03158 Instrumentation and Detectors +1608.03194 Plasma Physics +1608.03365 +1608.03375 High Energy Astrophysical Phenomena +1608.03449 Biological Physics +1608.03485 +1608.03659 Numerical Analysis +1608.03705 Phenomenology +1608.03835 Strongly Correlated Electrons +1608.03854 Quantum Gases +1608.03921 Instrumentation and Methods for Astrophysics +1608.04007 Cosmology and Nongalactic Astrophysics +1608.04052 Statistical Mechanics +1608.04172 Materials Science +1608.04234 Fluid Dynamics +1608.04635 Geometric Topology +1608.04699 +1608.04713 +1608.04730 Theory +1608.04772 Applications +1608.04785 Phenomenology +1608.04817 Phenomenology +1608.04831 Quantum Gases +1608.04874 Fluid Dynamics +1608.04931 Strongly Correlated Electrons +1608.05009 +1608.05036 Theory +1608.05079 Cosmology and Nongalactic Astrophysics +1608.05126 Theory +1608.05201 Phenomenology +1608.05213 +1608.05268 +1608.05284 Astrophysics of Galaxies +1608.05366 +1608.05471 +1608.05693 Phenomenology +1608.05767 Materials Science +1608.05805 Materials Science +1608.06214 Statistical Mechanics +1608.06282 Theory +1608.06284 Theory +1608.06311 Mesoscale and Nanoscale Physics +1608.06402 Theory +1608.06442 Probability +1608.06508 Cosmology and Nongalactic Astrophysics +1608.06624 Theory +1608.06658 +1608.06816 Pattern Formation and Solitons +1608.06821 Materials Science +1608.06947 High Energy Astrophysical Phenomena +1608.06955 Earth and Planetary Astrophysics +1608.07185 +1608.07188 Information Theory +1608.07191 Phenomenology +1608.07216 Materials Science +1608.07274 Phenomenology +1608.07603 Atomic Physics +1608.07606 Instrumentation and Methods for Astrophysics +1608.07660 Optics +1608.07675 High Energy Astrophysical Phenomena +1608.07736 Analysis of PDEs +1608.07777 Phenomenology +1608.07790 Adaptation and Self-Organizing Systems +1608.07943 Statistical Mechanics +1608.08068 Medical Physics +1608.08081 Strongly Correlated Electrons +1608.08119 Theory +1608.08166 Populations and Evolution +1608.08174 Quantitative Methods +1608.08222 Astrophysics of Galaxies +1608.08312 +1608.08333 Statistical Mechanics +1608.08405 +1608.08408 Dynamical Systems +1608.08448 Theory +1608.08507 Statistical Mechanics +1608.08569 Instrumentation and Detectors +1608.08651 Disordered Systems and Neural Networks +1608.08681 Instrumentation and Detectors +1608.08739 Solar and Stellar Astrophysics +1608.08939 High Energy Astrophysical Phenomena +1608.08949 Differential Geometry +1608.08980 Mesoscale and Nanoscale Physics +1609.00041 Mesoscale and Nanoscale Physics +1609.00079 +1609.00094 Physics and Society +1609.00098 High Energy Astrophysical Phenomena +1609.00113 Phenomenology +1609.00124 Lattice +1609.00208 Phenomenology +1609.00365 Systems and Control +1609.00418 +1609.00459 Theory +1609.00587 Probability +1609.00708 Theory +1609.00991 Theory +1609.01089 Rings and Algebras +1609.01135 Experiment +1609.01222 Dynamical Systems +1609.01225 Operator Algebras +1609.01653 Astrophysics of Galaxies +1609.01654 Instrumentation and Methods for Astrophysics +1609.01696 +1609.01801 +1609.01814 Plasma Physics +1609.01861 Materials Science +1609.01941 Strongly Correlated Electrons +1609.02033 Instrumentation and Detectors +1609.02266 High Energy Astrophysical Phenomena +1609.02289 Phenomenology +1609.02317 Statistical Mechanics +1609.02336 High Energy Astrophysical Phenomena +1609.02361 Phenomenology +1609.02395 Trading and Market Microstructure +1609.02536 Phenomenology +1609.02572 Phenomenology +1609.02628 +1609.02751 +1609.02760 Earth and Planetary Astrophysics +1609.02889 Theory +1609.03033 Differential Geometry +1609.03055 Differential Geometry +1609.03126 Learning +1609.03268 +1609.03282 Fluid Dynamics +1609.03368 Optics +1609.03391 Exactly Solvable and Integrable Systems +1609.03450 Phenomenology +1609.03451 +1609.03454 Mesoscale and Nanoscale Physics +1609.03715 Phenomenology +1609.03770 Materials Science +1609.03793 Analysis of PDEs +1609.03851 Numerical Analysis +1609.03861 Analysis of PDEs +1609.03873 Lattice +1609.04000 Mesoscale and Nanoscale Physics +1609.04021 Astrophysics of Galaxies +1609.04137 Statistical Mechanics +1609.04181 +1609.04236 Phenomenology +1609.04311 Statistical Mechanics +1609.04358 +1609.04359 Astrophysics of Galaxies +1609.04369 Phenomenology +1609.04389 Earth and Planetary Astrophysics +1609.04446 Classical Physics +1609.04459 +1609.04474 High Energy Astrophysical Phenomena +1609.04509 Astrophysics of Galaxies +1609.04647 Soft Condensed Matter +1609.04655 Theory +1609.04827 +1609.04867 Atomic Physics +1609.04868 Phenomenology +1609.04872 Materials Science +1609.04877 Phenomenology +1609.05138 +1609.05163 +1609.05175 Instrumentation and Methods for Astrophysics +1609.05192 High Energy Astrophysical Phenomena +1609.05209 Phenomenology +1609.05217 Strongly Correlated Electrons +1609.05223 Emerging Technologies +1609.05297 Materials Science +1609.05333 Soft Condensed Matter +1609.05424 +1609.05751 +1609.05760 Pattern Formation and Solitons +1609.05834 Computer Vision and Pattern Recognition +1609.05837 Phenomenology +1609.05862 +1609.05883 Phenomenology +1609.05905 Theory +1609.06038 Computation and Language +1609.06089 Phenomenology +1609.06093 +1609.06106 Experiment +1609.06186 Superconductivity +1609.06200 Soft Condensed Matter +1609.06312 Phenomenology +1609.06359 Physics and Society +1609.06365 +1609.06413 Materials Science +1609.06502 Phenomenology +1609.06525 Atomic Physics +1609.06543 Mesoscale and Nanoscale Physics +1609.06592 Phenomenology +1609.06648 Mesoscale and Nanoscale Physics +1609.06684 Atomic Physics +1609.06709 Mesoscale and Nanoscale Physics +1609.06755 Fluid Dynamics +1609.06834 Phenomenology +1609.06855 Soft Condensed Matter +1609.06889 +1609.06900 Experiment +1609.06985 Statistical Mechanics +1609.07025 Optics +1609.07067 Superconductivity +1609.07109 +1609.07137 High Energy Astrophysical Phenomena +1609.07257 Learning +1609.07624 Mesoscale and Nanoscale Physics +1609.07661 Phenomenology +1609.07687 Numerical Analysis +1609.07721 Artificial Intelligence +1609.07726 Superconductivity +1609.07733 Phenomenology +1609.07735 Chemical Physics +1609.07904 +1609.07973 Mesoscale and Nanoscale Physics +1609.07974 Representation Theory +1609.08034 Theory +1609.08116 Multiagent Systems +1609.08206 Strongly Correlated Electrons +1609.08236 +1609.08309 Experiment +1609.08332 Optics +1609.08436 Computer Vision and Pattern Recognition +1609.08514 Experiment +1609.08623 Phenomenology +1609.08790 Optics +1609.08841 Theory +1609.08847 Phenomenology +1609.08932 Atomic and Molecular Clusters +1609.08981 Plasma Physics +1609.09055 Phenomenology +1609.09075 Earth and Planetary Astrophysics +1609.09276 Chaotic Dynamics +1609.09290 Solar and Stellar Astrophysics +1609.09345 Biological Physics +1609.09361 High Energy Astrophysical Phenomena +1609.09371 +1609.09424 Phenomenology +1609.09490 High Energy Astrophysical Phenomena +1609.09496 +1609.09513 Phenomenology +1609.09535 Materials Science +1609.09606 Mesoscale and Nanoscale Physics +1609.09627 Optics +1609.09690 Mesoscale and Nanoscale Physics +1609.09719 Phenomenology +1609.09794 Mesoscale and Nanoscale Physics +1609.09858 +1609.09865 Instrumentation and Detectors +1610.00091 Phenomenology +1610.00100 Atomic Physics +1610.00197 Fluid Dynamics +1610.00221 +1610.00314 Mesoscale and Nanoscale Physics +1610.00335 Atomic and Molecular Clusters +1610.00400 +1610.00475 Theory +1610.00589 +1610.00591 +1610.00727 Theory +1610.00785 Theory +1610.00882 +1610.01002 Physics and Society +1610.01012 Physics and Society +1610.01017 +1610.01020 Phenomenology +1610.01102 Phenomenology +1610.01109 Superconductivity +1610.01160 Cosmology and Nongalactic Astrophysics +1610.01161 Theory +1610.01231 Experiment +1610.01241 +1610.01299 Classical Analysis and ODEs +1610.01604 Chemical Physics +1610.01634 Materials Science +1610.01821 +1610.02031 Phenomenology +1610.02074 Theory +1610.02182 Optics +1610.02221 Analysis of PDEs +1610.02233 Cosmology and Nongalactic Astrophysics +1610.02239 Mesoscale and Nanoscale Physics +1610.02262 +1610.02296 Physics Education +1610.02346 +1610.02405 Astrophysics of Galaxies +1610.02412 Numerical Analysis +1610.02422 Theory +1610.02433 Physics and Society +1610.02456 Mathematical Finance +1610.02495 Statistical Mechanics +1610.02499 Theory +1610.02536 Optics +1610.02550 Materials Science +1610.02613 Strongly Correlated Electrons +1610.02618 Phenomenology +1610.02663 +1610.02761 +1610.02804 +1610.02868 +1610.03038 Phenomenology +1610.03067 Earth and Planetary Astrophysics +1610.03302 +1610.03318 Materials Science +1610.03391 Mesoscale and Nanoscale Physics +1610.03516 Strongly Correlated Electrons +1610.03526 Phenomenology +1610.03636 Mesoscale and Nanoscale Physics +1610.03739 Plasma Physics +1610.03756 Materials Science +1610.04054 Fluid Dynamics +1610.04111 +1610.04157 Superconductivity +1610.04209 Phenomenology +1610.04266 Algebraic Geometry +1610.04288 Accelerator Physics +1610.04455 Materials Science +1610.04520 Optics +1610.04528 Phenomenology +1610.04548 Mesoscale and Nanoscale Physics +1610.04553 Optics +1610.04595 Physics and Society +1610.04617 Astrophysics of Galaxies +1610.04618 Theory +1610.04646 Dynamical Systems +1610.04921 Chemical Physics +1610.04982 Networking and Internet Architecture +1610.05012 Phenomenology +1610.05198 +1610.05432 Robotics +1610.05497 Phenomenology +1610.05538 Exactly Solvable and Integrable Systems +1610.05545 Lattice +1610.05563 Social and Information Networks +1610.05591 +1610.05780 Statistical Mechanics +1610.05787 Soft Condensed Matter +1610.05886 Theory +1610.05899 Fluid Dynamics +1610.05916 Soft Condensed Matter +1610.05917 Phenomenology +1610.05972 Solar and Stellar Astrophysics +1610.06083 Instrumentation and Detectors +1610.06219 +1610.06314 Accelerator Physics +1610.06375 Astrophysics of Galaxies +1610.06452 Optics +1610.06522 Solar and Stellar Astrophysics +1610.06543 Phenomenology +1610.06557 Mesoscale and Nanoscale Physics +1610.06582 Phenomenology +1610.06779 Experiment +1610.06820 Analysis of PDEs +1610.06828 Optics +1610.06919 Cosmology and Nongalactic Astrophysics +1610.06930 Strongly Correlated Electrons +1610.06938 Theory +1610.06954 +1610.06966 Statistical Mechanics +1610.07128 +1610.07179 Theory +1610.07243 Phenomenology +1610.07290 Materials Science +1610.07314 Phenomenology +1610.07354 Phenomenology +1610.07367 Theory +1610.07423 +1610.07433 Statistical Mechanics +1610.07437 +1610.07461 +1610.07568 +1610.07612 Theory +1610.07678 Soft Condensed Matter +1610.07962 Phenomenology +1610.07980 Theory +1610.07993 Theory +1610.08038 Superconductivity +1610.08101 +1610.08166 Machine Learning +1610.08187 Atmospheric and Oceanic Physics +1610.08207 +1610.08211 Exactly Solvable and Integrable Systems +1610.08297 Cosmology and Nongalactic Astrophysics +1610.08348 Analysis of PDEs +1610.08361 Classical Physics +1610.08383 Strongly Correlated Electrons +1610.08426 Materials Science +1610.08433 Theory +1610.08475 Cryptography and Security +1610.08510 Theory +1610.08522 Theory +1610.08531 Phenomenology +1610.08539 Exactly Solvable and Integrable Systems +1610.08571 Earth and Planetary Astrophysics +1610.08586 High Energy Astrophysical Phenomena +1610.08598 Quantum Gases +1610.08613 Learning +1610.08834 Soft Condensed Matter +1610.08836 Theory +1610.08912 Statistical Mechanics +1610.08918 General Finance +1610.08987 Theory +1610.09062 Analysis of PDEs +1610.09090 Phenomenology +1610.09167 Atomic Physics +1610.09174 Astrophysics of Galaxies +1610.09180 Theory +1610.09286 Soft Condensed Matter +1610.09290 Cosmology and Nongalactic Astrophysics +1610.09362 Phenomenology +1610.09375 Earth and Planetary Astrophysics +1610.09385 Astrophysics of Galaxies +1610.09481 Statistical Mechanics +1610.09529 +1610.09544 Representation Theory +1610.09557 Plasma Physics +1610.09670 Earth and Planetary Astrophysics +1610.09689 Plasma Physics +1610.09713 +1610.09814 Phenomenology +1610.09818 Phenomenology +1610.09852 Cosmology and Nongalactic Astrophysics +1610.09858 +1610.09954 Optics +1610.09956 Atomic Physics +1610.09972 Numerical Analysis +1610.10084 Phenomenology +1611.00011 Mesoscale and Nanoscale Physics +1611.00026 Theory +1611.00046 Plasma Physics +1611.00048 Theory +1611.00049 Phenomenology +1611.00089 Astrophysics of Galaxies +1611.00227 +1611.00279 Disordered Systems and Neural Networks +1611.00369 Solar and Stellar Astrophysics +1611.00431 +1611.00452 +1611.00474 Phenomenology +1611.00640 Statistical Mechanics +1611.00775 Solar and Stellar Astrophysics +1611.00782 Strongly Correlated Electrons +1611.00931 Computer Vision and Pattern Recognition +1611.01005 Instrumentation and Detectors +1611.01027 Mesoscale and Nanoscale Physics +1611.01041 Optics +1611.01062 +1611.01123 Cosmology and Nongalactic Astrophysics +1611.01133 Theory +1611.01238 Methodology +1611.01347 +1611.01348 +1611.01398 Theory +1611.01454 +1611.01459 Mesoscale and Nanoscale Physics +1611.01509 Optics +1611.01531 Physics and Society +1611.01552 Materials Science +1611.01583 Data Analysis, Statistics and Probability +1611.01623 Phenomenology +1611.01635 Phenomenology +1611.01649 Accelerator Physics +1611.01705 Astrophysics of Galaxies +1611.01738 Theory +1611.01759 Chemical Physics +1611.01816 Algebraic Topology +1611.01854 Phenomenology +1611.01965 Statistical Mechanics +1611.01973 Lattice +1611.02033 Phenomenology +1611.02132 Phenomenology +1611.02137 Phenomenology +1611.02168 Materials Science +1611.02182 Astrophysics of Galaxies +1611.02193 Statistical Mechanics +1611.02221 Machine Learning +1611.02511 Chemical Physics +1611.02598 Theory +1611.02763 Theory +1611.02959 Theory +1611.02977 +1611.03101 Theory +1611.03102 Instrumentation and Detectors +1611.03137 Theory +1611.03277 Materials Science +1611.03284 Lattice +1611.03314 Soft Condensed Matter +1611.03369 Theory +1611.03471 Accelerator Physics +1611.03498 Theory +1611.03569 Quantum Gases +1611.03610 Phenomenology +1611.03612 Optics +1611.03643 Theory +1611.03704 Earth and Planetary Astrophysics +1611.03707 Combinatorics +1611.03769 +1611.03793 Cosmology and Nongalactic Astrophysics +1611.03821 +1611.03945 Theory +1611.03976 High Energy Astrophysical Phenomena +1611.03996 Optics +1611.04032 Theory +1611.04037 Astrophysics of Galaxies +1611.04046 Accelerator Physics +1611.04126 +1611.04297 Phenomenology +1611.04310 Physics Education +1611.04335 Strongly Correlated Electrons +1611.04382 Experiment +1611.04431 Instrumentation and Methods for Astrophysics +1611.04477 Optimization and Control +1611.04502 Solar and Stellar Astrophysics +1611.04520 Learning +1611.04565 +1611.04631 Lattice +1611.04685 +1611.04727 Statistical Mechanics +1611.04793 Phenomenology +1611.04844 Mesoscale and Nanoscale Physics +1611.04882 Mesoscale and Nanoscale Physics +1611.04970 Instrumentation and Detectors +1611.05018 Theory +1611.05030 Statistical Mechanics +1611.05357 Phenomenology +1611.05389 Astrophysics of Galaxies +1611.05390 +1611.05391 +1611.05451 Astrophysics of Galaxies +1611.05456 Astrophysics of Galaxies +1611.05461 Solar and Stellar Astrophysics +1611.05536 +1611.05550 Methodology +1611.05560 Instrumentation and Methods for Astrophysics +1611.05577 Theory +1611.05808 Theory +1611.05881 Phenomenology +1611.05900 Cosmology and Nongalactic Astrophysics +1611.05974 Phenomenology +1611.06018 Mesoscale and Nanoscale Physics +1611.06030 Soft Condensed Matter +1611.06253 Classical Physics +1611.06256 Learning +1611.06273 Strongly Correlated Electrons +1611.06400 Solar and Stellar Astrophysics +1611.06409 Mesoscale and Nanoscale Physics +1611.06451 High Energy Astrophysical Phenomena +1611.06465 Astrophysics of Galaxies +1611.06498 Theory +1611.06613 Phenomenology +1611.06706 Plasma Physics +1611.06733 Optics +1611.06743 Statistical Mechanics +1611.06799 +1611.06881 Astrophysics of Galaxies +1611.06891 +1611.06919 Phenomenology +1611.06931 +1611.06935 +1611.06942 +1611.06957 Soft Condensed Matter +1611.07005 Theory +1611.07029 Theory +1611.07030 Theory +1611.07084 Theory +1611.07107 Phenomenology +1611.07132 Experiment +1611.07257 Solar and Stellar Astrophysics +1611.07259 Experiment +1611.07265 Phenomenology +1611.07300 Phenomenology +1611.07361 +1611.07367 +1611.07477 +1611.07535 Phenomenology +1611.07546 Mesoscale and Nanoscale Physics +1611.07554 Computational Physics +1611.07686 Number Theory +1611.07695 Quantum Gases +1611.07841 Mesoscale and Nanoscale Physics +1611.07874 Strongly Correlated Electrons +1611.07935 Astrophysics of Galaxies +1611.07985 Earth and Planetary Astrophysics +1611.08020 Theory +1611.08076 Theory +1611.08130 Phenomenology +1611.08136 +1611.08346 Theory +1611.08379 Phenomenology +1611.08398 Solar and Stellar Astrophysics +1611.08426 Theory +1611.08428 Solar and Stellar Astrophysics +1611.08439 Solar and Stellar Astrophysics +1611.08440 Superconductivity +1611.08589 Materials Science +1611.08596 Astrophysics of Galaxies +1611.08615 Phenomenology +1611.08650 Strongly Correlated Electrons +1611.08653 Mesoscale and Nanoscale Physics +1611.08712 Fluid Dynamics +1611.08816 Mesoscale and Nanoscale Physics +1611.08914 Materials Science +1611.08919 Soft Condensed Matter +1611.08936 Information Theory +1611.08941 Materials Science +1611.09061 +1611.09091 Theory +1611.09144 Astrophysics of Galaxies +1611.09153 Computational Physics +1611.09242 Fluid Dynamics +1611.09247 Phenomenology +1611.09256 Quantum Gases +1611.09360 Phenomenology +1611.09366 Cosmology and Nongalactic Astrophysics +1611.09452 Hardware Architecture +1611.09465 +1611.09484 +1611.09557 Optics +1611.09575 Theory +1611.09594 Phenomenology +1611.09741 +1611.09764 Phenomenology +1611.09796 Theory +1611.09841 Phenomenology +1611.09870 Phenomenology +1611.09873 Earth and Planetary Astrophysics +1611.09899 Materials Science +1611.09976 Solar and Stellar Astrophysics +1611.10092 Solar and Stellar Astrophysics +1611.10118 Phenomenology +1611.10148 Exactly Solvable and Integrable Systems +1611.10172 Theory +1611.10207 High Energy Astrophysical Phenomena +1611.10214 Theory +1611.10232 Analysis of PDEs +1611.10298 Solar and Stellar Astrophysics +1611.10323 Theory +1611.10343 Theory +1612.00038 High Energy Astrophysical Phenomena +1612.00055 Instrumentation and Detectors +1612.00067 Cosmology and Nongalactic Astrophysics +1612.00124 Mesoscale and Nanoscale Physics +1612.00133 Experiment +1612.00202 Astrophysics of Galaxies +1612.00269 Phenomenology +1612.00271 Networking and Internet Architecture +1612.00308 +1612.00322 +1612.00350 Phenomenology +1612.00386 Fluid Dynamics +1612.00389 Theory +1612.00425 Materials Science +1612.00427 Theory +1612.00468 High Energy Astrophysical Phenomena +1612.00561 Phenomenology +1612.00702 +1612.00721 Theory +1612.00813 +1612.00848 Solar and Stellar Astrophysics +1612.00875 Instrumentation and Detectors +1612.00893 Instrumentation and Methods for Astrophysics +1612.00899 Theory +1612.01023 Materials Science +1612.01167 Phenomenology +1612.01238 Accelerator Physics +1612.01299 +1612.01351 Phenomenology +1612.01438 +1612.01439 Mesoscale and Nanoscale Physics +1612.01461 Superconductivity +1612.01538 Solar and Stellar Astrophysics +1612.01542 Strongly Correlated Electrons +1612.01567 Lattice +1612.01633 +1612.01717 Learning +1612.01796 +1612.01875 High Energy Astrophysical Phenomena +1612.01974 Astrophysics of Galaxies +1612.01986 Cosmology and Nongalactic Astrophysics +1612.02017 Astrophysics of Galaxies +1612.02053 Atomic Physics +1612.02237 Earth and Planetary Astrophysics +1612.02242 Solar and Stellar Astrophysics +1612.02264 Cosmology and Nongalactic Astrophysics +1612.02276 Phenomenology +1612.02285 Strongly Correlated Electrons +1612.02318 Other Condensed Matter +1612.02387 Phenomenology +1612.02443 Solar and Stellar Astrophysics +1612.02456 +1612.02499 +1612.02511 Phenomenology +1612.02543 Phenomenology +1612.02546 Phenomenology +1612.02588 Astrophysics of Galaxies +1612.02669 Solar and Stellar Astrophysics +1612.02759 Theory +1612.02918 Instrumentation and Detectors +1612.03009 Theory +1612.03025 +1612.03223 Mesoscale and Nanoscale Physics +1612.03337 +1612.03342 Differential Geometry +1612.03378 Phenomenology +1612.03394 +1612.03417 Theory +1612.03418 Phenomenology +1612.03521 Chemical Physics +1612.03562 Materials Science +1612.03635 Accelerator Physics +1612.03636 Experiment +1612.03781 Materials Science +1612.03883 +1612.03905 Geophysics +1612.03947 Instrumentation and Detectors +1612.03963 +1612.03978 Phenomenology +1612.04009 Phenomenology +1612.04107 Quantum Gases +1612.04145 Mesoscale and Nanoscale Physics +1612.04190 Superconductivity +1612.04258 Solar and Stellar Astrophysics +1612.04272 Phenomenology +1612.04285 Materials Science +1612.04357 Computer Vision and Pattern Recognition +1612.04396 Mesoscale and Nanoscale Physics +1612.04408 Fluid Dynamics +1612.04563 Plasma Physics +1612.04564 +1612.04713 +1612.04814 Phenomenology +1612.04908 Astrophysics of Galaxies +1612.04999 Statistical Mechanics +1612.05089 Soft Condensed Matter +1612.05309 Artificial Intelligence +1612.05319 Theory +1612.05356 Learning +1612.05492 Phenomenology +1612.05509 +1612.05512 Phenomenology +1612.05516 Mesoscale and Nanoscale Physics +1612.05720 Optics +1612.05723 +1612.05743 Information Theory +1612.05781 Materials Science +1612.05851 Phenomenology +1612.05911 Phenomenology +1612.05934 Phenomenology +1612.05964 Optics +1612.05989 Astrophysics of Galaxies +1612.06046 Phenomenology +1612.06079 Digital Libraries +1612.06084 Phenomenology +1612.06085 Superconductivity +1612.06201 Optics +1612.06211 Phenomenology +1612.06294 Phenomenology +1612.06311 Earth and Planetary Astrophysics +1612.06324 Theory +1612.06326 Mesoscale and Nanoscale Physics +1612.06424 Lattice +1612.06462 Phenomenology +1612.06465 Quantum Gases +1612.06550 Optics +1612.06574 Phenomenology +1612.06708 Instrumentation and Detectors +1612.06886 Probability +1612.06944 Plasma Physics +1612.06955 Astrophysics of Galaxies +1612.07097 High Energy Astrophysical Phenomena +1612.07123 Phenomenology +1612.07218 Cosmology and Nongalactic Astrophysics +1612.07239 Mesoscale and Nanoscale Physics +1612.07253 Instrumentation and Detectors +1612.07311 High Energy Astrophysical Phenomena +1612.07401 Materials Science +1612.07452 Accelerator Physics +1612.07689 +1612.07764 Phenomenology +1612.07783 +1612.07808 Phenomenology +1612.07961 Plasma Physics +1612.07965 Instrumentation and Detectors +1612.07966 Phenomenology +1612.08176 Information Theory +1612.08336 Lattice +1612.08373 Dynamical Systems +1612.08381 Data Analysis, Statistics and Probability +1612.08421 Materials Science +1612.08451 +1612.08547 High Energy Astrophysical Phenomena +1612.08571 Instrumentation and Detectors +1612.08706 Theory +1612.08868 Theory +1612.08870 Soft Condensed Matter +1612.08907 Dynamical Systems +1612.08991 Solar and Stellar Astrophysics +1612.09077 +1612.09111 Group Theory +1612.09214 Plasma Physics +1612.09278 Chemical Physics +1612.09431 Mesoscale and Nanoscale Physics +1612.09588 Cosmology and Nongalactic Astrophysics +1701.00037 +1701.00226 +1701.00230 Statistical Mechanics +1701.00318 Earth and Planetary Astrophysics +1701.00320 Superconductivity +1701.00471 Earth and Planetary Astrophysics +1701.00530 General Physics +1701.00543 Disordered Systems and Neural Networks +1701.00588 Solar and Stellar Astrophysics +1701.00710 +1701.00750 Earth and Planetary Astrophysics +1701.00769 Cosmology and Nongalactic Astrophysics +1701.00778 Representation Theory +1701.00855 Earth and Planetary Astrophysics +1701.00889 Probability +1701.00962 Astrophysics of Galaxies +1701.01004 Phenomenology +1701.01075 Superconductivity +1701.01082 Astrophysics of Galaxies +1701.01404 Phenomenology +1701.01406 +1701.01408 Strongly Correlated Electrons +1701.01543 Mesoscale and Nanoscale Physics +1701.01545 +1701.01586 Materials Science +1701.01650 Data Analysis, Statistics and Probability +1701.01719 Earth and Planetary Astrophysics +1701.01760 High Energy Astrophysical Phenomena +1701.01906 Solar and Stellar Astrophysics +1701.02055 Algebraic Topology +1701.02128 Populations and Evolution +1701.02173 Lattice +1701.02240 +1701.02248 Statistical Mechanics +1701.02278 Instrumentation and Detectors +1701.02290 +1701.02402 Phenomenology +1701.02479 Phenomenology +1701.02510 Chaotic Dynamics +1701.02568 Superconductivity +1701.02574 Theory +1701.02579 +1701.02590 Astrophysics of Galaxies +1701.02671 Theory +1701.02747 Earth and Planetary Astrophysics +1701.02866 Superconductivity +1701.02875 Accelerator Physics +1701.02937 Phenomenology +1701.02953 Pattern Formation and Solitons +1701.03044 Solar and Stellar Astrophysics +1701.03059 +1701.03112 Astrophysics of Galaxies +1701.03132 Plasma Physics +1701.03166 +1701.03310 Atomic and Molecular Clusters +1701.03328 Atomic Physics +1701.03355 Mesoscale and Nanoscale Physics +1701.03398 Solar and Stellar Astrophysics +1701.03520 Soft Condensed Matter +1701.03614 Systems and Control +1701.03618 Theory +1701.03637 Fluid Dynamics +1701.03642 +1701.03696 Astrophysics of Galaxies +1701.03729 Disordered Systems and Neural Networks +1701.03757 Machine Learning +1701.03804 Astrophysics of Galaxies +1701.04075 High Energy Astrophysical Phenomena +1701.04094 High Energy Astrophysical Phenomena +1701.04205 Astrophysics of Galaxies +1701.04255 Mesoscale and Nanoscale Physics +1701.04306 Strongly Correlated Electrons +1701.04373 Statistical Mechanics +1701.04440 +1701.04464 Optimization and Control +1701.04487 Statistical Mechanics +1701.04514 Instrumentation and Methods for Astrophysics +1701.04515 Mesoscale and Nanoscale Physics +1701.04573 Cosmology and Nongalactic Astrophysics +1701.04578 Astrophysics of Galaxies +1701.04584 Statistical Mechanics +1701.04661 Mesoscale and Nanoscale Physics +1701.04680 Materials Science +1701.04686 General Physics +1701.04721 +1701.04789 Atomic Physics +1701.04859 Solar and Stellar Astrophysics +1701.04866 Phenomenology +1701.04874 Superconductivity +1701.04975 +1701.05018 Solar and Stellar Astrophysics +1701.05041 Soft Condensed Matter +1701.05071 +1701.05101 Solar and Stellar Astrophysics +1701.05133 Fluid Dynamics +1701.05148 Mesoscale and Nanoscale Physics +1701.05189 Solar and Stellar Astrophysics +1701.05193 Cosmology and Nongalactic Astrophysics +1701.05204 Theory +1701.05211 Earth and Planetary Astrophysics +1701.05216 Theory +1701.05293 Solar and Stellar Astrophysics +1701.05350 High Energy Astrophysical Phenomena +1701.05454 Atomic Physics +1701.05526 Theory +1701.05646 High Energy Astrophysical Phenomena +1701.05696 Atomic Physics +1701.05728 Phenomenology +1701.05744 Superconductivity +1701.05802 Plasma Physics +1701.05853 +1701.05859 Phenomenology +1701.06025 +1701.06131 +1701.06172 Astrophysics of Galaxies +1701.06307 Systems and Control +1701.06339 Atomic Physics +1701.06457 Solar and Stellar Astrophysics +1701.06464 Instrumentation and Detectors +1701.06577 Earth and Planetary Astrophysics +1701.06585 Astrophysics of Galaxies +1701.06590 Atomic Physics +1701.06615 Populations and Evolution +1701.06703 Solar and Stellar Astrophysics +1701.06721 Solar and Stellar Astrophysics +1701.06747 High Energy Astrophysical Phenomena +1701.06755 High Energy Astrophysical Phenomena +1701.06758 Solar and Stellar Astrophysics +1701.06856 Theory +1701.06894 Theory +1701.06898 +1701.06899 +1701.06922 Adaptation and Self-Organizing Systems +1701.07041 Earth and Planetary Astrophysics +1701.07181 Numerical Analysis +1701.07233 Differential Geometry +1701.07250 Cosmology and Nongalactic Astrophysics +1701.07257 Earth and Planetary Astrophysics +1701.07301 Materials Science +1701.07307 Instrumentation and Methods for Astrophysics +1701.07337 Phenomenology +1701.07362 Soft Condensed Matter +1701.07397 Astrophysics of Galaxies +1701.07407 Mesoscale and Nanoscale Physics +1701.07438 Astrophysics of Galaxies +1701.07442 High Energy Astrophysical Phenomena +1701.07452 Instrumentation and Methods for Astrophysics +1701.07541 Solar and Stellar Astrophysics +1701.07573 High Energy Astrophysical Phenomena +1701.07582 Astrophysics of Galaxies +1701.07849 Earth and Planetary Astrophysics +1701.07858 +1701.07905 High Energy Astrophysical Phenomena +1701.07911 Astrophysics of Galaxies +1701.07974 Learning +1701.07975 Instrumentation and Detectors +1701.08024 Astrophysics of Galaxies +1701.08169 Astrophysics of Galaxies +1701.08271 Strongly Correlated Electrons +1701.08272 Strongly Correlated Electrons +1701.08337 Information Theory +1701.08352 Mesoscale and Nanoscale Physics +1701.08484 Astrophysics of Galaxies +1701.08590 Experiment +1701.08630 +1701.08638 +1701.08676 Cryptography and Security +1701.08720 Cosmology and Nongalactic Astrophysics +1701.08768 Astrophysics of Galaxies +1701.08772 Astrophysics of Galaxies +1701.08811 High Energy Astrophysical Phenomena +1701.08823 Astrophysics of Galaxies +1701.08859 Rings and Algebras +1701.08919 +1701.08932 Materials Science +1701.08987 Solar and Stellar Astrophysics +1701.09044 Atomic Physics +1701.09063 Statistical Mechanics +1701.09098 High Energy Astrophysical Phenomena +1702.00007 Solar and Stellar Astrophysics +1702.00073 High Energy Astrophysical Phenomena +1702.00106 Earth and Planetary Astrophysics +1702.00114 Mesoscale and Nanoscale Physics +1702.00266 Astrophysics of Galaxies +1702.00273 Strongly Correlated Electrons +1702.00279 Astrophysics of Galaxies +1702.00334 Solar and Stellar Astrophysics +1702.00357 Materials Science +1702.00461 High Energy Astrophysical Phenomena +1702.00513 High Energy Astrophysical Phenomena +1702.00517 Astrophysics of Galaxies +1702.00592 Materials Science +1702.00638 Solar and Stellar Astrophysics +1702.00718 Neurons and Cognition +1702.00752 Statistical Mechanics +1702.00756 +1702.00793 Astrophysics of Galaxies +1702.00890 Mesoscale and Nanoscale Physics +1702.00927 +1702.01023 Strongly Correlated Electrons +1702.01034 +1702.01055 +1702.01061 Statistical Mechanics +1702.01310 Solar and Stellar Astrophysics +1702.01589 Solar and Stellar Astrophysics +1702.01635 Strongly Correlated Electrons +1702.01660 High Energy Astrophysical Phenomena +1702.01733 +1702.01842 Strongly Correlated Electrons +1702.02035 High Energy Astrophysical Phenomena +1702.02197 High Energy Astrophysical Phenomena +1702.02237 Earth and Planetary Astrophysics +1702.02249 Phenomenology +1702.02335 Other Condensed Matter +1702.02356 Materials Science +1702.02392 Astrophysics of Galaxies +1702.02464 Astrophysics of Galaxies +1702.02533 Cryptography and Security +1702.02539 Astrophysics of Galaxies +1702.02542 Earth and Planetary Astrophysics +1702.02575 Mesoscale and Nanoscale Physics +1702.02678 +1702.02975 Solar and Stellar Astrophysics +1702.03038 Astrophysics of Galaxies +1702.03039 Astrophysics of Galaxies +1702.03064 Superconductivity +1702.03100 High Energy Astrophysical Phenomena +1702.03296 Astrophysics of Galaxies +1702.03300 +1702.03338 High Energy Astrophysical Phenomena +1702.03362 Computational Physics +1702.03434 Number Theory +1702.03665 Earth and Planetary Astrophysics +1702.03783 Earth and Planetary Astrophysics +1702.03936 Solar and Stellar Astrophysics +1702.04049 Astrophysics of Galaxies +1702.04076 Solar and Stellar Astrophysics +1702.04100 Instrumentation and Detectors +1702.04122 Solar and Stellar Astrophysics +1702.04182 High Energy Astrophysical Phenomena +1702.04446 High Energy Astrophysical Phenomena +1702.04516 Phenomenology +1702.04591 +1702.04592 Superconductivity +1702.04716 +1702.04736 High Energy Astrophysical Phenomena +1702.04789 Information Theory +1702.04857 Astrophysics of Galaxies +1702.05143 High Energy Astrophysical Phenomena +1702.05435 Theory +1702.05437 Programming Languages +1702.05449 High Energy Astrophysical Phenomena +1702.05452 Combinatorics +1702.05507 High Energy Astrophysical Phenomena +1702.05689 High Energy Astrophysical Phenomena +1702.05902 Representation Theory +1702.06018 Solar and Stellar Astrophysics +1702.06060 +1702.06116 Astrophysics of Galaxies +1702.06127 +1702.06176 Information Retrieval +1702.06201 Dynamical Systems +1702.06335 Distributed, Parallel, and Cluster Computing +1702.06356 Earth and Planetary Astrophysics +1702.06457 Learning +1702.06472 Astrophysics of Galaxies +1702.06555 High Energy Astrophysical Phenomena +1702.06578 Earth and Planetary Astrophysics +1702.06598 Solar and Stellar Astrophysics +1702.06713 Instrumentation and Detectors +1702.06721 Mesoscale and Nanoscale Physics +1702.06758 +1702.06887 Information Theory +1702.06955 Theory +1702.07055 Dynamical Systems +1702.07130 Pattern Formation and Solitons +1702.07213 Distributed, Parallel, and Cluster Computing +1702.07221 Soft Condensed Matter +1702.07269 Methodology +1702.07345 +1702.07901 Solar and Stellar Astrophysics +1702.07970 Functional Analysis +1702.08038 Combinatorics +1702.08264 Representation Theory +1702.08401 Number Theory +1702.08463 Earth and Planetary Astrophysics +1702.08542 Physics and Society +1702.08589 Atomic Physics +1702.08611 Earth and Planetary Astrophysics +1702.08640 Computer Vision and Pattern Recognition +1702.08869 +1702.08878 Dynamical Systems +1702.08881 +1703.00012 Earth and Planetary Astrophysics +1703.00014 Strongly Correlated Electrons +1703.00025 Theory +1703.00030 Instrumentation and Methods for Astrophysics +1703.00071 High Energy Astrophysical Phenomena +1703.00239 +1703.00439 Optimization and Control +1703.00565 Computation and Language +1703.00602 Representation Theory +1703.00763 Classical Analysis and ODEs +1703.00832 Computer Vision and Pattern Recognition +1703.00876 Discrete Mathematics +1703.00908 +1703.00912 Phenomenology +1703.00943 Mesoscale and Nanoscale Physics +1703.00970 Earth and Planetary Astrophysics +1703.01007 +1703.01021 +1703.01142 Information Theory +1703.01232 Statistics Theory +1703.01233 Experiment +1703.01285 Instrumentation and Detectors +1703.01337 Theory +1703.01398 Robotics +1703.01410 Combinatorics +1703.01478 Instrumentation and Detectors +1703.01537 Cryptography and Security +1703.01554 Cosmology and Nongalactic Astrophysics +1703.01599 Computer Science and Game Theory +1703.01645 High Energy Astrophysical Phenomena +1703.01713 +1703.01738 Classical Analysis and ODEs +1703.01750 Theory +1703.01809 Geometric Topology +1703.01843 Optics +1703.01846 Differential Geometry +1703.01876 Strongly Correlated Electrons +1703.01939 Data Structures and Algorithms +1703.01946 Robotics +1703.01998 Quantum Gases +1703.02030 Materials Science +1703.02031 Computation and Language +1703.02032 Numerical Analysis +1703.02033 Astrophysics of Galaxies +1703.02034 Operator Algebras +1703.02035 Phenomenology +1703.02036 Computer Vision and Pattern Recognition +1703.02038 Solar and Stellar Astrophysics +1703.02040 Mesoscale and Nanoscale Physics +1703.02041 Astrophysics of Galaxies +1703.02042 Astrophysics of Galaxies +1703.02043 Astrophysics of Galaxies +1703.02044 Astrophysics of Galaxies +1703.02045 Cosmology and Nongalactic Astrophysics +1703.02047 Mesoscale and Nanoscale Physics +1703.02048 Solar and Stellar Astrophysics +1703.02049 Astrophysics of Galaxies +1703.02050 Mesoscale and Nanoscale Physics +1703.02053 Astrophysics of Galaxies +1703.02054 Probability +1703.02057 Phenomenology +1703.02058 +1703.02059 Machine Learning +1703.02060 Solar and Stellar Astrophysics +1703.02062 +1703.02063 Number Theory +1703.02064 Phenomenology +1703.02066 Biomolecules +1703.02067 Numerical Analysis +1703.02068 +1703.02069 Strongly Correlated Electrons +1703.02070 Cosmology and Nongalactic Astrophysics +1703.02072 Information Theory +1703.02074 Astrophysics of Galaxies +1703.02075 Systems and Control +1703.02076 Theory +1703.02078 Methodology +1703.02079 Phenomenology +1703.02081 Computation +1703.02082 Logic +1703.02083 Computer Vision and Pattern Recognition +1703.02084 Solar and Stellar Astrophysics +1703.02085 Phenomenology +1703.02087 Experiment +1703.02088 Probability +1703.02089 Methodology +1703.02090 Cryptography and Security +1703.02092 Fluid Dynamics +1703.02093 Geophysics +1703.02094 Materials Science +1703.02095 Materials Science +1703.02096 Materials Science +1703.02097 Strongly Correlated Electrons +1703.02098 Systems and Control +1703.02099 Analysis of PDEs +1703.02100 Discrete Mathematics +1703.02103 Human-Computer Interaction +1703.02104 Economics +1703.02105 Economics +1703.02106 Instrumentation and Detectors +1703.02107 +1703.02108 Instrumentation and Methods for Astrophysics +1703.02111 Learning +1703.02112 Methodology +1703.02113 Methodology +1703.02115 Materials Science +1703.02116 Learning +1703.02119 Differential Geometry +1703.02120 Number Theory +1703.02121 Mesoscale and Nanoscale Physics +1703.02122 Phenomenology +1703.02123 Strongly Correlated Electrons +1703.02124 Computer Vision and Pattern Recognition +1703.02125 Mesoscale and Nanoscale Physics +1703.02126 Superconductivity +1703.02127 Number Theory +1703.02128 Quantum Gases +1703.02129 +1703.02130 Robotics +1703.02131 Representation Theory +1703.02132 Solar and Stellar Astrophysics +1703.02133 Number Theory +1703.02134 Analysis of PDEs +1703.02135 Systems and Control +1703.02136 Computation and Language +1703.02137 Astrophysics of Galaxies +1703.02138 Astrophysics of Galaxies +1703.02139 Functional Analysis +1703.02140 Theory +1703.02141 Information Theory +1703.02142 Materials Science +1703.02143 +1703.02144 Learning +1703.02145 Robotics +1703.02146 Geometric Topology +1703.02147 Combinatorics +1703.02148 Number Theory +1703.02149 Networking and Internet Architecture +1703.02150 Computer Vision and Pattern Recognition +1703.02152 Metric Geometry +1703.02153 Theory +1703.02154 Formal Languages and Automata Theory +1703.02155 Machine Learning +1703.02156 Learning +1703.02157 Phenomenology +1703.02158 Physics and Society +1703.02159 Analysis of PDEs +1703.02160 Group Theory +1703.02162 Cryptography and Security +1703.02163 Number Theory +1703.02164 +1703.02165 Numerical Analysis +1703.02166 Computation and Language +1703.02167 Strongly Correlated Electrons +1703.02168 Computer Vision and Pattern Recognition +1703.02169 Information Theory +1703.02171 Classical Physics +1703.02172 Dynamical Systems +1703.02174 Combinatorics +1703.02175 +1703.02176 +1703.02179 Instrumentation and Methods for Astrophysics +1703.02181 +1703.02183 Materials Science +1703.02184 Machine Learning +1703.02185 Machine Learning +1703.02186 Algebraic Topology +1703.02187 Number Theory +1703.02189 +1703.02190 Phenomenology +1703.02191 Mesoscale and Nanoscale Physics +1703.02192 Artificial Intelligence +1703.02193 Logic in Computer Science +1703.02194 Logic in Computer Science +1703.02195 Logic in Computer Science +1703.02196 Artificial Intelligence +1703.02197 Logic in Computer Science +1703.02198 Logic in Computer Science +1703.02199 Algebraic Topology +1703.02200 Cryptography and Security +1703.02202 Geophysics +1703.02203 Mesoscale and Nanoscale Physics +1703.02204 Strongly Correlated Electrons +1703.02207 Astrophysics of Galaxies +1703.02209 Cryptography and Security +1703.02210 Strongly Correlated Electrons +1703.02211 +1703.02212 Databases +1703.02213 Physics and Society +1703.02214 Analysis of PDEs +1703.02215 Number Theory +1703.02216 Chemical Physics +1703.02217 Computer Vision and Pattern Recognition +1703.02218 Functional Analysis +1703.02219 Social and Information Networks +1703.02221 Optimization and Control +1703.02222 Physics and Society +1703.02223 Physics and Society +1703.02224 Data Structures and Algorithms +1703.02225 Representation Theory +1703.02226 +1703.02227 Human-Computer Interaction +1703.02228 Classical Analysis and ODEs +1703.02229 Phenomenology +1703.02230 Combinatorics +1703.02231 Solar and Stellar Astrophysics +1703.02232 Classical Analysis and ODEs +1703.02233 Solar and Stellar Astrophysics +1703.02235 Superconductivity +1703.02237 Computation +1703.02240 Superconductivity +1703.02241 +1703.02242 Computer Vision and Pattern Recognition +1703.02244 Cryptography and Security +1703.02246 Analysis of PDEs +1703.02247 Distributed, Parallel, and Cluster Computing +1703.02248 Cryptography and Security +1703.02249 Mesoscale and Nanoscale Physics +1703.02250 Combinatorics +1703.02251 Algebraic Geometry +1703.02252 Analysis of PDEs +1703.02253 Probability +1703.02254 Mesoscale and Nanoscale Physics +1703.02255 General Topology +1703.02256 Software Engineering +1703.02257 Analysis of PDEs +1703.02259 Materials Science +1703.02260 Functional Analysis +1703.02262 Materials Science +1703.02263 Populations and Evolution +1703.02264 Metric Geometry +1703.02265 Numerical Analysis +1703.02266 Optics +1703.02267 Optics +1703.02271 Computer Vision and Pattern Recognition +1703.02272 Algebraic Geometry +1703.02273 High Energy Astrophysical Phenomena +1703.02274 Numerical Analysis +1703.02276 +1703.02277 +1703.02278 Optics +1703.02279 Robotics +1703.02280 Mesoscale and Nanoscale Physics +1703.02281 Numerical Analysis +1703.02282 Exactly Solvable and Integrable Systems +1703.02283 Numerical Analysis +1703.02284 Information Theory +1703.02286 Atomic Physics +1703.02287 +1703.02288 Dynamical Systems +1703.02289 Number Theory +1703.02290 Combinatorics +1703.02292 Instrumentation and Methods for Astrophysics +1703.02293 Computation +1703.02294 Classical Physics +1703.02295 Earth and Planetary Astrophysics +1703.02296 Methodology +1703.02297 Logic +1703.02298 +1703.02299 Optics +1703.02300 Instrumentation and Methods for Astrophysics +1703.02301 Logic +1703.02302 Cosmology and Nongalactic Astrophysics +1703.02303 Optics +1703.02304 Theory +1703.02305 Instrumentation and Methods for Astrophysics +1703.02306 Materials Science +1703.02308 +1703.02309 Materials Science +1703.02310 Artificial Intelligence +1703.02312 Programming Languages +1703.02313 Other Condensed Matter +1703.02314 Information Retrieval +1703.02315 Analysis of PDEs +1703.02316 Algebraic Geometry +1703.02317 Sound +1703.02318 Sound +1703.02319 Soft Condensed Matter +1703.02320 Mesoscale and Nanoscale Physics +1703.02321 Metric Geometry +1703.02322 Number Theory +1703.02324 Information Theory +1703.02326 Robotics +1703.02327 High Energy Astrophysical Phenomena +1703.02329 Applications +1703.02330 Probability +1703.02331 Materials Science +1703.02332 Computational Complexity +1703.02333 Computational Physics +1703.02334 Digital Libraries +1703.02338 Cosmology and Nongalactic Astrophysics +1703.02339 Mesoscale and Nanoscale Physics +1703.02340 Robotics +1703.02341 Computation +1703.02342 +1703.02343 Optics +1703.02344 Computer Vision and Pattern Recognition +1703.02345 Accelerator Physics +1703.02346 Representation Theory +1703.02347 Dynamical Systems +1703.02348 Optimization and Control +1703.02349 Probability +1703.02350 Geometric Topology +1703.02351 Numerical Analysis +1703.02353 +1703.02354 Classical Analysis and ODEs +1703.02355 Soft Condensed Matter +1703.02356 Rings and Algebras +1703.02357 Solar and Stellar Astrophysics +1703.02358 Networking and Internet Architecture +1703.02359 Geometric Topology +1703.02360 Experiment +1703.02361 Computational Complexity +1703.02362 Functional Analysis +1703.02363 Learning +1703.02364 Astrophysics of Galaxies +1703.02365 Human-Computer Interaction +1703.02366 Combinatorics +1703.02367 Multiagent Systems +1703.02369 Disordered Systems and Neural Networks +1703.02370 +1703.02371 Complex Variables +1703.02372 +1703.02374 Solar and Stellar Astrophysics +1703.02376 Probability +1703.02377 Optics +1703.02378 Disordered Systems and Neural Networks +1703.02380 High Energy Astrophysical Phenomena +1703.02383 Strongly Correlated Electrons +1703.02384 Theory +1703.02385 High Energy Astrophysical Phenomena +1703.02386 Artificial Intelligence +1703.02387 Disordered Systems and Neural Networks +1703.02390 High Energy Astrophysical Phenomena +1703.02391 Computer Vision and Pattern Recognition +1703.02392 Solar and Stellar Astrophysics +1703.02394 Software Engineering +1703.02396 +1703.02397 Experiment +1703.02398 Information Theory +1703.02399 Multiagent Systems +1703.02400 Information Theory +1703.02402 High Energy Astrophysical Phenomena +1703.02403 Learning +1703.02404 Numerical Analysis +1703.02405 +1703.02408 Exactly Solvable and Integrable Systems +1703.02409 High Energy Astrophysical Phenomena +1703.02410 +1703.02411 Data Structures and Algorithms +1703.02412 Soft Condensed Matter +1703.02413 Differential Geometry +1703.02414 Lattice +1703.02415 Combinatorics +1703.02416 +1703.02417 Disordered Systems and Neural Networks +1703.02418 Statistical Mechanics +1703.02419 Computation +1703.02420 Solar and Stellar Astrophysics +1703.02421 Solar and Stellar Astrophysics +1703.02422 Numerical Analysis +1703.02423 Solar and Stellar Astrophysics +1703.02424 Systems and Control +1703.02426 Strongly Correlated Electrons +1703.02427 Quantum Gases +1703.02428 Methodology +1703.02429 Materials Science +1703.02430 Statistical Mechanics +1703.02431 Statistical Mechanics +1703.02432 High Energy Astrophysical Phenomena +1703.02433 Learning +1703.02434 Phenomenology +1703.02436 Group Theory +1703.02439 +1703.02440 +1703.02441 Applications +1703.02443 Plasma Physics +1703.02444 Combinatorics +1703.02445 Computer Vision and Pattern Recognition +1703.02446 Phenomenology +1703.02447 Earth and Planetary Astrophysics +1703.02448 Instrumentation and Detectors +1703.02449 Mesoscale and Nanoscale Physics +1703.02450 Analysis of PDEs +1703.02451 Cryptography and Security +1703.02452 Group Theory +1703.02453 Quantitative Methods +1703.02454 Theory +1703.02455 Dynamical Systems +1703.02456 Rings and Algebras +1703.02457 Representation Theory +1703.02458 Software Engineering +1703.02459 Probability +1703.02460 +1703.02461 Geophysics +1703.02463 +1703.02464 Statistical Mechanics +1703.02465 +1703.02467 Probability +1703.02468 Information Theory +1703.02469 Computational Complexity +1703.02473 Combinatorics +1703.02474 Dynamical Systems +1703.02475 Databases +1703.02476 Algebraic Geometry +1703.02477 Materials Science +1703.02478 Differential Geometry +1703.02479 Computational Physics +1703.02480 Group Theory +1703.02481 Algebraic Geometry +1703.02482 Physics and Society +1703.02483 Theory +1703.02484 Distributed, Parallel, and Cluster Computing +1703.02485 Combinatorics +1703.02486 Computers and Society +1703.02487 Analysis of PDEs +1703.02488 Lattice +1703.02489 Quantum Gases +1703.02490 Atomic Physics +1703.02491 Mesoscale and Nanoscale Physics +1703.02493 Numerical Analysis +1703.02494 Differential Geometry +1703.02495 Phenomenology +1703.02496 Materials Science +1703.02497 Computers and Society +1703.02498 Materials Science +1703.02499 Numerical Analysis +1703.02500 Mesoscale and Nanoscale Physics +1703.02501 Astrophysics of Galaxies +1703.02502 Applications +1703.02503 +1703.02504 Computation and Language +1703.02505 Theory +1703.02506 Geometric Topology +1703.02507 Computation and Language +1703.02508 Experiment +1703.02509 Combinatorics +1703.02510 Software Engineering +1703.02511 Computer Vision and Pattern Recognition +1703.02512 Analysis of PDEs +1703.02513 Algebraic Geometry +1703.02517 Computation and Language +1703.02518 Learning +1703.02519 Group Theory +1703.02520 Mesoscale and Nanoscale Physics +1703.02521 Computer Vision and Pattern Recognition +1703.02522 Solar and Stellar Astrophysics +1703.02523 Astrophysics of Galaxies +1703.02524 Phenomenology +1703.02525 Theory +1703.02526 Classical Analysis and ODEs +1703.02527 Learning +1703.02528 Machine Learning +1703.02530 Experiment +1703.02531 Strongly Correlated Electrons +astro-ph/0502214 +astro-ph/0504256 +astro-ph/0504298 +astro-ph/0504521 +astro-ph/9508125 +hep-lat/9410003 Lattice +hep-lat/9710012 Lattice +hep-ph/0104103 Phenomenology +hep-ph/0109001 Phenomenology +hep-ph/9909208 Phenomenology +hep-th/9401009 Theory +math/0603121 Number Theory +math/0611744 Logic +nlin/0511031 Chaotic Dynamics +nucl-th/0111017 +nucl-th/0111029 +nucl-th/0111037 +0903.5392 Computational Complexity +1001.5296 Representation Theory +1006.4283 Optimization and Control +1008.1592 Representation Theory +1110.6560 Methodology +1111.0862 Formal Languages and Automata Theory +1201.0490 Learning +1203.0103 Logic in Computer Science +1203.5688 +1205.3940 Logic +1205.5344 Programming Languages +1209.0680 Programming Languages +1211.2609 Programming Languages +1302.0380 Logic +1302.6043 Discrete Mathematics +1303.1115 Category Theory +1303.2558 Computer Science and Game Theory +1304.4150 Formal Languages and Automata Theory +1307.5466 Functional Analysis +1308.1005 Analysis of PDEs +1308.5994 Representation Theory +1309.0001 Complex Variables +1309.7464 +1310.1016 Logic in Computer Science +1310.3306 Representation Theory +1310.3656 Logic in Computer Science +1310.6176 Logic in Computer Science +1311.1029 Logic +1312.0986 Functional Analysis +1312.2200 +1312.2380 Analysis of PDEs +1312.3960 Analysis of PDEs +1401.0020 Dynamical Systems +1401.0460 Combinatorics +1401.2467 Representation Theory +1401.3675 Computer Science and Game Theory +1401.5302 Representation Theory +1402.3277 Formal Languages and Automata Theory +1402.5922 Category Theory +1403.0846 Representation Theory +1403.1650 Representation Theory +1403.5570 Representation Theory +1403.6303 Logic in Computer Science +1405.0990 Phenomenology +1405.4928 Representation Theory +1405.5393 Logic in Computer Science +1406.1895 Analysis of PDEs +1406.3327 Computer Science and Game Theory +1406.3564 Phenomenology +1406.6413 Computational Complexity +1406.7702 Logic +1407.7245 Differential Geometry +1408.0777 Applications +1408.5028 Logic in Computer Science +1409.3652 Mesoscale and Nanoscale Physics +1409.4433 Logic in Computer Science +1409.5685 Number Theory +1409.6691 +1410.0417 Number Theory +1410.2022 Formal Languages and Automata Theory +1410.2051 Operator Algebras +1410.5011 Methodology +1411.0969 Discrete Mathematics +1411.5692 Cosmology and Nongalactic Astrophysics +1412.2033 Computational Physics +1412.3246 Logic +1501.03473 Group Theory +1501.05588 Systems and Control +1502.05883 Computer Science and Game Theory +1503.00665 Geometric Topology +1503.02210 Logic in Computer Science +1503.02447 Logic in Computer Science +1503.04034 Logic in Computer Science +1503.04320 Logic in Computer Science +1503.05838 Probability +1503.06022 Logic in Computer Science +1503.06254 +1503.06666 Information Retrieval +1503.06687 Logic in Computer Science +1503.06826 Logic in Computer Science +1503.08674 Soft Condensed Matter +1503.08782 Information Theory +1504.00039 Logic in Computer Science +1504.01278 Rings and Algebras +1504.02899 Logic in Computer Science +1504.04136 Formal Languages and Automata Theory +1504.04662 Logic in Computer Science +1504.05797 Logic in Computer Science +1504.06986 Logic in Computer Science +1504.07108 Complex Variables +1504.07317 Complex Variables +1504.07545 Computer Science and Game Theory +1504.08101 Combinatorics +1505.00731 Logic +1505.03136 Algebraic Topology +1505.04934 Logic in Computer Science +1505.04985 Logic in Computer Science +1505.06056 Logic in Computer Science +1505.06862 Logic in Computer Science +1505.06896 Logic in Computer Science +1506.00313 Differential Geometry +1506.00482 Logic in Computer Science +1506.03943 Logic in Computer Science +1506.04871 Logic in Computer Science +1506.04879 Logic in Computer Science +1506.05127 Logic +1506.05540 Combinatorics +1506.06165 Logic in Computer Science +1506.06869 Logic in Computer Science +1506.07401 Atmospheric and Oceanic Physics +1507.02890 Formal Languages and Automata Theory +1507.03947 Physics Education +1507.05098 Physics and Society +1507.05766 Logic in Computer Science +1507.06796 Logic in Computer Science +1507.06844 Algebraic Topology +1507.07697 Logic in Computer Science +1507.07911 Databases +1507.08970 Numerical Analysis +1508.02329 Theory +1508.02864 Logic in Computer Science +1508.04360 Logic in Computer Science +1508.06041 Phenomenology +1509.01244 Strongly Correlated Electrons +1509.01657 Number Theory +1509.01976 Group Theory +1509.02005 Functional Analysis +1509.02384 Artificial Intelligence +1509.02991 Astrophysics of Galaxies +1509.05318 Logic in Computer Science +1509.05659 Logic in Computer Science +1509.05901 Phenomenology +1509.06330 Soft Condensed Matter +1509.08051 Representation Theory +1509.09302 Representation Theory +1510.00224 Strongly Correlated Electrons +1510.00263 Materials Science +1510.00305 Superconductivity +1510.01044 Logic in Computer Science +1510.01752 Programming Languages +1510.02750 Solar and Stellar Astrophysics +1510.03319 Logic in Computer Science +1510.03531 Logic in Computer Science +1510.03977 Astrophysics of Galaxies +1510.04735 Astrophysics of Galaxies +1510.05077 Statistics Theory +1510.05141 Astrophysics of Galaxies +1510.05695 Solar and Stellar Astrophysics +1510.05710 Astrophysics of Galaxies +1510.06027 Solar and Stellar Astrophysics +1510.06178 Logic in Computer Science +1510.06658 Logic in Computer Science +1510.06784 Astrophysics of Galaxies +1510.08021 Solar and Stellar Astrophysics +1510.08325 Astrophysics of Galaxies +1510.08331 Logic in Computer Science +1511.00018 Astrophysics of Galaxies +1511.00297 Applications +1511.00938 Databases +1511.03095 Computation +1511.03259 Algebraic Geometry +1511.05085 Solar and Stellar Astrophysics +1511.05372 Applications +1511.05423 Astrophysics of Galaxies +1511.05772 Astrophysics of Galaxies +1511.05866 Logic in Computer Science +1511.05888 Logic in Computer Science +1511.06153 Solar and Stellar Astrophysics +1511.07049 Operator Algebras +1511.07312 Phenomenology +1511.07396 Probability +1511.08875 Logic +1511.09068 Earth and Planetary Astrophysics +1512.00248 +1512.00350 Astrophysics of Galaxies +1512.03358 Instrumentation and Methods for Astrophysics +1512.03847 Differential Geometry +1512.05313 Logic in Computer Science +1512.06356 +1512.06762 Instrumentation and Detectors +1512.08501 Mesoscale and Nanoscale Physics +1512.08766 Algebraic Geometry +1601.00016 Astrophysics of Galaxies +1601.00187 Astrophysics of Galaxies +1601.01132 Solar and Stellar Astrophysics +1601.01233 Programming Languages +1601.01579 Formal Languages and Automata Theory +1601.02015 Theory +1601.02057 Materials Science +1601.02581 Quantum Gases +1601.02848 Databases +1601.04349 Astrophysics of Galaxies +1601.05509 Earth and Planetary Astrophysics +1601.07472 Logic in Computer Science +1601.07724 Logic in Computer Science +1602.00016 Solar and Stellar Astrophysics +1602.00156 +1602.00356 Combinatorics +1602.00476 Logic in Computer Science +1602.01050 Instrumentation and Methods for Astrophysics +1602.01733 Instrumentation and Detectors +1602.02388 Solar and Stellar Astrophysics +1602.03607 Phenomenology +1602.04220 +1602.05533 Materials Science +1602.06267 Solar and Stellar Astrophysics +1602.06269 Solar and Stellar Astrophysics +1602.06556 Theory +1602.06718 Probability +1602.06998 Mathematical Finance +1602.07104 Networking and Internet Architecture +1602.07169 Astrophysics of Galaxies +1602.07377 Computer Vision and Pattern Recognition +1602.08680 Computer Vision and Pattern Recognition +1603.00863 Optimization and Control +1603.00884 Astrophysics of Galaxies +1603.01353 +1603.01503 Fluid Dynamics +1603.01598 Superconductivity +1603.01679 Dynamical Systems +1603.02242 +1603.02309 Astrophysics of Galaxies +1603.02486 Representation Theory +1603.02940 +1603.02967 Algebraic Geometry +1603.03841 Materials Science +1603.04309 Logic in Computer Science +1603.04674 Astrophysics of Galaxies +1603.05664 Instrumentation and Methods for Astrophysics +1603.05790 Cosmology and Nongalactic Astrophysics +1603.07259 Logic in Computer Science +1603.07790 Formal Languages and Automata Theory +1603.08377 Astrophysics of Galaxies +1603.08806 Combinatorics +1603.08933 Disordered Systems and Neural Networks +1603.08976 Data Structures and Algorithms +1603.09105 Astrophysics of Galaxies +1603.09211 Theory +1603.09263 Information Theory +1603.09300 Logic +1604.01006 Disordered Systems and Neural Networks +1604.01716 +1604.01717 Theory +1604.01835 Information Theory +1604.01926 Solar and Stellar Astrophysics +1604.02077 Materials Science +1604.02167 Formal Languages and Automata Theory +1604.02224 Adaptation and Self-Organizing Systems +1604.02270 Quantitative Methods +1604.02459 +1604.02887 Logic in Computer Science +1604.04186 Solar and Stellar Astrophysics +1604.04218 Mesoscale and Nanoscale Physics +1604.04390 Logic +1604.05666 +1604.05816 Computer Vision and Pattern Recognition +1604.06038 Logic in Computer Science +1604.06713 Populations and Evolution +1604.06905 Geometric Topology +1604.07013 Dynamical Systems +1604.07075 Combinatorics +1604.07144 Materials Science +1604.07399 Astrophysics of Galaxies +1604.07793 Solar and Stellar Astrophysics +1604.07926 Cosmology and Nongalactic Astrophysics +1604.08383 Logic in Computer Science +1604.08488 Number Theory +1604.08612 Neurons and Cognition +1604.08704 Superconductivity +1605.00317 Information Theory +1605.00582 +1605.00640 +1605.00865 Mesoscale and Nanoscale Physics +1605.01403 Cosmology and Nongalactic Astrophysics +1605.01772 Geometric Topology +1605.02282 Optics +1605.02613 Phenomenology +1605.03712 Solar and Stellar Astrophysics +1605.04130 Astrophysics of Galaxies +1605.04136 Logic in Computer Science +1605.04788 Cosmology and Nongalactic Astrophysics +1605.04944 Phenomenology +1605.05389 Soft Condensed Matter +1605.05503 Astrophysics of Galaxies +1605.05609 Statistical Mechanics +1605.06072 Data Structures and Algorithms +1605.06644 Sound +1605.06982 +1605.07508 Materials Science +1605.07831 Mesoscale and Nanoscale Physics +1605.08423 Strongly Correlated Electrons +1605.09330 Strongly Correlated Electrons +1606.00445 Materials Science +1606.00524 Phenomenology +1606.00821 Neurons and Cognition +1606.00982 Mesoscale and Nanoscale Physics +1606.01325 Atomic Physics +1606.01538 Cosmology and Nongalactic Astrophysics +1606.01688 Physics and Society +1606.01968 Cosmology and Nongalactic Astrophysics +1606.02197 +1606.03478 +1606.03785 Theory +1606.03847 Experiment +1606.04485 Earth and Planetary Astrophysics +1606.04726 +1606.04770 Number Theory +1606.04916 Statistical Mechanics +1606.05354 Instrumentation and Methods for Astrophysics +1606.05389 Physics Education +1606.05548 Mesoscale and Nanoscale Physics +1606.05795 Analysis of PDEs +1606.05804 Computation and Language +1606.05826 Materials Science +1606.05898 Combinatorics +1606.06040 Astrophysics of Galaxies +1606.06058 Quantum Gases +1606.06866 Mesoscale and Nanoscale Physics +1606.06994 +1606.07566 Analysis of PDEs +1606.07739 Symplectic Geometry +1606.08052 Methodology +1606.08389 Optimization and Control +1606.08855 Earth and Planetary Astrophysics +1606.09201 Solar and Stellar Astrophysics +1606.09295 High Energy Astrophysical Phenomena +1606.09394 Strongly Correlated Electrons +1606.09542 Strongly Correlated Electrons +1607.00725 High Energy Astrophysical Phenomena +1607.01391 Astrophysics of Galaxies +1607.01460 Quantum Gases +1607.01706 Neurons and Cognition +1607.01803 Cosmology and Nongalactic Astrophysics +1607.02021 Superconductivity +1607.02157 +1607.02671 Experiment +1607.03112 Astrophysics of Galaxies +1607.03136 Cosmology and Nongalactic Astrophysics +1607.03937 Earth and Planetary Astrophysics +1607.04227 Mesoscale and Nanoscale Physics +1607.04903 Machine Learning +1607.05117 Strongly Correlated Electrons +1607.05661 +1607.05735 +1607.05841 Superconductivity +1607.05860 Lattice +1607.06222 +1607.06391 High Energy Astrophysical Phenomena +1607.06408 Computer Vision and Pattern Recognition +1607.06637 Plasma Physics +1607.06829 Solar and Stellar Astrophysics +1607.07497 Data Structures and Algorithms +1607.07627 Experiment +1607.07675 Astrophysics of Galaxies +1607.07682 Number Theory +1607.08363 Logic in Computer Science +1607.08411 Superconductivity +1607.08538 Astrophysics of Galaxies +1607.08862 High Energy Astrophysical Phenomena +1608.00025 Quantum Gases +1608.00197 Strongly Correlated Electrons +1608.00478 Quantum Gases +1608.00852 Phenomenology +1608.00895 Learning +1608.01168 Functional Analysis +1608.01301 High Energy Astrophysical Phenomena +1608.01501 High Energy Astrophysical Phenomena +1608.02136 Solar and Stellar Astrophysics +1608.02390 Mesoscale and Nanoscale Physics +1608.03207 Optimization and Control +1608.03233 Classical Physics +1608.03244 Astrophysics of Galaxies +1608.03316 Strongly Correlated Electrons +1608.03527 Optics +1608.03814 Logic +1608.03838 Phenomenology +1608.04100 +1608.04292 +1608.04569 Mesoscale and Nanoscale Physics +1608.04887 Statistical Mechanics +1608.04958 Methodology +1608.04976 Combinatorics +1608.05084 Astrophysics of Galaxies +1608.05099 High Energy Astrophysical Phenomena +1608.05122 Statistics Theory +1608.05156 Complex Variables +1608.05409 Operator Algebras +1608.05426 Computation and Language +1608.05711 Astrophysics of Galaxies +1608.06097 Solar and Stellar Astrophysics +1608.06483 Astrophysics of Galaxies +1608.06941 Mesoscale and Nanoscale Physics +1608.06943 Chemical Physics +1608.07183 Strongly Correlated Electrons +1608.08035 Solar and Stellar Astrophysics +1608.08619 Rings and Algebras +1608.08901 +1608.08908 Social and Information Networks +1608.08928 Instrumentation and Methods for Astrophysics +1608.09008 High Energy Astrophysical Phenomena +1609.00164 Theory +1609.00367 Phenomenology +1609.00374 High Energy Astrophysical Phenomena +1609.00452 Information Theory +1609.00540 Soft Condensed Matter +1609.00818 Instrumentation and Methods for Astrophysics +1609.00937 +1609.00942 Solar and Stellar Astrophysics +1609.01260 Other Condensed Matter +1609.01314 Earth and Planetary Astrophysics +1609.01369 Materials Science +1609.01422 Astrophysics of Galaxies +1609.01613 Mesoscale and Nanoscale Physics +1609.01729 Strongly Correlated Electrons +1609.01730 Lattice +1609.01764 Biological Physics +1609.01796 Soft Condensed Matter +1609.02149 Theory +1609.02232 High Energy Astrophysical Phenomena +1609.02509 Mesoscale and Nanoscale Physics +1609.02712 Phenomenology +1609.02785 Cosmology and Nongalactic Astrophysics +1609.02903 Materials Science +1609.03462 Mesoscale and Nanoscale Physics +1609.03592 Phenomenology +1609.03611 Cosmology and Nongalactic Astrophysics +1609.03909 Earth and Planetary Astrophysics +1609.04213 Statistical Mechanics +1609.04334 Materials Science +1609.04399 Astrophysics of Galaxies +1609.04585 Numerical Analysis +1609.04963 Solar and Stellar Astrophysics +1609.05075 Solar and Stellar Astrophysics +1609.05638 Earth and Planetary Astrophysics +1609.05645 +1609.05992 Other Condensed Matter +1609.06254 +1609.06376 Solar and Stellar Astrophysics +1609.06448 Astrophysics of Galaxies +1609.06458 Theory +1609.06692 Quantum Gases +1609.06836 Materials Science +1609.07247 Group Theory +1609.07296 Solar and Stellar Astrophysics +1609.07463 +1609.07742 High Energy Astrophysical Phenomena +1609.07890 Statistical Mechanics +1609.08013 +1609.08254 Materials Science +1609.08694 Theory +1609.08863 +1609.08916 Logic in Computer Science +1609.08966 Earth and Planetary Astrophysics +1609.09126 Earth and Planetary Astrophysics +1609.09310 Disordered Systems and Neural Networks +1609.09430 Sound +1609.09462 Mesoscale and Nanoscale Physics +1609.09572 Dynamical Systems +1609.09754 Mesoscale and Nanoscale Physics +1610.00081 Artificial Intelligence +1610.00258 High Energy Astrophysical Phenomena +1610.00308 Mesoscale and Nanoscale Physics +1610.00352 Solar and Stellar Astrophysics +1610.00587 Mesoscale and Nanoscale Physics +1610.00637 Cosmology and Nongalactic Astrophysics +1610.01139 Soft Condensed Matter +1610.01468 Quantum Gases +1610.01509 Solar and Stellar Astrophysics +1610.01529 Optics +1610.01564 Physics Education +1610.01596 Differential Geometry +1610.01605 High Energy Astrophysical Phenomena +1610.01618 Phenomenology +1610.01798 Mesoscale and Nanoscale Physics +1610.01966 Optics +1610.02068 Astrophysics of Galaxies +1610.02121 Computational Physics +1610.02199 Solar and Stellar Astrophysics +1610.02458 High Energy Astrophysical Phenomena +1610.02675 Logic in Computer Science +1610.02705 Astrophysics of Galaxies +1610.02849 Systems and Control +1610.02914 Theory +1610.03058 Disordered Systems and Neural Networks +1610.03137 Strongly Correlated Electrons +1610.03497 +1610.03597 Experiment +1610.03659 Mesoscale and Nanoscale Physics +1610.03779 Digital Libraries +1610.04009 Theory +1610.04193 +1610.04247 +1610.04284 Cosmology and Nongalactic Astrophysics +1610.04475 +1610.04541 Solar and Stellar Astrophysics +1610.04587 Solar and Stellar Astrophysics +1610.04623 High Energy Astrophysical Phenomena +1610.04713 Commutative Algebra +1610.04831 +1610.04907 Astrophysics of Galaxies +1610.05049 Instrumentation and Methods for Astrophysics +1610.05067 Solar and Stellar Astrophysics +1610.05281 +1610.05590 Data Analysis, Statistics and Probability +1610.05822 +1610.05909 Physics and Society +1610.05918 Astrophysics of Galaxies +1610.06070 Theory +1610.06146 Statistical Mechanics +1610.06162 Logic in Computer Science +1610.06186 Theory +1610.06208 Rings and Algebras +1610.06408 Phenomenology +1610.06641 Materials Science +1610.06650 Mesoscale and Nanoscale Physics +1610.07216 Machine Learning +1610.07575 Algebraic Topology +1610.07624 Cosmology and Nongalactic Astrophysics +1610.07811 Earth and Planetary Astrophysics +1610.08423 Chemical Physics +1610.08735 Machine Learning +1610.08772 Logic in Computer Science +1610.08864 Theory +1610.08872 Cosmology and Nongalactic Astrophysics +1610.08891 Atomic Physics +1610.08970 Theory +1610.09380 High Energy Astrophysical Phenomena +1610.09412 Astrophysics of Galaxies +1610.10098 Mesoscale and Nanoscale Physics +1611.00018 +1611.00061 Astrophysics of Galaxies +1611.00585 Astrophysics of Galaxies +1611.00691 Instrumentation and Methods for Astrophysics +1611.00699 Solar and Stellar Astrophysics +1611.00703 +1611.00863 Astrophysics of Galaxies +1611.00895 Materials Science +1611.01071 Astrophysics of Galaxies +1611.01072 Astrophysics of Galaxies +1611.01266 High Energy Astrophysical Phenomena +1611.01273 Cosmology and Nongalactic Astrophysics +1611.01557 Neurons and Cognition +1611.01637 Solar and Stellar Astrophysics +1611.02122 Earth and Planetary Astrophysics +1611.02265 High Energy Astrophysical Phenomena +1611.02278 High Energy Astrophysical Phenomena +1611.02291 High Energy Astrophysical Phenomena +1611.02438 +1611.02517 Instrumentation and Methods for Astrophysics +1611.02621 Space Physics +1611.02713 Astrophysics of Galaxies +1611.02734 Astrophysics of Galaxies +1611.02747 Fluid Dynamics +1611.02765 Earth and Planetary Astrophysics +1611.02808 Mesoscale and Nanoscale Physics +1611.02810 High Energy Astrophysical Phenomena +1611.02870 Astrophysics of Galaxies +1611.03013 Solar and Stellar Astrophysics +1611.03190 Solar and Stellar Astrophysics +1611.03306 Solar and Stellar Astrophysics +1611.03509 Solar and Stellar Astrophysics +1611.03561 Astrophysics of Galaxies +1611.03602 Optics +1611.03809 Combinatorics +1611.04011 Solar and Stellar Astrophysics +1611.04075 High Energy Astrophysical Phenomena +1611.04349 Discrete Mathematics +1611.04396 High Energy Astrophysical Phenomena +1611.04398 Astrophysics of Galaxies +1611.04475 Astrophysics of Galaxies +1611.04595 Astrophysics of Galaxies +1611.04597 Astrophysics of Galaxies +1611.04715 Materials Science +1611.04749 Solar and Stellar Astrophysics +1611.04911 Astrophysics of Galaxies +1611.05006 Solar and Stellar Astrophysics +1611.05044 Astrophysics of Galaxies +1611.05047 Solar and Stellar Astrophysics +1611.05183 Logic in Computer Science +1611.05191 Cosmology and Nongalactic Astrophysics +1611.05393 Astrophysics of Galaxies +1611.05513 Number Theory +1611.05826 Earth and Planetary Astrophysics +1611.05850 Phenomenology +1611.05888 Astrophysics of Galaxies +1611.05986 Astrophysics of Galaxies +1611.06050 High Energy Astrophysical Phenomena +1611.06057 High Energy Astrophysical Phenomena +1611.06176 Earth and Planetary Astrophysics +1611.06191 Solar and Stellar Astrophysics +1611.06237 High Energy Astrophysical Phenomena +1611.06705 Astrophysics of Galaxies +1611.06725 Solar and Stellar Astrophysics +1611.06964 Optics +1611.07034 Astrophysics of Galaxies +1611.07526 Astrophysics of Galaxies +1611.07533 High Energy Astrophysical Phenomena +1611.07578 Cosmology and Nongalactic Astrophysics +1611.07653 High Energy Astrophysical Phenomena +1611.07716 Logic in Computer Science +1611.07742 Solar and Stellar Astrophysics +1611.07746 Astrophysics of Galaxies +1611.07885 Solar and Stellar Astrophysics +1611.08095 Astrophysics of Galaxies +1611.08320 Analysis of PDEs +1611.08469 Differential Geometry +1611.08664 Computer Vision and Pattern Recognition +1611.09097 High Energy Astrophysical Phenomena +1611.09547 Astrophysics of Galaxies +1611.09735 Quantum Gases +1611.09742 Information Theory +1611.10361 Astrophysics of Galaxies +1612.00033 Theory +1612.00286 Solar and Stellar Astrophysics +1612.00400 Solar and Stellar Astrophysics +1612.00535 High Energy Astrophysical Phenomena +1612.00710 Astrophysics of Galaxies +1612.00752 Instrumentation and Methods for Astrophysics +1612.00821 Analysis of PDEs +1612.01101 Astrophysics of Galaxies +1612.01139 Astrophysics of Galaxies +1612.01534 Astrophysics of Galaxies +1612.01736 Strongly Correlated Electrons +1612.02084 Combinatorics +1612.02232 Solar and Stellar Astrophysics +1612.02251 Computation and Language +1612.02612 Theory +1612.03091 Solar and Stellar Astrophysics +1612.03093 Solar and Stellar Astrophysics +1612.03106 Logic +1612.03181 Astrophysics of Galaxies +1612.03260 +1612.03264 Quantum Gases +1612.04024 Theory +1612.04615 Methodology +1612.04639 Optimization and Control +1612.05287 Solar and Stellar Astrophysics +1612.05779 Algebraic Geometry +1612.06549 Computation and Language +1612.06716 Lattice +1612.06825 Computer Vision and Pattern Recognition +1612.06904 Theory +1612.07495 Computation and Language +1612.07505 Differential Geometry +1612.07551 Logic in Computer Science +1612.07945 Astrophysics of Galaxies +1612.08206 Phenomenology +1612.08220 Computation and Language +1612.08728 Lattice +1612.08898 Astrophysics of Galaxies +1612.09060 Economics +1612.09372 Instrumentation and Methods for Astrophysics +1701.00069 +1701.00103 Dynamical Systems +1701.00160 Learning +1701.00176 Chemical Physics +1701.00187 Combinatorics +1701.00332 +1701.00427 Chemical Physics +1701.00492 +1701.00832 Chemical Physics +1701.00848 Complex Variables +1701.01087 +1701.01099 High Energy Astrophysical Phenomena +1701.01100 High Energy Astrophysical Phenomena +1701.01302 Artificial Intelligence +1701.01320 Geophysics +1701.01357 Commutative Algebra +1701.01400 Theory +1701.01423 Geometric Topology +1701.01439 High Energy Astrophysical Phenomena +1701.01504 Materials Science +1701.01529 Probability +1701.01557 High Energy Astrophysical Phenomena +1701.01589 Solar and Stellar Astrophysics +1701.01627 Geophysics +1701.01744 Molecular Networks +1701.01767 Cosmology and Nongalactic Astrophysics +1701.01803 Differential Geometry +1701.01821 Computer Vision and Pattern Recognition +1701.02005 Fluid Dynamics +1701.02012 Dynamical Systems +1701.02014 Optimization and Control +1701.02114 Phenomenology +1701.02236 +1701.02268 Quantum Algebra +1701.02281 Quantum Algebra +1701.02303 Algebraic Geometry +1701.02305 Statistical Mechanics +1701.02306 Experiment +1701.02307 Cosmology and Nongalactic Astrophysics +1701.02308 Astrophysics of Galaxies +1701.02311 +1701.02315 Theory +1701.02316 Representation Theory +1701.02318 Strongly Correlated Electrons +1701.02320 Superconductivity +1701.02321 High Energy Astrophysical Phenomena +1701.02322 Lattice +1701.02324 Distributed, Parallel, and Cluster Computing +1701.02325 Combinatorics +1701.02326 Astrophysics of Galaxies +1701.02327 Materials Science +1701.02328 High Energy Astrophysical Phenomena +1701.02329 Materials Science +1701.02330 Analysis of PDEs +1701.02331 Representation Theory +1701.02333 Numerical Analysis +1701.02335 +1701.02336 High Energy Astrophysical Phenomena +1701.02337 Geometric Topology +1701.02338 Disordered Systems and Neural Networks +1701.02339 Analysis of PDEs +1701.02340 +1701.02341 Commutative Algebra +1701.02342 Instrumentation and Detectors +1701.02343 Computer Vision and Pattern Recognition +1701.02344 Software Engineering +1701.02345 Information Theory +1701.02346 Fluid Dynamics +1701.02350 Differential Geometry +1701.02351 +1701.02353 Algebraic Geometry +1701.02354 Computer Vision and Pattern Recognition +1701.02355 Solar and Stellar Astrophysics +1701.02356 Physics Education +1701.02357 Computer Vision and Pattern Recognition +1701.02358 Classical Analysis and ODEs +1701.02359 Applications +1701.02362 Computer Vision and Pattern Recognition +1701.02363 High Energy Astrophysical Phenomena +1701.02366 Fluid Dynamics +1701.02367 Analysis of PDEs +1701.02368 Social and Information Networks +1701.02371 Fluid Dynamics +1701.02372 Fluid Dynamics +1701.02373 Applications +1701.02374 Computational Complexity +1701.02375 Probability +1701.02376 Analysis of PDEs +1701.02377 Learning +1701.02378 Materials Science +1701.02379 Information Theory +1701.02380 Materials Science +1701.02382 Materials Science +1701.02383 Other Statistics +1701.02384 Information Theory +1701.02386 Machine Learning +1701.02387 Numerical Analysis +1701.02389 Populations and Evolution +1701.02390 Optics +1701.02391 Chemical Physics +1701.02392 Learning +1701.02393 Dynamical Systems +1701.02394 Logic in Computer Science +1701.02397 Probability +1701.02398 +1701.02399 Mesoscale and Nanoscale Physics +1701.02400 Probability +1701.02401 Computational Complexity +1701.02404 Complex Variables +1701.02405 Social and Information Networks +1701.02406 Quantum Algebra +1701.02410 Theory +1701.02411 Probability +1701.02413 Optimization and Control +1701.02414 Optimization and Control +1701.02415 Information Theory +1701.02416 Optimization and Control +1701.02417 Representation Theory +1701.02418 Mesoscale and Nanoscale Physics +1701.02419 Networking and Internet Architecture +1701.02420 Complex Variables +1701.02421 Networking and Internet Architecture +1701.02424 Methodology +1701.02425 Classical Analysis and ODEs +1701.02426 Computer Vision and Pattern Recognition +1701.02427 Cosmology and Nongalactic Astrophysics +1701.02428 Mesoscale and Nanoscale Physics +1701.02430 Mesoscale and Nanoscale Physics +1701.02431 Classical Physics +1701.02434 Methodology +1701.02435 Algebraic Geometry +1701.02438 Materials Science +1701.02439 +1701.02440 Learning +1701.02443 Combinatorics +1701.02444 Information Theory +1701.02445 Logic in Computer Science +1701.02448 +1701.02450 Theory +1701.02451 Instrumentation and Methods for Astrophysics +1701.02452 Group Theory +1701.02453 Experiment +1701.02454 +1701.02455 Digital Libraries +1701.02456 Information Theory +1701.02457 Soft Condensed Matter +1701.02458 Number Theory +1701.02460 Group Theory +1701.02461 Digital Libraries +1701.02465 Statistical Mechanics +1701.02466 Number Theory +1701.02467 Strongly Correlated Electrons +1701.02468 Computer Vision and Pattern Recognition +1701.02471 Combinatorics +1701.02472 Data Structures and Algorithms +1701.02474 Functional Analysis +1701.02475 Materials Science +1701.02476 Materials Science +1701.02477 Computation and Language +1701.02478 Group Theory +1701.02480 Solar and Stellar Astrophysics +1701.02482 Soft Condensed Matter +1701.02483 Methodology +1701.02485 Computer Vision and Pattern Recognition +1701.02486 Statistical Mechanics +1701.02487 Optics +1701.02493 Optics +1701.02494 Logic in Computer Science +1701.02495 Materials Science +1701.02498 Superconductivity +1701.02499 Optics +1701.02500 Superconductivity +1701.02502 Formal Languages and Automata Theory +1701.02503 Mesoscale and Nanoscale Physics +1701.02504 Fluid Dynamics +1701.02505 Group Theory +1701.02507 Astrophysics of Galaxies +1701.02508 +1701.02509 Combinatorics +1701.02512 Methodology +1701.02513 Phenomenology +1701.02515 Number Theory +1701.02517 Phenomenology +1701.02518 Combinatorics +1701.02519 Theory +1701.02520 Soft Condensed Matter +1701.02521 Mesoscale and Nanoscale Physics +1701.02522 Numerical Analysis +1701.02523 +1701.02524 Networking and Internet Architecture +1701.02525 Number Theory +1701.02526 Logic in Computer Science +1701.02527 Probability +1701.02529 Geophysics +1701.02530 Quantum Gases +1701.02533 Instrumentation and Methods for Astrophysics +1701.02534 Earth and Planetary Astrophysics +1701.02537 Solar and Stellar Astrophysics +1701.02538 Information Theory +1701.02540 Geophysics +1701.02541 Fluid Dynamics +1701.02542 Solar and Stellar Astrophysics +1701.02543 Artificial Intelligence +1701.02545 Artificial Intelligence +1701.02546 Logic in Computer Science +1701.02548 Number Theory +1701.02550 Geophysics +1701.02552 +1701.02553 Cosmology and Nongalactic Astrophysics +1701.02555 Distributed, Parallel, and Cluster Computing +1701.02557 Physics Education +1701.02559 Experiment +1701.02560 Information Theory +1701.02562 Quantitative Methods +1701.02564 Operator Algebras +1701.02565 Biological Physics +1701.02566 Fluid Dynamics +1701.02567 Mesoscale and Nanoscale Physics +1701.02570 Differential Geometry +1701.02571 Logic in Computer Science +1701.02572 Populations and Evolution +1701.02573 Algebraic Geometry +1701.02575 Commutative Algebra +1701.02576 Analysis of PDEs +1701.02577 Numerical Analysis +1701.02582 Solar and Stellar Astrophysics +1701.02583 Classical Physics +1701.02584 General Physics +1701.02585 Soft Condensed Matter +1701.02586 Human-Computer Interaction +1701.02587 +1701.02588 Quantitative Methods +1701.02591 Solar and Stellar Astrophysics +1701.02592 Adaptation and Self-Organizing Systems +1701.02593 Computation and Language +1701.02594 Rings and Algebras +1701.02599 Neurons and Cognition +1701.02600 +1701.02601 Distributed, Parallel, and Cluster Computing +1701.02603 Differential Geometry +1701.02604 Number Theory +1701.02605 Number Theory +1701.02606 Networking and Internet Architecture +1701.02610 Computer Vision and Pattern Recognition +1701.02612 Information Theory +1701.02613 Mesoscale and Nanoscale Physics +1701.02615 Optimization and Control +1701.02616 Analysis of PDEs +1701.02617 Information Retrieval +1701.02618 Number Theory +1701.02619 Dynamical Systems +1701.02620 Computer Vision and Pattern Recognition +1701.02621 Physics and Society +1701.02622 Differential Geometry +1701.02623 Logic in Computer Science +1701.02624 Instrumentation and Methods for Astrophysics +1701.02625 Probability +1701.02626 Probability +1701.02627 +1701.02628 Distributed, Parallel, and Cluster Computing +1701.02630 Optics +1701.02631 Classical Analysis and ODEs +1701.02634 Databases +1701.02635 Mesoscale and Nanoscale Physics +1701.02637 Mesoscale and Nanoscale Physics +1701.02638 Cosmology and Nongalactic Astrophysics +1701.02640 Atomic Physics +1701.02643 Applications +1701.02644 Lattice +1701.02645 +1701.02646 Economics +1701.02647 General Finance +1701.02648 Programming Languages +1701.02649 Economics +1701.02651 Combinatorics +1701.02656 Analysis of PDEs +1701.02657 Dynamical Systems +1701.02658 Information Theory +1701.02659 General Physics +1701.02661 Probability +1701.02662 General Finance +1701.02663 Experiment +1701.02665 Geophysics +1701.02668 Programming Languages +1701.02669 Multimedia +1701.02670 General Physics +1701.02672 Computational Physics +1701.02674 Number Theory +1701.02676 Computer Vision and Pattern Recognition +1701.02679 Optimization and Control +1701.02680 Statistical Mechanics +1701.02681 Computational Finance +1701.02682 Programming Languages +1701.02684 Metric Geometry +1701.02686 Number Theory +1701.02687 Number Theory +1701.02689 Analysis of PDEs +1701.02690 Social and Information Networks +1701.02691 +1701.02693 Combinatorics +1701.02694 Social and Information Networks +1701.02695 Dynamical Systems +1701.02696 Optics +1701.02697 Instrumentation and Detectors +1701.02698 Astrophysics of Galaxies +1701.02699 +1701.02700 Superconductivity +1701.02701 Mesoscale and Nanoscale Physics +1701.02702 Soft Condensed Matter +1701.02704 Computer Vision and Pattern Recognition +1701.02708 Discrete Mathematics +1701.02709 Classical Analysis and ODEs +1701.02710 Information Theory +1701.02711 Cryptography and Security +1701.02712 Algebraic Geometry +1701.02713 Solar and Stellar Astrophysics +1701.02714 Systems and Control +1701.02715 Mesoscale and Nanoscale Physics +1701.02716 Combinatorics +1701.02718 Computer Vision and Pattern Recognition +1701.02719 Solar and Stellar Astrophysics +1701.02720 Computation and Language +1701.02721 Analysis of PDEs +1701.02722 Plasma Physics +1701.02725 Soft Condensed Matter +1701.02726 High Energy Astrophysical Phenomena +1701.02727 Soft Condensed Matter +1701.02728 High Energy Astrophysical Phenomena +adap-org/9710001 Adaptation and Self-Organizing Systems +cs/0412063 Logic in Computer Science +cs/0501040 Logic in Computer Science +cs/0502005 Computational Complexity +cs/0502047 Logic in Computer Science +cs/0503018 Artificial Intelligence +cs/0503067 Programming Languages +cs/0504027 Logic in Computer Science +cs/0505013 Logic in Computer Science +cs/0505037 Logic in Computer Science +cs/0505063 Logic in Computer Science +cs/0506061 Programming Languages +cs/0507007 Computer Science and Game Theory +cs/0508003 Logic in Computer Science +cs/0508044 Logic in Computer Science +cs/0508048 Logic in Computer Science +cs/0509019 Logic in Computer Science +cs/0510010 Logic in Computer Science +cs/0510066 Logic in Computer Science +cs/0511097 Logic in Computer Science +cs/0512009 Logic in Computer Science +cs/0512012 Logic in Computer Science +cs/0512036 Logic in Computer Science +cs/0601032 Artificial Intelligence +cs/0601134 Logic in Computer Science +cs/0602024 Logic in Computer Science +cs/0605054 Logic in Computer Science +cs/0605064 Logic in Computer Science +cs/0606053 Logic in Computer Science +cs/0606062 Logic in Computer Science +cs/0606065 Databases +cs/0606072 Programming Languages +cs/0606084 Logic in Computer Science +cs/0608035 Programming Languages +cs/0608062 General Literature +cs/0609040 Logic in Computer Science +cs/0609080 Logic in Computer Science +cs/0609108 Computational Complexity +cs/0609111 Artificial Intelligence +cs/0610035 Logic in Computer Science +cs/0610081 Logic in Computer Science +cs/0611004 Logic in Computer Science +cs/0611029 Logic in Computer Science +cs/0611048 Logic in Computer Science +cs/0611119 Logic in Computer Science +cs/0612003 Logic in Computer Science +cs/0612069 Logic in Computer Science +cs/0612116 Logic in Computer Science +cs/0701138 Logic in Computer Science +cs/0701140 Computer Science and Game Theory +cs/0701154 Logic in Computer Science +cs/0701184 Artificial Intelligence +cs/0702120 Logic in Computer Science +cs/0702169 Programming Languages +cs/0703039 Logic in Computer Science +cs/0703064 Discrete Mathematics +cs/0703079 Logic in Computer Science +hep-ph/0610358 Phenomenology +math/0505418 Logic +math/0512110 General Topology +math/0602544 Logic +1007.2250 Theory +1104.2803 Logic in Computer Science +1109.0304 Classical Analysis and ODEs +1204.6307 +1207.4379 Analysis of PDEs +1207.5072 Systems and Control +1301.2727 Mesoscale and Nanoscale Physics +1304.1003 History and Philosophy of Physics +1305.1439 Systems and Control +1305.2076 Disordered Systems and Neural Networks +1305.4377 Algebraic Geometry +1306.6538 Algebraic Geometry +1307.3681 Algebraic Geometry +1308.6822 Accelerator Physics +1310.0370 Representation Theory +1312.0821 Systems and Control +1312.1421 Information Theory +1312.5675 Algebraic Geometry +1401.6570 Classical Analysis and ODEs +1403.2543 +1405.0043 Representation Theory +1405.6243 Algebraic Geometry +1407.4083 +1407.4133 +1407.5525 Applications +1410.2212 Algebraic Geometry +1411.7047 +1412.4259 Formal Languages and Automata Theory +1412.4866 Algebraic Topology +1502.00089 Data Structures and Algorithms +1502.02856 Probability +1502.06885 Number Theory +1503.08489 Algebraic Topology +1504.01244 +1504.05805 +1505.00020 Materials Science +1505.05497 Group Theory +1506.01759 Algebraic Topology +1506.04532 Group Theory +1506.04536 Group Theory +1506.07383 +1506.07803 Classical Analysis and ODEs +1506.08970 Algebraic Topology +1507.03350 Representation Theory +1507.04032 Classical Analysis and ODEs +1507.04683 +1508.06156 Plasma Physics +1508.06694 Theory +1509.01679 Optimization and Control +1509.02581 Combinatorics +1509.03535 Probability +1509.03968 Statistical Mechanics +1509.05533 Probability +1509.08216 Discrete Mathematics +1510.04192 +1511.05274 Probability +1512.00365 Combinatorics +1512.06673 Atomic Physics +1512.07744 Combinatorics +1512.08934 Chemical Physics +1601.01222 Computers and Society +1601.01370 Dynamical Systems +1601.01504 Information Theory +1601.02449 Theory +1601.02764 Atomic Physics +1601.04403 Theory +1601.07931 Applications +1602.01668 Solar and Stellar Astrophysics +1602.02379 Algebraic Geometry +1602.05116 +1602.06177 Mathematical Finance +1602.08004 Logic in Computer Science +1603.00329 Computer Science and Game Theory +1603.01763 +1603.02105 Operator Algebras +1603.02877 +1603.06036 Computer Vision and Pattern Recognition +1603.07934 Algebraic Topology +1604.00694 Theory +1604.01925 Information Theory +1604.03660 Information Theory +1604.04124 Plasma Physics +1604.04595 Emerging Technologies +1604.05054 Numerical Analysis +1604.06196 Networking and Internet Architecture +1604.06294 Algebraic Geometry +1604.07212 Methodology +1605.00315 Operator Algebras +1605.00856 Numerical Analysis +1605.00874 +1605.04147 Quantum Algebra +1605.04663 +1605.08444 Mesoscale and Nanoscale Physics +1605.09378 Phenomenology +1605.09394 Astrophysics of Galaxies +1606.00230 Dynamical Systems +1606.01273 Chemical Physics +1606.01672 Computer Vision and Pattern Recognition +1606.02080 Information Theory +1606.02100 Analysis of PDEs +1606.02570 Computers and Society +1606.04728 Mesoscale and Nanoscale Physics +1606.04909 Numerical Analysis +1606.05125 Superconductivity +1606.06533 Analysis of PDEs +1606.08032 Chemical Physics +1606.08541 Systems and Control +1606.08905 Distributed, Parallel, and Cluster Computing +1607.00036 Learning +1607.00573 Plasma Physics +1607.00885 +1607.03012 Algebraic Geometry +1607.04218 Cosmology and Nongalactic Astrophysics +1607.06010 Algebraic Geometry +1607.06752 Plasma Physics +1607.08332 Numerical Analysis +1608.01089 Phenomenology +1608.01900 Physics and Society +1608.02839 High Energy Astrophysical Phenomena +1608.03152 Strongly Correlated Electrons +1608.03984 Performance +1608.04565 +1608.05274 Mesoscale and Nanoscale Physics +1608.05437 Mesoscale and Nanoscale Physics +1608.05565 Methodology +1608.05598 Dynamical Systems +1608.06135 Social and Information Networks +1608.08472 Artificial Intelligence +1608.08815 Group Theory +1609.00688 +1609.00930 Plasma Physics +1609.01513 High Energy Astrophysical Phenomena +1609.01902 Mesoscale and Nanoscale Physics +1609.02079 Emerging Technologies +1609.05391 Experiment +1609.05514 Physics and Society +1609.05743 High Energy Astrophysical Phenomena +1609.06048 Cosmology and Nongalactic Astrophysics +1609.07539 Adaptation and Self-Organizing Systems +1609.07875 Fluid Dynamics +1609.08127 Phenomenology +1609.08637 Phenomenology +1609.09666 Materials Science +1610.00252 Disordered Systems and Neural Networks +1610.00437 Superconductivity +1610.01305 Phenomenology +1610.01477 K-Theory and Homology +1610.02028 +1610.02517 Software Engineering +1610.02626 Solar and Stellar Astrophysics +1610.03075 Astrophysics of Galaxies +1610.04197 Optics +1610.04214 +1610.05088 Experiment +1610.05255 +1610.06137 Plasma Physics +1610.06417 Materials Science +1610.06660 Chemical Physics +1610.06881 Optics +1610.07146 Theory +1610.08974 Applications +1610.09966 Theory +1610.10071 Plasma Physics +1611.00295 Theory +1611.00573 Strongly Correlated Electrons +1611.00621 Dynamical Systems +1611.00729 Soft Condensed Matter +1611.01446 Cosmology and Nongalactic Astrophysics +1611.01496 Probability +1611.01780 Differential Geometry +1611.02262 Physics Education +1611.02627 Group Theory +1611.02914 +1611.04556 Materials Science +1611.04643 +1611.05028 Phenomenology +1611.05662 Group Theory +1611.06328 Combinatorics +1611.06947 Social and Information Networks +1611.07305 Learning +1611.07447 Plasma Physics +1611.07596 Computer Vision and Pattern Recognition +1611.07950 Mesoscale and Nanoscale Physics +1611.08559 Strongly Correlated Electrons +1611.08621 Soft Condensed Matter +1611.08814 +1611.09090 Probability +1611.09298 Mesoscale and Nanoscale Physics +1611.09571 Computer Vision and Pattern Recognition +1611.09604 High Energy Astrophysical Phenomena +1611.09608 High Energy Astrophysical Phenomena +1611.09748 +1612.00110 +1612.00354 Symplectic Geometry +1612.00410 Learning +1612.00485 Chemical Physics +1612.01428 Social and Information Networks +1612.01511 Social and Information Networks +1612.02359 Mesoscale and Nanoscale Physics +1612.02597 Materials Science +1612.03885 Theory +1612.03923 Phenomenology +1612.04738 Analysis of PDEs +1612.05427 Analysis of PDEs +1612.06787 Theory +1612.07210 Theory +1612.07291 Experiment +1612.07625 Computer Vision and Pattern Recognition +1612.07972 Functional Analysis +1612.08471 Theory +1612.08988 Quantum Gases +1612.09537 Phenomenology +1701.00402 Strongly Correlated Electrons +1701.00931 Algebraic Geometry +1701.01122 Astrophysics of Galaxies +1701.01187 Group Theory +1701.01371 Mesoscale and Nanoscale Physics +1701.01663 Information Theory +1701.01815 Phenomenology +1701.01977 Earth and Planetary Astrophysics +1701.02516 Combinatorics +1701.03122 Astrophysics of Galaxies +1701.03305 Information Theory +1701.04144 Analysis of PDEs +1701.04146 Analysis of PDEs +1701.04224 Computer Vision and Pattern Recognition +1701.04283 Combinatorics +1701.05173 Probability +1701.05543 Mesoscale and Nanoscale Physics +1701.05681 Learning +1701.07116 Rings and Algebras +1701.07117 Rings and Algebras +1701.07189 Rings and Algebras +1701.07267 High Energy Astrophysical Phenomena +1701.07270 Analysis of PDEs +1701.07366 Geometric Topology +1701.07480 Numerical Analysis +1701.07566 Logic +1701.07913 Cosmology and Nongalactic Astrophysics +1701.07984 Probability +1701.08148 Mesoscale and Nanoscale Physics +1701.08407 Information Theory +1701.08661 Artificial Intelligence +1701.08700 Materials Science +1701.08912 Materials Science +1702.00896 +1702.00922 Geometric Topology +1702.01078 Materials Science +1702.01176 Computation and Language +1702.01553 Optimization and Control +1702.01554 Optimization and Control +1702.01559 Analysis of PDEs +1702.01560 Analysis of PDEs +1702.02285 Sound +1702.02289 Sound +1702.02290 Algebraic Geometry +1702.02469 +1702.02712 Superconductivity +1702.03182 Soft Condensed Matter +1702.03192 Distributed, Parallel, and Cluster Computing +1702.03648 Classical Analysis and ODEs +1702.03785 Analysis of PDEs +1702.03792 Analysis of PDEs +1702.04252 Combinatorics +1702.04731 Astrophysics of Galaxies +1702.04872 Software Engineering +1702.05074 Information Theory +1702.05325 Biological Physics +1702.05339 Biological Physics +1702.05637 Number Theory +1702.05755 Theory +1702.05787 Combinatorics +1702.05791 Combinatorics +1702.06200 Analysis of PDEs +1702.06202 Analysis of PDEs +1702.06249 Physics Education +1702.06432 Representation Theory +1702.06504 Logic +1702.06877 Computers and Society +1702.07166 +1702.07263 Theory +1702.07616 Mesoscale and Nanoscale Physics +1702.07632 Representation Theory +1702.08031 Dynamical Systems +1702.08634 Computer Vision and Pattern Recognition +1702.08667 Number Theory +1702.08683 Classical Analysis and ODEs +1702.08778 Instrumentation and Methods for Astrophysics +1702.08813 Systems and Control +1703.00242 Computational Complexity +1703.00653 Spectral Theory +1703.00846 Chemical Physics +1703.00952 Accelerator Physics +1703.00953 Accelerator Physics +1703.01301 Instrumentation and Methods for Astrophysics +1703.01687 Exactly Solvable and Integrable Systems +1703.01689 Exactly Solvable and Integrable Systems +1703.01836 Quantum Gases +1703.01936 Phenomenology +1703.02046 High Energy Astrophysical Phenomena +1703.02114 Commutative Algebra +1703.02492 Learning +1703.02718 Astrophysics of Galaxies +1703.02769 Social and Information Networks +1703.02823 Algebraic Geometry +1703.02836 +1703.03296 Fluid Dynamics +1703.03397 Plasma Physics +1703.03489 Dynamical Systems +1703.03508 Materials Science +1703.04197 Computer Vision and Pattern Recognition +1703.04307 Social and Information Networks +1703.04407 Theory +1703.04532 Instrumentation and Detectors +1703.04539 Software Engineering +1703.04545 Instrumentation and Methods for Astrophysics +1703.04563 Software Engineering +1703.04564 Software Engineering +1703.04565 Software Engineering +1703.04567 Software Engineering +1703.04568 Software Engineering +1703.04596 +1703.04741 Artificial Intelligence +1703.04785 Distributed, Parallel, and Cluster Computing +1703.04912 Artificial Intelligence +1703.04937 High Energy Astrophysical Phenomena +1703.05162 Theory +1703.05163 Astrophysics of Galaxies +1703.05213 Mesoscale and Nanoscale Physics +1703.05307 Information Theory +1703.05311 Instrumentation and Detectors +1703.05358 Solar and Stellar Astrophysics +1703.05393 Computer Vision and Pattern Recognition +1703.05412 Combinatorics +1703.05436 Theory +1703.05472 Emerging Technologies +1703.05483 Systems and Control +1703.05564 Probability +1703.05577 Quantum Algebra +1703.05669 Exactly Solvable and Integrable Systems +1703.05703 Experiment +1703.05706 Information Retrieval +1703.05746 +1703.05757 Statistics Theory +1703.05759 Instrumentation and Detectors +1703.05760 Instrumentation and Detectors +1703.05761 Instrumentation and Detectors +1703.05762 Earth and Planetary Astrophysics +1703.05763 High Energy Astrophysical Phenomena +1703.05764 Astrophysics of Galaxies +1703.05766 Astrophysics of Galaxies +1703.05767 Astrophysics of Galaxies +1703.05768 Astrophysics of Galaxies +1703.05770 Combinatorics +1703.05771 Theory +1703.05772 High Energy Astrophysical Phenomena +1703.05775 Solar and Stellar Astrophysics +1703.05777 Digital Libraries +1703.05778 Multimedia +1703.05779 Statistical Mechanics +1703.05780 Theory +1703.05781 Group Theory +1703.05782 Methodology +1703.05783 +1703.05784 Computational Complexity +1703.05785 Computer Vision and Pattern Recognition +1703.05786 Phenomenology +1703.05787 Quantum Algebra +1703.05788 Probability +1703.05789 Plasma Physics +1703.05790 +1703.05791 Phenomenology +1703.05792 Accelerator Physics +1703.05794 Methodology +1703.05795 Computational Physics +1703.05796 High Energy Astrophysical Phenomena +1703.05797 Rings and Algebras +1703.05799 Applications +1703.05800 +1703.05802 Solar and Stellar Astrophysics +1703.05803 Superconductivity +1703.05804 Superconductivity +1703.05805 +1703.05806 Accelerator Physics +1703.05807 Neural and Evolutionary Computing +1703.05808 +1703.05809 Phenomenology +1703.05810 Populations and Evolution +1703.05811 Instrumentation and Methods for Astrophysics +1703.05812 Logic in Computer Science +1703.05813 Geometric Topology +1703.05814 Optimization and Control +1703.05815 Earth and Planetary Astrophysics +1703.05817 Solar and Stellar Astrophysics +1703.05818 Theory +1703.05819 Social and Information Networks +1703.05820 Learning +1703.05821 Other Condensed Matter +1703.05823 Instrumentation and Methods for Astrophysics +1703.05826 Biomolecules +1703.05827 Subcellular Processes +1703.05828 +1703.05829 Analysis of PDEs +1703.05831 +1703.05832 Differential Geometry +1703.05833 Physics and Society +1703.05834 Human-Computer Interaction +1703.05836 Astrophysics of Galaxies +1703.05837 Mesoscale and Nanoscale Physics +1703.05838 Astrophysics of Galaxies +1703.05839 Probability +1703.05841 Machine Learning +1703.05842 Quantum Gases +1703.05843 Representation Theory +1703.05844 Disordered Systems and Neural Networks +1703.05845 Phenomenology +1703.05846 Geometric Topology +1703.05847 Numerical Analysis +1703.05850 Exactly Solvable and Integrable Systems +1703.05851 Information Retrieval +1703.05852 Group Theory +1703.05853 Computer Vision and Pattern Recognition +1703.05854 Category Theory +1703.05855 Exactly Solvable and Integrable Systems +1703.05856 Combinatorics +1703.05857 +1703.05858 Combinatorics +1703.05859 Networking and Internet Architecture +1703.05860 +1703.05861 Combinatorics +1703.05862 Phenomenology +1703.05863 Computational Geometry +1703.05864 Astrophysics of Galaxies +1703.05866 Quantum Gases +1703.05867 Functional Analysis +1703.05869 Geometric Topology +1703.05871 Fluid Dynamics +1703.05872 Mesoscale and Nanoscale Physics +1703.05874 Mesoscale and Nanoscale Physics +1703.05875 Mesoscale and Nanoscale Physics +1703.05876 +1703.05877 Atomic Physics +1703.05878 Accelerator Physics +1703.05879 Dynamical Systems +1703.05880 Computation and Language +1703.05881 Discrete Mathematics +1703.05882 Algebraic Geometry +1703.05883 Astrophysics of Galaxies +1703.05885 +1703.05886 Plasma Physics +1703.05888 Dynamical Systems +1703.05889 Fluid Dynamics +1703.05890 +1703.05891 Metric Geometry +1703.05892 Mesoscale and Nanoscale Physics +1703.05893 Optimization and Control +1703.05894 Astrophysics of Galaxies +1703.05895 Networking and Internet Architecture +1703.05896 Materials Science +1703.05897 Dynamical Systems +1703.05898 Representation Theory +1703.05899 Methodology +1703.05900 Probability +1703.05901 Numerical Analysis +1703.05902 Computer Science and Game Theory +1703.05903 Networking and Internet Architecture +1703.05904 Commutative Algebra +1703.05905 Functional Analysis +1703.05906 Space Physics +1703.05907 Networking and Internet Architecture +1703.05909 Number Theory +1703.05910 Computational Physics +1703.05911 Geometric Topology +1703.05912 Superconductivity +1703.05913 Computer Vision and Pattern Recognition +1703.05914 General Topology +1703.05915 Algebraic Geometry +1703.05916 Computation and Language +1703.05917 Neurons and Cognition +1703.05918 +1703.05919 +1703.05920 Analysis of PDEs +1703.05921 Computer Vision and Pattern Recognition +1703.05922 Social and Information Networks +1703.05923 Algebraic Geometry +1703.05924 +1703.05927 Fluid Dynamics +1703.05928 +1703.05929 Combinatorics +1703.05930 Logic +1703.05931 Mesoscale and Nanoscale Physics +1703.05932 Information Theory +1703.05933 Mesoscale and Nanoscale Physics +1703.05934 Analysis of PDEs +1703.05935 Algebraic Geometry +1703.05936 Optimization and Control +1703.05937 High Energy Astrophysical Phenomena +1703.05938 +1703.05939 Materials Science +1703.05940 Lattice +1703.05941 Statistical Mechanics +1703.05942 Networking and Internet Architecture +1703.05943 Probability +1703.05945 Solar and Stellar Astrophysics +1703.05946 Optimization and Control +1703.05947 Phenomenology +1703.05948 Atomic Physics +1703.05949 +1703.05950 Earth and Planetary Astrophysics +1703.05951 Populations and Evolution +1703.05952 Probability +1703.05953 Cryptography and Security +1703.05954 Instrumentation and Detectors +1703.05955 Neural and Evolutionary Computing +1703.05956 +1703.05957 Atomic Physics +1703.05958 Mesoscale and Nanoscale Physics +1703.05959 Cosmology and Nongalactic Astrophysics +1703.05960 Combinatorics +1703.05961 Astrophysics of Galaxies +1703.05962 K-Theory and Homology +1703.05963 Numerical Analysis +1703.05964 Physics and Society +1703.05965 Phenomenology +1703.05966 Analysis of PDEs +1703.05967 Commutative Algebra +1703.05968 Representation Theory +1703.05969 +1703.05970 Astrophysics of Galaxies +1703.05971 Statistical Mechanics +1703.05972 Mesoscale and Nanoscale Physics +1703.05973 Theory +1703.05974 Social and Information Networks +1703.05975 Networking and Internet Architecture +1703.05976 Complex Variables +1703.05977 Phenomenology +1703.05978 Materials Science +1703.05979 Economics +1703.05980 +1703.05981 +1703.05983 Optics +1703.05984 Computation +1703.05986 Mesoscale and Nanoscale Physics +1703.05987 Mesoscale and Nanoscale Physics +1703.05989 Analysis of PDEs +1703.05991 Systems and Control +1703.05992 Statistical Mechanics +1703.05993 Instrumentation and Detectors +1703.05994 Social and Information Networks +1703.05995 High Energy Astrophysical Phenomena +1703.05996 Information Theory +1703.05997 Data Structures and Algorithms +1703.05998 +1703.05999 Logic +1703.06000 Computer Vision and Pattern Recognition +1703.06001 Methodology +1703.06002 Astrophysics of Galaxies +1703.06003 Computer Vision and Pattern Recognition +1703.06004 General Physics +1703.06005 Solar and Stellar Astrophysics +1703.06006 Atomic Physics +1703.06009 General Physics +1703.06010 Physics Education +1703.06011 Quantum Algebra +1703.06012 Cosmology and Nongalactic Astrophysics +1703.06014 Optics +1703.06015 Information Theory +1703.06017 Data Analysis, Statistics and Probability +1703.06018 Data Analysis, Statistics and Probability +1703.06019 Phenomenology +1703.06020 Mathematical Finance +1703.06021 Logic in Computer Science +1703.06022 Atomic Physics +1703.06023 General Physics +1703.06024 +1703.06025 +1703.06026 Adaptation and Self-Organizing Systems +1703.06027 Physics and Society +1703.06028 General Physics +1703.06029 Computer Vision and Pattern Recognition +1703.06030 General Physics +1703.06031 Methodology +1703.06032 General Physics +1703.06033 Theory +1703.06034 Combinatorics +1703.06035 Materials Science +1703.06036 Fluid Dynamics +1703.06037 Materials Science +1703.06038 Combinatorics +1703.06039 +1703.06040 Discrete Mathematics +1703.06041 Solar and Stellar Astrophysics +1703.06042 Artificial Intelligence +1703.06043 Neurons and Cognition +1703.06045 Artificial Intelligence +1703.06046 Mesoscale and Nanoscale Physics +1703.06047 Combinatorics +1703.06048 Data Structures and Algorithms +1703.06049 Superconductivity +1703.06050 Strongly Correlated Electrons +1703.06052 Sound +1703.06055 Strongly Correlated Electrons +1703.06056 Probability +1703.06057 Strongly Correlated Electrons +1703.06058 Computer Science and Game Theory +1703.06059 Mesoscale and Nanoscale Physics +1703.06060 Learning +1703.06061 Data Structures and Algorithms +1703.06062 Statistical Mechanics +1703.06063 Computers and Society +1703.06064 Phenomenology +1703.06065 Machine Learning +1703.06066 Computer Vision and Pattern Recognition +1703.06067 Soft Condensed Matter +1703.06068 +1703.06069 Information Theory +1703.06071 Populations and Evolution +1703.06072 Lattice +1703.06073 Physics and Society +1703.06074 Data Structures and Algorithms +1703.06076 Computers and Society +1703.06077 +1703.06078 +1703.06079 Phenomenology +1703.06080 Superconductivity +1703.06081 Other Condensed Matter +1703.06082 Phenomenology +1703.06083 Quantum Gases +1703.06084 Theory +1703.06085 Phenomenology +1703.06086 Methodology +1703.06087 Phenomenology +1703.06088 Mesoscale and Nanoscale Physics +1703.06089 Number Theory +1703.06090 Probability +1703.06092 Group Theory +1703.06093 Algebraic Topology +1703.06094 Analysis of PDEs +1703.06095 Experiment +1703.06096 Adaptation and Self-Organizing Systems +1703.06097 Numerical Analysis +1703.06098 Computation +1703.06099 Mesoscale and Nanoscale Physics +1703.06100 Materials Science +1703.06101 Software Engineering +1703.06102 +1703.06104 Machine Learning +1703.06105 Analysis of PDEs +1703.06106 Theory +1703.06107 Computational Geometry +1703.06108 Information Retrieval +1703.06109 Other Statistics +1703.06111 Combinatorics +1703.06112 Numerical Analysis +1703.06113 Data Structures and Algorithms +1703.06115 Probability +1703.06117 Computers and Society +1703.06118 Computers and Society +1703.06119 Theory +1703.06120 Symbolic Computation +1703.06121 Probability +1703.06122 Physics and Society +1703.06123 Quantum Algebra +1703.06126 Dynamical Systems +1703.06127 Combinatorics +1703.06128 Information Theory +1703.06129 Plasma Physics +1703.06130 Distributed, Parallel, and Cluster Computing +1703.06132 Theory +1703.06133 Logic in Computer Science +1703.06135 High Energy Astrophysical Phenomena +1703.06136 Earth and Planetary Astrophysics +0812.1984 +1108.2433 +1206.4366 Computer Science and Game Theory +1301.0361 +1304.0682 Information Theory +1306.0586 Optimization and Control +1311.1875 Strongly Correlated Electrons +1311.6704 Quantum Gases +1312.1231 Computational Geometry +1401.8127 +1405.3138 Astrophysics of Galaxies +1406.1857 History and Overview +1407.8224 Mesoscale and Nanoscale Physics +1408.2678 Representation Theory +1408.2952 Instrumentation and Detectors +1409.4202 Numerical Analysis +1410.4152 Algebraic Geometry +1410.4761 Group Theory +1411.1303 Metric Geometry +1411.3699 Differential Geometry +1412.0981 Programming Languages +1412.3011 Phenomenology +1501.00442 Statistics Theory +1501.06495 Operator Algebras +1502.02187 Metric Geometry +1503.04045 Formal Languages and Automata Theory +1503.08590 Classical Analysis and ODEs +1504.00661 Differential Geometry +1505.07297 Combinatorics +1506.00508 Physics and Society +1506.02117 Learning +1506.04099 Astrophysics of Galaxies +1506.04415 Phenomenology +1506.04736 Functional Analysis +1506.08041 Analysis of PDEs +1507.02674 Discrete Mathematics +1507.04573 Phenomenology +1508.04815 Geometric Topology +1508.06573 Geometric Topology +1509.00054 Theory +1509.05151 +1509.05356 Combinatorics +1509.07824 History and Overview +1509.09168 Combinatorics +1510.00379 Analysis of PDEs +1510.00851 +1510.01757 Methodology +1510.02198 +1510.08887 +1510.08919 Probability +1511.00895 +1511.01453 Methodology +1511.05374 Functional Analysis +1511.06158 +1511.06326 Phenomenology +1511.06667 Probability +1511.07704 Algebraic Geometry +1512.04324 Commutative Algebra +1512.05892 Statistical Mechanics +1512.06543 Quantum Gases +1512.06632 Logic in Computer Science +1512.07123 +1601.01034 +1601.02569 +1601.04013 Atomic Physics +1601.06335 Analysis of PDEs +1602.00181 Quantum Algebra +1602.00816 Fluid Dynamics +1602.02103 Cosmology and Nongalactic Astrophysics +1602.02451 Analysis of PDEs +1602.03124 Computational Complexity +1602.03851 Probability +1602.04152 Computational Geometry +1602.04433 Learning +1602.04625 Numerical Analysis +1602.05189 Populations and Evolution +1602.05523 Applications +1602.06201 Materials Science +1602.07990 Strongly Correlated Electrons +1603.01166 Operator Algebras +1603.02349 Quantum Algebra +1603.04310 Superconductivity +1603.04487 +1603.06249 Number Theory +1603.06834 Cosmology and Nongalactic Astrophysics +1604.00438 Combinatorics +1604.01548 Superconductivity +1604.01837 +1604.03661 Data Structures and Algorithms +1604.04065 Group Theory +1604.04233 +1604.05949 Number Theory +1604.06525 Graphics +1604.07347 +1604.08661 Functional Analysis +1605.01443 Optimization and Control +1605.02615 Information Theory +1605.04300 Metric Geometry +1605.04356 Cosmology and Nongalactic Astrophysics +1605.04893 Numerical Analysis +1605.05176 Classical Analysis and ODEs +1605.05261 +1605.05603 Astrophysics of Galaxies +1605.06191 Representation Theory +1605.06829 Theory +1605.06891 Algebraic Geometry +1605.07401 Algebraic Topology +1605.07580 Representation Theory +1605.09777 Probability +1606.00869 Number Theory +1606.01542 Operator Algebras +1606.01614 Computation and Language +1606.01630 Analysis of PDEs +1606.01876 Quantum Algebra +1606.05137 Biological Physics +1606.05571 Mesoscale and Nanoscale Physics +1606.06005 Logic +1606.06560 Numerical Analysis +1606.06716 Algebraic Geometry +1606.07419 Computer Vision and Pattern Recognition +1606.07978 Biological Physics +1606.08768 Physics and Society +1606.09048 Populations and Evolution +1606.09482 Strongly Correlated Electrons +1606.09528 Quantum Gases +1607.00972 +1607.01974 Probability +1607.02615 Strongly Correlated Electrons +1607.03571 Information Theory +1607.03803 Mesoscale and Nanoscale Physics +1607.04842 Computational Complexity +1607.06328 Phenomenology +1607.06803 Multimedia +1607.08182 +1607.08594 +1608.00244 +1608.01889 Systems and Control +1608.02915 Mesoscale and Nanoscale Physics +1608.04322 Atomic Physics +1608.04993 Cryptography and Security +1608.06022 +1608.07020 +1608.07797 Soft Condensed Matter +1608.08006 +1608.08018 Strongly Correlated Electrons +1608.08184 Numerical Analysis +1608.08799 Software Engineering +1609.00244 Dynamical Systems +1609.00886 Soft Condensed Matter +1609.00912 Probability +1609.01013 High Energy Astrophysical Phenomena +1609.01895 Materials Science +1609.01901 Number Theory +1609.01964 +1609.02056 +1609.03354 +1609.03573 +1609.03828 Atomic Physics +1609.05180 Computation and Language +1609.05978 Cosmology and Nongalactic Astrophysics +1609.07051 General Finance +1609.07390 Solar and Stellar Astrophysics +1609.07766 Computational Geometry +1609.08017 Learning +1609.08741 +1609.09745 Theory +1610.00070 Information Theory +1610.00469 +1610.01480 Theory +1610.01786 Numerical Analysis +1610.01818 Operator Algebras +1610.02881 Robotics +1610.03652 Strongly Correlated Electrons +1610.03686 Atomic Physics +1610.03880 General Mathematics +1610.04761 Systems and Control +1610.05136 Strongly Correlated Electrons +1610.05385 Instrumentation and Methods for Astrophysics +1610.05565 Numerical Analysis +1610.06101 Theory +1610.07102 Pattern Formation and Solitons +1610.09025 +1610.09653 Combinatorics +1611.00122 Optimization and Control +1611.00773 Phenomenology +1611.01469 Theory +1611.03240 Phenomenology +1611.04554 +1611.04719 Exactly Solvable and Integrable Systems +1611.05691 +1611.06124 +1611.06126 Statistical Mechanics +1611.06150 Information Theory +1611.06373 Theory +1611.07327 Solar and Stellar Astrophysics +1611.07769 Social and Information Networks +1611.07906 +1611.08241 Category Theory +1611.08297 Differential Geometry +1611.08453 Chemical Physics +1611.08539 Soft Condensed Matter +1611.09103 Atomic Physics +1611.09659 Optics +1611.09859 Astrophysics of Galaxies +1612.00978 +1612.01610 Data Structures and Algorithms +1612.02249 Theory +1612.02741 Learning +1612.03189 +1612.03749 General Physics +1612.04674 Analysis of PDEs +1612.05106 +1612.05641 Quantum Algebra +1612.05649 +1612.05745 Commutative Algebra +1612.05752 Classical Analysis and ODEs +1612.07041 Probability +1612.07991 Theory +1612.08293 Chemical Physics +1612.08353 Materials Science +1612.09305 Statistics Theory +1612.09570 Theory +1701.01483 Probability +1701.01485 Computational Complexity +1701.01508 Statistical Mechanics +1701.02347 Astrophysics of Galaxies +1701.02596 High Energy Astrophysical Phenomena +1701.03421 Strongly Correlated Electrons +1701.03811 Earth and Planetary Astrophysics +1701.04395 Robotics +1701.04530 Physics and Society +1701.04830 Theory +1701.06064 Optimization and Control +1701.06085 Information Theory +1701.06333 Neurons and Cognition +1701.06565 Astrophysics of Galaxies +1701.06776 Genomics +1701.07215 +1701.08280 Computer Vision and Pattern Recognition +1701.08322 Phenomenology +1701.08381 Machine Learning +1701.08512 High Energy Astrophysical Phenomena +1701.09064 +1702.00043 Probability +1702.00143 Group Theory +1702.00887 Computation and Language +1702.01028 +1702.01069 Metric Geometry +1702.01274 +1702.01574 Computational Physics +1702.01856 Geophysics +1702.01908 Theory +1702.02319 +1702.02484 Methodology +1702.02546 High Energy Astrophysical Phenomena +1702.02580 Phenomenology +1702.02598 Rings and Algebras +1702.02919 Probability +1702.02924 Phenomenology +1702.03154 Data Structures and Algorithms +1702.03463 Algebraic Geometry +1702.03514 Algebraic Geometry +1702.03661 Fluid Dynamics +1702.03842 Mesoscale and Nanoscale Physics +1702.03880 Networking and Internet Architecture +1702.03906 Software Engineering +1702.04069 Computer Vision and Pattern Recognition +1702.04254 Computer Science and Game Theory +1702.04320 Optimization and Control +1702.04433 Quantum Gases +1702.04479 Computer Vision and Pattern Recognition +1702.04488 Computation and Language +1702.04502 Numerical Analysis +1702.04555 Phenomenology +1702.04644 Number Theory +1702.04667 Mesoscale and Nanoscale Physics +1702.04679 Computational Complexity +1702.04685 Instrumentation and Detectors +1702.04715 Mathematical Software +1702.04717 Number Theory +1702.04718 Numerical Analysis +1702.04721 Astrophysics of Galaxies +1702.04722 Solar and Stellar Astrophysics +1702.04723 Strongly Correlated Electrons +1702.04724 +1702.04725 Astrophysics of Galaxies +1702.04728 Instrumentation and Methods for Astrophysics +1702.04730 Phenomenology +1702.04732 Computational Physics +1702.04733 Strongly Correlated Electrons +1702.04734 Earth and Planetary Astrophysics +1702.04735 Quantum Gases +1702.04737 +1702.04739 Distributed, Parallel, and Cluster Computing +1702.04741 +1702.04742 Analysis of PDEs +1702.04743 Materials Science +1702.04746 Social and Information Networks +1702.04748 Computational Complexity +1702.04749 Networking and Internet Architecture +1702.04750 Disordered Systems and Neural Networks +1702.04751 Algebraic Geometry +1702.04752 +1702.04754 Theory +1702.04755 Methodology +1702.04756 Pattern Formation and Solitons +1702.04757 Geometric Topology +1702.04758 Exactly Solvable and Integrable Systems +1702.04760 Number Theory +1702.04761 Mesoscale and Nanoscale Physics +1702.04763 Dynamical Systems +1702.04764 Classical Analysis and ODEs +1702.04766 Representation Theory +1702.04767 Learning +1702.04768 Numerical Analysis +1702.04769 Logic in Computer Science +1702.04770 Computation and Language +1702.04771 Lattice +1702.04772 Astrophysics of Galaxies +1702.04773 Solar and Stellar Astrophysics +1702.04774 Functional Analysis +1702.04775 Machine Learning +1702.04776 Solar and Stellar Astrophysics +1702.04777 Numerical Analysis +1702.04778 Classical Analysis and ODEs +1702.04779 Computational Complexity +1702.04781 Numerical Analysis +1702.04785 +1702.04787 Fluid Dynamics +1702.04791 Materials Science +1702.04794 Strongly Correlated Electrons +1702.04795 Logic +1702.04797 Materials Science +1702.04798 Solar and Stellar Astrophysics +1702.04799 Combinatorics +1702.04800 Systems and Control +1702.04801 +1702.04802 Geophysics +1702.04803 Information Theory +1702.04804 Atomic Physics +1702.04805 Instrumentation and Detectors +1702.04806 Statistical Mechanics +1702.04807 Materials Science +1702.04808 Applications +1702.04809 Group Theory +1702.04810 History and Philosophy of Physics +1702.04811 Computation and Language +1702.04812 Mesoscale and Nanoscale Physics +1702.04813 Optimization and Control +1702.04815 Information Retrieval +1702.04816 Optimization and Control +1702.04817 Materials Science +1702.04818 Functional Analysis +1702.04819 Fluid Dynamics +1702.04822 Information Theory +1702.04824 Classical Analysis and ODEs +1702.04826 Mesoscale and Nanoscale Physics +1702.04827 Phenomenology +1702.04828 Strongly Correlated Electrons +1702.04829 Instrumentation and Methods for Astrophysics +1702.04830 +1702.04831 Representation Theory +1702.04832 Machine Learning +1702.04834 Information Theory +1702.04835 Physics Education +1702.04838 Chaotic Dynamics +1702.04839 Dynamical Systems +1702.04840 Algebraic Geometry +1702.04841 Representation Theory +1702.04842 Atomic Physics +1702.04843 Computer Vision and Pattern Recognition +1702.04844 Optics +1702.04845 Quantitative Methods +1702.04846 Quantitative Methods +1702.04847 Materials Science +1702.04848 Classical Analysis and ODEs +1702.04849 Computer Science and Game Theory +1702.04850 Distributed, Parallel, and Cluster Computing +1702.04851 Applications +1702.04852 Graphics +1702.04853 Soft Condensed Matter +1702.04854 Applications +1702.04855 Physics Education +1702.04859 +1702.04860 Combinatorics +1702.04861 Networking and Internet Architecture +1702.04862 History and Overview +1702.04863 Systems and Control +1702.04864 Chemical Physics +1702.04865 Soft Condensed Matter +1702.04866 Distributed, Parallel, and Cluster Computing +1702.04867 Astrophysics of Galaxies +1702.04868 Phenomenology +1702.04869 Computer Vision and Pattern Recognition +1702.04870 Analysis of PDEs +1702.04871 Data Structures and Algorithms +1702.04873 Populations and Evolution +1702.04874 +1702.04875 Operator Algebras +1702.04876 Disordered Systems and Neural Networks +1702.04877 Information Theory +1702.04878 +1702.04879 +1702.04880 Fluid Dynamics +1702.04882 +1702.04883 Optimization and Control +1702.04884 Analysis of PDEs +1702.04885 +1702.04886 Information Theory +1702.04887 Mesoscale and Nanoscale Physics +1702.04888 Algebraic Topology +1702.04889 Strongly Correlated Electrons +1702.04890 Optimization and Control +1702.04891 Atomic Physics +1702.04892 Quantum Gases +1702.04893 Chemical Physics +1702.04894 +1702.04895 Category Theory +1702.04896 Differential Geometry +1702.04897 Representation Theory +1702.04898 Group Theory +1702.04899 High Energy Astrophysical Phenomena +1702.04900 Superconductivity +1702.04902 Instrumentation and Detectors +1702.04903 Rings and Algebras +1702.04904 Phenomenology +1702.04905 Soft Condensed Matter +1702.04906 Phenomenology +1702.04907 Dynamical Systems +1702.04908 Programming Languages +1702.04909 Materials Science +1702.04910 Computational Engineering, Finance, and Science +1702.04911 Soft Condensed Matter +1702.04912 Logic in Computer Science +1702.04913 Algebraic Geometry +1702.04915 Probability +1702.04916 +1702.04917 Information Theory +1702.04918 Mesoscale and Nanoscale Physics +1702.04919 +1702.04921 Distributed, Parallel, and Cluster Computing +1702.04922 Algebraic Geometry +1702.04923 +1702.04924 +1702.04925 Mesoscale and Nanoscale Physics +1702.04926 +1702.04928 Mesoscale and Nanoscale Physics +1702.04929 Solar and Stellar Astrophysics +1702.04930 Superconductivity +1702.04931 Phenomenology +1702.04932 +1702.04933 +1702.04934 Space Physics +1702.04935 Numerical Analysis +1702.04936 Networking and Internet Architecture +1702.04937 Optimization and Control +1702.04938 Computation and Language +1702.04939 Optimization and Control +1702.04942 Performance +1702.04943 Networking and Internet Architecture +1702.04944 Medical Physics +1702.04945 Quantum Gases +1702.04946 Digital Libraries +1702.04947 Probability +1702.04949 Rings and Algebras +1702.04950 Statistical Mechanics +1702.04951 Differential Geometry +1702.04952 Strongly Correlated Electrons +1702.04955 Mesoscale and Nanoscale Physics +1702.04956 Learning +1702.04957 Analysis of PDEs +1702.04958 Software Engineering +1702.04960 Geometric Topology +1702.04961 Plasma Physics +1702.04963 Theory +1702.04964 Plasma Physics +1702.04965 Classical Analysis and ODEs +1702.04966 Distributed, Parallel, and Cluster Computing +1702.04968 Materials Science +1702.04969 Classical Analysis and ODEs +1702.04970 Robotics +1702.04971 Numerical Analysis +1702.04972 Neurons and Cognition +1702.04973 +1702.04974 Complex Variables +1702.04975 Phenomenology +1702.04976 +1702.04977 Experiment +1702.04978 Analysis of PDEs +1702.04980 Pattern Formation and Solitons +1702.04982 +1702.04983 Phenomenology +1702.04984 Differential Geometry +1702.04985 Mesoscale and Nanoscale Physics +1702.04986 Classical Physics +1702.04987 Phenomenology +1702.04988 Biological Physics +1702.04989 Instrumentation and Methods for Astrophysics +1702.04990 Materials Science +1702.04991 Mesoscale and Nanoscale Physics +1702.04993 Instrumentation and Detectors +1702.04994 Analysis of PDEs +1702.04995 Algebraic Geometry +1702.04996 Social and Information Networks +1702.04997 Geophysics +1702.04999 Populations and Evolution +1702.05000 Cryptography and Security +1702.05001 Superconductivity +1702.05002 Computers and Society +1702.05003 Probability +1702.05004 Number Theory +1702.05007 Analysis of PDEs +1702.05008 Methodology +1702.05009 Instrumentation and Methods for Astrophysics +1702.05011 Computational Physics +1702.05014 Geometric Topology +1702.05016 Geometric Topology +1702.05017 Materials Science +1702.05018 Information Theory +1702.05019 Information Theory +1702.05020 Materials Science +1702.05021 Materials Science +1702.05022 Strongly Correlated Electrons +1702.05023 Phenomenology +1702.05024 Formal Languages and Automata Theory +1702.05025 Functional Analysis +1702.05026 Experiment +1702.05027 Strongly Correlated Electrons +1702.05028 Biological Physics +1702.05029 Algebraic Geometry +1702.05030 Geometric Topology +1702.05031 Networking and Internet Architecture +1702.05032 Algebraic Topology +1702.05033 Algebraic Topology +1702.05034 +1702.05035 Plasma Physics +1702.05036 Mathematical Finance +1702.05038 Mesoscale and Nanoscale Physics +1702.05039 Atomic Physics +1702.05040 Algebraic Geometry +1702.05041 Mesoscale and Nanoscale Physics +1702.05042 Information Retrieval +1702.05044 Algebraic Topology +1702.05046 Mesoscale and Nanoscale Physics +1702.05047 Applications +1702.05049 +1702.05050 Functional Analysis +1702.05051 Data Structures and Algorithms +1702.05052 Soft Condensed Matter +1702.05053 Computation and Language +1702.05054 Physics and Society +1702.05055 Representation Theory +1702.05056 Machine Learning +1702.05057 Materials Science +1702.05058 Optics +1702.05061 Geometric Topology +1702.05062 Logic +1702.05063 Statistics Theory +1702.05068 Learning +1702.05069 Cosmology and Nongalactic Astrophysics +1702.05070 Mesoscale and Nanoscale Physics +1702.05075 Computational Engineering, Finance, and Science +1702.05077 Phenomenology +1702.05078 Earth and Planetary Astrophysics +1702.05080 Number Theory +1702.05081 Phenomenology +1702.05082 Strongly Correlated Electrons +1702.05083 Populations and Evolution +1702.05085 Computer Vision and Pattern Recognition +1702.05088 Cosmology and Nongalactic Astrophysics +1702.05089 Computer Vision and Pattern Recognition +1702.05090 Cosmology and Nongalactic Astrophysics +math/0601158 Numerical Analysis +math/0601162 Numerical Analysis +0706.0548 Combinatorics +0711.2925 Representation Theory +0906.4506 Classical Analysis and ODEs +1003.3749 Classical Analysis and ODEs +1009.2598 Classical Analysis and ODEs +1012.0158 Cellular Automata and Lattice Gases +1102.2723 Classical Analysis and ODEs +1103.1143 Probability +1105.0201 Differential Geometry +1105.3404 Differential Geometry +1106.5547 Statistics Theory +1107.0812 Number Theory +1107.1826 Group Theory +1107.2903 Quantitative Methods +1109.6663 Differential Geometry +1110.5446 Computational Finance +1111.4171 Space Physics +1111.7082 +1201.6683 Analysis of PDEs +1207.5469 Combinatorics +1212.1694 Analysis of PDEs +1303.0889 Number Theory +1304.3284 Probability +1305.0737 Optimization and Control +1307.7771 Algebraic Geometry +1307.8131 Strongly Correlated Electrons +1308.6626 Statistics Theory +1309.4722 Biological Physics +1309.6209 Category Theory +1310.6269 Algebraic Geometry +1311.3168 Logic +1401.7726 Geometric Topology +1403.0450 Logic +1404.1651 Combinatorics +1404.1652 Combinatorics +1405.0379 Statistics Theory +1405.4167 Group Theory +1406.0808 Methodology +1407.0062 Algebraic Topology +1408.5012 +1408.5652 Number Theory +1409.0272 Learning +1409.1957 +1409.4003 +1409.8012 +1410.3387 Category Theory +1410.3410 Number Theory +1410.6883 +1411.1376 Mesoscale and Nanoscale Physics +1411.6710 Number Theory +1412.0857 Quantum Algebra +1412.3960 Probability +1412.5976 Logic +1412.6980 Learning +1412.8739 Logic in Computer Science +1501.02103 Statistics Theory +1501.02426 Optimization and Control +1501.05543 Quantum Gases +1501.06970 +1502.00550 +1502.01777 Analysis of PDEs +1503.03462 Computational Geometry +1503.04639 Representation Theory +1503.06556 Combinatorics +1503.08816 Combinatorics +1504.00668 Algebraic Topology +1504.00756 +1504.01171 Quantum Algebra +1504.03196 Probability +1504.06257 Combinatorics +1505.03505 Computer Vision and Pattern Recognition +1505.04761 +1505.06768 Algebraic Geometry +1505.07752 Methodology +1505.07907 Economics +1506.01947 Mesoscale and Nanoscale Physics +1506.07909 Superconductivity +1507.00550 Analysis of PDEs +1507.01912 Differential Geometry +1507.03761 Information Theory +1507.03822 Phenomenology +1507.05865 Mathematical Finance +1507.08140 Statistics Theory +1507.08335 Biological Physics +1507.08795 Phenomenology +1508.02752 +1508.04369 Combinatorics +1508.04567 Probability +1508.05503 Statistics Theory +1508.05764 Physics and Society +1508.05806 Classical Analysis and ODEs +1508.06343 Combinatorics +1509.00493 Functional Analysis +1509.01509 Computer Vision and Pattern Recognition +1509.03652 Popular Physics +1509.04137 Mesoscale and Nanoscale Physics +1509.05565 Classical Analysis and ODEs +1509.08852 +1510.00997 Group Theory +1510.03102 Computational Engineering, Finance, and Science +1511.02285 Information Theory +1511.07118 Learning +1512.00821 +1512.01747 Earth and Planetary Astrophysics +1512.05680 Mesoscale and Nanoscale Physics +1512.05780 Theory +1512.06117 +1512.08240 Machine Learning +1512.08705 Soft Condensed Matter +1512.09299 Logic +1601.02894 +1601.03554 Materials Science +1601.04108 Materials Science +1601.05186 Computational Physics +1601.05705 Combinatorics +1601.05990 Number Theory +1601.06266 Probability +1601.06570 Algebraic Geometry +1601.07601 +1601.07789 Mathematical Software +1601.08022 +1602.02088 Soft Condensed Matter +1602.02436 Algebraic Geometry +1602.04053 Numerical Analysis +1602.04086 Classical Physics +1602.05204 Logic +1602.06292 Probability +1602.06622 Combinatorics +1602.07672 Fluid Dynamics +1602.07890 Differential Geometry +1602.08346 Combinatorics +1603.00187 Group Theory +1603.00534 Number Theory +1603.01141 Statistical Mechanics +1603.02061 Atomic Physics +1603.02246 +1603.02525 Combinatorics +1603.03128 Phenomenology +1603.04655 Mesoscale and Nanoscale Physics +1603.05621 Numerical Analysis +1603.06757 Information Theory +1603.07511 Applications +1603.08685 Probability +1603.09030 Mathematical Finance +1603.09722 Probability +1604.00660 Algebraic Geometry +1604.01701 Algebraic Topology +1604.02172 Optimization and Control +1604.03998 Theory +1604.05741 Number Theory +1604.06934 Probability +1604.07817 Cosmology and Nongalactic Astrophysics +1604.08942 +1605.00384 Algebraic Geometry +1605.00411 Differential Geometry +1605.00505 Physics and Society +1605.00768 Fluid Dynamics +1605.01131 Group Theory +1605.02294 +1605.02774 +1605.02800 Operator Algebras +1605.04222 Representation Theory +1605.04875 +1605.05208 Solar and Stellar Astrophysics +1605.06271 Logic +1605.06730 Mesoscale and Nanoscale Physics +1605.07058 Phenomenology +1605.07272 Learning +1605.07642 Quantum Gases +1605.08551 Analysis of PDEs +1605.09620 Strongly Correlated Electrons +1605.09699 Category Theory +1606.00101 Molecular Networks +1606.00315 Statistical Mechanics +1606.01132 +1606.01213 Combinatorics +1606.01545 Computation and Language +1606.02492 Computer Vision and Pattern Recognition +1606.02643 Logic in Computer Science +1606.03407 Cosmology and Nongalactic Astrophysics +1606.03634 Artificial Intelligence +1606.03820 +1606.05300 Optimization and Control +1606.05830 Robotics +1606.06666 Cosmology and Nongalactic Astrophysics +1606.07142 Information Theory +1606.08221 General Physics +1606.08991 Group Theory +1606.09018 Group Theory +1606.09279 Data Structures and Algorithms +1607.00245 Commutative Algebra +1607.00486 Numerical Analysis +1607.00740 Algebraic Geometry +1607.01206 Classical Analysis and ODEs +1607.01373 Superconductivity +1607.02285 Analysis of PDEs +1607.02430 Number Theory +1607.02905 Materials Science +1607.03040 Materials Science +1607.03113 Cosmology and Nongalactic Astrophysics +1607.03605 Theory +1607.03936 Numerical Analysis +1607.04009 Analysis of PDEs +1607.04673 Computer Vision and Pattern Recognition +1607.04757 Optimization and Control +1607.05600 High Energy Astrophysical Phenomena +1607.06314 Experiment +1607.06448 Theory +1607.07370 Analysis of PDEs +1607.07845 +1608.00178 Operator Algebras +1608.00179 Operator Algebras +1608.00308 Materials Science +1608.00322 Theory +1608.00361 Computer Vision and Pattern Recognition +1608.00904 Combinatorics +1608.01288 Functional Analysis +1608.01823 +1608.02279 Combinatorics +1608.02340 Lattice +1608.03072 Theory +1608.03122 Algebraic Geometry +1608.03172 Materials Science +1608.04163 +1608.04189 Cosmology and Nongalactic Astrophysics +1608.04546 Exactly Solvable and Integrable Systems +1608.04801 Mesoscale and Nanoscale Physics +1608.06854 Number Theory +1608.06920 Exactly Solvable and Integrable Systems +1608.07011 Commutative Algebra +1608.07080 Quantum Gases +1608.07663 Statistical Mechanics +1608.08199 Applications +1609.00767 Social and Information Networks +1609.00852 Computer Science and Game Theory +1609.01308 Astrophysics of Galaxies +1609.01533 Optimization and Control +1609.01949 +1609.03013 Discrete Mathematics +1609.03142 Information Theory +1609.04570 +1609.05151 Populations and Evolution +1609.05484 Combinatorics +1609.06916 Strongly Correlated Electrons +1609.06922 Astrophysics of Galaxies +1609.07611 +1609.07768 Group Theory +1609.08537 +1610.00124 +1610.00930 +1610.01718 +1610.01817 +1610.02661 Numerical Analysis +1610.03001 +1610.03119 Quantum Gases +1610.03666 Experiment +1610.03718 Risk Management +1610.04190 Phenomenology +1610.04536 Methodology +1610.05623 Theory +1610.05861 Computer Vision and Pattern Recognition +1610.05968 History and Overview +1610.06591 Phenomenology +1610.06621 +1610.06804 Soft Condensed Matter +1610.07448 Machine Learning +1610.07474 Statistical Mechanics +1610.07773 Quantum Gases +1610.08144 +1610.08994 Group Theory +1610.09046 Chemical Physics +1610.09450 Systems and Control +1610.10013 Soft Condensed Matter +1611.00353 Mesoscale and Nanoscale Physics +1611.01104 Phenomenology +1611.01143 Quantum Gases +1611.01311 Algebraic Geometry +1611.01339 Functional Analysis +1611.01341 Numerical Analysis +1611.01703 Materials Science +1611.01957 Machine Learning +1611.02004 +1611.02195 Optimization and Control +1611.02239 Quantum Gases +1611.03870 Astrophysics of Galaxies +1611.03874 High Energy Astrophysical Phenomena +1611.04308 Data Structures and Algorithms +1611.04353 Computer Vision and Pattern Recognition +1611.04944 Geometric Topology +1611.05785 Group Theory +1611.06402 Combinatorics +1611.06565 Computer Vision and Pattern Recognition +1611.07127 Algebraic Geometry +1611.07225 Analysis of PDEs +1611.07338 General Physics +1611.07508 Theory +1611.07705 Soft Condensed Matter +1611.08696 Artificial Intelligence +1611.08880 Statistical Mechanics +1611.08934 Materials Science +1611.09213 Populations and Evolution +1611.09262 Pattern Formation and Solitons +1611.09428 Statistical Mechanics +1611.09678 Plasma Physics +1611.09700 Optimization and Control +1611.09855 Phenomenology +1611.10051 Quantum Gases +1612.00084 Materials Science +1612.00740 Astrophysics of Galaxies +1612.00791 Mesoscale and Nanoscale Physics +1612.00895 Social and Information Networks +1612.00923 +1612.01752 Computational Complexity +1612.02014 Theory +1612.02496 Quantum Gases +1612.02712 Social and Information Networks +1612.02770 Molecular Networks +1612.03292 Number Theory +1612.03553 Classical Analysis and ODEs +1612.03566 Algebraic Geometry +1612.03927 Theory +1612.04718 Systems and Control +1612.05079 Computer Vision and Pattern Recognition +1612.05187 Theory +1612.05217 Strongly Correlated Electrons +1612.06142 Atomic Physics +1612.06169 +1612.07314 Algebraic Topology +1612.08096 Instrumentation and Detectors +1612.08137 Information Theory +1612.08238 Optics +1612.08286 Functional Analysis +1612.08505 +1612.08556 +1612.08968 Geometric Topology +1612.09072 Analysis of PDEs +1612.09193 Category Theory +1612.09544 Number Theory +1612.09560 Dynamical Systems +1701.00047 Functional Analysis +1701.00089 Optimization and Control +1701.00183 Analysis of PDEs +1701.00729 Number Theory +1701.00880 Geometric Topology +1701.01983 +1701.02061 Atomic Physics +1701.02429 Theory +1701.02578 Information Theory +1701.02945 Algebraic Geometry +1701.03293 Differential Geometry +1701.04032 Differential Geometry +1701.04109 +1701.04203 Dynamical Systems +1701.04447 Materials Science +1701.04454 High Energy Astrophysical Phenomena +1701.04704 Geophysics +1701.05276 Statistical Mechanics +1701.05366 Strongly Correlated Electrons +1701.05382 Computational Complexity +1701.05446 Quantum Gases +1701.05705 Combinatorics +1701.05959 Algebraic Geometry +1701.05991 +1701.06062 Materials Science +1701.06387 +1701.06561 Classical Analysis and ODEs +1701.06664 Information Theory +1701.06711 Social and Information Networks +1701.07023 Functional Analysis +1701.07025 Astrophysics of Galaxies +1701.07124 Human-Computer Interaction +1701.07132 +1701.07138 Neurons and Cognition +1701.07169 Numerical Analysis +1701.07273 Cosmology and Nongalactic Astrophysics +1701.07287 Instrumentation and Methods for Astrophysics +1701.07309 Functional Analysis +1701.07368 Computer Vision and Pattern Recognition +1701.07424 Popular Physics +1701.07512 Distributed, Parallel, and Cluster Computing +1701.07668 Medical Physics +1701.07678 Phenomenology +1701.07725 Earth and Planetary Astrophysics +1701.07807 Information Theory +1701.07873 Experiment +1701.07890 Complex Variables +1701.07903 Quantum Gases +1701.07935 +1701.08000 +1701.08049 Combinatorics +1701.08155 Combinatorics +1701.08156 Sound +1701.08158 Instrumentation and Methods for Astrophysics +1701.08159 Group Theory +1701.08164 Cosmology and Nongalactic Astrophysics +1701.08165 Cosmology and Nongalactic Astrophysics +1701.08166 Astrophysics of Galaxies +1701.08167 Statistical Mechanics +1701.08170 Social and Information Networks +1701.08172 Cosmology and Nongalactic Astrophysics +1701.08173 Theory +1701.08174 Information Theory +1701.08175 Atomic Physics +1701.08178 Accelerator Physics +1701.08179 Robotics +1701.08180 Computer Vision and Pattern Recognition +1701.08181 Earth and Planetary Astrophysics +1701.08182 Networking and Internet Architecture +1701.08183 Combinatorics +1701.08184 Analysis of PDEs +1701.08185 Statistics Theory +1701.08187 Accelerator Physics +1701.08188 Differential Geometry +1701.08189 Category Theory +1701.08190 Artificial Intelligence +1701.08191 Artificial Intelligence +1701.08192 Classical Analysis and ODEs +1701.08193 Dynamical Systems +1701.08194 +1701.08195 Analysis of PDEs +1701.08197 Instrumentation and Methods for Astrophysics +1701.08198 Computation and Language +1701.08199 Materials Science +1701.08200 Instrumentation and Detectors +1701.08201 Instrumentation and Methods for Astrophysics +1701.08203 +1701.08204 Probability +1701.08205 Combinatorics +1701.08208 Emerging Technologies +1701.08211 +1701.08212 Computers and Society +1701.08213 +1701.08215 Analysis of PDEs +1701.08216 Mesoscale and Nanoscale Physics +1701.08217 +1701.08219 Optimization and Control +1701.08220 Combinatorics +1701.08221 Mesoscale and Nanoscale Physics +1701.08222 Information Theory +1701.08224 +1701.08226 Classical Analysis and ODEs +1701.08227 Strongly Correlated Electrons +1701.08228 Mesoscale and Nanoscale Physics +1701.08229 Information Retrieval +1701.08232 Analysis of PDEs +1701.08233 Rings and Algebras +1701.08234 +1701.08235 Instrumentation and Methods for Astrophysics +1701.08236 +1701.08237 Computer Vision and Pattern Recognition +1701.08238 Differential Geometry +1701.08241 Cryptography and Security +1701.08242 Symplectic Geometry +1701.08243 +1701.08244 Materials Science +1701.08245 Phenomenology +1701.08247 Superconductivity +1701.08248 Materials Science +1701.08249 Functional Analysis +1701.08251 Computation and Language +1701.08252 Combinatorics +1701.08253 +1701.08254 Information Theory +1701.08255 Quantum Gases +1701.08256 Digital Libraries +1701.08257 Computer Vision and Pattern Recognition +1701.08259 Computer Vision and Pattern Recognition +1701.08261 Computer Vision and Pattern Recognition +1701.08262 Chaotic Dynamics +1701.08263 Theory +1701.08265 Fluid Dynamics +1701.08266 Information Theory +1701.08267 Earth and Planetary Astrophysics +1701.08269 Robotics +1701.08270 +1701.08273 Mesoscale and Nanoscale Physics +1701.08274 +1701.08276 Complex Variables +1701.08279 Materials Science +1701.08281 Classical Physics +1701.08282 Materials Science +1701.08283 Phenomenology +1701.08284 Methodology +1701.08285 Social and Information Networks +1701.08286 Materials Science +1701.08287 Theory +1701.08288 Databases +1701.08289 Computer Vision and Pattern Recognition +1701.08290 Other Statistics +1701.08291 Computer Vision and Pattern Recognition +1701.08292 Combinatorics +1701.08293 Superconductivity +1701.08295 Networking and Internet Architecture +1701.08298 Probability +1701.08299 Computation +1701.08300 +1701.08301 Artificial Intelligence +1701.08303 Computation and Language +1701.08304 Complex Variables +1701.08306 Artificial Intelligence +1701.08308 Computers and Society +1701.08309 Algebraic Topology +1701.08310 Software Engineering +1701.08311 Numerical Analysis +1701.08312 Cryptography and Security +1701.08313 Numerical Analysis +1701.08315 Data Structures and Algorithms +1701.08318 Quantitative Methods +1701.08321 Group Theory +1701.08323 Number Theory +1701.08325 Combinatorics +1701.08326 Analysis of PDEs +1701.08327 Instrumentation and Methods for Astrophysics +1701.08328 Experiment +1701.08329 Computers and Society +1701.08330 Logic in Computer Science +1701.08331 +1701.08332 Analysis of PDEs +1701.08333 Operator Algebras +1701.08335 Combinatorics +1701.08338 Statistics Theory +1701.08339 Computation and Language +1701.08340 Computation and Language +1701.08341 Computer Vision and Pattern Recognition +1701.08343 Artificial Intelligence +1701.08344 Theory +1701.08345 Programming Languages +1701.08346 Optics +1701.08347 Information Theory +1701.08348 Optics +1701.08349 Computer Vision and Pattern Recognition +1701.08350 Dynamical Systems +1701.08351 Number Theory +1701.08353 Analysis of PDEs +1701.08355 Combinatorics +1701.08359 Category Theory +1701.08362 Information Theory +1701.08364 Combinatorics +1701.08365 Applications +1701.08366 Statistics Theory +1701.08367 Quantum Gases +1701.08368 +1701.08371 Cryptography and Security +1701.08372 Algebraic Geometry +1701.08373 Information Theory +1701.08374 Computer Vision and Pattern Recognition +1701.08375 Networking and Internet Architecture +1701.08378 Computer Vision and Pattern Recognition +1701.08379 Exactly Solvable and Integrable Systems +1701.08380 Computer Vision and Pattern Recognition +1701.08382 Theory +1701.08383 Optimization and Control +1701.08384 Combinatorics +1701.08385 Chaotic Dynamics +1701.08387 Algebraic Geometry +1701.08388 Adaptation and Self-Organizing Systems +1701.08389 Combinatorics +1701.08390 Analysis of PDEs +1701.08391 Fluid Dynamics +1701.08392 Optimization and Control +1701.08396 Probability +1701.08399 Mathematical Finance +1701.08400 +1701.08403 Fluid Dynamics +1701.08404 Quantitative Methods +1701.08405 Mesoscale and Nanoscale Physics +1701.08406 +1701.08408 Soft Condensed Matter +1701.08409 Combinatorics +1701.08410 Soft Condensed Matter +1701.08411 Representation Theory +1701.08412 Combinatorics +1701.08413 Phenomenology +1701.08415 Statistical Mechanics +1701.08416 Strongly Correlated Electrons +1701.08417 Combinatorics +1701.08418 Geometric Topology +1701.08419 Cryptography and Security +1701.08420 Statistics Theory +1701.08422 Popular Physics +1701.08423 Data Structures and Algorithms +1701.08424 Analysis of PDEs +1701.08425 Geometric Topology +1701.08426 Logic +1701.08427 Statistical Mechanics +1701.08428 Spectral Theory +1701.08429 Fluid Dynamics +1701.08430 Materials Science +1701.08432 Chemical Physics +1701.08434 Classical Physics +1701.08435 Learning +1701.08436 Number Theory +1701.08437 Numerical Analysis +1701.08438 Other Statistics +1701.08439 Mesoscale and Nanoscale Physics +1701.08440 Dynamical Systems +1701.08442 Software Engineering +1701.08443 Populations and Evolution +1701.08444 Robotics +1701.08445 +1701.08446 Classical Analysis and ODEs +1701.08448 Mesoscale and Nanoscale Physics +1701.08449 Robotics +1701.08450 Solar and Stellar Astrophysics +1701.08451 Phenomenology +1701.08452 Other Statistics +1701.08453 Optimization and Control +1701.08454 Materials Science +1701.08457 +1701.08458 Information Theory +1701.08460 +1701.08461 Instrumentation and Methods for Astrophysics +1701.08462 Social and Information Networks +1701.08464 Optics +1701.08465 Human-Computer Interaction +1701.08466 Software Engineering +1701.08467 Programming Languages +1701.08468 Software Engineering +1701.08469 Logic in Computer Science +1701.08470 Software Engineering +1701.08471 Human-Computer Interaction +1701.08472 Optimization and Control +1701.08474 Distributed, Parallel, and Cluster Computing +1701.08477 Quantum Gases +1701.08478 Algebraic Geometry +1701.08480 Combinatorics +1701.08482 Mesoscale and Nanoscale Physics +1701.08483 Combinatorics +1701.08485 Software Engineering +1701.08486 Differential Geometry +1701.08487 Symbolic Computation +1701.08488 Probability +1701.08489 Commutative Algebra +1701.08490 Chemical Physics +1701.08491 Differential Geometry +1701.08492 Information Theory +1701.08493 Computer Vision and Pattern Recognition +1701.08495 Dynamical Systems +1701.08496 Phenomenology +1701.08497 Fluid Dynamics +1701.08498 Optimization and Control +1701.08501 Materials Science +1701.08502 Materials Science +1701.08503 Number Theory +1701.08506 Combinatorics +1701.08508 Phenomenology +1701.08509 +1701.08510 Solar and Stellar Astrophysics +1701.08511 Learning +1701.08513 Information Theory +1701.08514 Optimization and Control +1701.08515 Methodology +1701.08516 Logic in Computer Science +1701.08517 Data Structures and Algorithms +1701.08518 Theory +1701.08519 Materials Science +1701.08521 Lattice +1701.08525 +1701.08527 Pattern Formation and Solitons +1701.08528 Computer Vision and Pattern Recognition +1701.08529 Strongly Correlated Electrons +1701.08530 Distributed, Parallel, and Cluster Computing +1701.08531 +1701.08532 Algebraic Geometry +1701.08533 Computation and Language +1701.08535 Probability +1701.08536 Theory +1701.08537 Combinatorics +1701.08538 Combinatorics +1701.08540 Fluid Dynamics +1701.08541 Theory +1701.08543 Phenomenology +1701.08544 Spectral Theory +1701.08545 Pricing of Securities +1701.08546 Artificial Intelligence +1701.08547 Distributed, Parallel, and Cluster Computing +1701.08552 Cosmology and Nongalactic Astrophysics +1701.08553 Phenomenology +1701.08554 Information Theory +1701.08555 Commutative Algebra +1701.08556 Strongly Correlated Electrons +1701.08557 Computational Complexity +1701.08558 +1701.08559 Classical Analysis and ODEs +1701.08560 Analysis of PDEs +1701.08561 Materials Science +1701.08562 Numerical Analysis +1701.08563 Soft Condensed Matter +1701.08568 Numerical Analysis +1701.08569 Optics +1701.08570 Lattice +1701.08571 Classical Analysis and ODEs +1701.08574 Phenomenology +1701.08575 Dynamical Systems +1701.08576 +1701.08577 Classical Analysis and ODEs +1701.08579 Mathematical Finance +1701.08580 Experiment +1701.08581 +1701.08582 +1701.08583 Cosmology and Nongalactic Astrophysics +1701.08584 Classical Analysis and ODEs +1701.08586 Dynamical Systems +1701.08587 Classical Analysis and ODEs +1701.08589 Dynamical Systems +1701.08591 Experiment +1701.08592 Analysis of PDEs +1701.08593 Classical Analysis and ODEs +1701.08596 Classical Analysis and ODEs +1701.08597 Functional Analysis +1701.08598 Phenomenology +1701.08600 Analysis of PDEs +1701.08602 Classical Analysis and ODEs +1701.08603 Combinatorics +1701.08604 Analysis of PDEs +1701.08608 Robotics +1701.08610 Lattice +1701.08611 Dynamical Systems +1701.08612 Databases +1701.08613 Complex Variables +1701.08616 +1701.08617 Information Theory +1701.08619 Mesoscale and Nanoscale Physics +1701.08620 Optics +1701.08622 Logic in Computer Science +1701.08624 Strongly Correlated Electrons +1701.08625 Software Engineering +1701.08626 Numerical Analysis +1701.08628 Probability +1701.08629 Metric Geometry +1701.08631 Statistical Mechanics +1701.08632 General Physics +1701.08633 Instrumentation and Methods for Astrophysics +1701.08634 Databases +1701.08635 General Physics +1701.08636 Statistical Mechanics +1701.08639 Probability +1701.08640 Astrophysics of Galaxies +1701.08641 General Physics +1701.08642 +1701.08643 Databases +1701.08644 Computer Science and Game Theory +1701.08646 General Physics +1701.08648 Combinatorics +1701.08650 General Physics +1701.08651 Combinatorics +1701.08652 Combinatorics +1701.08653 Operator Algebras +1701.08654 Representation Theory +1701.08658 General Physics +1701.08659 Dynamical Systems +1701.08662 Logic +1701.08663 Neurons and Cognition +1701.08664 Biological Physics +1701.08666 General Physics +1701.08668 Dynamical Systems +1701.08669 +1701.08670 Soft Condensed Matter +1701.08673 Methodology +1701.08674 Combinatorics +1701.08677 +1701.08678 Analysis of PDEs +1701.08679 +1701.08680 Distributed, Parallel, and Cluster Computing +1701.08681 Superconductivity +1701.08684 Chemical Physics +1701.08685 Lattice +1701.08688 Data Structures and Algorithms +1701.08689 Commutative Algebra +1701.08690 Algebraic Geometry +1701.08692 Solar and Stellar Astrophysics +1701.08693 Strongly Correlated Electrons +1701.08694 Computation and Language +1701.08695 Experiment +1701.08696 Social and Information Networks +1701.08697 Statistics Theory +1701.08698 Complex Variables +1701.08701 Information Theory +1701.08702 Computation and Language +1701.08704 Atomic Physics +1701.08706 Computer Vision and Pattern Recognition +1701.08710 Analysis of PDEs +1701.08712 Information Theory +1701.08713 +1701.08715 Superconductivity +1701.08717 Earth and Planetary Astrophysics +1701.08718 Learning +1701.08721 Social and Information Networks +1701.08723 Dynamical Systems +1701.08724 Cosmology and Nongalactic Astrophysics +1701.08726 Combinatorics +1701.08728 Phenomenology +1701.08730 Phenomenology +1701.08733 Number Theory +1701.08734 Neural and Evolutionary Computing +1701.08735 Systems and Control +1701.08737 Probability +1701.08738 High Energy Astrophysical Phenomena +1701.08739 Solar and Stellar Astrophysics +1701.08743 Dynamical Systems +1701.08745 Superconductivity +1701.08746 Solar and Stellar Astrophysics +1701.08747 Combinatorics +1701.08751 Phenomenology +1701.08752 Instrumentation and Detectors +1701.08753 Analysis of PDEs +1701.08754 Fluid Dynamics +1701.08756 Robotics +cond-mat/0105462 Strongly Correlated Electrons +hep-ph/0210162 Phenomenology +math/0701281 Probability +1701.00593 Quantitative Methods +0807.3557 Materials Science +0810.0296 Physics and Society +0910.0297 Populations and Evolution +0910.0336 Materials Science +1005.3341 Populations and Evolution +1005.3862 Populations and Evolution +1107.0698 +1111.4597 Populations and Evolution +1112.2389 Probability +1204.0480 Cryptography and Security +1204.0831 Populations and Evolution +1207.0710 Algebraic Geometry +1208.5355 Metric Geometry +1212.0619 Combinatorics +1301.6107 +1303.0188 Methodology +1303.0662 Algebraic Geometry +1303.1364 Group Theory +1307.1043 Functional Analysis +1309.0155 Geometric Topology +1309.1569 Subcellular Processes +1309.6261 Populations and Evolution +1310.2880 Machine Learning +1310.3542 Functional Analysis +1311.1985 Differential Geometry +1311.2324 Number Theory +1312.2281 Pricing of Securities +1312.2921 Algebraic Geometry +1312.3239 +1403.4151 Analysis of PDEs +1403.6685 +1403.7404 Algebraic Geometry +1404.4250 Distributed, Parallel, and Cluster Computing +1404.5856 Algebraic Geometry +1404.6215 Commutative Algebra +1405.5457 Number Theory +1406.2943 Combinatorics +1406.2949 Information Theory +1406.5084 Combinatorics +1406.6285 Classical Analysis and ODEs +1409.0058 Astrophysics of Galaxies +1409.0673 Chaotic Dynamics +1409.1273 +1410.6403 Disordered Systems and Neural Networks +1411.2933 Algebraic Geometry +1411.5865 Numerical Analysis +1412.2224 Commutative Algebra +1412.6042 Functional Analysis +1501.04477 Probability +1501.05757 Information Theory +1501.06023 Algebraic Geometry +1501.06351 Experiment +1501.06673 Chemical Physics +1501.07870 Information Theory +1502.00368 Soft Condensed Matter +1502.05137 Computer Vision and Pattern Recognition +1502.06002 Classical Analysis and ODEs +1503.03669 Algebraic Topology +1503.07259 Computation +1503.07583 +1504.02863 Computer Vision and Pattern Recognition +1504.03115 Digital Libraries +1504.03969 Algebraic Geometry +1504.04044 Databases +1504.06640 Theory +1505.00373 +1505.04204 Algebraic Geometry +1505.05916 Computer Vision and Pattern Recognition +1505.06954 Methodology +1505.07224 Probability +1505.07648 Probability +1505.07720 Algebraic Topology +1505.07899 +1505.07964 Algebraic Topology +1506.05741 Computation +1507.04416 Populations and Evolution +1507.04705 Geometric Topology +1507.05332 Combinatorics +1507.05933 Combinatorics +1507.06435 Phenomenology +1507.07436 +1507.08503 Combinatorics +1507.08613 Computation +1508.05025 +1509.01376 Group Theory +1509.01859 Probability +1509.02224 Quantum Gases +1509.02638 Metric Geometry +1509.02786 Metric Geometry +1509.04045 Dynamical Systems +1509.05321 Analysis of PDEs +1509.05838 Analysis of PDEs +1509.08666 Applications +1510.04870 Probability +1510.06956 Dynamical Systems +1510.08416 Combinatorics +1510.09173 +1511.02437 Lattice +1511.04970 Machine Learning +1511.05768 Computer Vision and Pattern Recognition +1511.08297 Group Theory +1511.09197 +1512.01502 Statistical Mechanics +1512.02529 Computational Finance +1512.02754 Information Theory +1512.03202 Functional Analysis +1512.05225 Methodology +1512.06860 +1512.07158 Learning +1512.07264 Rings and Algebras +1512.07516 Optimization and Control +1512.07522 Probability +1512.07956 Logic in Computer Science +1512.08018 Optimization and Control +1601.00147 Statistical Mechanics +1601.00268 Dynamical Systems +1601.01006 Computer Vision and Pattern Recognition +1601.01962 Mesoscale and Nanoscale Physics +1601.01966 Machine Learning +1601.02644 Human-Computer Interaction +1601.03244 Analysis of PDEs +1601.07526 Phenomenology +1602.00745 Numerical Analysis +1602.00970 Computer Vision and Pattern Recognition +1602.01182 Machine Learning +1602.04248 Number Theory +1602.04425 Disordered Systems and Neural Networks +1602.05088 High Energy Astrophysical Phenomena +1602.05237 Computer Science and Game Theory +1602.05896 Optics +1602.06273 Spectral Theory +1602.06728 Classical Analysis and ODEs +1602.07829 Group Theory +1602.08056 Soft Condensed Matter +1602.09036 Quantum Algebra +1603.00847 Computational Geometry +1603.01052 Spectral Theory +1603.03811 Probability +1603.04358 Classical Analysis and ODEs +1603.04890 +1603.05028 +1603.05068 Methodology +1603.06684 Logic +1603.07015 Computational Physics +1603.07855 Strongly Correlated Electrons +1603.08170 Differential Geometry +1603.09491 Risk Management +1604.00230 Emerging Technologies +1604.01129 Mesoscale and Nanoscale Physics +1604.01715 Applications +1604.03933 Analysis of PDEs +1604.04575 Logic in Computer Science +1604.05037 Information Theory +1604.05456 Methodology +1604.06588 Networking and Internet Architecture +1604.07696 Phenomenology +1604.07859 +1604.08166 Dynamical Systems +1604.08273 Algebraic Topology +1604.08668 Probability +1605.00036 Theory +1605.00217 Functional Analysis +1605.00262 Representation Theory +1605.01627 Networking and Internet Architecture +1605.02166 Populations and Evolution +1605.03048 Dynamical Systems +1605.03809 Mesoscale and Nanoscale Physics +1605.03876 Algebraic Geometry +1605.04199 Strongly Correlated Electrons +1605.04768 Statistical Mechanics +1605.05110 Computation and Language +1605.05226 Group Theory +1605.05386 Differential Geometry +1605.06423 Computation +1605.06663 Analysis of PDEs +1605.06881 Metric Geometry +1605.07593 Group Theory +1605.07721 Statistical Mechanics +1605.08366 Discrete Mathematics +1605.08751 +1605.09102 Classical Physics +1605.09340 Functional Analysis +1605.09661 Functional Analysis +1605.09665 Functional Analysis +1606.00562 +1606.00678 Software Engineering +1606.01888 Group Theory +1606.03187 Differential Geometry +1606.04339 +1606.05415 Computer Vision and Pattern Recognition +1606.05981 +1606.06235 Data Structures and Algorithms +1606.06409 Analysis of PDEs +1606.06957 Mesoscale and Nanoscale Physics +1606.07404 Mesoscale and Nanoscale Physics +1606.07409 Materials Science +1606.07899 +1606.08431 Numerical Analysis +1606.09199 Cosmology and Nongalactic Astrophysics +1606.09375 Learning +1607.01057 +1607.01214 Quantum Gases +1607.01360 Fluid Dynamics +1607.01499 +1607.01515 Differential Geometry +1607.01836 Classical Analysis and ODEs +1607.01883 Robotics +1607.02731 Analysis of PDEs +1607.03025 Information Theory +1607.03940 Numerical Analysis +1607.05669 Superconductivity +1607.06000 Mesoscale and Nanoscale Physics +1607.06521 Networking and Internet Architecture +1607.06687 Instrumentation and Detectors +1607.06961 Computation and Language +1607.07743 Optimization and Control +1607.07971 Analysis of PDEs +1607.08049 Mesoscale and Nanoscale Physics +1607.08243 Superconductivity +1607.08337 Data Structures and Algorithms +1607.08372 Methodology +1608.00702 Mesoscale and Nanoscale Physics +1608.00782 Combinatorics +1608.02492 Group Theory +1608.03029 Materials Science +1608.04259 Theory +1608.04431 Distributed, Parallel, and Cluster Computing +1608.04861 Statistics Theory +1608.05226 Probability +1608.05766 Optimization and Control +1608.05815 Methodology +1608.06917 Materials Science +1608.07612 Statistical Mechanics +1608.07683 +1608.07910 Earth and Planetary Astrophysics +1608.08275 Pattern Formation and Solitons +1608.08869 Instrumentation and Methods for Astrophysics +1608.08887 Probability +1608.09012 +1609.01599 Experiment +1609.01826 Information Theory +1609.02044 Representation Theory +1609.02449 Phenomenology +1609.02487 Probability +1609.03118 Phenomenology +1609.03252 Logic +1609.03320 Methodology +1609.03603 +1609.03668 Data Structures and Algorithms +1609.04078 Applications +1609.04470 Cosmology and Nongalactic Astrophysics +1609.04502 Quantum Gases +1609.05289 Commutative Algebra +1609.05327 Disordered Systems and Neural Networks +1609.05519 Methodology +1609.05947 Mesoscale and Nanoscale Physics +1609.05984 Computational Complexity +1609.06231 Phenomenology +1609.07093 Learning +1609.07162 Number Theory +1609.07717 +1609.08304 Functional Analysis +1609.08462 +1609.08515 Atmospheric and Oceanic Physics +1609.08822 Mesoscale and Nanoscale Physics +1609.08846 Materials Science +1609.09142 Differential Geometry +1610.00180 Fluid Dynamics +1610.00780 Statistics Theory +1610.00913 Robotics +1610.01101 Machine Learning +1610.01177 Instrumentation and Detectors +1610.01402 Algebraic Geometry +1610.01510 Algebraic Topology +1610.01933 Plasma Physics +1610.02209 Computation and Language +1610.02264 +1610.03619 Atomic Physics +1610.03759 Computation and Language +1610.03886 Experiment +1610.05030 Group Theory +1610.05033 Commutative Algebra +1610.05410 Solar and Stellar Astrophysics +1610.05598 Information Theory +1610.05663 +1610.06103 +1610.06134 High Energy Astrophysical Phenomena +1610.06227 Computation and Language +1610.06645 +1610.07103 Soft Condensed Matter +1610.07187 Machine Learning +1610.07251 Networking and Internet Architecture +1610.07331 Metric Geometry +1610.07690 Formal Languages and Automata Theory +1610.07903 Phenomenology +1610.08470 Representation Theory +1610.08653 High Energy Astrophysical Phenomena +1610.08897 Probability +1610.09526 Information Theory +1610.09607 Logic in Computer Science +1610.09823 Functional Analysis +1610.09862 Experiment +1611.00597 +1611.00740 Learning +1611.00747 Soft Condensed Matter +1611.00772 Astrophysics of Galaxies +1611.00845 Materials Science +1611.01084 Functional Analysis +1611.01278 Information Theory +1611.01332 High Energy Astrophysical Phenomena +1611.01922 Theory +1611.02110 Theory +1611.02476 +1611.02585 +1611.02902 Optimization and Control +1611.03566 Computer Vision and Pattern Recognition +1611.03670 Phenomenology +1611.03726 Phenomenology +1611.05622 Statistical Mechanics +1611.06305 Statistical Mechanics +1611.06398 Number Theory +1611.06563 Soft Condensed Matter +1611.06922 +1611.07659 Learning +1611.07694 Differential Geometry +1611.07810 Computer Vision and Pattern Recognition +1611.08157 +1611.08856 Theory +1611.09449 Materials Science +1611.09590 Data Structures and Algorithms +1611.10088 Information Theory +1612.00010 Astrophysics of Galaxies +1612.00157 Medical Physics +1612.00790 Probability +1612.01598 Solar and Stellar Astrophysics +1612.02202 Information Theory +1612.02210 Commutative Algebra +1612.02427 Theory +1612.02437 +1612.02731 Symbolic Computation +1612.03151 Theory +1612.03318 Logic in Computer Science +1612.03479 Algebraic Geometry +1612.03692 Quantitative Methods +1612.03721 Phenomenology +1612.04016 Information Theory +1612.04307 Materials Science +1612.04602 Soft Condensed Matter +1612.04623 Algebraic Geometry +1612.04881 Optimization and Control +1612.04937 Information Theory +1612.05140 Experiment +1612.05143 Robotics +1612.05267 Logic +1612.05395 Graphics +1612.05397 +1612.05459 Spectral Theory +1612.05519 Machine Learning +1612.05870 Instrumentation and Methods for Astrophysics +1612.05909 Theory +1612.06184 Plasma Physics +1612.06257 Cryptography and Security +1612.06332 Combinatorics +1612.06673 Lattice +1612.06853 Solar and Stellar Astrophysics +1612.07386 Robotics +1612.08550 Biomolecules +1612.09358 Differential Geometry +1612.09540 Category Theory +1612.09551 Solar and Stellar Astrophysics +1701.00296 Phenomenology +1701.00372 High Energy Astrophysical Phenomena +1701.00643 Differential Geometry +1701.00920 Classical Analysis and ODEs +1701.01060 Mesoscale and Nanoscale Physics +1701.01318 Dynamical Systems +1701.01869 Quantum Gases +1701.02076 Quantum Algebra +1701.02238 Representation Theory +1701.02304 High Energy Astrophysical Phenomena +1701.02489 Other Condensed Matter +1701.02492 High Energy Astrophysical Phenomena +1701.02636 Functional Analysis +1701.02816 +1701.03164 Neurons and Cognition +1701.03214 Computation and Language +1701.03324 Materials Science +1701.03437 +1701.03450 Statistical Mechanics +1701.03550 Applications +1701.03873 Phenomenology +1701.03877 Information Theory +1701.03961 Optimization and Control +1701.04024 Computation and Language +1701.04050 Analysis of PDEs +1701.04402 Instrumentation and Methods for Astrophysics +1701.04897 Materials Science +1701.05051 +1701.05279 +1701.05283 Astrophysics of Galaxies +1701.05395 Data Structures and Algorithms +1701.05603 Combinatorics +1701.05677 Optimization and Control +1701.05756 Logic +1701.05957 Computer Vision and Pattern Recognition +1701.06149 High Energy Astrophysical Phenomena +1701.06182 Computational Engineering, Finance, and Science +1701.06235 +1701.06285 Materials Science +1701.06357 Information Theory +1701.06384 Combinatorics +1701.06474 +1701.06545 Information Theory +1701.06549 Computation and Language +1701.06588 Chemical Physics +1701.06627 Instrumentation and Methods for Astrophysics +1701.06660 Theory +1701.06904 +1701.07198 Combinatorics +1701.07464 Theory +1701.07507 Number Theory +1701.07521 Information Theory +1701.07586 Materials Science +1701.07638 Applications +1701.08152 Category Theory +1701.08218 Strongly Correlated Electrons +1701.08354 Information Theory +1701.08763 Theory +1701.08790 Physics and Society +1701.08848 Fluid Dynamics +1701.08913 +1701.09184 Statistical Mechanics +1702.00117 Theory +1702.00301 General Physics +1702.00354 Neurons and Cognition +1702.00418 Cosmology and Nongalactic Astrophysics +1702.00574 Fluid Dynamics +1702.00599 Materials Science +1702.00646 Combinatorics +1702.00663 Materials Science +1702.00784 Space Physics +1702.00853 Cosmology and Nongalactic Astrophysics +1702.00891 Theory +1702.00956 Sound +1702.00988 Methodology +1702.00989 Astrophysics of Galaxies +1702.01056 Social and Information Networks +1702.01063 Solar and Stellar Astrophysics +1702.01114 General Mathematics +1702.01115 Soft Condensed Matter +1702.01116 +1702.01118 Cosmology and Nongalactic Astrophysics +1702.01119 Social and Information Networks +1702.01121 Astrophysics of Galaxies +1702.01122 Astrophysics of Galaxies +1702.01124 High Energy Astrophysical Phenomena +1702.01125 Machine Learning +1702.01128 Exactly Solvable and Integrable Systems +1702.01129 Numerical Analysis +1702.01131 Combinatorics +1702.01132 Cryptography and Security +1702.01133 History and Philosophy of Physics +1702.01134 Solar and Stellar Astrophysics +1702.01135 Artificial Intelligence +1702.01136 Data Structures and Algorithms +1702.01137 Earth and Planetary Astrophysics +1702.01138 Strongly Correlated Electrons +1702.01139 Symplectic Geometry +1702.01140 Astrophysics of Galaxies +1702.01144 Materials Science +1702.01145 Machine Learning +1702.01146 Classical Physics +1702.01147 Computation and Language +1702.01148 Materials Science +1702.01149 Superconductivity +1702.01150 Geometric Topology +1702.01151 Digital Libraries +1702.01152 Solar and Stellar Astrophysics +1702.01153 Mesoscale and Nanoscale Physics +1702.01154 Networking and Internet Architecture +1702.01158 High Energy Astrophysical Phenomena +1702.01159 Information Retrieval +1702.01161 Optics +1702.01162 +1702.01163 Digital Libraries +1702.01164 Statistics Theory +1702.01165 Digital Libraries +1702.01166 Computation +1702.01167 Computer Vision and Pattern Recognition +1702.01168 Databases +1702.01169 Information Theory +1702.01170 +1702.01171 High Energy Astrophysical Phenomena +1702.01172 Computation and Language +1702.01173 Algebraic Geometry +1702.01174 Dynamical Systems +1702.01175 Mathematical Finance +1702.01178 Dynamical Systems +1702.01179 Computation and Language +1702.01180 Numerical Analysis +1702.01182 Learning +1702.01183 Applications +1702.01184 Computers and Society +1702.01185 Computation +1702.01186 Instrumentation and Detectors +1702.01187 Computation and Language +1702.01188 History and Overview +1702.01189 Phenomenology +1702.01190 +1702.01191 Applications +1702.01192 Dynamical Systems +1702.01193 Theory +1702.01194 Mesoscale and Nanoscale Physics +1702.01195 Fluid Dynamics +1702.01196 Superconductivity +1702.01197 Number Theory +1702.01198 Information Theory +1702.01199 Algebraic Geometry +1702.01200 Learning +1702.01202 +1702.01203 Information Theory +1702.01205 Artificial Intelligence +1702.01206 Applications +1702.01207 +1702.01208 Databases +1702.01209 Machine Learning +1702.01210 Atomic Physics +1702.01213 +1702.01214 Dynamical Systems +1702.01216 +1702.01217 Populations and Evolution +1702.01218 Information Theory +1702.01219 Astrophysics of Galaxies +1702.01220 Materials Science +1702.01221 Rings and Algebras +1702.01222 Functional Analysis +1702.01223 Information Theory +1702.01225 Statistics Theory +1702.01226 Learning +1702.01227 Exactly Solvable and Integrable Systems +1702.01228 Learning +1702.01229 Learning +1702.01230 Optics +1702.01232 Optics +1702.01233 Phenomenology +1702.01234 Probability +1702.01235 Classical Physics +1702.01236 Numerical Analysis +1702.01237 Logic +1702.01239 Chemical Physics +1702.01241 Information Theory +1702.01242 Adaptation and Self-Organizing Systems +1702.01244 Representation Theory +1702.01245 Materials Science +1702.01246 Functional Analysis +1702.01248 Mesoscale and Nanoscale Physics +1702.01249 Number Theory +1702.01250 Methodology +1702.01251 Cryptography and Security +1702.01252 Quantitative Methods +1702.01253 Combinatorics +1702.01255 Phenomenology +1702.01256 Probability +1702.01257 Group Theory +1702.01258 Analysis of PDEs +1702.01259 Representation Theory +1702.01260 +1702.01261 Dynamical Systems +1702.01263 Functional Analysis +1702.01264 Functional Analysis +1702.01265 Subcellular Processes +1702.01267 +1702.01268 Learning +1702.01269 +1702.01270 Software Engineering +1702.01271 Group Theory +1702.01272 Mesoscale and Nanoscale Physics +1702.01273 Combinatorics +1702.01275 Computational Geometry +1702.01276 Computer Vision and Pattern Recognition +1702.01277 Computational Geometry +1702.01278 Solar and Stellar Astrophysics +1702.01282 Differential Geometry +1702.01283 Discrete Mathematics +1702.01285 Information Theory +1702.01286 Data Structures and Algorithms +1702.01287 Computation and Language +1702.01289 Representation Theory +1702.01290 Data Structures and Algorithms +1702.01291 Cosmology and Nongalactic Astrophysics +1702.01293 Learning +1702.01294 Lattice +1702.01295 Hardware Architecture +1702.01296 Lattice +1702.01297 Combinatorics +1702.01298 Information Theory +1702.01299 Combinatorics +1702.01300 Optics +1702.01301 Materials Science +1702.01302 Materials Science +1702.01303 Mesoscale and Nanoscale Physics +1702.01304 Computer Vision and Pattern Recognition +1702.01305 Superconductivity +1702.01306 Dynamical Systems +1702.01307 Analysis of PDEs +1702.01308 Group Theory +1702.01309 Information Theory +1702.01311 Information Theory +1702.01313 Learning +1702.01314 Information Theory +1702.01315 Computer Vision and Pattern Recognition +1702.01316 Number Theory +1702.01317 Information Theory +1702.01318 Soft Condensed Matter +1702.01319 +1702.01321 Combinatorics +1702.01322 Analysis of PDEs +1702.01323 Phenomenology +1702.01324 Phenomenology +1702.01325 Multimedia +1702.01326 Computation +1702.01327 +1702.01328 Differential Geometry +1702.01329 Phenomenology +1702.01330 Statistics Theory +1702.01331 Theory +1702.01332 Artificial Intelligence +1702.01333 Materials Science +1702.01334 Computer Vision and Pattern Recognition +1702.01335 Fluid Dynamics +1702.01336 +1702.01337 Rings and Algebras +1702.01338 Quantum Algebra +1702.01339 Computer Vision and Pattern Recognition +1702.01340 Data Structures and Algorithms +1702.01341 Mesoscale and Nanoscale Physics +1702.01342 High Energy Astrophysical Phenomena +1702.01343 Theory +1702.01345 Commutative Algebra +1702.01346 Dynamical Systems +1702.01348 Networking and Internet Architecture +1702.01349 Methodology +1702.01350 History and Overview +1702.01351 Representation Theory +1702.01352 Phenomenology +1702.01353 Information Theory +1702.01354 Portfolio Management +1702.01355 Combinatorics +1702.01357 Combinatorics +1702.01358 Combinatorics +1702.01360 Computation and Language +1702.01361 Materials Science +1702.01362 Economics +1702.01363 Geometric Topology +1702.01364 Statistical Mechanics +1702.01365 Analysis of PDEs +1702.01366 Materials Science +1702.01367 Representation Theory +1702.01368 +1702.01369 Optimization and Control +1702.01370 Strongly Correlated Electrons +1702.01371 +1702.01372 Materials Science +1702.01373 Machine Learning +1702.01374 Combinatorics +1702.01376 Information Theory +1702.01377 Number Theory +1702.01378 Group Theory +1702.01379 Group Theory +1702.01380 +1702.01381 Computer Vision and Pattern Recognition +1702.01382 High Energy Astrophysical Phenomena +1702.01383 Numerical Analysis +1702.01384 Analysis of PDEs +1702.01385 Mathematical Finance +1702.01386 Information Theory +1702.01387 +1702.01388 Spectral Theory +1702.01389 Information Theory +1702.01390 Combinatorics +1702.01391 Analysis of PDEs +1702.01393 Databases +1702.01395 Instrumentation and Methods for Astrophysics +1702.01396 Distributed, Parallel, and Cluster Computing +1702.01398 Social and Information Networks +1702.01399 Systems and Control +1702.01404 Experiment +1702.01407 Plasma Physics +1702.01409 +1702.01410 Soft Condensed Matter +1702.01411 History and Philosophy of Physics +1702.01412 Phenomenology +1702.01413 Data Analysis, Statistics and Probability +1702.01414 Machine Learning +1702.01415 Optics +1702.01416 Computer Science and Game Theory +1702.01417 Computation and Language +1702.01419 Functional Analysis +1702.01420 Phenomenology +1702.01421 Optimization and Control +1702.01422 Information Theory +1702.01423 Computational Complexity +1702.01424 Discrete Mathematics +1702.01425 Information Theory +1702.01426 Computer Vision and Pattern Recognition +1702.01427 Analysis of PDEs +1702.01428 Symplectic Geometry +1702.01429 +1702.01431 Disordered Systems and Neural Networks +1702.01432 Dynamical Systems +1702.01433 Group Theory +1702.01434 Social and Information Networks +1702.01435 +1702.01436 Populations and Evolution +1702.01437 Soft Condensed Matter +1702.01438 Fluid Dynamics +1702.01439 Quantum Gases +1702.01440 Mesoscale and Nanoscale Physics +1702.01441 Fluid Dynamics +1702.01442 Combinatorics +1702.01443 Distributed, Parallel, and Cluster Computing +1702.01444 Computer Vision and Pattern Recognition +1702.01447 Optics +1702.01448 Number Theory +1702.01449 Differential Geometry +1702.01450 Mesoscale and Nanoscale Physics +1702.01451 Social and Information Networks +1702.01452 Social and Information Networks +1702.01453 Fluid Dynamics +1702.01454 Computational Complexity +1702.01455 Dynamical Systems +1702.01457 High Energy Astrophysical Phenomena +1702.01459 Phenomenology +1702.01461 Dynamical Systems +1702.01462 +1702.01463 Atomic Physics +1702.01464 Computational Engineering, Finance, and Science +1702.01465 Classical Physics +1702.01466 Computation and Language +1702.01468 Instrumentation and Detectors +1702.01470 Probability +1702.01471 Analysis of PDEs +1702.01472 Materials Science +1702.01474 Optimization and Control +1702.01476 Symplectic Geometry +1702.01477 +1702.01478 Computer Vision and Pattern Recognition +1702.01479 +1702.01480 Mesoscale and Nanoscale Physics +1702.01481 Strongly Correlated Electrons +1702.01482 +1702.01487 Numerical Analysis +1702.01489 High Energy Astrophysical Phenomena +1702.01491 Numerical Analysis +1702.01492 Optimization and Control +1702.01493 Algebraic Topology +1702.01494 Astrophysics of Galaxies +1702.01495 Probability +1702.01496 Lattice +1702.01498 Lattice +1702.01499 Computer Vision and Pattern Recognition +1702.01500 +1702.01502 Spectral Theory +1702.01503 Representation Theory +1702.01504 Learning +1702.01505 Theory +1702.01506 Analysis of PDEs +1702.01507 Computer Vision and Pattern Recognition +1702.01508 Distributed, Parallel, and Cluster Computing +1702.01509 Materials Science +1702.01510 Artificial Intelligence +1702.01511 Phenomenology +1702.01512 +1702.01513 Lattice +1702.01514 Differential Geometry +1702.01515 Materials Science +1702.01516 Information Retrieval +1702.01517 Computation and Language +1702.01518 Optimization and Control +1702.01519 Statistical Mechanics +1702.01520 Information Retrieval +1702.01522 Disordered Systems and Neural Networks +1702.01523 +1702.01524 Computational Geometry +1702.01525 Strongly Correlated Electrons +1702.01526 Lattice +1702.01528 Computer Vision and Pattern Recognition +1702.01529 Mesoscale and Nanoscale Physics +1702.01530 Graphics +1702.01531 Astrophysics of Galaxies +1702.01532 Physics and Society +1702.01533 Emerging Technologies +1702.01534 Differential Geometry +1702.01535 Experiment +1702.01536 +1702.01537 Graphics +1702.01538 Fluid Dynamics +1702.01539 Geophysics +1702.01540 Graphics +1702.01541 +1702.01542 Operator Algebras +1702.01543 Classical Analysis and ODEs +1702.01544 Optics +1702.01545 Theory +1702.01548 +1702.01549 Instrumentation and Detectors +1702.01550 +1702.01552 Numerical Analysis +1702.01555 Materials Science +1702.01556 Logic +1702.01558 +1702.01561 +1702.01562 Classical Analysis and ODEs +1702.01563 Fluid Dynamics +1702.01564 Analysis of PDEs +1702.01567 Optimization and Control +1702.01568 Neurons and Cognition +1702.01569 Computation and Language +1702.01571 Astrophysics of Galaxies +1702.01572 Superconductivity +1702.01573 Strongly Correlated Electrons +1702.01575 Mesoscale and Nanoscale Physics +1702.01576 Applications +1702.01578 Biological Physics +1702.01579 Earth and Planetary Astrophysics +1702.01580 Astrophysics of Galaxies +1702.01581 Optics +1702.01582 Physics and Society +1702.01583 Quantum Gases +1702.01584 Plasma Physics +1702.01585 Complex Variables +1702.01587 Computation and Language +1702.01588 Operator Algebras +1702.01590 +1702.01592 Solar and Stellar Astrophysics +1702.01594 Solar and Stellar Astrophysics +1702.01595 Soft Condensed Matter +1702.01596 Databases +1702.01597 Probability +1702.01598 Strongly Correlated Electrons +1702.01599 +1702.01601 Artificial Intelligence +1702.01604 Phenomenology +1702.01605 Information Theory +1702.01606 Logic in Computer Science +1702.01608 Atomic Physics +1702.01609 +1702.01610 Superconductivity +1702.01612 +1702.01613 Plasma Physics +1702.01614 +1702.01615 Lattice +1702.01616 High Energy Astrophysical Phenomena +1702.01617 Numerical Analysis +1702.01618 Computation +1702.01619 Solar and Stellar Astrophysics +1702.01620 Classical Physics +1702.01621 Solar and Stellar Astrophysics +1702.01622 Disordered Systems and Neural Networks +1702.01623 Soft Condensed Matter +1702.01624 Cryptography and Security +1702.01625 Experiment +1702.01626 Differential Geometry +1702.01628 Cosmology and Nongalactic Astrophysics +1702.01629 High Energy Astrophysical Phenomena +1702.01631 Dynamical Systems +1702.01632 +1702.01633 Mesoscale and Nanoscale Physics +1702.01634 +1702.01636 Computer Vision and Pattern Recognition +1702.01638 Computer Vision and Pattern Recognition +1702.01639 Instrumentation and Detectors +1702.01641 Mesoscale and Nanoscale Physics +1702.01642 History and Philosophy of Physics +1702.01643 +1702.01644 General Mathematics +1702.01646 Astrophysics of Galaxies +1702.01648 Information Theory +1702.01650 Mesoscale and Nanoscale Physics +1702.01651 Dynamical Systems +1702.01653 Number Theory +1702.01654 Instrumentation and Detectors +1702.01656 Differential Geometry +1702.01657 Earth and Planetary Astrophysics +1702.01658 Strongly Correlated Electrons +1702.01659 Atomic Physics +1702.01661 Social and Information Networks +1702.01662 Geometric Topology +1702.01664 Fluid Dynamics +1702.01665 Symbolic Computation +1702.01667 Solar and Stellar Astrophysics +1702.01668 Complex Variables +1702.01669 Algebraic Geometry +1702.01670 Information Theory +1702.01671 Strongly Correlated Electrons +1702.01672 Information Theory +1702.01673 Operator Algebras +1702.01674 Information Theory +1702.01675 Combinatorics +1702.01676 Social and Information Networks +1702.01677 Data Structures and Algorithms +1702.01679 Information Theory +1702.01680 +1702.01681 Networking and Internet Architecture +1702.01682 Cosmology and Nongalactic Astrophysics +1702.01683 Number Theory +1702.01684 Algebraic Geometry +1702.01686 Economics +1702.01687 +1702.01688 +1702.01689 Dynamical Systems +1702.01690 Fluid Dynamics +1702.01692 Neural and Evolutionary Computing +1702.01694 Symbolic Computation +1702.01695 Programming Languages +1702.01696 Statistics Theory +1702.01698 Differential Geometry +1702.01700 Cosmology and Nongalactic Astrophysics +1702.01702 Numerical Analysis +1702.01705 Biological Physics +1702.01706 Mathematical Finance +1702.01707 Numerical Analysis +1702.01708 +1702.01709 Instrumentation and Detectors +1702.01710 Statistical Mechanics +1702.01711 Computation and Language +1702.01712 Astrophysics of Galaxies +1702.01713 Information Retrieval +1702.01714 Computation and Language +1702.01716 Mesoscale and Nanoscale Physics +1702.01717 Information Retrieval +1702.01718 Analysis of PDEs +1702.01719 Data Structures and Algorithms +1702.01720 +1702.01721 Computer Vision and Pattern Recognition +1702.01723 +1702.01724 +1702.01725 Differential Geometry +1702.01726 Phenomenology +1702.01729 Statistical Mechanics +1702.01730 +1702.01731 Computer Vision and Pattern Recognition +1702.01732 Mesoscale and Nanoscale Physics +1702.01734 Information Theory +1702.01735 +1702.01736 Statistics Theory +1702.01737 Phenomenology +1702.01739 Information Theory +1702.01740 Mesoscale and Nanoscale Physics +1702.01741 Astrophysics of Galaxies +0802.3648 Symplectic Geometry +0811.0155 Differential Geometry +0905.3237 Symplectic Geometry +0910.4041 Classical Analysis and ODEs +0911.0507 Probability +1009.4543 Differential Geometry +1101.2420 Symplectic Geometry +1103.2147 Number Theory +1106.3878 Differential Geometry +1110.4241 Optimization and Control +1111.2581 Information Theory +1111.7236 Optics +1111.7252 Optics +1205.2747 +1207.6480 Analysis of PDEs +1208.1486 +1303.7140 Optics +1304.5672 Cryptography and Security +1307.5875 Methodology +1308.3504 Functional Analysis +1311.3881 Computational Finance +1311.7323 Optics +1402.3498 Number Theory +1403.3729 Complex Variables +1403.7856 Number Theory +1404.5877 Metric Geometry +1407.0618 Instrumentation and Detectors +1407.0840 Differential Geometry +1408.6096 Operator Algebras +1410.2296 Methodology +1411.0354 Differential Geometry +1411.5306 Algebraic Topology +1411.6643 +1412.1144 Instrumentation and Detectors +1501.05114 +1501.05634 +1502.03225 Logic +1502.04722 Atomic Physics +1502.06573 K-Theory and Homology +1503.05205 Combinatorics +1504.00579 Trading and Market Microstructure +1504.03057 Optics +1504.05597 Commutative Algebra +1506.01186 Computer Vision and Pattern Recognition +1506.05260 Geometric Topology +1506.05320 Optimization and Control +1506.07977 Probability +1506.08386 Algebraic Geometry +1506.08903 Algebraic Topology +1506.09117 Algebraic Geometry +1507.03955 Neural and Evolutionary Computing +1507.04559 Analysis of PDEs +1507.05351 Risk Management +1507.08821 Differential Geometry +1508.03422 Computer Vision and Pattern Recognition +1509.04131 +1509.09160 Quantum Algebra +1510.00863 Algebraic Geometry +1510.01200 Differential Geometry +1510.03643 Differential Geometry +1510.05724 Logic in Computer Science +1511.00826 Theory +1511.01448 Methodology +1511.01947 Group Theory +1511.04770 +1511.05427 Computational Geometry +1511.08101 Cryptography and Security +1512.01047 Differential Geometry +1512.02307 +1512.02894 Probability +1512.06796 Optimization and Control +1512.07109 +1512.08937 Geometric Topology +1601.06315 Numerical Analysis +1602.04300 Symbolic Computation +1602.08068 Optimization and Control +1602.08308 +1602.08471 +1603.00310 Statistical Mechanics +1603.03220 Statistics Theory +1603.06013 Combinatorics +1603.06234 Optimization and Control +1603.08447 Information Theory +1604.00128 Earth and Planetary Astrophysics +1604.01686 Learning +1604.01959 +1604.02475 Information Theory +1604.02569 History and Philosophy of Physics +1604.04855 Discrete Mathematics +1605.00353 Statistics Theory +1605.05620 Geometric Topology +1605.06552 Instrumentation and Detectors +1605.06848 Computational Complexity +1605.07516 Information Theory +1605.07896 Computer Science and Game Theory +1605.09575 Representation Theory +1606.01495 Computational Finance +1606.01976 Logic +1606.01987 Analysis of PDEs +1606.02201 Phenomenology +1606.02592 Dynamical Systems +1606.03956 Information Theory +1606.03971 Information Theory +1606.04062 Optimization and Control +1606.04142 Information Theory +1606.04722 Learning +1606.06092 Analysis of PDEs +1606.06910 Phenomenology +1606.07846 Representation Theory +1606.08519 Atmospheric and Oceanic Physics +1606.09162 Theory +1607.01716 Theory +1607.01899 Phenomenology +1607.02335 Information Theory +1607.04203 +1607.07705 Data Analysis, Statistics and Probability +1608.00161 Computer Vision and Pattern Recognition +1608.00650 Solar and Stellar Astrophysics +1608.02238 Spectral Theory +1608.03936 +1608.05782 Phenomenology +1608.06299 Phenomenology +1608.06423 Number Theory +1608.07200 Distributed, Parallel, and Cluster Computing +1608.07227 Analysis of PDEs +1608.07757 Statistical Mechanics +1608.08462 Geometric Topology +1608.08802 High Energy Astrophysical Phenomena +1609.00191 Analysis of PDEs +1609.00280 Soft Condensed Matter +1609.01598 Differential Geometry +1609.01709 Quantum Gases +1609.01873 +1609.02121 Social and Information Networks +1609.03669 +1609.04252 Lattice +1609.04598 Fluid Dynamics +1609.06958 Fluid Dynamics +1609.07418 Complex Variables +1609.07784 +1609.08029 Numerical Analysis +1609.08793 Lattice +1610.00547 +1610.02554 Materials Science +1610.02794 Fluid Dynamics +1610.02918 Machine Learning +1610.03761 Computer Vision and Pattern Recognition +1610.03836 Algebraic Geometry +1610.04035 Strongly Correlated Electrons +1610.04744 Combinatorics +1610.05299 +1610.06380 High Energy Astrophysical Phenomena +1610.07398 Numerical Analysis +1610.08382 Cosmology and Nongalactic Astrophysics +1610.09113 Chemical Physics +1610.09413 Optimization and Control +1610.09685 Theory +1611.00223 General Physics +1611.01078 Computational Geometry +1611.01191 Atomic Physics +1611.01499 Experiment +1611.01976 Chaotic Dynamics +1611.02085 Instrumentation and Detectors +1611.02086 Phenomenology +1611.02167 Learning +1611.02827 Materials Science +1611.03342 Quantum Gases +1611.04316 Materials Science +1611.04418 Quantum Gases +1611.04494 Mathematical Finance +1611.04605 Phenomenology +1611.05076 Physics and Society +1611.05591 Materials Science +1611.05606 Materials Science +1611.05923 Machine Learning +1611.06354 Materials Science +1611.06492 Computer Vision and Pattern Recognition +1611.06509 Statistical Mechanics +1611.07126 +1611.07273 Superconductivity +1611.07274 +1611.08199 Differential Geometry +1611.08739 Group Theory +1611.08996 Atmospheric and Oceanic Physics +1611.09752 Mesoscale and Nanoscale Physics +1611.09779 Probability +1612.00022 Astrophysics of Galaxies +1612.00112 Physics Education +1612.00312 Data Analysis, Statistics and Probability +1612.00369 Neural and Evolutionary Computing +1612.00699 Materials Science +1612.00718 Number Theory +1612.00852 Cosmology and Nongalactic Astrophysics +1612.01247 Theory +1612.01508 Statistics Theory +1612.01584 Lattice +1612.02005 Theory +1612.02055 Logic in Computer Science +1612.02617 Statistical Mechanics +1612.02725 High Energy Astrophysical Phenomena +1612.02891 Phenomenology +1612.03077 Phenomenology +1612.03589 Materials Science +1612.03686 Functional Analysis +1612.03902 Learning +1612.04464 Numerical Analysis +1612.04498 Materials Science +1612.04559 Group Theory +1612.04723 Experiment +1612.05575 Materials Science +1612.05866 +1612.06045 Methodology +1612.06156 Disordered Systems and Neural Networks +1612.06375 Instrumentation and Detectors +1612.06476 Computer Science and Game Theory +1612.06893 Algebraic Geometry +1612.07696 Astrophysics of Galaxies +1612.08250 +1612.08251 +1612.09071 Information Theory +1612.09101 +1612.09459 Numerical Analysis +1612.09547 Mesoscale and Nanoscale Physics +1701.00191 Materials Science +1701.00573 Numerical Analysis +1701.00940 Optics +1701.02042 Experiment +1701.02473 Optimization and Control +1701.02551 Number Theory +1701.02692 Group Theory +1701.02841 Algebraic Geometry +1701.03596 Fluid Dynamics +1701.03821 Optimization and Control +1701.04088 Materials Science +1701.04815 High Energy Astrophysical Phenomena +1701.04841 Dynamical Systems +1701.05335 Learning +1701.05733 Other Condensed Matter +1701.05769 +1701.06241 Information Theory +1701.07063 Instrumentation and Detectors +1701.07686 Atomic Physics +1701.08504 Number Theory +1701.08567 Economics +1701.08614 Phenomenology +1701.08709 Artificial Intelligence +1701.09091 +1702.00371 +1702.00488 Statistical Mechanics +1702.00537 Analysis of PDEs +1702.01486 Computer Vision and Pattern Recognition +1702.02200 Astrophysics of Galaxies +1702.02384 General Physics +1702.02416 Theory +1702.02663 Theory +1702.02980 Emerging Technologies +1702.03222 Information Retrieval +1702.04021 +1702.04482 General Topology +1702.05457 Algebraic Topology +1702.05477 Atomic Physics +1702.05811 Analysis of PDEs +1702.06051 +1702.06681 Astrophysics of Galaxies +1702.06848 +1702.07022 Materials Science +1702.07272 Analysis of PDEs +1702.07322 High Energy Astrophysical Phenomena +1702.08076 Analysis of PDEs +1702.08888 +1703.00007 Chemical Physics +1703.00501 Theory +1703.01523 Phenomenology +1703.01557 Learning +1703.01857 Earth and Planetary Astrophysics +1703.02352 Differential Geometry +1703.02375 Learning +1703.02676 High Energy Astrophysical Phenomena +1703.03525 Soft Condensed Matter +1703.03616 Optimization and Control +1703.03675 +1703.04000 High Energy Astrophysical Phenomena +1703.04031 Digital Libraries +1703.04178 Computation and Language +1703.04387 Probability +1703.04969 +1703.04972 Group Theory +1703.05008 Fluid Dynamics +1703.05166 Instrumentation and Methods for Astrophysics +1703.05186 Programming Languages +1703.05734 Phenomenology +1703.05825 Earth and Planetary Astrophysics +1703.05865 Mesoscale and Nanoscale Physics +1703.05925 Phenomenology +1703.05982 Phenomenology +1703.06075 Number Theory +1703.06116 Numerical Analysis +1703.06181 +1703.06250 +1703.06289 Phenomenology +1703.06349 Combinatorics +1703.06414 Mesoscale and Nanoscale Physics +1703.06436 +1703.06589 Theory +1703.06636 Strongly Correlated Electrons +1703.06770 Optimization and Control +1703.06942 Classical Analysis and ODEs +1703.06982 +1703.06983 Computational Geometry +1703.06985 Probability +1703.07052 +1703.07091 Phenomenology +1703.07146 Algebraic Geometry +1703.07368 +1703.07461 Molecular Networks +1703.07474 Cryptography and Security +1703.07493 Differential Geometry +1703.07539 Optimization and Control +1703.07542 Phenomenology +1703.07547 Programming Languages +1703.07570 Computer Vision and Pattern Recognition +1703.07598 Algebraic Geometry +1703.07649 +1703.07724 Quantitative Methods +1703.07768 Computational Complexity +1703.07775 Chemical Physics +1703.07776 Theory +1703.07777 Materials Science +1703.07778 Astrophysics of Galaxies +1703.07780 Theory +1703.07781 Astrophysics of Galaxies +1703.07782 +1703.07784 Phenomenology +1703.07785 +1703.07786 Instrumentation and Methods for Astrophysics +1703.07788 Mesoscale and Nanoscale Physics +1703.07789 Computational Physics +1703.07790 Earth and Planetary Astrophysics +1703.07791 Phenomenology +1703.07792 Numerical Analysis +1703.07794 High Energy Astrophysical Phenomena +1703.07795 Databases +1703.07796 Other Condensed Matter +1703.07797 Astrophysics of Galaxies +1703.07798 High Energy Astrophysical Phenomena +1703.07799 Solar and Stellar Astrophysics +1703.07802 Optimization and Control +1703.07803 Numerical Analysis +1703.07804 Optimization and Control +1703.07805 Computation and Language +1703.07806 Algebraic Geometry +1703.07807 Learning +1703.07808 Phenomenology +1703.07809 Numerical Analysis +1703.07810 Optimization and Control +1703.07811 +1703.07813 Statistical Mechanics +1703.07814 Computer Vision and Pattern Recognition +1703.07815 Computer Vision and Pattern Recognition +1703.07816 High Energy Astrophysical Phenomena +1703.07818 Mesoscale and Nanoscale Physics +1703.07819 +1703.07820 Representation Theory +1703.07822 Robotics +1703.07823 Learning +1703.07824 Optimization and Control +1703.07825 Phenomenology +1703.07826 Algebraic Topology +1703.07827 Plasma Physics +1703.07828 +1703.07829 Cosmology and Nongalactic Astrophysics +1703.07830 Learning +1703.07831 Theory +1703.07832 Cosmology and Nongalactic Astrophysics +1703.07833 Computational Complexity +1703.07834 Computer Vision and Pattern Recognition +1703.07835 Soft Condensed Matter +1703.07836 Astrophysics of Galaxies +1703.07838 Symplectic Geometry +1703.07841 Neural and Evolutionary Computing +1703.07843 Combinatorics +1703.07844 Genomics +1703.07845 Analysis of PDEs +1703.07846 High Energy Astrophysical Phenomena +1703.07847 +1703.07848 Cosmology and Nongalactic Astrophysics +1703.07849 Combinatorics +1703.07850 Chemical Physics +1703.07851 Theory +1703.07852 Plasma Physics +1703.07853 Learning +1703.07854 Classical Analysis and ODEs +1703.07855 High Energy Astrophysical Phenomena +1703.07856 Methodology +1703.07857 Classical Analysis and ODEs +1703.07858 Analysis of PDEs +1703.07859 Classical Analysis and ODEs +1703.07860 Superconductivity +1703.07861 Analysis of PDEs +1703.07862 Classical Analysis and ODEs +1703.07863 Analysis of PDEs +1703.07864 Materials Science +1703.07865 Numerical Analysis +1703.07866 Group Theory +1703.07867 Data Structures and Algorithms +1703.07868 Probability +1703.07869 Human-Computer Interaction +1703.07870 Optimization and Control +1703.07871 Combinatorics +1703.07872 Learning +1703.07874 +1703.07875 Instrumentation and Detectors +1703.07877 Astrophysics of Galaxies +1703.07878 Cosmology and Nongalactic Astrophysics +1703.07879 Optimization and Control +1703.07880 Materials Science +1703.07881 K-Theory and Homology +1703.07882 Chaotic Dynamics +1703.07883 Mesoscale and Nanoscale Physics +1703.07884 Theory +1703.07885 Theory +1703.07886 Machine Learning +1703.07887 Robotics +1703.07888 Algebraic Geometry +1703.07889 Astrophysics of Galaxies +1703.07890 Robotics +1703.07891 Computational Complexity +1703.07892 Representation Theory +1703.07893 Phenomenology +1703.07894 Cosmology and Nongalactic Astrophysics +1703.07895 Earth and Planetary Astrophysics +1703.07896 Functional Analysis +1703.07897 High Energy Astrophysical Phenomena +1703.07898 Symplectic Geometry +1703.07900 Analysis of PDEs +1703.07901 +1703.07902 Analysis of PDEs +1703.07903 Probability +1703.07904 Methodology +1703.07905 Group Theory +1703.07906 Representation Theory +1703.07907 Information Theory +1703.07909 Machine Learning +1703.07910 Computer Vision and Pattern Recognition +1703.07911 Theory +1703.07912 Information Theory +1703.07913 Atomic Physics +1703.07914 Neurons and Cognition +1703.07917 Earth and Planetary Astrophysics +1703.07918 Quantum Gases +1703.07920 Computer Vision and Pattern Recognition +1703.07922 Superconductivity +1703.07923 Cosmology and Nongalactic Astrophysics +1703.07925 +1703.07926 Atomic Physics +1703.07927 Quantum Gases +1703.07928 Computer Vision and Pattern Recognition +1703.07929 Artificial Intelligence +1703.07930 Combinatorics +1703.07931 Astrophysics of Galaxies +1703.07932 Optimization and Control +1703.07933 +1703.07934 Systems and Control +1703.07935 Instrumentation and Detectors +1703.07936 Chaotic Dynamics +1703.07937 +1703.07938 Computer Vision and Pattern Recognition +1703.07939 Computer Vision and Pattern Recognition +1703.07940 Learning +1703.07941 Phenomenology +1703.07942 Dynamical Systems +1703.07943 Neurons and Cognition +1703.07944 Number Theory +1703.07945 Materials Science +1703.07946 Optimization and Control +1703.07947 Analysis of PDEs +1703.07948 Learning +1703.07950 Learning +1703.07951 Number Theory +1703.07953 Operator Algebras +1703.07954 Superconductivity +1703.07955 Systems and Control +1703.07956 Phenomenology +1703.07958 Optics +1703.07959 Phenomenology +1703.07960 Systems and Control +1703.07962 Numerical Analysis +1703.07963 Probability +1703.07964 Data Structures and Algorithms +1703.07965 Numerical Analysis +1703.07966 Probability +1703.07967 Information Theory +1703.07968 Optimization and Control +1703.07970 Commutative Algebra +1703.07971 Computer Vision and Pattern Recognition +1703.07972 Atomic Physics +1703.07973 Information Theory +1703.07974 Atomic Physics +1703.07975 Methodology +1703.07976 Astrophysics of Galaxies +1703.07977 Analysis of PDEs +1703.07978 Analysis of PDEs +1703.07980 Computer Vision and Pattern Recognition +1703.07981 +1703.07982 Information Theory +1703.07983 Functional Analysis +1703.07984 Optics +1703.07986 Algebraic Topology +1703.07987 Genomics +1703.07988 Differential Geometry +1703.07989 Astrophysics of Galaxies +1703.07990 Statistical Mechanics +1703.07991 Differential Geometry +1703.07992 Other Quantitative Biology +1703.07993 Theory +1703.07995 Combinatorics +1703.07996 Populations and Evolution +1703.07997 Operator Algebras +1703.07998 +1703.07999 Geometric Topology +1703.08000 Computer Vision and Pattern Recognition +1703.08001 Computer Vision and Pattern Recognition +1703.08002 Computation and Language +1703.08003 Earth and Planetary Astrophysics +1703.08004 +1703.08005 Software Engineering +1703.08006 Strongly Correlated Electrons +1703.08007 Soft Condensed Matter +1703.08009 Fluid Dynamics +1703.08010 +1703.08011 Phenomenology +1703.08012 Cosmology and Nongalactic Astrophysics +1703.08015 Distributed, Parallel, and Cluster Computing +1703.08016 +1703.08017 Phenomenology +1703.08018 Discrete Mathematics +1703.08019 Sound +1703.08020 Mesoscale and Nanoscale Physics +1703.08021 Analysis of PDEs +1703.08022 Numerical Analysis +1703.08024 Materials Science +1703.08026 +1703.08028 Analysis of PDEs +1703.08029 Phenomenology +1703.08030 Information Theory +1703.08031 Machine Learning +1703.08032 Number Theory +1703.08033 Computer Vision and Pattern Recognition +1703.08034 Superconductivity +1703.08035 Probability +1703.08036 +1703.08037 +1703.08038 +1703.08039 General Mathematics +1703.08040 +1703.08041 Data Structures and Algorithms +1703.08042 Spectral Theory +1703.08043 Information Theory +1703.08044 Optimization and Control +1703.08045 Methodology +1703.08047 Number Theory +1703.08048 Representation Theory +1703.08049 Analysis of PDEs +1703.08050 Computer Vision and Pattern Recognition +1703.08051 Fluid Dynamics +1703.08052 Machine Learning +1703.08053 +1703.08054 Statistical Mechanics +1703.08055 +1703.08056 Algebraic Geometry +1703.08057 Probability +1703.08058 Probability +1703.08059 Fluid Dynamics +1703.08060 Space Physics +1703.08061 Phenomenology +1703.08062 Mesoscale and Nanoscale Physics +1703.08063 Materials Science +1703.08064 Analysis of PDEs +1703.08065 Machine Learning +1703.08067 Biological Physics +1703.08068 Computation and Language +1703.08069 General Physics +1703.08071 Physics and Society +1703.08072 Plasma Physics +1703.08073 General Physics +1703.08074 Plasma Physics +1703.08075 Solar and Stellar Astrophysics +1703.08076 General Physics +1703.08077 +1703.08078 Probability +1703.08079 Numerical Analysis +1703.08080 High Energy Astrophysical Phenomena +1703.08081 Data Analysis, Statistics and Probability +1703.08082 +1703.08084 Computation and Language +1703.08085 Machine Learning +1703.08086 Algebraic Geometry +1703.08089 Computer Vision and Pattern Recognition +1703.08090 Methodology +1703.08091 Instrumentation and Detectors +1703.08092 Probability +1703.08093 Information Theory +1703.08094 Algebraic Topology +1703.08095 +1703.08096 Astrophysics of Galaxies +1703.08097 Phenomenology +1703.08100 Social and Information Networks +1703.08101 Complex Variables +1703.08102 Operator Algebras +1703.08103 Analysis of PDEs +1703.08104 +1703.08105 Instrumentation and Detectors +1703.08106 Materials Science +1703.08107 +1703.08108 History and Overview +1703.08110 Machine Learning +1703.08111 Applications +1703.08112 Solar and Stellar Astrophysics +1703.08113 Programming Languages +1703.08114 +1703.08115 Systems and Control +1703.08116 Quantum Gases +1703.08117 Plasma Physics +1703.08118 +1703.08119 Computer Vision and Pattern Recognition +1703.08120 Computation and Language +1703.08121 Group Theory +1703.08122 Solar and Stellar Astrophysics +1703.08123 Combinatorics +1703.08126 Statistical Mechanics +1703.08127 Information Theory +1703.08128 Functional Analysis +1703.08129 Classical Analysis and ODEs +1703.08130 Chemical Physics +1703.08133 Fluid Dynamics +1703.08134 Operator Algebras +1703.08135 Computation and Language +1703.08136 Computation and Language +1703.08137 Exactly Solvable and Integrable Systems +1703.08138 History and Philosophy of Physics +1703.08139 Computational Complexity +1703.08140 Analysis of PDEs +1703.08141 High Energy Astrophysical Phenomena +1703.08142 Strongly Correlated Electrons +1703.08143 Differential Geometry +1703.08144 Artificial Intelligence +1703.08145 Number Theory +1703.08146 Computational Physics +1703.08147 Number Theory +1703.08148 Phenomenology +1703.08149 Analysis of PDEs +1703.08150 Computer Science and Game Theory +1703.08151 Cryptography and Security +1703.08153 Systems and Control +1703.08154 Analysis of PDEs +1703.08156 +1703.08158 Numerical Analysis +1703.08159 Theory +1703.08160 +1703.08161 Geophysics +1703.08162 Phenomenology +1703.08163 Probability +1703.08164 Differential Geometry +1703.08165 Complex Variables +1703.08166 Phenomenology +1703.08167 Optimization and Control +1703.08168 +1703.08170 Phenomenology +1703.08171 Analysis of PDEs +1703.08172 Strongly Correlated Electrons +gr-qc/9307006 +gr-qc/9310009 +gr-qc/9311019 +gr-qc/9410013 +gr-qc/9410014 +gr-qc/9411016 +gr-qc/9507044 +gr-qc/9909036 +hep-th/0204092 Theory +math/0510075 Differential Geometry +math/0605302 Algebraic Geometry +math/0609487 Differential Geometry +nlin/0602026 Cellular Automata and Lattice Gases +1612.04124 +1702.03518 Theory +1702.05594 Learning +1702.05786 +1702.05846 Information Theory +1702.05892 Probability +1702.05971 Analysis of PDEs +1702.05977 Information Theory +1702.06073 Classical Analysis and ODEs +1012.4708 +1103.5222 Space Physics +1201.3381 Dynamical Systems +1205.2764 Mesoscale and Nanoscale Physics +1301.1547 Computational Complexity +1304.0579 Probability +1304.4030 Spectral Theory +1304.5656 Optics +1305.2137 Analysis of PDEs +1308.4788 Spectral Theory +1308.5261 Pattern Formation and Solitons +1309.5523 Analysis of PDEs +1310.6813 +1312.0134 Number Theory +1312.4636 Algebraic Geometry +1402.4969 K-Theory and Homology +1404.3516 Probability +1404.6574 Representation Theory +1405.0127 Spectral Theory +1405.2238 Functional Analysis +1406.0810 Algebraic Geometry +1406.4539 Optimization and Control +1408.2090 Phenomenology +1409.4008 Probability +1410.0322 Populations and Evolution +1410.1364 Instrumentation and Methods for Astrophysics +1410.4811 Algebraic Geometry +1411.4256 Logic in Computer Science +1412.2177 +1501.05923 Analysis of PDEs +1502.05248 Dynamical Systems +1504.05309 Mathematical Finance +1505.00646 Operator Algebras +1505.01668 Multiagent Systems +1506.02713 Algebraic Geometry +1507.00940 Theory +1507.04692 General Topology +1507.06195 Complex Variables +1508.02764 Earth and Planetary Astrophysics +1508.06342 Cosmology and Nongalactic Astrophysics +1508.06468 Algebraic Topology +1508.07880 Algebraic Geometry +1509.03354 Commutative Algebra +1509.03951 Methodology +1509.05886 Pattern Formation and Solitons +1509.06626 +1510.01907 Algebraic Topology +1510.04072 Algebraic Geometry +1510.05472 Operator Algebras +1510.05597 Algebraic Geometry +1511.07730 Combinatorics +1512.00224 Spectral Theory +1512.02255 Mesoscale and Nanoscale Physics +1512.02259 Strongly Correlated Electrons +1512.08065 Learning +1512.08562 Learning +1601.01442 +1601.03019 Analysis of PDEs +1601.04943 Programming Languages +1601.05481 Combinatorics +1602.03494 Emerging Technologies +1602.04618 Analysis of PDEs +1602.06109 Analysis of PDEs +1602.08376 Spectral Theory +1602.08719 Computer Science and Game Theory +1602.08789 Dynamical Systems +1603.01555 Representation Theory +1603.03611 Mesoscale and Nanoscale Physics +1603.03623 +1603.05928 Representation Theory +1603.06185 Information Theory +1603.07654 Algebraic Topology +1603.08131 Combinatorics +1603.09489 Logic +1604.00087 Neurons and Cognition +1604.00899 +1604.02968 Probability +1604.03095 Theory +1604.03189 Analysis of PDEs +1604.07190 Formal Languages and Automata Theory +1604.08492 Statistical Mechanics +1605.03262 Computational Physics +1605.05872 Networking and Internet Architecture +1605.08097 +1605.09688 +1606.01946 Systems and Control +1606.01947 Systems and Control +1606.04464 Computational Engineering, Finance, and Science +1606.05775 Representation Theory +1606.07431 Astrophysics of Galaxies +1606.09079 Optimization and Control +1607.03294 Statistics Theory +1607.04164 Mesoscale and Nanoscale Physics +1607.04176 Symbolic Computation +1607.04864 Probability +1607.05885 Functional Analysis +1607.07713 Phenomenology +1607.08849 Quantitative Methods +1608.01683 +1608.04498 +1608.04761 Quantitative Methods +1608.04811 +1608.05267 Computer Vision and Pattern Recognition +1608.06052 Algebraic Geometry +1608.06802 Methodology +1608.06886 +1608.08387 Neurons and Cognition +1608.08688 Mesoscale and Nanoscale Physics +1609.00988 Databases +1609.01590 +1609.01689 Numerical Analysis +1609.02172 Mesoscale and Nanoscale Physics +1609.02776 +1609.02792 Computational Physics +1609.02803 Number Theory +1609.03712 Theory +1609.05524 Learning +1609.05545 Digital Libraries +1609.05600 Computer Vision and Pattern Recognition +1609.05957 +1609.05967 Probability +1609.05994 Solar and Stellar Astrophysics +1609.07450 Discrete Mathematics +1609.07672 Learning +1609.08028 Applications +1609.08375 Disordered Systems and Neural Networks +1610.00015 Cosmology and Nongalactic Astrophysics +1610.00363 Cosmology and Nongalactic Astrophysics +1610.01824 Analysis of PDEs +1610.02064 Soft Condensed Matter +1610.02459 Mesoscale and Nanoscale Physics +1610.03131 Materials Science +1610.03370 Optimization and Control +1610.03549 Analysis of PDEs +1610.04341 Algebraic Geometry +1610.04855 General Physics +1610.05107 Number Theory +1610.05834 Computer Vision and Pattern Recognition +1610.07392 Theory +1610.08017 Mesoscale and Nanoscale Physics +1610.08022 Strongly Correlated Electrons +1610.08053 Instrumentation and Detectors +1610.08396 Strongly Correlated Electrons +1610.08530 Phenomenology +1610.08737 Materials Science +1610.09275 Mesoscale and Nanoscale Physics +1610.09396 +1611.00738 +1611.00945 Neurons and Cognition +1611.01508 +1611.01946 History and Overview +1611.02234 Soft Condensed Matter +1611.02398 +1611.03415 Theory +1611.03888 Probability +1611.03913 Optimization and Control +1611.04084 +1611.04539 Rings and Algebras +1611.04708 Combinatorics +1611.05325 +1611.06202 Statistical Mechanics +1611.06672 Mathematical Finance +1611.07783 Exactly Solvable and Integrable Systems +1611.08983 Computer Vision and Pattern Recognition +1611.09302 Solar and Stellar Astrophysics +1611.10304 Probability +1612.00042 Theory +1612.00336 +1612.00404 Computer Vision and Pattern Recognition +1612.01161 Mesoscale and Nanoscale Physics +1612.01170 Operator Algebras +1612.01570 Quantum Gases +1612.01871 Strongly Correlated Electrons +1612.02039 Atomic Physics +1612.02304 Differential Geometry +1612.03281 Physics and Society +1612.03495 Fluid Dynamics +1612.04741 Cosmology and Nongalactic Astrophysics +1612.04766 Number Theory +1612.05123 Theory +1612.05261 Phenomenology +1612.05285 Mesoscale and Nanoscale Physics +1612.05900 Theory +1612.06373 Geometric Topology +1612.07156 Analysis of PDEs +1612.09247 Plasma Physics +1612.09581 Theory +1701.01229 Theory +1701.02040 Complex Variables +1701.02074 Phenomenology +1701.02172 Spectral Theory +1701.02277 Cosmology and Nongalactic Astrophysics +1701.02703 +1701.02941 Phenomenology +1701.03228 Lattice +1701.05660 Phenomenology +1701.05711 Information Theory +1701.05983 Networking and Internet Architecture +1701.07804 +1701.07922 +1701.09021 Numerical Analysis +1702.00473 Probability +1702.00690 Theory +1702.00968 Superconductivity +1702.01073 Operator Algebras +1702.01359 Strongly Correlated Electrons +1702.01565 Solar and Stellar Astrophysics +1702.01751 Astrophysics of Galaxies +1702.01874 Logic in Computer Science +1702.02278 Logic in Computer Science +1702.02314 +1702.02571 High Energy Astrophysical Phenomena +1702.02863 Computational Complexity +1702.03151 High Energy Astrophysical Phenomena +1702.03275 Learning +1702.03389 Neural and Evolutionary Computing +1702.04078 Networking and Internet Architecture +1702.04110 Phenomenology +1702.04353 Theory +1702.05191 Materials Science +1702.05243 Machine Learning +1702.05374 Computer Vision and Pattern Recognition +1702.05729 Computer Vision and Pattern Recognition +1702.05973 +1702.06343 Programming Languages +1702.07530 Analysis of PDEs +1702.07583 Mesoscale and Nanoscale Physics +1702.07938 Computational Complexity +1702.07961 Data Structures and Algorithms +1702.08318 Computer Vision and Pattern Recognition +1702.08532 Analysis of PDEs +1702.08736 Multiagent Systems +1703.00310 Optics +1703.00582 Earth and Planetary Astrophysics +1703.00703 Genomics +1703.01063 Theory +1703.01498 Biological Physics +1703.01614 Quantum Gases +1703.02037 Instrumentation and Detectors +1703.02077 Symbolic Computation +1703.02188 Phenomenology +1703.02643 Logic +1703.02666 +1703.03484 Computer Science and Game Theory +1703.03645 Fluid Dynamics +1703.03750 Solar and Stellar Astrophysics +1703.03838 Phenomenology +1703.03985 Strongly Correlated Electrons +1703.04065 Combinatorics +1703.04096 Computer Vision and Pattern Recognition +1703.04098 +1703.04369 Phenomenology +1703.04988 Algebraic Geometry +1703.05328 Theory +1703.05404 Superconductivity +1703.05588 Solar and Stellar Astrophysics +1703.05599 Number Theory +1703.05684 Combinatorics +1703.06103 Machine Learning +1703.06192 High Energy Astrophysical Phenomena +1703.06536 Learning +1703.07436 Mesoscale and Nanoscale Physics +1703.07593 Algebraic Geometry +1703.07671 Phenomenology +1703.07801 Dynamical Systems +1703.08287 Materials Science +1703.08339 Atomic Physics +1703.08372 Mesoscale and Nanoscale Physics +1703.08411 +1703.08458 Theory +1703.08500 Algebraic Geometry +1703.08544 Machine Learning +1703.08557 Systems and Control +1703.08644 Applications +1703.08724 Theory +1703.08729 Optimization and Control +1703.08779 Number Theory +1703.08827 Number Theory +1703.08845 Phenomenology +1703.08865 Biological Physics +1703.08902 Software Engineering +1703.08965 Mesoscale and Nanoscale Physics +1703.09097 Metric Geometry +1703.09236 +1703.09309 Phenomenology +1703.09332 Group Theory +1703.09476 Experiment +1703.09692 Phenomenology +1703.09717 Phenomenology +1703.09720 Astrophysics of Galaxies +1703.09723 Astrophysics of Galaxies +1703.09724 Astrophysics of Galaxies +1703.09799 Popular Physics +1703.09811 +1703.09841 Superconductivity +1703.09860 Experiment +1703.09873 Combinatorics +1703.09905 Analysis of PDEs +1703.09920 Experiment +1703.09955 Instrumentation and Detectors +1703.09968 Multimedia +1703.10004 Soft Condensed Matter +1703.10011 +1703.10061 +1703.10117 Other Statistics +1703.10132 Rings and Algebras +1703.10161 +1703.10162 Theory +1703.10163 Astrophysics of Galaxies +1703.10164 High Energy Astrophysical Phenomena +1703.10165 Solar and Stellar Astrophysics +1703.10166 Theory +1703.10167 Solar and Stellar Astrophysics +1703.10168 Astrophysics of Galaxies +1703.10170 Astrophysics of Galaxies +1703.10171 Theory +1703.10172 Solar and Stellar Astrophysics +1703.10173 High Energy Astrophysical Phenomena +1703.10174 Cosmology and Nongalactic Astrophysics +1703.10175 Astrophysics of Galaxies +1703.10176 Theory +1703.10177 Cosmology and Nongalactic Astrophysics +1703.10178 +1703.10179 Logic in Computer Science +1703.10181 Solar and Stellar Astrophysics +1703.10182 Optimization and Control +1703.10183 Pattern Formation and Solitons +1703.10184 Information Theory +1703.10185 Combinatorics +1703.10186 Computation and Language +1703.10187 Cryptography and Security +1703.10189 Combinatorics +1703.10190 Phenomenology +1703.10191 High Energy Astrophysical Phenomena +1703.10192 Methodology +1703.10194 +1703.10196 Computer Vision and Pattern Recognition +1703.10197 Astrophysics of Galaxies +1703.10198 Materials Science +1703.10199 Statistical Mechanics +1703.10200 Computer Vision and Pattern Recognition +1703.10201 +1703.10202 Numerical Analysis +1703.10203 Algebraic Geometry +1703.10204 Astrophysics of Galaxies +1703.10205 Probability +1703.10206 Differential Geometry +1703.10207 Disordered Systems and Neural Networks +1703.10208 Statistical Mechanics +1703.10209 Information Theory +1703.10211 Optimization and Control +1703.10212 Theory +1703.10213 Theory +1703.10214 Mesoscale and Nanoscale Physics +1703.10215 High Energy Astrophysical Phenomena +1703.10216 Experiment +1703.10217 Computer Vision and Pattern Recognition +1703.10219 Astrophysics of Galaxies +1703.10220 Cosmology and Nongalactic Astrophysics +1703.10221 Phenomenology +1703.10222 Systems and Control +1703.10223 Spectral Theory +1703.10224 Materials Science +1703.10225 Solar and Stellar Astrophysics +1703.10226 Mesoscale and Nanoscale Physics +1703.10227 High Energy Astrophysical Phenomena +1703.10228 Algebraic Geometry +1703.10229 Algebraic Geometry +1703.10230 Machine Learning +1703.10231 Genomics +1703.10232 Data Structures and Algorithms +1703.10233 Probability +1703.10234 +1703.10235 Classical Physics +1703.10236 +1703.10237 Representation Theory +1703.10238 +1703.10239 Computer Vision and Pattern Recognition +1703.10240 Numerical Analysis +1703.10241 +1703.10242 Distributed, Parallel, and Cluster Computing +1703.10243 Optimization and Control +1703.10244 Functional Analysis +1703.10245 Computation +1703.10246 Plasma Physics +1703.10247 Programming Languages +1703.10248 Analysis of PDEs +1703.10249 Spectral Theory +1703.10250 Earth and Planetary Astrophysics +1703.10251 Logic +1703.10252 Computation and Language +1703.10253 Systems and Control +1703.10254 Robotics +1703.10255 Astrophysics of Galaxies +1703.10256 Methodology +1703.10257 Materials Science +1703.10258 Logic in Computer Science +1703.10259 Experiment +1703.10260 Astrophysics of Galaxies +1703.10261 Robotics +1703.10262 Logic +1703.10263 Systems and Control +1703.10264 Materials Science +1703.10265 Metric Geometry +1703.10266 Applications +1703.10268 Combinatorics +1703.10269 Disordered Systems and Neural Networks +1703.10270 Superconductivity +1703.10271 +1703.10272 Distributed, Parallel, and Cluster Computing +1703.10273 Earth and Planetary Astrophysics +1703.10274 +1703.10275 +1703.10276 Social and Information Networks +1703.10277 Computer Vision and Pattern Recognition +1703.10278 Optimization and Control +1703.10279 Computers and Society +1703.10280 High Energy Astrophysical Phenomena +1703.10281 Systems and Control +1703.10282 +1703.10283 Statistics Theory +1703.10284 Artificial Intelligence +1703.10285 Astrophysics of Galaxies +1703.10286 Chemical Physics +1703.10287 Optics +1703.10288 Theory +1703.10289 Geometric Topology +1703.10290 Mesoscale and Nanoscale Physics +1703.10292 Earth and Planetary Astrophysics +1703.10293 Data Structures and Algorithms +1703.10294 Rings and Algebras +1703.10295 Computer Vision and Pattern Recognition +1703.10296 Astrophysics of Galaxies +1703.10297 Numerical Analysis +1703.10298 Materials Science +1703.10299 +1703.10300 Information Theory +1703.10301 Astrophysics of Galaxies +1703.10302 +1703.10303 High Energy Astrophysical Phenomena +1703.10304 Computer Vision and Pattern Recognition +1703.10306 Probability +1703.10307 Molecular Networks +1703.10308 Numerical Analysis +1703.10309 Computational Physics +1703.10310 Materials Science +1703.10311 +1703.10312 Astrophysics of Galaxies +1703.10314 Information Theory +1703.10315 Instrumentation and Methods for Astrophysics +1703.10316 Artificial Intelligence +1703.10317 Experiment +1703.10318 Distributed, Parallel, and Cluster Computing +1703.10319 Strongly Correlated Electrons +1703.10320 +1703.10321 Representation Theory +1703.10322 Space Physics +1703.10323 Phenomenology +1703.10324 +1703.10325 Geometric Topology +1703.10326 Information Theory +1703.10327 Materials Science +1703.10328 Cryptography and Security +1703.10329 Information Theory +1703.10330 Solar and Stellar Astrophysics +1703.10331 Programming Languages +1703.10332 Computer Vision and Pattern Recognition +1703.10333 Geophysics +1703.10334 Solar and Stellar Astrophysics +1703.10335 Materials Science +1703.10336 Mesoscale and Nanoscale Physics +1703.10337 Robotics +1703.10338 Theory +1703.10339 Information Retrieval +1703.10340 Networking and Internet Architecture +1703.10341 Solar and Stellar Astrophysics +1703.10342 Artificial Intelligence +1703.10343 Probability +1703.10344 Information Retrieval +1703.10345 Information Retrieval +1703.10346 Biological Physics +1703.10347 Number Theory +1703.10348 +1703.10349 Information Retrieval +1703.10350 Databases +1703.10351 Experiment +1703.10352 Theory +1703.10353 Soft Condensed Matter +1703.10354 Software Engineering +1703.10355 Learning +1703.10356 Learning +1703.10357 Functional Analysis +1703.10358 Dynamical Systems +1703.10359 Optimization and Control +1703.10360 Statistical Mechanics +1703.10361 Software Engineering +1703.10362 Algebraic Geometry +1703.10363 Optimization and Control +1703.10364 Methodology +1703.10365 Astrophysics of Galaxies +1703.10366 Theory +1703.10367 Functional Analysis +1703.10368 Statistical Mechanics +1703.10369 Phenomenology +1703.10370 Number Theory +1703.10371 Neural and Evolutionary Computing +1703.10372 Statistical Mechanics +1703.10373 Soft Condensed Matter +1703.10374 Algebraic Topology +1703.10375 Earth and Planetary Astrophysics +1703.10376 Algebraic Geometry +1703.10377 Algebraic Geometry +1703.10378 Physics and Society +1703.10379 Phenomenology +1703.10380 Data Structures and Algorithms +1703.10381 Statistics Theory +1703.10382 Logic in Computer Science +1703.10383 Phenomenology +1703.10384 Number Theory +1703.10385 Earth and Planetary Astrophysics +1703.10386 Algebraic Geometry +1703.10387 Fluid Dynamics +1703.10388 Analysis of PDEs +1703.10389 Soft Condensed Matter +1703.10390 Statistical Mechanics +1703.10391 +1703.10392 Strongly Correlated Electrons +1703.10394 Theory +1703.10395 Strongly Correlated Electrons +1703.10396 Fluid Dynamics +1703.10397 Strongly Correlated Electrons +1703.10398 High Energy Astrophysical Phenomena +1703.10400 Earth and Planetary Astrophysics +1703.10401 Soft Condensed Matter +1703.10402 Earth and Planetary Astrophysics +1703.10403 +1703.10404 Statistical Mechanics +1703.10405 Graphics +1703.10406 +1703.10407 Physics and Society +1703.10408 Mesoscale and Nanoscale Physics +1703.10409 Biological Physics +1703.10410 Biological Physics +1703.10411 Number Theory +1703.10412 Quantum Algebra +1703.10413 Phenomenology +1703.10414 Numerical Analysis +1703.10415 Computer Science and Game Theory +1703.10416 Algebraic Topology +1703.10417 +1703.10418 Theory +1703.10419 Physics and Society +1703.10420 Classical Analysis and ODEs +1703.10421 Astrophysics of Galaxies +1703.10422 Information Theory +1703.10423 Chemical Physics +1703.10424 Combinatorics +1703.10425 Optimization and Control +1703.10426 Category Theory +1703.10427 Fluid Dynamics +1703.10428 Cosmology and Nongalactic Astrophysics +1703.10429 Artificial Intelligence +1703.10430 Algebraic Geometry +1703.10431 Spectral Theory +1703.10432 Popular Physics +1703.10433 Fluid Dynamics +1703.10434 +1703.10435 Distributed, Parallel, and Cluster Computing +1703.10436 +1703.10437 Combinatorics +1703.10438 Physics and Society +1703.10440 Numerical Analysis +1703.10441 Algebraic Geometry +1703.10442 High Energy Astrophysical Phenomena +1703.10443 Atomic Physics +1703.10444 Learning +1703.10445 Dynamical Systems +1703.10446 Distributed, Parallel, and Cluster Computing +1703.10447 Differential Geometry +1703.10449 Popular Physics +1703.10450 Materials Science +1703.10451 Quantitative Methods +1703.10452 Analysis of PDEs +1703.10453 Analysis of PDEs +1703.10454 Cryptography and Security +1703.10455 Solar and Stellar Astrophysics +1703.10456 Cosmology and Nongalactic Astrophysics +1703.10457 Optimization and Control +1703.10458 Neural and Evolutionary Computing +1703.10459 Classical Analysis and ODEs +1703.10460 Combinatorics +1703.10461 Soft Condensed Matter +1703.10462 Earth and Planetary Astrophysics +1703.10463 Probability +1703.10465 Dynamical Systems +1703.10466 Pattern Formation and Solitons +1703.10467 Systems and Control +1703.10468 +1703.10469 General Finance +1703.10470 Popular Physics +1703.10471 Soft Condensed Matter +1703.10472 Experiment +1703.10473 Theory +1703.10474 Statistical Mechanics +1703.10475 Number Theory +1703.10476 Computer Vision and Pattern Recognition +1703.10477 Number Theory +1703.10478 Number Theory +1703.10480 Computer Vision and Pattern Recognition +1703.10481 Biomolecules +1703.10482 +1703.10483 Differential Geometry +1703.10484 Fluid Dynamics +1703.10485 Experiment +1703.10486 Materials Science +1703.10487 Materials Science +1703.10488 Cosmology and Nongalactic Astrophysics +1703.10489 Optimization and Control +1703.10490 Popular Physics +1703.10491 Instrumentation and Detectors +1703.10492 Atomic Physics +1703.10493 Strongly Correlated Electrons +1703.10494 Instrumentation and Methods for Astrophysics +1703.10495 Group Theory +1703.10496 Instrumentation and Detectors +1703.10497 Physics and Society +1703.10499 Mesoscale and Nanoscale Physics +1703.10500 Networking and Internet Architecture +1703.10501 Computer Vision and Pattern Recognition +1703.10502 Strongly Correlated Electrons +1703.10503 Analysis of PDEs +1703.10505 Operator Algebras +1703.10506 Rings and Algebras +1703.10507 +1703.10508 Phenomenology +1703.10509 Analysis of PDEs +1703.10510 Superconductivity +1703.10511 Social and Information Networks +1703.10512 Differential Geometry +1703.10513 Machine Learning +1703.10515 +1703.10516 Information Theory +1703.10518 Information Theory +1703.10519 Information Theory +1703.10521 Number Theory +1703.10522 Combinatorics +1703.10523 Numerical Analysis +1703.10524 Genomics +1703.10525 Algebraic Geometry +1703.10526 Algebraic Topology +1703.10527 Statistical Mechanics +1703.10528 Metric Geometry +1703.10529 Atomic Physics +1703.10530 Computer Vision and Pattern Recognition +1703.10532 Probability +1703.10533 +1703.10535 +1703.10536 Mesoscale and Nanoscale Physics +1703.10537 Algebraic Topology +1703.10538 Cosmology and Nongalactic Astrophysics +1703.10539 +1703.10541 Theory +1703.10542 +1703.10543 High Energy Astrophysical Phenomena +1703.10544 Analysis of PDEs +1703.10545 Social and Information Networks +1703.10546 Number Theory +1703.10547 Optimization and Control +1703.10548 Physics and Society +1703.10549 Information Theory +1703.10550 Metric Geometry +1703.10551 Soft Condensed Matter +1703.10552 Optimization and Control +1703.10553 Computer Vision and Pattern Recognition +1703.10554 Soft Condensed Matter +1703.10555 Number Theory +1703.10556 Information Theory +1703.10557 Statistical Mechanics +1703.10558 Information Theory +1703.10559 Cosmology and Nongalactic Astrophysics +1703.10560 Operator Algebras +1703.10561 Geometric Topology +1703.10562 Solar and Stellar Astrophysics +1703.10564 Lattice +1703.10565 Discrete Mathematics +1703.10566 Combinatorics +1703.10567 Analysis of PDEs +1703.10568 Algebraic Geometry +1703.10569 Theory +1703.10570 Social and Information Networks +1703.10571 Computer Vision and Pattern Recognition +1703.10572 Optimization and Control +1703.10573 Combinatorics +1703.10574 Instrumentation and Methods for Astrophysics +1703.10576 +1703.10577 Lattice +1703.10578 Probability +1703.10579 Artificial Intelligence +1703.10580 Computer Vision and Pattern Recognition +1703.10581 Quantum Gases +1703.10582 Number Theory +1703.10583 Space Physics +1703.10584 Computer Vision and Pattern Recognition +1703.10585 Theory +1703.10586 Combinatorics +1703.10587 Quantum Gases +1703.10588 Probability +1703.10589 Mesoscale and Nanoscale Physics +1703.10590 Mesoscale and Nanoscale Physics +1703.10591 Theory +1703.10592 Algebraic Geometry +1703.10593 Computer Vision and Pattern Recognition +1703.10594 Data Structures and Algorithms +1703.10595 Geometric Topology +1703.10596 Earth and Planetary Astrophysics +1703.10597 Instrumentation and Methods for Astrophysics +1703.10598 Computer Science and Game Theory +1703.10599 Algebraic Geometry +1703.10600 Phenomenology +1703.10601 Rings and Algebras +1703.10602 Representation Theory +1703.10603 Learning +1703.10604 Optics +1004.3702 Data Structures and Algorithms +1006.4525 Geometric Topology +1207.3091 Adaptation and Self-Organizing Systems +1212.4592 +1303.5340 Algebraic Geometry +1306.1605 Dynamical Systems +1307.0416 Earth and Planetary Astrophysics +1308.3688 Algebraic Geometry +1309.1483 +1309.4019 Commutative Algebra +1310.3210 Group Theory +1310.8580 Algebraic Topology +1311.2467 Popular Physics +1311.5755 Number Theory +1312.4180 +1312.6625 Earth and Planetary Astrophysics +1401.7041 Adaptation and Self-Organizing Systems +1401.7528 Performance +1403.3298 Physics and Society +1406.6665 +1407.7918 Probability +1409.6470 Social and Information Networks +1410.0532 Number Theory +1410.6410 +1412.0246 +1502.00299 Algebraic Geometry +1502.06873 Number Theory +1503.01568 Dynamical Systems +1503.03974 Data Structures and Algorithms +1503.05378 Numerical Analysis +1504.00503 Combinatorics +1504.01265 +1505.03115 +1505.07883 Number Theory +1506.04184 Computational Complexity +1507.02107 Earth and Planetary Astrophysics +1507.06110 Computation +1507.08620 Populations and Evolution +1508.01831 Mesoscale and Nanoscale Physics +1508.04340 Solar and Stellar Astrophysics +1508.05641 Differential Geometry +1509.08245 Analysis of PDEs +1510.06696 Combinatorics +1510.07072 Phenomenology +1510.07276 Logic in Computer Science +1510.07641 Learning +1511.00061 Dynamical Systems +1511.00533 Analysis of PDEs +1511.01043 Probability +1511.02941 Number Theory +1511.03677 Learning +1511.04927 Numerical Analysis +1511.05669 Symplectic Geometry +1511.07773 Statistical Finance +1511.08327 Machine Learning +1512.02618 Cosmology and Nongalactic Astrophysics +1512.04041 Number Theory +1512.04197 Atomic Physics +1601.03730 Solar and Stellar Astrophysics +1601.06118 Dynamical Systems +1601.06682 Algebraic Geometry +1602.00432 Statistical Mechanics +1602.02613 Dynamical Systems +1602.02897 Classical Analysis and ODEs +1602.03113 Algebraic Geometry +1602.03463 Algebraic Geometry +1602.06033 Social and Information Networks +1602.06656 +1602.06741 Metric Geometry +1602.08422 +1603.01318 Computer Science and Game Theory +1603.01829 Group Theory +1603.03671 Group Theory +1603.03959 Algebraic Geometry +1603.05960 Solar and Stellar Astrophysics +1603.07811 Geometric Topology +1603.08431 Cosmology and Nongalactic Astrophysics +1603.09734 Algebraic Geometry +1603.09735 Algebraic Geometry +1604.00030 Astrophysics of Galaxies +1604.03149 Algebraic Geometry +1604.03226 Databases +1605.00203 Information Theory +1605.04142 Category Theory +1605.04376 Number Theory +1605.09607 Probability +1606.00721 Numerical Analysis +1606.00920 Chemical Physics +1606.01662 Computation +1606.02218 Algebraic Geometry +1606.02262 Representation Theory +1606.02577 Computational Complexity +1606.03440 Representation Theory +1606.04936 Superconductivity +1606.07006 Information Retrieval +1606.08651 Information Theory +1607.00318 Neural and Evolutionary Computing +1607.00437 Quantitative Methods +1607.01330 Discrete Mathematics +1607.01429 Materials Science +1607.01963 Computation and Language +1607.02325 Methodology +1607.02474 Phenomenology +1607.03154 Cosmology and Nongalactic Astrophysics +1607.04645 Strongly Correlated Electrons +1607.05215 Classical Analysis and ODEs +1607.05517 Number Theory +1607.05585 Analysis of PDEs +1607.06077 Cosmology and Nongalactic Astrophysics +1607.07363 +1608.02541 Cosmology and Nongalactic Astrophysics +1608.03960 Distributed, Parallel, and Cluster Computing +1608.04166 Optics +1608.04441 Mesoscale and Nanoscale Physics +1608.04644 Cryptography and Security +1608.04691 Chemical Physics +1608.06252 Theory +1608.06366 Numerical Analysis +1608.06382 Phenomenology +1608.06501 Mesoscale and Nanoscale Physics +1608.08410 Phenomenology +1609.00286 Statistics Theory +1609.00493 Solar and Stellar Astrophysics +1609.02247 Optimization and Control +1609.02328 Geophysics +1609.02652 Lattice +1609.03259 Mesoscale and Nanoscale Physics +1609.03678 Representation Theory +1609.03683 Machine Learning +1609.03967 Dynamical Systems +1609.04068 +1609.04211 Optics +1609.04467 Instrumentation and Detectors +1609.05060 Functional Analysis +1609.05206 +1609.05629 +1609.05780 +1609.05993 Robotics +1609.06706 Probability +1609.06795 Systems and Control +1609.07084 Statistical Mechanics +1609.07105 Superconductivity +1609.07196 Applications +1609.08374 Optics +1609.08396 Category Theory +1609.08497 Networking and Internet Architecture +1609.08666 Phenomenology +1609.09214 +1610.00174 Optics +1610.00218 Plasma Physics +1610.00708 Astrophysics of Galaxies +1610.00791 Atomic Physics +1610.02391 Computer Vision and Pattern Recognition +1610.02509 Computer Vision and Pattern Recognition +1610.02737 Metric Geometry +1610.04723 Soft Condensed Matter +1610.06579 Astrophysics of Galaxies +1610.06968 Numerical Analysis +1610.07145 Logic in Computer Science +1610.07986 Data Analysis, Statistics and Probability +1610.08745 Solar and Stellar Astrophysics +1610.08869 Strongly Correlated Electrons +1610.09326 Strongly Correlated Electrons +1610.09329 +1610.09401 General Topology +1610.09895 Theory +1611.00051 Earth and Planetary Astrophysics +1611.00292 Theory +1611.01211 Learning +1611.01645 Combinatorics +1611.02035 Atomic Physics +1611.02272 Neurons and Cognition +1611.02394 Phenomenology +1611.02705 Theory +1611.02840 Probability +1611.02875 Cryptography and Security +1611.02941 Social and Information Networks +1611.03000 Neural and Evolutionary Computing +1611.03070 +1611.03891 +1611.04409 Theory +1611.07017 Chaotic Dynamics +1611.07768 Superconductivity +1611.07890 Computer Vision and Pattern Recognition +1611.08064 Classical Analysis and ODEs +1611.09127 Instrumentation and Methods for Astrophysics +1611.09918 High Energy Astrophysical Phenomena +1612.00534 Computer Vision and Pattern Recognition +1612.00759 Methodology +1612.01556 Computation and Language +1612.01760 Number Theory +1612.01855 Distributed, Parallel, and Cluster Computing +1612.02012 Statistical Mechanics +1612.02022 Differential Geometry +1612.02373 High Energy Astrophysical Phenomena +1612.03397 Geometric Topology +1612.03612 +1612.03753 +1612.04478 Materials Science +1612.04508 Optimization and Control +1612.04600 Learning +1612.04832 Phenomenology +1612.04918 Optimization and Control +1612.05093 Instrumentation and Methods for Astrophysics +1612.05216 Statistical Mechanics +1612.05639 Phenomenology +1612.05741 Phenomenology +1612.06096 Computer Vision and Pattern Recognition +1612.06203 +1612.06289 Accelerator Physics +1612.06320 +1612.06351 Mesoscale and Nanoscale Physics +1612.06487 Quantum Gases +1612.06689 +1612.06876 Solar and Stellar Astrophysics +1612.06992 Soft Condensed Matter +1612.07080 Exactly Solvable and Integrable Systems +1612.07528 Computer Vision and Pattern Recognition +1612.08098 Complex Variables +1612.08268 Quantum Gases +1612.08700 K-Theory and Homology +1612.08729 Materials Science +1612.08833 +1701.00894 Phenomenology +1701.02470 Computer Vision and Pattern Recognition +1701.02973 Physics and Society +1701.03238 Exactly Solvable and Integrable Systems +1701.03842 Disordered Systems and Neural Networks +1701.04800 +1701.04876 Chaotic Dynamics +1701.05125 Computer Science and Game Theory +1701.06006 Numerical Analysis +1701.06574 Phenomenology +1701.07819 Theory +1701.08621 Strongly Correlated Electrons +1702.00505 Computer Vision and Pattern Recognition +1702.00783 Computer Vision and Pattern Recognition +1702.00866 Combinatorics +1702.00920 Optics +1702.00981 Atomic Physics +1702.01029 +1702.01418 Methodology +1702.01603 +1702.05048 Strongly Correlated Electrons +1702.05060 Computers and Society +1702.05105 Theory +1702.05324 +1702.05588 Numerical Analysis +1702.06437 Lattice +1702.06528 Astrophysics of Galaxies +1702.06957 Solar and Stellar Astrophysics +1702.07572 Phenomenology +1702.08114 Symbolic Computation +1703.00046 +1703.00289 Optimization and Control +1703.00293 Algebraic Geometry +1703.00650 Solar and Stellar Astrophysics +1703.00896 Phenomenology +1703.01012 Social and Information Networks +1703.01406 Materials Science +1703.01649 Computer Science and Game Theory +1703.01678 Learning +1703.01976 Computer Vision and Pattern Recognition +1703.02437 Computer Vision and Pattern Recognition +1703.02916 Spectral Theory +1703.03088 Combinatorics +1703.03334 Neural and Evolutionary Computing +1703.03387 +1703.03445 Phenomenology +1703.03476 +1703.03505 Algebraic Topology +1703.03815 Quantum Gases +1703.03906 Computation and Language +1703.04251 Exactly Solvable and Integrable Systems +1703.04460 Theory +1703.04540 High Energy Astrophysical Phenomena +1703.04555 Group Theory +1703.04590 Computer Vision and Pattern Recognition +1703.04613 +1703.04791 Social and Information Networks +1703.04802 Lattice +1703.05241 +1703.05299 High Energy Astrophysical Phenomena +1703.05453 Representation Theory +1703.05512 Differential Geometry +1703.05621 Dynamical Systems +1703.05698 Programming Languages +1703.05773 High Energy Astrophysical Phenomena +1703.05816 Experiment +1703.05884 Computer Vision and Pattern Recognition +1703.05944 Information Theory +1703.06016 +1703.06110 Astrophysics of Galaxies +1703.06184 Mesoscale and Nanoscale Physics +1703.06211 Computer Vision and Pattern Recognition +1703.06246 Computer Vision and Pattern Recognition +1703.06659 Distributed, Parallel, and Cluster Computing +1703.06682 Earth and Planetary Astrophysics +1703.06754 Solar and Stellar Astrophysics +1703.06824 Computer Science and Game Theory +1703.06832 Commutative Algebra +1703.06839 Functional Analysis +1703.06873 High Energy Astrophysical Phenomena +1703.06878 Phenomenology +1703.06879 +1703.06891 Learning +1703.06909 Mesoscale and Nanoscale Physics +1703.06935 Computer Vision and Pattern Recognition +1703.07000 Fluid Dynamics +1703.07002 Superconductivity +1703.07043 Networking and Internet Architecture +1703.07054 Logic in Computer Science +1703.07063 Classical Physics +1703.07101 +1703.07109 Astrophysics of Galaxies +1703.07125 Earth and Planetary Astrophysics +1703.07138 Databases +1703.07159 Statistical Mechanics +1703.07186 High Energy Astrophysical Phenomena +1703.07200 Mesoscale and Nanoscale Physics +1703.07207 Instrumentation and Detectors +1703.07210 Lattice +1703.07245 +1703.07255 Computer Vision and Pattern Recognition +1703.07291 Quantum Gases +1703.07307 Systems and Control +1703.07316 Systems and Control +1703.07326 Artificial Intelligence +1703.07348 Learning +1703.07349 Soft Condensed Matter +1703.07350 Logic in Computer Science +1703.07351 Logic in Computer Science +1703.07352 Chemical Physics +1703.07353 Strongly Correlated Electrons +1703.07354 Phenomenology +1703.07355 Social and Information Networks +1703.07356 Instrumentation and Methods for Astrophysics +1703.07357 Cosmology and Nongalactic Astrophysics +1703.07358 +1703.07359 Statistical Mechanics +1703.07360 Strongly Correlated Electrons +1703.07361 Theory +1703.07362 Social and Information Networks +1703.07363 Astrophysics of Galaxies +1703.07364 Phenomenology +1703.07365 Cosmology and Nongalactic Astrophysics +1703.07366 Astrophysics of Galaxies +1703.07367 Astrophysics of Galaxies +1703.07369 +1703.07370 Learning +1703.07371 Databases +1703.07372 Analysis of PDEs +1703.07373 Robotics +1703.07374 Optics +1703.07375 Optimization and Control +1703.07376 Social and Information Networks +1703.07377 Space Physics +1703.07379 Soft Condensed Matter +1703.07380 High Energy Astrophysical Phenomena +1703.07381 Information Retrieval +1703.07382 Theory +1703.07383 Computational Physics +1703.07384 Information Retrieval +1703.07385 Robotics +1703.07386 Quantum Gases +1703.07387 Computational Geometry +1703.07388 Probability +1703.07389 High Energy Astrophysical Phenomena +1703.07391 Algebraic Geometry +1703.07392 Functional Analysis +1703.07393 Systems and Control +1703.07394 Neural and Evolutionary Computing +1703.07395 Soft Condensed Matter +1703.07396 +1703.07397 Astrophysics of Galaxies +1703.07398 Theory +1703.07399 Instrumentation and Methods for Astrophysics +1703.07400 +1703.07401 Quantitative Methods +1703.07402 Computer Vision and Pattern Recognition +1703.07403 Medical Physics +1703.07404 Differential Geometry +1703.07405 Fluid Dynamics +1703.07406 Group Theory +1703.07407 Mesoscale and Nanoscale Physics +1703.07408 Instrumentation and Methods for Astrophysics +1703.07409 Optimization and Control +1703.07410 High Energy Astrophysical Phenomena +1703.07411 Plasma Physics +1703.07412 Quantum Gases +1703.07413 Dynamical Systems +1703.07414 Theory +1703.07415 Optics +1703.07416 Earth and Planetary Astrophysics +1703.07418 Information Theory +1703.07419 Networking and Internet Architecture +1703.07420 +1703.07421 +1703.07422 Instrumentation and Detectors +1703.07423 Instrumentation and Methods for Astrophysics +1703.07424 Soft Condensed Matter +1703.07425 +1703.07426 +1703.07427 Cryptography and Security +1703.07428 Optics +1703.07429 Logic +1703.07430 Optics +1703.07431 Computer Vision and Pattern Recognition +1703.07432 Learning +1703.07433 Algebraic Geometry +1703.07434 Algebraic Geometry +1703.07435 Theory +1703.07438 Computation and Language +1703.07439 Algebraic Geometry +1703.07440 +1703.07441 Fluid Dynamics +1703.07442 Information Theory +1703.07443 Geometric Topology +1703.07444 Optics +1703.07445 Statistical Mechanics +1703.07446 Analysis of PDEs +1703.07447 Spectral Theory +1703.07448 Optimization and Control +1703.07449 High Energy Astrophysical Phenomena +1703.07451 Physics and Society +1703.07452 Solar and Stellar Astrophysics +1703.07453 Differential Geometry +1703.07454 Genomics +1703.07455 Dynamical Systems +1703.07456 Commutative Algebra +1703.07457 Combinatorics +1703.07458 Group Theory +1703.07459 Analysis of PDEs +1703.07460 Analysis of PDEs +1703.07462 Information Theory +1703.07463 Numerical Analysis +1703.07465 Strongly Correlated Electrons +1703.07466 +1703.07467 Astrophysics of Galaxies +1703.07468 Strongly Correlated Electrons +1703.07469 Artificial Intelligence +1703.07470 Materials Science +1703.07471 Number Theory +1703.07472 Solar and Stellar Astrophysics +1703.07473 Computer Vision and Pattern Recognition +1703.07476 Computation and Language +1703.07477 Algebraic Geometry +1703.07479 Computer Vision and Pattern Recognition +1703.07480 Solar and Stellar Astrophysics +1703.07481 Soft Condensed Matter +1703.07482 Information Theory +1703.07484 Databases +1703.07485 High Energy Astrophysical Phenomena +1703.07486 Phenomenology +1703.07487 Optics +1703.07488 Materials Science +1703.07489 Disordered Systems and Neural Networks +1703.07490 Astrophysics of Galaxies +1703.07491 Robotics +1703.07492 Superconductivity +1703.07494 Optimization and Control +1703.07495 Astrophysics of Galaxies +1703.07496 Probability +1703.07497 Differential Geometry +1703.07498 Analysis of PDEs +1703.07499 Information Theory +1703.07500 Systems and Control +1703.07501 Mesoscale and Nanoscale Physics +1703.07502 Quantum Gases +1703.07503 Probability +1703.07504 Number Theory +1703.07505 Algebraic Geometry +1703.07506 Machine Learning +1703.07507 Combinatorics +1703.07508 Soft Condensed Matter +1703.07509 Mesoscale and Nanoscale Physics +1703.07510 +1703.07511 Computer Vision and Pattern Recognition +1703.07512 Algebraic Topology +1703.07513 Computational Finance +1703.07514 Computer Vision and Pattern Recognition +1703.07515 Materials Science +1703.07516 Algebraic Geometry +1703.07517 Optics +1703.07518 Social and Information Networks +1703.07519 Computer Vision and Pattern Recognition +1703.07520 Social and Information Networks +1703.07521 Computational Complexity +1703.07522 Theory +1703.07524 Superconductivity +1703.07525 Number Theory +1703.07526 Physics and Society +1703.07527 Instrumentation and Detectors +1703.07528 Optimization and Control +1703.07529 Geometric Topology +1703.07530 +1703.07531 +1703.07532 Discrete Mathematics +1703.07533 Mesoscale and Nanoscale Physics +1703.07534 Human-Computer Interaction +1703.07535 +1703.07536 Functional Analysis +1703.07537 Analysis of PDEs +1703.07538 Plasma Physics +1703.07540 Geometric Topology +1703.07541 Statistical Mechanics +1703.07543 Differential Geometry +1703.07544 Cryptography and Security +1703.07545 Mesoscale and Nanoscale Physics +1703.07546 Optimization and Control +1703.07548 Analysis of PDEs +1703.07549 Quantum Gases +1703.07550 +1703.07551 Networking and Internet Architecture +1703.07552 Optics +1703.07553 +1703.07554 Information Theory +1703.07555 Databases +1703.07556 +1703.07557 Medical Physics +1703.07558 Statistical Mechanics +1703.07560 Algebraic Geometry +1703.07561 Accelerator Physics +1703.07562 Distributed, Parallel, and Cluster Computing +1703.07563 Solar and Stellar Astrophysics +1703.07564 Differential Geometry +1703.07565 Networking and Internet Architecture +1703.07566 Spectral Theory +1703.07567 Astrophysics of Galaxies +1703.07568 Analysis of PDEs +1703.07569 Phenomenology +1703.07571 Phenomenology +1703.07572 Probability +1703.07573 Geometric Topology +1703.07574 Logic in Computer Science +1703.07575 Graphics +1703.07576 Optics +1703.07577 Chemical Physics +1703.07578 Cryptography and Security +1703.07579 Computer Vision and Pattern Recognition +1703.07580 Social and Information Networks +1703.07581 Mesoscale and Nanoscale Physics +1703.07583 Materials Science +1703.07584 Subcellular Processes +1703.07585 Earth and Planetary Astrophysics +1703.07586 Operator Algebras +1703.07587 +1703.07588 Sound +1703.07589 Optimization and Control +1703.07590 Mesoscale and Nanoscale Physics +1703.07591 Mesoscale and Nanoscale Physics +1703.07594 Analysis of PDEs +1703.07595 Computer Vision and Pattern Recognition +1703.07596 Machine Learning +1703.07597 Differential Geometry +1703.07599 Combinatorics +1703.07600 Instrumentation and Methods for Astrophysics +1703.07601 Statistical Mechanics +1703.07602 Analysis of PDEs +1703.07603 Methodology +1703.07604 Solar and Stellar Astrophysics +1703.07605 Classical Physics +1703.07607 Astrophysics of Galaxies +1703.07608 Machine Learning +1703.07609 Complex Variables +1703.07610 Subcellular Processes +1703.07611 Systems and Control +1703.07613 Plasma Physics +1703.07614 Number Theory +1703.07615 Analysis of PDEs +1703.07616 Analysis of PDEs +1703.07617 Databases +1703.07619 Networking and Internet Architecture +1703.07620 Algebraic Geometry +1703.07621 Optics +1703.07622 Analysis of PDEs +1703.07623 Earth and Planetary Astrophysics +1703.07624 Commutative Algebra +1703.07625 Learning +1703.07626 Networking and Internet Architecture +1703.07627 Instrumentation and Methods for Astrophysics +1703.07628 +1703.07629 Mesoscale and Nanoscale Physics +1703.07630 Mesoscale and Nanoscale Physics +1703.07631 Commutative Algebra +1703.07632 Geometric Topology +1703.07633 Biological Physics +1703.07634 Optics +1703.07635 +1703.07636 +1703.07637 Optics +1703.07638 Learning +1703.07639 Neurons and Cognition +1703.07640 Materials Science +1703.07641 Materials Science +1703.07643 Materials Science +1703.07645 Computer Vision and Pattern Recognition +1703.07647 Computer Science and Game Theory +1703.07648 Chemical Physics +1703.07650 Solar and Stellar Astrophysics +1703.07651 High Energy Astrophysical Phenomena +1703.07652 Medical Physics +1703.07653 Phenomenology +1703.07655 Neural and Evolutionary Computing +1703.07656 Physics and Society +1703.07658 Numerical Analysis +1703.07660 Earth and Planetary Astrophysics +1703.07661 Phenomenology +1703.07662 Algebraic Geometry +1703.07663 Number Theory +1703.07664 General Mathematics +1703.07665 Dynamical Systems +1703.07666 Computational Complexity +1703.07668 Solar and Stellar Astrophysics +1703.07669 Phenomenology +1703.07670 Information Theory +1703.07672 Number Theory +1703.07673 +1703.07674 Analysis of PDEs +1703.07677 Superconductivity +1703.07678 Experiment +1703.07679 +1703.07680 Statistical Mechanics +1703.07681 Chemical Physics +1703.07682 Logic in Computer Science +1703.07683 +1703.07685 Mathematical Finance +1703.07686 Combinatorics +1703.07687 Differential Geometry +1703.07688 Biological Physics +1703.07689 Experiment +1703.07690 Strongly Correlated Electrons +1703.07691 Probability +1703.07692 Dynamical Systems +1703.07693 Optimization and Control +1703.07694 Plasma Physics +1703.07695 Discrete Mathematics +1703.07696 Mesoscale and Nanoscale Physics +1703.07697 Numerical Analysis +1703.07698 Learning +1703.07699 Mesoscale and Nanoscale Physics +1703.07700 Algebraic Geometry +1703.07701 Strongly Correlated Electrons +1703.07702 Probability +1703.07703 Phenomenology +1703.07704 Systems and Control +1703.07705 Biological Physics +1703.07706 Cryptography and Security +1703.07708 Physics and Society +1703.07709 Analysis of PDEs +1703.07710 Learning +1703.07711 Strongly Correlated Electrons +1703.07712 Atomic Physics +1703.07713 Computation and Language +1703.07714 High Energy Astrophysical Phenomena +1703.07715 Computer Vision and Pattern Recognition +1703.07716 Optics +1703.07717 Superconductivity +1703.07718 Learning +1703.07719 Statistical Mechanics +1703.07720 Fluid Dynamics +1703.07721 Materials Science +1703.07722 Optics +1703.07723 Mesoscale and Nanoscale Physics +1703.07725 Operating Systems +1703.07727 Complex Variables +1703.07728 Classical Analysis and ODEs +1703.07729 Graphics +1703.07730 Superconductivity +1703.07732 Geometric Topology +1703.07733 +1703.07734 Data Structures and Algorithms +1703.07735 Theory +1703.07736 Robotics +1703.07738 Neurons and Cognition +1703.07739 Superconductivity +1703.07740 Superconductivity +1703.07741 Group Theory +1703.07742 Quantum Gases +1703.07743 Materials Science +1703.07745 +1703.07747 Methodology +1703.07748 Logic in Computer Science +1703.07749 Superconductivity +1703.07750 Phenomenology +1703.07751 Cryptography and Security +1703.07752 Quantum Gases +1703.07753 Differential Geometry +1703.07754 Computation and Language +1703.07755 Optimization and Control +1703.07756 Statistical Mechanics +1703.07757 Computers and Society +1703.07758 Machine Learning +1703.07759 Superconductivity +1703.07760 Optimization and Control +1703.07761 Optimization and Control +1703.07762 High Energy Astrophysical Phenomena +1703.07763 Phenomenology +1703.07764 Data Analysis, Statistics and Probability +1703.07765 Emerging Technologies +1703.07767 Quantum Gases +1703.07770 Computational Engineering, Finance, and Science +1703.07771 Machine Learning +1703.07772 Functional Analysis +1703.07773 Dynamical Systems +1703.07774 Phenomenology +cond-mat/0302618 Superconductivity +cond-mat/0303446 Superconductivity +1003.4445 Solar and Stellar Astrophysics +1103.1268 Combinatorics +1105.3407 Representation Theory +1107.4812 Combinatorics +1111.6146 Algebraic Geometry +1203.1937 Theory +1304.8035 Cellular Automata and Lattice Gases +1307.0443 Number Theory +1402.2295 +1403.0363 Combinatorics +1403.1986 +1405.5439 Solar and Stellar Astrophysics +1405.7239 +1406.1514 Theory +1407.1949 Chaotic Dynamics +1407.6210 Probability +1408.0161 Differential Geometry +1409.2340 Analysis of PDEs +1409.7268 Group Theory +1410.4101 Dynamical Systems +1410.6323 Analysis of PDEs +1411.4968 Rings and Algebras +1411.5327 Group Theory +1411.7238 Algebraic Topology +1412.2665 Algebraic Geometry +1502.07514 +1502.08002 Group Theory +1503.01125 Cosmology and Nongalactic Astrophysics +1503.01127 Cosmology and Nongalactic Astrophysics +1503.05110 Data Structures and Algorithms +1504.03635 Atomic Physics +1504.07289 Theory +1504.07524 +1507.01180 Combinatorics +1507.02087 Computational Physics +1507.06527 Learning +1508.00493 Group Theory +1508.02449 Statistics Theory +1509.01049 +1509.02399 +1509.03224 +1509.03521 Applications +1509.03885 Number Theory +1509.05872 Theory +1509.06970 Populations and Evolution +1510.00575 Probability +1510.01026 Information Theory +1510.01806 Sound +1510.05200 Materials Science +1510.08624 Analysis of PDEs +1511.05600 Applications +1511.06563 Geometric Topology +1511.06866 Information Theory +1511.08132 +1512.04880 Symplectic Geometry +1512.05943 Algebraic Topology +1512.07629 Theory +1601.03384 Theory +1601.03784 Disordered Systems and Neural Networks +1601.03962 Optimization and Control +1601.05352 Experiment +1602.00561 Soft Condensed Matter +1602.01068 Dynamical Systems +1602.02584 Geometric Topology +1602.02930 Superconductivity +1602.03619 Learning +1602.04848 Mathematical Finance +1602.06767 Algebraic Geometry +1602.06954 Astrophysics of Galaxies +1602.07257 Statistical Mechanics +1602.08397 Optics +1603.00166 Differential Geometry +1603.01864 Computer Vision and Pattern Recognition +1603.06518 Number Theory +1603.06752 +1603.09280 +1603.09283 +1604.02728 Algebraic Geometry +1604.02923 Rings and Algebras +1604.03904 Physics and Society +1604.05965 General Physics +1604.06118 Logic in Computer Science +1604.06605 Data Structures and Algorithms +1604.06791 Classical Analysis and ODEs +1604.07741 Computer Vision and Pattern Recognition +1605.01008 Theory +1605.01693 Group Theory +1605.02798 Mesoscale and Nanoscale Physics +1605.03264 Commutative Algebra +1605.03359 Materials Science +1605.04009 Adaptation and Self-Organizing Systems +1605.05591 Statistical Mechanics +1605.05844 Soft Condensed Matter +1605.06255 Populations and Evolution +1605.07014 Materials Science +1605.07062 +1605.09624 Networking and Internet Architecture +1606.01407 +1606.01964 Symplectic Geometry +1606.03100 Cosmology and Nongalactic Astrophysics +1606.03952 +1606.07508 Dynamical Systems +1606.09634 Astrophysics of Galaxies +1607.00488 Phenomenology +1607.01609 Superconductivity +1607.02023 +1607.02107 Mesoscale and Nanoscale Physics +1607.02310 Computation and Language +1607.02865 Neurons and Cognition +1607.04367 Statistics Theory +1607.05278 Mesoscale and Nanoscale Physics +1607.05643 Cosmology and Nongalactic Astrophysics +1607.07597 Algebraic Geometry +1607.07695 Neural and Evolutionary Computing +1608.00056 Earth and Planetary Astrophysics +1608.00765 Phenomenology +1608.01598 +1608.02014 Probability +1608.04904 Computational Physics +1608.05874 Distributed, Parallel, and Cluster Computing +1608.06111 Computation and Language +1608.06157 Strongly Correlated Electrons +1608.06582 Quantitative Methods +1608.06620 Experiment +1608.06763 Materials Science +1608.07220 Probability +1608.07626 +1608.08951 +1609.00729 Theory +1609.00757 Analysis of PDEs +1609.00794 Analysis of PDEs +1609.01605 Phenomenology +1609.01663 Neurons and Cognition +1609.01963 +1609.02101 Materials Science +1609.03508 Methodology +1609.03889 Classical Analysis and ODEs +1609.04723 Data Structures and Algorithms +1609.04876 Phenomenology +1609.05014 Adaptation and Self-Organizing Systems +1609.05225 Instrumentation and Methods for Astrophysics +1609.06154 Cosmology and Nongalactic Astrophysics +1609.09755 Fluid Dynamics +1610.00140 Combinatorics +1610.00533 Soft Condensed Matter +1610.00609 Networking and Internet Architecture +1610.01104 +1610.01675 Learning +1610.02162 Strongly Correlated Electrons +1610.02758 Optimization and Control +1610.03172 Combinatorics +1610.03512 Materials Science +1610.04004 +1610.05461 Computation and Language +1610.05532 +1610.06697 Functional Analysis +1610.07158 Differential Geometry +1610.09296 Learning +1611.00064 Astrophysics of Galaxies +1611.00287 Computer Vision and Pattern Recognition +1611.00441 +1611.01331 Neural and Evolutionary Computing +1611.01333 Strongly Correlated Electrons +1611.04127 Differential Geometry +1611.04526 High Energy Astrophysical Phenomena +1611.04545 +1611.04683 Instrumentation and Methods for Astrophysics +1611.05453 Phenomenology +1611.06179 Computer Vision and Pattern Recognition +1611.07525 Strongly Correlated Electrons +1611.08275 Plasma Physics +1611.10072 Strongly Correlated Electrons +1612.00508 High Energy Astrophysical Phenomena +1612.01645 Physics Education +1612.01815 Atomic Physics +1612.02009 Astrophysics of Galaxies +1612.02834 Phenomenology +1612.03832 Differential Geometry +1612.04011 Phenomenology +1612.04577 Strongly Correlated Electrons +1612.04734 Instrumentation and Methods for Astrophysics +1612.04849 Solar and Stellar Astrophysics +1612.05441 Data Structures and Algorithms +1612.05460 Data Structures and Algorithms +1612.05476 Computer Vision and Pattern Recognition +1612.05604 +1612.05863 Group Theory +1612.05991 Theory +1612.07024 +1612.07234 Probability +1612.07604 Solar and Stellar Astrophysics +1612.07684 Instrumentation and Detectors +1612.08191 Functional Analysis +1612.08630 Strongly Correlated Electrons +1612.08641 Theory +1612.08930 Probability +1612.09160 High Energy Astrophysical Phenomena +1612.09179 Dynamical Systems +1612.09263 Cosmology and Nongalactic Astrophysics +1612.09438 Learning +1701.01234 Statistical Mechanics +1701.01290 Systems and Control +1701.01308 +1701.01530 Information Theory +1701.01880 +1701.01992 Superconductivity +1701.02233 +1701.02263 Phenomenology +1701.02266 Lattice +1701.02291 Learning +1701.02313 Phenomenology +1701.02412 Strongly Correlated Electrons +1701.02446 Cryptography and Security +1701.02490 Learning +1701.02614 Group Theory +1701.02660 Systems and Control +1701.02673 Logic in Computer Science +1701.02777 +1701.02948 Analysis of PDEs +1701.02987 Instrumentation and Methods for Astrophysics +1701.03075 Lattice +1701.03081 +1701.03088 +1701.03100 Networking and Internet Architecture +1701.03101 Instrumentation and Detectors +1701.03103 Cosmology and Nongalactic Astrophysics +1701.03105 Solar and Stellar Astrophysics +1701.03107 Astrophysics of Galaxies +1701.03108 Superconductivity +1701.03109 Solar and Stellar Astrophysics +1701.03111 Strongly Correlated Electrons +1701.03113 Theory +1701.03115 Phenomenology +1701.03116 Solar and Stellar Astrophysics +1701.03117 Strongly Correlated Electrons +1701.03119 Information Theory +1701.03123 High Energy Astrophysical Phenomena +1701.03124 Algebraic Geometry +1701.03127 Superconductivity +1701.03128 Cosmology and Nongalactic Astrophysics +1701.03129 Computation and Language +1701.03130 Optics +1701.03133 Quantum Gases +1701.03135 +1701.03137 Social and Information Networks +1701.03139 Methodology +1701.03140 Plasma Physics +1701.03141 Probability +1701.03142 Instrumentation and Detectors +1701.03143 Solar and Stellar Astrophysics +1701.03144 Theory +1701.03146 Theory +1701.03149 Chaotic Dynamics +1701.03151 Computer Vision and Pattern Recognition +1701.03153 Computer Vision and Pattern Recognition +1701.03154 General Mathematics +1701.03155 Instrumentation and Detectors +1701.03156 Instrumentation and Detectors +1701.03157 Instrumentation and Detectors +1701.03158 General Mathematics +1701.03159 Applications +1701.03160 History and Overview +1701.03163 Computation and Language +1701.03165 K-Theory and Homology +1701.03167 +1701.03168 Phenomenology +1701.03169 +1701.03170 Analysis of PDEs +1701.03172 Optimization and Control +1701.03173 Social and Information Networks +1701.03174 Fluid Dynamics +1701.03175 Plasma Physics +1701.03177 Phenomenology +1701.03178 Rings and Algebras +1701.03179 Chemical Physics +1701.03180 Commutative Algebra +1701.03182 Analysis of PDEs +1701.03183 Differential Geometry +1701.03184 Representation Theory +1701.03185 Computation and Language +1701.03186 Systems and Control +1701.03187 Instrumentation and Detectors +1701.03188 General Mathematics +1701.03189 Number Theory +1701.03191 Algebraic Geometry +1701.03192 +1701.03193 Combinatorics +1701.03194 Algebraic Geometry +1701.03195 +1701.03197 Algebraic Geometry +1701.03198 Learning +1701.03199 +1701.03202 Algebraic Geometry +1701.03203 Combinatorics +1701.03204 Pattern Formation and Solitons +1701.03205 Systems and Control +1701.03206 Strongly Correlated Electrons +1701.03207 Information Theory +1701.03208 Methodology +1701.03210 Phenomenology +1701.03211 +1701.03212 Machine Learning +1701.03213 Probability +1701.03215 Functional Analysis +1701.03216 Combinatorics +1701.03217 Spectral Theory +1701.03218 Optimization and Control +1701.03220 Genomics +1701.03221 Information Theory +1701.03222 Differential Geometry +1701.03223 +1701.03224 Probability +1701.03225 Algebraic Geometry +1701.03227 Computation and Language +1701.03229 Cryptography and Security +1701.03230 Computational Geometry +1701.03231 Computation and Language +1701.03232 Analysis of PDEs +1701.03233 Plasma Physics +1701.03234 Information Theory +1701.03237 Information Theory +1701.03239 Theory +1701.03240 Numerical Analysis +1701.03241 Lattice +1701.03243 Materials Science +1701.03244 Computer Vision and Pattern Recognition +1701.03245 +1701.03246 Computer Vision and Pattern Recognition +1701.03247 Information Theory +1701.03248 Optics +1701.03249 Software Engineering +1701.03250 Chemical Physics +1701.03251 +1701.03252 Phenomenology +1701.03253 Information Theory +1701.03255 Computational Complexity +1701.03257 Disordered Systems and Neural Networks +1701.03258 Strongly Correlated Electrons +1701.03259 Physics and Society +1701.03261 Instrumentation and Methods for Astrophysics +1701.03263 Data Structures and Algorithms +1701.03265 Mesoscale and Nanoscale Physics +1701.03266 Computer Vision and Pattern Recognition +1701.03267 Computation +1701.03268 Machine Learning +1701.03271 Astrophysics of Galaxies +1701.03272 Probability +1701.03273 Quantum Gases +1701.03274 Multimedia +1701.03275 Classical Physics +1701.03276 Dynamical Systems +1701.03277 Social and Information Networks +1701.03278 Mesoscale and Nanoscale Physics +1701.03279 Algebraic Geometry +1701.03281 Learning +1701.03282 Information Theory +1701.03283 Materials Science +1701.03285 Mesoscale and Nanoscale Physics +1701.03286 +1701.03287 Superconductivity +1701.03288 Mesoscale and Nanoscale Physics +1701.03290 Information Theory +1701.03292 Physics and Society +1701.03294 Probability +1701.03295 Distributed, Parallel, and Cluster Computing +1701.03296 Distributed, Parallel, and Cluster Computing +1701.03297 Group Theory +1701.03298 Theory +1701.03299 Lattice +1701.03300 Plasma Physics +1701.03301 Logic +1701.03302 Algebraic Geometry +1701.03303 Phenomenology +1701.03304 Networking and Internet Architecture +1701.03306 +1701.03307 Optics +1701.03308 Data Structures and Algorithms +1701.03311 +1701.03312 Solar and Stellar Astrophysics +1701.03313 Information Theory +1701.03315 +1701.03316 +1701.03317 +1701.03318 Distributed, Parallel, and Cluster Computing +1701.03319 Programming Languages +1701.03320 Programming Languages +1701.03322 Artificial Intelligence +1701.03325 Representation Theory +1701.03326 Statistics Theory +1701.03327 Probability +1701.03330 Computer Vision and Pattern Recognition +1701.03332 Quantum Gases +1701.03333 Combinatorics +1701.03334 Analysis of PDEs +1701.03335 Statistical Mechanics +1701.03337 Biological Physics +1701.03338 Computation and Language +1701.03339 Complex Variables +1701.03340 Computer Science and Game Theory +1701.03341 Optimization and Control +1701.03343 Systems and Control +1701.03344 Representation Theory +1701.03345 Biological Physics +1701.03346 Group Theory +1701.03347 Cosmology and Nongalactic Astrophysics +1701.03348 Analysis of PDEs +1701.03349 Plasma Physics +1701.03350 General Physics +1701.03352 Materials Science +1701.03353 Analysis of PDEs +1701.03354 Analysis of PDEs +1701.03356 Probability +1701.03357 Statistical Mechanics +1701.03358 +1701.03359 +1701.03361 Materials Science +1701.03362 Cosmology and Nongalactic Astrophysics +1701.03363 Social and Information Networks +1701.03366 Combinatorics +1701.03367 General Physics +1701.03368 Lattice +1701.03370 Probability +1701.03371 Lattice +1701.03373 Complex Variables +1701.03374 Cosmology and Nongalactic Astrophysics +1701.03375 Cosmology and Nongalactic Astrophysics +1701.03376 Differential Geometry +1701.03377 Fluid Dynamics +1701.03378 Rings and Algebras +1701.03379 Computers and Society +1701.03380 Logic +1701.03383 Information Theory +1701.03384 Instrumentation and Methods for Astrophysics +1701.03385 Mesoscale and Nanoscale Physics +1701.03387 Optics +1701.03388 Computational Geometry +1701.03389 Statistical Mechanics +1701.03390 Analysis of PDEs +1701.03391 Lattice +1701.03392 Chemical Physics +1701.03393 +1701.03394 +1701.03396 Medical Physics +1701.03397 Information Theory +1701.03399 +1701.03403 Information Theory +1701.03405 Computation +1701.03407 Probability +1701.03408 Instrumentation and Detectors +1701.03409 Instrumentation and Detectors +1701.03410 Mesoscale and Nanoscale Physics +1701.03411 Combinatorics +1701.03412 Mesoscale and Nanoscale Physics +1701.03413 Operator Algebras +1701.03415 Networking and Internet Architecture +1701.03416 Networking and Internet Architecture +1701.03417 Networking and Internet Architecture +1701.03419 Optics +1701.03420 Computer Vision and Pattern Recognition +1701.03422 Quantitative Methods +1701.03423 +1701.03424 Numerical Analysis +1701.03427 Numerical Analysis +1701.03429 Complex Variables +1701.03431 Algebraic Geometry +1701.03432 Probability +1701.03434 Computation and Language +1701.03435 Algebraic Geometry +1701.03436 Computers and Society +1701.03438 +1701.03439 Computer Vision and Pattern Recognition +1701.03441 Neural and Evolutionary Computing +1701.03442 Astrophysics of Galaxies +1701.03443 +1701.03445 Classical Physics +1701.03446 +1701.03447 Combinatorics +1701.03448 Populations and Evolution +1701.03449 Machine Learning +1701.03451 Optics +1701.03452 Neural and Evolutionary Computing +1701.03453 Combinatorics +1701.03454 Geometric Topology +1701.03456 Lattice +1701.03457 +0708.3968 +0709.0831 Differential Geometry +0802.4398 Exactly Solvable and Integrable Systems +0809.1688 Algebraic Geometry +0811.2517 Algebraic Geometry +0906.4799 Algebraic Topology +0907.0922 Algebraic Geometry +0907.0924 Algebraic Geometry +0907.4496 Rings and Algebras +0907.5247 Geometric Topology +0909.3356 Networking and Internet Architecture +0910.2725 Statistical Mechanics +0912.2570 Algebraic Geometry +0912.2721 Cosmology and Nongalactic Astrophysics +1001.4198 Differential Geometry +1003.5894 Algebraic Geometry +1004.0239 High Energy Astrophysical Phenomena +1004.1243 High Energy Astrophysical Phenomena +1005.1831 High Energy Astrophysical Phenomena +1005.4867 High Energy Astrophysical Phenomena +1006.0477 High Energy Astrophysical Phenomena +1006.1375 Analysis of PDEs +1007.1624 High Energy Astrophysical Phenomena +1008.2127 High Energy Astrophysical Phenomena +1010.4927 Solar and Stellar Astrophysics +1012.2700 Soft Condensed Matter +1102.0277 High Energy Astrophysical Phenomena +1102.2746 High Energy Astrophysical Phenomena +1103.1611 Algebraic Geometry +1111.7026 High Energy Astrophysical Phenomena +1112.1436 Optimization and Control +1201.2142 Symplectic Geometry +1201.4876 Algebraic Topology +1203.3034 Differential Geometry +1204.1480 Cosmology and Nongalactic Astrophysics +1205.2150 High Energy Astrophysical Phenomena +1205.3384 Astrophysics of Galaxies +1207.2274 Algebraic Geometry +1207.2877 Differential Geometry +1207.6275 High Energy Astrophysical Phenomena +1207.7267 High Energy Astrophysical Phenomena +1208.1199 Analysis of PDEs +1208.2682 +1209.5702 Phenomenology +1210.7386 Differential Geometry +1211.5377 Cosmology and Nongalactic Astrophysics +1212.4715 Classical Analysis and ODEs +1301.0093 Information Theory +1302.4096 Differential Geometry +1302.4382 Sound +1302.6527 +1303.5968 Pattern Formation and Solitons +1303.6830 +1304.0672 +1304.0675 +1304.3749 High Energy Astrophysical Phenomena +1304.4400 Number Theory +1304.5559 High Energy Astrophysical Phenomena +1305.0084 Phenomenology +1305.4337 Molecular Networks +1305.5597 High Energy Astrophysical Phenomena +1305.5603 Algebraic Geometry +1307.5070 Algebraic Geometry +1307.6384 High Energy Astrophysical Phenomena +1307.8384 Astrophysics of Galaxies +1308.0042 Algebraic Geometry +1308.2506 High Energy Astrophysical Phenomena +1308.3350 Solar and Stellar Astrophysics +1309.0457 Differential Geometry +1309.0637 K-Theory and Homology +1309.4485 Logic +1310.7520 Strongly Correlated Electrons +1310.8266 Algebraic Geometry +1311.0860 High Energy Astrophysical Phenomena +1312.2162 Cosmology and Nongalactic Astrophysics +1312.4753 Number Theory +1312.5745 Probability +1312.6877 Cosmology and Nongalactic Astrophysics +1312.7180 Algebraic Geometry +1401.0726 Cosmology and Nongalactic Astrophysics +1402.4048 Quantum Algebra +1403.3981 Algebraic Geometry +1403.4643 +1403.5763 Logic +1404.2395 Classical Analysis and ODEs +1404.3197 +1404.3266 Symplectic Geometry +1404.7850 +1406.1071 Instrumentation and Methods for Astrophysics +1406.3862 Analysis of PDEs +1406.6422 +1406.7137 Algebraic Geometry +1406.7502 Representation Theory +1406.7529 Number Theory +1406.7770 Multiagent Systems +1407.3599 Phenomenology +1407.3873 Atmospheric and Oceanic Physics +1408.0984 Algebraic Geometry +1409.0184 Group Theory +1409.0793 Number Theory +1409.2667 Complex Variables +1409.5978 Dynamical Systems +1410.4324 Functional Analysis +1410.6539 Functional Analysis +1410.7239 High Energy Astrophysical Phenomena +1411.1725 Differential Geometry +1411.3500 Functional Analysis +1411.4249 Information Theory +1412.0074 Rings and Algebras +1412.0540 Discrete Mathematics +1412.4112 High Energy Astrophysical Phenomena +1412.4676 Algebraic Geometry +1412.8080 Earth and Planetary Astrophysics +1412.8255 Logic +1412.8590 High Energy Astrophysical Phenomena +1501.02823 Cosmology and Nongalactic Astrophysics +1501.06142 Rings and Algebras +1501.06599 Classical Analysis and ODEs +1501.07724 Algebraic Topology +1502.03402 +1502.04721 Functional Analysis +1502.05733 Cosmology and Nongalactic Astrophysics +1502.06838 Representation Theory +1503.03285 Cosmology and Nongalactic Astrophysics +1503.04321 Cosmology and Nongalactic Astrophysics +1503.04742 Analysis of PDEs +1503.06529 Soft Condensed Matter +1503.07102 Methodology +1503.08174 Classical Analysis and ODEs +1504.00364 Geometric Topology +1504.00694 Number Theory +1504.00879 +1504.01662 Information Theory +1504.01759 Probability +1504.03001 Dynamical Systems +1504.03423 Algebraic Geometry +1504.05012 Combinatorics +1504.05425 Analysis of PDEs +1505.01447 Algebraic Geometry +1505.01582 Machine Learning +1505.03993 Classical Analysis and ODEs +1505.04426 +1506.00013 High Energy Astrophysical Phenomena +1506.01365 +1506.01769 Computational Geometry +1506.03965 Complex Variables +1506.04421 Genomics +1506.05991 Functional Analysis +1506.06182 Astrophysics of Galaxies +1507.01671 Geometric Topology +1507.02132 Computer Science and Game Theory +1507.03730 Neurons and Cognition +1507.04442 Algebraic Geometry +1507.04961 Computers and Society +1507.06490 Algebraic Geometry +1508.00849 +1508.03275 Functional Analysis +1508.06255 Algebraic Geometry +1508.07112 Number Theory +1509.00833 +1509.01477 Physics and Society +1509.04416 Theory +1509.04750 Theory +1509.05905 Algebraic Geometry +1509.06397 Social and Information Networks +1509.06427 Materials Science +1509.06559 Optimization and Control +1509.07833 Combinatorics +1509.07834 High Energy Astrophysical Phenomena +1509.08858 +1509.08988 Functional Analysis +1510.00188 Theory +1510.02530 Differential Geometry +1510.02629 Cosmology and Nongalactic Astrophysics +1510.05441 Functional Analysis +1510.06464 Algebraic Topology +1510.07678 Combinatorics +1511.00688 High Energy Astrophysical Phenomena +1511.01853 Machine Learning +1511.02938 High Energy Astrophysical Phenomena +1511.06252 Information Retrieval +1511.06395 Numerical Analysis +1511.06444 Learning +1511.06867 Strongly Correlated Electrons +1511.07559 Data Structures and Algorithms +1511.09014 Algebraic Geometry +1512.03376 Theory +1512.04100 Theory +1512.06609 Group Theory +1512.06842 Phenomenology +1512.08741 Functional Analysis +1512.08887 Machine Learning +1512.09291 Astrophysics of Galaxies +1601.00101 Geometric Topology +1601.00155 Statistics Theory +1601.01545 Mesoscale and Nanoscale Physics +1601.02720 +1601.03147 Networking and Internet Architecture +1601.03276 Algebraic Geometry +1601.04250 Number Theory +1601.04625 Rings and Algebras +1601.05051 Phenomenology +1601.05417 Cosmology and Nongalactic Astrophysics +1601.05803 Astrophysics of Galaxies +1601.06442 +1601.07243 Computer Science and Game Theory +1601.07861 Solar and Stellar Astrophysics +1601.08100 Phenomenology +1602.01879 Metric Geometry +1602.05090 +1602.05496 Functional Analysis +1602.06131 Differential Geometry +1602.07053 Networking and Internet Architecture +1603.01062 Optimization and Control +1603.01455 Formal Languages and Automata Theory +1603.02273 Strongly Correlated Electrons +1603.03053 Mesoscale and Nanoscale Physics +1603.03679 +1603.04259 Learning +1603.04805 Representation Theory +1603.05286 Mesoscale and Nanoscale Physics +1603.05398 Optimization and Control +1603.06383 Statistical Mechanics +1603.06571 Computation and Language +1603.07103 Theory +1603.07565 Instrumentation and Methods for Astrophysics +1603.07678 +1603.07987 Methodology +1603.08798 +1603.08983 Neural and Evolutionary Computing +1604.00970 Computer Vision and Pattern Recognition +1604.01605 Algebraic Geometry +1604.02448 +1604.02777 +1604.02856 Analysis of PDEs +1604.03670 Robotics +1604.03776 Methodology +1604.04247 Statistical Mechanics +1604.05266 Machine Learning +1604.06369 +1604.06498 Machine Learning +1604.07304 Methodology +1604.07490 Geometric Topology +1604.07603 Adaptation and Self-Organizing Systems +1604.07920 Solar and Stellar Astrophysics +1604.08014 +1605.00044 Dynamical Systems +1605.00149 Biological Physics +1605.00265 Statistics Theory +1605.01205 High Energy Astrophysical Phenomena +1605.01303 High Energy Astrophysical Phenomena +1605.01678 Algebraic Geometry +1605.01734 Cosmology and Nongalactic Astrophysics +1605.02195 Mesoscale and Nanoscale Physics +1605.04747 Differential Geometry +1605.04989 Information Theory +1605.05721 Learning +1605.05885 Solar and Stellar Astrophysics +1605.06233 Cryptography and Security +1605.06554 +1605.06611 Mesoscale and Nanoscale Physics +1605.06782 +1605.07046 Information Theory +1605.07628 Mesoscale and Nanoscale Physics +1605.08327 +1605.08652 Strongly Correlated Electrons +1605.09339 Theory +1605.09384 Astrophysics of Galaxies +1605.09407 Earth and Planetary Astrophysics +1605.09701 Dynamical Systems +1606.00158 Physics and Society +1606.00704 Machine Learning +1606.01341 Computation and Language +1606.01471 Astrophysics of Galaxies +1606.01527 Differential Geometry +1606.01560 Physics and Society +1606.01914 +1606.01934 Astrophysics of Galaxies +1606.02090 Methodology +1606.02353 Classical Analysis and ODEs +1606.02666 Optics +1606.03293 Earth and Planetary Astrophysics +1606.03839 Fluid Dynamics +1606.04054 Phenomenology +1606.04140 Phenomenology +1606.04666 Information Retrieval +1606.04905 High Energy Astrophysical Phenomena +1606.05156 Information Theory +1606.05815 +1606.05969 Information Theory +1606.06416 Mesoscale and Nanoscale Physics +1606.06558 +1606.06646 Phenomenology +1606.07059 High Energy Astrophysical Phenomena +1606.07074 Materials Science +1606.08392 +1606.08702 Quantum Gases +1606.09050 Astrophysics of Galaxies +1606.09566 High Energy Astrophysical Phenomena +1606.09617 +1607.00409 Earth and Planetary Astrophysics +1607.00691 Disordered Systems and Neural Networks +1607.01169 Algebraic Geometry +1607.01190 Cosmology and Nongalactic Astrophysics +1607.01998 Earth and Planetary Astrophysics +1607.02255 High Energy Astrophysical Phenomena +1607.02345 Mesoscale and Nanoscale Physics +1607.02359 Phenomenology +1607.02699 Information Theory +1607.02726 Plasma Physics +1607.03781 +1607.03894 Strongly Correlated Electrons +1607.04179 Computational Physics +1607.04295 Optimization and Control +1607.04448 Phenomenology +1607.05109 Quantum Gases +1607.05234 Materials Science +1607.05365 High Energy Astrophysical Phenomena +1607.05556 Phenomenology +1607.05990 Soft Condensed Matter +1607.06054 Strongly Correlated Electrons +1607.06536 Quantum Gases +1607.06730 +1607.07332 +1607.07859 Earth and Planetary Astrophysics +1607.08490 Statistical Mechanics +1607.08624 Materials Science +1607.08793 +1607.08868 High Energy Astrophysical Phenomena +1608.00158 Number Theory +1608.00560 +1608.01097 Phenomenology +1608.01328 Statistical Mechanics +1608.01546 Pattern Formation and Solitons +1608.01558 Disordered Systems and Neural Networks +1608.01618 Phenomenology +1608.01998 High Energy Astrophysical Phenomena +1608.02231 +1608.02321 Astrophysics of Galaxies +1608.02587 Astrophysics of Galaxies +1608.02651 Theory +1608.02670 Information Theory +1608.02914 Strongly Correlated Electrons +1608.03591 Phenomenology +1608.03951 Combinatorics +1608.04009 Astrophysics of Galaxies +1608.04032 +1608.04278 Mesoscale and Nanoscale Physics +1608.04344 +1608.04351 Cosmology and Nongalactic Astrophysics +1608.04543 +1608.04643 Earth and Planetary Astrophysics +1608.04889 High Energy Astrophysical Phenomena +1608.05141 +1608.05410 Earth and Planetary Astrophysics +1608.05414 Phenomenology +1608.05498 Risk Management +1608.05859 Computation and Language +1608.06380 High Energy Astrophysical Phenomena +1608.06718 Computation and Language +1608.08067 +1608.08227 Strongly Correlated Electrons +1608.08277 Phenomenology +1608.08398 Astrophysics of Galaxies +1608.08420 Quantum Gases +1608.08671 Probability +1608.08708 Phenomenology +1608.08801 Cosmology and Nongalactic Astrophysics +1609.00190 +1609.00245 Probability +1609.00401 Superconductivity +1609.00657 Pattern Formation and Solitons +1609.00882 +1609.01099 Optics +1609.01181 Instrumentation and Detectors +1609.01505 Instrumentation and Methods for Astrophysics +1609.01707 Disordered Systems and Neural Networks +1609.01786 Phenomenology +1609.01874 Phenomenology +1609.01951 Computer Science and Game Theory +1609.02025 Phenomenology +1609.02145 Astrophysics of Galaxies +1609.02162 Superconductivity +1609.02248 Astrophysics of Galaxies +1609.02403 +1609.02703 Computational Physics +1609.03068 Neural and Evolutionary Computing +1609.03082 Earth and Planetary Astrophysics +1609.03158 Optimization and Control +1609.03510 Chemical Physics +1609.03581 High Energy Astrophysical Phenomena +1609.03591 Solar and Stellar Astrophysics +1609.03903 Earth and Planetary Astrophysics +1609.04893 High Energy Astrophysical Phenomena +1609.04944 Trading and Market Microstructure +1609.05047 Materials Science +1609.05311 Astrophysics of Galaxies +1609.05421 Materials Science +1609.05450 Strongly Correlated Electrons +1609.05685 Mesoscale and Nanoscale Physics +1609.05723 Solar and Stellar Astrophysics +1609.05949 Quantum Gases +1609.06084 Materials Science +1609.06115 Phenomenology +1609.06183 Optics +1609.06289 Differential Geometry +1609.06340 +1609.06524 Plasma Physics +1609.06689 Astrophysics of Galaxies +1609.06781 Phenomenology +1609.06797 Other Condensed Matter +1609.07001 Phenomenology +1609.07122 Phenomenology +1609.07156 Earth and Planetary Astrophysics +1609.07308 Astrophysics of Galaxies +1609.07318 Astrophysics of Galaxies +1609.07348 Pattern Formation and Solitons +1609.07474 Earth and Planetary Astrophysics +1609.07538 Astrophysics of Galaxies +1609.07705 High Energy Astrophysical Phenomena +1609.07809 Geometric Topology +1609.07986 Computer Vision and Pattern Recognition +1609.08158 Astrophysics of Galaxies +1609.08169 Astrophysics of Galaxies +1609.08240 Astrophysics of Galaxies +1609.08256 Astrophysics of Galaxies +1609.08478 Astrophysics of Galaxies +1609.08552 +1609.08617 Strongly Correlated Electrons +1609.08726 Solar and Stellar Astrophysics +1609.08837 Operator Algebras +1609.09353 Learning +1609.09495 Astrophysics of Galaxies +1609.09723 +1609.09749 Astrophysics of Galaxies +1609.09855 Cosmology and Nongalactic Astrophysics +1610.00028 Astrophysics of Galaxies +1610.00171 Human-Computer Interaction +1610.00309 Neurons and Cognition +1610.00417 Disordered Systems and Neural Networks +1610.00523 Materials Science +1610.00699 High Energy Astrophysical Phenomena +1610.00711 High Energy Astrophysical Phenomena +1610.00902 Phenomenology +1610.01088 Materials Science +1610.01343 Optics +1610.01383 Experiment +1610.01459 Instrumentation and Detectors +1610.01615 Astrophysics of Galaxies +1610.01640 Adaptation and Self-Organizing Systems +1610.01802 Theory +1610.01870 Dynamical Systems +1610.02149 +1610.02437 Astrophysics of Galaxies +1610.02441 Astrophysics of Galaxies +1610.02748 Earth and Planetary Astrophysics +1610.02926 Materials Science +1610.02964 Astrophysics of Galaxies +1610.02972 Quantum Gases +1610.03257 Soft Condensed Matter +1610.03293 Quantum Gases +1610.03419 Materials Science +1610.03947 Astrophysics of Galaxies +1610.04034 Materials Science +1610.04773 +1610.04806 Disordered Systems and Neural Networks +1610.04990 Space Physics +1610.05122 +1610.05319 High Energy Astrophysical Phenomena +1610.05557 +1610.05599 Theory +1610.05648 Quantum Gases +1610.05770 Astrophysics of Galaxies +1610.05782 Astrophysics of Galaxies +1610.05805 Astrophysics of Galaxies +1610.05936 Networking and Internet Architecture +1610.05957 +1610.06139 +1610.06277 Earth and Planetary Astrophysics +1610.06529 Plasma Physics +1610.07226 Superconductivity +1610.07229 Data Structures and Algorithms +1610.07301 Soft Condensed Matter +1610.07329 Superconductivity +1610.07608 High Energy Astrophysical Phenomena +1610.07648 Materials Science +1610.08121 Algebraic Geometry +1610.08346 Analysis of PDEs +1610.08520 Astrophysics of Galaxies +1610.08527 Theory +1610.08682 Disordered Systems and Neural Networks +1610.08760 Instrumentation and Methods for Astrophysics +1610.08811 Solar and Stellar Astrophysics +1610.08830 Cosmology and Nongalactic Astrophysics +1610.08925 +1610.08981 Astrophysics of Galaxies +1610.09149 Strongly Correlated Electrons +1610.09373 Phenomenology +1610.09377 Astrophysics of Galaxies +1610.09592 Phenomenology +1611.00017 Astrophysics of Galaxies +1611.00072 K-Theory and Homology +1611.00293 Phenomenology +1611.00348 Phenomenology +1611.00404 Distributed, Parallel, and Cluster Computing +1611.00419 High Energy Astrophysical Phenomena +1611.00497 Phenomenology +1611.00649 Mesoscale and Nanoscale Physics +1611.00719 Astrophysics of Galaxies +1611.01050 Differential Geometry +1611.01085 Atomic Physics +1611.01460 Phenomenology +1611.01610 Superconductivity +1611.01744 +1611.01803 +1611.01928 +1611.02039 Astrophysics of Galaxies +1611.02183 Astrophysics of Galaxies +1611.02236 Strongly Correlated Electrons +1611.02950 Probability +1611.02972 +1611.03184 High Energy Astrophysical Phenomena +1611.03257 Earth and Planetary Astrophysics +1611.03954 Artificial Intelligence +1611.04142 Instrumentation and Detectors +1611.04399 Computer Vision and Pattern Recognition +1611.04568 Phenomenology +1611.04584 Astrophysics of Galaxies +1611.04607 Theory +1611.04616 Theory +1611.04658 Phenomenology +1611.04928 Computation and Language +1611.05048 Phenomenology +1611.05085 Mesoscale and Nanoscale Physics +1611.05223 Solar and Stellar Astrophysics +1611.05236 Mesoscale and Nanoscale Physics +1611.05383 Phenomenology +1611.05830 Solar and Stellar Astrophysics +1611.05858 Instrumentation and Methods for Astrophysics +1611.05997 +1611.06005 +1611.06041 Materials Science +1611.06155 Instrumentation and Methods for Astrophysics +1611.06489 Astrophysics of Galaxies +1611.06568 Phenomenology +1611.06579 High Energy Astrophysical Phenomena +1611.06664 Dynamical Systems +1611.06710 Mesoscale and Nanoscale Physics +1611.07022 Astrophysics of Galaxies +1611.07066 Differential Geometry +1611.07125 Astrophysics of Galaxies +1611.07234 Phenomenology +1611.07461 Solar and Stellar Astrophysics +1611.07470 Astrophysics of Galaxies +1611.07612 Data Structures and Algorithms +1611.07833 Numerical Analysis +1611.07904 Analysis of PDEs +1611.07983 High Energy Astrophysical Phenomena +1611.08106 +1611.08279 Cosmology and Nongalactic Astrophysics +1611.08378 Astrophysics of Galaxies +1611.08442 Strongly Correlated Electrons +1611.08485 +1611.08524 Statistical Mechanics +1611.08576 Solar and Stellar Astrophysics +1611.08597 Astrophysics of Galaxies +1611.08915 Theory +1611.08922 Quantum Gases +1611.08933 Quantum Algebra +1611.09074 Earth and Planetary Astrophysics +1611.09763 Optimization and Control +1611.10145 Strongly Correlated Electrons +1611.10244 High Energy Astrophysical Phenomena +1611.10274 Astrophysics of Galaxies +1611.10292 High Energy Astrophysical Phenomena +1612.00008 Solar and Stellar Astrophysics +1612.00183 Astrophysics of Galaxies +1612.00289 +1612.00315 Representation Theory +1612.00401 +1612.00459 Astrophysics of Galaxies +1612.00512 Classical Analysis and ODEs +1612.00533 Mesoscale and Nanoscale Physics +1612.00560 Computer Vision and Pattern Recognition +1612.00697 Solar and Stellar Astrophysics +1612.00890 Strongly Correlated Electrons +1612.01017 High Energy Astrophysical Phenomena +1612.01214 +1612.01442 Group Theory +1612.01460 Mesoscale and Nanoscale Physics +1612.01503 Disordered Systems and Neural Networks +1612.01770 Digital Libraries +1612.01927 Mesoscale and Nanoscale Physics +1612.01994 +1612.02098 Solar and Stellar Astrophysics +1612.02157 Fluid Dynamics +1612.02244 Experiment +1612.02370 Phenomenology +1612.02441 Solar and Stellar Astrophysics +1612.02691 Theory +1612.02983 Mesoscale and Nanoscale Physics +1612.03065 +1612.03120 Representation Theory +1612.03163 Astrophysics of Galaxies +1612.03289 Theory +1612.03517 Phenomenology +1612.03524 Materials Science +1612.03957 Machine Learning +1612.04020 Astrophysics of Galaxies +1612.04044 +1612.04117 Strongly Correlated Electrons +1612.04255 +1612.04327 +1612.04366 Phenomenology +1612.04385 Theory +1612.04505 Theory +1612.04640 Phenomenology +1612.04798 Lattice +1612.04826 Phenomenology +1612.04941 Space Physics +1612.04995 Astrophysics of Galaxies +1612.05094 Strongly Correlated Electrons +1612.05134 Quantum Gases +1612.05311 Solar and Stellar Astrophysics +1612.05364 +1612.05579 Strongly Correlated Electrons +1612.05589 Astrophysics of Galaxies +1612.05801 Instrumentation and Methods for Astrophysics +1612.06145 Earth and Planetary Astrophysics +1612.06300 Strongly Correlated Electrons +1612.06338 Strongly Correlated Electrons +1612.06389 High Energy Astrophysical Phenomena +1612.06495 Astrophysics of Galaxies +1612.06575 Dynamical Systems +1612.06852 Theory +1612.06940 Phenomenology +1612.07052 Differential Geometry +1612.07322 Astrophysics of Galaxies +1612.08104 Mesoscale and Nanoscale Physics +1612.08570 Differential Geometry +1612.08792 Computer Vision and Pattern Recognition +1612.09042 Logic +1701.00458 Instrumentation and Methods for Astrophysics +1701.00497 High Energy Astrophysical Phenomena +1701.00586 Solar and Stellar Astrophysics +1701.00692 Phenomenology +1701.01117 Astrophysics of Galaxies +1701.01179 Astrophysics of Galaxies +1701.01327 Trading and Market Microstructure +1701.01422 Solar and Stellar Astrophysics +1701.01452 High Energy Astrophysical Phenomena +1701.01472 Physics Education +1701.01526 Solar and Stellar Astrophysics +1701.01734 Astrophysics of Galaxies +1701.01774 High Energy Astrophysical Phenomena +1701.01806 Astrophysics of Galaxies +1701.02035 Medical Physics +1701.02147 +1701.02159 Solar and Stellar Astrophysics +1701.02287 Biomolecules +1701.02314 Earth and Planetary Astrophysics +1701.02409 Computational Complexity +1701.02569 Soft Condensed Matter +1701.02717 Solar and Stellar Astrophysics +1701.02771 Astrophysics of Galaxies +1701.02800 Theory +1701.02811 Astrophysics of Galaxies +1701.02994 Earth and Planetary Astrophysics +1701.03011 Materials Science +1701.03138 Instrumentation and Methods for Astrophysics +1701.03190 Astrophysics of Galaxies +1701.03270 Plasma Physics +1701.03365 Solar and Stellar Astrophysics +1701.03381 High Energy Astrophysical Phenomena +1701.03428 Functional Analysis +1701.03516 Solar and Stellar Astrophysics +1701.03538 Cosmology and Nongalactic Astrophysics +1701.03595 High Energy Astrophysical Phenomena +1701.03650 +1701.03736 Astrophysics of Galaxies +1701.03777 High Energy Astrophysical Phenomena +1701.03938 High Energy Astrophysical Phenomena +1701.03994 Rings and Algebras +1701.04286 Space Physics +1701.04381 Earth and Planetary Astrophysics +1701.04501 Astrophysics of Galaxies +1701.04538 Instrumentation and Methods for Astrophysics +1701.04745 Mesoscale and Nanoscale Physics +1701.04835 Astrophysics of Galaxies +1701.04836 Solar and Stellar Astrophysics +1701.04898 Astrophysics of Galaxies +1701.04944 Machine Learning +1701.05090 Disordered Systems and Neural Networks +1701.05122 Solar and Stellar Astrophysics +1701.05124 Experiment +1701.05196 High Energy Astrophysical Phenomena +1701.05201 Solar and Stellar Astrophysics +1701.05218 Solar and Stellar Astrophysics +1701.05269 Astrophysics of Galaxies +1701.05560 Astrophysics of Galaxies +1701.05852 Solar and Stellar Astrophysics +1701.05963 Solar and Stellar Astrophysics +1701.06019 Cosmology and Nongalactic Astrophysics +1701.06102 High Energy Astrophysical Phenomena +1701.06143 High Energy Astrophysical Phenomena +1701.06180 Astrophysics of Galaxies +1701.06216 Differential Geometry +1701.06286 Solar and Stellar Astrophysics +1701.06379 Optimization and Control +1701.06617 Cosmology and Nongalactic Astrophysics +1701.06666 Earth and Planetary Astrophysics +1701.06780 Solar and Stellar Astrophysics +1701.07001 Solar and Stellar Astrophysics +1701.07113 Solar and Stellar Astrophysics +1701.07239 Astrophysics of Galaxies +1701.07338 High Energy Astrophysical Phenomena +1701.07527 Astrophysics of Galaxies +1701.07553 Robotics +1701.07593 Algebraic Geometry +1701.07610 Solar and Stellar Astrophysics +1701.07803 Solar and Stellar Astrophysics +1701.07825 Astrophysics of Galaxies +1701.07834 Solar and Stellar Astrophysics +1701.07881 Earth and Planetary Astrophysics +1701.08080 +1701.08133 Fluid Dynamics +1701.08168 Astrophysics of Galaxies +1701.08548 Cosmology and Nongalactic Astrophysics +1701.08882 High Energy Astrophysical Phenomena +1701.09059 Algebraic Geometry +1701.09070 Number Theory +1701.09102 Solar and Stellar Astrophysics +1701.09155 Algebraic Geometry +1702.00055 Astrophysics of Galaxies +1702.00118 +1702.00195 Astrophysics of Galaxies +1702.00329 Genomics +1702.00335 Systems and Control +1702.00560 +1702.00576 +1702.00606 Information Theory +1702.00617 +1702.00673 Strongly Correlated Electrons +1702.00865 Neurons and Cognition +1702.00947 Astrophysics of Galaxies +1702.00997 Solar and Stellar Astrophysics +1702.01009 Cosmology and Nongalactic Astrophysics +1702.01123 Earth and Planetary Astrophysics +1702.01215 Solar and Stellar Astrophysics +1702.01813 Solar and Stellar Astrophysics +1702.01851 Astrophysics of Galaxies +1702.02219 Solar and Stellar Astrophysics +1702.02324 Theory +1702.02625 K-Theory and Homology +1702.02629 Number Theory +1702.02862 Solar and Stellar Astrophysics +1702.03071 Solar and Stellar Astrophysics +1702.03210 Atomic Physics +1702.03301 Earth and Planetary Astrophysics +1702.03366 Optimization and Control +1702.03489 Phenomenology +1702.03672 Materials Science +1702.03702 +1702.03719 High Energy Astrophysical Phenomena +1702.03736 Instrumentation and Methods for Astrophysics +1702.04167 Strongly Correlated Electrons +1702.04267 Machine Learning +1702.04305 Rings and Algebras +1702.04453 +1702.04649 Learning +1702.04744 Solar and Stellar Astrophysics +1702.04821 Number Theory +1702.05006 +1702.05015 Complex Variables +1702.05067 Instrumentation and Methods for Astrophysics +1702.05152 Phenomenology +1702.05190 Mesoscale and Nanoscale Physics +1702.05281 Phenomenology +1702.05378 Number Theory +1702.05420 Systems and Control +1702.05440 Representation Theory +1702.05556 Atomic Physics +1702.05601 Dynamical Systems +1702.05623 Differential Geometry +1702.05704 Computational Complexity +1702.05735 Logic +1702.05749 Theory +1702.05757 Cosmology and Nongalactic Astrophysics +1702.05758 Classical Analysis and ODEs +1702.05762 Metric Geometry +1702.05769 Category Theory +1702.05801 Analysis of PDEs +1702.05810 Statistical Mechanics +1702.05854 Social and Information Networks +1702.05927 +1702.05952 Physics and Society +1702.05954 +1702.05966 Earth and Planetary Astrophysics +1702.06011 Information Theory +1702.06072 Physics Education +1702.06090 +1702.06117 Instrumentation and Detectors +1702.06118 Computer Vision and Pattern Recognition +1702.06119 Emerging Technologies +1702.06120 Learning +1702.06121 Data Structures and Algorithms +1702.06122 Computational Physics +1702.06124 Phenomenology +1702.06125 Superconductivity +1702.06129 Astrophysics of Galaxies +1702.06131 High Energy Astrophysical Phenomena +1702.06136 +1702.06138 High Energy Astrophysical Phenomena +1702.06139 Theory +1702.06142 +1702.06143 Astrophysics of Galaxies +1702.06144 Information Theory +1702.06145 Phenomenology +1702.06147 Theory +1702.06148 Astrophysics of Galaxies +1702.06149 Astrophysics of Galaxies +1702.06151 Computer Vision and Pattern Recognition +1702.06152 Information Theory +1702.06153 Social and Information Networks +1702.06154 Social and Information Networks +1702.06156 Computers and Society +1702.06157 Information Theory +1702.06158 Computers and Society +1702.06159 Cryptography and Security +1702.06162 Cryptography and Security +1702.06163 Computational Geometry +1702.06164 Experiment +1702.06167 Distributed, Parallel, and Cluster Computing +1702.06168 Representation Theory +1702.06169 Algebraic Geometry +1702.06170 Number Theory +1702.06171 Functional Analysis +1702.06172 Numerical Analysis +1702.06173 Astrophysics of Galaxies +1702.06174 Materials Science +1702.06175 Learning +1702.06177 Probability +1702.06178 Space Physics +1702.06179 +1702.06180 Probability +1702.06181 +1702.06182 Astrophysics of Galaxies +1702.06185 Information Theory +1702.06188 Computer Vision and Pattern Recognition +1702.06189 Computer Science and Game Theory +1702.06191 Statistical Finance +1702.06192 Cell Behavior +1702.06194 Mesoscale and Nanoscale Physics +1702.06195 Probability +1702.06196 Soft Condensed Matter +1702.06197 General Topology +1702.06198 Complex Variables +1702.06199 Artificial Intelligence +1702.06203 Combinatorics +1702.06204 Algebraic Geometry +1702.06205 Mesoscale and Nanoscale Physics +1702.06206 Dynamical Systems +1702.06207 Plasma Physics +1702.06209 Machine Learning +1702.06210 Mesoscale and Nanoscale Physics +1702.06212 Computer Vision and Pattern Recognition +1702.06213 Algebraic Geometry +1702.06214 Strongly Correlated Electrons +1702.06215 +1702.06218 Algebraic Geometry +1702.06219 Optimization and Control +1702.06220 Methodology +1702.06221 Methodology +1702.06222 Analysis of PDEs +1702.06223 Quantum Algebra +1702.06225 Chemical Physics +1702.06226 Information Theory +1702.06227 Combinatorics +1702.06228 Computer Vision and Pattern Recognition +1702.06229 +1702.06231 +1702.06232 Optics +1702.06233 Geometric Topology +1702.06234 Machine Learning +1702.06235 Computation and Language +1702.06236 Human-Computer Interaction +1702.06238 Artificial Intelligence +1702.06239 Computation and Language +1702.06240 Methodology +1702.06241 Lattice +1702.06242 +1702.06243 Geometric Topology +1702.06244 Analysis of PDEs +1702.06245 Phenomenology +1702.06246 Dynamical Systems +1702.06247 Information Retrieval +1702.06248 +1702.06251 Neurons and Cognition +1702.06252 Algebraic Geometry +1702.06253 Social and Information Networks +1702.06254 Optimization and Control +1702.06255 Populations and Evolution +1702.06256 Data Structures and Algorithms +1702.06257 Computer Vision and Pattern Recognition +1702.06258 Materials Science +1702.06259 Logic in Computer Science +1702.06262 Phenomenology +1702.06263 +1702.06265 Systems and Control +1702.06267 Algebraic Geometry +1702.06268 Differential Geometry +1702.06269 Learning +1702.06271 Rings and Algebras +1702.06272 +1702.06273 Statistical Mechanics +1702.06274 Mesoscale and Nanoscale Physics +1702.06275 Fluid Dynamics +1702.06277 Multimedia +1702.06278 Machine Learning +1702.06279 Analysis of PDEs +1702.06280 Cryptography and Security +1702.06281 Combinatorics +1702.06282 Probability +1702.06284 Databases +1702.06285 Systems and Control +1702.06286 Learning +1702.06287 +1702.06288 Analysis of PDEs +1702.06289 Lattice +1702.06290 Geometric Topology +1702.06291 Computer Vision and Pattern Recognition +1702.06293 Experiment +1702.06294 Computer Vision and Pattern Recognition +1702.06296 Instrumentation and Methods for Astrophysics +1702.06297 Multimedia +1702.06298 Databases +1702.06299 Analysis of PDEs +1702.06300 Numerical Analysis +1702.06301 Optimization and Control +1702.06302 Strongly Correlated Electrons +1702.06305 Optimization and Control +1702.06306 Optics +1702.06307 Accelerator Physics +1702.06309 Dynamical Systems +1702.06310 Differential Geometry +1702.06313 Statistical Mechanics +1702.06314 Optimization and Control +1702.06315 Experiment +1702.06316 Theory +1702.06317 Atomic Physics +1702.06318 Computers and Society +1702.06319 High Energy Astrophysical Phenomena +1702.06320 Phenomenology +1702.06321 Superconductivity +1702.06322 Discrete Mathematics +1702.06323 Group Theory +1702.06324 Analysis of PDEs +1702.06325 +1702.06326 Functional Analysis +1702.06327 Atomic Physics +1702.06328 General Topology +1702.06329 Artificial Intelligence +1702.06330 +1702.06331 Distributed, Parallel, and Cluster Computing +1702.06332 Computer Vision and Pattern Recognition +1702.06333 Group Theory +1702.06334 Programming Languages +1702.06336 Computation and Language +1702.06337 +1702.06338 Cosmology and Nongalactic Astrophysics +1702.06339 Number Theory +1702.06340 +1702.06341 Learning +1702.06342 Physics and Society +1702.06344 Information Theory +1702.06345 Atmospheric and Oceanic Physics +1702.06346 Materials Science +1702.06347 Learning +1702.06348 Theory +1702.06349 Mesoscale and Nanoscale Physics +1702.06350 Combinatorics +1702.06351 Materials Science +1702.06352 +1702.06353 Phenomenology +1702.06354 Machine Learning +1702.06355 Computer Vision and Pattern Recognition +1702.06357 +1702.06358 Cosmology and Nongalactic Astrophysics +1702.06359 Instrumentation and Detectors +1702.06360 +1702.06361 High Energy Astrophysical Phenomena +1702.06363 Physics and Society +1702.06364 Computational Complexity +1702.06365 Numerical Analysis +1702.06366 Materials Science +1702.06367 Functional Analysis +1702.06368 Chemical Physics +1702.06369 +1702.06370 Databases +1702.06371 Geometric Topology +1702.06372 Optics +1702.06375 Optimization and Control +1702.06376 Computer Vision and Pattern Recognition +1702.06377 Soft Condensed Matter +1702.06379 Databases +1702.06380 Plasma Physics +1702.06381 Information Theory +1702.06382 Networking and Internet Architecture +1702.06383 Information Retrieval +1702.06384 Networking and Internet Architecture +1702.06385 Machine Learning +1702.06386 Theory +1702.06387 Networking and Internet Architecture +1702.06389 Probability +1702.06390 Information Theory +1702.06391 Other Computer Science +1702.06392 Distributed, Parallel, and Cluster Computing +1702.06393 Earth and Planetary Astrophysics +1702.06395 Algebraic Geometry +1702.06396 Probability +1702.06397 Computer Vision and Pattern Recognition +1702.06398 Systems and Control +1702.06399 General Physics +1702.06400 Fluid Dynamics +1702.06401 Numerical Analysis +1702.06402 +1702.06404 Artificial Intelligence +1702.06405 Neurons and Cognition +1702.06406 Strongly Correlated Electrons +1702.06408 Computer Vision and Pattern Recognition +1702.06409 +1702.06412 Mesoscale and Nanoscale Physics +1702.06413 Number Theory +1702.06414 Logic +1702.06415 +1702.06416 Dynamical Systems +1702.06418 Strongly Correlated Electrons +1702.06419 Combinatorics +1702.06420 Number Theory +1702.06421 Classical Analysis and ODEs +1702.06422 Number Theory +1702.06423 Networking and Internet Architecture +1702.06424 Mesoscale and Nanoscale Physics +1702.06425 Instrumentation and Detectors +1702.06426 Phenomenology +1702.06427 Classical Analysis and ODEs +1702.06428 Representation Theory +1702.06429 Optimization and Control +1702.06431 Quantum Algebra +1702.06434 Analysis of PDEs +1702.06435 Information Theory +1702.06436 Cryptography and Security +1702.06438 Combinatorics +1702.06439 Computer Science and Game Theory +1702.06441 Computer Vision and Pattern Recognition +1702.06442 Theory +1702.06443 Information Theory +1702.06444 Probability +1702.06445 Systems and Control +1702.06446 Information Theory +1702.06447 Representation Theory +1702.06448 Logic +1702.06449 +1702.06451 Computer Vision and Pattern Recognition +1702.06452 Lattice +1702.06453 Complex Variables +1702.06454 Mesoscale and Nanoscale Physics +1702.06455 Information Theory +1702.06456 Neural and Evolutionary Computing +1702.06458 Social and Information Networks +1702.06459 +1702.06460 Analysis of PDEs +1702.06461 Computer Vision and Pattern Recognition +1702.06462 Geometric Topology +1702.06464 Dynamical Systems +1702.06465 Quantum Gases +1702.06467 Information Retrieval +1702.06468 Analysis of PDEs +1702.06469 Fluid Dynamics +1702.06471 Functional Analysis +1702.06473 Experiment +1702.06475 Cryptography and Security +1702.06476 Optics +1702.06477 Numerical Analysis +1702.06479 Optimization and Control +1702.06480 Dynamical Systems +1702.06481 Accelerator Physics +1702.06482 Phenomenology +1702.06483 Mesoscale and Nanoscale Physics +1702.06484 Theory +1702.06485 Functional Analysis +1702.06486 Phenomenology +1702.06487 Number Theory +1702.06489 Theory +1702.06491 Human-Computer Interaction +1702.06493 Information Theory +1702.06494 Number Theory +1702.06495 Probability +1702.06496 Combinatorics +1702.06497 Mesoscale and Nanoscale Physics +1702.06498 Materials Science +1702.06500 Solar and Stellar Astrophysics +1702.06501 Instrumentation and Detectors +1702.06502 Analysis of PDEs +1702.06503 Computational Complexity +1702.06505 Optimization and Control +1702.06507 Number Theory +1702.06508 Populations and Evolution +1702.06509 Cosmology and Nongalactic Astrophysics +1702.06510 Information Retrieval +1702.06511 Materials Science +1702.06512 Applications +1702.06513 Neurons and Cognition +1702.06515 Strongly Correlated Electrons +1702.06516 Information Theory +1702.06518 Algebraic Geometry +1702.06519 Combinatorics +1702.06520 Algebraic Geometry +1702.06521 Computer Vision and Pattern Recognition +1702.06522 Probability +1702.06524 Strongly Correlated Electrons +1702.06525 Machine Learning +1702.06526 Cosmology and Nongalactic Astrophysics +astro-ph/0109497 +astro-ph/0201129 +astro-ph/0402508 +astro-ph/0701485 +math/0603494 Differential Geometry +0801.0287 Phenomenology +0809.2043 +0912.4409 +1004.5097 General Physics +1110.1448 Cosmology and Nongalactic Astrophysics +1110.4978 Logic in Computer Science +1112.1562 Computational Geometry +1202.3129 Algebraic Geometry +1202.3900 Dynamical Systems +1208.2888 Dynamical Systems +1209.2287 Dynamical Systems +1211.5885 Dynamical Systems +1212.5350 Number Theory +1212.6623 Algebraic Topology +1302.0152 Number Theory +1312.7353 +1405.5193 Discrete Mathematics +1406.2006 +1407.2512 +1407.5983 Number Theory +1411.5221 +1502.00027 Strongly Correlated Electrons +1503.02721 Analysis of PDEs +1503.03043 +1503.06127 Quantum Algebra +1503.07292 Statistical Mechanics +1504.01699 Representation Theory +1504.03830 Metric Geometry +1504.04866 Genomics +1504.06113 Portfolio Management +1504.07939 Number Theory +1505.04951 Analysis of PDEs +1506.06606 Optimization and Control +1506.07470 Operator Algebras +1506.07836 Methodology +1506.08018 Information Theory +1506.08967 Group Theory +1507.05405 Differential Geometry +1507.05876 +1507.05972 Symplectic Geometry +1507.06828 Superconductivity +1507.07829 Cosmology and Nongalactic Astrophysics +1508.02389 High Energy Astrophysical Phenomena +1508.02407 Probability +1508.02617 Mesoscale and Nanoscale Physics +1508.03353 Information Theory +1508.04548 Rings and Algebras +1509.00609 Numerical Analysis +1509.00629 Probability +1509.01332 Information Theory +1509.04997 Instrumentation and Methods for Astrophysics +1509.05854 Symplectic Geometry +1509.06032 Formal Languages and Automata Theory +1509.06376 Astrophysics of Galaxies +1510.00619 Dynamical Systems +1510.04226 Differential Geometry +1510.05151 Analysis of PDEs +1510.05624 Mesoscale and Nanoscale Physics +1510.06748 Populations and Evolution +1510.08444 Theory +1510.08733 Number Theory +1511.00926 Statistics Theory +1511.05354 Materials Science +1511.08138 Optimization and Control +1512.01011 Algebraic Geometry +1512.01206 Optimization and Control +1512.05864 Distributed, Parallel, and Cluster Computing +1512.06003 Number Theory +1512.06905 Numerical Analysis +1512.08528 Optimization and Control +1601.03191 Representation Theory +1601.03369 Plasma Physics +1601.05753 Mesoscale and Nanoscale Physics +1601.06224 Information Theory +1601.07503 Probability +1601.07518 Combinatorics +1601.07676 Numerical Analysis +1601.08185 Logic +1602.02221 Chaotic Dynamics +1602.06002 Probability +1603.03003 Algebraic Geometry +1603.03224 +1603.03469 Classical Analysis and ODEs +1603.03486 Strongly Correlated Electrons +1603.05285 Computer Vision and Pattern Recognition +1603.06102 Differential Geometry +1603.07111 Phenomenology +1603.09684 Metric Geometry +1604.02235 Cryptography and Security +1604.02308 Dynamical Systems +1604.02419 Number Theory +1604.02814 Combinatorics +1604.02880 Fluid Dynamics +1605.00062 Statistical Mechanics +1605.00466 Mesoscale and Nanoscale Physics +1605.02383 Differential Geometry +1605.06099 Combinatorics +1605.07321 Combinatorics +1606.02253 Algebraic Geometry +1606.02857 Phenomenology +1606.04067 Astrophysics of Galaxies +1606.04436 +1606.07866 Theory +1606.07931 Algebraic Geometry +1606.08793 Machine Learning +1607.03334 Phenomenology +1607.05182 Probability +1607.06649 Dynamical Systems +1607.07163 Information Theory +1607.07443 Instrumentation and Methods for Astrophysics +1607.08089 Robotics +1607.08331 Atomic Physics +1608.01270 Mesoscale and Nanoscale Physics +1608.01916 Mesoscale and Nanoscale Physics +1608.01980 Theory +1608.03108 Optimization and Control +1608.03372 Strongly Correlated Electrons +1608.03501 Combinatorics +1608.04121 Metric Geometry +1608.04552 +1608.04855 Experiment +1608.05501 Neurons and Cognition +1608.05957 Superconductivity +1608.07378 High Energy Astrophysical Phenomena +1608.08590 +1609.00360 Applications +1609.00474 Phenomenology +1609.00747 +1609.01556 Disordered Systems and Neural Networks +1609.01697 Mesoscale and Nanoscale Physics +1609.02421 Statistical Mechanics +1609.02909 Mesoscale and Nanoscale Physics +1609.03323 Learning +1609.04739 Cosmology and Nongalactic Astrophysics +1609.06023 Combinatorics +1609.06296 +1609.06370 Number Theory +1609.06481 Number Theory +1609.07027 Information Theory +1609.07182 Representation Theory +1609.07526 Social and Information Networks +1609.07979 Statistical Mechanics +1609.09077 Instrumentation and Methods for Astrophysics +1610.00040 Optimization and Control +1610.00797 Strongly Correlated Electrons +1610.01994 Instrumentation and Detectors +1610.02312 +1610.02689 Cosmology and Nongalactic Astrophysics +1610.03692 Combinatorics +1610.04918 Algebraic Geometry +1610.05170 Differential Geometry +1610.05187 Experiment +1610.05963 Mesoscale and Nanoscale Physics +1610.06487 Phenomenology +1610.06682 Instrumentation and Detectors +1610.07858 Logic in Computer Science +1610.09499 +1611.00763 Theory +1611.00825 Materials Science +1611.01840 Strongly Correlated Electrons +1611.01934 Data Structures and Algorithms +1611.02097 Materials Science +1611.02426 Phenomenology +1611.02536 Materials Science +1611.02648 Learning +1611.02984 Cosmology and Nongalactic Astrophysics +1611.03573 Classical Analysis and ODEs +1611.03673 Artificial Intelligence +1611.03711 Phenomenology +1611.03872 Astrophysics of Galaxies +1611.03906 Human-Computer Interaction +1611.05080 Neurons and Cognition +1611.05202 +1611.05466 Phenomenology +1611.06321 Computer Vision and Pattern Recognition +1611.07643 Lattice +1611.07921 Dynamical Systems +1611.09047 Instrumentation and Detectors +1611.09940 Artificial Intelligence +1612.00260 Information Retrieval +1612.00360 Numerical Analysis +1612.00653 Human-Computer Interaction +1612.00845 Phenomenology +1612.01099 Algebraic Geometry +1612.01794 +1612.02273 Optimization and Control +1612.02785 Logic in Computer Science +1612.02857 Classical Physics +1612.03648 Group Theory +1612.03991 Computation and Language +1612.05068 Strongly Correlated Electrons +1612.06680 Combinatorics +1612.07730 Superconductivity +1612.08223 +1612.08938 +1612.09373 Differential Geometry +1612.09502 Functional Analysis +1612.09508 Computer Vision and Pattern Recognition +1701.00022 Superconductivity +1701.00045 +1701.00177 Discrete Mathematics +1701.00505 Methodology +1701.00807 Optics +1701.01131 Functional Analysis +1701.01153 +1701.01160 Number Theory +1701.01221 Phenomenology +1701.01340 Statistics Theory +1701.01727 Disordered Systems and Neural Networks +1701.01804 Group Theory +1701.01840 Cosmology and Nongalactic Astrophysics +1701.02442 Lattice +1701.02580 +1701.02633 Analysis of PDEs +1701.02705 Earth and Planetary Astrophysics +1701.02751 Strongly Correlated Electrons +1701.02856 Applications +1701.02897 Quantum Gases +1701.02956 +1701.03020 Algebraic Geometry +1701.03102 Computer Vision and Pattern Recognition +1701.03121 Atomic Physics +1701.03200 Algebraic Geometry +1701.03321 Mesoscale and Nanoscale Physics +1701.03364 Computer Vision and Pattern Recognition +1701.03458 Learning +1701.03459 Instrumentation and Detectors +1701.03460 Functional Analysis +1701.03461 Combinatorics +1701.03462 Methodology +1701.03463 +1701.03464 Mesoscale and Nanoscale Physics +1701.03466 Astrophysics of Galaxies +1701.03468 Astrophysics of Galaxies +1701.03469 Disordered Systems and Neural Networks +1701.03470 Commutative Algebra +1701.03471 Astrophysics of Galaxies +1701.03472 Strongly Correlated Electrons +1701.03473 Astrophysics of Galaxies +1701.03474 Cosmology and Nongalactic Astrophysics +1701.03475 Earth and Planetary Astrophysics +1701.03476 Subcellular Processes +1701.03477 Numerical Analysis +1701.03478 Combinatorics +1701.03479 Geometric Topology +1701.03482 Astrophysics of Galaxies +1701.03485 +1701.03486 Geophysics +1701.03487 Systems and Control +1701.03488 Computational Physics +1701.03489 High Energy Astrophysical Phenomena +1701.03490 Algebraic Topology +1701.03491 Analysis of PDEs +1701.03492 Computation and Language +1701.03493 Discrete Mathematics +1701.03495 Mesoscale and Nanoscale Physics +1701.03496 Materials Science +1701.03498 Theory +1701.03501 Theory +1701.03502 Combinatorics +1701.03504 Methodology +1701.03505 Analysis of PDEs +1701.03506 Functional Analysis +1701.03507 Distributed, Parallel, and Cluster Computing +1701.03508 Optimization and Control +1701.03510 Earth and Planetary Astrophysics +1701.03511 General Mathematics +1701.03512 Computation +1701.03513 Methodology +1701.03515 Information Theory +1701.03517 Cosmology and Nongalactic Astrophysics +1701.03519 Distributed, Parallel, and Cluster Computing +1701.03521 +1701.03522 Networking and Internet Architecture +1701.03523 Classical Analysis and ODEs +1701.03524 Geometric Topology +1701.03526 Astrophysics of Galaxies +1701.03529 Symbolic Computation +1701.03530 Astrophysics of Galaxies +1701.03532 Materials Science +1701.03533 Cosmology and Nongalactic Astrophysics +1701.03534 Distributed, Parallel, and Cluster Computing +1701.03535 Methodology +1701.03536 +1701.03537 Computer Science and Game Theory +1701.03539 Earth and Planetary Astrophysics +1701.03540 Optics +1701.03542 Combinatorics +1701.03543 Astrophysics of Galaxies +1701.03544 Superconductivity +1701.03545 Classical Analysis and ODEs +1701.03546 Dynamical Systems +1701.03547 +1701.03548 Lattice +1701.03549 Quantitative Methods +1701.03551 Computer Vision and Pattern Recognition +1701.03552 Theory +1701.03553 Theory +1701.03554 Optics +1701.03555 Computer Vision and Pattern Recognition +1701.03558 Systems and Control +1701.03559 Information Theory +1701.03560 Analysis of PDEs +1701.03561 Combinatorics +1701.03562 Strongly Correlated Electrons +1701.03564 +1701.03566 Information Theory +1701.03567 Superconductivity +1701.03568 Information Theory +1701.03569 Methodology +1701.03570 Analysis of PDEs +1701.03571 Artificial Intelligence +1701.03572 Computer Vision and Pattern Recognition +1701.03573 Robotics +1701.03574 Functional Analysis +1701.03575 Statistical Mechanics +1701.03577 Machine Learning +1701.03578 Computation and Language +1701.03579 Rings and Algebras +1701.03580 Optimization and Control +1701.03581 Materials Science +1701.03582 +1701.03584 Superconductivity +1701.03585 +1701.03586 +1701.03588 +1701.03590 Information Theory +1701.03591 Mesoscale and Nanoscale Physics +1701.03592 Cosmology and Nongalactic Astrophysics +1701.03593 Representation Theory +1701.03598 +1701.03599 Analysis of PDEs +1701.03600 Statistical Mechanics +1701.03601 Astrophysics of Galaxies +1701.03602 Logic in Computer Science +1701.03603 Chemical Physics +1701.03604 Operator Algebras +1701.03605 +1701.03606 Physics and Society +1701.03608 Robotics +1701.03610 Soft Condensed Matter +1701.03611 Populations and Evolution +1701.03612 Information Theory +1701.03613 Instrumentation and Detectors +1701.03615 Logic in Computer Science +1701.03617 Physics and Society +1701.03619 Machine Learning +1701.03620 Information Theory +1701.03621 Information Theory +1701.03622 Mesoscale and Nanoscale Physics +1701.03623 Strongly Correlated Electrons +1701.03625 Probability +1701.03626 Classical Analysis and ODEs +1701.03627 Instrumentation and Methods for Astrophysics +1701.03628 +1701.03629 Analysis of PDEs +1701.03630 Information Theory +1701.03631 Group Theory +1701.03632 Probability +1701.03633 Learning +1701.03634 Computational Physics +1701.03635 Commutative Algebra +1701.03636 Computational Engineering, Finance, and Science +1701.03638 Statistical Mechanics +1701.03639 Social and Information Networks +1701.03640 Classical Physics +1701.03643 Soft Condensed Matter +1701.03644 Theory +1701.03645 Quantum Algebra +1701.03646 Chemical Physics +1701.03647 Learning +1701.03651 Mesoscale and Nanoscale Physics +1701.03652 Dynamical Systems +1701.03653 Astrophysics of Galaxies +1701.03654 Numerical Analysis +1701.03656 Mesoscale and Nanoscale Physics +1701.03658 Optimization and Control +1701.03659 Strongly Correlated Electrons +1701.03660 Strongly Correlated Electrons +1701.03661 Mesoscale and Nanoscale Physics +1701.03662 Number Theory +1701.03663 High Energy Astrophysical Phenomena +1701.03664 Astrophysics of Galaxies +1701.03666 Networking and Internet Architecture +1701.03667 Mesoscale and Nanoscale Physics +1701.03671 Soft Condensed Matter +1701.03672 Numerical Analysis +1701.03673 Quantum Gases +1701.03674 Systems and Control +1701.03675 Computation +1701.03677 Algebraic Geometry +1701.03678 Superconductivity +1701.03679 Mesoscale and Nanoscale Physics +1701.03682 Computation and Language +1701.03685 Combinatorics +1701.03687 Plasma Physics +1701.03689 Instrumentation and Methods for Astrophysics +1701.03692 Plasma Physics +1701.03693 Computational Geometry +1701.03694 Astrophysics of Galaxies +1701.03698 Probability +1701.03699 Combinatorics +1701.03700 General Physics +1701.03701 Data Analysis, Statistics and Probability +1701.03702 Cell Behavior +1701.03703 High Energy Astrophysical Phenomena +1701.03704 Theory +1701.03705 Algebraic Topology +1701.03708 +1701.03709 Distributed, Parallel, and Cluster Computing +1701.03710 Physics and Society +1701.03711 Algebraic Geometry +1701.03712 +1701.03714 Artificial Intelligence +1701.03715 Materials Science +1701.03717 Phenomenology +1701.03718 +1701.03720 Numerical Analysis +1701.03721 Number Theory +1701.03722 Analysis of PDEs +1701.03723 Number Theory +1701.03724 Number Theory +1701.03725 Number Theory +1701.03728 Computational Physics +1701.03730 Data Structures and Algorithms +1701.03731 High Energy Astrophysical Phenomena +1701.03732 Networking and Internet Architecture +1701.03733 Functional Analysis +1701.03734 Distributed, Parallel, and Cluster Computing +1701.03735 Logic +1701.03737 Functional Analysis +1701.03739 Strongly Correlated Electrons +1701.03741 Solar and Stellar Astrophysics +1701.03743 Learning +1701.03744 Algebraic Geometry +1701.03745 Functional Analysis +1701.03746 General Topology +1701.03747 Probability +1701.03749 Mesoscale and Nanoscale Physics +1701.03750 Rings and Algebras +1701.03751 Combinatorics +1701.03752 Logic +1701.03753 Information Theory +1701.03755 Machine Learning +1701.03756 Biological Physics +1701.03758 Social and Information Networks +1701.03759 Information Theory +1701.03761 Earth and Planetary Astrophysics +1701.03764 Information Theory +1701.03767 Information Theory +1701.03768 Formal Languages and Automata Theory +1701.03769 Statistics Theory +1701.03771 Number Theory +1701.03772 Methodology +1701.03773 Logic in Computer Science +1701.03774 Combinatorics +1701.03775 +1701.03776 Earth and Planetary Astrophysics +1701.03778 Category Theory +1701.03779 Computer Vision and Pattern Recognition +1701.03780 Combinatorics +chao-dyn/9602011 Chaotic Dynamics +1107.5789 Metric Geometry +1111.0250 Classical Analysis and ODEs +1112.1467 Group Theory +1112.2279 Group Theory +1212.2620 Numerical Analysis +1303.4009 Numerical Analysis +1303.5996 Group Theory +1303.5998 Group Theory +1304.8046 Information Theory +1305.6220 Theory +1310.0247 Classical Analysis and ODEs +1310.0252 Complex Variables +1311.5782 Numerical Analysis +1403.2343 Fluid Dynamics +1403.6026 Optics +1404.2744 Numerical Analysis +1404.4705 +1404.6831 Physics Education +1404.7641 Dynamical Systems +1405.6696 Algebraic Topology +1412.4605 Statistics Theory +1412.4752 Disordered Systems and Neural Networks +1501.07136 Functional Analysis +1502.02929 +1503.01943 Numerical Analysis +1503.05776 Algebraic Geometry +1503.06286 Combinatorics +1503.09163 Formal Languages and Automata Theory +1504.03311 +1504.07675 Representation Theory +1505.06552 +1506.01307 Group Theory +1506.04030 +1506.04264 Commutative Algebra +1506.04535 Phenomenology +1506.06394 Discrete Mathematics +1507.02018 Statistics Theory +1508.07765 +1509.01066 Robotics +1509.06540 Classical Analysis and ODEs +1510.01003 Machine Learning +1510.02653 Number Theory +1510.05111 Numerical Analysis +1510.08151 Methodology +1511.00261 Dynamical Systems +1511.00296 Populations and Evolution +1511.02033 Number Theory +1511.03646 Theory +1511.04622 Superconductivity +1511.05068 +1511.05107 +1511.05223 Systems and Control +1511.05453 Cryptography and Security +1511.07267 Programming Languages +1511.09037 Number Theory +1512.01524 Applications +1512.03230 Information Theory +1512.03261 Sound +1512.05659 Physics and Society +1512.05934 +1512.07507 Algebraic Geometry +1601.00986 Mesoscale and Nanoscale Physics +1601.02670 +1601.03516 Physics and Society +1601.03593 +1601.06601 Analysis of PDEs +1602.01465 Phenomenology +1602.01942 Statistics Theory +1602.02931 Analysis of PDEs +1602.03767 Group Theory +1602.04056 Cryptography and Security +1602.05766 Group Theory +1602.09117 Category Theory +1603.00823 Astrophysics of Galaxies +1603.01122 +1603.04915 Systems and Control +1603.05746 Distributed, Parallel, and Cluster Computing +1603.07526 +1603.07702 Differential Geometry +1604.00749 Geometric Topology +1604.01534 Soft Condensed Matter +1604.01656 K-Theory and Homology +1604.03297 Materials Science +1604.03489 Computer Vision and Pattern Recognition +1604.06924 Dynamical Systems +1604.08728 Disordered Systems and Neural Networks +1605.01492 Algebraic Geometry +1605.06789 Algebraic Geometry +1605.08346 Information Theory +1605.09674 Learning +1606.00558 Geometric Topology +1606.01781 Computation and Language +1606.02783 Economics +1606.04442 Artificial Intelligence +1606.04731 Experiment +1606.04753 Learning +1606.04920 Statistical Mechanics +1606.06617 Data Structures and Algorithms +1606.07075 Phenomenology +1606.07462 +1606.08319 Numerical Analysis +1607.00200 Numerical Analysis +1607.00558 Materials Science +1607.02390 Spectral Theory +1607.03020 Analysis of PDEs +1607.03945 Strongly Correlated Electrons +1607.04631 Differential Geometry +1607.05465 Number Theory +1607.05826 Quantitative Methods +1607.06608 Phenomenology +1607.07738 Molecular Networks +1607.08184 Physics Education +1608.00705 Strongly Correlated Electrons +1608.01218 Superconductivity +1608.01708 Statistical Mechanics +1608.01965 Computation and Language +1608.02806 Tissues and Organs +1608.02813 Soft Condensed Matter +1608.04377 Quantum Gases +1608.05643 Mesoscale and Nanoscale Physics +1608.05733 Disordered Systems and Neural Networks +1608.06211 +1608.07102 Information Retrieval +1608.07234 Number Theory +1608.07944 Analysis of PDEs +1608.08232 Strongly Correlated Electrons +1608.08509 Statistical Mechanics +1608.08803 Dynamical Systems +1608.08885 Optimization and Control +1608.09015 Fluid Dynamics +1609.00114 Combinatorics +1609.01631 Dynamical Systems +1609.02811 Classical Physics +1609.02857 Atomic Physics +1609.03125 Differential Geometry +1609.03711 Earth and Planetary Astrophysics +1609.04278 Mesoscale and Nanoscale Physics +1609.05510 Optics +1609.06100 Learning +1609.06753 Computer Vision and Pattern Recognition +1609.09153 Number Theory +1609.09638 Applications +1610.00182 +1610.00399 Optimization and Control +1610.01803 Superconductivity +1610.01936 Solar and Stellar Astrophysics +1610.03284 Strongly Correlated Electrons +1610.05651 Materials Science +1610.06075 +1610.06598 Neurons and Cognition +1610.06744 Lattice +1610.07939 Numerical Analysis +1611.00326 Sound +1611.00941 Differential Geometry +1611.01533 Phenomenology +1611.02238 +1611.02605 Differential Geometry +1611.02689 Strongly Correlated Electrons +1611.03031 Materials Science +1611.03124 Atomic Physics +1611.03840 Probability +1611.03923 +1611.04741 Computation and Language +1611.07517 Classical Physics +1611.09458 Strongly Correlated Electrons +1611.09576 +1611.09596 Plasma Physics +1611.09630 Learning +1611.09896 Optics +1611.10078 Formal Languages and Automata Theory +1612.00547 Optimization and Control +1612.01130 Mesoscale and Nanoscale Physics +1612.01395 Distributed, Parallel, and Cluster Computing +1612.01705 Mesoscale and Nanoscale Physics +1612.02277 Theory +1612.02920 +1612.03139 Analysis of PDEs +1612.03945 Algebraic Geometry +1612.05406 Phenomenology +1612.05510 +1612.06339 Information Theory +1612.06621 Differential Geometry +1612.06789 Phenomenology +1612.07980 Materials Science +1612.08730 Atomic Physics +1612.08818 Theory +1701.00509 Commutative Algebra +1701.01141 Phenomenology +1701.01683 Networking and Internet Architecture +1701.01863 Other Condensed Matter +1701.02496 Information Theory +1701.02753 Astrophysics of Galaxies +1701.03219 Popular Physics +1701.03329 Computation and Language +1701.03400 Computer Vision and Pattern Recognition +1701.03657 +1701.03974 Systems and Control +1701.04077 Learning +1701.04619 Theory +1701.04681 Systems and Control +1701.04943 Materials Science +1701.05031 Number Theory +1701.05131 +1701.05232 Discrete Mathematics +1701.05533 Theory +1701.05773 Theory +1701.06398 Combinatorics +1701.06403 Accelerator Physics +1701.06662 +1701.06890 +1701.07089 Information Theory +1701.07092 Combinatorics +1701.07247 Instrumentation and Detectors +1701.07286 Classical Analysis and ODEs +1701.07340 Information Theory +1701.07426 Mesoscale and Nanoscale Physics +1701.07436 Theory +1701.07466 Materials Science +1701.07478 +1701.07502 Classical Physics +1701.07689 Discrete Mathematics +1701.07802 Symbolic Computation +1701.07811 Combinatorics +1701.07818 Geometric Topology +1701.07822 Data Structures and Algorithms +1701.07823 Tissues and Organs +1701.07824 Plasma Physics +1701.07826 High Energy Astrophysical Phenomena +1701.07828 Strongly Correlated Electrons +1701.07829 Solar and Stellar Astrophysics +1701.07832 Strongly Correlated Electrons +1701.07835 Astrophysics of Galaxies +1701.07836 Strongly Correlated Electrons +1701.07837 Strongly Correlated Electrons +1701.07838 Astrophysics of Galaxies +1701.07839 Phenomenology +1701.07840 High Energy Astrophysical Phenomena +1701.07841 Solar and Stellar Astrophysics +1701.07842 Logic in Computer Science +1701.07843 Astrophysics of Galaxies +1701.07844 Computation +1701.07845 Analysis of PDEs +1701.07846 Representation Theory +1701.07848 Optics +1701.07851 Robotics +1701.07852 Learning +1701.07853 Social and Information Networks +1701.07854 Mesoscale and Nanoscale Physics +1701.07855 Theory +1701.07857 Other Computer Science +1701.07860 Cryptography and Security +1701.07862 Chemical Physics +1701.07863 Mesoscale and Nanoscale Physics +1701.07864 Number Theory +1701.07865 +1701.07866 Phenomenology +1701.07868 Analysis of PDEs +1701.07870 +1701.07871 Information Theory +1701.07872 Information Theory +1701.07877 Networking and Internet Architecture +1701.07878 Networking and Internet Architecture +1701.07880 Computation and Language +1701.07882 Differential Geometry +1701.07883 Astrophysics of Galaxies +1701.07884 Superconductivity +1701.07885 Functional Analysis +1701.07886 Earth and Planetary Astrophysics +1701.07888 Solar and Stellar Astrophysics +1701.07889 +1701.07891 Optics +1701.07894 Phenomenology +1701.07895 Learning +1701.07897 Analysis of PDEs +1701.07898 Phenomenology +1701.07900 +1701.07901 Computer Vision and Pattern Recognition +1701.07902 +1701.07904 Soft Condensed Matter +1701.07906 Materials Science +1701.07907 Spectral Theory +1701.07910 Applications +1701.07912 Classical Analysis and ODEs +1701.07914 Cryptography and Security +1701.07915 Combinatorics +1701.07916 Phenomenology +1701.07918 Theory +1701.07919 Phenomenology +1701.07920 Machine Learning +1701.07921 Mesoscale and Nanoscale Physics +1701.07923 Materials Science +1701.07924 Atomic Physics +1701.07925 Programming Languages +1701.07928 Logic +1701.07929 Phenomenology +1701.07930 Materials Science +1701.07931 Differential Geometry +1701.07932 Cosmology and Nongalactic Astrophysics +1701.07934 +1701.07936 +1701.07937 Logic in Computer Science +1701.07938 Differential Geometry +1701.07939 Optimization and Control +1701.07940 Genomics +1701.07941 Optimization and Control +1701.07942 Differential Geometry +1701.07945 Differential Geometry +1701.07946 Probability +1701.07949 Representation Theory +1701.07950 Software Engineering +1701.07951 +1701.07953 Learning +1701.07954 Formal Languages and Automata Theory +1701.07955 Information Retrieval +1701.07956 Computer Science and Game Theory +1701.07957 Analysis of PDEs +1701.07959 Phenomenology +1701.07960 Classical Analysis and ODEs +1701.07961 Systems and Control +1701.07962 Classical Analysis and ODEs +1701.07963 Combinatorics +1701.07965 Classical Analysis and ODEs +1701.07966 Atmospheric and Oceanic Physics +1701.07967 Probability +1701.07969 Atomic Physics +1701.07970 Experiment +1701.07972 Materials Science +1701.07973 +1701.07976 Information Theory +1701.07977 +1701.07979 Number Theory +1701.07980 Differential Geometry +1701.07981 Information Theory +1701.07982 Astrophysics of Galaxies +1701.07983 Probability +1701.07985 Differential Geometry +1701.07986 Metric Geometry +1701.07987 Analysis of PDEs +1701.07988 Soft Condensed Matter +1701.07989 Probability +1701.07990 Commutative Algebra +1701.07991 Networking and Internet Architecture +1701.07992 Probability +1701.07993 Networking and Internet Architecture +1701.07994 Probability +1701.07995 Combinatorics +1701.07996 Classical Analysis and ODEs +1701.07997 High Energy Astrophysical Phenomena +1701.07998 High Energy Astrophysical Phenomena +1701.07999 Computers and Society +1701.08002 Numerical Analysis +1701.08003 Analysis of PDEs +1701.08004 Differential Geometry +1701.08005 Information Theory +1701.08006 Computer Vision and Pattern Recognition +1701.08007 Quantum Gases +1701.08008 Digital Libraries +1701.08009 Quantum Gases +1701.08010 Statistics Theory +1701.08011 Dynamical Systems +1701.08012 Probability +1701.08014 Functional Analysis +1701.08015 Group Theory +1701.08017 Spectral Theory +1701.08018 Group Theory +1701.08020 Group Theory +1701.08021 Probability +1701.08022 Genomics +1701.08023 Computer Science and Game Theory +1701.08025 Computer Vision and Pattern Recognition +1701.08026 +1701.08027 Multiagent Systems +1701.08028 Databases +1701.08029 Databases +1701.08030 Programming Languages +1701.08032 Analysis of PDEs +1701.08033 Databases +1701.08034 Cryptography and Security +1701.08036 Soft Condensed Matter +1701.08038 Genomics +1701.08039 +1701.08040 Solar and Stellar Astrophysics +1701.08041 Materials Science +1701.08042 Instrumentation and Detectors +1701.08043 Populations and Evolution +1701.08044 Combinatorics +1701.08045 Numerical Analysis +1701.08046 Numerical Analysis +1701.08047 Experiment +1701.08048 Plasma Physics +1701.08050 Materials Science +1701.08051 Robotics +1701.08052 Databases +1701.08053 Databases +1701.08054 Databases +1701.08055 Machine Learning +1701.08056 Disordered Systems and Neural Networks +1701.08057 Strongly Correlated Electrons +1701.08058 Computer Science and Game Theory +1701.08059 Networking and Internet Architecture +1701.08060 Combinatorics +1701.08061 Soft Condensed Matter +1701.08062 +1701.08063 +1701.08064 Optics +1701.08065 Superconductivity +1701.08066 Instrumentation and Detectors +1701.08067 Information Theory +1701.08068 Emerging Technologies +1701.08069 Probability +1701.08070 Optimization and Control +1701.08071 Computation and Language +1701.08072 General Physics +1701.08073 General Physics +1701.08075 +1701.08077 Fluid Dynamics +1701.08078 Materials Science +1701.08079 Systems and Control +1701.08081 Systems and Control +1701.08083 Information Theory +1701.08084 Databases +1701.08086 Biomolecules +1701.08088 Databases +1701.08089 Lattice +1701.08090 Optics +1701.08091 Superconductivity +1701.08093 Fluid Dynamics +1701.08094 Biological Physics +1701.08095 Plasma Physics +1701.08096 Artificial Intelligence +1701.08097 Chaotic Dynamics +1701.08098 Networking and Internet Architecture +1701.08099 +1701.08100 Artificial Intelligence +1701.08101 Combinatorics +1701.08103 +1701.08104 Networking and Internet Architecture +1701.08105 Probability +1701.08106 Software Engineering +1701.08107 Computer Vision and Pattern Recognition +1701.08108 Computational Complexity +1701.08109 Fluid Dynamics +1701.08110 Theory +1701.08111 Information Theory +1701.08113 +1701.08115 Combinatorics +1701.08116 +1701.08117 Instrumentation and Detectors +1701.08118 Computation and Language +1701.08120 Instrumentation and Methods for Astrophysics +1701.08125 Multiagent Systems +1701.08126 Information Theory +1701.08127 +1701.08128 Data Structures and Algorithms +1701.08129 Classical Analysis and ODEs +1701.08130 Chaotic Dynamics +1701.08131 +1701.08132 Geometric Topology +1701.08135 General Physics +1701.08136 Superconductivity +1701.08137 Computational Physics +1701.08138 +1701.08139 Dynamical Systems +1701.08140 Methodology +1701.08141 Dynamical Systems +1701.08143 Materials Science +1701.08145 Applications +1701.08146 +1701.08147 Theory +1701.08149 Statistics Theory +1701.08150 +1701.08151 Chemical Physics +1701.08153 Dynamical Systems +1701.08154 Solar and Stellar Astrophysics +physics/0604224 Chemical Physics +1009.1993 Chaotic Dynamics +1012.2463 Chaotic Dynamics +1103.3981 Chaotic Dynamics +1106.2414 Discrete Mathematics +1110.0403 Computational Finance +1201.2108 Chaotic Dynamics +1201.5621 Computer Science and Game Theory +1205.0631 Group Theory +1211.5816 Portfolio Management +1304.4406 Physics and Society +1307.1447 Data Structures and Algorithms +1308.3696 +1308.5258 +1312.0464 Classical Analysis and ODEs +1402.5069 Fluid Dynamics +1403.3252 Optimization and Control +1403.4588 K-Theory and Homology +1403.5332 Instrumentation and Detectors +1404.0353 Physics and Society +1404.6744 Classical Analysis and ODEs +1406.1811 Pricing of Securities +1406.6310 +1407.1108 Numerical Analysis +1408.1312 Systems and Control +1408.3082 Mathematical Software +1409.2583 Mesoscale and Nanoscale Physics +1409.7542 Logic in Computer Science +1410.1303 Fluid Dynamics +1411.0639 Probability +1412.2538 Representation Theory +1501.00023 Rings and Algebras +1501.06594 +1502.05039 Fluid Dynamics +1503.02070 +1503.02608 Differential Geometry +1503.02654 Data Structures and Algorithms +1503.04764 +1503.04860 High Energy Astrophysical Phenomena +1503.05812 Data Structures and Algorithms +1505.00267 Distributed, Parallel, and Cluster Computing +1505.06628 Representation Theory +1506.00724 Probability +1506.04396 Geometric Topology +1506.06988 Populations and Evolution +1507.06254 Combinatorics +1507.08316 Numerical Analysis +1508.00286 Methodology +1508.02679 Networking and Internet Architecture +1508.07169 Probability +1509.01778 Probability +1509.03480 +1509.03729 Optimization and Control +1509.09174 Other Computer Science +1510.01671 Formal Languages and Automata Theory +1510.05257 Machine Learning +1511.01109 +1511.02064 Group Theory +1511.06269 Numerical Analysis +1511.06781 Dynamical Systems +1512.00389 Computer Vision and Pattern Recognition +1512.03213 Number Theory +1512.04362 Networking and Internet Architecture +1512.04616 Group Theory +1601.00390 Analysis of PDEs +1601.01140 Optimization and Control +1601.04103 Materials Science +1601.04258 Differential Geometry +1601.04420 +1601.07010 Numerical Analysis +1601.07404 Quantum Algebra +1601.07702 Computer Science and Game Theory +1601.07795 Information Theory +1602.00218 Combinatorics +1602.00344 Optimization and Control +1602.03635 Networking and Internet Architecture +1602.05391 Data Structures and Algorithms +1602.09022 Computational Complexity +1603.01276 Astrophysics of Galaxies +1603.04045 Classical Analysis and ODEs +1603.05044 Classical Analysis and ODEs +1603.06069 Classical Analysis and ODEs +1603.06914 Mathematical Software +1603.07346 Materials Science +1604.00689 Optics +1604.00932 Computational Complexity +1604.02144 Astrophysics of Galaxies +1604.02440 +1604.03852 Analysis of PDEs +1604.03901 Computer Vision and Pattern Recognition +1604.04604 Numerical Analysis +1604.05612 Optics +1604.06519 Superconductivity +1604.07949 Computation +1604.08403 Methodology +1605.01237 Quantum Gases +1605.01669 +1605.02351 Applications +1605.03030 Analysis of PDEs +1605.04552 Computational Geometry +1605.07961 Theory +1605.09276 Numerical Analysis +1605.09729 +1606.00539 Group Theory +1606.01476 +1606.06017 Applications +1606.06189 Superconductivity +1606.06239 Mesoscale and Nanoscale Physics +1606.09153 Phenomenology +1607.01260 Theory +1607.02585 +1607.03063 Quantitative Methods +1607.03248 Quantum Gases +1607.04030 Geometric Topology +1607.05376 Applications +1607.05880 Mesoscale and Nanoscale Physics +1607.08806 Combinatorics +1608.00698 Information Theory +1608.00868 +1608.01005 Cosmology and Nongalactic Astrophysics +1608.02023 Computer Vision and Pattern Recognition +1608.05205 Graphics +1608.05490 Algebraic Geometry +1608.05623 Optics +1608.05728 +1608.06560 Probability +1608.07576 Theory +1608.07810 +1609.00068 Optics +1609.01889 Lattice +1609.03840 Computational Complexity +1609.03908 Instrumentation and Methods for Astrophysics +1609.04539 Differential Geometry +1609.04581 Dynamical Systems +1609.04776 Symplectic Geometry +1609.05418 Analysis of PDEs +1609.05695 Computer Vision and Pattern Recognition +1609.05938 Fluid Dynamics +1609.06887 +1609.06903 Astrophysics of Galaxies +1609.06961 Combinatorics +1609.07230 Strongly Correlated Electrons +1609.07572 +1609.07996 Probability +1609.09418 Adaptation and Self-Organizing Systems +1610.00240 Analysis of PDEs +1610.01249 High Energy Astrophysical Phenomena +1610.02351 Methodology +1610.03352 Quantum Gases +1610.03515 Analysis of PDEs +1610.04283 Mesoscale and Nanoscale Physics +1610.05052 Statistical Mechanics +1610.05584 Theory +1610.05816 Disordered Systems and Neural Networks +1610.07518 Cosmology and Nongalactic Astrophysics +1610.08455 Theory +1610.08504 Astrophysics of Galaxies +1610.08626 Superconductivity +1610.08661 Strongly Correlated Electrons +1610.09541 Number Theory +1610.09913 General Physics +1611.02079 Mesoscale and Nanoscale Physics +1611.03950 Computational Physics +1611.04649 Operator Algebras +1611.04788 Optics +1611.05533 Optimization and Control +1611.06859 Mesoscale and Nanoscale Physics +1611.07301 Statistical Mechanics +1611.08284 Functional Analysis +1612.00516 Machine Learning +1612.01091 Logic in Computer Science +1612.01120 Artificial Intelligence +1612.03439 Atomic Physics +1612.03960 Theory +1612.04476 Group Theory +1612.04594 Geometric Topology +1612.04736 Strongly Correlated Electrons +1612.05138 Cosmology and Nongalactic Astrophysics +1612.05478 Computer Vision and Pattern Recognition +1612.05688 Learning +1612.05924 Combinatorics +1612.06031 +1612.06246 Learning +1612.06583 +1612.06638 Metric Geometry +1612.06653 +1612.06855 Economics +1612.07046 +1612.07232 Chemical Physics +1612.07574 Cryptography and Security +1612.08246 Statistics Theory +1612.08325 Superconductivity +1612.08393 Dynamical Systems +1612.08801 Physics and Society +1701.00145 Computation and Language +1701.00227 Computational Complexity +1701.00254 Number Theory +1701.00379 Mesoscale and Nanoscale Physics +1701.00418 Phenomenology +1701.00608 Algebraic Geometry +1701.00630 Software Engineering +1701.00978 +1701.01038 Combinatorics +1701.01042 Number Theory +1701.01096 Machine Learning +1701.01138 Group Theory +1701.01143 History and Overview +1701.01252 Information Theory +1701.01272 Computer Vision and Pattern Recognition +1701.01274 Social and Information Networks +1701.01358 Learning +1701.01367 Rings and Algebras +1701.01394 Data Structures and Algorithms +1701.01413 Logic in Computer Science +1701.01424 Statistical Mechanics +1701.01430 Computational Engineering, Finance, and Science +1701.01431 Astrophysics of Galaxies +1701.01434 Physics and Society +1701.01436 Rings and Algebras +1701.01437 Machine Learning +1701.01440 Strongly Correlated Electrons +1701.01441 Astrophysics of Galaxies +1701.01443 Phenomenology +1701.01444 Astrophysics of Galaxies +1701.01449 Cosmology and Nongalactic Astrophysics +1701.01450 +1701.01451 Astrophysics of Galaxies +1701.01453 Phenomenology +1701.01454 Quantum Gases +1701.01457 Materials Science +1701.01461 Computational Complexity +1701.01463 Materials Science +1701.01466 Statistical Mechanics +1701.01467 Cosmology and Nongalactic Astrophysics +1701.01469 Systems and Control +1701.01470 Machine Learning +1701.01471 +1701.01474 Information Theory +1701.01476 Cosmology and Nongalactic Astrophysics +1701.01477 Numerical Analysis +1701.01478 Functional Analysis +1701.01479 Analysis of PDEs +1701.01480 Computer Vision and Pattern Recognition +1701.01481 Differential Geometry +1701.01482 Classical Analysis and ODEs +1701.01484 Disordered Systems and Neural Networks +1701.01486 Computer Vision and Pattern Recognition +1701.01487 Artificial Intelligence +1701.01488 Soft Condensed Matter +1701.01490 Astrophysics of Galaxies +1701.01491 Information Theory +1701.01492 Numerical Analysis +1701.01494 Analysis of PDEs +1701.01495 Neural and Evolutionary Computing +1701.01496 Numerical Analysis +1701.01497 Artificial Intelligence +1701.01498 Accelerator Physics +1701.01499 Statistical Mechanics +1701.01501 High Energy Astrophysical Phenomena +1701.01502 Analysis of PDEs +1701.01503 Methodology +1701.01505 Computation and Language +1701.01507 Theory +1701.01509 Mesoscale and Nanoscale Physics +1701.01510 Differential Geometry +1701.01513 Chemical Physics +1701.01514 Analysis of PDEs +1701.01515 Computational Finance +1701.01516 Number Theory +1701.01517 Optics +1701.01518 Mesoscale and Nanoscale Physics +1701.01519 Mesoscale and Nanoscale Physics +1701.01520 Mesoscale and Nanoscale Physics +1701.01521 Mesoscale and Nanoscale Physics +1701.01522 Instrumentation and Detectors +1701.01523 Physics Education +1701.01524 +1701.01525 Networking and Internet Architecture +1701.01528 Algebraic Topology +1701.01532 Information Theory +1701.01533 Computer Science and Game Theory +1701.01535 Software Engineering +1701.01536 Lattice +1701.01537 +1701.01538 Representation Theory +1701.01540 Data Structures and Algorithms +1701.01542 Algebraic Geometry +1701.01544 Networking and Internet Architecture +1701.01546 Computer Vision and Pattern Recognition +1701.01547 Robotics +1701.01548 +1701.01549 Optimization and Control +1701.01550 Information Theory +1701.01552 Strongly Correlated Electrons +1701.01553 Mesoscale and Nanoscale Physics +1701.01554 Phenomenology +1701.01555 Solar and Stellar Astrophysics +1701.01559 Quantum Gases +1701.01560 Methodology +1701.01561 Theory +1701.01563 Astrophysics of Galaxies +1701.01564 Combinatorics +1701.01565 Computation and Language +1701.01567 Information Theory +1701.01568 Materials Science +1701.01569 +1701.01570 Materials Science +1701.01571 Theory +1701.01574 Computation and Language +1701.01575 Distributed, Parallel, and Cluster Computing +1701.01577 Rings and Algebras +1701.01579 Statistics Theory +1701.01580 Discrete Mathematics +1701.01581 Theory +1701.01583 Astrophysics of Galaxies +1701.01584 Number Theory +1701.01587 Distributed, Parallel, and Cluster Computing +1701.01592 Fluid Dynamics +1701.01593 Geophysics +1701.01594 Materials Science +1701.01595 Numerical Analysis +1701.01596 Materials Science +1701.01597 Materials Science +1701.01599 Discrete Mathematics +1701.01600 Instrumentation and Detectors +1701.01601 Materials Science +1701.01602 Geophysics +1701.01603 Geometric Topology +1701.01605 Materials Science +1701.01606 Experiment +1701.01608 Numerical Analysis +1701.01609 Materials Science +1701.01610 Operator Algebras +1701.01611 Instrumentation and Methods for Astrophysics +1701.01612 Materials Science +1701.01613 Materials Science +1701.01614 Computation and Language +1701.01615 Geophysics +1701.01616 Materials Science +1701.01618 Strongly Correlated Electrons +1701.01619 Computer Vision and Pattern Recognition +1701.01621 +1701.01623 Computation and Language +1701.01625 Information Theory +1701.01626 Geophysics +1701.01629 +1701.01630 Hardware Architecture +1701.01631 Combinatorics +1701.01632 Computers and Society +1701.01633 Phenomenology +1701.01634 Geophysics +1701.01635 Combinatorics +1701.01636 Computers and Society +1701.01638 Chemical Physics +1701.01639 Social and Information Networks +1701.01641 Statistical Mechanics +1701.01642 Number Theory +1701.01644 Human-Computer Interaction +1701.01645 Computers and Society +1701.01646 Mesoscale and Nanoscale Physics +1701.01647 Fluid Dynamics +1701.01648 Distributed, Parallel, and Cluster Computing +1701.01649 Combinatorics +1701.01651 Differential Geometry +1701.01653 Complex Variables +1701.01655 Medical Physics +1701.01656 Probability +1701.01658 Information Theory +1701.01659 Optics +1701.01660 Mesoscale and Nanoscale Physics +1701.01661 Earth and Planetary Astrophysics +1701.01662 +1701.01664 Cryptography and Security +1701.01665 Data Analysis, Statistics and Probability +1701.01666 History and Overview +1701.01667 Probability +1701.01668 Applications +1701.01669 Physics and Society +1701.01670 Instrumentation and Methods for Astrophysics +1701.01671 Numerical Analysis +1701.01673 Software Engineering +1701.01674 Differential Geometry +1701.01675 Software Engineering +1701.01676 Networking and Internet Architecture +1701.01677 Computer Science and Game Theory +1701.01680 Differential Geometry +1701.01682 Solar and Stellar Astrophysics +1701.01685 Mesoscale and Nanoscale Physics +1701.01686 Mesoscale and Nanoscale Physics +1701.01687 Computer Vision and Pattern Recognition +1701.01688 Probability +1701.01689 +1701.01690 Plasma Physics +1701.01691 Mesoscale and Nanoscale Physics +1701.01692 Computer Vision and Pattern Recognition +1701.01693 Biological Physics +1701.01694 +1701.01696 Lattice +1701.01699 Analysis of PDEs +1701.01700 Phenomenology +1701.01702 Networking and Internet Architecture +1701.01703 +1701.01704 +1701.01706 Theory +1701.01707 Functional Analysis +1701.01708 Optics +1701.01709 Symplectic Geometry +1701.01710 Optimization and Control +1701.01711 Geometric Topology +1701.01712 Cosmology and Nongalactic Astrophysics +1701.01713 Differential Geometry +1701.01714 Chemical Physics +1701.01715 Optics +1701.01716 Statistical Mechanics +1701.01717 Computational Complexity +1701.01718 +1701.01720 Algebraic Geometry +1701.01722 Learning +1701.01723 +0904.3687 Algebraic Topology +1006.4661 Optimization and Control +1010.5549 General Mathematics +1103.4112 Optimization and Control +1205.3522 Logic +1206.2079 Optimization and Control +1210.4264 Probability +1301.0695 Algebraic Geometry +1301.0710 Complex Variables +1301.0774 +1302.2208 Theory +1305.1469 Strongly Correlated Electrons +1305.6414 Mesoscale and Nanoscale Physics +1306.3291 Phenomenology +1306.6562 Logic +1309.4305 Numerical Analysis +1310.8338 Dynamical Systems +1311.7477 Computational Physics +1312.7816 Metric Geometry +1312.7851 Other Statistics +1401.1261 Algebraic Geometry +1401.4477 Numerical Analysis +1401.4809 Computational Physics +1402.1694 Methodology +1403.6361 +1404.1718 Artificial Intelligence +1404.2838 Classical Physics +1405.1191 Strongly Correlated Electrons +1406.0737 General Physics +1406.1933 Numerical Analysis +1406.5033 +1406.5980 Logic +1407.3189 Numerical Analysis +1407.5631 +1407.6985 Strongly Correlated Electrons +1407.8154 Computational Physics +1408.0060 Differential Geometry +1408.3469 Information Theory +1411.0465 Numerical Analysis +1411.5668 Numerical Analysis +1412.4495 Symplectic Geometry +1501.01809 Mathematical Software +1501.05508 Computational Physics +1502.05889 +1503.02368 Databases +1503.08650 Methodology +1504.05472 Differential Geometry +1504.06135 Logic in Computer Science +1504.07443 Artificial Intelligence +1504.07469 Computer Vision and Pattern Recognition +1505.01265 Combinatorics +1505.06070 Optimization and Control +1505.06274 +1505.08146 Symplectic Geometry +1506.00017 Optimization and Control +1506.02264 Learning +1506.08541 Probability +1507.04544 Computation +1508.01573 Symplectic Geometry +1508.04259 Mesoscale and Nanoscale Physics +1508.07594 Metric Geometry +1509.05001 Optimization and Control +1509.08366 Phenomenology +1509.08612 +1510.04813 Methodology +1510.07462 Computational Complexity +1511.01387 Theory +1511.02523 Functional Analysis +1511.02857 Astrophysics of Galaxies +1511.08346 +1512.02818 Numerical Analysis +1512.03174 Dynamical Systems +1512.03626 Cosmology and Nongalactic Astrophysics +1512.07108 Computer Vision and Pattern Recognition +1601.02288 Numerical Analysis +1601.02977 Symplectic Geometry +1601.03623 Distributed, Parallel, and Cluster Computing +1601.04287 +1602.00764 +1602.03985 Computational Complexity +1602.04457 Analysis of PDEs +1602.07702 Astrophysics of Galaxies +1602.08415 Materials Science +1602.09062 Numerical Analysis +1603.00494 Functional Analysis +1603.03339 Dynamical Systems +1603.03685 Data Analysis, Statistics and Probability +1603.04077 Fluid Dynamics +1603.05548 Analysis of PDEs +1603.06760 Probability +1603.07008 Mathematical Software +1603.07119 Phenomenology +1604.00501 +1604.01334 Classical Analysis and ODEs +1604.02316 Computer Vision and Pattern Recognition +1604.02614 Numerical Analysis +1604.02703 Computer Vision and Pattern Recognition +1604.03786 General Physics +1604.04057 Probability +1604.04313 +1604.06671 Rings and Algebras +1604.08388 Analysis of PDEs +1605.00197 Optimization and Control +1605.00231 +1605.01241 Mesoscale and Nanoscale Physics +1605.01620 +1605.01862 Trading and Market Microstructure +1605.01876 +1605.02488 +1605.03639 Computer Vision and Pattern Recognition +1605.03934 Category Theory +1605.08503 Numerical Analysis +1606.01815 Experiment +1606.02685 +1606.03221 Algebraic Geometry +1606.03983 Instrumentation and Detectors +1606.05545 Computation and Language +1606.06418 Information Theory +1606.06559 Populations and Evolution +1606.07346 +1606.08420 Number Theory +1606.08776 +1606.09090 High Energy Astrophysical Phenomena +1606.09307 Theory +1607.00243 Probability +1607.01693 +1607.02212 Astrophysics of Galaxies +1607.02362 +1607.04247 Numerical Analysis +1607.04315 Learning +1607.04990 Logic +1607.05355 History and Overview +1607.05565 Representation Theory +1607.05764 Experiment +1607.06292 Phenomenology +1607.08300 Soft Condensed Matter +1608.00830 Metric Geometry +1608.02329 Materials Science +1608.03526 Theory +1608.03957 Number Theory +1608.04341 Applications +1608.06629 Optics +1608.06929 Analysis of PDEs +1608.08795 Quantum Gases +1609.01229 Statistical Mechanics +1609.01290 Phenomenology +1609.01607 Data Analysis, Statistics and Probability +1609.02429 +1609.02925 Strongly Correlated Electrons +1609.03151 Superconductivity +1609.05011 +1609.05565 Dynamical Systems +1609.05648 +1609.06339 Methodology +1609.06364 Classical Analysis and ODEs +1609.06538 High Energy Astrophysical Phenomena +1609.06874 Methodology +1609.07430 Phenomenology +1609.07633 +1609.08243 Materials Science +1609.08382 Experiment +1609.08884 Phenomenology +1610.01073 Lattice +1610.02559 Number Theory +1610.02746 Computational Physics +1610.02988 Experiment +1610.04665 +1610.04811 Machine Learning +1610.05653 Sound +1610.05668 Plasma Physics +1610.05931 Solar and Stellar Astrophysics +1610.06092 Physics and Society +1610.06288 Mesoscale and Nanoscale Physics +1610.06567 Theory +1610.07035 Mesoscale and Nanoscale Physics +1610.07083 Materials Science +1610.07531 Information Theory +1610.07615 Mesoscale and Nanoscale Physics +1611.00380 Theory +1611.01938 Combinatorics +1611.02158 Optics +1611.02975 Statistical Mechanics +1611.04164 Optimization and Control +1611.04930 Phenomenology +1611.05000 Phenomenology +1611.05119 Geometric Topology +1611.05650 +1611.06295 Materials Science +1611.06929 Logic +1611.07131 Experiment +1611.07373 Representation Theory +1611.07488 Theory +1611.07672 Astrophysics of Galaxies +1611.08399 Materials Science +1612.01783 Combinatorics +1612.02087 Optics +1612.02109 Robotics +1612.02900 Networking and Internet Architecture +1612.02923 Strongly Correlated Electrons +1612.03402 Neural and Evolutionary Computing +1612.03932 Networking and Internet Architecture +1612.04084 +1612.04316 Emerging Technologies +1612.04361 Theory +1612.04586 Algebraic Geometry +1612.04649 +1612.06500 Differential Geometry +1612.06637 Theory +1612.07110 Classical Analysis and ODEs +1612.07652 Combinatorics +1612.07989 Mesoscale and Nanoscale Physics +1612.08012 Computer Vision and Pattern Recognition +1612.08184 +1612.08194 Applications +1612.08296 Instrumentation and Detectors +1612.08822 Phenomenology +1612.09376 Strongly Correlated Electrons +1612.09501 Phenomenology +1612.09512 +1612.09533 Theory +1701.00137 Mesoscale and Nanoscale Physics +1701.00257 Chemical Physics +1701.00494 Phenomenology +1701.00554 Optimization and Control +1701.00652 Machine Learning +1701.01064 Machine Learning +1701.01113 Earth and Planetary Astrophysics +1701.01114 Astrophysics of Galaxies +1701.01120 Instrumentation and Methods for Astrophysics +1701.01121 Astrophysics of Galaxies +1701.01123 Theory +1701.01125 Statistical Mechanics +1701.01126 Computation and Language +1701.01127 Strongly Correlated Electrons +1701.01128 Materials Science +1701.01132 Networking and Internet Architecture +1701.01133 Mesoscale and Nanoscale Physics +1701.01134 Commutative Algebra +1701.01135 Solar and Stellar Astrophysics +1701.01136 Phenomenology +1701.01137 +1701.01139 +1701.01142 Computer Vision and Pattern Recognition +1701.01145 Plasma Physics +1701.01148 Phenomenology +1701.01149 Representation Theory +1701.01150 Neurons and Cognition +1701.01151 High Energy Astrophysical Phenomena +1701.01152 Probability +1701.01154 Information Theory +1701.01155 Fluid Dynamics +1701.01156 Information Theory +1701.01157 +1701.01158 Probability +1701.01161 Information Theory +1701.01162 +1701.01163 Geometric Topology +1701.01164 Information Theory +1701.01165 Optimization and Control +1701.01166 +1701.01167 Information Theory +1701.01169 Dynamical Systems +1701.01170 Distributed, Parallel, and Cluster Computing +1701.01172 Astrophysics of Galaxies +1701.01173 Dynamical Systems +1701.01174 Representation Theory +1701.01178 Number Theory +1701.01180 Group Theory +1701.01181 General Topology +1701.01183 Differential Geometry +1701.01184 High Energy Astrophysical Phenomena +1701.01185 Statistical Finance +1701.01186 +1701.01188 Mesoscale and Nanoscale Physics +1701.01189 Distributed, Parallel, and Cluster Computing +1701.01190 Formal Languages and Automata Theory +1701.01191 Phenomenology +1701.01192 Materials Science +1701.01193 Materials Science +1701.01194 Probability +1701.01195 Information Theory +1701.01196 Dynamical Systems +1701.01197 Experiment +1701.01198 +1701.01199 Statistics Theory +1701.01201 Probability +1701.01202 Representation Theory +1701.01204 Probability +1701.01205 Physics Education +1701.01206 Applications +1701.01207 Optimization and Control +1701.01208 Combinatorics +1701.01211 Information Theory +1701.01212 Information Theory +1701.01213 Optimization and Control +1701.01214 Systems and Control +1701.01215 Analysis of PDEs +1701.01216 Computer Science and Game Theory +1701.01217 Dynamical Systems +1701.01218 Learning +1701.01219 Neurons and Cognition +1701.01222 Instrumentation and Methods for Astrophysics +1701.01223 Systems and Control +1701.01225 Biological Physics +1701.01226 Atomic Physics +1701.01227 Logic +1701.01230 Number Theory +1701.01231 Machine Learning +1701.01232 Databases +1701.01233 Numerical Analysis +1701.01235 Complex Variables +1701.01236 Cellular Automata and Lattice Gases +1701.01238 Probability +1701.01239 +1701.01240 +1701.01241 Disordered Systems and Neural Networks +1701.01242 Analysis of PDEs +1701.01243 Strongly Correlated Electrons +1701.01244 Probability +1701.01245 +1701.01246 Probability +1701.01247 Information Theory +1701.01248 Probability +1701.01250 Information Retrieval +1701.01253 +1701.01254 Differential Geometry +1701.01255 Statistical Finance +1701.01256 Solar and Stellar Astrophysics +1701.01257 Solar and Stellar Astrophysics +1701.01258 Solar and Stellar Astrophysics +1701.01259 Mesoscale and Nanoscale Physics +1701.01260 Representation Theory +1701.01261 Quantum Algebra +1701.01262 Experiment +1701.01264 Probability +1701.01265 Numerical Analysis +1701.01267 Phenomenology +1701.01268 Soft Condensed Matter +1701.01271 Neural and Evolutionary Computing +1701.01273 Differential Geometry +1701.01275 Experiment +1701.01276 Information Retrieval +1701.01278 +1701.01279 Mesoscale and Nanoscale Physics +1701.01281 Cellular Automata and Lattice Gases +1701.01282 Rings and Algebras +1701.01283 Analysis of PDEs +1701.01285 Logic in Computer Science +1701.01286 Applications +1701.01287 Algebraic Topology +1701.01288 Dynamical Systems +1701.01289 Multiagent Systems +1701.01291 +1701.01293 Machine Learning +1701.01295 Information Theory +1701.01297 Biomolecules +1701.01298 Lattice +1701.01299 Geophysics +1701.01300 Phenomenology +1701.01301 Logic +1701.01303 Earth and Planetary Astrophysics +1701.01305 Materials Science +1701.01306 Differential Geometry +1701.01307 General Topology +1701.01310 Soft Condensed Matter +1701.01312 Probability +1701.01313 Group Theory +1701.01314 Commutative Algebra +1701.01315 Applications +1701.01316 Optimization and Control +1701.01317 +1701.01321 Networking and Internet Architecture +1701.01322 Networking and Internet Architecture +1701.01323 Combinatorics +1701.01324 Algebraic Geometry +1701.01325 Information Retrieval +1701.01326 Information Theory +1701.01328 Performance +1701.01329 Neural and Evolutionary Computing +1701.01330 Number Theory +1701.01331 Algebraic Geometry +1701.01334 Analysis of PDEs +1701.01336 General Physics +1701.01337 Data Structures and Algorithms +1701.01338 Operator Algebras +1701.01342 Experiment +1701.01343 Logic +1701.01344 History and Overview +1701.01345 Experiment +1701.01346 Superconductivity +1701.01348 Group Theory +1701.01349 Probability +1701.01350 Astrophysics of Galaxies +1701.01351 Geophysics +1701.01352 Applications +1701.01353 Geophysics +1701.01354 Instrumentation and Methods for Astrophysics +1701.01355 Populations and Evolution +1701.01356 Methodology +1701.01359 Numerical Analysis +1701.01360 Geophysics +1701.01361 Tissues and Organs +1701.01362 Combinatorics +1701.01364 High Energy Astrophysical Phenomena +1701.01365 Complex Variables +1701.01366 Mesoscale and Nanoscale Physics +1701.01370 Computer Vision and Pattern Recognition +1701.01372 Mesoscale and Nanoscale Physics +1701.01373 Earth and Planetary Astrophysics +1701.01374 Algebraic Topology +1701.01375 Materials Science +1701.01376 Geophysics +1701.01377 Mesoscale and Nanoscale Physics +1701.01378 +1701.01379 Combinatorics +1701.01380 Soft Condensed Matter +1701.01381 Statistical Mechanics +1701.01382 Instrumentation and Detectors +1701.01384 Astrophysics of Galaxies +1701.01386 Geometric Topology +1701.01388 Combinatorics +1701.01389 Theory +1701.01390 Algebraic Geometry +1701.01391 Systems and Control +1701.01392 Networking and Internet Architecture +1701.01395 Statistics Theory +1701.01396 Representation Theory +1701.01397 Materials Science +1701.01399 Mesoscale and Nanoscale Physics +1701.01401 Mesoscale and Nanoscale Physics +1701.01402 Phenomenology +1701.01407 Analysis of PDEs +1701.01409 Physics Education +1701.01410 Materials Science +1701.01411 Physics Education +1701.01412 Physics Education +1701.01414 Physics Education +1701.01416 Combinatorics +1701.01417 Information Retrieval +1701.01418 High Energy Astrophysical Phenomena +1701.01419 Data Structures and Algorithms +1701.01420 Symplectic Geometry +1701.01425 Algebraic Geometry +1701.01426 +1701.01427 General Finance +1701.01428 General Finance +1701.01429 Computational Finance +alg-geom/9402011 Algebraic Geometry +0711.4339 Materials Science +1106.4065 Geometric Topology +1204.3132 Statistics Theory +1204.5220 Analysis of PDEs +1210.0870 Methodology +1301.1574 Number Theory +1301.2730 Commutative Algebra +1307.5031 Theory +1310.0004 Optimization and Control +1310.8476 Materials Science +1312.3494 Algebraic Geometry +1408.3011 +1409.2799 Quantum Algebra +1410.1213 Spectral Theory +1410.4093 Methodology +1410.6333 Computer Vision and Pattern Recognition +1410.7083 Functional Analysis +1411.6951 Differential Geometry +1412.3428 Geometric Topology +1501.00960 Physics and Society +1501.01539 Other Computer Science +1501.04978 General Physics +1503.03512 Computation and Language +1504.06884 Information Theory +1505.03169 Probability +1506.00050 Quantum Algebra +1506.02196 Statistics Theory +1506.06884 Geometric Topology +1506.07060 Mesoscale and Nanoscale Physics +1506.07280 Mesoscale and Nanoscale Physics +1507.00290 Optimization and Control +1507.05259 Machine Learning +1507.06350 Machine Learning +1507.08349 Information Theory +1507.08714 Analysis of PDEs +1508.00914 Information Theory +1508.03431 Computer Science and Game Theory +1508.04784 +1509.02603 +1509.04804 Probability +1510.05804 Statistical Mechanics +1510.05847 Metric Geometry +1510.06618 Methodology +1511.00796 Systems and Control +1511.01758 Probability +1511.04453 Quantitative Methods +1511.06786 Analysis of PDEs +1512.00352 Superconductivity +1512.01702 Dynamical Systems +1512.03137 +1512.04476 Social and Information Networks +1601.02068 Machine Learning +1601.02902 Computational Physics +1601.04400 Differential Geometry +1601.05156 Methodology +1601.05799 +1601.06796 +1602.00546 Computational Complexity +1602.02736 Computation +1602.03931 Probability +1602.05393 Logic +1602.05450 Machine Learning +1602.06283 Data Structures and Algorithms +1602.07389 Neurons and Cognition +1602.08266 Differential Geometry +1602.09127 Discrete Mathematics +1603.05538 Statistical Mechanics +1603.07787 Probability +1604.02049 Classical Analysis and ODEs +1604.03229 Theory +1604.03800 Optimization and Control +1604.04722 Social and Information Networks +1604.05133 +1604.06724 Phenomenology +1604.08089 +1605.01095 Methodology +1605.01875 Analysis of PDEs +1605.02838 Quantum Algebra +1605.02994 Probability +1605.03520 +1605.08197 Social and Information Networks +1605.08548 Human-Computer Interaction +1605.08830 Classical Analysis and ODEs +1606.00464 Computation +1606.00572 Optics +1606.00578 +1606.03769 Phenomenology +1606.04505 Lattice +1606.04614 Algebraic Geometry +1606.05254 Genomics +1606.05860 Theory +1606.06013 Strongly Correlated Electrons +1606.06490 Information Theory +1606.06591 Data Analysis, Statistics and Probability +1606.07572 Databases +1606.07745 High Energy Astrophysical Phenomena +1606.07790 Cosmology and Nongalactic Astrophysics +1607.00018 Theory +1607.00705 Phenomenology +1607.02040 Phenomenology +1607.02488 Learning +1607.02701 Number Theory +1607.03540 +1607.04283 Astrophysics of Galaxies +1607.04327 Statistics Theory +1607.04916 +1607.05138 Analysis of PDEs +1607.06135 Functional Analysis +1608.00046 Logic +1608.00530 Learning +1608.00539 Biological Physics +1608.00585 Astrophysics of Galaxies +1608.01571 +1608.01982 +1608.02241 Statistics Theory +1608.03681 Mesoscale and Nanoscale Physics +1608.04782 Materials Science +1608.05395 Numerical Analysis +1608.05873 +1608.06520 Discrete Mathematics +1608.08812 Plasma Physics +1608.08850 Analysis of PDEs +1609.00637 Mesoscale and Nanoscale Physics +1609.01474 Phenomenology +1609.01536 +1609.01875 Optics +1609.02359 Adaptation and Self-Organizing Systems +1609.03279 Computer Vision and Pattern Recognition +1609.03550 Analysis of PDEs +1609.03652 Dynamical Systems +1609.04368 Probability +1609.04485 +1609.04651 Phenomenology +1609.05582 Information Theory +1609.07347 Mesoscale and Nanoscale Physics +1609.07797 Algebraic Geometry +1609.08100 Number Theory +1609.08371 Social and Information Networks +1609.08425 +1609.09010 Optimization and Control +1609.09388 Phenomenology +1610.00847 Complex Variables +1610.02136 Neural and Evolutionary Computing +1610.03267 Algebraic Topology +1610.04978 Solar and Stellar Astrophysics +1610.05639 Lattice +1610.05934 Theory +1610.07097 Representation Theory +1610.08072 Lattice +1610.08315 Lattice +1610.09017 Lattice +1611.01388 Experiment +1611.01885 Cosmology and Nongalactic Astrophysics +1611.01899 Cosmology and Nongalactic Astrophysics +1611.02389 +1611.02720 Quantum Gases +1611.02739 Learning +1611.02804 Theory +1611.03287 Strongly Correlated Electrons +1611.03390 Earth and Planetary Astrophysics +1611.03460 +1611.03708 Statistical Mechanics +1611.04332 Phenomenology +1611.04646 Phenomenology +1611.04791 Lattice +1611.05056 +1611.05470 Mesoscale and Nanoscale Physics +1611.05501 Astrophysics of Galaxies +1611.06411 Number Theory +1611.06428 Number Theory +1611.06580 Fluid Dynamics +1611.07051 Machine Learning +1611.07355 Quantum Gases +1611.07527 Cosmology and Nongalactic Astrophysics +1611.07766 Quantum Gases +1611.08067 Information Theory +1611.08265 Instrumentation and Detectors +1611.08299 Statistics Theory +1611.08975 Phenomenology +1611.09334 Strongly Correlated Electrons +1611.09985 Number Theory +1612.00140 Theory +1612.00473 +1612.00605 Quantum Gases +1612.00674 +1612.01151 Theory +1612.01156 Materials Science +1612.01907 Computation +1612.02720 Optics +1612.03099 +1612.04873 Quantitative Methods +1612.05797 Cosmology and Nongalactic Astrophysics +1612.05999 +1612.06112 Information Theory +1612.06183 Phenomenology +1612.06206 +1612.06217 Theory +1612.06564 Earth and Planetary Astrophysics +1612.06957 Theory +1612.07032 Geophysics +1612.07056 Geophysics +1612.07323 Theory +1612.07327 Statistical Mechanics +1612.07485 Quantum Gases +1612.07885 Astrophysics of Galaxies +1612.07982 Number Theory +1612.08006 Other Condensed Matter +1612.08063 Mesoscale and Nanoscale Physics +1612.09063 Mesoscale and Nanoscale Physics +1612.09074 Phenomenology +1701.00003 Astrophysics of Galaxies +1701.00678 Phenomenology +1701.01393 Commutative Algebra +1701.01652 Theory +1701.02029 +1701.02969 Computation +1701.03145 Differential Geometry +1701.03242 Mesoscale and Nanoscale Physics +1701.03483 Differential Geometry +1701.03740 Differential Geometry +1701.04888 Combinatorics +1701.05116 Experiment +1701.05391 Cosmology and Nongalactic Astrophysics +1701.05767 +1701.05825 Phenomenology +1701.05885 +1701.06312 Materials Science +1701.07026 Cosmology and Nongalactic Astrophysics +1701.07567 +1701.08123 +1701.08161 Earth and Planetary Astrophysics +1701.08363 Methodology +1701.08520 Quantum Gases +1701.09142 Probability +1701.09163 Number Theory +1702.00001 Learning +1702.00060 High Energy Astrophysical Phenomena +1702.01240 Instrumentation and Detectors +1702.01577 Soft Condensed Matter +1702.02826 Statistics Theory +1702.02961 High Energy Astrophysical Phenomena +1702.03226 Multiagent Systems +1702.04150 Atomic Physics +1702.04223 Atomic Physics +1702.04279 Phenomenology +1702.04790 Classical Analysis and ODEs +1702.05037 Machine Learning +1702.05388 Computer Vision and Pattern Recognition +1702.05840 Theory +1702.05917 Numerical Analysis +1702.05995 Analysis of PDEs +1702.06130 Theory +1702.06187 Populations and Evolution +1702.06283 +1702.06378 Computation and Language +1702.06560 Solar and Stellar Astrophysics +1702.07338 Solar and Stellar Astrophysics +1702.07376 Earth and Planetary Astrophysics +1702.07688 +1702.07742 +1702.07755 Atomic Physics +1702.08134 Learning +1702.08158 Theory +1702.08273 Theory +1702.08491 Mesoscale and Nanoscale Physics +1703.00051 Mesoscale and Nanoscale Physics +1703.00179 Optics +1703.00299 Probability +1703.00627 High Energy Astrophysical Phenomena +1703.00667 Data Structures and Algorithms +1703.00858 Fluid Dynamics +1703.01000 Solar and Stellar Astrophysics +1703.01394 Astrophysics of Galaxies +1703.01905 Data Structures and Algorithms +1703.02170 Superconductivity +1703.02178 Materials Science +1703.02471 Phenomenology +1703.02649 Astrophysics of Galaxies +1703.02667 Genomics +1703.02934 +1703.03228 Strongly Correlated Electrons +1703.03980 Materials Science +1703.04719 Atmospheric and Oceanic Physics +1703.04876 Differential Geometry +1703.04949 Probability +1703.05038 Numerical Analysis +1703.05271 Information Theory +1703.05758 +1703.06044 Functional Analysis +1703.06215 +1703.06520 Computer Vision and Pattern Recognition +1703.06615 +1703.06866 Number Theory +1703.06993 Computer Vision and Pattern Recognition +1703.07022 Computer Vision and Pattern Recognition +1703.07306 Systems and Control +1703.07378 Geophysics +1703.07390 Solar and Stellar Astrophysics +1703.07478 Computer Vision and Pattern Recognition +1703.07559 Instrumentation and Detectors +1703.07582 Plasma Physics +1703.07618 Combinatorics +1703.07657 Computational Complexity +1703.07707 Probability +1703.07726 Artificial Intelligence +1703.07779 Phenomenology +1703.07787 +1703.07837 +1703.07839 Systems and Control +1703.07840 +1703.07873 Optics +1703.07876 Networking and Internet Architecture +1703.07969 Lattice +1703.08008 +1703.08013 Computer Vision and Pattern Recognition +1703.08014 Computer Vision and Pattern Recognition +1703.08087 High Energy Astrophysical Phenomena +1703.08125 Phenomenology +1703.08131 Learning +1703.08132 Computer Vision and Pattern Recognition +1703.08173 Computer Vision and Pattern Recognition +1703.08174 Quantum Gases +1703.08175 High Energy Astrophysical Phenomena +1703.08176 History and Philosophy of Physics +1703.08177 +1703.08178 Space Physics +1703.08179 +1703.08180 High Energy Astrophysical Phenomena +1703.08181 Astrophysics of Galaxies +1703.08182 Theory +1703.08183 Astrophysics of Galaxies +1703.08184 Superconductivity +1703.08185 Mesoscale and Nanoscale Physics +1703.08186 Theory +1703.08187 Strongly Correlated Electrons +1703.08188 Soft Condensed Matter +1703.08189 +1703.08190 Information Theory +1703.08191 Mesoscale and Nanoscale Physics +1703.08193 Materials Science +1703.08194 Number Theory +1703.08195 Differential Geometry +1703.08196 Strongly Correlated Electrons +1703.08197 +1703.08198 Databases +1703.08199 Quantitative Methods +1703.08200 Strongly Correlated Electrons +1703.08201 Theory +1703.08202 Methodology +1703.08203 Algebraic Geometry +1703.08204 High Energy Astrophysical Phenomena +1703.08205 Instrumentation and Methods for Astrophysics +1703.08206 Networking and Internet Architecture +1703.08207 +1703.08208 Information Theory +1703.08209 +1703.08210 Soft Condensed Matter +1703.08211 Emerging Technologies +1703.08212 Distributed, Parallel, and Cluster Computing +1703.08213 Soft Condensed Matter +1703.08214 Theory +1703.08215 Phenomenology +1703.08216 Analysis of PDEs +1703.08217 Systems and Control +1703.08218 Cosmology and Nongalactic Astrophysics +1703.08219 Databases +1703.08220 Lattice +1703.08221 Cosmology and Nongalactic Astrophysics +1703.08222 High Energy Astrophysical Phenomena +1703.08223 High Energy Astrophysical Phenomena +1703.08224 Mesoscale and Nanoscale Physics +1703.08225 Fluid Dynamics +1703.08226 +1703.08228 Distributed, Parallel, and Cluster Computing +1703.08229 Chemical Physics +1703.08230 Optics +1703.08231 Optics +1703.08233 +1703.08234 Analysis of PDEs +1703.08235 Combinatorics +1703.08236 +1703.08237 Theory +1703.08238 Computer Vision and Pattern Recognition +1703.08240 Optimization and Control +1703.08241 Algebraic Geometry +1703.08242 Software Engineering +1703.08244 Computation and Language +1703.08245 Learning +1703.08246 Information Theory +1703.08247 Logic in Computer Science +1703.08248 Mesoscale and Nanoscale Physics +1703.08249 Plasma Physics +1703.08250 Materials Science +1703.08251 Machine Learning +1703.08252 Social and Information Networks +1703.08253 Functional Analysis +1703.08254 Systems and Control +1703.08256 Analysis of PDEs +1703.08257 Probability +1703.08258 Phenomenology +1703.08259 Fluid Dynamics +1703.08260 Quantitative Methods +1703.08261 Geometric Topology +1703.08262 Systems and Control +1703.08263 Materials Science +1703.08264 +1703.08265 Algebraic Geometry +1703.08266 Logic +1703.08267 Optimization and Control +1703.08268 Astrophysics of Galaxies +1703.08269 Cryptography and Security +1703.08270 Commutative Algebra +1703.08271 Information Theory +1703.08272 +1703.08273 Data Structures and Algorithms +1703.08274 Computer Vision and Pattern Recognition +1703.08276 Optics +1703.08277 High Energy Astrophysical Phenomena +1703.08278 High Energy Astrophysical Phenomena +1703.08279 Differential Geometry +1703.08280 Distributed, Parallel, and Cluster Computing +1703.08281 Commutative Algebra +1703.08282 Statistical Finance +1703.08283 Learning +1703.08284 Information Theory +1703.08286 Computer Science and Game Theory +1703.08288 Human-Computer Interaction +1703.08289 Computer Vision and Pattern Recognition +1703.08290 Soft Condensed Matter +1703.08291 Combinatorics +1703.08292 Commutative Algebra +1703.08293 Cosmology and Nongalactic Astrophysics +1703.08294 Learning +1703.08295 Astrophysics of Galaxies +1703.08296 Chaotic Dynamics +1703.08297 Optics +1703.08299 Phenomenology +1703.08300 Chaotic Dynamics +1703.08301 Cosmology and Nongalactic Astrophysics +1703.08302 Differential Geometry +1703.08303 Mesoscale and Nanoscale Physics +1703.08304 Group Theory +1703.08306 Cryptography and Security +1703.08307 Optimization and Control +1703.08308 Algebraic Geometry +1703.08309 Theory +1703.08310 Astrophysics of Galaxies +1703.08311 Systems and Control +1703.08312 Algebraic Geometry +1703.08313 Biological Physics +1703.08314 Logic in Computer Science +1703.08315 Number Theory +1703.08316 Combinatorics +1703.08317 Mesoscale and Nanoscale Physics +1703.08319 Materials Science +1703.08320 +1703.08321 Materials Science +1703.08322 Phenomenology +1703.08323 Quantum Algebra +1703.08324 Physics and Society +1703.08325 Discrete Mathematics +1703.08326 Astrophysics of Galaxies +1703.08327 Functional Analysis +1703.08328 Superconductivity +1703.08329 Phenomenology +1703.08330 Phenomenology +1703.08331 Analysis of PDEs +1703.08333 Phenomenology +1703.08334 Algebraic Geometry +1703.08335 Analysis of PDEs +1703.08336 Logic in Computer Science +1703.08337 Distributed, Parallel, and Cluster Computing +1703.08338 Computer Vision and Pattern Recognition +1703.08340 Physics and Society +1703.08342 Systems and Control +1703.08343 Strongly Correlated Electrons +1703.08344 Number Theory +1703.08345 Numerical Analysis +1703.08346 +1703.08347 +1703.08348 Networking and Internet Architecture +1703.08349 Rings and Algebras +1703.08350 Soft Condensed Matter +1703.08351 Quantum Gases +1703.08352 Analysis of PDEs +1703.08353 Networking and Internet Architecture +1703.08354 Plasma Physics +1703.08355 Analysis of PDEs +1703.08356 Systems and Control +1703.08357 Solar and Stellar Astrophysics +1703.08358 Statistics Theory +1703.08359 Computer Vision and Pattern Recognition +1703.08360 Software Engineering +1703.08361 Solar and Stellar Astrophysics +1703.08362 Information Theory +1703.08363 Group Theory +1703.08364 Quantum Gases +1703.08365 Social and Information Networks +1703.08366 Computer Vision and Pattern Recognition +1703.08367 Soft Condensed Matter +1703.08368 +1703.08369 High Energy Astrophysical Phenomena +1703.08370 Distributed, Parallel, and Cluster Computing +1703.08371 +1703.08373 Probability +1703.08374 High Energy Astrophysical Phenomena +1703.08375 Phenomenology +1703.08376 Distributed, Parallel, and Cluster Computing +1703.08377 Representation Theory +1703.08378 Computer Vision and Pattern Recognition +1703.08379 Superconductivity +1703.08382 +1703.08383 Artificial Intelligence +1703.08384 Functional Analysis +1703.08385 Dynamical Systems +1703.08386 Analysis of PDEs +1703.08387 Complex Variables +1703.08388 Computer Vision and Pattern Recognition +1703.08389 Analysis of PDEs +1703.08390 Information Theory +1703.08391 Strongly Correlated Electrons +1703.08392 Spectral Theory +1703.08393 Probability +1703.08394 Optimization and Control +1703.08395 Probability +1703.08396 Mesoscale and Nanoscale Physics +1703.08397 Artificial Intelligence +1703.08399 Mesoscale and Nanoscale Physics +1703.08400 Mesoscale and Nanoscale Physics +1703.08401 Systems and Control +1703.08402 Phenomenology +1703.08403 Learning +1703.08404 Analysis of PDEs +1703.08405 Mesoscale and Nanoscale Physics +1703.08406 Probability +1703.08407 General Topology +1703.08408 Systems and Control +1703.08409 Combinatorics +1703.08410 Cosmology and Nongalactic Astrophysics +1703.08412 Analysis of PDEs +1703.08413 Probability +1703.08414 Combinatorics +1703.08415 Quantitative Methods +1703.08416 Optics +1703.08417 Analysis of PDEs +1703.08418 +1703.08419 Algebraic Geometry +1703.08420 Mesoscale and Nanoscale Physics +1703.08421 Strongly Correlated Electrons +1703.08422 Superconductivity +1703.08423 Complex Variables +1703.08424 Strongly Correlated Electrons +1703.08425 Databases +1703.08426 Earth and Planetary Astrophysics +1703.08427 Number Theory +1703.08428 Human-Computer Interaction +1703.08429 Applications +1703.08430 General Physics +1703.08431 Strongly Correlated Electrons +1703.08432 General Physics +1703.08433 Data Structures and Algorithms +1703.08434 Learning +1703.08436 General Physics +1703.08437 Dynamical Systems +1703.08439 Numerical Analysis +1703.08440 Learning +1703.08441 General Physics +1703.08442 Optimization and Control +1703.08443 +1703.08444 Cosmology and Nongalactic Astrophysics +1703.08445 Differential Geometry +1703.08446 Strongly Correlated Electrons +1703.08449 +1703.08451 Materials Science +1703.08452 +1703.08453 Networking and Internet Architecture +1703.08454 +1703.08455 Cryptography and Security +1703.08457 Phenomenology +1703.08459 Classical Analysis and ODEs +1703.08460 Theory +1703.08461 Algebraic Geometry +1703.08462 +1703.08463 Strongly Correlated Electrons +1703.08464 Experiment +1703.08465 Combinatorics +1703.08466 Numerical Analysis +1703.08467 Theory +1703.08468 Phenomenology +1703.08469 Distributed, Parallel, and Cluster Computing +1703.08470 Phenomenology +1703.08471 Computation and Language +1703.08472 Computer Vision and Pattern Recognition +1703.08473 Number Theory +1703.08475 Learning +1703.08476 High Energy Astrophysical Phenomena +1703.08477 Astrophysics of Galaxies +1703.08478 Materials Science +1703.08480 Systems and Control +1703.08481 Neural and Evolutionary Computing +1703.08482 Materials Science +1703.08483 Mesoscale and Nanoscale Physics +1703.08484 Other Quantitative Biology +1703.08485 Astrophysics of Galaxies +1703.08486 Statistical Mechanics +1703.08487 Methodology +1703.08488 Optics +1703.08489 Methodology +1703.08490 Analysis of PDEs +1703.08491 Geophysics +1703.08492 Computer Vision and Pattern Recognition +1703.08493 Computer Vision and Pattern Recognition +1703.08494 +1703.08495 Differential Geometry +1703.08496 Optics +1703.08497 Computer Vision and Pattern Recognition +1703.08498 Numerical Analysis +1703.08499 Phenomenology +1703.08501 Instrumentation and Detectors +1703.08502 Combinatorics +1703.08503 +1703.08504 Geophysics +1703.08505 Experiment +1703.08506 General Mathematics +1703.08507 General Mathematics +1703.08508 +1703.08509 Computer Science and Game Theory +1703.08510 Medical Physics +1703.08511 Data Structures and Algorithms +1703.08512 Probability +1703.08513 Computation and Language +1703.08514 +1703.08516 Computer Vision and Pattern Recognition +1703.08518 +1703.08519 Space Physics +1703.08520 Computation +1703.08521 Cosmology and Nongalactic Astrophysics +1703.08522 Materials Science +1703.08523 Soft Condensed Matter +1703.08524 Learning +1703.08525 Distributed, Parallel, and Cluster Computing +1703.08526 Differential Geometry +1703.08527 Software Engineering +1703.08528 Differential Geometry +1703.08529 Instrumentation and Detectors +1703.08530 Superconductivity +1703.08531 Probability +1703.08532 Phenomenology +1703.08533 +1703.08534 Optimization and Control +1703.08535 Neural and Evolutionary Computing +1703.08536 Other Condensed Matter +1703.08537 Computation and Language +cond-mat/0511211 Materials Science +1009.0252 Algebraic Geometry +1106.4403 Discrete Mathematics +1111.0070 Probability +1202.1838 Statistics Theory +1204.1884 Combinatorics +1210.1784 Quantum Gases +1302.2077 Algebraic Geometry +1307.2747 +1307.6617 +1309.2004 +1310.1861 Information Theory +1310.7671 Numerical Analysis +1311.7121 Dynamical Systems +1312.1472 Optimization and Control +1312.3822 +1312.4489 Optimization and Control +1403.6787 Number Theory +1404.7707 Algebraic Geometry +1405.2502 +1406.5694 Cryptography and Security +1407.7173 Numerical Analysis +1408.0499 Computational Complexity +1408.1544 Mesoscale and Nanoscale Physics +1408.1840 Number Theory +1408.3257 Geometric Topology +1408.3324 +1409.3665 +1409.4352 +1409.5411 Representation Theory +1410.0703 +1410.7863 Astrophysics of Galaxies +1411.2684 Computational Engineering, Finance, and Science +1411.6310 Number Theory +1412.0831 Probability +1412.4886 Number Theory +1412.5005 Numerical Analysis +1501.04366 +1501.04950 Lattice +1502.04430 +1503.03211 Computers and Society +1503.09067 Metric Geometry +1504.05227 +1506.00419 Number Theory +1506.02331 Combinatorics +1506.03985 +1506.05422 Physics and Society +1506.06305 Physics and Society +1507.03302 Accelerator Physics +1508.01179 Algebraic Geometry +1508.04103 Optics +1509.04309 Computer Vision and Pattern Recognition +1509.05516 +1509.07296 +1509.08050 Number Theory +1510.00832 Information Theory +1510.01152 Probability +1510.02100 Theory +1510.02331 Metric Geometry +1510.02399 Statistics Theory +1510.04761 Optics +1510.04904 Commutative Algebra +1510.06228 Phenomenology +1510.08807 Number Theory +1511.00316 Theory +1511.00388 +1511.02192 +1511.02620 +1511.05132 Geophysics +1511.05572 Astrophysics of Galaxies +1511.06071 Information Theory +1511.07095 +1511.07842 Number Theory +1511.08804 Astrophysics of Galaxies +1511.08979 Phenomenology +1511.09345 +1512.00273 Number Theory +1512.01448 Combinatorics +1512.06476 Theory +1512.06994 Quantum Algebra +1512.08753 Number Theory +1601.00191 Neural and Evolutionary Computing +1601.02477 General Physics +1601.02507 Analysis of PDEs +1601.02577 Combinatorics +1601.04401 +1601.04528 General Physics +1601.05801 High Energy Astrophysical Phenomena +1601.05817 Theory +1601.06146 Numerical Analysis +1601.06904 Populations and Evolution +1602.00024 Quantitative Methods +1602.03518 Dynamical Systems +1602.04324 Category Theory +1602.05407 +1602.05531 Computer Vision and Pattern Recognition +1602.06893 Populations and Evolution +1602.07451 Materials Science +1602.08206 Category Theory +1603.00790 Functional Analysis +1603.00872 +1603.01065 Phenomenology +1603.02181 +1603.04266 Combinatorics +1603.06897 Quantum Gases +1603.07287 +1603.07569 Theory +1603.07950 Instrumentation and Detectors +1603.08808 Number Theory +1603.09287 Number Theory +1603.09498 Astrophysics of Galaxies +1603.09541 Theory +1604.00146 Differential Geometry +1604.03294 Analysis of PDEs +1604.04302 Differential Geometry +1604.07648 Information Theory +1605.00620 Systems and Control +1605.01270 Neurons and Cognition +1605.01407 Theory +1605.04253 Computer Vision and Pattern Recognition +1605.07279 Analysis of PDEs +1605.08587 Plasma Physics +1605.09667 Optimization and Control +1606.00222 Functional Analysis +1606.00598 Algebraic Geometry +1606.00901 Information Theory +1606.01271 High Energy Astrophysical Phenomena +1606.02512 Analysis of PDEs +1606.03157 Strongly Correlated Electrons +1606.03185 Data Structures and Algorithms +1606.04101 High Energy Astrophysical Phenomena +1606.04364 +1606.04581 +1606.04669 Distributed, Parallel, and Cluster Computing +1606.05184 Optimization and Control +1606.05357 Cosmology and Nongalactic Astrophysics +1606.06832 Cosmology and Nongalactic Astrophysics +1606.07360 Networking and Internet Architecture +1606.08232 Neurons and Cognition +1606.09210 Theory +1607.00439 Materials Science +1607.01920 Number Theory +1607.02356 +1607.02389 Quantum Gases +1607.04270 Statistical Mechanics +1607.05131 Superconductivity +1607.05308 Quantum Gases +1607.05840 Cryptography and Security +1607.08318 Neurons and Cognition +1607.08732 +1608.01245 Theory +1608.01474 Statistical Mechanics +1608.01535 Economics +1608.02061 Phenomenology +1608.02132 Cryptography and Security +1608.02434 Strongly Correlated Electrons +1608.02530 Algebraic Geometry +1608.02768 +1608.03748 Computer Vision and Pattern Recognition +1608.04818 +1608.06098 Networking and Internet Architecture +1608.08596 Computer Vision and Pattern Recognition +1609.00317 Information Theory +1609.00753 Theory +1609.01316 Strongly Correlated Electrons +1609.01559 Algebraic Geometry +1609.01981 Atmospheric and Oceanic Physics +1609.03042 Phenomenology +1609.03435 Combinatorics +1609.03814 Statistical Mechanics +1609.05407 Numerical Analysis +1609.06035 Methodology +1609.06311 Mesoscale and Nanoscale Physics +1609.06497 +1609.07130 Algebraic Geometry +1609.07197 Computation and Language +1609.07533 Materials Science +1609.07839 Functional Analysis +1609.09423 Probability +1610.00388 Computation and Language +1610.01612 Phenomenology +1610.03941 Statistical Mechanics +1610.04305 Earth and Planetary Astrophysics +1610.04419 Cosmology and Nongalactic Astrophysics +1610.04679 Superconductivity +1610.04925 +1610.07996 Classical Analysis and ODEs +1610.08283 Differential Geometry +1610.08605 +1610.10062 Spectral Theory +1611.00041 Theory +1611.01279 Instrumentation and Methods for Astrophysics +1611.02059 Materials Science +1611.02708 Astrophysics of Galaxies +1611.03937 Optics +1611.04053 Solar and Stellar Astrophysics +1611.04067 Machine Learning +1611.04717 Artificial Intelligence +1611.05125 Computer Vision and Pattern Recognition +1611.05621 +1611.05774 Computation and Language +1611.06623 +1611.07256 Methodology +1611.07318 General Physics +1611.07345 Methodology +1611.07651 +1611.08078 Astrophysics of Galaxies +1611.09272 Earth and Planetary Astrophysics +1611.09542 Quantitative Methods +1612.00861 +1612.01134 Group Theory +1612.02939 Commutative Algebra +1612.04167 Mesoscale and Nanoscale Physics +1612.05734 Computation and Language +1612.05910 Optimization and Control +1612.06091 Numerical Analysis +1612.06325 Representation Theory +1612.06935 Information Retrieval +1612.07295 Phenomenology +1612.07918 Analysis of PDEs +1612.08115 Theory +1612.08151 Soft Condensed Matter +1612.08156 Soft Condensed Matter +1612.08926 Strongly Correlated Electrons +1612.09244 Physics and Society +1612.09301 Populations and Evolution +1612.09523 Computer Science and Game Theory +1701.00491 Phenomenology +1701.00506 Mesoscale and Nanoscale Physics +1701.00533 Cosmology and Nongalactic Astrophysics +1701.00663 Numerical Analysis +1701.00875 Trading and Market Microstructure +1701.01012 Chemical Physics +1701.01090 Information Theory +1701.01458 Solar and Stellar Astrophysics +1701.01725 Soft Condensed Matter +1701.01836 +1701.01929 +1701.01933 Superconductivity +1701.02117 Materials Science +1701.02163 Artificial Intelligence +1701.02176 Algebraic Geometry +1701.02179 Analysis of PDEs +1701.02204 Combinatorics +1701.02408 Distributed, Parallel, and Cluster Computing +1701.02469 Superconductivity +1701.02484 Computational Physics +1701.02547 Programming Languages +1701.02607 +1701.02641 Networking and Internet Architecture +1701.02654 +1701.02729 Social and Information Networks +1701.02731 +1701.02732 Combinatorics +1701.02733 Instrumentation and Methods for Astrophysics +1701.02734 Astrophysics of Galaxies +1701.02735 Phenomenology +1701.02737 Phenomenology +1701.02740 Social and Information Networks +1701.02742 Earth and Planetary Astrophysics +1701.02743 Astrophysics of Galaxies +1701.02744 Disordered Systems and Neural Networks +1701.02749 Instrumentation and Methods for Astrophysics +1701.02754 Phenomenology +1701.02757 Phenomenology +1701.02759 Mesoscale and Nanoscale Physics +1701.02760 Medical Physics +1701.02762 Metric Geometry +1701.02763 Mesoscale and Nanoscale Physics +1701.02764 Combinatorics +1701.02767 +1701.02769 High Energy Astrophysical Phenomena +1701.02770 Materials Science +1701.02773 Strongly Correlated Electrons +1701.02774 Algebraic Geometry +1701.02775 Earth and Planetary Astrophysics +1701.02776 Information Theory +1701.02778 Astrophysics of Galaxies +1701.02779 Mesoscale and Nanoscale Physics +1701.02780 +1701.02784 +1701.02785 High Energy Astrophysical Phenomena +1701.02786 Methodology +1701.02790 Materials Science +1701.02791 Materials Science +1701.02792 Materials Science +1701.02793 Analysis of PDEs +1701.02794 Representation Theory +1701.02795 Computation and Language +1701.02796 Physics and Society +1701.02798 Computational Finance +1701.02799 Algebraic Geometry +1701.02801 Solar and Stellar Astrophysics +1701.02803 Materials Science +1701.02804 Machine Learning +1701.02806 Logic +1701.02807 Instrumentation and Detectors +1701.02808 Formal Languages and Automata Theory +1701.02809 Networking and Internet Architecture +1701.02812 Accelerator Physics +1701.02813 Probability +1701.02814 Optimization and Control +1701.02815 Learning +1701.02817 Analysis of PDEs +1701.02819 Combinatorics +1701.02820 Theory +1701.02822 Soft Condensed Matter +1701.02823 Analysis of PDEs +1701.02825 Strongly Correlated Electrons +1701.02826 Functional Analysis +1701.02828 Networking and Internet Architecture +1701.02829 Computer Vision and Pattern Recognition +1701.02830 Numerical Analysis +1701.02833 Optimization and Control +1701.02834 Number Theory +1701.02835 Numerical Analysis +1701.02836 Data Structures and Algorithms +1701.02837 Analysis of PDEs +1701.02839 Soft Condensed Matter +1701.02840 Symplectic Geometry +1701.02842 Programming Languages +1701.02843 Numerical Analysis +1701.02844 Combinatorics +1701.02845 General Topology +1701.02847 High Energy Astrophysical Phenomena +1701.02849 Analysis of PDEs +1701.02850 Optics +1701.02851 Social and Information Networks +1701.02852 Optimization and Control +1701.02853 Data Structures and Algorithms +1701.02855 Lattice +1701.02857 Methodology +1701.02858 Lattice +1701.02859 Combinatorics +1701.02860 Probability +1701.02863 +1701.02864 Social and Information Networks +1701.02865 Differential Geometry +1701.02867 Exactly Solvable and Integrable Systems +1701.02868 Commutative Algebra +1701.02869 Materials Science +1701.02870 Computer Vision and Pattern Recognition +1701.02871 Astrophysics of Galaxies +1701.02872 Probability +1701.02873 Cosmology and Nongalactic Astrophysics +1701.02874 Optimization and Control +1701.02876 +1701.02878 Complex Variables +1701.02879 Optimization and Control +1701.02881 Phenomenology +1701.02883 Mesoscale and Nanoscale Physics +1701.02884 Materials Science +1701.02885 Analysis of PDEs +1701.02887 Methodology +1701.02888 Numerical Analysis +1701.02889 Analysis of PDEs +1701.02892 Machine Learning +1701.02893 Numerical Analysis +1701.02895 Information Theory +1701.02896 Cryptography and Security +1701.02900 Information Theory +1701.02901 Computation and Language +1701.02902 Optimization and Control +1701.02904 Physics and Society +1701.02905 Probability +1701.02906 Phenomenology +1701.02907 Mesoscale and Nanoscale Physics +1701.02908 Populations and Evolution +1701.02909 Superconductivity +1701.02910 Numerical Analysis +1701.02911 +1701.02912 Classical Analysis and ODEs +1701.02913 Phenomenology +1701.02915 Atomic Physics +1701.02916 Functional Analysis +1701.02917 Logic in Computer Science +1701.02918 Plasma Physics +1701.02919 Group Theory +1701.02920 Plasma Physics +1701.02922 Information Theory +1701.02923 Mesoscale and Nanoscale Physics +1701.02924 High Energy Astrophysical Phenomena +1701.02925 Computation and Language +1701.02927 Formal Languages and Automata Theory +1701.02928 +1701.02929 Optics +1701.02931 Analysis of PDEs +1701.02932 Representation Theory +1701.02933 Optics +1701.02935 Optics +1701.02938 Fluid Dynamics +1701.02940 Information Theory +1701.02943 Biomolecules +1701.02944 Programming Languages +1701.02946 Computation and Language +1701.02947 Formal Languages and Automata Theory +1701.02949 Strongly Correlated Electrons +1701.02951 Representation Theory +1701.02955 Dynamical Systems +1701.02958 Portfolio Management +1701.02959 +1701.02960 Learning +1701.02961 Space Physics +1701.02962 Computation and Language +1701.02963 +1701.02964 Number Theory +1701.02966 Probability +1701.02967 Machine Learning +1701.02968 Space Physics +1701.02970 +1701.02971 Information Theory +1701.02974 Number Theory +1701.02975 Number Theory +1701.02977 Functional Analysis +1701.02978 Classical Analysis and ODEs +1701.02979 Information Theory +1701.02980 Mesoscale and Nanoscale Physics +1701.02981 Information Theory +1701.02982 Functional Analysis +1701.02983 High Energy Astrophysical Phenomena +1701.02984 Statistical Mechanics +1701.02986 Optics +1701.02988 Populations and Evolution +1701.02989 Optimization and Control +1701.02990 Quantum Gases +1701.02991 Distributed, Parallel, and Cluster Computing +1701.02993 Logic +1701.02995 Instrumentation and Methods for Astrophysics +1701.02996 Computational Complexity +1701.02997 General Physics +1701.02998 General Physics +1701.02999 Fluid Dynamics +1701.03000 Artificial Intelligence +1701.03002 Probability +1701.03003 Astrophysics of Galaxies +1701.03004 Data Structures and Algorithms +1701.03005 Optics +1701.03006 Machine Learning +1701.03007 Combinatorics +1701.03008 Systems and Control +1701.03009 Computational Engineering, Finance, and Science +1701.03010 Combinatorics +1701.03012 General Physics +1701.03013 Materials Science +1701.03014 Materials Science +1701.03015 Analysis of PDEs +1701.03016 Chemical Physics +1701.03017 Social and Information Networks +1701.03018 Solar and Stellar Astrophysics +1701.03022 Data Analysis, Statistics and Probability +1701.03023 Information Theory +1701.03024 Group Theory +1701.03025 Representation Theory +1701.03026 Solar and Stellar Astrophysics +1701.03028 Category Theory +1701.03029 +1701.03030 Materials Science +1701.03031 Theory +1701.03033 Materials Science +1701.03035 General Physics +1701.03037 Artificial Intelligence +1701.03040 Combinatorics +1701.03041 Robotics +1701.03042 Numerical Analysis +1701.03043 Distributed, Parallel, and Cluster Computing +1701.03046 Experiment +1701.03047 Data Structures and Algorithms +1701.03048 Plasma Physics +1701.03049 Numerical Analysis +1701.03050 Strongly Correlated Electrons +1701.03051 Social and Information Networks +1701.03052 Analysis of PDEs +1701.03053 Distributed, Parallel, and Cluster Computing +1701.03054 Combinatorics +1701.03055 Pattern Formation and Solitons +1701.03056 Computer Vision and Pattern Recognition +1701.03057 Theory +1701.03058 Numerical Analysis +1701.03060 History and Overview +1701.03061 Physics and Society +1701.03062 General Mathematics +1701.03063 +1701.03065 Optimization and Control +1701.03069 Programming Languages +1701.03071 Mesoscale and Nanoscale Physics +1701.03072 Differential Geometry +1701.03074 +1701.03076 Optics +1701.03078 Plasma Physics +1701.03079 Computation and Language +1701.03080 Materials Science +1701.03083 Analysis of PDEs +1701.03084 Numerical Analysis +1701.03085 Physics Education +1701.03086 Probability +1701.03087 Geophysics +1701.03089 Algebraic Geometry +1701.03090 Optics +1701.03091 Databases +1701.03092 Computation and Language +1701.03093 Optics +1701.03094 Solar and Stellar Astrophysics +1701.03095 Genomics +1701.03099 Probability +0704.2708 Combinatorics +0705.3651 Combinatorics +0706.2354 Optimization and Control +0707.0088 Representation Theory +0707.1362 Optimization and Control +0710.4346 Combinatorics +0809.0689 Computer Science and Game Theory +0905.1911 Quantum Gases +0906.5171 Optimization and Control +0907.1298 Optimization and Control +1009.3469 Computational Geometry +1010.4321 General Mathematics +1105.0791 Computational Geometry +1106.4145 Differential Geometry +1111.5143 Logic +1203.0494 Logic in Computer Science +1203.0765 Rings and Algebras +1207.1149 Optimization and Control +1207.2773 Category Theory +1208.3386 Probability +1210.2961 Representation Theory +1210.4369 Cosmology and Nongalactic Astrophysics +1210.6732 Optimization and Control +1210.7412 Probability +1211.0258 Combinatorics +1212.0256 Number Theory +1301.1652 Combinatorics +1302.2283 Chaotic Dynamics +1302.5222 Rings and Algebras +1302.5248 Numerical Analysis +1304.2967 Spectral Theory +1305.4013 Trading and Market Microstructure +1306.1486 Optimization and Control +1306.5134 Combinatorics +1308.0994 Logic +1308.1628 Differential Geometry +1308.4913 Classical Physics +1309.0531 Data Analysis, Statistics and Probability +1309.1134 Rings and Algebras +1310.4412 Information Theory +1311.0597 Number Theory +1311.2001 Analysis of PDEs +1311.4989 Optimization and Control +1311.5121 Numerical Analysis +1312.6809 Physics and Society +1401.4885 Analysis of PDEs +1402.0283 Quantum Gases +1402.2805 Classical Analysis and ODEs +1402.3064 Analysis of PDEs +1402.5201 Quantum Algebra +1403.2774 Geometric Topology +1403.4628 Optimization and Control +1403.5019 Differential Geometry +1403.5665 Discrete Mathematics +1403.7887 Number Theory +1404.1728 Combinatorics +1404.3170 Dynamical Systems +1404.4279 Commutative Algebra +1405.6538 Operator Algebras +1405.7769 Physics and Society +1406.2946 +1407.0973 Neurons and Cognition +1407.2767 Numerical Analysis +1407.6170 +1407.6171 +1408.2667 Operator Algebras +1408.6320 Differential Geometry +1409.2212 Functional Analysis +1409.2706 Analysis of PDEs +1409.4379 Optimization and Control +1409.5046 Phenomenology +1410.2183 Statistical Mechanics +1410.2841 Optimization and Control +1410.5222 Number Theory +1410.5933 Statistical Mechanics +1410.8584 Optimization and Control +1411.1745 Symbolic Computation +1411.3033 Strongly Correlated Electrons +1411.5121 Optimization and Control +1411.7632 Optimization and Control +1412.0125 Number Theory +1412.5028 +1412.5685 Theory +1501.04592 +1501.06809 Physics and Society +1502.00492 Complex Variables +1502.01508 Rings and Algebras +1502.01786 Combinatorics +1503.02951 Computer Science and Game Theory +1503.03571 Databases +1503.03715 Optimization and Control +1503.06640 Combinatorics +1503.06684 Analysis of PDEs +1504.04470 Data Structures and Algorithms +1504.04709 Number Theory +1505.01558 +1505.02238 Rings and Algebras +1505.07862 Data Structures and Algorithms +1506.00033 Algebraic Topology +1506.01366 Theory +1506.01538 Instrumentation and Methods for Astrophysics +1506.02244 Optimization and Control +1506.03134 Machine Learning +1506.07041 Probability +1507.02602 Quantum Algebra +1507.07317 Neurons and Cognition +1508.04619 Combinatorics +1508.07755 Rings and Algebras +1509.00293 +1509.01300 +1509.01967 Differential Geometry +1509.05663 Analysis of PDEs +1509.08196 +1510.01751 Fluid Dynamics +1510.01831 Numerical Analysis +1510.03291 Theory +1510.05179 Databases +1510.07300 Analysis of PDEs +1511.00087 +1511.00640 General Physics +1511.01925 Fluid Dynamics +1511.06228 Algebraic Topology +1511.06945 Number Theory +1511.07868 Functional Analysis +1512.02536 Theory +1512.02873 Numerical Analysis +1512.04599 Group Theory +1512.07451 Methodology +1512.08122 Optimization and Control +1512.09058 Quantum Gases +1601.05196 Rings and Algebras +1601.05749 General Physics +1602.00234 Digital Libraries +1602.01569 Information Theory +1602.01671 Statistical Mechanics +1602.03087 Number Theory +1602.03172 +1602.03659 Algebraic Geometry +1602.04226 Astrophysics of Galaxies +1602.05477 Risk Management +1602.06664 Information Theory +1602.08005 Instrumentation and Detectors +1602.08912 Computer Science and Game Theory +1603.00266 +1603.00869 Populations and Evolution +1603.00952 Machine Learning +1603.01587 Algebraic Topology +1603.02834 Computation +1603.05168 Classical Analysis and ODEs +1603.08147 Group Theory +1604.00915 Instrumentation and Detectors +1604.02541 +1604.03032 Operator Algebras +1604.03649 Optimization and Control +1604.04040 Algebraic Geometry +1604.04539 Data Analysis, Statistics and Probability +1604.04812 Learning +1604.05746 Phenomenology +1605.01265 Statistical Mechanics +1605.01989 +1605.02254 Number Theory +1605.02908 Statistical Mechanics +1605.02927 Phenomenology +1605.03570 Numerical Analysis +1605.03701 +1605.03796 Information Theory +1605.03989 Optimization and Control +1605.04467 +1605.04574 Applications +1605.04708 Number Theory +1605.05271 General Topology +1605.05543 Data Analysis, Statistics and Probability +1605.05743 Functional Analysis +1605.07315 +1605.07950 Learning +1605.08354 Physics and Society +1605.09303 Biomolecules +1605.09335 Classical Analysis and ODEs +1606.00980 Computation +1606.03454 Astrophysics of Galaxies +1606.03926 Functional Analysis +1606.04880 Computer Science and Game Theory +1606.05151 Cosmology and Nongalactic Astrophysics +1606.05892 Methodology +1606.06690 Phenomenology +1606.06895 Algebraic Geometry +1606.07590 Disordered Systems and Neural Networks +1606.07748 Populations and Evolution +1606.08152 Number Theory +1607.00044 Instrumentation and Methods for Astrophysics +1607.01166 Probability +1607.01509 Quantum Gases +1607.02631 Methodology +1607.02978 Theory +1607.03178 Rings and Algebras +1607.04579 Learning +1607.05036 +1607.05242 Disordered Systems and Neural Networks +1607.05287 +1607.05534 Differential Geometry +1607.06672 +1607.06858 Cosmology and Nongalactic Astrophysics +1607.07475 Mesoscale and Nanoscale Physics +1607.07586 Group Theory +1607.07852 Mesoscale and Nanoscale Physics +1607.08549 Disordered Systems and Neural Networks +1608.00016 General Physics +1608.00125 Superconductivity +1608.00597 Theory +1608.00613 Multimedia +1608.00802 Cosmology and Nongalactic Astrophysics +1608.00804 +1608.00873 Number Theory +1608.00942 Populations and Evolution +1608.01944 Numerical Analysis +1608.02170 Information Theory +1608.02333 Methodology +1608.02895 Probability +1608.03289 +1608.04312 Instrumentation and Detectors +1608.06047 +1608.06066 Strongly Correlated Electrons +1608.06178 Dynamical Systems +1608.06441 +1608.06604 Analysis of PDEs +1608.07420 Materials Science +1608.07633 Materials Science +1608.07643 Number Theory +1608.07775 Computation and Language +1608.08320 Classical Analysis and ODEs +1609.01049 Functional Analysis +1609.01560 Atomic Physics +1609.01915 Computer Vision and Pattern Recognition +1609.02193 Other Computer Science +1609.02213 Quantitative Methods +1609.02541 Computation +1609.02633 Logic +1609.03092 Computational Physics +1609.03390 Phenomenology +1609.03616 Number Theory +1609.05336 Computational Physics +1609.05338 Mesoscale and Nanoscale Physics +1609.05486 Learning +1609.05496 Combinatorics +1609.05601 Cryptography and Security +1609.05863 Number Theory +1609.06187 Computational Engineering, Finance, and Science +1609.07581 +1609.08136 Combinatorics +1609.08277 Statistical Mechanics +1609.09515 Theory +1610.00160 Cosmology and Nongalactic Astrophysics +1610.00257 Systems and Control +1610.00423 Functional Analysis +1610.00619 Superconductivity +1610.00680 Phenomenology +1610.01188 Programming Languages +1610.02107 Combinatorics +1610.02992 Complex Variables +1610.03335 Software Engineering +1610.03695 Soft Condensed Matter +1610.04486 Combinatorics +1610.05626 Numerical Analysis +1610.06302 Physics Education +1610.06530 Complex Variables +1610.06832 Formal Languages and Automata Theory +1610.07241 Digital Libraries +1610.07308 Optimization and Control +1610.07316 Mesoscale and Nanoscale Physics +1610.07513 Differential Geometry +1610.07906 Earth and Planetary Astrophysics +1610.09008 Earth and Planetary Astrophysics +1610.09585 Machine Learning +1610.09896 +1610.10020 Number Theory +1611.00194 Quantum Gases +1611.00324 Chemical Physics +1611.00814 Discrete Mathematics +1611.01343 Classical Analysis and ODEs +1611.01898 Optimization and Control +1611.02437 Category Theory +1611.02635 Optimization and Control +1611.03065 Cryptography and Security +1611.03211 Instrumentation and Detectors +1611.03352 +1611.04013 Materials Science +1611.04449 Phenomenology +1611.04576 Probability +1611.04664 Dynamical Systems +1611.05131 Plasma Physics +1611.05794 +1611.06720 +1611.07103 Methodology +1611.07349 +1611.07569 +1611.09217 +1611.09376 Algebraic Geometry +1612.00208 Algebraic Geometry +1612.00422 Theory +1612.00428 Geometric Topology +1612.01113 Multimedia +1612.01203 +1612.02094 Phenomenology +1612.02137 Fluid Dynamics +1612.02284 Data Structures and Algorithms +1612.02287 Computer Vision and Pattern Recognition +1612.03971 Systems and Control +1612.04310 Solar and Stellar Astrophysics +1612.04717 Methodology +1612.05041 Strongly Correlated Electrons +1612.05322 Computer Vision and Pattern Recognition +1612.05886 Theory +1612.05952 General Finance +1612.05986 Probability +1612.06268 Number Theory +1612.06298 Algebraic Geometry +1612.06342 Theory +1612.06520 Algebraic Geometry +1612.06522 Emerging Technologies +1612.06607 Disordered Systems and Neural Networks +1612.06965 Optimization and Control +1612.07139 Robotics +1612.07448 Databases +1612.07930 Chemical Physics +1612.07941 Biological Physics +1612.07994 Soft Condensed Matter +1612.08029 Cryptography and Security +1612.08330 Metric Geometry +1612.08496 Analysis of PDEs +1612.08602 Mesoscale and Nanoscale Physics +1612.08646 Physics Education +1612.08709 Distributed, Parallel, and Cluster Computing +1612.08770 Phenomenology +1612.08969 Mesoscale and Nanoscale Physics +1612.09239 Mesoscale and Nanoscale Physics +1612.09277 Computational Geometry +1612.09296 Learning +1612.09333 Cosmology and Nongalactic Astrophysics +1612.09337 Dynamical Systems +1612.09402 +1612.09485 +1701.00001 Computers and Society +1701.00004 Strongly Correlated Electrons +1701.00006 Theory +1701.00007 Strongly Correlated Electrons +1701.00009 Theory +1701.00010 Phenomenology +1701.00011 Astrophysics of Galaxies +1701.00016 Numerical Analysis +1701.00017 +1701.00018 Probability +1701.00019 Robotics +1701.00020 Operator Algebras +1701.00023 +1701.00024 Astrophysics of Galaxies +1701.00025 Fluid Dynamics +1701.00026 Rings and Algebras +1701.00027 Algebraic Geometry +1701.00028 Mesoscale and Nanoscale Physics +1701.00029 Methodology +1701.00030 Computational Finance +1701.00031 Computer Vision and Pattern Recognition +1701.00032 Fluid Dynamics +1701.00033 Optimization and Control +1701.00034 Analysis of PDEs +1701.00036 Soft Condensed Matter +1701.00038 Data Analysis, Statistics and Probability +1701.00039 Numerical Analysis +1701.00040 Computer Vision and Pattern Recognition +1701.00041 Mesoscale and Nanoscale Physics +1701.00042 Mesoscale and Nanoscale Physics +1701.00044 Number Theory +1701.00046 Theory +1701.00048 Materials Science +1701.00049 Theory +1701.00050 +1701.00051 Theory +1701.00052 Probability +1701.00053 Solar and Stellar Astrophysics +1701.00055 Computational Physics +1701.00056 Statistics Theory +1701.00057 +1701.00058 Commutative Algebra +1701.00059 +1701.00061 Algebraic Geometry +1701.00062 Physics and Society +1701.00064 +1701.00065 Emerging Technologies +1701.00066 Computation and Language +1701.00068 Numerical Analysis +1701.00070 High Energy Astrophysical Phenomena +1701.00071 Soft Condensed Matter +1701.00072 Databases +1701.00073 Representation Theory +1701.00075 General Topology +1701.00076 Classical Analysis and ODEs +1701.00077 Quantitative Methods +1701.00080 Optics +1701.00082 Neurons and Cognition +1701.00083 Phenomenology +1701.00084 General Topology +1701.00088 Soft Condensed Matter +1701.00090 Optimization and Control +1701.00092 Functional Analysis +1701.00093 History and Philosophy of Physics +1701.00094 Instrumentation and Detectors +1701.00095 Soft Condensed Matter +1701.00097 Operator Algebras +1701.00098 Theory +1701.00100 Classical Analysis and ODEs +1701.00104 Cryptography and Security +1701.00105 High Energy Astrophysical Phenomena +1701.00106 Optics +1701.00107 Probability +1701.00108 Software Engineering +1701.00109 Numerical Analysis +1701.00111 Dynamical Systems +1701.00113 Category Theory +1701.00115 Complex Variables +1701.00116 +1701.00117 Software Engineering +1701.00118 Optics +1701.00120 Complex Variables +1701.00121 Strongly Correlated Electrons +1701.00122 +1701.00123 Software Engineering +1701.00125 Group Theory +1701.00126 Algebraic Geometry +1701.00127 Dynamical Systems +1701.00129 Probability +1701.00130 Computational Physics +1701.00131 Probability +1701.00132 Operator Algebras +1701.00133 Lattice +1701.00134 +1701.00135 Rings and Algebras +1701.00136 Theory +1701.00139 Analysis of PDEs +1701.00141 Combinatorics +1701.00142 Computer Vision and Pattern Recognition +1701.00143 Instrumentation and Detectors +1701.00144 Astrophysics of Galaxies +1701.00146 Computational Complexity +1701.00148 Programming Languages +1701.00149 Mesoscale and Nanoscale Physics +1701.00152 Optimization and Control +1701.00153 Quantum Algebra +1701.00154 Combinatorics +1701.00157 Quantum Gases +1701.00158 Soft Condensed Matter +1701.00159 Cryptography and Security +1701.00161 Programming Languages +1701.00162 Numerical Analysis +1701.00163 Optics +1701.00164 Instrumentation and Detectors +1701.00165 Computer Vision and Pattern Recognition +1701.00166 Quantitative Methods +1701.00167 Machine Learning +1701.00168 Computation and Language +1701.00170 +1701.00172 Mesoscale and Nanoscale Physics +1701.00174 Mesoscale and Nanoscale Physics +1701.00175 Dynamical Systems +1701.00178 Optimization and Control +1701.00179 Systems and Control +1701.00182 Analysis of PDEs +1701.00184 Superconductivity +1701.00185 Information Retrieval +1701.00186 Distributed, Parallel, and Cluster Computing +1701.00188 Computation and Language +1701.00190 General Mathematics +1701.00192 +1701.00193 Computer Vision and Pattern Recognition +1701.00194 Biological Physics +1701.00195 Differential Geometry +1701.00196 Optimization and Control +1701.00197 Cosmology and Nongalactic Astrophysics +1701.00198 Computer Vision and Pattern Recognition +1701.00199 Information Retrieval +1701.00200 Rings and Algebras +1701.00201 Dynamical Systems +1701.00202 Information Theory +1701.00203 Algebraic Geometry +1701.00204 Algebraic Geometry +1701.00206 Logic +1701.00207 Optics +1701.00210 Information Theory +1701.00211 +1701.00212 Chaotic Dynamics +1701.00213 History and Philosophy of Physics +1701.00214 Statistical Mechanics +1701.00215 Numerical Analysis +1701.00216 +1701.00217 Analysis of PDEs +1701.00218 Phenomenology +1701.00219 Spectral Theory +1701.00220 Learning +1701.00221 Cosmology and Nongalactic Astrophysics +1701.00222 Algebraic Geometry +1701.00223 Probability +1701.00224 Phenomenology +1701.00225 Classical Analysis and ODEs +1701.00228 Plasma Physics +1701.00229 Dynamical Systems +1701.00231 +1701.00232 Atomic Physics +1701.00233 Programming Languages +1701.00234 Networking and Internet Architecture +1701.00235 Materials Science +1701.00237 Networking and Internet Architecture +1701.00238 Differential Geometry +1701.00240 Networking and Internet Architecture +1701.00241 Information Theory +1701.00242 +1701.00243 Exactly Solvable and Integrable Systems +1701.00244 Numerical Analysis +1701.00246 Statistical Mechanics +1701.00247 Information Theory +1701.00249 Optimization and Control +1701.00251 Learning +1701.00252 Algebraic Geometry +1701.00253 Geometric Topology +1701.00255 Algebraic Topology +1701.00256 Earth and Planetary Astrophysics +1701.00258 Functional Analysis +1701.00259 +1701.00260 Logic +1701.00262 Analysis of PDEs +1701.00263 Statistical Mechanics +1701.00264 +1701.00265 Number Theory +1701.00267 Analysis of PDEs +1701.00270 Classical Physics +1701.00272 Representation Theory +1701.00273 Probability +1701.00274 Cosmology and Nongalactic Astrophysics +1701.00275 Algebraic Geometry +1701.00276 +1701.00278 Number Theory +1701.00279 Lattice +1701.00280 Logic in Computer Science +1701.00281 Functional Analysis +1701.00282 Instrumentation and Detectors +1701.00285 Computation +1701.00286 Phenomenology +1701.00287 Artificial Intelligence +1701.00288 Instrumentation and Methods for Astrophysics +1701.00294 Computer Vision and Pattern Recognition +1701.00297 Dynamical Systems +1701.00298 Information Theory +1701.00299 Learning +1701.00300 Accelerator Physics +1701.00301 Optics +1701.00302 Discrete Mathematics +1701.00303 High Energy Astrophysical Phenomena +1701.00306 Differential Geometry +1701.00307 Emerging Technologies +1701.00309 Geometric Topology +1701.00310 Materials Science +1701.00313 Computational Physics +1701.00314 Probability +1701.00315 Astrophysics of Galaxies +1701.00316 +1701.00319 Probability +1701.00321 Number Theory +1701.00322 Machine Learning +1701.00324 Information Retrieval +1701.00325 Complex Variables +1701.00326 Computer Vision and Pattern Recognition +1701.00328 Combinatorics +1701.00329 Phenomenology +1701.00330 Cell Behavior +1701.00331 Group Theory +1701.00334 Physics and Society +1701.00336 High Energy Astrophysical Phenomena +1701.00337 Dynamical Systems +1701.00338 Methodology +1701.00339 Phenomenology +1701.00340 Number Theory +1701.00341 Theory +1701.00342 Adaptation and Self-Organizing Systems +1701.00344 Operator Algebras +1701.00345 Lattice +1701.00349 Artificial Intelligence +1701.00350 Discrete Mathematics +1701.00351 Fluid Dynamics +1701.00352 Computer Vision and Pattern Recognition +1701.00354 Combinatorics +1701.00356 General Topology +1701.00358 Materials Science +1701.00360 Probability +1701.00361 Experiment +1701.00362 Combinatorics +1701.00365 Information Theory +1701.00368 Theory +1701.00369 +1701.00370 Complex Variables +1701.00373 Differential Geometry +1701.00374 Mesoscale and Nanoscale Physics +1701.00375 Algebraic Geometry +1701.00376 Information Theory +1701.00377 Group Theory +1701.00378 Combinatorics +1701.00380 Analysis of PDEs +1701.00381 Data Structures and Algorithms +1701.00382 Mesoscale and Nanoscale Physics +1701.00383 Distributed, Parallel, and Cluster Computing +1701.00385 Number Theory +1701.00386 Optics +1701.00387 Fluid Dynamics +1701.00388 Number Theory +1701.00390 Neurons and Cognition +1701.00391 Number Theory +1701.00392 Numerical Analysis +1701.00393 Algebraic Geometry +1701.00396 Symbolic Computation +1701.00397 Analysis of PDEs +1701.00398 Databases +1701.00399 Databases +1701.00400 Databases +1701.00401 Cryptography and Security +1701.00403 Methodology +1701.00404 Materials Science +1701.00405 Computer Vision and Pattern Recognition +1701.00406 Social and Information Networks +1701.00407 Commutative Algebra +1701.00408 +1701.00409 Probability +1701.00411 Representation Theory +1701.00412 Materials Science +1701.00413 Algebraic Geometry +1701.00414 Atomic Physics +1701.00415 Astrophysics of Galaxies +1701.00416 Software Engineering +1701.00417 Analysis of PDEs +1701.00420 Combinatorics +1701.00421 Solar and Stellar Astrophysics +1701.00423 Representation Theory +1701.00424 Numerical Analysis +1701.00426 Lattice +1701.00428 Strongly Correlated Electrons +1701.00429 Symplectic Geometry +1701.00430 Algebraic Topology +1701.00432 Experiment +1701.00433 Numerical Analysis +1701.00435 Computational Engineering, Finance, and Science +1701.00436 Cryptography and Security +1701.00437 High Energy Astrophysical Phenomena +1701.00438 Lattice +1701.00440 Group Theory +1701.00441 Robotics +1701.00442 Chemical Physics +1701.00443 Dynamical Systems +1701.00445 General Mathematics +1701.00446 Instrumentation and Detectors +1701.00448 General Physics +1701.00449 Computer Vision and Pattern Recognition +1701.00450 General Physics +1701.00451 Instrumentation and Detectors +1701.00452 Genomics +1701.00453 Theory +1701.00455 Algebraic Geometry +1701.00456 General Physics +1701.00457 General Physics +1701.00459 +1701.00460 Emerging Technologies +1701.00461 Theory +1701.00464 Artificial Intelligence +1701.00466 General Mathematics +1701.00467 Theory +1701.00468 Numerical Analysis +1701.00469 General Physics +1701.00470 Logic +1701.00472 High Energy Astrophysical Phenomena +1701.00474 Multimedia +1701.00476 Functional Analysis +1701.00477 Classical Analysis and ODEs +1701.00478 Cosmology and Nongalactic Astrophysics +1701.00479 Information Theory +1701.00480 Mesoscale and Nanoscale Physics +math/0410111 Optimization and Control +math/0505677 Optimization and Control +math/0603308 Combinatorics +math/0603311 Optimization and Control +math/0606075 Representation Theory +math/0610320 Geometric Topology +quant-ph/0109068 +quant-ph/0304052 +quant-ph/9805082 +1605.07228 Physics and Society +0801.3332 Computational Physics +0801.3439 Chemical Physics +0808.1219 Complex Variables +0902.0198 Combinatorics +1307.3580 Probability +1308.6240 Genomics +1308.6245 Quantitative Methods +1309.4188 Theory +1310.4291 Networking and Internet Architecture +1312.4909 Biological Physics +1401.3522 Probability +1402.4311 Analysis of PDEs +1402.7294 Commutative Algebra +1403.7153 +1403.7481 Computational Engineering, Finance, and Science +1403.7980 Computational Geometry +1405.0151 +1406.5855 Quantitative Methods +1407.1507 Data Structures and Algorithms +1407.5309 +1407.8436 Symplectic Geometry +1411.3019 Computational Physics +1411.6216 Exactly Solvable and Integrable Systems +1412.3328 Computer Vision and Pattern Recognition +1412.8399 Combinatorics +1502.00668 Differential Geometry +1502.01494 Information Theory +1502.01861 Data Structures and Algorithms +1502.04600 Discrete Mathematics +1502.04730 Statistical Mechanics +1502.06633 Analysis of PDEs +1503.01624 Data Structures and Algorithms +1503.02728 Instrumentation and Methods for Astrophysics +1503.04552 Mesoscale and Nanoscale Physics +1503.08760 +1504.00526 Group Theory +1504.02846 Functional Analysis +1505.05272 Methodology +1506.02385 Probability +1506.05026 Quantum Algebra +1506.07209 +1506.08873 K-Theory and Homology +1506.08885 K-Theory and Homology +1507.01735 K-Theory and Homology +1507.08299 Theory +1508.00208 Probability +1508.02699 Instrumentation and Methods for Astrophysics +1508.03037 Geometric Topology +1509.01994 Analysis of PDEs +1509.03162 Neurons and Cognition +1509.08280 Mathematical Finance +1510.00426 K-Theory and Homology +1510.01002 Physics and Society +1510.03769 Number Theory +1510.06171 Differential Geometry +1510.06684 Optimization and Control +1510.07269 Differential Geometry +1510.07583 Group Theory +1511.04385 +1511.05955 +1511.07476 Earth and Planetary Astrophysics +1511.07906 Algebraic Geometry +1512.01519 Number Theory +1512.06425 Distributed, Parallel, and Cluster Computing +1601.03632 Phenomenology +1601.04703 Number Theory +1601.04772 Statistical Mechanics +1601.05249 Populations and Evolution +1601.07790 Distributed, Parallel, and Cluster Computing +1602.01865 Fluid Dynamics +1602.02300 Algebraic Geometry +1602.03086 Genomics +1602.03793 Geometric Topology +1602.04704 Numerical Analysis +1602.04803 +1602.04889 Learning +1602.07945 Soft Condensed Matter +1602.08230 Data Structures and Algorithms +1602.08445 Pattern Formation and Solitons +1602.09038 Statistical Mechanics +1603.02208 Artificial Intelligence +1603.03446 Classical Physics +1603.06066 Statistical Mechanics +1603.06958 Genomics +1603.07711 Cryptography and Security +1603.07994 Mesoscale and Nanoscale Physics +1604.00332 Cosmology and Nongalactic Astrophysics +1604.01172 Probability +1604.02064 Probability +1604.02181 Machine Learning +1604.02601 Algebraic Geometry +1604.03027 Theory +1604.03958 Phenomenology +1604.04768 Methodology +1604.07976 Combinatorics +1604.08640 Information Retrieval +1605.01588 Number Theory +1605.01670 Phenomenology +1605.01762 Algebraic Geometry +1605.03432 Optics +1605.03855 Atmospheric and Oceanic Physics +1605.04595 Theory +1605.04990 Pattern Formation and Solitons +1605.08699 Soft Condensed Matter +1606.01195 Biological Physics +1606.01258 Phenomenology +1606.02063 Number Theory +1606.02768 +1606.02864 Phenomenology +1606.02941 Logic in Computer Science +1606.03373 Fluid Dynamics +1606.03819 Statistical Mechanics +1606.05350 Astrophysics of Galaxies +1606.05575 Complex Variables +1606.05642 Machine Learning +1606.05858 Probability +1606.05950 Combinatorics +1606.06242 +1606.06314 Computer Vision and Pattern Recognition +1606.06882 Earth and Planetary Astrophysics +1606.07352 Analysis of PDEs +1606.07417 Classical Physics +1606.07961 Classical Analysis and ODEs +1606.08012 Theory +1606.08465 Disordered Systems and Neural Networks +1606.08770 Computational Physics +1607.00235 Information Theory +1607.00288 Astrophysics of Galaxies +1607.00716 Numerical Analysis +1607.01874 Instrumentation and Methods for Astrophysics +1607.02753 Differential Geometry +1607.03633 +1607.04248 K-Theory and Homology +1607.04494 Exactly Solvable and Integrable Systems +1607.05282 Other Condensed Matter +1607.05499 Rings and Algebras +1607.06021 Discrete Mathematics +1608.00083 Statistical Mechanics +1608.00228 Optics +1608.00318 Computation and Language +1608.00552 Theory +1608.00813 Computer Vision and Pattern Recognition +1608.01726 Numerical Analysis +1608.01908 +1608.01966 Computer Vision and Pattern Recognition +1608.02081 Computational Complexity +1608.02636 Logic in Computer Science +1608.03384 Statistics Theory +1608.04092 Phenomenology +1608.04662 Combinatorics +1608.04754 Theory +1608.05899 Statistical Mechanics +1608.06421 Algebraic Geometry +1608.06739 +1608.07385 Optics +1608.07516 Functional Analysis +1608.07602 Optics +1608.08011 Superconductivity +1608.08172 Materials Science +1608.08856 Mesoscale and Nanoscale Physics +1609.02076 +1609.02138 +1609.02192 Mesoscale and Nanoscale Physics +1609.02815 Computational Physics +1609.04128 Solar and Stellar Astrophysics +1609.04496 Tissues and Organs +1609.04526 Mesoscale and Nanoscale Physics +1609.04986 Functional Analysis +1609.06714 Strongly Correlated Electrons +1609.06757 Applications +1609.06899 Mesoscale and Nanoscale Physics +1609.07169 +1609.07224 +1609.07278 Statistical Mechanics +1609.08062 +1609.08122 Number Theory +1609.08546 Robotics +1609.08892 Probability +1609.09375 Numerical Analysis +1609.09493 Rings and Algebras +1610.00143 Dynamical Systems +1610.00394 Optimization and Control +1610.00688 Optics +1610.01967 Materials Science +1610.02713 +1610.04180 +1610.04674 Optimization and Control +1610.05019 Algebraic Geometry +1610.07031 Computer Vision and Pattern Recognition +1610.07199 Combinatorics +1610.07426 Quantitative Methods +1610.07983 Theory +1610.08048 Optics +1610.08080 Theory +1610.08194 Quantum Gases +1610.08574 Mesoscale and Nanoscale Physics +1610.09261 Systems and Control +1610.09446 Solar and Stellar Astrophysics +1610.09900 Artificial Intelligence +1611.00252 Learning +1611.00967 Materials Science +1611.01713 Instrumentation and Detectors +1611.01988 Programming Languages +1611.02109 Learning +1611.03338 Numerical Analysis +1611.03776 Mesoscale and Nanoscale Physics +1611.03880 Physics and Society +1611.04171 Numerical Analysis +1611.04635 Cosmology and Nongalactic Astrophysics +1611.05559 Machine Learning +1611.06252 Chemical Physics +1611.08391 +1611.08470 Representation Theory +1611.08945 Computation and Language +1611.09049 Classical Analysis and ODEs +1611.09495 Disordered Systems and Neural Networks +1611.09685 Soft Condensed Matter +1612.00006 +1612.00639 Superconductivity +1612.01080 Symplectic Geometry +1612.01273 Strongly Correlated Electrons +1612.01490 Machine Learning +1612.01791 Solar and Stellar Astrophysics +1612.01864 High Energy Astrophysical Phenomena +1612.01883 Atomic Physics +1612.02113 Information Theory +1612.02130 Applications +1612.02136 Learning +1612.02477 Lattice +1612.02547 Programming Languages +1612.02749 Numerical Analysis +1612.02901 Combinatorics +1612.02943 Optics +1612.03087 +1612.03407 Probability +1612.03471 Artificial Intelligence +1612.04092 Solar and Stellar Astrophysics +1612.05255 Computational Finance +1612.05329 Earth and Planetary Astrophysics +1612.05681 Pricing of Securities +1612.06871 Cosmology and Nongalactic Astrophysics +1612.07165 Phenomenology +1612.07282 Phenomenology +1612.07562 Learning +1612.08661 +1612.08760 Representation Theory +1612.08826 Theory +1701.00701 Astrophysics of Galaxies +1701.01493 Number Theory +1701.01684 Mesoscale and Nanoscale Physics +1701.02319 Theory +1701.03444 Numerical Analysis +1701.04232 Statistical Mechanics +1701.05170 Classical Analysis and ODEs +1701.05798 Representation Theory +1701.06349 Molecular Networks +1701.06447 Operator Algebras +1701.06767 Software Engineering +1701.07144 High Energy Astrophysical Phenomena +1701.07425 Combinatorics +1701.07485 Information Theory +1701.07584 Number Theory +1701.07650 Instrumentation and Detectors +1701.07694 Optimization and Control +1701.07947 Number Theory +1701.08564 Combinatorics +1701.08585 Learning +1701.08599 Solar and Stellar Astrophysics +1702.00313 High Energy Astrophysical Phenomena +1702.00498 +1702.00535 Databases +1702.00878 Soft Condensed Matter +1702.02175 Computer Vision and Pattern Recognition +1702.02185 Category Theory +1702.02458 Mesoscale and Nanoscale Physics +1702.02547 Data Structures and Algorithms +1702.02715 Machine Learning +1702.02833 Theory +1702.03017 Number Theory +1702.03586 Strongly Correlated Electrons +1702.03776 Phenomenology +1702.03889 Algebraic Topology +1702.03898 Materials Science +1702.04056 Number Theory +1702.04396 Robotics +1702.04441 Distributed, Parallel, and Cluster Computing +1702.04517 Computer Vision and Pattern Recognition +1702.04631 Number Theory +1702.04650 Logic in Computer Science +1702.04704 Theory +1702.04786 Data Structures and Algorithms +1702.04953 Instrumentation and Detectors +1702.04992 +1702.05010 Cosmology and Nongalactic Astrophysics +1702.05869 Theory +1702.06186 Learning +1702.06230 Learning +1702.06549 Solar and Stellar Astrophysics +1702.06629 Theory +1702.06683 Computer Vision and Pattern Recognition +1702.06837 Plasma Physics +1702.07033 Differential Geometry +1702.07047 Exactly Solvable and Integrable Systems +1702.07365 Number Theory +1702.07446 Mesoscale and Nanoscale Physics +1702.07754 Optimization and Control +1702.07762 Fluid Dynamics +1702.08002 +1702.08089 +1702.08237 Representation Theory +1702.08301 Cryptography and Security +1702.08571 Software Engineering +1702.08619 Theory +1702.08643 Operator Algebras +1702.08790 Cosmology and Nongalactic Astrophysics +1702.08856 Solar and Stellar Astrophysics +1703.00045 Social and Information Networks +1703.00049 Phenomenology +1703.00053 Programming Languages +1703.00158 Solar and Stellar Astrophysics +1703.00206 Software Engineering +1703.00236 Data Structures and Algorithms +1703.00250 Phenomenology +1703.00272 Optimization and Control +1703.00307 +1703.00312 Computer Vision and Pattern Recognition +1703.00353 Statistics Theory +1703.00358 High Energy Astrophysical Phenomena +1703.00371 Machine Learning +1703.00420 Robotics +1703.00444 Other Computer Science +1703.00446 Computational Engineering, Finance, and Science +1703.00447 +1703.00448 Phenomenology +1703.00449 Astrophysics of Galaxies +1703.00450 Astrophysics of Galaxies +1703.00451 Phenomenology +1703.00452 Phenomenology +1703.00454 +1703.00455 Theory +1703.00456 Theory +1703.00457 Astrophysics of Galaxies +1703.00458 Astrophysics of Galaxies +1703.00459 Mesoscale and Nanoscale Physics +1703.00460 High Energy Astrophysical Phenomena +1703.00461 Optimization and Control +1703.00462 Theory +1703.00463 Solar and Stellar Astrophysics +1703.00464 Mesoscale and Nanoscale Physics +1703.00465 Astrophysics of Galaxies +1703.00466 +1703.00467 Geophysics +1703.00468 Geophysics +1703.00469 Statistics Theory +1703.00471 Information Theory +1703.00472 Robotics +1703.00473 Instrumentation and Methods for Astrophysics +1703.00474 Earth and Planetary Astrophysics +1703.00475 Cryptography and Security +1703.00476 Portfolio Management +1703.00477 Robotics +1703.00478 Phenomenology +1703.00479 Instrumentation and Detectors +1703.00480 +1703.00481 Medical Physics +1703.00482 Information Theory +1703.00484 Computer Science and Game Theory +1703.00485 Statistical Finance +1703.00486 Optics +1703.00488 Algebraic Geometry +1703.00489 +1703.00490 Instrumentation and Methods for Astrophysics +1703.00491 Probability +1703.00493 +1703.00494 Combinatorics +1703.00495 Computer Vision and Pattern Recognition +1703.00496 Solar and Stellar Astrophysics +1703.00498 Strongly Correlated Electrons +1703.00499 Materials Science +1703.00500 Information Theory +1703.00502 +1703.00503 Robotics +1703.00505 Probability +1703.00506 Solar and Stellar Astrophysics +1703.00507 Probability +1703.00508 Instrumentation and Detectors +1703.00509 Commutative Algebra +1703.00510 Strongly Correlated Electrons +1703.00512 Learning +1703.00513 Instrumentation and Detectors +1703.00514 Theory +1703.00515 Analysis of PDEs +1703.00517 +1703.00518 Information Retrieval +1703.00519 +1703.00520 Networking and Internet Architecture +1703.00521 Graphics +1703.00522 Learning +1703.00523 Computer Vision and Pattern Recognition +1703.00524 Metric Geometry +1703.00525 Networking and Internet Architecture +1703.00527 Soft Condensed Matter +1703.00528 High Energy Astrophysical Phenomena +1703.00531 Quantum Algebra +1703.00532 Optimization and Control +1703.00533 Physics and Society +1703.00534 Computer Vision and Pattern Recognition +1703.00536 Cryptography and Security +1703.00537 Instrumentation and Methods for Astrophysics +1703.00539 Statistics Theory +1703.00540 Dynamical Systems +1703.00542 Statistics Theory +1703.00543 +1703.00544 Computational Complexity +1703.00546 Operator Algebras +1703.00547 Cell Behavior +1703.00549 Human-Computer Interaction +1703.00550 Mesoscale and Nanoscale Physics +1703.00551 Computer Vision and Pattern Recognition +1703.00552 Computer Vision and Pattern Recognition +1703.00553 Optics +1703.00554 Optics +1703.00555 Computer Vision and Pattern Recognition +1703.00557 Learning +1703.00558 Systems and Control +1703.00559 +1703.00560 Learning +1703.00561 Learning +1703.00562 Strongly Correlated Electrons +1703.00563 Algebraic Geometry +1703.00564 Learning +1703.00566 Solar and Stellar Astrophysics +1703.00567 Classical Analysis and ODEs +1703.00569 Category Theory +1703.00571 History and Philosophy of Physics +1703.00572 Computation and Language +1703.00574 Optics +1703.00575 Data Structures and Algorithms +1703.00576 Soft Condensed Matter +1703.00577 Computer Vision and Pattern Recognition +1703.00579 Machine Learning +1703.00580 Atomic Physics +1703.00583 Earth and Planetary Astrophysics +1703.00584 Instrumentation and Methods for Astrophysics +1703.00585 Quantum Gases +1703.00586 Computer Vision and Pattern Recognition +1703.00587 Plasma Physics +1703.00588 Plasma Physics +1703.00590 +1703.00591 Numerical Analysis +1703.00592 Algebraic Geometry +1703.00593 Learning +1703.00594 +1703.00595 Statistical Mechanics +1703.00596 Medical Physics +1703.00597 Computational Physics +1703.00600 Theory +1703.00601 +1703.00603 Geometric Topology +1703.00604 Methodology +1703.00605 Materials Science +1703.00606 Combinatorics +1703.00607 Computation and Language +1703.00608 Optimization and Control +1703.00609 Combinatorics +1703.00610 +1703.00611 Fluid Dynamics +1703.00612 +1703.00613 Earth and Planetary Astrophysics +1703.00614 Other Condensed Matter +1703.00615 Materials Science +1703.00616 Geometric Topology +1703.00617 Learning +1703.00618 Mesoscale and Nanoscale Physics +1703.00619 Software Engineering +1703.00620 Optics +1703.00622 +1703.00624 +1703.00626 Distributed, Parallel, and Cluster Computing +1703.00630 Functional Analysis +1703.00632 Computer Science and Game Theory +1703.00633 Multimedia +1703.00635 Group Theory +1703.00636 Algebraic Geometry +1703.00638 Theory +1703.00639 +1703.00640 Symbolic Computation +1703.00641 Information Theory +1703.00642 Representation Theory +1703.00643 Instrumentation and Methods for Astrophysics +1703.00644 Instrumentation and Detectors +1703.00645 Computer Vision and Pattern Recognition +1703.00646 Strongly Correlated Electrons +1703.00647 Statistics Theory +1703.00648 +1703.00649 Materials Science +1703.00651 Cosmology and Nongalactic Astrophysics +1703.00652 Number Theory +1703.00656 +1703.00657 Astrophysics of Galaxies +1703.00658 Optimization and Control +1703.00659 Programming Languages +1703.00661 Astrophysics of Galaxies +1703.00662 Information Theory +1703.00663 Numerical Analysis +1703.00664 Probability +1703.00666 Combinatorics +1703.00668 Dynamical Systems +1703.00669 Mesoscale and Nanoscale Physics +1703.00670 +1703.00671 Mesoscale and Nanoscale Physics +1703.00672 Analysis of PDEs +1703.00674 Artificial Intelligence +1703.00677 Functional Analysis +1703.00678 Analysis of PDEs +1703.00679 Pattern Formation and Solitons +1703.00681 Algebraic Geometry +1703.00683 Computer Science and Game Theory +1703.00684 Number Theory +1703.00686 Computer Vision and Pattern Recognition +1703.00687 Data Structures and Algorithms +1703.00688 Robotics +1703.00689 Fluid Dynamics +1703.00690 Genomics +1703.00691 Analysis of PDEs +1703.00692 +1703.00693 +1703.00694 Solar and Stellar Astrophysics +1703.00695 General Topology +1703.00696 Information Theory +1703.00697 Theory +1703.00698 Neurons and Cognition +1703.00699 Data Structures and Algorithms +1703.00700 Number Theory +1703.00701 Phenomenology +1703.00702 Algebraic Geometry +1703.00704 Materials Science +1703.00705 Solar and Stellar Astrophysics +1703.00706 Optics +1703.00707 Information Theory +1703.00708 Plasma Physics +1703.00709 Combinatorics +1703.00710 Algebraic Geometry +1703.00711 Optics +1703.00712 Materials Science +1703.00714 Information Theory +1703.00715 Statistical Mechanics +1703.00718 Rings and Algebras +1703.00719 Instrumentation and Detectors +1703.00720 Solar and Stellar Astrophysics +1703.00721 Fluid Dynamics +1703.00722 Phenomenology +1703.00723 Information Theory +1703.00724 Strongly Correlated Electrons +1703.00726 Cryptography and Security +1703.00727 Robotics +1703.00728 Mesoscale and Nanoscale Physics +1703.00729 Learning +1703.00730 Analysis of PDEs +1703.00731 Networking and Internet Architecture +1703.00732 Pattern Formation and Solitons +1703.00733 Functional Analysis +1703.00734 Machine Learning +1703.00735 Solar and Stellar Astrophysics +1703.00736 Theory +1703.00737 Learning +1703.00739 Solar and Stellar Astrophysics +1703.00740 Astrophysics of Galaxies +1703.00741 Commutative Algebra +1703.00742 Number Theory +1703.00743 Numerical Analysis +1703.00744 Optimization and Control +1703.00745 Information Theory +1703.00746 Commutative Algebra +1703.00747 Spectral Theory +1703.00748 Molecular Networks +1703.00749 Computational Physics +1703.00751 Analysis of PDEs +1703.00752 Analysis of PDEs +1703.00753 Materials Science +1703.00755 Algebraic Geometry +1703.00756 Commutative Algebra +1703.00757 Learning +1703.00758 Algebraic Geometry +1703.00759 Computers and Society +1703.00760 Artificial Intelligence +1703.00761 Information Theory +1703.00762 Astrophysics of Galaxies +1703.00764 +1703.00765 Statistical Mechanics +1703.00766 Commutative Algebra +1703.00768 Software Engineering +1703.00769 Statistical Mechanics +1703.00770 Algebraic Geometry +1703.00771 Metric Geometry +1703.00772 Materials Science +1703.00773 Soft Condensed Matter +1703.00774 Analysis of PDEs +1703.00775 Astrophysics of Galaxies +1703.00776 Soft Condensed Matter +1703.00777 Analysis of PDEs +1703.00779 +1703.00780 Strongly Correlated Electrons +1703.00782 Computation and Language +1703.00783 Phenomenology +1703.00784 +1703.00786 Computation and Language +1703.00787 Machine Learning +1703.00788 Learning +1703.00789 Chemical Physics +1703.00790 Instrumentation and Detectors +1703.00791 Theory +1703.00792 Computer Vision and Pattern Recognition +1703.00793 Analysis of PDEs +1703.00794 Superconductivity +1703.00795 Mesoscale and Nanoscale Physics +1703.00796 Multimedia +1703.00797 Medical Physics +1703.00798 Materials Science +1703.00799 Soft Condensed Matter +1703.00800 Social and Information Networks +1703.00801 Plasma Physics +1703.00802 Solar and Stellar Astrophysics +1703.00803 +1703.00804 +1703.00805 Materials Science +1703.00806 Mesoscale and Nanoscale Physics +1703.00808 +1703.00809 Quantum Gases +1703.00811 Analysis of PDEs +1703.00812 Robotics +1703.00814 Data Analysis, Statistics and Probability +1703.00815 +1703.00816 Mesoscale and Nanoscale Physics +1703.00817 Multimedia +1703.00818 Human-Computer Interaction +1703.00819 Algebraic Geometry +1703.00820 General Physics +1703.00822 +1703.00824 Soft Condensed Matter +1703.00825 Quantum Gases +1703.00826 Number Theory +1703.00827 Probability +1703.00828 Phenomenology +1703.00829 Numerical Analysis +1703.00830 Data Structures and Algorithms +1703.00831 Phenomenology +1703.00833 +1703.00834 Analysis of PDEs +1703.00836 +1703.00837 Learning +1703.00838 Artificial Intelligence +1703.00839 Machine Learning +1703.00840 Theory +1703.00842 Lattice +1703.00843 Solar and Stellar Astrophysics +1703.00845 Computer Vision and Pattern Recognition +1703.00847 Learning +1703.00848 Computer Vision and Pattern Recognition +1703.00849 Networking and Internet Architecture +1703.00850 Differential Geometry +1703.00851 Classical Analysis and ODEs +1703.00852 Classical Analysis and ODEs +1703.00853 Molecular Networks +1703.00854 Learning +1703.00855 Statistical Mechanics +1703.00856 Computer Vision and Pattern Recognition +1703.00857 Social and Information Networks +1703.00862 Computer Vision and Pattern Recognition +1703.00863 Superconductivity +1703.00864 Machine Learning +1703.00865 +1703.00868 Learning +1703.00869 Superconductivity +1703.00870 Algebraic Geometry +1703.00871 Statistics Theory +1703.00872 Optics +1703.00873 Phenomenology +1703.00874 +1703.00875 Optimization and Control +1703.00877 Solar and Stellar Astrophysics +1703.00879 Cosmology and Nongalactic Astrophysics +1703.00880 Representation Theory +1703.00881 Analysis of PDEs +1703.00882 Functional Analysis +1703.00883 Solar and Stellar Astrophysics +1703.00884 Probability +1703.00885 Number Theory +1703.00886 Optics +1703.00887 Learning +1703.00888 Mesoscale and Nanoscale Physics +1703.00889 +1703.00891 Analysis of PDEs +1703.00892 Atomic Physics +1703.00893 Learning +1703.00894 Cosmology and Nongalactic Astrophysics +1703.00895 Quantitative Methods +1703.00897 Operating Systems +1703.00898 Probability +1703.00899 Computer Science and Game Theory +1703.00900 Data Structures and Algorithms +1703.00901 Analysis of PDEs +1703.00902 Theory +cond-mat/0703290 Superconductivity +0907.0858 Optics +1103.4685 Differential Geometry +1106.2623 Dynamical Systems +1112.4003 +1212.1889 Strongly Correlated Electrons +1302.1999 Probability +1302.5626 Rings and Algebras +1303.4622 Optimization and Control +1306.0819 Combinatorics +1306.3176 Algebraic Geometry +1309.4648 Numerical Analysis +1402.1917 Optimization and Control +1405.0223 Numerical Analysis +1406.1459 Theory +1408.2161 Popular Physics +1408.4500 Optimization and Control +1411.2267 Group Theory +1412.3510 Computation +1501.07689 Strongly Correlated Electrons +1503.05447 Quantum Algebra +1504.04781 +1505.03256 Combinatorics +1505.04416 Analysis of PDEs +1506.04704 Physics and Society +1506.08230 Learning +1506.08518 Data Structures and Algorithms +1507.04308 Social and Information Networks +1507.07643 Operator Algebras +1507.08161 Phenomenology +1508.02799 Number Theory +1508.03117 Information Theory +1509.05725 Artificial Intelligence +1509.05793 Statistical Mechanics +1509.07442 Numerical Analysis +1509.08185 Statistics Theory +1510.00634 Data Structures and Algorithms +1510.04799 Molecular Networks +1510.07933 Optimization and Control +1511.00824 Category Theory +1511.03517 Number Theory +1511.05673 Metric Geometry +1511.09469 Combinatorics +1512.02844 Combinatorics +1512.07538 Cosmology and Nongalactic Astrophysics +1512.08872 Optimization and Control +1601.00021 K-Theory and Homology +1601.03092 Symplectic Geometry +1601.04941 Cosmology and Nongalactic Astrophysics +1601.07137 +1602.02295 Theory +1602.05984 Analysis of PDEs +1602.07561 +1602.07670 Cosmology and Nongalactic Astrophysics +1603.00686 +1603.01780 Solar and Stellar Astrophysics +1603.01946 Quantum Gases +1603.03953 Mesoscale and Nanoscale Physics +1603.03996 +1603.06057 Materials Science +1603.07629 Theory +1603.07781 Spectral Theory +1603.09665 General Mathematics +1604.01949 +1604.02236 Materials Science +1604.02938 Combinatorics +1604.03439 Number Theory +1604.04165 Differential Geometry +1604.04648 Mesoscale and Nanoscale Physics +1604.08682 +1605.01611 Theory +1605.02722 Cosmology and Nongalactic Astrophysics +1605.06802 Computational Physics +1606.00955 Social and Information Networks +1606.01189 Theory +1606.01932 Quantitative Methods +1606.02841 Strongly Correlated Electrons +1606.02868 Discrete Mathematics +1606.03082 Other Condensed Matter +1606.03812 Mesoscale and Nanoscale Physics +1606.05024 Superconductivity +1606.07343 Superconductivity +1606.09449 Artificial Intelligence +1607.00124 Strongly Correlated Electrons +1607.01378 +1607.01471 Cryptography and Security +1607.01667 Mesoscale and Nanoscale Physics +1607.01904 Computation +1607.03035 Probability +1607.03042 +1607.03855 Applications +1607.03914 Social and Information Networks +1608.00060 Machine Learning +1608.02209 Machine Learning +1608.02465 Mesoscale and Nanoscale Physics +1608.03395 Superconductivity +1608.03560 Experiment +1608.04151 Group Theory +1608.04352 Materials Science +1608.05875 Chaotic Dynamics +1609.02638 Computer Vision and Pattern Recognition +1609.03332 Quantum Gases +1609.04923 Number Theory +1609.05591 Statistical Mechanics +1609.06025 Algebraic Geometry +1609.06354 Artificial Intelligence +1609.07097 +1609.08835 K-Theory and Homology +1609.09204 Mesoscale and Nanoscale Physics +1610.00220 Strongly Correlated Electrons +1610.00249 Materials Science +1610.00979 General Physics +1610.01540 Statistical Mechanics +1610.01663 Plasma Physics +1610.01868 Number Theory +1610.02856 Plasma Physics +1610.03023 Computer Vision and Pattern Recognition +1610.03592 Learning +1610.05004 +1610.05120 Data Structures and Algorithms +1610.05150 Computation and Language +1610.06860 Methodology +1611.00700 Phenomenology +1611.01380 Representation Theory +1611.02932 +1611.05552 Computer Vision and Pattern Recognition +1611.05844 Representation Theory +1611.06896 Differential Geometry +1611.07071 +1611.07088 Number Theory +1611.08916 Earth and Planetary Astrophysics +1611.09017 Discrete Mathematics +1612.00600 Quantum Gases +1612.01313 Information Theory +1612.01363 Combinatorics +1612.01475 Statistical Mechanics +1612.01731 Algebraic Geometry +1612.01756 Learning +1612.03423 +1612.03449 Networking and Internet Architecture +1612.03843 Symplectic Geometry +1612.04294 Atomic Physics +1612.04697 +1612.04950 Phenomenology +1612.05069 Quantum Gases +1612.06431 Probability +1612.06732 Superconductivity +1612.07429 Computer Vision and Pattern Recognition +1612.08042 Atomic Physics +1612.08241 Solar and Stellar Astrophysics +1612.08280 Statistics Theory +1612.08385 Combinatorics +1612.08411 Analysis of PDEs +1612.08440 Social and Information Networks +1612.08714 Machine Learning +1612.08768 Computational Physics +1612.08905 Strongly Correlated Electrons +1612.09047 Phenomenology +1612.09086 Phenomenology +1612.09089 Sound +1612.09150 Sound +1612.09184 Strongly Correlated Electrons +1612.09225 Combinatorics +1612.09252 Information Theory +1612.09262 Computational Engineering, Finance, and Science +1612.09302 Solar and Stellar Astrophysics +1612.09306 +1612.09308 +1612.09310 History and Philosophy of Physics +1612.09311 History and Philosophy of Physics +1612.09312 History and Philosophy of Physics +1612.09313 Physics and Society +1612.09314 History and Philosophy of Physics +1612.09315 Chemical Physics +1612.09316 Information Theory +1612.09317 Classical Physics +1612.09318 Atomic Physics +1612.09319 Classical Physics +1612.09320 Solar and Stellar Astrophysics +1612.09321 Physics and Society +1612.09323 Classical Analysis and ODEs +1612.09325 Computers and Society +1612.09326 Computational Physics +1612.09327 Computation and Language +1612.09328 Learning +1612.09329 Phenomenology +1612.09330 Populations and Evolution +1612.09331 Theory +1612.09332 Geometric Topology +1612.09334 Functional Analysis +1612.09335 Numerical Analysis +1612.09336 Lattice +1612.09338 Materials Science +1612.09339 Software Engineering +1612.09340 Applications +1612.09342 Numerical Analysis +1612.09343 Information Theory +1612.09344 Statistical Finance +1612.09345 Phenomenology +1612.09347 Probability +1612.09348 Number Theory +1612.09349 Combinatorics +1612.09351 Populations and Evolution +1612.09352 Human-Computer Interaction +1612.09353 Geometric Topology +1612.09355 Optics +1612.09356 Theory +1612.09357 Computation +1612.09361 Dynamical Systems +1612.09362 Number Theory +1612.09364 Dynamical Systems +1612.09366 Lattice +1612.09367 Physics and Society +1612.09368 Data Structures and Algorithms +1612.09369 Atmospheric and Oceanic Physics +1612.09374 +1612.09375 Category Theory +1612.09377 High Energy Astrophysical Phenomena +1612.09380 Symplectic Geometry +1612.09381 Superconductivity +1612.09383 Astrophysics of Galaxies +1612.09384 Mesoscale and Nanoscale Physics +1612.09385 Classical Analysis and ODEs +1612.09386 Materials Science +1612.09387 Theory +1612.09388 Data Structures and Algorithms +1612.09389 Strongly Correlated Electrons +1612.09391 Representation Theory +1612.09392 Theory +1612.09394 Programming Languages +1612.09396 Earth and Planetary Astrophysics +1612.09397 Combinatorics +1612.09398 Probability +1612.09399 Optics +1612.09400 Representation Theory +1612.09401 Computer Vision and Pattern Recognition +1612.09403 Accelerator Physics +1612.09404 Numerical Analysis +1612.09406 Algebraic Geometry +1612.09407 Number Theory +1612.09409 Statistical Mechanics +1612.09410 Strongly Correlated Electrons +1612.09411 Computer Vision and Pattern Recognition +1612.09412 Quantum Algebra +1612.09414 Probability +1612.09416 Cosmology and Nongalactic Astrophysics +1612.09418 Analysis of PDEs +1612.09419 Phenomenology +1612.09420 Tissues and Organs +1612.09421 Analysis of PDEs +1612.09422 Analysis of PDEs +1612.09423 Cryptography and Security +1612.09424 Mesoscale and Nanoscale Physics +1612.09426 Distributed, Parallel, and Cluster Computing +1612.09427 Group Theory +1612.09428 Number Theory +1612.09430 Representation Theory +1612.09432 +1612.09433 Artificial Intelligence +1612.09434 Computational Geometry +1612.09435 Social and Information Networks +1612.09436 Discrete Mathematics +1612.09437 Mesoscale and Nanoscale Physics +1612.09439 Algebraic Geometry +1612.09440 Probability +1612.09441 Instrumentation and Methods for Astrophysics +1612.09442 Astrophysics of Galaxies +1612.09443 Combinatorics +1612.09444 +1612.09446 Differential Geometry +1612.09447 Computational Engineering, Finance, and Science +1612.09448 Group Theory +1612.09450 Instrumentation and Methods for Astrophysics +1612.09451 Complex Variables +1612.09452 History and Overview +1612.09455 Materials Science +1612.09457 Probability +1612.09460 Instrumentation and Methods for Astrophysics +1612.09461 High Energy Astrophysical Phenomena +1612.09462 Social and Information Networks +1612.09464 +1612.09465 Learning +1612.09466 Machine Learning +1612.09467 Number Theory +1612.09468 Materials Science +1612.09470 +1612.09471 Numerical Analysis +1612.09472 High Energy Astrophysical Phenomena +1612.09473 High Energy Astrophysical Phenomena +1612.09474 Populations and Evolution +1612.09475 Algebraic Topology +1612.09476 +1612.09477 +1612.09478 Genomics +1612.09480 Social and Information Networks +1612.09481 Number Theory +1612.09482 Category Theory +1612.09484 +1612.09486 Tissues and Organs +1612.09487 Combinatorics +1612.09488 Optics +1612.09489 +1612.09490 Disordered Systems and Neural Networks +1612.09491 Computational Physics +1612.09492 Probability +1612.09493 Differential Geometry +1612.09494 Quantum Gases +1612.09495 Information Theory +1612.09496 Information Theory +1612.09497 High Energy Astrophysical Phenomena +1612.09498 History and Philosophy of Physics +1612.09499 Quantitative Methods +1612.09500 Optimization and Control +1612.09503 Theory +1612.09504 Logic in Computer Science +1612.09505 Theory +1612.09506 Machine Learning +1612.09510 Geometric Topology +1612.09511 +1612.09513 Theory +1612.09514 Logic in Computer Science +1612.09515 Strongly Correlated Electrons +1612.09516 Experiment +1612.09517 Chemical Physics +1612.09518 Quantitative Methods +1612.09519 Algebraic Geometry +1612.09520 Information Theory +1612.09521 +1612.09522 Data Analysis, Statistics and Probability +1612.09524 Computer Vision and Pattern Recognition +1612.09526 Algebraic Geometry +1612.09527 Cryptography and Security +1612.09528 Instrumentation and Methods for Astrophysics +1612.09529 Learning +1612.09530 Category Theory +1612.09531 +1612.09532 Performance +1612.09534 Networking and Internet Architecture +1612.09535 Information Retrieval +1612.09538 Analysis of PDEs +1612.09539 Accelerator Physics +1612.09542 Computer Vision and Pattern Recognition +1612.09543 Accelerator Physics +1612.09545 Theory +1612.09546 Number Theory +1612.09548 Computer Vision and Pattern Recognition +1612.09549 Economics +1612.09550 Biological Physics +1612.09552 +1612.09553 Economics +1612.09554 Combinatorics +1612.09556 Phenomenology +1612.09557 Mesoscale and Nanoscale Physics +1612.09558 Numerical Analysis +1612.09559 Theory +1612.09561 Applications +1612.09562 Solar and Stellar Astrophysics +1612.09563 Physics Education +1612.09565 Information Theory +1612.09566 +1612.09568 Strongly Correlated Electrons +1612.09569 Operator Algebras +1612.09571 Instrumentation and Detectors +1612.09573 Classical Analysis and ODEs +1612.09574 Information Retrieval +1612.09575 Theory +1612.09576 Distributed, Parallel, and Cluster Computing +1612.09577 +1612.09579 High Energy Astrophysical Phenomena +1612.09580 Theory +1612.09583 Probability +1612.09584 Strongly Correlated Electrons +1612.09585 Methodology +1612.09586 Analysis of PDEs +1612.09590 Number Theory +1612.09591 Artificial Intelligence +1612.09592 Information Theory +1612.09593 Artificial Intelligence +1612.09595 Populations and Evolution +1612.09596 Applications +1612.09597 Fluid Dynamics +1612.09598 +1612.09599 Statistical Mechanics +0704.2108 +0705.1771 +0705.2017 +0706.0278 +0706.4146 +0707.2425 +0707.2987 General Physics +0707.3867 +0707.4074 +0707.4342 +0708.0073 +0708.1201 +0708.1804 +0708.2002 +0708.3536 +0708.3833 +0708.4227 +0709.1580 +0709.3151 +0710.0382 +0711.1201 +0711.1454 +0711.2715 +0711.2853 +0711.2962 +0712.0280 +0712.0874 +0712.0877 +0712.1866 +0801.2432 +0802.0240 +0803.0172 +0803.0173 +0803.0616 +0803.3418 +0803.3813 +0804.3495 Representation Theory +0805.0054 +0808.0363 +0808.2693 +0808.3022 +0808.3806 +0809.0552 +0809.2853 +0810.0529 +0811.1403 +0811.2867 +0906.0765 Astrophysics of Galaxies +1002.4160 Cosmology and Nongalactic Astrophysics +1002.4940 Astrophysics of Galaxies +1003.4386 High Energy Astrophysical Phenomena +1007.1262 Solar and Stellar Astrophysics +1008.3914 Cosmology and Nongalactic Astrophysics +1102.3109 High Energy Astrophysical Phenomena +1103.4927 Solar and Stellar Astrophysics +1104.0540 Solar and Stellar Astrophysics +1105.5123 Symplectic Geometry +1108.2134 Astrophysics of Galaxies +1108.3746 Dynamical Systems +1109.5949 Cosmology and Nongalactic Astrophysics +1111.2963 Algebraic Geometry +1112.6267 Astrophysics of Galaxies +1202.4407 Numerical Analysis +1202.5079 Cosmology and Nongalactic Astrophysics +1203.4667 Computational Complexity +1206.0547 Cosmology and Nongalactic Astrophysics +1206.6297 History and Philosophy of Physics +1208.4748 +1211.4692 Astrophysics of Galaxies +1212.6721 Cosmology and Nongalactic Astrophysics +1301.4308 Astrophysics of Galaxies +1303.7071 Astrophysics of Galaxies +1304.4081 +1305.5175 Differential Geometry +1308.1850 Chaotic Dynamics +1309.1418 Computational Engineering, Finance, and Science +1309.4178 +1310.3279 Theory +1310.6469 Theory +1310.7993 Differential Geometry +1311.3164 Algebraic Topology +1311.7673 Algebraic Geometry +1312.5662 Differential Geometry +1312.7209 +1401.1911 Instrumentation and Methods for Astrophysics +1401.5549 Differential Geometry +1402.1629 Metric Geometry +1402.3287 Differential Geometry +1402.4908 Astrophysics of Galaxies +1402.5658 Theory +1404.3465 Cryptography and Security +1405.2130 Solar and Stellar Astrophysics +1406.3678 +1407.6098 Astrophysics of Galaxies +1408.0937 Number Theory +1408.7050 Representation Theory +1409.0451 Computational Complexity +1409.0846 Number Theory +1410.0871 Combinatorics +1410.2224 Strongly Correlated Electrons +1410.7395 Solar and Stellar Astrophysics +1410.8066 Theory +1410.8833 +1411.7513 High Energy Astrophysical Phenomena +1412.0113 Optimization and Control +1412.7135 Number Theory +1501.00426 Complex Variables +1502.00098 Optimization and Control +1502.01024 Cosmology and Nongalactic Astrophysics +1502.02294 Cosmology and Nongalactic Astrophysics +1502.03563 Cosmology and Nongalactic Astrophysics +1502.03994 Cosmology and Nongalactic Astrophysics +1502.05330 +1502.06202 Quantum Gases +1502.07520 Commutative Algebra +1503.03070 Astrophysics of Galaxies +1504.01384 Solar and Stellar Astrophysics +1504.03263 Number Theory +1505.01203 Strongly Correlated Electrons +1506.00910 Analysis of PDEs +1506.01453 +1506.03754 Algebraic Geometry +1506.05876 Differential Geometry +1506.07558 Algebraic Geometry +1506.08052 Computation and Language +1506.09062 +1507.00372 +1507.02157 Operator Algebras +1507.04672 Phenomenology +1507.05287 Phenomenology +1507.08228 Fluid Dynamics +1508.01535 Algebraic Geometry +1508.04484 Combinatorics +1508.04609 Probability +1508.05963 Combinatorics +1509.01342 Algebraic Geometry +1509.04888 +1509.06512 Representation Theory +1509.06947 Information Theory +1509.07484 Strongly Correlated Electrons +1509.08898 Analysis of PDEs +1510.00267 Algebraic Geometry +1510.00276 Functional Analysis +1510.01712 Algebraic Geometry +1510.03320 Theory +1510.03869 Astrophysics of Galaxies +1510.04612 Biomolecules +1510.04785 Theory +1510.07600 Cosmology and Nongalactic Astrophysics +1511.00319 Systems and Control +1511.00349 +1511.01513 Information Theory +1511.03294 Astrophysics of Galaxies +1511.04676 Commutative Algebra +1511.07022 +1511.09053 Phenomenology +1512.00732 +1512.04959 High Energy Astrophysical Phenomena +1512.06669 Quantum Gases +1512.09282 Astrophysics of Galaxies +1601.00246 Optimization and Control +1601.00967 Astrophysics of Galaxies +1601.01460 +1601.02993 Analysis of PDEs +1601.03043 Earth and Planetary Astrophysics +1601.03259 General Mathematics +1601.05002 Discrete Mathematics +1601.05353 Computational Complexity +1601.05360 Computational Complexity +1601.05683 Computational Complexity +1601.05772 Statistical Mechanics +1601.07370 +1602.00520 Numerical Analysis +1602.01846 Astrophysics of Galaxies +1602.02115 Astrophysics of Galaxies +1602.02236 Astrophysics of Galaxies +1602.02551 Optics +1602.02654 Operator Algebras +1602.02760 High Energy Astrophysical Phenomena +1602.02992 Software Engineering +1602.04687 Representation Theory +1602.04856 Astrophysics of Galaxies +1602.05241 Probability +1602.08232 Information Theory +1602.08587 Quantum Algebra +1603.00020 Earth and Planetary Astrophysics +1603.00034 Astrophysics of Galaxies +1603.00151 +1603.00291 Solar and Stellar Astrophysics +1603.00890 +1603.01028 Phenomenology +1603.02247 Soft Condensed Matter +1603.03068 Combinatorics +1603.04641 Computer Science and Game Theory +1603.05123 High Energy Astrophysical Phenomena +1603.05248 Phenomenology +1603.06755 Atmospheric and Oceanic Physics +1603.06811 Theory +1603.07047 Solar and Stellar Astrophysics +1603.07444 High Energy Astrophysical Phenomena +1603.07815 Combinatorics +1603.07861 +1603.08100 Algebraic Topology +1603.08173 +1603.08628 Statistical Mechanics +1603.09391 Earth and Planetary Astrophysics +1604.00188 +1604.00378 Solar and Stellar Astrophysics +1604.00675 General Physics +1604.00885 Phenomenology +1604.01051 Astrophysics of Galaxies +1604.01609 Mesoscale and Nanoscale Physics +1604.01704 Commutative Algebra +1604.02046 +1604.02148 High Energy Astrophysical Phenomena +1604.02290 Cosmology and Nongalactic Astrophysics +1604.02629 Algebraic Geometry +1604.02794 High Energy Astrophysical Phenomena +1604.03399 Materials Science +1604.04183 +1604.04207 Distributed, Parallel, and Cluster Computing +1604.04683 Neurons and Cognition +1604.05396 Complex Variables +1604.05474 Statistical Mechanics +1604.05505 Functional Analysis +1604.05956 Quantum Algebra +1604.06262 Mesoscale and Nanoscale Physics +1604.06448 Algebraic Topology +1604.06511 Statistics Theory +1604.06584 +1604.06669 Superconductivity +1604.06684 Materials Science +1604.06986 Differential Geometry +1604.07033 Astrophysics of Galaxies +1604.08272 Dynamical Systems +1604.08532 Earth and Planetary Astrophysics +1605.00069 Social and Information Networks +1605.00461 Atmospheric and Oceanic Physics +1605.00575 Phenomenology +1605.02080 +1605.02310 Probability +1605.02850 Astrophysics of Galaxies +1605.02881 Astrophysics of Galaxies +1605.03184 High Energy Astrophysical Phenomena +1605.03584 Earth and Planetary Astrophysics +1605.03733 Systems and Control +1605.03903 Materials Science +1605.04058 Materials Science +1605.04319 Cosmology and Nongalactic Astrophysics +1605.04605 High Energy Astrophysical Phenomena +1605.04648 +1605.05283 Cosmology and Nongalactic Astrophysics +1605.05333 Cosmology and Nongalactic Astrophysics +1605.05360 Solar and Stellar Astrophysics +1605.05971 Astrophysics of Galaxies +1605.06169 Experiment +1605.06258 Statistical Mechanics +1605.06769 Earth and Planetary Astrophysics +1605.07146 Computer Vision and Pattern Recognition +1605.07326 Mesoscale and Nanoscale Physics +1605.08047 Strongly Correlated Electrons +1605.08088 Algebraic Geometry +1605.08093 Algebraic Geometry +1605.08570 +1605.08653 +1605.09388 Astrophysics of Galaxies +1605.09410 Learning +1605.09588 Mesoscale and Nanoscale Physics +1605.09731 Theory +1606.00227 Astrophysics of Galaxies +1606.00243 Mesoscale and Nanoscale Physics +1606.00305 Computer Vision and Pattern Recognition +1606.00441 Cosmology and Nongalactic Astrophysics +1606.00695 Instrumentation and Methods for Astrophysics +1606.00719 Instrumentation and Methods for Astrophysics +1606.00849 Theory +1606.02358 Solar and Stellar Astrophysics +1606.02565 Theory +1606.02724 Theory +1606.03108 Disordered Systems and Neural Networks +1606.03247 Superconductivity +1606.03727 Instrumentation and Methods for Astrophysics +1606.04522 Materials Science +1606.04545 Cosmology and Nongalactic Astrophysics +1606.04966 Astrophysics of Galaxies +1606.05474 Earth and Planetary Astrophysics +1606.05659 Algebraic Geometry +1606.06221 Phenomenology +1606.06642 +1606.06750 Soft Condensed Matter +1606.06778 Fluid Dynamics +1606.07375 Solar and Stellar Astrophysics +1606.07650 Soft Condensed Matter +1606.07821 Phenomenology +1606.08197 +1606.08469 Astrophysics of Galaxies +1606.09138 Algebraic Geometry +1606.09181 Materials Science +1606.09283 Strongly Correlated Electrons +1606.09396 Instrumentation and Methods for Astrophysics +1607.00043 Cosmology and Nongalactic Astrophysics +1607.01027 Optimization and Control +1607.01385 Phenomenology +1607.01394 Astrophysics of Galaxies +1607.01622 Disordered Systems and Neural Networks +1607.01788 Astrophysics of Galaxies +1607.01797 +1607.01805 Mesoscale and Nanoscale Physics +1607.01825 Instrumentation and Methods for Astrophysics +1607.02332 Algebraic Topology +1607.02415 Instrumentation and Methods for Astrophysics +1607.03143 Cosmology and Nongalactic Astrophysics +1607.03197 Methodology +1607.03308 Representation Theory +1607.03427 High Energy Astrophysical Phenomena +1607.03448 Instrumentation and Methods for Astrophysics +1607.03560 Superconductivity +1607.03784 +1607.03966 Cosmology and Nongalactic Astrophysics +1607.04509 Optimization and Control +1607.04567 Instrumentation and Methods for Astrophysics +1607.04596 Computational Engineering, Finance, and Science +1607.04668 Instrumentation and Methods for Astrophysics +1607.04891 Earth and Planetary Astrophysics +1607.04981 Combinatorics +1607.05141 Theory +1607.05252 Materials Science +1607.05362 Theory +1607.05544 Materials Science +1607.05686 Materials Science +1607.05754 Instrumentation and Methods for Astrophysics +1607.05900 Phenomenology +1607.06064 Instrumentation and Methods for Astrophysics +1607.06172 Instrumentation and Methods for Astrophysics +1607.06523 Plasma Physics +1607.06551 Phenomenology +1607.06848 Spectral Theory +1607.06861 Instrumentation and Methods for Astrophysics +1607.06873 Probability +1607.07090 Lattice +1607.07140 Cosmology and Nongalactic Astrophysics +1607.07227 Instrumentation and Methods for Astrophysics +1607.07299 Instrumentation and Methods for Astrophysics +1607.07327 Experiment +1607.07382 Strongly Correlated Electrons +1607.07765 Digital Libraries +1607.07839 Mesoscale and Nanoscale Physics +1607.07921 Optics +1607.08157 Instrumentation and Methods for Astrophysics +1607.08219 Theory +1607.08248 Solar and Stellar Astrophysics +1608.00133 Strongly Correlated Electrons +1608.00214 Distributed, Parallel, and Cluster Computing +1608.00275 Physics and Society +1608.00452 +1608.00691 +1608.01108 Superconductivity +1608.01323 Cosmology and Nongalactic Astrophysics +1608.01368 Materials Science +1608.01567 Numerical Analysis +1608.01695 +1608.02523 General Finance +1608.02810 +1608.03025 Instrumentation and Methods for Astrophysics +1608.03148 +1608.03545 Distributed, Parallel, and Cluster Computing +1608.03549 Distributed, Parallel, and Cluster Computing +1608.03562 Mesoscale and Nanoscale Physics +1608.04088 Instrumentation and Methods for Astrophysics +1608.04160 Cosmology and Nongalactic Astrophysics +1608.04216 Cosmology and Nongalactic Astrophysics +1608.04227 High Energy Astrophysical Phenomena +1608.04390 Solar and Stellar Astrophysics +1608.04559 Phenomenology +1608.04678 Mesoscale and Nanoscale Physics +1608.04762 Astrophysics of Galaxies +1608.04916 Number Theory +1608.04979 Chemical Physics +1608.05076 Astrophysics of Galaxies +1608.05085 Astrophysics of Galaxies +1608.05128 Theory +1608.05219 Mesoscale and Nanoscale Physics +1608.05412 Astrophysics of Galaxies +1608.05478 Mesoscale and Nanoscale Physics +1608.05710 Astrophysics of Galaxies +1608.05795 Lattice +1608.06021 Combinatorics +1608.06104 Phenomenology +1608.06201 Physics and Society +1608.06268 Strongly Correlated Electrons +1608.07044 +1608.07111 Cosmology and Nongalactic Astrophysics +1608.07298 Theory +1608.07648 Cosmology and Nongalactic Astrophysics +1608.08216 Astrophysics of Galaxies +1608.08218 Astrophysics of Galaxies +1608.08230 Instrumentation and Methods for Astrophysics +1608.08279 Instrumentation and Detectors +1608.08496 Solar and Stellar Astrophysics +1608.08520 Combinatorics +1608.08639 Astrophysics of Galaxies +1608.08788 Dynamical Systems +1608.08836 Theory +1608.08891 Instrumentation and Methods for Astrophysics +1608.09007 High Energy Astrophysical Phenomena +1609.00257 +1609.00726 Earth and Planetary Astrophysics +1609.01292 +1609.01354 Soft Condensed Matter +1609.01480 Instrumentation and Methods for Astrophysics +1609.01655 Probability +1609.02060 Instrumentation and Methods for Astrophysics +1609.02350 High Energy Astrophysical Phenomena +1609.02564 Theory +1609.02582 Mesoscale and Nanoscale Physics +1609.02595 Phenomenology +1609.02887 Astrophysics of Galaxies +1609.02904 Strongly Correlated Electrons +1609.03096 Strongly Correlated Electrons +1609.03399 +1609.03880 +1609.03905 Earth and Planetary Astrophysics +1609.03945 Chemical Physics +1609.04013 +1609.04014 Instrumentation and Methods for Astrophysics +1609.04041 Solar and Stellar Astrophysics +1609.04292 +1609.04403 High Energy Astrophysical Phenomena +1609.04726 Astrophysics of Galaxies +1609.05369 Phenomenology +1609.05553 Optics +1609.05595 Instrumentation and Detectors +1609.05897 Astrophysics of Galaxies +1609.05941 Astrophysics of Galaxies +1609.05953 Superconductivity +1609.06008 Solar and Stellar Astrophysics +1609.06445 High Energy Astrophysical Phenomena +1609.06719 Astrophysics of Galaxies +1609.06726 Astrophysics of Galaxies +1609.06914 Earth and Planetary Astrophysics +1609.06928 Materials Science +1609.06971 General Mathematics +1609.07246 Statistical Mechanics +1609.07322 +1609.07503 Earth and Planetary Astrophysics +1609.07658 Experiment +1609.07760 Mesoscale and Nanoscale Physics +1609.08001 Computational Physics +1609.08094 Chemical Physics +1609.08115 Computational Physics +1609.08160 High Energy Astrophysical Phenomena +1609.08222 Mesoscale and Nanoscale Physics +1609.08620 Strongly Correlated Electrons +1609.08635 Earth and Planetary Astrophysics +1609.08942 Cosmology and Nongalactic Astrophysics +1609.09086 Mesoscale and Nanoscale Physics +1609.09102 Materials Science +1609.09135 Earth and Planetary Astrophysics +1609.09845 Strongly Correlated Electrons +1610.00506 Solar and Stellar Astrophysics +1610.00908 Solar and Stellar Astrophysics +1610.00993 Cosmology and Nongalactic Astrophysics +1610.01159 Astrophysics of Galaxies +1610.01194 Astrophysics of Galaxies +1610.01425 Theory +1610.01556 +1610.01573 Solar and Stellar Astrophysics +1610.01580 High Energy Astrophysical Phenomena +1610.01614 Astrophysics of Galaxies +1610.02039 Earth and Planetary Astrophysics +1610.02215 Commutative Algebra +1610.02407 Astrophysics of Galaxies +1610.02444 Materials Science +1610.02485 Astrophysics of Galaxies +1610.02535 Instrumentation and Methods for Astrophysics +1610.02538 Instrumentation and Methods for Astrophysics +1610.03003 +1610.03188 Instrumentation and Methods for Astrophysics +1610.03498 Astrophysics of Galaxies +1610.03594 Astrophysics of Galaxies +1610.03631 High Energy Astrophysical Phenomena +1610.03690 Other Condensed Matter +1610.03813 Solar and Stellar Astrophysics +1610.04047 Earth and Planetary Astrophysics +1610.04234 Cosmology and Nongalactic Astrophysics +1610.04235 Instrumentation and Methods for Astrophysics +1610.04251 Earth and Planetary Astrophysics +1610.04474 Materials Science +1610.04585 Instrumentation and Methods for Astrophysics +1610.04603 Lattice +1610.04634 +1610.05230 Statistical Mechanics +1610.05342 Astrophysics of Galaxies +1610.05633 High Energy Astrophysical Phenomena +1610.05784 Mesoscale and Nanoscale Physics +1610.05786 Solar and Stellar Astrophysics +1610.05949 Robotics +1610.06036 Solar and Stellar Astrophysics +1610.06174 Astrophysics of Galaxies +1610.06184 Solar and Stellar Astrophysics +1610.06546 +1610.06573 High Energy Astrophysical Phenomena +1610.06716 Theory +1610.06753 Phenomenology +1610.07060 Astrophysics of Galaxies +1610.07249 Earth and Planetary Astrophysics +1610.07380 Formal Languages and Automata Theory +1610.07547 +1610.07566 Mesoscale and Nanoscale Physics +1610.07654 Solar and Stellar Astrophysics +1610.07730 Phenomenology +1610.07787 Lattice +1610.07815 Materials Science +1610.07875 Cosmology and Nongalactic Astrophysics +1610.07895 Solar and Stellar Astrophysics +1610.07966 Solar and Stellar Astrophysics +1610.08006 +1610.08139 Instrumentation and Methods for Astrophysics +1610.08281 Solar and Stellar Astrophysics +1610.08458 Geometric Topology +1610.08541 Solar and Stellar Astrophysics +1610.08584 Optics +1610.08720 Mesoscale and Nanoscale Physics +1610.09047 Astrophysics of Galaxies +1610.09289 Information Theory +1610.09648 Atomic Physics +1610.09890 Astrophysics of Galaxies +1611.00015 Earth and Planetary Astrophysics +1611.00039 Astrophysics of Galaxies +1611.00085 +1611.00130 +1611.00153 Earth and Planetary Astrophysics +1611.00303 Learning +1611.00651 +1611.00769 Astrophysics of Galaxies +1611.01271 Astrophysics of Galaxies +1611.01299 Materials Science +1611.01497 Number Theory +1611.01914 Cosmology and Nongalactic Astrophysics +1611.02149 Phenomenology +1611.02386 Statistical Mechanics +1611.02570 Differential Geometry +1611.02578 High Energy Astrophysical Phenomena +1611.02703 Phenomenology +1611.02890 High Energy Astrophysical Phenomena +1611.03037 Theory +1611.03061 Solar and Stellar Astrophysics +1611.03082 Astrophysics of Galaxies +1611.03086 Astrophysics of Galaxies +1611.03094 High Energy Astrophysical Phenomena +1611.03115 Solar and Stellar Astrophysics +1611.03134 Logic +1611.03194 Mesoscale and Nanoscale Physics +1611.03282 Solar and Stellar Astrophysics +1611.03489 High Energy Astrophysical Phenomena +1611.03542 Solar and Stellar Astrophysics +1611.03576 Astrophysics of Galaxies +1611.03689 Strongly Correlated Electrons +1611.03767 Solar and Stellar Astrophysics +1611.03920 Solar and Stellar Astrophysics +1611.03960 Statistical Mechanics +1611.04511 High Energy Astrophysical Phenomena +1611.04598 Phenomenology +1611.04614 Astrophysics of Galaxies +1611.04659 Solar and Stellar Astrophysics +1611.04729 High Energy Astrophysical Phenomena +1611.04731 Cosmology and Nongalactic Astrophysics +1611.04746 Phenomenology +1611.05017 Phenomenology +1611.05043 Solar and Stellar Astrophysics +1611.05347 Solar and Stellar Astrophysics +1611.05428 Databases +1611.05448 Astrophysics of Galaxies +1611.05506 Astrophysics of Galaxies +1611.05511 Earth and Planetary Astrophysics +1611.05534 Instrumentation and Methods for Astrophysics +1611.05554 Cosmology and Nongalactic Astrophysics +1611.05870 Astrophysics of Galaxies +1611.06027 Astrophysics of Galaxies +1611.06081 Analysis of PDEs +1611.06133 Earth and Planetary Astrophysics +1611.06223 High Energy Astrophysical Phenomena +1611.06230 Earth and Planetary Astrophysics +1611.06236 Astrophysics of Galaxies +1611.06303 History and Overview +1611.06515 Accelerator Physics +1611.06809 Solar and Stellar Astrophysics +1611.07040 Astrophysics of Galaxies +1611.07075 High Energy Astrophysical Phenomena +1611.07240 Theory +1611.07262 Solar and Stellar Astrophysics +1611.07426 Astrophysics of Galaxies +1611.07428 High Energy Astrophysical Phenomena +1611.07465 Materials Science +1611.07564 High Energy Astrophysical Phenomena +1611.07585 Astrophysics of Galaxies +1611.07648 Earth and Planetary Astrophysics +1611.07714 Soft Condensed Matter +1611.07930 Solar and Stellar Astrophysics +1611.08111 Space Physics +1611.08248 Astrophysics of Galaxies +1611.08314 High Energy Astrophysical Phenomena +1611.08329 Astrophysics of Galaxies +1611.08334 Solar and Stellar Astrophysics +1611.08416 Solar and Stellar Astrophysics +1611.08462 Operator Algebras +1611.08530 Astrophysics of Galaxies +1611.08586 Instrumentation and Methods for Astrophysics +1611.08600 Astrophysics of Galaxies +1611.08604 Theory +1611.08607 Astrophysics of Galaxies +1611.08897 Solar and Stellar Astrophysics +1611.08964 Solar and Stellar Astrophysics +1611.08968 Astrophysics of Galaxies +1611.09087 +1611.09241 Functional Analysis +1611.09254 Statistical Mechanics +1611.09257 Astrophysics of Galaxies +1611.09313 Solar and Stellar Astrophysics +1611.09319 Earth and Planetary Astrophysics +1611.09357 High Energy Astrophysical Phenomena +1611.09369 Astrophysics of Galaxies +1611.09383 Theory +1611.09386 Astrophysics of Galaxies +1611.09600 Astrophysics of Galaxies +1611.09628 Phenomenology +1611.09782 High Energy Astrophysical Phenomena +1611.09800 Earth and Planetary Astrophysics +1611.09865 Instrumentation and Methods for Astrophysics +1611.09871 Astrophysics of Galaxies +1611.09874 Astrophysics of Galaxies +1611.09885 High Energy Astrophysical Phenomena +1611.09946 Optimization and Control +1611.09974 High Energy Astrophysical Phenomena +1611.10037 Probability +1611.10085 Astrophysics of Galaxies +1611.10262 Astrophysics of Galaxies +1611.10362 Earth and Planetary Astrophysics +1612.00107 Solar and Stellar Astrophysics +1612.00217 Solar and Stellar Astrophysics +1612.00218 Astrophysics of Galaxies +1612.00220 Computer Vision and Pattern Recognition +1612.00325 Solar and Stellar Astrophysics +1612.00340 Astrophysics of Galaxies +1612.00447 Astrophysics of Galaxies +1612.00501 High Energy Astrophysical Phenomena +1612.00528 Astrophysics of Galaxies +1612.00538 Instrumentation and Methods for Astrophysics +1612.00655 High Energy Astrophysical Phenomena +1612.00669 Programming Languages +1612.00839 Cosmology and Nongalactic Astrophysics +1612.00906 Solar and Stellar Astrophysics +1612.01261 High Energy Astrophysical Phenomena +1612.01369 High Energy Astrophysical Phenomena +1612.01402 Computer Science and Game Theory +1612.01528 Solar and Stellar Astrophysics +1612.01544 Astrophysics of Galaxies +1612.01546 Astrophysics of Galaxies +1612.01563 Mesoscale and Nanoscale Physics +1612.01578 Astrophysics of Galaxies +1612.01659 Computational Complexity +1612.01695 Solar and Stellar Astrophysics +1612.01872 Computation +1612.01956 High Energy Astrophysical Phenomena +1612.01985 Earth and Planetary Astrophysics +1612.02064 Solar and Stellar Astrophysics +1612.02253 Solar and Stellar Astrophysics +1612.02420 High Energy Astrophysical Phenomena +1612.02432 Earth and Planetary Astrophysics +1612.02510 Solar and Stellar Astrophysics +1612.02563 High Energy Astrophysical Phenomena +1612.02632 Astrophysics of Galaxies +1612.02655 Astrophysics of Galaxies +1612.02867 Mesoscale and Nanoscale Physics +1612.02872 Earth and Planetary Astrophysics +1612.02958 Instrumentation and Methods for Astrophysics +1612.03018 Cosmology and Nongalactic Astrophysics +1612.03275 High Energy Astrophysical Phenomena +1612.03506 Instrumentation and Methods for Astrophysics +1612.03591 Astrophysics of Galaxies +1612.03865 High Energy Astrophysical Phenomena +1612.03916 Solar and Stellar Astrophysics +1612.04102 Geometric Topology +1612.04293 Astrophysics of Galaxies +1612.04380 Astrophysics of Galaxies +1612.04392 High Energy Astrophysical Phenomena +1612.04484 Data Structures and Algorithms +1612.04486 Solar and Stellar Astrophysics +1612.04616 Analysis of PDEs +1612.04661 Astrophysics of Galaxies +1612.04790 Data Structures and Algorithms +1612.04818 Solar and Stellar Astrophysics +1612.04851 Earth and Planetary Astrophysics +1612.05258 Instrumentation and Methods for Astrophysics +1612.05262 Astrophysics of Galaxies +1612.05315 Astrophysics of Galaxies +1612.05562 Cosmology and Nongalactic Astrophysics +1612.05656 Solar and Stellar Astrophysics +1612.05674 Combinatorics +1612.05690 Astrophysics of Galaxies +1612.05739 Solar and Stellar Astrophysics +1612.05820 Solar and Stellar Astrophysics +1612.05850 Phenomenology +1612.05973 Theory +1612.06059 High Energy Astrophysical Phenomena +1612.06097 High Energy Astrophysical Phenomena +1612.06241 Solar and Stellar Astrophysics +1612.06430 High Energy Astrophysical Phenomena +1612.06722 Solar and Stellar Astrophysics +1612.06861 Astrophysics of Galaxies +1612.06883 Solar and Stellar Astrophysics +1612.06905 High Energy Astrophysical Phenomena +1612.07000 High Energy Astrophysical Phenomena +1612.07053 Cosmology and Nongalactic Astrophysics +1612.07104 High Energy Astrophysical Phenomena +1612.07320 Earth and Planetary Astrophysics +1612.07364 Astrophysics of Galaxies +1612.07392 Astrophysics of Galaxies +1612.07565 Theory +1612.07666 Strongly Correlated Electrons +1612.07845 Astrophysics of Galaxies +1612.08031 Mesoscale and Nanoscale Physics +1612.08407 High Energy Astrophysical Phenomena +1612.08574 Solar and Stellar Astrophysics +1612.08635 Earth and Planetary Astrophysics +1612.08746 Solar and Stellar Astrophysics +1612.08799 Solar and Stellar Astrophysics +1612.08929 Solar and Stellar Astrophysics +1612.08934 Mesoscale and Nanoscale Physics +1612.08962 Earth and Planetary Astrophysics +1612.08971 Analysis of PDEs +1612.09128 Phenomenology +1612.09146 Phenomenology +1612.09221 Astrophysics of Galaxies +1612.09425 High Energy Astrophysical Phenomena +1612.09582 Astrophysics of Galaxies +1701.00015 Phenomenology +1701.00043 Astrophysics of Galaxies +1701.00102 High Energy Astrophysical Phenomena +1701.00367 Earth and Planetary Astrophysics +1701.00482 High Energy Astrophysical Phenomena +1701.00522 Exactly Solvable and Integrable Systems +1701.00551 Numerical Analysis +1701.00734 Complex Variables +1701.00865 Astrophysics of Galaxies +1701.00911 Astrophysics of Galaxies +1701.00919 Astrophysics of Galaxies +1701.00964 +1701.01115 Earth and Planetary Astrophysics +1701.01130 Astrophysics of Galaxies +1701.01347 High Energy Astrophysical Phenomena +1701.01556 High Energy Astrophysical Phenomena +1701.01624 Quantum Gases +1701.01729 High Energy Astrophysical Phenomena +1701.01732 Astrophysics of Galaxies +1701.01747 Phenomenology +1701.01754 Astrophysics of Galaxies +1701.01862 General Topology +1701.02025 Computation and Language +1701.02049 Earth and Planetary Astrophysics +1701.02111 Quantum Gases +1701.02423 Solar and Stellar Astrophysics +1701.02447 Astrophysics of Galaxies +1701.02462 Astrophysics of Galaxies +1701.02463 Phenomenology +1701.02609 Astrophysics of Galaxies +1701.02611 Earth and Planetary Astrophysics +1701.02707 Number Theory +1701.02745 Astrophysics of Galaxies +1701.02755 Astrophysics of Galaxies +1701.02756 +1701.02761 Solar and Stellar Astrophysics +1701.02765 High Energy Astrophysical Phenomena +1701.02766 High Energy Astrophysical Phenomena +1701.02890 Solar and Stellar Astrophysics +1701.02898 Computer Vision and Pattern Recognition +1701.03038 Computation and Language +1701.03070 Mesoscale and Nanoscale Physics +1701.03264 Information Theory +1701.03440 Solar and Stellar Astrophysics +1701.03518 Theory +1701.03528 Theory +1701.03738 Phenomenology +1701.03754 Graphics +1701.03762 Quantum Gases +1701.03763 Quantum Gases +1701.03770 General Finance +1701.03844 Theory +1701.03923 Lattice +1701.03969 Group Theory +1701.04004 Superconductivity +1701.04022 Strongly Correlated Electrons +1701.04054 Algebraic Geometry +1701.04055 Optimization and Control +1701.04065 Networking and Internet Architecture +1701.04155 +1701.04168 +1701.04172 Methodology +1701.04230 Phenomenology +1701.04276 +1701.04284 Computer Vision and Pattern Recognition +1701.04307 +1701.04316 Molecular Networks +1701.04324 Solar and Stellar Astrophysics +1701.04403 Instrumentation and Detectors +1701.04404 Quantitative Methods +1701.04405 Applications +1701.04406 High Energy Astrophysical Phenomena +1701.04407 Astrophysics of Galaxies +1701.04408 Cosmology and Nongalactic Astrophysics +1701.04409 Theory +1701.04410 Astrophysics of Galaxies +1701.04412 Cosmology and Nongalactic Astrophysics +1701.04413 Phenomenology +1701.04416 Astrophysics of Galaxies +1701.04418 Astrophysics of Galaxies +1701.04420 Discrete Mathematics +1701.04421 Instrumentation and Methods for Astrophysics +1701.04422 Astrophysics of Galaxies +1701.04423 Applications +1701.04424 Theory +1701.04425 Analysis of PDEs +1701.04426 Information Theory +1701.04427 Phenomenology +1701.04428 Computational Complexity +1701.04431 Economics +1701.04432 +1701.04433 +1701.04435 Data Analysis, Statistics and Probability +1701.04436 Phenomenology +1701.04437 Theory +1701.04438 Applications +1701.04439 Cryptography and Security +1701.04441 Group Theory +1701.04442 Phenomenology +1701.04443 Analysis of PDEs +1701.04446 Theory +1701.04448 Chemical Physics +1701.04450 Number Theory +1701.04451 Information Theory +1701.04452 Biological Physics +1701.04455 Machine Learning +1701.04456 +1701.04457 Methodology +1701.04461 Complex Variables +1701.04462 Theory +1701.04463 Mesoscale and Nanoscale Physics +1701.04465 Neural and Evolutionary Computing +1701.04469 History and Philosophy of Physics +1701.04470 Cryptography and Security +1701.04471 Combinatorics +1701.04472 Combinatorics +1701.04473 Optics +1701.04474 Combinatorics +1701.04475 Combinatorics +1701.04476 Numerical Analysis +1701.04477 +1701.04478 Physics Education +1701.04479 Differential Geometry +1701.04480 Optics +1701.04481 Software Engineering +1701.04482 Probability +1701.04483 +1701.04484 Number Theory +1701.04485 Methodology +1701.04486 Chaotic Dynamics +1701.04489 Learning +1701.04491 Economics +1701.04492 Numerical Analysis +1701.04493 Combinatorics +1701.04494 Combinatorics +1701.04496 Combinatorics +1701.04497 Physics Education +1701.04498 Dynamical Systems +1701.04499 Soft Condensed Matter +1701.04500 Classical Analysis and ODEs +1701.04504 Populations and Evolution +1701.04505 Probability +1701.04506 History and Overview +1701.04507 Cryptography and Security +1701.04508 Learning +1701.04509 Algebraic Geometry +1701.04510 +1701.04512 Methodology +1701.04517 +1701.04519 Networking and Internet Architecture +1701.04520 Computer Vision and Pattern Recognition +1701.04521 Computational Complexity +1701.04522 Logic in Computer Science +1701.04523 High Energy Astrophysical Phenomena +1701.04524 Phenomenology +1701.04525 Cryptography and Security +1701.04527 Algebraic Geometry +1701.04528 Social and Information Networks +1701.04529 Combinatorics +1701.04531 Theory +1701.04532 Machine Learning +1701.04533 Geometric Topology +1701.04535 Mesoscale and Nanoscale Physics +1701.04536 Instrumentation and Methods for Astrophysics +1701.04537 Systems and Control +1701.04540 Computer Vision and Pattern Recognition +1701.04541 Number Theory +1701.04543 Pattern Formation and Solitons +1701.04544 Quantum Gases +1701.04545 Metric Geometry +1701.04548 Discrete Mathematics +1701.04549 +1701.04550 Combinatorics +1701.04551 Information Theory +1701.04552 Number Theory +1701.04553 Numerical Analysis +1701.04554 Optics +1701.04555 Dynamical Systems +1701.04556 Cryptography and Security +1701.04557 Solar and Stellar Astrophysics +1701.04558 Numerical Analysis +1701.04559 Space Physics +1701.04560 Fluid Dynamics +1701.04562 Computer Science and Game Theory +1701.04563 Chemical Physics +1701.04564 Numerical Analysis +1701.04565 Mathematical Finance +1701.04566 Phenomenology +1701.04567 Fluid Dynamics +1701.04568 Computer Vision and Pattern Recognition +1701.04569 Artificial Intelligence +1701.04571 Phenomenology +1701.04572 Astrophysics of Galaxies +1701.04575 Fluid Dynamics +1701.04576 Optics +1701.04577 Networking and Internet Architecture +1701.04581 Networking and Internet Architecture +1701.04582 Statistics Theory +1701.04583 Other Statistics +1701.04586 +1701.04587 +1701.04588 +1701.04589 Classical Analysis and ODEs +1701.04591 Quantum Gases +1701.04595 Pattern Formation and Solitons +1701.04598 Probability +1701.04599 Strongly Correlated Electrons +1701.04600 Learning +1701.04601 Lattice +1701.04603 Analysis of PDEs +1701.04607 Probability +1701.04608 Solar and Stellar Astrophysics +1701.04609 Number Theory +1701.04610 Complex Variables +1701.04611 Category Theory +1701.04612 Distributed, Parallel, and Cluster Computing +1701.04614 Phenomenology +1701.04615 Number Theory +1701.04616 Computers and Society +1701.04617 Networking and Internet Architecture +1701.04618 Probability +1701.04620 High Energy Astrophysical Phenomena +1701.04621 Earth and Planetary Astrophysics +1701.04622 Classical Analysis and ODEs +1701.04624 +1701.04626 Logic in Computer Science +1701.04627 Earth and Planetary Astrophysics +1701.04629 Atomic Physics +1701.04632 Formal Languages and Automata Theory +1701.04633 Number Theory +1701.04635 Materials Science +1701.04636 Materials Science +1701.04637 Statistical Mechanics +1701.04638 Mesoscale and Nanoscale Physics +1701.04639 Numerical Analysis +1701.04640 Astrophysics of Galaxies +1701.04641 Earth and Planetary Astrophysics +1701.04642 Logic +1701.04643 Materials Science +1701.04644 Dynamical Systems +1701.04645 Artificial Intelligence +1701.04648 Discrete Mathematics +1701.04649 Algebraic Geometry +1701.04651 Information Theory +1701.04652 Databases +1701.04653 Computation and Language +1701.04654 Classical Physics +1701.04655 Chemical Physics +1701.04656 Classical Physics +1701.04657 Theory +1701.04658 Computer Vision and Pattern Recognition +1701.04660 Probability +1701.04662 Theory +1701.04663 Artificial Intelligence +1701.04664 Lattice +1701.04665 Mesoscale and Nanoscale Physics +1701.04666 Lattice +1701.04669 Astrophysics of Galaxies +1701.04670 Superconductivity +1701.04671 Statistics Theory +1701.04673 Networking and Internet Architecture +1701.04674 Computer Vision and Pattern Recognition +1701.04676 Computers and Society +1701.04677 Probability +1701.04678 Strongly Correlated Electrons +1701.04679 Systems and Control +1701.04683 Materials Science +1701.04684 +1701.04685 Numerical Analysis +1701.04687 Instrumentation and Methods for Astrophysics +1701.04688 General Physics +1701.04689 +1701.04690 General Physics +1701.04692 General Mathematics +1701.04693 Robotics +1701.04694 Optimization and Control +1701.04695 Optimization and Control +1701.04698 General Physics +1701.04699 History and Overview +1701.04701 Space Physics +1701.04703 Populations and Evolution +1701.04705 Space Physics +1701.04706 Earth and Planetary Astrophysics +1701.04708 Rings and Algebras +1701.04709 +1701.04710 Optics +1701.04712 Astrophysics of Galaxies +1701.04713 High Energy Astrophysical Phenomena +1701.04714 Space Physics +1701.04715 Fluid Dynamics +1701.04716 Astrophysics of Galaxies +1701.04717 High Energy Astrophysical Phenomena +1701.04718 History and Overview +1701.04719 Numerical Analysis +1701.04723 Emerging Technologies +1701.04726 Disordered Systems and Neural Networks +1701.04728 Solar and Stellar Astrophysics +1701.04729 Solar and Stellar Astrophysics +1701.04730 Strongly Correlated Electrons +1701.04734 Commutative Algebra +1701.04735 Methodology +1701.04736 Information Theory +1701.04738 Algebraic Geometry +1701.04739 Cryptography and Security +1701.04741 Combinatorics +1701.04742 Statistical Mechanics +1701.04743 Computer Vision and Pattern Recognition +1701.04744 Strongly Correlated Electrons +1701.04746 Information Theory +1701.04748 Strongly Correlated Electrons +1701.04749 Algebraic Geometry +1701.04750 Numerical Analysis +1701.04751 Solar and Stellar Astrophysics +1701.04752 Computer Vision and Pattern Recognition +1701.04754 Combinatorics +1701.04755 Optics +1701.04756 Quantum Algebra +1701.04757 Algebraic Geometry +1701.04762 Astrophysics of Galaxies +1701.04763 Distributed, Parallel, and Cluster Computing +1701.04764 Chemical Physics +1701.04765 Popular Physics +1701.04767 Biological Physics +1701.04768 Phenomenology +1701.04769 Computer Vision and Pattern Recognition +1701.04770 Theory +1701.04771 Statistical Mechanics +1701.04772 +1701.04773 +1701.04774 Materials Science +1701.04776 Computer Science and Game Theory +1701.04779 Differential Geometry +1701.04780 Mathematical Finance +1701.04781 Computation +1701.04782 Neurons and Cognition +1701.04783 Learning +1701.04784 Numerical Analysis +1701.04786 Logic in Computer Science +1701.04787 Cosmology and Nongalactic Astrophysics +1701.04788 Combinatorics +1701.04790 Combinatorics +1701.04792 Networking and Internet Architecture +1701.04794 Phenomenology +1701.04795 Superconductivity +1701.04798 Numerical Analysis +1701.04799 Plasma Physics +1701.04801 Algebraic Geometry +1701.04802 Solar and Stellar Astrophysics +1701.04803 Soft Condensed Matter +1701.04804 Phenomenology +1701.04805 Differential Geometry +1701.04806 Theory +1701.04807 Analysis of PDEs +1701.04808 +1701.04809 +1701.04810 +1701.04811 Theory +1701.04812 Differential Geometry +1701.04813 Probability +1701.04814 Atomic Physics +astro-ph/0201300 +astro-ph/0202058 +astro-ph/0203032 +astro-ph/0203322 +astro-ph/0212575 +astro-ph/0303404 +astro-ph/0303430 +astro-ph/0306153 +astro-ph/0310712 +astro-ph/0310781 +astro-ph/0310797 +astro-ph/0310811 +astro-ph/0310857 +astro-ph/0311027 +astro-ph/0311032 +astro-ph/0311074 +astro-ph/0311124 +astro-ph/0311125 +astro-ph/0311216 +astro-ph/0311254 +astro-ph/0311258 +astro-ph/0311371 +astro-ph/0311600 +astro-ph/0312146 +astro-ph/0312187 +astro-ph/0312367 +astro-ph/0401236 +astro-ph/0401402 +astro-ph/0402014 +astro-ph/0402015 +astro-ph/0402016 +astro-ph/0402018 +astro-ph/0402019 +astro-ph/0402020 +astro-ph/0402156 +astro-ph/0402196 +astro-ph/0406450 +astro-ph/0412148 +astro-ph/0612063 +cond-mat/9405038 +gr-qc/0301064 +gr-qc/0412036 +gr-qc/0507037 +hep-ph/9403267 Phenomenology +hep-th/0203089 Theory +hep-th/0307023 Theory +hep-th/9507115 Theory +physics/0507085 Classical Physics +0906.5578 Mesoscale and Nanoscale Physics +0908.2402 Networking and Internet Architecture +1109.4135 Commutative Algebra +1206.6049 Graphics +1302.6101 Rings and Algebras +1302.6167 Rings and Algebras +1303.1591 Algebraic Topology +1307.8083 Networking and Internet Architecture +1312.3917 Portfolio Management +1402.3999 Probability +1405.6733 Dynamical Systems +1405.7012 Mathematical Software +1406.3228 Optimization and Control +1406.6015 Combinatorics +1407.0135 Number Theory +1408.0610 Logic +1408.4345 Soft Condensed Matter +1409.3109 Algebraic Geometry +1409.3962 Soft Condensed Matter +1409.4880 +1410.3031 +1410.8153 Chaotic Dynamics +1411.0231 Geometric Topology +1412.1784 Optimization and Control +1501.02388 Data Structures and Algorithms +1501.03198 +1501.04343 Distributed, Parallel, and Cluster Computing +1502.00219 Mesoscale and Nanoscale Physics +1503.01099 Algebraic Geometry +1504.01940 Algebraic Geometry +1504.02213 Strongly Correlated Electrons +1505.02482 Dynamical Systems +1505.06876 Soft Condensed Matter +1507.03458 Group Theory +1507.07226 +1508.05164 Optics +1509.03754 Combinatorics +1509.07275 Statistical Mechanics +1510.04745 +1510.06324 Analysis of PDEs +1510.06394 Analysis of PDEs +1510.06720 Theory +1511.00775 Dynamical Systems +1511.03879 Algebraic Geometry +1511.05465 Probability +1511.08182 Probability +1511.08268 Number Theory +1511.08647 Data Structures and Algorithms +1512.01250 Probability +1512.04610 Complex Variables +1512.05380 Statistical Mechanics +1512.06409 +1512.06939 Mesoscale and Nanoscale Physics +1512.08315 Strongly Correlated Electrons +1512.09305 Numerical Analysis +1601.01425 Statistical Mechanics +1601.05176 Formal Languages and Automata Theory +1601.06228 Theory +1602.01262 Statistics Theory +1602.07480 Computer Vision and Pattern Recognition +1603.00861 Statistics Theory +1603.01752 +1603.01830 +1603.02102 General Physics +1603.02939 Theory +1603.03639 Complex Variables +1603.04043 Complex Variables +1603.07020 General Finance +1603.08974 Combinatorics +1604.02313 Neural and Evolutionary Computing +1604.02619 Computer Vision and Pattern Recognition +1604.02824 Fluid Dynamics +1604.03884 Instrumentation and Detectors +1604.04524 Operator Algebras +1604.07035 Combinatorics +1605.00473 Logic +1605.01018 Robotics +1605.02193 Theory +1605.04516 Combinatorics +1605.04922 +1605.04988 Computer Vision and Pattern Recognition +1605.05152 Strongly Correlated Electrons +1605.05320 Numerical Analysis +1605.05648 Algebraic Geometry +1605.06826 Rings and Algebras +1605.07484 Analysis of PDEs +1606.00903 Phenomenology +1606.00921 Methodology +1606.01390 Solar and Stellar Astrophysics +1606.02137 Statistical Mechanics +1606.02240 Probability +1606.02965 Probability +1606.04493 Quantum Algebra +1606.06342 Number Theory +1606.07639 Probability +1606.07751 Analysis of PDEs +1606.08561 Machine Learning +1607.00422 +1607.04892 +1607.05875 Information Theory +1607.07594 Phenomenology +1607.08020 +1607.08194 Machine Learning +1607.08478 Mesoscale and Nanoscale Physics +1608.02031 Analysis of PDEs +1608.02153 Computation and Language +1608.02274 Distributed, Parallel, and Cluster Computing +1608.02942 Theory +1608.03354 +1608.03552 Differential Geometry +1608.04091 Optimization and Control +1608.04141 Information Theory +1608.04143 Computer Science and Game Theory +1608.04184 Spectral Theory +1608.04519 Cosmology and Nongalactic Astrophysics +1608.07246 Quantum Gases +1608.08226 +1608.08571 +1608.08573 Theory +1608.08752 +1609.00034 Functional Analysis +1609.00151 Cryptography and Security +1609.01300 High Energy Astrophysical Phenomena +1609.02276 Optics +1609.03846 Analysis of PDEs +1609.03930 Computational Physics +1609.03956 Astrophysics of Galaxies +1609.05121 Strongly Correlated Electrons +1609.05197 Cosmology and Nongalactic Astrophysics +1609.05304 Mesoscale and Nanoscale Physics +1609.05581 +1609.06679 Classical Analysis and ODEs +1609.06773 Computation and Language +1609.06990 Operator Algebras +1609.07885 Fluid Dynamics +1609.07948 Statistical Mechanics +1609.08078 Computer Vision and Pattern Recognition +1609.08146 Computational Physics +1609.08655 Physics and Society +1609.08706 Optimization and Control +1609.09760 Algebraic Geometry +1610.00734 Mesoscale and Nanoscale Physics +1610.01519 Theory +1610.03456 Algebraic Geometry +1610.03743 +1610.04366 Optics +1610.04387 Phenomenology +1610.04451 Cosmology and Nongalactic Astrophysics +1610.04492 Strongly Correlated Electrons +1610.06166 Combinatorics +1610.06192 Cosmology and Nongalactic Astrophysics +1610.06603 Learning +1610.09277 General Physics +1610.09383 Cosmology and Nongalactic Astrophysics +1610.09787 Computation +1610.09791 Probability +1611.00341 High Energy Astrophysical Phenomena +1611.00880 Computational Physics +1611.01026 General Physics +1611.01181 Mesoscale and Nanoscale Physics +1611.01366 Classical Physics +1611.01781 Analysis of PDEs +1611.01850 Information Theory +1611.02017 Representation Theory +1611.03106 Instrumentation and Detectors +1611.03686 Optimization and Control +1611.03719 Lattice +1611.04405 Geometric Topology +1611.05388 Strongly Correlated Electrons +1611.05721 +1611.05810 +1611.06588 Soft Condensed Matter +1611.06610 Information Theory +1611.07344 Soft Condensed Matter +1611.08809 Data Structures and Algorithms +1611.09527 High Energy Astrophysical Phenomena +1611.09989 +1612.01181 Theory +1612.02562 Computer Vision and Pattern Recognition +1612.02659 Phenomenology +1612.02949 Classical Analysis and ODEs +1612.03382 Computer Vision and Pattern Recognition +1612.03540 General Topology +1612.03551 Computation and Language +1612.03929 Computation and Language +1612.04081 Materials Science +1612.04125 Mesoscale and Nanoscale Physics +1612.04296 Optics +1612.05815 Representation Theory +1612.05947 Materials Science +1612.06463 Mesoscale and Nanoscale Physics +1612.07893 Multimedia +1612.08291 Accelerator Physics +1612.08433 Other Condensed Matter +1612.09246 Group Theory +1701.00343 +1701.00353 +1701.00355 +1701.00475 Astrophysics of Galaxies +1701.01031 +1701.01383 +1701.01435 Statistical Mechanics +1701.01562 Materials Science +1701.01765 +1701.02385 Earth and Planetary Astrophysics +1701.02539 Instrumentation and Methods for Astrophysics +1701.02950 Methodology +1701.03309 +1701.04090 Theory +1701.04468 Probability +1701.04628 +1701.04634 Data Structures and Algorithms +1701.05296 Networking and Internet Architecture +1701.05339 Data Structures and Algorithms +1701.05379 Phenomenology +1701.05958 Differential Geometry +1701.05973 Distributed, Parallel, and Cluster Computing +1701.06001 Mathematical Finance +1701.06137 Phenomenology +1701.06315 Theory +1701.06539 Computer Science and Game Theory +1701.06748 Theory +1701.06989 Information Theory +1701.07385 Fluid Dynamics +1701.07531 Information Theory +1701.07615 Distributed, Parallel, and Cluster Computing +1701.08186 Logic in Computer Science +1701.08260 +1701.08268 +1701.08588 Applications +1701.08703 Formal Languages and Automata Theory +1701.08816 Computer Vision and Pattern Recognition +1701.08834 Algebraic Geometry +1701.08963 Instrumentation and Detectors +1701.08978 Learning +1701.08991 Computer Vision and Pattern Recognition +1701.09003 Statistical Mechanics +1701.09049 Databases +1701.09124 Superconductivity +1701.09147 Statistical Mechanics +1701.09156 +1701.09161 Instrumentation and Detectors +1701.09177 Learning +1702.00002 Optics +1702.00003 Algebraic Geometry +1702.00004 Instrumentation and Detectors +1702.00005 Representation Theory +1702.00006 Pattern Formation and Solitons +1702.00010 Superconductivity +1702.00011 High Energy Astrophysical Phenomena +1702.00012 Phenomenology +1702.00016 Phenomenology +1702.00017 Theory +1702.00020 Artificial Intelligence +1702.00021 High Energy Astrophysical Phenomena +1702.00022 Mesoscale and Nanoscale Physics +1702.00023 Astrophysics of Galaxies +1702.00024 Analysis of PDEs +1702.00025 Sound +1702.00026 Materials Science +1702.00027 Information Theory +1702.00028 Numerical Analysis +1702.00030 Space Physics +1702.00031 Populations and Evolution +1702.00032 Data Analysis, Statistics and Probability +1702.00035 Strongly Correlated Electrons +1702.00036 Optics +1702.00037 Pricing of Securities +1702.00038 Theory +1702.00039 Representation Theory +1702.00040 Quantum Gases +1702.00041 Analysis of PDEs +1702.00042 Plasma Physics +1702.00044 +1702.00045 Computer Vision and Pattern Recognition +1702.00046 Methodology +1702.00047 Algebraic Geometry +1702.00048 Social and Information Networks +1702.00049 Statistical Mechanics +1702.00050 Plasma Physics +1702.00051 +1702.00052 Lattice +1702.00054 Logic +1702.00057 Systems and Control +1702.00062 Instrumentation and Detectors +1702.00063 Logic in Computer Science +1702.00064 +1702.00065 Instrumentation and Detectors +1702.00066 Metric Geometry +1702.00067 Probability +1702.00068 Algebraic Geometry +1702.00069 +1702.00070 Geophysics +1702.00072 Astrophysics of Galaxies +1702.00074 Optimization and Control +1702.00075 Cosmology and Nongalactic Astrophysics +1702.00076 Plasma Physics +1702.00077 Differential Geometry +1702.00078 +1702.00080 Algebraic Geometry +1702.00081 Soft Condensed Matter +1702.00083 Strongly Correlated Electrons +1702.00085 Optimization and Control +1702.00086 Geometric Topology +1702.00087 Commutative Algebra +1702.00088 Numerical Analysis +1702.00089 Mesoscale and Nanoscale Physics +1702.00090 Complex Variables +1702.00091 Solar and Stellar Astrophysics +1702.00092 Number Theory +1702.00093 Databases +1702.00094 Populations and Evolution +1702.00095 +1702.00096 +1702.00097 Strongly Correlated Electrons +1702.00098 Computer Vision and Pattern Recognition +1702.00099 Methodology +1702.00101 Neurons and Cognition +1702.00102 Algebraic Geometry +1702.00104 Mesoscale and Nanoscale Physics +1702.00105 Plasma Physics +1702.00107 Algebraic Geometry +1702.00108 Numerical Analysis +1702.00109 Information Theory +1702.00110 Optimization and Control +1702.00113 Materials Science +1702.00115 Materials Science +1702.00116 +1702.00119 Rings and Algebras +1702.00122 Software Engineering +1702.00123 Software Engineering +1702.00124 Lattice +1702.00125 Software Engineering +1702.00126 Software Engineering +1702.00127 Networking and Internet Architecture +1702.00128 Networking and Internet Architecture +1702.00130 Materials Science +1702.00131 Information Theory +1702.00132 Combinatorics +1702.00133 Quantum Algebra +1702.00134 Phenomenology +1702.00136 Analysis of PDEs +1702.00137 Artificial Intelligence +1702.00138 Materials Science +1702.00139 Probability +1702.00140 Probability +1702.00141 Statistics Theory +1702.00144 Economics +1702.00145 Functional Analysis +1702.00146 Computational Geometry +1702.00147 Materials Science +1702.00148 Solar and Stellar Astrophysics +1702.00149 Statistical Mechanics +1702.00150 Physics and Society +1702.00151 Lattice +1702.00152 Pricing of Securities +1702.00153 Information Theory +1702.00154 Analysis of PDEs +1702.00155 Systems and Control +1702.00158 Computer Vision and Pattern Recognition +1702.00159 Artificial Intelligence +1702.00160 Information Theory +1702.00162 +1702.00163 Number Theory +1702.00164 Social and Information Networks +1702.00165 Number Theory +1702.00166 Fluid Dynamics +1702.00168 Optimization and Control +1702.00169 Analysis of PDEs +1702.00170 Classical Analysis and ODEs +1702.00171 Information Retrieval +1702.00172 Logic +1702.00173 +1702.00175 Commutative Algebra +1702.00177 Learning +1702.00180 Classical Physics +1702.00181 +1702.00182 Multimedia +1702.00183 Astrophysics of Galaxies +1702.00184 Earth and Planetary Astrophysics +1702.00186 Computer Vision and Pattern Recognition +1702.00187 Computer Vision and Pattern Recognition +1702.00188 Networking and Internet Architecture +1702.00189 +1702.00191 Theory +1702.00192 Earth and Planetary Astrophysics +1702.00193 Cosmology and Nongalactic Astrophysics +1702.00194 Optimization and Control +1702.00196 Data Structures and Algorithms +1702.00198 Digital Libraries +1702.00200 +1702.00201 Optimization and Control +1702.00203 Soft Condensed Matter +1702.00204 Computation +1702.00205 Combinatorics +1702.00207 Earth and Planetary Astrophysics +1702.00208 Lattice +1702.00210 Human-Computer Interaction +1702.00211 Materials Science +1702.00212 Instrumentation and Detectors +1702.00213 +1702.00214 Optics +1702.00215 Mathematical Finance +1702.00216 Computational Physics +1702.00217 Combinatorics +1702.00218 Atmospheric and Oceanic Physics +1702.00219 Astrophysics of Galaxies +1702.00220 Strongly Correlated Electrons +1702.00221 Solar and Stellar Astrophysics +1702.00222 Theory +1702.00223 Astrophysics of Galaxies +1702.00224 Category Theory +1702.00225 Probability +1702.00226 Mesoscale and Nanoscale Physics +1702.00227 Phenomenology +1702.00229 Algebraic Geometry +1702.00230 Algebraic Topology +1702.00231 +1702.00232 Algebraic Geometry +1702.00233 Numerical Analysis +1702.00234 Accelerator Physics +1702.00236 Earth and Planetary Astrophysics +1702.00237 Plasma Physics +1702.00238 Lattice +1702.00239 Physics and Society +1702.00240 Algebraic Topology +1702.00242 Accelerator Physics +1702.00243 Representation Theory +1702.00244 Category Theory +1702.00245 Group Theory +1702.00246 Mesoscale and Nanoscale Physics +1702.00247 Analysis of PDEs +1702.00248 Information Theory +1702.00249 Cryptography and Security +1702.00250 Materials Science +1702.00251 Earth and Planetary Astrophysics +1702.00252 Differential Geometry +1702.00253 Analysis of PDEs +1702.00255 Mesoscale and Nanoscale Physics +1702.00256 Soft Condensed Matter +1702.00257 Information Theory +1702.00258 Superconductivity +1702.00259 Distributed, Parallel, and Cluster Computing +1702.00260 Optics +1702.00261 Applications +1702.00262 Materials Science +1702.00264 Optimization and Control +1702.00265 Classical Analysis and ODEs +1702.00267 Optics +1702.00268 Logic in Computer Science +1702.00269 Numerical Analysis +1702.00271 Instrumentation and Detectors +1702.00272 Statistical Mechanics +1702.00274 Functional Analysis +1702.00275 Information Theory +1702.00276 Information Theory +1702.00277 History and Overview +1702.00278 Systems and Control +1702.00280 Numerical Analysis +1702.00281 +1702.00282 +1702.00283 Instrumentation and Methods for Astrophysics +1702.00284 Combinatorics +1702.00285 History and Overview +1702.00286 Instrumentation and Methods for Astrophysics +1702.00287 +1702.00289 Number Theory +1702.00290 Systems and Control +1702.00291 Algebraic Geometry +1702.00292 Instrumentation and Methods for Astrophysics +1702.00293 Optimization and Control +1702.00294 Differential Geometry +1702.00295 Mesoscale and Nanoscale Physics +1702.00296 Computational Physics +1702.00297 Number Theory +1702.00298 Applications +1702.00299 General Physics +1702.00300 General Physics +1702.00302 Optics +1702.00304 Formal Languages and Automata Theory +1702.00305 Phenomenology +1702.00306 +1702.00307 Computer Vision and Pattern Recognition +1702.00308 Methodology +1702.00309 Lattice +1702.00310 Lattice +1702.00311 Distributed, Parallel, and Cluster Computing +1702.00312 Distributed, Parallel, and Cluster Computing +1702.00314 Instrumentation and Methods for Astrophysics +1702.00315 +1702.00316 Phenomenology +1702.00318 Artificial Intelligence +1702.00319 Theory +1702.00321 Analysis of PDEs +1702.00322 Materials Science +1702.00323 Materials Science +1702.00324 +1702.00325 Robotics +1702.00326 General Topology +1702.00327 Methodology +1702.00328 Numerical Analysis +1702.00330 Lattice +1702.00331 Materials Science +1702.00332 Mesoscale and Nanoscale Physics +1702.00333 +1702.00336 K-Theory and Homology +1702.00337 Soft Condensed Matter +1702.00338 Computer Vision and Pattern Recognition +1702.00339 Numerical Analysis +1702.00340 Networking and Internet Architecture +1702.00341 Atomic Physics +1702.00342 Group Theory +1702.00343 Chaotic Dynamics +1702.00344 Complex Variables +1702.00345 Experiment +1702.00346 Fluid Dynamics +1702.00348 Phenomenology +1702.00349 +1702.00350 Biological Physics +1702.00351 Populations and Evolution +1702.00352 Lattice +1702.00353 Computational Complexity +1702.00355 Materials Science +1702.00356 +1702.00358 Databases +1702.00359 Materials Science +1702.00360 Molecular Networks +1702.00362 Numerical Analysis +1702.00364 Software Engineering +1702.00365 Biological Physics +1702.00366 Materials Science +1702.00367 Plasma Physics +1702.00368 +1702.00370 Networking and Internet Architecture +1702.00372 Computer Vision and Pattern Recognition +1702.00373 +1702.00374 Programming Languages +1702.00375 Mesoscale and Nanoscale Physics +1702.00376 Methodology +1702.00377 Quantum Algebra +1702.00378 Statistics Theory +1702.00379 Phenomenology +1702.00380 Astrophysics of Galaxies +1702.00381 Phenomenology +1702.00382 Computer Vision and Pattern Recognition +1702.00383 Quantum Algebra +1702.00385 Combinatorics +1702.00386 High Energy Astrophysical Phenomena +1702.00387 Phenomenology +1702.00388 Chemical Physics +1702.00389 +1702.00390 +1702.00391 Computer Vision and Pattern Recognition +1702.00393 Probability +1702.00394 Computational Engineering, Finance, and Science +1103.2926 Combinatorics +1104.1931 Rings and Algebras +1205.4275 Logic +1206.2630 +1206.5763 Differential Geometry +1207.1092 Chemical Physics +1210.4976 +1304.3772 Solar and Stellar Astrophysics +1305.2826 Commutative Algebra +1305.5213 Representation Theory +1307.6822 Complex Variables +1309.4701 +1310.7199 +1312.5089 +1401.0809 Commutative Algebra +1401.0822 Commutative Algebra +1401.4455 Fluid Dynamics +1401.4901 +1405.6348 Experiment +1406.1948 General Mathematics +1407.2443 Fluid Dynamics +1408.1023 Cryptography and Security +1409.4133 Representation Theory +1409.5107 +1411.3703 Differential Geometry +1501.05818 Classical Analysis and ODEs +1501.07669 Classical Analysis and ODEs +1501.07711 +1502.00182 Numerical Analysis +1502.06249 +1502.07409 Statistics Theory +1503.07012 Probability +1504.08170 Optimization and Control +1505.05441 Robotics +1505.05654 Statistics Theory +1506.00267 +1506.00348 Physics and Society +1506.02630 +1506.03909 Methodology +1506.07296 Statistics Theory +1507.00695 Social and Information Networks +1507.04278 Group Theory +1508.01170 Cosmology and Nongalactic Astrophysics +1508.05223 Chemical Physics +1508.06217 Optics +1509.04425 Computers and Society +1510.02175 Methodology +1510.02969 Computer Vision and Pattern Recognition +1510.09054 Functional Analysis +1511.01264 Probability +1511.02067 Combinatorics +1511.02388 Number Theory +1511.07236 Information Theory +1512.00655 +1512.04938 Strongly Correlated Electrons +1512.08586 Theory +1601.00699 Classical Analysis and ODEs +1601.01452 Statistics Theory +1601.02524 Commutative Algebra +1601.02878 Analysis of PDEs +1601.03131 Algebraic Geometry +1601.06290 Medical Physics +1602.00396 Atmospheric and Oceanic Physics +1602.04011 Strongly Correlated Electrons +1602.08006 Methodology +1602.08154 Computation +1602.08617 Analysis of PDEs +1603.02378 Optimization and Control +1603.04044 Combinatorics +1603.04499 Social and Information Networks +1603.05675 Probability +1603.05724 +1603.05926 Materials Science +1603.06468 Systems and Control +1603.06851 Dynamical Systems +1603.07200 +1603.09289 Logic +1603.09683 +1604.02009 Differential Geometry +1604.03023 +1604.03305 Statistical Mechanics +1604.06013 Methodology +1604.06058 Data Structures and Algorithms +1604.07513 Computer Vision and Pattern Recognition +1605.05124 Materials Science +1605.05808 Information Theory +1605.07583 Learning +1605.07804 Analysis of PDEs +1605.09499 Machine Learning +1606.00446 +1606.00712 Cosmology and Nongalactic Astrophysics +1606.00841 Astrophysics of Galaxies +1606.01016 Computation +1606.01537 Algebraic Topology +1606.01779 Cosmology and Nongalactic Astrophysics +1606.02799 +1606.03179 Phenomenology +1606.04003 Materials Science +1606.04976 Astrophysics of Galaxies +1606.06219 Optimization and Control +1606.07061 Instrumentation and Methods for Astrophysics +1606.07407 Numerical Analysis +1606.07500 +1606.07971 Phenomenology +1606.08324 Geometric Topology +1606.08518 Social and Information Networks +1607.03447 Phenomenology +1607.03476 Computer Vision and Pattern Recognition +1607.03506 +1607.03725 Information Theory +1607.04122 Quantitative Methods +1607.06302 Information Theory +1607.06718 Combinatorics +1607.06764 Optimization and Control +1607.08722 Probability +1608.00405 Instrumentation and Methods for Astrophysics +1608.01622 Combinatorics +1608.01719 Data Analysis, Statistics and Probability +1608.02297 Materials Science +1608.03542 Computation and Language +1608.03842 Materials Science +1608.04081 Numerical Analysis +1608.04348 Learning +1608.06819 Computer Science and Game Theory +1608.07315 +1608.08070 Statistical Mechanics +1608.08798 +1608.08925 Machine Learning +1609.00385 Theory +1609.00639 Neurons and Cognition +1609.02758 +1609.03719 Dynamical Systems +1609.03922 Dynamical Systems +1609.04801 Algebraic Geometry +1609.04840 Atmospheric and Oceanic Physics +1609.05122 Experiment +1609.05739 Analysis of PDEs +1609.06205 Phenomenology +1609.06287 Optimization and Control +1609.07020 Classical Analysis and ODEs +1609.07128 Systems and Control +1609.07373 Optimization and Control +1609.08045 +1609.08204 Dynamical Systems +1609.08879 Data Structures and Algorithms +1609.09201 Phenomenology +1610.01082 Optics +1610.01471 Information Theory +1610.01668 Optics +1610.02045 Phenomenology +1610.02921 +1610.03135 Strongly Correlated Electrons +1610.04150 Fluid Dynamics +1610.04210 Information Theory +1610.04317 Data Structures and Algorithms +1610.06274 Numerical Analysis +1610.07543 Databases +1610.08934 Materials Science +1610.09252 Optics +1610.10099 Computation and Language +1611.01140 Strongly Correlated Electrons +1611.01200 Combinatorics +1611.01918 Dynamical Systems +1611.02303 General Topology +1611.02383 Superconductivity +1611.03449 +1611.03664 Physics and Society +1611.04445 +1611.05440 Superconductivity +1611.05972 Chemical Physics +1611.06199 Materials Science +1611.07196 Cosmology and Nongalactic Astrophysics +1611.08239 Statistical Mechanics +1611.08449 Phenomenology +1611.09321 Learning +1611.09532 Superconductivity +1611.09833 Geometric Topology +1611.10069 Cosmology and Nongalactic Astrophysics +1612.00357 +1612.00811 Classical Analysis and ODEs +1612.00814 Computer Vision and Pattern Recognition +1612.01722 Statistical Mechanics +1612.02032 Numerical Analysis +1612.02036 Theory +1612.02184 Computer Vision and Pattern Recognition +1612.02338 Chemical Physics +1612.03481 Materials Science +1612.03482 Materials Science +1612.03849 Robotics +1612.04218 Soft Condensed Matter +1612.04320 +1612.04387 +1612.04768 Representation Theory +1612.04852 Mesoscale and Nanoscale Physics +1612.05066 Theory +1612.06633 Programming Languages +1612.06863 Phenomenology +1612.07279 +1612.07544 Theory +1612.07576 Strongly Correlated Electrons +1612.07597 Machine Learning +1612.07720 Analysis of PDEs +1612.09230 Materials Science +1612.09555 Phenomenology +1701.00797 Statistical Mechanics +1701.00862 Solar and Stellar Astrophysics +1701.01304 Mesoscale and Nanoscale Physics +1701.01844 Phenomenology +1701.01870 +1701.02848 +1701.03068 Complex Variables +1701.06342 Information Theory +1701.06367 Algebraic Geometry +1701.06370 Analysis of PDEs +1701.06801 Phenomenology +1701.06821 Quantum Gases +1701.07066 History and Overview +1701.07179 Learning +1701.07623 Instrumentation and Detectors +1701.07735 Commutative Algebra +1701.08206 Astrophysics of Galaxies +1701.08441 Strongly Correlated Electrons +1701.09128 Materials Science +1701.09173 Biological Physics +1702.00842 Statistics Theory +1702.01640 Combinatorics +1702.01926 Theory +1702.02141 Populations and Evolution +1702.02628 Artificial Intelligence +1702.02711 Representation Theory +1702.02792 Dynamical Systems +1702.02831 Combinatorics +1702.03451 High Energy Astrophysical Phenomena +1702.03709 Commutative Algebra +1702.04629 General Physics +1702.04856 Strongly Correlated Electrons +1702.05162 Logic +1702.05379 Social and Information Networks +1702.05512 Social and Information Networks +1702.05686 Representation Theory +1702.06208 Disordered Systems and Neural Networks +1702.06478 Computation and Language +1702.06829 Computational Geometry +1702.06974 Combinatorics +1702.07035 Strongly Correlated Electrons +1702.07245 Materials Science +1702.07329 +1702.07534 Materials Science +1702.07592 Phenomenology +1702.07993 Instrumentation and Detectors +1702.08254 Materials Science +1702.08400 Computer Vision and Pattern Recognition +1702.08472 Cosmology and Nongalactic Astrophysics +1703.00361 Materials Science +1703.00823 Number Theory +1703.00903 Analysis of PDEs +1703.00961 Theory +1703.01183 High Energy Astrophysical Phenomena +1703.01188 Plasma Physics +1703.01540 Soft Condensed Matter +1703.01786 Functional Analysis +1703.02052 +1703.02621 Materials Science +1703.02630 Earth and Planetary Astrophysics +1703.02939 Combinatorics +1703.03230 Computer Vision and Pattern Recognition +1703.03295 +1703.03654 Fluid Dynamics +1703.03777 Neurons and Cognition +1703.03947 Complex Variables +1703.03949 Computer Vision and Pattern Recognition +1703.04082 Learning +1703.04083 Commutative Algebra +1703.04101 Computer Vision and Pattern Recognition +1703.04103 Computer Vision and Pattern Recognition +1703.04215 Information Retrieval +1703.04216 Information Retrieval +1703.04346 Information Theory +1703.04515 Symplectic Geometry +1703.04584 Theory +1703.04618 Astrophysics of Galaxies +1703.04654 Fluid Dynamics +1703.04656 Symplectic Geometry +1703.04661 Statistics Theory +1703.04691 Machine Learning +1703.04703 Optimization and Control +1703.04705 Functional Analysis +1703.04717 Materials Science +1703.04786 Theory +1703.04789 Chemical Physics +1703.04849 +1703.04885 Cosmology and Nongalactic Astrophysics +1703.04924 Operator Algebras +1703.05047 Risk Management +1703.05055 +1703.05096 Solar and Stellar Astrophysics +1703.05123 Information Retrieval +1703.05128 Solar and Stellar Astrophysics +1703.05138 +1703.05141 Cosmology and Nongalactic Astrophysics +1703.05164 +1703.05189 Methodology +1703.05223 +1703.05227 Programming Languages +1703.05246 Instrumentation and Detectors +1703.05254 Complex Variables +1703.05259 Materials Science +1703.05275 Phenomenology +1703.05285 Probability +1703.05298 Learning +1703.05300 Soft Condensed Matter +1703.05301 Instrumentation and Methods for Astrophysics +1703.05302 Information Theory +1703.05303 Information Theory +1703.05304 Information Theory +1703.05305 Information Theory +1703.05306 Information Theory +1703.05308 Adaptation and Self-Organizing Systems +1703.05309 +1703.05310 +1703.05312 Methodology +1703.05313 Astrophysics of Galaxies +1703.05314 +1703.05315 +1703.05316 +1703.05317 Logic in Computer Science +1703.05318 Metric Geometry +1703.05319 General Mathematics +1703.05320 Computation and Language +1703.05321 Astrophysics of Galaxies +1703.05322 Earth and Planetary Astrophysics +1703.05323 Theory +1703.05324 Cosmology and Nongalactic Astrophysics +1703.05325 Theory +1703.05326 Cosmology and Nongalactic Astrophysics +1703.05327 Phenomenology +1703.05329 Phenomenology +1703.05331 Theory +1703.05332 +1703.05334 Disordered Systems and Neural Networks +1703.05335 Astrophysics of Galaxies +1703.05336 High Energy Astrophysical Phenomena +1703.05338 Earth and Planetary Astrophysics +1703.05339 Applications +1703.05340 Solar and Stellar Astrophysics +1703.05341 Software Engineering +1703.05342 +1703.05343 Symplectic Geometry +1703.05344 Sound +1703.05345 Phenomenology +1703.05346 Information Theory +1703.05347 Chemical Physics +1703.05348 Information Theory +1703.05349 History and Overview +1703.05350 Complex Variables +1703.05351 Logic in Computer Science +1703.05352 Theory +1703.05353 Functional Analysis +1703.05354 Computer Vision and Pattern Recognition +1703.05355 Social and Information Networks +1703.05357 Soft Condensed Matter +1703.05359 Algebraic Topology +1703.05360 +1703.05361 Atmospheric and Oceanic Physics +1703.05364 Neural and Evolutionary Computing +1703.05365 Number Theory +1703.05366 +1703.05367 +1703.05368 Astrophysics of Galaxies +1703.05369 +1703.05370 Mesoscale and Nanoscale Physics +1703.05372 Classical Analysis and ODEs +1703.05373 +1703.05374 Fluid Dynamics +1703.05375 Software Engineering +1703.05376 Artificial Intelligence +1703.05377 Algebraic Topology +1703.05378 Combinatorics +1703.05379 Astrophysics of Galaxies +1703.05380 Discrete Mathematics +1703.05381 Robotics +1703.05382 Theory +1703.05383 Optimization and Control +1703.05384 Astrophysics of Galaxies +1703.05385 Cosmology and Nongalactic Astrophysics +1703.05386 Earth and Planetary Astrophysics +1703.05387 Analysis of PDEs +1703.05388 Optimization and Control +1703.05389 Theory +1703.05390 Computation and Language +1703.05391 Algebraic Topology +1703.05392 Statistical Mechanics +1703.05394 Materials Science +1703.05395 Optimization and Control +1703.05396 Mesoscale and Nanoscale Physics +1703.05397 Theory +1703.05398 Discrete Mathematics +1703.05399 Mesoscale and Nanoscale Physics +1703.05400 Cryptography and Security +1703.05401 Information Theory +1703.05402 +1703.05403 Symplectic Geometry +1703.05405 Mesoscale and Nanoscale Physics +1703.05406 Neurons and Cognition +1703.05407 Learning +1703.05408 Theory +1703.05409 Combinatorics +1703.05410 Programming Languages +1703.05411 Learning +1703.05413 Combinatorics +1703.05414 Neurons and Cognition +1703.05415 High Energy Astrophysical Phenomena +1703.05416 Strongly Correlated Electrons +1703.05417 Phenomenology +1703.05418 Data Structures and Algorithms +1703.05419 Astrophysics of Galaxies +1703.05420 Number Theory +1703.05421 Geometric Topology +1703.05422 Neural and Evolutionary Computing +1703.05423 Computation and Language +1703.05424 Distributed, Parallel, and Cluster Computing +1703.05426 +1703.05427 Combinatorics +1703.05428 Neurons and Cognition +1703.05429 Instrumentation and Detectors +1703.05430 Machine Learning +1703.05431 Operator Algebras +1703.05432 Rings and Algebras +1703.05433 Symplectic Geometry +1703.05434 Number Theory +1703.05435 Cryptography and Security +1703.05438 Systems and Control +1703.05439 Analysis of PDEs +1703.05440 Accelerator Physics +1703.05441 Numerical Analysis +1703.05442 Networking and Internet Architecture +1703.05443 Social and Information Networks +1703.05444 Optimization and Control +1703.05445 Theory +1703.05446 Computer Vision and Pattern Recognition +1703.05447 Operator Algebras +1703.05448 Theory +1703.05449 Machine Learning +1703.05450 Number Theory +1703.05451 Multimedia +1703.05452 Artificial Intelligence +1703.05454 +1703.05455 Computer Vision and Pattern Recognition +1703.05456 Materials Science +1703.05459 Analysis of PDEs +1703.05460 Number Theory +1703.05461 Probability +1703.05462 Human-Computer Interaction +1703.05463 Computer Vision and Pattern Recognition +1703.05464 Differential Geometry +1703.05465 Computation and Language +1703.05466 Probability +1703.05467 Computer Vision and Pattern Recognition +1703.05469 Materials Science +1703.05470 Logic +1703.05471 Quantitative Methods +1703.05473 Mesoscale and Nanoscale Physics +1703.05474 Information Theory +1703.05476 Strongly Correlated Electrons +1703.05477 Materials Science +1703.05478 Mesoscale and Nanoscale Physics +1703.05479 High Energy Astrophysical Phenomena +1703.05480 Numerical Analysis +1703.05481 Databases +1703.05482 Phenomenology +1703.05484 Soft Condensed Matter +1703.05485 Digital Libraries +1703.05486 Systems and Control +1703.05487 Numerical Analysis +1703.05488 Commutative Algebra +1703.05490 Populations and Evolution +1703.05493 Logic +1703.05494 Differential Geometry +1703.05495 Dynamical Systems +1703.05496 Data Structures and Algorithms +1703.05497 Representation Theory +1703.05498 Statistical Mechanics +1703.05499 Disordered Systems and Neural Networks +1703.05500 Probability +1703.05501 Dynamical Systems +1703.05502 Multimedia +1703.05503 Systems and Control +1703.05504 Adaptation and Self-Organizing Systems +1703.05505 Probability +1703.05506 Soft Condensed Matter +1703.05507 Mesoscale and Nanoscale Physics +1703.05508 +1703.05509 Distributed, Parallel, and Cluster Computing +1703.05510 Algebraic Geometry +1703.05511 Computation +1703.05513 Quantum Algebra +1703.05514 Complex Variables +1703.05515 Materials Science +1703.05516 Quantum Gases +1703.05517 Atomic Physics +1703.05518 Analysis of PDEs +1703.05519 Computer Science and Game Theory +1703.05520 Combinatorics +1703.05521 Complex Variables +1703.05523 Software Engineering +1703.05524 Combinatorics +1703.05525 Mesoscale and Nanoscale Physics +1703.05526 Materials Science +1703.05527 Classical Analysis and ODEs +1703.05528 Physics and Society +1703.05529 Superconductivity +1703.05530 Computer Vision and Pattern Recognition +1703.05531 Combinatorics +1703.05532 Applications +1703.05533 +1703.05534 Fluid Dynamics +1703.05536 Information Theory +1703.05537 Learning +1703.05538 Dynamical Systems +1703.05539 Digital Libraries +1703.05540 Materials Science +1703.05541 Software Engineering +1703.05542 Information Theory +1703.05543 Materials Science +1703.05544 Statistical Mechanics +1703.05545 Physics and Society +1703.05546 +1703.05547 Databases +1703.05548 Mesoscale and Nanoscale Physics +1703.05549 Computational Geometry +1703.05550 Numerical Analysis +1703.05551 Combinatorics +1703.05552 Lattice +1703.05553 Group Theory +1703.05554 +1703.05555 Differential Geometry +1703.05556 Complex Variables +1703.05557 Classical Analysis and ODEs +1703.05558 +1703.05559 Data Structures and Algorithms +1703.05560 Numerical Analysis +1703.05561 Cryptography and Security +1703.05562 Combinatorics +1703.05563 Theory +1703.05565 Astrophysics of Galaxies +1703.05566 Algebraic Geometry +1703.05568 +1703.05569 Medical Physics +1703.05570 Instrumentation and Detectors +1703.05571 Computer Vision and Pattern Recognition +1703.05572 Medical Physics +1703.05573 General Physics +1703.05574 General Physics +1703.05575 High Energy Astrophysical Phenomena +1703.05576 Mesoscale and Nanoscale Physics +1703.05578 Analysis of PDEs +1703.05579 Phenomenology +1703.05580 Symbolic Computation +1703.05581 Instrumentation and Methods for Astrophysics +1703.05582 Materials Science +1703.05583 General Physics +1703.05584 Software Engineering +1703.05585 +1703.05586 Optics +1703.05587 Strongly Correlated Electrons +1703.05589 Plasma Physics +1703.05590 Combinatorics +1703.05591 Atmospheric and Oceanic Physics +1703.05592 Solar and Stellar Astrophysics +1703.05593 Computer Vision and Pattern Recognition +1703.05594 Phenomenology +1703.05595 Networking and Internet Architecture +1703.05596 Geometric Topology +1703.05598 Data Structures and Algorithms +1703.05600 Disordered Systems and Neural Networks +1703.05601 Soft Condensed Matter +1703.05602 Combinatorics +1703.05603 Instrumentation and Detectors +1703.05604 +1703.05605 Computer Vision and Pattern Recognition +1703.05607 High Energy Astrophysical Phenomena +1703.05608 +1703.05609 Atomic Physics +1703.05610 Astrophysics of Galaxies +1703.05612 Differential Geometry +1703.05613 Phenomenology +1703.05616 Human-Computer Interaction +1703.05617 Theory +1703.05618 +1703.05619 Statistics Theory +1703.05620 +1703.05622 Mesoscale and Nanoscale Physics +1703.05623 Multiagent Systems +1703.05624 Solar and Stellar Astrophysics +1703.05625 Soft Condensed Matter +1703.05626 Multiagent Systems +1703.05627 Materials Science +1703.05628 Materials Science +1703.05630 Computer Vision and Pattern Recognition +1703.05631 Mesoscale and Nanoscale Physics +1703.05632 Astrophysics of Galaxies +1703.05633 Experiment +1703.05634 Operator Algebras +1703.05635 History and Philosophy of Physics +1703.05636 Information Theory +1703.05637 Mesoscale and Nanoscale Physics +1703.05638 Numerical Analysis +1703.05639 +1703.05641 Computer Science and Game Theory +1703.05642 Analysis of PDEs +1703.05643 Mesoscale and Nanoscale Physics +1703.05644 Populations and Evolution +1703.05646 Materials Science +1703.05647 Distributed, Parallel, and Cluster Computing +1703.05648 Soft Condensed Matter +1703.05649 +1703.05650 Information Theory +1703.05651 Statistical Mechanics +1703.05652 Solar and Stellar Astrophysics +1703.05653 Theory +1703.05654 +1703.05655 General Topology +1703.05656 +1703.05657 Superconductivity +1703.05658 Mesoscale and Nanoscale Physics +1703.05659 Cosmology and Nongalactic Astrophysics +1703.05660 Analysis of PDEs +1703.05661 Mesoscale and Nanoscale Physics +1703.05662 +1703.05663 +1703.05664 +1703.05665 Mesoscale and Nanoscale Physics +1703.05666 +1703.05667 Machine Learning +1703.05668 Phenomenology +1703.05670 Theory +1703.05671 +1703.05672 Combinatorics +1703.05673 Probability +1703.05674 Mesoscale and Nanoscale Physics +1703.05675 +1703.05676 Phenomenology +1703.05678 Mesoscale and Nanoscale Physics +1703.05680 Computer Vision and Pattern Recognition +1703.05681 Differential Geometry +1703.05682 Cosmology and Nongalactic Astrophysics +1703.05683 Numerical Analysis +1703.05685 Combinatorics +1703.05686 Fluid Dynamics +1703.05688 Differential Geometry +1703.05689 Mesoscale and Nanoscale Physics +1703.05690 Information Theory +1703.05691 Neurons and Cognition +1703.05692 Genomics +1703.05694 Superconductivity +1703.05695 Operator Algebras +1703.05696 Optimization and Control +1703.05697 Accelerator Physics +1703.05699 +1703.05700 Human-Computer Interaction +1703.05701 +1703.05702 Computational Physics +1703.05704 Fluid Dynamics +1703.05705 Optimization and Control +1703.05707 Solar and Stellar Astrophysics +1703.05709 Pricing of Securities +1703.05710 +1703.05711 Optics +1703.05712 +1703.05713 Distributed, Parallel, and Cluster Computing +1703.05714 Cosmology and Nongalactic Astrophysics +1703.05715 Statistical Mechanics +1703.05716 Combinatorics +1703.05717 Theory +1703.05718 Adaptation and Self-Organizing Systems +1703.05719 Instrumentation and Detectors +1703.05720 Algebraic Geometry +1703.05721 Experiment +1703.05722 Dynamical Systems +1703.05723 Differential Geometry +1703.05724 Computer Vision and Pattern Recognition +1703.05725 Group Theory +1703.05726 Strongly Correlated Electrons +1703.05727 Analysis of PDEs +1703.05729 Number Theory +1703.05730 Phenomenology +1703.05731 Fluid Dynamics +1703.05732 Materials Science +1703.05733 Phenomenology +1703.05735 Algebraic Geometry +1703.05736 +1703.05737 Instrumentation and Detectors +1703.05738 Instrumentation and Detectors +1703.05739 Geometric Topology +1703.05740 Databases +1703.05742 Accelerator Physics +1703.05744 Algebraic Geometry +1703.05745 Numerical Analysis +1703.05747 Experiment +1703.05749 Mesoscale and Nanoscale Physics +1703.05750 Phenomenology +1703.05751 Astrophysics of Galaxies +1703.05752 Information Theory +1703.05753 Mesoscale and Nanoscale Physics +1703.05754 Algebraic Topology +1703.05755 Populations and Evolution +1703.05756 Astrophysics of Galaxies +0902.2912 Molecular Networks +0904.3832 Probability +1009.1405 Numerical Analysis +1103.3585 Data Structures and Algorithms +1201.4695 Pattern Formation and Solitons +1204.5028 Distributed, Parallel, and Cluster Computing +1306.5993 Methodology +1310.5966 Methodology +1312.2244 Computation and Language +1312.2923 Applications +1401.1170 Combinatorics +1403.1385 Optimization and Control +1403.1841 Quantum Algebra +1403.4281 Geometric Topology +1403.5207 Computation +1403.6705 Combinatorics +1403.7501 Algebraic Topology +1404.1222 Combinatorics +1405.0599 Combinatorics +1405.2279 Pattern Formation and Solitons +1406.0731 Analysis of PDEs +1406.4839 Numerical Analysis +1407.4780 +1408.0334 Combinatorics +1409.7317 Phenomenology +1410.1045 Number Theory +1410.1205 +1410.3814 Number Theory +1410.8490 Complex Variables +1411.2078 Algebraic Geometry +1411.5675 +1411.7571 Applications +1411.7617 Analysis of PDEs +1412.2026 Probability +1412.3406 Number Theory +1501.00267 Data Structures and Algorithms +1501.00483 Geometric Topology +1502.02425 +1502.04385 Geometric Topology +1502.05862 Instrumentation and Methods for Astrophysics +1503.00235 Optics +1503.00574 Differential Geometry +1503.02436 Group Theory +1503.06675 Methodology +1503.07223 Geometric Topology +1504.06475 Data Structures and Algorithms +1504.07672 Optimization and Control +1505.00182 Disordered Systems and Neural Networks +1505.00288 Risk Management +1505.01478 Dynamical Systems +1505.02005 Methodology +1505.02852 Differential Geometry +1505.03280 Analysis of PDEs +1505.06227 Quantum Gases +1505.06584 +1505.08148 Quantum Algebra +1506.01395 Fluid Dynamics +1506.01631 Mesoscale and Nanoscale Physics +1506.02310 Group Theory +1506.05827 Classical Analysis and ODEs +1506.05878 Algebraic Geometry +1506.06808 +1507.00482 Symplectic Geometry +1507.01086 Probability +1507.05439 Solar and Stellar Astrophysics +1508.00193 Optimization and Control +1508.02670 +1508.03969 Algebraic Topology +1508.05447 Theory +1509.00449 Mesoscale and Nanoscale Physics +1509.00496 Theory +1509.01554 General Mathematics +1509.02152 Information Theory +1509.03781 Other Computer Science +1509.05053 Data Structures and Algorithms +1509.05370 Combinatorics +1509.05818 +1509.08894 Populations and Evolution +1510.01144 Combinatorics +1510.03688 Group Theory +1510.04965 +1510.05620 Probability +1510.05775 Instrumentation and Detectors +1510.07727 Computation +1511.00976 +1511.02189 Methodology +1511.03338 +1511.03631 Logic +1511.04128 Methodology +1511.04876 Algebraic Geometry +1511.05184 Algebraic Topology +1511.07038 Data Structures and Algorithms +1511.08473 Optics +1511.08600 Analysis of PDEs +1512.02454 General Finance +1512.02810 Differential Geometry +1512.03334 +1512.03586 Differential Geometry +1512.04262 Logic +1512.04458 Representation Theory +1512.04742 Optimization and Control +1512.04971 Numerical Analysis +1601.01740 Mesoscale and Nanoscale Physics +1601.02358 Differential Geometry +1601.02381 Algebraic Geometry +1601.02574 Combinatorics +1601.03656 Representation Theory +1601.05702 Statistics Theory +1601.06061 Mesoscale and Nanoscale Physics +1601.06694 Superconductivity +1601.08136 Probability +1602.00947 Methodology +1602.00954 Methodology +1602.02208 Geometric Topology +1602.03076 Complex Variables +1602.03579 Geometric Topology +1602.04581 Discrete Mathematics +1602.04813 Cosmology and Nongalactic Astrophysics +1602.05413 Social and Information Networks +1602.06258 Optimization and Control +1602.06662 Neural and Evolutionary Computing +1602.07761 +1602.07919 Distributed, Parallel, and Cluster Computing +1603.00267 Geometric Topology +1603.00769 Strongly Correlated Electrons +1603.01568 Quantum Algebra +1603.03870 Mesoscale and Nanoscale Physics +1603.04920 Numerical Analysis +1603.07644 Robotics +1603.07659 Superconductivity +1603.08113 Statistics Theory +1603.09083 Algebraic Geometry +1603.09137 Systems and Control +1603.09408 +1604.00642 Emerging Technologies +1604.00849 Other Condensed Matter +1604.01055 Applications +1604.01404 Phenomenology +1604.02033 Number Theory +1604.02943 Optimization and Control +1604.03146 Strongly Correlated Electrons +1604.03311 Atmospheric and Oceanic Physics +1604.04354 +1604.05027 Computer Vision and Pattern Recognition +1604.05987 Dynamical Systems +1604.05997 Group Theory +1604.06431 Computational Complexity +1604.07008 Numerical Analysis +1604.07368 Emerging Technologies +1604.07723 Soft Condensed Matter +1604.07855 Numerical Analysis +1604.07929 Combinatorics +1604.07993 Social and Information Networks +1605.00229 Representation Theory +1605.00335 Robotics +1605.01169 Phenomenology +1605.01684 Methodology +1605.01908 Superconductivity +1605.02322 +1605.03581 Phenomenology +1605.03857 Analysis of PDEs +1605.05278 Methodology +1605.06250 Analysis of PDEs +1605.06606 Phenomenology +1605.07192 Phenomenology +1605.07252 Learning +1605.07547 Theory +1605.07568 Materials Science +1605.08081 History and Philosophy of Physics +1605.08244 Geometric Topology +1605.08573 Astrophysics of Galaxies +1605.08603 Classical Analysis and ODEs +1605.08924 Materials Science +1605.09214 General Physics +1605.09348 Geometric Topology +1605.09750 Optimization and Control +1606.00701 General Physics +1606.00759 Earth and Planetary Astrophysics +1606.01212 Differential Geometry +1606.02212 +1606.02549 +1606.02739 Physics and Society +1606.02751 Complex Variables +1606.03609 Complex Variables +1606.03631 +1606.03807 Symplectic Geometry +1606.03865 Machine Learning +1606.04293 Group Theory +1606.04655 Complex Variables +1606.04998 +1606.07646 General Physics +1606.08055 Classical Analysis and ODEs +1606.09400 Quantum Gases +1607.00456 Theory +1607.00621 +1607.00668 Category Theory +1607.00780 Analysis of PDEs +1607.01881 Methodology +1607.02118 Numerical Analysis +1607.02404 +1607.02428 Mesoscale and Nanoscale Physics +1607.02821 +1607.03504 Phenomenology +1607.03608 Category Theory +1607.04242 +1607.04435 Populations and Evolution +1607.05755 Computation and Language +1607.05986 +1607.06246 Classical Analysis and ODEs +1607.06340 Algebraic Topology +1607.06966 Robotics +1607.07235 Number Theory +1607.07523 Mesoscale and Nanoscale Physics +1607.07562 Differential Geometry +1607.07631 Data Structures and Algorithms +1607.07635 Mesoscale and Nanoscale Physics +1607.07668 +1607.07670 Phenomenology +1607.07767 Atomic Physics +1607.08533 +1607.08808 Plasma Physics +1608.00094 Statistical Mechanics +1608.00771 Computers and Society +1608.00939 Operator Algebras +1608.01710 Quantum Algebra +1608.01854 Mesoscale and Nanoscale Physics +1608.01888 +1608.03779 +1608.04132 Data Structures and Algorithms +1608.04692 Plasma Physics +1608.05300 +1608.05454 Algebraic Geometry +1608.05578 Neural and Evolutionary Computing +1608.05881 Dynamical Systems +1608.06213 Analysis of PDEs +1608.06405 Information Theory +1608.07209 Differential Geometry +1608.07918 Representation Theory +1608.08290 Complex Variables +1609.00128 Complex Variables +1609.00504 Cosmology and Nongalactic Astrophysics +1609.00895 +1609.01492 High Energy Astrophysical Phenomena +1609.02160 +1609.03585 Geometric Topology +1609.04081 Cosmology and Nongalactic Astrophysics +1609.04187 Functional Analysis +1609.04206 Superconductivity +1609.05070 Statistical Mechanics +1609.05161 Geometric Topology +1609.05193 Mesoscale and Nanoscale Physics +1609.05672 Computer Vision and Pattern Recognition +1609.06405 Artificial Intelligence +1609.06632 Networking and Internet Architecture +1609.07174 +1609.07488 +1609.07710 Information Theory +1609.08066 Optimization and Control +1609.08499 Quantum Gases +1609.08581 Phenomenology +1609.08873 Number Theory +1609.09124 Instrumentation and Detectors +1609.09397 Materials Science +1609.09543 Strongly Correlated Electrons +1610.00010 Theory +1610.00814 Dynamical Systems +1610.00835 Numerical Analysis +1610.00868 Data Analysis, Statistics and Probability +1610.01123 Soft Condensed Matter +1610.01238 Robotics +1610.01490 Theory +1610.01569 Theory +1610.01590 +1610.01886 Differential Geometry +1610.02014 Disordered Systems and Neural Networks +1610.02147 Phenomenology +1610.02242 Neural and Evolutionary Computing +1610.02710 Logic +1610.03769 Risk Management +1610.03914 Neurons and Cognition +1610.04102 Experiment +1610.05193 Plasma Physics +1610.05204 Representation Theory +1610.05470 Optimization and Control +1610.05997 Atomic and Molecular Clusters +1610.06125 Phenomenology +1610.06425 Metric Geometry +1610.07082 Representation Theory +1610.07561 Combinatorics +1610.08224 Statistical Mechanics +1610.08367 Methodology +1610.08525 Cosmology and Nongalactic Astrophysics +1610.08553 Superconductivity +1610.09468 Strongly Correlated Electrons +1610.09849 Information Theory +1611.00050 Learning +1611.00904 Cosmology and Nongalactic Astrophysics +1611.01044 Number Theory +1611.01241 Methodology +1611.01967 Learning +1611.02046 Disordered Systems and Neural Networks +1611.02146 Materials Science +1611.02366 Optics +1611.02904 High Energy Astrophysical Phenomena +1611.03218 Artificial Intelligence +1611.03281 Statistical Mechanics +1611.03291 Strongly Correlated Electrons +1611.04257 +1611.04277 Strongly Correlated Electrons +1611.04489 Combinatorics +1611.04538 Methodology +1611.04569 +1611.04748 Networking and Internet Architecture +1611.04957 Mesoscale and Nanoscale Physics +1611.05038 Theory +1611.05681 Mesoscale and Nanoscale Physics +1611.05714 Materials Science +1611.05726 General Physics +1611.06797 Chemical Physics +1611.07006 Geometric Topology +1611.07098 Learning +1611.07474 Combinatorics +1611.07635 Computer Vision and Pattern Recognition +1611.07704 Experiment +1611.08659 +1611.08835 Geometric Topology +1611.09149 Populations and Evolution +1611.09295 Theory +1611.09322 Soft Condensed Matter +1611.09370 Theory +1611.09505 Exactly Solvable and Integrable Systems +1611.09619 +1611.09760 +1611.10009 Strongly Correlated Electrons +1612.00474 Soft Condensed Matter +1612.00724 Phenomenology +1612.01209 Networking and Internet Architecture +1612.01249 Instrumentation and Detectors +1612.01324 Classical Analysis and ODEs +1612.01775 Experiment +1612.02236 +1612.02371 Experiment +1612.02398 Space Physics +1612.02793 Phenomenology +1612.03338 Strongly Correlated Electrons +1612.03794 Information Theory +1612.03889 +1612.03953 Statistical Mechanics +1612.04109 Disordered Systems and Neural Networks +1612.04154 Statistical Mechanics +1612.04909 Disordered Systems and Neural Networks +1612.05193 Spectral Theory +1612.05569 High Energy Astrophysical Phenomena +1612.05644 Cosmology and Nongalactic Astrophysics +1612.06095 Dynamical Systems +1612.06402 Mesoscale and Nanoscale Physics +1612.06612 Materials Science +1612.06634 Phenomenology +1612.06635 Combinatorics +1612.06702 Robotics +1612.06757 Differential Geometry +1612.07249 Cosmology and Nongalactic Astrophysics +1612.07525 Other Condensed Matter +1612.07771 Neural and Evolutionary Computing +1612.07826 +1612.08638 Soft Condensed Matter +1612.08800 +1701.00128 Chemical Physics +1701.00434 Cosmology and Nongalactic Astrophysics +1701.01654 Systems and Control +1701.02102 Disordered Systems and Neural Networks +1701.02300 Phenomenology +1701.02985 Soft Condensed Matter +1701.03209 Instrumentation and Methods for Astrophysics +1701.03360 Learning +1701.03790 Astrophysics of Galaxies +1701.04053 Optics +1701.04229 +1701.04444 Combinatorics +1701.04585 Dynamical Systems +1701.05237 Materials Science +1701.05930 Other Computer Science +1701.06005 Data Structures and Algorithms +1701.06264 Computer Vision and Pattern Recognition +1701.06454 Databases +1701.07489 +1701.07927 Classical Physics +1701.08037 Plasma Physics +1701.08144 Symplectic Geometry +1701.08357 Materials Science +1701.08782 Theory +1701.08871 Combinatorics +1701.09026 Solar and Stellar Astrophysics +1702.00363 Materials Science +1702.00644 Plasma Physics +1702.01607 Combinatorics +1702.01897 Optimization and Control +1702.02044 Differential Geometry +1702.02076 Subcellular Processes +1702.02193 Quantum Gases +1702.02568 Combinatorics +1702.02717 Differential Geometry +1702.02796 Strongly Correlated Electrons +1702.02953 Solar and Stellar Astrophysics +1702.03200 General Physics +1702.03581 Statistical Mechanics +1702.03717 Lattice +1702.03793 +1702.03874 Optimization and Control +1702.04089 Earth and Planetary Astrophysics +1702.04655 Mesoscale and Nanoscale Physics +1702.04981 Materials Science +1702.05737 High Energy Astrophysical Phenomena +1702.05761 Quantum Gases +1702.06068 Number Theory +1702.06070 Materials Science +1702.06161 Soft Condensed Matter +1702.06250 Systems and Control +1702.06740 Computation and Language +1702.06903 Physics and Society +1702.07021 Machine Learning +1702.07025 Computer Vision and Pattern Recognition +1702.07120 Optimization and Control +1702.07476 Cryptography and Security +1702.07636 Phenomenology +1702.07758 Soft Condensed Matter +1702.07805 Neural and Evolutionary Computing +1702.07978 High Energy Astrophysical Phenomena +1702.08065 Systems and Control +1702.08354 Dynamical Systems +1702.08699 Computer Vision and Pattern Recognition +1702.08709 +1702.08807 Numerical Analysis +1703.00024 Theory +1703.00113 Materials Science +1703.00346 Optics +1703.00427 Theory +1703.00497 Algebraic Geometry +1703.00878 Earth and Planetary Astrophysics +1703.01274 Artificial Intelligence +1703.01309 Phenomenology +1703.01321 Phenomenology +1703.01332 Statistics Theory +1703.01387 +1703.01414 Number Theory +1703.01499 Machine Learning +1703.02022 Probability +1703.02117 Logic in Computer Science +1703.02180 Computer Vision and Pattern Recognition +1703.02206 Strongly Correlated Electrons +1703.02236 Applications +1703.02618 Learning +1703.02675 +1703.02688 Cryptography and Security +1703.02892 Atomic Physics +1703.02935 Classical Analysis and ODEs +1703.02960 Functional Analysis +1703.03372 Computer Vision and Pattern Recognition +1703.03373 Machine Learning +1703.03426 Phenomenology +1703.03449 Biomolecules +1703.03606 Theory +1703.03648 Analysis of PDEs +1703.03652 Cryptography and Security +1703.03655 Geometric Topology +1703.03674 Solar and Stellar Astrophysics +1703.03758 Materials Science +1703.03764 Statistical Mechanics +1703.03770 +1703.03807 Astrophysics of Galaxies +1703.03821 Robotics +1703.03825 Soft Condensed Matter +1703.03874 +1703.03936 Theory +1703.03937 Computer Vision and Pattern Recognition +1703.04010 Systems and Control +1703.04070 Learning +1703.04075 Logic in Computer Science +1703.04080 General Literature +1703.04105 Computer Vision and Pattern Recognition +1703.04123 Atomic Physics +1703.04159 Artificial Intelligence +1703.04210 Instrumentation and Methods for Astrophysics +1703.04213 Computation and Language +1703.04262 Cryptography and Security +1703.04279 Materials Science +1703.04344 +1703.04408 Theory +1703.04494 Disordered Systems and Neural Networks +1703.04522 Fluid Dynamics +1703.04533 Optics +1703.04534 Phenomenology +1703.04535 Astrophysics of Galaxies +1703.04537 Materials Science +1703.04538 Combinatorics +1703.04541 Theory +1703.04542 Astrophysics of Galaxies +1703.04543 Optics +1703.04544 Solar and Stellar Astrophysics +1703.04546 Instrumentation and Detectors +1703.04547 General Mathematics +1703.04548 Astrophysics of Galaxies +1703.04549 Risk Management +1703.04550 Robotics +1703.04551 Instrumentation and Detectors +1703.04552 Optimization and Control +1703.04553 Chemical Physics +1703.04554 Populations and Evolution +1703.04556 Mesoscale and Nanoscale Physics +1703.04557 Probability +1703.04558 +1703.04559 Computer Vision and Pattern Recognition +1703.04560 Numerical Analysis +1703.04561 Optimization and Control +1703.04562 Representation Theory +1703.04569 +1703.04570 Optics +1703.04571 Plasma Physics +1703.04572 Materials Science +1703.04573 Strongly Correlated Electrons +1703.04574 Human-Computer Interaction +1703.04576 Differential Geometry +1703.04577 Statistical Mechanics +1703.04578 Analysis of PDEs +1703.04579 +1703.04580 +1703.04581 Combinatorics +1703.04582 Soft Condensed Matter +1703.04583 Cryptography and Security +1703.04585 Cosmology and Nongalactic Astrophysics +1703.04586 Astrophysics of Galaxies +1703.04587 Artificial Intelligence +1703.04588 +1703.04589 Theory +1703.04591 Astrophysics of Galaxies +1703.04592 Mesoscale and Nanoscale Physics +1703.04594 Distributed, Parallel, and Cluster Computing +1703.04595 +1703.04597 +1703.04598 Computational Complexity +1703.04599 Optimization and Control +1703.04600 Classical Physics +1703.04601 Functional Analysis +1703.04602 Biological Physics +1703.04603 Distributed, Parallel, and Cluster Computing +1703.04604 +1703.04605 Computational Physics +1703.04606 Mesoscale and Nanoscale Physics +1703.04607 +1703.04608 Biological Physics +1703.04609 Atomic Physics +1703.04610 +1703.04611 Computer Vision and Pattern Recognition +1703.04612 Theory +1703.04614 Theory +1703.04615 Computer Vision and Pattern Recognition +1703.04616 +1703.04619 Optimization and Control +1703.04620 Strongly Correlated Electrons +1703.04621 Cosmology and Nongalactic Astrophysics +1703.04622 Theory +1703.04623 Astrophysics of Galaxies +1703.04624 Earth and Planetary Astrophysics +1703.04625 Theory +1703.04626 +1703.04627 Astrophysics of Galaxies +1703.04628 Mesoscale and Nanoscale Physics +1703.04629 High Energy Astrophysical Phenomena +1703.04630 +1703.04631 Astrophysics of Galaxies +1703.04633 High Energy Astrophysical Phenomena +1703.04634 High Energy Astrophysical Phenomena +1703.04635 Astrophysics of Galaxies +1703.04636 Computer Vision and Pattern Recognition +1703.04637 Discrete Mathematics +1703.04638 Astrophysics of Galaxies +1703.04639 Experiment +1703.04640 +1703.04641 Optimization and Control +1703.04642 Applications +1703.04643 Physics and Society +1703.04644 Optimization and Control +1703.04645 Strongly Correlated Electrons +1703.04646 Emerging Technologies +1703.04647 Neurons and Cognition +1703.04648 Logic +1703.04649 Lattice +1703.04651 Instrumentation and Detectors +1703.04652 Strongly Correlated Electrons +1703.04653 Computer Vision and Pattern Recognition +1703.04655 Functional Analysis +1703.04657 Materials Science +1703.04658 Geometric Topology +1703.04659 Strongly Correlated Electrons +1703.04660 Dynamical Systems +1703.04662 Quantum Gases +1703.04663 Quantum Gases +1703.04664 Data Structures and Algorithms +1703.04665 Robotics +1703.04666 Complex Variables +1703.04667 Superconductivity +1703.04668 Dynamical Systems +1703.04669 Phenomenology +1703.04670 Computer Vision and Pattern Recognition +1703.04671 Disordered Systems and Neural Networks +1703.04672 Astrophysics of Galaxies +1703.04673 Materials Science +1703.04674 +1703.04675 Metric Geometry +1703.04676 Networking and Internet Architecture +1703.04677 Computation and Language +1703.04678 Exactly Solvable and Integrable Systems +1703.04679 Numerical Analysis +1703.04681 Phenomenology +1703.04682 Phenomenology +1703.04683 Cosmology and Nongalactic Astrophysics +1703.04684 Instrumentation and Methods for Astrophysics +1703.04685 Category Theory +1703.04687 Commutative Algebra +1703.04688 High Energy Astrophysical Phenomena +1703.04689 Algebraic Topology +1703.04690 Phenomenology +1703.04692 Instrumentation and Methods for Astrophysics +1703.04693 Mesoscale and Nanoscale Physics +1703.04694 Earth and Planetary Astrophysics +1703.04695 Cosmology and Nongalactic Astrophysics +1703.04696 Computers and Society +1703.04697 Statistics Theory +1703.04698 Optimization and Control +1703.04699 Computer Vision and Pattern Recognition +1703.04700 Mesoscale and Nanoscale Physics +1703.04701 Differential Geometry +1703.04702 Functional Analysis +1703.04704 +1703.04706 Learning +1703.04707 Mesoscale and Nanoscale Physics +1703.04708 High Energy Astrophysical Phenomena +1703.04709 +1703.04710 Biological Physics +1703.04711 Information Theory +1703.04713 Mesoscale and Nanoscale Physics +1703.04714 Theory +1703.04715 Combinatorics +1703.04716 Superconductivity +1703.04718 Computation and Language +1703.04720 Atomic Physics +1703.04721 Quantum Gases +1703.04722 Statistical Mechanics +1703.04723 Information Theory +1703.04724 Mesoscale and Nanoscale Physics +1703.04725 Materials Science +1703.04726 Cosmology and Nongalactic Astrophysics +1703.04727 Computer Vision and Pattern Recognition +1703.04728 Optics +1703.04729 Medical Physics +1703.04730 Machine Learning +1703.04731 Populations and Evolution +1703.04732 Solar and Stellar Astrophysics +1703.04733 Algebraic Geometry +1703.04734 Populations and Evolution +1703.04735 +1703.04736 Formal Languages and Automata Theory +1703.04738 Cryptography and Security +1703.04739 Mesoscale and Nanoscale Physics +1703.04740 Theory +1703.04742 Superconductivity +1703.04743 Materials Science +1703.04744 Theory +1703.04745 Representation Theory +1703.04746 Digital Libraries +1703.04748 +1703.04749 Functional Analysis +1703.04750 Functional Analysis +1703.04751 Phenomenology +1703.04752 Phenomenology +1703.04754 Phenomenology +1703.04756 Computer Science and Game Theory +1703.04757 Learning +1703.04758 Computational Geometry +1703.04759 Phenomenology +1703.04760 Quantum Gases +1703.04762 Mesoscale and Nanoscale Physics +1703.04763 Functional Analysis +1703.04764 Combinatorics +1703.04765 Phenomenology +1703.04766 Numerical Analysis +1703.04767 Combinatorics +1703.04768 Algebraic Topology +1703.04769 Data Structures and Algorithms +1703.04770 Sound +1703.04771 Robotics +1703.04772 Strongly Correlated Electrons +1703.04773 Functional Analysis +1703.04774 Emerging Technologies +1703.04775 Computer Vision and Pattern Recognition +1703.04776 Strongly Correlated Electrons +1703.04777 Algebraic Geometry +1703.04778 Machine Learning +1703.04779 +1703.04780 Databases +1703.04781 Probability +1703.04782 Learning +1703.04783 Sound +1703.04784 Classical Physics +1703.04787 Rings and Algebras +1703.04788 Biological Physics +1703.04790 Statistics Theory +1703.04792 Disordered Systems and Neural Networks +1703.04793 Phenomenology +1703.04794 Algebraic Geometry +1703.04795 Mesoscale and Nanoscale Physics +1703.04796 Numerical Analysis +1703.04797 Robotics +1703.04798 +1703.04799 Statistics Theory +1703.04800 Phenomenology +1703.04801 Astrophysics of Galaxies +1703.04803 Astrophysics of Galaxies +1703.04804 High Energy Astrophysical Phenomena +1703.04805 Complex Variables +1703.04806 Logic in Computer Science +1703.04807 +1703.04808 Quantum Gases +1703.04809 Probability +1703.04810 Differential Geometry +1703.04811 +1703.04812 Applications +1703.04813 Learning +1703.04814 Data Structures and Algorithms +1703.04815 Combinatorics +1703.04816 Computation and Language +1703.04817 Classical Analysis and ODEs +1703.04818 Learning +1703.04819 Computer Vision and Pattern Recognition +1703.04820 Algebraic Geometry +1703.04821 Probability +1703.04822 Systems and Control +1703.04823 Machine Learning +1703.04824 Computer Vision and Pattern Recognition +1703.04826 Computation and Language +1703.04827 +1703.04828 Solar and Stellar Astrophysics +1703.04829 Systems and Control +1703.04830 Theory +1703.04831 Fluid Dynamics +1703.04832 Machine Learning +1703.04833 Strongly Correlated Electrons +1703.04834 Formal Languages and Automata Theory +1703.04835 Computer Vision and Pattern Recognition +1703.04836 Instrumentation and Methods for Astrophysics +1703.04837 Social and Information Networks +1703.04838 Information Theory +1703.04839 Phenomenology +1703.04840 +1703.04841 Dynamical Systems +1703.04842 Learning +1703.04843 Fluid Dynamics +1703.04844 +1703.04845 Computer Vision and Pattern Recognition +1703.04846 Optics +1703.04848 Phenomenology +1703.04850 Analysis of PDEs +1703.04851 Algebraic Geometry +1703.04852 +1703.04853 Computer Vision and Pattern Recognition +1703.04855 Phenomenology +1703.04856 Computer Vision and Pattern Recognition +1703.04857 Combinatorics +1703.04858 Soft Condensed Matter +1703.04859 Representation Theory +1703.04860 Theory +1703.04861 Computer Vision and Pattern Recognition +1703.04862 Artificial Intelligence +1703.04863 High Energy Astrophysical Phenomena +1703.04864 Machine Learning +1703.04865 Materials Science +1703.04866 Computation +1703.04867 Geometric Topology +1703.04868 Geometric Topology +1703.04869 Populations and Evolution +1703.04870 Information Theory +1703.04871 Theory +1703.04872 Statistical Mechanics +1703.04873 Social and Information Networks +1703.04874 Cryptography and Security +1703.04875 +1703.04877 Robotics +1703.04878 Cryptography and Security +1703.04879 Computation and Language +1703.04880 Materials Science +1703.04881 Systems and Control +1703.04882 Methodology +1703.04883 Functional Analysis +1703.04884 Cosmology and Nongalactic Astrophysics +1703.04886 Learning +1703.04887 Computation and Language +1703.04888 Analysis of PDEs +1703.04889 Quantum Algebra +1703.04890 Learning +1703.04891 Superconductivity +1703.04892 Analysis of PDEs +1703.04893 Statistical Mechanics +1703.04894 Astrophysics of Galaxies +1703.04895 Cosmology and Nongalactic Astrophysics +1703.04896 Complex Variables +1703.04897 Strongly Correlated Electrons +1703.04898 Phenomenology +1703.04899 Physics and Society +1703.04900 Computers and Society +1703.04902 Phenomenology +1703.04903 Materials Science +1703.04904 Representation Theory +1703.04905 +1703.04906 Robotics +1703.04907 Analysis of PDEs +1703.04908 Artificial Intelligence +1703.04909 +1703.04910 +1703.04913 Geometric Topology +1703.04914 Computation and Language +1703.04915 Social and Information Networks +1703.04916 +1703.04917 Computers and Society +1703.04918 Solar and Stellar Astrophysics +1703.04919 Statistical Mechanics +1703.04920 Phenomenology +1703.04921 Number Theory +1703.04922 Optics +1703.04923 Information Theory +1703.04925 +1703.04926 Strongly Correlated Electrons +1703.04928 Strongly Correlated Electrons +1703.04929 Computation and Language +1703.04930 Information Theory +1703.04931 +1703.04932 Superconductivity +1703.04933 Learning +1703.04934 Classical Analysis and ODEs +1703.04935 Information Theory +1703.04936 Statistical Mechanics +1703.04938 Combinatorics +1703.04939 Metric Geometry +1703.04940 Learning +1703.04941 Formal Languages and Automata Theory +1703.04942 Numerical Analysis +1703.04943 Social and Information Networks +1703.04944 +1703.04945 Atomic Physics +1703.04946 +1703.04947 Astrophysics of Galaxies +1703.04948 Representation Theory +1703.04950 Number Theory +1703.04951 Methodology +1703.04952 +1703.04953 Number Theory +1703.04954 Data Structures and Algorithms +1703.04955 Statistics Theory +1703.04956 Statistics Theory +1703.04957 Applications +1703.04959 Information Theory +1703.04960 Computer Vision and Pattern Recognition +1703.04961 Applications +1703.04962 Phenomenology +1703.04963 Combinatorics +1703.04964 Materials Science +1703.04965 Materials Science +1703.04966 +1703.04967 Computer Vision and Pattern Recognition +1703.04968 Information Theory +1703.04970 +1703.04971 Probability +1703.04973 Functional Analysis +1703.04974 Combinatorics +1703.04975 Astrophysics of Galaxies +1703.04977 Computer Vision and Pattern Recognition +1703.04978 Phenomenology +1703.04979 Classical Physics +1703.04980 Computer Vision and Pattern Recognition +1703.04981 Computer Vision and Pattern Recognition +1703.04982 Solar and Stellar Astrophysics +1703.04983 Theory +1703.04984 Phenomenology +1703.04985 Phenomenology +1703.04986 Computer Vision and Pattern Recognition +1703.04987 Numerical Analysis +1703.04989 Phenomenology +1703.04990 Artificial Intelligence +1703.04991 Fluid Dynamics +1703.04992 Algebraic Geometry +1703.04993 Software Engineering +1703.04994 Probability +1703.04995 Information Theory +1703.04996 Materials Science +1703.04998 +1703.04999 +1703.05000 Phenomenology +1703.05001 Optimization and Control +1703.05003 Sound +1703.05004 Classical Analysis and ODEs +1703.05005 Mesoscale and Nanoscale Physics +1703.05006 Probability +1703.05007 Experiment +1703.05009 Mesoscale and Nanoscale Physics +1703.05010 Optimization and Control +1703.05011 Systems and Control +1703.05012 Functional Analysis +1703.05013 Soft Condensed Matter +1703.05014 Dynamical Systems +1703.05015 Computational Complexity +1703.05016 Systems and Control +1703.05017 Materials Science +1703.05018 Quantum Algebra +1703.05019 Systems and Control +1703.05021 Mesoscale and Nanoscale Physics +1703.05022 Information Theory +1703.05023 Discrete Mathematics +1703.05024 Probability +1703.05025 Materials Science +1703.05026 Group Theory +1703.05027 Phenomenology +1703.05028 Databases +1703.05030 High Energy Astrophysical Phenomena +1703.05031 Probability +1703.05032 Functional Analysis +1703.05034 +1703.05035 Materials Science +1703.05036 High Energy Astrophysical Phenomena +1703.05039 Rings and Algebras +1703.05040 +1703.05041 Quantum Gases +1703.05042 Programming Languages +1703.05043 Astrophysics of Galaxies +1703.05045 Discrete Mathematics +1703.05046 Phenomenology +1703.05049 Mathematical Finance +1703.05051 Learning +1703.05052 Numerical Analysis +1703.05053 Social and Information Networks +1703.05054 Computational Physics +1703.05056 Strongly Correlated Electrons +1703.05057 Combinatorics +1703.05058 Number Theory +1703.05060 Learning +1703.05061 Computer Vision and Pattern Recognition +1703.05062 Algebraic Geometry +1703.05063 +1703.05064 Theory +1703.05065 Computer Vision and Pattern Recognition +1703.05066 Cryptography and Security +1703.05067 Mesoscale and Nanoscale Physics +1703.05068 Differential Geometry +1703.05069 Operator Algebras +1703.05071 Geophysics +1703.05072 Rings and Algebras +1703.05073 Rings and Algebras +1703.05074 +1703.05075 Phenomenology +1703.05076 Algebraic Geometry +1703.05077 Solar and Stellar Astrophysics +1703.05078 Theory +1703.05079 Neurons and Cognition +1703.05080 Machine Learning +1703.05081 Phenomenology +1703.05082 Social and Information Networks +1703.05083 High Energy Astrophysical Phenomena +1703.05084 Instrumentation and Methods for Astrophysics +1703.05085 Optimization and Control +1703.05086 Representation Theory +1703.05087 +1703.05088 Optimization and Control +1703.05090 Analysis of PDEs +1703.05091 Optics +1703.05093 Solar and Stellar Astrophysics +1703.05094 Probability +1703.05095 Plasma Physics +1703.05097 Populations and Evolution +1703.05098 Statistical Mechanics +1703.05099 Populations and Evolution +1703.05100 Information Theory +1703.05101 Statistics Theory +1703.05102 Data Structures and Algorithms +1703.05103 Applications +1703.05104 Mesoscale and Nanoscale Physics +1703.05105 Computer Vision and Pattern Recognition +1703.05106 Distributed, Parallel, and Cluster Computing +1703.05107 Differential Geometry +1703.05108 Soft Condensed Matter +1703.05109 Methodology +1703.05110 Statistical Mechanics +1703.05111 Strongly Correlated Electrons +1703.05112 +1703.05113 General Physics +1703.05114 General Physics +1703.05115 Optimization and Control +1703.05116 Theory +1703.05117 Optimization and Control +1703.05118 Analysis of PDEs +1703.05119 General Physics +1703.05120 Probability +1703.05121 Logic in Computer Science +1703.05122 Computation and Language +1703.05124 Differential Geometry +1703.05125 Number Theory +1703.05126 Cryptography and Security +1703.05127 Plasma Physics +1703.05129 Discrete Mathematics +1703.05130 Computer Vision and Pattern Recognition +1703.05131 +1703.05132 Pricing of Securities +1703.05133 Differential Geometry +1703.05134 +1703.05135 Analysis of PDEs +1703.05136 Numerical Analysis +1703.05137 Formal Languages and Automata Theory +1703.05139 Cosmology and Nongalactic Astrophysics +1703.05140 Theory +1703.05142 Cosmology and Nongalactic Astrophysics +1703.05143 Algebraic Topology +1703.05145 Cosmology and Nongalactic Astrophysics +1703.05146 Dynamical Systems +1703.05147 Fluid Dynamics +1703.05148 Computer Vision and Pattern Recognition +1703.05149 Combinatorics +1703.05150 Soft Condensed Matter +1703.05151 Analysis of PDEs +1703.05152 Probability +1703.05153 Fluid Dynamics +1703.05154 Complex Variables +1703.05155 +1703.05156 Data Structures and Algorithms +1703.05157 Methodology +1703.05158 Computational Engineering, Finance, and Science +1703.05160 Machine Learning +1703.05165 Computer Vision and Pattern Recognition +1703.05167 Astrophysics of Galaxies +1703.05168 Analysis of PDEs +1703.05169 +1703.05170 Computational Complexity +1703.05171 Combinatorics +1703.05172 Applications +1703.05173 Discrete Mathematics +1703.05174 Networking and Internet Architecture +1703.05175 Learning +1703.05176 High Energy Astrophysical Phenomena +1703.05178 Analysis of PDEs +1703.05179 High Energy Astrophysical Phenomena +1703.05180 Superconductivity +1703.05181 Mesoscale and Nanoscale Physics +1703.05182 Plasma Physics +1703.05183 +1703.05184 High Energy Astrophysical Phenomena +1703.05185 Programming Languages +1703.05187 Astrophysics of Galaxies +1703.05188 Biological Physics +1703.05191 Materials Science +1703.05192 Computer Vision and Pattern Recognition +1703.05194 Networking and Internet Architecture +1703.05195 Mesoscale and Nanoscale Physics +1703.05196 High Energy Astrophysical Phenomena +1703.05198 Mesoscale and Nanoscale Physics +1703.05199 Data Structures and Algorithms +1703.05200 Number Theory +1703.05201 Artificial Intelligence +1703.05202 Strongly Correlated Electrons +1703.05203 Methodology +1703.05204 Artificial Intelligence +1703.05205 Disordered Systems and Neural Networks +1703.05207 Analysis of PDEs +1703.05208 Methodology +1703.05209 Systems and Control +1703.05211 Materials Science +1703.05214 Analysis of PDEs +1703.05215 Logic in Computer Science +1703.05216 Optimization and Control +1703.05217 Theory +1703.05218 Solar and Stellar Astrophysics +1703.05219 Optimization and Control +1703.05220 Mesoscale and Nanoscale Physics +1703.05221 Phenomenology +1703.05224 Physics Education +1703.05225 Materials Science +1703.05226 Algebraic Geometry +1703.05228 Strongly Correlated Electrons +1703.05229 Mesoscale and Nanoscale Physics +1703.05230 Computer Vision and Pattern Recognition +1703.05231 +1703.05232 Systems and Control +1703.05233 Optimization and Control +1703.05234 Cryptography and Security +1703.05235 Computer Vision and Pattern Recognition +1703.05236 Experiment +1703.05237 High Energy Astrophysical Phenomena +1703.05238 +1703.05239 Plasma Physics +1703.05242 Geometric Topology +1703.05243 Computer Vision and Pattern Recognition +1703.05244 Functional Analysis +1703.05245 Atomic Physics +1703.05248 Astrophysics of Galaxies +1703.05249 +1703.05250 Astrophysics of Galaxies +1703.05251 Theory +1703.05253 Combinatorics +1703.05255 Phenomenology +1703.05256 Numerical Analysis +1703.05257 Analysis of PDEs +1703.05258 Accelerator Physics +1703.05260 Computation and Language +1703.05261 Computational Physics +1703.05262 Classical Analysis and ODEs +1703.05263 Theory +1703.05264 Methodology +1703.05265 Representation Theory +1703.05266 Algebraic Geometry +1703.05267 Social and Information Networks +1703.05268 +1703.05269 +1703.05270 Statistical Mechanics +1703.05272 Instrumentation and Detectors +1703.05273 Phenomenology +1703.05274 Mesoscale and Nanoscale Physics +1703.05276 Differential Geometry +1703.05277 Exactly Solvable and Integrable Systems +1703.05278 Systems and Control +1703.05279 +1703.05280 K-Theory and Homology +1703.05282 +1703.05283 Statistical Mechanics +1703.05284 Superconductivity +1703.05286 General Physics +1703.05287 Astrophysics of Galaxies +1703.05288 Group Theory +1703.05289 Computer Vision and Pattern Recognition +1703.05290 Atomic Physics +1703.05291 Learning +1703.05292 +1703.05293 Astrophysics of Galaxies +1703.05294 High Energy Astrophysical Phenomena +1703.05296 Quantum Algebra +1703.05297 Cosmology and Nongalactic Astrophysics +math/0501058 Differential Geometry +0902.2985 Dynamical Systems +1104.3912 Dynamical Systems +1107.3601 Dynamical Systems +1108.5779 Dynamical Systems +1109.6077 Operator Algebras +1203.3845 Operator Algebras +1204.3894 Theory +1206.3409 Combinatorics +1211.0964 Earth and Planetary Astrophysics +1301.3398 Differential Geometry +1301.6505 Differential Geometry +1304.7546 Combinatorics +1306.6733 K-Theory and Homology +1307.0111 Operator Algebras +1309.3267 Analysis of PDEs +1310.7927 Earth and Planetary Astrophysics +1311.7484 Symplectic Geometry +1312.0730 Differential Geometry +1312.4095 Logic +1312.5156 Classical Analysis and ODEs +1403.1555 Algebraic Geometry +1403.4172 Rings and Algebras +1404.1589 Rings and Algebras +1404.1806 Quantum Algebra +1405.5335 Theory +1405.7230 Theory +1406.0902 Dynamical Systems +1406.3679 Combinatorics +1406.7376 Earth and Planetary Astrophysics +1407.6775 Rings and Algebras +1408.0084 Algebraic Geometry +1409.0501 Algebraic Topology +1409.0848 Algebraic Topology +1409.2932 Analysis of PDEs +1409.4156 Commutative Algebra +1409.8196 Social and Information Networks +1410.0093 Operator Algebras +1410.4946 Earth and Planetary Astrophysics +1411.1034 Materials Science +1411.3218 Operator Algebras +1412.2960 +1412.3841 Graphics +1412.6820 Differential Geometry +1412.7477 Machine Learning +1501.00972 Symplectic Geometry +1501.01993 +1501.03032 Graphics +1501.03419 Dynamical Systems +1501.05237 Social and Information Networks +1502.05984 Classical Analysis and ODEs +1502.07771 Operator Algebras +1503.07821 Geometric Topology +1504.01671 Analysis of PDEs +1505.00118 Logic +1505.02545 Geometric Topology +1505.04224 Distributed, Parallel, and Cluster Computing +1505.05754 Analysis of PDEs +1505.06960 Analysis of PDEs +1506.01311 Operator Algebras +1506.01809 Number Theory +1506.06277 Algebraic Geometry +1506.07425 Classical Analysis and ODEs +1506.07600 Analysis of PDEs +1506.08038 +1506.08562 Strongly Correlated Electrons +1507.07170 Methodology +1508.02290 Statistical Mechanics +1509.01153 Dynamical Systems +1509.02069 Computation +1509.03283 Complex Variables +1509.05234 Algebraic Topology +1509.07294 +1510.04682 +1511.00104 Cryptography and Security +1511.01922 Optimization and Control +1511.06454 Economics +1512.05570 Operator Algebras +1512.06505 Methodology +1601.01428 Phenomenology +1601.04020 Theory +1601.05057 Strongly Correlated Electrons +1601.06674 Number Theory +1602.02429 Operator Algebras +1602.02923 Optimization and Control +1602.04467 Probability +1602.04816 Phenomenology +1602.06813 Number Theory +1602.07491 Algebraic Geometry +1603.03452 Subcellular Processes +1603.04013 Dynamical Systems +1603.05433 Graphics +1603.06487 Strongly Correlated Electrons +1603.08878 Information Theory +1604.01061 Geometric Topology +1604.03380 Statistical Mechanics +1604.04751 Earth and Planetary Astrophysics +1604.04861 Differential Geometry +1604.05543 Logic in Computer Science +1604.06049 +1604.07131 +1604.07200 Computational Complexity +1604.08469 Number Theory +1605.00438 +1605.01332 Algebraic Geometry +1605.04746 +1605.04943 General Finance +1605.04953 Representation Theory +1605.05275 Materials Science +1605.06672 Combinatorics +1605.07319 Superconductivity +1605.07575 Probability +1605.08023 Distributed, Parallel, and Cluster Computing +1605.08224 Complex Variables +1605.08784 Astrophysics of Galaxies +1605.09456 Statistics Theory +1606.00310 Distributed, Parallel, and Cluster Computing +1606.02923 +1606.03279 Materials Science +1606.03470 Astrophysics of Galaxies +1606.04716 High Energy Astrophysical Phenomena +1606.06414 Analysis of PDEs +1606.06698 Systems and Control +1606.06707 Computer Science and Game Theory +1606.06837 Differential Geometry +1606.07359 Physics and Society +1606.07743 Earth and Planetary Astrophysics +1606.08266 Social and Information Networks +1606.08345 Functional Analysis +1606.09310 Other Condensed Matter +1606.09518 Computer Vision and Pattern Recognition +1607.00711 Information Theory +1607.00752 +1607.00982 +1607.03392 Quantitative Methods +1607.03522 Pricing of Securities +1607.03879 Strongly Correlated Electrons +1607.04358 Multiagent Systems +1607.07029 Analysis of PDEs +1607.07218 +1607.07571 Optics +1607.07941 Atomic Physics +1608.00776 Physics and Society +1608.03356 Phenomenology +1608.04207 Computation and Language +1608.04671 Cryptography and Security +1608.05130 Mesoscale and Nanoscale Physics +1608.06145 +1608.06650 +1608.06921 Dynamical Systems +1608.07569 +1608.08324 Computational Geometry +1608.08601 Phenomenology +1608.08953 Human-Computer Interaction +1609.00028 Mesoscale and Nanoscale Physics +1609.00206 Combinatorics +1609.01298 Astrophysics of Galaxies +1609.01734 Earth and Planetary Astrophysics +1609.03561 Phenomenology +1609.03966 Quantum Gases +1609.04378 Plasma Physics +1609.06368 Systems and Control +1609.06744 Statistics Theory +1609.06769 Fluid Dynamics +1609.07844 Computation +1609.08671 High Energy Astrophysical Phenomena +1609.09085 Cosmology and Nongalactic Astrophysics +1609.09197 Cosmology and Nongalactic Astrophysics +1610.00173 Cosmology and Nongalactic Astrophysics +1610.02580 Cosmology and Nongalactic Astrophysics +1610.02867 Chaotic Dynamics +1610.03061 High Energy Astrophysical Phenomena +1610.03312 Strongly Correlated Electrons +1610.04314 +1610.04336 Machine Learning +1610.05571 Mesoscale and Nanoscale Physics +1610.05620 Combinatorics +1610.05691 Disordered Systems and Neural Networks +1610.06161 Group Theory +1610.07339 Distributed, Parallel, and Cluster Computing +1610.07629 Computer Vision and Pattern Recognition +1610.07886 Probability +1610.08547 Differential Geometry +1610.08580 Methodology +1610.08935 Chemical Physics +1610.09108 Applications +1610.09402 Chemical Physics +1610.09566 Chemical Physics +1611.00907 Computational Physics +1611.01342 Strongly Correlated Electrons +1611.01613 Differential Geometry +1611.02324 Theory +1611.03276 Materials Science +1611.04579 Astrophysics of Galaxies +1611.04800 Populations and Evolution +1611.07049 Astrophysics of Galaxies +1611.07278 Theory +1611.07430 Representation Theory +1611.07688 Computer Vision and Pattern Recognition +1611.08175 Information Theory +1611.08298 Strongly Correlated Electrons +1611.09093 Soft Condensed Matter +1611.09234 Representation Theory +1611.09740 Optics +1612.00272 Networking and Internet Architecture +1612.00601 Combinatorics +1612.01623 Analysis of PDEs +1612.02108 Subcellular Processes +1612.02291 +1612.03179 Astrophysics of Galaxies +1612.03768 Number Theory +1612.03952 Optics +1612.05182 Representation Theory +1612.06055 Probability +1612.06959 +1612.07221 Mesoscale and Nanoscale Physics +1612.07468 Quantitative Methods +1701.00269 Combinatorics +1701.00419 Combinatorics +1701.01460 Analysis of PDEs +1701.01541 Theory +1701.01845 Quantum Gases +1701.02403 Mesoscale and Nanoscale Physics +1701.02854 Computation and Language +1701.03426 Phenomenology +1701.03899 Differential Geometry +1701.04248 Soft Condensed Matter +1701.04796 Probability +1701.04853 Soft Condensed Matter +1701.05158 Instrumentation and Methods for Astrophysics +1701.05495 Theory +1701.05635 Probability +1701.05666 Methodology +1701.05843 Differential Geometry +1701.06188 Information Theory +1701.06766 Probability +1701.06938 Mesoscale and Nanoscale Physics +1701.06982 Differential Geometry +1701.07201 Superconductivity +1701.07422 Learning +1701.07528 Number Theory +1701.07544 Robotics +1701.07764 Numerical Analysis +1701.07787 Populations and Evolution +1701.08601 Dynamical Systems +1701.08944 Materials Science +1701.08957 High Energy Astrophysical Phenomena +1701.09065 Probability +1701.09086 Differential Geometry +1701.09158 Theory +1702.00120 Algebraic Geometry +1702.00589 Theory +1702.01117 Materials Science +1702.01181 Computers and Society +1702.01231 Classical Analysis and ODEs +1702.01446 Data Structures and Algorithms +1702.01460 Learning +1702.01483 Instrumentation and Detectors +1702.01484 Instrumentation and Detectors +1702.01557 +1702.01645 Plasma Physics +1702.01655 Programming Languages +1702.01685 Algebraic Topology +1702.01727 Phenomenology +1702.01895 Materials Science +1702.01903 Optimization and Control +1702.01904 Materials Science +1702.01915 Number Theory +1702.02019 General Physics +1702.02068 Soft Condensed Matter +1702.02224 Group Theory +1702.02363 Computation and Language +1702.02419 Analysis of PDEs +1702.02498 Instrumentation and Detectors +1702.02517 Dynamical Systems +1702.02552 +1702.02563 Quantitative Methods +1702.02564 High Energy Astrophysical Phenomena +1702.02565 Chemical Physics +1702.02566 Cryptography and Security +1702.02567 High Energy Astrophysical Phenomena +1702.02569 Number Theory +1702.02570 Solar and Stellar Astrophysics +1702.02572 Theory +1702.02573 Astrophysics of Galaxies +1702.02576 Theory +1702.02578 Mesoscale and Nanoscale Physics +1702.02579 Mesoscale and Nanoscale Physics +1702.02581 +1702.02582 Dynamical Systems +1702.02583 +1702.02584 Computation and Language +1702.02585 High Energy Astrophysical Phenomena +1702.02586 High Energy Astrophysical Phenomena +1702.02587 Astrophysics of Galaxies +1702.02588 Operating Systems +1702.02589 Logic +1702.02590 Methodology +1702.02591 +1702.02592 Classical Analysis and ODEs +1702.02593 Instrumentation and Methods for Astrophysics +1702.02594 Numerical Analysis +1702.02595 Group Theory +1702.02596 Dynamical Systems +1702.02597 Multiagent Systems +1702.02600 Cosmology and Nongalactic Astrophysics +1702.02601 Cosmology and Nongalactic Astrophysics +1702.02602 Category Theory +1702.02603 Numerical Analysis +1702.02605 Numerical Analysis +1702.02606 Mesoscale and Nanoscale Physics +1702.02608 Differential Geometry +1702.02609 Astrophysics of Galaxies +1702.02610 Analysis of PDEs +1702.02611 Logic +1702.02613 Astrophysics of Galaxies +1702.02614 Geometric Topology +1702.02616 Group Theory +1702.02619 Strongly Correlated Electrons +1702.02621 Combinatorics +1702.02622 Probability +1702.02623 History and Overview +1702.02624 Optimization and Control +1702.02626 Differential Geometry +1702.02627 Quantum Algebra +1702.02630 Logic +1702.02632 Pattern Formation and Solitons +1702.02633 Geophysics +1702.02634 Information Theory +1702.02635 Algebraic Geometry +1702.02636 +1702.02637 Combinatorics +1702.02638 Statistical Mechanics +1702.02639 Combinatorics +1702.02640 Computation and Language +1702.02643 Statistics Theory +1702.02644 Social and Information Networks +1702.02645 Soft Condensed Matter +1702.02648 Combinatorics +1702.02649 Algebraic Geometry +1702.02650 Spectral Theory +1702.02652 Differential Geometry +1702.02653 Software Engineering +1702.02654 Soft Condensed Matter +1702.02655 Learning +1702.02656 Earth and Planetary Astrophysics +1702.02657 Functional Analysis +1702.02658 Methodology +1702.02659 +1702.02660 Strongly Correlated Electrons +1702.02661 Learning +1702.02664 Statistical Mechanics +1702.02665 +1702.02666 Statistical Mechanics +1702.02667 Differential Geometry +1702.02668 Logic +1702.02669 Number Theory +1702.02671 Information Theory +1702.02672 Superconductivity +1702.02673 Information Theory +1702.02675 Statistical Mechanics +1702.02676 Neural and Evolutionary Computing +1702.02677 Superconductivity +1702.02679 Materials Science +1702.02680 Computer Vision and Pattern Recognition +1702.02681 Category Theory +1702.02682 Analysis of PDEs +1702.02683 Pattern Formation and Solitons +1702.02684 Quantitative Methods +1702.02685 Information Theory +1702.02686 Machine Learning +1702.02687 Number Theory +1702.02688 Experiment +1702.02689 Functional Analysis +1702.02690 Information Theory +1702.02693 Computational Complexity +1702.02694 +1702.02695 Information Theory +1702.02696 Plasma Physics +1702.02699 Phenomenology +1702.02700 Social and Information Networks +1702.02701 Numerical Analysis +1702.02703 Biological Physics +1702.02704 Combinatorics +1702.02705 Programming Languages +1702.02708 Methodology +1702.02709 Computer Vision and Pattern Recognition +1702.02710 Algebraic Topology +1702.02713 +1702.02714 Chemical Physics +1702.02716 Information Theory +1702.02718 Dynamical Systems +1702.02719 Computer Vision and Pattern Recognition +1702.02720 Statistical Mechanics +1702.02721 Cryptography and Security +1702.02722 Computer Science and Game Theory +1702.02723 Combinatorics +1702.02724 Strongly Correlated Electrons +1702.02727 +1702.02729 Numerical Analysis +1702.02731 Geometric Topology +1702.02732 Astrophysics of Galaxies +1702.02733 Numerical Analysis +1702.02734 Materials Science +1702.02735 Robotics +1702.02736 Computation and Language +1702.02737 Information Retrieval +1702.02738 Computer Vision and Pattern Recognition +1702.02739 Algebraic Geometry +1702.02740 Mesoscale and Nanoscale Physics +1702.02741 Computer Vision and Pattern Recognition +1702.02742 Strongly Correlated Electrons +1702.02743 Medical Physics +1702.02744 Computer Vision and Pattern Recognition +1702.02745 Fluid Dynamics +1702.02747 Biological Physics +1702.02749 Mesoscale and Nanoscale Physics +1702.02750 Optimization and Control +1702.02751 Materials Science +1702.02752 Fluid Dynamics +1702.02753 +1702.02754 Probability +1702.02755 Theory +1702.02756 Analysis of PDEs +1702.02757 Mesoscale and Nanoscale Physics +1702.02758 Soft Condensed Matter +1702.02759 Mesoscale and Nanoscale Physics +1702.02760 +1702.02761 Differential Geometry +1702.02762 Probability +1702.02763 Economics +1702.02764 Chaotic Dynamics +1702.02765 Superconductivity +1702.02767 Probability +1702.02768 Phenomenology +1702.02770 Dynamical Systems +1702.02771 Instrumentation and Detectors +1702.02772 Quantum Gases +1702.02773 Phenomenology +1702.02775 Networking and Internet Architecture +1702.02776 Numerical Analysis +1702.02777 Statistical Finance +1702.02778 Atomic Physics +1702.02779 Computer Vision and Pattern Recognition +1702.02780 Numerical Analysis +1702.02781 +1702.02783 Instrumentation and Detectors +1702.02785 Systems and Control +1702.02787 +1702.02788 Group Theory +1702.02789 Instrumentation and Detectors +1702.02790 Probability +1702.02793 Combinatorics +1702.02794 Methodology +1702.02795 +1702.02798 Computers and Society +1702.02799 Databases +1702.02800 +1702.02802 Atomic Physics +1702.02803 Analysis of PDEs +1702.02804 Mesoscale and Nanoscale Physics +1702.02805 Computer Vision and Pattern Recognition +1702.02806 Theory +1702.02808 Social and Information Networks +1702.02809 Databases +1702.02810 Analysis of PDEs +1702.02811 Superconductivity +1702.02812 Strongly Correlated Electrons +1702.02813 Instrumentation and Detectors +1702.02814 Analysis of PDEs +1702.02815 Probability +1702.02816 Cryptography and Security +1702.02818 Strongly Correlated Electrons +1702.02819 Mesoscale and Nanoscale Physics +1702.02820 Mesoscale and Nanoscale Physics +1702.02821 Disordered Systems and Neural Networks +1702.02822 Formal Languages and Automata Theory +1702.02823 Networking and Internet Architecture +1702.02824 +1702.02825 Solar and Stellar Astrophysics +1702.02827 Methodology +1702.02828 Machine Learning +1702.02829 Mesoscale and Nanoscale Physics +1702.02830 Phenomenology +1702.02832 Fluid Dynamics +1702.02834 Fluid Dynamics +1702.02835 Instrumentation and Methods for Astrophysics +1702.02836 Materials Science +1702.02837 Geometric Topology +1702.02838 Computational Geometry +1702.02839 Probability +1702.02840 Exactly Solvable and Integrable Systems +1702.02841 Group Theory +1702.02844 Solar and Stellar Astrophysics +1702.02846 Mesoscale and Nanoscale Physics +1702.02847 Logic +1702.02848 Distributed, Parallel, and Cluster Computing +1702.02849 Learning +1702.02851 Soft Condensed Matter +1702.02853 Networking and Internet Architecture +1702.02854 Dynamical Systems +1702.02855 +1702.02856 Materials Science +1702.02858 +1702.02859 Experiment +1702.02861 Theory +1702.02864 Strongly Correlated Electrons +1702.02865 Soft Condensed Matter +1702.02866 Analysis of PDEs +1702.02868 Earth and Planetary Astrophysics +1702.02869 General Physics +1702.02871 Group Theory +1702.02872 Phenomenology +1702.02873 Neurons and Cognition +1702.02874 Computers and Society +1702.02875 Phenomenology +1702.02876 Populations and Evolution +1702.02877 Phenomenology +1702.02878 Graphics +1702.02879 Populations and Evolution +1702.02880 Numerical Analysis +1702.02881 Earth and Planetary Astrophysics +1702.02883 Earth and Planetary Astrophysics +1702.02884 Dynamical Systems +1702.02885 Computational Complexity +1702.02886 Computational Physics +1702.02887 +1702.02888 Combinatorics +1702.02889 Dynamical Systems +1702.02890 Logic in Computer Science +1702.02891 Information Theory +1702.02892 Optics +1702.02893 Astrophysics of Galaxies +1702.02894 +1702.02895 Optimization and Control +1702.02896 Statistics Theory +1702.02897 Learning +1702.02898 +1702.02899 Group Theory +1702.02900 Solar and Stellar Astrophysics +1702.02901 Learning +1702.02902 Quantum Algebra +1702.02903 Distributed, Parallel, and Cluster Computing +1702.02904 Solar and Stellar Astrophysics +1702.02905 High Energy Astrophysical Phenomena +1702.02906 Learning +1702.02908 Number Theory +1702.02909 Numerical Analysis +1702.02910 Solar and Stellar Astrophysics +1702.02911 Exactly Solvable and Integrable Systems +1702.02912 Numerical Analysis +1702.02914 Learning +1702.02915 Computer Science and Game Theory +1702.02918 Rings and Algebras +1702.02920 Dynamical Systems +1702.02921 +1702.02922 High Energy Astrophysical Phenomena +1702.02923 Cosmology and Nongalactic Astrophysics +1702.02925 Computer Vision and Pattern Recognition +1702.02926 Formal Languages and Automata Theory +1702.02927 +1702.02928 Algebraic Topology +1702.02929 Lattice +1702.02930 Statistical Mechanics +1702.02931 Numerical Analysis +1702.02932 Solar and Stellar Astrophysics +1702.02933 Quantum Gases +1702.02935 Quantum Gases +1702.02936 Combinatorics +1702.02937 Data Structures and Algorithms +1702.02939 Biological Physics +1702.02940 Plasma Physics +1702.02941 +math/0311451 Dynamical Systems +math/0511298 Dynamical Systems +math/0608545 Dynamical Systems +0708.2668 Metric Geometry +0910.5742 Soft Condensed Matter +0910.5748 Soft Condensed Matter +1002.3583 Functional Analysis +1002.3721 Classical Analysis and ODEs +1104.1201 History and Overview +1111.6350 Theory +1207.6687 K-Theory and Homology +1210.4606 Differential Geometry +1211.3798 Soft Condensed Matter +1301.3961 Metric Geometry +1306.0847 Differential Geometry +1307.8227 Quantum Algebra +1308.0266 Combinatorics +1308.0544 Computer Science and Game Theory +1308.0856 Algebraic Topology +1310.0938 History and Philosophy of Physics +1311.2128 +1311.5882 Mesoscale and Nanoscale Physics +1401.6192 +1404.4132 Numerical Analysis +1405.1501 Optimization and Control +1407.0430 Optimization and Control +1407.4981 Computation +1408.0121 +1409.7118 Metric Geometry +1410.1320 Mesoscale and Nanoscale Physics +1410.5865 +1411.7473 +1412.8138 Combinatorics +1501.03412 +1502.01183 Combinatorics +1502.05238 Economics +1502.05480 Optimization and Control +1502.06521 Logic +1504.06689 Algebraic Geometry +1504.08197 Analysis of PDEs +1506.06826 Dynamical Systems +1506.08592 Discrete Mathematics +1507.03207 Analysis of PDEs +1507.07055 Statistics Theory +1507.07699 Probability +1508.00201 High Energy Astrophysical Phenomena +1508.05631 Optimization and Control +1508.05998 Mesoscale and Nanoscale Physics +1508.06904 Learning +1509.01718 Algebraic Geometry +1509.03118 Distributed, Parallel, and Cluster Computing +1509.05521 Numerical Analysis +1510.00621 +1510.01362 Number Theory +1510.02749 Digital Libraries +1510.03482 Computational Complexity +1510.03650 Information Theory +1510.04103 Algebraic Geometry +1510.04623 High Energy Astrophysical Phenomena +1510.06717 Phenomenology +1510.09154 +1511.05762 Superconductivity +1511.06139 Statistical Mechanics +1511.08191 Classical Analysis and ODEs +1512.02499 Combinatorics +1512.06589 +1512.06769 Analysis of PDEs +1512.07401 +1601.01632 Materials Science +1601.02521 Algebraic Topology +1601.06461 Soft Condensed Matter +1601.07460 Learning +1602.01283 Probability +1602.01764 Data Structures and Algorithms +1602.04860 Logic in Computer Science +1602.06073 +1602.08299 Neurons and Cognition +1603.04083 Complex Variables +1603.04300 Probability +1603.05363 Cosmology and Nongalactic Astrophysics +1603.07221 Numerical Analysis +1603.07567 Robotics +1604.00539 Statistics Theory +1604.00816 Instrumentation and Detectors +1604.01650 Differential Geometry +1604.02875 Rings and Algebras +1604.04453 +1604.05477 Statistical Mechanics +1604.05731 +1604.05858 Astrophysics of Galaxies +1604.07857 Strongly Correlated Electrons +1605.01240 Geometric Topology +1605.01281 High Energy Astrophysical Phenomena +1605.01348 Information Theory +1605.01756 +1605.02907 Group Theory +1605.03987 Cell Behavior +1605.04480 Number Theory +1605.05000 +1605.06432 Machine Learning +1605.06699 +1605.06944 Rings and Algebras +1605.07826 Computation +1605.09139 Combinatorics +1606.01984 Machine Learning +1606.02393 Computer Vision and Pattern Recognition +1606.03994 Group Theory +1606.04052 Computation and Language +1606.04061 +1606.04809 Optimization and Control +1606.05550 Emerging Technologies +1607.01151 Optimization and Control +1607.02083 Theory +1607.02221 Cosmology and Nongalactic Astrophysics +1607.03597 Computer Vision and Pattern Recognition +1607.03993 Mesoscale and Nanoscale Physics +1607.04433 Computer Vision and Pattern Recognition +1607.04871 Combinatorics +1607.06777 Phenomenology +1607.07086 Learning +1607.07546 Representation Theory +1607.07558 Robotics +1607.08348 +1608.01794 +1608.02190 Accelerator Physics +1608.02544 Quantum Gases +1608.02894 Quantum Gases +1608.03566 Fluid Dynamics +1608.03942 Soft Condensed Matter +1608.04927 Strongly Correlated Electrons +1608.05012 Methodology +1608.06261 High Energy Astrophysical Phenomena +1608.08025 +1608.08049 Computer Vision and Pattern Recognition +1608.08128 Computer Vision and Pattern Recognition +1608.08139 Information Retrieval +1609.00576 Metric Geometry +1609.01518 Materials Science +1609.02187 Statistical Mechanics +1609.02516 Optics +1609.02892 Classical Analysis and ODEs +1609.03302 Computer Vision and Pattern Recognition +1609.03866 +1609.04084 Probability +1609.04430 Theory +1609.04812 +1609.04888 Robotics +1609.05134 +1609.05680 Spectral Theory +1609.05692 Quantitative Methods +1609.06094 +1609.06201 Numerical Analysis +1609.06230 Phenomenology +1609.06248 Optimization and Control +1609.07248 Metric Geometry +1610.00892 Geophysics +1610.00921 Classical Analysis and ODEs +1610.01523 +1610.02025 Phenomenology +1610.03432 Materials Science +1610.03627 Neurons and Cognition +1610.04040 Optics +1610.04369 +1610.04658 Machine Learning +1610.04857 Experiment +1610.05755 Machine Learning +1610.05792 Learning +1610.05860 Representation Theory +1610.07044 Experiment +1610.07148 +1610.08549 Phenomenology +1610.09143 +1610.09218 Experiment +1610.09749 Mesoscale and Nanoscale Physics +1611.00496 Dynamical Systems +1611.00512 High Energy Astrophysical Phenomena +1611.01600 Neural and Evolutionary Computing +1611.01673 Learning +1611.01704 Computer Vision and Pattern Recognition +1611.02102 Computer Vision and Pattern Recognition +1611.02104 Disordered Systems and Neural Networks +1611.02330 +1611.02456 Optimization and Control +1611.02568 Learning +1611.02790 Cosmology and Nongalactic Astrophysics +1611.02924 +1611.03084 Astrophysics of Galaxies +1611.03131 Learning +1611.03378 Mesoscale and Nanoscale Physics +1611.03427 Machine Learning +1611.04112 +1611.04222 Optics +1611.04269 Soft Condensed Matter +1611.05523 +1611.05657 Optics +1611.05865 Instrumentation and Detectors +1611.05985 Information Theory +1611.06188 Machine Learning +1611.06759 Data Analysis, Statistics and Probability +1611.06792 Information Retrieval +1611.06860 Materials Science +1611.07965 Combinatorics +1611.08325 Theory +1611.08429 Functional Analysis +1611.09020 Computation and Language +1611.09297 Operator Algebras +1611.09312 Computer Vision and Pattern Recognition +1611.09913 Machine Learning +1612.00150 Optimization and Control +1612.00348 Theory +1612.00614 Strongly Correlated Electrons +1612.00763 Statistical Mechanics +1612.00782 +1612.00846 Strongly Correlated Electrons +1612.02176 Mesoscale and Nanoscale Physics +1612.02178 Combinatorics +1612.02379 Mesoscale and Nanoscale Physics +1612.02647 Formal Languages and Automata Theory +1612.02917 High Energy Astrophysical Phenomena +1612.03019 Computer Vision and Pattern Recognition +1612.03537 Phenomenology +1612.03948 Learning +1612.04329 Phenomenology +1612.04879 Number Theory +1612.05263 +1612.06849 +1612.08512 Differential Geometry +1612.09286 Medical Physics +1701.00290 Differential Geometry +1701.00291 Optics +1701.02459 Group Theory +1701.02589 Dynamical Systems +1701.02752 High Energy Astrophysical Phenomena +1701.02903 Formal Languages and Automata Theory +1701.03395 Analysis of PDEs +1701.03404 Physics and Society +1701.03500 Artificial Intelligence +1701.03624 Symplectic Geometry +1701.03976 Adaptation and Self-Organizing Systems +1701.04759 Mesoscale and Nanoscale Physics +1701.05470 Soft Condensed Matter +1701.05914 Statistical Mechanics +1701.05960 Materials Science +1701.06177 +1701.06334 +1701.06795 Instrumentation and Methods for Astrophysics +1701.07058 Computer Science and Game Theory +1701.07084 Functional Analysis +1701.08142 Methodology +1701.08223 Chemical Physics +1701.08307 Instrumentation and Methods for Astrophysics +1701.08526 Information Theory +1702.00071 Learning +1702.00185 Phenomenology +1702.01008 Analysis of PDEs +1702.01347 Numerical Analysis +1702.02152 Phenomenology +1702.02523 Analysis of PDEs +1702.02797 Probability +1702.02870 Dynamical Systems +1702.03065 Networking and Internet Architecture +1702.04226 Systems and Control +1702.04247 Theory +1702.04426 Disordered Systems and Neural Networks +1702.05059 Phenomenology +1702.05141 Combinatorics +1702.05157 Networking and Internet Architecture +1702.05353 Rings and Algebras +1702.05395 Optics +1702.05494 Solar and Stellar Astrophysics +1702.05889 +1702.05996 Dynamical Systems +1702.06007 High Energy Astrophysical Phenomena +1702.06012 Lattice +1702.06128 Theory +1702.06470 Soft Condensed Matter +1702.06561 Chaotic Dynamics +1702.06579 Representation Theory +1702.07063 Theory +1702.07081 Distributed, Parallel, and Cluster Computing +1702.07377 Astrophysics of Galaxies +1702.07491 Emerging Technologies +1702.07576 +1702.07646 Experiment +1702.07800 Learning +1702.07850 +1702.07853 Analysis of PDEs +1702.08461 Earth and Planetary Astrophysics +1702.08608 Machine Learning +1702.08637 Numerical Analysis +1702.08682 Biological Physics +1703.00034 Information Retrieval +1703.00055 Programming Languages +1703.00103 Group Theory +1703.00123 Networking and Internet Architecture +1703.00189 Phenomenology +1703.00203 Physics and Society +1703.00204 Dynamical Systems +1703.00357 Populations and Evolution +1703.00393 High Energy Astrophysical Phenomena +1703.00394 High Energy Astrophysical Phenomena +1703.00402 Phenomenology +1703.00435 +1703.00445 Other Quantitative Biology +1703.00483 Materials Science +1703.00504 Earth and Planetary Astrophysics +1703.00530 Mesoscale and Nanoscale Physics +1703.00535 Machine Learning +1703.00541 Networking and Internet Architecture +1703.00570 +1703.00573 Learning +1703.00589 +1703.00623 +1703.00654 Applications +1703.00660 Information Theory +1703.00725 Quantum Algebra +1703.00778 Symplectic Geometry +1703.00781 Probability +1703.00860 Phenomenology +1703.00866 +1703.00904 Earth and Planetary Astrophysics +1703.00906 +1703.00907 Representation Theory +1703.00909 Theory +1703.00910 Phenomenology +1703.00911 Strongly Correlated Electrons +1703.00913 High Energy Astrophysical Phenomena +1703.00914 Phenomenology +1703.00915 Theory +1703.00916 Astrophysics of Galaxies +1703.00917 Cosmology and Nongalactic Astrophysics +1703.00918 Probability +1703.00919 Multimedia +1703.00920 Cosmology and Nongalactic Astrophysics +1703.00921 Materials Science +1703.00922 Theory +1703.00923 Pricing of Securities +1703.00924 Distributed, Parallel, and Cluster Computing +1703.00925 Statistical Mechanics +1703.00926 Solar and Stellar Astrophysics +1703.00927 Computer Science and Game Theory +1703.00928 Earth and Planetary Astrophysics +1703.00929 Numerical Analysis +1703.00930 Differential Geometry +1703.00934 Solar and Stellar Astrophysics +1703.00935 Algebraic Topology +1703.00936 Theory +1703.00937 Fluid Dynamics +1703.00938 Information Theory +1703.00939 Materials Science +1703.00940 Populations and Evolution +1703.00941 Computational Complexity +1703.00942 +1703.00944 History and Overview +1703.00945 Combinatorics +1703.00946 Analysis of PDEs +1703.00947 Probability +1703.00948 Information Retrieval +1703.00949 Instrumentation and Methods for Astrophysics +1703.00950 Fluid Dynamics +1703.00951 Information Theory +1703.00954 Cosmology and Nongalactic Astrophysics +1703.00955 Learning +1703.00956 Learning +1703.00957 Pricing of Securities +1703.00958 Software Engineering +1703.00959 Combinatorics +1703.00960 Operator Algebras +1703.00962 Instrumentation and Detectors +1703.00963 Instrumentation and Detectors +1703.00964 Instrumentation and Detectors +1703.00965 High Energy Astrophysical Phenomena +1703.00966 +1703.00968 Methodology +1703.00969 Soft Condensed Matter +1703.00973 Data Analysis, Statistics and Probability +1703.00974 Complex Variables +1703.00975 Theory +1703.00977 Machine Learning +1703.00978 Systems and Control +1703.00979 Group Theory +1703.00981 Neurons and Cognition +1703.00982 Theory +1703.00983 Databases +1703.00984 Differential Geometry +1703.00985 Numerical Analysis +1703.00986 Learning +1703.00988 Group Theory +1703.00989 Learning +1703.00990 Geometric Topology +1703.00991 Theory +1703.00992 Data Analysis, Statistics and Probability +1703.00993 Computation and Language +1703.00994 Machine Learning +1703.00995 Materials Science +1703.00997 Astrophysics of Galaxies +1703.00998 Numerical Analysis +1703.00999 Superconductivity +1703.01001 Category Theory +1703.01003 Differential Geometry +1703.01004 Phenomenology +1703.01005 Analysis of PDEs +1703.01006 Learning +1703.01011 +1703.01013 Theory +1703.01014 Learning +1703.01016 Materials Science +1703.01017 Materials Science +1703.01018 Strongly Correlated Electrons +1703.01019 Materials Science +1703.01020 Statistical Mechanics +1703.01022 Analysis of PDEs +1703.01024 Computation and Language +1703.01025 Computer Vision and Pattern Recognition +1703.01026 Artificial Intelligence +1703.01027 Probability +1703.01028 Computer Vision and Pattern Recognition +1703.01029 Optimization and Control +1703.01030 Learning +1703.01031 +1703.01032 +1703.01033 Classical Analysis and ODEs +1703.01034 Numerical Analysis +1703.01035 Phenomenology +1703.01036 Combinatorics +1703.01037 Materials Science +1703.01039 Cellular Automata and Lattice Gases +1703.01040 Robotics +1703.01041 Neural and Evolutionary Computing +1703.01042 Systems and Control +1703.01043 Atmospheric and Oceanic Physics +1703.01044 Applications +1703.01046 Systems and Control +1703.01047 Algebraic Topology +1703.01048 Systems and Control +1703.01049 Social and Information Networks +1703.01050 Instrumentation and Detectors +1703.01051 Applications +1703.01052 Soft Condensed Matter +1703.01053 Computer Vision and Pattern Recognition +1703.01054 Social and Information Networks +1703.01055 Numerical Analysis +1703.01057 Geometric Topology +1703.01058 Plasma Physics +1703.01059 +1703.01060 Probability +1703.01064 Classical Analysis and ODEs +1703.01065 Networking and Internet Architecture +1703.01066 Analysis of PDEs +1703.01067 +1703.01068 Geometric Topology +1703.01069 Exactly Solvable and Integrable Systems +1703.01070 Differential Geometry +1703.01071 Classical Analysis and ODEs +1703.01072 Digital Libraries +1703.01073 High Energy Astrophysical Phenomena +1703.01074 Analysis of PDEs +1703.01076 +1703.01077 History and Overview +1703.01078 Software Engineering +1703.01079 Fluid Dynamics +1703.01080 Information Theory +1703.01081 Strongly Correlated Electrons +1703.01082 Instrumentation and Detectors +1703.01083 Artificial Intelligence +1703.01085 Representation Theory +1703.01088 Fluid Dynamics +1703.01089 General Mathematics +1703.01090 Astrophysics of Galaxies +1703.01091 Analysis of PDEs +1703.01093 Information Retrieval +1703.01095 Probability +1703.01096 Atomic Physics +1703.01097 Solar and Stellar Astrophysics +1703.01098 Representation Theory +1703.01099 Materials Science +1703.01100 Representation Theory +1703.01101 Machine Learning +1703.01102 Methodology +1703.01103 +1703.01105 Differential Geometry +1703.01106 Machine Learning +1703.01107 Systems and Control +1703.01108 Geometric Topology +1703.01109 Rings and Algebras +1703.01110 Mesoscale and Nanoscale Physics +1703.01111 Strongly Correlated Electrons +1703.01112 Phenomenology +1703.01114 Plasma Physics +1703.01115 Mesoscale and Nanoscale Physics +1703.01116 Instrumentation and Methods for Astrophysics +1703.01117 Group Theory +1703.01118 Optics +1703.01119 Dynamical Systems +1703.01120 Computer Vision and Pattern Recognition +1703.01121 Computer Science and Game Theory +1703.01122 Logic in Computer Science +1703.01123 Theory +1703.01124 Analysis of PDEs +1703.01125 Chemical Physics +1703.01126 Complex Variables +1703.01128 Experiment +1703.01129 Mesoscale and Nanoscale Physics +1703.01130 Rings and Algebras +1703.01131 Solar and Stellar Astrophysics +1703.01132 Numerical Analysis +1703.01133 Number Theory +1703.01134 Differential Geometry +1703.01135 Computer Vision and Pattern Recognition +1703.01137 Risk Management +1703.01138 Computer Science and Game Theory +1703.01139 Optics +1703.01140 +1703.01141 Learning +1703.01143 Computational Complexity +1703.01144 Materials Science +1703.01145 Materials Science +1703.01146 Mesoscale and Nanoscale Physics +1703.01148 Databases +1703.01149 Discrete Mathematics +1703.01150 Commutative Algebra +1703.01151 Astrophysics of Galaxies +1703.01152 Metric Geometry +1703.01153 Lattice +1703.01154 Materials Science +1703.01155 Strongly Correlated Electrons +1703.01156 Theory +1703.01157 Analysis of PDEs +1703.01158 +1703.01159 +1703.01162 Materials Science +1703.01163 Materials Science +1703.01164 Robotics +1703.01165 Disordered Systems and Neural Networks +1703.01167 Emerging Technologies +1703.01168 Information Theory +1703.01169 Functional Analysis +1703.01170 Computer Vision and Pattern Recognition +1703.01171 Theory +1703.01173 Materials Science +1703.01175 Numerical Analysis +1703.01176 Analysis of PDEs +1703.01177 General Physics +1703.01178 Materials Science +1703.01179 General Physics +1703.01180 Numerical Analysis +1703.01181 Materials Science +1703.01182 Astrophysics of Galaxies +1703.01184 Cosmology and Nongalactic Astrophysics +1703.01185 High Energy Astrophysical Phenomena +1703.01186 +1703.01187 Physics and Society +1703.01189 Dynamical Systems +1703.01190 Information Theory +1703.01191 Algebraic Geometry +1703.01192 Programming Languages +1703.01193 High Energy Astrophysical Phenomena +1703.01195 Systems and Control +1703.01196 Learning +1703.01197 Quantum Gases +1703.01198 Soft Condensed Matter +1703.01199 Differential Geometry +1703.01200 Computers and Society +1703.01201 Astrophysics of Galaxies +1703.01202 Computational Engineering, Finance, and Science +1703.01204 Logic in Computer Science +1703.01205 Plasma Physics +1703.01206 Dynamical Systems +1703.01207 Combinatorics +1703.01208 Information Theory +1703.01209 Materials Science +1703.01210 Computer Vision and Pattern Recognition +1703.01211 Soft Condensed Matter +1703.01212 Logic in Computer Science +1703.01213 Soft Condensed Matter +1703.01214 Geophysics +1703.01215 Number Theory +1703.01216 Numerical Analysis +1703.01218 Learning +1703.01219 Superconductivity +1703.01220 Computer Vision and Pattern Recognition +1703.01221 Analysis of PDEs +1703.01222 Biomolecules +1703.01223 Soft Condensed Matter +1703.01224 Networking and Internet Architecture +1703.01225 Systems and Control +1703.01226 Computer Vision and Pattern Recognition +1703.01227 Theory +1703.01228 Materials Science +1703.01229 Computer Vision and Pattern Recognition +1703.01230 Phenomenology +1703.01231 Numerical Analysis +1703.01234 Methodology +1703.01235 Mesoscale and Nanoscale Physics +1703.01236 Solar and Stellar Astrophysics +1703.01237 Applications +1703.01238 Plasma Physics +1703.01239 Theory +1703.01240 Statistical Mechanics +1703.01241 Instrumentation and Methods for Astrophysics +1703.01242 General Mathematics +1703.01243 Computer Vision and Pattern Recognition +1703.01244 General Mathematics +1703.01245 Solar and Stellar Astrophysics +1703.01246 Biomolecules +1703.01248 Computer Vision and Pattern Recognition +1703.01249 Strongly Correlated Electrons +1703.01250 Robotics +1703.01251 Solar and Stellar Astrophysics +1703.01255 Phenomenology +1703.01256 Information Theory +1703.01257 Systems and Control +1703.01258 Atomic Physics +1703.01259 Optics +1703.01260 Learning +1703.01261 Information Theory +1703.01262 Instrumentation and Detectors +1703.01263 High Energy Astrophysical Phenomena +1703.01264 Differential Geometry +1703.01265 +1703.01266 +1703.01267 Information Theory +1703.01268 +1703.01269 Theory +1703.01270 Robotics +1703.01271 Cosmology and Nongalactic Astrophysics +1703.01272 +1703.01273 Computation +1703.01275 Cosmology and Nongalactic Astrophysics +1703.01276 Optics +1703.01277 +1703.01278 Analysis of PDEs +1703.01279 Information Theory +1703.01280 Pattern Formation and Solitons +1703.01281 Robotics +1703.01282 Group Theory +1703.01283 Analysis of PDEs +1703.01284 Cryptography and Security +1703.01286 Distributed, Parallel, and Cluster Computing +1703.01287 Information Theory +1703.01288 Programming Languages +1703.01289 Computer Vision and Pattern Recognition +1703.01290 Computer Vision and Pattern Recognition +hep-th/0610217 Theory +0806.3275 Soft Condensed Matter +0807.1387 Differential Geometry +0906.5268 Differential Geometry +1010.6232 Chemical Physics +1108.5327 Geometric Topology +1201.5948 Exactly Solvable and Integrable Systems +1203.0664 Soft Condensed Matter +1203.1797 Fluid Dynamics +1204.4195 Theory +1204.6262 Soft Condensed Matter +1205.6027 Combinatorics +1205.6263 Statistical Mechanics +1206.0016 Theory +1208.1293 +1208.1882 Chemical Physics +1208.2980 Phenomenology +1208.6235 +1211.4801 Computation +1212.6416 +1301.7613 Cosmology and Nongalactic Astrophysics +1302.4740 Mesoscale and Nanoscale Physics +1302.5368 Materials Science +1302.5404 Mesoscale and Nanoscale Physics +1304.0688 +1304.7989 Soft Condensed Matter +1305.0086 Category Theory +1305.0927 +1305.1382 Statistical Mechanics +1305.4063 Cryptography and Security +1306.2212 Materials Science +1306.2983 Soft Condensed Matter +1306.3392 Quantitative Methods +1307.2035 Computer Science and Game Theory +1307.4710 Soft Condensed Matter +1307.5318 +1308.1154 Statistical Finance +1309.2241 Theory +1309.4287 Neurons and Cognition +1310.3282 Geometric Topology +1310.7501 Molecular Networks +1311.1354 Machine Learning +1311.5840 +1312.2127 Algebraic Topology +1312.4429 Discrete Mathematics +1312.6345 Chemical Physics +1401.1359 Exactly Solvable and Integrable Systems +1401.3103 General Finance +1402.1172 Cosmology and Nongalactic Astrophysics +1402.1939 Physics and Society +1402.7255 Differential Geometry +1403.1552 Populations and Evolution +1403.2292 Populations and Evolution +1403.3654 Neurons and Cognition +1403.5727 Theory +1404.7458 Formal Languages and Automata Theory +1404.7798 Astrophysics of Galaxies +1405.1635 Phenomenology +1405.3718 Computation +1405.6623 Populations and Evolution +1406.0101 Superconductivity +1406.0415 Fluid Dynamics +1406.1548 Physics and Society +1406.2615 Numerical Analysis +1406.3526 +1406.4105 Genomics +1407.0199 Digital Libraries +1407.0550 Astrophysics of Galaxies +1407.0667 Medical Physics +1407.1646 Theory +1407.3781 Materials Science +1407.5255 Combinatorics +1407.5429 General Finance +1407.5442 Social and Information Networks +1407.6074 Populations and Evolution +1408.3802 Molecular Networks +1409.0641 Theory +1409.1456 Artificial Intelligence +1409.1783 Tissues and Organs +1409.2354 Combinatorics +1409.2702 Computer Vision and Pattern Recognition +1409.4870 Strongly Correlated Electrons +1409.5060 +1409.6577 Experiment +1409.7980 Algebraic Topology +1409.8388 Optics +1410.1226 Optics +1410.6353 Medical Physics +1410.7622 Cosmology and Nongalactic Astrophysics +1411.0353 Geometric Topology +1411.0721 Quantitative Methods +1411.3590 +1411.4566 Disordered Systems and Neural Networks +1411.4780 Mesoscale and Nanoscale Physics +1411.5280 Astrophysics of Galaxies +1411.5610 Functional Analysis +1411.5877 Astrophysics of Galaxies +1411.7550 Theory +1412.0254 Geometric Topology +1412.0737 Number Theory +1412.2214 Analysis of PDEs +1412.3050 Methodology +1501.00170 Mesoscale and Nanoscale Physics +1501.00225 Probability +1501.00458 +1501.01745 Populations and Evolution +1501.03308 Materials Science +1501.05365 Geometric Topology +1502.00251 Materials Science +1502.00297 Mesoscale and Nanoscale Physics +1502.04718 Phenomenology +1502.05072 Cosmology and Nongalactic Astrophysics +1502.05148 Functional Analysis +1502.05442 Mathematical Finance +1502.06048 Statistical Mechanics +1502.07003 Combinatorics +1502.07238 Physics and Society +1503.01045 Fluid Dynamics +1503.01721 Medical Physics +1503.01722 Medical Physics +1503.01997 Subcellular Processes +1503.04134 +1503.04515 +1503.06704 Trading and Market Microstructure +1503.08033 Neurons and Cognition +1503.08526 Optimization and Control +1504.00502 Physics and Society +1504.05839 +1504.06611 Physics and Society +1504.07358 Algebraic Topology +1505.02396 Complex Variables +1505.03477 Phenomenology +1505.04806 Combinatorics +1505.06033 Biological Physics +1505.06739 High Energy Astrophysical Phenomena +1505.06772 Probability +1505.07372 Physics and Society +1505.07437 Combinatorics +1506.01074 Group Theory +1506.01162 Geometric Topology +1506.02109 Algebraic Geometry +1506.04074 +1506.04375 Subcellular Processes +1506.04422 Learning +1506.04787 Robotics +1506.05092 +1506.06590 +1506.07062 Computer Vision and Pattern Recognition +1507.00691 Social and Information Networks +1507.01460 Category Theory +1507.02298 Theory +1507.02406 Superconductivity +1507.02949 Probability +1507.03696 Soft Condensed Matter +1507.03798 Complex Variables +1507.05556 +1508.00542 Combinatorics +1508.01048 Geometric Topology +1508.04029 Combinatorics +1508.04536 Algebraic Geometry +1508.05310 Combinatorics +1508.05754 Combinatorics +1508.07163 +1509.00611 Cosmology and Nongalactic Astrophysics +1509.01502 Physics and Society +1509.03277 Geometric Topology +1509.04065 Cellular Automata and Lattice Gases +1509.07054 Physics and Society +1509.07559 Geometric Topology +1509.07593 Numerical Analysis +1510.00642 Neurons and Cognition +1510.01341 Algebraic Topology +1510.01636 +1510.01692 Cosmology and Nongalactic Astrophysics +1510.03329 Probability +1510.03337 Differential Geometry +1510.03386 Theory +1510.03917 Combinatorics +1510.04602 +1510.05434 Combinatorics +1510.05650 Astrophysics of Galaxies +1510.06051 Combinatorics +1510.06854 Mesoscale and Nanoscale Physics +1510.07150 Soft Condensed Matter +1510.07312 Combinatorics +1510.07927 Economics +1510.08036 Combinatorics +1510.08190 Combinatorics +1510.08779 Computational Complexity +1510.08859 +1511.00080 Combinatorics +1511.00157 Formal Languages and Automata Theory +1511.00192 Combinatorics +1511.00473 Combinatorics +1511.01076 Combinatorics +1511.01830 Social and Information Networks +1511.04001 Genomics +1511.05456 Combinatorics +1511.06217 Strongly Correlated Electrons +1511.06568 Discrete Mathematics +1511.07776 Mesoscale and Nanoscale Physics +1511.08241 Group Theory +1512.01590 Strongly Correlated Electrons +1512.01602 Category Theory +1512.02041 Strongly Correlated Electrons +1512.02575 Materials Science +1512.03236 Combinatorics +1512.05618 Phenomenology +1512.05637 Numerical Analysis +1512.05638 Numerical Analysis +1512.07072 Strongly Correlated Electrons +1512.07307 Biological Physics +1512.08085 Cell Behavior +1512.09114 Physics and Society +1601.00696 Phenomenology +1601.00701 Neurons and Cognition +1601.00716 Quantitative Methods +1601.01416 Geometric Topology +1601.01496 Number Theory +1601.01767 Materials Science +1601.01865 Algebraic Topology +1601.01918 Theory +1601.02523 Instrumentation and Detectors +1601.02626 Neurons and Cognition +1601.04133 Number Theory +1601.04302 Applications +1601.04685 Quantitative Methods +1601.05374 Atomic and Molecular Clusters +1601.06692 Dynamical Systems +1601.06785 High Energy Astrophysical Phenomena +1601.06925 Information Theory +1601.07126 Biological Physics +1601.07715 Statistical Mechanics +1602.00034 Rings and Algebras +1602.00731 Trading and Market Microstructure +1602.01360 Strongly Correlated Electrons +1602.01926 Optics +1602.02170 Soft Condensed Matter +1602.02662 Quantum Algebra +1602.02941 Combinatorics +1602.05135 Quantitative Methods +1602.05983 Strongly Correlated Electrons +1602.06170 Accelerator Physics +1602.06657 Social and Information Networks +1602.07082 Molecular Networks +1602.07418 +1602.08316 Quantum Algebra +1602.08742 Computation and Language +1602.09044 Molecular Networks +1603.00024 Phenomenology +1603.00206 Number Theory +1603.00459 Tissues and Organs +1603.00527 Mathematical Finance +1603.00933 Mesoscale and Nanoscale Physics +1603.01310 Analysis of PDEs +1603.01925 Computational Complexity +1603.01994 Populations and Evolution +1603.02140 Materials Science +1603.03214 +1603.03257 Experiment +1603.04005 Combinatorics +1603.04155 Superconductivity +1603.04368 Cosmology and Nongalactic Astrophysics +1603.04773 Populations and Evolution +1603.05198 Phenomenology +1603.06090 Biomolecules +1603.07087 Instrumentation and Methods for Astrophysics +1603.07322 Performance +1603.07389 Soft Condensed Matter +1603.08127 Populations and Evolution +1603.09547 Strongly Correlated Electrons +1604.00042 Algebraic Geometry +1604.00167 Molecular Networks +1604.01277 Artificial Intelligence +1604.02160 Combinatorics +1604.02495 Optics +1604.03619 Biological Physics +1604.03836 Geometric Topology +1604.04143 Analysis of PDEs +1604.04360 Fluid Dynamics +1604.04511 Strongly Correlated Electrons +1604.04640 Networking and Internet Architecture +1604.04913 Tissues and Organs +1604.05832 +1604.07330 Cosmology and Nongalactic Astrophysics +1604.07408 High Energy Astrophysical Phenomena +1604.07940 Superconductivity +1604.08613 Astrophysics of Galaxies +1604.08875 Algebraic Geometry +1605.00379 Astrophysics of Galaxies +1605.00569 Phenomenology +1605.00600 +1605.00608 Chemical Physics +1605.01354 Trading and Market Microstructure +1605.01493 Solar and Stellar Astrophysics +1605.02143 +1605.02186 Cell Behavior +1605.02273 Numerical Analysis +1605.02632 Atomic Physics +1605.02643 Probability +1605.02959 Medical Physics +1605.03371 Mesoscale and Nanoscale Physics +1605.03385 Statistical Mechanics +1605.03598 Astrophysics of Galaxies +1605.03626 Biological Physics +1605.04292 Databases +1605.04707 Cosmology and Nongalactic Astrophysics +1605.05371 Molecular Networks +1605.05587 Molecular Networks +1605.05726 Pattern Formation and Solitons +1605.06023 Operator Algebras +1605.06056 +1605.06477 Learning +1605.06617 +1605.06641 Strongly Correlated Electrons +1605.06742 Machine Learning +1605.06771 +1605.07349 Statistical Mechanics +1605.07902 +1605.07998 Materials Science +1605.08048 Phenomenology +1605.08414 Probability +1605.08741 Phenomenology +1605.08881 Computer Vision and Pattern Recognition +1605.09379 Astrophysics of Galaxies +1605.09422 Atomic Physics +1605.09449 Soft Condensed Matter +1605.09524 High Energy Astrophysical Phenomena +1606.00367 Plasma Physics +1606.00416 Medical Physics +1606.00466 Space Physics +1606.00698 +1606.01027 Analysis of PDEs +1606.01270 Physics and Society +1606.01539 Strongly Correlated Electrons +1606.01909 Astrophysics of Galaxies +1606.01959 Data Analysis, Statistics and Probability +1606.02532 +1606.03117 +1606.03154 Exactly Solvable and Integrable Systems +1606.03226 Theory +1606.03708 Cosmology and Nongalactic Astrophysics +1606.03987 Methodology +1606.04360 Probability +1606.04393 Computer Vision and Pattern Recognition +1606.04439 Category Theory +1606.05612 Solar and Stellar Astrophysics +1606.05710 Optimization and Control +1606.05913 Populations and Evolution +1606.05968 Geometric Topology +1606.06142 Physics and Society +1606.06675 Materials Science +1606.06734 Astrophysics of Galaxies +1606.06971 +1606.07144 +1606.07174 Phenomenology +1606.07325 Atmospheric and Oceanic Physics +1606.08365 Networking and Internet Architecture +1606.08763 +1606.08879 High Energy Astrophysical Phenomena +1606.08885 Soft Condensed Matter +1606.09382 +1606.09545 Neurons and Cognition +1606.09563 Instrumentation and Detectors +1607.00285 Soft Condensed Matter +1607.00384 Astrophysics of Galaxies +1607.00730 Computer Vision and Pattern Recognition +1607.00775 +1607.00887 +1607.01129 Cosmology and Nongalactic Astrophysics +1607.01201 Cell Behavior +1607.01653 Materials Science +1607.01965 Differential Geometry +1607.02030 Theory +1607.02413 Information Theory +1607.02837 +1607.02903 High Energy Astrophysical Phenomena +1607.03221 Quantum Gases +1607.03486 Astrophysics of Galaxies +1607.03957 Molecular Networks +1607.04064 Genomics +1607.04177 +1607.04528 +1607.04784 Solar and Stellar Astrophysics +1607.04858 Chemical Physics +1607.05030 Probability +1607.05339 Geophysics +1607.05409 +1607.05518 Fluid Dynamics +1607.05741 Mesoscale and Nanoscale Physics +1607.06093 High Energy Astrophysical Phenomena +1607.06738 Lattice +1607.07170 Numerical Analysis +1607.07359 Tissues and Organs +1607.07648 Chaotic Dynamics +1607.07863 Cosmology and Nongalactic Astrophysics +1607.08067 Computational Complexity +1607.08072 Accelerator Physics +1607.08370 Digital Libraries +1607.08798 Adaptation and Self-Organizing Systems +1607.08840 Neurons and Cognition +1608.00446 +1608.00454 Phenomenology +1608.01753 Genomics +1608.01786 Physics and Society +1608.01994 Phenomenology +1608.02127 Soft Condensed Matter +1608.02186 Plasma Physics +1608.02189 Mesoscale and Nanoscale Physics +1608.02214 Computation and Language +1608.02283 +1608.02478 Probability +1608.03213 +1608.03293 Cosmology and Nongalactic Astrophysics +1608.03486 Materials Science +1608.03940 Phenomenology +1608.04389 Astrophysics of Galaxies +1608.04745 Phenomenology +1608.05184 High Energy Astrophysical Phenomena +1608.05523 Mesoscale and Nanoscale Physics +1608.05731 Solar and Stellar Astrophysics +1608.05742 Robotics +1608.05909 Quantum Gases +1608.06108 Computers and Society +1608.06463 Atomic and Molecular Clusters +1608.07638 Phenomenology +1608.07714 Instrumentation and Methods for Astrophysics +1608.08125 Earth and Planetary Astrophysics +1608.08793 Neurons and Cognition +1608.08906 Phenomenology +1609.00359 +1609.00372 Mesoscale and Nanoscale Physics +1609.00423 Instrumentation and Methods for Astrophysics +1609.00465 Superconductivity +1609.00636 +1609.00659 Atomic Physics +1609.00713 +1609.00841 Mesoscale and Nanoscale Physics +1609.00874 Soft Condensed Matter +1609.00977 Biological Physics +1609.01061 Rings and Algebras +1609.01153 +1609.01257 Distributed, Parallel, and Cluster Computing +1609.01532 High Energy Astrophysical Phenomena +1609.01558 +1609.01685 +1609.01726 Mesoscale and Nanoscale Physics +1609.01791 Optics +1609.01894 Mesoscale and Nanoscale Physics +1609.02087 Computer Vision and Pattern Recognition +1609.02432 +1609.02658 +1609.02899 Phenomenology +1609.02910 +1609.03071 Instrumentation and Detectors +1609.03080 +1609.03309 Phenomenology +1609.03357 Computation and Language +1609.03580 Solar and Stellar Astrophysics +1609.03584 +1609.03812 Strongly Correlated Electrons +1609.03998 Statistical Mechanics +1609.04164 Materials Science +1609.04262 Algebraic Geometry +1609.04317 Lattice +1609.04483 Materials Science +1609.04561 Analysis of PDEs +1609.04562 +1609.04828 High Energy Astrophysical Phenomena +1609.05756 +1609.05759 Superconductivity +1609.06285 +1609.06338 Atmospheric and Oceanic Physics +1609.06350 +1609.06391 Algebraic Geometry +1609.06444 Phenomenology +1609.07018 +1609.07649 Rings and Algebras +1609.07873 Solar and Stellar Astrophysics +1609.08051 Lattice +1609.08134 +1609.08323 Solar and Stellar Astrophysics +1609.08367 Logic in Computer Science +1609.08455 Materials Science +1609.08507 Theory +1609.08530 +1609.08559 +1609.08619 Statistical Mechanics +1609.08718 Earth and Planetary Astrophysics +1609.08967 Cosmology and Nongalactic Astrophysics +1609.09047 +1609.09254 Dynamical Systems +1609.09386 Experiment +1609.09522 Learning +1609.09570 Materials Science +1609.09704 +1609.09765 Phenomenology +1609.09772 Atomic and Molecular Clusters +1610.00168 Machine Learning +1610.00169 Theory +1610.00392 Theory +1610.00482 +1610.00569 Physics and Society +1610.00757 +1610.00904 High Energy Astrophysical Phenomena +1610.01422 Lattice +1610.01602 Astrophysics of Galaxies +1610.01850 Numerical Analysis +1610.02032 Mesoscale and Nanoscale Physics +1610.02038 Theory +1610.02123 Astrophysics of Galaxies +1610.02220 Instrumentation and Methods for Astrophysics +1610.02723 Plasma Physics +1610.03027 Combinatorics +1610.03035 Machine Learning +1610.03077 Astrophysics of Galaxies +1610.03673 High Energy Astrophysical Phenomena +1610.03753 Strongly Correlated Electrons +1610.03874 Mesoscale and Nanoscale Physics +1610.03893 Earth and Planetary Astrophysics +1610.04014 Earth and Planetary Astrophysics +1610.04232 Astrophysics of Galaxies +1610.04289 High Energy Astrophysical Phenomena +1610.04391 Systems and Control +1610.04813 Strongly Correlated Electrons +1610.04986 Phenomenology +1610.05104 Space Physics +1610.05133 Experiment +1610.05213 +1610.05506 Earth and Planetary Astrophysics +1610.05702 +1610.05774 Medical Physics +1610.06179 Phenomenology +1610.06188 Phenomenology +1610.06197 Phenomenology +1610.06353 Soft Condensed Matter +1610.06576 Astrophysics of Galaxies +1610.06933 Cosmology and Nongalactic Astrophysics +1610.07225 Theory +1610.07239 +1610.07305 Chemical Physics +1610.07360 Astrophysics of Galaxies +1610.07617 Phenomenology +1610.07626 +1610.07720 Phenomenology +1610.07774 Biological Physics +1610.07893 +1610.08042 Mesoscale and Nanoscale Physics +1610.08097 Phenomenology +1610.08103 Probability +1610.08267 Earth and Planetary Astrophysics +1610.08326 +1610.08377 Number Theory +1610.08931 Disordered Systems and Neural Networks +1610.09011 Networking and Internet Architecture +1610.09303 Experiment +1610.09341 Atomic Physics +1610.09399 Strongly Correlated Electrons +1610.09476 Experiment +1610.09717 Optics +1611.00161 Soft Condensed Matter +1611.00173 +1611.00299 Instrumentation and Detectors +1611.00407 Astrophysics of Galaxies +1611.00674 Computation and Language +1611.00859 Solar and Stellar Astrophysics +1611.01070 Earth and Planetary Astrophysics +1611.01371 Solar and Stellar Astrophysics +1611.01653 Phenomenology +1611.02029 Solar and Stellar Astrophysics +1611.02205 Learning +1611.02325 Information Theory +1611.02368 Solar and Stellar Astrophysics +1611.02402 Instrumentation and Methods for Astrophysics +1611.02422 Astrophysics of Galaxies +1611.02452 Solar and Stellar Astrophysics +1611.02630 Astrophysics of Galaxies +1611.02770 Learning +1611.03182 High Energy Astrophysical Phenomena +1611.03212 Astrophysics of Galaxies +1611.03317 Materials Science +1611.03319 Analysis of PDEs +1611.03418 +1611.03914 Astrophysics of Galaxies +1611.04044 +1611.04090 Statistical Finance +1611.04183 Strongly Correlated Electrons +1611.04247 Materials Science +1611.04261 Lattice +1611.04354 High Energy Astrophysical Phenomena +1611.04469 Astrophysics of Galaxies +1611.04670 +1611.04866 Cosmology and Nongalactic Astrophysics +1611.04926 Lattice +1611.05140 +1611.05462 Astrophysics of Galaxies +1611.05541 Astrophysics of Galaxies +1611.05570 Instrumentation and Methods for Astrophysics +1611.05609 High Energy Astrophysical Phenomena +1611.05855 Solar and Stellar Astrophysics +1611.05878 +1611.05960 +1611.06036 Plasma Physics +1611.06093 Mesoscale and Nanoscale Physics +1611.06955 Solar and Stellar Astrophysics +1611.07000 Instrumentation and Methods for Astrophysics +1611.07294 Phenomenology +1611.08481 Artificial Intelligence +1611.08612 Astrophysics of Galaxies +1611.08776 Solar and Stellar Astrophysics +1611.08794 Astrophysics of Galaxies +1611.08972 +1611.09283 Populations and Evolution +1611.09406 +1611.09499 Quantum Gases +1611.09676 Theory +1611.09826 Solar and Stellar Astrophysics +1611.09830 Computation and Language +1611.09864 Astrophysics of Galaxies +1611.10267 Quantum Gases +1612.00020 Cosmology and Nongalactic Astrophysics +1612.00137 Computer Vision and Pattern Recognition +1612.00224 Chemical Physics +1612.00436 Solar and Stellar Astrophysics +1612.00635 Theory +1612.00873 Solar and Stellar Astrophysics +1612.01122 Soft Condensed Matter +1612.01162 High Energy Astrophysical Phenomena +1612.01239 Materials Science +1612.01283 Astrophysics of Galaxies +1612.01614 Earth and Planetary Astrophysics +1612.01634 High Energy Astrophysical Phenomena +1612.01914 Theory +1612.01964 Theory +1612.02010 Phenomenology +1612.02015 Astrophysics of Galaxies +1612.02170 Emerging Technologies +1612.02556 Earth and Planetary Astrophysics +1612.02740 Earth and Planetary Astrophysics +1612.02776 Earth and Planetary Astrophysics +1612.02810 Astrophysics of Galaxies +1612.03044 Solar and Stellar Astrophysics +1612.03113 Theory +1612.03190 Theory +1612.03201 Classical Physics +1612.03219 High Energy Astrophysical Phenomena +1612.03754 Classical Analysis and ODEs +1612.03934 Plasma Physics +1612.03992 Astrophysics of Galaxies +1612.04105 Superconductivity +1612.04246 High Energy Astrophysical Phenomena +1612.04282 High Energy Astrophysical Phenomena +1612.04393 Astrophysics of Galaxies +1612.04401 Astrophysics of Galaxies +1612.04514 Quantitative Methods +1612.04710 Methodology +1612.04866 Astrophysics of Galaxies +1612.04872 Instrumentation and Methods for Astrophysics +1612.05126 Other Condensed Matter +1612.05189 Astrophysics of Galaxies +1612.05252 Solar and Stellar Astrophysics +1612.05513 Chemical Physics +1612.05527 Materials Science +1612.05586 Statistical Mechanics +1612.05617 Disordered Systems and Neural Networks +1612.05624 Earth and Planetary Astrophysics +1612.05650 Solar and Stellar Astrophysics +1612.05655 Astrophysics of Galaxies +1612.05691 High Energy Astrophysical Phenomena +1612.06006 Astrophysics of Galaxies +1612.06068 Earth and Planetary Astrophysics +1612.06166 High Energy Astrophysical Phenomena +1612.06188 Strongly Correlated Electrons +1612.06390 Solar and Stellar Astrophysics +1612.06444 +1612.06513 Solar and Stellar Astrophysics +1612.06640 Astrophysics of Galaxies +1612.06705 Popular Physics +1612.06843 Astrophysics of Galaxies +1612.06848 Mesoscale and Nanoscale Physics +1612.06909 Chemical Physics +1612.06917 High Energy Astrophysical Phenomena +1612.06918 Cosmology and Nongalactic Astrophysics +1612.07326 Astrophysics of Galaxies +1612.07362 Astrophysics of Galaxies +1612.07438 Instrumentation and Methods for Astrophysics +1612.07450 Astrophysics of Galaxies +1612.07464 Astrophysics of Galaxies +1612.07673 Earth and Planetary Astrophysics +1612.07725 Phenomenology +1612.07784 High Energy Astrophysical Phenomena +1612.07807 Solar and Stellar Astrophysics +1612.07823 Learning +1612.07883 Cosmology and Nongalactic Astrophysics +1612.07906 Solar and Stellar Astrophysics +1612.07927 Solar and Stellar Astrophysics +1612.08061 Astrophysics of Galaxies +1612.08297 Astrophysics of Galaxies +1612.08331 Atomic Physics +1612.08414 Astrophysics of Galaxies +1612.08491 Cosmology and Nongalactic Astrophysics +1612.08507 Astrophysics of Galaxies +1612.08511 Materials Science +1612.08793 High Energy Astrophysical Phenomena +1612.08951 Solar and Stellar Astrophysics +1612.09307 Solar and Stellar Astrophysics +1612.09324 Earth and Planetary Astrophysics +1612.09360 Solar and Stellar Astrophysics +1612.09408 Solar and Stellar Astrophysics +1612.09417 Solar and Stellar Astrophysics +1612.09454 Solar and Stellar Astrophysics +1612.09456 Solar and Stellar Astrophysics +1701.00002 High Energy Astrophysical Phenomena +1701.00005 Astrophysics of Galaxies +1701.00014 Theory +1701.00114 Theory +1701.00266 Superconductivity +1701.00538 Discrete Mathematics +1701.00572 Theory +1701.00590 Solar and Stellar Astrophysics +1701.00803 Solar and Stellar Astrophysics +1701.00840 Logic +1701.00887 Solar and Stellar Astrophysics +1701.00917 Earth and Planetary Astrophysics +1701.00956 High Energy Astrophysical Phenomena +1701.00990 Earth and Planetary Astrophysics +1701.01091 +1701.01102 Astrophysics of Galaxies +1701.01146 Solar and Stellar Astrophysics +1701.01176 Solar and Stellar Astrophysics +1701.01209 High Energy Astrophysical Phenomena +1701.01266 Space Physics +1701.01277 Mesoscale and Nanoscale Physics +1701.01309 Solar and Stellar Astrophysics +1701.01438 Astrophysics of Galaxies +1701.01448 Astrophysics of Galaxies +1701.01566 Astrophysics of Galaxies +1701.01576 Astrophysics of Galaxies +1701.01617 Solar and Stellar Astrophysics +1701.01622 Solar and Stellar Astrophysics +1701.01801 Optimization and Control +1701.01897 Astrophysics of Galaxies +1701.01946 Operator Algebras +1701.02437 Solar and Stellar Astrophysics +1701.02488 High Energy Astrophysical Phenomena +1701.02554 High Energy Astrophysical Phenomena +1701.02748 Astrophysics of Galaxies +1701.02782 Earth and Planetary Astrophysics +1701.02846 Group Theory +1701.02939 +1701.02954 Cosmology and Nongalactic Astrophysics +1701.03131 Analysis of PDEs +1701.03152 Solar and Stellar Astrophysics +1701.03161 Applications +1701.03331 Phenomenology +1701.03465 Astrophysics of Galaxies +1701.03760 Instrumentation and Methods for Astrophysics +1701.03801 High Energy Astrophysical Phenomena +1701.03948 Systems and Control +1701.04096 Cosmology and Nongalactic Astrophysics +1701.04148 Data Structures and Algorithms +1701.04170 High Energy Astrophysical Phenomena +1701.04213 Solar and Stellar Astrophysics +1701.04228 +1701.04401 Earth and Planetary Astrophysics +1701.04594 Solar and Stellar Astrophysics +1701.04700 +1701.04761 +1701.04766 Optimization and Control +1701.04908 Astrophysics of Galaxies +1701.05040 Astrophysics of Galaxies +1701.05252 High Energy Astrophysical Phenomena +1701.05361 Astrophysics of Galaxies +1701.05541 Earth and Planetary Astrophysics +1701.05554 Cosmology and Nongalactic Astrophysics +1701.05735 Earth and Planetary Astrophysics +1701.05752 Solar and Stellar Astrophysics +1701.05955 Information Theory +1701.06084 Information Theory +1701.06173 High Energy Astrophysical Phenomena +1701.06185 +1701.06255 Astrophysics of Galaxies +1701.06483 Astrophysics of Galaxies +1701.06520 Solar and Stellar Astrophysics +1701.06570 Astrophysics of Galaxies +1701.06791 High Energy Astrophysical Phenomena +1701.06808 Solar and Stellar Astrophysics +1701.06977 Information Theory +1701.06995 Astrophysics of Galaxies +1701.07037 Astrophysics of Galaxies +1701.07142 Earth and Planetary Astrophysics +1701.07154 Distributed, Parallel, and Cluster Computing +1701.07219 Rings and Algebras +1701.07265 High Energy Astrophysical Phenomena +1701.07481 Computation and Language +1701.07632 Astrophysics of Galaxies +1701.07641 Astrophysics of Galaxies +1701.07665 Phenomenology +1701.07791 Logic +1701.07827 Solar and Stellar Astrophysics +1701.07831 Astrophysics of Galaxies +1701.07850 Solar and Stellar Astrophysics +1701.07893 Theory +1701.08035 Astrophysics of Galaxies +1701.08160 Astrophysics of Galaxies +1701.08209 Instrumentation and Methods for Astrophysics +1701.08225 Analysis of PDEs +1701.08431 Atmospheric and Oceanic Physics +1701.08459 Analysis of PDEs +1701.08655 Computation and Language +1701.09008 Statistical Mechanics +1702.00015 High Energy Astrophysical Phenomena +1702.00103 General Mathematics +1702.00121 Number Theory +1702.00320 Formal Languages and Automata Theory +1702.00384 Spectral Theory +1702.00457 Materials Science +1702.00458 Data Structures and Algorithms +1702.00522 Differential Geometry +1702.00545 Earth and Planetary Astrophysics +1702.00603 +1702.00676 Cosmology and Nongalactic Astrophysics +1702.00803 Solar and Stellar Astrophysics +1702.00979 Materials Science +1702.01088 Analysis of PDEs +1702.01160 Cryptography and Security +1702.01204 Mesoscale and Nanoscale Physics +1702.01211 Quantum Gases +1702.01224 Dynamical Systems +1702.01262 Social and Information Networks +1702.01344 Solar and Stellar Astrophysics +1702.01402 Statistics Theory +1702.01406 Plasma Physics +1702.01649 Biomolecules +1702.01652 Atomic Physics +1702.01701 Differential Geometry +1702.01722 Cosmology and Nongalactic Astrophysics +1702.01728 Classical Physics +1702.01742 General Finance +1702.01744 Combinatorics +1702.01745 Human-Computer Interaction +1702.01746 Astrophysics of Galaxies +1702.01747 Instrumentation and Methods for Astrophysics +1702.01748 Theory +1702.01749 Theory +1702.01750 +1702.01752 High Energy Astrophysical Phenomena +1702.01753 Rings and Algebras +1702.01754 +1702.01755 Theory +1702.01756 Astrophysics of Galaxies +1702.01757 Cosmology and Nongalactic Astrophysics +1702.01758 Phenomenology +1702.01759 Instrumentation and Methods for Astrophysics +1702.01760 Astrophysics of Galaxies +1702.01761 Cosmology and Nongalactic Astrophysics +1702.01762 Astrophysics of Galaxies +1702.01763 +1702.01765 Quantum Gases +1702.01766 Commutative Algebra +1702.01767 Phenomenology +1702.01768 Instrumentation and Methods for Astrophysics +1702.01769 Solar and Stellar Astrophysics +1702.01770 Computational Physics +1702.01771 Classical Physics +1702.01772 +1702.01773 Information Theory +1702.01774 Theory +1702.01775 Analysis of PDEs +1702.01776 Computation and Language +1702.01777 Methodology +1702.01778 Probability +1702.01779 Information Theory +1702.01780 Neural and Evolutionary Computing +1702.01781 Mesoscale and Nanoscale Physics +1702.01783 Robotics +1702.01785 Distributed, Parallel, and Cluster Computing +1702.01786 Distributed, Parallel, and Cluster Computing +1702.01787 Phenomenology +1702.01788 Cosmology and Nongalactic Astrophysics +1702.01789 Space Physics +1702.01790 +1702.01791 Earth and Planetary Astrophysics +1702.01792 Optimization and Control +1702.01793 Information Theory +1702.01794 Systems and Control +1702.01796 Optimization and Control +1702.01798 Analysis of PDEs +1702.01799 Computational Geometry +1702.01800 +1702.01801 Representation Theory +1702.01802 Computation and Language +1702.01803 Computer Science and Game Theory +1702.01804 Logic in Computer Science +1702.01805 Multimedia +1702.01806 Computation and Language +1702.01807 Social and Information Networks +1702.01808 Phenomenology +1702.01809 Accelerator Physics +1702.01810 Differential Geometry +1702.01811 Machine Learning +1702.01812 Statistics Theory +1702.01814 Computational Physics +1702.01815 Computation and Language +1702.01816 Machine Learning +1702.01817 Instrumentation and Methods for Astrophysics +1702.01818 +1702.01819 Economics +1702.01821 Strongly Correlated Electrons +1702.01822 Geometric Topology +1702.01823 Networking and Internet Architecture +1702.01824 Machine Learning +1702.01827 Computational Physics +1702.01829 Computation and Language +1702.01830 Applications +1702.01831 Statistical Mechanics +1702.01832 Fluid Dynamics +1702.01833 +1702.01834 Combinatorics +1702.01835 Atomic Physics +1702.01836 Computational Geometry +1702.01837 Analysis of PDEs +1702.01838 Applications +1702.01839 Information Theory +1702.01840 Information Theory +1702.01841 Computation and Language +1702.01844 Social and Information Networks +1702.01845 +1702.01847 Machine Learning +1702.01848 Robotics +1702.01849 +1702.01850 Optimization and Control +1702.01854 Strongly Correlated Electrons +1702.01855 Number Theory +1702.01857 Mesoscale and Nanoscale Physics +1702.01858 Applications +1702.01859 Mesoscale and Nanoscale Physics +1702.01860 +1702.01861 Instrumentation and Methods for Astrophysics +1702.01862 Optics +1702.01863 Soft Condensed Matter +1702.01864 Information Theory +1702.01865 Materials Science +1702.01866 Representation Theory +1702.01867 Commutative Algebra +1702.01869 Mesoscale and Nanoscale Physics +1702.01870 Computer Vision and Pattern Recognition +1702.01871 Cosmology and Nongalactic Astrophysics +1702.01872 Programming Languages +1702.01873 Computers and Society +1702.01875 Methodology +1702.01877 Data Structures and Algorithms +1702.01878 Combinatorics +1702.01880 General Physics +1702.01881 Functional Analysis +1702.01883 Number Theory +1702.01884 Mesoscale and Nanoscale Physics +1702.01885 Rings and Algebras +1702.01886 Artificial Intelligence +1702.01887 Functional Analysis +1702.01888 Representation Theory +1702.01889 Algebraic Topology +1702.01890 Systems and Control +1702.01891 Optics +1702.01892 Logic +1702.01893 Optics +1702.01894 Hardware Architecture +1702.01898 Probability +1702.01899 Instrumentation and Detectors +1702.01901 History and Philosophy of Physics +1702.01902 +1702.01905 Solar and Stellar Astrophysics +1702.01906 Methodology +1702.01907 Analysis of PDEs +1702.01909 High Energy Astrophysical Phenomena +1702.01911 Classical Analysis and ODEs +1702.01912 Experiment +1702.01913 Probability +1702.01914 Algebraic Geometry +1702.01916 Fluid Dynamics +1702.01917 +1702.01919 Analysis of PDEs +1702.01920 Optics +1702.01921 Astrophysics of Galaxies +1702.01922 +1702.01923 Computation and Language +1702.01924 Astrophysics of Galaxies +1702.01925 Computation and Language +1702.01927 +1702.01928 High Energy Astrophysical Phenomena +1702.01929 Probability +1702.01930 Phenomenology +1702.01931 Phenomenology +1702.01932 Computation and Language +1702.01934 Mesoscale and Nanoscale Physics +1702.01935 Learning +1702.01936 Optimization and Control +1702.01937 Instrumentation and Methods for Astrophysics +1702.01938 +1702.01939 Astrophysics of Galaxies +1702.01941 Cosmology and Nongalactic Astrophysics +1702.01942 Group Theory +1702.01943 Quantum Gases +1702.01944 Computation and Language +1702.01945 +1702.01946 Solar and Stellar Astrophysics +1702.01947 Analysis of PDEs +1702.01948 Social and Information Networks +1702.01949 Rings and Algebras +1702.01951 Differential Geometry +1702.01952 Statistical Mechanics +1702.01954 Fluid Dynamics +1702.01956 Strongly Correlated Electrons +1702.01957 +1702.01958 +1702.01959 Optimization and Control +1702.01960 Classical Analysis and ODEs +1702.01962 Dynamical Systems +1702.01963 Networking and Internet Architecture +1702.01964 Metric Geometry +1702.01965 Optics +1702.01966 Geophysics +1702.01967 Plasma Physics +1702.01968 Materials Science +1702.01969 Algebraic Geometry +1702.01970 Computer Vision and Pattern Recognition +1702.01971 Mesoscale and Nanoscale Physics +1702.01973 Distributed, Parallel, and Cluster Computing +1702.01974 Information Theory +1702.01977 Chemical Physics +1702.01978 Information Retrieval +1702.01979 Optimization and Control +1702.01980 Analysis of PDEs +1702.01982 Probability +1702.01983 Computer Vision and Pattern Recognition +1702.01984 +1702.01986 Analysis of PDEs +1702.01987 Applications +1702.01988 Analysis of PDEs +1702.01989 Fluid Dynamics +1702.01990 Materials Science +1702.01991 Computation and Language +1702.01992 Machine Learning +1702.01993 Soft Condensed Matter +1702.01994 Soft Condensed Matter +1702.01995 Applications +1702.01996 Earth and Planetary Astrophysics +1702.01997 Machine Learning +1702.01998 Pattern Formation and Solitons +1702.01999 Sound +1702.02000 Astrophysics of Galaxies +1702.02003 +1702.02004 Geometric Topology +1702.02005 Lattice +1702.02006 Statistical Mechanics +1702.02007 Economics +1702.02012 Computer Vision and Pattern Recognition +1702.02013 Astrophysics of Galaxies +1702.02014 Materials Science +1702.02016 Solar and Stellar Astrophysics +1702.02017 Computational Complexity +1702.02018 General Physics +1702.02020 General Physics +1702.02021 General Physics +1702.02022 Mesoscale and Nanoscale Physics +1702.02023 Statistics Theory +1702.02024 General Physics +1702.02025 Medical Physics +1702.02026 General Physics +1702.02027 General Physics +1702.02028 Phenomenology +1702.02029 Instrumentation and Detectors +1702.02030 Learning +1702.02032 Optimization and Control +1702.02033 Analysis of PDEs +1702.02034 Information Theory +1702.02036 Instrumentation and Detectors +1702.02039 Fluid Dynamics +1702.02040 Social and Information Networks +1702.02046 Computational Engineering, Finance, and Science +1702.02048 Physics and Society +1702.02049 Statistics Theory +1702.02050 Solar and Stellar Astrophysics +1702.02051 Earth and Planetary Astrophysics +1702.02052 Computation and Language +1702.02053 +1702.02054 High Energy Astrophysical Phenomena +1702.02055 General Topology +1702.02056 Numerical Analysis +1702.02057 Mesoscale and Nanoscale Physics +1702.02058 Mesoscale and Nanoscale Physics +1702.02059 Earth and Planetary Astrophysics +1702.02060 Combinatorics +1702.02062 Astrophysics of Galaxies +1702.02063 Robotics +1702.02064 Cosmology and Nongalactic Astrophysics +1702.02066 Analysis of PDEs +1702.02067 Combinatorics +1702.02069 Theory +1702.02070 +1702.02071 Mesoscale and Nanoscale Physics +1702.02072 Systems and Control +1702.02073 Geophysics +1702.02074 Dynamical Systems +1702.02075 Classical Analysis and ODEs +1702.02077 Analysis of PDEs +1702.02078 Analysis of PDEs +1702.02079 Earth and Planetary Astrophysics +1702.02080 Systems and Control +1702.02081 High Energy Astrophysical Phenomena +1702.02082 +1702.02083 Mesoscale and Nanoscale Physics +1702.02084 Exactly Solvable and Integrable Systems +1702.02085 Functional Analysis +1702.02087 Mathematical Finance +1702.02088 Superconductivity +1702.02089 Applications +1702.02090 Computer Science and Game Theory +1702.02091 Theory +1702.02092 Computation and Language +1702.02096 Systems and Control +1702.02097 Phenomenology +1702.02099 Statistical Mechanics +1702.02100 Soft Condensed Matter +1702.02101 Phenomenology +1702.02102 Theory +1702.02103 Robotics +1702.02105 Optimization and Control +1702.02106 Fluid Dynamics +1702.02107 Information Retrieval +1702.02108 Fluid Dynamics +1702.02109 +1702.02110 +1702.02111 Computational Engineering, Finance, and Science +1702.02112 Phenomenology +1702.02113 Probability +1702.02114 Differential Geometry +1702.02115 Dynamical Systems +1702.02116 Phenomenology +1702.02119 +1702.02121 Information Theory +1702.02122 Strongly Correlated Electrons +1702.02123 +1702.02124 Operator Algebras +1702.02125 Neural and Evolutionary Computing +1702.02128 Algebraic Geometry +1702.02129 Analysis of PDEs +1702.02130 Sound +1702.02131 Rings and Algebras +1702.02133 Data Structures and Algorithms +1702.02135 Quantum Gases +1702.02136 Analysis of PDEs +1702.02137 Earth and Planetary Astrophysics +astro-ph/0001271 +astro-ph/0104176 +cond-mat/0006156 Statistical Mechanics +cond-mat/0102361 Strongly Correlated Electrons +cond-mat/0610278 Disordered Systems and Neural Networks +cond-mat/9703225 Disordered Systems and Neural Networks +cond-mat/9704046 Disordered Systems and Neural Networks +cond-mat/9704098 Disordered Systems and Neural Networks +cond-mat/9704149 +cond-mat/9705030 +cond-mat/9705056 Mesoscale and Nanoscale Physics +cond-mat/9705092 Superconductivity +cond-mat/9705259 Disordered Systems and Neural Networks +cond-mat/9706112 Disordered Systems and Neural Networks +cond-mat/9707162 +cond-mat/9709322 Mesoscale and Nanoscale Physics +cond-mat/9711143 +cond-mat/9801236 Mesoscale and Nanoscale Physics +cond-mat/9805383 Strongly Correlated Electrons +cond-mat/9808101 Statistical Mechanics +cond-mat/9811132 Mesoscale and Nanoscale Physics +cond-mat/9811378 Materials Science +cond-mat/9902242 Strongly Correlated Electrons +cond-mat/9903040 Statistical Mechanics +cond-mat/9903145 Mesoscale and Nanoscale Physics +cond-mat/9904066 Statistical Mechanics +cond-mat/9904282 Soft Condensed Matter +cond-mat/9905318 Soft Condensed Matter +gr-qc/0102081 +gr-qc/0109058 +hep-ph/0405034 Phenomenology +hep-th/0012207 Theory +hep-th/0107176 Theory +hep-th/0404209 Theory +hep-th/9908177 Theory +math/0010331 Analysis of PDEs +nlin/0002003 Exactly Solvable and Integrable Systems +nlin/0010058 Exactly Solvable and Integrable Systems +nlin/0010059 Exactly Solvable and Integrable Systems +nlin/0011001 Exactly Solvable and Integrable Systems +physics/0009084 General Physics +solv-int/9912010 Exactly Solvable and Integrable Systems +0705.2617 Phenomenology +1101.2511 Algebraic Topology +1109.0679 Algebraic Geometry +1109.6356 K-Theory and Homology +1203.2529 +1203.6631 Pricing of Securities +1204.4388 Differential Geometry +1207.0246 Information Retrieval +1209.0954 Group Theory +1210.4525 Algebraic Geometry +1211.4666 Analysis of PDEs +1301.5124 Strongly Correlated Electrons +1304.1317 Classical Analysis and ODEs +1306.1458 Probability +1306.3837 Metric Geometry +1307.2569 Computer Science and Game Theory +1307.7882 Other Quantitative Biology +1308.0862 Differential Geometry +1309.0046 Probability +1310.2665 Social and Information Networks +1310.2671 Social and Information Networks +1311.1839 Robotics +1311.3937 Group Theory +1311.6147 +1312.0998 Chaotic Dynamics +1312.4446 +1401.0868 Algebraic Geometry +1401.5216 Distributed, Parallel, and Cluster Computing +1402.3541 +1403.0020 Logic +1403.1273 Combinatorics +1403.1489 General Physics +1403.2872 Dynamical Systems +1403.4503 Software Engineering +1403.5107 Physics and Society +1403.7180 Disordered Systems and Neural Networks +1404.1295 Social and Information Networks +1405.1193 Logic +1406.7751 Social and Information Networks +1407.5225 Social and Information Networks +1407.7551 Rings and Algebras +1409.4596 Logic +1409.7798 Analysis of PDEs +1410.0837 Quantum Algebra +1410.8753 Information Theory +1411.0652 Social and Information Networks +1411.2899 Analysis of PDEs +1411.4797 Algebraic Geometry +1412.0671 Phenomenology +1412.4548 Number Theory +1412.7181 Dynamical Systems +1501.02400 Logic +1501.05941 Mesoscale and Nanoscale Physics +1501.06209 Numerical Analysis +1502.00316 Distributed, Parallel, and Cluster Computing +1502.03097 +1502.03945 Computer Science and Game Theory +1502.04807 +1502.05569 Algebraic Topology +1502.05648 Probability +1502.05886 Social and Information Networks +1503.01740 Geometric Topology +1503.01947 Astrophysics of Galaxies +1503.03752 Social and Information Networks +1503.04427 Statistics Theory +1503.04641 Differential Geometry +1503.05860 Computer Vision and Pattern Recognition +1503.07014 Metric Geometry +1504.01459 Data Structures and Algorithms +1504.04365 Numerical Analysis +1504.04848 K-Theory and Homology +1504.05257 Geometric Topology +1504.06150 +1505.03567 +1506.00853 Distributed, Parallel, and Cluster Computing +1506.02217 Optimization and Control +1506.02586 History and Overview +1506.02762 Systems and Control +1506.03039 Machine Learning +1506.03518 Systems and Control +1506.05325 Classical Analysis and ODEs +1506.06021 Social and Information Networks +1506.06072 Social and Information Networks +1506.07024 Logic +1506.08012 Dynamical Systems +1507.00666 Computational Physics +1507.05073 Computation +1508.00531 Differential Geometry +1508.00689 Information Theory +1508.02267 Representation Theory +1508.03854 Computation and Language +1508.04185 Computers and Society +1508.04217 Applications +1508.04635 Quantitative Methods +1508.07195 High Energy Astrophysical Phenomena +1508.07197 High Energy Astrophysical Phenomena +1508.07198 Instrumentation and Methods for Astrophysics +1509.00438 Quantum Algebra +1509.01608 Social and Information Networks +1509.02745 Populations and Evolution +1509.07762 Materials Science +1509.08325 Dynamical Systems +1509.08736 Combinatorics +1510.00578 +1510.02160 Analysis of PDEs +1510.02359 +1510.04776 Probability +1510.04787 Phenomenology +1510.05318 Social and Information Networks +1510.05808 Analysis of PDEs +1510.06389 Soft Condensed Matter +1510.08542 Physics and Society +1511.00189 Combinatorics +1511.02515 Statistics Theory +1511.07352 Solar and Stellar Astrophysics +1511.08588 Quantum Gases +1512.02648 Rings and Algebras +1512.02792 Logic +1512.04475 General Physics +1512.05223 Data Structures and Algorithms +1512.05279 Data Structures and Algorithms +1512.05428 Mesoscale and Nanoscale Physics +1512.06412 Methodology +1512.07409 Algebraic Geometry +1601.00059 History and Overview +1601.04838 Number Theory +1601.05140 Social and Information Networks +1601.05543 Representation Theory +1601.05911 Neural and Evolutionary Computing +1601.06282 Analysis of PDEs +1601.06284 Analysis of PDEs +1601.07778 General Physics +1602.00930 +1602.00975 Social and Information Networks +1602.01396 Combinatorics +1602.01722 Optics +1602.02986 Spectral Theory +1602.04584 Information Theory +1602.05726 Analysis of PDEs +1602.06633 Mesoscale and Nanoscale Physics +1602.07912 Functional Analysis +1603.00322 Systems and Control +1603.00377 Statistical Mechanics +1603.01424 Methodology +1603.01989 Classical Analysis and ODEs +1603.02282 +1603.02331 Phenomenology +1603.02629 Soft Condensed Matter +1603.03902 Probability +1603.05282 Analysis of PDEs +1603.05377 Rings and Algebras +1603.05691 Machine Learning +1603.06512 Classical Analysis and ODEs +1603.06581 Cosmology and Nongalactic Astrophysics +1603.08827 Discrete Mathematics +1603.09725 Computer Vision and Pattern Recognition +1604.00621 Probability +1604.01861 +1604.02783 +1604.04053 Computer Vision and Pattern Recognition +1604.05473 Optimization and Control +1604.05912 Materials Science +1604.06177 Symplectic Geometry +1604.06200 Lattice +1604.06663 History and Overview +1604.06834 +1604.06899 Social and Information Networks +1604.06936 Formal Languages and Automata Theory +1604.06994 +1604.07001 Complex Variables +1605.00278 Learning +1605.00580 Chemical Physics +1605.00659 Social and Information Networks +1605.01314 Representation Theory +1605.01342 Cosmology and Nongalactic Astrophysics +1605.01603 Theory +1605.02354 Number Theory +1605.04083 Analysis of PDEs +1605.04778 Functional Analysis +1605.05385 Geometric Topology +1605.05793 Probability +1605.05957 Theory +1605.06029 Phenomenology +1605.06773 +1605.06788 Analysis of PDEs +1605.07340 Numerical Analysis +1605.07505 Information Theory +1605.07674 +1605.07913 Statistics Theory +1605.08226 Algebraic Geometry +1605.08610 Mesoscale and Nanoscale Physics +1605.08673 Mesoscale and Nanoscale Physics +1605.08949 Logic in Computer Science +1606.00106 Earth and Planetary Astrophysics +1606.00608 +1606.00762 Combinatorics +1606.01043 Combinatorics +1606.01150 General Mathematics +1606.01339 Theory +1606.02116 Optimization and Control +1606.02120 Atomic Physics +1606.02679 Information Theory +1606.03258 Numerical Analysis +1606.03437 Optimization and Control +1606.03490 Learning +1606.03674 Neural and Evolutionary Computing +1606.04387 Algebraic Geometry +1606.05282 Information Theory +1606.05296 Phenomenology +1606.05388 Phenomenology +1606.06657 Analysis of PDEs +1606.06709 Optimization and Control +1606.06878 Dynamical Systems +1606.07213 +1606.07357 Optimization and Control +1606.08142 Quantum Algebra +1606.08688 Cosmology and Nongalactic Astrophysics +1606.08718 Computer Science and Game Theory +1606.08979 Quantum Algebra +1607.00102 Optimization and Control +1607.00118 +1607.00149 History and Overview +1607.00629 +1607.01671 Instrumentation and Detectors +1607.03165 Atomic Physics +1607.03406 Information Retrieval +1607.03474 Learning +1607.03700 High Energy Astrophysical Phenomena +1607.03777 Numerical Analysis +1607.04604 Discrete Mathematics +1607.05190 Theory +1607.05442 Astrophysics of Galaxies +1607.05513 Optics +1607.05849 Theory +1607.06819 Social and Information Networks +1607.06955 Rings and Algebras +1607.07273 Mesoscale and Nanoscale Physics +1607.07733 Mesoscale and Nanoscale Physics +1607.08640 Functional Analysis +1608.00371 Statistical Mechanics +1608.00471 Probability +1608.01354 Rings and Algebras +1608.01601 Cosmology and Nongalactic Astrophysics +1608.01625 Statistical Mechanics +1608.01934 Representation Theory +1608.02006 Chemical Physics +1608.02500 Optimization and Control +1608.02908 Computer Vision and Pattern Recognition +1608.02982 +1608.03692 Number Theory +1608.03980 Cosmology and Nongalactic Astrophysics +1608.03983 Learning +1608.04068 +1608.04477 Optimization and Control +1608.04640 Strongly Correlated Electrons +1608.04822 Numerical Analysis +1608.04939 Plasma Physics +1608.04966 +1608.05216 Materials Science +1608.05581 Machine Learning +1608.05662 Phenomenology +1608.06207 Theory +1608.07578 Phenomenology +1608.07995 Optics +1608.08048 Optics +1608.08193 Commutative Algebra +1608.08307 Instrumentation and Detectors +1608.08766 Number Theory +1608.08987 Optimization and Control +1609.00106 +1609.00238 General Physics +1609.00479 Atomic Physics +1609.00973 Functional Analysis +1609.01385 Theory +1609.01394 Algebraic Topology +1609.01466 Computer Vision and Pattern Recognition +1609.01702 Quantum Gases +1609.02097 Instrumentation and Methods for Astrophysics +1609.02684 Chemical Physics +1609.03006 Algebraic Topology +1609.03816 General Physics +1609.03867 Soft Condensed Matter +1609.04192 Algebraic Geometry +1609.04345 Geometric Topology +1609.04974 Number Theory +1609.04978 Mesoscale and Nanoscale Physics +1609.05023 Mesoscale and Nanoscale Physics +1609.06046 +1609.06317 Quantum Gases +1609.06666 Robotics +1609.07147 Astrophysics of Galaxies +1609.07293 Genomics +1609.08354 +1609.08928 Phenomenology +1609.09498 Astrophysics of Galaxies +1609.09710 +1609.09861 Systems and Control +1610.00605 +1610.00811 Disordered Systems and Neural Networks +1610.01025 Soft Condensed Matter +1610.01212 Strongly Correlated Electrons +1610.01283 Learning +1610.01450 Mathematical Finance +1610.01837 +1610.02071 Probability +1610.02225 Adaptation and Self-Organizing Systems +1610.02542 Number Theory +1610.03234 Phenomenology +1610.03445 Materials Science +1610.03557 Robotics +1610.04161 Learning +1610.04526 Theory +1610.04598 Mesoscale and Nanoscale Physics +1610.04609 +1610.04622 Phenomenology +1610.04764 Analysis of PDEs +1610.05392 Machine Learning +1610.05474 Operator Algebras +1610.05494 Physics and Society +1610.05614 +1610.06034 Phenomenology +1610.06360 Neurons and Cognition +1610.07087 Logic +1610.07478 +1610.07797 Optimization and Control +1610.07874 Probability +1610.08066 Experiment +1610.08123 Learning +1610.08917 Theory +1610.09549 Strongly Correlated Electrons +1610.09946 Analysis of PDEs +1611.00097 Computers and Society +1611.00111 Robotics +1611.00193 +1611.00197 Mesoscale and Nanoscale Physics +1611.00247 Mesoscale and Nanoscale Physics +1611.00589 Probability +1611.00660 +1611.00712 Learning +1611.00809 +1611.00942 +1611.01385 Optimization and Control +1611.01626 Learning +1611.01764 Analysis of PDEs +1611.01861 Algebraic Geometry +1611.02170 Materials Science +1611.02185 Learning +1611.02554 Computation and Language +1611.02560 +1611.02625 Algebraic Geometry +1611.02731 Learning +1611.02756 Social and Information Networks +1611.02796 Learning +1611.02854 Neural and Evolutionary Computing +1611.03286 Probability +1611.03327 Populations and Evolution +1611.03500 Theory +1611.03687 Disordered Systems and Neural Networks +1611.03846 Phenomenology +1611.03854 Information Theory +1611.03875 Strongly Correlated Electrons +1611.04045 Optimization and Control +1611.04151 Combinatorics +1611.04263 Materials Science +1611.04847 Learning +1611.04868 Theory +1611.05292 Logic +1611.05306 Instrumentation and Detectors +1611.05471 Phenomenology +1611.05502 Phenomenology +1611.05524 +1611.05674 Rings and Algebras +1611.05847 Fluid Dynamics +1611.06123 Mesoscale and Nanoscale Physics +1611.06426 Machine Learning +1611.06599 Mesoscale and Nanoscale Physics +1611.06685 Theory +1611.07216 Information Theory +1611.07268 Statistical Mechanics +1611.07284 Strongly Correlated Electrons +1611.07357 +1611.07823 +1611.08071 +1611.08383 Dynamical Systems +1611.08413 Functional Analysis +1611.08502 Statistical Mechanics +1611.08554 Formal Languages and Automata Theory +1611.08689 Materials Science +1611.08698 Phenomenology +1611.09015 Disordered Systems and Neural Networks +1611.09152 Information Theory +1611.09160 Soft Condensed Matter +1611.09407 Differential Geometry +1611.09636 Symplectic Geometry +1611.10105 Analysis of PDEs +1611.10130 Information Theory +1611.10195 Computer Vision and Pattern Recognition +1612.00015 Superconductivity +1612.00188 Learning +1612.00341 Artificial Intelligence +1612.00667 Machine Learning +1612.01282 Information Theory +1612.01464 +1612.01858 Quantum Gases +1612.02199 Mesoscale and Nanoscale Physics +1612.02400 Analysis of PDEs +1612.02803 Learning +1612.02842 Machine Learning +1612.03116 Commutative Algebra +1612.03203 Analysis of PDEs +1612.04228 +1612.04230 +1612.04231 +1612.04249 Phenomenology +1612.05533 Robotics +1612.05796 +1612.06074 Theory +1612.06419 Computational Complexity +1612.06464 Optics +1612.06663 Mesoscale and Nanoscale Physics +1612.06715 +1612.06866 Astrophysics of Galaxies +1612.06958 Group Theory +1612.07182 Computation and Language +1612.07324 Theory +1612.07629 Theory +1612.07683 Combinatorics +1612.07990 Phenomenology +1612.08087 Analysis of PDEs +1612.08162 Experiment +1612.08402 Analysis of PDEs +1612.09249 Number Theory +1612.09350 Plasma Physics +1612.09525 Strongly Correlated Electrons +1612.09567 General Topology +1701.00112 Pricing of Securities +1701.00653 Logic +1701.00883 +1701.01335 Cosmology and Nongalactic Astrophysics +1701.01405 Metric Geometry +1701.01724 Artificial Intelligence +1701.01790 Accelerator Physics +1701.01948 +1701.01973 +1701.02069 Optics +1701.02232 Instrumentation and Detectors +1701.02272 Neurons and Cognition +1701.02810 Computation and Language +1701.02992 Analysis of PDEs +1701.03045 Numerical Analysis +1701.03799 Representation Theory +1701.03836 Performance +1701.04899 +1701.05103 Theory +1701.05208 +1701.06501 Statistics Theory +1701.06629 Theory +1701.06793 Phenomenology +1701.07170 Geometric Topology +1701.07374 Statistical Mechanics +1701.07433 Number Theory +1701.08523 Theory +1701.08534 Information Theory +1702.00241 Metric Geometry +1702.00303 Plasma Physics +1702.00587 Solar and Stellar Astrophysics +1702.00731 Earth and Planetary Astrophysics +1702.00779 Algebraic Geometry +1702.01143 Probability +1702.01156 Theory +1702.01212 Mesoscale and Nanoscale Physics +1702.01254 Theory +1702.01375 Mesoscale and Nanoscale Physics +1702.01586 Social and Information Networks +1702.01879 Strongly Correlated Electrons +1702.02161 High Energy Astrophysical Phenomena +1702.02240 Formal Languages and Automata Theory +1702.02293 Group Theory +1702.02430 Phenomenology +1702.02631 Combinatorics +1702.03219 +1702.03522 Machine Learning +1702.03895 Instrumentation and Detectors +1702.04109 Functional Analysis +1702.04280 Computer Vision and Pattern Recognition +1702.04564 Cosmology and Nongalactic Astrophysics +1702.04624 Strongly Correlated Electrons +1702.04726 Astrophysics of Galaxies +1702.04740 Theory +1702.04759 Phenomenology +1702.04796 Phenomenology +1702.05087 Robotics +1702.05219 +1702.05280 High Energy Astrophysical Phenomena +1702.05523 Statistical Mechanics +1702.05738 Phenomenology +1702.05814 Operator Algebras +1702.05830 Numerical Analysis +1702.05868 Metric Geometry +1702.06312 +1702.06929 +1702.06978 High Energy Astrophysical Phenomena +1702.07135 Algebraic Geometry +1702.07163 Number Theory +1702.07360 Machine Learning +1702.07471 Theory +1702.07578 Data Structures and Algorithms +1702.07606 Materials Science +1702.07717 Computation and Language +1702.07874 Theory +1702.07909 Applications +1702.07914 Discrete Mathematics +1702.07921 Functional Analysis +1702.07927 Geophysics +1702.07954 Theory +1702.07996 +1702.08246 Phenomenology +1702.08272 Computer Vision and Pattern Recognition +1702.08305 Strongly Correlated Electrons +1702.08355 History and Philosophy of Physics +1702.08394 Superconductivity +1702.08477 +1702.08495 Artificial Intelligence +1702.08509 Neurons and Cognition +1702.08577 Theory +1702.08660 Combinatorics +1702.08685 Theory +1702.08705 Earth and Planetary Astrophysics +1702.08777 Cosmology and Nongalactic Astrophysics +1702.08782 Computer Vision and Pattern Recognition +1702.08788 Theory +1702.08891 Computer Vision and Pattern Recognition +1702.08900 Methodology +1703.00035 Computer Vision and Pattern Recognition +1703.00064 Networking and Internet Architecture +1703.00080 Databases +1703.00091 Machine Learning +1703.00267 Optimization and Control +1703.00437 Numerical Analysis +1703.00487 Classical Physics +1703.00492 Human-Computer Interaction +1703.00548 Neural and Evolutionary Computing +1703.00598 Machine Learning +1703.00599 Experiment +1703.00637 Classical Analysis and ODEs +1703.00685 Phenomenology +1703.00713 Theory +1703.00754 Robotics +1703.00767 Computer Vision and Pattern Recognition +1703.00821 General Physics +1703.00890 High Energy Astrophysical Phenomena +1703.00931 Probability +1703.01009 Data Structures and Algorithms +1703.01010 Number Theory +1703.01038 Networking and Internet Architecture +1703.01084 Solar and Stellar Astrophysics +1703.01087 Cosmology and Nongalactic Astrophysics +1703.01092 Information Theory +1703.01104 Theory +1703.01147 Quantum Gases +1703.01161 Artificial Intelligence +1703.01166 Data Structures and Algorithms +1703.01174 Materials Science +1703.01291 Trading and Market Microstructure +1703.01292 Economics +1703.01293 Classical Physics +1703.01294 Classical Physics +1703.01296 Logic in Computer Science +1703.01297 Soft Condensed Matter +1703.01298 Databases +1703.01299 High Energy Astrophysical Phenomena +1703.01300 Cosmology and Nongalactic Astrophysics +1703.01303 Instrumentation and Methods for Astrophysics +1703.01304 Strongly Correlated Electrons +1703.01305 Theory +1703.01306 Theory +1703.01308 Strongly Correlated Electrons +1703.01310 Artificial Intelligence +1703.01311 Numerical Analysis +1703.01312 Mesoscale and Nanoscale Physics +1703.01313 Networking and Internet Architecture +1703.01314 Exactly Solvable and Integrable Systems +1703.01315 Disordered Systems and Neural Networks +1703.01316 Mesoscale and Nanoscale Physics +1703.01317 Operator Algebras +1703.01318 +1703.01319 Digital Libraries +1703.01320 Mesoscale and Nanoscale Physics +1703.01322 Mesoscale and Nanoscale Physics +1703.01323 Differential Geometry +1703.01324 Geometric Topology +1703.01325 Numerical Analysis +1703.01326 Statistics Theory +1703.01327 Artificial Intelligence +1703.01328 Dynamical Systems +1703.01330 Classical Analysis and ODEs +1703.01331 Networking and Internet Architecture +1703.01333 Artificial Intelligence +1703.01334 +1703.01335 +1703.01336 Statistical Mechanics +1703.01338 Solar and Stellar Astrophysics +1703.01339 Optimization and Control +1703.01340 Cryptography and Security +1703.01341 Strongly Correlated Electrons +1703.01342 Instrumentation and Methods for Astrophysics +1703.01343 Number Theory +1703.01344 High Energy Astrophysical Phenomena +1703.01345 General Mathematics +1703.01346 Biological Physics +1703.01347 Artificial Intelligence +1703.01348 Cryptography and Security +1703.01349 Atomic Physics +1703.01350 Computational Geometry +1703.01351 Theory +1703.01352 Optimization and Control +1703.01353 Molecular Networks +1703.01354 Plasma Physics +1703.01356 Logic in Computer Science +1703.01358 Artificial Intelligence +1703.01359 Superconductivity +1703.01360 Classical Analysis and ODEs +1703.01361 Experiment +1703.01362 Information Theory +1703.01363 Optimization and Control +1703.01364 Methodology +1703.01365 Learning +1703.01367 +1703.01368 Optimization and Control +1703.01369 Economics +1703.01370 Software Engineering +1703.01371 Group Theory +1703.01373 Materials Science +1703.01374 Information Theory +1703.01375 +1703.01376 Logic +1703.01377 Human-Computer Interaction +1703.01378 Materials Science +1703.01379 Classical Analysis and ODEs +1703.01380 Social and Information Networks +1703.01381 Other Quantitative Biology +1703.01382 Computer Vision and Pattern Recognition +1703.01383 Computer Vision and Pattern Recognition +1703.01384 Spectral Theory +1703.01385 Number Theory +1703.01386 Computer Vision and Pattern Recognition +1703.01388 Numerical Analysis +1703.01389 Spectral Theory +1703.01391 Optimization and Control +1703.01392 Symplectic Geometry +1703.01393 Social and Information Networks +1703.01395 Quantum Algebra +1703.01396 Computer Vision and Pattern Recognition +1703.01397 Systems and Control +1703.01399 Optics +1703.01400 Rings and Algebras +1703.01401 Geometric Topology +1703.01402 Computer Vision and Pattern Recognition +1703.01403 Spectral Theory +1703.01404 Differential Geometry +1703.01405 Information Theory +1703.01408 Representation Theory +1703.01409 +1703.01411 Quantum Gases +1703.01413 Astrophysics of Galaxies +1703.01416 Robotics +1703.01417 Dynamical Systems +1703.01418 Functional Analysis +1703.01419 Fluid Dynamics +1703.01420 Strongly Correlated Electrons +1703.01421 Methodology +1703.01422 Materials Science +1703.01423 Robotics +1703.01424 Earth and Planetary Astrophysics +1703.01425 Computer Vision and Pattern Recognition +1703.01426 Software Engineering +1703.01427 Materials Science +1703.01428 Materials Science +1703.01429 Statistical Mechanics +1703.01430 Earth and Planetary Astrophysics +1703.01431 Phenomenology +1703.01432 Information Theory +1703.01433 +1703.01434 Group Theory +1703.01435 Data Analysis, Statistics and Probability +1703.01436 Instrumentation and Detectors +1703.01437 Computer Vision and Pattern Recognition +1703.01438 Phenomenology +1703.01439 Computational Geometry +1703.01440 Logic in Computer Science +1703.01441 Information Theory +1703.01442 Social and Information Networks +1703.01443 Software Engineering +1703.01444 Machine Learning +1703.01445 Cellular Automata and Lattice Gases +1703.01446 Software Engineering +1703.01447 Instrumentation and Detectors +1703.01449 Solar and Stellar Astrophysics +1703.01450 Statistical Mechanics +1703.01451 +1703.01452 +1703.01453 Probability +1703.01454 Learning +1703.01455 Medical Physics +1703.01456 Chemical Physics +1703.01457 Hardware Architecture +1703.01458 Metric Geometry +1703.01459 Plasma Physics +1703.01460 Learning +1703.01461 Robotics +1703.01462 Chemical Physics +1703.01463 +1703.01464 Chemical Physics +1703.01465 Optimization and Control +1703.01466 Optimization and Control +1703.01467 Computer Vision and Pattern Recognition +1703.01468 Social and Information Networks +1703.01469 Digital Libraries +1703.01470 Logic +1703.01471 +1703.01472 High Energy Astrophysical Phenomena +1703.01473 +1703.01474 Data Structures and Algorithms +1703.01475 Data Structures and Algorithms +1703.01476 Computers and Society +1703.01477 Combinatorics +1703.01479 Probability +1703.01480 General Topology +1703.01481 +1703.01482 Metric Geometry +1703.01483 Combinatorics +1703.01484 Optimization and Control +1703.01485 Computation and Language +1703.01487 Analysis of PDEs +1703.01488 Machine Learning +1703.01489 Astrophysics of Galaxies +1703.01491 Earth and Planetary Astrophysics +1703.01492 +1703.01493 Popular Physics +1703.01494 Functional Analysis +1703.01495 Superconductivity +1703.01496 +1703.01500 Computers and Society +1703.01501 Physics and Society +1703.01502 Statistical Mechanics +1703.01503 Adaptation and Self-Organizing Systems +1703.01504 Information Theory +1703.01505 Mathematical Finance +1703.01506 Applications +1703.01507 Data Structures and Algorithms +1703.01508 Classical Analysis and ODEs +1703.01509 Optimization and Control +1703.01510 Materials Science +1703.01511 Complex Variables +1703.01512 Earth and Planetary Astrophysics +1703.01513 Computer Vision and Pattern Recognition +1703.01514 Solar and Stellar Astrophysics +1703.01515 Computer Vision and Pattern Recognition +1703.01516 +1703.01517 +1703.01518 Methodology +1703.01519 Theory +1703.01520 Solar and Stellar Astrophysics +1703.01522 Dynamical Systems +1703.01524 +1703.01525 Information Theory +1703.01526 Applications +1703.01527 Information Theory +1703.01528 Theory +1703.01529 High Energy Astrophysical Phenomena +1703.01530 Classical Analysis and ODEs +1703.01531 Soft Condensed Matter +1703.01532 Data Structures and Algorithms +1703.01533 Functional Analysis +1703.01534 Cryptography and Security +1703.01535 Classical Analysis and ODEs +1703.01536 Machine Learning +1703.01538 Classical Analysis and ODEs +1703.01539 Data Structures and Algorithms +1703.01541 Machine Learning +1703.01542 Solar and Stellar Astrophysics +1703.01543 Operator Algebras +1703.01544 Computational Geometry +1703.01545 Chemical Physics +1703.01546 Analysis of PDEs +1703.01547 Algebraic Topology +1703.01548 Information Theory +1703.01549 Complex Variables +1703.01550 Computer Vision and Pattern Recognition +1703.01552 Software Engineering +1703.01553 Software Engineering +1703.01555 Phenomenology +1703.01558 Mesoscale and Nanoscale Physics +1703.01559 Mesoscale and Nanoscale Physics +1703.01560 Computer Vision and Pattern Recognition +1703.01561 Commutative Algebra +1703.01562 Information Theory +1703.01564 Robotics +1703.01566 +1703.01567 Plasma Physics +1703.01568 High Energy Astrophysical Phenomena +1703.01569 Instrumentation and Detectors +1703.01570 Phenomenology +1703.01571 Representation Theory +1703.01572 Combinatorics +1703.01574 Mathematical Finance +1703.01575 Cosmology and Nongalactic Astrophysics +1703.01576 Representation Theory +1703.01577 Logic +1703.01578 Algebraic Topology +1703.01579 Plasma Physics +1703.01580 Emerging Technologies +1703.01581 Combinatorics +1703.01582 Instrumentation and Detectors +1703.01583 Operator Algebras +1703.01584 Instrumentation and Detectors +1703.01585 Systems and Control +1703.01586 Information Theory +1703.01587 Plasma Physics +1703.01588 Combinatorics +1703.01589 Dynamical Systems +1703.01590 +1703.01592 Metric Geometry +1703.01593 Analysis of PDEs +1703.01594 Learning +1703.01595 Earth and Planetary Astrophysics +1703.01596 +1703.01597 Computer Vision and Pattern Recognition +1703.01598 +1703.01600 Classical Analysis and ODEs +1703.01601 Computers and Society +1703.01602 Astrophysics of Galaxies +1703.01603 Information Theory +1703.01604 Experiment +1703.01605 Computer Vision and Pattern Recognition +1703.01606 Learning +1703.01607 Analysis of PDEs +1703.01608 Solar and Stellar Astrophysics +1703.01610 Learning +1703.01611 Theory +1703.01612 +1703.01613 Optimization and Control +1703.01615 +1703.01616 +1703.01617 Probability +1703.01619 Computation and Language +1703.01620 Classical Analysis and ODEs +1703.01621 Superconductivity +1703.01623 Theory +1703.01624 Combinatorics +1703.01625 +1703.01626 Phenomenology +1703.01628 Analysis of PDEs +1703.01629 +1703.01630 Experiment +1703.01631 Theory +1703.01632 Optics +1703.01633 Theory +1703.01634 Data Structures and Algorithms +1703.01635 Complex Variables +1703.01636 Analysis of PDEs +1703.01637 Experiment +1703.01638 Data Structures and Algorithms +1703.01639 Optics +1703.01640 Computational Geometry +1703.01641 Networking and Internet Architecture +1703.01642 Software Engineering +1703.01643 Information Theory +1703.01644 Soft Condensed Matter +1703.01646 Computational Geometry +1703.01647 Group Theory +1703.01648 Solar and Stellar Astrophysics +1703.01650 Theory +1703.01651 Experiment +1703.01652 Soft Condensed Matter +1703.01653 Robotics +1703.01654 Statistics Theory +1703.01655 +1703.01656 Robotics +1703.01657 Systems and Control +1703.01658 Statistics Theory +1703.01659 Space Physics +1703.01660 Algebraic Geometry +1703.01661 Robotics +1703.01662 Dynamical Systems +1703.01663 Materials Science +1703.01664 Computer Vision and Pattern Recognition +1703.01665 Methodology +1703.01666 Optics +1703.01667 +1703.01668 +1703.01669 Fluid Dynamics +1703.01670 Systems and Control +1703.01671 Artificial Intelligence +1703.01672 Information Theory +1703.01673 Systems and Control +1703.01674 Theory +1703.01675 Disordered Systems and Neural Networks +1703.01677 Number Theory +1703.01679 Instrumentation and Methods for Astrophysics +1703.01683 Instrumentation and Detectors +1703.01684 Algebraic Geometry +1703.01685 Chemical Physics +1703.01686 Data Structures and Algorithms +1703.01688 +1703.01690 Software Engineering +1703.01691 Computational Geometry +1703.01692 Methodology +1703.01693 +1703.01694 Computation and Language +1703.01695 Spectral Theory +1703.01697 Artificial Intelligence +1703.01698 Computer Vision and Pattern Recognition +1703.01699 Numerical Analysis +1703.01700 General Topology +1703.01701 Information Theory +1703.01702 Computer Vision and Pattern Recognition +1703.01703 Learning +1703.01704 Distributed, Parallel, and Cluster Computing +1703.01705 Plasma Physics +1703.01706 +1703.01707 Information Theory +1703.01708 +1703.01709 Spectral Theory +1703.01710 Algebraic Geometry +1703.01711 Astrophysics of Galaxies +1703.01712 Solar and Stellar Astrophysics +1703.01715 +1703.01716 Geometric Topology +1703.01717 Machine Learning +1703.01718 Geometric Topology +1703.01719 Chemical Physics +1703.01720 Computation and Language +1703.01721 Statistics Theory +1703.01722 Materials Science +1703.01724 +1703.01725 Social and Information Networks +1703.01726 Computation and Language +1703.01727 Databases +1703.01728 Materials Science +1703.01729 +1703.01730 Symplectic Geometry +1703.01731 Symplectic Geometry +1703.01732 Learning +1703.01733 +1703.01734 High Energy Astrophysical Phenomena +1703.01735 Analysis of PDEs +1703.01737 Analysis of PDEs +1703.01739 Probability +1703.01742 Earth and Planetary Astrophysics +1703.01744 Theory +1703.01745 Theory +1703.01746 Dynamical Systems +1703.01747 Algebraic Geometry +1703.01748 Dynamical Systems +1703.01749 +1703.01751 +1703.01752 Logic +1703.01753 +1703.01754 Optimization and Control +1703.01755 Numerical Analysis +1703.01756 Commutative Algebra +1703.01757 Phenomenology +1703.01758 Differential Geometry +1703.01759 Theory +1703.01760 Information Retrieval +1703.01761 Combinatorics +1703.01763 Dynamical Systems +1703.01764 Logic +1703.01766 Experiment +1703.01767 +1703.01768 Geometric Topology +1703.01769 Theory +1703.01770 Materials Science +1703.01771 Theory +1703.01772 Number Theory +1703.01773 Group Theory +1703.01774 Numerical Analysis +1703.01775 Computer Vision and Pattern Recognition +1703.01776 Methodology +1703.01777 Statistics Theory +1703.01778 Materials Science +1703.01779 Geometric Topology +1703.01780 Neural and Evolutionary Computing +1703.01781 Phenomenology +1703.01782 Strongly Correlated Electrons +1703.01783 +1703.01784 +1703.01785 Machine Learning +1703.01787 Functional Analysis +1703.01788 +1703.01789 Sound +1703.01790 Computer Vision and Pattern Recognition +1703.01791 Cosmology and Nongalactic Astrophysics +1703.01792 +1703.01793 Neural and Evolutionary Computing +1703.01794 Analysis of PDEs +1703.01795 +1703.01796 Rings and Algebras +1703.01797 Probability +1703.01798 Dynamical Systems +1703.01799 Strongly Correlated Electrons +1703.01801 Algebraic Geometry +1703.01802 Soft Condensed Matter +1703.01803 Optimization and Control +1703.01804 Learning +1703.01805 Methodology +1703.01806 Logic +1703.01807 Strongly Correlated Electrons +1703.01810 Optics +1703.01811 Complex Variables +1703.01812 Computational Physics +1703.01813 Probability +1703.01815 Dynamical Systems +1703.01817 Earth and Planetary Astrophysics +1703.01818 Molecular Networks +1703.01819 Differential Geometry +1703.01820 Cryptography and Security +1703.01821 Analysis of PDEs +1703.01822 High Energy Astrophysical Phenomena +1703.01823 Optics +1703.01824 Earth and Planetary Astrophysics +1703.01825 High Energy Astrophysical Phenomena +1703.01826 +1703.01827 Computer Vision and Pattern Recognition +1703.01829 Rings and Algebras +1703.01830 Learning +1703.01831 +1703.01832 Optics +1703.01834 Number Theory +1703.01835 +1703.01837 Number Theory +1703.01838 Astrophysics of Galaxies +1703.01839 Combinatorics +1703.01840 Materials Science +1703.01842 Computer Vision and Pattern Recognition +1703.01844 Atomic and Molecular Clusters +1703.01847 Data Structures and Algorithms +1703.01848 Quantum Algebra +1703.01849 Strongly Correlated Electrons +1703.01850 Complex Variables +1703.01851 Computer Science and Game Theory +1703.01852 +1703.01853 Differential Geometry +1703.01854 Functional Analysis +1703.01855 Complex Variables +1703.01856 Optics +1703.01859 Distributed, Parallel, and Cluster Computing +1703.01860 Logic in Computer Science +1703.01861 Complex Variables +1703.01862 Solar and Stellar Astrophysics +1703.01863 Cryptography and Security +1703.01864 Representation Theory +1703.01865 K-Theory and Homology +1703.01866 Methodology +1703.01867 Instrumentation and Detectors +1703.01868 General Topology +1703.01869 Algebraic Geometry +1703.01870 Mesoscale and Nanoscale Physics +1703.01871 Atomic Physics +1703.01872 Machine Learning +1703.01873 Information Theory +1703.01874 Combinatorics +1703.01875 High Energy Astrophysical Phenomena +1703.01877 Experiment +1703.01878 Adaptation and Self-Organizing Systems +1703.01879 Statistical Mechanics +1703.01880 Emerging Technologies +1703.01881 Lattice +1703.01882 Optimization and Control +1703.01883 Computer Vision and Pattern Recognition +1703.01885 Astrophysics of Galaxies +1703.01886 Discrete Mathematics +1703.01887 Neural and Evolutionary Computing +1703.01888 Systems and Control +1703.01889 +1703.01890 Representation Theory +1703.01891 Functional Analysis +1703.01892 Soft Condensed Matter +1703.01893 Artificial Intelligence +1703.01894 Strongly Correlated Electrons +1703.01896 Populations and Evolution +1703.01897 Software Engineering +1703.01898 Machine Learning +1703.01899 Analysis of PDEs +1703.01900 Quantitative Methods +1703.01901 Analysis of PDEs +1703.01902 Instrumentation and Methods for Astrophysics +1703.01904 Classical Analysis and ODEs +1703.01906 Classical Analysis and ODEs +1703.01907 Classical Analysis and ODEs +1703.01908 Artificial Intelligence +1703.01909 Neural and Evolutionary Computing +1703.01910 Databases +1703.01911 Analysis of PDEs +1703.01913 Data Structures and Algorithms +1703.01914 Chaotic Dynamics +1703.01915 Solar and Stellar Astrophysics +1703.01916 Information Theory +1703.01917 Representation Theory +1703.01918 Computer Vision and Pattern Recognition +1703.01919 Probability +1703.01920 Numerical Analysis +1703.01921 +1703.01923 Systems and Control +1703.01924 Artificial Intelligence +1703.01925 Machine Learning +1703.01926 Strongly Correlated Electrons +1703.01927 Optimization and Control +1703.01928 Computational Complexity +1703.01929 Instrumentation and Detectors +1703.01930 Astrophysics of Galaxies +1703.01931 Multiagent Systems +1703.01932 +1703.01933 Information Theory +1703.01934 Phenomenology +1703.01935 +1703.01937 Applications +1703.01938 Analysis of PDEs +1703.01940 Number Theory +1703.01941 Numerical Analysis +1703.01942 Optimization and Control +1703.01945 Robotics +1703.01947 +1703.01948 Optics +1703.01950 Complex Variables +1703.01951 Theory +1703.01952 Computer Science and Game Theory +1703.01954 +1703.01955 Number Theory +1703.01956 Information Theory +1703.01957 Computer Science and Game Theory +1703.01958 Learning +1703.01961 Machine Learning +1703.01962 Machine Learning +1703.01963 Artificial Intelligence +1703.01964 Chaotic Dynamics +1703.01965 +1703.01966 +1703.01967 Statistical Mechanics +1703.01969 Optimization and Control +1703.01970 Learning +1703.01971 Artificial Intelligence +1703.01972 Computer Vision and Pattern Recognition +1703.01973 Machine Learning +1703.01974 Symbolic Computation +1703.01975 Distributed, Parallel, and Cluster Computing +1703.01977 Applications +1703.01978 +1703.01979 Instrumentation and Methods for Astrophysics +1703.01980 Computational Physics +1703.01981 Analysis of PDEs +1703.01982 Instrumentation and Methods for Astrophysics +1703.01983 Phenomenology +1703.01985 Networking and Internet Architecture +1703.01986 Multimedia +1703.01987 Phenomenology +1703.01988 Learning +1703.01989 Statistical Finance +1703.01990 Systems and Control +1703.01991 Phenomenology +1703.01992 Instrumentation and Detectors +1703.01993 Number Theory +1703.01994 Statistical Mechanics +1703.01995 Logic +1703.01996 +1703.01997 Spectral Theory +1703.01999 Quantitative Methods +1703.02000 Learning +1703.02001 Algebraic Geometry +1703.02002 Social and Information Networks +1703.02003 Mesoscale and Nanoscale Physics +1703.02004 Mesoscale and Nanoscale Physics +1703.02005 Networking and Internet Architecture +1703.02007 Probability +1703.02008 Information Theory +1703.02009 Neural and Evolutionary Computing +1703.02010 Dynamical Systems +1703.02011 Biological Physics +1703.02012 Pattern Formation and Solitons +1703.02013 Superconductivity +1703.02014 Cryptography and Security +1703.02015 Logic in Computer Science +1703.02016 Computer Vision and Pattern Recognition +1703.02017 Fluid Dynamics +1703.02018 Computer Vision and Pattern Recognition +1703.02019 Computation and Language +1703.02020 Soft Condensed Matter +1703.02021 Cosmology and Nongalactic Astrophysics +1703.02023 Analysis of PDEs +1703.02024 Quantum Gases +1703.02025 Information Theory +1703.02026 +1703.02027 Algebraic Geometry +cs/0210024 Data Structures and Algorithms +math/0611225 Algebraic Topology +0909.1817 Information Theory +1210.3376 Rings and Algebras +1212.5563 Risk Management +1305.2151 Risk Management +1305.2288 Geometric Topology +1305.5526 Probability +1305.6022 Rings and Algebras +1309.0269 Probability +1309.0474 Portfolio Management +1309.2605 Number Theory +1309.6186 Algebraic Geometry +1309.6789 Analysis of PDEs +1310.3599 Logic +1312.4034 Analysis of PDEs +1402.1679 Analysis of PDEs +1402.2221 Optimization and Control +1402.2397 Differential Geometry +1403.0773 Rings and Algebras +1403.4130 K-Theory and Homology +1403.7610 Logic +1404.1694 Theory +1404.5666 Computation +1404.5928 Optimization and Control +1404.6890 Data Structures and Algorithms +1404.7269 Representation Theory +1404.7440 Functional Analysis +1405.7267 Classical Analysis and ODEs +1408.2572 Information Theory +1408.3006 Differential Geometry +1409.2560 Phenomenology +1409.2820 Theory +1410.2925 Probability +1410.4156 Databases +1410.4416 Logic in Computer Science +1411.0710 Computer Science and Game Theory +1411.7779 Optics +1412.6724 Information Theory +1501.01768 Algebraic Geometry +1501.03475 Differential Geometry +1501.04174 Combinatorics +1501.07315 Learning +1501.07725 Data Structures and Algorithms +1502.07378 Algebraic Geometry +1503.01822 Quantum Algebra +1503.03335 Differential Geometry +1503.05364 Rings and Algebras +1503.08673 +1504.01035 Soft Condensed Matter +1504.01774 Dynamical Systems +1504.02141 Learning +1504.02875 Databases +1504.05685 Differential Geometry +1505.01313 Analysis of PDEs +1505.05132 Mesoscale and Nanoscale Physics +1506.00177 Algebraic Geometry +1506.00905 Logic +1506.02981 Mesoscale and Nanoscale Physics +1506.08393 Theory +1506.08915 Information Theory +1507.01895 Optimization and Control +1507.04921 Computers and Society +1508.00385 Combinatorics +1508.02367 Risk Management +1508.04985 Classical Analysis and ODEs +1509.01142 Algebraic Topology +1509.03837 +1509.05787 Algebraic Geometry +1510.00839 Combinatorics +1510.03860 +1511.03395 Applications +1511.03507 +1511.06291 Operator Algebras +1511.08598 Data Structures and Algorithms +1512.01856 Materials Science +1512.02546 Discrete Mathematics +1601.00121 +1601.01661 Fluid Dynamics +1601.01775 Commutative Algebra +1601.04676 Theory +1602.00251 Cryptography and Security +1602.03785 Analysis of PDEs +1602.03905 +1602.07396 Digital Libraries +1602.08613 Probability +1603.00453 Theory +1603.03244 Mesoscale and Nanoscale Physics +1603.05688 Astrophysics of Galaxies +1603.06855 Materials Science +1603.08816 Differential Geometry +1604.00157 Mesoscale and Nanoscale Physics +1604.01601 +1604.01938 Group Theory +1604.03691 +1604.06755 Number Theory +1604.07375 Group Theory +1604.08169 Fluid Dynamics +1605.01980 Materials Science +1605.03515 Strongly Correlated Electrons +1605.07036 Instrumentation and Methods for Astrophysics +1605.09149 Mesoscale and Nanoscale Physics +1606.01616 +1606.03267 +1606.05186 Instrumentation and Detectors +1606.06858 Metric Geometry +1606.07035 Learning +1606.09314 +1607.03338 Computational Geometry +1607.03824 Geometric Topology +1608.00608 Astrophysics of Galaxies +1608.01411 Materials Science +1608.01538 +1608.01602 +1608.01974 +1608.03400 +1608.03432 Mesoscale and Nanoscale Physics +1608.04087 Mesoscale and Nanoscale Physics +1608.04284 Phenomenology +1608.04999 Programming Languages +1608.05208 +1608.05997 Information Theory +1608.06230 Analysis of PDEs +1608.08191 Mesoscale and Nanoscale Physics +1609.00226 +1609.00948 Other Condensed Matter +1609.01306 +1609.02683 Disordered Systems and Neural Networks +1609.03788 +1609.04979 Cosmology and Nongalactic Astrophysics +1609.05432 Theory +1609.06263 Strongly Correlated Electrons +1609.06858 Strongly Correlated Electrons +1609.07931 Superconductivity +1609.07993 Materials Science +1609.09625 Combinatorics +1610.00553 +1610.01271 Methodology +1610.01958 Classical Analysis and ODEs +1610.02087 +1610.03057 +1610.03882 +1610.04240 Statistical Mechanics +1610.05246 Statistics Theory +1610.05266 Fluid Dynamics +1610.06113 Probability +1610.06329 Numerical Analysis +1610.08213 +1610.09642 +1611.00412 Analysis of PDEs +1611.01225 Populations and Evolution +1611.03233 Multimedia +1611.03249 Atomic Physics +1611.03672 Mesoscale and Nanoscale Physics +1611.04546 Combinatorics +1611.04661 Chemical Physics +1611.05770 +1611.05832 +1611.07937 +1611.07997 Strongly Correlated Electrons +1611.08924 Fluid Dynamics +1611.09073 Information Theory +1611.09585 Algebraic Geometry +1612.00232 Instrumentation and Detectors +1612.00237 Instrumentation and Detectors +1612.00750 Social and Information Networks +1612.00871 Instrumentation and Detectors +1612.01077 Algebraic Geometry +1612.01451 Earth and Planetary Astrophysics +1612.02330 Differential Geometry +1612.02851 Representation Theory +1612.03554 Populations and Evolution +1612.04947 Probability +1612.05645 Cosmology and Nongalactic Astrophysics +1612.06898 Number Theory +1612.08332 Strongly Correlated Electrons +1612.08677 Group Theory +1612.08711 Phenomenology +1612.08893 Mesoscale and Nanoscale Physics +1612.09109 Quantum Gases +1612.09147 Learning +1701.00245 Theory +1701.00527 +1701.00949 +1701.01020 General Physics +1701.01284 Symplectic Geometry +1701.01534 Analysis of PDEs +1701.01657 Robotics +1701.01678 Optics +1701.01742 Instrumentation and Methods for Astrophysics +1701.01758 Materials Science +1701.02369 Human-Computer Interaction +1701.02481 Computation and Language +1701.03196 Theory +1701.03235 Analysis of PDEs +1701.03481 Physics and Society +1701.03742 Materials Science +1701.04078 Instrumentation and Detectors +1701.04137 Cryptography and Security +1701.04369 Algebraic Geometry +1701.04731 Instrumentation and Methods for Astrophysics +1701.05407 Solar and Stellar Astrophysics +1701.05662 Biological Physics +1701.06189 +1701.06392 Phenomenology +1701.06413 Group Theory +1701.06684 Mesoscale and Nanoscale Physics +1701.06713 Mesoscale and Nanoscale Physics +1701.06752 Probability +1701.06865 Theory +1701.07053 Quantitative Methods +1701.07088 Physics and Society +1701.07120 +1701.07251 Group Theory +1701.07256 Mesoscale and Nanoscale Physics +1701.07274 Learning +1701.07326 Algebraic Geometry +1701.07330 Combinatorics +1701.07331 Cryptography and Security +1701.07376 Phenomenology +1701.07379 Tissues and Organs +1701.07430 Rings and Algebras +1701.07431 Instrumentation and Detectors +1701.07432 Instrumentation and Detectors +1701.07434 Networking and Internet Architecture +1701.07437 Phenomenology +1701.07439 Solar and Stellar Astrophysics +1701.07440 Astrophysics of Galaxies +1701.07441 High Energy Astrophysical Phenomena +1701.07443 Phenomenology +1701.07444 +1701.07445 Theory +1701.07446 Numerical Analysis +1701.07447 Information Theory +1701.07448 Astrophysics of Galaxies +1701.07449 +1701.07450 High Energy Astrophysical Phenomena +1701.07451 Dynamical Systems +1701.07453 Numerical Analysis +1701.07454 Mesoscale and Nanoscale Physics +1701.07455 +1701.07456 Systems and Control +1701.07457 High Energy Astrophysical Phenomena +1701.07458 Quantum Algebra +1701.07460 Number Theory +1701.07462 +1701.07463 Discrete Mathematics +1701.07465 Lattice +1701.07467 Differential Geometry +1701.07468 Algebraic Geometry +1701.07470 Logic in Computer Science +1701.07472 Combinatorics +1701.07473 Data Structures and Algorithms +1701.07474 Learning +1701.07475 Optimization and Control +1701.07476 Functional Analysis +1701.07477 Information Theory +1701.07479 Physics and Society +1701.07482 Systems and Control +1701.07483 Methodology +1701.07484 Computers and Society +1701.07486 Exactly Solvable and Integrable Systems +1701.07487 Numerical Analysis +1701.07488 Information Theory +1701.07490 Social and Information Networks +1701.07491 Optimization and Control +1701.07492 Combinatorics +1701.07493 Quantum Gases +1701.07494 +1701.07495 Information Theory +1701.07496 Methodology +1701.07497 Combinatorics +1701.07498 Data Structures and Algorithms +1701.07499 Fluid Dynamics +1701.07500 Distributed, Parallel, and Cluster Computing +1701.07503 +1701.07504 Medical Physics +1701.07505 Materials Science +1701.07506 Methodology +1701.07508 Classical Analysis and ODEs +1701.07509 Materials Science +1701.07511 Theory +1701.07513 Earth and Planetary Astrophysics +1701.07514 Dynamical Systems +1701.07515 Combinatorics +1701.07516 Information Theory +1701.07519 +1701.07520 +1701.07522 Information Theory +1701.07523 Materials Science +1701.07524 Information Theory +1701.07525 Geometric Topology +1701.07526 Materials Science +1701.07529 Numerical Analysis +1701.07530 Instrumentation and Detectors +1701.07532 Mesoscale and Nanoscale Physics +1701.07533 Representation Theory +1701.07534 Numerical Analysis +1701.07535 Statistics Theory +1701.07536 Numerical Analysis +1701.07537 Complex Variables +1701.07538 Category Theory +1701.07539 +1701.07543 Learning +1701.07545 Space Physics +1701.07546 Number Theory +1701.07547 Robotics +1701.07548 Logic +1701.07549 Robotics +1701.07551 Number Theory +1701.07552 Differential Geometry +1701.07555 Methodology +1701.07556 Superconductivity +1701.07557 Strongly Correlated Electrons +1701.07558 Strongly Correlated Electrons +1701.07559 Lattice +1701.07560 Fluid Dynamics +1701.07561 Instrumentation and Methods for Astrophysics +1701.07562 Instrumentation and Methods for Astrophysics +1701.07563 Representation Theory +1701.07564 Representation Theory +1701.07565 Logic +1701.07568 Probability +1701.07569 Optimization and Control +1701.07571 Phenomenology +1701.07572 Statistics Theory +1701.07574 Strongly Correlated Electrons +1701.07575 Superconductivity +1701.07577 Methodology +1701.07578 Mesoscale and Nanoscale Physics +1701.07579 Information Theory +1701.07580 +1701.07581 Quantum Gases +1701.07583 Dynamical Systems +1701.07585 Soft Condensed Matter +1701.07587 +1701.07588 Information Theory +1701.07589 +1701.07590 Systems and Control +1701.07591 Superconductivity +1701.07592 Geometric Topology +1701.07594 Robotics +1701.07597 +1701.07598 Mesoscale and Nanoscale Physics +1701.07599 Algebraic Topology +1701.07600 Accelerator Physics +1701.07602 Information Theory +1701.07603 Statistical Mechanics +1701.07604 Computer Vision and Pattern Recognition +1701.07605 Information Theory +1701.07606 Combinatorics +1701.07607 Computers and Society +1701.07612 Algebraic Topology +1701.07613 Fluid Dynamics +1701.07614 Computer Science and Game Theory +1701.07616 Information Theory +1701.07617 Dynamical Systems +1701.07618 Classical Physics +1701.07619 Optimization and Control +1701.07620 Numerical Analysis +1701.07622 Materials Science +1701.07624 Quantum Gases +1701.07625 +1701.07626 Dynamical Systems +1701.07627 Functional Analysis +1701.07628 +1701.07629 Information Theory +1701.07630 Rings and Algebras +1701.07631 Astrophysics of Galaxies +1701.07633 Probability +1701.07635 Phenomenology +1701.07636 Information Theory +1701.07637 Accelerator Physics +1701.07639 Combinatorics +1701.07640 +1701.07642 +1701.07644 Astrophysics of Galaxies +1701.07645 Discrete Mathematics +1701.07646 Neurons and Cognition +1701.07647 +1701.07648 Materials Science +1701.07649 Soft Condensed Matter +1701.07651 Materials Science +1701.07652 Number Theory +1701.07653 Category Theory +1701.07654 Earth and Planetary Astrophysics +1701.07655 Materials Science +1701.07656 Dynamical Systems +1701.07657 Artificial Intelligence +1701.07658 Representation Theory +1701.07659 +1701.07660 Probability +1701.07661 Astrophysics of Galaxies +1701.07662 Representation Theory +1701.07663 Probability +1701.07664 Phenomenology +1701.07666 Cryptography and Security +1701.07667 Combinatorics +1701.07669 High Energy Astrophysical Phenomena +1701.07670 +1701.07671 Cryptography and Security +1701.07672 Materials Science +1701.07673 Lattice +1701.07674 Earth and Planetary Astrophysics +1701.07675 Information Theory +1701.07676 Cryptography and Security +1701.07677 Optimization and Control +1701.07681 Data Structures and Algorithms +1701.07682 Classical Analysis and ODEs +1701.07683 Instrumentation and Detectors +1701.07684 Rings and Algebras +1701.07685 Computational Physics +1701.07687 +1701.07688 +1701.07690 Probability +1701.07692 Earth and Planetary Astrophysics +1701.07693 Combinatorics +1701.07695 Information Theory +1701.07696 Artificial Intelligence +1701.07697 Other Computer Science +1701.07698 Probability +1701.07699 Chaotic Dynamics +1701.07700 +1701.07701 Group Theory +1701.07702 +1701.07703 Instrumentation and Detectors +1701.07704 Atomic and Molecular Clusters +1701.07705 Statistical Mechanics +1701.07707 Information Theory +1701.07708 Instrumentation and Methods for Astrophysics +1701.07710 Analysis of PDEs +1701.07711 Instrumentation and Methods for Astrophysics +1701.07712 Cell Behavior +1701.07713 Materials Science +1701.07715 Emerging Technologies +1701.07716 Commutative Algebra +1701.07718 Strongly Correlated Electrons +1701.07719 Combinatorics +1701.07720 Algebraic Topology +1701.07721 Commutative Algebra +1701.07722 Strongly Correlated Electrons +1701.07723 Databases +1701.07727 Commutative Algebra +1701.07728 Superconductivity +1701.07729 Physics and Society +1701.07730 Information Theory +1701.07731 Information Theory +1701.07732 Computer Vision and Pattern Recognition +1701.07734 Fluid Dynamics +1701.07737 +1701.07738 Information Theory +1701.07739 Databases +1701.07741 Representation Theory +1701.07743 Instrumentation and Methods for Astrophysics +1701.07744 Quantitative Methods +1701.07745 Methodology +1701.07746 Theory +1701.07747 +1701.07748 Combinatorics +1701.07749 +1701.07750 Mesoscale and Nanoscale Physics +1701.07751 Functional Analysis +1701.07752 Combinatorics +1701.07753 High Energy Astrophysical Phenomena +1701.07754 Physics Education +1701.07756 Artificial Intelligence +1701.07757 +1701.07758 Mesoscale and Nanoscale Physics +1701.07759 Solar and Stellar Astrophysics +1701.07760 Algebraic Geometry +1701.07761 Machine Learning +1701.07762 Analysis of PDEs +1701.07763 Classical Analysis and ODEs +1701.07765 Human-Computer Interaction +1701.07766 Functional Analysis +1701.07767 Learning +1701.07768 Geometric Topology +1701.07769 Artificial Intelligence +1701.07772 Disordered Systems and Neural Networks +1701.07773 Experiment +1701.07774 Cryptography and Security +1701.07775 Neurons and Cognition +1701.07776 Methodology +1701.07777 Functional Analysis +1701.07778 Combinatorics +1701.07779 Complex Variables +1701.07780 Strongly Correlated Electrons +1701.07781 Numerical Analysis +1701.07782 Lattice +1701.07783 Theory +1701.07785 Probability +1701.07786 Rings and Algebras +1701.07788 Symplectic Geometry +1701.07789 Algebraic Geometry +1701.07790 Robotics +1701.07792 Lattice +1701.07793 Mesoscale and Nanoscale Physics +1701.07794 +1701.07795 Information Retrieval +1701.07796 Information Theory +1701.07797 +1701.07798 Instrumentation and Methods for Astrophysics +1701.07799 Robotics +1701.07800 Classical Analysis and ODEs +1701.07801 +1701.07805 Information Theory +1701.07806 Combinatorics +1701.07809 Analysis of PDEs +1701.07813 Strongly Correlated Electrons +1701.07814 Complex Variables +1701.07816 +1701.07820 Strongly Correlated Electrons +1701.07821 Symplectic Geometry +0901.1052 Commutative Algebra +1006.3197 +1007.0152 Metric Geometry +1101.0471 +1208.0389 Theory +1209.0416 Theory +1210.6586 +1302.6498 Applications +1310.0393 Theory +1312.6657 Dynamical Systems +1401.0682 +1401.0851 Numerical Analysis +1404.6516 Rings and Algebras +1408.1125 Physics Education +1408.1536 Probability +1408.2980 Quantum Gases +1408.3960 Dynamical Systems +1408.4542 Computation +1410.4231 Computation +1410.8457 Algebraic Geometry +1412.1605 Statistics Theory +1412.4160 Computation and Language +1412.4813 Information Theory +1501.00860 Combinatorics +1501.06083 +1501.06556 Functional Analysis +1502.04561 Combinatorics +1502.04938 Computation and Language +1502.05274 Economics +1502.06008 Functional Analysis +1502.06487 Probability +1503.00155 Algebraic Geometry +1503.02269 +1503.04123 Computation +1505.06663 Quantum Gases +1506.04629 Combinatorics +1506.08566 Probability +1507.04943 Logic in Computer Science +1508.01213 Mesoscale and Nanoscale Physics +1508.04900 Trading and Market Microstructure +1508.05057 Functional Analysis +1509.01449 Classical Analysis and ODEs +1509.02031 +1509.02300 Differential Geometry +1509.02571 Analysis of PDEs +1509.06462 Statistical Mechanics +1509.07819 Number Theory +1510.01354 Number Theory +1510.04334 Optics +1510.07232 Differential Geometry +1510.08786 Logic in Computer Science +1511.05091 Analysis of PDEs +1511.05943 Learning +1511.06417 Applications +1511.06513 Dynamical Systems +1511.07964 Optics +1511.07968 Optics +1511.09371 Analysis of PDEs +1512.01534 Rings and Algebras +1512.04245 Functional Analysis +1512.06649 Data Structures and Algorithms +1512.08731 Methodology +1512.09367 Theory +1601.00438 Spectral Theory +1601.02589 Algebraic Geometry +1601.04621 Social and Information Networks +1601.04812 Numerical Analysis +1601.06744 Cryptography and Security +1601.07952 +1601.08086 Algebraic Geometry +1602.05831 Formal Languages and Automata Theory +1602.06084 Metric Geometry +1603.00672 Number Theory +1603.01986 Classical Analysis and ODEs +1603.05381 Group Theory +1603.07529 Statistical Mechanics +1604.00106 +1604.01391 Rings and Algebras +1604.02073 Complex Variables +1604.02575 Probability +1604.03723 Geometric Topology +1604.06238 Superconductivity +1605.02113 Machine Learning +1605.02496 Phenomenology +1605.04362 Differential Geometry +1605.06000 +1605.06057 Operator Algebras +1605.07678 Computer Vision and Pattern Recognition +1605.08436 Cosmology and Nongalactic Astrophysics +1606.00129 Metric Geometry +1606.00493 Statistical Mechanics +1606.00676 Mesoscale and Nanoscale Physics +1606.03114 Cosmology and Nongalactic Astrophysics +1606.03216 Cosmology and Nongalactic Astrophysics +1606.03810 Differential Geometry +1606.03898 Computer Science and Game Theory +1606.04573 Data Structures and Algorithms +1606.05297 Theory +1606.05473 Distributed, Parallel, and Cluster Computing +1606.05487 Hardware Architecture +1606.05565 +1606.05591 Optics +1606.05864 Experiment +1606.06199 Numerical Analysis +1606.06624 Combinatorics +1606.06669 Quantum Gases +1606.07619 Atomic and Molecular Clusters +1606.08530 Combinatorics +1606.08755 Accelerator Physics +1607.03071 +1607.05168 +1607.05196 Strongly Correlated Electrons +1607.05401 Theory +1607.05572 Computational Finance +1607.05831 Statistical Finance +1607.06103 +1607.06517 Data Structures and Algorithms +1607.06597 Combinatorics +1607.06886 Robotics +1607.07307 Physics and Society +1607.07530 Representation Theory +1607.08269 Classical Analysis and ODEs +1607.08581 Group Theory +1607.08679 Cosmology and Nongalactic Astrophysics +1608.00139 Artificial Intelligence +1608.00269 Information Theory +1608.00430 General Mathematics +1608.00689 Computers and Society +1608.00935 Optimization and Control +1608.01940 +1608.02707 Distributed, Parallel, and Cluster Computing +1608.03859 Computation +1608.03894 Phenomenology +1608.04472 Social and Information Networks +1608.06781 Statistical Finance +1608.07219 Theory +1608.07561 Experiment +1608.08203 Probability +1609.00228 +1609.00756 +1609.00855 Pattern Formation and Solitons +1609.02032 Experiment +1609.02042 Instrumentation and Methods for Astrophysics +1609.02799 Theory +1609.03103 Robotics +1609.04061 Geophysics +1609.04811 +1609.04908 Phenomenology +1609.06047 Phenomenology +1609.06618 Functional Analysis +1609.07432 Computational Physics +1609.07459 +1609.09414 Astrophysics of Galaxies +1609.09419 Optimization and Control +1610.01156 Astrophysics of Galaxies +1610.03270 Analysis of PDEs +1610.04737 Mesoscale and Nanoscale Physics +1610.05804 Number Theory +1610.05988 Numerical Analysis +1610.08469 Computers and Society +1610.08499 Numerical Analysis +1610.09902 Computational Engineering, Finance, and Science +1611.00459 Information Theory +1611.00913 Phenomenology +1611.01441 Optics +1611.02345 Learning +1611.02418 Astrophysics of Galaxies +1611.02813 Rings and Algebras +1611.03238 Quantum Gases +1611.04076 Computer Vision and Pattern Recognition +1611.04192 Optimization and Control +1611.04500 Machine Learning +1611.05418 Computer Vision and Pattern Recognition +1611.05573 Quantum Gases +1611.05802 Superconductivity +1611.05911 Data Structures and Algorithms +1611.07232 Computation and Language +1611.08036 Robotics +1611.08170 Chaotic Dynamics +1611.09803 Computer Vision and Pattern Recognition +1611.09910 Solar and Stellar Astrophysics +1612.00891 Computer Vision and Pattern Recognition +1612.00945 Experiment +1612.01271 Metric Geometry +1612.01683 +1612.01832 General Physics +1612.03067 Phenomenology +1612.03262 Quantum Algebra +1612.03743 Number Theory +1612.03871 Artificial Intelligence +1612.04553 High Energy Astrophysical Phenomena +1612.04665 Strongly Correlated Electrons +1612.05200 Popular Physics +1612.05916 Numerical Analysis +1612.06232 Cryptography and Security +1612.06506 Superconductivity +1612.06695 Statistical Mechanics +1612.06742 +1612.07006 Soft Condensed Matter +1612.07270 Statistical Mechanics +1612.07648 General Mathematics +1612.07687 Theory +1612.09032 Combinatorics +1612.09106 Applications +1612.09564 Phenomenology +1701.00035 Strongly Correlated Electrons +1701.00248 Computer Science and Game Theory +1701.00371 Phenomenology +1701.00410 Phenomenology +1701.00948 Discrete Mathematics +1701.01119 Theory +1701.01269 Phenomenology +1701.01769 Disordered Systems and Neural Networks +1701.02136 Analysis of PDEs +1701.02632 Computer Vision and Pattern Recognition +1701.03372 +1701.03649 Optics +1701.03676 Quantum Gases +1701.04214 Strongly Correlated Electrons +1701.04592 Theory +1701.04926 Information Theory +1701.05032 +1701.05514 Phenomenology +1701.05789 Software Engineering +1701.06690 Commutative Algebra +1701.07817 Theory +1701.07879 Neurons and Cognition +1701.08074 Systems and Control +1701.08708 Chemical Physics +1701.08837 Learning +1702.00502 Digital Libraries +1702.00615 Computer Vision and Pattern Recognition +1702.01155 +1702.01243 Computer Vision and Pattern Recognition +1702.01284 Data Structures and Algorithms +1702.01401 Quantum Gases +1702.01691 Learning +1702.01918 Superconductivity +1702.02104 Strongly Correlated Electrons +1702.02171 Computation and Language +1702.02397 Logic in Computer Science +1702.02725 Plasma Physics +1702.02842 Phenomenology +1702.03166 Statistics Theory +1702.03239 +1702.03277 Logic in Computer Science +1702.03292 Commutative Algebra +1702.03340 Differential Geometry +1702.03367 Optimization and Control +1702.03377 Statistics Theory +1702.03473 Atomic Physics +1702.03772 Systems and Control +1702.04048 Numerical Analysis +1702.04082 Social and Information Networks +1702.04086 Probability +1702.04325 Analysis of PDEs +1702.04720 +1702.04792 Theory +1702.04836 +1702.04901 Differential Geometry +1702.05084 Analysis of PDEs +1702.05470 Theory +1702.05474 Statistical Mechanics +1702.05560 Dynamical Systems +1702.05567 Discrete Mathematics +1702.05574 Statistics Theory +1702.05744 Software Engineering +1702.06217 Popular Physics +1702.06260 Information Theory +1702.06304 Phenomenology +1702.06403 +1702.06488 Computation +1702.06506 Computer Vision and Pattern Recognition +1702.06705 Metric Geometry +1702.06830 Computers and Society +1702.06918 +1702.06980 Machine Learning +1702.07061 Numerical Analysis +1702.07099 Human-Computer Interaction +1702.07204 Solar and Stellar Astrophysics +1702.07240 Differential Geometry +1702.07274 Machine Learning +1702.07277 Classical Physics +1702.07285 Computation and Language +1702.07337 High Energy Astrophysical Phenomena +1702.07343 Computer Vision and Pattern Recognition +1702.07344 High Energy Astrophysical Phenomena +1702.07346 +1702.07347 Phenomenology +1702.07348 Astrophysics of Galaxies +1702.07350 Astrophysics of Galaxies +1702.07351 Astrophysics of Galaxies +1702.07353 Solar and Stellar Astrophysics +1702.07354 Instrumentation and Methods for Astrophysics +1702.07355 Astrophysics of Galaxies +1702.07356 Phenomenology +1702.07357 Astrophysics of Galaxies +1702.07358 +1702.07359 Phenomenology +1702.07362 Theory +1702.07363 Number Theory +1702.07364 Strongly Correlated Electrons +1702.07366 Theory +1702.07367 Numerical Analysis +1702.07368 Neurons and Cognition +1702.07369 Differential Geometry +1702.07370 Solar and Stellar Astrophysics +1702.07371 Computer Vision and Pattern Recognition +1702.07372 Subcellular Processes +1702.07373 Computational Physics +1702.07374 Statistical Finance +1702.07378 Biological Physics +1702.07379 Algebraic Topology +1702.07381 Strongly Correlated Electrons +1702.07382 Cosmology and Nongalactic Astrophysics +1702.07383 Superconductivity +1702.07384 Theory +1702.07385 +1702.07386 Computer Vision and Pattern Recognition +1702.07387 +1702.07388 Formal Languages and Automata Theory +1702.07389 Robotics +1702.07391 +1702.07392 Computer Vision and Pattern Recognition +1702.07393 Robotics +1702.07394 Statistical Mechanics +1702.07395 Pattern Formation and Solitons +1702.07396 Probability +1702.07397 Analysis of PDEs +1702.07399 Computational Geometry +1702.07400 Machine Learning +1702.07401 Exactly Solvable and Integrable Systems +1702.07402 Representation Theory +1702.07403 Data Structures and Algorithms +1702.07404 Theory +1702.07405 Machine Learning +1702.07406 Group Theory +1702.07407 Number Theory +1702.07408 +1702.07409 Information Theory +1702.07411 Differential Geometry +1702.07412 Dynamical Systems +1702.07413 +1702.07414 Earth and Planetary Astrophysics +1702.07415 Symplectic Geometry +1702.07417 Number Theory +1702.07419 Probability +1702.07420 Analysis of PDEs +1702.07421 Dynamical Systems +1702.07422 Applications +1702.07423 Physics and Society +1702.07424 Software Engineering +1702.07425 Distributed, Parallel, and Cluster Computing +1702.07426 Neural and Evolutionary Computing +1702.07427 Operator Algebras +1702.07429 Information Theory +1702.07431 Software Engineering +1702.07432 Computer Vision and Pattern Recognition +1702.07433 Statistical Mechanics +1702.07434 Astrophysics of Galaxies +1702.07435 Data Structures and Algorithms +1702.07436 Cryptography and Security +1702.07437 Computers and Society +1702.07438 +1702.07439 Materials Science +1702.07441 Probability +1702.07442 Materials Science +1702.07443 Analysis of PDEs +1702.07444 Learning +1702.07445 Human-Computer Interaction +1702.07448 Statistics Theory +1702.07449 Methodology +1702.07450 Learning +1702.07451 Computer Vision and Pattern Recognition +1702.07452 Multimedia +1702.07453 Instrumentation and Methods for Astrophysics +1702.07454 Complex Variables +1702.07455 Strongly Correlated Electrons +1702.07456 Cryptography and Security +1702.07457 Number Theory +1702.07458 Data Structures and Algorithms +1702.07459 +1702.07460 Subcellular Processes +1702.07461 Logic in Computer Science +1702.07462 Social and Information Networks +1702.07464 Cryptography and Security +1702.07465 Applications +1702.07466 Quantum Algebra +1702.07468 Metric Geometry +1702.07469 Statistical Mechanics +1702.07470 Emerging Technologies +1702.07472 Computer Vision and Pattern Recognition +1702.07473 Functional Analysis +1702.07474 Computer Vision and Pattern Recognition +1702.07475 Robotics +1702.07477 +1702.07478 Logic in Computer Science +1702.07480 Human-Computer Interaction +1702.07481 Digital Libraries +1702.07482 Computer Vision and Pattern Recognition +1702.07483 Physics and Society +1702.07485 Superconductivity +1702.07486 Computer Vision and Pattern Recognition +1702.07488 Functional Analysis +1702.07489 Networking and Internet Architecture +1702.07490 Learning +1702.07492 Robotics +1702.07494 Mesoscale and Nanoscale Physics +1702.07495 Computation and Language +1702.07496 Spectral Theory +1702.07497 Differential Geometry +1702.07498 Information Theory +1702.07499 Discrete Mathematics +1702.07500 Combinatorics +1702.07501 Other Computer Science +1702.07502 Cryptography and Security +1702.07503 Optimization and Control +1702.07505 Optimization and Control +1702.07506 Materials Science +1702.07507 Computation and Language +1702.07508 Computer Vision and Pattern Recognition +1702.07509 Algebraic Geometry +1702.07510 Information Theory +1702.07511 Mesoscale and Nanoscale Physics +1702.07512 Astrophysics of Galaxies +1702.07514 Distributed, Parallel, and Cluster Computing +1702.07515 Analysis of PDEs +1702.07516 Fluid Dynamics +1702.07517 Superconductivity +1702.07518 +1702.07519 High Energy Astrophysical Phenomena +1702.07520 +1702.07521 Cryptography and Security +1702.07522 Solar and Stellar Astrophysics +1702.07523 High Energy Astrophysical Phenomena +1702.07524 High Energy Astrophysical Phenomena +1702.07525 Optimization and Control +1702.07526 +1702.07527 Astrophysics of Galaxies +1702.07528 Optimization and Control +1702.07529 Analysis of PDEs +1702.07531 Numerical Analysis +1702.07532 Quantum Gases +1702.07533 Quantum Gases +1702.07535 Analysis of PDEs +1702.07536 Systems and Control +1702.07537 Phenomenology +1702.07538 Materials Science +1702.07539 Learning +1702.07540 Optimization and Control +1702.07541 +1702.07542 Phenomenology +1702.07543 Artificial Intelligence +1702.07545 Information Theory +1702.07546 Experiment +1702.07547 Symplectic Geometry +1702.07548 Multimedia +1702.07549 Disordered Systems and Neural Networks +1702.07550 Mesoscale and Nanoscale Physics +1702.07551 Algebraic Geometry +1702.07553 Algebraic Geometry +1702.07554 Performance +1702.07555 Computational Geometry +1702.07556 Mathematical Finance +1702.07557 Astrophysics of Galaxies +1702.07558 Combinatorics +1702.07559 Combinatorics +1702.07560 Information Theory +1702.07562 Materials Science +1702.07563 Differential Geometry +1702.07564 Analysis of PDEs +1702.07565 +1702.07566 High Energy Astrophysical Phenomena +1702.07567 +1702.07568 Mesoscale and Nanoscale Physics +1702.07569 Solar and Stellar Astrophysics +1702.07570 Representation Theory +1702.07571 Astrophysics of Galaxies +1702.07573 Mesoscale and Nanoscale Physics +1702.07574 Commutative Algebra +1702.07575 Pattern Formation and Solitons +1702.07577 Data Structures and Algorithms +1702.07580 Optimization and Control +1702.07581 Phenomenology +1702.07582 Atomic Physics +1702.07584 Functional Analysis +1702.07585 Numerical Analysis +1702.07586 Mesoscale and Nanoscale Physics +1702.07587 Mesoscale and Nanoscale Physics +1702.07588 Cryptography and Security +1702.07589 Discrete Mathematics +1702.07590 +1702.07591 Analysis of PDEs +1702.07593 Complex Variables +1702.07594 Phenomenology +1702.07595 +1702.07596 Soft Condensed Matter +1702.07597 Chaotic Dynamics +1702.07598 +1702.07599 Phenomenology +1702.07600 Computer Vision and Pattern Recognition +1702.07601 Information Theory +1702.07602 +1702.07603 Computational Physics +1702.07604 Combinatorics +1702.07605 Distributed, Parallel, and Cluster Computing +1702.07607 +1702.07608 Machine Learning +1702.07609 Solar and Stellar Astrophysics +1702.07610 Number Theory +1702.07611 Computer Vision and Pattern Recognition +1702.07612 Discrete Mathematics +1702.07615 Optimization and Control +1702.07617 Distributed, Parallel, and Cluster Computing +1702.07618 Optimization and Control +1702.07619 Computer Vision and Pattern Recognition +1702.07620 +1702.07621 Cosmology and Nongalactic Astrophysics +1702.07622 Differential Geometry +1702.07623 Fluid Dynamics +1702.07624 Information Theory +1702.07625 Differential Geometry +1702.07626 Classical Analysis and ODEs +1702.07627 Multimedia +1702.07628 Algebraic Geometry +1702.07629 Operator Algebras +1702.07630 Methodology +1702.07631 Solar and Stellar Astrophysics +1702.07633 +1702.07634 Physics and Society +1702.07635 High Energy Astrophysical Phenomena +1702.07639 Instrumentation and Detectors +1702.07640 Lattice +1702.07642 Analysis of PDEs +1702.07643 Software Engineering +1702.07647 Robotics +1702.07648 Mesoscale and Nanoscale Physics +1702.07649 Neurons and Cognition +1702.07650 Number Theory +1702.07651 Social and Information Networks +1702.07652 Molecular Networks +1702.07653 +1702.07656 Software Engineering +1702.07657 Information Theory +1702.07658 Plasma Physics +1702.07659 +1702.07660 Strongly Correlated Electrons +1702.07661 Cosmology and Nongalactic Astrophysics +1702.07662 Computation +1702.07663 Optimization and Control +1702.07664 Computer Vision and Pattern Recognition +1702.07665 Computer Science and Game Theory +1702.07667 Chemical Physics +1702.07668 +1702.07669 Data Structures and Algorithms +1702.07670 Other Computer Science +1702.07671 Soft Condensed Matter +1702.07672 Algebraic Geometry +1702.07673 Other Computer Science +1702.07674 Phenomenology +1702.07675 Astrophysics of Galaxies +1702.07676 Metric Geometry +1702.07677 High Energy Astrophysical Phenomena +1702.07678 Phenomenology +1702.07679 Computer Vision and Pattern Recognition +1702.07680 Computation and Language +1702.07681 Computers and Society +1702.07682 Solar and Stellar Astrophysics +1702.07683 +1702.07684 Solar and Stellar Astrophysics +1702.07685 Computation +1702.07686 Strongly Correlated Electrons +1702.07687 Astrophysics of Galaxies +1702.07689 Theory +1702.07690 Strongly Correlated Electrons +1702.07691 Dynamical Systems +1702.07692 +1702.07693 Dynamical Systems +1702.07694 Machine Learning +1702.07695 Differential Geometry +1702.07696 Data Structures and Algorithms +1702.07697 Information Theory +1702.07698 Dynamical Systems +1702.07699 Statistical Mechanics +1702.07700 Numerical Analysis +1702.07701 Rings and Algebras +1702.07703 Information Theory +1702.07704 Phenomenology +1702.07705 +1702.07706 +1702.07707 Cryptography and Security +1702.07708 Phenomenology +1702.07709 Machine Learning +0909.5645 General Topology +1109.5061 Algebraic Geometry +1204.2476 +1204.3269 +1205.5493 +1212.2781 Combinatorics +1212.2960 Combinatorics +1301.1107 Numerical Analysis +1304.5271 Atmospheric and Oceanic Physics +1309.3551 Theory +1309.6464 Exactly Solvable and Integrable Systems +1310.0210 Analysis of PDEs +1312.0486 Algebraic Geometry +1312.0490 Algebraic Geometry +1402.6351 Mesoscale and Nanoscale Physics +1404.4342 Combinatorics +1409.2630 Functional Analysis +1410.5087 Combinatorics +1411.1315 Exactly Solvable and Integrable Systems +1411.4215 Functional Analysis +1411.4360 Algebraic Topology +1412.0272 Algebraic Topology +1412.1966 Plasma Physics +1412.4869 Computation +1412.5652 Differential Geometry +1502.02180 Mesoscale and Nanoscale Physics +1502.03333 Plasma Physics +1502.05348 Category Theory +1503.00909 Molecular Networks +1503.06110 Cosmology and Nongalactic Astrophysics +1504.01429 Optimization and Control +1504.03785 Phenomenology +1504.04228 Optics +1505.00964 Quantum Algebra +1505.02897 Algebraic Geometry +1505.06594 Probability +1506.00806 Mathematical Finance +1506.05772 Populations and Evolution +1507.01270 Combinatorics +1507.02265 Probability +1507.04477 Functional Analysis +1507.04963 Combinatorics +1507.05854 Numerical Analysis +1507.08619 Theory +1508.00778 Metric Geometry +1508.07269 Other Computer Science +1508.07761 Mathematical Finance +1509.03584 Group Theory +1509.07532 Mesoscale and Nanoscale Physics +1509.07918 Genomics +1509.08538 Mesoscale and Nanoscale Physics +1510.00552 Databases +1510.01034 Probability +1510.02353 +1510.04394 Soft Condensed Matter +1510.07284 Functional Analysis +1511.03746 Dynamical Systems +1512.01429 Physics and Society +1512.01606 Mesoscale and Nanoscale Physics +1512.01677 Mesoscale and Nanoscale Physics +1512.03288 Analysis of PDEs +1512.05230 Metric Geometry +1512.05771 Phenomenology +1512.09047 +1601.02283 Geometric Topology +1601.05047 Logic in Computer Science +1602.00565 Differential Geometry +1602.04494 Algebraic Topology +1602.05787 Symplectic Geometry +1602.06769 Phenomenology +1602.07857 Artificial Intelligence +1602.09009 Logic +1603.00217 Probability +1603.03304 Computer Vision and Pattern Recognition +1603.04415 Dynamical Systems +1604.00422 Strongly Correlated Electrons +1604.01462 Combinatorics +1604.01465 Analysis of PDEs +1604.02776 Metric Geometry +1604.03515 Logic in Computer Science +1604.03571 Statistical Mechanics +1604.03900 Operator Algebras +1604.04693 Computer Vision and Pattern Recognition +1604.08332 +1604.08456 Phenomenology +1605.00057 Networking and Internet Architecture +1605.00748 Biomolecules +1605.01865 Mesoscale and Nanoscale Physics +1605.02056 Theory +1605.02504 Analysis of PDEs +1605.03468 Learning +1605.04224 Theory +1605.05337 Cosmology and Nongalactic Astrophysics +1605.06751 Optics +1605.07848 Theory +1606.00070 +1606.00494 Probability +1606.00942 Data Structures and Algorithms +1606.01203 Materials Science +1606.02166 +1606.03339 Mesoscale and Nanoscale Physics +1606.05582 +1606.06004 Functional Analysis +1606.06126 Artificial Intelligence +1606.06461 Computation and Language +1606.06658 Statistics Theory +1606.07128 Atmospheric and Oceanic Physics +1606.07148 Theory +1606.08244 Geometric Topology +1606.08379 Category Theory +1606.09178 Numerical Analysis +1606.09561 Statistical Mechanics +1607.00260 Mesoscale and Nanoscale Physics +1607.00640 Phenomenology +1607.01748 Symplectic Geometry +1607.02752 Analysis of PDEs +1607.02988 Logic in Computer Science +1607.03269 Instrumentation and Methods for Astrophysics +1607.03419 Numerical Analysis +1607.06016 Probability +1607.06782 Physics and Society +1607.07176 Functional Analysis +1607.07240 Spectral Theory +1607.08799 Methodology +1607.08900 Mesoscale and Nanoscale Physics +1608.01941 Materials Science +1608.03227 Geometric Topology +1608.04349 +1608.05096 Quantum Gases +1608.06155 +1608.06455 Mesoscale and Nanoscale Physics +1608.08340 Atmospheric and Oceanic Physics +1609.00986 Analysis of PDEs +1609.01557 Differential Geometry +1609.01704 Learning +1609.02051 Complex Variables +1609.03321 Learning +1609.03802 Superconductivity +1609.03837 Biological Physics +1609.04037 +1609.04547 Combinatorics +1609.04662 +1609.04724 Cosmology and Nongalactic Astrophysics +1609.05670 Information Theory +1609.06191 Theory +1609.06249 +1609.06292 Mesoscale and Nanoscale Physics +1609.07305 Analysis of PDEs +1609.07744 Materials Science +1609.07881 +1609.08320 Neurons and Cognition +1609.08827 Data Structures and Algorithms +1609.09044 Cosmology and Nongalactic Astrophysics +1609.09458 Geophysics +1609.09699 Statistical Mechanics +1609.09740 Algebraic Geometry +1610.01871 Optimization and Control +1610.02155 Lattice +1610.03417 Neurons and Cognition +1610.04472 Classical Analysis and ODEs +1610.04485 Strongly Correlated Electrons +1610.04578 Machine Learning +1610.04680 Geometric Topology +1610.05378 Physics and Society +1610.06187 High Energy Astrophysical Phenomena +1610.06284 Combinatorics +1610.06328 Soft Condensed Matter +1610.06776 Strongly Correlated Electrons +1610.06953 Quantitative Methods +1610.07482 Biological Physics +1610.08401 Computer Vision and Pattern Recognition +1610.08452 Machine Learning +1610.09048 Physics and Society +1610.09168 +1610.09567 Materials Science +1610.09887 Learning +1611.00093 Optimization and Control +1611.00190 Mesoscale and Nanoscale Physics +1611.00733 Astrophysics of Galaxies +1611.01429 Logic in Computer Science +1611.01822 Strongly Correlated Electrons +1611.01955 Number Theory +1611.02096 Phenomenology +1611.02302 Computer Vision and Pattern Recognition +1611.03104 Classical Physics +1611.03554 Cosmology and Nongalactic Astrophysics +1611.03720 Cosmology and Nongalactic Astrophysics +1611.03723 High Energy Astrophysical Phenomena +1611.04657 Atomic Physics +1611.04779 +1611.04813 Phenomenology +1611.05402 Learning +1611.06893 Neurons and Cognition +1611.07089 Superconductivity +1611.07209 +1611.07719 Statistical Mechanics +1611.07881 Plasma Physics +1611.09203 Computer Vision and Pattern Recognition +1611.09879 Phenomenology +1611.09884 Theory +1611.09914 Information Theory +1611.10103 Number Theory +1611.10351 Learning +1612.00579 +1612.00584 Computation and Language +1612.00737 Theory +1612.01901 Physics and Society +1612.01938 +1612.02396 Mesoscale and Nanoscale Physics +1612.02645 Cosmology and Nongalactic Astrophysics +1612.03602 +1612.03881 Strongly Correlated Electrons +1612.05101 Computational Geometry +1612.05328 +1612.05824 Instrumentation and Detectors +1612.06151 Sound +1612.06697 +1612.06747 Applications +1612.07003 Computer Vision and Pattern Recognition +1612.07307 Learning +1612.07711 Number Theory +1612.08027 +1612.08138 Probability +1612.08340 Representation Theory +1612.08368 Populations and Evolution +1612.08999 Chemical Physics +1612.09005 Mesoscale and Nanoscale Physics +1612.09279 Theory +1701.01124 Solar and Stellar Astrophysics +1701.02046 Machine Learning +1701.02063 Earth and Planetary Astrophysics +1701.02501 Plasma Physics +1701.03077 Computer Vision and Pattern Recognition +1701.03531 Plasma Physics +1701.03583 Materials Science +1701.04265 Optimization and Control +1701.04271 Learning +1701.04382 Cosmology and Nongalactic Astrophysics +1701.04449 Theory +1701.06909 Physics and Society +1701.07335 History and Overview +1701.07518 Cryptography and Security +1701.07943 Strongly Correlated Electrons +1701.08087 Commutative Algebra +1701.08092 Computer Vision and Pattern Recognition +1702.00490 Theory +1702.00640 Materials Science +1702.00869 Superconductivity +1702.01003 Combinatorics +1702.01099 Phenomenology +1702.01497 Phenomenology +1702.01795 Artificial Intelligence +1702.02917 Theory +1702.03569 Geometric Topology +1702.03584 Artificial Intelligence +1702.03602 Functional Analysis +1702.04144 Optimization and Control +1702.04351 Astrophysics of Galaxies +1702.04497 +1702.04927 Information Theory +1702.05671 Physics and Society +1702.05684 +1702.06107 Algebraic Geometry +1702.06362 Learning +1702.06394 +1702.06417 Phenomenology +1702.06676 Learning +1702.07340 Theory +1702.08284 +1702.08909 Phenomenology +1703.00087 Computer Vision and Pattern Recognition +1703.00568 History and Overview +1703.00810 Learning +1703.00813 Quantum Gases +1703.00844 +1703.00861 Lattice +1703.00933 Theory +1703.01008 Computation and Language +1703.01045 Phenomenology +1703.01061 +1703.01247 Complex Variables +1703.01573 Logic +1703.01714 Fluid Dynamics +1703.01816 Dynamical Systems +1703.01858 Probability +1703.02061 Phenomenology +1703.02080 Algebraic Geometry +1703.02110 High Energy Astrophysical Phenomena +1703.02239 Artificial Intelligence +1703.02245 Artificial Intelligence +1703.02335 Robotics +1703.02336 Systems and Control +1703.02368 Differential Geometry +1703.02401 Materials Science +1703.02472 Chemical Physics +1703.02564 Neurons and Cognition +1703.02582 Robotics +1703.02628 Machine Learning +1703.02655 Phenomenology +1703.02659 Soft Condensed Matter +1703.02691 Phenomenology +1703.02692 Phenomenology +1703.02781 Combinatorics +1703.02808 Solar and Stellar Astrophysics +1703.02815 Superconductivity +1703.02849 Category Theory +1703.02904 Soft Condensed Matter +1703.02907 Statistics Theory +1703.02919 Functional Analysis +1703.02922 Biological Physics +1703.02967 Dynamical Systems +1703.02968 Human-Computer Interaction +1703.02969 Astrophysics of Galaxies +1703.02970 Astrophysics of Galaxies +1703.02971 Strongly Correlated Electrons +1703.02972 Astrophysics of Galaxies +1703.02973 Strongly Correlated Electrons +1703.02974 Solar and Stellar Astrophysics +1703.02975 Astrophysics of Galaxies +1703.02976 Astrophysics of Galaxies +1703.02979 Statistical Mechanics +1703.02980 Solar and Stellar Astrophysics +1703.02981 Theory +1703.02982 +1703.02983 Astrophysics of Galaxies +1703.02985 Astrophysics of Galaxies +1703.02986 Superconductivity +1703.02987 Theory +1703.02988 Phenomenology +1703.02989 Theory +1703.02990 Theory +1703.02991 Astrophysics of Galaxies +1703.02992 Learning +1703.02993 Statistical Mechanics +1703.02994 Instrumentation and Methods for Astrophysics +1703.02995 Solar and Stellar Astrophysics +1703.02997 Computational Physics +1703.02998 Computation +1703.02999 +1703.03000 +1703.03001 Dynamical Systems +1703.03002 Statistical Mechanics +1703.03003 Phenomenology +1703.03006 Astrophysics of Galaxies +1703.03007 Category Theory +1703.03008 Superconductivity +1703.03009 Strongly Correlated Electrons +1703.03010 Group Theory +1703.03011 Soft Condensed Matter +1703.03012 Superconductivity +1703.03013 High Energy Astrophysical Phenomena +1703.03014 Algebraic Geometry +1703.03015 Plasma Physics +1703.03016 Physics and Society +1703.03017 Software Engineering +1703.03018 Other Condensed Matter +1703.03019 Statistical Mechanics +1703.03021 Computational Complexity +1703.03023 Methodology +1703.03024 Optimization and Control +1703.03025 +1703.03026 Astrophysics of Galaxies +1703.03027 Fluid Dynamics +1703.03028 Information Theory +1703.03029 Solar and Stellar Astrophysics +1703.03030 Neurons and Cognition +1703.03031 Statistics Theory +1703.03032 Fluid Dynamics +1703.03033 Probability +1703.03034 Soft Condensed Matter +1703.03035 Astrophysics of Galaxies +1703.03036 Algebraic Geometry +1703.03037 Materials Science +1703.03038 Learning +1703.03039 High Energy Astrophysical Phenomena +1703.03040 Space Physics +1703.03041 Learning +1703.03042 Theory +1703.03043 Methodology +1703.03044 Learning +1703.03045 Numerical Analysis +1703.03046 Analysis of PDEs +1703.03047 Mesoscale and Nanoscale Physics +1703.03048 Computational Geometry +1703.03049 Algebraic Geometry +1703.03050 Optimization and Control +1703.03051 Astrophysics of Galaxies +1703.03052 Functional Analysis +1703.03053 Earth and Planetary Astrophysics +1703.03054 Computer Vision and Pattern Recognition +1703.03055 Computer Vision and Pattern Recognition +1703.03056 Algebraic Geometry +1703.03057 Algebraic Geometry +1703.03058 +1703.03059 +1703.03061 Probability +1703.03062 Differential Geometry +1703.03063 +1703.03064 Materials Science +1703.03065 Neurons and Cognition +1703.03066 General Topology +1703.03067 Algebraic Geometry +1703.03068 Astrophysics of Galaxies +1703.03069 Optimization and Control +1703.03070 Networking and Internet Architecture +1703.03072 Operator Algebras +1703.03073 Learning +1703.03074 Learning +1703.03075 +1703.03076 Learning +1703.03079 Theory +1703.03080 Combinatorics +1703.03081 Algebraic Geometry +1703.03082 Soft Condensed Matter +1703.03083 Astrophysics of Galaxies +1703.03084 High Energy Astrophysical Phenomena +1703.03085 Earth and Planetary Astrophysics +1703.03086 Dynamical Systems +1703.03087 Fluid Dynamics +1703.03089 Operator Algebras +1703.03090 Spectral Theory +1703.03091 Computation and Language +1703.03092 Number Theory +1703.03093 Physics and Society +1703.03094 Mesoscale and Nanoscale Physics +1703.03095 Methodology +1703.03096 Superconductivity +1703.03097 Computation and Language +1703.03098 Computer Vision and Pattern Recognition +1703.03099 Materials Science +1703.03100 Soft Condensed Matter +1703.03101 Systems and Control +1703.03102 Networking and Internet Architecture +1703.03103 High Energy Astrophysical Phenomena +1703.03104 Quantum Gases +1703.03105 Theory +1703.03106 Materials Science +1703.03108 Computer Vision and Pattern Recognition +1703.03109 Information Theory +1703.03111 Computer Science and Game Theory +1703.03113 Information Theory +1703.03115 Information Theory +1703.03116 Mathematical Software +1703.03117 +1703.03118 Rings and Algebras +1703.03119 Astrophysics of Galaxies +1703.03120 Phenomenology +1703.03121 Learning +1703.03122 Mesoscale and Nanoscale Physics +1703.03123 Methodology +1703.03124 Analysis of PDEs +1703.03125 Analysis of PDEs +1703.03126 Computer Vision and Pattern Recognition +1703.03127 Tissues and Organs +1703.03128 Mesoscale and Nanoscale Physics +1703.03129 Learning +1703.03130 Computation and Language +1703.03131 Information Theory +1703.03132 Neurons and Cognition +1703.03133 Mesoscale and Nanoscale Physics +1703.03134 Optimization and Control +1703.03135 Materials Science +1703.03136 Statistical Mechanics +1703.03138 Instrumentation and Detectors +1703.03140 Algebraic Geometry +1703.03141 Information Theory +1703.03142 Phenomenology +1703.03143 Rings and Algebras +1703.03144 Algebraic Geometry +1703.03145 Mesoscale and Nanoscale Physics +1703.03146 Robotics +1703.03147 Databases +1703.03148 Combinatorics +1703.03149 Computation and Language +1703.03150 Information Theory +1703.03151 Materials Science +1703.03152 +1703.03153 Exactly Solvable and Integrable Systems +1703.03154 Geophysics +1703.03155 Optimization and Control +1703.03156 Human-Computer Interaction +1703.03157 Strongly Correlated Electrons +1703.03158 Combinatorics +1703.03159 Optics +1703.03160 Algebraic Geometry +1703.03161 Robotics +1703.03162 Mesoscale and Nanoscale Physics +1703.03163 Dynamical Systems +1703.03164 Dynamical Systems +1703.03166 Social and Information Networks +1703.03167 Statistics Theory +1703.03168 Mesoscale and Nanoscale Physics +1703.03169 Earth and Planetary Astrophysics +1703.03170 Superconductivity +1703.03171 Materials Science +1703.03173 Functional Analysis +1703.03174 Information Theory +1703.03175 Algebraic Geometry +1703.03176 Materials Science +1703.03177 Probability +1703.03178 Combinatorics +1703.03179 Information Theory +1703.03180 Mesoscale and Nanoscale Physics +1703.03181 Complex Variables +1703.03182 Number Theory +1703.03185 Number Theory +1703.03186 Computer Vision and Pattern Recognition +1703.03187 History and Overview +1703.03188 Mesoscale and Nanoscale Physics +1703.03189 Mesoscale and Nanoscale Physics +1703.03190 Distributed, Parallel, and Cluster Computing +1703.03191 Physics and Society +1703.03192 Plasma Physics +1703.03193 Artificial Intelligence +1703.03194 Phenomenology +1703.03195 Statistical Finance +1703.03196 Computer Vision and Pattern Recognition +1703.03197 Number Theory +1703.03198 Materials Science +1703.03201 Databases +1703.03203 Classical Analysis and ODEs +1703.03204 Astrophysics of Galaxies +1703.03205 Materials Science +1703.03206 Representation Theory +1703.03207 Mesoscale and Nanoscale Physics +1703.03208 Machine Learning +1703.03210 Networking and Internet Architecture +1703.03211 Strongly Correlated Electrons +1703.03212 Materials Science +1703.03213 Methodology +1703.03214 Networking and Internet Architecture +1703.03215 Strongly Correlated Electrons +1703.03216 Machine Learning +1703.03217 Number Theory +1703.03219 Geometric Topology +1703.03220 Digital Libraries +1703.03221 Mesoscale and Nanoscale Physics +1703.03222 Information Theory +1703.03223 High Energy Astrophysical Phenomena +1703.03224 Numerical Analysis +1703.03225 Distributed, Parallel, and Cluster Computing +1703.03226 Mesoscale and Nanoscale Physics +1703.03227 Strongly Correlated Electrons +1703.03229 Category Theory +1703.03231 Algebraic Topology +1703.03232 Classical Analysis and ODEs +1703.03233 Artificial Intelligence +1703.03234 +1703.03235 Information Theory +1703.03236 Strongly Correlated Electrons +1703.03237 Statistics Theory +1703.03238 Probability +1703.03239 Logic in Computer Science +1703.03242 Number Theory +1703.03243 Algebraic Geometry +1703.03244 +1703.03245 Soft Condensed Matter +1703.03246 Functional Analysis +1703.03247 Solar and Stellar Astrophysics +1703.03248 Phenomenology +1703.03249 High Energy Astrophysical Phenomena +1703.03250 Astrophysics of Galaxies +1703.03251 Phenomenology +1703.03252 Solar and Stellar Astrophysics +1703.03253 Superconductivity +1703.03255 Artificial Intelligence +1703.03256 Logic in Computer Science +1703.03257 Plasma Physics +1703.03258 Number Theory +1703.03259 Optics +1703.03260 Plasma Physics +1703.03261 +1703.03262 Computer Science and Game Theory +1703.03263 Differential Geometry +1703.03264 Theory +1703.03265 +1703.03266 Algebraic Topology +1703.03267 Phenomenology +1703.03268 Combinatorics +1703.03269 Strongly Correlated Electrons +1703.03270 Statistical Mechanics +1703.03271 Exactly Solvable and Integrable Systems +1703.03272 Theory +1703.03273 Astrophysics of Galaxies +1703.03274 Adaptation and Self-Organizing Systems +1703.03275 Phenomenology +1703.03276 Group Theory +1703.03277 Optics +1703.03278 Solar and Stellar Astrophysics +1703.03279 Solar and Stellar Astrophysics +1703.03281 Soft Condensed Matter +1703.03283 Atomic Physics +1703.03284 Data Analysis, Statistics and Probability +1703.03285 Fluid Dynamics +1703.03287 Classical Analysis and ODEs +1703.03288 Analysis of PDEs +1703.03289 +1703.03290 Combinatorics +1703.03291 +1703.03292 +1703.03293 Medical Physics +1703.03294 Algebraic Geometry +1703.03298 Classical Physics +1703.03299 Analysis of PDEs +1703.03300 +1703.03301 Popular Physics +1703.03302 Digital Libraries +1703.03303 Information Theory +1703.03304 Data Structures and Algorithms +1703.03305 Computer Vision and Pattern Recognition +1703.03306 Cryptography and Security +1703.03308 Superconductivity +1703.03311 +1703.03312 Methodology +1703.03313 Classical Analysis and ODEs +1703.03314 Classical Analysis and ODEs +1703.03315 Distributed, Parallel, and Cluster Computing +1703.03316 +1703.03317 Mesoscale and Nanoscale Physics +1703.03319 Optimization and Control +1703.03320 Combinatorics +1703.03322 Logic +1703.03323 Analysis of PDEs +1703.03324 Algebraic Geometry +1703.03325 Numerical Analysis +1703.03326 Statistical Mechanics +1703.03327 Materials Science +1703.03328 Experiment +1703.03329 Computer Vision and Pattern Recognition +1703.03330 +1703.03331 K-Theory and Homology +1703.03332 Number Theory +1703.03335 +1703.03336 Classical Analysis and ODEs +1703.03337 Cosmology and Nongalactic Astrophysics +1703.03338 Information Theory +1703.03339 Systems and Control +1703.03340 Applications +1703.03341 Materials Science +1703.03342 Discrete Mathematics +1703.03343 Complex Variables +1703.03344 +1703.03345 +1703.03346 Logic in Computer Science +1703.03347 Robotics +1703.03348 Cosmology and Nongalactic Astrophysics +1703.03349 Robotics +1703.03351 +1703.03352 Computation +1703.03353 Statistics Theory +1703.03354 High Energy Astrophysical Phenomena +1703.03355 Cell Behavior +1703.03356 K-Theory and Homology +1703.03357 Algebraic Geometry +1703.03358 Solar and Stellar Astrophysics +1703.03359 Commutative Algebra +1703.03360 Mesoscale and Nanoscale Physics +1703.03361 Statistical Mechanics +1703.03362 Superconductivity +1703.03363 +1703.03364 +1703.03366 Social and Information Networks +1703.03367 +1703.03368 Number Theory +1703.03369 Numerical Analysis +1703.03370 Systems and Control +1703.03374 Systems and Control +1703.03375 Plasma Physics +1703.03376 Analysis of PDEs +1703.03377 +1703.03378 Cryptography and Security +1703.03379 +1703.03380 Classical Analysis and ODEs +1703.03381 Algebraic Geometry +1703.03382 +1703.03383 Cosmology and Nongalactic Astrophysics +1703.03384 Soft Condensed Matter +1703.03385 Learning +1703.03386 Social and Information Networks +1703.03388 Strongly Correlated Electrons +1703.03389 Discrete Mathematics +1703.03390 Algebraic Geometry +1703.03391 Logic +1703.03393 Geometric Topology +1703.03395 Cosmology and Nongalactic Astrophysics +1703.03398 Molecular Networks +1703.03399 Superconductivity +1703.03400 Learning +1703.03401 Social and Information Networks +0704.3248 Differential Geometry +0709.2441 Differential Geometry +0711.2308 +0805.1331 +0810.4054 Differential Geometry +0910.4461 +0911.2602 Differential Geometry +0911.5014 Fluid Dynamics +1002.0794 Statistical Mechanics +1002.3005 +1011.2220 Phenomenology +1104.0359 Risk Management +1106.4089 Optics +1109.6685 Other Condensed Matter +1111.1907 +1112.5321 +1202.4022 Number Theory +1202.4952 Data Analysis, Statistics and Probability +1205.1830 Data Analysis, Statistics and Probability +1206.5126 Soft Condensed Matter +1206.5911 High Energy Astrophysical Phenomena +1207.7065 +1208.1345 +1211.1287 Algebraic Geometry +1211.5661 Differential Geometry +1303.3362 +1303.4663 General Topology +1303.6740 +1305.2582 +1305.6801 Pattern Formation and Solitons +1305.6804 Pattern Formation and Solitons +1308.2833 Information Theory +1308.4722 Algebraic Geometry +1309.6676 Superconductivity +1310.4402 Differential Geometry +1311.2304 Atomic Physics +1311.5982 Number Theory +1312.7419 +1402.0685 Number Theory +1404.0226 Probability +1406.2601 Combinatorics +1406.7443 Learning +1406.7637 Algebraic Geometry +1407.6461 Statistics Theory +1407.8100 +1407.8180 Astrophysics of Galaxies +1408.1878 +1408.6118 Trading and Market Microstructure +1409.4226 Geometric Topology +1410.1790 Optics +1410.4829 Number Theory +1410.8607 +1411.2021 Data Structures and Algorithms +1411.2213 +1411.6147 Information Theory +1412.0910 Representation Theory +1501.01975 Theory +1501.05629 Number Theory +1502.00636 Theory +1502.01226 Differential Geometry +1502.03560 +1502.04514 Data Structures and Algorithms +1502.04920 Mesoscale and Nanoscale Physics +1502.05089 Differential Geometry +1502.06066 Strongly Correlated Electrons +1502.06120 Theory +1502.06495 Algebraic Geometry +1503.00839 Strongly Correlated Electrons +1503.07172 +1504.04525 Mesoscale and Nanoscale Physics +1504.05307 +1505.02599 Theory +1505.04130 Theory +1505.04234 Methodology +1505.06115 Soft Condensed Matter +1505.06321 +1506.01350 Theory +1506.07672 Theory +1507.01432 Representation Theory +1507.01564 Algebraic Topology +1507.02271 Phenomenology +1507.04335 Strongly Correlated Electrons +1507.05478 Phenomenology +1507.06628 Strongly Correlated Electrons +1507.08314 Solar and Stellar Astrophysics +1508.00319 General Mathematics +1508.01553 Information Theory +1508.02003 Probability +1508.02234 +1508.03770 +1508.06321 Methodology +1509.02978 Commutative Algebra +1509.04039 Statistical Mechanics +1509.04638 Combinatorics +1509.05941 Number Theory +1510.00481 Number Theory +1510.01661 Number Theory +1510.06085 Statistics Theory +1510.06970 Theory +1510.07584 Combinatorics +1510.08258 Combinatorics +1510.08548 Phenomenology +1511.03449 Cosmology and Nongalactic Astrophysics +1511.04234 Fluid Dynamics +1511.04883 Commutative Algebra +1511.05472 Solar and Stellar Astrophysics +1511.06813 Statistics Theory +1511.06899 +1511.07809 Theory +1511.08184 Dynamical Systems +1511.08872 Mesoscale and Nanoscale Physics +1511.09315 Materials Science +1511.09333 Theory +1512.00241 +1512.00643 Optics +1512.00816 Optics +1512.00875 Strongly Correlated Electrons +1512.01794 Phenomenology +1512.03218 +1512.04064 +1512.04786 +1512.07826 Fluid Dynamics +1601.00634 Mesoscale and Nanoscale Physics +1601.01160 Theory +1601.01294 Exactly Solvable and Integrable Systems +1601.02478 Probability +1601.02573 Analysis of PDEs +1601.02622 Instrumentation and Methods for Astrophysics +1601.03103 Materials Science +1601.03409 Theory +1601.03714 Combinatorics +1601.04275 Dynamical Systems +1601.05434 +1601.05679 Theory +1601.05985 Soft Condensed Matter +1601.06806 High Energy Astrophysical Phenomena +1601.06877 +1601.06926 Theory +1601.07151 Statistical Mechanics +1601.07897 Theory +1601.08080 Materials Science +1601.08128 Probability +1601.08206 +1602.00042 Analysis of PDEs +1602.00238 Human-Computer Interaction +1602.00253 +1602.00415 +1602.00592 Analysis of PDEs +1602.00705 Exactly Solvable and Integrable Systems +1602.00897 Probability +1602.00965 Cosmology and Nongalactic Astrophysics +1602.01082 +1602.01308 Accelerator Physics +1602.01462 Instrumentation and Methods for Astrophysics +1602.01577 Information Theory +1602.02158 Theory +1602.02642 Classical Analysis and ODEs +1602.02771 Cosmology and Nongalactic Astrophysics +1602.03431 Exactly Solvable and Integrable Systems +1602.03831 High Energy Astrophysical Phenomena +1602.04890 +1602.04950 Trading and Market Microstructure +1602.05038 Discrete Mathematics +1602.05534 Algebraic Geometry +1602.05640 Optics +1602.05953 Biomolecules +1602.06099 High Energy Astrophysical Phenomena +1602.06306 Cosmology and Nongalactic Astrophysics +1602.06850 Optics +1602.07703 Instrumentation and Methods for Astrophysics +1602.07712 Theory +1602.07754 Machine Learning +1602.07806 Analysis of PDEs +1602.08020 Theory +1602.08150 Multiagent Systems +1602.08291 +1602.08845 Databases +1603.00664 +1603.00767 Atomic Physics +1603.01038 Pattern Formation and Solitons +1603.01105 Theory +1603.01480 +1603.01532 Complex Variables +1603.01709 Probability +1603.01754 Analysis of PDEs +1603.01814 Materials Science +1603.03020 Theory +1603.03147 Superconductivity +1603.03307 +1603.03481 Methodology +1603.03854 Geometric Topology +1603.04040 Superconductivity +1603.04168 Phenomenology +1603.04682 Populations and Evolution +1603.05521 Strongly Correlated Electrons +1603.05686 Phenomenology +1603.05689 +1603.06081 +1603.06157 +1603.06254 Numerical Analysis +1603.06298 Pattern Formation and Solitons +1603.06365 Materials Science +1603.06953 Cosmology and Nongalactic Astrophysics +1603.07107 Atomic Physics +1603.07349 Metric Geometry +1603.07578 Phenomenology +1603.07770 Phenomenology +1603.07856 +1603.08343 Plasma Physics +1603.08572 Optimization and Control +1603.09219 Analysis of PDEs +1603.09444 Atomic Physics +1603.09717 +1604.00139 Materials Science +1604.00143 +1604.00279 +1604.00324 Theory +1604.00328 Materials Science +1604.00757 Optics +1604.00822 +1604.00988 Astrophysics of Galaxies +1604.01082 Statistical Mechanics +1604.01414 Symplectic Geometry +1604.01977 Number Theory +1604.02089 Strongly Correlated Electrons +1604.02666 Fluid Dynamics +1604.02821 Phenomenology +1604.02922 +1604.02976 Quantum Gases +1604.03085 Operator Algebras +1604.03147 Social and Information Networks +1604.03991 +1604.04286 Theory +1604.04303 +1604.04308 Phenomenology +1604.04547 Phenomenology +1604.04560 Fluid Dynamics +1604.04907 Spectral Theory +1604.05035 Phenomenology +1604.05051 Theory +1604.06378 +1604.06473 Astrophysics of Galaxies +1604.06633 Adaptation and Self-Organizing Systems +1604.06799 Astrophysics of Galaxies +1604.06952 Computation and Language +1604.07022 Phenomenology +1604.07090 Computer Vision and Pattern Recognition +1604.07582 Chemical Physics +1604.07590 Materials Science +1604.07824 Astrophysics of Galaxies +1604.07829 Strongly Correlated Electrons +1604.08048 Chaotic Dynamics +1604.08204 High Energy Astrophysical Phenomena +1604.08347 Mesoscale and Nanoscale Physics +1604.08362 Probability +1604.08525 +1604.08906 Mesoscale and Nanoscale Physics +1604.08915 Theory +1605.01061 Theory +1605.01309 Numerical Analysis +1605.01518 Plasma Physics +1605.01520 Instrumentation and Detectors +1605.01778 Artificial Intelligence +1605.01858 Theory +1605.01894 Pattern Formation and Solitons +1605.01901 Social and Information Networks +1605.01949 General Finance +1605.02034 High Energy Astrophysical Phenomena +1605.02118 Disordered Systems and Neural Networks +1605.02165 Analysis of PDEs +1605.02374 Probability +1605.02476 +1605.02715 Dynamical Systems +1605.03013 Strongly Correlated Electrons +1605.03350 +1605.03399 Mesoscale and Nanoscale Physics +1605.03877 Optics +1605.04095 Fluid Dynamics +1605.04234 Dynamical Systems +1605.04658 Atomic Physics +1605.04888 Theory +1605.05158 Strongly Correlated Electrons +1605.05325 Astrophysics of Galaxies +1605.05335 Neurons and Cognition +1605.05423 Phenomenology +1605.05637 Superconductivity +1605.05760 +1605.05819 Probability +1605.05869 Theory +1605.06140 +1605.06307 Strongly Correlated Electrons +1605.06487 Probability +1605.06582 Accelerator Physics +1605.06725 Theory +1605.06746 +1605.06997 Materials Science +1605.07019 Strongly Correlated Electrons +1605.07114 Phenomenology +1605.07200 +1605.07219 Analysis of PDEs +1605.07414 Materials Science +1605.07706 Computational Physics +1605.07768 Theory +1605.07772 +1605.07863 Probability +1605.07964 Experiment +1605.08011 Phenomenology +1605.08038 Phenomenology +1605.08301 Machine Learning +1605.08899 Physics and Society +1605.09094 +1605.09271 Mesoscale and Nanoscale Physics +1605.09347 Statistical Mechanics +1605.09496 Statistical Mechanics +1605.09586 +1605.09647 Phenomenology +1605.09745 Cosmology and Nongalactic Astrophysics +1606.00344 +1606.00423 Theory +1606.00574 Phenomenology +1606.00775 Phenomenology +1606.00970 +1606.01141 Learning +1606.01311 Analysis of PDEs +1606.01320 Astrophysics of Galaxies +1606.01875 Phenomenology +1606.01912 Theory +1606.02004 Dynamical Systems +1606.02207 Phenomenology +1606.02236 Optics +1606.02278 +1606.02287 Instrumentation and Detectors +1606.02337 Information Theory +1606.02605 Symplectic Geometry +1606.03249 Superconductivity +1606.03317 Accelerator Physics +1606.03721 Quantum Gases +1606.03725 Experiment +1606.04263 Materials Science +1606.04384 Chemical Physics +1606.04418 +1606.04494 Dynamical Systems +1606.04934 Learning +1606.04949 Theory +1606.04950 Strongly Correlated Electrons +1606.05259 Optics +1606.05707 Optics +1606.05850 Learning +1606.05874 Mesoscale and Nanoscale Physics +1606.06076 History and Philosophy of Physics +1606.06077 +1606.06148 Phenomenology +1606.06212 Theory +1606.06298 Phenomenology +1606.06550 Statistical Mechanics +1606.06806 Mesoscale and Nanoscale Physics +1606.06983 +1606.07076 Theory +1606.07087 Solar and Stellar Astrophysics +1606.07194 Theory +1606.07263 Combinatorics +1606.07332 Probability +1606.07333 Cosmology and Nongalactic Astrophysics +1606.07393 Instrumentation and Methods for Astrophysics +1606.07428 Numerical Analysis +1606.07471 Atmospheric and Oceanic Physics +1606.07567 Computational Physics +1606.07678 Pattern Formation and Solitons +1606.07742 +1606.08060 Analysis of PDEs +1606.08192 High Energy Astrophysical Phenomena +1606.08393 +1606.08411 Theory +1606.08443 Theory +1606.08444 Theory +1606.08454 Phenomenology +1606.08464 Astrophysics of Galaxies +1606.08506 Statistical Mechanics +1606.08795 +1606.08865 Popular Physics +1606.08908 Applications +1606.08995 Group Theory +1606.09160 Phenomenology +1606.09466 High Energy Astrophysical Phenomena +1606.09505 Quantum Gases +1606.09621 Phenomenology +1607.00008 Cosmology and Nongalactic Astrophysics +1607.00078 Probability +1607.00088 Number Theory +1607.00155 Materials Science +1607.00231 Strongly Correlated Electrons +1607.00391 Theory +1607.00457 +1607.00503 Theory +1607.00726 Theory +1607.00750 Disordered Systems and Neural Networks +1607.00829 Statistical Mechanics +1607.00843 Superconductivity +1607.01078 Medical Physics +1607.01148 Medical Physics +1607.01273 Instrumentation and Detectors +1607.01318 Phenomenology +1607.01370 Cosmology and Nongalactic Astrophysics +1607.01403 Cosmology and Nongalactic Astrophysics +1607.01411 Accelerator Physics +1607.01455 Optics +1607.01484 Social and Information Networks +1607.01786 Phenomenology +1607.01790 Cosmology and Nongalactic Astrophysics +1607.01814 Number Theory +1607.01830 Theory +1607.01842 Cryptography and Security +1607.01863 Phenomenology +1607.02138 Numerical Analysis +1607.02595 Theory +1607.02647 Soft Condensed Matter +1607.02672 Quantum Gases +1607.02830 Theory +1607.03032 Instrumentation and Detectors +1607.03108 Phenomenology +1607.03190 Optics +1607.03337 +1607.03453 Cosmology and Nongalactic Astrophysics +1607.03714 Probability +1607.03888 Mesoscale and Nanoscale Physics +1607.03933 High Energy Astrophysical Phenomena +1607.03992 Superconductivity +1607.04159 Mesoscale and Nanoscale Physics +1607.04161 Phenomenology +1607.04192 +1607.04234 +1607.04288 Phenomenology +1607.04399 Materials Science +1607.04538 Phenomenology +1607.04628 Theory +1607.04650 Atomic Physics +1607.04865 +1607.04878 Cosmology and Nongalactic Astrophysics +1607.04947 +1607.05019 Numerical Analysis +1607.05084 Experiment +1607.05145 +1607.05524 +1607.05582 General Physics +1607.05668 Functional Analysis +1607.05714 +1607.05717 Astrophysics of Galaxies +1607.05856 +1607.05931 Superconductivity +1607.05938 High Energy Astrophysical Phenomena +1607.06181 Quantum Gases +1607.06350 Chemical Physics +1607.06355 Phenomenology +1607.06423 Lattice +1607.06475 Theory +1607.06497 Mesoscale and Nanoscale Physics +1607.06542 Materials Science +1607.06571 Atomic Physics +1607.06574 Atomic Physics +1607.06631 +1607.06636 +1607.06659 Theory +1607.06722 Optics +1607.06812 Phenomenology +1607.07072 Dynamical Systems +1607.07167 Phenomenology +1607.07289 Fluid Dynamics +1607.07425 Statistical Mechanics +1607.07467 Other Condensed Matter +1607.07471 Theory +1607.07513 Quantum Gases +1607.07588 Plasma Physics +1607.07741 Phenomenology +1607.07878 Theory +1607.08061 High Energy Astrophysical Phenomena +1607.08084 Quantum Gases +1607.08125 Metric Geometry +1607.08185 Algebraic Topology +1607.08244 Theory +1607.08473 +1607.08599 Theory +1607.08653 Phenomenology +1608.00014 Phenomenology +1608.00170 Statistical Mechanics +1608.00253 +1608.00338 Atomic Physics +1608.00362 Materials Science +1608.00411 Theory +1608.00475 Disordered Systems and Neural Networks +1608.00526 Phenomenology +1608.00603 Populations and Evolution +1608.00685 +1608.00725 Space Physics +1608.01269 Biological Physics +1608.01300 Theory +1608.01341 +1608.01355 Probability +1608.01450 +1608.01478 Experiment +1608.01509 Phenomenology +1608.01554 General Physics +1608.01572 Statistical Mechanics +1608.01608 +1608.01995 Phenomenology +1608.02036 Theory +1608.02138 Statistical Mechanics +1608.02145 Strongly Correlated Electrons +1608.02226 Mesoscale and Nanoscale Physics +1608.02387 Statistical Mechanics +1608.02397 Statistical Mechanics +1608.02517 Atomic Physics +1608.02525 Astrophysics of Galaxies +1608.02708 Phenomenology +1608.02912 Instrumentation and Detectors +1608.02916 Statistical Mechanics +1608.02990 Statistics Theory +1608.03048 Atomic Physics +1608.03188 Theory +1608.03222 +1608.03254 Phenomenology +1608.03518 +1608.03533 Machine Learning +1608.03702 +1608.03739 Instrumentation and Methods for Astrophysics +1608.03797 Theory +1608.04074 Strongly Correlated Electrons +1608.04098 Neurons and Cognition +1608.04164 Mesoscale and Nanoscale Physics +1608.04208 Theory +1608.04474 Social and Information Networks +1608.04568 Populations and Evolution +1608.04601 Plasma Physics +1608.04710 Quantum Gases +1608.04732 Theory +1608.04920 Phenomenology +1608.05040 Classical Physics +1608.05087 Superconductivity +1608.05090 Theory +1608.05101 Theory +1608.05222 Optics +1608.05293 Phenomenology +1608.05333 Strongly Correlated Electrons +1608.05375 Materials Science +1608.05443 Phenomenology +1608.05496 Phenomenology +1608.05499 Theory +1608.05607 Solar and Stellar Astrophysics +1608.05628 Materials Science +1608.05680 +1608.05724 Statistical Mechanics +1608.06023 Mesoscale and Nanoscale Physics +1608.06042 Mesoscale and Nanoscale Physics +1608.06050 Atomic Physics +1608.06070 +1608.06123 Fluid Dynamics +1608.06206 Dynamical Systems +1608.06285 Mesoscale and Nanoscale Physics +1608.06300 Earth and Planetary Astrophysics +1608.06337 Accelerator Physics +1608.06596 +1608.06760 Experiment +1608.06814 Atomic Physics +1608.06908 Earth and Planetary Astrophysics +1608.06911 Cosmology and Nongalactic Astrophysics +1608.07025 Statistical Mechanics +1608.07081 Chemical Physics +1608.07145 Phenomenology +1608.07327 Physics and Society +1608.07332 Fluid Dynamics +1608.07488 Mesoscale and Nanoscale Physics +1608.07491 Astrophysics of Galaxies +1608.07709 +1608.07772 +1608.07785 Phenomenology +1608.07865 Computational Physics +1608.08010 Exactly Solvable and Integrable Systems +1608.08237 Physics and Society +1608.08276 Quantum Gases +1608.08352 Superconductivity +1608.08378 Superconductivity +1608.08477 Strongly Correlated Electrons +1608.08499 Solar and Stellar Astrophysics +1608.08684 +1608.08715 Populations and Evolution +1608.08730 Computational Physics +1608.08762 Statistical Mechanics +1608.08833 Cosmology and Nongalactic Astrophysics +1608.08977 Theory +1609.00287 Soft Condensed Matter +1609.00316 Statistical Mechanics +1609.00326 Exactly Solvable and Integrable Systems +1609.00414 Superconductivity +1609.00466 +1609.00558 Superconductivity +1609.00685 Mesoscale and Nanoscale Physics +1609.00796 Earth and Planetary Astrophysics +1609.00906 Solar and Stellar Astrophysics +1609.01031 +1609.01080 Analysis of PDEs +1609.01085 Phenomenology +1609.01111 Theory +1609.01250 +1609.01270 Populations and Evolution +1609.01288 Statistical Mechanics +1609.01307 Phenomenology +1609.01489 Adaptation and Self-Organizing Systems +1609.01608 Mesoscale and Nanoscale Physics +1609.01637 Soft Condensed Matter +1609.01714 Cosmology and Nongalactic Astrophysics +1609.01728 Cosmology and Nongalactic Astrophysics +1609.01929 Dynamical Systems +1609.01936 Astrophysics of Galaxies +1609.01968 +1609.02088 Theory +1609.02142 Astrophysics of Galaxies +1609.02144 Instrumentation and Methods for Astrophysics +1609.02154 Theory +1609.02169 +1609.02217 Mesoscale and Nanoscale Physics +1609.02225 +1609.02299 Optics +1609.02341 +1609.02518 Astrophysics of Galaxies +1609.02778 Phenomenology +1609.02820 +1609.02824 +1609.02912 Theory +1609.02941 High Energy Astrophysical Phenomena +1609.03141 +1609.03167 Statistics Theory +1609.03244 Analysis of PDEs +1609.03271 Astrophysics of Galaxies +1609.03293 Theory +1609.03315 Theory +1609.03351 Phenomenology +1609.03546 Phenomenology +1609.03569 Cosmology and Nongalactic Astrophysics +1609.03787 Plasma Physics +1609.03804 +1609.03836 Information Theory +1609.03864 Phenomenology +1609.03910 Phenomenology +1609.03991 Theory +1609.03994 +1609.04012 Theory +1609.04025 Theory +1609.04310 Adaptation and Self-Organizing Systems +1609.04394 Astrophysics of Galaxies +1609.04415 Instrumentation and Detectors +1609.04679 Quantum Gases +1609.05039 Theory +1609.05071 Theory +1609.05241 Superconductivity +1609.05286 Trading and Market Microstructure +1609.05465 Optics +1609.05654 Phenomenology +1609.05669 Instrumentation and Detectors +1609.05707 Solar and Stellar Astrophysics +1609.05852 Mesoscale and Nanoscale Physics +1609.05895 Quantum Gases +1609.05904 Theory +1609.06006 Adaptation and Self-Organizing Systems +1609.06020 Medical Physics +1609.06041 Medical Physics +1609.06103 Phenomenology +1609.06104 Phenomenology +1609.06202 Instrumentation and Detectors +1609.06203 Theory +1609.06218 +1609.06304 Astrophysics of Galaxies +1609.06419 Mesoscale and Nanoscale Physics +1609.06614 Statistical Mechanics +1609.06624 Cosmology and Nongalactic Astrophysics +1609.06638 Information Theory +1609.06685 Phenomenology +1609.06727 Astrophysics of Galaxies +1609.06740 Number Theory +1609.06761 +1609.06977 Phenomenology +1609.07078 Theory +1609.07120 Cosmology and Nongalactic Astrophysics +1609.07149 Phenomenology +1609.07172 Solar and Stellar Astrophysics +1609.07338 +1609.07469 Strongly Correlated Electrons +1609.07483 Phenomenology +1609.07655 Atomic Physics +1609.07700 Strongly Correlated Electrons +1609.07842 Fluid Dynamics +1609.07869 Materials Science +1609.08020 Mesoscale and Nanoscale Physics +1609.08218 Optics +1609.08259 Chemical Physics +1609.08284 Materials Science +1609.08307 Materials Science +1609.08314 +1609.08624 Cosmology and Nongalactic Astrophysics +1609.08698 +1609.08805 Strongly Correlated Electrons +1609.08829 Mesoscale and Nanoscale Physics +1609.09024 Statistical Mechanics +1609.09257 Mesoscale and Nanoscale Physics +1609.09303 Phenomenology +1609.09312 Mesoscale and Nanoscale Physics +1609.09405 Computation and Language +1609.09435 Social and Information Networks +1609.09477 Lattice +1609.09554 Adaptation and Self-Organizing Systems +1609.09632 Quantum Gases +1609.09769 Chemical Physics +1609.09863 Theory +1610.00170 Atomic Physics +1610.00315 Data Analysis, Statistics and Probability +1610.00364 Phenomenology +1610.00393 Lattice +1610.00432 +1610.00509 +1610.00648 Phenomenology +1610.00779 Phenomenology +1610.00968 Theory +1610.01097 Superconductivity +1610.01176 Astrophysics of Galaxies +1610.01269 Computational Physics +1610.01321 Solar and Stellar Astrophysics +1610.01322 Materials Science +1610.01445 Optics +1610.01460 Solar and Stellar Astrophysics +1610.01584 High Energy Astrophysical Phenomena +1610.01601 Phenomenology +1610.01606 Earth and Planetary Astrophysics +1610.01665 Cosmology and Nongalactic Astrophysics +1610.01701 Astrophysics of Galaxies +1610.01726 Materials Science +1610.01788 Astrophysics of Galaxies +1610.01887 Instrumentation and Detectors +1610.01899 Cosmology and Nongalactic Astrophysics +1610.01918 Solar and Stellar Astrophysics +1610.01977 Earth and Planetary Astrophysics +1610.02052 Theory +1610.02093 Accelerator Physics +1610.02125 Optimization and Control +1610.02189 Phenomenology +1610.02248 Solar and Stellar Astrophysics +1610.02261 Theory +1610.02282 Populations and Evolution +1610.02316 Optics +1610.02403 Theory +1610.02450 Materials Science +1610.02533 +1610.02604 Chemical Physics +1610.02699 Materials Science +1610.02956 Cosmology and Nongalactic Astrophysics +1610.02983 Phenomenology +1610.03311 High Energy Astrophysical Phenomena +1610.03460 Earth and Planetary Astrophysics +1610.03490 Astrophysics of Galaxies +1610.03491 Theory +1610.03546 Theory +1610.03635 Mesoscale and Nanoscale Physics +1610.03655 +1610.03663 Theory +1610.03711 Phenomenology +1610.03797 Mesoscale and Nanoscale Physics +1610.03822 Phenomenology +1610.03872 Solar and Stellar Astrophysics +1610.03982 Strongly Correlated Electrons +1610.04036 Mesoscale and Nanoscale Physics +1610.04063 +1610.04243 Chemical Physics +1610.04453 Theory +1610.04519 +1610.04645 Classical Physics +1610.04704 Instrumentation and Methods for Astrophysics +1610.04710 Representation Theory +1610.04748 Phenomenology +1610.04763 Accelerator Physics +1610.04769 Numerical Analysis +1610.04803 +1610.04812 Solar and Stellar Astrophysics +1610.04961 Mesoscale and Nanoscale Physics +1610.05001 Materials Science +1610.05003 Strongly Correlated Electrons +1610.05008 Solar and Stellar Astrophysics +1610.05084 Biological Physics +1610.05126 Statistical Mechanics +1610.05311 Theory +1610.05324 Astrophysics of Galaxies +1610.05396 Astrophysics of Galaxies +1610.05548 Astrophysics of Galaxies +1610.05549 Theory +1610.05641 Solar and Stellar Astrophysics +1610.05659 Theory +1610.05716 Neural and Evolutionary Computing +1610.05778 Strongly Correlated Electrons +1610.05846 Superconductivity +1610.05878 Theory +1610.05887 Statistical Mechanics +1610.05906 Solar and Stellar Astrophysics +1610.05923 Solar and Stellar Astrophysics +1610.06081 +1610.06141 +1610.06181 Theory +1610.06568 Strongly Correlated Electrons +1610.06583 Cosmology and Nongalactic Astrophysics +1610.06594 +1610.06676 Phenomenology +1610.06693 Theory +1610.06696 Group Theory +1610.06717 Theory +1610.06780 Mesoscale and Nanoscale Physics +1610.06842 Phenomenology +1610.06905 Solar and Stellar Astrophysics +1610.06957 Instrumentation and Detectors +1610.06962 +1610.07107 +1610.07134 Theory +1610.07180 Soft Condensed Matter +1610.07202 Earth and Planetary Astrophysics +1610.07228 Quantum Gases +1610.07254 Combinatorics +1610.07340 Materials Science +1610.07443 Optics +1610.07477 Phenomenology +1610.07533 High Energy Astrophysical Phenomena +1610.07580 +1610.07623 Phenomenology +1610.07632 Earth and Planetary Astrophysics +1610.07640 Theory +1610.07653 High Energy Astrophysical Phenomena +1610.07711 Quantum Gases +1610.07897 Phenomenology +1610.07970 Plasma Physics +1610.07975 Theory +1610.08051 +1610.08063 Theory +1610.08071 Solar and Stellar Astrophysics +1610.08083 Phenomenology +1610.08104 Statistical Mechanics +1610.08212 Theory +1610.08259 Strongly Correlated Electrons +1610.08388 Statistical Mechanics +1610.08472 Theory +1610.08508 Superconductivity +1610.08603 Phenomenology +1610.08690 History and Philosophy of Physics +1610.08698 Earth and Planetary Astrophysics +1610.08724 Fluid Dynamics +1610.08742 Accelerator Physics +1610.08800 Theory +1610.08857 Soft Condensed Matter +1610.08889 Instrumentation and Detectors +1610.08907 Phenomenology +1610.09192 Mesoscale and Nanoscale Physics +1610.09376 High Energy Astrophysical Phenomena +1610.09631 Symplectic Geometry +1610.09681 Theory +1610.09755 Strongly Correlated Electrons +1610.09870 Number Theory +1610.09969 Mesoscale and Nanoscale Physics +1611.00002 Astrophysics of Galaxies +1611.00112 Theory +1611.00222 Astrophysics of Galaxies +1611.00232 +1611.00361 Theory +1611.00397 Earth and Planetary Astrophysics +1611.00564 Materials Science +1611.00761 Astrophysics of Galaxies +1611.00784 Phenomenology +1611.00804 Phenomenology +1611.00810 +1611.00955 Plasma Physics +1611.00986 Strongly Correlated Electrons +1611.01040 +1611.01105 +1611.01131 Theory +1611.01145 Quantum Gases +1611.01206 Instrumentation and Detectors +1611.01490 Theory +1611.01750 Cosmology and Nongalactic Astrophysics +1611.01791 Solar and Stellar Astrophysics +1611.01893 Theory +1611.01978 Computational Physics +1611.02032 Superconductivity +1611.02163 Learning +1611.02172 Theory +1611.02180 Optics +1611.02283 Quantum Gases +1611.02477 +1611.02479 Chaotic Dynamics +1611.02524 +1611.02632 Astrophysics of Galaxies +1611.02753 Pattern Formation and Solitons +1611.02859 Strongly Correlated Electrons +1611.02973 Theory +1611.02995 High Energy Astrophysical Phenomena +1611.03098 Theory +1611.03111 Theory +1611.03180 Instrumentation and Detectors +1611.03201 Phenomenology +1611.03311 Fluid Dynamics +1611.03316 Phenomenology +1611.03375 Phenomenology +1611.03430 Quantum Gases +1611.03490 Theory +1611.03494 Solar and Stellar Astrophysics +1611.03495 Solar and Stellar Astrophysics +1611.03504 Strongly Correlated Electrons +1611.03517 Strongly Correlated Electrons +1611.03783 Astrophysics of Galaxies +1611.03849 +1611.03897 Soft Condensed Matter +1611.04143 +1611.04162 Theory +1611.04223 Adaptation and Self-Organizing Systems +1611.04258 Atomic Physics +1611.04260 Experiment +1611.04275 Phenomenology +1611.04281 Disordered Systems and Neural Networks +1611.04377 Materials Science +1611.04390 Superconductivity +1611.04508 Atomic Physics +1611.04590 Astrophysics of Galaxies +1611.04702 Optimization and Control +1611.04900 Mesoscale and Nanoscale Physics +1611.05106 Solar and Stellar Astrophysics +1611.05226 Theory +1611.05281 General Physics +1611.05283 Instrumentation and Detectors +1611.05338 Phenomenology +1611.05358 Computer Vision and Pattern Recognition +1611.05409 Solar and Stellar Astrophysics +1611.05445 Phenomenology +1611.05538 Plasma Physics +1611.05682 Pattern Formation and Solitons +1611.05704 Number Theory +1611.05766 +1611.05939 Computer Vision and Pattern Recognition +1611.05942 Classical Physics +1611.05964 Computer Vision and Pattern Recognition +1611.06089 Phenomenology +1611.06101 Computer Science and Game Theory +1611.06192 +1611.06311 High Energy Astrophysical Phenomena +1611.06340 Theory +1611.06481 High Energy Astrophysical Phenomena +1611.06508 Astrophysics of Galaxies +1611.06523 Phenomenology +1611.06702 Astrophysics of Galaxies +1611.06761 Statistical Mechanics +1611.06803 Other Condensed Matter +1611.06835 Strongly Correlated Electrons +1611.06920 Strongly Correlated Electrons +1611.07027 Mesoscale and Nanoscale Physics +1611.07064 Solar and Stellar Astrophysics +1611.07290 Chemical Physics +1611.07387 Phenomenology +1611.07405 Mesoscale and Nanoscale Physics +1611.07524 Astrophysics of Galaxies +1611.07582 Phenomenology +1611.07681 Quantum Gases +1611.07683 Strongly Correlated Electrons +1611.07729 Instrumentation and Detectors +1611.07868 Astrophysics of Galaxies +1611.07901 Solar and Stellar Astrophysics +1611.07902 Plasma Physics +1611.07903 Mesoscale and Nanoscale Physics +1611.07913 Strongly Correlated Electrons +1611.07942 Phenomenology +1611.07959 +1611.07979 Astrophysics of Galaxies +1611.08132 Statistical Mechanics +1611.08189 Solar and Stellar Astrophysics +1611.08360 Other Condensed Matter +1611.08361 Quantum Gases +1611.08433 +1611.08668 Atomic Physics +1611.08732 Algebraic Geometry +1611.09167 Geophysics +1611.09236 Earth and Planetary Astrophysics +1611.09765 Number Theory +1611.09770 Soft Condensed Matter +1611.09785 Phenomenology +1611.09992 Theory +1611.10086 Optics +1611.10100 Phenomenology +1611.10139 Phenomenology +1611.10324 Probability +1611.10329 Phenomenology +1611.10353 Instrumentation and Detectors +1611.10354 +1612.00153 Superconductivity +1612.00161 Probability +1612.00228 Earth and Planetary Astrophysics +1612.00273 Astrophysics of Galaxies +1612.00314 Materials Science +1612.00342 Earth and Planetary Astrophysics +1612.00376 Soft Condensed Matter +1612.00433 Theory +1612.00438 Phenomenology +1612.00638 Instrumentation and Detectors +1612.00900 +1612.00948 Astrophysics of Galaxies +1612.01109 Representation Theory +1612.01305 Instrumentation and Methods for Astrophysics +1612.01306 Theory +1612.01317 Solar and Stellar Astrophysics +1612.01331 Solar and Stellar Astrophysics +1612.01390 +1612.01467 +1612.01579 Earth and Planetary Astrophysics +1612.01604 +1612.01662 Geophysics +1612.01935 High Energy Astrophysical Phenomena +1612.02000 Astrophysics of Galaxies +1612.02011 High Energy Astrophysical Phenomena +1612.02013 Statistical Mechanics +1612.02019 Solar and Stellar Astrophysics +1612.02021 Theory +1612.02042 +1612.02046 Instrumentation and Detectors +1612.02118 +1612.02224 Solar and Stellar Astrophysics +1612.02260 Instrumentation and Methods for Astrophysics +1612.02274 Fluid Dynamics +1612.02411 High Energy Astrophysical Phenomena +1612.02428 Astrophysics of Galaxies +1612.02657 Economics +1612.02768 Astrophysics of Galaxies +1612.02787 Astrophysics of Galaxies +1612.02856 Solar and Stellar Astrophysics +1612.02922 Astrophysics of Galaxies +1612.03072 Astrophysics of Galaxies +1612.03075 +1612.03178 Astrophysics of Galaxies +1612.03313 Soft Condensed Matter +1612.03440 Solar and Stellar Astrophysics +1612.03756 Classical Analysis and ODEs +1612.03778 General Physics +1612.03821 Astrophysics of Galaxies +1612.03822 +1612.03907 Solar and Stellar Astrophysics +1612.03941 Astrophysics of Galaxies +1612.03943 High Energy Astrophysical Phenomena +1612.04000 Astrophysics of Galaxies +1612.04017 Astrophysics of Galaxies +1612.04089 Strongly Correlated Electrons +1612.04166 Earth and Planetary Astrophysics +1612.04215 Statistical Mechanics +1612.04332 Earth and Planetary Astrophysics +1612.04372 Earth and Planetary Astrophysics +1612.04412 High Energy Astrophysical Phenomena +1612.04442 Theory +1612.04650 Solar and Stellar Astrophysics +1612.04669 +1612.04715 Fluid Dynamics +1612.04729 Solar and Stellar Astrophysics +1612.04751 Solar and Stellar Astrophysics +1612.04765 Computation and Language +1612.04816 Astrophysics of Galaxies +1612.04821 Earth and Planetary Astrophysics +1612.04830 High Energy Astrophysical Phenomena +1612.05037 Materials Science +1612.05295 Information Theory +1612.05394 Strongly Correlated Electrons +1612.05452 Instrumentation and Methods for Astrophysics +1612.05491 Cryptography and Security +1612.05563 Theory +1612.05598 Earth and Planetary Astrophysics +1612.05636 Cosmology and Nongalactic Astrophysics +1612.05651 High Energy Astrophysical Phenomena +1612.05666 High Energy Astrophysical Phenomena +1612.05699 High Energy Astrophysical Phenomena +1612.05711 Solar and Stellar Astrophysics +1612.05718 Earth and Planetary Astrophysics +1612.05738 Quantum Gases +1612.05799 +1612.05889 Statistical Mechanics +1612.05896 Theory +1612.05945 Earth and Planetary Astrophysics +1612.05971 Systems and Control +1612.06080 Solar and Stellar Astrophysics +1612.06082 Astrophysics of Galaxies +1612.06207 +1612.06417 +1612.06481 High Energy Astrophysical Phenomena +1612.06527 +1612.06568 Mesoscale and Nanoscale Physics +1612.06632 Solar and Stellar Astrophysics +1612.06920 Earth and Planetary Astrophysics +1612.07057 Phenomenology +1612.07131 Earth and Planetary Astrophysics +1612.07137 +1612.07397 Materials Science +1612.07755 Soft Condensed Matter +1612.07776 Probability +1612.07825 +1612.07929 Neurons and Cognition +1612.08025 Strongly Correlated Electrons +1612.08069 Information Theory +1612.08318 Algebraic Geometry +1612.08557 Chaotic Dynamics +1612.08563 +1612.08797 Other Condensed Matter +1612.08830 Superconductivity +1612.08873 Solar and Stellar Astrophysics +1612.08961 Algebraic Geometry +1612.09116 Algebraic Geometry +1612.09354 Soft Condensed Matter +1612.09458 Astrophysics of Galaxies +1701.00086 High Energy Astrophysical Phenomena +1701.00250 Solar and Stellar Astrophysics +1701.00327 Phenomenology +1701.00454 General Physics +1701.00535 +1701.00648 Neurons and Cognition +1701.00680 Solar and Stellar Astrophysics +1701.00744 +1701.00780 +1701.01220 Plasma Physics +1701.01251 Earth and Planetary Astrophysics +1701.01465 Strongly Correlated Electrons +1701.01681 Plasma Physics +1701.01750 +1701.01809 +1701.02082 +1701.02116 Statistical Mechanics +1701.02175 Phenomenology +1701.02283 Statistical Mechanics +1701.02407 Solar and Stellar Astrophysics +1701.02464 Astrophysics of Galaxies +1701.02506 Solar and Stellar Astrophysics +1701.02531 Solar and Stellar Astrophysics +1701.02549 +1701.02597 Probability +1701.02650 Computational Physics +1701.02746 High Energy Astrophysical Phenomena +1701.02832 Strongly Correlated Electrons +1701.02894 Solar and Stellar Astrophysics +1701.03104 Solar and Stellar Astrophysics +1701.03260 Astrophysics of Galaxies +1701.03262 Instrumentation and Detectors +1701.03406 Instrumentation and Detectors +1701.03609 Solar and Stellar Astrophysics +1701.03716 Computer Science and Game Theory +1701.03748 Materials Science +1701.03809 Solar and Stellar Astrophysics +1701.04217 Distributed, Parallel, and Cluster Computing +1701.04243 Astrophysics of Galaxies +1701.04414 Astrophysics of Galaxies +1701.04429 Cosmology and Nongalactic Astrophysics +1701.04539 Strongly Correlated Electrons +1701.04580 Astrophysics of Galaxies +1701.04711 Materials Science +1701.04997 Astrophysics of Galaxies +1701.05047 Algebraic Geometry +1701.05110 +1701.05197 Astrophysics of Galaxies +1701.05221 Computer Vision and Pattern Recognition +1701.05370 Solar and Stellar Astrophysics +1701.05612 Astrophysics of Galaxies +1701.05698 Astrophysics of Galaxies +1701.05722 Astrophysics of Galaxies +1701.05856 Astrophysics of Galaxies +1701.05878 Statistical Mechanics +1701.05912 Solar and Stellar Astrophysics +1701.05925 Astrophysics of Galaxies +1701.05933 Astrophysics of Galaxies +1701.05939 Astrophysics of Galaxies +1701.05962 Astrophysics of Galaxies +1701.05998 +1701.06024 Combinatorics +1701.06066 Astrophysics of Galaxies +1701.06260 Optimization and Control +1701.06340 Theory +1701.06363 High Energy Astrophysical Phenomena +1701.06482 Computers and Society +1701.06587 +1701.06622 Astrophysics of Galaxies +1701.06704 High Energy Astrophysical Phenomena +1701.06714 Atomic Physics +1701.06719 +1701.06843 Experiment +1701.06887 Statistical Mechanics +1701.06915 Astrophysics of Galaxies +1701.07036 Astrophysics of Galaxies +1701.07134 Phenomenology +1701.07161 Popular Physics +1701.07182 Lattice +1701.07271 Solar and Stellar Astrophysics +1701.07332 Disordered Systems and Neural Networks +1701.07469 Numerical Analysis +1701.07550 Robotics +1701.07595 Materials Science +1701.07609 Mesoscale and Nanoscale Physics +1701.07621 Other Condensed Matter +1701.07847 Neurons and Cognition +1701.07908 Information Theory +1701.07909 Atomic Physics +1701.08001 Soft Condensed Matter +1701.08013 Soft Condensed Matter +1701.08114 Programming Languages +1701.08122 Programming Languages +1701.08124 Programming Languages +1701.08275 Mesoscale and Nanoscale Physics +1701.08277 Mesoscale and Nanoscale Physics +1701.08278 +1701.08302 Artificial Intelligence +1701.08324 Lattice +1701.08463 High Energy Astrophysical Phenomena +1701.08494 +1701.08565 Disordered Systems and Neural Networks +1701.08572 Materials Science +1701.08573 +1701.08578 Dynamical Systems +1701.08649 Optimization and Control +1701.08657 +1701.08682 Formal Languages and Automata Theory +1701.08707 Materials Science +1701.08731 Information Theory +1701.08757 Learning +1701.08758 +1701.08759 +1701.08760 Classical Physics +1701.08761 Robotics +1701.08762 Chaotic Dynamics +1701.08764 Solar and Stellar Astrophysics +1701.08765 Theory +1701.08767 Phenomenology +1701.08769 Astrophysics of Galaxies +1701.08770 +1701.08771 Solar and Stellar Astrophysics +1701.08774 Phenomenology +1701.08775 +1701.08776 Theory +1701.08777 +1701.08778 Phenomenology +1701.08779 Astrophysics of Galaxies +1701.08780 Phenomenology +1701.08781 Astrophysics of Galaxies +1701.08783 Information Theory +1701.08784 Phenomenology +1701.08785 Information Theory +1701.08786 Computers and Society +1701.08787 Social and Information Networks +1701.08788 Number Theory +1701.08789 Machine Learning +1701.08791 Information Theory +1701.08792 High Energy Astrophysical Phenomena +1701.08794 Functional Analysis +1701.08796 Learning +1701.08797 Space Physics +1701.08798 Superconductivity +1701.08799 Social and Information Networks +1701.08800 Distributed, Parallel, and Cluster Computing +1701.08801 Soft Condensed Matter +1701.08802 Astrophysics of Galaxies +1701.08803 Instrumentation and Methods for Astrophysics +1701.08804 High Energy Astrophysical Phenomena +1701.08805 Algebraic Geometry +1701.08806 Astrophysics of Galaxies +1701.08807 Instrumentation and Methods for Astrophysics +1701.08808 Analysis of PDEs +1701.08809 Data Structures and Algorithms +1701.08814 Solar and Stellar Astrophysics +1701.08815 History and Overview +1701.08817 Analysis of PDEs +1701.08819 +1701.08820 Astrophysics of Galaxies +1701.08822 Number Theory +1701.08826 Representation Theory +1701.08827 Instrumentation and Methods for Astrophysics +1701.08828 Strongly Correlated Electrons +1701.08829 Differential Geometry +1701.08830 Algebraic Geometry +1701.08831 Analysis of PDEs +1701.08832 Artificial Intelligence +1701.08833 Metric Geometry +1701.08835 Computer Vision and Pattern Recognition +1701.08836 Information Theory +1701.08838 Algebraic Geometry +1701.08839 Mesoscale and Nanoscale Physics +1701.08840 Learning +1701.08841 Classical Physics +1701.08842 Social and Information Networks +1701.08843 Mesoscale and Nanoscale Physics +1701.08844 Statistical Mechanics +1701.08845 Classical Physics +1701.08846 Mesoscale and Nanoscale Physics +1701.08847 Mesoscale and Nanoscale Physics +1701.08849 Hardware Architecture +1701.08850 Pattern Formation and Solitons +1701.08851 Statistical Mechanics +1701.08852 Algebraic Geometry +1701.08853 Group Theory +1701.08854 Medical Physics +1701.08855 Numerical Analysis +1701.08856 Theory +1701.08857 Combinatorics +1701.08860 Superconductivity +1701.08861 Optimization and Control +1701.08862 Methodology +1701.08863 High Energy Astrophysical Phenomena +1701.08864 Materials Science +1701.08865 Numerical Analysis +1701.08866 Strongly Correlated Electrons +1701.08867 Optics +1701.08868 Artificial Intelligence +1701.08869 Computer Vision and Pattern Recognition +1701.08872 Mesoscale and Nanoscale Physics +1701.08874 Plasma Physics +1701.08875 Mesoscale and Nanoscale Physics +1701.08876 Solar and Stellar Astrophysics +1701.08878 Robotics +1701.08879 Human-Computer Interaction +1701.08880 Solar and Stellar Astrophysics +1701.08883 Information Theory +1701.08885 Solar and Stellar Astrophysics +1701.08886 Learning +1701.08888 Information Retrieval +1701.08889 Phenomenology +1701.08890 Optimization and Control +1701.08891 Information Theory +1701.08892 Differential Geometry +1701.08894 Solar and Stellar Astrophysics +1701.08895 Statistics Theory +1701.08896 Computer Science and Game Theory +1701.08897 Data Structures and Algorithms +1701.08898 Solar and Stellar Astrophysics +1701.08899 Algebraic Geometry +1701.08901 Geometric Topology +1701.08902 Algebraic Geometry +1701.08903 Differential Geometry +1701.08906 Information Theory +1701.08907 +1701.08908 Classical Physics +1701.08909 Mesoscale and Nanoscale Physics +1701.08910 Optimization and Control +1701.08911 Instrumentation and Detectors +1701.08914 Theory +1701.08915 Systems and Control +1701.08916 Machine Learning +1701.08917 Probability +1701.08918 Computer Vision and Pattern Recognition +1701.08920 Optimization and Control +1701.08921 Robotics +1701.08922 Operator Algebras +1701.08923 Social and Information Networks +1701.08924 Databases +1701.08925 Information Theory +1701.08926 Analysis of PDEs +1701.08927 Information Theory +1701.08928 Combinatorics +1701.08929 Analysis of PDEs +1701.08930 +1701.08931 Computer Vision and Pattern Recognition +1701.08933 Theory +1701.08934 Computational Physics +1701.08936 Computer Vision and Pattern Recognition +1701.08938 Phenomenology +1701.08939 Learning +1701.08940 Number Theory +1701.08941 Phenomenology +1701.08943 Optimization and Control +1701.08945 Optics +1701.08946 Machine Learning +1701.08947 Numerical Analysis +1701.08948 Differential Geometry +1701.08949 Rings and Algebras +1701.08951 Neural and Evolutionary Computing +1701.08952 Optimization and Control +1701.08953 Earth and Planetary Astrophysics +1701.08955 Algebraic Geometry +1701.08956 Metric Geometry +1701.08958 Optics +1701.08959 Lattice +1701.08961 Lattice +1701.08962 Classical Analysis and ODEs +1701.08964 Mesoscale and Nanoscale Physics +1701.08965 +1701.08966 Fluid Dynamics +1701.08967 +1701.08968 Computer Vision and Pattern Recognition +1701.08971 Instrumentation and Detectors +1701.08972 Trading and Market Microstructure +1701.08973 Numerical Analysis +1701.08974 Computer Vision and Pattern Recognition +1701.08975 Data Analysis, Statistics and Probability +1701.08976 Networking and Internet Architecture +1701.08977 Cosmology and Nongalactic Astrophysics +1701.08979 Classical Analysis and ODEs +1701.08980 +1701.08982 Combinatorics +1701.08984 +1701.08985 Computer Vision and Pattern Recognition +1701.08986 +1701.08990 Earth and Planetary Astrophysics +1701.08992 Lattice +1701.08993 Materials Science +1701.08994 Methodology +1701.08995 Populations and Evolution +1701.08996 Fluid Dynamics +1701.08997 Phenomenology +1701.08998 Materials Science +1701.08999 Dynamical Systems +1701.09000 Artificial Intelligence +1701.09001 Biological Physics +1701.09002 Molecular Networks +1701.09004 +1701.09005 Lattice +1701.09006 Phenomenology +1701.09007 Databases +1701.09009 Mesoscale and Nanoscale Physics +1701.09010 Networking and Internet Architecture +1701.09011 Networking and Internet Architecture +1701.09012 Astrophysics of Galaxies +1701.09013 Materials Science +1701.09014 Instrumentation and Methods for Astrophysics +1701.09015 Symplectic Geometry +1701.09016 Cosmology and Nongalactic Astrophysics +1701.09017 Representation Theory +1701.09018 Cosmology and Nongalactic Astrophysics +1701.09019 Geometric Topology +1701.09020 Cosmology and Nongalactic Astrophysics +1701.09022 Optics +1701.09023 Mesoscale and Nanoscale Physics +1701.09024 Mesoscale and Nanoscale Physics +1701.09025 Methodology +1701.09027 Earth and Planetary Astrophysics +1701.09028 Molecular Networks +1701.09029 Disordered Systems and Neural Networks +1701.09030 Statistical Mechanics +1701.09031 Numerical Analysis +1701.09032 Soft Condensed Matter +1701.09033 Optimization and Control +1701.09036 Classical Analysis and ODEs +1701.09037 Computer Vision and Pattern Recognition +1701.09038 Mesoscale and Nanoscale Physics +1701.09039 Social and Information Networks +1701.09040 Information Theory +1701.09041 Cosmology and Nongalactic Astrophysics +1701.09042 Databases +1701.09045 Databases +1701.09046 Optimization and Control +1701.09047 Cosmology and Nongalactic Astrophysics +1701.09048 Solar and Stellar Astrophysics +1701.09050 +1701.09051 Number Theory +1701.09052 Soft Condensed Matter +1701.09053 Cosmology and Nongalactic Astrophysics +1701.09054 Rings and Algebras +1701.09055 Machine Learning +1701.09056 Analysis of PDEs +1701.09057 Information Theory +1701.09058 Statistical Mechanics +1701.09061 +1701.09062 Astrophysics of Galaxies +1701.09066 Soft Condensed Matter +1701.09067 Cosmology and Nongalactic Astrophysics +1701.09068 Combinatorics +1701.09069 Algebraic Geometry +1701.09071 Probability +1701.09072 Cosmology and Nongalactic Astrophysics +1701.09073 Algebraic Geometry +1701.09074 Representation Theory +1701.09075 Atomic Physics +1701.09076 Systems and Control +1701.09077 Materials Science +1701.09078 Other Condensed Matter +1701.09079 Computational Engineering, Finance, and Science +1701.09080 Algebraic Geometry +1701.09081 Materials Science +1701.09082 Solar and Stellar Astrophysics +1701.09083 Learning +1701.09084 Systems and Control +1701.09085 Algebraic Geometry +1701.09087 Classical Analysis and ODEs +1701.09088 Cosmology and Nongalactic Astrophysics +1701.09089 Materials Science +1701.09090 Chemical Physics +1701.09092 Experiment +1701.09093 Complex Variables +1701.09094 Systems and Control +1701.09095 Biological Physics +1701.09096 Differential Geometry +1701.09097 Molecular Networks +1701.09099 Algebraic Topology +1701.09100 +1701.09101 Mesoscale and Nanoscale Physics +1701.09103 Fluid Dynamics +1701.09104 Molecular Networks +1701.09105 +1701.09106 +1701.09107 Robotics +1701.09108 Statistics Theory +1701.09110 Mesoscale and Nanoscale Physics +1701.09111 High Energy Astrophysical Phenomena +1701.09112 Multiagent Systems +1701.09113 Mesoscale and Nanoscale Physics +1701.09114 Classical Analysis and ODEs +1701.09115 Probability +1701.09116 Phenomenology +1701.09118 Optimization and Control +1701.09119 Mesoscale and Nanoscale Physics +1701.09120 Statistics Theory +1701.09122 Analysis of PDEs +1701.09125 Mesoscale and Nanoscale Physics +1701.09127 Solar and Stellar Astrophysics +1701.09129 Materials Science +1701.09130 Phenomenology +1701.09131 Computational Engineering, Finance, and Science +1701.09132 +1701.09133 Combinatorics +1701.09134 Accelerator Physics +1701.09135 Computer Vision and Pattern Recognition +1701.09136 Geometric Topology +1701.09138 Information Retrieval +1701.09139 Mesoscale and Nanoscale Physics +1701.09140 Fluid Dynamics +1701.09141 Mesoscale and Nanoscale Physics +1701.09143 Applications +1701.09144 +1701.09145 Instrumentation and Methods for Astrophysics +1701.09146 Atomic Physics +1701.09148 Combinatorics +1701.09149 Algebraic Geometry +1701.09150 Instrumentation and Detectors +1701.09151 +1701.09153 High Energy Astrophysical Phenomena +1701.09157 Populations and Evolution +1701.09159 Materials Science +1701.09160 Statistics Theory +1701.09162 Theory +1701.09164 Solar and Stellar Astrophysics +1701.09165 Algebraic Geometry +1701.09167 Phenomenology +1701.09168 +1701.09169 +1701.09170 Phenomenology +1701.09171 Strongly Correlated Electrons +1701.09172 Solar and Stellar Astrophysics +1701.09174 Materials Science +1701.09176 Probability +1701.09178 History and Philosophy of Physics +1701.09179 Plasma Physics +1701.09180 Robotics +1701.09183 Phenomenology +1701.09186 Phenomenology +astro-ph/9412090 +astro-ph/9506031 +cond-mat/0703498 Statistical Mechanics +cond-mat/9304043 +cond-mat/9402011 +cond-mat/9405037 +cond-mat/9406032 +cond-mat/9410027 +cond-mat/9501023 +gr-qc/0412028 +gr-qc/0512063 +gr-qc/9308019 +gr-qc/9308029 +hep-lat/0309156 Lattice +hep-lat/9207018 Lattice +hep-lat/9312073 Lattice +hep-lat/9411036 Lattice +hep-lat/9503023 Lattice +hep-ph/0702219 Phenomenology +hep-ph/0702224 Phenomenology +hep-ph/9205225 Phenomenology +hep-ph/9210229 Phenomenology +hep-ph/9211212 Phenomenology +hep-ph/9212208 Phenomenology +hep-ph/9303258 Phenomenology +hep-ph/9307305 Phenomenology +hep-ph/9307321 Phenomenology +hep-ph/9309321 Phenomenology +hep-ph/9310267 Phenomenology +hep-ph/9311368 Phenomenology +hep-ph/9312321 Phenomenology +hep-ph/9312343 Phenomenology +hep-ph/9401332 Phenomenology +hep-ph/9402296 Phenomenology +hep-ph/9402357 Phenomenology +hep-ph/9403284 Phenomenology +hep-ph/9403343 Phenomenology +hep-ph/9403364 Phenomenology +hep-ph/9405337 Phenomenology +hep-ph/9406327 Phenomenology +hep-ph/9406375 Phenomenology +hep-ph/9407398 Phenomenology +hep-ph/9411258 Phenomenology +hep-ph/9411434 Phenomenology +hep-ph/9412325 Phenomenology +hep-ph/9503403 Phenomenology +hep-th/0010038 Theory +hep-th/0503005 Theory +hep-th/9201018 Theory +hep-th/9207025 Theory +hep-th/9210138 Theory +hep-th/9211087 Theory +hep-th/9212130 Theory +hep-th/9212131 Theory +hep-th/9212132 Theory +hep-th/9303049 Theory +hep-th/9303086 Theory +hep-th/9304010 Theory +hep-th/9304012 Theory +hep-th/9306098 Theory +hep-th/9307181 Theory +hep-th/9308024 Theory +hep-th/9308049 Theory +hep-th/9308063 Theory +hep-th/9309150 Theory +hep-th/9310059 Theory +hep-th/9312174 Theory +hep-th/9403025 Theory +hep-th/9403139 Theory +hep-th/9404026 Theory +hep-th/9405022 Theory +hep-th/9405145 Theory +hep-th/9408007 Theory +hep-th/9409115 Theory +hep-th/9410171 Theory +hep-th/9502158 Theory +hep-th/9503083 Theory +hep-th/9504094 Theory +math/0702276 Differential Geometry +nucl-th/9210013 +nucl-th/9304019 +nucl-th/9309006 +nucl-th/9311014 +physics/0505102 Fluid Dynamics +quant-ph/0009114 +0710.1248 Combinatorics +0903.5365 +1001.2416 Logic in Computer Science +1001.5087 Numerical Analysis +1012.1769 Logic in Computer Science +1101.3292 General Physics +1102.5767 +1106.0141 Discrete Mathematics +1207.1342 Metric Geometry +1208.2180 Combinatorics +1209.4403 Computational Geometry +1212.1326 Dynamical Systems +1301.3569 Combinatorics +1303.2424 Functional Analysis +1304.1238 Symbolic Computation +1304.8115 +1306.3420 +1308.3529 Quantum Algebra +1308.4734 Algebraic Geometry +1312.2372 Computation +1405.2966 Combinatorics +1406.0192 +1406.5321 Dynamical Systems +1408.0611 Algebraic Geometry +1408.1579 Group Theory +1408.4641 Functional Analysis +1408.6036 Differential Geometry +1409.2827 Optics +1410.0584 Rings and Algebras +1410.2500 Learning +1410.6553 Complex Variables +1410.8485 Theory +1411.6432 Logic in Computer Science +1411.6452 Logic +1412.1686 Algebraic Geometry +1412.7488 Probability +1501.04598 +1501.05528 Computational Complexity +1501.05658 Theory +1501.06091 Information Theory +1501.06575 +1502.00383 Geometric Topology +1502.03329 Materials Science +1502.03710 Cosmology and Nongalactic Astrophysics +1503.03671 Combinatorics +1503.04897 Representation Theory +1503.06665 Computer Science and Game Theory +1504.01996 Differential Geometry +1504.08248 Artificial Intelligence +1505.00173 +1505.07176 Numerical Analysis +1506.00443 +1506.03018 Learning +1506.04078 Materials Science +1506.07147 Rings and Algebras +1506.07757 +1506.08271 Geometric Topology +1507.00573 Algebraic Geometry +1507.00656 Combinatorics +1507.04907 Data Structures and Algorithms +1508.01205 Mesoscale and Nanoscale Physics +1508.03062 Discrete Mathematics +1508.03912 Combinatorics +1508.06373 Numerical Analysis +1509.00358 +1509.00929 Theory +1509.01464 Dynamical Systems +1509.02549 Fluid Dynamics +1509.03194 Optimization and Control +1509.03676 +1509.04632 Machine Learning +1509.05158 Disordered Systems and Neural Networks +1509.05635 Computational Geometry +1509.05789 Learning +1509.08539 +1509.08978 Theory +1510.00701 Information Theory +1510.03091 Geometric Topology +1510.03103 Cosmology and Nongalactic Astrophysics +1510.03394 +1510.04001 +1510.05098 Rings and Algebras +1511.00465 Quantum Algebra +1511.02101 Geometric Topology +1511.03975 +1511.06349 Learning +1511.07180 Data Structures and Algorithms +1511.08089 Theory +1512.01321 Dynamical Systems +1512.01580 Analysis of PDEs +1512.03215 Complex Variables +1512.04234 Number Theory +1512.04713 Functional Analysis +1512.09039 Optimization and Control +1601.02463 Physics and Society +1601.03420 Biological Physics +1601.05641 +1601.06501 Numerical Analysis +1601.06988 Quantum Gases +1602.00036 Information Theory +1602.01355 Statistics Theory +1602.01630 Number Theory +1602.02776 Phenomenology +1602.02929 Probability +1602.02970 Numerical Analysis +1602.03237 +1602.03845 +1602.05022 Fluid Dynamics +1602.05939 Instrumentation and Detectors +1602.06936 Analysis of PDEs +1602.07277 Machine Learning +1602.07668 Analysis of PDEs +1602.08133 Phenomenology +1602.08649 +1603.01601 Analysis of PDEs +1603.02146 Algebraic Geometry +1603.02660 Algebraic Geometry +1603.03262 +1603.03942 Combinatorics +1603.05263 Analysis of PDEs +1603.05501 Theory +1603.05857 Number Theory +1603.06414 Theory +1603.08022 Strongly Correlated Electrons +1603.08166 Complex Variables +1603.09025 Learning +1603.09095 Computer Vision and Pattern Recognition +1604.00054 Data Structures and Algorithms +1604.00665 Superconductivity +1604.00843 Materials Science +1604.01036 Astrophysics of Galaxies +1604.01820 Algebraic Geometry +1604.02992 +1604.03096 Mesoscale and Nanoscale Physics +1604.04527 Applications +1604.04719 Number Theory +1604.05976 Applications +1604.07171 Optics +1604.08732 +1605.00414 Information Theory +1605.00514 +1605.00940 Strongly Correlated Electrons +1605.01418 Optimization and Control +1605.01508 Differential Geometry +1605.01757 Superconductivity +1605.01869 Information Theory +1605.01920 General Finance +1605.02030 Theory +1605.02790 Mesoscale and Nanoscale Physics +1605.03377 Pattern Formation and Solitons +1605.03410 Numerical Analysis +1605.03418 Populations and Evolution +1605.03425 General Physics +1605.05018 Algebraic Geometry +1605.05045 Machine Learning +1605.05454 Computation +1605.05616 Chaotic Dynamics +1605.05980 +1605.07013 Solar and Stellar Astrophysics +1605.07082 Combinatorics +1605.07247 Molecular Networks +1605.07557 Representation Theory +1605.08036 Fluid Dynamics +1605.08566 +1605.08678 Statistical Mechanics +1605.08803 Learning +1605.09154 Theory +1605.09362 Information Retrieval +1606.01250 +1606.02232 Algebraic Geometry +1606.02609 Geometric Topology +1606.02665 Fluid Dynamics +1606.03033 Methodology +1606.03161 Probability +1606.03948 Differential Geometry +1606.04507 Statistical Mechanics +1606.04745 Differential Geometry +1606.04907 Physics and Society +1606.05059 Group Theory +1606.05152 Combinatorics +1606.05188 Methodology +1606.05283 +1606.05723 Mesoscale and Nanoscale Physics +1606.06109 Superconductivity +1606.07335 Cosmology and Nongalactic Astrophysics +1606.07835 Materials Science +1606.08350 Computation +1606.08659 Phenomenology +1606.08746 Quantum Gases +1606.08918 Superconductivity +1606.09066 Machine Learning +1606.09300 Phenomenology +1606.09415 Methodology +1606.09582 Strongly Correlated Electrons +1606.09639 Strongly Correlated Electrons +1607.00543 +1607.00824 Fluid Dynamics +1607.01036 Machine Learning +1607.01097 Learning +1607.01143 Classical Analysis and ODEs +1607.01340 +1607.01644 Phenomenology +1607.02084 Theory +1607.02256 +1607.03574 Machine Learning +1607.04492 Computation and Language +1607.05618 Strongly Correlated Electrons +1607.06261 +1607.06451 Statistical Mechanics +1607.06572 Phenomenology +1607.06945 Symbolic Computation +1607.07169 Adaptation and Self-Organizing Systems +1607.07441 Phenomenology +1607.08307 Phenomenology +1607.08585 +1608.00031 +1608.00167 Statistical Mechanics +1608.00287 Phenomenology +1608.00379 Theory +1608.00574 Phenomenology +1608.00723 Probability +1608.00877 Mesoscale and Nanoscale Physics +1608.01083 Phenomenology +1608.01286 Mesoscale and Nanoscale Physics +1608.01684 High Energy Astrophysical Phenomena +1608.01886 Physics and Society +1608.02100 Other Condensed Matter +1608.02429 Soft Condensed Matter +1608.02677 +1608.02696 +1608.03211 Optics +1608.03280 Strongly Correlated Electrons +1608.03826 Mesoscale and Nanoscale Physics +1608.04077 Learning +1608.04139 Mesoscale and Nanoscale Physics +1608.05100 Data Structures and Algorithms +1608.05154 Plasma Physics +1608.05214 Astrophysics of Galaxies +1608.05438 Analysis of PDEs +1608.06064 Superconductivity +1608.06239 Quantum Gases +1608.06335 +1608.06607 Optics +1608.06932 Strongly Correlated Electrons +1608.07532 High Energy Astrophysical Phenomena +1608.07941 +1608.07946 Superconductivity +1608.08257 Earth and Planetary Astrophysics +1608.08401 Theory +1608.08910 Mesoscale and Nanoscale Physics +1609.00057 Fluid Dynamics +1609.00393 Theory +1609.00405 Mesoscale and Nanoscale Physics +1609.00572 Theory +1609.00584 Soft Condensed Matter +1609.00590 +1609.00949 Number Theory +1609.01503 +1609.01723 Theory +1609.01751 Quantum Gases +1609.01776 Mesoscale and Nanoscale Physics +1609.01792 +1609.02151 Phenomenology +1609.02307 Phenomenology +1609.02356 Computer Vision and Pattern Recognition +1609.02419 Lattice +1609.03063 Mesoscale and Nanoscale Physics +1609.03675 Learning +1609.03997 Cosmology and Nongalactic Astrophysics +1609.04367 Phenomenology +1609.04624 Materials Science +1609.04698 Phenomenology +1609.04719 Theory +1609.05480 Mesoscale and Nanoscale Physics +1609.05529 Strongly Correlated Electrons +1609.05901 +1609.06128 +1609.06854 Probability +1609.06884 +1609.07403 High Energy Astrophysical Phenomena +1609.07497 +1609.07554 Computational Complexity +1609.07647 Phenomenology +1609.07653 Optics +1609.07660 Atomic Physics +1609.08026 Mesoscale and Nanoscale Physics +1609.08093 Cosmology and Nongalactic Astrophysics +1609.08246 Materials Science +1609.08464 +1609.08616 Strongly Correlated Electrons +1609.08643 Astrophysics of Galaxies +1609.09090 Astrophysics of Galaxies +1609.09222 Statistical Mechanics +1609.09234 Plasma Physics +1609.09252 Cosmology and Nongalactic Astrophysics +1610.00097 Programming Languages +1610.00136 Superconductivity +1610.00407 Materials Science +1610.00500 Solar and Stellar Astrophysics +1610.00554 Probability +1610.00666 Phenomenology +1610.00686 Dynamical Systems +1610.01016 +1610.01105 +1610.01130 Theory +1610.01141 Solar and Stellar Astrophysics +1610.01246 +1610.01629 Statistical Mechanics +1610.01799 +1610.01822 Mesoscale and Nanoscale Physics +1610.01940 Theory +1610.01941 Theory +1610.02330 Astrophysics of Galaxies +1610.03020 Phenomenology +1610.03169 Mesoscale and Nanoscale Physics +1610.03239 +1610.03665 Cosmology and Nongalactic Astrophysics +1610.03980 Phenomenology +1610.03994 Materials Science +1610.04021 Soft Condensed Matter +1610.04112 Phenomenology +1610.04145 Functional Analysis +1610.04239 Earth and Planetary Astrophysics +1610.04358 +1610.04727 Strongly Correlated Electrons +1610.05002 +1610.05032 Fluid Dynamics +1610.05765 Earth and Planetary Astrophysics +1610.06109 +1610.06155 +1610.06454 Computation and Language +1610.06893 Probability +1610.07286 Astrophysics of Galaxies +1610.07442 Computer Vision and Pattern Recognition +1610.08288 Experiment +1610.08557 Computation and Language +1610.08593 Superconductivity +1610.08754 Phenomenology +1610.08761 Phenomenology +1610.08843 Programming Languages +1610.09088 Mesoscale and Nanoscale Physics +1610.09161 Logic in Computer Science +1610.09184 Statistical Mechanics +1610.09416 High Energy Astrophysical Phenomena +1610.09442 +1610.09647 High Energy Astrophysical Phenomena +1610.09684 Instrumentation and Detectors +1610.09781 Astrophysics of Galaxies +1610.09820 +1610.09844 Theory +1610.09930 Solar and Stellar Astrophysics +1610.09944 Mesoscale and Nanoscale Physics +1610.10000 Information Retrieval +1610.10037 Theory +1611.00159 Information Theory +1611.00342 Theory +1611.00422 Instrumentation and Methods for Astrophysics +1611.00489 Plasma Physics +1611.00652 Geometric Topology +1611.00767 Phenomenology +1611.00795 Phenomenology +1611.01304 +1611.01473 +1611.01526 +1611.01602 Methodology +1611.01732 Optimization and Control +1611.01862 Phenomenology +1611.01910 Astrophysics of Galaxies +1611.02076 +1611.02247 Learning +1611.02382 Mesoscale and Nanoscale Physics +1611.02672 Phenomenology +1611.03080 Atomic Physics +1611.03210 Plasma Physics +1611.03457 Phenomenology +1611.03632 Earth and Planetary Astrophysics +1611.04408 Phenomenology +1611.04510 Numerical Analysis +1611.04647 Optimization and Control +1611.04713 Instrumentation and Detectors +1611.04876 Quantum Gases +1611.05100 Dynamical Systems +1611.05158 Superconductivity +1611.05719 Number Theory +1611.05868 Astrophysics of Galaxies +1611.05904 Strongly Correlated Electrons +1611.05938 High Energy Astrophysical Phenomena +1611.05966 Phenomenology +1611.05979 Metric Geometry +1611.06388 General Mathematics +1611.06446 Combinatorics +1611.06477 Strongly Correlated Electrons +1611.06676 Phenomenology +1611.06716 +1611.06798 Theory +1611.06831 Physics and Society +1611.07380 Logic +1611.07580 Networking and Internet Architecture +1611.07859 Plasma Physics +1611.07918 Lattice +1611.08109 Materials Science +1611.08424 Materials Science +1611.08497 Lattice +1611.08859 Statistical Mechanics +1611.08943 Cosmology and Nongalactic Astrophysics +1611.09072 Data Structures and Algorithms +1611.09111 Solar and Stellar Astrophysics +1611.09231 Astrophysics of Galaxies +1611.09483 Statistical Mechanics +1611.09665 Cosmology and Nongalactic Astrophysics +1611.09688 Mesoscale and Nanoscale Physics +1611.09856 Phenomenology +1611.09912 Mesoscale and Nanoscale Physics +1611.10020 +1611.10077 Theory +1611.10177 +1611.10238 Mesoscale and Nanoscale Physics +1612.00018 Mesoscale and Nanoscale Physics +1612.00035 Theory +1612.00116 Instrumentation and Methods for Astrophysics +1612.00159 Mesoscale and Nanoscale Physics +1612.00182 Statistical Mechanics +1612.00278 Theory +1612.00687 Solar and Stellar Astrophysics +1612.00931 Chemical Physics +1612.01293 Phenomenology +1612.01322 Quantum Gases +1612.01666 Strongly Correlated Electrons +1612.01714 Fluid Dynamics +1612.01782 Earth and Planetary Astrophysics +1612.01923 High Energy Astrophysical Phenomena +1612.01975 Statistical Mechanics +1612.02088 Artificial Intelligence +1612.02292 +1612.02358 Optimization and Control +1612.02376 Phenomenology +1612.02454 Cosmology and Nongalactic Astrophysics +1612.02676 Superconductivity +1612.02802 Learning +1612.02936 Biological Physics +1612.02952 Instrumentation and Methods for Astrophysics +1612.03010 Phenomenology +1612.03079 Distributed, Parallel, and Cluster Computing +1612.03498 Analysis of PDEs +1612.03499 Optics +1612.03668 Phenomenology +1612.04010 Learning +1612.04265 Cryptography and Security +1612.04331 Phenomenology +1612.04521 Cosmology and Nongalactic Astrophysics +1612.04551 +1612.04945 Statistical Mechanics +1612.05573 Solar and Stellar Astrophysics +1612.05637 Cosmology and Nongalactic Astrophysics +1612.05800 Methodology +1612.05897 Cosmology and Nongalactic Astrophysics +1612.06065 Dynamical Systems +1612.06694 +1612.06710 Theory +1612.06766 +1612.06899 Strongly Correlated Electrons +1612.07145 +1612.07252 Phenomenology +1612.07575 Mesoscale and Nanoscale Physics +1612.07740 Theory +1612.08019 Quantum Gases +1612.08235 High Energy Astrophysical Phenomena +1612.08607 Physics Education +1612.08747 High Energy Astrophysical Phenomena +1612.08976 Theory +1612.09174 Classical Physics +1701.00124 Phenomenology +1701.00292 Instrumentation and Methods for Astrophysics +1701.00323 Rings and Algebras +1701.01421 Geometric Topology +1701.01698 Computer Vision and Pattern Recognition +1701.01772 Social and Information Networks +1701.02218 Operator Algebras +1701.02422 Theory +1701.02934 Theory +1701.03979 Quantum Gases +1701.04095 +1701.04329 Computational Physics +1701.04602 +1701.04613 Phenomenology +1701.04861 Biomolecules +1701.04863 General Physics +1701.05086 Soft Condensed Matter +1701.05167 Statistical Mechanics +1701.05369 Machine Learning +1701.05564 Earth and Planetary Astrophysics +1701.06593 Theory +1701.06678 Information Theory +1701.06796 Learning +1701.07033 High Energy Astrophysical Phenomena +1701.07810 Information Retrieval +1701.07867 Algebraic Geometry +1701.07896 Theory +1701.08031 Optimization and Control +1701.08360 Theory +1701.08594 Optics +1701.08729 Pattern Formation and Solitons +1701.08935 Numerical Analysis +1702.00209 Networking and Internet Architecture +1702.00593 Optimization and Control +1702.00746 Materials Science +1702.00778 Probability +1702.01394 Formal Languages and Automata Theory +1702.01600 Lattice +1702.01896 Soft Condensed Matter +1702.02120 Superconductivity +1702.02340 Solar and Stellar Astrophysics +1702.02620 Astrophysics of Galaxies +1702.02726 Phenomenology +1702.03030 Solar and Stellar Astrophysics +1702.03740 +1702.03778 Information Theory +1702.03814 Artificial Intelligence +1702.03829 Classical Analysis and ODEs +1702.03832 +1702.04017 Probability +1702.04074 Information Theory +1702.04205 Theory +1702.04379 Chemical Physics +1702.04417 Geometric Topology +1702.05950 Strongly Correlated Electrons +1702.05967 Distributed, Parallel, and Cluster Computing +1702.06292 Geophysics +1702.06303 Quantum Gases +1702.06535 Chemical Physics +1702.07109 Information Theory +1702.07241 Optimization and Control +1702.07398 Machine Learning +1702.07637 Optimization and Control +1702.07702 Phenomenology +1702.07710 +1702.07733 Computers and Society +1702.07791 Theory +1702.07799 Optimization and Control +1702.07847 Logic in Computer Science +1702.07851 Combinatorics +1702.07913 Commutative Algebra +1702.07922 Formal Languages and Automata Theory +1702.08061 Methodology +1702.08085 Pattern Formation and Solitons +1702.08087 Analysis of PDEs +1702.08108 Quantum Algebra +1702.08118 +1702.08198 Geophysics +1702.08233 Optics +1702.08247 Data Structures and Algorithms +1702.08437 Classical Analysis and ODEs +1702.08438 Classical Analysis and ODEs +1702.08439 Fluid Dynamics +1702.08440 Classical Analysis and ODEs +1702.08441 Artificial Intelligence +1702.08442 Metric Geometry +1702.08443 Data Structures and Algorithms +1702.08444 Populations and Evolution +1702.08445 +1702.08446 Numerical Analysis +1702.08447 Probability +1702.08448 +1702.08449 Instrumentation and Methods for Astrophysics +1702.08450 Computation and Language +1702.08451 Computation and Language +1702.08453 Cosmology and Nongalactic Astrophysics +1702.08454 Instrumentation and Methods for Astrophysics +1702.08455 +1702.08456 Instrumentation and Methods for Astrophysics +1702.08457 Phenomenology +1702.08458 Theory +1702.08459 +1702.08460 Astrophysics of Galaxies +1702.08462 Theory +1702.08464 Phenomenology +1702.08466 Strongly Correlated Electrons +1702.08467 Astrophysics of Galaxies +1702.08468 Fluid Dynamics +1702.08469 Strongly Correlated Electrons +1702.08470 Strongly Correlated Electrons +1702.08471 Theory +1702.08473 +1702.08474 Data Structures and Algorithms +1702.08475 Quantum Algebra +1702.08476 Information Theory +1702.08478 Computers and Society +1702.08480 Instrumentation and Detectors +1702.08481 Computer Vision and Pattern Recognition +1702.08482 Theory +1702.08483 +1702.08484 Learning +1702.08485 Cosmology and Nongalactic Astrophysics +1702.08486 Classical Analysis and ODEs +1702.08487 Algebraic Geometry +1702.08488 Algebraic Geometry +1702.08489 Learning +1702.08490 +1702.08492 Numerical Analysis +1702.08493 +1702.08494 Optimization and Control +1702.08496 Methodology +1702.08497 Classical Analysis and ODEs +1702.08498 Metric Geometry +1702.08499 Classical Analysis and ODEs +1702.08500 Number Theory +1702.08501 Systems and Control +1702.08502 Computer Vision and Pattern Recognition +1702.08503 Learning +1702.08504 Probability +1702.08505 Probability +1702.08506 Populations and Evolution +1702.08507 Number Theory +1702.08508 Algebraic Geometry +1702.08510 Classical Analysis and ODEs +1702.08511 Phenomenology +1702.08512 Classical Analysis and ODEs +1702.08513 Computer Vision and Pattern Recognition +1702.08514 Analysis of PDEs +1702.08515 Materials Science +1702.08517 Quantum Gases +1702.08518 +1702.08519 Classical Physics +1702.08520 Classical Analysis and ODEs +1702.08521 Computational Physics +1702.08522 Materials Science +1702.08523 Systems and Control +1702.08524 Systems and Control +1702.08525 Commutative Algebra +1702.08526 Astrophysics of Galaxies +1702.08528 Strongly Correlated Electrons +1702.08529 Multiagent Systems +1702.08530 Learning +1702.08531 +1702.08533 Computer Science and Game Theory +1702.08534 Data Analysis, Statistics and Probability +1702.08535 Solar and Stellar Astrophysics +1702.08536 Machine Learning +1702.08537 Theory +1702.08538 Medical Physics +1702.08539 Optimization and Control +1702.08540 Machine Learning +1702.08541 Strongly Correlated Electrons +1702.08543 Populations and Evolution +1702.08544 Chemical Physics +1702.08545 Data Structures and Algorithms +1702.08546 Statistics Theory +1702.08547 General Mathematics +1702.08550 Combinatorics +1702.08551 General Mathematics +1702.08552 Astrophysics of Galaxies +1702.08553 Learning +1702.08555 Classical Analysis and ODEs +1702.08557 Social and Information Networks +1702.08558 Computer Vision and Pattern Recognition +1702.08559 Analysis of PDEs +1702.08560 Populations and Evolution +1702.08561 Mesoscale and Nanoscale Physics +1702.08562 Astrophysics of Galaxies +1702.08563 Computation and Language +1702.08564 +1702.08565 Statistical Mechanics +1702.08566 +1702.08567 Learning +1702.08568 Cryptography and Security +1702.08569 Mesoscale and Nanoscale Physics +1702.08570 +1702.08572 Methodology +1702.08573 Strongly Correlated Electrons +1702.08574 Information Theory +1702.08575 Learning +1702.08576 Materials Science +1702.08578 Strongly Correlated Electrons +1702.08579 Combinatorics +1702.08580 Learning +1702.08581 Logic in Computer Science +1702.08582 Systems and Control +1702.08583 Solar and Stellar Astrophysics +1702.08584 Systems and Control +1702.08586 Computational Physics +1702.08587 Quantum Gases +1702.08588 Materials Science +1702.08590 Theory +1702.08591 Neural and Evolutionary Computing +1702.08592 Probability +1702.08593 Algebraic Topology +1702.08595 Strongly Correlated Electrons +1702.08596 +1702.08597 Computer Vision and Pattern Recognition +1702.08598 Optimization and Control +1702.08599 Number Theory +1702.08600 Mesoscale and Nanoscale Physics +1702.08601 Computer Vision and Pattern Recognition +1702.08602 High Energy Astrophysical Phenomena +1702.08603 Numerical Analysis +1702.08605 +1702.08606 Computer Vision and Pattern Recognition +1702.08607 Computational Geometry +1702.08609 Astrophysics of Galaxies +1702.08610 +1702.08612 Dynamical Systems +1702.08613 Phenomenology +1702.08614 Cosmology and Nongalactic Astrophysics +1702.08615 Statistics Theory +1702.08616 Rings and Algebras +1702.08617 Neurons and Cognition +1702.08618 Earth and Planetary Astrophysics +1702.08620 Physics and Society +1702.08621 Combinatorics +1702.08622 Analysis of PDEs +1702.08623 Learning +1702.08624 Instrumentation and Methods for Astrophysics +1702.08625 Adaptation and Self-Organizing Systems +1702.08626 Robotics +1702.08628 Learning +1702.08629 Adaptation and Self-Organizing Systems +1702.08630 Quantum Gases +1702.08631 Algebraic Geometry +1702.08632 Disordered Systems and Neural Networks +1702.08633 Astrophysics of Galaxies +1702.08635 Learning +1702.08636 Materials Science +1702.08638 Data Analysis, Statistics and Probability +1702.08639 Mesoscale and Nanoscale Physics +1702.08641 Systems and Control +1702.08642 Logic +1702.08644 High Energy Astrophysical Phenomena +1702.08645 Phenomenology +1702.08646 Computer Vision and Pattern Recognition +1702.08647 Strongly Correlated Electrons +1702.08648 Learning +1702.08649 Optimization and Control +1702.08650 Number Theory +1702.08651 Machine Learning +1702.08653 Computation and Language +1702.08654 Computational Geometry +1702.08656 Robotics +1702.08657 Rings and Algebras +1702.08658 Learning +1702.08659 Superconductivity +1702.08661 Optimization and Control +1702.08663 Number Theory +1702.08664 Symbolic Computation +1702.08666 Phenomenology +1702.08668 +1702.08671 Functional Analysis +1702.08672 +1702.08673 +1702.08674 Phenomenology +1702.08675 Computer Vision and Pattern Recognition +1702.08676 High Energy Astrophysical Phenomena +1702.08677 +1702.08678 Materials Science +1702.08679 Cosmology and Nongalactic Astrophysics +1702.08680 Graphics +1702.08681 Computer Vision and Pattern Recognition +1702.08684 Category Theory +1702.08687 Optics +1702.08688 Materials Science +1702.08689 Analysis of PDEs +1702.08691 +1702.08692 Computer Vision and Pattern Recognition +1702.08694 Machine Learning +1702.08695 Robotics +1702.08696 Algebraic Topology +1702.08697 Numerical Analysis +1702.08698 Probability +1702.08700 Probability +1702.08701 Learning +1702.08702 Theory +1702.08703 Information Theory +1702.08704 Optimization and Control +1702.08707 Physics and Society +1702.08708 Analysis of PDEs +1702.08710 +1702.08711 Phenomenology +1702.08712 Machine Learning +1702.08713 High Energy Astrophysical Phenomena +1702.08714 Solar and Stellar Astrophysics +1702.08715 +1702.08716 Computational Geometry +1702.08718 +1702.08721 Optimization and Control +1702.08722 Optics +1702.08723 +1702.08724 High Energy Astrophysical Phenomena +1702.08725 Software Engineering +1702.08726 Software Engineering +1702.08727 Neural and Evolutionary Computing +1702.08728 Experiment +1702.08729 Astrophysics of Galaxies +1702.08730 Experiment +1702.08731 Chaotic Dynamics +1702.08732 Solar and Stellar Astrophysics +1702.08734 Computer Vision and Pattern Recognition +1702.08735 Probability +1702.08737 Mesoscale and Nanoscale Physics +1702.08738 Computation +1702.08739 Combinatorics +1702.08740 Computer Vision and Pattern Recognition +1702.08741 Discrete Mathematics +1702.08742 Robotics +1702.08743 High Energy Astrophysical Phenomena +1702.08745 Artificial Intelligence +1702.08746 Functional Analysis +1702.08747 Molecular Networks +1702.08748 Probability +1702.08750 Pattern Formation and Solitons +1702.08751 +1702.08752 +1702.08753 Materials Science +1702.08754 Strongly Correlated Electrons +1702.08755 Plasma Physics +1702.08756 Cosmology and Nongalactic Astrophysics +1702.08757 Mesoscale and Nanoscale Physics +1702.08758 +1702.08759 Strongly Correlated Electrons +1702.08760 Materials Science +1702.08761 Numerical Analysis +1702.08762 Metric Geometry +1702.08764 Databases +1702.08765 Optics +1702.08766 Logic +1702.08767 Analysis of PDEs +1702.08768 +1702.08769 Optics +1702.08770 Optimization and Control +1702.08771 Functional Analysis +1702.08773 Mesoscale and Nanoscale Physics +1702.08774 General Finance +1702.08775 Earth and Planetary Astrophysics +1702.08776 Adaptation and Self-Organizing Systems +1702.08779 High Energy Astrophysical Phenomena +1702.08780 Computer Vision and Pattern Recognition +1702.08781 Computation +1702.08783 Information Theory +1702.08784 Materials Science +1702.08785 Phenomenology +1702.08786 Chaotic Dynamics +1702.08789 Systems and Control +1702.08791 Learning +1702.08792 +1702.08793 Analysis of PDEs +1702.08794 Computer Science and Game Theory +1702.08795 Solar and Stellar Astrophysics +1702.08796 Quantum Gases +1702.08797 Methodology +1702.08798 Computer Vision and Pattern Recognition +1702.08799 Differential Geometry +1702.08800 Information Theory +1702.08801 Number Theory +1702.08802 Mesoscale and Nanoscale Physics +1702.08803 Theory +1702.08804 Disordered Systems and Neural Networks +1702.08805 Earth and Planetary Astrophysics +1702.08806 Pattern Formation and Solitons +1702.08808 Algebraic Geometry +1702.08809 Analysis of PDEs +1702.08810 Astrophysics of Galaxies +1702.08811 Machine Learning +1702.08812 Algebraic Geometry +1702.08814 Numerical Analysis +1702.08815 Dynamical Systems +1702.08816 Rings and Algebras +1702.08817 Distributed, Parallel, and Cluster Computing +1702.08819 Systems and Control +1702.08820 Optimization and Control +1702.08821 Dynamical Systems +1702.08822 Category Theory +1702.08823 +1702.08824 +1702.08825 High Energy Astrophysical Phenomena +1702.08826 Human-Computer Interaction +1702.08827 Networking and Internet Architecture +1702.08828 Superconductivity +1702.08829 Superconductivity +1702.08830 +1702.08832 +1702.08833 Learning +1702.08835 Learning +1702.08836 Astrophysics of Galaxies +1702.08839 Experiment +1702.08840 Learning +1702.08841 Logic in Computer Science +1702.08842 Superconductivity +1702.08843 Cosmology and Nongalactic Astrophysics +1702.08844 Analysis of PDEs +1702.08845 Popular Physics +1702.08846 Methodology +1702.08847 Numerical Analysis +1702.08848 Machine Learning +1702.08849 Computation +1702.08850 Analysis of PDEs +1702.08851 Number Theory +1702.08852 Cosmology and Nongalactic Astrophysics +1702.08854 Number Theory +1702.08857 +1702.08858 Numerical Analysis +1702.08859 Differential Geometry +1702.08860 Cosmology and Nongalactic Astrophysics +1702.08861 Instrumentation and Detectors +1702.08862 Computer Science and Game Theory +1702.08863 Other Condensed Matter +1702.08864 Fluid Dynamics +1702.08865 Cosmology and Nongalactic Astrophysics +1702.08866 Computation and Language +1702.08867 Risk Management +1702.08868 Mesoscale and Nanoscale Physics +1702.08870 Analysis of PDEs +1702.08871 General Physics +1702.08872 Complex Variables +1702.08873 +1702.08874 History and Overview +1702.08875 Atmospheric and Oceanic Physics +1702.08877 Rings and Algebras +1702.08879 Optimization and Control +1702.08883 Analysis of PDEs +1702.08884 Learning +1702.08886 Theory +1702.08887 Artificial Intelligence +1702.08889 Emerging Technologies +1702.08890 Algebraic Geometry +1702.08892 Artificial Intelligence +1702.08893 Optics +1702.08894 Statistical Mechanics +1702.08895 Statistics Theory +1702.08897 Methodology +1702.08898 Learning +1702.08899 Data Structures and Algorithms +1702.08901 Risk Management +1702.08902 Strongly Correlated Electrons +1702.08903 Data Structures and Algorithms +1702.08904 Phenomenology +1702.08905 Optics +1702.08907 Combinatorics +1702.08908 +cs/0408011 Information Theory +0710.4856 Pattern Formation and Solitons +0711.1809 Computational Physics +1202.6316 Statistics Theory +1203.0039 Representation Theory +1203.4958 Plasma Physics +1207.1056 Statistics Theory +1207.6737 Computational Physics +1302.6892 Materials Science +1306.2069 Logic in Computer Science +1309.2340 +1312.2289 Physics and Society +1401.4096 Algebraic Topology +1401.4527 Cosmology and Nongalactic Astrophysics +1402.3524 Number Theory +1402.5487 Computational Physics +1403.2330 Computer Vision and Pattern Recognition +1406.1306 Metric Geometry +1407.1223 Plasma Physics +1407.3300 Symplectic Geometry +1407.3595 Optics +1408.2074 Representation Theory +1411.6422 Neurons and Cognition +1411.6550 Information Theory +1412.0959 Plasma Physics +1412.2810 Classical Physics +1412.3682 Operator Algebras +1501.01297 General Physics +1501.05502 Systems and Control +1502.02212 Analysis of PDEs +1502.03998 Optimization and Control +1503.03568 Mesoscale and Nanoscale Physics +1503.03646 Superconductivity +1503.07922 Probability +1503.08548 Performance +1503.08781 Logic +1504.02064 Numerical Analysis +1504.02385 Analysis of PDEs +1505.03000 Plasma Physics +1506.01475 Algebraic Topology +1506.04219 Optimization and Control +1506.04496 Mathematical Software +1506.04962 Combinatorics +1506.05562 Analysis of PDEs +1506.06212 Cosmology and Nongalactic Astrophysics +1506.08406 Probability +1506.08620 Data Structures and Algorithms +1507.05828 +1509.06981 Quantitative Methods +1510.00501 Probability +1510.01204 Classical Analysis and ODEs +1510.06270 Analysis of PDEs +1511.02537 Computer Science and Game Theory +1511.03066 Analysis of PDEs +1511.04688 Analysis of PDEs +1512.01832 Statistics Theory +1512.02381 Combinatorics +1512.08475 Computer Vision and Pattern Recognition +1601.02511 Mesoscale and Nanoscale Physics +1601.03328 Optics +1601.05460 Quantum Algebra +1601.06037 Information Theory +1602.03487 +1602.05716 Computational Physics +1602.05951 Strongly Correlated Electrons +1602.06035 +1602.06069 Number Theory +1602.08309 +1603.02866 +1603.05700 Statistical Finance +1603.06527 Combinatorics +1603.06699 Phenomenology +1603.07997 Information Theory +1603.08875 High Energy Astrophysical Phenomena +1604.05847 Algebraic Geometry +1604.06383 Computation +1604.08885 Cosmology and Nongalactic Astrophysics +1604.08908 Statistics Theory +1605.00254 Quantum Algebra +1605.04763 Algebraic Geometry +1605.07201 Materials Science +1606.01978 Quantum Algebra +1606.02113 Cosmology and Nongalactic Astrophysics +1606.03071 Neurons and Cognition +1606.03296 +1606.03355 +1606.04060 +1606.07353 Probability +1606.07730 Theory +1606.08368 +1606.08797 Dynamical Systems +1606.09031 Phenomenology +1606.09597 Number Theory +1607.00899 +1607.02280 Instrumentation and Detectors +1607.04637 Instrumentation and Methods for Astrophysics +1607.06089 Astrophysics of Galaxies +1607.07814 Combinatorics +1608.01952 Differential Geometry +1608.02242 Group Theory +1608.02447 Combinatorics +1608.06078 Geometric Topology +1608.07511 +1608.08710 Computer Vision and Pattern Recognition +1609.00448 Physics and Society +1609.00907 +1609.01037 Learning +1609.02552 Strongly Correlated Electrons +1609.02613 Software Engineering +1609.02831 Instrumentation and Detectors +1609.02921 High Energy Astrophysical Phenomena +1609.02923 High Energy Astrophysical Phenomena +1609.03116 Combinatorics +1609.03897 Hardware Architecture +1609.04830 Computer Vision and Pattern Recognition +1609.05119 Computer Vision and Pattern Recognition +1609.05148 Machine Learning +1609.05202 Biological Physics +1609.06399 Physics and Society +1609.07429 Numerical Analysis +1609.07487 Solar and Stellar Astrophysics +1609.08082 Neural and Evolutionary Computing +1609.09248 Analysis of PDEs +1610.00488 Number Theory +1610.00586 +1610.00694 Computational Physics +1610.01187 +1610.01829 +1610.03453 Phenomenology +1610.04908 Quantum Gases +1610.05115 Data Structures and Algorithms +1610.05683 Machine Learning +1610.06123 Dynamical Systems +1610.07869 Experiment +1610.08096 Data Structures and Algorithms +1610.08188 +1610.09057 Probability +1610.09661 Probability +1610.09819 +1611.01283 Optics +1611.01498 +1611.01701 Accelerator Physics +1611.01734 Computation and Language +1611.01886 Learning +1611.01929 Artificial Intelligence +1611.02500 Statistical Mechanics +1611.02572 Geophysics +1611.02724 Instrumentation and Detectors +1611.02867 Logic in Computer Science +1611.03012 Information Theory +1611.03377 +1611.04862 Soft Condensed Matter +1611.05382 Astrophysics of Galaxies +1611.06837 Materials Science +1611.07001 +1611.07817 Statistical Mechanics +1611.07852 Mesoscale and Nanoscale Physics +1611.08017 Phenomenology +1611.08052 High Energy Astrophysical Phenomena +1611.08075 Fluid Dynamics +1611.08133 Phenomenology +1611.08302 Phenomenology +1611.09000 K-Theory and Homology +1611.09310 Theory +1611.09328 Artificial Intelligence +1611.09540 Phenomenology +1611.09950 Populations and Evolution +1612.00334 Learning +1612.00429 Learning +1612.01272 +1612.01432 Phenomenology +1612.02194 Analysis of PDEs +1612.02327 Data Structures and Algorithms +1612.02392 Solar and Stellar Astrophysics +1612.02630 +1612.03133 Algebraic Topology +1612.03254 Statistical Mechanics +1612.04877 Superconductivity +1612.05669 Materials Science +1612.06099 Information Theory +1612.06252 Earth and Planetary Astrophysics +1612.06622 Mesoscale and Nanoscale Physics +1612.06726 Algebraic Geometry +1612.06782 Materials Science +1612.07336 Soft Condensed Matter +1612.07973 Phenomenology +1612.08725 Number Theory +1612.08775 Fluid Dynamics +1612.09298 Strongly Correlated Electrons +1612.09578 Astrophysics of Galaxies +1701.00096 Neurons and Cognition +1701.00099 +1701.02120 Cryptography and Security +1701.02789 Machine Learning +1701.03126 Computer Vision and Pattern Recognition +1701.03181 Emerging Technologies +1701.03641 Learning +1701.03955 Optimization and Control +1701.04321 Combinatorics +1701.04411 Astrophysics of Galaxies +1701.04793 Group Theory +1701.04945 Phenomenology +1701.06209 Logic in Computer Science +1701.07197 +1701.07859 Probability +1701.07875 Machine Learning +1701.08163 Theory +1701.08618 High Energy Astrophysical Phenomena +1701.08623 Robotics +1701.08755 Theory +1701.08969 Materials Science +1701.08970 Analysis of PDEs +1701.09137 Algebraic Geometry +1702.00019 Robotics +1702.00361 Distributed, Parallel, and Cluster Computing +1702.00734 Lattice +1702.01972 Mesoscale and Nanoscale Physics +1702.01981 Strongly Correlated Electrons +1702.02852 Materials Science +1702.03383 Theory +1702.03817 +1702.04360 Strongly Correlated Electrons +1702.04753 Theory +1702.05115 Strongly Correlated Electrons +1702.05207 Materials Science +1702.06155 +1702.06492 Human-Computer Interaction +1702.06499 Theory +1702.06608 Commutative Algebra +1702.06609 Mesoscale and Nanoscale Physics +1702.06856 Neural and Evolutionary Computing +1702.06914 Learning +1702.06996 Phenomenology +1702.07730 High Energy Astrophysical Phenomena +1702.07777 Atomic Physics +1702.07812 Number Theory +1702.08083 Formal Languages and Automata Theory +1702.08103 Rings and Algebras +1702.08280 High Energy Astrophysical Phenomena +1702.08479 High Energy Astrophysical Phenomena +1702.08744 Risk Management +1702.08906 Probability +1703.00047 General Physics +1703.00090 Differential Geometry +1703.00202 Differential Geometry +1703.00673 Earth and Planetary Astrophysics +1703.00676 Learning +1703.00785 Other Computer Science +1703.00905 Algebraic Geometry +1703.00987 Plasma Physics +1703.01113 Quantum Gases +1703.01127 Neural and Evolutionary Computing +1703.01252 +1703.01329 Risk Management +1703.01521 +1703.01622 Computer Vision and Pattern Recognition +1703.01627 Number Theory +1703.02182 Computer Vision and Pattern Recognition +1703.02269 Algebraic Geometry +1703.02438 Distributed, Parallel, and Cluster Computing +1703.02533 Cosmology and Nongalactic Astrophysics +1703.02583 Combinatorics +1703.02653 +1703.02774 Combinatorics +1703.02825 Algebraic Geometry +1703.02876 Solar and Stellar Astrophysics +1703.02951 Number Theory +1703.02996 Group Theory +1703.03005 History and Overview +1703.03020 Machine Learning +1703.03078 Robotics +1703.03112 Information Retrieval +1703.03139 Materials Science +1703.03165 Methodology +1703.03183 Superconductivity +1703.03200 Computation and Language +1703.03218 Materials Science +1703.03282 Statistics Theory +1703.03286 +1703.03392 +1703.03403 +1703.03404 Analysis of PDEs +1703.03405 +1703.03406 Mesoscale and Nanoscale Physics +1703.03407 Cosmology and Nongalactic Astrophysics +1703.03408 Phenomenology +1703.03409 Solar and Stellar Astrophysics +1703.03410 High Energy Astrophysical Phenomena +1703.03411 Phenomenology +1703.03412 Statistics Theory +1703.03413 Strongly Correlated Electrons +1703.03414 Earth and Planetary Astrophysics +1703.03415 Mesoscale and Nanoscale Physics +1703.03416 Phenomenology +1703.03417 Earth and Planetary Astrophysics +1703.03418 Strongly Correlated Electrons +1703.03421 Mesoscale and Nanoscale Physics +1703.03422 Astrophysics of Galaxies +1703.03423 +1703.03424 Social and Information Networks +1703.03425 Cosmology and Nongalactic Astrophysics +1703.03428 Theory +1703.03429 Artificial Intelligence +1703.03431 Astrophysics of Galaxies +1703.03432 Other Quantitative Biology +1703.03433 Plasma Physics +1703.03434 Populations and Evolution +1703.03435 Phenomenology +1703.03436 Optimization and Control +1703.03437 Human-Computer Interaction +1703.03438 +1703.03439 Lattice +1703.03440 Materials Science +1703.03441 Genomics +1703.03442 Computation and Language +1703.03444 Neurons and Cognition +1703.03446 Statistical Mechanics +1703.03447 Soft Condensed Matter +1703.03448 Geometric Topology +1703.03451 +1703.03452 Astrophysics of Galaxies +1703.03453 Artificial Intelligence +1703.03454 Learning +1703.03455 Probability +1703.03456 Quantum Algebra +1703.03457 Machine Learning +1703.03458 Other Condensed Matter +1703.03459 +1703.03461 Number Theory +1703.03462 Theory +1703.03463 Astrophysics of Galaxies +1703.03465 Soft Condensed Matter +1703.03466 Theory +1703.03467 Soft Condensed Matter +1703.03468 Computer Vision and Pattern Recognition +1703.03469 Theory +1703.03470 Learning +1703.03471 Cryptography and Security +1703.03472 Probability +1703.03474 Classical Physics +1703.03475 Computation +1703.03477 Solar and Stellar Astrophysics +1703.03478 Learning +1703.03479 Earth and Planetary Astrophysics +1703.03480 Analysis of PDEs +1703.03481 Computational Physics +1703.03482 Representation Theory +1703.03483 Theory +1703.03485 Analysis of PDEs +1703.03486 Atomic Physics +1703.03487 Combinatorics +1703.03488 +1703.03490 Number Theory +1703.03491 Optics +1703.03493 +1703.03494 Spectral Theory +1703.03495 Materials Science +1703.03496 Mesoscale and Nanoscale Physics +1703.03497 +1703.03498 +1703.03499 Information Theory +1703.03500 Combinatorics +1703.03501 Fluid Dynamics +1703.03502 Multimedia +1703.03503 Machine Learning +1703.03504 Other Computer Science +1703.03506 Functional Analysis +1703.03507 Experiment +1703.03510 +1703.03511 Computer Science and Game Theory +1703.03512 Robotics +1703.03513 Combinatorics +1703.03514 Mesoscale and Nanoscale Physics +1703.03515 +1703.03516 Number Theory +1703.03517 Optics +1703.03518 Earth and Planetary Astrophysics +1703.03519 Soft Condensed Matter +1703.03520 Mesoscale and Nanoscale Physics +1703.03521 Mesoscale and Nanoscale Physics +1703.03522 Emerging Technologies +1703.03523 Cryptography and Security +1703.03524 Databases +1703.03526 Astrophysics of Galaxies +1703.03527 Algebraic Geometry +1703.03528 Complex Variables +1703.03530 Multimedia +1703.03531 Solar and Stellar Astrophysics +1703.03532 Mesoscale and Nanoscale Physics +1703.03533 +1703.03534 Systems and Control +1703.03535 Logic +1703.03536 Functional Analysis +1703.03537 Strongly Correlated Electrons +1703.03538 Mesoscale and Nanoscale Physics +1703.03539 Programming Languages +1703.03540 Soft Condensed Matter +1703.03541 Superconductivity +1703.03542 Symplectic Geometry +1703.03543 Artificial Intelligence +1703.03544 Numerical Analysis +1703.03545 Algebraic Geometry +1703.03546 Analysis of PDEs +1703.03547 Probability +1703.03548 Chemical Physics +1703.03549 +1703.03550 Materials Science +1703.03551 Astrophysics of Galaxies +1703.03552 Atomic Physics +1703.03553 Analysis of PDEs +1703.03554 Analysis of PDEs +1703.03555 Statistical Mechanics +1703.03556 Materials Science +1703.03557 Atomic Physics +1703.03558 Experiment +1703.03559 Mesoscale and Nanoscale Physics +1703.03560 Neurons and Cognition +1703.03561 Numerical Analysis +1703.03563 Solar and Stellar Astrophysics +1703.03564 Strongly Correlated Electrons +1703.03565 Soft Condensed Matter +1703.03566 Strongly Correlated Electrons +1703.03567 Computer Vision and Pattern Recognition +1703.03568 Number Theory +1703.03569 Space Physics +1703.03570 Optics +1703.03571 Algebraic Geometry +1703.03572 Cosmology and Nongalactic Astrophysics +1703.03573 Geometric Topology +1703.03574 Materials Science +1703.03575 Data Structures and Algorithms +1703.03576 High Energy Astrophysical Phenomena +1703.03577 Analysis of PDEs +1703.03578 Statistical Mechanics +1703.03579 Optics +1703.03580 Disordered Systems and Neural Networks +1703.03581 Combinatorics +1703.03582 High Energy Astrophysical Phenomena +1703.03583 Phenomenology +1703.03584 +1703.03585 Numerical Analysis +1703.03586 Strongly Correlated Electrons +1703.03587 Mesoscale and Nanoscale Physics +1703.03588 Complex Variables +1703.03589 Cosmology and Nongalactic Astrophysics +1703.03590 Complex Variables +1703.03592 Computational Physics +1703.03593 Complex Variables +1703.03594 Distributed, Parallel, and Cluster Computing +1703.03595 Complex Variables +1703.03596 Machine Learning +1703.03597 +1703.03598 Complex Variables +1703.03599 Complex Variables +1703.03600 Earth and Planetary Astrophysics +1703.03601 +1703.03602 Statistical Mechanics +1703.03603 Data Structures and Algorithms +1703.03604 Astrophysics of Galaxies +1703.03607 Distributed, Parallel, and Cluster Computing +1703.03608 Computer Vision and Pattern Recognition +1703.03609 Social and Information Networks +1703.03610 +1703.03611 Geometric Topology +1703.03612 Instrumentation and Detectors +1703.03614 Lattice +1703.03615 +1703.03617 Information Theory +1703.03618 Materials Science +1703.03619 +1703.03620 Functional Analysis +1703.03621 Statistical Mechanics +1703.03622 Solar and Stellar Astrophysics +1703.03623 Mesoscale and Nanoscale Physics +1703.03624 Computer Vision and Pattern Recognition +1703.03625 Probability +1703.03627 Algebraic Geometry +1703.03628 Pattern Formation and Solitons +1703.03629 Optimization and Control +1703.03631 Software Engineering +1703.03634 Earth and Planetary Astrophysics +1703.03635 Classical Analysis and ODEs +1703.03636 Phenomenology +1703.03638 Mathematical Finance +1703.03640 Computation and Language +1703.03641 Social and Information Networks +1703.03642 Information Theory +1703.03643 Data Analysis, Statistics and Probability +1703.03646 Phenomenology +1703.03647 Functional Analysis +1703.03649 Robotics +1703.03650 Cosmology and Nongalactic Astrophysics +1703.03651 +1703.03656 Quantitative Methods +1703.03657 Software Engineering +1703.03658 Statistics Theory +1703.03659 Experiment +1703.03660 Functional Analysis +1703.03661 Complex Variables +1703.03662 Materials Science +1703.03663 Complex Variables +1703.03664 Computer Vision and Pattern Recognition +1703.03665 Functional Analysis +1703.03666 Computation and Language +1703.03667 +1703.03668 +1703.03669 Optimization and Control +1703.03670 Materials Science +1703.03671 +1703.03672 Mesoscale and Nanoscale Physics +1703.03676 Computational Physics +1703.03677 Information Theory +1703.03678 Disordered Systems and Neural Networks +1703.03679 Systems and Control +1703.03681 Superconductivity +1703.03682 +1703.03683 Algebraic Topology +1703.03684 Computational Physics +1703.03685 Optimization and Control +1703.03686 Materials Science +1703.03687 Computational Geometry +1703.03688 Computational Physics +1703.03689 Mesoscale and Nanoscale Physics +1703.03690 Systems and Control +1703.03691 Optimization and Control +1703.03692 Phenomenology +1703.03693 Artificial Intelligence +1703.03694 +1703.03695 Strongly Correlated Electrons +1703.03696 +1703.03697 +1703.03698 Algebraic Geometry +1703.03699 Mesoscale and Nanoscale Physics +1703.03700 Solar and Stellar Astrophysics +1703.03702 Computer Vision and Pattern Recognition +1703.03703 +1703.03704 +1703.03705 Exactly Solvable and Integrable Systems +1703.03706 +1703.03707 Soft Condensed Matter +1703.03708 Number Theory +1703.03709 Functional Analysis +1703.03711 Optics +1703.03712 Combinatorics +1703.03713 Instrumentation and Detectors +1703.03714 Computation and Language +1703.03715 Optics +1703.03716 Optics +1703.03717 Learning +1703.03718 +1703.03719 +1703.03720 Functional Analysis +1703.03721 Theory +1703.03722 Numerical Analysis +1703.03723 Analysis of PDEs +1703.03724 Functional Analysis +1703.03725 Differential Geometry +1703.03726 +1703.03727 Materials Science +1703.03729 Probability +1703.03730 Complex Variables +1703.03731 Logic +1703.03732 Plasma Physics +1703.03733 Plasma Physics +1703.03734 Symbolic Computation +1703.03735 Quantum Gases +1703.03736 Materials Science +1703.03739 Physics and Society +1703.03740 Other Computer Science +1703.03741 Social and Information Networks +1703.03742 Classical Analysis and ODEs +1703.03743 Numerical Analysis +1703.03744 Combinatorics +1703.03745 Lattice +1703.03746 +1703.03747 Algebraic Topology +1703.03749 Optimization and Control +1703.03751 Phenomenology +1703.03752 Group Theory +1703.03753 Applications +1703.03755 Combinatorics +1703.03756 Combinatorics +1703.03757 +1703.03759 Earth and Planetary Astrophysics +1703.03760 Statistical Mechanics +1703.03761 Soft Condensed Matter +1703.03762 Fluid Dynamics +1703.03763 Materials Science +1703.03765 Tissues and Organs +1703.03766 Biological Physics +1703.03767 Solar and Stellar Astrophysics +1703.03768 Neural and Evolutionary Computing +1703.03769 Optimization and Control +1703.03771 Computation and Language +1703.03773 Neural and Evolutionary Computing +1703.03774 Solar and Stellar Astrophysics +1703.03775 Mesoscale and Nanoscale Physics +1703.03776 Theory +1703.03778 Atmospheric and Oceanic Physics +1703.03780 General Mathematics +1703.03781 Strongly Correlated Electrons +1703.03782 Theory +1703.03783 Software Engineering +1703.03784 Number Theory +1703.03785 +1703.03786 Mesoscale and Nanoscale Physics +1703.03787 Other Quantitative Biology +1703.03788 Algebraic Topology +1703.03789 Mesoscale and Nanoscale Physics +1703.03790 Applications +1703.03792 Information Theory +1703.03793 Classical Physics +1703.03794 Group Theory +1703.03795 Quantum Gases +1703.03796 Phenomenology +1703.03797 Theory +1703.03798 Symplectic Geometry +1703.03800 Combinatorics +1703.03801 Biological Physics +math/0507238 Commutative Algebra +1007.1035 Optimization and Control +1107.5586 Optics +1107.5818 Atmospheric and Oceanic Physics +1110.3344 Optics +1110.6860 Optics +1201.2352 Optics +1206.3333 Optics +1207.3114 +1208.1868 Algebraic Topology +1208.5794 Number Theory +1211.3366 Analysis of PDEs +1212.5176 Optics +1212.6619 Fluid Dynamics +1301.5340 General Mathematics +1302.4531 Fluid Dynamics +1302.4697 Optics +1303.2239 Complex Variables +1304.2951 Optics +1307.3303 Geophysics +1308.3921 +1310.1882 Pricing of Securities +1401.4770 Probability +1401.6243 Analysis of PDEs +1401.7570 Solar and Stellar Astrophysics +1402.4342 Complex Variables +1404.4015 Probability +1405.0022 Logic +1405.4919 Dynamical Systems +1406.0270 +1406.2904 Optics +1406.3523 Rings and Algebras +1406.5633 Neural and Evolutionary Computing +1407.5917 Distributed, Parallel, and Cluster Computing +1408.6289 Phenomenology +1409.0490 Theory +1410.0340 Analysis of PDEs +1410.1170 Optics +1410.7141 Dynamical Systems +1502.01713 Algebraic Topology +1502.05610 Dynamical Systems +1502.07644 +1503.05433 Analysis of PDEs +1504.02660 Logic +1505.02383 Optics +1506.01567 Statistics Theory +1506.04005 Atomic Physics +1507.04788 Optics +1508.02410 Algebraic Topology +1508.03393 Metric Geometry +1508.05524 Combinatorics +1508.07337 Combinatorics +1509.01128 Classical Analysis and ODEs +1509.01691 Metric Geometry +1509.02866 Machine Learning +1509.03327 Probability +1509.07455 Computer Science and Game Theory +1509.08596 Mesoscale and Nanoscale Physics +1510.00964 Logic +1510.02324 Combinatorics +1510.03726 Programming Languages +1510.05076 Systems and Control +1510.07031 Probability +1510.08226 Statistics Theory +1511.00649 Numerical Analysis +1511.05894 Analysis of PDEs +1512.01802 Probability +1512.05690 Mesoscale and Nanoscale Physics +1512.05812 Mesoscale and Nanoscale Physics +1512.06438 Metric Geometry +1512.07267 Statistics Theory +1512.08405 Differential Geometry +1601.02307 Category Theory +1601.05045 +1601.05292 Geometric Topology +1601.06300 Instrumentation and Detectors +1601.06790 Astrophysics of Galaxies +1601.07600 Optimization and Control +1602.00703 +1602.02110 Algebraic Geometry +1602.03779 Artificial Intelligence +1602.05179 Learning +1602.05870 Combinatorics +1602.06459 Numerical Analysis +1602.06532 Number Theory +1603.00054 +1603.00786 Computation and Language +1603.01710 Group Theory +1603.02106 Information Theory +1603.04329 Mesoscale and Nanoscale Physics +1603.06288 Machine Learning +1603.06827 Combinatorics +1603.06857 +1603.08168 Probability +1603.08744 Dynamical Systems +1604.00555 Functional Analysis +1604.01369 Strongly Correlated Electrons +1604.01699 Analysis of PDEs +1604.03613 Group Theory +1604.03749 +1604.04039 Optimization and Control +1604.07152 Materials Science +1605.01108 Analysis of PDEs +1605.01849 Group Theory +1605.03653 Optimization and Control +1605.04567 Mesoscale and Nanoscale Physics +1605.08701 Methodology +1605.09123 Materials Science +1606.00450 +1606.03280 Optimization and Control +1606.03917 Pattern Formation and Solitons +1606.03933 Statistics Theory +1606.04323 Chemical Physics +1606.06871 Neural and Evolutionary Computing +1606.07587 Numerical Analysis +1606.09389 Combinatorics +1607.01487 +1607.03884 Computational Physics +1607.05076 Information Theory +1607.05316 Theory +1607.05410 +1607.05520 Functional Analysis +1607.06504 Strongly Correlated Electrons +1607.06612 Materials Science +1607.07129 Computer Vision and Pattern Recognition +1607.08467 +1608.00545 Mesoscale and Nanoscale Physics +1608.00742 Fluid Dynamics +1608.01687 Theory +1608.02123 Phenomenology +1608.02438 Quantum Gases +1608.03782 Functional Analysis +1608.04536 Mesoscale and Nanoscale Physics +1608.04835 Number Theory +1608.06313 Physics and Society +1608.06692 Theory +1608.07127 Phenomenology +1608.07859 Functional Analysis +1609.00722 +1609.01766 Quantum Algebra +1609.02031 Databases +1609.02819 Optimization and Control +1609.04035 +1609.04783 Phenomenology +1609.04943 Dynamical Systems +1609.05433 Logic +1609.08110 Earth and Planetary Astrophysics +1609.08495 Differential Geometry +1609.08920 Operator Algebras +1609.09416 +1609.09542 Pattern Formation and Solitons +1610.00151 Optimization and Control +1610.00480 Materials Science +1610.00850 Robotics +1610.02801 Cryptography and Security +1610.03422 +1610.03482 Astrophysics of Galaxies +1610.04504 +1610.04909 Adaptation and Self-Organizing Systems +1610.04994 Numerical Analysis +1610.05783 Phenomenology +1610.05911 Theory +1610.06014 Classical Physics +1610.06169 +1610.06292 Phenomenology +1610.07449 Solar and Stellar Astrophysics +1610.07602 Solar and Stellar Astrophysics +1610.07634 Solar and Stellar Astrophysics +1610.08419 Programming Languages +1610.08940 Mesoscale and Nanoscale Physics +1610.09263 Artificial Intelligence +1610.09802 Methodology +1610.10100 Quantum Gases +1611.00140 Probability +1611.00482 Phenomenology +1611.00498 Probability +1611.00940 Geophysics +1611.02237 Solar and Stellar Astrophysics +1611.02561 General Physics +1611.02895 Numerical Analysis +1611.03507 Phenomenology +1611.03703 +1611.03813 Optics +1611.05016 Quantum Gases +1611.05352 Information Theory +1611.05392 Materials Science +1611.05634 Pattern Formation and Solitons +1611.05712 Accelerator Physics +1611.06088 Cosmology and Nongalactic Astrophysics +1611.06195 Quantum Gases +1611.06992 Plasma Physics +1611.07099 Dynamical Systems +1611.07432 Statistical Finance +1611.08002 Computer Vision and Pattern Recognition +1611.08030 Fluid Dynamics +1611.09270 Rings and Algebras +1611.09381 Theory +1611.09886 Astrophysics of Galaxies +1611.09906 Programming Languages +1611.09979 Atomic Physics +1611.09980 Probability +1611.10241 +1612.00399 Strongly Correlated Electrons +1612.00482 +1612.00764 Geometric Topology +1612.00927 Classical Analysis and ODEs +1612.01701 Numerical Analysis +1612.01912 High Energy Astrophysical Phenomena +1612.02268 Superconductivity +1612.02309 Quantum Gases +1612.02738 Analysis of PDEs +1612.02815 Astrophysics of Galaxies +1612.03500 Theory +1612.03861 Algebraic Geometry +1612.03942 Mesoscale and Nanoscale Physics +1612.04824 Phenomenology +1612.05141 Algebraic Geometry +1612.05159 Learning +1612.05176 Materials Science +1612.05714 Mesoscale and Nanoscale Physics +1612.05742 Theory +1612.05767 Distributed, Parallel, and Cluster Computing +1612.06165 Atomic Physics +1612.06209 Cryptography and Security +1612.06681 Phenomenology +1612.06910 Algebraic Geometry +1612.07196 Quantum Gases +1612.07344 +1612.07440 Mesoscale and Nanoscale Physics +1612.07856 +1612.08213 Algebraic Geometry +1612.08269 Algebraic Geometry +1612.08319 Information Theory +1612.08398 Optics +1612.08712 Multimedia +1612.08790 Populations and Evolution +1612.09033 Fluid Dynamics +1612.09194 Dynamical Systems +1612.09260 +1612.09509 Materials Science +1701.00462 Mesoscale and Nanoscale Physics +1701.00771 Algebraic Geometry +1701.00819 +1701.00986 Lattice +1701.01019 Disordered Systems and Neural Networks +1701.01224 Soft Condensed Matter +1701.02274 Logic in Computer Science +1701.02388 Artificial Intelligence +1701.02936 +1701.03096 Earth and Planetary Astrophysics +1701.03726 Number Theory +1701.03727 Number Theory +1701.04502 +1701.05026 Theory +1701.06647 Fluid Dynamics +1701.06800 Distributed, Parallel, and Cluster Computing +1701.06950 High Energy Astrophysical Phenomena +1701.07874 Phenomenology +1701.08989 Soft Condensed Matter +1702.00033 Information Theory +1702.00129 +1702.00254 Computer Vision and Pattern Recognition +1702.00741 Classical Analysis and ODEs +1702.00840 +1702.02043 Probability +1702.02194 Quantum Algebra +1702.02322 Mesoscale and Nanoscale Physics +1702.02396 Information Theory +1702.02529 Algebraic Topology +1702.02641 Theory +1702.03612 Instrumentation and Detectors +1702.03798 Quantum Algebra +1702.03838 Trading and Market Microstructure +1702.04601 +1702.04823 Mesoscale and Nanoscale Physics +1702.04920 Strongly Correlated Electrons +1702.04948 +1702.04967 Economics +1702.05418 Classical Physics +1702.05493 High Energy Astrophysical Phenomena +1702.05687 Optics +1702.05784 Group Theory +1702.05915 +1702.06104 Materials Science +1702.06308 +1702.06664 Solar and Stellar Astrophysics +1702.06936 Earth and Planetary Astrophysics +1702.07886 Complex Variables +1702.08423 Computer Vision and Pattern Recognition +1702.08686 Statistical Mechanics +1702.08818 Theory +1703.00013 Cosmology and Nongalactic Astrophysics +1703.00319 Optimization and Control +1703.00545 Astrophysics of Galaxies +1703.00841 Phenomenology +1703.01136 Mesoscale and Nanoscale Physics +1703.01160 High Energy Astrophysical Phenomena +1703.01563 Number Theory +1703.01723 Exactly Solvable and Integrable Systems +1703.01841 Mesoscale and Nanoscale Physics +1703.02258 Geometric Topology +1703.02382 Systems and Control +1703.02407 Number Theory +1703.02536 Biological Physics +1703.02859 Computation and Language +1703.02924 Operator Algebras +1703.03110 Representation Theory +1703.03184 +1703.03420 Strongly Correlated Electrons +1703.03430 Statistical Mechanics +1703.03464 Astrophysics of Galaxies +1703.03613 Computer Vision and Pattern Recognition +1703.03680 Numerical Analysis +1703.03909 Networking and Internet Architecture +1703.03950 Optimization and Control +1703.04172 Dynamical Systems +1703.04747 Theory +1703.04753 Phenomenology +1703.05037 Solar and Stellar Astrophysics +1703.05177 Mesoscale and Nanoscale Physics +1703.05212 General Topology +1703.05363 Statistical Mechanics +1703.05457 Materials Science +1703.05468 Databases +1703.05629 +1703.05868 Computer Vision and Pattern Recognition +1703.06131 Methodology +1703.06273 Optimization and Control +1703.06518 Probability +1703.06762 Materials Science +1703.06900 Metric Geometry +1703.06923 Statistical Mechanics +1703.07133 Chemical Physics +1703.07297 Analysis of PDEs +1703.07301 Combinatorics +1703.07330 Computer Vision and Pattern Recognition +1703.07338 High Energy Astrophysical Phenomena +1703.07642 Phenomenology +1703.07746 +1703.07793 Strongly Correlated Electrons +1703.07899 +1703.07924 +1703.07949 Cryptography and Security +1703.07952 Information Theory +1703.07961 Commutative Algebra +1703.08152 Instrumentation and Detectors +1703.08155 Theory +1703.08157 +1703.08435 Combinatorics +1703.08561 Robotics +1703.08568 Metric Geometry +1703.08573 Astrophysics of Galaxies +1703.08578 Algebraic Geometry +1703.08604 Plasma Physics +1703.08640 Chemical Physics +1703.08795 Astrophysics of Galaxies +1703.08847 Strongly Correlated Electrons +1703.08854 Number Theory +1703.08916 Geometric Topology +1703.08943 Probability +1703.08981 Distributed, Parallel, and Cluster Computing +1703.08989 Functional Analysis +1703.09064 Emerging Technologies +1703.09081 Phenomenology +1703.09098 Physics and Society +1703.09155 Category Theory +1703.09194 Machine Learning +1703.09196 Combinatorics +1703.09219 Astrophysics of Galaxies +1703.09222 Theory +1703.09354 Instrumentation and Methods for Astrophysics +1703.09359 Numerical Analysis +1703.09457 Functional Analysis +1703.09477 Optimization and Control +1703.09479 Instrumentation and Methods for Astrophysics +1703.09549 Combinatorics +1703.09555 +1703.09602 Software Engineering +1703.09696 +1703.09697 Computational Physics +1703.09698 Analysis of PDEs +1703.09699 Phenomenology +1703.09700 Learning +1703.09701 Methodology +1703.09702 Phenomenology +1703.09703 High Energy Astrophysical Phenomena +1703.09704 High Energy Astrophysical Phenomena +1703.09705 Solar and Stellar Astrophysics +1703.09706 Mesoscale and Nanoscale Physics +1703.09707 Instrumentation and Methods for Astrophysics +1703.09708 Earth and Planetary Astrophysics +1703.09709 Astrophysics of Galaxies +1703.09710 Instrumentation and Methods for Astrophysics +1703.09711 Earth and Planetary Astrophysics +1703.09712 Cosmology and Nongalactic Astrophysics +1703.09713 Astrophysics of Galaxies +1703.09714 Solar and Stellar Astrophysics +1703.09715 Theory +1703.09716 Cosmology and Nongalactic Astrophysics +1703.09718 Phenomenology +1703.09719 Astrophysics of Galaxies +1703.09721 High Energy Astrophysical Phenomena +1703.09722 +1703.09725 Computer Vision and Pattern Recognition +1703.09726 Data Structures and Algorithms +1703.09727 Theory +1703.09728 Lattice +1703.09729 Theory +1703.09730 Astrophysics of Galaxies +1703.09731 Probability +1703.09732 Combinatorics +1703.09734 Classical Analysis and ODEs +1703.09735 Accelerator Physics +1703.09736 Mesoscale and Nanoscale Physics +1703.09737 Combinatorics +1703.09738 +1703.09739 Mesoscale and Nanoscale Physics +1703.09740 Quantum Gases +1703.09741 Earth and Planetary Astrophysics +1703.09742 Cosmology and Nongalactic Astrophysics +1703.09743 Theory +1703.09744 Computer Vision and Pattern Recognition +1703.09746 Computer Vision and Pattern Recognition +1703.09747 +1703.09748 Functional Analysis +1703.09749 Software Engineering +1703.09750 History and Overview +1703.09751 +1703.09752 Learning +1703.09753 Dynamical Systems +1703.09754 Optimization and Control +1703.09755 +1703.09756 Distributed, Parallel, and Cluster Computing +1703.09757 Accelerator Physics +1703.09758 Other Condensed Matter +1703.09759 Mesoscale and Nanoscale Physics +1703.09760 Classical Physics +1703.09762 +1703.09763 Cryptography and Security +1703.09764 Algebraic Topology +1703.09765 Computer Science and Game Theory +1703.09766 Machine Learning +1703.09767 Combinatorics +1703.09768 Statistical Mechanics +1703.09769 Astrophysics of Galaxies +1703.09770 Other Condensed Matter +1703.09771 Computer Vision and Pattern Recognition +1703.09772 Machine Learning +1703.09773 Statistical Mechanics +1703.09774 Social and Information Networks +1703.09775 Machine Learning +1703.09776 Phenomenology +1703.09777 Superconductivity +1703.09779 Computer Vision and Pattern Recognition +1703.09780 Populations and Evolution +1703.09781 Social and Information Networks +1703.09782 Computational Finance +1703.09783 Computer Vision and Pattern Recognition +1703.09784 Computer Vision and Pattern Recognition +1703.09785 Computers and Society +1703.09786 Chaotic Dynamics +1703.09787 Methodology +1703.09788 Computer Vision and Pattern Recognition +1703.09789 Systems and Control +1703.09790 Soft Condensed Matter +1703.09791 Differential Geometry +1703.09792 Probability +1703.09794 Computers and Society +1703.09795 Applications +1703.09796 Phenomenology +1703.09797 +1703.09798 Numerical Analysis +1703.09800 Learning +1703.09801 Analysis of PDEs +1703.09802 Phenomenology +1703.09803 Analysis of PDEs +1703.09804 Computer Science and Game Theory +1703.09805 Theory +1703.09806 Disordered Systems and Neural Networks +1703.09807 Databases +1703.09808 +1703.09809 Cryptography and Security +1703.09810 +1703.09812 Superconductivity +1703.09813 Machine Learning +1703.09814 Strongly Correlated Electrons +1703.09815 High Energy Astrophysical Phenomena +1703.09816 Mesoscale and Nanoscale Physics +1703.09817 Computation and Language +1703.09818 Materials Science +1703.09819 Superconductivity +1703.09820 Optics +1703.09821 Analysis of PDEs +1703.09822 Genomics +1703.09823 Databases +1703.09824 Instrumentation and Methods for Astrophysics +1703.09825 Computation and Language +1703.09826 Astrophysics of Galaxies +1703.09827 Cryptography and Security +1703.09828 Social and Information Networks +1703.09829 Astrophysics of Galaxies +1703.09830 +1703.09831 Computation and Language +1703.09832 Optimization and Control +1703.09833 Learning +1703.09834 Quantum Gases +1703.09835 +1703.09836 Superconductivity +1703.09837 Number Theory +1703.09838 Analysis of PDEs +1703.09839 Astrophysics of Galaxies +1703.09840 Earth and Planetary Astrophysics +1703.09842 Learning +1703.09843 Instrumentation and Detectors +1703.09844 Learning +1703.09845 Social and Information Networks +1703.09846 Cryptography and Security +1703.09847 Human-Computer Interaction +1703.09848 Information Theory +1703.09849 Analysis of PDEs +1703.09850 Superconductivity +1703.09851 Learning +1703.09852 Genomics +1703.09853 +1703.09854 Optimization and Control +1703.09855 Algebraic Geometry +1703.09856 Computer Vision and Pattern Recognition +1703.09857 Solar and Stellar Astrophysics +1703.09858 Instrumentation and Methods for Astrophysics +1703.09859 Computer Vision and Pattern Recognition +1703.09861 +1703.09862 Optics +1703.09863 Analysis of PDEs +1703.09864 Algebraic Geometry +1703.09865 Neural and Evolutionary Computing +1703.09866 Solar and Stellar Astrophysics +1703.09867 Astrophysics of Galaxies +1703.09868 Strongly Correlated Electrons +1703.09869 Networking and Internet Architecture +1703.09870 Combinatorics +1703.09871 Solar and Stellar Astrophysics +1703.09872 Phenomenology +1703.09874 Astrophysics of Galaxies +1703.09875 Networking and Internet Architecture +1703.09876 Computational Engineering, Finance, and Science +1703.09877 Systems and Control +1703.09878 Quantum Gases +1703.09879 Analysis of PDEs +1703.09880 Computer Vision and Pattern Recognition +1703.09881 Combinatorics +1703.09882 Analysis of PDEs +1703.09883 Instrumentation and Detectors +1703.09884 Chaotic Dynamics +1703.09885 Materials Science +1703.09886 Algebraic Geometry +1703.09887 +1703.09888 Category Theory +1703.09889 Earth and Planetary Astrophysics +1703.09890 +1703.09891 Computer Vision and Pattern Recognition +1703.09892 Combinatorics +1703.09893 Solar and Stellar Astrophysics +1703.09894 Phenomenology +1703.09895 Lattice +1703.09896 Functional Analysis +1703.09897 Exactly Solvable and Integrable Systems +1703.09898 Complex Variables +1703.09899 Optics +1703.09900 Superconductivity +1703.09901 Theory +1703.09902 Computation and Language +1703.09903 Statistical Mechanics +1703.09904 Rings and Algebras +1703.09906 Methodology +1703.09907 Logic in Computer Science +1703.09909 Analysis of PDEs +1703.09910 Formal Languages and Automata Theory +1703.09911 Computer Vision and Pattern Recognition +1703.09912 Computer Vision and Pattern Recognition +1703.09913 Computer Vision and Pattern Recognition +1703.09914 Analysis of PDEs +1703.09915 Algebraic Geometry +1703.09916 Computer Vision and Pattern Recognition +1703.09917 Materials Science +1703.09918 Analysis of PDEs +1703.09919 Astrophysics of Galaxies +1703.09921 High Energy Astrophysical Phenomena +1703.09922 Classical Analysis and ODEs +1703.09923 Artificial Intelligence +1703.09924 Optimization and Control +1703.09925 Cosmology and Nongalactic Astrophysics +1703.09926 Neural and Evolutionary Computing +1703.09927 Instrumentation and Detectors +1703.09928 Computer Vision and Pattern Recognition +1703.09929 Solar and Stellar Astrophysics +1703.09930 Computation +1703.09931 Probability +1703.09932 +1703.09933 Computer Vision and Pattern Recognition +1703.09934 Human-Computer Interaction +1703.09935 High Energy Astrophysical Phenomena +1703.09936 +1703.09937 Instrumentation and Methods for Astrophysics +1703.09939 Theory +1703.09940 Statistics Theory +1703.09941 Optics +1703.09942 Combinatorics +1703.09943 Atomic Physics +1703.09944 Optimization and Control +1703.09945 Group Theory +1703.09946 Combinatorics +1703.09947 Learning +1703.09948 Biological Physics +1703.09949 Systems and Control +1703.09950 Atomic Physics +1703.09951 Probability +1703.09952 Astrophysics of Galaxies +1703.09953 Combinatorics +1703.09954 +1703.09956 Machine Learning +1703.09957 Mesoscale and Nanoscale Physics +1703.09958 Numerical Analysis +1703.09959 Algebraic Geometry +1703.09960 Theory +1703.09961 +1703.09962 Artificial Intelligence +1703.09963 Exactly Solvable and Integrable Systems +1703.09964 Computer Vision and Pattern Recognition +1703.09965 Statistics Theory +1703.09966 High Energy Astrophysical Phenomena +1703.09967 Strongly Correlated Electrons +1703.09969 Combinatorics +1703.09970 Materials Science +1703.09971 Computer Vision and Pattern Recognition +1703.09973 Functional Analysis +1703.09974 Materials Science +1703.09975 Machine Learning +1703.09976 Soft Condensed Matter +1703.09977 Dynamical Systems +1703.09978 Plasma Physics +1703.09979 Superconductivity +1703.09980 Algebraic Geometry +1703.09981 Phenomenology +1703.09982 Atomic Physics +1703.09983 Computer Vision and Pattern Recognition +1703.09984 Soft Condensed Matter +1703.09985 Number Theory +1703.09986 Experiment +1703.09987 Probability +1703.09988 Programming Languages +1703.09989 Networking and Internet Architecture +1703.09990 Neurons and Cognition +1703.09991 History and Philosophy of Physics +1703.09992 Information Theory +1703.09993 Functional Analysis +1703.09994 Tissues and Organs +1703.09995 Strongly Correlated Electrons +1703.09996 Theory +1703.09997 +1703.09998 Differential Geometry +1703.09999 Mesoscale and Nanoscale Physics +1703.10000 Probability +1703.10001 Optimization and Control +1703.10002 Applications +1703.10003 +1703.10005 Phenomenology +1703.10006 Theory +1703.10007 Probability +1703.10008 Mesoscale and Nanoscale Physics +1703.10009 Astrophysics of Galaxies +1703.10010 Machine Learning +1703.10012 Atmospheric and Oceanic Physics +1703.10013 Dynamical Systems +1703.10014 Functional Analysis +1703.10015 Number Theory +1703.10016 Numerical Analysis +1703.10017 Strongly Correlated Electrons +1703.10018 Chemical Physics +1703.10019 Numerical Analysis +1703.10020 Solar and Stellar Astrophysics +1703.10021 +1703.10022 Solar and Stellar Astrophysics +1703.10023 Data Structures and Algorithms +1703.10024 Mesoscale and Nanoscale Physics +1703.10025 Computer Vision and Pattern Recognition +1703.10026 Fluid Dynamics +1703.10027 Programming Languages +1703.10028 +1703.10029 Analysis of PDEs +1703.10030 General Physics +1703.10031 Combinatorics +1703.10032 Plasma Physics +1703.10033 +1703.10034 Learning +1703.10035 Materials Science +1703.10036 Optics +1703.10037 General Physics +1703.10038 General Physics +1703.10039 Learning +1703.10040 Numerical Analysis +1703.10041 Classical Physics +1703.10042 +1703.10043 Astrophysics of Galaxies +1703.10044 Logic in Computer Science +1703.10045 Materials Science +1703.10046 Earth and Planetary Astrophysics +1703.10047 Number Theory +1703.10048 Atomic Physics +1703.10049 Robotics +1703.10050 +1703.10051 +1703.10052 General Physics +1703.10053 Geometric Topology +1703.10054 General Physics +1703.10055 +1703.10056 Formal Languages and Automata Theory +1703.10057 +1703.10058 Molecular Networks +1703.10059 Mesoscale and Nanoscale Physics +1703.10060 Solar and Stellar Astrophysics +1703.10062 Neurons and Cognition +1703.10063 Operator Algebras +1703.10064 Analysis of PDEs +1703.10065 Computation and Language +1703.10066 Disordered Systems and Neural Networks +1703.10067 Differential Geometry +1703.10068 Optics +1703.10069 Artificial Intelligence +1703.10071 Astrophysics of Galaxies +1703.10072 +1703.10073 Systems and Control +1703.10074 Mesoscale and Nanoscale Physics +1703.10075 Solar and Stellar Astrophysics +1703.10076 Number Theory +1703.10077 Materials Science +1703.10078 Materials Science +1703.10079 Statistical Mechanics +1703.10080 Statistical Mechanics +1703.10081 Formal Languages and Automata Theory +1703.10082 Medical Physics +1703.10083 Chemical Physics +1703.10084 Information Theory +1703.10085 High Energy Astrophysical Phenomena +1703.10086 Strongly Correlated Electrons +1703.10087 Strongly Correlated Electrons +1703.10088 Group Theory +1703.10089 Learning +1703.10090 Computation and Language +1703.10091 Mesoscale and Nanoscale Physics +1703.10092 Logic in Computer Science +1703.10093 Representation Theory +1703.10094 Learning +1703.10095 Theory +1703.10096 +1703.10097 Plasma Physics +1703.10098 Artificial Intelligence +1703.10099 Statistical Mechanics +1703.10100 Statistical Mechanics +1703.10101 Group Theory +1703.10102 Cosmology and Nongalactic Astrophysics +1703.10103 Phenomenology +1703.10104 High Energy Astrophysical Phenomena +1703.10105 Distributed, Parallel, and Cluster Computing +1703.10106 Computer Vision and Pattern Recognition +1703.10107 Statistics Theory +1703.10108 Functional Analysis +1703.10109 Phenomenology +1703.10110 Metric Geometry +1703.10111 Information Retrieval +1703.10112 Dynamical Systems +1703.10113 Chemical Physics +1703.10114 Computer Vision and Pattern Recognition +1703.10115 Number Theory +1703.10116 Combinatorics +1703.10118 +1703.10119 Computational Engineering, Finance, and Science +1703.10120 +1703.10121 Learning +1703.10122 Combinatorics +1703.10123 Phenomenology +1703.10124 Biomolecules +1703.10125 Computer Vision and Pattern Recognition +1703.10126 Classical Physics +1703.10127 Data Structures and Algorithms +1703.10128 Quantum Gases +1703.10129 Strongly Correlated Electrons +1703.10130 Solar and Stellar Astrophysics +1703.10131 Computer Vision and Pattern Recognition +1703.10133 +1703.10134 +1703.10135 Computation and Language +1703.10136 Methodology +1703.10137 Category Theory +1703.10138 Physics and Society +1703.10139 Robotics +1703.10140 Solar and Stellar Astrophysics +1703.10141 Strongly Correlated Electrons +1703.10142 Materials Science +1703.10143 Methodology +1703.10144 Logic +1703.10145 Differential Geometry +1703.10146 Probability +1703.10147 Theory +1703.10148 Logic +1703.10149 Cosmology and Nongalactic Astrophysics +1703.10150 Symplectic Geometry +1703.10151 Phenomenology +1703.10152 Computation and Language +1703.10153 Commutative Algebra +1703.10154 +1703.10155 Computer Vision and Pattern Recognition +1703.10156 Materials Science +1703.10157 Phenomenology +1703.10158 Theory +1703.10159 Theory +1703.10160 Phenomenology +gr-qc/0510085 +0705.1240 +0706.3209 +0901.1238 Solar and Stellar Astrophysics +0911.2772 Geometric Topology +0912.2646 Symplectic Geometry +1004.2270 Populations and Evolution +1005.0984 Solar and Stellar Astrophysics +1103.0674 Analysis of PDEs +1103.5866 Mesoscale and Nanoscale Physics +1110.0401 Probability +1110.5887 +1110.6091 Dynamical Systems +1201.0488 Computational Complexity +1203.2083 Number Theory +1203.4386 Solar and Stellar Astrophysics +1204.5372 Geometric Topology +1205.1851 Algebraic Geometry +1205.6915 High Energy Astrophysical Phenomena +1206.7061 Atomic and Molecular Clusters +1207.3160 Probability +1207.5939 Cosmology and Nongalactic Astrophysics +1209.2995 Category Theory +1211.3346 Numerical Analysis +1301.7424 Solar and Stellar Astrophysics +1303.3727 Fluid Dynamics +1305.3950 Strongly Correlated Electrons +1307.8140 Symplectic Geometry +1308.4228 Algebraic Geometry +1309.3827 Materials Science +1309.5456 Astrophysics of Galaxies +1310.2023 Atomic Physics +1310.6355 Cosmology and Nongalactic Astrophysics +1311.0954 +1311.1624 Strongly Correlated Electrons +1312.5193 Mesoscale and Nanoscale Physics +1402.0783 High Energy Astrophysical Phenomena +1403.3714 Probability +1403.5187 Algebraic Geometry +1403.7479 Geometric Topology +1404.0776 Optimization and Control +1404.7501 Solar and Stellar Astrophysics +1405.1017 Analysis of PDEs +1405.2288 Strongly Correlated Electrons +1406.1506 Cosmology and Nongalactic Astrophysics +1407.6612 Statistical Mechanics +1408.3670 Astrophysics of Galaxies +1409.0855 Cosmology and Nongalactic Astrophysics +1409.2838 Cosmology and Nongalactic Astrophysics +1409.8463 Analysis of PDEs +1409.8465 Analysis of PDEs +1409.8593 Numerical Analysis +1410.1192 Cosmology and Nongalactic Astrophysics +1410.4111 Astrophysics of Galaxies +1410.5446 Cosmology and Nongalactic Astrophysics +1410.7394 Astrophysics of Galaxies +1411.2288 Geometric Topology +1411.5134 Logic +1411.5212 Group Theory +1411.5706 Numerical Analysis +1412.0818 High Energy Astrophysical Phenomena +1412.4799 Differential Geometry +1412.7542 Solar and Stellar Astrophysics +1501.02504 Geometric Topology +1502.03271 Analysis of PDEs +1502.03811 Group Theory +1502.05053 Astrophysics of Galaxies +1502.06262 Dynamical Systems +1502.06483 Representation Theory +1503.00584 Commutative Algebra +1503.01592 Combinatorics +1503.03971 Differential Geometry +1503.04091 Dynamical Systems +1504.05121 Number Theory +1505.01061 Theory +1505.01435 +1505.01951 Strongly Correlated Electrons +1505.04477 Dynamical Systems +1506.03050 Algebraic Geometry +1506.03053 +1506.03669 Analysis of PDEs +1506.03671 Analysis of PDEs +1506.03779 Combinatorics +1506.04468 Statistical Mechanics +1506.05125 Astrophysics of Galaxies +1506.08098 Dynamical Systems +1506.08274 Cosmology and Nongalactic Astrophysics +1506.08434 +1507.00101 Computer Vision and Pattern Recognition +1507.01905 Probability +1507.02995 Classical Analysis and ODEs +1507.03870 Analysis of PDEs +1507.05483 Spectral Theory +1507.05872 Functional Analysis +1507.05936 Computer Vision and Pattern Recognition +1507.07356 Analysis of PDEs +1508.01014 Discrete Mathematics +1508.04658 Statistical Mechanics +1509.00632 Group Theory +1509.00853 Astrophysics of Galaxies +1509.05227 Combinatorics +1509.05441 Strongly Correlated Electrons +1509.06784 Representation Theory +1509.07390 +1510.00233 Solar and Stellar Astrophysics +1510.00357 Representation Theory +1510.02758 Rings and Algebras +1510.03661 Probability +1510.05814 +1511.02025 Machine Learning +1511.02177 +1511.02572 Differential Geometry +1511.02581 +1511.03597 Social and Information Networks +1511.03998 +1511.06994 +1512.01201 Number Theory +1512.01207 Number Theory +1512.02171 Discrete Mathematics +1512.03328 Theory +1512.03805 +1512.04377 Materials Science +1512.05162 +1512.06071 Group Theory +1512.07288 Cosmology and Nongalactic Astrophysics +1512.07591 Phenomenology +1512.07969 High Energy Astrophysical Phenomena +1601.01697 Strongly Correlated Electrons +1601.02297 Probability +1601.02836 Theory +1601.05118 Databases +1601.05153 Earth and Planetary Astrophysics +1601.06187 +1601.06257 Geometric Topology +1601.07309 Mesoscale and Nanoscale Physics +1601.07568 Materials Science +1602.00019 Phenomenology +1602.00026 Mesoscale and Nanoscale Physics +1602.00303 Solar and Stellar Astrophysics +1602.01187 Metric Geometry +1602.01627 Rings and Algebras +1602.02271 Representation Theory +1602.02906 Number Theory +1602.05946 Strongly Correlated Electrons +1602.06663 Strongly Correlated Electrons +1602.06745 Mesoscale and Nanoscale Physics +1602.06808 Algebraic Topology +1602.06996 Algebraic Geometry +1602.07076 +1602.07079 Atmospheric and Oceanic Physics +1602.09083 Pattern Formation and Solitons +1603.00112 +1603.00339 Fluid Dynamics +1603.00451 Quantum Gases +1603.01165 Other Condensed Matter +1603.01173 Spectral Theory +1603.01342 Logic +1603.02370 +1603.02611 Data Structures and Algorithms +1603.03087 Strongly Correlated Electrons +1603.03491 Computer Science and Game Theory +1603.04273 Superconductivity +1603.04359 Strongly Correlated Electrons +1603.04465 Statistical Mechanics +1603.04660 Information Theory +1603.04664 Information Theory +1603.04848 Instrumentation and Detectors +1603.04878 High Energy Astrophysical Phenomena +1603.05299 Solar and Stellar Astrophysics +1603.05427 Materials Science +1603.06590 +1603.06868 Mesoscale and Nanoscale Physics +1603.08057 Methodology +1603.08662 Cosmology and Nongalactic Astrophysics +1603.08790 +1603.08817 Information Theory +1604.00321 +1604.01493 +1604.01645 Materials Science +1604.01676 Theory +1604.01723 Combinatorics +1604.02618 Symbolic Computation +1604.03065 Theory +1604.03905 Phenomenology +1604.04148 Combinatorics +1604.04219 Quantum Algebra +1604.04324 Instrumentation and Methods for Astrophysics +1604.04461 Phenomenology +1604.04571 Algebraic Geometry +1604.04697 Earth and Planetary Astrophysics +1604.05795 +1604.06388 +1604.06560 Logic +1604.06840 High Energy Astrophysical Phenomena +1604.08182 Computer Vision and Pattern Recognition +1604.08190 Disordered Systems and Neural Networks +1605.00138 Representation Theory +1605.00263 Logic +1605.00606 Optimization and Control +1605.00645 High Energy Astrophysical Phenomena +1605.00708 Classical Analysis and ODEs +1605.02639 Solar and Stellar Astrophysics +1605.04312 +1605.05322 Strongly Correlated Electrons +1605.05502 Astrophysics of Galaxies +1605.05881 Phenomenology +1605.05968 Probability +1605.07305 Social and Information Networks +1605.07510 Theory +1605.07618 Astrophysics of Galaxies +1605.08174 Learning +1605.08729 Instrumentation and Detectors +1605.09310 Quantum Gases +1605.09381 Astrophysics of Galaxies +1605.09398 Cosmology and Nongalactic Astrophysics +1605.09754 Complex Variables +1606.00431 Phenomenology +1606.00988 Statistical Mechanics +1606.01077 Software Engineering +1606.01216 Numerical Analysis +1606.01904 +1606.01906 +1606.02675 +1606.02867 Information Theory +1606.03214 Methodology +1606.03443 +1606.03596 Materials Science +1606.04401 Strongly Correlated Electrons +1606.04547 Statistical Mechanics +1606.04958 Theory +1606.07249 Algebraic Geometry +1606.07571 Astrophysics of Galaxies +1606.07721 Cosmology and Nongalactic Astrophysics +1606.07767 Neural and Evolutionary Computing +1606.08681 Plasma Physics +1606.08976 Metric Geometry +1606.09358 Superconductivity +1607.00227 Quantum Gases +1607.00269 Cryptography and Security +1607.00787 Astrophysics of Galaxies +1607.01112 Atomic Physics +1607.01256 Fluid Dynamics +1607.01550 High Energy Astrophysical Phenomena +1607.01699 +1607.01733 Numerical Analysis +1607.03532 Soft Condensed Matter +1607.04260 Earth and Planetary Astrophysics +1607.04534 Phenomenology +1607.05406 Cosmology and Nongalactic Astrophysics +1607.05571 Phenomenology +1607.06156 Distributed, Parallel, and Cluster Computing +1607.06295 Quantum Gases +1607.06403 Optics +1607.06511 Computer Science and Game Theory +1607.06827 Phenomenology +1607.06895 +1607.07461 +1607.07550 Phenomenology +1607.08246 Theory +1607.08609 Cosmology and Nongalactic Astrophysics +1607.08697 Instrumentation and Methods for Astrophysics +1607.08701 Materials Science +1608.00551 Cosmology and Nongalactic Astrophysics +1608.00618 Earth and Planetary Astrophysics +1608.00863 Experiment +1608.00956 Probability +1608.01111 High Energy Astrophysical Phenomena +1608.01205 Statistical Mechanics +1608.01293 Theory +1608.01420 High Energy Astrophysical Phenomena +1608.02151 Functional Analysis +1608.02323 Statistical Mechanics +1608.02353 Chemical Physics +1608.03015 Solar and Stellar Astrophysics +1608.03145 Biological Physics +1608.03586 Disordered Systems and Neural Networks +1608.03841 Geophysics +1608.04219 Symbolic Computation +1608.04345 Cosmology and Nongalactic Astrophysics +1608.04641 Theory +1608.05309 Instrumentation and Detectors +1608.05345 Phenomenology +1608.05641 +1608.05790 Materials Science +1608.06004 Cosmology and Nongalactic Astrophysics +1608.06231 Phenomenology +1608.06396 Materials Science +1608.07339 Phenomenology +1608.07347 Probability +1608.07388 High Energy Astrophysical Phenomena +1608.07642 High Energy Astrophysical Phenomena +1608.08092 Superconductivity +1608.08217 Astrophysics of Galaxies +1608.08701 Quantum Gases +1609.00080 Materials Science +1609.00090 Databases +1609.00622 +1609.00645 +1609.00857 +1609.00941 High Energy Astrophysical Phenomena +1609.01122 Solar and Stellar Astrophysics +1609.01132 +1609.01272 Cosmology and Nongalactic Astrophysics +1609.01584 Phenomenology +1609.01770 Phenomenology +1609.02039 Astrophysics of Galaxies +1609.02161 Materials Science +1609.02279 Instrumentation and Methods for Astrophysics +1609.02370 High Energy Astrophysical Phenomena +1609.02568 +1609.02991 Mesoscale and Nanoscale Physics +1609.03383 Mesoscale and Nanoscale Physics +1609.03670 Superconductivity +1609.03674 Earth and Planetary Astrophysics +1609.04189 Mesoscale and Nanoscale Physics +1609.04442 Classical Physics +1609.04462 Astrophysics of Galaxies +1609.04841 Solar and Stellar Astrophysics +1609.04901 +1609.04948 Solar and Stellar Astrophysics +1609.05251 Phenomenology +1609.05902 Phenomenology +1609.06400 Optics +1609.06708 Solar and Stellar Astrophysics +1609.07148 High Energy Astrophysical Phenomena +1609.07262 +1609.08018 Earth and Planetary Astrophysics +1609.08052 Astrophysics of Galaxies +1609.08501 High Energy Astrophysical Phenomena +1609.08748 Cosmology and Nongalactic Astrophysics +1609.09128 Optics +1609.09422 Solar and Stellar Astrophysics +1609.09712 Optics +1610.00114 Soft Condensed Matter +1610.00131 Mesoscale and Nanoscale Physics +1610.00228 Numerical Analysis +1610.00346 Atomic and Molecular Clusters +1610.00512 Analysis of PDEs +1610.00854 Cosmology and Nongalactic Astrophysics +1610.01014 Medical Physics +1610.01300 Theory +1610.01389 Earth and Planetary Astrophysics +1610.01552 Functional Analysis +1610.01610 Earth and Planetary Astrophysics +1610.01632 High Energy Astrophysical Phenomena +1610.02099 Astrophysics of Galaxies +1610.02294 Optics +1610.02313 Mesoscale and Nanoscale Physics +1610.02570 Numerical Analysis +1610.02904 Phenomenology +1610.03042 Computational Physics +1610.03171 Strongly Correlated Electrons +1610.03272 +1610.03324 Solar and Stellar Astrophysics +1610.03503 Statistical Mechanics +1610.03539 Theory +1610.04249 Astrophysics of Galaxies +1610.04477 Strongly Correlated Electrons +1610.04677 Cosmology and Nongalactic Astrophysics +1610.05429 Phenomenology +1610.05468 Strongly Correlated Electrons +1610.05813 Group Theory +1610.05914 Group Theory +1610.06495 Cryptography and Security +1610.06556 Materials Science +1610.07117 Phenomenology +1610.07196 Mesoscale and Nanoscale Physics +1610.07246 Strongly Correlated Electrons +1610.07444 Soft Condensed Matter +1610.07614 Solar and Stellar Astrophysics +1610.07810 Lattice +1610.07865 +1610.07976 Soft Condensed Matter +1610.08091 Classical Physics +1610.08142 Experiment +1610.08321 High Energy Astrophysical Phenomena +1610.08440 High Energy Astrophysical Phenomena +1610.08484 Quantitative Methods +1610.08519 Theory +1610.08753 +1610.08866 Geometric Topology +1610.08882 Cosmology and Nongalactic Astrophysics +1610.08953 Theory +1610.09000 Mesoscale and Nanoscale Physics +1610.09060 Astrophysics of Galaxies +1610.09177 Solar and Stellar Astrophysics +1610.09229 +1610.09243 Theory +1610.09342 Mesoscale and Nanoscale Physics +1610.09465 Information Theory +1610.09560 Strongly Correlated Electrons +1610.09939 Physics and Society +1610.10025 Machine Learning +1611.00009 Phenomenology +1611.00042 Astrophysics of Galaxies +1611.00120 +1611.00199 Space Physics +1611.00390 Fluid Dynamics +1611.00477 Representation Theory +1611.00632 Solar and Stellar Astrophysics +1611.00753 +1611.00879 +1611.00954 Social and Information Networks +1611.01028 Atomic Physics +1611.01604 Computation and Language +1611.02152 Solar and Stellar Astrophysics +1611.02311 Soft Condensed Matter +1611.02671 Solar and Stellar Astrophysics +1611.02700 Instrumentation and Methods for Astrophysics +1611.02783 +1611.02794 +1611.02835 Superconductivity +1611.02925 Statistical Mechanics +1611.03568 Experiment +1611.03596 Physics and Society +1611.03828 Materials Science +1611.03912 Strongly Correlated Electrons +1611.03928 Combinatorics +1611.03931 Rings and Algebras +1611.04205 +1611.04693 Phenomenology +1611.04780 Superconductivity +1611.04820 Statistical Mechanics +1611.04830 Operator Algebras +1611.04879 High Energy Astrophysical Phenomena +1611.04932 Phenomenology +1611.05062 +1611.05071 Solar and Stellar Astrophysics +1611.05189 Materials Science +1611.05221 Mesoscale and Nanoscale Physics +1611.05254 Astrophysics of Galaxies +1611.05307 Statistical Mechanics +1611.05361 Strongly Correlated Electrons +1611.05968 Astrophysics of Galaxies +1611.06257 Optics +1611.06773 +1611.06786 Solar and Stellar Astrophysics +1611.06817 Experiment +1611.07445 Mesoscale and Nanoscale Physics +1611.07757 Materials Science +1611.07986 Solar and Stellar Astrophysics +1611.08023 +1611.08341 Phenomenology +1611.08522 Experiment +1611.08579 Superconductivity +1611.08593 Materials Science +1611.08611 High Energy Astrophysical Phenomena +1611.08741 Atomic Physics +1611.08786 Phenomenology +1611.09285 Mesoscale and Nanoscale Physics +1611.09409 Theory +1611.09416 High Energy Astrophysical Phenomena +1611.09453 Mesoscale and Nanoscale Physics +1611.09507 High Energy Astrophysical Phenomena +1611.09718 Computer Vision and Pattern Recognition +1611.10174 Medical Physics +1611.10344 Theory +1611.10360 Solar and Stellar Astrophysics +1612.00210 Lattice +1612.00231 High Energy Astrophysical Phenomena +1612.00251 Quantum Gases +1612.00488 Astrophysics of Galaxies +1612.00527 +1612.00939 Methodology +1612.01280 Solar and Stellar Astrophysics +1612.01359 +1612.01496 Space Physics +1612.01716 Theory +1612.02047 Astrophysics of Galaxies +1612.02124 +1612.02191 +1612.02397 Numerical Analysis +1612.02533 Optics +1612.02554 Instrumentation and Methods for Astrophysics +1612.02688 Astrophysics of Galaxies +1612.02730 Algebraic Geometry +1612.02758 Lattice +1612.02881 Solar and Stellar Astrophysics +1612.03051 Quantum Gases +1612.03565 Phenomenology +1612.03728 Astrophysics of Galaxies +1612.03831 Probability +1612.03912 Earth and Planetary Astrophysics +1612.04004 Astrophysics of Galaxies +1612.04374 Theory +1612.04606 Phenomenology +1612.04696 Superconductivity +1612.05170 Phenomenology +1612.05401 +1612.05418 Mesoscale and Nanoscale Physics +1612.05423 Combinatorics +1612.05556 Materials Science +1612.05599 Solar and Stellar Astrophysics +1612.05643 Astrophysics of Galaxies +1612.06175 Solar and Stellar Astrophysics +1612.06406 Solar and Stellar Astrophysics +1612.06985 Phenomenology +1612.07083 High Energy Astrophysical Phenomena +1612.07138 Phenomenology +1612.07434 Earth and Planetary Astrophysics +1612.07887 Solar and Stellar Astrophysics +1612.08406 Machine Learning +1612.08523 +1612.08771 Earth and Planetary Astrophysics +1612.08923 Statistics Theory +1612.08978 Theory +1612.08990 Solar and Stellar Astrophysics +1612.08996 High Energy Astrophysical Phenomena +1612.09067 Information Theory +1612.09390 Information Theory +1612.09479 Solar and Stellar Astrophysics +1612.09483 Strongly Correlated Electrons +1701.00012 Earth and Planetary Astrophysics +1701.00081 +1701.00138 Computation and Language +1701.00308 Solar and Stellar Astrophysics +1701.00364 Astrophysics of Galaxies +1701.00484 Instrumentation and Methods for Astrophysics +1701.00508 General Topology +1701.00922 Solar and Stellar Astrophysics +1701.01034 Astrophysics of Galaxies +1701.01339 Cosmology and Nongalactic Astrophysics +1701.01446 Solar and Stellar Astrophysics +1701.01786 Solar and Stellar Astrophysics +1701.02100 +1701.02184 Astrophysics of Galaxies +1701.02196 Solar and Stellar Astrophysics +1701.02309 High Energy Astrophysical Phenomena +1701.02561 Phenomenology +1701.02723 Solar and Stellar Astrophysics +1701.02914 High Energy Astrophysical Phenomena +1701.03032 Instrumentation and Methods for Astrophysics +1701.03114 +1701.03125 Strongly Correlated Electrons +1701.03226 Astrophysics of Galaxies +1701.03369 Cosmology and Nongalactic Astrophysics +1701.03494 Rings and Algebras +1701.03497 Solar and Stellar Astrophysics +1701.03499 Hardware Architecture +1701.03527 High Energy Astrophysical Phenomena +1701.03557 High Energy Astrophysical Phenomena +1701.03665 Space Physics +1701.03713 High Energy Astrophysical Phenomena +1701.03719 +1701.03803 High Energy Astrophysical Phenomena +1701.03859 +1701.03943 Populations and Evolution +1701.04010 Computer Vision and Pattern Recognition +1701.04272 Astrophysics of Galaxies +1701.04453 Cosmology and Nongalactic Astrophysics +1701.04511 Numerical Analysis +1701.04845 Astrophysics of Galaxies +1701.04892 Earth and Planetary Astrophysics +1701.04987 +1701.05084 Computer Vision and Pattern Recognition +1701.05618 Mesoscale and Nanoscale Physics +1701.05806 Combinatorics +1701.05865 Solar and Stellar Astrophysics +1701.06195 Materials Science +1701.06453 Solar and Stellar Astrophysics +1701.06608 Number Theory +1701.06896 +1701.07329 Representation Theory +1701.07471 Phenomenology +1701.07510 Astrophysics of Galaxies +1701.07887 Astrophysics of Galaxies +1701.08082 Atomic Physics +1701.08356 Solar and Stellar Astrophysics +1701.08370 +1701.08711 Computation and Language +1701.08744 Information Retrieval +1701.08793 Solar and Stellar Astrophysics +1701.08812 Atomic Physics +1701.08813 Atomic Physics +1701.09182 Multimedia +1702.00495 Astrophysics of Galaxies +1702.00655 Other Condensed Matter +1702.00696 +1702.00757 Dynamical Systems +1702.00996 Computational Physics +1702.01280 Data Structures and Algorithms +1702.01408 +1702.01430 Group Theory +1702.01521 Experiment +1702.01630 Analysis of PDEs +1702.01699 Number Theory +1702.01715 Software Engineering +1702.01743 Astrophysics of Galaxies +1702.01853 +1702.01955 Theory +1702.02011 Solar and Stellar Astrophysics +1702.02191 +1702.02337 Optics +1702.02409 Differential Geometry +1702.02544 Dynamical Systems +1702.02548 Atomic Physics +1702.02646 Instrumentation and Detectors +1702.02647 Rings and Algebras +1702.02698 Phenomenology +1702.02707 Computation +1702.02782 Superconductivity +1702.02913 +1702.02950 Mesoscale and Nanoscale Physics +1702.03005 Astrophysics of Galaxies +1702.03020 Phenomenology +1702.03122 Analysis of PDEs +1702.03175 Combinatorics +1702.03206 Astrophysics of Galaxies +1702.03224 Experiment +1702.03318 Populations and Evolution +1702.03402 Learning +1702.03416 Lattice +1702.03593 Materials Science +1702.03605 Learning +1702.03653 Astrophysics of Galaxies +1702.03662 Numerical Analysis +1702.03687 Cosmology and Nongalactic Astrophysics +1702.03722 Theory +1702.03819 Geometric Topology +1702.03897 Popular Physics +1702.03909 Mesoscale and Nanoscale Physics +1702.03922 Rings and Algebras +1702.03923 +1702.03924 Space Physics +1702.03926 Physics and Society +1702.03927 High Energy Astrophysical Phenomena +1702.03928 Phenomenology +1702.03929 Disordered Systems and Neural Networks +1702.03930 Instrumentation and Methods for Astrophysics +1702.03931 Instrumentation and Methods for Astrophysics +1702.03932 Disordered Systems and Neural Networks +1702.03933 Astrophysics of Galaxies +1702.03934 Theory +1702.03935 Distributed, Parallel, and Cluster Computing +1702.03937 Astrophysics of Galaxies +1702.03939 Mesoscale and Nanoscale Physics +1702.03940 Cosmology and Nongalactic Astrophysics +1702.03941 Astrophysics of Galaxies +1702.03942 Astrophysics of Galaxies +1702.03944 +1702.03945 +1702.03946 +1702.03947 +1702.03948 Dynamical Systems +1702.03949 Theory +1702.03950 Information Theory +1702.03951 Methodology +1702.03952 High Energy Astrophysical Phenomena +1702.03953 Information Theory +1702.03954 Phenomenology +1702.03956 Logic +1702.03957 Theory +1702.03958 Theory +1702.03959 Data Structures and Algorithms +1702.03960 +1702.03962 Algebraic Geometry +1702.03963 Biological Physics +1702.03964 Computation and Language +1702.03965 Cryptography and Security +1702.03966 Strongly Correlated Electrons +1702.03967 Dynamical Systems +1702.03968 Earth and Planetary Astrophysics +1702.03969 Physics and Society +1702.03970 Computer Vision and Pattern Recognition +1702.03971 High Energy Astrophysical Phenomena +1702.03972 Dynamical Systems +1702.03973 Solar and Stellar Astrophysics +1702.03974 Geometric Topology +1702.03975 +1702.03976 Mesoscale and Nanoscale Physics +1702.03977 Economics +1702.03978 Computer Science and Game Theory +1702.03979 Materials Science +1702.03980 Networking and Internet Architecture +1702.03981 Logic in Computer Science +1702.03982 +1702.03983 Number Theory +1702.03984 Phenomenology +1702.03985 Classical Analysis and ODEs +1702.03987 Classical Physics +1702.03989 Data Structures and Algorithms +1702.03990 Dynamical Systems +1702.03991 Digital Libraries +1702.03992 Biological Physics +1702.03993 Neurons and Cognition +1702.03994 Machine Learning +1702.03995 Algebraic Topology +1702.03996 Complex Variables +1702.03998 Chemical Physics +1702.03999 Optimization and Control +1702.04000 Phenomenology +1702.04001 Combinatorics +1702.04002 General Topology +1702.04003 Analysis of PDEs +1702.04004 History and Overview +1702.04005 +1702.04006 High Energy Astrophysical Phenomena +1702.04007 Combinatorics +1702.04008 Machine Learning +1702.04009 Chemical Physics +1702.04010 Exactly Solvable and Integrable Systems +1702.04011 Combinatorics +1702.04012 Mesoscale and Nanoscale Physics +1702.04013 Learning +1702.04015 Algebraic Geometry +1702.04016 Analysis of PDEs +1702.04018 Machine Learning +1702.04019 Metric Geometry +1702.04020 Networking and Internet Architecture +1702.04022 Robotics +1702.04023 Mesoscale and Nanoscale Physics +1702.04024 Distributed, Parallel, and Cluster Computing +1702.04025 Methodology +1702.04026 Combinatorics +1702.04027 +1702.04028 Distributed, Parallel, and Cluster Computing +1702.04029 Numerical Analysis +1702.04030 +1702.04031 Methodology +1702.04033 Analysis of PDEs +1702.04036 Computers and Society +1702.04037 Computer Vision and Pattern Recognition +1702.04038 Materials Science +1702.04039 Mesoscale and Nanoscale Physics +1702.04040 Computer Vision and Pattern Recognition +1702.04041 Dynamical Systems +1702.04042 Theory +1702.04043 Physics Education +1702.04044 Applications +1702.04045 Computational Physics +1702.04046 Social and Information Networks +1702.04047 Artificial Intelligence +1702.04050 Probability +1702.04051 Combinatorics +1702.04052 Applications +1702.04053 Pricing of Securities +1702.04054 Information Theory +1702.04057 Plasma Physics +1702.04058 Theory +1702.04059 Dynamical Systems +1702.04060 Combinatorics +1702.04061 Materials Science +1702.04062 Dynamical Systems +1702.04063 Instrumentation and Methods for Astrophysics +1702.04064 Analysis of PDEs +1702.04065 Statistics Theory +1702.04066 Computation and Language +1702.04067 Discrete Mathematics +1702.04068 Phenomenology +1702.04070 Algebraic Topology +1702.04071 Geometric Topology +1702.04072 Number Theory +1702.04073 Combinatorics +1702.04075 Plasma Physics +1702.04079 Atomic and Molecular Clusters +1702.04080 Information Theory +1702.04081 Materials Science +1702.04083 Analysis of PDEs +1702.04084 Atomic Physics +1702.04085 Statistical Mechanics +1702.04087 Probability +1702.04088 Populations and Evolution +1702.04090 Number Theory +1702.04092 Chemical Physics +1702.04095 Probability +1702.04097 Disordered Systems and Neural Networks +1702.04098 Information Theory +1702.04099 Number Theory +1702.04101 Optics +1702.04102 Fluid Dynamics +1702.04103 Atomic Physics +1702.04104 Superconductivity +1702.04107 Soft Condensed Matter +1702.04108 Applications +1702.04111 Computer Vision and Pattern Recognition +1702.04113 Astrophysics of Galaxies +1702.04114 Computer Vision and Pattern Recognition +1702.04115 Analysis of PDEs +1702.04116 Atomic Physics +1702.04117 Biological Physics +1702.04118 +1702.04119 Atomic Physics +1702.04121 Machine Learning +1702.04123 Algebraic Geometry +1702.04124 Astrophysics of Galaxies +1702.04125 Computer Vision and Pattern Recognition +1702.04126 Machine Learning +1702.04127 +1702.04128 Fluid Dynamics +1702.04129 Mesoscale and Nanoscale Physics +1702.04130 +1702.04131 Theory +1702.04132 Classical Physics +1702.04134 Theory +1702.04135 Optics +1702.04136 Quantum Gases +1702.04137 Theory +1702.04138 Computer Science and Game Theory +1702.04139 Phenomenology +1702.04140 Quantum Algebra +1702.04141 Materials Science +1702.04142 Networking and Internet Architecture +1702.04143 Networking and Internet Architecture +1702.04145 Quantum Gases +1702.04146 +1702.04147 Combinatorics +1702.04148 Theory +1702.04149 History and Philosophy of Physics +1702.04151 High Energy Astrophysical Phenomena +1702.04152 Differential Geometry +1702.04153 Plasma Physics +1702.04154 Other Condensed Matter +1702.04155 Mesoscale and Nanoscale Physics +1702.04156 Materials Science +1702.04157 Dynamical Systems +1702.04158 Strongly Correlated Electrons +1702.04159 Materials Science +1702.04160 Theory +1702.04161 Phenomenology +1702.04162 Strongly Correlated Electrons +1702.04163 Logic +1702.04164 Distributed, Parallel, and Cluster Computing +1702.04165 Instrumentation and Methods for Astrophysics +1702.04166 Number Theory +1702.04168 Analysis of PDEs +1702.04169 Quantum Gases +1702.04170 Data Structures and Algorithms +1702.04171 Classical Analysis and ODEs +1702.04172 Soft Condensed Matter +1702.04173 Cryptography and Security +1702.04174 Computer Vision and Pattern Recognition +1702.04175 Plasma Physics +1702.04176 Materials Science +1702.04178 Strongly Correlated Electrons +1702.04180 Soft Condensed Matter +1702.04181 +1702.04183 Biological Physics +1702.04184 General Physics +1702.04185 Phenomenology +1702.04186 Chemical Physics +1702.04187 Phenomenology +1702.04188 Optics +1702.04190 Classical Analysis and ODEs +1702.04191 General Physics +1702.04192 General Physics +1702.04193 Instrumentation and Methods for Astrophysics +1702.04194 General Physics +1702.04195 Neurons and Cognition +1702.04196 +1702.04197 Applications +1702.04198 Analysis of PDEs +1702.04199 Metric Geometry +1702.04200 Number Theory +1702.04201 Strongly Correlated Electrons +1702.04202 Mesoscale and Nanoscale Physics +1702.04203 Information Theory +1702.04204 +1702.04206 Representation Theory +1702.04207 Phenomenology +1702.04208 Phenomenology +1702.04209 Algebraic Geometry +1702.04210 Statistical Mechanics +1702.04211 Data Structures and Algorithms +1702.04212 +1702.04213 Computers and Society +1702.04214 Computers and Society +1702.04215 Computers and Society +1702.04216 Computers and Society +1702.04217 Computers and Society +1702.04218 Computers and Society +1702.04219 Computers and Society +1702.04220 Computers and Society +1702.04221 Computers and Society +1702.04222 Analysis of PDEs +1702.04224 Numerical Analysis +1702.04225 Group Theory +1702.04227 Solar and Stellar Astrophysics +1702.04229 Mesoscale and Nanoscale Physics +1702.04230 Dynamical Systems +1702.04231 Mesoscale and Nanoscale Physics +1702.04232 Atomic Physics +1702.04233 Complex Variables +1702.04234 Dynamical Systems +1702.04235 Computers and Society +1702.04236 History and Overview +1702.04237 Metric Geometry +1702.04238 Materials Science +1702.04239 +1702.04240 Computer Science and Game Theory +1702.04241 Computation and Language +1702.04242 Distributed, Parallel, and Cluster Computing +1702.04243 Optics +1702.04244 +1702.04245 Combinatorics +1702.04246 Materials Science +1702.04248 Algebraic Geometry +1702.04249 Networking and Internet Architecture +1702.04250 Computational Engineering, Finance, and Science +1702.04251 Solar and Stellar Astrophysics +1702.04253 Probability +1702.04256 Social and Information Networks +1702.04257 +1702.04258 Information Theory +1702.04259 Geometric Topology +1702.04260 +1702.04261 Classical Physics +1702.04262 Commutative Algebra +1702.04263 Distributed, Parallel, and Cluster Computing +1702.04264 Networking and Internet Architecture +1702.04265 Machine Learning +1702.04266 Theory +1702.04268 Instrumentation and Methods for Astrophysics +1702.04269 Combinatorics +1702.04270 Computers and Society +1702.04271 +1702.04272 Geophysics +1702.04273 Optics +1702.04274 Numerical Analysis +1702.04275 Optimization and Control +1702.04276 Plasma Physics +1702.04278 Soft Condensed Matter +1702.04281 Applications +1702.04282 Artificial Intelligence +1702.04283 Learning +1702.04285 Strongly Correlated Electrons +1702.04286 Number Theory +1702.04287 Risk Management +1702.04288 Combinatorics +1702.04289 Trading and Market Microstructure +1702.04290 Other Condensed Matter +1702.04292 Computer Vision and Pattern Recognition +1702.04293 +1702.04294 Networking and Internet Architecture +1702.04295 Information Theory +1702.04296 Probability +1702.04299 Computer Science and Game Theory +1702.04300 Computational Complexity +1702.04301 Classical Physics +1702.04302 Atomic Physics +1702.04303 Optimization and Control +1702.04304 Data Structures and Algorithms +1702.04306 Materials Science +1702.04307 Data Structures and Algorithms +1702.04309 +1702.04310 Optimization and Control +1702.04311 Software Engineering +1702.04312 Mesoscale and Nanoscale Physics +1702.04313 Combinatorics +1702.04314 Cosmology and Nongalactic Astrophysics +1702.04315 Analysis of PDEs +1702.04316 Numerical Analysis +1702.04317 Numerical Analysis +1702.04318 Symplectic Geometry +1702.04319 Optics +1702.04321 Superconductivity +1702.04322 Computational Complexity +1702.04323 Distributed, Parallel, and Cluster Computing +1702.04324 Statistical Mechanics +1702.04326 Materials Science +1702.04327 Analysis of PDEs +1702.04328 Experiment +1702.04329 Methodology +1702.04330 Methodology +1702.04331 Superconductivity +1702.04332 Fluid Dynamics +1702.04333 Computation and Language +1702.04334 Astrophysics of Galaxies +1702.04335 Phenomenology +1702.04337 Spectral Theory +1702.04338 Optics +1702.04341 Solar and Stellar Astrophysics +1702.04342 Information Theory +1702.04343 Emerging Technologies +1702.04344 Differential Geometry +astro-ph/0203176 +math/0306206 Differential Geometry +math/0603326 Dynamical Systems +math/0607206 Probability +math/0607561 Probability +0706.1138 Commutative Algebra +0911.4199 Combinatorics +1005.2820 Rings and Algebras +1206.2954 Lattice +1303.3174 Group Theory +1304.5744 Strongly Correlated Electrons +1308.3608 Fluid Dynamics +1309.0180 Differential Geometry +1311.1851 +1312.1791 +1401.1131 +1401.5900 Neural and Evolutionary Computing +1403.1017 Representation Theory +1403.1224 Representation Theory +1404.1865 Differential Geometry +1405.2355 +1407.7800 +1409.0067 +1409.0474 +1409.7179 Dynamical Systems +1412.2215 High Energy Astrophysical Phenomena +1412.3981 Biological Physics +1412.5100 +1412.7134 Theory +1501.00215 +1502.00883 Functional Analysis +1502.03948 Representation Theory +1502.05481 Lattice +1502.05507 Information Theory +1503.00942 Materials Science +1503.04449 Computational Physics +1503.05934 Combinatorics +1503.08938 Cosmology and Nongalactic Astrophysics +1505.00659 +1506.05600 Machine Learning +1506.08595 Risk Management +1507.03525 Probability +1507.04871 Differential Geometry +1507.07177 Number Theory +1507.07263 Phenomenology +1508.02032 Representation Theory +1508.05459 Representation Theory +1508.07324 Cosmology and Nongalactic Astrophysics +1508.07902 Computer Vision and Pattern Recognition +1509.00286 +1509.00842 Combinatorics +1509.05140 Computational Physics +1509.06616 Probability +1509.06703 +1510.01965 Complex Variables +1510.03550 Portfolio Management +1510.03967 Operator Algebras +1510.06418 High Energy Astrophysical Phenomena +1510.06580 Algebraic Geometry +1510.08995 Probability +1511.00546 Probability +1511.02770 Numerical Analysis +1511.02771 Numerical Analysis +1511.04256 +1512.00233 Strongly Correlated Electrons +1512.01917 Theory +1512.02436 Astrophysics of Galaxies +1512.04204 Commutative Algebra +1512.06881 Methodology +1512.07771 Probability +1512.07896 Instrumentation and Detectors +1512.08472 Statistics Theory +1601.00111 Analysis of PDEs +1601.02884 Materials Science +1601.05138 +1601.05585 Systems and Control +1601.05788 Applications +1601.07421 Algebraic Geometry +1602.01742 Complex Variables +1602.02071 Methodology +1602.08491 Astrophysics of Galaxies +1602.08558 Statistics Theory +1603.02326 Strongly Correlated Electrons +1603.03355 Subcellular Processes +1603.03803 Dynamical Systems +1603.05084 Algebraic Geometry +1603.07172 Probability +1603.07560 Complex Variables +1604.01170 Social and Information Networks +1604.02514 Functional Analysis +1604.02549 Emerging Technologies +1604.02870 Combinatorics +1604.05224 Other Statistics +1604.06939 Computer Vision and Pattern Recognition +1604.07384 Probability +1604.07813 Commutative Algebra +1604.08884 Analysis of PDEs +1605.03008 Disordered Systems and Neural Networks +1605.03898 +1605.05659 Dynamical Systems +1605.07940 Phenomenology +1605.08006 Mesoscale and Nanoscale Physics +1605.08113 High Energy Astrophysical Phenomena +1606.01104 Numerical Analysis +1606.02477 Representation Theory +1606.03316 Instrumentation and Detectors +1606.03456 Mesoscale and Nanoscale Physics +1606.04369 +1606.05634 Information Theory +1606.05907 Applications +1606.07657 Plasma Physics +1606.08831 +1606.09237 Algebraic Geometry +1607.00560 +1607.00968 Computational Engineering, Finance, and Science +1607.03624 Materials Science +1607.04290 Materials Science +1607.04418 Phenomenology +1607.05200 High Energy Astrophysical Phenomena +1607.06138 Discrete Mathematics +1608.00799 Strongly Correlated Electrons +1608.00858 Classical Analysis and ODEs +1608.01162 +1608.01667 Theory +1608.02999 Algebraic Topology +1608.03314 Combinatorics +1608.04214 Probability +1608.06288 Cosmology and Nongalactic Astrophysics +1608.06359 Strongly Correlated Electrons +1608.08097 Biological Physics +1608.08202 Fluid Dynamics +1608.08323 Methodology +1609.00456 Optics +1609.03809 Soft Condensed Matter +1609.03810 Probability +1609.04200 +1609.05542 Physics and Society +1609.06473 Combinatorics +1609.07652 +1609.07981 General Physics +1609.08368 Mesoscale and Nanoscale Physics +1609.08395 Methodology +1609.09431 Probability +1609.09777 +1610.00478 Analysis of PDEs +1610.03326 Analysis of PDEs +1610.04319 Instrumentation and Detectors +1610.04777 Materials Science +1610.05477 Quantum Gases +1610.05534 Mesoscale and Nanoscale Physics +1610.07110 Statistical Mechanics +1610.07221 Social and Information Networks +1610.07421 Algebraic Topology +1610.08631 Molecular Networks +1610.08792 Analysis of PDEs +1611.00443 Statistical Mechanics +1611.01146 Optimization and Control +1611.01247 +1611.01700 Phenomenology +1611.02358 Mesoscale and Nanoscale Physics +1611.03007 Phenomenology +1611.03397 Instrumentation and Detectors +1611.03748 Cryptography and Security +1611.04603 Theory +1611.04608 Chemical Physics +1611.04828 Statistical Mechanics +1611.04985 Computational Physics +1611.05544 Atomic Physics +1611.05666 Computer Vision and Pattern Recognition +1611.06926 Lattice +1611.07307 Mesoscale and Nanoscale Physics +1611.08545 Instrumentation and Methods for Astrophysics +1611.08701 Disordered Systems and Neural Networks +1611.08770 Systems and Control +1611.09204 +1611.09455 Experiment +1611.09812 +1611.10251 Materials Science +1612.01043 Analysis of PDEs +1612.01107 Symplectic Geometry +1612.01551 Phenomenology +1612.01793 Cosmology and Nongalactic Astrophysics +1612.02714 Mesoscale and Nanoscale Physics +1612.02747 Algebraic Topology +1612.03713 +1612.05788 Cosmology and Nongalactic Astrophysics +1612.06297 Theory +1612.06384 Strongly Correlated Electrons +1612.06857 Astrophysics of Galaxies +1612.07023 +1612.07175 Atmospheric and Oceanic Physics +1612.07227 Geometric Topology +1612.08524 Phenomenology +1612.08565 Spectral Theory +1612.09269 Analysis of PDEs +1701.00542 Physics and Society +1701.01672 Computation +1701.02214 Networking and Internet Architecture +1701.03810 Materials Science +1701.04279 Emerging Technologies +1701.04347 Group Theory +1701.04740 Functional Analysis +1701.04778 Strongly Correlated Electrons +1701.04816 Phenomenology +1701.05066 Logic +1701.05091 Statistics Theory +1701.05332 +1701.05544 Information Theory +1701.05575 Analysis of PDEs +1701.06099 Classical Analysis and ODEs +1701.06491 Information Theory +1701.06498 +1701.06685 Combinatorics +1701.06816 Algebraic Topology +1701.06883 Differential Geometry +1701.07540 Information Theory +1701.07680 Numerical Analysis +1701.07771 Theory +1701.08176 +1701.08202 Soft Condensed Matter +1701.08210 Complex Variables +1701.08246 Optimization and Control +1701.08250 Phenomenology +1701.08305 Learning +1701.08314 Information Theory +1701.08320 Atomic Physics +1701.08361 Distributed, Parallel, and Cluster Computing +1701.08369 Logic in Computer Science +1701.08377 Quantum Algebra +1701.08393 Computer Vision and Pattern Recognition +1701.08394 Combinatorics +1701.08456 Information Theory +1701.08475 Computer Vision and Pattern Recognition +1701.08500 Discrete Mathematics +1701.08505 +1701.08549 Strongly Correlated Electrons +1701.08551 Phenomenology +1701.08606 Disordered Systems and Neural Networks +1701.08615 Classical Analysis and ODEs +1701.08665 Artificial Intelligence +1701.08671 Social and Information Networks +1701.08687 Machine Learning +1701.08699 Superconductivity +1701.08714 Computers and Society +1701.08732 Functional Analysis +1701.08736 Information Theory +1701.08740 Information Theory +1701.08742 Computational Engineering, Finance, and Science +1701.08870 Optics +1701.08950 Combinatorics +1701.09034 Analysis of PDEs +1701.09126 Combinatorics +1702.00058 Theory +1702.00179 Analysis of PDEs +1702.00392 Strongly Correlated Electrons +1702.00467 Computational Complexity +1702.00530 +1702.00588 Combinatorics +1702.00755 Theory +1702.00759 Quantitative Methods +1702.00787 Data Structures and Algorithms +1702.00788 Spectral Theory +1702.00790 Phenomenology +1702.00791 Algebraic Geometry +1702.00792 High Energy Astrophysical Phenomena +1702.00794 Phenomenology +1702.00796 Combinatorics +1702.00797 Phenomenology +1702.00800 Phenomenology +1702.00801 High Energy Astrophysical Phenomena +1702.00802 Number Theory +1702.00804 +1702.00805 Strongly Correlated Electrons +1702.00806 Combinatorics +1702.00807 Combinatorics +1702.00809 Materials Science +1702.00810 Commutative Algebra +1702.00811 Optics +1702.00812 Optimization and Control +1702.00813 Chemical Physics +1702.00815 Neural and Evolutionary Computing +1702.00816 High Energy Astrophysical Phenomena +1702.00817 Multimedia +1702.00818 Instrumentation and Methods for Astrophysics +1702.00819 Solar and Stellar Astrophysics +1702.00820 Databases +1702.00821 +1702.00823 Other Statistics +1702.00825 Materials Science +1702.00826 Strongly Correlated Electrons +1702.00828 Combinatorics +1702.00829 Computers and Society +1702.00831 Statistical Mechanics +1702.00832 Information Theory +1702.00833 Instrumentation and Detectors +1702.00834 Instrumentation and Methods for Astrophysics +1702.00835 Experiment +1702.00836 Statistics Theory +1702.00838 Solar and Stellar Astrophysics +1702.00841 Distributed, Parallel, and Cluster Computing +1702.00843 +1702.00844 Instrumentation and Methods for Astrophysics +1702.00846 Quantum Gases +1702.00847 Logic in Computer Science +1702.00848 Computational Physics +1702.00849 Combinatorics +1702.00850 Theory +1702.00851 +1702.00854 Experiment +1702.00856 +1702.00857 Optimization and Control +1702.00858 Artificial Intelligence +1702.00860 Computation and Language +1702.00862 Mesoscale and Nanoscale Physics +1702.00863 Theory +1702.00864 Differential Geometry +1702.00867 Chemical Physics +1702.00868 +1702.00870 Optimization and Control +1702.00871 Computer Vision and Pattern Recognition +1702.00872 +1702.00873 Instrumentation and Detectors +1702.00875 Classical Analysis and ODEs +1702.00876 Representation Theory +1702.00877 Formal Languages and Automata Theory +1702.00879 Theory +1702.00880 Optimization and Control +1702.00881 Populations and Evolution +1702.00882 Computer Vision and Pattern Recognition +1702.00883 Differential Geometry +1702.00884 Systems and Control +1702.00885 High Energy Astrophysical Phenomena +1702.00886 Theory +1702.00888 Methodology +1702.00889 Phenomenology +1702.00892 Information Theory +1702.00893 +1702.00895 +1702.00897 Complex Variables +1702.00899 Statistical Mechanics +1702.00900 Networking and Internet Architecture +1702.00901 General Mathematics +1702.00902 Analysis of PDEs +1702.00903 Phenomenology +1702.00904 Astrophysics of Galaxies +1702.00905 Combinatorics +1702.00906 Chemical Physics +1702.00907 Probability +1702.00909 +1702.00910 Probability +1702.00911 Materials Science +1702.00912 Combinatorics +1702.00914 Combinatorics +1702.00915 +1702.00916 Commutative Algebra +1702.00917 Experiment +1702.00918 Algebraic Geometry +1702.00919 Number Theory +1702.00921 Information Retrieval +1702.00923 +1702.00924 +1702.00925 Statistics Theory +1702.00926 Computer Vision and Pattern Recognition +1702.00928 Phenomenology +1702.00929 Complex Variables +1702.00930 Differential Geometry +1702.00931 Statistics Theory +1702.00932 Computer Vision and Pattern Recognition +1702.00933 Materials Science +1702.00934 +1702.00935 Mesoscale and Nanoscale Physics +1702.00936 Solar and Stellar Astrophysics +1702.00937 Mesoscale and Nanoscale Physics +1702.00938 Hardware Architecture +1702.00939 Theory +1702.00940 Materials Science +1702.00942 +1702.00943 Phenomenology +1702.00945 Instrumentation and Methods for Astrophysics +1702.00946 Optics +1702.00948 Data Structures and Algorithms +1702.00949 Strongly Correlated Electrons +1702.00950 Strongly Correlated Electrons +1702.00953 Computer Vision and Pattern Recognition +1702.00954 Differential Geometry +1702.00955 Group Theory +1702.00957 Computational Physics +1702.00958 Computational Physics +1702.00959 Dynamical Systems +1702.00960 Mesoscale and Nanoscale Physics +1702.00961 Metric Geometry +1702.00962 Mesoscale and Nanoscale Physics +1702.00963 Mesoscale and Nanoscale Physics +1702.00964 +1702.00965 +1702.00966 High Energy Astrophysical Phenomena +1702.00969 +1702.00970 Analysis of PDEs +1702.00971 Methodology +1702.00972 Analysis of PDEs +1702.00973 Combinatorics +1702.00974 Differential Geometry +1702.00975 Mesoscale and Nanoscale Physics +1702.00976 Optimization and Control +1702.00977 Information Theory +1702.00978 Methodology +1702.00980 Commutative Algebra +1702.00982 Portfolio Management +1702.00983 +1702.00984 Lattice +1702.00986 Mesoscale and Nanoscale Physics +1702.00990 Instrumentation and Detectors +1702.00991 Information Theory +1702.00992 Computation and Language +1702.00993 Neural and Evolutionary Computing +1702.00994 Computational Finance +1702.00995 Mesoscale and Nanoscale Physics +1702.00999 Probability +1702.01000 Machine Learning +1702.01001 High Energy Astrophysical Phenomena +1702.01004 +1702.01005 Learning +1702.01006 Medical Physics +1702.01007 Numerical Analysis +1702.01010 Statistical Mechanics +1702.01011 Soft Condensed Matter +1702.01012 Classical Analysis and ODEs +1702.01013 Strongly Correlated Electrons +1702.01014 Materials Science +1702.01015 Digital Libraries +1702.01016 Theory +1702.01017 Computer Science and Game Theory +1702.01018 Networking and Internet Architecture +1702.01019 Plasma Physics +1702.01020 Quantum Gases +1702.01021 Computational Physics +1702.01022 Plasma Physics +1702.01025 Dynamical Systems +1702.01027 Metric Geometry +1702.01030 Space Physics +1702.01031 Systems and Control +1702.01032 Information Retrieval +1702.01035 Lattice +1702.01037 Instrumentation and Detectors +1702.01038 Phenomenology +1702.01039 Functional Analysis +1702.01040 Plasma Physics +1702.01041 Optimization and Control +1702.01042 Information Theory +1702.01043 Analysis of PDEs +1702.01045 Computational Finance +1702.01046 Optimization and Control +1702.01047 +1702.01048 Probability +1702.01049 Lattice +1702.01050 Physics and Society +1702.01051 Phenomenology +1702.01052 Networking and Internet Architecture +1702.01053 Atomic Physics +1702.01054 Analysis of PDEs +1702.01057 +1702.01058 Discrete Mathematics +1702.01059 Mesoscale and Nanoscale Physics +1702.01060 +1702.01062 +1702.01064 Statistical Mechanics +1702.01065 Materials Science +1702.01066 Instrumentation and Detectors +1702.01067 Hardware Architecture +1702.01068 Optimization and Control +1702.01070 Analysis of PDEs +1702.01071 Number Theory +1702.01074 Dynamical Systems +1702.01075 Robotics +1702.01076 Information Retrieval +1702.01077 Probability +1702.01079 Instrumentation and Methods for Astrophysics +1702.01081 Statistics Theory +1702.01082 Computational Physics +1702.01083 Data Structures and Algorithms +1702.01084 +1702.01085 +1702.01089 Phenomenology +1702.01090 Digital Libraries +1702.01091 Probability +1702.01092 Probability +1702.01093 Optimization and Control +1702.01094 Combinatorics +1702.01096 Probability +1702.01097 Combinatorics +1702.01098 Strongly Correlated Electrons +1702.01100 Materials Science +1702.01101 Computation and Language +1702.01102 Materials Science +1702.01103 Phenomenology +1702.01104 Plasma Physics +1702.01105 Computer Vision and Pattern Recognition +1702.01107 Commutative Algebra +1702.01108 +1702.01109 Astrophysics of Galaxies +1702.01110 +1702.01111 Commutative Algebra +1702.01112 Optimization and Control +1702.01113 Lattice +1603.06628 General Physics +0803.0310 Superconductivity +0803.3139 +0806.3453 Superconductivity +0807.0815 Superconductivity +0903.2983 Number Theory +0909.3266 Superconductivity +1005.5309 Superconductivity +1008.3488 Atomic and Molecular Clusters +1012.2824 Algebraic Topology +1106.1221 Atomic and Molecular Clusters +1107.2736 Probability +1109.3826 Number Theory +1111.7022 K-Theory and Homology +1202.0744 Superconductivity +1205.2578 Quantum Algebra +1205.6731 Superconductivity +1206.0487 Functional Analysis +1206.3327 Strongly Correlated Electrons +1206.6744 Operator Algebras +1208.0954 Computational Complexity +1208.3448 Superconductivity +1209.2312 Representation Theory +1209.2463 Representation Theory +1210.0990 Differential Geometry +1211.7325 Classical Analysis and ODEs +1212.0639 Neural and Evolutionary Computing +1212.6371 Information Theory +1301.1062 Atmospheric and Oceanic Physics +1304.5148 Superconductivity +1305.0516 Logic in Computer Science +1305.0599 Rings and Algebras +1305.1848 Superconductivity +1306.0074 Representation Theory +1306.5863 +1309.0580 Algebraic Geometry +1309.4309 Classical Analysis and ODEs +1310.5287 +1311.2369 Computational Complexity +1311.6954 Probability +1312.0850 Probability +1401.5404 Optics +1401.5416 Superconductivity +1403.0492 Superconductivity +1404.2466 Analysis of PDEs +1405.2608 Algebraic Geometry +1405.3942 Algebraic Geometry +1406.6726 Optics +1408.0446 Astrophysics of Galaxies +1409.1685 Quantum Algebra +1410.2231 Data Structures and Algorithms +1410.2461 General Physics +1410.2966 Classical Analysis and ODEs +1410.6697 Number Theory +1410.6719 Analysis of PDEs +1410.7302 Representation Theory +1411.2281 Geometric Topology +1411.4013 Strongly Correlated Electrons +1411.4032 Probability +1411.5376 Analysis of PDEs +1411.6049 Computational Complexity +1411.7812 Artificial Intelligence +1412.4643 Information Theory +1501.01731 Probability +1501.06422 Operator Algebras +1502.02305 Differential Geometry +1502.03622 Logic +1503.01264 Algebraic Geometry +1503.01695 Analysis of PDEs +1503.02179 Analysis of PDEs +1503.02521 Artificial Intelligence +1503.07069 Superconductivity +1504.00700 Category Theory +1504.06347 Superconductivity +1505.05312 Artificial Intelligence +1505.05901 Machine Learning +1505.07299 Differential Geometry +1506.00318 Number Theory +1506.03346 Strongly Correlated Electrons +1506.04682 Classical Analysis and ODEs +1506.08077 Analysis of PDEs +1507.00660 Quantum Algebra +1507.02338 Dynamical Systems +1507.02521 Probability +1507.05046 Metric Geometry +1507.05125 Optimization and Control +1508.00742 +1508.06899 Logic in Computer Science +1508.07228 Group Theory +1508.07918 Combinatorics +1509.00089 Optics +1509.01175 Mathematical Finance +1509.04669 Metric Geometry +1509.07754 Probability +1509.07937 Superconductivity +1509.07941 Combinatorics +1509.08783 Combinatorics +1510.01452 Phenomenology +1510.01705 Systems and Control +1510.02122 Combinatorics +1510.02628 Quantum Algebra +1510.07540 Quantum Gases +1510.07778 Algebraic Topology +1510.08334 Distributed, Parallel, and Cluster Computing +1511.00579 Phenomenology +1511.02626 Numerical Analysis +1511.02804 Combinatorics +1511.03376 Cryptography and Security +1511.03446 Fluid Dynamics +1511.05054 Mesoscale and Nanoscale Physics +1511.05433 Methodology +1511.07674 Metric Geometry +1511.07789 Algebraic Geometry +1512.01972 Algebraic Geometry +1512.04811 Data Analysis, Statistics and Probability +1512.06399 +1512.09189 Optimization and Control +1601.01201 Materials Science +1601.01249 Instrumentation and Detectors +1601.02040 Strongly Correlated Electrons +1601.02085 Numerical Analysis +1601.02813 Number Theory +1601.05134 +1601.06207 Learning +1601.07359 Geometric Topology +1601.07945 Algebraic Geometry +1602.01108 +1602.01361 Representation Theory +1602.02264 Combinatorics +1602.02345 Statistics Theory +1602.02697 Cryptography and Security +1602.03211 Superconductivity +1602.03633 +1602.03679 Differential Geometry +1602.04408 Systems and Control +1602.04731 Number Theory +1602.05708 Probability +1602.06237 Algebraic Geometry +1602.08616 Superconductivity +1603.02485 Methodology +1603.02678 Theory +1603.03494 Astrophysics of Galaxies +1603.04692 Representation Theory +1603.05409 +1603.06238 Combinatorics +1603.06348 Learning +1603.06482 Mesoscale and Nanoscale Physics +1603.06499 Differential Geometry +1603.06902 Group Theory +1603.07406 Algebraic Topology +1603.07510 Functional Analysis +1603.08409 History and Overview +1603.09006 Functional Analysis +1603.09082 Physics and Society +1603.09236 Number Theory +1603.09466 Strongly Correlated Electrons +1604.00272 Category Theory +1604.00620 Theory +1604.01060 Representation Theory +1604.01265 Earth and Planetary Astrophysics +1604.02490 Soft Condensed Matter +1604.03496 Number Theory +1604.05176 Materials Science +1604.05182 Probability +1604.05796 +1604.06753 Cryptography and Security +1604.07328 Representation Theory +1604.07933 Quantum Gases +1604.08679 Data Structures and Algorithms +1604.08945 Materials Science +1605.00056 Soft Condensed Matter +1605.00096 Algebraic Topology +1605.00308 Mesoscale and Nanoscale Physics +1605.02396 +1605.03064 Probability +1605.03864 Analysis of PDEs +1605.04777 Quantum Algebra +1605.06384 Quantum Algebra +1605.06908 Cosmology and Nongalactic Astrophysics +1605.07397 Differential Geometry +1605.08278 Software Engineering +1606.00679 Group Theory +1606.01337 General Topology +1606.01465 Numerical Analysis +1606.02185 Machine Learning +1606.03101 Functional Analysis +1606.05240 Data Structures and Algorithms +1606.05643 Superconductivity +1606.06246 Methodology +1606.06486 Differential Geometry +1606.07038 Algebraic Geometry +1606.08207 Physics and Society +1606.08231 Cosmology and Nongalactic Astrophysics +1606.08284 Theory +1606.08710 Classical Physics +1606.09186 +1606.09269 Symplectic Geometry +1606.09360 +1607.00255 Numerical Analysis +1607.00631 Geometric Topology +1607.00663 Instrumentation and Detectors +1607.01985 Computation +1607.03186 Physics and Society +1607.03218 Optimization and Control +1607.03279 Classical Analysis and ODEs +1607.04061 Differential Geometry +1607.04495 Mesoscale and Nanoscale Physics +1607.04662 Physics Education +1607.05186 High Energy Astrophysical Phenomena +1607.05216 Superconductivity +1607.05531 Statistical Mechanics +1607.05756 Disordered Systems and Neural Networks +1607.06641 Neural and Evolutionary Computing +1607.06891 Cryptography and Security +1607.07181 Experiment +1607.07253 Theory +1607.07254 Algebraic Topology +1607.07263 Information Theory +1607.08696 Mesoscale and Nanoscale Physics +1607.08720 Learning +1608.00051 Differential Geometry +1608.00760 Dynamical Systems +1608.02004 +1608.03402 Social and Information Networks +1608.03956 Phenomenology +1608.03971 Dynamical Systems +1608.04047 Number Theory +1608.04286 Dynamical Systems +1608.04315 Classical Analysis and ODEs +1608.04446 Cosmology and Nongalactic Astrophysics +1608.04719 Phenomenology +1608.04924 Probability +1608.05025 +1608.05147 +1608.05682 Phenomenology +1608.05714 Strongly Correlated Electrons +1608.05779 Atomic Physics +1608.05972 Information Theory +1608.06164 Plasma Physics +1608.06221 +1608.06322 Group Theory +1608.06431 Metric Geometry +1608.06466 Theory +1608.06615 Complex Variables +1608.07892 Machine Learning +1608.08640 Phenomenology +1609.00074 Machine Learning +1609.00668 Materials Science +1609.01399 Algebraic Geometry +1609.01473 Theory +1609.02122 Dynamical Systems +1609.02651 Optimization and Control +1609.03149 Systems and Control +1609.03220 Statistical Mechanics +1609.03710 Commutative Algebra +1609.04074 Algebraic Geometry +1609.05024 Analysis of PDEs +1609.05040 Theory +1609.05329 Human-Computer Interaction +1609.05334 Social and Information Networks +1609.05878 Atmospheric and Oceanic Physics +1609.06109 Multimedia +1609.06121 +1609.06207 Mesoscale and Nanoscale Physics +1609.07242 Phenomenology +1609.07854 Differential Geometry +1609.07967 Phenomenology +1609.08058 Earth and Planetary Astrophysics +1609.08745 Number Theory +1609.09053 Quantum Gases +1609.09092 Probability +1609.09186 Dynamical Systems +1609.09744 Sound +1609.09747 Sound +1610.00063 Systems and Control +1610.00555 +1610.01359 Optics +1610.01469 Phenomenology +1610.01622 Statistical Mechanics +1610.02480 Mesoscale and Nanoscale Physics +1610.02481 Information Theory +1610.02994 Materials Science +1610.03086 Mathematical Finance +1610.03265 +1610.03675 Numerical Analysis +1610.03855 Mesoscale and Nanoscale Physics +1610.04469 Analysis of PDEs +1610.04495 Theory +1610.04745 Statistical Mechanics +1610.04873 Computer Science and Game Theory +1610.04980 Optics +1610.05364 Superconductivity +1610.05656 Data Structures and Algorithms +1610.06816 Combinatorics +1610.07382 Mesoscale and Nanoscale Physics +1610.07656 Instrumentation and Methods for Astrophysics +1610.07941 Chaotic Dynamics +1610.08093 +1610.08241 Rings and Algebras +1610.08395 Strongly Correlated Electrons +1610.08589 Computer Vision and Pattern Recognition +1610.09756 Computation and Language +1610.10061 Distributed, Parallel, and Cluster Computing +1611.00329 Phenomenology +1611.01436 Computation and Language +1611.01560 Astrophysics of Galaxies +1611.01619 Probability +1611.01647 Data Structures and Algorithms +1611.02295 Statistical Mechanics +1611.03103 Algebraic Geometry +1611.03349 Mesoscale and Nanoscale Physics +1611.03421 Experiment +1611.03425 Physics Education +1611.04041 Algebraic Geometry +1611.04165 Cosmology and Nongalactic Astrophysics +1611.04391 Strongly Correlated Electrons +1611.04559 +1611.05162 Learning +1611.05216 Computer Vision and Pattern Recognition +1611.05335 Computer Vision and Pattern Recognition +1611.05365 Computer Vision and Pattern Recognition +1611.05404 Combinatorics +1611.05791 Experiment +1611.06013 Computer Vision and Pattern Recognition +1611.06346 Dynamical Systems +1611.06522 +1611.06839 Materials Science +1611.06870 History and Overview +1611.06884 Instrumentation and Detectors +1611.07218 Computer Vision and Pattern Recognition +1611.07615 Instrumentation and Detectors +1611.08009 Theory +1611.08617 Computational Physics +1611.09223 +1611.09340 Learning +1611.09583 +1611.09634 Geometric Topology +1611.10242 Machine Learning +1612.00014 Theory +1612.00195 Phenomenology +1612.00370 Computer Vision and Pattern Recognition +1612.00486 Strongly Correlated Electrons +1612.00966 Information Theory +1612.01190 Experiment +1612.01216 Optimization and Control +1612.01287 Fluid Dynamics +1612.01671 Chemical Physics +1612.01854 +1612.02326 General Physics +1612.02478 +1612.02715 Biological Physics +1612.03040 General Physics +1612.03261 Optics +1612.03480 Learning +1612.03483 Neurons and Cognition +1612.03661 Phenomenology +1612.04128 Information Theory +1612.04195 General Physics +1612.04222 Mesoscale and Nanoscale Physics +1612.04749 Phenomenology +1612.05289 Astrophysics of Galaxies +1612.06368 Mesoscale and Nanoscale Physics +1612.06376 Mesoscale and Nanoscale Physics +1612.06421 Medical Physics +1612.06639 Data Analysis, Statistics and Probability +1612.06728 +1612.06828 +1612.06840 Phenomenology +1612.07005 Strongly Correlated Electrons +1612.07421 Experiment +1612.07460 Symplectic Geometry +1612.07486 Computation and Language +1612.07719 +1612.08252 +1612.08397 Functional Analysis +1612.08839 Phenomenology +1612.09094 +1612.09209 Pattern Formation and Solitons +1612.09346 Computer Vision and Pattern Recognition +1612.09405 Strongly Correlated Electrons +1612.09453 Disordered Systems and Neural Networks +1612.09587 Phenomenology +1612.09594 Strongly Correlated Electrons +1701.00180 Distributed, Parallel, and Cluster Computing +1701.00304 Theory +1701.00772 Algebraic Geometry +1701.00974 +1701.01058 Phenomenology +1701.01168 +1701.01237 Materials Science +1701.01447 Theory +1701.01539 Data Structures and Algorithms +1701.01943 Solar and Stellar Astrophysics +1701.02275 Logic in Computer Science +1701.02310 Mesoscale and Nanoscale Physics +1701.03766 Information Theory +1701.03846 Combinatorics +1701.04166 +1701.04285 Phenomenology +1701.04490 Chemical Physics +1701.04825 High Energy Astrophysical Phenomena +1701.04844 Disordered Systems and Neural Networks +1701.04911 Superconductivity +1701.05524 Computer Vision and Pattern Recognition +1701.05768 Computers and Society +1701.05886 Discrete Mathematics +1701.06154 Theory +1701.06280 Superconductivity +1701.06311 +1701.06757 Metric Geometry +1701.06855 Superconductivity +1701.07375 Phenomenology +1701.08398 Computer Vision and Pattern Recognition +1701.08414 High Energy Astrophysical Phenomena +1701.08447 High Energy Astrophysical Phenomena +1701.08748 Astrophysics of Galaxies +1701.08983 Lattice +1702.00270 Mesoscale and Nanoscale Physics +1702.00550 Analysis of PDEs +1702.00822 Information Theory +1702.00830 Geometric Topology +1702.01876 Representation Theory +1702.02015 Mesoscale and Nanoscale Physics +1702.02435 Representation Theory +1702.02702 Logic +1702.02748 Systems and Control +1702.03440 +1702.03471 Probability +1702.03676 Computational Geometry +1702.03728 +1702.04483 Computational Physics +1702.04513 Mesoscale and Nanoscale Physics +1702.05012 Differential Geometry +1702.05013 +1702.05064 Information Theory +1702.05800 Distributed, Parallel, and Cluster Computing +1702.06021 +1702.06108 Optics +1702.06577 Strongly Correlated Electrons +1702.06726 Solar and Stellar Astrophysics +1702.06802 Materials Science +1702.07097 Neural and Evolutionary Computing +1702.07463 Machine Learning +1702.07613 Strongly Correlated Electrons +1702.08059 Optimization and Control +1702.08341 Theory +1702.08395 Networking and Internet Architecture +1702.08627 Computer Vision and Pattern Recognition +1702.08749 Group Theory +1702.08763 Soft Condensed Matter +1703.00368 Computation +1703.00386 Analysis of PDEs +1703.00453 Theory +1703.00511 Theory +1703.00807 Computer Science and Game Theory +1703.00859 Combinatorics +1703.00867 Optimization and Control +1703.00972 Computer Science and Game Theory +1703.00976 Systems and Control +1703.00980 Social and Information Networks +1703.01023 Solar and Stellar Astrophysics +1703.01062 Information Theory +1703.01172 Materials Science +1703.01676 Fluid Dynamics +1703.01680 Learning +1703.01833 Theory +1703.01884 Theory +1703.01968 Machine Learning +1703.02055 Superconductivity +1703.02101 Mesoscale and Nanoscale Physics +1703.02205 Machine Learning +1703.02261 Computational Geometry +1703.02388 Number Theory +1703.02425 Strongly Correlated Electrons +1703.02772 Mesoscale and Nanoscale Physics +1703.02855 Optimization and Control +1703.02918 Differential Geometry +1703.03022 Methodology +1703.03240 Category Theory +1703.03297 Metric Geometry +1703.03673 High Energy Astrophysical Phenomena +1703.03701 Group Theory +1703.03854 Neural and Evolutionary Computing +1703.03905 Distributed, Parallel, and Cluster Computing +1703.04030 Phenomenology +1703.04164 Phenomenology +1703.04182 Neurons and Cognition +1703.04184 Populations and Evolution +1703.04203 +1703.04228 Instrumentation and Methods for Astrophysics +1703.04266 Category Theory +1703.04356 Geometric Topology +1703.04373 Theory +1703.04391 Computer Vision and Pattern Recognition +1703.04452 +1703.04467 Other Statistics +1703.04477 Cosmology and Nongalactic Astrophysics +1703.04566 Software Engineering +1703.04575 Software Engineering +1703.04632 Astrophysics of Galaxies +1703.04976 +1703.04997 Logic in Computer Science +1703.05002 Computer Vision and Pattern Recognition +1703.05020 Computer Vision and Pattern Recognition +1703.05029 Mesoscale and Nanoscale Physics +1703.05033 Earth and Planetary Astrophysics +1703.05048 Combinatorics +1703.05050 Computational Physics +1703.05059 +1703.05089 +1703.05206 Systems and Control +1703.05281 Astrophysics of Galaxies +1703.05337 Instrumentation and Methods for Astrophysics +1703.05356 Astrophysics of Galaxies +1703.05458 Optimization and Control +1703.05475 Computational Geometry +1703.05492 Strongly Correlated Electrons +1703.05522 Computational Engineering, Finance, and Science +1703.05597 Cosmology and Nongalactic Astrophysics +1703.05606 High Energy Astrophysical Phenomena +1703.05611 Data Analysis, Statistics and Probability +1703.05677 Number Theory +1703.05743 Strongly Correlated Electrons +1703.05769 Hardware Architecture +1703.05774 Phenomenology +1703.05908 Computer Vision and Pattern Recognition +1703.05985 Numerical Analysis +1703.05988 High Energy Astrophysical Phenomena +1703.06008 Instrumentation and Methods for Astrophysics +1703.06114 Learning +1703.06124 Phenomenology +1703.06137 Emerging Technologies +1703.06138 Statistical Mechanics +1703.06139 High Energy Astrophysical Phenomena +1703.06140 Astrophysics of Galaxies +1703.06141 High Energy Astrophysical Phenomena +1703.06142 Theory +1703.06143 Astrophysics of Galaxies +1703.06144 +1703.06145 Astrophysics of Galaxies +1703.06146 Astrophysics of Galaxies +1703.06147 Astrophysics of Galaxies +1703.06148 Number Theory +1703.06149 +1703.06150 Analysis of PDEs +1703.06151 Computer Vision and Pattern Recognition +1703.06152 +1703.06153 Phenomenology +1703.06154 Methodology +1703.06155 Numerical Analysis +1703.06156 Systems and Control +1703.06157 Dynamical Systems +1703.06158 +1703.06159 Statistical Mechanics +1703.06160 Commutative Algebra +1703.06161 Robotics +1703.06162 +1703.06163 Phenomenology +1703.06164 +1703.06165 Plasma Physics +1703.06166 +1703.06167 Numerical Analysis +1703.06168 Algebraic Geometry +1703.06169 Computers and Society +1703.06170 Superconductivity +1703.06171 High Energy Astrophysical Phenomena +1703.06172 Data Analysis, Statistics and Probability +1703.06173 Exactly Solvable and Integrable Systems +1703.06174 Representation Theory +1703.06175 +1703.06176 Methodology +1703.06177 Machine Learning +1703.06178 Probability +1703.06179 Cryptography and Security +1703.06180 Learning +1703.06183 +1703.06185 Fluid Dynamics +1703.06187 Instrumentation and Detectors +1703.06188 Astrophysics of Galaxies +1703.06189 Computer Vision and Pattern Recognition +1703.06190 +1703.06191 Astrophysics of Galaxies +1703.06193 Instrumentation and Methods for Astrophysics +1703.06194 Analysis of PDEs +1703.06195 Functional Analysis +1703.06196 Strongly Correlated Electrons +1703.06197 Mesoscale and Nanoscale Physics +1703.06198 Instrumentation and Detectors +1703.06199 +1703.06200 Analysis of PDEs +1703.06201 Quantitative Methods +1703.06202 Mesoscale and Nanoscale Physics +1703.06203 Physics Education +1703.06204 Instrumentation and Detectors +1703.06205 Dynamical Systems +1703.06206 Computation +1703.06209 Plasma Physics +1703.06210 Probability +1703.06212 Information Theory +1703.06214 Representation Theory +1703.06216 High Energy Astrophysical Phenomena +1703.06217 Machine Learning +1703.06218 Software Engineering +1703.06219 Number Theory +1703.06221 Plasma Physics +1703.06222 Methodology +1703.06223 +1703.06224 Category Theory +1703.06225 Pattern Formation and Solitons +1703.06226 Methodology +1703.06227 Data Structures and Algorithms +1703.06228 Instrumentation and Methods for Astrophysics +1703.06229 Neural and Evolutionary Computing +1703.06230 History and Philosophy of Physics +1703.06231 Social and Information Networks +1703.06232 Mesoscale and Nanoscale Physics +1703.06233 Computer Vision and Pattern Recognition +1703.06234 Mesoscale and Nanoscale Physics +1703.06235 Number Theory +1703.06236 Materials Science +1703.06237 High Energy Astrophysical Phenomena +1703.06238 Representation Theory +1703.06239 Popular Physics +1703.06240 Machine Learning +1703.06241 Computer Vision and Pattern Recognition +1703.06242 Analysis of PDEs +1703.06243 Chemical Physics +1703.06244 Materials Science +1703.06245 Superconductivity +1703.06247 Lattice +1703.06248 Analysis of PDEs +1703.06249 Lattice +1703.06251 +1703.06252 Statistical Mechanics +1703.06253 Solar and Stellar Astrophysics +1703.06254 Dynamical Systems +1703.06255 Cryptography and Security +1703.06256 Computer Vision and Pattern Recognition +1703.06257 Complex Variables +1703.06258 +1703.06259 Metric Geometry +1703.06260 Computer Vision and Pattern Recognition +1703.06262 Analysis of PDEs +1703.06263 Neural and Evolutionary Computing +1703.06265 +1703.06266 Solar and Stellar Astrophysics +1703.06267 +1703.06268 Functional Analysis +1703.06269 +1703.06271 Fluid Dynamics +1703.06272 Learning +1703.06275 Artificial Intelligence +1703.06276 Biological Physics +1703.06277 Methodology +1703.06278 Astrophysics of Galaxies +1703.06280 Strongly Correlated Electrons +1703.06281 +1703.06282 +1703.06283 Computer Vision and Pattern Recognition +1703.06284 Sound +1703.06285 Combinatorics +1703.06286 +1703.06287 Symplectic Geometry +1703.06288 Social and Information Networks +1703.06290 Neural and Evolutionary Computing +1703.06291 Atmospheric and Oceanic Physics +1703.06292 Probability +1703.06293 Software Engineering +1703.06294 Quantum Gases +1703.06295 Differential Geometry +1703.06296 Quantum Algebra +1703.06297 Theory +1703.06298 High Energy Astrophysical Phenomena +1703.06299 Functional Analysis +1703.06300 Software Engineering +1703.06301 Solar and Stellar Astrophysics +1703.06302 Plasma Physics +1703.06303 Optimization and Control +1703.06304 Atomic Physics +1703.06305 Geometric Topology +1703.06306 Strongly Correlated Electrons +1703.06307 Computational Geometry +1703.06308 +1703.06309 Classical Physics +1703.06310 Materials Science +1703.06311 Physics and Society +1703.06312 Differential Geometry +1703.06313 Optimization and Control +1703.06314 Logic +1703.06315 Phenomenology +1703.06316 Functional Analysis +1703.06317 Human-Computer Interaction +1703.06318 +1703.06319 Cosmology and Nongalactic Astrophysics +1703.06320 Data Structures and Algorithms +1703.06322 Cryptography and Security +1703.06323 Numerical Analysis +1703.06324 Information Retrieval +1703.06325 Numerical Analysis +1703.06326 +1703.06327 Machine Learning +1703.06328 Probability +1703.06329 Differential Geometry +1703.06330 Experiment +1703.06331 +1703.06332 Dynamical Systems +1703.06333 Analysis of PDEs +1703.06334 Numerical Analysis +1703.06335 Dynamical Systems +1703.06336 Methodology +1703.06337 Software Engineering +1703.06338 Combinatorics +1703.06339 Computer Vision and Pattern Recognition +1703.06340 Classical Analysis and ODEs +1703.06341 +1703.06342 Number Theory +1703.06344 Spectral Theory +1703.06345 Computation and Language +1703.06346 Soft Condensed Matter +1703.06347 Combinatorics +1703.06348 Databases +1703.06350 Software Engineering +1703.06351 Pricing of Securities +1703.06352 Experiment +1703.06353 Software Engineering +1703.06354 Artificial Intelligence +1703.06355 +1703.06357 Analysis of PDEs +1703.06358 High Energy Astrophysical Phenomena +1703.06359 Numerical Analysis +1703.06361 Social and Information Networks +1703.06362 Classical Analysis and ODEs +1703.06363 Theory +1703.06364 Lattice +1703.06365 Materials Science +1703.06366 Materials Science +1703.06367 Computer Science and Game Theory +1703.06368 Programming Languages +1703.06369 Superconductivity +1703.06370 Computer Vision and Pattern Recognition +1703.06371 Systems and Control +1703.06372 Theory +1703.06373 Discrete Mathematics +1703.06374 Theory +1703.06375 Applications +1703.06376 Computer Vision and Pattern Recognition +1703.06377 Combinatorics +1703.06378 Applications +1703.06379 Methodology +1703.06380 Computer Vision and Pattern Recognition +1703.06381 Theory +1703.06382 Combinatorics +1703.06383 Optics +1703.06384 Emerging Technologies +1703.06385 Materials Science +1703.06386 Earth and Planetary Astrophysics +1703.06387 Robotics +1703.06388 Theory +1703.06389 Computer Vision and Pattern Recognition +1703.06390 +1703.06391 Logic +1703.06392 Algebraic Geometry +1703.06393 Superconductivity +1703.06394 Optimization and Control +1703.06395 Functional Analysis +1703.06396 Astrophysics of Galaxies +1703.06397 Phenomenology +1703.06398 Chaotic Dynamics +1703.06399 High Energy Astrophysical Phenomena +1703.06400 Chemical Physics +1703.06401 Number Theory +1703.06402 Theory +1703.06403 Metric Geometry +1703.06404 Representation Theory +1703.06405 Operator Algebras +1703.06406 Materials Science +1703.06407 Instrumentation and Detectors +1703.06408 Computer Vision and Pattern Recognition +1703.06409 Distributed, Parallel, and Cluster Computing +1703.06410 Theory +1703.06411 Theory +1703.06413 +1703.06415 +1703.06416 Multiagent Systems +1703.06417 Methodology +1703.06418 Computer Vision and Pattern Recognition +1703.06419 Methodology +1703.06420 Differential Geometry +1703.06421 Analysis of PDEs +1703.06422 Physics and Society +1703.06423 Computational Complexity +1703.06424 Algebraic Geometry +1703.06425 Representation Theory +1703.06426 Learning +1703.06427 Classical Analysis and ODEs +1703.06428 Classical Analysis and ODEs +1703.06429 Fluid Dynamics +1703.06430 General Mathematics +1703.06431 Cosmology and Nongalactic Astrophysics +1703.06432 High Energy Astrophysical Phenomena +1703.06434 +1703.06435 Algebraic Geometry +1703.06437 Phenomenology +1703.06438 Instrumentation and Methods for Astrophysics +1703.06439 +1703.06440 Popular Physics +1703.06441 Functional Analysis +1703.06442 Astrophysics of Galaxies +1703.06443 Optimization and Control +1703.06444 Metric Geometry +1703.06445 Functional Analysis +1703.06446 Optimization and Control +1703.06447 Probability +1703.06448 Analysis of PDEs +1703.06449 Theory +1703.06450 Instrumentation and Methods for Astrophysics +1703.06451 Representation Theory +1703.06452 Computer Vision and Pattern Recognition +1703.06453 Analysis of PDEs +1703.06454 +1703.06455 Functional Analysis +1703.06456 Solar and Stellar Astrophysics +1703.06457 Soft Condensed Matter +1703.06458 Analysis of PDEs +1703.06459 Complex Variables +1703.06460 Commutative Algebra +1703.06461 Optimization and Control +1703.06462 Astrophysics of Galaxies +1703.06463 Numerical Analysis +1703.06464 Soft Condensed Matter +1703.06465 Analysis of PDEs +1703.06466 Materials Science +1703.06467 Number Theory +1703.06468 Cosmology and Nongalactic Astrophysics +1703.06469 Numerical Analysis +1703.06470 +1703.06471 Artificial Intelligence +1703.06473 Functional Analysis +1703.06474 Soft Condensed Matter +1703.06475 Optics +1703.06476 Machine Learning +1703.06477 Earth and Planetary Astrophysics +1703.06478 Strongly Correlated Electrons +1703.06479 Number Theory +1703.06480 Logic +1703.06481 Mesoscale and Nanoscale Physics +1703.06482 Combinatorics +1703.06483 Information Theory +1703.06484 Probability +1703.06485 Learning +1703.06486 High Energy Astrophysical Phenomena +1703.06487 Computational Geometry +1703.06488 Number Theory +1703.06489 Quantum Algebra +1703.06490 Learning +1703.06491 Sound +1703.06492 Computer Vision and Pattern Recognition +1703.06493 Superconductivity +1703.06494 Numerical Analysis +1703.06495 Numerical Analysis +1703.06496 Molecular Networks +1703.06497 Adaptation and Self-Organizing Systems +1703.06499 Multimedia +1703.06500 Materials Science +1703.06501 Computation and Language +1703.06502 Classical Analysis and ODEs +1703.06503 Performance +1703.06504 Mesoscale and Nanoscale Physics +1703.06505 Strongly Correlated Electrons +1703.06506 Phenomenology +1703.06507 Optics +1703.06508 Soft Condensed Matter +1703.06509 Numerical Analysis +1703.06510 +1703.06511 Atmospheric and Oceanic Physics +1703.06512 +1703.06513 Learning +1703.06514 Learning +1703.06515 Analysis of PDEs +1703.06516 Theory +1703.06517 Chemical Physics +1703.06519 Analysis of PDEs +1703.06521 Rings and Algebras +1703.06522 +1703.06523 Theory +1703.06524 Number Theory +1703.06525 Theory +1703.06526 Computational Geometry +1703.06527 Computer Vision and Pattern Recognition +1703.06528 Machine Learning +1703.06529 Probability +1703.06530 Number Theory +1703.06531 Optimization and Control +1703.06532 Molecular Networks +1703.06533 Theory +1703.06534 Solar and Stellar Astrophysics +1703.06535 +1703.06537 Machine Learning +1703.06538 Information Theory +1703.06539 Materials Science +1703.06541 Computation and Language +1703.06542 +1703.06543 Quantum Algebra +1703.06544 Phenomenology +1703.06545 Cryptography and Security +1703.06546 Operator Algebras +1703.06548 Analysis of PDEs +1703.06549 Combinatorics +1703.06550 Number Theory +1703.06551 Astrophysics of Galaxies +1703.06552 Phenomenology +1703.06553 Fluid Dynamics +1703.06554 Computer Vision and Pattern Recognition +1703.06555 Mesoscale and Nanoscale Physics +1703.06556 Combinatorics +1703.06557 Fluid Dynamics +1703.06558 Methodology +1703.06559 Methodology +1703.06560 Solar and Stellar Astrophysics +1703.06561 +1703.06562 Algebraic Topology +1703.06563 +1703.06564 Chemical Physics +1703.06565 Artificial Intelligence +1703.06566 High Energy Astrophysical Phenomena +1703.06567 Systems and Control +1703.06568 Logic in Computer Science +1703.06569 Logic in Computer Science +1703.06570 Logic in Computer Science +1703.06571 Operating Systems +1703.06572 Networking and Internet Architecture +1703.06573 Cryptography and Security +1703.06574 Software Engineering +1703.06575 Software Engineering +1703.06576 Software Engineering +1703.06577 Programming Languages +1703.06578 Logic in Computer Science +1703.06579 Optics +1703.06580 High Energy Astrophysical Phenomena +1703.06581 Optimization and Control +1703.06582 Earth and Planetary Astrophysics +1703.06583 Analysis of PDEs +1703.06584 +1703.06586 Cryptography and Security +1703.06587 Information Retrieval +1703.06588 Theory +1703.06590 Software Engineering +1703.06591 +1703.06592 Information Theory +1703.06595 Combinatorics +1703.06596 Information Theory +1703.06597 Artificial Intelligence +1703.06598 Probability +1703.06599 Numerical Analysis +1703.06600 Differential Geometry +1703.06601 Strongly Correlated Electrons +1703.06602 Applications +1703.06603 Applications +1703.06604 Optimization and Control +1703.06605 Optimization and Control +1703.06606 Numerical Analysis +1703.06608 Classical Analysis and ODEs +1703.06609 Geometric Topology +1703.06610 Statistics Theory +1703.06611 Information Theory +1703.06612 Combinatorics +1703.06613 +1703.06614 Astrophysics of Galaxies +1703.06616 Logic +1703.06617 Probability +1703.06618 Computer Vision and Pattern Recognition +1703.06620 Phenomenology +1703.06621 Disordered Systems and Neural Networks +1703.06622 Number Theory +1703.06623 Chaotic Dynamics +1703.06624 Spectral Theory +1703.06625 Chaotic Dynamics +1703.06626 +1703.06628 Atomic Physics +1703.06629 Numerical Analysis +1703.06630 Information Retrieval +1703.06631 Algebraic Geometry +1703.06632 Materials Science +1703.06633 Methodology +1703.06634 +1703.06635 Instrumentation and Methods for Astrophysics +1703.06637 Computers and Society +1703.06638 +1703.06639 Analysis of PDEs +1703.06640 Dynamical Systems +1703.06641 Superconductivity +1703.06642 Artificial Intelligence +1703.06643 Fluid Dynamics +1703.06644 Data Structures and Algorithms +1703.06645 Digital Libraries +1703.06646 Metric Geometry +1703.06647 Cosmology and Nongalactic Astrophysics +1703.06648 Networking and Internet Architecture +1703.06649 Phenomenology +1703.06652 Information Theory +1703.06653 Combinatorics +1703.06654 Number Theory +1703.06655 +1703.06656 Cosmology and Nongalactic Astrophysics +1703.06657 Cosmology and Nongalactic Astrophysics +1703.06658 Algebraic Topology +1703.06660 Cryptography and Security +1703.06661 Solar and Stellar Astrophysics +1703.06662 Atmospheric and Oceanic Physics +1703.06663 Data Analysis, Statistics and Probability +1703.06664 Neural and Evolutionary Computing +1703.06666 Phenomenology +1703.06667 Phenomenology +1703.06668 Mesoscale and Nanoscale Physics +1703.06669 Optics +1703.06671 Solar and Stellar Astrophysics +1703.06672 Mesoscale and Nanoscale Physics +1703.06673 Number Theory +1703.06674 Solar and Stellar Astrophysics +1703.06676 Computer Vision and Pattern Recognition +1703.06677 +1703.06678 Mesoscale and Nanoscale Physics +1703.06679 Analysis of PDEs +1703.06680 Distributed, Parallel, and Cluster Computing +1703.06681 +1703.06683 Learning +1703.06685 Commutative Algebra +1703.06686 Machine Learning +1703.06687 Social and Information Networks +1703.06688 Numerical Analysis +1703.06689 Earth and Planetary Astrophysics +1703.06690 Optimization and Control +1703.06691 Geometric Topology +1703.06692 Artificial Intelligence +1703.06693 +1703.06694 Algebraic Geometry +1703.06695 Complex Variables +1703.06696 Cosmology and Nongalactic Astrophysics +1703.06697 Sound +1703.06698 Soft Condensed Matter +1703.06699 Theory +1703.06700 Learning +1703.06701 Number Theory +1703.06702 Lattice +1703.06703 Lattice +1703.06704 Algebraic Geometry +1703.06705 Materials Science +1703.06706 Combinatorics +1703.06707 Materials Science +1703.06708 Computational Engineering, Finance, and Science +1703.06709 Exactly Solvable and Integrable Systems +1703.06710 Experiment +1703.06711 +1703.06712 Software Engineering +1703.06713 +1703.06714 Information Theory +1703.06715 Mesoscale and Nanoscale Physics +1703.06716 Earth and Planetary Astrophysics +1703.06717 Commutative Algebra +1703.06718 Theory +1703.06719 Applications +1703.06720 Analysis of PDEs +1703.06721 Systems and Control +1703.06722 Number Theory +1703.06723 High Energy Astrophysical Phenomena +1703.06724 Optimization and Control +1703.06725 Combinatorics +1703.06726 Learning +1703.06728 Complex Variables +1703.06729 +1703.06730 +1703.06731 Systems and Control +1703.06732 Operator Algebras +1703.06733 Data Structures and Algorithms +1703.06734 +1703.06735 Experiment +1703.06736 Populations and Evolution +1703.06737 Optimization and Control +1703.06738 Differential Geometry +1703.06739 Trading and Market Microstructure +1703.06740 Statistical Mechanics +1703.06741 Materials Science +1703.06742 Solar and Stellar Astrophysics +1703.06743 Numerical Analysis +1703.06744 Networking and Internet Architecture +1703.06745 General Mathematics +1703.06746 Discrete Mathematics +1703.06747 Classical Analysis and ODEs +1703.06748 Learning +1703.06749 Machine Learning +1703.06750 Phenomenology +1703.06751 Classical Analysis and ODEs +1703.06753 Quantum Gases +1703.06755 Instrumentation and Detectors +1703.06756 Materials Science +1703.06757 Classical Analysis and ODEs +1703.06758 Materials Science +1703.06759 Classical Analysis and ODEs +1703.06760 Functional Analysis +1703.06761 Pattern Formation and Solitons +1703.06763 +1703.06764 Instrumentation and Detectors +1703.06765 Popular Physics +1703.06766 Complex Variables +1703.06767 Probability +1703.06768 History and Overview +1703.06769 Astrophysics of Galaxies +1703.06771 Functional Analysis +1703.06772 History and Overview +1703.06773 Functional Analysis +1703.06774 Chaotic Dynamics +1703.06775 Functional Analysis +1703.06776 High Energy Astrophysical Phenomena +1703.06777 Learning +1703.06779 Statistical Mechanics +1703.06780 Numerical Analysis +1703.06782 Analysis of PDEs +1703.06783 Formal Languages and Automata Theory +1703.06784 Materials Science +1703.06785 Metric Geometry +1703.06786 Materials Science +1703.06787 Materials Science +1703.06788 Materials Science +1703.06789 Probability +1703.06790 Materials Science +1703.06791 Materials Science +1703.06792 Materials Science +1703.06793 Functional Analysis +1703.06794 Solar and Stellar Astrophysics +1703.06795 Optimization and Control +1703.06796 +1703.06797 Theory +1703.06798 Operator Algebras +1703.06799 Superconductivity +1703.06800 +1703.06801 Algebraic Topology +1703.06802 Cosmology and Nongalactic Astrophysics +1703.06803 Number Theory +1703.06804 Applications +1703.06805 Algebraic Geometry +1703.06806 General Mathematics +1703.06807 Learning +1703.06808 Methodology +1703.06809 Dynamical Systems +1703.06810 Statistics Theory +1703.06811 Cryptography and Security +1703.06812 Sound +1703.06813 Networking and Internet Architecture +1703.06814 +1703.06815 Artificial Intelligence +1703.06816 Algebraic Topology +1703.06817 Computer Vision and Pattern Recognition +1703.06818 Atomic Physics +1703.06819 Differential Geometry +1703.06820 Fluid Dynamics +1703.06821 Algebraic Geometry +1703.06822 Logic in Computer Science +1703.06823 Software Engineering +1703.06825 +1703.06826 Computation +1703.06827 Materials Science +1703.06828 Algebraic Geometry +1703.06829 Differential Geometry +1703.06830 Classical Analysis and ODEs +1703.06831 +1703.06833 Classical Analysis and ODEs +1703.06836 +1703.06838 Chemical Physics +1703.06840 Statistical Finance +1703.06842 Functional Analysis +1703.06843 Social and Information Networks +1703.06844 Combinatorics +1703.06845 Solar and Stellar Astrophysics +1703.06846 Learning +1703.06847 Analysis of PDEs +1703.06848 Numerical Analysis +1703.06849 High Energy Astrophysical Phenomena +1703.06850 +1703.06851 Differential Geometry +1703.06852 Representation Theory +1703.06853 Systems and Control +1703.06854 Optics +1703.06855 Astrophysics of Galaxies +1703.06856 Machine Learning +1703.06857 Computer Vision and Pattern Recognition +1703.06858 Information Theory +1703.06859 Analysis of PDEs +1703.06860 Solar and Stellar Astrophysics +1703.06861 Symplectic Geometry +1703.06863 Analysis of PDEs +1703.06864 Atomic Physics +1703.06865 Number Theory +1703.06867 Metric Geometry +1703.06868 Computer Vision and Pattern Recognition +1703.06869 High Energy Astrophysical Phenomena +1703.06870 Computer Vision and Pattern Recognition +1703.06872 Probability +1703.06874 Geometric Topology +cond-mat/0611517 Superconductivity +math/0406499 Quantum Algebra +1702.03836 Geometric Topology +0910.0044 Probability +1003.0190 Networking and Internet Architecture +1005.0092 Networking and Internet Architecture +1006.0749 Probability +1103.2216 Atomic Physics +1103.2965 Probability +1104.1010 Cryptography and Security +1104.4959 Networking and Internet Architecture +1106.1613 Instrumentation and Detectors +1112.3535 Networking and Internet Architecture +1206.1768 Differential Geometry +1211.6775 Combinatorics +1301.1105 Experiment +1305.5036 Tissues and Organs +1306.2533 Learning +1306.3435 General Physics +1308.3832 Pattern Formation and Solitons +1309.1653 Atomic Physics +1309.2191 Combinatorics +1312.3728 Atomic Physics +1312.7449 Probability +1401.6620 Optics +1402.1695 Atomic Physics +1403.6925 Atomic Physics +1406.1742 Probability +1406.7366 +1408.6912 Optimization and Control +1408.6914 Optimization and Control +1408.6917 Optimization and Control +1409.3249 Optimization and Control +1409.5585 +1410.2089 Geometric Topology +1411.1894 Atomic Physics +1411.6268 Probability +1412.4604 Physics Education +1501.01024 Theory +1502.00342 Statistics Theory +1502.02741 Information Theory +1502.05354 Phenomenology +1503.04438 Dynamical Systems +1503.05602 Probability +1503.07106 +1503.07999 +1504.00424 Optimization and Control +1504.02734 Mathematical Finance +1504.06496 Geometric Topology +1505.01999 +1506.01634 Physics and Society +1506.03295 Optimization and Control +1508.00323 Complex Variables +1508.02121 +1508.04071 Materials Science +1509.03352 Astrophysics of Galaxies +1509.04963 Number Theory +1509.08387 Machine Learning +1509.09028 +1510.04117 Dynamical Systems +1510.04865 Differential Geometry +1511.01163 Probability +1511.02113 Networking and Internet Architecture +1511.03501 Geometric Topology +1511.06169 Superconductivity +1512.00536 +1512.02474 Tissues and Organs +1512.05631 Fluid Dynamics +1512.07823 +1601.00624 Phenomenology +1601.01393 Materials Science +1601.02227 Superconductivity +1601.05208 Combinatorics +1601.05324 Number Theory +1601.05596 Information Theory +1602.00284 Quantum Algebra +1602.03400 Information Theory +1602.04060 Computation +1602.05146 +1602.06371 +1603.01783 Number Theory +1603.03763 Disordered Systems and Neural Networks +1603.04705 Algebraic Geometry +1603.05295 Differential Geometry +1603.05415 Dynamical Systems +1603.09291 Databases +1604.00222 Number Theory +1604.00997 Distributed, Parallel, and Cluster Computing +1604.04170 Theory +1604.06148 Disordered Systems and Neural Networks +1604.08443 Formal Languages and Automata Theory +1604.08663 Optimization and Control +1605.02386 Numerical Analysis +1605.02404 Superconductivity +1605.03247 Analysis of PDEs +1605.03831 Phenomenology +1605.05285 Numerical Analysis +1605.05456 Atomic Physics +1605.06391 Learning +1605.06686 Optimization and Control +1605.06931 Learning +1605.08502 +1605.08717 Populations and Evolution +1606.00465 Combinatorics +1606.01655 Cryptography and Security +1606.02192 Rings and Algebras +1606.03566 Combinatorics +1606.04038 Learning +1606.05650 Statistical Mechanics +1606.08960 Numerical Analysis +1607.01114 Algebraic Geometry +1607.01988 Mesoscale and Nanoscale Physics +1607.02566 Methodology +1607.02796 Materials Science +1607.03432 Data Structures and Algorithms +1607.04020 Phenomenology +1607.04071 Combinatorics +1607.04904 Logic +1607.05865 +1607.08134 Plasma Physics +1607.08743 Applications +1608.01463 Data Structures and Algorithms +1608.03247 Theory +1608.03355 +1608.04426 Learning +1608.05047 Atomic Physics +1608.06514 Neural and Evolutionary Computing +1608.06532 +1608.07249 Distributed, Parallel, and Cluster Computing +1608.08039 Optimization and Control +1608.08588 Number Theory +1608.08976 Atomic Physics +1609.00444 Instrumentation and Detectors +1609.00806 +1609.00828 +1609.03278 Computational Complexity +1609.03420 +1609.04158 +1609.06816 Mesoscale and Nanoscale Physics +1609.07151 Lattice +1609.07646 Plasma Physics +1609.09403 Chemical Physics +1610.01624 Cosmology and Nongalactic Astrophysics +1610.02284 Quantum Gases +1610.04613 Phenomenology +1610.04675 Probability +1610.05256 Computation and Language +1610.08429 Materials Science +1610.08431 Computation and Language +1610.09109 Statistics Theory +1611.00145 Strongly Correlated Electrons +1611.00310 High Energy Astrophysical Phenomena +1611.00654 +1611.00793 Phenomenology +1611.01409 Astrophysics of Galaxies +1611.01629 Systems and Control +1611.01958 Statistical Finance +1611.02353 Phenomenology +1611.04668 Populations and Evolution +1611.04954 Cosmology and Nongalactic Astrophysics +1611.06062 Instrumentation and Methods for Astrophysics +1611.06310 Machine Learning +1611.07749 Strongly Correlated Electrons +1611.07807 Computer Vision and Pattern Recognition +1611.08033 Optics +1611.08108 Artificial Intelligence +1611.08561 Information Theory +1611.08563 Computer Vision and Pattern Recognition +1611.08665 Theory +1611.08806 Number Theory +1611.09359 Phenomenology +1611.09478 Probability +1611.09588 Statistics Theory +1611.09655 Strongly Correlated Electrons +1612.00180 High Energy Astrophysical Phenomena +1612.01658 Mesoscale and Nanoscale Physics +1612.02778 Number Theory +1612.04022 Learning +1612.04080 +1612.05165 Spectral Theory +1612.05324 High Energy Astrophysical Phenomena +1612.06128 Mesoscale and Nanoscale Physics +1612.06264 Cosmology and Nongalactic Astrophysics +1612.06529 Theory +1612.07705 Theory +1612.08217 Operator Algebras +1612.08721 Number Theory +1612.09198 Networking and Internet Architecture +1612.09282 Pattern Formation and Solitons +1612.09589 Strongly Correlated Electrons +1701.00699 +1701.00847 Disordered Systems and Neural Networks +1701.01002 Complex Variables +1701.01573 Computer Vision and Pattern Recognition +1701.01829 Mesoscale and Nanoscale Physics +1701.02880 Materials Science +1701.03019 General Physics +1701.03284 Phenomenology +1701.03589 Superconductivity +1701.03597 Optics +1701.03789 Astrophysics of Galaxies +1701.03794 Astrophysics of Galaxies +1701.04590 Mesoscale and Nanoscale Physics +1701.04946 Phenomenology +1701.04950 Information Theory +1701.05104 +1701.06156 Theory +1701.06341 Information Theory +1701.06688 Information Theory +1701.06743 Cryptography and Security +1701.06998 Soft Condensed Matter +1701.07069 Astrophysics of Galaxies +1701.07204 Data Structures and Algorithms +1701.07542 Instrumentation and Detectors +1701.07830 Astrophysics of Galaxies +1701.07917 Materials Science +1701.08316 Rings and Algebras +1702.00156 Computer Vision and Pattern Recognition +1702.00710 Atomic Physics +1702.00944 Plasma Physics +1702.01126 Discrete Mathematics +1702.02525 Mesoscale and Nanoscale Physics +1702.02706 Computer Vision and Pattern Recognition +1702.02867 Cryptography and Security +1702.03326 Accelerator Physics +1702.03339 Accelerator Physics +1702.03358 Databases +1702.03393 High Energy Astrophysical Phenomena +1702.03401 Artificial Intelligence +1702.03409 Neurons and Cognition +1702.03454 Lattice +1702.03476 Statistics Theory +1702.03477 Optimization and Control +1702.03481 Optimization and Control +1702.03483 Information Theory +1702.03534 Distributed, Parallel, and Cluster Computing +1702.03540 +1702.03544 Mesoscale and Nanoscale Physics +1702.03573 Probability +1702.03585 Algebraic Topology +1702.03641 Statistical Mechanics +1702.03643 +1702.03647 Combinatorics +1702.03657 Data Structures and Algorithms +1702.03742 Atomic Physics +1702.03834 +1702.03847 Phenomenology +1702.03857 Lattice +1702.03865 Learning +1702.03896 Soft Condensed Matter +1702.04035 +1702.04077 Learning +1702.04091 Plasma Physics +1702.04105 Fluid Dynamics +1702.04177 Combinatorics +1702.04407 Machine Learning +1702.04421 Cryptography and Security +1702.04427 Instrumentation and Detectors +1702.04608 Combinatorics +1702.04637 +1702.04782 Learning +1702.04783 Optimization and Control +1702.04858 Computer Vision and Pattern Recognition +1702.04914 Statistical Mechanics +1702.04940 Systems and Control +1702.04941 Systems and Control +1702.04962 Astrophysics of Galaxies +1702.04998 Theory +1702.05066 Statistics Theory +1702.05079 Logic in Computer Science +1702.05091 Space Physics +1702.05092 Numerical Analysis +1702.05093 Instrumentation and Detectors +1702.05094 Cosmology and Nongalactic Astrophysics +1702.05095 Theory +1702.05096 Solar and Stellar Astrophysics +1702.05097 Quantum Gases +1702.05098 Phenomenology +1702.05100 Theory +1702.05101 Theory +1702.05102 Astrophysics of Galaxies +1702.05103 Cosmology and Nongalactic Astrophysics +1702.05106 Phenomenology +1702.05107 Astrophysics of Galaxies +1702.05108 Earth and Planetary Astrophysics +1702.05109 Earth and Planetary Astrophysics +1702.05110 +1702.05111 +1702.05112 Digital Libraries +1702.05113 Statistics Theory +1702.05114 Computational Physics +1702.05116 Systems and Control +1702.05117 Solar and Stellar Astrophysics +1702.05118 Differential Geometry +1702.05119 Social and Information Networks +1702.05120 Rings and Algebras +1702.05121 Materials Science +1702.05122 Optimization and Control +1702.05123 Earth and Planetary Astrophysics +1702.05125 Materials Science +1702.05126 Instrumentation and Methods for Astrophysics +1702.05127 Combinatorics +1702.05128 Plasma Physics +1702.05129 Populations and Evolution +1702.05130 Mesoscale and Nanoscale Physics +1702.05131 Number Theory +1702.05132 Atomic Physics +1702.05133 Quantum Algebra +1702.05134 Fluid Dynamics +1702.05135 Strongly Correlated Electrons +1702.05137 Machine Learning +1702.05138 Superconductivity +1702.05139 Computational Complexity +1702.05140 Mesoscale and Nanoscale Physics +1702.05142 Optimization and Control +1702.05144 +1702.05145 Materials Science +1702.05146 Software Engineering +1702.05147 Computer Vision and Pattern Recognition +1702.05148 Machine Learning +1702.05149 Fluid Dynamics +1702.05150 Human-Computer Interaction +1702.05151 Differential Geometry +1702.05153 Information Theory +1702.05154 Medical Physics +1702.05155 +1702.05156 Computer Vision and Pattern Recognition +1702.05159 Accelerator Physics +1702.05160 Experiment +1702.05161 +1702.05163 Biological Physics +1702.05164 Quantum Algebra +1702.05165 +1702.05166 Mesoscale and Nanoscale Physics +1702.05167 Computational Physics +1702.05168 Dynamical Systems +1702.05169 Algebraic Geometry +1702.05170 Dynamical Systems +1702.05171 Solar and Stellar Astrophysics +1702.05172 Differential Geometry +1702.05173 Computational Physics +1702.05174 Computer Vision and Pattern Recognition +1702.05175 Fluid Dynamics +1702.05176 Instrumentation and Methods for Astrophysics +1702.05177 +1702.05178 +1702.05179 Probability +1702.05180 Instrumentation and Detectors +1702.05181 Information Retrieval +1702.05182 Plasma Physics +1702.05183 Computational Complexity +1702.05184 Learning +1702.05186 Learning +1702.05187 Numerical Analysis +1702.05188 Numerical Analysis +1702.05189 Methodology +1702.05192 Learning +1702.05193 Statistics Theory +1702.05194 Algebraic Topology +1702.05195 Methodology +1702.05196 Numerical Analysis +1702.05197 Networking and Internet Architecture +1702.05198 Plasma Physics +1702.05200 Databases +1702.05201 +1702.05202 Information Theory +1702.05203 Chemical Physics +1702.05204 Complex Variables +1702.05206 Category Theory +1702.05208 Soft Condensed Matter +1702.05209 +1702.05210 Theory +1702.05211 History and Philosophy of Physics +1702.05212 Optics +1702.05213 Probability +1702.05214 Information Theory +1702.05215 +1702.05216 Numerical Analysis +1702.05217 Data Structures and Algorithms +1702.05218 Social and Information Networks +1702.05220 Analysis of PDEs +1702.05221 Analysis of PDEs +1702.05222 Information Theory +1702.05223 Symplectic Geometry +1702.05224 Discrete Mathematics +1702.05225 Statistical Mechanics +1702.05226 Materials Science +1702.05228 Mesoscale and Nanoscale Physics +1702.05229 Quantum Gases +1702.05231 +1702.05232 Mesoscale and Nanoscale Physics +1702.05233 Optics +1702.05234 Classical Analysis and ODEs +1702.05235 Networking and Internet Architecture +1702.05236 High Energy Astrophysical Phenomena +1702.05237 Mesoscale and Nanoscale Physics +1702.05238 High Energy Astrophysical Phenomena +1702.05239 +1702.05240 Computers and Society +1702.05241 Cryptography and Security +1702.05242 Representation Theory +1702.05244 High Energy Astrophysical Phenomena +1702.05245 Spectral Theory +1702.05246 +1702.05247 Superconductivity +1702.05248 Information Theory +1702.05250 Human-Computer Interaction +1702.05251 Networking and Internet Architecture +1702.05252 +1702.05253 Dynamical Systems +1702.05254 Neurons and Cognition +1702.05255 Strongly Correlated Electrons +1702.05256 Materials Science +1702.05257 Combinatorics +1702.05258 Representation Theory +1702.05259 Neurons and Cognition +1702.05260 Analysis of PDEs +1702.05261 Rings and Algebras +1702.05262 Distributed, Parallel, and Cluster Computing +1702.05263 Phenomenology +1702.05264 Spectral Theory +1702.05265 Computational Geometry +1702.05266 High Energy Astrophysical Phenomena +1702.05267 Materials Science +1702.05268 Cosmology and Nongalactic Astrophysics +1702.05269 Chemical Physics +1702.05270 Computation and Language +1702.05271 +1702.05272 Information Theory +1702.05273 Strongly Correlated Electrons +1702.05274 Analysis of PDEs +1702.05275 Instrumentation and Detectors +1702.05276 Functional Analysis +1702.05277 Analysis of PDEs +1702.05278 Analysis of PDEs +1702.05282 +1702.05283 Materials Science +1702.05284 Data Structures and Algorithms +1702.05285 Functional Analysis +1702.05286 Materials Science +1702.05287 Analysis of PDEs +1702.05288 Quantitative Methods +1702.05291 Phenomenology +1702.05292 Group Theory +1702.05293 Numerical Analysis +1702.05294 Algebraic Geometry +1702.05295 Algebraic Geometry +1702.05296 +1702.05297 Differential Geometry +1702.05298 Mesoscale and Nanoscale Physics +1702.05299 +1702.05300 Strongly Correlated Electrons +1702.05301 Cosmology and Nongalactic Astrophysics +1702.05302 Analysis of PDEs +1702.05303 Combinatorics +1702.05304 Pattern Formation and Solitons +1702.05305 Chemical Physics +1702.05306 Geometric Topology +1702.05307 Quantitative Methods +1702.05308 Neural and Evolutionary Computing +1702.05310 Chemical Physics +1702.05311 Cryptography and Security +1702.05312 Analysis of PDEs +1702.05313 Algebraic Geometry +1702.05314 Systems and Control +1702.05315 Statistics Theory +1702.05316 Classical Analysis and ODEs +1702.05317 Analysis of PDEs +1702.05318 Differential Geometry +1702.05319 +1702.05321 Analysis of PDEs +1702.05322 Materials Science +1702.05327 Learning +1702.05328 Computational Complexity +1702.05329 Number Theory +1702.05330 +1702.05331 Materials Science +1702.05332 +1702.05333 Phenomenology +1702.05334 Formal Languages and Automata Theory +1702.05335 High Energy Astrophysical Phenomena +1702.05336 Plasma Physics +1702.05337 Phenomenology +1702.05338 Classical Analysis and ODEs +1702.05340 Methodology +1702.05341 +1702.05342 Logic in Computer Science +1702.05344 Rings and Algebras +1702.05345 Information Theory +1702.05346 Cryptography and Security +1702.05347 +1702.05348 Optics +1702.05349 Networking and Internet Architecture +1702.05351 Dynamical Systems +1702.05352 Representation Theory +1702.05354 Social and Information Networks +1702.05356 Probability +1702.05357 Algebraic Topology +1702.05358 Computational Geometry +1702.05359 +1702.05360 Lattice +1702.05362 Geometric Topology +1702.05363 Phenomenology +1702.05364 General Physics +1702.05365 Dynamical Systems +1702.05366 +1702.05367 Atomic Physics +1702.05368 +1702.05369 Probability +1702.05370 Statistical Mechanics +1702.05375 Solar and Stellar Astrophysics +1702.05376 Artificial Intelligence +1702.05377 Experiment +1702.05380 Disordered Systems and Neural Networks +1702.05381 +1702.05382 Materials Science +1702.05383 Artificial Intelligence +1702.05384 Materials Science +1702.05385 +1702.05386 Machine Learning +1702.05387 Analysis of PDEs +1702.05389 Mesoscale and Nanoscale Physics +1702.05390 Data Analysis, Statistics and Probability +1702.05391 Instrumentation and Methods for Astrophysics +1702.05392 +1702.05393 Systems and Control +1702.05394 Data Analysis, Statistics and Probability +1702.05396 Statistical Mechanics +1702.05397 Networking and Internet Architecture +1702.05398 Computation and Language +1702.05399 Other Condensed Matter +1702.05400 Biological Physics +1702.05401 Other Condensed Matter +1702.05402 Mesoscale and Nanoscale Physics +1702.05403 Physics and Society +1702.05404 Soft Condensed Matter +1702.05405 Classical Physics +1702.05406 Mesoscale and Nanoscale Physics +1702.05407 Physics and Society +1702.05408 Mesoscale and Nanoscale Physics +1702.05409 Mesoscale and Nanoscale Physics +1702.05410 +1702.05411 Information Theory +1702.05412 Distributed, Parallel, and Cluster Computing +1702.05413 Computer Vision and Pattern Recognition +1702.05414 Materials Science +1702.05415 Representation Theory +1702.05416 Materials Science +1702.05417 Lattice +1702.05419 Probability +1702.05421 Computer Vision and Pattern Recognition +1702.05422 Other Condensed Matter +1702.05423 Optimization and Control +1702.05424 Geometric Topology +1702.05427 Social and Information Networks +1702.05428 Instrumentation and Detectors +1702.05429 Astrophysics of Galaxies +1702.05430 Astrophysics of Galaxies +1702.05431 Phenomenology +1702.05432 Phenomenology +1702.05433 Solar and Stellar Astrophysics +1702.05434 Trading and Market Microstructure +1702.05436 Phenomenology +1702.05438 Soft Condensed Matter +1702.05439 Classical Analysis and ODEs +1702.05441 Neural and Evolutionary Computing +1702.05442 Classical Analysis and ODEs +1702.05443 Machine Learning +1702.05444 Astrophysics of Galaxies +1702.05445 Dynamical Systems +1702.05446 Information Retrieval +1702.05447 Computational Complexity +1702.05448 Computer Vision and Pattern Recognition +1702.05451 Disordered Systems and Neural Networks +1702.05454 Information Theory +1702.05455 Formal Languages and Automata Theory +1702.05456 Distributed, Parallel, and Cluster Computing +1702.05458 Astrophysics of Galaxies +1702.05459 Distributed, Parallel, and Cluster Computing +1702.05460 Superconductivity +1702.05461 Mesoscale and Nanoscale Physics +1702.05462 Methodology +1702.05463 Programming Languages +1702.05464 Computer Vision and Pattern Recognition +1702.05465 Astrophysics of Galaxies +1702.05466 Combinatorics +1702.05467 Geometric Topology +1702.05468 Probability +1702.05469 Differential Geometry +1702.05472 Logic in Computer Science +1702.05473 Combinatorics +1702.05475 Statistical Mechanics +alg-geom/9402007 Algebraic Geometry +cond-mat/0305106 Strongly Correlated Electrons +cond-mat/0306236 Strongly Correlated Electrons +cond-mat/0306473 Strongly Correlated Electrons +cond-mat/0505639 Other Condensed Matter +cond-mat/0603436 Statistical Mechanics +cond-mat/0701442 Other Condensed Matter +physics/0612106 Atomic Physics +physics/0703138 Optics +quant-ph/0701139 +quant-ph/9508027 +0805.4758 +0903.0687 Physics and Society +0903.1180 Spectral Theory +0903.4055 History and Philosophy of Physics +1105.0113 Geometric Topology +1110.5671 Operator Algebras +1207.1699 Rings and Algebras +1210.0508 Learning +1301.2446 Rings and Algebras +1302.2604 Operator Algebras +1303.2303 Commutative Algebra +1305.5043 Representation Theory +1312.0096 Complex Variables +1402.5272 Rings and Algebras +1402.5498 +1403.6057 Statistics Theory +1405.0582 Phenomenology +1409.0151 Rings and Algebras +1409.8672 +1410.0185 Commutative Algebra +1410.6782 Methodology +1502.00966 Analysis of PDEs +1502.02332 Combinatorics +1502.04074 Statistical Mechanics +1502.05158 Classical Analysis and ODEs +1503.05242 Combinatorics +1503.06522 Populations and Evolution +1504.01537 Representation Theory +1504.04614 Theory +1504.08054 +1505.01001 +1505.02893 Rings and Algebras +1506.02799 Networking and Internet Architecture +1506.04664 Number Theory +1506.05086 Optics +1507.00793 Operator Algebras +1507.02399 Numerical Analysis +1507.07771 Probability +1507.08677 Mesoscale and Nanoscale Physics +1508.07057 Quantum Algebra +1509.00049 Statistics Theory +1509.02608 Analysis of PDEs +1509.04102 Logic +1510.01873 Numerical Analysis +1510.03945 Data Structures and Algorithms +1510.05144 Methodology +1510.06086 Plasma Physics +1510.08574 Mesoscale and Nanoscale Physics +1511.02242 Fluid Dynamics +1511.03314 Representation Theory +1511.05073 Information Theory +1511.07471 Learning +1511.09135 +1512.01522 Mesoscale and Nanoscale Physics +1512.02772 +1512.04389 Category Theory +1512.06527 Numerical Analysis +1512.07786 Classical Analysis and ODEs +1512.08046 Phenomenology +1601.03667 +1601.03891 Physics and Society +1601.04199 Theory +1601.06839 Number Theory +1601.07184 Disordered Systems and Neural Networks +1601.07415 Populations and Evolution +1602.01253 Logic +1602.01481 Phenomenology +1602.02637 Geometric Topology +1602.05991 Phenomenology +1603.00119 Computer Science and Game Theory +1603.01224 +1603.04548 Populations and Evolution +1603.08172 +1603.08232 Computation +1603.09064 Learning +1604.00354 Theory +1604.00982 Physics Education +1604.01143 Quantum Algebra +1604.01573 +1604.01660 Analysis of PDEs +1604.02093 Materials Science +1604.02197 +1604.04761 Information Theory +1604.07302 Dynamical Systems +1604.07801 Representation Theory +1604.08338 Analysis of PDEs +1604.08462 Applications +1605.01718 +1605.02704 Quantum Gases +1605.03999 Networking and Internet Architecture +1605.04754 +1605.06389 Functional Analysis +1605.09351 Learning +1605.09763 Numerical Analysis +1606.01091 Data Structures and Algorithms +1606.01169 Social and Information Networks +1606.05337 Cosmology and Nongalactic Astrophysics +1606.05496 Combinatorics +1606.06438 Optimization and Control +1606.06751 Cosmology and Nongalactic Astrophysics +1606.07308 Analysis of PDEs +1606.07388 Networking and Internet Architecture +1606.07498 Other Computer Science +1606.07959 +1606.08282 Machine Learning +1606.09015 Quantum Gases +1607.00077 Probability +1607.00462 Chaotic Dynamics +1607.01400 Machine Learning +1607.01417 Machine Learning +1607.01479 Analysis of PDEs +1607.01882 Number Theory +1607.02036 Metric Geometry +1607.02314 Materials Science +1607.03496 Disordered Systems and Neural Networks +1607.03845 Cosmology and Nongalactic Astrophysics +1607.04005 Computational Geometry +1607.04718 Theory +1607.04826 Optimization and Control +1607.05928 Phenomenology +1607.06867 Atomic Physics +1607.07068 Combinatorics +1607.08595 Optics +1608.00500 Numerical Analysis +1608.01200 Optimization and Control +1608.02589 Disordered Systems and Neural Networks +1608.03873 Classical Analysis and ODEs +1608.04561 Strongly Correlated Electrons +1608.04734 Theory +1608.07963 +1609.00371 Phenomenology +1609.00981 Tissues and Organs +1609.01231 Analysis of PDEs +1609.01610 Atomic Physics +1609.03053 Numerical Analysis +1609.04054 Plasma Physics +1609.04214 Cryptography and Security +1609.04523 Machine Learning +1609.05539 Machine Learning +1609.06702 Strongly Correlated Electrons +1609.07199 Optimization and Control +1609.07713 Materials Science +1609.09069 Phenomenology +1610.01060 Quantum Gases +1610.02246 Functional Analysis +1610.02908 Physics and Society +1610.03494 Phenomenology +1610.04411 Phenomenology +1610.04546 Software Engineering +1610.04724 Analysis of PDEs +1610.04886 Metric Geometry +1610.05061 Instrumentation and Detectors +1610.05210 Information Theory +1610.05244 Strongly Correlated Electrons +1610.05318 Theory +1610.05336 Group Theory +1610.05499 Fluid Dynamics +1610.07519 Optimization and Control +1610.07573 Materials Science +1610.08203 Methodology +1610.08397 Phenomenology +1610.08977 Astrophysics of Galaxies +1610.09251 General Physics +1610.09803 Quantum Algebra +1611.00087 Methodology +1611.00501 Disordered Systems and Neural Networks +1611.01159 High Energy Astrophysical Phenomena +1611.01269 +1611.01485 Methodology +1611.01951 Physics Education +1611.02462 Mesoscale and Nanoscale Physics +1611.04241 Astrophysics of Galaxies +1611.05163 +1611.06006 Phenomenology +1611.06746 Phenomenology +1611.06814 Computational Physics +1611.06993 Solar and Stellar Astrophysics +1611.07452 Lattice +1611.07803 Logic in Computer Science +1611.08282 Phenomenology +1611.09690 Accelerator Physics +1612.00301 Theory +1612.00609 Theory +1612.01278 Statistical Mechanics +1612.01435 Logic +1612.03469 +1612.03590 Computer Vision and Pattern Recognition +1612.04007 Computer Vision and Pattern Recognition +1612.04344 Phenomenology +1612.06418 +1612.06473 Data Structures and Algorithms +1612.06652 Number Theory +1612.06915 Artificial Intelligence +1612.07228 Theory +1612.07313 Phenomenology +1612.08040 Phenomenology +1612.08157 Computers and Society +1612.08619 History and Overview +1612.08634 Instrumentation and Detectors +1612.08769 Quantum Algebra +1612.08810 Learning +1612.09186 Popular Physics +1612.09572 Computers and Society +1701.00074 Mesoscale and Nanoscale Physics +1701.00140 +1701.00384 Distributed, Parallel, and Cluster Computing +1701.00444 General Physics +1701.00447 Instrumentation and Detectors +1701.00777 +1701.00785 Theory +1701.00909 Chemical Physics +1701.00954 General Topology +1701.01363 Analysis of PDEs +1701.01455 Theory +1701.01473 Atomic Physics +1701.01558 Applications +1701.01705 Differential Geometry +1701.02103 Mesoscale and Nanoscale Physics +1701.02332 Dynamical Systems +1701.02433 Computer Science and Game Theory +1701.02511 Learning +1701.03256 +1701.03342 Information Theory +1701.03484 Earth and Planetary Astrophysics +1701.03983 +1701.04331 Solar and Stellar Astrophysics +1701.04547 Logic in Computer Science +1701.04855 Probability +1701.04900 Optimization and Control +1701.04906 Digital Libraries +1701.04947 Instrumentation and Methods for Astrophysics +1701.05089 Materials Science +1701.05157 Neurons and Cognition +1701.05223 Methodology +1701.05242 Computational Physics +1701.05305 Machine Learning +1701.05306 Machine Learning +1701.05376 Materials Science +1701.05396 Differential Geometry +1701.05405 +1701.05426 Applications +1701.05555 Analysis of PDEs +1701.05557 Differential Geometry +1701.05558 Instrumentation and Methods for Astrophysics +1701.05559 Strongly Correlated Electrons +1701.05563 Instrumentation and Methods for Astrophysics +1701.05566 Instrumentation and Methods for Astrophysics +1701.05567 Quantitative Methods +1701.05568 Probability +1701.05570 Probability +1701.05571 Astrophysics of Galaxies +1701.05572 Theory +1701.05573 Machine Learning +1701.05574 Computation and Language +1701.05577 Systems and Control +1701.05578 Classical Analysis and ODEs +1701.05579 Materials Science +1701.05580 +1701.05581 Computation and Language +1701.05582 Theory +1701.05583 +1701.05584 +1701.05585 Earth and Planetary Astrophysics +1701.05586 Functional Analysis +1701.05587 Theory +1701.05588 Computer Vision and Pattern Recognition +1701.05590 Classical Analysis and ODEs +1701.05591 General Mathematics +1701.05592 Commutative Algebra +1701.05593 Applications +1701.05594 Earth and Planetary Astrophysics +1701.05595 Computer Vision and Pattern Recognition +1701.05596 Information Retrieval +1701.05597 Combinatorics +1701.05598 Optimization and Control +1701.05599 Networking and Internet Architecture +1701.05600 Superconductivity +1701.05601 Cryptography and Security +1701.05602 Numerical Analysis +1701.05604 Astrophysics of Galaxies +1701.05605 Plasma Physics +1701.05606 Optics +1701.05607 Populations and Evolution +1701.05608 Cryptography and Security +1701.05609 Computation +1701.05610 Instrumentation and Methods for Astrophysics +1701.05611 Multimedia +1701.05613 Complex Variables +1701.05614 Multimedia +1701.05615 High Energy Astrophysical Phenomena +1701.05616 Computer Vision and Pattern Recognition +1701.05617 Logic in Computer Science +1701.05619 Biomolecules +1701.05620 Chaotic Dynamics +1701.05621 Quantum Gases +1701.05622 Combinatorics +1701.05623 Complex Variables +1701.05624 Astrophysics of Galaxies +1701.05625 Computation and Language +1701.05626 Solar and Stellar Astrophysics +1701.05627 Populations and Evolution +1701.05628 Optics +1701.05629 Analysis of PDEs +1701.05630 Combinatorics +1701.05631 Materials Science +1701.05632 Economics +1701.05633 Computer Science and Game Theory +1701.05636 +1701.05637 Cryptography and Security +1701.05638 Methodology +1701.05639 Combinatorics +1701.05640 Probability +1701.05641 Instrumentation and Methods for Astrophysics +1701.05642 Analysis of PDEs +1701.05643 Number Theory +1701.05644 Machine Learning +1701.05645 Strongly Correlated Electrons +1701.05647 Methodology +1701.05648 Software Engineering +1701.05649 Functional Analysis +1701.05650 Programming Languages +1701.05651 Lattice +1701.05653 Information Theory +1701.05654 Machine Learning +1701.05655 +1701.05656 Methodology +1701.05657 Exactly Solvable and Integrable Systems +1701.05658 Differential Geometry +1701.05659 Soft Condensed Matter +1701.05663 Numerical Analysis +1701.05664 Solar and Stellar Astrophysics +1701.05665 Dynamical Systems +1701.05667 Numerical Analysis +1701.05668 Functional Analysis +1701.05669 +1701.05670 Adaptation and Self-Organizing Systems +1701.05671 Chaotic Dynamics +1701.05672 Machine Learning +1701.05673 Numerical Analysis +1701.05674 Information Theory +1701.05675 High Energy Astrophysical Phenomena +1701.05676 Computer Vision and Pattern Recognition +1701.05678 Phenomenology +1701.05679 Materials Science +1701.05682 Plasma Physics +1701.05683 Astrophysics of Galaxies +1701.05684 Strongly Correlated Electrons +1701.05685 Dynamical Systems +1701.05686 Combinatorics +1701.05687 Algebraic Geometry +1701.05688 +1701.05689 Cosmology and Nongalactic Astrophysics +1701.05690 Cosmology and Nongalactic Astrophysics +1701.05691 Applications +1701.05692 Complex Variables +1701.05693 +1701.05694 Numerical Analysis +1701.05695 Pricing of Securities +1701.05697 Analysis of PDEs +1701.05699 Databases +1701.05700 Information Theory +1701.05701 Atomic Physics +1701.05702 High Energy Astrophysical Phenomena +1701.05703 Computer Vision and Pattern Recognition +1701.05704 Differential Geometry +1701.05706 Numerical Analysis +1701.05708 Numerical Analysis +1701.05709 Chemical Physics +1701.05710 Optics +1701.05712 Optics +1701.05713 Chemical Physics +1701.05714 +1701.05715 Combinatorics +1701.05717 Optimization and Control +1701.05718 +1701.05719 Solar and Stellar Astrophysics +1701.05720 Solar and Stellar Astrophysics +1701.05721 Number Theory +1701.05723 Materials Science +1701.05724 Artificial Intelligence +1701.05725 Dynamical Systems +1701.05726 Complex Variables +1701.05727 Dynamical Systems +1701.05729 Number Theory +1701.05730 Neural and Evolutionary Computing +1701.05731 Phenomenology +1701.05732 Mesoscale and Nanoscale Physics +1701.05734 Dynamical Systems +1701.05736 Applications +1701.05737 Solar and Stellar Astrophysics +1701.05738 Logic in Computer Science +1701.05740 Networking and Internet Architecture +1701.05741 Phenomenology +1701.05742 Superconductivity +1701.05743 Algebraic Geometry +1701.05746 Representation Theory +1701.05747 Software Engineering +1701.05748 Computer Vision and Pattern Recognition +1701.05749 Optics +1701.05750 +1701.05751 Social and Information Networks +1701.05753 Theory +1701.05754 Graphics +1701.05755 Disordered Systems and Neural Networks +1701.05757 Atomic Physics +1701.05759 Algebraic Geometry +1701.05760 +1701.05761 Information Theory +1701.05762 Optimization and Control +1701.05763 Applications +1701.05764 Information Theory +1701.05766 Computer Vision and Pattern Recognition +1701.05770 Soft Condensed Matter +1701.05771 +1701.05774 Cosmology and Nongalactic Astrophysics +1701.05775 Atomic and Molecular Clusters +1701.05776 Functional Analysis +1701.05777 Atomic Physics +1701.05778 +1701.05779 Sound +1701.05781 Combinatorics +1701.05782 Solar and Stellar Astrophysics +1701.05784 Superconductivity +1701.05785 Statistical Mechanics +1701.05786 High Energy Astrophysical Phenomena +1701.05787 Optics +1701.05788 Phenomenology +1701.05791 Logic +1701.05792 Information Theory +1701.05794 Algebraic Geometry +1701.05795 +1701.05796 Dynamical Systems +1701.05797 Chemical Physics +1701.05799 Databases +1701.05800 Mesoscale and Nanoscale Physics +1701.05801 Optimization and Control +1701.05803 Algebraic Topology +1701.05804 Social and Information Networks +1701.05805 Algebraic Geometry +1701.05807 Functional Analysis +1701.05808 +1701.05809 Quantitative Methods +1701.05810 Materials Science +1701.05811 Computational Physics +1701.05812 Earth and Planetary Astrophysics +1701.05813 Materials Science +1701.05814 Information Theory +1701.05816 Dynamical Systems +1701.05817 Algebraic Geometry +1701.05818 Neural and Evolutionary Computing +1701.05819 Quantum Gases +1701.05820 Analysis of PDEs +1701.05821 Analysis of PDEs +1701.05822 Earth and Planetary Astrophysics +1701.05823 Information Theory +1701.05826 Chemical Physics +1701.05827 Commutative Algebra +1701.05828 +1701.05829 Phenomenology +1701.05830 Soft Condensed Matter +1701.05831 Mesoscale and Nanoscale Physics +1701.05832 Materials Science +1701.05833 Probability +1701.05834 Probability +1701.05835 Superconductivity +1701.05836 Complex Variables +1701.05837 Cosmology and Nongalactic Astrophysics +1701.05838 Phenomenology +1701.05839 Phenomenology +1701.05840 Mesoscale and Nanoscale Physics +1701.05841 Logic +1701.05842 Optimization and Control +1701.05845 Algebraic Topology +1701.05846 Astrophysics of Galaxies +1701.05847 Computer Vision and Pattern Recognition +1701.05848 Statistical Mechanics +1701.05849 Instrumentation and Methods for Astrophysics +1701.05850 Strongly Correlated Electrons +1701.05851 Plasma Physics +1701.05854 Materials Science +1701.05855 Combinatorics +1701.05857 Dynamical Systems +1701.05860 Statistical Mechanics +1701.05861 Algebraic Geometry +1701.05862 Theory +1701.05863 Applications +1701.05864 Economics +1701.05866 +1701.05867 Optics +1701.05869 Phenomenology +1701.05870 Methodology +1701.05871 Phenomenology +1701.05872 Probability +1701.05874 Algebraic Topology +1701.05876 Mesoscale and Nanoscale Physics +1701.05877 Cosmology and Nongalactic Astrophysics +1701.05879 Representation Theory +1701.05880 Optimization and Control +1701.05881 Information Theory +1701.05882 Fluid Dynamics +1701.05884 High Energy Astrophysical Phenomena +1701.05887 Materials Science +1701.05888 Programming Languages +1701.05889 Optics +1701.05890 Phenomenology +1701.05891 Experiment +1701.05892 Computation +1701.05893 Algebraic Geometry +1701.05894 Materials Science +1701.05895 Operator Algebras +0708.0852 +0902.3625 Analysis of PDEs +0912.3189 +0912.4256 Optics +1003.0753 Cosmology and Nongalactic Astrophysics +1003.2442 Analysis of PDEs +1009.5773 Learning +1103.6064 Functional Analysis +1107.1260 +1203.6334 Cosmology and Nongalactic Astrophysics +1207.2628 Number Theory +1207.3981 Instrumentation and Methods for Astrophysics +1210.1132 +1210.1329 +1210.2472 Algebraic Topology +1210.6617 Statistical Mechanics +1211.1132 +1211.5130 Materials Science +1212.3439 +1212.3708 Algebraic Geometry +1212.4791 Group Theory +1301.4358 Cosmology and Nongalactic Astrophysics +1306.3081 Geometric Topology +1307.0250 Geometric Topology +1307.1658 Plasma Physics +1308.0495 Astrophysics of Galaxies +1309.4122 Symplectic Geometry +1310.7190 Number Theory +1311.3501 Strongly Correlated Electrons +1403.2818 Phenomenology +1405.4132 Combinatorics +1405.7264 Databases +1407.6558 Algebraic Geometry +1408.3347 Representation Theory +1408.3692 Probability +1409.8024 Statistical Finance +1410.5352 Formal Languages and Automata Theory +1410.8556 Geometric Topology +1411.2451 Metric Geometry +1411.6176 Symplectic Geometry +1411.6938 Pricing of Securities +1412.1906 Algebraic Geometry +1412.4757 Optics +1412.8184 Complex Variables +1501.01084 Information Theory +1501.06800 Statistical Mechanics +1502.02350 Algebraic Topology +1503.01392 Algebraic Geometry +1503.02751 +1503.05851 +1504.00093 Representation Theory +1504.05306 +1504.05441 Quantum Gases +1505.02843 Strongly Correlated Electrons +1505.05772 Systems and Control +1505.06042 Number Theory +1506.01426 Group Theory +1506.01827 Differential Geometry +1506.08655 Number Theory +1507.00141 Dynamical Systems +1507.00377 Rings and Algebras +1507.00552 Data Structures and Algorithms +1507.01909 Algebraic Topology +1507.01957 Combinatorics +1507.02168 Data Structures and Algorithms +1507.02484 Numerical Analysis +1507.02959 Classical Analysis and ODEs +1507.06306 Number Theory +1507.07661 Differential Geometry +1508.00204 Analysis of PDEs +1508.01841 Discrete Mathematics +1508.02649 Strongly Correlated Electrons +1508.03253 +1508.07873 +1509.00117 Computer Vision and Pattern Recognition +1509.01043 Algebraic Geometry +1509.01526 Economics +1509.01965 Mesoscale and Nanoscale Physics +1509.05415 Differential Geometry +1509.06036 +1509.06129 Number Theory +1509.06214 Algebraic Geometry +1509.07221 Solar and Stellar Astrophysics +1510.03359 Strongly Correlated Electrons +1511.01477 Strongly Correlated Electrons +1511.05203 +1511.06607 Classical Physics +1511.08948 Algebraic Topology +1511.09277 Combinatorics +1512.00694 Instrumentation and Detectors +1512.00757 Databases +1512.01358 Algebraic Geometry +1512.04499 Methodology +1512.04643 Algebraic Geometry +1512.04728 Logic +1512.05048 +1512.06073 Discrete Mathematics +1512.06434 Theory +1512.08431 Optics +1601.00899 Information Theory +1601.02100 High Energy Astrophysical Phenomena +1601.03188 Theory +1601.04325 Representation Theory +1601.06896 High Energy Astrophysical Phenomena +1601.07071 Optimization and Control +1601.08153 Plasma Physics +1602.00614 Physics and Society +1602.01125 Computer Vision and Pattern Recognition +1602.01886 Optimization and Control +1602.03190 Strongly Correlated Electrons +1602.04769 Algebraic Geometry +1602.05191 High Energy Astrophysical Phenomena +1602.05335 Cryptography and Security +1602.05476 Geometric Topology +1602.05614 Dynamical Systems +1602.05687 Strongly Correlated Electrons +1602.05934 Theory +1602.06964 Strongly Correlated Electrons +1602.08147 Analysis of PDEs +1602.08251 Plasma Physics +1603.00363 Mesoscale and Nanoscale Physics +1603.00934 Materials Science +1603.02044 Systems and Control +1603.04852 High Energy Astrophysical Phenomena +1603.05486 Computation +1603.05544 Learning +1603.06420 +1603.06524 +1603.07805 +1603.09200 Computer Vision and Pattern Recognition +1603.09240 Computer Vision and Pattern Recognition +1603.09606 Materials Science +1604.00733 Combinatorics +1604.01431 Computer Vision and Pattern Recognition +1604.01497 Computer Vision and Pattern Recognition +1604.02120 Theory +1604.04487 Statistical Mechanics +1604.05329 Strongly Correlated Electrons +1604.05489 Statistics Theory +1604.05825 Numerical Analysis +1604.05929 Optics +1604.06068 Analysis of PDEs +1604.07518 Materials Science +1604.08364 Astrophysics of Galaxies +1604.08565 Accelerator Physics +1604.08722 Astrophysics of Galaxies +1605.00680 Astrophysics of Galaxies +1605.00828 Instrumentation and Detectors +1605.00907 Astrophysics of Galaxies +1605.01059 Earth and Planetary Astrophysics +1605.01175 Analysis of PDEs +1605.01411 Theory +1605.01628 Astrophysics of Galaxies +1605.01824 Robotics +1605.01910 Astrophysics of Galaxies +1605.02098 Dynamical Systems +1605.02184 +1605.02420 Astrophysics of Galaxies +1605.02627 +1605.03345 Astrophysics of Galaxies +1605.03347 Number Theory +1605.03545 Materials Science +1605.04333 Solar and Stellar Astrophysics +1605.04975 High Energy Astrophysical Phenomena +1605.05754 Astrophysics of Galaxies +1605.06511 Astrophysics of Galaxies +1605.08041 High Energy Astrophysical Phenomena +1605.09506 +1605.09567 Astrophysics of Galaxies +1606.00275 Astrophysics of Galaxies +1606.00711 +1606.00925 Learning +1606.01755 +1606.01830 +1606.02397 +1606.02458 Astrophysics of Galaxies +1606.03243 +1606.04542 Disordered Systems and Neural Networks +1606.04755 Quantum Gases +1606.04778 Networking and Internet Architecture +1606.04904 Mesoscale and Nanoscale Physics +1606.05215 Astrophysics of Galaxies +1606.05678 Earth and Planetary Astrophysics +1606.06071 Numerical Analysis +1606.07706 Differential Geometry +1606.07915 Combinatorics +1606.08149 Solar and Stellar Astrophysics +1606.08509 Statistical Mechanics +1606.08619 Superconductivity +1606.08871 Astrophysics of Galaxies +1606.09614 Strongly Correlated Electrons +1606.09641 Statistical Mechanics +1607.00164 +1607.00513 Superconductivity +1607.01047 Astrophysics of Galaxies +1607.01468 Phenomenology +1607.01480 Atomic Physics +1607.01681 Optics +1607.02506 +1607.03107 Astrophysics of Galaxies +1607.03184 Lattice +1607.03832 Functional Analysis +1607.03948 Information Theory +1607.04383 +1607.04466 Theory +1607.04702 +1607.04783 +1607.05236 Phenomenology +1607.05237 Logic +1607.05591 High Energy Astrophysical Phenomena +1607.06100 Strongly Correlated Electrons +1607.06179 Databases +1607.06228 Astrophysics of Galaxies +1607.06282 Cosmology and Nongalactic Astrophysics +1607.06824 Other Quantitative Biology +1607.07518 +1607.07739 Plasma Physics +1607.07948 Phenomenology +1607.08001 Classical Analysis and ODEs +1607.08572 Mesoscale and Nanoscale Physics +1608.00012 Astrophysics of Galaxies +1608.00121 Astrophysics of Galaxies +1608.00299 Systems and Control +1608.00502 Atomic Physics +1608.01227 +1608.01691 Exactly Solvable and Integrable Systems +1608.01717 Instrumentation and Detectors +1608.02173 +1608.02306 Symplectic Geometry +1608.02315 Artificial Intelligence +1608.02564 Algebraic Geometry +1608.02664 Representation Theory +1608.02930 +1608.03641 Phenomenology +1608.03716 Analysis of PDEs +1608.04014 +1608.04133 Astrophysics of Galaxies +1608.04150 Astrophysics of Galaxies +1608.04197 Soft Condensed Matter +1608.04614 Metric Geometry +1608.04645 Atomic Physics +1608.04680 Neurons and Cognition +1608.04696 Mesoscale and Nanoscale Physics +1608.04775 Solar and Stellar Astrophysics +1608.04842 Cosmology and Nongalactic Astrophysics +1608.05497 Optimization and Control +1608.05600 Astrophysics of Galaxies +1608.05904 High Energy Astrophysical Phenomena +1608.05935 Astrophysics of Galaxies +1608.06449 High Energy Astrophysical Phenomena +1608.06537 Lattice +1608.06922 Mesoscale and Nanoscale Physics +1608.07049 High Energy Astrophysical Phenomena +1608.07254 Soft Condensed Matter +1608.07319 +1608.07372 Earth and Planetary Astrophysics +1608.07389 Strongly Correlated Electrons +1608.07500 Phenomenology +1608.07697 Statistical Mechanics +1609.00044 Classical Physics +1609.00386 +1609.00877 Disordered Systems and Neural Networks +1609.01708 Methodology +1609.01718 Astrophysics of Galaxies +1609.01850 Cosmology and Nongalactic Astrophysics +1609.02207 +1609.02374 Computer Vision and Pattern Recognition +1609.02571 +1609.02753 Logic in Computer Science +1609.02872 Phenomenology +1609.02894 +1609.02922 High Energy Astrophysical Phenomena +1609.03239 +1609.03281 Cosmology and Nongalactic Astrophysics +1609.03791 Astrophysics of Galaxies +1609.03865 +1609.04328 Mesoscale and Nanoscale Physics +1609.04351 Theory +1609.04503 Experiment +1609.04755 Astrophysics of Galaxies +1609.05106 Fluid Dynamics +1609.05534 Optics +1609.05687 Programming Languages +1609.05775 Theory +1609.05781 +1609.05819 Instrumentation and Detectors +1609.05997 Materials Science +1609.06742 Populations and Evolution +1609.06800 Algebraic Topology +1609.06972 Combinatorics +1609.07054 Disordered Systems and Neural Networks +1609.07098 Strongly Correlated Electrons +1609.07131 Statistical Mechanics +1609.07307 +1609.07622 Soft Condensed Matter +1609.07623 Soft Condensed Matter +1609.08220 Cosmology and Nongalactic Astrophysics +1609.08267 Computer Vision and Pattern Recognition +1609.08296 Statistical Mechanics +1609.08416 +1609.08744 Probability +1609.08817 High Energy Astrophysical Phenomena +1609.08862 High Energy Astrophysical Phenomena +1609.08990 Mesoscale and Nanoscale Physics +1609.09317 Solar and Stellar Astrophysics +1609.09442 Earth and Planetary Astrophysics +1609.09528 Astrophysics of Galaxies +1609.09633 Statistical Mechanics +1609.09687 Optics +1610.00016 Solar and Stellar Astrophysics +1610.00215 Optics +1610.00253 Logic in Computer Science +1610.00263 +1610.00415 Classical Physics +1610.00518 Numerical Analysis +1610.00669 Theory +1610.00679 +1610.00794 +1610.00866 Statistical Mechanics +1610.01171 Strongly Correlated Electrons +1610.01335 Number Theory +1610.01399 High Energy Astrophysical Phenomena +1610.01435 Lattice +1610.01600 Astrophysics of Galaxies +1610.01613 Quantum Gases +1610.01702 Astrophysics of Galaxies +1610.02096 High Energy Astrophysical Phenomena +1610.02350 +1610.02380 Statistical Mechanics +1610.02733 Soft Condensed Matter +1610.02775 Astrophysics of Galaxies +1610.02970 Mesoscale and Nanoscale Physics +1610.03104 Solar and Stellar Astrophysics +1610.03281 +1610.03346 Logic in Computer Science +1610.03783 Statistics Theory +1610.03814 Dynamical Systems +1610.04339 High Energy Astrophysical Phenomena +1610.04743 Astrophysics of Galaxies +1610.05134 Experiment +1610.05156 Logic in Computer Science +1610.05282 +1610.05301 Astrophysics of Galaxies +1610.05629 High Energy Astrophysical Phenomena +1610.05767 Astrophysics of Galaxies +1610.05802 Instrumentation and Detectors +1610.05810 Mesoscale and Nanoscale Physics +1610.06001 +1610.06223 Earth and Planetary Astrophysics +1610.06339 Solar and Stellar Astrophysics +1610.06548 +1610.06730 Superconductivity +1610.06843 Instrumentation and Methods for Astrophysics +1610.07154 High Energy Astrophysical Phenomena +1610.07261 +1610.07529 Cosmology and Nongalactic Astrophysics +1610.08054 High Energy Astrophysical Phenomena +1610.08501 Cosmology and Nongalactic Astrophysics +1610.08785 Astrophysics of Galaxies +1610.08858 Theory +1610.08957 Quantum Gases +1610.08965 Cosmology and Nongalactic Astrophysics +1610.09346 Soft Condensed Matter +1610.09531 Lattice +1610.09760 +1610.10024 Other Condensed Matter +1610.10034 Phenomenology +1610.10053 Instrumentation and Methods for Astrophysics +1610.10083 +1611.00056 +1611.00516 Differential Geometry +1611.00635 Soft Condensed Matter +1611.00831 Probability +1611.00890 Optimization and Control +1611.01267 Complex Variables +1611.01431 Earth and Planetary Astrophysics +1611.01519 High Energy Astrophysical Phenomena +1611.01666 Solar and Stellar Astrophysics +1611.01848 Accelerator Physics +1611.01900 Machine Learning +1611.02057 +1611.02115 Classical Physics +1611.02296 Disordered Systems and Neural Networks +1611.02332 Molecular Networks +1611.02647 +1611.02797 Experiment +1611.03789 Data Structures and Algorithms +1611.03904 Quantum Gases +1611.04048 Optics +1611.04468 Astrophysics of Galaxies +1611.04757 Quantum Gases +1611.04987 +1611.05037 Instrumentation and Detectors +1611.05052 Astrophysics of Galaxies +1611.05115 Materials Science +1611.05264 Differential Geometry +1611.05370 Combinatorics +1611.05677 Numerical Analysis +1611.05871 Astrophysics of Galaxies +1611.06060 Superconductivity +1611.06143 Experiment +1611.06228 Phenomenology +1611.06432 Solar and Stellar Astrophysics +1611.06614 +1611.07080 Solar and Stellar Astrophysics +1611.07156 Computer Vision and Pattern Recognition +1611.07239 Numerical Analysis +1611.07244 Instrumentation and Detectors +1611.07485 Computer Vision and Pattern Recognition +1611.07968 Mesoscale and Nanoscale Physics +1611.08369 Group Theory +1611.08460 Phenomenology +1611.08493 +1611.08594 Astrophysics of Galaxies +1611.08718 +1611.08930 Sound +1611.09119 Computer Vision and Pattern Recognition +1611.09124 High Energy Astrophysical Phenomena +1611.09504 Earth and Planetary Astrophysics +1611.09555 Strongly Correlated Electrons +1611.09672 Optics +1611.09675 Phenomenology +1611.09810 +1611.09846 Cosmology and Nongalactic Astrophysics +1611.10040 Theory +1611.10222 Astrophysics of Galaxies +1611.10240 +1611.10265 Strongly Correlated Electrons +1612.00132 Computer Vision and Pattern Recognition +1612.00771 Theory +1612.00847 Cosmology and Nongalactic Astrophysics +1612.00856 Mesoscale and Nanoscale Physics +1612.00868 Theory +1612.01102 Instrumentation and Methods for Astrophysics +1612.01380 Computer Vision and Pattern Recognition +1612.01388 Fluid Dynamics +1612.01462 +1612.01526 Astrophysics of Galaxies +1612.01616 Solar and Stellar Astrophysics +1612.01643 Phenomenology +1612.01699 Mesoscale and Nanoscale Physics +1612.01738 Theory +1612.01825 Instrumentation and Methods for Astrophysics +1612.01860 Sound +1612.02029 +1612.02030 +1612.02072 Earth and Planetary Astrophysics +1612.02077 Solar and Stellar Astrophysics +1612.02097 High Energy Astrophysical Phenomena +1612.02150 Solar and Stellar Astrophysics +1612.02343 Phenomenology +1612.02408 +1612.02545 Information Theory +1612.02697 Phenomenology +1612.02818 Astrophysics of Galaxies +1612.02821 Cosmology and Nongalactic Astrophysics +1612.03157 +1612.03171 Astrophysics of Galaxies +1612.03235 Statistical Mechanics +1612.03291 Phenomenology +1612.03299 +1612.03465 Representation Theory +1612.03604 +1612.03646 Strongly Correlated Electrons +1612.03655 Phenomenology +1612.03708 Cosmology and Nongalactic Astrophysics +1612.03770 Neural and Evolutionary Computing +1612.03802 High Energy Astrophysical Phenomena +1612.03855 Theory +1612.03874 +1612.03906 Cosmology and Nongalactic Astrophysics +1612.04078 Phenomenology +1612.04264 Optics +1612.04305 Mesoscale and Nanoscale Physics +1612.04421 +1612.04584 Algebraic Topology +1612.04601 Chaotic Dynamics +1612.04613 Theory +1612.04653 Mesoscale and Nanoscale Physics +1612.04964 Strongly Correlated Electrons +1612.05084 Statistical Mechanics +1612.05279 Cosmology and Nongalactic Astrophysics +1612.05466 +1612.05582 Phenomenology +1612.05632 Theory +1612.06360 Mesoscale and Nanoscale Physics +1612.06400 Astrophysics of Galaxies +1612.06629 Mesoscale and Nanoscale Physics +1612.06764 Experiment +1612.06780 Mesoscale and Nanoscale Physics +1612.06814 Strongly Correlated Electrons +1612.06858 Phenomenology +1612.06884 Plasma Physics +1612.07066 Solar and Stellar Astrophysics +1612.07383 +1612.07513 Instrumentation and Methods for Astrophysics +1612.07605 Statistical Mechanics +1612.07959 Chemical Physics +1612.08100 Probability +1612.08379 Soft Condensed Matter +1612.08453 Solar and Stellar Astrophysics +1612.08500 Pattern Formation and Solitons +1612.09048 Superconductivity +1612.09069 Optimization and Control +1612.09224 Phenomenology +1701.00171 Instrumentation and Methods for Astrophysics +1701.00261 +1701.00465 Dynamical Systems +1701.00539 Statistical Mechanics +1701.00555 +1701.00885 Astrophysics of Galaxies +1701.00966 Soft Condensed Matter +1701.01071 Statistical Mechanics +1701.01140 Machine Learning +1701.01294 Earth and Planetary Astrophysics +1701.01432 Instrumentation and Detectors +1701.01489 +1701.01588 Earth and Planetary Astrophysics +1701.01697 Materials Science +1701.01755 +1701.01822 Space Physics +1701.01935 +1701.02334 Numerical Analysis +1701.02441 Strongly Correlated Electrons +1701.02532 Mesoscale and Nanoscale Physics +1701.02608 +1701.02629 Astrophysics of Galaxies +1701.02677 High Energy Astrophysical Phenomena +1701.02741 Astrophysics of Galaxies +1701.02768 Combinatorics +1701.02805 Physics and Society +1701.02861 +1701.02921 Theory +1701.02965 Computer Vision and Pattern Recognition +1701.02972 Fluid Dynamics +1701.03064 Phenomenology +1701.03118 Cosmology and Nongalactic Astrophysics +1701.03254 Atomic Physics +1701.03668 Astrophysics of Galaxies +1701.03853 Strongly Correlated Electrons +1701.04001 Astrophysics of Galaxies +1701.04264 Mesoscale and Nanoscale Physics +1701.04274 Quantum Gases +1701.04415 Cosmology and Nongalactic Astrophysics +1701.04430 Superconductivity +1701.04668 Analysis of PDEs +1701.05203 Solar and Stellar Astrophysics +1701.05243 Information Theory +1701.05316 Instrumentation and Methods for Astrophysics +1701.05488 Strongly Correlated Electrons +1701.05501 Experiment +1701.05576 Theory +1701.05758 High Energy Astrophysical Phenomena +1701.05815 Astrophysics of Galaxies +1701.05868 Number Theory +1701.05873 Instrumentation and Methods for Astrophysics +1701.06043 +1701.06133 Mesoscale and Nanoscale Physics +1701.06343 +1701.06397 Instrumentation and Methods for Astrophysics +1701.06553 Theory +1701.06701 High Energy Astrophysical Phenomena +1701.06809 Solar and Stellar Astrophysics +1701.06835 Solar and Stellar Astrophysics +1701.06888 Materials Science +1701.06910 Materials Science +1701.06978 Solar and Stellar Astrophysics +1701.06999 Materials Science +1701.07059 Computational Engineering, Finance, and Science +1701.07244 Solar and Stellar Astrophysics +1701.07371 Information Theory +1701.07435 Earth and Planetary Astrophysics +1701.07459 Astrophysics of Galaxies +1701.07611 Mesoscale and Nanoscale Physics +1701.08214 Phenomenology +1701.08296 Earth and Planetary Astrophysics +1701.08336 Materials Science +1701.08954 Learning +1702.00424 Instrumentation and Methods for Astrophysics +1702.00648 Computer Vision and Pattern Recognition +1702.00709 Optimization and Control +1702.00785 Multiagent Systems +1702.00951 Phenomenology +1702.01637 Mesoscale and Nanoscale Physics +1702.01784 Solar and Stellar Astrophysics +1702.02045 Mesoscale and Nanoscale Physics +1702.02118 Astrophysics of Galaxies +1702.02132 Astrophysics of Galaxies +1702.02150 Earth and Planetary Astrophysics +1702.02233 Astrophysics of Galaxies +1702.02510 Neurons and Cognition +1702.03227 Astrophysics of Galaxies +1702.03331 Astrophysics of Galaxies +1702.03381 Strongly Correlated Electrons +1702.03490 Optics +1702.03550 Space Physics +1702.03564 Software Engineering +1702.03601 High Energy Astrophysical Phenomena +1702.03682 +1702.03754 High Energy Astrophysical Phenomena +1702.03805 High Energy Astrophysical Phenomena +1702.03882 High Energy Astrophysical Phenomena +1702.03893 Solar and Stellar Astrophysics +1702.04284 +1702.04543 Earth and Planetary Astrophysics +1702.04606 Solar and Stellar Astrophysics +1702.04673 Fluid Dynamics +1702.04747 Plasma Physics +1702.04780 Earth and Planetary Astrophysics +1702.04788 Astrophysics of Galaxies +1702.04979 Earth and Planetary Astrophysics +1702.05099 Astrophysics of Galaxies +1702.05136 Solar and Stellar Astrophysics +1702.05158 Solar and Stellar Astrophysics +1702.05621 Instrumentation and Methods for Astrophysics +1702.05847 Cosmology and Nongalactic Astrophysics +1702.05920 High Energy Astrophysical Phenomena +1702.05938 +1702.06132 Cosmology and Nongalactic Astrophysics +1702.06133 Astrophysics of Galaxies +1702.06165 Astrophysics of Galaxies +1702.06623 Physics and Society +1702.06768 Cosmology and Nongalactic Astrophysics +1702.06827 Systems and Control +1702.06858 Formal Languages and Automata Theory +1702.06953 Astrophysics of Galaxies +1702.07200 Materials Science +1702.07341 Solar and Stellar Astrophysics +1702.07361 Instrumentation and Methods for Astrophysics +1702.07428 Solar and Stellar Astrophysics +1702.07430 Solar and Stellar Astrophysics +1702.07504 Strongly Correlated Electrons +1702.07561 Statistical Mechanics +1702.07769 Solar and Stellar Astrophysics +1702.07845 Mesoscale and Nanoscale Physics +1702.08167 Dynamical Systems +1702.08422 +1702.08426 Group Theory +1702.08465 Solar and Stellar Astrophysics +1702.08554 Astrophysics of Galaxies +1702.08585 Solar and Stellar Astrophysics +1702.08604 High Energy Astrophysical Phenomena +1702.08655 Theory +1702.08706 Plasma Physics +1703.00063 +1703.00516 High Energy Astrophysical Phenomena +1703.00529 Astrophysics of Galaxies +1703.00556 Human-Computer Interaction +1703.00625 Instrumentation and Methods for Astrophysics +1703.00628 Cosmology and Nongalactic Astrophysics +1703.00631 Solar and Stellar Astrophysics +1703.00634 Cosmology and Nongalactic Astrophysics +1703.00675 Statistical Mechanics +1703.00717 Mesoscale and Nanoscale Physics +1703.00750 Optics +1703.00932 High Energy Astrophysical Phenomena +1703.00967 Quantum Gases +1703.01094 Phenomenology +1703.01497 Functional Analysis +1703.01845 +1703.01895 Cosmology and Nongalactic Astrophysics +1703.02984 Astrophysics of Galaxies +1703.03060 +1703.03318 Superconductivity +1703.03419 Astrophysics of Galaxies +1703.03644 High Energy Astrophysical Phenomena +1703.03772 +1703.03813 Astrophysics of Galaxies +1703.04338 Astrophysics of Galaxies +1703.04486 Operator Algebras +1703.05044 Group Theory +1703.05197 Algebraic Geometry +1703.05222 Theory +1703.05252 Combinatorics +1703.05491 Astrophysics of Galaxies +1703.05567 +1703.05741 Algebraic Geometry +1703.05765 Solar and Stellar Astrophysics +1703.05822 Astrophysics of Galaxies +1703.05835 Complex Variables +1703.05873 Phenomenology +1703.06134 Phenomenology +1703.06356 Formal Languages and Automata Theory +1703.06498 Number Theory +1703.06834 Phenomenology +1703.06871 Theory +1703.06905 Robotics +1703.06918 Cosmology and Nongalactic Astrophysics +1703.06938 Phenomenology +1703.07011 Operator Algebras +1703.07023 Computer Vision and Pattern Recognition +1703.07024 High Energy Astrophysical Phenomena +1703.07060 Solar and Stellar Astrophysics +1703.07163 Phenomenology +1703.07179 Medical Physics +1703.07317 Physics and Society +1703.07318 Astrophysics of Galaxies +1703.07437 Mesoscale and Nanoscale Physics +1703.07450 Instrumentation and Methods for Astrophysics +1703.07475 Computer Vision and Pattern Recognition +1703.07523 Computer Vision and Pattern Recognition +1703.07592 Space Physics +1703.07646 Information Theory +1703.07654 Neurons and Cognition +1703.07667 Phenomenology +1703.07684 Computer Vision and Pattern Recognition +1703.07731 Statistical Mechanics +1703.07821 Solar and Stellar Astrophysics +1703.07916 Materials Science +1703.07957 Computer Vision and Pattern Recognition +1703.08098 Computation and Language +1703.08169 Phenomenology +1703.08243 Systems and Control +1703.08298 Symbolic Computation +1703.08318 Materials Science +1703.08381 Astrophysics of Galaxies +1703.08398 +1703.08447 +1703.08450 Phenomenology +1703.08479 Optics +1703.08515 Systems and Control +1703.08538 Astrophysics of Galaxies +1703.08551 Astrophysics of Galaxies +1703.08552 +1703.08633 Cosmology and Nongalactic Astrophysics +1703.08643 Data Analysis, Statistics and Probability +1703.08667 Learning +1703.08708 Superconductivity +1703.08757 Theory +1703.08800 Systems and Control +1703.08915 Populations and Evolution +1703.08925 Instrumentation and Methods for Astrophysics +1703.08942 Phenomenology +1703.09000 Earth and Planetary Astrophysics +1703.09019 Optics +1703.09028 Social and Information Networks +1703.09050 Algebraic Topology +1703.09057 +1703.09100 Mesoscale and Nanoscale Physics +1703.09129 Computational Finance +1703.09144 Instrumentation and Detectors +1703.09164 Solar and Stellar Astrophysics +1703.09170 Algebraic Topology +1703.09210 Computer Vision and Pattern Recognition +1703.09211 Computer Vision and Pattern Recognition +1703.09214 +1703.09215 Exactly Solvable and Integrable Systems +1703.09216 High Energy Astrophysical Phenomena +1703.09217 Networking and Internet Architecture +1703.09218 Databases +1703.09220 Strongly Correlated Electrons +1703.09221 Astrophysics of Galaxies +1703.09223 Astrophysics of Galaxies +1703.09224 Astrophysics of Galaxies +1703.09225 Earth and Planetary Astrophysics +1703.09226 Phenomenology +1703.09227 Earth and Planetary Astrophysics +1703.09228 Cosmology and Nongalactic Astrophysics +1703.09229 Earth and Planetary Astrophysics +1703.09230 Astrophysics of Galaxies +1703.09231 Quantum Gases +1703.09232 High Energy Astrophysical Phenomena +1703.09233 Cosmology and Nongalactic Astrophysics +1703.09234 Astrophysics of Galaxies +1703.09235 Mesoscale and Nanoscale Physics +1703.09237 Phenomenology +1703.09238 Theory +1703.09239 Instrumentation and Methods for Astrophysics +1703.09240 Differential Geometry +1703.09241 Theory +1703.09242 Instrumentation and Methods for Astrophysics +1703.09243 +1703.09244 Cryptography and Security +1703.09245 Computer Vision and Pattern Recognition +1703.09246 Lattice +1703.09247 Phenomenology +1703.09248 Optics +1703.09249 Statistical Mechanics +1703.09250 Solar and Stellar Astrophysics +1703.09251 Number Theory +1703.09252 Phenomenology +1703.09253 Dynamical Systems +1703.09254 Instrumentation and Methods for Astrophysics +1703.09255 Networking and Internet Architecture +1703.09256 Phenomenology +1703.09257 Distributed, Parallel, and Cluster Computing +1703.09258 Optimization and Control +1703.09259 +1703.09260 Systems and Control +1703.09261 Disordered Systems and Neural Networks +1703.09262 K-Theory and Homology +1703.09263 +1703.09264 Distributed, Parallel, and Cluster Computing +1703.09265 Computational Engineering, Finance, and Science +1703.09266 Dynamical Systems +1703.09267 +1703.09268 Mathematical Software +1703.09269 Statistics Theory +1703.09270 +1703.09271 Analysis of PDEs +1703.09272 Theory +1703.09273 Optics +1703.09274 Solar and Stellar Astrophysics +1703.09275 Dynamical Systems +1703.09276 Algebraic Geometry +1703.09277 +1703.09278 +1703.09279 Computer Science and Game Theory +1703.09280 Optimization and Control +1703.09281 Atmospheric and Oceanic Physics +1703.09282 Methodology +1703.09283 Solar and Stellar Astrophysics +1703.09284 High Energy Astrophysical Phenomena +1703.09285 Earth and Planetary Astrophysics +1703.09286 Theory +1703.09287 +1703.09288 Statistical Mechanics +1703.09289 +1703.09290 Mesoscale and Nanoscale Physics +1703.09291 Optics +1703.09292 Number Theory +1703.09293 Theory +1703.09294 Materials Science +1703.09295 Soft Condensed Matter +1703.09296 Computer Vision and Pattern Recognition +1703.09297 Complex Variables +1703.09298 Information Theory +1703.09299 Combinatorics +1703.09300 Phenomenology +1703.09301 Computation +1703.09302 Sound +1703.09303 Disordered Systems and Neural Networks +1703.09304 Phenomenology +1703.09305 Methodology +1703.09306 Superconductivity +1703.09307 Data Structures and Algorithms +1703.09308 Instrumentation and Detectors +1703.09310 Learning +1703.09311 High Energy Astrophysical Phenomena +1703.09312 Robotics +1703.09313 Chemical Physics +1703.09314 Logic +1703.09315 Social and Information Networks +1703.09316 Networking and Internet Architecture +1703.09317 +1703.09319 Algebraic Geometry +1703.09320 Complex Variables +1703.09321 Fluid Dynamics +1703.09322 Geometric Topology +1703.09323 Analysis of PDEs +1703.09324 Data Structures and Algorithms +1703.09325 Functional Analysis +1703.09326 Distributed, Parallel, and Cluster Computing +1703.09327 Learning +1703.09328 Category Theory +1703.09329 Analysis of PDEs +1703.09330 Group Theory +1703.09331 Combinatorics +1703.09333 Experiment +1703.09334 Plasma Physics +1703.09335 Materials Science +1703.09336 Disordered Systems and Neural Networks +1703.09337 Cosmology and Nongalactic Astrophysics +1703.09338 Metric Geometry +1703.09339 Optimization and Control +1703.09340 Statistical Mechanics +1703.09341 +1703.09342 Computer Vision and Pattern Recognition +1703.09343 Digital Libraries +1703.09344 Statistics Theory +1703.09345 Astrophysics of Galaxies +1703.09346 +1703.09347 Neurons and Cognition +1703.09348 Earth and Planetary Astrophysics +1703.09349 Physics Education +1703.09350 Algebraic Geometry +1703.09351 Statistics Theory +1703.09352 Differential Geometry +1703.09353 +1703.09355 +1703.09356 Mesoscale and Nanoscale Physics +1703.09357 Strongly Correlated Electrons +1703.09358 Combinatorics +1703.09360 Quantum Gases +1703.09361 Information Theory +1703.09362 Instrumentation and Methods for Astrophysics +1703.09363 +1703.09364 Systems and Control +1703.09365 +1703.09366 Mesoscale and Nanoscale Physics +1703.09367 Differential Geometry +1703.09368 Artificial Intelligence +1703.09369 +1703.09370 Learning +1703.09371 Materials Science +1703.09372 Probability +1703.09373 Strongly Correlated Electrons +1703.09374 +1703.09375 +1703.09376 Cosmology and Nongalactic Astrophysics +1703.09377 Optimization and Control +1703.09378 Combinatorics +1703.09379 Computer Vision and Pattern Recognition +1703.09380 Instrumentation and Methods for Astrophysics +1703.09381 +1703.09382 Computation +1703.09383 +1703.09384 Solar and Stellar Astrophysics +1703.09385 Probability +1703.09386 Statistical Finance +1703.09387 Neural and Evolutionary Computing +1703.09388 Earth and Planetary Astrophysics +1703.09389 Mesoscale and Nanoscale Physics +1703.09390 Learning +1703.09391 Learning +1703.09392 Optimization and Control +1703.09393 Computer Vision and Pattern Recognition +1703.09394 Information Theory +1703.09395 Soft Condensed Matter +1703.09396 +1703.09397 Machine Learning +1703.09398 Social and Information Networks +1703.09399 Phenomenology +1703.09400 Social and Information Networks +1703.09401 Algebraic Geometry +1703.09402 Algebraic Geometry +1703.09403 Statistics Theory +1703.09404 +1703.09405 Atmospheric and Oceanic Physics +1703.09406 Logic +1703.09407 Strongly Correlated Electrons +1703.09408 Differential Geometry +1703.09409 Lattice +1703.09410 Number Theory +1703.09411 Analysis of PDEs +1703.09412 Logic +1703.09413 Rings and Algebras +1703.09414 Geometric Topology +1703.09415 Optimization and Control +1703.09416 Algebraic Geometry +1703.09417 Phenomenology +1703.09418 Pattern Formation and Solitons +1703.09419 Mesoscale and Nanoscale Physics +1703.09420 Differential Geometry +1703.09421 Data Structures and Algorithms +1703.09422 +1703.09423 Networking and Internet Architecture +1703.09424 Probability +1703.09425 Spectral Theory +1703.09426 Optimization and Control +1703.09427 Commutative Algebra +1703.09428 +1703.09429 Analysis of PDEs +1703.09430 Applications +1703.09431 Analysis of PDEs +1703.09432 Soft Condensed Matter +1703.09433 Probability +1703.09434 Computers and Society +1703.09435 Theory +1703.09436 Computer Vision and Pattern Recognition +1703.09437 +1703.09438 Computer Vision and Pattern Recognition +1703.09439 Computation and Language +1703.09440 Geometric Topology +1703.09441 Mesoscale and Nanoscale Physics +1703.09442 Experiment +1703.09443 Analysis of PDEs +1703.09444 Materials Science +1703.09445 Fluid Dynamics +1703.09446 Astrophysics of Galaxies +1703.09447 +1703.09448 +1703.09449 Materials Science +1703.09450 Earth and Planetary Astrophysics +1703.09451 Materials Science +1703.09452 Learning +1703.09453 Networking and Internet Architecture +1703.09454 Solar and Stellar Astrophysics +1703.09455 Optics +1703.09456 Chemical Physics +1703.09458 Differential Geometry +1703.09459 Superconductivity +1703.09460 Analysis of PDEs +1703.09461 Medical Physics +1703.09462 Chemical Physics +1703.09463 Atomic Physics +1703.09464 Algebraic Geometry +1703.09465 Strongly Correlated Electrons +1703.09466 Solar and Stellar Astrophysics +1703.09467 Materials Science +1703.09468 Human-Computer Interaction +1703.09469 Neural and Evolutionary Computing +1703.09470 Computer Vision and Pattern Recognition +1703.09471 Computer Vision and Pattern Recognition +1703.09472 Applications +1703.09473 Exactly Solvable and Integrable Systems +1703.09474 Computer Vision and Pattern Recognition +1703.09475 Representation Theory +1703.09478 Complex Variables +1703.09481 Probability +1703.09482 Pattern Formation and Solitons +1703.09483 Chemical Physics +1703.09485 Complex Variables +1703.09486 Statistical Mechanics +1703.09487 Medical Physics +1703.09488 Neurons and Cognition +1703.09489 Geometric Topology +1703.09490 Optics +1703.09491 High Energy Astrophysical Phenomena +1703.09492 Phenomenology +1703.09493 Algebraic Geometry +1703.09494 Chemical Physics +1703.09495 Classical Analysis and ODEs +1703.09496 Experiment +1703.09497 High Energy Astrophysical Phenomena +1703.09498 +1703.09499 Computer Vision and Pattern Recognition +1703.09500 Pricing of Securities +1703.09501 Cryptography and Security +1703.09502 Phenomenology +1703.09503 Statistical Mechanics +1703.09504 Materials Science +1703.09505 Discrete Mathematics +1703.09507 Computer Vision and Pattern Recognition +1703.09508 Networking and Internet Architecture +1703.09509 Optimization and Control +1703.09510 Mesoscale and Nanoscale Physics +1703.09511 Theory +1703.09512 Instrumentation and Detectors +1703.09513 Artificial Intelligence +1703.09514 Phenomenology +1703.09515 Biological Physics +1703.09516 Statistical Mechanics +1703.09517 Soft Condensed Matter +1703.09518 Information Theory +1703.09519 Earth and Planetary Astrophysics +1703.09520 Metric Geometry +1703.09521 Networking and Internet Architecture +1703.09522 Mesoscale and Nanoscale Physics +1703.09524 Complex Variables +1703.09525 +1703.09526 Number Theory +1703.09527 Computation and Language +1703.09528 Machine Learning +1703.09529 Computer Vision and Pattern Recognition +1703.09530 Complex Variables +1703.09531 Statistics Theory +1703.09532 Phenomenology +1703.09533 Computational Geometry +1703.09534 Pattern Formation and Solitons +1703.09535 Complex Variables +1703.09536 +1703.09537 Information Theory +1703.09538 Statistical Mechanics +1703.09539 Databases +1703.09540 Analysis of PDEs +1703.09541 Phenomenology +1703.09542 Distributed, Parallel, and Cluster Computing +1703.09543 Earth and Planetary Astrophysics +1703.09544 Astrophysics of Galaxies +1703.09545 Differential Geometry +1703.09546 +1703.09547 +1703.09548 Phenomenology +1703.09550 Computer Vision and Pattern Recognition +1703.09551 Combinatorics +1703.09552 Theory +1703.09553 Probability +1703.09554 Computer Vision and Pattern Recognition +1703.09556 +1703.09557 Differential Geometry +1703.09558 Information Theory +1703.09559 Other Condensed Matter +1703.09560 High Energy Astrophysical Phenomena +1703.09561 Classical Analysis and ODEs +1703.09562 Plasma Physics +1703.09563 Systems and Control +1703.09564 Populations and Evolution +1703.09565 Numerical Analysis +1703.09566 Quantum Gases +1703.09567 Software Engineering +1703.09568 +1703.09569 Differential Geometry +1703.09570 Computation and Language +1703.09571 Analysis of PDEs +1703.09572 High Energy Astrophysical Phenomena +1703.09573 Cosmology and Nongalactic Astrophysics +1703.09574 Databases +1703.09575 Information Theory +1703.09576 +1703.09577 Differential Geometry +1703.09578 Functional Analysis +1703.09579 Phenomenology +1703.09580 Learning +1703.09581 Populations and Evolution +1703.09582 Materials Science +1703.09583 +1703.09584 Soft Condensed Matter +1703.09585 Atomic Physics +1703.09586 Soft Condensed Matter +1703.09587 +1703.09588 +1703.09589 Numerical Analysis +1703.09590 Differential Geometry +1703.09591 Soft Condensed Matter +1703.09592 Materials Science +1703.09594 +1703.09595 Metric Geometry +1703.09596 Soft Condensed Matter +1703.09597 Number Theory +1703.09598 Fluid Dynamics +1703.09599 Group Theory +1703.09600 Combinatorics +1703.09601 Statistical Mechanics +1703.09603 Software Engineering +1703.09604 Fluid Dynamics +1703.09605 Quantum Algebra +1703.09606 General Physics +1703.09607 Theory +1703.09608 General Mathematics +1703.09609 Algebraic Geometry +1703.09610 General Physics +1703.09611 Group Theory +1703.09612 Materials Science +1703.09613 Software Engineering +1703.09615 General Physics +1703.09616 Combinatorics +1703.09617 General Physics +1703.09618 Classical Analysis and ODEs +1703.09619 Numerical Analysis +1703.09620 Artificial Intelligence +1703.09621 Numerical Analysis +1703.09622 Computational Physics +1703.09623 Probability +1703.09624 Exactly Solvable and Integrable Systems +1703.09625 Computer Vision and Pattern Recognition +1703.09626 Methodology +1703.09627 Phenomenology +1703.09629 Differential Geometry +1703.09630 Cosmology and Nongalactic Astrophysics +1703.09631 Machine Learning +1703.09632 Algebraic Topology +1703.09634 +1703.09635 Theory +1703.09636 Rings and Algebras +1703.09637 Neurons and Cognition +1703.09638 +1703.09639 +1703.09640 Earth and Planetary Astrophysics +1703.09641 Computers and Society +1703.09642 Spectral Theory +1703.09643 Computers and Society +1703.09644 Algebraic Geometry +1703.09645 History and Overview +1703.09646 Learning +1703.09647 Phenomenology +1703.09648 History and Overview +1703.09649 History and Overview +1703.09650 History and Overview +1703.09651 Learning +1703.09652 Group Theory +1703.09653 Astrophysics of Galaxies +1703.09654 Mesoscale and Nanoscale Physics +1703.09655 Analysis of PDEs +1703.09656 +1703.09658 Computation +1703.09659 Biological Physics +1703.09660 Astrophysics of Galaxies +1703.09661 Soft Condensed Matter +1703.09662 Human-Computer Interaction +1703.09663 +1703.09664 Computers and Society +1703.09665 Experiment +1703.09666 Biological Physics +1703.09667 Statistical Finance +1703.09668 Earth and Planetary Astrophysics +1703.09669 Computer Science and Game Theory +1703.09670 Information Theory +1703.09671 Materials Science +1703.09672 Theory +1703.09673 Instrumentation and Methods for Astrophysics +1703.09674 Analysis of PDEs +1703.09675 Phenomenology +1703.09676 Pattern Formation and Solitons +1703.09677 Functional Analysis +1703.09678 Mesoscale and Nanoscale Physics +1703.09679 Solar and Stellar Astrophysics +1703.09680 Group Theory +1703.09681 Theory +1703.09682 Combinatorics +1703.09683 Algebraic Geometry +1703.09684 Computer Vision and Pattern Recognition +1703.09685 Theory +1703.09686 +1703.09687 Combinatorics +1703.09688 Soft Condensed Matter +1703.09690 Computer Vision and Pattern Recognition +1703.09691 Cell Behavior +1703.09693 Social and Information Networks +1703.09694 Mesoscale and Nanoscale Physics +1703.09695 Computer Vision and Pattern Recognition +astro-ph/0304463 +astro-ph/0308053 +astro-ph/0308056 +astro-ph/0308090 +astro-ph/0308543 +astro-ph/0309184 +astro-ph/0309269 +astro-ph/0309349 +astro-ph/0309420 +astro-ph/0309439 +astro-ph/0309466 +astro-ph/0309675 +astro-ph/0309732 +astro-ph/0310211 +astro-ph/0310297 +astro-ph/0312350 +astro-ph/0401617 +astro-ph/0410355 +astro-ph/9711344 +math/0603738 Complex Variables +nlin/0502033 Pattern Formation and Solitons +0806.0091 Experiment +0807.2304 +1009.1867 Exactly Solvable and Integrable Systems +1108.1335 +1109.2304 Data Structures and Algorithms +1112.5524 Combinatorics +1112.5910 Phenomenology +1204.3204 Quantum Gases +1205.2170 Distributed, Parallel, and Cluster Computing +1208.2772 High Energy Astrophysical Phenomena +1209.0848 K-Theory and Homology +1211.3547 Theory +1212.3780 Soft Condensed Matter +1212.5562 +1301.5052 Differential Geometry +1303.1078 General Physics +1303.1262 General Physics +1303.6484 Number Theory +1304.0854 Spectral Theory +1305.7511 Differential Geometry +1306.4705 Analysis of PDEs +1306.6446 Number Theory +1308.2088 Number Theory +1309.4991 Fluid Dynamics +1311.7526 Theory +1312.5498 General Physics +1312.5835 General Physics +1402.3972 +1402.4340 Functional Analysis +1403.5182 +1404.3282 Number Theory +1406.5283 Analysis of PDEs +1406.6194 +1407.2636 Distributed, Parallel, and Cluster Computing +1407.3583 Cosmology and Nongalactic Astrophysics +1407.5015 Representation Theory +1407.6023 Theory +1407.7214 Soft Condensed Matter +1407.7219 Soft Condensed Matter +1408.3614 Strongly Correlated Electrons +1409.1469 Commutative Algebra +1409.2516 Analysis of PDEs +1410.3412 Number Theory +1410.5610 Neurons and Cognition +1411.6647 Differential Geometry +1412.0146 Analysis of PDEs +1412.2203 Algebraic Geometry +1412.2850 +1501.00345 Strongly Correlated Electrons +1502.01474 General Physics +1502.02505 Number Theory +1502.03510 Quantum Algebra +1502.05133 Dynamical Systems +1503.00130 Algebraic Geometry +1503.05083 +1503.05524 Analysis of PDEs +1503.07462 Differential Geometry +1503.07517 +1504.02905 Solar and Stellar Astrophysics +1504.04723 Chaotic Dynamics +1504.05759 Classical Analysis and ODEs +1504.06964 Methodology +1504.08182 Mesoscale and Nanoscale Physics +1504.08351 Differential Geometry +1505.04612 +1505.06157 +1505.06455 Logic +1505.07787 +1506.04797 Populations and Evolution +1506.08335 Representation Theory +1507.00597 Geometric Topology +1507.03050 Combinatorics +1507.03556 Dynamical Systems +1507.04449 Operator Algebras +1507.08315 Fluid Dynamics +1508.01301 Combinatorics +1508.01717 Machine Learning +1508.01797 +1508.04114 Instrumentation and Methods for Astrophysics +1508.04474 Fluid Dynamics +1508.04871 Superconductivity +1508.07371 Databases +1509.00504 Social and Information Networks +1509.02588 Logic +1509.04657 +1509.05553 Instrumentation and Methods for Astrophysics +1510.01361 Quantum Algebra +1510.03821 Astrophysics of Galaxies +1510.03921 Databases +1510.04521 Logic +1510.04833 Computational Complexity +1510.05980 Cosmology and Nongalactic Astrophysics +1510.06193 Number Theory +1510.08863 +1511.01079 High Energy Astrophysical Phenomena +1511.04547 Differential Geometry +1511.04948 Classical Analysis and ODEs +1511.05075 Complex Variables +1511.05738 +1511.06409 Learning +1511.07292 Algebraic Topology +1511.07381 Quantum Gases +1511.08440 Dynamical Systems +1512.01317 +1512.01750 Fluid Dynamics +1512.02776 Geometric Topology +1512.02813 Optics +1512.03077 Systems and Control +1512.03918 Cosmology and Nongalactic Astrophysics +1512.07204 Number Theory +1512.08088 Rings and Algebras +1512.08372 +1601.01501 Combinatorics +1601.01990 Optimization and Control +1601.03031 Complex Variables +1601.03355 +1601.03561 Theory +1601.04179 Systems and Control +1602.00170 Phenomenology +1602.00384 Classical Analysis and ODEs +1602.00689 Astrophysics of Galaxies +1602.01741 Operator Algebras +1602.01837 Cosmology and Nongalactic Astrophysics +1602.05148 Materials Science +1602.06509 Information Theory +1602.07938 Analysis of PDEs +1602.08059 Analysis of PDEs +1602.08065 Instrumentation and Methods for Astrophysics +1602.08271 +1602.08426 Metric Geometry +1603.02702 Cosmology and Nongalactic Astrophysics +1603.03815 Quantitative Methods +1603.04492 Analysis of PDEs +1603.04538 Strongly Correlated Electrons +1603.05549 Computational Physics +1603.08643 Computational Physics +1603.08904 Sound +1604.00297 Differential Geometry +1604.01218 Instrumentation and Detectors +1604.01543 +1604.02884 Mesoscale and Nanoscale Physics +1604.03199 Quantitative Methods +1604.03218 Dynamical Systems +1604.03680 +1604.03845 +1604.04885 Mesoscale and Nanoscale Physics +1604.05424 Differential Geometry +1604.06010 Astrophysics of Galaxies +1604.06017 Cosmology and Nongalactic Astrophysics +1604.06802 Astrophysics of Galaxies +1604.07292 Rings and Algebras +1604.07298 Analysis of PDEs +1604.07816 Disordered Systems and Neural Networks +1605.00210 +1605.00497 +1605.01054 Solar and Stellar Astrophysics +1605.01367 Phenomenology +1605.02338 Astrophysics of Galaxies +1605.02805 Exactly Solvable and Integrable Systems +1605.03642 +1605.03861 Functional Analysis +1605.03942 +1605.04138 Cosmology and Nongalactic Astrophysics +1605.04299 Phenomenology +1605.04444 Algebraic Geometry +1605.04615 Group Theory +1605.04706 Astrophysics of Galaxies +1605.05138 +1605.05147 +1605.05187 Materials Science +1605.05329 Cosmology and Nongalactic Astrophysics +1605.05460 Strongly Correlated Electrons +1605.05969 Optimization and Control +1605.06930 Probability +1605.07436 Fluid Dynamics +1605.07595 Cosmology and Nongalactic Astrophysics +1605.08225 Theory +1605.08404 +1605.08420 +1605.08834 Information Theory +1605.09107 Methodology +1605.09637 Experiment +1606.00458 Cosmology and Nongalactic Astrophysics +1606.00796 Astrophysics of Galaxies +1606.00963 Information Theory +1606.01229 Astrophysics of Galaxies +1606.01329 +1606.01801 +1606.02148 Cosmology and Nongalactic Astrophysics +1606.02649 Atmospheric and Oceanic Physics +1606.03186 Probability +1606.03483 Instrumentation and Methods for Astrophysics +1606.03629 Instrumentation and Methods for Astrophysics +1606.03795 +1606.03804 Phenomenology +1606.03843 High Energy Astrophysical Phenomena +1606.04248 Statistical Mechanics +1606.04251 Superconductivity +1606.04901 High Energy Astrophysical Phenomena +1606.05346 Astrophysics of Galaxies +1606.05622 Symplectic Geometry +1606.06072 +1606.06101 Mesoscale and Nanoscale Physics +1606.06120 Category Theory +1606.06215 Systems and Control +1606.06295 Astrophysics of Galaxies +1606.06673 Statistical Mechanics +1606.06775 High Energy Astrophysical Phenomena +1606.06805 +1606.07053 +1606.08398 +1606.08502 Phenomenology +1606.08543 Astrophysics of Galaxies +1606.08994 +1606.09156 Analysis of PDEs +1607.00117 Cryptography and Security +1607.00236 Theory +1607.00251 Chemical Physics +1607.00382 Cosmology and Nongalactic Astrophysics +1607.00383 Cosmology and Nongalactic Astrophysics +1607.00505 Phenomenology +1607.00961 Mesoscale and Nanoscale Physics +1607.01026 Cosmology and Nongalactic Astrophysics +1607.01120 +1607.01203 Theory +1607.01404 Mathematical Software +1607.01459 Optics +1607.01547 Statistical Mechanics +1607.01629 +1607.01789 Phenomenology +1607.02264 Optics +1607.02287 Strongly Correlated Electrons +1607.02913 Classical Physics +1607.03008 Representation Theory +1607.03047 +1607.03126 Strongly Correlated Electrons +1607.03150 Cosmology and Nongalactic Astrophysics +1607.03189 Robotics +1607.03282 Analysis of PDEs +1607.03537 Cosmology and Nongalactic Astrophysics +1607.03778 High Energy Astrophysical Phenomena +1607.04293 Instrumentation and Methods for Astrophysics +1607.04306 Chemical Physics +1607.04422 Theory +1607.04644 Cosmology and Nongalactic Astrophysics +1607.04818 Optimization and Control +1607.04883 Portfolio Management +1607.05258 Computer Vision and Pattern Recognition +1607.05297 Cosmology and Nongalactic Astrophysics +1607.05577 General Physics +1607.05792 Instrumentation and Methods for Astrophysics +1607.06036 Theory +1607.06048 Statistical Mechanics +1607.06562 +1607.06756 Solar and Stellar Astrophysics +1607.07173 Logic +1607.07462 +1607.07636 Probability +1607.08005 Astrophysics of Galaxies +1607.08550 Cosmology and Nongalactic Astrophysics +1607.08637 Physics and Society +1608.00001 High Energy Astrophysical Phenomena +1608.00164 High Energy Astrophysical Phenomena +1608.00233 Astrophysics of Galaxies +1608.00754 Materials Science +1608.00819 Astrophysics of Galaxies +1608.00898 Mesoscale and Nanoscale Physics +1608.01053 Materials Science +1608.01434 Earth and Planetary Astrophysics +1608.01838 Cosmology and Nongalactic Astrophysics +1608.02459 Mesoscale and Nanoscale Physics +1608.02585 Astrophysics of Galaxies +1608.02849 Theory +1608.03083 Probability +1608.03164 +1608.03403 Astrophysics of Galaxies +1608.03876 +1608.03892 Astrophysics of Galaxies +1608.03955 Mesoscale and Nanoscale Physics +1608.04337 Computer Vision and Pattern Recognition +1608.04750 +1608.04786 Algebraic Geometry +1608.04960 Statistical Mechanics +1608.05202 +1608.05393 Strongly Correlated Electrons +1608.05396 High Energy Astrophysical Phenomena +1608.05547 Mesoscale and Nanoscale Physics +1608.05843 Theory +1608.05890 Astrophysics of Galaxies +1608.06867 Astrophysics of Galaxies +1608.06951 Theory +1608.06964 Experiment +1608.07210 Superconductivity +1608.07548 Statistical Mechanics +1608.07699 Algebraic Topology +1608.07818 Astrophysics of Galaxies +1608.07935 Strongly Correlated Electrons +1608.08061 Materials Science +1608.08102 Optics +1608.08223 High Energy Astrophysical Phenomena +1608.08229 +1608.08255 Mesoscale and Nanoscale Physics +1608.08636 Earth and Planetary Astrophysics +1608.08875 Differential Geometry +1609.00019 Cosmology and Nongalactic Astrophysics +1609.00264 Statistical Mechanics +1609.00461 Social and Information Networks +1609.00607 Phenomenology +1609.01125 High Energy Astrophysical Phenomena +1609.01127 Statistical Mechanics +1609.01296 Astrophysics of Galaxies +1609.01301 Astrophysics of Galaxies +1609.01719 Astrophysics of Galaxies +1609.01737 Astrophysics of Galaxies +1609.01912 High Energy Astrophysical Phenomena +1609.02156 Solar and Stellar Astrophysics +1609.02286 Networking and Internet Architecture +1609.02418 Disordered Systems and Neural Networks +1609.02530 Solar and Stellar Astrophysics +1609.02544 Cosmology and Nongalactic Astrophysics +1609.02590 +1609.02705 +1609.02822 Instrumentation and Methods for Astrophysics +1609.02968 Information Theory +1609.03015 Quantum Gases +1609.03210 Solar and Stellar Astrophysics +1609.03254 Theory +1609.03316 Strongly Correlated Electrons +1609.03582 Theory +1609.03746 Fluid Dynamics +1609.03941 High Energy Astrophysical Phenomena +1609.04106 Probability +1609.04151 Strongly Correlated Electrons +1609.04384 Soft Condensed Matter +1609.04421 +1609.04516 +1609.04788 Cosmology and Nongalactic Astrophysics +1609.04808 High Energy Astrophysical Phenomena +1609.04831 Phenomenology +1609.05037 Pattern Formation and Solitons +1609.05221 Logic +1609.05305 Astrophysics of Galaxies +1609.05470 Quantum Gases +1609.05623 Mesoscale and Nanoscale Physics +1609.05677 Chaotic Dynamics +1609.05808 High Energy Astrophysical Phenomena +1609.06131 Computational Physics +1609.06173 Mesoscale and Nanoscale Physics +1609.06262 Instrumentation and Methods for Astrophysics +1609.06321 Astrophysics of Galaxies +1609.06322 Astrophysics of Galaxies +1609.06329 Mesoscale and Nanoscale Physics +1609.06732 Statistical Mechanics +1609.07052 Earth and Planetary Astrophysics +1609.07225 +1609.07510 Earth and Planetary Astrophysics +1609.07616 Solar and Stellar Astrophysics +1609.07663 Geometric Topology +1609.08145 High Energy Astrophysical Phenomena +1609.08338 Soft Condensed Matter +1609.08472 Solar and Stellar Astrophysics +1609.08580 +1609.08848 Astrophysics of Galaxies +1609.08894 Instrumentation and Detectors +1609.08912 Theory +1609.09088 Phenomenology +1609.09156 Computer Vision and Pattern Recognition +1609.09215 Solar and Stellar Astrophysics +1609.09489 Astrophysics of Galaxies +1609.09497 Theory +1609.09567 Plasma Physics +1610.00113 Mesoscale and Nanoscale Physics +1610.00295 Mesoscale and Nanoscale Physics +1610.00508 Phenomenology +1610.00906 Information Theory +1610.00962 Cosmology and Nongalactic Astrophysics +1610.01165 Astrophysics of Galaxies +1610.01301 Plasma Physics +1610.01356 Operator Algebras +1610.01594 Astrophysics of Galaxies +1610.01626 Astrophysics of Galaxies +1610.02041 High Energy Astrophysical Phenomena +1610.02076 Instrumentation and Detectors +1610.02140 Quantum Gases +1610.02585 Solar and Stellar Astrophysics +1610.03011 Astrophysics of Galaxies +1610.03063 Phenomenology +1610.03226 Experiment +1610.03292 Probability +1610.03488 Cosmology and Nongalactic Astrophysics +1610.03600 Cosmology and Nongalactic Astrophysics +1610.03795 Phenomenology +1610.03851 Solar and Stellar Astrophysics +1610.03860 High Energy Astrophysical Phenomena +1610.03989 +1610.04029 Mesoscale and Nanoscale Physics +1610.04053 Mesoscale and Nanoscale Physics +1610.04549 Physics and Society +1610.04650 Strongly Correlated Electrons +1610.04854 Materials Science +1610.04863 +1610.04914 Statistical Mechanics +1610.04940 Mesoscale and Nanoscale Physics +1610.05624 Phenomenology +1610.05682 Phenomenology +1610.05875 +1610.05893 Solar and Stellar Astrophysics +1610.05989 Atomic Physics +1610.06007 +1610.06062 Superconductivity +1610.06185 Solar and Stellar Astrophysics +1610.06198 Quantum Gases +1610.06199 Data Structures and Algorithms +1610.06351 High Energy Astrophysical Phenomena +1610.06459 Strongly Correlated Electrons +1610.06476 Strongly Correlated Electrons +1610.06480 Solar and Stellar Astrophysics +1610.06565 High Energy Astrophysical Phenomena +1610.06857 Astrophysics of Galaxies +1610.06867 +1610.06963 Mesoscale and Nanoscale Physics +1610.07502 Mesoscale and Nanoscale Physics +1610.07537 +1610.07593 Phenomenology +1610.07606 Phenomenology +1610.07695 Cosmology and Nongalactic Astrophysics +1610.07709 Phenomenology +1610.07812 Algebraic Geometry +1610.08158 Theory +1610.08181 Cosmology and Nongalactic Astrophysics +1610.08314 Solar and Stellar Astrophysics +1610.08506 Solar and Stellar Astrophysics +1610.08507 Astrophysics of Galaxies +1610.08511 High Energy Astrophysical Phenomena +1610.08563 Solar and Stellar Astrophysics +1610.08711 Cosmology and Nongalactic Astrophysics +1610.08856 Solar and Stellar Astrophysics +1610.08944 High Energy Astrophysical Phenomena +1610.09053 +1610.09125 Astrophysics of Galaxies +1610.09448 Astrophysics of Galaxies +1610.09510 Superconductivity +1610.09591 Cosmology and Nongalactic Astrophysics +1610.09856 Lattice +1610.09942 Dynamical Systems +1610.10047 Plasma Physics +1611.00008 Astrophysics of Galaxies +1611.00166 Phenomenology +1611.00349 Soft Condensed Matter +1611.00362 Theory +1611.00367 Astrophysics of Galaxies +1611.00402 Astrophysics of Galaxies +1611.00418 Cosmology and Nongalactic Astrophysics +1611.00425 Atomic Physics +1611.00526 Earth and Planetary Astrophysics +1611.00629 Solar and Stellar Astrophysics +1611.00774 Astrophysics of Galaxies +1611.00896 Astrophysics of Galaxies +1611.00952 Phenomenology +1611.01012 Soft Condensed Matter +1611.01109 Physics and Society +1611.01160 Cosmology and Nongalactic Astrophysics +1611.01168 Earth and Planetary Astrophysics +1611.01315 Cosmology and Nongalactic Astrophysics +1611.01397 Plasma Physics +1611.01819 Solar and Stellar Astrophysics +1611.01968 Earth and Planetary Astrophysics +1611.02055 Solar and Stellar Astrophysics +1611.02254 Solar and Stellar Astrophysics +1611.02297 Earth and Planetary Astrophysics +1611.02562 Astrophysics of Galaxies +1611.02638 Solar and Stellar Astrophysics +1611.02757 Astrophysics of Galaxies +1611.02985 +1611.03380 Hardware Architecture +1611.03481 +1611.03496 High Energy Astrophysical Phenomena +1611.03508 Astrophysics of Galaxies +1611.03512 Astrophysics of Galaxies +1611.03762 Solar and Stellar Astrophysics +1611.03788 High Energy Astrophysical Phenomena +1611.03805 Cosmology and Nongalactic Astrophysics +1611.04282 Solar and Stellar Astrophysics +1611.04340 Astrophysics of Galaxies +1611.04434 +1611.04437 Phenomenology +1611.04609 Astrophysics of Galaxies +1611.04640 High Energy Astrophysical Phenomena +1611.04859 Astrophysics of Galaxies +1611.04904 Instrumentation and Methods for Astrophysics +1611.04915 Quantum Gases +1611.04972 Experiment +1611.05039 Astrophysics of Galaxies +1611.05040 Astrophysics of Galaxies +1611.05421 Astrophysics of Galaxies +1611.05446 Astrophysics of Galaxies +1611.05454 Strongly Correlated Electrons +1611.05516 Astrophysics of Galaxies +1611.05665 High Energy Astrophysical Phenomena +1611.05684 Earth and Planetary Astrophysics +1611.05694 Statistical Mechanics +1611.05886 Astrophysics of Galaxies +1611.05925 Earth and Planetary Astrophysics +1611.05963 Computer Vision and Pattern Recognition +1611.06051 Astrophysics of Galaxies +1611.06064 +1611.06229 Solar and Stellar Astrophysics +1611.06323 Atomic Physics +1611.06410 Materials Science +1611.06976 Solar and Stellar Astrophysics +1611.07039 Astrophysics of Galaxies +1611.07070 Solar and Stellar Astrophysics +1611.07334 Phenomenology +1611.07410 Astrophysics of Galaxies +1611.07519 Classical Physics +1611.07532 Astrophysics of Galaxies +1611.07637 Solar and Stellar Astrophysics +1611.08031 Solar and Stellar Astrophysics +1611.08046 High Energy Astrophysical Phenomena +1611.08058 Cosmology and Nongalactic Astrophysics +1611.08203 Solar and Stellar Astrophysics +1611.08304 Astrophysics of Galaxies +1611.08354 Astrophysics of Galaxies +1611.08371 Solar and Stellar Astrophysics +1611.08633 Soft Condensed Matter +1611.08733 Logic in Computer Science +1611.08962 +1611.09133 Analysis of PDEs +1611.09209 High Energy Astrophysical Phenomena +1611.09258 Representation Theory +1611.09301 +1611.09303 Phenomenology +1611.09361 Solar and Stellar Astrophysics +1611.09684 Astrophysics of Galaxies +1611.09730 Rings and Algebras +1611.09852 Solar and Stellar Astrophysics +1611.09854 Astrophysics of Galaxies +1611.09857 Astrophysics of Galaxies +1611.09858 Astrophysics of Galaxies +1611.10201 Solar and Stellar Astrophysics +1611.10230 High Energy Astrophysical Phenomena +1611.10332 Solar and Stellar Astrophysics +1612.00070 Solar and Stellar Astrophysics +1612.00174 Solar and Stellar Astrophysics +1612.00245 Astrophysics of Galaxies +1612.00290 General Physics +1612.00446 Earth and Planetary Astrophysics +1612.00465 Solar and Stellar Astrophysics +1612.00524 Solar and Stellar Astrophysics +1612.00758 Space Physics +1612.00794 Theory +1612.00964 High Energy Astrophysical Phenomena +1612.01005 Logic in Computer Science +1612.01027 Astrophysics of Galaxies +1612.01054 Solar and Stellar Astrophysics +1612.01088 Astrophysics of Galaxies +1612.01221 High Energy Astrophysical Phenomena +1612.01245 Earth and Planetary Astrophysics +1612.01304 Astrophysics of Galaxies +1612.01560 Astrophysics of Galaxies +1612.01576 Discrete Mathematics +1612.01847 Mesoscale and Nanoscale Physics +1612.01874 Theory +1612.01944 Graphics +1612.01957 Astrophysics of Galaxies +1612.01996 High Energy Astrophysical Phenomena +1612.02115 Solar and Stellar Astrophysics +1612.02341 Astrophysics of Galaxies +1612.02431 Solar and Stellar Astrophysics +1612.02433 Solar and Stellar Astrophysics +1612.02475 High Energy Astrophysical Phenomena +1612.02500 Functional Analysis +1612.02501 Solar and Stellar Astrophysics +1612.02560 Astrophysics of Galaxies +1612.02564 Databases +1612.02682 Rings and Algebras +1612.02822 Astrophysics of Galaxies +1612.02835 High Energy Astrophysical Phenomena +1612.02854 Earth and Planetary Astrophysics +1612.02882 High Energy Astrophysical Phenomena +1612.02945 Chemical Physics +1612.03047 +1612.03107 Solar and Stellar Astrophysics +1612.03127 Probability +1612.03180 Cosmology and Nongalactic Astrophysics +1612.03234 +1612.03387 Astrophysics of Galaxies +1612.03406 +1612.03564 Cosmology and Nongalactic Astrophysics +1612.03806 Astrophysics of Galaxies +1612.03911 High Energy Astrophysical Phenomena +1612.03914 Phenomenology +1612.03922 Combinatorics +1612.03949 Solar and Stellar Astrophysics +1612.03994 Instrumentation and Methods for Astrophysics +1612.04118 Computation and Language +1612.04326 Solar and Stellar Astrophysics +1612.04384 Solar and Stellar Astrophysics +1612.04390 Astrophysics of Galaxies +1612.04397 High Energy Astrophysical Phenomena +1612.04708 Solar and Stellar Astrophysics +1612.04813 Astrophysics of Galaxies +1612.04815 Astrophysics of Galaxies +1612.04819 Astrophysics of Galaxies +1612.04939 Atomic Physics +1612.04948 Strongly Correlated Electrons +1612.04962 High Energy Astrophysical Phenomena +1612.05027 Astrophysics of Galaxies +1612.05035 High Energy Astrophysical Phenomena +1612.05487 Solar and Stellar Astrophysics +1612.05580 Theory +1612.05616 Solar and Stellar Astrophysics +1612.05667 Geophysics +1612.05672 Astrophysics of Galaxies +1612.05847 Astrophysics of Galaxies +1612.06420 Astrophysics of Galaxies +1612.06445 +1612.06759 Phenomenology +1612.06964 Strongly Correlated Electrons +1612.07129 Theory +1612.07431 Instrumentation and Methods for Astrophysics +1612.07728 Probability +1612.07804 Solar and Stellar Astrophysics +1612.07829 +1612.08021 Mesoscale and Nanoscale Physics +1612.08089 Astrophysics of Galaxies +1612.08144 Astrophysics of Galaxies +1612.08708 Superconductivity +1612.09056 +1612.09233 Analysis of PDEs +1612.09290 Phenomenology +1612.09363 Mesoscale and Nanoscale Physics +1612.09371 Phenomenology +1612.09395 Astrophysics of Galaxies +1701.00091 Statistical Mechanics +1701.00110 Materials Science +1701.00147 Solar and Stellar Astrophysics +1701.00173 Cosmology and Nongalactic Astrophysics +1701.00357 Cosmology and Nongalactic Astrophysics +1701.00431 +1701.00589 Quantum Gases +1701.00714 +1701.00782 Solar and Stellar Astrophysics +1701.00843 Earth and Planetary Astrophysics +1701.00953 Differential Geometry +1701.00955 Strongly Correlated Electrons +1701.01056 Solar and Stellar Astrophysics +1701.01118 Mesoscale and Nanoscale Physics +1701.01147 Geometric Topology +1701.01527 Systems and Control +1701.01578 Superconductivity +1701.01643 Theory +1701.01756 High Energy Astrophysical Phenomena +1701.02323 Astrophysics of Galaxies +1701.02449 High Energy Astrophysical Phenomena +1701.02642 Differential Geometry +1701.02652 Phenomenology +1701.02750 Astrophysics of Galaxies +1701.02827 Information Theory +1701.02891 Solar and Stellar Astrophysics +1701.03314 Methodology +1701.03455 Theory +1701.03514 Solar and Stellar Astrophysics +1701.03556 Solar and Stellar Astrophysics +1701.03565 +1701.03594 Computational Physics +1701.03683 Astrophysics of Galaxies +1701.03695 Information Theory +1701.04051 Plasma Physics +1701.04062 +1701.04073 Astrophysics of Galaxies +1701.04129 Earth and Planetary Astrophysics +1701.04211 High Energy Astrophysical Phenomena +1701.04349 Solar and Stellar Astrophysics +1701.04417 Cosmology and Nongalactic Astrophysics +1701.04791 Solar and Stellar Astrophysics +1701.04822 Astrophysics of Galaxies +1701.04847 Astrophysics of Galaxies +1701.04851 Computer Vision and Pattern Recognition +1701.04854 +1701.04862 Machine Learning +1701.04869 Learning +1701.04895 Artificial Intelligence +1701.04907 Instrumentation and Methods for Astrophysics +1701.04919 Logic in Computer Science +1701.04922 Soft Condensed Matter +1701.04935 Instrumentation and Methods for Astrophysics +1701.04937 Astrophysics of Galaxies +1701.04967 Molecular Networks +1701.04999 Representation Theory +1701.05006 Classical Physics +1701.05023 +1701.05056 Disordered Systems and Neural Networks +1701.05073 Chemical Physics +1701.05076 Fluid Dynamics +1701.05078 Biological Physics +1701.05092 Geophysics +1701.05136 Chaotic Dynamics +1701.05138 Logic +1701.05222 Solar and Stellar Astrophysics +1701.05247 Information Theory +1701.05281 Solar and Stellar Astrophysics +1701.05309 Rings and Algebras +1701.05409 Astrophysics of Galaxies +1701.05445 Dynamical Systems +1701.05482 High Energy Astrophysical Phenomena +1701.05511 Phenomenology +1701.05556 Physics and Society +1701.05589 High Energy Astrophysical Phenomena +1701.05707 Pattern Formation and Solitons +1701.05745 +1701.05858 Materials Science +1701.05903 Astrophysics of Galaxies +1701.05909 Combinatorics +1701.05942 High Energy Astrophysical Phenomena +1701.05953 Astrophysics of Galaxies +1701.05989 Information Theory +1701.06009 Statistics Theory +1701.06037 Differential Geometry +1701.06078 Sound +1701.06083 Theory +1701.06175 Complex Variables +1701.06253 Optimization and Control +1701.06282 Logic in Computer Science +1701.06296 Spectral Theory +1701.06310 +1701.06329 Rings and Algebras +1701.06347 Information Theory +1701.06513 Differential Geometry +1701.06532 Logic in Computer Science +1701.06544 +1701.06557 High Energy Astrophysical Phenomena +1701.06559 Astrophysics of Galaxies +1701.06560 Exactly Solvable and Integrable Systems +1701.06562 Cryptography and Security +1701.06563 Astrophysics of Galaxies +1701.06567 Theory +1701.06569 Astrophysics of Galaxies +1701.06571 Astrophysics of Galaxies +1701.06572 Theory +1701.06573 Theory +1701.06575 Astrophysics of Galaxies +1701.06576 Theory +1701.06578 +1701.06579 Algebraic Geometry +1701.06580 High Energy Astrophysical Phenomena +1701.06581 Cosmology and Nongalactic Astrophysics +1701.06582 Strongly Correlated Electrons +1701.06583 Phenomenology +1701.06584 Strongly Correlated Electrons +1701.06589 Optimization and Control +1701.06591 Cosmology and Nongalactic Astrophysics +1701.06592 Algebraic Geometry +1701.06594 Differential Geometry +1701.06595 Optimization and Control +1701.06596 Algebraic Geometry +1701.06597 Machine Learning +1701.06598 Mesoscale and Nanoscale Physics +1701.06599 Computer Vision and Pattern Recognition +1701.06600 Numerical Analysis +1701.06601 Number Theory +1701.06603 Earth and Planetary Astrophysics +1701.06604 High Energy Astrophysical Phenomena +1701.06605 Information Theory +1701.06606 Optimization and Control +1701.06607 Machine Learning +1701.06609 Optimization and Control +1701.06610 Information Theory +1701.06612 Logic in Computer Science +1701.06613 Mesoscale and Nanoscale Physics +1701.06614 Number Theory +1701.06616 Soft Condensed Matter +1701.06618 Fluid Dynamics +1701.06619 Computation +1701.06620 Statistical Mechanics +1701.06621 Optimization and Control +1701.06624 General Finance +1701.06625 Economics +1701.06626 Analysis of PDEs +1701.06628 Optimization and Control +1701.06630 Probability +1701.06631 Information Theory +1701.06632 Combinatorics +1701.06633 Materials Science +1701.06634 Earth and Planetary Astrophysics +1701.06635 Artificial Intelligence +1701.06636 +1701.06637 Classical Analysis and ODEs +1701.06638 Soft Condensed Matter +1701.06639 Combinatorics +1701.06640 Classical Analysis and ODEs +1701.06641 Computer Vision and Pattern Recognition +1701.06642 Probability +1701.06643 Computer Vision and Pattern Recognition +1701.06644 Logic in Computer Science +1701.06646 Physics and Society +1701.06648 Combinatorics +1701.06649 Chemical Physics +1701.06650 +1701.06651 Number Theory +1701.06652 Systems and Control +1701.06653 Solar and Stellar Astrophysics +1701.06654 Mesoscale and Nanoscale Physics +1701.06655 Learning +1701.06656 Analysis of PDEs +1701.06657 +1701.06658 Computational Physics +1701.06659 Computer Vision and Pattern Recognition +1701.06661 Optimization and Control +1701.06663 Probability +1701.06667 Materials Science +1701.06668 +1701.06669 Discrete Mathematics +1701.06670 Numerical Analysis +1701.06672 Information Theory +1701.06674 Strongly Correlated Electrons +1701.06675 Machine Learning +1701.06676 Numerical Analysis +1701.06677 Algebraic Geometry +1701.06679 Optimization and Control +1701.06680 Optimization and Control +1701.06682 +1701.06683 +1701.06687 Information Theory +1701.06689 History and Overview +1701.06691 Commutative Algebra +1701.06692 Optimization and Control +1701.06693 Mesoscale and Nanoscale Physics +1701.06694 Materials Science +1701.06695 Algebraic Topology +1701.06696 Optics +1701.06697 Atomic Physics +1701.06698 Optimization and Control +1701.06699 Artificial Intelligence +1701.06700 Optimization and Control +1701.06702 +1701.06705 Discrete Mathematics +1701.06706 Earth and Planetary Astrophysics +1701.06708 Computer Vision and Pattern Recognition +1701.06710 Theory +1701.06712 Geometric Topology +1701.06715 Computer Vision and Pattern Recognition +1701.06717 Information Theory +1701.06718 Human-Computer Interaction +1701.06722 Number Theory +1701.06723 Optimization and Control +1701.06724 +1701.06725 Learning +1701.06727 Spectral Theory +1701.06728 Analysis of PDEs +1701.06729 Mesoscale and Nanoscale Physics +1701.06730 Adaptation and Self-Organizing Systems +1701.06731 Optimization and Control +1701.06732 Number Theory +1701.06733 Information Theory +1701.06735 Information Theory +1701.06736 Metric Geometry +1701.06737 Phenomenology +1701.06738 Commutative Algebra +1701.06739 Methodology +1701.06740 High Energy Astrophysical Phenomena +1701.06742 Cosmology and Nongalactic Astrophysics +1701.06744 +1701.06745 Human-Computer Interaction +1701.06746 Soft Condensed Matter +1701.06749 Machine Learning +1701.06750 Combinatorics +1701.06751 Learning +1701.06753 Numerical Analysis +1701.06754 Applications +1701.06756 Mesoscale and Nanoscale Physics +1701.06759 High Energy Astrophysical Phenomena +1701.06760 Combinatorics +1701.06762 Combinatorics +1701.06763 +1701.06764 Phenomenology +1701.06765 High Energy Astrophysical Phenomena +1701.06768 Phenomenology +1701.06769 Mesoscale and Nanoscale Physics +1701.06770 Information Theory +1701.06771 Physics and Society +1701.06772 Computer Vision and Pattern Recognition +1701.06773 Dynamical Systems +1701.06775 Fluid Dynamics +1701.06777 Solar and Stellar Astrophysics +1701.06778 Numerical Analysis +1701.06779 Probability +1701.06781 Molecular Networks +1701.06782 Accelerator Physics +1701.06783 Software Engineering +1701.06784 Combinatorics +1701.06785 Differential Geometry +1701.06786 Solar and Stellar Astrophysics +1701.06787 Mesoscale and Nanoscale Physics +1701.06788 Algebraic Topology +1701.06790 Formal Languages and Automata Theory +1701.06792 High Energy Astrophysical Phenomena +1701.06794 Number Theory +1701.06797 Solar and Stellar Astrophysics +1701.06798 Rings and Algebras +1701.06799 Optics +1701.06802 Solar and Stellar Astrophysics +1701.06803 Algebraic Geometry +1701.06804 Solar and Stellar Astrophysics +1701.06806 +1701.06810 Phenomenology +1701.06811 Systems and Control +1701.06812 High Energy Astrophysical Phenomena +1701.06813 Soft Condensed Matter +1701.06814 Information Theory +1701.06815 Software Engineering +1701.06817 Cryptography and Security +1701.06818 Fluid Dynamics +1701.06819 Strongly Correlated Electrons +1701.06820 Methodology +1701.06822 Number Theory +1701.06823 Cryptography and Security +1701.06824 Soft Condensed Matter +1701.06825 Information Theory +1701.06826 Solar and Stellar Astrophysics +1701.06827 High Energy Astrophysical Phenomena +1701.06828 Distributed, Parallel, and Cluster Computing +1701.06829 Theory +1701.06830 Instrumentation and Detectors +1701.06831 Combinatorics +1701.06833 +1701.06834 Probability +1701.06836 Statistics Theory +1701.06837 +1701.06838 +1701.06839 Probability +1701.06840 Spectral Theory +1701.06841 High Energy Astrophysical Phenomena +1701.06842 Functional Analysis +1701.06844 Rings and Algebras +1701.06845 Algebraic Geometry +1701.06846 Mesoscale and Nanoscale Physics +1701.06847 Group Theory +1701.06848 +1701.06849 Commutative Algebra +1701.06850 Soft Condensed Matter +1701.06851 Algebraic Geometry +1701.06852 Information Theory +1701.06853 Probability +1701.06854 Computer Vision and Pattern Recognition +1701.06858 Complex Variables +1701.06859 Computer Vision and Pattern Recognition +1701.06861 Social and Information Networks +1701.06862 Analysis of PDEs +1701.06863 Optics +1701.06864 Algebraic Geometry +1701.06866 +1701.06868 Numerical Analysis +1701.06869 Number Theory +1701.06870 High Energy Astrophysical Phenomena +1701.06871 Populations and Evolution +1701.06872 Optimization and Control +1701.06873 Dynamical Systems +1701.06874 Information Theory +1701.06875 Analysis of PDEs +1701.06876 Statistics Theory +1701.06877 Phenomenology +1701.06878 Mesoscale and Nanoscale Physics +1701.06879 Superconductivity +1701.06880 Representation Theory +1701.06881 Number Theory +1701.06882 Experiment +1701.06884 Information Theory +1701.06885 Chemical Physics +1701.06886 Strongly Correlated Electrons +1701.06889 Adaptation and Self-Organizing Systems +1701.06891 General Physics +1701.06892 +1701.06893 +1701.06895 Classical Analysis and ODEs +1701.06897 Functional Analysis +1701.06900 +1701.06901 Differential Geometry +1701.06902 +1701.06905 Chaotic Dynamics +1701.06906 Group Theory +1701.06907 Numerical Analysis +1701.06908 Materials Science +1701.06911 Analysis of PDEs +1701.06912 Fluid Dynamics +1701.06913 +1701.06914 Phenomenology +1701.06916 Phenomenology +1701.06917 Combinatorics +1701.06918 Soft Condensed Matter +1701.06919 Differential Geometry +1701.06920 Numerical Analysis +1701.06921 Materials Science +1701.06924 Logic in Computer Science +1701.06925 Statistical Mechanics +1701.06926 Statistics Theory +1701.06927 Information Theory +1701.06928 Instrumentation and Methods for Astrophysics +1701.06929 +1701.06930 Soft Condensed Matter +1701.06931 Populations and Evolution +1701.06932 Phenomenology +1701.06934 Soft Condensed Matter +1701.06935 Phenomenology +1701.06936 Rings and Algebras +1701.06937 Logic in Computer Science +1701.06939 Space Physics +1701.06940 Experiment +1701.06941 Lattice +1701.06942 +1701.06944 Computer Vision and Pattern Recognition +1701.06945 Solar and Stellar Astrophysics +1701.06946 Physics and Society +1701.06948 Astrophysics of Galaxies +1701.06949 Group Theory +1701.06951 Numerical Analysis +1701.06952 Methodology +1701.06953 Materials Science +1701.06954 Combinatorics +1701.06955 Probability +1701.06956 Phenomenology +1701.06957 +1701.06959 Probability +1701.06960 Information Theory +1701.06961 Space Physics +1701.06962 Soft Condensed Matter +1701.06963 +1701.06964 Fluid Dynamics +1701.06965 Statistical Mechanics +1701.06966 Mesoscale and Nanoscale Physics +1701.06967 Methodology +1701.06968 Physics and Society +1701.06969 Information Theory +1701.06970 Physics and Society +1701.06972 Artificial Intelligence +1701.06973 Optimization and Control +1701.06974 Classical Physics +1701.06976 Applications +1701.06979 Experiment +1701.06980 Mesoscale and Nanoscale Physics +1701.06981 Information Theory +1701.06983 Statistical Mechanics +1701.06984 Algebraic Geometry +1701.06985 Data Structures and Algorithms +1701.06986 Optics +1701.06987 Algebraic Topology +1701.06988 High Energy Astrophysical Phenomena +1701.06990 Mesoscale and Nanoscale Physics +1701.06991 Networking and Internet Architecture +1701.06992 Cosmology and Nongalactic Astrophysics +1701.06993 Atmospheric and Oceanic Physics +1701.06994 +1701.06996 Functional Analysis +1701.06997 Theory +1701.07000 Mesoscale and Nanoscale Physics +1701.07003 +1701.07004 Probability +1701.07005 Cosmology and Nongalactic Astrophysics +1701.07006 Astrophysics of Galaxies +1701.07007 Information Theory +1701.07008 Phenomenology +1701.07009 Combinatorics +1701.07011 Methodology +1701.07012 Cosmology and Nongalactic Astrophysics +astro-ph/0105488 +astro-ph/0106437 +astro-ph/0107434 +astro-ph/0108161 +astro-ph/0110616 +astro-ph/0212288 +astro-ph/0402186 +gr-qc/0112077 +hep-lat/9909103 Lattice +hep-th/0212160 Theory +hep-th/0303143 Theory +math/0302170 Quantum Algebra +nlin/0511059 Chaotic Dynamics +nucl-th/0307111 +nucl-th/0308047 +nucl-th/0309003 +nucl-th/0311106 +nucl-th/0312022 +1002.0673 Group Theory +1101.1392 Group Theory +1103.1058 Cosmology and Nongalactic Astrophysics +1109.2750 Algebraic Geometry +1109.4244 Computational Physics +1110.1612 Theory +1203.2937 Algebraic Geometry +1206.3773 Algebraic Geometry +1207.4822 Group Theory +1208.3111 Algebraic Geometry +1302.2836 +1302.5822 Algebraic Topology +1304.1939 Geometric Topology +1307.3008 Complex Variables +1307.5764 Differential Geometry +1307.6501 Statistics Theory +1308.1073 Functional Analysis +1308.4654 Cosmology and Nongalactic Astrophysics +1309.5945 Theory +1310.5097 +1311.0496 Superconductivity +1311.2376 Optimization and Control +1312.1269 Algebraic Topology +1403.1785 Theory +1403.8133 Combinatorics +1404.7043 Group Theory +1406.2830 +1407.0832 Number Theory +1411.0500 Algebraic Topology +1411.3260 Analysis of PDEs +1412.1261 Data Structures and Algorithms +1501.02351 Algebraic Topology +1501.07791 Quantum Gases +1502.05633 Probability +1503.00489 Statistics Theory +1503.02390 Statistics Theory +1503.05774 +1503.06317 Risk Management +1505.02114 Methodology +1506.02144 Dynamical Systems +1506.02916 Methodology +1506.03412 Learning +1506.03699 Algebraic Geometry +1506.07377 K-Theory and Homology +1507.00871 History and Overview +1507.02307 Analysis of PDEs +1507.06862 Combinatorics +1508.03537 Metric Geometry +1508.06875 Cosmology and Nongalactic Astrophysics +1509.08154 Algebraic Topology +1509.09109 +1510.00022 Theory +1510.00669 Category Theory +1510.02258 Representation Theory +1510.02421 Combinatorics +1510.04112 +1510.05198 Social and Information Networks +1510.07154 Algebraic Geometry +1510.08031 Symplectic Geometry +1511.01035 Combinatorics +1511.05297 Learning +1511.07670 +1512.01133 Group Theory +1512.03296 Geometric Topology +1512.04202 Machine Learning +1512.05053 Experiment +1512.06410 Number Theory +1512.06511 Number Theory +1512.07342 Numerical Analysis +1601.01467 Computer Vision and Pattern Recognition +1601.01890 Phenomenology +1601.03149 Complex Variables +1601.03655 Biological Physics +1601.04060 Complex Variables +1601.04779 Information Theory +1601.04789 Phenomenology +1601.07327 Analysis of PDEs +1602.00318 Dynamical Systems +1602.01921 Computer Vision and Pattern Recognition +1602.02270 Logic +1602.04667 Distributed, Parallel, and Cluster Computing +1602.05301 Numerical Analysis +1602.05833 Quantitative Methods +1602.06435 Algebraic Topology +1602.07683 +1603.01789 Biomolecules +1603.01879 Adaptation and Self-Organizing Systems +1603.02684 Strongly Correlated Electrons +1603.03484 Methodology +1603.04789 Physics and Society +1603.04928 Statistical Mechanics +1603.06907 Mathematical Software +1603.06984 +1603.09126 Strongly Correlated Electrons +1603.09241 Algebraic Geometry +1603.09294 Quantum Algebra +1604.00268 Neurons and Cognition +1604.03965 Number Theory +1604.04386 Atmospheric and Oceanic Physics +1604.08151 Strongly Correlated Electrons +1604.08381 Optimization and Control +1605.01177 Computer Vision and Pattern Recognition +1605.02977 Cell Behavior +1605.03985 Solar and Stellar Astrophysics +1605.04933 Number Theory +1605.05730 Theory +1605.06201 Learning +1605.07990 Social and Information Networks +1605.08092 Theory +1606.01588 Distributed, Parallel, and Cluster Computing +1606.03944 Differential Geometry +1606.04127 Quantum Gases +1606.04157 Data Structures and Algorithms +1606.05027 Machine Learning +1606.05501 Astrophysics of Galaxies +1606.05754 Phenomenology +1606.07151 +1606.08834 History and Overview +1607.00396 Differential Geometry +1607.02005 Information Theory +1607.02009 Information Theory +1607.02160 Phenomenology +1607.02436 Artificial Intelligence +1607.03388 +1607.04381 Computer Vision and Pattern Recognition +1607.06192 Optics +1607.06524 Mesoscale and Nanoscale Physics +1607.07192 Materials Science +1607.08714 Spectral Theory +1608.00134 Information Retrieval +1608.00353 Theory +1608.00514 Numerical Analysis +1608.00796 Databases +1608.02235 Social and Information Networks +1608.02486 General Mathematics +1608.02618 +1608.03160 Mesoscale and Nanoscale Physics +1608.03309 Optics +1608.03916 Quantum Gases +1608.04183 Number Theory +1608.04205 Phenomenology +1608.04722 +1608.05164 Materials Science +1608.06663 Methodology +1608.06858 +1608.06882 Lattice +1608.08046 +1608.08629 Cosmology and Nongalactic Astrophysics +1609.00153 Computer Vision and Pattern Recognition +1609.00782 Metric Geometry +1609.01501 Mesoscale and Nanoscale Physics +1609.01630 Number Theory +1609.02111 Atomic Physics +1609.02357 Geometric Topology +1609.02907 Learning +1609.03291 Chaotic Dynamics +1609.04144 +1609.05108 Methodology +1609.05291 Computational Physics +1609.05374 Learning +1609.06427 Quantitative Methods +1609.07532 Probability +1609.07734 Mesoscale and Nanoscale Physics +1609.08152 Atomic Physics +1609.08950 Complex Variables +1609.09461 +1609.09817 Quantum Gases +1610.00421 Quantum Gases +1610.00616 Fluid Dynamics +1610.01119 Computer Vision and Pattern Recognition +1610.01418 Disordered Systems and Neural Networks +1610.01526 Methodology +1610.02440 Biological Physics +1610.02833 Chemical Physics +1610.03829 Analysis of PDEs +1610.04277 +1610.05473 Mesoscale and Nanoscale Physics +1610.05832 Group Theory +1610.06532 +1610.06545 Machine Learning +1610.07958 Analysis of PDEs +1610.08336 Robotics +1610.08649 Metric Geometry +1610.08736 Classical Analysis and ODEs +1610.08878 Pricing of Securities +1610.09583 +1610.09729 Representation Theory +1610.09953 Phenomenology +1611.01655 Discrete Mathematics +1611.03246 Analysis of PDEs +1611.03534 Theory +1611.03915 Computer Vision and Pattern Recognition +1611.04264 Molecular Networks +1611.04307 Strongly Correlated Electrons +1611.05586 +1611.06594 Experiment +1611.06632 Computational Complexity +1611.06824 Learning +1611.07679 Strongly Correlated Electrons +1611.07780 Functional Analysis +1611.07987 Strongly Correlated Electrons +1611.08080 Materials Science +1611.08125 Theory +1611.08238 Superconductivity +1612.01805 Materials Science +1612.02611 Optics +1612.04112 Statistics Theory +1612.06383 High Energy Astrophysical Phenomena +1612.07433 Distributed, Parallel, and Cluster Computing +1612.07782 Phenomenology +1612.07894 Algebraic Geometry +1612.08566 Theory +1612.08626 Phenomenology +1701.01067 High Energy Astrophysical Phenomena +1701.02348 Theory +1701.02602 Number Theory +1701.02772 Dynamical Systems +1701.02976 Mesoscale and Nanoscale Physics +1701.03067 +1701.03106 Phenomenology +1701.03134 Solar and Stellar Astrophysics +1701.03148 Optimization and Control +1701.03681 Astrophysics of Galaxies +1701.04606 Representation Theory +1701.05027 Mesoscale and Nanoscale Physics +1701.05184 Instrumentation and Detectors +1701.05739 Software Engineering +1701.05950 Chemical Physics +1701.06048 Instrumentation and Methods for Astrophysics +1701.06361 High Energy Astrophysical Phenomena +1701.06547 Computation and Language +1701.07223 Cosmology and Nongalactic Astrophysics +1701.07295 Probability +1701.07320 Information Theory +1701.07570 Learning +1701.07812 Mesoscale and Nanoscale Physics +1701.07952 +1701.07958 Classical Analysis and ODEs +1701.08134 Phenomenology +1701.08722 +1701.08905 Fluid Dynamics +1702.00082 Strongly Correlated Electrons +1702.00654 Quantum Gases +1702.00874 +1702.00952 Strongly Correlated Electrons +1702.01828 Information Theory +1702.02001 Solar and Stellar Astrophysics +1702.02117 Phenomenology +1702.02181 Neural and Evolutionary Computing +1702.02253 Superconductivity +1702.02453 Learning +1702.02843 +1702.03068 Distributed, Parallel, and Cluster Computing +1702.03265 Disordered Systems and Neural Networks +1702.03370 +1702.03400 Distributed, Parallel, and Cluster Computing +1702.03475 Analysis of PDEs +1702.03504 Logic in Computer Science +1702.03961 Formal Languages and Automata Theory +1702.04032 Functional Analysis +1702.04055 Cryptography and Security +1702.04298 Disordered Systems and Neural Networks +1702.04308 Operator Algebras +1702.04712 Algebraic Geometry +1702.04814 Emerging Technologies +1702.05073 Logic in Computer Science +1702.05230 Analysis of PDEs +1702.05290 Information Theory +1702.05648 History and Philosophy of Physics +1702.05675 Mesoscale and Nanoscale Physics +1702.05743 Computer Vision and Pattern Recognition +1702.05820 Mesoscale and Nanoscale Physics +1702.05870 Learning +1702.05925 +1702.05999 Solar and Stellar Astrophysics +1702.06062 Computer Science and Game Theory +1702.06078 Solar and Stellar Astrophysics +1702.06087 Data Structures and Algorithms +1702.06089 Representation Theory +1702.06097 Phenomenology +1702.06101 Theory +1702.06134 Theory +1702.06137 Theory +1702.06141 +1702.06190 Dynamical Systems +1702.06224 Physics and Society +1702.06264 Computer Vision and Pattern Recognition +1702.06266 Combinatorics +1702.06276 General Mathematics +1702.06388 Category Theory +1702.06430 Theory +1702.06440 +1702.06517 Algebraic Geometry +1702.06530 +1702.06531 Networking and Internet Architecture +1702.06532 Instrumentation and Detectors +1702.06533 Learning +1702.06534 Chemical Physics +1702.06536 Operator Algebras +1702.06538 Neurons and Cognition +1702.06539 Theory +1702.06541 Astrophysics of Galaxies +1702.06542 Solar and Stellar Astrophysics +1702.06543 Theory +1702.06544 Astrophysics of Galaxies +1702.06546 Astrophysics of Galaxies +1702.06547 Instrumentation and Methods for Astrophysics +1702.06548 Data Structures and Algorithms +1702.06550 Strongly Correlated Electrons +1702.06551 Strongly Correlated Electrons +1702.06552 Cosmology and Nongalactic Astrophysics +1702.06553 Algebraic Geometry +1702.06554 Cryptography and Security +1702.06556 Logic +1702.06557 Systems and Control +1702.06559 Learning +1702.06562 Classical Physics +1702.06563 Dynamical Systems +1702.06564 Statistical Mechanics +1702.06565 Atomic Physics +1702.06566 Mesoscale and Nanoscale Physics +1702.06567 Differential Geometry +1702.06569 Information Theory +1702.06570 Methodology +1702.06571 Materials Science +1702.06572 Solar and Stellar Astrophysics +1702.06573 Probability +1702.06574 Dynamical Systems +1702.06575 Strongly Correlated Electrons +1702.06576 Systems and Control +1702.06580 Analysis of PDEs +1702.06581 Space Physics +1702.06582 High Energy Astrophysical Phenomena +1702.06583 Optics +1702.06584 Mesoscale and Nanoscale Physics +1702.06585 High Energy Astrophysical Phenomena +1702.06586 Logic +1702.06587 Logic +1702.06588 Phenomenology +1702.06589 Computation and Language +1702.06590 Algebraic Topology +1702.06591 +1702.06592 Physics Education +1702.06593 Data Analysis, Statistics and Probability +1702.06594 Computation and Language +1702.06595 Systems and Control +1702.06597 Physics Education +1702.06599 Instrumentation and Detectors +1702.06600 Instrumentation and Detectors +1702.06601 Classical Physics +1702.06602 Learning +1702.06603 Materials Science +1702.06604 Computational Physics +1702.06605 Functional Analysis +1702.06606 +1702.06610 Computers and Society +1702.06611 Number Theory +1702.06612 Combinatorics +1702.06613 Chemical Physics +1702.06614 Data Structures and Algorithms +1702.06615 Chemical Physics +1702.06616 Group Theory +1702.06617 +1702.06618 Group Theory +1702.06619 Computer Vision and Pattern Recognition +1702.06620 Logic in Computer Science +1702.06621 Experiment +1702.06622 Superconductivity +1702.06624 Biological Physics +1702.06625 Dynamical Systems +1702.06626 Optimization and Control +1702.06627 Astrophysics of Galaxies +1702.06628 Mesoscale and Nanoscale Physics +1702.06630 Algebraic Geometry +1702.06631 Differential Geometry +1702.06632 Computation +1702.06634 Phenomenology +1702.06635 Methodology +1702.06636 +1702.06637 High Energy Astrophysical Phenomena +1702.06638 Mesoscale and Nanoscale Physics +1702.06639 +1702.06640 Theory +1702.06641 +1702.06643 Cosmology and Nongalactic Astrophysics +1702.06645 Networking and Internet Architecture +1702.06646 Functional Analysis +1702.06647 Instrumentation and Methods for Astrophysics +1702.06648 Fluid Dynamics +1702.06649 Information Theory +1702.06650 Applications +1702.06651 Combinatorics +1702.06652 Instrumentation and Detectors +1702.06653 Accelerator Physics +1702.06654 Analysis of PDEs +1702.06655 Computational Physics +1702.06656 Materials Science +1702.06657 Theory +1702.06658 +1702.06659 Astrophysics of Galaxies +1702.06660 Solar and Stellar Astrophysics +1702.06661 Machine Learning +1702.06662 Artificial Intelligence +1702.06663 Computation and Language +1702.06666 Combinatorics +1702.06667 Functional Analysis +1702.06668 Medical Physics +1702.06669 Physics and Society +1702.06670 +1702.06671 Biological Physics +1702.06672 Computation and Language +1702.06674 Computer Vision and Pattern Recognition +1702.06675 Computation and Language +1702.06677 Computers and Society +1702.06678 Differential Geometry +1702.06679 Phenomenology +1702.06680 Robotics +1702.06682 Materials Science +1702.06684 Combinatorics +1702.06685 Strongly Correlated Electrons +1702.06686 Algebraic Geometry +1702.06687 Mesoscale and Nanoscale Physics +1702.06688 Differential Geometry +1702.06689 Software Engineering +1702.06690 Information Theory +1702.06691 Instrumentation and Detectors +1702.06692 Geometric Topology +1702.06693 +1702.06694 Solar and Stellar Astrophysics +1702.06695 Systems and Control +1702.06696 Computation and Language +1702.06697 Systems and Control +1702.06698 Formal Languages and Automata Theory +1702.06699 +1702.06700 Computer Vision and Pattern Recognition +1702.06701 Mesoscale and Nanoscale Physics +1702.06702 High Energy Astrophysical Phenomena +1702.06703 Computation and Language +1702.06704 Programming Languages +1702.06706 Mesoscale and Nanoscale Physics +1702.06707 Instrumentation and Detectors +1702.06709 Computation and Language +1702.06711 Combinatorics +1702.06712 Learning +1702.06714 Differential Geometry +1702.06715 Cryptography and Security +1702.06716 Algebraic Geometry +1702.06717 Strongly Correlated Electrons +1702.06718 Analysis of PDEs +1702.06719 +1702.06720 +1702.06722 Computer Vision and Pattern Recognition +1702.06723 Optimization and Control +1702.06725 Mesoscale and Nanoscale Physics +1702.06728 Multimedia +1702.06729 Disordered Systems and Neural Networks +1702.06730 Mesoscale and Nanoscale Physics +1702.06731 Phenomenology +1702.06733 Computation and Language +1702.06734 Rings and Algebras +1702.06735 Experiment +1702.06736 Analysis of PDEs +1702.06737 Analysis of PDEs +1702.06738 Analysis of PDEs +1702.06739 +1702.06741 Probability +1702.06742 Materials Science +1702.06743 Mesoscale and Nanoscale Physics +1702.06744 High Energy Astrophysical Phenomena +1702.06745 +1702.06746 Numerical Analysis +1702.06747 Probability +1702.06749 Probability +1702.06750 Plasma Physics +1702.06751 Optimization and Control +1702.06752 Algebraic Geometry +1702.06753 Materials Science +1702.06754 Classical Analysis and ODEs +1702.06756 Robotics +1702.06759 Analysis of PDEs +1702.06760 Learning +1702.06761 Geophysics +1702.06762 Learning +1702.06764 Cryptography and Security +1702.06765 Soft Condensed Matter +1702.06766 +1702.06767 Computer Vision and Pattern Recognition +1702.06769 Combinatorics +1702.06770 Optimization and Control +1702.06771 +1702.06772 Networking and Internet Architecture +1702.06773 Fluid Dynamics +1702.06774 Phenomenology +1702.06775 Algebraic Geometry +1702.06776 Learning +1702.06777 Computation and Language +1702.06778 Statistical Mechanics +1702.06779 High Energy Astrophysical Phenomena +1702.06780 Networking and Internet Architecture +1702.06781 Information Theory +1702.06782 Fluid Dynamics +1702.06783 Phenomenology +1702.06784 +1702.06785 Dynamical Systems +1702.06786 Biological Physics +1702.06787 Numerical Analysis +1702.06788 +1702.06789 Group Theory +1702.06790 Methodology +1702.06791 Probability +1702.06792 Analysis of PDEs +1702.06793 +1702.06794 Computation and Language +1702.06795 High Energy Astrophysical Phenomena +1702.06797 Astrophysics of Galaxies +1702.06798 Theory +1702.06799 Computer Vision and Pattern Recognition +1702.06800 Instrumentation and Methods for Astrophysics +1702.06801 Medical Physics +1702.06803 Networking and Internet Architecture +1702.06805 Software Engineering +1702.06806 Software Engineering +1702.06807 High Energy Astrophysical Phenomena +1702.06808 Solar and Stellar Astrophysics +1702.06809 Fluid Dynamics +1702.06811 +1702.06813 Computer Vision and Pattern Recognition +1702.06814 General Mathematics +1702.06815 Classical Physics +1702.06816 Combinatorics +1702.06818 Learning +1702.06819 Machine Learning +1702.06820 Social and Information Networks +1702.06821 Information Theory +1702.06822 Statistical Mechanics +1702.06823 +1702.06824 General Physics +1702.06825 +1702.06826 Complex Variables +1702.06828 Instrumentation and Methods for Astrophysics +1702.06831 Quantitative Methods +1702.06832 Machine Learning +1702.06833 +1702.06834 +1702.06835 +1702.06836 Phenomenology +1702.06838 Optimization and Control +1702.06839 +1702.06840 Analysis of PDEs +1702.06841 Statistical Mechanics +1702.06842 Mesoscale and Nanoscale Physics +1702.06843 Algebraic Topology +1702.06844 Computational Complexity +1702.06845 +1702.06846 Materials Science +1702.06847 +1702.06849 Representation Theory +1702.06850 Computer Vision and Pattern Recognition +1702.06851 Pattern Formation and Solitons +1702.06852 Chemical Physics +1702.06853 Optics +1702.06854 Chemical Physics +1702.06855 +1702.06857 Mesoscale and Nanoscale Physics +1702.06859 Analysis of PDEs +1702.06860 Metric Geometry +1702.06862 Optimization and Control +1702.06863 Numerical Analysis +1702.06864 Mesoscale and Nanoscale Physics +1702.06865 Lattice +1702.06866 Optimization and Control +1702.06867 Analysis of PDEs +1702.06868 High Energy Astrophysical Phenomena +1702.06869 Materials Science +1702.06870 Atmospheric and Oceanic Physics +1702.06871 Plasma Physics +1702.06872 Networking and Internet Architecture +1702.06873 Materials Science +1702.06874 Analysis of PDEs +1702.06875 Computation and Language +1702.06876 Commutative Algebra +1702.06878 Information Theory +1702.06879 Artificial Intelligence +1702.06880 Analysis of PDEs +1702.06881 Soft Condensed Matter +1702.06882 Strongly Correlated Electrons +1702.06883 Optics +1702.06884 History and Philosophy of Physics +1702.06885 Phenomenology +1702.06886 Numerical Analysis +1702.06888 +1702.06889 Mesoscale and Nanoscale Physics +1702.06891 Computation and Language +1702.06892 Theory +1702.06893 Instrumentation and Methods for Astrophysics +1702.06894 Phenomenology +1702.06895 Fluid Dynamics +1702.06896 Soft Condensed Matter +1702.06897 Algebraic Topology +1702.06898 Mathematical Software +1702.06899 Machine Learning +1702.06900 Distributed, Parallel, and Cluster Computing +1702.06901 Information Theory +1702.06902 Systems and Control +1702.06904 Spectral Theory +1702.06905 Probability +1702.06906 Combinatorics +1702.06907 Combinatorics +1702.06908 Complex Variables +1702.06909 Combinatorics +1702.06910 Phenomenology +1702.06911 Strongly Correlated Electrons +1702.06913 Statistical Finance +1702.06916 Probability +1702.06917 Learning +1702.06919 Disordered Systems and Neural Networks +1702.06921 Social and Information Networks +1702.06922 Optimization and Control +1702.06923 Group Theory +1702.06924 Solar and Stellar Astrophysics +1702.06926 Group Theory +1702.06927 Theory +1702.06930 Quantum Algebra +1702.06931 Statistical Mechanics +1702.06933 +1702.06934 Artificial Intelligence +1702.06935 Theory +1702.06937 Probability +1702.06938 Algebraic Geometry +1702.06939 Cell Behavior +1702.06940 Solar and Stellar Astrophysics +1702.06941 Learning +1702.06942 Instrumentation and Detectors +math-ph/0211001 +quant-ph/0210164 +quant-ph/0511227 +0707.2334 +0808.2785 Algebraic Geometry +0903.4625 Classical Analysis and ODEs +0903.4647 Probability +0905.2563 Probability +0908.4514 Phenomenology +0911.5377 Probability +1005.4636 +1012.0995 Combinatorics +1104.2919 Phenomenology +1106.3594 Probability +1108.4643 Theory +1111.0492 Combinatorics +1201.4960 Combinatorics +1203.3930 Probability +1205.6493 Probability +1207.1310 Geometric Topology +1209.3632 +1212.3913 Computer Vision and Pattern Recognition +1301.4624 General Topology +1302.3888 Number Theory +1304.3362 Neural and Evolutionary Computing +1304.3393 Neural and Evolutionary Computing +1304.6453 Algebraic Topology +1304.7751 Information Theory +1306.3674 Probability +1308.2520 Optimization and Control +1308.4182 Commutative Algebra +1309.0466 Geometric Topology +1309.7417 Commutative Algebra +1309.7757 Optimization and Control +1310.1583 Probability +1310.4330 Combinatorics +1310.7954 +1310.8439 Mesoscale and Nanoscale Physics +1311.3211 Neurons and Cognition +1311.6989 Representation Theory +1312.2240 Statistics Theory +1312.3210 +1312.6843 Probability +1401.7967 +1402.0382 +1402.1067 +1403.1601 Combinatorics +1403.5822 Probability +1406.5031 Pattern Formation and Solitons +1406.6680 Probability +1407.0576 Neural and Evolutionary Computing +1407.0577 Neural and Evolutionary Computing +1407.2467 Classical Analysis and ODEs +1407.5357 +1407.5863 Differential Geometry +1407.6230 +1408.6719 Metric Geometry +1409.2034 Probability +1409.2906 Disordered Systems and Neural Networks +1409.3344 Theory +1411.2644 Superconductivity +1411.2829 Phenomenology +1411.4218 Optimization and Control +1412.1193 Learning +1412.4045 Computational Finance +1412.5089 +1412.8461 Programming Languages +1501.00169 Dynamical Systems +1501.00433 Logic +1501.01681 Pattern Formation and Solitons +1501.05892 Information Theory +1502.01580 Combinatorics +1502.01646 Physics and Society +1502.01862 Algebraic Topology +1502.03862 Dynamical Systems +1503.00818 Geometric Topology +1503.00825 Analysis of PDEs +1503.01755 +1503.04989 Probability +1503.07760 Probability +1503.07887 Fluid Dynamics +1504.01713 Numerical Analysis +1504.02155 Dynamical Systems +1505.05673 Complex Variables +1505.05785 Probability +1505.07666 Numerical Analysis +1506.03756 +1506.05245 Space Physics +1506.08450 Statistics Theory +1507.01505 Classical Analysis and ODEs +1507.07811 General Physics +1508.00484 Algebraic Geometry +1508.01064 Spectral Theory +1508.01639 +1508.07175 Learning +1508.07926 Combinatorics +1509.01653 Information Theory +1509.02394 Complex Variables +1509.04489 Analysis of PDEs +1509.06174 Differential Geometry +1509.07298 Sound +1509.07564 +1509.07635 +1510.00365 Group Theory +1510.02295 Algebraic Geometry +1510.02510 Quantitative Methods +1510.02576 Complex Variables +1510.02906 Computer Vision and Pattern Recognition +1510.03243 +1510.03707 Dynamical Systems +1510.04100 Operator Algebras +1510.04573 +1510.05886 Discrete Mathematics +1510.07074 Statistics Theory +1510.07328 Computational Physics +1510.08250 Logic +1511.00423 Computer Vision and Pattern Recognition +1511.00652 Complex Variables +1511.03039 Information Theory +1511.04329 Numerical Analysis +1511.05522 Algebraic Topology +1511.06984 Computer Vision and Pattern Recognition +1511.08054 Metric Geometry +1511.09250 Software Engineering +1512.00511 Analysis of PDEs +1512.01141 +1512.01465 Information Theory +1512.01661 Strongly Correlated Electrons +1512.04504 Theory +1512.06679 Probability +1512.08410 Differential Geometry +1512.08590 Materials Science +1601.00909 Neurons and Cognition +1601.01178 Methodology +1601.02248 Differential Geometry +1601.06827 Analysis of PDEs +1602.00639 Information Theory +1602.04037 +1602.05123 +1602.06121 Analysis of PDEs +1602.06151 +1602.06323 Computational Complexity +1602.07359 Numerical Analysis +1602.08070 Portfolio Management +1602.08785 Materials Science +1603.00116 Theory +1603.00301 Strongly Correlated Electrons +1603.00727 Soft Condensed Matter +1603.00969 Theory +1603.03435 Strongly Correlated Electrons +1603.03944 Commutative Algebra +1603.03977 Learning +1603.05090 Geometric Topology +1603.05371 +1603.06272 Quantum Algebra +1604.00804 Analysis of PDEs +1604.01140 Optics +1604.01587 Instrumentation and Detectors +1604.02086 Logic in Computer Science +1604.03538 Plasma Physics +1604.04032 +1604.05590 Data Structures and Algorithms +1604.06552 Astrophysics of Galaxies +1604.06763 Performance +1604.06993 Information Theory +1605.01614 Analysis of PDEs +1605.01690 Information Theory +1605.01986 Optimization and Control +1605.02152 Information Theory +1605.02297 Rings and Algebras +1605.02666 Numerical Analysis +1605.02711 Learning +1605.03414 +1605.03884 Machine Learning +1605.03988 Number Theory +1605.03992 Computation +1605.04271 Logic in Computer Science +1605.06030 +1605.07095 +1605.07180 +1605.07868 Operator Algebras +1605.08734 +1605.09160 Functional Analysis +1606.00802 Neural and Evolutionary Computing +1606.01508 Atomic Physics +1606.01572 High Energy Astrophysical Phenomena +1606.01800 Information Theory +1606.01973 Combinatorics +1606.02005 Probability +1606.02187 Differential Geometry +1606.02551 Analysis of PDEs +1606.03867 +1606.06931 +1606.06935 Combinatorics +1606.07662 Combinatorics +1606.08456 Representation Theory +1606.08618 Disordered Systems and Neural Networks +1606.08756 +1606.09229 Pattern Formation and Solitons +1606.09419 Computation +1606.09435 Materials Science +1607.00460 Pattern Formation and Solitons +1607.01546 Phenomenology +1607.02242 Mesoscale and Nanoscale Physics +1607.02414 Operator Algebras +1607.02481 Physics and Society +1607.03471 Combinatorics +1607.03728 Quantum Algebra +1607.03977 Mesoscale and Nanoscale Physics +1607.04052 Neurons and Cognition +1607.04354 Geometric Topology +1607.05058 Phenomenology +1607.05674 Functional Analysis +1607.06473 +1607.06507 +1607.07679 Cosmology and Nongalactic Astrophysics +1607.08305 Theory +1607.08413 Classical Analysis and ODEs +1607.08492 Probability +1607.08530 Statistical Mechanics +1607.08897 Solar and Stellar Astrophysics +1608.00106 Soft Condensed Matter +1608.02097 Computation and Language +1608.02339 Cryptography and Security +1608.03225 Dynamical Systems +1608.03339 Learning +1608.03583 Quantitative Methods +1608.04079 Combinatorics +1608.05071 Optics +1608.05630 Theory +1608.06362 Mesoscale and Nanoscale Physics +1608.06543 +1608.06572 +1608.06864 Number Theory +1608.07173 Methodology +1608.08608 Materials Science +1608.08911 Biological Physics +1608.08995 Populations and Evolution +1609.00052 Astrophysics of Galaxies +1609.00312 Optics +1609.00691 Computation +1609.01193 Combinatorics +1609.01820 Statistical Mechanics +1609.02457 Numerical Analysis +1609.02510 Representation Theory +1609.02511 +1609.02743 Optimization and Control +1609.03093 Computer Vision and Pattern Recognition +1609.03599 +1609.04026 Phenomenology +1609.04258 Probability +1609.04777 Numerical Analysis +1609.05003 Social and Information Networks +1609.05007 +1609.05252 Information Theory +1609.05554 Statistical Mechanics +1609.05785 Solar and Stellar Astrophysics +1609.06519 Mesoscale and Nanoscale Physics +1609.06760 Representation Theory +1609.06965 Number Theory +1609.07353 +1609.07438 +1609.07769 Computer Vision and Pattern Recognition +1609.07916 Computer Vision and Pattern Recognition +1609.08071 Theory +1609.08249 Superconductivity +1609.08773 Mesoscale and Nanoscale Physics +1609.08795 Number Theory +1609.08803 Dynamical Systems +1609.08865 Quantum Gases +1609.08889 +1609.08911 Materials Science +1609.08960 Probability +1609.08962 Optimization and Control +1609.09043 Systems and Control +1609.09166 +1609.09269 Symbolic Computation +1609.09359 Cryptography and Security +1609.09612 Phenomenology +1609.09678 Phenomenology +1610.00026 Logic in Computer Science +1610.00187 Physics and Society +1610.00696 Learning +1610.00916 Astrophysics of Galaxies +1610.01932 Number Theory +1610.02017 Number Theory +1610.03224 Numerical Analysis +1610.03452 Social and Information Networks +1610.03500 Solar and Stellar Astrophysics +1610.03828 Neurons and Cognition +1610.04048 Number Theory +1610.04653 Earth and Planetary Astrophysics +1610.04819 Number Theory +1610.05062 Networking and Internet Architecture +1610.05146 Mesoscale and Nanoscale Physics +1610.05289 Mesoscale and Nanoscale Physics +1610.05297 Instrumentation and Detectors +1610.05544 Fluid Dynamics +1610.05672 Machine Learning +1610.06237 Discrete Mathematics +1610.06362 Logic in Computer Science +1610.06478 +1610.06534 Learning +1610.06686 Disordered Systems and Neural Networks +1610.06694 Cryptography and Security +1610.06805 Portfolio Management +1610.06819 Robotics +1610.06886 Neurons and Cognition +1610.07052 +1610.07161 Neurons and Cognition +1610.07181 Neurons and Cognition +1610.07264 +1610.07266 Theory +1610.07358 Mesoscale and Nanoscale Physics +1610.08067 Theory +1610.08846 Mesoscale and Nanoscale Physics +1610.08875 Materials Science +1610.09044 Cryptography and Security +1610.09691 Combinatorics +1610.09980 Mesoscale and Nanoscale Physics +1611.00003 Strongly Correlated Electrons +1611.00086 Strongly Correlated Electrons +1611.00343 Accelerator Physics +1611.00533 +1611.00604 +1611.00725 Phenomenology +1611.00726 +1611.00874 +1611.00943 +1611.01322 Cosmology and Nongalactic Astrophysics +1611.01462 Learning +1611.02232 High Energy Astrophysical Phenomena +1611.02750 Instrumentation and Detectors +1611.02828 Information Theory +1611.03089 Mesoscale and Nanoscale Physics +1611.03189 Numerical Analysis +1611.03688 +1611.04246 Computer Vision and Pattern Recognition +1611.04496 Computation and Language +1611.04878 Databases +1611.05211 Phenomenology +1611.05309 Algebraic Geometry +1611.05504 Solar and Stellar Astrophysics +1611.05811 Operator Algebras +1611.06463 Earth and Planetary Astrophysics +1611.06597 Superconductivity +1611.07072 +1611.07459 +1611.07830 Operator Algebras +1611.08186 Materials Science +1611.08517 Theory +1611.08616 Earth and Planetary Astrophysics +1611.08752 Discrete Mathematics +1611.09145 Phenomenology +1611.09375 Cosmology and Nongalactic Astrophysics +1611.09380 Theory +1612.00175 Numerical Analysis +1612.00281 Differential Geometry +1612.00690 Applications +1612.01082 Computer Vision and Pattern Recognition +1612.02187 Mesoscale and Nanoscale Physics +1612.02279 Probability +1612.02684 Multiagent Systems +1612.03405 +1612.03783 +1612.03798 Superconductivity +1612.04095 +1612.04150 Phenomenology +1612.04303 Superconductivity +1612.04309 +1612.04694 Optimization and Control +1612.04842 +1612.05155 +1612.05483 Physics and Society +1612.06116 Experiment +1612.06366 Cosmology and Nongalactic Astrophysics +1612.06492 Computation +1612.06561 +1612.07099 Analysis of PDEs +1612.07191 Materials Science +1612.07284 Classical Analysis and ODEs +1612.07325 Astrophysics of Galaxies +1612.07368 Plasma Physics +1612.07997 Mesoscale and Nanoscale Physics +1612.08024 +1612.08036 Computer Vision and Pattern Recognition +1612.08540 Fluid Dynamics +1612.09079 +1612.09163 Quantum Gases +1701.00486 +1701.00618 Materials Science +1701.00665 Rings and Algebras +1701.01116 +1701.01129 Number Theory +1701.02432 Strongly Correlated Electrons +1701.03039 Optics +1701.04360 +1701.04467 General Topology +1701.04561 Phenomenology +1701.05228 Machine Learning +1701.05569 +1701.06098 Rings and Algebras +1701.06272 +1701.06564 +1701.06623 Functional Analysis +1701.07717 Computer Vision and Pattern Recognition +1701.07755 +1701.08231 +1701.08660 +1701.08672 Phenomenology +1701.08884 Geophysics +1702.00079 Pattern Formation and Solitons +1702.00161 Pattern Formation and Solitons +1702.00546 Physics and Society +1702.01843 Symplectic Geometry +1702.02061 Physics and Society +1702.02697 +1702.02791 General Topology +1702.03042 Materials Science +1702.03062 Information Theory +1702.04112 Operator Algebras +1702.04457 Computation and Language +1702.04572 Analysis of PDEs +1702.04669 Instrumentation and Detectors +1702.05309 Information Theory +1702.05426 Dynamical Systems +1702.05450 +1702.05499 Social and Information Networks +1702.05563 Learning +1702.05612 Strongly Correlated Electrons +1702.05718 Multimedia +1702.05766 Statistical Mechanics +1702.05804 Superconductivity +1702.05876 Materials Science +1702.06146 Statistical Mechanics +1702.06466 Geometric Topology +1702.06568 Atmospheric and Oceanic Physics +1702.06633 Information Theory +1702.06727 Strongly Correlated Electrons +1702.06985 Classical Physics +1702.07334 Analysis of PDEs +1702.07644 Analysis of PDEs +1702.07743 +1702.07746 +1702.07751 Algebraic Topology +1702.07816 Materials Science +1702.07940 +1702.08033 Information Theory +1702.08218 Theory +1702.08230 Phenomenology +1702.08435 Systems and Control +1702.08556 Pattern Formation and Solitons +1702.08594 Classical Analysis and ODEs +1702.08787 Probability +1702.08853 Phenomenology +1702.08855 Phenomenology +1702.08882 Learning +1702.08896 Machine Learning +1703.00140 +1703.00180 Combinatorics +1703.00222 +1703.00305 +1703.00340 Networking and Internet Architecture +1703.00343 Phenomenology +1703.00391 Artificial Intelligence +1703.00408 Group Theory +1703.00410 Machine Learning +1703.00438 Algebraic Geometry +1703.00996 Numerical Analysis +1703.01056 Machine Learning +1703.01254 Phenomenology +1703.01307 Instrumentation and Methods for Astrophysics +1703.01415 +1703.01486 Statistical Mechanics +1703.01490 Optics +1703.01565 Physics Education +1703.01682 Phenomenology +1703.01736 Logic in Computer Science +1703.01743 Spectral Theory +1703.01808 Solar and Stellar Astrophysics +1703.01903 Classical Analysis and ODEs +1703.01944 Mesoscale and Nanoscale Physics +1703.02028 Classical Physics +1703.02029 +1703.02051 Strongly Correlated Electrons +1703.02073 +1703.02102 Machine Learning +1703.02173 Metric Geometry +1703.02208 Functional Analysis +1703.02307 Statistics Theory +1703.02325 Algebraic Geometry +1703.02328 Information Theory +1703.02337 Computation +1703.02379 Learning +1703.02389 History and Philosophy of Physics +1703.02435 Statistical Mechanics +1703.02466 Combinatorics +1703.02470 Theory +1703.02608 Pattern Formation and Solitons +1703.02704 Spectral Theory +1703.02757 Distributed, Parallel, and Cluster Computing +1703.02896 Chemical Physics +1703.02912 Optimization and Control +1703.03004 Computation +1703.03077 Differential Geometry +1703.03137 Fluid Dynamics +1703.03254 Artificial Intelligence +1703.03280 Complex Variables +1703.03307 +1703.03333 High Energy Astrophysical Phenomena +1703.03350 Superconductivity +1703.03396 Superconductivity +1703.03402 Theory +1703.03427 High Energy Astrophysical Phenomena +1703.03460 Mesoscale and Nanoscale Physics +1703.03473 Cryptography and Security +1703.03509 Information Theory +1703.03605 Operator Algebras +1703.03632 Algebraic Topology +1703.03633 Learning +1703.03637 Strongly Correlated Electrons +1703.03710 +1703.03737 Instrumentation and Detectors +1703.03748 Solar and Stellar Astrophysics +1703.03754 +1703.03802 High Energy Astrophysical Phenomena +1703.03803 Combinatorics +1703.03805 Astrophysics of Galaxies +1703.03806 Astrophysics of Galaxies +1703.03808 Astrophysics of Galaxies +1703.03809 Disordered Systems and Neural Networks +1703.03810 Astrophysics of Galaxies +1703.03811 Solar and Stellar Astrophysics +1703.03812 Theory +1703.03816 +1703.03817 Atomic Physics +1703.03818 +1703.03819 Phenomenology +1703.03820 +1703.03822 Mesoscale and Nanoscale Physics +1703.03823 Astrophysics of Galaxies +1703.03824 Strongly Correlated Electrons +1703.03828 +1703.03829 Materials Science +1703.03830 +1703.03831 Computers and Society +1703.03832 Phenomenology +1703.03833 Strongly Correlated Electrons +1703.03834 General Topology +1703.03835 Cryptography and Security +1703.03836 Strongly Correlated Electrons +1703.03837 Classical Analysis and ODEs +1703.03839 +1703.03840 +1703.03841 Numerical Analysis +1703.03842 Computation and Language +1703.03843 Complex Variables +1703.03844 Mesoscale and Nanoscale Physics +1703.03845 Numerical Analysis +1703.03846 Computer Science and Game Theory +1703.03847 Instrumentation and Methods for Astrophysics +1703.03848 Computer Vision and Pattern Recognition +1703.03849 Data Structures and Algorithms +1703.03850 Algebraic Geometry +1703.03851 Differential Geometry +1703.03852 Probability +1703.03853 Applications +1703.03855 Functional Analysis +1703.03856 Databases +1703.03857 Probability +1703.03858 Physics and Society +1703.03859 Machine Learning +1703.03860 +1703.03861 Information Retrieval +1703.03862 Applications +1703.03863 Machine Learning +1703.03864 Machine Learning +1703.03865 Chemical Physics +1703.03867 Computer Vision and Pattern Recognition +1703.03868 Artificial Intelligence +1703.03869 Learning +1703.03870 Medical Physics +1703.03871 +1703.03872 Computer Vision and Pattern Recognition +1703.03873 Space Physics +1703.03875 Phenomenology +1703.03876 Solar and Stellar Astrophysics +1703.03877 Strongly Correlated Electrons +1703.03878 Analysis of PDEs +1703.03879 Theory +1703.03880 Mesoscale and Nanoscale Physics +1703.03881 Strongly Correlated Electrons +1703.03882 Methodology +1703.03883 Functional Analysis +1703.03884 Superconductivity +1703.03885 High Energy Astrophysical Phenomena +1703.03886 Phenomenology +1703.03887 +1703.03888 Computer Vision and Pattern Recognition +1703.03889 Emerging Technologies +1703.03890 Analysis of PDEs +1703.03892 Software Engineering +1703.03893 Mesoscale and Nanoscale Physics +1703.03894 Astrophysics of Galaxies +1703.03895 Social and Information Networks +1703.03896 Combinatorics +1703.03897 Software Engineering +1703.03898 Optimization and Control +1703.03899 Representation Theory +1703.03900 Data Structures and Algorithms +1703.03901 Physics and Society +1703.03902 +1703.03903 +1703.03904 Distributed, Parallel, and Cluster Computing +1703.03907 Algebraic Geometry +1703.03908 Dynamical Systems +1703.03910 Quantum Gases +1703.03911 High Energy Astrophysical Phenomena +1703.03912 Computer Science and Game Theory +1703.03913 High Energy Astrophysical Phenomena +1703.03914 Probability +1703.03915 +1703.03916 Artificial Intelligence +1703.03917 Classical Analysis and ODEs +1703.03918 Number Theory +1703.03919 Instrumentation and Methods for Astrophysics +1703.03920 +1703.03921 Computer Vision and Pattern Recognition +1703.03922 Classical Analysis and ODEs +1703.03923 Information Retrieval +1703.03924 Distributed, Parallel, and Cluster Computing +1703.03925 Strongly Correlated Electrons +1703.03926 Biological Physics +1703.03927 Materials Science +1703.03928 Learning +1703.03929 Phenomenology +1703.03930 Computational Engineering, Finance, and Science +1703.03931 Mesoscale and Nanoscale Physics +1703.03932 General Mathematics +1703.03933 Artificial Intelligence +1703.03934 Classical Analysis and ODEs +1703.03935 Computers and Society +1703.03938 Classical Analysis and ODEs +1703.03939 Computation and Language +1703.03940 Robotics +1703.03941 Robotics +1703.03942 Materials Science +1703.03943 Physics and Society +1703.03944 Differential Geometry +1703.03945 Differential Geometry +1703.03946 Information Theory +1703.03948 Geometric Topology +1703.03951 +1703.03952 Phenomenology +1703.03953 Numerical Analysis +1703.03954 Analysis of PDEs +1703.03955 Combinatorics +1703.03956 Number Theory +1703.03957 Computer Vision and Pattern Recognition +1703.03958 +1703.03959 Phenomenology +1703.03960 Algebraic Topology +1703.03961 Number Theory +1703.03962 Commutative Algebra +1703.03963 Data Structures and Algorithms +1703.03964 Dynamical Systems +1703.03965 Statistics Theory +1703.03966 Optimization and Control +1703.03967 +1703.03968 Number Theory +1703.03969 +1703.03970 Quantum Algebra +1703.03971 +1703.03972 Materials Science +1703.03973 Combinatorics +1703.03974 Analysis of PDEs +1703.03975 Solar and Stellar Astrophysics +1703.03976 +1703.03977 Systems and Control +1703.03978 Mesoscale and Nanoscale Physics +1703.03979 Mesoscale and Nanoscale Physics +1703.03981 Numerical Analysis +1703.03982 Medical Physics +1703.03983 Dynamical Systems +1703.03984 Combinatorics +1703.03986 High Energy Astrophysical Phenomena +1703.03987 Algebraic Topology +1703.03988 Mesoscale and Nanoscale Physics +1703.03989 Information Theory +1703.03990 Algebraic Geometry +1703.03991 Algebraic Geometry +1703.03992 Algebraic Geometry +1703.03993 +1703.03994 Software Engineering +1703.03995 Experiment +1703.03996 Materials Science +1703.03997 Analysis of PDEs +1703.03998 Data Structures and Algorithms +1703.03999 Solar and Stellar Astrophysics +1703.04001 Computation and Language +1703.04002 +1703.04003 Medical Physics +1703.04004 Experiment +1703.04005 Chemical Physics +1703.04007 Mesoscale and Nanoscale Physics +1703.04008 Numerical Analysis +1703.04009 Computation and Language +1703.04011 Optics +1703.04012 Mesoscale and Nanoscale Physics +1703.04013 Materials Science +1703.04014 Mesoscale and Nanoscale Physics +1703.04015 Pattern Formation and Solitons +1703.04016 Analysis of PDEs +1703.04017 Physics and Society +1703.04018 Differential Geometry +1703.04019 Computer Vision and Pattern Recognition +1703.04020 Mesoscale and Nanoscale Physics +1703.04021 Superconductivity +1703.04022 Other Quantitative Biology +1703.04023 Cosmology and Nongalactic Astrophysics +1703.04024 Instrumentation and Detectors +1703.04025 Machine Learning +1703.04026 Probability +1703.04027 Solar and Stellar Astrophysics +1703.04028 Representation Theory +1703.04029 Medical Physics +1703.04032 Symplectic Geometry +1703.04033 Materials Science +1703.04034 Superconductivity +1703.04035 Systems and Control +1703.04036 Mathematical Software +1703.04037 Accelerator Physics +1703.04038 Soft Condensed Matter +1703.04039 +1703.04040 Computational Geometry +1703.04041 Theory +1703.04042 Materials Science +1703.04043 Phenomenology +1703.04044 Computer Vision and Pattern Recognition +1703.04045 Functional Analysis +1703.04046 Machine Learning +1703.04047 Computers and Society +1703.04048 Materials Science +1703.04049 Chemical Physics +1703.04050 Analysis of PDEs +1703.04051 Optimization and Control +1703.04052 +1703.04053 Analysis of PDEs +1703.04054 Symplectic Geometry +1703.04055 Rings and Algebras +1703.04056 Applications +1703.04057 Databases +1703.04058 Statistics Theory +1703.04059 High Energy Astrophysical Phenomena +1703.04060 Information Theory +1703.04061 Exactly Solvable and Integrable Systems +1703.04062 Computer Vision and Pattern Recognition +1703.04063 Combinatorics +1703.04064 Information Theory +1703.04066 Astrophysics of Galaxies +1703.04067 Analysis of PDEs +1703.04068 Fluid Dynamics +1703.04069 History and Overview +1703.04072 Information Theory +1703.04073 Phenomenology +1703.04074 Quantum Gases +1703.04076 Rings and Algebras +1703.04077 +1703.04078 Computer Vision and Pattern Recognition +1703.04079 Computer Vision and Pattern Recognition +1703.04081 Machine Learning +1703.04084 Materials Science +1703.04085 Dynamical Systems +1703.04086 Cryptography and Security +1703.04087 High Energy Astrophysical Phenomena +1703.04088 Computer Vision and Pattern Recognition +1703.04089 Algebraic Topology +1703.04090 Physics and Society +1703.04091 +1703.04092 Theory +1703.04093 Geometric Topology +1703.04094 +1703.04095 Computers and Society +1703.04097 Numerical Analysis +1703.04099 Analysis of PDEs +1703.04100 Materials Science +1703.04102 General Topology +1703.04104 Materials Science +1703.04106 Information Theory +1703.04107 Differential Geometry +1703.04108 Representation Theory +1703.04109 Dynamical Systems +1703.04110 Commutative Algebra +1703.04111 Computer Vision and Pattern Recognition +1703.04112 Strongly Correlated Electrons +1703.04113 Optimization and Control +1703.04114 Strongly Correlated Electrons +1703.04115 Artificial Intelligence +1703.04117 Disordered Systems and Neural Networks +1703.04118 Combinatorics +1703.04119 Metric Geometry +1703.04120 Combinatorics +1703.04121 Differential Geometry +1703.04122 Learning +1703.04124 Phenomenology +1703.04125 Analysis of PDEs +1703.04127 Strongly Correlated Electrons +1703.04128 +1703.04129 Materials Science +1703.04130 Superconductivity +1703.04131 +1703.04132 Superconductivity +1703.04133 Group Theory +1703.04134 Information Theory +1703.04135 Computer Vision and Pattern Recognition +1703.04136 +1703.04137 Statistical Mechanics +1703.04138 +1703.04139 Group Theory +1703.04140 Learning +1703.04141 Information Theory +1703.04142 Software Engineering +1703.04143 Computer Science and Game Theory +1703.04144 Classical Analysis and ODEs +1703.04145 Neurons and Cognition +1703.04147 Quantum Algebra +1703.04148 Theory +1703.04149 Cosmology and Nongalactic Astrophysics +1703.04150 Human-Computer Interaction +1703.04151 Cosmology and Nongalactic Astrophysics +1703.04153 Probability +1703.04154 Number Theory +1703.04155 Materials Science +1703.04156 Optimization and Control +1703.04157 Methodology +1703.04158 High Energy Astrophysical Phenomena +1703.04160 Geometric Topology +1703.04161 Soft Condensed Matter +1703.04162 Analysis of PDEs +1703.04163 +1703.04165 +1703.04166 Earth and Planetary Astrophysics +1703.04167 Commutative Algebra +1703.04168 Dynamical Systems +1703.04169 Logic +1703.04170 Learning +1703.04171 Distributed, Parallel, and Cluster Computing +1703.04173 Information Theory +1703.04174 Computers and Society +1703.04175 Mesoscale and Nanoscale Physics +1703.04176 Neurons and Cognition +1703.04177 Probability +1703.04179 Biological Physics +1703.04180 Methodology +1703.04181 Optimization and Control +1703.04183 Instrumentation and Methods for Astrophysics +1703.04185 Other Statistics +1703.04187 Numerical Analysis +1703.04188 Number Theory +1703.04189 Cosmology and Nongalactic Astrophysics +1703.04191 Cosmology and Nongalactic Astrophysics +1703.04192 Networking and Internet Architecture +1703.04193 Number Theory +1703.04194 Biological Physics +1703.04195 Soft Condensed Matter +1703.04196 Computers and Society +1703.04198 Complex Variables +1703.04199 Algebraic Geometry +1703.04200 Learning +1703.04201 Soft Condensed Matter +1703.04202 Theory +1703.04204 Superconductivity +1703.04205 +1703.04206 Databases +1703.04207 Commutative Algebra +1703.04208 Analysis of PDEs +1703.04209 Information Theory +1703.04211 Robotics +1703.04212 Materials Science +1703.04214 High Energy Astrophysical Phenomena +1703.04217 Mesoscale and Nanoscale Physics +1703.04218 Analysis of PDEs +1703.04219 Learning +1703.04220 Mesoscale and Nanoscale Physics +1703.04221 Distributed, Parallel, and Cluster Computing +1703.04222 Digital Libraries +1703.04223 Strongly Correlated Electrons +1703.04224 High Energy Astrophysical Phenomena +1703.04225 Computer Science and Game Theory +1703.04227 Earth and Planetary Astrophysics +1703.04230 Data Structures and Algorithms +1703.04231 Mesoscale and Nanoscale Physics +1703.04232 Artificial Intelligence +1703.04233 Mesoscale and Nanoscale Physics +1703.04234 History and Philosophy of Physics +1703.04236 Disordered Systems and Neural Networks +1703.04237 Populations and Evolution +1703.04238 Populations and Evolution +1703.04240 +1703.04241 Mesoscale and Nanoscale Physics +1703.04242 Materials Science +1703.04243 Numerical Analysis +1703.04244 Computer Vision and Pattern Recognition +1703.04245 +1703.04246 Pattern Formation and Solitons +1703.04247 Information Retrieval +1703.04248 Number Theory +1703.04249 Materials Science +1703.04250 Atomic Physics +1703.04252 Materials Science +1703.04253 +1703.04254 Operator Algebras +1703.04255 Strongly Correlated Electrons +1703.04256 Operator Algebras +1703.04257 Differential Geometry +1703.04258 Solar and Stellar Astrophysics +1703.04259 Instrumentation and Methods for Astrophysics +1703.04260 +1703.04261 Phenomenology +1703.04263 Biomolecules +1703.04264 Computer Vision and Pattern Recognition +1703.04265 Learning +1703.04267 Disordered Systems and Neural Networks +1703.04269 Number Theory +1703.04270 Materials Science +1703.04271 +1703.04272 Group Theory +1703.04273 Combinatorics +1703.04274 Learning +1703.04275 Combinatorics +1703.04276 Dynamical Systems +1703.04277 Software Engineering +1703.04278 +1703.04280 Social and Information Networks +1703.04281 Formal Languages and Automata Theory +1703.04282 Numerical Analysis +1703.04283 Computational Geometry +1703.04284 Chaotic Dynamics +1703.04285 +1703.04287 Number Theory +1703.04288 Statistical Mechanics +1703.04289 Analysis of PDEs +1703.04290 Databases +1703.04291 Superconductivity +1703.04292 Functional Analysis +1703.04293 Strongly Correlated Electrons +1703.04294 Materials Science +1703.04295 Mesoscale and Nanoscale Physics +1703.04296 Earth and Planetary Astrophysics +1703.04297 Quantum Gases +1703.04298 Software Engineering +1703.04299 Theory +1703.04300 Computational Complexity +1703.04301 Computer Vision and Pattern Recognition +1703.04302 Dynamical Systems +1703.04303 Software Engineering +1703.04304 Solar and Stellar Astrophysics +1703.04305 Statistical Mechanics +1703.04306 Mesoscale and Nanoscale Physics +1703.04308 +1703.04309 Computer Vision and Pattern Recognition +1703.04310 Astrophysics of Galaxies +1703.04311 Optics +1703.04312 Applications +1703.04313 Differential Geometry +1703.04314 Theory +1703.04315 Strongly Correlated Electrons +1703.04316 Robotics +1703.04317 Phenomenology +1703.04318 Learning +1703.04319 +1703.04320 Statistics Theory +1703.04321 Astrophysics of Galaxies +1703.04322 High Energy Astrophysical Phenomena +1703.04323 Solar and Stellar Astrophysics +1703.04324 Analysis of PDEs +1703.04325 +1703.04326 Functional Analysis +1703.04328 Analysis of PDEs +1703.04329 Computational Geometry +1703.04330 Computation and Language +1703.04331 Strongly Correlated Electrons +1703.04332 Computer Vision and Pattern Recognition +1703.04333 Phenomenology +1703.04334 Methodology +1703.04335 Machine Learning +1703.04336 Information Retrieval +1703.04337 Materials Science +1703.04339 Geometric Topology +1703.04340 Differential Geometry +1703.04341 Applications +1703.04342 Populations and Evolution +1703.04343 Medical Physics +1703.04345 Algebraic Topology +1703.04347 Computer Vision and Pattern Recognition +1703.04348 +1703.04349 Information Theory +1703.04350 Probability +1703.04351 High Energy Astrophysical Phenomena +1703.04352 Optics +1703.04353 Analysis of PDEs +1703.04354 Atmospheric and Oceanic Physics +1703.04355 Computational Engineering, Finance, and Science +1703.04357 Computation and Language +1703.04358 Earth and Planetary Astrophysics +1703.04359 Statistical Mechanics +1703.04360 Phenomenology +1703.04361 Artificial Intelligence +1703.04362 Experiment +1703.04363 Learning +1703.04364 Computer Vision and Pattern Recognition +1703.04365 Representation Theory +1703.04366 Superconductivity +1703.04367 Logic in Computer Science +1703.04368 Artificial Intelligence +1703.04370 Analysis of PDEs +1703.04371 Dynamical Systems +1703.04372 Software Engineering +1703.04374 Information Theory +1703.04375 Cosmology and Nongalactic Astrophysics +1703.04376 Analysis of PDEs +1703.04377 Numerical Analysis +1703.04378 Optics +1703.04379 Learning +1703.04380 +1703.04381 Data Structures and Algorithms +1703.04382 Artificial Intelligence +1703.04383 Adaptation and Self-Organizing Systems +1703.04384 Instrumentation and Methods for Astrophysics +1703.04385 Mathematical Finance +1703.04386 Statistical Mechanics +1703.04388 Superconductivity +1703.04389 Machine Learning +1703.04390 Combinatorics +1703.04392 Computer Vision and Pattern Recognition +1703.04393 Computer Vision and Pattern Recognition +1703.04394 Computer Vision and Pattern Recognition +1703.04395 Biological Physics +1703.04396 Lattice +1703.04398 Disordered Systems and Neural Networks +1703.04399 Information Theory +1703.04400 Chemical Physics +1703.04402 Theory +1703.04403 Theory +1703.04404 Superconductivity +1703.04405 Functional Analysis +1703.04406 Lattice +1703.04409 Superconductivity +1703.04410 Combinatorics +1703.04411 Differential Geometry +1703.04412 Solar and Stellar Astrophysics +1703.04413 Dynamical Systems +1703.04414 Information Theory +1703.04415 Phenomenology +1703.04416 Computer Vision and Pattern Recognition +1703.04417 Computation and Language +1703.04418 Computer Vision and Pattern Recognition +1703.04419 Statistics Theory +1703.04420 Analysis of PDEs +1703.04421 Computer Vision and Pattern Recognition +1703.04422 Complex Variables +1703.04423 Portfolio Management +1703.04424 Number Theory +1703.04425 +1703.04426 +1703.04427 Combinatorics +1703.04428 Digital Libraries +1703.04429 Logic in Computer Science +1703.04430 Strongly Correlated Electrons +1703.04431 Algebraic Geometry +1703.04432 Earth and Planetary Astrophysics +1703.04433 High Energy Astrophysical Phenomena +1703.04434 Phenomenology +1703.04435 Mesoscale and Nanoscale Physics +1703.04436 Classical Analysis and ODEs +1703.04437 Optimization and Control +1703.04438 Phenomenology +1703.04439 Phenomenology +1703.04440 Numerical Analysis +1703.04441 +1703.04442 Superconductivity +1703.04443 Strongly Correlated Electrons +1703.04444 Optics +1703.04445 Networking and Internet Architecture +1703.04447 Differential Geometry +1703.04448 Plasma Physics +1703.04449 High Energy Astrophysical Phenomena +1703.04450 Rings and Algebras +1703.04451 Fluid Dynamics +1703.04453 Numerical Analysis +1703.04454 Computer Vision and Pattern Recognition +1703.04455 Machine Learning +1703.04456 Computational Complexity +1703.04457 Phenomenology +1703.04459 Numerical Analysis +1703.04461 Probability +1703.04462 +1703.04463 Mesoscale and Nanoscale Physics +1703.04464 Information Theory +1703.04466 Computational Geometry +1703.04468 Atomic and Molecular Clusters +1703.04469 Astrophysics of Galaxies +1703.04470 Algebraic Geometry +1703.04471 Phenomenology +1703.04472 +1703.04473 Astrophysics of Galaxies +1703.04474 Computation and Language +1703.04475 Algebraic Geometry +1703.04476 +1703.04478 Digital Libraries +1703.04479 +1703.04480 Pattern Formation and Solitons +1703.04481 Computation and Language +1703.04483 +1703.04484 Algebraic Geometry +1703.04485 Analysis of PDEs +1703.04487 Quantum Algebra +1703.04488 Solar and Stellar Astrophysics +1703.04489 Computation and Language +1703.04490 High Energy Astrophysical Phenomena +1703.04491 Systems and Control +1703.04492 Strongly Correlated Electrons +1703.04493 Mesoscale and Nanoscale Physics +1703.04495 +1703.04496 Neural and Evolutionary Computing +1703.04497 Materials Science +1703.04498 Information Retrieval +1703.04499 Probability +1703.04500 Neurons and Cognition +1703.04501 +1703.04502 Networking and Internet Architecture +1703.04503 Algebraic Geometry +1703.04504 Soft Condensed Matter +1703.04505 Metric Geometry +1703.04506 Strongly Correlated Electrons +1703.04507 Optimization and Control +1703.04508 Combinatorics +1703.04509 Astrophysics of Galaxies +1703.04510 Classical Analysis and ODEs +1703.04511 +1703.04512 Computers and Society +1703.04513 High Energy Astrophysical Phenomena +1703.04514 Computers and Society +1703.04516 Commutative Algebra +1703.04517 Statistics Theory +1703.04518 Computers and Society +1703.04519 Computers and Society +1703.04520 Algebraic Geometry +1703.04521 Strongly Correlated Electrons +1703.04523 Computers and Society +1703.04524 Computers and Society +1703.04525 Computers and Society +1703.04526 Computers and Society +1703.04527 Materials Science +1703.04528 High Energy Astrophysical Phenomena +1703.04529 Learning +1703.04530 Commutative Algebra +1703.04531 Mesoscale and Nanoscale Physics +math/0611886 Probability +physics/0505010 General Physics +1010.2642 Phenomenology +1102.0180 Differential Geometry +1108.2366 Differential Geometry +1111.4812 +1112.0759 Differential Geometry +1207.2132 Metric Geometry +1210.8449 Exactly Solvable and Integrable Systems +1211.4160 Complex Variables +1212.5287 Probability +1212.5499 History and Philosophy of Physics +1302.4152 Lattice +1309.3807 Group Theory +1312.4518 Theory +1402.1484 Computational Geometry +1402.3056 Probability +1406.5275 Analysis of PDEs +1407.5494 Differential Geometry +1411.1292 Computation +1502.05316 Statistical Mechanics +1503.01433 Group Theory +1503.03860 Number Theory +1503.08029 History and Philosophy of Physics +1504.00615 Complex Variables +1504.01283 Combinatorics +1504.03939 Algebraic Geometry +1506.00522 Number Theory +1506.05548 +1506.06065 +1506.09024 Cosmology and Nongalactic Astrophysics +1508.05984 Probability +1509.00541 Functional Analysis +1509.07268 Algebraic Geometry +1510.02374 Discrete Mathematics +1510.04284 Phenomenology +1510.06704 General Physics +1510.06974 +1510.08018 Information Theory +1511.04420 +1511.07919 Theory +1511.08520 Group Theory +1512.01999 Probability +1512.03267 Optimization and Control +1512.03364 Phenomenology +1512.03440 Computer Science and Game Theory +1512.06284 +1601.03193 Classical Analysis and ODEs +1602.00220 Analysis of PDEs +1602.01975 Astrophysics of Galaxies +1602.03468 Computer Vision and Pattern Recognition +1602.05070 Mesoscale and Nanoscale Physics +1602.05971 Theory +1602.07795 Information Theory +1603.01437 +1603.04987 Geometric Topology +1603.06360 High Energy Astrophysical Phenomena +1603.08838 Dynamical Systems +1603.09071 Statistics Theory +1603.09621 Phenomenology +1604.01121 Classical Physics +1604.01838 Algebraic Geometry +1604.02196 Logic +1604.02831 +1604.03582 Optimization and Control +1604.03597 Optics +1604.05283 Soft Condensed Matter +1604.05775 Disordered Systems and Neural Networks +1604.06160 Optics +1605.00038 Operator Algebras +1605.01639 Molecular Networks +1605.02312 +1605.03240 +1605.03439 +1605.04086 Numerical Analysis +1605.05640 Optimization and Control +1605.07246 Learning +1605.07748 +1605.07837 Representation Theory +1605.08166 Economics +1605.08762 Numerical Analysis +1605.09462 Optimization and Control +1605.09522 Machine Learning +1606.00151 Computer Vision and Pattern Recognition +1606.00854 +1606.03497 Geometric Topology +1606.03572 Cryptography and Security +1606.03637 +1606.05163 Phenomenology +1606.05972 Mesoscale and Nanoscale Physics +1606.06171 Superconductivity +1606.07083 Theory +1606.07316 Cosmology and Nongalactic Astrophysics +1606.07805 Instrumentation and Detectors +1606.08228 Statistical Mechanics +1607.00270 Cosmology and Nongalactic Astrophysics +1607.00679 Fluid Dynamics +1607.00805 Numerical Analysis +1607.03046 Combinatorics +1607.04617 +1607.06169 +1607.06943 Experiment +1607.07376 Strongly Correlated Electrons +1607.07786 Theory +1607.07978 General Topology +1607.08577 Statistical Mechanics +1607.08842 Experiment +1608.01297 Algebraic Topology +1608.01758 Functional Analysis +1608.02374 +1608.02994 High Energy Astrophysical Phenomena +1608.03404 Materials Science +1608.04169 Mesoscale and Nanoscale Physics +1608.05784 Phenomenology +1608.07100 Commutative Algebra +1608.07434 +1608.07464 Analysis of PDEs +1608.08331 Social and Information Networks +1608.08607 Neural and Evolutionary Computing +1609.00020 Strongly Correlated Electrons +1609.00797 Phenomenology +1609.01174 Mesoscale and Nanoscale Physics +1609.01629 Theory +1609.02068 Spectral Theory +1609.02366 Instrumentation and Detectors +1609.03528 Computation and Language +1609.03975 Phenomenology +1609.04166 Optics +1609.04533 Superconductivity +1609.05239 Materials Science +1609.05354 Digital Libraries +1609.05372 Computation +1609.05935 Computation and Language +1609.06314 Mesoscale and Nanoscale Physics +1609.06803 +1609.07164 +1609.07282 Mesoscale and Nanoscale Physics +1609.07454 Complex Variables +1609.07763 Dynamical Systems +1609.08119 Quantum Gases +1609.08944 Chemical Physics +1609.09209 Chemical Physics +1610.00670 Quantum Gases +1610.01355 Lattice +1610.02267 Strongly Correlated Electrons +1610.02467 Theory +1610.02726 Solar and Stellar Astrophysics +1610.03760 Materials Science +1610.04022 Commutative Algebra +1610.05261 Numerical Analysis +1610.05589 Probability +1610.05812 Computation and Language +1610.06233 Mesoscale and Nanoscale Physics +1610.06420 Mesoscale and Nanoscale Physics +1610.06569 Astrophysics of Galaxies +1610.06757 +1610.08890 Physics and Society +1610.09302 +1610.09527 +1610.09784 Probability +1611.00068 Computation and Language +1611.00110 Molecular Networks +1611.00241 Instrumentation and Detectors +1611.00792 +1611.01345 Phenomenology +1611.01923 Materials Science +1611.03193 Applications +1611.03659 Solar and Stellar Astrophysics +1611.03678 Mesoscale and Nanoscale Physics +1611.04410 Differential Geometry +1611.04873 Strongly Correlated Electrons +1611.05021 +1611.05426 Materials Science +1611.06189 Data Structures and Algorithms +1611.06270 Theory +1611.07450 Machine Learning +1612.00448 Astrophysics of Galaxies +1612.00796 Learning +1612.00973 Analysis of PDEs +1612.00990 Mesoscale and Nanoscale Physics +1612.01133 Information Theory +1612.01389 Solar and Stellar Astrophysics +1612.01725 Computer Vision and Pattern Recognition +1612.02650 Classical Analysis and ODEs +1612.03070 Optics +1612.03185 High Energy Astrophysical Phenomena +1612.03503 Statistical Mechanics +1612.03788 Information Theory +1612.04252 Theory +1612.06744 Astrophysics of Galaxies +1612.07789 Phenomenology +1612.09359 Number Theory +1701.00359 Theory +1701.00578 Physics and Society +1701.01598 Probability +1701.01987 Strongly Correlated Electrons +1701.02497 Soft Condensed Matter +1701.02514 Robotics +1701.02563 Probability +1701.02818 Numerical Analysis +1701.03402 Mesoscale and Nanoscale Physics +1701.03467 Astrophysics of Galaxies +1701.03607 Information Theory +1701.03706 Theory +1701.03975 +1701.04128 Computer Vision and Pattern Recognition +1701.04246 Complex Variables +1701.04333 Materials Science +1701.04732 +1701.04820 Instrumentation and Detectors +1701.04873 Information Theory +1701.04921 Statistics Theory +1701.04933 Functional Analysis +1701.04952 Phenomenology +1701.04971 Information Theory +1701.05025 Differential Geometry +1701.05068 Soft Condensed Matter +1701.05072 Phenomenology +1701.05077 Phenomenology +1701.05113 Dynamical Systems +1701.05117 Differential Geometry +1701.05456 Phenomenology +1701.05634 Strongly Correlated Electrons +1701.05907 Plasma Physics +1701.06108 Materials Science +1701.06174 Information Theory +1701.06205 +1701.06270 Human-Computer Interaction +1701.06274 Representation Theory +1701.06455 Methodology +1701.06528 Numerical Analysis +1701.06566 Phenomenology +1701.06568 Solar and Stellar Astrophysics +1701.06671 +1701.06673 Information Theory +1701.06686 Methodology +1701.06867 History and Philosophy of Physics +1701.06903 Astrophysics of Galaxies +1701.06933 +1701.06958 Solar and Stellar Astrophysics +1701.07002 High Energy Astrophysical Phenomena +1701.07010 Methodology +1701.07013 Algebraic Geometry +1701.07014 Commutative Algebra +1701.07015 Astrophysics of Galaxies +1701.07016 Combinatorics +1701.07017 Medical Physics +1701.07018 Numerical Analysis +1701.07019 Instrumentation and Methods for Astrophysics +1701.07020 General Mathematics +1701.07021 Applications +1701.07022 Instrumentation and Detectors +1701.07024 Combinatorics +1701.07027 High Energy Astrophysical Phenomena +1701.07028 Astrophysics of Galaxies +1701.07029 High Energy Astrophysical Phenomena +1701.07032 High Energy Astrophysical Phenomena +1701.07034 Astrophysics of Galaxies +1701.07035 +1701.07038 High Energy Astrophysical Phenomena +1701.07039 Cosmology and Nongalactic Astrophysics +1701.07040 +1701.07042 Classical Analysis and ODEs +1701.07044 +1701.07045 Classical Analysis and ODEs +1701.07046 Computer Vision and Pattern Recognition +1701.07047 Phenomenology +1701.07048 +1701.07049 Mesoscale and Nanoscale Physics +1701.07050 Methodology +1701.07051 Combinatorics +1701.07052 Theory +1701.07054 Astrophysics of Galaxies +1701.07055 Materials Science +1701.07056 Strongly Correlated Electrons +1701.07057 Astrophysics of Galaxies +1701.07060 Representation Theory +1701.07061 Neurons and Cognition +1701.07062 Instrumentation and Methods for Astrophysics +1701.07064 Number Theory +1701.07065 +1701.07067 Materials Science +1701.07068 Phenomenology +1701.07070 Soft Condensed Matter +1701.07071 Soft Condensed Matter +1701.07072 +1701.07073 High Energy Astrophysical Phenomena +1701.07074 Number Theory +1701.07075 Cryptography and Security +1701.07076 +1701.07077 Combinatorics +1701.07078 Methodology +1701.07079 Algebraic Geometry +1701.07080 Mesoscale and Nanoscale Physics +1701.07081 Strongly Correlated Electrons +1701.07082 Number Theory +1701.07085 Analysis of PDEs +1701.07086 Methodology +1701.07087 Materials Science +1701.07090 Rings and Algebras +1701.07091 Instrumentation and Methods for Astrophysics +1701.07093 Fluid Dynamics +1701.07094 Dynamical Systems +1701.07095 Other Computer Science +1701.07096 Computer Science and Game Theory +1701.07097 Representation Theory +1701.07098 Information Theory +1701.07099 Information Theory +1701.07100 Tissues and Organs +1701.07101 Discrete Mathematics +1701.07102 Fluid Dynamics +1701.07103 Artificial Intelligence +1701.07104 +1701.07105 Soft Condensed Matter +1701.07106 Networking and Internet Architecture +1701.07107 Mesoscale and Nanoscale Physics +1701.07108 Instrumentation and Methods for Astrophysics +1701.07110 Graphics +1701.07111 Information Theory +1701.07112 Information Theory +1701.07114 Learning +1701.07115 Information Theory +1701.07118 Information Theory +1701.07119 Number Theory +1701.07121 Phenomenology +1701.07122 Computer Vision and Pattern Recognition +1701.07123 Programming Languages +1701.07125 Programming Languages +1701.07126 Logic in Computer Science +1701.07127 Logic in Computer Science +1701.07128 Biological Physics +1701.07129 Astrophysics of Galaxies +1701.07130 Commutative Algebra +1701.07131 Dynamical Systems +1701.07133 Fluid Dynamics +1701.07135 Optics +1701.07136 High Energy Astrophysical Phenomena +1701.07137 Commutative Algebra +1701.07139 Lattice +1701.07140 Theory +1701.07141 Rings and Algebras +1701.07143 Phenomenology +1701.07145 +1701.07146 Optimization and Control +1701.07147 Materials Science +1701.07148 Learning +1701.07149 Computation and Language +1701.07150 Solar and Stellar Astrophysics +1701.07151 Geometric Topology +1701.07152 Applications +1701.07153 Networking and Internet Architecture +1701.07155 Combinatorics +1701.07157 Combinatorics +1701.07158 Numerical Analysis +1701.07159 Experiment +1701.07160 Astrophysics of Galaxies +1701.07162 Combinatorics +1701.07163 +1701.07164 Computer Vision and Pattern Recognition +1701.07165 Instrumentation and Methods for Astrophysics +1701.07166 Distributed, Parallel, and Cluster Computing +1701.07167 Fluid Dynamics +1701.07168 Information Theory +1701.07172 Cryptography and Security +1701.07173 Phenomenology +1701.07174 Computer Vision and Pattern Recognition +1701.07175 Statistical Finance +1701.07177 Lattice +1701.07178 Optics +1701.07183 Operator Algebras +1701.07184 Information Theory +1701.07185 Rings and Algebras +1701.07186 Functional Analysis +1701.07187 Materials Science +1701.07188 Statistical Mechanics +1701.07190 Other Condensed Matter +1701.07192 Rings and Algebras +1701.07193 Computers and Society +1701.07194 Machine Learning +1701.07195 Statistics Theory +1701.07196 Combinatorics +1701.07199 Differential Geometry +1701.07200 Astrophysics of Galaxies +1701.07203 Applications +1701.07205 Other Condensed Matter +1701.07206 Information Theory +1701.07207 Rings and Algebras +1701.07208 Data Structures and Algorithms +1701.07209 Phenomenology +1701.07211 Differential Geometry +1701.07213 Machine Learning +1701.07214 Classical Analysis and ODEs +1701.07216 Combinatorics +1701.07217 Combinatorics +1701.07218 Mathematical Finance +1701.07220 Strongly Correlated Electrons +1701.07221 Social and Information Networks +1701.07222 Materials Science +1701.07224 Algebraic Geometry +1701.07225 Astrophysics of Galaxies +1701.07226 Theory +1701.07227 Metric Geometry +1701.07228 Lattice +1701.07229 Representation Theory +1701.07230 Logic +1701.07231 +1701.07232 Artificial Intelligence +1701.07234 Chemical Physics +1701.07235 Group Theory +1701.07236 +1701.07237 Information Theory +1701.07238 Data Structures and Algorithms +1701.07240 Experiment +1701.07241 +1701.07242 Data Structures and Algorithms +1701.07243 Neurons and Cognition +1701.07245 Information Theory +1701.07246 Quantitative Methods +1701.07249 Statistics Theory +1701.07252 +1701.07253 Rings and Algebras +1701.07254 Robotics +1701.07255 Algebraic Geometry +1701.07258 Symplectic Geometry +1701.07260 Numerical Analysis +1701.07261 History and Philosophy of Physics +1701.07262 Information Theory +1701.07263 Methodology +1701.07264 Analysis of PDEs +1701.07266 Machine Learning +1701.07268 Plasma Physics +1701.07269 Materials Science +1701.07272 Space Physics +1701.07275 Computer Vision and Pattern Recognition +1701.07276 Number Theory +1701.07277 High Energy Astrophysical Phenomena +1701.07278 Number Theory +1701.07279 +1701.07280 Theory +1701.07281 Probability +1701.07282 Strongly Correlated Electrons +1701.07283 +1701.07284 High Energy Astrophysical Phenomena +1701.07285 High Energy Astrophysical Phenomena +1701.07288 High Energy Astrophysical Phenomena +1701.07289 High Energy Astrophysical Phenomena +1701.07290 Human-Computer Interaction +1701.07291 Analysis of PDEs +1701.07292 Representation Theory +1701.07293 High Energy Astrophysical Phenomena +1701.07294 Distributed, Parallel, and Cluster Computing +1701.07296 Optics +1701.07297 +1701.07298 Astrophysics of Galaxies +1701.07299 Data Structures and Algorithms +1701.07300 Analysis of PDEs +1701.07303 Mesoscale and Nanoscale Physics +1701.07304 Computer Science and Game Theory +1701.07305 High Energy Astrophysical Phenomena +1701.07306 Probability +1701.07308 Probability +1701.07310 Functional Analysis +1701.07311 Functional Analysis +1701.07312 Algebraic Geometry +1701.07313 Combinatorics +1701.07314 Chaotic Dynamics +1701.07315 Chemical Physics +1701.07316 Applications +1701.07317 +1701.07318 Economics +1701.07319 Cosmology and Nongalactic Astrophysics +1701.07321 Economics +1701.07322 Economics +1701.07323 Economics +1701.07324 Combinatorics +1701.07325 High Energy Astrophysical Phenomena +1701.07327 Accelerator Physics +1701.07328 Methodology +1701.07333 General Finance +1701.07334 Algebraic Geometry +1701.07336 Physics and Society +1701.07339 History and Overview +1701.07341 Instrumentation and Methods for Astrophysics +1701.07342 Computational Physics +1701.07343 High Energy Astrophysical Phenomena +1701.07344 Optimization and Control +1701.07345 Probability +1701.07347 Information Theory +1701.07348 Combinatorics +1701.07349 Atomic Physics +1701.07350 Analysis of PDEs +1701.07351 Methodology +1701.07352 +1701.07353 Space Physics +1701.07354 Computer Vision and Pattern Recognition +1701.07355 Atmospheric and Oceanic Physics +1701.07356 Phenomenology +1701.07357 Mesoscale and Nanoscale Physics +1701.07358 Physics and Society +1701.07359 Methodology +1701.07360 Biological Physics +1701.07361 Group Theory +1701.07363 Networking and Internet Architecture +1701.07364 High Energy Astrophysical Phenomena +1701.07365 Probability +1701.07367 Materials Science +1701.07369 Combinatorics +1701.07372 Computer Vision and Pattern Recognition +1701.07373 Probability +1701.07377 Phenomenology +1701.07378 Phenomenology +1701.07380 Information Theory +1701.07381 Human-Computer Interaction +1701.07382 Computers and Society +1701.07383 Computers and Society +1701.07384 Geometric Topology +1701.07386 Combinatorics +1701.07387 Materials Science +1701.07389 Mesoscale and Nanoscale Physics +1701.07390 Lattice +1701.07391 Analysis of PDEs +1701.07392 Optics +1701.07393 Computer Vision and Pattern Recognition +1701.07394 Information Theory +1701.07395 Computer Vision and Pattern Recognition +1701.07396 Computer Vision and Pattern Recognition +1701.07398 Computer Vision and Pattern Recognition +1701.07399 +1701.07400 +1701.07401 +1701.07402 +1701.07403 Learning +1701.07404 +1701.07405 Networking and Internet Architecture +1701.07406 Strongly Correlated Electrons +1701.07408 Analysis of PDEs +1701.07409 Experiment +1701.07410 Numerical Analysis +1701.07411 Social and Information Networks +1701.07412 +1701.07413 Materials Science +1701.07414 Dynamical Systems +1701.07415 Numerical Analysis +1701.07417 Materials Science +1701.07419 Physics and Society +1701.07420 +1701.07421 Differential Geometry +1701.07423 Earth and Planetary Astrophysics +1701.07429 Methodology +cs/0610145 Information Theory +cs/0612097 Information Theory +nucl-th/9903052 +physics/0104001 History and Philosophy of Physics +1703.04927 Mesoscale and Nanoscale Physics +1101.5619 Probability +1105.3351 Neural and Evolutionary Computing +1108.2585 Populations and Evolution +1110.1091 Populations and Evolution +1306.3568 Complex Variables +1306.4875 Classical Analysis and ODEs +1308.6619 Biological Physics +1311.2138 Computer Science and Game Theory +1404.2212 Dynamical Systems +1406.0915 Algebraic Topology +1407.7454 Differential Geometry +1408.4268 Probability +1409.1457 +1411.5498 Classical Analysis and ODEs +1411.5507 Classical Analysis and ODEs +1411.6280 Number Theory +1412.2777 Cosmology and Nongalactic Astrophysics +1412.7563 Probability +1501.05843 Formal Languages and Automata Theory +1502.00201 Populations and Evolution +1503.00986 +1503.07807 Probability +1503.08351 Commutative Algebra +1504.04691 +1504.07152 Risk Management +1505.06824 Strongly Correlated Electrons +1506.00966 Dynamical Systems +1506.06181 Probability +1507.04879 History and Overview +1508.03379 Social and Information Networks +1508.03746 Differential Geometry +1509.00104 Databases +1509.00992 Experiment +1509.06037 Dynamical Systems +1510.00658 Molecular Networks +1510.02328 Probability +1511.00152 Machine Learning +1511.00457 Distributed, Parallel, and Cluster Computing +1511.01990 Dynamical Systems +1511.02249 General Mathematics +1511.02963 Optimization and Control +1511.05907 Analysis of PDEs +1511.06356 Probability +1512.00379 Computation +1512.04261 Chemical Physics +1512.07278 +1512.09167 Representation Theory +1601.00267 Number Theory +1601.00943 Combinatorics +1601.06065 Information Theory +1601.06444 Social and Information Networks +1602.01109 Portfolio Management +1602.02592 Number Theory +1602.03611 Group Theory +1603.00352 +1603.03681 +1603.05452 Superconductivity +1603.05863 Representation Theory +1603.06309 Optimization and Control +1603.07434 Theory +1603.08548 General Mathematics +1604.01073 Mesoscale and Nanoscale Physics +1604.01378 Operating Systems +1604.01850 Computer Vision and Pattern Recognition +1604.04315 Artificial Intelligence +1604.05787 Probability +1604.05803 Networking and Internet Architecture +1604.06345 +1604.07508 Materials Science +1604.07551 Statistical Mechanics +1604.08277 Algebraic Topology +1604.08407 Databases +1605.02296 Materials Science +1605.06292 +1605.07850 Quantum Gases +1606.00108 +1606.00412 Optics +1606.00966 Representation Theory +1606.01122 Mesoscale and Nanoscale Physics +1606.02927 Probability +1606.03256 Combinatorics +1606.05855 Mesoscale and Nanoscale Physics +1606.06208 Optimization and Control +1606.07169 Theory +1606.07615 Numerical Analysis +1606.07661 Analysis of PDEs +1606.08025 Probability +1606.09085 +1607.00346 Numerical Analysis +1607.04190 Biological Physics +1607.06665 Computational Geometry +1607.07019 Systems and Control +1607.07397 Quantum Algebra +1607.07454 Strongly Correlated Electrons +1607.08694 Molecular Networks +1608.01628 Discrete Mathematics +1608.01676 Astrophysics of Galaxies +1608.02025 Computation and Language +1608.02606 Theory +1608.02783 +1608.02973 Soft Condensed Matter +1608.03801 Accelerator Physics +1608.04638 +1608.04820 Information Theory +1608.04878 Information Theory +1608.05527 Fluid Dynamics +1608.06974 Medical Physics +1608.07019 Learning +1609.00744 Combinatorics +1609.01359 Mesoscale and Nanoscale Physics +1609.01666 +1609.01761 Classical Physics +1609.01865 Mesoscale and Nanoscale Physics +1609.02253 Optimization and Control +1609.04386 Materials Science +1609.04725 Analysis of PDEs +1609.04864 Cosmology and Nongalactic Astrophysics +1609.05598 Mesoscale and Nanoscale Physics +1609.05752 Superconductivity +1609.05765 +1609.06169 Instrumentation and Detectors +1609.06483 +1609.08047 Materials Science +1609.09396 Theory +1609.09443 Sound +1610.00090 Functional Analysis +1610.00642 +1610.00830 Classical Physics +1610.01278 Differential Geometry +1610.01611 Quantum Gases +1610.01669 Logic in Computer Science +1610.03310 +1610.03911 Strongly Correlated Electrons +1610.03922 Statistical Mechanics +1610.04946 Algebraic Topology +1610.05791 Phenomenology +1610.06750 Disordered Systems and Neural Networks +1610.06969 Geometric Topology +1610.07987 Superconductivity +1610.08039 +1610.08573 +1610.08901 Mesoscale and Nanoscale Physics +1610.08983 Materials Science +1610.09141 Information Theory +1610.09391 +1610.10005 Metric Geometry +1611.00584 Mesoscale and Nanoscale Physics +1611.00647 Mesoscale and Nanoscale Physics +1611.00841 Geometric Topology +1611.00910 Social and Information Networks +1611.01255 Materials Science +1611.01592 +1611.01757 Materials Science +1611.01787 Learning +1611.02900 Statistical Mechanics +1611.02913 Strongly Correlated Electrons +1611.03406 Instrumentation and Detectors +1611.03642 Lattice +1611.03948 Theory +1611.03993 Machine Learning +1611.04311 Risk Management +1611.04689 Databases +1611.04958 Soft Condensed Matter +1611.04995 +1611.05121 +1611.06056 Atmospheric and Oceanic Physics +1611.07123 Instrumentation and Detectors +1611.07848 Information Theory +1611.08183 Analysis of PDEs +1611.08311 Astrophysics of Galaxies +1611.08610 Phenomenology +1611.08744 Solar and Stellar Astrophysics +1611.08817 Numerical Analysis +1611.09296 Data Structures and Algorithms +1611.09696 Lattice +1611.09797 Phenomenology +1611.10194 Theory +1612.00291 Robotics +1612.00630 Dynamical Systems +1612.00689 Classical Analysis and ODEs +1612.00779 Superconductivity +1612.01064 Learning +1612.01228 +1612.02561 Numerical Analysis +1612.02619 Analysis of PDEs +1612.02820 Mesoscale and Nanoscale Physics +1612.03033 +1612.03177 Superconductivity +1612.03559 K-Theory and Homology +1612.03734 Mesoscale and Nanoscale Physics +1612.04433 Cryptography and Security +1612.04728 K-Theory and Homology +1612.05777 Chemical Physics +1612.06066 Experiment +1612.06346 Fluid Dynamics +1612.06364 Mesoscale and Nanoscale Physics +1612.06401 Astrophysics of Galaxies +1612.07416 Complex Variables +1612.09191 Theory +1701.00284 Biological Physics +1701.00425 Functional Analysis +1701.00501 +1701.00564 +1701.02200 Computational Geometry +1701.02683 +1701.03418 Cosmology and Nongalactic Astrophysics +1701.04099 Learning +1701.04206 Materials Science +1701.04777 Data Structures and Algorithms +1701.05394 Mesoscale and Nanoscale Physics +1701.06017 Mesoscale and Nanoscale Physics +1701.06148 Dynamical Systems +1701.06943 Differential Geometry +1701.07248 Optimization and Control +1701.07302 Astrophysics of Galaxies +1701.07596 Strongly Correlated Electrons +1701.07634 Probability +1701.07899 Applications +1701.08102 Theory +1701.08342 Dynamical Systems +1701.08988 Physics and Society +1702.00514 +1702.00750 Phenomenology +1702.00786 Instrumentation and Methods for Astrophysics +1702.00855 Information Retrieval +1702.00941 Instrumentation and Detectors +1702.01036 Strongly Correlated Electrons +1702.01080 Complex Variables +1702.01527 Phenomenology +1702.01940 +1702.01950 Number Theory +1702.01953 Formal Languages and Automata Theory +1702.02296 Chemical Physics +1702.02521 Mesoscale and Nanoscale Physics +1702.02577 +1702.02604 Learning +1702.02670 Machine Learning +1702.02942 Superconductivity +1702.02997 Group Theory +1702.03118 Learning +1702.03598 Materials Science +1702.05086 Analysis of PDEs +1702.05323 +1702.05471 Machine Learning +1702.05767 Materials Science +1702.05862 +1702.05957 Human-Computer Interaction +1702.05970 Computer Vision and Pattern Recognition +1702.06237 Learning +1702.06373 Social and Information Networks +1702.06407 Computation +1702.06410 General Physics +1702.06463 Neurons and Cognition +1702.06490 Experiment +1702.06514 +1702.06665 Neurons and Cognition +1702.06708 Mesoscale and Nanoscale Physics +1702.06732 Complex Variables +1702.06755 Analysis of PDEs +1702.06804 Soft Condensed Matter +1702.06812 Superconductivity +1702.06915 Artificial Intelligence +1702.06925 Computer Vision and Pattern Recognition +1702.06932 +1702.06944 Theory +1702.06945 Instrumentation and Detectors +1702.06946 Instrumentation and Detectors +1702.06947 High Energy Astrophysical Phenomena +1702.06949 +1702.06950 Other Quantitative Biology +1702.06951 High Energy Astrophysical Phenomena +1702.06952 High Energy Astrophysical Phenomena +1702.06954 Phenomenology +1702.06956 High Energy Astrophysical Phenomena +1702.06958 Materials Science +1702.06959 Theory +1702.06960 Theory +1702.06961 Cosmology and Nongalactic Astrophysics +1702.06962 Astrophysics of Galaxies +1702.06963 Astrophysics of Galaxies +1702.06964 Astrophysics of Galaxies +1702.06965 Astrophysics of Galaxies +1702.06966 Astrophysics of Galaxies +1702.06967 Algebraic Geometry +1702.06968 Software Engineering +1702.06970 Artificial Intelligence +1702.06971 Optimization and Control +1702.06972 Statistics Theory +1702.06973 Software Engineering +1702.06975 Statistics Theory +1702.06976 Learning +1702.06977 Populations and Evolution +1702.06979 +1702.06981 Earth and Planetary Astrophysics +1702.06982 Solar and Stellar Astrophysics +1702.06983 Analysis of PDEs +1702.06986 Methodology +1702.06987 Pattern Formation and Solitons +1702.06988 Solar and Stellar Astrophysics +1702.06989 Theory +1702.06990 +1702.06991 +1702.06992 Mesoscale and Nanoscale Physics +1702.06993 Applications +1702.06994 Other Condensed Matter +1702.06995 Optics +1702.06997 Computational Complexity +1702.06998 Analysis of PDEs +1702.06999 Number Theory +1702.07000 Combinatorics +1702.07001 Artificial Intelligence +1702.07002 Data Structures and Algorithms +1702.07003 Analysis of PDEs +1702.07004 Earth and Planetary Astrophysics +1702.07005 Learning +1702.07006 Computer Vision and Pattern Recognition +1702.07007 Methodology +1702.07008 Pattern Formation and Solitons +1702.07009 Applications +1702.07010 +1702.07011 Human-Computer Interaction +1702.07012 Physics and Society +1702.07013 Learning +1702.07014 Instrumentation and Detectors +1702.07015 Computation and Language +1702.07016 +1702.07017 Number Theory +1702.07018 High Energy Astrophysical Phenomena +1702.07019 Computer Vision and Pattern Recognition +1702.07020 Instrumentation and Methods for Astrophysics +1702.07023 Atomic Physics +1702.07024 Dynamical Systems +1702.07026 Probability +1702.07028 Learning +1702.07029 Software Engineering +1702.07030 Systems and Control +1702.07031 Information Theory +1702.07032 Computer Science and Game Theory +1702.07034 Differential Geometry +1702.07036 High Energy Astrophysical Phenomena +1702.07037 Computational Physics +1702.07038 Neurons and Cognition +1702.07040 Cosmology and Nongalactic Astrophysics +1702.07041 Logic +1702.07042 Computational Physics +1702.07043 Fluid Dynamics +1702.07045 Analysis of PDEs +1702.07046 Computation and Language +1702.07048 Fluid Dynamics +1702.07049 Classical Analysis and ODEs +1702.07050 Fluid Dynamics +1702.07051 Optics +1702.07052 Classical Physics +1702.07053 Functional Analysis +1702.07054 Computer Vision and Pattern Recognition +1702.07056 Discrete Mathematics +1702.07057 Logic +1702.07058 Representation Theory +1702.07059 Computer Vision and Pattern Recognition +1702.07060 Symbolic Computation +1702.07062 Probability +1702.07064 Optimization and Control +1702.07065 Cosmology and Nongalactic Astrophysics +1702.07066 Machine Learning +1702.07067 Classical Analysis and ODEs +1702.07068 Combinatorics +1702.07069 Software Engineering +1702.07071 Computation and Language +1702.07073 Analysis of PDEs +1702.07074 Other Statistics +1702.07075 Earth and Planetary Astrophysics +1702.07076 Systems and Control +1702.07077 Differential Geometry +1702.07078 Materials Science +1702.07079 Theory +1702.07080 Analysis of PDEs +1702.07082 Statistics Theory +1702.07083 Machine Learning +1702.07085 Cosmology and Nongalactic Astrophysics +1702.07086 Theory +1702.07088 Mesoscale and Nanoscale Physics +1702.07089 Methodology +1702.07090 Superconductivity +1702.07091 Quantum Gases +1702.07092 Computation and Language +1702.07093 Logic +1702.07094 Computation +1702.07095 Numerical Analysis +1702.07096 Optimization and Control +1702.07098 Numerical Analysis +1702.07100 +1702.07101 Dynamical Systems +1702.07102 Mesoscale and Nanoscale Physics +1702.07103 Programming Languages +1702.07105 Theory +1702.07107 Number Theory +1702.07108 Information Theory +1702.07110 Mesoscale and Nanoscale Physics +1702.07111 Instrumentation and Methods for Astrophysics +1702.07112 +1702.07113 Quantum Algebra +1702.07114 Mesoscale and Nanoscale Physics +1702.07115 Geometric Topology +1702.07116 Chemical Physics +1702.07117 Computation and Language +1702.07118 Statistics Theory +1702.07119 Analysis of PDEs +1702.07121 Machine Learning +1702.07122 Mesoscale and Nanoscale Physics +1702.07123 +1702.07124 Cryptography and Security +1702.07125 Machine Learning +1702.07126 Complex Variables +1702.07127 +1702.07128 Computational Complexity +1702.07129 +1702.07131 +1702.07132 History and Philosophy of Physics +1702.07133 Materials Science +1702.07134 Data Structures and Algorithms +1702.07136 Networking and Internet Architecture +1702.07137 Statistical Mechanics +1702.07138 Software Engineering +1702.07139 +1702.07140 Cryptography and Security +1702.07141 Solar and Stellar Astrophysics +1702.07142 Algebraic Geometry +1702.07143 Medical Physics +1702.07145 +1702.07146 Software Engineering +1702.07147 Instrumentation and Methods for Astrophysics +1702.07148 Numerical Analysis +1702.07149 Software Engineering +1702.07150 Probability +1702.07151 Networking and Internet Architecture +1702.07152 Plasma Physics +1702.07153 Mesoscale and Nanoscale Physics +1702.07154 Classical Analysis and ODEs +1702.07155 General Topology +1702.07156 Combinatorics +1702.07157 Formal Languages and Automata Theory +1702.07158 Databases +1702.07159 Analysis of PDEs +1702.07160 Information Theory +1702.07161 Strongly Correlated Electrons +1702.07162 Combinatorics +1702.07164 +1702.07165 Optics +1702.07168 Artificial Intelligence +1702.07169 Pricing of Securities +1702.07170 Materials Science +1702.07171 Functional Analysis +1702.07172 Data Structures and Algorithms +1702.07173 Probability +1702.07174 +1702.07175 Analysis of PDEs +1702.07176 Instrumentation and Detectors +1702.07177 Combinatorics +1702.07178 Cryptography and Security +1702.07180 Computational Complexity +1702.07181 Phenomenology +1702.07182 Functional Analysis +1702.07183 Phenomenology +1702.07184 Representation Theory +1702.07185 Optics +1702.07186 Information Retrieval +1702.07187 Information Theory +1702.07188 Adaptation and Self-Organizing Systems +1702.07189 Computer Vision and Pattern Recognition +1702.07190 Machine Learning +1702.07191 Computer Vision and Pattern Recognition +1702.07192 Other Condensed Matter +1702.07193 Artificial Intelligence +1702.07194 General Topology +1702.07195 Distributed, Parallel, and Cluster Computing +1702.07196 Optimization and Control +1702.07197 Materials Science +1702.07198 Fluid Dynamics +1702.07199 Numerical Analysis +1702.07201 Classical Analysis and ODEs +1702.07202 Statistical Mechanics +1702.07203 Computation and Language +1702.07206 Phenomenology +1702.07207 Information Theory +1702.07208 Solar and Stellar Astrophysics +1702.07209 High Energy Astrophysical Phenomena +1702.07210 Astrophysics of Galaxies +1702.07211 Machine Learning +1702.07212 +1702.07214 Logic in Computer Science +1702.07216 Probability +1702.07217 Soft Condensed Matter +1702.07218 Atomic Physics +1702.07219 Networking and Internet Architecture +1702.07220 Phenomenology +1702.07222 Biological Physics +1702.07223 Cryptography and Security +1702.07224 +1702.07225 General Physics +1702.07226 General Physics +1702.07227 Neurons and Cognition +1702.07228 Analysis of PDEs +1702.07229 +1702.07230 +1702.07231 Experiment +1702.07232 Number Theory +1702.07233 Experiment +1702.07234 Popular Physics +1702.07235 Systems and Control +1702.07236 Phenomenology +1702.07237 Probability +1702.07238 Phenomenology +1702.07239 Functional Analysis +1702.07242 Symbolic Computation +1702.07243 Symbolic Computation +1702.07244 Plasma Physics +1702.07246 Genomics +1702.07247 Systems and Control +1702.07248 Symbolic Computation +1702.07249 Number Theory +1702.07250 Operator Algebras +1702.07251 Dynamical Systems +1702.07252 Robotics +1702.07253 Mesoscale and Nanoscale Physics +1702.07254 Machine Learning +1702.07255 Combinatorics +1702.07256 Differential Geometry +1702.07257 +1702.07258 Probability +1702.07259 Probability +1702.07260 Phenomenology +1702.07261 Logic +1702.07262 Commutative Algebra +1702.07265 Information Theory +1702.07266 Discrete Mathematics +1702.07267 Discrete Mathematics +1702.07268 +1702.07271 Earth and Planetary Astrophysics +1702.07273 Phenomenology +1702.07275 Phenomenology +1702.07276 Phenomenology +1702.07278 Numerical Analysis +1702.07279 Chaotic Dynamics +1702.07280 Soft Condensed Matter +1702.07283 Methodology +1702.07284 Computational Engineering, Finance, and Science +1702.07286 +1702.07287 Astrophysics of Galaxies +1702.07288 Phenomenology +1702.07289 +1702.07290 Numerical Analysis +1702.07291 +1702.07292 Data Structures and Algorithms +1702.07293 Analysis of PDEs +1702.07294 Theory +1702.07295 +1702.07296 Number Theory +1702.07297 Information Theory +1702.07298 Classical Analysis and ODEs +1702.07299 +1702.07300 Computational Physics +1702.07301 +1702.07302 Information Theory +1702.07303 Astrophysics of Galaxies +1702.07304 Methodology +1702.07305 Machine Learning +1702.07306 Machine Learning +1702.07307 Mesoscale and Nanoscale Physics +1702.07308 Group Theory +1702.07309 Computer Science and Game Theory +1702.07310 Materials Science +1702.07311 Computer Science and Game Theory +1702.07312 Robotics +1702.07313 Combinatorics +1702.07314 Earth and Planetary Astrophysics +1702.07315 Quantum Gases +1702.07316 Commutative Algebra +1702.07317 Experiment +1702.07318 Soft Condensed Matter +1702.07319 Neurons and Cognition +1702.07320 Computational Engineering, Finance, and Science +1702.07321 Probability +1702.07323 Probability +1702.07324 Computation and Language +1702.07325 Combinatorics +1702.07326 Information Retrieval +1702.07327 Earth and Planetary Astrophysics +1702.07328 Algebraic Geometry +1702.07331 Phenomenology +1702.07332 Theory +1702.07336 Soft Condensed Matter +1702.07339 Computational Complexity +1702.07342 Combinatorics +0812.0965 Probability +0902.0413 Classical Analysis and ODEs +0912.4275 Geometric Topology +1005.1596 Classical Analysis and ODEs +1005.1738 Probability +1007.0737 +1010.0784 Classical Analysis and ODEs +1011.2127 +1012.1902 +1102.0955 +1112.4107 Dynamical Systems +1201.0738 Spectral Theory +1201.1052 Probability +1205.5740 Dynamical Systems +1211.4985 Statistical Mechanics +1301.2177 Number Theory +1302.2851 Probability +1303.2345 +1304.5460 Spectral Theory +1307.6935 Geometric Topology +1310.6505 Functional Analysis +1310.8216 Probability +1312.2280 Theory +1312.5542 Computation and Language +1401.3142 Group Theory +1401.6406 Fluid Dynamics +1401.6608 Geometric Topology +1403.7924 Biological Physics +1405.4376 Differential Geometry +1406.0047 Probability +1406.2136 +1406.5749 Rings and Algebras +1407.2650 Logic +1407.7022 Optimization and Control +1409.7439 +1410.2147 Medical Physics +1411.2113 +1411.3467 Number Theory +1411.6247 Probability +1411.7020 +1411.7160 +1411.7591 Computer Vision and Pattern Recognition +1412.1455 Computer Vision and Pattern Recognition +1412.4140 Number Theory +1501.02503 Category Theory +1501.05150 Dynamical Systems +1502.03233 Geometric Topology +1502.07091 Quantum Gases +1503.06172 Combinatorics +1503.06703 Logic +1504.00237 Statistical Mechanics +1504.01137 +1504.04664 Logic +1504.07860 Information Theory +1505.00099 Theory +1505.01375 Tissues and Organs +1505.03900 Tissues and Organs +1505.05254 Computer Vision and Pattern Recognition +1505.07016 Tissues and Organs +1506.03002 Probability +1506.06524 Superconductivity +1507.00914 Number Theory +1507.04379 Probability +1507.08963 +1508.05795 +1509.01920 Optimization and Control +1509.03592 Analysis of PDEs +1509.08281 Trading and Market Microstructure +1509.08282 Dynamical Systems +1510.00028 Applications +1510.05803 Algebraic Geometry +1510.06224 Representation Theory +1510.06689 Numerical Analysis +1510.06890 Classical Physics +1510.06957 Probability +1511.07965 Representation Theory +1512.00780 Number Theory +1512.01090 Information Theory +1512.01139 Optimization and Control +1512.07983 Classical Analysis and ODEs +1512.09000 Differential Geometry +1601.00796 Cryptography and Security +1601.00985 Probability +1601.03030 +1601.03625 +1601.04556 +1601.05109 +1601.05191 Analysis of PDEs +1601.08182 +1602.06120 Strongly Correlated Electrons +1603.00779 Strongly Correlated Electrons +1603.03195 Statistical Mechanics +1603.05216 Superconductivity +1603.05977 High Energy Astrophysical Phenomena +1603.06263 Systems and Control +1603.08773 Algebraic Topology +1604.02279 +1604.02337 +1604.02360 Soft Condensed Matter +1604.02396 Statistical Mechanics +1604.05582 Social and Information Networks +1604.06980 Information Theory +1604.07344 Theory +1604.08887 Phenomenology +1604.08891 Physics and Society +1605.00293 Mesoscale and Nanoscale Physics +1605.01076 Materials Science +1605.01220 Computer Science and Game Theory +1605.01463 Analysis of PDEs +1605.02641 +1605.04200 Representation Theory +1605.05040 Atomic Physics +1605.06204 +1605.06859 Atmospheric and Oceanic Physics +1605.07959 Data Structures and Algorithms +1606.00262 Pattern Formation and Solitons +1606.04817 +1606.06433 Optics +1606.07248 Functional Analysis +1606.08262 Group Theory +1607.00049 General Topology +1607.00140 Quantum Gases +1607.00325 Computation and Language +1607.00865 Strongly Correlated Electrons +1607.02814 Materials Science +1607.03262 Phenomenology +1607.03925 Instrumentation and Detectors +1607.04310 Complex Variables +1607.04640 Strongly Correlated Electrons +1607.04752 Statistical Mechanics +1608.00175 Superconductivity +1608.00183 Quantum Gases +1608.00976 Strongly Correlated Electrons +1608.01466 Statistical Mechanics +1608.01483 +1608.01542 Discrete Mathematics +1608.02011 Geometric Topology +1608.02063 Algebraic Topology +1608.04130 Fluid Dynamics +1608.04531 Mesoscale and Nanoscale Physics +1608.04610 Analysis of PDEs +1608.06789 Plasma Physics +1608.08633 Mesoscale and Nanoscale Physics +1609.00150 Learning +1609.02226 Artificial Intelligence +1609.02533 Superconductivity +1609.04392 Computer Vision and Pattern Recognition +1609.04752 +1609.06515 Computational Complexity +1609.06640 Quantum Gases +1609.06936 Computer Vision and Pattern Recognition +1609.07837 Information Theory +1609.08046 Statistical Mechanics +1609.08540 Mesoscale and Nanoscale Physics +1609.09378 Optimization and Control +1610.00017 Information Theory +1610.00025 Analysis of PDEs +1610.01410 +1610.01441 Classical Analysis and ODEs +1610.01794 Instrumentation and Methods for Astrophysics +1610.02320 Soft Condensed Matter +1610.02813 Theory +1610.03621 Mesoscale and Nanoscale Physics +1610.04280 Chemical Physics +1610.04952 Plasma Physics +1610.05746 Numerical Analysis +1610.05836 Analysis of PDEs +1610.05865 Quantum Algebra +1610.07576 Information Theory +1610.07584 Computer Vision and Pattern Recognition +1610.08150 Atomic Physics +1610.08893 Algebraic Topology +1610.08952 Theory +1610.09313 Complex Variables +1610.09452 Cosmology and Nongalactic Astrophysics +1610.09762 +1610.09817 Strongly Correlated Electrons +1610.09839 Strongly Correlated Electrons +1611.00240 Soft Condensed Matter +1611.00262 Mesoscale and Nanoscale Physics +1611.00311 +1611.00704 Networking and Internet Architecture +1611.00858 Analysis of PDEs +1611.02733 Cryptography and Security +1611.03053 Cryptography and Security +1611.03056 Cryptography and Security +1611.03492 Phenomenology +1611.03837 Atmospheric and Oceanic Physics +1611.04244 Computation and Language +1611.04259 Theory +1611.04759 Operator Algebras +1611.06350 Applications +1611.06366 Robotics +1611.06367 Robotics +1611.07112 Robotics +1611.07114 Robotics +1611.07207 Probability +1611.07655 Quantum Algebra +1611.07764 Combinatorics +1611.07822 Combinatorics +1612.00126 Information Theory +1612.00128 Information Theory +1612.00722 Probability +1612.00723 Probability +1612.00913 Computation and Language +1612.00967 Information Theory +1612.01300 Representation Theory +1612.01423 Optics +1612.01765 Spectral Theory +1612.01767 Spectral Theory +1612.01848 Computation and Language +1612.02065 Systems and Control +1612.02067 Systems and Control +1612.02466 Networking and Internet Architecture +1612.02495 Computational Physics +1612.03170 +1612.03848 Quantum Gases +1612.04355 Theory +1612.04431 Computational Engineering, Finance, and Science +1612.04898 Machine Learning +1612.04899 Machine Learning +1612.05088 Cosmology and Nongalactic Astrophysics +1612.05208 Mesoscale and Nanoscale Physics +1612.05430 Dynamical Systems +1612.05782 Number Theory +1612.05950 Theory +1612.06771 Metric Geometry +1612.07039 High Energy Astrophysical Phenomena +1612.07100 High Energy Astrophysical Phenomena +1612.07225 +1612.07531 Materials Science +1612.07751 Algebraic Geometry +1612.07814 Experiment +1612.08226 Cosmology and Nongalactic Astrophysics +1612.08418 Optics +1612.08501 Strongly Correlated Electrons +1612.08612 Mesoscale and Nanoscale Physics +1612.08817 Cosmology and Nongalactic Astrophysics +1612.09177 Algebraic Geometry +1612.09309 +1612.09322 Computer Vision and Pattern Recognition +1701.00008 Instrumentation and Methods for Astrophysics +1701.00067 Phenomenology +1701.00305 Data Structures and Algorithms +1701.00485 Learning +1701.00557 Computational Engineering, Finance, and Science +1701.00599 Multimedia +1701.00623 Databases +1701.00757 Machine Learning +1701.00776 +1701.00779 Phenomenology +1701.00781 +1701.00783 Disordered Systems and Neural Networks +1701.00786 Mesoscale and Nanoscale Physics +1701.00787 Classical Analysis and ODEs +1701.00788 Superconductivity +1701.00789 Functional Analysis +1701.00790 Algebraic Geometry +1701.00791 Solar and Stellar Astrophysics +1701.00792 Solar and Stellar Astrophysics +1701.00793 Lattice +1701.00794 Computer Vision and Pattern Recognition +1701.00795 Solar and Stellar Astrophysics +1701.00796 +1701.00798 Computation and Language +1701.00799 Probability +1701.00800 Theory +1701.00801 Analysis of PDEs +1701.00802 Mesoscale and Nanoscale Physics +1701.00804 Computer Vision and Pattern Recognition +1701.00805 Theory +1701.00806 Discrete Mathematics +1701.00808 Numerical Analysis +1701.00809 +1701.00810 Quantum Gases +1701.00812 Phenomenology +1701.00813 Materials Science +1701.00814 Astrophysics of Galaxies +1701.00815 Mesoscale and Nanoscale Physics +1701.00816 Accelerator Physics +1701.00817 Fluid Dynamics +1701.00818 Cosmology and Nongalactic Astrophysics +1701.00820 High Energy Astrophysical Phenomena +1701.00821 Data Structures and Algorithms +1701.00822 Superconductivity +1701.00823 Computer Vision and Pattern Recognition +1701.00824 Accelerator Physics +1701.00825 Differential Geometry +1701.00827 History and Overview +1701.00828 Earth and Planetary Astrophysics +1701.00829 Phenomenology +1701.00831 Learning +1701.00833 Artificial Intelligence +1701.00834 Strongly Correlated Electrons +1701.00835 Astrophysics of Galaxies +1701.00836 Instrumentation and Methods for Astrophysics +1701.00837 Networking and Internet Architecture +1701.00838 Neurons and Cognition +1701.00839 Number Theory +1701.00841 Computers and Society +1701.00842 Accelerator Physics +1701.00845 Methodology +1701.00846 Emerging Technologies +1701.00849 Computer Science and Game Theory +1701.00850 Functional Analysis +1701.00851 Computation and Language +1701.00852 Analysis of PDEs +1701.00853 Analysis of PDEs +1701.00854 Distributed, Parallel, and Cluster Computing +1701.00856 Methodology +1701.00857 Computation +1701.00859 Materials Science +1701.00860 Robotics +1701.00861 Mesoscale and Nanoscale Physics +1701.00863 Spectral Theory +1701.00864 Materials Science +1701.00866 Astrophysics of Galaxies +1701.00867 Artificial Intelligence +1701.00868 Analysis of PDEs +1701.00869 +1701.00870 Phenomenology +1701.00871 Probability +1701.00872 Theory +1701.00873 Chemical Physics +1701.00876 Classical Physics +1701.00878 Optimization and Control +1701.00879 Neural and Evolutionary Computing +1701.00881 Systems and Control +1701.00882 Networking and Internet Architecture +1701.00884 High Energy Astrophysical Phenomena +1701.00888 Statistics Theory +1701.00890 Astrophysics of Galaxies +1701.00891 High Energy Astrophysical Phenomena +1701.00893 Data Structures and Algorithms +1701.00895 High Energy Astrophysical Phenomena +1701.00896 Mesoscale and Nanoscale Physics +1701.00897 Numerical Analysis +1701.00898 Networking and Internet Architecture +1701.00899 High Energy Astrophysical Phenomena +1701.00900 Applications +1701.00902 Methodology +1701.00903 Machine Learning +1701.00904 Networking and Internet Architecture +1701.00905 Disordered Systems and Neural Networks +1701.00906 Optics +1701.00907 Optics +1701.00908 Combinatorics +1701.00910 Accelerator Physics +1701.00912 Astrophysics of Galaxies +1701.00913 Computational Physics +1701.00915 Number Theory +1701.00916 Accelerator Physics +1701.00918 Dynamical Systems +1701.00921 Computational Geometry +1701.00923 +1701.00924 +1701.00925 Robotics +1701.00926 Exactly Solvable and Integrable Systems +1701.00927 Combinatorics +1701.00928 Combinatorics +1701.00929 Logic +1701.00930 Mesoscale and Nanoscale Physics +1701.00932 Probability +1701.00933 Materials Science +1701.00934 Tissues and Organs +1701.00935 Robotics +1701.00936 Statistical Mechanics +1701.00937 Solar and Stellar Astrophysics +1701.00938 Networking and Internet Architecture +1701.00939 Learning +1701.00941 High Energy Astrophysical Phenomena +1701.00942 Lattice +1701.00943 Earth and Planetary Astrophysics +1701.00945 Dynamical Systems +1701.00946 Computation and Language +1701.00947 Phenomenology +1701.00950 +1701.00951 Computer Vision and Pattern Recognition +1701.00952 Analysis of PDEs +1701.00957 Earth and Planetary Astrophysics +1701.00958 Computer Science and Game Theory +1701.00959 Differential Geometry +1701.00960 Software Engineering +1701.00961 Solar and Stellar Astrophysics +1701.00963 Networking and Internet Architecture +1701.00965 Earth and Planetary Astrophysics +1701.00967 Solar and Stellar Astrophysics +1701.00968 Theory +1701.00969 Phenomenology +1701.00970 Optics +1701.00971 +1701.00972 Representation Theory +1701.00973 Combinatorics +1701.00976 Logic in Computer Science +1701.00977 Information Theory +1701.00979 Solar and Stellar Astrophysics +1701.00980 Statistical Mechanics +1701.00981 Distributed, Parallel, and Cluster Computing +1701.00982 Information Theory +1701.00984 +1701.00985 Probability +1701.00987 Quantitative Methods +1701.00988 Commutative Algebra +1701.00989 +1701.00991 Information Retrieval +1701.00992 Analysis of PDEs +1701.00993 Mathematical Finance +1701.00994 Physics and Society +1701.00995 Computer Vision and Pattern Recognition +1701.00996 Numerical Analysis +1701.00997 Computational Engineering, Finance, and Science +1701.00998 Theory +1701.00999 Dynamical Systems +1701.01000 Learning +1701.01001 Methodology +1701.01003 +1701.01005 Theory +1701.01006 Plasma Physics +1701.01007 Information Theory +1701.01008 Accelerator Physics +1701.01010 Information Theory +1701.01011 Astrophysics of Galaxies +1701.01013 Analysis of PDEs +1701.01014 Numerical Analysis +1701.01016 Theory +1701.01017 History and Philosophy of Physics +1701.01018 Soft Condensed Matter +1701.01022 General Physics +1701.01023 Classical Analysis and ODEs +1701.01024 Classical Analysis and ODEs +1701.01025 General Physics +1701.01026 Analysis of PDEs +1701.01027 +1701.01028 +1701.01029 Mesoscale and Nanoscale Physics +1701.01030 Classical Analysis and ODEs +1701.01032 +1701.01033 Analysis of PDEs +1701.01035 Computer Vision and Pattern Recognition +1701.01036 Computer Vision and Pattern Recognition +1701.01037 Methodology +1701.01039 +1701.01041 Mesoscale and Nanoscale Physics +1701.01043 Information Theory +1701.01044 Information Theory +1701.01045 Formal Languages and Automata Theory +1701.01046 +1701.01047 Combinatorics +1701.01048 Artificial Intelligence +1701.01049 +1701.01050 Chemical Physics +1701.01051 Combinatorics +1701.01052 Classical Analysis and ODEs +1701.01053 Chemical Physics +1701.01054 Classical Analysis and ODEs +1701.01057 Strongly Correlated Electrons +1701.01059 Information Theory +1701.01061 Cryptography and Security +1701.01062 +1701.01063 Quantum Gases +1701.01065 Analysis of PDEs +1701.01066 Materials Science +1701.01068 Analysis of PDEs +1701.01070 Analysis of PDEs +1701.01072 +1701.01073 Analysis of PDEs +1701.01074 Algebraic Geometry +1701.01076 Fluid Dynamics +1701.01077 Computer Vision and Pattern Recognition +1701.01078 Accelerator Physics +1701.01079 Populations and Evolution +1701.01084 Mesoscale and Nanoscale Physics +1701.01086 Fluid Dynamics +1701.01088 +1701.01089 Mesoscale and Nanoscale Physics +1701.01092 Probability +1701.01093 Data Structures and Algorithms +1701.01094 Databases +1701.01097 Methodology +1701.01098 High Energy Astrophysical Phenomena +1701.01101 Neurons and Cognition +1701.01103 Information Theory +1701.01104 +1701.01105 Materials Science +1701.01106 Quantum Algebra +1701.01107 Theory +1701.01108 Number Theory +math/9809178 Geometric Topology +0807.1990 +1010.1624 +1104.2444 Artificial Intelligence +1107.0895 +1206.3963 Social and Information Networks +1212.0479 Statistical Finance +1301.4719 General Physics +1302.5616 Probability +1303.6032 Phenomenology +1304.5676 Algebraic Topology +1305.1468 Theory +1309.1980 Functional Analysis +1310.3933 Algebraic Topology +1311.5400 Functional Analysis +1312.4537 Theory +1312.5650 Learning +1312.6304 Analysis of PDEs +1401.1019 Differential Geometry +1401.7125 Adaptation and Self-Organizing Systems +1403.2467 Materials Science +1403.3789 Classical Analysis and ODEs +1403.5658 Dynamical Systems +1403.7116 Dynamical Systems +1404.5696 Quantum Gases +1405.5779 Numerical Analysis +1406.1939 Statistics Theory +1406.3797 Combinatorics +1406.6900 Dynamical Systems +1407.5663 +1408.1465 Logic +1408.1817 Probability +1408.3700 Mesoscale and Nanoscale Physics +1408.4000 Dynamical Systems +1409.0166 Logic in Computer Science +1409.1714 Numerical Analysis +1410.5402 Computational Physics +1411.3242 Analysis of PDEs +1411.4266 Databases +1411.5952 Differential Geometry +1411.6160 Statistics Theory +1411.7323 Dynamical Systems +1412.0669 +1412.2159 Physics and Society +1412.5341 Probability +1412.8624 General Finance +1501.01300 Formal Languages and Automata Theory +1501.05123 Logic +1501.06238 Distributed, Parallel, and Cluster Computing +1501.06772 Dynamical Systems +1501.06945 +1501.07640 Information Theory +1502.01752 Statistics Theory +1502.03393 Analysis of PDEs +1503.09105 Dynamical Systems +1504.04007 Algebraic Topology +1504.05911 +1505.02190 Statistical Mechanics +1505.02227 Optimization and Control +1505.02719 Functional Analysis +1505.04036 Computational Engineering, Finance, and Science +1506.00469 +1506.00624 Probability +1506.02202 Functional Analysis +1506.05307 Number Theory +1506.07133 Theory +1506.07687 Applications +1506.08253 Methodology +1507.00933 Phenomenology +1507.01381 Chemical Physics +1507.03927 Distributed, Parallel, and Cluster Computing +1507.05179 Methodology +1507.07320 Analysis of PDEs +1507.08703 Optimization and Control +1508.00291 +1508.00860 +1508.01954 Software Engineering +1508.02651 Methodology +1508.03151 Differential Geometry +1508.04483 Rings and Algebras +1508.05377 +1508.07497 Applications +1509.00058 Cosmology and Nongalactic Astrophysics +1509.00673 Phenomenology +1509.01137 Atomic Physics +1509.01811 Analysis of PDEs +1509.02504 History and Philosophy of Physics +1509.07942 Methodology +1510.00570 Materials Science +1510.02159 Methodology +1510.02190 Information Theory +1510.03164 Learning +1510.05006 Cosmology and Nongalactic Astrophysics +1510.06462 +1510.07684 Dynamical Systems +1510.08098 Analysis of PDEs +1510.09221 Probability +1511.00076 Materials Science +1511.01591 Quantum Algebra +1511.01598 Numerical Analysis +1511.01615 Probability +1511.04546 Materials Science +1511.07464 Probability +1511.08887 Information Theory +1512.00345 Rings and Algebras +1512.00433 Information Theory +1512.00906 Numerical Analysis +1512.02397 Probability +1512.03781 Combinatorics +1512.04019 Cosmology and Nongalactic Astrophysics +1512.04431 +1512.05044 Differential Geometry +1512.05167 Number Theory +1512.07215 Optimization and Control +1512.07921 General Physics +1601.00305 Representation Theory +1601.01112 Instrumentation and Methods for Astrophysics +1601.02416 Metric Geometry +1601.04084 Databases +1601.04880 Probability +1601.07190 Phenomenology +1601.07436 Dynamical Systems +1601.07497 +1602.00353 Rings and Algebras +1602.01063 Methodology +1602.01227 Algebraic Geometry +1602.01952 Group Theory +1602.02401 High Energy Astrophysical Phenomena +1602.02733 Dynamical Systems +1602.03553 General Mathematics +1602.04960 Probability +1602.05883 Risk Management +1602.05936 Quantum Algebra +1602.06197 Differential Geometry +1602.06580 Phenomenology +1602.07046 Machine Learning +1602.07267 Discrete Mathematics +1602.07693 Theory +1602.07757 Information Theory +1602.07962 Category Theory +1602.09134 Information Theory +1603.00622 Learning +1603.01200 Probability +1603.04556 Statistics Theory +1603.04996 Optimization and Control +1603.06222 +1603.07393 Mesoscale and Nanoscale Physics +1603.07630 Applications +1603.08620 Strongly Correlated Electrons +1603.09021 Social and Information Networks +1604.00806 Mesoscale and Nanoscale Physics +1604.00894 Networking and Internet Architecture +1604.00931 Chaotic Dynamics +1604.01026 High Energy Astrophysical Phenomena +1604.01504 Computational Engineering, Finance, and Science +1604.02675 Rings and Algebras +1604.03157 Probability +1604.03304 +1604.03393 Sound +1604.04159 Statistical Mechanics +1604.04277 Quantum Gases +1604.04630 Strongly Correlated Electrons +1604.04774 Algebraic Geometry +1604.05275 Optimization and Control +1604.05359 Representation Theory +1604.05671 History and Overview +1604.06866 +1604.07493 Cosmology and Nongalactic Astrophysics +1605.00180 Combinatorics +1605.01006 Analysis of PDEs +1605.01148 Human-Computer Interaction +1605.01357 +1605.01549 Information Theory +1605.02001 Combinatorics +1605.02477 Strongly Correlated Electrons +1605.02624 Probability +1605.02914 Computer Vision and Pattern Recognition +1605.03436 Astrophysics of Galaxies +1605.03838 Computer Science and Game Theory +1605.04317 Instrumentation and Methods for Astrophysics +1605.04408 Materials Science +1605.04662 Molecular Networks +1605.04947 Materials Science +1605.05019 Computer Vision and Pattern Recognition +1605.05259 +1605.06886 Artificial Intelligence +1605.07373 Plasma Physics +1605.07416 Statistics Theory +1605.07648 Computer Vision and Pattern Recognition +1605.08055 Phenomenology +1605.08074 Social and Information Networks +1605.08860 Applications +1605.08993 Experiment +1606.00769 Theory +1606.01046 Mesoscale and Nanoscale Physics +1606.01416 Information Theory +1606.01532 Computational Physics +1606.01591 Analysis of PDEs +1606.03560 Optimization and Control +1606.04380 Commutative Algebra +1606.04452 Analysis of PDEs +1606.04582 Computation and Language +1606.05143 +1606.06656 +1606.06703 Number Theory +1606.08219 General Physics +1606.09011 Dynamical Systems +1606.09636 Computation and Language +1607.00688 Earth and Planetary Astrophysics +1607.00902 Commutative Algebra +1607.00939 Mesoscale and Nanoscale Physics +1607.00942 Information Theory +1607.00956 Statistical Mechanics +1607.00989 Differential Geometry +1607.01315 Theory +1607.01569 Computer Science and Game Theory +1607.02764 Quantum Gases +1607.03663 Experiment +1607.03693 +1607.04027 Operator Algebras +1607.05437 Phenomenology +1607.06031 Phenomenology +1607.06680 Experiment +1607.06746 Experiment +1607.06948 Numerical Analysis +1607.07060 Algebraic Geometry +1607.07116 +1607.07214 Number Theory +1607.07446 Phenomenology +1607.08204 Optics +1607.08344 Distributed, Parallel, and Cluster Computing +1607.08506 Software Engineering +1608.00126 Numerical Analysis +1608.00692 Computational Complexity +1608.00781 Distributed, Parallel, and Cluster Computing +1608.00851 Algebraic Geometry +1608.01059 Computer Vision and Pattern Recognition +1608.01219 Cosmology and Nongalactic Astrophysics +1608.01890 Classical Physics +1608.02067 Methodology +1608.02110 Quantum Gases +1608.02211 Superconductivity +1608.02612 Theory +1608.03456 +1608.03511 +1608.03544 Learning +1608.03963 Spectral Theory +1608.04813 Optimization and Control +1608.04911 Phenomenology +1608.05002 Statistics Theory +1608.05053 +1608.05069 Networking and Internet Architecture +1608.05106 +1608.05706 Neurons and Cognition +1608.05745 Learning +1608.05824 Soft Condensed Matter +1608.06643 Theory +1608.06766 +1608.06902 Neural and Evolutionary Computing +1608.06927 Strongly Correlated Electrons +1608.07066 +1608.07299 +1608.07468 Group Theory +1608.07739 Learning +1608.07748 Mesoscale and Nanoscale Physics +1608.07849 Functional Analysis +1608.08670 Complex Variables +1608.08723 Rings and Algebras +1608.08831 Computer Vision and Pattern Recognition +1609.00222 Learning +1609.00343 Probability +1609.01649 Classical Analysis and ODEs +1609.02246 Optics +1609.02522 Plasma Physics +1609.02847 Medical Physics +1609.02879 Algebraic Geometry +1609.02905 Superconductivity +1609.03386 Cosmology and Nongalactic Astrophysics +1609.03830 Phenomenology +1609.03891 Probability +1609.04285 Social and Information Networks +1609.04758 Dynamical Systems +1609.04849 Machine Learning +1609.05165 Information Theory +1609.05243 Robotics +1609.05384 Information Theory +1609.05795 Statistical Mechanics +1609.05919 Mesoscale and Nanoscale Physics +1609.06124 Formal Languages and Automata Theory +1609.06156 Data Structures and Algorithms +1609.06452 Group Theory +1609.06555 Phenomenology +1609.06966 Classical Analysis and ODEs +1609.07090 Algebraic Geometry +1609.07263 Astrophysics of Galaxies +1609.07375 High Energy Astrophysical Phenomena +1609.07376 Superconductivity +1609.07516 +1609.07577 Systems and Control +1609.07774 +1609.07851 Astrophysics of Galaxies +1609.08226 Algebraic Geometry +1609.08679 Optimization and Control +1609.08789 Learning +1609.09127 Theory +1609.09298 Optics +1609.09343 Algebraic Geometry +1609.09446 +1609.09557 Optimization and Control +1609.09730 Cosmology and Nongalactic Astrophysics +1610.00032 Statistics Theory +1610.00298 Algebraic Geometry +1610.00597 Probability +1610.00657 Theory +1610.00787 Social and Information Networks +1610.00970 Machine Learning +1610.01939 +1610.01983 Computer Vision and Pattern Recognition +1610.02036 Strongly Correlated Electrons +1610.02143 Optimization and Control +1610.02426 Strongly Correlated Electrons +1610.02610 Robotics +1610.02687 Phenomenology +1610.02744 Experiment +1610.02864 Populations and Evolution +1610.02879 Instrumentation and Detectors +1610.03163 Dynamical Systems +1610.03183 Mesoscale and Nanoscale Physics +1610.03454 Learning +1610.03483 Machine Learning +1610.03975 Functional Analysis +1610.04287 Statistical Mechanics +1610.04490 Computer Vision and Pattern Recognition +1610.04749 Phenomenology +1610.05023 Computational Physics +1610.05298 Atomic Physics +1610.05312 Astrophysics of Galaxies +1610.05627 Statistics Theory +1610.05901 Probability +1610.06097 Phenomenology +1610.06324 Analysis of PDEs +1610.06618 Information Theory +1610.06751 +1610.07001 Strongly Correlated Electrons +1610.07069 +1610.07088 Complex Variables +1610.07112 Cosmology and Nongalactic Astrophysics +1610.07540 Methodology +1610.07714 Methodology +1610.08622 Strongly Correlated Electrons +1610.08914 Computation and Language +1610.09119 Quantum Gases +1610.10059 Geophysics +1611.00058 Learning +1611.00328 Machine Learning +1611.00429 Learning +1611.00683 Machine Learning +1611.00780 Astrophysics of Galaxies +1611.00823 Analysis of PDEs +1611.00899 +1611.01035 +1611.01514 Phenomenology +1611.01571 Hardware Architecture +1611.01603 Computation and Language +1611.01672 Strongly Correlated Electrons +1611.01676 Optics +1611.01687 Disordered Systems and Neural Networks +1611.01702 Computation and Language +1611.02041 Machine Learning +1611.02090 Computers and Society +1611.02891 Data Structures and Algorithms +1611.02990 Soft Condensed Matter +1611.02994 General Topology +1611.03148 Soft Condensed Matter +1611.03188 Phenomenology +1611.03530 Learning +1611.03641 Computation and Language +1611.03760 +1611.03838 Mesoscale and Nanoscale Physics +1611.03903 Theory +1611.03941 Learning +1611.03942 Social and Information Networks +1611.04440 Operator Algebras +1611.04832 Strongly Correlated Electrons +1611.05354 Phenomenology +1611.05901 Number Theory +1611.06022 High Energy Astrophysical Phenomena +1611.06029 Mesoscale and Nanoscale Physics +1611.06389 Logic in Computer Science +1611.06431 Analysis of PDEs +1611.06736 +1611.06951 Databases +1611.07065 Neural and Evolutionary Computing +1611.07096 Machine Learning +1611.07295 Statistical Mechanics +1611.07506 Commutative Algebra +1611.08332 Materials Science +1611.08568 Machine Learning +1611.09186 Strongly Correlated Electrons +1611.09202 Functional Analysis +1611.09353 High Energy Astrophysical Phenomena +1611.09529 Mesoscale and Nanoscale Physics +1612.00249 Probability +1612.00640 Operator Algebras +1612.00769 Numerical Analysis +1612.01020 Machine Learning +1612.01049 Complex Variables +1612.01277 Learning +1612.01474 Machine Learning +1612.01879 Theory +1612.02104 Cosmology and Nongalactic Astrophysics +1612.02435 Solar and Stellar Astrophysics +1612.02874 Optics +1612.02928 Geometric Topology +1612.02942 Differential Geometry +1612.03263 +1612.03272 Differential Geometry +1612.03283 History and Philosophy of Physics +1612.03392 +1612.03603 Astrophysics of Galaxies +1612.03879 Theory +1612.03926 Atomic Physics +1612.04352 Statistical Mechanics +1612.04525 Optics +1612.04619 Statistical Mechanics +1612.04775 Information Theory +1612.04836 Soft Condensed Matter +1612.05494 Software Engineering +1612.05770 Theory +1612.06323 Combinatorics +1612.06542 Complex Variables +1612.06660 Theory +1612.06805 +1612.07036 +1612.07242 Complex Variables +1612.07393 Experiment +1612.07482 Soft Condensed Matter +1612.07489 Experiment +1612.07612 Social and Information Networks +1612.07968 Theory +1612.08052 Classical Analysis and ODEs +1612.08125 Representation Theory +1612.08185 Computer Vision and Pattern Recognition +1612.08610 Instrumentation and Methods for Astrophysics +1612.08622 Algebraic Topology +1612.09234 +1612.09341 Quantum Gases +1701.00295 Computer Vision and Pattern Recognition +1701.00317 Computational Engineering, Finance, and Science +1701.00488 Phenomenology +1701.00541 Computational Geometry +1701.00696 Artificial Intelligence +1701.00775 +1701.01111 Functional Analysis +1701.01280 Functional Analysis +1701.01456 Statistical Mechanics +1701.01506 Theory +1701.02146 Phenomenology +1701.02250 Algebraic Topology +1701.02255 Strongly Correlated Electrons +1701.02269 Instrumentation and Detectors +1701.02360 Earth and Planetary Astrophysics +1701.03027 Group Theory +1701.03066 Probability +1701.03386 Superconductivity +1701.03414 Discrete Mathematics +1701.04005 Physics and Society +1701.04175 Robotics +1701.05074 Metric Geometry +1701.05565 Theory +1701.06127 Representation Theory +1701.06278 Differential Geometry +1701.06287 Phenomenology +1701.06391 Analysis of PDEs +1701.06586 Phenomenology +1701.06611 Optimization and Control +1701.06681 Information Theory +1701.07083 Human-Computer Interaction +1701.07109 Materials Science +1701.07156 Mesoscale and Nanoscale Physics +1701.07176 +1701.07180 +1701.07554 +1701.07933 Materials Science +1701.08317 Artificial Intelligence +1701.08397 Materials Science +1701.08524 Logic in Computer Science +1701.08667 +1701.08795 Learning +1701.08904 Strongly Correlated Electrons +1702.00190 Combinatorics +1702.00369 Networking and Internet Architecture +1702.00414 Phenomenology +1702.00428 Computation +1702.00570 Theory +1702.00763 Optimization and Control +1702.00814 Fluid Dynamics +1702.01086 Quantum Algebra +1702.01087 Mesoscale and Nanoscale Physics +1702.01141 Phenomenology +1702.01247 Computer Vision and Pattern Recognition +1702.02164 Theory +1702.02172 Solar and Stellar Astrophysics +1702.02292 Materials Science +1702.02540 Computation and Language +1702.02607 Combinatorics +1702.03106 Data Structures and Algorithms +1702.03180 Neural and Evolutionary Computing +1702.03213 Differential Geometry +1702.03426 Phenomenology +1702.03516 Number Theory +1702.03588 Biological Physics +1702.03638 Differential Geometry +1702.03645 Commutative Algebra +1702.03692 Information Theory +1702.03811 +1702.03919 Algebraic Geometry +1702.03955 Phenomenology +1702.04277 Theory +1702.04348 Astrophysics of Galaxies +1702.04430 Methodology +1702.04566 Solar and Stellar Astrophysics +1702.04593 Computer Vision and Pattern Recognition +1702.04674 Analysis of PDEs +1702.04719 Other Computer Science +1702.04738 Phenomenology +1702.04784 Classical Analysis and ODEs +1702.04793 Superconductivity +1702.04837 Machine Learning +1702.04881 Representation Theory +1702.05355 Computer Science and Game Theory +1702.05361 Computer Science and Game Theory +1702.05371 Optimization and Control +1702.05425 Data Structures and Algorithms +1702.05513 Distributed, Parallel, and Cluster Computing +1702.05572 +1702.05683 Machine Learning +1702.05777 Machine Learning +1702.05795 Logic in Computer Science +1702.05802 +1702.05829 Methodology +1702.05834 Representation Theory +1702.05918 +1702.05948 Rings and Algebras +1702.06035 Combinatorics +1702.06053 Neural and Evolutionary Computing +1702.06140 Mesoscale and Nanoscale Physics +1702.06150 Combinatorics +1702.06166 Machine Learning +1702.06183 Solar and Stellar Astrophysics +1702.06211 +1702.06270 Computers and Society +1702.06295 Learning +1702.06433 Atomic Physics +1702.06450 Materials Science +1702.06474 Combinatorics +1702.06523 +1702.06529 High Energy Astrophysical Phenomena +1702.06710 +1702.06748 +1702.06757 Number Theory +1702.06810 Computer Science and Game Theory +1702.06861 Machine Learning +1702.06912 Algebraic Geometry +1702.06920 Algebraic Geometry +1702.06928 Theory +1702.06969 Data Structures and Algorithms +1702.07027 Methodology +1702.07044 Networking and Internet Architecture +1702.07072 +1702.07084 Number Theory +1702.07144 Strongly Correlated Electrons +1702.07205 Discrete Mathematics +1702.07264 +1702.07330 +1702.07335 Robotics +1702.07380 +1702.07440 Phenomenology +1702.07467 Instrumentation and Methods for Astrophysics +1702.07484 Formal Languages and Automata Theory +1702.07487 +1702.07552 Machine Learning +1702.07614 Instrumentation and Detectors +1702.07645 Representation Theory +1702.07654 Quantum Gases +1702.07712 Solar and Stellar Astrophysics +1702.07713 Sound +1702.07714 Earth and Planetary Astrophysics +1702.07715 Instrumentation and Methods for Astrophysics +1702.07716 Phenomenology +1702.07718 Theory +1702.07719 Astrophysics of Galaxies +1702.07720 Theory +1702.07721 Statistical Mechanics +1702.07722 Statistical Mechanics +1702.07723 Phenomenology +1702.07724 Theory +1702.07725 Cosmology and Nongalactic Astrophysics +1702.07726 Cosmology and Nongalactic Astrophysics +1702.07727 Superconductivity +1702.07728 Astrophysics of Galaxies +1702.07729 Plasma Physics +1702.07731 Astrophysics of Galaxies +1702.07732 Instrumentation and Detectors +1702.07734 Neurons and Cognition +1702.07735 Software Engineering +1702.07736 Astrophysics of Galaxies +1702.07737 Information Theory +1702.07738 Number Theory +1702.07739 Mesoscale and Nanoscale Physics +1702.07740 +1702.07741 Solar and Stellar Astrophysics +1702.07744 +1702.07745 Cryptography and Security +1702.07747 Materials Science +1702.07748 Distributed, Parallel, and Cluster Computing +1702.07749 Atmospheric and Oceanic Physics +1702.07750 Phenomenology +1702.07752 Social and Information Networks +1702.07753 Programming Languages +1702.07756 Instrumentation and Methods for Astrophysics +1702.07757 Numerical Analysis +1702.07759 Computer Vision and Pattern Recognition +1702.07760 Atmospheric and Oceanic Physics +1702.07763 Methodology +1702.07764 Probability +1702.07766 +1702.07767 Physics and Society +1702.07768 Instrumentation and Methods for Astrophysics +1702.07770 Accelerator Physics +1702.07772 Computer Vision and Pattern Recognition +1702.07773 Theory +1702.07774 Algebraic Topology +1702.07775 Quantum Gases +1702.07776 Logic +1702.07778 Methodology +1702.07779 Computational Engineering, Finance, and Science +1702.07780 Machine Learning +1702.07781 Optimization and Control +1702.07782 +1702.07783 Fluid Dynamics +1702.07784 Social and Information Networks +1702.07785 +1702.07786 Mathematical Finance +1702.07787 Sound +1702.07788 Mesoscale and Nanoscale Physics +1702.07789 Lattice +1702.07790 Machine Learning +1702.07792 Chemical Physics +1702.07793 Computation and Language +1702.07794 Algebraic Topology +1702.07796 Instrumentation and Methods for Astrophysics +1702.07797 Chemical Physics +1702.07798 Machine Learning +1702.07801 Statistics Theory +1702.07802 Distributed, Parallel, and Cluster Computing +1702.07803 Statistics Theory +1702.07804 Methodology +1702.07806 Computer Science and Game Theory +1702.07807 +1702.07809 Phenomenology +1702.07810 Computer Science and Game Theory +1702.07811 Learning +1702.07813 Data Analysis, Statistics and Probability +1702.07814 Populations and Evolution +1702.07815 Data Structures and Algorithms +1702.07817 Learning +1702.07818 High Energy Astrophysical Phenomena +1702.07819 Theory +1702.07820 Solar and Stellar Astrophysics +1702.07821 Cosmology and Nongalactic Astrophysics +1702.07822 Combinatorics +1702.07823 Optimization and Control +1702.07824 +1702.07826 Artificial Intelligence +1702.07827 Number Theory +1702.07828 Astrophysics of Galaxies +1702.07829 Astrophysics of Galaxies +1702.07830 Computation +1702.07831 Information Theory +1702.07832 Data Structures and Algorithms +1702.07833 Atomic Physics +1702.07834 Numerical Analysis +1702.07835 Computation and Language +1702.07836 Computer Vision and Pattern Recognition +1702.07837 Number Theory +1702.07838 Logic in Computer Science +1702.07839 Materials Science +1702.07840 Phenomenology +1702.07841 Computer Vision and Pattern Recognition +1702.07842 Optimization and Control +1702.07843 High Energy Astrophysical Phenomena +1702.07844 Logic in Computer Science +1702.07846 +1702.07848 Number Theory +1702.07849 Algebraic Geometry +1702.07852 Materials Science +1702.07854 Analysis of PDEs +1702.07855 Statistical Mechanics +1702.07856 Analysis of PDEs +1702.07857 Soft Condensed Matter +1702.07858 Analysis of PDEs +1702.07859 Combinatorics +1702.07860 Phenomenology +1702.07861 +1702.07862 Instrumentation and Detectors +1702.07863 Soft Condensed Matter +1702.07864 +1702.07865 Soft Condensed Matter +1702.07866 Geometric Topology +1702.07867 Functional Analysis +1702.07868 Dynamical Systems +1702.07869 Applications +1702.07870 Learning +1702.07871 Atomic Physics +1702.07872 Solar and Stellar Astrophysics +1702.07873 Soft Condensed Matter +1702.07875 Mesoscale and Nanoscale Physics +1702.07877 +1702.07878 Geometric Topology +1702.07879 Representation Theory +1702.07880 +1702.07881 Information Theory +1702.07882 Algebraic Topology +1702.07883 Algebraic Geometry +1702.07884 Computer Vision and Pattern Recognition +1702.07885 Phenomenology +1702.07887 Mesoscale and Nanoscale Physics +1702.07888 Physics and Society +1702.07889 Logic in Computer Science +1702.07890 Other Computer Science +1702.07891 Optics +1702.07892 Geometric Topology +1702.07893 Computational Geometry +1702.07894 Numerical Analysis +1702.07896 Analysis of PDEs +1702.07897 Physics and Society +1702.07898 Robotics +1702.07899 Statistics Theory +1702.07900 Software Engineering +1702.07902 Computer Science and Game Theory +1702.07903 High Energy Astrophysical Phenomena +1702.07904 Learning +1702.07905 Solar and Stellar Astrophysics +1702.07906 Statistical Mechanics +1702.07907 High Energy Astrophysical Phenomena +1702.07908 Distributed, Parallel, and Cluster Computing +1702.07910 Solar and Stellar Astrophysics +1702.07911 Classical Analysis and ODEs +1702.07912 Social and Information Networks +1702.07915 Information Theory +1702.07916 Probability +1702.07917 Number Theory +1702.07918 Operator Algebras +1702.07919 Mesoscale and Nanoscale Physics +1702.07923 Materials Science +1702.07924 Analysis of PDEs +1702.07925 Medical Physics +1702.07926 +1702.07928 Networking and Internet Architecture +1702.07929 Chemical Physics +1702.07930 Computation +1702.07931 +1702.07932 +1702.07933 Learning +1702.07934 Multiagent Systems +1702.07935 Computer Vision and Pattern Recognition +1702.07936 Risk Management +1702.07937 Analysis of PDEs +1702.07939 Combinatorics +1702.07941 General Topology +1702.07942 Computer Vision and Pattern Recognition +1702.07943 +1702.07944 Learning +1702.07945 Information Theory +1702.07946 Networking and Internet Architecture +1702.07947 Logic +1702.07948 Systems and Control +1702.07950 Analysis of PDEs +1702.07951 Software Engineering +1702.07952 Cosmology and Nongalactic Astrophysics +1702.07953 Complex Variables +1702.07955 Group Theory +1702.07957 Algebraic Topology +1702.07958 Learning +1702.07959 Learning +1702.07960 Digital Libraries +1702.07962 Numerical Analysis +1702.07964 Dynamical Systems +1702.07965 Systems and Control +1702.07966 Learning +1702.07967 +1702.07968 Mesoscale and Nanoscale Physics +1702.07969 Information Retrieval +1702.07971 Computer Vision and Pattern Recognition +1702.07972 +1702.07973 Information Theory +1702.07974 Analysis of PDEs +1702.07975 Computer Vision and Pattern Recognition +1702.07976 Machine Learning +1702.07977 Mesoscale and Nanoscale Physics +1702.07979 Software Engineering +1702.07980 Phenomenology +1702.07981 Applications +1702.07982 Mesoscale and Nanoscale Physics +1702.07983 Artificial Intelligence +1702.07984 Multiagent Systems +1702.07985 Computer Vision and Pattern Recognition +1702.07987 Analysis of PDEs +1702.07990 Materials Science +1702.07991 +1702.07992 Networking and Internet Architecture +1702.07994 +1702.07995 Physics and Society +1702.07997 High Energy Astrophysical Phenomena +1702.07998 Computation and Language +1702.07999 Differential Geometry +1702.08001 Learning +1702.08003 Information Theory +1702.08004 Software Engineering +1702.08005 Social and Information Networks +1702.08006 Cryptography and Security +1702.08007 Computer Vision and Pattern Recognition +1702.08008 Software Engineering +1702.08009 Computer Vision and Pattern Recognition +1702.08010 Other Computer Science +1702.08011 Combinatorics +1702.08012 Representation Theory +1702.08013 Software Engineering +1702.08014 Computer Vision and Pattern Recognition +1702.08015 Optics +1702.08016 Theory +1702.08017 Formal Languages and Automata Theory +1702.08018 Instrumentation and Methods for Astrophysics +1702.08019 Machine Learning +1702.08020 Soft Condensed Matter +1702.08021 Computation and Language +1702.08022 Complex Variables +1702.08023 Formal Languages and Automata Theory +1702.08024 High Energy Astrophysical Phenomena +1702.08025 Optimization and Control +1702.08027 +1702.08028 Dynamical Systems +1702.08029 Trading and Market Microstructure +1702.08032 Complex Variables +1702.08034 Probability +1702.08035 Statistical Mechanics +1702.08036 Instrumentation and Detectors +1702.08037 Networking and Internet Architecture +1702.08039 Artificial Intelligence +1702.08040 High Energy Astrophysical Phenomena +1702.08041 Fluid Dynamics +1702.08042 Databases +1702.08043 Probability +1702.08044 Information Theory +1702.08046 Astrophysics of Galaxies +1702.08047 Group Theory +1702.08048 Experiment +1702.08049 Rings and Algebras +1702.08051 Databases +1702.08052 Information Theory +1702.08053 Networking and Internet Architecture +1702.08054 Optimization and Control +1702.08055 Information Theory +1702.08056 High Energy Astrophysical Phenomena +1702.08057 Analysis of PDEs +1702.08058 Mesoscale and Nanoscale Physics +1702.08060 Representation Theory +1702.08062 Geometric Topology +1702.08063 Theory +1702.08064 Probability +1702.08066 Number Theory +1702.08067 Biological Physics +1702.08068 Differential Geometry +1702.08069 High Energy Astrophysical Phenomena +1702.08070 Information Retrieval +1702.08071 Theory +1702.08072 Human-Computer Interaction +1702.08073 Phenomenology +1702.08074 Learning +1702.08075 +1702.08077 +1702.08078 Biomolecules +1702.08079 Information Theory +1702.08080 Geometric Topology +1702.08081 Computational Finance +1702.08082 Instrumentation and Detectors +1702.08084 Information Theory +1702.08086 Exactly Solvable and Integrable Systems +1702.08088 Methodology +1702.08090 Robotics +1702.08091 Cell Behavior +1702.08092 Robotics +1702.08093 General Topology +1702.08094 Robotics +1702.08095 Analysis of PDEs +1702.08096 Dynamical Systems +1702.08097 Social and Information Networks +1702.08098 Robotics +1702.08099 Information Theory +1702.08100 Mesoscale and Nanoscale Physics +1702.08101 Robotics +1702.08102 Number Theory +1702.08104 Robotics +1702.08105 Differential Geometry +1702.08106 Robotics +1702.08107 Robotics +1702.08109 Statistics Theory +1702.08110 +1702.08111 Numerical Analysis +1702.08112 Computer Vision and Pattern Recognition +1702.08113 Optimization and Control +1702.08115 Computer Vision and Pattern Recognition +1702.08116 Chemical Physics +1702.08117 Astrophysics of Galaxies +1702.08120 Differential Geometry +1702.08121 Materials Science +1702.08122 Networking and Internet Architecture +1702.08123 Probability +1702.08124 Numerical Analysis +1702.08125 Combinatorics +1702.08126 Earth and Planetary Astrophysics +1702.08127 Spectral Theory +1702.08128 Quantum Algebra +1702.08129 Quantum Gases +1702.08130 Information Theory +1702.08131 +1702.08132 Strongly Correlated Electrons +1702.08133 Information Theory +1702.08135 Mesoscale and Nanoscale Physics +1702.08136 Number Theory +1702.08137 Chemical Physics +1702.08138 Learning +1702.08139 Neural and Evolutionary Computing +1702.08140 Applications +1702.08141 Analysis of PDEs +1702.08142 Methodology +1702.08143 Algebraic Geometry +1702.08144 Formal Languages and Automata Theory +1702.08145 +1702.08146 Analysis of PDEs +1702.08147 Functional Analysis +1702.08148 Methodology +1702.08149 Rings and Algebras +1702.08150 Materials Science +1702.08151 Combinatorics +1702.08152 Information Theory +1702.08153 Distributed, Parallel, and Cluster Computing +1702.08154 Programming Languages +1702.08155 Computer Vision and Pattern Recognition +1702.08157 Functional Analysis +1702.08159 Learning +1702.08160 Computer Vision and Pattern Recognition +1702.08161 Phenomenology +1702.08162 Mesoscale and Nanoscale Physics +1702.08163 Materials Science +1702.08164 Networking and Internet Architecture +1702.08165 Learning +1702.08166 Optimization and Control +1702.08168 Representation Theory +1702.08169 Learning +1702.08170 Combinatorics +1702.08171 Learning +1702.08172 Distributed, Parallel, and Cluster Computing +1702.08173 Group Theory +1702.08174 Lattice +1702.08175 +1702.08176 Distributed, Parallel, and Cluster Computing +1702.08177 Materials Science +1702.08178 Discrete Mathematics +1702.08179 Numerical Analysis +1702.08180 Theory +1702.08181 Mesoscale and Nanoscale Physics +1702.08182 Statistical Mechanics +1702.08183 Probability +1702.08184 Theory +1702.08185 Applications +1702.08186 Phenomenology +1702.08187 +1702.08188 Computation +1702.08189 Statistical Mechanics +1702.08190 Functional Analysis +1702.08191 Operator Algebras +1702.08192 Computer Vision and Pattern Recognition +1702.08193 Logic in Computer Science +1702.08194 Materials Science +1702.08196 Networking and Internet Architecture +1702.08197 Strongly Correlated Electrons +1702.08199 Information Retrieval +1702.08200 Group Theory +1702.08201 Mesoscale and Nanoscale Physics +1702.08202 General Mathematics +1702.08203 Physics and Society +1702.08204 Quantum Gases +1702.08205 Group Theory +1702.08206 Analysis of PDEs +1702.08207 Data Structures and Algorithms +1702.08208 Cryptography and Security +1702.08209 Analysis of PDEs +1702.08210 Digital Libraries +1702.08211 Machine Learning +1702.08212 Robotics +1702.08213 Dynamical Systems +1702.08214 Astrophysics of Galaxies +1702.08215 Number Theory +1702.08216 Classical Analysis and ODEs +1702.08217 Computation and Language +1702.08219 Quantum Gases +1702.08220 +1702.08221 Analysis of PDEs +1702.08222 Artificial Intelligence +1702.08223 Representation Theory +1702.08224 Numerical Analysis +1702.08225 Information Theory +1702.08226 Theory +1702.08227 Statistical Mechanics +1702.08228 +1702.08229 Theory +1702.08231 Neural and Evolutionary Computing +1702.08232 Combinatorics +1702.08235 Machine Learning +1702.08236 Networking and Internet Architecture +1702.08238 Computational Complexity +1702.08239 Machine Learning +1702.08240 Mesoscale and Nanoscale Physics +1702.08241 Numerical Analysis +1702.08242 Networking and Internet Architecture +1702.08243 Solar and Stellar Astrophysics +1702.08245 Combinatorics +1702.08248 Machine Learning +1702.08249 Machine Learning +1702.08250 Quantum Algebra +1702.08251 Computation +1702.08252 Earth and Planetary Astrophysics +1702.08253 Instrumentation and Detectors +1702.08255 +1702.08256 Logic in Computer Science +1702.08257 Biological Physics +1702.08258 Information Theory +1702.08259 Learning +1702.08260 Dynamical Systems +1702.08261 Other Statistics +1702.08265 Quantum Gases +1702.08266 Theory +1702.08267 Quantitative Methods +1702.08268 Phenomenology +1702.08269 +1702.08270 Commutative Algebra +1702.08271 Number Theory +1702.08274 Functional Analysis +1702.08275 Cosmology and Nongalactic Astrophysics +1702.08276 Data Analysis, Statistics and Probability +1702.08277 General Topology +1702.08278 Soft Condensed Matter +1702.08279 Algebraic Topology +1702.08281 Logic +1702.08282 Group Theory +1702.08283 Learning +1702.08285 Atomic Physics +1702.08286 Computer Science and Game Theory +1702.08287 Algebraic Geometry +1702.08288 Probability +1702.08289 Discrete Mathematics +1702.08290 Optimization and Control +1702.08291 Computers and Society +1702.08292 Pattern Formation and Solitons +1702.08293 Spectral Theory +1702.08294 Atomic Physics +1702.08295 Exactly Solvable and Integrable Systems +1702.08296 Mesoscale and Nanoscale Physics +1702.08297 Solar and Stellar Astrophysics +1702.08298 Probability +1702.08299 Data Structures and Algorithms +1702.08300 Networking and Internet Architecture +1702.08302 Instrumentation and Methods for Astrophysics +1702.08303 Computation and Language +1702.08304 Superconductivity +1702.08306 Logic in Computer Science +1702.08307 Materials Science +1702.08308 +1702.08309 Experiment +1702.08310 +1702.08311 Theory +1702.08312 Dynamical Systems +1702.08313 Solar and Stellar Astrophysics +1702.08314 Mesoscale and Nanoscale Physics +1702.08315 Instrumentation and Detectors +1702.08316 +1702.08317 Biological Physics +1702.08319 Computer Vision and Pattern Recognition +1702.08320 Machine Learning +1702.08321 Number Theory +1702.08322 Solar and Stellar Astrophysics +1702.08323 Classical Analysis and ODEs +1702.08324 Systems and Control +1702.08325 Systems and Control +1702.08326 Quantum Gases +1702.08327 Databases +1702.08328 Classical Analysis and ODEs +1702.08329 Mesoscale and Nanoscale Physics +1702.08330 Atomic Physics +1702.08331 Strongly Correlated Electrons +1702.08332 Medical Physics +1702.08333 Mesoscale and Nanoscale Physics +1702.08334 Computer Science and Game Theory +1702.08336 Computer Vision and Pattern Recognition +1702.08337 Lattice +1702.08339 Information Theory +1702.08340 Numerical Analysis +1702.08343 Machine Learning +1702.08345 Tissues and Organs +1702.08346 Probability +1702.08347 Materials Science +1702.08348 Mesoscale and Nanoscale Physics +1702.08349 Computers and Society +1702.08350 Logic +1702.08351 Combinatorics +1702.08352 Logic +1702.08353 High Energy Astrophysical Phenomena +1702.08357 Systems and Control +1702.08358 Number Theory +1702.08359 Machine Learning +1702.08360 Learning +1702.08361 Materials Science +1702.08362 +1702.08363 Geophysics +1702.08364 Algebraic Geometry +1702.08365 Mesoscale and Nanoscale Physics +1702.08366 Analysis of PDEs +1702.08367 Artificial Intelligence +1702.08368 Probability +1702.08369 Computational Physics +1702.08370 Probability +1702.08371 Probability +1702.08372 Systems and Control +1702.08373 Combinatorics +1702.08374 Probability +1702.08375 +1702.08376 Robotics +1702.08377 Distributed, Parallel, and Cluster Computing +1702.08378 Materials Science +1702.08379 Computer Vision and Pattern Recognition +1702.08380 Computational Geometry +1702.08381 +1702.08382 Optimization and Control +1702.08383 High Energy Astrophysical Phenomena +1702.08384 Group Theory +1702.08385 Numerical Analysis +1702.08386 Optics +1702.08387 Probability +1702.08388 Computation and Language +1702.08389 Machine Learning +1702.08390 Instrumentation and Methods for Astrophysics +1702.08391 Economics +1702.08392 Discrete Mathematics +1702.08396 Learning +1702.08397 Computation +1702.08398 Learning +1702.08399 Data Analysis, Statistics and Probability +1702.08402 Machine Learning +1702.08403 Number Theory +1702.08404 Theory +1702.08405 Logic +1702.08406 Materials Science +1702.08407 +1702.08408 Mesoscale and Nanoscale Physics +1702.08409 Databases +1702.08411 Populations and Evolution +1702.08412 +1702.08413 +1702.08414 Differential Geometry +1702.08415 Data Structures and Algorithms +1702.08416 Fluid Dynamics +1702.08417 Phenomenology +1702.08418 +1702.08419 +1702.08420 Machine Learning +1702.08421 Neurons and Cognition +1702.08424 Theory +1702.08425 Mathematical Software +1702.08427 +1702.08428 Algebraic Geometry +1702.08429 Instrumentation and Methods for Astrophysics +1702.08430 Phenomenology +1702.08431 Machine Learning +1702.08432 Chemical Physics +1702.08433 Probability +1702.08436 High Energy Astrophysical Phenomena +quant-ph/0403160 +0804.4167 Superconductivity +0810.4305 Mesoscale and Nanoscale Physics +1010.2472 Discrete Mathematics +1011.4583 Number Theory +1112.0878 Differential Geometry +1201.4559 Differential Geometry +1204.5787 Algebraic Geometry +1207.2505 Information Theory +1207.3459 Algebraic Topology +1208.4641 Number Theory +1209.3523 Discrete Mathematics +1304.7063 +1307.4104 +1308.5342 Populations and Evolution +1308.5450 Combinatorics +1309.5336 Combinatorics +1310.7708 Numerical Analysis +1311.4856 Analysis of PDEs +1312.2580 +1312.6362 Fluid Dynamics +1312.6439 Genomics +1401.0819 Solar and Stellar Astrophysics +1402.1813 Combinatorics +1402.1999 Combinatorics +1403.2678 Fluid Dynamics +1404.2019 Data Structures and Algorithms +1404.2055 Solar and Stellar Astrophysics +1405.0203 Information Theory +1405.6571 Populations and Evolution +1406.1574 Rings and Algebras +1407.6010 Phenomenology +1408.2812 Computational Complexity +1408.6253 Geophysics +1409.4511 Computer Science and Game Theory +1409.6752 +1410.1247 Probability +1410.5999 Other Condensed Matter +1411.2110 Classical Analysis and ODEs +1411.3334 +1411.4352 Combinatorics +1411.4943 Computer Science and Game Theory +1412.3054 Combinatorics +1501.01869 Probability +1501.03189 Computational Physics +1501.04417 Combinatorics +1501.06744 Symplectic Geometry +1502.03472 Representation Theory +1502.04147 Computer Science and Game Theory +1503.02298 Combinatorics +1503.03107 Number Theory +1503.03322 Neurons and Cognition +1503.09084 Numerical Analysis +1504.06436 Mesoscale and Nanoscale Physics +1505.00774 Neurons and Cognition +1505.01170 Cosmology and Nongalactic Astrophysics +1505.03108 Algebraic Geometry +1505.05697 Distributed, Parallel, and Cluster Computing +1505.05708 Analysis of PDEs +1505.05927 Combinatorics +1505.06582 Numerical Analysis +1506.00256 Analysis of PDEs +1506.03003 History and Philosophy of Physics +1506.04497 Dynamical Systems +1506.06775 Algebraic Topology +1506.08834 +1507.03041 Differential Geometry +1508.03765 Information Theory +1508.05546 Algebraic Geometry +1508.07408 Classical Analysis and ODEs +1509.01739 +1509.05239 Combinatorics +1510.00057 Geometric Topology +1510.04009 Analysis of PDEs +1510.04884 Representation Theory +1510.08350 Functional Analysis +1511.00282 Methodology +1511.01214 Machine Learning +1511.01608 Classical Analysis and ODEs +1511.02599 Data Structures and Algorithms +1511.04935 Risk Management +1511.05479 Computational Geometry +1511.06035 Distributed, Parallel, and Cluster Computing +1511.07989 Cosmology and Nongalactic Astrophysics +1511.08488 Artificial Intelligence +1511.09340 Number Theory +1512.02596 Number Theory +1512.03128 Hardware Architecture +1512.03489 Statistics Theory +1512.04472 Phenomenology +1512.05569 Artificial Intelligence +1512.07499 Algebraic Geometry +1512.07702 Algebraic Topology +1512.08389 Theory +1601.00369 +1601.01533 Analysis of PDEs +1601.01774 +1601.02269 Combinatorics +1601.02403 Computation and Language +1601.03862 +1601.07855 Symplectic Geometry +1602.00708 +1602.00771 Optimization and Control +1602.02633 Logic +1602.02796 Number Theory +1602.03515 Number Theory +1602.03996 Probability +1602.04291 Phenomenology +1602.04514 Information Theory +1602.08504 Logic +1602.08878 +1603.00567 Databases +1603.01212 Analysis of PDEs +1603.01254 Theory +1603.01821 Dynamical Systems +1603.03169 Analysis of PDEs +1603.04856 Theory +1603.05133 Numerical Analysis +1603.05562 Mesoscale and Nanoscale Physics +1603.05755 Solar and Stellar Astrophysics +1603.06034 General Finance +1603.07233 Dynamical Systems +1603.07539 Statistical Mechanics +1603.08157 +1603.08663 Functional Analysis +1603.09375 Disordered Systems and Neural Networks +1603.09656 Fluid Dynamics +1604.00024 Phenomenology +1604.01558 Algebraic Topology +1604.03061 Numerical Analysis +1604.03996 Statistical Finance +1604.04516 Statistics Theory +1604.06368 Representation Theory +1604.06439 Theory +1604.06750 Numerical Analysis +1604.06931 Combinatorics +1604.07129 Differential Geometry +1604.07992 Mesoscale and Nanoscale Physics +1605.00471 Commutative Algebra +1605.02738 Cosmology and Nongalactic Astrophysics +1605.03628 Optimization and Control +1605.03799 +1605.03880 Rings and Algebras +1605.05146 Physics and Society +1605.05725 Optimization and Control +1605.06073 Soft Condensed Matter +1605.06171 Probability +1605.06724 Analysis of PDEs +1605.06874 Geometric Topology +1605.07286 Differential Geometry +1605.07320 Systems and Control +1605.07524 Networking and Internet Architecture +1605.08018 Category Theory +1605.08824 Methodology +1606.00611 Computer Vision and Pattern Recognition +1606.01164 Neural and Evolutionary Computing +1606.01222 Analysis of PDEs +1606.01523 Statistical Mechanics +1606.03122 Functional Analysis +1606.03417 Networking and Internet Architecture +1606.03493 Networking and Internet Architecture +1606.04680 Logic in Computer Science +1606.05113 Numerical Analysis +1606.05269 +1606.05692 Rings and Algebras +1606.05870 Theory +1606.05983 Differential Geometry +1606.06403 +1606.07008 +1606.07109 Commutative Algebra +1606.07319 Fluid Dynamics +1606.07355 +1606.07504 Optimization and Control +1606.07677 Instrumentation and Detectors +1606.08038 Fluid Dynamics +1606.08260 Atomic Physics +1606.09271 Differential Geometry +1607.00713 Rings and Algebras +1607.01262 Algebraic Geometry +1607.01489 Statistical Mechanics +1607.01936 Phenomenology +1607.01966 Exactly Solvable and Integrable Systems +1607.03470 Representation Theory +1607.03484 Pattern Formation and Solitons +1607.03524 K-Theory and Homology +1607.03961 Data Structures and Algorithms +1607.04357 Systems and Control +1607.04563 Computational Physics +1607.04698 Group Theory +1607.04841 Geometric Topology +1607.05904 Mesoscale and Nanoscale Physics +1607.05929 Numerical Analysis +1607.06025 Artificial Intelligence +1607.06729 +1607.06823 Experiment +1607.07499 Geometric Topology +1607.07886 High Energy Astrophysical Phenomena +1607.08250 Solar and Stellar Astrophysics +1607.08355 Statistical Mechanics +1607.08435 Rings and Algebras +1608.00015 Commutative Algebra +1608.00290 +1608.00304 Systems and Control +1608.00679 Mesoscale and Nanoscale Physics +1608.00768 Mathematical Finance +1608.01095 Phenomenology +1608.01516 Mesoscale and Nanoscale Physics +1608.02273 Methodology +1608.02818 Chemical Physics +1608.03927 Classical Analysis and ODEs +1608.05027 Theory +1608.05339 Computer Vision and Pattern Recognition +1608.06020 Functional Analysis +1608.06461 Superconductivity +1608.06479 +1608.06485 Phenomenology +1608.07498 Optimization and Control +1608.07537 Accelerator Physics +1608.07574 Fluid Dynamics +1608.08443 Numerical Analysis +1609.00261 Mesoscale and Nanoscale Physics +1609.00931 Solar and Stellar Astrophysics +1609.01263 Strongly Correlated Electrons +1609.01890 Analysis of PDEs +1609.02422 Information Theory +1609.02916 Statistical Mechanics +1609.03008 +1609.03137 Optimization and Control +1609.03784 Distributed, Parallel, and Cluster Computing +1609.03999 Probability +1609.04759 +1609.05263 Classical Analysis and ODEs +1609.05880 Systems and Control +1609.06220 Materials Science +1609.06303 Strongly Correlated Electrons +1609.06729 Theory +1609.07640 Strongly Correlated Electrons +1609.08185 Earth and Planetary Astrophysics +1609.08297 Populations and Evolution +1609.08327 Algebraic Geometry +1609.08572 Cosmology and Nongalactic Astrophysics +1609.08959 Cosmology and Nongalactic Astrophysics +1609.09056 Combinatorics +1610.00005 +1610.00035 Optimization and Control +1610.00406 Cosmology and Nongalactic Astrophysics +1610.00422 Data Analysis, Statistics and Probability +1610.00441 Symplectic Geometry +1610.00736 +1610.00869 Mesoscale and Nanoscale Physics +1610.01081 Theory +1610.01232 Earth and Planetary Astrophysics +1610.01547 Symplectic Geometry +1610.01745 Analysis of PDEs +1610.02169 Mesoscale and Nanoscale Physics +1610.03590 Mesoscale and Nanoscale Physics +1610.04325 Computer Vision and Pattern Recognition +1610.04452 +1610.04642 Mesoscale and Nanoscale Physics +1610.05041 Superconductivity +1610.06032 +1610.06037 Metric Geometry +1610.06276 Learning +1610.06572 Cosmology and Nongalactic Astrophysics +1610.06662 Physics and Society +1610.06688 Computer Vision and Pattern Recognition +1610.06952 Data Analysis, Statistics and Probability +1610.07013 Soft Condensed Matter +1610.07390 Programming Languages +1610.07484 Solar and Stellar Astrophysics +1610.07489 Theory +1610.07503 Theory +1610.07625 Strongly Correlated Electrons +1610.07718 Data Structures and Algorithms +1610.07786 Materials Science +1610.07934 +1610.08099 +1610.08180 Cosmology and Nongalactic Astrophysics +1610.08961 Other Condensed Matter +1610.09209 Logic in Computer Science +1610.09574 Computational Complexity +1610.09854 Classical Analysis and ODEs +1610.09962 Distributed, Parallel, and Cluster Computing +1610.10051 Cosmology and Nongalactic Astrophysics +1611.00210 Phenomenology +1611.00332 +1611.00394 Theory +1611.00963 Functional Analysis +1611.01134 Strongly Correlated Electrons +1611.01540 Machine Learning +1611.01693 Probability +1611.01708 Machine Learning +1611.02013 +1611.02364 Computer Vision and Pattern Recognition +1611.02602 Superconductivity +1611.02716 Astrophysics of Galaxies +1611.02728 Theory +1611.02874 Statistics Theory +1611.03153 +1611.03158 Learning +1611.03232 Physics and Society +1611.03269 Statistical Mechanics +1611.03357 Instrumentation and Detectors +1611.03910 Algebraic Geometry +1611.04429 Information Theory +1611.04710 Strongly Correlated Electrons +1611.05128 Computer Vision and Pattern Recognition +1611.05186 Systems and Control +1611.05311 Combinatorics +1611.05356 Networking and Internet Architecture +1611.05583 Cosmology and Nongalactic Astrophysics +1611.05980 Programming Languages +1611.06183 +1611.06534 Machine Learning +1611.06845 Computer Science and Game Theory +1611.06850 Probability +1611.07304 Theory +1611.07928 Statistical Mechanics +1611.07939 Statistical Mechanics +1611.08055 Systems and Control +1611.08315 Computational Geometry +1611.08609 Phenomenology +1611.08673 Quantum Gases +1611.08808 +1611.08931 Experiment +1611.09243 Networking and Internet Architecture +1611.09330 Theory +1611.09385 +1611.09905 Astrophysics of Galaxies +1612.00089 Computer Vision and Pattern Recognition +1612.00808 Phenomenology +1612.01086 Artificial Intelligence +1612.01477 Commutative Algebra +1612.02503 Databases +1612.03222 Optics +1612.03582 +1612.03687 Analysis of PDEs +1612.03892 Instrumentation and Detectors +1612.03969 Computation and Language +1612.04086 Phenomenology +1612.04208 Data Structures and Algorithms +1612.04856 Earth and Planetary Astrophysics +1612.05120 Information Theory +1612.05241 Differential Geometry +1612.05500 Theory +1612.05585 +1612.06397 Mesoscale and Nanoscale Physics +1612.06521 Complex Variables +1612.06538 Phenomenology +1612.07008 Earth and Planetary Astrophysics +1612.07422 Dynamical Systems +1612.08457 Neurons and Cognition +1612.08867 Phenomenology +1612.09016 Algebraic Geometry +1612.09166 Mesoscale and Nanoscale Physics +1612.09541 Analysis of PDEs +1701.00335 Distributed, Parallel, and Cluster Computing +1701.00389 Number Theory +1701.00526 Astrophysics of Galaxies +1701.00693 Superconductivity +1701.00892 Computer Vision and Pattern Recognition +1701.01110 Physics and Society +1701.01210 Atomic Physics +1701.01387 Logic +1701.01620 +1701.01823 Chemical Physics +1701.01919 Chaotic Dynamics +1701.02188 Computational Complexity +1701.02207 Number Theory +1701.02317 Strongly Correlated Electrons +1701.03587 Mesoscale and Nanoscale Physics +1701.03697 Analysis of PDEs +1701.03887 Mesoscale and Nanoscale Physics +1701.04239 +1701.04466 Information Theory +1701.04702 Quantum Gases +1701.04823 High Energy Astrophysical Phenomena +1701.04880 Statistics Theory +1701.05042 High Energy Astrophysical Phenomena +1701.05824 +1701.06014 Methodology +1701.06512 +1701.06734 Information Theory +1701.06789 +1701.07210 Plasma Physics +1701.07212 +1701.07733 +1701.07833 Theory +1701.08207 Atomic Physics +1701.08240 Theory +1701.08402 Logic in Computer Science +1701.08716 Computers and Society +1701.08766 Theory +1701.08824 Theory +1702.00176 Cosmology and Nongalactic Astrophysics +1702.00609 Methodology +1702.00730 Theory +1702.00798 Combinatorics +1702.00824 Computer Vision and Pattern Recognition +1702.01403 Soft Condensed Matter +1702.01445 Commutative Algebra +1702.01473 Numerical Analysis +1702.01611 Mesoscale and Nanoscale Physics +1702.01846 Computer Vision and Pattern Recognition +1702.01910 Computational Physics +1702.02008 High Energy Astrophysical Phenomena +1702.03112 Cryptography and Security +1702.04093 Mesoscale and Nanoscale Physics +1702.04438 Biological Physics +1702.04680 Computer Vision and Pattern Recognition +1702.04954 +1702.05043 Neural and Evolutionary Computing +1702.05071 +1702.05289 Machine Learning +1702.05453 Theory +1702.05654 Networking and Internet Architecture +1702.05720 Probability +1702.05792 Systems and Control +1702.06160 Solar and Stellar Astrophysics +1702.06527 Social and Information Networks +1702.06673 Social and Information Networks +1702.06763 Learning +1702.07039 Combinatorics +1702.07390 Social and Information Networks +1702.07447 Materials Science +1702.07765 Commutative Algebra +1702.07876 General Mathematics +1702.08045 Computational Complexity +1702.08234 Cryptography and Security +1702.08652 Computer Vision and Pattern Recognition +1702.08693 Theory +1702.08733 +1703.00297 Computer Vision and Pattern Recognition +1703.00382 +1703.00538 Computation and Language +1703.00971 Fluid Dynamics +1703.01002 Applications +1703.01015 Classical Analysis and ODEs +1703.01075 Astrophysics of Galaxies +1703.01086 Computer Vision and Pattern Recognition +1703.01253 Machine Learning +1703.01390 Phenomenology +1703.01591 Theory +1703.01609 Analysis of PDEs +1703.01765 Probability +1703.01828 Combinatorics +1703.02177 Methodology +1703.02822 Statistical Mechanics +1703.03107 Social and Information Networks +1703.03199 Medical Physics +1703.03202 Medical Physics +1703.03209 Group Theory +1703.03309 Combinatorics +1703.03371 Combinatorics +1703.03450 Representation Theory +1703.03630 Theory +1703.03639 Combinatorics +1703.03738 High Energy Astrophysical Phenomena +1703.03866 Phenomenology +1703.04006 Information Theory +1703.04152 Theory +1703.04229 Analysis of PDEs +1703.04239 Mesoscale and Nanoscale Physics +1703.04397 Experiment +1703.04401 Biological Physics +1703.04482 Social and Information Networks +1703.04617 Computation and Language +1703.04686 Solar and Stellar Astrophysics +1703.04737 Lattice +1703.04761 Logic +1703.04847 Number Theory +1703.04911 Mesoscale and Nanoscale Physics +1703.05144 Computation +1703.05437 Functional Analysis +1703.05645 Accelerator Physics +1703.05776 Theory +1703.05798 Theory +1703.05840 Learning +1703.05870 Computer Vision and Pattern Recognition +1703.06007 Statistical Mechanics +1703.06070 Systems and Control +1703.06182 Learning +1703.06186 Mesoscale and Nanoscale Physics +1703.06213 Algebraic Geometry +1703.06264 Neurons and Cognition +1703.06270 Neurons and Cognition +1703.06279 Information Theory +1703.06360 Solar and Stellar Astrophysics +1703.06412 Computer Vision and Pattern Recognition +1703.06472 Cosmology and Nongalactic Astrophysics +1703.06593 Materials Science +1703.06594 Atmospheric and Oceanic Physics +1703.06607 +1703.06675 Instrumentation and Detectors +1703.06727 Earth and Planetary Astrophysics +1703.06752 +1703.06778 History and Overview +1703.06835 Mesoscale and Nanoscale Physics +1703.06837 Differential Geometry +1703.06862 General Topology +1703.06876 High Energy Astrophysical Phenomena +1703.06917 Numerical Analysis +1703.06959 Learning +1703.07028 Logic in Computer Science +1703.07066 Number Theory +1703.07092 Optics +1703.07191 Information Theory +1703.07195 Computer Vision and Pattern Recognition +1703.07283 +1703.07464 Computer Vision and Pattern Recognition +1703.07612 Systems and Control +1703.07644 +1703.07659 Computers and Society +1703.07737 Computer Vision and Pattern Recognition +1703.07744 Phenomenology +1703.07769 Mesoscale and Nanoscale Physics +1703.07783 Strongly Correlated Electrons +1703.07817 Functional Analysis +1703.07908 Information Theory +1703.07919 Instrumentation and Detectors +1703.07921 +1703.07979 +1703.07985 Accelerator Physics +1703.08023 Theory +1703.08025 Computer Vision and Pattern Recognition +1703.08046 Physics and Society +1703.08066 Materials Science +1703.08088 Computation and Language +1703.08192 Theory +1703.08275 Number Theory +1703.08341 +1703.08380 +1703.08438 Optics +1703.08448 Computer Vision and Pattern Recognition +1703.08456 Cosmology and Nongalactic Astrophysics +1703.08474 Strongly Correlated Electrons +1703.08517 Differential Geometry +1703.08539 Physics and Society +1703.08540 Emerging Technologies +1703.08541 Rings and Algebras +1703.08542 Chemical Physics +1703.08543 +1703.08545 Mesoscale and Nanoscale Physics +1703.08546 Earth and Planetary Astrophysics +1703.08547 Astrophysics of Galaxies +1703.08548 Earth and Planetary Astrophysics +1703.08549 Astrophysics of Galaxies +1703.08550 Astrophysics of Galaxies +1703.08553 Astrophysics of Galaxies +1703.08554 Metric Geometry +1703.08555 Soft Condensed Matter +1703.08556 Analysis of PDEs +1703.08558 Theory +1703.08559 Information Theory +1703.08560 Earth and Planetary Astrophysics +1703.08562 Phenomenology +1703.08563 Number Theory +1703.08564 Dynamical Systems +1703.08566 Solar and Stellar Astrophysics +1703.08567 Fluid Dynamics +1703.08569 Representation Theory +1703.08570 Optimization and Control +1703.08571 Lattice +1703.08572 Phenomenology +1703.08574 Biological Physics +1703.08575 +1703.08576 Statistical Mechanics +1703.08577 Neural and Evolutionary Computing +1703.08579 Dynamical Systems +1703.08580 Computer Vision and Pattern Recognition +1703.08581 Computation and Language +1703.08582 Materials Science +1703.08583 Quantitative Methods +1703.08584 Materials Science +1703.08585 Cosmology and Nongalactic Astrophysics +1703.08586 +1703.08587 Astrophysics of Galaxies +1703.08588 Geometric Topology +1703.08589 Optimization and Control +1703.08590 Social and Information Networks +1703.08591 Numerical Analysis +1703.08592 Analysis of PDEs +1703.08593 Information Retrieval +1703.08594 Complex Variables +1703.08595 Learning +1703.08596 Methodology +1703.08597 Materials Science +1703.08598 Astrophysics of Galaxies +1703.08599 +1703.08600 Functional Analysis +1703.08601 Number Theory +1703.08602 Quantum Gases +1703.08605 Instrumentation and Detectors +1703.08606 Logic +1703.08607 Computer Science and Game Theory +1703.08608 Analysis of PDEs +1703.08609 Astrophysics of Galaxies +1703.08610 Plasma Physics +1703.08611 Differential Geometry +1703.08612 Robotics +1703.08613 +1703.08614 Social and Information Networks +1703.08615 Soft Condensed Matter +1703.08616 Number Theory +1703.08617 Computer Vision and Pattern Recognition +1703.08618 +1703.08619 Machine Learning +1703.08620 Methodology +1703.08621 Combinatorics +1703.08622 Superconductivity +1703.08623 Strongly Correlated Electrons +1703.08624 Fluid Dynamics +1703.08625 Information Theory +1703.08626 Mesoscale and Nanoscale Physics +1703.08627 Computation +1703.08628 Computer Vision and Pattern Recognition +1703.08629 Cosmology and Nongalactic Astrophysics +1703.08630 Cryptography and Security +1703.08631 K-Theory and Homology +1703.08632 Optics +1703.08634 Logic +1703.08635 Superconductivity +1703.08636 Computer Science and Game Theory +1703.08637 Strongly Correlated Electrons +1703.08638 Dynamical Systems +1703.08639 Earth and Planetary Astrophysics +1703.08641 Representation Theory +1703.08642 Information Theory +1703.08645 +1703.08646 Computation and Language +1703.08647 Earth and Planetary Astrophysics +1703.08648 Statistics Theory +1703.08649 Optimization and Control +1703.08650 Differential Geometry +1703.08651 Computer Vision and Pattern Recognition +1703.08652 Combinatorics +1703.08653 Computer Vision and Pattern Recognition +1703.08654 +1703.08655 +1703.08656 Superconductivity +1703.08657 Information Theory +1703.08658 Data Structures and Algorithms +1703.08659 +1703.08660 Materials Science +1703.08661 Systems and Control +1703.08662 Theory +1703.08663 Quantitative Methods +1703.08664 Algebraic Geometry +1703.08665 Methodology +1703.08666 +1703.08668 Databases +1703.08669 Theory +1703.08670 +1703.08671 High Energy Astrophysical Phenomena +1703.08672 Commutative Algebra +1703.08673 Statistical Mechanics +1703.08674 Phenomenology +1703.08675 Combinatorics +1703.08676 Computation +1703.08677 Phenomenology +1703.08678 Pattern Formation and Solitons +1703.08679 Disordered Systems and Neural Networks +1703.08680 Superconductivity +1703.08681 Experiment +1703.08682 Superconductivity +1703.08683 Programming Languages +1703.08684 Combinatorics +1703.08686 +1703.08687 Representation Theory +1703.08688 Cosmology and Nongalactic Astrophysics +1703.08689 Representation Theory +1703.08690 Cosmology and Nongalactic Astrophysics +1703.08691 Materials Science +1703.08692 Systems and Control +1703.08693 Category Theory +1703.08694 Programming Languages +1703.08695 Theory +1703.08696 Probability +1703.08697 Computer Vision and Pattern Recognition +1703.08698 Computer Science and Game Theory +1703.08699 Lattice +1703.08700 +1703.08701 Computation and Language +1703.08702 Distributed, Parallel, and Cluster Computing +1703.08703 Dynamical Systems +1703.08704 Theory +1703.08705 Computation and Language +1703.08706 Probability +1703.08707 Superconductivity +1703.08709 Materials Science +1703.08710 Computer Vision and Pattern Recognition +1703.08711 Optics +1703.08712 Combinatorics +1703.08713 Astrophysics of Galaxies +1703.08714 Analysis of PDEs +1703.08715 Mathematical Finance +1703.08716 Combinatorics +1703.08717 Human-Computer Interaction +1703.08718 Optics +1703.08719 Soft Condensed Matter +1703.08720 Quantum Gases +1703.08721 K-Theory and Homology +1703.08722 Rings and Algebras +1703.08723 Methodology +1703.08725 Representation Theory +1703.08726 Theory +1703.08727 Atmospheric and Oceanic Physics +1703.08728 Combinatorics +1703.08730 Fluid Dynamics +1703.08732 Databases +1703.08733 Rings and Algebras +1703.08735 Combinatorics +1703.08736 Robotics +1703.08737 Machine Learning +1703.08738 Computer Vision and Pattern Recognition +1703.08739 Combinatorics +1703.08740 Materials Science +1703.08741 Methodology +1703.08742 Combinatorics +1703.08743 +1703.08744 Networking and Internet Architecture +1703.08745 Solar and Stellar Astrophysics +1703.08746 Logic in Computer Science +1703.08747 Rings and Algebras +1703.08748 Computation and Language +1703.08749 Theory +1703.08750 Computer Science and Game Theory +1703.08751 Numerical Analysis +1703.08752 Materials Science +1703.08753 Classical Analysis and ODEs +1703.08754 Materials Science +1703.08755 Soft Condensed Matter +1703.08756 Information Theory +1703.08758 +1703.08759 Differential Geometry +1703.08760 Instrumentation and Detectors +1703.08761 Cryptography and Security +1703.08762 Artificial Intelligence +1703.08763 Optics +1703.08764 Computer Vision and Pattern Recognition +1703.08765 Number Theory +1703.08766 Quantum Algebra +1703.08767 Numerical Analysis +1703.08768 Combinatorics +1703.08769 Computer Vision and Pattern Recognition +1703.08770 Computer Vision and Pattern Recognition +1703.08771 Plasma Physics +1703.08772 Machine Learning +1703.08773 +1703.08774 Learning +1703.08775 Classical Analysis and ODEs +1703.08776 Social and Information Networks +1703.08777 Statistical Mechanics +1703.08780 Mesoscale and Nanoscale Physics +1703.08781 Statistical Finance +1703.08782 Representation Theory +1703.08783 Soft Condensed Matter +1703.08784 Information Theory +1703.08785 Number Theory +1703.08786 Chemical Physics +1703.08787 Experiment +1703.08788 Lattice +1703.08789 Phenomenology +1703.08790 Data Structures and Algorithms +1703.08791 Biological Physics +1703.08792 Genomics +1703.08793 Analysis of PDEs +1703.08794 Theory +1703.08796 Analysis of PDEs +1703.08797 Analysis of PDEs +1703.08798 Cosmology and Nongalactic Astrophysics +1703.08799 Phenomenology +1703.08801 Strongly Correlated Electrons +1703.08802 Group Theory +1703.08803 Software Engineering +1703.08804 Numerical Analysis +1703.08805 Optics +1703.08806 Theory +1703.08807 Economics +1703.08808 Numerical Analysis +1703.08809 Cosmology and Nongalactic Astrophysics +1703.08810 Quantum Gases +1703.08811 Probability +1703.08812 Trading and Market Microstructure +1703.08813 Social and Information Networks +1703.08814 Representation Theory +1703.08815 Earth and Planetary Astrophysics +1703.08816 Learning +1703.08817 Analysis of PDEs +1703.08818 Systems and Control +1703.08819 Earth and Planetary Astrophysics +1703.08820 +1703.08821 Probability +1703.08822 +1703.08823 Performance +1703.08824 Computational Physics +1703.08825 Neural and Evolutionary Computing +1703.08826 Combinatorics +1703.08828 Geometric Topology +1703.08829 Earth and Planetary Astrophysics +1703.08830 Representation Theory +1703.08831 Distributed, Parallel, and Cluster Computing +1703.08832 Analysis of PDEs +1703.08833 Optics +1703.08834 Combinatorics +1703.08835 Computational Engineering, Finance, and Science +1703.08836 Computer Vision and Pattern Recognition +1703.08837 Computer Vision and Pattern Recognition +1703.08838 Distributed, Parallel, and Cluster Computing +1703.08839 Probability +1703.08840 Learning +1703.08841 Optimization and Control +1703.08842 Number Theory +1703.08843 Statistics Theory +1703.08844 +1703.08846 Optimization and Control +1703.08848 Theory +1703.08849 Combinatorics +1703.08850 Rings and Algebras +1703.08851 Biomolecules +1703.08852 Classical Analysis and ODEs +1703.08853 Information Theory +1703.08855 Information Retrieval +1703.08856 Phenomenology +1703.08857 Numerical Analysis +1703.08858 +1703.08859 Computers and Society +1703.08860 Theory +1703.08861 Representation Theory +1703.08862 Robotics +1703.08863 Number Theory +1703.08864 Computation and Language +1703.08866 Computer Vision and Pattern Recognition +1703.08867 Instrumentation and Methods for Astrophysics +1703.08868 Commutative Algebra +1703.08869 Rings and Algebras +1703.08870 +1703.08871 Experiment +1703.08872 Numerical Analysis +1703.08873 High Energy Astrophysical Phenomena +1703.08874 Geometric Topology +1703.08875 Fluid Dynamics +1703.08876 Instrumentation and Detectors +1703.08877 Solar and Stellar Astrophysics +1703.08878 Systems and Control +1703.08879 Logic +1703.08880 Group Theory +1703.08881 Optimization and Control +1703.08882 Methodology +1703.08883 Classical Analysis and ODEs +1703.08884 Earth and Planetary Astrophysics +1703.08885 Computation and Language +1703.08886 Differential Geometry +1703.08887 Probability +1703.08888 Materials Science +1703.08889 Algebraic Geometry +1703.08890 Quantum Algebra +1703.08891 Number Theory +1703.08892 Soft Condensed Matter +1703.08893 Computer Vision and Pattern Recognition +1703.08894 +1703.08895 Cosmology and Nongalactic Astrophysics +1703.08896 Optimization and Control +1703.08897 Computer Vision and Pattern Recognition +1703.08898 Optimization and Control +1703.08899 Superconductivity +1703.08900 Information Theory +1703.08901 Astrophysics of Galaxies +1703.08903 Geometric Topology +1703.08904 Geometric Topology +1703.08905 Distributed, Parallel, and Cluster Computing +1703.08906 Systems and Control +1703.08907 Operator Algebras +1703.08908 Metric Geometry +1703.08909 Materials Science +1703.08910 Mesoscale and Nanoscale Physics +1703.08911 Phenomenology +1703.08912 Computer Vision and Pattern Recognition +1703.08913 Soft Condensed Matter +1703.08914 Numerical Analysis +1703.08917 Computer Vision and Pattern Recognition +1703.08918 Algebraic Geometry +1703.08919 Computer Vision and Pattern Recognition +1703.08920 Applications +1703.08921 +1703.08922 Artificial Intelligence +1703.08923 Commutative Algebra +1703.08924 Probability +1703.08926 Materials Science +1703.08927 Theory +1703.08928 Computer Science and Game Theory +1703.08929 +1703.08930 Robotics +1703.08931 Data Structures and Algorithms +1703.08932 Solar and Stellar Astrophysics +1703.08933 Learning +1703.08934 Molecular Networks +1703.08935 Optimization and Control +1703.08936 Logic in Computer Science +1703.08937 Machine Learning +1703.08938 Optics +1703.08939 Analysis of PDEs +1703.08940 Data Structures and Algorithms +1703.08941 Information Theory +1703.08944 Robotics +1703.08945 Combinatorics +1703.08946 Statistical Mechanics +1703.08947 Networking and Internet Architecture +1703.08948 Complex Variables +1703.08949 Quantum Gases +1703.08950 Quantitative Methods +1703.08951 +1703.08952 +1703.08953 Analysis of PDEs +1703.08954 Populations and Evolution +1703.08955 Distributed, Parallel, and Cluster Computing +1703.08956 Logic in Computer Science +1703.08958 Optimization and Control +1703.08959 Mesoscale and Nanoscale Physics +1703.08960 Materials Science +1703.08961 Computer Vision and Pattern Recognition +1703.08962 Mesoscale and Nanoscale Physics +1703.08963 Fluid Dynamics +1703.08966 Computer Vision and Pattern Recognition +1703.08967 Number Theory +1703.08968 Group Theory +1703.08969 Atomic Physics +1703.08970 Learning +1703.08972 Machine Learning +1703.08973 Astrophysics of Galaxies +1703.08974 Optics +1703.08975 Instrumentation and Methods for Astrophysics +1703.08976 +1703.08977 +1703.08978 Probability +1703.08979 +1703.08980 Group Theory +1703.08982 Logic in Computer Science +1703.08983 Soft Condensed Matter +1703.08984 Superconductivity +1703.08985 Networking and Internet Architecture +1703.08986 Astrophysics of Galaxies +1703.08988 Instrumentation and Methods for Astrophysics +1703.08990 Materials Science +1703.08992 Solar and Stellar Astrophysics +1703.08993 Theory +1703.08994 Applications +1703.08995 Methodology +1703.08996 Solar and Stellar Astrophysics +1703.08997 Astrophysics of Galaxies +1703.08998 Number Theory +1703.08999 Systems and Control +1703.09001 Dynamical Systems +1703.09002 Dynamical Systems +1703.09003 Dynamical Systems +1703.09004 Instrumentation and Detectors +1703.09005 Optimization and Control +1703.09006 Representation Theory +1703.09007 Applications +1703.09008 Information Theory +1703.09009 +1703.09010 Earth and Planetary Astrophysics +1703.09011 Probability +1703.09012 Optimization and Control +1703.09013 Computation and Language +1703.09014 Soft Condensed Matter +1703.09016 Materials Science +1703.09017 Solar and Stellar Astrophysics +1703.09018 +1703.09020 Phenomenology +1703.09021 Phenomenology +1703.09022 Phenomenology +1703.09023 Social and Information Networks +1703.09024 Algebraic Geometry +1703.09025 Networking and Internet Architecture +1703.09026 Computer Vision and Pattern Recognition +1703.09027 Analysis of PDEs +1703.09029 Information Theory +1703.09030 Cellular Automata and Lattice Gases +1703.09031 Medical Physics +1703.09032 Group Theory +1703.09034 Logic in Computer Science +1703.09035 Neural and Evolutionary Computing +1703.09036 Physics and Society +1703.09037 Dynamical Systems +1703.09038 Statistical Mechanics +1703.09039 Computer Vision and Pattern Recognition +1703.09040 Materials Science +1703.09041 Social and Information Networks +1703.09042 Information Theory +1703.09043 Phenomenology +1703.09044 Medical Physics +1703.09045 +1703.09046 Software Engineering +1703.09047 +1703.09048 Classical Analysis and ODEs +1703.09049 +1703.09051 Strongly Correlated Electrons +1703.09052 High Energy Astrophysical Phenomena +1703.09053 Plasma Physics +1703.09054 Cosmology and Nongalactic Astrophysics +1703.09055 Fluid Dynamics +1703.09056 +1703.09058 Materials Science +1703.09059 Accelerator Physics +1703.09060 +1703.09061 Methodology +1703.09062 Methodology +1703.09063 Soft Condensed Matter +1703.09065 Phenomenology +1703.09066 Instrumentation and Detectors +1703.09067 +1703.09068 Learning +1703.09069 +1703.09070 Plasma Physics +1703.09071 Materials Science +1703.09072 History and Philosophy of Physics +1703.09073 Materials Science +1703.09074 Numerical Analysis +1703.09075 Strongly Correlated Electrons +1703.09076 Computer Vision and Pattern Recognition +1703.09077 Number Theory +1703.09078 Populations and Evolution +1703.09079 Materials Science +1703.09080 Cryptography and Security +1703.09082 Optics +1703.09083 Computer Science and Game Theory +1703.09084 Experiment +1703.09085 Numerical Analysis +1703.09086 Phenomenology +1703.09088 Number Theory +1703.09089 Geometric Topology +1703.09090 Multimedia +1703.09091 Complex Variables +1703.09092 Operator Algebras +1703.09093 Theory +1703.09094 Analysis of PDEs +1703.09095 Optics +1703.09096 Numerical Analysis +1703.09099 Theory +1703.09101 Analysis of PDEs +1703.09102 Dynamical Systems +1703.09103 Multimedia +1703.09104 Optimization and Control +1703.09105 Probability +1703.09106 Materials Science +1703.09107 Classical Analysis and ODEs +1703.09108 Information Retrieval +1703.09109 Information Retrieval +1703.09110 Atomic and Molecular Clusters +1703.09111 Dynamical Systems +1703.09112 Machine Learning +1703.09113 Representation Theory +1703.09114 +1703.09115 Classical Analysis and ODEs +1703.09116 Fluid Dynamics +1703.09117 Social and Information Networks +1703.09118 High Energy Astrophysical Phenomena +1703.09119 Quantum Gases +1703.09120 Instrumentation and Detectors +1703.09121 Commutative Algebra +1703.09122 +1703.09123 +1703.09124 Methodology +1703.09125 Information Theory +1703.09126 Cosmology and Nongalactic Astrophysics +1703.09127 Experiment +1703.09130 Phenomenology +1703.09131 +1703.09132 Earth and Planetary Astrophysics +1703.09133 +1703.09134 Probability +1703.09135 Complex Variables +1703.09136 Numerical Analysis +1703.09137 Neural and Evolutionary Computing +1703.09138 Geophysics +1703.09139 Solar and Stellar Astrophysics +1703.09140 Metric Geometry +1703.09141 Databases +1703.09142 Mesoscale and Nanoscale Physics +1703.09143 High Energy Astrophysical Phenomena +1703.09145 Computer Vision and Pattern Recognition +1703.09146 Learning +1703.09147 Applications +1703.09148 Theory +1703.09149 +1703.09150 Biological Physics +1703.09151 Number Theory +1703.09152 Astrophysics of Galaxies +1703.09153 Phenomenology +1703.09154 Dynamical Systems +1703.09156 Materials Science +1703.09157 Computer Vision and Pattern Recognition +1703.09158 Mesoscale and Nanoscale Physics +1703.09159 High Energy Astrophysical Phenomena +1703.09160 Astrophysics of Galaxies +1703.09161 Optimization and Control +1703.09162 +1703.09163 Computation +1703.09165 Machine Learning +1703.09166 Optics +1703.09167 Computer Vision and Pattern Recognition +1703.09168 Phenomenology +1703.09169 Soft Condensed Matter +1703.09171 Networking and Internet Architecture +1703.09173 Strongly Correlated Electrons +1703.09174 Atomic Physics +1703.09175 Mesoscale and Nanoscale Physics +1703.09176 Dynamical Systems +1703.09177 Computer Science and Game Theory +1703.09178 +1703.09179 Computer Vision and Pattern Recognition +1703.09180 Optimization and Control +1703.09181 Phenomenology +1703.09182 Atomic Physics +1703.09183 Astrophysics of Galaxies +1703.09184 Theory +1703.09185 Distributed, Parallel, and Cluster Computing +1703.09186 Data Analysis, Statistics and Probability +1703.09187 Optics +1703.09188 Strongly Correlated Electrons +1703.09189 Phenomenology +1703.09190 Number Theory +1703.09191 Mesoscale and Nanoscale Physics +1703.09192 Analysis of PDEs +1703.09193 Databases +1703.09195 Statistical Mechanics +1703.09197 Learning +1703.09198 Probability +1703.09199 Computer Vision and Pattern Recognition +1703.09200 Computer Vision and Pattern Recognition +1703.09201 Differential Geometry +1703.09202 Machine Learning +1703.09203 Theory +1703.09204 Number Theory +1703.09205 Theory +1703.09206 Analysis of PDEs +1703.09207 Machine Learning +1703.09208 Analysis of PDEs +1703.09209 Phenomenology +1703.09212 Cosmology and Nongalactic Astrophysics +physics/0006005 General Physics +physics/0605061 General Physics +quant-ph/0102002 +quant-ph/0106015 +quant-ph/0107076 +0711.1136 Probability +0712.2526 Methodology +0804.4012 Differential Geometry +0805.2003 Differential Geometry +0806.4211 +0808.3251 Mesoscale and Nanoscale Physics +0809.2274 Computation +0810.2749 Neurons and Cognition +0810.5180 Plasma Physics +0812.1786 Dynamical Systems +0901.0652 Differential Geometry +0901.1389 Combinatorics +0902.4218 Multiagent Systems +0904.0302 Strongly Correlated Electrons +0904.2429 Number Theory +0904.3978 Quantum Algebra +0905.0441 Combinatorics +0905.2826 Quantum Gases +0908.3965 Differential Geometry +0909.4147 +0909.5658 Strongly Correlated Electrons +0910.0623 +0910.1053 Differential Geometry +0910.2205 +0910.3113 Combinatorics +0910.4686 Probability +0910.5808 +0911.0875 Quantum Gases +0911.1927 Quantum Gases +0912.3553 Analysis of PDEs +0912.4547 Cosmology and Nongalactic Astrophysics +0912.4740 +1001.1706 +1001.1933 Computer Science and Game Theory +1001.3570 Pricing of Securities +1001.5080 +1001.5245 Differential Geometry +1001.5363 Analysis of PDEs +1002.1022 Atomic Physics +1002.1354 +1002.1406 Information Theory +1002.1628 +1002.2093 +1002.2371 Quantum Gases +1002.2491 General Finance +1002.3502 Mesoscale and Nanoscale Physics +1002.3941 Mesoscale and Nanoscale Physics +1003.0544 Commutative Algebra +1003.0973 Strongly Correlated Electrons +1003.2345 Experiment +1003.2389 Superconductivity +1004.1690 Statistical Mechanics +1004.2636 Mesoscale and Nanoscale Physics +1004.3219 Analysis of PDEs +1004.3746 Strongly Correlated Electrons +1005.0735 Materials Science +1005.3866 Algebraic Geometry +1005.4408 Theory +1005.4467 Chaotic Dynamics +1005.4962 High Energy Astrophysical Phenomena +1005.5164 +1005.5415 Theory +1005.5556 Learning +1005.5736 Combinatorics +1006.0204 Phenomenology +1006.0276 Combinatorics +1006.0369 +1006.0389 Chemical Physics +1006.0435 Materials Science +1006.0451 Experiment +1006.0472 Combinatorics +1006.0480 Populations and Evolution +1006.0495 Cryptography and Security +1006.0505 Statistics Theory +1006.0507 Cell Behavior +1006.0508 Group Theory +1006.0512 Statistical Mechanics +1006.0514 Combinatorics +1006.0516 Combinatorics +1006.0518 Number Theory +1006.0521 Number Theory +1006.0522 Number Theory +1006.0526 Computers and Society +1006.0532 Fluid Dynamics +1006.0540 Differential Geometry +1006.0542 Information Theory +1006.0543 Dynamical Systems +1006.0544 Information Theory +1006.0549 Fluid Dynamics +1006.0551 Computational Complexity +1006.0553 Complex Variables +1006.0560 Statistical Mechanics +1006.0561 Optimization and Control +1006.0565 Strongly Correlated Electrons +1006.0569 Quantum Algebra +1006.0572 Cosmology and Nongalactic Astrophysics +1006.0576 Databases +1006.0583 Superconductivity +1006.0584 Strongly Correlated Electrons +1006.0586 Superconductivity +1006.0589 Materials Science +1006.0590 Combinatorics +1006.0594 Mesoscale and Nanoscale Physics +1006.0595 +1006.0597 Mesoscale and Nanoscale Physics +1006.0598 Statistical Mechanics +1006.0601 Computational Physics +1006.0605 Functional Analysis +1006.0615 Analysis of PDEs +1006.0616 Fluid Dynamics +1006.0619 Information Theory +1006.0622 Dynamical Systems +1006.0624 Complex Variables +1006.0626 Pattern Formation and Solitons +1006.0630 Mesoscale and Nanoscale Physics +1006.0635 Accelerator Physics +1006.0638 Algebraic Topology +1006.0639 Spectral Theory +1006.0641 History and Overview +1006.0642 Astrophysics of Galaxies +1006.0644 Information Theory +1006.0648 Functional Analysis +1006.0649 Exactly Solvable and Integrable Systems +1006.0652 Differential Geometry +1006.0663 Computational Physics +1006.0666 Spectral Theory +1006.0667 High Energy Astrophysical Phenomena +1006.0669 Phenomenology +1006.0670 Instrumentation and Methods for Astrophysics +1006.0675 Strongly Correlated Electrons +1006.0676 Dynamical Systems +1006.0677 Representation Theory +1006.0684 Dynamical Systems +1006.0686 Probability +1006.0695 Experiment +1006.0696 Classical Physics +1006.0704 Dynamical Systems +1006.0716 Differential Geometry +1006.0723 General Physics +astro-ph/0209353 +astro-ph/0212124 +astro-ph/0611702 +cond-mat/0310195 +cs/0609081 Computational Engineering, Finance, and Science +math/0504518 Probability +math/0602064 Number Theory +physics/0207074 Plasma Physics +0704.1492 +0708.2271 +0711.1867 Metric Geometry +0712.1835 +0712.3773 Quantitative Methods +0805.1916 Algebraic Geometry +0805.4035 Algebraic Geometry +0810.2434 Computer Vision and Pattern Recognition +0810.4195 Algebraic Geometry +0810.4426 Computer Vision and Pattern Recognition +0811.0852 +0811.0853 +0811.0854 +0812.4550 Metric Geometry +0902.1505 +0902.3490 +0905.3361 Dynamical Systems +0906.3911 Programming Languages +0906.4837 Software Engineering +0906.5340 Materials Science +0906.5391 Strongly Correlated Electrons +0906.5549 Complex Variables +0907.1953 General Physics +0908.0775 Physics and Society +0909.0764 Programming Languages +0909.5416 Cosmology and Nongalactic Astrophysics +0910.1847 +0910.3685 Algebraic Topology +0911.0923 Disordered Systems and Neural Networks +0912.5420 General Finance +1001.0569 Phenomenology +1001.1212 Optics +1001.3817 Differential Geometry +1002.2289 Superconductivity +1002.3318 Number Theory +1002.3643 Strongly Correlated Electrons +1003.0723 Cryptography and Security +1003.0727 +1003.1301 Earth and Planetary Astrophysics +1003.4040 +1003.5667 Quantum Gases +1003.6073 Algebraic Geometry +1004.0877 Theory +1004.1349 Chaotic Dynamics +1004.1519 Strongly Correlated Electrons +1004.1767 Mesoscale and Nanoscale Physics +1004.2628 Information Theory +1004.4075 Information Theory +1004.4383 Computational Complexity +1005.4932 +1006.0456 Theory +1006.1261 Differential Geometry +1006.2169 Functional Analysis +1006.2189 Algebraic Topology +1006.5671 +1007.0157 Group Theory +1007.0606 Algebraic Geometry +1007.0940 Artificial Intelligence +1007.1043 Disordered Systems and Neural Networks +1007.1193 Methodology +1007.1215 Superconductivity +1007.1238 Mesoscale and Nanoscale Physics +1007.1242 Optics +1007.1254 Materials Science +1007.1255 Networking and Internet Architecture +1007.1261 Distributed, Parallel, and Cluster Computing +1007.1264 Networking and Internet Architecture +1007.1265 Networking and Internet Architecture +1007.1266 Networking and Internet Architecture +1007.1268 Networking and Internet Architecture +1007.1270 Networking and Internet Architecture +1007.1271 Data Structures and Algorithms +1007.1273 Networking and Internet Architecture +1007.1274 Networking and Internet Architecture +1007.1280 Cosmology and Nongalactic Astrophysics +1007.1283 Computational Complexity +1007.1284 Mesoscale and Nanoscale Physics +1007.1288 Rings and Algebras +1007.1289 Representation Theory +1007.1294 +1007.1295 Combinatorics +1007.1299 +1007.1302 +1007.1311 Analysis of PDEs +1007.1318 Cosmology and Nongalactic Astrophysics +1007.1319 Number Theory +1007.1320 Populations and Evolution +1007.1321 Phenomenology +1007.1329 +1007.1336 Combinatorics +1007.1339 Combinatorics +1007.1341 Combinatorics +1007.1343 +1007.1345 Data Structures and Algorithms +1007.1347 Symplectic Geometry +1007.1351 Functional Analysis +1007.1356 Group Theory +1007.1373 Probability +1007.1374 Statistical Mechanics +1007.1383 Populations and Evolution +1007.1385 K-Theory and Homology +1007.1393 Mesoscale and Nanoscale Physics +1007.1395 +1007.1400 Probability +1007.1417 Theory +1007.1418 Earth and Planetary Astrophysics +1007.1432 Computer Vision and Pattern Recognition +1007.1433 Solar and Stellar Astrophysics +1007.1437 +1007.1438 Disordered Systems and Neural Networks +1007.1441 Number Theory +1007.1442 Quantitative Methods +1007.1444 Phenomenology +1007.1449 Dynamical Systems +1007.1450 +1007.1452 Theory +cond-mat/0606201 Other Condensed Matter +math/0407231 Algebraic Geometry +math/0608557 Differential Geometry +math/0611400 Complex Variables +nucl-th/0105031 +physics/0001034 General Physics +physics/0407143 Geophysics +physics/0407153 Geophysics +physics/0610251 Data Analysis, Statistics and Probability +0707.4339 Algebraic Geometry +0711.0664 +0712.1978 Symplectic Geometry +0801.0072 Combinatorics +0803.0345 +0803.2396 Combinatorics +0806.1606 +0808.0498 +0810.0665 Strongly Correlated Electrons +0810.1937 Differential Geometry +0810.4187 Computers and Society +0811.2449 Combinatorics +0812.0256 Molecular Networks +0812.3785 Metric Geometry +0903.1282 Strongly Correlated Electrons +0905.3803 General Finance +0906.1940 +0906.4077 Statistical Mechanics +0907.1555 Solar and Stellar Astrophysics +0909.0379 Metric Geometry +0909.1149 +0909.2829 +0911.1550 Mesoscale and Nanoscale Physics +0911.4757 Popular Physics +0911.5304 +1002.1613 +1002.2980 General Physics +1002.3573 Mesoscale and Nanoscale Physics +1002.4731 Analysis of PDEs +1003.1286 Strongly Correlated Electrons +1003.3562 Strongly Correlated Electrons +1004.2216 Quantum Gases +1005.0199 Strongly Correlated Electrons +1005.2403 Quantum Gases +1005.3935 +1005.4069 Mesoscale and Nanoscale Physics +1006.1535 Information Theory +1006.1801 Superconductivity +1006.3088 Statistical Mechanics +1006.3184 Number Theory +1007.0949 Materials Science +1007.3242 +1007.3256 +1007.4749 Digital Libraries +1007.5101 Geometric Topology +1007.5159 Optimization and Control +1008.1175 General Topology +1008.1490 Disordered Systems and Neural Networks +1008.1516 Computer Science and Game Theory +1008.1770 Physics and Society +1008.2540 +1008.4675 Materials Science +1009.0831 Phenomenology +1009.1151 Optimization and Control +1009.1686 Social and Information Networks +1009.1862 Representation Theory +1009.2111 Statistics Theory +1009.3468 Networking and Internet Architecture +1009.3759 Other Condensed Matter +1009.3904 Rings and Algebras +1009.4027 Materials Science +1009.4126 Algebraic Geometry +1009.4143 Risk Management +1009.4146 Risk Management +1009.4191 Cosmology and Nongalactic Astrophysics +1009.4201 Combinatorics +1009.4202 Combinatorics +1009.4209 Algebraic Geometry +1009.4220 Combinatorics +1009.4221 Earth and Planetary Astrophysics +1009.4226 Rings and Algebras +1009.4229 Phenomenology +1009.4234 Combinatorics +1009.4240 Materials Science +1009.4243 Commutative Algebra +1009.4245 Soft Condensed Matter +1009.4250 +1009.4251 History and Philosophy of Physics +1009.4253 +1009.4256 Fluid Dynamics +1009.4259 Software Engineering +1009.4260 Logic in Computer Science +1009.4261 Logic in Computer Science +1009.4262 Programming Languages +1009.4263 Logic in Computer Science +1009.4264 Logic in Computer Science +1009.4265 Logic in Computer Science +1009.4266 Logic in Computer Science +1009.4269 Information Theory +1009.4271 Fluid Dynamics +1009.4273 Superconductivity +1009.4275 Numerical Analysis +1009.4278 Functional Analysis +1009.4280 Commutative Algebra +1009.4281 Statistics Theory +1009.4285 Representation Theory +1009.4286 Statistics Theory +1009.4288 Representation Theory +1009.4294 Solar and Stellar Astrophysics +1009.4300 Information Theory +1009.4304 Materials Science +1009.4306 Algebraic Geometry +1009.4307 Solar and Stellar Astrophysics +1009.4310 Solar and Stellar Astrophysics +1009.4311 Dynamical Systems +1009.4318 Neural and Evolutionary Computing +1009.4320 Solar and Stellar Astrophysics +1009.4321 Algebraic Geometry +1009.4322 Metric Geometry +1009.4326 +1009.4327 Cosmology and Nongalactic Astrophysics +1009.4332 +1009.4337 Fluid Dynamics +1009.4342 Applications +1009.4344 Phenomenology +1009.4349 +1009.4355 Data Structures and Algorithms +1009.4360 K-Theory and Homology +1009.4368 Earth and Planetary Astrophysics +1009.4373 Phenomenology +1009.4376 Number Theory +1009.4378 Algebraic Geometry +1009.4389 Functional Analysis +1009.4392 High Energy Astrophysical Phenomena +1009.4393 +1009.4395 Complex Variables +1009.4404 Combinatorics +1009.4406 Numerical Analysis +1009.4408 Complex Variables +1009.4410 Mesoscale and Nanoscale Physics +1009.4417 +1009.4419 Algebraic Geometry +1009.4427 Functional Analysis +1009.4430 Numerical Analysis +1009.4431 +1009.4433 +1009.4440 Combinatorics +1009.4441 Optimization and Control +1009.4442 Classical Analysis and ODEs +1009.4450 Complex Variables +1009.4458 Physics Education +math/0503704 Differential Geometry +math/0512077 Combinatorics +math/0605249 Algebraic Topology +math/0605536 Combinatorics +quant-ph/0603078 +quant-ph/0610048 +0706.4257 Group Theory +0708.2923 Physics and Society +0709.3436 Algebraic Topology +0801.1399 Physics and Society +0802.0585 Probability +0802.2898 Analysis of PDEs +0802.2901 Probability +0802.4195 +0803.2062 Group Theory +0804.1374 Atmospheric and Oceanic Physics +0806.2305 Physics and Society +0807.0521 Statistical Mechanics +0807.2041 +0809.2427 Group Theory +0810.2108 Dynamical Systems +0810.5472 +0811.1586 Number Theory +0811.1588 Number Theory +0811.3906 +0901.0056 Geometric Topology +0901.0400 Solar and Stellar Astrophysics +0901.2859 Numerical Analysis +0901.2923 Functional Analysis +0902.1339 Geometric Topology +0903.2711 Information Theory +0904.0724 Group Theory +0906.2538 +0907.0793 Probability +0908.0868 Strongly Correlated Electrons +0908.3111 Combinatorics +0909.3372 +0910.1258 +0911.0240 Analysis of PDEs +0911.0683 Materials Science +0911.2274 Representation Theory +0911.5243 Disordered Systems and Neural Networks +0912.0168 Strongly Correlated Electrons +0912.4924 Materials Science +1001.2305 Cosmology and Nongalactic Astrophysics +1002.0124 Theory +1003.2982 Theory +1003.5367 Probability +1003.5369 Materials Science +1004.1415 Functional Analysis +1004.1738 +1004.2224 Algebraic Geometry +1004.2495 +1004.3987 +1004.5247 Astrophysics of Galaxies +1005.0178 Networking and Internet Architecture +1005.1228 Biological Physics +1005.1389 +1005.2043 Strongly Correlated Electrons +1005.2384 Theory +1005.3174 Mesoscale and Nanoscale Physics +1006.0682 +1006.0702 +1006.1208 Group Theory +1006.1959 Combinatorics +1006.3906 Theory +1006.4821 Soft Condensed Matter +1006.4944 +1006.4947 +1006.5305 Physics and Society +1006.5438 Theory +1006.5619 +1007.0010 Strongly Correlated Electrons +1007.2269 Phenomenology +1007.2599 +1007.4082 Statistical Mechanics +1007.4127 +1007.4309 Logic +1007.4380 Theory +1008.1488 Materials Science +1008.1561 Superconductivity +1008.3309 Plasma Physics +1008.3520 Functional Analysis +1008.3761 Probability +1008.4789 Numerical Analysis +1009.0012 Phenomenology +1009.0608 +1009.0648 +1009.1107 Classical Analysis and ODEs +1009.2380 Theory +1009.3395 Phenomenology +1009.4838 Probability +1010.0080 Portfolio Management +1010.1345 Strongly Correlated Electrons +1010.2800 Atomic Physics +1010.4424 Strongly Correlated Electrons +1010.5946 Materials Science +1011.0135 +1011.1518 Machine Learning +1011.1842 Formal Languages and Automata Theory +1011.3356 General Physics +1011.3919 Analysis of PDEs +1011.4513 Mesoscale and Nanoscale Physics +1011.5607 Superconductivity +1011.5954 Exactly Solvable and Integrable Systems +1012.0038 Software Engineering +1012.0058 Data Structures and Algorithms +1012.0124 Statistical Mechanics +1012.0523 Analysis of PDEs +1012.0710 Differential Geometry +1012.0711 Differential Geometry +1012.0733 Probability +1012.0737 Probability +1012.0739 Probability +1012.0763 Analysis of PDEs +1012.0862 General Physics +1012.0871 Cosmology and Nongalactic Astrophysics +1012.0872 Dynamical Systems +1012.0878 Mesoscale and Nanoscale Physics +1012.0879 Superconductivity +1012.0884 Algebraic Geometry +1012.0897 Accelerator Physics +1012.0900 Biological Physics +1012.0903 Phenomenology +1012.0909 Dynamical Systems +1012.0913 Soft Condensed Matter +1012.0914 Soft Condensed Matter +1012.0916 Optics +1012.0917 Molecular Networks +1012.0918 Optics +1012.0919 Optics +1012.0921 Optics +1012.0923 Materials Science +1012.0927 Optics +1012.0937 Logic +1012.0941 Classical Analysis and ODEs +1012.0942 Functional Analysis +1012.0944 Logic +1012.0946 Neurons and Cognition +1012.0947 Probability +1012.0948 Probability +1012.0951 Commutative Algebra +1012.0952 Neural and Evolutionary Computing +1012.0954 Instrumentation and Methods for Astrophysics +1012.0955 Information Theory +1012.0960 Logic +1012.0963 Combinatorics +1012.0964 Number Theory +1012.0970 +1012.0974 Numerical Analysis +1012.0976 Mesoscale and Nanoscale Physics +1012.0977 Instrumentation and Methods for Astrophysics +1012.0979 Algebraic Geometry +1012.0982 Logic +1012.0983 Algebraic Geometry +1012.0985 Biomolecules +1012.0989 Optimization and Control +1012.1008 Algebraic Geometry +1012.1018 Differential Geometry +1012.1020 Popular Physics +1012.1025 Complex Variables +1012.1026 Commutative Algebra +1012.1027 Pattern Formation and Solitons +1012.1037 Pricing of Securities +1012.1057 Analysis of PDEs +1012.1058 Superconductivity +1012.1063 Classical Physics +1012.1067 Classical Physics +1012.1068 Classical Physics +1012.1073 Differential Geometry +1012.1075 Combinatorics +1012.1087 Representation Theory +1012.1088 Earth and Planetary Astrophysics +1012.1089 Rings and Algebras +1012.1093 Phenomenology +1012.1097 +1012.1102 Algebraic Geometry +1012.1103 Dynamical Systems +1012.1105 Mesoscale and Nanoscale Physics +1012.1108 Materials Science +1012.1113 Group Theory +1012.1128 Discrete Mathematics +1012.1129 Data Structures and Algorithms +1012.1131 Distributed, Parallel, and Cluster Computing +1012.1133 Spectral Theory +1012.1151 Cosmology and Nongalactic Astrophysics +1012.1153 Software Engineering +1012.1162 K-Theory and Homology +1012.1172 Mesoscale and Nanoscale Physics +1012.1181 Differential Geometry +1012.1182 +1012.1187 Functional Analysis +1012.1190 Commutative Algebra +1012.1195 Phenomenology +1012.1203 Differential Geometry +1012.1216 Astrophysics of Galaxies +1012.1219 Cellular Automata and Lattice Gases +1012.1220 Cellular Automata and Lattice Gases +1012.1221 Cellular Automata and Lattice Gases +1012.1222 Cellular Automata and Lattice Gases +1012.1229 Superconductivity +1012.1240 Discrete Mathematics +1012.1242 High Energy Astrophysical Phenomena +1012.1243 Probability +1012.1266 Materials Science +1012.1276 Representation Theory +1012.1277 Analysis of PDEs +1012.1278 Cosmology and Nongalactic Astrophysics +1012.1283 Formal Languages and Automata Theory +1012.1289 Classical Analysis and ODEs +1012.1302 Differential Geometry +1012.1304 Theory +1012.1309 Experiment +1012.1311 Group Theory +cond-mat/9912341 Soft Condensed Matter +math/0508017 Algebraic Topology +math/0603342 Differential Geometry +math/0610268 Algebraic Geometry +physics/9806013 Physics Education +q-bio/0703022 Molecular Networks +quant-ph/0205092 +0704.2009 Algebraic Geometry +0711.0968 Quantum Gases +0801.4847 Algebraic Topology +0803.2076 Representation Theory +0804.2388 Superconductivity +0804.2393 Superconductivity +0806.0732 Dynamical Systems +0807.2393 Other Condensed Matter +0807.3283 Algebraic Geometry +0810.5588 Materials Science +0811.2631 Mesoscale and Nanoscale Physics +0903.0410 Probability +0905.1276 Strongly Correlated Electrons +0905.1997 Computational Physics +0906.0059 Mesoscale and Nanoscale Physics +0906.0103 +0906.0661 Mesoscale and Nanoscale Physics +0906.1744 Physics and Society +0906.3796 Mesoscale and Nanoscale Physics +0906.5022 Robotics +0907.5223 Metric Geometry +0908.4498 Plasma Physics +0909.3495 Quantum Algebra +0910.2741 Neurons and Cognition +0910.3301 Artificial Intelligence +0910.3967 Superconductivity +0910.4148 Group Theory +0911.2954 Fluid Dynamics +0911.3877 Soft Condensed Matter +0911.4937 Fluid Dynamics +0912.0860 Strongly Correlated Electrons +0912.1302 Differential Geometry +0912.1528 Quantum Gases +0912.2404 Data Structures and Algorithms +0912.3254 Strongly Correlated Electrons +0912.3941 Subcellular Processes +0912.4104 Mesoscale and Nanoscale Physics +0912.4739 Group Theory +0912.5484 Quantum Algebra +1001.0590 Strongly Correlated Electrons +1001.1007 Probability +1001.2147 High Energy Astrophysical Phenomena +1001.2165 Solar and Stellar Astrophysics +1001.2956 +1002.0059 Statistical Mechanics +1002.1215 Materials Science +1002.1420 Biological Physics +1002.4634 Fluid Dynamics +1004.0557 Information Theory +1004.0858 Applications +1004.1000 Earth and Planetary Astrophysics +1004.1162 Cosmology and Nongalactic Astrophysics +1004.1188 Complex Variables +1004.1190 Instrumentation and Methods for Astrophysics +1004.1191 Complex Variables +1004.1192 Probability +1004.1195 Information Theory +1004.1198 Information Theory +1004.1208 Data Structures and Algorithms +1004.1211 Programming Languages +1004.1212 Populations and Evolution +1004.1214 Quantum Algebra +1004.1215 Computer Vision and Pattern Recognition +1004.1216 Discrete Mathematics +1004.1220 Data Structures and Algorithms +1004.1221 Analysis of PDEs +1004.1226 +1004.1227 Computer Vision and Pattern Recognition +1004.1229 Multimedia +1004.1230 Learning +1004.1232 Cryptography and Security +1004.1233 Instrumentation and Methods for Astrophysics +1004.1234 Quantitative Methods +1004.1239 Software Engineering +1004.1244 Number Theory +1004.1248 +1004.1253 Data Structures and Algorithms +1004.1254 Biological Physics +1004.1256 Soft Condensed Matter +1004.1257 Information Retrieval +1004.1263 Probability +1004.1267 Networking and Internet Architecture +1004.1274 +1004.1276 Distributed, Parallel, and Cluster Computing +1004.1277 Information Theory +1004.1279 Combinatorics +1004.1280 Soft Condensed Matter +1004.1283 Physics and Society +1004.1290 Optics +1004.1293 +1004.1294 Solar and Stellar Astrophysics +1004.1295 Numerical Analysis +1004.1297 Numerical Analysis +1004.1300 +1004.1302 Instrumentation and Methods for Astrophysics +1004.1304 Cryptography and Security +1004.1307 Quantitative Methods +1004.1314 Quantum Algebra +1004.1320 Geometric Topology +1004.1328 Optimization and Control +1004.1336 Solar and Stellar Astrophysics +1004.1337 +1004.1345 +1004.1350 K-Theory and Homology +1004.1354 Chaotic Dynamics +1004.1356 Data Analysis, Statistics and Probability +1004.1363 Dynamical Systems +1004.1365 Functional Analysis +1004.1369 Metric Geometry +1004.1371 Algebraic Geometry +1004.1378 Populations and Evolution +1004.1380 Probability +1004.1385 Materials Science +1004.1395 Solar and Stellar Astrophysics +1004.1407 Probability +cs/0701089 Computational Complexity +math/0304245 Differential Geometry +math/0501131 Functional Analysis +math/0503197 Differential Geometry +math/0604242 Differential Geometry +math/0702086 Combinatorics +physics/0604174 General Physics +quant-ph/0011114 +quant-ph/0305152 +quant-ph/0312169 +quant-ph/9912052 +0803.2031 Differential Geometry +0804.4886 Materials Science +0806.0487 Number Theory +0807.3250 Quantum Algebra +0809.2215 Algebraic Topology +0810.2207 Algebraic Geometry +0901.0854 Symplectic Geometry +0905.3596 Materials Science +0907.2267 Optimization and Control +0908.0017 Materials Science +0908.1017 Exactly Solvable and Integrable Systems +0908.2006 Differential Geometry +0910.0665 Data Analysis, Statistics and Probability +0911.1653 +0912.0694 Statistical Mechanics +0912.2377 Fluid Dynamics +0912.5045 Mesoscale and Nanoscale Physics +0912.5199 Biological Physics +1002.1977 +1004.0364 Combinatorics +1004.0950 Solar and Stellar Astrophysics +1004.1026 Medical Physics +1004.1333 Probability +1004.1463 Materials Science +1004.1527 Functional Analysis +1004.1540 Artificial Intelligence +1004.1584 Spectral Theory +1004.1996 Representation Theory +1004.2009 Neurons and Cognition +1004.2172 Logic +1004.2174 Probability +1004.2176 Probability +1004.2180 Geophysics +1004.2183 Analysis of PDEs +1004.2768 Analysis of PDEs +1004.3135 Formal Languages and Automata Theory +1004.3221 Functional Analysis +1004.3355 Physics and Society +1004.3358 Optimization and Control +1004.3459 Analysis of PDEs +1004.4062 Probability +1004.4494 Optics +1004.4801 Artificial Intelligence +1004.4966 Optics +1004.5263 Symplectic Geometry +1004.5272 Dynamical Systems +1004.5292 +dg-ga/9602010 Differential Geometry +math/0001065 Combinatorics +math/0507214 Geometric Topology +math/0512002 Analysis of PDEs +math/0512520 Algebraic Geometry +math/0602626 Algebraic Geometry +math/0612113 Algebraic Geometry +0801.0023 Number Theory +0804.2239 +0807.4423 Optimization and Control +0809.2029 Materials Science +0809.4615 Statistical Finance +0811.0652 Algebraic Geometry +0811.3666 Representation Theory +0812.1052 +0901.4357 +0904.2200 Statistical Mechanics +0905.2419 +0907.3027 +0907.4318 Earth and Planetary Astrophysics +0907.5190 Cosmology and Nongalactic Astrophysics +0910.0772 Mesoscale and Nanoscale Physics +0910.2707 Strongly Correlated Electrons +0910.5285 Optics +0911.1183 Soft Condensed Matter +0911.5596 +0912.4429 +1001.0180 Quantum Algebra +1001.1758 Cosmology and Nongalactic Astrophysics +1001.2085 Quantum Gases +1001.3635 Soft Condensed Matter +1002.1614 Disordered Systems and Neural Networks +1002.1809 Mesoscale and Nanoscale Physics +1002.1893 +1002.2287 General Physics +1002.2606 Theory +1003.1538 Quantum Gases +1003.3511 Quantum Gases +1003.4304 Theory +1003.5082 Materials Science +1003.5647 Superconductivity +1004.0235 Data Analysis, Statistics and Probability +1004.1935 +1004.3350 Strongly Correlated Electrons +1004.3493 Cosmology and Nongalactic Astrophysics +1004.4030 Group Theory +1004.4097 Physics and Society +1004.4103 Physics and Society +1004.4778 Mesoscale and Nanoscale Physics +1004.5443 Quantum Gases +1005.0757 Statistical Mechanics +1005.3926 Combinatorics +1005.4491 Disordered Systems and Neural Networks +1006.0651 +1006.0927 Strongly Correlated Electrons +1006.1334 Differential Geometry +1007.3872 Solar and Stellar Astrophysics +1007.4348 +1008.0040 +1008.1146 Materials Science +1008.3443 Social and Information Networks +1008.3730 Information Theory +1008.3736 Instrumentation and Detectors +1008.3811 +1008.3899 Solar and Stellar Astrophysics +1008.3912 High Energy Astrophysical Phenomena +1008.3923 High Energy Astrophysical Phenomena +1008.3925 Group Theory +1008.3928 Physics and Society +1008.3929 +1008.3931 Classical Analysis and ODEs +1008.3938 Data Structures and Algorithms +1008.3946 Cosmology and Nongalactic Astrophysics +1008.3948 Algebraic Topology +1008.3949 Phenomenology +1008.3952 Machine Learning +1008.3953 Analysis of PDEs +1008.3954 Statistics Theory +1008.3956 Algebraic Topology +1008.3959 Algebraic Topology +1008.3960 Quantum Gases +1008.3961 Quantitative Methods +1008.3970 High Energy Astrophysical Phenomena +1008.3972 Other Condensed Matter +1008.3976 Geophysics +1008.3977 Digital Libraries +1008.3979 General Physics +1008.3990 Physics and Society +1008.3994 General Physics +1008.3998 Information Theory +1008.4008 Number Theory +1008.4024 Operator Algebras +1008.4025 Molecular Networks +1008.4028 Analysis of PDEs +1008.4033 Probability +1008.4035 Computational Complexity +1008.4036 Cosmology and Nongalactic Astrophysics +1008.4041 +1008.4042 Superconductivity +1008.4044 Combinatorics +1008.4047 Instrumentation and Methods for Astrophysics +1008.4048 Number Theory +1008.4051 Instrumentation and Methods for Astrophysics +1008.4052 General Physics +1008.4054 Rings and Algebras +1008.4056 Rings and Algebras +1008.4059 Statistics Theory +1008.4062 Fluid Dynamics +1008.4067 Data Structures and Algorithms +1008.4070 Materials Science +1008.4073 Disordered Systems and Neural Networks +1008.4078 Soft Condensed Matter +1008.4082 Astrophysics of Galaxies +1008.4084 +1008.4091 +1008.4092 Spectral Theory +1008.4095 Spectral Theory +1008.4096 Optics +1008.4099 Cryptography and Security +1008.4102 +1008.4109 Combinatorics +1008.4115 Multiagent Systems +1008.4123 Fluid Dynamics +math-ph/0407001 +math/0012118 Geometric Topology +math/0111198 Quantum Algebra +math/0209075 Geometric Topology +math/0212194 Analysis of PDEs +math/0307364 Quantum Algebra +math/0404270 Geometric Topology +math/0509015 Analysis of PDEs +math/0509416 Algebraic Topology +math/0610143 Quantum Algebra +0705.0312 +0711.2669 Rings and Algebras +0806.2421 Combinatorics +0809.0835 Computational Geometry +0809.4494 Theory +0810.2960 +0812.2974 Mesoscale and Nanoscale Physics +0905.1932 Operator Algebras +0905.4485 Mesoscale and Nanoscale Physics +0905.4597 Commutative Algebra +0906.1164 Group Theory +0907.0179 +0907.1291 Molecular Networks +0907.4905 Phenomenology +0908.0454 +0909.1933 Learning +0909.2215 Materials Science +0909.2711 Materials Science +0909.2845 +0910.0876 Other Condensed Matter +0911.0101 Strongly Correlated Electrons +0911.3858 Strongly Correlated Electrons +0912.0140 Superconductivity +0912.5127 Materials Science +1001.2579 General Physics +1002.1394 Mesoscale and Nanoscale Physics +1002.1510 Mesoscale and Nanoscale Physics +1002.2072 Soft Condensed Matter +1002.2584 Strongly Correlated Electrons +1002.3482 Soft Condensed Matter +1002.4306 Disordered Systems and Neural Networks +1002.5038 +1003.1062 Mesoscale and Nanoscale Physics +1003.4877 Theory +1004.0819 Cosmology and Nongalactic Astrophysics +1004.4236 Combinatorics +1005.0052 Information Theory +1005.0574 Experiment +1005.1393 Differential Geometry +1005.2586 Commutative Algebra +1005.2872 +1005.3564 Representation Theory +1005.3690 Number Theory +1005.4711 Combinatorics +1005.4951 Information Theory +1005.5355 Differential Geometry +1005.5395 Discrete Mathematics +1006.0184 +1006.0491 Dynamical Systems +1006.0802 Classical Physics +1006.1093 Medical Physics +1006.1147 Cosmology and Nongalactic Astrophysics +1006.1267 Differential Geometry +1006.1353 Cosmology and Nongalactic Astrophysics +1006.1363 Group Theory +1006.1368 Plasma Physics +1006.1370 Probability +1006.1373 History and Overview +1006.1382 Information Theory +1006.1388 Superconductivity +1006.1389 Probability +1006.1392 Strongly Correlated Electrons +1006.1393 Logic +1006.1395 Superconductivity +1006.1397 Combinatorics +1006.1398 Operator Algebras +1006.1402 Computer Science and Game Theory +1006.1403 Logic in Computer Science +1006.1404 Computer Science and Game Theory +1006.1405 Computer Science and Game Theory +1006.1406 Logic in Computer Science +1006.1407 Logic in Computer Science +1006.1408 Logic in Computer Science +1006.1409 Computer Science and Game Theory +1006.1410 Computer Science and Game Theory +1006.1411 +1006.1412 Logic in Computer Science +1006.1413 Programming Languages +1006.1415 Computer Science and Game Theory +1006.1416 Logic in Computer Science +1006.1417 +1006.1419 +1006.1420 +1006.1422 +1006.1423 +1006.1424 +1006.1426 +1006.1428 Formal Languages and Automata Theory +1006.1429 Logic in Computer Science +1006.1430 Logic in Computer Science +1006.1431 Data Structures and Algorithms +1006.1432 Logic in Computer Science +1006.1433 Logic in Computer Science +1006.1434 Neural and Evolutionary Computing +1006.1441 Combinatorics +1006.1443 Data Structures and Algorithms +1006.1449 Cryptography and Security +1006.1450 Multiagent Systems +1006.1453 Probability +1006.1454 Probability +1006.1455 Analysis of PDEs +1006.1456 Commutative Algebra +1006.1461 General Physics +1006.1474 Algebraic Geometry +1006.1481 Atomic Physics +1006.1484 +1006.1487 Accelerator Physics +1006.1490 Number Theory +1006.1493 K-Theory and Homology +1006.1498 Statistical Mechanics +1006.1499 Statistical Mechanics +1006.1505 Statistical Mechanics +1006.1511 Strongly Correlated Electrons +1006.1514 Methodology +1006.1515 +1006.1520 Complex Variables +1006.1521 Probability +1006.1523 Analysis of PDEs +1006.1530 Analysis of PDEs +1006.1531 Differential Geometry +1006.1537 Artificial Intelligence +1006.1540 Functional Analysis +1006.1543 Neural and Evolutionary Computing +1006.1544 Disordered Systems and Neural Networks +1006.1550 Differential Geometry +1006.1551 Computers and Society +1006.1554 Atomic Physics +1006.1561 Classical Analysis and ODEs +1006.1565 Information Theory +1006.1567 Methodology +1006.1570 Probability +1006.1575 Statistics Theory +1006.1577 Differential Geometry +1006.1578 Networking and Internet Architecture +1006.1582 Number Theory +1006.1590 Theory +1006.1592 Information Theory +1006.1593 Classical Analysis and ODEs +1006.1596 Probability +1006.1602 Probability +1006.1604 Algebraic Geometry +1006.1607 Numerical Analysis +1006.1608 Statistical Mechanics +1006.1613 +1006.1614 +1006.1620 Numerical Analysis +1006.1622 +1006.1639 Soft Condensed Matter +math/0507275 Number Theory +math/0511672 Number Theory +math/0604073 Differential Geometry +math/0609079 Differential Geometry +nlin/0407055 Pattern Formation and Solitons +physics/0408002 Fluid Dynamics +physics/0408004 Fluid Dynamics +0704.2229 Theory +0705.0790 Theory +0705.1531 Phenomenology +0705.1847 Theory +0705.2892 Theory +0705.3536 Lattice +0706.1206 Phenomenology +0707.0317 Phenomenology +0707.0499 Theory +0707.0747 Theory +0707.0988 Phenomenology +0707.1627 Other Condensed Matter +0707.3194 Phenomenology +0707.3230 +0707.3887 Lattice +0707.4367 Theory +0708.1226 Theory +0708.1359 Materials Science +0708.1642 Other Condensed Matter +0708.1756 Trading and Market Microstructure +0708.2181 Theory +0708.3691 Theory +0709.0320 Theory +0709.0348 Theory +0709.4294 +0709.4604 +0710.1362 Theory +0710.2148 Theory +0710.2300 Theory +0710.2972 Phenomenology +0710.2985 Phenomenology +0710.3705 Phenomenology +0710.3769 Theory +0710.3905 Phenomenology +0711.0857 Theory +0711.1567 Phenomenology +0711.1697 Theory +0711.3899 Algebraic Geometry +0712.0217 Theory +0712.0601 Theory +0712.0796 Phenomenology +0712.1427 Theory +0712.1795 Theory +0801.3266 Theory +0801.3721 Differential Geometry +0802.0090 Phenomenology +0802.0916 Phenomenology +0802.1799 Theory +0802.1973 Mesoscale and Nanoscale Physics +0803.0895 Theory +0803.1127 Lattice +0803.2490 Theory +0803.2772 Lattice +0803.3332 Algebraic Geometry +0803.3819 Quantum Algebra +0804.0699 Dynamical Systems +0804.2301 Materials Science +0804.2926 Theory +0805.0824 Theory +0805.3310 Phenomenology +0805.3563 Theory +0805.3682 Theory +0805.4235 Lattice +0805.4451 Theory +0806.2705 Theory +0806.3612 Theory +0806.3879 Theory +0806.4145 Phenomenology +0806.4748 Theory +0806.4790 Data Structures and Algorithms +0807.0559 Theory +0807.0755 Theory +0807.0792 Lattice +0807.1924 Theory +0807.2065 Theory +0807.2386 Theory +0807.2663 Theory +0808.0904 Theory +0808.3335 Materials Science +0808.3729 +0809.1441 Theory +0809.3792 Phenomenology +0810.2066 Representation Theory +0810.2852 Theory +0811.0411 Materials Science +0811.2777 Dynamical Systems +0812.0361 +0812.1845 +0812.3196 Materials Science +0812.4083 Materials Science +0902.0220 Materials Science +0902.0728 +0902.1236 Commutative Algebra +0902.2674 Computational Complexity +0902.3176 Artificial Intelligence +0902.3780 Data Structures and Algorithms +0903.0348 Disordered Systems and Neural Networks +0903.3098 Mesoscale and Nanoscale Physics +0903.3246 Theory +0903.3733 +0903.3982 +0903.4444 +0904.0519 Materials Science +0904.3607 Formal Languages and Automata Theory +0904.4064 Symbolic Computation +0905.0393 Cosmology and Nongalactic Astrophysics +0905.2446 +0905.3413 +0905.4068 Data Structures and Algorithms +0906.0826 +0906.1025 Theory +0906.1399 Computational Complexity +0906.2754 +0906.3639 Strongly Correlated Electrons +0907.2901 Cosmology and Nongalactic Astrophysics +0908.0611 +0908.0857 Phenomenology +0908.2707 Computational Complexity +0908.3338 Optics +0908.3381 Classical Analysis and ODEs +0908.3391 +0909.2665 Phenomenology +0909.2674 Statistical Mechanics +0909.2705 Information Theory +0909.3493 Theory +0909.4094 Computational Geometry +0909.4253 Mesoscale and Nanoscale Physics +0909.5124 Phenomenology +0909.5313 Computational Complexity +0909.5387 Superconductivity +0910.0389 Superconductivity +0910.0460 Data Structures and Algorithms +0910.0944 Optics +0910.1067 Phenomenology +0910.1084 General Physics +0910.1204 Phenomenology +0910.1694 Complex Variables +0910.2894 Biological Physics +0910.3650 +0910.4143 +0910.5687 Statistical Mechanics +0911.0113 Computational Finance +0911.0349 High Energy Astrophysical Phenomena +0911.0994 Phenomenology +0911.3331 Pricing of Securities +0911.3584 Materials Science +0911.3663 Optics +0912.0147 General Mathematics +0912.1834 Number Theory +0912.2120 +0912.2561 Data Structures and Algorithms +0912.2625 Logic in Computer Science +0912.2694 Geometric Topology +0912.2815 Data Structures and Algorithms +0912.3012 Algebraic Geometry +0912.3188 Data Structures and Algorithms +0912.3419 Information Theory +0912.3429 Logic in Computer Science +0912.3802 Computational Complexity +0912.4110 Logic +0912.4117 Logic in Computer Science +0912.4226 Data Structures and Algorithms +0912.4569 Data Structures and Algorithms +0912.4602 Computational Complexity +1001.0117 Computational Complexity +1001.0228 K-Theory and Homology +1001.0236 Computational Geometry +1001.0383 Computational Complexity +1001.0735 Logic in Computer Science +1001.0746 Computational Complexity +1001.0824 Data Structures and Algorithms +1001.0920 Data Structures and Algorithms +1001.2440 Differential Geometry +1001.3044 Data Structures and Algorithms +1001.3251 Computational Complexity +1001.3311 Superconductivity +1001.3749 Computational Complexity +1001.4816 +1001.4829 Computational Complexity +1001.4865 Algebraic Geometry +1001.4907 Probability +1001.4987 Computational Complexity +1001.5075 Materials Science +1001.5428 Instrumentation and Detectors +1002.0332 Earth and Planetary Astrophysics +1002.0339 Solar and Stellar Astrophysics +1002.0345 Metric Geometry +1002.0348 Quantum Algebra +1002.0349 High Energy Astrophysical Phenomena +1002.0354 Materials Science +1002.0358 Medical Physics +1002.0362 Number Theory +1002.0367 Optimization and Control +1002.0379 Algebraic Geometry +1002.0383 Computer Vision and Pattern Recognition +1002.0384 Differential Geometry +1002.0387 Spectral Theory +1002.0388 Spectral Theory +1002.0393 Geometric Topology +1002.0396 Representation Theory +1002.0397 Solar and Stellar Astrophysics +1002.0398 Instrumentation and Detectors +1002.0405 Rings and Algebras +1002.0406 Information Theory +1002.0411 Computer Vision and Pattern Recognition +1002.0412 Computer Vision and Pattern Recognition +1002.0413 Solar and Stellar Astrophysics +1002.0414 Computer Vision and Pattern Recognition +1002.0415 Quantum Algebra +1002.0423 Differential Geometry +1002.0425 Statistics Theory +1002.0427 Materials Science +1002.0429 Algebraic Topology +1002.0430 Materials Science +1002.0431 General Physics +1002.0433 Instrumentation and Methods for Astrophysics +1002.0434 Algebraic Topology +1002.0435 Materials Science +1002.0438 Differential Geometry +1002.0442 Number Theory +1002.0444 Lattice +1002.0446 Lattice +1002.0447 Phenomenology +1002.0452 Lattice +1002.0454 Functional Analysis +1002.0455 +1002.0456 Astrophysics of Galaxies +1002.0457 Cosmology and Nongalactic Astrophysics +1002.0465 +1002.0468 Instrumentation and Methods for Astrophysics +1002.0472 Physics Education +1002.0473 Phenomenology +1002.0475 Representation Theory +1002.0476 Cosmology and Nongalactic Astrophysics +1002.0478 Computation and Language +1002.0479 Computation and Language +1002.0484 Networking and Internet Architecture +1002.0485 Computation and Language +1002.0494 Statistical Mechanics +1002.0495 Mesoscale and Nanoscale Physics +1002.0497 Probability +1002.0500 Theory +1002.0502 Instrumentation and Methods for Astrophysics +1002.0507 Networking and Internet Architecture +1002.0508 Networking and Internet Architecture +1002.0509 Networking and Internet Architecture +1002.0511 Networking and Internet Architecture +1002.0513 Phenomenology +1002.0522 Commutative Algebra +1002.0527 Complex Variables +1002.0528 Probability +1002.0529 Phenomenology +1002.0532 Digital Libraries +1002.0533 +1002.0535 Probability +1002.0536 Combinatorics +1002.0540 +1002.0546 Solar and Stellar Astrophysics +1002.0547 +1002.0564 Phenomenology +1002.0567 Computation +1002.0570 Networking and Internet Architecture +1002.0572 Classical Physics +1002.0573 Networking and Internet Architecture +1002.0574 Networking and Internet Architecture +1002.0575 Networking and Internet Architecture +1002.0576 Networking and Internet Architecture +1002.0577 Information Retrieval +1002.0580 Data Structures and Algorithms +astro-ph/9808104 +cond-mat/0604109 Statistical Mechanics +gr-qc/0005025 +gr-qc/0006096 +gr-qc/0105102 +gr-qc/0404098 +gr-qc/9802001 +gr-qc/9806028 +hep-ex/0002045 Experiment +hep-ex/0108051 Experiment +hep-ex/0202003 Experiment +hep-ex/9909033 Experiment +hep-ex/9910061 Experiment +hep-lat/0012009 Lattice +hep-lat/0012011 Lattice +hep-lat/0012020 Lattice +hep-lat/0012028 Lattice +hep-lat/0101001 Lattice +hep-lat/0101004 Lattice +hep-lat/0103027 Lattice +hep-lat/0103036 Lattice +hep-lat/0104014 Lattice +hep-lat/0106011 Lattice +hep-lat/0106017 Lattice +hep-lat/0108010 Lattice +hep-lat/0108014 Lattice +hep-lat/0108019 Lattice +hep-lat/0202015 Lattice +hep-lat/0207003 Lattice +hep-lat/0208025 Lattice +hep-lat/0209145 Lattice +hep-lat/0309022 Lattice +hep-lat/0309090 Lattice +hep-lat/0311010 Lattice +hep-lat/0401025 Lattice +hep-lat/0402002 Lattice +hep-lat/0406008 Lattice +hep-lat/0406013 Lattice +hep-lat/0406026 Lattice +hep-lat/0407002 Lattice +hep-lat/0407032 Lattice +hep-lat/0408015 Lattice +hep-lat/0411001 Lattice +hep-lat/0412008 Lattice +hep-lat/0504019 Lattice +hep-lat/0604012 Lattice +hep-lat/0606013 Lattice +hep-lat/0607027 Lattice +hep-lat/0610059 Lattice +hep-lat/0612010 Lattice +hep-lat/9811004 Lattice +hep-lat/9907027 Lattice +hep-lat/9909091 Lattice +hep-ph/0006183 Phenomenology +hep-ph/0007139 Phenomenology +hep-ph/0007170 Phenomenology +hep-ph/0007317 Phenomenology +hep-ph/0008103 Phenomenology +hep-ph/0008315 Phenomenology +hep-ph/0009001 Phenomenology +hep-ph/0009086 Phenomenology +hep-ph/0009286 Phenomenology +hep-ph/0010009 Phenomenology +hep-ph/0010081 Phenomenology +hep-ph/0010308 Phenomenology +hep-ph/0011138 Phenomenology +hep-ph/0011156 Phenomenology +hep-ph/0011209 Phenomenology +hep-ph/0011289 Phenomenology +hep-ph/0011295 Phenomenology +hep-ph/0012131 Phenomenology +hep-ph/0012165 Phenomenology +hep-ph/0012174 Phenomenology +hep-ph/0012182 Phenomenology +hep-ph/0012221 Phenomenology +hep-ph/0012308 Phenomenology +hep-ph/0012318 Phenomenology +hep-ph/0012369 Phenomenology +hep-ph/0101009 Phenomenology +hep-ph/0101098 Phenomenology +hep-ph/0101199 Phenomenology +hep-ph/0101205 Phenomenology +hep-ph/0101226 Phenomenology +hep-ph/0101250 Phenomenology +hep-ph/0101323 Phenomenology +hep-ph/0102096 Phenomenology +hep-ph/0102134 Phenomenology +hep-ph/0102207 Phenomenology +hep-ph/0102227 Phenomenology +hep-ph/0102237 Phenomenology +hep-ph/0102273 Phenomenology +hep-ph/0102297 Phenomenology +hep-ph/0102308 Phenomenology +hep-ph/0103179 Phenomenology +hep-ph/0103248 Phenomenology +hep-ph/0103260 Phenomenology +hep-ph/0103263 Phenomenology +hep-ph/0104076 Phenomenology +hep-ph/0104121 Phenomenology +hep-ph/0104178 Phenomenology +hep-ph/0105035 Phenomenology +hep-ph/0105052 Phenomenology +hep-ph/0105072 Phenomenology +hep-ph/0105146 Phenomenology +hep-ph/0105175 Phenomenology +hep-ph/0105194 Phenomenology +hep-ph/0105212 Phenomenology +hep-ph/0105216 Phenomenology +hep-ph/0106029 Phenomenology +hep-ph/0106043 Phenomenology +hep-ph/0106070 Phenomenology +hep-ph/0106220 Phenomenology +hep-ph/0106226 Phenomenology +hep-ph/0106278 Phenomenology +hep-ph/0106304 Phenomenology +hep-ph/0107077 Phenomenology +hep-ph/0107128 Phenomenology +hep-ph/0107232 Phenomenology +hep-ph/0107250 Phenomenology +hep-ph/0107316 Phenomenology +hep-ph/0108034 Phenomenology +hep-ph/0108085 Phenomenology +hep-ph/0108097 Phenomenology +hep-ph/0108206 Phenomenology +hep-ph/0108240 Phenomenology +hep-ph/0109011 Phenomenology +hep-ph/0109028 Phenomenology +hep-ph/0109064 Phenomenology +hep-ph/0109078 Phenomenology +hep-ph/0109079 Phenomenology +hep-ph/0109206 Phenomenology +hep-ph/0109231 Phenomenology +hep-ph/0109258 Phenomenology +hep-ph/0109276 Phenomenology +hep-ph/0110045 Phenomenology +hep-ph/0110115 Phenomenology +hep-ph/0110121 Phenomenology +hep-ph/0110126 Phenomenology +hep-ph/0110297 Phenomenology +hep-ph/0110381 Phenomenology +hep-ph/0111107 Phenomenology +hep-ph/0111157 Phenomenology +hep-ph/0111208 Phenomenology +hep-ph/0202206 Phenomenology +hep-ph/0204217 Phenomenology +hep-ph/0205071 Phenomenology +hep-ph/0212147 Phenomenology +hep-ph/0212196 Phenomenology +hep-ph/0301081 Phenomenology +hep-ph/0302075 Phenomenology +hep-ph/0303179 Phenomenology +hep-ph/0303213 Phenomenology +hep-ph/0304169 Phenomenology +hep-ph/0305043 Phenomenology +hep-ph/0305104 Phenomenology +hep-ph/0305159 Phenomenology +hep-ph/0308181 Phenomenology +hep-ph/0310037 Phenomenology +hep-ph/0310137 Phenomenology +hep-ph/0310342 Phenomenology +hep-ph/0401029 Phenomenology +hep-ph/0401047 Phenomenology +hep-ph/0402194 Phenomenology +hep-ph/0402269 Phenomenology +hep-ph/0403047 Phenomenology +hep-ph/0403062 Phenomenology +hep-ph/0403112 Phenomenology +hep-ph/0403165 Phenomenology +hep-ph/0403189 Phenomenology +hep-ph/0403268 Phenomenology +hep-ph/0404120 Phenomenology +hep-ph/0404251 Phenomenology +hep-ph/0405198 Phenomenology +hep-ph/0405206 Phenomenology +hep-ph/0406322 Phenomenology +hep-ph/0407143 Phenomenology +hep-ph/0407216 Phenomenology +hep-ph/0408164 Phenomenology +hep-ph/0408248 Phenomenology +hep-ph/0409111 Phenomenology +hep-ph/0409115 Phenomenology +hep-ph/0409241 Phenomenology +hep-ph/0409355 Phenomenology +hep-ph/0410088 Phenomenology +hep-ph/0411132 Phenomenology +hep-ph/0412277 Phenomenology +hep-ph/0501072 Phenomenology +hep-ph/0502071 Phenomenology +hep-ph/0502102 Phenomenology +hep-ph/0502255 Phenomenology +hep-ph/0503026 Phenomenology +hep-ph/0503140 Phenomenology +hep-ph/0503143 Phenomenology +hep-ph/0503179 Phenomenology +hep-ph/0503208 Phenomenology +hep-ph/0504192 Phenomenology +hep-ph/0505227 Phenomenology +hep-ph/0508040 Phenomenology +hep-ph/0508075 Phenomenology +hep-ph/0508195 Phenomenology +hep-ph/0508269 Phenomenology +hep-ph/0509130 Phenomenology +hep-ph/0510075 Phenomenology +hep-ph/0510089 Phenomenology +hep-ph/0511205 Phenomenology +hep-ph/0511295 Phenomenology +hep-ph/0512202 Phenomenology +hep-ph/0601262 Phenomenology +hep-ph/0601266 Phenomenology +hep-ph/0602001 Phenomenology +hep-ph/0602035 Phenomenology +hep-ph/0603068 Phenomenology +hep-ph/0603142 Phenomenology +hep-ph/0604074 Phenomenology +hep-ph/0604147 Phenomenology +hep-ph/0606087 Phenomenology +hep-ph/0606116 Phenomenology +hep-ph/0606167 Phenomenology +hep-ph/0606197 Phenomenology +hep-ph/0607292 Phenomenology +hep-ph/0608154 Phenomenology +hep-ph/0608291 Phenomenology +hep-ph/0609003 Phenomenology +hep-ph/0609032 Phenomenology +hep-ph/0609181 Phenomenology +hep-ph/0609234 Phenomenology +hep-ph/0611278 Phenomenology +hep-ph/0611304 Phenomenology +hep-ph/0611309 Phenomenology +hep-ph/0612166 Phenomenology +hep-ph/0612257 Phenomenology +hep-ph/0701250 Phenomenology +hep-ph/0701259 Phenomenology +hep-ph/0702037 Phenomenology +hep-ph/0702151 Phenomenology +hep-ph/9706359 Phenomenology +hep-ph/9708232 Phenomenology +hep-ph/9708355 Phenomenology +hep-ph/9709424 Phenomenology +hep-ph/9802381 Phenomenology +hep-ph/9803382 Phenomenology +hep-ph/9803400 Phenomenology +hep-ph/9804296 Phenomenology +hep-ph/9804430 Phenomenology +hep-ph/9804462 Phenomenology +hep-ph/9805384 Phenomenology +hep-ph/9805397 Phenomenology +hep-ph/9805484 Phenomenology +hep-ph/9806462 Phenomenology +hep-ph/9806484 Phenomenology +hep-ph/9806531 Phenomenology +hep-ph/9807209 Phenomenology +hep-ph/9807333 Phenomenology +hep-ph/9808289 Phenomenology +hep-ph/9808487 Phenomenology +hep-ph/9809247 Phenomenology +hep-ph/9809596 Phenomenology +hep-ph/9810257 Phenomenology +hep-ph/9810435 Phenomenology +hep-ph/9811447 Phenomenology +hep-ph/9812316 Phenomenology +hep-ph/9812396 Phenomenology +hep-ph/9901357 Phenomenology +hep-ph/9902293 Phenomenology +hep-ph/9902437 Phenomenology +hep-ph/9903413 Phenomenology +hep-ph/9903436 Phenomenology +hep-ph/9903448 Phenomenology +hep-ph/9904244 Phenomenology +hep-ph/9905424 Phenomenology +hep-ph/9906281 Phenomenology +hep-ph/9907205 Phenomenology +hep-ph/9907223 Phenomenology +hep-ph/9907380 Phenomenology +hep-ph/9908296 Phenomenology +hep-ph/9908307 Phenomenology +hep-ph/9908474 Phenomenology +hep-ph/9909244 Phenomenology +hep-ph/9911353 Phenomenology +hep-ph/9911391 Phenomenology +hep-ph/9912282 Phenomenology +hep-ph/9912428 Phenomenology +hep-th/0001054 Theory +hep-th/0001135 Theory +hep-th/0002039 Theory +hep-th/0002189 Theory +hep-th/0003053 Theory +hep-th/0003163 Theory +hep-th/0003187 Theory +hep-th/0003219 Theory +hep-th/0004048 Theory +hep-th/0004187 Theory +hep-th/0005121 Theory +hep-th/0005186 Theory +hep-th/0006107 Theory +hep-th/0006120 Theory +hep-th/0006210 Theory +hep-th/0006240 Theory +hep-th/0007037 Theory +hep-th/0007067 Theory +hep-th/0007076 Theory +hep-th/0007099 Theory +hep-th/0007110 Theory +hep-th/0007206 Theory +hep-th/0007217 Theory +hep-th/0007241 Theory +hep-th/0008008 Theory +hep-th/0008112 Theory +hep-th/0008141 Theory +hep-th/0008190 Theory +hep-th/0008247 Theory +hep-th/0009042 Theory +hep-th/0009045 Theory +hep-th/0009095 Theory +hep-th/0009224 Theory +hep-th/0009244 Theory +hep-th/0009246 Theory +hep-th/0010023 Theory +hep-th/0010040 Theory +hep-th/0010045 Theory +hep-th/0010072 Theory +hep-th/0010090 Theory +hep-th/0010096 Theory +hep-th/0010119 Theory +hep-th/0010141 Theory +hep-th/0010154 Theory +hep-th/0010201 Theory +hep-th/0010217 Theory +hep-th/0010221 Theory +hep-th/0010223 Theory +hep-th/0010237 Theory +hep-th/0010241 Theory +hep-th/0010247 Theory +hep-th/0010263 Theory +hep-th/0010266 Theory +hep-th/0011001 Theory +hep-th/0011009 Theory +hep-th/0011016 Theory +hep-th/0011060 Theory +hep-th/0011077 Theory +hep-th/0011091 Theory +hep-th/0011114 Theory +hep-th/0011166 Theory +hep-th/0011192 Theory +hep-th/0011202 Theory +hep-th/0011206 Theory +hep-th/0011211 Theory +hep-th/0011215 Theory +hep-th/0011218 Theory +hep-th/0011219 Theory +hep-th/0011227 Theory +hep-th/0011236 Theory +hep-th/0011253 Theory +hep-th/0011281 Theory +hep-th/0011282 Theory +hep-th/0012016 Theory +hep-th/0012018 Theory +hep-th/0012042 Theory +hep-th/0012061 Theory +hep-th/0012068 Theory +hep-th/0012089 Theory +hep-th/0012103 Theory +hep-th/0012108 Theory +hep-th/0012124 Theory +hep-th/0012155 Theory +hep-th/0012163 Theory +hep-th/0012164 Theory +hep-th/0012170 Theory +hep-th/0012180 Theory +hep-th/0012194 Theory +hep-th/0012210 Theory +hep-th/0012217 Theory +hep-th/0012219 Theory +hep-th/0012237 Theory +hep-th/0012248 Theory +hep-th/0012254 Theory +hep-th/0012258 Theory +hep-th/0012266 Theory +hep-th/0012270 Theory +hep-th/0101001 Theory +hep-th/0101034 Theory +hep-th/0101039 Theory +hep-th/0101071 Theory +hep-th/0101087 Theory +hep-th/0101129 Theory +hep-th/0101135 Theory +hep-th/0101136 Theory +hep-th/0101143 Theory +hep-th/0101164 Theory +hep-th/0101171 Theory +hep-th/0101198 Theory +hep-th/0101202 Theory +hep-th/0101213 Theory +hep-th/0101235 Theory +hep-th/0102009 Theory +hep-th/0102016 Theory +hep-th/0102038 Theory +hep-th/0102041 Theory +hep-th/0102045 Theory +hep-th/0102056 Theory +hep-th/0102058 Theory +hep-th/0102063 Theory +hep-th/0102071 Theory +hep-th/0102080 Theory +hep-th/0102090 Theory +hep-th/0102095 Theory +hep-th/0102110 Theory +hep-th/0102123 Theory +hep-th/0102138 Theory +hep-th/0102146 Theory +hep-th/0102151 Theory +hep-th/0102173 Theory +hep-th/0102200 Theory +hep-th/0102201 Theory +hep-th/0103012 Theory +hep-th/0103013 Theory +hep-th/0103018 Theory +hep-th/0103019 Theory +hep-th/0103032 Theory +hep-th/0103033 Theory +hep-th/0103056 Theory +hep-th/0103058 Theory +hep-th/0103069 Theory +hep-th/0103080 Theory +hep-th/0103089 Theory +hep-th/0103111 Theory +hep-th/0103146 Theory +hep-th/0103159 Theory +hep-th/0103163 Theory +hep-th/0103167 Theory +hep-th/0103168 Theory +hep-th/0103179 Theory +hep-th/0103183 Theory +hep-th/0103184 Theory +hep-th/0103217 Theory +hep-th/0103235 Theory +hep-th/0104016 Theory +hep-th/0104017 Theory +hep-th/0104029 Theory +hep-th/0104037 Theory +hep-th/0104039 Theory +hep-th/0104045 Theory +hep-th/0104046 Theory +hep-th/0104047 Theory +hep-th/0104082 Theory +hep-th/0104084 Theory +hep-th/0104090 Theory +hep-th/0104100 Theory +hep-th/0104106 Theory +hep-th/0104110 Theory +hep-th/0104112 Theory +hep-th/0104125 Theory +hep-th/0104133 Theory +hep-th/0104143 Theory +hep-th/0104146 Theory +hep-th/0104147 Theory +hep-th/0104169 Theory +hep-th/0104172 Theory +hep-th/0104176 Theory +hep-th/0104181 Theory +hep-th/0104200 Theory +hep-th/0104202 Theory +hep-th/0104218 Theory +hep-th/0104236 Theory +hep-th/0104243 Theory +hep-th/0104259 Theory +hep-th/0105049 Theory +hep-th/0105050 Theory +hep-th/0105059 Theory +hep-th/0105084 Theory +hep-th/0105089 Theory +hep-th/0105157 Theory +hep-th/0105192 Theory +hep-th/0105204 Theory +hep-th/0105217 Theory +hep-th/0105228 Theory +hep-th/0105229 Theory +hep-th/0105238 Theory +hep-th/0105253 Theory +hep-th/0105257 Theory +hep-th/0105274 Theory +hep-th/0105284 Theory +hep-th/0105298 Theory +hep-th/0105305 Theory +hep-th/0105319 Theory +hep-th/0106011 Theory +hep-th/0106023 Theory +hep-th/0106036 Theory +hep-th/0106061 Theory +hep-th/0106072 Theory +hep-th/0106079 Theory +hep-th/0106082 Theory +hep-th/0106107 Theory +hep-th/0106188 Theory +hep-th/0106190 Theory +hep-th/0106201 Theory +hep-th/0106212 Theory +hep-th/0106213 Theory +hep-th/0106216 Theory +hep-th/0106259 Theory +hep-th/0106267 Theory +hep-th/0107016 Theory +hep-th/0107029 Theory +hep-th/0107084 Theory +hep-th/0107097 Theory +hep-th/0107118 Theory +hep-th/0107142 Theory +hep-th/0107149 Theory +hep-th/0107153 Theory +hep-th/0107154 Theory +hep-th/0107159 Theory +hep-th/0107162 Theory +hep-th/0107164 Theory +hep-th/0107178 Theory +hep-th/0107179 Theory +hep-th/0107186 Theory +hep-th/0107194 Theory +hep-th/0107195 Theory +hep-th/0107196 Theory +hep-th/0107217 Theory +hep-th/0107261 Theory +hep-th/0107265 Theory +hep-th/0107267 Theory +hep-th/0108017 Theory +hep-th/0108035 Theory +hep-th/0108052 Theory +hep-th/0108150 Theory +hep-th/0108167 Theory +hep-th/0108169 Theory +hep-th/0108181 Theory +hep-th/0108182 Theory +hep-th/0108202 Theory +hep-th/0108238 Theory +hep-th/0109004 Theory +hep-th/0109057 Theory +hep-th/0109090 Theory +hep-th/0109111 Theory +hep-th/0109127 Theory +hep-th/0109150 Theory +hep-th/0109159 Theory +hep-th/0109164 Theory +hep-th/0109186 Theory +hep-th/0109202 Theory +hep-th/0109213 Theory +hep-th/0110034 Theory +hep-th/0110048 Theory +hep-th/0110072 Theory +hep-th/0110085 Theory +hep-th/0110099 Theory +hep-th/0110112 Theory +hep-th/0110115 Theory +hep-th/0110124 Theory +hep-th/0110136 Theory +hep-th/0110141 Theory +hep-th/0110152 Theory +hep-th/0110184 Theory +hep-th/0110189 Theory +hep-th/0110201 Theory +hep-th/0110232 Theory +hep-th/0110271 Theory +hep-th/0110293 Theory +hep-th/0110299 Theory +hep-th/0110302 Theory +hep-th/0111024 Theory +hep-th/0111027 Theory +hep-th/0111092 Theory +hep-th/0111120 Theory +hep-th/0111126 Theory +hep-th/0111177 Theory +hep-th/0112008 Theory +hep-th/0112150 Theory +hep-th/0112166 Theory +hep-th/0112198 Theory +hep-th/0112203 Theory +hep-th/0201151 Theory +hep-th/0201173 Theory +hep-th/0201254 Theory +hep-th/0202037 Theory +hep-th/0202094 Theory +hep-th/0202131 Theory +hep-th/0203025 Theory +hep-th/0203030 Theory +hep-th/0203077 Theory +hep-th/0203155 Theory +hep-th/0203175 Theory +hep-th/0203181 Theory +hep-th/0203188 Theory +hep-th/0206010 Theory +hep-th/0206045 Theory +hep-th/0206073 Theory +hep-th/0206131 Theory +hep-th/0207076 Theory +hep-th/0207124 Theory +hep-th/0209201 Theory +hep-th/0209235 Theory +hep-th/0210096 Theory +hep-th/0210127 Theory +hep-th/0210229 Theory +hep-th/0211010 Theory +hep-th/0211039 Theory +hep-th/0211100 Theory +hep-th/0211108 Theory +hep-th/0211218 Theory +hep-th/0211254 Theory +hep-th/0212025 Theory +hep-th/0212089 Theory +hep-th/0212091 Theory +hep-th/0212190 Theory +hep-th/0212261 Theory +hep-th/0212303 Theory +hep-th/0301002 Theory +hep-th/0301010 Theory +hep-th/0301067 Theory +hep-th/0301079 Theory +hep-th/0301092 Theory +hep-th/0301106 Theory +hep-th/0301161 Theory +hep-th/0301233 Theory +hep-th/0302047 Theory +hep-th/0302220 Theory +hep-th/0303104 Theory +hep-th/0303127 Theory +hep-th/0303232 Theory +hep-th/0304206 Theory +hep-th/0304239 Theory +hep-th/0304254 Theory +hep-th/0305023 Theory +hep-th/0305058 Theory +hep-th/0305059 Theory +hep-th/0305145 Theory +hep-th/0306001 Theory +hep-th/0306007 Theory +hep-th/0306053 Theory +hep-th/0306101 Theory +hep-th/0306102 Theory +hep-th/0306171 Theory +hep-th/0306176 Theory +hep-th/0306202 Theory +hep-th/0306236 Theory +hep-th/0306248 Theory +hep-th/0306264 Theory +hep-th/0307018 Theory +hep-th/0307026 Theory +hep-th/0307031 Theory +hep-th/0307184 Theory +hep-th/0307209 Theory +hep-th/0307218 Theory +hep-th/0307260 Theory +hep-th/0308061 Theory +hep-th/0308140 Theory +hep-th/0308141 Theory +hep-th/0308174 Theory +hep-th/0309035 Theory +hep-th/0309058 Theory +hep-th/0309103 Theory +hep-th/0309117 Theory +hep-th/0309148 Theory +hep-th/0309170 Theory +hep-th/0309188 Theory +hep-th/0310008 Theory +hep-th/0310037 Theory +hep-th/0310137 Theory +hep-th/0310182 Theory +hep-th/0310187 Theory +hep-th/0310188 Theory +hep-th/0311013 Theory +hep-th/0311135 Theory +hep-th/0311167 Theory +hep-th/0311188 Theory +hep-th/0311201 Theory +hep-th/0312054 Theory +hep-th/0312078 Theory +hep-th/0312097 Theory +hep-th/0312162 Theory +hep-th/0312213 Theory +hep-th/0312237 Theory +hep-th/0401078 Theory +hep-th/0401125 Theory +hep-th/0401137 Theory +hep-th/0401147 Theory +hep-th/0401164 Theory +hep-th/0401175 Theory +hep-th/0401197 Theory +hep-th/0401201 Theory +hep-th/0401236 Theory +hep-th/0402035 Theory +hep-th/0402124 Theory +hep-th/0402167 Theory +hep-th/0402196 Theory +hep-th/0403076 Theory +hep-th/0403095 Theory +hep-th/0403116 Theory +hep-th/0403164 Theory +hep-th/0403179 Theory +hep-th/0403193 Theory +hep-th/0403248 Theory +hep-th/0403280 Theory +hep-th/0404072 Theory +hep-th/0404079 Theory +hep-th/0404100 Theory +hep-th/0404116 Theory +hep-th/0404190 Theory +hep-th/0404231 Theory +hep-th/0404245 Theory +hep-th/0405096 Theory +hep-th/0405102 Theory +hep-th/0405243 Theory +hep-th/0405245 Theory +hep-th/0405267 Theory +hep-th/0406002 Theory +hep-th/0406018 Theory +hep-th/0406052 Theory +hep-th/0406069 Theory +hep-th/0406076 Theory +hep-th/0406082 Theory +hep-th/0406096 Theory +hep-th/0406105 Theory +hep-th/0406116 Theory +hep-th/0406120 Theory +hep-th/0406146 Theory +hep-th/0406178 Theory +hep-th/0406197 Theory +hep-th/0406205 Theory +hep-th/0407136 Theory +hep-th/0407140 Theory +hep-th/0407229 Theory +hep-th/0407262 Theory +hep-th/0407264 Theory +hep-th/0408067 Theory +hep-th/0408109 Theory +hep-th/0408168 Theory +hep-th/0408205 Theory +hep-th/0408240 Theory +hep-th/0408245 Theory +hep-th/0409129 Theory +hep-th/0409159 Theory +hep-th/0409169 Theory +hep-th/0410123 Theory +hep-th/0410128 Theory +hep-th/0410166 Theory +hep-th/0410180 Theory +hep-th/0410232 Theory +hep-th/0410272 Theory +hep-th/0411041 Theory +hep-th/0411130 Theory +hep-th/0411166 Theory +hep-th/0411183 Theory +hep-th/0412163 Theory +hep-th/0412215 Theory +hep-th/0412239 Theory +hep-th/0412266 Theory +hep-th/0501072 Theory +hep-th/0502048 Theory +hep-th/0502083 Theory +hep-th/0502122 Theory +hep-th/0502155 Theory +hep-th/0502157 Theory +hep-th/0502161 Theory +hep-th/0502186 Theory +hep-th/0502206 Theory +hep-th/0502208 Theory +hep-th/0502214 Theory +hep-th/0502219 Theory +hep-th/0502228 Theory +hep-th/0503207 Theory +hep-th/0504013 Theory +hep-th/0504042 Theory +hep-th/0504109 Theory +hep-th/0504115 Theory +hep-th/0504116 Theory +hep-th/0504161 Theory +hep-th/0504230 Theory +hep-th/0505001 Theory +hep-th/0505076 Theory +hep-th/0505201 Theory +hep-th/0506010 Theory +hep-th/0506014 Theory +hep-th/0506028 Theory +hep-th/0506055 Theory +hep-th/0506076 Theory +hep-th/0506077 Theory +hep-th/0506091 Theory +hep-th/0506169 Theory +hep-th/0506206 Theory +hep-th/0506232 Theory +hep-th/0506255 Theory +hep-th/0507061 Theory +hep-th/0507135 Theory +hep-th/0507138 Theory +hep-th/0507190 Theory +hep-th/0507191 Theory +hep-th/0507240 Theory +hep-th/0507268 Theory +hep-th/0508004 Theory +hep-th/0508048 Theory +hep-th/0508086 Theory +hep-th/0508102 Theory +hep-th/0508149 Theory +hep-th/0508206 Theory +hep-th/0508214 Theory +hep-th/0508248 Theory +hep-th/0509051 Theory +hep-th/0509063 Theory +hep-th/0509154 Theory +hep-th/0509192 Theory +hep-th/0510046 Theory +hep-th/0510049 Theory +hep-th/0511043 Theory +hep-th/0511197 Theory +hep-th/0511239 Theory +hep-th/0512005 Theory +hep-th/0512101 Theory +hep-th/0512161 Theory +hep-th/0602054 Theory +hep-th/0602071 Theory +hep-th/0602086 Theory +hep-th/0602296 Theory +hep-th/0603025 Theory +hep-th/0603041 Theory +hep-th/0603086 Theory +hep-th/0603202 Theory +hep-th/0603206 Theory +hep-th/0603232 Theory +hep-th/0604008 Theory +hep-th/0605023 Theory +hep-th/0605063 Theory +hep-th/0605073 Theory +hep-th/0605141 Theory +hep-th/0605150 Theory +hep-th/0605151 Theory +hep-th/0606011 Theory +hep-th/0606037 Theory +hep-th/0606041 Theory +hep-th/0606078 Theory +hep-th/0606084 Theory +hep-th/0606099 Theory +hep-th/0606105 Theory +hep-th/0606122 Theory +hep-th/0606125 Theory +hep-th/0606184 Theory +hep-th/0606218 Theory +hep-th/0606236 Theory +hep-th/0606241 Theory +hep-th/0606276 Theory +hep-th/0606282 Theory +hep-th/0607028 Theory +hep-th/0607037 Theory +hep-th/0607150 Theory +hep-th/0607198 Theory +hep-th/0607236 Theory +hep-th/0608003 Theory +hep-th/0608027 Theory +hep-th/0608050 Theory +hep-th/0608129 Theory +hep-th/0608132 Theory +hep-th/0608213 Theory +hep-th/0608224 Theory +hep-th/0609073 Theory +hep-th/0609180 Theory +hep-th/0610175 Theory +hep-th/0610179 Theory +hep-th/0610257 Theory +hep-th/0610271 Theory +hep-th/0611016 Theory +hep-th/0611219 Theory +hep-th/0611266 Theory +hep-th/0611303 Theory +hep-th/0612065 Theory +hep-th/0612130 Theory +hep-th/0612201 Theory +hep-th/0612300 Theory +hep-th/0701236 Theory +hep-th/0702055 Theory +hep-th/0702187 Theory +hep-th/0703020 Theory +hep-th/0703102 Theory +hep-th/0703148 Theory +hep-th/0703249 Theory +hep-th/0703260 Theory +hep-th/9609233 Theory +hep-th/9702056 Theory +hep-th/9703024 Theory +hep-th/9707243 Theory +hep-th/9708146 Theory +hep-th/9709081 Theory +hep-th/9710158 Theory +hep-th/9710226 Theory +hep-th/9711107 Theory +hep-th/9711165 Theory +hep-th/9711179 Theory +hep-th/9711205 Theory +hep-th/9712007 Theory +hep-th/9712071 Theory +hep-th/9712075 Theory +hep-th/9712097 Theory +hep-th/9712143 Theory +hep-th/9712230 Theory +hep-th/9801027 Theory +hep-th/9801067 Theory +hep-th/9801099 Theory +hep-th/9801118 Theory +hep-th/9801189 Theory +hep-th/9802027 Theory +hep-th/9802171 Theory +hep-th/9802194 Theory +hep-th/9803065 Theory +hep-th/9803077 Theory +hep-th/9803108 Theory +hep-th/9803147 Theory +hep-th/9803260 Theory +hep-th/9803263 Theory +hep-th/9804065 Theory +hep-th/9804078 Theory +hep-th/9804175 Theory +hep-th/9805046 Theory +hep-th/9805104 Theory +hep-th/9805125 Theory +hep-th/9805158 Theory +hep-th/9805176 Theory +hep-th/9805207 Theory +hep-th/9805217 Theory +hep-th/9806001 Theory +hep-th/9806028 Theory +hep-th/9806056 Theory +hep-th/9806158 Theory +hep-th/9806214 Theory +hep-th/9806238 Theory +hep-th/9807172 Theory +hep-th/9807182 Theory +hep-th/9807189 Theory +hep-th/9807200 Theory +hep-th/9807214 Theory +hep-th/9807229 Theory +hep-th/9808020 Theory +hep-th/9808031 Theory +hep-th/9808087 Theory +hep-th/9808125 Theory +hep-th/9808126 Theory +hep-th/9808128 Theory +hep-th/9809009 Theory +hep-th/9809063 Theory +hep-th/9809145 Theory +hep-th/9809162 Theory +hep-th/9809175 Theory +hep-th/9810075 Theory +hep-th/9810116 Theory +hep-th/9810126 Theory +hep-th/9810168 Theory +hep-th/9810192 Theory +hep-th/9810200 Theory +hep-th/9810240 Theory +hep-th/9811017 Theory +hep-th/9811021 Theory +hep-th/9811126 Theory +hep-th/9811129 Theory +hep-th/9811156 Theory +hep-th/9811255 Theory +hep-th/9811258 Theory +hep-th/9812015 Theory +hep-th/9812062 Theory +hep-th/9812100 Theory +hep-th/9812131 Theory +hep-th/9812144 Theory +hep-th/9812239 Theory +hep-th/9812240 Theory +hep-th/9901004 Theory +hep-th/9901014 Theory +hep-th/9901017 Theory +hep-th/9901045 Theory +hep-th/9901048 Theory +hep-th/9901057 Theory +hep-th/9901139 Theory +hep-th/9901154 Theory +hep-th/9902004 Theory +hep-th/9902033 Theory +hep-th/9902073 Theory +hep-th/9902134 Theory +hep-th/9902179 Theory +hep-th/9902202 Theory +hep-th/9903019 Theory +hep-th/9903023 Theory +hep-th/9903026 Theory +hep-th/9903049 Theory +hep-th/9903111 Theory +hep-th/9903120 Theory +hep-th/9904008 Theory +hep-th/9904020 Theory +hep-th/9904039 Theory +hep-th/9904050 Theory +hep-th/9904113 Theory +hep-th/9905018 Theory +hep-th/9905027 Theory +hep-th/9905032 Theory +hep-th/9905036 Theory +hep-th/9905068 Theory +hep-th/9905081 Theory +hep-th/9905157 Theory +hep-th/9905177 Theory +hep-th/9905181 Theory +hep-th/9905212 Theory +hep-th/9906031 Theory +hep-th/9906056 Theory +hep-th/9906166 Theory +hep-th/9906206 Theory +hep-th/9906248 Theory +hep-th/9907022 Theory +hep-th/9907062 Theory +hep-th/9907155 Theory +hep-th/9907178 Theory +hep-th/9907188 Theory +hep-th/9908040 Theory +hep-th/9908047 Theory +hep-th/9908075 Theory +hep-th/9908077 Theory +hep-th/9908085 Theory +hep-th/9908107 Theory +hep-th/9908113 Theory +hep-th/9908116 Theory +hep-th/9908201 Theory +hep-th/9909182 Theory +hep-th/9909202 Theory +hep-th/9910024 Theory +hep-th/9910061 Theory +hep-th/9910195 Theory +hep-th/9910197 Theory +hep-th/9910241 Theory +hep-th/9910260 Theory +hep-th/9911084 Theory +hep-th/9911090 Theory +hep-th/9911093 Theory +hep-th/9911172 Theory +hep-th/9911173 Theory +hep-th/9911255 Theory +hep-th/9912073 Theory +hep-th/9912244 Theory +math-ph/0305033 +math-ph/0604014 +math-ph/0608011 +math-ph/0612050 +math/0703441 Quantum Algebra +physics/9711001 +0708.2110 Optics +0708.2993 General Physics +0709.3909 +0712.0807 Differential Geometry +0804.2150 Representation Theory +0807.3081 Data Analysis, Statistics and Probability +0809.3641 Classical Analysis and ODEs +0809.4373 +0810.1308 Mesoscale and Nanoscale Physics +0810.2327 +0810.4996 Algebraic Geometry +0810.5592 +0811.3711 Symplectic Geometry +0811.3964 Phenomenology +0901.2224 Databases +0901.4000 +0902.0562 Information Theory +0902.0727 Combinatorics +0903.1003 Classical Analysis and ODEs +0903.1084 History and Overview +0903.3359 Algebraic Geometry +0903.5123 Classical Analysis and ODEs +0905.0013 Phenomenology +0905.4791 General Physics +0906.0531 Networking and Internet Architecture +0906.5097 Algebraic Geometry +0906.5601 Geometric Topology +0907.1123 Optics +0908.1064 Statistical Mechanics +0908.4594 Phenomenology +0909.0123 Statistical Finance +0910.2195 Classical Analysis and ODEs +0910.4618 Networking and Internet Architecture +0910.4759 Group Theory +0911.3975 Group Theory +0911.5632 Mesoscale and Nanoscale Physics +0912.0797 Information Theory +0912.0917 Classical Analysis and ODEs +0912.3683 Cosmology and Nongalactic Astrophysics +1001.0129 Representation Theory +1001.0544 Algebraic Geometry +1002.0122 Combinatorics +1002.0796 Probability +1002.3541 Data Structures and Algorithms +1002.4932 Theory +1003.0092 Superconductivity +1003.0168 Trading and Market Microstructure +1003.1447 Statistical Mechanics +1003.4968 Optics +1003.5736 Algebraic Geometry +1004.0467 Mesoscale and Nanoscale Physics +1004.1445 Superconductivity +1004.2159 Computational Complexity +1004.2380 Soft Condensed Matter +1004.3143 Soft Condensed Matter +1004.3381 Computational Geometry +1004.3648 Superconductivity +1004.3890 Networking and Internet Architecture +1005.0133 Materials Science +1005.0877 Statistical Finance +1005.1964 Disordered Systems and Neural Networks +1005.2657 Number Theory +1005.3681 Learning +1005.5174 Atomic Physics +1006.0925 Solar and Stellar Astrophysics +1006.1323 Analysis of PDEs +1006.2347 Superconductivity +1006.3736 Mesoscale and Nanoscale Physics +1006.4389 Solar and Stellar Astrophysics +1006.4693 Probability +1006.4989 Phenomenology +1007.0876 Molecular Networks +1007.1543 Materials Science +1007.1802 Distributed, Parallel, and Cluster Computing +1007.2486 Optics +1007.3136 +1007.3166 Differential Geometry +1007.4291 Numerical Analysis +1007.4553 Classical Analysis and ODEs +1007.4744 +1007.4890 Distributed, Parallel, and Cluster Computing +1007.5109 Statistics Theory +1007.5138 Solar and Stellar Astrophysics +1007.5175 +1007.5216 Group Theory +1007.5239 Networking and Internet Architecture +1007.5295 +1007.5341 Networking and Internet Architecture +1007.5385 Phenomenology +1008.0010 +1008.0011 Distributed, Parallel, and Cluster Computing +1008.0012 Superconductivity +1008.0023 Commutative Algebra +1008.0025 Commutative Algebra +1008.0033 Phenomenology +1008.0034 Optics +1008.0050 Networking and Internet Architecture +1008.0058 Materials Science +1008.0060 Networking and Internet Architecture +1008.0062 Disordered Systems and Neural Networks +1008.0063 Neural and Evolutionary Computing +1008.0067 Optics +1008.0069 Statistical Mechanics +1008.0084 Superconductivity +1008.0086 +1008.0092 Other Computer Science +1008.0093 Materials Science +1008.0104 Experiment +1008.0105 Phenomenology +1008.0109 Metric Geometry +1008.0110 Metric Geometry +1008.0118 Geometric Topology +1008.0120 Rings and Algebras +1008.0121 Statistics Theory +1008.0123 Quantum Algebra +1008.0125 +1008.0127 Statistics Theory +1008.0137 Astrophysics of Galaxies +1008.0140 Information Theory +1008.0146 Instrumentation and Methods for Astrophysics +1008.0147 Computer Science and Game Theory +1008.0149 Statistical Finance +1008.0155 Number Theory +1008.0162 Plasma Physics +1008.0163 Functional Analysis +1008.0165 Fluid Dynamics +1008.0166 Algebraic Topology +1008.0169 Experiment +1008.0170 Computation and Language +1008.0174 General Physics +1008.0176 Combinatorics +1008.0180 Dynamical Systems +1008.0186 Probability +1008.0187 Cosmology and Nongalactic Astrophysics +1008.0188 General Physics +1008.0189 Combinatorics +1008.0192 Probability +1008.0196 Analysis of PDEs +1008.0197 Analysis of PDEs +1008.0199 Analysis of PDEs +1008.0200 Optimization and Control +1008.0211 +1008.0215 Statistical Mechanics +1008.0216 Physics Education +1008.0218 Phenomenology +1008.0222 Phenomenology +1008.0223 Information Theory +1008.0227 Networking and Internet Architecture +1008.0230 Computational Physics +1008.0233 Number Theory +1008.0235 Information Theory +1008.0239 Phenomenology +1008.0243 Operator Algebras +1008.0250 Materials Science +1008.0253 +1008.0256 Cryptography and Security +1008.0264 General Topology +1008.0266 Functional Analysis +1008.0267 Statistical Mechanics +1008.0270 Networking and Internet Architecture +1008.0271 Probability +1008.0273 Artificial Intelligence +1008.0276 Probability +1008.0278 Pattern Formation and Solitons +1008.0284 Optics +1008.0285 Information Theory +1008.0288 Analysis of PDEs +1008.0290 Probability +1008.0305 Algebraic Geometry +1008.0307 Earth and Planetary Astrophysics +1008.0308 Phenomenology +1008.0310 Combinatorics +1008.0326 Materials Science +1008.0328 Earth and Planetary Astrophysics +1008.0331 Cosmology and Nongalactic Astrophysics +1008.0336 Learning +1008.0339 +1008.0345 +1008.0351 Theory +1008.0353 Numerical Analysis +1008.0364 Phenomenology +1008.0373 +1008.0374 Mesoscale and Nanoscale Physics +1008.0375 Solar and Stellar Astrophysics +1008.0376 Classical Analysis and ODEs +1008.0377 Geometric Topology +1008.0379 Astrophysics of Galaxies +1008.0385 +cond-mat/0011445 Mesoscale and Nanoscale Physics +cond-mat/0204019 Mesoscale and Nanoscale Physics +cond-mat/0302286 Mesoscale and Nanoscale Physics +cond-mat/0307724 Mesoscale and Nanoscale Physics +cond-mat/0308067 Mesoscale and Nanoscale Physics +cond-mat/0508023 Mesoscale and Nanoscale Physics +math/0106085 General Topology +math/0403295 Geometric Topology +math/0611025 Geometric Topology +math/0611107 Algebraic Geometry +math/0611714 Differential Geometry +q-bio/0702004 Neurons and Cognition +0705.0097 Other Condensed Matter +0705.3822 Metric Geometry +0706.1313 Group Theory +0707.0487 Geometric Topology +0707.4646 Algebraic Geometry +0709.2331 Metric Geometry +0709.3021 Combinatorics +0710.3290 Algebraic Geometry +0710.3580 Computational Physics +0801.2443 Combinatorics +0803.0786 +0808.2987 Theory +0808.3169 Geometric Topology +0809.2212 Strongly Correlated Electrons +0810.1012 Combinatorics +0810.4467 Theory +0811.0809 Number Theory +0811.1485 +0812.0986 Category Theory +0901.0282 Earth and Planetary Astrophysics +0901.4499 Materials Science +0903.1647 Other Condensed Matter +0903.5428 Cosmology and Nongalactic Astrophysics +0905.0591 Geometric Topology +0905.0644 +0905.0963 Phenomenology +0905.2807 +0905.3567 High Energy Astrophysical Phenomena +0905.3892 Cosmology and Nongalactic Astrophysics +0906.0389 Differential Geometry +0906.0943 Computational Physics +0906.3695 Phenomenology +0906.4055 Theory +0906.4061 Materials Science +0906.4549 Neurons and Cognition +0907.0562 Phenomenology +0907.1639 Materials Science +0907.4967 +0907.5461 Physics Education +0908.0137 Numerical Analysis +0908.1662 +0909.0580 +0909.5165 Phenomenology +0910.1242 Mesoscale and Nanoscale Physics +0910.2693 Quantum Gases +0910.3108 Phenomenology +0910.3309 Lattice +0910.3315 Lattice +0910.4010 Mesoscale and Nanoscale Physics +0910.4986 Theory +0910.5064 High Energy Astrophysical Phenomena +0911.0859 Commutative Algebra +0911.1498 General Physics +0911.3057 Physics and Society +0912.0912 Solar and Stellar Astrophysics +0912.2331 Soft Condensed Matter +1001.0273 Populations and Evolution +1001.0865 Quantum Gases +1001.2392 Mesoscale and Nanoscale Physics +1001.3966 Data Analysis, Statistics and Probability +1001.4098 Pricing of Securities +1001.4590 +1001.4855 Algebraic Geometry +1001.5062 Atomic Physics +1002.0843 Chaotic Dynamics +1002.0853 Numerical Analysis +1002.0856 Classical Physics +1002.0862 Number Theory +1002.0865 Distributed, Parallel, and Cluster Computing +1002.0871 Theory +1002.0874 Data Structures and Algorithms +1002.0879 Category Theory +1002.0887 Numerical Analysis +1002.0890 Lattice +1002.0901 Exactly Solvable and Integrable Systems +1002.0904 Computation and Language +1002.0910 Logic +1002.0912 Fluid Dynamics +1002.0917 Trading and Market Microstructure +1002.0921 Algebraic Geometry +1002.0925 Lattice +1002.0926 Soft Condensed Matter +1002.0928 Analysis of PDEs +1002.0929 Algebraic Topology +1002.0930 Programming Languages +1002.0932 Combinatorics +1002.0933 Programming Languages +1002.0935 Logic in Computer Science +1002.0936 Programming Languages +1002.0937 Programming Languages +1002.0938 General Mathematics +1002.0939 Distributed, Parallel, and Cluster Computing +1002.0940 Programming Languages +1002.0941 Metric Geometry +1002.0942 Programming Languages +1002.0944 Experiment +1002.0945 Representation Theory +1002.0950 Statistical Mechanics +1002.0952 General Physics +1002.0953 +1002.0958 +1002.0959 +1002.0963 Databases +1002.0971 Databases +1002.0982 Information Theory +1002.0987 Quantum Algebra +1002.1005 Software Engineering +1002.1007 Instrumentation and Detectors +1002.1008 Representation Theory +1002.1012 Instrumentation and Detectors +1002.1016 Discrete Mathematics +1002.1021 Data Structures and Algorithms +1002.1027 +1002.1029 Superconductivity +1002.1030 Materials Science +1002.1038 Complex Variables +1002.1040 Spectral Theory +1002.1043 Atomic and Molecular Clusters +1002.1047 Mesoscale and Nanoscale Physics +1002.1055 Dynamical Systems +1002.1058 Combinatorics +1002.1060 Information Theory +1002.1061 Functional Analysis +1002.1065 Geometric Topology +1002.1067 Cosmology and Nongalactic Astrophysics +astro-ph/0110575 +cond-mat/0402593 Other Condensed Matter +cond-mat/0702123 Other Condensed Matter +gr-qc/0603058 +hep-ph/0301020 Phenomenology +hep-th/0002176 Theory +hep-th/0008083 Theory +hep-th/0012067 Theory +hep-th/0105060 Theory +hep-th/0109191 Theory +hep-th/0201132 Theory +hep-th/0207252 Theory +hep-th/0301203 Theory +hep-th/0304201 Theory +hep-th/0405156 Theory +hep-th/9303050 Theory +hep-th/9303165 Theory +hep-th/9307091 Theory +hep-th/9307180 Theory +hep-th/9308071 Theory +hep-th/9404152 Theory +hep-th/9508164 Theory +hep-th/9510242 Theory +hep-th/9603028 Theory +hep-th/9604002 Theory +hep-th/9605158 Theory +hep-th/9704034 Theory +hep-th/9706133 Theory +hep-th/9707247 Theory +hep-th/9806205 Theory +hep-th/9902084 Theory +hep-th/9903058 Theory +hep-th/9906146 Theory +hep-th/9911104 Theory +hep-th/9911237 Theory +math-ph/0607051 +math-ph/9904030 +math/0507501 Algebraic Geometry +math/0702871 Algebraic Geometry +quant-ph/0609153 +0704.1599 Dynamical Systems +0705.3511 Theory +0706.3856 Combinatorics +0707.1932 Statistical Mechanics +0708.1491 Combinatorics +0709.2547 Experiment +0710.1437 Lattice +0710.2880 Lattice +0711.1616 Phenomenology +0803.3058 Mesoscale and Nanoscale Physics +0805.4229 +0806.4280 Physics and Society +0808.0685 +0809.1919 +0810.0360 +0810.2369 +0810.3567 +0812.0376 +0812.1399 +0812.2795 Phenomenology +0901.4308 +0902.1515 +0902.1682 +0902.2696 +0902.2878 +0902.3274 Theory +0903.2234 Phenomenology +0903.3277 Materials Science +0903.4644 Theory +0903.4665 Phenomenology +0904.4320 Theory +0904.4660 Mesoscale and Nanoscale Physics +0905.3200 +0905.4833 Statistical Mechanics +0906.2028 Theory +0906.2969 Experiment +0906.4122 Soft Condensed Matter +0906.4496 Differential Geometry +0907.2994 Strongly Correlated Electrons +0907.3633 Instrumentation and Detectors +0908.0920 Cosmology and Nongalactic Astrophysics +0909.0380 Phenomenology +0909.1695 Combinatorics +0909.3072 +0909.3946 Differential Geometry +0910.1451 General Physics +0910.2017 Number Theory +0910.2490 General Physics +0910.2991 Instrumentation and Detectors +0910.3524 Lattice +0911.1191 Dynamical Systems +0911.3442 +0912.1350 Commutative Algebra +0912.2107 Dynamical Systems +0912.2163 +1001.0363 General Physics +1001.2413 Probability +1001.2577 Group Theory +1001.3592 Commutative Algebra +1001.4767 Mesoscale and Nanoscale Physics +1002.0246 Differential Geometry +1002.0788 Analysis of PDEs +1002.2969 Statistical Mechanics +1002.3164 Solar and Stellar Astrophysics +1002.3451 Rings and Algebras +1003.1953 General Physics +1003.2734 Mesoscale and Nanoscale Physics +1003.2918 Soft Condensed Matter +1004.2423 Numerical Analysis +1004.2916 +1004.3430 +1004.3434 +1004.3828 Cosmology and Nongalactic Astrophysics +1005.0501 Theory +1005.1101 General Physics +1005.3065 Chemical Physics +1005.3330 Phenomenology +1005.3503 Phenomenology +1005.3849 Phenomenology +1005.3948 Phenomenology +1005.4535 Strongly Correlated Electrons +1005.5323 Phenomenology +1005.5684 Phenomenology +1005.5721 Theory +1006.0144 Phenomenology +1006.0339 +1006.0425 Phenomenology +1006.0559 +1006.0714 Theory +1006.0790 Statistical Mechanics +1006.1056 Theory +1006.1118 Phenomenology +1006.1477 Phenomenology +1006.1776 Phenomenology +1006.2056 Theory +1006.2342 Experiment +1006.2753 Phenomenology +1006.2810 Phenomenology +1006.2855 Experiment +1006.2872 Mesoscale and Nanoscale Physics +1006.3713 Experiment +1006.4077 Experiment +1006.4184 Experiment +1006.4247 Statistical Mechanics +1006.4471 Phenomenology +1006.4494 Phenomenology +1006.4731 Phenomenology +1006.4988 Phenomenology +1006.5014 Phenomenology +1006.5210 High Energy Astrophysical Phenomena +1006.5322 Experiment +1006.5339 Phenomenology +1006.5417 Phenomenology +1006.5593 Phenomenology +1006.5679 Phenomenology +1006.5696 Phenomenology +1006.5918 Phenomenology +1006.5925 Phenomenology +1007.0036 Phenomenology +1007.0184 +1007.0351 Phenomenology +1007.0354 Phenomenology +1007.0385 Optics +1007.0498 Phenomenology +1007.0748 Experiment +1007.0897 Phenomenology +1007.1384 Phenomenology +1007.1920 Phenomenology +1007.2107 Phenomenology +1007.2355 +1007.2384 Phenomenology +1007.2768 +1007.2784 Phenomenology +1007.3145 Phenomenology +1007.3465 Phenomenology +1007.3657 Phenomenology +1007.4456 Theory +1007.4458 Optimization and Control +1007.4563 Phenomenology +1007.4734 Cosmology and Nongalactic Astrophysics +1007.5477 Phenomenology +1008.0131 +1008.0255 Phenomenology +1008.0261 Phenomenology +1008.0269 Mesoscale and Nanoscale Physics +1008.0472 +1008.0644 Theory +1008.0792 Phenomenology +1008.0951 Phenomenology +1008.1181 Lattice +1008.1222 Algebraic Geometry +1008.1256 Materials Science +1008.1587 Strongly Correlated Electrons +1008.1706 Phenomenology +1008.1973 Experiment +1008.2004 Phenomenology +1008.2137 Phenomenology +1008.2281 Phenomenology +1008.2567 Experiment +1008.2634 Phenomenology +1008.2725 Experiment +1008.2971 Cosmology and Nongalactic Astrophysics +1008.3076 Lattice +1008.3207 Experiment +1008.3422 Atomic Physics +1008.3451 +1008.3827 Phenomenology +1008.4130 +1008.4782 Geophysics +1008.5240 Theory +1009.0238 Statistical Mechanics +1009.0239 Statistical Mechanics +1009.1746 Mesoscale and Nanoscale Physics +1009.1757 Phenomenology +1009.1833 +1009.1837 Geophysics +1009.1850 Materials Science +1009.1880 Theory +1009.1888 Strongly Correlated Electrons +1009.1963 Instrumentation and Detectors +1009.2345 Phenomenology +1009.2477 Phenomenology +1009.2691 +1009.2752 Cosmology and Nongalactic Astrophysics +1009.2780 Phenomenology +1009.2839 +1009.2891 +1009.3675 Pattern Formation and Solitons +1009.4666 Phenomenology +1009.4969 Information Theory +1009.6071 +1010.1884 Optics +1010.3079 +1010.3540 Classical Analysis and ODEs +1010.3918 Instrumentation and Methods for Astrophysics +1010.3952 Commutative Algebra +1010.4614 Differential Geometry +1010.5015 Superconductivity +1011.0022 Probability +1011.1032 Operator Algebras +1011.1985 +1011.2815 Phenomenology +1011.3310 Complex Variables +1011.3425 Functional Analysis +1011.3453 Analysis of PDEs +1011.3465 History and Overview +1011.4063 Cosmology and Nongalactic Astrophysics +1011.4070 Optics +1011.4071 Social and Information Networks +1011.4081 Materials Science +1011.4088 Machine Learning +1011.4093 Other Computer Science +1011.4095 Statistical Mechanics +1011.4098 Social and Information Networks +1011.4111 Geophysics +1011.4113 Statistical Mechanics +1011.4114 Category Theory +1011.4116 Complex Variables +1011.4125 Populations and Evolution +1011.4130 Analysis of PDEs +1011.4132 Algebraic Topology +1011.4133 Rings and Algebras +1011.4134 Populations and Evolution +1011.4135 Distributed, Parallel, and Cluster Computing +1011.4137 Statistical Mechanics +1011.4139 Cosmology and Nongalactic Astrophysics +1011.4140 Differential Geometry +1011.4143 Neurons and Cognition +1011.4145 General Topology +1011.4146 Algebraic Geometry +1011.4147 Human-Computer Interaction +1011.4152 Solar and Stellar Astrophysics +1011.4155 Computation and Language +1011.4163 Classical Analysis and ODEs +1011.4174 Strongly Correlated Electrons +1011.4175 Chaotic Dynamics +1011.4188 Neurons and Cognition +1011.4192 Spectral Theory +1011.4195 Phenomenology +1011.4201 Materials Science +1011.4203 Materials Science +1011.4204 Mesoscale and Nanoscale Physics +1011.4210 Statistical Mechanics +1011.4216 Combinatorics +1011.4226 Astrophysics of Galaxies +1011.4229 Lattice +1011.4230 Lattice +1011.4232 Complex Variables +1011.4233 Mesoscale and Nanoscale Physics +1011.4236 Analysis of PDEs +1011.4241 Superconductivity +1011.4244 Optics +1011.4245 Quantitative Methods +1011.4253 Complex Variables +1011.4254 Theory +1011.4260 Experiment +1011.4262 Number Theory +1011.4265 Exactly Solvable and Integrable Systems +1011.4268 Exactly Solvable and Integrable Systems +1011.4269 Combinatorics +1011.4274 Cosmology and Nongalactic Astrophysics +1011.4277 Geometric Topology +1011.4282 Analysis of PDEs +1011.4285 Quantum Algebra +1011.4286 Soft Condensed Matter +astro-ph/0002300 +astro-ph/0002394 +astro-ph/0004051 +astro-ph/0007176 +astro-ph/0009383 +astro-ph/0011028 +astro-ph/0101002 +astro-ph/0101011 +astro-ph/0101013 +astro-ph/0101053 +astro-ph/0103015 +astro-ph/0108411 +astro-ph/0109058 +astro-ph/0111582 +astro-ph/0111604 +astro-ph/0202345 +astro-ph/0203138 +astro-ph/0203293 +astro-ph/0205213 +astro-ph/0207608 +astro-ph/0208349 +astro-ph/0209503 +astro-ph/0212367 +astro-ph/0302202 +astro-ph/0304228 +astro-ph/0304412 +astro-ph/0305034 +astro-ph/0305151 +astro-ph/0311327 +astro-ph/0401563 +astro-ph/0401575 +astro-ph/0401613 +astro-ph/0402005 +astro-ph/0403200 +astro-ph/0404554 +astro-ph/0406315 +astro-ph/0407112 +astro-ph/0407155 +astro-ph/0408016 +astro-ph/0408047 +astro-ph/0409244 +astro-ph/0411794 +astro-ph/0501030 +astro-ph/0501073 +astro-ph/0505460 +astro-ph/0506053 +astro-ph/9303005 +astro-ph/9309051 +astro-ph/9804325 +astro-ph/9901024 +astro-ph/9903489 +astro-ph/9904144 +astro-ph/9907225 +astro-ph/9910371 +astro-ph/9911513 +astro-ph/9911525 +chao-dyn/9609014 Chaotic Dynamics +cond-mat/0211238 +cond-mat/0306282 Soft Condensed Matter +cond-mat/9705086 +cond-mat/9712294 Superconductivity +cs/0306005 Software Engineering +cs/0306029 Distributed, Parallel, and Cluster Computing +cs/0608085 Computational Complexity +dg-ga/9610001 Differential Geometry +gr-qc/0001026 +gr-qc/0001039 +gr-qc/0001049 +gr-qc/0001058 +gr-qc/0001067 +gr-qc/0002001 +gr-qc/0002031 +gr-qc/0002034 +gr-qc/0002056 +gr-qc/0002078 +gr-qc/0002093 +gr-qc/0003023 +gr-qc/0003046 +gr-qc/0003060 +gr-qc/0003080 +gr-qc/0004002 +gr-qc/0004081 +gr-qc/0005005 +gr-qc/0005028 +gr-qc/0005042 +gr-qc/0005132 +gr-qc/0006014 +gr-qc/0006034 +gr-qc/0006046 +gr-qc/0006051 +gr-qc/0008025 +gr-qc/0011049 +gr-qc/0011065 +gr-qc/0011100 +gr-qc/0012006 +gr-qc/0012007 +gr-qc/0012020 +gr-qc/0012056 +gr-qc/0101043 +gr-qc/0101083 +gr-qc/0101091 +gr-qc/0102031 +gr-qc/0102036 +gr-qc/0102075 +gr-qc/0102095 +gr-qc/0102104 +gr-qc/0105123 +gr-qc/0106008 +gr-qc/0106076 +gr-qc/0106092 +gr-qc/0108002 +gr-qc/0109027 +gr-qc/0109069 +gr-qc/0109078 +gr-qc/0109085 +gr-qc/0110055 +gr-qc/0110075 +gr-qc/0110095 +gr-qc/0110096 +gr-qc/0110125 +gr-qc/0111050 +gr-qc/0111066 +gr-qc/0111070 +gr-qc/0111075 +gr-qc/0112029 +gr-qc/0112075 +gr-qc/0201046 +gr-qc/0201080 +gr-qc/0203094 +gr-qc/0204019 +gr-qc/0204076 +gr-qc/0205048 +gr-qc/0205101 +gr-qc/0205107 +gr-qc/0205109 +gr-qc/0206002 +gr-qc/0207036 +gr-qc/0207049 +gr-qc/0209069 +gr-qc/0209084 +gr-qc/0210010 +gr-qc/0210011 +gr-qc/0210025 +gr-qc/0210035 +gr-qc/0210040 +gr-qc/0210107 +gr-qc/0211008 +gr-qc/0211094 +gr-qc/0301014 +gr-qc/0301109 +gr-qc/0302027 +gr-qc/0302050 +gr-qc/0303021 +gr-qc/0306096 +gr-qc/0306106 +gr-qc/0306127 +gr-qc/0307040 +gr-qc/0309082 +gr-qc/0310032 +gr-qc/0312039 +gr-qc/0312054 +gr-qc/0401028 +gr-qc/0401100 +gr-qc/0402084 +gr-qc/0402103 +gr-qc/0404037 +gr-qc/0404042 +gr-qc/0404104 +gr-qc/0404116 +gr-qc/0405052 +gr-qc/0406107 +gr-qc/0406119 +gr-qc/0407058 +gr-qc/0408057 +gr-qc/0409038 +gr-qc/0409056 +gr-qc/0410002 +gr-qc/0410039 +gr-qc/0410089 +gr-qc/0410125 +gr-qc/0410147 +gr-qc/0412098 +gr-qc/0502006 +gr-qc/0502046 +gr-qc/0502098 +gr-qc/0503050 +gr-qc/0504005 +gr-qc/0504078 +gr-qc/0504111 +gr-qc/0504117 +gr-qc/0505045 +gr-qc/0505046 +gr-qc/0505141 +gr-qc/0505143 +gr-qc/0505160 +gr-qc/0506072 +gr-qc/0506103 +gr-qc/0506128 +gr-qc/0507092 +gr-qc/0507096 +gr-qc/0603066 +gr-qc/9308030 +gr-qc/9310011 +gr-qc/9402017 +gr-qc/9404049 +gr-qc/9405059 +gr-qc/9411017 +gr-qc/9503035 +gr-qc/9504003 +gr-qc/9505005 +gr-qc/9506033 +gr-qc/9506044 +gr-qc/9506069 +gr-qc/9507037 +gr-qc/9507047 +gr-qc/9508001 +gr-qc/9508028 +gr-qc/9511024 +gr-qc/9512025 +gr-qc/9601022 +gr-qc/9602006 +gr-qc/9602009 +gr-qc/9602035 +gr-qc/9602061 +gr-qc/9603012 +gr-qc/9604012 +gr-qc/9604034 +gr-qc/9605023 +gr-qc/9605038 +gr-qc/9606034 +gr-qc/9606093 +gr-qc/9607034 +gr-qc/9608061 +gr-qc/9609033 +gr-qc/9609068 +gr-qc/9610026 +gr-qc/9611033 +gr-qc/9611060 +gr-qc/9612013 +gr-qc/9701011 +gr-qc/9703047 +gr-qc/9703062 +gr-qc/9703067 +gr-qc/9704029 +gr-qc/9704035 +gr-qc/9706014 +gr-qc/9706039 +gr-qc/9706063 +gr-qc/9706083 +gr-qc/9708058 +gr-qc/9708060 +gr-qc/9708065 +gr-qc/9708067 +gr-qc/9710035 +gr-qc/9711039 +gr-qc/9712022 +gr-qc/9712083 +gr-qc/9801044 +gr-qc/9801068 +gr-qc/9801079 +gr-qc/9801085 +gr-qc/9802002 +gr-qc/9802012 +gr-qc/9802039 +gr-qc/9802059 +gr-qc/9802061 +gr-qc/9803019 +gr-qc/9803042 +gr-qc/9803048 +gr-qc/9803053 +gr-qc/9803059 +gr-qc/9803084 +gr-qc/9803098 +gr-qc/9804013 +gr-qc/9804058 +gr-qc/9805015 +gr-qc/9805035 +gr-qc/9805043 +gr-qc/9805061 +gr-qc/9806015 +gr-qc/9806032 +gr-qc/9806046 +gr-qc/9806074 +gr-qc/9806096 +gr-qc/9806112 +gr-qc/9807003 +gr-qc/9807086 +gr-qc/9809010 +gr-qc/9809014 +gr-qc/9809024 +gr-qc/9810009 +gr-qc/9810039 +gr-qc/9810042 +gr-qc/9810080 +gr-qc/9810081 +gr-qc/9811076 +gr-qc/9901011 +gr-qc/9901028 +gr-qc/9902003 +gr-qc/9902072 +gr-qc/9906004 +gr-qc/9906034 +gr-qc/9906056 +gr-qc/9907044 +gr-qc/9907046 +gr-qc/9907092 +gr-qc/9907096 +gr-qc/9907106 +gr-qc/9908044 +gr-qc/9908054 +gr-qc/9908074 +gr-qc/9910013 +gr-qc/9910026 +gr-qc/9910067 +gr-qc/9910103 +gr-qc/9910104 +gr-qc/9911080 +gr-qc/9911107 +gr-qc/9912040 +gr-qc/9912074 +gr-qc/9912116 +hep-lat/0002006 Lattice +hep-lat/0006025 Lattice +hep-lat/0012001 Lattice +hep-lat/0409008 Lattice +hep-lat/0409018 Lattice +hep-lat/9209012 Lattice +hep-lat/9211046 Lattice +hep-lat/9312080 Lattice +hep-lat/9501022 Lattice +hep-lat/9506011 Lattice +hep-lat/9506012 Lattice +hep-lat/9506013 Lattice +hep-lat/9603023 Lattice +hep-lat/9608094 Lattice +hep-lat/9609014 Lattice +hep-lat/9704006 Lattice +hep-lat/9707024 Lattice +hep-lat/9709048 Lattice +hep-lat/9709092 Lattice +hep-lat/9709126 Lattice +hep-lat/9709157 Lattice +hep-lat/9710064 Lattice +hep-lat/9711035 Lattice +hep-lat/9711044 Lattice +hep-lat/9712005 Lattice +hep-lat/9712024 Lattice +hep-lat/9802012 Lattice +hep-lat/9802019 Lattice +hep-lat/9804026 Lattice +hep-lat/9809016 Lattice +hep-lat/9809075 Lattice +hep-lat/9809085 Lattice +hep-lat/9809180 Lattice +hep-lat/9810051 Lattice +hep-lat/9901002 Lattice +hep-lat/9901010 Lattice +hep-lat/9902006 Lattice +hep-lat/9902019 Lattice +hep-lat/9903032 Lattice +hep-lat/9911028 Lattice +hep-lat/9911033 Lattice +hep-lat/9911035 Lattice +hep-ph/0002212 Phenomenology +hep-ph/0003013 Phenomenology +hep-ph/0003145 Phenomenology +hep-ph/0003247 Phenomenology +hep-ph/0004003 Phenomenology +hep-ph/0005287 Phenomenology +hep-ph/0006069 Phenomenology +hep-ph/0006217 Phenomenology +hep-ph/0008208 Phenomenology +hep-ph/0011113 Phenomenology +hep-ph/0011152 Phenomenology +hep-ph/0012091 Phenomenology +hep-ph/0012138 Phenomenology +hep-ph/0101023 Phenomenology +hep-ph/0101186 Phenomenology +hep-ph/0101326 Phenomenology +hep-ph/0102244 Phenomenology +hep-ph/0107143 Phenomenology +hep-ph/0108115 Phenomenology +hep-ph/0108139 Phenomenology +hep-ph/0109181 Phenomenology +hep-ph/0111069 Phenomenology +hep-ph/0201086 Phenomenology +hep-ph/0203126 Phenomenology +hep-ph/0204248 Phenomenology +hep-ph/0204275 Phenomenology +hep-ph/0204313 Phenomenology +hep-ph/0205090 Phenomenology +hep-ph/0207009 Phenomenology +hep-ph/0209144 Phenomenology +hep-ph/0209178 Phenomenology +hep-ph/0210045 Phenomenology +hep-ph/0210134 Phenomenology +hep-ph/0210320 Phenomenology +hep-ph/0212317 Phenomenology +hep-ph/0302083 Phenomenology +hep-ph/0302176 Phenomenology +hep-ph/0302263 Phenomenology +hep-ph/0303243 Phenomenology +hep-ph/0304118 Phenomenology +hep-ph/0304142 Phenomenology +hep-ph/0304223 Phenomenology +hep-ph/0306206 Phenomenology +hep-ph/0307053 Phenomenology +hep-ph/0309205 Phenomenology +hep-ph/0310175 Phenomenology +hep-ph/0311025 Phenomenology +hep-ph/0312245 Phenomenology +hep-ph/0402157 Phenomenology +hep-ph/0406216 Phenomenology +hep-ph/0407202 Phenomenology +hep-ph/0407267 Phenomenology +hep-ph/0407304 Phenomenology +hep-ph/0409033 Phenomenology +hep-ph/0410095 Phenomenology +hep-ph/0411103 Phenomenology +hep-ph/0412318 Phenomenology +hep-ph/0412361 Phenomenology +hep-ph/0505168 Phenomenology +hep-ph/0505187 Phenomenology +hep-ph/0505201 Phenomenology +hep-ph/0506200 Phenomenology +hep-ph/0604012 Phenomenology +hep-ph/0609307 Phenomenology +hep-ph/9211263 Phenomenology +hep-ph/9212239 Phenomenology +hep-ph/9303264 Phenomenology +hep-ph/9308255 Phenomenology +hep-ph/9308284 Phenomenology +hep-ph/9403392 Phenomenology +hep-ph/9505329 Phenomenology +hep-ph/9507201 Phenomenology +hep-ph/9507385 Phenomenology +hep-ph/9508276 Phenomenology +hep-ph/9508299 Phenomenology +hep-ph/9509375 Phenomenology +hep-ph/9510213 Phenomenology +hep-ph/9511423 Phenomenology +hep-ph/9602213 Phenomenology +hep-ph/9602309 Phenomenology +hep-ph/9603439 Phenomenology +hep-ph/9604305 Phenomenology +hep-ph/9604450 Phenomenology +hep-ph/9605363 Phenomenology +hep-ph/9606373 Phenomenology +hep-ph/9607486 Phenomenology +hep-ph/9608282 Phenomenology +hep-ph/9609284 Phenomenology +hep-ph/9609452 Phenomenology +hep-ph/9610294 Phenomenology +hep-ph/9610401 Phenomenology +hep-ph/9611338 Phenomenology +hep-ph/9701235 Phenomenology +hep-ph/9701353 Phenomenology +hep-ph/9702256 Phenomenology +hep-ph/9703252 Phenomenology +hep-ph/9703395 Phenomenology +hep-ph/9703411 Phenomenology +hep-ph/9706318 Phenomenology +hep-ph/9706513 Phenomenology +hep-ph/9706531 Phenomenology +hep-ph/9707388 Phenomenology +hep-ph/9707397 Phenomenology +hep-ph/9709203 Phenomenology +hep-ph/9709234 Phenomenology +hep-ph/9709489 Phenomenology +hep-ph/9711426 Phenomenology +hep-ph/9801433 Phenomenology +hep-ph/9802325 Phenomenology +hep-ph/9803295 Phenomenology +hep-ph/9806238 Phenomenology +hep-ph/9806269 Phenomenology +hep-ph/9806431 Phenomenology +hep-ph/9807470 Phenomenology +hep-ph/9807524 Phenomenology +hep-ph/9808231 Phenomenology +hep-ph/9809232 Phenomenology +hep-ph/9811350 Phenomenology +hep-ph/9812287 Phenomenology +hep-ph/9904444 Phenomenology +hep-ph/9908310 Phenomenology +hep-ph/9910234 Phenomenology +hep-ph/9911217 Phenomenology +hep-th/0001062 Theory +hep-th/0001100 Theory +hep-th/0001132 Theory +hep-th/0001190 Theory +hep-th/0001211 Theory +hep-th/0002028 Theory +hep-th/0002073 Theory +hep-th/0002191 Theory +hep-th/0002200 Theory +hep-th/0003073 Theory +hep-th/0003078 Theory +hep-th/0003106 Theory +hep-th/0003185 Theory +hep-th/0003267 Theory +hep-th/0003290 Theory +hep-th/0004095 Theory +hep-th/0004103 Theory +hep-th/0005008 Theory +hep-th/0005017 Theory +hep-th/0005033 Theory +hep-th/0005049 Theory +hep-th/0005053 Theory +hep-th/0005068 Theory +hep-th/0005153 Theory +hep-th/0006011 Theory +hep-th/0006099 Theory +hep-th/0006147 Theory +hep-th/0006217 Theory +hep-th/0006225 Theory +hep-th/0006242 Theory +hep-th/0007056 Theory +hep-th/0007065 Theory +hep-th/0007172 Theory +hep-th/0008016 Theory +hep-th/0008199 Theory +hep-th/0008201 Theory +hep-th/0008243 Theory +hep-th/0008244 Theory +hep-th/0008250 Theory +hep-th/0009029 Theory +hep-th/0009214 Theory +hep-th/0010046 Theory +hep-th/0010058 Theory +hep-th/0010115 Theory +hep-th/0010152 Theory +hep-th/0010179 Theory +hep-th/0010229 Theory +hep-th/0010255 Theory +hep-th/0011139 Theory +hep-th/0011239 Theory +hep-th/0012070 Theory +hep-th/0012151 Theory +hep-th/0012193 Theory +hep-th/0101210 Theory +hep-th/0101216 Theory +hep-th/0102061 Theory +hep-th/0102087 Theory +hep-th/0102198 Theory +hep-th/0104161 Theory +hep-th/0105196 Theory +hep-th/0105292 Theory +hep-th/0106171 Theory +hep-th/0106181 Theory +hep-th/0106227 Theory +hep-th/0107188 Theory +hep-th/0108117 Theory +hep-th/0108124 Theory +hep-th/0108184 Theory +hep-th/0108208 Theory +hep-th/0108229 Theory +hep-th/0109021 Theory +hep-th/0109055 Theory +hep-th/0109153 Theory +hep-th/0110187 Theory +hep-th/0111012 Theory +hep-th/0111068 Theory +hep-th/0111086 Theory +hep-th/0111127 Theory +hep-th/0201012 Theory +hep-th/0201126 Theory +hep-th/0201133 Theory +hep-th/0201212 Theory +hep-th/0202006 Theory +hep-th/0202029 Theory +hep-th/0202141 Theory +hep-th/0202168 Theory +hep-th/0203120 Theory +hep-th/0203146 Theory +hep-th/0203147 Theory +hep-th/0203223 Theory +hep-th/0203256 Theory +hep-th/0204009 Theory +hep-th/0204041 Theory +hep-th/0204099 Theory +hep-th/0204106 Theory +hep-th/0204132 Theory +hep-th/0204223 Theory +hep-th/0204253 Theory +hep-th/0205091 Theory +hep-th/0205152 Theory +hep-th/0205166 Theory +hep-th/0205197 Theory +hep-th/0206107 Theory +hep-th/0206116 Theory +hep-th/0206125 Theory +hep-th/0206219 Theory +hep-th/0207173 Theory +hep-th/0207265 Theory +hep-th/0208029 Theory +hep-th/0208030 Theory +hep-th/0208033 Theory +hep-th/0209094 Theory +hep-th/0210006 Theory +hep-th/0210176 Theory +hep-th/0210181 Theory +hep-th/0210197 Theory +hep-th/0210254 Theory +hep-th/0211019 Theory +hep-th/0211079 Theory +hep-th/0211093 Theory +hep-th/0211096 Theory +hep-th/0211143 Theory +hep-th/0211191 Theory +hep-th/0211230 Theory +hep-th/0212088 Theory +hep-th/0212200 Theory +hep-th/0212206 Theory +hep-th/0212255 Theory +hep-th/0301139 Theory +hep-th/0301151 Theory +hep-th/0301228 Theory +hep-th/0302001 Theory +hep-th/0302039 Theory +hep-th/0302073 Theory +hep-th/0302165 Theory +hep-th/0303111 Theory +hep-th/0304199 Theory +hep-th/0305070 Theory +hep-th/0306091 Theory +hep-th/0306123 Theory +hep-th/0306225 Theory +hep-th/0306239 Theory +hep-th/0307065 Theory +hep-th/0307268 Theory +hep-th/0308064 Theory +hep-th/0309167 Theory +hep-th/0310064 Theory +hep-th/0310076 Theory +hep-th/0310160 Theory +hep-th/0310174 Theory +hep-th/0310180 Theory +hep-th/0310272 Theory +hep-th/0311015 Theory +hep-th/0311097 Theory +hep-th/0311233 Theory +hep-th/0311259 Theory +hep-th/0312076 Theory +hep-th/0312195 Theory +hep-th/0312200 Theory +hep-th/0312229 Theory +hep-th/0401019 Theory +hep-th/0401095 Theory +hep-th/0401181 Theory +hep-th/0402226 Theory +hep-th/0402228 Theory +hep-th/0403009 Theory +hep-th/0403041 Theory +hep-th/0403080 Theory +hep-th/0403270 Theory +hep-th/0403291 Theory +hep-th/0403295 Theory +hep-th/0403296 Theory +hep-th/0404159 Theory +hep-th/0404229 Theory +hep-th/0405173 Theory +hep-th/0405195 Theory +hep-th/0405204 Theory +hep-th/0405255 Theory +hep-th/0405290 Theory +hep-th/0406113 Theory +hep-th/0406209 Theory +hep-th/0406252 Theory +hep-th/0407034 Theory +hep-th/0407112 Theory +hep-th/0407208 Theory +hep-th/0409117 Theory +hep-th/0409218 Theory +hep-th/0410059 Theory +hep-th/0410094 Theory +hep-th/0410117 Theory +hep-th/0410149 Theory +hep-th/0410157 Theory +hep-th/0410162 Theory +hep-th/0410238 Theory +hep-th/0411210 Theory +hep-th/0411245 Theory +hep-th/0412060 Theory +hep-th/0412111 Theory +hep-th/0412194 Theory +hep-th/0412290 Theory +hep-th/0501008 Theory +hep-th/0501037 Theory +hep-th/0502166 Theory +hep-th/0502207 Theory +hep-th/0503010 Theory +hep-th/0503163 Theory +hep-th/0503205 Theory +hep-th/0504188 Theory +hep-th/0504192 Theory +hep-th/0505047 Theory +hep-th/0612091 Theory +hep-th/9201046 Theory +hep-th/9202031 Theory +hep-th/9203072 Theory +hep-th/9209106 Theory +hep-th/9211015 Theory +hep-th/9212153 Theory +hep-th/9302065 Theory +hep-th/9402009 Theory +hep-th/9402065 Theory +hep-th/9410142 Theory +hep-th/9501052 Theory +hep-th/9501097 Theory +hep-th/9503123 Theory +hep-th/9505054 Theory +hep-th/9505143 Theory +hep-th/9506016 Theory +hep-th/9506125 Theory +hep-th/9506205 Theory +hep-th/9507007 Theory +hep-th/9507023 Theory +hep-th/9507025 Theory +hep-th/9507148 Theory +hep-th/9508001 Theory +hep-th/9508114 Theory +hep-th/9508161 Theory +hep-th/9509076 Theory +hep-th/9509092 Theory +hep-th/9510065 Theory +hep-th/9510181 Theory +hep-th/9511043 Theory +hep-th/9511106 Theory +hep-th/9511226 Theory +hep-th/9601004 Theory +hep-th/9601157 Theory +hep-th/9602003 Theory +hep-th/9602105 Theory +hep-th/9603161 Theory +hep-th/9605057 Theory +hep-th/9605058 Theory +hep-th/9605148 Theory +hep-th/9606044 Theory +hep-th/9607132 Theory +hep-th/9607145 Theory +hep-th/9607201 Theory +hep-th/9608091 Theory +hep-th/9608092 Theory +hep-th/9608106 Theory +hep-th/9608109 Theory +hep-th/9609017 Theory +hep-th/9609032 Theory +hep-th/9609142 Theory +hep-th/9609195 Theory +hep-th/9610035 Theory +hep-th/9610122 Theory +hep-th/9610239 Theory +hep-th/9611058 Theory +hep-th/9611165 Theory +hep-th/9611178 Theory +hep-th/9611205 Theory +hep-th/9611233 Theory +hep-th/9612084 Theory +hep-th/9612108 Theory +hep-th/9612126 Theory +hep-th/9612137 Theory +hep-th/9612141 Theory +hep-th/9612167 Theory +hep-th/9612188 Theory +hep-th/9612202 Theory +hep-th/9702108 Theory +hep-th/9702199 Theory +hep-th/9703030 Theory +hep-th/9703073 Theory +hep-th/9703182 Theory +hep-th/9703195 Theory +hep-th/9704026 Theory +hep-th/9704087 Theory +hep-th/9704145 Theory +hep-th/9704151 Theory +hep-th/9704178 Theory +hep-th/9704212 Theory +hep-th/9705016 Theory +hep-th/9705065 Theory +hep-th/9705163 Theory +hep-th/9706032 Theory +hep-th/9706165 Theory +hep-th/9706175 Theory +hep-th/9707019 Theory +hep-th/9707049 Theory +hep-th/9707067 Theory +hep-th/9707176 Theory +hep-th/9707217 Theory +hep-th/9708034 Theory +hep-th/9709004 Theory +hep-th/9709006 Theory +hep-th/9709010 Theory +hep-th/9709013 Theory +hep-th/9709029 Theory +hep-th/9710151 Theory +hep-th/9710198 Theory +hep-th/9711003 Theory +hep-th/9711048 Theory +hep-th/9711093 Theory +hep-th/9711104 Theory +hep-th/9711116 Theory +hep-th/9711141 Theory +hep-th/9711162 Theory +hep-th/9711181 Theory +hep-th/9712031 Theory +hep-th/9712047 Theory +hep-th/9712084 Theory +hep-th/9712119 Theory +hep-th/9712141 Theory +hep-th/9712160 Theory +hep-th/9712168 Theory +hep-th/9712201 Theory +hep-th/9712206 Theory +hep-th/9801036 Theory +hep-th/9801096 Theory +hep-th/9801119 Theory +hep-th/9801123 Theory +hep-th/9802049 Theory +hep-th/9802143 Theory +hep-th/9803110 Theory +hep-th/9803127 Theory +hep-th/9803166 Theory +hep-th/9803198 Theory +hep-th/9804135 Theory +hep-th/9804139 Theory +hep-th/9804164 Theory +hep-th/9804188 Theory +hep-th/9805034 Theory +hep-th/9805059 Theory +hep-th/9805111 Theory +hep-th/9805181 Theory +hep-th/9806008 Theory +hep-th/9806031 Theory +hep-th/9806036 Theory +hep-th/9806111 Theory +hep-th/9806154 Theory +hep-th/9807009 Theory +hep-th/9807049 Theory +hep-th/9807057 Theory +hep-th/9807139 Theory +hep-th/9807161 Theory +hep-th/9807204 Theory +hep-th/9808010 Theory +hep-th/9808080 Theory +hep-th/9808099 Theory +hep-th/9808102 Theory +hep-th/9809137 Theory +hep-th/9810094 Theory +hep-th/9810100 Theory +hep-th/9810185 Theory +hep-th/9810204 Theory +hep-th/9811117 Theory +hep-th/9811194 Theory +hep-th/9811233 Theory +hep-th/9812024 Theory +hep-th/9812118 Theory +hep-th/9901008 Theory +hep-th/9901105 Theory +hep-th/9903008 Theory +hep-th/9903010 Theory +hep-th/9903014 Theory +hep-th/9903032 Theory +hep-th/9903036 Theory +hep-th/9903089 Theory +hep-th/9903183 Theory +hep-th/9903218 Theory +hep-th/9904011 Theory +hep-th/9904021 Theory +hep-th/9904125 Theory +hep-th/9904160 Theory +hep-th/9904186 Theory +hep-th/9905024 Theory +hep-th/9905055 Theory +hep-th/9905064 Theory +hep-th/9905067 Theory +hep-th/9905077 Theory +hep-th/9905080 Theory +hep-th/9905169 Theory +hep-th/9905204 Theory +hep-th/9905227 Theory +hep-th/9906055 Theory +hep-th/9907003 Theory +hep-th/9907035 Theory +hep-th/9907134 Theory +hep-th/9907157 Theory +hep-th/9907216 Theory +hep-th/9908131 Theory +hep-th/9908170 Theory +hep-th/9909018 Theory +hep-th/9909178 Theory +hep-th/9909219 Theory +hep-th/9909226 Theory +hep-th/9910045 Theory +hep-th/9910071 Theory +hep-th/9910109 Theory +hep-th/9911017 Theory +hep-th/9911070 Theory +hep-th/9911148 Theory +hep-th/9911184 Theory +hep-th/9911186 Theory +hep-th/9912024 Theory +hep-th/9912181 Theory +hep-th/9912186 Theory +math-ph/0105016 +math-ph/0205022 +math/0201151 Differential Geometry +math/0501287 Quantum Algebra +math/0604433 Geometric Topology +math/0701647 Combinatorics +nucl-th/0112037 +nucl-th/0112076 +nucl-th/0211018 +nucl-th/0305029 +nucl-th/0305032 +nucl-th/0403053 +nucl-th/9408022 +nucl-th/9702015 +nucl-th/9811069 +nucl-th/9901063 +nucl-th/9910013 +nucl-th/9912002 +physics/0001038 Classical Physics +physics/0007063 Atomic Physics +physics/0306111 Data Analysis, Statistics and Probability +physics/0309005 Instrumentation and Detectors +physics/0402131 Instrumentation and Detectors +physics/0403078 Classical Physics +physics/0404106 Instrumentation and Detectors +q-alg/9505026 Quantum Algebra +q-alg/9512015 Quantum Algebra +quant-ph/0205082 +quant-ph/9701017 +0711.2404 Materials Science +0801.3692 Number Theory +0805.3847 Exactly Solvable and Integrable Systems +0806.2249 Materials Science +0807.2454 Functional Analysis +0808.0284 Complex Variables +0808.1518 Functional Analysis +0808.3177 +0811.4737 Combinatorics +0812.0667 Quantum Algebra +0812.3997 Mesoscale and Nanoscale Physics +0901.0247 Representation Theory +0902.0750 +0902.1438 Materials Science +0903.1406 Physics and Society +0903.5086 Analysis of PDEs +0904.2347 Soft Condensed Matter +0905.4362 +0907.4949 Rings and Algebras +0907.5360 Rings and Algebras +0908.4354 Algebraic Geometry +0911.3627 Geometric Topology +0912.1431 Soft Condensed Matter +1001.2449 Materials Science +1001.2597 Theory +1001.4371 Quantum Gases +1002.1557 Combinatorics +1002.1564 Materials Science +1002.2113 Superconductivity +1002.2958 Quantum Gases +1004.2823 Superconductivity +1004.3633 Optics +1005.0902 Learning +1005.2028 Physics and Society +1005.2317 Theory +1005.3771 Analysis of PDEs +1005.3869 Optics +1005.4368 Number Theory +1005.4416 General Physics +1005.4425 Number Theory +1005.4426 Classical Analysis and ODEs +1005.4427 Rings and Algebras +1005.4431 Experiment +1005.4435 Geometric Topology +1005.4440 Biological Physics +1005.4441 Analysis of PDEs +1005.4446 Neural and Evolutionary Computing +1005.4447 Artificial Intelligence +1005.4452 Instrumentation and Methods for Astrophysics +1005.4454 Instrumentation and Methods for Astrophysics +1005.4456 Risk Management +1005.4457 Instrumentation and Methods for Astrophysics +1005.4473 High Energy Astrophysical Phenomena +1005.4482 Strongly Correlated Electrons +1005.4486 +1005.4488 Algebraic Geometry +1005.4490 Optics +1005.4500 Quantum Algebra +1005.4502 Operator Algebras +1005.4512 Category Theory +1005.4514 Materials Science +1005.4515 Statistical Mechanics +1005.4525 Software Engineering +1005.4526 Phenomenology +1005.4532 +1005.4534 History and Philosophy of Physics +1005.4536 Strongly Correlated Electrons +1005.4539 Methodology +1005.4542 +1005.4544 Cosmology and Nongalactic Astrophysics +1005.4560 Plasma Physics +1005.4561 Operator Algebras +1005.4564 Human-Computer Interaction +1005.4567 Differential Geometry +1005.4569 +1005.4570 Probability +1005.4573 +1005.4584 Other Computer Science +1005.4585 Other Computer Science +1005.4586 Strongly Correlated Electrons +1005.4587 Strongly Correlated Electrons +1005.4590 Probability +1005.4591 Number Theory +1005.4594 Probability +1005.4596 Number Theory +1005.4601 Probability +1005.4606 Spectral Theory +1005.4615 Soft Condensed Matter +1005.4616 Programming Languages +1005.4624 Analysis of PDEs +1005.4626 Phenomenology +1005.4632 Experiment +1005.4634 Mesoscale and Nanoscale Physics +1005.4635 Experiment +1005.4638 Commutative Algebra +1005.4641 Applications +1005.4644 Cosmology and Nongalactic Astrophysics +1005.4657 Mesoscale and Nanoscale Physics +1005.4659 Probability +1005.4660 Number Theory +cond-mat/0312563 Soft Condensed Matter +cond-mat/0509033 Soft Condensed Matter +gr-qc/0605032 +math-ph/0606021 +math/0503246 Number Theory +math/0609478 Number Theory +0705.1139 Other Condensed Matter +0705.1341 Other Condensed Matter +0705.2148 Dynamical Systems +0705.3702 Geometric Topology +0710.0045 Mesoscale and Nanoscale Physics +0712.1035 Materials Science +0712.3243 Geometric Topology +0804.2543 Numerical Analysis +0808.2646 Subcellular Processes +0808.3522 Group Theory +0809.4386 Group Theory +0810.3225 Algebraic Geometry +0812.1089 Geometric Topology +0812.1208 Representation Theory +0812.3051 +0812.3221 Probability +0812.4069 Quantum Algebra +0812.4616 +0812.4776 +0901.2986 Chaotic Dynamics +0901.4735 Quantum Algebra +0902.0799 Geometric Topology +0902.3870 Probability +0902.4832 High Energy Astrophysical Phenomena +0904.0453 +0904.1184 +0904.2659 General Topology +0904.3492 Dynamical Systems +0904.4736 K-Theory and Homology +0905.0414 Disordered Systems and Neural Networks +0905.0428 +0905.0447 Analysis of PDEs +0905.0669 +0905.1393 Cosmology and Nongalactic Astrophysics +0905.1763 Combinatorics +0905.1867 +0905.2598 Representation Theory +0905.2708 Operator Algebras +0905.3158 Discrete Mathematics +0905.3942 Combinatorics +0905.3954 Combinatorics +0906.3069 Rings and Algebras +0906.3232 Cosmology and Nongalactic Astrophysics +0906.3480 Algebraic Geometry +0906.3511 +0907.0575 Astrophysics of Galaxies +0907.1283 K-Theory and Homology +0907.2214 Optimization and Control +0908.0883 Materials Science +0908.4221 Probability +0908.4336 Quantum Gases +0908.4460 Analysis of PDEs +0909.0290 Phenomenology +0909.2309 Artificial Intelligence +0909.2696 Analysis of PDEs +0909.4850 Theory +0910.0587 Strongly Correlated Electrons +0910.1611 Mesoscale and Nanoscale Physics +0910.2899 Statistical Mechanics +0910.3351 Analysis of PDEs +0910.3508 +0910.4689 Representation Theory +0910.4805 Theory +0910.5368 Functional Analysis +0911.0747 Quantum Gases +0911.1050 +0911.1282 Strongly Correlated Electrons +0911.1302 Quantum Gases +0911.1525 +0911.2119 +0911.2865 Neural and Evolutionary Computing +0911.3129 Quantum Gases +0911.4143 Quantum Gases +0911.4257 Theory +0911.5209 Representation Theory +0911.5565 Computers and Society +0911.5657 Classical Physics +0912.1836 Statistical Mechanics +0912.2073 Algebraic Geometry +0912.2568 High Energy Astrophysical Phenomena +0912.2569 Quantum Gases +0912.2670 Number Theory +0912.2843 Neural and Evolutionary Computing +0912.3261 +0912.3747 Computation and Language +0912.4245 Representation Theory +0912.5090 Algebraic Geometry +1001.0225 Atomic Physics +1001.1595 +1001.2278 Differential Geometry +1001.3032 +1001.3130 Probability +1001.3665 Analysis of PDEs +1001.3948 Phenomenology +1001.4219 Phenomenology +1001.4284 Superconductivity +1001.4582 Combinatorics +1001.4601 Analysis of PDEs +1001.4784 Algebraic Geometry +1001.4799 Phenomenology +1001.5192 Geometric Topology +1001.5281 +1002.0194 Disordered Systems and Neural Networks +1002.0252 +1002.1305 Strongly Correlated Electrons +1002.1433 Quantum Gases +1002.1747 +1002.2092 Optics +1002.2249 Superconductivity +1002.3044 Quantum Gases +1002.3077 Symbolic Computation +1002.3438 Logic in Computer Science +1002.3824 Strongly Correlated Electrons +1002.3988 Strongly Correlated Electrons +1002.4610 Cosmology and Nongalactic Astrophysics +1003.0142 Mesoscale and Nanoscale Physics +1003.0806 Plasma Physics +1003.1182 Phenomenology +1003.2007 +1003.2718 +1003.3133 +1003.4915 Optimization and Control +1003.5078 Representation Theory +1003.5740 Algebraic Topology +1004.1262 Logic in Computer Science +1004.1535 +1004.1879 Logic +1004.2024 +1004.3014 Strongly Correlated Electrons +1004.3412 Numerical Analysis +1005.1054 Number Theory +1005.1122 Data Structures and Algorithms +1005.1360 Risk Management +1005.1370 Combinatorics +1005.2001 Symbolic Computation +1005.2023 Superconductivity +1005.3078 Numerical Analysis +1005.5245 Disordered Systems and Neural Networks +1005.5360 +1005.5385 Phenomenology +1005.5388 Astrophysics of Galaxies +1005.5399 Algebraic Geometry +1005.5401 +1005.5402 Solar and Stellar Astrophysics +1005.5407 +1005.5410 Classical Physics +1005.5418 +1005.5419 Combinatorics +1005.5425 Methodology +1005.5428 Strongly Correlated Electrons +1005.5442 +1005.5444 Digital Libraries +1005.5445 Experiment +1005.5453 Physics and Society +1005.5455 Instrumentation and Methods for Astrophysics +1005.5459 Probability +1005.5465 Materials Science +1005.5466 Computation and Language +1005.5467 Optics +1005.5468 Strongly Correlated Electrons +1005.5469 Combinatorics +1005.5478 Differential Geometry +1005.5489 Other Computer Science +1005.5502 Classical Physics +1005.5503 Group Theory +1005.5504 Differential Geometry +1005.5505 +1005.5509 Experiment +1005.5513 Data Structures and Algorithms +1005.5515 Optics +1005.5517 Fluid Dynamics +1005.5522 Optimization and Control +1005.5537 Theory +1005.5538 Pricing of Securities +1005.5541 Theory +1005.5542 General Topology +1005.5548 Geophysics +1005.5551 Cosmology and Nongalactic Astrophysics +1005.5554 Materials Science +1005.5561 Experiment +1005.5566 Materials Science +1005.5569 Group Theory +1005.5572 Experiment +1005.5576 Materials Science +1005.5578 Number Theory +1005.5579 Number Theory +1005.5584 Computational Complexity +1005.5588 Quantum Algebra +1005.5591 Information Theory +1005.5612 Experiment +1005.5614 Networking and Internet Architecture +1005.5627 Combinatorics +1005.5631 Numerical Analysis +1005.5632 Probability +1005.5640 Combinatorics +1005.5646 Classical Analysis and ODEs +1005.5649 Theory +1005.5661 General Topology +1005.5662 Logic in Computer Science +1005.5677 +1005.5682 +1005.5685 Algebraic Topology +1005.5686 Mesoscale and Nanoscale Physics +1005.5688 Phenomenology +1005.5691 Superconductivity +1005.5693 Functional Analysis +1005.5707 Soft Condensed Matter +1005.5712 Numerical Analysis +1005.5726 Operator Algebras +astro-ph/0604459 +cond-mat/0412246 Strongly Correlated Electrons +cond-mat/0701537 Other Condensed Matter +cs/0402055 Computation and Language +gr-qc/0612041 +hep-ph/9807559 Phenomenology +hep-th/0512174 Theory +math/0403517 Numerical Analysis +math/0407324 Algebraic Topology +math/0412316 Differential Geometry +math/0503100 Numerical Analysis +math/0505011 Probability +math/0509093 Dynamical Systems +math/0511023 Number Theory +physics/0602157 Optics +0706.2306 Superconductivity +0801.4617 +0806.2889 Group Theory +0809.0529 Dynamical Systems +0812.0594 Commutative Algebra +0906.0542 Spectral Theory +0906.1305 +0907.1819 Mesoscale and Nanoscale Physics +0907.3533 Dynamical Systems +0908.2566 Solar and Stellar Astrophysics +0909.3701 Soft Condensed Matter +0910.1304 Operator Algebras +0910.2456 High Energy Astrophysical Phenomena +0910.3674 Theory +0911.1740 Quantum Gases +0911.4420 Atomic Physics +0911.4979 Quantum Algebra +0911.5530 Soft Condensed Matter +0912.0057 Theory +0912.1494 Number Theory +0912.3337 Soft Condensed Matter +0912.5138 Phenomenology +0912.5195 Fluid Dynamics +1001.2907 Probability +1001.5226 Strongly Correlated Electrons +1001.5326 +1002.0842 Superconductivity +1002.1351 Other Condensed Matter +1002.2151 Materials Science +1003.2347 Statistical Mechanics +1003.2726 Superconductivity +1003.2937 Superconductivity +1003.4267 Soft Condensed Matter +1003.4523 Theory +1003.5540 Statistical Mechanics +1004.0465 Soft Condensed Matter +1004.3336 Algebraic Geometry +1004.4902 Phenomenology +1005.0183 +1005.0581 Statistical Mechanics +1005.1462 Commutative Algebra +1005.3792 High Energy Astrophysical Phenomena +1005.3868 Superconductivity +1005.4652 Data Structures and Algorithms +1005.4664 Phenomenology +1005.5583 Statistical Mechanics +1006.1000 Instrumentation and Methods for Astrophysics +1006.4080 Chaotic Dynamics +1006.4104 Formal Languages and Automata Theory +1006.4427 Spectral Theory +1006.4641 Statistics Theory +1006.4643 Instrumentation and Methods for Astrophysics +1006.4644 +1006.4645 Neural and Evolutionary Computing +1006.4646 Formal Languages and Automata Theory +1006.4647 Category Theory +1006.4649 Optimization and Control +1006.4654 Classical Physics +1006.4657 Numerical Analysis +1006.4671 Analysis of PDEs +1006.4673 Optics +1006.4675 Atmospheric and Oceanic Physics +1006.4677 Category Theory +1006.4679 +1006.4681 Formal Languages and Automata Theory +1006.4684 Theory +1006.4685 Functional Analysis +1006.4688 Combinatorics +1006.4689 Combinatorics +1006.4692 +1006.4694 Algebraic Geometry +1006.4708 Distributed, Parallel, and Cluster Computing +1006.4712 General Physics +1006.4713 Theory +1006.4717 Cosmology and Nongalactic Astrophysics +1006.4719 Geometric Topology +1006.4722 Statistical Mechanics +1006.4724 Functional Analysis +1006.4730 Distributed, Parallel, and Cluster Computing +1006.4732 Differential Geometry +1006.4733 Distributed, Parallel, and Cluster Computing +1006.4737 Differential Geometry +1006.4740 Software Engineering +1006.4741 Materials Science +1006.4746 Distributed, Parallel, and Cluster Computing +1006.4747 Superconductivity +1006.4751 Numerical Analysis +1006.4753 Chaotic Dynamics +1006.4754 Neural and Evolutionary Computing +1006.4759 Materials Science +1006.4765 Analysis of PDEs +1006.4766 Analysis of PDEs +1006.4767 Pricing of Securities +1006.4768 Analysis of PDEs +1006.4777 Cosmology and Nongalactic Astrophysics +1006.4786 Information Theory +1006.4810 Algebraic Geometry +1006.4818 Information Theory +1006.4826 Phenomenology +1006.4827 Distributed, Parallel, and Cluster Computing +1006.4829 Software Engineering +1006.4831 Dynamical Systems +1006.4832 Learning +1006.4833 Databases +1006.4835 High Energy Astrophysical Phenomena +1006.4837 Methodology +1006.4839 Algebraic Topology +1006.4840 Mesoscale and Nanoscale Physics +1006.4846 Accelerator Physics +1006.4850 Group Theory +1006.4851 Strongly Correlated Electrons +1006.4852 Geometric Topology +0710.4508 Computational Complexity +0711.0834 Logic in Computer Science +0801.1809 History and Overview +0802.3745 Dynamical Systems +0806.0395 Numerical Analysis +0809.1353 Probability +0810.2098 Theory +0810.2733 Dynamical Systems +0810.4957 Probability +0812.3881 Phenomenology +0901.0119 Geometric Topology +0901.1050 General Physics +0901.1655 Information Theory +0902.1623 Differential Geometry +0902.2515 Classical Analysis and ODEs +0902.2520 Classical Analysis and ODEs +0902.3030 Commutative Algebra +0902.3298 Classical Analysis and ODEs +0904.0942 Databases +0905.2732 Classical Analysis and ODEs +0905.3384 Statistical Mechanics +0906.1527 +0906.1552 Chaotic Dynamics +0906.2725 +0907.0298 Algebraic Geometry +0907.4294 Differential Geometry +0909.4101 Numerical Analysis +0909.4138 Rings and Algebras +0910.5955 Phenomenology +0911.2101 Algebraic Geometry +0911.2155 +0911.2214 Data Structures and Algorithms +0911.5139 +0912.1396 Risk Management +0912.1747 Analysis of PDEs +0912.3456 Superconductivity +0912.3714 Mesoscale and Nanoscale Physics +1001.4287 Phenomenology +1001.5462 Fluid Dynamics +1002.1170 Theory +1002.1593 Quantitative Methods +1002.1766 Theory +1002.1819 Superconductivity +1002.1964 Cosmology and Nongalactic Astrophysics +1002.4583 Disordered Systems and Neural Networks +1003.0151 Differential Geometry +1003.1403 Statistical Mechanics +1003.1412 Statistical Mechanics +1004.1080 Materials Science +1004.1481 Materials Science +1004.2415 Disordered Systems and Neural Networks +1004.3929 Quantum Algebra +1004.4573 Phenomenology +1005.0867 Statistical Mechanics +1006.3426 Networking and Internet Architecture +1006.4144 Strongly Correlated Electrons +1006.4377 History and Overview +1006.4591 Astrophysics of Galaxies +1006.5353 +1006.5444 Phenomenology +1007.1189 Distributed, Parallel, and Cluster Computing +1007.1243 Information Theory +1007.1455 Instrumentation and Methods for Astrophysics +1007.1470 Numerical Analysis +1007.1472 Mesoscale and Nanoscale Physics +1007.1473 Cryptography and Security +1007.1483 Information Theory +1007.1486 Probability +1007.1487 Dynamical Systems +1007.1488 +1007.1495 Mesoscale and Nanoscale Physics +1007.1496 Materials Science +1007.1502 Analysis of PDEs +1007.1503 General Physics +1007.1506 Quantum Gases +1007.1511 Differential Geometry +1007.1540 Superconductivity +1007.1544 Algebraic Geometry +1007.1546 Algebraic Geometry +1007.1552 Solar and Stellar Astrophysics +1007.1556 Adaptation and Self-Organizing Systems +1007.1559 Networking and Internet Architecture +1007.1568 Functional Analysis +1007.1571 Classical Analysis and ODEs +1007.1572 Instrumentation and Detectors +1007.1575 Spectral Theory +1007.1580 Cosmology and Nongalactic Astrophysics +1007.1581 +1007.1583 +1007.1584 +1007.1601 Logic +1007.1603 Superconductivity +1007.1606 Strongly Correlated Electrons +1007.1621 Populations and Evolution +1007.1622 Instrumentation and Methods for Astrophysics +1007.1623 +1007.1626 Networking and Internet Architecture +1007.1629 +1007.1631 Trading and Market Microstructure +1007.1632 Data Structures and Algorithms +1007.1635 Algebraic Geometry +1007.1639 Group Theory +1007.1643 Combinatorics +1007.1650 +1007.1651 Functional Analysis +1007.1654 Functional Analysis +1007.1655 Number Theory +1007.1656 Quantum Algebra +math/0312449 Algebraic Geometry +math/0602196 Differential Geometry +math/0702360 Numerical Analysis +nucl-th/0208008 +nucl-th/0301068 +0707.0427 Operator Algebras +0707.0982 Optics +0709.2173 Geometric Topology +0709.3752 Functional Analysis +0710.1989 Functional Analysis +0711.1291 Classical Analysis and ODEs +0711.3013 Combinatorics +0801.0385 Functional Analysis +0801.3328 Algebraic Geometry +0802.1185 Classical Analysis and ODEs +0802.1286 Phenomenology +0803.1996 Algebraic Geometry +0803.3529 Functional Analysis +0804.4613 Functional Analysis +0805.1837 Chaotic Dynamics +0808.0643 Functional Analysis +0809.2627 Category Theory +0810.1061 Probability +0812.4306 +0812.5072 +0902.0702 Statistical Mechanics +0903.0303 Operator Algebras +0903.2552 Mesoscale and Nanoscale Physics +0903.3300 Phenomenology +0904.0386 Operator Algebras +0904.3924 Mesoscale and Nanoscale Physics +0904.3928 Analysis of PDEs +0904.4856 Quantum Gases +0905.1590 Cosmology and Nongalactic Astrophysics +0906.3313 Information Theory +0907.2685 Analysis of PDEs +0907.4484 Phenomenology +0908.2064 Theory +0909.3258 History and Philosophy of Physics +0909.4559 Theory +0909.5171 Theory +0910.1405 +0910.1564 Space Physics +0910.3406 Materials Science +0911.3164 Theory +0911.3586 Theory +0911.4156 +0912.0691 Lattice +0912.4745 Mesoscale and Nanoscale Physics +1001.0380 Analysis of PDEs +1001.1542 +1001.1601 Mesoscale and Nanoscale Physics +1002.0046 Data Structures and Algorithms +1002.4230 +1003.0423 +1003.0689 Classical Analysis and ODEs +1003.4444 +1004.1353 +1004.1630 Mesoscale and Nanoscale Physics +1004.4242 Chemical Physics +1004.4243 Chemical Physics +1004.5300 Applications +1005.0627 +1006.2437 Mesoscale and Nanoscale Physics +1006.5457 Cosmology and Nongalactic Astrophysics +1006.5821 Phenomenology +1007.0073 Quantum Gases +1007.0233 Materials Science +1007.1003 Materials Science +1007.2342 Quantum Gases +1007.2397 Analysis of PDEs +1008.0099 Phenomenology +1008.0431 Quantitative Methods +1008.0972 Number Theory +1008.2458 Software Engineering +1008.3531 Statistical Mechanics +1008.3688 Statistical Mechanics +1008.4692 +1008.5046 Analysis of PDEs +1009.0008 Phenomenology +1009.1357 +1009.1665 Phenomenology +1009.2146 Lattice +1009.2311 Cosmology and Nongalactic Astrophysics +1009.2663 +1009.3805 Theory +1009.4135 Theory +1009.4599 Theory +1009.4624 Materials Science +1009.5328 Materials Science +1009.6066 Differential Geometry +1010.0049 Materials Science +1010.0132 +1010.3600 Soft Condensed Matter +1010.4526 +1010.4604 +1010.4761 Algebraic Geometry +1011.4843 Solar and Stellar Astrophysics +1011.6001 Instrumentation and Detectors +1011.6363 Instrumentation and Methods for Astrophysics +1012.0109 Algebraic Geometry +1012.0601 Differential Geometry +1012.0888 Combinatorics +1012.1005 +1012.1565 Databases +1012.1746 Optics +1012.1865 Cosmology and Nongalactic Astrophysics +1012.2043 Algebraic Geometry +1012.2063 Statistics Theory +1012.2993 Analysis of PDEs +1012.2998 Logic in Computer Science +1012.3231 Differential Geometry +1012.3359 Computational Geometry +1012.3378 High Energy Astrophysical Phenomena +1012.3795 Machine Learning +1012.3855 Functional Analysis +1012.4006 Statistical Mechanics +1012.4017 Discrete Mathematics +1012.4021 Theory +1012.4022 Theory +1012.4024 High Energy Astrophysical Phenomena +1012.4025 Optimization and Control +1012.4034 Number Theory +1012.4037 Experiment +1012.4038 Phenomenology +1012.4043 +1012.4045 Operating Systems +1012.4046 Artificial Intelligence +1012.4050 Social and Information Networks +1012.4051 Learning +1012.4058 Combinatorics +1012.4059 +1012.4062 Data Structures and Algorithms +1012.4067 Representation Theory +1012.4068 General Physics +1012.4069 Differential Geometry +1012.4071 Exactly Solvable and Integrable Systems +1012.4073 Strongly Correlated Electrons +1012.4075 Exactly Solvable and Integrable Systems +1012.4076 General Topology +1012.4077 Complex Variables +1012.4081 Algebraic Geometry +1012.4089 Materials Science +1012.4095 +1012.4096 Differential Geometry +1012.4105 Materials Science +1012.4107 Instrumentation and Methods for Astrophysics +1012.4108 Theory +1012.4115 Materials Science +1012.4118 Statistical Finance +1012.4119 Instrumentation and Methods for Astrophysics +1012.4120 Algebraic Geometry +1012.4122 Applications +1012.4124 Analysis of PDEs +1012.4125 Instrumentation and Methods for Astrophysics +1012.4126 Neural and Evolutionary Computing +1012.4128 History and Philosophy of Physics +1012.4132 Algebraic Geometry +1012.4136 Networking and Internet Architecture +1012.4142 Analysis of PDEs +1012.4143 Mesoscale and Nanoscale Physics +1012.4147 Metric Geometry +1012.4150 K-Theory and Homology +1012.4151 K-Theory and Homology +1012.4161 Information Theory +1012.4162 Operator Algebras +1012.4163 Analysis of PDEs +1012.4169 Algebraic Topology +1012.4173 Neural and Evolutionary Computing +1012.4174 General Physics +1012.4175 Strongly Correlated Electrons +1012.4182 Physics and Society +1012.4185 Methodology +1012.4189 Physics and Society +1012.4191 Chaotic Dynamics +1012.4201 Classical Physics +1012.4203 +1012.4208 Group Theory +1012.4209 Analysis of PDEs +1012.4210 Combinatorics +1012.4211 Atmospheric and Oceanic Physics +1012.4219 Number Theory +1012.4231 Data Structures and Algorithms +1012.4239 High Energy Astrophysical Phenomena +1012.4240 Programming Languages +1012.4242 Algebraic Geometry +1012.4249 Learning +1012.4251 Statistical Mechanics +1012.4263 Data Structures and Algorithms +1012.4264 +1012.4267 Solar and Stellar Astrophysics +1012.4275 Metric Geometry +1012.4276 Statistics Theory +1012.4285 Atomic Physics +1012.4286 Superconductivity +1012.4290 Information Theory +1012.4308 Plasma Physics +1012.4309 Plasma Physics +1012.4310 +1012.4312 Differential Geometry +1012.4313 Molecular Networks +1012.4316 Superconductivity +1012.4320 Mesoscale and Nanoscale Physics +1012.4326 Experiment +1012.4327 Robotics +1012.4333 Complex Variables +1012.4337 Algebraic Geometry +1012.4341 General Topology +1012.4349 Networking and Internet Architecture +1012.4350 Experiment +1012.4359 Symplectic Geometry +1012.4371 Lattice +1012.4372 +1012.4374 Computational Engineering, Finance, and Science +1012.4393 Theory +1012.4396 Social and Information Networks +1012.4397 Methodology +1012.4398 Phenomenology +1012.4400 High Energy Astrophysical Phenomena +1012.4404 Distributed, Parallel, and Cluster Computing +1012.4406 Analysis of PDEs +1012.4407 Earth and Planetary Astrophysics +1012.4410 Classical Physics +1012.4413 +1012.4414 Differential Geometry +1012.4424 Representation Theory +1012.4425 +1012.4433 Phenomenology +1012.4444 Representation Theory +1012.4446 General Finance +1012.4451 Chemical Physics +1012.4452 Cryptography and Security +1012.4454 Statistical Mechanics +1012.4455 Analysis of PDEs +gr-qc/0512088 +hep-lat/9307014 Lattice +hep-lat/9401029 Lattice +math/0307382 Geometric Topology +math/0311113 Geometric Topology +math/0411441 Classical Analysis and ODEs +math/0509345 Geometric Topology +math/0603077 Classical Analysis and ODEs +0806.2282 Complex Variables +0905.2825 Networking and Internet Architecture +0908.0643 Classical Analysis and ODEs +0909.3472 Information Retrieval +0912.2184 Differential Geometry +1002.2636 Cosmology and Nongalactic Astrophysics +1003.1319 Discrete Mathematics +1003.1336 Operating Systems +1003.1360 +1003.1385 Discrete Mathematics +1003.1387 Cryptography and Security +1003.1395 Distributed, Parallel, and Cluster Computing +1003.1397 Distributed, Parallel, and Cluster Computing +1003.1399 Computation and Language +1003.1612 Numerical Analysis +1003.1632 Logic in Computer Science +1003.1808 Dynamical Systems +1003.1967 Networking and Internet Architecture +0704.0080 +0704.1817 +0704.2085 +0704.3038 +0704.3614 +0705.0041 +0705.0285 +0705.0290 +0705.0590 +0705.0598 +0705.1132 +0705.1545 +0705.1893 Phenomenology +0705.2040 +0705.2060 +0705.2228 +0705.2365 +0705.2415 +0705.2417 +0705.2780 +0705.2911 Experiment +0705.3643 +0705.4101 +0705.4102 +0705.4521 Accelerator Physics +0706.1143 +0706.1324 +0706.1505 +0706.1820 +0706.3495 +0706.3698 +0706.4136 +0706.4139 +0707.0279 +0707.0288 +0707.0395 +0707.0515 +0707.0690 +0707.0879 +0707.1046 +0707.1150 +0707.1316 +0707.2399 +0707.2594 +0707.3440 +0707.3617 Experiment +0707.4103 +0707.4301 +0707.4552 +0708.0211 +0708.0993 +0708.1518 +0708.1767 +0708.1884 Superconductivity +0708.2488 +0708.2490 +0708.2912 +0708.3436 +0709.0381 +0709.0399 +0709.0520 +0709.1037 +0709.1058 +0709.1158 +0709.1320 +0709.1479 +0709.1528 +0709.2570 +0709.2712 +0709.4237 +0710.0002 +0710.0619 +0710.0983 +0710.1064 +0710.1836 +0710.2125 +0710.3328 +0710.3384 +0710.3959 Probability +0710.3970 +0710.4045 Atomic Physics +0710.4522 +0710.4902 +0710.5036 +0710.5275 +0710.5523 +0710.5607 +0711.0380 +0711.0805 Theory +0711.0962 +0711.0973 +0711.1047 Atomic Physics +0711.1170 +0711.1368 +0711.1792 +0711.2065 +0711.2719 +0711.3022 +0711.3524 +0711.3800 +0711.4474 +0711.4561 +0711.4845 +0711.4933 +0712.0860 +0712.1353 +0712.1513 +0712.1688 +0712.1689 +0712.2086 +0712.2198 +0712.2757 +0712.2880 +0712.3356 +0712.4152 +0712.4270 Phenomenology +0801.1120 +0801.1421 +0801.1675 +0801.2269 +0801.2281 +0801.2303 +0801.2558 +0801.2563 +0801.2570 +0801.2616 +0801.3077 +0801.3150 +0801.3557 +0801.3746 +0801.3756 +0801.3825 +0801.4041 +0801.4674 +0801.4826 +0802.0025 +0802.0416 +0802.0456 +0802.0507 +0802.0772 +0802.0941 +0802.1148 +0802.1621 +0802.2100 +0802.2657 +0802.2748 +0802.2837 Group Theory +0802.3112 Probability +0803.0235 +0803.0324 +0803.0337 +0803.1785 +0803.1857 +0803.1900 +0803.2350 +0803.2711 Data Analysis, Statistics and Probability +0803.2825 +0803.3212 +0803.3587 +0803.3775 +0803.4185 +0804.0239 +0804.1314 +0804.2670 +0804.3044 +0804.3195 Phenomenology +0804.3858 Phenomenology +0804.4122 Phenomenology +0804.4136 +0804.4147 Phenomenology +0804.4401 Phenomenology +0804.4585 +0805.0494 +0805.0630 +0805.0698 Phenomenology +0805.1803 +0805.1942 +0805.3504 +0805.3816 Experiment +0805.4324 +0805.4437 Phenomenology +0805.4474 +0806.0325 +0806.0376 +0806.0484 Experiment +0806.1319 +0806.3267 +0806.3869 Theory +0806.3907 Theory +0806.4231 +0806.4320 +0806.4841 Phenomenology +0807.0179 +0807.0188 Experiment +0807.0686 Experiment +0807.1058 Phenomenology +0807.1414 Superconductivity +0807.2951 Phenomenology +0807.3857 Phenomenology +0807.3926 Experiment +0807.3943 +0807.4013 Phenomenology +0807.4124 Phenomenology +0807.4127 Experiment +0807.4376 Theory +0807.4377 Phenomenology +0807.4589 Experiment +0807.4605 Lattice +0808.0271 Experiment +0808.0565 Experiment +0808.0579 Experiment +0808.0792 Phenomenology +0808.0797 Experiment +0808.0809 +0808.1124 Experiment +0808.1142 Phenomenology +0808.1249 +0808.1722 +0808.1832 +0808.2568 Experiment +0808.2623 +0808.2742 +0808.2971 +0808.2991 Theory +0809.0370 Phenomenology +0809.0980 Phenomenology +0809.2787 Theory +0809.2846 +0809.3822 Logic +0809.3823 Instrumentation and Detectors +0809.3922 Phenomenology +0809.4243 +0809.4536 Phenomenology +0809.5006 +0810.1698 +0810.2018 +0810.3155 +0810.3894 +0810.4630 Instrumentation and Detectors +0810.4863 +0810.5006 Theory +0810.5262 +0811.0576 +0811.2051 Phenomenology +0811.2065 +0811.3556 +0812.0829 Instrumentation and Detectors +0812.1267 +0812.1440 +0812.2481 +0812.2692 Phenomenology +0812.2818 Statistics Theory +0812.3163 Theory +0901.0040 Astrophysics of Galaxies +0901.0041 High Energy Astrophysical Phenomena +0901.0200 Materials Science +0901.0405 Cosmology and Nongalactic Astrophysics +0901.0837 +0901.1894 Astrophysics of Galaxies +0901.2055 Phenomenology +0901.2246 Mesoscale and Nanoscale Physics +0901.3252 Theory +0902.0501 Phenomenology +0902.3295 Functional Analysis +0902.4480 Solar and Stellar Astrophysics +0902.4500 Functional Analysis +0903.0759 Astrophysics of Galaxies +0903.1868 Theory +0903.2919 Statistics Theory +0903.3814 Representation Theory +0903.3838 Cosmology and Nongalactic Astrophysics +0903.4421 Theory +0904.1121 Other Condensed Matter +0904.1312 Probability +0904.1794 Phenomenology +0904.2174 Phenomenology +0904.2740 Cosmology and Nongalactic Astrophysics +0904.2768 Theory +0904.3495 +0904.4215 Phenomenology +0904.4602 Instrumentation and Detectors +0905.0789 +0905.1807 Solar and Stellar Astrophysics +0905.2135 Instrumentation and Methods for Astrophysics +0905.2982 Astrophysics of Galaxies +0905.3687 Solar and Stellar Astrophysics +0906.0275 +0906.0335 Cosmology and Nongalactic Astrophysics +0906.0777 Phenomenology +0906.1034 Probability +0906.1731 Cosmology and Nongalactic Astrophysics +0906.3361 Optimization and Control +0906.4560 Databases +0906.5373 Lattice +0907.0841 +0907.0872 High Energy Astrophysical Phenomena +0907.1022 Superconductivity +0907.1196 +0907.1435 Materials Science +0907.1543 Spectral Theory +0907.3275 Probability +0907.3454 Statistics Theory +0907.5076 Probability +0907.5135 Phenomenology +0908.0310 Solar and Stellar Astrophysics +0908.0948 Phenomenology +0908.1241 Numerical Analysis +0908.1706 Accelerator Physics +0908.2952 Instrumentation and Detectors +0909.0001 Cosmology and Nongalactic Astrophysics +0909.0199 Instrumentation and Detectors +0909.0207 Functional Analysis +0909.1206 Operator Algebras +0909.1368 High Energy Astrophysical Phenomena +0909.4028 High Energy Astrophysical Phenomena +0909.4241 Phenomenology +0909.4725 +0909.5065 Phenomenology +0910.1021 +0910.1539 Cosmology and Nongalactic Astrophysics +0910.2006 Phenomenology +0910.2034 Applications +0910.2570 Phenomenology +0910.2643 Cosmology and Nongalactic Astrophysics +0910.4543 +0910.4751 Experiment +0910.4852 Theory +0911.0654 +0911.1833 Solar and Stellar Astrophysics +0911.2178 Phenomenology +0911.4456 +0911.4738 +0911.5693 Astrophysics of Galaxies +0912.1675 Quantum Gases +0912.2262 Phenomenology +0912.2328 Instrumentation and Methods for Astrophysics +0912.2503 Cosmology and Nongalactic Astrophysics +0912.2506 Cosmology and Nongalactic Astrophysics +0912.2995 High Energy Astrophysical Phenomena +0912.3444 Theory +0912.3489 Earth and Planetary Astrophysics +0912.4001 +0912.4160 Mesoscale and Nanoscale Physics +0912.4778 Combinatorics +0912.5085 Solar and Stellar Astrophysics +0912.5291 Phenomenology +1001.0850 +1001.1671 Theory +1001.1687 Phenomenology +1001.2029 +1001.2748 +1001.3620 Lattice +1001.4492 +1001.4525 Theory +1002.0296 +1002.1721 Phenomenology +1002.1968 +1002.4395 Phenomenology +1002.4408 Theory +1002.4888 Lattice +1003.0942 Cosmology and Nongalactic Astrophysics +1003.2096 Cosmology and Nongalactic Astrophysics +1003.3464 Phenomenology +1003.3701 Cosmology and Nongalactic Astrophysics +1003.4616 Strongly Correlated Electrons +1003.5217 Theory +1004.0042 Strongly Correlated Electrons +1004.0535 Phenomenology +1004.1075 Phenomenology +1004.1607 Phenomenology +1004.1781 Biological Physics +1004.2509 Theory +1004.3042 Experiment +1004.4611 Superconductivity +1004.5172 Mesoscale and Nanoscale Physics +1005.0834 Phenomenology +1005.1646 Theory +1005.1689 Phenomenology +1005.2140 Statistical Mechanics +1005.2635 +1005.2748 +1005.2992 +1005.3635 Algebraic Geometry +1005.3788 +1005.4279 Theory +1005.4957 Optimization and Control +1005.5297 Strongly Correlated Electrons +1006.0089 Accelerator Physics +1006.0199 +1006.0203 Phenomenology +1006.0249 Phenomenology +1006.0439 +1006.0453 Quantum Gases +1006.0645 Phenomenology +1006.0983 Phenomenology +1006.1205 Lattice +1006.1223 Experiment +1006.1383 Information Theory +1006.2110 Cosmology and Nongalactic Astrophysics +1006.2175 High Energy Astrophysical Phenomena +1006.2392 Theory +1006.2471 +1006.2863 +1006.2975 Strongly Correlated Electrons +1006.3315 Solar and Stellar Astrophysics +1006.3476 Number Theory +1006.3570 Theory +1006.3655 +1006.4098 Theory +1006.4371 Phenomenology +1006.4634 Phenomenology +1006.4858 Phenomenology +1006.4915 Theory +1006.4970 Cosmology and Nongalactic Astrophysics +1006.5049 Instrumentation and Methods for Astrophysics +1006.5723 Probability +1006.5874 Theory +1007.0051 +1007.0205 Theory +1007.0226 Accelerator Physics +1007.0736 Theory +1007.0925 Phenomenology +1007.1278 Astrophysics of Galaxies +1007.1346 Lattice +1007.1582 Materials Science +1007.1820 Theory +1007.1995 +1007.2052 +1007.2195 +1007.2551 Phenomenology +1007.2789 Theory +1007.2886 Experiment +1007.2972 Superconductivity +1007.3064 Lattice +1007.3431 Phenomenology +1007.3475 Theory +1007.3483 Superconductivity +1007.3584 Optimization and Control +1007.3790 +1007.3848 Experiment +1007.3856 +1007.4141 Cosmology and Nongalactic Astrophysics +1007.4213 +1007.4234 Theory +1007.4397 +1007.4506 +1007.4534 Soft Condensed Matter +1007.4668 Theory +1007.4715 Phenomenology +1007.4960 Phenomenology +1007.5097 +1007.5253 High Energy Astrophysical Phenomena +1007.5449 Theory +1007.5506 +1008.0019 +1008.0101 Strongly Correlated Electrons +1008.0148 Theory +1008.0246 Phenomenology +1008.0254 Phenomenology +1008.0279 Theory +1008.0480 Phenomenology +1008.0593 Phenomenology +1008.0625 +1008.0649 Theory +1008.0685 Phenomenology +1008.0863 +1008.1164 Cosmology and Nongalactic Astrophysics +1008.1178 Lattice +1008.1440 Phenomenology +1008.1625 +1008.1861 Theory +1008.1901 Strongly Correlated Electrons +1008.2171 Phenomenology +1008.2334 Theory +1008.3033 +1008.3236 +1008.3243 Theory +1008.3293 Lattice +1008.3403 Mesoscale and Nanoscale Physics +1008.3762 Superconductivity +1008.3950 Theory +1008.4083 Phenomenology +1008.4291 Materials Science +1008.4309 +1009.0177 Phenomenology +1009.0212 Theory +1009.0602 +1009.0618 Phenomenology +1009.0633 Theory +1009.0703 Plasma Physics +1009.0829 Phenomenology +1009.2527 Symplectic Geometry +1009.3332 Lattice +1009.3634 Mesoscale and Nanoscale Physics +1009.3768 Soft Condensed Matter +1009.3889 Theory +1009.4176 Geometric Topology +1009.5443 Cosmology and Nongalactic Astrophysics +1009.5501 Phenomenology +1010.1552 Phenomenology +1010.2365 General Physics +1010.4860 Mesoscale and Nanoscale Physics +1010.4947 Physics Education +1010.5757 Cosmology and Nongalactic Astrophysics +1011.0245 Quantum Algebra +1011.0720 Classical Analysis and ODEs +1011.1088 +1011.1348 Information Theory +1011.1599 Numerical Analysis +1011.1739 Solar and Stellar Astrophysics +1011.1781 Lattice +1011.2192 Analysis of PDEs +1011.2200 Cosmology and Nongalactic Astrophysics +1011.2228 History and Philosophy of Physics +1011.2231 High Energy Astrophysical Phenomena +1011.2236 Plasma Physics +1011.2238 Software Engineering +1011.2240 Cosmology and Nongalactic Astrophysics +1011.2245 Social and Information Networks +1011.2246 Networking and Internet Architecture +1011.2249 Data Structures and Algorithms +1011.2251 Number Theory +1011.2253 Dynamical Systems +1011.2257 Algebraic Geometry +1011.2262 Analysis of PDEs +1011.2264 Combinatorics +1011.2269 Computational Geometry +1011.2270 Group Theory +1011.2272 Computer Vision and Pattern Recognition +1011.2275 Statistical Mechanics +1011.2286 Strongly Correlated Electrons +1011.2288 Applications +1011.2294 Group Theory +1011.2295 Applications +1011.2296 Analysis of PDEs +1011.2297 Other Condensed Matter +1011.2298 Optics +1011.2301 Soft Condensed Matter +1011.2303 Materials Science +1011.2304 Artificial Intelligence +1011.2307 Logic in Computer Science +1011.2312 Distributed, Parallel, and Cluster Computing +1011.2314 Logic in Computer Science +1011.2315 Applications +1011.2316 Statistical Mechanics +1011.2318 Rings and Algebras +1011.2319 Cosmology and Nongalactic Astrophysics +1011.2320 Other Condensed Matter +1011.2322 Applications +1011.2323 Mesoscale and Nanoscale Physics +1011.2324 Networking and Internet Architecture +1011.2325 Solar and Stellar Astrophysics +1011.2326 General Physics +1011.2327 Atomic Physics +1011.2328 Applications +1011.2333 Statistics Theory +1011.2335 Probability +1011.2354 Statistics Theory +1011.2355 General Physics +1011.2356 Materials Science +1011.2357 Mesoscale and Nanoscale Physics +1011.2358 Statistical Mechanics +1011.2359 Superconductivity +1011.2364 Phenomenology +1011.2366 Statistics Theory +1011.2368 +1011.2374 Category Theory +1011.2378 Statistics Theory +1011.2379 Strongly Correlated Electrons +1011.2380 Phenomenology +1011.2383 History and Philosophy of Physics +1011.2386 Other Computer Science +1011.2388 Differential Geometry +1011.2389 General Mathematics +1011.2390 Astrophysics of Galaxies +1011.2394 Differential Geometry +1011.2404 Cosmology and Nongalactic Astrophysics +1011.2416 +1011.2417 Number Theory +1011.2418 High Energy Astrophysical Phenomena +1011.2421 +1011.2426 Algebraic Geometry +1011.2433 Numerical Analysis +1011.2437 Computation +1011.2438 Biological Physics +1011.2443 Probability +1011.2444 Analysis of PDEs +1011.2445 +1011.2447 Phenomenology +1011.2451 Dynamical Systems +1011.2457 Group Theory +1011.2461 Astrophysics of Galaxies +1011.2464 +1011.2465 Dynamical Systems +1011.2469 Solar and Stellar Astrophysics +1011.2473 Probability +1011.2477 Materials Science +1011.2488 Programming Languages +astro-ph/0005451 +astro-ph/0008525 +astro-ph/0010474 +astro-ph/0011241 +astro-ph/0101554 +astro-ph/0110031 +astro-ph/0110208 +astro-ph/0110421 +astro-ph/0111040 +astro-ph/0112117 +astro-ph/0203265 +astro-ph/0205462 +astro-ph/0210026 +astro-ph/0210256 +astro-ph/0302454 +astro-ph/0303352 +astro-ph/0402399 +astro-ph/0405121 +astro-ph/0407531 +astro-ph/0408083 +astro-ph/0410345 +astro-ph/0410728 +astro-ph/0412302 +astro-ph/0501319 +astro-ph/0501521 +astro-ph/0501527 +astro-ph/0501618 +astro-ph/0502148 +astro-ph/0502331 +astro-ph/0502363 +astro-ph/0502372 +astro-ph/0502424 +astro-ph/0502429 +astro-ph/0502473 +astro-ph/0502475 +astro-ph/0502505 +astro-ph/0502506 +astro-ph/0502555 +astro-ph/0502559 +astro-ph/0503135 +astro-ph/0503511 +astro-ph/0504059 +astro-ph/0504098 +astro-ph/0504184 +astro-ph/0504306 +astro-ph/0504310 +astro-ph/0504368 +astro-ph/0504417 +astro-ph/0504517 +astro-ph/0504535 +astro-ph/0504542 +astro-ph/0504612 +astro-ph/0504620 +astro-ph/0505020 +astro-ph/0505026 +astro-ph/0505044 +astro-ph/0505052 +astro-ph/0505074 +astro-ph/0505150 +astro-ph/0505151 +astro-ph/0505152 +astro-ph/0505153 +astro-ph/0505156 +astro-ph/0505166 +astro-ph/0505294 +astro-ph/0505349 +astro-ph/0505498 +astro-ph/0505535 +astro-ph/0506020 +astro-ph/0506021 +astro-ph/0506062 +astro-ph/0506063 +astro-ph/0506191 +astro-ph/0506198 +astro-ph/0506233 +astro-ph/0506234 +astro-ph/0506235 +astro-ph/0506236 +astro-ph/0506385 +astro-ph/0506448 +astro-ph/0507016 +astro-ph/0507092 +astro-ph/0507235 +astro-ph/0507405 +astro-ph/0507407 +astro-ph/0507494 +astro-ph/0507503 +astro-ph/0507507 +astro-ph/0507514 +astro-ph/0507527 +astro-ph/0507606 +astro-ph/0508054 +astro-ph/0508163 +astro-ph/0508174 +astro-ph/0508215 +astro-ph/0508275 +astro-ph/0508356 +astro-ph/0508385 +astro-ph/0508535 +astro-ph/0508629 +astro-ph/0509135 +astro-ph/0509307 +astro-ph/0509401 +astro-ph/0509447 +astro-ph/0509521 +astro-ph/0509615 +astro-ph/0509856 +astro-ph/0509891 +astro-ph/0509897 +astro-ph/0510089 +astro-ph/0510124 +astro-ph/0510314 +astro-ph/0510323 +astro-ph/0510406 +astro-ph/0510449 +astro-ph/0510498 +astro-ph/0510785 +astro-ph/0510790 +astro-ph/0511129 +astro-ph/0511180 +astro-ph/0511225 +astro-ph/0511453 +astro-ph/0511508 +astro-ph/0511593 +astro-ph/0511669 +astro-ph/0512161 +astro-ph/0512196 +astro-ph/0512218 +astro-ph/0512503 +astro-ph/0512618 +astro-ph/0512630 +astro-ph/0512644 +astro-ph/0601112 +astro-ph/0601127 +astro-ph/0601256 +astro-ph/0601267 +astro-ph/0601278 +astro-ph/0601316 +astro-ph/0601422 +astro-ph/0601463 +astro-ph/0601470 +astro-ph/0601562 +astro-ph/0601577 +astro-ph/0601698 +astro-ph/0602061 +astro-ph/0602178 +astro-ph/0602317 +astro-ph/0602411 +astro-ph/0602419 +astro-ph/0602464 +astro-ph/0602602 +astro-ph/0603047 +astro-ph/0603143 +astro-ph/0603238 +astro-ph/0603318 +astro-ph/0603410 +astro-ph/0603427 +astro-ph/0603439 +astro-ph/0603445 +astro-ph/0603453 +astro-ph/0603574 +astro-ph/0603590 +astro-ph/0603613 +astro-ph/0603632 +astro-ph/0603662 +astro-ph/0603743 +astro-ph/0603773 +astro-ph/0603794 +astro-ph/0603819 +astro-ph/0604051 +astro-ph/0604075 +astro-ph/0604138 +astro-ph/0604140 +astro-ph/0604246 +astro-ph/0604287 +astro-ph/0604347 +astro-ph/0604454 +astro-ph/0604457 +astro-ph/0604500 +astro-ph/0604551 +astro-ph/0604556 +astro-ph/0605024 +astro-ph/0605025 +astro-ph/0605036 +astro-ph/0605047 +astro-ph/0605178 +astro-ph/0605186 +astro-ph/0605416 +astro-ph/0605439 +astro-ph/0605452 +astro-ph/0605478 +astro-ph/0605494 +astro-ph/0605543 +astro-ph/0605655 +astro-ph/0606174 +astro-ph/0606263 +astro-ph/0606279 +astro-ph/0606341 +astro-ph/0606425 +astro-ph/0606460 +astro-ph/0606499 +astro-ph/0606508 +astro-ph/0606586 +astro-ph/0606644 +astro-ph/0606666 +astro-ph/0606763 +astro-ph/0607018 +astro-ph/0607021 +astro-ph/0607038 +astro-ph/0607124 +astro-ph/0607163 +astro-ph/0607295 +astro-ph/0607396 +astro-ph/0607467 +astro-ph/0607493 +astro-ph/0607507 +astro-ph/0607529 +astro-ph/0607673 +astro-ph/0608045 +astro-ph/0608069 +astro-ph/0608070 +astro-ph/0608110 +astro-ph/0608158 +astro-ph/0608166 +astro-ph/0608256 +astro-ph/0608282 +astro-ph/0608308 +astro-ph/0608325 +astro-ph/0608339 +astro-ph/0608363 +astro-ph/0608521 +astro-ph/0608593 +astro-ph/0608685 +astro-ph/0609069 +astro-ph/0609148 +astro-ph/0609169 +astro-ph/0609288 +astro-ph/0609563 +astro-ph/0609598 +astro-ph/0609703 +astro-ph/0609763 +astro-ph/0610057 +astro-ph/0610067 +astro-ph/0610076 +astro-ph/0610133 +astro-ph/0610212 +astro-ph/0610224 +astro-ph/0610256 +astro-ph/0610276 +astro-ph/0610312 +astro-ph/0610408 +astro-ph/0610418 +astro-ph/0610436 +astro-ph/0610512 +astro-ph/0610580 +astro-ph/0610585 +astro-ph/0610588 +astro-ph/0610740 +astro-ph/0610760 +astro-ph/0610824 +astro-ph/0610926 +astro-ph/0611001 +astro-ph/0611042 +astro-ph/0611138 +astro-ph/0611161 +astro-ph/0611168 +astro-ph/0611194 +astro-ph/0611220 +astro-ph/0611416 +astro-ph/0611457 +astro-ph/0611458 +astro-ph/0611591 +astro-ph/0611799 +astro-ph/0611810 +astro-ph/0611854 +astro-ph/0611923 +astro-ph/0611929 +astro-ph/0612038 +astro-ph/0612069 +astro-ph/0612092 +astro-ph/0612256 +astro-ph/0612320 +astro-ph/0612367 +astro-ph/0612375 +astro-ph/0612454 +astro-ph/0612465 +astro-ph/0612483 +astro-ph/0612486 +astro-ph/0612494 +astro-ph/0612516 +astro-ph/0612543 +astro-ph/0612643 +astro-ph/0612762 +astro-ph/0701043 +astro-ph/0701240 +astro-ph/0701258 +astro-ph/0701263 +astro-ph/0701306 +astro-ph/0701448 +astro-ph/0701450 +astro-ph/0701496 +astro-ph/0701563 +astro-ph/0701591 +astro-ph/0701626 +astro-ph/0701633 +astro-ph/0701688 +astro-ph/0701812 +astro-ph/0701813 +astro-ph/0701815 +astro-ph/0701818 +astro-ph/0701855 +astro-ph/0701875 +astro-ph/0701905 +astro-ph/0702008 +astro-ph/0702122 +astro-ph/0702150 +astro-ph/0702197 +astro-ph/0702244 +astro-ph/0702276 +astro-ph/0702327 +astro-ph/0702443 +astro-ph/0702450 +astro-ph/0702472 +astro-ph/0702599 +astro-ph/0702633 +astro-ph/0702700 +astro-ph/0702708 +astro-ph/0703032 +astro-ph/0703248 +astro-ph/0703287 +astro-ph/0703337 +astro-ph/0703434 +astro-ph/0703526 +astro-ph/0703613 +astro-ph/0703710 +astro-ph/0703745 +astro-ph/9605151 +cond-mat/0509203 Statistical Mechanics +cond-mat/0510092 Statistical Mechanics +cond-mat/0512528 Strongly Correlated Electrons +cond-mat/0606084 Mesoscale and Nanoscale Physics +cs/0405029 Computer Vision and Pattern Recognition +gr-qc/0002039 +gr-qc/0003062 +gr-qc/0007058 +gr-qc/0012080 +gr-qc/0102011 +gr-qc/0103045 +gr-qc/0106059 +gr-qc/0106087 +gr-qc/0108035 +gr-qc/0109017 +gr-qc/0202040 +gr-qc/0202085 +gr-qc/0203067 +gr-qc/0207065 +gr-qc/0208058 +gr-qc/0210046 +gr-qc/0211092 +gr-qc/0304021 +gr-qc/0306116 +gr-qc/0308023 +gr-qc/0310094 +gr-qc/0401029 +gr-qc/0401036 +gr-qc/0401055 +gr-qc/0401102 +gr-qc/0403117 +gr-qc/0405054 +gr-qc/0406115 +gr-qc/0408027 +gr-qc/0502104 +gr-qc/0503113 +gr-qc/0503122 +gr-qc/0504101 +gr-qc/0505035 +gr-qc/0506061 +gr-qc/0507015 +gr-qc/0508069 +gr-qc/0510094 +gr-qc/0512113 +gr-qc/0601068 +gr-qc/0602107 +gr-qc/0603036 +gr-qc/0605070 +gr-qc/0605095 +gr-qc/0605111 +gr-qc/0607040 +gr-qc/0607107 +gr-qc/0610015 +gr-qc/0610078 +gr-qc/0611068 +gr-qc/0612042 +gr-qc/0612078 +gr-qc/0701079 +gr-qc/0701080 +gr-qc/0702007 +gr-qc/0702026 +gr-qc/0702030 +gr-qc/0702040 +gr-qc/0702108 +gr-qc/0702136 +gr-qc/9712074 +hep-ex/0010055 Experiment +hep-ex/0010070 Experiment +hep-ex/0012059 Experiment +hep-ex/0306051 Experiment +hep-ex/0307022 Experiment +hep-ex/0409061 Experiment +hep-ex/0412046 Experiment +hep-ex/0701028 Experiment +hep-lat/9307021 Lattice +hep-ph/0009164 Phenomenology +hep-ph/0009165 Phenomenology +hep-ph/0011159 Phenomenology +hep-ph/0203164 Phenomenology +hep-ph/0204244 Phenomenology +hep-ph/0207075 Phenomenology +hep-ph/0302215 Phenomenology +hep-ph/0306067 Phenomenology +hep-ph/0401161 Phenomenology +hep-ph/0412255 Phenomenology +hep-ph/0502186 Phenomenology +hep-ph/0503142 Phenomenology +hep-ph/0504061 Phenomenology +hep-ph/0511057 Phenomenology +hep-ph/0511155 Phenomenology +hep-ph/0512008 Phenomenology +hep-ph/0512338 Phenomenology +hep-ph/0604092 Phenomenology +hep-ph/0610152 Phenomenology +hep-ph/0612003 Phenomenology +hep-ph/0702232 Phenomenology +hep-ph/9406221 Phenomenology +hep-ph/9408373 Phenomenology +hep-ph/9507290 Phenomenology +hep-ph/9507364 Phenomenology +hep-ph/9507391 Phenomenology +hep-ph/9508216 Phenomenology +hep-ph/9508242 Phenomenology +hep-ph/9508260 Phenomenology +hep-ph/9508272 Phenomenology +hep-ph/9508304 Phenomenology +hep-ph/9606309 Phenomenology +hep-ph/9710448 Phenomenology +hep-ph/9806432 Phenomenology +hep-th/0108033 Theory +hep-th/0204173 Theory +hep-th/0310250 Theory +hep-th/0406159 Theory +hep-th/0411144 Theory +hep-th/0501057 Theory +hep-th/0506100 Theory +hep-th/0506101 Theory +hep-th/0510246 Theory +hep-th/0512307 Theory +hep-th/0602077 Theory +hep-th/0602157 Theory +hep-th/0604163 Theory +hep-th/0605002 Theory +hep-th/0605113 Theory +hep-th/0610076 Theory +hep-th/0702189 Theory +hep-th/0703224 Theory +hep-th/0703240 Theory +hep-th/9902176 Theory +hep-th/9910152 Theory +hep-th/9912194 Theory +math-ph/0101016 +math-ph/0203043 +math-ph/0207030 +math-ph/0211074 +math-ph/0405012 +math-ph/0412026 +math-ph/0511072 +math-ph/0602048 +math-ph/0604063 +math/0306332 Quantum Algebra +math/0403463 Quantum Algebra +math/0606298 Number Theory +nucl-ex/0512003 +nucl-ex/0702044 +nucl-th/0509086 +nucl-th/0605007 +nucl-th/0606049 +physics/0101014 General Physics +physics/0505078 Plasma Physics +physics/0507078 Instrumentation and Detectors +physics/0602143 Instrumentation and Detectors +physics/0701340 History and Philosophy of Physics +physics/9812025 Instrumentation and Detectors +quant-ph/0301142 +quant-ph/0401103 +quant-ph/0507107 +quant-ph/0605070 +0705.2626 Mathematical Software +0707.3405 Materials Science +0708.1229 Algebraic Geometry +0709.0671 Number Theory +0709.2730 Functional Analysis +0709.3615 Symplectic Geometry +0712.2595 +0801.3099 Numerical Analysis +0805.1071 Data Structures and Algorithms +0807.5135 Algebraic Geometry +0811.0140 Complex Variables +0811.0959 Computational Complexity +0811.1650 Other Condensed Matter +0811.2909 Representation Theory +0812.0057 Analysis of PDEs +0812.0106 Analysis of PDEs +0812.2819 General Physics +0903.5288 Geometric Topology +0906.0208 General Finance +0907.2496 Dynamical Systems +0907.4744 +0908.0706 +0908.3284 Superconductivity +0908.4014 Representation Theory +0909.3349 High Energy Astrophysical Phenomena +0910.3510 Soft Condensed Matter +0910.3740 +0910.4565 Logic in Computer Science +0911.1032 +0911.2132 +0911.4408 Theory +0911.4425 Probability +0912.2276 Phenomenology +1001.1577 High Energy Astrophysical Phenomena +1001.1677 Other Condensed Matter +1001.2781 Information Theory +1001.2839 Superconductivity +1001.4041 +1001.4476 Biological Physics +1002.1389 Cosmology and Nongalactic Astrophysics +1002.3061 Complex Variables +1002.3085 Quantum Gases +1002.3375 Astrophysics of Galaxies +1002.4077 Earth and Planetary Astrophysics +1003.2312 +1003.2382 Mesoscale and Nanoscale Physics +1003.3713 Computational Geometry +1004.2830 +1004.3925 Computation +1005.0390 Astrophysics of Galaxies +1005.3968 Information Theory +1005.5130 Computers and Society +1005.5170 Learning +1005.5186 Classical Analysis and ODEs +1005.5363 High Energy Astrophysical Phenomena +1005.5498 Mesoscale and Nanoscale Physics +1005.5518 +1005.5593 Statistical Mechanics +1005.5623 Logic in Computer Science +1005.5633 Logic in Computer Science +1005.5635 Logic in Computer Science +1005.5697 Statistics Theory +1005.5729 Experiment +1006.0003 Phenomenology +1006.0005 Astrophysics of Galaxies +1006.0011 Algebraic Geometry +1006.0017 Populations and Evolution +1006.0018 Populations and Evolution +1006.0019 Populations and Evolution +1006.0020 Populations and Evolution +1006.0027 Rings and Algebras +1006.0030 Logic in Computer Science +1006.0033 Statistical Mechanics +1006.0037 Statistics Theory +1006.0039 Analysis of PDEs +1006.0043 Combinatorics +1006.0045 Statistics Theory +1006.0050 +1006.0052 +1006.0056 Information Theory +1006.0060 Strongly Correlated Electrons +1006.0067 Strongly Correlated Electrons +1006.0069 Mesoscale and Nanoscale Physics +1006.0071 Strongly Correlated Electrons +1006.0072 Strongly Correlated Electrons +1006.0074 Classical Analysis and ODEs +1006.0077 Functional Analysis +1006.0081 Differential Geometry +1006.0096 Astrophysics of Galaxies +1006.0097 Phenomenology +1006.0100 Optics +1006.0101 High Energy Astrophysical Phenomena +1006.0110 Cosmology and Nongalactic Astrophysics +1006.0111 General Mathematics +1006.0116 Commutative Algebra +1006.0118 Materials Science +1006.0123 Statistics Theory +1006.0124 Strongly Correlated Electrons +1006.0130 Logic +1006.0151 Statistical Mechanics +1006.0152 Combinatorics +1006.0153 Computation and Language +1006.0156 Differential Geometry +1006.0158 Optimization and Control +1006.0159 Commutative Algebra +1006.0161 Geometric Topology +1006.0163 Combinatorics +1006.0166 Representation Theory +1006.0168 Computational Engineering, Finance, and Science +1006.0173 Combinatorics +1006.0185 Differential Geometry +1006.0189 Chaotic Dynamics +1006.0190 Metric Geometry +1006.0214 +1006.0220 Logic in Computer Science +1006.0222 Dynamical Systems +cond-mat/0601569 Materials Science +gr-qc/0603005 +hep-ph/0101201 Phenomenology +math/0210001 Algebraic Topology +math/0411638 Symplectic Geometry +math/0611546 Algebraic Topology +0711.1036 Statistics Theory +0803.0010 +0806.1120 +0808.0917 Number Theory +0809.2600 +0811.3945 General Topology +0812.0671 Materials Science +0902.4776 Number Theory +0905.2647 Atomic Physics +0905.3476 Solar and Stellar Astrophysics +0905.4803 +0907.0462 +0907.2148 +0907.2448 Strongly Correlated Electrons +0907.5370 +0908.0674 Algebraic Topology +0909.0431 +0909.2015 Mesoscale and Nanoscale Physics +0909.2179 Other Condensed Matter +0909.4417 Combinatorics +0910.0535 Group Theory +0910.1678 Cosmology and Nongalactic Astrophysics +0910.3873 Superconductivity +0911.2209 Mesoscale and Nanoscale Physics +0911.2246 Solar and Stellar Astrophysics +0912.2443 General Physics +0912.4458 +0912.4995 Information Theory +1001.0891 Phenomenology +math/0508001 Analysis of PDEs +math/0608525 Representation Theory +0705.2879 Complex Variables +0710.3628 Quantum Algebra +0801.0579 Combinatorics +0802.0215 Algebraic Geometry +0804.1488 Statistical Mechanics +0806.0478 Commutative Algebra +0806.0488 Commutative Algebra +0806.0495 Commutative Algebra +0806.4182 +0806.4183 +0808.0390 Statistical Mechanics +0810.3366 Number Theory +0811.1944 Chaotic Dynamics +0811.3667 Optics +0811.4715 Computational Finance +0812.0877 Probability +0812.3471 Geometric Topology +0901.1129 Metric Geometry +0902.1373 Analysis of PDEs +0903.0139 Strongly Correlated Electrons +0903.1177 Optics +0904.2819 Analysis of PDEs +0904.4903 Statistics Theory +0905.0187 Operator Algebras +0905.1172 Functional Analysis +0905.2296 Mesoscale and Nanoscale Physics +0905.4728 Strongly Correlated Electrons +0906.1727 +0906.2047 Superconductivity +0907.1215 +0907.1627 Probability +0907.3006 Strongly Correlated Electrons +0907.5061 Quantum Gases +0908.0091 Number Theory +0908.1780 +0908.2409 Applications +0908.2975 Mesoscale and Nanoscale Physics +0908.3817 Machine Learning +0910.2494 Analysis of PDEs +0911.0862 Superconductivity +0911.0911 Strongly Correlated Electrons +0911.2019 Mesoscale and Nanoscale Physics +0911.2318 Materials Science +0911.2850 Experiment +0911.4776 Instrumentation and Detectors +0911.5067 Information Theory +0911.5385 Information Theory +0912.0031 +0912.3559 Quantum Gases +0912.4020 Mesoscale and Nanoscale Physics +0912.5171 Strongly Correlated Electrons +1001.0057 Populations and Evolution +1001.0355 Probability +1001.3232 Superconductivity +1001.3419 +1001.3648 Lattice +1001.4022 Soft Condensed Matter +1001.5119 Superconductivity +1002.0070 Atmospheric and Oceanic Physics +1002.0891 Superconductivity +1002.0946 Mesoscale and Nanoscale Physics +1002.1045 Theory +1002.1686 Algebraic Geometry +1002.2435 Optics +1002.2632 Disordered Systems and Neural Networks +1002.2747 Category Theory +1003.0342 Quantum Algebra +1003.0915 Differential Geometry +1003.3038 Geometric Topology +1003.3276 Strongly Correlated Electrons +1003.3407 Representation Theory +1003.4602 Mesoscale and Nanoscale Physics +1003.5116 Soft Condensed Matter +1003.5801 Theory +1004.1362 Optics +1004.1491 Algebraic Geometry +1004.1618 Analysis of PDEs +1004.1898 Superconductivity +1004.2179 Combinatorics +1004.2661 Lattice +1004.2795 Information Theory +1004.3910 Superconductivity +1005.0495 Theory +1005.0682 Group Theory +1005.2603 Learning +1005.3247 Mesoscale and Nanoscale Physics +1005.3613 Theory +1005.5485 Statistical Mechanics +1006.0926 Atmospheric and Oceanic Physics +1006.2105 Superconductivity +1006.3109 Strongly Correlated Electrons +1006.3996 Strongly Correlated Electrons +1006.4333 Combinatorics +1006.4466 Cosmology and Nongalactic Astrophysics +1007.0507 Networking and Internet Architecture +1007.0749 Theory +1007.0799 Information Theory +1007.1158 Operator Algebras +1007.1505 Combinatorics +1007.1636 Strongly Correlated Electrons +1007.1670 Combinatorics +1007.1677 Popular Physics +1007.1678 Computational Complexity +1007.1683 Algebraic Geometry +1007.1686 Dynamical Systems +1007.1691 Fluid Dynamics +1007.1694 Probability +1007.1695 Algebraic Geometry +1007.1696 +1007.1697 Information Theory +1007.1698 Materials Science +1007.1700 Materials Science +1007.1704 Mesoscale and Nanoscale Physics +1007.1708 Computer Vision and Pattern Recognition +1007.1714 Algebraic Geometry +1007.1715 +1007.1716 Phenomenology +1007.1722 Software Engineering +1007.1731 High Energy Astrophysical Phenomena +1007.1735 Information Theory +1007.1742 Phenomenology +1007.1744 Cell Behavior +1007.1753 Astrophysics of Galaxies +1007.1759 Differential Geometry +1007.1764 Complex Variables +1007.1766 Artificial Intelligence +1007.1768 Computational Engineering, Finance, and Science +1007.1772 Mesoscale and Nanoscale Physics +1007.1774 Materials Science +1007.1775 Analysis of PDEs +1007.1776 Optimization and Control +1007.1780 +1007.1782 Number Theory +1007.1787 Other Statistics +1007.1791 Representation Theory +1007.1792 Materials Science +1007.1799 Information Theory +1007.1800 Computer Science and Game Theory +1007.1803 +1007.1804 Cosmology and Nongalactic Astrophysics +1007.1809 Disordered Systems and Neural Networks +1007.1814 +1007.1817 Fluid Dynamics +1007.1818 Statistical Mechanics +1007.1819 Information Theory +1007.1829 Disordered Systems and Neural Networks +1007.1830 +1007.1832 Differential Geometry +1007.1834 Commutative Algebra +1007.1840 Number Theory +1007.1841 Computational Complexity +1007.1845 Materials Science +1007.1846 Statistical Mechanics +1007.1848 Number Theory +1007.1854 Astrophysics of Galaxies +1007.1855 Analysis of PDEs +1007.1862 Soft Condensed Matter +1007.1863 +1007.1869 Probability +1007.1877 Disordered Systems and Neural Networks +1007.1878 Operator Algebras +1007.1880 Applications +1007.1883 Analysis of PDEs +1007.1885 +1007.1896 +1007.1905 Optics +1007.1908 Risk Management +1007.1911 Combinatorics +1007.1926 Classical Physics +1007.1934 Algebraic Topology +1007.1936 Algebraic Geometry +1007.1943 Strongly Correlated Electrons +1007.1944 Databases +1007.1947 General Physics +1007.1950 Solar and Stellar Astrophysics +1007.1952 +1007.1953 Materials Science +1007.1954 Analysis of PDEs +1007.1958 +astro-ph/0306536 +cond-mat/0112070 Materials Science +cond-mat/0202177 Statistical Mechanics +cond-mat/0208590 Disordered Systems and Neural Networks +cond-mat/0212504 Statistical Mechanics +cond-mat/0304642 Statistical Mechanics +cond-mat/0401457 Other Condensed Matter +math/0111078 Spectral Theory +math/0703517 Differential Geometry +physics/0308043 Classical Physics +physics/0502069 Fluid Dynamics +q-bio/0512003 Other Quantitative Biology +0706.2281 +0707.0102 Metric Geometry +0707.2949 Geometric Topology +0710.2381 Statistical Mechanics +0710.3319 Statistical Mechanics +0711.4463 Theory +0711.4734 +0712.1464 Differential Geometry +0801.1981 Number Theory +0801.4444 Materials Science +0803.1685 Functional Analysis +0804.2590 Statistical Mechanics +0805.0350 General Physics +0806.2713 Analysis of PDEs +0807.4701 Computer Vision and Pattern Recognition +0809.1901 Complex Variables +0809.3588 Strongly Correlated Electrons +0810.1914 +0810.3877 Quantitative Methods +0811.2163 +0811.4699 Computer Vision and Pattern Recognition +0812.0776 Dynamical Systems +0812.2079 Materials Science +0901.3111 +0901.3354 Cosmology and Nongalactic Astrophysics +0901.4385 Other Condensed Matter +0901.4645 +0902.1630 Superconductivity +0902.4310 Materials Science +0903.1204 +0904.3574 Soft Condensed Matter +0904.3641 +0904.3646 +0905.2279 Algebraic Topology +0905.2590 Superconductivity +0905.2756 Statistical Mechanics +0906.4218 Mesoscale and Nanoscale Physics +0906.4539 Learning +0906.4578 +0908.0445 Soft Condensed Matter +0908.1599 Disordered Systems and Neural Networks +0908.1675 Strongly Correlated Electrons +0909.0719 Statistical Mechanics +0909.3710 Phenomenology +0909.5052 Mesoscale and Nanoscale Physics +0910.0052 Quantum Gases +0910.0410 Formal Languages and Automata Theory +0910.0491 Phenomenology +0910.1147 Strongly Correlated Electrons +0910.2043 Molecular Networks +0910.2805 Quantum Gases +0910.4483 Algebraic Geometry +0911.0103 Complex Variables +0911.0213 Soft Condensed Matter +0911.2308 Physics and Society +0911.2691 Strongly Correlated Electrons +0911.4268 Commutative Algebra +0911.5236 +0912.0527 Superconductivity +0912.1125 Operator Algebras +0912.3474 +0912.4320 Phenomenology +0912.5336 Commutative Algebra +1001.0289 Algebraic Topology +1001.0768 Phenomenology +1001.0816 Superconductivity +1001.0983 High Energy Astrophysical Phenomena +1001.1078 Algebraic Topology +1001.3758 Fluid Dynamics +1001.4050 Mesoscale and Nanoscale Physics +1001.4247 Rings and Algebras +1001.4834 Materials Science +1002.2073 Computational Physics +1002.3291 Atmospheric and Oceanic Physics +1002.3470 Disordered Systems and Neural Networks +1002.4232 Lattice +1002.4557 Phenomenology +1003.0057 Algebraic Geometry +1003.0582 Strongly Correlated Electrons +1003.1310 Classical Physics +1003.1603 Combinatorics +1003.3107 +1003.3342 Materials Science +1003.4492 Phenomenology +1003.5384 Cryptography and Security +1003.6076 Solar and Stellar Astrophysics +1004.2774 Cosmology and Nongalactic Astrophysics +1004.3002 Quantum Gases +1004.4819 Phenomenology +1004.4859 Theory +1004.5248 Materials Science +1005.0109 Cryptography and Security +1005.0474 Rings and Algebras +1005.0916 Astrophysics of Galaxies +1005.1087 Commutative Algebra +1005.1193 Computation +1005.1296 Astrophysics of Galaxies +1005.1301 Operator Algebras +1005.1305 Operator Algebras +1005.1306 Probability +1005.1307 Computation +1005.1315 Differential Geometry +1005.1316 Cosmology and Nongalactic Astrophysics +1005.1320 Mathematical Software +1005.1326 General Finance +1005.1327 Logic in Computer Science +1005.1328 Combinatorics +1005.1330 Superconductivity +1005.1337 Chemical Physics +1005.1347 Theory +1005.1348 +1005.1349 Information Theory +1005.1350 Theory +1005.1352 Statistics Theory +1005.1355 Algebraic Geometry +1005.1358 Pricing of Securities +1005.1364 Information Theory +1005.1365 Information Theory +1005.1376 Theory +1005.1387 +1005.1388 +1005.1391 Information Theory +1005.1392 Combinatorics +1005.1394 Cosmology and Nongalactic Astrophysics +1005.1406 Chaotic Dynamics +1005.1409 Metric Geometry +1005.1419 Differential Geometry +1005.1422 Classical Analysis and ODEs +1005.1425 Computational Complexity +1005.1426 +1005.1431 Algebraic Geometry +1005.1432 +1005.1440 Machine Learning +1005.1442 +1005.1447 Functional Analysis +1005.1449 Algebraic Geometry +1005.1463 Number Theory +1005.1464 Strongly Correlated Electrons +1005.1465 Cell Behavior +1005.1466 Software Engineering +1005.1471 Computer Vision and Pattern Recognition +1005.1479 Fluid Dynamics +1005.1482 Complex Variables +1005.1486 Biological Physics +1005.1492 Classical Analysis and ODEs +1005.1495 Analysis of PDEs +1005.1497 Numerical Analysis +1005.1510 Materials Science +1005.1513 Group Theory +1005.1514 Genomics +1005.1518 Artificial Intelligence +1005.1521 Combinatorics +1005.1524 Information Theory +1005.1525 Statistical Mechanics +1005.1527 Space Physics +1005.1542 Soft Condensed Matter +1005.1543 Analysis of PDEs +1005.1546 Fluid Dynamics +1005.1548 Soft Condensed Matter +1005.1549 Superconductivity +1005.1551 Soft Condensed Matter +1005.1555 Combinatorics +1005.1556 Instrumentation and Detectors +1005.1558 Cosmology and Nongalactic Astrophysics +1005.1568 Strongly Correlated Electrons +1005.1569 Instrumentation and Methods for Astrophysics +1005.1587 Soft Condensed Matter +1005.1594 Information Theory +1005.1605 +1005.1612 Solar and Stellar Astrophysics +1005.1613 Cosmology and Nongalactic Astrophysics +1005.1614 +1005.1616 General Physics +1005.1622 Dynamical Systems +alg-geom/9608007 Algebraic Geometry +cond-mat/0004048 Statistical Mechanics +cond-mat/0107238 Statistical Mechanics +cond-mat/0212192 Soft Condensed Matter +cond-mat/0302104 Strongly Correlated Electrons +cond-mat/0304475 Statistical Mechanics +cond-mat/0406481 Other Condensed Matter +cond-mat/0408074 Superconductivity +cond-mat/0505483 Statistical Mechanics +cond-mat/0603259 Strongly Correlated Electrons +cond-mat/0606436 Statistical Mechanics +cond-mat/0609139 Materials Science +cond-mat/0703490 Statistical Mechanics +hep-th/0211055 Theory +hep-th/0302227 Theory +math-ph/0202028 +math-ph/9902021 +math/0105129 Algebraic Geometry +math/0402214 Dynamical Systems +math/0502364 Symplectic Geometry +math/0504172 History and Overview +math/0608501 Complex Variables +math/0703028 Differential Geometry +nucl-th/0609001 +quant-ph/0311196 +quant-ph/0605219 +0705.3567 Strongly Correlated Electrons +0705.4516 Statistics Theory +0706.0154 +0707.3794 Statistics Theory +0710.2410 Lattice +0710.2965 Lattice +0710.5746 +0801.0619 Theory +0802.0217 +0802.1417 General Mathematics +0805.0437 Algebraic Geometry +0805.3757 Other Quantitative Biology +0806.0777 Algebraic Geometry +0806.3122 Theory +0806.3410 +0807.0038 Optimization and Control +0807.5121 Classical Analysis and ODEs +0808.3513 Functional Analysis +0809.2974 Probability +0809.3583 +0810.3735 +0811.2503 Instrumentation and Detectors +0811.4314 +0811.4460 Differential Geometry +0811.4760 +0812.0416 +0812.0454 Instrumentation and Detectors +0812.0531 Instrumentation and Detectors +0812.0685 Instrumentation and Detectors +0812.1982 Theory +0812.2217 Data Analysis, Statistics and Probability +0812.3759 +0812.4619 Quantitative Methods +0812.5036 Instrumentation and Detectors +0901.0049 Theory +0902.2523 Theory +0902.3139 +0902.3493 Cosmology and Nongalactic Astrophysics +0903.3883 Instrumentation and Detectors +0903.4188 Phenomenology +0904.1434 Astrophysics of Galaxies +0904.2581 Data Analysis, Statistics and Probability +0904.4077 Astrophysics of Galaxies +0904.4729 +0904.4747 Algebraic Geometry +0905.1115 High Energy Astrophysical Phenomena +0905.1365 +0905.2065 General Mathematics +0905.2330 Algebraic Geometry +0905.4338 +0906.1385 +0906.2411 Cosmology and Nongalactic Astrophysics +0906.4439 Chaotic Dynamics +0906.5188 Lattice +0907.1085 Astrophysics of Galaxies +0907.2392 Cosmology and Nongalactic Astrophysics +0907.3753 Cosmology and Nongalactic Astrophysics +0907.4177 Phenomenology +0908.3120 Mesoscale and Nanoscale Physics +0908.3467 +0908.3557 Strongly Correlated Electrons +0908.4246 +0909.0780 +0909.0834 Quantum Gases +0909.1502 Mesoscale and Nanoscale Physics +0909.5301 +0909.5314 +0909.5494 +0910.0342 +0910.0345 +0910.0754 Phenomenology +0910.0856 +0910.0959 +0910.1388 Mesoscale and Nanoscale Physics +0910.1395 Phenomenology +0910.1672 +0910.2495 Biological Physics +0910.2754 +0910.3372 Databases +0910.3577 Superconductivity +0910.4271 +0910.4421 +0910.5124 +0910.5675 +0911.0516 +0911.0521 Phenomenology +0911.2576 Analysis of PDEs +0911.2685 Materials Science +0911.3321 Quantum Algebra +0911.4194 Phenomenology +0911.4283 Lattice +0911.4597 Theory +0911.4616 +0911.4662 Phenomenology +0911.5033 Soft Condensed Matter +0911.5519 Probability +1001.0055 Statistical Mechanics +1001.0095 Combinatorics +1001.1245 Solar and Stellar Astrophysics +1001.4509 Theory +1001.5096 Astrophysics of Galaxies +1002.1426 Strongly Correlated Electrons +1002.2114 Probability +1002.2377 +1002.4665 Computation and Language +1002.4749 Mesoscale and Nanoscale Physics +1002.4897 Materials Science +1003.0094 +1003.0226 +1003.0414 Solar and Stellar Astrophysics +1003.0668 Theory +1003.0686 Cosmology and Nongalactic Astrophysics +1003.0691 Learning +1003.0696 Learning +1003.0697 Classical Analysis and ODEs +1003.0706 Optics +1003.0709 Risk Management +1003.0714 Logic +1003.0717 +1003.0721 Analysis of PDEs +1003.0724 Instrumentation and Methods for Astrophysics +1003.0729 Information Theory +1003.0731 Algebraic Geometry +1003.0735 Information Theory +1003.0736 +1003.0738 Optics +1003.0739 Combinatorics +1003.0742 Algebraic Geometry +1003.0746 Artificial Intelligence +1003.0750 Biological Physics +1003.0752 Number Theory +1003.0762 Analysis of PDEs +1003.0767 Differential Geometry +1003.0770 Probability +1003.0773 Logic in Computer Science +1003.0774 Group Theory +1003.0776 Computer Vision and Pattern Recognition +1003.0777 Number Theory +1003.0783 Machine Learning +1003.0788 Logic in Computer Science +1003.0791 +1003.0795 Theory +1003.0802 Logic in Computer Science +1003.0803 Dynamical Systems +1003.0804 Methodology +1003.0826 Algebraic Geometry +1003.0830 Soft Condensed Matter +1003.0842 Mesoscale and Nanoscale Physics +1003.0852 Classical Analysis and ODEs +1003.0867 Phenomenology +1003.0870 Functional Analysis +1003.0872 Optics +1003.0887 Machine Learning +1003.0888 Information Theory +cond-mat/0507557 Materials Science +hep-lat/0001017 Lattice +hep-lat/0001018 Lattice +hep-lat/0007028 Lattice +hep-lat/0101013 Lattice +hep-lat/0102013 Lattice +hep-lat/0106023 Lattice +hep-lat/0109027 Lattice +hep-lat/0110081 Lattice +hep-lat/0111029 Lattice +hep-lat/0111060 Lattice +hep-lat/0112027 Lattice +hep-lat/0112034 Lattice +hep-lat/0112042 Lattice +hep-lat/0201004 Lattice +hep-lat/0201005 Lattice +hep-lat/0202011 Lattice +hep-lat/0202022 Lattice +hep-lat/0203001 Lattice +hep-lat/0203008 Lattice +hep-lat/0206010 Lattice +hep-lat/0208037 Lattice +hep-lat/0209129 Lattice +hep-lat/0209155 Lattice +hep-lat/0209156 Lattice +hep-lat/0210041 Lattice +hep-lat/0210042 Lattice +hep-lat/0210043 Lattice +hep-lat/0301018 Lattice +hep-lat/0304003 Lattice +hep-lat/0309119 Lattice +hep-lat/0309154 Lattice +hep-lat/0309186 Lattice +hep-lat/0311014 Lattice +hep-lat/0311030 Lattice +hep-lat/0312035 Lattice +hep-lat/0401029 Lattice +hep-lat/0402016 Lattice +hep-lat/0402036 Lattice +hep-lat/0403002 Lattice +hep-lat/0403019 Lattice +hep-lat/0405015 Lattice +hep-lat/0405026 Lattice +hep-lat/0407039 Lattice +hep-lat/0408032 Lattice +hep-lat/0410045 Lattice +hep-lat/0412022 Lattice +hep-lat/0501016 Lattice +hep-lat/0501019 Lattice +hep-lat/0510103 Lattice +hep-lat/0511007 Lattice +hep-lat/0601010 Lattice +hep-lat/0604022 Lattice +hep-lat/0611028 Lattice +hep-lat/0611029 Lattice +hep-lat/9705021 Lattice +hep-ph/0101188 Phenomenology +hep-ph/0208063 Phenomenology +hep-ph/0303176 Phenomenology +hep-ph/0412380 Phenomenology +hep-ph/0503006 Phenomenology +hep-ph/9304315 Phenomenology +hep-ph/9309263 Phenomenology +hep-ph/9309276 Phenomenology +hep-ph/9312243 Phenomenology +hep-ph/9403223 Phenomenology +hep-ph/9403252 Phenomenology +hep-ph/9405306 Phenomenology +hep-ph/9408233 Phenomenology +hep-ph/9604402 Phenomenology +hep-ph/9608292 Phenomenology +hep-ph/9705298 Phenomenology +hep-ph/9712483 Phenomenology +hep-th/0010161 Theory +hep-th/0509053 Theory +hep-th/0611058 Theory +hep-th/0612283 Theory +hep-th/9303098 Theory +hep-th/9811184 Theory +math/0410004 Combinatorics +math/0503415 Optimization and Control +math/0506496 Number Theory +math/0508266 Statistics Theory +math/0508268 Statistics Theory +math/0509390 Statistics Theory +math/0601631 Statistics Theory +math/0604347 Number Theory +math/0608131 Number Theory +math/0701429 Statistics Theory +math/0703609 Statistics Theory +math/0703625 Number Theory +nucl-th/0001064 +nucl-th/0011005 +nucl-th/0012023 +nucl-th/0101058 +nucl-th/0103073 +nucl-th/0110058 +nucl-th/0111030 +nucl-th/0206004 +nucl-th/0208071 +nucl-th/0301024 +nucl-th/0301049 +nucl-th/0304003 +nucl-th/0304050 +nucl-th/0308039 +nucl-th/0309025 +nucl-th/0403012 +nucl-th/0406030 +nucl-th/0406032 +nucl-th/0408015 +nucl-th/0411065 +nucl-th/0412046 +nucl-th/0503043 +nucl-th/0509093 +nucl-th/0511085 +nucl-th/0604029 +nucl-th/0608039 +nucl-th/0701009 +nucl-th/9511012 +nucl-th/9602012 +nucl-th/9606006 +nucl-th/9610047 +nucl-th/9706070 +nucl-th/9707003 +nucl-th/9801060 +nucl-th/9806088 +nucl-th/9807008 +nucl-th/9807056 +nucl-th/9808076 +nucl-th/9812063 +nucl-th/9901091 +q-bio/0603031 Populations and Evolution +quant-ph/9607025 +0707.4024 General Mathematics +0711.4007 Other Condensed Matter +0712.1275 Trading and Market Microstructure +0712.1483 Trading and Market Microstructure +0712.2070 Atomic Physics +0801.2751 Probability +0804.2705 Statistical Mechanics +0806.0757 Classical Physics +0806.2690 Strongly Correlated Electrons +0808.2716 Geometric Topology +0810.0906 Data Structures and Algorithms +0901.1439 +0905.2128 Differential Geometry +0907.1372 +0907.1879 Quantum Algebra +0907.5605 +0908.0054 Cosmology and Nongalactic Astrophysics +0908.0781 +0908.2515 Geometric Topology +0908.2703 Commutative Algebra +0908.3787 Optimization and Control +0910.4675 Representation Theory +0910.4871 Lattice +0911.0867 Differential Geometry +0911.1830 Number Theory +0911.4025 Algebraic Geometry +0911.4819 Representation Theory +0912.2874 +0912.4189 Populations and Evolution +1001.1167 Combinatorics +1001.3877 Mesoscale and Nanoscale Physics +1002.2119 Differential Geometry +1002.2574 +1002.2929 +1004.0556 Phenomenology +1004.0943 Statistical Mechanics +1004.1723 Representation Theory +1004.3160 Chaotic Dynamics +1004.3866 Differential Geometry +1004.3921 +1006.1672 Mesoscale and Nanoscale Physics +1006.1911 High Energy Astrophysical Phenomena +1006.2612 Strongly Correlated Electrons +1006.3151 Information Theory +1006.4734 Quantum Gases +1006.4993 Spectral Theory +1006.5123 Classical Analysis and ODEs +1006.5664 +1007.1152 Mesoscale and Nanoscale Physics +1007.1477 Functional Analysis +1007.2644 High Energy Astrophysical Phenomena +1007.2716 Quantum Gases +1007.3065 Cosmology and Nongalactic Astrophysics +1007.3882 Algebraic Geometry +1007.3918 Mesoscale and Nanoscale Physics +1007.4204 Mesoscale and Nanoscale Physics +1007.5357 High Energy Astrophysical Phenomena +1007.5521 Strongly Correlated Electrons +1008.0217 Quantum Gases +1008.2946 Mesoscale and Nanoscale Physics +1008.3117 Algebraic Geometry +1009.1182 Statistical Mechanics +1009.2862 Materials Science +1009.3311 Strongly Correlated Electrons +1009.3400 Mesoscale and Nanoscale Physics +1009.4298 +1010.0167 High Energy Astrophysical Phenomena +1010.0996 +1010.2504 +1010.4128 Mesoscale and Nanoscale Physics +1010.5363 Materials Science +1011.2234 Statistics Theory +1011.2805 Superconductivity +1011.3345 Functional Analysis +1011.5015 Networking and Internet Architecture +1011.5207 Strongly Correlated Electrons +1011.5229 +1011.5231 Theory +1011.5237 Functional Analysis +1011.5240 Cell Behavior +1011.5241 Mesoscale and Nanoscale Physics +1011.5242 Cryptography and Security +1011.5244 +1011.5252 +1011.5256 Phenomenology +1011.5257 Complex Variables +1011.5264 Discrete Mathematics +1011.5273 Optics +1011.5280 Analysis of PDEs +1011.5281 Analysis of PDEs +1011.5282 +1011.5283 Cosmology and Nongalactic Astrophysics +1011.5284 Analysis of PDEs +1011.5285 Solar and Stellar Astrophysics +1011.5286 Cosmology and Nongalactic Astrophysics +1011.5289 Discrete Mathematics +1011.5291 Symplectic Geometry +1011.5295 Cryptography and Security +1011.5299 Dynamical Systems +1011.5301 Statistical Mechanics +1011.5305 Number Theory +1011.5310 Other Condensed Matter +1011.5311 Instrumentation and Methods for Astrophysics +1011.5314 Numerical Analysis +1011.5316 Cosmology and Nongalactic Astrophysics +1011.5320 Computational Geometry +1011.5321 Solar and Stellar Astrophysics +1011.5325 Human-Computer Interaction +1011.5326 Networking and Internet Architecture +1011.5329 +1011.5330 Dynamical Systems +1011.5335 Earth and Planetary Astrophysics +1011.5342 Phenomenology +1011.5343 General Finance +1011.5345 Category Theory +1011.5349 Artificial Intelligence +1011.5351 Combinatorics +1011.5353 Cosmology and Nongalactic Astrophysics +1011.5354 Chaotic Dynamics +1011.5357 Differential Geometry +1011.5358 Combinatorics +1011.5359 +1011.5364 Information Retrieval +1011.5368 Phenomenology +1011.5370 Instrumentation and Detectors +1011.5372 Popular Physics +1011.5374 Other Computer Science +1011.5377 Probability +1011.5383 Algebraic Geometry +1011.5389 Software Engineering +1011.5390 General Physics +1011.5391 Dynamical Systems +1011.5396 Applications +1011.5402 Data Analysis, Statistics and Probability +1011.5403 Mesoscale and Nanoscale Physics +1011.5404 Probability +1011.5405 Solar and Stellar Astrophysics +1011.5408 Statistical Mechanics +1011.5416 Algebraic Geometry +1011.5418 General Physics +1011.5421 Mesoscale and Nanoscale Physics +1011.5428 High Energy Astrophysical Phenomena +1011.5430 Chemical Physics +1011.5434 Astrophysics of Galaxies +1011.5435 Human-Computer Interaction +1011.5446 Quantum Algebra +1011.5447 Data Structures and Algorithms +1011.5448 Numerical Analysis +1011.5449 Physics Education +1011.5456 Disordered Systems and Neural Networks +1011.5458 Multimedia +1011.5461 Analysis of PDEs +1011.5465 Analysis of PDEs +1011.5466 Quantitative Methods +1011.5469 Networking and Internet Architecture +1011.5472 Dynamical Systems +1011.5479 Complex Variables +1011.5481 Computational Engineering, Finance, and Science +1011.5497 Number Theory +math/0310019 Geometric Topology +math/0612401 Dynamical Systems +physics/0512160 Classical Physics +0704.1949 Statistical Mechanics +0707.2057 Probability +0802.3485 Probability +0803.2183 Algebraic Geometry +0804.0576 Algebraic Geometry +0806.1729 Symplectic Geometry +0807.3174 Materials Science +0809.4277 +0810.5428 Information Retrieval +0811.4412 Materials Science +0901.4110 +0902.0165 Pattern Formation and Solitons +0902.0633 Differential Geometry +0902.4652 Mesoscale and Nanoscale Physics +0903.4761 +0904.1759 General Mathematics +0905.2377 Chaotic Dynamics +0906.1758 Strongly Correlated Electrons +0906.5049 +0907.0549 Materials Science +0907.1546 Materials Science +0907.2328 Combinatorics +0907.3522 +0907.3751 Strongly Correlated Electrons +0907.4350 Materials Science +0908.1148 +0908.3231 Networking and Internet Architecture +0909.0740 Soft Condensed Matter +0909.0759 Strongly Correlated Electrons +0909.2336 Computational Engineering, Finance, and Science +0909.4230 +0910.0105 Algebraic Geometry +0910.4501 +0910.5047 General Topology +0911.0904 Mesoscale and Nanoscale Physics +0911.2615 Materials Science +0911.4722 Mesoscale and Nanoscale Physics +0911.4851 Algebraic Geometry +0911.5601 Statistical Mechanics +0912.1526 +0912.1992 Atomic Physics +0912.2066 Statistical Mechanics +0912.3629 Quantum Gases +0912.4685 General Physics +0912.5512 Probability +1001.0266 Strongly Correlated Electrons +1001.2190 Information Theory +1001.2868 Optics +1001.3131 +1001.4217 Differential Geometry +1001.4407 Materials Science +1001.4607 Strongly Correlated Electrons +1002.0121 +1002.0638 +1002.0970 Mesoscale and Nanoscale Physics +1002.1217 Differential Geometry +1002.1888 Materials Science +1002.2070 Optics +1002.3315 Machine Learning +1002.4243 Algebraic Geometry +1002.4542 Mesoscale and Nanoscale Physics +1002.4858 Complex Variables +1003.1840 Differential Geometry +1004.1685 High Energy Astrophysical Phenomena +1004.3926 Superconductivity +1004.4576 Superconductivity +1004.4731 Strongly Correlated Electrons +1004.4943 Plasma Physics +1004.5289 Probability +1004.5495 Networking and Internet Architecture +1004.5512 Cryptography and Security +1005.0198 Databases +1005.0201 Databases +1005.0203 Analysis of PDEs +1005.0204 Analysis of PDEs +1005.0205 Number Theory +1005.0206 Analysis of PDEs +1005.0212 Databases +1005.0213 Databases +1005.0214 Databases +1005.0218 Databases +1005.0219 Databases +1005.0220 Databases +1005.0221 General Finance +1005.0222 Representation Theory +1005.0224 Databases +1005.0446 Analysis of PDEs +1005.0469 High Energy Astrophysical Phenomena +1005.0504 Biological Physics +1005.0518 Logic in Computer Science +1005.0519 Computational Complexity +1005.0522 Logic in Computer Science +1005.0653 Logic in Computer Science +1005.0835 Logic in Computer Science +1005.1150 Representation Theory +1005.1195 Distributed, Parallel, and Cluster Computing +1005.1724 Soft Condensed Matter +1005.1729 Analysis of PDEs +1005.2074 General Mathematics +1005.2107 Quantitative Methods +1005.2378 Phenomenology +1005.2815 Artificial Intelligence +1005.2951 Number Theory +1005.2979 Portfolio Management +1005.3179 Mesoscale and Nanoscale Physics +1005.3185 Graphics +1005.3187 Probability +1005.3231 Probability +1005.3311 High Energy Astrophysical Phenomena +1005.3323 Solar and Stellar Astrophysics +1005.3333 Fluid Dynamics +1005.3335 Combinatorics +1005.3336 Analysis of PDEs +1005.3338 Information Theory +1005.3339 Instrumentation and Methods for Astrophysics +1005.3344 Materials Science +1005.3355 +1005.3357 Cosmology and Nongalactic Astrophysics +1005.3358 Instrumentation and Methods for Astrophysics +1005.3360 Cosmology and Nongalactic Astrophysics +1005.3361 Commutative Algebra +1005.3382 Analysis of PDEs +1005.3383 Algebraic Topology +1005.3384 Numerical Analysis +1005.3390 Neural and Evolutionary Computing +1005.3391 Cryptography and Security +1005.3393 Dynamical Systems +1005.3400 Analysis of PDEs +1005.3402 Differential Geometry +1005.3408 Plasma Physics +1005.3412 Combinatorics +1005.3413 Fluid Dynamics +1005.3414 Earth and Planetary Astrophysics +1005.3424 Analysis of PDEs +1005.3436 +1005.3437 Theory +1005.3438 Mesoscale and Nanoscale Physics +1005.3440 Analysis of PDEs +1005.3442 Plasma Physics +1005.3447 Geometric Topology +1005.3449 +1005.3450 Operating Systems +1005.3455 Theory +1005.3458 Solar and Stellar Astrophysics +1005.3459 Analysis of PDEs +1005.3461 Solar and Stellar Astrophysics +1005.3466 Dynamical Systems +1005.3469 Classical Analysis and ODEs +1005.3473 Data Structures and Algorithms +1005.3483 Probability +1005.3484 General Physics +1005.3486 Information Theory +1005.3487 +1005.3490 Phenomenology +1005.3494 Number Theory +1005.3495 Strongly Correlated Electrons +1005.3496 Solar and Stellar Astrophysics +1005.3497 Theory +1005.3499 Experiment +1005.3501 +1005.3502 Artificial Intelligence +1005.3504 Representation Theory +1005.3507 Physics and Society +1005.3509 Lattice +1005.3510 Adaptation and Self-Organizing Systems +1005.3514 Theory +1005.3515 Commutative Algebra +1005.3516 Dynamical Systems +1005.3524 Functional Analysis +1005.3530 Functional Analysis +1005.3531 +1005.3532 Functional Analysis +1005.3535 Trading and Market Microstructure +1005.3536 Analysis of PDEs +cond-mat/0001083 Statistical Mechanics +cond-mat/0011103 Statistical Mechanics +cond-mat/0012490 Statistical Mechanics +cond-mat/0501277 Statistical Mechanics +cond-mat/0505459 Materials Science +cond-mat/0509320 Statistical Mechanics +cond-mat/9810241 Statistical Mechanics +math/0404375 Number Theory +math/0609008 Commutative Algebra +quant-ph/0503229 +0807.3056 Quantum Algebra +0902.4726 Complex Variables +0904.4184 +0908.0323 Computational Physics +0912.0564 Strongly Correlated Electrons +1004.5010 Data Structures and Algorithms +1004.5275 Populations and Evolution +1005.4350 Mesoscale and Nanoscale Physics +1006.4528 Optics +1007.3626 Physics and Society +1008.3841 +1009.0041 Materials Science +1009.0935 +1009.1315 Combinatorics +1009.1713 Mesoscale and Nanoscale Physics +1009.4625 Cryptography and Security +1009.4747 Instrumentation and Detectors +1009.4852 Analysis of PDEs +1009.5490 Differential Geometry +1010.0631 Optics +1010.1751 Probability +1010.3038 Chemical Physics +1010.3059 Neurons and Cognition +1010.3097 Phenomenology +1010.4816 Cryptography and Security +1010.4986 Networking and Internet Architecture +1010.6092 Algebraic Topology +1010.6096 Systems and Control +1010.6263 Instrumentation and Methods for Astrophysics +1010.6293 Statistical Mechanics +1011.0063 Fluid Dynamics +1011.0298 Information Theory +1011.0412 Analysis of PDEs +1011.0640 Computer Vision and Pattern Recognition +1011.1236 History and Overview +1011.1531 Cryptography and Security +quant-ph/0112046 +0707.1858 Materials Science +0708.3651 Strongly Correlated Electrons +0709.2379 Strongly Correlated Electrons +0709.2387 Strongly Correlated Electrons +0711.1951 Algebraic Geometry +0712.2069 Algebraic Topology +0801.0056 Number Theory +0801.2128 +0803.0204 Geophysics +0803.1114 Geophysics +0805.2903 Phenomenology +0807.0121 +0808.3116 Superconductivity +0809.4891 Differential Geometry +0810.4357 Optimization and Control +0811.2900 Theory +0811.3212 Strongly Correlated Electrons +0812.1808 Strongly Correlated Electrons +0901.2639 Classical Analysis and ODEs +0902.0975 Strongly Correlated Electrons +0903.0780 Statistical Mechanics +0903.0847 Other Condensed Matter +0903.1665 Other Condensed Matter +0903.4276 Category Theory +0903.4893 Phenomenology +0905.2726 +0906.1676 Classical Analysis and ODEs +0906.2330 Quantum Algebra +0907.4094 Superconductivity +0908.2822 Exactly Solvable and Integrable Systems +0909.4572 Strongly Correlated Electrons +0911.5471 Probability +0912.1550 Superconductivity +0912.2686 Cosmology and Nongalactic Astrophysics +1001.0479 Mesoscale and Nanoscale Physics +1001.1162 +1001.1658 Information Theory +1001.2519 Statistical Mechanics +1002.1087 Optics +1004.2245 +1004.4851 Theory +1004.5528 +1005.0141 High Energy Astrophysical Phenomena +1005.1407 +1006.0167 Strongly Correlated Electrons +1006.1823 Theory +1006.2075 Chemical Physics +1006.2518 Phenomenology +1006.4789 Theory +1006.5063 Phenomenology +1006.5651 Superconductivity +1007.0446 +1007.1985 Theory +1007.2491 +1007.3217 Statistical Mechanics +1007.3447 Cell Behavior +1008.0990 Instrumentation and Detectors +1008.3209 Mesoscale and Nanoscale Physics +1008.4140 High Energy Astrophysical Phenomena +1009.0230 Algebraic Geometry +1009.1307 Strongly Correlated Electrons +1009.2693 Probability +1009.4511 Statistical Mechanics +1010.0469 Astrophysics of Galaxies +1010.2163 +1010.2956 Optimization and Control +1010.4207 Learning +1010.4977 +1010.5321 Metric Geometry +1010.5863 Mesoscale and Nanoscale Physics +1011.0578 Plasma Physics +1011.0754 Strongly Correlated Electrons +1011.1945 Combinatorics +1011.2834 Information Theory +1011.3005 +1011.3038 +1011.3107 Probability +1011.3396 Statistics Theory +1011.3503 Dynamical Systems +1011.3506 Dynamical Systems +1011.3513 Cosmology and Nongalactic Astrophysics +1011.3518 Mesoscale and Nanoscale Physics +1011.3521 General Mathematics +1011.3523 Cosmology and Nongalactic Astrophysics +1011.3534 Data Structures and Algorithms +1011.3543 Statistical Mechanics +1011.3544 Probability +1011.3546 Dynamical Systems +1011.3547 Complex Variables +1011.3550 Information Theory +1011.3555 Astrophysics of Galaxies +1011.3556 Cosmology and Nongalactic Astrophysics +1011.3559 Representation Theory +1011.3560 +1011.3566 Combinatorics +1011.3581 Logic +1011.3583 Distributed, Parallel, and Cluster Computing +1011.3584 Mesoscale and Nanoscale Physics +1011.3586 General Topology +1011.3592 Geophysics +1011.3595 Artificial Intelligence +1011.3597 Combinatorics +1011.3599 Pricing of Securities +1011.3601 Probability +1011.3602 Mesoscale and Nanoscale Physics +1011.3603 Mesoscale and Nanoscale Physics +1011.3605 +1011.3607 Logic +1011.3608 Optics +1011.3609 +1011.3611 Materials Science +1011.3612 Applications +1011.3614 Classical Analysis and ODEs +1011.3626 Applications +1011.3628 Solar and Stellar Astrophysics +1011.3638 Applications +1011.3642 Probability +1011.3644 Phenomenology +1011.3645 +1011.3649 Theory +1011.3650 Combinatorics +1011.3651 Theory +1011.3654 Combinatorics +1011.3658 Disordered Systems and Neural Networks +1011.3666 Populations and Evolution +1011.3671 Exactly Solvable and Integrable Systems +1011.3674 Populations and Evolution +1011.3675 Spectral Theory +1011.3676 Pattern Formation and Solitons +1011.3688 Mesoscale and Nanoscale Physics +1011.3689 Classical Physics +1011.3693 Solar and Stellar Astrophysics +1011.3696 Algebraic Geometry +1011.3697 Algebraic Geometry +1011.3698 Algebraic Geometry +1011.3703 Differential Geometry +1011.3704 Algebraic Geometry +1011.3705 Combinatorics +1011.3708 Discrete Mathematics +1011.3709 +1011.3713 Optics +1011.3714 Algebraic Geometry +1011.3716 Geophysics +1011.3718 Cryptography and Security +1011.3719 +1011.3725 Methodology +1011.3728 Learning +1011.3730 Astrophysics of Galaxies +1011.3738 +1011.3740 Representation Theory +1011.3742 Dynamical Systems +1011.3748 High Energy Astrophysical Phenomena +1011.3752 High Energy Astrophysical Phenomena +1011.3764 High Energy Astrophysical Phenomena +1011.3769 Differential Geometry +1011.3773 Mesoscale and Nanoscale Physics +1011.3777 Complex Variables +1011.3778 History and Philosophy of Physics +1011.3779 Algebraic Geometry +1011.3782 Classical Analysis and ODEs +1011.3785 Biological Physics +1011.3789 Instrumentation and Methods for Astrophysics +1011.3800 Representation Theory +1011.3805 Applications +1011.3808 Solar and Stellar Astrophysics +1011.3811 +1011.3812 Information Theory +astro-ph/0502469 +cond-mat/0002140 +cond-mat/0112268 Materials Science +cond-mat/0310612 Strongly Correlated Electrons +cond-mat/0512619 Strongly Correlated Electrons +cond-mat/0612605 Superconductivity +cond-mat/0612688 Other Condensed Matter +cond-mat/0702309 Strongly Correlated Electrons +cond-mat/9507124 +cond-mat/9807127 Strongly Correlated Electrons +math-ph/0611003 +math/0510229 Logic +math/0605668 Differential Geometry +0704.0836 Combinatorics +0705.1260 +0707.1129 General Physics +0708.3489 Spectral Theory +0709.2065 Artificial Intelligence +0709.2802 General Physics +0709.4215 Representation Theory +0710.5092 General Physics +0711.1366 General Physics +0801.0419 +0801.2501 Data Analysis, Statistics and Probability +0801.4928 Combinatorics +0802.3305 Algebraic Geometry +0804.3835 Machine Learning +0805.1634 Number Theory +0805.2504 Representation Theory +0805.2661 Theory +0805.3258 +0805.4331 +0806.1913 +0807.0093 Learning +0807.0507 +0807.0756 Algebraic Geometry +0807.2832 Probability +0807.4748 +0808.0225 +0809.1213 +0809.1373 +0809.2076 +0809.4838 Optimization and Control +0810.0392 Probability +0810.2489 Combinatorics +0810.2597 Algebraic Geometry +0810.2910 Instrumentation and Detectors +0810.3382 +0810.5160 Symplectic Geometry +0811.1554 +0811.3668 +0901.0486 Solar and Stellar Astrophysics +0901.3973 Classical Analysis and ODEs +0901.4860 Theory +0902.0895 Cosmology and Nongalactic Astrophysics +0902.4583 Probability +0903.0515 Analysis of PDEs +0903.1373 Combinatorics +0903.1699 Analysis of PDEs +0903.2161 Phenomenology +0903.2665 Complex Variables +0904.0473 Number Theory +0904.0837 Geometric Topology +0904.1401 Probability +0905.1150 Probability +0905.4398 +0906.3628 Commutative Algebra +0907.1221 Pricing of Securities +0907.1975 Information Theory +0907.2976 Instrumentation and Detectors +0908.4202 Instrumentation and Detectors +0909.1231 Combinatorics +0909.1698 Theory +0910.1195 Theory +0910.4249 Theory +0910.4272 Cosmology and Nongalactic Astrophysics +0911.1958 Phenomenology +0911.3675 Geometric Topology +0911.3986 +0911.4832 Mesoscale and Nanoscale Physics +0911.5618 Phenomenology +0912.0061 Group Theory +0912.0225 +0912.1998 +1001.0666 Instrumentation and Detectors +1001.1289 Theory +1001.2417 Soft Condensed Matter +1001.2460 Theory +1001.3608 Theory +1002.0976 Classical Analysis and ODEs +1002.1597 Phenomenology +1002.3018 Combinatorics +1002.3119 +1003.0131 Mesoscale and Nanoscale Physics +1003.0615 +1003.2103 Physics and Society +1003.2730 Phenomenology +1003.2769 Theory +1003.2798 Quantum Gases +1003.2961 High Energy Astrophysical Phenomena +1003.3401 Phenomenology +1003.3634 Group Theory +1003.4031 Mesoscale and Nanoscale Physics +1003.4092 Functional Analysis +1003.4483 Logic +1003.5757 High Energy Astrophysical Phenomena +1004.0853 Algebraic Geometry +1004.0932 Analysis of PDEs +1004.1583 Phenomenology +1004.2991 Probability +1004.3041 Numerical Analysis +1004.3043 Probability +1004.3084 Cosmology and Nongalactic Astrophysics +1004.3541 Theory +1004.4376 Geometric Topology +1004.4582 Statistical Mechanics +1004.4591 Solar and Stellar Astrophysics +1005.2505 Probability +1005.2530 Fluid Dynamics +1005.3075 Mesoscale and Nanoscale Physics +1005.4072 Theory +1005.4230 +1005.5335 Solar and Stellar Astrophysics +1005.5680 Differential Geometry +1005.5708 Solar and Stellar Astrophysics +1006.1197 Phenomenology +1006.1675 Theory +1006.2323 Phenomenology +1006.2341 Theory +1006.2763 Earth and Planetary Astrophysics +1006.3033 Learning +1006.3067 +1006.3859 Cosmology and Nongalactic Astrophysics +1006.4369 Theory +1006.4457 Theory +1006.5464 Theory +1007.1918 Phenomenology +1007.1981 Theory +1007.2068 Theory +1007.2270 Soft Condensed Matter +1007.2401 Distributed, Parallel, and Cluster Computing +1007.2499 +1007.2572 +1007.2725 +1007.2735 Solar and Stellar Astrophysics +1007.3575 Mesoscale and Nanoscale Physics +1007.3634 Theory +1007.4015 Phenomenology +1007.4088 Quantum Gases +1007.4384 Theory +1007.4569 Superconductivity +1007.5061 Quantum Gases +1007.5166 Strongly Correlated Electrons +1008.0164 Phenomenology +1008.0405 Phenomenology +1008.0782 +1008.1062 Theory +1008.1236 Metric Geometry +1008.1310 Fluid Dynamics +1008.1465 Chaotic Dynamics +1008.2257 Phenomenology +1008.2863 Strongly Correlated Electrons +1008.2955 +1008.3101 Theory +1008.3169 Computation and Language +1008.3570 Disordered Systems and Neural Networks +1008.4053 Mesoscale and Nanoscale Physics +1008.4238 +1008.4855 +1008.4914 Theory +1009.0198 Theory +1009.0302 Mesoscale and Nanoscale Physics +1009.0543 Theory +1009.0999 Solar and Stellar Astrophysics +1009.1311 Theory +1009.1574 Quantum Gases +1009.2236 Theory +1009.2341 Theory +1009.2579 Spectral Theory +1009.4093 +1009.4113 Strongly Correlated Electrons +1009.4133 Theory +1009.4140 Phenomenology +1009.4530 Astrophysics of Galaxies +1009.5023 Cosmology and Nongalactic Astrophysics +1009.5095 Biological Physics +1009.5547 Optics +1010.2156 Rings and Algebras +1010.2269 Number Theory +1010.2729 Mesoscale and Nanoscale Physics +1010.3791 Algebraic Geometry +1010.4081 Statistical Mechanics +1010.4440 Number Theory +1010.5496 Neurons and Cognition +1010.5771 Physics and Society +1010.5889 Instrumentation and Methods for Astrophysics +1011.0213 High Energy Astrophysical Phenomena +1011.0356 K-Theory and Homology +1011.0447 Logic in Computer Science +1011.0667 Classical Analysis and ODEs +1011.0932 Astrophysics of Galaxies +1011.1402 +1011.3417 Soft Condensed Matter +1011.3636 Algebraic Geometry +1011.3810 Combinatorics +1011.4183 Probability +1011.4510 Cosmology and Nongalactic Astrophysics +1011.4975 Geophysics +1011.5066 Analysis of PDEs +1011.5290 Mesoscale and Nanoscale Physics +1011.5302 Number Theory +1011.5334 Neurons and Cognition +1011.5371 Differential Geometry +1011.5547 Functional Analysis +1011.5575 Experiment +1011.5789 +1011.5883 Combinatorics +1011.5892 Differential Geometry +1011.5894 Logic in Computer Science +1011.5913 +1011.5914 Multiagent Systems +1011.5920 Computational Geometry +1011.5925 +1011.5927 Pattern Formation and Solitons +1011.5931 Group Theory +1011.5936 Information Theory +1011.5940 Classical Analysis and ODEs +1011.5941 Combinatorics +1011.5942 Optimization and Control +1011.5943 +1011.5944 +1011.5947 +1011.5951 Artificial Intelligence +1011.5958 Combinatorics +1011.5962 Computer Vision and Pattern Recognition +1011.5964 Numerical Analysis +1011.5966 Computational Complexity +1011.5967 Analysis of PDEs +1011.5971 Discrete Mathematics +1011.5972 Chaotic Dynamics +1011.5975 Algebraic Geometry +1011.5978 General Finance +1011.5984 Algebraic Geometry +1011.5987 Information Theory +1011.5991 Cosmology and Nongalactic Astrophysics +1011.5994 Probability +1011.6000 Representation Theory +1011.6003 Chaotic Dynamics +1011.6007 Algebraic Geometry +1011.6008 Superconductivity +1011.6010 Materials Science +1011.6012 Logic in Computer Science +1011.6018 Combinatorics +1011.6020 Complex Variables +1011.6021 Computational Complexity +1011.6025 Solar and Stellar Astrophysics +1011.6029 Networking and Internet Architecture +1011.6030 Networking and Internet Architecture +1011.6031 Performance +1011.6032 Analysis of PDEs +1011.6033 General Physics +1011.6037 Phenomenology +1011.6041 Analysis of PDEs +1011.6042 Number Theory +1011.6043 Classical Physics +1011.6044 Networking and Internet Architecture +1011.6045 Networking and Internet Architecture +1011.6049 Graphics +1011.6055 Functional Analysis +1011.6063 Solar and Stellar Astrophysics +1011.6065 Probability +1011.6075 Information Theory +1011.6077 Category Theory +1011.6080 Fluid Dynamics +1011.6081 Soft Condensed Matter +1011.6085 Geometric Topology +1011.6088 Optics +1011.6089 Algebraic Geometry +1011.6097 Statistical Finance +1011.6100 Data Structures and Algorithms +1011.6103 Quantum Gases +1011.6105 Probability +1011.6111 General Physics +1011.6117 Pattern Formation and Solitons +1011.6121 Information Theory +1011.6127 Multiagent Systems +1011.6130 Plasma Physics +1011.6136 Populations and Evolution +1011.6139 Statistics Theory +1011.6141 Experiment +1011.6143 Phenomenology +1011.6148 Mesoscale and Nanoscale Physics +1011.6149 Superconductivity +1011.6153 +1011.6161 Statistics Theory +1011.6165 Statistics Theory +1011.6169 Rings and Algebras +1011.6171 Optimization and Control +1011.6174 Solar and Stellar Astrophysics +1011.6175 Instrumentation and Methods for Astrophysics +1011.6180 Networking and Internet Architecture +1011.6186 Rings and Algebras +1011.6187 Data Structures and Algorithms +1011.6189 Instrumentation and Methods for Astrophysics +1011.6190 Solar and Stellar Astrophysics +1011.6191 Metric Geometry +1011.6195 Combinatorics +1011.6197 Rings and Algebras +1011.6198 Classical Analysis and ODEs +1011.6200 Geometric Topology +1011.6207 Chaotic Dynamics +1011.6208 Combinatorics +1011.6210 +1011.6215 +1011.6217 Methodology +1011.6218 Information Theory +1011.6220 Artificial Intelligence +1011.6222 Numerical Analysis +1011.6230 Superconductivity +1011.6232 Networking and Internet Architecture +1011.6234 Materials Science +1011.6238 K-Theory and Homology +1011.6240 Methodology +1011.6242 Combinatorics +1011.6244 Optics +1011.6245 +1011.6248 Optimization and Control +1011.6249 Phenomenology +1011.6251 Methodology +1011.6252 Combinatorics +1011.6254 Astrophysics of Galaxies +1011.6264 Spectral Theory +1011.6266 Social and Information Networks +1011.6267 Data Structures and Algorithms +1011.6290 Soft Condensed Matter +1011.6297 Soft Condensed Matter +1011.6298 Methodology +1011.6300 General Physics +1011.6305 Astrophysics of Galaxies +1011.6310 Instrumentation and Detectors +1011.6324 Functional Analysis +1011.6325 Functional Analysis +1011.6326 Optimization and Control +1011.6331 +1011.6332 Instrumentation and Methods for Astrophysics +1011.6335 Algebraic Geometry +1011.6337 Algebraic Geometry +1011.6343 Geometric Topology +1011.6346 Statistical Mechanics +1011.6349 Analysis of PDEs +1011.6351 Phenomenology +1011.6355 Probability +1011.6358 Symplectic Geometry +astro-ph/9212005 +astro-ph/9303019 +astro-ph/9305011 +astro-ph/9310032 +astro-ph/9312014 +astro-ph/9312045 +astro-ph/9312047 +astro-ph/9405020 +astro-ph/9408104 +astro-ph/9501066 +astro-ph/9502103 +astro-ph/9504052 +astro-ph/9505029 +astro-ph/9506132 +astro-ph/9507116 +astro-ph/9509130 +astro-ph/9509143 +astro-ph/9601131 +astro-ph/9601147 +astro-ph/9602016 +astro-ph/9605119 +astro-ph/9607077 +astro-ph/9607086 +astro-ph/9608122 +astro-ph/9609022 +astro-ph/9609043 +astro-ph/9609173 +astro-ph/9610060 +astro-ph/9701079 +astro-ph/9702193 +astro-ph/9703063 +astro-ph/9704186 +astro-ph/9704203 +astro-ph/9705110 +astro-ph/9706085 +astro-ph/9708162 +astro-ph/9708217 +astro-ph/9709148 +astro-ph/9710124 +astro-ph/9710353 +astro-ph/9711039 +astro-ph/9711094 +astro-ph/9711269 +astro-ph/9712318 +astro-ph/9801034 +astro-ph/9801060 +astro-ph/9801224 +astro-ph/9802231 +astro-ph/9802288 +astro-ph/9804137 +astro-ph/9804196 +astro-ph/9805272 +astro-ph/9806264 +astro-ph/9806281 +astro-ph/9809121 +astro-ph/9811196 +astro-ph/9901033 +astro-ph/9904057 +cond-mat/0408560 Other Condensed Matter +gr-qc/0612174 +gr-qc/0703055 +gr-qc/9412053 +gr-qc/9504032 +gr-qc/9608067 +gr-qc/9611038 +gr-qc/9612019 +gr-qc/9702009 +gr-qc/9810044 +hep-ex/9811040 Experiment +hep-ph/0008294 Phenomenology +hep-ph/0101133 Phenomenology +hep-ph/0102087 Phenomenology +hep-ph/0103032 Phenomenology +hep-ph/0104168 Phenomenology +hep-ph/0104285 Phenomenology +hep-ph/0106244 Phenomenology +hep-ph/0111227 Phenomenology +hep-ph/0202025 Phenomenology +hep-ph/0203208 Phenomenology +hep-ph/0204028 Phenomenology +hep-ph/0204361 Phenomenology +hep-ph/0207163 Phenomenology +hep-ph/0208042 Phenomenology +hep-ph/0208141 Phenomenology +hep-ph/0209143 Phenomenology +hep-ph/0209341 Phenomenology +hep-ph/0212316 Phenomenology +hep-ph/0307037 Phenomenology +hep-ph/0307097 Phenomenology +hep-ph/0308076 Phenomenology +hep-ph/0308120 Phenomenology +hep-ph/0308279 Phenomenology +hep-ph/0310358 Phenomenology +hep-ph/0311049 Phenomenology +hep-ph/0402257 Phenomenology +hep-ph/0402298 Phenomenology +hep-ph/0403257 Phenomenology +hep-ph/0403271 Phenomenology +hep-ph/0404036 Phenomenology +hep-ph/0405305 Phenomenology +hep-ph/0408039 Phenomenology +hep-ph/0408097 Phenomenology +hep-ph/0408228 Phenomenology +hep-ph/0409264 Phenomenology +hep-ph/0501222 Phenomenology +hep-ph/0501234 Phenomenology +hep-ph/0503038 Phenomenology +hep-ph/0503219 Phenomenology +hep-ph/0504047 Phenomenology +hep-ph/0508026 Phenomenology +hep-ph/9205208 Phenomenology +hep-ph/9205216 Phenomenology +hep-ph/9207245 Phenomenology +hep-ph/9402215 Phenomenology +hep-ph/9402295 Phenomenology +hep-ph/9403239 Phenomenology +hep-ph/9409267 Phenomenology +hep-ph/9410384 Phenomenology +hep-ph/9412233 Phenomenology +hep-ph/9503438 Phenomenology +hep-ph/9609370 Phenomenology +hep-ph/9701339 Phenomenology +hep-ph/9704411 Phenomenology +hep-ph/9707333 Phenomenology +hep-ph/9710248 Phenomenology +hep-ph/9710337 Phenomenology +hep-ph/9710431 Phenomenology +hep-ph/9802271 Phenomenology +hep-ph/9802382 Phenomenology +hep-ph/9802424 Phenomenology +hep-ph/9803487 Phenomenology +hep-th/0701092 Theory +hep-th/9405134 Theory +math/0406286 Commutative Algebra +math/0408429 Commutative Algebra +math/0409007 Commutative Algebra +math/0409472 Group Theory +math/0511100 Commutative Algebra +math/0604568 Differential Geometry +math/0604592 Algebraic Topology +nlin/0402043 Cellular Automata and Lattice Gases +nucl-ex/0403005 +nucl-ex/0407021 +nucl-ex/0411052 +nucl-th/0108048 +nucl-th/0206021 +nucl-th/0212015 +nucl-th/0212018 +nucl-th/0307022 +nucl-th/0402014 +nucl-th/0402080 +nucl-th/0403029 +nucl-th/0403042 +nucl-th/0405046 +nucl-th/0409045 +nucl-th/0511089 +q-bio/0408022 Neurons and Cognition +quant-ph/0309065 +quant-ph/0401035 +0705.0190 Algebraic Geometry +0706.3682 Optics +0711.0417 Metric Geometry +0805.2438 Logic in Computer Science +0806.3209 Logic in Computer Science +0809.1644 Logic in Computer Science +0901.3531 Methodology +0902.4561 Analysis of PDEs +0903.4367 Group Theory +0904.4216 Commutative Algebra +0905.2961 +0905.3263 Chaotic Dynamics +0905.4336 Number Theory +0907.1661 High Energy Astrophysical Phenomena +0908.1240 Number Theory +0908.1628 Phenomenology +0910.0950 Probability +0911.3503 Symbolic Computation +0911.5636 Classical Analysis and ODEs +0912.1084 Theory +0912.3513 Neurons and Cognition +0912.3832 Neurons and Cognition +1001.0831 Networking and Internet Architecture +1001.2745 +1001.4832 +1001.4977 Lattice +1002.1694 Phenomenology +1003.0768 Physics and Society +1003.1770 Superconductivity +1003.2299 Solar and Stellar Astrophysics +1003.3190 Theory +1004.0807 +1004.3667 Statistical Mechanics +1005.0481 +1005.2767 Materials Science +1005.4157 Mesoscale and Nanoscale Physics +1006.1469 Number Theory +1006.1751 Superconductivity +1006.2583 Number Theory +1006.3111 Strongly Correlated Electrons +1006.3539 Superconductivity +1006.3716 Statistical Mechanics +1006.4410 Logic +1007.0431 Physics and Society +1007.1363 Spectral Theory +1007.3281 Symplectic Geometry +1007.4290 Numerical Analysis +1007.4548 High Energy Astrophysical Phenomena +1007.4817 Pattern Formation and Solitons +1007.4853 Performance +1007.5369 Analysis of PDEs +1007.5442 Functional Analysis +1007.5515 Phenomenology +1008.0045 Information Theory +1008.0054 Statistics Theory +1008.0114 Geometric Topology +1008.0178 Information Theory +1008.0208 Graphics +1008.0332 Phenomenology +1008.0400 Soft Condensed Matter +1008.0403 Materials Science +1008.0404 Solar and Stellar Astrophysics +1008.0408 Number Theory +1008.0411 Phenomenology +1008.0412 Materials Science +1008.0415 Methodology +1008.0424 +1008.0425 +1008.0438 Experiment +1008.0441 Information Retrieval +1008.0444 Differential Geometry +1008.0449 General Physics +1008.0451 Distributed, Parallel, and Cluster Computing +1008.0454 Solar and Stellar Astrophysics +1008.0464 General Physics +1008.0471 Geophysics +1008.0478 High Energy Astrophysical Phenomena +1008.0483 High Energy Astrophysical Phenomena +1008.0485 Probability +1008.0486 Phenomenology +1008.0488 Mesoscale and Nanoscale Physics +1008.0489 +1008.0490 Analysis of PDEs +1008.0491 Statistical Mechanics +1008.0492 Probability +1008.0494 Chaotic Dynamics +1008.0498 Phenomenology +1008.0499 Complex Variables +1008.0500 Geophysics +1008.0501 Data Structures and Algorithms +1008.0503 Plasma Physics +1008.0506 Phenomenology +1008.0508 Materials Science +1008.0513 Probability +1008.0515 Group Theory +1008.0518 Functional Analysis +1008.0523 Biomolecules +1008.0527 Combinatorics +1008.0528 Learning +1008.0530 Computer Science and Game Theory +1008.0532 Analysis of PDEs +1008.0533 +1008.0534 Spectral Theory +1008.0537 Metric Geometry +1008.0541 Data Structures and Algorithms +1008.0548 Computer Vision and Pattern Recognition +1008.0549 Optimization and Control +1008.0550 Probability +1008.0556 Dynamical Systems +1008.0559 Classical Physics +1008.0560 Analysis of PDEs +1008.0561 High Energy Astrophysical Phenomena +1008.0565 Metric Geometry +1008.0567 Soft Condensed Matter +1008.0570 Fluid Dynamics +1008.0573 Probability +1008.0577 Theory +1008.0579 Phenomenology +1008.0583 Commutative Algebra +1008.0584 Representation Theory +1008.0587 Data Structures and Algorithms +1008.0588 Metric Geometry +1008.0591 +1008.0592 Instrumentation and Detectors +1008.0607 Phenomenology +1008.0610 +1008.0612 Astrophysics of Galaxies +1008.0619 Numerical Analysis +1008.0620 Numerical Analysis +1008.0626 Cosmology and Nongalactic Astrophysics +1008.0627 Functional Analysis +math/0411466 Group Theory +math/0505193 Group Theory +math/0509090 Group Theory +math/0509527 Group Theory +math/0510141 Group Theory +math/0511714 Group Theory +math/0604051 Group Theory +math/0612398 Representation Theory +math/0703192 Group Theory +0710.5146 Soft Condensed Matter +0802.1703 Symplectic Geometry +0806.1231 Information Theory +0809.0160 Theory +0810.2196 Superconductivity +0810.5146 Pricing of Securities +0811.4485 Probability +0812.1991 Phenomenology +0901.4417 Data Structures and Algorithms +0902.4378 Commutative Algebra +0905.2113 Differential Geometry +0905.2455 Geometric Topology +0905.2958 Computer Vision and Pattern Recognition +0906.1955 Complex Variables +0906.3392 Probability +0906.4793 Mesoscale and Nanoscale Physics +0906.5167 Combinatorics +0907.3570 Optics +0908.3923 Tissues and Organs +0910.0090 Group Theory +0910.2389 Exactly Solvable and Integrable Systems +0910.2637 Soft Condensed Matter +0910.4208 Cosmology and Nongalactic Astrophysics +0910.4378 Classical Physics +0911.3215 Superconductivity +0912.4265 Theory +0912.4376 Materials Science +1001.0094 Probability +1001.1819 Data Structures and Algorithms +1001.2140 Cryptography and Security +1002.0080 Spectral Theory +1002.0663 Biological Physics +1002.1464 Logic in Computer Science +1002.1515 +1002.1526 Astrophysics of Galaxies +1002.1926 +1002.2217 +1002.2222 Distributed, Parallel, and Cluster Computing +1002.2224 Computational Physics +1002.2232 High Energy Astrophysical Phenomena +1002.2240 Information Theory +1002.2246 Optimization and Control +1002.2251 Neurons and Cognition +1002.2262 Representation Theory +1002.2269 General Finance +1002.2271 Information Theory +1002.2276 Operator Algebras +1002.2278 Solar and Stellar Astrophysics +1002.2291 Geometric Topology +1002.2294 Networking and Internet Architecture +1002.2295 Mesoscale and Nanoscale Physics +1002.2297 Computers and Society +1002.2310 Space Physics +1002.2313 Machine Learning +1002.2316 Combinatorics +1002.2320 Atmospheric and Oceanic Physics +1002.2321 Mesoscale and Nanoscale Physics +1002.2325 Algebraic Geometry +1002.2327 Classical Analysis and ODEs +1002.2328 Analysis of PDEs +1002.2335 Operator Algebras +1002.2338 Solar and Stellar Astrophysics +1002.2340 Atmospheric and Oceanic Physics +1002.2343 Dynamical Systems +1002.2344 Solar and Stellar Astrophysics +1002.2347 Solar and Stellar Astrophysics +1002.2349 Plasma Physics +1002.2352 Rings and Algebras +1002.2353 Cryptography and Security +1002.2354 Analysis of PDEs +1002.2361 Phenomenology +1002.2364 Astrophysics of Galaxies +1002.2366 Dynamical Systems +1002.2368 Algebraic Topology +1002.2370 Materials Science +1002.2373 Analysis of PDEs +1002.2376 Phenomenology +1002.2378 Rings and Algebras +1002.2379 Solar and Stellar Astrophysics +1002.2384 Networking and Internet Architecture +1002.2399 Probability +1002.2402 Computational Physics +1002.2403 Networking and Internet Architecture +1002.2405 General Physics +1002.2408 Computer Vision and Pattern Recognition +1002.2409 Cryptography and Security +1002.2411 Solar and Stellar Astrophysics +1002.2412 Quantitative Methods +1002.2414 Multimedia +1002.2415 Human-Computer Interaction +1002.2416 Cryptography and Security +1002.2418 Computer Vision and Pattern Recognition +1002.2420 Networking and Internet Architecture +1002.2421 Functional Analysis +1002.2423 Cryptography and Security +1002.2425 Learning +0708.0410 +0710.4061 +0802.1956 Algebraic Geometry +0807.4175 +0812.4866 Optimization and Control +0905.2402 Optics +0905.3556 Astrophysics of Galaxies +0905.3793 Statistical Mechanics +0906.4358 Commutative Algebra +0909.5275 Differential Geometry +0911.0377 Differential Geometry +0912.1381 Cosmology and Nongalactic Astrophysics +1001.1448 Commutative Algebra +1002.3280 Rings and Algebras +1002.3881 Probability +1003.0877 Atomic Physics +1003.3006 Phenomenology +1003.4611 Phenomenology +1004.0917 +1004.5178 Methodology +1005.0821 Strongly Correlated Electrons +1005.3161 Algebraic Geometry +1006.4375 Phenomenology +1008.1240 +1008.2025 +1008.3508 Phenomenology +1009.1421 Chemical Physics +1009.5195 Mesoscale and Nanoscale Physics +1009.5301 +1011.2407 Combinatorics +1012.0162 Biological Physics +1012.1371 Fluid Dynamics +1012.4131 Geometric Topology +1012.4236 Functional Analysis +1012.4699 Phenomenology +1012.5302 Theory +1012.5303 Differential Geometry +1012.5312 Theory +1012.5315 Dynamical Systems +1012.5318 Information Theory +1012.5323 Earth and Planetary Astrophysics +1012.5325 Earth and Planetary Astrophysics +1012.5332 Optics +1012.5334 Atomic Physics +1012.5336 Cosmology and Nongalactic Astrophysics +1012.5337 Logic in Computer Science +1012.5339 Information Theory +1012.5340 Information Theory +1012.5346 Commutative Algebra +1012.5348 Cosmology and Nongalactic Astrophysics +1012.5353 Symbolic Computation +1012.5360 Probability +1012.5366 General Physics +1012.5370 Plasma Physics +1012.5372 +1012.5375 +1012.5376 +1012.5385 Phenomenology +1012.5389 Soft Condensed Matter +1012.5390 Methodology +1012.5396 Digital Libraries +1012.5397 Classical Analysis and ODEs +1012.5398 Classical Analysis and ODEs +1012.5401 Geometric Topology +1012.5409 Number Theory +1012.5410 Exactly Solvable and Integrable Systems +1012.5414 Theory +1012.5415 Logic +1012.5416 Algebraic Geometry +1012.5427 General Physics +math/0608469 Combinatorics +math/0611495 Combinatorics +0704.0217 Information Theory +0805.2957 Symplectic Geometry +0806.1889 Other Condensed Matter +0807.0086 Differential Geometry +0809.1162 Mesoscale and Nanoscale Physics +0809.4066 Optics +0809.4861 Symplectic Geometry +0810.1401 Representation Theory +0810.5757 Plasma Physics +0811.0644 Geometric Topology +0811.1459 Mesoscale and Nanoscale Physics +0812.3543 Other Condensed Matter +0902.3058 Other Condensed Matter +0903.1402 +0903.4900 Superconductivity +0905.0129 Biological Physics +0906.0239 Quantum Algebra +0906.2168 +0906.3799 Mesoscale and Nanoscale Physics +0906.4397 Group Theory +0906.5159 Cosmology and Nongalactic Astrophysics +0907.1223 Soft Condensed Matter +0907.2802 Solar and Stellar Astrophysics +0907.4612 Quantum Gases +0907.4680 Molecular Networks +0908.1501 Atomic Physics +0908.2239 Differential Geometry +0908.2559 +0908.2988 Combinatorics +0908.4104 Superconductivity +0909.2169 Mesoscale and Nanoscale Physics +0909.2283 Probability +0909.4831 Mesoscale and Nanoscale Physics +0909.4950 Symbolic Computation +0912.0157 Populations and Evolution +0912.0189 Quantum Gases +0912.3674 Strongly Correlated Electrons +0912.3754 Instrumentation and Methods for Astrophysics +1001.2992 Mesoscale and Nanoscale Physics +1001.3341 +1001.4245 +1002.0630 Quantum Gases +1002.2474 Molecular Networks +1002.2688 Superconductivity +1002.3679 Functional Analysis +1003.1085 Quantum Algebra +1003.2191 Physics and Society +1003.3157 Data Analysis, Statistics and Probability +1003.4708 Phenomenology +1003.5529 +1004.1012 Fluid Dynamics +1004.1122 Computational Physics +1004.1486 Strongly Correlated Electrons +1004.2403 Combinatorics +1004.3295 Cosmology and Nongalactic Astrophysics +1004.3475 +1004.3488 Exactly Solvable and Integrable Systems +1005.2162 Analysis of PDEs +1005.3039 Cosmology and Nongalactic Astrophysics +1005.3954 +1005.4359 Mesoscale and Nanoscale Physics +1005.4415 Instrumentation and Methods for Astrophysics +1005.5383 Statistical Mechanics +1006.0306 Algebraic Geometry +1006.1135 Superconductivity +1006.3216 Cosmology and Nongalactic Astrophysics +1006.4392 Optimization and Control +1007.0424 Analysis of PDEs +1007.0760 Differential Geometry +1007.1611 Networking and Internet Architecture +1007.1763 Theory +1007.2941 Theory +1007.4541 Phenomenology +1007.5407 Other Condensed Matter +1007.5436 Functional Analysis +1008.0295 +1008.0434 +1008.1439 Functional Analysis +1008.1544 Analysis of PDEs +1008.2862 Number Theory +1008.3764 Solar and Stellar Astrophysics +1008.4356 Astrophysics of Galaxies +1008.4358 Instrumentation and Methods for Astrophysics +1008.4362 +1008.4365 Cryptography and Security +1008.4374 Representation Theory +1008.4375 Phenomenology +1008.4376 Materials Science +1008.4381 Other Condensed Matter +1008.4389 Theory +1008.4390 Other Condensed Matter +1008.4398 General Physics +1008.4406 Multimedia +1008.4408 Combinatorics +1008.4410 Physics Education +1008.4412 +1008.4413 Networking and Internet Architecture +1008.4418 Superconductivity +1008.4419 Probability +1008.4427 Lattice +1008.4429 Astrophysics of Galaxies +1008.4431 Algebraic Geometry +1008.4439 Plasma Physics +1008.4442 Soft Condensed Matter +1008.4446 Other Computer Science +1008.4447 Symplectic Geometry +1008.4448 Other Computer Science +1008.4461 Rings and Algebras +1008.4462 Quantum Algebra +1008.4465 Dynamical Systems +1008.4467 Algebraic Geometry +1008.4474 Information Theory +1008.4475 Instrumentation and Methods for Astrophysics +1008.4477 Astrophysics of Galaxies +1008.4484 Instrumentation and Methods for Astrophysics +1008.4485 Commutative Algebra +1008.4488 Materials Science +1008.4493 Soft Condensed Matter +1008.4494 Astrophysics of Galaxies +1008.4504 Methodology +1008.4508 Mesoscale and Nanoscale Physics +1008.4509 Algebraic Geometry +1008.4511 Optics +1008.4513 Superconductivity +1008.4514 +1008.4519 Phenomenology +1008.4530 Exactly Solvable and Integrable Systems +1008.4532 Learning +1008.4543 Phenomenology +1008.4546 Phenomenology +1008.4547 Number Theory +1008.4550 Analysis of PDEs +1008.4551 Distributed, Parallel, and Cluster Computing +1008.4554 Plasma Physics +1008.4557 Combinatorics +1008.4558 General Physics +1008.4560 Complex Variables +1008.4564 Physics and Society +1008.4565 Information Theory +1008.4568 Soft Condensed Matter +1008.4576 Solar and Stellar Astrophysics +cond-mat/0502088 Statistical Mechanics +cond-mat/0509285 Mesoscale and Nanoscale Physics +cond-mat/0509299 Statistical Mechanics +cond-mat/0603520 Statistical Mechanics +cond-mat/0702532 Mesoscale and Nanoscale Physics +math/0309168 Representation Theory +math/0407095 Quantum Algebra +math/0507334 Quantum Algebra +math/0601647 Geometric Topology +math/0602016 Category Theory +math/0607501 Representation Theory +math/0610273 Quantum Algebra +math/0701473 Rings and Algebras +math/0702604 Category Theory +physics/0611144 Fluid Dynamics +0705.1378 +0705.2219 +0705.4622 +0706.0019 +0706.0641 Physics and Society +0707.0312 +0707.0962 Statistical Mechanics +0708.2497 Probability +0709.3984 +0710.3740 +0711.2142 +0712.1303 Geophysics +0712.3965 Atmospheric and Oceanic Physics +0801.1114 Combinatorics +0802.0699 Statistical Mechanics +0803.2507 +0804.1503 Algebraic Geometry +0804.2574 +0805.0508 +0806.3230 Algebraic Geometry +0807.3517 Differential Geometry +0808.0216 Statistical Mechanics +0808.1737 +0809.2014 Theory +0811.2363 Materials Science +0811.3360 Analysis of PDEs +0812.3278 Algebraic Geometry +0901.2600 Statistical Mechanics +0902.1276 Statistical Mechanics +0902.4456 +0903.0818 Astrophysics of Galaxies +0903.3464 +0904.2313 Functional Analysis +0904.4774 Information Theory +0905.4903 Strongly Correlated Electrons +0906.0704 +0906.3669 Astrophysics of Galaxies +0906.4942 Differential Geometry +0907.0360 Astrophysics of Galaxies +0907.0537 Probability +0907.2762 Number Theory +0907.3632 Superconductivity +0907.4321 Other Condensed Matter +0908.0624 Mesoscale and Nanoscale Physics +0909.0878 Chemical Physics +0909.1087 +0909.1401 Mesoscale and Nanoscale Physics +0909.1403 Mesoscale and Nanoscale Physics +0909.2783 +0909.4148 Soft Condensed Matter +0909.5609 +0910.0312 +0910.1840 +0910.2845 Commutative Algebra +0910.3048 High Energy Astrophysical Phenomena +0910.5100 Strongly Correlated Electrons +0911.0196 Lattice +0911.0301 Theory +0911.0629 Quantum Gases +0911.0869 Lattice +0911.0967 Theory +0911.0986 Instrumentation and Detectors +0911.1033 +0911.1299 Theory +0911.3317 Phenomenology +0911.3698 +0911.5084 Complex Variables +0911.5628 Methodology +0912.1232 Theory +0912.3166 Statistical Mechanics +0912.3687 Classical Analysis and ODEs +0912.3689 Instrumentation and Methods for Astrophysics +1001.1977 Probability +1001.3061 Superconductivity +1001.5043 Theory +1002.1133 Mesoscale and Nanoscale Physics +1002.1187 Phenomenology +1002.1634 Theory +1002.3878 Applications +1002.4171 Number Theory +1002.4883 Complex Variables +1002.4889 Materials Science +1002.4893 Rings and Algebras +1002.4895 +1002.4902 Cosmology and Nongalactic Astrophysics +1002.4903 Neurons and Cognition +1002.4907 Information Theory +1002.4915 Rings and Algebras +1002.4919 Computational Engineering, Finance, and Science +1002.4925 Analysis of PDEs +1002.4926 Analysis of PDEs +1002.4927 Analysis of PDEs +1002.4931 Statistics Theory +1002.4934 Materials Science +1002.4936 Quantum Algebra +1002.4939 Superconductivity +1002.4943 +1002.4946 Statistics Theory +1002.4948 Cosmology and Nongalactic Astrophysics +1002.4957 Phenomenology +1002.4959 Statistics Theory +1002.4967 High Energy Astrophysical Phenomena +1002.4968 Cosmology and Nongalactic Astrophysics +1002.4971 Strongly Correlated Electrons +1002.4972 Differential Geometry +1002.4975 Physics Education +1002.4976 Numerical Analysis +1002.4977 Probability +1002.4978 Analysis of PDEs +1002.4982 Analysis of PDEs +1002.4983 Representation Theory +1002.4985 Probability +1002.4989 Analysis of PDEs +1002.4992 Dynamical Systems +1002.4995 Probability +1002.4996 Discrete Mathematics +1002.5002 Theory +1002.5005 Earth and Planetary Astrophysics +1002.5006 Materials Science +1002.5009 Popular Physics +1002.5010 Earth and Planetary Astrophysics +1002.5012 Experiment +1002.5019 Algebraic Geometry +1002.5023 +1002.5026 Information Theory +1002.5047 Quantum Algebra +astro-ph/0010457 +astro-ph/0011041 +astro-ph/0101123 +astro-ph/0102286 +astro-ph/0103430 +astro-ph/0105246 +astro-ph/0111095 +astro-ph/0310842 +astro-ph/0410421 +astro-ph/0703397 +astro-ph/9708161 +astro-ph/9809253 +astro-ph/9910148 +astro-ph/9910404 +cond-mat/0505217 Statistical Mechanics +cond-mat/0602679 Statistical Mechanics +cond-mat/0612251 Statistical Mechanics +hep-th/0511088 Theory +hep-th/0607070 Theory +math/0508205 Algebraic Geometry +math/0509189 Algebraic Geometry +math/0605109 Analysis of PDEs +math/0610364 Algebraic Geometry +0905.0684 General Physics +0905.0704 General Physics +0706.0013 Soft Condensed Matter +0706.0235 Soft Condensed Matter +0706.0952 Number Theory +0709.4669 Information Retrieval +0710.1361 +0712.4105 Statistical Mechanics +0804.4030 Analysis of PDEs +0804.4031 Analysis of PDEs +0805.0635 +0805.2731 Number Theory +0806.4017 Chemical Physics +0807.4764 Representation Theory +0811.1603 Phenomenology +0812.0291 +0812.3699 Methodology +0901.1112 Materials Science +0901.4176 Classical Analysis and ODEs +0901.4247 +0902.2810 Geometric Topology +0902.4578 Statistical Mechanics +0903.4132 Artificial Intelligence +0904.1803 Probability +0905.0228 Combinatorics +0906.0113 Methodology +0906.0720 Probability +0906.1352 Quantum Algebra +0906.2242 Numerical Analysis +0906.5494 +0907.2624 Solar and Stellar Astrophysics +0907.3129 Combinatorics +0908.1883 Algebraic Topology +0908.2252 Mesoscale and Nanoscale Physics +0909.0426 +0909.4118 +0910.2728 Strongly Correlated Electrons +0910.5640 Superconductivity +0911.1626 Data Structures and Algorithms +0911.1959 Strongly Correlated Electrons +0911.3056 +0911.3336 Mesoscale and Nanoscale Physics +0911.4026 Quantum Gases +0911.5498 Geometric Topology +0912.0972 Phenomenology +0912.4626 Phenomenology +1001.1971 Quantum Gases +1001.3113 Networking and Internet Architecture +1001.3166 Mesoscale and Nanoscale Physics +1001.5149 Superconductivity +1002.0820 Cosmology and Nongalactic Astrophysics +1002.1441 Mesoscale and Nanoscale Physics +1002.1771 Quantum Algebra +1002.3198 Rings and Algebras +1002.4027 High Energy Astrophysical Phenomena +1003.0276 Mesoscale and Nanoscale Physics +1003.3614 Materials Science +1003.5587 Complex Variables +1004.0028 Symplectic Geometry +1004.5041 +1005.3017 Solar and Stellar Astrophysics +1005.3715 Astrophysics of Galaxies +1005.3896 Statistical Mechanics +1006.0574 Optics +1006.2481 General Mathematics +1006.2992 Computer Science and Game Theory +1006.3316 Machine Learning +1006.3319 Numerical Analysis +1006.3330 Quantum Gases +1006.3334 Computer Science and Game Theory +1006.3342 Statistics Theory +1006.3347 Geometric Topology +1006.3356 Analysis of PDEs +1006.3357 Materials Science +1006.3358 Functional Analysis +1006.3367 Representation Theory +1006.3379 Dynamical Systems +1006.3383 Optics +1006.3384 High Energy Astrophysical Phenomena +1006.3388 Statistical Mechanics +1006.3389 Differential Geometry +1006.3393 +1006.3394 Distributed, Parallel, and Cluster Computing +1006.3398 Symplectic Geometry +1006.3402 Instrumentation and Detectors +1006.3404 Metric Geometry +1006.3405 Soft Condensed Matter +1006.3409 Earth and Planetary Astrophysics +1006.3415 Materials Science +1006.3421 Instrumentation and Detectors +1006.3425 Information Retrieval +1006.3427 Phenomenology +1006.3428 +1006.3430 Discrete Mathematics +1006.3431 General Physics +1006.3432 Distributed, Parallel, and Cluster Computing +1006.3433 Materials Science +1006.3434 Phenomenology +1006.3447 Combinatorics +1006.3448 Programming Languages +1006.3451 Formal Languages and Automata Theory +1006.3452 Distributed, Parallel, and Cluster Computing +1006.3453 Biological Physics +1006.3463 Distributed, Parallel, and Cluster Computing +1006.3464 Rings and Algebras +1006.3465 Distributed, Parallel, and Cluster Computing +1006.3481 Programming Languages +1006.3488 Numerical Analysis +1006.3491 Phenomenology +1006.3492 Instrumentation and Detectors +1006.3493 Commutative Algebra +1006.3503 Instrumentation and Detectors +1006.3506 Computer Vision and Pattern Recognition +1006.3512 +1006.3514 Databases +1006.3520 Information Theory +1006.3521 General Finance +1006.3526 Complex Variables +1006.3527 History and Philosophy of Physics +1006.3529 +1006.3535 Superconductivity +1006.3537 Information Theory +1006.3542 Optimization and Control +1006.3546 Physics and Society +1006.3547 Differential Geometry +1006.3557 +math/0001006 Quantum Algebra +math/0110307 Combinatorics +math/0512294 Probability +math/0702393 Geometric Topology +quant-ph/0412064 +0704.1221 Dynamical Systems +0709.1767 Quantum Algebra +0710.4881 +0712.1312 Atmospheric and Oceanic Physics +0801.3928 +0803.0564 Mesoscale and Nanoscale Physics +0805.3061 Experiment +0808.0549 Information Theory +0809.4716 Mesoscale and Nanoscale Physics +0810.2999 +0810.3483 Phenomenology +0811.1877 +0811.4595 Mesoscale and Nanoscale Physics +0812.2387 Complex Variables +0901.2712 Mesoscale and Nanoscale Physics +0902.2285 Probability +0902.3456 Pricing of Securities +0902.3651 Statistical Mechanics +0902.4711 Astrophysics of Galaxies +0902.4789 +0903.1214 Exactly Solvable and Integrable Systems +0903.1454 Strongly Correlated Electrons +0903.1755 Instrumentation and Methods for Astrophysics +0903.3129 +0903.3980 Operator Algebras +0903.5372 Information Theory +0904.0069 Algebraic Topology +0904.0252 Strongly Correlated Electrons +0904.3477 Quantum Gases +0904.3962 Geometric Topology +0904.4814 Combinatorics +0905.4469 Other Condensed Matter +0906.1600 Quantum Gases +0906.2134 Superconductivity +0906.2973 +0906.4589 Information Theory +0907.0257 Quantum Algebra +0908.2813 Superconductivity +0908.3922 Analysis of PDEs +0909.0628 Soft Condensed Matter +0909.3070 +0909.3511 Superconductivity +0909.5343 Disordered Systems and Neural Networks +0909.5392 Strongly Correlated Electrons +0909.5545 Experiment +0910.0081 Commutative Algebra +0910.0285 Instrumentation and Methods for Astrophysics +0910.0517 +0910.2348 Statistical Mechanics +0910.4080 Phenomenology +0910.4559 +0910.5611 Lattice +0911.0389 +0911.2113 Phenomenology +0911.2458 Theory +0911.2893 Phenomenology +0911.3289 Strongly Correlated Electrons +0911.4332 Networking and Internet Architecture +0912.0444 Quantum Gases +0912.2608 Mesoscale and Nanoscale Physics +0912.4115 Networking and Internet Architecture +0912.4134 Superconductivity +1001.0832 Atomic and Molecular Clusters +1001.2871 Algebraic Geometry +1001.3313 +1001.3859 Methodology +1002.0032 Optics +1002.0099 Strongly Correlated Electrons +1002.0559 Populations and Evolution +1002.1765 Probability +1002.1908 Combinatorics +1002.2190 Probability +1002.3169 Statistical Mechanics +1002.4324 Theory +1002.4376 Phenomenology +1002.4592 General Finance +1002.4611 Cosmology and Nongalactic Astrophysics +1002.4632 +1002.4636 Theory +1002.4637 +1002.4639 Superconductivity +1002.4641 Trading and Market Microstructure +1002.4644 Instrumentation and Methods for Astrophysics +1002.4647 Differential Geometry +1002.4649 Probability +1002.4650 General Physics +1002.4654 +1002.4661 Computational Engineering, Finance, and Science +1002.4667 Astrophysics of Galaxies +1002.4668 Distributed, Parallel, and Cluster Computing +1002.4676 Computational Complexity +1002.4678 Algebraic Topology +1002.4680 Networking and Internet Architecture +1002.4682 Applications +1002.4686 Geometric Topology +1002.4687 Combinatorics +1002.4692 General Physics +1002.4701 Quantum Algebra +1002.4712 High Energy Astrophysical Phenomena +1002.4713 Dynamical Systems +1002.4720 +1002.4722 Geometric Topology +1002.4724 Other Computer Science +1002.4725 Mathematical Software +1002.4727 Networking and Internet Architecture +1002.4728 +1002.4733 +1002.4734 Statistics Theory +1002.4735 Quantum Gases +1002.4750 Optics +1002.4751 Algebraic Geometry +1002.4754 Statistics Theory +1002.4755 Space Physics +1002.4756 Statistics Theory +1002.4757 Number Theory +1002.4763 Logic +1002.4768 Neural and Evolutionary Computing +1002.4769 +1002.4770 Statistics Theory +1002.4771 +1002.4775 Methodology +1002.4781 Statistics Theory +1002.4783 +1002.4785 Cosmology and Nongalactic Astrophysics +1002.4786 Popular Physics +1002.4787 Theory +1002.4788 +1002.4789 Statistics Theory +1002.4799 Algebraic Geometry +1002.4801 Statistics Theory +1002.4803 Combinatorics +1002.4806 Number Theory +1002.4807 Dynamical Systems +1002.4813 Functional Analysis +1002.4818 Software Engineering +1002.4820 Computation and Language +1002.4821 Algebraic Geometry +1002.4822 Superconductivity +1002.4828 Strongly Correlated Electrons +1002.4831 Neural and Evolutionary Computing +1002.4833 Networking and Internet Architecture +1002.4836 Cryptography and Security +1002.4837 Other Computer Science +1002.4838 Networking and Internet Architecture +1002.4844 Spectral Theory +1002.4845 Algebraic Topology +1002.4855 Representation Theory +1002.4856 Astrophysics of Galaxies +1002.4862 Learning +1002.4865 Functional Analysis +1002.4867 Dynamical Systems +1002.4870 Cosmology and Nongalactic Astrophysics +math/0502246 Commutative Algebra +math/0505235 Commutative Algebra +math/0508177 Rings and Algebras +math/0509020 K-Theory and Homology +math/0703107 Representation Theory +quant-ph/0602171 +0705.0106 Other Condensed Matter +0708.2845 Other Condensed Matter +0711.1767 Complex Variables +0801.0431 Statistical Mechanics +0801.0601 +0803.1854 Optics +0807.1323 Analysis of PDEs +0807.3604 +0809.0340 +0811.0817 Algebraic Geometry +0811.4175 Classical Analysis and ODEs +0812.2184 Molecular Networks +0902.4304 Probability +0907.1677 +0907.3413 Quantum Gases +0907.3591 Mesoscale and Nanoscale Physics +0909.1975 Differential Geometry +0910.3424 +0911.2567 Computational Complexity +0911.3290 Statistical Mechanics +0911.4228 Probability +0912.0287 Data Structures and Algorithms +0912.4654 +1002.2326 Cosmology and Nongalactic Astrophysics +1002.4185 High Energy Astrophysical Phenomena +1004.4619 +1004.5515 Probability +1005.0636 Strongly Correlated Electrons +1005.1356 Risk Management +1005.3964 Quantum Gases +1006.3816 Logic +1006.4141 Geometric Topology +1006.4325 +1007.3393 Chaotic Dynamics +1008.0075 Probability +1008.0231 Theory +1008.0263 Commutative Algebra +1008.0646 Cosmology and Nongalactic Astrophysics +1008.0731 Number Theory +1008.5385 Other Condensed Matter +1009.1609 +1009.2372 Quantum Gases +1009.3498 Theory +1009.3828 Strongly Correlated Electrons +1009.4002 Superconductivity +1009.5080 +1010.1983 +1010.6037 Superconductivity +1010.6254 High Energy Astrophysical Phenomena +1011.3296 +1011.3635 Algebraic Geometry +1011.5073 Phenomenology +1012.0152 Lattice +1012.0493 Algebraic Geometry +1012.1885 Instrumentation and Methods for Astrophysics +1012.2831 Operating Systems +1012.3628 Networking and Internet Architecture +1012.3890 +1012.4079 Cryptography and Security +1012.4171 Algebraic Geometry +1012.4204 Cryptography and Security +1012.4250 Information Theory +1012.4379 Exactly Solvable and Integrable Systems +1012.4469 Phenomenology +1012.4470 Strongly Correlated Electrons +1012.4482 Geometric Topology +1012.4485 Networking and Internet Architecture +1012.4486 Earth and Planetary Astrophysics +1012.4487 Networking and Internet Architecture +1012.4489 Rings and Algebras +1012.4501 Other Quantitative Biology +1012.4507 Disordered Systems and Neural Networks +1012.4508 General Physics +1012.4512 Chaotic Dynamics +1012.4513 +1012.4516 Cosmology and Nongalactic Astrophysics +1012.4521 Soft Condensed Matter +1012.4527 Soft Condensed Matter +1012.4531 Commutative Algebra +1012.4536 +1012.4538 Representation Theory +1012.4542 Information Theory +1012.4549 Functional Analysis +1012.4551 Differential Geometry +1012.4554 Logic in Computer Science +1012.4555 Logic in Computer Science +1012.4556 Networking and Internet Architecture +1012.4559 Human-Computer Interaction +1012.4560 Data Structures and Algorithms +1012.4561 Numerical Analysis +1012.4563 Statistical Mechanics +1012.4567 Other Computer Science +1012.4572 Phenomenology +1012.4575 Mesoscale and Nanoscale Physics +1012.4580 Phenomenology +1012.4581 Optics +1012.4587 Phenomenology +1012.4590 Complex Variables +1012.4591 +1012.4592 Experiment +1012.4596 Spectral Theory +1012.4603 Phenomenology +1012.4604 Dynamical Systems +1012.4607 Representation Theory +1012.4608 Group Theory +1012.4619 +1012.4620 Cryptography and Security +1012.4626 Cryptography and Security +1012.4628 Statistical Mechanics +1012.4631 Statistical Mechanics +1012.4634 Combinatorics +1012.4636 Statistical Mechanics +1012.4641 Solar and Stellar Astrophysics +1012.4643 Phenomenology +1012.4644 Classical Analysis and ODEs +1012.4645 Physics and Society +1012.4653 Probability +1012.4666 Analysis of PDEs +1012.4668 Information Theory +1012.4670 Materials Science +1012.4673 Plasma Physics +1012.4675 General Physics +1012.4676 Applications +1012.4677 Theory +1012.4681 Phenomenology +1012.4691 Other Computer Science +1012.4694 Lattice +1012.4698 Quantum Algebra +1012.4702 Applications +1012.4706 +1012.4710 Probability +1012.4712 Software Engineering +1012.4714 Phenomenology +1012.4716 Instrumentation and Detectors +1012.4717 Materials Science +1012.4720 +1012.4721 +1012.4729 +1012.4732 Solar and Stellar Astrophysics +1012.4734 +1012.4738 Experiment +1012.4742 Analysis of PDEs +1012.4744 Cosmology and Nongalactic Astrophysics +1012.4746 Statistical Mechanics +1012.4751 Group Theory +1012.4752 Digital Libraries +1012.4754 Functional Analysis +1012.4755 Information Theory +1012.4759 Information Retrieval +1012.4762 +1012.4764 Instrumentation and Methods for Astrophysics +1012.4773 Theory +1012.4774 Number Theory +1012.4775 Analysis of PDEs +1012.4776 Artificial Intelligence +1012.4782 Biological Physics +1012.4783 +1012.4792 Instrumentation and Methods for Astrophysics +1012.4795 Optimization and Control +1012.4798 Biological Physics +cond-mat/0303640 Superconductivity +math/0411488 Combinatorics +math/0611851 Complex Variables +math/0611897 Rings and Algebras +physics/0407114 Atomic Physics +0704.2093 Phenomenology +0704.2196 +0706.2788 +0708.1881 +0708.1882 +0708.4403 +0710.0875 +0710.5552 +0711.3461 +0801.3523 Analysis of PDEs +0802.1875 +0803.1650 +0804.0135 Metric Geometry +0804.4523 +0805.0139 +0805.0580 Fluid Dynamics +0805.1162 +0805.4582 +0806.0304 Number Theory +0806.1857 Differential Geometry +0806.2824 Geometric Topology +0806.3190 Phenomenology +0808.2619 Rings and Algebras +0809.0496 Theory +0809.0856 Theory +0809.2368 +0809.3518 +0809.3805 +0809.4036 Algebraic Geometry +0810.4842 Analysis of PDEs +0811.2812 +0812.2298 Data Structures and Algorithms +0901.2180 +0901.3400 Phenomenology +0901.4101 Phenomenology +0902.0655 Theory +0902.1022 Exactly Solvable and Integrable Systems +0902.2098 Theory +0903.0778 Theory +0903.1446 Differential Geometry +0903.2399 Theory +0903.2466 +0903.3772 Solar and Stellar Astrophysics +0903.4591 +0903.5171 +0903.5251 Theory +0904.2127 Theory +0904.3608 Classical Analysis and ODEs +0904.4567 Theory +0905.0241 +0905.0381 Differential Geometry +0905.0522 Theory +0905.1293 Soft Condensed Matter +0905.1949 Phenomenology +0905.2957 Superconductivity +0905.2962 Cosmology and Nongalactic Astrophysics +0905.3117 Quantum Algebra +0905.3177 +0905.3732 Theory +0905.3984 Theory +0905.4134 +0905.4222 +0905.4858 Theory +0906.1803 Phenomenology +0906.1946 Phenomenology +0906.2949 +0906.3267 Phenomenology +0906.3608 Theory +0906.3963 +0906.4078 Phenomenology +0906.5570 Superconductivity +0907.0891 +0907.0935 Phenomenology +0907.0948 +0907.1007 Phenomenology +0907.1396 +0907.1667 Phenomenology +0907.1674 Accelerator Physics +0907.1951 +0907.2115 Phenomenology +0907.2248 Theory +0907.2554 Geometric Topology +0907.2646 Theory +0907.2812 Classical Physics +0907.2905 Phenomenology +0907.3614 Theory +0907.3718 Statistical Mechanics +0907.4715 High Energy Astrophysical Phenomena +0907.5371 Theory +0908.0016 Theory +0908.0413 Theory +0908.0437 Theory +0908.0625 Superconductivity +0908.1026 +0908.3080 Phenomenology +0908.3186 Cosmology and Nongalactic Astrophysics +0908.3892 Phenomenology +0909.0287 +0909.0337 Experiment +0909.0402 Cosmology and Nongalactic Astrophysics +0909.0751 Cosmology and Nongalactic Astrophysics +0909.1319 Phenomenology +0909.1322 Phenomenology +0909.1362 Mesoscale and Nanoscale Physics +0909.1989 +0909.2149 Cosmology and Nongalactic Astrophysics +0909.2855 Phenomenology +0909.3007 Other Condensed Matter +0909.3101 Theory +0909.3175 +0909.3524 Cosmology and Nongalactic Astrophysics +0909.3641 Other Condensed Matter +0909.4919 Phenomenology +0909.4993 Experiment +0910.0306 +0910.0377 Phenomenology +0910.0406 Instrumentation and Detectors +0910.0694 Phenomenology +0910.0958 Lattice +0910.1278 +0910.2020 Phenomenology +0910.2124 Phenomenology +0910.2790 +0910.3072 Lattice +0910.3164 Phenomenology +0910.3600 Superconductivity +0910.4302 +0910.4389 Phenomenology +0910.5222 Theory +0910.5237 Phenomenology +0911.0509 Phenomenology +0911.1123 Theory +0911.1776 High Energy Astrophysical Phenomena +0911.2438 Earth and Planetary Astrophysics +0911.2773 Experiment +0911.3554 Algebraic Geometry +0912.0559 Superconductivity +0912.1176 +0912.1669 +0912.1868 High Energy Astrophysical Phenomena +0912.2146 +0912.2365 +0912.3574 Statistical Mechanics +1001.0207 Number Theory +1001.0564 Instrumentation and Methods for Astrophysics +1001.0608 +1001.0705 +1001.0761 Instrumentation and Detectors +1001.0767 +1001.0770 High Energy Astrophysical Phenomena +1001.0774 Quantum Gases +1001.0775 Geometric Topology +1001.0778 Analysis of PDEs +1001.0783 Pricing of Securities +1001.0786 Pricing of Securities +1001.0789 Number Theory +1001.0790 Experiment +1001.0791 Cosmology and Nongalactic Astrophysics +1001.0793 Information Theory +1001.0803 Materials Science +1001.0804 Differential Geometry +1001.0806 High Energy Astrophysical Phenomena +1001.0808 Strongly Correlated Electrons +1001.0810 Cosmology and Nongalactic Astrophysics +1001.0815 Cosmology and Nongalactic Astrophysics +1001.0820 Artificial Intelligence +1001.0821 Data Structures and Algorithms +1001.0825 Physics and Society +1001.0826 Representation Theory +1001.0827 Information Retrieval +1001.0830 Information Retrieval +1001.0834 Logic +1001.0835 Chemical Physics +1001.0842 Soft Condensed Matter +1001.0843 Solar and Stellar Astrophysics +1001.0851 Rings and Algebras +1001.0853 Differential Geometry +1001.0856 Probability +1001.0862 Commutative Algebra +1001.0863 Statistics Theory +1001.0875 Metric Geometry +1001.0877 Biological Physics +1001.0878 Materials Science +1001.0879 Learning +1001.0881 Soft Condensed Matter +1001.0884 General Physics +1001.0886 Combinatorics +1001.0887 Computational Engineering, Finance, and Science +1001.0888 Solar and Stellar Astrophysics +1001.0892 Materials Science +1001.0897 Number Theory +1001.0898 High Energy Astrophysical Phenomena +1001.0902 Algebraic Topology +1001.0908 General Topology +1001.0911 Geometric Topology +1001.0921 Artificial Intelligence +1001.0922 Logic +1001.0927 Computer Vision and Pattern Recognition +1001.0931 Classical Analysis and ODEs +1001.0933 Analysis of PDEs +1001.0936 Differential Geometry +1001.0947 Dynamical Systems +1001.0948 Number Theory +1001.0950 +1001.0955 High Energy Astrophysical Phenomena +1001.0956 Instrumentation and Detectors +1001.0957 Superconductivity +1001.0958 Computational Engineering, Finance, and Science +1001.0960 Optimization and Control +1001.0964 +adap-org/9811001 Adaptation and Self-Organizing Systems +astro-ph/0003204 +astro-ph/0012275 +astro-ph/0203010 +astro-ph/0211375 +astro-ph/0507502 +astro-ph/0601563 +astro-ph/0603460 +astro-ph/0606652 +astro-ph/0609052 +astro-ph/9705147 +astro-ph/9708038 +astro-ph/9901061 +hep-lat/0008026 Lattice +hep-ph/9802299 Phenomenology +hep-th/0008248 Theory +hep-th/0211003 Theory +hep-th/0609124 Theory +hep-th/9205039 Theory +hep-th/9307050 Theory +hep-th/9310188 Theory +hep-th/9501124 Theory +hep-th/9502053 Theory +hep-th/9503227 Theory +hep-th/9609158 Theory +nlin/0406025 Exactly Solvable and Integrable Systems +0705.2058 General Topology +0705.4297 Logic +0710.1053 Representation Theory +0711.1175 +0711.2285 Experiment +0711.3817 Experiment +0712.0147 Theory +0712.0498 Experiment +0712.1877 Metric Geometry +0807.3026 Data Structures and Algorithms +0807.3978 Logic +0807.4523 Superconductivity +0809.0848 Operator Algebras +0809.4703 +0809.4782 Representation Theory +0810.1603 Algebraic Geometry +0811.3388 Theory +0812.1044 +0812.1263 Theory +0812.2655 +0812.2784 +0812.4827 +0812.5066 +0901.0199 Lattice +0901.0927 Phenomenology +0901.0981 Phenomenology +0901.1044 Phenomenology +0901.1713 Phenomenology +0901.1750 Phenomenology +0901.4044 Theory +0901.4550 Cosmology and Nongalactic Astrophysics +0901.4688 Phenomenology +0902.0653 High Energy Astrophysical Phenomena +0902.1345 Experiment +0902.3361 Phenomenology +0903.1004 Atomic and Molecular Clusters +0903.2795 Chaotic Dynamics +0903.4177 Cosmology and Nongalactic Astrophysics +0903.4214 Cosmology and Nongalactic Astrophysics +0903.4565 High Energy Astrophysical Phenomena +0903.4733 Cosmology and Nongalactic Astrophysics +0903.4825 Phenomenology +0903.4999 Cosmology and Nongalactic Astrophysics +0903.5297 Cosmology and Nongalactic Astrophysics +0904.1868 Exactly Solvable and Integrable Systems +0904.2703 +0904.3179 Quantum Gases +0904.4529 Commutative Algebra +0904.4754 General Physics +0905.2337 Quantum Gases +0905.2431 Superconductivity +0906.0443 Chemical Physics +0906.2381 +0906.2890 Differential Geometry +0906.4054 Materials Science +0907.3111 Other Condensed Matter +0907.3864 Physics and Society +0907.4394 Superconductivity +0908.0238 +0908.0434 Theory +0908.1877 +0908.1884 Metric Geometry +0909.0420 Materials Science +0909.0533 Statistical Mechanics +0909.1219 Phenomenology +0909.1541 +0909.2811 Number Theory +0909.2982 Symplectic Geometry +0909.3120 Strongly Correlated Electrons +0909.3305 Strongly Correlated Electrons +0909.3504 Soft Condensed Matter +0909.3832 Earth and Planetary Astrophysics +0909.4734 Classical Analysis and ODEs +0910.0330 Superconductivity +0910.0893 Disordered Systems and Neural Networks +0910.0939 Analysis of PDEs +0910.4164 Cosmology and Nongalactic Astrophysics +0911.1652 Classical Analysis and ODEs +0911.2461 Mesoscale and Nanoscale Physics +0911.2963 Superconductivity +0911.3263 Mesoscale and Nanoscale Physics +0911.4066 Superconductivity +0912.0073 +0912.0755 Mesoscale and Nanoscale Physics +0912.0852 Soft Condensed Matter +0912.1002 Experiment +0912.1336 Materials Science +0912.1389 Mesoscale and Nanoscale Physics +0912.1436 Number Theory +0912.1554 Materials Science +0912.1634 Soft Condensed Matter +0912.3958 Analysis of PDEs +0912.5295 Theory +0912.5501 Number Theory +1001.0009 Biomolecules +1001.0025 Cryptography and Security +1001.0037 Operator Algebras +1001.0038 Classical Analysis and ODEs +1001.0039 Instrumentation and Methods for Astrophysics +1001.0045 Phenomenology +1001.0046 Combinatorics +1001.0052 +1001.0054 Cryptography and Security +1001.0058 Number Theory +1001.0059 Cosmology and Nongalactic Astrophysics +1001.0061 Instrumentation and Methods for Astrophysics +1001.0063 Artificial Intelligence +1001.0065 Solar and Stellar Astrophysics +1001.0068 General Physics +1001.0069 Networking and Internet Architecture +1001.0072 History and Overview +1001.0073 General Topology +1001.0076 Instrumentation and Detectors +1001.0077 Instrumentation and Detectors +1001.0078 +1001.0084 +1001.0086 Group Theory +1001.0088 General Physics +1001.0090 Superconductivity +1001.0099 Mesoscale and Nanoscale Physics +1001.0100 Number Theory +1001.0101 Phenomenology +1001.0103 High Energy Astrophysical Phenomena +1001.0108 Optics +1001.0110 Chemical Physics +1001.0113 Genomics +1001.0114 Algebraic Geometry +1001.0115 Multiagent Systems +1001.0131 Theory +1001.0132 Geometric Topology +1001.0138 Differential Geometry +1001.0140 Instrumentation and Detectors +1001.0143 Formal Languages and Automata Theory +1001.0148 Group Theory +1001.0150 Group Theory +1001.0151 Fluid Dynamics +1001.0153 Algebraic Geometry +1001.0163 Statistical Mechanics +1001.0164 Exactly Solvable and Integrable Systems +1001.0167 Information Theory +1001.0171 Materials Science +1001.0184 Symplectic Geometry +1001.0186 Metric Geometry +1001.0187 +1001.0193 Combinatorics +1001.0194 Logic +1001.0196 Distributed, Parallel, and Cluster Computing +1001.0197 Instrumentation and Methods for Astrophysics +1001.0199 Instrumentation and Methods for Astrophysics +1001.0200 Statistics Theory +1001.0201 History and Overview +1001.0202 Differential Geometry +1001.0203 Probability +1001.0204 High Energy Astrophysical Phenomena +1001.0206 Probability +1001.0209 Analysis of PDEs +1001.0211 Optimization and Control +1001.0223 Algebraic Geometry +1001.0238 Optics +1001.0242 Algebraic Geometry +1001.0243 Mesoscale and Nanoscale Physics +1001.0244 Optics +1001.0245 Probability +1001.0252 Numerical Analysis +1001.0254 Materials Science +1001.0257 Functional Analysis +1001.0271 Soft Condensed Matter +1001.0272 Experiment +1001.0275 Analysis of PDEs +1001.0278 Cryptography and Security +1001.0279 Machine Learning +1001.0282 Information Theory +1001.0283 General Physics +1001.0285 Biological Physics +1001.0286 Cosmology and Nongalactic Astrophysics +1001.0287 Combinatorics +1001.0290 Complex Variables +1001.0299 Combinatorics +1001.0302 Superconductivity +1001.0304 Symbolic Computation +1001.0305 Instrumentation and Methods for Astrophysics +1001.0309 Physics and Society +1001.0314 Dynamical Systems +1001.0319 Numerical Analysis +1001.0326 Representation Theory +1001.0330 Combinatorics +1001.0334 Astrophysics of Galaxies +1001.0335 +1001.0339 Information Theory +1001.0342 +1001.0346 Information Theory +1001.0347 Representation Theory +1001.0350 Optics +1001.0352 Earth and Planetary Astrophysics +1001.0357 Information Theory +1001.0358 Algebraic Topology +1001.0360 Geometric Topology +1001.0366 Numerical Analysis +1001.0367 Complex Variables +1001.0368 Dynamical Systems +1001.0370 Number Theory +1001.0374 Experiment +1001.0375 Mesoscale and Nanoscale Physics +1001.0379 Differential Geometry +1001.0384 Geometric Topology +1001.0385 Analysis of PDEs +1001.0403 Earth and Planetary Astrophysics +1001.0405 Learning +1001.0407 +1001.0408 Materials Science +1001.0411 +1001.0418 Human-Computer Interaction +1001.0420 Human-Computer Interaction +1001.0421 Distributed, Parallel, and Cluster Computing +1001.0424 Operator Algebras +1001.0429 Theory +1001.0431 Superconductivity +1001.0438 Materials Science +1001.0440 Information Retrieval +1001.0441 Multimedia +1001.0442 Multimedia +1001.0443 Multimedia +1001.0446 Neurons and Cognition +1001.0447 Algebraic Geometry +1001.0449 Algebraic Geometry +1001.0452 Experiment +1001.0453 Computers and Society +1001.0454 Strongly Correlated Electrons +1001.0458 Differential Geometry +1001.0462 Representation Theory +1001.0468 +1001.0469 Classical Analysis and ODEs +1001.0472 Commutative Algebra +1001.0474 Superconductivity +1001.0476 Optics +1001.0478 Classical Analysis and ODEs +1001.0480 Materials Science +1001.0485 Complex Variables +1001.0489 K-Theory and Homology +1001.0491 Classical Analysis and ODEs +1001.0492 Statistics Theory +1001.0497 Statistical Finance +1001.0504 Representation Theory +1001.0511 Biological Physics +1001.0512 Solar and Stellar Astrophysics +1001.0514 Combinatorics +1001.0515 Logic +1001.0530 Complex Variables +1001.0531 Quantum Algebra +1001.0533 High Energy Astrophysical Phenomena +1001.0546 Biomolecules +1001.0547 +1001.0554 Complex Variables +1001.0555 Computational Geometry +1001.0556 Numerical Analysis +1001.0558 +1001.0559 Complex Variables +1001.0560 Functional Analysis +astro-ph/0604094 +cond-mat/0401102 Statistical Mechanics +cond-mat/0401257 Statistical Mechanics +cond-mat/0401291 Soft Condensed Matter +cond-mat/0403286 Statistical Mechanics +cond-mat/0610574 Materials Science +gr-qc/0608006 +hep-ex/0111009 Experiment +hep-ex/0111016 Experiment +hep-ex/0112035 Experiment +hep-ex/0507093 Experiment +hep-ex/9601002 Experiment +hep-ph/0406116 Phenomenology +hep-ph/0411363 Phenomenology +hep-ph/0508194 Phenomenology +hep-ph/0508244 Phenomenology +hep-th/0003017 Theory +hep-th/9403010 Theory +hep-th/9407067 Theory +hep-th/9705034 Theory +math/0612372 Metric Geometry +nucl-ex/0304021 +nucl-ex/0308023 +nucl-ex/0404027 +nucl-ex/0512018 +nucl-th/0407020 +physics/0008141 Accelerator Physics +physics/0112042 Instrumentation and Detectors +physics/0310139 Instrumentation and Detectors +physics/0406031 Accelerator Physics +physics/0508138 Instrumentation and Detectors +physics/0510157 Instrumentation and Detectors +quant-ph/0405075 +quant-ph/9809016 +0704.2470 Complex Variables +0706.0854 Complex Variables +0710.5455 Chaotic Dynamics +0710.5465 Chaotic Dynamics +0710.5471 Chaotic Dynamics +0712.3078 Chaotic Dynamics +0712.3184 +0801.2892 Complex Variables +0801.2895 Complex Variables +0801.4476 Complex Variables +0802.2189 Representation Theory +0805.2592 +0806.0421 Numerical Analysis +0807.0775 +0808.0313 Complex Variables +0810.5684 Category Theory +0901.0298 Numerical Analysis +0902.0878 General Finance +0902.3462 Superconductivity +0906.1286 Category Theory +0906.2686 +0906.5458 Number Theory +0908.2963 Theory +0908.3695 Phenomenology +0908.3934 Disordered Systems and Neural Networks +0909.2904 Machine Learning +0910.2304 Information Theory +0911.0238 Operator Algebras +0911.2151 Logic +0911.4914 Materials Science +0912.0029 Phenomenology +0912.1482 Probability +0912.1743 Mesoscale and Nanoscale Physics +0912.2466 Phenomenology +0912.2610 +0912.3262 Astrophysics of Galaxies +0912.3934 General Physics +0912.5485 Materials Science +1001.0494 Number Theory +1001.2643 +1001.2732 Materials Science +1001.3541 +1002.2695 Number Theory +1002.2960 Strongly Correlated Electrons +1002.3508 Statistical Mechanics +1003.0241 Number Theory +1003.1158 Number Theory +1003.2602 Mesoscale and Nanoscale Physics +1003.2907 Classical Analysis and ODEs +1003.3140 Mesoscale and Nanoscale Physics +1003.4702 Earth and Planetary Astrophysics +1003.5193 Materials Science +1003.5502 Strongly Correlated Electrons +1003.5523 Analysis of PDEs +1003.5602 General Mathematics +1004.4553 Solar and Stellar Astrophysics +1004.5074 Methodology +1005.0997 General Physics +1005.5074 Physics Education +1006.0794 Strongly Correlated Electrons +1006.1985 Mesoscale and Nanoscale Physics +1006.2146 Computational Physics +1006.3116 Astrophysics of Galaxies +1006.3786 Discrete Mathematics +1006.3915 Number Theory +1006.3934 Operator Algebras +1006.4167 Complex Variables +1006.4169 Complex Variables +1006.4174 Mesoscale and Nanoscale Physics +1006.4175 Computer Vision and Pattern Recognition +1006.4177 Functional Analysis +1006.4178 Cosmology and Nongalactic Astrophysics +1006.4182 Differential Geometry +1006.4183 +1006.4185 +1006.4188 Group Theory +1006.4203 Algebraic Geometry +1006.4204 +1006.4207 +1006.4212 Mesoscale and Nanoscale Physics +1006.4216 +1006.4222 Commutative Algebra +1006.4224 Differential Geometry +1006.4228 Networking and Internet Architecture +1006.4232 Instrumentation and Methods for Astrophysics +1006.4236 Superconductivity +1006.4238 Probability +1006.4251 Rings and Algebras +1006.4261 Complex Variables +1006.4271 Computers and Society +1006.4274 Experiment +1006.4275 +1006.4287 Strongly Correlated Electrons +1006.4288 Discrete Mathematics +1006.4289 Theory +1006.4291 Molecular Networks +1006.4301 Group Theory +1006.4302 Dynamical Systems +1006.4304 Cryptography and Security +1006.4313 Instrumentation and Detectors +1006.4316 Classical Analysis and ODEs +1006.4318 Classical Analysis and ODEs +1006.4319 Classical Analysis and ODEs +1006.4326 Networking and Internet Architecture +1006.4327 Numerical Analysis +1006.4329 General Physics +1006.4330 Applications +1006.4339 Data Structures and Algorithms +1006.4341 History and Overview +1006.4342 Distributed, Parallel, and Cluster Computing +1006.4352 Differential Geometry +1006.4354 Solar and Stellar Astrophysics +1006.4356 Combinatorics +1006.4357 Data Structures and Algorithms +cond-mat/0308242 Mesoscale and Nanoscale Physics +cond-mat/9705162 +cs/0509035 Multimedia +cs/0608024 Cryptography and Security +hep-ph/0110135 Phenomenology +math/0507190 Complex Variables +math/0511482 Complex Variables +math/0601367 Complex Variables +math/0603020 Complex Variables +math/0603574 Complex Variables +math/0608496 Complex Variables +math/0608662 Complex Variables +nlin/0608020 Chaotic Dynamics +nlin/0611017 Chaotic Dynamics +physics/0702104 Atomic Physics +quant-ph/0510159 +quant-ph/0612168 +0804.4627 +0807.1757 Soft Condensed Matter +0807.1852 Soft Condensed Matter +0808.0111 Physics and Society +0808.3330 +0812.0122 Soft Condensed Matter +0812.0956 Computer Science and Game Theory +0812.1139 Geometric Topology +0812.2751 Algebraic Geometry +0901.2258 Theory +0902.2887 Algebraic Geometry +0903.2629 Soft Condensed Matter +0904.0556 Soft Condensed Matter +0904.4486 Theory +0906.3403 General Physics +0907.1592 Representation Theory +0907.2041 Theory +0908.0513 High Energy Astrophysical Phenomena +0908.3505 Data Structures and Algorithms +0911.0452 Combinatorics +0911.4326 Phenomenology +0911.4371 Phenomenology +0912.0161 Computational Physics +0912.2150 +1001.2920 Symplectic Geometry +1001.3669 Mesoscale and Nanoscale Physics +1002.1101 Strongly Correlated Electrons +1002.4580 Theory +1002.4984 Mesoscale and Nanoscale Physics +1003.0167 Data Structures and Algorithms +1003.1124 Mesoscale and Nanoscale Physics +1003.4122 Metric Geometry +1003.5597 Geometric Topology +1004.3960 Superconductivity +1004.4417 Algebraic Geometry +1004.5046 Statistical Mechanics +1005.4527 Theory +1005.4835 Materials Science +1006.0752 Geometric Topology +1006.1709 Superconductivity +1006.2014 Superconductivity +1006.3656 Statistical Mechanics +1006.4296 +1006.4890 Phenomenology +1006.5724 +1007.0388 +1007.1033 Information Theory +1007.2740 Metric Geometry +1007.5178 Optimization and Control +1008.0660 Artificial Intelligence +1008.3951 Machine Learning +1008.4122 +1008.4331 Computer Science and Game Theory +1008.4729 Analysis of PDEs +1008.4733 Information Theory +1008.4897 Algebraic Topology +1008.5390 Quantitative Methods +1009.0242 Materials Science +1009.0346 High Energy Astrophysical Phenomena +1009.0352 Materials Science +1009.0448 Networking and Internet Architecture +1009.0524 Cosmology and Nongalactic Astrophysics +1009.0533 Probability +1009.0540 Analysis of PDEs +1009.0542 Analysis of PDEs +1009.0544 Geometric Topology +1009.0548 Soft Condensed Matter +1009.0550 Artificial Intelligence +1009.0552 Materials Science +1009.0554 Instrumentation and Methods for Astrophysics +1009.0556 Optimization and Control +1009.0559 Mesoscale and Nanoscale Physics +1009.0562 Statistics Theory +1009.0565 Pattern Formation and Solitons +1009.0566 Combinatorics +1009.0582 Phenomenology +1009.0585 Networking and Internet Architecture +1009.0588 Superconductivity +1009.0590 Superconductivity +1009.0592 Classical Physics +1009.0593 Geophysics +1009.0604 Differential Geometry +1009.0612 +1009.0626 Probability +1009.0628 Fluid Dynamics +1009.0630 Networking and Internet Architecture +1009.0635 Computational Finance +1009.0636 Commutative Algebra +1009.0650 Statistical Mechanics +1009.0652 Populations and Evolution +1009.0655 Cryptography and Security +1009.0666 Instrumentation and Methods for Astrophysics +1009.0670 Data Structures and Algorithms +1009.0673 Logic in Computer Science +1009.0678 Quantum Algebra +1009.0680 Populations and Evolution +1009.0682 Information Theory +1009.0685 Analysis of PDEs +1009.0688 Representation Theory +1009.0689 +1009.0690 Biological Physics +1009.0692 Mesoscale and Nanoscale Physics +1009.0694 Representation Theory +1009.0696 Rings and Algebras +1009.0698 +1009.0700 Probability +1009.0705 Analysis of PDEs +1009.0706 Computational Complexity +1009.0715 Astrophysics of Galaxies +1009.0717 Astrophysics of Galaxies +1009.0718 Mesoscale and Nanoscale Physics +1009.0730 Probability +1009.0731 Mesoscale and Nanoscale Physics +1009.0737 Number Theory +1009.0741 Probability +1009.0745 Theory +gr-qc/0409027 +math/0605465 Geometric Topology +0705.1342 Spectral Theory +0705.2799 Algebraic Geometry +0707.3540 Discrete Mathematics +0708.0431 Algebraic Geometry +0711.0840 Logic in Computer Science +0801.3617 Operator Algebras +0803.3560 Logic +0804.1781 General Mathematics +0806.2146 +0808.0217 K-Theory and Homology +0809.1395 Rings and Algebras +0809.2260 Biological Physics +0809.5029 +0810.2721 Differential Geometry +0810.4314 Combinatorics +0810.5044 Algebraic Geometry +0811.0320 Strongly Correlated Electrons +0811.1782 Mesoscale and Nanoscale Physics +0811.2260 Number Theory +0811.2769 Probability +0812.2753 Functional Analysis +0901.1937 Representation Theory +0902.0333 Probability +0902.4126 +0903.0186 Quantum Algebra +0903.1010 Combinatorics +0903.4368 Optimization and Control +0903.4852 Classical Analysis and ODEs +0904.0945 Quantum Algebra +0904.1364 Mesoscale and Nanoscale Physics +0905.1284 Algebraic Geometry +0905.3781 Group Theory +0906.2939 Complex Variables +0907.0855 +0907.4345 Superconductivity +0907.5161 Superconductivity +0908.0192 Cosmology and Nongalactic Astrophysics +0908.1993 Rings and Algebras +0908.2444 Probability +0908.3988 Cosmology and Nongalactic Astrophysics +0909.0288 Algebraic Geometry +0909.0408 +0909.1693 Algebraic Geometry +0909.2690 Pattern Formation and Solitons +0909.2774 Statistical Mechanics +0909.4822 Other Condensed Matter +0910.0604 Algebraic Geometry +0910.0696 Superconductivity +0910.2747 Mesoscale and Nanoscale Physics +0911.0286 Number Theory +0911.0454 Statistical Finance +0911.2944 Group Theory +0911.3378 Theory +0911.4701 Functional Analysis +0911.4718 Astrophysics of Galaxies +0912.0106 Quantum Algebra +0912.0799 Mesoscale and Nanoscale Physics +0912.1255 Analysis of PDEs +0912.2351 Mesoscale and Nanoscale Physics +0912.2477 +0912.4337 Analysis of PDEs +0912.4341 Materials Science +0912.4542 Mesoscale and Nanoscale Physics +1001.0270 Strongly Correlated Electrons +1001.2588 Representation Theory +1001.2827 Geometric Topology +1001.4226 Populations and Evolution +1001.5013 Phenomenology +1002.2682 Algebraic Geometry +1002.2907 Algebraic Topology +1002.3358 Superconductivity +1002.3568 Materials Science +1002.4304 Combinatorics +1003.0110 High Energy Astrophysical Phenomena +1003.1099 Fluid Dynamics +1003.2393 +1003.4174 Chemical Physics +1003.4364 Chemical Physics +1003.5938 Instrumentation and Methods for Astrophysics +1004.2341 Mesoscale and Nanoscale Physics +1004.3047 Superconductivity +1004.3251 Strongly Correlated Electrons +1004.3930 Algebraic Topology +1004.4205 Number Theory +1004.5364 Quantum Gases +1005.0180 Pattern Formation and Solitons +1005.1086 Rings and Algebras +1005.1340 Human-Computer Interaction +1005.1378 Quantum Gases +1005.1631 Combinatorics +1005.2604 History and Overview +1005.2623 Instrumentation and Detectors +1005.2626 Cosmology and Nongalactic Astrophysics +1005.2629 Combinatorics +1005.2631 Mesoscale and Nanoscale Physics +1005.2636 Logic +1005.2640 Dynamical Systems +1005.2643 Instrumentation and Methods for Astrophysics +1005.2644 Classical Analysis and ODEs +1005.2650 Materials Science +1005.2653 Category Theory +1005.2658 Solar and Stellar Astrophysics +1005.2661 Portfolio Management +1005.2662 Information Theory +1005.2668 Numerical Analysis +1005.2669 Strongly Correlated Electrons +1005.2672 Logic in Computer Science +1005.2679 Algebraic Geometry +1005.2685 +1005.2694 Optimization and Control +1005.2696 Combinatorics +1005.2699 Dynamical Systems +1005.2706 Materials Science +1005.2715 Computer Vision and Pattern Recognition +1005.2721 General Physics +1005.2722 Solar and Stellar Astrophysics +1005.2727 Cosmology and Nongalactic Astrophysics +1005.2728 Phenomenology +1005.2730 Classical Analysis and ODEs +1005.2733 Classical Analysis and ODEs +1005.2737 Functional Analysis +1005.2743 Spectral Theory +1005.2745 Combinatorics +1005.2750 Group Theory +1005.2753 Differential Geometry +1005.2781 Statistics Theory +1005.2782 Differential Geometry +1005.2792 +1005.2816 Discrete Mathematics +1005.2819 Computational Engineering, Finance, and Science +1005.2835 Group Theory +1005.2836 Group Theory +1005.2838 +1005.2842 Complex Variables +1005.2843 Phenomenology +1005.2848 Data Structures and Algorithms +1005.2850 Solar and Stellar Astrophysics +1005.2852 Strongly Correlated Electrons +1005.2856 +1005.2861 Combinatorics +1005.2863 Combinatorics +1005.2869 Mesoscale and Nanoscale Physics +1005.2871 Algebraic Geometry +1005.2873 Experiment +1005.2879 Classical Analysis and ODEs +1005.2893 Probability +1005.2898 Networking and Internet Architecture +1005.2914 Networking and Internet Architecture +1005.2916 Analysis of PDEs +1005.2919 Rings and Algebras +1005.2920 Materials Science +1005.2925 Optics +1005.2932 Superconductivity +1005.2940 Classical Analysis and ODEs +1005.2941 Classical Analysis and ODEs +1005.2946 Number Theory +1005.2955 +1005.2958 Combinatorics +1005.2968 Applications +1005.2970 Phenomenology +1005.2972 Group Theory +1005.2975 Spectral Theory +1005.2980 Spectral Theory +1005.2987 Operator Algebras +1005.2993 Number Theory +1005.2995 Mesoscale and Nanoscale Physics +1005.3007 Algebraic Geometry +1005.3011 +math/0010300 Geometric Topology +math/0102058 Logic +math/0402010 Algebraic Geometry +math/0509441 Probability +math/0602285 Algebraic Geometry +math/0604121 Algebraic Geometry +math/0609328 Operator Algebras +math/0609438 Operator Algebras +math/0610225 Differential Geometry +math/0612077 Number Theory +math/0701464 Probability +0704.0042 General Physics +0704.0598 General Physics +0705.1084 General Physics +0705.1173 General Physics +0707.1738 Algebraic Geometry +0707.3462 Computer Science and Game Theory +0707.4204 Adaptation and Self-Organizing Systems +0710.0792 Algebraic Geometry +0801.0887 General Physics +0801.4092 Algebraic Geometry +0801.4114 Algebraic Geometry +0806.3809 Algebraic Geometry +0806.3811 Algebraic Geometry +0809.0489 Algebraic Geometry +0812.0115 General Physics +0903.1704 Classical Physics +0905.1182 Superconductivity +0905.3373 +0906.3460 Strongly Correlated Electrons +0906.3694 Adaptation and Self-Organizing Systems +0907.4941 General Topology +0908.0190 Quantum Gases +0908.1000 +0908.1397 Computational Complexity +0908.2003 Phenomenology +0909.0849 Soft Condensed Matter +0910.2858 Statistical Mechanics +0911.0842 General Physics +0911.3954 +0911.5671 Mesoscale and Nanoscale Physics +0912.3214 +0912.4860 Phenomenology +1001.0684 Number Theory +1001.0772 Quantum Gases +1001.1799 Information Theory +1001.4055 Cosmology and Nongalactic Astrophysics +1001.4641 Superconductivity +1001.5243 Algebraic Geometry +1002.0633 Cosmology and Nongalactic Astrophysics +1002.1290 Information Theory +1002.1572 Chemical Physics +1002.1928 Formal Languages and Automata Theory +1002.2230 Optimization and Control +1003.2287 Earth and Planetary Astrophysics +1003.4905 Logic in Computer Science +1003.4931 Disordered Systems and Neural Networks +1003.5089 Statistics Theory +1003.5457 Probability +1004.0568 Materials Science +1004.2129 Dynamical Systems +1004.3025 Dynamical Systems +1004.3427 Information Theory +1004.3799 Number Theory +1004.3811 Computational Complexity +1004.3832 Functional Analysis +1004.3912 Chemical Physics +1004.3999 Phenomenology +1004.4008 +1004.4010 Algebraic Geometry +1004.4012 Classical Analysis and ODEs +1004.4015 Analysis of PDEs +1004.4019 Classical Analysis and ODEs +1004.4021 Analysis of PDEs +1004.4022 Databases +1004.4024 Data Structures and Algorithms +1004.4025 Computers and Society +1004.4033 Analysis of PDEs +1004.4038 Number Theory +1004.4040 Representation Theory +1004.4044 Information Theory +1004.4051 Algebraic Geometry +1004.4055 Phenomenology +1004.4057 Data Structures and Algorithms +1004.4058 Differential Geometry +1004.4060 Differential Geometry +1004.4061 Rings and Algebras +1004.4064 Chaotic Dynamics +1004.4067 Accelerator Physics +1004.4070 Information Theory +1004.4077 Geometric Topology +1004.4080 Data Structures and Algorithms +1004.4082 Combinatorics +1004.4083 +1004.4085 Representation Theory +1004.4086 High Energy Astrophysical Phenomena +1004.4087 Functional Analysis +1004.4107 Mesoscale and Nanoscale Physics +1004.4108 Mesoscale and Nanoscale Physics +1004.4109 Programming Languages +1004.4113 Mesoscale and Nanoscale Physics +1004.4115 Representation Theory +1004.4116 Populations and Evolution +1004.4120 Differential Geometry +1004.4121 Soft Condensed Matter +1004.4130 +1004.4133 Quantum Algebra +1004.4137 Earth and Planetary Astrophysics +1004.4140 Strongly Correlated Electrons +1004.4147 Probability +1004.4148 Instrumentation and Methods for Astrophysics +1004.4152 Materials Science +1004.4159 Combinatorics +1004.4163 Superconductivity +1004.4174 Optimization and Control +1004.4178 Strongly Correlated Electrons +1004.4181 Computation and Language +1004.4182 Exactly Solvable and Integrable Systems +1004.4192 Experiment +1004.4193 Mesoscale and Nanoscale Physics +1004.4194 Combinatorics +1004.4196 Discrete Mathematics +1004.4198 Data Analysis, Statistics and Probability +1004.4200 Dynamical Systems +1004.4210 Rings and Algebras +1004.4211 Theory +cond-mat/0604133 Statistical Mechanics +cond-mat/0610761 Soft Condensed Matter +math/0009112 Combinatorics +math/0107011 Combinatorics +math/0110058 Algebraic Geometry +math/0112150 Algebraic Topology +math/0211335 Algebraic Geometry +math/0303052 Algebraic Geometry +math/0304023 Number Theory +math/0306274 Combinatorics +math/0306275 Algebraic Geometry +math/0402111 Number Theory +math/0503224 Algebraic Geometry +math/0512632 Algebraic Geometry +math/0603736 Algebraic Geometry +math/0606242 Algebraic Geometry +math/0610026 Algebraic Geometry +math/0611584 Number Theory +math/0612556 Number Theory +quant-ph/0502173 +0707.0248 +0708.3189 Experiment +0709.3582 Theory +0710.3074 Phenomenology +0711.0895 Algebraic Geometry +0802.0331 Probability +0803.0552 Probability +0804.3131 General Topology +0805.0575 +0805.0704 +0806.1929 +0807.3189 Strongly Correlated Electrons +0808.0871 +0808.1759 Mesoscale and Nanoscale Physics +0808.3964 Category Theory +0809.3164 +0809.5232 Combinatorics +0812.4375 Phenomenology +0812.4886 Instrumentation and Detectors +0901.2450 Probability +0901.3553 Cosmology and Nongalactic Astrophysics +0901.4654 Materials Science +0902.0161 K-Theory and Homology +0902.1177 Cosmology and Nongalactic Astrophysics +0902.2620 Phenomenology +0903.0157 Functional Analysis +0903.0653 General Topology +0903.0657 General Topology +0903.1385 Superconductivity +0903.1520 Theory +0904.0169 +0904.4257 Cosmology and Nongalactic Astrophysics +0905.0073 +0905.3706 Phenomenology +0906.0127 Classical Physics +0906.0266 +0906.0399 +0906.1221 Earth and Planetary Astrophysics +0906.3661 Disordered Systems and Neural Networks +0907.0005 Astrophysics of Galaxies +0907.0911 Soft Condensed Matter +0907.1923 Phenomenology +0907.3070 Materials Science +0907.3242 Theory +0907.4107 Theory +0907.4184 +0907.4544 Theory +0907.5324 Symplectic Geometry +0908.0839 Differential Geometry +0908.1069 Theory +0908.1330 Phenomenology +0908.4384 Differential Geometry +0909.0987 +0909.1298 Quantum Gases +0909.2432 +0909.2583 Fluid Dynamics +0909.3996 Other Condensed Matter +0910.1186 Phenomenology +0910.2450 Quantum Gases +0910.3755 Lattice +0910.3760 Lattice +0910.3772 Lattice +0910.3789 Analysis of PDEs +0910.3791 Phenomenology +0910.3801 Lattice +0910.4026 +0910.4027 Solar and Stellar Astrophysics +0910.4037 Solar and Stellar Astrophysics +0910.4126 Mesoscale and Nanoscale Physics +0910.4356 Theory +0910.4532 Theory +0910.4940 Quantum Gases +0910.5081 Strongly Correlated Electrons +0911.0011 Mesoscale and Nanoscale Physics +0911.1389 Chemical Physics +0911.2084 High Energy Astrophysical Phenomena +0911.3738 Superconductivity +0911.4469 Functional Analysis +0911.4672 Optimization and Control +0912.0003 Earth and Planetary Astrophysics +0912.0595 +0912.2548 Databases +0912.5212 Biological Physics +0912.5374 Strongly Correlated Electrons +0912.5403 Quantum Algebra +1001.0528 Statistical Mechanics +1001.1101 Solar and Stellar Astrophysics +1001.1405 Strongly Correlated Electrons +1001.1596 Phenomenology +1001.3587 Group Theory +1001.3808 +1001.4076 Algebraic Geometry +1001.4083 Methodology +1001.4086 High Energy Astrophysical Phenomena +1001.4095 Number Theory +1001.4099 Neural and Evolutionary Computing +1001.4103 Data Analysis, Statistics and Probability +1001.4104 Software Engineering +1001.4105 Other Condensed Matter +1001.4107 Software Engineering +1001.4110 Information Theory +1001.4111 +1001.4114 Classical Physics +1001.4117 Optics +1001.4120 Information Theory +1001.4122 Multiagent Systems +1001.4125 Numerical Analysis +1001.4130 Materials Science +1001.4132 Rings and Algebras +1001.4139 Fluid Dynamics +1001.4140 Computer Vision and Pattern Recognition +1001.4145 Combinatorics +1001.4146 General Physics +1001.4147 Classical Analysis and ODEs +1001.4150 Symbolic Computation +1001.4151 Pricing of Securities +1001.4152 Superconductivity +1001.4156 Group Theory +1001.4164 Differential Geometry +1001.4165 Combinatorics +1001.4169 Number Theory +1001.4170 Number Theory +1001.4171 Functional Analysis +1001.4174 Algebraic Geometry +1001.4177 Populations and Evolution +1001.4178 History and Philosophy of Physics +1001.4182 +1001.4183 Atomic Physics +1001.4184 Networking and Internet Architecture +1001.4185 Networking and Internet Architecture +1001.4186 Cryptography and Security +1001.4187 Number Theory +1001.4189 Computer Vision and Pattern Recognition +1001.4190 Sound +1001.4191 Networking and Internet Architecture +1001.4192 Software Engineering +1001.4193 Software Engineering +1001.4197 Distributed, Parallel, and Cluster Computing +1001.4199 Other Computer Science +1001.4200 Networking and Internet Architecture +1001.4202 Operator Algebras +1001.4204 Representation Theory +1001.4208 Methodology +1001.4210 Functional Analysis +1001.4214 Instrumentation and Detectors +1001.4216 Combinatorics +1001.4218 History and Philosophy of Physics +1001.4221 General Physics +1001.4223 Combinatorics +1001.4231 Computational Geometry +1001.4232 Astrophysics of Galaxies +1001.4235 Physics and Society +1001.4239 Algebraic Geometry +1001.4240 Rings and Algebras +1001.4249 Combinatorics +1001.4251 Logic in Computer Science +1001.4253 Theory +1001.4263 Molecular Networks +1001.4266 Number Theory +1001.4268 Combinatorics +1001.4270 Risk Management +1001.4282 Combinatorics +1001.4285 +1001.4286 Pattern Formation and Solitons +1001.4291 Instrumentation and Detectors +1001.4293 Software Engineering +1001.4294 Complex Variables +1001.4295 Information Theory +1001.4297 Computer Vision and Pattern Recognition +1001.4299 Software Engineering +1001.4301 Neural and Evolutionary Computing +1001.4305 Information Theory +1001.4308 Analysis of PDEs +1001.4310 Superconductivity +1001.4314 Operator Algebras +1001.4318 Phenomenology +1001.4321 +1001.4324 Theory +1001.4326 Differential Geometry +1001.4328 +1001.4330 Differential Geometry +1001.4332 Differential Geometry +1001.4333 Mesoscale and Nanoscale Physics +1001.4334 Information Theory +1001.4338 +1001.4348 High Energy Astrophysical Phenomena +1001.4357 Phenomenology +1001.4360 Representation Theory +1001.4362 High Energy Astrophysical Phenomena +1001.4366 Lattice +1001.4367 Theory +1001.4368 Information Retrieval +1001.4369 Classical Analysis and ODEs +1001.4370 Cosmology and Nongalactic Astrophysics +1001.4380 General Mathematics +1001.4381 Logic in Computer Science +1001.4383 Instrumentation and Methods for Astrophysics +1001.4385 General Physics +1001.4386 +1001.4391 Statistical Mechanics +1001.4392 Combinatorics +1001.4395 Physics Education +1001.4396 Geometric Topology +1001.4399 Solar and Stellar Astrophysics +1001.4404 Rings and Algebras +1001.4405 Logic in Computer Science +1001.4409 Strongly Correlated Electrons +1001.4411 Cryptography and Security +1001.4413 Software Engineering +1001.4418 Geometric Topology +1001.4419 Multiagent Systems +1001.4423 Information Theory +1001.4424 Data Analysis, Statistics and Probability +1001.4425 Statistics Theory +1001.4427 Computer Science and Game Theory +1001.4429 Logic in Computer Science +1001.4430 Physics and Society +1001.4433 Digital Libraries +1001.4434 Programming Languages +1001.4435 Combinatorics +1001.4436 Software Engineering +1001.4437 Logic in Computer Science +1001.4438 Logic in Computer Science +1001.4439 Lattice +1001.4443 Solar and Stellar Astrophysics +1001.4451 Molecular Networks +1001.4455 Number Theory +1001.4460 Probability +1001.4463 Phenomenology +1001.4465 Astrophysics of Galaxies +1001.4467 Phenomenology +1001.4473 High Energy Astrophysical Phenomena +1001.4477 +1001.4483 +1001.4484 Analysis of PDEs +1001.4488 Analysis of PDEs +1001.4493 Hardware Architecture +1001.4494 Optimization and Control +1001.4503 High Energy Astrophysical Phenomena +1001.4504 Algebraic Geometry +1001.4510 Operator Algebras +1001.4516 Physics and Society +1001.4517 Strongly Correlated Electrons +hep-ex/0011053 Experiment +hep-ph/0606027 Phenomenology +hep-th/0612115 Theory +math/0605387 Dynamical Systems +0705.1372 +0708.0728 Computational Physics +0710.2901 +0803.2608 Quantitative Methods +0805.4580 Dynamical Systems +0805.4783 Computational Physics +0806.0722 Statistical Mechanics +0809.0613 +0809.2399 Algebraic Geometry +0810.0097 Probability +0810.0405 Atomic Physics +0812.3463 +0903.4340 Theory +0906.3815 Logic in Computer Science +0907.2573 Soft Condensed Matter +0907.3103 Operator Algebras +0908.2428 Cosmology and Nongalactic Astrophysics +0910.2773 Cosmology and Nongalactic Astrophysics +0911.0915 Chaotic Dynamics +0912.3685 Mesoscale and Nanoscale Physics +0912.4688 Statistics Theory +0912.5407 Adaptation and Self-Organizing Systems +1001.4796 Solar and Stellar Astrophysics +1002.0563 Materials Science +1002.4365 K-Theory and Homology +1003.1289 Probability +1003.3238 Cosmology and Nongalactic Astrophysics +1003.4403 Statistical Mechanics +1004.1340 Superconductivity +1004.2406 +1005.3441 Superconductivity +1006.3077 +1006.3585 Data Structures and Algorithms +1006.4166 Cosmology and Nongalactic Astrophysics +1007.1058 +1007.1305 Statistical Mechanics +1007.2856 Theory +1007.4327 Classical Analysis and ODEs +1007.4815 Cosmology and Nongalactic Astrophysics +1008.0052 +1008.0623 +1008.1396 High Energy Astrophysical Phenomena +1008.2197 +1008.2284 +1008.2412 Neural and Evolutionary Computing +1008.3445 +1008.3587 Spectral Theory +1009.0017 Theory +1009.1465 Statistical Mechanics +1009.2959 Phenomenology +1009.3554 Phenomenology +1009.5449 Superconductivity +1010.1239 Tissues and Organs +1010.2864 Quantum Gases +1010.3926 Fluid Dynamics +1010.5396 +1010.5767 Disordered Systems and Neural Networks +1010.6023 +1011.2284 Statistical Mechanics +1011.3472 Soft Condensed Matter +1011.5098 Populations and Evolution +1011.5104 Probability +1011.6572 Experiment +1012.0508 History and Overview +1012.0606 Molecular Networks +1012.0690 Statistics Theory +1012.0736 Medical Physics +1012.1065 Analysis of PDEs +1012.1144 Number Theory +1012.1329 Discrete Mathematics +1012.1330 Discrete Mathematics +1012.1332 Discrete Mathematics +1012.1333 Discrete Mathematics +1012.1338 Data Structures and Algorithms +1012.1346 Classical Analysis and ODEs +1012.1350 Combinatorics +1012.1356 Mesoscale and Nanoscale Physics +1012.1369 Classical Physics +1012.1370 Learning +1012.1384 Astrophysics of Galaxies +1012.1389 Functional Analysis +1012.1390 Functional Analysis +1012.1392 +1012.1394 Commutative Algebra +1012.1414 Methodology +1012.1415 Category Theory +1012.1416 Machine Learning +1012.1417 +1012.1423 Methodology +1012.1427 Analysis of PDEs +1012.1433 Algebraic Topology +1012.1435 Solar and Stellar Astrophysics +1012.1436 Superconductivity +1012.1446 Mesoscale and Nanoscale Physics +1012.1449 Materials Science +1012.1458 +1012.1459 Rings and Algebras +1012.1465 Materials Science +1012.1479 Methodology +1012.1482 +1012.1486 Cosmology and Nongalactic Astrophysics +1012.1489 Methodology +1012.1496 Functional Analysis +1012.1499 Cosmology and Nongalactic Astrophysics +1012.1502 Computational Geometry +1012.1504 Materials Science +1012.1527 Earth and Planetary Astrophysics +1012.1532 Formal Languages and Automata Theory +1012.1534 Functional Analysis +1012.1538 Algebraic Geometry +1012.1547 Computer Science and Game Theory +1012.1550 Combinatorics +1012.1552 Artificial Intelligence +1012.1555 Classical Analysis and ODEs +1012.1563 Statistics Theory +1012.1575 Accelerator Physics +1012.1586 Solar and Stellar Astrophysics +1012.1591 Cosmology and Nongalactic Astrophysics +cond-mat/0701655 Mesoscale and Nanoscale Physics +physics/0702106 Physics and Society +quant-ph/0609165 +0704.2838 Quantum Algebra +0708.3049 +0711.1035 Combinatorics +0712.0155 Theory +0712.1642 Statistical Mechanics +0801.2397 Quantum Algebra +0804.2822 +0806.0569 Category Theory +0807.3436 Statistical Mechanics +0808.1453 Statistical Mechanics +0810.2385 Strongly Correlated Electrons +0810.4186 Quantum Algebra +0810.5174 Algebraic Topology +0811.0639 Algebraic Geometry +0812.1716 Quantum Algebra +0812.4694 +0901.2199 +0902.0948 Theory +0902.2444 Combinatorics +0902.4258 Mesoscale and Nanoscale Physics +0903.2519 Strongly Correlated Electrons +0904.3362 Differential Geometry +0905.0310 Cosmology and Nongalactic Astrophysics +0905.0405 Theory +0905.1504 Optics +0905.2270 +0905.4229 Lattice +0906.3647 Chaotic Dynamics +0906.4809 Algebraic Geometry +0907.1856 Statistical Mechanics +0907.3852 Materials Science +0908.0770 Astrophysics of Galaxies +0908.1426 Phenomenology +0908.2522 +0908.3163 Methodology +0908.3844 Theory +0908.3875 Theory +0909.0683 Combinatorics +0909.1270 Complex Variables +0909.2134 Optics +0909.2475 +0909.5149 Solar and Stellar Astrophysics +0911.1724 +0911.2077 Probability +0911.3457 Quantum Gases +0911.5322 +0912.0401 +0912.4821 Rings and Algebras +1001.0712 Materials Science +1001.1492 Exactly Solvable and Integrable Systems +1001.3142 Solar and Stellar Astrophysics +1001.3751 Other Computer Science +1002.1091 Strongly Correlated Electrons +1002.1656 Materials Science +1002.1856 Geophysics +1002.4412 Solar and Stellar Astrophysics +1002.4912 Mesoscale and Nanoscale Physics +1003.0479 Mesoscale and Nanoscale Physics +1003.4785 Numerical Analysis +1003.5762 Differential Geometry +1004.0354 Differential Geometry +1004.0423 Exactly Solvable and Integrable Systems +1004.0446 Physics and Society +1004.0519 +1004.0704 Strongly Correlated Electrons +1004.0706 Soft Condensed Matter +1004.0707 +1004.0714 Rings and Algebras +1004.0715 Number Theory +1004.0723 Functional Analysis +1004.0731 Number Theory +1004.0738 Solar and Stellar Astrophysics +1004.0742 Number Theory +1004.0743 General Physics +1004.0748 Rings and Algebras +1004.0751 Exactly Solvable and Integrable Systems +1004.0755 Computer Vision and Pattern Recognition +1004.0761 Numerical Analysis +1004.0766 Graphics +1004.0775 Instrumentation and Detectors +1004.0793 Optimization and Control +1004.0797 Materials Science +1004.0798 Information Theory +1004.0799 Information Theory +1004.0809 Phenomenology +1004.0817 Computational Complexity +1004.0826 +1004.0829 Commutative Algebra +1004.0833 Commutative Algebra +1004.0834 Soft Condensed Matter +1004.0836 Earth and Planetary Astrophysics +1004.0845 Mesoscale and Nanoscale Physics +1004.0850 Biological Physics +1004.0859 Strongly Correlated Electrons +1004.0860 Functional Analysis +1004.0864 Quantum Algebra +1004.0870 Symplectic Geometry +1004.0879 Classical Physics +1004.0883 Biological Physics +1004.0884 Phenomenology +1004.0885 Statistical Mechanics +1004.0889 Algebraic Topology +1004.0891 Information Theory +1004.0892 Information Theory +1004.0905 Optimization and Control +1004.0907 Information Theory +1004.0908 Algebraic Geometry +1004.0910 +1004.0911 Methodology +1004.0912 Cosmology and Nongalactic Astrophysics +1004.0914 Information Theory +1004.0936 Solar and Stellar Astrophysics +1004.0939 Phenomenology +1004.0940 Dynamical Systems +1004.0941 Strongly Correlated Electrons +alg-geom/9707004 Algebraic Geometry +cond-mat/0205567 Statistical Mechanics +cond-mat/0608152 Statistical Mechanics +hep-ph/0006332 Phenomenology +hep-th/0005090 Theory +hep-th/0006010 Theory +hep-th/0006243 Theory +hep-th/0007175 Theory +hep-th/0009140 Theory +hep-th/0012054 Theory +hep-th/0107177 Theory +hep-th/0109096 Theory +hep-th/0202056 Theory +hep-th/0203061 Theory +hep-th/0211170 Theory +hep-th/0301006 Theory +hep-th/0303207 Theory +hep-th/0304079 Theory +hep-th/0304115 Theory +hep-th/0308089 Theory +hep-th/0312171 Theory +hep-th/0403047 Theory +hep-th/0406051 Theory +hep-th/0406177 Theory +hep-th/0409149 Theory +hep-th/0409245 Theory +hep-th/0501052 Theory +hep-th/0503083 Theory +hep-th/0503126 Theory +hep-th/0512039 Theory +hep-th/0602145 Theory +hep-th/0605206 Theory +hep-th/0609018 Theory +hep-th/9108004 Theory +hep-th/9201056 Theory +hep-th/9204083 Theory +hep-th/9206078 Theory +hep-th/9207094 Theory +hep-th/9208027 Theory +hep-th/9210065 Theory +hep-th/9301042 Theory +hep-th/9303067 Theory +hep-th/9304026 Theory +hep-th/9307038 Theory +hep-th/9310112 Theory +hep-th/9403054 Theory +hep-th/9403195 Theory +hep-th/9404184 Theory +hep-th/9407087 Theory +hep-th/9408074 Theory +hep-th/9408099 Theory +hep-th/9409111 Theory +hep-th/9409188 Theory +hep-th/9410052 Theory +hep-th/9411102 Theory +hep-th/9503124 Theory +hep-th/9503212 Theory +hep-th/9505053 Theory +hep-th/9505186 Theory +hep-th/9506101 Theory +hep-th/9507050 Theory +hep-th/9510101 Theory +hep-th/9510135 Theory +hep-th/9510169 Theory +hep-th/9510209 Theory +hep-th/9511030 Theory +hep-th/9511154 Theory +hep-th/9512219 Theory +hep-th/9601036 Theory +hep-th/9602070 Theory +hep-th/9603003 Theory +hep-th/9603142 Theory +hep-th/9603150 Theory +hep-th/9604030 Theory +hep-th/9605184 Theory +hep-th/9606122 Theory +hep-th/9607091 Theory +hep-th/9609122 Theory +hep-th/9609159 Theory +hep-th/9610234 Theory +hep-th/9611230 Theory +hep-th/9612216 Theory +hep-th/9701162 Theory +hep-th/9703166 Theory +hep-th/9706109 Theory +hep-th/9707093 Theory +hep-th/9709193 Theory +hep-th/9711053 Theory +hep-th/9712028 Theory +hep-th/9802150 Theory +hep-th/9803131 Theory +hep-th/9805112 Theory +hep-th/9807080 Theory +hep-th/9807109 Theory +hep-th/9807205 Theory +hep-th/9810188 Theory +hep-th/9811048 Theory +hep-th/9812012 Theory +hep-th/9901021 Theory +hep-th/9902098 Theory +hep-th/9903224 Theory +hep-th/9905104 Theory +hep-th/9906070 Theory +hep-th/9907041 Theory +hep-th/9908142 Theory +hep-th/9909229 Theory +hep-th/9910205 Theory +hep-th/9910245 Theory +hep-th/9912086 Theory +hep-th/9912279 Theory +math/0309379 Number Theory +math/0511531 Algebraic Geometry +math/0602096 Algebraic Geometry +math/9404229 History and Overview +nlin/0406050 Exactly Solvable and Integrable Systems +0707.0874 +0708.0580 Formal Languages and Automata Theory +0708.3370 Soft Condensed Matter +0710.2137 +0803.0107 Commutative Algebra +0806.3063 +0807.2490 +0812.4788 Analysis of PDEs +0901.4522 +0903.0651 Complex Variables +0903.1363 +0903.1979 Neurons and Cognition +0904.2848 Number Theory +0908.4526 Statistical Mechanics +0909.2929 Probability +0910.2742 Spectral Theory +0911.4245 +0912.3286 Mesoscale and Nanoscale Physics +0912.3844 Classical Analysis and ODEs +0912.4363 +1001.2858 Soft Condensed Matter +1001.4194 Mesoscale and Nanoscale Physics +1002.2865 Disordered Systems and Neural Networks +1002.3616 Theory +1003.1979 Superconductivity +1003.2071 Quantum Gases +1003.2757 Quantum Gases +1003.3247 Fluid Dynamics +1004.0638 Materials Science +1004.4968 Information Theory +1005.0619 +1005.3352 Theory +1005.3625 +1005.5088 Mesoscale and Nanoscale Physics +1005.5550 Atomic Physics +1006.2251 Superconductivity +1006.4798 Quantum Gases +1006.4865 Mesoscale and Nanoscale Physics +1007.2179 Superconductivity +1007.2478 Functional Analysis +1007.2709 +1007.2901 Statistical Mechanics +1007.3125 Optimization and Control +1007.5342 +1008.0493 Instrumentation and Methods for Astrophysics +1008.0873 Solar and Stellar Astrophysics +1008.0874 History and Overview +1008.0881 Pattern Formation and Solitons +1008.0884 Geometric Topology +1008.0888 Representation Theory +1008.0889 Superconductivity +1008.0890 Instrumentation and Methods for Astrophysics +1008.0891 Differential Geometry +1008.0892 Quantum Algebra +1008.0903 Operator Algebras +1008.0905 +1008.0906 Phenomenology +1008.0907 Phenomenology +1008.0909 Programming Languages +1008.0913 Probability +1008.0915 Computational Complexity +1008.0916 Geometric Topology +1008.0919 Information Theory +1008.0923 Phenomenology +1008.0924 +1008.0928 Probability +1008.0936 +1008.0937 Materials Science +1008.0939 Soft Condensed Matter +1008.0940 +1008.0941 Multiagent Systems +1008.0944 Mesoscale and Nanoscale Physics +1008.0945 Phenomenology +1008.0947 Cosmology and Nongalactic Astrophysics +1008.0950 Biological Physics +1008.0953 Biological Physics +1008.0964 Metric Geometry +1008.0968 Cryptography and Security +1008.0973 Differential Geometry +1008.0975 Classical Physics +1008.0976 Classical Physics +1008.0979 +1008.0980 Quantum Algebra +1008.0985 Theory +1008.0986 Mesoscale and Nanoscale Physics +1008.1000 Number Theory +1008.1007 Geometric Topology +1008.1011 Classical Analysis and ODEs +1008.1012 Commutative Algebra +1008.1013 Strongly Correlated Electrons +1008.1020 Optimization and Control +1008.1022 Soft Condensed Matter +1008.1025 Probability +1008.1028 +1008.1030 Numerical Analysis +1008.1032 General Finance +1008.1037 Combinatorics +1008.1042 Dynamical Systems +1008.1051 Computational Geometry +1008.1053 Computational Geometry +math/0205170 Algebraic Topology +math/0409308 Differential Geometry +math/0609283 Number Theory +nucl-th/0009048 +quant-ph/0203142 +quant-ph/0411045 +0704.1433 Computational Finance +0705.1980 Group Theory +0705.4681 Group Theory +0708.1930 Probability +0709.4173 General Mathematics +0711.2463 +0802.3643 Other Condensed Matter +0802.4097 Other Condensed Matter +0803.2722 Combinatorics +0804.1335 Combinatorics +0806.0664 +0806.3131 Combinatorics +0811.1186 Phenomenology +0811.1233 Other Condensed Matter +0812.1058 Mesoscale and Nanoscale Physics +0812.3954 Algebraic Topology +0901.2611 Differential Geometry +0902.0329 Strongly Correlated Electrons +0902.3726 Theory +0902.4178 Statistical Mechanics +0903.0048 Analysis of PDEs +0903.1780 Analysis of PDEs +0903.2954 Statistical Mechanics +0903.3808 +0904.1878 Phenomenology +0905.1275 Probability +0905.1933 Classical Analysis and ODEs +0905.2629 Pattern Formation and Solitons +0906.0874 Differential Geometry +0906.3011 Theory +0907.0877 Formal Languages and Automata Theory +0907.2559 Materials Science +0907.3077 Quantum Gases +0907.3390 Instrumentation and Methods for Astrophysics +0907.4365 Number Theory +0907.4636 Mesoscale and Nanoscale Physics +0907.4942 Theory +0908.0057 Theory +0908.2021 Solar and Stellar Astrophysics +0908.2870 Strongly Correlated Electrons +0909.3402 Combinatorics +0909.5131 Optics +0909.5391 +0909.5447 K-Theory and Homology +0910.0393 Statistical Mechanics +0910.0801 History and Overview +0910.1549 +0910.2435 Phenomenology +0910.3634 Superconductivity +0910.4065 +0910.4245 Solar and Stellar Astrophysics +0910.4651 +0910.5457 Theory +0910.5545 Phenomenology +0910.5565 +0910.5588 Instrumentation and Detectors +0911.1207 Theory +0911.3400 Cosmology and Nongalactic Astrophysics +0911.4057 Superconductivity +0911.5466 +0912.1686 Combinatorics +0912.1694 Probability +0912.2798 History and Overview +0912.4106 Materials Science +1001.0297 +1001.1058 Cosmology and Nongalactic Astrophysics +1001.2357 History and Overview +1001.3702 Metric Geometry +1002.0187 High Energy Astrophysical Phenomena +1002.0378 Computer Science and Game Theory +1002.0870 Differential Geometry +1002.0969 Representation Theory +1002.1072 Strongly Correlated Electrons +1002.1088 Theory +1002.1089 Combinatorics +1002.1092 Computational Geometry +1002.1094 Mesoscale and Nanoscale Physics +1002.1095 Computation and Language +1002.1099 Human-Computer Interaction +1002.1100 Populations and Evolution +1002.1102 Computational Physics +1002.1103 Astrophysics of Galaxies +1002.1104 Databases +1002.1108 Differential Geometry +1002.1115 Astrophysics of Galaxies +1002.1121 Probability +1002.1125 Analysis of PDEs +1002.1126 Analysis of PDEs +1002.1127 Analysis of PDEs +1002.1131 Cosmology and Nongalactic Astrophysics +1002.1135 +1002.1137 Instrumentation and Methods for Astrophysics +1002.1138 Combinatorics +1002.1139 Classical Analysis and ODEs +1002.1140 Optimization and Control +1002.1143 Databases +1002.1144 Learning +1002.1146 Networking and Internet Architecture +1002.1148 Computer Vision and Pattern Recognition +1002.1149 Performance +1002.1150 Databases +1002.1151 Networking and Internet Architecture +1002.1152 Networking and Internet Architecture +1002.1153 K-Theory and Homology +1002.1154 Performance +1002.1157 Artificial Intelligence +1002.1159 Databases +1002.1160 Cryptography and Security +1002.1161 Functional Analysis +1002.1162 Networking and Internet Architecture +1002.1163 Cryptography and Security +1002.1164 Neural and Evolutionary Computing +1002.1166 Multimedia +1002.1167 Numerical Analysis +1002.1168 Multimedia +1002.1171 Astrophysics of Galaxies +1002.1173 Instrumentation and Methods for Astrophysics +1002.1174 Cryptography and Security +1002.1175 Number Theory +1002.1176 Neural and Evolutionary Computing +1002.1178 Networking and Internet Architecture +1002.1179 Networking and Internet Architecture +1002.1180 Classical Analysis and ODEs +1002.1181 Computers and Society +1002.1184 Neural and Evolutionary Computing +1002.1185 Databases +1002.1186 Networking and Internet Architecture +1002.1188 Software Engineering +1002.1191 Information Theory +1002.1192 Combinatorics +1002.1193 Other Computer Science +1002.1194 Instrumentation and Methods for Astrophysics +1002.1195 Multimedia +1002.1196 Populations and Evolution +1002.1198 Other Computer Science +1002.1199 Software Engineering +1002.1201 Other Computer Science +1002.1206 Classical Physics +1002.1208 Astrophysics of Galaxies +1002.1212 Probability +1002.1220 Astrophysics of Galaxies +1002.1223 +1002.1224 Astrophysics of Galaxies +1002.1225 Phenomenology +1002.1226 Fluid Dynamics +1002.1227 Statistical Mechanics +1002.1230 Statistical Mechanics +1002.1236 Group Theory +1002.1238 Classical Physics +1002.1240 Functional Analysis +1002.1241 Optics +1002.1245 Astrophysics of Galaxies +1002.1247 Machine Learning +1002.1252 Astrophysics of Galaxies +1002.1253 +1002.1256 Combinatorics +1002.1259 Astrophysics of Galaxies +1002.1261 High Energy Astrophysical Phenomena +1002.1262 Astrophysics of Galaxies +1002.1265 Group Theory +1002.1266 Group Theory +1002.1269 Astrophysics of Galaxies +1002.1273 Strongly Correlated Electrons +1002.1276 Astrophysics of Galaxies +1002.1277 Astrophysics of Galaxies +1002.1279 Analysis of PDEs +1002.1283 Mesoscale and Nanoscale Physics +1002.1289 Phenomenology +1002.1294 Analysis of PDEs +1002.1296 Geometric Topology +1002.1303 Experiment +math/0404326 Differential Geometry +math/0506535 Group Theory +math/0607741 Group Theory +math/0610366 Analysis of PDEs +math/0612482 Rings and Algebras +math/0612765 Representation Theory +0704.1066 Numerical Analysis +0704.1891 Geometric Topology +0704.3698 Algebraic Geometry +0705.0118 Rings and Algebras +0706.0632 Symplectic Geometry +0707.3108 Representation Theory +0709.0667 Algebraic Geometry +0710.2521 General Topology +0801.0258 Computational Geometry +0804.3459 Information Theory +0807.0434 Geometric Topology +0808.0277 Group Theory +0809.2472 Phenomenology +0810.0337 Statistical Mechanics +0901.2903 Information Theory +0901.3563 +0902.2202 Quantum Algebra +0903.5232 Category Theory +0904.3193 Mesoscale and Nanoscale Physics +0905.2335 Quantum Algebra +0906.4972 Logic +0907.0726 Data Structures and Algorithms +0907.1114 +0907.2970 Phenomenology +0907.4399 Superconductivity +0907.5236 Probability +0908.4575 Chaotic Dynamics +0909.2670 Algebraic Geometry +0909.5672 Functional Analysis +0910.3544 Combinatorics +0910.4439 Exactly Solvable and Integrable Systems +0911.0197 Superconductivity +0911.2304 Phenomenology +0911.2648 Strongly Correlated Electrons +0911.3822 Classical Physics +0911.5239 Optimization and Control +0911.5633 Quantum Gases +0912.1179 +0912.1254 Quantum Gases +0912.3849 +1001.2000 Mesoscale and Nanoscale Physics +1001.2327 Information Theory +1001.3416 Theory +1001.3634 +1001.3905 Strongly Correlated Electrons +1001.4298 Information Theory +1002.2200 Optics +1002.2304 Strongly Correlated Electrons +1002.4302 Algebraic Topology +1003.1856 Soft Condensed Matter +1003.2890 Strongly Correlated Electrons +1003.4558 +1004.1457 Phenomenology +1004.1465 Quantum Gases +1004.3324 +1004.5137 Soft Condensed Matter +1005.1116 +1005.1141 Logic in Computer Science +1005.4237 Dynamical Systems +1005.4853 Information Theory +1005.5024 Metric Geometry +1005.5595 Rings and Algebras +1005.5636 Instrumentation and Methods for Astrophysics +1005.5644 +1006.0053 Representation Theory +1006.0193 Networking and Internet Architecture +1006.0201 Computational Physics +1006.0228 Cosmology and Nongalactic Astrophysics +1006.0235 Optics +1006.0236 Materials Science +1006.0245 Information Theory +1006.0246 Astrophysics of Galaxies +1006.0247 Cryptography and Security +1006.0258 Geometric Topology +1006.0260 Instrumentation and Detectors +1006.0263 Optics +1006.0269 Representation Theory +1006.0274 Artificial Intelligence +1006.0277 Information Theory +1006.0290 Group Theory +1006.0291 Computational Geometry +1006.0297 Optics +1006.0300 +1006.0301 Exactly Solvable and Integrable Systems +1006.0303 General Physics +1006.0308 Distributed, Parallel, and Cluster Computing +1006.0310 Optimization and Control +1006.0312 Information Theory +1006.0314 Experiment +1006.0319 Mesoscale and Nanoscale Physics +1006.0330 Information Theory +1006.0334 Information Theory +1006.0335 High Energy Astrophysical Phenomena +1006.0343 Materials Science +1006.0350 Chaotic Dynamics +1006.0351 Statistical Mechanics +1006.0355 Information Theory +1006.0356 Chemical Physics +1006.0357 Quantum Gases +1006.0358 Biological Physics +1006.0373 +1006.0375 Information Theory +1006.0378 Numerical Analysis +1006.0382 Number Theory +1006.0385 Artificial Intelligence +1006.0391 Mesoscale and Nanoscale Physics +1006.0392 Numerical Analysis +1006.0393 Logic in Computer Science +1006.0394 Computational Complexity +1006.0395 Logic in Computer Science +1006.0396 Logic in Computer Science +1006.0397 Logic in Computer Science +1006.0399 Computational Complexity +1006.0400 Computational Complexity +1006.0401 Mathematical Software +1006.0402 Computational Complexity +1006.0403 Logic in Computer Science +1006.0404 Mathematical Software +1006.0405 Numerical Analysis +1006.0406 Computational Complexity +1006.0414 Strongly Correlated Electrons +1006.0419 Instrumentation and Methods for Astrophysics +1006.0429 Phenomenology +1006.0437 Strongly Correlated Electrons +1006.0438 Differential Geometry +1006.0443 Combinatorics +1006.0445 Experiment +1006.0448 Neural and Evolutionary Computing +1006.0461 +1006.0463 +1006.0465 Algebraic Geometry +1006.0466 Number Theory +1006.0468 +1006.0474 Combinatorics +alg-geom/9502027 Algebraic Geometry +alg-geom/9502028 Algebraic Geometry +gr-qc/0103001 +math/0008218 Differential Geometry +math/0403429 Group Theory +math/0411470 Geometric Topology +math/0512538 Representation Theory +math/0601023 Algebraic Geometry +math/0606387 Representation Theory +math/0612559 Algebraic Geometry +math/0612561 Algebraic Geometry +math/0703296 Algebraic Geometry +math/9904053 Geometric Topology +0706.2661 +0708.1012 Atomic Physics +0708.3591 Spectral Theory +0708.3594 Spectral Theory +0708.3595 Complex Variables +0709.4283 Atomic Physics +0710.0150 Soft Condensed Matter +0711.3163 Representation Theory +0712.0706 Differential Geometry +0712.3590 Mesoscale and Nanoscale Physics +0802.4240 Phenomenology +0803.0973 Number Theory +0804.0722 Data Structures and Algorithms +0804.0735 Data Structures and Algorithms +0804.2320 Spectral Theory +0805.0478 Mesoscale and Nanoscale Physics +0805.2282 +0805.3056 +0806.3182 +0806.3587 Analysis of PDEs +0806.3790 Differential Geometry +0807.1877 +0807.3010 Classical Analysis and ODEs +0808.2808 Theory +0809.0974 Computation +0809.2055 +0809.2479 Algebraic Geometry +0809.4839 Discrete Mathematics +0810.0538 Mesoscale and Nanoscale Physics +0810.0940 Probability +0810.2221 Atomic Physics +0810.2361 Quantum Algebra +0810.2783 +0812.1470 Algebraic Geometry +0812.4353 Probability +0901.0437 Strongly Correlated Electrons +0901.2365 Analysis of PDEs +0901.4640 Dynamical Systems +0902.0374 Materials Science +0902.4771 Complex Variables +0903.4928 Probability +0903.5023 Soft Condensed Matter +0904.0860 General Physics +0904.1501 +0904.3848 Rings and Algebras +0904.4823 Phenomenology +0905.1861 Complex Variables +0905.2108 Theory +0905.2749 Algebraic Geometry +0905.2963 Quantum Gases +0906.0862 Data Structures and Algorithms +0906.1359 Data Structures and Algorithms +0906.1453 +0906.2903 Differential Geometry +0906.3462 Fluid Dynamics +0906.4738 Mesoscale and Nanoscale Physics +0906.4916 Operator Algebras +0906.5225 Fluid Dynamics +0907.1745 Strongly Correlated Electrons +0907.4166 Computer Science and Game Theory +0908.0321 +0908.0425 Cosmology and Nongalactic Astrophysics +0908.0968 Data Structures and Algorithms +0908.1851 Algebraic Geometry +0908.2134 +0908.2266 Representation Theory +0908.3629 Probability +0909.1459 Instrumentation and Methods for Astrophysics +0909.3068 +0909.4656 Strongly Correlated Electrons +0909.5433 Statistical Mechanics +0910.0027 Superconductivity +0910.3635 Soft Condensed Matter +0911.0088 Materials Science +0911.1621 Mesoscale and Nanoscale Physics +0911.2376 Quantum Gases +0912.0775 Optics +0912.2017 +0912.2361 Theory +0912.4239 +0912.4640 +1001.2710 Statistical Mechanics +1001.2910 Number Theory +1001.3497 Software Engineering +1001.4255 Logic in Computer Science +1001.4803 Cosmology and Nongalactic Astrophysics +1001.5152 +1001.5154 Superconductivity +1002.2286 Instrumentation and Methods for Astrophysics +1002.2385 Networking and Internet Architecture +1002.2573 Pricing of Securities +1002.3389 +1002.3539 Probability +1002.3864 Computational Complexity +1002.3996 Software Engineering +1002.4373 Number Theory +1003.0650 Mesoscale and Nanoscale Physics +1003.1505 Mesoscale and Nanoscale Physics +1003.1682 Software Engineering +1003.1993 Cell Behavior +1003.2018 +1003.3408 Algebraic Geometry +1003.3704 Computational Complexity +1003.3706 Atomic Physics +1003.4077 Software Engineering +1003.4517 Strongly Correlated Electrons +1003.4853 Classical Analysis and ODEs +1003.5231 Mesoscale and Nanoscale Physics +1003.5233 Instrumentation and Detectors +1003.5237 Differential Geometry +1003.5241 Astrophysics of Galaxies +1003.5246 General Physics +1003.5248 Functional Analysis +1003.5251 Phenomenology +1003.5252 Number Theory +1003.5254 Probability +1003.5263 Numerical Analysis +1003.5266 Chaotic Dynamics +1003.5268 Geometric Topology +1003.5269 Complex Variables +1003.5270 Materials Science +1003.5274 Superconductivity +1003.5275 Rings and Algebras +1003.5279 Quantum Algebra +1003.5280 Representation Theory +1003.5286 Functional Analysis +1003.5288 Cellular Automata and Lattice Gases +1003.5290 Numerical Analysis +1003.5296 Cosmology and Nongalactic Astrophysics +1003.5297 Geophysics +1003.5300 Geophysics +1003.5302 Analysis of PDEs +1003.5307 Differential Geometry +1003.5308 Solar and Stellar Astrophysics +1003.5316 Number Theory +1003.5318 High Energy Astrophysical Phenomena +1003.5320 Computer Vision and Pattern Recognition +1003.5325 Human-Computer Interaction +1003.5328 Computer Science and Game Theory +1003.5336 Number Theory +1003.5342 Distributed, Parallel, and Cluster Computing +1003.5344 Materials Science +1003.5345 Information Theory +1003.5349 Numerical Analysis +1003.5353 Rings and Algebras +1003.5355 Group Theory +1003.5362 Combinatorics +1003.5363 Logic in Computer Science +1003.5366 +1003.5368 Combinatorics +1003.5370 Pattern Formation and Solitons +1003.5371 Solar and Stellar Astrophysics +1003.5372 Computation and Language +1003.5373 Geophysics +1003.5375 Analysis of PDEs +1003.5377 Group Theory +1003.5378 Materials Science +1003.5379 Differential Geometry +1003.5383 Cryptography and Security +1003.5385 Cryptography and Security +1003.5390 Number Theory +1003.5392 Geometric Topology +1003.5393 Materials Science +1003.5398 Commutative Algebra +1003.5411 Atmospheric and Oceanic Physics +1003.5413 Networking and Internet Architecture +1003.5416 Quantum Algebra +1003.5420 Rings and Algebras +1003.5421 +1003.5422 Statistical Mechanics +1003.5423 +1003.5427 Materials Science +1003.5428 Materials Science +1003.5430 Mesoscale and Nanoscale Physics +1003.5436 Superconductivity +1003.5441 Mesoscale and Nanoscale Physics +1003.5446 Physics and Society +1003.5449 +1003.5455 Software Engineering +1003.5456 Functional Analysis +1003.5458 Discrete Mathematics +1003.5461 Data Structures and Algorithms +1003.5465 Physics and Society +1003.5476 Optics +1003.5482 Soft Condensed Matter +1003.5491 Algebraic Topology +1003.5493 Dynamical Systems +1003.5496 Operator Algebras +1003.5497 Cosmology and Nongalactic Astrophysics +1003.5509 Cryptography and Security +1003.5511 Logic in Computer Science +1003.5512 Logic in Computer Science +1003.5515 Logic in Computer Science +1003.5519 Atomic Physics +1003.5521 Probability +1003.5522 Algebraic Geometry +1003.5525 Operating Systems +1003.5531 Algebraic Geometry +1003.5534 Theory +1003.5535 Quantitative Methods +1003.5539 Applications +1003.5545 +1003.5550 General Mathematics +1003.5552 Category Theory +1003.5553 Cosmology and Nongalactic Astrophysics +1003.5555 Solar and Stellar Astrophysics +1003.5557 Neurons and Cognition +1003.5561 Combinatorics +1003.5565 Metric Geometry +1003.5571 Earth and Planetary Astrophysics +1003.5573 Optics +1003.5574 Experiment +1003.5580 Atomic Physics +1003.5589 Complex Variables +1003.5593 Theory +1003.5598 Quantum Algebra +1003.5605 Combinatorics +1003.5609 +1003.5619 Networking and Internet Architecture +1003.5620 Soft Condensed Matter +1003.5629 Other Computer Science +1003.5631 Other Computer Science +1003.5633 Other Computer Science +1003.5635 Other Computer Science +1003.5638 Probability +1003.5644 Differential Geometry +cond-mat/0506116 Statistical Mechanics +cond-mat/0506162 Superconductivity +cond-mat/0509337 Superconductivity +cs/0611109 Information Theory +gr-qc/0604088 +hep-ph/0409337 Phenomenology +math/0411574 Commutative Algebra +math/0603338 Algebraic Geometry +math/0603660 Classical Analysis and ODEs +math/0610293 Quantum Algebra +math/0610513 Differential Geometry +math/0611478 Algebraic Geometry +math/0611633 Classical Analysis and ODEs +math/0702558 Commutative Algebra +quant-ph/9911111 +0704.3704 +0704.3757 +0706.2740 Geometric Topology +0709.3864 Metric Geometry +0801.0126 Theory +0802.0291 +0804.2525 Plasma Physics +0804.3761 Complex Variables +0804.4512 Probability +0805.3476 Probability +0805.3779 Strongly Correlated Electrons +0805.4354 Geometric Topology +0806.3391 Theory +0807.0488 Superconductivity +0808.0191 Strongly Correlated Electrons +0809.0364 Superconductivity +0809.4700 Atomic Physics +0810.2908 Materials Science +0810.3255 Analysis of PDEs +0811.2019 Materials Science +0811.2176 +0811.4498 Strongly Correlated Electrons +0812.1678 +0812.3775 Experiment +0812.4968 Populations and Evolution +0901.3194 Cosmology and Nongalactic Astrophysics +0901.3527 +0901.3890 Analysis of PDEs +0901.4798 Cryptography and Security +0901.4814 Cryptography and Security +0902.1161 Theory +0902.3053 +0902.3728 Physics and Society +0902.3802 Phenomenology +0903.2144 Complex Variables +0904.2089 +0904.4131 Trading and Market Microstructure +0905.0197 Artificial Intelligence +0905.1969 Commutative Algebra +0905.2038 Experiment +0905.3321 Statistics Theory +0906.1880 Classical Analysis and ODEs +0906.3449 Optics +0906.4157 Differential Geometry +0907.0254 +0907.1428 Experiment +0907.2513 Classical Physics +0907.2566 Category Theory +0908.1555 Statistical Finance +0908.1731 Solar and Stellar Astrophysics +0908.3054 Strongly Correlated Electrons +0908.3559 Mesoscale and Nanoscale Physics +0909.0191 +0909.0295 +0909.0479 Superconductivity +0909.1739 +0909.1938 Other Condensed Matter +0909.2641 Phenomenology +0909.3694 Materials Science +0909.3723 Strongly Correlated Electrons +0909.3735 Superconductivity +0909.3825 Quantum Gases +0909.4586 Strongly Correlated Electrons +0909.5283 +0910.0094 Numerical Analysis +0910.0551 +0910.1279 +0910.1345 Theory +0910.1470 Theory +0910.1526 Theory +0910.1535 Phenomenology +0910.2125 +0910.2302 +0910.3955 Algebraic Geometry +0910.4549 +0910.4918 Quantum Gases +0910.5922 Theory +0911.0423 Cosmology and Nongalactic Astrophysics +0911.5215 Fluid Dynamics +0911.5282 Superconductivity +0911.5478 Number Theory +0911.5558 Statistical Mechanics +0912.1471 Dynamical Systems +0912.1657 Soft Condensed Matter +0912.3084 Disordered Systems and Neural Networks +0912.4468 Theory +0912.4494 +0912.5011 Statistical Mechanics +1001.0249 History and Overview +1001.0719 Instrumentation and Methods for Astrophysics +1001.0954 Classical Physics +1001.1060 +1001.1166 Soft Condensed Matter +1001.1172 Computers and Society +1001.1176 Theory +1001.1180 +1001.1184 Pricing of Securities +1001.1185 Numerical Analysis +1001.1186 Commutative Algebra +1001.1188 Representation Theory +1001.1193 Dynamical Systems +1001.1199 Digital Libraries +1001.1204 Mesoscale and Nanoscale Physics +1001.1214 Information Theory +1001.1215 Formal Languages and Automata Theory +1001.1221 Computer Vision and Pattern Recognition +1001.1224 Other Condensed Matter +1001.1232 Computers and Society +1001.1236 Rings and Algebras +1001.1238 +1001.1244 High Energy Astrophysical Phenomena +1001.1247 Analysis of PDEs +1001.1254 Classical Physics +1001.1256 Solar and Stellar Astrophysics +1001.1265 Soft Condensed Matter +1001.1271 Dynamical Systems +1001.1272 High Energy Astrophysical Phenomena +1001.1275 Astrophysics of Galaxies +1001.1280 Representation Theory +1001.1286 Mesoscale and Nanoscale Physics +1001.1290 Strongly Correlated Electrons +1001.1297 Computation +1001.1298 Information Theory +1001.1299 Adaptation and Self-Organizing Systems +1001.1301 Optics +1001.1303 Cosmology and Nongalactic Astrophysics +1001.1305 Instrumentation and Detectors +1001.1308 Computers and Society +1001.1312 Physics and Society +1001.1315 Computers and Society +1001.1317 Physics and Society +1001.1319 Materials Science +1001.1320 Information Retrieval +1001.1322 +1001.1326 Mesoscale and Nanoscale Physics +1001.1328 Materials Science +1001.1338 Optimization and Control +1001.1343 Superconductivity +cs/0307007 Distributed, Parallel, and Cluster Computing +cs/0407036 Data Structures and Algorithms +hep-ex/0007036 Experiment +hep-ex/0011075 Experiment +hep-ex/0108014 Experiment +hep-ex/0212006 Experiment +hep-ph/0108088 Phenomenology +hep-ph/0406239 Phenomenology +hep-ph/9402299 Phenomenology +hep-th/0409191 Theory +math/0212069 Analysis of PDEs +math/0609059 Differential Geometry +nucl-ex/0003007 +nucl-ex/0008010 +nucl-ex/0101008 +nucl-ex/0103015 +nucl-ex/0108009 +nucl-ex/0205021 +nucl-ex/0206012 +nucl-ex/0210015 +nucl-ex/0210036 +nucl-ex/0211002 +nucl-ex/0304017 +nucl-ex/0405029 +nucl-ex/0510039 +nucl-ex/0510042 +nucl-ex/0602008 +nucl-ex/0608025 +nucl-ex/9802004 +nucl-ex/9808007 +nucl-ex/9910008 +quant-ph/0404076 +quant-ph/0406145 +0707.2064 +0707.3744 +0708.1949 +0708.2621 Instrumentation and Detectors +0708.3460 Materials Science +0709.0114 +0709.0465 +0801.3193 Experiment +0802.0527 Numerical Analysis +0803.2232 +0803.4430 Other Condensed Matter +0805.4173 +0805.4779 +0807.3141 +0809.0039 +0809.1279 +0809.3008 +0810.3553 Phenomenology +0810.4344 Theory +0810.5559 Dynamical Systems +0811.3186 Representation Theory +0811.3993 +0812.1012 Data Structures and Algorithms +0812.2351 Strongly Correlated Electrons +0901.0561 Theory +0901.1084 Probability +0901.1422 Operator Algebras +0901.3248 +0901.3614 Solar and Stellar Astrophysics +0901.4271 Materials Science +0902.1181 Astrophysics of Galaxies +0902.2782 Cosmology and Nongalactic Astrophysics +0902.2813 +0902.3714 Methodology +0903.2781 Algebraic Geometry +0903.4238 Quantum Algebra +0903.4682 Cosmology and Nongalactic Astrophysics +0903.4841 Theory +0904.0257 Superconductivity +0904.2192 Mesoscale and Nanoscale Physics +0905.0877 Statistical Mechanics +0905.2765 Cosmology and Nongalactic Astrophysics +0905.2865 Classical Physics +0906.0341 Cosmology and Nongalactic Astrophysics +0906.1324 Phenomenology +0906.2285 Strongly Correlated Electrons +0906.2989 Functional Analysis +0906.3310 Mesoscale and Nanoscale Physics +0907.0092 Solar and Stellar Astrophysics +0907.3309 Disordered Systems and Neural Networks +0907.5163 Materials Science +0907.5586 +0908.2302 Theory +0908.2679 +0908.2976 Quantum Gases +0908.4258 Materials Science +0909.1396 Statistical Mechanics +0909.1477 Materials Science +0909.3887 Phenomenology +0909.4430 Superconductivity +0910.0206 Fluid Dynamics +0910.2476 Mesoscale and Nanoscale Physics +0910.2719 Materials Science +0910.4594 +0910.5925 +0911.2837 Statistical Mechanics +0911.4324 Theory +0911.5024 Algebraic Geometry +0911.5668 Probability +0912.1459 Chemical Physics +0912.3380 Phenomenology +0912.3787 High Energy Astrophysical Phenomena +1001.0949 +1001.1395 Solar and Stellar Astrophysics +1001.1713 Chemical Physics +1001.2766 Information Theory +1001.3819 Solar and Stellar Astrophysics +1001.3981 Group Theory +1001.4801 Phenomenology +1001.4802 Statistics Theory +1001.4804 +1001.4806 Mesoscale and Nanoscale Physics +1001.4810 Theory +1001.4812 Phenomenology +1001.4826 Probability +1001.4838 Instrumentation and Methods for Astrophysics +1001.4840 Earth and Planetary Astrophysics +1001.4845 Molecular Networks +1001.4846 Algebraic Geometry +1001.4848 Analysis of PDEs +1001.4850 Biological Physics +1001.4852 General Mathematics +1001.4853 Algebraic Geometry +1001.4862 Dynamical Systems +1001.4863 Spectral Theory +1001.4868 Algebraic Geometry +1001.4870 +1001.4871 Probability +1001.4872 Probability +1001.4874 Algebraic Geometry +1001.4880 Databases +1001.4883 Phenomenology +1001.4886 Experiment +1001.4887 Computer Science and Game Theory +1001.4889 General Finance +1001.4892 Databases +1001.4899 +1001.4900 Analysis of PDEs +1001.4901 Programming Languages +1001.4909 +1001.4914 Populations and Evolution +1001.4916 Superconductivity +1001.4919 Functional Analysis +1001.4920 Probability +1001.4924 Dynamical Systems +1001.4927 Other Condensed Matter +1001.4932 Strongly Correlated Electrons +1001.4939 Computer Science and Game Theory +1001.4944 Chemical Physics +1001.4953 Strongly Correlated Electrons +1001.4955 Materials Science +1001.4966 Functional Analysis +1001.4970 Solar and Stellar Astrophysics +1001.4972 Molecular Networks +1001.4973 Materials Science +1001.4983 Complex Variables +1001.4999 Logic +1001.5000 Rings and Algebras +1001.5002 Materials Science +1001.5004 Methodology +1001.5005 Instrumentation and Methods for Astrophysics +1001.5014 Phenomenology +1001.5016 Digital Libraries +1001.5018 Digital Libraries +astro-ph/0001194 +astro-ph/0004239 +astro-ph/0103187 +astro-ph/0208526 +astro-ph/0209360 +astro-ph/0302155 +astro-ph/0302526 +astro-ph/0311229 +astro-ph/0407118 +astro-ph/0407624 +astro-ph/0603529 +astro-ph/0604197 +astro-ph/0605549 +astro-ph/9710039 +astro-ph/9807255 +astro-ph/9908015 +astro-ph/9909336 +astro-ph/9909364 +cond-mat/0311100 Soft Condensed Matter +cond-mat/0606334 Statistical Mechanics +hep-ex/0306023 Experiment +hep-ex/0401039 Experiment +hep-ex/0503034 Experiment +hep-ph/0206217 Phenomenology +hep-ph/9408275 Phenomenology +hep-ph/9511297 Phenomenology +hep-ph/9511402 Phenomenology +hep-ph/9711472 Phenomenology +hep-ph/9808278 Phenomenology +math/0602513 Operator Algebras +physics/0307151 Plasma Physics +physics/0311050 Instrumentation and Detectors +physics/0605215 Instrumentation and Detectors +0704.0981 Differential Geometry +0706.1657 Statistical Mechanics +0707.0691 +0707.3953 Algebraic Geometry +0803.2004 Complex Variables +0804.4511 Complex Variables +0805.3850 +0807.0862 Group Theory +0810.3880 Differential Geometry +0810.4729 Mesoscale and Nanoscale Physics +0810.5749 Materials Science +0811.1966 General Topology +0811.2516 History and Philosophy of Physics +0811.2526 +0904.3603 +0907.4495 Cosmology and Nongalactic Astrophysics +0907.5395 Mesoscale and Nanoscale Physics +0909.1952 Statistical Mechanics +0910.2336 Mesoscale and Nanoscale Physics +0911.1078 +0911.3541 Phenomenology +0912.0875 Group Theory +0912.3260 +0912.3946 Differential Geometry +1001.0867 Statistical Mechanics +1001.1429 +1001.3946 Instrumentation and Detectors +1001.4300 Exactly Solvable and Integrable Systems +1001.4584 Populations and Evolution +1002.0114 Quantum Gases +1002.0172 Logic in Computer Science +1002.3589 Solar and Stellar Astrophysics +1003.0002 Astrophysics of Galaxies +1003.4020 +1003.4584 +1004.0416 General Physics +1004.1727 Molecular Networks +1004.2279 Theory +1004.2493 Materials Science +1004.2500 Materials Science +1004.2502 +1004.2505 Differential Geometry +1004.2508 +1004.2511 Numerical Analysis +1004.2515 Information Theory +1004.2526 Computational Complexity +1004.2538 Soft Condensed Matter +1004.2542 Information Theory +1004.2548 Computational Finance +1004.2550 Formal Languages and Automata Theory +1004.2560 Computers and Society +1004.2564 +1004.2575 Quantum Algebra +1004.2596 Analysis of PDEs +1004.2601 Classical Analysis and ODEs +1004.2602 Complex Variables +1004.2615 +1004.2618 Complex Variables +1004.2620 +1004.2622 Statistical Mechanics +1004.2624 Artificial Intelligence +1004.2626 Artificial Intelligence +1004.2635 Instrumentation and Methods for Astrophysics +1004.2637 Performance +1004.2639 Combinatorics +1004.2646 Analysis of PDEs +1004.2649 Group Theory +1004.2653 General Mathematics +1004.2655 Soft Condensed Matter +1004.2656 Differential Geometry +1004.2658 Complex Variables +1004.2673 Differential Geometry +1004.2674 Representation Theory +1004.2678 Representation Theory +1004.2683 Information Theory +1004.2690 Optics +1004.2691 Instrumentation and Methods for Astrophysics +cond-mat/0511407 Soft Condensed Matter +gr-qc/0405121 +math/0501093 Differential Geometry +math/0610695 Differential Geometry +physics/0503078 Physics and Society +quant-ph/0402205 +quant-ph/0402207 +quant-ph/0404066 +quant-ph/0404070 +quant-ph/0407150 +0709.1266 +0711.3400 Statistics Theory +0802.2385 General Mathematics +0804.2596 Differential Geometry +0804.2784 Symplectic Geometry +0805.4569 Symplectic Geometry +0808.2540 Phenomenology +0809.0018 Commutative Algebra +0809.0882 Computational Physics +0809.5191 Information Theory +0809.5275 Information Theory +0811.0592 Algebraic Topology +0812.0373 Atomic Physics +0812.0380 +0812.4890 Mesoscale and Nanoscale Physics +0901.2727 Chaotic Dynamics +0901.4072 Atomic Physics +0903.2851 Learning +0903.2862 Learning +0903.3298 Theory +0904.0087 Adaptation and Self-Organizing Systems +0905.0335 Mesoscale and Nanoscale Physics +0905.1910 Statistical Mechanics +0905.2625 Superconductivity +0905.3314 Strongly Correlated Electrons +0905.4510 Functional Analysis +0905.4841 Combinatorics +0906.0056 Statistical Mechanics +0906.1791 Mesoscale and Nanoscale Physics +0908.0952 Cosmology and Nongalactic Astrophysics +0908.0958 +0908.1643 Dynamical Systems +0908.1681 Strongly Correlated Electrons +0908.1885 Analysis of PDEs +0908.2393 Optics +0908.3278 Mesoscale and Nanoscale Physics +0908.3404 Combinatorics +0909.1887 +0909.3045 Phenomenology +0910.0003 Strongly Correlated Electrons +0910.0308 Mesoscale and Nanoscale Physics +0910.1182 Combinatorics +0910.1378 Statistical Mechanics +0910.2544 Materials Science +0910.4472 Computation +0910.4767 Quantum Gases +0910.5693 Strongly Correlated Electrons +0911.1971 Superconductivity +0911.4525 Materials Science +0911.5391 Lattice +0912.5187 Pattern Formation and Solitons +0912.5471 Differential Geometry +1001.1640 Statistical Mechanics +1001.1795 Spectral Theory +1001.1859 Phenomenology +1001.1928 Optimization and Control +1001.2114 Classical Analysis and ODEs +1001.2254 Theory +1001.2583 High Energy Astrophysical Phenomena +1001.2586 +1001.2591 Astrophysics of Galaxies +1001.2777 Combinatorics +1001.2778 Networking and Internet Architecture +1001.2779 Combinatorics +1001.2780 General Physics +1001.2782 Probability +1001.2786 Information Theory +1001.2787 Accelerator Physics +1001.2788 Chaotic Dynamics +1001.2791 Optics +1001.2792 Combinatorics +1001.2794 Phenomenology +1001.2797 Computation +1001.2803 Materials Science +1001.2805 Information Theory +1001.2810 Adaptation and Self-Organizing Systems +1001.2812 Commutative Algebra +1001.2813 Adaptation and Self-Organizing Systems +1001.2817 Programming Languages +1001.2819 Logic +1001.2820 Probability +1001.2822 Commutative Algebra +1001.2823 +1001.2824 Algebraic Topology +1001.2828 +1001.2829 Group Theory +1001.2836 Theory +1001.2837 Physics and Society +1001.2841 Algebraic Geometry +1001.2842 Experiment +1001.2848 Networking and Internet Architecture +1001.2849 Rings and Algebras +1001.2851 Representation Theory +1001.2853 Geophysics +1001.2856 Lattice +1001.2857 Instrumentation and Methods for Astrophysics +1001.2859 Optics +1001.2861 Chemical Physics +1001.2862 Discrete Mathematics +1001.2872 Algebraic Geometry +1001.2873 Rings and Algebras +1001.2875 Cellular Automata and Lattice Gases +1001.2878 Dynamical Systems +1001.2879 Quantitative Methods +1001.2884 Algebraic Geometry +1001.2885 Differential Geometry +1001.2886 +1001.2889 +1001.2891 Data Structures and Algorithms +1001.2899 Strongly Correlated Electrons +1001.2905 Phenomenology +1001.2906 Methodology +1001.2911 Number Theory +1001.2917 Solar and Stellar Astrophysics +1001.2921 Physics and Society +1001.2922 Geophysics +1001.2936 Combinatorics +1001.2940 Symbolic Computation +1001.2945 Cryptography and Security +1001.2946 +1001.2949 Commutative Algebra +1001.2950 High Energy Astrophysical Phenomena +1001.2961 Metric Geometry +1001.2966 +1001.2967 Methodology +1001.2968 Methodology +1001.2970 Methodology +1001.2971 Phenomenology +1001.2973 Cosmology and Nongalactic Astrophysics +1001.2975 Methodology +1001.2978 Logic +1001.2980 Instrumentation and Detectors +1001.2983 Cosmology and Nongalactic Astrophysics +1001.2985 Methodology +1001.2991 Cosmology and Nongalactic Astrophysics +1001.2994 Analysis of PDEs +1001.2996 Materials Science +1001.2997 Phenomenology +1001.3002 Phenomenology +1001.3007 Probability +1001.3010 Earth and Planetary Astrophysics +1001.3011 Methodology +1001.3012 Physics and Society +1001.3014 Dynamical Systems +1001.3017 Cryptography and Security +1001.3019 Classical Analysis and ODEs +1001.3030 Geometric Topology +1001.3034 Mesoscale and Nanoscale Physics +1001.3036 Information Theory +1001.3037 Instrumentation and Methods for Astrophysics +1001.3039 General Physics +1001.3040 Classical Analysis and ODEs +1001.3045 Combinatorics +1001.3048 +1001.3049 Dynamical Systems +1001.3059 Earth and Planetary Astrophysics +1001.3068 Number Theory +1001.3069 Phenomenology +1001.3070 Classical Analysis and ODEs +1001.3073 Methodology +1001.3079 Number Theory +1001.3080 +1001.3095 Differential Geometry +1001.3096 +1001.3098 Differential Geometry +1001.3106 Algebraic Geometry +1001.3107 Information Theory +1001.3109 Machine Learning +1001.3111 +1001.3114 Materials Science +1001.3118 Information Theory +1001.3120 Chaotic Dynamics +1001.3121 Accelerator Physics +1001.3122 +1001.3123 Phenomenology +1001.3124 Phenomenology +1001.3126 Algebraic Geometry +1001.3127 Number Theory +1001.3129 Optimization and Control +cond-mat/0212454 Statistical Mechanics +cs/0601116 Data Structures and Algorithms +quant-ph/0703082 +0704.0760 Experiment +0705.1594 Experiment +0705.3212 Theory +0705.3359 +0705.3668 +0705.3727 +0705.4339 +0705.4350 +0706.0035 Lattice +0706.3264 Experiment +0706.3762 +0706.3790 Experiment +0706.3868 Experiment +0706.4448 Experiment +0707.0085 Experiment +0707.0589 Experiment +0707.2294 Experiment +0707.2524 Experiment +0707.2567 Experiment +0708.3642 Experiment +0709.0705 Experiment +0709.3530 +0710.4037 Experiment +0710.4112 Experiment +0710.4199 Experiment +0710.4363 Experiment +0710.5198 Theory +0710.5335 Experiment +0710.5658 +0711.0838 Hardware Architecture +0711.2901 Experiment +0711.3161 Experiment +0711.3717 Experiment +0711.4044 Experiment +0712.0604 Experiment +0712.1506 Experiment +0712.1567 Experiment +0712.1708 Experiment +0712.2348 Experiment +0712.2397 Experiment +0712.2828 +0712.3167 Theory +0712.3273 Experiment +0712.4405 +0801.1129 Experiment +0801.1803 Experiment +0801.2929 Operator Algebras +0801.3324 +0801.3877 Experiment +0801.4375 Experiment +0801.4806 Experiment +0802.0432 Experiment +0802.0888 +0802.1712 +0802.2498 Other Condensed Matter +0802.3182 Experiment +0803.0036 +0803.0481 Phenomenology +0803.0741 Phenomenology +0803.0763 +0803.1585 +0803.1874 Theory +0803.1967 Phenomenology +0803.2425 +0803.3493 Experiment +0803.4264 Experiment +0804.1222 +0804.1354 +0804.1458 +0804.3529 +0804.3908 Experiment +0804.4168 +0804.4564 +0804.4705 Theory +0804.4756 Phenomenology +0804.4826 Phenomenology +0805.0089 General Physics +0805.0144 +0805.0150 Theory +0805.1017 +0805.1203 +0805.1249 +0805.1299 +0805.1382 Phenomenology +0805.1403 +0805.1428 +0805.1557 +0805.1846 Lattice +0805.1851 +0805.2064 Rings and Algebras +0805.2109 Experiment +0805.2278 Phenomenology +0805.2482 Phenomenology +0805.2502 Phenomenology +0805.2509 Theory +0805.2517 Phenomenology +0805.2610 Theory +0805.2728 Instrumentation and Detectors +0805.2733 Theory +0805.2858 +0805.2913 Lattice +0805.3140 Phenomenology +0805.3170 Instrumentation and Detectors +0805.3475 +0805.3511 +0805.3862 +0805.3905 Instrumentation and Detectors +0805.3926 +0805.3971 +0805.3984 Instrumentation and Detectors +0805.4025 Theory +0805.4531 +0806.0034 +0806.0110 Theory +0806.0141 +0806.0335 Theory +0806.0356 Phenomenology +0806.0397 +0806.0455 Theory +0806.0529 Accelerator Physics +0806.1167 +0806.1238 +0806.1328 +0806.1366 +0806.1699 Experiment +0806.1842 +0806.1911 Theory +0806.2117 Lattice +0806.2472 Experiment +0806.2783 +0806.2999 +0806.3040 Theory +0806.3041 Theory +0806.3376 Theory +0806.3440 +0806.3461 +0806.3699 Theory +0806.4588 Differential Geometry +0807.0213 Theory +0807.2131 Theory +0807.3132 Experiment +0807.3825 Theory +0807.4173 Phenomenology +0807.4174 +0807.4199 Phenomenology +0807.4240 Phenomenology +0807.4262 Experiment +0807.4366 +0807.4373 +0807.4493 Experiment +0807.4652 Experiment +0807.4805 Phenomenology +0808.0318 +0808.0587 +0808.0642 +0808.0704 Phenomenology +0808.0707 Phenomenology +0808.0936 Theory +0808.1022 Lattice +0808.1231 Phenomenology +0808.1904 Phenomenology +0808.2167 Experiment +0808.2446 Experiment +0808.2614 Analysis of PDEs +0808.3983 +0809.0080 Experiment +0809.1533 Theory +0809.2581 Experiment +0809.3334 Phenomenology +0809.3687 +0809.3781 Experiment +0809.3930 Experiment +0809.4360 Differential Geometry +0809.4808 Experiment +0809.5007 Experiment +0810.0250 Theory +0810.0694 Experiment +0810.1120 +0810.2059 Experiment +0810.2530 +0810.2593 Other Condensed Matter +0810.3934 +0811.0053 Experiment +0811.0344 Experiment +0811.1062 Experiment +0811.1143 +0811.1205 +0811.1382 +0811.2512 Experiment +0811.2820 Experiment +0811.2962 +0811.2996 Theory +0811.3434 Algebraic Geometry +0811.3977 +0811.4409 Phenomenology +0811.4477 Theory +0812.0368 Phenomenology +0812.0399 +0812.0414 Theory +0812.0456 Geometric Topology +0812.1102 Rings and Algebras +0812.1108 Instrumentation and Detectors +0812.1453 Theory +0812.1657 Theory +0812.2500 Phenomenology +0812.2511 Experiment +0812.3400 Experiment +0812.3623 Theory +0812.3820 Theory +0812.4036 Experiment +0812.4089 Phenomenology +0812.4243 Phenomenology +0812.4271 Experiment +0812.4333 +0812.4458 Experiment +0812.4469 Experiment +0812.4504 Theory +0901.0092 Astrophysics of Galaxies +0901.0125 Complex Variables +0901.1614 Mesoscale and Nanoscale Physics +0901.2086 Phenomenology +0901.2599 Phenomenology +0901.2972 Theory +0901.4341 Phenomenology +0902.0373 Cosmology and Nongalactic Astrophysics +0902.0601 Algebraic Geometry +0902.0624 Earth and Planetary Astrophysics +0902.0649 Differential Geometry +0902.0759 Earth and Planetary Astrophysics +0902.1855 Phenomenology +0902.1892 Theory +0902.2002 Cosmology and Nongalactic Astrophysics +0902.2610 Theory +0902.2914 Phenomenology +0902.2941 Theory +0902.4836 Phenomenology +0902.4874 Phenomenology +0902.4880 Phenomenology +0903.0125 Phenomenology +0903.0326 Experiment +0903.0402 Theory +0903.0814 Experiment +0903.0885 Experiment +0903.1248 Dynamical Systems +0903.1460 Cosmology and Nongalactic Astrophysics +0903.2021 +0903.2041 +0903.3177 Experiment +0903.3399 +0903.3676 Computer Vision and Pattern Recognition +0903.4851 Experiment +0903.4863 +0903.4886 +0903.5302 Instrumentation and Methods for Astrophysics +0904.0392 +0904.0451 Cosmology and Nongalactic Astrophysics +0904.2528 Phenomenology +0904.2669 +0904.2780 Strongly Correlated Electrons +0904.2784 Solar and Stellar Astrophysics +0905.0108 +0905.0132 Phenomenology +0905.0277 Experiment +0905.0690 High Energy Astrophysical Phenomena +0905.0708 +0905.0752 Lattice +0905.1043 Phenomenology +0905.1070 +0905.1212 Mesoscale and Nanoscale Physics +0905.1960 Fluid Dynamics +0905.2062 Mesoscale and Nanoscale Physics +0905.2215 Quantum Algebra +0905.2730 +0906.0143 Atomic Physics +0906.0673 +0906.1214 Theory +0906.2162 +0906.2164 Theory +0906.2578 Theory +0906.2919 +0906.4428 +0906.5218 Experiment +0906.5371 Experiment +0906.5613 Experiment +0907.0261 Cosmology and Nongalactic Astrophysics +0907.0375 Probability +0907.0810 Experiment +0907.1067 Earth and Planetary Astrophysics +0907.1088 Phenomenology +0907.1156 Theory +0907.1410 Theory +0907.1704 Theory +0907.1913 Lattice +0907.2228 Probability +0907.2574 +0907.3347 +0907.3433 +0907.3606 Phenomenology +0907.4473 +0907.4666 Phenomenology +0907.4748 +0907.5413 Phenomenology +0908.0363 Theory +0908.0365 +0908.0394 Cosmology and Nongalactic Astrophysics +0908.0837 Rings and Algebras +0908.0959 +0908.1743 Theory +0908.2138 +0908.2213 +0908.2655 +0908.3101 +0908.3256 Probability +0908.3379 Theory +0908.3534 Experiment +0908.4161 Theory +0908.4195 Theory +0909.0277 Theory +0909.0490 +0909.0514 +0909.1380 Phenomenology +0909.1505 Experiment +0909.1941 Theory +0909.2204 Lattice +0909.3021 Exactly Solvable and Integrable Systems +0909.3157 Phenomenology +0909.3859 Theory +0909.3923 Number Theory +0909.4500 +0909.4771 +0909.4849 Phenomenology +0909.5461 +0910.0207 +0910.0250 Cosmology and Nongalactic Astrophysics +0910.0256 Cosmology and Nongalactic Astrophysics +0910.0482 High Energy Astrophysical Phenomena +0910.0619 Fluid Dynamics +0910.1589 Theory +0910.1842 High Energy Astrophysical Phenomena +0910.1860 Theory +0910.1877 Phenomenology +0910.2169 +0910.2314 Phenomenology +0910.2542 Phenomenology +0910.2730 Theory +0910.2987 Phenomenology +0910.3109 Theory +0910.3623 Experiment +0910.3671 Phenomenology +0910.3697 Theory +0910.3939 Phenomenology +0910.4683 Learning +0910.4705 Theory +0910.4762 Theory +0910.4853 +0910.4936 Phenomenology +0910.5356 Mesoscale and Nanoscale Physics +0910.5427 Lattice +0910.5428 Phenomenology +0910.5474 Theory +0910.5483 Phenomenology +0910.5612 Phenomenology +0911.0339 Theory +0911.0776 +0911.0889 Phenomenology +0911.1556 Phenomenology +0911.1603 Phenomenology +0911.1841 Theory +0911.2383 Phenomenology +0911.2653 +0911.2921 Theory +0911.2956 Experiment +0911.3021 Lattice +0911.3165 Theory +0911.3235 Phenomenology +0911.3297 Phenomenology +0911.3376 Phenomenology +0911.3401 +0911.3776 Phenomenology +0911.3807 +0911.3823 Information Retrieval +0911.3900 Astrophysics of Galaxies +0911.3935 Experiment +0911.4122 Phenomenology +0911.4126 Phenomenology +0911.4184 Phenomenology +0911.4192 Materials Science +0911.4284 Theory +0911.4478 Algebraic Topology +0911.4667 Disordered Systems and Neural Networks +0911.4858 Cosmology and Nongalactic Astrophysics +0911.5085 Theory +0911.5108 Cosmology and Nongalactic Astrophysics +0911.5169 Phenomenology +0911.5188 Phenomenology +0911.5190 Theory +0911.5228 Theory +0911.5343 Theory +0911.5380 +0911.5556 Accelerator Physics +0911.5617 Phenomenology +0911.5704 Theory +0912.0011 Theory +0912.0113 Phenomenology +0912.0162 +0912.0217 Phenomenology +0912.0272 Theory +0912.0459 +0912.0517 Phenomenology +0912.0526 Phenomenology +0912.0538 Phenomenology +0912.0550 Theory +0912.0611 Theory +0912.0627 Theory +0912.0677 Theory +0912.0791 Theory +0912.0802 +0912.1061 Theory +0912.1082 Experiment +0912.1395 Phenomenology +0912.1521 Phenomenology +0912.1535 Theory +0912.1683 Phenomenology +0912.2059 Experiment +0912.2096 High Energy Astrophysical Phenomena +0912.2100 Theory +0912.2228 Theory +0912.2251 +0912.2253 Theory +0912.2324 Theory +0912.2541 Phenomenology +0912.2661 Phenomenology +0912.2727 Phenomenology +0912.2812 +0912.2958 Theory +0912.3128 Theory +0912.3165 +0912.3217 Cosmology and Nongalactic Astrophysics +0912.3256 Theory +0912.3349 Cosmology and Nongalactic Astrophysics +0912.3388 Phenomenology +0912.3394 Cosmology and Nongalactic Astrophysics +0912.3504 Theory +0912.3508 Theory +0912.3515 Theory +0912.3517 +0912.3543 Phenomenology +0912.3566 Experiment +0912.3710 Phenomenology +0912.3783 Theory +0912.4193 +0912.4199 Theory +0912.4243 Lattice +0912.4255 +0912.4299 Phenomenology +0912.4612 Experiment +0912.4633 +0912.4715 Theory +0912.4749 +0912.4759 Theory +0912.4802 +0912.4832 +0912.4837 Optics +0912.5048 +0912.5057 +0912.5197 Phenomenology +0912.5221 Lattice +0912.5443 +0912.5482 Phenomenology +1001.0035 Theory +1001.0042 Theory +1001.0307 Phenomenology +1001.0394 Theory +1001.0626 Phenomenology +1001.0861 +1001.0995 +1001.1004 Atomic Physics +1001.1200 Differential Geometry +1001.1229 Phenomenology +1001.1309 Cosmology and Nongalactic Astrophysics +1001.1313 +1001.1358 Theory +1001.1417 Phenomenology +1001.1493 +1001.1509 Phenomenology +1001.1548 Theory +1001.1555 +1001.1631 +1001.1903 Theory +1001.2087 Classical Physics +1001.2300 Theory +1001.2553 Phenomenology +1001.2703 Theory +1001.2783 Cosmology and Nongalactic Astrophysics +1001.2912 Phenomenology +1001.3250 Atomic Physics +1001.3396 Phenomenology +1001.3422 Phenomenology +1001.3568 Theory +1001.3621 +1001.4416 Phenomenology +1001.4449 +1001.4468 Experiment +1001.4558 Operator Algebras +1001.4577 Experiment +1001.4585 Theory +1001.4819 +1001.5467 Phenomenology +1002.0192 Theory +1002.0331 Phenomenology +1002.0365 Experiment +1002.0510 Cosmology and Nongalactic Astrophysics +1002.0726 +1002.0919 Phenomenology +1002.1738 +1002.1956 Phenomenology +1002.2466 Phenomenology +1002.2643 Astrophysics of Galaxies +1002.2704 Phenomenology +1002.2717 Cosmology and Nongalactic Astrophysics +1002.4173 Theory +1002.4197 Cosmology and Nongalactic Astrophysics +1002.4325 +1002.4800 Mesoscale and Nanoscale Physics +1002.4966 Mesoscale and Nanoscale Physics +1002.5045 +1003.0344 +1003.1159 +1003.1217 Plasma Physics +1003.1585 Lattice +1003.2848 +1003.3421 +1003.4416 +1004.0110 Algebraic Topology +1004.0291 High Energy Astrophysical Phenomena +1004.0493 +1004.0789 Theory +1004.1664 Dynamical Systems +1004.4043 Other Condensed Matter +1004.4434 Statistical Mechanics +1004.4549 +1004.5351 Computer Vision and Pattern Recognition +1005.0096 +1005.0547 Phenomenology +1005.0698 Biological Physics +1005.0924 Cosmology and Nongalactic Astrophysics +1005.1030 Accelerator Physics +1005.1439 Theory +1005.1625 Metric Geometry +1005.1666 +1005.1670 Fluid Dynamics +1005.1677 Commutative Algebra +1005.1679 Instrumentation and Methods for Astrophysics +1005.1692 Materials Science +1005.1695 Other Computer Science +1005.1697 Dynamical Systems +1005.1698 Algebraic Topology +1005.1707 Cosmology and Nongalactic Astrophysics +1005.1709 Quantum Algebra +1005.1711 Information Theory +1005.1718 K-Theory and Homology +1005.1722 Algebraic Geometry +1005.1731 Phenomenology +1005.1732 Strongly Correlated Electrons +1005.1733 Algebraic Geometry +1005.1735 Optics +1005.1744 Computational Complexity +1005.1753 Networking and Internet Architecture +1005.1761 Superconductivity +1005.1763 Computational Physics +1005.1769 Functional Analysis +1005.1771 Cryptography and Security +1005.1778 Earth and Planetary Astrophysics +1005.1794 +1005.1798 Materials Science +1005.1800 Information Theory +1005.1804 Information Theory +1005.1806 Phenomenology +1005.1816 Mesoscale and Nanoscale Physics +1005.1819 Spectral Theory +1005.1830 Computational Physics +1005.1832 Functional Analysis +1005.1835 Formal Languages and Automata Theory +1005.1837 Instrumentation and Methods for Astrophysics +1005.1845 High Energy Astrophysical Phenomena +1005.1852 Metric Geometry +1005.1853 Computational Engineering, Finance, and Science +1005.1855 Phenomenology +1005.1859 High Energy Astrophysical Phenomena +1005.1861 General Finance +1005.1863 Applications +1005.1864 High Energy Astrophysical Phenomena +1005.1874 High Energy Astrophysical Phenomena +1005.1880 Strongly Correlated Electrons +1005.1881 Group Theory +1005.1888 Phenomenology +1005.1890 Cosmology and Nongalactic Astrophysics +1005.1894 Numerical Analysis +1005.1899 Computers and Society +1005.1909 Phenomenology +1005.1914 Functional Analysis +1005.1917 General Finance +alg-geom/9605002 Algebraic Geometry +alg-geom/9605003 Algebraic Geometry +alg-geom/9702011 Algebraic Geometry +astro-ph/0008410 +astro-ph/0009224 +astro-ph/0103215 +astro-ph/0106539 +astro-ph/0108204 +astro-ph/0201399 +astro-ph/0203391 +astro-ph/0204141 +astro-ph/0205310 +astro-ph/0207036 +astro-ph/0207056 +astro-ph/0207187 +astro-ph/0207320 +astro-ph/0211158 +astro-ph/0212554 +astro-ph/0301055 +astro-ph/0301377 +astro-ph/0301421 +astro-ph/0301453 +astro-ph/0302107 +astro-ph/0306501 +astro-ph/0308187 +astro-ph/0309419 +astro-ph/0310662 +astro-ph/0311050 +astro-ph/0312594 +astro-ph/0403608 +astro-ph/0408002 +astro-ph/0410038 +astro-ph/0410163 +astro-ph/0502468 +astro-ph/0502553 +astro-ph/0504359 +astro-ph/0505035 +astro-ph/0505107 +astro-ph/0506472 +astro-ph/0506620 +astro-ph/0508115 +astro-ph/0508121 +astro-ph/0509820 +astro-ph/0509868 +astro-ph/0511498 +astro-ph/0512340 +astro-ph/0601455 +astro-ph/0603689 +astro-ph/0604580 +astro-ph/0607511 +astro-ph/0608029 +astro-ph/0608183 +astro-ph/0609170 +astro-ph/0609582 +astro-ph/0610498 +astro-ph/0611128 +astro-ph/0611919 +astro-ph/0702427 +astro-ph/0702615 +astro-ph/0703192 +cond-mat/0609552 Soft Condensed Matter +gr-qc/0009079 +gr-qc/0011039 +gr-qc/0102024 +gr-qc/0104009 +gr-qc/0105101 +gr-qc/0107054 +gr-qc/0108025 +gr-qc/0110037 +gr-qc/0201064 +gr-qc/0202086 +gr-qc/0204008 +gr-qc/0205079 +gr-qc/0206076 +gr-qc/0209035 +gr-qc/0305058 +gr-qc/0312010 +gr-qc/0312123 +gr-qc/0409077 +gr-qc/0410011 +gr-qc/0411060 +gr-qc/0411061 +gr-qc/0411062 +gr-qc/0411078 +gr-qc/0501004 +gr-qc/0505048 +gr-qc/0509079 +gr-qc/0511063 +gr-qc/0512011 +gr-qc/0512169 +gr-qc/0601024 +gr-qc/0611128 +gr-qc/9312016 +gr-qc/9408018 +gr-qc/9609010 +gr-qc/9801087 +gr-qc/9810006 +gr-qc/9811065 +gr-qc/9905014 +gr-qc/9907028 +hep-ex/0001021 Experiment +hep-ex/0003005 Experiment +hep-ex/0003026 Experiment +hep-ex/0004017 Experiment +hep-ex/0004027 Experiment +hep-ex/0006025 Experiment +hep-ex/0007034 Experiment +hep-ex/0007044 Experiment +hep-ex/0011059 Experiment +hep-ex/0108034 Experiment +hep-ex/0109025 Experiment +hep-ex/0110067 Experiment +hep-ex/0201004 Experiment +hep-ex/0202044 Experiment +hep-ex/0209030 Experiment +hep-ex/0211064 Experiment +hep-ex/0302009 Experiment +hep-ex/0303011 Experiment +hep-ex/0307012 Experiment +hep-ex/0307080 Experiment +hep-ex/0308059 Experiment +hep-ex/0309030 Experiment +hep-ex/0311023 Experiment +hep-ex/0311039 Experiment +hep-ex/0311050 Experiment +hep-ex/0311051 Experiment +hep-ex/0312021 Experiment +hep-ex/0403032 Experiment +hep-ex/0406062 Experiment +hep-ex/0406073 Experiment +hep-ex/0410013 Experiment +hep-ex/0410018 Experiment +hep-ex/0410058 Experiment +hep-ex/0412042 Experiment +hep-ex/0412050 Experiment +hep-ex/0412057 Experiment +hep-ex/0412071 Experiment +hep-ex/0501023 Experiment +hep-ex/0501050 Experiment +hep-ex/0502003 Experiment +hep-ex/0502044 Experiment +hep-ex/0503004 Experiment +hep-ex/0504020 Experiment +hep-ex/0504048 Experiment +hep-ex/0504053 Experiment +hep-ex/0505013 Experiment +hep-ex/0505076 Experiment +hep-ex/0505091 Experiment +hep-ex/0506001 Experiment +hep-ex/0506034 Experiment +hep-ex/0506042 Experiment +hep-ex/0507051 Experiment +hep-ex/0507067 Experiment +hep-ex/0507072 Experiment +hep-ex/0507104 Experiment +hep-ex/0511023 Experiment +hep-ex/0512051 Experiment +hep-ex/0512074 Experiment +hep-ex/0602005 Experiment +hep-ex/0602008 Experiment +hep-ex/0603027 Experiment +hep-ex/0605027 Experiment +hep-ex/0605118 Experiment +hep-ex/0606043 Experiment +hep-ex/0607021 Experiment +hep-ex/0607035 Experiment +hep-ex/0607095 Experiment +hep-ex/0608062 Experiment +hep-ex/0609021 Experiment +hep-ex/0611022 Experiment +hep-ex/0612012 Experiment +hep-ex/0612026 Experiment +hep-ex/0612058 Experiment +hep-ex/0612061 Experiment +hep-ex/0702029 Experiment +hep-ex/0703028 Experiment +hep-ex/0703045 Experiment +hep-ex/9405005 Experiment +hep-ex/9412009 Experiment +hep-ex/9501001 Experiment +hep-ex/9501008 Experiment +hep-ex/9503013 Experiment +hep-ex/9508017 Experiment +hep-ex/9509010 Experiment +hep-ex/9601003 Experiment +hep-ex/9601008 Experiment +hep-ex/9603001 Experiment +hep-ex/9603003 Experiment +hep-ex/9605004 Experiment +hep-ex/9607003 Experiment +hep-ex/9609011 Experiment +hep-ex/9702004 Experiment +hep-ex/9704007 Experiment +hep-ex/9708017 Experiment +hep-ex/9710008 Experiment +hep-ex/9711004 Experiment +hep-ex/9712004 Experiment +hep-ex/9801014 Experiment +hep-ex/9801019 Experiment +hep-ex/9803013 Experiment +hep-ex/9803015 Experiment +hep-ex/9804014 Experiment +hep-ex/9805017 Experiment +hep-ex/9805034 Experiment +hep-ex/9806018 Experiment +hep-ex/9806025 Experiment +hep-ex/9806026 Experiment +hep-ex/9806034 Experiment +hep-ex/9808003 Experiment +hep-ex/9809001 Experiment +hep-ex/9809022 Experiment +hep-ex/9810024 Experiment +hep-ex/9810029 Experiment +hep-ex/9903011 Experiment +hep-ex/9907053 Experiment +hep-ex/9908063 Experiment +hep-ex/9909011 Experiment +hep-ex/9909027 Experiment +hep-ex/9909042 Experiment +hep-ex/9910004 Experiment +hep-ex/9910025 Experiment +hep-ex/9912013 Experiment +hep-ex/9912022 Experiment +hep-ph/0001092 Phenomenology +hep-ph/0001110 Phenomenology +hep-ph/0205217 Phenomenology +hep-ph/0412063 Phenomenology +hep-ph/9502356 Phenomenology +hep-ph/9807513 Phenomenology +hep-th/0312198 Theory +hep-th/0408101 Theory +hep-th/9707082 Theory +math/0311273 Complex Variables +math/0312011 Algebraic Geometry +math/0403055 Geometric Topology +math/0612653 Quantum Algebra +math/0701825 Quantum Algebra +nucl-ex/0610015 +physics/0702126 Optics +quant-ph/0301147 +quant-ph/0307019 +quant-ph/0503230 +quant-ph/0507119 +0704.2055 Symplectic Geometry +0705.0420 Classical Physics +0705.2320 Disordered Systems and Neural Networks +0801.0300 Differential Geometry +0805.4447 +0808.3537 +0810.0630 +0810.5000 Representation Theory +0811.0862 Soft Condensed Matter +0811.1078 Optics +0811.2210 Phenomenology +0811.2536 Theory +0812.1228 Superconductivity +0901.3866 Operator Algebras +0903.5396 Optics +0905.0209 +0906.2877 Classical Physics +0906.3442 Probability +0906.3779 +0907.1402 Dynamical Systems +0907.2985 Representation Theory +0907.3158 Optics +0908.0838 +0909.1004 Fluid Dynamics +0909.1644 Mesoscale and Nanoscale Physics +0909.2656 Strongly Correlated Electrons +0909.2666 Phenomenology +0909.3634 Cosmology and Nongalactic Astrophysics +0909.3790 Formal Languages and Automata Theory +0910.2563 Differential Geometry +0910.4839 Computer Vision and Pattern Recognition +0911.0598 +0911.2175 Phenomenology +0911.2311 Theory +0911.2350 Phenomenology +0911.5441 Dynamical Systems +0911.5649 Disordered Systems and Neural Networks +0912.0815 Algebraic Geometry +0912.1818 Complex Variables +0912.3112 Astrophysics of Galaxies +0912.3114 Astrophysics of Galaxies +0912.3447 Earth and Planetary Astrophysics +0912.4188 Digital Libraries +1001.1112 +1001.3117 Combinatorics +1001.4340 Solar and Stellar Astrophysics +1001.4540 High Energy Astrophysical Phenomena +1002.0641 +1002.2087 Cosmology and Nongalactic Astrophysics +1002.2439 Information Retrieval +1002.2441 Phenomenology +1002.2445 Soft Condensed Matter +1002.2450 Performance +1002.2452 Complex Variables +1002.2456 Information Theory +1002.2463 Classical Analysis and ODEs +1002.2467 Algebraic Topology +1002.2473 Group Theory +1002.2485 Quantum Algebra +1002.2486 Portfolio Management +1002.2487 Portfolio Management +1002.2493 Materials Science +1002.2498 Algebraic Topology +1002.2500 Classical Analysis and ODEs +1002.2501 Analysis of PDEs +1002.2505 Solar and Stellar Astrophysics +1002.2506 Genomics +1002.2508 Combinatorics +1002.2512 Statistical Mechanics +1002.2516 +1002.2517 +1002.2519 Phenomenology +1002.2522 General Physics +1002.2523 Computer Vision and Pattern Recognition +1002.2527 Cryptography and Security +1002.2530 Strongly Correlated Electrons +1002.2533 Optics +1002.2543 +1002.2548 Superconductivity +1002.2555 Combinatorics +1002.2557 Computer Science and Game Theory +1002.2558 Complex Variables +1002.2565 K-Theory and Homology +1002.2567 Solar and Stellar Astrophysics +1002.2568 +1002.2569 Lattice +1002.2576 Quantum Algebra +1002.2578 Logic in Computer Science +1002.2591 +1002.2594 Symbolic Computation +1002.2597 Number Theory +1002.2602 Functional Analysis +1002.2609 Materials Science +1002.2611 Astrophysics of Galaxies +1002.2615 Solar and Stellar Astrophysics +1002.2618 +1002.2619 Optics +1002.2625 Discrete Mathematics +1002.2631 Solar and Stellar Astrophysics +1002.2633 Differential Geometry +1002.2635 Solar and Stellar Astrophysics +0710.1641 Computational Geometry +0711.1431 +0712.2817 Algebraic Geometry +0801.2726 Functional Analysis +0804.4715 Combinatorics +0805.3268 Differential Geometry +0805.3845 Differential Geometry +0806.1215 Information Theory +0807.2046 Analysis of PDEs +0810.1921 Operator Algebras +0811.1463 Number Theory +0812.0886 Operator Algebras +0812.0889 Operator Algebras +0812.1146 Classical Analysis and ODEs +0812.2161 +0812.2799 +0901.1312 Networking and Internet Architecture +0901.3299 Discrete Mathematics +0901.4160 +0902.4448 Combinatorics +0903.2890 Information Theory +0903.5441 Rings and Algebras +0905.0111 Optics +0905.3507 Operator Algebras +0905.3717 Mesoscale and Nanoscale Physics +0905.4065 Operator Algebras +0906.2631 Functional Analysis +0906.4396 Rings and Algebras +0906.4537 Probability +0906.4975 Mesoscale and Nanoscale Physics +0907.1312 Materials Science +0908.0792 Solar and Stellar Astrophysics +0908.2334 General Physics +0909.4438 Rings and Algebras +0910.0324 Probability +0910.1075 +0910.2896 +0910.5206 Biological Physics +0910.5580 Probability +0911.0290 Probability +0912.1364 Mesoscale and Nanoscale Physics +0912.3168 Probability +0912.3556 Superconductivity +0912.3733 Logic +1001.0317 Other Computer Science +1001.1556 Algebraic Topology +1001.3159 Information Theory +1001.4471 Geometric Topology +1001.5311 Statistics Theory +1002.1293 Analysis of PDEs +1002.2798 Other Computer Science +1002.3365 Cosmology and Nongalactic Astrophysics +1002.3495 Mesoscale and Nanoscale Physics +1003.0200 Statistical Mechanics +1003.1039 Other Computer Science +1003.1554 Geophysics +1003.2075 Medical Physics +1003.4641 Quantum Gases +1004.1592 Quantum Gases +1004.2204 Superconductivity +1004.4665 Probability +1004.5194 Learning +1005.0194 Pricing of Securities +1005.1220 Differential Geometry +1005.1417 Numerical Analysis +1005.1762 General Physics +1005.2889 Analysis of PDEs +1005.2890 Analysis of PDEs +1005.3181 Graphics +1005.3190 Graphics +1005.3970 Representation Theory +1005.3984 Optimization and Control +1005.4028 Human-Computer Interaction +1005.4405 Graphics +1005.4548 Number Theory +1005.4563 Graphics +1005.4565 Analysis of PDEs +1005.4639 Geophysics +1005.5008 Instrumentation and Methods for Astrophysics +1005.5165 Cosmology and Nongalactic Astrophysics +1005.5171 Combinatorics +1005.5175 Solar and Stellar Astrophysics +1005.5180 Networking and Internet Architecture +1005.5181 Computer Vision and Pattern Recognition +1005.5183 Programming Languages +1005.5201 Computation +1005.5204 Soft Condensed Matter +1005.5205 Optics +1005.5210 Representation Theory +1005.5218 Disordered Systems and Neural Networks +1005.5221 Medical Physics +1005.5223 Distributed, Parallel, and Cluster Computing +1005.5225 Algebraic Geometry +1005.5226 Mesoscale and Nanoscale Physics +1005.5233 Differential Geometry +1005.5235 Analysis of PDEs +1005.5238 Analysis of PDEs +1005.5253 Computation and Language +1005.5266 Algebraic Geometry +1005.5270 Artificial Intelligence +1005.5275 Probability +1005.5276 Commutative Algebra +1005.5279 High Energy Astrophysical Phenomena +1005.5281 Atmospheric and Oceanic Physics +1005.5285 Probability +1005.5289 Representation Theory +1005.5292 Tissues and Organs +1005.5296 +1005.5304 Chemical Physics +1005.5305 Tissues and Organs +1005.5308 Chemical Physics +1005.5313 Medical Physics +1005.5315 Numerical Analysis +1005.5329 Analysis of PDEs +1005.5333 Complex Variables +1005.5337 Learning +1005.5344 Numerical Analysis +1005.5348 Applications +1005.5359 Commutative Algebra +1005.5361 Information Theory +1005.5364 Materials Science +1005.5367 Networking and Internet Architecture +1005.5368 Optics +1005.5378 Solar and Stellar Astrophysics +1005.5381 Chemical Physics +math/0604384 Algebraic Geometry +math/0604385 Number Theory +math/0703579 Algebraic Geometry +math/0703583 Algebraic Geometry +math/0703623 Algebraic Geometry +math/0703624 Number Theory +physics/0509248 Geophysics +quant-ph/0611188 +0801.3459 +0802.2940 +0805.1111 Optics +0805.1230 +0805.3132 Differential Geometry +0806.3889 Phenomenology +0807.4204 Mesoscale and Nanoscale Physics +0808.3942 Chemical Physics +0810.4074 Group Theory +0811.0626 Algebraic Geometry +0812.0893 Computational Geometry +0812.3636 Superconductivity +0901.1078 Physics and Society +0901.4781 Cosmology and Nongalactic Astrophysics +0902.1636 Superconductivity +0902.2226 Differential Geometry +0903.1927 Theory +0903.3185 +0903.3365 Theory +0903.4439 +0906.0449 Spectral Theory +0907.3946 Theory +0908.0801 +0908.2592 Quantum Gases +0909.2534 Quantum Algebra +0909.3457 Statistical Mechanics +0909.4406 Quantum Gases +0910.3822 +0911.1378 Quantum Gases +0911.2095 Classical Analysis and ODEs +1001.1547 High Energy Astrophysical Phenomena +1001.2341 Category Theory +1002.0627 Mesoscale and Nanoscale Physics +1002.2734 Dynamical Systems +1003.0187 Theory +1003.0399 Theory +1003.0457 Earth and Planetary Astrophysics +1003.0552 Probability +1003.4474 Group Theory +1004.2211 Phenomenology +1004.4597 Theory +1005.0046 Materials Science +1005.4219 Optics +1006.2716 Quantum Gases +1006.3957 Materials Science +1006.3977 Strongly Correlated Electrons +1007.0316 Combinatorics +1007.0684 Phenomenology +1007.1196 High Energy Astrophysical Phenomena +1007.2414 Cosmology and Nongalactic Astrophysics +1007.2567 Astrophysics of Galaxies +1008.0883 Theory +1008.1685 Plasma Physics +1008.1799 Earth and Planetary Astrophysics +1008.2290 Solar and Stellar Astrophysics +1008.3905 Strongly Correlated Electrons +1008.4890 Theory +1008.5363 Materials Science +1009.0312 High Energy Astrophysical Phenomena +1009.0754 Cosmology and Nongalactic Astrophysics +1009.1302 Plasma Physics +1009.2121 Strongly Correlated Electrons +1009.3119 Quantum Gases +1009.3229 Representation Theory +1009.3944 Mesoscale and Nanoscale Physics +1009.4531 Soft Condensed Matter +1009.4708 Strongly Correlated Electrons +1009.5293 +1009.6120 Chaotic Dynamics +1010.0559 Representation Theory +1010.0641 +1011.0467 Quantum Gases +1011.3945 Materials Science +1011.4273 Statistical Mechanics +1011.4438 Formal Languages and Automata Theory +1011.5817 Theory +1011.6602 +1012.0164 Biological Physics +1012.0528 +1012.0665 Computational Physics +1012.1535 Pricing of Securities +1012.2092 Optimization and Control +1012.2403 +1012.2496 Programming Languages +1012.2527 Computational Complexity +1012.2580 Solar and Stellar Astrophysics +1012.2655 +1012.2955 Probability +1012.3053 Combinatorics +1012.3175 Cosmology and Nongalactic Astrophysics +1012.3176 Cosmology and Nongalactic Astrophysics +1012.3180 Differential Geometry +1012.3181 Soft Condensed Matter +1012.3184 Experiment +1012.3185 Logic +1012.3187 Materials Science +1012.3190 High Energy Astrophysical Phenomena +1012.3201 Information Theory +1012.3207 Atomic Physics +1012.3216 Computer Vision and Pattern Recognition +1012.3218 Analysis of PDEs +1012.3221 Analysis of PDEs +1012.3222 +1012.3223 Number Theory +1012.3224 Astrophysics of Galaxies +1012.3240 Geometric Topology +1012.3242 Pattern Formation and Solitons +1012.3243 Group Theory +1012.3247 Algebraic Topology +1012.3249 Group Theory +1012.3250 Group Theory +1012.3252 Physics and Society +1012.3258 Solar and Stellar Astrophysics +1012.3259 Geophysics +1012.3269 Probability +1012.3271 Optimization and Control +1012.3272 Optimization and Control +1012.3273 Discrete Mathematics +1012.3274 Dynamical Systems +1012.3276 Dynamical Systems +1012.3277 Dynamical Systems +1012.3278 Information Retrieval +1012.3279 Algebraic Geometry +1012.3280 Artificial Intelligence +1012.3281 Optimization and Control +1012.3282 Computer Science and Game Theory +1012.3286 Pattern Formation and Solitons +1012.3290 Optimization and Control +1012.3292 Computational Physics +1012.3294 Solar and Stellar Astrophysics +1012.3296 +1012.3299 Optimization and Control +1012.3300 Computational Physics +1012.3302 Strongly Correlated Electrons +1012.3303 Computational Physics +1012.3304 Mesoscale and Nanoscale Physics +1012.3305 Computational Physics +1012.3306 Functional Analysis +1012.3307 Superconductivity +1012.3309 Mesoscale and Nanoscale Physics +1012.3312 Artificial Intelligence +1012.3313 Probability +1012.3322 Strongly Correlated Electrons +1012.3327 +1012.3329 Computational Physics +1012.3330 Superconductivity +1012.3332 Phenomenology +1012.3334 Theory +1012.3335 Optimization and Control +1012.3336 Artificial Intelligence +1012.3344 Optics +1012.3348 Functional Analysis +1012.3351 Category Theory +1012.3354 Computational Physics +1012.3355 Lattice +1012.3358 Algebraic Geometry +1012.3362 Operator Algebras +1012.3368 Biological Physics +1012.3369 Computational Physics +1012.3370 Earth and Planetary Astrophysics +1012.3379 Strongly Correlated Electrons +1012.3384 Differential Geometry +1012.3386 Probability +1012.3387 Combinatorics +1012.3396 Algebraic Geometry +1012.3400 +1012.3402 Algebraic Geometry +1012.3407 Machine Learning +1012.3410 Artificial Intelligence +1012.3414 Number Theory +1012.3416 General Physics +1012.3417 Superconductivity +1012.3420 Complex Variables +1012.3422 Logic +1012.3423 Combinatorics +1012.3430 Other Quantitative Biology +1012.3433 +1012.3434 Representation Theory +1012.3437 Other Quantitative Biology +1012.3442 Symbolic Computation +1012.3443 +1012.3446 Differential Geometry +1012.3451 +1012.3452 Operating Systems +astro-ph/0105390 +astro-ph/0401427 +astro-ph/0405357 +astro-ph/0410642 +astro-ph/9402067 +astro-ph/9605079 +astro-ph/9712325 +cond-mat/0108361 Statistical Mechanics +cond-mat/0412501 Materials Science +cond-mat/0412557 Materials Science +cs/0612063 Programming Languages +hep-ph/0104232 Phenomenology +hep-ph/0307233 Phenomenology +hep-ph/0308263 Phenomenology +hep-ph/0311205 Phenomenology +hep-ph/0412214 Phenomenology +hep-ph/0501224 Phenomenology +hep-ph/0507071 Phenomenology +hep-ph/0608046 Phenomenology +hep-ph/9304292 Phenomenology +hep-ph/9512385 Phenomenology +hep-th/9602146 Theory +hep-th/9704163 Theory +hep-th/9708007 Theory +math/0312453 Representation Theory +math/0701764 Representation Theory +nucl-ex/0412055 +nucl-th/0004020 +nucl-th/0105042 +nucl-th/0105067 +nucl-th/0110045 +nucl-th/0112052 +nucl-th/0202049 +nucl-th/0202069 +nucl-th/0205071 +nucl-th/0210080 +nucl-th/0306063 +nucl-th/0307039 +nucl-th/0311085 +nucl-th/0311087 +nucl-th/0401035 +nucl-th/0403065 +nucl-th/0404088 +nucl-th/0407115 +nucl-th/0412027 +nucl-th/0503087 +nucl-th/0510006 +nucl-th/0510077 +nucl-th/0511061 +nucl-th/0607019 +nucl-th/9709073 +nucl-th/9807040 +nucl-th/9906028 +nucl-th/9907078 +quant-ph/0609119 +0709.3312 Symplectic Geometry +0709.3593 Quantum Algebra +0710.1994 Metric Geometry +0711.3364 +0712.3490 Dynamical Systems +0802.1264 +0803.0709 Soft Condensed Matter +0803.1987 Theory +0804.0064 Superconductivity +0805.0036 Theory +0805.0799 Phenomenology +0805.1397 Phenomenology +0806.3295 Number Theory +0807.1322 +0808.2595 +0809.0381 Theory +0809.2911 +0809.3291 +0811.3307 Phenomenology +0811.3671 Phenomenology +0812.2394 Superconductivity +0901.1336 +0902.3663 Phenomenology +0902.3927 +0903.1047 Theory +0903.2195 Computational Physics +0903.3498 Neurons and Cognition +0904.1694 +0905.1141 Phenomenology +0905.2380 Strongly Correlated Electrons +0905.2505 +0905.2630 General Physics +0905.2686 Theory +0905.3004 Experiment +0905.4221 Data Analysis, Statistics and Probability +0905.4534 +0906.0505 +0906.0788 Phenomenology +0906.0925 +0906.2679 Soft Condensed Matter +0906.5067 +0906.5526 Phenomenology +0907.0008 Strongly Correlated Electrons +0907.1754 +0907.2078 Phenomenology +0907.2207 Theory +0907.2486 +0907.2617 +0907.2691 Theory +0907.4071 Theory +0907.4234 Phenomenology +0907.4408 Phenomenology +0908.0039 Theory +0908.0123 Phenomenology +0908.0880 Phenomenology +0908.1957 +0908.2808 Theory +0908.2938 +0909.0103 Combinatorics +0909.0358 Rings and Algebras +0909.0945 Theory +0909.1110 Theory +0909.1592 Mesoscale and Nanoscale Physics +0909.1926 Algebraic Geometry +0909.2338 Superconductivity +0909.2937 Phenomenology +0909.3523 Phenomenology +0909.3705 Theory +0909.4628 Soft Condensed Matter +0909.5473 Spectral Theory +0909.5497 +0910.1083 Cosmology and Nongalactic Astrophysics +0910.1434 Mesoscale and Nanoscale Physics +0910.2014 Algebraic Geometry +0910.2041 Metric Geometry +0910.2553 Mesoscale and Nanoscale Physics +0910.2954 Strongly Correlated Electrons +0910.3522 Materials Science +0910.3834 Cosmology and Nongalactic Astrophysics +0910.4379 Phenomenology +0910.4530 Theory +0910.4939 +0910.5079 +0911.1006 Phenomenology +0911.1450 Phenomenology +0911.1884 Theory +0911.2220 Theory +0911.2447 Lattice +0911.2836 Theory +0911.3828 Quantum Gases +0911.4410 +0911.4418 Theory +0911.5656 Quantum Gases +0912.1047 History and Overview +0912.1461 +0912.1760 Materials Science +0912.2018 Dynamical Systems +0912.5217 Number Theory +0912.5465 Theory +0912.5536 Phenomenology +1001.0550 +1001.1704 +1002.2101 Mesoscale and Nanoscale Physics +1002.2122 Mesoscale and Nanoscale Physics +1002.2694 Space Physics +1002.3088 Space Physics +1002.3251 Rings and Algebras +1002.3442 +1002.4219 +1002.4290 Formal Languages and Automata Theory +1002.4566 Theory +1002.4704 Algebraic Topology +1002.4825 Analysis of PDEs +1002.4920 Operator Algebras +1003.0017 Geophysics +1003.0018 Astrophysics of Galaxies +1003.0024 Learning +1003.0027 Group Theory +1003.0031 Quantitative Methods +1003.0034 Artificial Intelligence +1003.0046 +1003.0051 Spectral Theory +1003.0066 History and Overview +1003.0078 Machine Learning +1003.0081 Phenomenology +1003.0089 High Energy Astrophysical Phenomena +1003.0091 Cosmology and Nongalactic Astrophysics +1003.0096 Category Theory +1003.0101 Differential Geometry +1003.0102 Materials Science +1003.0103 +1003.0107 Logic in Computer Science +1003.0108 Optimization and Control +1003.0109 Computational Physics +1003.0112 +1003.0113 Instrumentation and Detectors +1003.0114 Classical Analysis and ODEs +1003.0117 Probability +1003.0121 Classical Analysis and ODEs +1003.0122 Solar and Stellar Astrophysics +1003.0125 Algebraic Geometry +1003.0129 Cosmology and Nongalactic Astrophysics +1003.0135 Probability +1003.0143 Materials Science +1003.0150 Data Structures and Algorithms +1003.0152 History and Overview +1003.0162 Optics +1003.0163 Optics +1003.0164 Experiment +1003.0165 +1003.0166 Optics +1003.0169 Representation Theory +1003.0170 +1003.0174 Commutative Algebra +1003.0175 Combinatorics +1003.0176 Mesoscale and Nanoscale Physics +1003.0179 +1003.0182 Applications +1003.0184 +1003.0186 Differential Geometry +1003.0189 Differential Geometry +1003.0197 Representation Theory +1003.0199 Cell Behavior +1003.0204 Astrophysics of Galaxies +1003.0205 Information Theory +1003.0206 Computation and Language +1003.0221 Other Computer Science +1003.0222 Materials Science +1003.0228 Probability +1003.0229 High Energy Astrophysical Phenomena +1003.0233 +1003.0238 Representation Theory +1003.0239 +1003.0242 Information Theory +1003.0243 Methodology +1003.0244 Algebraic Geometry +1003.0245 Representation Theory +1003.0247 +1003.0254 Chaotic Dynamics +1003.0255 General Physics +1003.0259 Astrophysics of Galaxies +1003.0261 Statistics Theory +1003.0264 Algebraic Geometry +1003.0267 Algebraic Geometry +1003.0277 History and Philosophy of Physics +1003.0288 +1003.0305 Dynamical Systems +1003.0308 Solar and Stellar Astrophysics +1003.0315 Methodology +1003.0320 Combinatorics +1003.0323 Algebraic Geometry +1003.0324 Phenomenology +1003.0325 Algebraic Geometry +1003.0331 Phenomenology +1003.0337 Computation and Language +1003.0338 Differential Geometry +1003.0341 Soft Condensed Matter +1003.0343 Dynamical Systems +1003.0348 Probability +1003.0349 Dynamical Systems +1003.0350 Rings and Algebras +1003.0352 +1003.0354 General Topology +1003.0357 Algebraic Geometry +1003.0360 General Mathematics +1003.0367 Information Theory +1003.0375 Superconductivity +1003.0378 Materials Science +1003.0383 Superconductivity +1003.0384 Physics and Society +1003.0394 Combinatorics +1003.0395 Theory +1003.0397 Classical Analysis and ODEs +1003.0398 Differential Geometry +1003.0400 Information Theory +1003.0403 Classical Analysis and ODEs +1003.0407 Superconductivity +1003.0410 Phenomenology +1003.0416 Astrophysics of Galaxies +1003.0422 Differential Geometry +1003.0434 K-Theory and Homology +1003.0436 Analysis of PDEs +1003.0439 Lattice +1003.0442 +astro-ph/0108197 +gr-qc/0003047 +hep-ph/0311364 Phenomenology +hep-ph/0403178 Phenomenology +hep-ph/0404053 Phenomenology +hep-th/0604063 Theory +math/0702537 Functional Analysis +quant-ph/0211037 +quant-ph/0507219 +0708.1694 Fluid Dynamics +0710.0007 +0802.0469 Commutative Algebra +0805.0791 +0806.3373 Strongly Correlated Electrons +0807.1192 Pattern Formation and Solitons +0807.2370 Commutative Algebra +0807.4832 Metric Geometry +0808.3259 Complex Variables +0808.3591 Commutative Algebra +0809.4554 Probability +0812.2399 Probability +0901.0632 Cosmology and Nongalactic Astrophysics +0902.2373 +0902.3495 Classical Analysis and ODEs +0903.0632 Probability +0903.5409 Strongly Correlated Electrons +0904.0001 Strongly Correlated Electrons +0905.0004 Mesoscale and Nanoscale Physics +0905.1624 Group Theory +0905.2046 Strongly Correlated Electrons +0906.1344 Strongly Correlated Electrons +0906.1771 Group Theory +0906.5145 Probability +0907.0240 Plasma Physics +0907.1177 Algebraic Geometry +0907.1703 Commutative Algebra +0907.4116 Cosmology and Nongalactic Astrophysics +0907.4593 Strongly Correlated Electrons +0908.0783 Group Theory +0909.4817 Algebraic Geometry +0910.0343 Statistics Theory +0910.3137 Materials Science +0910.5369 Analysis of PDEs +0910.5945 Combinatorics +0911.1304 +0911.3427 +0911.3705 Superconductivity +0911.4898 +0912.5281 Superconductivity +1002.1287 Strongly Correlated Electrons +1002.3283 Symplectic Geometry +1003.3184 Materials Science +1004.2401 Strongly Correlated Electrons +1004.2569 Strongly Correlated Electrons +1004.4323 Mesoscale and Nanoscale Physics +1005.1834 Instrumentation and Methods for Astrophysics +1005.2931 Materials Science +1005.3168 Phenomenology +1005.3481 Strongly Correlated Electrons +1005.4749 Statistical Mechanics +1006.0603 Disordered Systems and Neural Networks +1006.1202 Mesoscale and Nanoscale Physics +1006.1588 Fluid Dynamics +1006.3505 Superconductivity +1006.4300 Statistical Mechanics +1006.4869 Algebraic Geometry +1006.5853 Disordered Systems and Neural Networks +1007.1910 Exactly Solvable and Integrable Systems +1007.3605 Mesoscale and Nanoscale Physics +1007.3761 Superconductivity +1007.4311 Phenomenology +1007.4574 Materials Science +1008.1771 Materials Science +1008.2050 Superconductivity +1008.2604 Differential Geometry +1008.3791 Earth and Planetary Astrophysics +1009.1146 High Energy Astrophysical Phenomena +1009.3977 Applications +1009.5053 Combinatorics +1010.0263 Superconductivity +1010.0953 Differential Geometry +1010.1166 +1010.2440 Digital Libraries +1010.2921 Data Structures and Algorithms +1010.3201 Logic in Computer Science +1010.3217 Representation Theory +1010.3276 Fluid Dynamics +1010.3366 Statistics Theory +1010.3494 +1010.3601 Information Theory +1010.3663 Atmospheric and Oceanic Physics +1010.3709 Fluid Dynamics +1010.3714 +1010.3720 Solar and Stellar Astrophysics +1010.3726 Information Theory +1010.3727 Geometric Topology +1010.3729 History and Overview +1010.3735 Experiment +1010.3738 Complex Variables +1010.3740 Complex Variables +1010.3741 Fluid Dynamics +1010.3742 Geometric Topology +1010.3746 Experiment +1010.3752 Tissues and Organs +1010.3753 General Physics +1010.3760 Classical Analysis and ODEs +1010.3776 Representation Theory +1010.3779 Quantum Algebra +1010.3781 Number Theory +1010.3783 Data Structures and Algorithms +1010.3785 Instrumentation and Methods for Astrophysics +1010.3786 Group Theory +1010.3787 Cosmology and Nongalactic Astrophysics +1010.3796 Instrumentation and Methods for Astrophysics +1010.3798 Logic +1010.3799 Analysis of PDEs +1010.3800 Quantum Algebra +1010.3802 Solar and Stellar Astrophysics +1010.3803 Algebraic Geometry +1010.3807 Exactly Solvable and Integrable Systems +1010.3810 Information Theory +1010.3811 Statistical Mechanics +1010.3819 Probability +1010.3821 Statistics Theory +1010.3822 Differential Geometry +1010.3824 +1010.3825 Statistics Theory +1010.3826 General Physics +1010.3833 Number Theory +1010.3836 Statistics Theory +1010.3843 Statistics Theory +1010.3845 Populations and Evolution +1010.3852 Chemical Physics +1010.3855 Statistics Theory +1010.3860 Combinatorics +1010.3861 High Energy Astrophysical Phenomena +1010.3862 Cryptography and Security +1010.3866 Statistics Theory +1010.3867 Computer Vision and Pattern Recognition +1010.3871 Representation Theory +1010.3873 Representation Theory +1010.3877 Group Theory +1010.3882 Applications +1010.3889 Number Theory +1010.3891 Statistics Theory +1010.3894 General Physics +1010.3901 Statistics Theory +1010.3903 Materials Science +1010.3905 Materials Science +1010.3909 Systems and Control +1010.3913 Statistical Mechanics +1010.3915 Quantum Gases +1010.3916 Statistics Theory +1010.3919 +1010.3925 Superconductivity +1010.3928 Number Theory +1010.3932 K-Theory and Homology +1010.3935 Computer Vision and Pattern Recognition +1010.3939 General Physics +1010.3941 Networking and Internet Architecture +1010.3945 Number Theory +1010.3947 Computer Vision and Pattern Recognition +1010.3948 Probability +1010.3951 Multimedia +1010.3955 Methodology +1010.3957 Plasma Physics +1010.3961 Combinatorics +1010.3963 High Energy Astrophysical Phenomena +1010.3965 Combinatorics +1010.3969 +1010.3976 Data Structures and Algorithms +1010.3977 Cosmology and Nongalactic Astrophysics +1010.3981 Information Theory +1010.3984 Space Physics +1010.3987 Solar and Stellar Astrophysics +1010.3988 Information Retrieval +1010.3990 Phenomenology +1010.3994 Space Physics +1010.3998 Space Physics +1010.4000 Fluid Dynamics +1010.4007 Multimedia +1010.4008 Analysis of PDEs +1010.4010 Instrumentation and Detectors +1010.4011 Analysis of PDEs +1010.4017 Fluid Dynamics +1010.4018 Distributed, Parallel, and Cluster Computing +1010.4020 +1010.4021 Computer Vision and Pattern Recognition +cond-mat/0612632 Strongly Correlated Electrons +gr-qc/0412130 +math/0611552 Commutative Algebra +math/0611939 Differential Geometry +math/0701666 Geometric Topology +math/0703104 Algebraic Geometry +0706.0943 Number Theory +0706.4019 K-Theory and Homology +0707.2362 Experiment +0708.1580 Information Theory +0711.4853 Representation Theory +0801.0130 Number Theory +0802.4311 Trading and Market Microstructure +0804.3056 Soft Condensed Matter +0804.3240 +0805.1742 Combinatorics +0807.3650 +0811.4227 +0901.3038 +0901.4662 Algebraic Geometry +0902.4190 Number Theory +0903.3618 Complex Variables +0904.1374 Cosmology and Nongalactic Astrophysics +0904.4155 Networking and Internet Architecture +0905.0421 Statistical Mechanics +0907.3813 Atomic Physics +0908.2389 +0908.2649 +0908.2851 Plasma Physics +0909.4155 +0910.2061 Operator Algebras +0910.3793 Cosmology and Nongalactic Astrophysics +0911.0763 Cosmology and Nongalactic Astrophysics +0911.2339 High Energy Astrophysical Phenomena +0911.2681 Exactly Solvable and Integrable Systems +0911.4526 Analysis of PDEs +0911.4805 +0912.3248 Cosmology and Nongalactic Astrophysics +0912.5227 Classical Analysis and ODEs +0912.5397 Lattice +1001.0185 Strongly Correlated Electrons +1001.1780 Solar and Stellar Astrophysics +1001.3803 Functional Analysis +1001.5355 Biological Physics +1001.5470 Discrete Mathematics +1002.1098 High Energy Astrophysical Phenomena +1002.2438 Combinatorics +1002.2903 Atomic Physics +1002.4018 Phenomenology +1003.0262 Superconductivity +1003.0728 Chaotic Dynamics +1003.3891 +1003.4211 Cosmology and Nongalactic Astrophysics +1004.1038 Superconductivity +1004.1559 Cosmology and Nongalactic Astrophysics +1004.1560 Mesoscale and Nanoscale Physics +1004.3213 High Energy Astrophysical Phenomena +1005.0427 Number Theory +1005.1255 Phenomenology +1006.1313 +1006.3041 Optics +1007.0747 Theory +1007.1344 Superconductivity +1007.1555 Category Theory +1007.2681 Solar and Stellar Astrophysics +1007.3075 Information Theory +1007.3451 Superconductivity +1008.0387 Number Theory +1008.1063 Populations and Evolution +1008.3015 Combinatorics +1008.3037 Chaotic Dynamics +1008.3229 Statistics Theory +1008.3401 Number Theory +1008.3404 Metric Geometry +1008.3409 Materials Science +1008.3416 Earth and Planetary Astrophysics +1008.3417 Differential Geometry +1008.3421 Optimization and Control +1008.3424 Optics +1008.3425 Phenomenology +1008.3427 Risk Management +1008.3431 Programming Languages +1008.3433 +1008.3434 Programming Languages +1008.3436 Phenomenology +1008.3437 Information Theory +1008.3438 Cosmology and Nongalactic Astrophysics +1008.3441 Functional Analysis +1008.3457 Analysis of PDEs +1008.3458 Statistical Mechanics +1008.3461 Strongly Correlated Electrons +1008.3467 Earth and Planetary Astrophysics +1008.3468 +1008.3471 Logic +1008.3476 Solar and Stellar Astrophysics +1008.3480 Analysis of PDEs +1008.3483 Dynamical Systems +1008.3484 Functional Analysis +1008.3490 Functional Analysis +1008.3502 Instrumentation and Methods for Astrophysics +1008.3503 Data Structures and Algorithms +1008.3505 Networking and Internet Architecture +1008.3514 Probability +1008.3522 Probability +1008.3527 Dynamical Systems +1008.3533 Hardware Architecture +1008.3537 +1008.3542 Mesoscale and Nanoscale Physics +1008.3544 Analysis of PDEs +1008.3546 Data Structures and Algorithms +1008.3551 Computational Engineering, Finance, and Science +1008.3558 Statistical Mechanics +1008.3561 Programming Languages +cond-mat/0603565 Soft Condensed Matter +cond-mat/0609409 Mesoscale and Nanoscale Physics +math-ph/0510008 +math/0412220 Number Theory +math/0502007 Number Theory +math/0605162 Number Theory +physics/0309082 Chemical Physics +physics/0606008 Classical Physics +physics/0606009 Classical Physics +quant-ph/0208060 +0711.0723 Other Condensed Matter +0801.0120 Combinatorics +0801.2603 Representation Theory +0801.2806 Representation Theory +0802.0489 Statistics Theory +0802.2567 Quantum Algebra +0802.2655 Statistics Theory +0804.4629 Dynamical Systems +0805.3121 Strongly Correlated Electrons +0806.0438 Strongly Correlated Electrons +0806.1380 +0807.0910 Differential Geometry +0808.0934 Group Theory +0812.1923 Chemical Physics +0812.4625 +0901.1572 Populations and Evolution +0902.3384 Statistical Mechanics +0903.5422 Representation Theory +0905.4237 Statistical Finance +0907.0236 +0907.0649 Networking and Internet Architecture +0907.2536 Strongly Correlated Electrons +0908.0488 Computational Geometry +0908.1329 Mesoscale and Nanoscale Physics +0908.3592 Differential Geometry +0909.0579 Statistical Mechanics +0910.0244 Phenomenology +0910.2220 Commutative Algebra +0911.1443 Statistics Theory +0911.4973 Cosmology and Nongalactic Astrophysics +0911.5217 Strongly Correlated Electrons +0911.5459 Information Theory +0912.0792 Materials Science +0912.1846 Quantum Gases +0912.2399 Materials Science +0912.3691 +0912.4539 Superconductivity +1001.3721 Probability +1001.4766 Probability +1003.1936 Strongly Correlated Electrons +1003.2715 Disordered Systems and Neural Networks +1003.4321 Mesoscale and Nanoscale Physics +1003.4413 Geometric Topology +1003.5099 Phenomenology +1004.0329 Mesoscale and Nanoscale Physics +1004.3677 Strongly Correlated Electrons +1004.4874 +1005.0652 Materials Science +1005.1592 Earth and Planetary Astrophysics +1005.2144 Statistical Mechanics +1005.2969 Earth and Planetary Astrophysics +1005.3902 Computation and Language +1005.3908 Probability +1005.4805 Analysis of PDEs +1005.5241 Performance +1005.5597 Analysis of PDEs +1005.5604 Dynamical Systems +1005.5608 Logic in Computer Science +1005.5610 Symbolic Computation +1005.5615 +1005.5634 Analysis of PDEs +1006.0309 Algebraic Geometry +1006.0575 Databases +1006.0805 Analysis of PDEs +1006.1031 Discrete Mathematics +1006.1082 Rings and Algebras +1006.1204 Solar and Stellar Astrophysics +1006.1206 Solar and Stellar Astrophysics +1006.1541 Probability +1006.1937 +1006.2799 Earth and Planetary Astrophysics +1006.3141 Distributed, Parallel, and Cluster Computing +1006.3925 Optimization and Control +1006.3993 Data Structures and Algorithms +1006.4047 Probability +1006.4215 Soft Condensed Matter +1006.4490 Networking and Internet Architecture +1006.4672 Fluid Dynamics +1006.5528 Dynamical Systems +1006.5529 Soft Condensed Matter +1006.5780 Analysis of PDEs +1006.5781 Soft Condensed Matter +1006.5782 History and Overview +1006.5783 History and Overview +1006.5785 Soft Condensed Matter +1006.5787 Robotics +1006.5835 Probability +1006.5837 Analysis of PDEs +1007.0822 Logic +1007.0824 Learning +1007.0912 Dynamical Systems +1007.0938 +1007.1129 Geometric Topology +1007.1298 Statistics Theory +1007.1365 Group Theory +1007.1545 Analysis of PDEs +1007.1548 Networking and Internet Architecture +1007.1549 Differential Geometry +1007.1801 Instrumentation and Methods for Astrophysics +1007.2104 Geophysics +1007.2242 Astrophysics of Galaxies +1007.2658 +1007.2837 Analysis of PDEs +1007.3183 Programming Languages +1007.3350 Logic in Computer Science +1007.3385 Probability +1007.3759 Mesoscale and Nanoscale Physics +1007.3805 Data Analysis, Statistics and Probability +1007.3903 Phenomenology +1007.3921 Analysis of PDEs +1007.3959 Probability +1007.3999 Phenomenology +1007.4003 Theory +1007.4006 Materials Science +1007.4007 +1007.4022 Group Theory +1007.4024 Probability +1007.4026 Classical Physics +1007.4028 Logic in Computer Science +1007.4029 Analysis of PDEs +1007.4030 Algebraic Geometry +1007.4037 Probability +1007.4040 Artificial Intelligence +1007.4043 Representation Theory +1007.4046 Optics +1007.4047 Strongly Correlated Electrons +1007.4054 General Physics +1007.4057 Distributed, Parallel, and Cluster Computing +1007.4058 Physics and Society +1007.4059 Atomic Physics +1007.4062 Machine Learning +1007.4063 Discrete Mathematics +1007.4076 Rings and Algebras +1007.4083 Classical Physics +1007.4085 +1007.4086 Functional Analysis +1007.4089 Mesoscale and Nanoscale Physics +1007.4095 Analysis of PDEs +1007.4096 Combinatorics +1007.4098 Biomolecules +1007.4100 Theory +1007.4101 Cosmology and Nongalactic Astrophysics +1007.4102 Probability +1007.4110 Representation Theory +1007.4111 +1007.4114 Logic in Computer Science +1007.4115 Superconductivity +1007.4118 Rings and Algebras +1007.4120 Quantitative Methods +1007.4122 Quantitative Methods +1007.4124 Quantitative Methods +1007.4128 +1007.4131 Functional Analysis +1007.4132 +1007.4137 Chaotic Dynamics +1007.4140 Phenomenology +1007.4143 Differential Geometry +1007.4148 Methodology +1007.4149 Molecular Networks +1007.4150 Combinatorics +1007.4154 Discrete Mathematics +1007.4157 Programming Languages +1007.4158 Algebraic Geometry +1007.4164 General Physics +1007.4169 Methodology +1007.4172 Logic in Computer Science +1007.4174 High Energy Astrophysical Phenomena +1007.4184 +1007.4188 Materials Science +1007.4190 Dynamical Systems +1007.4191 Data Structures and Algorithms +1007.4192 Popular Physics +math/0010078 Differential Geometry +math/0010090 Differential Geometry +math/0011003 Differential Geometry +math/0206201 Geometric Topology +math/0501513 Algebraic Topology +physics/0604210 Computational Physics +quant-ph/0611238 +quant-ph/0701096 +0704.2319 Mesoscale and Nanoscale Physics +0705.3812 Dynamical Systems +0706.0579 Algebraic Geometry +0707.3812 Differential Geometry +0809.0352 Computational Complexity +0809.3452 Phenomenology +0811.3833 Commutative Algebra +0812.4380 Materials Science +0903.2626 Strongly Correlated Electrons +0904.0925 Phenomenology +0904.1372 +0904.3557 Theory +0905.2778 Dynamical Systems +0905.4692 +0905.4811 Strongly Correlated Electrons +0907.2704 Strongly Correlated Electrons +0907.3097 Probability +0908.2092 Mesoscale and Nanoscale Physics +0908.2596 Group Theory +0908.3275 +0910.0477 Theory +0910.1077 Combinatorics +0910.2524 Statistical Finance +0910.5864 Soft Condensed Matter +0911.1941 Phenomenology +1001.2795 Strongly Correlated Electrons +1001.3830 +1001.4748 Superconductivity +1002.0377 General Finance +1002.3741 Analysis of PDEs +1002.4423 Quantum Gases +1003.0824 Commutative Algebra +1003.1927 Probability +1003.3090 Networking and Internet Architecture +1003.3091 Networking and Internet Architecture +1003.3092 Networking and Internet Architecture +1003.3307 Networking and Internet Architecture +1003.3310 Networking and Internet Architecture +1003.3311 Networking and Internet Architecture +1003.3312 Networking and Internet Architecture +1003.3317 Networking and Internet Architecture +1003.3322 Networking and Internet Architecture +1003.3325 Computer Science and Game Theory +1003.3326 Networking and Internet Architecture +1003.3553 Networking and Internet Architecture +1003.3555 Networking and Internet Architecture +1003.3556 Networking and Internet Architecture +1003.3564 Networking and Internet Architecture +1003.3565 Networking and Internet Architecture +1003.3566 Networking and Internet Architecture +1003.3568 Networking and Internet Architecture +1003.3569 Networking and Internet Architecture +1003.3987 +1003.4634 Atomic Physics +1003.5429 Networking and Internet Architecture +1003.5431 Networking and Internet Architecture +1003.5432 Networking and Internet Architecture +1003.5435 Computer Vision and Pattern Recognition +1003.5437 Networking and Internet Architecture +1003.5438 Networking and Internet Architecture +1003.5439 Other Computer Science +1003.5440 Networking and Internet Architecture +1003.5442 Other Computer Science +1003.5775 Networking and Internet Architecture +1003.6030 Other Computer Science +1004.0185 Materials Science +1004.0421 Networking and Internet Architecture +1004.0422 Networking and Internet Architecture +1004.0567 Learning +1004.0570 Networking and Internet Architecture +1004.0571 Cryptography and Security +1004.0574 Cryptography and Security +1004.0587 Networking and Internet Architecture +1004.0590 Cryptography and Security +1004.0591 Cryptography and Security +1004.0594 Cryptography and Security +1004.0596 Networking and Internet Architecture +1004.0599 Cryptography and Security +1004.0602 Networking and Internet Architecture +1004.0604 Software Engineering +1004.0605 Cryptography and Security +1004.0762 Cryptography and Security +1004.0765 Computer Science and Game Theory +1004.0767 Cryptography and Security +1004.0769 Networking and Internet Architecture +1004.0770 Cryptography and Security +1004.0771 Networking and Internet Architecture +1004.0772 Cryptography and Security +1004.0774 Software Engineering +1004.2999 Strongly Correlated Electrons +1004.3605 Mesoscale and Nanoscale Physics +1004.4499 Quantum Gases +1005.0116 Materials Science +1005.0408 Mesoscale and Nanoscale Physics +1005.1734 Networking and Internet Architecture +1005.1736 Cryptography and Security +1005.1737 Networking and Internet Architecture +1005.1739 Networking and Internet Architecture +1005.1740 Networking and Internet Architecture +1005.1742 Networking and Internet Architecture +1005.1747 Distributed, Parallel, and Cluster Computing +1005.1749 Networking and Internet Architecture +1005.1751 Distributed, Parallel, and Cluster Computing +1005.1755 Networking and Internet Architecture +1005.1757 Multimedia +1005.1758 Networking and Internet Architecture +1005.1759 Networking and Internet Architecture +1005.1787 Networking and Internet Architecture +1005.1992 Performance +1005.2045 +1005.2050 Networking and Internet Architecture +1005.2504 Statistical Mechanics +1005.2821 Networking and Internet Architecture +1005.3417 Algebraic Geometry +1005.4496 Artificial Intelligence +1005.4499 Cryptography and Security +1005.4501 Cryptography and Security +1005.4504 Cryptography and Security +1005.4505 Networking and Internet Architecture +1005.5028 Cryptography and Security +1005.5271 Information Retrieval +1005.5432 Databases +1005.5433 Databases +1005.5434 Databases +1005.5435 Distributed, Parallel, and Cluster Computing +1005.5436 Multimedia +1005.5437 Computer Vision and Pattern Recognition +1005.5438 Databases +1005.5439 Computer Vision and Pattern Recognition +1005.5440 Distributed, Parallel, and Cluster Computing +1005.5606 Distributed, Parallel, and Cluster Computing +1005.5613 Multimedia +1006.0539 Theory +1006.0866 Sound +1006.0869 Computers and Society +1006.0876 Databases +1006.0878 Computers and Society +1006.0880 Logic in Computer Science +1006.1177 Distributed, Parallel, and Cluster Computing +1006.1178 Other Computer Science +1006.1179 Hardware Architecture +1006.1182 Software Engineering +1006.1184 Information Retrieval +1006.1186 Multimedia +1006.1187 Computer Vision and Pattern Recognition +1006.1190 Artificial Intelligence +1006.1191 Distributed, Parallel, and Cluster Computing +1006.1192 Cryptography and Security +1006.1193 Mathematical Software +1006.1198 Cryptography and Security +1006.1467 Number Theory +1006.3366 Networking and Internet Architecture +1006.3369 Networking and Internet Architecture +1006.3371 Networking and Internet Architecture +1006.3373 Networking and Internet Architecture +1006.3374 Networking and Internet Architecture +1006.3375 Networking and Internet Architecture +1006.3376 Networking and Internet Architecture +1006.3609 Other Computer Science +1006.3610 Networking and Internet Architecture +1006.3744 Instrumentation and Detectors +1006.3845 Networking and Internet Architecture +1006.4001 Earth and Planetary Astrophysics +1006.4297 Mesoscale and Nanoscale Physics +1007.0810 Fluid Dynamics +1007.1709 Distributed, Parallel, and Cluster Computing +1007.2040 Optimization and Control +1007.2121 Soft Condensed Matter +1007.2203 Algebraic Geometry +1007.2204 Graphics +1007.2205 Functional Analysis +1007.2206 High Energy Astrophysical Phenomena +1007.2207 Metric Geometry +1007.2214 Functional Analysis +1007.2216 Data Structures and Algorithms +1007.2217 Cryptography and Security +1007.2222 Soft Condensed Matter +1007.2229 Medical Physics +1007.2235 Combinatorics +1007.2239 Number Theory +1007.2246 +1007.2251 Strongly Correlated Electrons +1007.2255 Probability +1007.2258 Chemical Physics +1007.2261 Group Theory +1007.2271 Strongly Correlated Electrons +1007.2276 Materials Science +1007.2279 Strongly Correlated Electrons +1007.2280 Networking and Internet Architecture +1007.2282 Discrete Mathematics +1007.2285 Group Theory +1007.2288 Phenomenology +1007.2295 Complex Variables +1007.2298 Cosmology and Nongalactic Astrophysics +1007.2301 Combinatorics +1007.2307 Number Theory +1007.2308 Algebraic Geometry +1007.2311 Combinatorics +1007.2314 Optics +1007.2316 Optimization and Control +1007.2318 Number Theory +1007.2322 +1007.2324 Phenomenology +1007.2328 Instrumentation and Methods for Astrophysics +1007.2338 +1007.2339 +1007.2340 Strongly Correlated Electrons +1007.2341 Strongly Correlated Electrons +1007.2346 Geometric Topology +1007.2352 Trading and Market Microstructure +1007.2353 Formal Languages and Automata Theory +1007.2358 Instrumentation and Detectors +1007.2359 +1007.2362 Metric Geometry +1007.2364 Artificial Intelligence +1007.2365 Data Structures and Algorithms +1007.2366 Mesoscale and Nanoscale Physics +1007.2372 Quantum Algebra +1007.2375 General Mathematics +1007.2376 Logic +1007.2381 Software Engineering +1007.2388 Probability +1007.2391 Complex Variables +1007.2394 Algebraic Geometry +1007.2403 Geophysics +cond-mat/0606134 Mesoscale and Nanoscale Physics +cond-mat/0607401 Other Condensed Matter +math/0002162 Geometric Topology +0705.3910 Experiment +0705.4598 Experiment +0706.2938 Experiment +0706.4042 Probability +0706.4318 Experiment +0707.1080 Theory +0708.3011 Instrumentation and Detectors +0709.4572 Experiment +0710.0278 +0710.0656 Experiment +0710.1205 Geophysics +0710.4108 Experiment +0711.0693 Experiment +0711.2369 +0801.2556 Experiment +0801.3623 Experiment +0802.0068 Logic +0802.0438 +0802.1669 Methodology +0802.2965 Experiment +0802.4388 Logic +0803.0077 +0803.1779 Geophysics +0804.0716 +0804.0763 Theory +0805.2852 K-Theory and Homology +0805.3326 Probability +0806.0423 Mesoscale and Nanoscale Physics +0806.0597 Probability +0807.0447 +0807.0810 +0807.4716 Statistical Mechanics +0808.0006 Experiment +0808.3784 Experiment +0809.0048 Experiment +0809.0182 Strongly Correlated Electrons +0809.1624 Phenomenology +0809.1851 +0809.2705 +0809.2886 Experiment +0809.2909 +0809.3985 Disordered Systems and Neural Networks +0809.4078 Experiment +0810.1518 +0810.2078 Experiment +0810.2106 Number Theory +0810.3652 Experiment +0810.4681 Mesoscale and Nanoscale Physics +0810.4751 Experiment +0810.4880 Statistical Mechanics +0811.0141 Rings and Algebras +0811.2380 Phenomenology +0811.3200 Theory +0811.3433 Statistical Mechanics +0811.4132 +0811.4456 Other Condensed Matter +0812.2956 +0812.3395 +0812.3757 +0901.0404 +0901.1341 Theory +0901.2135 Experiment +0901.3664 Statistical Mechanics +0901.3816 Phenomenology +0902.0686 Mesoscale and Nanoscale Physics +0902.2468 Analysis of PDEs +0902.3478 +0902.4899 Rings and Algebras +0903.0969 Phenomenology +0903.1024 Phenomenology +0903.1891 Atomic Physics +0903.2624 +0903.3088 +0903.3390 Strongly Correlated Electrons +0903.4192 Atomic Physics +0903.4260 +0903.4262 +0903.4616 Data Analysis, Statistics and Probability +0903.4957 Logic +0904.0010 +0904.0741 +0904.0801 Theory +0904.4888 High Energy Astrophysical Phenomena +0905.4678 Phenomenology +0906.0125 Molecular Networks +0906.0291 Probability +0906.1898 Superconductivity +0906.2881 Phenomenology +0906.3482 Statistical Mechanics +0906.4301 +0906.4399 Theory +0906.5046 Phenomenology +0907.2273 +0907.3198 Quantum Gases +0907.3239 Experiment +0907.3690 +0907.4278 +0908.0184 Theory +0908.0859 Differential Geometry +0908.1028 +0908.2039 +0908.2090 +0908.2441 Atomic Physics +0908.2933 +0908.3113 +0908.3333 +0908.3643 +0908.3919 Quantum Gases +0909.0268 Phenomenology +0909.0281 +0909.0376 +0909.0412 +0909.0693 Theory +0909.1116 +0909.1285 +0909.1324 Theory +0909.1606 Phenomenology +0909.2242 Combinatorics +0909.2528 Mesoscale and Nanoscale Physics +0909.2863 Phenomenology +0909.3039 Experiment +0909.3406 Mesoscale and Nanoscale Physics +0909.3729 Experiment +0909.4146 Phenomenology +0909.4476 Phenomenology +0909.4527 Phenomenology +0909.4562 +0909.4684 Phenomenology +0909.4694 Phenomenology +0909.4984 +0909.5061 Phenomenology +0909.5111 Phenomenology +0909.5467 Experiment +0909.5679 Experiment +0909.5680 Superconductivity +0910.0012 Phenomenology +0910.0046 Experiment +0910.0667 +0910.0731 Mesoscale and Nanoscale Physics +0910.0879 Experiment +0910.0914 Quantum Gases +0910.1331 Experiment +0910.1889 Experiment +0910.1906 Cosmology and Nongalactic Astrophysics +0910.1907 Materials Science +0910.2123 Phenomenology +0910.2267 Phenomenology +0910.2295 Experiment +0910.2309 Pricing of Securities +0910.2981 Phenomenology +0910.4314 Phenomenology +0910.4462 Phenomenology +0910.4779 Theory +0910.4867 Mesoscale and Nanoscale Physics +0910.5628 Phenomenology +0910.5719 High Energy Astrophysical Phenomena +0911.0378 +0911.0880 Experiment +0911.1150 Experiment +0911.1359 Cosmology and Nongalactic Astrophysics +0911.2142 Computational Geometry +0911.2764 Solar and Stellar Astrophysics +0911.3061 Theory +0911.3140 +0911.3264 Fluid Dynamics +0911.3759 +0911.3865 Phenomenology +0911.4820 Cosmology and Nongalactic Astrophysics +0911.4955 Cosmology and Nongalactic Astrophysics +0911.5334 Theory +0911.5644 Cosmology and Nongalactic Astrophysics +0912.0489 Phenomenology +0912.0708 +0912.0776 Phenomenology +0912.0968 Experiment +0912.1640 Quantum Gases +0912.1704 Mesoscale and Nanoscale Physics +0912.1718 Phenomenology +0912.1951 Number Theory +0912.1968 Numerical Analysis +0912.2992 Mesoscale and Nanoscale Physics +0912.3018 +0912.3086 Computational Physics +0912.3652 General Finance +0912.3681 Atomic Physics +0912.3799 Phenomenology +0912.3806 Theory +0912.4069 +0912.4167 Phenomenology +0912.4250 +0912.4285 Soft Condensed Matter +0912.4773 Cosmology and Nongalactic Astrophysics +0912.4848 Theory +0912.5351 +0912.5360 +0912.5375 Phenomenology +0912.5454 Cosmology and Nongalactic Astrophysics +1001.0998 Phenomenology +1001.1410 Cosmology and Nongalactic Astrophysics +1001.1709 +1001.1883 Experiment +1001.2146 Solar and Stellar Astrophysics +1001.2265 Phenomenology +1001.2266 +1001.2659 Theory +1001.2663 +1001.2944 Phenomenology +1001.3611 Materials Science +1001.3870 Cosmology and Nongalactic Astrophysics +1001.4057 Phenomenology +1001.4077 +1001.4101 Cosmology and Nongalactic Astrophysics +1001.4450 Mesoscale and Nanoscale Physics +1001.4595 Experiment +1001.5114 +1001.5167 Cosmology and Nongalactic Astrophysics +1001.5399 Cosmology and Nongalactic Astrophysics +1002.0342 Phenomenology +1002.1189 Lattice +1002.1612 Phenomenology +1002.1655 Experiment +1002.1733 Theory +1002.2374 Lattice +1002.2948 Cosmology and Nongalactic Astrophysics +1002.3703 Cosmology and Nongalactic Astrophysics +1002.3705 +1002.3844 Geometric Topology +1002.3874 Lattice +1003.1648 +1003.1923 Earth and Planetary Astrophysics +1003.2900 +1003.3518 High Energy Astrophysical Phenomena +1003.4838 Representation Theory +1004.0148 +1004.0565 Dynamical Systems +1004.1368 Subcellular Processes +1004.1868 +1004.2272 Group Theory +1004.2968 Data Structures and Algorithms +1004.3077 Phenomenology +1004.3097 Algebraic Geometry +1004.3377 Phenomenology +1004.3436 Atmospheric and Oceanic Physics +1004.3547 Physics and Society +1004.3549 Computer Vision and Pattern Recognition +1004.3555 Networking and Internet Architecture +1004.3556 Multimedia +1004.3557 Neural and Evolutionary Computing +1004.3560 Performance +1004.3563 Networking and Internet Architecture +1004.3564 +1004.3565 Databases +1004.3566 Distributed, Parallel, and Cluster Computing +1004.3568 Databases +1004.3571 Computational Engineering, Finance, and Science +1004.3577 Probability +1004.3578 History and Philosophy of Physics +1004.3583 Optimization and Control +1004.3588 Group Theory +1004.3591 Complex Variables +1004.3593 Differential Geometry +1004.3595 Representation Theory +1004.3601 Representation Theory +1004.3602 High Energy Astrophysical Phenomena +1004.3603 Representation Theory +1004.3608 Computational Complexity +1004.3614 Strongly Correlated Electrons +1004.3616 Numerical Analysis +1004.3617 Networking and Internet Architecture +1004.3618 Geometric Topology +1004.3620 Algebraic Geometry +1004.3621 Numerical Analysis +1004.3629 Computer Vision and Pattern Recognition +1004.3634 Differential Geometry +1004.3635 Formal Languages and Automata Theory +1004.3640 Software Engineering +1004.3645 +1004.3656 Mesoscale and Nanoscale Physics +1004.3659 Computational Complexity +1004.3662 Strongly Correlated Electrons +1004.3663 Soft Condensed Matter +1004.3671 Instrumentation and Detectors +1004.3674 +1004.3676 Experiment +1004.3681 Instrumentation and Detectors +1004.3682 Materials Science +1004.3685 Physics and Society +1004.3687 Operating Systems +1004.3688 Cosmology and Nongalactic Astrophysics +1004.3690 Plasma Physics +1004.3693 Cosmology and Nongalactic Astrophysics +1004.3703 +1004.3704 Analysis of PDEs +1004.3709 Combinatorics +1004.3711 Complex Variables +1004.3716 Data Structures and Algorithms +1004.3717 Methodology +1004.3718 Quantum Gases +1004.3725 Neural and Evolutionary Computing +1004.3726 Methodology +1004.3729 Number Theory +1004.3739 Optics +1004.3742 Information Theory +1004.3744 Theory +1004.3745 Information Theory +1004.3747 Differential Geometry +1004.3751 Functional Analysis +1004.3758 Pricing of Securities +1004.3761 Superconductivity +1004.3764 Analysis of PDEs +1004.3769 Theory +1004.3777 Computational Complexity +1004.3780 Complex Variables +astro-ph/0303344 +astro-ph/0312175 +astro-ph/0503644 +cond-mat/0012433 Soft Condensed Matter +hep-ex/0209061 Experiment +hep-ex/0301002 Experiment +hep-ex/0302016 Experiment +hep-ex/0302023 Experiment +hep-ex/0306046 Experiment +hep-ex/0307025 Experiment +hep-ex/0307027 Experiment +hep-ex/0310033 Experiment +hep-ex/0310035 Experiment +hep-ex/0310055 Experiment +hep-ex/0401021 Experiment +hep-ex/0402020 Experiment +hep-ex/0406061 Experiment +hep-ex/0407034 Experiment +hep-ex/0407043 Experiment +hep-ex/0408147 Experiment +hep-ex/0408151 Experiment +hep-ex/0409001 Experiment +hep-ex/0409002 Experiment +hep-ex/0409013 Experiment +hep-ex/0409021 Experiment +hep-ex/0409024 Experiment +hep-ex/0409039 Experiment +hep-ex/0409052 Experiment +hep-ex/0409067 Experiment +hep-ex/0410019 Experiment +hep-ex/0410024 Experiment +hep-ex/0411009 Experiment +hep-ex/0411010 Experiment +hep-ex/0411025 Experiment +hep-ex/0411048 Experiment +hep-ex/0411067 Experiment +hep-ex/0412024 Experiment +hep-ex/0412028 Experiment +hep-ex/0412061 Experiment +hep-ex/0501055 Experiment +hep-ex/0501067 Experiment +hep-ex/0503025 Experiment +hep-ex/0505083 Experiment +hep-ex/0507106 Experiment +hep-ex/0509007 Experiment +hep-ex/0510069 Experiment +hep-ex/0511007 Experiment +hep-ex/0511025 Experiment +hep-ex/0511041 Experiment +hep-ex/0511051 Experiment +hep-ex/0512006 Experiment +hep-ex/0512024 Experiment +hep-ex/0512045 Experiment +hep-ex/0601012 Experiment +hep-ex/0601016 Experiment +hep-ex/0601031 Experiment +hep-ex/0601041 Experiment +hep-ex/0602019 Experiment +hep-ex/0602024 Experiment +hep-ex/0602038 Experiment +hep-ex/0602039 Experiment +hep-ex/0602048 Experiment +hep-ex/0603007 Experiment +hep-ex/0605038 Experiment +hep-ex/0605076 Experiment +hep-ex/0605090 Experiment +hep-ex/0609017 Experiment +hep-ex/0609028 Experiment +hep-ex/0610009 Experiment +hep-ex/0610055 Experiment +hep-ex/0610083 Experiment +hep-ex/0610087 Experiment +hep-ex/0612009 Experiment +hep-ex/0612018 Experiment +hep-ex/0701036 Experiment +hep-ph/0307165 Phenomenology +hep-ph/0307346 Phenomenology +hep-ph/0311192 Phenomenology +hep-ph/0601228 Phenomenology +math/0311413 Functional Analysis +math/0701794 Analysis of PDEs +physics/0212056 Accelerator Physics +physics/0306060 Computational Physics +physics/0510116 Instrumentation and Detectors +physics/0604199 Instrumentation and Detectors +physics/0608081 Instrumentation and Detectors +quant-ph/0612165 +0711.4657 Category Theory +0801.1887 Statistical Mechanics +0802.1946 Category Theory +0802.3497 Classical Analysis and ODEs +0803.1950 Complex Variables +0804.0885 +0805.1235 Group Theory +0805.3713 Statistical Mechanics +0810.1268 Information Theory +0812.3674 Complex Variables +0812.4678 Complex Variables +0901.4778 Statistical Mechanics +0902.1973 Analysis of PDEs +0903.2923 Classical Analysis and ODEs +0904.3344 Algebraic Geometry +0906.1222 Solar and Stellar Astrophysics +0906.2064 Classical Analysis and ODEs +0909.2883 Mesoscale and Nanoscale Physics +0909.4593 Disordered Systems and Neural Networks +0910.0602 Operator Algebras +0910.1176 Complex Variables +0910.1289 Commutative Algebra +0910.2996 Category Theory +0910.4646 Algebraic Geometry +0910.5432 Algebraic Geometry +0911.5415 Numerical Analysis +0911.5420 Superconductivity +0912.1641 Theory +0912.2943 Other Condensed Matter +0912.3178 Cosmology and Nongalactic Astrophysics +0912.3790 Quantum Gases +0912.4620 Other Condensed Matter +1001.5084 High Energy Astrophysical Phenomena +1002.0294 Materials Science +1002.1416 Cosmology and Nongalactic Astrophysics +1002.4237 Instrumentation and Detectors +1003.0180 +1003.0749 Superconductivity +1003.3540 Solar and Stellar Astrophysics +1003.5111 Mesoscale and Nanoscale Physics +1004.1621 Statistical Mechanics +1004.2317 +1004.3210 Statistical Mechanics +1004.4440 +1005.0992 Strongly Correlated Electrons +1005.2260 Symplectic Geometry +1005.3154 Cosmology and Nongalactic Astrophysics +1005.4260 Rings and Algebras +1005.4574 Cosmology and Nongalactic Astrophysics +1005.5659 +1006.0633 Earth and Planetary Astrophysics +1006.2598 Strongly Correlated Electrons +1006.2933 +1006.3544 Superconductivity +1006.4323 Classical Analysis and ODEs +1006.4811 Phenomenology +1006.4969 Statistical Mechanics +1006.5220 General Topology +1007.1179 Instrumentation and Methods for Astrophysics +1008.0908 Phenomenology +1008.2107 Cosmology and Nongalactic Astrophysics +1008.4956 Optics +1008.5116 Superconductivity +1009.0022 Mesoscale and Nanoscale Physics +1009.0390 Networking and Internet Architecture +1009.0687 Atmospheric and Oceanic Physics +1009.0936 +1009.1193 Information Theory +1009.1223 +1009.1445 +1009.1628 Instrumentation and Methods for Astrophysics +1009.1631 Classical Analysis and ODEs +1009.1635 Statistical Mechanics +1009.1636 High Energy Astrophysical Phenomena +1009.1638 Phenomenology +1009.1641 Classical Analysis and ODEs +1009.1645 Algebraic Geometry +1009.1664 Algebraic Geometry +1009.1666 Cosmology and Nongalactic Astrophysics +1009.1667 Materials Science +1009.1672 Group Theory +1009.1682 Cosmology and Nongalactic Astrophysics +1009.1685 Networking and Internet Architecture +1009.1689 Optimization and Control +1009.1691 Fluid Dynamics +1009.1695 Theory +1009.1697 Data Structures and Algorithms +1009.1698 Physics Education +1009.1703 Theory +1009.1705 Fluid Dynamics +1009.1708 Performance +1009.1709 Strongly Correlated Electrons +1009.1711 General Physics +1009.1716 Networking and Internet Architecture +1009.1718 Differential Geometry +1009.1720 +1009.1725 Solar and Stellar Astrophysics +1009.1729 Exactly Solvable and Integrable Systems +1009.1741 Representation Theory +1009.1742 Dynamical Systems +1009.1743 Strongly Correlated Electrons +1009.1744 +1009.1748 Instrumentation and Methods for Astrophysics +1009.1749 +1009.1756 Discrete Mathematics +1009.1758 Instrumentation and Methods for Astrophysics +1009.1759 Information Theory +1009.1763 High Energy Astrophysical Phenomena +1009.1764 Statistical Mechanics +1009.1765 High Energy Astrophysical Phenomena +1009.1769 Quantum Algebra +1009.1770 High Energy Astrophysical Phenomena +1009.1777 Instrumentation and Methods for Astrophysics +1009.1779 Cosmology and Nongalactic Astrophysics +1009.1786 Biomolecules +1009.1789 Logic +1009.1792 Plasma Physics +1009.1796 Hardware Architecture +1009.1802 Analysis of PDEs +1009.1803 +1009.1805 Solar and Stellar Astrophysics +1009.1817 Algebraic Geometry +1009.1820 Analysis of PDEs +1009.1824 Earth and Planetary Astrophysics +1009.1825 Optimization and Control +1009.1829 Experiment +1009.1834 Analysis of PDEs +1009.1835 Mesoscale and Nanoscale Physics +1009.1845 Probability +1009.1846 +1009.1857 Accelerator Physics +1009.1858 Spectral Theory +1009.1868 Logic +cond-mat/0702159 Statistical Mechanics +math/0603571 Dynamical Systems +math/0607271 Category Theory +math/0607646 Category Theory +math/0610439 Category Theory +math/0610500 Category Theory +math/0612299 Category Theory +math/0701541 Dynamical Systems +math/0702535 Category Theory +0704.1180 +0706.0676 Theory +0708.0018 Algebraic Geometry +0802.0314 Computational Complexity +0802.2736 Computational Complexity +0803.3521 Analysis of PDEs +0806.0877 Group Theory +0810.3283 Robotics +0811.4245 +0812.1134 Analysis of PDEs +0812.1325 Operator Algebras +0901.4074 Analysis of PDEs +0903.1030 Commutative Algebra +0905.2248 Information Theory +0905.2713 Group Theory +0906.4432 Optics +0907.3811 +0908.1450 Earth and Planetary Astrophysics +0908.3274 Differential Geometry +0908.3547 Quantum Gases +0908.3796 Cosmology and Nongalactic Astrophysics +0908.4427 Computational Engineering, Finance, and Science +0910.1531 Chemical Physics +0910.1754 Mesoscale and Nanoscale Physics +0910.3800 +0911.1093 Algebraic Topology +0911.1344 Algebraic Topology +0911.1948 Algebraic Geometry +0911.2890 Cellular Automata and Lattice Gases +0911.2993 Logic in Computer Science +0912.3083 Mesoscale and Nanoscale Physics +0912.3464 Statistical Mechanics +0912.4898 Statistical Finance +1001.1302 Superconductivity +1001.4984 Cosmology and Nongalactic Astrophysics +1002.1536 +1003.0719 Group Theory +1003.0895 Cosmology and Nongalactic Astrophysics +1003.4010 Algebraic Topology +1003.5203 Soft Condensed Matter +1004.1269 +1004.1966 Quantum Gases +1004.2256 Phenomenology +1004.2448 Instrumentation and Methods for Astrophysics +1004.2539 +1004.2939 +1004.3692 Probability +1004.4231 Quantum Gases +1004.5250 Phenomenology +1005.1158 Quantum Gases +1005.1849 +1005.5420 Lattice +1006.0883 Fluid Dynamics +1006.1215 Strongly Correlated Electrons +1006.4306 Mesoscale and Nanoscale Physics +1006.5439 Materials Science +1007.1513 Statistical Mechanics +1007.2430 Phenomenology +1007.2819 Chaotic Dynamics +1007.4039 +1007.4644 Algebraic Geometry +1007.4841 Phenomenology +1008.0477 +1008.0991 +1008.1505 +1008.3720 +1008.5209 Learning +1009.0018 High Energy Astrophysical Phenomena +1009.0026 Cryptography and Security +1009.0033 Networking and Internet Architecture +1009.0047 Chemical Physics +1009.0055 +1009.0056 Distributed, Parallel, and Cluster Computing +1009.0058 Numerical Analysis +1009.0060 Group Theory +1009.0065 Logic +1009.0066 Statistical Mechanics +1009.0068 Information Theory +1009.0070 Materials Science +1009.0072 Information Theory +1009.0075 Combinatorics +1009.0078 Information Theory +1009.0083 Fluid Dynamics +1009.0084 Geometric Topology +1009.0087 Algebraic Geometry +1009.0090 Superconductivity +1009.0092 Fluid Dynamics +1009.0094 Functional Analysis +1009.0098 Number Theory +1009.0099 Functional Analysis +1009.0100 Solar and Stellar Astrophysics +1009.0101 Statistics Theory +1009.0102 Dynamical Systems +1009.0108 Computation and Language +1009.0110 Category Theory +1009.0114 Combinatorics +1009.0116 +1009.0117 Learning +1009.0118 Populations and Evolution +1009.0119 Social and Information Networks +1009.0122 Superconductivity +1009.0123 Solar and Stellar Astrophysics +1009.0126 Fluid Dynamics +1009.0127 Fluid Dynamics +1009.0132 Group Theory +1009.0133 Probability +1009.0141 Fluid Dynamics +1009.0149 Plasma Physics +1009.0151 Exactly Solvable and Integrable Systems +1009.0152 Software Engineering +1009.0166 Fluid Dynamics +1009.0169 Quantitative Methods +1009.0176 Combinatorics +1009.0181 Mesoscale and Nanoscale Physics +1009.0189 Classical Analysis and ODEs +1009.0192 Materials Science +1009.0197 Numerical Analysis +1009.0200 +1009.0214 Materials Science +1009.0222 Spectral Theory +1009.0226 Analysis of PDEs +1009.0228 Complex Variables +1009.0231 Materials Science +1009.0233 Probability +1009.0243 Materials Science +1009.0244 +1009.0245 Cosmology and Nongalactic Astrophysics +1009.0246 Computational Complexity +1009.0249 Analysis of PDEs +1009.0251 Statistical Mechanics +1009.0255 Databases +1009.0258 Instrumentation and Methods for Astrophysics +1009.0259 Analysis of PDEs +math/0011187 Logic +math/0608396 Differential Geometry +quant-ph/0411039 +quant-ph/0606015 +0710.0479 Materials Science +0711.2649 Phenomenology +0712.0124 Analysis of PDEs +0802.0644 Spectral Theory +0805.2827 Theory +0806.2507 +0807.4113 Statistical Mechanics +0810.1561 Analysis of PDEs +0810.4280 Superconductivity +0811.1169 Analysis of PDEs +0811.2497 Computer Science and Game Theory +0811.2849 Analysis of PDEs +0812.1661 K-Theory and Homology +0901.2754 Analysis of PDEs +0901.4513 Solar and Stellar Astrophysics +0902.2593 +0902.3333 Mesoscale and Nanoscale Physics +0902.4752 +0903.0985 Mesoscale and Nanoscale Physics +0903.2045 Cosmology and Nongalactic Astrophysics +0904.1102 Superconductivity +0904.1414 Cosmology and Nongalactic Astrophysics +0904.2007 Phenomenology +0904.2357 Classical Analysis and ODEs +0904.3368 Phenomenology +0904.4415 Theory +0905.0664 Theory +0905.2167 Analysis of PDEs +0905.3123 Experiment +0905.3210 +0905.3235 Phenomenology +0905.4159 Instrumentation and Detectors +0905.4358 Mesoscale and Nanoscale Physics +0905.4792 +0906.1351 +0906.4753 Cosmology and Nongalactic Astrophysics +0907.1921 Materials Science +0907.2309 Information Theory +0907.4655 Biological Physics +0908.0842 Complex Variables +0908.0908 Algebraic Geometry +0908.3612 Materials Science +0908.3972 +0908.4542 Mesoscale and Nanoscale Physics +0909.0145 Theory +0909.0981 Biological Physics +0909.2078 Phenomenology +0909.2424 +0909.3415 Theory +0909.3715 +0909.3719 Theory +0909.4400 Soft Condensed Matter +0910.0109 +0910.1010 High Energy Astrophysical Phenomena +0910.2963 Lattice +0910.4312 Number Theory +0910.5153 Theory +0910.5627 Experiment +0910.5710 Theory +0911.1544 Networking and Internet Architecture +0911.3596 Strongly Correlated Electrons +0911.3619 +0912.0863 Differential Geometry +0912.4235 Combinatorics +0912.5428 Strongly Correlated Electrons +1001.0833 Information Retrieval +1001.2546 Materials Science +1001.2574 Cosmology and Nongalactic Astrophysics +1001.4233 +1001.4772 Disordered Systems and Neural Networks +1001.4950 Algebraic Geometry +1001.5265 Statistics Theory +1001.5266 Phenomenology +1002.0007 Differential Geometry +1002.0010 Phenomenology +1002.0012 Symbolic Computation +1002.0013 Optimization and Control +1002.0017 +1002.0020 Number Theory +1002.0021 Differential Geometry +1002.0023 High Energy Astrophysical Phenomena +1002.0024 Algebraic Geometry +1002.0031 +1002.0034 Differential Geometry +1002.0036 Classical Analysis and ODEs +1002.0038 Algebraic Geometry +1002.0039 Dynamical Systems +1002.0045 Combinatorics +1002.0047 +1002.0053 K-Theory and Homology +1002.0056 Combinatorics +1002.0057 Materials Science +1002.0058 Geometric Topology +1002.0065 Biomolecules +1002.0073 Combinatorics +1002.0078 Data Analysis, Statistics and Probability +1002.0081 High Energy Astrophysical Phenomena +1002.0083 Classical Analysis and ODEs +1002.0088 Analysis of PDEs +1002.0091 Metric Geometry +1002.0092 Medical Physics +1002.0094 Metric Geometry +1002.0095 Combinatorics +1002.0096 Strongly Correlated Electrons +1002.0100 Disordered Systems and Neural Networks +1002.0103 Phenomenology +1002.0105 K-Theory and Homology +1002.0108 Artificial Intelligence +1002.0110 Information Theory +1002.0115 Combinatorics +1002.0123 Information Theory +1002.0125 Distributed, Parallel, and Cluster Computing +1002.0126 Geometric Topology +1002.0130 Classical Physics +1002.0131 Numerical Analysis +1002.0134 Artificial Intelligence +1002.0136 Artificial Intelligence +1002.0139 Databases +1002.0143 Functional Analysis +1002.0149 Combinatorics +1002.0154 Software Engineering +1002.0155 Computational Geometry +1002.0158 Number Theory +1002.0169 Multiagent Systems +1002.0170 Multiagent Systems +1002.0174 Differential Geometry +1002.0176 +1002.0177 Artificial Intelligence +1002.0183 Combinatorics +1002.0184 Artificial Intelligence +1002.0186 Materials Science +1002.0188 Geometric Topology +1002.0203 Statistical Mechanics +1002.0214 Other Computer Science +1002.0217 Data Analysis, Statistics and Probability +1002.0224 Probability +1002.0228 High Energy Astrophysical Phenomena +1002.0236 Strongly Correlated Electrons +1002.0239 Information Retrieval +1002.0243 Differential Geometry +1002.0244 Solar and Stellar Astrophysics +1002.0245 Instrumentation and Methods for Astrophysics +1002.0247 Optimization and Control +1002.0249 +1002.0251 Other Computer Science +1002.0253 Other Computer Science +1002.0255 Number Theory +1002.0257 +1002.0262 Other Computer Science +1002.0264 Instrumentation and Methods for Astrophysics +1002.0267 Dynamical Systems +1002.0270 Other Computer Science +1002.0271 Complex Variables +1002.0273 Statistical Mechanics +1002.0277 General Finance +1002.0278 Rings and Algebras +1002.0293 Astrophysics of Galaxies +1002.0297 Solar and Stellar Astrophysics +1002.0298 Cryptography and Security +1002.0306 Analysis of PDEs +1002.0309 Group Theory +1002.0310 +1002.0312 Rings and Algebras +1002.0321 Statistical Finance +1002.0323 Analysis of PDEs +1002.0324 High Energy Astrophysical Phenomena +1002.0325 Strongly Correlated Electrons +1002.0327 Statistical Mechanics +cond-mat/0504748 Statistical Mechanics +cond-mat/0506646 Materials Science +cond-mat/0506651 Materials Science +hep-ex/0409020 Experiment +hep-ex/9804009 Experiment +hep-ex/9804010 Experiment +hep-ex/9904022 Experiment +hep-ph/0603002 Phenomenology +hep-th/0208186 Theory +math/0208205 Geometric Topology +math/0310183 Differential Geometry +math/0507355 Differential Geometry +math/0701449 Analysis of PDEs +math/0703283 Analysis of PDEs +math/0703472 Differential Geometry +physics/0607066 Instrumentation and Detectors +0704.0199 Combinatorics +0706.3234 Quantitative Methods +0709.3217 Lattice +0710.0516 Geometric Topology +0710.3119 Group Theory +0711.0865 Number Theory +0711.1230 Dynamical Systems +0712.3192 Algebraic Geometry +0802.3907 Accelerator Physics +0803.0371 Symplectic Geometry +0804.4428 Geometric Topology +0804.4776 Phenomenology +0805.4083 Algebraic Geometry +0806.1720 Algebraic Geometry +0809.0457 Group Theory +0809.0802 Geometric Topology +0809.2482 +0810.1462 Differential Geometry +0810.4260 Geometric Topology +0810.4437 Differential Geometry +0810.4815 +0810.5023 Probability +0810.5517 Logic in Computer Science +0811.1224 Strongly Correlated Electrons +0811.3754 Strongly Correlated Electrons +0812.1251 Combinatorics +0812.3752 +0812.4300 Mesoscale and Nanoscale Physics +0901.1022 Group Theory +0901.1154 Algebraic Geometry +0902.0579 Fluid Dynamics +0902.3692 Geometric Topology +0903.1274 Mesoscale and Nanoscale Physics +0903.1334 Materials Science +0903.1821 Optics +0903.2962 Probability +0904.0362 +0904.3197 Mesoscale and Nanoscale Physics +0905.3410 Cosmology and Nongalactic Astrophysics +0906.1806 Dynamical Systems +0906.3828 Algebraic Geometry +0907.1711 Statistical Mechanics +0907.2241 +0907.2359 Disordered Systems and Neural Networks +0907.2577 Number Theory +0907.2806 Statistical Mechanics +0907.3278 Medical Physics +0908.0478 Mesoscale and Nanoscale Physics +0908.1293 Mesoscale and Nanoscale Physics +0908.1315 Soft Condensed Matter +0908.2456 Combinatorics +0908.2905 Cryptography and Security +0908.3337 +0909.0077 +0909.1291 Astrophysics of Galaxies +0909.1441 Mesoscale and Nanoscale Physics +0909.1643 Data Analysis, Statistics and Probability +0909.3669 Cosmology and Nongalactic Astrophysics +0909.4927 Phenomenology +0910.0843 Theory +0910.0866 Physics and Society +0910.1103 Phenomenology +0910.1459 +0910.2440 +0910.2603 Networking and Internet Architecture +0910.2677 Theory +0910.2914 Theory +0910.3311 Phenomenology +0910.4219 Number Theory +0910.5841 Mesoscale and Nanoscale Physics +0911.2375 Methodology +0911.3815 Statistical Mechanics +0911.5261 +0912.0767 Quantum Algebra +0912.1690 +0912.2471 Algebraic Topology +0912.3187 Optics +0912.3810 Cosmology and Nongalactic Astrophysics +0912.5326 +1001.1503 Instrumentation and Methods for Astrophysics +1001.2077 Information Theory +1001.2171 Cosmology and Nongalactic Astrophysics +1001.2387 Differential Geometry +1001.2566 Information Theory +1001.2569 Networking and Internet Architecture +1001.2573 Materials Science +1001.2575 Networking and Internet Architecture +1001.2580 Computational Physics +1001.2581 Phenomenology +1001.2584 Lattice +1001.2585 Theory +1001.2587 Analysis of PDEs +1001.2590 High Energy Astrophysical Phenomena +1001.2596 Information Theory +1001.2603 Networking and Internet Architecture +1001.2604 Performance +1001.2605 Computer Vision and Pattern Recognition +1001.2607 Classical Analysis and ODEs +1001.2615 Machine Learning +1001.2619 Soft Condensed Matter +1001.2623 Information Theory +1001.2628 Category Theory +1001.2629 Algebraic Geometry +1001.2636 Computer Vision and Pattern Recognition +1001.2644 High Energy Astrophysical Phenomena +1001.2645 Quantum Algebra +1001.2647 Information Theory +1001.2648 Chemical Physics +1001.2653 Rings and Algebras +1001.2655 Geometric Topology +1001.2660 General Mathematics +1001.2669 Soft Condensed Matter +1001.2670 +1001.2676 Differential Geometry +1001.2679 Phenomenology +1001.2680 Geometric Topology +1001.2685 Methodology +1001.2688 Phenomenology +1001.2691 Biological Physics +1001.2692 Optics +1001.2696 Rings and Algebras +1001.2697 Methodology +1001.2704 Phenomenology +1001.2706 Theory +1001.2709 Learning +1001.2715 Probability +1001.2720 Solar and Stellar Astrophysics +1001.2723 Mesoscale and Nanoscale Physics +1001.2728 Differential Geometry +1001.2731 Experiment +1001.2734 Computational Geometry +1001.2747 Phenomenology +1001.2752 Discrete Mathematics +1001.2756 Dynamical Systems +1001.2763 Computational Geometry +1001.2767 Cryptography and Security +astro-ph/0506583 +cond-mat/0607171 Strongly Correlated Electrons +hep-lat/0007016 Lattice +hep-lat/0207011 Lattice +hep-lat/0409049 Lattice +hep-lat/0509188 Lattice +hep-lat/9411041 Lattice +hep-lat/9509017 Lattice +hep-lat/9509044 Lattice +hep-lat/9509065 Lattice +hep-lat/9512025 Lattice +hep-lat/9512026 Lattice +hep-lat/9512027 Lattice +hep-lat/9602028 Lattice +hep-lat/9607004 Lattice +hep-lat/9608021 Lattice +hep-lat/9704008 Lattice +hep-lat/9710021 Lattice +hep-lat/9801038 Lattice +hep-lat/9809051 Lattice +hep-lat/9901001 Lattice +hep-ph/0003130 Phenomenology +hep-ph/0109070 Phenomenology +hep-ph/0312162 Phenomenology +hep-ph/0401172 Phenomenology +hep-ph/0509274 Phenomenology +hep-th/0507008 Theory +hep-th/0508115 Theory +math-ph/0510039 +math-ph/9903033 +math/0501333 Algebraic Geometry +math/0504241 Group Theory +math/0505197 Group Theory +math/0506361 Group Theory +math/0612302 Group Theory +nucl-th/0311099 +nucl-th/0407069 +physics/0511233 Instrumentation and Detectors +physics/0603024 Physics and Society +physics/0607156 Biological Physics +physics/0703238 Data Analysis, Statistics and Probability +quant-ph/0611276 +0704.0817 Combinatorics +0704.1074 Statistics Theory +0705.0977 +0706.3638 Representation Theory +0709.1572 +0710.5637 +0712.2152 Fluid Dynamics +0801.0083 Algebraic Geometry +0804.0280 Theory +0804.1449 General Topology +0804.2576 Combinatorics +0809.3387 Rings and Algebras +0810.1793 Statistics Theory +0810.2582 +0902.0504 General Finance +0902.0876 Representation Theory +0903.3295 Representation Theory +0903.3975 Analysis of PDEs +0903.4084 Statistical Mechanics +0904.3491 +0904.4579 Quantum Gases +0905.2517 Phenomenology +0906.1586 Functional Analysis +0906.3468 +0907.2054 Analysis of PDEs +0907.2271 Superconductivity +0907.2654 +0907.3051 Computational Physics +0907.3335 Category Theory +0908.0655 Mesoscale and Nanoscale Physics +0908.2224 Disordered Systems and Neural Networks +0908.2948 Superconductivity +0908.3129 Mesoscale and Nanoscale Physics +0908.4035 Theory +0909.0116 +0909.2087 Experiment +0909.3024 Instrumentation and Detectors +0909.5263 Networking and Internet Architecture +0910.0612 Strongly Correlated Electrons +0910.3053 Theory +0910.3077 Phenomenology +0910.3334 Theory +0910.3388 +0910.3558 Statistical Mechanics +0910.3957 Strongly Correlated Electrons +0910.4158 Strongly Correlated Electrons +0911.0021 Instrumentation and Detectors +0911.0320 Lattice +0911.0406 Populations and Evolution +0911.0602 Plasma Physics +0911.0662 Theory +0911.1952 Popular Physics +0911.3389 Computational Complexity +0911.4181 Superconductivity +0912.0901 Astrophysics of Galaxies +0912.1463 Strongly Correlated Electrons +0912.1465 Cosmology and Nongalactic Astrophysics +0912.2605 Algebraic Geometry +0912.2689 Strongly Correlated Electrons +0912.3021 Theory +0912.4369 Classical Physics +0912.5028 Combinatorics +1001.2142 Superconductivity +1001.2668 Phenomenology +1001.3515 Complex Variables +1001.3524 Complex Variables +1002.1435 Theory +1002.1531 Information Theory +1002.1986 Pattern Formation and Solitons +1002.2363 Theory +1002.2433 +1002.2801 K-Theory and Homology +1002.3167 Cosmology and Nongalactic Astrophysics +1002.3177 History and Overview +1002.3178 Exactly Solvable and Integrable Systems +1002.3180 Mathematical Software +1002.3182 Superconductivity +1002.3187 Information Theory +1002.3189 Plasma Physics +1002.3194 Statistical Mechanics +1002.3195 Artificial Intelligence +1002.3197 Classical Analysis and ODEs +1002.3200 +1002.3208 Populations and Evolution +1002.3213 Fluid Dynamics +1002.3214 Classical Physics +1002.3215 Analysis of PDEs +1002.3216 Fluid Dynamics +1002.3217 +1002.3222 Logic in Computer Science +1002.3224 Mesoscale and Nanoscale Physics +1002.3230 General Physics +1002.3233 Mesoscale and Nanoscale Physics +1002.3235 +1002.3236 Differential Geometry +1002.3237 Differential Geometry +1002.3238 Information Retrieval +1002.3241 Statistics Theory +1002.3243 Phenomenology +1002.3244 Instrumentation and Methods for Astrophysics +1002.3254 Number Theory +1002.3256 Pricing of Securities +1002.3258 Robotics +1002.3262 Algebraic Topology +1002.3263 Theory +1002.3266 Phenomenology +1002.3267 Soft Condensed Matter +1002.3269 Phenomenology +1002.3270 Quantum Gases +1002.3271 +1002.3272 Optimization and Control +1002.3274 Differential Geometry +1002.3276 Statistical Mechanics +1002.3279 Differential Geometry +1002.3281 Differential Geometry +1002.3285 Solar and Stellar Astrophysics +1002.3287 Optics +1002.3289 Number Theory +1002.3302 +1002.3305 Solar and Stellar Astrophysics +1002.3307 Artificial Intelligence +1002.3320 Computation and Language +1002.3322 Networking and Internet Architecture +1002.3325 Solar and Stellar Astrophysics +1002.3328 Networking and Internet Architecture +1002.3329 Operating Systems +1002.3330 Logic in Computer Science +1002.3331 Combinatorics +1002.3332 Networking and Internet Architecture +1002.3333 Computers and Society +1002.3337 Other Computer Science +1002.3338 Complex Variables +1002.3339 Other Computer Science +1002.3340 Other Computer Science +1002.3344 Computer Vision and Pattern Recognition +1002.3351 Mesoscale and Nanoscale Physics +1002.3356 Information Theory +1002.3363 Chaotic Dynamics +astro-ph/0005192 +astro-ph/0006289 +astro-ph/0105021 +astro-ph/0106511 +astro-ph/0210694 +astro-ph/0306347 +astro-ph/0401542 +astro-ph/0405133 +astro-ph/0507498 +astro-ph/0603668 +astro-ph/9710086 +astro-ph/9804297 +astro-ph/9906248 +astro-ph/9908023 +astro-ph/9908168 +cond-mat/9504006 +hep-ex/0412068 Experiment +hep-lat/9310022 Lattice +hep-ph/0007355 Phenomenology +hep-ph/0110002 Phenomenology +hep-ph/9305266 Phenomenology +hep-ph/9308271 Phenomenology +hep-th/0104066 Theory +hep-th/9303040 Theory +hep-th/9911055 Theory +quant-ph/0410237 +quant-ph/0508197 +0704.1326 Exactly Solvable and Integrable Systems +0710.0512 Lattice +0801.4360 Dynamical Systems +0804.0543 +0804.4145 Combinatorics +0805.0833 +0807.1009 Analysis of PDEs +0807.2722 Phenomenology +0810.0702 Algebraic Geometry +0810.1671 Mesoscale and Nanoscale Physics +0810.3829 Experiment +0810.5042 Differential Geometry +0812.2588 Dynamical Systems +0901.1237 Astrophysics of Galaxies +0903.2670 +0903.4454 +0904.2342 Classical Analysis and ODEs +0905.0068 Functional Analysis +0905.1180 Theory +0905.2044 Astrophysics of Galaxies +0905.3468 High Energy Astrophysical Phenomena +0905.4443 Number Theory +0906.1337 Quantum Gases +0907.0185 +0907.0461 Cosmology and Nongalactic Astrophysics +0908.1550 Phenomenology +0909.3770 Phenomenology +0910.1839 Phenomenology +0910.1919 Cosmology and Nongalactic Astrophysics +0910.2117 +0910.2860 Theory +0910.3480 Phenomenology +0910.5005 Cosmology and Nongalactic Astrophysics +0911.1355 High Energy Astrophysical Phenomena +0911.2426 +0911.4115 Other Condensed Matter +0911.4648 +0911.5349 Phenomenology +0912.0734 High Energy Astrophysical Phenomena +0912.1527 Number Theory +1001.0912 Theory +1001.4153 Optics +1002.0219 Quantum Gases +1002.1205 Phenomenology +1002.1789 +1002.3842 Geometric Topology +1002.4115 +1002.4203 Disordered Systems and Neural Networks +1003.3390 Theory +1003.4599 Probability +1003.6063 Theory +1004.1181 Experiment +1004.2497 Phenomenology +1004.3997 Phenomenology +1004.4633 Theory +1004.5055 Phenomenology +1005.0068 Experiment +1005.0216 Quantum Algebra +1005.0382 Cosmology and Nongalactic Astrophysics +1005.0544 Strongly Correlated Electrons +1005.0759 Phenomenology +1005.0948 Lattice +1005.1509 Theory +1005.1691 Theory +1005.1704 Strongly Correlated Electrons +1005.1802 Phenomenology +1005.3369 Mesoscale and Nanoscale Physics +1005.3980 Phenomenology +1005.4613 +1005.5424 Lattice +1005.5735 Theory +1006.0035 +1006.0240 Networking and Internet Architecture +1006.0267 +1006.0954 Physics Education +1006.1311 Lattice +1006.1331 Phenomenology +1006.1528 Theory +1006.1656 Phenomenology +1006.2829 Superconductivity +1006.3044 Phenomenology +1006.3499 +1006.3612 Theory +1006.3659 Theory +1006.4615 Cosmology and Nongalactic Astrophysics +1006.5205 Group Theory +1006.5800 Phenomenology +1006.5917 Statistical Mechanics +1007.0276 Fluid Dynamics +1007.0305 Computational Complexity +1007.0985 +1007.1099 Phenomenology +1007.1183 Theory +1007.1464 Theory +1007.1630 +1007.1645 Theory +1007.1889 General Physics +1007.2133 Theory +1007.2188 Cosmology and Nongalactic Astrophysics +1007.4200 Phenomenology +1007.4235 Phenomenology +1007.4333 Theory +1007.4479 Phenomenology +1007.4512 Phenomenology +1007.4631 +1007.4721 +1007.4812 Phenomenology +1007.5085 Phenomenology +1007.5204 +1007.5437 +1008.0277 High Energy Astrophysical Phenomena +1008.0397 Cosmology and Nongalactic Astrophysics +1008.0639 Cosmology and Nongalactic Astrophysics +1008.0721 Phenomenology +1008.0724 Populations and Evolution +1008.0795 +1008.0943 +1008.1588 Cosmology and Nongalactic Astrophysics +1008.1796 Phenomenology +1008.1820 +1008.1910 +1008.1967 Phenomenology +1008.1980 Cosmology and Nongalactic Astrophysics +1008.2309 Theory +1008.2857 Information Theory +1008.2895 Phenomenology +1008.3070 Phenomenology +1008.3345 +1008.3355 Phenomenology +1008.3380 Phenomenology +1008.3423 Phenomenology +1008.3696 Phenomenology +1008.3752 +1008.4360 +1008.4779 Phenomenology +1008.4925 Phenomenology +1008.4977 Phenomenology +1008.4985 High Energy Astrophysical Phenomena +1008.5091 Phenomenology +1008.5285 Statistical Mechanics +1008.5382 General Physics +1009.0273 Cosmology and Nongalactic Astrophysics +1009.0738 High Energy Astrophysical Phenomena +1009.1033 Mesoscale and Nanoscale Physics +1009.1053 Phenomenology +1009.1065 Phenomenology +1009.1120 Phenomenology +1009.1374 Space Physics +1009.1394 Cosmology and Nongalactic Astrophysics +1009.1486 +1009.1492 Statistical Mechanics +1009.1563 Phenomenology +1009.1679 Phenomenology +1009.1782 High Energy Astrophysical Phenomena +1009.1804 Strongly Correlated Electrons +1009.1950 Phenomenology +1009.2076 Experiment +1009.2149 Lattice +1009.2283 Quantum Gases +1009.2425 Lattice +1009.2445 +1009.2481 Phenomenology +1009.2504 Phenomenology +1009.2582 Superconductivity +1009.2749 Phenomenology +1009.2991 Theory +1009.3058 +1009.3269 Mesoscale and Nanoscale Physics +1009.3449 Cosmology and Nongalactic Astrophysics +1009.3501 Phenomenology +1009.3841 Cosmology and Nongalactic Astrophysics +1009.4071 Theory +1009.4414 Lattice +1009.4421 Theory +1009.4634 +1009.4707 +1009.5383 Phenomenology +1009.5595 +1009.5596 Mesoscale and Nanoscale Physics +1009.5833 Experiment +1010.0052 Phenomenology +1010.1245 Soft Condensed Matter +1010.1395 Phenomenology +1010.1547 +1010.1886 Computer Science and Game Theory +1010.2660 +1010.3466 Phenomenology +1010.3611 +1010.4409 +1010.4630 Phenomenology +1010.4738 Phenomenology +1010.4767 +1010.5090 +1010.5503 Cosmology and Nongalactic Astrophysics +1010.6008 Phenomenology +1010.6061 High Energy Astrophysical Phenomena +1010.6205 Cosmology and Nongalactic Astrophysics +1010.6258 +1011.0321 Phenomenology +1011.1433 Theory +1011.1490 Astrophysics of Galaxies +1011.2112 Phenomenology +1011.3201 Quantum Gases +1011.3530 General Topology +1011.3656 +1011.4099 +1011.4639 General Physics +1011.5550 +1011.6094 +1012.0717 General Physics +1012.0721 General Physics +1012.1548 Theory +1012.2429 General Physics +1012.3086 Earth and Planetary Astrophysics +1012.3338 General Physics +1012.3562 General Physics +1012.3774 Combinatorics +1012.4616 Theory +1012.4790 Theory +1012.4812 Fluid Dynamics +1012.4815 Networking and Internet Architecture +1012.4823 Number Theory +1012.4825 Number Theory +1012.4827 Quantum Algebra +1012.4830 Soft Condensed Matter +1012.4841 Soft Condensed Matter +1012.4842 Computational Physics +1012.4843 +1012.4844 Soft Condensed Matter +1012.4845 Systems and Control +1012.4846 Mesoscale and Nanoscale Physics +1012.4849 Probability +1012.4853 Experiment +1012.4854 Materials Science +1012.4855 Databases +1012.4856 Combinatorics +1012.4862 Digital Libraries +1012.4863 Cell Behavior +1012.4870 Digital Libraries +1012.4871 Digital Libraries +1012.4872 Digital Libraries +1012.4875 Information Retrieval +1012.4876 Digital Libraries +1012.4877 Rings and Algebras +1012.4881 Computational Geometry +1012.4882 Earth and Planetary Astrophysics +1012.4884 +1012.4889 Data Structures and Algorithms +1012.4890 Logic in Computer Science +1012.4891 Symbolic Computation +1012.4892 Logic in Computer Science +1012.4893 Programming Languages +1012.4894 Symbolic Computation +1012.4895 Logic in Computer Science +1012.4896 Programming Languages +1012.4897 Logic in Computer Science +1012.4898 Logic in Computer Science +1012.4899 Logic in Computer Science +1012.4900 Programming Languages +1012.4904 Analysis of PDEs +1012.4905 Information Theory +1012.4907 Chaotic Dynamics +1012.4908 Lattice +1012.4909 Networking and Internet Architecture +1012.4913 Adaptation and Self-Organizing Systems +1012.4919 Statistical Mechanics +1012.4923 Geometric Topology +1012.4934 Materials Science +1012.4938 Data Structures and Algorithms +1012.4942 Lattice +1012.4945 Computers and Society +1012.4949 Representation Theory +1012.4956 Phenomenology +1012.4964 Differential Geometry +1012.4965 Plasma Physics +1012.4970 +1012.4971 +1012.4974 +1012.4975 Adaptation and Self-Organizing Systems +1012.4978 Quantitative Methods +1012.4979 Experiment +1012.4980 Strongly Correlated Electrons +1012.4981 Disordered Systems and Neural Networks +1012.4982 Numerical Analysis +1012.4984 Rings and Algebras +1012.4987 Phenomenology +1012.4990 General Physics +1012.4991 Algebraic Geometry +1012.4993 Experiment +1012.4994 Complex Variables +1012.4997 Dynamical Systems +1012.4998 Complex Variables +1012.5002 +1012.5005 High Energy Astrophysical Phenomena +1012.5011 Genomics +1012.5013 +1012.5015 Algebraic Geometry +1012.5019 Exactly Solvable and Integrable Systems +1012.5024 Data Structures and Algorithms +1012.5028 Differential Geometry +1012.5030 Distributed, Parallel, and Cluster Computing +1012.5033 Phenomenology +1012.5035 Classical Analysis and ODEs +1012.5050 Functional Analysis +1012.5054 Statistical Mechanics +1012.5055 Numerical Analysis +1012.5057 Quantum Algebra +1012.5058 +1012.5059 Logic in Computer Science +1012.5063 Molecular Networks +1012.5064 Theory +1012.5074 Computational Engineering, Finance, and Science +astro-ph/0003477 +astro-ph/0111080 +astro-ph/0201292 +astro-ph/0301173 +astro-ph/9911354 +cond-mat/0405673 Statistical Mechanics +cond-mat/0607639 Mesoscale and Nanoscale Physics +cond-mat/0607735 Other Condensed Matter +cond-mat/9606091 +cond-mat/9708212 Statistical Mechanics +gr-qc/0101081 +gr-qc/0103046 +gr-qc/0211040 +gr-qc/0301107 +gr-qc/0302060 +gr-qc/0302062 +gr-qc/0302114 +gr-qc/0402102 +gr-qc/0405074 +gr-qc/0409012 +gr-qc/0501005 +gr-qc/0506130 +gr-qc/0603041 +gr-qc/9910045 +hep-ex/0011069 Experiment +hep-lat/0010053 Lattice +hep-lat/0011030 Lattice +hep-lat/0110110 Lattice +hep-lat/0110113 Lattice +hep-lat/0111017 Lattice +hep-lat/0209065 Lattice +hep-lat/0311032 Lattice +hep-lat/0407006 Lattice +hep-lat/0409066 Lattice +hep-lat/0509131 Lattice +hep-lat/0511036 Lattice +hep-lat/0603019 Lattice +hep-lat/9205028 Lattice +hep-lat/9207021 Lattice +hep-lat/9211056 Lattice +hep-lat/9212015 Lattice +hep-lat/9303012 Lattice +hep-lat/9402017 Lattice +hep-lat/9903014 Lattice +hep-ph/0411238 Phenomenology +hep-ph/9601342 Phenomenology +hep-th/0003291 Theory +hep-th/0005084 Theory +hep-th/0110062 Theory +hep-th/0112066 Theory +hep-th/0205103 Theory +hep-th/0212014 Theory +hep-th/0305107 Theory +hep-th/0307053 Theory +hep-th/0308022 Theory +hep-th/0311055 Theory +hep-th/0401035 Theory +hep-th/0403104 Theory +hep-th/0407189 Theory +hep-th/0410115 Theory +hep-th/0502209 Theory +hep-th/0504195 Theory +hep-th/0509035 Theory +hep-th/0511163 Theory +hep-th/0511227 Theory +hep-th/0604150 Theory +hep-th/0605152 Theory +hep-th/9603145 Theory +math/0003054 Differential Geometry +math/0009035 Differential Geometry +math/0202220 Rings and Algebras +math/0307375 Differential Geometry +math/0402234 Rings and Algebras +math/0406140 Combinatorics +math/0504021 Number Theory +math/0612251 Algebraic Geometry +math/0612407 Dynamical Systems +math/0702121 Dynamical Systems +nucl-ex/0109016 +nucl-th/0011101 +nucl-th/0101065 +nucl-th/0110080 +nucl-th/0110081 +nucl-th/0111007 +nucl-th/0206065 +nucl-th/0310010 +nucl-th/0410029 +nucl-th/0501014 +nucl-th/0502055 +nucl-th/0512014 +nucl-th/0601092 +nucl-th/9810026 +quant-ph/0108075 +quant-ph/0411079 +0704.1801 Lattice +0704.2546 +0705.0697 Phenomenology +0705.0714 Phenomenology +0705.0816 Experiment +0705.0993 +0705.1525 +0705.1664 Lattice +0705.2831 +0705.3199 +0705.3377 +0705.3946 Phenomenology +0706.0033 +0706.0360 Theory +0706.2191 Phenomenology +0706.3718 Phenomenology +0707.1279 +0707.1941 Theory +0707.2153 +0707.2324 +0707.3985 Other Condensed Matter +0708.1270 Theory +0708.1752 +0708.3226 Learning +0709.1946 +0709.2944 Chaotic Dynamics +0709.3154 Phenomenology +0710.0158 +0710.1060 Theory +0710.1298 Algebraic Geometry +0710.3820 Phenomenology +0710.4889 Phenomenology +0710.5932 +0711.0914 Phenomenology +0711.0950 Phenomenology +0711.0974 Phenomenology +0711.1082 Probability +0711.4467 Theory +0711.4736 Experiment +0711.4805 Experiment +0711.4922 +0712.0805 Theory +0712.0884 +0712.2312 +0712.2438 +0712.3715 +0801.1530 Representation Theory +0801.2821 +0801.2977 Theory +0801.4566 Theory +0801.4711 +0802.2232 +0802.3391 Theory +0803.0492 +0803.0715 +0803.3537 +0804.0447 +0804.0473 Lattice +0804.2900 +0804.3079 +0804.3372 Other Condensed Matter +0805.0203 Theory +0805.1244 +0805.4438 Experiment +0806.2649 Phenomenology +0806.4940 Theory +0806.4959 Theory +0807.0163 Theory +0807.1100 Theory +0807.4899 Theory +0808.1432 Geometric Topology +0808.1725 Theory +0808.2870 +0808.3725 +0809.0162 Phenomenology +0809.0685 Phenomenology +0809.0898 +0809.1464 Strongly Correlated Electrons +0809.1562 +0809.4366 Experiment +0810.0707 +0810.2401 Experiment +0810.2888 Experiment +0810.3845 Symplectic Geometry +0810.5489 Theory +0811.1565 +0811.1599 Phenomenology +0811.1681 Experiment +0811.1716 +0811.3775 Phenomenology +0812.0967 +0812.0968 +0812.1103 +0812.2950 Experiment +0901.0703 +0901.3156 +0901.3310 Lattice +0902.0212 Complex Variables +0902.0841 Combinatorics +0902.3079 Theory +0903.0304 Representation Theory +0903.0478 Theory +0903.1083 +0903.1110 Experiment +0903.1260 +0903.2811 +0903.3358 Phenomenology +0903.4196 Phenomenology +0903.4573 Theory +0904.0030 Phenomenology +0904.1733 Phenomenology +0904.1741 +0904.1890 Theory +0904.2154 +0904.2275 Quantum Gases +0904.2280 Quantum Gases +0904.3246 Experiment +0904.3276 +0904.3930 +0904.4033 Lattice +0904.4607 +0904.4820 Experiment +0905.0477 Theory +0905.2715 Phenomenology +0905.2983 +0905.3324 Cosmology and Nongalactic Astrophysics +0905.3680 Theory +0905.3740 Theory +0905.3950 +0905.4116 Theory +0905.4213 Theory +0905.4331 +0905.4509 Phenomenology +0905.4715 Theory +0906.0145 +0906.0402 Theory +0906.0608 Theory +0906.0848 Theory +0906.1194 +0906.1522 +0906.2367 +0906.3043 High Energy Astrophysical Phenomena +0906.3540 Phenomenology +0906.3580 Phenomenology +0906.4214 Experiment +0906.4379 Phenomenology +0906.5598 +0907.0064 Phenomenology +0907.0486 Cosmology and Nongalactic Astrophysics +0907.0521 Phenomenology +0907.0731 Analysis of PDEs +0907.1021 Experiment +0907.1262 Phenomenology +0907.1438 Astrophysics of Galaxies +0907.1748 Theory +0907.1772 Cosmology and Nongalactic Astrophysics +0907.1985 Theory +0907.2257 Cosmology and Nongalactic Astrophysics +0907.2385 High Energy Astrophysical Phenomena +0907.2461 Phenomenology +0907.2668 +0907.2751 Lattice +0907.2772 Phenomenology +0907.3645 Experiment +0907.3947 Phenomenology +0907.3990 Commutative Algebra +0907.4073 Cosmology and Nongalactic Astrophysics +0907.4112 Phenomenology +0907.4113 +0907.4137 Theory +0907.4159 Phenomenology +0907.4194 Lattice +0907.4463 +0907.4664 +0907.5166 +0907.5197 +0908.0251 Phenomenology +0908.0664 Cosmology and Nongalactic Astrophysics +0908.0754 Phenomenology +0908.1543 Phenomenology +0908.2344 +0908.2422 Theory +0908.2435 +0908.2450 Phenomenology +0908.2484 Theory +0908.2637 Cosmology and Nongalactic Astrophysics +0908.2709 Phenomenology +0908.2910 +0908.2911 +0908.3388 +0908.3433 +0908.3550 Superconductivity +0908.3642 Theory +0908.3670 Information Theory +0908.3684 +0908.3898 Cosmology and Nongalactic Astrophysics +0908.3959 Phenomenology +0908.4099 Phenomenology +0908.4247 +0908.4251 Cosmology and Nongalactic Astrophysics +0908.4329 +0908.4546 +0909.0034 Theory +0909.0066 +0909.0261 Cosmology and Nongalactic Astrophysics +0909.0496 Cosmology and Nongalactic Astrophysics +0909.0616 +0909.0863 Phenomenology +0909.0907 Cosmology and Nongalactic Astrophysics +0909.0947 Phenomenology +0909.1063 Instrumentation and Detectors +0909.1356 +0909.1367 +0909.1549 +0909.2035 Phenomenology +0909.2196 Phenomenology +0909.2199 Phenomenology +0909.2203 +0909.2349 +0909.2350 Phenomenology +0909.2653 Phenomenology +0909.2712 Theory +0909.2798 Phenomenology +0909.3094 Phenomenology +0909.3105 Phenomenology +0909.3118 Phenomenology +0909.3540 Theory +0909.3756 +0909.4159 Phenomenology +0909.4194 +0909.4263 +0909.4365 Cosmology and Nongalactic Astrophysics +0909.4462 Lattice +0909.4486 Phenomenology +0909.4537 Theory +0909.4544 Cosmology and Nongalactic Astrophysics +0909.4931 Lattice +0909.4954 Cosmology and Nongalactic Astrophysics +0909.5454 Phenomenology +0909.5463 Phenomenology +0909.5618 +0909.5650 Phenomenology +0910.0101 Theory +0910.0132 +0910.0158 Strongly Correlated Electrons +0910.0173 Cosmology and Nongalactic Astrophysics +0910.0394 Phenomenology +0910.0851 Theory +0910.0973 +0910.1008 +0910.1113 Phenomenology +0910.1149 Phenomenology +0910.1229 Lattice +0910.1249 +0910.1261 Theory +0910.1353 Cosmology and Nongalactic Astrophysics +0910.1400 +0910.1424 Phenomenology +0910.1674 +0910.1823 Phenomenology +0910.2164 +0910.2224 Phenomenology +0910.2230 Theory +0910.2406 +0910.2477 Combinatorics +0910.2661 Theory +0910.2703 High Energy Astrophysical Phenomena +0910.2732 Phenomenology +0910.2892 +0910.2928 Phenomenology +0910.2940 +0910.3102 Phenomenology +0910.3132 Phenomenology +0910.3174 Instrumentation and Methods for Astrophysics +0910.3293 Phenomenology +0910.3390 Theory +0910.3422 Theory +0910.3528 Phenomenology +0910.3598 Quantum Gases +0910.3625 +0910.3633 High Energy Astrophysical Phenomena +0910.3836 Cosmology and Nongalactic Astrophysics +0910.3924 Phenomenology +0910.3929 Theory +0910.3942 +0910.4082 Phenomenology +0910.4278 Phenomenology +0910.4283 Phenomenology +0910.4350 Theory +0910.4535 Phenomenology +0910.4590 Cosmology and Nongalactic Astrophysics +0910.4891 +0910.4920 Phenomenology +0910.4969 High Energy Astrophysical Phenomena +0910.5127 Phenomenology +0910.5169 Solar and Stellar Astrophysics +0910.5195 Theory +0910.5199 Combinatorics +0910.5220 Cosmology and Nongalactic Astrophysics +0910.5270 +0910.5313 Functional Analysis +0910.5420 Phenomenology +0910.5472 Phenomenology +0910.5604 Theory +0910.5751 +0910.5763 +0910.5783 Phenomenology +0910.5914 Cosmology and Nongalactic Astrophysics +0911.0091 Experiment +0911.0245 Theory +0911.0303 +0911.0415 Phenomenology +0911.0679 Theory +0911.0734 Phenomenology +0911.0961 Theory +0911.0972 Phenomenology +0911.1101 Cosmology and Nongalactic Astrophysics +0911.1175 Phenomenology +0911.1241 Cosmology and Nongalactic Astrophysics +0911.1354 Theory +0911.1408 Theory +0911.1473 +0911.1480 Phenomenology +0911.1589 +0911.1595 +0911.1744 Phenomenology +0911.1756 +0911.1780 Superconductivity +0911.1814 Theory +0911.1856 Phenomenology +0911.2117 Phenomenology +0911.2166 Phenomenology +0911.2281 +0911.2303 +0911.2460 Phenomenology +0911.2696 Lattice +0911.2714 Cosmology and Nongalactic Astrophysics +0911.2736 +0911.2812 Phenomenology +0911.2882 Phenomenology +0911.2898 Theory +0911.3074 Phenomenology +0911.3351 Phenomenology +0911.3398 Phenomenology +0911.3552 Cosmology and Nongalactic Astrophysics +0911.3629 +0911.3694 Phenomenology +0911.3761 Phenomenology +0911.3848 Phenomenology +0911.3947 +0911.4060 Theory +0911.4335 Phenomenology +0911.4400 Phenomenology +0911.4407 Phenomenology +0911.4472 Phenomenology +0911.4579 Theory +0911.4810 Cosmology and Nongalactic Astrophysics +0911.4951 Mesoscale and Nanoscale Physics +0911.5072 Theory +0911.5097 +0911.5687 Cosmology and Nongalactic Astrophysics +0912.0015 Cosmology and Nongalactic Astrophysics +0912.0200 Theory +0912.0268 Cosmology and Nongalactic Astrophysics +0912.0356 Cosmology and Nongalactic Astrophysics +0912.0399 Theory +0912.0417 Theory +0912.1021 Theory +0912.1291 Experiment +0912.1311 Phenomenology +0912.1377 +0912.1416 +0912.1447 Phenomenology +0912.1508 Phenomenology +0912.2077 +0912.2164 Solar and Stellar Astrophysics +0912.2222 Cosmology and Nongalactic Astrophysics +0912.2330 +0912.2345 High Energy Astrophysical Phenomena +0912.2383 Experiment +0912.2426 +0912.2749 Cosmology and Nongalactic Astrophysics +0912.2811 Theory +0912.3053 Phenomenology +0912.3181 Lattice +0912.3213 Phenomenology +0912.3507 +0912.3532 Cosmology and Nongalactic Astrophysics +0912.3752 Solar and Stellar Astrophysics +0912.3851 Phenomenology +0912.4004 Phenomenology +0912.4221 Phenomenology +0912.4274 +0912.4451 Experiment +0912.4475 Lattice +0912.4693 +0912.4955 Phenomenology +0912.5063 Phenomenology +0912.5186 Theory +0912.5303 Methodology +1001.0280 Combinatorics +1001.0652 +1001.1131 Lattice +1001.1202 +1001.1584 High Energy Astrophysical Phenomena +1001.1906 Solar and Stellar Astrophysics +1001.1995 +1001.2012 Cosmology and Nongalactic Astrophysics +1001.2162 Phenomenology +1001.2285 +1001.2287 +1001.2699 +1001.3009 High Energy Astrophysical Phenomena +1001.3144 Astrophysics of Galaxies +1001.3432 Phenomenology +1001.3443 +1001.3606 Phenomenology +1001.4346 Phenomenology +1001.4355 +1001.4452 Solar and Stellar Astrophysics +1001.5066 Theory +1001.5157 Phenomenology +1001.5405 Cosmology and Nongalactic Astrophysics +1002.0642 Solar and Stellar Astrophysics +1002.0769 Superconductivity +1002.1268 Mesoscale and Nanoscale Physics +1002.2014 +1002.2141 Theory +1002.2227 +1002.2468 Phenomenology +1002.2795 Phenomenology +1002.3526 +1002.3603 High Energy Astrophysical Phenomena +1002.4359 Mesoscale and Nanoscale Physics +1002.4532 +1002.4854 Representation Theory +1003.0549 Theory +1003.1005 +1003.1363 Statistical Mechanics +1003.2153 General Mathematics +1003.2252 Chemical Physics +1003.2765 Phenomenology +1003.3208 Theory +1003.3349 Analysis of PDEs +1003.4360 +1003.4881 General Finance +1003.6123 Combinatorics +1004.0391 Spectral Theory +1004.0394 Probability +1004.0397 Probability +1004.0402 Information Theory +1004.0409 Superconductivity +1004.0414 Statistical Mechanics +1004.0419 Solar and Stellar Astrophysics +1004.0426 Superconductivity +1004.0430 Number Theory +1004.0432 Applications +1004.0433 Combinatorics +1004.0436 Computational Complexity +1004.0438 Human-Computer Interaction +1004.0447 Functional Analysis +1004.0456 Machine Learning +1004.0459 Cryptography and Security +1004.0478 +1004.0479 Optimization and Control +1004.0482 Methodology +1004.0483 Statistics Theory +1004.0491 Popular Physics +1004.0512 Computer Vision and Pattern Recognition +1004.0515 Computer Vision and Pattern Recognition +1004.0517 Computer Vision and Pattern Recognition +1004.0524 Computation +1004.0527 Statistical Mechanics +1004.0533 Statistics Theory +1004.0540 Statistics Theory +1004.0545 History and Overview +1004.0547 Combinatorics +1004.0552 Statistics Theory +1004.0553 Differential Geometry +1004.0559 Phenomenology +1004.0561 Trading and Market Microstructure +1004.0562 Rings and Algebras +1004.0569 Phenomenology +1004.0572 Analysis of PDEs +1004.0573 Analysis of PDEs +1004.0582 Combinatorics +1004.0588 +1004.0603 Optics +1004.0607 Quantum Algebra +1004.0610 Logic in Computer Science +1004.0614 Operator Algebras +1004.0617 Differential Geometry +1004.0623 Operator Algebras +1004.0632 Theory +1004.0634 Materials Science +1004.0646 Numerical Analysis +1004.0658 Information Theory +1004.0662 Numerical Analysis +1004.0663 Rings and Algebras +1004.0673 Materials Science +1004.0681 Numerical Analysis +1004.0687 Algebraic Geometry +astro-ph/0002184 +astro-ph/0002203 +astro-ph/0003033 +astro-ph/0003159 +astro-ph/0003364 +astro-ph/0004332 +astro-ph/0004408 +astro-ph/0005210 +astro-ph/0005366 +astro-ph/0005397 +astro-ph/0006183 +astro-ph/0006186 +astro-ph/0006385 +astro-ph/0008396 +astro-ph/0008417 +astro-ph/0010197 +astro-ph/0010202 +astro-ph/0010419 +astro-ph/0101259 +astro-ph/0101511 +astro-ph/0102491 +astro-ph/0104127 +astro-ph/0104427 +astro-ph/0105048 +astro-ph/0106173 +astro-ph/0110356 +astro-ph/0201414 +astro-ph/0202173 +astro-ph/0202238 +astro-ph/0203169 +astro-ph/0205299 +astro-ph/0205350 +astro-ph/0205351 +astro-ph/0207105 +astro-ph/0207319 +astro-ph/0207471 +astro-ph/0208175 +astro-ph/0208404 +astro-ph/0209174 +astro-ph/0209607 +astro-ph/0301093 +astro-ph/0301308 +astro-ph/0301360 +astro-ph/0301631 +astro-ph/0302146 +astro-ph/0302212 +astro-ph/0303429 +astro-ph/0303436 +astro-ph/0303541 +astro-ph/0303603 +astro-ph/0304072 +astro-ph/0305075 +astro-ph/0305548 +astro-ph/0306026 +astro-ph/0307124 +astro-ph/0307266 +astro-ph/0307420 +astro-ph/0307469 +astro-ph/0308449 +astro-ph/0309058 +astro-ph/0309257 +astro-ph/0309771 +astro-ph/0310125 +astro-ph/0310886 +astro-ph/0311352 +astro-ph/0312134 +astro-ph/0401495 +astro-ph/0402085 +astro-ph/0402276 +astro-ph/0402396 +astro-ph/0403455 +astro-ph/0403630 +astro-ph/0404471 +astro-ph/0405035 +astro-ph/0405585 +astro-ph/0405595 +astro-ph/0406016 +astro-ph/0406093 +astro-ph/0406384 +astro-ph/0406632 +astro-ph/0409323 +astro-ph/0410247 +astro-ph/0410342 +astro-ph/0411075 +astro-ph/0411084 +astro-ph/0411777 +astro-ph/0412117 +astro-ph/0412313 +astro-ph/0412481 +astro-ph/0501104 +astro-ph/0501116 +astro-ph/0502550 +astro-ph/0502566 +astro-ph/0503009 +astro-ph/0503110 +astro-ph/0503230 +astro-ph/0503349 +astro-ph/0503453 +astro-ph/0503566 +astro-ph/0503713 +astro-ph/0504560 +astro-ph/0504582 +astro-ph/0504586 +astro-ph/0505177 +astro-ph/0506030 +astro-ph/0506038 +astro-ph/0506510 +astro-ph/0506750 +astro-ph/0508242 +astro-ph/0508350 +astro-ph/0508407 +astro-ph/0508657 +astro-ph/0509028 +astro-ph/0509888 +astro-ph/0511638 +astro-ph/0601295 +astro-ph/0601592 +astro-ph/0602088 +astro-ph/0602549 +astro-ph/0602596 +astro-ph/0603045 +astro-ph/0603205 +astro-ph/0603248 +astro-ph/0603559 +astro-ph/0604354 +astro-ph/0604355 +astro-ph/0604460 +astro-ph/0605132 +astro-ph/0605208 +astro-ph/0605302 +astro-ph/0605573 +astro-ph/0606287 +astro-ph/0606633 +astro-ph/0607627 +astro-ph/0607648 +astro-ph/0608157 +astro-ph/0608234 +astro-ph/0608681 +astro-ph/0609024 +astro-ph/0609039 +astro-ph/0609584 +astro-ph/0610191 +astro-ph/0610218 +astro-ph/0611321 +astro-ph/0612671 +astro-ph/0612690 +astro-ph/0701265 +astro-ph/0701517 +astro-ph/0701748 +astro-ph/0703767 +astro-ph/0703780 +astro-ph/9212004 +astro-ph/9303018 +astro-ph/9403056 +astro-ph/9406055 +astro-ph/9406073 +astro-ph/9407016 +astro-ph/9411032 +astro-ph/9506103 +astro-ph/9507020 +astro-ph/9510062 +astro-ph/9511109 +astro-ph/9606098 +astro-ph/9609122 +astro-ph/9610196 +astro-ph/9704075 +astro-ph/9704144 +astro-ph/9707051 +astro-ph/9710007 +astro-ph/9710115 +astro-ph/9710201 +astro-ph/9710342 +astro-ph/9712200 +astro-ph/9803030 +astro-ph/9803110 +astro-ph/9806204 +astro-ph/9809315 +astro-ph/9810197 +astro-ph/9811251 +astro-ph/9812214 +astro-ph/9901097 +astro-ph/9906382 +astro-ph/9907053 +astro-ph/9908126 +astro-ph/9908334 +astro-ph/9911137 +astro-ph/9912186 +cond-mat/0611561 Other Condensed Matter +gr-qc/0003027 +gr-qc/0005069 +gr-qc/0005095 +gr-qc/0008028 +gr-qc/0008060 +gr-qc/0009013 +gr-qc/0010011 +gr-qc/0010044 +gr-qc/0102073 +gr-qc/0106015 +gr-qc/0106044 +gr-qc/0106072 +gr-qc/0107027 +gr-qc/0107043 +gr-qc/0107069 +gr-qc/0108056 +gr-qc/0109091 +gr-qc/0111072 +gr-qc/0201030 +gr-qc/0201042 +gr-qc/0201045 +gr-qc/0201054 +gr-qc/0201066 +gr-qc/0202020 +gr-qc/0203027 +gr-qc/0211082 +gr-qc/0212014 +gr-qc/0310042 +gr-qc/0403053 +gr-qc/0408080 +gr-qc/0411113 +gr-qc/0504057 +gr-qc/0510112 +gr-qc/0604012 +gr-qc/0604028 +gr-qc/0701143 +gr-qc/0701163 +gr-qc/0702133 +gr-qc/9207005 +gr-qc/9210015 +gr-qc/9210020 +gr-qc/9211016 +gr-qc/9211024 +gr-qc/9211027 +gr-qc/9212001 +gr-qc/9212006 +gr-qc/9212010 +gr-qc/9301001 +gr-qc/9301005 +gr-qc/9301019 +gr-qc/9302003 +gr-qc/9302005 +gr-qc/9302030 +gr-qc/9302034 +gr-qc/9302036 +gr-qc/9303005 +gr-qc/9303011 +gr-qc/9303013 +gr-qc/9303014 +gr-qc/9303019 +gr-qc/9303026 +gr-qc/9303028 +gr-qc/9304007 +gr-qc/9304026 +gr-qc/9304029 +gr-qc/9304034 +gr-qc/9304042 +gr-qc/9304044 +gr-qc/9305001 +gr-qc/9305008 +gr-qc/9305010 +gr-qc/9305011 +gr-qc/9305025 +gr-qc/9306007 +gr-qc/9306008 +gr-qc/9306012 +gr-qc/9306024 +gr-qc/9306029 +gr-qc/9307002 +gr-qc/9307005 +gr-qc/9307016 +gr-qc/9307017 +gr-qc/9307024 +gr-qc/9307026 +gr-qc/9307031 +gr-qc/9307034 +gr-qc/9308010 +gr-qc/9308018 +gr-qc/9308027 +gr-qc/9309024 +gr-qc/9310003 +gr-qc/9310006 +gr-qc/9310016 +gr-qc/9310040 +gr-qc/9310041 +gr-qc/9311005 +gr-qc/9311012 +gr-qc/9311035 +gr-qc/9312002 +gr-qc/9312003 +gr-qc/9312011 +gr-qc/9312013 +gr-qc/9312020 +gr-qc/9312022 +gr-qc/9312026 +gr-qc/9312028 +gr-qc/9401004 +gr-qc/9401024 +gr-qc/9401025 +gr-qc/9401029 +gr-qc/9402001 +gr-qc/9402004 +gr-qc/9402005 +gr-qc/9402015 +gr-qc/9402025 +gr-qc/9402033 +gr-qc/9402034 +gr-qc/9403006 +gr-qc/9403010 +gr-qc/9403012 +gr-qc/9403024 +gr-qc/9403025 +gr-qc/9403026 +gr-qc/9403034 +gr-qc/9403040 +gr-qc/9403050 +gr-qc/9403060 +gr-qc/9403062 +gr-qc/9404003 +gr-qc/9404004 +gr-qc/9404015 +gr-qc/9404019 +gr-qc/9404026 +gr-qc/9404042 +gr-qc/9404044 +gr-qc/9404048 +gr-qc/9404053 +gr-qc/9404060 +gr-qc/9405031 +gr-qc/9405034 +gr-qc/9405035 +gr-qc/9405046 +gr-qc/9405047 +gr-qc/9405053 +gr-qc/9405067 +gr-qc/9405071 +gr-qc/9406009 +gr-qc/9406014 +gr-qc/9406019 +gr-qc/9406033 +gr-qc/9407006 +gr-qc/9407018 +gr-qc/9407024 +gr-qc/9407028 +gr-qc/9408007 +gr-qc/9408008 +gr-qc/9408013 +gr-qc/9408026 +gr-qc/9408032 +gr-qc/9408034 +gr-qc/9409014 +gr-qc/9409020 +gr-qc/9409021 +gr-qc/9409022 +gr-qc/9409047 +gr-qc/9409049 +gr-qc/9410004 +gr-qc/9410008 +gr-qc/9410015 +gr-qc/9410023 +gr-qc/9411011 +gr-qc/9411014 +gr-qc/9411022 +gr-qc/9411028 +gr-qc/9411032 +gr-qc/9411047 +gr-qc/9411054 +gr-qc/9411059 +gr-qc/9411063 +gr-qc/9411072 +gr-qc/9412002 +gr-qc/9412015 +gr-qc/9412020 +gr-qc/9412038 +gr-qc/9412045 +gr-qc/9412063 +gr-qc/9501013 +gr-qc/9501018 +gr-qc/9501024 +gr-qc/9501028 +gr-qc/9502003 +gr-qc/9502005 +gr-qc/9502011 +gr-qc/9502018 +gr-qc/9503053 +gr-qc/9504048 +gr-qc/9505028 +gr-qc/9506012 +gr-qc/9506036 +gr-qc/9506056 +gr-qc/9506060 +gr-qc/9506061 +gr-qc/9506091 +gr-qc/9506093 +gr-qc/9507053 +gr-qc/9508031 +gr-qc/9508042 +gr-qc/9508052 +gr-qc/9509003 +gr-qc/9510013 +gr-qc/9510049 +gr-qc/9511008 +gr-qc/9511018 +gr-qc/9511054 +gr-qc/9511081 +gr-qc/9601014 +gr-qc/9601027 +gr-qc/9602046 +gr-qc/9602060 +gr-qc/9603019 +gr-qc/9603061 +gr-qc/9604003 +gr-qc/9604039 +gr-qc/9604040 +gr-qc/9604047 +gr-qc/9605014 +gr-qc/9605061 +gr-qc/9605062 +gr-qc/9606027 +gr-qc/9606080 +gr-qc/9607001 +gr-qc/9607031 +gr-qc/9607045 +gr-qc/9607057 +gr-qc/9607071 +gr-qc/9608017 +gr-qc/9609007 +gr-qc/9609072 +gr-qc/9610027 +gr-qc/9610036 +gr-qc/9611001 +gr-qc/9611061 +gr-qc/9612030 +gr-qc/9612059 +gr-qc/9701010 +gr-qc/9701035 +gr-qc/9702025 +gr-qc/9702052 +gr-qc/9704066 +gr-qc/9706018 +gr-qc/9707024 +gr-qc/9708011 +gr-qc/9708042 +gr-qc/9709058 +gr-qc/9709074 +gr-qc/9801076 +gr-qc/9803074 +gr-qc/9806048 +gr-qc/9806066 +gr-qc/9810028 +gr-qc/9812065 +gr-qc/9812089 +gr-qc/9901033 +gr-qc/9902015 +gr-qc/9902019 +gr-qc/9902057 +gr-qc/9904055 +gr-qc/9905035 +gr-qc/9906017 +gr-qc/9906027 +gr-qc/9906038 +gr-qc/9907058 +gr-qc/9909041 +gr-qc/9910008 +gr-qc/9910009 +gr-qc/9910044 +gr-qc/9911034 +gr-qc/9911066 +gr-qc/9911121 +hep-ex/0006022 Experiment +hep-ex/0011029 Experiment +hep-ex/0101030 Experiment +hep-ex/0105029 Experiment +hep-ex/0107028 Experiment +hep-ex/0107043 Experiment +hep-ex/0110007 Experiment +hep-ex/0111074 Experiment +hep-ex/0210023 Experiment +hep-ex/0210054 Experiment +hep-ex/0212014 Experiment +hep-ex/0212039 Experiment +hep-ex/0212044 Experiment +hep-ex/0212062 Experiment +hep-ex/0301005 Experiment +hep-ex/0307018 Experiment +hep-ex/0309060 Experiment +hep-ex/0311024 Experiment +hep-ex/0311046 Experiment +hep-ex/0405064 Experiment +hep-ex/0406045 Experiment +hep-ex/0408005 Experiment +hep-ex/0504057 Experiment +hep-ex/0506004 Experiment +hep-ex/0508002 Experiment +hep-ex/0510061 Experiment +hep-ex/0603028 Experiment +hep-ex/0604011 Experiment +hep-ex/0604047 Experiment +hep-ex/0605001 Experiment +hep-ex/0605012 Experiment +hep-ex/0606042 Experiment +hep-ex/0606062 Experiment +hep-ex/0611036 Experiment +hep-ex/9705004 Experiment +hep-ex/9812020 Experiment +hep-lat/0007042 Lattice +hep-lat/0103028 Lattice +hep-lat/0110175 Lattice +hep-lat/0303019 Lattice +hep-lat/0306026 Lattice +hep-lat/0312030 Lattice +hep-lat/0412035 Lattice +hep-lat/0510074 Lattice +hep-lat/0701012 Lattice +hep-lat/9707003 Lattice +hep-ph/0001179 Phenomenology +hep-ph/0002151 Phenomenology +hep-ph/0003172 Phenomenology +hep-ph/0004008 Phenomenology +hep-ph/0004169 Phenomenology +hep-ph/0006190 Phenomenology +hep-ph/0010148 Phenomenology +hep-ph/0102140 Phenomenology +hep-ph/0102201 Phenomenology +hep-ph/0103124 Phenomenology +hep-ph/0103163 Phenomenology +hep-ph/0103289 Phenomenology +hep-ph/0105083 Phenomenology +hep-ph/0105268 Phenomenology +hep-ph/0107173 Phenomenology +hep-ph/0108274 Phenomenology +hep-ph/0109097 Phenomenology +hep-ph/0112081 Phenomenology +hep-ph/0201161 Phenomenology +hep-ph/0201258 Phenomenology +hep-ph/0201300 Phenomenology +hep-ph/0203034 Phenomenology +hep-ph/0203253 Phenomenology +hep-ph/0204093 Phenomenology +hep-ph/0204123 Phenomenology +hep-ph/0205066 Phenomenology +hep-ph/0206067 Phenomenology +hep-ph/0208070 Phenomenology +hep-ph/0211007 Phenomenology +hep-ph/0211023 Phenomenology +hep-ph/0211110 Phenomenology +hep-ph/0211181 Phenomenology +hep-ph/0211305 Phenomenology +hep-ph/0212124 Phenomenology +hep-ph/0212228 Phenomenology +hep-ph/0301204 Phenomenology +hep-ph/0302093 Phenomenology +hep-ph/0302102 Phenomenology +hep-ph/0302196 Phenomenology +hep-ph/0304049 Phenomenology +hep-ph/0305130 Phenomenology +hep-ph/0305243 Phenomenology +hep-ph/0305302 Phenomenology +hep-ph/0307022 Phenomenology +hep-ph/0307216 Phenomenology +hep-ph/0307237 Phenomenology +hep-ph/0309204 Phenomenology +hep-ph/0309243 Phenomenology +hep-ph/0309328 Phenomenology +hep-ph/0310076 Phenomenology +hep-ph/0310208 Phenomenology +hep-ph/0311335 Phenomenology +hep-ph/0312132 Phenomenology +hep-ph/0312265 Phenomenology +hep-ph/0401160 Phenomenology +hep-ph/0402204 Phenomenology +hep-ph/0402256 Phenomenology +hep-ph/0404211 Phenomenology +hep-ph/0405207 Phenomenology +hep-ph/0405209 Phenomenology +hep-ph/0405301 Phenomenology +hep-ph/0406101 Phenomenology +hep-ph/0406215 Phenomenology +hep-ph/0408092 Phenomenology +hep-ph/0408227 Phenomenology +hep-ph/0409088 Phenomenology +hep-ph/0411261 Phenomenology +hep-ph/0502001 Phenomenology +hep-ph/0502148 Phenomenology +hep-ph/0502188 Phenomenology +hep-ph/0502248 Phenomenology +hep-ph/0503021 Phenomenology +hep-ph/0504026 Phenomenology +hep-ph/0505013 Phenomenology +hep-ph/0505059 Phenomenology +hep-ph/0505209 Phenomenology +hep-ph/0507011 Phenomenology +hep-ph/0507170 Phenomenology +hep-ph/0507199 Phenomenology +hep-ph/0507266 Phenomenology +hep-ph/0508265 Phenomenology +hep-ph/0510121 Phenomenology +hep-ph/0511133 Phenomenology +hep-ph/0512313 Phenomenology +hep-ph/0601001 Phenomenology +hep-ph/0601225 Phenomenology +hep-ph/0602028 Phenomenology +hep-ph/0603063 Phenomenology +hep-ph/0604112 Phenomenology +hep-ph/0605020 Phenomenology +hep-ph/0607283 Phenomenology +hep-ph/0608344 Phenomenology +hep-ph/0609281 Phenomenology +hep-ph/0610165 Phenomenology +hep-ph/0610250 Phenomenology +hep-ph/0610298 Phenomenology +hep-ph/0611341 Phenomenology +hep-ph/0612015 Phenomenology +hep-ph/0612139 Phenomenology +hep-ph/0701006 Phenomenology +hep-ph/0701055 Phenomenology +hep-ph/0702184 Phenomenology +hep-ph/0703125 Phenomenology +hep-ph/9211266 Phenomenology +hep-ph/9212226 Phenomenology +hep-ph/9301295 Phenomenology +hep-ph/9304260 Phenomenology +hep-ph/9406212 Phenomenology +hep-ph/9410281 Phenomenology +hep-ph/9410282 Phenomenology +hep-ph/9410414 Phenomenology +hep-ph/9502329 Phenomenology +hep-ph/9503236 Phenomenology +hep-ph/9504241 Phenomenology +hep-ph/9506273 Phenomenology +hep-ph/9506436 Phenomenology +hep-ph/9508373 Phenomenology +hep-ph/9511430 Phenomenology +hep-ph/9601302 Phenomenology +hep-ph/9602316 Phenomenology +hep-ph/9603423 Phenomenology +hep-ph/9605302 Phenomenology +hep-ph/9610445 Phenomenology +hep-ph/9703211 Phenomenology +hep-ph/9704245 Phenomenology +hep-ph/9704447 Phenomenology +hep-ph/9704457 Phenomenology +hep-ph/9705228 Phenomenology +hep-ph/9705254 Phenomenology +hep-ph/9705341 Phenomenology +hep-ph/9707215 Phenomenology +hep-ph/9708207 Phenomenology +hep-ph/9708326 Phenomenology +hep-ph/9709379 Phenomenology +hep-ph/9712457 Phenomenology +hep-ph/9803453 Phenomenology +hep-ph/9804221 Phenomenology +hep-ph/9805268 Phenomenology +hep-ph/9805498 Phenomenology +hep-ph/9809443 Phenomenology +hep-ph/9810280 Phenomenology +hep-ph/9811252 Phenomenology +hep-ph/9811427 Phenomenology +hep-ph/9901299 Phenomenology +hep-ph/9902341 Phenomenology +hep-ph/9902443 Phenomenology +hep-ph/9903288 Phenomenology +hep-ph/9904440 Phenomenology +hep-ph/9906349 Phenomenology +hep-ph/9907502 Phenomenology +hep-ph/9907509 Phenomenology +hep-ph/9909286 Phenomenology +hep-ph/9909411 Phenomenology +hep-ph/9910231 Phenomenology +hep-ph/9910332 Phenomenology +hep-ph/9911342 Phenomenology +hep-ph/9912423 Phenomenology +hep-th/0003236 Theory +hep-th/0003237 Theory +hep-th/0003300 Theory +hep-th/0004101 Theory +hep-th/0004149 Theory +hep-th/0005116 Theory +hep-th/0005126 Theory +hep-th/0005132 Theory +hep-th/0005249 Theory +hep-th/0005270 Theory +hep-th/0009176 Theory +hep-th/0010112 Theory +hep-th/0011128 Theory +hep-th/0011138 Theory +hep-th/0011270 Theory +hep-th/0012172 Theory +hep-th/0101070 Theory +hep-th/0103035 Theory +hep-th/0103225 Theory +hep-th/0104158 Theory +hep-th/0105320 Theory +hep-th/0106058 Theory +hep-th/0106133 Theory +hep-th/0108145 Theory +hep-th/0110054 Theory +hep-th/0110117 Theory +hep-th/0110274 Theory +hep-th/0111123 Theory +hep-th/0201018 Theory +hep-th/0201081 Theory +hep-th/0203026 Theory +hep-th/0203039 Theory +hep-th/0206049 Theory +hep-th/0206155 Theory +hep-th/0209076 Theory +hep-th/0211216 Theory +hep-th/0212209 Theory +hep-th/0301117 Theory +hep-th/0305093 Theory +hep-th/0310058 Theory +hep-th/0312114 Theory +hep-th/0403038 Theory +hep-th/0404156 Theory +hep-th/0405069 Theory +hep-th/0406055 Theory +hep-th/0407149 Theory +hep-th/0408054 Theory +hep-th/0408084 Theory +hep-th/0408166 Theory +hep-th/0409155 Theory +hep-th/0411011 Theory +hep-th/0411092 Theory +hep-th/0411240 Theory +hep-th/0411267 Theory +hep-th/0412210 Theory +hep-th/0412330 Theory +hep-th/0503081 Theory +hep-th/0503192 Theory +hep-th/0505113 Theory +hep-th/0505154 Theory +hep-th/0506176 Theory +hep-th/0507158 Theory +hep-th/0508049 Theory +hep-th/0508218 Theory +hep-th/0509084 Theory +hep-th/0510171 Theory +hep-th/0510251 Theory +hep-th/0511140 Theory +hep-th/0512261 Theory +hep-th/0601001 Theory +hep-th/0601157 Theory +hep-th/0602027 Theory +hep-th/0602170 Theory +hep-th/0606244 Theory +hep-th/0607050 Theory +hep-th/0608012 Theory +hep-th/0611071 Theory +hep-th/0701132 Theory +hep-th/0701280 Theory +hep-th/0702059 Theory +hep-th/9111030 Theory +hep-th/9112004 Theory +hep-th/9201043 Theory +hep-th/9202053 Theory +hep-th/9202063 Theory +hep-th/9202068 Theory +hep-th/9202071 Theory +hep-th/9202076 Theory +hep-th/9203050 Theory +hep-th/9204039 Theory +hep-th/9204040 Theory +hep-th/9205007 Theory +hep-th/9205023 Theory +hep-th/9205057 Theory +hep-th/9205098 Theory +hep-th/9205102 Theory +hep-th/9206026 Theory +hep-th/9206058 Theory +hep-th/9206061 Theory +hep-th/9206089 Theory +hep-th/9206108 Theory +hep-th/9207008 Theory +hep-th/9207115 Theory +hep-th/9208014 Theory +hep-th/9208018 Theory +hep-th/9209086 Theory +hep-th/9209090 Theory +hep-th/9211045 Theory +hep-th/9211054 Theory +hep-th/9212081 Theory +hep-th/9212098 Theory +hep-th/9212142 Theory +hep-th/9302091 Theory +hep-th/9303062 Theory +hep-th/9303147 Theory +hep-th/9303167 Theory +hep-th/9304037 Theory +hep-th/9304086 Theory +hep-th/9304094 Theory +hep-th/9305006 Theory +hep-th/9305020 Theory +hep-th/9306001 Theory +hep-th/9306054 Theory +hep-th/9306088 Theory +hep-th/9306125 Theory +hep-th/9306140 Theory +hep-th/9307015 Theory +hep-th/9307022 Theory +hep-th/9307066 Theory +hep-th/9307095 Theory +hep-th/9308075 Theory +hep-th/9308114 Theory +hep-th/9309035 Theory +hep-th/9309041 Theory +hep-th/9309050 Theory +hep-th/9309086 Theory +hep-th/9309127 Theory +hep-th/9310003 Theory +hep-th/9310019 Theory +hep-th/9310128 Theory +hep-th/9310163 Theory +hep-th/9310175 Theory +hep-th/9310179 Theory +hep-th/9311032 Theory +hep-th/9311084 Theory +hep-th/9311146 Theory +hep-th/9311147 Theory +hep-th/9312014 Theory +hep-th/9312132 Theory +hep-th/9401003 Theory +hep-th/9401036 Theory +hep-th/9401145 Theory +hep-th/9401159 Theory +hep-th/9401164 Theory +hep-th/9404061 Theory +hep-th/9404064 Theory +hep-th/9404074 Theory +hep-th/9404124 Theory +hep-th/9404162 Theory +hep-th/9405113 Theory +hep-th/9405177 Theory +hep-th/9406002 Theory +hep-th/9406015 Theory +hep-th/9406145 Theory +hep-th/9406165 Theory +hep-th/9407019 Theory +hep-th/9407023 Theory +hep-th/9407158 Theory +hep-th/9408030 Theory +hep-th/9408032 Theory +hep-th/9408062 Theory +hep-th/9409020 Theory +hep-th/9409074 Theory +hep-th/9409199 Theory +hep-th/9410003 Theory +hep-th/9410027 Theory +hep-th/9410073 Theory +hep-th/9410112 Theory +hep-th/9410201 Theory +hep-th/9411022 Theory +hep-th/9411127 Theory +hep-th/9411132 Theory +hep-th/9411206 Theory +hep-th/9411219 Theory +hep-th/9412010 Theory +hep-th/9412061 Theory +hep-th/9412074 Theory +hep-th/9412172 Theory +hep-th/9501055 Theory +hep-th/9501108 Theory +hep-th/9502006 Theory +hep-th/9502015 Theory +hep-th/9502054 Theory +hep-th/9502143 Theory +hep-th/9502152 Theory +hep-th/9504028 Theory +hep-th/9504122 Theory +hep-th/9510087 Theory +hep-th/9512003 Theory +hep-th/9601109 Theory +hep-th/9602115 Theory +hep-th/9603044 Theory +hep-th/9604033 Theory +hep-th/9606086 Theory +hep-th/9607149 Theory +hep-th/9610045 Theory +hep-th/9611214 Theory +hep-th/9612036 Theory +hep-th/9701023 Theory +hep-th/9701099 Theory +hep-th/9701146 Theory +hep-th/9702180 Theory +hep-th/9704002 Theory +hep-th/9705199 Theory +hep-th/9706129 Theory +hep-th/9707018 Theory +hep-th/9707044 Theory +hep-th/9707066 Theory +hep-th/9708081 Theory +hep-th/9709074 Theory +hep-th/9802007 Theory +hep-th/9803049 Theory +hep-th/9805118 Theory +hep-th/9805139 Theory +hep-th/9806145 Theory +hep-th/9806223 Theory +hep-th/9807241 Theory +hep-th/9809035 Theory +hep-th/9810077 Theory +hep-th/9811008 Theory +hep-th/9902173 Theory +hep-th/9903175 Theory +hep-th/9903196 Theory +hep-th/9904005 Theory +hep-th/9904197 Theory +hep-th/9905154 Theory +hep-th/9905178 Theory +hep-th/9905226 Theory +hep-th/9907027 Theory +hep-th/9907152 Theory +hep-th/9909199 Theory +hep-th/9911039 Theory +hep-th/9911230 Theory +math/0111017 Algebraic Geometry +math/0512530 Algebraic Geometry +math/0603744 Representation Theory +math/0607781 Probability +math/0608074 Representation Theory +math/0608266 Metric Geometry +math/9809163 Geometric Topology +nucl-ex/0008003 +nucl-ex/0008005 +nucl-ex/0107016 +nucl-ex/0108006 +nucl-ex/0301008 +nucl-ex/0301012 +nucl-ex/0305009 +nucl-ex/0305028 +nucl-ex/0306019 +nucl-ex/0307004 +nucl-ex/0308013 +nucl-ex/0401003 +nucl-ex/0405019 +nucl-ex/0405021 +nucl-ex/0407013 +nucl-ex/0409013 +nucl-ex/0409030 +nucl-ex/0411003 +nucl-ex/0504027 +nucl-ex/0508026 +nucl-ex/0509033 +nucl-ex/0510032 +nucl-ex/0512019 +nucl-ex/0601007 +nucl-ex/0605028 +nucl-ex/0611034 +nucl-ex/0701013 +nucl-ex/0702027 +nucl-ex/0703013 +nucl-ex/0703026 +nucl-ex/9902012 +nucl-th/0007030 +nucl-th/0104057 +nucl-th/0108057 +nucl-th/0112034 +nucl-th/0402026 +nucl-th/0409068 +nucl-th/0412015 +nucl-th/0508009 +nucl-th/9407035 +nucl-th/9410017 +nucl-th/9601028 +nucl-th/9610040 +nucl-th/9701048 +nucl-th/9709067 +nucl-th/9802057 +nucl-th/9802071 +nucl-th/9904072 +nucl-th/9907090 +quant-ph/0202129 +quant-ph/9608023 +0704.0499 Information Theory +0704.2926 Information Theory +0705.1856 +0711.2335 Phenomenology +0712.0765 Mesoscale and Nanoscale Physics +0712.2832 +0712.3727 +0801.0971 +0804.0810 +0805.1739 +0806.1005 +0806.2681 +0806.4815 +0806.4874 Information Theory +0806.4897 +0808.1602 +0809.2651 Computational Geometry +0809.2788 Phenomenology +0809.2849 Phenomenology +0809.2859 Phenomenology +0809.2869 Phenomenology +0809.4065 Phenomenology +0809.4159 Phenomenology +0809.4185 Phenomenology +0809.4352 +0809.4355 Phenomenology +0809.4383 Phenomenology +0809.4753 Phenomenology +0809.5223 +0810.0013 Phenomenology +0810.0042 +0810.0063 Phenomenology +0810.0121 Phenomenology +0810.0127 +0810.0400 Phenomenology +0810.0555 +0810.0750 +0810.0894 Phenomenology +0810.0898 Phenomenology +0810.0913 Phenomenology +0810.0989 Phenomenology +0810.1099 Phenomenology +0810.1104 Phenomenology +0810.1142 Phenomenology +0810.1166 Phenomenology +0810.1222 +0810.1277 Phenomenology +0810.1317 Phenomenology +0810.1389 Experiment +0810.1407 Phenomenology +0810.1527 +0810.1744 +0810.2922 Theory +0810.2951 Theory +0810.3337 +0810.3625 Phenomenology +0810.3768 Phenomenology +0810.3779 Phenomenology +0810.3863 Phenomenology +0810.3871 Phenomenology +0810.4147 Phenomenology +0810.4194 Phenomenology +0810.4233 Phenomenology +0810.4234 Phenomenology +0810.4308 +0810.4368 Phenomenology +0810.4429 Phenomenology +0810.4439 Phenomenology +0810.4446 Instrumentation and Detectors +0810.5101 Phenomenology +0810.5103 Phenomenology +0810.5541 +0810.5547 Phenomenology +0810.5727 +0811.1582 +0811.1845 +0811.1933 +0811.2204 Phenomenology +0811.2211 Phenomenology +0811.2253 +0811.2615 +0811.4008 +0811.4092 +0811.4106 +0812.0777 Computational Physics +0812.1236 Lattice +0812.1736 +0812.1741 +0812.2035 Lattice +0812.2075 Phenomenology +0812.2090 Phenomenology +0812.2103 Phenomenology +0812.2106 Phenomenology +0812.2116 Phenomenology +0812.2581 +0812.2583 Lattice +0812.3078 Phenomenology +0812.3149 +0812.3291 Phenomenology +0812.3406 Phenomenology +0812.3418 Phenomenology +0812.3544 +0812.3554 +0812.3744 +0812.3815 Phenomenology +0812.3859 Phenomenology +0812.3895 +0812.3900 Phenomenology +0812.3968 Phenomenology +0812.3987 Phenomenology +0812.4045 Phenomenology +0812.4130 Phenomenology +0812.4179 Phenomenology +0812.4207 Computational Physics +0812.4267 Phenomenology +0812.4313 Phenomenology +0812.4391 +0812.4417 Phenomenology +0812.4509 Phenomenology +0812.4555 Phenomenology +0812.4609 Phenomenology +0812.4700 Phenomenology +0812.4747 Phenomenology +0812.4782 Phenomenology +0812.4984 Phenomenology +0812.5031 Phenomenology +0812.5085 Phenomenology +0812.5105 Phenomenology +0901.1145 Phenomenology +0901.2821 Phenomenology +0901.3114 Cosmology and Nongalactic Astrophysics +0901.3776 High Energy Astrophysical Phenomena +0901.3958 Phenomenology +0901.4013 Phenomenology +0901.4122 Phenomenology +0901.4200 Phenomenology +0901.4243 Phenomenology +0901.4310 Phenomenology +0901.4327 Phenomenology +0901.4812 Phenomenology +0901.4820 Phenomenology +0901.4821 Phenomenology +0901.4841 Phenomenology +0902.0008 Phenomenology +0902.0015 Phenomenology +0902.0317 Phenomenology +0902.1074 Lattice +0902.3665 Cosmology and Nongalactic Astrophysics +0902.3702 Cosmology and Nongalactic Astrophysics +0902.4001 High Energy Astrophysical Phenomena +0902.4349 Phenomenology +0902.4405 Phenomenology +0902.4829 Phenomenology +0902.4864 Phenomenology +0902.4883 Phenomenology +0902.4885 Phenomenology +0902.4892 Phenomenology +0902.4894 Phenomenology +0903.0025 Phenomenology +0903.0118 Phenomenology +0903.0120 +0903.0122 Phenomenology +0903.0123 Phenomenology +0903.0242 Phenomenology +0903.0618 Phenomenology +0903.0668 Phenomenology +0903.0685 Phenomenology +0903.1727 Mesoscale and Nanoscale Physics +0904.0618 Analysis of PDEs +0904.1310 Lattice +0904.1400 Lattice +0904.1586 Lattice +0904.1806 Lattice +0904.1962 Phenomenology +0904.2536 Theory +0904.2567 Phenomenology +0904.2649 Theory +0904.2700 Phenomenology +0904.2723 Theory +0904.2727 Phenomenology +0904.4238 Soft Condensed Matter +0904.4586 Soft Condensed Matter +0905.0821 Solar and Stellar Astrophysics +0905.0920 Cosmology and Nongalactic Astrophysics +0905.1112 Cosmology and Nongalactic Astrophysics +0905.1188 Phenomenology +0905.1253 Phenomenology +0905.1326 Cosmology and Nongalactic Astrophysics +0905.1552 Cosmology and Nongalactic Astrophysics +0905.1752 Cosmology and Nongalactic Astrophysics +0905.1919 Cosmology and Nongalactic Astrophysics +0905.1929 +0905.2897 Atomic Physics +0906.0728 Phenomenology +0906.0828 Cosmology and Nongalactic Astrophysics +0906.1496 Representation Theory +0906.2368 Mesoscale and Nanoscale Physics +0906.3991 Biomolecules +0907.4323 +0907.4417 Mesoscale and Nanoscale Physics +0907.5275 Instrumentation and Methods for Astrophysics +0908.1867 +0909.2174 Group Theory +0909.4481 Functional Analysis +0910.1096 Theory +0910.1128 Theory +0910.2160 Theory +0910.2443 Algebraic Geometry +0910.4071 Phenomenology +0910.4202 Cosmology and Nongalactic Astrophysics +0910.4513 High Energy Astrophysical Phenomena +0911.1366 Quantum Gases +0911.3493 Statistical Mechanics +0911.3496 Disordered Systems and Neural Networks +0911.4104 Number Theory +0911.5416 Statistical Mechanics +0911.5430 Experiment +0911.5679 High Energy Astrophysical Phenomena +0912.0566 Materials Science +0912.2069 Theory +0912.2093 Phenomenology +0912.2111 Theory +0912.2168 Theory +0912.2175 +0912.2186 Lattice +0912.2701 Lattice +0912.3060 Statistical Mechanics +0912.3085 Superconductivity +1001.0189 Other Condensed Matter +1001.3015 Optimization and Control +1001.5139 Quantum Gases +1001.5365 +1002.1334 Strongly Correlated Electrons +1002.2608 Other Condensed Matter +1002.3314 Astrophysics of Galaxies +1002.4319 Group Theory +1003.1751 Cosmology and Nongalactic Astrophysics +1003.3244 +1003.5809 Strongly Correlated Electrons +1004.0785 Information Theory +1004.1392 Theory +1004.1693 Theory +1004.2115 Combinatorics +1004.2147 Statistical Mechanics +1004.2262 High Energy Astrophysical Phenomena +1004.2265 Dynamical Systems +1004.2269 Number Theory +1004.2271 Populations and Evolution +1004.2275 Optics +1004.2281 Dynamical Systems +1004.2283 Theory +1004.2286 Symplectic Geometry +1004.2287 Machine Learning +1004.2290 Quantum Gases +1004.2294 Combinatorics +1004.2296 Probability +1004.2298 Analysis of PDEs +1004.2304 Machine Learning +1004.2305 Number Theory +1004.2308 Distributed, Parallel, and Cluster Computing +1004.2311 Strongly Correlated Electrons +1004.2312 Combinatorics +1004.2322 Networking and Internet Architecture +1004.2323 Differential Geometry +1004.2334 Solar and Stellar Astrophysics +1004.2336 Solar and Stellar Astrophysics +1004.2338 Computational Geometry +1004.2348 Solar and Stellar Astrophysics +1004.2354 Other Computer Science +1004.2355 Spectral Theory +1004.2363 Solar and Stellar Astrophysics +1004.2364 Cryptography and Security +1004.2365 Cosmology and Nongalactic Astrophysics +1004.2367 Logic in Computer Science +1004.2371 Probability +1004.2372 Databases +1004.2374 Cryptography and Security +1004.2383 Cosmology and Nongalactic Astrophysics +1004.2384 +1004.2385 Spectral Theory +1004.2386 Functional Analysis +1004.2388 Phenomenology +1004.2392 Information Theory +1004.2397 +1004.2398 Probability +1004.2418 Combinatorics +1004.2425 Information Theory +1004.2436 Logic in Computer Science +1004.2437 Classical Analysis and ODEs +1004.2439 Classical Analysis and ODEs +1004.2440 Classical Analysis and ODEs +1004.2445 Classical Analysis and ODEs +1004.2446 Functional Analysis +1004.2447 Graphics +1004.2453 Classical Analysis and ODEs +1004.2457 Complex Variables +1004.2460 Combinatorics +1004.2464 Solar and Stellar Astrophysics +1004.2470 +1004.2472 Quantum Algebra +1004.2478 Combinatorics +1004.2482 Combinatorics +1004.2483 Rings and Algebras +1004.2485 Combinatorics +1004.2486 Differential Geometry +astro-ph/0103371 +astro-ph/0210392 +astro-ph/0412321 +astro-ph/0508441 +astro-ph/0509140 +astro-ph/0510627 +astro-ph/0601035 +astro-ph/0607115 +astro-ph/0607449 +astro-ph/0608074 +astro-ph/0609063 +astro-ph/0610160 +astro-ph/9605087 +astro-ph/9801313 +cond-mat/0601322 Soft Condensed Matter +cs/0307066 Distributed, Parallel, and Cluster Computing +cs/0508076 Information Theory +cs/0604098 Information Theory +cs/0604099 Information Theory +cs/0605092 Information Theory +cs/0605093 Information Theory +cs/0702154 Information Theory +hep-ex/0512038 Experiment +hep-lat/9801010 Lattice +hep-th/0301150 Theory +hep-th/0304100 Theory +hep-th/0608075 Theory +hep-th/0701252 Theory +math-ph/0606041 +0705.1835 Combinatorics +0706.4382 Experiment +0707.0145 Other Condensed Matter +0709.2519 +0709.3292 +0710.4552 +0801.3414 +0801.3633 Representation Theory +0801.4968 +0802.2403 +0802.2977 +0802.3830 +0803.2268 +0803.2650 +0804.2115 Rings and Algebras +0804.4496 +0805.0640 Rings and Algebras +0805.1510 +0805.2327 Rings and Algebras +0806.0174 Algebraic Topology +0806.3467 Phenomenology +0806.3579 Phenomenology +0806.4117 +0807.0805 Symplectic Geometry +0808.0077 +0808.1572 +0808.2208 +0808.3671 Superconductivity +0808.3779 Statistical Mechanics +0809.0220 +0809.1430 +0809.2658 Phenomenology +0809.2661 Phenomenology +0809.2759 Phenomenology +0809.2784 Phenomenology +0809.2791 Phenomenology +0809.2799 Phenomenology +0809.2809 +0809.2814 +0809.2823 Phenomenology +0809.3072 Phenomenology +0809.3080 Phenomenology +0809.3124 Phenomenology +0809.3200 Phenomenology +0809.3215 Phenomenology +0809.3217 Phenomenology +0809.3236 Phenomenology +0809.3450 Phenomenology +0809.3667 Phenomenology +0809.3678 Phenomenology +0809.4136 +0809.4411 Phenomenology +0809.4437 Phenomenology +0809.4438 +0809.4440 Phenomenology +0809.4506 +0809.4598 Phenomenology +0809.4613 Phenomenology +0809.4628 Phenomenology +0809.4663 Phenomenology +0809.4667 Phenomenology +0809.4766 Phenomenology +0809.4801 Phenomenology +0809.4831 Phenomenology +0809.5030 Phenomenology +0810.0403 +0810.0491 +0810.0722 Phenomenology +0810.0751 Phenomenology +0810.0760 Phenomenology +0810.0857 Phenomenology +0810.0889 Phenomenology +0810.1038 Phenomenology +0810.2293 Phenomenology +0810.2297 Phenomenology +0810.2409 Representation Theory +0810.2439 Phenomenology +0810.2448 Phenomenology +0810.2784 +0810.2831 Phenomenology +0810.3012 Phenomenology +0810.3015 Phenomenology +0810.3130 +0810.3233 +0810.3821 Phenomenology +0810.3919 Phenomenology +0810.3965 Phenomenology +0810.3976 Lattice +0810.3984 Phenomenology +0810.4016 Phenomenology +0810.4115 Phenomenology +0810.4370 +0810.4394 Phenomenology +0810.4421 Phenomenology +0810.4468 Phenomenology +0810.4497 Phenomenology +0810.4516 Phenomenology +0810.4529 +0810.4573 Phenomenology +0810.4602 Phenomenology +0810.4606 Phenomenology +0810.4799 Phenomenology +0810.4813 Phenomenology +0810.4846 Phenomenology +0810.4848 +0810.4899 Phenomenology +0810.4921 +0810.4940 Phenomenology +0810.4954 Phenomenology +0810.4972 +0810.4973 Phenomenology +0810.5235 Phenomenology +0810.5239 Phenomenology +0810.5266 Phenomenology +0810.5270 Phenomenology +0810.5343 Phenomenology +0811.0387 Phenomenology +0811.0614 Phenomenology +0811.0616 Phenomenology +0811.0645 Phenomenology +0811.0658 Phenomenology +0811.0668 Phenomenology +0811.0967 Phenomenology +0811.0974 Phenomenology +0811.1187 Phenomenology +0811.1196 Phenomenology +0811.1318 Phenomenology +0811.1364 Phenomenology +0811.1779 Phenomenology +0811.1798 Phenomenology +0811.1806 Phenomenology +0811.2006 +0811.2069 +0811.2366 +0811.2712 Lattice +0811.2797 +0811.3934 +0811.4110 +0811.4164 +0811.4479 +0812.0260 Theory +0812.0453 Theory +0812.0497 Theory +0812.0500 Phenomenology +0812.0551 Theory +0812.1403 Phenomenology +0812.1826 Phenomenology +0812.1895 Phenomenology +0812.2189 +0812.2422 +0812.2501 Geophysics +0812.2693 Phenomenology +0812.2710 +0812.2762 Phenomenology +0812.2770 +0812.2776 Phenomenology +0812.2821 Phenomenology +0812.2875 Phenomenology +0812.3028 +0812.4592 +0901.0254 High Energy Astrophysical Phenomena +0901.1020 Phenomenology +0901.1172 Phenomenology +0901.1192 Phenomenology +0901.1198 Phenomenology +0901.1342 Statistics Theory +0901.1529 Cosmology and Nongalactic Astrophysics +0901.1597 Phenomenology +0901.1912 Experiment +0901.2256 High Energy Astrophysical Phenomena +0901.2284 Theory +0901.2641 Theory +0901.2664 Instrumentation and Methods for Astrophysics +0901.3442 Phenomenology +0901.3545 Phenomenology +0901.3578 Phenomenology +0901.3582 Phenomenology +0901.3660 Phenomenology +0901.3673 Phenomenology +0901.3766 Phenomenology +0901.3794 Phenomenology +0901.4508 Theory +0901.4773 Theory +0902.0170 Phenomenology +0902.0325 Phenomenology +0902.0335 Phenomenology +0902.0441 Phenomenology +0902.0464 Phenomenology +0902.0473 Phenomenology +0902.0477 Phenomenology +0902.0486 Phenomenology +0902.0502 Phenomenology +0902.0521 Phenomenology +0902.0593 Phenomenology +0902.0932 +0902.1015 Theory +0902.2148 Phenomenology +0902.2379 Phenomenology +0902.2393 Phenomenology +0902.2400 Phenomenology +0902.2445 Phenomenology +0902.2510 Phenomenology +0902.2760 Phenomenology +0902.2817 Phenomenology +0902.2849 Phenomenology +0902.2856 Phenomenology +0902.2857 Phenomenology +0902.2934 Phenomenology +0902.3108 High Energy Astrophysical Phenomena +0903.0815 +0903.1664 Lattice +0903.4151 Phenomenology +0903.4377 Cosmology and Nongalactic Astrophysics +0903.4485 Cosmology and Nongalactic Astrophysics +0903.4672 Cosmology and Nongalactic Astrophysics +0903.4685 Cosmology and Nongalactic Astrophysics +0903.4686 Cosmology and Nongalactic Astrophysics +0904.0006 Cosmology and Nongalactic Astrophysics +0904.2360 Theory +0904.3080 Experiment +0905.1068 Theory +0905.2502 +0906.0834 Strongly Correlated Electrons +0906.2103 Experiment +0906.3470 High Energy Astrophysical Phenomena +0906.3976 Quantum Gases +0906.5297 Cosmology and Nongalactic Astrophysics +0907.0251 High Energy Astrophysical Phenomena +0907.0675 Cosmology and Nongalactic Astrophysics +0907.1967 +0907.2162 +0907.3249 Theory +0907.3708 Physics and Society +0907.3774 Lattice +0907.4853 Materials Science +0907.4863 Computational Physics +0908.0679 Theory +0908.2594 Experiment +0908.2755 +0908.4201 Representation Theory +0909.1385 +0909.2091 Artificial Intelligence +0909.2329 Phenomenology +0909.4715 Category Theory +0909.5694 +0910.1498 Commutative Algebra +0910.3994 Probability +0910.5165 Quantum Gases +0910.5326 Phenomenology +0911.0135 Theory +0911.0206 Phenomenology +0911.0560 Phenomenology +0911.0697 Quantum Gases +0911.1005 Statistical Mechanics +0911.1978 Commutative Algebra +0911.2064 +0911.2626 +0911.3363 +0911.3737 +0911.3805 +0911.3889 +0911.4149 Mesoscale and Nanoscale Physics +0911.4867 Theory +0911.4903 Theory +0911.5052 Phenomenology +0911.5070 Theory +0911.5120 Phenomenology +0911.5141 Theory +0911.5281 Theory +0911.5316 Theory +0911.5317 +0911.5342 Theory +0911.5371 Superconductivity +0911.5517 Phenomenology +0911.5667 Information Theory +0912.0109 Mesoscale and Nanoscale Physics +0912.0403 Mesoscale and Nanoscale Physics +0912.0463 Theory +0912.0770 Mesoscale and Nanoscale Physics +0912.1330 +0912.1592 +0912.1663 Probability +0912.1725 +0912.1769 +0912.1823 +0912.1920 +0912.2123 Dynamical Systems +0912.2327 +0912.2384 +0912.2480 Analysis of PDEs +0912.2771 Theory +0912.2803 +0912.2950 Theory +0912.3212 Theory +0912.3274 Theory +0912.3279 Theory +0912.3411 Phenomenology +0912.3682 Superconductivity +0912.4128 Phenomenology +0912.4151 +0912.4338 Phenomenology +0912.4562 Phenomenology +0912.4563 +0912.4701 Phenomenology +0912.4744 +0912.4862 +0912.5123 +0912.5161 Phenomenology +0912.5198 Lattice +1001.0036 Neurons and Cognition +1001.0277 Astrophysics of Galaxies +1001.0807 Cosmology and Nongalactic Astrophysics +1001.0923 +1001.0946 +1001.1643 Representation Theory +1001.1686 Computer Science and Game Theory +1001.3354 Theory +1001.4882 Atomic Physics +1002.0636 Cosmology and Nongalactic Astrophysics +1002.0731 Mesoscale and Nanoscale Physics +1002.1145 Solar and Stellar Astrophysics +1002.2263 Materials Science +1002.2910 Materials Science +1002.3478 +1002.3836 +1002.4923 +1003.4299 Probability +1004.0713 Commutative Algebra +1004.0919 Complex Variables +1004.1077 Logic in Computer Science +1004.2544 Algebraic Geometry +1004.2586 +1004.2908 Computational Complexity +1004.2961 Number Theory +1004.3105 Data Structures and Algorithms +1004.3108 Data Structures and Algorithms +1004.3121 Solar and Stellar Astrophysics +1004.3151 Solar and Stellar Astrophysics +1004.3169 Number Theory +1004.3173 Mathematical Software +1004.3201 Mesoscale and Nanoscale Physics +1004.3286 Solar and Stellar Astrophysics +1004.3312 Quantum Algebra +1004.3320 Computational Geometry +1004.3323 Theory +1004.3332 Information Theory +1004.3334 Learning +1004.3335 Algebraic Geometry +1004.3351 Digital Libraries +1004.3354 Computational Physics +1004.3356 +1004.3357 Analysis of PDEs +1004.3359 +1004.3366 Number Theory +1004.3368 Phenomenology +1004.3371 Information Retrieval +1004.3374 Numerical Analysis +1004.3376 Commutative Algebra +1004.3379 +1004.3383 Complex Variables +1004.3384 Functional Analysis +1004.3385 Combinatorics +1004.3388 Complex Variables +1004.3389 High Energy Astrophysical Phenomena +1004.3390 Digital Libraries +1004.3393 Statistics Theory +1004.3394 Differential Geometry +1004.3395 Distributed, Parallel, and Cluster Computing +1004.3398 Computer Science and Game Theory +1004.3400 Chemical Physics +1004.3402 Group Theory +1004.3411 Combinatorics +1004.3413 Superconductivity +1004.3419 Differential Geometry +1004.3420 High Energy Astrophysical Phenomena +1004.3425 Physics and Society +1004.3431 Fluid Dynamics +1004.3435 Numerical Analysis +1004.3437 Biological Physics +1004.3438 Solar and Stellar Astrophysics +1004.3440 +1004.3451 +1004.3452 Networking and Internet Architecture +1004.3454 Solar and Stellar Astrophysics +1004.3462 Lattice +1004.3470 Combinatorics +1004.3472 Representation Theory +1004.3474 Instrumentation and Detectors +1004.3476 Methodology +1004.3480 Atmospheric and Oceanic Physics +1004.3486 Computational Geometry +1004.3489 Solar and Stellar Astrophysics +1004.3490 Solar and Stellar Astrophysics +1004.3494 Materials Science +1004.3503 Algebraic Geometry +1004.3505 Statistical Mechanics +1004.3507 Other Condensed Matter +1004.3516 Number Theory +1004.3517 Information Theory +1004.3518 Adaptation and Self-Organizing Systems +1004.3523 Optimization and Control +1004.3527 Multiagent Systems +1004.3528 General Physics +1004.3530 Probability +1004.3534 Other Computer Science +1004.3539 Data Structures and Algorithms +astro-ph/0001113 +astro-ph/0004260 +astro-ph/0108029 +astro-ph/0110024 +astro-ph/0111543 +astro-ph/0202444 +astro-ph/0203368 +astro-ph/0403163 +astro-ph/0412641 +astro-ph/0609593 +astro-ph/9506098 +astro-ph/9508066 +astro-ph/9604080 +astro-ph/9807258 +astro-ph/9811476 +astro-ph/9901410 +astro-ph/9904327 +astro-ph/9906454 +astro-ph/9907379 +hep-ph/0504062 Phenomenology +hep-ph/0610088 Phenomenology +hep-ph/9509410 Phenomenology +hep-ph/9909485 Phenomenology +math/0210022 Algebraic Topology +math/0303140 Algebraic Topology +math/0305267 Algebraic Topology +math/0702062 Quantum Algebra +q-bio/0609008 Neurons and Cognition +quant-ph/0408106 +0707.3317 Statistical Mechanics +0708.1114 +0711.4070 Probability +0712.3584 Combinatorics +0712.4118 Combinatorics +0803.1344 Differential Geometry +0805.4651 Geometric Topology +0808.0658 +0811.1136 Other Condensed Matter +0812.3861 Geometric Topology +0901.0947 Classical Analysis and ODEs +0901.4921 Optics +0902.1733 Machine Learning +0903.2640 Medical Physics +0903.3282 Other Condensed Matter +0903.4015 Materials Science +0904.3991 Representation Theory +0905.1638 Physics and Society +0905.2094 +0906.4079 Statistical Mechanics +0906.5270 Geometric Topology +0907.3283 +0907.3985 Cosmology and Nongalactic Astrophysics +0907.4500 Phenomenology +0907.4540 Analysis of PDEs +0909.0203 Probability +0909.0589 Logic +0909.3388 Combinatorics +0909.3888 Soft Condensed Matter +0909.5346 Metric Geometry +0910.1458 +0910.1579 Mesoscale and Nanoscale Physics +0910.2021 +0910.2760 Materials Science +0911.0345 Mesoscale and Nanoscale Physics +0911.2097 Logic +0911.2332 Optics +0911.5095 Phenomenology +0912.1557 Phenomenology +0912.4911 Theory +0912.5494 Graphics +1001.0836 +1001.1765 Soft Condensed Matter +1001.1801 Superconductivity +1001.1898 Soft Condensed Matter +1001.2123 Algebraic Geometry +1001.2202 Soft Condensed Matter +1001.2215 +1001.5387 Solar and Stellar Astrophysics +1002.0026 Information Theory +1002.1376 Cosmology and Nongalactic Astrophysics +1002.2944 General Physics +1002.3186 Optics +1003.0424 +1003.0558 Phenomenology +1003.1529 Soft Condensed Matter +1003.2653 +1003.4317 Differential Geometry +1003.4907 Superconductivity +1003.5403 General Physics +1004.0949 Solar and Stellar Astrophysics +1004.1910 Phenomenology +1004.2137 Superconductivity +1004.2845 Superconductivity +1004.3155 Physics and Society +1004.4027 Methodology +1005.0733 Statistical Mechanics +1005.1078 Phenomenology +1005.1281 Group Theory +1005.1925 Cryptography and Security +1005.2021 Superconductivity +1005.2465 Sound +1005.3169 Materials Science +1005.4894 Analysis of PDEs +1005.5334 Theory +1006.0007 High Energy Astrophysical Phenomena +1006.0057 High Energy Astrophysical Phenomena +1006.3828 Algebraic Geometry +1006.4652 Physics and Society +1006.4886 Mesoscale and Nanoscale Physics +1006.5442 Software Engineering +1006.5922 Cryptography and Security +1006.5945 Computer Vision and Pattern Recognition +1007.0117 General Mathematics +1007.0444 Fluid Dynamics +1007.0445 Classical Analysis and ODEs +1007.0449 Information Theory +1007.0450 Differential Geometry +1007.0451 Differential Geometry +1007.0452 Analysis of PDEs +1007.0454 Analysis of PDEs +1007.0455 Phenomenology +1007.0456 Analysis of PDEs +1007.0465 Information Theory +1007.0471 Other Quantitative Biology +1007.0472 History and Philosophy of Physics +1007.0475 High Energy Astrophysical Phenomena +1007.0477 Differential Geometry +1007.0480 Other Condensed Matter +1007.0481 Information Theory +1007.0484 Learning +1007.0490 Phenomenology +1007.0496 Information Theory +1007.0499 Machine Learning +1007.0501 Data Structures and Algorithms +1007.0503 +1007.0508 Algebraic Geometry +1007.0513 +1007.0514 Probability +1007.0517 +1007.0523 Logic in Computer Science +1007.0524 Solar and Stellar Astrophysics +1007.0526 Combinatorics +1007.0527 Differential Geometry +1007.0532 Logic +1007.0534 Logic +1007.0536 +1007.0537 Group Theory +1007.0541 Group Theory +1007.0542 Digital Libraries +1007.0547 Computer Vision and Pattern Recognition +1007.0552 Group Theory +1007.0554 +1007.0558 Chemical Physics +1007.0568 Group Theory +1007.0569 Probability +1007.0572 Statistical Mechanics +1007.0576 Probability +1007.0577 Mesoscale and Nanoscale Physics +1007.0581 Chaotic Dynamics +1007.0585 Soft Condensed Matter +1007.0593 Number Theory +1007.0595 Cosmology and Nongalactic Astrophysics +1007.0603 Artificial Intelligence +1007.0604 Artificial Intelligence +1007.0605 Fluid Dynamics +1007.0607 Algebraic Geometry +1007.0610 Risk Management +1007.0614 Artificial Intelligence +1007.0618 Computer Vision and Pattern Recognition +1007.0619 Cryptography and Security +1007.0620 Computer Vision and Pattern Recognition +1007.0621 Computer Vision and Pattern Recognition +1007.0622 Populations and Evolution +1007.0626 Computer Vision and Pattern Recognition +1007.0627 Computer Vision and Pattern Recognition +1007.0628 Computer Vision and Pattern Recognition +1007.0630 Geophysics +1007.0631 Computer Vision and Pattern Recognition +1007.0632 Algebraic Topology +1007.0633 Computer Vision and Pattern Recognition +1007.0636 Computer Vision and Pattern Recognition +1007.0637 Artificial Intelligence +1007.0638 Computer Vision and Pattern Recognition +1007.0650 Quantum Gases +1007.0652 Probability +1007.0653 Probability +1007.0655 Combinatorics +1007.0660 Learning +1007.0663 Differential Geometry +1007.0664 +1007.0666 Algebraic Geometry +1007.0667 +1007.0672 Dynamical Systems +1007.0683 Other Computer Science +1007.0687 Probability +1007.0690 Artificial Intelligence +1007.0698 Instrumentation and Detectors +1007.0706 Phenomenology +1007.0713 Spectral Theory +1007.0717 Physics and Society +1007.0723 Probability +1007.0726 Materials Science +1007.0730 Networking and Internet Architecture +1007.0731 Logic +1007.0732 +1007.0738 Probability +1007.0740 Analysis of PDEs +cond-mat/0102514 Materials Science +cond-mat/0103377 Statistical Mechanics +cond-mat/0210663 Materials Science +cond-mat/0611712 Statistical Mechanics +cond-mat/0612147 Statistical Mechanics +cond-mat/0612231 Statistical Mechanics +gr-qc/0411131 +physics/0605214 History and Philosophy of Physics +0711.4485 Algebraic Geometry +0712.2624 +0801.2363 Materials Science +0802.1129 +0802.3458 Statistics Theory +0803.1662 Dynamical Systems +0803.1867 Geometric Topology +0803.3948 Combinatorics +0807.0546 Strongly Correlated Electrons +0809.2981 Combinatorics +0809.4297 Probability +0810.2734 Group Theory +0812.0863 Other Condensed Matter +0812.2417 +0901.2156 Geometric Topology +0901.3706 Symbolic Computation +0903.2617 History and Overview +0903.3229 Atomic Physics +0904.2193 Analysis of PDEs +0904.2811 Dynamical Systems +0905.2494 Phenomenology +0905.4321 +0906.4002 +0906.4953 Theory +0906.5122 +0907.2016 Analysis of PDEs +0909.2541 Number Theory +0909.5577 Optimization and Control +0910.5307 Classical Physics +0911.3437 Classical Analysis and ODEs +0911.4106 Number Theory +0911.4755 Cosmology and Nongalactic Astrophysics +0912.0649 Differential Geometry +0912.3037 Materials Science +0912.4036 +0912.4039 +0912.5467 Methodology +0912.5487 Materials Science +1001.0782 Fluid Dynamics +1001.1288 Instrumentation and Methods for Astrophysics +1001.1304 Instrumentation and Methods for Astrophysics +1001.2594 Statistical Mechanics +1001.2931 Distributed, Parallel, and Cluster Computing +1001.3826 Populations and Evolution +1001.4619 Analysis of PDEs +1001.5169 +1002.3392 Dynamical Systems +1003.1772 Astrophysics of Galaxies +1003.1989 High Energy Astrophysical Phenomena +1003.3914 Differential Geometry +1003.4978 Probability +1003.5842 Materials Science +1004.0122 Algebraic Geometry +1004.0334 Computer Science and Game Theory +1004.0532 Geometric Topology +1004.2091 Data Structures and Algorithms +1004.5211 +1005.0259 Strongly Correlated Electrons +1005.0312 Computation +1005.1253 Atomic Physics +1005.3226 +1005.4007 Combinatorics +1005.4081 Phenomenology +1005.4462 Theory +1005.5261 Fluid Dynamics +1005.5690 Quantum Gases +1006.0533 Soft Condensed Matter +1006.0743 Metric Geometry +1006.2008 Soft Condensed Matter +1006.2474 Strongly Correlated Electrons +1006.2636 Differential Geometry +1006.2824 Theory +1006.2897 Computational Complexity +1006.3011 Phenomenology +1006.4172 Phenomenology +1006.4361 +1006.5370 Strongly Correlated Electrons +1006.5398 Networking and Internet Architecture +1006.5607 Solar and Stellar Astrophysics +1007.0510 Superconductivity +1007.1352 Plasma Physics +1007.1853 Quantum Gases +1007.2373 +1007.2849 Mesoscale and Nanoscale Physics +1007.3913 Statistical Mechanics +1007.4911 Plasma Physics +1007.5236 Cosmology and Nongalactic Astrophysics +1008.0468 Quantum Gases +1008.0720 Theory +1008.2270 High Energy Astrophysical Phenomena +1008.3264 Quantum Gases +1008.3893 Physics and Society +1008.4621 Atomic Physics +1008.4664 Quantum Gases +1009.0535 +1009.0546 Statistical Mechanics +1009.1155 Mesoscale and Nanoscale Physics +1009.1715 Theory +1009.2010 Differential Geometry +1009.2355 Representation Theory +1009.2716 Superconductivity +1009.2888 Superconductivity +1009.3112 Mesoscale and Nanoscale Physics +1009.3114 Statistical Mechanics +1009.4704 Cosmology and Nongalactic Astrophysics +1009.4757 Computer Vision and Pattern Recognition +1009.5219 +1009.5913 Strongly Correlated Electrons +1009.6115 Disordered Systems and Neural Networks +1010.0846 Computational Complexity +1010.3520 Instrumentation and Detectors +1010.4628 Materials Science +1010.5902 Atomic Physics +1011.0505 Quantum Gases +1011.0893 Materials Science +1011.1037 Analysis of PDEs +1011.1048 Optics +1011.1429 Classical Analysis and ODEs +1011.1884 Cosmology and Nongalactic Astrophysics +1011.2030 Materials Science +1011.2917 Chemical Physics +1011.2981 Statistical Mechanics +1011.3400 History and Overview +1011.3419 Theory +1011.4654 Networking and Internet Architecture +1011.4901 Geometric Topology +1011.4941 Theory +1011.5075 Differential Geometry +1011.5134 Soft Condensed Matter +1011.5432 Phenomenology +1011.5488 Phenomenology +1011.5499 Other Computer Science +1011.5514 Analysis of PDEs +1011.5517 Optimization and Control +1011.5520 Representation Theory +1011.5521 Mesoscale and Nanoscale Physics +1011.5541 Earth and Planetary Astrophysics +1011.5542 Accelerator Physics +1011.5544 Earth and Planetary Astrophysics +1011.5545 Cryptography and Security +1011.5556 +1011.5559 Mesoscale and Nanoscale Physics +1011.5560 Phenomenology +1011.5565 Representation Theory +1011.5566 Information Theory +1011.5567 Cryptography and Security +1011.5568 Distributed, Parallel, and Cluster Computing +1011.5569 +1011.5577 Instrumentation and Methods for Astrophysics +1011.5583 Instrumentation and Methods for Astrophysics +1011.5584 Soft Condensed Matter +1011.5586 Analysis of PDEs +1011.5589 +1011.5590 +1011.5602 Cosmology and Nongalactic Astrophysics +1011.5610 Computer Science and Game Theory +1011.5615 Quantum Gases +1011.5620 +1011.5631 Applications +1011.5640 Programming Languages +1011.5649 Phenomenology +1011.5652 Geometric Topology +1011.5655 Earth and Planetary Astrophysics +1011.5656 Other Computer Science +1011.5661 Other Computer Science +1011.5662 Earth and Planetary Astrophysics +1011.5668 Learning +1011.5678 Phenomenology +1011.5680 Analysis of PDEs +1011.5681 Analysis of PDEs +1011.5682 Solar and Stellar Astrophysics +1011.5683 Differential Geometry +1011.5686 Probability +1011.5687 Logic +1011.5691 Probability +1011.5695 Spectral Theory +1011.5699 Information Theory +1011.5701 Strongly Correlated Electrons +1011.5702 Experiment +1011.5703 +1011.5707 Algebraic Topology +1011.5708 Theory +1011.5710 Quantum Gases +1011.5711 Group Theory +1011.5713 General Physics +1011.5718 Statistics Theory +1011.5719 Classical Analysis and ODEs +1011.5722 Statistics Theory +1011.5725 Soft Condensed Matter +1011.5728 Classical Analysis and ODEs +1011.5729 Statistics Theory +1011.5734 Statistics Theory +1011.5737 Populations and Evolution +1011.5742 Strongly Correlated Electrons +1011.5747 Statistics Theory +1011.5757 Statistics Theory +1011.5760 Experiment +1011.5763 Classical Analysis and ODEs +1011.5764 General Physics +1011.5769 Representation Theory +1011.5774 +1011.5775 Statistics Theory +1011.5778 Formal Languages and Automata Theory +1011.5779 Statistics Theory +1011.5781 Analysis of PDEs +1011.5784 Classical Analysis and ODEs +1011.5792 Statistics Theory +1011.5796 Solar and Stellar Astrophysics +1011.5798 Earth and Planetary Astrophysics +1011.5807 +1011.5815 Combinatorics +1011.5818 Superconductivity +1011.5829 High Energy Astrophysical Phenomena +1011.5834 Solar and Stellar Astrophysics +1011.5836 Group Theory +1011.5841 Combinatorics +1011.5844 Optics +1011.5851 Combinatorics +1011.5857 Phenomenology +1011.5863 Analysis of PDEs +1011.5866 Neural and Evolutionary Computing +1011.5870 Combinatorics +1011.5875 Theory +1011.5876 Instrumentation and Methods for Astrophysics +astro-ph/0411005 +astro-ph/9809120 +cond-mat/0402324 Materials Science +cond-mat/0509561 Materials Science +hep-th/0010084 Theory +hep-th/0210095 Theory +math-ph/0610045 +math/0603276 Differential Geometry +math/0605024 Number Theory +physics/0503099 Physics and Society +quant-ph/0508147 +0705.4146 General Physics +0706.3074 Geophysics +0706.3906 Fluid Dynamics +0706.4128 Geophysics +0706.4130 Geophysics +0707.3965 General Physics +0710.2663 Geometric Topology +0712.2047 Fluid Dynamics +0801.0926 Classical Physics +0802.0738 Information Theory +0802.0823 Information Theory +0803.0980 Complex Variables +0804.2490 Differential Geometry +0804.2492 Differential Geometry +0804.3906 +0806.1999 +0807.0022 Probability +0807.1429 Complex Variables +0807.1593 Dynamical Systems +0807.1684 Optimization and Control +0808.0021 Strongly Correlated Electrons +0809.4323 Category Theory +0810.0497 +0810.1274 General Physics +0810.3909 +0811.3038 Algebraic Geometry +0812.3141 Statistics Theory +0812.5007 Strongly Correlated Electrons +0901.1241 Probability +0901.3581 Probability +0903.4268 +0903.5259 Logic in Computer Science +0904.0635 Computation +0904.1996 Mesoscale and Nanoscale Physics +0906.0633 Algebraic Geometry +0906.1126 Discrete Mathematics +0906.1407 Quantum Algebra +0906.1853 +0906.2052 Strongly Correlated Electrons +0906.4308 Dynamical Systems +0906.5499 Functional Analysis +0907.2983 Operator Algebras +0907.5151 Statistics Theory +0907.5587 Phenomenology +0908.2715 Classical Physics +0909.2952 Materials Science +0909.4013 Programming Languages +0909.4115 +0909.4599 +0909.4654 Mesoscale and Nanoscale Physics +0910.1018 Numerical Analysis +0910.1166 Trading and Market Microstructure +0910.1643 Computational Geometry +0910.4917 Strongly Correlated Electrons +0911.0444 High Energy Astrophysical Phenomena +0911.1244 Analysis of PDEs +0911.1507 Networking and Internet Architecture +0911.1509 Networking and Internet Architecture +0911.4564 Quantum Gases +0911.4661 Quantum Gases +0911.5117 Computational Finance +0911.5524 Information Theory +0912.0442 Group Theory +0912.3500 Statistical Mechanics +0912.3600 Dynamical Systems +1001.1208 Optimization and Control +1001.3929 Number Theory +1001.4690 Mesoscale and Nanoscale Physics +1002.0481 Computation and Language +1002.0821 Materials Science +1002.1183 Probability +1002.1804 Dynamical Systems +1002.4015 Quantum Gases +1003.0374 Algebraic Geometry +1003.0734 Chaotic Dynamics +1003.1211 Earth and Planetary Astrophysics +1003.2119 Phenomenology +1003.2738 Mesoscale and Nanoscale Physics +1003.3912 Atomic Physics +1003.4572 Other Condensed Matter +1003.4856 Dynamical Systems +1004.1011 +1004.1070 Statistical Mechanics +1004.1688 Superconductivity +1004.2543 Mesoscale and Nanoscale Physics +1004.2589 +1004.3290 Astrophysics of Galaxies +1005.1552 Soft Condensed Matter +1005.3675 +1005.4479 Solar and Stellar Astrophysics +1006.0364 +1006.1152 +1006.1746 Computer Science and Game Theory +1006.2282 Probability +1006.2283 Logic in Computer Science +1006.2285 Medical Physics +1006.2287 Statistics Theory +1006.2293 Soft Condensed Matter +1006.2297 Group Theory +1006.2601 Numerical Analysis +1006.2604 Optics +1006.2611 Probability +1006.2613 Dynamical Systems +1006.2620 Statistics Theory +1006.2688 Experiment +1006.2900 Probability +1006.2901 Rings and Algebras +1006.2902 Discrete Mathematics +1006.2980 Statistics Theory +1006.3009 Distributed, Parallel, and Cluster Computing +1006.3140 Logic in Computer Science +1006.3921 Numerical Analysis +1006.4769 Probability +1006.4996 Numerical Analysis +1006.5224 Soft Condensed Matter +1006.5226 Robotics +1007.0641 Distributed, Parallel, and Cluster Computing +1007.0646 Algebraic Geometry +1007.1240 Mesoscale and Nanoscale Physics +1007.1277 +1007.1326 Quantum Gases +1007.1786 General Mathematics +1007.2817 Pricing of Securities +1007.3004 Soft Condensed Matter +1007.3564 Learning +1007.3627 Astrophysics of Galaxies +1007.4031 Molecular Networks +1007.4391 Operator Algebras +1007.4560 Theory +1007.4565 Probability +1007.4566 +1007.4567 Analysis of PDEs +1007.4568 High Energy Astrophysical Phenomena +1007.4570 Metric Geometry +1007.4576 Instrumentation and Detectors +1007.4583 Cell Behavior +1007.4584 Combinatorics +1007.4585 Phenomenology +1007.4590 Number Theory +1007.4595 General Physics +1007.4600 Instrumentation and Methods for Astrophysics +1007.4604 Information Theory +1007.4606 Cryptography and Security +1007.4609 Strongly Correlated Electrons +1007.4618 +1007.4621 Number Theory +1007.4626 Functional Analysis +1007.4633 Probability +1007.4641 Algebraic Geometry +1007.4642 +1007.4645 +1007.4651 Probability +1007.4654 +1007.4656 +1007.4660 Computational Complexity +1007.4661 Functional Analysis +1007.4666 Other Condensed Matter +1007.4678 +1007.4679 Operator Algebras +1007.4684 Probability +1007.4686 Mesoscale and Nanoscale Physics +1007.4689 Probability +1007.4692 Functional Analysis +1007.4702 Plasma Physics +1007.4706 Combinatorics +1007.4707 Neural and Evolutionary Computing +1007.4724 Networking and Internet Architecture +1007.4725 Number Theory +1007.4736 Algebraic Geometry +1007.4745 High Energy Astrophysical Phenomena +1007.4748 Information Retrieval +1007.4756 Adaptation and Self-Organizing Systems +1007.4757 General Mathematics +1007.4765 Phenomenology +1007.4771 Spectral Theory +1007.4779 Probability +1007.4781 Phenomenology +1007.4784 Combinatorics +1007.4786 +1007.4788 Astrophysics of Galaxies +1007.4792 Metric Geometry +1007.4799 Solar and Stellar Astrophysics +1007.4801 Information Theory +1007.4804 Functional Analysis +1007.4806 Probability +cond-mat/0003140 +cond-mat/0010049 Strongly Correlated Electrons +cond-mat/0105404 Strongly Correlated Electrons +cond-mat/0109065 Strongly Correlated Electrons +cond-mat/0112240 Strongly Correlated Electrons +cond-mat/0306100 Strongly Correlated Electrons +cond-mat/0306373 Strongly Correlated Electrons +cond-mat/0309202 Strongly Correlated Electrons +cond-mat/0310662 Strongly Correlated Electrons +cond-mat/0312724 Strongly Correlated Electrons +cond-mat/0409533 Materials Science +cond-mat/0410040 Other Condensed Matter +cond-mat/0504375 Strongly Correlated Electrons +cond-mat/0511266 Strongly Correlated Electrons +cond-mat/9907309 +funct-an/9408004 Functional Analysis +math/0505120 Spectral Theory +math/0607336 Complex Variables +math/0701268 Analysis of PDEs +physics/0703240 Fluid Dynamics +quant-ph/0411167 +0704.0029 Phenomenology +0707.0452 +0707.1338 Number Theory +0707.3316 Representation Theory +0707.4213 Algebraic Topology +0710.1758 Superconductivity +0710.1900 +0710.3565 +0711.0361 Symplectic Geometry +0711.1642 Symplectic Geometry +0711.4469 Theory +0712.2788 Analysis of PDEs +0801.0745 Theory +0804.4344 +0805.0174 Quantum Algebra +0805.1929 +0805.3586 Superconductivity +0805.4829 Algebraic Geometry +0806.0508 Number Theory +0808.3915 Representation Theory +0809.1328 Differential Geometry +0809.2352 Algebraic Geometry +0809.3113 +0809.4944 +0810.2576 Phenomenology +0810.3080 Phenomenology +0810.3239 Phenomenology +0810.3314 Phenomenology +0810.3341 Phenomenology +0810.3481 Phenomenology +0810.4029 Atmospheric and Oceanic Physics +0810.4222 Experiment +0810.4448 Lattice +0810.5379 Phenomenology +0811.2482 Group Theory +0812.0069 +0812.0980 Phenomenology +0812.1057 Phenomenology +0812.1067 Phenomenology +0812.1114 Phenomenology +0812.1170 Phenomenology +0812.1264 Theory +0812.1337 Phenomenology +0812.1347 Phenomenology +0812.1365 Phenomenology +0812.1818 Theory +0812.2244 +0812.2249 +0812.2731 Phenomenology +0812.3031 Phenomenology +0812.3087 Theory +0812.3119 Phenomenology +0901.2100 Phenomenology +0901.2110 Phenomenology +0901.2608 +0901.3191 +0901.3457 Phenomenology +0901.3485 Phenomenology +0902.0628 Phenomenology +0902.0688 Phenomenology +0902.0749 Phenomenology +0902.0972 Phenomenology +0902.1316 Phenomenology +0902.1720 Phenomenology +0902.1722 Phenomenology +0902.1778 Phenomenology +0902.1791 Phenomenology +0902.1825 Phenomenology +0902.1893 Phenomenology +0902.1927 Phenomenology +0902.1998 Phenomenology +0902.2000 Phenomenology +0902.2062 Phenomenology +0902.2325 Phenomenology +0902.2331 Phenomenology +0902.2348 +0902.2552 +0902.3213 +0902.4046 Lattice +0903.0067 +0903.3076 Accelerator Physics +0903.3194 History and Philosophy of Physics +0903.3879 Phenomenology +0903.3974 Phenomenology +0903.4042 Phenomenology +0903.4049 Phenomenology +0903.4159 Theory +0904.1993 Theory +0904.2394 Cosmology and Nongalactic Astrophysics +0904.2424 Phenomenology +0904.2765 Theory +0904.3328 Cosmology and Nongalactic Astrophysics +0904.3818 +0905.3890 Combinatorics +0906.0513 Accelerator Physics +0906.0758 Computational Physics +0906.1063 +0906.4219 +0906.5066 Phenomenology +0907.3428 Phenomenology +0907.4103 +0908.1459 Soft Condensed Matter +0908.1462 Soft Condensed Matter +0908.1807 Strongly Correlated Electrons +0908.1991 Number Theory +0908.2917 Theory +0908.3103 Accelerator Physics +0908.3434 Phenomenology +0909.0120 +0909.0574 Superconductivity +0909.1267 +0909.2136 Optics +0909.2221 Phenomenology +0909.3206 Phenomenology +0909.3487 +0909.3957 Phenomenology +0909.4428 Mesoscale and Nanoscale Physics +0909.5312 +0910.0190 Experiment +0910.0392 +0910.1811 Strongly Correlated Electrons +0910.5531 Phenomenology +0911.1392 Theory +0911.1428 +0911.2312 Materials Science +0911.2546 Theory +0911.3020 +0911.3617 Geometric Topology +0911.4317 Phenomenology +0911.4658 Combinatorics +0911.4736 Phenomenology +0911.4739 Phenomenology +0911.4742 Phenomenology +0911.4808 +0911.5260 Algebraic Geometry +0911.5360 Theory +0911.5477 Mesoscale and Nanoscale Physics +0912.0231 Theory +0912.0899 Phenomenology +0912.0973 High Energy Astrophysical Phenomena +0912.1036 Phenomenology +0912.1166 Theory +0912.1249 Astrophysics of Galaxies +0912.1260 Theory +0912.2183 Atomic Physics +0912.2917 Lattice +0912.3291 +0912.3438 Theory +0912.3521 Phenomenology +0912.3763 Optics +0912.3801 Strongly Correlated Electrons +0912.3816 Cosmology and Nongalactic Astrophysics +0912.4175 Solar and Stellar Astrophysics +0912.4200 Instrumentation and Detectors +0912.4534 Phenomenology +0912.4599 Phenomenology +0912.4628 Phenomenology +0912.4679 Theory +0912.4721 Cosmology and Nongalactic Astrophysics +0912.4785 Phenomenology +0912.4852 +0912.4917 Phenomenology +0912.5064 Phenomenology +0912.5141 Cosmology and Nongalactic Astrophysics +0912.5223 Theory +0912.5440 Theory +0912.5531 High Energy Astrophysical Phenomena +1001.0122 Mesoscale and Nanoscale Physics +1001.0723 Information Theory +1001.1641 Lattice +1001.2467 Data Analysis, Statistics and Probability +1001.3908 Information Theory +1002.1668 Superconductivity +1002.2750 Solar and Stellar Astrophysics +1002.2939 Algebraic Topology +1003.2675 Information Theory +1003.3793 Superconductivity +1004.0506 Chaotic Dynamics +1004.1451 Numerical Analysis +1004.2003 Artificial Intelligence +1004.2307 Quantum Algebra +1004.2329 Atmospheric and Oceanic Physics +1004.3137 Theory +1004.3141 +1004.3244 Functional Analysis +1004.3338 Geometric Topology +1004.3755 Information Theory +1004.3792 Functional Analysis +1004.3795 Disordered Systems and Neural Networks +1004.3800 Analysis of PDEs +1004.3802 Category Theory +1004.3806 Information Theory +1004.3809 Multiagent Systems +1004.3810 Superconductivity +1004.3814 Learning +1004.3821 Probability +1004.3823 Earth and Planetary Astrophysics +1004.3824 Distributed, Parallel, and Cluster Computing +1004.3825 Rings and Algebras +1004.3829 K-Theory and Homology +1004.3830 Computational Finance +1004.3837 Biological Physics +1004.3841 Mesoscale and Nanoscale Physics +1004.3843 Genomics +1004.3849 +1004.3855 Differential Geometry +1004.3856 Exactly Solvable and Integrable Systems +1004.3857 Probability +1004.3867 Dynamical Systems +1004.3868 Atomic Physics +1004.3878 Information Theory +1004.3879 Solar and Stellar Astrophysics +1004.3886 Materials Science +1004.3895 Computation +1004.3899 Theory +1004.3904 Algebraic Geometry +1004.3911 Astrophysics of Galaxies +1004.3915 Algebraic Geometry +1004.3922 Algebraic Topology +1004.3924 Materials Science +1004.3931 Dynamical Systems +1004.3935 Rings and Algebras +1004.3946 Numerical Analysis +1004.3951 Quantitative Methods +1004.3958 +1004.3964 Combinatorics +1004.3970 Combinatorics +1004.3972 Theory +1004.3973 Group Theory +1004.3977 Mesoscale and Nanoscale Physics +1004.3980 Computer Vision and Pattern Recognition +1004.3996 Solar and Stellar Astrophysics +astro-ph/0001499 +astro-ph/0407398 +astro-ph/0510272 +astro-ph/0609691 +astro-ph/0612073 +astro-ph/9508085 +astro-ph/9912382 +cond-mat/0404016 Statistical Mechanics +hep-ph/0702123 Phenomenology +math-ph/0011026 +math/0211462 Quantum Algebra +math/0306114 Quantum Algebra +math/0612111 General Mathematics +math/0703246 Number Theory +math/9806062 Quantum Algebra +math/9904179 Symplectic Geometry +quant-ph/0703179 +quant-ph/9809045 +0706.2658 Mesoscale and Nanoscale Physics +0708.1895 Materials Science +0709.2826 Phenomenology +0711.4698 Dynamical Systems +0802.4255 Number Theory +0806.1210 Combinatorics +0807.0115 Dynamical Systems +0807.1208 Probability +0808.0458 Theory +0808.2308 Number Theory +0809.4617 Soft Condensed Matter +0810.0885 Classical Analysis and ODEs +0810.5618 Differential Geometry +0811.2653 Combinatorics +0901.2687 Networking and Internet Architecture +0904.1600 Group Theory +0905.0065 Group Theory +0906.0510 Probability +0906.3717 Phenomenology +0908.3704 Spectral Theory +0909.0043 Adaptation and Self-Organizing Systems +0910.0609 Functional Analysis +0911.4563 Analysis of PDEs +0911.5181 +0912.1589 Quantum Gases +0912.3803 Quantum Gases +0912.3895 +0912.5122 Analysis of PDEs +1001.1053 Other Condensed Matter +1001.2101 Data Structures and Algorithms +1001.3660 Strongly Correlated Electrons +1001.5233 Quantum Gases +1002.2355 Atomic Physics +1002.4671 Mesoscale and Nanoscale Physics +1003.1776 Complex Variables +1003.3284 Materials Science +1003.5659 Astrophysics of Galaxies +1004.1807 Theory +1004.2501 Cosmology and Nongalactic Astrophysics +1004.3132 Atomic Physics +1004.3224 Experiment +1004.5417 Earth and Planetary Astrophysics +1005.1536 Solar and Stellar Astrophysics +1005.2513 Analysis of PDEs +1005.4208 Cosmology and Nongalactic Astrophysics +1005.5710 Quantum Gases +1006.1630 Superconductivity +1006.1737 Statistical Mechanics +1006.2658 Strongly Correlated Electrons +1006.3323 Chemical Physics +1006.3909 Distributed, Parallel, and Cluster Computing +1006.4068 +1006.4336 Earth and Planetary Astrophysics +1006.4793 Logic in Computer Science +1006.5047 Networking and Internet Architecture +1006.5283 Materials Science +1006.5462 Classical Physics +1006.5467 Fluid Dynamics +1006.5469 Populations and Evolution +1006.5473 Risk Management +1006.5478 Spectral Theory +1006.5486 Earth and Planetary Astrophysics +1006.5488 Combinatorics +1006.5493 Computer Science and Game Theory +1006.5497 Biological Physics +1006.5498 Medical Physics +1006.5499 Medical Physics +1006.5502 Cryptography and Security +1006.5503 Number Theory +1006.5504 Differential Geometry +1006.5505 Adaptation and Self-Organizing Systems +1006.5516 Logic in Computer Science +1006.5525 +1006.5527 Soft Condensed Matter +1006.5537 Soft Condensed Matter +1006.5539 +1006.5542 Functional Analysis +1006.5545 Probability +1006.5550 High Energy Astrophysical Phenomena +1006.5551 Functional Analysis +1006.5557 Complex Variables +1006.5564 +1006.5565 Phenomenology +1006.5572 Distributed, Parallel, and Cluster Computing +1006.5575 Applications +1006.5577 Solar and Stellar Astrophysics +1006.5578 Phenomenology +1006.5590 Analysis of PDEs +1006.5592 Materials Science +1006.5601 Phenomenology +1006.5602 Probability +1006.5604 Probability +1006.5621 Discrete Mathematics +1006.5622 Probability +1006.5623 Analysis of PDEs +1006.5627 +1006.5629 Classical Physics +1006.5630 +1006.5634 Phenomenology +1006.5636 Rings and Algebras +1006.5638 Atmospheric and Oceanic Physics +1006.5641 Atmospheric and Oceanic Physics +1006.5642 Chemical Physics +1006.5643 Distributed, Parallel, and Cluster Computing +1006.5644 Analysis of PDEs +1006.5647 Mesoscale and Nanoscale Physics +1006.5657 Artificial Intelligence +1006.5659 Experiment +1006.5661 Distributed, Parallel, and Cluster Computing +1006.5662 General Physics +1006.5668 Materials Science +1006.5677 Pattern Formation and Solitons +1006.5682 +1006.5688 Dynamical Systems +1006.5690 Other Statistics +1006.5700 Differential Geometry +1006.5706 Combinatorics +math/0510545 Representation Theory +math/0602486 Dynamical Systems +math/0701170 Representation Theory +quant-ph/0608053 +0704.3441 +0706.3575 Superconductivity +0708.0163 Phenomenology +0709.3046 Phenomenology +0712.2889 Phenomenology +0712.3798 Phenomenology +0802.2973 Phenomenology +0804.2291 +0804.4009 Other Condensed Matter +0805.4303 Statistical Mechanics +0806.2378 Other Condensed Matter +0807.0421 Probability +0807.1971 Phenomenology +0807.4790 Number Theory +0808.0014 Lattice +0808.1017 Lattice +0808.1672 Lattice +0808.1791 Lattice +0808.1796 Lattice +0808.2121 Lattice +0808.2875 Lattice +0808.2919 Lattice +0808.3049 Lattice +0808.4046 Lattice +0809.0412 Lattice +0809.0655 Lattice +0809.0721 Lattice +0809.0879 Lattice +0809.1010 Lattice +0809.1219 Lattice +0809.1220 Lattice +0809.1629 Lattice +0809.2176 Lattice +0809.2834 Lattice +0809.3251 Lattice +0809.3923 Lattice +0809.3933 Lattice +0809.3964 Lattice +0809.4431 Lattice +0809.4502 Lattice +0809.4514 Lattice +0809.4535 Lattice +0809.4769 Lattice +0809.4888 Lattice +0809.4890 Lattice +0809.5015 Lattice +0809.5049 Lattice +0809.5050 Lattice +0809.5086 Lattice +0809.5134 Lattice +0809.5202 Lattice +0809.5227 Lattice +0809.5228 Lattice +0809.5259 Lattice +0810.0085 Lattice +0810.0136 Lattice +0810.0144 Lattice +0810.0161 Lattice +0810.0253 Lattice +0810.0285 Lattice +0810.0290 Lattice +0810.0300 Lattice +0810.0329 Lattice +0810.0375 Lattice +0810.0431 Lattice +0810.0496 Lattice +0810.0730 Lattice +0810.0899 Lattice +0810.0946 Lattice +0810.0956 Lattice +0810.1079 Lattice +0810.1131 Lattice +0810.1220 Lattice +0810.1239 Lattice +0810.1302 Lattice +0810.1311 Lattice +0810.1315 Lattice +0810.1360 Lattice +0810.1469 Lattice +0810.1559 Lattice +0810.1570 Lattice +0810.1669 Lattice +0810.1719 Lattice +0810.1764 Lattice +0810.1792 Lattice +0810.1845 Lattice +0810.1954 Lattice +0810.2159 Lattice +0810.2252 Lattice +0810.2331 Lattice +0810.2360 Lattice +0810.2468 Lattice +0810.2482 Lattice +0810.2833 Lattice +0810.2873 Lattice +0810.3066 Lattice +0810.3117 Lattice +0810.3241 Lattice +0810.3547 Lattice +0810.3548 Lattice +0810.3722 Lattice +0810.3765 Lattice +0810.3807 Lattice +0810.3866 Lattice +0810.3982 Lattice +0810.4131 Lattice +0810.4178 Lattice +0810.4223 Lattice +0810.4328 Lattice +0810.4447 Lattice +0810.4477 Lattice +0810.4585 Phenomenology +0810.4742 Lattice +0810.4836 Commutative Algebra +0810.5337 Lattice +0810.5458 Lattice +0810.5512 Lattice +0810.5550 Lattice +0811.0426 Lattice +0811.0535 Lattice +0811.0724 Lattice +0811.1257 Lattice +0811.1400 Lattice +0811.1402 Instrumentation and Detectors +0811.1661 Lattice +0811.1931 Lattice +0811.2025 Lattice +0811.2111 Lattice +0811.2112 Lattice +0811.2212 Lattice +0811.2355 Lattice +0811.2429 Lattice +0811.2630 Lattice +0811.3013 Materials Science +0811.3858 Lattice +0811.4146 Lattice +0812.0085 Lattice +0812.0092 Lattice +0812.0570 Lattice +0812.0673 Lattice +0812.1235 Lattice +0812.1270 +0812.1368 Lattice +0812.1680 Lattice +0812.1872 Lattice +0812.3206 Lattice +0812.3845 Lattice +0812.4265 Lattice +0812.4486 Lattice +0901.1433 Theory +0901.1939 Theory +0901.2595 Lattice +0901.3018 Lattice +0901.3163 Lattice +0901.3296 Lattice +0901.3422 Instrumentation and Detectors +0901.4128 Lattice +0901.4877 High Energy Astrophysical Phenomena +0902.1251 Lattice +0902.1401 High Energy Astrophysical Phenomena +0902.1972 Theory +0902.2587 Lattice +0902.2677 Astrophysics of Galaxies +0902.2796 Lattice +0902.2944 Lattice +0902.3103 Strongly Correlated Electrons +0902.3662 Phenomenology +0903.0874 Lattice +0903.1154 Lattice +0903.2085 +0903.2947 Lattice +0903.3527 Astrophysics of Galaxies +0903.3691 Phenomenology +0903.4096 +0903.4201 Phenomenology +0903.4687 Instrumentation and Methods for Astrophysics +0903.5497 Lattice +0904.1299 Digital Libraries +0904.1330 Differential Geometry +0904.1728 Theory +0904.2646 Phenomenology +0904.4256 Cosmology and Nongalactic Astrophysics +0905.1822 +0905.2119 Theory +0905.2389 Theory +0905.2894 Lattice +0905.3835 Strongly Correlated Electrons +0905.4178 Phenomenology +0905.4913 Combinatorics +0906.1754 Theory +0906.2254 Representation Theory +0906.2762 +0906.3134 +0906.3663 Theory +0906.4112 Theory +0906.4268 General Physics +0906.4866 Algebraic Geometry +0907.0667 Phenomenology +0907.0860 Theory +0907.0967 Strongly Correlated Electrons +0907.1563 Algebraic Geometry +0907.1640 Theory +0907.2557 +0907.3066 Number Theory +0907.3450 Data Analysis, Statistics and Probability +0907.3506 Phenomenology +0907.3587 Phenomenology +0907.3902 Theory +0907.3912 Commutative Algebra +0907.4133 Phenomenology +0907.4807 Soft Condensed Matter +0907.4811 Soft Condensed Matter +0907.5597 Physics Education +0908.0121 Theory +0908.0324 Phenomenology +0908.1578 Phenomenology +0908.1784 Theory +0908.2546 Theory +0908.2702 Cosmology and Nongalactic Astrophysics +0908.2991 Phenomenology +0908.3395 Probability +0908.3913 Materials Science +0908.3990 Strongly Correlated Electrons +0909.0271 Theory +0909.0414 Other Condensed Matter +0909.0475 Cosmology and Nongalactic Astrophysics +0909.0728 Quantum Gases +0909.0845 Quantum Gases +0909.1299 Phenomenology +0909.2412 Phenomenology +0909.2724 Number Theory +0909.3477 Theory +0909.3777 Fluid Dynamics +0909.4859 Probability +0909.5226 Theory +0910.0677 Phenomenology +0910.0849 Theory +0910.2308 Mesoscale and Nanoscale Physics +0910.2811 +0910.4763 Strongly Correlated Electrons +0910.4811 +0910.5111 Computational Physics +0911.0754 Mesoscale and Nanoscale Physics +0911.1930 Statistical Mechanics +0911.4255 Solar and Stellar Astrophysics +0911.4450 Theory +0912.0123 Mesoscale and Nanoscale Physics +0912.1882 Mesoscale and Nanoscale Physics +0912.2706 Human-Computer Interaction +1001.1056 Superconductivity +1001.1226 Materials Science +1001.1811 Cosmology and Nongalactic Astrophysics +1001.2929 Algebraic Geometry +1001.3112 Mesoscale and Nanoscale Physics +1001.3206 Information Theory +1001.3214 Phenomenology +1001.3246 Neural and Evolutionary Computing +1001.3277 Information Retrieval +1001.3403 Information Theory +1001.3405 Networking and Internet Architecture +1001.3426 Analysis of PDEs +1001.3427 Analysis of PDEs +1001.3429 Classical Analysis and ODEs +1001.3431 Phenomenology +1001.3434 Analysis of PDEs +1001.3439 Networking and Internet Architecture +1001.3442 Combinatorics +1001.3449 Populations and Evolution +1001.3450 Algebraic Geometry +1001.3451 Networking and Internet Architecture +1001.3464 Logic in Computer Science +1001.3466 Combinatorics +1001.3471 Representation Theory +1001.3472 Solar and Stellar Astrophysics +1001.3474 Representation Theory +1001.3476 Information Theory +1001.3486 Information Theory +1001.3490 +1001.3506 Accelerator Physics +1001.3507 Accelerator Physics +1001.3510 Accelerator Physics +1001.3513 Combinatorics +1001.3517 +1001.3527 Soft Condensed Matter +1001.3528 Metric Geometry +1001.3532 Classical Physics +1001.3534 Combinatorics +1001.3535 Differential Geometry +1001.3536 +1001.3537 +1001.3538 Popular Physics +1001.3540 Biomolecules +1001.3544 Accelerator Physics +1001.3546 Geometric Topology +1001.3549 Materials Science +1001.3554 Phenomenology +1001.3557 Probability +1001.3558 Probability +1001.3560 General Physics +1001.3562 Complex Variables +1001.3566 +1001.3573 Number Theory +1001.3574 General Physics +1001.3575 +1001.3582 Optimization and Control +1001.3586 Populations and Evolution +1001.3589 Instrumentation and Methods for Astrophysics +1001.3595 Theory +1001.3604 Software Engineering +1001.3610 Algebraic Geometry +1001.3618 Superconductivity +1001.3624 Instrumentation and Detectors +1001.3633 +1001.3637 Experiment +1001.3638 Populations and Evolution +1001.3640 Lattice +1001.3643 +1001.3645 Superconductivity +1001.3651 Cosmology and Nongalactic Astrophysics +1001.3654 Differential Geometry +1001.3656 +1001.3663 Digital Libraries +1001.3666 Numerical Analysis +1001.3667 Chemical Physics +cond-mat/0201142 Strongly Correlated Electrons +cs/0006046 Data Structures and Algorithms +cs/0107023 Computational Geometry +cs/0108020 Computational Geometry +cs/9809037 Computational Geometry +cs/9809038 Computational Geometry +cs/9809081 Computational Geometry +cs/9809109 Computational Geometry +cs/9907001 Data Structures and Algorithms +cs/9907002 Discrete Mathematics +cs/9907030 Computational Geometry +cs/9907031 Computational Geometry +cs/9912013 Computational Geometry +cs/9912014 Data Structures and Algorithms +hep-ph/0403080 Phenomenology +hep-ph/0406175 Phenomenology +math/9907126 Combinatorics +math/9909152 Metric Geometry +q-bio/0403025 Neurons and Cognition +quant-ph/0509022 +1003.1131 +1003.1141 Computation and Language +1003.1148 Soft Condensed Matter +1003.1155 Adaptation and Self-Organizing Systems +1003.1162 Phenomenology +1003.1164 Computational Complexity +1003.1170 Statistics Theory +1003.1173 Phenomenology +1003.1179 Databases +1003.1181 Superconductivity +1003.1195 +1003.1196 Disordered Systems and Neural Networks +1003.1204 Populations and Evolution +1003.1207 Solar and Stellar Astrophysics +1003.1214 High Energy Astrophysical Phenomena +1003.1216 Analysis of PDEs +1003.1222 Solar and Stellar Astrophysics +1003.1231 Quantitative Methods +1003.1232 +1003.1233 Group Theory +1003.1239 Cryptography and Security +1003.1242 Quantum Algebra +1003.1243 Theory +1003.1246 Dynamical Systems +1003.1247 Strongly Correlated Electrons +1003.1248 +1003.1258 Differential Geometry +1003.1260 Data Structures and Algorithms +1003.1263 Differential Geometry +1003.1271 Soft Condensed Matter +1003.1272 Analysis of PDEs +1003.1273 Combinatorics +1003.1278 Classical Analysis and ODEs +1003.1279 Earth and Planetary Astrophysics +1003.1281 Functional Analysis +1003.1297 +1003.1318 Materials Science +1003.1322 Combinatorics +1003.1325 Methodology +1003.1332 History and Overview +1003.1333 Phenomenology +1003.1335 Geometric Topology +1003.1337 Representation Theory +0704.0947 +0704.3377 +0705.3085 Operator Algebras +0706.0356 Classical Analysis and ODEs +0706.3233 +0707.2052 Algebraic Geometry +0707.3460 +0708.2664 +0709.3792 +0710.5565 Rings and Algebras +0711.4131 +0801.0384 +0801.0641 Chaotic Dynamics +0801.1541 Algebraic Geometry +0801.1843 +0802.3139 Classical Physics +0802.3990 +0803.3453 +0804.1192 +0804.2293 +0804.3172 Algebraic Geometry +0804.3207 +0804.3598 Theory +0804.3719 Accelerator Physics +0804.4770 Experiment +0805.1932 +0805.2337 +0806.4771 Probability +0807.0001 +0807.1090 Functional Analysis +0808.1892 Theory +0809.0227 Plasma Physics +0809.1054 Atomic Physics +0810.0731 Analysis of PDEs +0810.2688 Statistics Theory +0810.3070 Probability +0810.4038 Plasma Physics +0811.3863 Superconductivity +0812.4506 General Physics +0901.1611 Cosmology and Nongalactic Astrophysics +0901.1701 Superconductivity +0901.2276 Theory +0901.4683 Combinatorics +0902.0210 Complex Variables +0902.2607 High Energy Astrophysical Phenomena +0902.4282 Differential Geometry +0903.0871 Cosmology and Nongalactic Astrophysics +0903.1246 Phenomenology +0903.1764 +0903.3222 Theory +0903.3567 Plasma Physics +0903.5207 Theory +0904.0938 Theory +0904.3045 Rings and Algebras +0904.3541 +0904.4171 Theory +0904.4763 Plasma Physics +0905.1668 Theory +0905.2284 Theory +0905.2528 Plasma Physics +0905.2568 +0905.3218 History and Philosophy of Physics +0905.4235 Cosmology and Nongalactic Astrophysics +0905.4463 Theory +0905.4623 Data Analysis, Statistics and Probability +0905.4718 Differential Geometry +0905.4756 Theory +0906.0657 Theory +0906.2883 Computational Physics +0906.4115 Astrophysics of Galaxies +0906.4175 +0906.4558 Theory +0906.4679 Algebraic Geometry +0906.4981 +0907.3069 High Energy Astrophysical Phenomena +0907.3995 +0907.4569 Phenomenology +0907.5185 Lattice +0907.5512 Strongly Correlated Electrons +0908.0420 Other Condensed Matter +0908.2027 Phenomenology +0908.2766 Phenomenology +0908.4234 +0908.4513 Quantum Gases +0909.1233 +0909.2034 Phenomenology +0909.2487 +0909.3064 Theory +0909.3525 Theory +0909.5378 Instrumentation and Detectors +0909.5556 +0910.0073 Theory +0910.0307 Phenomenology +0910.0909 Dynamical Systems +0910.0930 Theory +0910.1150 +0910.2425 +0910.2624 Materials Science +0910.3375 Theory +0910.3624 Phenomenology +0910.3709 Theory +0910.3774 Theory +0910.4507 Distributed, Parallel, and Cluster Computing +0910.4510 Distributed, Parallel, and Cluster Computing +0910.4614 +0910.4868 +0910.5162 Theory +0910.5272 Physics and Society +0910.5314 Theory +0910.5905 Other Condensed Matter +0910.5915 Theory +0911.0973 +0911.1035 Theory +0911.1063 Theory +0911.1411 Phenomenology +0911.1563 Theory +0911.1868 Phenomenology +0911.2462 Phenomenology +0911.2635 Lattice +0911.2688 Theory +0911.3396 Cosmology and Nongalactic Astrophysics +0911.3597 +0911.3697 +0911.3730 Phenomenology +0911.3795 Phenomenology +0911.4403 Phenomenology +0911.4603 Theory +0911.4799 Phenomenology +0911.4999 Theory +0911.5077 Theory +0911.5480 +0912.0125 Theory +0912.0206 Lattice +0912.0262 Phenomenology +0912.0494 Optimization and Control +0912.0598 Superconductivity +0912.0724 Strongly Correlated Electrons +0912.0781 Phenomenology +0912.1169 Commutative Algebra +0912.1546 +0912.1596 Theory +0912.1651 Strongly Correlated Electrons +0912.1680 Phenomenology +0912.1844 Theory +0912.1943 Cosmology and Nongalactic Astrophysics +0912.2141 Biomolecules +0912.2677 +0912.3125 +0912.3199 Theory +0912.3289 Theory +0912.3461 Computational Engineering, Finance, and Science +0912.3523 Phenomenology +0912.3735 Phenomenology +0912.3877 +0912.3942 Phenomenology +0912.3992 +0912.4011 +0912.4025 Phenomenology +0912.4082 Theory +0912.4150 Phenomenology +0912.4392 Theory +0912.4500 Experiment +0912.4652 Phenomenology +0912.4795 Analysis of PDEs +0912.5061 Phenomenology +0912.5311 +0912.5363 +0912.5368 +0912.5384 +0912.5509 Phenomenology +1001.0400 Phenomenology +1001.0702 Phenomenology +1001.0996 Phenomenology +1001.1102 +1001.1109 Biological Physics +1001.1344 Theory +1001.1676 Instrumentation and Detectors +1001.2178 Theory +1001.2201 Mesoscale and Nanoscale Physics +1001.2869 Phenomenology +1001.3202 Experiment +1001.3548 Phenomenology +1001.4421 +1001.4613 Cosmology and Nongalactic Astrophysics +1001.4820 Phenomenology +1001.4985 +1001.5165 Phenomenology +1001.5380 +1002.0279 Phenomenology +1002.0551 Astrophysics of Galaxies +1002.0834 Cosmology and Nongalactic Astrophysics +1002.0849 Cosmology and Nongalactic Astrophysics +1002.0872 Solar and Stellar Astrophysics +1002.0947 Mesoscale and Nanoscale Physics +1002.0964 Mesoscale and Nanoscale Physics +1002.1219 Theory +1002.1311 Cosmology and Nongalactic Astrophysics +1002.1659 Theory +1002.1693 +1002.1814 Other Condensed Matter +1002.1824 Strongly Correlated Electrons +1002.2042 Cosmology and Nongalactic Astrophysics +1002.2239 Cosmology and Nongalactic Astrophysics +1002.2653 Phenomenology +1002.2763 Phenomenology +1002.3035 Neurons and Cognition +1002.3783 Experiment +1002.4161 Lattice +1002.4184 +1002.4358 Experiment +1002.4779 Cosmology and Nongalactic Astrophysics +1003.0037 Mesoscale and Nanoscale Physics +1003.0192 Statistical Mechanics +1003.0386 Earth and Planetary Astrophysics +1003.0409 Cosmology and Nongalactic Astrophysics +1003.0485 +1003.0673 Cosmology and Nongalactic Astrophysics +1003.0984 Mesoscale and Nanoscale Physics +1003.1177 +1003.1276 Phenomenology +1003.1686 +1003.1825 +1003.2280 Dynamical Systems +1003.3695 +1003.3809 Theory +1003.4188 Phenomenology +1003.4821 +1003.5122 +1003.5394 +1003.5617 Algebraic Topology +1003.5917 Theory +1004.0102 +1004.0247 Statistical Mechanics +1004.0679 +1004.1556 +1004.1921 Astrophysics of Galaxies +1004.2014 +1004.2944 +1004.3102 +1004.3231 Cosmology and Nongalactic Astrophysics +1004.3497 Other Condensed Matter +1004.3733 Combinatorics +1004.3838 High Energy Astrophysical Phenomena +1004.3969 Atomic Physics +1004.4436 Mesoscale and Nanoscale Physics +1004.5280 Phenomenology +1005.0297 Materials Science +1005.0794 Machine Learning +1005.1896 Phenomenology +1005.2641 General Physics +1005.3250 +1005.3273 +1005.3428 Superconductivity +1005.3597 Combinatorics +1005.3777 Plasma Physics +1005.4067 Dynamical Systems +1005.4073 Functional Analysis +1005.4079 Combinatorics +1005.4086 Statistical Mechanics +1005.4094 Methodology +1005.4097 Statistical Mechanics +1005.4100 +1005.4101 Algebraic Geometry +1005.4103 Computer Vision and Pattern Recognition +1005.4104 Probability +1005.4106 Strongly Correlated Electrons +1005.4109 Analysis of PDEs +1005.4110 Computational Physics +1005.4111 Group Theory +1005.4112 General Physics +1005.4117 Computational Physics +1005.4119 Optics +1005.4120 Biological Physics +1005.4123 Software Engineering +1005.4124 Probability +1005.4131 Probability +1005.4133 Phenomenology +1005.4139 Probability +1005.4140 General Mathematics +1005.4143 Strongly Correlated Electrons +1005.4145 +1005.4146 Populations and Evolution +1005.4147 Solar and Stellar Astrophysics +1005.4152 Number Theory +1005.4154 Mesoscale and Nanoscale Physics +1005.4162 Combinatorics +1005.4163 Combinatorics +1005.4167 Rings and Algebras +1005.4168 Rings and Algebras +1005.4169 +1005.4177 Plasma Physics +1005.4181 Accelerator Physics +1005.4184 Fluid Dynamics +1005.4187 Algebraic Geometry +1005.4190 General Physics +1005.4192 Plasma Physics +1005.4197 Strongly Correlated Electrons +1005.4200 Information Theory +1005.4202 Computational Physics +1005.4203 Algebraic Geometry +1005.4205 Complex Variables +1005.4212 +1005.4216 Computer Vision and Pattern Recognition +1005.4218 Classical Analysis and ODEs +1005.4233 Number Theory +1005.4239 Analysis of PDEs +1005.4254 Commutative Algebra +1005.4255 Soft Condensed Matter +1005.4256 Combinatorics +1005.4258 Combinatorics +1005.4261 Physics and Society +1005.4262 Networking and Internet Architecture +1005.4263 Multiagent Systems +1005.4264 Cryptography and Security +1005.4265 Other Computer Science +1005.4266 Cryptography and Security +1005.4267 Multimedia +1005.4268 Networking and Internet Architecture +1005.4269 Phenomenology +1005.4270 Information Retrieval +1005.4271 Software Engineering +1005.4272 Artificial Intelligence +1005.4275 Probability +1005.4278 Commutative Algebra +1005.4285 Disordered Systems and Neural Networks +1005.4289 Representation Theory +1005.4290 Other Computer Science +1005.4292 Computer Vision and Pattern Recognition +1005.4293 Number Theory +1005.4300 +1005.4301 Molecular Networks +1005.4302 High Energy Astrophysical Phenomena +1005.4307 +1005.4309 Quantum Algebra +1005.4314 +1005.4316 Information Theory +1005.4317 Classical Analysis and ODEs +1005.4319 Functional Analysis +1005.4323 Solar and Stellar Astrophysics +1005.4325 Materials Science +1005.4326 High Energy Astrophysical Phenomena +1005.4329 Methodology +1005.4331 Algebraic Geometry +1005.4335 Populations and Evolution +1005.4337 Networking and Internet Architecture +1005.4341 Theory +1005.4344 Data Structures and Algorithms +1005.4346 Geometric Topology +1005.4351 +1005.4354 Materials Science +1005.4357 Probability +1005.4358 Methodology +1005.4361 Cosmology and Nongalactic Astrophysics +1005.4362 +1005.4363 Software Engineering +1005.4364 Representation Theory +1005.4372 Combinatorics +1005.4379 Logic in Computer Science +1005.4381 Cosmology and Nongalactic Astrophysics +1005.4382 Differential Geometry +1005.4385 Methodology +1005.4389 Medical Physics +1005.4395 Mathematical Software +1005.4398 Instrumentation and Detectors +1005.4404 Functional Analysis +astro-ph/0002453 +astro-ph/0107056 +astro-ph/0108225 +astro-ph/0509753 +astro-ph/0510355 +astro-ph/0610717 +astro-ph/0610779 +astro-ph/0702193 +astro-ph/0703281 +astro-ph/0703598 +astro-ph/9803118 +hep-ph/0312086 Phenomenology +hep-ph/0702194 Phenomenology +math/0203092 Analysis of PDEs +math/0402091 Combinatorics +math/0405551 Group Theory +math/0411298 Statistics Theory +math/0505078 Number Theory +math/0505124 Classical Analysis and ODEs +0707.0095 Probability +0708.4262 Algebraic Topology +0709.1598 Functional Analysis +0709.2901 Probability +0709.3186 Optimization and Control +0709.4350 Algebraic Geometry +0710.4980 +0801.3602 Mesoscale and Nanoscale Physics +0803.4338 Differential Geometry +0804.4231 +0806.0705 Adaptation and Self-Organizing Systems +0807.2127 Combinatorics +0808.1158 Superconductivity +0809.2833 Representation Theory +0811.4466 +0812.0118 Adaptation and Self-Organizing Systems +0812.0263 Geometric Topology +0812.2961 Soft Condensed Matter +0812.4352 Materials Science +0901.0105 Algebraic Topology +0901.0197 Representation Theory +0901.0599 Theory +0902.0707 Soft Condensed Matter +0903.1006 Solar and Stellar Astrophysics +0904.0154 Numerical Analysis +0904.1523 Numerical Analysis +0904.4259 +0904.4662 Phenomenology +0906.4883 Classical Analysis and ODEs +0906.5385 Probability +0907.2419 Statistical Mechanics +0908.4282 Phenomenology +0909.1914 Superconductivity +0909.2217 +0909.2824 Group Theory +0909.3578 +0909.4648 Optimization and Control +0909.4994 Group Theory +0909.5432 +0910.1389 Analysis of PDEs +0910.2642 Mesoscale and Nanoscale Physics +0910.3582 General Physics +0910.5008 Algebraic Geometry +0910.5523 Algebraic Geometry +0911.1768 Methodology +0911.1818 Strongly Correlated Electrons +0911.3266 +0912.0673 Phenomenology +0912.3505 +0912.4040 Algebraic Geometry +0912.4381 +1001.0361 Computers and Society +1001.1065 Combinatorics +1001.2304 Cosmology and Nongalactic Astrophysics +1001.3583 +1001.3988 Algebraic Geometry +1001.5346 Numerical Analysis +1001.5434 High Energy Astrophysical Phenomena +1002.1028 Astrophysics of Galaxies +1002.1494 +1002.2235 Soft Condensed Matter +1002.2655 Information Theory +1003.0861 Cosmology and Nongalactic Astrophysics +1003.2053 Optics +1003.2387 Materials Science +1003.3411 Classical Analysis and ODEs +1003.3696 Other Condensed Matter +1003.4226 +1004.1492 Quantum Algebra +1004.2379 +1004.3301 +1004.4110 +1004.5030 Materials Science +1004.5540 Information Theory +1005.0773 Mesoscale and Nanoscale Physics +1005.1672 Materials Science +1005.3244 Populations and Evolution +1005.4062 High Energy Astrophysical Phenomena +1005.4428 +1005.4744 Statistical Mechanics +1005.5202 Functional Analysis +1006.0602 Strongly Correlated Electrons +1006.1195 Mesoscale and Nanoscale Physics +1006.1715 Group Theory +1006.2199 Strongly Correlated Electrons +1006.3162 Mesoscale and Nanoscale Physics +1006.3176 Algebraic Geometry +1006.3884 Strongly Correlated Electrons +1006.4842 High Energy Astrophysical Phenomena +1006.4983 Mesoscale and Nanoscale Physics +1006.5960 Theory +1007.0358 Number Theory +1007.1435 Statistical Mechanics +1007.1534 Quantum Gases +1007.1884 +1007.2131 Logic in Computer Science +1007.2480 Combinatorics +1007.3468 Cosmology and Nongalactic Astrophysics +1007.3491 Mesoscale and Nanoscale Physics +1007.4376 Statistical Mechanics +1007.5020 Complex Variables +1008.0159 Strongly Correlated Electrons +1008.0718 Chaotic Dynamics +1008.1245 Category Theory +1008.2791 Statistical Mechanics +1008.3754 Strongly Correlated Electrons +1008.3943 Classical Analysis and ODEs +1008.4103 Cosmology and Nongalactic Astrophysics +1008.4327 Superconductivity +1009.0096 Algebraic Geometry +1009.1637 Classical Analysis and ODEs +1009.3812 Mesoscale and Nanoscale Physics +1009.4660 Soft Condensed Matter +1009.5759 Formal Languages and Automata Theory +1009.6016 Atomic and Molecular Clusters +1010.0246 Theory +1010.1320 Classical Analysis and ODEs +1010.1558 Accelerator Physics +1010.2097 Mesoscale and Nanoscale Physics +1010.2429 Differential Geometry +1010.2572 Physics and Society +1010.2696 Analysis of PDEs +1010.2801 Classical Analysis and ODEs +1010.2871 Computer Science and Game Theory +1010.3239 General Mathematics +1010.3568 Instrumentation and Methods for Astrophysics +1010.3665 Complex Variables +1010.4208 Numerical Analysis +1010.4509 Phenomenology +1010.4810 Chaotic Dynamics +1010.4812 Computer Science and Game Theory +1010.4823 Astrophysics of Galaxies +1010.4832 +1010.4833 Astrophysics of Galaxies +1010.4838 General Topology +1010.4841 Algebraic Topology +1010.4845 Networking and Internet Architecture +1010.4847 Combinatorics +1010.4848 Popular Physics +1010.4854 Information Theory +1010.4859 Classical Analysis and ODEs +1010.4865 Cryptography and Security +1010.4867 Superconductivity +1010.4870 +1010.4873 History and Philosophy of Physics +1010.4879 Probability +1010.4880 Materials Science +1010.4887 Networking and Internet Architecture +1010.4888 Materials Science +1010.4893 Computer Vision and Pattern Recognition +1010.4894 Functional Analysis +1010.4897 Number Theory +1010.4898 Rings and Algebras +1010.4901 K-Theory and Homology +1010.4903 Statistical Mechanics +1010.4910 Theory +1010.4911 Information Theory +1010.4912 +1010.4917 Statistical Finance +1010.4918 Quantum Gases +1010.4922 +1010.4925 Data Structures and Algorithms +1010.4926 +1010.4929 Algebraic Topology +1010.4930 Optimization and Control +1010.4931 +1010.4933 +1010.4934 Computers and Society +1010.4935 +1010.4944 Classical Physics +1010.4945 Machine Learning +1010.4949 Solar and Stellar Astrophysics +1010.4952 Distributed, Parallel, and Cluster Computing +1010.4953 Logic in Computer Science +1010.4957 Quantum Algebra +1010.4960 Differential Geometry +1010.4963 Phenomenology +1010.4965 Statistical Mechanics +1010.4970 General Topology +1010.4971 Data Analysis, Statistics and Probability +1010.4973 Differential Geometry +1010.4974 Differential Geometry +1010.4976 Quantum Algebra +1010.4981 Probability +1010.4982 Strongly Correlated Electrons +1010.4987 Computational Finance +1010.4988 Portfolio Management +1010.4989 Computational Finance +1010.4990 Statistical Finance +1010.4991 Dynamical Systems +1010.4997 Instrumentation and Methods for Astrophysics +1010.4999 Adaptation and Self-Organizing Systems +1010.5002 K-Theory and Homology +1010.5003 Solar and Stellar Astrophysics +1010.5006 Theory +1010.5010 Materials Science +1010.5011 +1010.5012 Analysis of PDEs +1010.5016 Data Structures and Algorithms +1010.5018 Cosmology and Nongalactic Astrophysics +1010.5019 Populations and Evolution +1010.5024 Analysis of PDEs +1010.5031 +1010.5032 +1010.5034 Cryptography and Security +1010.5036 Cryptography and Security +1010.5037 Other Computer Science +1010.5040 Methodology +1010.5041 Materials Science +1010.5046 Methodology +1010.5054 High Energy Astrophysical Phenomena +1010.5060 Complex Variables +1010.5063 Soft Condensed Matter +1010.5066 Commutative Algebra +1010.5069 Fluid Dynamics +1010.5079 Combinatorics +1010.5086 Materials Science +1010.5088 Optics +1010.5091 Methodology +1010.5095 Methodology +1010.5102 Optics +1010.5105 Statistics Theory +1010.5107 +1010.5110 Theory +1010.5115 Representation Theory +1010.5117 Operator Algebras +1010.5122 +1010.5128 Networking and Internet Architecture +1010.5131 Analysis of PDEs +1010.5132 +1010.5142 Geophysics +1010.5144 Combinatorics +1010.5145 Dynamical Systems +1010.5150 General Mathematics +1010.5151 Solar and Stellar Astrophysics +1010.5152 +1010.5155 Combinatorics +1010.5156 Lattice +1010.5159 Combinatorics +1010.5160 Optimization and Control +1010.5162 Mesoscale and Nanoscale Physics +1010.5163 Information Theory +1010.5166 General Physics +1010.5168 Analysis of PDEs +1010.5171 Risk Management +1010.5172 Numerical Analysis +1010.5173 Analysis of PDEs +1010.5175 Materials Science +1010.5176 Cryptography and Security +1010.5177 General Physics +1010.5182 Analysis of PDEs +1010.5184 Classical Analysis and ODEs +1010.5190 Probability +1010.5192 Combinatorics +1010.5199 Materials Science +1010.5206 Combinatorics +1010.5207 Combinatorics +1010.5208 Combinatorics +1010.5210 Algebraic Geometry +1010.5214 +1010.5216 General Physics +1010.5226 +alg-geom/9703030 Algebraic Geometry +cond-mat/0604593 Materials Science +hep-ph/0605176 Phenomenology +math/0109070 Algebraic Geometry +math/0309324 Combinatorics +math/0502417 Algebraic Topology +math/0502438 Commutative Algebra +math/0505201 Algebraic Geometry +math/0610296 Algebraic Geometry +0712.1079 Representation Theory +0712.2636 Differential Geometry +0806.2950 Other Condensed Matter +0807.0798 Algebraic Geometry +0811.0449 General Physics +0811.3210 Theory +0812.4533 Theory +0901.0678 Dynamical Systems +0903.2174 Information Theory +0905.4770 Algebraic Geometry +0906.5090 Materials Science +0908.0887 Strongly Correlated Electrons +0910.1192 +0910.1675 Mesoscale and Nanoscale Physics +0910.2274 Theory +0910.2497 Methodology +0912.1206 Mesoscale and Nanoscale Physics +0912.4499 +0912.4876 Disordered Systems and Neural Networks +1001.1983 Mesoscale and Nanoscale Physics +1001.4761 Materials Science +1002.0777 Information Theory +1002.0823 Complex Variables +1002.0999 +1002.4082 Mesoscale and Nanoscale Physics +1002.4227 +1003.1218 Spectral Theory +1003.2340 Mesoscale and Nanoscale Physics +1003.3023 Superconductivity +1003.3832 Statistical Mechanics +1003.5216 Classical Analysis and ODEs +1003.5855 Mesoscale and Nanoscale Physics +1004.1715 Analysis of PDEs +1004.1955 Information Theory +1004.2416 Soft Condensed Matter +1004.4475 +1005.0265 Data Structures and Algorithms +1005.0969 Algebraic Geometry +1005.1246 Superconductivity +1005.2904 +1005.4122 Computational Complexity +1005.4667 Solar and Stellar Astrophysics +1005.5559 Differential Geometry +1006.0958 Materials Science +1006.1183 Networking and Internet Architecture +1006.1489 Geometric Topology +1006.1707 Materials Science +1006.2871 Methodology +1006.5277 Optimization and Control +1006.5685 Mesoscale and Nanoscale Physics +1007.0592 Statistical Mechanics +1007.0775 Complex Variables +1007.2527 Superconductivity +1007.2813 Superconductivity +1007.3085 Algebraic Geometry +1007.3965 Mesoscale and Nanoscale Physics +1007.3998 High Energy Astrophysical Phenomena +1007.4000 Statistical Mechanics +1007.5234 Functional Analysis +1008.0293 Analysis of PDEs +1008.0473 Number Theory +1008.0659 Artificial Intelligence +1008.0921 Experiment +1008.1014 Solar and Stellar Astrophysics +1008.1205 Instrumentation and Detectors +1008.1268 Representation Theory +1008.1270 Formal Languages and Automata Theory +1008.1274 Number Theory +1008.1277 Superconductivity +1008.1279 Phenomenology +1008.1280 Phenomenology +1008.1286 Rings and Algebras +1008.1289 Probability +1008.1295 Operator Algebras +1008.1300 Mesoscale and Nanoscale Physics +1008.1308 +1008.1309 Logic in Computer Science +1008.1311 Geometric Topology +1008.1312 +1008.1314 Strongly Correlated Electrons +1008.1316 Spectral Theory +1008.1321 Other Computer Science +1008.1322 Human-Computer Interaction +1008.1323 Phenomenology +1008.1324 Computer Science and Game Theory +1008.1326 Probability +1008.1327 Instrumentation and Detectors +1008.1328 Artificial Intelligence +1008.1329 Classical Analysis and ODEs +1008.1330 Other Computer Science +1008.1331 Other Computer Science +1008.1332 Analysis of PDEs +1008.1333 Artificial Intelligence +1008.1334 Other Computer Science +1008.1335 Information Retrieval +1008.1336 Other Computer Science +1008.1337 Databases +1008.1339 Databases +1008.1341 +1008.1342 Statistics Theory +1008.1343 Information Theory +1008.1345 Methodology +1008.1346 K-Theory and Homology +1008.1347 Rings and Algebras +1008.1352 Solar and Stellar Astrophysics +1008.1355 Computation +1008.1360 Discrete Mathematics +1008.1361 Materials Science +1008.1363 Materials Science +1008.1365 +1008.1367 Biological Physics +1008.1372 Networking and Internet Architecture +1008.1376 Physics and Society +1008.1380 Quantitative Methods +1008.1384 Quantum Algebra +1008.1386 Populations and Evolution +1008.1387 Information Theory +1008.1394 Information Retrieval +1008.1398 Learning +1008.1399 Category Theory +1008.1400 Quantum Algebra +1008.1402 General Topology +1008.1410 Neurons and Cognition +1008.1424 Mesoscale and Nanoscale Physics +1008.1427 Information Theory +1008.1435 Number Theory +1008.1436 Number Theory +1008.1438 Information Theory +1008.1442 Biological Physics +1008.1448 Superconductivity +1008.1452 Optics +1008.1455 Information Theory +1008.1462 Representation Theory +1008.1463 +1008.1468 Geometric Topology +1008.1473 Fluid Dynamics +1008.1480 Data Structures and Algorithms +1008.1481 Strongly Correlated Electrons +1008.1491 Theory +1008.1497 Phenomenology +1008.1498 Computational Complexity +1008.1501 Combinatorics +1008.1503 Group Theory +1008.1506 Probability +1008.1510 Probability +1008.1512 Probability +1008.1514 Combinatorics +1008.1519 +1008.1525 Numerical Analysis +1008.1553 Number Theory +1008.1554 Disordered Systems and Neural Networks +1008.1555 Computational Complexity +1008.1560 Astrophysics of Galaxies +1008.1565 Analysis of PDEs +1008.1570 Solar and Stellar Astrophysics +1008.1571 Performance +1008.1572 Classical Analysis and ODEs +1008.1573 Number Theory +cond-mat/0603039 Strongly Correlated Electrons +math/0506016 Symplectic Geometry +math/0609619 Geometric Topology +math/0610858 Combinatorics +0707.2880 +0709.0464 Plasma Physics +0711.1840 Complex Variables +0712.0813 Phenomenology +0712.3922 Mesoscale and Nanoscale Physics +0801.1438 Combinatorics +0801.2358 +0801.3703 Information Theory +0804.2629 Theory +0804.2713 Theory +0804.2839 Theory +0804.3063 Theory +0804.3072 Theory +0804.3180 Theory +0804.3229 Theory +0804.3236 Theory +0804.3305 Theory +0804.3438 Theory +0804.3469 Theory +0804.3506 Theory +0804.4169 Theory +0804.4295 Theory +0805.1546 Theory +0805.1917 Theory +0805.4682 Number Theory +0806.1493 +0806.2298 Phenomenology +0808.0910 Theory +0808.1639 +0808.2066 Theory +0808.2096 Theory +0808.2520 Theory +0808.2538 Theory +0808.2598 Theory +0808.2627 Theory +0808.2650 Theory +0808.2717 Theory +0808.2728 Theory +0808.2752 Theory +0809.1055 +0810.2997 Phenomenology +0810.5709 Materials Science +0811.1319 Artificial Intelligence +0811.2605 Classical Analysis and ODEs +0812.0488 Operator Algebras +0812.1177 Lattice +0812.4950 Phenomenology +0901.0759 Combinatorics +0901.0861 Materials Science +0901.2644 +0902.1146 Materials Science +0902.4048 Theory +0902.4353 Cosmology and Nongalactic Astrophysics +0902.4699 Cosmology and Nongalactic Astrophysics +0903.0131 Cosmology and Nongalactic Astrophysics +0903.0318 High Energy Astrophysical Phenomena +0903.2305 Mesoscale and Nanoscale Physics +0903.2702 Mesoscale and Nanoscale Physics +0903.2735 Optics +0903.5429 Probability +0904.0854 Number Theory +0904.1537 Phenomenology +0904.2056 Chemical Physics +0904.2186 Theory +0904.2548 Phenomenology +0904.4485 Phenomenology +0904.4503 Phenomenology +0904.4663 +0905.0858 Cosmology and Nongalactic Astrophysics +0905.1735 +0905.1817 Phenomenology +0905.1852 Phenomenology +0905.1874 Phenomenology +0905.2829 Mesoscale and Nanoscale Physics +0905.3032 Phenomenology +0905.3056 Phenomenology +0905.3116 Cosmology and Nongalactic Astrophysics +0905.3180 Phenomenology +0905.3187 Phenomenology +0905.3220 Phenomenology +0905.3234 Phenomenology +0905.3264 Phenomenology +0905.3323 Phenomenology +0905.3351 Phenomenology +0905.3355 Phenomenology +0905.3365 Phenomenology +0905.3403 Cosmology and Nongalactic Astrophysics +0905.3494 Cosmology and Nongalactic Astrophysics +0905.3534 Phenomenology +0905.3609 Phenomenology +0905.3711 Phenomenology +0905.3749 Phenomenology +0905.3921 Phenomenology +0905.3923 Phenomenology +0905.3987 Phenomenology +0905.4018 Phenomenology +0905.4069 Phenomenology +0905.4402 +0906.0535 Phenomenology +0906.1391 Commutative Algebra +0906.2710 Quantum Algebra +0906.4132 Phenomenology +0906.4159 Phenomenology +0906.4197 Phenomenology +0906.4312 Phenomenology +0906.4352 High Energy Astrophysical Phenomena +0906.4430 Cosmology and Nongalactic Astrophysics +0906.4501 Cosmology and Nongalactic Astrophysics +0906.4548 Cosmology and Nongalactic Astrophysics +0907.4343 Strongly Correlated Electrons +0908.0891 High Energy Astrophysical Phenomena +0910.2174 Experiment +0910.5709 Plasma Physics +0911.0550 Theory +0911.0865 Theory +0911.1578 Phenomenology +0911.1598 Phenomenology +0911.1622 Phenomenology +0911.1996 Phenomenology +0911.2030 Phenomenology +0911.2242 Phenomenology +0911.2254 Phenomenology +0911.2276 Phenomenology +0911.2298 Phenomenology +0911.2750 Optimization and Control +0911.2787 Phenomenology +0911.2789 Phenomenology +0911.3037 Phenomenology +0911.3984 Statistical Mechanics +0911.5299 Phenomenology +0911.5348 Phenomenology +0911.5502 Strongly Correlated Electrons +0912.0431 Logic +0912.1723 Theory +0912.2099 Phenomenology +0912.2104 Phenomenology +0912.2172 Phenomenology +0912.2179 Soft Condensed Matter +0912.2208 Phenomenology +0912.2410 Cosmology and Nongalactic Astrophysics +0912.2728 Cosmology and Nongalactic Astrophysics +0912.2736 +0912.2851 High Energy Astrophysical Phenomena +0912.3245 +0912.3287 Theory +0912.3435 Theory +0912.3605 Phenomenology +0912.3686 Phenomenology +0912.3792 Phenomenology +0912.3804 Phenomenology +0912.4016 +0912.4264 Phenomenology +0912.4300 Instrumentation and Detectors +0912.4507 Phenomenology +1001.0805 +1001.0966 +1001.0987 Phenomenology +1001.1089 Phenomenology +1001.1227 Theory +1001.1335 Phenomenology +1001.1378 Phenomenology +1001.1434 Phenomenology +1001.1636 Phenomenology +1001.1851 Phenomenology +1001.1952 Phenomenology +1001.2145 High Energy Astrophysical Phenomena +1001.2737 Phenomenology +1001.3650 +1001.3676 +1001.3704 Phenomenology +1001.3759 Phenomenology +1001.3789 Phenomenology +1001.3856 Phenomenology +1001.4059 +1001.4230 Phenomenology +1001.4432 Information Theory +1001.4448 Information Theory +1001.5384 Cosmology and Nongalactic Astrophysics +1002.0300 Mesoscale and Nanoscale Physics +1002.0841 Theory +1002.1003 +1002.1884 +1002.2215 Strongly Correlated Electrons +1002.2330 Materials Science +1002.3301 +1002.3309 +1002.4009 Phenomenology +1002.4043 Phenomenology +1002.4085 +1002.4132 +1002.4999 +1003.0077 +1003.0346 Phenomenology +1003.0419 Cosmology and Nongalactic Astrophysics +1003.0524 Materials Science +1003.1075 Statistical Mechanics +1003.1098 +1003.1139 Phenomenology +1003.1633 Instrumentation and Methods for Astrophysics +1003.1901 Phenomenology +1003.1911 +1003.3295 +1003.4231 Cosmology and Nongalactic Astrophysics +1003.5120 +1003.5576 Phenomenology +1003.5614 +1004.0154 Combinatorics +1004.0576 +1004.2647 Experiment +1004.2800 Mesoscale and Nanoscale Physics +1004.3615 Algebraic Topology +1004.3705 Superconductivity +1004.4290 Representation Theory +1004.4401 Geometric Topology +1004.4803 Superconductivity +1005.0246 Algebraic Geometry +1005.1635 Information Theory +1005.3525 Instrumentation and Detectors +1005.4078 Algebraic Geometry +1005.4206 Number Theory +1005.4801 Phenomenology +1005.4905 Plasma Physics +1005.4937 Complex Variables +1005.4948 Logic +1005.4949 Algebraic Geometry +1005.4950 Statistical Mechanics +1005.4954 Experiment +1005.4959 Combinatorics +1005.4963 Artificial Intelligence +1005.4964 Probability +1005.4970 Numerical Analysis +1005.4975 Software Engineering +1005.4976 General Finance +1005.4984 Networking and Internet Architecture +1005.4989 Artificial Intelligence +1005.4992 Medical Physics +1005.5001 Phenomenology +1005.5006 Statistical Mechanics +1005.5017 Strongly Correlated Electrons +1005.5020 Cryptography and Security +1005.5021 Statistical Finance +1005.5029 Theory +1005.5035 Robotics +1005.5040 Classical Analysis and ODEs +1005.5045 Software Engineering +1005.5054 Information Theory +1005.5059 Exactly Solvable and Integrable Systems +1005.5060 Computers and Society +1005.5061 Geometric Topology +1005.5062 Phenomenology +1005.5065 Information Theory +1005.5070 Exactly Solvable and Integrable Systems +1005.5077 Mesoscale and Nanoscale Physics +1005.5079 Strongly Correlated Electrons +1005.5080 Analysis of PDEs +1005.5085 Computation +1005.5086 Medical Physics +1005.5091 Instrumentation and Methods for Astrophysics +1005.5099 Soft Condensed Matter +1005.5101 Other Quantitative Biology +1005.5111 Group Theory +1005.5113 Strongly Correlated Electrons +1005.5114 Artificial Intelligence +1005.5115 Neural and Evolutionary Computing +1005.5116 Number Theory +1005.5118 Networking and Internet Architecture +1005.5122 Phenomenology +1005.5124 Artificial Intelligence +1005.5125 Networking and Internet Architecture +1005.5127 Probability +1005.5128 Probability +1005.5129 Other Computer Science +1005.5137 Sound +1005.5140 Functional Analysis +1005.5143 Dynamical Systems +1005.5147 Solar and Stellar Astrophysics +1005.5155 Metric Geometry +1005.5158 Combinatorics +astro-ph/0103244 +astro-ph/0106094 +astro-ph/0106405 +astro-ph/0106567 +astro-ph/0107260 +astro-ph/0107386 +cond-mat/0310692 Mesoscale and Nanoscale Physics +gr-qc/0103060 +gr-qc/0103085 +gr-qc/0103087 +gr-qc/0105113 +gr-qc/0106041 +gr-qc/0107002 +gr-qc/0608056 +hep-ex/0103017 Experiment +hep-ex/0103021 Experiment +hep-ex/0103032 Experiment +hep-ex/0103033 Experiment +hep-ex/0103034 Experiment +hep-ex/0103038 Experiment +hep-ex/0103040 Experiment +hep-ex/0103042 Experiment +hep-ex/0103043 Experiment +hep-ex/0103045 Experiment +hep-ex/0104004 Experiment +hep-ex/0104005 Experiment +hep-ex/0104009 Experiment +hep-ex/0104025 Experiment +hep-ex/0104026 Experiment +hep-ex/0104030 Experiment +hep-ex/0104032 Experiment +hep-ex/0104042 Experiment +hep-ex/0104043 Experiment +hep-ex/0104047 Experiment +hep-ex/0104051 Experiment +hep-ex/0105001 Experiment +hep-ex/0105002 Experiment +hep-ex/0105003 Experiment +hep-ex/0105011 Experiment +hep-ex/0105014 Experiment +hep-ex/0105037 Experiment +hep-ex/0105043 Experiment +hep-ex/0105046 Experiment +hep-ex/0105047 Experiment +hep-ex/0105061 Experiment +hep-ex/0105065 Experiment +hep-ex/0105066 Experiment +hep-ex/0105071 Experiment +hep-ex/0105072 Experiment +hep-ex/0105080 Experiment +hep-ex/0105086 Experiment +hep-ex/0106004 Experiment +hep-ex/0106006 Experiment +hep-ex/0106026 Experiment +hep-ex/0106031 Experiment +hep-ex/0106038 Experiment +hep-ex/0106044 Experiment +hep-ex/0106047 Experiment +hep-ex/0106048 Experiment +hep-ex/0106053 Experiment +hep-ex/0106059 Experiment +hep-ex/0106060 Experiment +hep-ex/0106068 Experiment +hep-ex/0106070 Experiment +hep-ex/0106078 Experiment +hep-ex/0106095 Experiment +hep-ex/0106100 Experiment +hep-ex/0106104 Experiment +hep-ex/0107005 Experiment +hep-ex/0107008 Experiment +hep-ex/0107012 Experiment +hep-ex/0107013 Experiment +hep-ex/0107016 Experiment +hep-ex/0107019 Experiment +hep-ex/0107021 Experiment +hep-ex/0107025 Experiment +hep-ex/0107038 Experiment +hep-ex/0107046 Experiment +hep-ex/0107047 Experiment +hep-ex/0107049 Experiment +hep-ex/0107061 Experiment +hep-ex/0107067 Experiment +hep-ex/0107068 Experiment +hep-ex/0107070 Experiment +hep-ex/0107071 Experiment +hep-ex/0107076 Experiment +hep-ex/0107077 Experiment +hep-ex/0108009 Experiment +hep-ex/0108010 Experiment +hep-lat/0104013 Lattice +hep-lat/0105027 Lattice +hep-lat/0106024 Lattice +hep-lat/0107023 Lattice +hep-lat/0108002 Lattice +hep-ph/0103121 Phenomenology +hep-ph/0103252 Phenomenology +hep-ph/0103258 Phenomenology +hep-ph/0103286 Phenomenology +hep-ph/0103294 Phenomenology +hep-ph/0103313 Phenomenology +hep-ph/0103314 Phenomenology +hep-ph/0103320 Phenomenology +hep-ph/0104001 Phenomenology +hep-ph/0104016 Phenomenology +hep-ph/0104062 Phenomenology +hep-ph/0104065 Phenomenology +hep-ph/0104088 Phenomenology +hep-ph/0104095 Phenomenology +hep-ph/0104110 Phenomenology +hep-ph/0104122 Phenomenology +hep-ph/0104126 Phenomenology +hep-ph/0104218 Phenomenology +hep-ph/0104289 Phenomenology +hep-ph/0104316 Phenomenology +hep-ph/0105012 Phenomenology +hep-ph/0105021 Phenomenology +hep-ph/0105029 Phenomenology +hep-ph/0105041 Phenomenology +hep-ph/0105089 Phenomenology +hep-ph/0105106 Phenomenology +hep-ph/0105128 Phenomenology +hep-ph/0105159 Phenomenology +hep-ph/0105177 Phenomenology +hep-ph/0105200 Phenomenology +hep-ph/0105204 Phenomenology +hep-ph/0105253 Phenomenology +hep-ph/0105261 Phenomenology +hep-ph/0106023 Phenomenology +hep-ph/0106081 Phenomenology +hep-ph/0106089 Phenomenology +hep-ph/0106108 Phenomenology +hep-ph/0106136 Phenomenology +hep-ph/0106139 Phenomenology +hep-ph/0106177 Phenomenology +hep-ph/0106190 Phenomenology +hep-ph/0106211 Phenomenology +hep-ph/0106223 Phenomenology +hep-ph/0106258 Phenomenology +hep-ph/0106288 Phenomenology +hep-ph/0106353 Phenomenology +hep-ph/0107048 Phenomenology +hep-ph/0107054 Phenomenology +hep-ph/0107074 Phenomenology +hep-ph/0107119 Phenomenology +hep-ph/0107138 Phenomenology +hep-ph/0107156 Phenomenology +hep-ph/0107201 Phenomenology +hep-ph/0107231 Phenomenology +hep-ph/0107324 Phenomenology +hep-ph/0107329 Phenomenology +hep-ph/0108043 Phenomenology +hep-ph/0109084 Phenomenology +hep-th/0103099 Theory +hep-th/0103171 Theory +hep-th/0103188 Theory +hep-th/0103196 Theory +hep-th/0103223 Theory +hep-th/0104042 Theory +hep-th/0104064 Theory +hep-th/0104105 Theory +hep-th/0104187 Theory +hep-th/0104195 Theory +hep-th/0104232 Theory +hep-th/0105047 Theory +hep-th/0105075 Theory +hep-th/0105097 Theory +hep-th/0105160 Theory +hep-th/0105208 Theory +hep-th/0105286 Theory +hep-th/0106024 Theory +hep-th/0106046 Theory +hep-th/0106050 Theory +hep-th/0106068 Theory +hep-th/0106128 Theory +hep-th/0106129 Theory +hep-th/0106155 Theory +hep-th/0106217 Theory +hep-th/0107004 Theory +hep-th/0107055 Theory +hep-th/0107151 Theory +hep-th/0107222 Theory +hep-th/0107253 Theory +hep-th/0107264 Theory +hep-th/0108013 Theory +hep-th/0611113 Theory +math/0411480 Differential Geometry +math/0611686 Algebraic Geometry +math/0702772 Differential Geometry +nucl-ex/0104015 +nucl-ex/0104022 +nucl-ex/0104026 +nucl-ex/0105011 +nucl-ex/0105012 +nucl-ex/0105014 +nucl-ex/0105015 +nucl-ex/0106001 +nucl-ex/0106004 +nucl-ex/0106006 +nucl-ex/0107006 +nucl-ex/0107008 +nucl-th/0104043 +nucl-th/0106046 +physics/0103051 General Physics +0704.0142 Statistical Mechanics +0706.4193 Probability +0710.0387 Rings and Algebras +0712.0235 Probability +0803.1357 Disordered Systems and Neural Networks +0803.3907 Representation Theory +0804.2379 Strongly Correlated Electrons +0804.3660 +0807.3112 Probability +0807.4496 Representation Theory +0808.2754 +0810.0054 Quantum Algebra +0810.0806 Optimization and Control +0810.3446 +0810.3605 Artificial Intelligence +0811.2156 Combinatorics +0811.2242 Superconductivity +0812.1659 Probability +0812.2201 Optimization and Control +0812.4847 Probability +0901.2864 Number Theory +0901.3033 General Physics +0902.0947 Information Theory +0902.4149 Differential Geometry +0903.2553 Logic +0903.5450 +0904.2464 Theory +0904.3264 Spectral Theory +0905.0647 +0905.1519 Combinatorics +0905.1980 Classical Analysis and ODEs +0905.4912 Trading and Market Microstructure +0906.0902 Complex Variables +0906.2179 Algebraic Geometry +0906.2382 +0907.2374 Superconductivity +0907.4141 Superconductivity +0907.4962 Differential Geometry +0908.0074 Mesoscale and Nanoscale Physics +0908.0762 Earth and Planetary Astrophysics +0908.0898 Information Theory +0908.1351 Populations and Evolution +0908.1431 Operator Algebras +0908.2482 +0909.1544 Mesoscale and Nanoscale Physics +0909.3125 Mesoscale and Nanoscale Physics +0909.3141 Analysis of PDEs +0909.3387 Geometric Topology +0910.2009 Quantum Algebra +0911.0995 Disordered Systems and Neural Networks +0911.1108 Quantum Gases +0911.1133 Strongly Correlated Electrons +0911.1593 Mesoscale and Nanoscale Physics +0911.2485 Quantum Algebra +0911.2583 Disordered Systems and Neural Networks +0911.3744 +0911.4065 +0911.4702 Chaotic Dynamics +0911.4761 Computers and Society +0912.1264 Mesoscale and Nanoscale Physics +0912.1949 +0912.2813 Data Structures and Algorithms +0912.4138 Optics +0912.4147 Mesoscale and Nanoscale Physics +1001.0599 Medical Physics +1001.1129 Phenomenology +1001.1510 Functional Analysis +1001.1683 Disordered Systems and Neural Networks +1001.2059 Information Theory +1001.2821 Complex Variables +1001.2882 Mesoscale and Nanoscale Physics +1001.3615 Superconductivity +1001.4143 Quantum Gases +1001.4377 Mesoscale and Nanoscale Physics +1002.0135 Combinatorics +1002.2913 Materials Science +1002.3418 Mesoscale and Nanoscale Physics +1002.4525 Classical Analysis and ODEs +1002.4540 Differential Geometry +1003.1752 Materials Science +1003.3057 Solar and Stellar Astrophysics +1003.3273 Cosmology and Nongalactic Astrophysics +1003.3599 Algebraic Geometry +1003.4424 +1003.4946 +1003.5406 Cryptography and Security +1003.5794 Distributed, Parallel, and Cluster Computing +1004.0056 Distributed, Parallel, and Cluster Computing +1004.0454 Dynamical Systems +1004.0685 Risk Management +1004.1138 Statistical Finance +1004.1224 Computers and Society +1004.1374 Differential Geometry +1004.1564 Information Theory +1004.1641 +1004.1646 Functional Analysis +1004.1653 Category Theory +1004.1654 Combinatorics +1004.1656 +1004.1660 Rings and Algebras +1004.1669 Representation Theory +1004.1673 Other Computer Science +1004.1674 Networking and Internet Architecture +1004.1675 Robotics +1004.1676 Multimedia +1004.1677 Databases +1004.1678 Networking and Internet Architecture +1004.1679 Computer Vision and Pattern Recognition +1004.1682 Multimedia +1004.1683 Cryptography and Security +1004.1686 Computer Vision and Pattern Recognition +1004.1687 +1004.1689 +1004.1691 Classical Analysis and ODEs +1004.1695 Materials Science +1004.1701 Digital Libraries +1004.1702 Group Theory +1004.1704 Operator Algebras +1004.1706 Networking and Internet Architecture +1004.1707 Information Theory +1004.1710 Plasma Physics +1004.1713 Phenomenology +1004.1716 Number Theory +1004.1718 Analysis of PDEs +1004.1730 Differential Geometry +1004.1735 Analysis of PDEs +1004.1736 Formal Languages and Automata Theory +1004.1740 Combinatorics +1004.1743 Learning +1004.1745 Other Computer Science +1004.1746 Distributed, Parallel, and Cluster Computing +1004.1747 Databases +1004.1748 Cryptography and Security +1004.1753 Differential Geometry +1004.1754 +1004.1757 Networking and Internet Architecture +1004.1758 Pricing of Securities +1004.1759 Pricing of Securities +1004.1761 General Physics +1004.1763 Representation Theory +1004.1768 Computer Vision and Pattern Recognition +1004.1769 Cryptography and Security +1004.1770 Multimedia +1004.1772 Artificial Intelligence +1004.1773 Software Engineering +1004.1774 Networking and Internet Architecture +1004.1778 Combinatorics +1004.1786 Differential Geometry +1004.1788 Networking and Internet Architecture +1004.1789 Multimedia +1004.1791 Multimedia +1004.1793 Computers and Society +1004.1794 Artificial Intelligence +1004.1796 Information Retrieval +1004.1806 Strongly Correlated Electrons +1004.1815 Exactly Solvable and Integrable Systems +1004.1821 Information Theory +1004.1823 Data Structures and Algorithms +1004.1824 Cosmology and Nongalactic Astrophysics +1004.1829 Cosmology and Nongalactic Astrophysics +1004.1830 Formal Languages and Automata Theory +1004.1831 +1004.1832 Optics +1004.1833 Differential Geometry +1004.1842 Networking and Internet Architecture +1004.1845 Logic in Computer Science +1004.1852 Metric Geometry +1004.1853 Solar and Stellar Astrophysics +1004.1855 Computational Finance +1004.1859 Solar and Stellar Astrophysics +1004.1860 Complex Variables +1004.1862 Probability +1004.1867 Optics +1004.1869 Representation Theory +1004.1875 Solar and Stellar Astrophysics +1004.1878 Solar and Stellar Astrophysics +1004.1883 Combinatorics +1004.1886 Computer Vision and Pattern Recognition +1004.1888 Analysis of PDEs +1004.1890 Combinatorics +1004.1892 Materials Science +1004.1893 Superconductivity +1004.1894 Soft Condensed Matter +1004.1896 High Energy Astrophysical Phenomena +1004.1906 Analysis of PDEs +1004.1916 Functional Analysis +1004.1930 Optics +1004.1936 Commutative Algebra +1004.1939 Representation Theory +1004.1941 K-Theory and Homology +1004.1946 Formal Languages and Automata Theory +1004.1958 Probability +1004.1972 Rings and Algebras +1004.1974 Phenomenology +1004.1976 Solar and Stellar Astrophysics +1004.1982 Learning +1004.1983 Other Computer Science +1004.1987 Commutative Algebra +1004.1988 Numerical Analysis +1004.1992 Statistical Mechanics +1004.2000 Numerical Analysis +1004.2001 Medical Physics +1004.2002 Analysis of PDEs +1004.2008 Artificial Intelligence +1004.2010 Combinatorics +1004.2015 Theory +1004.2017 Solar and Stellar Astrophysics +1004.2022 Biological Physics +1004.2026 Chemical Physics +1004.2034 Mesoscale and Nanoscale Physics +astro-ph/0606356 +cs/0608058 Networking and Internet Architecture +math/0111219 Algebraic Geometry +math/0203043 Algebraic Geometry +math/0508294 Geometric Topology +math/0510421 Quantum Algebra +math/0512592 Geometric Topology +math/0604042 Geometric Topology +math/0607153 Differential Geometry +math/0702645 Representation Theory +math/0702664 Representation Theory +nucl-ex/0703006 +0704.2399 Other Condensed Matter +0706.0303 +0707.1605 Algebraic Geometry +0711.3686 Probability +0804.0449 Other Condensed Matter +0804.4065 Combinatorics +0805.3031 Strongly Correlated Electrons +0807.3085 Other Condensed Matter +0808.2186 Soft Condensed Matter +0808.2192 Soft Condensed Matter +0808.2682 Soft Condensed Matter +0809.0289 Representation Theory +0810.1256 Geometric Topology +0811.3129 +0812.2532 Probability +0903.5078 Differential Geometry +0905.0719 General Mathematics +0905.1146 Quantum Gases +0907.1272 Combinatorics +0908.0484 Populations and Evolution +0908.3991 Mesoscale and Nanoscale Physics +0909.1162 Geometric Topology +0911.1229 Physics and Society +0911.1945 Theory +0912.0472 Soft Condensed Matter +0912.0866 +0912.1627 Populations and Evolution +1001.1050 Optics +1001.1910 Mesoscale and Nanoscale Physics +1001.2120 +1001.3428 Cosmology and Nongalactic Astrophysics +1001.5179 Commutative Algebra +1002.3264 Statistical Mechanics +1003.0820 Strongly Correlated Electrons +1003.2808 High Energy Astrophysical Phenomena +1003.5766 +1004.3226 Superconductivity +1004.5153 Superconductivity +1005.0937 Functional Analysis +1005.1084 Superconductivity +1005.3271 Astrophysics of Galaxies +1006.1227 Category Theory +1006.1757 Theory +1006.2129 Disordered Systems and Neural Networks +1006.2163 +1006.3078 Materials Science +1006.4666 +1007.0170 Algebraic Geometry +1007.2620 Optics +1007.4251 Strongly Correlated Electrons +1007.4533 Mesoscale and Nanoscale Physics +1008.0963 Mesoscale and Nanoscale Physics +1008.3878 Statistical Mechanics +1008.3904 Theory +1008.4320 Materials Science +1009.0032 +1009.0564 +1009.1479 Materials Science +1009.1968 Statistical Mechanics +1009.4412 Probability +1010.1010 Number Theory +1010.2842 Populations and Evolution +1010.5194 Operator Algebras +1010.6183 Phenomenology +1011.0679 Representation Theory +1011.1641 Classical Analysis and ODEs +1011.1929 Dynamical Systems +1011.1970 Physics and Society +1011.2688 Probability +1011.3571 Social and Information Networks +1011.3598 Statistical Mechanics +1011.3681 Materials Science +1011.3706 Cosmology and Nongalactic Astrophysics +1011.3707 Statistical Finance +1011.3770 Data Structures and Algorithms +1011.3821 +1011.3836 Dynamical Systems +1011.3839 Quantum Algebra +1011.3840 Computational Complexity +1011.3842 Dynamical Systems +1011.3843 Combinatorics +1011.3844 Mesoscale and Nanoscale Physics +1011.3848 Chaotic Dynamics +1011.3849 Statistical Mechanics +1011.3850 +1011.3853 Experiment +1011.3864 Materials Science +1011.3869 Combinatorics +1011.3870 Information Theory +1011.3875 Materials Science +1011.3877 Astrophysics of Galaxies +1011.3882 Combinatorics +1011.3887 Complex Variables +1011.3897 Optics +1011.3898 +1011.3900 +1011.3904 Lattice +1011.3908 Mesoscale and Nanoscale Physics +1011.3912 Robotics +1011.3926 Algebraic Geometry +1011.3937 Materials Science +1011.3939 Lattice +1011.3951 General Physics +1011.3955 High Energy Astrophysical Phenomena +1011.3957 Accelerator Physics +1011.3963 Geometric Topology +1011.3964 Logic in Computer Science +1011.3971 Probability +1011.3978 Mesoscale and Nanoscale Physics +1011.3982 +1011.3983 Astrophysics of Galaxies +1011.3986 Dynamical Systems +1011.3989 Data Analysis, Statistics and Probability +1011.3994 Lattice +1011.4000 Superconductivity +1011.4010 Phenomenology +1011.4012 +1011.4015 Lattice +1011.4016 Logic +1011.4022 Solar and Stellar Astrophysics +1011.4024 Phenomenology +1011.4027 General Topology +1011.4031 +1011.4033 +1011.4036 Metric Geometry +1011.4037 +1011.4039 Numerical Analysis +1011.4040 Geophysics +1011.4041 Geophysics +1011.4044 Symplectic Geometry +1011.4052 Solar and Stellar Astrophysics +1011.4053 Solar and Stellar Astrophysics +1011.4057 +1011.4058 Computer Vision and Pattern Recognition +cond-mat/0702254 Other Condensed Matter +math-ph/0510079 +math/0501350 Representation Theory +math/0606673 Algebraic Geometry +math/0608775 Representation Theory +math/0609166 Geometric Topology +math/0610512 Representation Theory +nucl-ex/0506003 +0704.0738 Statistical Mechanics +0711.0871 Representation Theory +0802.1236 Strongly Correlated Electrons +0806.0970 Soft Condensed Matter +0806.2933 Probability +0806.2989 Trading and Market Microstructure +0901.2888 Analysis of PDEs +0901.3370 Superconductivity +0901.4582 Superconductivity +0902.0352 Strongly Correlated Electrons +0903.0747 Phenomenology +0905.1902 Algebraic Geometry +0905.3993 Symbolic Computation +0907.2695 Theory +0907.3427 Number Theory +0908.3661 Probability +0908.3699 Combinatorics +0909.3536 Strongly Correlated Electrons +0910.5935 Mesoscale and Nanoscale Physics +0911.3119 Geophysics +0911.3135 Cosmology and Nongalactic Astrophysics +0912.0891 Geophysics +0912.1571 High Energy Astrophysical Phenomena +0912.4050 Quantum Gases +1001.1023 Statistical Mechanics +1001.1824 Number Theory +1001.5286 Theory +1001.5417 +1002.1391 Theory +1002.4812 +1003.0055 +1003.1618 Mesoscale and Nanoscale Physics +1003.4783 Numerical Analysis +1004.1391 Probability +1004.5038 Superconductivity +1004.5199 Statistics Theory +1005.3976 Mesoscale and Nanoscale Physics +1006.0127 Mesoscale and Nanoscale Physics +1006.0556 Operator Algebras +1006.2306 Theory +1006.2709 Theory +1006.2756 Analysis of PDEs +1006.3698 Soft Condensed Matter +1006.4706 General Topology +1006.5554 Mesoscale and Nanoscale Physics +1006.5894 Information Theory +1007.0146 General Physics +1007.1308 Atomic Physics +1007.2465 Phenomenology +1007.3723 +1007.4382 Adaptation and Self-Organizing Systems +1007.5161 Adaptation and Self-Organizing Systems +1008.0036 Quantum Gases +1008.0862 Mesoscale and Nanoscale Physics +1008.1743 Theory +1008.2333 Theory +1008.4650 High Energy Astrophysical Phenomena +1008.4941 Robotics +1008.5304 Mesoscale and Nanoscale Physics +1009.0095 +1009.0523 Mesoscale and Nanoscale Physics +1009.0606 Statistical Mechanics +1009.1276 Soft Condensed Matter +1009.1712 Statistical Mechanics +1009.2479 Solar and Stellar Astrophysics +1009.3328 Representation Theory +1009.4618 Solar and Stellar Astrophysics +1009.4750 Combinatorics +1009.5119 General Physics +1010.3320 Machine Learning +1010.4311 High Energy Astrophysical Phenomena +1010.4858 Networking and Internet Architecture +1010.5686 Dynamical Systems +1011.0453 Complex Variables +1011.1018 Instrumentation and Methods for Astrophysics +1011.2409 Combinatorics +1011.2495 Solar and Stellar Astrophysics +1011.2514 Quantum Gases +1011.2515 Computer Science and Game Theory +1011.2516 Rings and Algebras +1011.2522 Pattern Formation and Solitons +1011.2523 Quantum Gases +1011.2527 Analysis of PDEs +1011.2530 Cosmology and Nongalactic Astrophysics +1011.2531 Numerical Analysis +1011.2538 Human-Computer Interaction +1011.2541 Theory +1011.2545 Theory +1011.2550 Quantum Algebra +1011.2551 Computational Complexity +1011.2554 Chemical Physics +1011.2555 Strongly Correlated Electrons +1011.2560 Logic in Computer Science +1011.2562 +1011.2569 Materials Science +1011.2579 +1011.2581 Geophysics +1011.2582 Mesoscale and Nanoscale Physics +1011.2586 Computational Complexity +1011.2587 Statistics Theory +1011.2588 Rings and Algebras +1011.2589 Superconductivity +1011.2590 Data Structures and Algorithms +1011.2597 Mesoscale and Nanoscale Physics +1011.2600 General Physics +1011.2602 Statistics Theory +1011.2605 Quantitative Methods +1011.2607 Statistics Theory +1011.2608 Probability +1011.2609 +1011.2610 Instrumentation and Methods for Astrophysics +1011.2614 Materials Science +1011.2615 Functional Analysis +1011.2620 Statistics Theory +1011.2621 High Energy Astrophysical Phenomena +1011.2644 Information Theory +1011.2650 Mesoscale and Nanoscale Physics +1011.2651 Probability +1011.2652 Software Engineering +1011.2653 Statistics Theory +1011.2654 Optics +1011.2657 Materials Science +1011.2660 Statistics Theory +1011.2663 Materials Science +1011.2665 Optics +1011.2667 Cosmology and Nongalactic Astrophysics +1011.2670 Risk Management +1011.2671 Solar and Stellar Astrophysics +1011.2674 Statistical Finance +1011.2675 Solar and Stellar Astrophysics +1011.2680 Earth and Planetary Astrophysics +1011.2683 Probability +1011.2686 Information Theory +1011.2689 Physics and Society +1011.2690 Earth and Planetary Astrophysics +1011.2700 Geometric Topology +1011.2710 Earth and Planetary Astrophysics +1011.2716 Algebraic Geometry +1011.2719 Distributed, Parallel, and Cluster Computing +1011.2720 Experiment +1011.2732 Commutative Algebra +1011.2739 Optics +1011.2740 Information Theory +1011.2744 Differential Geometry +1011.2746 Astrophysics of Galaxies +1011.2747 Dynamical Systems +1011.2750 Numerical Analysis +1011.2752 Geophysics +1011.2753 Multimedia +cond-mat/0003065 Strongly Correlated Electrons +cond-mat/0003271 Strongly Correlated Electrons +cond-mat/0503723 Strongly Correlated Electrons +cond-mat/0609331 Statistical Mechanics +cond-mat/0610680 Strongly Correlated Electrons +cond-mat/0611337 Strongly Correlated Electrons +cond-mat/9811411 Strongly Correlated Electrons +cond-mat/9812020 Strongly Correlated Electrons +cond-mat/9910404 Strongly Correlated Electrons +math/0403550 Algebraic Geometry +math/0407504 Combinatorics +math/0601016 General Mathematics +quant-ph/0511228 +0710.0922 Theory +0712.0096 Methodology +0801.0883 Chaotic Dynamics +0801.4153 Probability +0801.4927 +0803.2921 Representation Theory +0804.3863 +0805.0609 +0807.2675 Mesoscale and Nanoscale Physics +0807.4384 Theory +0808.1387 Functional Analysis +0809.1824 Probability +0809.4596 Phenomenology +0810.1127 Numerical Analysis +0810.3107 Combinatorics +0812.1810 Chaotic Dynamics +0812.2488 Theory +0901.0697 Cosmology and Nongalactic Astrophysics +0902.3429 Metric Geometry +0903.2218 Superconductivity +0903.3259 Probability +0904.1988 Materials Science +0905.0147 Fluid Dynamics +0905.0271 Superconductivity +0905.0849 Theory +0906.3071 Soft Condensed Matter +0906.3252 Neurons and Cognition +0906.5199 Strongly Correlated Electrons +0906.5320 +0907.1313 Computational Physics +0907.1791 Phenomenology +0907.5264 Theory +0908.1845 +0908.3352 Strongly Correlated Electrons +0908.3421 Statistical Mechanics +0908.3766 +0908.4147 +0908.4302 Mesoscale and Nanoscale Physics +0908.4359 Superconductivity +0909.0461 Classical Analysis and ODEs +0909.1454 +0909.1496 Strongly Correlated Electrons +0909.2191 Statistics Theory +0909.2858 Algebraic Geometry +0909.3239 +0910.3123 Data Structures and Algorithms +0910.4019 Phenomenology +0911.0252 Phenomenology +0911.2094 Phenomenology +0911.2138 Phenomenology +0911.2173 Phenomenology +0911.2257 Lattice +0911.2285 Lattice +0911.3388 Soft Condensed Matter +0912.0619 +0912.2779 +0912.3175 Phenomenology +1001.1654 Data Structures and Algorithms +1001.1802 Cryptography and Security +1001.1902 Performance +1001.5257 Materials Science +1001.5435 Astrophysics of Galaxies +1002.1346 Earth and Planetary Astrophysics +1002.2748 +1002.2760 +1002.2905 Combinatorics +1002.2996 Representation Theory +1002.3203 Group Theory +1002.3326 Networking and Internet Architecture +1002.3372 Instrumentation and Methods for Astrophysics +1002.3377 High Energy Astrophysical Phenomena +1002.3381 Functional Analysis +1002.3385 Number Theory +1002.3388 Theory +1002.3390 Superconductivity +1002.3398 Other Condensed Matter +1002.3400 Other Condensed Matter +1002.3402 Other Condensed Matter +1002.3406 Dynamical Systems +1002.3408 Cosmology and Nongalactic Astrophysics +1002.3409 Cryptography and Security +1002.3413 Classical Physics +1002.3419 Materials Science +1002.3425 General Physics +1002.3427 +1002.3431 Physics and Society +1002.3435 Materials Science +1002.3453 Computational Complexity +1002.3454 +1002.3466 Algebraic Geometry +1002.3475 Cryptography and Security +1002.3484 General Mathematics +1002.3488 Cosmology and Nongalactic Astrophysics +1002.3494 Algebraic Geometry +1002.3503 Group Theory +1002.3511 Data Structures and Algorithms +1002.3512 Phenomenology +1002.3513 Lattice +1002.3514 Quantum Gases +1002.3518 Combinatorics +1002.3519 Strongly Correlated Electrons +1002.3521 Information Theory +1002.3525 Representation Theory +1002.3530 Algebraic Topology +1002.3533 Numerical Analysis +1002.3544 +1002.3548 Classical Physics +1002.3550 Lattice +1002.3551 Solar and Stellar Astrophysics +1002.3552 Biological Physics +1002.3559 Dynamical Systems +1002.3560 Risk Management +1002.3566 Analysis of PDEs +1002.3572 Physics and Society +1002.3579 Phenomenology +1002.3590 Physics and Society +1002.3591 Algebraic Geometry +1002.3594 Superconductivity +1002.3596 Classical Physics +1002.3597 General Physics +hep-th/9602148 Theory +math/0609032 Number Theory +math/0610728 Representation Theory +math/0612451 Representation Theory +quant-ph/0112156 +0706.0565 Differential Geometry +0707.4129 Quantum Algebra +0710.3964 Number Theory +0710.5735 Materials Science +0712.1072 Operator Algebras +0805.3591 Methodology +0807.4734 Differential Geometry +0808.2798 Algebraic Topology +0809.4168 Geometric Topology +0810.0098 Optimization and Control +0810.1971 Quantum Algebra +0810.2738 Number Theory +0901.3039 Group Theory +0903.5360 Materials Science +0905.2217 Superconductivity +0905.4170 Mesoscale and Nanoscale Physics +0905.4272 General Finance +0905.4648 +0907.3988 +0907.4134 Logic +0907.4770 Mesoscale and Nanoscale Physics +0910.0717 Cosmology and Nongalactic Astrophysics +0910.1837 Strongly Correlated Electrons +0910.3586 Mesoscale and Nanoscale Physics +0910.3614 Mesoscale and Nanoscale Physics +0910.3666 Mesoscale and Nanoscale Physics +0910.5714 Cryptography and Security +0911.4067 Differential Geometry +0912.0848 Disordered Systems and Neural Networks +0912.2218 Mesoscale and Nanoscale Physics +0912.3157 Cosmology and Nongalactic Astrophysics +0912.3206 Statistical Mechanics +1001.0539 +1001.3388 Cryptography and Security +1002.0784 Theory +1002.1141 Cosmology and Nongalactic Astrophysics +1002.3440 +1002.4913 +1003.1237 Materials Science +1003.1425 Mesoscale and Nanoscale Physics +1003.2554 Networking and Internet Architecture +1003.3388 +1004.1219 +1005.1351 Mesoscale and Nanoscale Physics +1005.3015 +1005.3362 Algebraic Geometry +1006.0660 Mesoscale and Nanoscale Physics +1006.1058 Mesoscale and Nanoscale Physics +1006.1275 Experiment +1006.1533 +1006.1586 +1006.1657 General Physics +1006.1663 Databases +1006.1667 Information Theory +1006.1669 Information Theory +1006.1670 Theory +1006.1671 Differential Geometry +1006.1676 Other Computer Science +1006.1679 Other Computer Science +1006.1681 Artificial Intelligence +1006.1683 Software Engineering +1006.1684 Mesoscale and Nanoscale Physics +1006.1687 Disordered Systems and Neural Networks +1006.1689 Distributed, Parallel, and Cluster Computing +1006.1690 Information Theory +1006.1692 Databases +1006.1695 Databases +1006.1696 Disordered Systems and Neural Networks +1006.1699 Databases +1006.1700 Optics +1006.1701 Artificial Intelligence +1006.1702 Computers and Society +1006.1703 Artificial Intelligence +1006.1706 Instrumentation and Detectors +1006.1711 Computer Science and Game Theory +1006.1714 Instrumentation and Methods for Astrophysics +1006.1720 Logic +1006.1722 Classical Physics +1006.1735 Cryptography and Security +1006.1739 Operator Algebras +1006.1741 Analysis of PDEs +1006.1742 K-Theory and Homology +1006.1743 Information Theory +1006.1744 Mathematical Software +1006.1745 Experiment +1006.1753 +1006.1755 Cryptography and Security +1006.1759 Group Theory +1006.1763 +1006.1770 Algebraic Geometry +1006.1775 Differential Geometry +1006.1778 Number Theory +1006.1779 Chaotic Dynamics +1006.1784 Differential Geometry +1006.1795 Probability +1006.1802 Number Theory +1006.1803 Instrumentation and Methods for Astrophysics +1006.1807 Combinatorics +1006.1808 Logic +1006.1816 Soft Condensed Matter +1006.1818 Optimization and Control +1006.1822 Optics +1006.1828 Machine Learning +1006.1830 +1006.1835 Mesoscale and Nanoscale Physics +1006.1837 Spectral Theory +1006.1839 Spectral Theory +1006.1844 Metric Geometry +1006.1846 Theory +1006.1850 +1006.1851 Mesoscale and Nanoscale Physics +1006.1852 Mesoscale and Nanoscale Physics +1006.1853 +1006.1865 Combinatorics +1006.1868 +1006.1869 Biomolecules +1006.1872 Algebraic Geometry +1006.1874 Numerical Analysis +1006.1877 Statistical Mechanics +1006.1880 Number Theory +1006.1885 Phenomenology +1006.1888 +1006.1890 Information Theory +cond-mat/0110217 Disordered Systems and Neural Networks +cond-mat/0603269 Strongly Correlated Electrons +cond-mat/9712177 Disordered Systems and Neural Networks +cond-mat/9901222 Statistical Mechanics +math/0512129 Quantum Algebra +math/0607076 K-Theory and Homology +math/0611359 Geometric Topology +math/0701040 Quantum Algebra +math/9904057 Quantum Algebra +physics/0601043 Fluid Dynamics +q-bio/0605010 Neurons and Cognition +0704.0842 Other Condensed Matter +0707.2408 Theory +0708.1931 Statistical Mechanics +0710.4378 Theory +0712.2177 Number Theory +0801.3641 Other Condensed Matter +0805.0642 Artificial Intelligence +0805.1081 Other Condensed Matter +0809.4107 Distributed, Parallel, and Cluster Computing +0810.0312 +0810.3802 Mesoscale and Nanoscale Physics +0811.3148 Soft Condensed Matter +0812.1489 Mesoscale and Nanoscale Physics +0812.1703 Mesoscale and Nanoscale Physics +0902.3482 Number Theory +0902.4141 +0903.1902 Other Condensed Matter +0903.2541 Other Condensed Matter +0904.2432 Rings and Algebras +0905.4175 Mesoscale and Nanoscale Physics +0906.1038 Other Condensed Matter +0906.1991 Algebraic Geometry +0906.3854 Number Theory +0906.4405 Mesoscale and Nanoscale Physics +0907.2605 Functional Analysis +0907.4169 Formal Languages and Automata Theory +0908.4519 Number Theory +1001.0635 Atomic and Molecular Clusters +comp-gas/9507003 Cellular Automata and Lattice Gases +cond-mat/0101474 Statistical Mechanics +cond-mat/0508334 Statistical Mechanics +cond-mat/0509189 Mesoscale and Nanoscale Physics +cond-mat/0701398 Mesoscale and Nanoscale Physics +math/0502338 Functional Analysis +0705.2311 Fluid Dynamics +0707.3774 +0709.1557 Operator Algebras +0710.5091 Other Condensed Matter +0711.2338 +0802.4134 Fluid Dynamics +0805.2296 Phenomenology +0806.4385 Dynamical Systems +0810.0638 Representation Theory +0811.1448 Category Theory +0811.1457 Logic +0811.2781 Algebraic Geometry +0812.0715 Operator Algebras +0902.2355 Logic +0903.1913 Combinatorics +0903.5510 Quantum Algebra +0905.4248 Number Theory +0905.4541 Information Theory +0906.3794 +0906.4388 +0910.3887 +0911.0473 +0911.0477 +0912.2412 Methodology +1001.3469 Logic +1002.3825 High Energy Astrophysical Phenomena +1003.3440 Classical Analysis and ODEs +1003.5261 Strongly Correlated Electrons +1003.5347 Number Theory +1004.0128 Operator Algebras +1004.2562 +1004.2836 +1004.3206 Lattice +1004.4092 Superconductivity +1004.4354 Strongly Correlated Electrons +1005.0767 +1005.2469 Networking and Internet Architecture +1005.4935 Complex Variables +1006.1626 Superconductivity +1006.4900 Distributed, Parallel, and Cluster Computing +1007.2123 Programming Languages +1007.3947 Combinatorics +1007.3949 Combinatorics +1007.5296 Atmospheric and Oceanic Physics +1007.5418 Phenomenology +1008.0078 +1008.0203 Phenomenology +1008.0322 Populations and Evolution +1008.0417 Geometric Topology +1008.0546 Solar and Stellar Astrophysics +1008.0557 Databases +1008.0602 Information Theory +1008.0611 +1008.0613 +1008.0643 Earth and Planetary Astrophysics +1008.0657 Numerical Analysis +1008.0661 Symplectic Geometry +1008.0663 Differential Geometry +1008.0671 +1008.0673 Quantum Algebra +1008.0681 Materials Science +1008.0683 Computational Complexity +1008.0686 Number Theory +1008.0687 Analysis of PDEs +1008.0690 +1008.0693 Mesoscale and Nanoscale Physics +1008.0696 Mesoscale and Nanoscale Physics +1008.0697 +1008.0699 Combinatorics +1008.0700 Group Theory +1008.0701 +1008.0705 Applications +1008.0706 Machine Learning +1008.0710 Lattice +1008.0711 Differential Geometry +1008.0713 General Topology +1008.0715 Rings and Algebras +1008.0717 Molecular Networks +1008.0725 Phenomenology +1008.0728 Information Theory +1008.0730 Information Theory +1008.0734 Optimization and Control +1008.0735 Information Theory +1008.0737 Biological Physics +1008.0740 Other Statistics +1008.0743 Biological Physics +1008.0750 Phenomenology +1008.0751 Combinatorics +1008.0752 Fluid Dynamics +1008.0755 Solar and Stellar Astrophysics +1008.0757 Multimedia +1008.0758 Chaotic Dynamics +1008.0763 Number Theory +1008.0769 Probability +1008.0771 Solar and Stellar Astrophysics +1008.0791 Mesoscale and Nanoscale Physics +1008.0796 +1008.0799 Earth and Planetary Astrophysics +1008.0804 Quantum Algebra +1008.0806 Numerical Analysis +1008.0808 Theory +1008.0809 Logic +1008.0810 Metric Geometry +1008.0812 Analysis of PDEs +1008.0816 Algebraic Topology +1008.0818 Dynamical Systems +1008.0819 Differential Geometry +1008.0823 Artificial Intelligence +1008.0825 Number Theory +1008.0831 Data Structures and Algorithms +1008.0832 Cosmology and Nongalactic Astrophysics +1008.0838 Hardware Architecture +1008.0839 Number Theory +1008.0844 +1008.0855 +math/0409161 Rings and Algebras +math/0507569 Number Theory +math/0605031 Analysis of PDEs +math/0605032 Analysis of PDEs +quant-ph/0512103 +quant-ph/0604152 +0706.0703 Algebraic Topology +0710.2354 Theory +0712.0717 Atomic Physics +0801.4058 Theory +0804.1164 Number Theory +0804.4771 Strongly Correlated Electrons +0805.4004 +0805.4649 Algebraic Geometry +0806.1148 Discrete Mathematics +0806.3556 Optics +0809.3971 Rings and Algebras +0810.1877 Number Theory +0811.1321 History and Overview +0811.1416 Numerical Analysis +0811.1549 Group Theory +0811.4215 Analysis of PDEs +0812.1574 +0901.2889 Strongly Correlated Electrons +0903.1470 Algebraic Topology +0904.3672 Algebraic Geometry +0904.4400 Mesoscale and Nanoscale Physics +0905.2614 Pattern Formation and Solitons +0906.0614 Number Theory +0906.4702 +0908.2207 Optics +0909.1125 Differential Geometry +0909.1897 Differential Geometry +0909.3408 Phenomenology +0909.3903 Combinatorics +0909.4508 Differential Geometry +0909.4952 Mesoscale and Nanoscale Physics +0910.0734 +0910.1965 Classical Physics +0910.5016 Rings and Algebras +0910.5800 Mesoscale and Nanoscale Physics +0911.0033 Fluid Dynamics +0911.0038 Strongly Correlated Electrons +0911.1295 +0911.2500 +0911.4347 Optimization and Control +0911.5273 Phenomenology +0911.5608 Materials Science +0912.0712 Combinatorics +0912.2442 Number Theory +0912.4191 Superconductivity +0912.4742 Databases +1001.0056 Algebraic Geometry +1001.0321 Group Theory +1001.0549 General Topology +1001.2618 Analysis of PDEs +1001.4918 Optics +1001.5058 Probability +1002.2238 Theory +1002.2331 Quantum Algebra +1002.3763 Data Structures and Algorithms +1002.4297 Probability +1002.4459 Lattice +1003.0741 +1003.2834 Phenomenology +1003.4896 Statistical Mechanics +1003.5136 +1004.0276 Cosmology and Nongalactic Astrophysics +1004.0304 Other Condensed Matter +1004.1375 +1004.2442 +1004.2933 General Physics +1004.3403 Cosmology and Nongalactic Astrophysics +1004.4175 Spectral Theory +1004.5281 +1005.0275 Solar and Stellar Astrophysics +1005.1138 Quantum Gases +1005.1563 High Energy Astrophysical Phenomena +1005.2677 Classical Analysis and ODEs +1005.3522 +1005.4198 Strongly Correlated Electrons +1005.5043 Mesoscale and Nanoscale Physics +1006.0121 Statistical Mechanics +1006.0147 +1006.2361 Data Structures and Algorithms +1006.2549 Number Theory +1006.3377 Group Theory +1007.0066 Distributed, Parallel, and Cluster Computing +1007.0728 Artificial Intelligence +1007.0969 +1007.1596 +1007.1912 Pattern Formation and Solitons +1007.1942 Phenomenology +1007.5060 Astrophysics of Galaxies +1008.1272 Strongly Correlated Electrons +1008.1454 Algebraic Topology +1008.2849 Data Structures and Algorithms +1008.4491 Mesoscale and Nanoscale Physics +1009.0318 Materials Science +1009.0748 Astrophysics of Galaxies +1009.0760 Symplectic Geometry +1009.0768 Atmospheric and Oceanic Physics +1009.0769 Trading and Market Microstructure +1009.0771 +1009.0772 Instrumentation and Methods for Astrophysics +1009.0775 Probability +1009.0780 Number Theory +1009.0781 Number Theory +1009.0786 Commutative Algebra +1009.0787 Commutative Algebra +1009.0788 Commutative Algebra +1009.0790 Commutative Algebra +1009.0794 Computational Geometry +1009.0802 Applications +1009.0805 Statistics Theory +1009.0806 Data Structures and Algorithms +1009.0808 Probability +1009.0814 Probability +1009.0816 +1009.0817 Programming Languages +1009.0818 Logic +1009.0826 Medical Physics +1009.0827 Databases +1009.0830 Rings and Algebras +1009.0833 Commutative Algebra +1009.0838 Representation Theory +1009.0843 +1009.0844 Computers and Society +1009.0846 Instrumentation and Methods for Astrophysics +1009.0848 Plasma Physics +1009.0853 Functional Analysis +1009.0854 Computer Vision and Pattern Recognition +1009.0857 Quantitative Methods +1009.0858 Dynamical Systems +1009.0861 Machine Learning +1009.0862 Distributed, Parallel, and Cluster Computing +1009.0864 Representation Theory +1009.0869 Astrophysics of Galaxies +1009.0877 Representation Theory +1009.0884 Computational Complexity +1009.0886 Combinatorics +1009.0891 Methodology +1009.0896 Neural and Evolutionary Computing +1009.0897 Metric Geometry +1009.0912 Probability +1009.0913 Spectral Theory +1009.0915 Neural and Evolutionary Computing +1009.0927 Strongly Correlated Electrons +1009.0929 Databases +1009.0931 Functional Analysis +1009.0933 Analysis of PDEs +1009.0934 +1009.0937 +1009.0939 Operator Algebras +1009.0957 Computer Vision and Pattern Recognition +1009.0958 Computer Vision and Pattern Recognition +1009.0959 Computer Vision and Pattern Recognition +1009.0961 Computer Vision and Pattern Recognition +1009.0962 Computer Vision and Pattern Recognition +1009.0964 High Energy Astrophysical Phenomena +1009.0966 Astrophysics of Galaxies +1009.0967 Cosmology and Nongalactic Astrophysics +1009.0968 Fluid Dynamics +1009.0993 Analysis of PDEs +1009.0994 Analysis of PDEs +1009.1002 Computational Physics +1009.1006 Rings and Algebras +1009.1015 Instrumentation and Methods for Astrophysics +1009.1020 Computer Vision and Pattern Recognition +1009.1029 Analysis of PDEs +1009.1039 Probability +1009.1042 Probability +1009.1050 Solar and Stellar Astrophysics +1009.1052 Statistics Theory +1009.1061 Functional Analysis +1009.1062 Representation Theory +1009.1074 Superconductivity +1009.1078 Biological Physics +1009.1086 Geometric Topology +1009.1096 +1009.1106 Combinatorics +1009.1126 Theory +1009.1136 +cond-mat/0205322 Strongly Correlated Electrons +cond-mat/0410767 Strongly Correlated Electrons +cond-mat/0702276 Strongly Correlated Electrons +hep-ph/9912210 Phenomenology +math/0408167 Number Theory +math/0507507 Number Theory +math/0601516 Number Theory +math/9303202 Functional Analysis +math/9303203 Functional Analysis +math/9303204 Functional Analysis +math/9303205 Functional Analysis +math/9303206 Functional Analysis +math/9310217 Functional Analysis +math/9310218 Functional Analysis +math/9403209 Functional Analysis +math/9403212 Functional Analysis +math/9404213 Functional Analysis +math/9709211 Functional Analysis +quant-ph/0208104 +quant-ph/0702177 +0708.2256 Group Theory +0712.2329 Algebraic Topology +0802.1473 Differential Geometry +0802.1558 +0804.3556 Complex Variables +0806.2912 Algebraic Geometry +0810.2071 Physics Education +0810.3667 Strongly Correlated Electrons +0812.3978 Algebraic Geometry +0905.3427 Theory +0905.3820 Combinatorics +0906.3155 Exactly Solvable and Integrable Systems +0907.3386 +0907.4683 +0910.0672 Differential Geometry +0910.1078 Numerical Analysis +0910.1518 Quantum Gases +0910.1803 Quantum Gases +0910.5582 Statistical Mechanics +0910.5881 Atomic Physics +0911.0154 General Topology +0912.3350 +0912.4596 Statistical Mechanics +1001.1455 Optimization and Control +1001.3953 +1001.4507 Optimization and Control +1001.5098 Complex Variables +1002.0181 Algebraic Geometry +1002.1707 +1002.2065 Materials Science +1002.2245 Strongly Correlated Electrons +1002.2814 Differential Geometry +1002.3637 Instrumentation and Methods for Astrophysics +1002.3709 Probability +1002.4997 Soft Condensed Matter +1003.0033 Cosmology and Nongalactic Astrophysics +1003.0236 Theory +1003.0606 Strongly Correlated Electrons +1003.1639 Strongly Correlated Electrons +1003.3088 Optimization and Control +1003.4747 Cosmology and Nongalactic Astrophysics +1004.4280 Statistical Mechanics +1005.0395 +1005.0898 Medical Physics +1005.2151 +1005.3316 Optics +1006.0498 Strongly Correlated Electrons +1006.1437 Phenomenology +1006.1542 Statistical Mechanics +1006.2478 Strongly Correlated Electrons +1006.2995 Functional Analysis +1006.4904 Logic +1006.5106 Superconductivity +1007.0668 Analysis of PDEs +1007.0696 Metric Geometry +1007.1826 Statistical Mechanics +1007.2299 Group Theory +1007.2621 Instrumentation and Methods for Astrophysics +1007.3418 Functional Analysis +1007.3502 Strongly Correlated Electrons +1007.3930 Mesoscale and Nanoscale Physics +1007.4482 Strongly Correlated Electrons +1008.0802 Fluid Dynamics +1008.2039 Materials Science +1009.0528 Solar and Stellar Astrophysics +1009.1045 Statistical Mechanics +1009.1132 Multiagent Systems +1009.1501 Biological Physics +1009.1832 Geophysics +1009.1956 Optics +1009.1961 Mesoscale and Nanoscale Physics +1009.3854 Theory +1009.5394 General Physics +1009.5396 High Energy Astrophysical Phenomena +1009.5398 Robotics +1009.5408 Complex Variables +1009.5411 Quantum Algebra +1009.5412 +1009.5417 Cosmology and Nongalactic Astrophysics +1009.5421 Logic +1009.5431 Materials Science +1009.5435 Computational Complexity +1009.5446 +1009.5473 Neural and Evolutionary Computing +1009.5477 Materials Science +1009.5495 Pricing of Securities +1009.5499 Trading and Market Microstructure +1009.5506 General Physics +1009.5507 Earth and Planetary Astrophysics +1009.5516 Numerical Analysis +1009.5520 Social and Information Networks +1009.5523 +1009.5524 Physics Education +1009.5526 Group Theory +1009.5528 Differential Geometry +1009.5529 Statistical Mechanics +1009.5531 Group Theory +1009.5532 Cosmology and Nongalactic Astrophysics +1009.5533 +1009.5538 Data Structures and Algorithms +1009.5541 Chemical Physics +1009.5543 Rings and Algebras +1009.5545 Group Theory +1009.5550 General Physics +1009.5556 Probability +1009.5557 Other Computer Science +1009.5558 Soft Condensed Matter +1009.5559 Theory +1009.5562 Functional Analysis +1009.5567 Materials Science +1009.5568 Instrumentation and Methods for Astrophysics +1009.5576 Probability +1009.5588 Discrete Mathematics +1009.5589 Numerical Analysis +1009.5599 Instrumentation and Methods for Astrophysics +1009.5602 Classical Physics +1009.5604 Data Analysis, Statistics and Probability +1009.5607 Solar and Stellar Astrophysics +1009.5617 Fluid Dynamics +1009.5622 +1009.5623 Soft Condensed Matter +1009.5626 Algebraic Geometry +1009.5627 Probability +1009.5628 Computational Geometry +1009.5629 Experiment +1009.5631 Chemical Physics +1009.5634 Astrophysics of Galaxies +1009.5636 Computer Science and Game Theory +1009.5638 Number Theory +1009.5640 +1009.5649 Analysis of PDEs +1009.5656 Functional Analysis +1009.5668 Theory +cond-mat/0504754 Mesoscale and Nanoscale Physics +cond-mat/0608717 Soft Condensed Matter +cond-mat/0611754 Mesoscale and Nanoscale Physics +math/0107073 Differential Geometry +math/0403155 Symplectic Geometry +math/0412500 Differential Geometry +math/0508118 Differential Geometry +math/0508121 Differential Geometry +math/0611252 Analysis of PDEs +math/0612019 Dynamical Systems +0706.3071 Dynamical Systems +0710.4514 Number Theory +0802.4383 Mesoscale and Nanoscale Physics +0804.2887 Dynamical Systems +0806.3177 Algebraic Geometry +0807.0145 Statistical Mechanics +0810.2564 +0811.0467 Algebraic Geometry +0811.1468 Strongly Correlated Electrons +0811.3838 Algebraic Geometry +0901.0044 Information Theory +0901.2551 Logic +0902.0356 Dynamical Systems +0902.2271 Biological Physics +0904.1349 +0904.1363 +0904.1925 +0904.2167 Phenomenology +0905.1628 Computational Physics +0905.2013 Combinatorics +0905.2313 +0905.3969 Mesoscale and Nanoscale Physics +0906.4948 Mesoscale and Nanoscale Physics +0907.5342 Biological Physics +0907.5434 Number Theory +0908.1435 Number Theory +0908.2754 +0908.3538 Probability +0909.1002 +0911.0757 Pattern Formation and Solitons +0911.4237 Representation Theory +0911.4792 Logic in Computer Science +0911.5452 Combinatorics +0912.5082 Strongly Correlated Electrons +1001.0716 Information Theory +1001.2024 Information Theory +1001.2493 Quantum Gases +1001.2524 Biological Physics +1001.4414 Phenomenology +1001.4444 Cosmology and Nongalactic Astrophysics +1002.3380 Cosmology and Nongalactic Astrophysics +1002.4747 Phenomenology +1003.0733 Mesoscale and Nanoscale Physics +1003.1418 Atomic Physics +1003.2304 Cosmology and Nongalactic Astrophysics +1003.4027 Soft Condensed Matter +1003.4436 Geometric Topology +1003.5134 Statistical Mechanics +1004.0613 Representation Theory +1004.1250 Mesoscale and Nanoscale Physics +1004.1321 Strongly Correlated Electrons +1004.1458 Statistical Mechanics +1004.2876 Atomic Physics +1005.0804 Soft Condensed Matter +1005.1184 Cosmology and Nongalactic Astrophysics +1005.2173 Cosmology and Nongalactic Astrophysics +1005.2228 Computational Finance +1005.2765 Algebraic Geometry +1006.0038 Combinatorics +1006.0148 Phenomenology +1006.0703 Superconductivity +1006.0720 Fluid Dynamics +1006.1112 Algebraic Geometry +1006.1180 Optics +1006.1226 Combinatorics +1006.2116 Soft Condensed Matter +1006.2177 Number Theory +1006.2427 Solar and Stellar Astrophysics +1006.2856 Physics and Society +1006.2986 Instrumentation and Detectors +1006.2994 General Physics +1006.3084 High Energy Astrophysical Phenomena +1006.3085 Optimization and Control +1006.3086 Geometric Topology +1006.3093 Phenomenology +1006.3098 Instrumentation and Methods for Astrophysics +1006.3102 Instrumentation and Methods for Astrophysics +1006.3112 Discrete Mathematics +1006.3115 Operator Algebras +1006.3122 Populations and Evolution +1006.3123 +1006.3134 Logic in Computer Science +1006.3135 High Energy Astrophysical Phenomena +1006.3137 +1006.3142 +1006.3144 Algebraic Topology +1006.3147 Spectral Theory +1006.3148 Distributed, Parallel, and Cluster Computing +1006.3153 Number Theory +1006.3164 Probability +1006.3171 Genomics +1006.3172 Genomics +1006.3174 Materials Science +1006.3180 Databases +1006.3194 Combinatorics +1006.3198 Number Theory +1006.3200 Differential Geometry +1006.3202 +1006.3203 Dynamical Systems +1006.3207 Differential Geometry +1006.3215 Artificial Intelligence +1006.3219 Commutative Algebra +1006.3222 Other Computer Science +1006.3225 Instrumentation and Methods for Astrophysics +1006.3227 +1006.3229 Solar and Stellar Astrophysics +1006.3234 Cosmology and Nongalactic Astrophysics +1006.3237 Number Theory +1006.3243 Cosmology and Nongalactic Astrophysics +1006.3245 Earth and Planetary Astrophysics +1006.3249 Algebraic Geometry +1006.3259 Software Engineering +1006.3263 Instrumentation and Detectors +1006.3265 Functional Analysis +1006.3271 Computation and Language +1006.3275 Computational Complexity +1006.3278 Superconductivity +1006.3279 Number Theory +1006.3283 High Energy Astrophysical Phenomena +1006.3285 Geometric Topology +1006.3291 Phenomenology +1006.3294 Phenomenology +1006.3296 Analysis of PDEs +1006.3297 Commutative Algebra +1006.3300 Probability +1006.3308 +math/0505129 Combinatorics +math/0506435 Probability +math/0602191 Combinatorics +math/0703540 Representation Theory +physics/0403094 General Physics +0711.1837 Theory +0804.0408 Dynamical Systems +0807.1972 +0808.1560 Probability +0811.1946 Group Theory +0901.0560 +0902.4364 Combinatorics +0904.0503 Differential Geometry +0904.1158 Representation Theory +0904.2277 Theory +0905.1598 Differential Geometry +0909.1532 High Energy Astrophysical Phenomena +1001.4527 Theory +1002.0884 Superconductivity +1002.4723 Theory +1003.1713 Mesoscale and Nanoscale Physics +1003.2188 Fluid Dynamics +1003.2987 Cosmology and Nongalactic Astrophysics +1003.5649 Number Theory +1004.0983 High Energy Astrophysical Phenomena +1004.2797 Algebraic Geometry +1004.5119 Statistical Mechanics +1005.0590 Theory +1005.1559 Superconductivity +1005.1965 +1005.3423 Mesoscale and Nanoscale Physics +1005.3796 Mesoscale and Nanoscale Physics +1005.5461 +1006.1491 +1006.1729 Mesoscale and Nanoscale Physics +1006.2777 Mesoscale and Nanoscale Physics +1006.4139 +1006.4404 Theory +1007.2517 Strongly Correlated Electrons +1007.2807 +1007.4240 +1007.4306 Plasma Physics +1007.4828 Algebraic Geometry +1007.4914 Phenomenology +1007.4940 Atomic Physics +1008.1957 Theory +1008.2133 Experiment +1008.2399 Phenomenology +1008.2483 Phenomenology +1008.2713 +1008.3100 +1008.3197 Dynamical Systems +1008.3356 Experiment +1008.3547 Experiment +1008.4108 Commutative Algebra +1008.4610 Quantum Gases +1008.4990 Robotics +1009.0923 Other Computer Science +1009.1324 Materials Science +1009.2249 Functional Analysis +1009.2408 +1009.4301 Statistical Mechanics +1009.4416 Fluid Dynamics +1009.4622 Phenomenology +1009.4651 Atomic Physics +1009.4657 Theory +1009.5152 Commutative Algebra +1011.0191 Algebraic Geometry +1011.1181 Solar and Stellar Astrophysics +1011.4541 Classical Physics +1011.5139 +1011.6048 Cell Behavior +1011.6307 Experiment +1012.0096 Symbolic Computation +1012.0209 Materials Science +1012.0314 Solar and Stellar Astrophysics +1012.0318 Rings and Algebras +1012.0322 Artificial Intelligence +1012.0323 Theory +1012.0324 Earth and Planetary Astrophysics +1012.0325 Instrumentation and Methods for Astrophysics +1012.0326 Other Computer Science +1012.0337 Cell Behavior +1012.0340 Superconductivity +1012.0342 Differential Geometry +1012.0353 Statistics Theory +1012.0356 Chaotic Dynamics +1012.0357 Geometric Topology +1012.0358 Differential Geometry +1012.0359 Digital Libraries +1012.0367 Information Theory +1012.0375 Information Theory +1012.0377 Solar and Stellar Astrophysics +1012.0378 Cryptography and Security +1012.0379 Cryptography and Security +1012.0382 Number Theory +1012.0387 Classical Analysis and ODEs +1012.0388 Algebraic Geometry +1012.0392 Information Theory +1012.0395 Algebraic Geometry +1012.0418 Algebraic Geometry +1012.0420 General Physics +1012.0427 Optimization and Control +1012.0434 Biological Physics +1012.0437 +1012.0442 Analysis of PDEs +1012.0445 Rings and Algebras +1012.0459 Theory +1012.0465 Data Analysis, Statistics and Probability +1012.0467 Human-Computer Interaction +1012.0471 Complex Variables +1012.0475 Pricing of Securities +1012.0476 +1012.0498 Learning +1012.0514 Dynamical Systems +1012.0517 Experiment +1012.0520 Geophysics +1012.0521 High Energy Astrophysical Phenomena +1012.0524 Combinatorics +1012.0525 Symplectic Geometry +1012.0535 +1012.0545 Differential Geometry +1012.0547 Category Theory +1012.0557 Data Structures and Algorithms +1012.0558 High Energy Astrophysical Phenomena +1012.0559 Plasma Physics +astro-ph/0001317 +astro-ph/0002006 +astro-ph/0002274 +astro-ph/0004353 +astro-ph/0006221 +astro-ph/0009369 +astro-ph/0511267 +astro-ph/0612487 +astro-ph/9802106 +astro-ph/9806358 +astro-ph/9810410 +astro-ph/9812398 +astro-ph/9901051 +astro-ph/9901277 +astro-ph/9902185 +astro-ph/9906026 +astro-ph/9908088 +astro-ph/9910091 +gr-qc/0310098 +gr-qc/9405063 +gr-qc/9702035 +gr-qc/9805075 +gr-qc/9807001 +gr-qc/9903056 +hep-ph/0001069 Phenomenology +hep-ph/0002152 Phenomenology +hep-ph/0004123 Phenomenology +hep-ph/0006123 Phenomenology +hep-ph/0012056 Phenomenology +hep-ph/0109177 Phenomenology +hep-ph/0212214 Phenomenology +hep-ph/9609355 Phenomenology +hep-ph/9806392 Phenomenology +hep-ph/9806408 Phenomenology +hep-ph/9807282 Phenomenology +hep-ph/9901403 Phenomenology +hep-ph/9909393 Phenomenology +hep-ph/9912240 Phenomenology +hep-th/0001121 Theory +hep-th/0001169 Theory +hep-th/0003085 Theory +hep-th/0008091 Theory +hep-th/0009159 Theory +hep-th/0011075 Theory +hep-th/0012213 Theory +hep-th/0103067 Theory +hep-th/0109214 Theory +hep-th/0111050 Theory +hep-th/0205293 Theory +hep-th/0208154 Theory +hep-th/0209089 Theory +hep-th/0209141 Theory +hep-th/0209228 Theory +hep-th/0209266 Theory +hep-th/0210049 Theory +hep-th/0210080 Theory +hep-th/0210131 Theory +hep-th/0210135 Theory +hep-th/0210148 Theory +hep-th/0210291 Theory +hep-th/0211017 Theory +hep-th/0211052 Theory +hep-th/0211069 Theory +hep-th/0211075 Theory +hep-th/0211249 Theory +hep-th/0211266 Theory +hep-th/0211291 Theory +hep-th/0212082 Theory +hep-th/0212136 Theory +hep-th/0212211 Theory +hep-th/0212233 Theory +hep-th/0212274 Theory +hep-th/0303032 Theory +hep-th/0303054 Theory +hep-th/0303066 Theory +hep-th/0303074 Theory +hep-th/0304001 Theory +hep-th/0304003 Theory +hep-th/0304022 Theory +hep-th/0304061 Theory +hep-th/0304200 Theory +hep-th/0304251 Theory +hep-th/0305050 Theory +hep-th/0306068 Theory +hep-th/0306133 Theory +hep-th/0306215 Theory +hep-th/0307049 Theory +hep-th/0307176 Theory +hep-th/0308033 Theory +hep-th/0308071 Theory +hep-th/0308120 Theory +hep-th/0309156 Theory +hep-th/0309183 Theory +hep-th/0309226 Theory +hep-th/0310074 Theory +hep-th/0310078 Theory +hep-th/0310103 Theory +hep-th/0310157 Theory +hep-th/0311025 Theory +hep-th/0312005 Theory +hep-th/0312020 Theory +hep-th/0312306 Theory +hep-th/0402025 Theory +hep-th/0402088 Theory +hep-th/0403035 Theory +hep-th/0403043 Theory +hep-th/0404196 Theory +hep-th/0404247 Theory +hep-th/0404251 Theory +hep-th/0405051 Theory +hep-th/0405101 Theory +hep-th/0405217 Theory +hep-th/0407247 Theory +hep-th/0408051 Theory +hep-th/0408167 Theory +hep-th/0408214 Theory +hep-th/0409204 Theory +hep-th/0411031 Theory +hep-th/0411062 Theory +hep-th/0411074 Theory +hep-th/0411256 Theory +hep-th/0411276 Theory +hep-th/0412150 Theory +hep-th/0412241 Theory +hep-th/0412247 Theory +hep-th/0501083 Theory +hep-th/0501195 Theory +hep-th/0502059 Theory +hep-th/0502084 Theory +hep-th/0502200 Theory +hep-th/0502225 Theory +hep-th/0503173 Theory +hep-th/0503177 Theory +hep-th/0503229 Theory +hep-th/0505119 Theory +hep-th/0505140 Theory +hep-th/0506041 Theory +hep-th/0506071 Theory +hep-th/0506234 Theory +hep-th/0506265 Theory +hep-th/0507069 Theory +hep-th/0507173 Theory +hep-th/0507202 Theory +hep-th/0508189 Theory +hep-th/0508190 Theory +hep-th/0508234 Theory +hep-th/0509052 Theory +hep-th/0509141 Theory +hep-th/0509166 Theory +hep-th/0509230 Theory +hep-th/0510115 Theory +hep-th/0510142 Theory +hep-th/0511027 Theory +hep-th/0511078 Theory +hep-th/0511160 Theory +hep-th/0601204 Theory +hep-th/0602089 Theory +hep-th/0602138 Theory +hep-th/0602233 Theory +hep-th/0603122 Theory +hep-th/0606175 Theory +hep-th/0606179 Theory +hep-th/9510233 Theory +hep-th/9612239 Theory +hep-th/9902086 Theory +hep-th/9903128 Theory +math-ph/0311028 +math-ph/0506015 +math/0610087 Spectral Theory +math/0612173 Spectral Theory +physics/0010070 General Physics +quant-ph/0610116 +0706.2471 Superconductivity +0706.4355 +0709.0961 Networking and Internet Architecture +0709.1775 Phenomenology +0709.2368 Theory +0709.2493 +0709.3743 +0709.3853 +0710.1810 +0711.1059 +0712.1595 +0801.4037 Combinatorics +0802.2146 Strongly Correlated Electrons +0804.4702 Rings and Algebras +0805.0276 +0805.3463 Combinatorics +0806.1950 +0807.1616 +0808.1663 Logic +0809.2138 +0809.3825 Phenomenology +0809.3909 +0809.4864 Differential Geometry +0810.5382 +0811.0172 Phenomenology +0811.2223 +0811.3952 +0901.0442 Geometric Topology +0901.1070 +0901.3654 Atomic Physics +0902.0905 Theory +0902.1333 Theory +0902.2668 Strongly Correlated Electrons +0903.1224 Classical Analysis and ODEs +0903.1471 +0903.1718 Astrophysics of Galaxies +0903.3666 Phenomenology +0903.4581 Classical Analysis and ODEs +0903.4587 Classical Analysis and ODEs +0903.4966 Algebraic Geometry +0904.1654 Phenomenology +0904.1851 +0904.3249 Mesoscale and Nanoscale Physics +0904.3623 Instrumentation and Methods for Astrophysics +0904.4418 +0905.0097 Theory +0905.0667 +0905.3608 +0905.3973 Probability +0905.4133 Superconductivity +0905.4227 +0906.1035 Differential Geometry +0906.1078 Chaotic Dynamics +0906.1157 Instrumentation and Detectors +0906.1646 Phenomenology +0906.2196 Instrumentation and Methods for Astrophysics +0906.2460 Theory +0906.3683 Optics +0906.3697 Optics +0906.5121 Theory +0907.0526 Rings and Algebras +0907.1830 Theory +0908.0213 +0908.1087 Plasma Physics +0908.2861 Pattern Formation and Solitons +0908.2983 Atomic Physics +0909.2945 Superconductivity +0909.3071 Probability +0909.4229 Category Theory +0909.5369 Methodology +0910.0720 Quantum Gases +0910.1986 +0911.0008 Theory +0911.0288 +0911.0595 Lattice +0911.1379 Networking and Internet Architecture +0911.1979 Theory +0911.2123 Theory +0911.2149 Phenomenology +0911.2158 Adaptation and Self-Organizing Systems +0911.2450 +0911.4892 Lattice +0912.0363 +0912.0672 Statistical Mechanics +0912.1285 +0912.1483 Computational Physics +0912.1840 Superconductivity +0912.2372 Phenomenology +0912.2403 Theory +0912.2936 Lattice +0912.2962 Instrumentation and Detectors +1001.0455 Mesoscale and Nanoscale Physics +1001.1168 History and Philosophy of Physics +1001.1784 Strongly Correlated Electrons +1001.2160 Formal Languages and Automata Theory +1001.4327 +1001.4791 Superconductivity +1002.0440 Combinatorics +1002.3598 Cosmology and Nongalactic Astrophysics +1002.3960 Group Theory +1003.0396 Software Engineering +1003.0554 Programming Languages +1003.3990 Probability +1003.4065 Other Computer Science +1003.4515 High Energy Astrophysical Phenomena +1003.4520 Materials Science +1003.4560 +1003.4680 Optics +1003.4737 High Energy Astrophysical Phenomena +1003.4739 Geometric Topology +1003.4741 Machine Learning +1003.4743 High Energy Astrophysical Phenomena +1003.4745 High Energy Astrophysical Phenomena +1003.4748 Phenomenology +1003.4759 Number Theory +1003.4762 Group Theory +1003.4764 Information Theory +1003.4768 Materials Science +1003.4769 Atmospheric and Oceanic Physics +1003.4780 Statistics Theory +1003.4781 Learning +1003.4784 Classical Analysis and ODEs +1003.4786 Mesoscale and Nanoscale Physics +1003.4787 Symplectic Geometry +1003.4789 Algebraic Geometry +1003.4793 Functional Analysis +1003.4796 Biological Physics +1003.4799 Logic in Computer Science +1003.4801 Instrumentation and Methods for Astrophysics +1003.4802 Logic in Computer Science +1003.4803 Logic in Computer Science +1003.4810 Combinatorics +1003.4811 Theory +1003.4815 +1003.4816 Materials Science +1003.4829 Algebraic Geometry +1003.4832 +1003.4834 Medical Physics +1003.4835 Complex Variables +1003.4836 Databases +1003.4844 Materials Science +1003.4851 +1003.4852 Information Theory +1003.4854 Theory +1003.4857 Functional Analysis +1003.4861 Solar and Stellar Astrophysics +1003.4867 Theory +1003.4868 Biological Physics +1003.4874 Algebraic Geometry +1003.4875 Instrumentation and Methods for Astrophysics +1003.4879 Information Theory +1003.4880 Optics +1003.4882 Mesoscale and Nanoscale Physics +1003.4901 +1003.4906 General Mathematics +1003.4909 Combinatorics +1003.4917 Probability +1003.4922 Representation Theory +1003.4926 Materials Science +1003.4935 Functional Analysis +1003.4936 Algebraic Geometry +1003.4941 +1003.4944 Machine Learning +1003.4945 Materials Science +1003.4949 Disordered Systems and Neural Networks +1003.4950 Probability +1003.4953 Phenomenology +1003.4955 Group Theory +1003.4958 Cellular Automata and Lattice Gases +1003.4963 Computational Geometry +1003.4964 General Physics +1003.4973 Classical Analysis and ODEs +1003.4976 Chaotic Dynamics +1003.4981 General Physics +astro-ph/0502006 +astro-ph/0504093 +astro-ph/0510628 +astro-ph/0510791 +astro-ph/0603008 +astro-ph/9904384 +cond-mat/0702091 Superconductivity +cs/0411008 Logic in Computer Science +gr-qc/0606119 +hep-ex/0111032 Experiment +hep-ex/0207019 Experiment +hep-ex/0207033 Experiment +hep-ex/0208047 Experiment +hep-ex/0211065 Experiment +hep-ex/0307052 Experiment +hep-ex/0411066 Experiment +hep-ex/0412025 Experiment +hep-ex/0412039 Experiment +hep-ex/0501068 Experiment +hep-ex/0503006 Experiment +hep-ex/0503008 Experiment +hep-ex/0503046 Experiment +hep-ex/0503047 Experiment +hep-ex/0506079 Experiment +hep-ex/0507019 Experiment +hep-ex/0510074 Experiment +hep-ex/0512066 Experiment +hep-ex/0601024 Experiment +hep-ex/0603018 Experiment +hep-ex/0604018 Experiment +hep-ex/0604049 Experiment +hep-ex/0605007 Experiment +hep-ex/0606022 Experiment +hep-ex/0606055 Experiment +hep-ex/0609015 Experiment +hep-ex/0609042 Experiment +hep-ex/0610012 Experiment +hep-ex/0610084 Experiment +hep-ex/0701046 Experiment +hep-ex/0702031 Experiment +hep-ex/9604004 Experiment +hep-ph/0005043 Phenomenology +hep-ph/0011091 Phenomenology +hep-ph/0106067 Phenomenology +hep-ph/0207071 Phenomenology +hep-ph/0211376 Phenomenology +hep-ph/0405096 Phenomenology +hep-ph/0507278 Phenomenology +hep-ph/0601244 Phenomenology +hep-ph/9508398 Phenomenology +hep-ph/9509244 Phenomenology +hep-ph/9510460 Phenomenology +hep-ph/9610303 Phenomenology +hep-ph/9903441 Phenomenology +hep-ph/9908280 Phenomenology +hep-th/0606180 Theory +math/0003113 Algebraic Geometry +math/0101071 Algebraic Geometry +math/0107044 Combinatorics +math/0112167 Algebraic Geometry +math/0112168 Algebraic Geometry +math/0206035 Representation Theory +math/0306423 Number Theory +math/0312375 Algebraic Geometry +math/0403437 Analysis of PDEs +math/0407194 Algebraic Geometry +math/0608555 Number Theory +math/0610177 Number Theory +math/0611616 Combinatorics +math/9405207 Logic +nucl-th/0306021 +nucl-th/9612056 +nucl-th/9810018 +physics/0611131 Plasma Physics +quant-ph/0005009 +quant-ph/0107087 +quant-ph/0108082 +quant-ph/0610214 +0704.0423 +0704.1281 +0706.2635 Mesoscale and Nanoscale Physics +0708.1415 Experiment +0708.3687 +0709.4254 Experiment +0711.0319 Experiment +0711.4337 Geometric Topology +0801.2762 Theory +0802.3661 +0803.1093 +0804.0043 Geometric Topology +0804.1886 Algebraic Geometry +0804.3405 +0806.1064 History and Philosophy of Physics +0806.1379 Experiment +0809.0989 Representation Theory +0810.0274 +0810.1599 +0812.2402 +0812.4662 Experiment +0901.0799 Solar and Stellar Astrophysics +0901.1338 Solar and Stellar Astrophysics +0901.3490 +0903.0296 General Physics +0903.3316 Statistical Mechanics +0904.0214 Theory +0904.2815 +0904.3221 Quantum Gases +0904.4879 Soft Condensed Matter +0905.0326 Soft Condensed Matter +0905.3150 Statistical Mechanics +0905.3938 Theory +0906.1890 Phenomenology +0906.3017 Dynamical Systems +0906.4285 +0906.4392 High Energy Astrophysical Phenomena +0906.4664 Probability +0906.4775 +0906.5176 +0907.1188 Statistical Mechanics +0907.2227 High Energy Astrophysical Phenomena +0907.5542 Theory +0908.3060 Statistical Mechanics +0908.3229 Differential Geometry +0909.1712 Physics and Society +0909.3272 +0910.0328 +0910.0453 Phenomenology +0910.0816 Lattice +0910.0951 Other Condensed Matter +0910.2039 Artificial Intelligence +0910.2918 Lattice +0910.2927 Lattice +0910.3692 Statistical Mechanics +0910.4325 Discrete Mathematics +0910.4822 +0910.5766 +0911.2557 Phenomenology +0911.4548 Mesoscale and Nanoscale Physics +0911.5567 Phenomenology +0911.5719 Functional Analysis +0912.0510 Group Theory +0912.1491 Solar and Stellar Astrophysics +0912.1608 Theory +0912.1804 +0912.2475 Theory +0912.3522 Optimization and Control +0912.4249 Optics +0912.4587 Theory +0912.4928 Theory +1001.0003 Theory +1001.0227 Phenomenology +1001.0230 Commutative Algebra +1001.1341 Phenomenology +1001.2228 Information Theory +1001.2977 Phenomenology +1001.3456 High Energy Astrophysical Phenomena +1001.4045 Astrophysics of Galaxies +1001.5033 Theory +1001.5168 Phenomenology +1001.5436 Atomic Physics +1002.0850 Theory +1002.1275 Theory +1002.2279 Theory +1002.2292 Theory +1002.2550 Atomic Physics +1002.3049 +1002.3764 Theory +1002.3778 Theory +1002.4575 Phenomenology +1002.4843 Theory +1003.0001 Cosmology and Nongalactic Astrophysics +1003.0076 Cosmology and Nongalactic Astrophysics +1003.0283 High Energy Astrophysical Phenomena +1003.0677 Cosmology and Nongalactic Astrophysics +1003.2077 Strongly Correlated Electrons +1003.2162 Superconductivity +1004.0192 Phenomenology +1004.0275 Phenomenology +1004.0627 +1004.0815 Phenomenology +1004.0822 +1004.0890 Cosmology and Nongalactic Astrophysics +1004.1969 Superconductivity +1004.2431 Plasma Physics +1004.2459 Cosmology and Nongalactic Astrophysics +1004.3092 Chemical Physics +1004.3341 Cosmology and Nongalactic Astrophysics +1004.3582 +1004.4768 Phenomenology +1005.0121 Combinatorics +1005.0223 +1005.0578 Optics +1005.1812 Quantum Gases +1005.2693 +1005.3019 Statistical Mechanics +1005.3032 Classical Analysis and ODEs +1005.3036 Functional Analysis +1005.3037 General Physics +1005.3049 Operator Algebras +1005.3050 Algebraic Geometry +1005.3053 Probability +1005.3073 Networking and Internet Architecture +1005.3079 Probability +1005.3091 +1005.3096 +1005.3097 Numerical Analysis +1005.3105 Solar and Stellar Astrophysics +1005.3106 Phenomenology +1005.3120 Algebraic Geometry +1005.3129 Quantum Gases +1005.3130 Classical Physics +1005.3131 Algebraic Geometry +1005.3132 General Topology +1005.3134 Dynamical Systems +1005.3136 Probability +1005.3138 +1005.3142 General Topology +1005.3144 Optimization and Control +1005.3146 Phenomenology +1005.3147 Number Theory +1005.3149 General Topology +1005.3158 Distributed, Parallel, and Cluster Computing +1005.3162 Methodology +1005.3163 Graphics +1005.3170 Probability +1005.3171 +1005.3175 Geophysics +1005.3176 Optimization and Control +1005.3177 +1005.3184 Information Theory +1005.3191 Cosmology and Nongalactic Astrophysics +1005.3192 Rings and Algebras +1005.3193 Rings and Algebras +1005.3203 Algebraic Geometry +1005.3205 Other Condensed Matter +1005.3219 Solar and Stellar Astrophysics +1005.3221 Theory +1005.3222 Solar and Stellar Astrophysics +1005.3224 Cryptography and Security +1005.3225 Applications +1005.3234 +1005.3235 General Mathematics +1005.3237 Classical Physics +1005.3242 Solar and Stellar Astrophysics +1005.3257 Algebraic Geometry +1005.3266 Geometric Topology +1005.3270 High Energy Astrophysical Phenomena +1005.3272 Theory +1005.3278 Solar and Stellar Astrophysics +1005.3284 Statistics Theory +1005.3286 Chaotic Dynamics +1005.3292 Optimization and Control +1005.3296 High Energy Astrophysical Phenomena +1005.3301 Biological Physics +astro-ph/0306123 +astro-ph/0307288 +astro-ph/0508210 +astro-ph/0603807 +astro-ph/0605437 +astro-ph/0612450 +astro-ph/0701117 +astro-ph/0701711 +cond-mat/9503112 +gr-qc/0208087 +hep-ex/0109031 Experiment +hep-ex/0507009 Experiment +hep-ex/0609035 Experiment +hep-ph/0008237 Phenomenology +hep-ph/0608023 Phenomenology +hep-th/0501172 Theory +math/0504445 Group Theory +nucl-ex/0408011 +nucl-th/0412100 +nucl-th/0601082 +physics/0602063 Physics and Society +quant-ph/0202045 +quant-ph/0304014 +0705.4268 Number Theory +0711.4942 Geophysics +0801.1443 Probability +0802.0289 Probability +0803.3039 Other Condensed Matter +0806.2628 Physics Education +0807.1004 Other Condensed Matter +0810.4651 Classical Analysis and ODEs +0810.5086 Differential Geometry +0811.2572 Data Structures and Algorithms +0812.1548 Other Condensed Matter +0902.1061 +0906.2169 Exactly Solvable and Integrable Systems +0906.4949 Quantum Gases +0907.2150 Probability +0908.3840 Materials Science +0908.4085 Cosmology and Nongalactic Astrophysics +0908.4475 +0908.4510 Theory +0909.0246 Statistical Mechanics +0909.5216 Machine Learning +0909.5635 Quantum Gases +0910.1024 +0910.1127 +0910.2291 Mesoscale and Nanoscale Physics +0910.4497 Materials Science +0911.1417 Algebraic Topology +0911.5456 Probability +0912.1833 Mesoscale and Nanoscale Physics +0912.3482 Subcellular Processes +0912.4445 Symplectic Geometry +1001.2880 Statistical Mechanics +1001.4349 Superconductivity +1002.1732 Rings and Algebras +1002.3929 Mesoscale and Nanoscale Physics +1002.4288 Disordered Systems and Neural Networks +1003.0833 Cosmology and Nongalactic Astrophysics +1003.1064 Number Theory +1003.3977 Physics and Society +1003.4354 Solar and Stellar Astrophysics +1004.2004 +1004.2772 Distributed, Parallel, and Cluster Computing +1004.2949 Mesoscale and Nanoscale Physics +1004.3184 Strongly Correlated Electrons +1004.4623 Number Theory +1004.4936 Number Theory +1004.5052 +1005.0626 Solar and Stellar Astrophysics +1005.0630 Cosmology and Nongalactic Astrophysics +1005.0640 Soft Condensed Matter +1005.0641 Solar and Stellar Astrophysics +1005.0646 Number Theory +1005.0649 Probability +1005.0651 +1005.0661 Number Theory +1005.0667 Numerical Analysis +1005.0669 +1005.0670 Data Structures and Algorithms +1005.0671 Numerical Analysis +1005.0675 Networking and Internet Architecture +1005.0678 Solar and Stellar Astrophysics +1005.0680 Geometric Topology +1005.0684 High Energy Astrophysical Phenomena +1005.0690 Mesoscale and Nanoscale Physics +1005.0691 Mesoscale and Nanoscale Physics +1005.0693 Networking and Internet Architecture +1005.0696 Data Analysis, Statistics and Probability +1005.0697 Networking and Internet Architecture +1005.0701 Classical Analysis and ODEs +1005.0702 Classical Analysis and ODEs +1005.0704 Cryptography and Security +1005.0707 Artificial Intelligence +1005.0710 Earth and Planetary Astrophysics +1005.0713 Analysis of PDEs +1005.0715 Group Theory +1005.0718 Strongly Correlated Electrons +1005.0724 Number Theory +1005.0727 +1005.0728 Probability +1005.0730 Soft Condensed Matter +1005.0731 Geometric Topology +1005.0732 Information Theory +1005.0734 Information Theory +1005.0736 Rings and Algebras +1005.0737 Logic in Computer Science +1005.0738 General Physics +1005.0739 Computational Physics +1005.0741 Numerical Analysis +1005.0745 Cosmology and Nongalactic Astrophysics +1005.0746 Algebraic Geometry +1005.0747 Quantitative Methods +1005.0748 Group Theory +1005.0754 Other Computer Science +1005.0755 Materials Science +1005.0762 Numerical Analysis +1005.0765 Discrete Mathematics +1005.0775 Combinatorics +1005.0782 Group Theory +1005.0786 Algebraic Geometry +1005.0789 +1005.0792 +1005.0793 Genomics +1005.0799 Lattice +1005.0802 +1005.0806 Performance +1005.0813 Databases +1005.0815 Dynamical Systems +1005.0816 Functional Analysis +1005.0822 Operator Algebras +1005.0823 Group Theory +math/0001143 Algebraic Geometry +math/0211336 Algebraic Geometry +math/0603246 Algebraic Geometry +math/0606658 Algebraic Geometry +math/0608441 Group Theory +math/0702756 Classical Analysis and ODEs +quant-ph/0610166 +0704.0522 Experiment +0704.0630 Experiment +0704.1266 Experiment +0704.2080 Experiment +0704.3593 Experiment +0705.0398 Experiment +0705.0704 Experiment +0705.1190 Experiment +0705.1820 Experiment +0705.2157 Experiment +0705.4008 Experiment +0706.1059 Experiment +0706.2870 Experiment +0706.3885 Experiment +0706.3893 Experiment +0707.1043 Experiment +0707.1633 Experiment +0707.1648 Experiment +0707.2798 Experiment +0707.2922 Experiment +0707.2980 Experiment +0707.4561 Experiment +0708.0050 Experiment +0708.0182 Experiment +0708.0376 Experiment +0708.1303 Experiment +0708.1544 Experiment +0708.1549 Experiment +0708.1565 Experiment +0708.2248 Experiment +0708.2260 Experiment +0708.2543 Experiment +0708.3650 Experiment +0708.3702 Experiment +0709.1698 Experiment +0709.1988 Experiment +0709.2486 General Physics +0709.2715 Experiment +0709.4165 Experiment +0709.4546 Complex Variables +0710.4451 Experiment +0710.5763 Experiment +0710.5775 Experiment +0711.0980 Experiment +0711.2047 Experiment +0711.2713 Experiment +0711.3914 Statistical Mechanics +0711.4417 Experiment +0711.4889 Experiment +0712.1516 Experiment +0712.2249 Experiment +0712.2963 +0712.3469 Experiment +0712.3493 Experiment +0712.3503 Experiment +0801.0697 Experiment +0801.0802 +0801.2006 Geometric Topology +0802.4035 Experiment +0802.4052 Experiment +0802.4237 Logic in Computer Science +0803.0772 Experiment +0803.1863 Experiment +0803.2838 Experiment +0803.4067 Statistical Mechanics +0803.4296 Experiment +0803.4451 Experiment +0804.0411 Experiment +0804.0896 Experiment +0804.1208 Experiment +0804.1854 Theory +0804.2089 Experiment +0804.2358 Strongly Correlated Electrons +0804.2422 Experiment +0804.4412 Experiment +0805.0497 Experiment +0805.1217 Experiment +0805.1317 Experiment +0805.2001 Experiment +0805.2312 Mesoscale and Nanoscale Physics +0805.2408 Experiment +0805.3405 Differential Geometry +0805.4796 Experiment +0806.3893 Experiment +0806.4419 Experiment +0806.4467 Experiment +0807.0816 Theory +0807.1086 Experiment +0807.1599 Experiment +0807.2014 Experiment +0807.2408 Experiment +0807.3103 Experiment +0807.3158 +0807.3935 Experiment +0807.4119 Experiment +0807.4544 Experiment +0807.4974 Experiment +0807.4975 Experiment +0807.4977 Experiment +0808.0333 Experiment +0808.0528 Experiment +0808.0676 +0808.0900 Experiment +0808.0971 Experiment +0808.1121 Experiment +0808.1338 Experiment +0808.1379 Experiment +0808.1487 Experiment +0808.1838 Experiment +0808.1866 Experiment +0808.3524 Experiment +0808.3586 Experiment +0809.0042 Experiment +0809.0828 Experiment +0809.1174 Experiment +0809.4120 Experiment +0809.4584 Mesoscale and Nanoscale Physics +0810.1323 Phenomenology +0811.0564 Experiment +0811.1979 Experiment +0811.4351 Statistical Mechanics +0812.1878 Number Theory +0812.3804 Experiment +0901.1223 Experiment +0901.1291 Experiment +0901.3522 Experiment +0901.3703 Experiment +0902.1708 Experiment +0902.2051 Experiment +0902.2660 Experiment +0903.0121 Differential Geometry +0903.1124 Experiment +0903.1220 Experiment +0903.1597 Experiment +0903.2225 Phenomenology +0904.0093 Superconductivity +0904.0339 Experiment +0904.2112 Experiment +0904.4063 Experiment +0904.4724 Experiment +0905.0868 Experiment +0905.1311 Dynamical Systems +0905.3615 Experiment +0905.4539 Experiment +0905.4778 Experiment +0906.2177 Experiment +0906.2219 Experiment +0906.5380 Chaotic Dynamics +0907.0026 Functional Analysis +0907.1681 Experiment +0907.1743 Experiment +0907.1776 Experiment +0907.2208 +0907.3094 Mesoscale and Nanoscale Physics +0907.3384 Mesoscale and Nanoscale Physics +0907.3485 Experiment +0907.5234 Numerical Analysis +0908.0415 Experiment +0908.0761 Experiment +0908.0806 Experiment +0908.2353 Group Theory +0908.2381 Experiment +0908.2840 Experiment +0908.2940 Computational Complexity +0908.2961 Mesoscale and Nanoscale Physics +0908.3589 Experiment +0909.3562 Experiment +0909.3981 Experiment +0909.5083 +0909.5555 Strongly Correlated Electrons +0910.0641 Combinatorics +0910.2129 +0910.2748 Analysis of PDEs +0910.4827 Mesoscale and Nanoscale Physics +0911.0158 Quantum Gases +0911.2024 Experiment +0912.0569 Representation Theory +0912.2113 +1001.1239 Superconductivity +1001.2542 Theory +1001.3227 Solar and Stellar Astrophysics +1002.0087 Classical Physics +1002.2043 +1002.2972 Superconductivity +1002.4314 Networking and Internet Architecture +1002.4809 Soft Condensed Matter +1003.0156 Group Theory +1003.2468 Optics +1003.4296 Cosmology and Nongalactic Astrophysics +1003.4400 Strongly Correlated Electrons +1004.0452 Phenomenology +1004.1172 Theory +1004.1242 +1004.1270 General Mathematics +1004.1410 High Energy Astrophysical Phenomena +1004.1412 High Energy Astrophysical Phenomena +1004.1416 +1004.1419 Materials Science +1004.1427 Chaotic Dynamics +1004.1428 Cosmology and Nongalactic Astrophysics +1004.1434 +1004.1438 Optimization and Control +1004.1440 Phenomenology +1004.1444 Complex Variables +1004.1455 +1004.1460 Cryptography and Security +1004.1461 Networking and Internet Architecture +1004.1469 Phenomenology +1004.1472 Logic in Computer Science +1004.1476 Probability +1004.1477 Number Theory +1004.1482 Rings and Algebras +1004.1487 Differential Geometry +1004.1494 Experiment +1004.1498 Geometric Topology +1004.1501 Probability +1004.1502 +1004.1506 Complex Variables +1004.1508 +1004.1511 Information Theory +1004.1512 Soft Condensed Matter +1004.1516 Earth and Planetary Astrophysics +1004.1518 Phenomenology +1004.1520 Number Theory +1004.1522 Computational Finance +1004.1523 General Physics +1004.1524 General Physics +1004.1525 Solar and Stellar Astrophysics +1004.1531 Quantum Algebra +1004.1534 Probability +1004.1538 +1004.1544 General Physics +1004.1547 Statistical Mechanics +1004.1550 Algebraic Topology +1004.1557 Solar and Stellar Astrophysics +1004.1571 Probability +1004.1574 Computational Finance +1004.1575 Computational Finance +1004.1576 Computational Finance +1004.1581 Probability +1004.1588 Computational Geometry +1004.1605 Statistics Theory +1004.1609 Differential Geometry +1004.1611 Plasma Physics +1004.1612 Superconductivity +1004.1613 Group Theory +1004.1614 Databases +1004.1615 Group Theory +1004.1616 Strongly Correlated Electrons +1004.1619 Chaotic Dynamics +1004.1620 Group Theory +1004.1622 Numerical Analysis +1004.1623 Probability +cond-mat/0104248 Superconductivity +cond-mat/0609016 Mesoscale and Nanoscale Physics +hep-ex/0702043 Experiment +hep-ex/0702046 Experiment +hep-ex/0703008 Experiment +hep-ex/0703016 Experiment +hep-ex/0703018 Experiment +hep-ex/0703019 Experiment +hep-ex/0703020 Experiment +hep-ex/0703021 Experiment +hep-ex/0703027 Experiment +hep-ex/0703030 Experiment +hep-ex/0703038 Experiment +math/0409039 K-Theory and Homology +math/0508455 Symplectic Geometry +physics/0511040 Optics +0706.3827 Statistical Finance +0707.1409 Plasma Physics +0708.3379 Superconductivity +0708.4024 Superconductivity +0709.2694 General Finance +0711.2324 Group Theory +0711.5001 Group Theory +0712.3984 +0802.0882 Superconductivity +0803.4457 Probability +0804.3164 Algebraic Topology +0804.3192 Dynamical Systems +0804.3448 +0804.3617 Dynamical Systems +0805.4441 +0806.0731 Algebraic Geometry +0806.3451 Analysis of PDEs +0807.3544 K-Theory and Homology +0807.3827 Quantum Algebra +0807.5129 Superconductivity +0808.1752 Mesoscale and Nanoscale Physics +0810.0896 Applications +0812.1712 Dynamical Systems +0901.0778 Fluid Dynamics +0901.1688 Combinatorics +0901.2374 Differential Geometry +0901.3736 +0902.0349 Algebraic Geometry +0902.1466 Number Theory +0902.4201 +0903.0560 Algebraic Geometry +0904.0746 Superconductivity +0904.2893 Group Theory +0905.2871 Chemical Physics +0905.3486 Dynamical Systems +0905.3862 Combinatorics +0905.4677 +0905.4777 Algebraic Topology +0907.1516 Probability +0907.3516 +0909.3761 Cosmology and Nongalactic Astrophysics +0909.5088 Algebraic Geometry +0910.1638 Rings and Algebras +0910.4370 Chaotic Dynamics +0910.4724 Rings and Algebras +0910.5876 Analysis of PDEs +0911.0329 Number Theory +0911.0573 Cosmology and Nongalactic Astrophysics +0911.1139 Mesoscale and Nanoscale Physics +0911.1803 +0911.3256 Information Theory +0911.5501 +0912.0778 Disordered Systems and Neural Networks +1001.2022 Solar and Stellar Astrophysics +1001.2060 Cryptography and Security +1001.2442 Mesoscale and Nanoscale Physics +1001.2933 Theory +1001.3372 Algebraic Topology +1001.3377 Solar and Stellar Astrophysics +1001.3696 Phenomenology +1002.0571 Probability +1002.3304 Quantum Gases +1002.3480 Instrumentation and Detectors +1002.3497 Instrumentation and Detectors +1002.4460 Physics and Society +1002.4646 +1003.1353 Spectral Theory +1003.1627 Disordered Systems and Neural Networks +1003.1867 Strongly Correlated Electrons +1003.3188 Strongly Correlated Electrons +1003.4152 Mesoscale and Nanoscale Physics +1004.1452 Statistical Mechanics +1004.2817 Combinatorics +1004.2847 Algebraic Geometry +1004.4596 +1004.4854 +1005.1188 Theory +1005.1237 Mesoscale and Nanoscale Physics +1005.1361 Risk Management +1005.2619 Astrophysics of Galaxies +1005.4172 +1006.0107 +1006.0270 +1006.0534 Probability +1006.1387 Superconductivity +1006.2779 Mesoscale and Nanoscale Physics +1006.3091 Superconductivity +1006.3157 Mesoscale and Nanoscale Physics +1006.3288 Algebraic Topology +1006.4595 Physics and Society +1006.5567 Materials Science +1007.0343 Optics +1007.0393 Atomic Physics +1007.0656 Statistical Mechanics +1007.2094 +1007.3274 Cosmology and Nongalactic Astrophysics +1007.4688 Statistical Mechanics +1007.4791 Statistics Theory +1007.5186 Mesoscale and Nanoscale Physics +1007.5378 Genomics +1007.5435 Numerical Analysis +1007.5447 Probability +1007.5448 Probability +1007.5479 Soft Condensed Matter +1008.0321 +1008.0621 Algebraic Geometry +1008.1673 Computation and Language +1008.2717 Optimization and Control +1008.2926 Category Theory +1008.3448 Group Theory +1008.3553 +1008.3573 Statistical Mechanics +1008.4081 Differential Geometry +1008.4802 Cosmology and Nongalactic Astrophysics +1008.4810 Superconductivity +1008.4811 Functional Analysis +1008.4814 Probability +1008.4816 Analysis of PDEs +1008.4818 Probability +1008.4819 +1008.4820 Computers and Society +1008.4824 Chemical Physics +1008.4832 Solar and Stellar Astrophysics +1008.4833 Superconductivity +1008.4839 +1008.4845 Dynamical Systems +1008.4846 +1008.4849 +1008.4850 Complex Variables +1008.4859 Complex Variables +1008.4860 Complex Variables +1008.4861 Complex Variables +1008.4867 Plasma Physics +1008.4870 Numerical Analysis +1008.4873 Cryptography and Security +1008.4878 Group Theory +1008.4880 Probability +1008.4887 Differential Geometry +1008.4889 Data Structures and Algorithms +1008.4893 Instrumentation and Methods for Astrophysics +1008.4898 Networking and Internet Architecture +1008.4899 High Energy Astrophysical Phenomena +1008.4900 Distributed, Parallel, and Cluster Computing +1008.4901 Mesoscale and Nanoscale Physics +1008.4904 Networking and Internet Architecture +1008.4908 Group Theory +1008.4909 Group Theory +1008.4915 Algebraic Topology +1008.4918 Cosmology and Nongalactic Astrophysics +1008.4920 Algebraic Topology +1008.4927 Combinatorics +1008.4929 Human-Computer Interaction +1008.4932 Astrophysics of Galaxies +1008.4934 Instrumentation and Methods for Astrophysics +1008.4935 General Physics +1008.4936 Cosmology and Nongalactic Astrophysics +1008.4938 Quantitative Methods +1008.4939 Theory +1008.4944 Instrumentation and Methods for Astrophysics +1008.4948 Cosmology and Nongalactic Astrophysics +1008.4949 Analysis of PDEs +1008.4957 Chaotic Dynamics +1008.4958 Functional Analysis +1008.4971 Commutative Algebra +1008.4972 Probability +1008.4974 Numerical Analysis +1008.4976 Analysis of PDEs +1008.4983 Cosmology and Nongalactic Astrophysics +1008.4984 Theory +1008.4986 Differential Geometry +1008.4988 Machine Learning +1008.5004 +1008.5009 +1008.5011 Geophysics +1008.5015 Cryptography and Security +1008.5017 Geometric Topology +1008.5020 +1008.5022 +1008.5024 Theory +1008.5026 Geometric Topology +1008.5027 Algebraic Geometry +1008.5028 Soft Condensed Matter +1008.5029 Logic in Computer Science +1008.5030 Analysis of PDEs +1008.5032 Astrophysics of Galaxies +1008.5033 Logic in Computer Science +1008.5035 Number Theory +1008.5037 Instrumentation and Methods for Astrophysics +1008.5040 Fluid Dynamics +1008.5043 Instrumentation and Methods for Astrophysics +1008.5045 General Physics +1008.5057 Databases +1008.5058 Optimization and Control +1008.5066 Instrumentation and Methods for Astrophysics +1008.5073 Databases +1008.5074 Adaptation and Self-Organizing Systems +1008.5076 Differential Geometry +1008.5078 Information Theory +1008.5080 Classical Analysis and ODEs +1008.5082 Analysis of PDEs +1008.5083 Differential Geometry +1008.5084 Quantum Algebra +1008.5088 Differential Geometry +1008.5102 Theory +1008.5108 Analysis of PDEs +1008.5110 Analysis of PDEs +1008.5111 +1008.5112 +1008.5125 Experiment +1008.5130 Combinatorics +1008.5131 Algebraic Topology +1008.5136 Astrophysics of Galaxies +1008.5137 +1008.5139 Materials Science +1008.5140 Probability +1008.5142 Mesoscale and Nanoscale Physics +cond-mat/0210434 Superconductivity +cond-mat/0306585 Superconductivity +cond-mat/0408371 Superconductivity +cond-mat/0410093 Superconductivity +cond-mat/0507524 Superconductivity +cond-mat/0510484 Superconductivity +cond-mat/0607059 Superconductivity +cond-mat/0703657 Materials Science +math/0109167 Differential Geometry +math/0303009 General Mathematics +math/0402268 Differential Geometry +math/0405579 Differential Geometry +math/0510477 Logic +math/0510517 Logic +math/0611608 Probability +physics/0702234 Plasma Physics +q-bio/0601009 Tissues and Organs +quant-ph/0602189 +0709.2189 Combinatorics +0804.0579 Algebraic Geometry +0811.4202 Numerical Analysis +0811.4214 Numerical Analysis +0901.4745 Numerical Analysis +0902.0440 Logic +0904.0816 Logic +0905.1476 Classical Analysis and ODEs +0906.2453 Superconductivity +0906.5045 Statistics Theory +0906.5177 Geometric Topology +0907.0651 Algebraic Geometry +0907.3861 Numerical Analysis +0908.3636 Numerical Analysis +0908.4416 Phenomenology +0909.3297 +0909.3720 +0910.1338 Mesoscale and Nanoscale Physics +0910.5644 +0911.0728 Earth and Planetary Astrophysics +0911.3498 Classical Physics +0911.4427 Mesoscale and Nanoscale Physics +0912.4164 Computational Geometry +0912.4819 +0912.5505 Theory +1001.1659 +1001.1918 Quantum Gases +1002.0443 Phenomenology +1002.3456 Statistical Mechanics +1002.3974 Statistical Mechanics +1003.1601 Populations and Evolution +1003.2819 Logic +1003.5036 Mesoscale and Nanoscale Physics +1003.5469 Superconductivity +1003.5618 Operator Algebras +1004.0593 Mesoscale and Nanoscale Physics +1004.1627 Exactly Solvable and Integrable Systems +1004.2604 Mesoscale and Nanoscale Physics +1004.2951 Classical Physics +1004.4622 Computational Complexity +1004.5277 Superconductivity +1005.3875 Earth and Planetary Astrophysics +1005.4076 Quantum Gases +1005.4799 Mesoscale and Nanoscale Physics +1006.2213 Solar and Stellar Astrophysics +1006.2724 Analysis of PDEs +1006.4913 Materials Science +1007.0651 Superconductivity +1007.2411 Cosmology and Nongalactic Astrophysics +1007.2461 Metric Geometry +1007.2481 +1007.2539 General Physics +1007.2589 +1007.2656 Computation +1007.2660 Combinatorics +1007.2665 Algebraic Geometry +1007.2666 Superconductivity +1007.2673 Computational Complexity +1007.2675 Computational Complexity +1007.2676 Combinatorics +1007.2677 Quantum Gases +1007.2685 Combinatorics +1007.2689 Genomics +1007.2693 Logic +1007.2695 Soft Condensed Matter +1007.2708 Materials Science +1007.2711 Group Theory +1007.2717 Phenomenology +1007.2723 +1007.2724 Combinatorics +1007.2726 Combinatorics +1007.2736 Superconductivity +1007.2737 Algebraic Geometry +1007.2739 Dynamical Systems +1007.2743 Accelerator Physics +1007.2747 Numerical Analysis +1007.2748 Experiment +1007.2750 Algebraic Topology +1007.2759 Metric Geometry +1007.2760 Solar and Stellar Astrophysics +1007.2761 Metric Geometry +1007.2762 Metric Geometry +1007.2763 Cosmology and Nongalactic Astrophysics +1007.2769 Combinatorics +1007.2772 Rings and Algebras +1007.2776 Classical Physics +1007.2777 Group Theory +1007.2788 K-Theory and Homology +1007.2799 +1007.2812 +1007.2814 Networking and Internet Architecture +1007.2818 Physics and Society +1007.2828 High Energy Astrophysical Phenomena +1007.2830 Algebraic Geometry +1007.2835 Algebraic Geometry +1007.2836 Algebraic Geometry +1007.2841 Algebraic Geometry +1007.2842 General Physics +1007.2843 Analysis of PDEs +1007.2844 General Physics +1007.2845 Group Theory +math/0501237 Rings and Algebras +math/0611543 Numerical Analysis +0705.1027 Optimization and Control +0801.0812 Spectral Theory +0804.1558 Number Theory +0805.3581 Symplectic Geometry +0807.0297 Mesoscale and Nanoscale Physics +0809.5282 Differential Geometry +0810.0209 Differential Geometry +0810.0483 +0901.2398 +0907.4510 Quantum Gases +0908.2853 Combinatorics +0909.1243 General Physics +0909.1548 +0911.1219 Materials Science +0912.1200 Data Structures and Algorithms +0912.4964 Differential Geometry +cond-mat/0609258 Mesoscale and Nanoscale Physics +nlin/0506045 Chaotic Dynamics +0805.4650 Physics and Society +0812.0066 Symplectic Geometry +0812.2578 Algebraic Geometry +0812.4701 Statistics Theory +0902.3929 Atomic Physics +0903.2421 Probability +0904.0054 K-Theory and Homology +0906.3362 General Physics +0906.4513 Superconductivity +0907.2159 +0909.0742 Cosmology and Nongalactic Astrophysics +0909.2391 Differential Geometry +0909.2778 Mesoscale and Nanoscale Physics +0909.3730 Optics +0909.3774 Statistical Mechanics +0909.5571 Superconductivity +0910.0016 +0911.4633 High Energy Astrophysical Phenomena +0912.0362 Disordered Systems and Neural Networks +0912.1256 Superconductivity +1002.3967 Classical Analysis and ODEs +0710.5414 Functional Analysis +0712.2223 +0801.2960 Dynamical Systems +0802.1962 Strongly Correlated Electrons +0805.1978 Geometric Topology +0808.2352 Representation Theory +0808.3762 Group Theory +0809.0068 Algebraic Geometry +0810.2154 Rings and Algebras +0812.2505 Group Theory +0904.1242 Data Structures and Algorithms +0905.2005 Superconductivity +0905.2661 Mesoscale and Nanoscale Physics +0906.4435 Strongly Correlated Electrons +0906.5306 Mesoscale and Nanoscale Physics +0907.1381 +0909.0251 Information Theory +0909.5601 Differential Geometry +0910.0638 Strongly Correlated Electrons +0910.2159 Optics +0910.2498 +0910.2644 Atomic and Molecular Clusters +0910.2735 Mesoscale and Nanoscale Physics +0910.5929 Algebraic Topology +0911.1396 Mesoscale and Nanoscale Physics +0911.1807 Digital Libraries +0911.3492 Computational Complexity +0911.3560 Materials Science +0911.5526 Computational Complexity +0912.0692 Superconductivity +0912.3000 Statistical Mechanics +0912.4977 Number Theory +1001.0081 Mesoscale and Nanoscale Physics +1001.0542 Strongly Correlated Electrons +1001.1818 +1001.2664 Mesoscale and Nanoscale Physics +1001.4537 Strongly Correlated Electrons +1002.0335 Earth and Planetary Astrophysics +1002.4597 Group Theory +1002.5020 Statistical Mechanics +1003.1483 Algebraic Geometry +1003.1611 Mesoscale and Nanoscale Physics +1003.3165 Physics and Society +1003.5178 Solar and Stellar Astrophysics +1004.0945 Solar and Stellar Astrophysics +1004.1545 Materials Science +1004.2223 Representation Theory +1004.3372 Information Theory +1004.3797 Operator Algebras +1004.4034 History and Philosophy of Physics +1004.4045 Cell Behavior +1004.5216 Information Theory +1004.5382 Logic in Computer Science +1004.5388 Theory +1004.5392 Materials Science +1004.5397 Physics and Society +1004.5412 Materials Science +1004.5413 Phenomenology +1004.5415 Cosmology and Nongalactic Astrophysics +1004.5421 Information Theory +1004.5427 Computer Vision and Pattern Recognition +1004.5428 Materials Science +1004.5433 Symbolic Computation +1004.5436 Discrete Mathematics +1004.5439 Number Theory +1004.5440 Combinatorics +1004.5464 Solar and Stellar Astrophysics +1004.5466 Number Theory +1004.5479 Information Theory +1004.5486 +1004.5490 Phenomenology +1004.5506 Numerical Analysis +1004.5527 Number Theory +1004.5530 Probability +1004.5534 Cryptography and Security +1004.5539 Instrumentation and Detectors +1004.5549 Symbolic Computation +1004.5550 Theory +1004.5555 Experiment +1004.5561 Instrumentation and Methods for Astrophysics +1004.5562 Mesoscale and Nanoscale Physics +1004.5563 Astrophysics of Galaxies +1004.5564 Experiment +1004.5566 Theory +1004.5570 Information Theory +1004.5571 Information Theory +1004.5574 Instrumentation and Detectors +1004.5582 +1004.5587 Genomics +1004.5601 Information Theory +cond-mat/0603346 Other Condensed Matter +hep-th/9801061 Theory +math/0506065 Differential Geometry +physics/0608075 General Physics +quant-ph/0503157 +quant-ph/0611004 +0704.1083 Number Theory +0704.1782 Combinatorics +0705.4485 Methodology +0706.2040 Quantitative Methods +0712.0339 Statistical Mechanics +0802.3649 Number Theory +0803.0313 Theory +0809.0131 Group Theory +0809.0845 Algebraic Geometry +0809.5055 +0810.5123 +0811.0033 +0811.0399 Phenomenology +0811.2024 Phenomenology +0811.2888 Phenomenology +0902.0082 Group Theory +0903.2271 High Energy Astrophysical Phenomena +0903.2275 High Energy Astrophysical Phenomena +0903.3340 Phenomenology +0903.5158 Cosmology and Nongalactic Astrophysics +0904.1692 Information Theory +0905.1560 +0905.1950 High Energy Astrophysical Phenomena +0905.4639 +0905.4642 K-Theory and Homology +0905.4916 +0906.1401 Operator Algebras +0906.1889 +0906.2355 Strongly Correlated Electrons +0906.2611 Geophysics +0906.3280 Phenomenology +0906.3535 Combinatorics +0906.3680 +0906.4164 Phenomenology +0906.4403 Quantum Gases +0906.4730 Rings and Algebras +0907.1015 +0907.1132 Geometric Topology +0907.1826 Probability +0907.3054 Analysis of PDEs +0907.3540 Phenomenology +0907.4469 Differential Geometry +0907.4791 Phenomenology +0909.1339 Classical Analysis and ODEs +0909.1499 Strongly Correlated Electrons +0909.3171 +0909.3215 Theory +0909.4339 Probability +0909.5240 +0910.0706 Statistical Mechanics +0910.2662 Mesoscale and Nanoscale Physics +0910.2680 +0910.5700 Phenomenology +0911.2282 Quantum Algebra +0911.3088 Soft Condensed Matter +0911.3618 Statistical Mechanics +0911.3929 Statistical Mechanics +0911.4486 Strongly Correlated Electrons +0911.4567 Optics +0911.5210 Representation Theory +0912.0251 Mesoscale and Nanoscale Physics +0912.0990 Geometric Topology +0912.3449 Earth and Planetary Astrophysics +0912.4697 Statistical Mechanics +0912.5343 Human-Computer Interaction +1001.1862 Rings and Algebras +1001.2790 Astrophysics of Galaxies +1001.3668 +1001.4969 Number Theory +1002.0756 Differential Geometry +1002.1541 Numerical Analysis +1002.1684 Representation Theory +1002.2106 +1002.3608 Algebraic Geometry +1002.3613 Algebraic Topology +1002.3623 Analysis of PDEs +1002.3627 Risk Management +1002.3628 Phenomenology +1002.3629 Distributed, Parallel, and Cluster Computing +1002.3630 Functional Analysis +1002.3633 Pricing of Securities +1002.3635 Disordered Systems and Neural Networks +1002.3638 Theory +1002.3640 Computation +1002.3641 Fluid Dynamics +1002.3642 Strongly Correlated Electrons +1002.3644 Algebraic Geometry +1002.3645 Superconductivity +1002.3657 Combinatorics +1002.3663 Phenomenology +1002.3664 Computational Complexity +1002.3681 Portfolio Management +1002.3683 Algebraic Geometry +1002.3686 +1002.3695 Superconductivity +1002.3699 Other Condensed Matter +1002.3700 Algebraic Geometry +1002.3706 Strongly Correlated Electrons +1002.3711 Software Engineering +1002.3716 Probability +1002.3719 Strongly Correlated Electrons +1002.3726 K-Theory and Homology +1002.3727 Complex Variables +1002.3728 Functional Analysis +1002.3730 +1002.3732 Strongly Correlated Electrons +1002.3735 Geometric Topology +1002.3739 Mesoscale and Nanoscale Physics +1002.3744 Machine Learning +1002.3746 Probability +1002.3749 Differential Geometry +1002.3751 Rings and Algebras +1002.3754 Number Theory +1002.3757 Distributed, Parallel, and Cluster Computing +1002.3772 Materials Science +1002.3773 Strongly Correlated Electrons +1002.3774 Algebraic Geometry +1002.3780 +1002.3785 Combinatorics +1002.3791 Solar and Stellar Astrophysics +1002.3793 Numerical Analysis +1002.3794 Risk Management +1002.3802 Computational Physics +1002.3803 Phenomenology +1002.3807 Adaptation and Self-Organizing Systems +1002.3808 Number Theory +1002.3814 Discrete Mathematics +1002.3817 General Mathematics +cond-mat/9912323 Strongly Correlated Electrons +gr-qc/0005050 +hep-th/0403070 Theory +hep-th/0511282 Theory +math-ph/0205013 +math/0209283 Number Theory +math/0210184 Number Theory +math/0309196 Number Theory +math/0406601 Number Theory +math/0506140 Operator Algebras +math/0509623 Number Theory +math/0510090 Number Theory +math/0601545 Number Theory +0704.1001 Quantum Algebra +0708.2257 +0802.1943 Representation Theory +0901.1811 +0901.2993 Probability +0901.4221 Quantum Algebra +0902.0709 Probability +0903.0748 +0903.5379 Combinatorics +0904.1499 Algebraic Geometry +0904.3175 +0905.0795 Algebraic Geometry +0906.2748 +0907.1584 Quantum Gases +0907.2300 Symbolic Computation +0908.1717 +0908.4557 Algebraic Geometry +0909.3775 Statistical Mechanics +0910.0050 +0910.3094 Chemical Physics +0910.3861 +0911.4455 Phenomenology +0912.0193 Soft Condensed Matter +0912.3589 Computer Vision and Pattern Recognition +1001.4497 Theory +1002.0049 Other Computer Science +1002.0459 Chaotic Dynamics +1002.0931 Superconductivity +1002.2172 +1002.3362 +1002.4736 Analysis of PDEs +1003.0516 Learning +1003.1749 +1004.0724 Strongly Correlated Electrons +1004.0902 Formal Languages and Automata Theory +1004.1168 Representation Theory +1004.2185 Strongly Correlated Electrons +1004.3482 Probability +1004.3974 Materials Science +1005.4158 Lattice +1006.0073 Superconductivity +1006.1077 Phenomenology +1006.2522 Strongly Correlated Electrons +1006.2981 Atmospheric and Oceanic Physics +1006.4507 +1006.4838 Strongly Correlated Electrons +1006.5057 Portfolio Management +1006.5728 Cosmology and Nongalactic Astrophysics +1007.0962 +1007.1539 Astrophysics of Galaxies +1007.1723 Strongly Correlated Electrons +1007.1858 Phenomenology +1007.2049 Learning +1007.2592 Strongly Correlated Electrons +1007.2891 Quantum Gases +1007.3722 Superconductivity +1007.3914 Superconductivity +1008.0327 Information Theory +1008.2087 Materials Science +1008.2503 Strongly Correlated Electrons +1008.2582 Superconductivity +1008.3256 Disordered Systems and Neural Networks +1008.3381 Phenomenology +1008.4700 Optics +1009.4910 Analysis of PDEs +1009.4959 Computation +1009.5143 Data Structures and Algorithms +1009.6006 Optimization and Control +1009.6079 Computational Engineering, Finance, and Science +1009.6202 Instrumentation and Detectors +1010.0002 Instrumentation and Methods for Astrophysics +1010.0008 Solar and Stellar Astrophysics +1010.0011 Information Theory +1010.0012 Computer Vision and Pattern Recognition +1010.0014 Numerical Analysis +1010.0015 Theory +1010.0016 +1010.0018 Rings and Algebras +1010.0027 General Finance +1010.0034 Multiagent Systems +1010.0036 Classical Analysis and ODEs +1010.0045 Mesoscale and Nanoscale Physics +1010.0051 Rings and Algebras +1010.0056 Optimization and Control +1010.0057 Optics +1010.0058 Plasma Physics +1010.0081 Differential Geometry +1010.0082 Superconductivity +1010.0083 Metric Geometry +1010.0084 +1010.0092 Algebraic Geometry +1010.0093 +1010.0094 Spectral Theory +1010.0097 Phenomenology +1010.0099 +1010.0105 Analysis of PDEs +1010.0117 Solar and Stellar Astrophysics +1010.0120 Number Theory +1010.0121 Solar and Stellar Astrophysics +1010.0122 Databases +1010.0124 Applications +1010.0133 Combinatorics +1010.0135 Materials Science +1010.0141 Data Structures and Algorithms +1010.0143 Probability +1010.0144 Phenomenology +1010.0145 Multiagent Systems +1010.0146 Category Theory +1010.0149 Statistical Mechanics +1010.0150 Multiagent Systems +1010.0155 Multiagent Systems +1010.0157 Data Structures and Algorithms +1010.0161 Probability +1010.0168 Networking and Internet Architecture +1010.0169 Cryptography and Security +1010.0178 Representation Theory +1010.0182 Information Theory +1010.0184 Functional Analysis +1010.0185 General Topology +1010.0187 Mesoscale and Nanoscale Physics +1010.0189 Information Theory +1010.0194 General Mathematics +1010.0195 Experiment +1010.0199 Group Theory +1010.0205 Combinatorics +1010.0210 Physics and Society +1010.0211 Differential Geometry +1010.0212 Analysis of PDEs +1010.0215 Dynamical Systems +1010.0216 Solar and Stellar Astrophysics +1010.0217 High Energy Astrophysical Phenomena +1010.0222 Plasma Physics +1010.0226 Information Theory +1010.0228 Rings and Algebras +1010.0235 High Energy Astrophysical Phenomena +1010.0237 Computers and Society +1010.0238 Differential Geometry +1010.0241 +1010.0245 Phenomenology +math/0209282 Algebraic Geometry +math/0307326 Algebraic Geometry +math/0310057 Combinatorics +math/0506039 Quantum Algebra +math/0507106 Quantum Algebra +math/0507107 Quantum Algebra +math/0601055 Quantum Algebra +math/0610683 Algebraic Geometry +0706.1480 General Mathematics +0706.1481 Group Theory +0706.3899 Chaotic Dynamics +0707.3319 +0707.4207 +0707.4447 General Mathematics +0708.0517 Numerical Analysis +0709.3325 Functional Analysis +0711.0576 +0711.4537 Chaotic Dynamics +0712.0675 Superconductivity +0712.1402 Computational Complexity +0801.0370 Disordered Systems and Neural Networks +0802.4092 Materials Science +0803.2177 Statistical Mechanics +0804.0917 Rings and Algebras +0805.1705 Chemical Physics +0806.4793 +0807.5042 Commutative Algebra +0808.0653 Commutative Algebra +0808.1000 Information Theory +0809.2483 Complex Variables +0810.0679 Strongly Correlated Electrons +0810.4709 Atomic Physics +0811.0499 Data Analysis, Statistics and Probability +0811.3797 Materials Science +0812.3930 Materials Science +0901.4855 Strongly Correlated Electrons +0902.0319 General Topology +0902.2603 Algebraic Topology +0903.0706 Rings and Algebras +0903.1341 Materials Science +0903.1361 Probability +0903.4718 Optics +0904.0764 +0904.2754 Mesoscale and Nanoscale Physics +0904.3173 Superconductivity +0905.2351 Optics +0905.3674 +0905.3887 Neurons and Cognition +0905.4939 Theory +0906.3585 Databases +0907.2675 Representation Theory +0907.3299 Theory +0909.0847 Disordered Systems and Neural Networks +0909.1857 Analysis of PDEs +0909.2138 Theory +0909.3169 Computational Geometry +0909.3400 Pattern Formation and Solitons +0910.0247 Strongly Correlated Electrons +0910.2577 +0910.2613 Algebraic Geometry +0910.2647 Materials Science +0910.2985 Statistical Mechanics +0910.3044 Statistical Mechanics +0910.3202 Statistical Mechanics +0910.5471 Theory +0910.5713 Phenomenology +0911.0385 Superconductivity +0911.1577 Materials Science +0911.1797 Molecular Networks +0911.2517 Mesoscale and Nanoscale Physics +0911.3467 Rings and Algebras +0911.4375 Computational Geometry +0912.0902 Statistics Theory +0912.1134 Mesoscale and Nanoscale Physics +0912.4137 Strongly Correlated Electrons +0912.4231 Atomic Physics +0912.4419 +0912.4824 Theory +0912.5486 General Physics +1001.2625 Databases +1001.2722 Optimization and Control +1001.3160 Materials Science +1001.4849 Cosmology and Nongalactic Astrophysics +1002.0923 Experiment +1002.1267 Analysis of PDEs +1002.2180 Operator Algebras +1002.2484 Other Condensed Matter +1002.3033 +1002.4109 Physics and Society +1002.4149 Phenomenology +1002.4315 Databases +1002.4548 Information Theory +1002.4900 High Energy Astrophysical Phenomena +1003.0645 Computer Vision and Pattern Recognition +1003.0764 Trading and Market Microstructure +1003.1078 Phenomenology +1003.1095 +1003.1165 Theory +1003.1178 Symplectic Geometry +1003.1343 Computer Science and Game Theory +1003.1349 Geometric Topology +1003.1352 Mesoscale and Nanoscale Physics +1003.1354 Learning +1003.1364 Networking and Internet Architecture +1003.1368 Solar and Stellar Astrophysics +1003.1369 +1003.1373 Mesoscale and Nanoscale Physics +1003.1378 General Mathematics +1003.1382 General Mathematics +1003.1386 +1003.1391 Experiment +1003.1401 Graphics +1003.1405 Differential Geometry +1003.1411 Populations and Evolution +1003.1414 Superconductivity +1003.1415 Cell Behavior +1003.1421 Algebraic Geometry +1003.1422 Information Theory +1003.1426 Computational Geometry +1003.1431 Differential Geometry +1003.1432 Atomic Physics +1003.1433 Phenomenology +1003.1441 +1003.1443 +1003.1444 Experiment +1003.1448 Materials Science +1003.1451 Differential Geometry +1003.1455 Computation and Language +1003.1458 Cryptography and Security +1003.1461 +1003.1462 Cryptography and Security +1003.1464 Optimization and Control +1003.1466 Optimization and Control +1003.1472 Other Computer Science +1003.1474 Fluid Dynamics +1003.1475 Fluid Dynamics +1003.1481 Space Physics +1003.1490 Probability +1003.1491 Other Computer Science +1003.1492 Cryptography and Security +1003.1494 Information Retrieval +1003.1497 Other Computer Science +1003.1499 Computers and Society +1003.1501 History and Overview +1003.1502 Other Computer Science +1003.1503 Differential Geometry +1003.1506 Numerical Analysis +1003.1512 Classical Analysis and ODEs +1003.1513 Statistics Theory +1003.1518 Mesoscale and Nanoscale Physics +1003.1535 Statistics Theory +1003.1539 Astrophysics of Galaxies +1003.1540 +1003.1542 Strongly Correlated Electrons +1003.1546 Differential Geometry +1003.1550 Computer Science and Game Theory +1003.1551 Commutative Algebra +1003.1553 Algebraic Geometry +1003.1556 Classical Physics +1003.1558 +1003.1562 Group Theory +1003.1566 Complex Variables +1003.1567 Complex Variables +1003.1572 Programming Languages +1003.1573 Statistics Theory +1003.1574 Commutative Algebra +1003.1581 Strongly Correlated Electrons +1003.1584 Probability +1003.1586 Functional Analysis +1003.1587 Functional Analysis +1003.1588 Artificial Intelligence +1003.1589 Complex Variables +1003.1592 Complex Variables +1003.1593 Atomic Physics +1003.1594 Optimization and Control +1003.1595 Superconductivity +1003.1596 Analysis of PDEs +1003.1602 Functional Analysis +1003.1604 Phenomenology +1003.1608 Distributed, Parallel, and Cluster Computing +1003.1610 Rings and Algebras +1003.1616 Analysis of PDEs +1003.1621 Statistical Mechanics +1003.1622 Statistical Mechanics +1003.1623 Soft Condensed Matter +1003.1630 Statistics Theory +1003.1635 Cosmology and Nongalactic Astrophysics +1003.1640 Combinatorics +1003.1655 Information Theory +1003.1657 Probability +1003.1666 Strongly Correlated Electrons +1003.1680 +1003.1683 +1003.1688 Combinatorics +1003.1689 General Mathematics +1003.1691 Combinatorics +1003.1693 Rings and Algebras +1003.1697 Functional Analysis +1003.1699 Analysis of PDEs +1003.1700 Probability +1003.1704 Algebraic Geometry +1003.1707 Differential Geometry +1003.1711 Biological Physics +chao-dyn/9904006 Chaotic Dynamics +chao-dyn/9910006 Chaotic Dynamics +cond-mat/0301359 Strongly Correlated Electrons +cond-mat/0310525 Superconductivity +cond-mat/0412656 Strongly Correlated Electrons +cond-mat/0501577 Strongly Correlated Electrons +cond-mat/0509219 Mesoscale and Nanoscale Physics +cond-mat/0605674 Materials Science +cond-mat/0606123 Strongly Correlated Electrons +cond-mat/0702058 Statistical Mechanics +cond-mat/9905015 +hep-ph/0507255 Phenomenology +math/0006148 Algebraic Geometry +math/0102017 Algebraic Geometry +math/0102082 Algebraic Geometry +math/0304442 Algebraic Topology +math/0507116 Category Theory +math/0507349 Category Theory +math/0601702 Dynamical Systems +math/0602084 Category Theory +math/0608452 Category Theory +math/0701601 Group Theory +nlin/0003019 Chaotic Dynamics +nlin/0209016 Chaotic Dynamics +nlin/0501052 Pattern Formation and Solitons +nlin/0608008 Chaotic Dynamics +nlin/0608059 Chaotic Dynamics +nlin/0701025 Chaotic Dynamics +physics/0603267 General Physics +physics/0610219 Atomic Physics +0707.1379 Fluid Dynamics +0707.3627 Rings and Algebras +0708.0510 Fluid Dynamics +0708.3664 Group Theory +0708.4029 Functional Analysis +0708.4195 Functional Analysis +0708.4387 Combinatorics +0708.4389 Combinatorics +0708.4400 Combinatorics +0708.4406 Combinatorics +0708.4409 Combinatorics +0709.3215 Probability +0709.4172 Materials Science +0709.4618 Exactly Solvable and Integrable Systems +0710.0437 Group Theory +0710.4031 Combinatorics +0710.5447 Physics and Society +0711.1847 Algebraic Geometry +0801.1655 Combinatorics +0801.1656 Combinatorics +0801.3009 Rings and Algebras +0802.0852 Rings and Algebras +0802.3888 Discrete Mathematics +0802.4170 Physics and Society +0803.1222 Probability +0803.1318 Analysis of PDEs +0803.2774 Symplectic Geometry +0804.0848 Probability +0804.1096 Phenomenology +0804.4078 Logic +0805.0730 Combinatorics +0805.1528 Algebraic Topology +0805.2912 Physics and Society +0805.3071 General Finance +0806.1652 Statistics Theory +0806.2881 Superconductivity +0806.3898 Rings and Algebras +0806.4501 Atomic Physics +0807.1464 +0807.1607 Differential Geometry +0807.2303 Combinatorics +0807.4411 Strongly Correlated Electrons +0808.0350 Dynamical Systems +0809.0668 +0809.1724 Algebraic Geometry +0809.2942 +0809.3598 Materials Science +0810.4866 Rings and Algebras +0811.0460 Other Condensed Matter +0812.4730 Combinatorics +0901.2080 Pricing of Securities +0901.2313 Superconductivity +0901.2513 Number Theory +0902.1200 Probability +0902.3624 Exactly Solvable and Integrable Systems +0904.1492 Symplectic Geometry +0904.1568 Solar and Stellar Astrophysics +0904.3743 Representation Theory +0904.4916 +0905.1935 Operator Algebras +0905.4024 Other Condensed Matter +0906.0868 Quantum Gases +0906.2070 +0906.2153 Probability +0906.3064 +0906.3634 Statistical Mechanics +0906.4877 Quantum Gases +0906.4986 Populations and Evolution +0907.0182 Mesoscale and Nanoscale Physics +0907.0400 Strongly Correlated Electrons +0907.0533 +0907.1367 Complex Variables +0907.2212 Pattern Formation and Solitons +0907.2239 Strongly Correlated Electrons +0907.2447 Representation Theory +0907.2728 Functional Analysis +0907.2908 Probability +0907.3063 Biological Physics +0907.3705 Combinatorics +0908.0178 Differential Geometry +0908.0479 Functional Analysis +0908.1218 Representation Theory +0908.1346 Materials Science +0908.4485 Mesoscale and Nanoscale Physics +0908.4533 Algebraic Geometry +0909.0255 Quantum Gases +0909.1841 Phenomenology +0909.4580 Superconductivity +0909.4924 Materials Science +0909.4981 Differential Geometry +0910.0292 Rings and Algebras +0910.2326 +0910.3061 Quantum Gases +0910.4115 Classical Analysis and ODEs +0910.4492 Phenomenology +0910.5134 Cosmology and Nongalactic Astrophysics +0910.5389 Pattern Formation and Solitons +0910.5907 Superconductivity +0911.2020 Number Theory +0911.3854 +0911.4614 History and Philosophy of Physics +0911.5132 Chemical Physics +0911.5405 +0912.0295 Superconductivity +0912.1648 Phenomenology +0912.1652 Statistical Mechanics +0912.1729 Theory +0912.1887 Cosmology and Nongalactic Astrophysics +0912.1984 Theory +0912.4525 Materials Science +0912.4670 Combinatorics +1001.0109 Earth and Planetary Astrophysics +1001.2115 Mesoscale and Nanoscale Physics +1001.2505 Superconductivity +1001.3943 +1001.4141 Theory +1001.4402 +1001.4570 Group Theory +1001.5461 +1002.0132 Rings and Algebras +1002.1483 Strongly Correlated Electrons +1002.1924 Strongly Correlated Electrons +1002.2483 +1002.2624 Quantum Algebra +1002.3071 Analysis of PDEs +1002.3161 Cosmology and Nongalactic Astrophysics +1002.3286 Statistical Mechanics +1002.4123 Optimization and Control +1003.0612 Analysis of PDEs +1003.0745 Theory +1003.0881 Probability +1003.1357 +1003.1457 Neural and Evolutionary Computing +1003.1467 General Topology +1003.1835 Combinatorics +1003.2002 +1003.2221 Number Theory +1003.2239 Quantum Gases +1003.2636 High Energy Astrophysical Phenomena +1003.2640 Astrophysics of Galaxies +1003.2641 Artificial Intelligence +1003.2642 Optics +1003.2649 Probability +1003.2650 Instrumentation and Detectors +1003.2651 Mesoscale and Nanoscale Physics +1003.2656 Astrophysics of Galaxies +1003.2657 Earth and Planetary Astrophysics +1003.2660 Human-Computer Interaction +1003.2664 Computers and Society +1003.2666 General Physics +1003.2670 Differential Geometry +1003.2676 Operator Algebras +1003.2677 Information Retrieval +1003.2678 Exactly Solvable and Integrable Systems +1003.2680 Soft Condensed Matter +1003.2681 Information Theory +1003.2682 Databases +1003.2683 +1003.2684 +1003.2685 Materials Science +1003.2686 +1003.2687 +1003.2690 Geophysics +1003.2692 Statistical Finance +1003.2698 +1003.2702 +1003.2703 Rings and Algebras +1003.2704 Geophysics +1003.2707 Algebraic Geometry +1003.2708 +1003.2711 Statistics Theory +1003.2712 Plasma Physics +1003.2713 Plasma Physics +1003.2714 Plasma Physics +1003.2724 Neural and Evolutionary Computing +1003.2727 Statistical Mechanics +1003.2731 Statistical Mechanics +1003.2732 Soft Condensed Matter +1003.2739 Solar and Stellar Astrophysics +1003.2742 Representation Theory +1003.2749 Information Theory +1003.2751 Learning +1003.2758 +1003.2761 +1003.2764 +1003.2767 Computer Science and Game Theory +1003.2768 Optics +1003.2772 Geophysics +1003.2775 Superconductivity +1003.2780 Fluid Dynamics +1003.2781 +1003.2782 Information Theory +1003.2783 +1003.2789 Complex Variables +1003.2794 +1003.2796 Mesoscale and Nanoscale Physics +1003.2800 +1003.2801 Logic in Computer Science +1003.2804 Statistics Theory +1003.2805 Complex Variables +1003.2810 Algebraic Topology +1003.2815 Cosmology and Nongalactic Astrophysics +1003.2818 Solar and Stellar Astrophysics +1003.2821 Functional Analysis +1003.2823 Methodology +1003.2830 +1003.2831 Methodology +1003.2833 Geometric Topology +1003.2836 Information Theory +1003.2837 Plasma Physics +1003.2841 Phenomenology +1003.2842 Mesoscale and Nanoscale Physics +1003.2844 +1003.2845 Chemical Physics +1003.2846 Complex Variables +1003.2847 Instrumentation and Methods for Astrophysics +1003.2853 Phenomenology +1003.2856 +1003.2868 Solar and Stellar Astrophysics +1003.2870 Solar and Stellar Astrophysics +1003.2872 Analysis of PDEs +1003.2874 Operator Algebras +1003.2875 Probability +1003.2876 Group Theory +1003.2878 Statistical Mechanics +1003.2884 History and Philosophy of Physics +1003.2885 Analysis of PDEs +1003.2886 Adaptation and Self-Organizing Systems +1003.2887 Adaptation and Self-Organizing Systems +1003.2888 Analysis of PDEs +1003.2889 Optimization and Control +1003.2896 Mesoscale and Nanoscale Physics +1003.2897 Algebraic Topology +1003.2898 Metric Geometry +1003.2902 +1003.2906 High Energy Astrophysical Phenomena +1003.2921 Exactly Solvable and Integrable Systems +1003.2922 Populations and Evolution +1003.2924 Earth and Planetary Astrophysics +1003.2927 Number Theory +1003.2930 Portfolio Management +1003.2945 Differential Geometry +1003.2948 Complex Variables +1003.2950 Data Analysis, Statistics and Probability +1003.2951 Commutative Algebra +1003.2962 Geometric Topology +1003.2967 General Physics +1003.2969 High Energy Astrophysical Phenomena +1003.2988 Strongly Correlated Electrons +1003.2993 +1003.2995 Chaotic Dynamics +1003.2999 Fluid Dynamics +1003.3000 Number Theory +1003.3001 Chemical Physics +1003.3004 Number Theory +1003.3008 Mesoscale and Nanoscale Physics +cond-mat/0604545 Mesoscale and Nanoscale Physics +cond-mat/0611039 Statistical Mechanics +cond-mat/0701631 Statistical Mechanics +cond-mat/0703138 Statistical Mechanics +math/0002233 Probability +math/0101090 Spectral Theory +math/0203210 Dynamical Systems +math/0208049 Algebraic Geometry +math/0212056 Rings and Algebras +math/0212334 Classical Analysis and ODEs +math/0307228 Operator Algebras +math/0310354 Algebraic Geometry +math/0401211 Geometric Topology +math/0401402 Probability +math/0402198 Differential Geometry +math/0404444 Operator Algebras +math/0405231 Probability +math/0405471 Complex Variables +math/0407439 Algebraic Geometry +math/0409198 Classical Analysis and ODEs +math/0409267 Operator Algebras +math/0412108 Functional Analysis +math/0412446 Complex Variables +math/0501227 Algebraic Geometry +math/0501498 Algebraic Geometry +math/0505066 Analysis of PDEs +math/0505550 Operator Algebras +math/0505619 Representation Theory +math/0508552 Functional Analysis +math/0509567 Algebraic Geometry +math/0511061 Operator Algebras +math/0511067 Probability +math/0601304 Algebraic Geometry +math/0603006 Differential Geometry +math/0603025 Operator Algebras +math/0603301 Complex Variables +math/0604372 Functional Analysis +math/0607374 Symplectic Geometry +math/0608589 Operator Algebras +math/0608724 Classical Analysis and ODEs +math/0608797 Analysis of PDEs +math/0609846 Representation Theory +math/0610205 Group Theory +math/0612755 Complex Variables +math/0702505 Algebraic Geometry +math/0702700 Operator Algebras +math/0703401 Representation Theory +math/0703788 Complex Variables +physics/0207067 General Physics +0710.1921 Mesoscale and Nanoscale Physics +0801.3545 Symplectic Geometry +0802.0118 Group Theory +0804.1807 Populations and Evolution +0804.3605 Other Quantitative Biology +0808.0796 Statistical Mechanics +0809.1461 Representation Theory +0809.2195 Probability +0809.3046 Group Theory +0812.3530 Representation Theory +0903.3178 Physics and Society +0904.0043 Number Theory +0905.1199 Algebraic Topology +0906.0444 Superconductivity +0906.0905 Cosmology and Nongalactic Astrophysics +0907.0374 High Energy Astrophysical Phenomena +0907.3010 Earth and Planetary Astrophysics +0907.5343 Geometric Topology +0908.1013 Algebraic Topology +0908.1794 Quantum Gases +0909.0417 Superconductivity +0909.1031 Group Theory +0909.1062 Computational Geometry +0910.2836 Differential Geometry +0911.2806 Phenomenology +0911.3251 Differential Geometry +0911.3423 Theory +0911.4344 Analysis of PDEs +0912.0094 Materials Science +0912.0987 Group Theory +0912.2662 Geometric Topology +0912.4411 Combinatorics +0912.4552 Plasma Physics +1001.0952 +1001.1877 Cryptography and Security +1001.3807 +1001.4109 Symplectic Geometry +1002.4206 Strongly Correlated Electrons +1002.4385 Numerical Analysis +1002.4618 +1003.2309 Phenomenology +1004.0710 +1004.1131 High Energy Astrophysical Phenomena +1004.1751 Geometric Topology +1004.2332 Superconductivity +1004.3133 Analysis of PDEs +1004.5042 Statistical Mechanics +1005.1603 Phenomenology +1005.3164 Representation Theory +1005.4091 +1005.4164 Disordered Systems and Neural Networks +1005.5056 Group Theory +1005.5200 Materials Science +1006.0671 Optimization and Control +1006.3582 Materials Science +1006.4381 Number Theory +1006.4618 Superconductivity +1006.5764 Astrophysics of Galaxies +1007.0077 Analysis of PDEs +1007.0441 Theory +1007.1068 Atomic Physics +1007.1315 Quantitative Methods +1007.4844 Quantum Gases +1007.5053 Phenomenology +1008.1041 Materials Science +1008.2397 High Energy Astrophysical Phenomena +1008.5393 Information Theory +1009.0529 Theory +1009.0921 Information Theory +1009.1721 Soft Condensed Matter +1009.1951 Experiment +1009.2218 Computational Geometry +1009.2414 Complex Variables +1009.2621 Materials Science +1009.2757 Numerical Analysis +1009.2765 Software Engineering +1009.2768 Numerical Analysis +1009.2770 Earth and Planetary Astrophysics +1009.2771 +1009.2775 Software Engineering +1009.2784 Materials Science +1009.2785 Software Engineering +1009.2787 Software Engineering +1009.2789 Logic in Computer Science +1009.2790 Logic in Computer Science +1009.2791 Logic in Computer Science +1009.2792 Logic in Computer Science +1009.2793 Programming Languages +1009.2794 Logic in Computer Science +1009.2795 Logic in Computer Science +1009.2796 Sound +1009.2797 Software Engineering +1009.2805 Pattern Formation and Solitons +1009.2806 Complex Variables +1009.2809 +1009.2814 Optics +1009.2815 General Mathematics +1009.2822 Probability +1009.2823 Commutative Algebra +1009.2824 Instrumentation and Methods for Astrophysics +1009.2826 Cryptography and Security +1009.2832 Cryptography and Security +1009.2833 Complex Variables +1009.2844 Cosmology and Nongalactic Astrophysics +1009.2848 Superconductivity +1009.2853 Algebraic Geometry +1009.2857 Biomolecules +1009.2858 Networking and Internet Architecture +1009.2859 +1009.2860 Differential Geometry +1009.2863 Analysis of PDEs +1009.2864 Representation Theory +1009.2865 Cosmology and Nongalactic Astrophysics +1009.2867 +1009.2869 +1009.2870 Materials Science +1009.2874 Analysis of PDEs +1009.2882 Classical Analysis and ODEs +1009.2890 Solar and Stellar Astrophysics +1009.2895 Algebraic Geometry +1009.2898 Statistics Theory +1009.2900 Programming Languages +1009.2902 Software Engineering +1009.2903 Experiment +1009.2908 Instrumentation and Detectors +1009.2911 Instrumentation and Methods for Astrophysics +1009.2912 Differential Geometry +1009.2917 Strongly Correlated Electrons +1009.2920 Materials Science +1009.2926 Materials Science +1009.2927 Information Theory +1009.2928 Statistical Finance +1009.2929 Combinatorics +1009.2932 Dynamical Systems +1009.2943 Statistics Theory +1009.2944 Number Theory +1009.2948 Metric Geometry +1009.2951 Solar and Stellar Astrophysics +1009.2955 Information Theory +1009.2958 Biomolecules +1009.2966 Solar and Stellar Astrophysics +1009.2971 Phenomenology +1009.2974 Classical Analysis and ODEs +1009.2977 Functional Analysis +1009.2979 Solar and Stellar Astrophysics +1009.2984 Probability +1009.2998 Dynamical Systems +1009.3000 Dynamical Systems +1009.3005 +cond-mat/0402283 Statistical Mechanics +cond-mat/0405539 Disordered Systems and Neural Networks +cond-mat/0412714 Other Condensed Matter +cond-mat/0503134 Disordered Systems and Neural Networks +cond-mat/0604107 Superconductivity +cond-mat/0607827 Strongly Correlated Electrons +cond-mat/0612092 Superconductivity +cond-mat/9703180 Superconductivity +cond-mat/9805348 Statistical Mechanics +cond-mat/9910170 Strongly Correlated Electrons +cond-mat/9911182 Strongly Correlated Electrons +math/0404327 Number Theory +math/0504039 Combinatorics +0705.4098 Theory +0705.4518 Phenomenology +0706.2049 Algebraic Geometry +0707.4139 Phenomenology +0709.4072 Algebraic Geometry +0710.5443 Phenomenology +0711.0400 Theory +0711.1160 Group Theory +0711.2758 Algebraic Geometry +0712.4123 Numerical Analysis +0802.3274 Populations and Evolution +0803.2069 +0805.0285 +0805.0289 History and Philosophy of Physics +0805.2588 Phenomenology +0805.3030 Algebraic Topology +0807.4357 Materials Science +0808.2462 Phenomenology +0808.3162 General Physics +0809.4842 Differential Geometry +0810.3177 Methodology +0811.4331 Lattice +0811.4461 Commutative Algebra +0812.3380 +0812.4168 Phenomenology +0901.0331 K-Theory and Homology +0901.0843 Algebraic Topology +0901.3818 Phenomenology +0901.3947 General Physics +0902.2033 General Physics +0903.1518 Theory +0903.4190 Theory +0903.4927 Soft Condensed Matter +0904.4030 Symbolic Computation +0905.0478 Operator Algebras +0905.2089 +0906.0063 +0906.2192 Theory +0907.0140 Quantum Gases +0907.0440 Statistics Theory +0907.3839 +0907.4062 Phenomenology +0907.4147 +0907.4358 Complex Variables +0907.4458 +0907.4749 +0908.1001 Cosmology and Nongalactic Astrophysics +0908.1668 +0908.2698 Superconductivity +0909.3806 Mesoscale and Nanoscale Physics +0909.4976 +0910.0543 Atmospheric and Oceanic Physics +0910.1723 Applications +0910.4943 Molecular Networks +0910.5491 Materials Science +0911.1376 Soft Condensed Matter +0911.3451 Complex Variables +0912.1117 Quantum Gases +1001.0141 General Physics +1001.5026 Cosmology and Nongalactic Astrophysics +1002.0116 General Physics +1002.0231 +1003.1661 +1004.0224 Number Theory +1004.0233 Analysis of PDEs +1004.0242 Statistics Theory +1004.0243 Human-Computer Interaction +1004.0248 Human-Computer Interaction +1004.0250 Cosmology and Nongalactic Astrophysics +1004.0256 Human-Computer Interaction +1004.0258 Human-Computer Interaction +1004.0259 Human-Computer Interaction +1004.0262 Operator Algebras +1004.0265 +1004.0271 Differential Geometry +1004.0277 Soft Condensed Matter +1004.0290 Differential Geometry +1004.0293 High Energy Astrophysical Phenomena +1004.0295 Group Theory +1004.0297 Experiment +1004.0300 +1004.0316 Superconductivity +1004.0318 Algebraic Geometry +1004.0320 +1004.0323 Dynamical Systems +1004.0325 Solar and Stellar Astrophysics +1004.0327 Algebraic Geometry +1004.0328 General Physics +1004.0341 Analysis of PDEs +1004.0344 Mesoscale and Nanoscale Physics +1004.0345 Optics +1004.0347 General Mathematics +1004.0349 Mesoscale and Nanoscale Physics +1004.0351 Data Structures and Algorithms +1004.0352 Theory +1004.0357 Numerical Analysis +1004.0367 Cryptography and Security +1004.0372 Data Analysis, Statistics and Probability +1004.0374 Differential Geometry +1004.0380 Astrophysics of Galaxies +astro-ph/0203094 +astro-ph/0205214 +astro-ph/0209156 +astro-ph/0210502 +astro-ph/0211544 +astro-ph/0303301 +astro-ph/0402490 +astro-ph/0407604 +astro-ph/0407631 +astro-ph/0409106 +astro-ph/0410147 +astro-ph/0412007 +astro-ph/0501626 +astro-ph/0502191 +astro-ph/0508294 +astro-ph/0605684 +astro-ph/0609597 +cond-mat/0209492 Statistical Mechanics +cond-mat/0210085 Statistical Mechanics +cond-mat/0211168 Statistical Mechanics +cond-mat/0303272 Statistical Mechanics +cond-mat/0307606 Statistical Mechanics +cond-mat/0309499 +cond-mat/0406297 Disordered Systems and Neural Networks +cond-mat/0411105 Mesoscale and Nanoscale Physics +cond-mat/0501197 Disordered Systems and Neural Networks +cond-mat/0502052 Other Condensed Matter +cond-mat/0505409 Disordered Systems and Neural Networks +cond-mat/0506529 Strongly Correlated Electrons +cond-mat/0507011 Mesoscale and Nanoscale Physics +cond-mat/0511619 Other Condensed Matter +cond-mat/0606472 Mesoscale and Nanoscale Physics +cond-mat/9403021 +gr-qc/0205042 +gr-qc/0205134 +gr-qc/0207076 +gr-qc/0209079 +gr-qc/0210064 +gr-qc/0310135 +gr-qc/0502106 +gr-qc/0509040 +gr-qc/0511104 +gr-qc/0603051 +hep-ex/0205038 Experiment +hep-lat/0204016 Lattice +hep-lat/0205005 Lattice +hep-lat/0205016 Lattice +hep-lat/0206003 Lattice +hep-lat/0209098 Lattice +hep-lat/0211004 Lattice +hep-lat/0211020 Lattice +hep-lat/0212029 Lattice +hep-lat/0302007 Lattice +hep-lat/0304006 Lattice +hep-lat/0306012 Lattice +hep-lat/0307024 Lattice +hep-lat/0309028 Lattice +hep-lat/0401030 Lattice +hep-lat/0405025 Lattice +hep-lat/0411025 Lattice +hep-lat/0412023 Lattice +hep-lat/0503004 Lattice +hep-lat/0503033 Lattice +hep-lat/0507016 Lattice +hep-lat/0508003 Lattice +hep-lat/0509069 Lattice +hep-lat/0510047 Lattice +hep-lat/0601024 Lattice +hep-lat/0602019 Lattice +hep-ph/0105304 Phenomenology +hep-ph/0111391 Phenomenology +hep-ph/0202012 Phenomenology +hep-ph/0202090 Phenomenology +hep-ph/0202247 Phenomenology +hep-ph/0203182 Phenomenology +hep-ph/0204046 Phenomenology +hep-ph/0204056 Phenomenology +hep-ph/0204112 Phenomenology +hep-ph/0204142 Phenomenology +hep-ph/0204287 Phenomenology +hep-ph/0204293 Phenomenology +hep-ph/0204350 Phenomenology +hep-ph/0205010 Phenomenology +hep-ph/0205022 Phenomenology +hep-ph/0205048 Phenomenology +hep-ph/0205099 Phenomenology +hep-ph/0205180 Phenomenology +hep-ph/0205202 Phenomenology +hep-ph/0205227 Phenomenology +hep-ph/0205341 Phenomenology +hep-ph/0206001 Phenomenology +hep-ph/0206070 Phenomenology +hep-ph/0206086 Phenomenology +hep-ph/0206131 Phenomenology +hep-ph/0206155 Phenomenology +hep-ph/0207002 Phenomenology +hep-ph/0207020 Phenomenology +hep-ph/0207026 Phenomenology +hep-ph/0207053 Phenomenology +hep-ph/0207076 Phenomenology +hep-ph/0207104 Phenomenology +hep-ph/0207133 Phenomenology +hep-ph/0207196 Phenomenology +hep-ph/0207199 Phenomenology +hep-ph/0207277 Phenomenology +hep-ph/0207300 Phenomenology +hep-ph/0207307 Phenomenology +hep-ph/0208038 Phenomenology +hep-ph/0208217 Phenomenology +hep-ph/0208218 Phenomenology +hep-ph/0208220 Phenomenology +hep-ph/0208240 Phenomenology +hep-ph/0208241 Phenomenology +hep-ph/0209090 Phenomenology +hep-ph/0209095 Phenomenology +hep-ph/0209100 Phenomenology +hep-ph/0209121 Phenomenology +hep-ph/0209154 Phenomenology +hep-ph/0209175 Phenomenology +hep-ph/0209193 Phenomenology +hep-ph/0209300 Phenomenology +hep-ph/0210038 Phenomenology +hep-ph/0210261 Phenomenology +hep-ph/0210276 Phenomenology +hep-ph/0210376 Phenomenology +hep-ph/0210411 Phenomenology +hep-ph/0211018 Phenomenology +hep-ph/0211191 Phenomenology +hep-ph/0211204 Phenomenology +hep-ph/0211227 Phenomenology +hep-ph/0211229 Phenomenology +hep-ph/0211272 Phenomenology +hep-ph/0211282 Phenomenology +hep-ph/0211310 Phenomenology +hep-ph/0211352 Phenomenology +hep-ph/0211358 Phenomenology +hep-ph/0211385 Phenomenology +hep-ph/0211418 Phenomenology +hep-ph/0211420 Phenomenology +hep-ph/0212113 Phenomenology +hep-ph/0212119 Phenomenology +hep-ph/0212132 Phenomenology +hep-ph/0212207 Phenomenology +hep-ph/0212216 Phenomenology +hep-ph/0212245 Phenomenology +hep-ph/0212339 Phenomenology +hep-ph/0301014 Phenomenology +hep-ph/0301015 Phenomenology +hep-ph/0301121 Phenomenology +hep-ph/0301142 Phenomenology +hep-ph/0301168 Phenomenology +hep-ph/0302061 Phenomenology +hep-ph/0302074 Phenomenology +hep-ph/0302108 Phenomenology +hep-ph/0302168 Phenomenology +hep-ph/0302174 Phenomenology +hep-ph/0302188 Phenomenology +hep-ph/0302191 Phenomenology +hep-ph/0302265 Phenomenology +hep-ph/0303046 Phenomenology +hep-ph/0303052 Phenomenology +hep-ph/0303113 Phenomenology +hep-ph/0304027 Phenomenology +hep-ph/0304069 Phenomenology +hep-ph/0304130 Phenomenology +hep-ph/0304167 Phenomenology +hep-ph/0304178 Phenomenology +hep-ph/0304212 Phenomenology +hep-ph/0304216 Phenomenology +hep-ph/0304234 Phenomenology +hep-ph/0304245 Phenomenology +hep-ph/0305112 Phenomenology +hep-ph/0305122 Phenomenology +hep-ph/0305134 Phenomenology +hep-ph/0305178 Phenomenology +hep-ph/0306002 Phenomenology +hep-ph/0306022 Phenomenology +hep-ph/0306049 Phenomenology +hep-ph/0306180 Phenomenology +hep-ph/0306186 Phenomenology +hep-ph/0306220 Phenomenology +hep-ph/0306250 Phenomenology +hep-ph/0307001 Phenomenology +hep-ph/0307035 Phenomenology +hep-ph/0307074 Phenomenology +hep-ph/0307076 Phenomenology +hep-ph/0307091 Phenomenology +hep-ph/0307113 Phenomenology +hep-ph/0307120 Phenomenology +hep-ph/0307144 Phenomenology +hep-ph/0307223 Phenomenology +hep-ph/0307273 Phenomenology +hep-ph/0307331 Phenomenology +hep-ph/0307334 Phenomenology +hep-ph/0307397 Phenomenology +hep-ph/0308031 Phenomenology +hep-ph/0308039 Phenomenology +hep-ph/0308044 Phenomenology +hep-ph/0308045 Phenomenology +hep-ph/0308068 Phenomenology +hep-ph/0308096 Phenomenology +hep-ph/0308115 Phenomenology +hep-ph/0308119 Phenomenology +hep-ph/0308165 Phenomenology +hep-ph/0308231 Phenomenology +hep-ph/0308246 Phenomenology +hep-ph/0309043 Phenomenology +hep-ph/0309165 Phenomenology +hep-ph/0309174 Phenomenology +hep-ph/0309291 Phenomenology +hep-ph/0309305 Phenomenology +hep-ph/0309323 Phenomenology +hep-ph/0310020 Phenomenology +hep-ph/0310201 Phenomenology +hep-ph/0311082 Phenomenology +hep-ph/0311177 Phenomenology +hep-ph/0311206 Phenomenology +hep-ph/0311254 Phenomenology +hep-ph/0311290 Phenomenology +hep-ph/0311304 Phenomenology +hep-ph/0311345 Phenomenology +hep-ph/0311348 Phenomenology +hep-ph/0312002 Phenomenology +hep-ph/0312067 Phenomenology +hep-ph/0312125 Phenomenology +hep-ph/0312159 Phenomenology +hep-ph/0312186 Phenomenology +hep-ph/0312189 Phenomenology +hep-ph/0312237 Phenomenology +hep-ph/0312264 Phenomenology +hep-ph/0401002 Phenomenology +hep-ph/0401014 Phenomenology +hep-ph/0401024 Phenomenology +hep-ph/0401041 Phenomenology +hep-ph/0401087 Phenomenology +hep-ph/0401092 Phenomenology +hep-ph/0401115 Phenomenology +hep-ph/0401133 Phenomenology +hep-ph/0401158 Phenomenology +hep-ph/0402045 Phenomenology +hep-ph/0402076 Phenomenology +hep-ph/0402121 Phenomenology +hep-ph/0402134 Phenomenology +hep-ph/0402155 Phenomenology +hep-ph/0402178 Phenomenology +hep-ph/0402241 Phenomenology +hep-ph/0402281 Phenomenology +hep-ph/0403278 Phenomenology +hep-ph/0404034 Phenomenology +hep-ph/0404103 Phenomenology +hep-ph/0404111 Phenomenology +hep-ph/0404119 Phenomenology +hep-ph/0404182 Phenomenology +hep-ph/0404285 Phenomenology +hep-ph/0405066 Phenomenology +hep-ph/0405193 Phenomenology +hep-ph/0406007 Phenomenology +hep-ph/0406020 Phenomenology +hep-ph/0406046 Phenomenology +hep-ph/0406096 Phenomenology +hep-ph/0406160 Phenomenology +hep-ph/0406221 Phenomenology +hep-ph/0406262 Phenomenology +hep-ph/0407241 Phenomenology +hep-ph/0407340 Phenomenology +hep-ph/0408155 Phenomenology +hep-ph/0408295 Phenomenology +hep-ph/0408296 Phenomenology +hep-ph/0408308 Phenomenology +hep-ph/0408315 Phenomenology +hep-ph/0409021 Phenomenology +hep-ph/0409259 Phenomenology +hep-ph/0409266 Phenomenology +hep-ph/0409291 Phenomenology +hep-ph/0409310 Phenomenology +hep-ph/0410068 Phenomenology +hep-ph/0410094 Phenomenology +hep-ph/0410135 Phenomenology +hep-ph/0410157 Phenomenology +hep-ph/0410170 Phenomenology +hep-ph/0410212 Phenomenology +hep-ph/0410216 Phenomenology +hep-ph/0410295 Phenomenology +hep-ph/0410312 Phenomenology +hep-ph/0410386 Phenomenology +hep-ph/0411018 Phenomenology +hep-ph/0411111 Phenomenology +hep-ph/0411112 Phenomenology +hep-ph/0411136 Phenomenology +hep-ph/0411331 Phenomenology +hep-ph/0411382 Phenomenology +hep-ph/0412018 Phenomenology +hep-ph/0412104 Phenomenology +hep-ph/0412116 Phenomenology +hep-ph/0412118 Phenomenology +hep-ph/0412153 Phenomenology +hep-ph/0412241 Phenomenology +hep-ph/0412259 Phenomenology +hep-ph/0501091 Phenomenology +hep-ph/0501144 Phenomenology +hep-ph/0501164 Phenomenology +hep-ph/0501189 Phenomenology +hep-ph/0501237 Phenomenology +hep-ph/0502031 Phenomenology +hep-ph/0502106 Phenomenology +hep-ph/0502112 Phenomenology +hep-ph/0502118 Phenomenology +hep-ph/0502189 Phenomenology +hep-ph/0502243 Phenomenology +hep-ph/0503016 Phenomenology +hep-ph/0503022 Phenomenology +hep-ph/0503070 Phenomenology +hep-ph/0503098 Phenomenology +hep-ph/0503107 Phenomenology +hep-ph/0503176 Phenomenology +hep-ph/0503188 Phenomenology +hep-ph/0504092 Phenomenology +hep-ph/0504115 Phenomenology +hep-ph/0504137 Phenomenology +hep-ph/0504146 Phenomenology +hep-ph/0504165 Phenomenology +hep-ph/0504190 Phenomenology +hep-ph/0505075 Phenomenology +hep-ph/0505238 Phenomenology +hep-ph/0505251 Phenomenology +hep-ph/0505252 Phenomenology +hep-ph/0505269 Phenomenology +hep-ph/0506037 Phenomenology +hep-ph/0506185 Phenomenology +hep-ph/0506212 Phenomenology +hep-ph/0506214 Phenomenology +hep-ph/0506262 Phenomenology +hep-ph/0506288 Phenomenology +hep-ph/0507032 Phenomenology +hep-ph/0507045 Phenomenology +hep-ph/0507061 Phenomenology +hep-ph/0507131 Phenomenology +hep-ph/0507176 Phenomenology +hep-ph/0507178 Phenomenology +hep-ph/0507196 Phenomenology +hep-ph/0508044 Phenomenology +hep-ph/0508047 Phenomenology +hep-ph/0508055 Phenomenology +hep-ph/0508077 Phenomenology +hep-ph/0508130 Phenomenology +hep-ph/0508157 Phenomenology +hep-ph/0508203 Phenomenology +hep-ph/0508250 Phenomenology +hep-ph/0509041 Phenomenology +hep-ph/0509090 Phenomenology +hep-ph/0509161 Phenomenology +hep-ph/0510235 Phenomenology +hep-ph/0510332 Phenomenology +hep-ph/0510404 Phenomenology +hep-ph/0511002 Phenomenology +hep-ph/0511248 Phenomenology +hep-ph/0512171 Phenomenology +hep-ph/0601080 Phenomenology +hep-ph/0602109 Phenomenology +hep-ph/0603237 Phenomenology +hep-ph/0604101 Phenomenology +hep-ph/0604110 Phenomenology +hep-ph/0604126 Phenomenology +hep-ph/0605166 Phenomenology +hep-ph/0605231 Phenomenology +hep-ph/0605326 Phenomenology +hep-ph/0606179 Phenomenology +hep-ph/0606277 Phenomenology +hep-ph/0607185 Phenomenology +hep-ph/0608208 Phenomenology +hep-th/0104254 Theory +hep-th/0108220 Theory +hep-th/0110066 Theory +hep-th/0110109 Theory +hep-th/0112139 Theory +hep-th/0201183 Theory +hep-th/0201248 Theory +hep-th/0202050 Theory +hep-th/0202067 Theory +hep-th/0202069 Theory +hep-th/0202139 Theory +hep-th/0202197 Theory +hep-th/0203110 Theory +hep-th/0203184 Theory +hep-th/0203236 Theory +hep-th/0204025 Theory +hep-th/0204072 Theory +hep-th/0204110 Theory +hep-th/0204152 Theory +hep-th/0204154 Theory +hep-th/0204187 Theory +hep-th/0204204 Theory +hep-th/0204231 Theory +hep-th/0205006 Theory +hep-th/0205014 Theory +hep-th/0205033 Theory +hep-th/0205038 Theory +hep-th/0205122 Theory +hep-th/0205134 Theory +hep-th/0205163 Theory +hep-th/0205178 Theory +hep-th/0205180 Theory +hep-th/0205182 Theory +hep-th/0205184 Theory +hep-th/0205193 Theory +hep-th/0205204 Theory +hep-th/0205216 Theory +hep-th/0206070 Theory +hep-th/0206091 Theory +hep-th/0206092 Theory +hep-th/0206093 Theory +hep-th/0206094 Theory +hep-th/0206153 Theory +hep-th/0206183 Theory +hep-th/0206185 Theory +hep-th/0206208 Theory +hep-th/0206223 Theory +hep-th/0206234 Theory +hep-th/0206238 Theory +hep-th/0206255 Theory +hep-th/0207051 Theory +hep-th/0207077 Theory +hep-th/0207106 Theory +hep-th/0207131 Theory +hep-th/0207159 Theory +hep-th/0207163 Theory +hep-th/0207177 Theory +hep-th/0207181 Theory +hep-th/0207197 Theory +hep-th/0207199 Theory +hep-th/0207211 Theory +hep-th/0207212 Theory +hep-th/0207221 Theory +hep-th/0207246 Theory +hep-th/0208009 Theory +hep-th/0208059 Theory +hep-th/0208103 Theory +hep-th/0208110 Theory +hep-th/0208111 Theory +hep-th/0208137 Theory +hep-th/0208139 Theory +hep-th/0208151 Theory +hep-th/0208171 Theory +hep-th/0208182 Theory +hep-th/0208190 Theory +hep-th/0208202 Theory +hep-th/0209003 Theory +hep-th/0209009 Theory +hep-th/0209012 Theory +hep-th/0209047 Theory +hep-th/0209064 Theory +hep-th/0209068 Theory +hep-th/0209085 Theory +hep-th/0209102 Theory +hep-th/0209125 Theory +hep-th/0209132 Theory +hep-th/0209145 Theory +hep-th/0209166 Theory +hep-th/0209184 Theory +hep-th/0209186 Theory +hep-th/0209220 Theory +hep-th/0209236 Theory +hep-th/0209237 Theory +hep-th/0210011 Theory +hep-th/0210014 Theory +hep-th/0210043 Theory +hep-th/0210067 Theory +hep-th/0210087 Theory +hep-th/0210101 Theory +hep-th/0210123 Theory +hep-th/0210137 Theory +hep-th/0210139 Theory +hep-th/0210153 Theory +hep-th/0210158 Theory +hep-th/0210168 Theory +hep-th/0210169 Theory +hep-th/0210196 Theory +hep-th/0210219 Theory +hep-th/0210241 Theory +hep-th/0210246 Theory +hep-th/0210280 Theory +hep-th/0211011 Theory +hep-th/0211092 Theory +hep-th/0211103 Theory +hep-th/0211113 Theory +hep-th/0211148 Theory +hep-th/0211172 Theory +hep-th/0211181 Theory +hep-th/0211183 Theory +hep-th/0211189 Theory +hep-th/0211192 Theory +hep-th/0211196 Theory +hep-th/0211201 Theory +hep-th/0211246 Theory +hep-th/0211268 Theory +hep-th/0211279 Theory +hep-th/0211282 Theory +hep-th/0211283 Theory +hep-th/0212003 Theory +hep-th/0212020 Theory +hep-th/0212024 Theory +hep-th/0212028 Theory +hep-th/0212042 Theory +hep-th/0212051 Theory +hep-th/0212057 Theory +hep-th/0212064 Theory +hep-th/0212069 Theory +hep-th/0212079 Theory +hep-th/0212084 Theory +hep-th/0212103 Theory +hep-th/0212116 Theory +hep-th/0212135 Theory +hep-th/0212138 Theory +hep-th/0212139 Theory +hep-th/0212158 Theory +hep-th/0212175 Theory +hep-th/0212181 Theory +hep-th/0212186 Theory +hep-th/0212194 Theory +hep-th/0212198 Theory +hep-th/0212214 Theory +hep-th/0212218 Theory +hep-th/0212219 Theory +hep-th/0212231 Theory +hep-th/0212239 Theory +hep-th/0212273 Theory +hep-th/0212276 Theory +hep-th/0212343 Theory +hep-th/0301011 Theory +hep-th/0301021 Theory +hep-th/0301035 Theory +hep-th/0301055 Theory +hep-th/0301058 Theory +hep-th/0301062 Theory +hep-th/0301075 Theory +hep-th/0301083 Theory +hep-th/0301095 Theory +hep-th/0301123 Theory +hep-th/0301147 Theory +hep-th/0301157 Theory +hep-th/0301164 Theory +hep-th/0301184 Theory +hep-th/0301232 Theory +hep-th/0301241 Theory +hep-th/0301243 Theory +hep-th/0301250 Theory +hep-th/0302015 Theory +hep-th/0302019 Theory +hep-th/0302020 Theory +hep-th/0302021 Theory +hep-th/0302050 Theory +hep-th/0302074 Theory +hep-th/0302093 Theory +hep-th/0302106 Theory +hep-th/0302140 Theory +hep-th/0302152 Theory +hep-th/0302182 Theory +hep-th/0302190 Theory +hep-th/0303015 Theory +hep-th/0303018 Theory +hep-th/0303051 Theory +hep-th/0303056 Theory +hep-th/0303077 Theory +hep-th/0303082 Theory +hep-th/0303123 Theory +hep-th/0303140 Theory +hep-th/0303167 Theory +hep-th/0303173 Theory +hep-th/0303182 Theory +hep-th/0303183 Theory +hep-th/0303210 Theory +hep-th/0303211 Theory +hep-th/0303213 Theory +hep-th/0303220 Theory +hep-th/0303235 Theory +hep-th/0303243 Theory +hep-th/0303244 Theory +hep-th/0304007 Theory +hep-th/0304045 Theory +hep-th/0304053 Theory +hep-th/0304059 Theory +hep-th/0304114 Theory +hep-th/0304127 Theory +hep-th/0304178 Theory +hep-th/0304191 Theory +hep-th/0304214 Theory +hep-th/0304237 Theory +hep-th/0304246 Theory +hep-th/0305063 Theory +hep-th/0305081 Theory +hep-th/0305098 Theory +hep-th/0305160 Theory +hep-th/0305183 Theory +hep-th/0305195 Theory +hep-th/0305235 Theory +hep-th/0305263 Theory +hep-th/0306022 Theory +hep-th/0306030 Theory +hep-th/0306038 Theory +hep-th/0306087 Theory +hep-th/0306090 Theory +hep-th/0306095 Theory +hep-th/0306098 Theory +hep-th/0306113 Theory +hep-th/0306142 Theory +hep-th/0306148 Theory +hep-th/0306158 Theory +hep-th/0306164 Theory +hep-th/0306180 Theory +hep-th/0306195 Theory +hep-th/0306213 Theory +hep-th/0306227 Theory +hep-th/0306228 Theory +hep-th/0306232 Theory +hep-th/0306282 Theory +hep-th/0306290 Theory +hep-th/0307004 Theory +hep-th/0307006 Theory +hep-th/0307029 Theory +hep-th/0307058 Theory +hep-th/0307076 Theory +hep-th/0307125 Theory +hep-th/0307152 Theory +hep-th/0307153 Theory +hep-th/0307189 Theory +hep-th/0307203 Theory +hep-th/0307206 Theory +hep-th/0307221 Theory +hep-th/0307222 Theory +hep-th/0307254 Theory +hep-th/0307282 Theory +hep-th/0307300 Theory +hep-th/0308014 Theory +hep-th/0308020 Theory +hep-th/0308024 Theory +hep-th/0308101 Theory +hep-th/0308123 Theory +hep-th/0308131 Theory +hep-th/0308146 Theory +hep-th/0308152 Theory +hep-th/0308191 Theory +hep-th/0308202 Theory +hep-th/0309019 Theory +hep-th/0309021 Theory +hep-th/0309028 Theory +hep-th/0309031 Theory +hep-th/0309037 Theory +hep-th/0309050 Theory +hep-th/0309087 Theory +hep-th/0309147 Theory +hep-th/0309195 Theory +hep-th/0309212 Theory +hep-th/0309230 Theory +hep-th/0309258 Theory +hep-th/0309267 Theory +hep-th/0310011 Theory +hep-th/0310025 Theory +hep-th/0310035 Theory +hep-th/0310070 Theory +hep-th/0310090 Theory +hep-th/0310136 Theory +hep-th/0310152 Theory +hep-th/0310176 Theory +hep-th/0310181 Theory +hep-th/0310190 Theory +hep-th/0310228 Theory +hep-th/0310232 Theory +hep-th/0310256 Theory +hep-th/0310263 Theory +hep-th/0311002 Theory +hep-th/0311028 Theory +hep-th/0311065 Theory +hep-th/0311073 Theory +hep-th/0311119 Theory +hep-th/0311132 Theory +hep-th/0311147 Theory +hep-th/0311154 Theory +hep-th/0311157 Theory +hep-th/0311164 Theory +hep-th/0311190 Theory +hep-th/0311220 Theory +hep-th/0312004 Theory +hep-th/0312025 Theory +hep-th/0312026 Theory +hep-th/0312028 Theory +hep-th/0312037 Theory +hep-th/0312168 Theory +hep-th/0312215 Theory +hep-th/0312228 Theory +hep-th/0312236 Theory +hep-th/0312244 Theory +hep-th/0312262 Theory +hep-th/0312264 Theory +hep-th/0312272 Theory +hep-th/0312297 Theory +hep-th/0312301 Theory +hep-th/0401005 Theory +hep-th/0401014 Theory +hep-th/0401112 Theory +hep-th/0401133 Theory +hep-th/0402007 Theory +hep-th/0402027 Theory +hep-th/0402107 Theory +hep-th/0402156 Theory +hep-th/0402177 Theory +hep-th/0402179 Theory +hep-th/0402191 Theory +hep-th/0402211 Theory +hep-th/0402217 Theory +hep-th/0403058 Theory +hep-th/0403068 Theory +hep-th/0403082 Theory +hep-th/0403085 Theory +hep-th/0403093 Theory +hep-th/0403133 Theory +hep-th/0403157 Theory +hep-th/0403233 Theory +hep-th/0403243 Theory +hep-th/0403253 Theory +hep-th/0403261 Theory +hep-th/0403272 Theory +hep-th/0404003 Theory +hep-th/0404062 Theory +hep-th/0404063 Theory +hep-th/0404064 Theory +hep-th/0404081 Theory +hep-th/0404082 Theory +hep-th/0404089 Theory +hep-th/0404104 Theory +hep-th/0404114 Theory +hep-th/0404119 Theory +hep-th/0404137 Theory +hep-th/0404250 Theory +hep-th/0405037 Theory +hep-th/0405049 Theory +hep-th/0405065 Theory +hep-th/0405149 Theory +hep-th/0405259 Theory +hep-th/0406017 Theory +hep-th/0406065 Theory +hep-th/0406066 Theory +hep-th/0406148 Theory +hep-th/0406193 Theory +hep-th/0406200 Theory +hep-th/0406246 Theory +hep-th/0407060 Theory +hep-th/0407098 Theory +hep-th/0407106 Theory +hep-th/0407214 Theory +hep-th/0407253 Theory +hep-th/0408060 Theory +hep-th/0408079 Theory +hep-th/0408087 Theory +hep-th/0408146 Theory +hep-th/0408174 Theory +hep-th/0408192 Theory +hep-th/0408194 Theory +hep-th/0409009 Theory +hep-th/0409017 Theory +hep-th/0409039 Theory +hep-th/0409045 Theory +hep-th/0409052 Theory +hep-th/0409056 Theory +hep-th/0409067 Theory +hep-th/0409069 Theory +hep-th/0409086 Theory +hep-th/0409089 Theory +hep-th/0409095 Theory +hep-th/0409120 Theory +hep-th/0409175 Theory +hep-th/0409226 Theory +hep-th/0409261 Theory +hep-th/0409305 Theory +hep-th/0409311 Theory +hep-th/0410014 Theory +hep-th/0410118 Theory +hep-th/0410171 Theory +hep-th/0410195 Theory +hep-th/0410203 Theory +hep-th/0410215 Theory +hep-th/0410269 Theory +hep-th/0410283 Theory +hep-th/0410293 Theory +hep-th/0411032 Theory +hep-th/0411035 Theory +hep-th/0411043 Theory +hep-th/0411133 Theory +hep-th/0411159 Theory +hep-th/0411181 Theory +hep-th/0411201 Theory +hep-th/0411208 Theory +hep-th/0411239 Theory +hep-th/0411242 Theory +hep-th/0411258 Theory +hep-th/0412004 Theory +hep-th/0412008 Theory +hep-th/0412074 Theory +hep-th/0412146 Theory +hep-th/0412153 Theory +hep-th/0412154 Theory +hep-th/0412164 Theory +hep-th/0412216 Theory +hep-th/0412224 Theory +hep-th/0412254 Theory +hep-th/0412303 Theory +hep-th/0412310 Theory +hep-th/0412329 Theory +hep-th/0501012 Theory +hep-th/0501047 Theory +hep-th/0501049 Theory +hep-th/0501077 Theory +hep-th/0501090 Theory +hep-th/0501111 Theory +hep-th/0501223 Theory +hep-th/0501246 Theory +hep-th/0502003 Theory +hep-th/0502004 Theory +hep-th/0502018 Theory +hep-th/0502026 Theory +hep-th/0502044 Theory +hep-th/0502066 Theory +hep-th/0502073 Theory +hep-th/0502075 Theory +hep-th/0502117 Theory +hep-th/0502123 Theory +hep-th/0502128 Theory +hep-th/0502215 Theory +hep-th/0503017 Theory +hep-th/0503084 Theory +hep-th/0503113 Theory +hep-th/0503121 Theory +hep-th/0503122 Theory +hep-th/0503125 Theory +hep-th/0503137 Theory +hep-th/0503157 Theory +hep-th/0503179 Theory +hep-th/0504002 Theory +hep-th/0504088 Theory +hep-th/0504102 Theory +hep-th/0504158 Theory +hep-th/0504191 Theory +hep-th/0504199 Theory +hep-th/0504204 Theory +hep-th/0504211 Theory +hep-th/0505039 Theory +hep-th/0505068 Theory +hep-th/0505071 Theory +hep-th/0505083 Theory +hep-th/0505092 Theory +hep-th/0505095 Theory +hep-th/0505114 Theory +hep-th/0505141 Theory +hep-th/0505208 Theory +hep-th/0505234 Theory +hep-th/0505253 Theory +hep-th/0505259 Theory +hep-th/0505277 Theory +hep-th/0506033 Theory +hep-th/0506034 Theory +hep-th/0506039 Theory +hep-th/0506054 Theory +hep-th/0506056 Theory +hep-th/0506061 Theory +hep-th/0506096 Theory +hep-th/0506168 Theory +hep-th/0506172 Theory +hep-th/0506185 Theory +hep-th/0506191 Theory +hep-th/0506251 Theory +hep-th/0506257 Theory +hep-th/0507002 Theory +hep-th/0507027 Theory +hep-th/0507030 Theory +hep-th/0507057 Theory +hep-th/0507062 Theory +hep-th/0507080 Theory +hep-th/0507084 Theory +hep-th/0507106 Theory +hep-th/0507112 Theory +hep-th/0507130 Theory +hep-th/0507133 Theory +hep-th/0507134 Theory +hep-th/0507169 Theory +hep-th/0507244 Theory +hep-th/0507249 Theory +hep-th/0507273 Theory +hep-th/0507275 Theory +hep-th/0507288 Theory +hep-th/0508052 Theory +hep-th/0508101 Theory +hep-th/0508107 Theory +hep-th/0508124 Theory +hep-th/0508158 Theory +hep-th/0508169 Theory +hep-th/0508241 Theory +hep-th/0509009 Theory +hep-th/0509048 Theory +hep-th/0510109 Theory +hep-th/0510249 Theory +hep-th/0511039 Theory +hep-th/0511062 Theory +hep-th/0511134 Theory +hep-th/0511234 Theory +hep-th/0512154 Theory +hep-th/0602219 Theory +hep-th/0603011 Theory +hep-th/0603203 Theory +hep-th/0605211 Theory +hep-th/0611344 Theory +math-ph/0310036 +math-ph/0310042 +math-ph/0402031 +math-ph/0407049 +math-ph/0510065 +math/0004119 General Topology +math/0011205 Dynamical Systems +math/0104185 Dynamical Systems +math/0301036 Quantum Algebra +math/0304150 Quantum Algebra +math/0311153 Group Theory +math/0402080 Number Theory +math/0506253 Group Theory +math/0511060 Complex Variables +math/0512397 Classical Analysis and ODEs +math/0602444 Group Theory +math/0605066 Complex Variables +math/0609688 Probability +math/0701312 Algebraic Geometry +math/0702661 Number Theory +nucl-ex/0207005 +nucl-ex/0401033 +nucl-ex/0412038 +nucl-th/0111050 +nucl-th/0303046 +nucl-th/0306067 +nucl-th/0407019 +nucl-th/0409040 +nucl-th/0409046 +nucl-th/0502039 +nucl-th/0506073 +nucl-th/0509027 +physics/0012004 Atomic Physics +quant-ph/0208071 +quant-ph/0302170 +quant-ph/0407068 +quant-ph/0411177 +quant-ph/0603169 +quant-ph/0610244 +quant-ph/0611202 +0707.1502 Group Theory +0710.2061 +0712.3859 Geometric Topology +0802.4393 Physics and Society +0805.0348 Differential Geometry +0809.3204 Artificial Intelligence +0811.0095 Quantum Algebra +0812.0579 Soft Condensed Matter +0812.4242 Cellular Automata and Lattice Gases +0901.0262 Theory +0901.3446 +0901.4021 Phenomenology +0902.1268 +0902.1890 Strongly Correlated Electrons +0902.3631 Distributed, Parallel, and Cluster Computing +0902.4611 Algebraic Geometry +0902.4697 Phenomenology +0903.0347 Phenomenology +0903.2309 +0903.4583 Classical Analysis and ODEs +0904.0161 Classical Physics +0905.2342 Superconductivity +0905.4915 Other Condensed Matter +0906.0017 Strongly Correlated Electrons +0906.1346 Distributed, Parallel, and Cluster Computing +0906.1996 Probability +0906.3890 Operator Algebras +0906.4045 Mesoscale and Nanoscale Physics +0907.0002 Combinatorics +0908.1526 +0908.3207 Mesoscale and Nanoscale Physics +0908.3400 Data Analysis, Statistics and Probability +0909.0033 Classical Analysis and ODEs +0909.4219 +0909.4690 Algebraic Geometry +0910.0822 Theory +0910.1957 +0910.4226 Analysis of PDEs +0910.4264 +0910.5055 +0910.5614 Soft Condensed Matter +0911.1950 +0911.4713 Superconductivity +0912.0408 Number Theory +0912.2267 Differential Geometry +0912.3323 Information Theory +0912.3575 Materials Science +0912.4361 Phenomenology +0912.5022 Quantum Gases +0912.5121 +1001.0796 Soft Condensed Matter +1001.1785 +1002.0618 Statistical Mechanics +1002.0653 Materials Science +1002.2018 Materials Science +1002.2582 Strongly Correlated Electrons +1002.5034 Data Structures and Algorithms +1003.0392 Atmospheric and Oceanic Physics +1003.0682 Phenomenology +1003.0712 Theory +1003.1047 +1003.1344 Pricing of Securities +1003.2626 Mesoscale and Nanoscale Physics +1003.3303 +1003.5608 Chemical Physics +1004.3009 Theory +1004.3034 Experiment +1004.3180 Theory +1004.3877 +1004.4641 Symbolic Computation +1005.2420 +1005.4195 Analysis of PDEs +1006.0940 Solar and Stellar Astrophysics +1006.1269 Quantum Gases +1006.1627 Solar and Stellar Astrophysics +1006.2782 Dynamical Systems +1006.4058 Solar and Stellar Astrophysics +1006.5158 Classical Analysis and ODEs +1006.5343 Optics +1006.5617 Classical Analysis and ODEs +1006.5626 Classical Analysis and ODEs +1007.0253 Dynamical Systems +1007.0910 Solar and Stellar Astrophysics +1007.1414 Probability +1007.1923 +1007.1956 Number Theory +1007.2715 Earth and Planetary Astrophysics +1007.2718 +1007.2855 Information Theory +1007.2860 Molecular Networks +1007.2863 Medical Physics +1007.2871 Combinatorics +1007.2872 General Physics +1007.2878 Superconductivity +1007.2882 +1007.2883 Physics and Society +1007.2884 Category Theory +1007.2888 Astrophysics of Galaxies +1007.2893 Numerical Analysis +1007.2895 Probability +1007.2896 Representation Theory +1007.2897 Representation Theory +1007.2898 General Physics +1007.2902 Distributed, Parallel, and Cluster Computing +1007.2903 Phenomenology +1007.2909 Optics +1007.2911 Phenomenology +1007.2918 +1007.2920 Cellular Automata and Lattice Gases +1007.2921 +1007.2923 Phenomenology +1007.2945 Information Theory +1007.2947 Instrumentation and Detectors +1007.2952 +1007.2956 Experiment +1007.2958 Computer Vision and Pattern Recognition +1007.2970 Analysis of PDEs +1007.2975 +1007.2976 +1007.2980 Information Retrieval +1007.2981 Distributed, Parallel, and Cluster Computing +1007.2986 Probability +1007.2988 Biological Physics +1007.2991 Biological Physics +1007.2992 Phenomenology +1007.2997 Analysis of PDEs +1007.2999 Experiment +1007.3000 Probability +1007.3001 Classical Analysis and ODEs +1007.3007 Analysis of PDEs +1007.3008 Experiment +1007.3011 Group Theory +1007.3016 Differential Geometry +1007.3017 Populations and Evolution +1007.3018 History and Overview +1007.3019 Experiment +1007.3020 Complex Variables +1007.3024 Differential Geometry +1007.3025 Probability +1007.3029 Soft Condensed Matter +1007.3038 Algebraic Geometry +1007.3039 Functional Analysis +1007.3044 Soft Condensed Matter +1007.3046 Cryptography and Security +1007.3047 Number Theory +1007.3049 Combinatorics +1007.3051 General Physics +1007.3054 +1007.3056 Astrophysics of Galaxies +1007.3058 Networking and Internet Architecture +1007.3070 Number Theory +1007.3071 Statistical Mechanics +1007.3073 Disordered Systems and Neural Networks +1007.3074 Numerical Analysis +1007.3077 Instrumentation and Detectors +1007.3087 Instrumentation and Detectors +1007.3088 Solar and Stellar Astrophysics +1007.3091 Algebraic Geometry +1007.3102 Cosmology and Nongalactic Astrophysics +1007.3105 Information Theory +1007.3106 Functional Analysis +1007.3110 Functional Analysis +1007.3112 +1007.3115 Probability +1007.3119 +1007.3129 +1007.3130 Probability +1007.3131 Chaotic Dynamics +1007.3132 General Physics +1007.3134 Fluid Dynamics +1007.3135 Instrumentation and Detectors +1007.3139 Probability +1007.3148 Functional Analysis +1007.3149 Rings and Algebras +1007.3153 Algebraic Geometry +1007.3156 Materials Science +1007.3157 Data Structures and Algorithms +1007.3159 Artificial Intelligence +1007.3164 Commutative Algebra +1007.3167 Chemical Physics +1007.3172 Analysis of PDEs +1007.3173 Operator Algebras +1007.3176 Solar and Stellar Astrophysics +1007.3177 Classical Physics +1007.3178 Experiment +1007.3181 Computational Geometry +1007.3184 Biomolecules +1007.3185 Phenomenology +1007.3192 +1007.3195 Cosmology and Nongalactic Astrophysics +1007.3196 Methodology +1007.3198 Cosmology and Nongalactic Astrophysics +1007.3201 Probability +1007.3205 Methodology +1007.3206 Phenomenology +1007.3207 Applications +1007.3208 Information Retrieval +1007.3210 Other Statistics +1007.3219 Applications +1007.3223 Artificial Intelligence +1007.3225 Applications +1007.3226 Materials Science +1007.3232 Exactly Solvable and Integrable Systems +1007.3234 Spectral Theory +1007.3239 History and Overview +1007.3244 Computational Geometry +astro-ph/0607371 +cond-mat/0210563 Disordered Systems and Neural Networks +cond-mat/0301147 Disordered Systems and Neural Networks +cond-mat/0312586 Statistical Mechanics +cond-mat/0701621 Mesoscale and Nanoscale Physics +cs/0310046 Computational Complexity +cs/0407015 Computational Complexity +math-ph/0605035 +math/0011158 Dynamical Systems +physics/0702040 Fluid Dynamics +quant-ph/0501178 +quant-ph/0511197 +quant-ph/0602088 +quant-ph/0703192 +0705.1863 Probability +0705.3999 Phenomenology +0803.3480 Complex Variables +0805.2370 +0806.4644 Statistical Mechanics +0810.0004 Soft Condensed Matter +0901.0982 +0902.0068 Probability +0902.2277 Symplectic Geometry +0903.3232 Phenomenology +0905.2235 Molecular Networks +0905.3506 Phenomenology +0907.2689 Theory +0907.3778 +0908.3417 Algebraic Topology +0909.3863 Probability +0910.2247 Dynamical Systems +0911.4254 Analysis of PDEs +0912.1778 Representation Theory +0912.4736 Probability +1001.3119 +1001.3136 Phenomenology +1001.3401 Probability +1001.4885 +1002.1078 General Physics +1002.3361 Phenomenology +1003.0023 Theory +1003.3613 Digital Libraries +1003.4253 Biological Physics +1005.0917 Artificial Intelligence +1005.0950 Digital Libraries +1005.1029 Mesoscale and Nanoscale Physics +1005.2136 Superconductivity +1005.3275 Commutative Algebra +1005.3298 +1005.3312 Superconductivity +1005.4793 Mesoscale and Nanoscale Physics +1005.5654 +1006.1534 Materials Science +1006.2324 Quantum Gases +1006.3133 Statistical Mechanics +1006.3911 Quantum Gases +1006.3943 +1006.5490 Trading and Market Microstructure +1007.0203 Theory +1007.1811 Information Theory +1007.2488 +1007.3647 Solar and Stellar Astrophysics +1008.0898 Materials Science +1009.0140 Mesoscale and Nanoscale Physics +1009.2659 Probability +1009.3612 +1009.3724 Accelerator Physics +1009.3798 Logic in Computer Science +1009.3945 Solar and Stellar Astrophysics +1009.3948 Optimization and Control +1009.3951 Cryptography and Security +1009.3953 Quantum Gases +1009.3958 Learning +1009.3960 Cosmology and Nongalactic Astrophysics +1009.3961 Systems and Control +1009.3962 Astrophysics of Galaxies +1009.3970 Applications +1009.3976 Combinatorics +1009.3978 Analysis of PDEs +1009.3982 Logic in Computer Science +1009.3983 Number Theory +1009.3984 Data Structures and Algorithms +1009.3985 Number Theory +1009.3990 Number Theory +1009.3991 Combinatorics +1009.3994 Differential Geometry +1009.3996 Algebraic Geometry +1009.3999 Probability +1009.4000 Cryptography and Security +1009.4009 Algebraic Geometry +1009.4012 Cryptography and Security +1009.4013 Social and Information Networks +1009.4017 Algebraic Geometry +1009.4019 Computers and Society +1009.4020 Programming Languages +1009.4021 Algebraic Geometry +1009.4023 Quantum Gases +1009.4031 +1009.4034 Representation Theory +1009.4038 Materials Science +1009.4045 Differential Geometry +1009.4046 Information Theory +1009.4047 Representation Theory +1009.4048 Distributed, Parallel, and Cluster Computing +1009.4055 Algebraic Geometry +1009.4057 Solar and Stellar Astrophysics +1009.4058 Fluid Dynamics +1009.4060 Functional Analysis +1009.4064 Representation Theory +1009.4068 Differential Geometry +1009.4069 Atomic Physics +1009.4070 Statistics Theory +1009.4090 Probability +1009.4091 Networking and Internet Architecture +1009.4092 Analysis of PDEs +1009.4095 Algebraic Geometry +1009.4096 Probability +1009.4098 Analysis of PDEs +1009.4102 Data Structures and Algorithms +1009.4103 Astrophysics of Galaxies +1009.4109 +1009.4112 Solar and Stellar Astrophysics +1009.4127 General Physics +1009.4128 Information Theory +1009.4136 Group Theory +1009.4137 Mesoscale and Nanoscale Physics +1009.4142 Risk Management +1009.4150 Solar and Stellar Astrophysics +1009.4153 Discrete Mathematics +1009.4154 Materials Science +1009.4162 Materials Science +1009.4167 Subcellular Processes +1009.4175 Theory +1009.4178 Experiment +1009.4186 Cosmology and Nongalactic Astrophysics +cond-mat/0002350 Mesoscale and Nanoscale Physics +cond-mat/0003029 Materials Science +cond-mat/0012470 Mesoscale and Nanoscale Physics +cond-mat/0102079 Materials Science +cond-mat/0102308 Mesoscale and Nanoscale Physics +cond-mat/0106643 Disordered Systems and Neural Networks +cond-mat/0203362 Mesoscale and Nanoscale Physics +cond-mat/0302395 Mesoscale and Nanoscale Physics +cond-mat/0305197 Soft Condensed Matter +cond-mat/0306041 Mesoscale and Nanoscale Physics +cond-mat/0311190 Statistical Mechanics +cond-mat/0405694 Mesoscale and Nanoscale Physics +cond-mat/0611413 Statistical Mechanics +cond-mat/9503064 +cond-mat/9611237 Statistical Mechanics +cond-mat/9809167 Materials Science +cond-mat/9812207 Materials Science +cond-mat/9906174 Materials Science +math-ph/0701038 +quant-ph/0003051 +quant-ph/0602191 +quant-ph/0607076 +0704.0009 +0704.0253 +0704.0488 +0705.1619 Mesoscale and Nanoscale Physics +0709.2013 Functional Analysis +0711.0947 Rings and Algebras +0801.2911 +0804.0424 Phenomenology +0807.1108 +0808.0622 Group Theory +0809.5110 Number Theory +0810.2991 +0810.5104 Theory +0811.0381 Discrete Mathematics +0811.3116 Computational Complexity +0901.4045 Phenomenology +0903.0472 Algebraic Topology +0903.2512 +0903.2921 Functional Analysis +0903.3162 +0903.5061 Statistics Theory +0905.3939 Algebraic Geometry +0905.4493 Other Condensed Matter +0906.3783 +0906.4893 Chaotic Dynamics +0906.5565 Theory +0907.0300 Probability +0907.1075 Group Theory +0907.1636 Theory +0907.2821 Superconductivity +0907.4981 Cosmology and Nongalactic Astrophysics +0907.4987 Cosmology and Nongalactic Astrophysics +0908.0490 Superconductivity +0908.2978 Mesoscale and Nanoscale Physics +0909.0243 +0909.0977 Theory +0909.2762 Mesoscale and Nanoscale Physics +0910.3584 Probability +0910.5245 Theory +0910.5509 Theory +0910.5555 Phenomenology +0911.1399 Theory +0911.1746 +0911.3239 Theory +0911.3762 +0911.4831 Superconductivity +0911.5029 Lattice +0911.5050 Statistical Mechanics +0911.5662 Statistical Mechanics +0912.1366 Theory +0912.1667 Lattice +0912.2009 Soft Condensed Matter +0912.3122 Strongly Correlated Electrons +1001.1233 Complex Variables +1001.2650 Cosmology and Nongalactic Astrophysics +1001.3165 Probability +1001.4273 Computation and Language +1001.5036 Solar and Stellar Astrophysics +1001.5375 Mesoscale and Nanoscale Physics +1002.0878 Data Analysis, Statistics and Probability +1002.3300 Plasma Physics +1002.3369 Statistical Mechanics +1003.1669 Plasma Physics +1003.2117 Logic +1003.3245 Instrumentation and Methods for Astrophysics +1003.3246 Differential Geometry +1003.3249 Medical Physics +1003.3255 Probability +1003.3258 Logic +1003.3262 Algebraic Geometry +1003.3265 Analysis of PDEs +1003.3266 Computer Vision and Pattern Recognition +1003.3269 Functional Analysis +1003.3277 Mesoscale and Nanoscale Physics +1003.3279 Learning +1003.3283 Representation Theory +1003.3286 Probability +1003.3288 Lattice +1003.3292 Number Theory +1003.3296 Number Theory +1003.3297 Number Theory +1003.3298 Number Theory +1003.3300 Number Theory +1003.3302 Complex Variables +1003.3305 Distributed, Parallel, and Cluster Computing +1003.3319 Spectral Theory +1003.3330 Software Engineering +1003.3332 Dynamical Systems +1003.3336 Classical Analysis and ODEs +1003.3338 Software Engineering +1003.3344 Physics and Society +1003.3352 Numerical Analysis +1003.3356 Cosmology and Nongalactic Astrophysics +1003.3362 Applications +1003.3364 Dynamical Systems +1003.3369 Materials Science +1003.3370 Databases +1003.3371 Differential Geometry +1003.3372 Functional Analysis +1003.3375 Functional Analysis +1003.3376 Combinatorics +1003.3377 Functional Analysis +1003.3379 Functional Analysis +1003.3380 Mesoscale and Nanoscale Physics +1003.3381 Analysis of PDEs +1003.3382 Functional Analysis +1003.3385 +1003.3386 Information Theory +1003.3391 Molecular Networks +1003.3392 General Mathematics +1003.3393 High Energy Astrophysical Phenomena +1003.3395 Numerical Analysis +1003.3396 Networking and Internet Architecture +1003.3404 Algebraic Geometry +1003.3414 Materials Science +1003.3418 Data Structures and Algorithms +1003.3433 Phenomenology +1003.3434 Complex Variables +1003.3439 Statistics Theory +1003.3441 Optics +astro-ph/0605475 +astro-ph/0608148 +astro-ph/0608306 +astro-ph/0612365 +cond-mat/0601550 Mesoscale and Nanoscale Physics +cond-mat/0611281 Materials Science +cond-mat/9806160 Statistical Mechanics +hep-th/0605074 Theory +math/0409129 Algebraic Geometry +math/0505417 Differential Geometry +math/0609358 Functional Analysis +math/0701559 Algebraic Geometry +physics/0703077 Medical Physics +quant-ph/0102142 +quant-ph/0703224 +0709.3939 Rings and Algebras +0711.3067 Algebraic Geometry +0711.3070 Algebraic Geometry +0711.4800 +0712.3557 Geometric Topology +0802.2566 Strongly Correlated Electrons +0802.2697 +0804.1194 +0805.4388 Strongly Correlated Electrons +0806.3109 Classical Analysis and ODEs +0806.3428 Classical Analysis and ODEs +0809.0028 Differential Geometry +0809.1987 Strongly Correlated Electrons +0809.3444 +0809.3533 +0809.4651 Complex Variables +0810.0183 Complex Variables +0810.4882 Symplectic Geometry +0811.0223 Soft Condensed Matter +0811.1893 +0811.4228 +0811.4673 +0812.0559 +0812.1672 +0812.3821 Strongly Correlated Electrons +0812.3944 Analysis of PDEs +0812.5081 +0901.0184 Phenomenology +0902.0853 Cosmology and Nongalactic Astrophysics +0902.3458 Strongly Correlated Electrons +0902.4489 Cosmology and Nongalactic Astrophysics +0903.2859 Theory +0904.3199 Solar and Stellar Astrophysics +0904.4245 Theory +0905.1349 +0905.1979 Atomic Physics +0905.2327 Methodology +0905.3415 Theory +0905.3504 Combinatorics +0905.4580 Differential Geometry +0906.1809 Statistical Mechanics +0906.2618 Lattice +0906.3408 Geometric Topology +0906.5357 Cosmology and Nongalactic Astrophysics +0906.5421 +0907.1105 Phenomenology +0907.2343 Statistical Mechanics +0907.3145 Phenomenology +0908.0172 Complex Variables +0908.1781 Differential Geometry +0908.1889 Lattice +0908.1893 Lattice +0908.2500 +0908.3152 Accelerator Physics +0908.3442 Strongly Correlated Electrons +0908.3860 Experiment +0909.1433 Phenomenology +0909.2698 Phenomenology +0909.2870 Theory +0909.3285 +0909.3462 +0909.4238 +0909.4667 Phenomenology +0910.0302 Mesoscale and Nanoscale Physics +0910.0364 Statistical Mechanics +0910.0434 +0910.1787 Networking and Internet Architecture +0910.1972 Phenomenology +0910.2307 Theory +0910.2355 Phenomenology +0910.2835 +0910.3041 +0910.3627 Phenomenology +0910.4293 Plasma Physics +0910.4605 Experiment +0910.5787 +0911.0400 Theory +0911.0455 Phenomenology +0911.0568 Phenomenology +0911.0895 Phenomenology +0911.1134 Phenomenology +0911.1276 Theory +0911.1345 Theory +0911.1351 Instrumentation and Detectors +0911.1918 +0911.1935 Phenomenology +0911.1944 Phenomenology +0911.1990 Theory +0911.2060 Mesoscale and Nanoscale Physics +0911.2299 Phenomenology +0911.2389 Phenomenology +0911.2437 Phenomenology +0911.2559 +0911.2670 Phenomenology +0911.3229 Theory +0911.3380 Theory +0911.3613 Phenomenology +0911.3733 Strongly Correlated Electrons +0911.3862 +0911.3907 +0911.3934 Phenomenology +0911.3981 Phenomenology +0911.4112 +0911.4113 K-Theory and Homology +0911.4163 Optics +0911.4242 Statistical Mechanics +0911.5212 Theory +0911.5269 Soft Condensed Matter +0912.0030 Theory +0912.0067 Phenomenology +0912.0119 Phenomenology +0912.0190 Phenomenology +0912.0208 Theory +0912.0240 +0912.0570 +0912.0707 Phenomenology +0912.0749 Phenomenology +0912.0934 Theory +0912.2631 Phenomenology +0912.2824 Accelerator Physics +0912.2887 Mesoscale and Nanoscale Physics +0912.2954 Theory +0912.3712 Theory +0912.4356 +0912.4722 Phenomenology +0912.4833 +0912.4926 Phenomenology +0912.5038 Phenomenology +0912.5218 Networking and Internet Architecture +0912.5270 Phenomenology +0912.5535 Theory +1001.0760 Phenomenology +1001.0766 Theory +1001.0779 Theory +1001.1103 Theory +1001.2001 Theory +1001.2738 Information Theory +1001.3261 Chemical Physics +1001.3761 Mesoscale and Nanoscale Physics +1001.3827 Solar and Stellar Astrophysics +1001.4441 Differential Geometry +1001.4720 Quantum Gases +1001.4922 +1001.4995 Cosmology and Nongalactic Astrophysics +1002.0517 Soft Condensed Matter +1002.0679 Mesoscale and Nanoscale Physics +1002.3806 Superconductivity +1003.1071 +1003.1668 Theory +1003.2042 Differential Geometry +1003.2043 Differential Geometry +1003.2044 Differential Geometry +1003.5929 Atomic Physics +1004.0495 +1004.2534 Cosmology and Nongalactic Astrophysics +1004.3344 Cosmology and Nongalactic Astrophysics +1004.3364 Cosmology and Nongalactic Astrophysics +1004.3731 Phenomenology +1004.4112 Phenomenology +1004.4199 Theory +1004.4312 Instrumentation and Methods for Astrophysics +1004.4374 Combinatorics +1004.4426 Phenomenology +1005.0327 Combinatorics +1005.0657 Cryptography and Security +1005.0683 Numerical Analysis +1005.0753 Tissues and Organs +1005.0776 Tissues and Organs +1005.0840 Astrophysics of Galaxies +1005.0845 Spectral Theory +1005.0848 Instrumentation and Methods for Astrophysics +1005.0852 Materials Science +1005.0853 Materials Science +1005.0854 Software Engineering +1005.0869 General Physics +1005.0871 Differential Geometry +1005.0875 Analysis of PDEs +1005.0879 Information Theory +1005.0880 Computer Science and Game Theory +1005.0883 Cosmology and Nongalactic Astrophysics +1005.0887 Commutative Algebra +1005.0888 Statistical Mechanics +1005.0897 Learning +1005.0899 Genomics +1005.0905 Networking and Internet Architecture +1005.0907 Computer Vision and Pattern Recognition +1005.0911 Analysis of PDEs +1005.0912 Computational Geometry +1005.0913 Functional Analysis +1005.0919 Cryptography and Security +1005.0921 Computational Geometry +1005.0925 Distributed, Parallel, and Cluster Computing +1005.0929 Spectral Theory +1005.0931 Other Computer Science +1005.0933 Algebraic Geometry +1005.0936 Analysis of PDEs +1005.0938 Category Theory +1005.0939 Complex Variables +1005.0940 Cryptography and Security +1005.0941 Materials Science +1005.0944 Networking and Internet Architecture +1005.0949 Category Theory +1005.0952 Networking and Internet Architecture +1005.0957 Neural and Evolutionary Computing +1005.0959 Other Computer Science +1005.0961 Information Retrieval +1005.0963 Other Computer Science +1005.0965 Neural and Evolutionary Computing +1005.0967 Cryptography and Security +1005.0968 Algebraic Geometry +1005.0970 Strongly Correlated Electrons +1005.0971 Astrophysics of Galaxies +1005.0972 Databases +1005.0973 +1005.0974 Geometric Topology +1005.0975 Differential Geometry +1005.0976 Networking and Internet Architecture +1005.0980 Algebraic Geometry +1005.0981 Symplectic Geometry +1005.0982 Computational Geometry +1005.0985 Solar and Stellar Astrophysics +1005.0987 History and Philosophy of Physics +1005.0988 Combinatorics +1005.0989 Quantum Algebra +1005.0990 Symbolic Computation +1005.0991 Earth and Planetary Astrophysics +1005.0998 Analysis of PDEs +1005.1004 Rings and Algebras +1005.1012 High Energy Astrophysical Phenomena +1005.1014 Instrumentation and Methods for Astrophysics +1005.1016 +1005.1019 Optics +1005.1021 Phenomenology +1005.1022 Other Condensed Matter +1005.1027 Statistics Theory +1005.1034 Programming Languages +1005.1040 Differential Geometry +1005.1060 Solar and Stellar Astrophysics +1005.1061 +cond-mat/0309099 Strongly Correlated Electrons +cond-mat/0503685 Statistical Mechanics +cond-mat/0509279 Soft Condensed Matter +cond-mat/0609608 Statistical Mechanics +hep-ph/0610121 Phenomenology +hep-th/9301106 Theory +hep-th/9612019 Theory +math/0305140 Differential Geometry +math/0412121 Algebraic Geometry +physics/0703183 General Physics +0708.1428 Functional Analysis +0709.2080 Functional Analysis +0710.3794 Geometric Topology +0803.1834 +0807.0836 Combinatorics +0808.3705 Mesoscale and Nanoscale Physics +0810.2357 +0810.2990 Number Theory +0812.3813 Analysis of PDEs +0901.3306 +0903.2457 Quantum Algebra +0903.3135 Statistical Mechanics +0903.4826 Information Theory +0905.3640 Computer Science and Game Theory +0906.2369 Computation and Language +0909.2164 Mesoscale and Nanoscale Physics +0909.4633 Quantum Gases +0910.0459 Theory +0910.5080 Number Theory +0911.2365 +0911.3244 Differential Geometry +0911.4517 +0912.0301 Statistical Mechanics +0912.1239 Quantum Gases +0912.2229 Mesoscale and Nanoscale Physics +0912.4434 Methodology +0912.4716 Mesoscale and Nanoscale Physics +1001.4155 Astrophysics of Galaxies +1001.4576 Materials Science +1002.0706 Mesoscale and Nanoscale Physics +1002.2496 Statistical Mechanics +1002.3350 Superconductivity +1002.4060 Combinatorics +1003.0256 General Physics +1003.0715 Mesoscale and Nanoscale Physics +1003.3593 Differential Geometry +1003.4534 Rings and Algebras +1004.4864 Learning +1004.4997 Other Condensed Matter +1004.5473 Mesoscale and Nanoscale Physics +1005.0523 +1005.0612 +1005.1243 General Mathematics +1005.1428 Cryptography and Security +1005.1950 Statistical Mechanics +1005.1951 Combinatorics +1005.1956 Adaptation and Self-Organizing Systems +1005.1957 Combinatorics +1005.1962 Theory +1005.1972 Algebraic Geometry +1005.1976 Biological Physics +1005.1985 Materials Science +1005.1986 Adaptation and Self-Organizing Systems +1005.1987 Logic +1005.1995 High Energy Astrophysical Phenomena +1005.1996 Functional Analysis +1005.1999 Operator Algebras +1005.2002 Algebraic Topology +1005.2010 Differential Geometry +1005.2017 Probability +1005.2019 Number Theory +1005.2027 Distributed, Parallel, and Cluster Computing +1005.2029 Classical Analysis and ODEs +1005.2033 Classical Analysis and ODEs +1005.2037 Distributed, Parallel, and Cluster Computing +1005.2048 Representation Theory +1005.2049 Other Condensed Matter +1005.2054 Other Condensed Matter +1005.2062 Classical Physics +1005.2064 Solar and Stellar Astrophysics +1005.2065 Exactly Solvable and Integrable Systems +1005.2070 Analysis of PDEs +1005.2072 Software Engineering +1005.2078 Optimization and Control +1005.2080 Algebraic Geometry +1005.2085 Differential Geometry +1005.2086 Numerical Analysis +1005.2092 Superconductivity +1005.2096 Analysis of PDEs +1005.2110 Theory +1005.2116 Phenomenology +1005.2120 Materials Science +1005.2124 Phenomenology +1005.2132 +1005.2137 Methodology +1005.2143 Statistical Mechanics +1005.2149 Spectral Theory +1005.2164 Functional Analysis +math/0202047 Group Theory +math/0501046 Combinatorics +math/0502563 Group Theory +math/0504100 Symplectic Geometry +math/0605052 Complex Variables +math/0607376 Geometric Topology +math/9802120 Algebraic Geometry +0704.3447 Optics +0803.2450 Analysis of PDEs +0805.2658 Strongly Correlated Electrons +0806.0017 Dynamical Systems +0806.2542 Statistical Mechanics +0807.2769 Optimization and Control +0807.3249 Popular Physics +0809.0038 Strongly Correlated Electrons +0809.1079 Classical Analysis and ODEs +0810.3445 Analysis of PDEs +0812.2404 +0812.4595 Atomic Physics +0901.0826 +0902.1005 Analysis of PDEs +0902.3152 Group Theory +0902.3505 Materials Science +0904.0406 Number Theory +0904.1798 Pricing of Securities +0905.0353 Superconductivity +0905.1181 +0906.0855 Category Theory +0906.1650 +0906.2067 General Physics +0906.2297 +0906.3734 Operator Algebras +0906.4059 Dynamical Systems +0907.1185 Probability +0907.4066 Numerical Analysis +0907.4968 Classical Analysis and ODEs +0907.5390 Phenomenology +0908.1085 Soft Condensed Matter +0909.1323 Representation Theory +0910.1772 Probability +0910.2191 +0910.5626 Differential Geometry +0911.0208 Statistical Mechanics +0911.0211 Statistical Mechanics +0911.2658 Soft Condensed Matter +0911.2920 Mesoscale and Nanoscale Physics +0912.0596 Statistical Mechanics +0912.2161 Quantum Algebra +0912.2292 Algebraic Geometry +0912.2683 Optics +0912.2873 Applications +0912.4761 Number Theory +1001.0586 Statistical Mechanics +1001.1122 Neural and Evolutionary Computing +1001.2870 Phenomenology +1001.3945 Chaotic Dynamics +1002.1842 Statistical Mechanics +1002.3259 Soft Condensed Matter +1003.0050 +1003.0098 General Mathematics +1003.0919 +1003.1238 General Physics +1003.2249 Statistical Mechanics +1003.2413 Optics +1003.3394 Cellular Automata and Lattice Gases +1003.3437 Soft Condensed Matter +1003.3962 Materials Science +1003.4246 +1003.4998 Astrophysics of Galaxies +1003.5303 Operating Systems +1003.5381 Mesoscale and Nanoscale Physics +1003.5443 Differential Geometry +1004.0676 +1004.1409 Cosmology and Nongalactic Astrophysics +1004.1601 Mesoscale and Nanoscale Physics +1004.1938 Information Theory +1004.2389 Disordered Systems and Neural Networks +1004.3763 Materials Science +1004.4570 Superconductivity +1005.0688 +1005.1028 +1005.1274 Complex Variables +1005.1553 Classical Physics +1005.1583 Soft Condensed Matter +1005.1593 Machine Learning +1005.1598 Group Theory +1005.1725 Analysis of PDEs +1005.3201 Algebraic Geometry +1005.3345 Differential Geometry +1005.3622 Physics and Society +1005.3865 Strongly Correlated Electrons +1005.4021 Software Engineering +1005.4040 +1005.5394 Mesoscale and Nanoscale Physics +1006.0656 Fluid Dynamics +1006.0721 Number Theory +1006.0861 Computers and Society +1006.0948 Experiment +1006.0961 Group Theory +1006.1210 Information Theory +1006.1486 Astrophysics of Galaxies +1006.2622 Phenomenology +1006.3531 Probability +1006.3555 General Physics +1006.4971 Materials Science +1006.5194 Solar and Stellar Astrophysics +1006.5364 High Energy Astrophysical Phenomena +1006.5367 Learning +1006.5733 Chaotic Dynamics +1007.0099 Materials Science +1007.0338 Theory +1007.0999 +1007.1045 Formal Languages and Automata Theory +1007.1166 Data Structures and Algorithms +1007.1181 +1007.1191 Optimization and Control +1007.1410 Applications +1007.1594 Superconductivity +1007.2066 Analysis of PDEs +1007.2152 Data Structures and Algorithms +1007.2161 Classical Analysis and ODEs +1007.2238 Optimization and Control +1007.2290 Number Theory +1007.2379 Probability +1007.2597 Differential Geometry +1007.2734 +1007.2774 Popular Physics +1007.3035 Materials Science +1007.3143 Solar and Stellar Astrophysics +1007.3517 Quantum Algebra +1007.3546 Combinatorics +1007.3569 Logic in Computer Science +1007.3689 Popular Physics +1007.4052 Phenomenology +1007.4065 Networking and Internet Architecture +1007.4066 Networking and Internet Architecture +1007.4068 Networking and Internet Architecture +1007.4207 Phenomenology +1007.4217 Astrophysics of Galaxies +1007.4218 Differential Geometry +1007.4220 Differential Geometry +1007.4222 Metric Geometry +1007.4224 Disordered Systems and Neural Networks +1007.4227 +1007.4229 Materials Science +1007.4231 Algebraic Topology +1007.4232 +1007.4236 Information Theory +1007.4238 Metric Geometry +1007.4241 Instrumentation and Detectors +1007.4248 Operator Algebras +1007.4252 +1007.4254 Algebraic Topology +1007.4261 Fluid Dynamics +1007.4263 Combinatorics +1007.4264 Probability +1007.4268 Programming Languages +1007.4270 Algebraic Geometry +1007.4276 +1007.4283 Algebraic Geometry +1007.4284 Number Theory +1007.4286 Networking and Internet Architecture +1007.4288 Functional Analysis +1007.4301 Networking and Internet Architecture +1007.4303 Software Engineering +1007.4305 Representation Theory +1007.4312 Probability +1007.4314 Probability +1007.4316 Analysis of PDEs +1007.4319 Spectral Theory +1007.4321 +1007.4324 Information Retrieval +1007.4325 +1007.4330 Classical Analysis and ODEs +1007.4332 Cosmology and Nongalactic Astrophysics +1007.4334 Statistics Theory +1007.4336 Solar and Stellar Astrophysics +1007.4342 Analysis of PDEs +1007.4343 Analysis of PDEs +1007.4346 +1007.4354 Atomic Physics +1007.4356 Complex Variables +1007.4365 Algebraic Geometry +1007.4371 Information Theory +1007.4388 +1007.4392 Differential Geometry +1007.4401 Materials Science +1007.4416 Materials Science +1007.4419 Biological Physics +1007.4424 Dynamical Systems +1007.4425 Atomic Physics +1007.4427 Probability +1007.4438 Distributed, Parallel, and Cluster Computing +1007.4443 +1007.4445 Solar and Stellar Astrophysics +1007.4448 Algebraic Geometry +1007.4454 Experiment +1007.4455 Functional Analysis +1007.4457 Biomolecules +1007.4459 Operator Algebras +1007.4460 Computational Physics +1007.4461 Biomolecules +1007.4463 Group Theory +1007.4465 Hardware Architecture +1007.4467 Biomolecules +1007.4471 Biomolecules +1007.4475 Functional Analysis +1007.4476 Logic in Computer Science +1007.4477 Differential Geometry +1007.4486 General Physics +1007.4488 Complex Variables +1007.4489 Operator Algebras +1007.4490 Biomolecules +1007.4495 +1007.4503 Mesoscale and Nanoscale Physics +1007.4508 Probability +1007.4515 Materials Science +1007.4518 Numerical Analysis +1007.4521 Biomolecules +1007.4523 Multiagent Systems +1007.4527 Molecular Networks +1007.4528 Statistics Theory +1007.4530 Soft Condensed Matter +1007.4536 Statistical Mechanics +1007.4540 Information Theory +1007.4542 Information Theory +astro-ph/0606169 +cond-mat/0012050 +cond-mat/0512467 Mesoscale and Nanoscale Physics +cond-mat/9909434 +gr-qc/9504036 +math/0009139 Differential Geometry +math/0403448 Geometric Topology +math/0505461 Analysis of PDEs +math/0507061 Classical Analysis and ODEs +math/0606595 Probability +math/0608400 Probability +math/0612007 Number Theory +nucl-ex/0604019 +physics/0703019 General Physics +0804.1559 Differential Geometry +0805.0126 Soft Condensed Matter +0807.1949 Numerical Analysis +0809.3160 Materials Science +0810.3783 Numerical Analysis +0811.1313 Algebraic Topology +0812.0692 Statistical Mechanics +0812.4901 Analysis of PDEs +0902.2314 Analysis of PDEs +0904.2957 Logic +0905.1336 Analysis of PDEs +0907.4282 Instrumentation and Methods for Astrophysics +0908.1312 Disordered Systems and Neural Networks +0908.1551 Probability +0908.3729 Phenomenology +0909.0045 +0909.0091 +0909.4767 Information Theory +0910.2813 Soft Condensed Matter +0911.0577 Data Structures and Algorithms +0911.1166 Numerical Analysis +0911.2443 Spectral Theory +0911.5013 Biological Physics +0911.5147 Analysis of PDEs +0912.0139 +0912.0141 +0912.0398 Soft Condensed Matter +0912.2081 +0912.3625 Disordered Systems and Neural Networks +0912.4455 +1001.0503 +1001.1444 Theory +1001.3348 Theory +1002.2305 Optics +1002.2712 Phenomenology +1002.3212 Mesoscale and Nanoscale Physics +1002.3771 Mesoscale and Nanoscale Physics +1002.5042 Mesoscale and Nanoscale Physics +1003.0600 Quantum Gases +1003.2507 Materials Science +1003.3805 Mesoscale and Nanoscale Physics +1003.5127 +1004.0134 Dynamical Systems +1004.0661 Soft Condensed Matter +1004.2391 Disordered Systems and Neural Networks +1004.2625 Statistical Mechanics +1004.2855 Theory +1004.3149 +1004.3719 Distributed, Parallel, and Cluster Computing +1004.4099 +1004.4824 Physics and Society +1004.4934 +1004.5266 +1005.0830 Symbolic Computation +1005.1333 Strongly Correlated Electrons +1005.1644 Phenomenology +1005.2954 Differential Geometry +1005.3534 Plasma Physics +1005.3640 Metric Geometry +1005.4578 Phenomenology +1006.0980 Materials Science +1006.2507 High Energy Astrophysical Phenomena +1006.3052 Soft Condensed Matter +1006.4213 Soft Condensed Matter +1007.0555 Materials Science +1007.0654 Materials Science +1007.4109 Networking and Internet Architecture +1007.4446 Programming Languages +1007.5259 Optics +1008.0996 Disordered Systems and Neural Networks +1008.1237 Analysis of PDEs +1008.4021 Algebraic Geometry +1008.5186 Chaotic Dynamics +1008.5364 Operator Algebras +1009.0028 Number Theory +1009.0423 Mesoscale and Nanoscale Physics +1009.0895 Functional Analysis +1009.0988 Superconductivity +1009.1390 Other Condensed Matter +1009.1391 Spectral Theory +1009.1402 Cosmology and Nongalactic Astrophysics +1009.1403 +1009.1404 Software Engineering +1009.1407 Software Engineering +1009.1408 Superconductivity +1009.1412 Software Engineering +1009.1416 Astrophysics of Galaxies +1009.1427 Representation Theory +1009.1429 Functional Analysis +1009.1430 Commutative Algebra +1009.1439 History and Overview +1009.1441 Logic +1009.1446 Trading and Market Microstructure +1009.1447 Disordered Systems and Neural Networks +1009.1449 Theory +1009.1458 Analysis of PDEs +1009.1460 Information Theory +1009.1464 Probability +1009.1466 Digital Libraries +1009.1467 Probability +1009.1469 +1009.1470 General Physics +1009.1472 Commutative Algebra +1009.1474 Soft Condensed Matter +1009.1477 Phenomenology +1009.1478 Multimedia +1009.1480 Differential Geometry +1009.1489 Analysis of PDEs +1009.1495 Phenomenology +1009.1498 Adaptation and Self-Organizing Systems +1009.1500 Geometric Topology +1009.1502 Analysis of PDEs +1009.1504 Optics +1009.1505 Operator Algebras +1009.1512 Information Theory +1009.1519 Phenomenology +1009.1520 Materials Science +1009.1522 Functional Analysis +1009.1525 Earth and Planetary Astrophysics +1009.1526 Networking and Internet Architecture +1009.1533 Information Theory +1009.1536 Fluid Dynamics +1009.1541 Disordered Systems and Neural Networks +1009.1543 Probability +1009.1544 Cryptography and Security +1009.1547 Differential Geometry +1009.1555 Applications +1009.1559 Superconductivity +1009.1564 Strongly Correlated Electrons +1009.1576 Analysis of PDEs +1009.1578 Chemical Physics +1009.1582 Plasma Physics +1009.1585 Optimization and Control +1009.1586 Materials Science +1009.1588 Materials Science +1009.1590 Geophysics +1009.1591 Number Theory +1009.1593 +1009.1594 Optimization and Control +1009.1600 Analysis of PDEs +1009.1601 Statistical Mechanics +1009.1602 Biological Physics +1009.1603 Statistical Mechanics +1009.1604 Networking and Internet Architecture +1009.1605 Combinatorics +1009.1608 Analysis of PDEs +cond-mat/0604256 Statistical Mechanics +cond-mat/0611159 Statistical Mechanics +hep-ph/0604221 Phenomenology +math/0703045 Logic +0704.1746 Theory +0706.1922 Superconductivity +0706.3976 Strongly Correlated Electrons +0707.3604 +0709.2864 Accelerator Physics +0710.4012 Materials Science +0711.1418 +0711.3273 +0711.4451 +0712.3483 +0801.4474 +0803.3511 Phenomenology +0803.4488 +0804.0626 Algebraic Geometry +0804.1901 +0804.2827 +0804.3026 Other Condensed Matter +0805.0501 Information Theory +0806.2869 Phenomenology +0806.2899 +0807.1230 Pattern Formation and Solitons +0807.1381 Atomic Physics +0807.1751 Chemical Physics +0807.1914 +0807.2368 +0807.3348 Mesoscale and Nanoscale Physics +0807.4317 +0809.0441 +0809.0731 +0809.1541 Algebraic Geometry +0809.2447 Experiment +0809.2654 Probability +0810.0621 +0810.4511 Geometric Topology +0810.5772 +0811.0163 +0811.0299 +0811.1427 +0812.2207 +0812.2804 +0812.4223 Phenomenology +0901.1748 Solar and Stellar Astrophysics +0901.2810 Astrophysics of Galaxies +0902.0204 Probability +0902.0426 Chemical Physics +0903.1904 +0903.5164 Cosmology and Nongalactic Astrophysics +0904.0401 Theory +0904.2770 Molecular Networks +0904.3198 Theory +0904.3448 Statistical Mechanics +0904.3709 Number Theory +0905.0901 +0905.1324 +0905.4345 Experiment +0905.4563 Theory +0905.4933 +0906.0195 Combinatorics +0906.0230 Phenomenology +0906.1642 Phenomenology +0906.2523 Phenomenology +0906.3107 Geometric Topology +0906.4365 Solar and Stellar Astrophysics +0907.0485 +0907.1378 +0907.3235 Cosmology and Nongalactic Astrophysics +0907.4341 Phenomenology +0907.4917 Theory +0907.5447 +0908.0212 Phenomenology +0908.0407 Theory +0908.1214 +0908.2759 Theory +0908.2947 Phenomenology +0908.3195 Solar and Stellar Astrophysics +0908.3303 Theory +0908.3439 +0908.3857 Cosmology and Nongalactic Astrophysics +0909.0761 Quantum Gases +0909.2251 Cosmology and Nongalactic Astrophysics +0909.3964 Mesoscale and Nanoscale Physics +0909.4236 Phenomenology +0910.0017 High Energy Astrophysical Phenomena +0910.0592 Algebraic Topology +0910.0771 Phenomenology +0910.1276 +0910.1802 Experiment +0910.2387 Theory +0910.3459 Atomic Physics +0910.4184 High Energy Astrophysical Phenomena +0910.4391 Phenomenology +0910.4985 Cosmology and Nongalactic Astrophysics +0910.5029 Phenomenology +0910.5248 Cosmology and Nongalactic Astrophysics +0910.5494 Representation Theory +0910.5646 Strongly Correlated Electrons +0910.5659 +0910.5784 +0911.0118 Plasma Physics +0911.0139 Phenomenology +0911.0394 Theory +0911.0422 Phenomenology +0911.0605 Phenomenology +0911.0620 Phenomenology +0911.0853 +0911.0896 Cosmology and Nongalactic Astrophysics +0911.1232 Experiment +0911.1733 Chaotic Dynamics +0911.2215 Lattice +0911.2464 Phenomenology +0911.3287 Phenomenology +0911.3329 Phenomenology +0911.3575 Strongly Correlated Electrons +0911.3690 Atomic Physics +0911.3991 +0911.4171 +0911.4253 Soft Condensed Matter +0911.5178 Cosmology and Nongalactic Astrophysics +0911.5226 Phenomenology +0912.0481 +0912.0495 Phenomenology +0912.0646 Strongly Correlated Electrons +0912.1106 +0912.1319 Phenomenology +0912.1696 Atomic Physics +0912.1762 Phenomenology +0912.1779 Dynamical Systems +0912.2101 +0912.2247 Optics +0912.2406 Chaotic Dynamics +0912.2650 +0912.2722 Spectral Theory +0912.2724 +0912.2920 +0912.3070 Phenomenology +0912.3149 Phenomenology +0912.3492 Materials Science +0912.4060 Subcellular Processes +0912.4177 Cosmology and Nongalactic Astrophysics +0912.4202 +0912.4453 Phenomenology +0912.4727 Geometric Topology +0912.4813 Phenomenology +0912.4999 Phenomenology +0912.5108 Phenomenology +0912.5483 Lattice +1001.0104 Phenomenology +1001.0155 Theory +1001.0395 +1001.0486 Phenomenology +1001.1340 Phenomenology +1001.1684 Plasma Physics +1001.1875 +1001.3312 +1001.4469 +1001.4580 Cosmology and Nongalactic Astrophysics +1001.5210 Instrumentation and Methods for Astrophysics +1001.5315 Theory +1001.5393 Mesoscale and Nanoscale Physics +1001.5396 Phenomenology +1002.0268 +1002.0534 +1002.1026 Phenomenology +1002.1425 +1002.2035 +1002.2051 +1002.2308 Theory +1002.2586 Information Theory +1002.3193 Rings and Algebras +1002.3240 +1002.3459 Experiment +1002.3580 Mesoscale and Nanoscale Physics +1002.3624 +1002.3924 +1002.4111 Number Theory +1002.4426 Other Condensed Matter +1003.0468 +1003.0571 +1003.1524 Plasma Physics +1003.1791 +1003.3089 Physics and Society +1003.3901 High Energy Astrophysical Phenomena +1003.3998 Group Theory +1003.4107 Probability +1003.4258 Theory +1003.4636 Dynamical Systems +1003.4788 +1003.5668 Disordered Systems and Neural Networks +1004.1414 +1004.1871 +1004.3473 Lattice +1004.4277 Information Theory +1004.4293 Combinatorics +1004.4421 Learning +1004.4428 Other Computer Science +1004.4519 +1004.4603 Cosmology and Nongalactic Astrophysics +1004.4901 Computational Geometry +1004.4909 Computers and Society +1004.4917 Information Theory +1004.4926 Solar and Stellar Astrophysics +1004.4940 Cryptography and Security +1004.4949 Information Theory +1004.4956 Portfolio Management +1004.4972 Materials Science +1004.4977 Phenomenology +1004.4985 Lattice +1004.4992 Biomolecules +1004.4998 Logic in Computer Science +1004.4999 General Physics +1004.5012 Data Structures and Algorithms +1004.5014 Trading and Market Microstructure +1004.5015 Probability +1004.5026 Information Theory +1004.5031 Machine Learning +1004.5032 Representation Theory +1004.5034 Logic in Computer Science +1004.5037 Computational Finance +1004.5040 Metric Geometry +1004.5057 +1004.5071 Digital Libraries +1004.5075 Materials Science +1004.5077 +1004.5079 Mesoscale and Nanoscale Physics +1004.5080 Computational Complexity +1004.5082 Strongly Correlated Electrons +1004.5089 Computational Physics +1004.5090 +1004.5091 +1004.5095 Materials Science +1004.5107 Adaptation and Self-Organizing Systems +1004.5115 High Energy Astrophysical Phenomena +astro-ph/0008464 +astro-ph/0111233 +astro-ph/0204285 +astro-ph/0411247 +astro-ph/0602033 +astro-ph/0602353 +astro-ph/0603855 +astro-ph/0701006 +astro-ph/0703236 +astro-ph/9407005 +astro-ph/9501113 +astro-ph/9808076 +cond-mat/0609426 Superconductivity +hep-ph/9901368 Phenomenology +nucl-th/0306057 +physics/0511013 Instrumentation and Detectors +physics/0609177 Classical Physics +0705.3820 Computational Geometry +0708.1608 Group Theory +0710.4071 Mesoscale and Nanoscale Physics +0712.3744 Computation +0801.0091 Number Theory +0803.3082 Mesoscale and Nanoscale Physics +0804.4834 Biomolecules +0805.0330 Logic in Computer Science +0805.1971 Computation +0805.2031 Logic +0805.2033 Logic +0805.2038 Functional Analysis +0805.2043 Functional Analysis +0805.2046 Functional Analysis +0805.2205 Combinatorics +0807.0375 Probability +0807.3580 Representation Theory +0810.0741 +0811.0600 Analysis of PDEs +0811.1097 Probability +0902.3744 +0902.3880 +0902.4843 Dynamical Systems +0903.5072 Chemical Physics +0904.1805 Risk Management +0904.2706 Atomic and Molecular Clusters +0904.3098 Cosmology and Nongalactic Astrophysics +0904.4437 Strongly Correlated Electrons +0904.4667 +0905.0971 Algebraic Geometry +0905.3647 Computational Physics +0906.1023 Commutative Algebra +0906.3475 Numerical Analysis +0907.0760 +0907.1702 +0907.4827 Analysis of PDEs +0907.5286 Chemical Physics +0908.0658 Biomolecules +0908.0970 Soft Condensed Matter +0908.1266 Phenomenology +0909.2758 Cosmology and Nongalactic Astrophysics +0909.2874 Disordered Systems and Neural Networks +0909.3501 Quantum Gases +0909.3758 Atomic and Molecular Clusters +0909.4535 Cosmology and Nongalactic Astrophysics +0910.0660 +0910.0792 Strongly Correlated Electrons +0910.1340 Algebraic Geometry +0911.2780 Cosmology and Nongalactic Astrophysics +0911.3510 Phenomenology +0911.3878 Superconductivity +0911.4307 +0911.4870 +0912.1613 Theory +0912.4009 +0912.5015 +0912.5083 Chaotic Dynamics +0912.5091 Combinatorics +1001.0015 Cosmology and Nongalactic Astrophysics +1001.0434 Phenomenology +1001.1474 Analysis of PDEs +1001.1732 +1001.2050 Information Theory +1001.2158 Chemical Physics +1001.3269 Operator Algebras +1001.3406 Cosmology and Nongalactic Astrophysics +1001.3895 Methodology +1001.5121 Statistical Mechanics +1002.0614 Probability +1002.2395 Combinatorics +1002.2622 Theory +1002.3978 Differential Geometry +1002.4684 +1003.0120 Learning +1003.0207 Atmospheric and Oceanic Physics +1003.0213 Quantum Gases +1003.1206 Materials Science +1003.1406 Statistical Mechanics +1003.1555 Theory +1003.2743 Strongly Correlated Electrons +1004.1063 +1004.1533 Geometric Topology +1004.2138 Statistics Theory +1004.4991 Statistical Mechanics +1004.5517 Computational Geometry +1005.0511 Cosmology and Nongalactic Astrophysics +1005.2166 Materials Science +1005.4562 Chaotic Dynamics +1005.5185 Rings and Algebras +1005.5341 +1005.5462 Learning +1006.1710 Phenomenology +1006.2290 Algebraic Geometry +1006.2345 Differential Geometry +1006.2367 Superconductivity +1006.2403 Information Theory +1006.2405 +1006.2406 +1006.2407 Cryptography and Security +1006.2411 Cryptography and Security +1006.2412 Functional Analysis +1006.2416 Combinatorics +1006.2418 Optimization and Control +1006.2419 Astrophysics of Galaxies +1006.2420 Quantitative Methods +1006.2422 Distributed, Parallel, and Cluster Computing +1006.2425 Optimization and Control +1006.2428 Algebraic Geometry +1006.2429 Analysis of PDEs +1006.2430 +1006.2433 Distributed, Parallel, and Cluster Computing +1006.2439 Analysis of PDEs +1006.2442 Algebraic Geometry +1006.2443 Numerical Analysis +1006.2445 Cosmology and Nongalactic Astrophysics +1006.2447 Operator Algebras +1006.2449 Numerical Analysis +1006.2453 Numerical Analysis +1006.2462 Spectral Theory +1006.2467 Logic +1006.2477 Accelerator Physics +1006.2485 +1006.2486 Algebraic Geometry +1006.2488 Classical Analysis and ODEs +1006.2491 Experiment +1006.2493 Combinatorics +1006.2494 Materials Science +1006.2495 Logic in Computer Science +1006.2496 Other Condensed Matter +1006.2499 Rings and Algebras +1006.2500 Number Theory +1006.2501 Symplectic Geometry +1006.2502 +1006.2503 Earth and Planetary Astrophysics +1006.2505 Number Theory +1006.2517 Solar and Stellar Astrophysics +1006.2520 Popular Physics +1006.2527 Cell Behavior +1006.2531 Functional Analysis +1006.2538 Cosmology and Nongalactic Astrophysics +1006.2539 Instrumentation and Detectors +1006.2541 Probability +1006.2542 Chemical Physics +1006.2547 Experiment +1006.2551 +1006.2552 Networking and Internet Architecture +1006.2553 Optics +1006.2554 Analysis of PDEs +1006.2560 Combinatorics +1006.2561 Combinatorics +1006.2566 Disordered Systems and Neural Networks +1006.2567 Dynamical Systems +1006.2569 Analysis of PDEs +1006.2570 Group Theory +1006.2571 Combinatorics +1006.2574 Analysis of PDEs +1006.2576 Analysis of PDEs +1006.2579 Analysis of PDEs +1006.2582 Algebraic Geometry +1006.2585 Probability +1006.2588 Learning +1006.2590 Dynamical Systems +1006.2593 +1006.2608 Dynamical Systems +1006.2614 Optimization and Control +1006.2617 Operating Systems +1006.2629 Chaotic Dynamics +1006.2630 Analysis of PDEs +1006.2632 Number Theory +1006.2635 High Energy Astrophysical Phenomena +1006.2637 Operating Systems +1006.2642 Theory +1006.2645 +1006.2650 Distributed, Parallel, and Cluster Computing +1006.2657 General Physics +1006.2661 Biological Physics +1006.2664 Atomic and Molecular Clusters +1006.2665 Functional Analysis +1006.2667 Atomic and Molecular Clusters +1006.2673 Functional Analysis +1006.2677 Functional Analysis +1006.2678 Functional Analysis +1006.2679 Discrete Mathematics +1006.2680 Networking and Internet Architecture +1006.2682 Networking and Internet Architecture +1006.2684 Networking and Internet Architecture +1006.2687 Combinatorics +1006.2689 Networking and Internet Architecture +1006.2690 Probability +1006.2691 Networking and Internet Architecture +1006.2693 Networking and Internet Architecture +1006.2694 Probability +1006.2695 Networking and Internet Architecture +1006.2699 Networking and Internet Architecture +1006.2700 Computer Vision and Pattern Recognition +1006.2702 Networking and Internet Architecture +1006.2712 Computational Finance +1006.2718 Artificial Intelligence +1006.2723 Algebraic Geometry +1006.2734 Computer Vision and Pattern Recognition +1006.2735 Mesoscale and Nanoscale Physics +1006.2742 K-Theory and Homology +1006.2743 Artificial Intelligence +1006.2744 +1006.2747 Chemical Physics +1006.2749 Representation Theory +1006.2750 Phenomenology +1006.2754 Experiment +1006.2755 +1006.2760 Cosmology and Nongalactic Astrophysics +1006.2764 +1006.2765 Cosmology and Nongalactic Astrophysics +1006.2766 Probability +1006.2772 Logic in Computer Science +1006.2774 Commutative Algebra +1006.2780 Spectral Theory +1006.2786 Networking and Internet Architecture +1006.2787 Classical Analysis and ODEs +1006.2789 Dynamical Systems +1006.2790 Materials Science +1006.2792 General Mathematics +1006.2794 +1006.2798 Networking and Internet Architecture +1006.2802 Other Computer Science +1006.2804 Computer Vision and Pattern Recognition +1006.2805 Computational Engineering, Finance, and Science +1006.2806 Computational Engineering, Finance, and Science +1006.2807 Networking and Internet Architecture +1006.2808 Probability +1006.2809 Computation and Language +1006.2811 Other Computer Science +1006.2812 Software Engineering +1006.2813 Computational Engineering, Finance, and Science +1006.2816 Programming Languages +1006.2819 Analysis of PDEs +1006.2820 Other Computer Science +1006.2822 Cryptography and Security +cond-mat/0702074 Statistical Mechanics +math/0202104 Combinatorics +math/0310289 Representation Theory +physics/0105008 General Physics +physics/0702101 Physics Education +1012.6024 General Mathematics +0707.0046 K-Theory and Homology +0712.1468 +0802.0922 Analysis of PDEs +0803.0775 Quantum Algebra +0803.1249 Differential Geometry +0803.2621 Differential Geometry +0805.1266 Statistical Mechanics +0806.3280 History and Overview +0808.2303 Probability +0809.0147 Statistical Mechanics +0901.1842 Optimization and Control +0901.4423 Algebraic Topology +0904.4182 Cosmology and Nongalactic Astrophysics +0904.4185 Algebraic Topology +0906.4286 Number Theory +0906.4386 Strongly Correlated Electrons +0907.0032 Probability +0907.1462 Phenomenology +0909.5090 +0910.0940 Physics and Society +0911.2758 Mesoscale and Nanoscale Physics +0911.2894 Rings and Algebras +0911.4216 Optics +0911.4944 Mesoscale and Nanoscale Physics +0912.0466 +0912.3159 Rings and Algebras +1001.2418 Strongly Correlated Electrons +1001.2758 +1001.3950 Phenomenology +1001.5457 Strongly Correlated Electrons +1002.1605 Group Theory +1002.2404 Strongly Correlated Electrons +1002.4685 Mesoscale and Nanoscale Physics +1003.4395 Theory +1003.4714 Other Condensed Matter +1003.5201 Disordered Systems and Neural Networks +1004.0221 Cosmology and Nongalactic Astrophysics +1004.1943 Superconductivity +1004.5270 Dynamical Systems +1004.5522 +1005.0012 +1005.0441 Optics +1005.5669 Materials Science +1006.1335 Instrumentation and Methods for Astrophysics +1006.1594 +1006.1984 +1006.2061 Chemical Physics +1006.5544 +1007.0353 Number Theory +1007.0539 Phenomenology +1007.3202 General Physics +1008.0437 Mesoscale and Nanoscale Physics +1008.0997 Solar and Stellar Astrophysics +1008.3870 High Energy Astrophysical Phenomena +1008.4536 Optimization and Control +1008.4571 Distributed, Parallel, and Cluster Computing +1008.4658 Information Retrieval +1008.5331 +1009.1247 Algebraic Geometry +1009.1542 Instrumentation and Methods for Astrophysics +1009.1655 Combinatorics +1009.1706 Statistics Theory +1009.1869 Phenomenology +1009.1883 General Physics +1009.1892 Number Theory +1009.1899 Algebraic Geometry +1009.1904 Computational Geometry +1009.1906 Cosmology and Nongalactic Astrophysics +1009.1908 Instrumentation and Methods for Astrophysics +1009.1917 Combinatorics +1009.1922 Complex Variables +1009.1925 Analysis of PDEs +1009.1927 Phenomenology +1009.1929 Group Theory +1009.1938 Instrumentation and Methods for Astrophysics +1009.1942 Phenomenology +1009.1964 Materials Science +1009.1966 Group Theory +1009.1970 General Physics +1009.1976 Logic in Computer Science +1009.1983 Computer Vision and Pattern Recognition +1009.1987 General Physics +1009.1990 Computational Complexity +1009.1994 High Energy Astrophysical Phenomena +1009.2000 Other Computer Science +1009.2002 Other Computer Science +1009.2003 Artificial Intelligence +1009.2009 Machine Learning +1009.2016 High Energy Astrophysical Phenomena +1009.2024 Cosmology and Nongalactic Astrophysics +1009.2027 Mesoscale and Nanoscale Physics +1009.2028 Functional Analysis +1009.2032 Systems and Control +1009.2034 Tissues and Organs +1009.2043 Numerical Analysis +1009.2044 Cellular Automata and Lattice Gases +1009.2045 Numerical Analysis +1009.2047 Numerical Analysis +1009.2056 Atmospheric and Oceanic Physics +1009.2058 +1009.2059 Combinatorics +1009.2060 Combinatorics +1009.2071 +1009.2074 Lattice +1009.2077 Information Theory +1009.2083 Statistical Mechanics +1009.2084 Artificial Intelligence +cond-mat/0511428 Materials Science +math/0203273 Category Theory +math/0205158 Algebraic Geometry +math/0210202 Number Theory +math/0401019 Analysis of PDEs +math/0506434 Optimization and Control +math/0606424 Algebraic Geometry +math/0610446 Algebraic Geometry +math/0610828 Algebraic Geometry +math/0701782 Algebraic Geometry +math/0703063 Algebraic Geometry +quant-ph/0008037 +0705.2687 Algebraic Topology +0706.2419 Mesoscale and Nanoscale Physics +0707.0639 Materials Science +0707.3881 Algebraic Geometry +0710.3268 Physics and Society +0711.4649 Probability +0712.3229 +0801.1532 Functional Analysis +0802.1320 Combinatorics +0802.2918 Representation Theory +0805.1156 Materials Science +0807.1622 Statistical Mechanics +0809.0073 +0809.2010 Neurons and Cognition +0902.4205 Other Condensed Matter +0906.1778 Combinatorics +0907.0744 Complex Variables +0908.0616 Instrumentation and Methods for Astrophysics +0908.3037 Molecular Networks +0909.0820 +0912.3842 Mesoscale and Nanoscale Physics +1001.3961 +1001.4902 +1002.0305 Cellular Automata and Lattice Gases +1002.1907 +1003.0044 +1003.0470 Learning +1003.2318 Materials Science +1003.3413 Mesoscale and Nanoscale Physics +1003.5673 Physics and Society +1004.0188 Probability +1004.0541 Optimization and Control +1004.1597 Statistical Mechanics +1004.1802 Theory +1004.2236 Superconductivity +1004.3182 +1004.3234 +1004.4224 Commutative Algebra +1004.5319 Materials Science +1005.1262 Quantum Gases +1005.4555 +1006.2456 Physics and Society +1006.3168 +1007.2265 Physics and Society +1007.2327 Networking and Internet Architecture +1007.2967 Mesoscale and Nanoscale Physics +1007.3124 Differential Geometry +1007.3236 Chaotic Dynamics +1007.3519 Cosmology and Nongalactic Astrophysics +1007.3553 Data Analysis, Statistics and Probability +1007.3660 Spectral Theory +1007.3739 Statistical Mechanics +1007.3746 Instrumentation and Methods for Astrophysics +1007.3747 Data Structures and Algorithms +1007.3755 Group Theory +1007.3760 Numerical Analysis +1007.3762 Probability +1007.3764 Numerical Analysis +1007.3765 Mesoscale and Nanoscale Physics +1007.3767 Combinatorics +1007.3772 Computer Vision and Pattern Recognition +1007.3777 Data Analysis, Statistics and Probability +1007.3781 Databases +1007.3784 Statistics Theory +1007.3789 Physics Education +1007.3794 Logic in Computer Science +1007.3796 Quantum Algebra +1007.3799 Learning +1007.3801 Computer Science and Game Theory +1007.3803 Representation Theory +1007.3808 Information Theory +1007.3812 Experiment +1007.3813 Materials Science +1007.3815 +1007.3817 Strongly Correlated Electrons +1007.3819 Logic in Computer Science +1007.3820 +1007.3826 Analysis of PDEs +1007.3827 Representation Theory +1007.3829 Logic in Computer Science +1007.3830 Probability +1007.3833 Combinatorics +1007.3835 Programming Languages +1007.3836 Formal Languages and Automata Theory +1007.3858 Programming Languages +1007.3859 Materials Science +1007.3863 Mesoscale and Nanoscale Physics +1007.3869 Combinatorics +1007.3875 Algebraic Geometry +1007.3876 +1007.3885 Rings and Algebras +1007.3888 Soft Condensed Matter +1007.3889 Materials Science +1007.3890 Analysis of PDEs +1007.3892 Analysis of PDEs +1007.3894 Operator Algebras +1007.3896 Information Theory +1007.3899 Analysis of PDEs +1007.3905 +1007.3906 Genomics +1007.3909 Phenomenology +1007.3910 Probability +1007.3912 Phenomenology +1007.3924 Mesoscale and Nanoscale Physics +1007.3925 Instrumentation and Methods for Astrophysics +1007.3926 Computer Vision and Pattern Recognition +1007.3931 Analysis of PDEs +1007.3933 Number Theory +1007.3940 Dynamical Systems +1007.3945 Optics +1007.3954 Soft Condensed Matter +1007.3955 Algebraic Geometry +1007.3960 Chaotic Dynamics +1007.3961 Programming Languages +1007.3963 Plasma Physics +1007.3971 Plasma Physics +1007.3977 +1007.3978 Operator Algebras +cond-mat/0105157 Superconductivity +cond-mat/0105159 Strongly Correlated Electrons +cond-mat/0203019 Superconductivity +cond-mat/0206172 Superconductivity +cond-mat/0301302 Superconductivity +cond-mat/0310261 Mesoscale and Nanoscale Physics +cond-mat/0312297 Disordered Systems and Neural Networks +cond-mat/0405028 Superconductivity +cond-mat/0405542 Mesoscale and Nanoscale Physics +cond-mat/0410672 Superconductivity +cond-mat/0411136 Materials Science +cond-mat/0412449 Superconductivity +cond-mat/0503618 Other Condensed Matter +cond-mat/0505155 Superconductivity +cond-mat/0507636 Other Condensed Matter +cond-mat/0606027 Materials Science +cond-mat/0701754 Materials Science +cond-mat/0702314 Statistical Mechanics +cond-mat/9902087 Superconductivity +cond-mat/9910402 Superconductivity +cond-mat/9912063 Materials Science +math/0504453 Number Theory +math/0509426 Algebraic Geometry +math/0602464 Combinatorics +math/0602502 Differential Geometry +math/0610399 Combinatorics +0704.2901 Metric Geometry +0708.3537 Algebraic Geometry +0709.3995 Probability +0711.1981 Differential Geometry +0712.0291 +0801.4644 Fluid Dynamics +0804.0368 Phenomenology +0804.4206 +0805.2087 General Topology +0806.1127 Numerical Analysis +0806.3676 Number Theory +0806.3787 Computation and Language +0807.3035 General Physics +0808.0832 Classical Analysis and ODEs +0808.1813 Combinatorics +0809.1257 Information Theory +0809.1573 Complex Variables +0809.2232 Materials Science +0810.2149 Probability +0810.3538 Probability +0810.4609 Probability +0810.4652 Soft Condensed Matter +0811.4107 Complex Variables +0811.4254 Accelerator Physics +0812.2301 Information Theory +0812.3071 Data Analysis, Statistics and Probability +0901.4228 Fluid Dynamics +0902.1621 Fluid Dynamics +0902.2545 Chaotic Dynamics +0903.0145 Dynamical Systems +0903.2797 Number Theory +0903.2992 Representation Theory +0903.4070 +0903.4277 Theory +0904.4864 Theory +0905.2386 Discrete Mathematics +0906.4596 Dynamical Systems +0907.3471 Earth and Planetary Astrophysics +0907.4610 +0907.4971 General Physics +0907.5232 Number Theory +0907.5549 Differential Geometry +0908.0846 Algebraic Geometry +0909.0686 Commutative Algebra +0909.2477 Mesoscale and Nanoscale Physics +0909.3311 +0909.3416 +0909.4676 +0909.5041 Soft Condensed Matter +0910.0610 Learning +0910.2979 +0910.3621 Numerical Analysis +0911.1851 Programming Languages +0911.3843 +0911.4124 Differential Geometry +0911.5018 Logic in Computer Science +0911.5419 +1001.0316 Cosmology and Nongalactic Astrophysics +1001.5020 Differential Geometry +1002.0085 +1002.0591 Superconductivity +1002.0993 Statistical Mechanics +1002.1514 +1002.2542 Earth and Planetary Astrophysics +1002.4683 Strongly Correlated Electrons +1002.4938 Disordered Systems and Neural Networks +1003.1304 Populations and Evolution +1003.2266 Superconductivity +1003.3353 Materials Science +1003.3531 +1003.5011 Mesoscale and Nanoscale Physics +1003.5094 Chemical Physics +1003.5544 Statistics Theory +1004.0721 Analysis of PDEs +1004.2451 Theory +1004.2583 Algebraic Geometry +1004.2843 High Energy Astrophysical Phenomena +1004.3056 High Energy Astrophysical Phenomena +1004.3066 Mesoscale and Nanoscale Physics +1004.4129 Earth and Planetary Astrophysics +1005.1153 Medical Physics +1005.1172 Chaotic Dynamics +1005.1416 Functional Analysis +1005.2382 Combinatorics +1005.3846 Atomic Physics +1005.4809 Mesoscale and Nanoscale Physics +1005.4917 Mesoscale and Nanoscale Physics +1005.5450 Mesoscale and Nanoscale Physics +1005.5673 Functional Analysis +1006.0527 Number Theory +1006.1242 Atomic Physics +1006.1832 Strongly Correlated Electrons +1006.2860 Information Theory +1006.3210 Combinatorics +1006.3385 Information Theory +1006.3586 Strongly Correlated Electrons +1006.3603 Materials Science +1006.4526 Atomic Physics +1006.4532 +1006.5635 Instrumentation and Methods for Astrophysics +1006.5737 Biological Physics +1007.1361 Data Structures and Algorithms +1007.1469 +1007.2303 Number Theory +1007.3579 Superconductivity +1007.3881 Computer Vision and Pattern Recognition +1007.4494 Statistical Mechanics +1007.5393 Strongly Correlated Electrons +1008.0006 Materials Science +1008.0193 Number Theory +1008.1135 Phenomenology +1008.1375 Exactly Solvable and Integrable Systems +1008.1595 Geometric Topology +1008.1802 Strongly Correlated Electrons +1008.2390 Cryptography and Security +1008.2781 Mesoscale and Nanoscale Physics +1008.2783 Statistical Mechanics +1008.2788 Mesoscale and Nanoscale Physics +1008.4037 Probability +1008.4425 Mesoscale and Nanoscale Physics +1009.1732 Other Statistics +1009.2026 Mesoscale and Nanoscale Physics +1009.4339 Cosmology and Nongalactic Astrophysics +1009.4560 Chemical Physics +1009.4843 Statistical Finance +1010.0286 Algebraic Geometry +1010.1836 Combinatorics +1010.1915 Exactly Solvable and Integrable Systems +1010.2208 High Energy Astrophysical Phenomena +1010.2330 Phenomenology +1010.2555 Differential Geometry +1010.2603 Number Theory +1010.3248 Fluid Dynamics +1010.3259 High Energy Astrophysical Phenomena +1010.3261 Theory +1010.3263 Formal Languages and Automata Theory +1010.3266 Physics Education +1010.3269 +1010.3275 Fluid Dynamics +1010.3277 +1010.3279 Fluid Dynamics +1010.3281 Fluid Dynamics +1010.3283 Fluid Dynamics +1010.3284 Geometric Topology +1010.3285 Fluid Dynamics +1010.3286 Fluid Dynamics +1010.3287 General Mathematics +1010.3289 +1010.3290 Fluid Dynamics +1010.3293 Fluid Dynamics +1010.3295 Probability +1010.3296 Fluid Dynamics +1010.3297 Fluid Dynamics +1010.3299 Numerical Analysis +1010.3302 Experiment +1010.3306 Fluid Dynamics +1010.3308 Dynamical Systems +1010.3310 Fluid Dynamics +1010.3311 Fluid Dynamics +1010.3312 Information Theory +1010.3313 Differential Geometry +1010.3314 Fluid Dynamics +1010.3316 Fluid Dynamics +1010.3317 Methodology +1010.3322 Number Theory +1010.3323 Plasma Physics +1010.3325 Human-Computer Interaction +1010.3328 Soft Condensed Matter +1010.3332 Theory +1010.3336 Algebraic Topology +1010.3337 Information Theory +1010.3338 Rings and Algebras +1010.3339 Differential Geometry +1010.3344 Solar and Stellar Astrophysics +1010.3345 Solar and Stellar Astrophysics +1010.3351 Strongly Correlated Electrons +1010.3352 General Physics +1010.3353 Probability +1010.3355 Solar and Stellar Astrophysics +1010.3356 Differential Geometry +1010.3357 Fluid Dynamics +1010.3363 Algebraic Geometry +1010.3364 Fluid Dynamics +1010.3365 Metric Geometry +1010.3368 General Topology +1010.3369 Strongly Correlated Electrons +1010.3372 Dynamical Systems +1010.3376 Solar and Stellar Astrophysics +1010.3380 General Topology +1010.3381 General Topology +1010.3382 Astrophysics of Galaxies +1010.3384 Phenomenology +1010.3385 Quantum Algebra +1010.3386 Functional Analysis +1010.3387 Solar and Stellar Astrophysics +1010.3391 Materials Science +1010.3401 General Finance +1010.3407 Rings and Algebras +1010.3408 Rings and Algebras +1010.3409 Differential Geometry +1010.3410 Rings and Algebras +1010.3411 Networking and Internet Architecture +1010.3415 Combinatorics +1010.3416 +1010.3417 Differential Geometry +1010.3431 +1010.3432 Data Analysis, Statistics and Probability +1010.3433 Analysis of PDEs +1010.3435 Numerical Analysis +1010.3446 Logic +1010.3451 Classical Analysis and ODEs +1010.3452 Plasma Physics +1010.3454 Fluid Dynamics +1010.3462 Plasma Physics +1010.3464 Disordered Systems and Neural Networks +1010.3467 Computer Vision and Pattern Recognition +1010.3473 +1010.3475 Number Theory +1010.3476 Mesoscale and Nanoscale Physics +1010.3479 Materials Science +1010.3480 Mesoscale and Nanoscale Physics +1010.3482 Functional Analysis +1010.3484 Learning +1010.3485 General Physics +1010.3496 Geometric Topology +1010.3498 Astrophysics of Galaxies +1010.3500 Group Theory +1010.3501 Applications +1010.3502 Rings and Algebras +1010.3506 Differential Geometry +1010.3507 Differential Geometry +1010.3508 Differential Geometry +1010.3510 Group Theory +1010.3514 Statistical Mechanics +1010.3515 +1010.3517 Cosmology and Nongalactic Astrophysics +1010.3518 Atomic and Molecular Clusters +1010.3519 Information Theory +1010.3523 Instrumentation and Methods for Astrophysics +1010.3524 Instrumentation and Detectors +1010.3525 Physics and Society +1010.3526 Fluid Dynamics +1010.3531 Computational Physics +1010.3533 Statistical Mechanics +1010.3535 Dynamical Systems +1010.3536 Group Theory +1010.3538 Fluid Dynamics +1010.3544 Number Theory +1010.3551 +1010.3556 Strongly Correlated Electrons +1010.3558 Phenomenology +1010.3575 Applications +1010.3577 Fluid Dynamics +1010.3579 Probability +1010.3582 Probability +1010.3584 +1010.3586 Applications +1010.3587 Strongly Correlated Electrons +1010.3591 Geometric Topology +1010.3594 Instrumentation and Methods for Astrophysics +1010.3596 Probability +1010.3598 Functional Analysis +1010.3610 Metric Geometry +1010.3613 Information Theory +1010.3614 Analysis of PDEs +1010.3615 Databases +1010.3619 Distributed, Parallel, and Cluster Computing +1010.3622 Algebraic Geometry +1010.3624 +1010.3632 Optics +1010.3636 Analysis of PDEs +1010.3642 Differential Geometry +1010.3645 Instrumentation and Methods for Astrophysics +1010.3646 Fluid Dynamics +1010.3650 General Physics +1010.3655 Differential Geometry +1010.3660 Cosmology and Nongalactic Astrophysics +1010.3669 Atmospheric and Oceanic Physics +1010.3671 Algebraic Geometry +1010.3675 Experiment +1010.3680 Probability +1010.3681 Complex Variables +1010.3683 Analysis of PDEs +1010.3686 Dynamical Systems +1010.3688 Dynamical Systems +1010.3689 Fluid Dynamics +1010.3692 Number Theory +1010.3694 Plasma Physics +1010.3696 Experiment +cond-mat/0409539 Materials Science +math/0412282 Commutative Algebra +math/0612537 General Mathematics +physics/0605058 Optics +quant-ph/0009011 +quant-ph/0106084 +quant-ph/0206168 +quant-ph/0307193 +quant-ph/0408186 +0704.2430 +0705.4464 Materials Science +0706.0591 Theory +0706.2512 Algebraic Geometry +0706.4240 Mesoscale and Nanoscale Physics +0707.0727 Analysis of PDEs +0708.2259 +0709.0036 Probability +0709.1929 +0709.4367 Biological Physics +0709.4370 Biological Physics +0710.2375 Differential Geometry +0710.4257 Other Condensed Matter +0712.0073 Other Condensed Matter +0712.0940 Chaotic Dynamics +0712.2338 Probability +0712.3657 Analysis of PDEs +0712.3840 Analysis of PDEs +0801.2814 +0803.3616 General Physics +0804.2345 Probability +0805.0502 +0805.3413 +0805.4320 +0806.0066 Analysis of PDEs +0806.1700 +0806.3480 Discrete Mathematics +0808.1113 Biological Physics +0808.3026 +0809.0683 Probability +0809.4947 Probability +0810.0926 Mesoscale and Nanoscale Physics +0810.1838 +0810.2006 +0810.2062 General Physics +0810.4697 Classical Physics +0810.5294 +0811.2180 Probability +0812.0789 Probability +0812.2735 Logic +0901.0135 Machine Learning +0901.2203 Adaptation and Self-Organizing Systems +0901.2384 Statistical Finance +0902.0294 +0902.2600 General Physics +0902.3352 Analysis of PDEs +0902.4179 +0903.3670 Classical Physics +0903.3736 General Finance +0904.0157 Probability +0904.0174 Differential Geometry +0904.2172 Statistical Mechanics +0904.4060 Algebraic Geometry +0905.1072 Solar and Stellar Astrophysics +0905.2443 Astrophysics of Galaxies +0905.2635 Computer Vision and Pattern Recognition +0905.4759 Complex Variables +0906.2756 Multiagent Systems +0906.5077 +0906.5588 +0907.2261 Probability +0907.2352 Phenomenology +0908.1665 Mesoscale and Nanoscale Physics +0908.4233 +0908.4288 Physics and Society +0909.0049 Physics and Society +0909.2108 Probability +0910.2651 Superconductivity +0910.3456 Differential Geometry +0910.4433 Algebraic Geometry +0910.4756 +0910.5073 Information Theory +0911.2261 Algebraic Geometry +0911.2534 Lattice +0911.3523 +0911.5074 Theory +0911.5568 Computation and Language +0912.1243 Theory +0912.2252 Theory +0912.2422 Classical Physics +0912.2556 Physics and Society +0912.3725 Dynamical Systems +0912.4081 Quantum Algebra +0912.4242 +0912.5474 Cosmology and Nongalactic Astrophysics +1001.0664 Phenomenology +1001.1415 +1001.3322 Atomic Physics +1001.4252 Number Theory +1001.4754 +1002.3622 K-Theory and Homology +1002.4313 +1002.4410 Physics and Society +1002.4835 Neurons and Cognition +1003.0542 +1003.1679 +1003.2855 Statistical Mechanics +1003.4629 Numerical Analysis +1003.5400 Logic +1003.5637 Theory +1004.1014 Dynamical Systems +1004.3261 Cosmology and Nongalactic Astrophysics +1004.3330 High Energy Astrophysical Phenomena +1004.3779 Instrumentation and Detectors +1004.4756 Cosmology and Nongalactic Astrophysics +1005.1290 +1005.2726 Theory +1005.3806 Probability +1005.4750 Theory +1005.5619 Representation Theory +1006.0444 Combinatorics +1006.0636 Quantum Gases +1006.0734 +1006.0798 Chaotic Dynamics +1006.2296 Dynamical Systems +1006.2384 High Energy Astrophysical Phenomena +1006.2459 +1006.3454 +1006.3928 Representation Theory +1006.3962 Numerical Analysis +1006.4008 Phenomenology +1006.4380 Differential Geometry +1006.4628 +1006.5039 +1006.5291 Theory +1006.5574 Metric Geometry +1006.5818 Geophysics +1007.0189 Dynamical Systems +1007.0408 Databases +1007.0865 Phenomenology +1007.1115 Phenomenology +1007.1567 Theory +1007.2008 Statistical Mechanics +1007.2159 Group Theory +1007.3040 +1007.3877 Statistical Mechanics +1007.5116 +1008.0837 Materials Science +1008.1528 +1008.1818 Soft Condensed Matter +1008.1975 Data Structures and Algorithms +1008.2307 Phenomenology +1008.2611 Mesoscale and Nanoscale Physics +1008.2924 Commutative Algebra +1008.3402 Computers and Society +1008.3624 Cosmology and Nongalactic Astrophysics +1008.4245 Mesoscale and Nanoscale Physics +1009.0753 Theory +1009.0874 Theory +1009.0990 Plasma Physics +1009.2287 Biological Physics +1009.2572 Group Theory +1009.5639 Materials Science +1010.0628 Combinatorics +1010.1892 General Topology +1010.1963 Metric Geometry +1010.3394 Probability +1010.3456 Symplectic Geometry +1010.4265 Materials Science +1010.4620 Differential Geometry +1010.4739 Superconductivity +1010.5310 Number Theory +1010.5959 Differential Geometry +1010.6079 Theory +1011.0436 Astrophysics of Galaxies +1011.0656 Rings and Algebras +1011.0767 Strongly Correlated Electrons +1011.1413 Instrumentation and Methods for Astrophysics +1011.1503 Information Theory +1011.1508 Computational Engineering, Finance, and Science +1011.1515 Analysis of PDEs +1011.1516 Differential Geometry +1011.1519 Systems and Control +1011.1520 Superconductivity +1011.1526 Analysis of PDEs +1011.1527 Statistical Mechanics +1011.1528 Combinatorics +1011.1529 Cryptography and Security +1011.1532 Experiment +1011.1535 +1011.1540 Differential Geometry +1011.1543 Classical Analysis and ODEs +1011.1544 Differential Geometry +1011.1547 Social and Information Networks +1011.1551 Software Engineering +1011.1552 Other Condensed Matter +1011.1553 Mesoscale and Nanoscale Physics +1011.1558 Operator Algebras +1011.1560 Human-Computer Interaction +1011.1561 Numerical Analysis +1011.1562 General Mathematics +1011.1563 Disordered Systems and Neural Networks +1011.1568 Optics +1011.1575 Optics +1011.1578 Symbolic Computation +1011.1579 Astrophysics of Galaxies +1011.1580 Cosmology and Nongalactic Astrophysics +1011.1587 Group Theory +1011.1588 Optics +1011.1591 Algebraic Geometry +1011.1596 Algebraic Geometry +1011.1598 Optics +1011.1600 Experiment +1011.1602 Combinatorics +1011.1605 Fluid Dynamics +1011.1608 Differential Geometry +1011.1609 Representation Theory +1011.1613 Solar and Stellar Astrophysics +1011.1616 Optics +1011.1623 Exactly Solvable and Integrable Systems +1011.1627 Optics +1011.1629 Logic +1011.1636 Representation Theory +1011.1640 Soft Condensed Matter +1011.1649 Cosmology and Nongalactic Astrophysics +1011.1659 Solar and Stellar Astrophysics +1011.1660 Artificial Intelligence +1011.1662 Artificial Intelligence +1011.1670 Materials Science +1011.1672 Probability +1011.1678 High Energy Astrophysical Phenomena +1011.1679 Combinatorics +1011.1682 Accelerator Physics +1011.1684 Classical Physics +1011.1689 Dynamical Systems +1011.1692 Experiment +1011.1694 +1011.1695 Lattice +1011.1699 Analysis of PDEs +1011.1704 +1011.1705 Algebraic Geometry +1011.1710 Optimization and Control +1011.1717 Applications +1011.1724 Probability +1011.1729 Representation Theory +1011.1730 Mesoscale and Nanoscale Physics +1011.1731 Rings and Algebras +1011.1735 Operating Systems +1011.1737 Exactly Solvable and Integrable Systems +1011.1738 Systems and Control +1011.1740 Theory +1011.1742 Other Computer Science +1011.1743 Soft Condensed Matter +1011.1745 Computation +1011.1753 Applications +1011.1763 Differential Geometry +1011.1766 Applications +1011.1767 Classical Analysis and ODEs +1011.1768 Analysis of PDEs +1011.1772 Cosmology and Nongalactic Astrophysics +1011.1776 Analysis of PDEs +1011.1778 Solar and Stellar Astrophysics +1011.1780 Lattice +1011.1785 Classical Analysis and ODEs +1011.1788 Applications +1011.1790 Probability +1011.1792 Lattice +1011.1793 Cryptography and Security +1011.1797 Combinatorics +1011.1798 Applications +1011.1799 Probability +1011.1801 Algebraic Geometry +1011.1804 Differential Geometry +1011.1808 Quantum Algebra +1011.1809 Theory +1011.1813 Applications +1011.1814 Probability +1011.1815 Atmospheric and Oceanic Physics +1011.1816 Instrumentation and Methods for Astrophysics +1011.1820 Rings and Algebras +1011.1824 Probability +1011.1828 Optimization and Control +1011.1833 +1011.1839 Optimization and Control +1011.1841 Robotics +1011.1846 Representation Theory +1011.1851 Phenomenology +1011.1863 Materials Science +1011.1864 Solar and Stellar Astrophysics +1011.1869 General Topology +1011.1871 Theory +1011.1872 High Energy Astrophysical Phenomena +1011.1874 Other Computer Science +1011.1875 +1011.1876 Disordered Systems and Neural Networks +1011.1880 General Physics +1011.1882 Materials Science +1011.1887 Number Theory +1011.1888 Analysis of PDEs +1011.1892 Networking and Internet Architecture +1011.1893 Solar and Stellar Astrophysics +1011.1901 Analysis of PDEs +astro-ph/0001040 +astro-ph/0011016 +astro-ph/0103071 +astro-ph/0205194 +astro-ph/0504140 +astro-ph/9507067 +cond-mat/0008402 Mesoscale and Nanoscale Physics +cond-mat/0510120 Other Condensed Matter +cond-mat/0511524 Strongly Correlated Electrons +cond-mat/0608236 Strongly Correlated Electrons +cond-mat/9610030 Strongly Correlated Electrons +cond-mat/9907247 Superconductivity +cs/0603097 Information Theory +gr-qc/0603059 +hep-ph/0010193 Phenomenology +hep-ph/9512378 Phenomenology +hep-th/0109138 Theory +hep-th/0111193 Theory +math-ph/0608045 +math-ph/0703090 +math/0601667 Analysis of PDEs +math/0608145 Combinatorics +math/0702176 Analysis of PDEs +math/0703741 Probability +math/9907020 Algebraic Geometry +quant-ph/0608222 +0704.2367 Algebraic Geometry +0704.2393 Algebraic Geometry +0704.3686 Methodology +0705.0244 +0706.0063 Theory +0706.2764 +0708.0775 +0710.2964 Number Theory +0710.3572 Mesoscale and Nanoscale Physics +0710.4884 +0806.1360 Exactly Solvable and Integrable Systems +0807.2346 Phenomenology +0809.0660 Methodology +0809.2904 +0810.2850 +0811.3758 Number Theory +0812.2925 Statistical Mechanics +0904.0390 Analysis of PDEs +0905.0377 Combinatorics +0905.0572 Functional Analysis +0906.2997 Dynamical Systems +0906.3492 Combinatorics +0908.2332 Combinatorics +0909.0302 Theory +0910.0695 Discrete Mathematics +0910.1308 Representation Theory +0910.2823 +0911.0398 Commutative Algebra +0911.2831 Theory +0911.4320 Mesoscale and Nanoscale Physics +0912.1807 Theory +0912.4816 +0912.5434 Information Theory +1001.3956 Materials Science +1002.2727 Numerical Analysis +1002.4759 Information Theory +1002.4790 Operator Algebras +1003.5410 Theory +1004.0190 +1004.1680 Performance +1004.1812 Theory +1004.3463 Lattice +1005.0375 Information Theory +1005.0551 +1005.2360 +1005.3403 +1005.4734 Materials Science +1005.5675 Statistical Finance +1006.1148 Analysis of PDEs +1006.1502 Phenomenology +1006.1624 +1006.3333 Solar and Stellar Astrophysics +1006.3923 General Finance +1006.4958 +1006.4961 Materials Science +1006.5652 Classical Analysis and ODEs +1006.5825 Statistical Mechanics +1007.0188 Soft Condensed Matter +1007.0935 Mesoscale and Nanoscale Physics +1007.2080 Group Theory +1007.4640 Strongly Correlated Electrons +1007.4923 Theory +1007.4988 Mesoscale and Nanoscale Physics +1007.5284 Theory +1008.0845 Quantum Gases +1008.2757 High Energy Astrophysical Phenomena +1008.5124 High Energy Astrophysical Phenomena +1008.5185 Instrumentation and Detectors +1008.5210 Theory +1008.5334 +1009.0601 Statistical Mechanics +1009.1554 Materials Science +1009.1988 Materials Science +1009.2130 Solar and Stellar Astrophysics +1009.2440 Representation Theory +1009.4489 General Finance +1009.5064 Theory +1010.0960 Operator Algebras +1010.2979 +1010.4406 Risk Management +1010.4608 +1010.4711 Phenomenology +1010.5252 Complex Variables +1010.6211 Combinatorics +1011.0338 Information Theory +1011.0341 Astrophysics of Galaxies +1011.0481 Lattice +1011.0641 Complex Variables +1011.0716 +1011.0729 High Energy Astrophysical Phenomena +1011.0737 Astrophysics of Galaxies +1011.0749 Analysis of PDEs +1011.0751 Solar and Stellar Astrophysics +1011.0752 Physics Education +1011.0753 Optics +1011.0755 Cryptography and Security +1011.0756 Solar and Stellar Astrophysics +1011.0760 Fluid Dynamics +1011.0762 Functional Analysis +1011.0766 Functional Analysis +1011.0773 Instrumentation and Methods for Astrophysics +1011.0774 Machine Learning +1011.0775 Solar and Stellar Astrophysics +1011.0777 Solar and Stellar Astrophysics +1011.0779 Solar and Stellar Astrophysics +1011.0784 Algebraic Geometry +1011.0786 Information Theory +1011.0794 Classical Analysis and ODEs +1011.0796 Combinatorics +1011.0800 Neural and Evolutionary Computing +1011.0802 Group Theory +1011.0803 Functional Analysis +1011.0805 Lattice +1011.0808 Phenomenology +1011.0812 Complex Variables +1011.0819 Methodology +1011.0823 +1011.0828 Pricing of Securities +1011.0830 +1011.0831 Solar and Stellar Astrophysics +1011.0832 +1011.0834 Computation +1011.0837 Atomic Physics +1011.0844 +1011.0849 Algebraic Geometry +1011.0853 High Energy Astrophysical Phenomena +1011.0855 Commutative Algebra +1011.0857 Astrophysics of Galaxies +1011.0859 Theory +1011.0860 Atomic Physics +1011.0870 Algebraic Geometry +1011.0878 +1011.0883 Algebraic Geometry +1011.0886 Rings and Algebras +1011.0890 Geometric Topology +1011.0891 Plasma Physics +1011.0895 +1011.0897 Numerical Analysis +1011.0902 Differential Geometry +1011.0907 Numerical Analysis +1011.0911 Lattice +1011.0913 Chemical Physics +1011.0915 Analysis of PDEs +1011.0923 Solar and Stellar Astrophysics +1011.0927 Instrumentation and Detectors +1011.0928 Representation Theory +1011.0929 Combinatorics +1011.0930 Soft Condensed Matter +1011.0939 Strongly Correlated Electrons +1011.0948 Solar and Stellar Astrophysics +1011.0950 Artificial Intelligence +1011.0951 Differential Geometry +1011.0953 Computational Engineering, Finance, and Science +1011.0954 Representation Theory +1011.0957 Mesoscale and Nanoscale Physics +1011.0961 Strongly Correlated Electrons +1011.0967 Probability +1011.0969 Optics +1011.0970 Analysis of PDEs +1011.0973 Numerical Analysis +1011.0974 Numerical Analysis +1011.0976 Algebraic Geometry +1011.0978 Soft Condensed Matter +1011.0983 Solar and Stellar Astrophysics +1011.0984 Combinatorics +astro-ph/0001276 +astro-ph/0006405 +astro-ph/0007205 +astro-ph/0011216 +astro-ph/0105074 +astro-ph/0105535 +astro-ph/0107237 +astro-ph/0205154 +astro-ph/0209419 +astro-ph/0307429 +astro-ph/0409134 +astro-ph/0411536 +astro-ph/0502170 +astro-ph/0506526 +astro-ph/0703338 +astro-ph/9803125 +astro-ph/9811160 +astro-ph/9812130 +astro-ph/9904050 +astro-ph/9904092 +astro-ph/9907062 +gr-qc/0609083 +hep-ph/0610143 Phenomenology +hep-th/0408049 Theory +hep-th/0408159 Theory +math-ph/0510025 +math/0505203 Algebraic Geometry +math/0608206 Number Theory +0710.3706 +0801.2374 Phenomenology +0804.4487 Theory +0810.2365 Theory +0810.2787 +0810.4148 +0903.0823 Theory +0904.1098 Experiment +0905.2146 Experiment +0906.5355 Cosmology and Nongalactic Astrophysics +0909.4356 Cosmology and Nongalactic Astrophysics +0910.3016 Phenomenology +0911.2933 Phenomenology +0912.1313 Phenomenology +1001.4714 Phenomenology +1002.2999 Lattice +1002.3153 High Energy Astrophysical Phenomena +1003.3206 Theory +1003.3219 Lattice +1003.4549 Experiment +1003.5601 Theory +1004.0737 +1004.4550 +1004.5144 Theory +1004.5455 Lattice +1006.0133 Phenomenology +1006.3873 Phenomenology +1006.5720 Phenomenology +1007.0254 Phenomenology +1007.0573 +1007.0835 +1007.1057 Phenomenology +1007.1917 +1007.2875 Theory +1007.3496 Phenomenology +1007.5518 +1008.0356 +1008.0603 Theory +1008.1156 Phenomenology +1008.1747 Phenomenology +1008.2202 Phenomenology +1008.2672 Experiment +1008.3564 Experiment +1008.3891 Experiment +1008.4806 +1008.4865 +1008.5260 +1008.5280 +1009.0129 Solar and Stellar Astrophysics +1009.0359 Phenomenology +1009.0521 +1009.1537 Phenomenology +1009.1735 Theory +1009.1847 +1009.2520 Theory +1009.2661 +1009.3047 Experiment +1009.3487 +1009.4325 Phenomenology +1009.4920 +1009.5385 Theory +1010.1148 Statistical Mechanics +1010.2613 +1010.3203 Phenomenology +1010.3986 +1010.3999 +1010.4582 Experiment +1010.5064 +1011.1886 Quantum Gases +1011.3079 Cosmology and Nongalactic Astrophysics +1011.3865 +1011.4968 +1011.4996 Cosmology and Nongalactic Astrophysics +1011.5238 Cosmology and Nongalactic Astrophysics +1011.5420 +1011.6406 Lattice +1012.1159 +1012.1167 +1012.2163 Phenomenology +1012.3097 +1012.4725 +nucl-th/9310014 +0704.0204 Superconductivity +0704.2139 Popular Physics +0704.2142 Statistical Mechanics +0704.2552 Optics +0705.4535 Number Theory +0707.1246 Statistical Mechanics +0708.3307 Number Theory +0710.2169 Geometric Topology +0710.3002 Analysis of PDEs +0711.0094 Algebraic Geometry +0712.2551 Rings and Algebras +0801.1485 Optics +0802.2519 Optics +0802.3277 Number Theory +0802.4278 Physics Education +0804.0525 Algebraic Geometry +0804.0638 Rings and Algebras +0804.1839 Information Theory +0804.3258 Symplectic Geometry +0805.4280 Functional Analysis +0806.4528 Mesoscale and Nanoscale Physics +0807.0058 Differential Geometry +0807.0675 Superconductivity +0807.2542 Optics +0807.4877 Number Theory +0808.3593 Exactly Solvable and Integrable Systems +0809.2361 Optics +0810.3313 Statistical Mechanics +0810.3539 Optics +0811.0509 +0811.2548 Differential Geometry +0901.3393 Algebraic Geometry +0901.4211 Genomics +0902.4494 Materials Science +0903.0014 Pattern Formation and Solitons +0904.1233 Mesoscale and Nanoscale Physics +0906.1733 +0906.2965 Theory +0906.4892 +0907.2083 Numerical Analysis +0907.2143 Mesoscale and Nanoscale Physics +0907.4570 Materials Science +0908.0882 Number Theory +0908.2524 Optics +0908.2533 Optics +0909.4556 Statistical Mechanics +0909.4802 Algebraic Geometry +0910.5846 Mesoscale and Nanoscale Physics +0910.5885 Statistical Mechanics +0911.4583 +0911.4908 Mesoscale and Nanoscale Physics +0912.0056 Mesoscale and Nanoscale Physics +0912.0271 Optics +0912.0620 Number Theory +0912.0680 Optics +0912.1382 Phenomenology +0912.2832 Mesoscale and Nanoscale Physics +0912.2912 Statistical Mechanics +0912.4288 Optics +0912.4953 Dynamical Systems +1001.3303 Optimization and Control +1001.5053 Materials Science +1002.1567 +1003.0512 Superconductivity +1003.5235 Quantum Gases +1003.5772 Differential Geometry +1004.1905 Analysis of PDEs +1005.0377 +1005.1312 Astrophysics of Galaxies +1005.4915 Theory +1006.0322 Optics +1006.0452 Superconductivity +1006.1794 +1006.2457 Differential Geometry +1006.4018 Phenomenology +1006.5830 Superconductivity +1007.0792 Quantum Gases +1007.1041 Quantum Gases +1007.4406 Materials Science +1007.5460 Superconductivity +1008.0265 High Energy Astrophysical Phenomena +1008.0601 Algebraic Geometry +1008.2489 Physics and Society +1008.3102 Strongly Correlated Electrons +1008.3452 Hardware Architecture +1008.4379 Number Theory +1008.4966 Discrete Mathematics +1008.5245 Mesoscale and Nanoscale Physics +1008.5284 Astrophysics of Galaxies +1009.0035 Algebraic Geometry +1009.0051 Numerical Analysis +1009.0077 Artificial Intelligence +1009.0163 Spectral Theory +1009.0170 Mesoscale and Nanoscale Physics +1009.0193 Probability +1009.0271 Superconductivity +1009.0272 Representation Theory +1009.0278 Cryptography and Security +1009.0279 Cosmology and Nongalactic Astrophysics +1009.0284 Number Theory +1009.0293 +1009.0297 Geophysics +1009.0298 Functional Analysis +1009.0299 General Finance +1009.0300 Computer Science and Game Theory +1009.0305 Programming Languages +1009.0306 Learning +1009.0308 Number Theory +1009.0309 Computer Science and Game Theory +1009.0310 Chemical Physics +1009.0313 Phenomenology +1009.0315 Materials Science +1009.0324 Mesoscale and Nanoscale Physics +1009.0328 Analysis of PDEs +1009.0343 Combinatorics +1009.0347 Artificial Intelligence +1009.0353 Combinatorics +1009.0356 Statistical Mechanics +1009.0358 Computational Complexity +1009.0361 Mesoscale and Nanoscale Physics +1009.0363 Number Theory +1009.0368 Databases +1009.0373 Information Theory +1009.0374 Materials Science +1009.0377 Computer Science and Game Theory +1009.0379 Atomic and Molecular Clusters +1009.0380 Materials Science +1009.0381 Group Theory +1009.0384 Databases +1009.0386 Networking and Internet Architecture +1009.0388 Algebraic Geometry +1009.0389 Networking and Internet Architecture +1009.0397 Databases +1009.0401 Probability +1009.0402 Social and Information Networks +1009.0405 Applications +1009.0407 Artificial Intelligence +1009.0409 Functional Analysis +1009.0410 Optimization and Control +1009.0422 General Physics +1009.0424 Analysis of PDEs +1009.0425 Information Theory +1009.0428 Probability +1009.0433 Information Retrieval +1009.0436 Numerical Analysis +1009.0442 Materials Science +1009.0443 Exactly Solvable and Integrable Systems +1009.0444 +1009.0451 Artificial Intelligence +1009.0456 Tissues and Organs +1009.0457 Materials Science +1009.0458 Materials Science +1009.0459 Statistical Mechanics +1009.0460 Instrumentation and Methods for Astrophysics +1009.0465 Materials Science +1009.0466 Complex Variables +1009.0468 Dynamical Systems +1009.0469 Functional Analysis +1009.0471 Chaotic Dynamics +1009.0474 Superconductivity +1009.0475 Optics +1009.0476 Phenomenology +1009.0479 Algebraic Geometry +1009.0481 Classical Analysis and ODEs +1009.0484 Classical Analysis and ODEs +1009.0486 Complex Variables +1009.0487 Group Theory +1009.0493 Fluid Dynamics +1009.0494 Analysis of PDEs +1009.0496 Cosmology and Nongalactic Astrophysics +1009.0499 Learning +1009.0501 Artificial Intelligence +1009.0502 Group Theory +1009.0509 Phenomenology +1009.0510 Materials Science +1009.0511 Materials Science +1009.0519 Mesoscale and Nanoscale Physics +cond-mat/0407164 Materials Science +cond-mat/0503212 Other Condensed Matter +cs/0408025 Programming Languages +cs/0409038 Programming Languages +cs/0512067 Programming Languages +cs/0611009 Artificial Intelligence +cs/0702072 Programming Languages +hep-th/0612164 Theory +math/0210076 Quantum Algebra +math/0402264 Symplectic Geometry +math/0410568 Symplectic Geometry +math/0412237 Number Theory +math/0412239 Number Theory +math/0412240 Number Theory +math/0412242 Number Theory +math/0608085 Number Theory +math/0703326 Number Theory +physics/0105042 Optics +quant-ph/0110101 +0704.0069 Dynamical Systems +0705.2395 Theory +0707.0808 Computer Vision and Pattern Recognition +0709.1091 Complex Variables +0709.4326 Quantum Algebra +0802.2598 Phenomenology +0804.3944 +0805.3531 +0806.1159 Commutative Algebra +0807.0874 Differential Geometry +0808.4151 Phenomenology +0809.3242 +0810.5067 Representation Theory +0811.3719 Phenomenology +0811.4242 Phenomenology +0812.0843 Phenomenology +0812.0955 Phenomenology +0812.2236 Phenomenology +0812.2932 +0812.3270 Phenomenology +0812.3438 +0812.4166 Statistics Theory +0812.4870 +0812.5018 +0901.3612 Superconductivity +0901.3844 Physics and Society +0902.1237 Materials Science +0902.2783 Sound +0902.2788 Computer Vision and Pattern Recognition +0903.0134 Computer Vision and Pattern Recognition +0903.0535 Phenomenology +0903.2165 +0903.2701 Phenomenology +0904.0647 Phenomenology +0905.1367 +0905.4016 Strongly Correlated Electrons +0905.4668 Analysis of PDEs +0905.4686 Mesoscale and Nanoscale Physics +0906.1924 Representation Theory +0906.3395 Complex Variables +0906.3534 Materials Science +0906.4728 Lattice +0907.1473 Phenomenology +0907.1645 Phenomenology +0907.1861 Mesoscale and Nanoscale Physics +0907.2194 Category Theory +0907.2199 Category Theory +0907.2256 Phenomenology +0907.2637 +0907.2952 Astrophysics of Galaxies +0907.3197 Quantum Gases +0907.3334 Mesoscale and Nanoscale Physics +0907.3617 Algebraic Geometry +0907.4193 Phenomenology +0908.0240 Phenomenology +0908.1213 Phenomenology +0908.1414 Operator Algebras +0908.1664 +0908.1733 Probability +0908.2004 Phenomenology +0908.2525 Differential Geometry +0908.4556 Phenomenology +0909.0169 Phenomenology +0909.0200 Phenomenology +0909.0544 Theory +0909.0674 +0909.0718 Strongly Correlated Electrons +0909.1246 Materials Science +0909.1313 +0909.1586 Phenomenology +0909.2603 Combinatorics +0909.2637 Cosmology and Nongalactic Astrophysics +0909.2669 Phenomenology +0909.3154 Lattice +0909.3714 Theory +0909.4181 Phenomenology +0909.4538 Cosmology and Nongalactic Astrophysics +0909.5086 Phenomenology +0910.0981 Superconductivity +0910.1529 Phenomenology +0910.4244 Materials Science +0910.5454 Computer Vision and Pattern Recognition +0911.3471 Dynamical Systems +0911.4653 Strongly Correlated Electrons +0912.3610 Cosmology and Nongalactic Astrophysics +0912.3944 High Energy Astrophysical Phenomena +1001.0048 Analysis of PDEs +1001.0404 Analysis of PDEs +1001.0415 Discrete Mathematics +1001.0484 Instrumentation and Methods for Astrophysics +1001.0776 High Energy Astrophysical Phenomena +1001.0961 Data Structures and Algorithms +1001.0974 +1001.0981 Other Condensed Matter +1001.0984 Optics +1001.0985 Representation Theory +1001.0989 Cosmology and Nongalactic Astrophysics +1001.0994 Statistical Mechanics +1001.0999 Mesoscale and Nanoscale Physics +1001.1005 Solar and Stellar Astrophysics +1001.1009 Networking and Internet Architecture +1001.1012 Operator Algebras +1001.1013 Multimedia +1001.1017 Combinatorics +1001.1019 Metric Geometry +1001.1020 Learning +1001.1022 Programming Languages +1001.1026 Information Theory +1001.1028 Probability +1001.1031 Numerical Analysis +1001.1037 Mesoscale and Nanoscale Physics +1001.1040 General Physics +1001.1043 Programming Languages +1001.1061 Phenomenology +1001.1062 +1001.1070 Computational Physics +1001.1079 Learning +1001.1083 Analysis of PDEs +1001.1087 Analysis of PDEs +1001.1093 Optimization and Control +1001.1094 Statistical Mechanics +1001.1097 Soft Condensed Matter +1001.1098 Strongly Correlated Electrons +1001.1099 Instrumentation and Methods for Astrophysics +1001.1100 Number Theory +1001.1105 Algebraic Geometry +1001.1110 Networking and Internet Architecture +1001.1117 Information Theory +1001.1118 Quantum Algebra +1001.1120 Quantum Algebra +1001.1123 Complex Variables +1001.1124 Mesoscale and Nanoscale Physics +1001.1126 Algebraic Geometry +1001.1128 Algebraic Geometry +1001.1132 +1001.1134 Probability +1001.1137 Popular Physics +1001.1143 Information Retrieval +1001.1144 +1001.1146 Functional Analysis +cond-mat/0209418 Superconductivity +cond-mat/0602375 Statistical Mechanics +cond-mat/0607317 Materials Science +gr-qc/9506018 +gr-qc/9507008 +gr-qc/9709075 +hep-ph/0402260 Phenomenology +hep-ph/0404237 Phenomenology +hep-ph/9504342 Phenomenology +hep-ph/9505234 Phenomenology +hep-ph/9506471 Phenomenology +hep-th/0411160 Theory +hep-th/0411190 Theory +hep-th/9202002 Theory +hep-th/9506085 Theory +math/0701784 Numerical Analysis +quant-ph/0504023 +0802.3230 +0809.3570 +0901.3863 General Physics +0903.2686 Superconductivity +0903.5181 +0905.4527 Dynamical Systems +0906.2073 Strongly Correlated Electrons +0906.3178 Subcellular Processes +0907.0059 Complex Variables +0907.0660 General Physics +0908.3047 Chemical Physics +0910.1189 +0910.4315 Algebraic Geometry +1001.0265 General Finance +1001.4260 Algebraic Geometry +1002.0109 Classical Analysis and ODEs +1002.0141 Group Theory +0704.2560 Probability +0704.3395 Artificial Intelligence +0707.2393 Differential Geometry +0707.2960 +0712.2750 Fluid Dynamics +0802.0023 Functional Analysis +0805.4671 Statistical Mechanics +0808.0999 Geometric Topology +0808.2476 Number Theory +0808.2960 Logic +0809.4423 Representation Theory +0810.0924 Algebraic Geometry +0812.0949 Statistical Mechanics +0812.2372 Superconductivity +0901.2532 Theory +0902.2544 Statistics Theory +0903.1660 Atomic Physics +0903.3041 Cosmology and Nongalactic Astrophysics +0903.4538 Other Condensed Matter +0904.3561 Commutative Algebra +0904.4397 Quantum Gases +0905.4007 Physics and Society +0906.0664 Cosmology and Nongalactic Astrophysics +0906.2383 +0906.3609 Strongly Correlated Electrons +0906.3845 Theory +0906.4076 Mesoscale and Nanoscale Physics +0907.1302 Mesoscale and Nanoscale Physics +0908.1184 Data Analysis, Statistics and Probability +0909.4745 Algebraic Geometry +0910.0500 Statistical Mechanics +0910.1799 Superconductivity +0910.3299 Operator Algebras +0910.4783 Materials Science +0911.1171 +0911.2867 Operator Algebras +0911.3669 Combinatorics +0911.3870 Mesoscale and Nanoscale Physics +0911.4282 Analysis of PDEs +0911.5064 Quantum Algebra +0912.0277 Superconductivity +0912.3136 Combinatorics +0912.3318 Quantum Gases +0912.3667 Quantum Gases +1001.0123 Mesoscale and Nanoscale Physics +1001.1081 Algebraic Geometry +1001.1133 Information Theory +1001.1775 Classical Analysis and ODEs +1001.3374 Materials Science +1001.3385 Quantum Gases +1002.0275 Other Condensed Matter +1002.0717 Strongly Correlated Electrons +1002.1210 +1002.1818 +1002.2410 +1002.4435 Combinatorics +1002.4732 Instrumentation and Detectors +1003.1018 Data Analysis, Statistics and Probability +1003.1650 Operator Algebras +1003.1674 Cosmology and Nongalactic Astrophysics +1003.1946 Strongly Correlated Electrons +1003.3624 +1003.3721 Phenomenology +1003.5624 Soft Condensed Matter +1004.4593 Space Physics +1005.0108 Cryptography and Security +1005.1069 Cosmology and Nongalactic Astrophysics +1005.1443 +1005.1589 Subcellular Processes +1005.1954 Rings and Algebras +1005.2013 Superconductivity +1005.2823 Dynamical Systems +1005.3104 Statistical Mechanics +1005.3107 Probability +1005.3182 Human-Computer Interaction +1005.3993 General Physics +1005.5490 Other Computer Science +1005.5534 Logic +1006.0728 Algebraic Topology +1006.0757 Experiment +1006.0807 Algebraic Geometry +1006.0933 Mesoscale and Nanoscale Physics +1006.0951 High Energy Astrophysical Phenomena +1006.0973 Phenomenology +1006.0987 Algebraic Geometry +1006.0991 Artificial Intelligence +1006.0992 Logic +1006.0995 Numerical Analysis +1006.0997 Rings and Algebras +1006.1007 Experiment +1006.1011 +1006.1012 Popular Physics +1006.1013 Popular Physics +1006.1015 Applications +1006.1017 Networking and Internet Architecture +1006.1018 Networking and Internet Architecture +1006.1028 Combinatorics +1006.1029 Information Retrieval +1006.1030 Artificial Intelligence +1006.1033 Category Theory +1006.1034 Experiment +1006.1039 Theory +1006.1041 Experiment +1006.1042 +1006.1043 Numerical Analysis +1006.1044 +1006.1046 Experiment +1006.1047 Probability +1006.1051 Metric Geometry +1006.1053 Mesoscale and Nanoscale Physics +1006.1055 Information Theory +1006.1060 Statistical Mechanics +1006.1061 Instrumentation and Detectors +1006.1062 Methodology +1006.1064 Group Theory +1006.1067 Instrumentation and Methods for Astrophysics +1006.1068 Solar and Stellar Astrophysics +1006.1070 Representation Theory +1006.1074 Distributed, Parallel, and Cluster Computing +1006.1076 Combinatorics +1006.1079 Physics and Society +1006.1087 Commutative Algebra +1006.1096 Cosmology and Nongalactic Astrophysics +1006.1104 Data Structures and Algorithms +1006.1106 Experiment +1006.1108 Number Theory +1006.1109 Complex Variables +1006.1110 Number Theory +1006.1117 Data Structures and Algorithms +1006.1119 Probability +1006.1123 Instrumentation and Detectors +1006.1126 Computational Geometry +1006.1142 Experiment +1006.1143 Other Condensed Matter +1006.1146 Methodology +1006.1149 Information Theory +1006.1154 Spectral Theory +1006.1156 Algebraic Geometry +1006.1157 Classical Analysis and ODEs +1006.1158 Algebraic Geometry +1006.1160 +1006.1165 Networking and Internet Architecture +1006.1166 Group Theory +1006.1167 Materials Science +1006.1168 Analysis of PDEs +1006.1171 Probability +1006.1172 Information Theory +1006.1173 Optics +1006.1176 Operator Algebras +1006.1196 Number Theory +1006.1199 +1006.1201 Experiment +1006.1207 Accelerator Physics +1006.1209 Biomolecules +1006.1211 Algebraic Geometry +1006.1212 Biomolecules +1006.1216 Materials Science +1006.1218 Fluid Dynamics +1006.1222 Networking and Internet Architecture +1006.1229 Number Theory +1006.1234 +1006.1236 Chaotic Dynamics +1006.1238 Theory +1006.1241 Experiment +1006.1243 Software Engineering +1006.1244 Software Engineering +1006.1245 Experiment +1006.1249 Discrete Mathematics +1006.1251 Operator Algebras +1006.1252 Phenomenology +1006.1255 Probability +1006.1264 Chemical Physics +1006.1270 Cosmology and Nongalactic Astrophysics +1006.1273 Formal Languages and Automata Theory +1006.1274 Theory +1006.1286 Number Theory +1006.1296 Instrumentation and Methods for Astrophysics +1006.1306 Algebraic Geometry +1006.1307 Data Structures and Algorithms +1006.1309 Databases +1006.1321 Probability +1006.1328 Learning +1006.1329 Differential Geometry +1006.1337 Classical Analysis and ODEs +1006.1339 Differential Geometry +1006.1340 Combinatorics +1006.1341 Rings and Algebras +1006.1343 Computation and Language +1006.1345 Networking and Internet Architecture +gr-qc/9810022 +math/0103176 Geometric Topology +math/0312174 Algebraic Geometry +math/0502467 Algebraic Geometry +math/0508042 Number Theory +math/0601273 Probability +nlin/0501048 Chaotic Dynamics +physics/0504193 Fluid Dynamics +quant-ph/0310191 +quant-ph/0504115 +0712.4036 Complex Variables +0807.4757 Fluid Dynamics +0809.2175 Strongly Correlated Electrons +0811.0404 Category Theory +0812.2379 Information Theory +0812.3231 Number Theory +0812.4956 Mesoscale and Nanoscale Physics +0901.2717 Exactly Solvable and Integrable Systems +0902.0958 Numerical Analysis +0906.1410 Exactly Solvable and Integrable Systems +0906.5580 Representation Theory +0907.1340 Strongly Correlated Electrons +0907.1682 Algebraic Geometry +0907.2729 +0907.5519 +0908.1447 Differential Geometry +0908.1470 Theory +0908.2751 Rings and Algebras +0909.3375 +0909.3851 Quantum Gases +0909.5130 Probability +0910.1374 +0910.1506 Mesoscale and Nanoscale Physics +0911.0857 Mesoscale and Nanoscale Physics +0911.1131 Cosmology and Nongalactic Astrophysics +0911.2684 Exactly Solvable and Integrable Systems +0911.3555 +0911.3602 K-Theory and Homology +0911.5585 Quantum Algebra +0912.2745 Mesoscale and Nanoscale Physics +1001.4813 +1001.5109 Statistics Theory +1002.2830 Theory +1002.3922 Metric Geometry +1003.0381 Logic in Computer Science +1003.0431 Logic in Computer Science +1003.0617 Multiagent Systems +1003.0634 Other Computer Science +1003.0958 Distributed, Parallel, and Cluster Computing +1003.2871 Programming Languages +1003.4090 Logic in Computer Science +1003.4127 Numerical Analysis +1003.4149 Computation and Language +1003.4155 Analysis of PDEs +1003.4187 Digital Libraries +1003.4191 Quantum Algebra +1003.5807 Superconductivity +1003.5904 Phenomenology +1003.5910 General Physics +1003.5939 Combinatorics +1003.5943 Populations and Evolution +1003.5947 Adaptation and Self-Organizing Systems +1003.5953 Materials Science +1003.5959 Cosmology and Nongalactic Astrophysics +1003.5960 Symplectic Geometry +1003.5965 Theory +1003.5971 Complex Variables +1003.5974 Complex Variables +1003.5976 +1003.5978 Analysis of PDEs +1003.5979 Networking and Internet Architecture +1003.5981 Differential Geometry +1003.5983 Logic +1003.5991 Algebraic Geometry +1003.5993 Discrete Mathematics +1003.5997 Instrumentation and Methods for Astrophysics +1003.5999 Optics +1003.6006 Classical Analysis and ODEs +1003.6014 Geometric Topology +1003.6016 Analysis of PDEs +1003.6028 History and Overview +1003.6032 Physics and Society +1003.6042 Pricing of Securities +1003.6045 Atmospheric and Oceanic Physics +1003.6048 Group Theory +1003.6060 Probability +1003.6064 Cosmology and Nongalactic Astrophysics +1003.6065 Cosmology and Nongalactic Astrophysics +1003.6068 General Physics +1003.6069 Discrete Mathematics +1003.6087 Physics and Society +1003.6090 Differential Geometry +1003.6096 Logic in Computer Science +1003.6098 Analysis of PDEs +1003.6103 Theory +1003.6107 Algebraic Geometry +1003.6110 Theory +1003.6119 Statistics Theory +1003.6121 +1003.6125 Complex Variables +1003.6130 General Physics +alg-geom/9404014 Algebraic Geometry +astro-ph/0007315 +hep-lat/0209053 Lattice +math/0411568 Combinatorics +math/0506360 Combinatorics +math/0604583 Algebraic Geometry +math/0605519 Classical Analysis and ODEs +0803.1479 +0803.3769 Quantum Algebra +0807.5104 Classical Analysis and ODEs +0808.0883 Geometric Topology +0809.0622 Geometric Topology +0809.3891 +0810.0640 +0812.3440 Representation Theory +0906.2058 Dynamical Systems +0907.4241 Commutative Algebra +0908.0577 Differential Geometry +0909.3789 Combinatorics +0910.0162 +0910.5516 Physics and Society +0911.2978 Operator Algebras +0912.0306 Combinatorics +0912.3400 Differential Geometry +0912.4927 Phenomenology +1001.2433 Theory +1001.5327 Superconductivity +1002.0195 Quantum Gases +1002.4390 Operator Algebras +1003.0039 Cosmology and Nongalactic Astrophysics +1003.0202 Mesoscale and Nanoscale Physics +1003.0883 +1003.1831 Functional Analysis +1003.3012 Theory +1004.2316 Learning +1004.2807 Statistical Mechanics +1004.5017 +1005.5189 Optics +1005.5384 Instrumentation and Methods for Astrophysics +1005.5645 Cosmology and Nongalactic Astrophysics +1006.0289 Information Retrieval +1006.2076 Mesoscale and Nanoscale Physics +1006.2846 Superconductivity +1006.3949 Strongly Correlated Electrons +1006.4332 Instrumentation and Methods for Astrophysics +1006.4511 Statistical Mechanics +1007.0400 Strongly Correlated Electrons +1007.2336 Numerical Analysis +1007.3245 Atomic Physics +1007.3254 Computation and Language +1007.3308 Mesoscale and Nanoscale Physics +1007.4945 +1008.0439 Mesoscale and Nanoscale Physics +1008.2521 Biological Physics +1008.2595 Exactly Solvable and Integrable Systems +1008.5041 Physics Education +1009.0289 +1009.0659 Fluid Dynamics +1009.1231 Symplectic Geometry +1009.1236 Computational Physics +1009.1842 Differential Geometry +1009.1960 Mesoscale and Nanoscale Physics +1009.2623 +1009.6072 Number Theory +1010.0522 Computational Complexity +1010.0737 Strongly Correlated Electrons +1010.2105 Populations and Evolution +1010.2151 Superconductivity +1010.2379 Digital Libraries +1010.2595 Logic in Computer Science +1010.2597 Logic in Computer Science +1010.2759 Spectral Theory +1010.2763 Superconductivity +1010.2764 Experiment +1010.2768 Dynamical Systems +1010.2770 Machine Learning +1010.2792 Fluid Dynamics +1010.2795 Differential Geometry +1010.2797 Fluid Dynamics +1010.2807 Rings and Algebras +1010.2808 Geometric Topology +1010.2810 Differential Geometry +1010.2811 Phenomenology +1010.2812 Numerical Analysis +1010.2813 +1010.2822 Software Engineering +1010.2823 Software Engineering +1010.2824 Distributed, Parallel, and Cluster Computing +1010.2825 Software Engineering +1010.2826 Software Engineering +1010.2827 Software Engineering +1010.2828 Distributed, Parallel, and Cluster Computing +1010.2830 Information Theory +1010.2831 Information Theory +1010.2843 +1010.2846 Computation +1010.2847 Computation +1010.2850 Programming Languages +1010.2852 Materials Science +1010.2855 Rings and Algebras +1010.2856 Cosmology and Nongalactic Astrophysics +1010.2857 Combinatorics +1010.2862 Plasma Physics +1010.2863 Differential Geometry +1010.2866 Superconductivity +1010.2867 Probability +1010.2870 Disordered Systems and Neural Networks +1010.2872 +1010.2881 Distributed, Parallel, and Cluster Computing +1010.2884 Materials Science +1010.2885 Data Structures and Algorithms +1010.2889 Differential Geometry +1010.2890 Quantum Gases +1010.2899 Soft Condensed Matter +1010.2903 Commutative Algebra +1010.2907 Solar and Stellar Astrophysics +1010.2908 Rings and Algebras +1010.2910 Group Theory +1010.2912 Fluid Dynamics +1010.2916 Geometric Topology +1010.2922 Algebraic Topology +1010.2926 Geometric Topology +1010.2928 Other Condensed Matter +1010.2933 Dynamical Systems +1010.2938 Statistical Mechanics +1010.2940 Strongly Correlated Electrons +1010.2941 Analysis of PDEs +1010.2942 Instrumentation and Detectors +1010.2947 Analysis of PDEs +1010.2953 Statistical Mechanics +1010.2954 Solar and Stellar Astrophysics +1010.2958 Computational Geometry +1010.2960 Analysis of PDEs +1010.2961 Optics +1010.2962 Algebraic Geometry +1010.2964 Combinatorics +1010.2965 Other Condensed Matter +1010.2967 Fluid Dynamics +1010.2968 General Physics +1010.2970 Optics +1010.2974 Phenomenology +1010.2975 Biomolecules +1010.2983 Networking and Internet Architecture +1010.2987 Probability +1010.2989 Discrete Mathematics +1010.2997 Combinatorics +1010.3001 Genomics +1010.3002 Fluid Dynamics +1010.3005 Geometric Topology +1010.3009 Neurons and Cognition +1010.3012 Optics +1010.3013 Dynamical Systems +cond-mat/0612298 Strongly Correlated Electrons +math/0405130 Metric Geometry +math/0602105 Geometric Topology +physics/0503130 Atomic Physics +physics/0608083 Atomic Physics +q-bio/0504022 Populations and Evolution +q-bio/0602018 Populations and Evolution +quant-ph/0109130 +0704.1395 Phenomenology +0704.2519 Medical Physics +0705.0248 Medical Physics +0706.0627 Phenomenology +0706.2531 Phenomenology +0706.3065 Phenomenology +0706.3498 Phenomenology +0706.4188 Theory +0707.0328 +0707.1543 Experiment +0707.1675 Exactly Solvable and Integrable Systems +0707.2233 Phenomenology +0707.3538 Phenomenology +0708.1301 Phenomenology +0708.1691 Medical Physics +0708.2011 Analysis of PDEs +0709.1226 Phenomenology +0709.1491 Theory +0710.2731 +0802.4202 Complex Variables +0803.1156 +0805.0751 +0805.2069 Algebraic Geometry +0805.4061 Fluid Dynamics +0806.0518 +0808.3807 Mesoscale and Nanoscale Physics +0809.2506 Probability +0809.2841 Superconductivity +0810.0495 Soft Condensed Matter +0811.2751 Soft Condensed Matter +0811.3008 +0902.3421 Mesoscale and Nanoscale Physics +0902.4311 Combinatorics +0903.0961 Theory +0904.1973 Superconductivity +0905.2633 Superconductivity +0907.4649 Analysis of PDEs +0908.1505 Commutative Algebra +0908.2159 Quantum Gases +0908.2640 +0909.2088 Rings and Algebras +0909.4370 Machine Learning +0910.1184 +0910.3237 Mesoscale and Nanoscale Physics +0910.5467 Phenomenology +0910.5707 Statistical Mechanics +0911.0591 +0911.1000 +0911.1581 Cosmology and Nongalactic Astrophysics +0911.1848 Exactly Solvable and Integrable Systems +0911.5276 Algebraic Geometry +0912.0148 Soft Condensed Matter +0912.1827 Mesoscale and Nanoscale Physics +0912.1879 Portfolio Management +0912.1907 Earth and Planetary Astrophysics +0912.4630 Materials Science +0912.4957 Phenomenology +1001.3811 Soft Condensed Matter +1001.4669 +1002.4666 +1003.0874 +1003.1468 Phenomenology +1003.1787 Information Theory +1003.2049 +1003.4012 Data Structures and Algorithms +1003.5301 Combinatorics +1003.5877 +1004.2266 Statistical Mechanics +1004.2606 Cosmology and Nongalactic Astrophysics +1004.3624 +1004.5426 Mesoscale and Nanoscale Physics +1005.0779 +1005.2528 Strongly Correlated Electrons +1005.3610 Statistical Mechanics +1005.4477 +1005.4480 +1005.5136 Phenomenology +1005.5536 Populations and Evolution +1006.0076 Differential Geometry +1006.0740 Phenomenology +1006.1436 Commutative Algebra +1006.2646 Quantum Gases +1006.2947 Commutative Algebra +1006.3280 Phenomenology +1006.5211 +1006.5446 Cosmology and Nongalactic Astrophysics +1007.0191 Theory +1007.0755 Cosmology and Nongalactic Astrophysics +1007.0922 Quantum Gases +1007.2971 Theory +1007.3436 Classical Analysis and ODEs +1007.3937 +1007.4435 Cosmology and Nongalactic Astrophysics +1007.4440 Physics and Society +1007.4466 Soft Condensed Matter +1007.4650 Strongly Correlated Electrons +1007.5199 Theory +1007.5303 Dynamical Systems +1007.5504 Soft Condensed Matter +1008.0032 Superconductivity +1008.1691 General Physics +1008.4399 Solar and Stellar Astrophysics +1008.4434 Lattice +1009.0495 Classical Physics +1009.2495 Cosmology and Nongalactic Astrophysics +1009.3809 Data Structures and Algorithms +1009.5399 Solar and Stellar Astrophysics +1010.0795 Plasma Physics +1010.1953 Physics and Society +1010.2540 Number Theory +1010.2814 Geometric Topology +1010.2869 Phenomenology +1010.3370 +1010.3543 Analysis of PDEs +1010.3828 Adaptation and Self-Organizing Systems +1010.4329 Solar and Stellar Astrophysics +1010.5269 Algebraic Topology +1010.5943 Artificial Intelligence +1010.6209 Statistics Theory +1010.6227 Statistics Theory +1011.0119 Theory +1011.0340 +1011.0427 Cosmology and Nongalactic Astrophysics +1011.0442 Fluid Dynamics +1011.0444 Mesoscale and Nanoscale Physics +1011.0449 Other Quantitative Biology +1011.0451 History and Overview +1011.0456 Theory +1011.0459 High Energy Astrophysical Phenomena +1011.0460 Representation Theory +1011.0465 High Energy Astrophysical Phenomena +1011.0470 Instrumentation and Methods for Astrophysics +1011.0471 Methodology +1011.0472 Learning +1011.0474 Information Theory +1011.0476 Solar and Stellar Astrophysics +1011.0482 +1011.0485 Numerical Analysis +1011.0487 Programming Languages +1011.0488 Computational Engineering, Finance, and Science +1011.0489 Computational Engineering, Finance, and Science +1011.0490 Computational Engineering, Finance, and Science +1011.0491 Logic in Computer Science +1011.0492 Computational Engineering, Finance, and Science +1011.0493 Computational Engineering, Finance, and Science +1011.0494 Programming Languages +1011.0495 Distributed, Parallel, and Cluster Computing +1011.0496 Computational Engineering, Finance, and Science +1011.0502 Information Retrieval +1011.0506 Computation +1011.0507 Other Computer Science +1011.0519 Computation and Language +1011.0525 Combinatorics +1011.0527 Cryptography and Security +1011.0528 Fluid Dynamics +1011.0529 Dynamical Systems +1011.0531 Data Structures and Algorithms +1011.0532 Probability +1011.0536 +1011.0539 Networking and Internet Architecture +1011.0545 Classical Analysis and ODEs +1011.0553 +1011.0555 Geometric Topology +1011.0566 Representation Theory +1011.0568 Cosmology and Nongalactic Astrophysics +1011.0571 Lattice +1011.0572 Cosmology and Nongalactic Astrophysics +1011.0573 Algebraic Geometry +1011.0577 Differential Geometry +1011.0580 Combinatorics +1011.0585 Phenomenology +1011.0587 Cosmology and Nongalactic Astrophysics +1011.0589 Theory +1011.0590 Dynamical Systems +1011.0592 Applications +1011.0594 Software Engineering +1011.0595 Methodology +1011.0596 Computer Vision and Pattern Recognition +1011.0601 Applications +1011.0603 Differential Geometry +1011.0605 Mesoscale and Nanoscale Physics +1011.0608 Applications +1011.0609 +1011.0610 Applications +1011.0612 Geometric Topology +1011.0613 Differential Geometry +1011.0619 Applications +1011.0626 Applications +1011.0628 Artificial Intelligence +1011.0629 Solar and Stellar Astrophysics +1011.0636 Discrete Mathematics +1011.0639 Lattice +1011.0643 Lattice +1011.0645 +1011.0646 Applications +1011.0649 Algebraic Geometry +1011.0650 Algebraic Geometry +1011.0651 Algebraic Geometry +1011.0652 Algebraic Geometry +1011.0653 Discrete Mathematics +1011.0657 Lattice +1011.0658 Geometric Topology +1011.0663 Physics Education +1011.0670 Other Condensed Matter +1011.0675 Probability +1011.0677 Materials Science +1011.0681 Phenomenology +1011.0687 Physics Education +1011.0692 Phenomenology +1011.0699 Theory +1011.0701 Chemical Physics +1011.0703 Materials Science +1011.0704 Phenomenology +1011.0706 Metric Geometry +1011.0719 Biological Physics +cond-mat/0411317 Other Condensed Matter +cond-mat/0601210 Statistical Mechanics +hep-ex/0003034 Experiment +hep-ph/0001250 Phenomenology +hep-ph/0001281 Phenomenology +hep-ph/0605065 Phenomenology +hep-ph/0611310 Phenomenology +hep-th/0605042 Theory +math-ph/0207016 +math-ph/0207023 +math-ph/0611061 +math/0004053 Classical Analysis and ODEs +math/0305385 Classical Analysis and ODEs +math/0504456 Classical Analysis and ODEs +math/0512306 Number Theory +nucl-th/9911075 +0704.0935 Materials Science +0707.1744 Probability +0707.2380 Soft Condensed Matter +0707.2595 Soft Condensed Matter +0707.3255 Differential Geometry +0709.3109 Statistical Mechanics +0710.5050 +0711.1508 Mesoscale and Nanoscale Physics +0712.3044 Strongly Correlated Electrons +0712.3567 Statistical Mechanics +0801.3103 Representation Theory +0802.2887 Differential Geometry +0803.0146 Computer Vision and Pattern Recognition +0803.1018 Combinatorics +0803.3322 Number Theory +0803.4197 Molecular Networks +0803.4494 Differential Geometry +0804.3037 Probability +0805.2188 Materials Science +0807.0596 +0807.1534 Soft Condensed Matter +0807.2017 +0808.3090 Disordered Systems and Neural Networks +0809.2402 Statistics Theory +0809.3363 Dynamical Systems +0809.5061 +0810.0084 Quantum Algebra +0810.0755 Soft Condensed Matter +0810.3145 Lattice +0810.3836 Distributed, Parallel, and Cluster Computing +0810.4410 Mesoscale and Nanoscale Physics +0812.1310 Molecular Networks +0812.3672 Probability +0901.2402 Cosmology and Nongalactic Astrophysics +0902.1249 Numerical Analysis +0902.3089 Statistical Mechanics +0902.3243 Statistical Mechanics +0902.3550 Combinatorics +0902.3877 Algebraic Geometry +0902.3882 Algebraic Geometry +0903.0713 +0903.2841 Soft Condensed Matter +0903.3616 Analysis of PDEs +0904.1325 Algebraic Geometry +0904.2913 General Finance +0904.4676 Analysis of PDEs +0905.1679 Algebraic Geometry +0905.1891 Strongly Correlated Electrons +0905.1961 Combinatorics +0905.2068 Plasma Physics +0905.2445 +0905.2496 +0905.2714 Molecular Networks +0905.3701 Probability +0906.1427 Metric Geometry +0906.2859 +0906.3282 Information Theory +0906.3491 Geometric Topology +0906.3793 Algebraic Geometry +0906.3912 Molecular Networks +0907.0264 Mesoscale and Nanoscale Physics +0907.0724 Combinatorics +0907.1848 +0907.4598 +0908.0061 Strongly Correlated Electrons +0908.0143 Optimization and Control +0908.0186 +0908.4403 Computational Physics +0909.1583 Biological Physics +0909.2159 +0909.3713 +0910.0270 Biological Physics +0910.2628 Soft Condensed Matter +0910.3411 Plasma Physics +0910.5538 Analysis of PDEs +0911.0802 +0911.1414 +0911.1463 Fluid Dynamics +0911.3082 +0911.3938 Mesoscale and Nanoscale Physics +0911.4232 +0912.0587 +0912.1460 Cosmology and Nongalactic Astrophysics +0912.1772 Fluid Dynamics +0912.5307 Algebraic Topology +1001.0136 Combinatorics +1001.0543 +1001.5160 Probability +1002.0232 +1002.0554 Number Theory +1002.0765 Instrumentation and Methods for Astrophysics +1002.1414 Combinatorics +1002.2832 +1002.3027 Statistical Mechanics +1002.4536 Combinatorics +1003.0215 Differential Geometry +1003.0811 Materials Science +1003.1236 Number Theory +1003.1773 Differential Geometry +1003.2215 Differential Geometry +1003.2933 Phenomenology +1003.2994 Mesoscale and Nanoscale Physics +1003.3048 Atomic Physics +1003.3214 Cosmology and Nongalactic Astrophysics +1003.3776 Metric Geometry +1004.1187 Analysis of PDEs +1004.1553 Disordered Systems and Neural Networks +1004.1932 Soft Condensed Matter +1004.2124 High Energy Astrophysical Phenomena +1004.5316 Soft Condensed Matter +1005.0472 +1005.0798 +1005.0868 Cosmology and Nongalactic Astrophysics +1005.1015 Lattice +1005.1318 +1005.3950 Accelerator Physics +1005.4054 Cosmology and Nongalactic Astrophysics +1005.4599 Phenomenology +1005.5105 Portfolio Management +1006.0281 Cosmology and Nongalactic Astrophysics +1006.0547 Complex Variables +1006.0674 +1006.0762 Mesoscale and Nanoscale Physics +1006.0914 Optics +1006.1001 Mesoscale and Nanoscale Physics +1006.1107 Superconductivity +1006.1271 Materials Science +1006.3311 Superconductivity +1006.5303 +1006.5312 +1006.5743 Soft Condensed Matter +1007.0330 Soft Condensed Matter +1007.0337 Soft Condensed Matter +1007.0458 Chemical Physics +1007.1340 Populations and Evolution +1007.1498 Differential Geometry +1007.1646 Strongly Correlated Electrons +1007.2286 Superconductivity +1007.2457 Cosmology and Nongalactic Astrophysics +1007.3168 Mesoscale and Nanoscale Physics +1007.3290 General Physics +1007.3328 Lattice +1007.3814 +1007.4153 Mesoscale and Nanoscale Physics +1007.4277 Cosmology and Nongalactic Astrophysics +1007.5388 Statistics Theory +1008.1048 Discrete Mathematics +1008.2129 +1008.2585 Solar and Stellar Astrophysics +1008.4227 Disordered Systems and Neural Networks +1008.4863 Solar and Stellar Astrophysics +1009.0257 +1009.0714 Mesoscale and Nanoscale Physics +1009.0792 Combinatorics +1009.1102 Disordered Systems and Neural Networks +1009.1456 General Physics +1009.1771 +1009.2649 +1009.3869 Representation Theory +1009.3975 Analysis of PDEs +1009.4649 Numerical Analysis +1009.5229 Phenomenology +1009.5409 Differential Geometry +1009.6135 Experiment +1010.1399 Number Theory +1010.1408 +1010.1454 High Energy Astrophysical Phenomena +1010.1567 Instrumentation and Methods for Astrophysics +1010.1615 Complex Variables +1010.1784 Combinatorics +1010.1785 Materials Science +1010.1788 Operator Algebras +1010.1795 Fluid Dynamics +1010.1796 Mesoscale and Nanoscale Physics +1010.1799 Statistics Theory +1010.1800 Information Theory +1010.1810 Category Theory +1010.1817 +1010.1818 Superconductivity +1010.1821 Theory +1010.1823 +1010.1824 Information Retrieval +1010.1826 Computation and Language +1010.1828 Differential Geometry +1010.1834 Discrete Mathematics +1010.1843 Optimization and Control +1010.1851 Experiment +1010.1858 Mesoscale and Nanoscale Physics +1010.1861 +1010.1862 Optimization and Control +1010.1863 Differential Geometry +1010.1866 Populations and Evolution +1010.1868 Machine Learning +1010.1877 Strongly Correlated Electrons +1010.1881 Strongly Correlated Electrons +1010.1882 Strongly Correlated Electrons +1010.1888 Learning +1010.1889 +1010.1890 Commutative Algebra +1010.1891 Space Physics +1010.1893 Theory +1010.1896 Analysis of PDEs +1010.1898 Strongly Correlated Electrons +1010.1899 Information Theory +1010.1900 Algebraic Geometry +1010.1902 Probability +1010.1908 Atmospheric and Oceanic Physics +1010.1910 Solar and Stellar Astrophysics +1010.1911 Information Theory +1010.1916 Exactly Solvable and Integrable Systems +1010.1917 Classical Physics +1010.1923 Algebraic Geometry +1010.1931 Phenomenology +1010.1932 Exactly Solvable and Integrable Systems +1010.1936 Operator Algebras +1010.1944 Dynamical Systems +1010.1945 Discrete Mathematics +1010.1948 Data Structures and Algorithms +1010.1955 Discrete Mathematics +1010.1960 Disordered Systems and Neural Networks +1010.1971 Phenomenology +1010.1974 Experiment +1010.1976 Algebraic Geometry +1010.1978 Differential Geometry +1010.1981 Number Theory +1010.1982 Symbolic Computation +1010.1988 Theory +1010.1989 +1010.1990 Metric Geometry +1010.1991 Operator Algebras +1010.1998 Algebraic Geometry +1010.2000 Distributed, Parallel, and Cluster Computing +1010.2003 Differential Geometry +1010.2007 Statistical Mechanics +1010.2009 +1010.2028 Materials Science +1010.2029 Accelerator Physics +1010.2032 Metric Geometry +1010.2036 Classical Analysis and ODEs +1010.2043 Statistics Theory +1010.2044 Fluid Dynamics +1010.2046 Exactly Solvable and Integrable Systems +1010.2047 Combinatorics +1010.2051 Phenomenology +1010.2056 Earth and Planetary Astrophysics +1010.2060 +1010.2062 +1010.2064 Statistics Theory +1010.2065 Space Physics +1010.2066 Statistics Theory +1010.2071 High Energy Astrophysical Phenomena +1010.2073 Mesoscale and Nanoscale Physics +1010.2074 Statistics Theory +1010.2075 Classical Analysis and ODEs +1010.2077 General Physics +1010.2079 Theory +1010.2082 +1010.2083 History and Overview +1010.2090 Mesoscale and Nanoscale Physics +1010.2091 Differential Geometry +1010.2095 Solar and Stellar Astrophysics +1010.2102 Artificial Intelligence +1010.2106 Probability +1010.2110 Portfolio Management +1010.2111 Analysis of PDEs +1010.2126 Classical Analysis and ODEs +1010.2127 Analysis of PDEs +1010.2128 Systems and Control +1010.2132 Analysis of PDEs +1010.2133 Theory +1010.2136 Solar and Stellar Astrophysics +1010.2137 Analysis of PDEs +1010.2144 Fluid Dynamics +1010.2145 Quantitative Methods +1010.2155 Probability +1010.2157 Information Theory +1010.2158 Information Theory +1010.2173 Physics and Society +1010.2178 Solar and Stellar Astrophysics +1010.2180 +1010.2181 Number Theory +1010.2182 Solar and Stellar Astrophysics +1010.2183 Analysis of PDEs +1010.2184 Pricing of Securities +1010.2188 Number Theory +1010.2191 Fluid Dynamics +1010.2193 Probability +1010.2194 Differential Geometry +1010.2197 Earth and Planetary Astrophysics +cond-mat/0203039 Mesoscale and Nanoscale Physics +cond-mat/0204192 Materials Science +cond-mat/0212610 Mesoscale and Nanoscale Physics +cond-mat/0301055 Mesoscale and Nanoscale Physics +cond-mat/0302523 Mesoscale and Nanoscale Physics +cond-mat/0303157 Mesoscale and Nanoscale Physics +cond-mat/0303158 Mesoscale and Nanoscale Physics +cond-mat/0309118 +cond-mat/0309513 +cond-mat/0309685 Mesoscale and Nanoscale Physics +cond-mat/0311143 Mesoscale and Nanoscale Physics +cond-mat/0401248 Mesoscale and Nanoscale Physics +cond-mat/0403348 Mesoscale and Nanoscale Physics +cond-mat/0403448 Mesoscale and Nanoscale Physics +cond-mat/0403510 Mesoscale and Nanoscale Physics +cond-mat/0406337 Mesoscale and Nanoscale Physics +cond-mat/0504001 Mesoscale and Nanoscale Physics +cond-mat/0506286 Mesoscale and Nanoscale Physics +cond-mat/0508297 Mesoscale and Nanoscale Physics +cond-mat/0511680 Mesoscale and Nanoscale Physics +cond-mat/0512172 Strongly Correlated Electrons +cond-mat/0605278 Mesoscale and Nanoscale Physics +cond-mat/0606559 Materials Science +cond-mat/0610756 Mesoscale and Nanoscale Physics +cond-mat/0703311 Mesoscale and Nanoscale Physics +cond-mat/0703351 Soft Condensed Matter +cond-mat/9207001 +cond-mat/9207004 +cond-mat/9303009 +cond-mat/9304020 +cond-mat/9305030 +cond-mat/9306034 +cond-mat/9310079 +cond-mat/9401048 +cond-mat/9410103 +cond-mat/9503062 +cond-mat/9505141 +cond-mat/9602122 +cond-mat/9606224 +gr-qc/0603117 +gr-qc/9801035 +hep-ph/0505192 Phenomenology +math/0312002 Numerical Analysis +math/0408297 Dynamical Systems +math/0507430 Algebraic Geometry +math/0508245 Operator Algebras +math/0512074 Algebraic Geometry +math/0702618 Commutative Algebra +math/9505214 Classical Analysis and ODEs +physics/0602109 Atomic Physics +physics/0609196 Atomic Physics +physics/0610018 Physics and Society +quant-ph/0205037 +quant-ph/0412141 +0708.4096 Phenomenology +0710.2682 Representation Theory +0711.2562 Number Theory +0712.4103 Information Theory +0802.0467 Geometric Topology +0804.3759 Representation Theory +0805.4539 Phenomenology +0808.3462 +0810.4507 +0810.5282 Dynamical Systems +0901.4588 +0904.1235 Algebraic Geometry +0905.0269 Materials Science +0906.5387 +0907.1278 Phenomenology +0907.5035 Probability +0908.4470 Phenomenology +0909.4378 Superconductivity +0910.2239 Theory +0911.5174 +0912.3061 +0912.4157 Atomic and Molecular Clusters +0912.5414 General Physics +1001.1838 +1001.3240 Chaotic Dynamics +1001.3601 Commutative Algebra +math/0209316 Combinatorics +math/0210052 Combinatorics +math/0309330 Combinatorics +math/0411245 Algebraic Geometry +math/0605165 Algebraic Geometry +math/0609047 Combinatorics +math/0609048 Combinatorics +math/0609051 Combinatorics +0805.1024 Functional Analysis +0805.2020 Functional Analysis +0807.4406 +0808.2761 Number Theory +0809.4209 Analysis of PDEs +0810.2072 Spectral Theory +0811.4170 Computers and Society +0901.0936 Subcellular Processes +0901.1910 Subcellular Processes +0901.3797 Symplectic Geometry +0902.4070 Functional Analysis +0903.0977 Theory +0903.4274 +0903.4450 High Energy Astrophysical Phenomena +0904.1042 Statistical Finance +0906.1820 Representation Theory +0906.5014 Dynamical Systems +0908.3192 Phenomenology +0909.3837 Lattice +0911.2370 Lattice +0911.3863 Classical Analysis and ODEs +0912.2036 Strongly Correlated Electrons +0912.3076 Popular Physics +1001.0177 Algebraic Geometry +1001.2764 Rings and Algebras +1002.2540 +1002.2623 Probability +1002.3912 Cosmology and Nongalactic Astrophysics +1004.0472 Mesoscale and Nanoscale Physics +1004.1915 Soft Condensed Matter +1004.2203 Quantum Gases +1004.3941 Classical Analysis and ODEs +1004.5006 +1004.5252 +1005.1182 Soft Condensed Matter +1005.2185 Phenomenology +1005.2894 Distributed, Parallel, and Cluster Computing +1005.4840 Theory +1005.5014 Mesoscale and Nanoscale Physics +1005.5269 Complex Variables +1005.5658 Theory +1006.2311 +1006.4489 High Energy Astrophysical Phenomena +1007.1407 Information Theory +1007.1439 Mesoscale and Nanoscale Physics +1007.3983 +1007.5349 Dynamical Systems +1008.0876 Instrumentation and Detectors +1008.1110 Experiment +1008.1782 High Energy Astrophysical Phenomena +1008.1960 General Finance +1008.2016 Differential Geometry +1008.2345 Cryptography and Security +1008.2471 Statistics Theory +1008.2497 Materials Science +1008.2601 Materials Science +1008.2762 Phenomenology +1008.2764 +1008.2766 Phenomenology +1008.2767 Distributed, Parallel, and Cluster Computing +1008.2780 Statistics Theory +1008.2784 +1008.2785 Algebraic Geometry +1008.2787 +1008.2789 Logic +1008.2795 Group Theory +1008.2799 Distributed, Parallel, and Cluster Computing +1008.2802 General Physics +1008.2806 +1008.2813 Phenomenology +1008.2819 Geometric Topology +1008.2820 Superconductivity +1008.2822 Superconductivity +1008.2823 Group Theory +1008.2824 Cryptography and Security +1008.2831 General Physics +1008.2836 Mesoscale and Nanoscale Physics +1008.2841 Networking and Internet Architecture +1008.2842 Astrophysics of Galaxies +1008.2847 Spectral Theory +1008.2848 Solar and Stellar Astrophysics +1008.2851 Geometric Topology +1008.2852 Cosmology and Nongalactic Astrophysics +1008.2853 Statistical Mechanics +1008.2855 Networking and Internet Architecture +1008.2856 Algebraic Geometry +1008.2859 Chaotic Dynamics +1008.2866 General Physics +1008.2867 Astrophysics of Galaxies +1008.2869 +1008.2870 Methodology +1008.2871 Instrumentation and Methods for Astrophysics +1008.2872 Materials Science +1008.2874 Optics +1008.2876 Fluid Dynamics +1008.2877 Data Analysis, Statistics and Probability +1008.2879 +1008.2886 Statistics Theory +1008.2897 Discrete Mathematics +1008.2909 Data Structures and Algorithms +1008.2913 Phenomenology +1008.2917 Soft Condensed Matter +1008.2919 Group Theory +1008.2922 Quantum Gases +1008.2925 Phenomenology +1008.2927 Phenomenology +1008.2931 Solar and Stellar Astrophysics +1008.2933 Metric Geometry +1008.2950 Combinatorics +1008.2952 Computational Complexity +astro-ph/0609543 +physics/0702098 Fluid Dynamics +0704.2204 +0704.3030 +0704.3034 +0704.3288 +0705.0887 +0705.2862 Cryptography and Security +0705.3069 +0706.0847 +0706.0864 +0706.1928 Probability +0706.1997 +0706.2904 +0708.0329 Probability +0709.1113 +0709.2227 +0710.0373 +0710.0385 +0710.1062 +0710.2250 +0710.2768 General Topology +0710.4059 +0711.1617 +0711.2361 +0711.5027 +0801.1455 +0801.3297 +0803.0805 +0804.4492 Superconductivity +0805.3507 Phenomenology +0806.1060 Mesoscale and Nanoscale Physics +0806.1146 Phenomenology +0806.4631 Logic in Computer Science +0807.0228 +0807.1681 Probability +0808.0194 +0808.0466 Phenomenology +0808.2976 +0809.3144 +0810.2368 +0810.3482 +0810.4333 +0812.0819 Strongly Correlated Electrons +0902.0344 Other Condensed Matter +0903.0750 +0903.5344 Probability +0905.1375 Information Theory +0905.4537 Combinatorics +0906.5136 General Topology +0907.0799 High Energy Astrophysical Phenomena +0908.0564 Mesoscale and Nanoscale Physics +0908.2768 Lattice +0908.4454 +0909.0858 Lattice +0909.1843 Lattice +0909.2019 Lattice +0909.2241 Lattice +0909.2281 Lattice +0909.2686 Lattice +0909.2828 Combinatorics +0909.2840 Lattice +0909.2948 Combinatorics +0909.3077 Lattice +0909.4532 Lattice +0909.5126 Lattice +0910.0072 Astrophysics of Galaxies +0910.0133 Lattice +0910.0441 Lattice +0910.0947 Lattice +0910.1006 Lattice +0910.1206 Lattice +0910.1226 Lattice +0910.1391 Lattice +0910.1465 Lattice +0910.1896 Lattice +0910.2300 Lattice +0910.2321 Lattice +0910.2372 Lattice +0910.2437 Lattice +0910.2455 Lattice +0910.2485 Lattice +0910.2562 Phenomenology +0910.2597 Lattice +0910.2630 Lattice +0910.2658 Lattice +0910.2687 Lattice +0910.2749 Lattice +0910.2772 Lattice +0910.2780 Lattice +0910.2781 Lattice +0910.2784 Lattice +0910.2794 Lattice +0910.2795 Lattice +0910.2802 Lattice +0910.2824 Lattice +0910.2889 Lattice +0910.2897 Lattice +0910.2921 Lattice +0910.2924 Lattice +0910.2950 Lattice +0910.3006 Lattice +0910.3098 Lattice +0910.3149 Lattice +0910.3271 Lattice +0910.3471 Lattice +0910.3618 Lattice +0910.3816 Lattice +0910.3878 Lattice +0910.3909 Quantum Gases +0910.3919 Lattice +0910.4063 General Topology +0910.4131 Lattice +0910.4138 Lattice +0910.4190 Lattice +0910.4196 Lattice +0910.4218 Lattice +0910.4255 Lattice +0910.4682 Lattice +0910.4828 Lattice +0910.5036 Lattice +0910.5148 Lattice +0910.5168 Lattice +0910.5284 Lattice +0910.5573 Lattice +0910.5586 Lattice +0910.5617 Lattice +0910.5686 Lattice +0910.5785 Lattice +0911.0254 Lattice +0911.0361 Lattice +0911.0592 Lattice +0911.0646 Lattice +0911.0755 Lattice +0911.1071 Lattice +0911.1238 Lattice +0911.1348 Lattice +0911.1541 Lattice +0911.1568 Lattice +0911.1825 Lattice +0911.1831 Lattice +0911.1852 Lattice +0911.1931 Lattice +0911.2038 Lattice +0911.2044 Lattice +0911.2133 Lattice +0911.2174 Lattice +0911.2207 Lattice +0911.2305 Lattice +0911.2407 Lattice +0911.2463 Lattice +0911.2520 Lattice +0911.2542 Lattice +0911.2550 Lattice +0911.2596 Lattice +0911.2609 Lattice +0911.2934 Lattice +0911.3127 Lattice +0911.3204 Lattice +0911.3254 Lattice +0911.3373 Lattice +0911.3609 Lattice +0911.3756 Lattice +0911.3757 Lattice +0911.4099 Lattice +0911.4164 Lattice +0911.4493 High Energy Astrophysical Phenomena +0911.4505 Lattice +0911.4533 Lattice +0911.4710 Instrumentation and Methods for Astrophysics +0911.4723 Solar and Stellar Astrophysics +0911.4869 Lattice +0911.5244 Lattice +0911.5362 Lattice +0911.5366 Populations and Evolution +0911.5432 Lattice +0911.5532 Lattice +0911.5688 Probability +0912.0044 Lattice +0912.0167 Lattice +0912.0207 Lattice +0912.0253 Lattice +0912.0327 Lattice +0912.0388 Lattice +0912.0919 Lattice +0912.1054 Number Theory +0912.1144 Lattice +0912.2249 Lattice +0912.2268 Lattice +0912.2448 Lattice +0912.2524 Lattice +0912.3238 Lattice +0912.4119 Lattice +0912.4919 Lattice +0912.5037 Lattice +0912.5188 Lattice +1001.0563 Theory +1001.0941 Lattice +1001.1241 Lattice +1001.1498 Lattice +1001.3158 Theory +1001.4390 Lattice +1002.2919 Experiment +1003.1877 +1003.3096 Quantum Gases +1003.4046 Fluid Dynamics +1004.2152 +1005.0166 Spectral Theory +1005.3696 +1005.4102 +1005.4520 Dynamical Systems +1005.5352 Lattice +1006.1994 +1006.2372 Phenomenology +1007.0589 Earth and Planetary Astrophysics +1007.1070 Mesoscale and Nanoscale Physics +1007.1674 Theory +1007.1810 Theory +1007.3076 +1007.3383 Strongly Correlated Electrons +1007.4594 Mesoscale and Nanoscale Physics +1008.0780 Functional Analysis +1008.1944 Statistical Mechanics +1008.2586 Superconductivity +1008.2792 +1008.3697 Computational Physics +1008.4074 Metric Geometry +1009.0455 +1009.2645 Group Theory +1009.3324 Theory +1009.3391 Logic in Computer Science +1009.3580 Group Theory +1009.4479 Cosmology and Nongalactic Astrophysics +1009.5251 Probability +1009.5397 Data Structures and Algorithms +1010.1284 Mesoscale and Nanoscale Physics +1010.1428 Phenomenology +1010.2196 Programming Languages +1010.3083 Computer Science and Game Theory +1010.3141 Instrumentation and Detectors +1010.3778 Dynamical Systems +1010.3820 +1010.4493 Theory +1010.5153 Dynamical Systems +1010.5768 Commutative Algebra +1010.6082 Mesoscale and Nanoscale Physics +1011.0233 Artificial Intelligence +1011.0458 General Finance +1011.0535 Complex Variables +1011.0846 Commutative Algebra +1011.0947 Theory +1011.0977 +1011.0997 Numerical Analysis +1011.1010 Combinatorics +1011.1013 Cosmology and Nongalactic Astrophysics +1011.1020 +1011.1021 Software Engineering +1011.1023 Biological Physics +1011.1026 Machine Learning +1011.1027 Rings and Algebras +1011.1034 Complex Variables +1011.1041 Phenomenology +1011.1044 Combinatorics +1011.1046 Complex Variables +1011.1047 Soft Condensed Matter +1011.1049 Functional Analysis +1011.1057 Combinatorics +1011.1058 Discrete Mathematics +1011.1061 Algebraic Geometry +1011.1062 Numerical Analysis +1011.1071 Mesoscale and Nanoscale Physics +1011.1075 High Energy Astrophysical Phenomena +1011.1076 General Physics +1011.1077 Number Theory +1011.1079 Methodology +1011.1083 Algebraic Geometry +1011.1085 Geophysics +1011.1086 Analysis of PDEs +1011.1087 Soft Condensed Matter +1011.1092 Lattice +1011.1097 Cosmology and Nongalactic Astrophysics +1011.1098 Methodology +1011.1102 Probability +1011.1103 Probability +1011.1104 Analysis of PDEs +1011.1105 Mesoscale and Nanoscale Physics +1011.1106 Theory +1011.1115 Dynamical Systems +1011.1119 Cryptography and Security +1011.1120 General Physics +1011.1121 Cryptography and Security +1011.1123 Solar and Stellar Astrophysics +1011.1126 Solar and Stellar Astrophysics +1011.1127 Cryptography and Security +1011.1128 Solar and Stellar Astrophysics +1011.1131 Accelerator Physics +1011.1132 Cryptography and Security +1011.1133 Cryptography and Security +1011.1139 Methodology +1011.1147 High Energy Astrophysical Phenomena +1011.1149 Analysis of PDEs +1011.1160 Other Statistics +1011.1163 +1011.1172 Logic in Computer Science +1011.1173 Distributed, Parallel, and Cluster Computing +1011.1174 Materials Science +1011.1176 +1011.1186 General Mathematics +1011.1189 Soft Condensed Matter +1011.1193 Cosmology and Nongalactic Astrophysics +1011.1194 Differential Geometry +1011.1199 Probability +1011.1202 Data Structures and Algorithms +1011.1204 Complex Variables +1011.1209 Instrumentation and Methods for Astrophysics +1011.1210 Representation Theory +1011.1211 Optics +1011.1223 Fluid Dynamics +1011.1227 Solar and Stellar Astrophysics +1011.1231 Mesoscale and Nanoscale Physics +1011.1241 +astro-ph/0202284 +astro-ph/0407288 +astro-ph/0408152 +astro-ph/0408192 +astro-ph/0410356 +astro-ph/0410431 +astro-ph/0411130 +astro-ph/0411218 +astro-ph/0411501 +astro-ph/0501613 +astro-ph/0507613 +astro-ph/0509415 +astro-ph/0509445 +astro-ph/0509450 +astro-ph/0509453 +astro-ph/0510352 +astro-ph/0510353 +astro-ph/0510482 +astro-ph/0511131 +astro-ph/0511243 +astro-ph/0511834 +astro-ph/0512359 +astro-ph/0601073 +astro-ph/0603526 +astro-ph/0606443 +astro-ph/0606651 +astro-ph/0608469 +astro-ph/0608470 +astro-ph/0609124 +astro-ph/0609639 +astro-ph/0609760 +astro-ph/0609784 +astro-ph/0610115 +astro-ph/0610670 +astro-ph/0610867 +astro-ph/0611198 +astro-ph/0611240 +astro-ph/0611370 +astro-ph/0611411 +astro-ph/0611635 +astro-ph/0612142 +astro-ph/0612199 +astro-ph/0612254 +astro-ph/0612383 +astro-ph/0612403 +astro-ph/0612410 +astro-ph/0612511 +astro-ph/0612617 +astro-ph/0612623 +astro-ph/0612692 +astro-ph/0701031 +astro-ph/0701153 +astro-ph/0701317 +astro-ph/0701510 +astro-ph/0702045 +astro-ph/0702050 +astro-ph/0702185 +astro-ph/0702270 +astro-ph/0702510 +astro-ph/0702586 +astro-ph/0702591 +astro-ph/0702655 +astro-ph/0702676 +astro-ph/0703009 +astro-ph/0703083 +astro-ph/0703090 +astro-ph/0703456 +astro-ph/0703484 +cond-mat/0511658 Statistical Mechanics +cond-mat/0601077 Soft Condensed Matter +cond-mat/0606308 Strongly Correlated Electrons +gr-qc/0305095 +gr-qc/0311042 +gr-qc/0401041 +gr-qc/0409003 +gr-qc/0410148 +gr-qc/0411012 +gr-qc/0411132 +gr-qc/0412003 +gr-qc/0501002 +gr-qc/0501013 +gr-qc/0501043 +gr-qc/0502009 +gr-qc/0502064 +gr-qc/0503065 +gr-qc/0504129 +gr-qc/0506014 +gr-qc/0506089 +gr-qc/0508005 +gr-qc/0509106 +gr-qc/0510113 +gr-qc/0511054 +gr-qc/0511125 +gr-qc/0512055 +gr-qc/0512070 +gr-qc/0603012 +gr-qc/0603050 +gr-qc/0603070 +gr-qc/0604018 +gr-qc/0605155 +gr-qc/0606041 +gr-qc/0701131 +hep-ex/0409065 Experiment +hep-ex/0410035 Experiment +hep-ex/0410082 Experiment +hep-ex/0411022 Experiment +hep-ex/0411044 Experiment +hep-ex/0412047 Experiment +hep-ex/0501007 Experiment +hep-ex/0503024 Experiment +hep-ex/0510052 Experiment +hep-ex/0511010 Experiment +hep-ex/0605064 Experiment +hep-ex/0606007 Experiment +hep-lat/0410046 Lattice +hep-lat/0509032 Lattice +hep-lat/0509169 Lattice +hep-lat/0510063 Lattice +hep-ph/0301022 Phenomenology +hep-ph/0310107 Phenomenology +hep-ph/0401075 Phenomenology +hep-ph/0406005 Phenomenology +hep-ph/0407135 Phenomenology +hep-ph/0407136 Phenomenology +hep-ph/0407200 Phenomenology +hep-ph/0407289 Phenomenology +hep-ph/0408015 Phenomenology +hep-ph/0409161 Phenomenology +hep-ph/0409202 Phenomenology +hep-ph/0409243 Phenomenology +hep-ph/0409360 Phenomenology +hep-ph/0410084 Phenomenology +hep-ph/0410139 Phenomenology +hep-ph/0410193 Phenomenology +hep-ph/0410401 Phenomenology +hep-ph/0411091 Phenomenology +hep-ph/0411140 Phenomenology +hep-ph/0411244 Phenomenology +hep-ph/0411300 Phenomenology +hep-ph/0412386 Phenomenology +hep-ph/0501024 Phenomenology +hep-ph/0501264 Phenomenology +hep-ph/0502109 Phenomenology +hep-ph/0504105 Phenomenology +hep-ph/0505182 Phenomenology +hep-ph/0505224 Phenomenology +hep-ph/0506184 Phenomenology +hep-ph/0506187 Phenomenology +hep-ph/0507247 Phenomenology +hep-ph/0508017 Phenomenology +hep-ph/0508209 Phenomenology +hep-ph/0509102 Phenomenology +hep-ph/0509157 Phenomenology +hep-ph/0509266 Phenomenology +hep-ph/0509327 Phenomenology +hep-ph/0510341 Phenomenology +hep-ph/0511012 Phenomenology +hep-ph/0512178 Phenomenology +hep-ph/0512282 Phenomenology +hep-ph/0512296 Phenomenology +hep-ph/0512329 Phenomenology +hep-ph/0512362 Phenomenology +hep-ph/0603202 Phenomenology +hep-ph/0603265 Phenomenology +hep-ph/0604217 Phenomenology +hep-ph/0605077 Phenomenology +hep-ph/0607056 Phenomenology +hep-ph/0610148 Phenomenology +hep-th/0309105 Theory +hep-th/0309233 Theory +hep-th/0310075 Theory +hep-th/0310266 Theory +hep-th/0402002 Theory +hep-th/0402005 Theory +hep-th/0402123 Theory +hep-th/0402170 Theory +hep-th/0405046 Theory +hep-th/0405088 Theory +hep-th/0405163 Theory +hep-th/0405174 Theory +hep-th/0407054 Theory +hep-th/0407151 Theory +hep-th/0408096 Theory +hep-th/0408213 Theory +hep-th/0409239 Theory +hep-th/0410082 Theory +hep-th/0410199 Theory +hep-th/0411015 Theory +hep-th/0411108 Theory +hep-th/0412172 Theory +hep-th/0412292 Theory +hep-th/0501218 Theory +hep-th/0503054 Theory +hep-th/0503112 Theory +hep-th/0503174 Theory +hep-th/0504064 Theory +hep-th/0504185 Theory +hep-th/0507038 Theory +hep-th/0507060 Theory +hep-th/0507277 Theory +hep-th/0509006 Theory +hep-th/0509110 Theory +hep-th/0510117 Theory +hep-th/0511097 Theory +hep-th/0511116 Theory +hep-th/0511123 Theory +hep-th/0511185 Theory +hep-th/0602115 Theory +hep-th/0602127 Theory +hep-th/0603050 Theory +hep-th/0605044 Theory +hep-th/0608183 Theory +hep-th/0610034 Theory +hep-th/0610181 Theory +math/0312370 Representation Theory +math/0409295 Representation Theory +math/0410325 Representation Theory +math/0605295 Representation Theory +math/0606270 General Topology +math/0606795 Commutative Algebra +math/0607151 Representation Theory +math/0607592 General Topology +math/0611353 General Topology +math/0701249 General Topology +nlin/0506065 Cellular Automata and Lattice Gases +nucl-ex/0410030 +nucl-ex/0411027 +nucl-th/0512023 +nucl-th/0512099 +physics/0511067 Popular Physics +physics/0610083 Accelerator Physics +quant-ph/0406036 +0705.1887 Materials Science +0705.3785 Soft Condensed Matter +0706.0817 Probability +0706.3712 Fluid Dynamics +0707.0330 +0709.3012 Probability +0711.0206 Probability +0711.3525 Optimization and Control +0711.3632 Optimization and Control +0801.1839 Mesoscale and Nanoscale Physics +0802.0364 Strongly Correlated Electrons +0802.1257 Materials Science +0804.0706 Geometric Topology +0807.3401 Operator Algebras +0808.0168 Theory +0809.2057 Classical Analysis and ODEs +0809.4726 Combinatorics +0810.0936 Mesoscale and Nanoscale Physics +0810.4424 Soft Condensed Matter +0811.2174 Mesoscale and Nanoscale Physics +0902.3944 Optimization and Control +0903.3854 Functional Analysis +0904.0672 Soft Condensed Matter +0904.3240 Probability +0904.4648 Algebraic Geometry +0905.2054 Algebraic Geometry +0906.0577 Phenomenology +0906.3113 Spectral Theory +0907.3135 Data Structures and Algorithms +0907.3585 Mesoscale and Nanoscale Physics +0909.2294 Group Theory +0909.3219 Pricing of Securities +0909.3350 Algebraic Topology +0911.2938 +0911.5297 Strongly Correlated Electrons +0912.0053 Materials Science +0912.1335 Materials Science +0912.1606 Mesoscale and Nanoscale Physics +0912.3613 Physics and Society +0912.4867 +1001.1147 Superconductivity +1001.2877 +1001.4056 Statistical Mechanics +1001.4774 Earth and Planetary Astrophysics +1001.4824 Quantum Algebra +1002.1751 Data Structures and Algorithms +1002.2731 Classical Analysis and ODEs +1003.0021 Number Theory +1003.0527 Statistical Mechanics +1003.0946 Superconductivity +1003.3512 Number Theory +1003.4161 Fluid Dynamics +1003.4362 Mesoscale and Nanoscale Physics +1004.0965 Mesoscale and Nanoscale Physics +1004.1632 Digital Libraries +1004.1705 Statistical Mechanics +1004.2721 +1004.3202 Combinatorics +1004.3850 Analysis of PDEs +1004.5197 +1005.0004 +1005.4529 Phenomenology +1005.5148 Mesoscale and Nanoscale Physics +1006.0170 Information Theory +1006.1560 Soft Condensed Matter +1006.1963 +1006.2927 Disordered Systems and Neural Networks +1006.3034 Algebraic Geometry +1006.3136 Mesoscale and Nanoscale Physics +1006.3671 +1006.4107 +1006.4171 Classical Analysis and ODEs +1006.4350 +1007.1894 Statistics Theory +1007.2130 Algebraic Geometry +1008.1623 Dynamical Systems +1008.4997 +1009.0534 Chemical Physics +1009.0789 General Mathematics +1009.0796 Methodology +1009.0977 Dynamical Systems +1009.0979 Dynamical Systems +1009.1153 Soft Condensed Matter +1009.1168 Mesoscale and Nanoscale Physics +1009.1170 Multimedia +1009.1171 Solar and Stellar Astrophysics +1009.1172 +1009.1184 Operator Algebras +1009.1187 Geometric Topology +1009.1188 Analysis of PDEs +1009.1194 Networking and Internet Architecture +1009.1205 Combinatorics +1009.1206 +1009.1215 Differential Geometry +1009.1222 Phenomenology +1009.1225 Information Theory +1009.1226 Rings and Algebras +1009.1230 Commutative Algebra +1009.1233 Cosmology and Nongalactic Astrophysics +1009.1235 Probability +1009.1238 Biological Physics +1009.1239 Group Theory +1009.1241 Probability +1009.1244 Medical Physics +1009.1246 Theory +1009.1256 Instrumentation and Methods for Astrophysics +1009.1257 Differential Geometry +1009.1258 Analysis of PDEs +1009.1259 Representation Theory +1009.1261 +1009.1262 Complex Variables +1009.1269 Risk Management +1009.1272 Statistical Mechanics +1009.1277 Analysis of PDEs +1009.1286 Neurons and Cognition +1009.1288 General Mathematics +1009.1291 Combinatorics +1009.1299 Experiment +1009.1303 Phenomenology +1009.1304 Classical Analysis and ODEs +1009.1305 Hardware Architecture +1009.1310 Probability +1009.1317 Software Engineering +1009.1318 Machine Learning +1009.1330 Strongly Correlated Electrons +1009.1333 Cosmology and Nongalactic Astrophysics +1009.1334 Phenomenology +1009.1335 Mesoscale and Nanoscale Physics +1009.1336 Representation Theory +1009.1342 Programming Languages +1009.1346 Adaptation and Self-Organizing Systems +1009.1348 Algebraic Geometry +1009.1359 Classical Analysis and ODEs +1009.1360 Astrophysics of Galaxies +1009.1361 High Energy Astrophysical Phenomena +1009.1362 Computer Vision and Pattern Recognition +1009.1369 +1009.1378 Spectral Theory +1009.1381 Data Structures and Algorithms +1009.1383 Phenomenology +cond-mat/0504298 Other Condensed Matter +cond-mat/0601437 Other Condensed Matter +cond-mat/0608208 Disordered Systems and Neural Networks +cond-mat/0608426 Soft Condensed Matter +cond-mat/0611404 Mesoscale and Nanoscale Physics +cond-mat/0701220 Other Condensed Matter +cond-mat/0701221 Statistical Mechanics +math-ph/0505050 +math/0603709 Probability +math/0611664 Probability +nlin/0108036 Adaptation and Self-Organizing Systems +physics/0105012 General Physics +quant-ph/0506103 +0704.3783 History and Overview +0706.1286 Category Theory +0706.2874 Algebraic Topology +0707.1934 Classical Analysis and ODEs +0708.2828 Classical Analysis and ODEs +0711.3878 Number Theory +0801.3645 Number Theory +0802.2110 Mesoscale and Nanoscale Physics +0803.0353 Algebraic Geometry +0803.1121 Number Theory +0803.3063 Number Theory +0804.0202 Algebraic Geometry +0804.4370 Lattice +0805.3554 Exactly Solvable and Integrable Systems +0807.0658 Category Theory +0808.2670 Information Retrieval +0808.2950 Dynamical Systems +0808.3143 Analysis of PDEs +0809.0838 Representation Theory +0809.2136 Computer Science and Game Theory +0810.2313 Combinatorics +0811.0309 Rings and Algebras +0811.3583 +0811.3594 Algebraic Geometry +0812.4246 +0901.3461 Number Theory +0902.2495 Complex Variables +0902.3261 Classical Physics +0903.5240 Number Theory +0904.3548 Algebraic Geometry +0904.4862 +0905.2510 Rings and Algebras +0905.2771 Materials Science +0905.3705 Algebraic Geometry +0905.4231 Exactly Solvable and Integrable Systems +0905.4746 Exactly Solvable and Integrable Systems +0906.0038 Mesoscale and Nanoscale Physics +0906.0058 Number Theory +0907.1825 Phenomenology +0907.3664 Number Theory +0907.3696 +0908.1321 +0908.2580 High Energy Astrophysical Phenomena +0909.3439 +0910.2717 Algebraic Geometry +0911.2395 Superconductivity +0911.3470 Mesoscale and Nanoscale Physics +0912.0079 +0912.0918 Fluid Dynamics +0912.3326 Superconductivity +0912.3900 +0912.4290 Soft Condensed Matter +0912.4436 Mesoscale and Nanoscale Physics +1001.1253 Quantum Gases +1001.3452 Superconductivity +1002.0752 Experiment +1002.1107 Cosmology and Nongalactic Astrophysics +1002.3936 +1002.4802 Learning +1002.4805 Differential Geometry +1003.0149 Theory +1003.0478 Fluid Dynamics +1003.1293 Group Theory +1003.1889 +1003.2418 Earth and Planetary Astrophysics +1003.2419 Theory +1003.2424 Physics and Society +1003.2425 Logic +1003.2427 Populations and Evolution +1003.2429 Physics and Society +1003.2434 Strongly Correlated Electrons +1003.2440 Cryptography and Security +1003.2441 Sound +1003.2448 +1003.2450 +1003.2452 High Energy Astrophysical Phenomena +1003.2456 Human-Computer Interaction +1003.2457 Phenomenology +1003.2458 Information Retrieval +1003.2465 Chaotic Dynamics +1003.2469 Machine Learning +1003.2471 Learning +1003.2473 Geometric Topology +1003.2475 Numerical Analysis +1003.2476 +1003.2477 Logic +1003.2479 Logic +1003.2482 +1003.2483 +1003.2485 Quantum Algebra +1003.2487 Dynamical Systems +1003.2488 Statistical Mechanics +1003.2489 Astrophysics of Galaxies +1003.2490 Representation Theory +1003.2496 Logic +1003.2497 Instrumentation and Methods for Astrophysics +1003.2501 Differential Geometry +1003.2503 Atomic Physics +1003.2508 Dynamical Systems +1003.2511 Exactly Solvable and Integrable Systems +1003.2513 Exactly Solvable and Integrable Systems +1003.2521 Portfolio Management +1003.2525 +1003.2528 Superconductivity +1003.2529 +1003.2531 +1003.2532 +1003.2537 Numerical Analysis +1003.2541 Dynamical Systems +1003.2544 Combinatorics +1003.2547 Programming Languages +1003.2548 Accelerator Physics +1003.2550 Astrophysics of Galaxies +1003.2551 Digital Libraries +1003.2555 Optics +1003.2556 Optimization and Control +1003.2558 Solar and Stellar Astrophysics +1003.2562 Analysis of PDEs +1003.2571 Algebraic Geometry +1003.2582 High Energy Astrophysical Phenomena +1003.2584 Group Theory +1003.2586 Logic in Computer Science +1003.2591 +1003.2592 Logic +1003.2596 Strongly Correlated Electrons +1003.2597 Data Analysis, Statistics and Probability +1003.2603 Logic +1003.2605 Dynamical Systems +1003.2607 Mesoscale and Nanoscale Physics +1003.2610 Mesoscale and Nanoscale Physics +1003.2614 Cryptography and Security +1003.2615 Mesoscale and Nanoscale Physics +1003.2617 +1003.2620 Complex Variables +1003.2622 Soft Condensed Matter +math/0007099 Algebraic Geometry +math/0104140 Dynamical Systems +math/0202143 General Topology +math/0205107 Classical Analysis and ODEs +math/0205109 Classical Analysis and ODEs +math/0205154 Classical Analysis and ODEs +math/0210136 Functional Analysis +math/0302156 Algebraic Geometry +math/0302157 Algebraic Geometry +math/0302158 Number Theory +math/0302260 Algebraic Geometry +math/0305214 Commutative Algebra +math/0307042 Classical Analysis and ODEs +math/0309229 Algebraic Geometry +math/0311099 History and Overview +math/0311217 Group Theory +math/0311538 Classical Analysis and ODEs +math/0501114 Classical Analysis and ODEs +math/0501165 Classical Analysis and ODEs +math/0502240 Algebraic Geometry +math/0504030 Classical Analysis and ODEs +math/0506577 Geometric Topology +math/0508617 Group Theory +math/0605086 Quantum Algebra +math/0607059 Classical Analysis and ODEs +math/0608183 Algebraic Geometry +math/0608367 Rings and Algebras +math/0610978 Quantum Algebra +math/0612354 Analysis of PDEs +math/0612752 Classical Analysis and ODEs +math/0612754 Geometric Topology +math/0703067 Classical Analysis and ODEs +math/0703068 Classical Analysis and ODEs +math/0703446 Geometric Topology +math/9807170 Algebraic Geometry +math/9912066 Algebraic Geometry +0902.3948 General Physics +math/9806039 Classical Analysis and ODEs +0707.0075 Dynamical Systems +0707.0078 Dynamical Systems +0711.0501 Probability +0711.3591 Neural and Evolutionary Computing +0801.3209 Neural and Evolutionary Computing +0801.3539 Neural and Evolutionary Computing +0801.3547 Neural and Evolutionary Computing +0801.3549 Neural and Evolutionary Computing +0801.3550 Neural and Evolutionary Computing +0801.3971 Neural and Evolutionary Computing +0801.4119 Neural and Evolutionary Computing +0801.4287 Neural and Evolutionary Computing +0801.4312 Neural and Evolutionary Computing +0801.4314 Neural and Evolutionary Computing +0802.2001 Neural and Evolutionary Computing +0802.4002 Neural and Evolutionary Computing +0803.1568 Neural and Evolutionary Computing +0803.1576 Neural and Evolutionary Computing +0803.1596 Neural and Evolutionary Computing +0803.1604 Neural and Evolutionary Computing +0803.1621 Neural and Evolutionary Computing +0803.1626 Neural and Evolutionary Computing +0803.1728 Neural and Evolutionary Computing +0803.1985 Neural and Evolutionary Computing +0803.1993 Neural and Evolutionary Computing +0803.1994 Neural and Evolutionary Computing +0803.1997 Neural and Evolutionary Computing +0803.2957 Neural and Evolutionary Computing +0803.2965 Neural and Evolutionary Computing +0803.2966 Neural and Evolutionary Computing +0803.2967 Neural and Evolutionary Computing +0803.2969 Neural and Evolutionary Computing +0803.2970 Neural and Evolutionary Computing +0803.2973 Neural and Evolutionary Computing +0803.2975 Neural and Evolutionary Computing +0803.2981 Neural and Evolutionary Computing +0803.3900 Neural and Evolutionary Computing +0803.3912 Neural and Evolutionary Computing +0804.0524 Neural and Evolutionary Computing +0804.0573 Neural and Evolutionary Computing +0804.0580 Neural and Evolutionary Computing +0804.1266 Neural and Evolutionary Computing +0804.1281 Cryptography and Security +0806.3728 Differential Geometry +0808.3547 Algebraic Geometry +0809.4287 +0811.1764 Operator Algebras +0812.3144 Geometric Topology +0812.4713 Algebraic Topology +0901.3500 Strongly Correlated Electrons +0901.3705 Strongly Correlated Electrons +0903.5448 History and Overview +0904.3632 Probability +0904.4628 Theory +0905.0158 Superconductivity +0906.0332 +0907.3867 Artificial Intelligence +0909.0279 Group Theory +0909.3362 Quantum Algebra +0910.2013 Numerical Analysis +0910.2593 Artificial Intelligence +0910.2874 Artificial Intelligence +0910.3115 Artificial Intelligence +0910.3117 Artificial Intelligence +0910.3124 Artificial Intelligence +0910.4899 Artificial Intelligence +0910.4903 Artificial Intelligence +0910.5405 Artificial Intelligence +0911.1799 Strongly Correlated Electrons +0911.3888 +0912.0380 Instrumentation and Methods for Astrophysics +0912.2769 Strongly Correlated Electrons +0912.4993 Networking and Internet Architecture +1001.1889 Neural and Evolutionary Computing +1001.2155 Artificial Intelligence +1001.2170 Artificial Intelligence +1001.2208 Artificial Intelligence +1001.2405 Artificial Intelligence +1001.2665 Artificial Intelligence +1001.2733 Statistical Mechanics +1002.0276 Artificial Intelligence +1002.0432 Artificial Intelligence +1002.0589 +1002.0696 Artificial Intelligence +1002.1200 Cryptography and Security +1002.2342 Mesoscale and Nanoscale Physics +1002.2563 Rings and Algebras +1002.2722 Distributed, Parallel, and Cluster Computing +1002.2784 Algebraic Geometry +1002.4409 Statistical Mechanics +1003.0029 Theory +1003.0319 Artificial Intelligence +1003.0404 Artificial Intelligence +1003.0789 Artificial Intelligence +1003.1256 Artificial Intelligence +1003.1598 Artificial Intelligence +1003.2377 Phenomenology +1003.3767 Artificial Intelligence +1003.3775 Artificial Intelligence +1003.3784 Multiagent Systems +1003.4140 Neural and Evolutionary Computing +1003.4141 Artificial Intelligence +1003.4142 Artificial Intelligence +1003.4145 Artificial Intelligence +1003.4196 Artificial Intelligence +1003.4250 High Energy Astrophysical Phenomena +1004.2829 General Mathematics +1004.2854 Artificial Intelligence +1004.2860 Artificial Intelligence +1004.2870 Artificial Intelligence +1004.3147 Neural and Evolutionary Computing +1004.3196 Artificial Intelligence +1004.3708 Computer Vision and Pattern Recognition +1004.3884 Artificial Intelligence +1004.3887 Artificial Intelligence +1004.3919 Artificial Intelligence +1004.3932 Artificial Intelligence +1004.3939 Artificial Intelligence +1004.4089 Artificial Intelligence +1004.4095 Artificial Intelligence +1004.4419 Astrophysics of Galaxies +1004.5051 Computational Engineering, Finance, and Science +1004.5215 Artificial Intelligence +1004.5222 Artificial Intelligence +1005.0138 Classical Physics +1005.1906 Quantum Gases +1006.0410 +1006.1512 Artificial Intelligence +1006.1518 Artificial Intelligence +1006.1526 Artificial Intelligence +1006.1563 Artificial Intelligence +1006.1568 Artificial Intelligence +1006.2945 Artificial Intelligence +1006.3223 Rings and Algebras +1006.3652 Artificial Intelligence +1006.3654 Artificial Intelligence +1006.4035 Artificial Intelligence +1006.4814 Solar and Stellar Astrophysics +1006.4949 Artificial Intelligence +1006.5008 Artificial Intelligence +1006.5587 General Finance +1006.5709 General Physics +1007.0047 Superconductivity +1007.0246 Theory +1007.0251 Number Theory +1007.0257 Number Theory +1007.0258 High Energy Astrophysical Phenomena +1007.0259 Number Theory +1007.0261 Probability +1007.0262 Complex Variables +1007.0266 Disordered Systems and Neural Networks +1007.0267 Information Theory +1007.0272 Solar and Stellar Astrophysics +1007.0273 Solar and Stellar Astrophysics +1007.0274 Materials Science +1007.0275 Probability +1007.0283 Probability +1007.0284 Logic +1007.0292 Computers and Society +1007.0295 Distributed, Parallel, and Cluster Computing +1007.0297 Analysis of PDEs +1007.0298 Solar and Stellar Astrophysics +1007.0299 Algebraic Geometry +1007.0300 Biomolecules +1007.0301 Algebraic Geometry +1007.0302 Computers and Society +1007.0312 Probability +1007.0328 Distributed, Parallel, and Cluster Computing +1007.0331 Classical Analysis and ODEs +1007.0332 Number Theory +1007.0334 Optics +1007.0345 Accelerator Physics +1007.0347 General Physics +1007.0348 High Energy Astrophysical Phenomena +1007.0355 Theory +1007.0357 Chaotic Dynamics +1007.0363 Operator Algebras +1007.0365 +1007.0372 Data Structures and Algorithms +1007.0374 Biomolecules +1007.0376 Neural and Evolutionary Computing +1007.0380 Numerical Analysis +1007.0381 Discrete Mathematics +1007.0382 Phenomenology +1007.0392 Mesoscale and Nanoscale Physics +1007.0407 Solar and Stellar Astrophysics +1007.0409 Networking and Internet Architecture +1007.0410 Networking and Internet Architecture +1007.0411 Networking and Internet Architecture +1007.0412 Artificial Intelligence +1007.0413 Networking and Internet Architecture +1007.0417 Neural and Evolutionary Computing +1007.0418 Combinatorics +1007.0426 High Energy Astrophysical Phenomena +1007.0428 Instrumentation and Detectors +1007.0430 Functional Analysis +math/0703501 Differential Geometry +quant-ph/0701229 +0705.2495 Differential Geometry +0705.2822 Classical Analysis and ODEs +0710.0989 Algebraic Geometry +0710.1742 Phenomenology +0711.4527 Superconductivity +0712.1699 Numerical Analysis +0801.2193 +0802.2953 Strongly Correlated Electrons +0803.4476 Complex Variables +0804.3647 Optimization and Control +0809.3957 Geometric Topology +0810.2358 Biomolecules +0810.5738 Atomic Physics +0811.0881 +0811.3485 Fluid Dynamics +0812.0705 Optimization and Control +0901.0094 Group Theory +0901.3967 Logic +0902.1608 Combinatorics +0902.3776 Rings and Algebras +0902.4197 Category Theory +0903.0091 Algebraic Geometry +0903.1479 Strongly Correlated Electrons +0903.4508 +0907.0655 Mesoscale and Nanoscale Physics +0907.3984 Functional Analysis +0907.4766 Cosmology and Nongalactic Astrophysics +0908.0668 Numerical Analysis +0908.0782 Analysis of PDEs +0908.1937 Disordered Systems and Neural Networks +0910.2262 Operator Algebras +0910.4949 Geometric Topology +0910.5207 Differential Geometry +0910.5335 Phenomenology +0911.4358 Theory +0911.4473 Representation Theory +0911.4584 Superconductivity +0912.2439 Chaotic Dynamics +0912.3363 +0912.3881 Strongly Correlated Electrons +0912.4168 Phenomenology +1001.0968 +1001.2960 +1001.3024 Strongly Correlated Electrons +1001.3860 Algebraic Topology +1001.4662 Statistical Mechanics +1001.5425 Materials Science +1002.3722 Probability +1002.4137 Phenomenology +1002.4291 Mesoscale and Nanoscale Physics +1002.4551 Quantum Gases +1003.1960 Phenomenology +1003.2065 +1003.2141 Phenomenology +1003.2879 Neurons and Cognition +1003.4497 Phenomenology +1003.5530 Phenomenology +1004.2278 Symplectic Geometry +1004.2580 Pattern Formation and Solitons +1004.3170 Disordered Systems and Neural Networks +1004.4730 Statistical Mechanics +1004.4930 Phenomenology +1005.0144 Cosmology and Nongalactic Astrophysics +1005.1380 Pattern Formation and Solitons +1005.1573 Theory +1005.1750 +1005.4018 Networking and Internet Architecture +1005.4528 Number Theory +1005.5250 Instrumentation and Methods for Astrophysics +1006.0347 Mesoscale and Nanoscale Physics +1006.1136 Mesoscale and Nanoscale Physics +1006.1625 Strongly Correlated Electrons +1006.1867 Cosmology and Nongalactic Astrophysics +1006.2510 Phenomenology +1006.3424 Distributed, Parallel, and Cluster Computing +1006.3669 Optics +1006.3811 Astrophysics of Galaxies +1006.5256 Instrumentation and Methods for Astrophysics +1007.0402 +1007.0873 +1007.1871 Biological Physics +1007.2182 Strongly Correlated Electrons +1007.2367 Astrophysics of Galaxies +1008.0135 Instrumentation and Methods for Astrophysics +1008.1185 Numerical Analysis +1008.1224 Computational Geometry +1008.1434 Operator Algebras +1008.1502 High Energy Astrophysical Phenomena +1008.3215 Theory +1008.3962 Rings and Algebras +1008.4454 Mesoscale and Nanoscale Physics +1009.0276 Geometric Topology +1009.0395 Statistical Mechanics +1009.0513 Physics and Society +1009.0572 Information Theory +1009.1760 Cosmology and Nongalactic Astrophysics +1009.1889 Information Theory +1009.2086 Phenomenology +1009.2560 Strongly Correlated Electrons +1009.2949 Networking and Internet Architecture +1009.2973 Analysis of PDEs +1009.3502 Data Structures and Algorithms +1009.3516 Applications +1009.3518 Dynamical Systems +1009.3525 Information Theory +1009.3527 Computational Geometry +1009.3531 Commutative Algebra +1009.3534 Representation Theory +1009.3539 Cryptography and Security +1009.3542 Probability +1009.3544 Probability +1009.3545 Probability +1009.3552 Networking and Internet Architecture +1009.3556 Pricing of Securities +1009.3558 Earth and Planetary Astrophysics +1009.3559 +1009.3561 Geometric Topology +1009.3567 Networking and Internet Architecture +1009.3568 Theory +1009.3574 Algebraic Topology +1009.3576 Differential Geometry +1009.3577 Solar and Stellar Astrophysics +1009.3579 Solar and Stellar Astrophysics +1009.3583 Functional Analysis +1009.3588 Algebraic Geometry +1009.3589 Learning +1009.3591 Functional Analysis +1009.3592 Solar and Stellar Astrophysics +1009.3593 Information Theory +1009.3597 Fluid Dynamics +1009.3599 Formal Languages and Automata Theory +1009.3601 Machine Learning +1009.3602 Information Theory +1009.3607 Biomolecules +1009.3608 Combinatorics +1009.3610 Phenomenology +1009.3618 Materials Science +1009.3619 Discrete Mathematics +1009.3628 Instrumentation and Methods for Astrophysics +1009.3629 Functional Analysis +1009.3631 Fluid Dynamics +1009.3636 Solar and Stellar Astrophysics +1009.3640 Computational Complexity +1009.3642 Information Theory +1009.3645 Combinatorics +1009.3646 Solar and Stellar Astrophysics +1009.3649 Combinatorics +1009.3650 Solar and Stellar Astrophysics +1009.3652 Theory +1009.3654 Solar and Stellar Astrophysics +1009.3656 Neurons and Cognition +1009.3657 Information Theory +1009.3660 Quantum Algebra +1009.3665 Distributed, Parallel, and Cluster Computing +1009.3668 Complex Variables +1009.3670 Mesoscale and Nanoscale Physics +1009.3671 Mesoscale and Nanoscale Physics +1009.3673 Category Theory +1009.3677 Theory +1009.3678 Operator Algebras +1009.3679 High Energy Astrophysical Phenomena +1009.3681 Networking and Internet Architecture +1009.3690 Cosmology and Nongalactic Astrophysics +1009.3694 +1009.3699 Materials Science +1009.3700 Materials Science +1009.3702 Learning +1009.3703 Soft Condensed Matter +1009.3705 Differential Geometry +1009.3707 +1009.3708 Probability +1009.3710 Software Engineering +1009.3711 Software Engineering +1009.3712 Software Engineering +1009.3713 Software Engineering +1009.3714 Software Engineering +1009.3715 Software Engineering +1009.3716 Software Engineering +1009.3717 General Physics +1009.3720 Cosmology and Nongalactic Astrophysics +1009.3721 Combinatorics +1009.3726 Spectral Theory +1009.3733 Analysis of PDEs +1009.3737 Classical Analysis and ODEs +1009.3739 Algebraic Geometry +1009.3742 Phenomenology +1009.3747 Statistical Mechanics +1009.3761 Mesoscale and Nanoscale Physics +1009.3765 Logic in Computer Science +1009.3766 Fluid Dynamics +1009.3770 Logic in Computer Science +1009.3771 Programming Languages +1009.3773 Programming Languages +1009.3775 Experiment +1009.3779 Networking and Internet Architecture +1009.3785 Multimedia +1009.3786 +1009.3788 +1009.3796 Programming Languages +1009.3797 Networking and Internet Architecture +1009.3799 Metric Geometry +1009.3800 Programming Languages +1009.3806 Programming Languages +1009.3810 Pricing of Securities +1009.3811 Algebraic Geometry +1009.3816 +1009.3821 Functional Analysis +1009.3822 Logic in Computer Science +1009.3823 Mesoscale and Nanoscale Physics +1009.3836 Optics +1009.3843 General Physics +1009.3848 Soft Condensed Matter +1009.3850 Materials Science +1009.3852 Strongly Correlated Electrons +1009.3855 Classical Analysis and ODEs +1009.3856 Classical Analysis and ODEs +1009.3857 Classical Analysis and ODEs +1009.3865 Phenomenology +1009.3866 Group Theory +1009.3868 Numerical Analysis +1009.3871 Phenomenology +1009.3873 Disordered Systems and Neural Networks +1009.3877 Phenomenology +1009.3878 Soft Condensed Matter +1009.3879 High Energy Astrophysical Phenomena +1009.3881 Differential Geometry +1009.3883 Classical Analysis and ODEs +1009.3885 Probability +1009.3886 Phenomenology +1009.3890 Machine Learning +1009.3892 Category Theory +1009.3894 +1009.3897 +1009.3900 Combinatorics +1009.3901 Differential Geometry +1009.3908 Numerical Analysis +1009.3910 +1009.3911 Software Engineering +1009.3920 +1009.3923 Materials Science +astro-ph/0505552 +cond-mat/0304694 Statistical Mechanics +cond-mat/0504325 Mesoscale and Nanoscale Physics +cond-mat/0703530 Materials Science +cond-mat/9808163 Materials Science +math/0406494 Algebraic Geometry +math/0406596 Algebraic Geometry +math/0512311 Representation Theory +math/0609264 Combinatorics +math/0701596 Algebraic Geometry +quant-ph/0501108 +0707.1756 Number Theory +0708.1601 Number Theory +0801.4236 General Topology +0801.4614 Algebraic Geometry +0803.0132 Number Theory +0804.0578 Algebraic Geometry +0808.1629 Algebraic Geometry +0809.3994 Number Theory +0810.5091 Symplectic Geometry +0902.4011 Combinatorics +0904.0331 Quantum Algebra +0906.1475 Algebraic Topology +0906.3562 Geometric Topology +0907.4727 +0910.2126 Cosmology and Nongalactic Astrophysics +0910.3720 Mesoscale and Nanoscale Physics +0910.5860 Cosmology and Nongalactic Astrophysics +0911.0362 Disordered Systems and Neural Networks +0912.0967 Phenomenology +cs/0503089 Information Theory +math/0207101 Number Theory +math/0304471 Algebraic Geometry +math/0308232 Differential Geometry +math/0309376 Differential Geometry +math/0403178 Number Theory +math/0602650 Number Theory +math/0604413 Number Theory +math/0607515 Number Theory +0704.2798 Phenomenology +0705.2034 +0706.3781 Numerical Analysis +0708.0707 Theory +0710.1118 Lattice +0710.1322 Lattice +0710.2520 Lattice +0710.3124 Lattice +0711.0021 Lattice +0803.0655 Materials Science +0804.4618 +0807.1068 Phenomenology +0807.1855 Theory +0808.3279 Mesoscale and Nanoscale Physics +0809.2385 Quantum Algebra +0810.0870 Information Theory +0810.1029 Phenomenology +0811.0956 Phenomenology +0812.0958 Phenomenology +0812.3732 Strongly Correlated Electrons +0901.3106 Phenomenology +0902.0093 +0902.2525 Phenomenology +0902.3362 Combinatorics +0904.1580 Phenomenology +0904.1827 Optimization and Control +0905.3302 Phenomenology +0905.3308 Phenomenology +0905.3964 Computer Vision and Pattern Recognition +0906.1139 Phenomenology +0907.5056 Phenomenology +0908.1103 Probability +0908.1144 Applications +0908.2333 +0908.2545 +0908.2908 Phenomenology +0908.3735 Probability +0909.0216 Dynamical Systems +0909.0547 Mesoscale and Nanoscale Physics +0909.1423 Combinatorics +0909.2214 Probability +0909.3346 Data Structures and Algorithms +0910.2000 Phenomenology +0910.3502 Materials Science +0910.5102 General Physics +0910.5280 Cosmology and Nongalactic Astrophysics +0911.0848 Exactly Solvable and Integrable Systems +0911.4054 Phenomenology +0912.0110 Experiment +0912.0111 Experiment +0912.0235 General Physics +0912.1102 Superconductivity +0912.1181 Mesoscale and Nanoscale Physics +0912.1191 Cosmology and Nongalactic Astrophysics +0912.1293 +0912.1922 Group Theory +0912.2271 +0912.2308 Cosmology and Nongalactic Astrophysics +0912.2446 Experiment +0912.2704 Experiment +0912.4066 Mesoscale and Nanoscale Physics +0912.4155 Strongly Correlated Electrons +0912.4826 Instrumentation and Methods for Astrophysics +0912.5253 Theory +1001.0293 Phenomenology +1001.0868 Experiment +1001.0975 +1001.1273 Probability +1001.3003 Pricing of Securities +1001.3730 Phenomenology +1002.0651 History and Overview +1002.1591 +1002.1933 Combinatorics +1002.3574 Theory +1003.0316 Materials Science +1003.1163 Phenomenology +1003.1240 Instrumentation and Detectors +1003.2669 Mesoscale and Nanoscale Physics +1004.1505 +1004.2071 Theory +1004.4745 Superconductivity +1004.5101 Quantum Gases +1005.1278 Cosmology and Nongalactic Astrophysics +1005.1903 +1005.5321 +1006.0599 +1006.2225 +1006.2857 Phenomenology +1006.3397 Statistical Mechanics +1006.4270 Information Retrieval +1006.4813 Materials Science +1006.5349 Functional Analysis +1007.0833 Mesoscale and Nanoscale Physics +1007.1247 High Energy Astrophysical Phenomena +1007.1805 Theory +1007.1990 Phenomenology +1007.2139 Theory +1007.2163 Phenomenology +1007.2798 Strongly Correlated Electrons +1007.3745 Theory +1007.4524 Mesoscale and Nanoscale Physics +1007.4769 High Energy Astrophysical Phenomena +1008.0544 Theory +1008.0776 Theory +1008.0948 Mesoscale and Nanoscale Physics +1008.1453 Theory +1008.1834 Phenomenology +1008.2100 +1008.2316 +1008.4220 Learning +1008.5071 Machine Learning +1008.5379 Exactly Solvable and Integrable Systems +1009.1209 Mesoscale and Nanoscale Physics +1009.1487 Theory +1009.1643 Theory +1009.1714 Phenomenology +1009.1827 Instrumentation and Detectors +1009.1838 +1009.1864 +1009.2426 +1009.3550 General Finance +1009.5430 Mesoscale and Nanoscale Physics +1010.0643 Solar and Stellar Astrophysics +1010.1254 Cosmology and Nongalactic Astrophysics +1010.1412 Probability +1010.1422 Soft Condensed Matter +1010.3120 +1010.5797 +1011.1878 Atomic Physics +1011.2537 Accelerator Physics +1011.2606 Mesoscale and Nanoscale Physics +1011.2613 Fluid Dynamics +1011.2679 Probability +1011.2758 Cosmology and Nongalactic Astrophysics +1011.2769 Combinatorics +1011.2771 Machine Learning +1011.2773 High Energy Astrophysical Phenomena +1011.2790 Logic in Computer Science +1011.2791 General Physics +1011.2795 Networking and Internet Architecture +1011.2799 Theory +1011.2800 Solar and Stellar Astrophysics +1011.2801 Phenomenology +1011.2803 Combinatorics +1011.2806 Differential Geometry +1011.2807 Databases +1011.2819 Classical Analysis and ODEs +1011.2822 Lattice +1011.2829 Populations and Evolution +1011.2831 Solar and Stellar Astrophysics +1011.2835 Information Theory +1011.2836 Networking and Internet Architecture +1011.2838 Analysis of PDEs +1011.2840 Materials Science +1011.2844 Dynamical Systems +1011.2845 Group Theory +1011.2851 Applications +1011.2852 +1011.2858 Applications +1011.2860 Rings and Algebras +1011.2868 +1011.2872 Probability +1011.2877 Applications +1011.2883 Lattice +1011.2884 Lattice +1011.2885 +1011.2889 Cosmology and Nongalactic Astrophysics +1011.2890 Applications +1011.2893 Networking and Internet Architecture +1011.2895 Applications +1011.2898 Logic in Computer Science +1011.2899 Representation Theory +1011.2901 Applications +1011.2902 Optics +1011.2905 Applications +1011.2909 Probability +1011.2910 Pattern Formation and Solitons +1011.2911 Analysis of PDEs +1011.2913 Other Condensed Matter +1011.2916 Differential Geometry +1011.2920 Algebraic Geometry +1011.2921 Probability +1011.2922 Computation and Language +1011.2924 Applications +1011.2929 Applications +1011.2932 Computation +1011.2933 Functional Analysis +1011.2934 Astrophysics of Galaxies +1011.2943 Materials Science +1011.2944 Strongly Correlated Electrons +1011.2948 Computation +1011.2950 Algebraic Geometry +1011.2953 Distributed, Parallel, and Cluster Computing +1011.2960 +1011.2965 Algebraic Geometry +1011.2968 +1011.2973 Logic in Computer Science +1011.2983 Accelerator Physics +1011.2989 Optimization and Control +1011.2993 Phenomenology +1011.3000 Exactly Solvable and Integrable Systems +1011.3002 Rings and Algebras +1011.3003 Mesoscale and Nanoscale Physics +1011.3009 Rings and Algebras +1011.3011 Superconductivity +1011.3025 Probability +1011.3028 Solar and Stellar Astrophysics +1011.3034 Metric Geometry +1011.3035 Differential Geometry +acc-phys/9510002 Accelerator Physics +astro-ph/0102366 +astro-ph/0102454 +astro-ph/0103022 +astro-ph/0111591 +astro-ph/0201509 +astro-ph/0206345 +astro-ph/0210638 +astro-ph/0212329 +astro-ph/0404076 +astro-ph/0405411 +astro-ph/0408310 +astro-ph/0410397 +cond-mat/0506645 Other Condensed Matter +cond-mat/0611739 Other Condensed Matter +hep-ex/0205077 Experiment +hep-ex/0309028 Experiment +hep-ex/0310061 Experiment +hep-ex/0312019 Experiment +hep-ex/0312039 Experiment +hep-ex/0410026 Experiment +hep-ex/9612012 Experiment +hep-lat/0011004 Lattice +hep-lat/0110124 Lattice +hep-lat/0110171 Lattice +hep-lat/0209069 Lattice +hep-lat/0210034 Lattice +hep-lat/0309096 Lattice +hep-lat/0309122 Lattice +hep-lat/0409143 Lattice +hep-lat/0509053 Lattice +hep-lat/0509137 Lattice +hep-lat/0509176 Lattice +hep-lat/0510025 Lattice +hep-lat/0510072 Lattice +hep-lat/0603031 Lattice +hep-lat/0609043 Lattice +hep-lat/0609053 Lattice +hep-lat/0610006 Lattice +hep-lat/0610017 Lattice +hep-ph/0004191 Phenomenology +hep-ph/0008066 Phenomenology +hep-ph/0010075 Phenomenology +hep-ph/0107217 Phenomenology +hep-ph/0111102 Phenomenology +hep-ph/0112321 Phenomenology +hep-ph/0202231 Phenomenology +hep-ph/0202271 Phenomenology +hep-ph/0207135 Phenomenology +hep-ph/0210028 Phenomenology +hep-ph/0211141 Phenomenology +hep-ph/0211216 Phenomenology +hep-ph/0211344 Phenomenology +hep-ph/0212056 Phenomenology +hep-ph/0302233 Phenomenology +hep-ph/0309334 Phenomenology +hep-ph/0312266 Phenomenology +hep-ph/0312278 Phenomenology +hep-ph/0407094 Phenomenology +hep-ph/0410393 Phenomenology +hep-ph/0502043 Phenomenology +hep-ph/0505055 Phenomenology +hep-ph/0507005 Phenomenology +hep-ph/0507064 Phenomenology +hep-ph/0512111 Phenomenology +hep-ph/0604090 Phenomenology +hep-ph/9302280 Phenomenology +hep-ph/9304221 Phenomenology +hep-ph/9306240 Phenomenology +hep-ph/9312333 Phenomenology +hep-ph/9312363 Phenomenology +hep-ph/9409214 Phenomenology +hep-ph/9409265 Phenomenology +hep-ph/9409393 Phenomenology +hep-ph/9505355 Phenomenology +hep-ph/9602280 Phenomenology +hep-ph/9604357 Phenomenology +hep-ph/9604396 Phenomenology +hep-ph/9605245 Phenomenology +hep-ph/9609460 Phenomenology +hep-ph/9610282 Phenomenology +hep-ph/9706285 Phenomenology +hep-ph/9706487 Phenomenology +hep-ph/9708239 Phenomenology +hep-ph/9710557 Phenomenology +hep-ph/9802327 Phenomenology +hep-ph/9803250 Phenomenology +hep-ph/9903328 Phenomenology +hep-ph/9903396 Phenomenology +hep-ph/9907305 Phenomenology +hep-ph/9910563 Phenomenology +hep-ph/9911284 Phenomenology +hep-th/0002078 Theory +hep-th/0002245 Theory +hep-th/0005074 Theory +hep-th/0009225 Theory +hep-th/0010219 Theory +hep-th/0201027 Theory +hep-th/0210030 Theory +hep-th/0301128 Theory +hep-th/0309040 Theory +hep-th/0410021 Theory +hep-th/0410224 Theory +hep-th/0410296 Theory +hep-th/0411020 Theory +hep-th/0501240 Theory +hep-th/9205094 Theory +hep-th/9410029 Theory +hep-th/9503210 Theory +hep-th/9610091 Theory +hep-th/9709095 Theory +hep-th/9711114 Theory +hep-th/9802162 Theory +hep-th/9806016 Theory +hep-th/9809160 Theory +hep-th/9811140 Theory +hep-th/9901030 Theory +hep-th/9905013 Theory +hep-th/9911194 Theory +math/0304289 Combinatorics +math/0304290 Combinatorics +math/0401313 Combinatorics +math/0404298 Combinatorics +math/0510463 Differential Geometry +math/0604333 Representation Theory +math/0611376 Statistics Theory +math/0612360 Representation Theory +nucl-ex/0305034 +nucl-ex/0403043 +nucl-ex/9911002 +nucl-th/0006002 +nucl-th/0006017 +nucl-th/0305083 +nucl-th/9802058 +nucl-th/9810044 +nucl-th/9907004 +physics/0008007 Accelerator Physics +physics/0008131 Accelerator Physics +physics/0008173 Accelerator Physics +physics/0008217 Accelerator Physics +physics/0108015 Accelerator Physics +physics/0111180 Accelerator Physics +physics/0111208 Accelerator Physics +physics/0112043 Instrumentation and Detectors +physics/0406145 Accelerator Physics +quant-ph/0202084 +quant-ph/0202101 +0704.1577 Optics +0711.1483 Other Condensed Matter +0712.3430 Rings and Algebras +0712.3495 Rings and Algebras +0712.3523 Rings and Algebras +0801.2369 Differential Geometry +0802.0951 +0803.1276 Statistics Theory +0803.3094 Dynamical Systems +0805.1755 Group Theory +0805.3792 Functional Analysis +0807.4471 Soft Condensed Matter +0809.0150 Dynamical Systems +0810.2491 +0901.0597 Neural and Evolutionary Computing +0901.4810 Atomic and Molecular Clusters +0902.3506 Combinatorics +0903.0724 +0903.1452 Quantum Algebra +0903.3278 Networking and Internet Architecture +0904.4837 +0905.4772 Cosmology and Nongalactic Astrophysics +0906.0002 Cosmology and Nongalactic Astrophysics +0908.2956 Other Condensed Matter +0909.1059 +0909.1352 Probability +0909.2813 +0909.3560 Probability +0909.3868 Computational Complexity +0910.1049 Analysis of PDEs +0910.2042 Statistics Theory +0910.3176 Differential Geometry +0910.4287 Mesoscale and Nanoscale Physics +0911.1418 Geometric Topology +0911.4774 Probability +0912.0475 Dynamical Systems +0912.0487 Dynamical Systems +0912.0795 Combinatorics +0912.1430 Fluid Dynamics +0912.1707 Mesoscale and Nanoscale Physics +0912.4387 Statistics Theory +0912.4465 Molecular Networks +0912.4568 Quantum Gases +0912.4873 Theory +1001.0041 Metric Geometry +1001.0644 Cosmology and Nongalactic Astrophysics +1001.5200 +1002.0179 Information Theory +1002.1826 Soft Condensed Matter +1002.4192 Astrophysics of Galaxies +1002.4642 Representation Theory +1003.0641 Materials Science +1003.0669 Phenomenology +1003.0757 +1003.1890 +1003.2159 Probability +1003.2285 Functional Analysis +1003.2535 Mesoscale and Nanoscale Physics +1003.3137 Mesoscale and Nanoscale Physics +1003.3506 +1003.3787 Mesoscale and Nanoscale Physics +1003.4652 Group Theory +1003.5304 Cryptography and Security +1003.5339 Strongly Correlated Electrons +1003.5706 Functional Analysis +1004.1285 Cosmology and Nongalactic Astrophysics +1004.1343 Representation Theory +1004.2753 Number Theory +1004.3445 +1004.4268 Physics and Society +1004.4627 Statistical Mechanics +1004.5155 Instrumentation and Methods for Astrophysics +1005.1059 Computer Science and Game Theory +1005.1121 Computer Science and Game Theory +1005.2796 Algebraic Geometry +1005.3045 Computer Science and Game Theory +1005.5737 Phenomenology +1006.3075 Cosmology and Nongalactic Astrophysics +1006.3258 +1006.3513 Cosmology and Nongalactic Astrophysics +1006.3799 Quantum Gases +1006.3935 Materials Science +1006.3936 Superconductivity +1006.4111 Quantitative Methods +1006.4163 Cosmology and Nongalactic Astrophysics +1006.4266 +1006.4397 Populations and Evolution +1006.5169 Statistical Mechanics +1006.5213 Astrophysics of Galaxies +1007.1134 Mesoscale and Nanoscale Physics +1007.3752 Mesoscale and Nanoscale Physics +1007.5468 Mesoscale and Nanoscale Physics +1008.0077 Chaotic Dynamics +1008.0847 +1008.1849 Optics +1008.2616 Optics +1008.2882 Mesoscale and Nanoscale Physics +1008.3014 Neurons and Cognition +1008.4498 Phenomenology +1008.4993 Experiment +1009.0267 Networking and Internet Architecture +1009.1511 Quantum Gases +1009.1696 Other Condensed Matter +1009.1785 Combinatorics +1009.1924 Phenomenology +1009.2092 Materials Science +1009.2096 +1009.2098 Astrophysics of Galaxies +1009.2101 Instrumentation and Methods for Astrophysics +1009.2105 High Energy Astrophysical Phenomena +1009.2110 Representation Theory +1009.2112 Cosmology and Nongalactic Astrophysics +1009.2113 Astrophysics of Galaxies +1009.2114 Soft Condensed Matter +1009.2115 Astrophysics of Galaxies +1009.2134 Geometric Topology +1009.2137 Optimization and Control +1009.2142 Discrete Mathematics +1009.2148 Rings and Algebras +1009.2152 Probability +1009.2158 Complex Variables +1009.2160 Data Structures and Algorithms +1009.2163 Differential Geometry +1009.2166 Theory +1009.2172 General Mathematics +1009.2176 General Mathematics +1009.2178 Programming Languages +1009.2180 Physics and Society +1009.2181 Number Theory +1009.2184 Functional Analysis +1009.2186 Medical Physics +1009.2187 Medical Physics +1009.2189 Logic in Computer Science +1009.2190 Methodology +1009.2195 Rings and Algebras +1009.2204 Computer Science and Game Theory +1009.2205 Computer Science and Game Theory +1009.2206 Computers and Society +1009.2207 Computer Science and Game Theory +1009.2208 Computer Science and Game Theory +1009.2209 Astrophysics of Galaxies +1009.2211 +1009.2228 Statistical Mechanics +1009.2233 Combinatorics +1009.2235 Materials Science +1009.2237 Operator Algebras +1009.2243 Neurons and Cognition +1009.2246 Fluid Dynamics +1009.2252 Computational Geometry +1009.2254 General Physics +1009.2257 Geometric Topology +1009.2259 Logic in Computer Science +1009.2263 Instrumentation and Methods for Astrophysics +1009.2267 +1009.2270 Databases +1009.2279 Geometric Topology +1009.2280 Fluid Dynamics +1009.2282 Networking and Internet Architecture +1009.2292 General Topology +1009.2294 Molecular Networks +1009.2295 Molecular Networks +1009.2298 Plasma Physics +1009.2300 Methodology +1009.2302 Methodology +1009.2309 Instrumentation and Detectors +1009.2310 Algebraic Geometry +1009.2314 Distributed, Parallel, and Cluster Computing +1009.2322 Data Structures and Algorithms +1009.2327 Mesoscale and Nanoscale Physics +1009.2331 Category Theory +1009.2335 Differential Geometry +1009.2337 Group Theory +1009.2343 Materials Science +1009.2347 Probability +1009.2348 Phenomenology +1009.2350 Solar and Stellar Astrophysics +1009.2353 Plasma Physics +1009.2364 Number Theory +1009.2365 +1009.2368 Networking and Internet Architecture +1009.2369 Functional Analysis +1009.2371 Phenomenology +1009.2373 History and Overview +1009.2374 Quantum Gases +1009.2381 Earth and Planetary Astrophysics +1009.2382 Instrumentation and Methods for Astrophysics +1009.2384 Combinatorics +1009.2389 Operator Algebras +1009.2391 Representation Theory +1009.2395 Statistical Mechanics +1009.2399 Classical Analysis and ODEs +1009.2402 Fluid Dynamics +1009.2406 Cryptography and Security +1009.2407 +1009.2411 Cryptography and Security +1009.2413 Experiment +1009.2421 High Energy Astrophysical Phenomena +1009.2436 Phenomenology +1009.2439 Statistics Theory +1009.2443 Information Theory +1009.2452 Data Structures and Algorithms +1009.2457 Probability +1009.2469 Representation Theory +1009.2476 Cryptography and Security +1009.2491 Cryptography and Security +1009.2494 Strongly Correlated Electrons +cond-mat/0504761 Materials Science +cs/0408021 Artificial Intelligence +math/0508282 Statistics Theory +math/0508565 Category Theory +math/0701206 Statistics Theory +math/0702528 Rings and Algebras +nucl-th/0702055 +physics/0101056 Optics +physics/0604234 Optics +physics/0612161 Computational Physics +quant-ph/0603110 +0709.1423 Strongly Correlated Electrons +0801.2071 Number Theory +0801.4428 Soft Condensed Matter +0804.0022 +0810.1405 Disordered Systems and Neural Networks +0810.3179 Optics +0811.0991 Differential Geometry +0811.1092 +0901.0542 High Energy Astrophysical Phenomena +0901.0993 +0901.1013 Superconductivity +0902.0518 Representation Theory +0903.3606 Mesoscale and Nanoscale Physics +0903.4463 Atomic Physics +0903.4543 +0904.1287 Strongly Correlated Electrons +0905.1247 Quantum Gases +0906.4786 Cosmology and Nongalactic Astrophysics +0907.0789 Symplectic Geometry +0907.0889 Theory +0907.2125 Strongly Correlated Electrons +0907.4102 Lattice +0908.4268 Superconductivity +0909.0826 Cosmology and Nongalactic Astrophysics +0909.3403 Complex Variables +0909.4878 Chemical Physics +0910.1373 Theory +0910.1417 +0910.1431 Atomic Physics +0910.1652 Quantum Gases +0910.1824 Combinatorics +0910.2175 Cosmology and Nongalactic Astrophysics +0910.4329 Mesoscale and Nanoscale Physics +0910.5265 Mesoscale and Nanoscale Physics +0911.1322 Physics and Society +0911.1553 Soft Condensed Matter +0911.1936 Quantum Gases +0911.3838 Strongly Correlated Electrons +0912.0316 Symplectic Geometry +0912.1738 Statistical Mechanics +0912.3401 Computational Physics +0912.3679 Statistical Mechanics +1001.0647 Quantitative Methods +1001.2684 Soft Condensed Matter +1001.3698 Quantum Gases +1002.2461 Algebraic Geometry +1002.2617 High Energy Astrophysical Phenomena +1002.4026 Statistical Mechanics +1002.4162 Dynamical Systems +1002.4956 Representation Theory +1003.3366 Analysis of PDEs +1003.3543 Information Theory +1003.4817 Representation Theory +1003.4989 Geophysics +1003.4991 Phenomenology +1003.5001 Cosmology and Nongalactic Astrophysics +1003.5002 Geometric Topology +1003.5004 Optimization and Control +1003.5007 Populations and Evolution +1003.5013 Solar and Stellar Astrophysics +1003.5016 General Physics +1003.5022 Theory +1003.5029 Number Theory +1003.5030 Mesoscale and Nanoscale Physics +1003.5033 High Energy Astrophysical Phenomena +1003.5039 Superconductivity +1003.5040 Theory +1003.5041 Theory +1003.5042 Information Retrieval +1003.5045 Phenomenology +1003.5050 +1003.5058 +1003.5062 General Physics +1003.5065 Optics +1003.5069 Optics +1003.5080 Databases +1003.5087 Metric Geometry +1003.5088 Functional Analysis +1003.5092 Cosmology and Nongalactic Astrophysics +1003.5093 Superconductivity +1003.5100 Phenomenology +1003.5104 Networking and Internet Architecture +1003.5112 Solar and Stellar Astrophysics +1003.5113 Solar and Stellar Astrophysics +1003.5114 Solar and Stellar Astrophysics +1003.5124 Spectral Theory +1003.5133 Strongly Correlated Electrons +1003.5138 General Physics +1003.5146 Differential Geometry +1003.5151 Rings and Algebras +1003.5154 Superconductivity +1003.5166 Physics and Society +1003.5168 Spectral Theory +1003.5169 Optics +1003.5170 Quantum Gases +1003.5173 Artificial Intelligence +1003.5174 Dynamical Systems +1003.5177 Differential Geometry +1003.5182 +1003.5184 +1003.5190 High Energy Astrophysical Phenomena +1003.5192 Digital Libraries +1003.5194 Theory +1003.5196 Digital Libraries +1003.5206 Statistical Mechanics +1003.5209 +1003.5212 Information Theory +cond-mat/0611593 Mesoscale and Nanoscale Physics +cs/0608095 Information Theory +math/0202090 Combinatorics +math/0206099 Algebraic Geometry +math/0206268 Algebraic Geometry +math/0304346 Algebraic Geometry +math/0306401 Metric Geometry +math/0403101 Quantum Algebra +math/0405475 Algebraic Geometry +math/0405539 Combinatorics +math/0406136 Functional Analysis +math/0407412 Combinatorics +math/0409022 Combinatorics +math/0409219 Metric Geometry +math/0409504 Algebraic Geometry +math/0501146 Algebraic Geometry +math/0502051 Algebraic Geometry +math/0502109 Classical Analysis and ODEs +math/0502564 Metric Geometry +math/0506466 Combinatorics +math/0507377 Algebraic Geometry +math/0511660 Algebraic Geometry +math/0602161 Algebraic Geometry +math/0607669 Algebraic Geometry +math/0609544 Algebraic Geometry +math/0611960 General Mathematics +0706.2081 Rings and Algebras +0707.1289 Differential Geometry +0707.3773 Differential Geometry +0803.0211 Number Theory +0803.3090 Superconductivity +0803.3252 Quantum Algebra +0803.4021 Combinatorics +0809.1583 Superconductivity +0809.1658 Phenomenology +0810.4340 +0812.1269 +0902.2237 Commutative Algebra +0903.0167 +0903.0267 +0903.0355 Phenomenology +0903.0501 +0903.0505 +0903.0867 +0903.0878 +0903.1991 Lattice +0903.3475 +0904.0067 +0904.0184 +0904.2190 Theory +0904.2270 Theory +0905.0733 Combinatorics +0905.3402 Superconductivity +0905.4497 Experiment +0906.2601 +0906.2886 Plasma Physics +0906.4922 Mesoscale and Nanoscale Physics +0906.5562 +0907.0138 Discrete Mathematics +0907.0954 Materials Science +0907.0956 Other Condensed Matter +0907.3596 +0908.3070 Analysis of PDEs +0908.3674 Mesoscale and Nanoscale Physics +0908.3955 Atomic Physics +0909.1009 Superconductivity +0909.2697 Soft Condensed Matter +0909.4932 Quantum Gases +0909.4980 Functional Analysis +0909.5146 Data Structures and Algorithms +0910.1036 Differential Geometry +0910.2916 Theory +0910.3073 Phenomenology +0910.4045 Statistical Mechanics +0910.4560 Theory +0910.4657 Theory +0910.5122 Theory +0910.5132 Theory +0910.5175 Materials Science +0910.5360 Strongly Correlated Electrons +0911.0884 Experiment +0911.1012 +0911.2063 Experiment +0911.2247 Mesoscale and Nanoscale Physics +0911.2512 Strongly Correlated Electrons +0911.4598 Theory +0911.4605 Theory +0911.4666 Theory +0911.5069 +0912.1537 Optics +0912.4865 +1001.0498 +1001.1893 +1001.2694 Number Theory +1001.3042 Statistical Mechanics +1001.3641 Data Analysis, Statistics and Probability +1002.0808 Superconductivity +1002.1499 Subcellular Processes +1002.2367 Numerical Analysis +1002.3367 Statistical Mechanics +1002.4221 Biological Physics +1003.0751 +1003.1766 Mesoscale and Nanoscale Physics +1003.1915 Number Theory +1003.2061 +1003.2115 Analysis of PDEs +1003.2218 Learning +1003.2219 Dynamical Systems +1003.2220 Numerical Analysis +1003.2222 Experiment +1003.2224 Functional Analysis +1003.2231 +1003.2240 Analysis of PDEs +1003.2241 Analysis of PDEs +1003.2242 Numerical Analysis +1003.2243 Analysis of PDEs +1003.2244 Analysis of PDEs +1003.2245 Machine Learning +1003.2247 +1003.2248 Number Theory +1003.2255 Other Computer Science +1003.2263 Solar and Stellar Astrophysics +1003.2265 Mesoscale and Nanoscale Physics +1003.2273 General Physics +1003.2275 Analysis of PDEs +1003.2276 Materials Science +1003.2281 Computers and Society +1003.2282 Computational Physics +1003.2283 Statistical Mechanics +1003.2291 Discrete Mathematics +1003.2292 Operator Algebras +1003.2298 Analysis of PDEs +1003.2305 Analysis of PDEs +1003.2307 Instrumentation and Methods for Astrophysics +1003.2308 General Topology +1003.2311 +1003.2314 Optics +1003.2315 Differential Geometry +1003.2321 General Finance +1003.2327 +1003.2329 Biological Physics +1003.2331 Mesoscale and Nanoscale Physics +1003.2332 Representation Theory +1003.2333 Solar and Stellar Astrophysics +1003.2337 +1003.2338 Functional Analysis +1003.2341 Materials Science +1003.2349 Solar and Stellar Astrophysics +1003.2357 Combinatorics +1003.2361 Rings and Algebras +1003.2366 Populations and Evolution +1003.2372 Information Theory +1003.2374 Analysis of PDEs +1003.2375 Number Theory +1003.2379 +1003.2394 +1003.2396 Theory +1003.2398 High Energy Astrophysical Phenomena +1003.2400 Strongly Correlated Electrons +1003.2401 General Mathematics +1003.2407 Number Theory +1003.2411 Theory +cond-mat/0001455 Mesoscale and Nanoscale Physics +cond-mat/9601157 +hep-ph/0502086 Phenomenology +math/0505278 Representation Theory +physics/0510206 Physics Education +quant-ph/0609202 +0707.1614 Dynamical Systems +0707.4265 Analysis of PDEs +0710.3379 Pattern Formation and Solitons +0711.3798 +0712.0369 +0801.0012 +0801.0631 Trading and Market Microstructure +0802.1261 Exactly Solvable and Integrable Systems +0803.2235 +0803.2796 Statistical Mechanics +0806.0920 Computational Geometry +0807.2602 Other Condensed Matter +0808.1822 Combinatorics +0809.2494 Logic +0809.2523 Analysis of PDEs +0810.1869 General Physics +0812.0061 +0812.0938 +0812.0941 General Physics +0901.0615 Probability +0901.0858 Discrete Mathematics +0901.3815 Phenomenology +0902.0740 +0903.2039 Combinatorics +0903.3749 Number Theory +0903.4172 Theory +0905.0990 Number Theory +0906.0612 Physics and Society +0906.1624 Chemical Physics +0907.0292 Probability +0908.1062 Physics and Society +0908.1960 Quantitative Methods +0908.2925 Combinatorics +0910.5765 Optimization and Control +0911.0705 Strongly Correlated Electrons +0911.1442 +0911.3223 Probability +0912.1172 Metric Geometry +0912.1378 Materials Science +0912.1726 General Physics +0912.1777 Discrete Mathematics +0912.3148 Probability +1001.0040 +1001.0312 Combinatorics +1001.0477 Strongly Correlated Electrons +1001.0869 Materials Science +1001.3023 Disordered Systems and Neural Networks +1001.3072 Phenomenology +1001.3077 Phenomenology +1001.3177 Analysis of PDEs +1002.0610 Probability +1002.1232 Cosmology and Nongalactic Astrophysics +1002.2773 Theory +1002.4078 Fluid Dynamics +1003.1011 Statistical Mechanics +1003.2118 +1003.4674 Populations and Evolution +1003.5075 Statistical Mechanics +1004.0219 Dynamical Systems +1004.0740 Statistical Mechanics +1004.2361 +1004.5394 +1005.0492 Strongly Correlated Electrons +1005.3528 Functional Analysis +1005.4376 Physics and Society +1005.5093 Mesoscale and Nanoscale Physics +1006.0523 Number Theory +1006.3518 Mesoscale and Nanoscale Physics +1007.1429 Functional Analysis +1007.1440 Atomic Physics +1007.3302 Classical Analysis and ODEs +1007.3969 +1008.0914 Phenomenology +1008.0998 Instrumentation and Methods for Astrophysics +1008.2010 Strongly Correlated Electrons +1008.2128 +1008.4450 Mesoscale and Nanoscale Physics +1009.0236 Number Theory +1009.1321 Materials Science +1009.1344 Networking and Internet Architecture +1009.2231 Geophysics +1009.2464 Information Theory +1009.2502 Astrophysics of Galaxies +1009.2652 Quantum Algebra +1009.3025 Solar and Stellar Astrophysics +1009.3028 Solar and Stellar Astrophysics +1009.3029 Computer Vision and Pattern Recognition +1009.3035 Solar and Stellar Astrophysics +1009.3037 Solar and Stellar Astrophysics +1009.3042 Theory +1009.3043 Instrumentation and Methods for Astrophysics +1009.3044 Algebraic Topology +1009.3045 Methodology +1009.3048 Earth and Planetary Astrophysics +1009.3050 Accelerator Physics +1009.3053 History and Philosophy of Physics +1009.3055 Solar and Stellar Astrophysics +1009.3061 Differential Geometry +1009.3063 Dynamical Systems +1009.3064 +1009.3065 Category Theory +1009.3068 +1009.3072 Computation +1009.3075 +1009.3078 Computer Vision and Pattern Recognition +1009.3092 Materials Science +1009.3095 Operator Algebras +1009.3097 Plasma Physics +1009.3099 Physics and Society +1009.3108 Algebraic Geometry +1009.3113 Probability +1009.3115 Analysis of PDEs +1009.3117 Phenomenology +1009.3118 Optics +1009.3121 +1009.3123 Applications +1009.3124 Computational Complexity +1009.3128 Complex Variables +1009.3131 Statistical Mechanics +1009.3141 Classical Analysis and ODEs +1009.3144 Algebraic Geometry +1009.3147 Numerical Analysis +1009.3148 Analysis of PDEs +1009.3150 Populations and Evolution +1009.3153 Differential Geometry +1009.3155 Molecular Networks +1009.3156 Molecular Networks +1009.3158 Analysis of PDEs +1009.3160 Logic +1009.3161 Biomolecules +1009.3162 Strongly Correlated Electrons +1009.3166 Analysis of PDEs +1009.3168 Statistics Theory +1009.3174 Programming Languages +1009.3176 Theory +1009.3178 Pattern Formation and Solitons +1009.3179 Differential Geometry +1009.3184 Mesoscale and Nanoscale Physics +1009.3190 Solar and Stellar Astrophysics +1009.3197 Solar and Stellar Astrophysics +1009.3198 Number Theory +1009.3200 Representation Theory +1009.3201 Geometric Topology +1009.3203 Methodology +1009.3207 Geometric Topology +1009.3216 Combinatorics +1009.3218 Plasma Physics +1009.3219 Algebraic Geometry +1009.3230 Algebraic Geometry +1009.3235 K-Theory and Homology +1009.3238 Computation and Language +1009.3252 Fluid Dynamics +1009.3253 Information Theory +1009.3264 Theory +cond-mat/0308058 Strongly Correlated Electrons +cond-mat/0310569 +cond-mat/0602347 Strongly Correlated Electrons +cond-mat/0603254 Mesoscale and Nanoscale Physics +hep-th/0003202 Theory +hep-th/0208118 Theory +math/0206015 Differential Geometry +nlin/0008007 Exactly Solvable and Integrable Systems +nlin/0507029 Pattern Formation and Solitons +physics/0201035 Classical Physics +q-bio/0701011 Molecular Networks +0705.2633 Chaotic Dynamics +0708.0618 Probability +0803.3652 Quantum Algebra +0804.3134 Number Theory +0805.0470 Strongly Correlated Electrons +0810.2767 Representation Theory +0812.4557 Probability +0901.2044 Statistics Theory +0901.4056 Combinatorics +0903.2177 Logic in Computer Science +0904.4871 Probability +0905.0040 Differential Geometry +0906.2094 Probability +0907.2701 Combinatorics +0907.3911 +0907.5344 Solar and Stellar Astrophysics +0908.1124 Classical Physics +0908.3298 Algebraic Topology +0908.3863 Commutative Algebra +0908.4305 Quantum Algebra +0909.4023 +0910.3193 Combinatorics +0911.2980 +0911.4265 Differential Geometry +0911.4689 Differential Geometry +0911.5180 +0912.4389 Data Analysis, Statistics and Probability +1002.0164 Functional Analysis +1002.0639 Functional Analysis +1002.1544 Probability +1002.2781 Probability +1003.1161 +1003.1534 Mesoscale and Nanoscale Physics +1003.5738 Mesoscale and Nanoscale Physics +1004.1157 +1004.1658 Superconductivity +1005.0001 Strongly Correlated Electrons +1005.0003 +1005.0573 Superconductivity +1005.1580 Mesoscale and Nanoscale Physics +1005.1604 +1005.4646 Phenomenology +1005.4775 Number Theory +1005.5121 Mesoscale and Nanoscale Physics +1006.2035 Phenomenology +1006.4510 Analysis of PDEs +1006.4573 Theory +1007.1941 +1007.3097 Phenomenology +1007.3828 Quantum Gases +1007.3866 Superconductivity +1007.3982 +1007.4740 Methodology +1008.0252 +1008.1214 Theory +1008.1776 +1008.2119 +1008.2267 Networking and Internet Architecture +1008.2444 Quantum Gases +1008.2687 Superconductivity +1008.3331 Statistical Mechanics +1008.3532 Superconductivity +1009.0560 +1009.4539 Cosmology and Nongalactic Astrophysics +1010.0138 Atomic Physics +1010.0325 Networking and Internet Architecture +1010.0478 Mesoscale and Nanoscale Physics +1010.2020 +1010.2548 +1010.2709 Algebraic Geometry +1010.3620 +1010.3777 Analysis of PDEs +1010.3979 Group Theory +1010.4305 Functional Analysis +1010.4306 Cosmology and Nongalactic Astrophysics +1010.4314 Computer Vision and Pattern Recognition +1010.4316 Rings and Algebras +1010.4320 General Mathematics +1010.4328 Quantitative Methods +1010.4331 History and Overview +1010.4336 Phenomenology +1010.4340 Group Theory +1010.4343 Functional Analysis +1010.4344 Differential Geometry +1010.4346 Functional Analysis +1010.4347 Instrumentation and Methods for Astrophysics +1010.4349 Group Theory +1010.4351 Analysis of PDEs +1010.4362 +1010.4363 Data Analysis, Statistics and Probability +1010.4368 Functional Analysis +1010.4371 Other Condensed Matter +1010.4375 Fluid Dynamics +1010.4381 Statistics Theory +1010.4383 Mesoscale and Nanoscale Physics +1010.4385 Artificial Intelligence +1010.4390 Superconductivity +1010.4391 Superconductivity +1010.4392 Differential Geometry +1010.4393 Mesoscale and Nanoscale Physics +1010.4399 Fluid Dynamics +1010.4401 High Energy Astrophysical Phenomena +1010.4404 Instrumentation and Methods for Astrophysics +1010.4408 Learning +1010.4410 Statistical Mechanics +1010.4417 Materials Science +1010.4421 Materials Science +1010.4425 Number Theory +1010.4432 Number Theory +1010.4436 Combinatorics +1010.4444 Analysis of PDEs +1010.4445 Solar and Stellar Astrophysics +1010.4447 Probability +1010.4450 Combinatorics +1010.4456 Mesoscale and Nanoscale Physics +1010.4459 Biomolecules +1010.4460 Category Theory +1010.4466 Learning +1010.4469 Number Theory +1010.4475 Networking and Internet Architecture +1010.4486 Representation Theory +1010.4487 Complex Variables +1010.4490 Biomolecules +1010.4494 Mesoscale and Nanoscale Physics +1010.4502 Data Structures and Algorithms +1010.4503 Statistical Mechanics +1010.4515 Probability +1010.4522 Functional Analysis +1010.4524 Disordered Systems and Neural Networks +1010.4529 Logic in Computer Science +1010.4530 Analysis of PDEs +1010.4531 Statistical Mechanics +1010.4533 Programming Languages +1010.4534 Statistical Mechanics +1010.4537 Statistical Mechanics +1010.4539 Statistical Mechanics +1010.4541 Statistical Mechanics +1010.4545 Quantum Gases +1010.4546 Quantum Algebra +1010.4547 Strongly Correlated Electrons +1010.4559 Phenomenology +1010.4560 Mesoscale and Nanoscale Physics +math/0202081 Algebraic Topology +nlin/0601051 Chaotic Dynamics +nucl-th/0412036 +0704.3284 Pattern Formation and Solitons +0705.1324 Other Condensed Matter +0706.3361 Other Condensed Matter +0707.1205 Other Condensed Matter +0709.2193 Other Condensed Matter +0710.5921 Other Condensed Matter +0711.0375 Other Condensed Matter +0711.3102 Other Condensed Matter +0711.3116 +0801.3428 Other Condensed Matter +0805.0761 Other Condensed Matter +0806.1087 Pattern Formation and Solitons +0807.2981 Functional Analysis +0809.3317 Spectral Theory +0812.0662 Pattern Formation and Solitons +0901.3727 +0904.0031 Group Theory +0906.3076 Probability +0906.4479 Symplectic Geometry +0906.5560 Probability +0907.2055 Dynamical Systems +0908.4094 Information Theory +0910.0663 Computational Engineering, Finance, and Science +0911.0369 Analysis of PDEs +0911.1446 Analysis of PDEs +0911.4678 Quantum Gases +0911.4727 Probability +0912.1495 Metric Geometry +0912.3139 Statistical Mechanics +0912.3732 Probability +1001.0341 Genomics +1001.1813 Quantum Algebra +1001.5258 Molecular Networks +1002.0693 Cosmology and Nongalactic Astrophysics +1002.2603 Other Condensed Matter +1003.0390 +1003.2006 +1003.2725 Differential Geometry +1003.5795 Differential Geometry +1003.6037 Quantum Gases +1004.0521 Commutative Algebra +1004.1298 Formal Languages and Automata Theory +1004.3130 Differential Geometry +1004.3548 Cosmology and Nongalactic Astrophysics +1005.4259 Representation Theory +1005.4537 Probability +1005.4818 Solar and Stellar Astrophysics +1006.0877 Cosmology and Nongalactic Astrophysics +1006.1219 Phenomenology +1006.1283 +1006.4365 Astrophysics of Galaxies +1006.4607 Data Structures and Algorithms +1006.4982 Soft Condensed Matter +1007.1451 High Energy Astrophysical Phenomena +1007.1687 +1007.2833 Analysis of PDEs +1007.4033 Atomic Physics +1007.4713 Superconductivity +1008.0650 Mesoscale and Nanoscale Physics +1008.1249 Disordered Systems and Neural Networks +1008.3249 Superconductivity +1008.3871 Analysis of PDEs +1008.4281 Classical Physics +1009.2868 Chemical Physics +1009.2878 +1010.1646 Statistical Mechanics +1010.3739 Quantum Gases +1010.4253 Learning +1011.0654 Mesoscale and Nanoscale Physics +1011.1362 Group Theory +1011.1748 Classical Analysis and ODEs +1011.3660 Lattice +1011.4298 Astrophysics of Galaxies +1012.1396 +1012.1622 +1012.1688 Group Theory +1012.1807 Materials Science +1012.1815 Theory +1012.1845 Strongly Correlated Electrons +1012.1856 Solar and Stellar Astrophysics +1012.1857 Solar and Stellar Astrophysics +1012.1875 Solar and Stellar Astrophysics +1012.1878 Computational Finance +1012.1879 Applications +1012.1882 Multimedia +1012.1883 Earth and Planetary Astrophysics +1012.1884 Classical Analysis and ODEs +1012.1889 Algebraic Geometry +1012.1890 Statistics Theory +1012.1894 Quantitative Methods +1012.1898 Databases +1012.1899 Artificial Intelligence +1012.1907 Lattice +1012.1909 Information Theory +1012.1912 Information Theory +1012.1921 Geometric Topology +1012.1923 Group Theory +1012.1933 +1012.1935 +1012.1943 Robotics +1012.1944 Materials Science +1012.1945 Optimization and Control +1012.1946 Combinatorics +1012.1948 Robotics +1012.1949 Category Theory +1012.1952 High Energy Astrophysical Phenomena +1012.1953 Numerical Analysis +1012.1956 Quantum Algebra +1012.1974 Populations and Evolution +1012.1979 Solar and Stellar Astrophysics +1012.1980 Data Analysis, Statistics and Probability +1012.1983 Disordered Systems and Neural Networks +1012.1986 Differential Geometry +1012.1993 +1012.2001 Differential Geometry +1012.2014 Earth and Planetary Astrophysics +1012.2017 Commutative Algebra +1012.2019 Digital Libraries +1012.2020 Complex Variables +1012.2024 Materials Science +1012.2025 Cell Behavior +1012.2027 +1012.2031 Chaotic Dynamics +1012.2034 Computational Complexity +1012.2038 Probability +1012.2040 Logic +1012.2042 Computation and Language +1012.2044 Lattice +1012.2046 Logic +1012.2049 Group Theory +1012.2055 Differential Geometry +1012.2056 Metric Geometry +1012.2061 Functional Analysis +1012.2064 High Energy Astrophysical Phenomena +1012.2066 +1012.2071 Number Theory +1012.2073 Information Theory +1012.2081 Combinatorics +1012.2082 Solar and Stellar Astrophysics +1012.2086 Information Theory +1012.2089 Combinatorics +1012.2093 Algebraic Geometry +1012.2096 Networking and Internet Architecture +1012.2106 Lattice +chao-dyn/9612016 Chaotic Dynamics +cond-mat/0406729 Other Condensed Matter +cond-mat/0501030 Other Condensed Matter +cond-mat/0501031 Other Condensed Matter +cond-mat/0501680 Soft Condensed Matter +cond-mat/0503227 Other Condensed Matter +cond-mat/0611487 Other Condensed Matter +cond-mat/0611759 Mesoscale and Nanoscale Physics +cond-mat/0701435 Soft Condensed Matter +hep-ph/0306145 Phenomenology +hep-ph/0306255 Phenomenology +math/0510466 Spectral Theory +math/0606153 Functional Analysis +math/0607062 Functional Analysis +nlin/0507048 Pattern Formation and Solitons +nlin/0605048 Pattern Formation and Solitons +nlin/0607063 Pattern Formation and Solitons +0705.0315 Networking and Internet Architecture +0707.1462 Probability +0707.2383 Superconductivity +0708.3157 Symplectic Geometry +0805.0629 Metric Geometry +0809.0932 +0810.3193 Probability +0811.0066 General Physics +0901.4349 +0902.0216 Probability +0904.3289 Atomic Physics +0905.0678 Superconductivity +0905.1059 +0905.1060 Solar and Stellar Astrophysics +0905.4318 Symplectic Geometry +0906.0231 Information Retrieval +0906.1631 Cosmology and Nongalactic Astrophysics +0907.5183 +0908.0997 +0908.1567 Phenomenology +0908.2597 Group Theory +0909.0668 Optics +0909.2545 Geometric Topology +0909.3811 Disordered Systems and Neural Networks +0909.5194 Machine Learning +0910.1033 Geometric Topology +0910.3796 Other Condensed Matter +0910.4064 Optics +0910.5337 Quantum Gases +0910.5745 Cryptography and Security +0911.1385 Theory +0911.2283 Mesoscale and Nanoscale Physics +0912.2559 Mesoscale and Nanoscale Physics +0912.3198 +0912.4493 Quantum Gases +1001.4717 Disordered Systems and Neural Networks +1002.2030 Materials Science +1002.3673 Earth and Planetary Astrophysics +1002.3927 Optics +1002.4367 Strongly Correlated Electrons +1002.4699 Earth and Planetary Astrophysics +1003.2319 +1003.3117 +1003.3495 Mesoscale and Nanoscale Physics +1003.4790 Quantum Gases +1004.1413 High Energy Astrophysical Phenomena +1004.2339 Strongly Correlated Electrons +1004.2956 Quantum Gases +1004.4090 Phenomenology +1004.4990 Strongly Correlated Electrons +1005.0070 Materials Science +1005.0428 Quantum Gases +1005.1156 Number Theory +1005.2791 Discrete Mathematics +1005.2918 History and Philosophy of Physics +1005.3544 Solar and Stellar Astrophysics +1006.1032 Digital Libraries +1006.2464 High Energy Astrophysical Phenomena +1006.4263 Operator Algebras +1006.4338 Optimization and Control +1007.0068 +1007.1602 Metric Geometry +1007.1736 Chemical Physics +1007.2054 Number Theory +1007.2089 Instrumentation and Methods for Astrophysics +1007.2212 Robotics +1007.2435 History and Philosophy of Physics +1007.2439 Solar and Stellar Astrophysics +1007.2440 Instrumentation and Detectors +1007.2442 Computer Vision and Pattern Recognition +1007.2443 Physics Education +1007.2445 Mesoscale and Nanoscale Physics +1007.2446 Differential Geometry +1007.2449 Learning +1007.2450 Machine Learning +1007.2453 Combinatorics +1007.2454 Combinatorics +1007.2456 Combinatorics +1007.2463 Materials Science +1007.2464 Fluid Dynamics +1007.2466 Fluid Dynamics +1007.2469 Probability +1007.2471 Instrumentation and Detectors +1007.2477 Group Theory +1007.2482 Analysis of PDEs +1007.2485 Fluid Dynamics +1007.2487 Cosmology and Nongalactic Astrophysics +1007.2489 Differential Geometry +1007.2493 Dynamical Systems +1007.2503 Data Structures and Algorithms +1007.2506 Fluid Dynamics +1007.2508 Commutative Algebra +1007.2516 Probability +1007.2519 Dynamical Systems +1007.2521 Geometric Topology +1007.2522 Instrumentation and Detectors +1007.2523 Differential Geometry +1007.2525 Optics +1007.2526 Phenomenology +1007.2528 Optics +1007.2530 Optics +1007.2540 Solar and Stellar Astrophysics +1007.2542 Algebraic Geometry +1007.2545 Physics and Society +1007.2553 Instrumentation and Detectors +1007.2557 High Energy Astrophysical Phenomena +1007.2558 +1007.2560 Theory +1007.2569 Differential Geometry +1007.2570 Complex Variables +1007.2576 Quantitative Methods +1007.2579 Quantum Algebra +1007.2596 +1007.2600 Cosmology and Nongalactic Astrophysics +1007.2603 +1007.2612 Statistics Theory +1007.2627 Differential Geometry +1007.2634 Instrumentation and Detectors +1007.2636 Phenomenology +1007.2639 Combinatorics +1007.2640 +cond-mat/0305189 Strongly Correlated Electrons +cond-mat/0402262 Strongly Correlated Electrons +cond-mat/0403332 Strongly Correlated Electrons +cond-mat/0505768 Other Condensed Matter +cond-mat/0511298 Strongly Correlated Electrons +cond-mat/0606001 Superconductivity +cond-mat/0607137 Strongly Correlated Electrons +cond-mat/0607398 Materials Science +math-ph/0510081 +math/0610280 Differential Geometry +math/0703905 Classical Analysis and ODEs +0706.0128 +0706.3887 +0709.0998 Differential Geometry +0711.1258 Probability +0711.3784 General Mathematics +0712.2741 Disordered Systems and Neural Networks +0712.3318 +0804.2769 Strongly Correlated Electrons +0804.4089 Classical Physics +0805.1937 Mesoscale and Nanoscale Physics +0805.2766 Quantum Algebra +0806.1177 Strongly Correlated Electrons +0806.2377 Algebraic Geometry +0807.1960 Representation Theory +0807.4319 Phenomenology +0808.1148 Mesoscale and Nanoscale Physics +0808.2608 Probability +0810.0029 Neurons and Cognition +0810.2456 Group Theory +0810.3729 Information Theory +0810.4046 Group Theory +0811.1330 Algebraic Topology +0811.2148 +0812.1603 Quantum Algebra +0812.2623 Dynamical Systems +0812.4942 Quantum Algebra +0901.1924 Information Theory +0901.2444 +0901.2684 Information Theory +0901.3091 Strongly Correlated Electrons +0901.3197 Information Theory +0901.3956 Geometric Topology +0901.4192 Information Theory +0902.0762 Probability +0902.1293 Dynamical Systems +0902.2334 Algebraic Topology +0902.4577 Information Theory +0903.2536 Group Theory +0903.3590 Mesoscale and Nanoscale Physics +0903.5203 +0904.1493 +0904.4204 Algebraic Geometry +0905.1304 Combinatorics +0905.3448 Theory +0906.1065 Number Theory +0906.1682 Strongly Correlated Electrons +0906.1740 Strongly Correlated Electrons +0906.1745 Strongly Correlated Electrons +0907.1261 Mesoscale and Nanoscale Physics +0907.2587 Probability +0908.1716 Cosmology and Nongalactic Astrophysics +0908.1751 Functional Analysis +0908.3928 Cosmology and Nongalactic Astrophysics +0909.0769 Superconductivity +0909.2016 Theory +0909.4104 Mesoscale and Nanoscale Physics +0909.5489 Superconductivity +0910.1322 Strongly Correlated Electrons +0910.2727 Mesoscale and Nanoscale Physics +0910.4165 Quantum Gases +0910.4672 Materials Science +0910.5826 Lattice +0911.1400 Mesoscale and Nanoscale Physics +0911.2141 Strongly Correlated Electrons +0911.4423 Probability +0911.4465 Chaotic Dynamics +0912.3300 Quantum Gases +1001.1751 Superconductivity +1001.2187 Methodology +1001.4643 Cosmology and Nongalactic Astrophysics +1001.5354 Dynamical Systems +1002.0785 Optics +1002.2407 Analysis of PDEs +1002.3060 Solar and Stellar Astrophysics +1002.4046 Learning +1002.4047 Cryptography and Security +1002.4048 Information Retrieval +1002.4049 Multimedia +1002.4879 Cosmology and Nongalactic Astrophysics +1002.4942 Mesoscale and Nanoscale Physics +1003.0889 Risk Management +1003.1073 Cosmology and Nongalactic Astrophysics +1003.1797 Representation Theory +1003.2147 +1003.2279 Fluid Dynamics +1003.2301 K-Theory and Homology +1003.2616 Cryptography and Security +1003.2812 Algebraic Geometry +1003.3079 Numerical Analysis +1003.3357 Computation +1003.3507 Information Theory +1003.3538 Phenomenology +1003.3649 Discrete Mathematics +1003.3728 Statistical Mechanics +1003.3871 Algebraic Geometry +1003.3876 Strongly Correlated Electrons +1003.3881 Theory +1003.3882 Astrophysics of Galaxies +1003.3884 Cosmology and Nongalactic Astrophysics +1003.3888 Solar and Stellar Astrophysics +1003.3892 Mesoscale and Nanoscale Physics +1003.3893 Cryptography and Security +1003.3895 Optimization and Control +1003.3906 Atomic Physics +1003.3907 +1003.3908 Information Theory +1003.3909 Networking and Internet Architecture +1003.3911 High Energy Astrophysical Phenomena +1003.3915 Combinatorics +1003.3916 Biological Physics +1003.3917 Chemical Physics +1003.3920 Distributed, Parallel, and Cluster Computing +1003.3921 Earth and Planetary Astrophysics +1003.3928 +1003.3934 Differential Geometry +1003.3937 Popular Physics +1003.3939 Functional Analysis +1003.3943 Phenomenology +1003.3956 Combinatorics +1003.3957 Probability +1003.3958 Statistical Mechanics +1003.3959 Group Theory +1003.3960 +1003.3969 Earth and Planetary Astrophysics +1003.3972 Commutative Algebra +1003.3974 Commutative Algebra +1003.3979 +1003.3980 Dynamical Systems +1003.3981 Solar and Stellar Astrophysics +1003.3982 Functional Analysis +1003.3983 Fluid Dynamics +1003.3985 Computer Vision and Pattern Recognition +1003.3986 Combinatorics +1003.3988 Methodology +1003.3989 Differential Geometry +1003.3996 Networking and Internet Architecture +1003.4001 Combinatorics +1003.4003 Probability +1003.4009 Commutative Algebra +1003.4011 +1003.4013 Metric Geometry +1003.4016 Discrete Mathematics +1003.4019 Optics +1003.4021 Computer Vision and Pattern Recognition +1003.4024 General Topology +1003.4035 Symplectic Geometry +1003.4036 Graphics +1003.4037 Physics Education +1003.4038 Experiment +1003.4039 Number Theory +1003.4041 Materials Science +1003.4043 Theory +1003.4049 Multimedia +1003.4051 Classical Analysis and ODEs +1003.4053 Computer Vision and Pattern Recognition +1003.4056 Metric Geometry +1003.4057 Information Theory +1003.4058 Mesoscale and Nanoscale Physics +1003.4062 Performance +1003.4063 Networking and Internet Architecture +1003.4064 Performance +1003.4066 Distributed, Parallel, and Cluster Computing +1003.4067 Information Retrieval +1003.4068 Databases +1003.4070 Networking and Internet Architecture +1003.4071 Cryptography and Security +1003.4072 Number Theory +1003.4073 Networking and Internet Architecture +1003.4074 Distributed, Parallel, and Cluster Computing +1003.4075 Robotics +1003.4076 Databases +1003.4078 Networking and Internet Architecture +1003.4080 Networking and Internet Architecture +1003.4081 Neural and Evolutionary Computing +1003.4083 Multimedia +1003.4084 Multimedia +1003.4085 Cryptography and Security +1003.4086 Cryptography and Security +1003.4087 Computer Vision and Pattern Recognition +1003.4088 Operating Systems +1003.4095 Group Theory +1003.4099 Statistical Mechanics +1003.4102 Logic +1003.4103 Solar and Stellar Astrophysics +1003.4104 Superconductivity +1003.4105 Formal Languages and Automata Theory +1003.4106 Algebraic Geometry +1003.4110 Dynamical Systems +1003.4111 Number Theory +1003.4114 Chemical Physics +1003.4117 Probability +1003.4118 Computational Finance +1003.4119 Cosmology and Nongalactic Astrophysics +1003.4120 +1003.4121 Analysis of PDEs +1003.4123 +1003.4124 High Energy Astrophysical Phenomena +1003.4131 Physics and Society +1003.4136 Group Theory +1003.4137 Group Theory +1003.4139 K-Theory and Homology +1003.4156 Methodology +1003.4157 Fluid Dynamics +1003.4158 Cosmology and Nongalactic Astrophysics +1003.4159 +1003.4162 Representation Theory +1003.4167 Solar and Stellar Astrophysics +1003.4172 Analysis of PDEs +1003.4178 Differential Geometry +1003.4179 Metric Geometry +1003.4180 Medical Physics +1003.4182 Analysis of PDEs +1003.4183 Probability +1003.4192 Earth and Planetary Astrophysics +1003.4194 Solar and Stellar Astrophysics +1003.4201 Algebraic Geometry +1003.4207 Solar and Stellar Astrophysics +1003.4208 Solar and Stellar Astrophysics +1003.4210 Solar and Stellar Astrophysics +1003.4212 Popular Physics +1003.4220 Experiment +1003.4228 Solar and Stellar Astrophysics +1003.4235 Cosmology and Nongalactic Astrophysics +1003.4236 Algebraic Topology +1003.4239 Populations and Evolution +1003.4242 Differential Geometry +1003.4243 Solar and Stellar Astrophysics +1003.4245 +1003.4247 Differential Geometry +1003.4254 Statistics Theory +cond-mat/0410041 Strongly Correlated Electrons +cond-mat/0507157 Strongly Correlated Electrons +cond-mat/0512023 Strongly Correlated Electrons +cond-mat/0602524 Strongly Correlated Electrons +cond-mat/0605200 Strongly Correlated Electrons +cond-mat/0612100 Strongly Correlated Electrons +gr-qc/0609054 +math-ph/0701043 +math/0204234 Classical Analysis and ODEs +math/0503712 Statistics Theory +math/0510489 Algebraic Geometry +math/0605244 Number Theory +math/0610144 Differential Geometry +math/0610750 Probability +math/0611119 Dynamical Systems +nucl-ex/0703023 +physics/0604046 Chemical Physics +q-bio/0612037 Tissues and Organs +0706.2491 Rings and Algebras +0706.2882 Superconductivity +0707.2104 Superconductivity +0707.3747 Number Theory +0712.0869 +0803.2330 +0804.2332 Soft Condensed Matter +0806.1951 +0808.3703 Theory +0810.4255 Phenomenology +0810.5685 Symbolic Computation +0811.3478 +0812.3381 Computational Finance +0901.0023 General Physics +0901.2945 Quantum Gases +0901.4808 Other Condensed Matter +0902.0065 Classical Analysis and ODEs +0902.1975 Group Theory +0902.2664 Superconductivity +0904.2640 Other Condensed Matter +0906.1913 Complex Variables +0907.3608 +0908.0090 Classical Physics +0908.4151 Theory +0908.4281 +0909.2207 Strongly Correlated Electrons +0909.2359 +0909.2759 Phenomenology +0909.3466 Computational Complexity +0909.3755 Combinatorics +0909.5631 +0910.1457 Phenomenology +0910.3268 Quantum Gases +0911.1636 +0911.3191 Lattice +0911.3436 +0911.4962 Combinatorics +0911.5634 Phenomenology +0911.5727 Cosmology and Nongalactic Astrophysics +0912.0036 +0912.0503 +0912.1946 Phenomenology +0912.5213 Quantum Gases +0912.5392 Differential Geometry +1001.0014 Phenomenology +1001.0112 Theory +1001.3100 Fluid Dynamics +1003.4316 Mesoscale and Nanoscale Physics +1004.1448 Strongly Correlated Electrons +1004.4014 Numerical Analysis +1004.5577 Other Condensed Matter +1005.0459 Theory +1005.1550 Strongly Correlated Electrons +1005.2431 Theory +1005.3277 Mesoscale and Nanoscale Physics +1005.4690 Theory +1005.5403 Theory +1005.5560 +1006.0232 +1006.1597 Probability +1006.1797 Differential Geometry +1006.2042 Quantum Gases +1006.2448 +1006.2681 +1006.3117 Complex Variables +1006.3189 Theory +1006.3343 Statistical Mechanics +1006.4090 Theory +1006.5225 Functional Analysis +1007.2357 Superconductivity +1007.2662 +1007.2687 Mesoscale and Nanoscale Physics +1007.3140 +1007.3265 Astrophysics of Galaxies +1007.3679 Disordered Systems and Neural Networks +1007.4142 Theory +1007.4949 Theory +1007.4966 Mesoscale and Nanoscale Physics +1007.5416 Materials Science +1008.0098 Phenomenology +1008.0151 Instrumentation and Detectors +1008.0800 Phenomenology +1008.1070 Theory +1008.1722 +1008.1741 Superconductivity +1008.2212 +1008.2945 Quantum Gases +1008.3393 Accelerator Physics +1008.3453 Theory +1008.3837 Phenomenology +1008.4077 Instrumentation and Detectors +1008.4961 Statistical Mechanics +1009.0091 Materials Science +1009.0974 Representation Theory +1009.1129 +1009.1440 +1009.1552 Quantum Gases +1009.2906 +1009.3317 Mesoscale and Nanoscale Physics +1009.3399 Phenomenology +1009.3548 Phenomenology +1009.3641 Instrumentation and Detectors +1009.3696 Theory +1009.3783 Lattice +1009.3851 Strongly Correlated Electrons +1009.4762 +1009.4775 General Physics +1009.4784 Theory +1009.4805 +1009.6130 +1010.0611 Statistical Mechanics +1010.1631 Statistical Mechanics +1010.2601 Number Theory +1010.2829 Populations and Evolution +1010.5367 +1010.5955 +1010.6156 +1011.0024 Lattice +1011.0827 Combinatorics +1011.1022 Functional Analysis +1011.2141 Superconductivity +1011.6013 Optimization and Control +1012.0024 Analysis of PDEs +1012.0550 Representation Theory +1012.0556 Computational Complexity +1012.0585 History and Overview +1012.0587 High Energy Astrophysical Phenomena +1012.0607 Statistical Mechanics +1012.0610 Cryptography and Security +1012.0636 Probability +1012.0637 Statistics Theory +1012.0646 Astrophysics of Galaxies +1012.0647 +1012.0657 Other Condensed Matter +1012.0662 Computational Physics +1012.0663 Databases +1012.0672 Cellular Automata and Lattice Gases +1012.0674 Cellular Automata and Lattice Gases +1012.0679 Differential Geometry +1012.0683 Phenomenology +1012.0684 Systems and Control +1012.0685 Differential Geometry +1012.0687 Analysis of PDEs +1012.0689 Analysis of PDEs +1012.0696 Probability +1012.0697 Computational Physics +1012.0699 +1012.0701 Materials Science +1012.0704 Spectral Theory +1012.0707 Solar and Stellar Astrophysics +1012.0723 Lattice +1012.0729 Computational Complexity +1012.0734 Biological Physics +1012.0742 Artificial Intelligence +1012.0743 Cosmology and Nongalactic Astrophysics +1012.0756 +1012.0759 Cryptography and Security +1012.0766 Mesoscale and Nanoscale Physics +1012.0769 High Energy Astrophysical Phenomena +1012.0776 +1012.0777 +1012.0785 Materials Science +1012.0794 Analysis of PDEs +1012.0795 Symplectic Geometry +1012.0809 Theory +1012.0817 Probability +1012.0822 Quantum Algebra +1012.0825 Strongly Correlated Electrons +1012.0826 Probability +1012.0829 Materials Science +1012.0830 Artificial Intelligence +1012.0837 Probability +astro-ph/0509472 +astro-ph/0512123 +astro-ph/0606093 +astro-ph/0608136 +cond-mat/0003334 Superconductivity +cond-mat/0404115 Superconductivity +cond-mat/0505073 Superconductivity +cond-mat/0506497 Other Condensed Matter +gr-qc/0612063 +hep-th/0611132 Theory +nlin/0511011 Chaotic Dynamics +nucl-ex/0611010 +physics/0302071 Physics and Society +0705.2676 Theory +0707.0853 Differential Geometry +0707.2071 +0708.1919 Combinatorics +0710.2963 +0710.3392 Quantum Algebra +0710.4952 Number Theory +0711.2793 Exactly Solvable and Integrable Systems +0712.0997 +0712.2480 Probability +0712.3649 Combinatorics +0801.1899 Complex Variables +0803.0648 +0803.3486 Quantum Algebra +0805.0067 Combinatorics +0807.1590 Materials Science +0807.1821 +0807.2406 Quantum Algebra +0808.1667 Algebraic Topology +0808.3146 Materials Science +0809.4405 +0810.1544 Neurons and Cognition +0811.2582 +0901.2091 Probability +0901.2460 History and Overview +0901.2806 Theory +0901.4686 Metric Geometry +0902.1699 Instrumentation and Detectors +0902.1700 Discrete Mathematics +0902.2245 Theory +0903.3127 Artificial Intelligence +0904.2016 Cosmology and Nongalactic Astrophysics +0905.0380 Differential Geometry +0905.3337 +0906.4532 Mesoscale and Nanoscale Physics +0909.2337 +0910.0361 Plasma Physics +0910.1659 +0910.3868 +0910.4898 Theory +0910.5076 Information Theory +0910.5252 Mesoscale and Nanoscale Physics +0911.0204 Materials Science +0911.1617 Theory +0911.3230 Theory +0911.4137 Mesoscale and Nanoscale Physics +0912.0122 +0912.0576 Algebraic Geometry +0912.3063 Superconductivity +0912.3134 Computational Complexity +0912.4049 General Mathematics +0912.4132 +0912.4473 Learning +0912.5502 Computer Vision and Pattern Recognition +1001.0840 Plasma Physics +1001.0918 Statistical Mechanics +1001.3989 +1002.0628 Combinatorics +1002.1501 Pattern Formation and Solitons +1002.2150 Soft Condensed Matter +1002.3124 Differential Geometry +1002.3130 Functional Analysis +1002.4101 Cosmology and Nongalactic Astrophysics +1002.4218 Materials Science +1002.4453 Information Theory +1003.0873 +1003.2019 Complex Variables +1003.2223 Number Theory +1003.3061 +1003.4656 +1003.4859 Materials Science +1004.0257 Soft Condensed Matter +1004.0424 Data Structures and Algorithms +1004.0584 Algebraic Geometry +1004.1633 +1004.2315 +1004.3406 Combinatorics +1004.3988 Cosmology and Nongalactic Astrophysics +1005.0339 +1005.0357 Atomic Physics +1005.0607 +1005.1850 Phenomenology +1005.3992 Mathematical Software +1005.4803 Physics and Society +1005.4885 Analysis of PDEs +1005.5417 Probability +1006.0680 Materials Science +1006.0745 Combinatorics +1006.1555 +1006.2450 Combinatorics +1006.2769 Information Theory +1006.3025 Number Theory +1006.4229 Algebraic Topology +1006.4454 Optics +1006.4750 Probability +1006.4761 +1006.4775 Experiment +1006.4819 +1006.5056 Plasma Physics +1006.5059 Information Retrieval +1006.5064 K-Theory and Homology +1006.5072 Phenomenology +1006.5074 Number Theory +1006.5076 Lattice +1006.5078 Optics +1006.5079 Solar and Stellar Astrophysics +1006.5081 Instrumentation and Methods for Astrophysics +1006.5082 Instrumentation and Methods for Astrophysics +1006.5083 Instrumentation and Methods for Astrophysics +1006.5085 Materials Science +1006.5086 Computation +1006.5091 Functional Analysis +1006.5092 Complex Variables +1006.5094 Logic in Computer Science +1006.5095 Performance +1006.5096 Logic in Computer Science +1006.5097 Computer Science and Game Theory +1006.5098 Logic in Computer Science +1006.5099 Computational Engineering, Finance, and Science +1006.5100 Logic in Computer Science +1006.5101 Logic in Computer Science +1006.5102 Logic in Computer Science +1006.5103 Formal Languages and Automata Theory +1006.5104 Performance +1006.5105 Number Theory +1006.5107 Programming Languages +1006.5111 Data Analysis, Statistics and Probability +1006.5113 Networking and Internet Architecture +1006.5120 Group Theory +1006.5124 Algebraic Geometry +1006.5127 Algebraic Geometry +1006.5128 Quantum Algebra +1006.5129 Combinatorics +1006.5130 Numerical Analysis +1006.5133 +1006.5140 Complex Variables +1006.5141 Functional Analysis +1006.5142 Number Theory +1006.5143 Number Theory +1006.5151 Cosmology and Nongalactic Astrophysics +1006.5154 Astrophysics of Galaxies +1006.5156 Algebraic Geometry +1006.5161 Biological Physics +1006.5170 Applications +1006.5171 Mesoscale and Nanoscale Physics +1006.5175 Representation Theory +1006.5184 Astrophysics of Galaxies +1006.5186 Quantum Gases +1006.5188 Artificial Intelligence +1006.5191 General Physics +1006.5204 Group Theory +1006.5207 Optimization and Control +1006.5212 Representation Theory +1006.5222 General Physics +1006.5227 +1006.5229 Group Theory +1006.5230 Trading and Market Microstructure +1006.5233 Spectral Theory +1006.5236 Representation Theory +1006.5238 Chaotic Dynamics +1006.5241 +1006.5252 Numerical Analysis +1006.5253 Earth and Planetary Astrophysics +1006.5255 Phenomenology +1006.5259 Solar and Stellar Astrophysics +1006.5261 Databases +1006.5263 Multiagent Systems +1006.5265 Information Theory +1006.5266 Algebraic Geometry +1006.5267 Differential Geometry +1006.5268 Phenomenology +1006.5272 +1006.5274 High Energy Astrophysical Phenomena +1006.5279 Strongly Correlated Electrons +1006.5280 Combinatorics +1006.5285 General Topology +1006.5290 Other Condensed Matter +1006.5292 Mesoscale and Nanoscale Physics +1006.5293 Physics and Society +1006.5294 Differential Geometry +1006.5295 Algebraic Geometry +1006.5296 Cosmology and Nongalactic Astrophysics +1006.5298 Complex Variables +1006.5306 Algebraic Geometry +1006.5309 Distributed, Parallel, and Cluster Computing +1006.5310 Analysis of PDEs +1006.5311 Numerical Analysis +1006.5315 Algebraic Geometry +1006.5316 Probability +1006.5321 Cosmology and Nongalactic Astrophysics +1006.5326 Differential Geometry +1006.5327 Atmospheric and Oceanic Physics +1006.5332 Superconductivity +1006.5337 Instrumentation and Detectors +1006.5342 General Physics +1006.5344 Cosmology and Nongalactic Astrophysics +1006.5346 Superconductivity +1006.5350 Fluid Dynamics +1006.5354 Data Structures and Algorithms +1006.5357 K-Theory and Homology +1006.5358 Theory +1006.5360 Analysis of PDEs +1006.5363 +1006.5374 General Physics +1006.5375 Theory +1006.5376 Distributed, Parallel, and Cluster Computing +1006.5378 Operator Algebras +1006.5381 Cryptography and Security +1006.5383 Strongly Correlated Electrons +1006.5384 Geometric Topology +1006.5385 Optimization and Control +1006.5388 Analysis of PDEs +1006.5401 Phenomenology +1006.5403 Geometric Topology +1006.5405 Materials Science +1006.5408 Medical Physics +1006.5413 Number Theory +1006.5414 Differential Geometry +1006.5415 Classical Analysis and ODEs +1006.5419 Theory +1006.5424 Instrumentation and Detectors +1006.5426 Experiment +1006.5427 Combinatorics +1006.5428 Numerical Analysis +1006.5431 Dynamical Systems +1006.5436 Networking and Internet Architecture +1006.5437 Other Condensed Matter +1006.5440 Data Structures and Algorithms +1006.5445 Information Theory +hep-th/0102107 Theory +math/0010146 Geometric Topology +math/0111270 Geometric Topology +math/0301066 Quantum Algebra +math/0311446 Number Theory +math/0404297 Number Theory +math/0406342 Rings and Algebras +math/0502157 Quantum Algebra +math/0505152 Algebraic Topology +math/0506132 Algebraic Geometry +math/0602497 Category Theory +math/0608647 Quantum Algebra +math/0608781 Quantum Algebra +math/0612631 Number Theory +math/0702559 Quantum Algebra +math/0703924 Quantum Algebra +physics/0703160 Data Analysis, Statistics and Probability +quant-ph/0207035 +quant-ph/0209135 +quant-ph/0302019 +quant-ph/0308144 +quant-ph/0402077 +quant-ph/0411104 +quant-ph/0506198 +quant-ph/0508159 +quant-ph/0509220 +quant-ph/0611228 +0704.1554 Operator Algebras +0710.4464 Representation Theory +0712.2614 Representation Theory +0801.2838 Discrete Mathematics +0804.1254 Rings and Algebras +0805.0481 Physics and Society +0805.2954 +0806.0144 +0806.2329 Geophysics +0806.2885 Data Analysis, Statistics and Probability +0806.2929 Geophysics +0807.1171 Phenomenology +0808.1202 Classical Analysis and ODEs +0808.4038 Differential Geometry +0809.4041 +0811.0208 Analysis of PDEs +0901.0969 Theory +0901.2785 Phenomenology +0901.4472 +0902.0629 Theory +0902.1447 Physics and Society +0902.2686 Dynamical Systems +0903.1128 Differential Geometry +0904.1104 Classical Analysis and ODEs +0905.4051 Spectral Theory +0906.0688 Mesoscale and Nanoscale Physics +0906.2046 Physics and Society +0906.2607 +0906.3881 Representation Theory +0907.0670 Rings and Algebras +0907.2755 Discrete Mathematics +0907.3324 Algebraic Geometry +0907.4842 Solar and Stellar Astrophysics +0908.2281 Rings and Algebras +0909.1962 Physics and Society +0909.2372 Geophysics +0909.3138 Probability +0909.4492 +0910.3211 Astrophysics of Galaxies +0910.5477 Algebraic Geometry +0911.4041 Analysis of PDEs +0912.4179 Experiment +1001.1681 Quantitative Methods +1001.1888 +1001.2227 Materials Science +1001.4037 Analysis of PDEs +1001.4212 Quantitative Methods +1001.4506 Phenomenology +1001.5340 Materials Science +1001.5458 Materials Science +1002.0792 Functional Analysis +1002.1069 Materials Science +1002.1284 Classical Physics +1003.1275 High Energy Astrophysical Phenomena +1003.5483 Phenomenology +1003.5514 Pricing of Securities +1004.0255 +1004.1332 Materials Science +1004.1951 Probability +1004.5366 Optimization and Control +1005.0994 Phenomenology +1005.3946 Phenomenology +1006.2241 Quantum Gases +1006.3045 Phenomenology +1007.0229 Adaptation and Self-Organizing Systems +1007.0423 Mesoscale and Nanoscale Physics +1007.0739 Statistical Mechanics +1007.0915 +1007.2529 Statistical Mechanics +1007.3090 Theory +1007.3147 Superconductivity +1007.3630 +1007.4395 Phenomenology +1007.4694 Earth and Planetary Astrophysics +1007.5059 Statistical Mechanics +1007.5451 Statistical Mechanics +1008.0064 Distributed, Parallel, and Cluster Computing +1008.0692 +1008.0971 +1008.2557 Combinatorics +1008.2782 Materials Science +1008.3459 Symbolic Computation +1008.3906 Solar and Stellar Astrophysics +1008.4006 Biomolecules +1008.4065 Superconductivity +1008.4704 Fluid Dynamics +1009.0185 Rings and Algebras +1009.0196 Rings and Algebras +1009.0984 +1009.1606 Experiment +1009.1875 Solar and Stellar Astrophysics +1009.4035 Mesoscale and Nanoscale Physics +1009.4111 Commutative Algebra +1010.0069 Mesoscale and Nanoscale Physics +1010.0782 Statistical Mechanics +1010.0821 Representation Theory +1010.1633 Mesoscale and Nanoscale Physics +1010.2398 Mesoscale and Nanoscale Physics +1010.2678 Materials Science +1010.4863 Number Theory +1010.5197 Data Structures and Algorithms +1010.5595 Computer Science and Game Theory +1011.1081 Physics and Society +1011.1992 Statistical Mechanics +1011.2576 Superconductivity +1011.3327 Applications +1011.4333 +1011.4370 Statistics Theory +1011.4372 Atomic Physics +1011.4391 Solar and Stellar Astrophysics +1011.4399 +1011.4561 Pattern Formation and Solitons +1011.4598 Information Theory +1011.4650 Solar and Stellar Astrophysics +1011.4783 Phenomenology +1011.4829 Information Theory +1011.4845 +1011.4881 Statistics Theory +1011.4942 Phenomenology +1011.4953 Phenomenology +1011.4955 Computational Geometry +1011.4960 Phenomenology +1011.4961 Differential Geometry +1011.4970 Cosmology and Nongalactic Astrophysics +1011.4974 Logic +1011.4980 Differential Geometry +1011.4990 General Topology +1011.4991 Portfolio Management +1011.4993 Optics +1011.4995 Astrophysics of Galaxies +1011.5001 Combinatorics +1011.5008 Combinatorics +1011.5012 +1011.5018 Symplectic Geometry +1011.5019 Quantum Gases +1011.5021 Networking and Internet Architecture +1011.5031 Classical Physics +1011.5043 Statistics Theory +1011.5045 Representation Theory +1011.5048 +1011.5056 Symplectic Geometry +1011.5062 Statistics Theory +1011.5064 Distributed, Parallel, and Cluster Computing +1011.5065 Information Theory +1011.5069 Exactly Solvable and Integrable Systems +1011.5072 Networking and Internet Architecture +1011.5081 Algebraic Geometry +1011.5083 Statistics Theory +1011.5087 Statistics Theory +1011.5100 Algebraic Geometry +1011.5102 High Energy Astrophysical Phenomena +1011.5113 Information Theory +1011.5115 Information Theory +1011.5119 Cellular Automata and Lattice Gases +1011.5122 Information Theory +1011.5123 Solar and Stellar Astrophysics +1011.5124 Information Theory +1011.5128 Instrumentation and Methods for Astrophysics +1011.5130 Soft Condensed Matter +1011.5133 Machine Learning +1011.5136 Representation Theory +1011.5141 Superconductivity +1011.5142 Machine Learning +1011.5146 +1011.5153 Commutative Algebra +1011.5158 Cosmology and Nongalactic Astrophysics +1011.5160 Differential Geometry +1011.5164 Computers and Society +1011.5167 Information Theory +1011.5171 Functional Analysis +1011.5178 Cosmology and Nongalactic Astrophysics +1011.5183 Logic +1011.5184 Plasma Physics +1011.5193 Metric Geometry +1011.5195 +1011.5197 Computational Physics +1011.5199 Adaptation and Self-Organizing Systems +1011.5203 Mesoscale and Nanoscale Physics +1011.5208 Phenomenology +1011.5213 Materials Science +1011.5214 Solar and Stellar Astrophysics +astro-ph/0309063 +astro-ph/0602284 +astro-ph/0610335 +astro-ph/9710272 +hep-ph/0007298 Phenomenology +hep-ph/0504280 Phenomenology +hep-ph/0702233 Phenomenology +hep-ph/9912214 Phenomenology +hep-th/0202023 Theory +hep-th/0403277 Theory +hep-th/0411223 Theory +math-ph/0405065 +math/0204339 Operator Algebras +math/0205292 Operator Algebras +math/0312286 Operator Algebras +math/0408020 Operator Algebras +math/0502239 Operator Algebras +math/0606378 Operator Algebras +math/0609769 Representation Theory +nucl-th/9511029 +q-bio/0703032 Quantitative Methods +quant-ph/0506081 +0704.1972 Classical Analysis and ODEs +0708.3415 Geometric Topology +0708.3956 Classical Analysis and ODEs +0709.1213 Classical Analysis and ODEs +0710.2762 Materials Science +0711.0173 Dynamical Systems +0804.2564 Classical Analysis and ODEs +0804.2685 Materials Science +0805.1867 +0805.4089 K-Theory and Homology +0811.1209 +0811.4203 Analysis of PDEs +0812.0214 Combinatorics +0901.1583 Logic +0902.1058 Probability +0902.2053 Data Analysis, Statistics and Probability +0905.1738 Probability +0906.1776 Superconductivity +0907.4665 Mesoscale and Nanoscale Physics +0908.2387 Astrophysics of Galaxies +0910.3640 Analysis of PDEs +0911.1789 Cosmology and Nongalactic Astrophysics +0912.0618 Materials Science +0912.1218 Phenomenology +0912.4472 Populations and Evolution +1002.1562 Mesoscale and Nanoscale Physics +1002.1870 Algebraic Geometry +1002.2510 Superconductivity +1002.2680 Experiment +1002.3671 Cryptography and Security +1002.4600 Phenomenology +1003.0609 Mesoscale and Nanoscale Physics +1003.3315 Mesoscale and Nanoscale Physics +1003.5282 Theory +1004.1275 Superconductivity +1004.2044 +1004.2221 Disordered Systems and Neural Networks +1004.3765 Strongly Correlated Electrons +1004.4497 Strongly Correlated Electrons +1004.5093 Superconductivity +1005.0904 +1005.1685 Strongly Correlated Electrons +1005.4798 Programming Languages +1006.0103 Materials Science +1006.1927 +1006.4285 Geometric Topology +1007.1310 Number Theory +1007.1627 +1007.2293 Earth and Planetary Astrophysics +1007.2296 Earth and Planetary Astrophysics +1007.3330 Solar and Stellar Astrophysics +1007.3337 Solar and Stellar Astrophysics +1007.3349 Solar and Stellar Astrophysics +1007.3884 Artificial Intelligence +1007.3964 Populations and Evolution +1007.4710 High Energy Astrophysical Phenomena +1007.4928 Soft Condensed Matter +1007.4967 +1007.4973 Solar and Stellar Astrophysics +1007.5015 Optics +1007.5016 Neurons and Cognition +1007.5022 Neurons and Cognition +1007.5062 Solar and Stellar Astrophysics +1007.5072 Phenomenology +1007.5079 Optics +1007.5087 Optimization and Control +1007.5088 Distributed, Parallel, and Cluster Computing +1007.5089 Programming Languages +1007.5090 Distributed, Parallel, and Cluster Computing +1007.5091 Distributed, Parallel, and Cluster Computing +1007.5092 Software Engineering +1007.5093 Software Engineering +1007.5094 Software Engineering +1007.5095 Logic in Computer Science +1007.5099 Category Theory +1007.5104 Artificial Intelligence +1007.5106 Mesoscale and Nanoscale Physics +1007.5107 Statistics Theory +1007.5108 General Physics +1007.5110 Databases +1007.5111 Mesoscale and Nanoscale Physics +1007.5113 Biological Physics +1007.5115 Software Engineering +1007.5117 Software Engineering +1007.5118 Phenomenology +1007.5123 Software Engineering +1007.5126 Software Engineering +1007.5127 Software Engineering +1007.5129 Computer Vision and Pattern Recognition +1007.5130 Artificial Intelligence +1007.5133 Learning +1007.5136 Multimedia +1007.5137 Information Retrieval +1007.5139 Networking and Internet Architecture +1007.5143 Disordered Systems and Neural Networks +1007.5144 Chemical Physics +1007.5147 Classical Analysis and ODEs +1007.5149 Astrophysics of Galaxies +1007.5151 Chemical Physics +1007.5155 Chemical Physics +1007.5158 Human-Computer Interaction +1007.5160 Optimization and Control +1007.5165 Networking and Internet Architecture +1007.5167 Chemical Physics +1007.5168 Networking and Internet Architecture +1007.5169 Chemical Physics +1007.5170 Networking and Internet Architecture +1007.5171 Human-Computer Interaction +1007.5190 Materials Science +1007.5194 +1007.5195 Programming Languages +1007.5209 Materials Science +1007.5211 +1007.5212 Combinatorics +1007.5219 Experiment +1007.5224 Functional Analysis +1007.5229 Complex Variables +1007.5232 Phenomenology +1007.5235 Biomolecules +1007.5244 Algebraic Geometry +1007.5245 Soft Condensed Matter +1007.5255 Networking and Internet Architecture +1007.5257 Number Theory +1007.5263 Combinatorics +1007.5264 General Mathematics +1007.5266 Cosmology and Nongalactic Astrophysics +1007.5269 Combinatorics +1007.5271 Plasma Physics +1007.5273 Differential Geometry +1007.5274 Statistical Finance +1007.5294 Theory +1007.5304 High Energy Astrophysical Phenomena +cond-mat/0103205 Superconductivity +cond-mat/0203573 +cond-mat/0210597 +cond-mat/0212517 Materials Science +cond-mat/0307771 +cond-mat/0405073 Superconductivity +cond-mat/0503104 Materials Science +cond-mat/0506375 Materials Science +cond-mat/0609359 Superconductivity +cond-mat/0609706 Other Condensed Matter +hep-ph/0311297 Phenomenology +math-ph/0412029 +math-ph/0501074 +math-ph/0508062 +math-ph/0602064 +math-ph/0701003 +math/0009140 Differential Geometry +math/0010091 Differential Geometry +math/0101207 Differential Geometry +math/0508032 Number Theory +math/0508431 K-Theory and Homology +math/0508469 K-Theory and Homology +math/0510278 Classical Analysis and ODEs +math/0511470 Classical Analysis and ODEs +math/0605201 Classical Analysis and ODEs +math/0606111 Metric Geometry +math/0606333 Operator Algebras +math/0701923 Complex Variables +physics/0504154 Atomic Physics +0704.1249 Representation Theory +0705.2284 Combinatorics +0709.2217 Combinatorics +0710.2987 Numerical Analysis +0712.2962 Rings and Algebras +0803.2841 Representation Theory +0803.4442 Representation Theory +0809.1681 Networking and Internet Architecture +0809.1958 Algebraic Geometry +0809.2685 Strongly Correlated Electrons +0809.4897 Representation Theory +0810.0608 Strongly Correlated Electrons +0810.5017 Strongly Correlated Electrons +0812.1061 Formal Languages and Automata Theory +0812.2097 Numerical Analysis +0812.2425 +0901.1490 Mesoscale and Nanoscale Physics +0905.0204 Mesoscale and Nanoscale Physics +0905.1039 Physics and Society +0905.4414 Strongly Correlated Electrons +0906.2817 Theory +0906.4514 Probability +0907.0547 Cosmology and Nongalactic Astrophysics +0907.1863 Mesoscale and Nanoscale Physics +0907.5138 Combinatorics +0908.1830 Metric Geometry +0909.0027 Solar and Stellar Astrophysics +0909.1691 Phenomenology +0909.2546 Phenomenology +0909.5435 +0910.0985 +0910.3860 Phenomenology +0911.0296 Phenomenology +0911.0682 Theory +0911.3428 +0911.5300 +1001.4485 Combinatorics +1002.2270 Mesoscale and Nanoscale Physics +1002.4607 Representation Theory +1003.0335 Fluid Dynamics +1003.3003 +1003.4340 Disordered Systems and Neural Networks +1003.4918 History and Philosophy of Physics +1004.0312 Quantum Gases +1004.1464 Analysis of PDEs +1005.1294 Theory +1005.3671 Strongly Correlated Electrons +1005.4608 Mesoscale and Nanoscale Physics +1005.5581 Learning +1006.0608 Classical Analysis and ODEs +1006.0738 Superconductivity +1006.0868 Computation +1006.1080 Artificial Intelligence +1006.2280 +1006.3309 Theory +1006.3368 Data Structures and Algorithms +1006.5146 Materials Science +1007.0108 Classical Analysis and ODEs +1007.0230 Analysis of PDEs +1007.0397 +1007.0889 +1007.1779 Solar and Stellar Astrophysics +1007.2039 Materials Science +1007.2344 Quantum Gases +1007.3766 Experiment +1007.4775 +1007.5007 Phenomenology +1008.1406 Theory +1008.1457 Quantum Gases +1008.1914 Cosmology and Nongalactic Astrophysics +1008.2175 Materials Science +1008.3472 Superconductivity +1008.3482 Operator Algebras +1008.4906 Phenomenology +1008.4989 Phenomenology +1009.1573 Materials Science +1009.2755 Instrumentation and Methods for Astrophysics +1009.3367 Mesoscale and Nanoscale Physics +1009.5485 Mesoscale and Nanoscale Physics +1009.5840 Superconductivity +1010.1594 Dynamical Systems +1010.3424 Group Theory +1010.4145 Neurons and Cognition +1010.4163 Algebraic Geometry +1010.5583 Dynamical Systems +1010.5725 Exactly Solvable and Integrable Systems +1010.5854 Human-Computer Interaction +1010.5922 Instrumentation and Methods for Astrophysics +1010.5925 +1010.5951 Computer Science and Game Theory +1010.5963 Combinatorics +1010.5965 Group Theory +1010.6024 Cosmology and Nongalactic Astrophysics +1010.6040 K-Theory and Homology +1010.6068 Cosmology and Nongalactic Astrophysics +1010.6074 Theory +1010.6080 Mesoscale and Nanoscale Physics +1010.6081 Combinatorics +1010.6083 General Physics +1010.6089 Cosmology and Nongalactic Astrophysics +1010.6090 Functional Analysis +1010.6098 Computation +1010.6104 +1010.6109 Instrumentation and Methods for Astrophysics +1010.6112 Formal Languages and Automata Theory +1010.6113 Computation +1010.6114 Analysis of PDEs +1010.6116 Differential Geometry +1010.6121 Classical Analysis and ODEs +1010.6122 Numerical Analysis +1010.6123 Optimization and Control +1010.6124 Materials Science +1010.6129 Combinatorics +1010.6130 Differential Geometry +1010.6131 Combinatorics +1010.6134 Theory +1010.6136 Probability +1010.6137 Strongly Correlated Electrons +1010.6139 Combinatorics +1010.6143 Soft Condensed Matter +1010.6151 Superconductivity +1010.6153 Mesoscale and Nanoscale Physics +1010.6155 Software Engineering +1010.6158 Cosmology and Nongalactic Astrophysics +1010.6160 Functional Analysis +1010.6161 Phenomenology +1010.6163 Materials Science +1010.6165 Functional Analysis +1010.6166 Networking and Internet Architecture +1010.6169 Lattice +1010.6178 Neurons and Cognition +1010.6181 Number Theory +1010.6182 Algebraic Geometry +1010.6185 Biological Physics +1010.6187 Earth and Planetary Astrophysics +1010.6199 Strongly Correlated Electrons +1010.6202 Statistics Theory +1010.6208 Cosmology and Nongalactic Astrophysics +1010.6213 Cosmology and Nongalactic Astrophysics +1010.6214 Robotics +1010.6230 +1010.6234 Artificial Intelligence +1010.6236 Geometric Topology +1010.6239 Optimization and Control +1010.6240 Representation Theory +1010.6241 Chemical Physics +1010.6242 Information Retrieval +1010.6247 Information Theory +1010.6252 Cosmology and Nongalactic Astrophysics +1010.6255 Information Theory +1010.6257 Geometric Topology +1010.6261 Combinatorics +1010.6262 +1010.6264 Soft Condensed Matter +1010.6267 Strongly Correlated Electrons +1010.6270 Solar and Stellar Astrophysics +1010.6271 K-Theory and Homology +1010.6279 Combinatorics +1010.6281 Astrophysics of Galaxies +1010.6285 Dynamical Systems +1010.6298 Spectral Theory +1010.6300 +astro-ph/9206001 +astro-ph/9211007 +astro-ph/9306019 +astro-ph/9307020 +astro-ph/9307036 +astro-ph/9310041 +astro-ph/9311062 +astro-ph/9402033 +astro-ph/9403006 +astro-ph/9403039 +astro-ph/9404023 +astro-ph/9404025 +astro-ph/9404078 +astro-ph/9407027 +astro-ph/9407064 +astro-ph/9408044 +astro-ph/9408103 +astro-ph/9409055 +astro-ph/9412019 +astro-ph/9412038 +astro-ph/9412079 +astro-ph/9412094 +astro-ph/9501040 +astro-ph/9501073 +astro-ph/9502010 +astro-ph/9503014 +astro-ph/9503092 +astro-ph/9504015 +cond-mat/0610544 Strongly Correlated Electrons +cond-mat/9308007 +gr-qc/0008015 +gr-qc/0101075 +gr-qc/9207001 +gr-qc/9207002 +gr-qc/9209003 +gr-qc/9209007 +gr-qc/9209008 +gr-qc/9211022 +gr-qc/9211023 +gr-qc/9212009 +gr-qc/9301009 +gr-qc/9301013 +gr-qc/9302017 +gr-qc/9303016 +gr-qc/9304008 +gr-qc/9304030 +gr-qc/9304031 +gr-qc/9304041 +gr-qc/9305003 +gr-qc/9305014 +gr-qc/9306002 +gr-qc/9306016 +gr-qc/9306028 +gr-qc/9307004 +gr-qc/9307015 +gr-qc/9307018 +gr-qc/9307029 +gr-qc/9308021 +gr-qc/9308024 +gr-qc/9308028 +gr-qc/9309005 +gr-qc/9309013 +gr-qc/9309014 +gr-qc/9310007 +gr-qc/9310020 +gr-qc/9311011 +gr-qc/9311016 +gr-qc/9311017 +gr-qc/9311024 +gr-qc/9312008 +gr-qc/9312018 +gr-qc/9312025 +gr-qc/9401002 +gr-qc/9401007 +gr-qc/9401009 +gr-qc/9401010 +gr-qc/9401019 +gr-qc/9401028 +gr-qc/9401032 +gr-qc/9401033 +gr-qc/9402009 +gr-qc/9402019 +gr-qc/9402021 +gr-qc/9402028 +gr-qc/9402039 +gr-qc/9402040 +gr-qc/9403022 +gr-qc/9403052 +gr-qc/9404028 +gr-qc/9404032 +gr-qc/9404041 +gr-qc/9404058 +gr-qc/9405008 +gr-qc/9405014 +gr-qc/9405027 +gr-qc/9405030 +gr-qc/9405038 +gr-qc/9405050 +gr-qc/9405056 +gr-qc/9405057 +gr-qc/9405058 +gr-qc/9405060 +gr-qc/9405061 +gr-qc/9405074 +gr-qc/9406010 +gr-qc/9406018 +gr-qc/9406031 +gr-qc/9406045 +gr-qc/9407004 +gr-qc/9407037 +gr-qc/9408001 +gr-qc/9408004 +gr-qc/9408033 +gr-qc/9408040 +gr-qc/9409011 +gr-qc/9409029 +gr-qc/9409060 +gr-qc/9410007 +gr-qc/9410012 +gr-qc/9410027 +gr-qc/9410029 +gr-qc/9410034 +gr-qc/9410042 +gr-qc/9410043 +gr-qc/9411003 +gr-qc/9411007 +gr-qc/9411008 +gr-qc/9411026 +gr-qc/9411039 +gr-qc/9411042 +gr-qc/9411046 +gr-qc/9411057 +gr-qc/9411058 +gr-qc/9411066 +gr-qc/9412008 +gr-qc/9412010 +gr-qc/9412019 +gr-qc/9412039 +gr-qc/9412040 +gr-qc/9412044 +gr-qc/9412048 +gr-qc/9412051 +gr-qc/9412075 +gr-qc/9501011 +gr-qc/9501030 +gr-qc/9502006 +gr-qc/9502019 +gr-qc/9503016 +gr-qc/9503048 +gr-qc/9503049 +gr-qc/9503051 +gr-qc/9503056 +gr-qc/9503061 +gr-qc/9503064 +gr-qc/9503067 +gr-qc/9504004 +gr-qc/9504006 +gr-qc/9504018 +gr-qc/9504020 +gr-qc/9504021 +gr-qc/9504030 +gr-qc/9504037 +gr-qc/9504043 +gr-qc/9506008 +gr-qc/9910007 +gr-qc/9910097 +gr-qc/9910100 +hep-ex/9405002 Experiment +hep-ex/9406003 Experiment +hep-ex/9409001 Experiment +hep-ex/9410006 Experiment +hep-ex/9411002 Experiment +hep-ex/9412001 Experiment +hep-ex/9412003 Experiment +hep-ex/9412005 Experiment +hep-ex/9412010 Experiment +hep-ex/9412011 Experiment +hep-ex/9412012 Experiment +hep-ex/9412015 Experiment +hep-ex/9501002 Experiment +hep-ex/9501004 Experiment +hep-ex/9501007 Experiment +hep-ex/9502001 Experiment +hep-ex/9502006 Experiment +hep-ex/9503006 Experiment +hep-ex/9504003 Experiment +hep-ex/9505004 Experiment +hep-ex/9508015 Experiment +hep-lat/9204006 Lattice +hep-lat/9204012 Lattice +hep-lat/9205006 Lattice +hep-lat/9205007 Lattice +hep-lat/9206009 Lattice +hep-lat/9209018 Lattice +hep-lat/9210042 Lattice +hep-lat/9211004 Lattice +hep-lat/9211033 Lattice +hep-lat/9212018 Lattice +hep-lat/9212033 Lattice +hep-lat/9301005 Lattice +hep-lat/9305001 Lattice +hep-lat/9305003 Lattice +hep-lat/9307020 Lattice +hep-lat/9308003 Lattice +hep-lat/9308021 Lattice +hep-lat/9311034 Lattice +hep-lat/9311043 Lattice +hep-lat/9311063 Lattice +hep-lat/9312001 Lattice +hep-lat/9312038 Lattice +hep-lat/9312062 Lattice +hep-lat/9312088 Lattice +hep-lat/9401007 Lattice +hep-lat/9401025 Lattice +hep-lat/9403020 Lattice +hep-lat/9404014 Lattice +hep-lat/9406002 Lattice +hep-lat/9406015 Lattice +hep-lat/9407029 Lattice +hep-lat/9408010 Lattice +hep-lat/9409010 Lattice +hep-lat/9411066 Lattice +hep-lat/9411086 Lattice +hep-lat/9412002 Lattice +hep-lat/9412017 Lattice +hep-lat/9412063 Lattice +hep-lat/9412075 Lattice +hep-lat/9412102 Lattice +hep-lat/9501002 Lattice +hep-lat/9501013 Lattice +hep-lat/9501028 Lattice +hep-lat/9501029 Lattice +hep-lat/9502009 Lattice +hep-lat/9502012 Lattice +hep-lat/9503002 Lattice +hep-lat/9503010 Lattice +hep-ph/0103230 Phenomenology +hep-ph/0105093 Phenomenology +hep-ph/0107294 Phenomenology +hep-ph/0210263 Phenomenology +hep-ph/0311293 Phenomenology +hep-ph/0312336 Phenomenology +hep-ph/9203206 Phenomenology +hep-ph/9203212 Phenomenology +hep-ph/9203216 Phenomenology +hep-ph/9203219 Phenomenology +hep-ph/9203221 Phenomenology +hep-ph/9203222 Phenomenology +hep-ph/9203225 Phenomenology +hep-ph/9204205 Phenomenology +hep-ph/9204206 Phenomenology +hep-ph/9204215 Phenomenology +hep-ph/9204219 Phenomenology +hep-ph/9204229 Phenomenology +hep-ph/9204232 Phenomenology +hep-ph/9204237 Phenomenology +hep-ph/9205202 Phenomenology +hep-ph/9205221 Phenomenology +hep-ph/9205228 Phenomenology +hep-ph/9205233 Phenomenology +hep-ph/9205241 Phenomenology +hep-ph/9205246 Phenomenology +hep-ph/9205247 Phenomenology +hep-ph/9206216 Phenomenology +hep-ph/9206217 Phenomenology +hep-ph/9206241 Phenomenology +hep-ph/9206262 Phenomenology +hep-ph/9207208 Phenomenology +hep-ph/9207222 Phenomenology +hep-ph/9207223 Phenomenology +hep-ph/9207225 Phenomenology +hep-ph/9207248 Phenomenology +hep-ph/9207250 Phenomenology +hep-ph/9208205 Phenomenology +hep-ph/9208206 Phenomenology +hep-ph/9208219 Phenomenology +hep-ph/9208227 Phenomenology +hep-ph/9208256 Phenomenology +hep-ph/9209210 Phenomenology +hep-ph/9209215 Phenomenology +hep-ph/9209234 Phenomenology +hep-ph/9209235 Phenomenology +hep-ph/9209245 Phenomenology +hep-ph/9209247 Phenomenology +hep-ph/9209250 Phenomenology +hep-ph/9209256 Phenomenology +hep-ph/9209260 Phenomenology +hep-ph/9209271 Phenomenology +hep-ph/9209277 Phenomenology +hep-ph/9209279 Phenomenology +hep-ph/9210251 Phenomenology +hep-ph/9210267 Phenomenology +hep-ph/9210270 Phenomenology +hep-ph/9210277 Phenomenology +hep-ph/9211222 Phenomenology +hep-ph/9211256 Phenomenology +hep-ph/9211272 Phenomenology +hep-ph/9211274 Phenomenology +hep-ph/9211288 Phenomenology +hep-ph/9211293 Phenomenology +hep-ph/9211298 Phenomenology +hep-ph/9211311 Phenomenology +hep-ph/9212203 Phenomenology +hep-ph/9212228 Phenomenology +hep-ph/9212236 Phenomenology +hep-ph/9212248 Phenomenology +hep-ph/9212255 Phenomenology +hep-ph/9212267 Phenomenology +hep-ph/9212273 Phenomenology +hep-ph/9212274 Phenomenology +hep-ph/9212279 Phenomenology +hep-ph/9212299 Phenomenology +hep-ph/9212302 Phenomenology +hep-ph/9212313 Phenomenology +hep-ph/9212318 Phenomenology +hep-ph/9301208 Phenomenology +hep-ph/9301212 Phenomenology +hep-ph/9301217 Phenomenology +hep-ph/9301225 Phenomenology +hep-ph/9301227 Phenomenology +hep-ph/9301228 Phenomenology +hep-ph/9301272 Phenomenology +hep-ph/9301273 Phenomenology +hep-ph/9301289 Phenomenology +hep-ph/9301291 Phenomenology +hep-ph/9301292 Phenomenology +hep-ph/9302207 Phenomenology +hep-ph/9302230 Phenomenology +hep-ph/9302231 Phenomenology +hep-ph/9302255 Phenomenology +hep-ph/9302256 Phenomenology +hep-ph/9302274 Phenomenology +hep-ph/9302298 Phenomenology +hep-ph/9302300 Phenomenology +hep-ph/9302315 Phenomenology +hep-ph/9303203 Phenomenology +hep-ph/9303204 Phenomenology +hep-ph/9303210 Phenomenology +hep-ph/9303216 Phenomenology +hep-ph/9303222 Phenomenology +hep-ph/9303224 Phenomenology +hep-ph/9303268 Phenomenology +hep-ph/9303282 Phenomenology +hep-ph/9303284 Phenomenology +hep-ph/9303294 Phenomenology +hep-ph/9303296 Phenomenology +hep-ph/9303301 Phenomenology +hep-ph/9303303 Phenomenology +hep-ph/9303305 Phenomenology +hep-ph/9303310 Phenomenology +hep-ph/9303320 Phenomenology +hep-ph/9304211 Phenomenology +hep-ph/9304218 Phenomenology +hep-ph/9304236 Phenomenology +hep-ph/9304246 Phenomenology +hep-ph/9304251 Phenomenology +hep-ph/9304252 Phenomenology +hep-ph/9304265 Phenomenology +hep-ph/9304274 Phenomenology +hep-ph/9304280 Phenomenology +hep-ph/9304289 Phenomenology +hep-ph/9304299 Phenomenology +hep-ph/9304316 Phenomenology +hep-ph/9305214 Phenomenology +hep-ph/9305234 Phenomenology +hep-ph/9305263 Phenomenology +hep-ph/9305267 Phenomenology +hep-ph/9305271 Phenomenology +hep-ph/9305272 Phenomenology +hep-ph/9305274 Phenomenology +hep-ph/9305275 Phenomenology +hep-ph/9305290 Phenomenology +hep-ph/9305301 Phenomenology +hep-ph/9305304 Phenomenology +hep-ph/9305324 Phenomenology +hep-ph/9305333 Phenomenology +hep-ph/9305338 Phenomenology +hep-ph/9306202 Phenomenology +hep-ph/9306234 Phenomenology +hep-ph/9306235 Phenomenology +hep-ph/9306250 Phenomenology +hep-ph/9306257 Phenomenology +hep-ph/9306292 Phenomenology +hep-ph/9306301 Phenomenology +hep-ph/9306318 Phenomenology +hep-ph/9306320 Phenomenology +hep-ph/9307212 Phenomenology +hep-ph/9307218 Phenomenology +hep-ph/9307223 Phenomenology +hep-ph/9307238 Phenomenology +hep-ph/9307264 Phenomenology +hep-ph/9307272 Phenomenology +hep-ph/9307273 Phenomenology +hep-ph/9307279 Phenomenology +hep-ph/9307289 Phenomenology +hep-ph/9307298 Phenomenology +hep-ph/9307303 Phenomenology +hep-ph/9307318 Phenomenology +hep-ph/9307329 Phenomenology +hep-ph/9307344 Phenomenology +hep-ph/9307351 Phenomenology +hep-ph/9307353 Phenomenology +hep-ph/9307356 Phenomenology +hep-ph/9307360 Phenomenology +hep-ph/9308225 Phenomenology +hep-ph/9308226 Phenomenology +hep-ph/9308241 Phenomenology +hep-ph/9308245 Phenomenology +hep-ph/9308246 Phenomenology +hep-ph/9308267 Phenomenology +hep-ph/9308273 Phenomenology +hep-ph/9308280 Phenomenology +hep-ph/9308287 Phenomenology +hep-ph/9308308 Phenomenology +hep-ph/9308314 Phenomenology +hep-ph/9308315 Phenomenology +hep-ph/9308318 Phenomenology +hep-ph/9308319 Phenomenology +hep-ph/9308328 Phenomenology +hep-ph/9308333 Phenomenology +hep-ph/9308334 Phenomenology +hep-ph/9308348 Phenomenology +hep-ph/9308369 Phenomenology +hep-ph/9308371 Phenomenology +hep-ph/9309202 Phenomenology +hep-ph/9309203 Phenomenology +hep-ph/9309228 Phenomenology +hep-ph/9309249 Phenomenology +hep-ph/9309272 Phenomenology +hep-ph/9309274 Phenomenology +hep-ph/9309287 Phenomenology +hep-ph/9309330 Phenomenology +hep-ph/9309332 Phenomenology +hep-ph/9310206 Phenomenology +hep-ph/9310216 Phenomenology +hep-ph/9310240 Phenomenology +hep-ph/9310243 Phenomenology +hep-ph/9310248 Phenomenology +hep-ph/9310260 Phenomenology +hep-ph/9310307 Phenomenology +hep-ph/9310310 Phenomenology +hep-ph/9310312 Phenomenology +hep-ph/9310326 Phenomenology +hep-ph/9310330 Phenomenology +hep-ph/9310335 Phenomenology +hep-ph/9310341 Phenomenology +hep-ph/9310342 Phenomenology +hep-ph/9310346 Phenomenology +hep-ph/9310370 Phenomenology +hep-ph/9310380 Phenomenology +hep-ph/9311209 Phenomenology +hep-ph/9311227 Phenomenology +hep-ph/9311239 Phenomenology +hep-ph/9311243 Phenomenology +hep-ph/9311249 Phenomenology +hep-ph/9311256 Phenomenology +hep-ph/9311265 Phenomenology +hep-ph/9311271 Phenomenology +hep-ph/9311272 Phenomenology +hep-ph/9311284 Phenomenology +hep-ph/9311291 Phenomenology +hep-ph/9311293 Phenomenology +hep-ph/9311303 Phenomenology +hep-ph/9311312 Phenomenology +hep-ph/9311313 Phenomenology +hep-ph/9311318 Phenomenology +hep-ph/9311320 Phenomenology +hep-ph/9311323 Phenomenology +hep-ph/9311325 Phenomenology +hep-ph/9311335 Phenomenology +hep-ph/9311337 Phenomenology +hep-ph/9311347 Phenomenology +hep-ph/9311349 Phenomenology +hep-ph/9311352 Phenomenology +hep-ph/9311369 Phenomenology +hep-ph/9312208 Phenomenology +hep-ph/9312233 Phenomenology +hep-ph/9312238 Phenomenology +hep-ph/9312252 Phenomenology +hep-ph/9312258 Phenomenology +hep-ph/9312262 Phenomenology +hep-ph/9312263 Phenomenology +hep-ph/9312266 Phenomenology +hep-ph/9312267 Phenomenology +hep-ph/9312271 Phenomenology +hep-ph/9312277 Phenomenology +hep-ph/9312279 Phenomenology +hep-ph/9312280 Phenomenology +hep-ph/9312298 Phenomenology +hep-ph/9312311 Phenomenology +hep-ph/9312312 Phenomenology +hep-ph/9312317 Phenomenology +hep-ph/9312318 Phenomenology +hep-ph/9312319 Phenomenology +hep-ph/9401228 Phenomenology +hep-ph/9401249 Phenomenology +hep-ph/9401253 Phenomenology +hep-ph/9401255 Phenomenology +hep-ph/9401256 Phenomenology +hep-ph/9401257 Phenomenology +hep-ph/9401270 Phenomenology +hep-ph/9401277 Phenomenology +hep-ph/9401281 Phenomenology +hep-ph/9401283 Phenomenology +hep-ph/9401284 Phenomenology +hep-ph/9401310 Phenomenology +hep-ph/9401311 Phenomenology +hep-ph/9401319 Phenomenology +hep-ph/9401330 Phenomenology +hep-ph/9401331 Phenomenology +hep-ph/9401347 Phenomenology +hep-ph/9401352 Phenomenology +hep-ph/9402204 Phenomenology +hep-ph/9402224 Phenomenology +hep-ph/9402227 Phenomenology +hep-ph/9402249 Phenomenology +hep-ph/9402263 Phenomenology +hep-ph/9402289 Phenomenology +hep-ph/9402317 Phenomenology +hep-ph/9402325 Phenomenology +hep-ph/9402326 Phenomenology +hep-ph/9402340 Phenomenology +hep-ph/9402347 Phenomenology +hep-ph/9402356 Phenomenology +hep-ph/9402358 Phenomenology +hep-ph/9402360 Phenomenology +hep-ph/9403205 Phenomenology +hep-ph/9403207 Phenomenology +hep-ph/9403215 Phenomenology +hep-ph/9403225 Phenomenology +hep-ph/9403242 Phenomenology +hep-ph/9403249 Phenomenology +hep-ph/9403253 Phenomenology +hep-ph/9403257 Phenomenology +hep-ph/9403269 Phenomenology +hep-ph/9403274 Phenomenology +hep-ph/9403285 Phenomenology +hep-ph/9403301 Phenomenology +hep-ph/9403313 Phenomenology +hep-ph/9403335 Phenomenology +hep-ph/9403346 Phenomenology +hep-ph/9403349 Phenomenology +hep-ph/9403389 Phenomenology +hep-ph/9403407 Phenomenology +hep-ph/9404249 Phenomenology +hep-ph/9404259 Phenomenology +hep-ph/9404261 Phenomenology +hep-ph/9404276 Phenomenology +hep-ph/9404283 Phenomenology +hep-ph/9404302 Phenomenology +hep-ph/9404319 Phenomenology +hep-ph/9404330 Phenomenology +hep-ph/9404336 Phenomenology +hep-ph/9404343 Phenomenology +hep-ph/9404349 Phenomenology +hep-ph/9405208 Phenomenology +hep-ph/9405240 Phenomenology +hep-ph/9405242 Phenomenology +hep-ph/9405263 Phenomenology +hep-ph/9405270 Phenomenology +hep-ph/9405288 Phenomenology +hep-ph/9405296 Phenomenology +hep-ph/9405307 Phenomenology +hep-ph/9405314 Phenomenology +hep-ph/9405322 Phenomenology +hep-ph/9405348 Phenomenology +hep-ph/9405349 Phenomenology +hep-ph/9405356 Phenomenology +hep-ph/9405361 Phenomenology +hep-ph/9405368 Phenomenology +hep-ph/9405379 Phenomenology +hep-ph/9405410 Phenomenology +hep-ph/9406210 Phenomenology +hep-ph/9406251 Phenomenology +hep-ph/9406268 Phenomenology +hep-ph/9406288 Phenomenology +hep-ph/9406289 Phenomenology +hep-ph/9406291 Phenomenology +hep-ph/9406292 Phenomenology +hep-ph/9406313 Phenomenology +hep-ph/9406335 Phenomenology +hep-ph/9406368 Phenomenology +hep-ph/9406391 Phenomenology +hep-ph/9406416 Phenomenology +hep-ph/9406421 Phenomenology +hep-ph/9406422 Phenomenology +hep-ph/9406424 Phenomenology +hep-ph/9406429 Phenomenology +hep-ph/9407206 Phenomenology +hep-ph/9407211 Phenomenology +hep-ph/9407213 Phenomenology +hep-ph/9407214 Phenomenology +hep-ph/9407226 Phenomenology +hep-ph/9407238 Phenomenology +hep-ph/9407241 Phenomenology +hep-ph/9407242 Phenomenology +hep-ph/9407255 Phenomenology +hep-ph/9407259 Phenomenology +hep-ph/9407260 Phenomenology +hep-ph/9407288 Phenomenology +hep-ph/9407306 Phenomenology +hep-ph/9407311 Phenomenology +hep-ph/9407313 Phenomenology +hep-ph/9407323 Phenomenology +hep-ph/9407338 Phenomenology +hep-ph/9407374 Phenomenology +hep-ph/9407380 Phenomenology +hep-ph/9407406 Phenomenology +hep-ph/9408212 Phenomenology +hep-ph/9408229 Phenomenology +hep-ph/9408240 Phenomenology +hep-ph/9408284 Phenomenology +hep-ph/9408290 Phenomenology +hep-ph/9408294 Phenomenology +hep-ph/9408296 Phenomenology +hep-ph/9408307 Phenomenology +hep-ph/9408311 Phenomenology +hep-ph/9408314 Phenomenology +hep-ph/9408316 Phenomenology +hep-ph/9408331 Phenomenology +hep-ph/9408332 Phenomenology +hep-ph/9408339 Phenomenology +hep-ph/9408350 Phenomenology +hep-ph/9408358 Phenomenology +hep-ph/9408390 Phenomenology +hep-ph/9408401 Phenomenology +hep-ph/9408404 Phenomenology +hep-ph/9408407 Phenomenology +hep-ph/9409206 Phenomenology +hep-ph/9409207 Phenomenology +hep-ph/9409220 Phenomenology +hep-ph/9409224 Phenomenology +hep-ph/9409229 Phenomenology +hep-ph/9409234 Phenomenology +hep-ph/9409243 Phenomenology +hep-ph/9409244 Phenomenology +hep-ph/9409254 Phenomenology +hep-ph/9409281 Phenomenology +hep-ph/9409287 Phenomenology +hep-ph/9409310 Phenomenology +hep-ph/9409313 Phenomenology +hep-ph/9409316 Phenomenology +hep-ph/9409317 Phenomenology +hep-ph/9409318 Phenomenology +hep-ph/9409348 Phenomenology +hep-ph/9409366 Phenomenology +hep-ph/9409377 Phenomenology +hep-ph/9409382 Phenomenology +hep-ph/9409395 Phenomenology +hep-ph/9409396 Phenomenology +hep-ph/9409418 Phenomenology +hep-ph/9409421 Phenomenology +hep-ph/9409427 Phenomenology +hep-ph/9409428 Phenomenology +hep-ph/9409430 Phenomenology +hep-ph/9409434 Phenomenology +hep-ph/9409437 Phenomenology +hep-ph/9409444 Phenomenology +hep-ph/9410213 Phenomenology +hep-ph/9410218 Phenomenology +hep-ph/9410222 Phenomenology +hep-ph/9410225 Phenomenology +hep-ph/9410228 Phenomenology +hep-ph/9410236 Phenomenology +hep-ph/9410249 Phenomenology +hep-ph/9410253 Phenomenology +hep-ph/9410267 Phenomenology +hep-ph/9410269 Phenomenology +hep-ph/9410297 Phenomenology +hep-ph/9410337 Phenomenology +hep-ph/9410346 Phenomenology +hep-ph/9410357 Phenomenology +hep-ph/9410363 Phenomenology +hep-ph/9410373 Phenomenology +hep-ph/9410375 Phenomenology +hep-ph/9410400 Phenomenology +hep-ph/9410413 Phenomenology +hep-ph/9411216 Phenomenology +hep-ph/9411218 Phenomenology +hep-ph/9411221 Phenomenology +hep-ph/9411235 Phenomenology +hep-ph/9411252 Phenomenology +hep-ph/9411273 Phenomenology +hep-ph/9411274 Phenomenology +hep-ph/9411288 Phenomenology +hep-ph/9411290 Phenomenology +hep-ph/9411292 Phenomenology +hep-ph/9411293 Phenomenology +hep-ph/9411303 Phenomenology +hep-ph/9411304 Phenomenology +hep-ph/9411328 Phenomenology +hep-ph/9411335 Phenomenology +hep-ph/9411340 Phenomenology +hep-ph/9411342 Phenomenology +hep-ph/9411366 Phenomenology +hep-ph/9411374 Phenomenology +hep-ph/9411381 Phenomenology +hep-ph/9411386 Phenomenology +hep-ph/9411398 Phenomenology +hep-ph/9411400 Phenomenology +hep-ph/9411406 Phenomenology +hep-ph/9411427 Phenomenology +hep-ph/9411429 Phenomenology +hep-ph/9411433 Phenomenology +hep-ph/9411442 Phenomenology +hep-ph/9412214 Phenomenology +hep-ph/9412223 Phenomenology +hep-ph/9412227 Phenomenology +hep-ph/9412238 Phenomenology +hep-ph/9412242 Phenomenology +hep-ph/9412254 Phenomenology +hep-ph/9412255 Phenomenology +hep-ph/9412265 Phenomenology +hep-ph/9412266 Phenomenology +hep-ph/9412268 Phenomenology +hep-ph/9412293 Phenomenology +hep-ph/9412300 Phenomenology +hep-ph/9412302 Phenomenology +hep-ph/9412314 Phenomenology +hep-ph/9412324 Phenomenology +hep-ph/9412340 Phenomenology +hep-ph/9412344 Phenomenology +hep-ph/9412355 Phenomenology +hep-ph/9412373 Phenomenology +hep-ph/9412390 Phenomenology +hep-ph/9412398 Phenomenology +hep-ph/9501263 Phenomenology +hep-ph/9501265 Phenomenology +hep-ph/9501269 Phenomenology +hep-ph/9501275 Phenomenology +hep-ph/9501287 Phenomenology +hep-ph/9501295 Phenomenology +hep-ph/9501299 Phenomenology +hep-ph/9501314 Phenomenology +hep-ph/9501317 Phenomenology +hep-ph/9501339 Phenomenology +hep-ph/9501347 Phenomenology +hep-ph/9501363 Phenomenology +hep-ph/9501373 Phenomenology +hep-ph/9501387 Phenomenology +hep-ph/9501388 Phenomenology +hep-ph/9501389 Phenomenology +hep-ph/9501394 Phenomenology +hep-ph/9501404 Phenomenology +hep-ph/9502209 Phenomenology +hep-ph/9502219 Phenomenology +hep-ph/9502248 Phenomenology +hep-ph/9502283 Phenomenology +hep-ph/9502286 Phenomenology +hep-ph/9502290 Phenomenology +hep-ph/9502293 Phenomenology +hep-ph/9502294 Phenomenology +hep-ph/9502297 Phenomenology +hep-ph/9502300 Phenomenology +hep-ph/9502302 Phenomenology +hep-ph/9502327 Phenomenology +hep-ph/9502337 Phenomenology +hep-ph/9502339 Phenomenology +hep-ph/9502346 Phenomenology +hep-ph/9502366 Phenomenology +hep-ph/9502373 Phenomenology +hep-ph/9502376 Phenomenology +hep-ph/9502378 Phenomenology +hep-ph/9502382 Phenomenology +hep-ph/9502386 Phenomenology +hep-ph/9502404 Phenomenology +hep-ph/9503207 Phenomenology +hep-ph/9503208 Phenomenology +hep-ph/9503223 Phenomenology +hep-ph/9503224 Phenomenology +hep-ph/9503233 Phenomenology +hep-ph/9503243 Phenomenology +hep-ph/9503262 Phenomenology +hep-ph/9503273 Phenomenology +hep-ph/9503274 Phenomenology +hep-ph/9503278 Phenomenology +hep-ph/9503282 Phenomenology +hep-ph/9503304 Phenomenology +hep-ph/9503307 Phenomenology +hep-ph/9503313 Phenomenology +hep-ph/9503335 Phenomenology +hep-ph/9503338 Phenomenology +hep-ph/9503355 Phenomenology +hep-ph/9503376 Phenomenology +hep-ph/9503383 Phenomenology +hep-ph/9503385 Phenomenology +hep-ph/9503394 Phenomenology +hep-ph/9503407 Phenomenology +hep-ph/9503450 Phenomenology +hep-ph/9503456 Phenomenology +hep-ph/9503458 Phenomenology +hep-ph/9503464 Phenomenology +hep-ph/9503484 Phenomenology +hep-ph/9503492 Phenomenology +hep-ph/9503495 Phenomenology +hep-ph/9504205 Phenomenology +hep-ph/9504209 Phenomenology +hep-ph/9504222 Phenomenology +hep-ph/9504224 Phenomenology +hep-ph/9504235 Phenomenology +hep-ph/9504242 Phenomenology +hep-ph/9504249 Phenomenology +hep-ph/9504260 Phenomenology +hep-ph/9504263 Phenomenology +hep-ph/9504265 Phenomenology +hep-ph/9504306 Phenomenology +hep-ph/9504326 Phenomenology +hep-ph/9504327 Phenomenology +hep-ph/9504343 Phenomenology +hep-ph/9504364 Phenomenology +hep-ph/9504387 Phenomenology +hep-ph/9504410 Phenomenology +hep-ph/9504411 Phenomenology +hep-ph/9504415 Phenomenology +hep-ph/9505201 Phenomenology +hep-ph/9505213 Phenomenology +hep-ph/9505222 Phenomenology +hep-ph/9505233 Phenomenology +hep-ph/9711351 Phenomenology +hep-ph/9908362 Phenomenology +hep-ph/9908363 Phenomenology +hep-ph/9908364 Phenomenology +hep-th/0101168 Theory +hep-th/0703023 Theory +hep-th/9110034 Theory +hep-th/9110057 Theory +hep-th/9110058 Theory +hep-th/9111004 Theory +hep-th/9111064 Theory +hep-th/9112017 Theory +hep-th/9112033 Theory +hep-th/9112045 Theory +hep-th/9112074 Theory +hep-th/9201009 Theory +hep-th/9201020 Theory +hep-th/9201040 Theory +hep-th/9201044 Theory +hep-th/9201054 Theory +hep-th/9201078 Theory +hep-th/9202037 Theory +hep-th/9202051 Theory +hep-th/9202054 Theory +hep-th/9202059 Theory +hep-th/9202074 Theory +hep-th/9202079 Theory +hep-th/9202092 Theory +hep-th/9203006 Theory +hep-th/9203008 Theory +hep-th/9203052 Theory +hep-th/9203071 Theory +hep-th/9203076 Theory +hep-th/9204028 Theory +hep-th/9204037 Theory +hep-th/9204049 Theory +hep-th/9204102 Theory +hep-th/9205033 Theory +hep-th/9205041 Theory +hep-th/9205053 Theory +hep-th/9205059 Theory +hep-th/9205079 Theory +hep-th/9205113 Theory +hep-th/9206065 Theory +hep-th/9206084 Theory +hep-th/9206094 Theory +hep-th/9207002 Theory +hep-th/9207003 Theory +hep-th/9207016 Theory +hep-th/9207017 Theory +hep-th/9207024 Theory +hep-th/9207043 Theory +hep-th/9207063 Theory +hep-th/9207077 Theory +hep-th/9207095 Theory +hep-th/9207105 Theory +hep-th/9207111 Theory +hep-th/9208053 Theory +hep-th/9208056 Theory +hep-th/9209008 Theory +hep-th/9209027 Theory +hep-th/9209064 Theory +hep-th/9209096 Theory +hep-th/9209101 Theory +hep-th/9209115 Theory +hep-th/9210013 Theory +hep-th/9210062 Theory +hep-th/9210069 Theory +hep-th/9210115 Theory +hep-th/9210136 Theory +hep-th/9210145 Theory +hep-th/9211011 Theory +hep-th/9211027 Theory +hep-th/9211056 Theory +hep-th/9211093 Theory +hep-th/9211099 Theory +hep-th/9211104 Theory +hep-th/9212033 Theory +hep-th/9212045 Theory +hep-th/9212048 Theory +hep-th/9212113 Theory +hep-th/9212114 Theory +hep-th/9212127 Theory +hep-th/9301004 Theory +hep-th/9301050 Theory +hep-th/9301054 Theory +hep-th/9301085 Theory +hep-th/9301086 Theory +hep-th/9301112 Theory +hep-th/9301127 Theory +hep-th/9302010 Theory +hep-th/9302016 Theory +hep-th/9302061 Theory +hep-th/9302062 Theory +hep-th/9302075 Theory +hep-th/9302100 Theory +hep-th/9302121 Theory +hep-th/9302126 Theory +hep-th/9303017 Theory +hep-th/9303028 Theory +hep-th/9303030 Theory +hep-th/9303032 Theory +hep-th/9303099 Theory +hep-th/9303104 Theory +hep-th/9303143 Theory +hep-th/9303157 Theory +hep-th/9303158 Theory +hep-th/9304034 Theory +hep-th/9304048 Theory +hep-th/9304059 Theory +hep-th/9304066 Theory +hep-th/9304072 Theory +hep-th/9304096 Theory +hep-th/9304114 Theory +hep-th/9304131 Theory +hep-th/9304133 Theory +hep-th/9304134 Theory +hep-th/9304151 Theory +hep-th/9304159 Theory +hep-th/9305014 Theory +hep-th/9305057 Theory +hep-th/9305097 Theory +hep-th/9305103 Theory +hep-th/9305115 Theory +hep-th/9305125 Theory +hep-th/9305126 Theory +hep-th/9305127 Theory +hep-th/9305137 Theory +hep-th/9306008 Theory +hep-th/9306009 Theory +hep-th/9306030 Theory +hep-th/9306038 Theory +hep-th/9306048 Theory +hep-th/9306081 Theory +hep-th/9306082 Theory +hep-th/9306120 Theory +hep-th/9306153 Theory +hep-th/9307042 Theory +hep-th/9307062 Theory +hep-th/9307077 Theory +hep-th/9307093 Theory +hep-th/9307104 Theory +hep-th/9307140 Theory +hep-th/9307143 Theory +hep-th/9307151 Theory +hep-th/9307172 Theory +hep-th/9307179 Theory +hep-th/9307191 Theory +hep-th/9307196 Theory +hep-th/9308030 Theory +hep-th/9308041 Theory +hep-th/9308046 Theory +hep-th/9308047 Theory +hep-th/9308062 Theory +hep-th/9308113 Theory +hep-th/9308115 Theory +hep-th/9308119 Theory +hep-th/9308122 Theory +hep-th/9308136 Theory +hep-th/9308150 Theory +hep-th/9308151 Theory +hep-th/9309002 Theory +hep-th/9309003 Theory +hep-th/9309015 Theory +hep-th/9309018 Theory +hep-th/9309028 Theory +hep-th/9309047 Theory +hep-th/9309090 Theory +hep-th/9309116 Theory +hep-th/9309119 Theory +hep-th/9309141 Theory +hep-th/9310047 Theory +hep-th/9310067 Theory +hep-th/9310108 Theory +hep-th/9310138 Theory +hep-th/9310178 Theory +hep-th/9310195 Theory +hep-th/9311007 Theory +hep-th/9311022 Theory +hep-th/9311065 Theory +hep-th/9311097 Theory +hep-th/9311122 Theory +hep-th/9311127 Theory +hep-th/9311164 Theory +hep-th/9311166 Theory +hep-th/9311177 Theory +hep-th/9311183 Theory +hep-th/9312005 Theory +hep-th/9312021 Theory +hep-th/9312027 Theory +hep-th/9312044 Theory +hep-th/9312053 Theory +hep-th/9312122 Theory +hep-th/9312136 Theory +hep-th/9312138 Theory +hep-th/9312149 Theory +hep-th/9312171 Theory +hep-th/9312189 Theory +hep-th/9312194 Theory +hep-th/9401014 Theory +hep-th/9401041 Theory +hep-th/9401083 Theory +hep-th/9401102 Theory +hep-th/9401113 Theory +hep-th/9401124 Theory +hep-th/9401139 Theory +hep-th/9401154 Theory +hep-th/9402023 Theory +hep-th/9402085 Theory +hep-th/9402086 Theory +hep-th/9402088 Theory +hep-th/9402096 Theory +hep-th/9402098 Theory +hep-th/9402135 Theory +hep-th/9402140 Theory +hep-th/9402149 Theory +hep-th/9403034 Theory +hep-th/9403039 Theory +hep-th/9403073 Theory +hep-th/9403083 Theory +hep-th/9403085 Theory +hep-th/9403106 Theory +hep-th/9403113 Theory +hep-th/9403114 Theory +hep-th/9403131 Theory +hep-th/9403187 Theory +hep-th/9404156 Theory +hep-th/9404176 Theory +hep-th/9405007 Theory +hep-th/9405024 Theory +hep-th/9405029 Theory +hep-th/9405036 Theory +hep-th/9405086 Theory +hep-th/9405099 Theory +hep-th/9405139 Theory +hep-th/9405147 Theory +hep-th/9405162 Theory +hep-th/9405169 Theory +hep-th/9405198 Theory +hep-th/9406017 Theory +hep-th/9406051 Theory +hep-th/9406059 Theory +hep-th/9406159 Theory +hep-th/9406175 Theory +hep-th/9406183 Theory +hep-th/9406208 Theory +hep-th/9406209 Theory +hep-th/9407001 Theory +hep-th/9407025 Theory +hep-th/9407026 Theory +hep-th/9407036 Theory +hep-th/9407048 Theory +hep-th/9407051 Theory +hep-th/9407064 Theory +hep-th/9407072 Theory +hep-th/9407096 Theory +hep-th/9407101 Theory +hep-th/9407160 Theory +hep-th/9407195 Theory +hep-th/9408004 Theory +hep-th/9408039 Theory +hep-th/9408048 Theory +hep-th/9408088 Theory +hep-th/9408111 Theory +hep-th/9408116 Theory +hep-th/9408134 Theory +hep-th/9408171 Theory +hep-th/9409005 Theory +hep-th/9409010 Theory +hep-th/9409013 Theory +hep-th/9409015 Theory +hep-th/9409039 Theory +hep-th/9409099 Theory +hep-th/9409109 Theory +hep-th/9409116 Theory +hep-th/9409152 Theory +hep-th/9409185 Theory +hep-th/9409187 Theory +hep-th/9410016 Theory +hep-th/9410023 Theory +hep-th/9410041 Theory +hep-th/9410095 Theory +hep-th/9410111 Theory +hep-th/9410140 Theory +hep-th/9410152 Theory +hep-th/9410159 Theory +hep-th/9410203 Theory +hep-th/9410209 Theory +hep-th/9410217 Theory +hep-th/9410219 Theory +hep-th/9410227 Theory +hep-th/9410235 Theory +hep-th/9411018 Theory +hep-th/9411020 Theory +hep-th/9411038 Theory +hep-th/9411051 Theory +hep-th/9411068 Theory +hep-th/9411077 Theory +hep-th/9411086 Theory +hep-th/9411090 Theory +hep-th/9411129 Theory +hep-th/9411166 Theory +hep-th/9411169 Theory +hep-th/9411189 Theory +hep-th/9412026 Theory +hep-th/9412076 Theory +hep-th/9412077 Theory +hep-th/9412092 Theory +hep-th/9412106 Theory +hep-th/9412107 Theory +hep-th/9412123 Theory +hep-th/9412132 Theory +hep-th/9412157 Theory +hep-th/9412159 Theory +hep-th/9412162 Theory +hep-th/9501030 Theory +hep-th/9501048 Theory +hep-th/9501073 Theory +hep-th/9501102 Theory +hep-th/9501144 Theory +hep-th/9501145 Theory +hep-th/9502029 Theory +hep-th/9502086 Theory +hep-th/9502101 Theory +hep-th/9502138 Theory +hep-th/9503084 Theory +hep-th/9503085 Theory +hep-th/9503093 Theory +hep-th/9503133 Theory +hep-th/9503144 Theory +hep-th/9503174 Theory +hep-th/9503183 Theory +hep-th/9503187 Theory +hep-th/9503195 Theory +hep-th/9503218 Theory +hep-th/9503236 Theory +hep-th/9504001 Theory +hep-th/9504043 Theory +hep-th/9504075 Theory +hep-th/9504091 Theory +hep-th/9504092 Theory +hep-th/9504095 Theory +hep-th/9504099 Theory +hep-th/9504108 Theory +hep-th/9504112 Theory +hep-th/9504120 Theory +hep-th/9504150 Theory +hep-th/9504162 Theory +hep-th/9505023 Theory +hep-th/9505025 Theory +hep-th/9505027 Theory +hep-th/9506065 Theory +hep-th/9612135 Theory +hep-th/9612197 Theory +math/0307392 Rings and Algebras +math/0308010 Rings and Algebras +math/0407052 Representation Theory +math/0411631 Representation Theory +math/0504282 Category Theory +math/0604412 Category Theory +math/0605136 Representation Theory +math/0611542 Representation Theory +math/0702492 Rings and Algebras +nucl-th/9301003 +nucl-th/9304017 +nucl-th/9305005 +nucl-th/9307025 +nucl-th/9311018 +nucl-th/9404007 +nucl-th/9405031 +nucl-th/9406025 +nucl-th/9411015 +nucl-th/9412016 +nucl-th/9501009 +nucl-th/9504025 +quant-ph/0101104 +0705.1613 Statistics Theory +0707.1072 Algebraic Geometry +0709.1826 Complex Variables +0801.0522 Complex Variables +0801.0712 Statistics Theory +0801.3747 Number Theory +0801.4239 Complex Variables +0802.2039 Theory +0802.2069 Materials Science +0805.0228 Statistics Theory +0806.0907 +0806.2032 Theory +0806.3380 Algebraic Geometry +0807.1205 Probability +0807.2637 Chaotic Dynamics +0808.0091 Experiment +0809.4097 Superconductivity +0810.0055 Computational Finance +0810.1674 Algebraic Geometry +0810.3898 Functional Analysis +0811.1902 Probability +0811.4551 Algebraic Geometry +0812.2724 Probability +0901.4606 Materials Science +0902.2705 Other Condensed Matter +0904.3049 Materials Science +0904.3123 Algebraic Topology +0905.4825 Statistical Mechanics +0906.2751 Solar and Stellar Astrophysics +0906.3866 High Energy Astrophysical Phenomena +0907.0931 Information Theory +0907.3083 +0907.3689 Strongly Correlated Electrons +0907.4657 Superconductivity +0907.5112 Probability +0909.2810 Numerical Analysis +0910.1647 +0910.3469 Mesoscale and Nanoscale Physics +0910.4947 Phenomenology +0911.0587 Strongly Correlated Electrons +0911.1897 Statistical Mechanics +0911.5173 Atomic Physics +0912.0809 Materials Science +0912.2155 Exactly Solvable and Integrable Systems +0912.5230 High Energy Astrophysical Phenomena +1001.0570 Phenomenology +1001.0874 Geometric Topology +1001.1646 Number Theory +1001.1868 Optics +1001.1899 Operator Algebras +1001.1929 Number Theory +1001.1991 Databases +1001.2013 Functional Analysis +1001.2025 Phenomenology +1001.2027 Dynamical Systems +1001.2032 Algebraic Topology +1001.2034 Computational Complexity +1001.2043 Instrumentation and Methods for Astrophysics +1001.2044 Number Theory +1001.2046 Chemical Physics +1001.2048 Instrumentation and Methods for Astrophysics +1001.2049 Instrumentation and Methods for Astrophysics +1001.2051 Number Theory +1001.2052 Computational Complexity +1001.2053 Solar and Stellar Astrophysics +1001.2054 Differential Geometry +1001.2055 Methodology +1001.2056 Algebraic Topology +1001.2057 Materials Science +1001.2058 Methodology +1001.2062 Information Theory +1001.2064 Fluid Dynamics +1001.2067 Information Theory +1001.2068 Dynamical Systems +1001.2070 Combinatorics +1001.2073 Combinatorics +1001.2075 Phenomenology +1001.2076 Information Theory +1001.2078 Combinatorics +1001.2080 Geometric Topology +1001.2082 Numerical Analysis +1001.2086 Logic in Computer Science +1001.2088 Geometric Topology +1001.2089 Statistics Theory +1001.2090 Classical Physics +1001.2092 Algebraic Geometry +1001.2093 Soft Condensed Matter +1001.2094 Statistics Theory +1001.2097 Neural and Evolutionary Computing +1001.2099 +1001.2102 Statistics Theory +1001.2105 Cosmology and Nongalactic Astrophysics +1001.2108 Solar and Stellar Astrophysics +1001.2117 Information Theory +1001.2119 Functional Analysis +1001.2121 Analysis of PDEs +1001.2122 Statistics Theory +1001.2125 Statistics Theory +1001.2126 Cosmology and Nongalactic Astrophysics +1001.2128 Experiment +1001.2129 Differential Geometry +1001.2131 Probability +1001.2135 +1001.2137 Probability +1001.2138 Statistics Theory +1001.2144 Statistics Theory +1001.2152 Statistics Theory +1001.2156 Number Theory +1001.2159 Exactly Solvable and Integrable Systems +1001.2161 Combinatorics +1001.2163 Probability +1001.2164 Information Theory +1001.2167 Astrophysics of Galaxies +1001.2172 Physics and Society +1001.2173 Probability +1001.2174 +1001.2182 Probability +1001.2185 Methodology +1001.2186 Information Retrieval +1001.2188 Programming Languages +1001.2194 Rings and Algebras +1001.2196 Rings and Algebras +1001.2197 Fluid Dynamics +1001.2198 Information Theory +1001.2205 Information Theory +1001.2209 Combinatorics +1001.2210 Phenomenology +1001.2212 Cosmology and Nongalactic Astrophysics +1001.2217 Mesoscale and Nanoscale Physics +1001.2225 +1001.2233 Number Theory +1001.2234 +1001.2247 Geometric Topology +1001.2249 Cryptography and Security +1001.2250 Other Computer Science +1001.2253 Other Computer Science +1001.2259 Dynamical Systems +1001.2261 Other Computer Science +1001.2262 Distributed, Parallel, and Cluster Computing +1001.2263 Computation and Language +1001.2264 Other Computer Science +1001.2267 Computation and Language +1001.2268 Cryptography and Security +1001.2270 Databases +1001.2271 Materials Science +1001.2272 Networking and Internet Architecture +1001.2274 Information Theory +1001.2275 Databases +1001.2277 Artificial Intelligence +1001.2279 Artificial Intelligence +1001.2280 Networking and Internet Architecture +1001.2283 Information Theory +1001.2284 Information Theory +1001.2288 Soft Condensed Matter +1001.2297 Analysis of PDEs +1001.2298 Information Theory +cond-mat/0201070 +cond-mat/0201071 +cond-mat/0402542 Mesoscale and Nanoscale Physics +cond-mat/0403228 Materials Science +cond-mat/0411215 Materials Science +cond-mat/0502163 Materials Science +cond-mat/0603732 Other Condensed Matter +cond-mat/0604192 Materials Science +cs/0604079 Discrete Mathematics +math/0301325 Group Theory +math/0301328 Algebraic Topology +math/0612009 Algebraic Geometry +math/0702607 Algebraic Topology +math/0703378 Optimization and Control +physics/0512166 General Physics +1003.4079 Computational Engineering, Finance, and Science +0705.3953 Symplectic Geometry +0707.1818 Logic +0711.1859 Category Theory +0712.0418 Category Theory +0712.1864 Category Theory +0712.3377 Superconductivity +0801.1679 Phenomenology +0801.4067 Quantum Algebra +0801.4107 Category Theory +0802.1593 Operator Algebras +0803.0890 +0803.2581 +0805.3180 +0805.3330 +0806.2105 +0807.2891 +0808.1974 Algebraic Geometry +0808.2910 Number Theory +0809.3661 +0809.3962 +0810.1825 +0811.2782 Probability +0811.4353 Superconductivity +0901.1499 Logic +0901.4134 Information Theory +0901.4277 Algebraic Geometry +0902.0224 Superconductivity +0902.1142 Algebraic Geometry +0902.2350 Strongly Correlated Electrons +0904.1007 Cosmology and Nongalactic Astrophysics +0904.4655 +0905.2405 +0905.3021 Logic +0905.3989 Probability +0905.4885 Strongly Correlated Electrons +0905.4896 Strongly Correlated Electrons +0906.0073 +0906.2097 Strongly Correlated Electrons +0906.2276 Materials Science +0907.0814 Combinatorics +0907.1838 Phenomenology +0907.2667 +0907.2810 Mesoscale and Nanoscale Physics +0907.3240 +0907.4076 Phenomenology +0907.4424 Theory +0908.1299 Strongly Correlated Electrons +0908.2485 Quantum Gases +0908.3308 +0908.4096 Superconductivity +0908.4134 Mesoscale and Nanoscale Physics +0909.0457 Materials Science +0909.3018 Mesoscale and Nanoscale Physics +0909.4826 Biological Physics +0910.3567 Strongly Correlated Electrons +0910.4123 Quantum Gases +0911.0353 Optimization and Control +0911.0472 Lattice +0911.1039 Experiment +0911.1213 Theory +0911.1323 Phenomenology +0911.1758 Mesoscale and Nanoscale Physics +0911.3195 Distributed, Parallel, and Cluster Computing +0911.3491 Number Theory +0911.4142 Phenomenology +0911.4296 Theory +0911.4778 Subcellular Processes +0911.5417 +0912.1113 +0912.2713 +1001.0873 Soft Condensed Matter +1001.0934 +1001.1336 Statistical Mechanics +1001.3733 Phenomenology +1002.0063 Formal Languages and Automata Theory +1002.0338 Astrophysics of Galaxies +1002.0648 +1002.0797 Data Analysis, Statistics and Probability +1002.0799 Superconductivity +1002.1581 Networking and Internet Architecture +1002.1807 Lattice +1002.1906 Theory +1002.3961 Mesoscale and Nanoscale Physics +1002.3976 Theory +1002.4130 Number Theory +1002.4284 Mesoscale and Nanoscale Physics +1002.4937 Theory +1003.0249 Theory +1003.0441 +1003.0453 Cosmology and Nongalactic Astrophysics +1003.0455 Instrumentation and Methods for Astrophysics +1003.0459 Cosmology and Nongalactic Astrophysics +1003.0461 Physics Education +1003.0467 Mesoscale and Nanoscale Physics +1003.0469 Computer Science and Game Theory +1003.0476 +1003.0480 Computational Complexity +1003.0486 Solar and Stellar Astrophysics +1003.0487 Computer Vision and Pattern Recognition +1003.0490 Representation Theory +1003.0491 Physics Education +1003.0493 General Physics +1003.0495 Numerical Analysis +1003.0497 Optics +1003.0498 Phenomenology +1003.0500 +1003.0504 Mesoscale and Nanoscale Physics +1003.0505 General Physics +1003.0511 Discrete Mathematics +1003.0517 Mesoscale and Nanoscale Physics +1003.0519 Instrumentation and Methods for Astrophysics +1003.0521 Experiment +1003.0522 Formal Languages and Automata Theory +1003.0526 Commutative Algebra +1003.0530 Lattice +1003.0531 Plasma Physics +1003.0536 Fluid Dynamics +1003.0551 Numerical Analysis +1003.0553 Strongly Correlated Electrons +1003.0556 Astrophysics of Galaxies +1003.0561 +1003.0563 Chemical Physics +1003.0567 Algebraic Geometry +1003.0568 Mesoscale and Nanoscale Physics +1003.0569 Optimization and Control +1003.0572 Optimization and Control +1003.0573 Number Theory +1003.0575 Other Quantitative Biology +1003.0577 Cosmology and Nongalactic Astrophysics +1003.0579 Functional Analysis +1003.0583 +1003.0590 Artificial Intelligence +1003.0591 Functional Analysis +1003.0594 +1003.0595 Solar and Stellar Astrophysics +1003.0596 Quantum Gases +1003.0602 Representation Theory +1003.0608 Solar and Stellar Astrophysics +1003.0619 Mesoscale and Nanoscale Physics +1003.0628 Computation and Language +1003.0630 Phenomenology +1003.0637 Combinatorics +1003.0638 Optics +1003.0652 Quantum Gases +1003.0653 +1003.0659 Artificial Intelligence +1003.0662 Computer Science and Game Theory +1003.0664 Optimization and Control +gr-qc/0702123 +gr-qc/9501002 +gr-qc/9802047 +hep-ph/0110035 Phenomenology +math/0312422 Category Theory +math/0403174 Spectral Theory +math/0404286 Category Theory +math/0701093 Number Theory +math/0703713 Category Theory +quant-ph/0310095 +quant-ph/0310096 +quant-ph/0412050 +0704.0492 Cryptography and Security +0705.2004 +0706.4243 Theory +0711.2443 Algebraic Geometry +0803.0622 Algebraic Geometry +0805.0172 +0809.3049 Numerical Analysis +0810.3800 +0810.4052 +0812.2047 Spectral Theory +0902.2594 Instrumentation and Methods for Astrophysics +0903.5490 Cosmology and Nongalactic Astrophysics +0903.5536 Theory +0904.0830 Computational Finance +0904.2055 Optics +0904.3182 Mesoscale and Nanoscale Physics +0904.3908 Number Theory +0905.0472 Cosmology and Nongalactic Astrophysics +0905.1492 Atomic Physics +0905.2570 Cosmology and Nongalactic Astrophysics +0905.3367 High Energy Astrophysical Phenomena +0905.3577 Lattice +0906.0659 Classical Analysis and ODEs +0906.1868 Solar and Stellar Astrophysics +0906.1933 +0906.4860 +0906.5501 Theory +0907.0409 Cosmology and Nongalactic Astrophysics +0907.2540 Mesoscale and Nanoscale Physics +0907.3304 Physics and Society +0908.0798 Chemical Physics +0908.0875 Materials Science +0908.1361 Phenomenology +0908.1531 Phenomenology +0908.3046 Quantum Gases +0908.3416 Numerical Analysis +0909.3839 +0909.5268 Information Theory +0910.0764 Theory +0910.1577 Molecular Networks +0910.1703 Theory +0910.2952 Optics +0910.3089 Phenomenology +0910.3167 Phenomenology +0910.3181 Phenomenology +0910.3184 +0910.3194 Lattice +0910.3287 Theory +0910.3405 Theory +0910.3512 Phenomenology +0910.3541 Lattice +0910.3553 Instrumentation and Detectors +0910.5292 Cosmology and Nongalactic Astrophysics +0910.5557 Superconductivity +0911.0738 Instrumentation and Methods for Astrophysics +0911.1024 Phenomenology +0911.2201 +0911.2592 Theory +0911.3011 Phenomenology +0912.0854 +0912.1048 General Physics +0912.1444 Pattern Formation and Solitons +0912.2097 Solar and Stellar Astrophysics +0912.2622 +0912.2752 Superconductivity +1001.1937 Multimedia +1001.2661 Soft Condensed Matter +1001.2762 Mesoscale and Nanoscale Physics +1001.2943 Strongly Correlated Electrons +1001.3481 Graphics +1001.3483 Networking and Internet Architecture +1002.0140 Machine Learning +1002.0193 Phenomenology +1002.0385 Theory +1002.0389 Spectral Theory +1002.0416 Computer Vision and Pattern Recognition +1002.0569 Quantum Gases +1002.0598 Fluid Dynamics +1002.0603 Algebraic Geometry +1002.0606 Spectral Theory +1002.0607 Spectral Theory +1002.0609 Statistical Finance +1002.0611 Mesoscale and Nanoscale Physics +1002.0616 Methodology +1002.0620 Analysis of PDEs +1002.0623 Phenomenology +1002.0634 Mesoscale and Nanoscale Physics +1002.0643 Astrophysics of Galaxies +1002.0644 Networking and Internet Architecture +1002.0654 +1002.0655 Superconductivity +1002.0656 General Physics +1002.0661 Combinatorics +1002.0662 Earth and Planetary Astrophysics +1002.0665 Differential Geometry +1002.0666 +1002.0670 Number Theory +1002.0678 Software Engineering +1002.0680 Information Theory +1002.0682 Networking and Internet Architecture +1002.0685 Mesoscale and Nanoscale Physics +1002.0686 Analysis of PDEs +1002.0688 Analysis of PDEs +1002.0694 Biomolecules +1002.0709 Learning +1002.0710 Dynamical Systems +1002.0712 Distributed, Parallel, and Cluster Computing +1002.0718 Astrophysics of Galaxies +1002.0719 Materials Science +1002.0720 Theory +1002.0724 Mesoscale and Nanoscale Physics +1002.0725 Optics +1002.0729 Statistics Theory +1002.0737 Astrophysics of Galaxies +1002.0739 Symbolic Computation +1002.0745 Neural and Evolutionary Computing +1002.0746 Optics +1002.0751 Statistical Mechanics +1002.0754 High Energy Astrophysical Phenomena +1002.0755 Fluid Dynamics +1002.0757 Information Theory +1002.0761 Representation Theory +1002.0767 Algebraic Geometry +1002.0773 Computation and Language +1002.0781 Optics +1002.0782 Pattern Formation and Solitons +1002.0789 Dynamical Systems +1002.0798 +1002.0802 Optics +1002.0806 High Energy Astrophysical Phenomena +1002.0810 Combinatorics +1002.0813 Theory +1002.0814 Differential Geometry +1002.0826 Complex Variables +cond-mat/0507480 Other Condensed Matter +hep-ph/0006160 Phenomenology +hep-ph/0012013 Phenomenology +hep-ph/0012311 Phenomenology +hep-ph/0103049 Phenomenology +hep-ph/0107129 Phenomenology +hep-ph/0201308 Phenomenology +hep-ph/0404059 Phenomenology +hep-ph/0409233 Phenomenology +hep-ph/0512155 Phenomenology +hep-ph/9707323 Phenomenology +hep-ph/9804233 Phenomenology +hep-ph/9807362 Phenomenology +hep-ph/9811347 Phenomenology +hep-ph/9903502 Phenomenology +hep-ph/9908235 Phenomenology +hep-ph/9910254 Phenomenology +hep-th/0001022 Theory +hep-th/0212305 Theory +hep-th/0512010 Theory +hep-th/0602245 Theory +hep-th/9509047 Theory +hep-th/9510089 Theory +hep-th/9610220 Theory +hep-th/9705217 Theory +hep-th/9707123 Theory +hep-th/9709002 Theory +hep-th/9710063 Theory +math-ph/0607048 +math/0107188 Category Theory +math/0207284 Number Theory +math/0212377 Category Theory +math/0404016 Category Theory +math/0404263 Number Theory +math/0411343 Dynamical Systems +math/0510147 Number Theory +math/0610260 Category Theory +math/0701346 Probability +physics/0501164 Data Analysis, Statistics and Probability +0704.1553 Operator Algebras +0706.4068 +0707.2981 Experiment +0708.3553 +0709.4458 +0709.4574 Lattice +0710.3238 Dynamical Systems +0711.2606 Experiment +0801.2721 Phenomenology +0801.3650 +0801.4020 +0801.4462 +0801.4555 +0801.4749 +0802.2641 Probability +0802.4039 Other Condensed Matter +0803.0224 Lattice +0803.1481 +0803.2161 Phenomenology +0803.4344 Classical Analysis and ODEs +0804.1631 +0804.2260 +0804.2481 Differential Geometry +0805.0705 +0805.0875 +0805.1369 +0805.2678 Statistical Mechanics +0806.2145 Theory +0806.3247 Phenomenology +0807.0902 Theory +0807.3961 Phenomenology +0807.4920 Mesoscale and Nanoscale Physics +0808.2840 +0808.3085 +0809.1230 +0809.1767 Phenomenology +0809.4770 Statistical Mechanics +0810.0039 +0810.0701 Experiment +0810.1114 Quantum Algebra +0810.2034 +0810.2314 +0810.2479 Commutative Algebra +0810.2989 Theory +0810.3941 Materials Science +0810.5132 +0811.0989 +0811.1444 +0811.2059 Phenomenology +0811.2667 Theory +0812.0337 +0812.4780 +0901.2540 Theory +0902.0131 High Energy Astrophysical Phenomena +0902.0158 +0902.0575 Theory +0902.2460 Cosmology and Nongalactic Astrophysics +0902.3408 Theory +0903.3037 High Energy Astrophysical Phenomena +0903.4436 +0904.0700 Phenomenology +0904.3957 Representation Theory +0905.0524 High Energy Astrophysical Phenomena +0905.2253 High Energy Astrophysical Phenomena +0905.2763 Theory +0905.4162 Information Retrieval +0905.4490 Strongly Correlated Electrons +0906.4562 Phenomenology +0906.5012 Phenomenology +0907.0764 High Energy Astrophysical Phenomena +0907.1336 Representation Theory +0907.4690 Phenomenology +0908.0529 Earth and Planetary Astrophysics +0908.1392 Theory +0908.1785 Phenomenology +0908.1840 Cosmology and Nongalactic Astrophysics +0908.3084 Algebraic Topology +0909.0244 Commutative Algebra +0909.0696 Theory +0909.0727 Theory +0909.0994 Statistical Mechanics +0909.1294 Theory +0909.1883 Theory +0909.2470 High Energy Astrophysical Phenomena +0909.2615 Phenomenology +0909.3598 Analysis of PDEs +0909.4578 Theory +0909.4943 Phenomenology +0909.5529 Phenomenology +0909.5683 +0910.0174 Phenomenology +0910.1106 Phenomenology +0910.1350 Phenomenology +0910.2225 Theory +0910.2527 Theory +0910.2826 Classical Analysis and ODEs +0910.4094 Chemical Physics +0910.4526 Theory +0910.4930 +0910.5159 Theory +0911.0658 Theory +0911.1107 Theory +0911.1882 Phenomenology +0911.2211 Theory +0911.2790 Materials Science +0911.2897 Phenomenology +0911.2911 Phenomenology +0911.2955 Phenomenology +0911.3041 +0911.3128 Phenomenology +0911.5264 Statistical Mechanics +0912.0214 Lattice +0912.0608 Algebraic Geometry +0912.0658 +0912.1599 Phenomenology +0912.3006 Theory +0912.3068 Phenomenology +0912.3109 Lattice +0912.3343 Statistical Mechanics +0912.3488 Numerical Analysis +1001.2658 +1001.2759 Differential Geometry +1001.4229 Statistical Mechanics +1002.0258 Superconductivity +1002.1743 Astrophysics of Galaxies +1002.1896 Physics and Society +1003.0347 Solar and Stellar Astrophysics +1003.1654 Algebraic Geometry +1003.1737 Theory +1003.2747 Analysis of PDEs +1003.3063 Experiment +1003.3293 +1003.3365 +1003.3402 +1003.3457 Cryptography and Security +1003.3469 Algebraic Geometry +1003.3471 Commutative Algebra +1003.3477 Discrete Mathematics +1003.3485 +1003.3489 +1003.3490 Computational Geometry +1003.3491 +1003.3492 Cryptography and Security +1003.3493 +1003.3499 Computational Geometry +1003.3500 Functional Analysis +1003.3515 Probability +1003.3523 Experiment +1003.3524 Optics +1003.3530 Digital Libraries +1003.3533 Multimedia +1003.3537 Earth and Planetary Astrophysics +1003.3539 Statistics Theory +1003.3541 Statistical Mechanics +1003.3545 +1003.3546 Statistics Theory +1003.3547 Representation Theory +1003.3549 Materials Science +1003.3554 Geometric Topology +1003.3557 Logic +1003.3567 Geometric Topology +1003.3570 Machine Learning +1003.3572 Materials Science +1003.3574 +1003.3577 +1003.3578 Analysis of PDEs +1003.3585 Analysis of PDEs +1003.3586 Physics and Society +1003.3596 Spectral Theory +1003.3597 Spectral Theory +1003.3603 Optics +1003.3605 Algebraic Geometry +1003.3606 +1003.3607 Analysis of PDEs +1003.3619 Information Theory +1003.3627 Analysis of PDEs +1003.3628 Superconductivity +1003.3629 Logic in Computer Science +1003.3640 Rings and Algebras +1003.3650 +1003.3652 Instrumentation and Methods for Astrophysics +1003.3654 Computer Vision and Pattern Recognition +1003.3659 History and Overview +1003.3661 Digital Libraries +1003.3662 +1003.3665 Combinatorics +astro-ph/0006362 +astro-ph/0007155 +astro-ph/0101494 +astro-ph/0103185 +astro-ph/0106491 +astro-ph/0108404 +astro-ph/0111044 +astro-ph/0111407 +astro-ph/0308506 +astro-ph/0311609 +astro-ph/0312019 +astro-ph/0405233 +astro-ph/0503409 +astro-ph/0504331 +astro-ph/0505630 +astro-ph/0506029 +astro-ph/0506170 +astro-ph/0506443 +astro-ph/0507515 +astro-ph/0507534 +astro-ph/0508332 +astro-ph/0508340 +astro-ph/0509060 +astro-ph/0509144 +astro-ph/0509660 +astro-ph/0509766 +astro-ph/0510489 +astro-ph/0510566 +astro-ph/0510677 +astro-ph/0511576 +astro-ph/0511579 +astro-ph/0511750 +astro-ph/0511751 +astro-ph/0512358 +astro-ph/0512392 +astro-ph/0512615 +astro-ph/0601125 +astro-ph/0601173 +astro-ph/0601350 +astro-ph/0602060 +astro-ph/0602135 +astro-ph/0602142 +astro-ph/0602236 +astro-ph/0602490 +astro-ph/0602497 +astro-ph/0602541 +astro-ph/0603279 +astro-ph/0603730 +astro-ph/0604105 +astro-ph/0604177 +astro-ph/0605111 +astro-ph/0605256 +astro-ph/0605507 +astro-ph/0605607 +astro-ph/0605752 +astro-ph/0607110 +astro-ph/0607620 +astro-ph/0608257 +astro-ph/0608457 +astro-ph/0609825 +astro-ph/0610570 +astro-ph/0610635 +astro-ph/0610845 +astro-ph/0611081 +astro-ph/0611089 +astro-ph/0611148 +astro-ph/0611276 +astro-ph/0612031 +astro-ph/0702220 +astro-ph/0702319 +astro-ph/0703286 +astro-ph/0703447 +astro-ph/0703765 +astro-ph/9411061 +astro-ph/9803138 +astro-ph/9806270 +cond-mat/0408669 Statistical Mechanics +cond-mat/0509281 Other Condensed Matter +cond-mat/0511737 Other Condensed Matter +cond-mat/9907288 +gr-qc/0405141 +gr-qc/0503037 +gr-qc/0510117 +gr-qc/0609059 +gr-qc/9708047 +gr-qc/9803060 +hep-ex/0312035 Experiment +hep-ex/0503021 Experiment +hep-ex/0503049 Experiment +hep-ex/0504009 Experiment +hep-ex/0504014 Experiment +hep-ex/0504035 Experiment +hep-ex/0504039 Experiment +hep-ex/0504047 Experiment +hep-ex/0504049 Experiment +hep-ex/0505004 Experiment +hep-ex/0505084 Experiment +hep-ex/0505092 Experiment +hep-ex/0505099 Experiment +hep-ex/0506007 Experiment +hep-ex/0506036 Experiment +hep-ex/0506062 Experiment +hep-ex/0506066 Experiment +hep-ex/0506070 Experiment +hep-ex/0506081 Experiment +hep-ex/0506082 Experiment +hep-ex/0507002 Experiment +hep-ex/0507003 Experiment +hep-ex/0507012 Experiment +hep-ex/0507023 Experiment +hep-ex/0507025 Experiment +hep-ex/0507026 Experiment +hep-ex/0507031 Experiment +hep-ex/0507038 Experiment +hep-ex/0507054 Experiment +hep-ex/0507069 Experiment +hep-ex/0507090 Experiment +hep-ex/0508001 Experiment +hep-ex/0508004 Experiment +hep-ex/0508012 Experiment +hep-ex/0508013 Experiment +hep-ex/0508039 Experiment +hep-ex/0509036 Experiment +hep-ex/0509040 Experiment +hep-ex/0510051 Experiment +hep-ex/0510070 Experiment +hep-ex/0511015 Experiment +hep-ex/0512023 Experiment +hep-ex/0512028 Experiment +hep-ex/0512031 Experiment +hep-ex/0512067 Experiment +hep-ex/0601017 Experiment +hep-ex/0601046 Experiment +hep-ex/0602006 Experiment +hep-ex/0602049 Experiment +hep-ex/0603013 Experiment +hep-ex/0603040 Experiment +hep-ex/0603048 Experiment +hep-ex/0603050 Experiment +hep-ex/0603052 Experiment +hep-ex/0603053 Experiment +hep-ex/0603054 Experiment +hep-ex/0604006 Experiment +hep-ex/0604007 Experiment +hep-ex/0604009 Experiment +hep-ex/0604012 Experiment +hep-ex/0604014 Experiment +hep-ex/0604016 Experiment +hep-ex/0604017 Experiment +hep-ex/0604030 Experiment +hep-ex/0604031 Experiment +hep-ex/0604037 Experiment +hep-ex/0605003 Experiment +hep-ex/0605008 Experiment +hep-ex/0605017 Experiment +hep-ex/0605018 Experiment +hep-ex/0605024 Experiment +hep-ex/0605036 Experiment +hep-ex/0605037 Experiment +hep-ex/0605044 Experiment +hep-ex/0605075 Experiment +hep-ex/0606026 Experiment +hep-ex/0606031 Experiment +hep-ex/0606039 Experiment +hep-ex/0606050 Experiment +hep-ex/0606054 Experiment +hep-ex/0607039 Experiment +hep-ex/0607044 Experiment +hep-ex/0607050 Experiment +hep-ex/0607057 Experiment +hep-ex/0607063 Experiment +hep-ex/0607071 Experiment +hep-ex/0607083 Experiment +hep-ex/0607089 Experiment +hep-ex/0607092 Experiment +hep-ex/0607094 Experiment +hep-ex/0607109 Experiment +hep-ex/0607111 Experiment +hep-ex/0607113 Experiment +hep-ex/0608003 Experiment +hep-ex/0608005 Experiment +hep-ex/0608006 Experiment +hep-ex/0608009 Experiment +hep-ex/0608016 Experiment +hep-ex/0608036 Experiment +hep-ex/0608051 Experiment +hep-ex/0608055 Experiment +hep-ex/0609004 Experiment +hep-ex/0609027 Experiment +hep-ex/0609033 Experiment +hep-ex/0609052 Experiment +hep-ex/0610018 Experiment +hep-ex/0610027 Experiment +hep-ex/0610057 Experiment +hep-ex/0610067 Experiment +hep-ex/0610073 Experiment +hep-ex/0611028 Experiment +hep-ex/0611030 Experiment +hep-ex/0611037 Experiment +hep-ex/0612017 Experiment +hep-ex/0612020 Experiment +hep-ex/0612021 Experiment +hep-ex/0612050 Experiment +hep-ex/0701035 Experiment +hep-ex/0702010 Experiment +hep-ex/0703037 Experiment +hep-lat/0005013 Lattice +hep-lat/0011065 Lattice +hep-lat/0110006 Lattice +hep-lat/0110181 Lattice +hep-lat/0110197 Lattice +hep-lat/0209092 Lattice +hep-lat/0209116 Lattice +hep-lat/0209136 Lattice +hep-lat/0211031 Lattice +hep-lat/0306018 Lattice +hep-lat/0309007 Lattice +hep-lat/0309128 Lattice +hep-lat/0310050 Lattice +hep-lat/0406031 Lattice +hep-lat/0407004 Lattice +hep-lat/0409110 Lattice +hep-lat/0504017 Lattice +hep-lat/0506031 Lattice +hep-lat/0507005 Lattice +hep-lat/0509091 Lattice +hep-lat/0509165 Lattice +hep-lat/0510014 Lattice +hep-lat/0510017 Lattice +hep-lat/0511009 Lattice +hep-lat/0605006 Lattice +hep-lat/0610084 Lattice +hep-lat/0610086 Lattice +hep-lat/0701013 Lattice +hep-lat/9208004 Lattice +hep-lat/9211065 Lattice +hep-lat/9308007 Lattice +hep-lat/9311062 Lattice +hep-lat/9312064 Lattice +hep-lat/9402001 Lattice +hep-lat/9411061 Lattice +hep-lat/9501015 Lattice +hep-lat/9503006 Lattice +hep-lat/9503020 Lattice +hep-lat/9507003 Lattice +hep-lat/9509061 Lattice +hep-lat/9608031 Lattice +hep-lat/9706021 Lattice +hep-lat/9710035 Lattice +hep-lat/9710094 Lattice +hep-lat/9807046 Lattice +hep-lat/9809187 Lattice +hep-lat/9811003 Lattice +hep-ph/0003020 Phenomenology +hep-ph/0008043 Phenomenology +hep-ph/0101302 Phenomenology +hep-ph/0110171 Phenomenology +hep-ph/0203119 Phenomenology +hep-ph/0506306 Phenomenology +hep-ph/0604056 Phenomenology +hep-ph/0702092 Phenomenology +hep-ph/9810322 Phenomenology +hep-ph/9810437 Phenomenology +hep-ph/9903364 Phenomenology +hep-ph/9910204 Phenomenology +hep-th/0212018 Theory +hep-th/9609218 Theory +hep-th/9807181 Theory +math/0701645 Operator Algebras +physics/0005014 Atomic Physics +physics/0605034 Atomic Physics +physics/0703148 Atomic Physics +quant-ph/0611053 +0704.3839 +0706.4176 +0708.0086 +0708.2855 History and Philosophy of Physics +0803.4498 +0806.2390 +0809.0235 +0811.0821 +0811.2671 Phenomenology +0812.1187 Materials Science +0812.1356 Theory +0812.2789 Group Theory +0812.3315 Differential Geometry +0901.1992 +0901.2252 Theory +0902.1257 Programming Languages +0902.1394 Performance +0902.3900 +0903.5278 Mesoscale and Nanoscale Physics +0904.1653 Risk Management +0905.0352 +0905.0627 Astrophysics of Galaxies +0905.0638 Astrophysics of Galaxies +0905.0927 General Physics +0905.1442 Statistical Mechanics +0906.0553 Algebraic Geometry +0906.2478 Experiment +0906.3195 +0906.4021 Optics +0906.4551 Phenomenology +0906.4552 Cosmology and Nongalactic Astrophysics +0906.4739 +0906.5170 +0907.1461 Strongly Correlated Electrons +0907.2817 Statistical Mechanics +0907.3050 Instrumentation and Detectors +0907.4630 Theory +0908.0514 Atomic and Molecular Clusters +0908.1943 Operator Algebras +0908.2235 +0908.2968 +0908.4132 Theory +0909.1687 Physics and Society +0909.3637 Data Structures and Algorithms +0909.3686 Theory +0909.3990 Plasma Physics +0909.4106 Lattice +0910.0111 Disordered Systems and Neural Networks +0910.1164 Strongly Correlated Electrons +0910.1525 +0910.2035 Geometric Topology +0910.4303 Number Theory +0910.4797 Operator Algebras +0910.5105 Lattice +0910.5468 Strongly Correlated Electrons +0911.1999 Quantum Gases +0911.3300 Analysis of PDEs +0911.4582 Analysis of PDEs +0911.4795 +0911.5675 +0912.0926 Operating Systems +0912.4664 Theory +1001.0690 Plasma Physics +1001.0904 +1001.1337 +1001.1860 Performance +1001.2330 Materials Science +1001.2811 Logic in Computer Science +1001.3543 +1001.4320 Theory +1001.4480 Plasma Physics +1001.4905 Phenomenology +1001.4993 +1001.5272 Data Structures and Algorithms +1001.5275 Multiagent Systems +1001.5278 Solar and Stellar Astrophysics +1001.5279 Functional Analysis +1001.5280 +1001.5283 Solar and Stellar Astrophysics +1001.5288 Instrumentation and Detectors +1001.5294 Geometric Topology +1001.5297 Geometric Topology +1001.5301 Theory +1001.5305 High Energy Astrophysical Phenomena +1001.5306 Geometric Topology +1001.5307 +1001.5309 Populations and Evolution +1001.5310 Software Engineering +1001.5313 Dynamical Systems +1001.5329 Probability +1001.5330 Mesoscale and Nanoscale Physics +1001.5333 +1001.5337 Astrophysics of Galaxies +1001.5338 Commutative Algebra +1001.5341 High Energy Astrophysical Phenomena +1001.5357 Probability +1001.5364 Information Theory +1001.5370 Experiment +1001.5371 Group Theory +1001.5372 Analysis of PDEs +1001.5373 Analysis of PDEs +1001.5377 +1001.5378 +1001.5381 Astrophysics of Galaxies +1001.5383 General Physics +1001.5389 Soft Condensed Matter +1001.5391 General Physics +1001.5397 Commutative Algebra +1001.5400 General Topology +1001.5406 Instrumentation and Detectors +1001.5408 High Energy Astrophysical Phenomena +1001.5411 Soft Condensed Matter +1001.5413 Analysis of PDEs +1001.5420 Neurons and Cognition +1001.5430 Cosmology and Nongalactic Astrophysics +1001.5439 Phenomenology +1001.5447 Methodology +1001.5452 Soft Condensed Matter +1001.5460 Numerical Analysis +1001.5466 Soft Condensed Matter +1001.5469 Probability +gr-qc/0502043 +gr-qc/0502061 +gr-qc/0505079 +gr-qc/0506062 +gr-qc/0509022 +gr-qc/0601070 +gr-qc/0606080 +gr-qc/0607011 +gr-qc/0611014 +gr-qc/0702047 +hep-th/9911044 Theory +hep-th/9911048 Theory +math/0604081 Probability +math/0607147 Probability +math/0702403 Probability +physics/9810023 History and Philosophy of Physics +physics/9812012 Classical Physics +quant-ph/0511219 +0704.0642 Phenomenology +0704.1608 Phenomenology +0704.2404 Phenomenology +0704.2628 Phenomenology +0705.3047 Phenomenology +0705.4577 Phenomenology +0706.2357 Phenomenology +0706.3488 Phenomenology +0707.0831 Differential Geometry +0707.1453 Phenomenology +0707.3391 Phenomenology +0707.3424 Phenomenology +0708.0047 Phenomenology +0708.1277 Phenomenology +0708.1906 Phenomenology +0710.1922 Phenomenology +0710.3073 Phenomenology +0710.3212 Phenomenology +0710.3884 Rings and Algebras +0711.1086 Phenomenology +0711.4322 Operator Algebras +0712.0048 Phenomenology +0712.0848 Probability +0802.0139 Phenomenology +0802.0161 Phenomenology +0802.1878 Phenomenology +0802.2266 Phenomenology +0802.3282 Phenomenology +0802.4359 Combinatorics +0803.0462 Phenomenology +0803.2055 +0803.2768 Phenomenology +0804.1922 Phenomenology +0804.3755 Phenomenology +0804.4443 Logic +0804.4800 Logic +0806.4757 Fluid Dynamics +0807.1651 Quantum Algebra +0807.4342 Theory +0808.0201 Phenomenology +0808.3737 Spectral Theory +0809.3480 Optimization and Control +0811.4326 Algebraic Geometry +0812.0876 Theory +0812.1962 Probability +0812.1983 Quantum Algebra +0812.4545 Differential Geometry +0812.4787 Number Theory +0901.1034 Superconductivity +0901.4717 Optics +0902.2735 Statistical Finance +0903.1786 Materials Science +0903.3078 Geophysics +0903.4189 Materials Science +0903.4732 Other Condensed Matter +0905.2182 +0905.2974 +0905.3110 +0905.3847 Logic +0906.0420 +0906.2559 Number Theory +0907.0919 Lattice +0907.0934 +0907.0950 +0907.1000 Analysis of PDEs +0907.1717 Rings and Algebras +0907.3896 Lattice +0907.4303 +0907.4325 +0907.4686 +0907.5391 +0908.0198 +0908.0799 +0908.1165 +0908.1642 Lattice +0908.1693 +0908.2648 +0908.3061 +0908.3726 Lattice +0908.4568 Quantum Gases +0909.0314 +0909.0316 +0909.0318 Superconductivity +0909.0396 Strongly Correlated Electrons +0909.0459 +0909.0650 +0909.1688 +0909.1898 Quantum Gases +0909.2436 +0909.2564 Theory +0909.3014 +0909.3033 +0909.3048 +0909.3343 Dynamical Systems +0909.3412 Theory +0909.3419 Theory +0909.3502 Soft Condensed Matter +0909.3531 Theory +0909.3924 +0909.4066 Lattice +0909.4791 Lattice +0909.5429 Algebraic Geometry +0910.0485 +0910.0980 +0910.1109 +0910.1198 +0910.2648 +0910.3003 Statistical Mechanics +0910.5347 Theory +0911.0029 Phenomenology +0911.2047 Operator Algebras +0912.0371 Algebraic Topology +0912.1628 Information Theory +0912.3019 Quantum Gases +0912.4185 +1001.0942 Cosmology and Nongalactic Astrophysics +1001.2739 Optics +1001.2798 Materials Science +1001.3477 Cryptography and Security +1001.3478 Learning +1001.3479 Cryptography and Security +1001.3484 Computers and Society +1001.3485 Computational Complexity +1001.3487 Computer Vision and Pattern Recognition +1001.3488 Databases +1001.3489 Software Engineering +1001.3491 Neural and Evolutionary Computing +1001.3492 Chaotic Dynamics +1001.3493 Data Structures and Algorithms +1001.3494 Databases +1001.3495 Computational Engineering, Finance, and Science +1001.3496 Graphics +1001.3498 Databases +1001.3502 Computer Vision and Pattern Recognition +1001.3503 Computer Vision and Pattern Recognition +1001.3504 Cryptography and Security +1002.3625 High Energy Astrophysical Phenomena +1002.3909 Information Theory +1002.3983 Other Computer Science +1002.3984 Multimedia +1002.3985 Computer Vision and Pattern Recognition +1002.3992 Computers and Society +1002.3994 Other Computer Science +1002.3995 Other Computer Science +1002.3997 Other Computer Science +1002.3998 Computers and Society +1002.3999 Networking and Internet Architecture +1002.4000 Cryptography and Security +1002.4002 Data Structures and Algorithms +1002.4003 Distributed, Parallel, and Cluster Computing +1002.4004 Neural and Evolutionary Computing +1002.4005 Data Structures and Algorithms +1002.4006 Graphics +1002.4007 Learning +1002.4040 Computer Vision and Pattern Recognition +1002.4041 Information Retrieval +1002.4045 Other Computer Science +1003.0353 +1003.0784 Probability +1003.0912 Biological Physics +1003.3112 Dynamical Systems +1003.4144 +1003.4504 Phenomenology +1003.4507 Earth and Planetary Astrophysics +1003.4524 Solar and Stellar Astrophysics +1003.4535 Strongly Correlated Electrons +1003.4541 Geometric Topology +1003.4543 Mesoscale and Nanoscale Physics +1003.4548 Geophysics +1003.4555 +1003.4556 Analysis of PDEs +1003.4564 Combinatorics +1003.4566 Optics +1003.4567 Complex Variables +1003.4568 Solar and Stellar Astrophysics +1003.4569 Number Theory +1003.4577 Operator Algebras +1003.4588 Numerical Analysis +1003.4592 Classical Analysis and ODEs +1003.4597 Classical Physics +1003.4598 Medical Physics +1003.4600 Classical Analysis and ODEs +1003.4605 Algebraic Geometry +1003.4610 Computational Geometry +1003.4623 Probability +1003.4624 Biomolecules +1003.4627 Information Theory +1003.4632 Logic +1003.4635 Algebraic Geometry +1003.4637 Multimedia +1003.4645 Combinatorics +1003.4646 Combinatorics +1003.4647 Logic +1003.4648 Algebraic Geometry +1003.4649 +1003.4650 Probability +1003.4651 Biological Physics +1003.4657 Optimization and Control +1003.4658 Geophysics +1003.4666 Solar and Stellar Astrophysics +1003.4668 Algebraic Geometry +1003.4669 Astrophysics of Galaxies +1003.4670 Logic +1003.4671 High Energy Astrophysical Phenomena +1003.4673 Classical Analysis and ODEs +1003.4678 +1003.4679 Computational Complexity +1003.4685 Materials Science +1003.4691 Cosmology and Nongalactic Astrophysics +1003.4696 Phenomenology +1003.4697 Cosmology and Nongalactic Astrophysics +1003.4698 Analysis of PDEs +1003.4699 Combinatorics +1003.4710 High Energy Astrophysical Phenomena +1003.4712 Logic +1003.4715 Probability +astro-ph/0310899 +cond-mat/0007138 Strongly Correlated Electrons +cond-mat/0411033 Superconductivity +cond-mat/9304049 +cond-mat/9311011 +cond-mat/9505080 +cond-mat/9512147 +cond-mat/9706254 Statistical Mechanics +cond-mat/9904169 Strongly Correlated Electrons +hep-ex/0001022 Experiment +hep-ex/0008069 Experiment +hep-ex/0012053 Experiment +hep-ex/0108035 Experiment +hep-ex/9603004 Experiment +hep-ex/9610006 Experiment +hep-ex/9611017 Experiment +hep-ex/9708016 Experiment +hep-ex/9809028 Experiment +hep-ex/9907030 Experiment +hep-lat/0303005 Lattice +hep-lat/0608008 Lattice +hep-ph/0004056 Phenomenology +hep-ph/0005096 Phenomenology +hep-ph/0008067 Phenomenology +hep-ph/0008275 Phenomenology +hep-ph/0009037 Phenomenology +hep-ph/0009101 Phenomenology +hep-ph/0010015 Phenomenology +hep-ph/0101198 Phenomenology +hep-ph/0102093 Phenomenology +hep-ph/0104082 Phenomenology +hep-ph/0109010 Phenomenology +hep-ph/0203258 Phenomenology +hep-ph/0209315 Phenomenology +hep-ph/0307188 Phenomenology +hep-ph/0404293 Phenomenology +hep-ph/0409313 Phenomenology +hep-ph/0411040 Phenomenology +hep-ph/0503019 Phenomenology +hep-ph/0504132 Phenomenology +hep-ph/0504263 Phenomenology +hep-ph/0508140 Phenomenology +hep-ph/0510179 Phenomenology +hep-ph/0510319 Phenomenology +hep-ph/0512013 Phenomenology +hep-ph/0512237 Phenomenology +hep-ph/0512358 Phenomenology +hep-ph/0601049 Phenomenology +hep-ph/0602228 Phenomenology +hep-ph/0603208 Phenomenology +hep-ph/0604146 Phenomenology +hep-ph/0604177 Phenomenology +hep-ph/0604189 Phenomenology +hep-ph/0606067 Phenomenology +hep-ph/0607024 Phenomenology +hep-ph/0607276 Phenomenology +hep-ph/0608028 Phenomenology +hep-ph/0609066 Phenomenology +hep-ph/0609083 Phenomenology +hep-ph/0609283 Phenomenology +hep-ph/0609291 Phenomenology +hep-ph/0610035 Phenomenology +hep-ph/0610205 Phenomenology +hep-ph/0610282 Phenomenology +hep-ph/0612217 Phenomenology +hep-ph/0612261 Phenomenology +hep-ph/0701174 Phenomenology +hep-ph/0702195 Phenomenology +hep-ph/0703281 Phenomenology +hep-ph/9305315 Phenomenology +hep-ph/9311376 Phenomenology +hep-ph/9312281 Phenomenology +hep-ph/9402352 Phenomenology +hep-ph/9405400 Phenomenology +hep-ph/9406252 Phenomenology +hep-ph/9412341 Phenomenology +hep-ph/9412363 Phenomenology +hep-ph/9504336 Phenomenology +hep-ph/9602286 Phenomenology +hep-ph/9604345 Phenomenology +hep-ph/9609293 Phenomenology +hep-ph/9705264 Phenomenology +hep-ph/9712301 Phenomenology +hep-ph/9712345 Phenomenology +hep-ph/9802230 Phenomenology +hep-ph/9803464 Phenomenology +hep-ph/9806482 Phenomenology +hep-ph/9808454 Phenomenology +hep-ph/9812304 Phenomenology +hep-ph/9902277 Phenomenology +hep-ph/9905321 Phenomenology +hep-ph/9906276 Phenomenology +hep-ph/9907409 Phenomenology +hep-ph/9912445 Phenomenology +math/0402034 Quantum Algebra +math/0402145 Rings and Algebras +math/0406426 Differential Geometry +math/0503500 Differential Geometry +math/0506033 Probability +math/0507219 Group Theory +math/0510222 Group Theory +math/0612468 Combinatorics +math/0612513 Combinatorics +math/9810009 Quantum Algebra +physics/0604020 Atomic Physics +physics/0701187 Atomic Physics +0708.3522 Algebraic Geometry +0709.1899 Other Condensed Matter +0712.2606 Cryptography and Security +0803.1559 Optics +0805.4112 Information Theory +0806.3911 Geometric Topology +0808.0298 Computer Science and Game Theory +0808.3056 Quantum Algebra +0809.0847 +0812.3001 +0812.3502 Statistics Theory +0812.5087 Machine Learning +0901.4407 Physics and Society +0904.3035 Combinatorics +0905.3905 General Physics +0906.0656 Operator Algebras +0907.1497 Theory +0907.4385 Computer Science and Game Theory +0907.5252 Algebraic Geometry +0908.1871 High Energy Astrophysical Phenomena +0909.0641 Information Theory +0911.4539 +0912.1152 Optics +0912.1625 Phenomenology +0912.3782 Solar and Stellar Astrophysics +1001.0637 Phenomenology +1001.1557 Machine Learning +1001.3463 Differential Geometry +1001.5111 Algebraic Geometry +1002.0235 Information Theory +1002.1066 +1002.1469 Pattern Formation and Solitons +1002.4086 Quantum Algebra +1003.3667 +1003.3869 Phenomenology +1003.4984 Cosmology and Nongalactic Astrophysics +1003.5452 Analysis of PDEs +1004.2020 Populations and Evolution +1004.3348 +1004.5431 Strongly Correlated Electrons +1005.2651 Chaotic Dynamics +1005.4662 Statistical Mechanics +1006.2119 Phenomenology +1006.3301 Information Theory +1006.5468 Superconductivity +1007.2014 Statistical Mechanics +1007.2496 Phenomenology +1007.4743 Strongly Correlated Electrons +1008.1026 Superconductivity +1008.2075 Statistical Mechanics +1008.3333 +1008.4229 +1009.1483 +1009.3760 Risk Management +1010.2450 Computational Geometry +1010.2845 Atomic Physics +1010.3081 Fluid Dynamics +1010.3503 Analysis of PDEs +1010.3784 +1010.3801 Spectral Theory +1010.4009 Combinatorics +1010.4035 Complex Variables +1010.4038 +1010.4049 Astrophysics of Galaxies +1010.4050 Learning +1010.4051 Algebraic Topology +1010.4053 Pricing of Securities +1010.4055 Computational Finance +1010.4065 Systems and Control +1010.4067 Earth and Planetary Astrophysics +1010.4068 Atmospheric and Oceanic Physics +1010.4069 Instrumentation and Methods for Astrophysics +1010.4070 Discrete Mathematics +1010.4073 Symplectic Geometry +1010.4077 Space Physics +1010.4082 Experiment +1010.4083 Analysis of PDEs +1010.4088 Social and Information Networks +1010.4091 Solar and Stellar Astrophysics +1010.4098 Physics and Society +1010.4101 Geometric Topology +1010.4108 Data Structures and Algorithms +1010.4112 Commutative Algebra +1010.4115 Statistics Theory +1010.4123 Statistics Theory +1010.4126 Geometric Topology +1010.4131 Phenomenology +1010.4132 Instrumentation and Detectors +1010.4137 Probability +1010.4141 Algebraic Geometry +1010.4142 Instrumentation and Methods for Astrophysics +1010.4146 Combinatorics +1010.4149 Fluid Dynamics +1010.4152 Mesoscale and Nanoscale Physics +1010.4158 Classical Analysis and ODEs +1010.4159 Solar and Stellar Astrophysics +1010.4162 Statistics Theory +1010.4166 Mesoscale and Nanoscale Physics +1010.4169 Soft Condensed Matter +1010.4173 Statistics Theory +1010.4179 Probability +1010.4182 Statistics Theory +1010.4186 History and Overview +1010.4195 Fluid Dynamics +1010.4196 Fluid Dynamics +1010.4197 Mesoscale and Nanoscale Physics +1010.4202 Statistics Theory +1010.4205 Computational Engineering, Finance, and Science +1010.4206 Solar and Stellar Astrophysics +1010.4218 +1010.4221 +1010.4222 Neurons and Cognition +1010.4236 Machine Learning +1010.4248 Probability +1010.4251 Phenomenology +1010.4256 Differential Geometry +1010.4260 Solar and Stellar Astrophysics +1010.4266 Fluid Dynamics +1010.4271 Geometric Topology +1010.4272 Dynamical Systems +1010.4275 Analysis of PDEs +1010.4278 Numerical Analysis +1010.4280 Computer Science and Game Theory +1010.4281 Computer Science and Game Theory +1010.4282 +1010.4284 Mesoscale and Nanoscale Physics +1010.4285 Analysis of PDEs +1010.4287 Differential Geometry +1010.4293 Physics and Society +math/0211020 Probability +math/0611394 Analysis of PDEs +0704.1026 Theory +0704.1146 Theory +0704.3679 Theory +0705.0232 +0705.2199 +0705.2539 Lattice +0705.3481 +0705.4158 +0706.0489 +0706.0572 Theory +0706.0726 +0706.2090 Lattice +0706.2747 Phenomenology +0706.3450 Theory +0706.3628 Phenomenology +0706.3806 Phenomenology +0706.3928 Phenomenology +0707.0908 Theory +0707.2150 Theory +0707.4026 +0707.4200 Phenomenology +0708.2430 Phenomenology +0709.0305 +0709.2041 +0710.0321 +0710.2152 Phenomenology +0710.2255 Fluid Dynamics +0710.3402 Theory +0711.0524 +0712.3543 +0712.4261 Phenomenology +0801.0210 Phenomenology +0801.0840 Experiment +0801.1762 Phenomenology +0801.2711 Theory +0801.4946 Theory +0802.0311 Theory +0803.0140 Phenomenology +0803.3663 Number Theory +0804.0026 Representation Theory +0804.0553 Theory +0804.1522 Algebraic Geometry +0805.0762 Combinatorics +0805.2012 Phenomenology +0806.3093 +0806.3696 +0807.0273 Theory +0807.4053 Dynamical Systems +0808.2335 +0809.0141 Combinatorics +0809.1820 Other Condensed Matter +0810.1356 +0812.1547 +0901.3161 Theory +0901.3786 Algebraic Geometry +0903.3107 Phenomenology +0903.4504 Classical Analysis and ODEs +0904.3988 Differential Geometry +0904.4258 +0904.4748 Theory +0905.0553 Theory +0906.1864 +0906.2433 +0907.0869 +0909.2323 Phenomenology +0909.3334 Phenomenology +0909.4240 Phenomenology +0910.0126 Cosmology and Nongalactic Astrophysics +0910.0282 +0910.2721 Analysis of PDEs +0910.3724 Mesoscale and Nanoscale Physics +0911.2185 Differential Geometry +0911.4409 Phenomenology +0911.5555 Lattice +0912.0563 Algebraic Geometry +0912.3864 Optics +0912.4152 Lattice +0912.5526 +1001.0391 Materials Science +1001.1939 Phenomenology +1001.2937 Theory +1001.5068 +1001.5201 Mesoscale and Nanoscale Physics +1002.0668 Molecular Networks +1002.1042 Classical Analysis and ODEs +1002.1350 Quantum Algebra +1002.2221 +1002.3220 Statistical Mechanics +1003.0056 Cosmology and Nongalactic Astrophysics +1003.0413 +1003.0998 +1003.1954 Machine Learning +1003.2246 Phenomenology +1003.3483 +1003.3633 Representation Theory +1003.3932 General Physics +1003.5155 Quantum Gases +1003.5480 Computer Science and Game Theory +1003.5980 Phenomenology +1003.6038 Plasma Physics +1003.6039 Probability +1004.0283 Quantum Gases +1004.0635 Solar and Stellar Astrophysics +1004.1023 Statistical Mechanics +1004.2162 Phenomenology +1004.2181 Theory +1004.2432 Experiment +1004.2652 Other Computer Science +1004.2704 Cosmology and Nongalactic Astrophysics +1004.3089 Cosmology and Nongalactic Astrophysics +1004.3125 Chaotic Dynamics +1004.3535 Phenomenology +1004.3781 Phenomenology +1004.3994 Theory +1004.4053 Statistical Mechanics +1004.5013 +1004.5109 Physics and Society +1004.5113 Phenomenology +1004.5384 Mesoscale and Nanoscale Physics +1005.0388 Cosmology and Nongalactic Astrophysics +1005.0477 +1005.1171 Cosmology and Nongalactic Astrophysics +1005.1399 Quantum Gases +1005.3608 Probability +1005.4065 Phenomenology +1005.4182 +1005.4276 Theory +1005.4370 Phenomenology +1005.4429 +1005.4966 +1005.5134 Phenomenology +1005.5683 Phenomenology +1006.0217 Cosmology and Nongalactic Astrophysics +1006.0282 +1006.0388 +1006.0489 +1006.0895 Strongly Correlated Electrons +1006.0963 Materials Science +1006.1020 +1006.1289 Phenomenology +1006.1366 Theory +1006.2196 +1006.2444 Theory +1006.2652 Other Condensed Matter +1006.3165 Superconductivity +1006.3324 Atomic Physics +1006.3354 Theory +1006.3418 Cosmology and Nongalactic Astrophysics +1006.3718 Methodology +1006.3747 Theory +1006.3929 Phenomenology +1006.3937 Biological Physics +1006.4043 Instrumentation and Detectors +1006.4181 Cosmology and Nongalactic Astrophysics +1006.4399 Cosmology and Nongalactic Astrophysics +1006.4478 +1006.5020 Commutative Algebra +1006.5131 Geophysics +1006.5148 Quantum Gases +1006.5219 Algebraic Geometry +1006.5276 Phenomenology +1006.5425 Atomic Physics +1006.5458 Phenomenology +1006.5875 Phenomenology +1006.5921 Physics and Society +1007.0039 Phenomenology +1007.0248 Phenomenology +1007.0389 +1007.0658 Phenomenology +1007.0689 Phenomenology +1007.0708 Phenomenology +1007.0886 Quantum Gases +1007.0963 +1007.1034 Cosmology and Nongalactic Astrophysics +1007.1364 Materials Science +1007.1532 Phenomenology +1007.1746 +1007.1825 +1007.1907 Phenomenology +1007.2201 Superconductivity +1007.2241 Phenomenology +1007.2792 +1007.2848 High Energy Astrophysical Phenomena +1007.3093 Fluid Dynamics +1007.3141 +1007.3526 Experiment +1007.3685 Phenomenology +1007.3847 Theory +1007.3922 Theory +1007.4271 Mesoscale and Nanoscale Physics +1007.4351 +1007.4420 Theory +1007.4772 Theory +1007.5001 Phenomenology +1007.5002 Theory +1007.5172 Phenomenology +1007.5454 Superconductivity +1008.0048 Theory +1008.0168 Theory +1008.0268 Phenomenology +1008.0467 Phenomenology +1008.0935 +1008.1871 Phenomenology +1008.1918 +1008.2230 High Energy Astrophysical Phenomena +1008.2617 Lattice +1008.2694 Disordered Systems and Neural Networks +1008.2710 Theory +1008.2985 +1008.3325 Superconductivity +1008.3392 Cosmology and Nongalactic Astrophysics +1008.3684 Phenomenology +1008.4738 Phenomenology +1009.0624 +1009.1363 Phenomenology +1009.2094 Cosmology and Nongalactic Astrophysics +1009.2162 +1009.3355 Phenomenology +1009.4097 Phenomenology +1009.5376 Solar and Stellar Astrophysics +1009.5437 +1009.5613 +1010.1289 Fluid Dynamics +1010.1304 Solar and Stellar Astrophysics +1010.1647 Accelerator Physics +1010.2430 High Energy Astrophysical Phenomena +1010.2568 Strongly Correlated Electrons +1010.2783 Physics and Society +1010.3300 Differential Geometry +1010.3847 +1010.3910 Cosmology and Nongalactic Astrophysics +1010.4047 Combinatorics +1010.4058 Algebraic Geometry +1010.4484 Information Theory +1010.4602 Optics +1010.4669 Analysis of PDEs +1010.4740 Superconductivity +1010.4786 Cryptography and Security +1010.4849 Probability +1010.5007 High Energy Astrophysical Phenomena +1010.5154 General Finance +1010.5187 Instrumentation and Methods for Astrophysics +1010.5222 Statistics Theory +1010.5256 Superconductivity +1010.5259 Phenomenology +1010.5263 +1010.5265 Computation +1010.5274 Spectral Theory +1010.5285 Differential Geometry +1010.5286 Analysis of PDEs +1010.5288 Combinatorics +1010.5291 Information Theory +1010.5296 Analysis of PDEs +1010.5297 Statistical Mechanics +1010.5308 Logic in Computer Science +1010.5309 Combinatorics +1010.5325 Cosmology and Nongalactic Astrophysics +1010.5334 Theory +1010.5336 Functional Analysis +1010.5343 High Energy Astrophysical Phenomena +1010.5344 Spectral Theory +1010.5347 Solar and Stellar Astrophysics +1010.5349 Probability +1010.5350 Soft Condensed Matter +1010.5351 Solar and Stellar Astrophysics +1010.5362 Differential Geometry +1010.5366 Probability +1010.5370 Earth and Planetary Astrophysics +1010.5372 Soft Condensed Matter +1010.5377 Social and Information Networks +1010.5381 General Physics +1010.5382 Information Theory +1010.5384 +1010.5388 Information Theory +1010.5389 Methodology +1010.5391 Formal Languages and Automata Theory +1010.5393 Number Theory +1010.5394 Biological Physics +1010.5397 Algebraic Geometry +1010.5400 Popular Physics +1010.5403 Classical Analysis and ODEs +1010.5404 Analysis of PDEs +1010.5410 Analysis of PDEs +1010.5411 Number Theory +1010.5414 Functional Analysis +1010.5423 Numerical Analysis +1010.5424 Phenomenology +1010.5425 +1010.5426 Artificial Intelligence +1010.5427 Number Theory +1010.5441 Statistical Mechanics +1010.5445 Optimization and Control +1010.5448 Metric Geometry +1010.5452 +1010.5453 Analysis of PDEs +1010.5455 Analysis of PDEs +1010.5456 Formal Languages and Automata Theory +1010.5458 Chemical Physics +1010.5465 Theory +1010.5469 Algebraic Geometry +1010.5471 Computer Science and Game Theory +1010.5478 Populations and Evolution +1010.5480 Commutative Algebra +1010.5481 Combinatorics +1010.5484 Cosmology and Nongalactic Astrophysics +1010.5486 History and Overview +1010.5489 Dynamical Systems +1010.5490 Dynamical Systems +1010.5491 Dynamical Systems +1010.5492 Dynamical Systems +1010.5497 Information Theory +astro-ph/0107316 +astro-ph/0603525 +astro-ph/0603589 +astro-ph/0604292 +astro-ph/0604477 +astro-ph/0606001 +astro-ph/0606572 +astro-ph/0606602 +astro-ph/0608034 +astro-ph/0608283 +astro-ph/0608287 +astro-ph/0608303 +astro-ph/0608365 +astro-ph/0608399 +astro-ph/0608421 +astro-ph/0608691 +astro-ph/0609075 +astro-ph/0609120 +astro-ph/0609241 +astro-ph/0609338 +astro-ph/0609657 +astro-ph/0609755 +astro-ph/0610064 +astro-ph/0610092 +astro-ph/0610110 +astro-ph/0610210 +astro-ph/0610296 +astro-ph/0610370 +astro-ph/0610377 +astro-ph/0610402 +astro-ph/0610864 +astro-ph/0611034 +astro-ph/0611227 +astro-ph/0611573 +astro-ph/0611645 +astro-ph/0611818 +astro-ph/0611872 +astro-ph/0612150 +astro-ph/0612179 +astro-ph/0612281 +astro-ph/0612288 +astro-ph/0612329 +astro-ph/0612381 +astro-ph/0612616 +astro-ph/0612653 +astro-ph/0612662 +astro-ph/0612733 +astro-ph/0612739 +astro-ph/0701009 +astro-ph/0701247 +astro-ph/0701302 +astro-ph/0701343 +astro-ph/0701495 +astro-ph/0701721 +astro-ph/0701856 +astro-ph/0702043 +astro-ph/0702554 +astro-ph/0703031 +astro-ph/0703114 +astro-ph/0703221 +astro-ph/0703251 +astro-ph/0703303 +astro-ph/0703563 +astro-ph/0703651 +astro-ph/9812329 +astro-ph/9903235 +cond-mat/0212216 Disordered Systems and Neural Networks +cond-mat/0510407 Superconductivity +cond-mat/0603816 Mesoscale and Nanoscale Physics +cond-mat/0701115 Statistical Mechanics +cond-mat/0702129 Strongly Correlated Electrons +gr-qc/0307016 +gr-qc/0506108 +gr-qc/0508053 +gr-qc/0512002 +gr-qc/0604053 +gr-qc/0607093 +gr-qc/0609001 +gr-qc/0609017 +gr-qc/0609096 +gr-qc/0609101 +gr-qc/0610091 +gr-qc/0610148 +gr-qc/0610151 +gr-qc/0610156 +gr-qc/0611007 +gr-qc/0611008 +gr-qc/0611084 +gr-qc/0611127 +gr-qc/0611130 +gr-qc/0611151 +gr-qc/0612022 +gr-qc/0612048 +gr-qc/0612089 +gr-qc/0612091 +gr-qc/0612094 +gr-qc/0612108 +gr-qc/0701074 +gr-qc/0701120 +gr-qc/0702077 +gr-qc/0703012 +gr-qc/0703019 +gr-qc/0703050 +gr-qc/0703114 +gr-qc/0703126 +hep-ex/0405072 Experiment +hep-ex/0608037 Experiment +hep-ex/0609056 Experiment +hep-lat/0607017 Lattice +hep-lat/0611012 Lattice +hep-lat/0611016 Lattice +hep-lat/0611033 Lattice +hep-lat/0611036 Lattice +hep-lat/0612007 Lattice +hep-lat/0612008 Lattice +hep-lat/0612012 Lattice +hep-lat/0612018 Lattice +hep-lat/0612021 Lattice +hep-lat/0612031 Lattice +hep-lat/0701009 Lattice +hep-lat/0701022 Lattice +hep-lat/0702013 Lattice +hep-lat/0702028 Lattice +hep-lat/0703006 Lattice +hep-lat/0703015 Lattice +hep-ph/0312117 Phenomenology +hep-ph/0411397 Phenomenology +hep-ph/0412210 Phenomenology +hep-ph/0503249 Phenomenology +hep-ph/0506127 Phenomenology +hep-ph/0507120 Phenomenology +hep-ph/0508069 Phenomenology +hep-ph/0512316 Phenomenology +hep-ph/0602055 Phenomenology +hep-ph/0602172 Phenomenology +hep-ph/0603005 Phenomenology +hep-ph/0603053 Phenomenology +hep-ph/0603174 Phenomenology +hep-ph/0603249 Phenomenology +hep-ph/0604159 Phenomenology +hep-ph/0604256 Phenomenology +hep-ph/0605283 Phenomenology +hep-ph/0605296 Phenomenology +hep-ph/0606070 Phenomenology +hep-ph/0606114 Phenomenology +hep-ph/0606151 Phenomenology +hep-ph/0606234 Phenomenology +hep-ph/0607125 Phenomenology +hep-ph/0607228 Phenomenology +hep-ph/0607293 Phenomenology +hep-ph/0607313 Phenomenology +hep-ph/0607330 Phenomenology +hep-ph/0608035 Phenomenology +hep-ph/0608061 Phenomenology +hep-ph/0608067 Phenomenology +hep-ph/0608069 Phenomenology +hep-ph/0608075 Phenomenology +hep-ph/0608135 Phenomenology +hep-ph/0608138 Phenomenology +hep-ph/0608149 Phenomenology +hep-ph/0608299 Phenomenology +hep-ph/0609025 Phenomenology +hep-ph/0609042 Phenomenology +hep-ph/0609043 Phenomenology +hep-ph/0609046 Phenomenology +hep-ph/0609049 Phenomenology +hep-ph/0609054 Phenomenology +hep-ph/0609067 Phenomenology +hep-ph/0609094 Phenomenology +hep-ph/0609126 Phenomenology +hep-ph/0609152 Phenomenology +hep-ph/0609206 Phenomenology +hep-ph/0609250 Phenomenology +hep-ph/0609254 Phenomenology +hep-ph/0610037 Phenomenology +hep-ph/0610050 Phenomenology +hep-ph/0610079 Phenomenology +hep-ph/0610096 Phenomenology +hep-ph/0610113 Phenomenology +hep-ph/0610120 Phenomenology +hep-ph/0610134 Phenomenology +hep-ph/0610136 Phenomenology +hep-ph/0610157 Phenomenology +hep-ph/0610241 Phenomenology +hep-ph/0610255 Phenomenology +hep-ph/0610259 Phenomenology +hep-ph/0610267 Phenomenology +hep-ph/0610280 Phenomenology +hep-ph/0610290 Phenomenology +hep-ph/0610321 Phenomenology +hep-ph/0610326 Phenomenology +hep-ph/0610337 Phenomenology +hep-ph/0611013 Phenomenology +hep-ph/0611095 Phenomenology +hep-ph/0611129 Phenomenology +hep-ph/0611162 Phenomenology +hep-ph/0611168 Phenomenology +hep-ph/0611173 Phenomenology +hep-ph/0611194 Phenomenology +hep-ph/0611227 Phenomenology +hep-ph/0611232 Phenomenology +hep-ph/0611234 Phenomenology +hep-ph/0611236 Phenomenology +hep-ph/0611254 Phenomenology +hep-ph/0611265 Phenomenology +hep-ph/0611266 Phenomenology +hep-ph/0611289 Phenomenology +hep-ph/0611293 Phenomenology +hep-ph/0611300 Phenomenology +hep-ph/0611311 Phenomenology +hep-ph/0611320 Phenomenology +hep-ph/0611326 Phenomenology +hep-ph/0611337 Phenomenology +hep-ph/0611347 Phenomenology +hep-ph/0611354 Phenomenology +hep-ph/0611357 Phenomenology +hep-ph/0611387 Phenomenology +hep-ph/0611393 Phenomenology +hep-ph/0612007 Phenomenology +hep-ph/0612018 Phenomenology +hep-ph/0612035 Phenomenology +hep-ph/0612059 Phenomenology +hep-ph/0612060 Phenomenology +hep-ph/0612076 Phenomenology +hep-ph/0612088 Phenomenology +hep-ph/0612092 Phenomenology +hep-ph/0612100 Phenomenology +hep-ph/0612105 Phenomenology +hep-ph/0612107 Phenomenology +hep-ph/0612126 Phenomenology +hep-ph/0612129 Phenomenology +hep-ph/0612149 Phenomenology +hep-ph/0612167 Phenomenology +hep-ph/0612168 Phenomenology +hep-ph/0612173 Phenomenology +hep-ph/0612194 Phenomenology +hep-ph/0612213 Phenomenology +hep-ph/0612224 Phenomenology +hep-ph/0612236 Phenomenology +hep-ph/0612239 Phenomenology +hep-ph/0612275 Phenomenology +hep-ph/0612276 Phenomenology +hep-ph/0612277 Phenomenology +hep-ph/0612281 Phenomenology +hep-ph/0612282 Phenomenology +hep-ph/0612285 Phenomenology +hep-ph/0612286 Phenomenology +hep-ph/0612289 Phenomenology +hep-ph/0612329 Phenomenology +hep-ph/0612368 Phenomenology +hep-ph/0612374 Phenomenology +hep-ph/0701024 Phenomenology +hep-ph/0701035 Phenomenology +hep-ph/0701101 Phenomenology +hep-ph/0701107 Phenomenology +hep-ph/0701113 Phenomenology +hep-ph/0701127 Phenomenology +hep-ph/0701128 Phenomenology +hep-ph/0701137 Phenomenology +hep-ph/0701180 Phenomenology +hep-ph/0701232 Phenomenology +hep-ph/0701233 Phenomenology +hep-ph/0701243 Phenomenology +hep-ph/0701260 Phenomenology +hep-ph/0701266 Phenomenology +hep-ph/0701271 Phenomenology +hep-ph/0702056 Phenomenology +hep-ph/0702100 Phenomenology +hep-ph/0702146 Phenomenology +hep-ph/0702149 Phenomenology +hep-ph/0702198 Phenomenology +hep-ph/0702234 Phenomenology +hep-ph/0702244 Phenomenology +hep-ph/0702278 Phenomenology +hep-ph/0702286 Phenomenology +hep-ph/0702295 Phenomenology +hep-ph/0703014 Phenomenology +hep-ph/0703021 Phenomenology +hep-ph/0703024 Phenomenology +hep-ph/0703030 Phenomenology +hep-ph/0703034 Phenomenology +hep-ph/0703060 Phenomenology +hep-ph/0703085 Phenomenology +hep-ph/0703105 Phenomenology +hep-ph/0703163 Phenomenology +hep-ph/0703164 Phenomenology +hep-ph/0703171 Phenomenology +hep-ph/0703187 Phenomenology +hep-ph/0703202 Phenomenology +hep-ph/0703226 Phenomenology +hep-ph/0703235 Phenomenology +hep-ph/0703275 Phenomenology +hep-ph/0703279 Phenomenology +hep-ph/0703282 Phenomenology +hep-ph/0703307 Phenomenology +hep-ph/9610344 Phenomenology +hep-th/0203139 Theory +hep-th/0303139 Theory +hep-th/0501215 Theory +hep-th/0502105 Theory +hep-th/0508024 Theory +hep-th/0508089 Theory +hep-th/0508178 Theory +hep-th/0509125 Theory +hep-th/0511284 Theory +hep-th/0601127 Theory +hep-th/0602078 Theory +hep-th/0602273 Theory +hep-th/0603037 Theory +hep-th/0603132 Theory +hep-th/0603254 Theory +hep-th/0604023 Theory +hep-th/0604040 Theory +hep-th/0604051 Theory +hep-th/0604196 Theory +hep-th/0605085 Theory +hep-th/0605103 Theory +hep-th/0605123 Theory +hep-th/0605205 Theory +hep-th/0605214 Theory +hep-th/0605241 Theory +hep-th/0606024 Theory +hep-th/0606038 Theory +hep-th/0606088 Theory +hep-th/0606109 Theory +hep-th/0606112 Theory +hep-th/0606142 Theory +hep-th/0606150 Theory +hep-th/0606190 Theory +hep-th/0606222 Theory +hep-th/0606246 Theory +hep-th/0606287 Theory +hep-th/0607015 Theory +hep-th/0607094 Theory +hep-th/0607111 Theory +hep-th/0607138 Theory +hep-th/0607147 Theory +hep-th/0607204 Theory +hep-th/0607223 Theory +hep-th/0607243 Theory +hep-th/0608017 Theory +hep-th/0608049 Theory +hep-th/0608116 Theory +hep-th/0608118 Theory +hep-th/0608123 Theory +hep-th/0608137 Theory +hep-th/0608171 Theory +hep-th/0608174 Theory +hep-th/0608178 Theory +hep-th/0608193 Theory +hep-th/0608195 Theory +hep-th/0608198 Theory +hep-th/0608202 Theory +hep-th/0608215 Theory +hep-th/0608219 Theory +hep-th/0608222 Theory +hep-th/0609015 Theory +hep-th/0609032 Theory +hep-th/0609038 Theory +hep-th/0609047 Theory +hep-th/0609075 Theory +hep-th/0609087 Theory +hep-th/0609117 Theory +hep-th/0609135 Theory +hep-th/0609137 Theory +hep-th/0609142 Theory +hep-th/0609149 Theory +hep-th/0609161 Theory +hep-th/0609183 Theory +hep-th/0609203 Theory +hep-th/0609208 Theory +hep-th/0609209 Theory +hep-th/0610002 Theory +hep-th/0610006 Theory +hep-th/0610007 Theory +hep-th/0610022 Theory +hep-th/0610027 Theory +hep-th/0610041 Theory +hep-th/0610042 Theory +hep-th/0610045 Theory +hep-th/0610055 Theory +hep-th/0610068 Theory +hep-th/0610070 Theory +hep-th/0610078 Theory +hep-th/0610084 Theory +hep-th/0610107 Theory +hep-th/0610114 Theory +hep-th/0610115 Theory +hep-th/0610117 Theory +hep-th/0610124 Theory +hep-th/0610127 Theory +hep-th/0610129 Theory +hep-th/0610132 Theory +hep-th/0610163 Theory +hep-th/0610171 Theory +hep-th/0610188 Theory +hep-th/0610191 Theory +hep-th/0610195 Theory +hep-th/0610196 Theory +hep-th/0610199 Theory +hep-th/0610230 Theory +hep-th/0610232 Theory +hep-th/0610254 Theory +hep-th/0610259 Theory +hep-th/0610264 Theory +hep-th/0610266 Theory +hep-th/0610275 Theory +hep-th/0610281 Theory +hep-th/0610282 Theory +hep-th/0610294 Theory +hep-th/0610295 Theory +hep-th/0610297 Theory +hep-th/0610298 Theory +hep-th/0610299 Theory +hep-th/0610300 Theory +hep-th/0610304 Theory +hep-th/0610320 Theory +hep-th/0610321 Theory +hep-th/0610330 Theory +hep-th/0611002 Theory +hep-th/0611003 Theory +hep-th/0611005 Theory +hep-th/0611018 Theory +hep-th/0611019 Theory +hep-th/0611033 Theory +hep-th/0611035 Theory +hep-th/0611036 Theory +hep-th/0611045 Theory +hep-th/0611046 Theory +hep-th/0611053 Theory +hep-th/0611062 Theory +hep-th/0611065 Theory +hep-th/0611075 Theory +hep-th/0611078 Theory +hep-th/0611085 Theory +hep-th/0611099 Theory +hep-th/0611105 Theory +hep-th/0611106 Theory +hep-th/0611111 Theory +hep-th/0611112 Theory +hep-th/0611122 Theory +hep-th/0611130 Theory +hep-th/0611134 Theory +hep-th/0611139 Theory +hep-th/0611145 Theory +hep-th/0611151 Theory +hep-th/0611155 Theory +hep-th/0611156 Theory +hep-th/0611169 Theory +hep-th/0611171 Theory +hep-th/0611177 Theory +hep-th/0611185 Theory +hep-th/0611190 Theory +hep-th/0611200 Theory +hep-th/0611218 Theory +hep-th/0611229 Theory +hep-th/0611242 Theory +hep-th/0611245 Theory +hep-th/0611249 Theory +hep-th/0611271 Theory +hep-th/0611277 Theory +hep-th/0611278 Theory +hep-th/0611279 Theory +hep-th/0611281 Theory +hep-th/0611288 Theory +hep-th/0611294 Theory +hep-th/0611296 Theory +hep-th/0611311 Theory +hep-th/0611314 Theory +hep-th/0611316 Theory +hep-th/0611327 Theory +hep-th/0611331 Theory +hep-th/0611332 Theory +hep-th/0611338 Theory +hep-th/0611351 Theory +hep-th/0611353 Theory +hep-th/0612007 Theory +hep-th/0612012 Theory +hep-th/0612015 Theory +hep-th/0612019 Theory +hep-th/0612022 Theory +hep-th/0612023 Theory +hep-th/0612029 Theory +hep-th/0612030 Theory +hep-th/0612032 Theory +hep-th/0612034 Theory +hep-th/0612039 Theory +hep-th/0612041 Theory +hep-th/0612044 Theory +hep-th/0612046 Theory +hep-th/0612050 Theory +hep-th/0612054 Theory +hep-th/0612057 Theory +hep-th/0612066 Theory +hep-th/0612070 Theory +hep-th/0612072 Theory +hep-th/0612086 Theory +hep-th/0612095 Theory +hep-th/0612101 Theory +hep-th/0612108 Theory +hep-th/0612109 Theory +hep-th/0612118 Theory +hep-th/0612131 Theory +hep-th/0612141 Theory +hep-th/0612149 Theory +hep-th/0612157 Theory +hep-th/0612168 Theory +hep-th/0612169 Theory +hep-th/0612171 Theory +hep-th/0612174 Theory +hep-th/0612188 Theory +hep-th/0612190 Theory +hep-th/0612196 Theory +hep-th/0612207 Theory +hep-th/0612212 Theory +hep-th/0612222 Theory +hep-th/0612225 Theory +hep-th/0612229 Theory +hep-th/0612230 Theory +hep-th/0612231 Theory +hep-th/0612234 Theory +hep-th/0612236 Theory +hep-th/0612237 Theory +hep-th/0612240 Theory +hep-th/0612253 Theory +hep-th/0612262 Theory +hep-th/0612267 Theory +hep-th/0612269 Theory +hep-th/0612286 Theory +hep-th/0612287 Theory +hep-th/0612289 Theory +hep-th/0701005 Theory +hep-th/0701013 Theory +hep-th/0701035 Theory +hep-th/0701039 Theory +hep-th/0701044 Theory +hep-th/0701055 Theory +hep-th/0701066 Theory +hep-th/0701075 Theory +hep-th/0701099 Theory +hep-th/0701103 Theory +hep-th/0701108 Theory +hep-th/0701123 Theory +hep-th/0701127 Theory +hep-th/0701145 Theory +hep-th/0701154 Theory +hep-th/0701167 Theory +hep-th/0701168 Theory +hep-th/0701173 Theory +hep-th/0701176 Theory +hep-th/0701179 Theory +hep-th/0701186 Theory +hep-th/0701187 Theory +hep-th/0701199 Theory +hep-th/0701200 Theory +hep-th/0701205 Theory +hep-th/0701212 Theory +hep-th/0701214 Theory +hep-th/0701227 Theory +hep-th/0701228 Theory +hep-th/0701240 Theory +hep-th/0701241 Theory +hep-th/0701242 Theory +hep-th/0702006 Theory +hep-th/0702072 Theory +hep-th/0702073 Theory +hep-th/0702076 Theory +hep-th/0702079 Theory +hep-th/0702088 Theory +hep-th/0702097 Theory +hep-th/0702107 Theory +hep-th/0702109 Theory +hep-th/0702118 Theory +hep-th/0702120 Theory +hep-th/0702156 Theory +hep-th/0702163 Theory +hep-th/0702170 Theory +hep-th/0702176 Theory +hep-th/0702203 Theory +hep-th/0702217 Theory +hep-th/0702223 Theory +hep-th/0703001 Theory +hep-th/0703012 Theory +hep-th/0703021 Theory +hep-th/0703024 Theory +hep-th/0703026 Theory +hep-th/0703038 Theory +hep-th/0703039 Theory +hep-th/0703040 Theory +hep-th/0703044 Theory +hep-th/0703045 Theory +hep-th/0703054 Theory +hep-th/0703061 Theory +hep-th/0703067 Theory +hep-th/0703071 Theory +hep-th/0703078 Theory +hep-th/0703087 Theory +hep-th/0703089 Theory +hep-th/0703093 Theory +hep-th/0703094 Theory +hep-th/0703101 Theory +hep-th/0703118 Theory +hep-th/0703131 Theory +hep-th/0703146 Theory +hep-th/0703150 Theory +hep-th/0703152 Theory +hep-th/0703153 Theory +hep-th/0703172 Theory +hep-th/0703187 Theory +hep-th/0703190 Theory +hep-th/0703209 Theory +hep-th/0703216 Theory +hep-th/0703222 Theory +hep-th/0703223 Theory +hep-th/0703227 Theory +hep-th/0703229 Theory +hep-th/0703230 Theory +hep-th/0703231 Theory +hep-th/0703241 Theory +hep-th/0703244 Theory +hep-th/0703245 Theory +hep-th/0703246 Theory +hep-th/0703251 Theory +hep-th/0703256 Theory +hep-th/0703261 Theory +hep-th/0703269 Theory +hep-th/0703271 Theory +hep-th/0703272 Theory +hep-th/0703285 Theory +hep-th/0703286 Theory +hep-th/0703287 Theory +hep-th/9705062 Theory +hep-th/9712078 Theory +hep-th/9906010 Theory +math-ph/0612018 +math/0508002 Probability +math/0603728 Algebraic Geometry +math/0605034 Logic +math/9401222 +nucl-ex/0506012 +nucl-ex/0512040 +nucl-th/0603054 +nucl-th/0607049 +physics/0703188 Accelerator Physics +solv-int/9310001 Exactly Solvable and Integrable Systems +0707.2633 +0709.2181 Number Theory +0710.4965 Combinatorics +0711.4899 +0712.0353 +0801.3006 Chaotic Dynamics +0802.1382 Combinatorics +0802.3528 Computer Vision and Pattern Recognition +0803.0473 Data Structures and Algorithms +0804.3611 Combinatorics +0805.2755 Geometric Topology +0807.0261 Materials Science +0807.1886 Strongly Correlated Electrons +0810.0767 Disordered Systems and Neural Networks +0811.3033 Materials Science +0811.3263 Rings and Algebras +0811.3274 Geometric Topology +0812.0038 Information Theory +0812.0490 Number Theory +0812.4289 +0901.0368 +0901.2300 +0903.0011 Superconductivity +0903.2738 Probability +0904.1819 Superconductivity +0904.1823 Probability +0904.4658 Number Theory +0904.4722 Probability +0906.4722 Logic +0906.4910 Theory +0907.3459 Representation Theory +0909.1234 Machine Learning +0909.4398 Pattern Formation and Solitons +0909.4706 +0909.4914 Number Theory +0909.4916 Number Theory +0910.3071 Metric Geometry +0910.3603 Probability +0910.3866 +0910.4621 Probability +0911.2072 +0911.4801 Portfolio Management +0912.2537 Algebraic Geometry +0912.2890 Fluid Dynamics +0912.4678 +1001.0096 Phenomenology +1001.1379 Portfolio Management +1001.2237 Chaotic Dynamics +1001.4351 Data Analysis, Statistics and Probability +1001.4728 Algebraic Geometry +1002.1304 Superconductivity +1002.2714 Probability +1002.4350 Algebraic Geometry +1002.4424 +1003.0580 Classical Analysis and ODEs +1003.0779 Solar and Stellar Astrophysics +1003.1748 Other Condensed Matter +1003.1968 Algebraic Geometry +1003.3412 Strongly Correlated Electrons +1003.3647 Cosmology and Nongalactic Astrophysics +1003.5281 Physics and Society +1004.0668 +1004.1424 Phenomenology +1004.1655 +1004.2122 Superconductivity +1004.3651 Statistical Mechanics +1005.0067 Optics +1005.1413 Atomic Physics +1005.2470 +1005.2509 Materials Science +1005.4572 +1006.2739 Theory +1006.2931 Populations and Evolution +1006.3257 Statistical Mechanics +1006.4571 Operator Algebras +1007.0091 Mesoscale and Nanoscale Physics +1007.0563 Machine Learning +1007.1531 Disordered Systems and Neural Networks +1007.2243 Optics +1007.3057 +1007.4013 Methodology +1007.4161 Statistical Mechanics +1007.4636 Neural and Evolutionary Computing +1008.0316 Statistical Mechanics +1008.0774 Operator Algebras +1008.0841 Differential Geometry +1008.0849 Superconductivity +1008.1496 Cosmology and Nongalactic Astrophysics +1008.1626 Theory +1008.2790 +1008.3098 Superconductivity +1008.4181 +1008.4416 Information Theory +1008.4775 Cosmology and Nongalactic Astrophysics +1009.0972 Physics and Society +1009.1755 Complex Variables +1009.3181 Mesoscale and Nanoscale Physics +1009.3340 Solar and Stellar Astrophysics +1009.5770 General Physics +1009.5772 General Physics +1009.6146 Materials Science +1010.0109 +1010.2623 Graphics +1010.3425 Statistics Theory +1010.3567 Instrumentation and Methods for Astrophysics +1010.3572 Instrumentation and Methods for Astrophysics +1010.3795 Fluid Dynamics +1010.4458 +1010.4687 Computational Physics +1010.5805 Number Theory +1010.5839 Superconductivity +1011.0207 Differential Geometry +1011.1151 Cosmology and Nongalactic Astrophysics +1011.1512 Probability +1011.1903 +1011.2278 Lattice +1011.2761 Phenomenology +1011.3050 Astrophysics of Galaxies +1011.3058 Probability +1011.3062 Optimization and Control +1011.3073 Probability +1011.3074 Information Theory +1011.3075 +1011.3077 Numerical Analysis +1011.3083 Astrophysics of Galaxies +1011.3084 Differential Geometry +1011.3085 Probability +1011.3095 Number Theory +1011.3102 Rings and Algebras +1011.3105 High Energy Astrophysical Phenomena +1011.3106 Statistical Mechanics +1011.3109 Materials Science +1011.3115 Networking and Internet Architecture +1011.3116 Networking and Internet Architecture +1011.3118 Probability +1011.3121 Astrophysics of Galaxies +1011.3123 Differential Geometry +1011.3125 Probability +1011.3126 +1011.3131 Phenomenology +1011.3135 +1011.3142 Representation Theory +1011.3146 Metric Geometry +1011.3159 Spectral Theory +1011.3160 Operator Algebras +1011.3164 Probability +1011.3165 Dynamical Systems +1011.3169 Analysis of PDEs +1011.3170 Distributed, Parallel, and Cluster Computing +1011.3171 Dynamical Systems +1011.3175 Lattice +1011.3185 +1011.3187 +1011.3188 Materials Science +1011.3190 Other Condensed Matter +1011.3192 Soft Condensed Matter +1011.3195 Solar and Stellar Astrophysics +1011.3196 Soft Condensed Matter +1011.3197 +1011.3202 Phenomenology +1011.3214 Differential Geometry +1011.3215 Probability +1011.3217 Dynamical Systems +1011.3219 Theory +1011.3221 Probability +1011.3223 Probability +1011.3226 Mesoscale and Nanoscale Physics +1011.3227 Fluid Dynamics +1011.3228 Probability +1011.3242 Optimization and Control +1011.3243 Algebraic Topology +1011.3245 +1011.3246 Statistical Finance +1011.3247 Computational Finance +1011.3248 Complex Variables +1011.3250 General Physics +1011.3251 Dynamical Systems +1011.3252 Differential Geometry +1011.3254 Statistical Mechanics +1011.3256 Software Engineering +1011.3257 Human-Computer Interaction +1011.3258 Computation and Language +1011.3264 Strongly Correlated Electrons +1011.3267 Representation Theory +1011.3268 Computer Science and Game Theory +1011.3279 Cryptography and Security +1011.3289 Theory +1011.3290 +1011.3293 Superconductivity +1011.3303 Classical Analysis and ODEs +1011.3307 Materials Science +1011.3309 Applications +1011.3313 Soft Condensed Matter +1011.3318 Lattice +1011.3319 Applications +1011.3320 Probability +1011.3326 Instrumentation and Methods for Astrophysics +1011.3333 Applications +1011.3334 Analysis of PDEs +1011.3337 Disordered Systems and Neural Networks +1011.3342 Combinatorics +1011.3346 Solar and Stellar Astrophysics +1011.3350 Number Theory +1011.3351 Applications +1011.3353 Algebraic Geometry +1011.3355 Pricing of Securities +1011.3359 Classical Analysis and ODEs +1011.3360 Applications +1011.3361 Combinatorics +1011.3367 Applications +1011.3369 Experiment +1011.3370 Complex Variables +1011.3371 Applications +1011.3381 Combinatorics +1011.3382 Hardware Architecture +1011.3383 Group Theory +1011.3384 Combinatorics +1011.3387 Instrumentation and Detectors +1011.3389 Instrumentation and Detectors +1011.3392 Number Theory +1011.3397 Multiagent Systems +1011.3398 Materials Science +1011.3402 Dynamical Systems +1011.3407 Programming Languages +1011.3410 Phenomenology +1011.3411 Applications +1011.3413 Lattice +1011.3421 Combinatorics +1011.3430 Cosmology and Nongalactic Astrophysics +1011.3432 Algebraic Geometry +1011.3435 Astrophysics of Galaxies +1011.3436 Other Computer Science +1011.3440 +1011.3442 Phenomenology +1011.3448 Algebraic Geometry +1011.3452 Solar and Stellar Astrophysics +1011.3454 Dynamical Systems +1011.3459 Statistical Mechanics +1011.3463 Materials Science +1011.3470 Biological Physics +1011.3473 Representation Theory +1011.3476 Astrophysics of Galaxies +1011.3478 Metric Geometry +1011.3480 Data Structures and Algorithms +1011.3482 Networking and Internet Architecture +1011.3494 Machine Learning +1011.3496 General Mathematics +1011.3504 +1011.3509 Materials Science +cond-mat/0002234 Mesoscale and Nanoscale Physics +cond-mat/0012168 Superconductivity +cond-mat/0401307 Superconductivity +cond-mat/0411430 Superconductivity +cond-mat/0512404 Materials Science +cond-mat/0601105 Disordered Systems and Neural Networks +cond-mat/0609035 Mesoscale and Nanoscale Physics +cond-mat/9610033 Superconductivity +cond-mat/9710001 Superconductivity +cond-mat/9712234 Superconductivity +cond-mat/9805299 Superconductivity +cond-mat/9806266 Superconductivity +cond-mat/9902129 Superconductivity +cond-mat/9910260 Superconductivity +gr-qc/0501080 +gr-qc/0607031 +math/0310159 Number Theory +math/0312215 Probability +math/0406579 Number Theory +math/0412063 Number Theory +math/0506462 Number Theory +math/0507450 Number Theory +math/0508150 Number Theory +math/0509698 Statistics Theory +math/0512146 Probability +math/0512444 Statistics Theory +math/0601344 Probability +nlin/0608064 Chaotic Dynamics +physics/0404045 Optics +quant-ph/0509182 +solv-int/9912009 Exactly Solvable and Integrable Systems +0705.4125 Dynamical Systems +0706.1101 Spectral Theory +0707.4350 Mesoscale and Nanoscale Physics +0708.3699 +0710.2634 Pattern Formation and Solitons +0710.4128 Spectral Theory +0710.4899 Plasma Physics +0712.0031 Combinatorics +0712.2627 Differential Geometry +0802.3934 Probability +0804.0783 Differential Geometry +0809.0126 General Physics +0812.2386 Combinatorics +0812.3761 Theory +0903.3074 Solar and Stellar Astrophysics +0904.1175 +0905.2600 Quantum Gases +0905.3354 +0906.5095 Classical Analysis and ODEs +0908.0663 +0909.0440 Rings and Algebras +0909.4673 +0909.5499 Phenomenology +0909.5582 Differential Geometry +0911.3783 +1001.3207 Phenomenology +1002.2870 Atomic Physics +1002.4443 Mesoscale and Nanoscale Physics +1003.0100 Mesoscale and Nanoscale Physics +1003.4631 Mesoscale and Nanoscale Physics +1004.1497 Mesoscale and Nanoscale Physics +1004.2887 Quantum Gases +1004.4631 Materials Science +1005.3307 Theory +1005.4355 Soft Condensed Matter +1006.1719 Theory +1006.2432 +1007.1162 +1007.1666 General Topology +1007.2518 Metric Geometry +1007.2563 Materials Science +1007.3288 High Energy Astrophysical Phenomena +1008.1417 Logic in Computer Science +1008.1564 Materials Science +1008.1692 Category Theory +1008.1789 Computational Complexity +1008.1795 Differential Geometry +1008.1804 Chaotic Dynamics +1008.1805 Theory +1008.1809 Logic in Computer Science +1008.1811 General Physics +1008.1812 Probability +1008.1815 Physics and Society +1008.1816 Mesoscale and Nanoscale Physics +1008.1822 +1008.1825 Networking and Internet Architecture +1008.1830 Quantum Algebra +1008.1833 Phenomenology +1008.1835 Strongly Correlated Electrons +1008.1842 Networking and Internet Architecture +1008.1848 Networking and Internet Architecture +1008.1851 Networking and Internet Architecture +1008.1853 Number Theory +1008.1854 Number Theory +1008.1863 Number Theory +1008.1868 Group Theory +1008.1872 Algebraic Geometry +1008.1875 Differential Geometry +1008.1876 +1008.1878 Data Analysis, Statistics and Probability +1008.1879 Algebraic Geometry +1008.1882 Mesoscale and Nanoscale Physics +1008.1887 Populations and Evolution +1008.1894 Number Theory +1008.1895 Combinatorics +1008.1900 Distributed, Parallel, and Cluster Computing +1008.1903 Differential Geometry +1008.1906 Logic in Computer Science +1008.1912 Classical Analysis and ODEs +1008.1916 Optimization and Control +1008.1919 Soft Condensed Matter +1008.1920 Pattern Formation and Solitons +1008.1921 Phenomenology +1008.1924 Methodology +1008.1925 Differential Geometry +1008.1927 Combinatorics +1008.1933 Differential Geometry +1008.1938 Instrumentation and Detectors +1008.1939 Analysis of PDEs +1008.1940 Category Theory +1008.1942 Instrumentation and Methods for Astrophysics +1008.1949 Combinatorics +1008.1955 Biological Physics +1008.1961 Probability +1008.1964 +1008.1968 Number Theory +1008.1969 Fluid Dynamics +1008.1970 Information Theory +1008.1971 Representation Theory +1008.1976 Representation Theory +1008.1977 Information Theory +cond-mat/0310273 Mesoscale and Nanoscale Physics +cond-mat/0411655 Materials Science +cond-mat/0505755 Other Condensed Matter +cond-mat/0609012 Materials Science +cond-mat/0702019 Mesoscale and Nanoscale Physics +cs/0308023 Computational Complexity +math/0008030 Group Theory +math/0008241 Dynamical Systems +math/0109157 Quantum Algebra +math/0201261 Group Theory +math/0207223 Dynamical Systems +math/0210280 Dynamical Systems +math/0406443 Group Theory +math/0407368 Dynamical Systems +math/0504091 Group Theory +math/0504121 Group Theory +math/0505301 Metric Geometry +math/0508300 Dynamical Systems +math/0511004 Group Theory +math/0512162 Group Theory +math/0603059 Group Theory +math/0603360 Dynamical Systems +math/0605358 Dynamical Systems +math/9604233 Dynamical Systems +math/9703213 Dynamical Systems +math/9704229 Dynamical Systems +math/9906139 Dynamical Systems +physics/0205047 Instrumentation and Detectors +0705.0573 Exactly Solvable and Integrable Systems +0707.4255 Computational Complexity +0707.4487 Neurons and Cognition +0708.1529 Computational Complexity +0710.5543 Exactly Solvable and Integrable Systems +0710.5820 Exactly Solvable and Integrable Systems +0805.4276 Strongly Correlated Electrons +0809.1746 +0901.0112 Exactly Solvable and Integrable Systems +0901.1108 +0901.2953 Representation Theory +0902.0891 Dynamical Systems +0902.4657 Algebraic Geometry +0903.0965 Algebraic Geometry +0905.3484 Exactly Solvable and Integrable Systems +0906.0415 +0906.1000 Exactly Solvable and Integrable Systems +0906.2549 Digital Libraries +0906.4502 Numerical Analysis +0907.0062 Probability +0907.2268 Information Retrieval +0907.4275 +0907.4391 Number Theory +0908.0720 Materials Science +0908.1140 Materials Science +0908.4490 +0909.3382 Information Theory +0909.5599 Strongly Correlated Electrons +0910.0165 Data Analysis, Statistics and Probability +0911.2186 Strongly Correlated Electrons +0911.2823 +0911.2826 Mesoscale and Nanoscale Physics +0911.2895 Quantum Algebra +0911.3561 Quantum Gases +0911.4638 Probability +0912.1975 Strongly Correlated Electrons +1001.0011 Mesoscale and Nanoscale Physics +1001.0107 Information Theory +1001.0627 Human-Computer Interaction +1001.1368 Materials Science +1001.1680 Earth and Planetary Astrophysics +1001.2222 Cosmology and Nongalactic Astrophysics +1001.2444 +1001.2741 Chemical Physics +1002.1636 Discrete Mathematics +1002.2693 Populations and Evolution +1002.3084 Networking and Internet Architecture +1002.4659 +1003.1045 Mesoscale and Nanoscale Physics +1003.1110 Statistical Mechanics +1003.1398 Mesoscale and Nanoscale Physics +1003.2099 Optics +1003.2752 General Physics +1003.4690 Complex Variables +1003.5273 Solar and Stellar Astrophysics +1003.5474 Data Structures and Algorithms +1004.0383 Information Theory +1004.1708 Software Engineering +1004.1744 Networking and Internet Architecture +1004.2563 Strongly Correlated Electrons +1004.2565 Computer Science and Game Theory +1004.2640 General Physics +1004.2705 Phenomenology +1004.2710 Combinatorics +1004.2719 Information Retrieval +1004.2723 Number Theory +1004.2731 Physics Education +1004.2735 Discrete Mathematics +1004.2738 Superconductivity +1004.2739 Solar and Stellar Astrophysics +1004.2744 Probability +1004.2747 Rings and Algebras +1004.2749 Statistical Mechanics +1004.2752 Optimization and Control +1004.2754 Differential Geometry +1004.2756 Differential Geometry +1004.2758 Mesoscale and Nanoscale Physics +1004.2759 Combinatorics +1004.2761 Mesoscale and Nanoscale Physics +1004.2767 +1004.2770 Phenomenology +1004.2771 High Energy Astrophysical Phenomena +1004.2773 Information Theory +1004.2775 Analysis of PDEs +1004.2786 Strongly Correlated Electrons +1004.2787 Biological Physics +1004.2792 Solar and Stellar Astrophysics +1004.2793 Physics and Society +1004.2805 +1004.2806 Rings and Algebras +1004.2810 Formal Languages and Automata Theory +1004.2811 Group Theory +1004.2814 Algebraic Geometry +1004.2819 Probability +1004.2820 Rings and Algebras +1004.2828 +1004.2837 Dynamical Systems +1004.2848 Dynamical Systems +1004.2865 Pricing of Securities +1004.2866 Analysis of PDEs +1004.2869 Solar and Stellar Astrophysics +1004.2873 Logic in Computer Science +1004.2878 Materials Science +1004.2880 Artificial Intelligence +1004.2881 General Mathematics +1004.2882 Computational Complexity +1004.2889 Software Engineering +1004.2891 Computational Complexity +1004.2895 Algebraic Topology +1004.2898 Statistical Mechanics +1004.2901 Popular Physics +1004.2907 Group Theory +1004.2911 Optics +1004.2913 Symplectic Geometry +1004.2914 +cs/0601002 Computational Geometry +nlin/0504041 Exactly Solvable and Integrable Systems +nlin/0611018 Exactly Solvable and Integrable Systems +nlin/0701058 Exactly Solvable and Integrable Systems +nlin/0701059 Exactly Solvable and Integrable Systems +nlin/0701061 Exactly Solvable and Integrable Systems +0709.1331 Differential Geometry +0710.1243 +0710.5860 Differential Geometry +0801.1734 +0802.0596 Number Theory +0803.1957 Strongly Correlated Electrons +0803.3787 History and Overview +0804.0409 Cryptography and Security +0804.4636 Differential Geometry +0805.0323 Differential Geometry +0805.4102 +0807.0767 +0807.1462 Analysis of PDEs +0807.1823 General Finance +0809.1173 Differential Geometry +0809.3086 +0809.3975 +0811.0037 Computational Complexity +0811.2181 Differential Geometry +0811.4298 +0811.4307 +0812.1168 Statistical Mechanics +0812.1914 +0812.4902 Exactly Solvable and Integrable Systems +0812.5030 Computational Geometry +0902.1613 +0902.3206 Other Condensed Matter +0903.0321 Mesoscale and Nanoscale Physics +0903.2956 Mesoscale and Nanoscale Physics +0904.1812 Information Theory +0904.3268 Functional Analysis +0905.2812 Materials Science +0905.4544 Mesoscale and Nanoscale Physics +0906.0129 Instrumentation and Methods for Astrophysics +0906.0858 Statistical Mechanics +0906.1360 Information Theory +0906.2272 +0906.2483 Strongly Correlated Electrons +0906.2706 +0906.4251 Probability +0906.5277 Algebraic Geometry +0907.0056 Classical Analysis and ODEs +0907.3353 Statistical Mechanics +0907.4700 +0908.2771 +0908.3031 +0909.0822 Cosmology and Nongalactic Astrophysics +0909.1665 Differential Geometry +0910.2018 Statistical Mechanics +0910.4599 Other Condensed Matter +0911.0336 +0911.0838 Human-Computer Interaction +0911.0851 Superconductivity +0911.4809 Soft Condensed Matter +0911.4953 Algebraic Topology +0911.5280 Statistical Mechanics +0912.0810 Materials Science +0912.1464 Dynamical Systems +0912.2908 Soft Condensed Matter +0912.3195 Cosmology and Nongalactic Astrophysics +0912.3616 Mesoscale and Nanoscale Physics +0912.3876 Astrophysics of Galaxies +0912.4003 Functional Analysis +0912.4090 Materials Science +0912.4944 +0912.5012 General Physics +0912.5041 Classical Physics +0912.5292 Networking and Internet Architecture +0912.5508 General Physics +0912.5519 Differential Geometry +cond-mat/0611285 Other Condensed Matter +hep-ph/0207285 Phenomenology +hep-ph/0207298 Phenomenology +math/0201223 Differential Geometry +math/0201224 Differential Geometry +math/0201242 Differential Geometry +math/0201280 Differential Geometry +math/0201281 Differential Geometry +math/0202036 Differential Geometry +math/0406292 Differential Geometry +math/0511064 Differential Geometry +math/0607145 Geometric Topology +math/0610252 Differential Geometry +math/0611282 Differential Geometry +math/0611818 Analysis of PDEs +nlin/0309069 Chaotic Dynamics +physics/0204076 Atomic Physics +quant-ph/0608118 +0712.0114 Functional Analysis +0803.4428 Strongly Correlated Electrons +0809.1973 Algebraic Geometry +0809.3288 Classical Analysis and ODEs +0809.3405 Pricing of Securities +0810.2750 Functional Analysis +0810.5645 Algebraic Geometry +0812.4518 Algebraic Geometry +0902.2622 Dynamical Systems +0906.2646 Strongly Correlated Electrons +0906.2649 Strongly Correlated Electrons +0906.2894 Strongly Correlated Electrons +0906.3544 Statistical Mechanics +0906.4174 Geometric Topology +0907.3147 +0907.3210 +0907.3726 Differential Geometry +0908.0109 +0908.4036 Strongly Correlated Electrons +0909.0549 +0909.1007 Statistical Finance +0909.5070 Computational Physics +0910.5608 +0911.3837 +0911.3839 Combinatorics +0911.4024 Materials Science +0911.4544 Data Structures and Algorithms +0911.5496 Mesoscale and Nanoscale Physics +0912.0390 Phenomenology +0912.1468 +0912.2783 Strongly Correlated Electrons +0912.4180 +0912.4257 Quantum Gases +1001.0551 High Energy Astrophysical Phenomena +1001.0553 High Energy Astrophysical Phenomena +1001.0669 Soft Condensed Matter +1001.1074 Superconductivity +1001.2804 Superconductivity +1001.3176 Statistical Finance +1001.4361 Information Theory +1001.4554 Physics and Society +1001.4735 Mesoscale and Nanoscale Physics +1002.0265 Quantum Gases +1002.1484 +1002.1635 Strongly Correlated Electrons +1002.1653 Statistical Finance +1002.3360 Statistical Mechanics +1002.4908 Learning +1003.3044 Algebraic Geometry +1003.4607 +1004.5298 Mesoscale and Nanoscale Physics +1005.1117 Probability +1006.0585 Analysis of PDEs +1006.0998 Strongly Correlated Electrons +1006.4294 Data Analysis, Statistics and Probability +1006.4587 +1006.4626 Superconductivity +1006.5404 Superconductivity +1007.0255 Superconductivity +1007.0817 Chaotic Dynamics +1007.0829 Experiment +1007.0911 +1007.0995 Computational Physics +1007.1001 Analysis of PDEs +1007.1009 Earth and Planetary Astrophysics +1007.1012 Data Analysis, Statistics and Probability +1007.1013 +1007.1015 Astrophysics of Galaxies +1007.1016 Computer Vision and Pattern Recognition +1007.1018 Number Theory +1007.1020 Logic in Computer Science +1007.1021 Logic in Computer Science +1007.1022 Software Engineering +1007.1023 Software Engineering +1007.1024 Artificial Intelligence +1007.1025 Computation and Language +1007.1026 Cellular Automata and Lattice Gases +1007.1027 Functional Analysis +1007.1028 Superconductivity +1007.1030 Strongly Correlated Electrons +1007.1031 +1007.1032 Computation +1007.1039 Probability +1007.1050 Mesoscale and Nanoscale Physics +1007.1054 Formal Languages and Automata Theory +1007.1055 Mesoscale and Nanoscale Physics +1007.1063 Disordered Systems and Neural Networks +1007.1069 Information Theory +1007.1072 Differential Geometry +1007.1073 Computational Complexity +1007.1075 Machine Learning +1007.1077 Category Theory +1007.1079 Information Retrieval +1007.1083 Algebraic Geometry +1007.1085 Operator Algebras +1007.1086 Distributed, Parallel, and Cluster Computing +1007.1087 Information Theory +1007.1089 +1007.1092 Cell Behavior +1007.1094 Other Statistics +1007.1095 Combinatorics +1007.1098 Representation Theory +1007.1100 Networking and Internet Architecture +1007.1105 Analysis of PDEs +1007.1107 Superconductivity +1007.1111 Analysis of PDEs +1007.1113 Analysis of PDEs +1007.1117 Algebraic Topology +1007.1119 Functional Analysis +1007.1132 Solar and Stellar Astrophysics +1007.1135 +1007.1136 Optimization and Control +1007.1140 Applications +1007.1154 Optics +1007.1156 Superconductivity +1007.1161 Data Structures and Algorithms +1007.1164 Optics +1007.1165 Representation Theory +1007.1168 Optics +1007.1175 Geometric Topology +1007.1178 Combinatorics +1007.1185 Functional Analysis +1007.1186 Functional Analysis +1007.1192 Operator Algebras +1007.1194 Networking and Internet Architecture +1007.1201 Theory +1007.1208 Mesoscale and Nanoscale Physics +1007.1209 Information Theory +1007.1210 Classical Analysis and ODEs +1007.1217 Analysis of PDEs +1007.1219 Metric Geometry +1007.1220 Metric Geometry +1007.1222 Computational Geometry +1007.1228 Fluid Dynamics +cond-mat/0506141 Strongly Correlated Electrons +cond-mat/0609372 Strongly Correlated Electrons +cond-mat/0610272 Strongly Correlated Electrons +math/0507533 Classical Analysis and ODEs +math/0611729 Functional Analysis +math/0702754 Classical Analysis and ODEs +math/0702758 Classical Analysis and ODEs +math/0702806 Complex Variables +0704.1975 Dynamical Systems +0705.1156 Soft Condensed Matter +0709.0416 Group Theory +0709.4393 Group Theory +0711.1662 Dynamical Systems +0712.0018 Geophysics +0803.4113 Algebraic Geometry +0805.0448 General Physics +0806.0167 Geophysics +0806.1153 +0808.3525 General Physics +0809.0008 +0809.3476 Combinatorics +0809.4505 +0811.0805 Symplectic Geometry +0811.2236 Dynamical Systems +0811.2450 Statistical Mechanics +0811.3127 +0811.4134 +0812.3414 +0901.4527 High Energy Astrophysical Phenomena +0902.0144 Theory +0902.1375 Differential Geometry +0902.1553 Theory +0904.1037 Materials Science +0904.1039 Materials Science +0904.1249 Materials Science +0904.1251 Materials Science +0904.3135 General Physics +0904.3141 General Physics +0907.1659 Cosmology and Nongalactic Astrophysics +0907.3814 Quantum Gases +0908.1138 Dynamical Systems +0910.0008 Cosmology and Nongalactic Astrophysics +0910.1351 Instrumentation and Methods for Astrophysics +0910.5015 Probability +0911.0142 Formal Languages and Automata Theory +0911.4155 Phenomenology +0911.4562 Fluid Dynamics +0912.1915 Algebraic Geometry +0912.5112 +0912.5381 Molecular Networks +1001.1170 Cosmology and Nongalactic Astrophysics +1001.1789 Dynamical Systems +1001.4837 Materials Science +1001.4842 Materials Science +1002.2444 Quantum Gases +1002.3509 Probability +1002.3933 Dynamical Systems +1003.0894 Strongly Correlated Electrons +1003.1052 Statistical Mechanics +1003.1296 Theory +1003.4029 Computational Complexity +1003.4342 Statistical Mechanics +1003.5433 Strongly Correlated Electrons +1003.5507 Commutative Algebra +1003.5883 Dynamical Systems +1004.0882 +1004.0920 Probability +1004.1637 Cosmology and Nongalactic Astrophysics +1004.1681 Mesoscale and Nanoscale Physics +1004.2337 Materials Science +1004.3628 Strongly Correlated Electrons +1004.3638 Mesoscale and Nanoscale Physics +1005.0073 Geometric Topology +1005.0355 Phenomenology +1005.2076 Phenomenology +1005.3576 Quantum Gases +1005.3577 Quantum Gases +1005.4714 Databases +1005.4718 Theory +1005.4739 Mesoscale and Nanoscale Physics +1005.5320 Disordered Systems and Neural Networks +1005.5519 Classical Physics +1005.5520 Combinatorics +1006.1685 Quantum Gases +1006.2768 Statistical Mechanics +1006.3460 Strongly Correlated Electrons +1006.3801 Mesoscale and Nanoscale Physics +1006.5839 Quantum Gases +1007.0681 Analysis of PDEs +1007.1471 Mesoscale and Nanoscale Physics +1007.1657 Quantum Gases +1007.3531 Materials Science +1007.3717 Theory +1007.4723 Distributed, Parallel, and Cluster Computing +1007.5076 +1008.1643 Artificial Intelligence +1008.2024 Phenomenology +1008.2409 Chaotic Dynamics +1008.3636 Phenomenology +1008.4154 Group Theory +1008.5132 Theory +1009.1674 Computational Physics +1009.1854 Theory +1009.1991 Theory +1009.2767 Theory +1009.2818 Phenomenology +1009.2988 Mesoscale and Nanoscale Physics +1009.4970 Discrete Mathematics +1009.5354 Probability +1009.5935 Lattice +1010.0243 Phenomenology +1010.0267 Cosmology and Nongalactic Astrophysics +1010.0361 Exactly Solvable and Integrable Systems +1010.1194 Classical Analysis and ODEs +1010.1562 Phenomenology +1010.2164 General Physics +1010.2484 History and Overview +1010.2976 Materials Science +1010.3144 Analysis of PDEs +1010.3863 Superconductivity +1010.3950 Superconductivity +1010.4135 Statistical Mechanics +1010.4370 Functional Analysis +1010.5814 Geometric Topology +1010.5926 +1010.6126 Mesoscale and Nanoscale Physics +1010.6210 Lattice +1011.0347 Solar and Stellar Astrophysics +1011.0669 Neurons and Cognition +1011.0761 Lattice +1011.0811 Chaotic Dynamics +1011.1415 Symplectic Geometry +1011.2816 Superconductivity +1011.3938 Representation Theory +1011.4693 Differential Geometry +1011.5411 Rings and Algebras +1011.6014 Materials Science +1011.6594 Networking and Internet Architecture +1012.0278 Algebraic Geometry +1012.0457 Commutative Algebra +1012.0910 Theory +1012.1419 +1012.1444 Number Theory +1012.1938 Computer Science and Game Theory +1012.1981 Phenomenology +1012.2018 Representation Theory +1012.2138 Computer Vision and Pattern Recognition +1012.2202 Data Structures and Algorithms +1012.2386 Solar and Stellar Astrophysics +1012.2389 Rings and Algebras +1012.2394 Computational Complexity +1012.2407 Pattern Formation and Solitons +1012.2421 Symplectic Geometry +1012.2423 General Physics +1012.2434 Materials Science +1012.2438 Analysis of PDEs +1012.2440 Computational Complexity +1012.2444 Biological Physics +1012.2447 Mesoscale and Nanoscale Physics +1012.2449 Experiment +1012.2454 Algebraic Geometry +1012.2460 Combinatorics +1012.2461 Other Condensed Matter +1012.2465 Pattern Formation and Solitons +1012.2469 Software Engineering +1012.2472 High Energy Astrophysical Phenomena +1012.2477 Number Theory +1012.2479 Complex Variables +1012.2481 Algebraic Geometry +1012.2482 Geometric Topology +1012.2483 Analysis of PDEs +1012.2491 Computer Vision and Pattern Recognition +1012.2493 Experiment +1012.2495 Mesoscale and Nanoscale Physics +1012.2500 Lattice +1012.2503 Probability +1012.2505 Soft Condensed Matter +1012.2507 Probability +1012.2508 Probability +1012.2509 Cryptography and Security +1012.2510 Networking and Internet Architecture +1012.2512 K-Theory and Homology +1012.2514 Learning +1012.2516 Cryptography and Security +1012.2518 Networking and Internet Architecture +1012.2519 Cryptography and Security +1012.2520 Cryptography and Security +1012.2524 Networking and Internet Architecture +1012.2528 Cryptography and Security +1012.2529 Cryptography and Security +1012.2530 +1012.2532 +1012.2533 +1012.2534 +1012.2535 Solar and Stellar Astrophysics +1012.2536 +1012.2537 Functional Analysis +1012.2539 Rings and Algebras +1012.2541 Optics +1012.2545 Combinatorics +1012.2546 Astrophysics of Galaxies +1012.2547 Data Structures and Algorithms +1012.2553 Logic in Computer Science +1012.2557 Rings and Algebras +1012.2558 Rings and Algebras +1012.2559 Rings and Algebras +1012.2563 Rings and Algebras +1012.2568 Theory +1012.2569 +1012.2570 Instrumentation and Methods for Astrophysics +1012.2573 Data Structures and Algorithms +1012.2579 Combinatorics +1012.2581 Probability +1012.2583 Algebraic Geometry +1012.2584 +1012.2587 Instrumentation and Methods for Astrophysics +1012.2588 +1012.2589 History and Philosophy of Physics +1012.2591 Popular Physics +1012.2593 Dynamical Systems +1012.2596 Information Theory +1012.2598 Information Theory +1012.2599 Learning +1012.2600 Theory +1012.2602 General Mathematics +1012.2603 Computer Vision and Pattern Recognition +1012.2604 +1012.2613 Statistical Mechanics +1012.2619 Materials Science +1012.2621 Information Theory +1012.2622 Information Theory +1012.2624 Probability +1012.2632 Combinatorics +1012.2633 Databases +1012.2635 Geometric Topology +1012.2636 Geometric Topology +1012.2640 Cell Behavior +1012.2642 Solar and Stellar Astrophysics +1012.2645 Lattice +1012.2653 Phenomenology +1012.2654 Superconductivity +1012.2662 Robotics +1012.2663 Cosmology and Nongalactic Astrophysics +1012.2665 Cosmology and Nongalactic Astrophysics +1012.2666 Robotics +1012.2668 Robotics +1012.2671 Cosmology and Nongalactic Astrophysics +1012.2672 Solar and Stellar Astrophysics +1012.2673 Information Theory +1012.2678 History and Philosophy of Physics +1012.2680 +1012.2687 Disordered Systems and Neural Networks +1012.2689 Experiment +1012.2694 Computational Geometry +1012.2704 +1012.2705 Quantum Gases +1012.2707 Theory +1012.2709 Phenomenology +1012.2713 Artificial Intelligence +1012.2714 Chaotic Dynamics +1012.2718 Probability +1012.2720 Cryptography and Security +1012.2722 High Energy Astrophysical Phenomena +1012.2726 Physics and Society +1012.2727 Lattice +1012.2735 Optics +1012.2738 Computational Complexity +1012.2739 Differential Geometry +1012.2741 Analysis of PDEs +1012.2743 Probability +1012.2746 Soft Condensed Matter +1012.2749 Combinatorics +1012.2752 Exactly Solvable and Integrable Systems +1012.2756 Cosmology and Nongalactic Astrophysics +1012.2757 Probability +1012.2758 Functional Analysis +1012.2762 Numerical Analysis +1012.2763 Group Theory +1012.2764 Strongly Correlated Electrons +1012.2769 Mesoscale and Nanoscale Physics +1012.2771 Formal Languages and Automata Theory +1012.2773 Fluid Dynamics +1012.2774 Social and Information Networks +1012.2785 Dynamical Systems +1012.2786 Lattice +1012.2787 Robotics +1012.2790 +1012.2791 Solar and Stellar Astrophysics +1012.2793 Number Theory +1012.2797 Sound +1012.2805 Disordered Systems and Neural Networks +1012.2806 Phenomenology +1012.2808 Algebraic Geometry +1012.2809 Representation Theory +1012.2811 Probability +1012.2813 Disordered Systems and Neural Networks +1012.2815 Phenomenology +1012.2820 High Energy Astrophysical Phenomena +1012.2827 Analysis of PDEs +1012.2828 Geometric Topology +1012.2829 Analysis of PDEs +1012.2830 Networking and Internet Architecture +1012.2832 Human-Computer Interaction +1012.2833 Mesoscale and Nanoscale Physics +1012.2837 Superconductivity +1012.2840 Group Theory +1012.2844 Rings and Algebras +1012.2845 +1012.2852 Number Theory +astro-ph/0611782 +atom-ph/9510002 Atomic Physics +cond-mat/0203325 Soft Condensed Matter +cond-mat/0211103 Soft Condensed Matter +gr-qc/0111098 +hep-lat/9804001 Lattice +hep-lat/9812006 Lattice +hep-ph/0610092 Phenomenology +hep-th/0412108 Theory +math/0506482 Group Theory +math/0508192 Combinatorics +math/0510353 Group Theory +math/0603682 Group Theory +math/0609147 Group Theory +math/0701579 Dynamical Systems +math/9810185 Geometric Topology +nucl-th/0702067 +physics/0109073 Fluid Dynamics +physics/9808053 General Physics +quant-ph/0508233 +0708.1209 General Physics +0708.1655 General Physics +0709.0941 History and Philosophy of Physics +0709.1183 History and Philosophy of Physics +0709.1248 Physics Education +0712.0437 Strongly Correlated Electrons +0803.3042 Probability +0804.3104 Dynamical Systems +0805.4449 Commutative Algebra +0810.3485 Analysis of PDEs +0812.5073 Pattern Formation and Solitons +0902.0774 Materials Science +0902.1750 Category Theory +0905.2459 Computer Vision and Pattern Recognition +0908.1250 Category Theory +0908.2392 Theory +0909.1446 Probability +0909.2054 Superconductivity +0909.3759 Quantum Algebra +0910.3630 +0910.4566 Dynamical Systems +0911.2866 Probability +0911.5401 Cosmology and Nongalactic Astrophysics +0912.0532 Symplectic Geometry +1001.0354 Geometric Topology +1001.1425 +1001.1878 +1001.2976 Materials Science +1001.4410 +1001.4786 Theory +1001.4964 +cond-mat/0404497 Disordered Systems and Neural Networks +cond-mat/9802126 +math-ph/0105036 +math-ph/0703081 +math/0703493 Logic +physics/0505149 General Physics +quant-ph/0106026 +quant-ph/0106027 +quant-ph/0202127 +quant-ph/0202174 +quant-ph/0206143 +quant-ph/0207030 +quant-ph/0210129 +quant-ph/0303161 +quant-ph/0310045 +quant-ph/0509032 +quant-ph/9906118 +quant-ph/9910111 +0708.0811 +0712.1321 Differential Geometry +0801.2339 Quantum Algebra +0805.3168 Theory +0806.0170 Quantum Algebra +0807.1878 +0809.2252 +0812.0468 +0812.4999 Theory +0901.0093 Materials Science +0902.3623 Artificial Intelligence +0903.4010 Phenomenology +0905.0101 Experiment +0905.1239 Strongly Correlated Electrons +0905.2272 Phenomenology +0905.2658 Representation Theory +0905.3634 Quantum Gases +0905.4146 Cosmology and Nongalactic Astrophysics +0906.0421 Number Theory +0906.1193 Superconductivity +0906.2390 Theory +0906.4052 Phenomenology +0906.5137 Rings and Algebras +0907.2114 +0907.2876 Dynamical Systems +0908.1157 Probability +0909.2868 Theory +0909.4833 Theory +0909.5682 Theory +0911.0594 Phenomenology +0911.0918 Dynamical Systems +0911.1719 Theory +0911.2449 Lattice +0911.3573 Theory +0911.3963 +0911.5093 Instrumentation and Detectors +0911.5643 Theory +0912.1930 Theory +0912.4675 Phenomenology +1001.2982 Operator Algebras +1001.3226 Number Theory +1002.3854 Solar and Stellar Astrophysics +1003.0597 +1003.4283 Theory +1003.5396 Theory +1003.5606 +1004.2798 Phenomenology +1004.4117 Phenomenology +1004.4390 Phenomenology +1004.4472 Strongly Correlated Electrons +1005.1241 Experiment +1005.4295 Statistical Mechanics +1005.4890 +1006.1140 Classical Analysis and ODEs +1006.1500 +1006.1871 Theory +1006.2174 Theory +1006.2431 Phenomenology +1006.2704 Phenomenology +1006.3429 Experiment +1006.4579 Quantum Gases +1006.5816 Lattice +1007.1053 Phenomenology +1007.1376 Dynamical Systems +1007.1515 Lattice +1007.2619 Phenomenology +1007.2733 Mesoscale and Nanoscale Physics +1007.3616 Phenomenology +1007.4484 Materials Science +1007.4493 +1007.4526 Analysis of PDEs +1007.4780 Disordered Systems and Neural Networks +1007.5246 +1007.5482 Experiment +1008.0152 Phenomenology +1008.0280 Phenomenology +1008.0476 Phenomenology +1008.0846 Probability +1008.1200 Theory +1008.1226 +1008.2747 Statistical Mechanics +1008.4337 Phenomenology +1008.4575 Phenomenology +1008.5335 Cosmology and Nongalactic Astrophysics +1009.0752 Theory +1009.1538 Mesoscale and Nanoscale Physics +1009.3251 Theory +1009.3438 Quantum Gases +1009.3445 Theory +1009.3633 +1009.3762 Phenomenology +1009.3837 +1009.4190 Earth and Planetary Astrophysics +1009.4233 +1009.5952 Atomic Physics +1010.0101 +1010.1870 Phenomenology +1010.2577 Algebraic Geometry +1010.3114 Plasma Physics +1010.5433 Lattice +1010.6108 +1011.1143 Representation Theory +1011.1399 Complex Variables +1011.2267 Differential Geometry +1011.2460 Geometric Topology +1011.4516 Astrophysics of Galaxies +1011.5262 Phenomenology +1012.0306 Cosmology and Nongalactic Astrophysics +1012.1455 +1012.2052 Cosmology and Nongalactic Astrophysics +1012.2157 Earth and Planetary Astrophysics +1012.2311 +1012.2393 Theory +1012.2418 +1012.2441 Disordered Systems and Neural Networks +1012.2480 Group Theory +1012.2631 Data Analysis, Statistics and Probability +1012.2641 Combinatorics +1012.2648 Databases +1012.2661 Computation and Language +1012.2674 Numerical Analysis +1012.2691 +1012.2693 Combinatorics +1012.2781 Lattice +1012.2877 Classical Analysis and ODEs +1012.2881 Theory +1012.2898 Differential Geometry +1012.2904 Astrophysics of Galaxies +1012.2906 Theory +1012.2907 +1012.2909 Instrumentation and Methods for Astrophysics +1012.2925 Solar and Stellar Astrophysics +1012.2927 Materials Science +1012.2929 Strongly Correlated Electrons +1012.2931 Representation Theory +1012.2932 Astrophysics of Galaxies +1012.2933 Classical Analysis and ODEs +1012.2934 Astrophysics of Galaxies +1012.2936 Astrophysics of Galaxies +1012.2937 Mesoscale and Nanoscale Physics +1012.2944 Analysis of PDEs +1012.2945 Materials Science +1012.2947 Physics and Society +1012.2948 Analysis of PDEs +1012.2949 Mesoscale and Nanoscale Physics +1012.2950 Combinatorics +1012.2953 Lattice +1012.2956 Probability +1012.2957 Solar and Stellar Astrophysics +1012.2961 +1012.2965 Multimedia +1012.2966 High Energy Astrophysical Phenomena +1012.2968 Solar and Stellar Astrophysics +1012.2972 Earth and Planetary Astrophysics +1012.2975 Experiment +1012.2979 Cryptography and Security +1012.2981 Lattice +1012.2984 Number Theory +1012.2987 Combinatorics +1012.2990 Computational Physics +1012.2992 Cosmology and Nongalactic Astrophysics +1012.2995 Logic in Computer Science +1012.2997 Solar and Stellar Astrophysics +1012.3000 Computational Complexity +1012.3006 Differential Geometry +1012.3009 High Energy Astrophysical Phenomena +1012.3011 Data Structures and Algorithms +1012.3013 Solar and Stellar Astrophysics +1012.3018 Artificial Intelligence +1012.3019 Solar and Stellar Astrophysics +1012.3024 Data Structures and Algorithms +1012.3026 Mesoscale and Nanoscale Physics +1012.3028 Mesoscale and Nanoscale Physics +1012.3031 Cosmology and Nongalactic Astrophysics +1012.3032 Cosmology and Nongalactic Astrophysics +1012.3040 Logic in Computer Science +1012.3044 Quantitative Methods +1012.3047 Geometric Topology +1012.3051 Cosmology and Nongalactic Astrophysics +1012.3056 Probability +1012.3058 Instrumentation and Methods for Astrophysics +1012.3060 +1012.3065 Analysis of PDEs +1012.3066 Strongly Correlated Electrons +1012.3067 Phenomenology +1012.3068 Analysis of PDEs +1012.3071 Networking and Internet Architecture +1012.3072 Solar and Stellar Astrophysics +1012.3083 +1012.3084 +1012.3085 +1012.3087 Analysis of PDEs +1012.3090 +1012.3092 Biological Physics +1012.3094 Analysis of PDEs +1012.3098 Neural and Evolutionary Computing +1012.3099 Analysis of PDEs +1012.3100 Cryptography and Security +1012.3104 Analysis of PDEs +1012.3107 Differential Geometry +1012.3108 Analysis of PDEs +1012.3109 +1012.3112 Materials Science +1012.3116 Quantum Algebra +1012.3126 Superconductivity +1012.3131 Differential Geometry +1012.3134 Differential Geometry +1012.3136 Probability +1012.3139 +1012.3140 Probability +1012.3147 +1012.3148 Artificial Intelligence +1012.3155 Strongly Correlated Electrons +1012.3156 Networking and Internet Architecture +hep-ex/0408074 Experiment +hep-th/0609083 Theory +math/0006221 Quantum Algebra +math/0312158 Quantum Algebra +math/0406421 Complex Variables +math/0503315 Quantum Algebra +math/0611764 Geometric Topology +math/0703334 Dynamical Systems +nucl-ex/0007014 +nucl-ex/0008008 +nucl-ex/9709007 +nucl-ex/9905009 +nucl-th/0309024 +nucl-th/0409032 +nucl-th/0411066 +nucl-th/0512024 +physics/0001023 Instrumentation and Detectors +0705.2267 Number Theory +0706.2328 Quantitative Methods +0706.3211 +0707.1459 Number Theory +0802.1516 Soft Condensed Matter +0802.1520 Quantitative Methods +0802.2327 +0804.0702 Mesoscale and Nanoscale Physics +0805.4054 Soft Condensed Matter +0806.3475 +0810.0901 Machine Learning +0811.2664 Statistics Theory +0811.4703 Algebraic Geometry +0901.3084 +0902.2380 Operator Algebras +0903.4494 Classical Analysis and ODEs +0905.1368 Symplectic Geometry +0906.1840 Combinatorics +0908.1308 Commutative Algebra +0908.4436 Probability +0909.5208 +0910.1368 Operator Algebras +0912.2241 Populations and Evolution +0912.3376 Numerical Analysis +1001.1490 General Mathematics +1001.2768 Lattice +1001.4319 +1002.2256 +1002.2953 +1002.3434 Cosmology and Nongalactic Astrophysics +1002.3569 Number Theory +1002.4033 Superconductivity +1003.3462 Strongly Correlated Electrons +1003.3794 Mesoscale and Nanoscale Physics +1003.6025 History and Overview +1004.0218 Quantum Gases +1004.0461 Cosmology and Nongalactic Astrophysics +1004.0876 Phenomenology +1004.2504 Cosmology and Nongalactic Astrophysics +1004.3252 Theory +1004.3546 Cosmology and Nongalactic Astrophysics +1004.4013 Representation Theory +1004.4321 Materials Science +1004.4823 Strongly Correlated Electrons +1005.1373 Representation Theory +1005.3660 Quantum Gases +1005.4061 Strongly Correlated Electrons +1006.0908 Mesoscale and Nanoscale Physics +1006.3287 Soft Condensed Matter +1006.3303 Number Theory +1006.3305 Number Theory +1006.4085 Materials Science +1007.1285 Mesoscale and Nanoscale Physics +1007.4113 Physics and Society +1007.5174 Combinatorics +1008.0247 Experiment +1008.0502 Computer Vision and Pattern Recognition +1008.1978 Number Theory +1008.2015 Superconductivity +1008.2136 Discrete Mathematics +1008.2203 Mesoscale and Nanoscale Physics +1008.2213 Solar and Stellar Astrophysics +1008.2214 Differential Geometry +1008.2217 Geometric Topology +1008.2220 General Mathematics +1008.2222 +1008.2223 Cryptography and Security +1008.2226 Computational Finance +1008.2228 Combinatorics +1008.2231 Superconductivity +1008.2234 Materials Science +1008.2249 Networking and Internet Architecture +1008.2251 Combinatorics +1008.2256 Superconductivity +1008.2266 Information Theory +1008.2268 Number Theory +1008.2271 Methodology +1008.2274 Cosmology and Nongalactic Astrophysics +1008.2275 Functional Analysis +1008.2287 High Energy Astrophysical Phenomena +1008.2291 Experiment +1008.2292 Probability +1008.2295 Number Theory +1008.2296 Instrumentation and Detectors +1008.2298 Plasma Physics +1008.2300 Databases +1008.2302 Theory +1008.2312 Strongly Correlated Electrons +1008.2314 Populations and Evolution +1008.2320 Combinatorics +1008.2321 +1008.2329 Dynamical Systems +1008.2335 Subcellular Processes +1008.2336 Plasma Physics +1008.2340 Number Theory +1008.2341 Mesoscale and Nanoscale Physics +1008.2342 Mesoscale and Nanoscale Physics +1008.2346 Solar and Stellar Astrophysics +1008.2347 Optimization and Control +1008.2350 Mesoscale and Nanoscale Physics +1008.2357 Analysis of PDEs +1008.2362 Biological Physics +1008.2363 Probability +1008.2366 Classical Analysis and ODEs +1008.2369 Other Condensed Matter +1008.2372 Classical Analysis and ODEs +1008.2375 Combinatorics +1008.2379 Phenomenology +1008.2380 Rings and Algebras +cond-mat/0410436 Soft Condensed Matter +math/0309135 Combinatorics +physics/0304100 Optics +q-bio/0501029 Subcellular Processes +q-bio/0502006 Subcellular Processes +quant-ph/0610258 +0707.4585 Mesoscale and Nanoscale Physics +0708.2961 Commutative Algebra +0802.0275 Materials Science +0802.4362 +0808.0112 Artificial Intelligence +0808.2575 Theory +0809.0947 Exactly Solvable and Integrable Systems +0810.5009 Analysis of PDEs +0812.4876 Analysis of PDEs +0903.0995 Theory +0905.1587 Discrete Mathematics +0906.4561 Cosmology and Nongalactic Astrophysics +0907.2529 Algebraic Geometry +0907.2789 Soft Condensed Matter +0907.4383 Cosmology and Nongalactic Astrophysics +0909.1907 Superconductivity +0909.4392 Analysis of PDEs +0911.5000 Dynamical Systems +0912.0590 Analysis of PDEs +0912.2604 Optics +0912.2789 Differential Geometry +0912.3702 High Energy Astrophysical Phenomena +1001.2063 Analysis of PDEs +1002.1769 Exactly Solvable and Integrable Systems +1002.4921 Algebraic Geometry +1003.0371 Quantum Gases +1003.0510 Superconductivity +1003.1620 Phenomenology +1003.1733 Optics +1003.2274 Combinatorics +1003.2909 Statistical Mechanics +1003.5690 +1004.0160 Category Theory +1004.1569 Data Structures and Algorithms +1004.1839 Statistical Mechanics +1004.2632 Theory +1004.5447 Theory +1005.0252 Optimization and Control +1005.1046 Classical Analysis and ODEs +1005.2229 Operator Algebras +1005.2963 Superconductivity +1005.4304 Materials Science +1005.4742 Statistical Mechanics +1005.5182 +1006.0311 Combinatorics +1006.1085 Mesoscale and Nanoscale Physics +1006.3255 Cosmology and Nongalactic Astrophysics +1006.4075 Materials Science +1006.5240 Numerical Analysis +1007.0429 Soft Condensed Matter +1007.2323 Phenomenology +1007.3066 +1007.3946 Optimization and Control +1007.4012 Phenomenology +1007.4516 +1008.1141 Quantum Gases +1008.1574 Theory +1008.2382 Mesoscale and Nanoscale Physics +1008.4162 +1009.3622 Algebraic Topology +1009.4292 Strongly Correlated Electrons +1009.4647 Phenomenology +1009.5050 Superconductivity +1009.5279 Representation Theory +1010.0673 Cosmology and Nongalactic Astrophysics +1010.2500 Cosmology and Nongalactic Astrophysics +1010.4080 Plasma Physics +1010.4782 Lattice +1010.5275 Geometric Topology +1010.5412 Robotics +1010.5680 Solar and Stellar Astrophysics +1010.5788 High Energy Astrophysical Phenomena +1010.5791 Analysis of PDEs +1010.5807 Analysis of PDEs +1010.5816 Combinatorics +1010.5817 Differential Geometry +1010.5822 +1010.5823 Atmospheric and Oceanic Physics +1010.5824 Materials Science +1010.5825 Statistical Mechanics +1010.5826 +1010.5832 Phenomenology +1010.5847 Earth and Planetary Astrophysics +1010.5849 Solar and Stellar Astrophysics +1010.5851 +1010.5852 General Physics +1010.5855 +1010.5857 Combinatorics +1010.5858 Solar and Stellar Astrophysics +1010.5864 Analysis of PDEs +1010.5869 Dynamical Systems +1010.5872 Operator Algebras +1010.5875 Cryptography and Security +1010.5882 Soft Condensed Matter +1010.5886 General Physics +1010.5891 Robotics +1010.5900 Quantum Gases +1010.5912 Cosmology and Nongalactic Astrophysics +1010.5916 Spectral Theory +1010.5918 Combinatorics +1010.5919 Combinatorics +1010.5928 Biological Physics +1010.5932 Solar and Stellar Astrophysics +1010.5934 Category Theory +1010.5935 Digital Libraries +1010.5936 Differential Geometry +1010.5939 Digital Libraries +1010.5952 Commutative Algebra +1010.5954 Artificial Intelligence +1010.5969 Phenomenology +1010.5970 Strongly Correlated Electrons +1010.5972 Cosmology and Nongalactic Astrophysics +1010.5976 Phenomenology +1010.5978 Superconductivity +1010.5980 Phenomenology +1010.5983 Mesoscale and Nanoscale Physics +1010.5992 Accelerator Physics +1010.5997 Phenomenology +1010.6001 High Energy Astrophysical Phenomena +1010.6006 Strongly Correlated Electrons +1010.6007 Optimization and Control +1010.6009 Number Theory +1010.6010 Differential Geometry +1010.6014 Mesoscale and Nanoscale Physics +1010.6016 Probability +1010.6019 Mesoscale and Nanoscale Physics +1010.6020 Information Theory +1010.6022 Group Theory +1010.6025 Analysis of PDEs +1010.6028 Dynamical Systems +1010.6029 +1010.6034 Phenomenology +1010.6041 Solar and Stellar Astrophysics +1010.6045 Biological Physics +1010.6048 Classical Analysis and ODEs +1010.6050 General Finance +1010.6052 Classical Analysis and ODEs +1010.6055 Complex Variables +1010.6057 Information Theory +1010.6066 Number Theory +cond-mat/0612465 Statistical Mechanics +hep-ph/0703258 Phenomenology +math/0606384 Dynamical Systems +math/0610206 Numerical Analysis +nlin/0510035 Exactly Solvable and Integrable Systems +0706.4194 Mesoscale and Nanoscale Physics +0708.2078 Optimization and Control +0708.4327 Group Theory +0710.3538 Complex Variables +0802.1245 Quantum Algebra +0802.4141 Risk Management +0803.1083 +0803.3352 +0805.2915 Algebraic Geometry +0809.2760 +0809.2925 Algebraic Geometry +0809.4309 Algebraic Geometry +0811.0759 Strongly Correlated Electrons +0812.1247 Materials Science +0812.5064 Learning +0901.2863 Statistical Mechanics +0902.1965 Materials Science +0903.0688 Geophysics +0903.3271 Atomic Physics +0904.0210 Probability +0905.3209 +0906.1634 Mesoscale and Nanoscale Physics +0907.2438 Pattern Formation and Solitons +0908.0453 Cosmology and Nongalactic Astrophysics +0908.2288 Quantum Algebra +0909.0527 Representation Theory +0909.0790 Mesoscale and Nanoscale Physics +0909.1705 Mesoscale and Nanoscale Physics +0910.0712 Strongly Correlated Electrons +0910.1154 Physics and Society +0911.1476 Chaotic Dynamics +0911.2103 Strongly Correlated Electrons +0911.3562 Quantum Algebra +0912.0393 Analysis of PDEs +0912.0943 Strongly Correlated Electrons +0912.2261 Chaotic Dynamics +0912.5220 Analysis of PDEs +1001.0175 Computation +1001.0463 Cosmology and Nongalactic Astrophysics +1001.5221 Analysis of PDEs +1002.2472 High Energy Astrophysical Phenomena +1002.3284 Mesoscale and Nanoscale Physics +1003.0534 +1003.0539 Superconductivity +1003.0651 Symplectic Geometry +1003.0807 Soft Condensed Matter +1003.2643 Digital Libraries +1003.2667 +1003.3060 General Physics +1003.3299 Information Theory +1003.3478 Algebraic Geometry +1003.3617 Solar and Stellar Astrophysics +1003.3670 Theory +1003.3672 Cryptography and Security +1003.3673 Phenomenology +1003.3674 Cosmology and Nongalactic Astrophysics +1003.3684 Distributed, Parallel, and Cluster Computing +1003.3685 Geometric Topology +1003.3690 Functional Analysis +1003.3708 Computers and Society +1003.3709 Statistical Mechanics +1003.3719 Operator Algebras +1003.3725 Representation Theory +1003.3731 Probability +1003.3733 Probability +1003.3734 Rings and Algebras +1003.3736 Number Theory +1003.3739 Operator Algebras +1003.3751 +1003.3755 Quantum Gases +1003.3758 +1003.3759 Algebraic Geometry +1003.3763 Materials Science +1003.3764 Analysis of PDEs +1003.3765 Information Theory +1003.3768 Analysis of PDEs +1003.3772 Number Theory +1003.3773 Solar and Stellar Astrophysics +1003.3780 Number Theory +1003.3789 Soft Condensed Matter +1003.3792 Information Theory +1003.3798 Superconductivity +1003.3799 Analysis of PDEs +1003.3800 Statistics Theory +1003.3801 Group Theory +1003.3802 Theory +1003.3803 Plasma Physics +1003.3818 General Physics +1003.3819 Phenomenology +1003.3820 Algebraic Topology +1003.3821 Artificial Intelligence +1003.3822 Complex Variables +1003.3823 Algebraic Geometry +1003.3830 Logic in Computer Science +1003.3836 Instrumentation and Methods for Astrophysics +1003.3837 +1003.3839 +1003.3841 Instrumentation and Methods for Astrophysics +1003.3848 Solar and Stellar Astrophysics +1003.3851 Quantum Gases +1003.3860 Optics +1003.3861 General Physics +1003.3862 Analysis of PDEs +cond-mat/0405193 Strongly Correlated Electrons +cond-mat/0410341 Strongly Correlated Electrons +cond-mat/0504373 Strongly Correlated Electrons +math/0508444 Analysis of PDEs +physics/0504117 Biological Physics +quant-ph/0608085 +0901.4169 General Physics +0901.4172 General Physics +0704.3163 Algebraic Geometry +0706.4326 Algebraic Topology +0801.4701 Statistical Mechanics +0806.2685 Quantitative Methods +0806.2743 Exactly Solvable and Integrable Systems +0806.3073 Functional Analysis +0806.3256 Representation Theory +0806.4469 Algebraic Geometry +0808.1603 Atomic Physics +0808.3534 Phenomenology +0809.4246 Differential Geometry +0810.2507 Atomic Physics +0810.3033 Commutative Algebra +0810.5629 Dynamical Systems +0901.2703 Computational Complexity +0902.3172 Geometric Topology +0906.0794 Optics +0906.0996 Mesoscale and Nanoscale Physics +0908.0313 Algebraic Geometry +0908.1196 +0908.1268 Group Theory +0910.0670 Other Condensed Matter +0910.1365 +0912.0383 High Energy Astrophysical Phenomena +0912.4054 +1001.3326 Metric Geometry +1001.3938 Dynamical Systems +1001.5051 Strongly Correlated Electrons +1002.2176 Optimization and Control +1002.2979 Phenomenology +1002.3219 +1003.0406 Other Condensed Matter +1003.2515 +1003.4205 Soft Condensed Matter +1003.5450 Phenomenology +1004.2929 Cosmology and Nongalactic Astrophysics +1004.3647 Phenomenology +1004.4857 Quantum Gases +1004.4860 Superconductivity +1004.5418 Statistics Theory +1005.0890 +1005.2690 Spectral Theory +1005.4865 +1006.1327 Neurons and Cognition +1006.1946 Disordered Systems and Neural Networks +1006.2013 +1006.3478 Chaotic Dynamics +1006.5769 Mesoscale and Nanoscale Physics +1006.5813 Representation Theory +1007.3489 Operator Algebras +1007.4340 Materials Science +1008.1068 High Energy Astrophysical Phenomena +1008.1999 Optics +1008.4476 Materials Science +1008.4712 Instrumentation and Methods for Astrophysics +1008.4965 Mesoscale and Nanoscale Physics +1009.0892 Computer Vision and Pattern Recognition +1009.1352 Earth and Planetary Astrophysics +1009.1914 Methodology +1009.2107 Geometric Topology +1009.2671 Optimization and Control +1009.2855 Neurons and Cognition +1009.3011 Earth and Planetary Astrophysics +1009.3282 Number Theory +1009.3285 High Energy Astrophysical Phenomena +1009.3286 Optics +1009.3289 Statistical Mechanics +1009.3291 Information Theory +1009.3295 Representation Theory +1009.3296 Physics Education +1009.3297 Physics Education +1009.3299 Fluid Dynamics +1009.3302 Quantum Gases +1009.3304 Combinatorics +1009.3306 Software Engineering +1009.3308 Numerical Analysis +1009.3309 Superconductivity +1009.3318 Metric Geometry +1009.3323 Geometric Topology +1009.3327 Pattern Formation and Solitons +1009.3342 Group Theory +1009.3343 Functional Analysis +1009.3345 Information Theory +1009.3346 Learning +1009.3347 +1009.3352 Numerical Analysis +1009.3353 Statistics Theory +1009.3354 Information Theory +1009.3356 Optimization and Control +1009.3361 Pricing of Securities +1009.3371 Statistical Mechanics +1009.3386 Analysis of PDEs +1009.3389 Mesoscale and Nanoscale Physics +1009.3393 Instrumentation and Methods for Astrophysics +1009.3396 Information Theory +1009.3404 Phenomenology +1009.3411 Geometric Topology +1009.3415 Networking and Internet Architecture +1009.3417 Statistical Mechanics +1009.3419 Classical Analysis and ODEs +1009.3420 Classical Analysis and ODEs +1009.3421 Classical Analysis and ODEs +1009.3430 Statistical Mechanics +1009.3431 Classical Analysis and ODEs +1009.3435 Combinatorics +1009.3436 Number Theory +1009.3439 Number Theory +1009.3441 +1009.3443 Probability +1009.3447 Disordered Systems and Neural Networks +1009.3455 Systems and Control +1009.3456 Representation Theory +1009.3461 Functional Analysis +1009.3462 Software Engineering +1009.3467 Differential Geometry +1009.3471 Experiment +1009.3473 Mesoscale and Nanoscale Physics +1009.3477 Theory +1009.3478 Dynamical Systems +1009.3481 Information Theory +1009.3484 General Mathematics +cond-mat/0701707 Statistical Mechanics +math-ph/0101027 +math/0610159 Representation Theory +0705.1484 Chemical Physics +0705.3432 Operator Algebras +0707.2551 Subcellular Processes +0710.1103 Algebraic Geometry +0712.3042 Biomolecules +0801.4678 Analysis of PDEs +0802.0264 Statistical Mechanics +0802.0337 Geometric Topology +0804.0571 Chaotic Dynamics +0805.0249 Geophysics +0805.0520 +0805.2263 Theory +0807.2432 Differential Geometry +0808.4049 Operator Algebras +0810.4852 +0811.1969 Differential Geometry +0812.3465 Learning +0901.0819 Algebraic Topology +0901.1136 Materials Science +0903.2306 Group Theory +0903.5132 +0903.5308 Earth and Planetary Astrophysics +0904.0172 Chaotic Dynamics +0904.0908 Complex Variables +0904.3288 Differential Geometry +0905.0480 Phenomenology +0906.1231 Spectral Theory +0906.3048 Solar and Stellar Astrophysics +0906.3488 Mesoscale and Nanoscale Physics +0906.3573 Logic +0906.4465 +0906.4879 Soft Condensed Matter +0907.2941 Phenomenology +0907.4464 +0908.2371 Materials Science +0908.3502 Materials Science +0908.3679 +0908.4097 Superconductivity +0908.4241 Algebraic Geometry +0909.0526 Statistical Mechanics +0909.1729 Strongly Correlated Electrons +0909.3026 Phenomenology +0909.3194 Strongly Correlated Electrons +0910.0356 +0910.0807 Mesoscale and Nanoscale Physics +0910.1201 Soft Condensed Matter +0910.1916 Biomolecules +0910.1992 +0910.2323 Materials Science +0910.2934 Phenomenology +0910.3166 High Energy Astrophysical Phenomena +0910.4097 +0910.4363 Phenomenology +0910.4408 Theory +0910.4452 +0910.5212 Representation Theory +0911.0450 Superconductivity +0911.0514 Soft Condensed Matter +0911.0868 Phenomenology +0911.1200 Probability +0911.1309 Lattice +0911.3068 Strongly Correlated Electrons +0911.3906 Phenomenology +0911.3936 +0911.5520 Adaptation and Self-Organizing Systems +0912.1893 Superconductivity +0912.2171 Subcellular Processes +0912.3385 Solar and Stellar Astrophysics +0912.3706 Superconductivity +0912.5164 +1001.0292 +1001.1171 Earth and Planetary Astrophysics +1001.1201 Mesoscale and Nanoscale Physics +1001.2276 Instrumentation and Detectors +1001.4004 Symbolic Computation +1001.4894 +1002.0205 Information Theory +1002.0949 Mesoscale and Nanoscale Physics +1002.1741 +1002.2757 Numerical Analysis +1002.3821 Theory +1002.3893 Computer Science and Game Theory +1002.4194 High Energy Astrophysical Phenomena +1002.4202 Number Theory +1002.4204 Populations and Evolution +1002.4205 Cosmology and Nongalactic Astrophysics +1002.4211 Complex Variables +1002.4213 High Energy Astrophysical Phenomena +1002.4226 +1002.4233 Operator Algebras +1002.4236 Soft Condensed Matter +1002.4240 Disordered Systems and Neural Networks +1002.4241 Theory +1002.4242 +1002.4249 Optics +1002.4250 Numerical Analysis +1002.4254 Statistical Mechanics +1002.4257 Statistics Theory +1002.4258 Numerical Analysis +1002.4260 Optimization and Control +1002.4261 Statistics Theory +1002.4264 Distributed, Parallel, and Cluster Computing +1002.4269 Probability +1002.4274 Solar and Stellar Astrophysics +1002.4276 Statistics Theory +1002.4281 Superconductivity +1002.4283 Statistics Theory +1002.4292 Geometric Topology +1002.4295 Statistics Theory +1002.4296 Phenomenology +1002.4298 Computer Science and Game Theory +1002.4303 Cryptography and Security +1002.4308 +1002.4311 Information Theory +1002.4312 Algebraic Topology +1002.4318 Commutative Algebra +1002.4321 Algebraic Geometry +1002.4323 Materials Science +1002.4327 Materials Science +1002.4329 Statistics Theory +1002.4330 Data Structures and Algorithms +1002.4331 General Physics +1002.4332 Combinatorics +1002.4338 Methodology +1002.4346 Functional Analysis +1002.4348 Probability +1002.4355 Solar and Stellar Astrophysics +1002.4364 Computational Geometry +1002.4368 Neurons and Cognition +1002.4372 Algebraic Geometry +1002.4377 Combinatorics +1002.4380 Other Condensed Matter +1002.4386 Populations and Evolution +1002.4387 Differential Geometry +1002.4389 Geometric Topology +1002.4392 Formal Languages and Automata Theory +1002.4394 Numerical Analysis +1002.4396 Strongly Correlated Electrons +math/0701439 Analysis of PDEs +q-bio/0608007 Subcellular Processes +0809.2168 Computer Science and Game Theory +1005.4774 Computer Science and Game Theory +0710.1252 +0710.5703 Physics and Society +0712.2046 Algebraic Geometry +0801.3434 Group Theory +0804.2571 Optics +0809.1845 Spectral Theory +0809.4164 Differential Geometry +0810.0717 Superconductivity +0810.2525 Other Condensed Matter +0810.4065 +0812.0853 Dynamical Systems +0812.1005 Quantum Algebra +0812.1395 Statistics Theory +0902.2258 General Topology +0903.1588 Information Theory +0903.1989 K-Theory and Homology +0903.2518 Spectral Theory +0904.2677 Statistical Mechanics +0905.1025 Statistical Mechanics +0905.2877 Computational Physics +0905.3571 Superconductivity +0906.4829 +0907.0468 Theory +0907.1176 Materials Science +0907.4160 Computation +0908.3387 Physics and Society +0909.2066 Chemical Physics +0909.5069 Disordered Systems and Neural Networks +0910.2382 Chaotic Dynamics +0910.3308 Optimization and Control +0910.4942 Mesoscale and Nanoscale Physics +0911.0941 Exactly Solvable and Integrable Systems +0911.1763 Dynamical Systems +0911.1902 +0911.3557 +0912.0790 +0912.2699 Dynamical Systems +0912.3760 Other Condensed Matter +0912.4573 Soft Condensed Matter +1001.0621 Other Condensed Matter +1001.0754 Fluid Dynamics +1001.3199 Information Theory +1001.4571 General Physics +1002.0736 Fluid Dynamics +1002.0990 +1002.1714 Cosmology and Nongalactic Astrophysics +1002.3292 Other Quantitative Biology +1002.4079 Strongly Correlated Electrons +1003.0484 +1003.0934 Optimization and Control +1003.2343 Algebraic Geometry +1004.1661 Combinatorics +1004.2064 Physics and Society +1004.4753 Algebraic Topology +1004.5219 Instrumentation and Methods for Astrophysics +1004.5363 Cosmology and Nongalactic Astrophysics +1004.5409 +1005.0244 Spectral Theory +1005.0392 Instrumentation and Methods for Astrophysics +1005.0397 Phenomenology +1005.0401 Optics +1005.0402 Probability +1005.0404 Information Theory +1005.0407 Operator Algebras +1005.0410 Instrumentation and Detectors +1005.0411 Cosmology and Nongalactic Astrophysics +1005.0412 Instrumentation and Detectors +1005.0416 Robotics +1005.0418 Data Structures and Algorithms +1005.0419 Information Theory +1005.0420 Statistical Mechanics +1005.0423 Solar and Stellar Astrophysics +1005.0435 Strongly Correlated Electrons +1005.0437 Machine Learning +1005.0438 Differential Geometry +1005.0445 +1005.0451 Classical Analysis and ODEs +1005.0454 Classical Analysis and ODEs +1005.0455 Classical Analysis and ODEs +1005.0457 Commutative Algebra +1005.0460 Other Condensed Matter +1005.0462 Algebraic Geometry +1005.0466 Numerical Analysis +1005.0467 Soft Condensed Matter +1005.0468 Algebraic Geometry +1005.0478 Algebraic Geometry +1005.0480 Materials Science +1005.0486 Spectral Theory +1005.0488 Combinatorics +1005.0498 Information Theory +1005.0502 Soft Condensed Matter +1005.0510 Dynamical Systems +1005.0512 +1005.0513 Data Structures and Algorithms +1005.0521 Logic in Computer Science +1005.0524 Logic in Computer Science +1005.0530 Learning +1005.0535 +1005.0538 Combinatorics +1005.0543 Algebraic Geometry +1005.0545 Information Theory +1005.0549 Atomic Physics +1005.0550 Fluid Dynamics +1005.0555 Cosmology and Nongalactic Astrophysics +1005.0567 Algebraic Topology +1005.0568 Optics +1005.0582 Combinatorics +1005.0584 Differential Geometry +1005.0587 +1005.0588 +1005.0592 Instrumentation and Detectors +1005.0594 Algebraic Geometry +1005.0595 Software Engineering +1005.0600 Symbolic Computation +1005.0601 Strongly Correlated Electrons +1005.0602 Symbolic Computation +1005.0605 Artificial Intelligence +1005.0606 Geometric Topology +1005.0608 Artificial Intelligence +1005.0610 Algebraic Geometry +1005.0615 Materials Science +cond-mat/0008403 Disordered Systems and Neural Networks +cond-mat/0402591 Other Condensed Matter +cond-mat/9906419 Materials Science +cond-mat/9907145 Statistical Mechanics +math-ph/0404069 +math-ph/0608013 +math/0404431 Number Theory +math/0605113 Differential Geometry +math/0609287 Differential Geometry +math/0610914 Differential Geometry +math/0610917 Differential Geometry +math/0701851 Classical Analysis and ODEs +math/0701852 Complex Variables +math/0702003 Classical Analysis and ODEs +math/0703661 Differential Geometry +math/0703761 Differential Geometry +0704.1680 Materials Science +0705.4153 Probability +0708.4188 Algebraic Geometry +0710.2003 +0711.1327 Algebraic Geometry +0711.1641 +0712.0880 Other Condensed Matter +0712.3746 Pricing of Securities +0712.3833 +0802.3861 Complex Variables +0804.1665 Complex Variables +0804.1863 Functional Analysis +0805.3376 +0805.3481 +0805.3810 Disordered Systems and Neural Networks +0806.4696 Plasma Physics +0807.0572 Other Condensed Matter +0809.0379 Dynamical Systems +0809.2230 Probability +0809.2594 Optimization and Control +0809.2710 Dynamical Systems +0809.4027 Experiment +0810.3895 General Topology +0810.3952 Dynamical Systems +0811.1068 +0811.1086 +0811.3584 Neurons and Cognition +0811.4467 Theory +0812.3336 +0812.3345 +0812.3585 Phenomenology +0812.3594 Phenomenology +0812.3622 Phenomenology +0812.3661 Phenomenology +0812.3668 Phenomenology +0812.3686 Phenomenology +0812.3703 Phenomenology +0812.3727 Phenomenology +0812.3799 Phenomenology +0812.3834 +0812.3837 Phenomenology +0812.3938 +0812.3967 +0812.3996 +0812.4200 +0812.4401 +0812.4441 +0812.4491 +0812.4552 +0812.4558 Statistical Mechanics +0901.0173 Cosmology and Nongalactic Astrophysics +0901.0439 Cosmology and Nongalactic Astrophysics +0901.0668 Phenomenology +0901.0720 Phenomenology +0901.0783 Phenomenology +0901.0790 Phenomenology +0901.0863 Phenomenology +0901.0923 Phenomenology +0901.0946 Phenomenology +0901.1074 +0901.1080 Phenomenology +0901.1195 Lattice +0901.1412 Phenomenology +0901.1430 Phenomenology +0901.1460 Phenomenology +0901.1612 Geometric Topology +0901.2099 Phenomenology +0901.2353 +0901.2362 +0901.2400 +0901.2405 +0901.2437 +0901.2477 Phenomenology +0901.2482 +0901.2619 +0901.2680 +0901.3207 +0901.3226 +0901.3258 +0901.4966 +0903.0270 +0903.1122 +0903.3133 Cosmology and Nongalactic Astrophysics +0903.3256 +0903.3397 +0904.2368 +0904.3689 Theory +0904.4379 +0904.4904 +0905.0124 Lattice +0905.0178 +0905.0247 +0905.0661 +0905.0788 Probability +0905.1681 Logic +0905.2010 +0905.2334 +0905.2437 +0905.2781 Cosmology and Nongalactic Astrophysics +0905.3112 Lattice +0905.3641 Theory +0905.3673 +0905.3821 Theory +0906.0880 +0906.1327 Differential Geometry +0906.3198 Experiment +0906.3712 +0907.2457 Pattern Formation and Solitons +0907.3226 Logic in Computer Science +0907.3461 +0907.3775 Superconductivity +0907.4322 +0907.4829 Cosmology and Nongalactic Astrophysics +0907.5078 Biological Physics +0907.5367 Phenomenology +0908.0139 Phenomenology +0908.0526 Cosmology and Nongalactic Astrophysics +0908.2220 +0908.2598 Cosmology and Nongalactic Astrophysics +0908.2881 Strongly Correlated Electrons +0908.3452 +0909.0427 Pattern Formation and Solitons +0909.0656 Phenomenology +0909.1469 +0909.1875 +0909.1878 Phenomenology +0909.2206 +0909.2601 +0909.3664 +0909.3728 Mesoscale and Nanoscale Physics +0909.3977 Phenomenology +0909.4731 Theory +0909.4841 +0909.5050 Dynamical Systems +0910.1057 +0910.1567 Phenomenology +0910.1998 Theory +0910.2112 Phenomenology +0910.3090 +0910.3307 +0910.3381 Phenomenology +0910.3636 Phenomenology +0910.3637 +0910.3680 Theory +0910.3838 +0910.4765 Cosmology and Nongalactic Astrophysics +0910.5221 Cosmology and Nongalactic Astrophysics +0911.0017 Cosmology and Nongalactic Astrophysics +0911.0084 Theory +0911.0217 Phenomenology +0911.0517 Combinatorics +0911.0677 Theory +0911.1040 +0911.1160 +0911.1372 +0911.1597 Experiment +0911.1766 Phenomenology +0911.2164 Phenomenology +0911.2244 Cosmology and Nongalactic Astrophysics +0911.2397 +0911.3089 +0911.3450 Lattice +0911.3793 Theory +0911.3995 +0911.4096 Phenomenology +0911.4632 Phenomenology +0911.4696 Phenomenology +0911.5041 +0911.5101 Lattice +0911.5453 Instrumentation and Methods for Astrophysics +0912.0244 +0912.0269 Cosmology and Nongalactic Astrophysics +0912.0397 Cosmology and Nongalactic Astrophysics +0912.0513 Cosmology and Nongalactic Astrophysics +0912.0604 +0912.1192 Statistical Mechanics +0912.1741 Theory +0912.2478 Phenomenology +0912.2850 Lattice +0912.3106 +0912.3137 Phenomenology +0912.3234 +0912.3244 +0912.3360 Lattice +0912.3606 +0912.3692 +0912.3884 +0912.4079 Experiment +0912.4186 Theory +0912.4195 +0912.5422 Quantum Gases +1001.2269 Phenomenology +1001.2321 Cosmology and Nongalactic Astrophysics +1001.2555 Phenomenology +1001.3031 +1001.3832 +1001.3976 Geometric Topology +1001.4067 Theory +1001.4976 +1001.5034 Phenomenology +1001.5052 +1001.5129 +1001.5237 Phenomenology +1002.0237 Phenomenology +1002.0283 Phenomenology +1002.0299 Neurons and Cognition +1002.0851 Theory +1002.0896 +1002.1136 Theory +1002.1608 +1002.1971 Phenomenology +1002.2689 High Energy Astrophysical Phenomena +1002.2880 Phenomenology +1002.2975 Physics and Society +1002.3578 Phenomenology +1002.4032 Phenomenology +1002.4543 Superconductivity +1002.4552 +1002.4905 +1003.1006 Phenomenology +1003.1229 +1003.1309 +1003.1356 +1003.1537 +1003.2131 Number Theory +1003.3077 High Energy Astrophysical Phenomena +1003.3460 High Energy Astrophysical Phenomena +1003.3520 +1003.3580 +1003.4153 +1003.4311 +1003.4722 Group Theory +1003.4792 Lattice +1004.0120 Number Theory +1004.0362 Soft Condensed Matter +1004.0418 Phenomenology +1004.0717 Analysis of PDEs +1004.1804 Trading and Market Microstructure +1004.1811 Combinatorics +1004.1923 Probability +1004.1937 Statistical Mechanics +1004.2057 Statistical Mechanics +1004.2062 +1004.2070 Materials Science +1004.2072 Neurons and Cognition +1004.2076 Statistical Mechanics +1004.2077 Cosmology and Nongalactic Astrophysics +1004.2078 Plasma Physics +1004.2087 Geometric Topology +1004.2098 Classical Analysis and ODEs +1004.2101 Populations and Evolution +1004.2106 Computational Finance +1004.2107 Probability +1004.2113 Theory +1004.2116 Phenomenology +1004.2134 Analysis of PDEs +1004.2143 +1004.2146 Fluid Dynamics +1004.2148 Algebraic Geometry +1004.2150 Algebraic Geometry +1004.2151 Functional Analysis +1004.2153 Data Analysis, Statistics and Probability +1004.2155 Databases +1004.2168 Number Theory +1004.2175 Probability +1004.2178 Software Engineering +1004.2189 Chaotic Dynamics +1004.2192 Analysis of PDEs +1004.2194 Strongly Correlated Electrons +1004.2206 Probability +1004.2210 Computer Science and Game Theory +1004.2214 Geometric Topology +1004.2215 Solar and Stellar Astrophysics +1004.2222 Human-Computer Interaction +1004.2226 +1004.2228 Category Theory +1004.2231 Mesoscale and Nanoscale Physics +1004.2233 Representation Theory +1004.2235 Soft Condensed Matter +1004.2237 Soft Condensed Matter +1004.2238 Solar and Stellar Astrophysics +1004.2239 Logic +1004.2246 Analysis of PDEs +1004.2248 Computational Finance +1004.2249 Solar and Stellar Astrophysics +1004.2250 Theory +1004.2251 General Physics +1004.2252 Probability +cond-mat/0404160 Mesoscale and Nanoscale Physics +cond-mat/0408381 Mesoscale and Nanoscale Physics +cond-mat/0701210 Mesoscale and Nanoscale Physics +cond-mat/0702577 Mesoscale and Nanoscale Physics +cond-mat/0703612 Statistical Mechanics +cs/0702148 Computational Engineering, Finance, and Science +gr-qc/0309117 +hep-ph/9406256 Phenomenology +hep-th/9412048 Theory +math/0412486 Geometric Topology +math/0503036 Dynamical Systems +math/0701875 Probability +math/9809129 Geometric Topology +nucl-ex/0702036 +physics/0604211 Data Analysis, Statistics and Probability +q-bio/0703003 Biomolecules +quant-ph/0605008 +0712.0015 +0801.0748 Statistical Finance +0802.1569 Atomic Physics +0804.2240 +0804.2634 +0807.2478 Materials Science +0807.4302 Algebraic Geometry +0811.0702 +0812.2214 +0812.4676 Differential Geometry +0901.0684 Applications +0901.4497 Optimization and Control +0905.1972 Materials Science +0905.4647 Algebraic Geometry +0907.1695 Statistical Mechanics +0907.5309 Machine Learning +0908.1467 +0909.4832 Disordered Systems and Neural Networks +0910.0614 Probability +0910.5281 Geometric Topology +0911.0933 Popular Physics +0911.2925 Superconductivity +0912.0911 Combinatorics +1001.4196 Popular Physics +1001.4353 Quantum Algebra +1001.4365 Representation Theory +1001.5189 Phenomenology +1001.5246 Theory +astro-ph/0604084 +quant-ph/0206117 +0705.0379 Theory +0705.2299 Phenomenology +0705.3811 Theory +0706.0446 Theory +0706.4465 Phenomenology +0707.0522 Superconductivity +0709.1910 Theory +0710.4488 +0711.3803 Theory +0711.4820 Phenomenology +0712.3512 Theory +0801.1833 Phenomenology +0801.2074 Phenomenology +0802.1232 Theory +0804.1423 +0805.1100 +0807.0461 Accelerator Physics +0807.1595 Differential Geometry +0807.1609 Differential Geometry +0807.1908 Theory +0807.4176 Phenomenology +0808.1035 +0808.1893 +0809.2269 +0809.3479 Statistical Mechanics +0809.3481 Statistical Mechanics +0809.3581 Rings and Algebras +0809.5074 +0810.1084 +0810.1263 Phenomenology +0810.3201 Theory +0810.3861 Theory +0810.4445 +0811.2359 Theory +0811.3678 Phenomenology +0811.3905 Phenomenology +0811.4367 Logic in Computer Science +0812.0351 Theory +0812.2470 +0812.2846 +0812.4805 Phenomenology +0901.0015 Information Theory +0901.4144 Theory +0902.0738 Theory +0902.3768 Lattice +0903.5237 Quantum Algebra +0904.0957 Phenomenology +0904.1035 Theory +0904.3108 Solar and Stellar Astrophysics +0904.3732 +0905.0639 Lattice +0905.2196 Cosmology and Nongalactic Astrophysics +0905.2607 Theory +0905.2970 Theory +0906.1144 Instrumentation and Detectors +0906.2366 Theory +0906.2526 Theory +0906.2963 +0906.5333 +0907.1399 +0907.1733 Analysis of PDEs +0907.1852 Phenomenology +0907.2662 Phenomenology +0907.3662 Algebraic Geometry +0907.4602 +0907.4763 Phenomenology +0908.0360 Theory +0908.0642 Probability +0908.2228 General Topology +0909.0377 Phenomenology +0909.2040 Cosmology and Nongalactic Astrophysics +0909.5327 Phenomenology +0910.2789 Lattice +0910.3722 Theory +0910.4289 +0910.5295 +0910.5433 Functional Analysis +0911.1360 Phenomenology +0911.2130 Strongly Correlated Electrons +0911.3578 Theory +0911.5206 Solar and Stellar Astrophysics +0912.0164 +0912.0548 +0912.0740 Geometric Topology +0912.1995 Strongly Correlated Electrons +0912.2692 Astrophysics of Galaxies +0912.2726 Theory +0912.3203 Optics +0912.3320 Phenomenology +0912.3466 +0912.4351 Superconductivity +0912.4840 Strongly Correlated Electrons +0912.5075 Theory +0912.5297 Cosmology and Nongalactic Astrophysics +0912.5378 Soft Condensed Matter +1001.1222 Strongly Correlated Electrons +1001.1576 Dynamical Systems +1001.3161 Cosmology and Nongalactic Astrophysics +1001.3221 Experiment +1001.3302 Instrumentation and Methods for Astrophysics +1001.3834 +1001.3922 +1001.4325 Instrumentation and Detectors +1001.4917 Theory +1001.5253 Quantum Gases +1001.5349 +1002.0322 Theory +1002.0340 Phenomenology +1002.0895 Cosmology and Nongalactic Astrophysics +1002.0983 Mesoscale and Nanoscale Physics +1002.1429 Theory +1002.1511 Instrumentation and Methods for Astrophysics +1002.1560 +1002.2099 Theory +1002.2669 Superconductivity +1002.2967 Phenomenology +1002.3000 Experiment +1002.3141 Group Theory +1002.3278 Cosmology and Nongalactic Astrophysics +1002.3342 Information Retrieval +1002.3911 Probability +1002.3971 Theory +1003.0067 Differential Geometry +1003.0286 Differential Geometry +1003.0314 Theory +1003.0769 Theory +1003.0962 Phenomenology +1003.1128 Mesoscale and Nanoscale Physics +1003.1134 Theory +1003.1361 Lattice +1003.3486 +1003.3899 Cosmology and Nongalactic Astrophysics +1003.4184 Theory +1003.4823 Cosmology and Nongalactic Astrophysics +1003.4951 Theory +1003.5225 +1003.5227 Theory +1003.5317 Theory +1004.0735 +1004.0800 Differential Geometry +1004.1241 Phenomenology +1004.2132 Cryptography and Security +1004.2527 Mesoscale and Nanoscale Physics +1004.3743 Solar and Stellar Astrophysics +1005.1302 Algebraic Geometry +1005.2600 +1005.3512 Geometric Topology +1005.4170 Operator Algebras +1005.4545 +1005.4695 Databases +1005.4698 Solar and Stellar Astrophysics +1005.4699 Cosmology and Nongalactic Astrophysics +1005.4701 Probability +1005.4702 Probability +1005.4715 Dynamical Systems +1005.4722 Algebraic Geometry +1005.4724 Combinatorics +1005.4725 Materials Science +1005.4735 +1005.4737 Statistical Mechanics +1005.4746 Representation Theory +1005.4747 Representation Theory +1005.4757 Probability +1005.4758 +1005.4759 +1005.4762 Mathematical Software +1005.4771 Number Theory +1005.4776 +1005.4780 Mesoscale and Nanoscale Physics +1005.4784 Quantum Gases +1005.4787 Quantum Gases +1005.4788 +1005.4790 +1005.4794 Numerical Analysis +1005.4796 Superconductivity +1005.4797 Computation +1005.4806 Probability +1005.4808 Numerical Analysis +1005.4810 Algebraic Topology +1005.4812 Genomics +1005.4815 Multiagent Systems +1005.4819 Superconductivity +1005.4821 Materials Science +1005.4822 Analysis of PDEs +1005.4825 Number Theory +1005.4826 Formal Languages and Automata Theory +1005.4828 Dynamical Systems +1005.4829 Theory +1005.4833 Materials Science +1005.4837 +1005.4838 Spectral Theory +1005.4843 Algebraic Geometry +1005.4846 Probability +1005.4847 Statistical Mechanics +1005.4848 Theory +1005.4850 Operator Algebras +1005.4852 Mesoscale and Nanoscale Physics +1005.4861 Biological Physics +1005.4866 Metric Geometry +1005.4869 Other Condensed Matter +1005.4871 Superconductivity +1005.4874 Computational Complexity +1005.4881 Algebraic Geometry +1005.4882 Computers and Society +1005.4889 Complex Variables +1005.4892 Phenomenology +1005.4893 Probability +1005.4896 Adaptation and Self-Organizing Systems +1005.4897 Combinatorics +1005.4899 Space Physics +1005.4902 Space Physics +1005.4906 Digital Libraries +1005.4911 Metric Geometry +1005.4924 Logic +astro-ph/0301420 +astro-ph/0301450 +astro-ph/0307546 +astro-ph/0308358 +astro-ph/0408168 +astro-ph/0410175 +astro-ph/0505589 +astro-ph/0606229 +astro-ph/0610029 +astro-ph/0703355 +cond-mat/0011291 +cond-mat/0107442 Statistical Mechanics +cond-mat/0111166 Strongly Correlated Electrons +cond-mat/0604452 Statistical Mechanics +cond-mat/9805275 Strongly Correlated Electrons +cs/0110065 Networking and Internet Architecture +cs/0110066 Other Computer Science +cs/0111001 Other Computer Science +gr-qc/0206041 +gr-qc/0308017 +gr-qc/0610111 +gr-qc/9612006 +hep-ex/0203012 Experiment +hep-ex/9907047 Experiment +hep-lat/0101007 Lattice +hep-lat/0106007 Lattice +hep-lat/0111001 Lattice +hep-lat/0112017 Lattice +hep-lat/0207020 Lattice +hep-lat/0406015 Lattice +hep-lat/0502009 Lattice +hep-lat/9211012 Lattice +hep-lat/9303007 Lattice +hep-lat/9305019 Lattice +hep-lat/9312075 Lattice +hep-lat/9401027 Lattice +hep-lat/9501016 Lattice +hep-lat/9608075 Lattice +hep-lat/9704021 Lattice +hep-lat/9710011 Lattice +hep-lat/9804002 Lattice +hep-lat/9805016 Lattice +hep-lat/9807016 Lattice +hep-lat/9809025 Lattice +hep-lat/9809158 Lattice +hep-lat/9810016 Lattice +hep-lat/9810018 Lattice +hep-ph/0007199 Phenomenology +hep-ph/0208105 Phenomenology +hep-ph/0307140 Phenomenology +hep-ph/0308002 Phenomenology +hep-ph/0503138 Phenomenology +hep-ph/0509033 Phenomenology +hep-ph/0511267 Phenomenology +hep-ph/0610014 Phenomenology +hep-ph/9506470 Phenomenology +hep-ph/9611251 Phenomenology +hep-ph/9804465 Phenomenology +hep-ph/9905375 Phenomenology +hep-ph/9912222 Phenomenology +hep-th/0010260 Theory +hep-th/0012250 Theory +hep-th/0103222 Theory +hep-th/0109023 Theory +hep-th/0202172 Theory +hep-th/0212293 Theory +hep-th/0303047 Theory +hep-th/0304267 Theory +hep-th/0307287 Theory +hep-th/0312257 Theory +hep-th/0403149 Theory +hep-th/0408235 Theory +hep-th/0411075 Theory +hep-th/0412082 Theory +hep-th/0501211 Theory +hep-th/0603134 Theory +hep-th/0603236 Theory +hep-th/0606060 Theory +hep-th/0701040 Theory +hep-th/0702102 Theory +hep-th/9312091 Theory +hep-th/9806153 Theory +hep-th/9809018 Theory +hep-th/9812112 Theory +hep-th/9902023 Theory +hep-th/9906243 Theory +hep-th/9911099 Theory +math/0601095 Probability +math/0603186 Functional Analysis +nucl-ex/0006002 +nucl-ex/0111010 +nucl-ex/0203012 +nucl-ex/0505024 +nucl-ex/0509004 +nucl-ex/9810012 +nucl-th/0106047 +nucl-th/0207065 +nucl-th/0208074 +nucl-th/0209065 +nucl-th/0212012 +nucl-th/0305078 +nucl-th/0410090 +nucl-th/9601012 +nucl-th/9708024 +physics/0008054 Accelerator Physics +physics/0008095 Accelerator Physics +physics/0504195 Instrumentation and Detectors +physics/9909007 Atomic Physics +quant-ph/9802007 +solv-int/9912012 Exactly Solvable and Integrable Systems +0705.1023 Numerical Analysis +0712.0405 Quantum Algebra +0712.0775 Statistics Theory +0712.1164 Mesoscale and Nanoscale Physics +0801.3784 Statistical Mechanics +0802.0837 Statistics Theory +0803.0635 Molecular Networks +0807.4046 +0809.1119 +0809.1872 General Topology +0810.0573 +0810.0728 Algebraic Geometry +0812.1532 Phenomenology +0901.1161 +0901.3517 Strongly Correlated Electrons +0902.2993 Differential Geometry +0905.1073 Cosmology and Nongalactic Astrophysics +0905.3588 General Topology +0906.5321 Data Analysis, Statistics and Probability +0908.1583 +0908.2521 Pattern Formation and Solitons +0908.3757 Differential Geometry +0908.3781 Analysis of PDEs +0910.1743 +0910.2058 +0911.0145 General Topology +0911.2497 Statistical Mechanics +0911.4971 Cosmology and Nongalactic Astrophysics +0912.0154 Mesoscale and Nanoscale Physics +0912.5102 Fluid Dynamics +1001.2039 Statistical Mechanics +1001.4167 Quantum Gases +1001.4596 Statistical Mechanics +1002.0320 Group Theory +1002.0463 Optics +1002.0728 Mesoscale and Nanoscale Physics +1002.1767 Differential Geometry +1002.2711 Fluid Dynamics +1002.3075 +1002.3736 Mesoscale and Nanoscale Physics +1002.4352 Phenomenology +1002.5048 High Energy Astrophysical Phenomena +1003.0116 +1003.1560 Geometric Topology +1003.4938 Optics +1004.2293 Strongly Correlated Electrons +1004.3018 Algebraic Geometry +1005.0262 Materials Science +1005.2833 Adaptation and Self-Organizing Systems +1005.3488 Earth and Planetary Astrophysics +1005.5050 Statistical Mechanics +1005.5564 Instrumentation and Methods for Astrophysics +1006.2350 Superconductivity +1006.4520 +1006.4653 Cryptography and Security +1006.5060 Machine Learning +1006.5108 Statistical Mechanics +1006.5454 Strongly Correlated Electrons +1006.5687 General Topology +1006.5878 Mesoscale and Nanoscale Physics +1006.5963 Analysis of PDEs +1007.0011 Solar and Stellar Astrophysics +1007.0019 Phenomenology +1007.0020 Experiment +1007.0033 Algebraic Topology +1007.0046 Materials Science +1007.0048 Differential Geometry +1007.0050 Distributed, Parallel, and Cluster Computing +1007.0056 Solar and Stellar Astrophysics +1007.0057 Cryptography and Security +1007.0060 Cryptography and Security +1007.0062 Popular Physics +1007.0065 Optics +1007.0069 Algebraic Topology +1007.0081 Fluid Dynamics +1007.0082 Fluid Dynamics +1007.0083 Optics +1007.0085 Computer Vision and Pattern Recognition +1007.0087 Cryptography and Security +1007.0089 Data Structures and Algorithms +1007.0092 Geometric Topology +1007.0094 Materials Science +1007.0097 Information Theory +1007.0101 Materials Science +1007.0102 Chaotic Dynamics +1007.0107 Distributed, Parallel, and Cluster Computing +1007.0114 Dynamical Systems +1007.0119 Materials Science +1007.0121 Category Theory +1007.0123 Networking and Internet Architecture +1007.0126 Networking and Internet Architecture +1007.0128 Networking and Internet Architecture +1007.0134 Logic in Computer Science +1007.0140 +1007.0141 Phenomenology +1007.0143 Symbolic Computation +1007.0144 Computer Science and Game Theory +1007.0151 Solar and Stellar Astrophysics +1007.0154 Analysis of PDEs +1007.0159 Programming Languages +1007.0162 Functional Analysis +1007.0174 Numerical Analysis +1007.0176 Functional Analysis +1007.0177 Materials Science +1007.0186 General Mathematics +1007.0187 Plasma Physics +1007.0201 Geophysics +1007.0208 Phenomenology +1007.0211 Instrumentation and Detectors +1007.0216 Plasma Physics +1007.0217 Data Structures and Algorithms +1007.0221 Computational Geometry +1007.0224 Algebraic Geometry +1007.0225 Dynamical Systems +1007.0235 Optimization and Control +astro-ph/0211018 +hep-ex/0402028 Experiment +math/0401232 Quantum Algebra +nucl-ex/0303013 +nucl-th/0211066 +0801.1606 Differential Geometry +0805.3589 Strongly Correlated Electrons +0806.3526 Materials Science +0807.0385 Rings and Algebras +0810.1123 Differential Geometry +0811.2475 Combinatorics +0812.1080 Differential Geometry +0901.0671 +0903.1907 Optics +0905.1344 Phenomenology +0905.3213 Statistical Mechanics +0906.2906 +0906.4451 Statistical Mechanics +0906.4462 Strongly Correlated Electrons +0906.4469 Strongly Correlated Electrons +0907.1946 Fluid Dynamics +0908.2657 Theory +0908.3877 +0909.1743 Theory +0909.4620 Quantum Gases +0909.5136 Materials Science +0910.4036 Exactly Solvable and Integrable Systems +0910.4906 Mesoscale and Nanoscale Physics +0911.1140 Mesoscale and Nanoscale Physics +0911.2206 Analysis of PDEs +0911.5320 +0912.3502 Statistical Mechanics +0912.4333 Phenomenology +1001.0692 Phenomenology +1001.2239 +1001.2942 Cryptography and Security +1001.3145 +1001.3563 Statistical Mechanics +1002.1278 +1002.2918 +1002.3034 Geometric Topology +1002.3422 Number Theory +1002.3522 Algebraic Geometry +1002.4520 Statistical Mechanics +1003.0300 Strongly Correlated Electrons +1003.0387 Superconductivity +1003.1137 Materials Science +1003.1226 Atomic Physics +1003.1859 Statistical Mechanics +1003.2151 Materials Science +1003.2209 Superconductivity +1003.3936 Superconductivity +1003.4904 Geometric Topology +1003.6072 +1004.0757 Mesoscale and Nanoscale Physics +1004.1728 Biological Physics +1004.2031 Mesoscale and Nanoscale Physics +1005.0036 Cosmology and Nongalactic Astrophysics +1005.1656 +1005.1768 Optics +1005.1904 Distributed, Parallel, and Cluster Computing +1005.2099 Mesoscale and Nanoscale Physics +1005.3160 General Topology +1005.3539 Earth and Planetary Astrophysics +1005.3547 Probability +1005.3557 Other Condensed Matter +1005.3569 Earth and Planetary Astrophysics +1005.3570 Earth and Planetary Astrophysics +1005.3572 Differential Geometry +1005.3573 Applications +1005.3575 Superconductivity +1005.3578 Algebraic Geometry +1005.3579 Machine Learning +1005.3581 Theory +1005.3582 Populations and Evolution +1005.3595 +1005.3603 +1005.3605 Optimization and Control +1005.3617 Chemical Physics +1005.3618 Statistical Mechanics +1005.3620 Information Theory +1005.3621 +1005.3624 Number Theory +1005.3632 Dynamical Systems +1005.3634 Functional Analysis +1005.3643 Solar and Stellar Astrophysics +1005.3644 Phenomenology +1005.3645 Atomic and Molecular Clusters +1005.3652 Plasma Physics +1005.3662 Strongly Correlated Electrons +1005.3666 +1005.3668 Analysis of PDEs +1005.3669 Strongly Correlated Electrons +1005.3672 Lattice +1005.3678 +1005.3679 +1005.3683 Algebraic Geometry +1005.3684 Solar and Stellar Astrophysics +1005.3688 +1005.3693 Other Condensed Matter +1005.3695 Materials Science +1005.3699 Cosmology and Nongalactic Astrophysics +1005.3701 Number Theory +1005.3710 Instrumentation and Detectors +1005.3713 Mesoscale and Nanoscale Physics +1005.3716 Cosmology and Nongalactic Astrophysics +1005.3717 Experiment +1005.3719 Earth and Planetary Astrophysics +1005.3722 +1005.3723 Cosmology and Nongalactic Astrophysics +1005.3727 Numerical Analysis +1005.3729 Information Theory +1005.3731 Logic in Computer Science +1005.3732 Representation Theory +1005.3733 Phenomenology +1005.3737 Methodology +1005.3739 Metric Geometry +1005.3740 Differential Geometry +1005.3741 Algebraic Geometry +1005.3742 Plasma Physics +1005.3748 Group Theory +1005.3752 Algebraic Topology +1005.3753 Algebraic Geometry +1005.3758 Probability +1005.3773 Databases +1005.3776 General Physics +1005.3780 Statistical Mechanics +1005.3790 Classical Analysis and ODEs +1005.3795 Experiment +1005.3799 Pricing of Securities +cond-mat/0412458 Other Condensed Matter +cond-mat/0503173 Superconductivity +gr-qc/0601089 +hep-ph/0508225 Phenomenology +math-ph/0205043 +math/0310240 Number Theory +math/0508643 Algebraic Topology +math/0612740 Combinatorics +math/0701024 Differential Geometry +0801.0658 Combinatorics +0804.0867 Probability +0807.2677 Networking and Internet Architecture +0904.3379 Classical Analysis and ODEs +0909.1751 Quantum Gases +0910.1883 Materials Science +0910.5083 Superconductivity +0911.3136 Superconductivity +0912.0560 Materials Science +0912.0850 Data Structures and Algorithms +0912.4576 Computational Physics +0912.5145 Atomic Physics +1001.1141 +1001.1295 +1001.1984 Genomics +1001.2835 Classical Analysis and ODEs +1001.4304 History and Philosophy of Physics +1001.5362 General Physics +math/0603265 Combinatorics +math/0610716 Probability +0705.2576 Operator Algebras +0706.0148 +0711.4232 General Physics +0712.3056 Computation +0802.0172 Statistical Mechanics +0803.1430 Statistical Mechanics +0804.3764 Functional Analysis +0806.1746 +0807.0459 +0807.1292 +0809.0486 Phenomenology +0809.2744 +0809.4741 Probability +0810.0252 Operator Algebras +0810.0417 Atomic Physics +0810.3224 Probability +0811.3987 Functional Analysis +0811.4679 +0812.3919 Classical Analysis and ODEs +0812.5107 Theory +0902.0566 Astrophysics of Galaxies +0902.2381 Theory +0902.3642 Theory +0903.3394 Analysis of PDEs +0903.3561 K-Theory and Homology +0904.0753 +0904.2724 Cosmology and Nongalactic Astrophysics +0904.3360 Phenomenology +0904.3426 +0904.4811 +0905.1534 Phenomenology +0905.1694 Theory +0905.2277 Cosmology and Nongalactic Astrophysics +0905.2470 Cosmology and Nongalactic Astrophysics +0905.2921 Strongly Correlated Electrons +0905.4253 Quantum Algebra +0905.4258 Quantum Algebra +0906.0141 +0906.0793 Classical Analysis and ODEs +0906.4787 Theory +0907.0276 Phenomenology +0907.0530 Phenomenology +0907.0627 Materials Science +0907.2154 +0907.2519 Theory +0907.2991 Combinatorics +0907.3960 +0907.5259 Theory +0907.5580 Theory +0908.0336 Theory +0908.0738 Theory +0908.2624 Solar and Stellar Astrophysics +0908.2631 Phenomenology +0908.2786 Phenomenology +0908.4252 Theory +0909.1336 Statistical Mechanics +0909.1678 Numerical Analysis +0909.1935 Molecular Networks +0909.2248 Strongly Correlated Electrons +0909.2333 Theory +0909.2484 Phenomenology +0909.2602 +0909.2771 Lattice +0909.3134 Representation Theory +0909.3830 Geophysics +0909.3941 Strongly Correlated Electrons +0909.4105 Phenomenology +0909.4297 Theory +0909.4461 Data Analysis, Statistics and Probability +0909.4470 Mesoscale and Nanoscale Physics +0909.4475 Phenomenology +0909.4701 Theory +0909.4782 Theory +0909.5008 Numerical Analysis +0909.5206 Theory +0909.5481 Strongly Correlated Electrons +0910.0020 Theory +0910.0569 Functional Analysis +0910.0645 Theory +0910.2076 Theory +0910.2110 Theory +0910.2148 +0910.2413 Theory +0910.3133 +0910.3362 Dynamical Systems +0910.5657 Optics +0911.4327 Strongly Correlated Electrons +0912.0265 Computational Engineering, Finance, and Science +0912.0414 +0912.0418 +0912.1234 +0912.3382 Materials Science +0912.3487 Functional Analysis +1001.2362 Information Theory +1001.2500 Geometric Topology +1001.2776 Theory +1001.3316 Number Theory +1001.3458 +1001.3459 +1001.3672 Astrophysics of Galaxies +1001.3673 Networking and Internet Architecture +1001.3685 Rings and Algebras +1001.3689 Networking and Internet Architecture +1001.3693 +1001.3694 Cosmology and Nongalactic Astrophysics +1001.3695 High Energy Astrophysical Phenomena +1001.3697 Information Theory +1001.3708 Information Theory +1001.3709 General Physics +1001.3710 Optics +1001.3712 Soft Condensed Matter +1001.3713 Data Structures and Algorithms +1001.3717 Information Theory +1001.3720 Databases +1001.3724 Mesoscale and Nanoscale Physics +1001.3731 Physics and Society +1001.3736 Operator Algebras +1001.3752 Commutative Algebra +1001.3753 Theory +1001.3755 Strongly Correlated Electrons +1001.3763 Algebraic Geometry +1001.3764 Computational Physics +1001.3766 Phenomenology +1001.3769 Mesoscale and Nanoscale Physics +1001.3772 Instrumentation and Methods for Astrophysics +1001.3778 Cosmology and Nongalactic Astrophysics +1001.3779 Group Theory +1001.3780 Cryptography and Security +1001.3782 Statistical Mechanics +1001.3786 Phenomenology +1001.3788 Statistical Mechanics +1001.3791 Materials Science +1001.3794 Materials Science +1001.3795 +1001.3797 +1001.3799 +1001.3804 Mesoscale and Nanoscale Physics +1001.3806 Experiment +1001.3809 Mesoscale and Nanoscale Physics +1001.3812 Accelerator Physics +1001.3814 Classical Analysis and ODEs +1001.3816 Computational Complexity +1001.3823 Solar and Stellar Astrophysics +1001.3824 Distributed, Parallel, and Cluster Computing +1001.3825 Number Theory +1001.3828 +1001.3831 +1001.3836 Group Theory +1001.3840 +1001.3842 +1001.3844 Probability +1001.3850 Combinatorics +1001.3851 +1001.3861 Differential Geometry +1001.3866 Strongly Correlated Electrons +1001.3869 Materials Science +1001.3872 Probability +hep-ph/0702136 Phenomenology +hep-ph/9402266 Phenomenology +math/0607268 Number Theory +math/9909092 Spectral Theory +physics/0401030 Instrumentation and Detectors +physics/0410282 Instrumentation and Detectors +physics/0507072 General Physics +quant-ph/0702013 +0706.3532 +0710.4410 Data Structures and Algorithms +0711.1031 Statistical Mechanics +0711.1733 +0712.2929 Probability +0801.0113 Mesoscale and Nanoscale Physics +0802.3361 Number Theory +0802.3922 Optimization and Control +0802.4167 +0803.2248 +0804.4835 Differential Geometry +0806.1908 Strongly Correlated Electrons +0807.2839 Combinatorics +0807.4334 Algebraic Topology +0808.1648 +0808.2264 Pattern Formation and Solitons +0808.3104 Strongly Correlated Electrons +0809.4805 +0811.4310 +0901.0518 Classical Analysis and ODEs +0901.2679 Geometric Topology +0902.0217 +0902.3157 Other Condensed Matter +0903.0074 Optics +0903.1536 Other Condensed Matter +0903.2925 Algebraic Topology +0904.0144 Probability +0905.2610 Quantum Gases +0906.0600 Algebraic Geometry +0906.4582 Machine Learning +0906.5202 Numerical Analysis +0907.2590 Differential Geometry +0907.4328 Quantum Gases +0908.0418 Soft Condensed Matter +0908.0633 Theory +0908.1404 Phenomenology +0908.2585 Number Theory +0908.2673 Superconductivity +0909.3170 Rings and Algebras +0909.3543 Quantum Gases +0909.5662 Strongly Correlated Electrons +0910.0103 Statistical Mechanics +0910.1111 Statistical Mechanics +0910.1311 +0910.1312 Solar and Stellar Astrophysics +0910.3688 Operator Algebras +0910.5250 Optimization and Control +0910.5782 Analysis of PDEs +0911.0123 Category Theory +0911.0556 Statistical Mechanics +0911.0903 Rings and Algebras +0911.1312 Atomic Physics +0911.3622 Phenomenology +0911.4015 Statistical Mechanics +0911.4311 Mesoscale and Nanoscale Physics +0911.5031 Data Structures and Algorithms +0911.5664 Strongly Correlated Electrons +0912.0405 Group Theory +0912.1116 Statistical Mechanics +0912.1195 Mesoscale and Nanoscale Physics +0912.1545 Phenomenology +0912.4843 Cosmology and Nongalactic Astrophysics +0912.4888 +0912.4949 Classical Physics +0912.5018 Analysis of PDEs +0912.5406 Biological Physics +1001.0248 Number Theory +1001.0426 Quantum Gases +1001.0432 Representation Theory +1001.1941 Superconductivity +1001.2897 Information Theory +1001.4629 Chaotic Dynamics +1002.2585 General Topology +1002.3396 Other Condensed Matter +1002.3790 Optimization and Control +1002.4830 Other Computer Science +1002.4953 +1003.1040 Theory +1003.1389 Analysis of PDEs +1003.3559 Disordered Systems and Neural Networks +1003.4693 Phenomenology +1003.4910 General Mathematics +1004.0225 Mesoscale and Nanoscale Physics +1004.0273 Optimization and Control +1004.0933 Computer Science and Game Theory +1004.1017 +1004.1068 Geometric Topology +1004.1649 Experiment +1004.1960 Number Theory +1004.1981 Algebraic Geometry +1004.2093 High Energy Astrophysical Phenomena +1004.2920 +1004.2921 +1004.2926 Information Theory +1004.2928 Solar and Stellar Astrophysics +1004.2930 Numerical Analysis +1004.2931 Human-Computer Interaction +1004.2938 Analysis of PDEs +1004.2945 Exactly Solvable and Integrable Systems +1004.2950 +1004.2952 +1004.2957 +1004.2971 Chaotic Dynamics +1004.2973 Analysis of PDEs +1004.2982 Combinatorics +1004.2983 Algebraic Geometry +1004.2992 Geometric Topology +1004.2993 Networking and Internet Architecture +1004.2994 Probability +1004.2996 Number Theory +1004.2997 Algebraic Geometry +1004.3001 +1004.3006 Functional Analysis +1004.3010 Combinatorics +1004.3011 +1004.3013 Analysis of PDEs +1004.3016 Probability +1004.3026 Combinatorics +1004.3028 Rings and Algebras +1004.3038 General Topology +1004.3045 Analysis of PDEs +1004.3051 Data Structures and Algorithms +1004.3054 Phenomenology +1004.3055 Phenomenology +1004.3057 Cryptography and Security +1004.3061 Probability +1004.3067 General Finance +1004.3068 Instrumentation and Detectors +1004.3073 Phenomenology +1004.3076 Functional Analysis +1004.3080 +1004.3081 Quantum Algebra +1004.3085 Information Theory +1004.3090 Algebraic Geometry +1004.3093 Optimization and Control +1004.3101 Machine Learning +1004.3106 Pricing of Securities +1004.3109 Performance +1004.3114 Data Structures and Algorithms +1004.3115 Data Structures and Algorithms +1004.3117 Geophysics +1004.3119 Earth and Planetary Astrophysics +1004.3128 Computational Physics +1004.3136 Optimization and Control +1004.3138 Molecular Networks +1004.3139 +1004.3142 Phenomenology +1004.3146 Statistics Theory +1004.3153 Data Analysis, Statistics and Probability +1004.3162 Biomolecules +1004.3167 Cosmology and Nongalactic Astrophysics +1004.3175 Biomolecules +1004.3178 Networking and Internet Architecture +1004.3189 Atmospheric and Oceanic Physics +1004.3195 General Physics +1004.3203 Atmospheric and Oceanic Physics +1004.3211 Number Theory +1004.3220 Combinatorics +1004.3228 Other Quantitative Biology +1004.3229 Physics and Society +1004.3232 Numerical Analysis +1004.3233 +1004.3235 +1004.3237 Optimization and Control +1004.3241 Programming Languages +1004.3248 General Topology +1004.3250 Cryptography and Security +1004.3254 Performance +1004.3255 Mesoscale and Nanoscale Physics +1004.3256 Networking and Internet Architecture +1004.3257 Computer Vision and Pattern Recognition +1004.3258 Software Engineering +1004.3260 Artificial Intelligence +1004.3263 Software Engineering +1004.3265 Other Computer Science +1004.3267 Other Computer Science +1004.3268 Networking and Internet Architecture +1004.3270 Software Engineering +1004.3271 Other Computer Science +1004.3272 Databases +1004.3274 Information Retrieval +1004.3275 Multimedia +1004.3276 Computer Vision and Pattern Recognition +1004.3277 Software Engineering +1004.3280 +1004.3281 Combinatorics +1004.3282 Information Theory +cond-mat/0105600 +cond-mat/0212314 Mesoscale and Nanoscale Physics +cond-mat/0505098 Statistical Mechanics +cond-mat/0703022 Statistical Mechanics +math/0002086 Geometric Topology +math/0009019 Algebraic Geometry +math/0405078 Algebraic Geometry +math/0608356 Symplectic Geometry +math/0609551 Algebraic Geometry +nlin/0601057 Exactly Solvable and Integrable Systems +quant-ph/0103103 +0801.0917 +0802.2432 Computational Complexity +0804.1861 Algebraic Geometry +0804.1962 +0804.2102 Phenomenology +0804.3068 Chaotic Dynamics +0805.0198 +0806.3367 +0809.4907 Theory +0810.0743 Probability +0810.3186 Superconductivity +0810.5620 +0812.2686 Classical Physics +0901.4802 Superconductivity +0902.4069 Algebraic Geometry +0903.1296 +0903.2475 Phenomenology +0903.3481 Algebraic Geometry +0903.3604 Group Theory +0903.5032 Phenomenology +0904.0090 +0904.0092 +0905.1666 Adaptation and Self-Organizing Systems +0905.4070 +0906.0736 Phenomenology +0906.2221 Cosmology and Nongalactic Astrophysics +0906.2798 Cosmology and Nongalactic Astrophysics +0906.3992 Phenomenology +0907.0820 Functional Analysis +0907.2721 +0908.2336 Accelerator Physics +0908.2467 Information Theory +0908.2805 Strongly Correlated Electrons +0908.4266 High Energy Astrophysical Phenomena +0909.0214 Fluid Dynamics +0909.2639 Theory +0909.3047 Phenomenology +0909.3696 Data Structures and Algorithms +0909.4699 Cosmology and Nongalactic Astrophysics +0910.0082 Statistical Mechanics +0910.0241 Cosmology and Nongalactic Astrophysics +0910.1988 Probability +0910.2101 Soft Condensed Matter +0910.2969 Phenomenology +0910.3225 Theory +0910.4466 Mesoscale and Nanoscale Physics +0910.4470 Materials Science +0910.4475 Theory +0910.5294 Biological Physics +0911.0886 Lattice +0911.5175 Classical Physics +0911.5458 Commutative Algebra +0912.0236 Probability +0912.0890 Mesoscale and Nanoscale Physics +0912.1993 Materials Science +0912.3147 General Physics +0912.3405 Rings and Algebras +0912.4674 +0912.5055 Information Theory +0912.5464 Dynamical Systems +1001.0337 Cosmology and Nongalactic Astrophysics +1001.0581 Earth and Planetary Astrophysics +1001.0882 Theory +1001.3016 General Physics +1001.4131 Materials Science +1001.4372 Mesoscale and Nanoscale Physics +1001.4394 +1001.4522 History and Philosophy of Physics +1001.4534 Number Theory +1001.4541 Number Theory +1001.4542 Cosmology and Nongalactic Astrophysics +1001.4543 Solar and Stellar Astrophysics +1001.4546 Mesoscale and Nanoscale Physics +1001.4552 Functional Analysis +1001.4556 Group Theory +1001.4557 Materials Science +1001.4563 Soft Condensed Matter +1001.4565 Functional Analysis +1001.4568 Geometric Topology +1001.4573 Programming Languages +1001.4586 History and Philosophy of Physics +1001.4589 Instrumentation and Methods for Astrophysics +1001.4591 Materials Science +1001.4602 Algebraic Geometry +1001.4606 Quantum Algebra +1001.4608 Instrumentation and Methods for Astrophysics +1001.4610 Instrumentation and Methods for Astrophysics +1001.4620 Chaotic Dynamics +1001.4621 Phenomenology +1001.4624 Astrophysics of Galaxies +1001.4627 Phenomenology +1001.4628 Instrumentation and Methods for Astrophysics +1001.4633 Instrumentation and Methods for Astrophysics +1001.4636 Strongly Correlated Electrons +1001.4637 Astrophysics of Galaxies +1001.4638 Functional Analysis +1001.4642 Instrumentation and Methods for Astrophysics +1001.4644 Instrumentation and Methods for Astrophysics +1001.4645 Theory +1001.4646 Instrumentation and Methods for Astrophysics +1001.4648 Instrumentation and Methods for Astrophysics +1001.4649 Computational Complexity +1001.4652 Dynamical Systems +1001.4653 Instrumentation and Methods for Astrophysics +1001.4657 Numerical Analysis +1001.4658 Dynamical Systems +1001.4659 Instrumentation and Methods for Astrophysics +1001.4660 +1001.4661 Instrumentation and Methods for Astrophysics +1001.4663 Algebraic Topology +1001.4672 Phenomenology +1001.4673 Differential Geometry +1001.4676 Soft Condensed Matter +1001.4681 Optics +1001.4685 +1001.4687 Computational Complexity +1001.4689 Information Theory +1001.4694 Hardware Architecture +1001.4696 Instrumentation and Methods for Astrophysics +1001.4697 +1001.4698 Numerical Analysis +1001.4699 Instrumentation and Methods for Astrophysics +1001.4701 +1001.4702 Probability +1001.4703 Information Theory +1001.4709 Phenomenology +1001.4711 Instrumentation and Methods for Astrophysics +1001.4713 Phenomenology +1001.4718 High Energy Astrophysical Phenomena +1001.4725 Materials Science +1001.4727 Phenomenology +1001.4730 Instrumentation and Methods for Astrophysics +1001.4733 +1001.4736 Statistical Mechanics +1001.4737 Instrumentation and Methods for Astrophysics +1001.4738 Computers and Society +1001.4739 Information Theory +1001.4743 Instrumentation and Methods for Astrophysics +1001.4746 Phenomenology +1001.4749 Phenomenology +1001.4751 Algebraic Topology +1001.4753 Networking and Internet Architecture +1001.4760 Algebraic Topology +1001.4762 General Finance +1001.4764 Computational Geometry +1001.4765 Representation Theory +1001.4770 High Energy Astrophysical Phenomena +1001.4771 Instrumentation and Methods for Astrophysics +1001.4778 Instrumentation and Methods for Astrophysics +1001.4781 Algebraic Geometry +1001.4787 Instrumentation and Methods for Astrophysics +1001.4788 Algebraic Geometry +cond-mat/0407564 Other Condensed Matter +gr-qc/0212058 +gr-qc/0510105 +hep-ph/0102341 Phenomenology +hep-ph/0508154 Phenomenology +hep-th/0002022 Theory +hep-th/0309065 Theory +math/0604564 Quantum Algebra +physics/0512227 Instrumentation and Detectors +physics/0702210 Physics and Society +0708.0397 Geometric Topology +0711.2054 General Mathematics +0803.3574 Superconductivity +0808.1551 Symplectic Geometry +0809.0174 +0810.1126 Dynamical Systems +0810.1613 Phenomenology +0812.3718 Other Condensed Matter +0901.3913 Superconductivity +0905.3514 Metric Geometry +0905.3646 +0907.0496 Theory +0908.2049 Astrophysics of Galaxies +0908.3313 Cosmology and Nongalactic Astrophysics +0909.0057 Algebraic Topology +0909.2074 Information Theory +0909.3973 Algebraic Geometry +0910.2645 +0911.2121 Materials Science +0911.3521 Differential Geometry +0911.3850 Classical Analysis and ODEs +0911.5547 Number Theory +0912.1278 +0912.3835 Disordered Systems and Neural Networks +0912.4353 Strongly Correlated Electrons +1001.0128 Materials Science +1001.5268 Instrumentation and Methods for Astrophysics +1002.0133 Differential Geometry +1002.2173 Solar and Stellar Astrophysics +1002.3605 +1002.4602 +1003.4820 Strongly Correlated Electrons +1003.5147 General Mathematics +1003.5477 Strongly Correlated Electrons +1004.0624 Mesoscale and Nanoscale Physics +1004.1124 +1005.0632 Probability +1005.0839 Digital Libraries +1005.1609 Number Theory +1005.5567 Optics +1006.1971 +1006.2489 Statistical Finance +1006.4803 Solar and Stellar Astrophysics +1006.4902 +1007.0132 Geometric Topology +1007.1207 Combinatorics +1007.1480 Atomic Physics +1007.1653 Materials Science +1007.2938 Disordered Systems and Neural Networks +1007.5321 Superconductivity +1008.2233 Differential Geometry +1008.3576 Numerical Analysis +1009.3089 Metric Geometry +1009.4918 Combinatorics +1010.0156 Operator Algebras +1010.1880 Physics and Society +1010.2078 +1010.2539 Cosmology and Nongalactic Astrophysics +1010.2734 High Energy Astrophysical Phenomena +1010.3912 Materials Science +1010.3966 Optics +1010.4395 Cosmology and Nongalactic Astrophysics +1010.4563 Numerical Analysis +1010.4578 Combinatorics +1010.4586 Astrophysics of Galaxies +1010.4588 Pattern Formation and Solitons +1010.4590 +1010.4597 Statistical Mechanics +1010.4607 Dynamical Systems +1010.4609 Artificial Intelligence +1010.4610 History and Philosophy of Physics +1010.4613 Combinatorics +1010.4615 Numerical Analysis +1010.4617 Probability +1010.4619 Quantum Algebra +1010.4621 Methodology +1010.4629 Methodology +1010.4633 Phenomenology +1010.4634 Algebraic Geometry +1010.4637 Methodology +1010.4638 Soft Condensed Matter +1010.4639 Distributed, Parallel, and Cluster Computing +1010.4644 Materials Science +1010.4645 Theory +1010.4646 Solar and Stellar Astrophysics +1010.4649 Phenomenology +1010.4651 Solar and Stellar Astrophysics +1010.4654 Complex Variables +1010.4655 Complex Variables +1010.4659 Methodology +1010.4664 Complex Variables +1010.4665 Complex Variables +1010.4668 Algebraic Topology +1010.4670 Methodology +1010.4671 Probability +1010.4674 Lattice +1010.4675 +1010.4681 Methodology +1010.4682 Functional Analysis +1010.4683 Neurons and Cognition +1010.4686 Methodology +1010.4688 Phenomenology +1010.4689 Phenomenology +1010.4690 Information Theory +1010.4692 Commutative Algebra +1010.4693 Optics +1010.4700 Methodology +1010.4702 Statistical Mechanics +1010.4703 Materials Science +1010.4704 Group Theory +1010.4705 +1010.4709 Algebraic Geometry +1010.4710 Methodology +1010.4715 Mesoscale and Nanoscale Physics +1010.4726 Other Quantitative Biology +1010.4727 Computer Science and Game Theory +1010.4731 Materials Science +1010.4736 Theory +1010.4751 Information Theory +1010.4755 Analysis of PDEs +1010.4756 Analysis of PDEs +1010.4758 Functional Analysis +1010.4763 Materials Science +1010.4764 Numerical Analysis +1010.4765 Rings and Algebras +1010.4775 Superconductivity +1010.4783 Statistics Theory +1010.4784 Artificial Intelligence +1010.4789 Analysis of PDEs +1010.4790 Computational Physics +cond-mat/0612158 Superconductivity +math/0412205 Quantum Algebra +math/0508168 Quantum Algebra +math/0603598 Optimization and Control +math/0610583 Probability +quant-ph/0605241 +0704.1031 Experiment +0706.1801 +0709.0946 +0710.0578 Lattice +0710.0746 Lattice +0710.1263 Lattice +0710.2271 Phenomenology +0710.4538 Lattice +0711.1891 Experiment +0711.2535 +0801.1828 +0801.3568 Dynamical Systems +0803.2393 Phenomenology +0804.4710 Plasma Physics +0804.4890 Phenomenology +0805.4349 +0806.1073 +0806.1317 +0806.1590 +0806.2070 +0807.0920 +0807.0934 +0807.1465 +0808.0710 +0808.0898 +0808.2034 +0808.3866 Logic +0809.0180 Algebraic Geometry +0809.2309 +0809.2488 Theory +0809.4634 +0809.5145 Networking and Internet Architecture +0810.0536 +0810.1294 +0810.1438 +0811.2875 Numerical Analysis +0812.2883 +0812.3486 Instrumentation and Detectors +0812.4802 +0812.4945 +0901.1252 Instrumentation and Methods for Astrophysics +0901.1545 High Energy Astrophysical Phenomena +0901.2525 High Energy Astrophysical Phenomena +0901.2661 Instrumentation and Methods for Astrophysics +0901.2835 Instrumentation and Methods for Astrophysics +0901.3138 High Energy Astrophysical Phenomena +0901.3405 Astrophysics of Galaxies +0901.4699 High Energy Astrophysical Phenomena +0902.0994 High Energy Astrophysical Phenomena +0902.3156 High Energy Astrophysical Phenomena +0902.3290 High Energy Astrophysical Phenomena +0902.4459 Representation Theory +0902.4594 High Energy Astrophysical Phenomena +0903.1285 Solar and Stellar Astrophysics +0903.1328 High Energy Astrophysical Phenomena +0903.1507 Instrumentation and Methods for Astrophysics +0903.1540 Instrumentation and Methods for Astrophysics +0903.1543 High Energy Astrophysical Phenomena +0903.1549 High Energy Astrophysical Phenomena +0903.1784 High Energy Astrophysical Phenomena +0903.2386 Astrophysics of Galaxies +0903.3598 Lattice +0904.0754 Phenomenology +0904.2348 High Energy Astrophysical Phenomena +0905.4269 Cosmology and Nongalactic Astrophysics +0906.2764 High Energy Astrophysical Phenomena +0906.3243 Solar and Stellar Astrophysics +0908.1558 Theory +0909.4606 +0910.4709 Group Theory +0910.5726 High Energy Astrophysical Phenomena +0911.4686 Phenomenology +0912.0198 Group Theory +0912.0746 +0912.4638 Phenomenology +0912.4952 Numerical Analysis +1001.2235 +1001.2626 Materials Science +1001.4665 Instrumentation and Detectors +1002.0380 +1002.1797 Phenomenology +1002.2255 Mesoscale and Nanoscale Physics +1002.3384 Atomic Physics +1003.1102 Theory +1003.1705 Cosmology and Nongalactic Astrophysics +1003.4193 Theory +1003.4892 +1003.5572 Quantitative Methods +1004.1928 Phenomenology +1004.2736 Theory +1004.3469 Phenomenology +1004.4078 Theory +1004.4160 Phenomenology +1004.4638 Theory +1005.0993 Phenomenology +1005.1219 Cosmology and Nongalactic Astrophysics +1005.2286 +1005.3505 Phenomenology +1005.3728 Phenomenology +1005.3841 Classical Physics +1005.4313 Representation Theory +1005.4367 Theory +1005.4444 Phenomenology +1005.4710 Phenomenology +1005.5142 Logic in Computer Science +1005.5298 Mesoscale and Nanoscale Physics +1005.5408 Theory +1005.5605 +1006.0579 Phenomenology +1006.1113 Phenomenology +1006.1589 Optics +1006.1849 Phenomenology +1006.1904 Theory +1006.2100 Phenomenology +1006.2216 Experiment +1006.2400 Theory +1006.2653 Phenomenology +1006.3129 Theory +1006.4099 +1006.4487 Superconductivity +1006.4512 Phenomenology +1006.4609 Phenomenology +1006.4680 Phenomenology +1006.4682 Phenomenology +1006.4728 Phenomenology +1006.4797 +1006.5208 Group Theory +1006.5513 Phenomenology +1006.5694 Cosmology and Nongalactic Astrophysics +1006.5773 Phenomenology +1007.0104 Optics +1007.0206 Phenomenology +1007.0213 Phenomenology +1007.0237 Theory +1007.0260 Phenomenology +1007.0341 Theory +1007.0478 Phenomenology +1007.0624 Phenomenology +1007.0956 Phenomenology +1007.1176 Phenomenology +1007.1223 Phenomenology +1007.1359 Analysis of PDEs +1007.2024 +1007.2026 Theory +1007.2256 Phenomenology +1007.2437 Phenomenology +1007.3364 Theory +1007.3389 Phenomenology +1007.3438 Theory +1007.3492 Phenomenology +1007.3524 Materials Science +1007.3580 Phenomenology +1007.3810 Phenomenology +1007.3893 Phenomenology +1007.4067 Phenomenology +1007.4297 Theory +1007.4449 Phenomenology +1007.4711 Strongly Correlated Electrons +1007.4809 Cosmology and Nongalactic Astrophysics +1007.4827 Superconductivity +1007.4918 Phenomenology +1007.5198 Phenomenology +1007.5268 Strongly Correlated Electrons +1008.0017 Phenomenology +1008.0079 Cosmology and Nongalactic Astrophysics +1008.0398 Phenomenology +1008.0571 Theory +1008.0784 Lattice +1008.0848 Cosmology and Nongalactic Astrophysics +1008.0952 Phenomenology +1008.1591 Phenomenology +1008.1596 Numerical Analysis +1008.2476 Theory +1008.2652 Phenomenology +1008.2684 Phenomenology +1008.2705 Theory +1008.3371 Superconductivity +1008.3583 +1008.3935 Chaotic Dynamics +1008.3945 Phenomenology +1008.3988 Phenomenology +1008.4039 Discrete Mathematics +1008.4336 Phenomenology +1008.4456 Cosmology and Nongalactic Astrophysics +1008.4479 Phenomenology +1008.5077 Experiment +1008.5147 Cosmology and Nongalactic Astrophysics +1009.0677 Theory +1009.1211 Theory +1009.2144 Phenomenology +1009.2433 Instrumentation and Detectors +1009.2836 +1009.2915 Strongly Correlated Electrons +1009.3687 Computational Complexity +1009.3827 Strongly Correlated Electrons +1009.4081 Classical Analysis and ODEs +1009.4600 Group Theory +1009.4938 Combinatorics +1009.5011 Experiment +1009.5522 Superconductivity +1009.5544 Atmospheric and Oceanic Physics +1009.5605 +1009.5859 Theory +1010.0229 Statistical Mechanics +1010.1218 +1010.1392 Phenomenology +1010.1434 Theory +1010.2058 Cosmology and Nongalactic Astrophysics +1010.2284 +1010.2892 Analysis of PDEs +1010.5247 High Energy Astrophysical Phenomena +1010.6017 Experiment +1011.0559 Theory +1011.2866 Lattice +1011.2946 Cryptography and Security +1011.3024 Astrophysics of Galaxies +1011.3137 Cosmology and Nongalactic Astrophysics +1011.3148 Cryptography and Security +1011.4395 Superconductivity +1011.5117 Information Theory +1011.5384 Computer Science and Game Theory +1011.5523 Instrumentation and Methods for Astrophysics +1011.5677 Computer Science and Game Theory +1011.5937 Plasma Physics +1011.6019 +1011.6279 Rings and Algebras +1012.0220 Biomolecules +1012.0688 Analysis of PDEs +1012.0781 Probability +1012.0882 Soft Condensed Matter +1012.1264 Algebraic Topology +1012.1545 Solar and Stellar Astrophysics +1012.1757 High Energy Astrophysical Phenomena +1012.1939 Digital Libraries +1012.1947 Probability +1012.2021 Algebraic Geometry +1012.2124 Computer Science and Game Theory +1012.2125 Tissues and Organs +1012.2135 Fluid Dynamics +1012.2141 Mesoscale and Nanoscale Physics +1012.2142 Computational Complexity +1012.2144 Theory +1012.2147 Theory +1012.2155 Neurons and Cognition +1012.2160 Trading and Market Microstructure +1012.2161 Cosmology and Nongalactic Astrophysics +1012.2164 Information Theory +1012.2167 General Topology +1012.2171 Distributed, Parallel, and Cluster Computing +1012.2172 Experiment +1012.2173 Differential Geometry +1012.2185 Classical Physics +1012.2186 Algebraic Geometry +1012.2195 Representation Theory +1012.2197 Robotics +1012.2198 Theory +1012.2199 Robotics +1012.2203 Formal Languages and Automata Theory +1012.2206 Combinatorics +1012.2207 Other Condensed Matter +1012.2210 Metric Geometry +1012.2213 Solar and Stellar Astrophysics +1012.2216 +1012.2217 Solar and Stellar Astrophysics +1012.2221 Mesoscale and Nanoscale Physics +1012.2222 Lattice +1012.2226 Quantum Gases +1012.2228 Geometric Topology +1012.2229 Astrophysics of Galaxies +1012.2231 Lattice +1012.2239 Spectral Theory +1012.2241 Chaotic Dynamics +1012.2243 Mesoscale and Nanoscale Physics +1012.2251 Discrete Mathematics +1012.2256 Networking and Internet Architecture +1012.2260 Cosmology and Nongalactic Astrophysics +1012.2266 Instrumentation and Methods for Astrophysics +1012.2270 Distributed, Parallel, and Cluster Computing +1012.2273 Distributed, Parallel, and Cluster Computing +1012.2282 Experiment +1012.2283 Physics and Society +1012.2289 Data Structures and Algorithms +1012.2290 Experiment +1012.2292 High Energy Astrophysical Phenomena +1012.2295 Materials Science +1012.2299 Logic in Computer Science +1012.2301 Group Theory +1012.2304 Superconductivity +1012.2307 Metric Geometry +1012.2312 +1012.2316 Optimization and Control +1012.2318 High Energy Astrophysical Phenomena +1012.2319 Experiment +1012.2322 Cell Behavior +1012.2328 Experiment +1012.2335 Cosmology and Nongalactic Astrophysics +1012.2342 Combinatorics +1012.2347 Solar and Stellar Astrophysics +1012.2350 Information Theory +1012.2357 Solar and Stellar Astrophysics +1012.2360 Solar and Stellar Astrophysics +1012.2362 Solar and Stellar Astrophysics +1012.2364 Strongly Correlated Electrons +1012.2369 Fluid Dynamics +1012.2377 Computational Complexity +1012.2379 Materials Science +astro-ph/0002505 +astro-ph/0003282 +astro-ph/0007453 +astro-ph/0010396 +astro-ph/0104245 +astro-ph/0108320 +astro-ph/0108515 +astro-ph/0109229 +astro-ph/0109330 +astro-ph/0109343 +astro-ph/0109509 +astro-ph/0110266 +astro-ph/0111508 +astro-ph/0203365 +astro-ph/0203427 +astro-ph/0205262 +astro-ph/0401099 +astro-ph/0408494 +astro-ph/0506081 +astro-ph/0508673 +astro-ph/0602445 +astro-ph/0603595 +astro-ph/0603624 +astro-ph/0610765 +astro-ph/9312046 +astro-ph/9409046 +astro-ph/9411107 +astro-ph/9706283 +astro-ph/9707172 +astro-ph/9709179 +astro-ph/9804268 +astro-ph/9807218 +astro-ph/9807219 +astro-ph/9811266 +astro-ph/9902237 +astro-ph/9903290 +astro-ph/9904135 +astro-ph/9904201 +astro-ph/9905024 +astro-ph/9907050 +astro-ph/9907248 +astro-ph/9912102 +astro-ph/9912337 +astro-ph/9912474 +cs/0603130 Multimedia +gr-qc/0505099 +gr-qc/9303007 +gr-qc/9904065 +hep-ex/0506029 Experiment +hep-ex/9506008 Experiment +hep-ex/9507007 Experiment +hep-ex/9709025 Experiment +hep-ex/9912036 Experiment +hep-lat/0509090 Lattice +hep-lat/0509094 Lattice +hep-lat/0510031 Lattice +hep-lat/9912010 Lattice +hep-ph/0001116 Phenomenology +hep-ph/0004077 Phenomenology +hep-ph/0005057 Phenomenology +hep-ph/0204309 Phenomenology +hep-ph/0503040 Phenomenology +hep-ph/0504028 Phenomenology +hep-ph/0509167 Phenomenology +hep-ph/0609243 Phenomenology +hep-ph/0701067 Phenomenology +hep-ph/9411425 Phenomenology +hep-ph/9508415 Phenomenology +hep-ph/9512260 Phenomenology +hep-ph/9712422 Phenomenology +hep-ph/9903317 Phenomenology +hep-ph/9903536 Phenomenology +hep-ph/9905319 Phenomenology +hep-ph/9906509 Phenomenology +hep-ph/9907313 Phenomenology +hep-ph/9908331 Phenomenology +hep-ph/9908354 Phenomenology +hep-ph/9908370 Phenomenology +hep-ph/9908430 Phenomenology +hep-ph/9909553 Phenomenology +hep-ph/9910203 Phenomenology +hep-ph/9910554 Phenomenology +hep-ph/9911387 Phenomenology +hep-ph/9912256 Phenomenology +hep-ph/9912371 Phenomenology +hep-ph/9912381 Phenomenology +hep-th/0605159 Theory +hep-th/0608204 Theory +hep-th/9701157 Theory +hep-th/9801065 Theory +hep-th/9807215 Theory +hep-th/9808021 Theory +hep-th/9808136 Theory +hep-th/9808167 Theory +hep-th/9809073 Theory +hep-th/9809120 Theory +hep-th/9809156 Theory +hep-th/9811016 Theory +hep-th/9903244 Theory +hep-th/9908195 Theory +hep-th/9909200 Theory +hep-th/9909208 Theory +hep-th/9910014 Theory +hep-th/9910222 Theory +math/0409544 Dynamical Systems +math/9807052 Quantum Algebra +math/9809056 Quantum Algebra +nucl-ex/0601011 +nucl-ex/0604002 +nucl-ex/0607032 +nucl-ex/0611029 +nucl-ex/9804005 +nucl-th/0101002 +nucl-th/0410055 +nucl-th/9908015 +nucl-th/9908038 +nucl-th/9909016 +nucl-th/9911023 +nucl-th/9911045 +physics/0408139 Classical Physics +physics/0612089 Optics +quant-ph/0603245 +0704.3364 Superconductivity +0705.1562 Combinatorics +0706.2434 Information Theory +0708.0711 Statistics Theory +0801.2725 +0801.3513 Computation +0801.3887 Computation +0803.1652 +0804.3173 Statistics Theory +0805.2256 Computation +0807.2859 Information Theory +0810.4897 +0811.2800 Combinatorics +0811.4032 Geometric Topology +0812.2548 Probability +0901.2552 Analysis of PDEs +0903.1557 Tissues and Organs +0903.2003 Applications +0903.3989 Other Condensed Matter +0904.1444 Information Theory +0906.2809 Combinatorics +0909.1008 Methodology +0909.1966 Geometric Topology +0910.1452 Statistics Theory +0910.4850 Complex Variables +0911.0953 Mesoscale and Nanoscale Physics +0911.4643 Classical Analysis and ODEs +0912.0215 Materials Science +0912.2595 Pricing of Securities +0912.2678 Cosmology and Nongalactic Astrophysics +1001.1803 +1002.0196 +1002.1918 Materials Science +1002.2266 Cosmology and Nongalactic Astrophysics +1002.4481 Materials Science +1002.4729 Theory +1003.1327 Theory +1003.1408 Mesoscale and Nanoscale Physics +1003.2451 Algebraic Geometry +1003.3274 Classical Analysis and ODEs +1003.4756 Tissues and Organs +1003.5675 Rings and Algebras +1004.0369 Mesoscale and Nanoscale Physics +1005.1367 Theory +1005.3061 Theory +1005.3111 Optimization and Control +1005.3762 Mesoscale and Nanoscale Physics +1005.3803 Chaotic Dynamics +1006.1330 Mesoscale and Nanoscale Physics +1006.1836 Materials Science +1006.3274 +1007.0590 Theory +1007.1010 Mesoscale and Nanoscale Physics +1007.3751 Superconductivity +1007.4136 +1007.5102 Statistical Mechanics +1008.2812 Other Condensed Matter +1008.2998 Materials Science +1009.0002 Cosmology and Nongalactic Astrophysics +1009.1677 Statistical Mechanics +1009.1894 Data Analysis, Statistics and Probability +1009.1898 Algebraic Geometry +1009.1949 +1009.3802 Computer Vision and Pattern Recognition +1009.4912 Solar and Stellar Astrophysics +1009.4960 Atomic Physics +1010.0279 Disordered Systems and Neural Networks +1010.0967 Operator Algebras +1010.1314 Algebraic Geometry +1010.1317 Information Theory +1010.1405 Experiment +1010.1416 Discrete Mathematics +1010.1478 Solar and Stellar Astrophysics +1010.1540 Algebraic Geometry +1010.1543 Algebraic Geometry +1010.1544 High Energy Astrophysical Phenomena +1010.1549 Optimization and Control +1010.1554 Analysis of PDEs +1010.1556 Computational Physics +1010.1569 Phenomenology +1010.1572 Probability +1010.1575 Number Theory +1010.1582 Number Theory +1010.1586 Probability +1010.1590 Statistical Mechanics +1010.1591 General Physics +1010.1593 Optics +1010.1597 Combinatorics +1010.1604 Applications +1010.1605 Information Theory +1010.1606 Commutative Algebra +1010.1607 Metric Geometry +1010.1608 Analysis of PDEs +1010.1609 Data Structures and Algorithms +1010.1613 Applications +1010.1617 Computational Finance +1010.1620 Complex Variables +1010.1623 Disordered Systems and Neural Networks +1010.1625 Statistics Theory +1010.1629 Mesoscale and Nanoscale Physics +1010.1636 Applications +1010.1638 Geometric Topology +1010.1639 Statistics Theory +1010.1641 +1010.1645 Differential Geometry +1010.1651 +1010.1653 Differential Geometry +1010.1654 Representation Theory +1010.1655 Solar and Stellar Astrophysics +1010.1656 Quantum Algebra +1010.1666 Statistics Theory +1010.1670 Instrumentation and Detectors +1010.1672 Statistics Theory +1010.1674 Accelerator Physics +1010.1676 +1010.1678 +1010.1679 +1010.1681 Analysis of PDEs +1010.1685 Phenomenology +1010.1688 Statistics Theory +1010.1689 Computational Finance +1010.1691 Instrumentation and Detectors +1010.1697 Programming Languages +1010.1699 Metric Geometry +1010.1703 Analysis of PDEs +1010.1706 Classical Analysis and ODEs +1010.1713 +1010.1714 Neurons and Cognition +1010.1724 Dynamical Systems +1010.1725 Optimization and Control +1010.1731 Algebraic Geometry +1010.1732 +1010.1743 Molecular Networks +1010.1746 Databases +1010.1748 Algebraic Topology +1010.1749 Probability +1010.1754 Number Theory +1010.1755 Quantitative Methods +1010.1758 High Energy Astrophysical Phenomena +1010.1760 Representation Theory +1010.1765 Analysis of PDEs +1010.1768 Analysis of PDEs +cond-mat/0101410 Superconductivity +cond-mat/0102155 Strongly Correlated Electrons +cond-mat/0105280 Superconductivity +cond-mat/0206013 Mesoscale and Nanoscale Physics +math-ph/0609062 +math/0404460 Probability +math/0405455 Probability +math/0503251 Probability +math/0505533 Probability +math/0505643 Probability +quant-ph/0611293 +0705.2668 Mesoscale and Nanoscale Physics +0706.0531 K-Theory and Homology +0706.4217 Chemical Physics +0709.0347 Statistical Mechanics +0802.1869 Statistical Mechanics +0805.2099 Dynamical Systems +0807.4072 Statistical Mechanics +0809.2249 Group Theory +0809.4351 Number Theory +0811.4522 Number Theory +0812.3852 Chemical Physics +0901.1249 Statistical Mechanics +0902.0429 Cosmology and Nongalactic Astrophysics +0904.2667 Complex Variables +0905.1863 Probability +0905.2935 Neurons and Cognition +0905.3271 Chemical Physics +0907.2108 Cosmology and Nongalactic Astrophysics +0907.3110 Chemical Physics +0907.4037 Statistical Mechanics +0908.1995 Quantum Algebra +0908.2595 Statistical Mechanics +0908.2971 Cosmology and Nongalactic Astrophysics +0909.1545 +0910.1555 Classical Analysis and ODEs +0911.0844 Information Theory +0912.0351 Phenomenology +1001.1457 Functional Analysis +1002.0274 Phenomenology +1004.2558 +1004.5054 Other Condensed Matter +1005.2814 Superconductivity +1005.3180 Mesoscale and Nanoscale Physics +1005.4697 Computation and Language +1006.0900 Classical Analysis and ODEs +1006.2366 Mesoscale and Nanoscale Physics +1006.4966 Computers and Society +1007.4322 General Physics +1007.4761 Theory +1008.0547 Theory +1008.0716 Information Retrieval +1008.1338 Human-Computer Interaction +1008.1721 +1008.2339 Cosmology and Nongalactic Astrophysics +1008.2568 High Energy Astrophysical Phenomena +1008.3062 Group Theory +1008.3618 Information Theory +1008.3771 Quantum Algebra +1008.3915 Instrumentation and Methods for Astrophysics +1008.3966 Instrumentation and Methods for Astrophysics +1008.3991 Physics and Society +1008.4049 Neural and Evolutionary Computing +1008.4144 Quantum Algebra +1008.4147 Theory +1008.4153 Information Theory +1008.4157 Information Theory +1008.4159 Instrumentation and Methods for Astrophysics +1008.4160 Instrumentation and Methods for Astrophysics +1008.4161 Information Theory +1008.4167 Combinatorics +1008.4169 Experiment +1008.4172 Analysis of PDEs +1008.4174 Software Engineering +1008.4176 Data Analysis, Statistics and Probability +1008.4178 Astrophysics of Galaxies +1008.4179 Astrophysics of Galaxies +1008.4180 Number Theory +1008.4184 Information Theory +1008.4185 Information Theory +1008.4194 Exactly Solvable and Integrable Systems +1008.4197 Phenomenology +1008.4198 Exactly Solvable and Integrable Systems +1008.4202 Soft Condensed Matter +1008.4203 Methodology +1008.4205 Algebraic Geometry +1008.4206 Computer Vision and Pattern Recognition +1008.4207 Optics +1008.4208 Astrophysics of Galaxies +1008.4213 General Physics +1008.4214 Rings and Algebras +1008.4219 Analysis of PDEs +1008.4221 Information Theory +1008.4225 Phenomenology +1008.4230 Materials Science +1008.4231 Spectral Theory +1008.4232 Learning +1008.4233 Probability +1008.4239 History and Philosophy of Physics +1008.4244 Computational Geometry +1008.4248 Numerical Analysis +1008.4249 Information Retrieval +1008.4256 Optics +1008.4257 Artificial Intelligence +1008.4261 +1008.4264 Information Theory +1008.4265 Combinatorics +1008.4267 Instrumentation and Methods for Astrophysics +1008.4268 Software Engineering +1008.4270 Mesoscale and Nanoscale Physics +1008.4271 Differential Geometry +1008.4276 Statistical Mechanics +1008.4278 Differential Geometry +1008.4279 Biological Physics +1008.4282 Optics +1008.4285 Metric Geometry +1008.4289 Dynamical Systems +1008.4300 Instrumentation and Methods for Astrophysics +1008.4301 Dynamical Systems +1008.4302 Algebraic Geometry +1008.4303 Quantum Gases +1008.4304 Functional Analysis +1008.4310 Artificial Intelligence +1008.4311 Differential Geometry +1008.4313 High Energy Astrophysical Phenomena +1008.4316 Methodology +1008.4318 Complex Variables +1008.4326 Artificial Intelligence +1008.4328 Artificial Intelligence +1008.4329 Optimization and Control +1008.4338 History and Philosophy of Physics +1008.4341 Probability +1008.4343 Solar and Stellar Astrophysics +1008.4344 Cosmology and Nongalactic Astrophysics +1008.4349 Functional Analysis +cond-mat/0003153 Statistical Mechanics +cond-mat/0008126 Statistical Mechanics +cond-mat/0111168 Statistical Mechanics +cond-mat/9911138 Statistical Mechanics +cs/0702079 Computational Geometry +cs/0702090 Computational Geometry +cs/0703037 Computational Geometry +math/0412562 Logic +math/0508155 Representation Theory +nlin/0507042 Chaotic Dynamics +0705.3985 Strongly Correlated Electrons +0708.0841 Operator Algebras +0711.3256 Classical Physics +0711.3428 +0712.2721 Representation Theory +0802.1985 Soft Condensed Matter +0802.2438 Differential Geometry +0803.3213 Operator Algebras +0803.4361 Operator Algebras +0804.1883 Probability +0805.3902 Functional Analysis +0807.4779 Mesoscale and Nanoscale Physics +0808.0263 +0811.3066 Quantum Algebra +0811.3422 Group Theory +0811.4542 +0812.3479 Mesoscale and Nanoscale Physics +0902.0491 Materials Science +0902.2518 Optimization and Control +0902.3080 Superconductivity +0903.1130 Mesoscale and Nanoscale Physics +0903.2587 Strongly Correlated Electrons +0903.2764 +0903.2837 Mesoscale and Nanoscale Physics +0904.4510 +0905.4701 Mesoscale and Nanoscale Physics +0906.2302 Classical Analysis and ODEs +0906.2667 Multiagent Systems +0906.3858 Cosmology and Nongalactic Astrophysics +0906.5378 +0907.2600 Numerical Analysis +0907.4958 Rings and Algebras +0908.0078 Information Theory +0908.1515 Molecular Networks +0908.3574 Data Structures and Algorithms +0909.0248 +0909.0681 Pattern Formation and Solitons +0909.2450 Human-Computer Interaction +0909.2691 +0909.5181 Statistical Mechanics +0910.2676 Algebraic Geometry +0910.4677 +0910.5107 Computational Complexity +0910.5302 Materials Science +0911.0411 +0911.0944 Soft Condensed Matter +0911.1552 Differential Geometry +0911.1705 Quantitative Methods +0911.2900 Multiagent Systems +0912.2702 Mesoscale and Nanoscale Physics +0912.2971 Representation Theory +0912.4313 Mesoscale and Nanoscale Physics +1001.2223 +1001.2436 Geometric Topology +1001.2785 Distributed, Parallel, and Cluster Computing +1001.2962 Classical Analysis and ODEs +1001.3132 Phenomenology +1001.3134 Quantum Algebra +1001.3150 Human-Computer Interaction +1001.3154 Theory +1001.3156 Phenomenology +1001.3157 Theory +1001.3167 Superconductivity +1001.3168 Materials Science +1001.3171 Networking and Internet Architecture +1001.3175 Combinatorics +1001.3178 Information Theory +1001.3180 +1001.3185 Superconductivity +1001.3190 Numerical Analysis +1001.3191 Numerical Analysis +1001.3204 Optics +1001.3210 +1001.3215 Cryptography and Security +1001.3216 Phenomenology +1001.3217 Optimization and Control +1001.3218 Probability +1001.3219 Logic in Computer Science +1001.3225 Networking and Internet Architecture +1001.3229 +1001.3231 General Topology +1001.3234 Instrumentation and Methods for Astrophysics +1001.3242 Data Structures and Algorithms +1001.3248 +1001.3252 Probability +1001.3253 Methodology +1001.3255 +1001.3257 Distributed, Parallel, and Cluster Computing +1001.3258 Numerical Analysis +1001.3259 Distributed, Parallel, and Cluster Computing +1001.3262 Probability +1001.3263 Logic in Computer Science +1001.3266 Materials Science +1001.3271 Theory +1001.3272 Methodology +1001.3273 Superconductivity +1001.3279 +1001.3280 Soft Condensed Matter +1001.3283 Physics and Society +1001.3287 Strongly Correlated Electrons +1001.3288 Analysis of PDEs +1001.3291 Strongly Correlated Electrons +1001.3297 Information Theory +1001.3299 Mesoscale and Nanoscale Physics +1001.3307 Cosmology and Nongalactic Astrophysics +1001.3308 Pricing of Securities +1001.3319 Biological Physics +1001.3324 Number Theory +1001.3325 Strongly Correlated Electrons +1001.3327 Chaotic Dynamics +1001.3328 Functional Analysis +1001.3331 Cryptography and Security +1001.3332 Data Structures and Algorithms +1001.3333 Optics +1001.3336 Statistical Mechanics +1001.3342 Soft Condensed Matter +1001.3343 Superconductivity +1001.3349 Earth and Planetary Astrophysics +1001.3352 Atmospheric and Oceanic Physics +1001.3353 Materials Science +1001.3356 Combinatorics +1001.3357 Soft Condensed Matter +1001.3358 Superconductivity +1001.3359 Statistical Mechanics +1001.3361 Solar and Stellar Astrophysics +1001.3363 Commutative Algebra +1001.3364 Distributed, Parallel, and Cluster Computing +1001.3366 Materials Science +1001.3376 +1001.3384 +1001.3391 Popular Physics +1001.3392 Networking and Internet Architecture +1001.3395 Networking and Internet Architecture +1001.3397 Disordered Systems and Neural Networks +1001.3398 Differential Geometry +1001.3400 Number Theory +math/0701590 Algebraic Geometry +math/0701750 Algebraic Geometry +0705.0256 Representation Theory +0711.4264 +0803.0049 Classical Analysis and ODEs +0805.0180 Representation Theory +0806.1688 Other Condensed Matter +0808.0530 Theory +0809.3521 Dynamical Systems +0810.4151 Soft Condensed Matter +0812.4610 General Mathematics +0901.3850 Other Condensed Matter +0901.4233 Solar and Stellar Astrophysics +0902.1433 Astrophysics of Galaxies +0902.2229 Atomic Physics +0902.4136 Solar and Stellar Astrophysics +0902.4445 Theory +0903.0092 Solar and Stellar Astrophysics +0903.1021 +0903.1258 Cosmology and Nongalactic Astrophysics +0904.1122 Theory +0904.1458 Geometric Topology +0904.1743 Phenomenology +0904.4875 Phenomenology +0905.0177 Solar and Stellar Astrophysics +0905.0730 Cosmology and Nongalactic Astrophysics +0905.1162 High Energy Astrophysical Phenomena +0905.1179 Theory +0905.2746 Representation Theory +0905.4426 +0906.0011 Theory +0906.1819 Theory +0906.1937 Quantum Gases +0906.1987 Theory +0906.1988 Theory +0906.4999 Theory +0906.5290 Differential Geometry +0907.0093 Theory +0907.2433 High Energy Astrophysical Phenomena +0907.3643 Atmospheric and Oceanic Physics +0907.4069 Phenomenology +0907.5257 Formal Languages and Automata Theory +0907.5422 Phenomenology +0907.5488 Networking and Internet Architecture +0908.0076 Networking and Internet Architecture +0908.0352 +0908.2014 Theory +0908.2836 +0908.2927 Theory +0908.3026 Differential Geometry +0908.3949 Theory +0908.4102 +0909.0840 Combinatorics +0909.1105 Theory +0909.2062 Databases +0909.2289 Representation Theory +0909.2565 Phenomenology +0909.2655 Strongly Correlated Electrons +0909.2757 Physics and Society +0909.4653 Statistical Mechanics +0909.5059 Soft Condensed Matter +0909.5207 Group Theory +0909.5298 Theory +0909.5405 Theory +0910.0466 Theory +0910.0668 Learning +0910.1100 Phenomenology +0910.1245 Theory +0910.1602 Phenomenology +0910.2571 Theory +0910.2576 Theory +0910.2612 Phenomenology +0910.2863 +0910.2975 +0910.3721 Lattice +0910.4021 +0910.4028 +0910.4392 Phenomenology +0910.4602 Theory +0910.4745 High Energy Astrophysical Phenomena +0910.4982 Chaotic Dynamics +0910.5514 Phenomenology +0910.5536 Theory +0910.5576 Lattice +0910.5578 Lattice +0910.5581 Lattice +0910.5583 Lattice +0910.5591 +0911.0228 Lattice +0911.1358 Phenomenology +0911.2340 +0911.3785 Cosmology and Nongalactic Astrophysics +0911.4209 +0911.5160 +0912.0354 +0912.0647 Representation Theory +0912.1073 Mesoscale and Nanoscale Physics +0912.1111 +0912.4295 +1001.0562 Analysis of PDEs +1001.0780 Cosmology and Nongalactic Astrophysics +1001.2470 Solar and Stellar Astrophysics +1001.3249 Algebraic Geometry +1001.3715 Astrophysics of Galaxies +1001.4952 Optics +1001.5318 Cosmology and Nongalactic Astrophysics +1002.0715 +1002.1237 +1002.3129 Algebraic Topology +1002.3317 Networking and Internet Architecture +1002.3822 Analysis of PDEs +1002.3828 Phenomenology +1002.3829 Soft Condensed Matter +1002.3830 Cosmology and Nongalactic Astrophysics +1002.3835 General Topology +1002.3837 Populations and Evolution +1002.3839 +1002.3840 Number Theory +1002.3841 Functional Analysis +1002.3845 Materials Science +1002.3850 Materials Science +1002.3851 Functional Analysis +1002.3852 Exactly Solvable and Integrable Systems +1002.3859 Probability +1002.3862 Mesoscale and Nanoscale Physics +1002.3863 Algebraic Geometry +1002.3867 Cosmology and Nongalactic Astrophysics +1002.3875 Functional Analysis +1002.3880 General Physics +1002.3883 Number Theory +1002.3885 Differential Geometry +1002.3889 Instrumentation and Methods for Astrophysics +1002.3890 Representation Theory +1002.3894 Classical Analysis and ODEs +1002.3896 Probability +1002.3897 Differential Geometry +1002.3898 Differential Geometry +1002.3902 Functional Analysis +1002.3903 Theory +1002.3904 Combinatorics +1002.3910 Combinatorics +1002.3913 +1002.3916 Geophysics +1002.3919 +1002.3920 +1002.3923 Complex Variables +1002.3937 Computational Complexity +1002.3939 Geometric Topology +1002.3940 Probability +1002.3942 Dynamical Systems +1002.3956 Popular Physics +1002.3959 Operator Algebras +1002.3962 Functional Analysis +1002.3968 General Physics +1002.3990 Hardware Architecture +1002.4001 +1002.4016 Number Theory +1002.4019 Machine Learning +1002.4020 Information Theory +1002.4021 Cosmology and Nongalactic Astrophysics +1002.4022 Information Theory +1002.4025 Instrumentation and Methods for Astrophysics +1002.4034 Data Structures and Algorithms +1002.4053 +1002.4054 Analysis of PDEs +1002.4057 Mathematical Software +1002.4061 Computational Engineering, Finance, and Science +1002.4062 Computational Engineering, Finance, and Science +1002.4063 Computational Engineering, Finance, and Science +1002.4064 Computational Engineering, Finance, and Science +1002.4065 Computational Engineering, Finance, and Science +1002.4066 Computational Engineering, Finance, and Science +1002.4067 Computational Engineering, Finance, and Science +1002.4069 Materials Science +1002.4071 Materials Science +1002.4074 Combinatorics +1002.4075 Mesoscale and Nanoscale Physics +1002.4080 Algebraic Geometry +1002.4084 Computational Complexity +1002.4095 Dynamical Systems +1002.4098 History and Overview +1002.4102 Mesoscale and Nanoscale Physics +1002.4103 +1002.4104 Operator Algebras +1002.4105 History and Overview +1002.4106 Differential Geometry +1002.4108 Accelerator Physics +1002.4121 Statistics Theory +1002.4128 Analysis of PDEs +1002.4135 Probability +1002.4143 Metric Geometry +1002.4146 Combinatorics +1002.4150 Dynamical Systems +1002.4154 General Physics +1002.4156 Differential Geometry +1002.4165 Numerical Analysis +1002.4166 Complex Variables +1002.4174 Number Theory +1002.4175 Number Theory +1002.4181 Algebraic Geometry +1002.4182 Distributed, Parallel, and Cluster Computing +1002.4186 Dynamical Systems +astro-ph/0510468 +astro-ph/0702528 +astro-ph/0702635 +astro-ph/9908070 +gr-qc/0007073 +gr-qc/0210109 +gr-qc/0307072 +gr-qc/9406028 +hep-ph/0109098 Phenomenology +hep-ph/0112262 Phenomenology +hep-ph/0308026 Phenomenology +hep-th/0602105 Theory +math-ph/0602046 +math/0210062 Symplectic Geometry +math/0212279 Algebraic Geometry +math/0308281 Quantum Algebra +math/0506171 Algebraic Geometry +physics/0112086 Accelerator Physics +physics/0205083 Optics +physics/0210001 Optics +0706.0023 Theory +0707.3043 Other Quantitative Biology +0711.0599 +0711.3494 +0806.4865 Phenomenology +0809.3669 +0809.3727 Disordered Systems and Neural Networks +0901.2315 Probability +0902.3135 +0904.1304 Phenomenology +0904.3529 Earth and Planetary Astrophysics +0905.3688 Theory +0906.0528 Logic +0906.1978 Strongly Correlated Electrons +0906.4534 +0907.2021 Mesoscale and Nanoscale Physics +0907.3583 Software Engineering +0907.4422 Commutative Algebra +0907.5242 +0907.5316 Phenomenology +0908.1219 Combinatorics +0908.3668 Statistics Theory +0910.2293 Rings and Algebras +0910.3698 Cosmology and Nongalactic Astrophysics +0910.4956 Instrumentation and Detectors +0910.5669 Soft Condensed Matter +0911.2172 Combinatorics +0911.3601 Symplectic Geometry +0912.0541 Cosmology and Nongalactic Astrophysics +0912.2105 Theory +0912.2886 +0912.3585 Cosmology and Nongalactic Astrophysics +1001.0308 +1001.2457 Group Theory +1001.2711 Phenomenology +1001.3148 Theory +1001.3519 +1002.1700 Cosmology and Nongalactic Astrophysics +1002.2126 Phenomenology +1002.2339 Phenomenology +1002.2437 Theory +1002.2549 Theory +1002.2995 Phenomenology +1002.3697 Phenomenology +1002.3846 Theory +1002.4416 Theory +1002.4798 Phenomenology +1002.4863 Category Theory +1002.5029 Theory +1002.5046 Subcellular Processes +1003.0548 Differential Geometry +1003.0797 Theory +1003.1105 +1003.2080 Combinatorics +1003.2204 Phenomenology +1003.2354 Astrophysics of Galaxies +1003.2608 Quantum Gases +1003.2864 Theory +1003.2949 Representation Theory +1003.2970 Classical Physics +1003.4222 +1003.4240 Classical Analysis and ODEs +1003.4303 Theory +1003.4831 Robotics +1003.4952 Theory +1004.1640 Theory +1004.1799 Theory +1004.2824 Theory +1004.4056 Accelerator Physics +1004.4249 High Energy Astrophysical Phenomena +1004.4283 Theory +1004.4735 Theory +1004.5502 Phenomenology +1005.0210 Theory +1005.0389 Astrophysics of Galaxies +1005.1530 Probability +1005.1661 Cosmology and Nongalactic Astrophysics +1005.2978 Phenomenology +1005.3380 +1005.3663 Plasma Physics +1005.4458 Cosmology and Nongalactic Astrophysics +1005.5078 +1005.5252 High Energy Astrophysical Phenomena +1005.5575 Number Theory +1006.0423 Discrete Mathematics +1006.0736 Astrophysics of Galaxies +1006.0899 High Energy Astrophysical Phenomena +1006.3110 Cosmology and Nongalactic Astrophysics +1006.3114 General Physics +1006.4554 General Physics +1006.5751 Cosmology and Nongalactic Astrophysics +1007.0178 Materials Science +1007.0344 Optics +1007.1200 +1007.1426 Cosmology and Nongalactic Astrophysics +1007.1852 Numerical Analysis +1007.2571 Cosmology and Nongalactic Astrophysics +1007.4505 Solar and Stellar Astrophysics +1007.5490 Strongly Correlated Electrons +1008.3299 Statistical Mechanics +1008.3845 Numerical Analysis +1009.0254 Soft Condensed Matter +1009.1114 Data Structures and Algorithms +1009.2127 Statistical Mechanics +1009.2357 Theory +1009.3584 General Physics +1009.3966 Theory +1009.3968 Classical Physics +1009.4011 Phenomenology +1009.4459 Theory +1009.5592 High Energy Astrophysical Phenomena +1009.5621 Discrete Mathematics +1010.0103 +1010.0158 Cosmology and Nongalactic Astrophysics +1010.0823 +1010.1146 High Energy Astrophysical Phenomena +1010.1997 High Energy Astrophysical Phenomena +1010.2119 Theory +1010.2634 Physics and Society +1010.2977 Phenomenology +1010.4212 Combinatorics +1010.4313 Probability +1010.4327 Social and Information Networks +1010.4568 +1010.4714 Mesoscale and Nanoscale Physics +1010.5258 Phenomenology +1010.5785 High Energy Astrophysical Phenomena +1010.6145 Superconductivity +1010.6175 +1011.0635 Strongly Correlated Electrons +1011.0709 +1011.0909 Phenomenology +1011.1345 Instrumentation and Detectors +1011.1834 +1011.2308 Probability +1011.3064 Cosmology and Nongalactic Astrophysics +1011.3662 +1011.4694 Fluid Dynamics +1011.4799 Differential Geometry +1011.4919 +1011.5255 +1011.5270 Machine Learning +1011.5496 Information Theory +1011.5714 General Physics +1011.5715 General Physics +1011.5716 General Physics +1011.5881 Cosmology and Nongalactic Astrophysics +1011.6039 Statistics Theory +1011.6074 Mesoscale and Nanoscale Physics +1011.6275 +1011.6284 Trading and Market Microstructure +1011.6376 Earth and Planetary Astrophysics +1011.6377 Phenomenology +1011.6381 High Energy Astrophysical Phenomena +1011.6384 Theory +1011.6393 Number Theory +1011.6407 Strongly Correlated Electrons +1011.6409 Computation +1011.6415 Number Theory +1011.6418 Fluid Dynamics +1011.6420 Analysis of PDEs +1011.6428 +1011.6430 Logic in Computer Science +1011.6433 Logic in Computer Science +1011.6435 Logic in Computer Science +1011.6436 Distributed, Parallel, and Cluster Computing +1011.6437 Logic in Computer Science +1011.6438 Logic in Computer Science +1011.6439 Instrumentation and Methods for Astrophysics +1011.6447 Statistics Theory +1011.6455 Experiment +1011.6457 Instrumentation and Detectors +1011.6458 Statistics Theory +1011.6462 Commutative Algebra +1011.6465 Number Theory +1011.6470 Phenomenology +1011.6472 Data Analysis, Statistics and Probability +1011.6473 +1011.6476 Number Theory +1011.6478 Probability +1011.6481 Computational Geometry +1011.6484 Soft Condensed Matter +1011.6486 Probability +1011.6489 Soft Condensed Matter +1011.6494 Methodology +1011.6496 Logic in Computer Science +1011.6498 Computational Geometry +1011.6501 Geophysics +1011.6505 Symbolic Computation +1011.6506 Solar and Stellar Astrophysics +1011.6509 Methodology +1011.6512 Solar and Stellar Astrophysics +1011.6513 Probability +1011.6514 Phenomenology +1011.6515 +1011.6516 Soft Condensed Matter +1011.6517 Other Statistics +1011.6520 Quantum Algebra +1011.6524 Pattern Formation and Solitons +1011.6526 Computers and Society +1011.6527 High Energy Astrophysical Phenomena +1011.6533 Group Theory +1011.6537 Phenomenology +1011.6539 Differential Geometry +1011.6544 Complex Variables +1011.6545 High Energy Astrophysical Phenomena +1011.6546 Dynamical Systems +1011.6550 Phenomenology +1011.6551 Rings and Algebras +1011.6552 Dynamical Systems +1011.6555 Experiment +1011.6559 Operator Algebras +1011.6561 Number Theory +1011.6563 Solar and Stellar Astrophysics +1011.6566 Mesoscale and Nanoscale Physics +1011.6570 Theory +1011.6573 Lattice +1011.6575 Solar and Stellar Astrophysics +1011.6580 Lattice +1011.6589 +1011.6590 Other Computer Science +1011.6596 Distributed, Parallel, and Cluster Computing +1011.6598 Representation Theory +1011.6601 Computational Physics +1011.6603 +1011.6604 Instrumentation and Methods for Astrophysics +1011.6612 Combinatorics +1011.6617 Analysis of PDEs +1011.6620 +1011.6621 Representation Theory +1011.6623 +1011.6624 Classical Physics +1011.6625 Numerical Analysis +1011.6627 Statistics Theory +1011.6628 +1011.6630 +1011.6632 Phenomenology +1011.6636 Representation Theory +1011.6637 Materials Science +1011.6638 Materials Science +1011.6640 Statistics Theory +1011.6643 Strongly Correlated Electrons +1011.6646 Combinatorics +1011.6648 Commutative Algebra +1011.6649 Methodology +1011.6652 Cosmology and Nongalactic Astrophysics +1011.6659 Algebraic Geometry +1011.6664 Optimization and Control +1011.6670 Other Computer Science +1011.6671 Other Computer Science +1011.6674 Phenomenology +astro-ph/0108187 +astro-ph/0210131 +astro-ph/0212177 +astro-ph/0308448 +astro-ph/0308450 +astro-ph/0401279 +astro-ph/0411004 +astro-ph/0509323 +astro-ph/0606522 +astro-ph/0609721 +cond-mat/0109327 +cs/0604037 Data Structures and Algorithms +gr-qc/0210067 +hep-lat/9408019 Lattice +hep-th/0210032 Theory +hep-th/0301200 Theory +hep-th/0302025 Theory +hep-th/0302089 Theory +hep-th/0302097 Theory +hep-th/9112055 Theory +hep-th/9310183 Theory +math-ph/0302024 +math/0001097 Metric Geometry +q-bio/0607018 Genomics +0707.3728 +0802.2581 Computation +0806.1495 Phenomenology +0806.1968 Differential Geometry +0808.4134 Data Structures and Algorithms +0811.0723 +0812.4137 Fluid Dynamics +0903.1056 +0904.4577 +0906.2867 Strongly Correlated Electrons +0907.4051 Cosmology and Nongalactic Astrophysics +0908.2026 Quantum Gases +0908.4461 Statistics Theory +0910.0385 Materials Science +0910.1553 +0910.1568 +0910.2242 Astrophysics of Galaxies +0910.4941 Pricing of Securities +0911.1661 Probability +0911.3616 General Physics +0911.5511 Fluid Dynamics +0912.3829 Theory +0912.4315 Cosmology and Nongalactic Astrophysics +1001.1138 +1001.1432 Instrumentation and Methods for Astrophysics +1001.2662 Information Theory +1002.1524 Complex Variables +1003.0489 Materials Science +1003.1978 Mesoscale and Nanoscale Physics +1003.2618 Mesoscale and Nanoscale Physics +1003.3355 +1004.0375 Mesoscale and Nanoscale Physics +1004.2545 Fluid Dynamics +1004.4615 Phenomenology +1005.2485 +1005.2719 Statistics Theory +1005.2826 Cosmology and Nongalactic Astrophysics +1005.3563 Mesoscale and Nanoscale Physics +1005.4466 Algebraic Geometry +1005.5472 Dynamical Systems +1005.5528 Algebraic Geometry +1006.1131 Quantum Gases +1006.1401 Distributed, Parallel, and Cluster Computing +1006.2397 High Energy Astrophysical Phenomena +1006.3490 Superconductivity +1006.4190 Complex Variables +1006.4620 Soft Condensed Matter +1007.0643 Mesoscale and Nanoscale Physics +1007.3442 Group Theory +1007.3457 Mesoscale and Nanoscale Physics +1007.3493 Astrophysics of Galaxies +1007.3504 Mesoscale and Nanoscale Physics +1007.3512 Cosmology and Nongalactic Astrophysics +1007.3514 Instrumentation and Methods for Astrophysics +1007.3520 Mesoscale and Nanoscale Physics +1007.3522 Other Condensed Matter +1007.3525 Functional Analysis +1007.3535 Optimization and Control +1007.3536 Strongly Correlated Electrons +1007.3537 Materials Science +1007.3554 Optics +1007.3555 Optics +1007.3557 High Energy Astrophysical Phenomena +1007.3561 Computational Physics +1007.3565 Molecular Networks +1007.3566 +1007.3567 Molecular Networks +1007.3572 Group Theory +1007.3583 Classical Physics +1007.3585 Soft Condensed Matter +1007.3586 Fluid Dynamics +1007.3589 Software Engineering +1007.3593 Analysis of PDEs +1007.3596 Classical Physics +1007.3607 Computational Geometry +1007.3612 Numerical Analysis +1007.3615 Symbolic Computation +1007.3619 Numerical Analysis +1007.3620 Cosmology and Nongalactic Astrophysics +1007.3629 Logic in Computer Science +1007.3631 Distributed, Parallel, and Cluster Computing +1007.3633 Human-Computer Interaction +1007.3638 Chaotic Dynamics +1007.3640 Distributed, Parallel, and Cluster Computing +1007.3644 Networking and Internet Architecture +1007.3649 Distributed, Parallel, and Cluster Computing +1007.3654 Applications +1007.3661 Information Theory +1007.3663 Artificial Intelligence +1007.3667 Differential Geometry +1007.3671 Instrumentation and Detectors +1007.3674 Number Theory +1007.3676 Information Theory +1007.3680 Physics and Society +1007.3688 +1007.3690 Algebraic Geometry +1007.3700 Artificial Intelligence +1007.3709 Cosmology and Nongalactic Astrophysics +1007.3712 Logic in Computer Science +1007.3720 Materials Science +1007.3726 Computational Physics +1007.3731 General Physics +cs/0702113 Distributed, Parallel, and Cluster Computing +math/0611080 Symplectic Geometry +physics/0504178 Optics +physics/0603217 Optics +physics/0603272 Optics +quant-ph/0101011 +quant-ph/0207075 +quant-ph/0408017 +0708.2092 Materials Science +0801.4783 Materials Science +0806.3023 Distributed, Parallel, and Cluster Computing +0807.0682 Strongly Correlated Electrons +0808.2079 Materials Science +0809.4858 Classical Analysis and ODEs +0809.4893 Algebraic Topology +0812.3676 Strongly Correlated Electrons +0901.3830 Atomic and Molecular Clusters +0901.4163 +0902.0028 Geometric Topology +0903.3827 +0904.1118 Classical Analysis and ODEs +0905.4447 Theory +0907.3810 Statistical Mechanics +0909.1589 +0910.0245 Cosmology and Nongalactic Astrophysics +0910.1510 Statistical Mechanics +0910.3002 Geometric Topology +0910.5069 Probability +0911.1793 Probability +0911.1824 Data Analysis, Statistics and Probability +0911.3045 Statistical Finance +0911.4580 Metric Geometry +0912.1097 Soft Condensed Matter +0912.3795 Strongly Correlated Electrons +0912.5236 Cosmology and Nongalactic Astrophysics +1001.0218 General Physics +1001.1045 Quantum Gases +1002.1957 Instrumentation and Methods for Astrophysics +1002.3093 Operator Algebras +1003.0481 Cosmology and Nongalactic Astrophysics +1003.0785 Superconductivity +1003.2048 Differential Geometry +1003.2444 +1003.4365 Metric Geometry +1003.4728 Combinatorics +1004.1399 Information Theory +1004.2435 Group Theory +1004.3063 +1004.3103 Operator Algebras +1004.4218 Phenomenology +1004.5284 Lattice +1005.0761 Phenomenology +1005.1210 Number Theory +1005.1400 Statistical Mechanics +1005.1411 Superconductivity +1005.5366 Chaotic Dynamics +1006.3475 Theory +1006.3640 Machine Learning +1006.4312 Superconductivity +1007.0373 Combinatorics +1007.0461 Physics and Society +1007.1337 Optics +1007.1490 Probability +1007.1608 Spectral Theory +1007.1756 Information Theory +1007.1773 Statistical Mechanics +1007.1868 Computational Complexity +1007.1980 Cosmology and Nongalactic Astrophysics +1007.1992 Statistical Mechanics +1007.2001 Dynamical Systems +1007.2004 Commutative Algebra +1007.2005 Analysis of PDEs +1007.2007 Complex Variables +1007.2010 +1007.2011 Analysis of PDEs +1007.2018 Cosmology and Nongalactic Astrophysics +1007.2022 Mesoscale and Nanoscale Physics +1007.2025 Materials Science +1007.2027 Quantum Gases +1007.2029 Combinatorics +1007.2031 Phenomenology +1007.2036 Differential Geometry +1007.2037 Differential Geometry +1007.2042 Optics +1007.2043 Algebraic Geometry +1007.2046 Algebraic Topology +1007.2048 Solar and Stellar Astrophysics +1007.2050 Number Theory +1007.2055 Probability +1007.2060 Differential Geometry +1007.2064 High Energy Astrophysical Phenomena +1007.2071 Information Theory +1007.2081 Classical Physics +1007.2082 Classical Physics +1007.2084 +1007.2091 Classical Analysis and ODEs +1007.2097 Materials Science +1007.2099 Earth and Planetary Astrophysics +1007.2103 Combinatorics +1007.2106 +1007.2110 Materials Science +1007.2111 Soft Condensed Matter +1007.2120 Computational Geometry +1007.2122 Classical Analysis and ODEs +1007.2127 +1007.2138 Mesoscale and Nanoscale Physics +1007.2142 Materials Science +1007.2153 Fluid Dynamics +1007.2173 Optimization and Control +1007.2176 Theory +1007.2178 Classical Analysis and ODEs +1007.2180 Geophysics +math/0608618 Differential Geometry +math/0702077 Differential Geometry +physics/0312082 General Physics +physics/0407133 General Physics +physics/0408097 General Physics +0705.0396 +0705.3024 +0707.3238 +0707.4581 +0802.3564 Theory +0803.2548 Physics and Society +0803.3456 +0803.3998 Theory +0805.0148 Strongly Correlated Electrons +0806.3357 +0806.4273 +0806.4368 +0807.0486 Theory +0807.3358 +0807.4152 Theory +0808.1040 Phenomenology +0808.3923 Materials Science +0809.0429 +0809.2647 Theory +0809.3564 +0809.4033 +0809.5052 Analysis of PDEs +0810.0087 +0810.0388 Complex Variables +0810.1495 Lattice +0810.1502 Phenomenology +0810.1759 Lattice +0810.1875 Phenomenology +0810.1920 Phenomenology +0810.1952 Phenomenology +0810.2155 Phenomenology +0810.2157 Rings and Algebras +0810.5128 Theory +0810.5212 Phenomenology +0810.5396 Phenomenology +0810.5397 Phenomenology +0810.5443 Phenomenology +0810.5510 Phenomenology +0810.5557 Phenomenology +0810.5609 Phenomenology +0810.5628 Phenomenology +0810.5651 Phenomenology +0810.5680 Phenomenology +0811.0243 Phenomenology +0811.0298 Phenomenology +0811.0326 Phenomenology +0811.0345 Phenomenology +0811.0527 Materials Science +0811.0567 Phenomenology +0811.1835 Phenomenology +0811.1941 Phenomenology +0811.2216 Phenomenology +0811.2226 Phenomenology +0811.2400 Phenomenology +0811.2440 Lattice +0811.2727 Phenomenology +0811.2762 Phenomenology +0811.2839 Phenomenology +0812.0552 Theory +0812.2570 Materials Science +0812.3878 +0812.4347 +0812.4435 +0901.1363 Phenomenology +0901.2375 Geometric Topology +0902.1532 +0902.2270 +0902.4202 Phenomenology +0902.4212 Phenomenology +0903.1115 Phenomenology +0903.1118 Phenomenology +0903.1696 Phenomenology +0903.1708 Phenomenology +0903.2632 Phenomenology +0903.2688 Geophysics +0904.1024 Algebraic Topology +0904.2039 Lattice +0904.3309 Phenomenology +0904.3566 +0904.4640 Algebraic Geometry +0904.4697 Cosmology and Nongalactic Astrophysics +0904.4906 High Energy Astrophysical Phenomena +0905.0003 Cosmology and Nongalactic Astrophysics +0905.0107 Phenomenology +0905.0173 Cosmology and Nongalactic Astrophysics +0905.0240 Cosmology and Nongalactic Astrophysics +0905.0289 Cosmology and Nongalactic Astrophysics +0905.0308 Cosmology and Nongalactic Astrophysics +0905.0328 Theory +0905.0643 Cosmology and Nongalactic Astrophysics +0905.0672 Cosmology and Nongalactic Astrophysics +0905.2719 +0905.3500 Cosmology and Nongalactic Astrophysics +0905.3616 Lattice +0905.3676 Phenomenology +0905.3947 Lattice +0906.2384 Theory +0906.3601 Strongly Correlated Electrons +0906.4220 +0906.5272 Cosmology and Nongalactic Astrophysics +0907.2027 Mesoscale and Nanoscale Physics +0907.3286 Mesoscale and Nanoscale Physics +0907.3660 Dynamical Systems +0907.3968 Statistical Mechanics +0908.0594 Phenomenology +0908.1031 Analysis of PDEs +0908.1084 Number Theory +0908.1627 Solar and Stellar Astrophysics +0908.3575 Cosmology and Nongalactic Astrophysics +0908.4399 +0909.1174 +0909.1193 Mesoscale and Nanoscale Physics +0909.1220 Mesoscale and Nanoscale Physics +0909.4081 Theory +0909.4568 Mesoscale and Nanoscale Physics +0909.4997 Phenomenology +0910.0374 +0910.3450 Strongly Correlated Electrons +0910.3952 +0910.4352 +0910.5303 +0910.5554 Phenomenology +0911.1083 Theory +0911.2110 +0911.2168 Combinatorics +0911.2803 Classical Analysis and ODEs +0911.4555 Lattice +0911.4825 History and Philosophy of Physics +0911.4969 Theory +0912.0657 Representation Theory +0912.0940 Phenomenology +0912.2256 Mesoscale and Nanoscale Physics +0912.3503 General Physics +0912.4424 +0912.4544 +0912.5066 Theory +1001.0231 Phenomenology +1001.0327 +1001.1669 Materials Science +1001.2359 +1001.4277 Computation and Language +1001.4539 Astrophysics of Galaxies +1001.5182 Plasma Physics +1002.4335 Superconductivity +1003.0072 Number Theory +1003.0855 Quantum Gases +1003.0949 +1003.1172 +1003.1445 +1003.1450 Learning +1003.1456 Software Engineering +1003.1460 Information Retrieval +1003.1470 Cryptography and Security +1003.1473 Numerical Analysis +1003.1476 Software Engineering +1003.1479 Networking and Internet Architecture +1003.1493 Artificial Intelligence +1003.1500 Databases +1003.1504 Artificial Intelligence +1003.1509 Other Computer Science +1003.1510 Learning +1003.1511 Computer Vision and Pattern Recognition +1003.1514 Cryptography and Security +1003.1515 Cryptography and Security +1003.1714 Materials Science +1003.1803 Computer Vision and Pattern Recognition +1003.1959 Disordered Systems and Neural Networks +1003.4559 Soft Condensed Matter +1004.0319 Cosmology and Nongalactic Astrophysics +1004.0548 Materials Science +1004.2396 Theory +1004.3478 Information Retrieval +1004.4128 Other Computer Science +1004.4286 Performance +1004.4301 +1004.4516 Computational Physics +1004.4643 Pattern Formation and Solitons +1004.4646 Cosmology and Nongalactic Astrophysics +1004.4648 Materials Science +1004.4653 Data Analysis, Statistics and Probability +1004.4654 Materials Science +1004.4655 Theory +1004.4659 +1004.4663 Information Theory +1004.4667 Earth and Planetary Astrophysics +1004.4670 Plasma Physics +1004.4682 +1004.4687 Fluid Dynamics +1004.4690 Networking and Internet Architecture +1004.4691 +1004.4694 Optics +1004.4698 Group Theory +1004.4703 Materials Science +1004.4705 Number Theory +1004.4713 Information Theory +1004.4722 General Physics +1004.4729 Computational Complexity +1004.4752 Differential Geometry +1004.4754 +1004.4757 Cosmology and Nongalactic Astrophysics +1004.4758 Information Theory +1004.4759 Networking and Internet Architecture +1004.4765 Cosmology and Nongalactic Astrophysics +1004.4766 Instrumentation and Methods for Astrophysics +1004.4769 Numerical Analysis +1004.4775 +1004.4776 Cosmology and Nongalactic Astrophysics +1004.4780 Pattern Formation and Solitons +1004.4791 Data Analysis, Statistics and Probability +1004.4793 Computer Vision and Pattern Recognition +1004.4802 Algebraic Geometry +1004.4809 Networking and Internet Architecture +1004.4815 Information Theory +1004.4817 Phenomenology +1004.4821 Networking and Internet Architecture +1004.4826 Information Theory +1004.4830 Other Computer Science +1004.4839 Algebraic Geometry +1004.4843 +1004.4846 Instrumentation and Detectors +1004.4847 Solar and Stellar Astrophysics +1004.4865 Materials Science +1004.4869 Cosmology and Nongalactic Astrophysics +1004.4872 Combinatorics +1004.4873 Probability +1004.4878 Materials Science +1004.4882 Information Theory +astro-ph/0304182 +astro-ph/0507433 +astro-ph/0611670 +astro-ph/0701037 +astro-ph/0702015 +astro-ph/9808021 +cs/0305058 Distributed, Parallel, and Cluster Computing +cs/0306004 Distributed, Parallel, and Cluster Computing +gr-qc/0005017 +gr-qc/0103100 +gr-qc/0108040 +gr-qc/0203001 +gr-qc/0209014 +gr-qc/0306054 +gr-qc/0310002 +gr-qc/0403060 +gr-qc/0501033 +gr-qc/0503022 +gr-qc/0508072 +gr-qc/0510056 +gr-qc/0601041 +gr-qc/0701017 +gr-qc/0702107 +gr-qc/9209011 +gr-qc/9301006 +gr-qc/9309002 +gr-qc/9311007 +gr-qc/9406006 +gr-qc/9409052 +gr-qc/9410021 +gr-qc/9411031 +gr-qc/9503024 +gr-qc/9504033 +gr-qc/9506079 +gr-qc/9606043 +gr-qc/9702017 +gr-qc/9708026 +gr-qc/9710114 +gr-qc/9807087 +gr-qc/9906126 +gr-qc/9909087 +gr-qc/9912118 +hep-th/0207238 Theory +hep-th/0209249 Theory +hep-th/0212085 Theory +hep-th/0311090 Theory +hep-th/0408123 Theory +hep-th/0703115 Theory +hep-th/9110005 Theory +hep-th/9205022 Theory +hep-th/9206103 Theory +hep-th/9304081 Theory +hep-th/9806026 Theory +hep-th/9812013 Theory +hep-th/9910247 Theory +hep-th/9911007 Theory +quant-ph/0312156 +quant-ph/0411074 +quant-ph/0507055 +quant-ph/0510083 +quant-ph/0603030 +0705.0709 Algebraic Geometry +0705.2549 +0705.3249 Algebraic Topology +0707.0913 Algebraic Geometry +0707.1435 General Mathematics +0710.5827 +0711.3401 +0712.1700 Optics +0712.2084 +0801.3124 Phenomenology +0803.2609 +0804.4023 Materials Science +0805.1605 Metric Geometry +0805.1805 Metric Geometry +0805.3759 Analysis of PDEs +0806.0646 +0807.1479 Materials Science +0807.3923 +0808.3086 +0810.1024 Tissues and Organs +0810.2126 Materials Science +0811.0926 Representation Theory +0811.1908 Analysis of PDEs +0812.0852 Computational Complexity +0901.4449 Theory +0902.4719 Algebraic Topology +0904.0281 +0904.0709 Fluid Dynamics +0904.2306 Discrete Mathematics +0905.1900 +0905.3965 Mesoscale and Nanoscale Physics +0906.5534 Materials Science +0907.1513 Materials Science +0907.4068 Computational Geometry +0909.2175 Mesoscale and Nanoscale Physics +0909.2744 Combinatorics +0909.3853 Cosmology and Nongalactic Astrophysics +0909.5185 Theory +0909.5685 Exactly Solvable and Integrable Systems +0910.0616 Combinatorics +0910.1709 Soft Condensed Matter +0910.5143 Strongly Correlated Electrons +0910.5436 Optics +0911.1876 +0911.2579 Quantum Algebra +0911.3208 Representation Theory +0911.5326 Phenomenology +0911.5505 Number Theory +0912.0078 Optics +0912.0534 Optics +0912.0794 Plasma Physics +0912.3152 Strongly Correlated Electrons +0912.4607 Quantum Gases +1001.0701 Classical Analysis and ODEs +1001.1463 Quantum Gases +1001.3192 Rings and Algebras +1001.3389 +1001.3470 Theory +1001.5107 Astrophysics of Galaxies +1002.3207 Optics +1003.0195 +1003.0642 Computer Vision and Pattern Recognition +1003.0829 Cosmology and Nongalactic Astrophysics +1003.0869 +1003.1262 Theory +1003.1370 Solar and Stellar Astrophysics +1003.1599 Optimization and Control +1003.1727 Methodology +1003.1728 Theory +1003.1731 Cosmology and Nongalactic Astrophysics +1003.1740 Analysis of PDEs +1003.1746 Algebraic Geometry +1003.1755 Materials Science +1003.1761 Mesoscale and Nanoscale Physics +1003.1767 Algebraic Geometry +1003.1771 Computation +1003.1775 Computers and Society +1003.1784 Fluid Dynamics +1003.1785 Combinatorics +1003.1792 Multiagent Systems +1003.1794 Numerical Analysis +1003.1795 Learning +1003.1796 Cryptography and Security +1003.1799 Cryptography and Security +1003.1802 Populations and Evolution +1003.1805 Algebraic Geometry +1003.1806 Cryptography and Security +1003.1807 Other Computer Science +1003.1809 Other Computer Science +1003.1811 Other Computer Science +1003.1813 Operator Algebras +1003.1817 Functional Analysis +1003.1818 Analysis of PDEs +1003.1819 Computer Vision and Pattern Recognition +1003.1824 Analysis of PDEs +1003.1828 Pattern Formation and Solitons +1003.1830 Algebraic Geometry +1003.1833 Networking and Internet Architecture +1003.1836 Statistical Mechanics +1003.1838 Phenomenology +1003.1839 Combinatorics +1003.1848 Computational Finance +1003.1849 Differential Geometry +1003.1855 Materials Science +1003.1874 +1003.1879 Combinatorics +1003.1887 Materials Science +1003.1888 Optimization and Control +1003.1891 Computer Vision and Pattern Recognition +1003.1892 Instrumentation and Methods for Astrophysics +1003.1894 Computer Vision and Pattern Recognition +1003.1895 Populations and Evolution +1003.1896 Populations and Evolution +1003.1905 General Mathematics +1003.1907 Experiment +1003.1910 Other Computer Science +1003.1914 +1003.1921 Phenomenology +1003.1924 Optics +1003.1925 General Mathematics +1003.1930 Other Computer Science +1003.1935 Algebraic Geometry +1003.1940 Data Structures and Algorithms +1003.1948 Differential Geometry +1003.1950 Probability +1003.1952 Strongly Correlated Electrons +1003.1957 K-Theory and Homology +1003.1958 Combinatorics +1003.1969 Complex Variables +1003.1974 Materials Science +1003.1976 Materials Science +cs/0605107 Logic in Computer Science +cs/0610165 Artificial Intelligence +cs/0703124 Artificial Intelligence +quant-ph/0510078 +quant-ph/0612149 +quant-ph/0701187 +0706.0614 Probability +0708.0245 Operator Algebras +0708.0275 Trading and Market Microstructure +0709.1801 Statistics Theory +0712.0798 +0802.1031 +0805.2788 Number Theory +0806.0782 Operator Algebras +0808.0402 +0809.2445 +0809.3577 Probability +0809.5136 Phenomenology +0811.2927 Statistical Mechanics +0812.1302 Probability +0901.1571 Statistical Mechanics +0902.1832 Phenomenology +0902.4169 Number Theory +0903.2125 Theory +0903.3400 Statistics Theory +0905.1924 Statistical Mechanics +0905.4218 Numerical Analysis +0906.2656 Cosmology and Nongalactic Astrophysics +0906.3181 Strongly Correlated Electrons +0906.4063 Mesoscale and Nanoscale Physics +0906.4289 Mesoscale and Nanoscale Physics +0906.4290 Combinatorics +0906.4590 Optics +0906.5374 Rings and Algebras +0907.0544 Soft Condensed Matter +0907.1858 Dynamical Systems +0907.2245 Atomic Physics +0907.3169 Mesoscale and Nanoscale Physics +0907.3505 +0907.5092 Atomic Physics +0908.1394 Cosmology and Nongalactic Astrophysics +0908.1577 Superconductivity +0908.3496 Superconductivity +0908.3926 +0908.3982 Information Theory +0908.4369 Superconductivity +0909.2213 Phenomenology +0909.3228 Quantum Gases +0909.4658 Statistical Mechanics +0909.4750 Plasma Physics +0910.0722 Statistics Theory +0910.0813 Analysis of PDEs +0910.1626 Plasma Physics +0910.1775 Fluid Dynamics +0910.3063 Optics +0910.5019 Group Theory +0911.2646 +0911.4523 Mesoscale and Nanoscale Physics +0911.4556 +0912.0358 Materials Science +0912.1532 Mesoscale and Nanoscale Physics +0912.2434 Commutative Algebra +0912.3303 Operator Algebras +0912.3678 Numerical Analysis +0912.4771 Dynamical Systems +0912.5076 Mesoscale and Nanoscale Physics +0912.5309 Experiment +1001.0629 General Mathematics +1001.1021 Information Theory +1001.1192 Instrumentation and Methods for Astrophysics +1001.1386 Information Theory +1001.1604 Differential Geometry +1001.1730 Information Theory +1001.1733 Optics +1001.1746 Disordered Systems and Neural Networks +1001.1760 High Energy Astrophysical Phenomena +1001.1761 Analysis of PDEs +1001.1768 Information Theory +1001.1770 Solar and Stellar Astrophysics +1001.1774 Optimization and Control +1001.1776 Quantum Algebra +1001.1779 Operator Algebras +1001.1781 Information Theory +1001.1782 Statistics Theory +1001.1786 Lattice +1001.1787 Analysis of PDEs +1001.1792 Mesoscale and Nanoscale Physics +1001.1794 Multimedia +1001.1800 Mesoscale and Nanoscale Physics +1001.1804 Numerical Analysis +1001.1805 Complex Variables +1001.1806 Information Theory +1001.1807 Complex Variables +1001.1808 Information Theory +1001.1809 Rings and Algebras +1001.1810 Statistics Theory +1001.1812 Rings and Algebras +1001.1814 Mesoscale and Nanoscale Physics +1001.1820 Statistics Theory +1001.1821 Statistics Theory +1001.1822 Probability +1001.1825 Statistics Theory +1001.1828 Statistics Theory +1001.1829 Statistics Theory +1001.1830 Statistics Theory +1001.1831 Statistics Theory +1001.1833 Probability +1001.1836 Artificial Intelligence +1001.1839 Dynamical Systems +1001.1840 Experiment +1001.1841 Methodology +1001.1842 +1001.1843 Materials Science +1001.1844 Cryptography and Security +1001.1845 Probability +1001.1846 Differential Geometry +1001.1850 +1001.1855 High Energy Astrophysical Phenomena +1001.1856 Computational Physics +1001.1858 Statistics Theory +1001.1864 Solar and Stellar Astrophysics +1001.1866 General Mathematics +1001.1867 Risk Management +1001.1869 Number Theory +1001.1870 Phenomenology +1001.1872 Information Theory +1001.1879 Instrumentation and Methods for Astrophysics +1001.1882 Theory +1001.1886 Statistics Theory +1001.1891 Number Theory +1001.1892 Cosmology and Nongalactic Astrophysics +1001.1896 Information Theory +1001.1901 Computer Science and Game Theory +1001.1907 General Finance +1001.1908 Risk Management +1001.1909 Computational Finance +1001.1911 Dynamical Systems +1001.1912 Information Theory +1001.1914 Portfolio Management +1001.1915 Information Theory +1001.1916 Statistical Finance +1001.1917 Information Theory +1001.1920 Solar and Stellar Astrophysics +1001.1921 General Finance +1001.1922 General Finance +1001.1923 Chemical Physics +1001.1927 +1001.1930 Strongly Correlated Electrons +1001.1931 Analysis of PDEs +1001.1936 Cryptography and Security +1001.1947 +1001.1948 Information Theory +1001.1949 Algebraic Topology +1001.1960 Logic in Computer Science +1001.1962 Cryptography and Security +1001.1963 Probability +1001.1966 Computer Vision and Pattern Recognition +1001.1967 Networking and Internet Architecture +1001.1968 Computer Vision and Pattern Recognition +1001.1970 Software Engineering +1001.1972 Multimedia +1001.1974 Multimedia +1001.1975 Cryptography and Security +1001.1976 Other Computer Science +1001.1979 Artificial Intelligence +1001.1985 Neural and Evolutionary Computing +1001.1986 Other Computer Science +1001.1988 Computer Vision and Pattern Recognition +1001.1989 Materials Science +1001.1990 +1001.1992 Networking and Internet Architecture +1001.1993 Cryptography and Security +1001.1994 Differential Geometry +1001.1998 Classical Analysis and ODEs +1001.1999 Biological Physics +cond-mat/0601464 Materials Science +cond-mat/0601515 Materials Science +math/0202159 Number Theory +math/9808070 Differential Geometry +0704.1538 Statistical Mechanics +0706.4138 Optimization and Control +0707.3053 Operator Algebras +0707.3861 Operator Algebras +0711.2613 +0803.2617 Disordered Systems and Neural Networks +0803.2660 Computational Physics +0805.2006 Statistical Mechanics +0807.3272 +0807.3298 Dynamical Systems +0807.3502 Algebraic Geometry +0809.4237 Superconductivity +0906.1555 Algebraic Geometry +0907.4097 +0909.2527 Theory +0909.3425 Superconductivity +0910.0213 Instrumentation and Detectors +0910.4591 +0911.1511 Networking and Internet Architecture +0911.5009 Materials Science +0912.1782 Superconductivity +0912.3713 Mesoscale and Nanoscale Physics +1001.1111 Populations and Evolution +1001.1613 Probability +1001.1652 Phenomenology +1001.2346 Group Theory +1001.2963 Materials Science +1001.3868 Algebraic Geometry +1001.4124 Physics and Society +1001.4317 Superconductivity +1002.2471 Phenomenology +1002.4991 Cosmology and Nongalactic Astrophysics +1003.2128 Quantum Algebra +1003.6017 Theory +1004.1521 +1004.1529 Algebraic Geometry +1004.1864 Distributed, Parallel, and Cluster Computing +1004.3223 Chemical Physics +1005.0273 Mesoscale and Nanoscale Physics +1005.3708 Strongly Correlated Electrons +1006.2138 Statistical Mechanics +1006.2874 Superconductivity +1006.3232 Superconductivity +1006.4197 +1006.4485 Soft Condensed Matter +1006.5109 Superconductivity +1006.5495 Classical Analysis and ODEs +1006.5508 +1007.1138 Solar and Stellar Astrophysics +1007.3358 Statistical Mechanics +1007.3518 Information Theory +1007.4795 Chemical Physics +1008.0899 Probability +1008.1057 Cosmology and Nongalactic Astrophysics +1008.1061 Astrophysics of Galaxies +1008.1079 Information Theory +1008.1080 Combinatorics +1008.1096 Physics and Society +1008.1098 +1008.1100 Chemical Physics +1008.1113 Rings and Algebras +1008.1114 Number Theory +1008.1119 Disordered Systems and Neural Networks +1008.1121 Quantitative Methods +1008.1125 Materials Science +1008.1131 Programming Languages +1008.1133 Phenomenology +1008.1134 Algebraic Topology +1008.1139 Mesoscale and Nanoscale Physics +1008.1154 Materials Science +1008.1155 Fluid Dynamics +1008.1167 Cosmology and Nongalactic Astrophysics +1008.1169 Phenomenology +1008.1176 High Energy Astrophysical Phenomena +1008.1186 Metric Geometry +1008.1188 Graphics +1008.1197 Materials Science +1008.1202 Numerical Analysis +1008.1209 Combinatorics +1008.1215 Spectral Theory +1008.1221 Cryptography and Security +1008.1225 Strongly Correlated Electrons +1008.1227 Instrumentation and Methods for Astrophysics +1008.1228 Mesoscale and Nanoscale Physics +1008.1229 +1008.1233 Biological Physics +1008.1234 Complex Variables +1008.1238 Mesoscale and Nanoscale Physics +1008.1239 Instrumentation and Methods for Astrophysics +1008.1241 Geophysics +1008.1247 +1008.1251 Superconductivity +1008.1253 Computers and Society +1008.1260 Discrete Mathematics +cond-mat/0504666 Statistical Mechanics +cond-mat/0511203 Statistical Mechanics +cond-mat/0607366 Statistical Mechanics +cond-mat/0610110 Statistical Mechanics +hep-th/0408217 Theory +math/0203170 Group Theory +math/0505484 General Topology +0707.2534 +0708.2365 +0709.0254 +0710.2466 Group Theory +0712.1716 +0712.2171 Phenomenology +0801.1115 +0801.1947 Strongly Correlated Electrons +0802.0147 +0802.4109 Atomic Physics +0805.1910 Superconductivity +0806.3801 Theory +0808.1497 +0808.3109 Artificial Intelligence +0808.4066 +0809.2200 +0810.1826 Statistical Mechanics +0810.3991 +0810.5073 +0810.5560 +0811.0262 Probability +0811.1418 Algebraic Topology +0811.2741 Statistics Theory +0811.3317 Biological Physics +0812.4515 +0901.0325 Phenomenology +0901.0850 +0901.2322 Theory +0901.4365 +0902.0346 +0902.1507 Phenomenology +0903.0200 Computers and Society +0903.0346 Cosmology and Nongalactic Astrophysics +0903.4258 Networking and Internet Architecture +0903.5049 Combinatorics +0904.1027 Astrophysics of Galaxies +0904.2019 Differential Geometry +0904.4243 Representation Theory +0905.1959 High Energy Astrophysical Phenomena +0905.2045 Mesoscale and Nanoscale Physics +0905.3992 Differential Geometry +0906.1066 Phenomenology +0906.2150 Quantum Gases +0906.2406 Theory +0906.3073 Astrophysics of Galaxies +0906.3115 Mesoscale and Nanoscale Physics +0906.5240 Materials Science +0907.1787 Statistics Theory +0907.3074 Phenomenology +0907.3238 Theory +0907.4195 Theory +0907.4261 +0907.4585 Phenomenology +0907.4972 Theory +0908.0312 Phenomenology +0908.0737 Theory +0908.1774 Optimization and Control +0908.2644 Data Analysis, Statistics and Probability +0908.3582 Statistical Mechanics +0909.0086 Combinatorics +0909.2154 Phenomenology +0909.3290 Phenomenology +0910.0685 Superconductivity +0910.1993 Theory +0910.2479 Phenomenology +0910.2639 Phenomenology +0910.3116 Accelerator Physics +0910.3926 Combinatorics +0910.5394 Probability +0910.5539 Analysis of PDEs +0911.1691 Databases +0911.2903 Rings and Algebras +0912.5386 Statistical Mechanics +1001.0866 +1001.3022 Solar and Stellar Astrophysics +1002.1024 Atmospheric and Oceanic Physics +1002.1833 Logic in Computer Science +1002.1836 Logic in Computer Science +1002.1841 Cosmology and Nongalactic Astrophysics +1002.2644 Quantitative Methods +1002.2645 General Physics +1002.2652 Algebraic Geometry +1002.2654 Computer Vision and Pattern Recognition +1002.2656 +1002.2657 Functional Analysis +1002.2658 Group Theory +1002.2664 Cosmology and Nongalactic Astrophysics +1002.2667 Cosmology and Nongalactic Astrophysics +1002.2671 Number Theory +1002.2674 Rings and Algebras +1002.2677 Applications +1002.2678 Materials Science +1002.2683 Lattice +1002.2691 Cosmology and Nongalactic Astrophysics +1002.2692 Materials Science +1002.2696 Spectral Theory +1002.2697 +1002.2702 Computation +1002.2706 Computation +1002.2707 Algebraic Geometry +1002.2709 Experiment +1002.2710 Operator Algebras +1002.2713 Number Theory +1002.2721 Discrete Mathematics +1002.2723 Discrete Mathematics +1002.2724 Discrete Mathematics +1002.2725 Analysis of PDEs +1002.2733 Functional Analysis +1002.2739 +1002.2740 General Finance +1002.2741 General Finance +1002.2749 Applications +1002.2755 Computer Vision and Pattern Recognition +1002.2756 Number Theory +1002.2759 Soft Condensed Matter +1002.2761 Combinatorics +1002.2768 Combinatorics +1002.2770 Optimization and Control +1002.2776 Optics +1002.2777 Strongly Correlated Electrons +1002.2778 Quantum Gases +1002.2779 Dynamical Systems +1002.2780 Learning +1002.2782 Strongly Correlated Electrons +1002.2790 Complex Variables +1002.2794 Materials Science +1002.2796 Combinatorics +1002.2803 Number Theory +1002.2808 Dynamical Systems +1002.2820 +1002.2825 Materials Science +1002.2826 +1002.2833 Space Physics +1002.2835 Phenomenology +1002.2837 Algebraic Topology +1002.2838 Phenomenology +1002.2840 Representation Theory +1002.2847 Functional Analysis +1002.2854 Algebraic Geometry +1002.2855 Phenomenology +1002.2856 Analysis of PDEs +1002.2859 Phenomenology +1002.2860 Differential Geometry +1002.2861 Earth and Planetary Astrophysics +1002.2863 High Energy Astrophysical Phenomena +1002.2864 Logic in Computer Science +1002.2867 Logic in Computer Science +1002.2868 Logic in Computer Science +1002.2869 Logic in Computer Science +1002.2871 Logic in Computer Science +1002.2872 Programming Languages +1002.2873 Logic in Computer Science +1002.2875 Chaotic Dynamics +1002.2882 Analysis of PDEs +1002.2885 Astrophysics of Galaxies +1002.2887 Probability +1002.2891 Experiment +1002.2896 Experiment +1002.2897 Artificial Intelligence +1002.2899 Number Theory +1002.2901 Classical Physics +1002.2906 +1002.2911 Classical Analysis and ODEs +1002.2912 Dynamical Systems +1002.2916 Cosmology and Nongalactic Astrophysics +1002.2917 +1002.2925 Numerical Analysis +1002.2927 Earth and Planetary Astrophysics +1002.2930 +1002.2932 General Physics +1002.2935 Group Theory +1002.2940 Cosmology and Nongalactic Astrophysics +1002.2942 Dynamical Systems +cond-mat/0005197 Statistical Mechanics +cond-mat/0107124 Statistical Mechanics +hep-lat/9610032 Lattice +hep-ph/0010173 Phenomenology +hep-ph/0010177 Phenomenology +hep-ph/0204343 Phenomenology +hep-ph/0209353 Phenomenology +hep-ph/0302165 Phenomenology +hep-ph/0307325 Phenomenology +hep-ph/0408052 Phenomenology +hep-ph/0509206 Phenomenology +hep-ph/0509226 Phenomenology +hep-ph/0608012 Phenomenology +hep-ph/9204228 Phenomenology +hep-ph/9211334 Phenomenology +hep-ph/9302258 Phenomenology +hep-ph/9408276 Phenomenology +hep-ph/9508280 Phenomenology +hep-ph/9609481 Phenomenology +hep-ph/9610226 Phenomenology +hep-ph/9610447 Phenomenology +hep-ph/9610448 Phenomenology +hep-ph/9709449 Phenomenology +hep-ph/9810216 Phenomenology +hep-ph/9901304 Phenomenology +hep-ph/9912208 Phenomenology +hep-ph/9912209 Phenomenology +hep-ph/9912305 Phenomenology +hep-ph/9912306 Phenomenology +hep-ph/9912307 Phenomenology +hep-th/0505130 Theory +math/0611163 Analysis of PDEs +math/0611218 Analysis of PDEs +math/0701126 Analysis of PDEs +physics/0411245 Classical Physics +physics/0512162 Atomic Physics +physics/0512175 Atomic Physics +physics/0608286 Atomic Physics +0704.3319 Materials Science +0705.2079 +0801.1095 Statistics Theory +0802.2263 +0806.2678 Other Condensed Matter +0810.2077 Plasma Physics +0811.2139 +0811.3331 Analysis of PDEs +0812.4710 Networking and Internet Architecture +0901.1403 Functional Analysis +0902.3314 Superconductivity +0902.3415 Algebraic Geometry +0903.1142 Mesoscale and Nanoscale Physics +0903.1747 Theory +0903.5136 Probability +0904.4281 Mesoscale and Nanoscale Physics +0905.0315 Networking and Internet Architecture +0905.0316 Networking and Internet Architecture +0905.0317 Networking and Internet Architecture +0905.3463 Methodology +0906.3465 Applications +0907.2459 Operator Algebras +0907.5373 +0909.1022 Other Condensed Matter +0909.1216 Functional Analysis +0910.1460 Statistical Mechanics +0910.1702 Soft Condensed Matter +0910.2046 Fluid Dynamics +0910.4583 High Energy Astrophysical Phenomena +0910.4782 Atomic Physics +0911.1669 Statistical Mechanics +0911.1673 Statistical Mechanics +0911.4823 Combinatorics +0912.4402 +1001.2666 Theory +1001.3164 Representation Theory +1001.4033 Statistical Mechanics +1002.0894 General Topology +1002.1697 Materials Science +1002.1845 Materials Science +1003.0209 Theory +1003.1442 +1003.3810 +1004.2853 Solar and Stellar Astrophysics +1004.3944 +1004.5406 Materials Science +1005.4856 Superconductivity +1005.4946 Functional Analysis +1006.1310 Plasma Physics +1006.1361 Statistical Mechanics +1006.1754 +1006.2198 Theory +1006.3138 Physics and Society +1006.3569 Soft Condensed Matter +1006.5012 Mesoscale and Nanoscale Physics +1006.5762 Information Theory +1007.1303 +1007.1762 Theory +1007.1925 High Energy Astrophysical Phenomena +1007.3238 Materials Science +1007.3687 Materials Science +1007.5252 Superconductivity +1008.0746 Quantitative Methods +1008.1494 Mesoscale and Nanoscale Physics +1008.2516 Mesoscale and Nanoscale Physics +1008.2979 Strongly Correlated Electrons +1008.3214 Plasma Physics +1008.4911 Classical Analysis and ODEs +1009.0623 Computer Vision and Pattern Recognition +1009.2156 Mesoscale and Nanoscale Physics +1009.3193 Solar and Stellar Astrophysics +1010.1460 Soft Condensed Matter +1010.4234 Disordered Systems and Neural Networks +1010.4474 Category Theory +1010.5626 Statistics Theory +1010.5776 Popular Physics +1010.5808 Probability +1010.5996 High Energy Astrophysical Phenomena +1011.0078 Data Structures and Algorithms +1011.1328 Statistics Theory +1011.1330 Logic in Computer Science +1011.1510 Soft Condensed Matter +1011.1663 Commutative Algebra +1011.1905 Astrophysics of Galaxies +1011.1906 Cosmology and Nongalactic Astrophysics +1011.1919 Algebraic Geometry +1011.1920 +1011.1936 Learning +1011.1941 Computer Science and Game Theory +1011.1943 +1011.1944 Space Physics +1011.1954 Other Condensed Matter +1011.1955 Number Theory +1011.1956 Networking and Internet Architecture +1011.1957 Number Theory +1011.1958 Geometric Topology +1011.1983 Dynamical Systems +1011.1986 Solar and Stellar Astrophysics +1011.1987 Applications +1011.1989 Probability +1011.1990 Analysis of PDEs +1011.1995 Analysis of PDEs +1011.1996 Applications +1011.1997 Solar and Stellar Astrophysics +1011.1999 Applications +1011.2003 +1011.2005 Applications +1011.2009 Information Theory +1011.2011 High Energy Astrophysical Phenomena +1011.2017 Complex Variables +1011.2021 High Energy Astrophysical Phenomena +1011.2023 Algebraic Geometry +1011.2029 High Energy Astrophysical Phenomena +1011.2034 Probability +1011.2035 Complex Variables +1011.2037 Applications +1011.2042 Human-Computer Interaction +1011.2046 Cosmology and Nongalactic Astrophysics +1011.2048 Statistics Theory +1011.2049 Spectral Theory +1011.2050 Dynamical Systems +1011.2052 +1011.2054 Solar and Stellar Astrophysics +1011.2064 Solar and Stellar Astrophysics +1011.2065 Applications +1011.2066 +1011.2068 Solar and Stellar Astrophysics +1011.2070 Solar and Stellar Astrophysics +1011.2071 Quantitative Methods +1011.2072 Quantum Algebra +1011.2073 High Energy Astrophysical Phenomena +1011.2074 Lattice +1011.2077 Applications +1011.2080 Statistical Mechanics +1011.2081 Functional Analysis +1011.2084 Combinatorics +1011.2086 Neurons and Cognition +1011.2087 Applications +1011.2092 Solar and Stellar Astrophysics +1011.2100 High Energy Astrophysical Phenomena +1011.2103 Networking and Internet Architecture +1011.2104 Applications +1011.2105 Other Computer Science +1011.2107 Other Computer Science +1011.2109 Information Theory +1011.2111 Geophysics +1011.2119 Functional Analysis +1011.2123 Functional Analysis +1011.2124 Optics +1011.2128 Differential Geometry +1011.2132 Optics +1011.2134 Algebraic Geometry +1011.2135 Theory +1011.2136 Data Structures and Algorithms +1011.2139 Probability +1011.2140 Functional Analysis +1011.2142 Functional Analysis +1011.2146 Disordered Systems and Neural Networks +1011.2153 Computation +1011.2157 Commutative Algebra +1011.2160 Strongly Correlated Electrons +1011.2163 Software Engineering +1011.2164 +1011.2167 Commutative Algebra +1011.2170 Materials Science +1011.2175 +1011.2180 Information Theory +1011.2181 Cosmology and Nongalactic Astrophysics +1011.2184 Algebraic Geometry +1011.2187 Data Structures and Algorithms +1011.2194 Lattice +1011.2196 Information Theory +cond-mat/0612621 Mesoscale and Nanoscale Physics +math/0612778 Dynamical Systems +math/0701131 Probability +math/0701781 Probability +math/9911205 Probability +math/9911213 Probability +physics/0209004 Optics +0705.3496 Probability +0706.3733 Mesoscale and Nanoscale Physics +0708.3747 Algebraic Geometry +0711.4217 Programming Languages +0712.3407 Statistical Mechanics +0801.0633 General Mathematics +0803.3802 Materials Science +0806.2663 +0807.4957 Category Theory +0808.0708 Superconductivity +0809.2007 +0810.2604 Superconductivity +0810.5043 Functional Analysis +0812.3156 Quantum Algebra +0812.4338 +0901.1651 Rings and Algebras +0903.1358 Materials Science +0904.0056 +0904.0219 +0904.3982 Commutative Algebra +0906.0714 Atomic Physics +0906.1619 Lattice +0906.1659 +0906.1794 Materials Science +0906.3271 Space Physics +0906.5146 Logic +0907.0050 +0907.2565 Mesoscale and Nanoscale Physics +0907.3331 Other Condensed Matter +0907.4768 Superconductivity +0908.0915 Phenomenology +0908.2326 Disordered Systems and Neural Networks +0909.0130 Mesoscale and Nanoscale Physics +0909.2649 Cosmology and Nongalactic Astrophysics +0909.4893 Data Structures and Algorithms +0910.2541 Solar and Stellar Astrophysics +0910.2543 Solar and Stellar Astrophysics +0910.2865 Instrumentation and Methods for Astrophysics +0911.1246 Classical Analysis and ODEs +0911.3102 Cosmology and Nongalactic Astrophysics +0911.3659 Cosmology and Nongalactic Astrophysics +0911.3849 Theory +0911.4824 General Mathematics +0912.2479 Human-Computer Interaction +0912.4316 Solar and Stellar Astrophysics +0912.4987 Analysis of PDEs +0912.5372 Phenomenology +0912.5438 +0912.5524 Category Theory +1001.0905 Category Theory +1001.1277 Rings and Algebras +1001.1350 Numerical Analysis +1001.1353 Numerical Analysis +1001.1355 High Energy Astrophysical Phenomena +1001.1357 Analysis of PDEs +1001.1362 Numerical Analysis +1001.1364 Numerical Analysis +1001.1366 +1001.1367 Numerical Analysis +1001.1369 Numerical Analysis +1001.1370 Numerical Analysis +1001.1371 Analysis of PDEs +1001.1372 Optics +1001.1373 Information Theory +1001.1374 Information Theory +1001.1382 Numerical Analysis +1001.1384 Functional Analysis +1001.1388 Statistical Mechanics +1001.1390 +1001.1392 Rings and Algebras +1001.1394 Geometric Topology +1001.1396 Probability +1001.1400 Spectral Theory +1001.1402 Exactly Solvable and Integrable Systems +1001.1403 Instrumentation and Detectors +1001.1406 Number Theory +1001.1407 Theory +1001.1408 Numerical Analysis +1001.1409 Cosmology and Nongalactic Astrophysics +1001.1412 Functional Analysis +1001.1416 Algebraic Geometry +1001.1422 +1001.1427 +1001.1428 Astrophysics of Galaxies +1001.1438 Dynamical Systems +1001.1442 Materials Science +1001.1446 Portfolio Management +1001.1450 General Finance +1001.1451 Networking and Internet Architecture +1001.1452 Theory +1001.1454 Computational Geometry +1001.1456 Accelerator Physics +1001.1468 Information Theory +1001.1470 Data Structures and Algorithms +1001.1477 Instrumentation and Methods for Astrophysics +1001.1478 Information Theory +1001.1480 Theory +1001.1485 General Mathematics +1001.1487 General Mathematics +1001.1491 Geophysics +1001.1494 General Mathematics +1001.1499 General Mathematics +1001.1501 General Physics +1001.1516 Functional Analysis +1001.1517 Differential Geometry +1001.1519 Plasma Physics +1001.1521 High Energy Astrophysical Phenomena +1001.1525 Materials Science +1001.1526 Data Structures and Algorithms +1001.1534 Number Theory +1001.1537 Instrumentation and Methods for Astrophysics +1001.1539 Strongly Correlated Electrons +1001.1544 Analysis of PDEs +1001.1546 Solar and Stellar Astrophysics +1001.1550 +1001.1551 Optics +1001.1558 Statistical Mechanics +1001.1559 Geometric Topology +1001.1560 Probability +1001.1562 Combinatorics +1001.1563 Cosmology and Nongalactic Astrophysics +1001.1566 Cosmology and Nongalactic Astrophysics +1001.1568 Classical Analysis and ODEs +1001.1569 Combinatorics +1001.1572 Solar and Stellar Astrophysics +1001.1573 Number Theory +1001.1574 Mesoscale and Nanoscale Physics +1001.1575 Logic +1001.1579 +1001.1580 +1001.1581 Analysis of PDEs +1001.1582 Fluid Dynamics +1001.1587 Fluid Dynamics +1001.1589 +1001.1593 Computational Complexity +1001.1594 Fluid Dynamics +1001.1599 +1001.1602 Materials Science +1001.1608 Mesoscale and Nanoscale Physics +1001.1609 Statistics Theory +1001.1615 Statistics Theory +1001.1616 Pricing of Securities +1001.1621 Number Theory +1001.1623 Probability +1001.1625 Information Theory +1001.1627 Analysis of PDEs +1001.1632 Classical Analysis and ODEs +1001.1634 Cosmology and Nongalactic Astrophysics +1001.1648 Astrophysics of Galaxies +1001.1650 Mesoscale and Nanoscale Physics +1001.1651 Operator Algebras +1001.1653 Statistics Theory +1001.1660 High Energy Astrophysical Phenomena +1001.1663 Logic +1001.1664 +1001.1667 Statistics Theory +1001.1679 Information Theory +1001.1685 Human-Computer Interaction +1001.1688 General Mathematics +1001.1690 General Mathematics +1001.1692 Chemical Physics +1001.1693 Probability +1001.1694 Commutative Algebra +1001.1702 Rings and Algebras +1001.1703 Classical Analysis and ODEs +1001.1705 Information Theory +1001.1708 Plasma Physics +1001.1710 General Physics +1001.1711 Cryptography and Security +1001.1714 Materials Science +1001.1718 Distributed, Parallel, and Cluster Computing +1001.1719 Algebraic Geometry +1001.1720 Group Theory +1001.1722 +1001.1725 Materials Science +1001.1726 Optics +cond-mat/0208251 Materials Science +cond-mat/0401162 Materials Science +cond-mat/0606187 Superconductivity +cond-mat/0612012 Materials Science +cond-mat/9205003 +cond-mat/9901153 Soft Condensed Matter +hep-th/0612210 Theory +math-ph/0407073 +math/0502382 Algebraic Geometry +math/0602100 Dynamical Systems +math/0607476 Algebraic Geometry +0707.1608 +0708.2614 Analysis of PDEs +0801.4835 Combinatorics +0802.0992 +0804.3014 Functional Analysis +0805.0957 Materials Science +0806.0284 Operator Algebras +0806.2025 Algebraic Geometry +0806.2490 Number Theory +0807.1585 Statistical Mechanics +0809.1848 Probability +0810.0266 +0811.0882 Chaotic Dynamics +0811.3395 Geometric Topology +0811.3854 Algebraic Geometry +0811.4570 +0812.0033 Portfolio Management +0903.0280 Spectral Theory +0903.1911 Solar and Stellar Astrophysics +0904.0676 Rings and Algebras +0904.4114 Materials Science +0905.1805 Superconductivity +0905.4165 Information Theory +0906.0972 Strongly Correlated Electrons +0907.1869 Fluid Dynamics +0907.2939 Theory +0907.5582 +0908.2932 +0908.4226 Soft Condensed Matter +0909.1709 Other Computer Science +0909.1945 Populations and Evolution +0909.2444 Group Theory +0910.0561 Strongly Correlated Electrons +0910.1966 Strongly Correlated Electrons +0910.3958 Operator Algebras +0911.0401 Theory +0911.1751 Physics and Society +0911.3549 Physics and Society +0911.3751 Statistical Mechanics +0911.5677 Strongly Correlated Electrons +0912.0894 Plasma Physics +0912.1119 Theory +0912.1146 Strongly Correlated Electrons +0912.1942 Phenomenology +0912.1980 Theory +0912.2396 Phenomenology +0912.2924 Theory +0912.3151 Phenomenology +0912.3837 Theory +1001.2257 +1001.2954 Phenomenology +1001.3362 Phenomenology +1001.5135 Information Theory +1003.0060 Machine Learning +1003.2925 +1003.2952 Materials Science +1003.3472 Strongly Correlated Electrons +1003.4033 Experiment +1003.4261 Metric Geometry +1003.4262 Solar and Stellar Astrophysics +1003.4270 Information Theory +1003.4278 High Energy Astrophysical Phenomena +1003.4281 Solar and Stellar Astrophysics +1003.4287 Computer Vision and Pattern Recognition +1003.4289 Solar and Stellar Astrophysics +1003.4297 Statistical Mechanics +1003.4298 Analysis of PDEs +1003.4301 Number Theory +1003.4309 Dynamical Systems +1003.4322 Computational Physics +1003.4323 +1003.4326 Logic in Computer Science +1003.4327 Earth and Planetary Astrophysics +1003.4328 Information Theory +1003.4329 +1003.4331 Fluid Dynamics +1003.4334 Metric Geometry +1003.4336 Solar and Stellar Astrophysics +1003.4348 Mesoscale and Nanoscale Physics +1003.4352 Geometric Topology +1003.4355 Information Theory +1003.4366 Data Structures and Algorithms +1003.4369 Logic in Computer Science +1003.4382 General Finance +1003.4390 Mesoscale and Nanoscale Physics +1003.4391 Discrete Mathematics +1003.4394 Computation and Language +1003.4396 Differential Geometry +1003.4399 Instrumentation and Methods for Astrophysics +1003.4402 Theory +1003.4411 Analysis of PDEs +1003.4418 Databases +1003.4421 Number Theory +1003.4422 Combinatorics +1003.4425 K-Theory and Homology +1003.4427 Solar and Stellar Astrophysics +1003.4433 Number Theory +1003.4439 Complex Variables +1003.4440 High Energy Astrophysical Phenomena +1003.4441 Fluid Dynamics +1003.4446 Superconductivity +1003.4452 Mesoscale and Nanoscale Physics +1003.4458 +1003.4463 Dynamical Systems +1003.4466 Applications +1003.4470 Algebraic Geometry +1003.4478 Probability +1003.4484 Probability +1003.4489 Logic +1003.4496 Analysis of PDEs +1003.4503 Analysis of PDEs +1003.4506 Phenomenology +gr-qc/0412049 +quant-ph/0411087 +quant-ph/0502098 +0708.3644 +0802.1508 +0802.3620 Superconductivity +0803.2937 Optics +0803.3350 +0804.2679 +0806.0192 Theory +0808.2348 +0808.2388 General Physics +0808.3060 +0809.2356 Algebraic Geometry +0809.3673 +0809.4951 Phenomenology +0901.2306 +0902.0677 +0903.2806 Cosmology and Nongalactic Astrophysics +0904.1091 High Energy Astrophysical Phenomena +0905.4641 +0907.0108 +0907.3466 History and Philosophy of Physics +0908.0620 +0908.0639 +0909.3358 Superconductivity +0909.4218 Superconductivity +0910.2666 +0910.3383 Logic in Computer Science +0910.5678 Chaotic Dynamics +0911.0384 Logic +0911.2128 Algebraic Geometry +0911.3345 Statistical Mechanics +0911.4775 +0912.0993 +0912.2509 +0912.3552 Theory +0912.3748 +1001.0221 Phenomenology +1001.2066 Materials Science +1001.3593 Computational Geometry +1002.1064 Optics +1002.1602 Representation Theory +1002.1895 Cosmology and Nongalactic Astrophysics +1002.2666 +1003.1091 Phenomenology +1003.1093 +1003.1107 +1003.2129 +1003.2133 History and Philosophy of Physics +1003.2574 Differential Geometry +1004.0212 Theory +1004.0310 Phenomenology +1004.1255 +1004.3500 Theory +1004.5206 +1005.3043 Lattice +1005.3406 Superconductivity +1005.4161 +1005.4637 Chaotic Dynamics +1005.4648 Numerical Analysis +1005.5034 +1005.5380 +1006.1595 +1006.4321 +1006.5705 +1006.5937 Statistical Mechanics +1007.0697 +1007.1748 Classical Physics +1007.2126 +1007.2857 Mesoscale and Nanoscale Physics +1007.2900 Group Theory +1007.3420 Quantum Gases +1007.3966 Lattice +1007.5428 Probability +1008.0324 Theory +1008.1045 +1008.1088 Phenomenology +1008.1726 Biological Physics +1008.3030 +1008.3120 Phenomenology +1008.3543 Phenomenology +1008.3978 Mesoscale and Nanoscale Physics +1008.4170 +1008.4657 Phenomenology +1008.4995 +1009.0399 +1009.0668 Theory +1009.1669 +1009.2286 +1009.2879 Materials Science +1009.3452 +1009.4248 Solar and Stellar Astrophysics +1009.4277 Instrumentation and Detectors +1009.4422 Theory +1009.4454 Combinatorics +1009.4815 Algebraic Geometry +1009.5045 High Energy Astrophysical Phenomena +1009.5452 +1009.6231 Differential Geometry +1010.1464 +1010.1856 +1010.4580 +1010.4850 Databases +1010.5196 +1010.5856 +1011.3321 Computational Physics +1011.4678 Geometric Topology +1011.5527 Solar and Stellar Astrophysics +1012.0011 Information Theory +1012.0014 Algebraic Geometry +1012.0016 Networking and Internet Architecture +1012.0017 Networking and Internet Architecture +1012.0018 Information Theory +1012.0020 Geophysics +1012.0023 Formal Languages and Automata Theory +1012.0025 Numerical Analysis +1012.0027 Networking and Internet Architecture +1012.0037 Networking and Internet Architecture +1012.0044 Group Theory +1012.0047 Other Computer Science +1012.0056 +1012.0061 Solar and Stellar Astrophysics +1012.0066 Algebraic Geometry +1012.0068 Cosmology and Nongalactic Astrophysics +1012.0072 Theory +1012.0084 Artificial Intelligence +1012.0089 Operator Algebras +1012.0091 Quantitative Methods +1012.0092 Analysis of PDEs +1012.0093 Probability +1012.0103 Phenomenology +1012.0107 Differential Geometry +1012.0108 Commutative Algebra +1012.0110 Algebraic Topology +1012.0111 Cosmology and Nongalactic Astrophysics +1012.0114 Differential Geometry +1012.0115 +1012.0118 Probability +1012.0120 Solar and Stellar Astrophysics +1012.0122 Discrete Mathematics +1012.0126 Networking and Internet Architecture +1012.0129 Group Theory +1012.0130 Computational Physics +1012.0134 Computational Physics +1012.0135 High Energy Astrophysical Phenomena +1012.0137 Lattice +1012.0139 Computational Physics +1012.0140 Superconductivity +1012.0148 Analysis of PDEs +1012.0159 Experiment +1012.0160 Digital Libraries +1012.0172 Cosmology and Nongalactic Astrophysics +1012.0173 Phenomenology +1012.0184 High Energy Astrophysical Phenomena +1012.0186 Phenomenology +1012.0192 Lattice +1012.0195 Statistical Mechanics +1012.0200 Lattice +1012.0206 Data Analysis, Statistics and Probability +1012.0207 Number Theory +1012.0208 Complex Variables +1012.0211 General Mathematics +1012.0214 Phenomenology +1012.0217 High Energy Astrophysical Phenomena +1012.0223 Computer Vision and Pattern Recognition +1012.0230 Computational Geometry +1012.0231 Astrophysics of Galaxies +1012.0236 Quantum Gases +1012.0239 Quantum Gases +1012.0242 Solar and Stellar Astrophysics +1012.0247 General Physics +1012.0248 Phenomenology +1012.0251 Strongly Correlated Electrons +1012.0253 Lattice +1012.0255 Data Structures and Algorithms +1012.0257 Analysis of PDEs +1012.0258 Phenomenology +1012.0259 Data Structures and Algorithms +1012.0260 Networking and Internet Architecture +1012.0266 Earth and Planetary Astrophysics +1012.0273 Instrumentation and Methods for Astrophysics +1012.0283 Theory +1012.0284 Discrete Mathematics +1012.0285 Phenomenology +1012.0289 History and Philosophy of Physics +astro-ph/0506150 +astro-ph/0507629 +astro-ph/0609388 +astro-ph/9809164 +cond-mat/0510110 Mesoscale and Nanoscale Physics +cond-mat/0512537 Other Condensed Matter +cond-mat/0610614 Superconductivity +cond-mat/0701052 Superconductivity +hep-ph/9501357 Phenomenology +hep-ph/9602390 Phenomenology +hep-ph/9906465 Phenomenology +hep-th/0102118 Theory +hep-th/9410244 Theory +math-ph/0104010 +physics/0702121 Classical Physics +0705.0622 Mesoscale and Nanoscale Physics +0711.3021 Statistical Mechanics +0806.3371 Statistics Theory +0808.1732 Statistical Mechanics +0809.2568 Physics and Society +0809.2615 Statistical Mechanics +0810.0725 Algebraic Geometry +0810.0729 Algebraic Geometry +0811.3709 Optimization and Control +0903.4610 +0903.4615 Logic in Computer Science +0903.5150 Differential Geometry +0904.2540 Computer Science and Game Theory +0908.3392 Statistics Theory +0908.3563 Mesoscale and Nanoscale Physics +0908.4301 Quantum Algebra +0909.3192 Statistical Mechanics +0909.4058 Group Theory +0909.4803 Number Theory +0910.1215 Superconductivity +0911.4593 Representation Theory +0912.0092 Atomic Physics +0912.2657 Statistical Mechanics +0912.4508 Strongly Correlated Electrons +1001.0748 Materials Science +1001.2349 Theory +1001.2608 Astrophysics of Galaxies +1001.3820 Representation Theory +1002.4826 +1003.2180 Lattice +1003.4578 Representation Theory +1004.1532 Disordered Systems and Neural Networks +1004.3448 Soft Condensed Matter +1004.3468 Theory +1004.3770 Cryptography and Security +1005.0353 Operator Algebras +1005.0520 Superconductivity +1005.0914 Statistical Mechanics +1005.1149 Group Theory +1005.2000 Fluid Dynamics +1005.3694 Disordered Systems and Neural Networks +1005.3712 Disordered Systems and Neural Networks +1005.5157 Atomic Physics +1006.0251 Superconductivity +1006.0525 Number Theory +1006.1559 Strongly Correlated Electrons +1006.2703 Earth and Planetary Astrophysics +1006.3532 Strongly Correlated Electrons +1006.4422 Statistical Mechanics +1006.5434 Materials Science +1007.0063 Dynamical Systems +1007.0853 Mesoscale and Nanoscale Physics +1007.1406 Superconductivity +1007.3391 +1008.4330 High Energy Astrophysical Phenomena +1008.4626 Analysis of PDEs +1008.5175 Astrophysics of Galaxies +1009.0369 Algebraic Geometry +1009.0412 Disordered Systems and Neural Networks +1009.1125 Algebraic Topology +1009.1673 Mesoscale and Nanoscale Physics +1009.2017 Atomic Physics +1009.2041 Artificial Intelligence +1009.2851 Statistical Mechanics +1009.2978 Analysis of PDEs +1009.3242 Logic +1009.3414 Logic +1009.3494 Cosmology and Nongalactic Astrophysics +1009.3980 Data Analysis, Statistics and Probability +1009.4214 Data Structures and Algorithms +1009.5323 Phenomenology +1009.5829 Information Theory +1009.5832 Mesoscale and Nanoscale Physics +1009.5862 General Physics +1009.5995 Statistical Mechanics +1009.5996 High Energy Astrophysical Phenomena +1009.5999 Theory +1009.6014 General Physics +1009.6017 +1009.6019 Classical Analysis and ODEs +1009.6021 Data Analysis, Statistics and Probability +1009.6022 Classical Analysis and ODEs +1009.6027 Instrumentation and Methods for Astrophysics +1009.6032 Theory +1009.6033 Strongly Correlated Electrons +1009.6034 Numerical Analysis +1009.6036 Optimization and Control +1009.6040 Quantum Algebra +1009.6045 Networking and Internet Architecture +1009.6046 Combinatorics +1009.6050 Multiagent Systems +1009.6052 Networking and Internet Architecture +1009.6055 Complex Variables +1009.6057 Networking and Internet Architecture +1009.6058 +1009.6062 Cosmology and Nongalactic Astrophysics +1009.6069 Quantum Algebra +1009.6070 Analysis of PDEs +1009.6073 +1009.6077 +1009.6078 +1009.6088 Analysis of PDEs +1009.6089 Soft Condensed Matter +1009.6093 Classical Physics +1009.6094 Classical Physics +1009.6105 Computational Complexity +1009.6106 Instrumentation and Methods for Astrophysics +1009.6107 Algebraic Geometry +1009.6111 Plasma Physics +1009.6112 Numerical Analysis +1009.6113 Statistical Mechanics +1009.6114 Data Structures and Algorithms +1009.6124 Dynamical Systems +1009.6127 Artificial Intelligence +1009.6132 Hardware Architecture +1009.6133 Experiment +1009.6138 Classical Analysis and ODEs +1009.6139 Number Theory +1009.6152 Spectral Theory +1009.6154 Dynamical Systems +1009.6157 Statistical Finance +1009.6158 Combinatorics +1009.6162 Metric Geometry +1009.6164 Molecular Networks +1009.6166 Probability +1009.6168 Differential Geometry +1009.6171 Logic in Computer Science +1009.6177 Strongly Correlated Electrons +1009.6193 +1009.6197 Information Theory +1009.6199 Phenomenology +1009.6200 Information Theory +1009.6205 Information Theory +1009.6206 Information Theory +1009.6208 Group Theory +1009.6209 Differential Geometry +1009.6210 Materials Science +1009.6211 Mesoscale and Nanoscale Physics +1009.6215 Computational Geometry +1009.6218 Performance +1009.6219 Functional Analysis +1009.6225 Complex Variables +1009.6230 Representation Theory +math/0304105 Dynamical Systems +math/0304106 Geometric Topology +math/0504399 Representation Theory +0706.0058 Representation Theory +0711.1319 Quantum Algebra +0712.1865 Differential Geometry +0803.3354 Analysis of PDEs +0804.1048 K-Theory and Homology +0805.0267 +0807.3737 Superconductivity +0809.2059 Dynamical Systems +0811.0359 Logic in Computer Science +0811.3158 Disordered Systems and Neural Networks +0904.3986 Optimization and Control +0904.4405 +0905.2850 Operator Algebras +0905.4617 Materials Science +0905.4904 Statistical Mechanics +0907.2347 Geophysics +0907.3863 Operator Algebras +0908.2173 Analysis of PDEs +0908.2650 High Energy Astrophysical Phenomena +0908.3335 Geometric Topology +0909.3611 Analysis of PDEs +0909.4033 Computational Physics +0910.0547 Probability +0910.3075 +0910.5760 Mesoscale and Nanoscale Physics +0911.4468 Quantum Gases +0911.5049 Metric Geometry +0912.1734 Materials Science +0912.2809 +0912.3319 Materials Science +0912.5073 Artificial Intelligence +1001.0133 Exactly Solvable and Integrable Systems +1001.2028 Quantum Gases +1001.3184 Group Theory +1001.4017 Superconductivity +1002.0713 Combinatorics +1002.1586 Classical Physics +1002.1885 Theory +1002.2406 Phenomenology +1002.3734 Mesoscale and Nanoscale Physics +1002.4454 Soft Condensed Matter +1002.5037 Astrophysics of Galaxies +1003.0026 Theory +1003.2527 Superconductivity +1003.4619 Strongly Correlated Electrons +1003.4683 Theory +1005.0621 Mesoscale and Nanoscale Physics +1005.2350 History and Philosophy of Physics +1005.4327 Materials Science +1005.4360 Dynamical Systems +1005.4700 Number Theory +1005.5516 Information Retrieval +1006.1037 Experiment +1006.1116 Algebraic Geometry +1006.1374 Classical Analysis and ODEs +1006.1791 Statistical Finance +1006.1812 +1006.1956 Networking and Internet Architecture +1006.1967 High Energy Astrophysical Phenomena +1006.1996 Numerical Analysis +1006.2010 Statistical Finance +1006.2057 General Finance +1006.2079 Cosmology and Nongalactic Astrophysics +1006.2142 Phenomenology +1006.2143 Superconductivity +1006.2145 +1006.2148 +1006.2152 Classical Analysis and ODEs +1006.2154 +1006.2155 Software Engineering +1006.2156 Learning +1006.2167 Classical Physics +1006.2168 Instrumentation and Methods for Astrophysics +1006.2180 Optics +1006.2182 Cosmology and Nongalactic Astrophysics +1006.2185 Probability +1006.2197 Logic +1006.2204 Artificial Intelligence +1006.2205 Other Condensed Matter +1006.2212 Optimization and Control +1006.2215 +1006.2218 Computational Complexity +1006.2242 High Energy Astrophysical Phenomena +1006.2244 Accelerator Physics +1006.2249 Discrete Mathematics +1006.2253 +1006.2256 Analysis of PDEs +1006.2258 Geometric Topology +1006.2259 Complex Variables +1006.2263 Algebraic Topology +1006.2266 High Energy Astrophysical Phenomena +1006.2276 Representation Theory +1006.2286 Spectral Theory +1006.2291 Representation Theory +1006.2292 Analysis of PDEs +1006.2295 General Physics +1006.2298 Rings and Algebras +1006.2310 Spectral Theory +1006.2312 Physics and Society +1006.2318 Numerical Analysis +1006.2320 General Physics +1006.2321 Cosmology and Nongalactic Astrophysics +1006.2326 Cosmology and Nongalactic Astrophysics +1006.2332 Physics and Society +1006.2338 Experiment +1006.2349 Statistical Mechanics +1006.2351 Superconductivity +1006.2352 +1006.2353 Superconductivity +1006.2354 Analysis of PDEs +1006.2356 Cryptography and Security +1006.2360 Dynamical Systems +1006.2368 Computer Vision and Pattern Recognition +cond-mat/9911420 Statistical Mechanics +math/0201166 Differential Geometry +math/0407153 Differential Geometry +math/0511412 Algebraic Topology +math/0602053 Logic +0709.1210 +0804.1428 Representation Theory +0804.1999 Group Theory +0804.2000 K-Theory and Homology +0804.3581 Group Theory +0804.3639 Combinatorics +0805.0723 Rings and Algebras +0809.3308 +0812.1359 Group Theory +0812.2114 Complex Variables +0901.0295 Representation Theory +0901.0763 Information Theory +0901.3297 Probability +0902.0747 Cosmology and Nongalactic Astrophysics +0904.0398 Representation Theory +0904.2828 Theory +0906.0162 Mesoscale and Nanoscale Physics +0906.3948 Superconductivity +0908.2738 +0908.3580 Algebraic Topology +0909.1227 Representation Theory +0909.2781 +0909.4945 Combinatorics +0909.5583 Computational Engineering, Finance, and Science +0910.1170 +0911.0890 Quantum Gases +0911.0987 +0911.1657 Classical Analysis and ODEs +0911.1688 Superconductivity +0911.4735 Statistical Mechanics +0912.1773 Statistical Mechanics +0912.2485 +0912.4362 +1001.1996 Popular Physics +1001.2334 Information Theory +1001.3447 Cosmology and Nongalactic Astrophysics +1001.4523 +1002.4199 Mesoscale and Nanoscale Physics +1002.4899 Other Condensed Matter +1003.0232 Cosmology and Nongalactic Astrophysics +1003.0913 Superconductivity +1003.2010 Probability +1003.3261 Number Theory +1003.5670 Differential Geometry +1004.0303 Disordered Systems and Neural Networks +1004.2510 Mesoscale and Nanoscale Physics +1004.4335 Mesoscale and Nanoscale Physics +1004.4385 Mesoscale and Nanoscale Physics +1004.4407 Probability +1004.4476 Combinatorics +1004.4658 Cosmology and Nongalactic Astrophysics +1005.1112 +1005.1130 Dynamical Systems +1005.1610 +1005.2711 Mesoscale and Nanoscale Physics +1005.3838 Analysis of PDEs +1005.4004 Atomic and Molecular Clusters +1005.4118 Computer Vision and Pattern Recognition +1005.4305 Phenomenology +1005.5283 Probability +1005.5288 Exactly Solvable and Integrable Systems +1006.0188 Mesoscale and Nanoscale Physics +1006.1019 Computer Science and Game Theory +1006.1989 Mesoscale and Nanoscale Physics +1006.2880 Data Structures and Algorithms +1006.3420 Statistical Mechanics +1006.3489 Theory +1006.3566 Materials Science +1006.3965 Functional Analysis +1006.4140 Strongly Correlated Electrons +1007.0175 Plasma Physics +1007.0215 Cosmology and Nongalactic Astrophysics +1007.1876 High Energy Astrophysical Phenomena +1007.1914 Physics and Society +1007.4901 Spectral Theory +1008.0314 Quantum Gases +1008.1898 Materials Science +1008.2381 Number Theory +1008.2440 Formal Languages and Automata Theory +1008.2854 Fluid Dynamics +1008.2980 General Topology +1008.4584 Cosmology and Nongalactic Astrophysics +1008.4886 Statistics Theory +1008.4950 Optics +1008.5160 Strongly Correlated Electrons +1008.5163 Artificial Intelligence +1008.5165 Dynamical Systems +1008.5168 Mesoscale and Nanoscale Physics +1008.5169 +1008.5170 Networking and Internet Architecture +1008.5177 Optics +1008.5182 +1008.5184 Number Theory +1008.5189 Artificial Intelligence +1008.5206 Astrophysics of Galaxies +1008.5207 Number Theory +1008.5211 Machine Learning +1008.5212 Classical Physics +1008.5216 Algebraic Geometry +1008.5218 Numerical Analysis +1008.5219 +1008.5226 Strongly Correlated Electrons +1008.5228 Phenomenology +1008.5234 Superconductivity +1008.5236 Chemical Physics +1008.5238 Functional Analysis +1008.5239 Number Theory +1008.5241 Functional Analysis +1008.5246 Computation +1008.5249 Operator Algebras +1008.5250 Materials Science +1008.5251 Biological Physics +1008.5252 Functional Analysis +1008.5253 +1008.5261 Materials Science +1008.5263 +1008.5266 Instrumentation and Detectors +1008.5270 Complex Variables +1008.5271 Materials Science +1008.5272 Materials Science +1008.5276 Differential Geometry +1008.5277 Phenomenology +1008.5279 +1008.5283 Cosmology and Nongalactic Astrophysics +1008.5287 Computation and Language +1008.5290 History and Overview +1008.5291 Combinatorics +1008.5292 Atomic Physics +1008.5305 Other Condensed Matter +1008.5308 Materials Science +1008.5312 General Physics +1008.5315 Probability +1008.5317 Atomic Physics +1008.5321 Materials Science +1008.5323 Materials Science +1008.5330 +1008.5339 Complex Variables +1008.5340 Computer Science and Game Theory +1008.5346 +1008.5355 Dynamical Systems +1008.5356 Data Structures and Algorithms +1008.5357 Databases +1008.5358 Materials Science +1008.5360 Combinatorics +1008.5361 Combinatorics +1008.5370 Combinatorics +1008.5374 Statistics Theory +1008.5375 Solar and Stellar Astrophysics +1008.5383 Combinatorics +1008.5386 Machine Learning +1008.5389 General Physics +1008.5392 Optics +math-ph/0208006 +math-ph/0608023 +math/0101228 General Mathematics +0704.3650 Combinatorics +0705.4411 +0808.0426 Probability +0811.2798 Other Condensed Matter +0901.3158 Theory +0905.0486 Geometric Topology +0905.0768 Data Structures and Algorithms +0906.2391 Phenomenology +0907.0497 Differential Geometry +0907.2420 Optics +0908.1631 Differential Geometry +0909.1667 Adaptation and Self-Organizing Systems +0910.0948 Classical Analysis and ODEs +0911.4601 Phenomenology +0911.5650 Optimization and Control +0912.0961 Quantum Algebra +1001.5471 Formal Languages and Automata Theory +1002.0861 Statistical Mechanics +1002.2145 Cosmology and Nongalactic Astrophysics +1002.4148 Probability +1003.1614 Mesoscale and Nanoscale Physics +1003.1750 Cosmology and Nongalactic Astrophysics +1004.2832 Biological Physics +1004.2875 Optics +1004.3757 Mesoscale and Nanoscale Physics +1004.3805 Cosmology and Nongalactic Astrophysics +1004.4693 Optics +1005.1096 Experiment +1005.2114 +1005.4050 Earth and Planetary Astrophysics +1005.4108 Soft Condensed Matter +1005.4402 Strongly Correlated Electrons +1005.5373 Optics +1006.3573 Information Theory +1007.0377 Optics +1007.4871 Lattice +1008.0487 Phenomenology +1008.0956 Geometric Topology +1008.2593 Superconductivity +1008.2893 Solar and Stellar Astrophysics +1008.3254 Strongly Correlated Electrons +1008.4443 Geometric Topology +1008.4765 Cosmology and Nongalactic Astrophysics +1008.4805 +1009.1117 Computation and Language +1009.1680 Superconductivity +1009.2388 Phenomenology +1009.2404 General Physics +1009.4429 Analysis of PDEs +1009.4574 Neural and Evolutionary Computing +1009.4582 Learning +1009.4586 Artificial Intelligence +1009.4590 Hardware Architecture +1009.4641 Combinatorics +1009.4702 Cosmology and Nongalactic Astrophysics +1009.4710 Instrumentation and Methods for Astrophysics +1009.4711 Combinatorics +1009.4716 High Energy Astrophysical Phenomena +1009.4717 Phenomenology +1009.4719 Sound +1009.4721 Superconductivity +1009.4734 Atomic and Molecular Clusters +1009.4739 Computer Vision and Pattern Recognition +1009.4742 Astrophysics of Galaxies +1009.4746 +1009.4753 History and Philosophy of Physics +1009.4754 +1009.4755 +1009.4758 +1009.4759 +1009.4761 +1009.4766 Learning +1009.4767 Biological Physics +1009.4768 Analysis of PDEs +1009.4769 Cosmology and Nongalactic Astrophysics +1009.4770 Disordered Systems and Neural Networks +1009.4773 Information Theory +1009.4774 Combinatorics +1009.4777 Differential Geometry +1009.4779 Differential Geometry +1009.4787 Robotics +1009.4801 Biomolecules +1009.4802 Combinatorics +1009.4804 Algebraic Geometry +1009.4809 Mesoscale and Nanoscale Physics +1009.4812 Representation Theory +1009.4813 Complex Variables +1009.4817 K-Theory and Homology +1009.4818 Computational Finance +1009.4821 Functional Analysis +1009.4823 Computer Vision and Pattern Recognition +1009.4825 Networking and Internet Architecture +1009.4827 Algebraic Geometry +1009.4834 Theory +1009.4841 Distributed, Parallel, and Cluster Computing +1009.4847 Distributed, Parallel, and Cluster Computing +1009.4850 Phenomenology +1009.4858 Materials Science +1009.4859 Combinatorics +1009.4862 Probability +1009.4863 Accelerator Physics +1009.4870 Distributed, Parallel, and Cluster Computing +1009.4874 Soft Condensed Matter +1009.4877 Robotics +1009.4880 Data Structures and Algorithms +1009.4883 Algebraic Geometry +1009.4893 Algebraic Topology +1009.4897 Statistical Mechanics +1009.4902 High Energy Astrophysical Phenomena +1009.4909 Superconductivity +1009.4911 Superconductivity +1009.4913 Probability +1009.4922 Complex Variables +1009.4927 Analysis of PDEs +math-ph/0410008 +math-ph/0412097 +math/0304161 Algebraic Topology +math/0701833 Algebraic Topology +math/0702275 Classical Analysis and ODEs +quant-ph/0211014 +0704.0923 Statistics Theory +0704.0927 Number Theory +0704.2127 Algebraic Geometry +0707.0434 Number Theory +0707.2337 Quantum Algebra +0707.3417 Number Theory +0710.5652 Theory +0712.1842 Operator Algebras +0801.2857 Materials Science +0802.1839 Statistical Mechanics +0805.4208 Number Theory +0805.4226 Probability +0806.3472 Representation Theory +0806.3484 Combinatorics +0806.4446 Algebraic Geometry +0807.1288 Soft Condensed Matter +0807.2443 +0808.3874 Other Condensed Matter +0809.0136 Statistical Mechanics +0809.4621 Number Theory +0810.1715 Number Theory +0810.5495 Combinatorics +0811.2989 Probability +0811.3750 Probability +0811.3752 Probability +0903.0783 Mesoscale and Nanoscale Physics +0904.1105 Materials Science +0905.0104 Geometric Topology +0906.5419 +0907.0465 Operator Algebras +0907.1092 Mesoscale and Nanoscale Physics +0907.1617 Quantum Algebra +0907.2355 Soft Condensed Matter +0908.0058 Mesoscale and Nanoscale Physics +0909.0653 Algebraic Geometry +0910.1668 Mesoscale and Nanoscale Physics +0911.0710 Phenomenology +0911.0934 Disordered Systems and Neural Networks +0911.1239 +0911.2871 Number Theory +0912.2589 Mesoscale and Nanoscale Physics +1001.2026 Functional Analysis +1001.2556 Materials Science +1001.3228 Mesoscale and Nanoscale Physics +1001.4265 Algebraic Geometry +1001.4583 Materials Science +1001.4763 +1001.5244 Neural and Evolutionary Computing +1001.5324 Theory +1002.2536 Mesoscale and Nanoscale Physics +1002.3135 +1002.4501 Combinatorics +1002.4875 Earth and Planetary Astrophysics +1003.1541 Quantum Gases +1003.2978 Number Theory +1003.3329 Combinatorics +1004.0207 Cosmology and Nongalactic Astrophysics +1004.0974 Cosmology and Nongalactic Astrophysics +1004.1076 Quantum Gases +1004.1367 Combinatorics +1004.1594 +1004.1970 Materials Science +1004.2114 +1004.3113 Optimization and Control +1004.4679 Statistical Mechanics +1005.4130 Classical Analysis and ODEs +1005.4315 Phenomenology +1006.3181 Superconductivity +1006.5603 Analysis of PDEs +1007.0832 Machine Learning +1007.2593 Trading and Market Microstructure +1008.0399 Cosmology and Nongalactic Astrophysics +1008.1769 Mesoscale and Nanoscale Physics +1008.2502 Superconductivity +1008.2773 Mesoscale and Nanoscale Physics +1008.2991 Cryptography and Security +1008.3628 Numerical Analysis +1008.3796 Soft Condensed Matter +1008.5332 Data Structures and Algorithms +1009.1022 Logic +1009.1997 Combinatorics +1009.2014 Group Theory +1009.2054 Social and Information Networks +1009.2192 +1009.2437 Representation Theory +1009.2466 Analysis of PDEs +1009.2474 Quantum Algebra +1009.2511 Phenomenology +1009.2514 Solar and Stellar Astrophysics +1009.2521 Computational Geometry +1009.2528 Information Theory +1009.2529 +1009.2535 Group Theory +1009.2536 +1009.2538 Commutative Algebra +1009.2540 Complex Variables +1009.2544 Atomic Physics +1009.2548 +1009.2550 Classical Physics +1009.2552 Superconductivity +1009.2555 Phenomenology +1009.2565 Combinatorics +1009.2566 Learning +1009.2568 Group Theory +1009.2570 General Mathematics +1009.2591 Data Structures and Algorithms +1009.2592 Operator Algebras +1009.2593 +1009.2594 Combinatorics +1009.2595 Analysis of PDEs +1009.2597 Earth and Planetary Astrophysics +1009.2601 Classical Analysis and ODEs +1009.2602 Information Theory +1009.2609 Other Condensed Matter +1009.2611 Instrumentation and Methods for Astrophysics +1009.2612 Optimization and Control +1009.2613 General Mathematics +1009.2617 Computer Science and Game Theory +1009.2622 Hardware Architecture +1009.2625 Differential Geometry +1009.2634 History and Philosophy of Physics +1009.2639 Earth and Planetary Astrophysics +1009.2640 Combinatorics +1009.2644 Functional Analysis +1009.2651 Information Theory +1009.2654 +1009.2657 Superconductivity +1009.2662 Mesoscale and Nanoscale Physics +1009.2673 Differential Geometry +1009.2677 Differential Geometry +1009.2678 Phenomenology +1009.2679 +1009.2680 Phenomenology +1009.2695 Differential Geometry +1009.2696 Statistical Finance +1009.2705 Solar and Stellar Astrophysics +1009.2706 Formal Languages and Automata Theory +1009.2712 Differential Geometry +1009.2718 Machine Learning +1009.2720 Phenomenology +1009.2721 Trading and Market Microstructure +1009.2722 Machine Learning +1009.2723 Other Statistics +1009.2726 +1009.2730 Group Theory +1009.2732 Probability +1009.2734 Group Theory +1009.2737 +1009.2739 Instrumentation and Methods for Astrophysics +1009.2745 Differential Geometry +1009.2747 Soft Condensed Matter +1009.2748 Numerical Analysis +math/0304081 General Mathematics +math/0506461 Number Theory +math/0603740 Quantum Algebra +math/0607686 Probability +math/0607817 Quantum Algebra +math/0611649 Combinatorics +math/0702554 Algebraic Geometry +math/0702670 Quantum Algebra +physics/0702142 Instrumentation and Detectors +0704.3918 Theory +0705.2915 Combinatorics +0708.2413 Theory +0710.1866 +0710.3830 Strongly Correlated Electrons +0710.4394 Probability +0711.0115 +0711.0117 +0712.3764 Representation Theory +0712.4133 Rings and Algebras +0801.1328 Symplectic Geometry +0802.0412 +0802.1172 Rings and Algebras +0802.3987 +0803.1100 Soft Condensed Matter +0804.2211 Strongly Correlated Electrons +0806.2133 +0806.3288 +0807.0944 Phenomenology +0807.2948 Experiment +0808.3427 Superconductivity +0808.4039 Disordered Systems and Neural Networks +0809.0168 +0809.0839 Phenomenology +0809.1904 +0809.2441 Phenomenology +0810.0123 Materials Science +0810.1754 +0810.3504 +0810.5070 Experiment +0810.5304 Phenomenology +0810.5401 Phenomenology +0811.0271 Phenomenology +0811.1478 +0811.2640 Phenomenology +0811.2767 +0811.2884 Experiment +0811.2922 +0811.3497 Lattice +0811.3526 +0811.3942 +0811.3995 Phenomenology +0811.4171 +0811.4172 +0811.4356 Phenomenology +0811.4759 Instrumentation and Detectors +0812.0091 +0812.0681 Instrumentation and Detectors +0812.1501 Theory +0812.2738 Algebraic Topology +0812.2853 +0812.3161 Phenomenology +0812.3307 Lattice +0901.0471 Theory +0901.0904 +0901.4574 Cosmology and Nongalactic Astrophysics +0901.4578 Cosmology and Nongalactic Astrophysics +0902.0697 +0902.2847 +0902.4253 Instrumentation and Methods for Astrophysics +0902.4858 Instrumentation and Methods for Astrophysics +0903.0796 Cosmology and Nongalactic Astrophysics +0903.2018 +0903.2034 Phenomenology +0903.3643 Phenomenology +0903.5330 Cosmology and Nongalactic Astrophysics +0903.5404 Instrumentation and Methods for Astrophysics +0903.5514 Superconductivity +0904.0187 +0904.2807 +0904.4045 +0905.2508 +0905.2543 Cosmology and Nongalactic Astrophysics +0905.2589 General Physics +0905.2943 Theory +0905.2992 +0905.3122 Mesoscale and Nanoscale Physics +0905.3612 Theory +0905.4335 Cosmology and Nongalactic Astrophysics +0905.4425 +0905.4570 Artificial Intelligence +0906.1301 +0906.3216 +0907.0372 +0907.0593 Theory +0907.1972 Phenomenology +0907.2145 Statistical Mechanics +0907.3862 Theory +0908.0305 Theory +0908.0537 Solar and Stellar Astrophysics +0908.2074 +0908.3150 Phenomenology +0908.3609 Geometric Topology +0909.0025 Strongly Correlated Electrons +0909.0373 Superconductivity +0909.0629 Phenomenology +0909.1922 +0909.2070 +0909.2237 +0909.3226 Information Theory +0909.4579 Strongly Correlated Electrons +0909.5690 Analysis of PDEs +0910.0112 Data Structures and Algorithms +0910.0683 Logic +0910.0709 +0910.0834 Theory +0910.0873 Optics +0910.1341 +0910.1789 Phenomenology +0910.2339 Mesoscale and Nanoscale Physics +0910.2588 Soft Condensed Matter +0910.2713 +0910.3049 Phenomenology +0910.3216 Lattice +0910.3300 Mesoscale and Nanoscale Physics +0910.3472 Superconductivity +0910.3477 Phenomenology +0910.3496 +0910.3507 +0910.4047 Phenomenology +0910.4575 Mesoscale and Nanoscale Physics +0911.0647 Cosmology and Nongalactic Astrophysics +0911.1600 Materials Science +0911.1674 +0911.1721 Lattice +0911.1857 Phenomenology +0911.1909 Phenomenology +0911.2678 Materials Science +0911.4168 +0912.0492 Differential Geometry +0912.4352 Physics and Society +0912.4383 Atomic and Molecular Clusters +0912.5427 Pricing of Securities +1001.1090 Quantum Gases +1001.3677 Mesoscale and Nanoscale Physics +1001.5076 Data Structures and Algorithms +1001.5374 Phenomenology +1002.1397 +1002.1508 Logic +1002.2515 +1002.2764 Functional Analysis +1002.2766 +1002.2789 Algebraic Geometry +1002.2950 Analysis of PDEs +1002.2954 Logic in Computer Science +1002.2955 Combinatorics +1002.2959 Information Theory +1002.2961 Chaotic Dynamics +1002.2966 Information Theory +1002.2968 Phenomenology +1002.2976 +1002.2978 Logic in Computer Science +1002.2985 History and Philosophy of Physics +1002.2993 Differential Geometry +1002.3001 Complex Variables +1002.3012 High Energy Astrophysical Phenomena +1002.3014 Superconductivity +1002.3017 Functional Analysis +1002.3021 Logic +1002.3023 Artificial Intelligence +1002.3024 Information Theory +1002.3025 Complex Variables +1002.3026 Algebraic Geometry +1002.3028 Materials Science +1002.3036 Experiment +1002.3040 Representation Theory +1002.3043 Strongly Correlated Electrons +1002.3045 Statistics Theory +1002.3052 Experiment +1002.3054 Space Physics +1002.3055 Analysis of PDEs +1002.3057 +1002.3062 Functional Analysis +1002.3069 Optics +1002.3078 Artificial Intelligence +1002.3079 Statistical Mechanics +1002.3082 Algebraic Geometry +1002.3083 Logic in Computer Science +1002.3086 Artificial Intelligence +1002.3090 Dynamical Systems +1002.3092 Classical Physics +1002.3096 Theory +1002.3103 Statistical Mechanics +1002.3105 Cosmology and Nongalactic Astrophysics +1002.3107 Solar and Stellar Astrophysics +1002.3116 Probability +1002.3120 General Topology +1002.3122 General Topology +1002.3123 Functional Analysis +1002.3127 Analysis of PDEs +1002.3134 Geometric Topology +1002.3138 Combinatorics +1002.3148 Strongly Correlated Electrons +1002.3150 Number Theory +astro-ph/0503115 +astro-ph/0703586 +cond-mat/0303124 Superconductivity +cond-mat/0503334 Strongly Correlated Electrons +cond-mat/0505311 Superconductivity +cond-mat/0508605 Superconductivity +cond-mat/0512014 Strongly Correlated Electrons +hep-ex/0111031 Experiment +hep-ex/0204007 Experiment +hep-ex/0311029 Experiment +hep-lat/0001007 Lattice +hep-lat/0004006 Lattice +hep-lat/0008018 Lattice +hep-lat/0111053 Lattice +hep-lat/0205017 Lattice +hep-lat/0208023 Lattice +hep-lat/0209024 Lattice +hep-lat/0212031 Lattice +hep-lat/0302008 Lattice +hep-lat/0302020 Lattice +hep-lat/0308024 Lattice +hep-lat/0309187 Lattice +hep-lat/0311038 Lattice +hep-lat/0406001 Lattice +hep-lat/0406004 Lattice +hep-lat/0501028 Lattice +hep-lat/0502002 Lattice +hep-lat/0504022 Lattice +hep-lat/0507028 Lattice +hep-lat/0510070 Lattice +hep-lat/0510078 Lattice +hep-lat/0511004 Lattice +hep-lat/0511020 Lattice +hep-lat/0511022 Lattice +hep-lat/0601025 Lattice +hep-lat/9810005 Lattice +hep-lat/9912052 Lattice +hep-ph/0002056 Phenomenology +hep-ph/0002081 Phenomenology +hep-ph/0008064 Phenomenology +hep-ph/0009042 Phenomenology +hep-ph/0009312 Phenomenology +hep-ph/0011214 Phenomenology +hep-ph/0101211 Phenomenology +hep-ph/0102133 Phenomenology +hep-ph/0105022 Phenomenology +hep-ph/0106080 Phenomenology +hep-ph/0106160 Phenomenology +hep-ph/0109069 Phenomenology +hep-ph/0112040 Phenomenology +hep-ph/0203023 Phenomenology +hep-ph/0208198 Phenomenology +hep-ph/0210394 Phenomenology +hep-ph/0211003 Phenomenology +hep-ph/0301147 Phenomenology +hep-ph/0303155 Phenomenology +hep-ph/0307201 Phenomenology +hep-ph/0312083 Phenomenology +hep-ph/0411392 Phenomenology +hep-ph/0503276 Phenomenology +hep-ph/0504229 Phenomenology +hep-ph/0507024 Phenomenology +hep-ph/0507029 Phenomenology +hep-ph/0507237 Phenomenology +hep-ph/0601264 Phenomenology +hep-ph/9305322 Phenomenology +hep-ph/9310306 Phenomenology +hep-ph/9604446 Phenomenology +hep-ph/9604448 Phenomenology +hep-ph/9609277 Phenomenology +hep-ph/9708459 Phenomenology +hep-ph/9804410 Phenomenology +hep-ph/9805331 Phenomenology +hep-ph/9805332 Phenomenology +hep-ph/9806249 Phenomenology +hep-ph/9806510 Phenomenology +hep-ph/9810220 Phenomenology +hep-ph/9812264 Phenomenology +hep-ph/9902372 Phenomenology +hep-ph/9907370 Phenomenology +hep-ph/9907433 Phenomenology +hep-ph/9908260 Phenomenology +hep-ph/9909413 Phenomenology +hep-ph/9911527 Phenomenology +hep-th/0110155 Theory +hep-th/9811231 Theory +math/0502144 Algebraic Geometry +math/0510487 Combinatorics +math/0601514 Combinatorics +math/0606760 Probability +math/0607740 Group Theory +math/0608276 Algebraic Geometry +nucl-ex/0102004 +nucl-ex/0105001 +nucl-ex/0604010 +nucl-ex/9811008 +nucl-th/0004008 +nucl-th/0004011 +nucl-th/0005003 +nucl-th/0005041 +nucl-th/0005065 +nucl-th/0007032 +nucl-th/0007058 +nucl-th/0008017 +nucl-th/0012081 +nucl-th/0103042 +nucl-th/0105022 +nucl-th/0110024 +nucl-th/0201084 +nucl-th/0202082 +nucl-th/0203073 +nucl-th/0210067 +nucl-th/0304020 +nucl-th/0308083 +nucl-th/0312097 +nucl-th/0402064 +nucl-th/0404079 +nucl-th/0407057 +nucl-th/0409073 +nucl-th/0411014 +nucl-th/0502079 +nucl-th/0503022 +nucl-th/0504019 +nucl-th/0504020 +nucl-th/0506014 +nucl-th/0508049 +nucl-th/0602014 +nucl-th/0603044 +nucl-th/0605061 +nucl-th/9403015 +nucl-th/9405009 +nucl-th/9507007 +nucl-th/9509034 +nucl-th/9603021 +nucl-th/9605031 +nucl-th/9606020 +nucl-th/9608029 +nucl-th/9701047 +nucl-th/9707005 +nucl-th/9707022 +nucl-th/9709040 +nucl-th/9710069 +nucl-th/9711028 +nucl-th/9712027 +nucl-th/9712036 +nucl-th/9712044 +nucl-th/9804009 +nucl-th/9804015 +nucl-th/9806043 +nucl-th/9807028 +nucl-th/9807074 +nucl-th/9810016 +nucl-th/9810023 +nucl-th/9810070 +nucl-th/9904015 +nucl-th/9904016 +nucl-th/9904055 +nucl-th/9904070 +nucl-th/9907101 +nucl-th/9909041 +nucl-th/9911065 +physics/0401134 Accelerator Physics +physics/0504168 Physics and Society +0704.2244 Portfolio Management +0803.1441 +0808.2756 Mesoscale and Nanoscale Physics +0808.3043 Strongly Correlated Electrons +0902.0193 Classical Analysis and ODEs +0902.0710 Optics +0902.2052 Plasma Physics +0902.2135 Differential Geometry +0903.2101 Symbolic Computation +0903.3060 Data Analysis, Statistics and Probability +0903.4525 Superconductivity +0904.2077 Theory +0906.4754 Methodology +0908.0718 Astrophysics of Galaxies +0908.2108 Superconductivity +0908.2145 Atomic and Molecular Clusters +0908.2348 +0908.3693 Materials Science +0908.4489 Methodology +0910.3904 Phenomenology +0911.1116 Algebraic Topology +0911.1571 +0911.1771 Cosmology and Nongalactic Astrophysics +0911.4204 Combinatorics +1002.0287 Quantum Gases +1002.3430 Operator Algebras +1003.1747 Phenomenology +1003.1909 Strongly Correlated Electrons +1003.2027 Group Theory +1003.4204 Strongly Correlated Electrons +1003.4571 +1003.5106 High Energy Astrophysical Phenomena +1004.0356 Applications +1004.2291 Data Structures and Algorithms +1004.2373 Strongly Correlated Electrons +1004.3678 Mesoscale and Nanoscale Physics +1005.1523 Statistical Mechanics +1005.3452 Geometric Topology +1005.4144 Atomic Physics +1005.4581 Optimization and Control +1005.5242 Logic +1006.0535 Probability +1006.5422 Quantum Algebra +1006.5501 Operator Algebras +1007.3314 Statistical Mechanics +1007.3355 Algebraic Topology +1007.3883 Strongly Correlated Electrons +1007.3904 Strongly Correlated Electrons +1007.5132 Plasma Physics +1007.5503 Number Theory +1008.0182 Strongly Correlated Electrons +1008.0287 Metric Geometry +1008.2272 Soft Condensed Matter +1008.4242 Cosmology and Nongalactic Astrophysics +1008.4306 Popular Physics +1008.4401 Computational Complexity +1008.4592 Exactly Solvable and Integrable Systems +1008.4594 Exactly Solvable and Integrable Systems +1008.4598 Combinatorics +1008.4601 Physics Education +1008.4608 Dynamical Systems +1008.4611 Probability +1008.4613 Analysis of PDEs +1008.4614 Analysis of PDEs +1008.4617 Operator Algebras +1008.4620 Cosmology and Nongalactic Astrophysics +1008.4627 Databases +1008.4629 Optimization and Control +1008.4632 +1008.4635 Strongly Correlated Electrons +1008.4637 Solar and Stellar Astrophysics +1008.4640 Astrophysics of Galaxies +1008.4642 Instrumentation and Methods for Astrophysics +1008.4654 Learning +1008.4659 Algebraic Geometry +1008.4661 Mesoscale and Nanoscale Physics +1008.4663 +1008.4667 Statistical Mechanics +1008.4668 Hardware Architecture +1008.4669 Information Retrieval +1008.4670 Dynamical Systems +1008.4671 Phenomenology +1008.4672 Materials Science +1008.4673 Geometric Topology +1008.4674 Dynamical Systems +1008.4685 Combinatorics +1008.4686 Instrumentation and Methods for Astrophysics +1008.4688 Phenomenology +1008.4693 Instrumentation and Methods for Astrophysics +1008.4695 Soft Condensed Matter +1008.4696 Fluid Dynamics +1008.4698 Soft Condensed Matter +1008.4701 Category Theory +1008.4705 Physics and Society +1008.4707 Combinatorics +1008.4713 Probability +1008.4723 Superconductivity +1008.4725 Strongly Correlated Electrons +1008.4726 Phenomenology +1008.4737 Numerical Analysis +1008.4739 Logic +1008.4740 Combinatorics +1008.4754 Logic in Computer Science +1008.4756 Phenomenology +1008.4758 Soft Condensed Matter +1008.4761 Theory +1008.4762 High Energy Astrophysical Phenomena +1008.4768 Statistical Mechanics +1008.4776 Computer Science and Game Theory +1008.4781 Number Theory +1008.4786 Mesoscale and Nanoscale Physics +gr-qc/0701069 +math/0411493 Dynamical Systems +math/0607771 Dynamical Systems +nlin/0004035 Pattern Formation and Solitons +0704.3829 Strongly Correlated Electrons +0707.2268 Phenomenology +0709.3723 Analysis of PDEs +0709.4586 Differential Geometry +0710.0381 +0710.1602 +0711.1780 Atomic Physics +0711.2711 Pattern Formation and Solitons +0712.0836 Artificial Intelligence +0712.1833 Atmospheric and Oceanic Physics +0801.4324 Phenomenology +0802.0235 +0802.3875 Neural and Evolutionary Computing +0803.1393 Combinatorics +0804.2036 Robotics +0804.3020 Differential Geometry +0804.3501 +0805.4756 +0806.0524 Combinatorics +0806.2998 Representation Theory +0807.0160 +0808.1056 +0810.0349 +0810.0353 +0810.1899 +0810.3002 +0811.1602 +0812.0140 Rings and Algebras +0812.2272 +0812.2357 Quantum Algebra +0812.4508 Differential Geometry +0901.0774 Physics and Society +0901.1305 Materials Science +0901.4466 Robotics +0901.4556 Adaptation and Self-Organizing Systems +0902.0085 Cellular Automata and Lattice Gases +0902.0098 +0902.0587 Pattern Formation and Solitons +0902.1576 General Finance +0902.2203 Cellular Automata and Lattice Gases +0902.2474 Dynamical Systems +0902.3272 Cosmology and Nongalactic Astrophysics +0902.4040 Solar and Stellar Astrophysics +0903.1074 Statistical Mechanics +0904.0365 Applications +0904.1017 Cosmology and Nongalactic Astrophysics +0904.2218 Cosmology and Nongalactic Astrophysics +0904.2587 Information Theory +0904.3164 Functional Analysis +0905.0306 Dynamical Systems +0905.1882 Pricing of Securities +0905.4006 +0906.0786 Combinatorics +0906.1297 +0906.5379 Analysis of PDEs +0907.0126 +0907.0569 +0907.3020 Theory +0907.4736 +0907.5518 Phenomenology +0908.0357 Theory +0908.0853 Formal Languages and Automata Theory +0908.1844 +0908.4362 Computational Physics +0909.0085 +0909.0179 +0909.2533 Complex Variables +0909.2997 High Energy Astrophysical Phenomena +0909.3009 Functional Analysis +0910.1780 +0910.2082 +0910.2704 Cosmology and Nongalactic Astrophysics +0910.3434 Phenomenology +0910.3481 Astrophysics of Galaxies +0910.4057 +0910.4236 +0910.4573 Combinatorics +0911.0191 Classical Physics +0911.2111 Theory +0911.2543 Lattice +0911.2926 +0911.4663 Data Analysis, Statistics and Probability +0911.5508 Information Theory +0912.0007 Phenomenology +0912.0432 +0912.0498 Differential Geometry +0912.0857 General Finance +0912.1182 Combinatorics +0912.1586 Methodology +0912.4460 +0912.4483 Metric Geometry +1001.0301 Atomic Physics +1001.1108 Quantum Algebra +1001.1113 Quantum Algebra +1001.1461 Functional Analysis +1001.1946 Phenomenology +1001.2916 Statistics Theory +1001.3318 Algebraic Geometry +1001.4614 Mesoscale and Nanoscale Physics +1002.0549 Dynamical Systems +1002.0997 Materials Science +1002.1713 Cosmology and Nongalactic Astrophysics +1002.2156 Materials Science +1002.3595 Analysis of PDEs +1002.4817 Risk Management +1002.5027 Differential Geometry +1003.0147 Materials Science +1003.0279 Functional Analysis +1003.0546 Differential Geometry +1003.1992 Statistical Mechanics +1003.4330 Analysis of PDEs +1003.5265 Optics +1003.5354 Phenomenology +1003.5556 +1003.5615 +1003.5765 +1004.0443 +1004.0688 Theory +1004.0792 Phenomenology +1004.1183 Algebraic Geometry +1004.1287 Representation Theory +1005.0066 Phenomenology +1005.1481 Phenomenology +1005.1811 Statistics Theory +1005.2042 Lattice +1005.2241 Lattice +1005.2372 Populations and Evolution +1005.3418 +1005.3709 Algebraic Topology +1005.3724 Phenomenology +1005.3734 High Energy Astrophysical Phenomena +1005.3967 Number Theory +1005.4445 Theory +1006.0567 Mesoscale and Nanoscale Physics +1006.1452 +1006.1466 Algebraic Geometry +1006.1643 Earth and Planetary Astrophysics +1006.2358 Quantum Gases +1006.2618 +1006.3081 +1006.3964 Optics +1006.3995 +1006.4736 Mesoscale and Nanoscale Physics +1006.4907 +1006.5216 Phenomenology +1006.5246 Cosmology and Nongalactic Astrophysics +1006.5614 Phenomenology +1007.0027 Theory +1007.0054 Cellular Automata and Lattice Gases +1007.0329 Materials Science +1007.0401 Theory +1007.0705 +1007.1887 Phenomenology +1007.2047 Theory +1007.2447 Theory +1007.2624 Phenomenology +1007.2797 +1007.2890 Quantum Gases +1007.2905 Optimization and Control +1007.3433 Probability +1007.4215 +1007.4580 Computation +1007.4695 Differential Geometry +1007.4829 Theory +1007.5145 Theory +1007.5254 Theory +1007.5509 Theory +1008.0580 Phenomenology +1008.0702 Theory +1008.0742 Phenomenology +1008.0902 Theory +1008.1190 Theory +1008.1556 Data Structures and Algorithms +1008.2643 +1008.2830 Metric Geometry +1008.2944 Theory +1008.3539 Solar and Stellar Astrophysics +1008.3980 Theory +1008.4030 Mesoscale and Nanoscale Physics +1008.4464 +1008.4577 Materials Science +1009.0418 Chaotic Dynamics +1009.0642 Mesoscale and Nanoscale Physics +1009.0727 Theory +1009.1071 +1009.1250 High Energy Astrophysical Phenomena +1009.2360 Mesoscale and Nanoscale Physics +1009.2905 Mesoscale and Nanoscale Physics +1009.4267 Phenomenology +1009.4359 Functional Analysis +1009.4507 Representation Theory +1009.4728 Probability +1009.4844 Quantum Gases +1009.5171 Phenomenology +1010.0273 Materials Science +1010.1156 Dynamical Systems +1010.1292 Complex Variables +1010.2397 High Energy Astrophysical Phenomena +1010.2422 Geometric Topology +1010.2456 Solar and Stellar Astrophysics +1010.2559 Geometric Topology +1010.3439 Differential Geometry +1010.3537 Neurons and Cognition +1010.5295 +1010.5859 +1010.5962 Phenomenology +1011.0554 Algebraic Topology +1011.0979 Algebraic Geometry +1011.1346 Solar and Stellar Astrophysics +1011.1390 Algebraic Geometry +1011.1418 Exactly Solvable and Integrable Systems +1011.1557 Group Theory +1011.1582 Operator Algebras +1011.1817 Group Theory +1011.2843 Data Structures and Algorithms +1011.2935 Dynamical Systems +1011.3015 Combinatorics +1011.3124 Experiment +1011.3213 Differential Geometry +1011.3532 Cosmology and Nongalactic Astrophysics +1011.3554 Representation Theory +1011.3701 Data Structures and Algorithms +1011.3739 Operator Algebras +1011.3854 Information Theory +1011.3962 General Mathematics +1011.3974 Mesoscale and Nanoscale Physics +1011.4007 Mesoscale and Nanoscale Physics +1011.4086 Algebraic Geometry +1011.4089 Rings and Algebras +1011.4094 Metric Geometry +1011.4119 Differential Geometry +1011.4532 Data Structures and Algorithms +1011.4540 +1011.4544 Algebraic Geometry +1011.4546 Classical Analysis and ODEs +1011.4547 Pricing of Securities +1011.4549 Numerical Analysis +1011.4550 Discrete Mathematics +1011.4556 Theory +1011.4560 General Physics +1011.4564 Chemical Physics +1011.4573 Phenomenology +1011.4575 General Physics +1011.4580 Numerical Analysis +1011.4581 Combinatorics +1011.4582 Number Theory +1011.4586 Cosmology and Nongalactic Astrophysics +1011.4590 Phenomenology +1011.4591 Algebraic Geometry +1011.4593 Astrophysics of Galaxies +1011.4594 Chemical Physics +1011.4602 Information Theory +1011.4603 Optics +1011.4604 Computation +1011.4606 Exactly Solvable and Integrable Systems +1011.4609 Information Theory +1011.4610 Pattern Formation and Solitons +1011.4612 Pattern Formation and Solitons +1011.4613 Functional Analysis +1011.4616 Analysis of PDEs +1011.4621 Materials Science +1011.4623 Computation and Language +1011.4636 Functional Analysis +1011.4637 Functional Analysis +1011.4647 Differential Geometry +1011.4648 Medical Physics +1011.4657 Dynamical Systems +1011.4666 Combinatorics +1011.4671 Combinatorics +1011.4674 Materials Science +1011.4675 Discrete Mathematics +1011.4676 Mesoscale and Nanoscale Physics +1011.4680 Other Condensed Matter +1011.4681 Differential Geometry +1011.4682 Neural and Evolutionary Computing +1011.4685 Algebraic Geometry +1011.4686 Category Theory +1011.4689 Algebraic Geometry +1011.4692 Dynamical Systems +1011.4695 High Energy Astrophysical Phenomena +1011.4698 Algebraic Geometry +1011.4702 +1011.4704 Numerical Analysis +1011.4715 Numerical Analysis +1011.4717 Differential Geometry +1011.4718 Logic in Computer Science +1011.4722 Computation +1011.4723 General Physics +1011.4725 Information Theory +1011.4731 Theory +1011.4732 Computational Finance +1011.4736 Mesoscale and Nanoscale Physics +1011.4740 +1011.4742 Chemical Physics +1011.4744 Computational Complexity +1011.4745 Algebraic Geometry +1011.4747 Lattice +1011.4748 Optimization and Control +1011.4751 Algebraic Geometry +1011.4752 Optimization and Control +1011.4765 Instrumentation and Detectors +1011.4768 Algebraic Geometry +1011.4770 Astrophysics of Galaxies +1011.4774 Analysis of PDEs +1011.4777 Number Theory +1011.4785 Functional Analysis +1011.4788 Cosmology and Nongalactic Astrophysics +1011.4792 Information Theory +1011.4795 Risk Management +1011.4800 Solar and Stellar Astrophysics +1011.4802 Category Theory +1011.4803 +1011.4812 Experiment +1011.4821 Astrophysics of Galaxies +1011.4825 High Energy Astrophysical Phenomena +1011.4831 High Energy Astrophysical Phenomena +1011.4833 Logic in Computer Science +1011.4835 Group Theory +1011.4844 Differential Geometry +1011.4855 Cosmology and Nongalactic Astrophysics +1011.4857 Number Theory +1011.4870 K-Theory and Homology +1011.4880 Classical Analysis and ODEs +1011.4890 Solar and Stellar Astrophysics +1011.4894 Exactly Solvable and Integrable Systems +1011.4895 +1011.4898 +1011.4904 Materials Science +1011.4911 Geophysics +1011.4935 Computational Complexity +astro-ph/0003261 +astro-ph/0004032 +astro-ph/0007238 +astro-ph/0012224 +astro-ph/0101446 +astro-ph/0108461 +astro-ph/0207562 +astro-ph/0402185 +astro-ph/0404133 +astro-ph/0512301 +astro-ph/0607438 +astro-ph/0701597 +astro-ph/9612117 +astro-ph/9803251 +astro-ph/9904370 +cond-mat/0602368 Soft Condensed Matter +cond-mat/0605618 Soft Condensed Matter +cond-mat/0703653 Soft Condensed Matter +cs/0502092 Numerical Analysis +cs/0703128 Hardware Architecture +gr-qc/0607090 +hep-ex/0003025 Experiment +hep-ex/0008066 Experiment +hep-ex/0010039 Experiment +hep-ex/0011100 Experiment +hep-ex/0101004 Experiment +hep-ex/0101033 Experiment +hep-ex/0101054 Experiment +hep-ex/0111037 Experiment +hep-ex/0111041 Experiment +hep-ex/0111097 Experiment +hep-ex/0112013 Experiment +hep-ex/0112026 Experiment +hep-ex/0201026 Experiment +hep-ex/0212059 Experiment +hep-ex/0307020 Experiment +hep-ex/0307045 Experiment +hep-ex/0307053 Experiment +hep-ex/0307060 Experiment +hep-ex/0307065 Experiment +hep-ex/0307067 Experiment +hep-ex/0307076 Experiment +hep-ex/0308062 Experiment +hep-ex/0308072 Experiment +hep-ex/0309001 Experiment +hep-ex/0309005 Experiment +hep-ex/0312024 Experiment +hep-ex/0402018 Experiment +hep-ex/0408014 Experiment +hep-ex/0408150 Experiment +hep-ex/0409041 Experiment +hep-ex/0409050 Experiment +hep-ex/9902004 Experiment +hep-ex/9903063 Experiment +hep-ex/9910067 Experiment +hep-ex/9912012 Experiment +hep-ex/9912038 Experiment +hep-lat/0410051 Lattice +hep-ph/0001253 Phenomenology +hep-ph/0002038 Phenomenology +hep-ph/0002059 Phenomenology +hep-ph/0002161 Phenomenology +hep-ph/0002216 Phenomenology +hep-ph/0003015 Phenomenology +hep-ph/0003321 Phenomenology +hep-ph/0004255 Phenomenology +hep-ph/0007059 Phenomenology +hep-ph/0007085 Phenomenology +hep-ph/0007105 Phenomenology +hep-ph/0007360 Phenomenology +hep-ph/0008021 Phenomenology +hep-ph/0010157 Phenomenology +hep-ph/0010304 Phenomenology +hep-ph/0011184 Phenomenology +hep-ph/0011269 Phenomenology +hep-ph/0012215 Phenomenology +hep-ph/0101330 Phenomenology +hep-ph/0102295 Phenomenology +hep-ph/0110093 Phenomenology +hep-ph/0110255 Phenomenology +hep-ph/0110278 Phenomenology +hep-ph/0111111 Phenomenology +hep-ph/0111376 Phenomenology +hep-ph/0112135 Phenomenology +hep-ph/0112218 Phenomenology +hep-ph/0112257 Phenomenology +hep-ph/0112264 Phenomenology +hep-ph/0201147 Phenomenology +hep-ph/0202062 Phenomenology +hep-ph/0204255 Phenomenology +hep-ph/0205011 Phenomenology +hep-ph/0205100 Phenomenology +hep-ph/0205239 Phenomenology +hep-ph/0207101 Phenomenology +hep-ph/0207327 Phenomenology +hep-ph/0208080 Phenomenology +hep-ph/0208083 Phenomenology +hep-ph/0208144 Phenomenology +hep-ph/0208243 Phenomenology +hep-ph/0209194 Phenomenology +hep-ph/0209293 Phenomenology +hep-ph/0209349 Phenomenology +hep-ph/0209350 Phenomenology +hep-ph/0210323 Phenomenology +hep-ph/0210360 Phenomenology +hep-ph/0211401 Phenomenology +hep-ph/0212029 Phenomenology +hep-ph/0212059 Phenomenology +hep-ph/0212128 Phenomenology +hep-ph/0212195 Phenomenology +hep-ph/0212230 Phenomenology +hep-ph/0301098 Phenomenology +hep-ph/0301255 Phenomenology +hep-ph/0301256 Phenomenology +hep-ph/0302063 Phenomenology +hep-ph/0302229 Phenomenology +hep-ph/0302241 Phenomenology +hep-ph/0302262 Phenomenology +hep-ph/0304003 Phenomenology +hep-ph/0304038 Phenomenology +hep-ph/0304183 Phenomenology +hep-ph/0304237 Phenomenology +hep-ph/0305263 Phenomenology +hep-ph/0305267 Phenomenology +hep-ph/0305315 Phenomenology +hep-ph/0306270 Phenomenology +hep-ph/0306271 Phenomenology +hep-ph/0306273 Phenomenology +hep-ph/0306286 Phenomenology +hep-ph/0306290 Phenomenology +hep-ph/0307032 Phenomenology +hep-ph/0307033 Phenomenology +hep-ph/0307082 Phenomenology +hep-ph/0307107 Phenomenology +hep-ph/0307154 Phenomenology +hep-ph/0307195 Phenomenology +hep-ph/0307202 Phenomenology +hep-ph/0307371 Phenomenology +hep-ph/0308224 Phenomenology +hep-ph/0308269 Phenomenology +hep-ph/0309081 Phenomenology +hep-ph/0310081 Phenomenology +hep-ph/0310265 Phenomenology +hep-ph/0310313 Phenomenology +hep-ph/0310317 Phenomenology +hep-ph/0311040 Phenomenology +hep-ph/0311041 Phenomenology +hep-ph/0311047 Phenomenology +hep-ph/0311104 Phenomenology +hep-ph/0312366 Phenomenology +hep-ph/0402063 Phenomenology +hep-ph/0402290 Phenomenology +hep-ph/0403275 Phenomenology +hep-ph/0404291 Phenomenology +hep-ph/0406151 Phenomenology +hep-ph/0407015 Phenomenology +hep-ph/0408142 Phenomenology +hep-ph/0408339 Phenomenology +hep-ph/0409031 Phenomenology +hep-ph/0409281 Phenomenology +hep-ph/0409356 Phenomenology +hep-ph/0410015 Phenomenology +hep-ph/0410192 Phenomenology +hep-ph/0410309 Phenomenology +hep-ph/0412120 Phenomenology +hep-ph/0502133 Phenomenology +hep-ph/0503174 Phenomenology +hep-ph/0504071 Phenomenology +hep-ph/0504161 Phenomenology +hep-ph/0508083 Phenomenology +hep-ph/9505362 Phenomenology +hep-ph/9511462 Phenomenology +hep-ph/9601222 Phenomenology +hep-ph/9603393 Phenomenology +hep-ph/9604208 Phenomenology +hep-ph/9604225 Phenomenology +hep-ph/9604233 Phenomenology +hep-ph/9604336 Phenomenology +hep-ph/9605344 Phenomenology +hep-ph/9606219 Phenomenology +hep-ph/9607392 Phenomenology +hep-ph/9607469 Phenomenology +hep-ph/9608207 Phenomenology +hep-ph/9608450 Phenomenology +hep-ph/9611364 Phenomenology +hep-ph/9703437 Phenomenology +hep-ph/9704213 Phenomenology +hep-ph/9704277 Phenomenology +hep-ph/9704278 Phenomenology +hep-ph/9704287 Phenomenology +hep-ph/9704423 Phenomenology +hep-ph/9705214 Phenomenology +hep-ph/9706311 Phenomenology +hep-ph/9706520 Phenomenology +hep-ph/9707222 Phenomenology +hep-ph/9708447 Phenomenology +hep-ph/9709243 Phenomenology +hep-ph/9709266 Phenomenology +hep-ph/9709369 Phenomenology +hep-ph/9709441 Phenomenology +hep-ph/9710245 Phenomenology +hep-ph/9711469 Phenomenology +hep-ph/9712224 Phenomenology +hep-ph/9712225 Phenomenology +hep-ph/9712306 Phenomenology +hep-ph/9802315 Phenomenology +hep-ph/9802356 Phenomenology +hep-ph/9802420 Phenomenology +hep-ph/9802433 Phenomenology +hep-ph/9803248 Phenomenology +hep-ph/9804222 Phenomenology +hep-ph/9804319 Phenomenology +hep-ph/9805454 Phenomenology +hep-ph/9808238 Phenomenology +hep-ph/9808493 Phenomenology +hep-ph/9809311 Phenomenology +hep-ph/9810333 Phenomenology +hep-ph/9811488 Phenomenology +hep-ph/9812444 Phenomenology +hep-ph/9812501 Phenomenology +hep-ph/9901418 Phenomenology +hep-ph/9902313 Phenomenology +hep-ph/9902395 Phenomenology +hep-ph/9902482 Phenomenology +hep-ph/9903455 Phenomenology +hep-ph/9903456 Phenomenology +hep-ph/9903535 Phenomenology +hep-ph/9904286 Phenomenology +hep-ph/9904475 Phenomenology +hep-ph/9905397 Phenomenology +hep-ph/9906313 Phenomenology +hep-ph/9907243 Phenomenology +hep-ph/9907363 Phenomenology +hep-ph/9907521 Phenomenology +hep-ph/9908306 Phenomenology +hep-ph/9909564 Phenomenology +hep-ph/9910245 Phenomenology +hep-ph/9911418 Phenomenology +hep-th/0410209 Theory +hep-th/0608138 Theory +hep-th/9807131 Theory +hep-th/9807212 Theory +math-ph/0507038 +math/0703208 Geometric Topology +nucl-ex/0202006 +nucl-th/0412050 +nucl-th/9812036 +q-alg/9709016 Quantum Algebra +quant-ph/9807048 +quant-ph/9909078 +0712.3553 Chaotic Dynamics +0802.1088 Group Theory +0802.1752 Statistical Mechanics +0803.3868 Group Theory +0806.2763 Molecular Networks +0809.1889 Methodology +0809.1894 Methodology +0809.2703 Methodology +0809.3344 Instrumentation and Detectors +0809.5101 +0810.5740 +0811.3051 Fluid Dynamics +0812.3204 Group Theory +0812.3343 Quantum Algebra +0812.4472 Representation Theory +0901.2314 Algebraic Geometry +0902.0782 Networking and Internet Architecture +0903.1880 Methodology +0904.3463 Cosmology and Nongalactic Astrophysics +0905.0143 Phenomenology +0905.1361 Probability +0905.2100 Strongly Correlated Electrons +0906.0690 Information Theory +0906.0698 Representation Theory +0906.3217 Differential Geometry +0906.4305 Differential Geometry +0907.0534 +0907.3977 Networking and Internet Architecture +0908.2479 Mesoscale and Nanoscale Physics +0908.2532 Data Analysis, Statistics and Probability +0909.0044 Differential Geometry +0909.4445 Algebraic Geometry +0909.4754 Differential Geometry +0911.1266 Probability +0911.1317 Mesoscale and Nanoscale Physics +0911.1929 Number Theory +0912.4498 Phenomenology +0912.4849 Mesoscale and Nanoscale Physics +0912.5498 Phenomenology +1001.3338 Quantum Gases +1001.3370 Mesoscale and Nanoscale Physics +1002.0282 Probability +1002.0487 +1002.1904 Phenomenology +1002.2858 Information Retrieval +1002.3108 Quantum Gases +1002.4371 Functional Analysis +1003.2167 Digital Libraries +1003.3933 Plasma Physics +1003.4870 +1003.5158 Rings and Algebras +1003.5159 +1003.5255 Materials Science +1003.5815 Statistical Mechanics +1003.5824 Dynamical Systems +1003.6054 +1004.0730 Disordered Systems and Neural Networks +1004.1200 Other Condensed Matter +1004.1245 Group Theory +1004.2097 Other Condensed Matter +1004.2874 General Topology +1004.2940 Superconductivity +1004.3587 Mesoscale and Nanoscale Physics +1004.5420 Atomic Physics +1005.0557 Theory +1005.0774 Spectral Theory +1005.1238 Group Theory +1005.1445 +1005.2247 Functional Analysis +1005.2411 Cosmology and Nongalactic Astrophysics +1005.3003 Number Theory +1005.3243 Algebraic Geometry +1006.1050 Algebraic Topology +1006.4078 Superconductivity +1007.1649 Functional Analysis +1007.2714 Earth and Planetary Astrophysics +1007.3152 Superconductivity +1007.3180 Quantum Gases +1007.3182 Quantum Gases +1007.3842 +1007.5040 Representation Theory +1008.0053 Networking and Internet Architecture +1008.0879 Differential Geometry +1008.1437 Materials Science +1008.1461 Earth and Planetary Astrophysics +1008.1846 Trading and Market Microstructure +1008.2031 Combinatorics +1008.2170 Discrete Mathematics +1008.2337 +1008.2348 +1008.2387 Chaotic Dynamics +1008.2388 Rings and Algebras +1008.2389 Materials Science +1008.2391 Solar and Stellar Astrophysics +1008.2401 Representation Theory +1008.2407 Phenomenology +1008.2410 Computational Engineering, Finance, and Science +1008.2416 Mesoscale and Nanoscale Physics +1008.2417 +1008.2420 Probability +1008.2426 Probability +1008.2427 Mesoscale and Nanoscale Physics +1008.2429 Mesoscale and Nanoscale Physics +1008.2433 Representation Theory +1008.2436 Differential Geometry +1008.2437 Human-Computer Interaction +1008.2439 Differential Geometry +1008.2443 Analysis of PDEs +1008.2445 Materials Science +1008.2447 Probability +1008.2452 Cryptography and Security +1008.2453 Applications +1008.2455 Statistical Mechanics +1008.2457 Classical Analysis and ODEs +1008.2459 Classical Analysis and ODEs +1008.2462 Representation Theory +1008.2467 Classical Analysis and ODEs +1008.2470 Numerical Analysis +1008.2472 Probability +1008.2473 +1008.2474 Fluid Dynamics +1008.2477 +1008.2479 Number Theory +1008.2488 Algebraic Geometry +1008.2501 Combinatorics +1008.2510 +1008.2514 Artificial Intelligence +1008.2515 Strongly Correlated Electrons +1008.2517 Exactly Solvable and Integrable Systems +1008.2518 Dynamical Systems +1008.2526 Information Theory +1008.2527 Populations and Evolution +1008.2528 Dynamical Systems +1008.2530 Chaotic Dynamics +1008.2533 High Energy Astrophysical Phenomena +1008.2534 Populations and Evolution +1008.2536 Mesoscale and Nanoscale Physics +1008.2538 Chaotic Dynamics +1008.2539 Plasma Physics +1008.2541 Phenomenology +1008.2542 Software Engineering +1008.2551 Instrumentation and Methods for Astrophysics +1008.2552 Optimization and Control +1008.2555 Genomics +1008.2563 Dynamical Systems +1008.2566 Mesoscale and Nanoscale Physics +1008.2570 Phenomenology +1008.2574 Networking and Internet Architecture +1008.2575 Logic +1008.2577 Functional Analysis +1008.2579 Computer Vision and Pattern Recognition +1008.2587 Optics +1008.2588 Discrete Mathematics +1008.2591 Genomics +1008.2599 Optimization and Control +1008.2602 Computational Physics +1008.2605 Combinatorics +1008.2609 Differential Geometry +1008.2610 Combinatorics +1008.2612 Plasma Physics +1008.2613 Information Theory +1008.2618 Mesoscale and Nanoscale Physics +1008.2626 Databases +1008.2629 Mesoscale and Nanoscale Physics +1008.2632 Probability +1008.2633 Analysis of PDEs +1008.2637 Classical Analysis and ODEs +1008.2638 Combinatorics +1008.2647 Software Engineering +1008.2651 Functional Analysis +1008.2655 Functional Analysis +1008.2665 General Mathematics +1008.2668 General Physics +1008.2669 History and Overview +1008.2676 Materials Science +1008.2677 General Physics +1008.2680 Geometric Topology +1008.2682 Probability +1008.2686 +1008.2692 Representation Theory +1008.2701 Classical Analysis and ODEs +1008.2709 Astrophysics of Galaxies +1008.2711 Algebraic Geometry +1008.2712 Analysis of PDEs +1008.2714 Populations and Evolution +1008.2715 Numerical Analysis +1008.2723 Rings and Algebras +1008.2726 Biological Physics +1008.2727 Representation Theory +1008.2728 Rings and Algebras +1008.2729 Hardware Architecture +1008.2733 Algebraic Geometry +1008.2743 Machine Learning +gr-qc/9906012 +math/0506294 Group Theory +math/0507400 Probability +math/0509207 Combinatorics +math/0602125 Group Theory +math/0602156 Group Theory +math/0602672 Combinatorics +math/0603560 Group Theory +math/0603647 Probability +math/0611826 Combinatorics +q-bio/0701046 Subcellular Processes +0704.1472 Strongly Correlated Electrons +0707.2889 Probability +0710.3362 Strongly Correlated Electrons +0710.4442 +0804.4624 Operator Algebras +0805.3914 Probability +0808.0408 Strongly Correlated Electrons +0809.0112 Other Condensed Matter +0809.3258 Representation Theory +0812.1543 Chemical Physics +0903.0070 Probability +0903.1481 Theory +0903.4304 Soft Condensed Matter +0904.0563 +0906.0675 Computation and Language +0907.4181 Chaotic Dynamics +0907.5478 Statistical Mechanics +0908.0740 Strongly Correlated Electrons +0908.3056 Representation Theory +0909.3907 +0910.1585 Distributed, Parallel, and Cluster Computing +0911.2249 Representation Theory +0912.5274 Phenomenology +1001.2004 Analysis of PDEs +1001.2301 Cosmology and Nongalactic Astrophysics +1001.4811 Cosmology and Nongalactic Astrophysics +1001.4822 Differential Geometry +1002.0104 Chaotic Dynamics +1002.1015 +1002.1657 Strongly Correlated Electrons +1002.4417 Chemical Physics +1002.4745 Cosmology and Nongalactic Astrophysics +1002.4792 Representation Theory +1003.1101 Commutative Algebra +1003.1973 +1003.4933 Strongly Correlated Electrons +1004.0776 +1004.2696 Soft Condensed Matter +1004.5314 Strongly Correlated Electrons +1005.0623 Superconductivity +1005.1099 Probability +1005.4280 Phenomenology +1006.0631 Phenomenology +1006.1736 Statistical Mechanics +1006.3228 Superconductivity +1006.3400 Algebraic Geometry +1006.3748 Mesoscale and Nanoscale Physics +1006.3806 Cosmology and Nongalactic Astrophysics +1007.0149 Earth and Planetary Astrophysics +1007.1291 Earth and Planetary Astrophysics +1007.1386 Materials Science +1007.1609 Superconductivity +1007.2605 Mesoscale and Nanoscale Physics +1007.3013 Analysis of PDEs +1008.2285 Probability +1008.2498 Disordered Systems and Neural Networks +1008.4100 Combinatorics +1008.5122 +1009.0296 Strongly Correlated Electrons +1009.1192 Theory +1009.3109 Mesoscale and Nanoscale Physics +1009.3451 Soft Condensed Matter +1009.4108 Strongly Correlated Electrons +1009.5447 Theory +1010.1117 Functional Analysis +1010.1297 Theory +1010.1445 Statistics Theory +1010.1812 Distributed, Parallel, and Cluster Computing +1010.1914 Space Physics +1010.1930 Combinatorics +1010.2027 Solar and Stellar Astrophysics +1010.2049 +1010.2200 Solar and Stellar Astrophysics +1010.2219 Logic +1010.2223 Analysis of PDEs +1010.2230 Logic +1010.2241 Optimization and Control +1010.2243 Logic +1010.2245 Solar and Stellar Astrophysics +1010.2247 Optimization and Control +1010.2249 +1010.2253 Combinatorics +1010.2257 Dynamical Systems +1010.2258 Mesoscale and Nanoscale Physics +1010.2259 Solar and Stellar Astrophysics +1010.2264 Mesoscale and Nanoscale Physics +1010.2272 Algebraic Geometry +1010.2278 Analysis of PDEs +1010.2286 Information Theory +1010.2287 Logic in Computer Science +1010.2288 Combinatorics +1010.2289 Analysis of PDEs +1010.2294 Materials Science +1010.2298 +1010.2306 Optimization and Control +1010.2307 Probability +1010.2314 Methodology +1010.2318 Applications +1010.2320 Functional Analysis +1010.2326 Other Statistics +1010.2327 Differential Geometry +1010.2332 Mesoscale and Nanoscale Physics +1010.2333 Probability +1010.2335 +1010.2336 High Energy Astrophysical Phenomena +1010.2337 Software Engineering +1010.2339 Mesoscale and Nanoscale Physics +1010.2345 Digital Libraries +1010.2356 Probability +1010.2358 Data Structures and Algorithms +1010.2368 Cryptography and Security +1010.2371 Data Structures and Algorithms +1010.2378 +1010.2380 Group Theory +1010.2381 Materials Science +1010.2383 Superconductivity +1010.2384 Computation and Language +1010.2386 Algebraic Geometry +1010.2387 +1010.2388 Analysis of PDEs +1010.2393 Experiment +1010.2395 High Energy Astrophysical Phenomena +1010.2396 Logic +1010.2401 General Topology +1010.2407 Differential Geometry +1010.2410 General Physics +1010.2412 Numerical Analysis +1010.2416 General Topology +1010.2419 Rings and Algebras +1010.2423 Rings and Algebras +1010.2424 Theory +1010.2425 General Physics +1010.2426 +1010.2428 General Physics +1010.2432 Multimedia +1010.2435 +1010.2436 Information Theory +1010.2437 Information Theory +1010.2446 Metric Geometry +1010.2447 Cryptography and Security +1010.2448 Experiment +1010.2464 Combinatorics +1010.2465 Digital Libraries +1010.2467 Combinatorics +1010.2468 General Mathematics +1010.2469 General Mathematics +1010.2474 General Topology +1010.2475 Fluid Dynamics +1010.2487 General Physics +cond-mat/0309257 Statistical Mechanics +gr-qc/0501073 +0704.2702 Mesoscale and Nanoscale Physics +0710.4579 Differential Geometry +0803.0112 Differential Geometry +0803.3490 Learning +0806.0185 Physics and Society +0806.3424 Analysis of PDEs +0808.3955 Materials Science +0809.1014 Representation Theory +0809.2357 Strongly Correlated Electrons +0811.1729 Statistics Theory +0812.2431 Theory +0812.4765 Analysis of PDEs +0901.0575 +0901.0842 Phenomenology +0901.0915 Astrophysics of Galaxies +0901.1373 Phenomenology +0901.1588 +0901.1949 Phenomenology +0901.1972 Phenomenology +0901.2103 Lattice +0901.2316 +0901.2371 Experiment +0901.2436 Experiment +0901.2505 Phenomenology +0901.2720 Experiment +0901.3057 Disordered Systems and Neural Networks +0901.3249 +0901.3745 +0902.0470 Phenomenology +0902.0563 Experiment +0902.0581 +0902.1377 +0902.1677 Experiment +0902.2488 +0902.2585 +0902.2672 +0902.2749 Phenomenology +0902.3231 +0902.3431 Phenomenology +0903.1474 +0903.1941 Phenomenology +0903.4024 Probability +0903.4285 Phenomenology +0904.1162 Number Theory +0904.1419 Phenomenology +0904.1522 Disordered Systems and Neural Networks +0904.3885 Theory +0905.3165 +0905.4607 Phenomenology +0905.4765 Plasma Physics +0906.0620 Quantum Algebra +0906.1181 Cosmology and Nongalactic Astrophysics +0906.1269 Strongly Correlated Electrons +0906.2042 +0906.2129 Numerical Analysis +0906.4069 Cosmology and Nongalactic Astrophysics +0906.4215 Phenomenology +0906.4817 Cosmology and Nongalactic Astrophysics +0907.1316 Probability +0907.4192 Cosmology and Nongalactic Astrophysics +0908.0977 Mesoscale and Nanoscale Physics +0908.2401 +0909.0156 Soft Condensed Matter +0909.0415 Strongly Correlated Electrons +0909.0779 Strongly Correlated Electrons +0909.1257 Cryptography and Security +0909.3142 Strongly Correlated Electrons +0909.4840 Group Theory +0910.0762 +0910.1162 Quantum Gases +0910.1416 Other Computer Science +0910.1437 +0910.1582 Biological Physics +0910.1705 Mesoscale and Nanoscale Physics +0910.3716 Theory +0910.3933 Theory +0910.4224 Computational Complexity +0911.0366 +0911.0471 +0911.1628 Superconductivity +0911.2647 Strongly Correlated Electrons +0911.2959 Superconductivity +0911.4490 Statistical Mechanics +0911.4559 Mesoscale and Nanoscale Physics +0912.1507 Strongly Correlated Electrons +0912.1937 Mesoscale and Nanoscale Physics +0912.2176 Classical Analysis and ODEs +0912.2767 +0912.2875 Disordered Systems and Neural Networks +0912.4846 +0912.4861 Disordered Systems and Neural Networks +1001.1276 Databases +1001.2021 Strongly Correlated Electrons +1001.2541 Analysis of PDEs +1001.2682 Materials Science +1001.2713 Superconductivity +1001.2742 Phenomenology +1001.3239 Mesoscale and Nanoscale Physics +1001.3626 Experiment +1001.3940 Materials Science +1001.4108 Distributed, Parallel, and Cluster Computing +1001.5409 Materials Science +1002.0681 Cosmology and Nongalactic Astrophysics +1002.1113 Geophysics +1002.1427 Chemical Physics +1002.2684 Computation +1002.2922 Complex Variables +1002.2936 Number Theory +1002.3311 Algebraic Geometry +1002.3661 +1002.4096 Phenomenology +1002.4404 Differential Geometry +1002.4413 Cosmology and Nongalactic Astrophysics +1002.4419 General Topology +1002.4429 Geometric Topology +1002.4430 Number Theory +1002.4431 Theory +1002.4433 General Mathematics +1002.4436 +1002.4438 Genomics +1002.4440 Soft Condensed Matter +1002.4445 Combinatorics +1002.4451 Metric Geometry +1002.4462 Representation Theory +1002.4463 Commutative Algebra +1002.4464 Distributed, Parallel, and Cluster Computing +1002.4465 Commutative Algebra +1002.4466 Commutative Algebra +1002.4467 Algebraic Geometry +1002.4468 Combinatorics +1002.4472 Instrumentation and Methods for Astrophysics +1002.4473 Information Theory +1002.4480 High Energy Astrophysical Phenomena +1002.4482 Distributed, Parallel, and Cluster Computing +1002.4486 Statistics Theory +1002.4487 Discrete Mathematics +1002.4489 Optimization and Control +1002.4491 General Physics +1002.4494 Statistics Theory +1002.4496 Statistics Theory +1002.4500 Geometric Topology +1002.4504 Combinatorics +1002.4505 Atomic Physics +1002.4507 +1002.4508 General Topology +1002.4509 Statistics Theory +1002.4510 Information Theory +1002.4511 Functional Analysis +1002.4515 Statistics Theory +1002.4522 Artificial Intelligence +1002.4526 Data Analysis, Statistics and Probability +1002.4528 Cosmology and Nongalactic Astrophysics +1002.4530 Cryptography and Security +1002.4533 Statistics Theory +1002.4534 Numerical Analysis +1002.4535 Logic in Computer Science +1002.4537 Algebraic Geometry +1002.4541 Mesoscale and Nanoscale Physics +1002.4545 Statistics Theory +1002.4546 Probability +1002.4547 Statistics Theory +1002.4554 Statistics Theory +1002.4558 Complex Variables +1002.4561 Distributed, Parallel, and Cluster Computing +1002.4570 Probability +1002.4579 Populations and Evolution +1002.4581 History and Overview +1002.4587 Information Theory +1002.4590 +1002.4591 Probability +1002.4596 +1002.4599 Molecular Networks +1002.4605 Cosmology and Nongalactic Astrophysics +1002.4609 Exactly Solvable and Integrable Systems +1002.4614 Dynamical Systems +chao-dyn/9807015 Chaotic Dynamics +cond-mat/0210424 Strongly Correlated Electrons +cond-mat/9611235 Disordered Systems and Neural Networks +cs/0611010 Information Theory +hep-ex/0308031 Experiment +hep-ph/0006114 Phenomenology +hep-ph/0604052 Phenomenology +hep-th/0506124 Theory +math/0512285 Algebraic Geometry +0711.1943 Spectral Theory +0802.2792 Spectral Theory +0804.0358 Operator Algebras +0805.1612 Classical Analysis and ODEs +0805.1614 Classical Analysis and ODEs +0805.1618 Classical Analysis and ODEs +0807.3753 Quantum Algebra +0902.2099 Combinatorics +0902.3825 +0907.2487 Functional Analysis +0907.2709 High Energy Astrophysical Phenomena +0908.1390 Logic in Computer Science +0908.3281 Algebraic Geometry +0908.3774 Symplectic Geometry +0908.3779 Phenomenology +0909.1842 Theory +0909.5594 Representation Theory +0910.5549 Physics and Society +0911.1341 Group Theory +0912.0241 +0912.0451 Symplectic Geometry +0912.0728 Superconductivity +0912.4551 Category Theory +1001.2471 Probability +1001.4269 Analysis of PDEs +1001.4597 Information Retrieval +1003.0859 +1003.1609 +1003.4774 +1004.2280 Neural and Evolutionary Computing +1004.3479 Probability +1004.3818 +1004.3942 Materials Science +1004.5261 +1005.0532 Optics +1005.1258 +1005.4940 Functional Analysis +1005.5733 Adaptation and Self-Organizing Systems +1006.0901 Mesoscale and Nanoscale Physics +1006.1462 Atmospheric and Oceanic Physics +1006.1510 Disordered Systems and Neural Networks +1006.1976 Mesoscale and Nanoscale Physics +1006.5598 Materials Science +1006.5877 Distributed, Parallel, and Cluster Computing +1007.0384 Other Condensed Matter +1007.1171 Mesoscale and Nanoscale Physics +1007.4001 Theory +1008.1449 Cosmology and Nongalactic Astrophysics +1008.2247 Computational Complexity +1008.3922 Strongly Correlated Electrons +1008.5307 Theory +1008.5343 Soft Condensed Matter +1009.3213 Number Theory +1009.3575 Experiment +1009.3815 Phenomenology +1009.4465 Mesoscale and Nanoscale Physics +1009.4467 Materials Science +1009.4468 Solar and Stellar Astrophysics +1009.4469 Physics Education +1009.4471 Combinatorics +1009.4472 +1009.4474 Molecular Networks +1009.4477 Solar and Stellar Astrophysics +1009.4478 Molecular Networks +1009.4481 Probability +1009.4483 Instrumentation and Methods for Astrophysics +1009.4485 Solar and Stellar Astrophysics +1009.4487 +1009.4490 Biological Physics +1009.4491 +1009.4495 Neural and Evolutionary Computing +1009.4499 Networking and Internet Architecture +1009.4500 Soft Condensed Matter +1009.4501 Analysis of PDEs +1009.4503 Information Theory +1009.4505 Cosmology and Nongalactic Astrophysics +1009.4506 Rings and Algebras +1009.4513 Cosmology and Nongalactic Astrophysics +1009.4519 General Topology +1009.4524 Networking and Internet Architecture +1009.4525 Earth and Planetary Astrophysics +1009.4526 Quantum Algebra +1009.4527 Solar and Stellar Astrophysics +1009.4528 Number Theory +1009.4529 Data Structures and Algorithms +1009.4535 Combinatorics +1009.4538 Analysis of PDEs +1009.4542 Phenomenology +1009.4544 +1009.4547 Mesoscale and Nanoscale Physics +1009.4552 Representation Theory +1009.4554 Algebraic Geometry +1009.4556 Robotics +1009.4557 Materials Science +1009.4558 General Physics +1009.4563 Networking and Internet Architecture +1009.4569 Information Theory +1009.4571 Analysis of PDEs +1009.4576 Phenomenology +1009.4581 Computer Vision and Pattern Recognition +1009.4583 Instrumentation and Methods for Astrophysics +1009.4585 +1009.4587 Pricing of Securities +1009.4591 Analysis of PDEs +1009.4595 Information Theory +1009.4601 Logic in Computer Science +1009.4602 Graphics +1009.4607 Solar and Stellar Astrophysics +1009.4608 K-Theory and Homology +1009.4613 Analysis of PDEs +1009.4615 Materials Science +1009.4617 Plasma Physics +1009.4621 Number Theory +1009.4626 Combinatorics +1009.4630 Number Theory +1009.4635 Phenomenology +1009.4638 Information Theory +1009.4642 Distributed, Parallel, and Cluster Computing +1009.4658 Soft Condensed Matter +1009.4659 Quantum Algebra +1009.4661 Superconductivity +1009.4664 Algebraic Geometry +1009.4672 Networking and Internet Architecture +1009.4675 +1009.4682 Strongly Correlated Electrons +1009.4683 Computational Engineering, Finance, and Science +1009.4684 Classical Analysis and ODEs +1009.4685 Analysis of PDEs +1009.4691 Dynamical Systems +1009.4694 Analysis of PDEs +cond-mat/0311293 +math-ph/0506038 +math-ph/0612070 +math/0102005 Rings and Algebras +math/0504240 Classical Analysis and ODEs +math/0601044 Classical Analysis and ODEs +0802.3792 Symplectic Geometry +0803.3488 Mesoscale and Nanoscale Physics +0902.2206 Artificial Intelligence +0904.4299 Theory +0906.3862 Materials Science +0907.2135 Methodology +0910.4517 +0911.1224 Dynamical Systems +0912.0349 High Energy Astrophysical Phenomena +0912.4012 Probability +1001.4127 Cosmology and Nongalactic Astrophysics +1002.4766 Physics and Society +hep-ph/0512168 Phenomenology +physics/0609216 General Physics +0704.3720 Classical Analysis and ODEs +0803.1370 General Physics +0805.1292 Computational Physics +0807.3877 Commutative Algebra +0810.0705 Superconductivity +0810.2938 Mesoscale and Nanoscale Physics +0812.3013 +0901.4102 Mesoscale and Nanoscale Physics +0903.2774 Information Theory +0903.3187 +0903.3441 +0903.4109 +0904.3278 Differential Geometry +0904.3612 Artificial Intelligence +0905.2531 Functional Analysis +0906.0640 Exactly Solvable and Integrable Systems +0906.4191 +0906.5200 Algebraic Geometry +0907.3836 Materials Science +0909.0925 Populations and Evolution +0909.3123 Computer Vision and Pattern Recognition +0909.4056 Quantum Gases +0910.0032 Earth and Planetary Astrophysics +0910.1011 Statistical Mechanics +0910.4074 +0910.4670 +0911.0974 Algebraic Geometry +0911.1444 Mesoscale and Nanoscale Physics +0911.1767 Computer Science and Game Theory +0911.2651 Data Analysis, Statistics and Probability +0911.4886 Mesoscale and Nanoscale Physics +0911.5448 Optics +0912.4763 Other Condensed Matter +1001.0944 Atomic Physics +1001.2030 Complex Variables +1002.0578 Quantum Gases +1002.2107 Cosmology and Nongalactic Astrophysics +1003.1701 Commutative Algebra +1003.2054 +1003.5358 Biological Physics +1004.0429 Probability +1004.1237 Cryptography and Security +1004.1585 Biological Physics +1004.2196 Mesoscale and Nanoscale Physics +1004.3952 Cell Behavior +1004.4604 Biological Physics +1005.0855 Information Theory +1005.0909 Numerical Analysis +1005.1079 Other Condensed Matter +1005.1083 Algebraic Geometry +1005.1094 Analysis of PDEs +1005.1100 Cosmology and Nongalactic Astrophysics +1005.1103 Mesoscale and Nanoscale Physics +1005.1104 Number Theory +1005.1105 Cosmology and Nongalactic Astrophysics +1005.1109 Biological Physics +1005.1115 Materials Science +1005.1118 Mesoscale and Nanoscale Physics +1005.1119 +1005.1126 +1005.1135 Combinatorics +1005.1139 Superconductivity +1005.1145 Combinatorics +1005.1148 Astrophysics of Galaxies +1005.1159 Biomolecules +1005.1166 Complex Variables +1005.1167 Classical Analysis and ODEs +1005.1189 +1005.1190 +1005.1192 Experiment +1005.1204 High Energy Astrophysical Phenomena +1005.1206 Data Structures and Algorithms +1005.1209 Lattice +1005.1226 +1005.1227 +1005.1229 Phenomenology +1005.1231 Probability +1005.1240 Number Theory +1005.1247 +1005.1250 Algebraic Geometry +1005.1252 Numerical Analysis +1005.1256 Commutative Algebra +1005.1272 Algebraic Geometry +1005.1275 Representation Theory +cs/0501024 Logic in Computer Science +cs/0508069 Logic in Computer Science +gr-qc/0505148 +math/0204159 Group Theory +math/0402332 Differential Geometry +math/0405369 Differential Geometry +math/0501487 Geometric Topology +math/0508550 Geometric Topology +math/0605623 Statistics Theory +math/0606243 Statistics Theory +math/0701640 Functional Analysis +math/0703498 Quantum Algebra +physics/0509182 Plasma Physics +quant-ph/0410141 +0707.0137 Logic +0707.1096 General Physics +0707.3377 +0707.3378 +0711.4187 Symplectic Geometry +0801.0876 General Physics +0803.0008 Representation Theory +0803.1270 Dynamical Systems +0803.2028 Phenomenology +0803.4279 Operator Algebras +0803.4280 Operator Algebras +0804.3548 Geometric Topology +0805.0040 +0805.1584 Functional Analysis +0805.4430 Algebraic Geometry +0805.4432 Algebraic Geometry +0807.3336 +0807.3357 Algebraic Topology +0807.4201 Phenomenology +0808.0509 Discrete Mathematics +0809.2918 Representation Theory +0810.2081 +0810.2082 Phenomenology +0810.2454 Phenomenology +0810.2969 +0811.0227 Dynamical Systems +0812.2151 +0812.3794 Phenomenology +0812.4071 +0902.4818 +0903.0336 +0903.0669 +0903.3412 Cosmology and Nongalactic Astrophysics +0904.0859 Data Structures and Algorithms +0904.1376 Phenomenology +0904.1439 General Literature +0904.1671 Phenomenology +0905.0523 +0905.2230 Atomic Physics +0906.0440 Group Theory +0906.1705 Theory +0907.1148 Optics +0907.4805 +0908.2458 Combinatorics +0908.2652 Strongly Correlated Electrons +0909.4319 +0909.4387 Fluid Dynamics +0910.3106 Mesoscale and Nanoscale Physics +0910.4589 Phenomenology +0910.4595 Lattice +0910.4630 Theory +0911.1951 Phenomenology +0911.3117 Portfolio Management +0911.3788 Functional Analysis +0911.4748 +0912.0310 Phenomenology +0912.2423 Statistics Theory +1001.0656 Trading and Market Microstructure +1001.1024 Statistical Mechanics +1001.1088 +1001.1924 Solar and Stellar Astrophysics +1001.2035 Phenomenology +1001.2358 General Physics +1001.2979 +1001.3062 Combinatorics +1001.4417 Chaotic Dynamics +1001.4656 Methodology +1002.0145 Computational Complexity +1002.0768 Pattern Formation and Solitons +1002.0787 Pattern Formation and Solitons +1002.0989 Exactly Solvable and Integrable Systems +1002.1312 Statistics Theory +1002.1313 Information Theory +1002.1314 Mesoscale and Nanoscale Physics +1002.1318 +1002.1324 Representation Theory +1002.1329 Differential Geometry +1002.1332 Physics and Society +1002.1333 Strongly Correlated Electrons +1002.1335 Other Computer Science +1002.1338 +1002.1344 +1002.1347 Information Theory +1002.1357 Analysis of PDEs +1002.1362 Theory +1002.1363 Computer Science and Game Theory +1002.1370 General Physics +1002.1372 Category Theory +1002.1378 General Physics +1002.1383 Number Theory +1002.1384 Probability +1002.1385 Rings and Algebras +1002.1386 Astrophysics of Galaxies +1002.1387 Numerical Analysis +1002.1392 +1002.1395 +1002.1396 Numerical Analysis +1002.1398 Mesoscale and Nanoscale Physics +1002.1403 General Physics +1002.1404 Mesoscale and Nanoscale Physics +1002.1408 Programming Languages +1002.1410 +1002.1411 Cell Behavior +1002.1415 Instrumentation and Detectors +1002.1422 Programming Languages +1002.1424 Populations and Evolution +1002.1430 Superconductivity +1002.1432 Classical Analysis and ODEs +1002.1436 Information Theory +1002.1437 Experiment +1002.1445 Cosmology and Nongalactic Astrophysics +1002.1447 Information Theory +1002.1449 Algebraic Topology +1002.1451 Probability +1002.1455 Logic +1002.1457 Materials Science +1002.1458 Combinatorics +1002.1460 General Topology +1002.1462 Theory +1002.1471 +1002.1480 Artificial Intelligence +1002.1482 Solar and Stellar Astrophysics +1002.1485 Dynamical Systems +1002.1486 Cosmology and Nongalactic Astrophysics +1002.1487 +1002.1489 +1002.1492 Combinatorics +1002.1493 Statistics Theory +1002.1496 Computational Complexity +1002.1498 Functional Analysis +1002.1505 Instrumentation and Methods for Astrophysics +1002.1520 Operator Algebras +1002.1523 History and Overview +1002.1529 Superconductivity +1002.1537 Statistics Theory +1002.1538 Statistics Theory +1002.1540 Probability +1002.1548 Geophysics +1002.1549 Programming Languages +1002.1558 Cell Behavior +1002.1566 +1002.1568 +1002.1569 Other Quantitative Biology +1002.1570 Earth and Planetary Astrophysics +1002.1571 Optics +1002.1575 Cosmology and Nongalactic Astrophysics +1002.1577 Phenomenology +1002.1584 Information Theory +1002.1588 Optics +1002.1589 Phenomenology +1002.1594 Quantum Algebra +1002.1599 General Topology +1002.1604 Probability +1002.1607 Strongly Correlated Electrons +1002.1615 General Physics +1002.1616 Number Theory +1002.1617 Superconductivity +1002.1622 Instrumentation and Detectors +1002.1630 General Physics +1002.1631 Analysis of PDEs +1002.1632 Atmospheric and Oceanic Physics +1002.1637 Materials Science +1002.1642 Phenomenology +1002.1644 Optics +1002.1649 Theory +1002.1654 Experiment +1002.1660 Symplectic Geometry +1002.1677 Materials Science +1002.1678 Cryptography and Security +1002.1680 Mesoscale and Nanoscale Physics +1002.1681 Cryptography and Security +1002.1682 General Mathematics +1002.1683 Other Computer Science +1002.1687 Networking and Internet Architecture +1002.1689 Networking and Internet Architecture +1002.1691 Networking and Internet Architecture +1002.1692 Software Engineering +1002.1698 +1002.1699 Materials Science +1002.1704 Solar and Stellar Astrophysics +cond-mat/0512688 Strongly Correlated Electrons +cond-mat/0606653 Strongly Correlated Electrons +hep-ph/9506467 Phenomenology +hep-ph/9705281 Phenomenology +hep-th/9607213 Theory +math/0402035 Geometric Topology +math/0509335 Geometric Topology +math/0510534 Geometric Topology +math/0605176 Quantum Algebra +math/0607116 Geometric Topology +quant-ph/0606029 +0704.2106 Category Theory +0704.2998 General Physics +0706.2675 Optics +0707.3360 Differential Geometry +0709.3745 Spectral Theory +0710.2719 Differential Geometry +0804.0059 Symplectic Geometry +0807.4875 Differential Geometry +0812.1804 Probability +0902.2980 Mesoscale and Nanoscale Physics +0902.4794 Optics +0904.3531 Statistical Mechanics +0905.1080 Solar and Stellar Astrophysics +0906.0644 General Physics +0906.0646 General Physics +0906.4533 +0907.1130 +0907.1551 Soft Condensed Matter +0907.4126 General Topology +0909.1392 Cryptography and Security +0909.2165 Chaotic Dynamics +0910.0114 Algebraic Geometry +0910.0284 Information Theory +0910.0662 Algebraic Geometry +0910.3187 Algebraic Topology +0911.4484 Cosmology and Nongalactic Astrophysics +0911.5443 Disordered Systems and Neural Networks +0912.0633 Superconductivity +0912.3230 +0912.5093 Operator Algebras +1001.4478 +1001.4789 Cosmology and Nongalactic Astrophysics +1002.3646 +1002.4471 Superconductivity +1002.4890 Biological Physics +1003.1116 Group Theory +1003.3584 Other Condensed Matter +1003.4408 Optics +1003.5970 Statistical Mechanics +1004.0150 Theory +1004.0492 +1004.1724 Combinatorics +1004.3053 Lattice +1004.5557 Superconductivity +1005.3845 Differential Geometry +1005.4058 Cosmology and Nongalactic Astrophysics +1005.4736 Group Theory +1006.0770 Combinatorics +1006.3515 Group Theory +1006.5249 Phenomenology +1007.0313 Computer Vision and Pattern Recognition +1007.0857 Superconductivity +1007.1794 +1007.2345 Biological Physics +1007.2710 Phenomenology +1007.2846 Cosmology and Nongalactic Astrophysics +1007.3053 Experiment +1007.3117 Group Theory +1007.3249 Programming Languages +1007.3261 Solar and Stellar Astrophysics +1007.3268 General Physics +1007.3275 Databases +1007.3282 Representation Theory +1007.3292 Data Structures and Algorithms +1007.3295 Probability +1007.3297 Algebraic Geometry +1007.3298 Mesoscale and Nanoscale Physics +1007.3303 Logic in Computer Science +1007.3311 Populations and Evolution +1007.3316 Pricing of Securities +1007.3317 Number Theory +1007.3320 General Physics +1007.3333 Geometric Topology +1007.3339 Combinatorics +1007.3340 Commutative Algebra +1007.3343 Earth and Planetary Astrophysics +1007.3344 Number Theory +1007.3345 Number Theory +1007.3346 Analysis of PDEs +1007.3347 Statistical Finance +1007.3348 General Physics +1007.3356 Materials Science +1007.3357 Populations and Evolution +1007.3361 Rings and Algebras +1007.3366 Astrophysics of Galaxies +1007.3371 Solar and Stellar Astrophysics +1007.3372 +1007.3377 Solar and Stellar Astrophysics +1007.3378 Statistical Mechanics +1007.3395 Analysis of PDEs +1007.3398 Statistical Mechanics +1007.3400 Exactly Solvable and Integrable Systems +1007.3402 Differential Geometry +1007.3409 High Energy Astrophysical Phenomena +1007.3414 Logic +1007.3415 Data Structures and Algorithms +1007.3416 Analysis of PDEs +1007.3422 Materials Science +1007.3423 Materials Science +1007.3424 Genomics +1007.3426 K-Theory and Homology +1007.3428 Representation Theory +1007.3429 Analysis of PDEs +1007.3435 Optimization and Control +1007.3440 General Mathematics +1007.3441 Solar and Stellar Astrophysics +1007.3444 Cosmology and Nongalactic Astrophysics +1007.3446 Solar and Stellar Astrophysics +1007.3449 Plasma Physics +1007.3452 Quantum Gases +1007.3454 Phenomenology +1007.3460 Classical Analysis and ODEs +1007.3463 Differential Geometry +1007.3466 Cosmology and Nongalactic Astrophysics +1007.3467 Combinatorics +1007.3485 Differential Geometry +1007.3486 Operator Algebras +math/0506519 Number Theory +0704.2666 Theory +0705.4561 Analysis of PDEs +0706.1249 General Mathematics +0711.3919 Functional Analysis +0801.2449 +0801.4043 Analysis of PDEs +0804.2151 +0804.2378 Probability +0805.0830 +0806.0651 General Mathematics +0806.0653 General Mathematics +0806.0655 General Mathematics +0806.2535 Classical Physics +0809.0589 +0810.2279 Discrete Mathematics +0810.3966 Popular Physics +0812.0562 +0812.3322 +0902.3398 Analysis of PDEs +0902.4461 Phenomenology +0903.1219 Phenomenology +0903.5037 General Physics +0904.2443 Analysis of PDEs +0904.2693 Algebraic Geometry +0904.3290 Analysis of PDEs +0904.4151 Strongly Correlated Electrons +0905.0412 Combinatorics +0905.1003 Probability +0905.3759 Adaptation and Self-Organizing Systems +0905.3928 Risk Management +0906.1764 Strongly Correlated Electrons +0908.2647 Strongly Correlated Electrons +0908.2887 Materials Science +0908.4377 +0908.4539 Materials Science +0909.1052 Phenomenology +0909.2086 +0909.3401 +0910.5166 Atmospheric and Oceanic Physics +0910.5568 +0912.0685 Discrete Mathematics +0912.1162 +0912.3014 Superconductivity +0912.5532 +1001.0105 Strongly Correlated Electrons +1001.0450 Algebraic Topology +1001.0896 Cosmology and Nongalactic Astrophysics +1001.3798 +1002.1128 Cosmology and Nongalactic Astrophysics +1002.1129 +1002.1130 Cosmology and Nongalactic Astrophysics +1002.1132 Theory +1002.1534 +1002.2703 Commutative Algebra +1002.3004 Algebraic Topology +1003.0393 +1003.0562 Probability +1003.0722 Data Structures and Algorithms +1003.0901 Strongly Correlated Electrons +1003.0902 Genomics +1003.0906 Phenomenology +1003.0918 Logic +1003.0924 Algebraic Topology +1003.0926 Statistical Mechanics +1003.0927 Algebraic Geometry +1003.0929 Networking and Internet Architecture +1003.0931 Physics Education +1003.0935 Operator Algebras +1003.0950 Differential Geometry +1003.0953 Information Theory +1003.0954 Strongly Correlated Electrons +1003.0959 Distributed, Parallel, and Cluster Computing +1003.0963 Differential Geometry +1003.0980 Geometric Topology +1003.0981 Combinatorics +1003.0982 Group Theory +1003.0988 Optimization and Control +1003.0993 Optimization and Control +1003.0997 High Energy Astrophysical Phenomena +1003.1002 Methodology +1003.1008 Optimization and Control +1003.1010 Databases +1003.1015 +1003.1021 Functional Analysis +1003.1022 Algebraic Geometry +1003.1026 General Physics +1003.1028 Quantum Algebra +1003.1031 Instrumentation and Detectors +1003.1034 Geometric Topology +1003.1036 Plasma Physics +1003.1038 Classical Analysis and ODEs +1003.1048 Information Retrieval +1003.1053 Cell Behavior +1003.1057 Logic in Computer Science +1003.1059 Analysis of PDEs +1003.1066 Biomolecules +1003.1068 Analysis of PDEs +1003.1070 Phenomenology +1003.1079 Optimization and Control +1003.1081 Analysis of PDEs +1003.1087 Functional Analysis +1003.1096 Group Theory +1003.1103 Solar and Stellar Astrophysics +1003.1117 Functional Analysis +1003.1118 Statistical Mechanics +1003.1120 Combinatorics +1003.1123 Chemical Physics +cs/0610157 Networking and Internet Architecture +math/0702025 Differential Geometry +math/9910021 Algebraic Geometry +0705.1629 +0707.2445 +0708.3453 Probability +0710.3724 Theory +0801.0461 Methodology +0805.1696 Neural and Evolutionary Computing +0806.3904 Algebraic Topology +0806.4965 Algebraic Geometry +0809.0726 Numerical Analysis +0809.4824 Probability +0810.1840 Representation Theory +0812.0159 Statistics Theory +0812.1682 Algebraic Geometry +0901.1378 Computation +0902.3845 Representation Theory +0903.3299 Probability +0903.4514 Rings and Algebras +0906.0792 Probability +0908.2844 Probability +0909.4132 Spectral Theory +0910.3198 +0910.4478 Superconductivity +0911.1137 Medical Physics +0911.2952 Information Theory +0911.4428 Quantum Algebra +0911.4430 Quantum Algebra +0912.4251 Phenomenology +1001.1033 Representation Theory +1001.2840 Numerical Analysis +1001.3550 Information Theory +1001.4598 Computer Science and Game Theory +1002.2110 Quantum Gases +1002.2751 Probability +1003.0684 Theory +1003.0923 +1003.3378 Mesoscale and Nanoscale Physics +1003.3786 Soft Condensed Matter +1005.2712 Number Theory +1005.5098 Earth and Planetary Astrophysics +1006.0989 Pattern Formation and Solitons +1006.1896 +1006.2984 Soft Condensed Matter +1006.3040 Statistical Mechanics +1006.4873 Group Theory +1007.0710 Algebraic Topology +1007.0908 Populations and Evolution +1007.1402 Superconductivity +1007.1404 Chaotic Dynamics +1007.2929 Phenomenology +1007.4682 Phenomenology +1008.0858 Cosmology and Nongalactic Astrophysics +1008.1765 Superconductivity +1008.2092 Materials Science +1008.5047 Algebraic Topology +1008.5205 Operator Algebras +1009.5633 Combinatorics +1010.0035 Probability +1010.0172 Geometric Topology +1010.0200 Information Theory +1010.2835 Fluid Dynamics +1010.2894 Probability +1010.3020 Cosmology and Nongalactic Astrophysics +1010.3026 General Physics +1010.3028 Representation Theory +1010.3039 Logic +1010.3043 Numerical Analysis +1010.3044 +1010.3045 Software Engineering +1010.3047 Probability +1010.3053 Distributed, Parallel, and Cluster Computing +1010.3055 Probability +1010.3064 +1010.3067 Fluid Dynamics +1010.3068 Fluid Dynamics +1010.3070 Number Theory +1010.3071 Information Theory +1010.3072 Fluid Dynamics +1010.3076 Fluid Dynamics +1010.3080 Phenomenology +1010.3086 Superconductivity +1010.3089 Functional Analysis +1010.3092 Probability +1010.3100 Software Engineering +1010.3102 Differential Geometry +1010.3103 Fluid Dynamics +1010.3106 Soft Condensed Matter +1010.3108 Experiment +1010.3112 Probability +1010.3113 Analysis of PDEs +1010.3117 Classical Analysis and ODEs +1010.3124 Solar and Stellar Astrophysics +1010.3126 Analysis of PDEs +1010.3128 Probability +1010.3129 Algebraic Geometry +1010.3139 Fluid Dynamics +1010.3142 Probability +1010.3143 Algebraic Geometry +1010.3146 Fluid Dynamics +1010.3149 Fluid Dynamics +1010.3150 Information Theory +1010.3153 Fluid Dynamics +1010.3156 Number Theory +1010.3157 Fluid Dynamics +1010.3159 Materials Science +1010.3160 +1010.3162 Probability +1010.3163 Cryptography and Security +1010.3172 Instrumentation and Methods for Astrophysics +1010.3174 Geometric Topology +1010.3176 Quantum Algebra +1010.3177 Artificial Intelligence +1010.3183 Fluid Dynamics +1010.3186 Fluid Dynamics +1010.3191 Probability +1010.3192 Analysis of PDEs +1010.3193 Pattern Formation and Solitons +1010.3194 Commutative Algebra +1010.3195 Theory +1010.3196 Fluid Dynamics +1010.3197 Computer Science and Game Theory +1010.3202 Fluid Dynamics +1010.3204 Dynamical Systems +1010.3205 Fluid Dynamics +1010.3206 Solar and Stellar Astrophysics +1010.3209 Instrumentation and Methods for Astrophysics +1010.3214 Solar and Stellar Astrophysics +1010.3216 +1010.3220 Geometric Topology +1010.3221 Fluid Dynamics +1010.3224 Instrumentation and Methods for Astrophysics +1010.3226 Statistical Mechanics +1010.3227 Fluid Dynamics +1010.3228 Cosmology and Nongalactic Astrophysics +1010.3231 Combinatorics +1010.3233 Distributed, Parallel, and Cluster Computing +1010.3235 +1010.3236 Fluid Dynamics +1010.3242 +1010.3249 Fluid Dynamics +1010.3254 +1010.3255 Fluid Dynamics +1010.3256 Fluid Dynamics +1010.3257 Dynamical Systems +1010.3258 Fluid Dynamics +q-bio/0611051 Biomolecules +quant-ph/0401049 +0711.0020 Theory +0801.2852 Theory +0806.1466 Quantum Algebra +0806.3034 Soft Condensed Matter +0806.3135 Theory +0811.2495 +0901.0057 Representation Theory +0901.0243 +0901.3170 Information Theory +0902.2541 Differential Geometry +0903.1313 Theory +0903.2933 Theory +0903.2997 Populations and Evolution +0903.5407 Theory +0903.5527 +0904.0062 Theory +0904.0241 Theory +0904.0246 Instrumentation and Detectors +0904.0277 Theory +0904.0375 Lattice +0904.0381 Theory +0904.0559 Theory +0904.0668 Theory +0904.0680 +0904.0705 Phenomenology +0904.0786 Experiment +0904.0910 Theory +0904.0954 Lattice +0904.1165 Phenomenology +0904.1366 Databases +0904.1622 Phenomenology +0904.2991 Instrumentation and Detectors +0904.3037 Phenomenology +0904.3298 Theory +0904.3313 Theory +0904.3730 +0906.4642 Combinatorics +0907.0584 Algebraic Geometry +0907.2800 Geometric Topology +0907.3336 +0908.0604 Logic +0908.0675 Phenomenology +0909.3515 Cosmology and Nongalactic Astrophysics +0910.0148 +0910.1917 Theory +0910.4336 Information Theory +0910.4437 Algebraic Geometry +0911.0887 High Energy Astrophysical Phenomena +0911.2337 Mesoscale and Nanoscale Physics +0911.3497 Soft Condensed Matter +0912.0197 Number Theory +0912.2117 Superconductivity +0912.5126 +1001.0499 Earth and Planetary Astrophysics +1001.2700 Strongly Correlated Electrons +1002.0482 Differential Geometry +1002.0512 Soft Condensed Matter +1002.0672 Functional Analysis +1002.1009 Number Theory +1002.4576 Disordered Systems and Neural Networks +1003.0111 Strongly Correlated Electrons +1003.5335 Number Theory +1003.5646 Complex Variables +1003.5661 Theory +1004.0558 Computational Geometry +1004.0716 General Physics +1004.0828 Mesoscale and Nanoscale Physics +1004.1246 Phenomenology +1004.1447 Adaptation and Self-Organizing Systems +1004.3005 +1004.4343 Algebraic Geometry +1005.0295 Cosmology and Nongalactic Astrophysics +1005.3173 Phenomenology +1005.3567 +1005.3952 Theory +1005.3955 Phenomenology +1005.4244 Computer Science and Game Theory +1005.4378 Superconductivity +1005.4936 Theory +1006.0412 Strongly Correlated Electrons +1006.0956 Theory +1006.1100 Phenomenology +1006.2725 +1006.2903 Populations and Evolution +1006.2908 Populations and Evolution +1006.3292 High Energy Astrophysical Phenomena +1006.5118 +1006.5206 Group Theory +1006.5393 Phenomenology +1006.5465 Phenomenology +1007.0629 Phenomenology +1007.1204 Theory +1007.1510 +1007.2136 Atomic Physics +1007.2277 +1007.2287 Symplectic Geometry +1007.2416 Quantum Gases +1007.3411 Biological Physics +1007.3681 Materials Science +1007.4341 Phenomenology +1007.4439 +1007.4662 +1007.4944 Theory +1007.5238 Quantum Gases +1007.5472 Theory +1008.0482 +1008.1126 Mesoscale and Nanoscale Physics +1008.2624 +1008.2648 Theory +1008.2838 +1008.3338 Chaotic Dynamics +1008.4482 Theory +1008.5247 Phenomenology +1009.0003 Phenomenology +1009.0664 Probability +1009.0759 Quantum Gases +1009.1622 Solar and Stellar Astrophysics +1009.1821 Optics +1009.5127 Theory +1009.5985 Theory +1010.0607 Functional Analysis +1010.1994 General Finance +1010.2563 Statistical Mechanics +1010.5316 Rings and Algebras +1011.1280 Genomics +1011.1408 Mesoscale and Nanoscale Physics +1011.3909 Quantum Gases +1011.4305 Combinatorics +1011.4739 Group Theory +1012.2097 Theory +1012.3412 Complex Variables +1012.3439 Information Theory +1012.3467 Materials Science +1012.3473 Theory +1012.3476 Machine Learning +1012.3483 Combinatorics +1012.3486 +1012.3487 Phenomenology +1012.3492 Cosmology and Nongalactic Astrophysics +1012.3495 Complex Variables +1012.3497 +1012.3504 Combinatorics +1012.3505 Solar and Stellar Astrophysics +1012.3513 Number Theory +1012.3514 Differential Geometry +1012.3517 Differential Geometry +1012.3520 +1012.3521 +1012.3528 Spectral Theory +1012.3530 Algebraic Geometry +1012.3532 +1012.3536 Theory +1012.3538 Experiment +1012.3539 +1012.3540 Commutative Algebra +1012.3541 Combinatorics +1012.3546 +1012.3551 Phenomenology +1012.3553 Representation Theory +1012.3558 Representation Theory +1012.3573 Lattice +1012.3574 Space Physics +1012.3575 Mesoscale and Nanoscale Physics +1012.3578 High Energy Astrophysical Phenomena +1012.3579 Optimization and Control +1012.3582 Differential Geometry +1012.3583 Computational Physics +1012.3584 Machine Learning +1012.3585 Geophysics +1012.3586 Strongly Correlated Electrons +1012.3588 Geophysics +1012.3589 Data Analysis, Statistics and Probability +1012.3590 Strongly Correlated Electrons +1012.3592 Optimization and Control +1012.3597 Chaotic Dynamics +1012.3602 Strongly Correlated Electrons +1012.3608 Differential Geometry +1012.3614 Probability +1012.3617 Accelerator Physics +1012.3622 Classical Analysis and ODEs +1012.3623 Neurons and Cognition +1012.3625 Neurons and Cognition +1012.3626 Quantum Algebra +1012.3636 Probability +1012.3640 Solar and Stellar Astrophysics +1012.3642 History and Philosophy of Physics +1012.3643 Geometric Topology +1012.3644 Symplectic Geometry +1012.3648 Solar and Stellar Astrophysics +1012.3649 Solar and Stellar Astrophysics +1012.3654 Combinatorics +1012.3655 Mesoscale and Nanoscale Physics +1012.3656 Neural and Evolutionary Computing +1012.3662 High Energy Astrophysical Phenomena +1012.3663 High Energy Astrophysical Phenomena +1012.3669 Astrophysics of Galaxies +1012.3673 Analysis of PDEs +1012.3677 Optics +1012.3682 Number Theory +1012.3683 +1012.3693 Solar and Stellar Astrophysics +1012.3694 Mesoscale and Nanoscale Physics +1012.3698 Phenomenology +1012.3699 Disordered Systems and Neural Networks +1012.3700 Classical Analysis and ODEs +1012.3705 Neural and Evolutionary Computing +1012.3707 Theory +1012.3715 Analysis of PDEs +1012.3720 Combinatorics +1012.3721 Formal Languages and Automata Theory +1012.3724 Neural and Evolutionary Computing +1012.3731 Algebraic Geometry +1012.3732 Solar and Stellar Astrophysics +1012.3741 Classical Analysis and ODEs +astro-ph/0110606 +astro-ph/0202224 +astro-ph/0303146 +astro-ph/0503142 +astro-ph/0605232 +astro-ph/9411053 +astro-ph/9605168 +cond-mat/0001416 Strongly Correlated Electrons +cond-mat/0008065 Strongly Correlated Electrons +cond-mat/0012106 Statistical Mechanics +cond-mat/0206585 Statistical Mechanics +cond-mat/0210168 Strongly Correlated Electrons +cond-mat/0305026 Statistical Mechanics +cond-mat/0412481 Statistical Mechanics +cond-mat/0507617 Superconductivity +cond-mat/0607057 Superconductivity +cond-mat/0703712 Other Condensed Matter +cond-mat/9208008 +cond-mat/9209003 +cond-mat/9210004 +cond-mat/9302029 +cond-mat/9509157 +cond-mat/9705228 Superconductivity +cond-mat/9802195 Disordered Systems and Neural Networks +cond-mat/9808097 Superconductivity +cond-mat/9906199 Superconductivity +cond-mat/9909250 Statistical Mechanics +cond-mat/9912307 Disordered Systems and Neural Networks +gr-qc/0201005 +gr-qc/0211029 +gr-qc/0211052 +gr-qc/0301068 +gr-qc/0304105 +gr-qc/0310020 +hep-lat/0002012 Lattice +hep-lat/0402003 Lattice +hep-lat/9205018 Lattice +hep-lat/9304010 Lattice +hep-lat/9305009 Lattice +hep-lat/9711049 Lattice +hep-ph/0007121 Phenomenology +hep-ph/0103169 Phenomenology +hep-ph/0104017 Phenomenology +hep-ph/0104152 Phenomenology +hep-ph/0105018 Phenomenology +hep-ph/0110328 Phenomenology +hep-ph/0111225 Phenomenology +hep-ph/0202161 Phenomenology +hep-ph/0207146 Phenomenology +hep-ph/0210295 Phenomenology +hep-ph/0212174 Phenomenology +hep-ph/0305019 Phenomenology +hep-ph/0411197 Phenomenology +hep-ph/0411315 Phenomenology +hep-ph/0605107 Phenomenology +hep-ph/0605229 Phenomenology +hep-ph/9302247 Phenomenology +hep-ph/9310377 Phenomenology +hep-ph/9406231 Phenomenology +hep-ph/9406401 Phenomenology +hep-ph/9603208 Phenomenology +hep-ph/9604262 Phenomenology +hep-ph/9606253 Phenomenology +hep-ph/9709344 Phenomenology +hep-ph/9808331 Phenomenology +hep-ph/9812365 Phenomenology +hep-ph/9902414 Phenomenology +hep-ph/9904223 Phenomenology +hep-ph/9905466 Phenomenology +hep-ph/9905484 Phenomenology +hep-ph/9911226 Phenomenology +hep-ph/9911540 Phenomenology +hep-th/0002041 Theory +hep-th/0004047 Theory +hep-th/0006218 Theory +hep-th/0111065 Theory +hep-th/0111132 Theory +hep-th/0204113 Theory +hep-th/0207231 Theory +hep-th/0207239 Theory +hep-th/0212114 Theory +hep-th/0212120 Theory +hep-th/0310207 Theory +hep-th/9207079 Theory +hep-th/9211117 Theory +hep-th/9212021 Theory +hep-th/9303075 Theory +hep-th/9303139 Theory +hep-th/9304014 Theory +hep-th/9312010 Theory +hep-th/9503074 Theory +hep-th/9505001 Theory +hep-th/9505042 Theory +hep-th/9505094 Theory +hep-th/9508061 Theory +hep-th/9508106 Theory +hep-th/9603163 Theory +hep-th/9603179 Theory +hep-th/9604132 Theory +hep-th/9606143 Theory +hep-th/9701109 Theory +hep-th/9710002 Theory +hep-th/9803022 Theory +nucl-ex/0608017 +nucl-th/0002065 +nucl-th/0203006 +nucl-th/0212088 +nucl-th/0302078 +nucl-th/0304061 +nucl-th/9711041 +physics/9911027 Accelerator Physics +quant-ph/0602115 +quant-ph/0610026 +quant-ph/9501001 +quant-ph/9610004 +quant-ph/9612004 +quant-ph/9706017 +quant-ph/9709023 +quant-ph/9811087 +quant-ph/9812017 +quant-ph/9901056 +quant-ph/9904097 +0705.4130 Logic +0709.4678 Probability +0711.3030 Logic +0803.2700 Physics and Society +0804.3293 Probability +0805.0987 Probability +0805.4744 Statistical Mechanics +0806.3471 Distributed, Parallel, and Cluster Computing +0807.0155 Representation Theory +0810.1121 Statistical Mechanics +0810.4857 Superconductivity +0810.5703 Atomic Physics +0812.4589 Geometric Topology +0812.4855 Quantum Algebra +0905.0098 Strongly Correlated Electrons +0905.0767 General Physics +0905.2486 Superconductivity +0906.0026 Group Theory +0906.1092 Analysis of PDEs +0906.1095 Solar and Stellar Astrophysics +0906.3849 Information Theory +0907.0353 +0907.2388 +0907.3638 +0908.0872 Astrophysics of Galaxies +0908.1210 Number Theory +0908.2503 Methodology +0909.5306 Statistical Mechanics +0910.0827 Probability +0910.1442 Phenomenology +0910.3088 Statistics Theory +0910.5392 Solar and Stellar Astrophysics +0910.5667 Number Theory +0911.4474 +0912.0645 +0912.0786 Statistics Theory +0912.3563 Disordered Systems and Neural Networks +1001.1051 Numerical Analysis +1001.1225 Statistical Mechanics +1001.2193 Algebraic Geometry +1001.2428 Biomolecules +1001.4431 Information Theory +1001.4569 Differential Geometry +1001.4873 Disordered Systems and Neural Networks +1002.2886 General Topology +1002.3114 Mesoscale and Nanoscale Physics +1003.0133 Superconductivity +1003.0800 Cosmology and Nongalactic Astrophysics +1003.1871 Number Theory +1003.2748 Disordered Systems and Neural Networks +1003.2966 Group Theory +1003.3431 Probability +1003.3748 Soft Condensed Matter +1003.4770 Rings and Algebras +1004.0935 Soft Condensed Matter +1004.1537 Disordered Systems and Neural Networks +1004.2284 Statistical Mechanics +1004.2897 Soft Condensed Matter +1004.3984 Superconductivity +1004.4898 Strongly Correlated Electrons +1005.0829 Statistics Theory +1005.1214 Methodology +1005.2450 Group Theory +1005.4156 Combinatorics +1005.5097 Strongly Correlated Electrons +1006.1497 Logic in Computer Science +1006.2302 Applications +1006.2722 Phenomenology +1006.2835 Computation and Language +1006.2838 Networking and Internet Architecture +1006.2840 Software Engineering +1006.2842 Other Condensed Matter +1006.2844 Cryptography and Security +1006.2852 Algebraic Geometry +1006.2853 Optimization and Control +1006.2859 Statistics Theory +1006.2864 Dynamical Systems +1006.2868 +1006.2881 Combinatorics +1006.2885 Theory +1006.2888 Logic +1006.2890 +1006.2891 Classical Analysis and ODEs +1006.2892 Superconductivity +1006.2895 Digital Libraries +1006.2896 Digital Libraries +1006.2898 Functional Analysis +1006.2906 +1006.2907 Materials Science +1006.2914 Analysis of PDEs +1006.2918 Solar and Stellar Astrophysics +1006.2921 Logic in Computer Science +1006.2923 Populations and Evolution +1006.2924 Combinatorics +1006.2930 +1006.2937 Atmospheric and Oceanic Physics +1006.2938 History and Overview +1006.2940 Methodology +1006.2942 Analysis of PDEs +1006.2943 Strongly Correlated Electrons +1006.2952 Commutative Algebra +1006.2953 Phenomenology +1006.2958 Discrete Mathematics +1006.2960 Populations and Evolution +1006.2961 Algebraic Geometry +1006.2964 Superconductivity +1006.2965 Probability +1006.2966 Complex Variables +1006.2967 Phenomenology +1006.2968 Analysis of PDEs +1006.2971 Solar and Stellar Astrophysics +1006.2976 Statistical Mechanics +1006.2977 Information Theory +1006.2988 Differential Geometry +1006.2990 +1006.2991 Numerical Analysis +1006.2993 Logic in Computer Science +1006.3002 Computation +1006.3003 High Energy Astrophysical Phenomena +1006.3010 +1006.3013 Combinatorics +1006.3014 Quantum Algebra +1006.3015 +1006.3017 Networking and Internet Architecture +1006.3018 Networking and Internet Architecture +1006.3021 Artificial Intelligence +1006.3022 Biological Physics +1006.3023 General Topology +1006.3030 Discrete Mathematics +1006.3036 Algebraic Geometry +1006.3046 Computational Complexity +1006.3047 Instrumentation and Detectors +1006.3055 Algebraic Topology +1006.3056 Computer Vision and Pattern Recognition +1006.3060 Solar and Stellar Astrophysics +1006.3065 Spectral Theory +cond-mat/0307177 Superconductivity +cond-mat/0401578 Superconductivity +cond-mat/0601382 Strongly Correlated Electrons +cs/0605047 Information Theory +math/0606531 Number Theory +math/0701177 Number Theory +nlin/0601048 Adaptation and Self-Organizing Systems +0704.1043 Computational Complexity +0704.1654 +0704.3693 Algebraic Geometry +0706.0770 +0708.0777 Other Condensed Matter +0711.4484 Complex Variables +0801.0486 +0803.2226 +0804.2398 +0804.4046 +0807.4857 Analysis of PDEs +0809.2290 +0810.2435 +0811.1649 +0812.3162 Phenomenology +0901.2915 Optimization and Control +0902.2535 Differential Geometry +0902.2699 Strongly Correlated Electrons +0903.5318 Complex Variables +0904.0223 Probability +0904.3041 Geometric Topology +0907.2399 Fluid Dynamics +0907.5283 Geometric Topology +0909.4414 Phenomenology +0909.5406 Number Theory +0910.4531 Differential Geometry +0912.0920 Numerical Analysis +0912.3313 +0912.3700 Superconductivity +1001.0018 +1001.1292 Statistical Mechanics +1001.4106 Phenomenology +1002.3682 Probability +1002.3861 Data Analysis, Statistics and Probability +1002.4874 High Energy Astrophysical Phenomena +1003.1988 Disordered Systems and Neural Networks +1003.5084 Symplectic Geometry +1003.5486 +1004.5125 Phenomenology +1004.5532 Mesoscale and Nanoscale Physics +1005.1235 Superconductivity +1005.4628 Algebraic Geometry +1006.1069 Biological Physics +1006.3534 Phenomenology +1006.5812 Combinatorics +1007.5221 +1008.1521 +1008.2349 Analysis of PDEs +1008.2492 Strongly Correlated Electrons +1009.0839 Classical Analysis and ODEs +1009.4204 Quantum Gases +1009.5678 Theory +1010.0159 Strongly Correlated Electrons +1010.0550 High Energy Astrophysical Phenomena +1010.5001 Analysis of PDEs +1011.1025 Solar and Stellar Astrophysics +1011.1971 Algebraic Geometry +1011.2258 Algebraic Topology +1011.2937 Classical Analysis and ODEs +1011.5922 Exactly Solvable and Integrable Systems +1011.6508 Networking and Internet Architecture +1012.2296 Phenomenology +1012.2551 Solar and Stellar Astrophysics +1012.3337 Theory +1012.3472 Theory +1012.3567 Optics +1012.3613 Number Theory +1012.3704 Logic in Computer Science +1012.3733 Experiment +1012.3734 Experiment +1012.3754 Instrumentation and Methods for Astrophysics +1012.3755 Astrophysics of Galaxies +1012.3761 Phenomenology +1012.3765 General Physics +1012.3766 Solar and Stellar Astrophysics +1012.3770 Algebraic Geometry +1012.3779 Instrumentation and Methods for Astrophysics +1012.3785 Analysis of PDEs +1012.3796 Solar and Stellar Astrophysics +1012.3799 Fluid Dynamics +1012.3801 Neurons and Cognition +1012.3802 Computer Vision and Pattern Recognition +1012.3803 Neurons and Cognition +1012.3805 Information Retrieval +1012.3807 Phenomenology +1012.3808 Geometric Topology +1012.3809 Number Theory +1012.3814 Lattice +1012.3823 +1012.3826 Classical Analysis and ODEs +1012.3833 Number Theory +1012.3835 Numerical Analysis +1012.3838 Geophysics +1012.3852 Statistical Mechanics +1012.3853 Artificial Intelligence +1012.3854 Symplectic Geometry +1012.3861 Lattice +1012.3864 Classical Analysis and ODEs +1012.3868 Statistical Mechanics +1012.3869 Superconductivity +1012.3871 +1012.3877 Learning +1012.3878 +1012.3880 Machine Learning +1012.3883 Phenomenology +1012.3888 Rings and Algebras +1012.3889 Computer Science and Game Theory +1012.3891 +1012.3892 Combinatorics +1012.3903 Statistical Mechanics +1012.3912 Instrumentation and Methods for Astrophysics +1012.3918 Combinatorics +1012.3919 Number Theory +1012.3924 K-Theory and Homology +1012.3925 +1012.3926 Cosmology and Nongalactic Astrophysics +1012.3928 Optics +1012.3931 Plasma Physics +1012.3932 Data Structures and Algorithms +1012.3934 Combinatorics +1012.3935 Lattice +1012.3942 Combinatorics +1012.3945 Materials Science +1012.3946 Accelerator Physics +1012.3947 Logic in Computer Science +1012.3949 Analysis of PDEs +1012.3952 Algebraic Topology +1012.3953 Computational Engineering, Finance, and Science +1012.3954 Functional Analysis +1012.3956 Computational Engineering, Finance, and Science +1012.3957 Neurons and Cognition +1012.3959 +1012.3962 Formal Languages and Automata Theory +1012.3963 Statistics Theory +1012.3967 Algebraic Geometry +1012.3970 +1012.3977 Classical Analysis and ODEs +1012.3979 Differential Geometry +1012.3980 Symplectic Geometry +astro-ph/0611228 +cond-mat/0702120 Statistical Mechanics +cs/0608094 Computational Complexity +gr-qc/0605063 +hep-th/9611206 Theory +0704.0993 +0704.1058 +0706.4070 Theory +0707.4135 Dynamical Systems +0710.0642 Classical Analysis and ODEs +0710.1865 +0712.1807 +0802.0237 Accelerator Physics +0802.3422 +0803.1058 +0804.1700 Phenomenology +0804.1912 +0805.0068 +0805.2108 +0805.2599 Differential Geometry +0805.3018 Representation Theory +0805.4069 Phenomenology +0806.0010 Differential Geometry +0806.3327 Spectral Theory +0806.4390 +0807.0231 +0807.2461 +0807.3520 Optimization and Control +0807.4254 +0808.0192 +0808.0385 +0808.1081 Popular Physics +0808.2880 Phenomenology +0809.1975 Theory +0809.2895 +0809.3607 +0809.4135 +0810.0269 Theory +0810.0277 +0810.2992 +0810.3088 Other Condensed Matter +0810.3915 +0810.4170 +0810.5321 Theory +0810.5376 Geometric Topology +0811.0814 Theory +0811.1261 +0811.1639 +0811.2622 +0811.3966 Analysis of PDEs +0812.0247 +0812.0616 Theory +0812.1613 +0812.1705 +0812.2013 +0812.2074 +0812.2143 Quantum Algebra +0812.2816 +0812.3018 +0812.3154 +0812.3179 Representation Theory +0812.4751 +0901.1086 +0901.1768 Theory +0901.2205 Earth and Planetary Astrophysics +0901.4443 Theory +0901.4712 High Energy Astrophysical Phenomena +0901.4899 Solar and Stellar Astrophysics +0902.0229 Cosmology and Nongalactic Astrophysics +0902.0415 Instrumentation and Methods for Astrophysics +0902.0785 Instrumentation and Methods for Astrophysics +0902.0964 Classical Analysis and ODEs +0902.1160 Astrophysics of Galaxies +0902.1631 Cosmology and Nongalactic Astrophysics +0902.1688 Instrumentation and Methods for Astrophysics +0902.1793 Other Condensed Matter +0902.2013 Cosmology and Nongalactic Astrophysics +0902.2959 High Energy Astrophysical Phenomena +0902.3209 Theory +0902.4068 Cosmology and Nongalactic Astrophysics +0902.4204 Cosmology and Nongalactic Astrophysics +0902.4772 Optics +0903.0168 Optics +0903.0235 Phenomenology +0903.0556 Solar and Stellar Astrophysics +0903.0950 Cosmology and Nongalactic Astrophysics +0903.1069 Strongly Correlated Electrons +0903.1209 Astrophysics of Galaxies +0903.2090 Atomic Physics +0903.2308 +0903.3695 Cosmology and Nongalactic Astrophysics +0903.4300 Dynamical Systems +0903.4670 Theory +0903.4929 Cosmology and Nongalactic Astrophysics +0903.5355 Instrumentation and Methods for Astrophysics +0903.5473 Cosmology and Nongalactic Astrophysics +0904.0551 +0904.0638 Solar and Stellar Astrophysics +0904.0789 Cosmology and Nongalactic Astrophysics +0904.1044 +0904.1371 High Energy Astrophysical Phenomena +0904.1507 High Energy Astrophysical Phenomena +0904.1642 Cosmology and Nongalactic Astrophysics +0904.1919 General Physics +0904.2535 Solar and Stellar Astrophysics +0904.2979 Earth and Planetary Astrophysics +0904.3248 Cosmology and Nongalactic Astrophysics +0904.3308 Populations and Evolution +0905.0324 +0905.1793 Popular Physics +0905.1853 Cosmology and Nongalactic Astrophysics +0905.2178 Solar and Stellar Astrophysics +0905.2344 Earth and Planetary Astrophysics +0905.2752 Cosmology and Nongalactic Astrophysics +0905.3238 High Energy Astrophysical Phenomena +0905.3482 +0905.4389 Cosmology and Nongalactic Astrophysics +0905.4477 High Energy Astrophysical Phenomena +0905.4697 Cosmology and Nongalactic Astrophysics +0905.4742 Cosmology and Nongalactic Astrophysics +0906.0293 Analysis of PDEs +0906.0668 +0906.0893 Cosmology and Nongalactic Astrophysics +0906.0903 Phenomenology +0906.0962 +0906.1050 Solar and Stellar Astrophysics +0906.1060 Instrumentation and Methods for Astrophysics +0906.1130 Theory +0906.1629 K-Theory and Homology +0906.1818 Solar and Stellar Astrophysics +0906.2647 Cosmology and Nongalactic Astrophysics +0906.2942 +0906.2956 Instrumentation and Detectors +0906.3161 Solar and Stellar Astrophysics +0906.3429 Solar and Stellar Astrophysics +0906.3709 +0906.3759 Phenomenology +0906.3934 Phenomenology +0906.4252 Operator Algebras +0906.4304 +0906.4550 Cosmology and Nongalactic Astrophysics +0906.4574 Earth and Planetary Astrophysics +0906.5139 Theory +0906.5495 Earth and Planetary Astrophysics +0907.0213 Cosmology and Nongalactic Astrophysics +0907.0641 High Energy Astrophysical Phenomena +0907.1608 Cosmology and Nongalactic Astrophysics +0907.2978 Instrumentation and Detectors +0907.3106 Solar and Stellar Astrophysics +0908.1713 +0908.2867 +0908.3099 Phenomenology +0908.4255 Theory +0908.4529 High Energy Astrophysical Phenomena +0909.0132 Cosmology and Nongalactic Astrophysics +0909.0308 Atomic Physics +0909.0454 +0909.1119 Instrumentation and Methods for Astrophysics +0909.1194 Solar and Stellar Astrophysics +0909.1622 Strongly Correlated Electrons +0909.4327 Solar and Stellar Astrophysics +0909.4444 Phenomenology +0909.5027 Phenomenology +0909.5285 +0909.5564 Solar and Stellar Astrophysics +0910.0474 Phenomenology +0910.0511 Cosmology and Nongalactic Astrophysics +0910.0673 +0910.0707 Solar and Stellar Astrophysics +0910.0823 Phenomenology +0910.0864 Earth and Planetary Astrophysics +0910.1165 Theory +0910.1271 Earth and Planetary Astrophysics +0910.1481 Phenomenology +0910.1489 Solar and Stellar Astrophysics +0910.1521 Phenomenology +0910.1796 Solar and Stellar Astrophysics +0910.1855 +0910.1867 Phenomenology +0910.2193 Cosmology and Nongalactic Astrophysics +0910.2809 Phenomenology +0910.3122 +0910.3147 Phenomenology +0910.3585 +0910.3684 Astrophysics of Galaxies +0910.3710 Phenomenology +0910.4023 +0910.4078 +0910.4326 Phenomenology +0910.4375 Phenomenology +0910.4413 Mesoscale and Nanoscale Physics +0910.4463 +0910.4876 Phenomenology +0910.4944 High Energy Astrophysical Phenomena +0910.4966 Cosmology and Nongalactic Astrophysics +0910.5031 Phenomenology +0910.5234 Accelerator Physics +0910.5365 Cosmology and Nongalactic Astrophysics +0910.5407 Phenomenology +0910.5600 Phenomenology +0911.0022 +0911.0265 Cosmology and Nongalactic Astrophysics +0911.0526 Phenomenology +0911.0993 Theory +0911.1522 +0911.1534 Phenomenology +0911.2278 Dynamical Systems +0911.2333 Phenomenology +0911.2744 +0911.3339 Phenomenology +0911.3518 General Physics +0911.3847 +0911.3879 Astrophysics of Galaxies +0911.4470 Phenomenology +0911.5164 Solar and Stellar Astrophysics +0912.0077 High Energy Astrophysical Phenomena +0912.0311 Instrumentation and Methods for Astrophysics +0912.0665 Cosmology and Nongalactic Astrophysics +0912.1642 Strongly Correlated Electrons +0912.2166 Strongly Correlated Electrons +0912.3096 Cosmology and Nongalactic Astrophysics +0912.4619 Earth and Planetary Astrophysics +0912.5128 +0912.5329 Instrumentation and Methods for Astrophysics +0912.5481 Theory +0912.5534 High Energy Astrophysical Phenomena +1001.0389 Phenomenology +1001.0471 Phenomenology +1001.0906 Theory +1001.2568 Disordered Systems and Neural Networks +1001.4062 +1002.1923 +1002.2598 +1002.3064 +1002.4933 +1003.1486 Combinatorics +1003.1569 Materials Science +1003.1692 Phenomenology +1003.5643 +1004.0895 +1004.0900 +1004.2399 Theory +1004.2745 +1004.3302 Cosmology and Nongalactic Astrophysics +1004.4125 Phenomenology +1005.0337 Phenomenology +1005.1983 +1005.2670 Algebraic Geometry +1005.3533 Theory +1005.3884 +1005.4224 +1005.5219 Mesoscale and Nanoscale Physics +1005.5553 Cryptography and Security +1006.0341 Strongly Correlated Electrons +1006.1605 Strongly Correlated Electrons +1006.2095 Phenomenology +1006.3208 Strongly Correlated Electrons +1006.3401 Optics +1006.3551 Experiment +1006.3897 High Energy Astrophysical Phenomena +1006.4317 Plasma Physics +1007.0780 +1007.1447 Superconductivity +1007.1968 Superconductivity +1007.2919 Phenomenology +1007.4422 Quantum Gases +1008.0496 Theory +1008.1207 Number Theory +1008.1413 Data Analysis, Statistics and Probability +1008.1472 Superconductivity +1008.2531 Solar and Stellar Astrophysics +1008.2967 Superconductivity +1008.4002 Spectral Theory +1008.4284 Experiment +1008.4424 Combinatorics +1009.0168 +1009.0400 Materials Science +1009.0807 Number Theory +1009.0889 Atomic Physics +1009.2396 Combinatorics +1009.4606 Computer Science and Game Theory +1009.4760 +1009.4791 Learning +1009.5371 Algebraic Geometry +1009.5757 Strongly Correlated Electrons +1010.0666 Quantum Gases +1010.3755 Algebraic Geometry +1010.3881 Combinatorics +1010.4587 +1010.4913 +1010.5769 Number Theory +1010.6064 Differential Geometry +1011.0005 High Energy Astrophysical Phenomena +1011.0010 Numerical Analysis +1011.0016 Analysis of PDEs +1011.0020 +1011.0031 Quantum Gases +1011.0035 Superconductivity +1011.0038 Commutative Algebra +1011.0048 Differential Geometry +1011.0051 Logic in Computer Science +1011.0053 Algebraic Topology +1011.0054 Algebraic Topology +1011.0057 Computation +1011.0061 +1011.0069 Populations and Evolution +1011.0072 Combinatorics +1011.0077 Phenomenology +1011.0079 General Topology +1011.0080 K-Theory and Homology +1011.0087 Soft Condensed Matter +1011.0092 Analysis of PDEs +1011.0093 Computer Vision and Pattern Recognition +1011.0096 Machine Learning +1011.0097 Learning +1011.0098 Artificial Intelligence +1011.0106 Mesoscale and Nanoscale Physics +1011.0116 Geometric Topology +1011.0124 Numerical Analysis +1011.0138 Optimization and Control +1011.0140 Quantum Algebra +1011.0143 Earth and Planetary Astrophysics +1011.0146 Optics +1011.0148 Discrete Mathematics +1011.0149 Optics +1011.0152 Phenomenology +1011.0158 Experiment +1011.0160 Theory +1011.0164 Experiment +1011.0171 Analysis of PDEs +1011.0174 Applications +1011.0175 Computation +1011.0177 Superconductivity +1011.0178 Dynamical Systems +1011.0192 Computers and Society +1011.0194 Earth and Planetary Astrophysics +1011.0195 +1011.0197 +1011.0200 Genomics +1011.0205 Quantum Gases +1011.0210 High Energy Astrophysical Phenomena +1011.0211 Representation Theory +1011.0212 Classical Analysis and ODEs +1011.0214 +1011.0217 Formal Languages and Automata Theory +1011.0218 Formal Languages and Automata Theory +1011.0219 Formal Languages and Automata Theory +1011.0220 Formal Languages and Automata Theory +1011.0221 Formal Languages and Automata Theory +1011.0222 Formal Languages and Automata Theory +1011.0223 Formal Languages and Automata Theory +1011.0227 Instrumentation and Methods for Astrophysics +1011.0229 Number Theory +1011.0235 Distributed, Parallel, and Cluster Computing +1011.0238 Mesoscale and Nanoscale Physics +1011.0239 Materials Science +1011.0241 Neurons and Cognition +1011.0244 Populations and Evolution +1011.0247 Geometric Topology +1011.0248 Pricing of Securities +1011.0250 Computational Engineering, Finance, and Science +1011.0257 Lattice +1011.0262 Functional Analysis +1011.0264 Cosmology and Nongalactic Astrophysics +1011.0265 Algebraic Topology +1011.0267 Disordered Systems and Neural Networks +1011.0268 Computer Science and Game Theory +1011.0271 Disordered Systems and Neural Networks +1011.0273 +1011.0278 Software Engineering +1011.0279 Computational Engineering, Finance, and Science +1011.0280 Software Engineering +1011.0282 Analysis of PDEs +1011.0285 Geometric Topology +1011.0291 Lattice +1011.0293 Representation Theory +1011.0295 Astrophysics of Galaxies +1011.0305 Commutative Algebra +1011.0307 Pattern Formation and Solitons +1011.0309 Probability +1011.0310 Lattice +1011.0313 Discrete Mathematics +1011.0316 Algebraic Geometry +1011.0318 Geometric Topology +1011.0324 Materials Science +1011.0326 Mesoscale and Nanoscale Physics +1011.0328 Databases +1011.0331 Physics Education +1011.0332 Mesoscale and Nanoscale Physics +1011.0335 Analysis of PDEs +1011.0342 Instrumentation and Methods for Astrophysics +1011.0346 Algebraic Geometry +1011.0350 Learning +1011.0351 Combinatorics +1011.0352 Instrumentation and Detectors +1011.0354 Computational Complexity +1011.0355 Probability +1011.0361 Rings and Algebras +1011.0363 Cryptography and Security +1011.0365 Metric Geometry +1011.0370 Cell Behavior +1011.0378 +1011.0389 Mesoscale and Nanoscale Physics +1011.0391 Geophysics +1011.0396 Mesoscale and Nanoscale Physics +1011.0399 Logic in Computer Science +1011.0404 Information Retrieval +1011.0413 Data Structures and Algorithms +1011.0422 Algebraic Topology +1011.0423 General Finance +astro-ph/0504130 +cond-mat/0305351 +cond-mat/0307155 Statistical Mechanics +cond-mat/0308044 +cond-mat/0406015 Other Condensed Matter +cond-mat/0703641 Other Condensed Matter +cs/0112014 Cryptography and Security +cs/0207027 Cryptography and Security +cs/0508133 Computational Complexity +cs/0509059 Cryptography and Security +gr-qc/0608133 +gr-qc/0610018 +gr-qc/0610130 +gr-qc/0612193 +gr-qc/0701127 +gr-qc/0703058 +hep-th/0610216 Theory +hep-th/9211121 Theory +hep-th/9307109 Theory +math-ph/0506017 +math/0112262 Logic +math/0208224 Logic +math/0209267 Group Theory +math/0212312 Logic +math/0301085 General Topology +math/0304019 Logic +math/0304024 General Topology +math/0307225 General Topology +math/0312182 General Topology +math/0407487 Logic +math/0409068 General Topology +math/0409069 General Topology +math/0504537 Symplectic Geometry +math/0507043 General Topology +math/0508146 General Topology +math/0510680 General Topology +math/0601153 General Topology +math/0601556 Functional Analysis +math/0604451 General Topology +math/0604536 Logic +math/0606285 General Topology +math/0611918 Group Theory +math/0612617 Dynamical Systems +quant-ph/0411185 +quant-ph/0507003 +0708.2798 Theory +0708.3331 +0712.3212 +0802.1937 Phenomenology +0803.0003 +0803.1821 +0805.1136 +0805.1849 +0805.4154 Statistics Theory +0806.2740 +0806.2938 Theory +0806.3420 Phenomenology +0806.3427 Phenomenology +0806.3450 Phenomenology +0806.4602 Theory +0807.0597 Theory +0807.0687 Probability +0807.1723 Chaotic Dynamics +0807.1921 +0807.2211 Phenomenology +0807.2446 +0807.2774 +0807.2926 +0807.3033 Phenomenology +0807.3124 Phenomenology +0807.4287 Phenomenology +0807.4551 Phenomenology +0807.5059 Statistics Theory +0809.1398 Physics and Society +0809.2280 +0809.2331 +0809.3717 Phenomenology +0809.4591 +0809.4646 +0809.4729 +0810.0248 Experiment +0810.0646 +0810.0714 Phenomenology +0810.1786 Theory +0810.1987 Phenomenology +0810.3022 +0810.3262 Number Theory +0810.3378 +0810.5243 +0810.5446 +0810.5463 +0811.0446 +0811.0904 +0811.1070 +0811.1072 +0811.1087 +0811.1099 +0811.1114 +0811.1797 +0811.2100 +0811.2520 +0811.3519 +0811.3731 Phenomenology +0811.3845 Lattice +0811.4141 Lattice +0811.4237 +0811.4370 +0811.4487 +0811.4492 +0811.4493 +0811.4574 +0811.4638 Phenomenology +0811.4661 Phenomenology +0811.4683 Phenomenology +0811.4689 Phenomenology +0811.4708 Phenomenology +0812.0082 Phenomenology +0812.0084 Phenomenology +0812.0087 Phenomenology +0812.0120 Phenomenology +0812.0187 Phenomenology +0812.0219 Phenomenology +0812.0342 Phenomenology +0812.0344 Phenomenology +0812.0360 +0812.0807 +0812.0818 +0812.1174 +0812.1253 +0812.1346 +0812.1459 +0812.1590 +0812.1605 Phenomenology +0812.1731 Theory +0812.2371 Phenomenology +0812.2374 Phenomenology +0812.2397 Phenomenology +0812.2477 Phenomenology +0812.2489 Phenomenology +0812.2601 Phenomenology +0812.2653 Phenomenology +0812.3532 +0812.3560 Theory +0901.0321 Instrumentation and Methods for Astrophysics +0901.1332 Phenomenology +0901.4416 Instrumentation and Methods for Astrophysics +0902.0245 High Energy Astrophysical Phenomena +0902.0730 Instrumentation and Methods for Astrophysics +0902.1988 High Energy Astrophysical Phenomena +0902.3033 Cosmology and Nongalactic Astrophysics +0902.4485 Theory +0902.4791 High Energy Astrophysical Phenomena +0903.0227 +0903.0832 High Energy Astrophysical Phenomena +0903.0838 High Energy Astrophysical Phenomena +0903.1547 Phenomenology +0903.1670 Materials Science +0903.1986 Lattice +0903.2298 Lattice +0903.2497 Phenomenology +0903.2729 Phenomenology +0903.2941 Phenomenology +0903.2990 Lattice +0903.4318 Phenomenology +0904.0110 +0904.1114 Cosmology and Nongalactic Astrophysics +0904.1309 High Energy Astrophysical Phenomena +0904.2103 Experiment +0904.2175 Theory +0904.2774 +0904.3405 Mesoscale and Nanoscale Physics +0904.3406 +0904.3609 Cosmology and Nongalactic Astrophysics +0904.4570 Phenomenology +0905.1266 High Energy Astrophysical Phenomena +0905.1776 +0905.3226 +0905.3357 +0905.3391 Theory +0905.3444 +0905.3492 +0905.3517 +0905.3622 +0905.3807 Theory +0905.3836 Cosmology and Nongalactic Astrophysics +0905.4001 +0905.4082 +0905.4097 +0905.4142 +0905.4179 +0905.4182 +0905.4184 Cosmology and Nongalactic Astrophysics +0905.4188 +0905.4483 Theory +0906.1503 High Energy Astrophysical Phenomena +0906.1643 Cosmology and Nongalactic Astrophysics +0906.1660 Theory +0906.3808 +0906.3826 +0906.3906 Lattice +0906.3913 +0906.3941 Lattice +0906.3957 Lattice +0907.0494 Lattice +0907.0529 Lattice +0907.3000 Phenomenology +0907.3011 Phenomenology +0907.3062 Phenomenology +0907.3369 Statistics Theory +0907.5091 +0907.5146 +0907.5195 +0907.5403 +0907.5408 Phenomenology +0907.5491 Lattice +0907.5591 +0907.5602 +0908.0034 +0908.0138 +0908.0166 Lattice +0908.0196 +0908.0219 +0908.0283 +0908.0308 +0908.0329 +0908.0354 +0908.0451 Lattice +0908.0745 +0908.0901 Phenomenology +0908.0998 +0908.1265 +0908.1451 Lattice +0908.1568 Cosmology and Nongalactic Astrophysics +0908.1570 Phenomenology +0908.1763 Phenomenology +0908.1764 Phenomenology +0908.1768 Phenomenology +0908.2067 Phenomenology +0908.2104 Mesoscale and Nanoscale Physics +0908.2187 Phenomenology +0908.2305 Cosmology and Nongalactic Astrophysics +0908.2362 Cosmology and Nongalactic Astrophysics +0908.2391 Phenomenology +0908.2395 Phenomenology +0908.2430 Cosmology and Nongalactic Astrophysics +0908.2436 Phenomenology +0908.2466 Lattice +0908.2646 Phenomenology +0908.2686 Phenomenology +0908.3663 Phenomenology +0908.3854 +0908.4379 +0908.4476 +0908.4518 +0909.1559 Phenomenology +0909.1580 Theory +0909.2202 Lattice +0909.2270 +0909.2272 +0909.2394 Lattice +0909.2411 +0909.2597 +0909.2717 +0909.2807 Theory +0909.3063 +0909.3918 Theory +0909.3948 Theory +0909.4133 +0909.4408 +0909.4413 +0909.4759 +0909.4824 Phenomenology +0909.4862 +0909.4886 Theory +0909.4940 +0909.4998 +0909.5585 Lattice +0909.5611 Theory +0910.0431 Theory +0910.0554 Theory +0910.0607 Theory +0910.0611 +0910.0686 Lattice +0910.0926 +0910.2079 Theory +0910.2390 +0910.2515 Materials Science +0910.2552 Other Condensed Matter +0910.3155 Theory +0910.5192 Phenomenology +0910.5926 Mesoscale and Nanoscale Physics +0911.0843 Functional Analysis +0911.0913 +0911.3233 +0911.3340 +0911.3356 Phenomenology +0911.3397 Cosmology and Nongalactic Astrophysics +0911.4127 Theory +0911.4379 Theory +0911.5288 Quantum Gases +0912.0267 Phenomenology +0912.0477 Phenomenology +0912.0522 Cosmology and Nongalactic Astrophysics +0912.0805 Cosmology and Nongalactic Astrophysics +0912.1026 +0912.1342 Phenomenology +0912.1352 Phenomenology +0912.1385 Phenomenology +0912.1472 +0912.1536 +0912.1541 +0912.2663 Phenomenology +0912.2876 Phenomenology +0912.2994 Cosmology and Nongalactic Astrophysics +0912.3997 Phenomenology +0912.4144 Theory +0912.4329 Phenomenology +0912.4345 Phenomenology +0912.4484 Phenomenology +0912.4589 Statistical Mechanics +0912.4704 Theory +0912.5087 Theory +0912.5139 Theory +0912.5216 High Energy Astrophysical Phenomena +0912.5463 Phenomenology +0912.5476 Theory +0912.5503 Theory +1001.0019 +1001.0022 Phenomenology +1001.0031 +1001.0060 Theory +1001.0220 Theory +1001.0362 +1001.0369 Phenomenology +1001.0526 Mesoscale and Nanoscale Physics +1001.0743 +1001.1535 Atomic Physics +1001.2091 Number Theory +1001.2572 Logic in Computer Science +1001.2640 Theory +1001.2833 Theory +1001.2854 Data Analysis, Statistics and Probability +1001.2855 Data Analysis, Statistics and Probability +1001.2902 Theory +1001.2990 +1001.4228 +1001.4296 Strongly Correlated Electrons +1001.4356 Theory +1001.4466 Theory +1001.4877 Phenomenology +1001.5236 Theory +1001.5256 Atomic Physics +1002.0218 Phenomenology +1002.0659 Phenomenology +1002.0903 Theory +1002.1349 Theory +1002.1696 Lattice +1002.1944 Phenomenology +1002.2112 Strongly Correlated Electrons +1002.2430 Phenomenology +1002.2963 Solar and Stellar Astrophysics +1002.2974 High Energy Astrophysical Phenomena +1002.3378 Cosmology and Nongalactic Astrophysics +1002.3650 Earth and Planetary Astrophysics +1002.4773 Probability +1003.0084 Theory +1003.0263 Solar and Stellar Astrophysics +1003.1151 Theory +1003.1194 +1003.2786 +1003.3622 +1003.4749 Solar and Stellar Astrophysics +1004.0692 Earth and Planetary Astrophysics +1004.1048 General Physics +1004.1596 Probability +1004.2578 Number Theory +1004.3352 Theory +1004.4964 Analysis of PDEs +1004.4965 Machine Learning +1004.5127 +1004.5128 +1004.5136 Dynamical Systems +1004.5148 +1004.5161 General Physics +1004.5165 Digital Libraries +1004.5176 Physics and Society +1004.5181 Information Theory +1004.5183 Combinatorics +1004.5186 Data Structures and Algorithms +1004.5188 General Mathematics +1004.5189 Information Theory +1004.5195 Information Theory +1004.5198 +1004.5200 Solar and Stellar Astrophysics +1004.5201 Classical Physics +1004.5205 Materials Science +1004.5208 Combinatorics +1004.5209 +1004.5210 +1004.5214 Information Theory +1004.5217 Information Theory +1004.5220 +1004.5223 +1004.5225 Data Analysis, Statistics and Probability +1004.5233 Optimization and Control +1004.5251 Cosmology and Nongalactic Astrophysics +1004.5254 Dynamical Systems +1004.5256 Distributed, Parallel, and Cluster Computing +1004.5257 Computer Science and Game Theory +1004.5259 Atomic Physics +1004.5262 Neural and Evolutionary Computing +1004.5268 Experiment +1004.5273 Combinatorics +1004.5278 Atomic Physics +1004.5282 Mesoscale and Nanoscale Physics +1004.5295 Materials Science +1004.5297 Analysis of PDEs +1004.5299 Phenomenology +1004.5309 Superconductivity +1004.5311 +1004.5317 +1004.5326 Disordered Systems and Neural Networks +1004.5332 Populations and Evolution +1004.5336 Soft Condensed Matter +1004.5338 Probability +1004.5345 Dynamical Systems +1004.5352 Soft Condensed Matter +1004.5353 Mesoscale and Nanoscale Physics +1004.5354 Computers and Society +1004.5365 Classical Physics +1004.5368 Experiment +1004.5370 Information Retrieval +astro-ph/0603392 +astro-ph/0701244 +astro-ph/9910138 +gr-qc/0005057 +gr-qc/0205096 +gr-qc/0511138 +gr-qc/0701146 +gr-qc/9208004 +gr-qc/9310013 +gr-qc/9604002 +hep-lat/0501004 Lattice +hep-lat/0606016 Lattice +hep-th/0207147 Theory +hep-th/0304026 Theory +hep-th/0401045 Theory +hep-th/0406160 Theory +hep-th/0409001 Theory +hep-th/0611230 Theory +math/0702349 Geometric Topology +nucl-th/0306072 +physics/0510020 Atomic Physics +physics/0702232 General Physics +0708.1381 Other Condensed Matter +0809.1552 Logic in Computer Science +0810.4896 Algebraic Geometry +0902.2667 Superconductivity +0906.2173 Instrumentation and Methods for Astrophysics +0907.0381 Lattice +0908.3291 Theory +0909.0463 Mesoscale and Nanoscale Physics +0909.2966 Materials Science +0909.4828 Information Theory +0911.1168 Theory +0911.2599 Probability +0912.0709 High Energy Astrophysical Phenomena +0912.1384 Mesoscale and Nanoscale Physics +0912.2182 Classical Analysis and ODEs +0912.2774 Populations and Evolution +0912.4991 Computational Engineering, Finance, and Science +1001.1951 Algebraic Geometry +1001.4446 +1002.1875 Solar and Stellar Astrophysics +1003.1757 Quantum Gases +1004.0598 Networking and Internet Architecture +1004.1817 +1004.2023 +1004.2463 Materials Science +1004.4696 Astrophysics of Galaxies +1004.5129 Quantum Gases +1005.0458 Quantum Gases +1005.4064 Statistical Mechanics +1006.1414 Logic in Computer Science +1006.2235 Mesoscale and Nanoscale Physics +1006.4225 Networking and Internet Architecture +1006.5177 Differential Geometry +1007.0209 Solar and Stellar Astrophysics +1007.0718 +1007.1206 Dynamical Systems +1007.1541 +1007.1969 Cosmology and Nongalactic Astrophysics +1007.2116 Theory +1007.2994 Functional Analysis +1007.3052 Analysis of PDEs +1007.5376 Risk Management +1008.1153 Pattern Formation and Solitons +1008.1586 Instrumentation and Methods for Astrophysics +1008.1597 Statistical Mechanics +1008.1598 +1008.1602 Number Theory +1008.1608 Combinatorics +1008.1610 Information Theory +1008.1611 Information Theory +1008.1612 Statistical Mechanics +1008.1616 Computer Science and Game Theory +1008.1617 Computational Complexity +1008.1619 Algebraic Geometry +1008.1629 Networking and Internet Architecture +1008.1633 Group Theory +1008.1634 +1008.1637 Commutative Algebra +1008.1638 Functional Analysis +1008.1639 Physics and Society +1008.1647 Methodology +1008.1648 Formal Languages and Automata Theory +1008.1649 Computational Complexity +1008.1650 Formal Languages and Automata Theory +1008.1651 Formal Languages and Automata Theory +1008.1652 Formal Languages and Automata Theory +1008.1653 Formal Languages and Automata Theory +1008.1654 Formal Languages and Automata Theory +1008.1655 Formal Languages and Automata Theory +1008.1656 Formal Languages and Automata Theory +1008.1657 Formal Languages and Automata Theory +1008.1658 Formal Languages and Automata Theory +1008.1659 Formal Languages and Automata Theory +1008.1660 Formal Languages and Automata Theory +1008.1661 Formal Languages and Automata Theory +1008.1662 Formal Languages and Automata Theory +1008.1663 Formal Languages and Automata Theory +1008.1664 Graphics +1008.1665 Formal Languages and Automata Theory +1008.1666 Computational Complexity +1008.1667 Formal Languages and Automata Theory +1008.1668 Formal Languages and Automata Theory +1008.1669 Number Theory +1008.1670 Cryptography and Security +1008.1671 Software Engineering +1008.1672 Theory +1008.1675 Complex Variables +1008.1677 Soft Condensed Matter +1008.1687 Data Structures and Algorithms +1008.1690 Chemical Physics +1008.1693 Materials Science +1008.1694 Geometric Topology +1008.1695 Computer Vision and Pattern Recognition +1008.1697 Mesoscale and Nanoscale Physics +1008.1701 Probability +1008.1702 Probability +1008.1708 Probability +1008.1710 Artificial Intelligence +1008.1712 Algebraic Topology +1008.1713 +1008.1714 Category Theory +1008.1717 Plasma Physics +1008.1723 Artificial Intelligence +1008.1746 Phenomenology +1008.1750 Metric Geometry +1008.1752 Analysis of PDEs +1008.1754 Probability +1008.1757 Differential Geometry +1008.1760 Classical Physics +1008.1764 Earth and Planetary Astrophysics +1008.1773 Group Theory +cond-mat/0603390 Other Condensed Matter +cs/0106057 Digital Libraries +math/0301183 Representation Theory +math/0302108 Dynamical Systems +math/0303018 Dynamical Systems +math/0510022 Dynamical Systems +math/0610350 Dynamical Systems +0801.4877 Rings and Algebras +0802.3356 Probability +0806.4860 Mesoscale and Nanoscale Physics +0808.0881 +0810.0478 +0810.2650 Representation Theory +0811.2214 +0811.3450 Rings and Algebras +0812.1099 Probability +0901.0527 High Energy Astrophysical Phenomena +0901.4017 Mesoscale and Nanoscale Physics +0902.3980 Statistical Mechanics +0903.4734 Theory +0904.1153 Probability +0904.3790 Functional Analysis +0905.2460 Mesoscale and Nanoscale Physics +0905.2626 Probability +0905.3026 Operator Algebras +0905.3818 High Energy Astrophysical Phenomena +0906.0245 Algebraic Topology +0907.2572 Probability +0907.4872 Dynamical Systems +0908.0208 Geometric Topology +0908.2907 Probability +0909.2743 +0910.0870 Functional Analysis +0910.3451 Probability +0910.5544 Phenomenology +0911.3169 Theory +0912.1985 General Finance +0912.4517 Phenomenology +1002.1207 Mesoscale and Nanoscale Physics +1003.2098 Astrophysics of Galaxies +1003.2647 Cosmology and Nongalactic Astrophysics +1003.3484 Strongly Correlated Electrons +1003.4538 K-Theory and Homology +1004.4880 Information Theory +1005.0694 +1005.1499 Theory +1005.2793 Mesoscale and Nanoscale Physics +1005.4303 Functional Analysis +1005.4459 Solar and Stellar Astrophysics +1005.5102 Solar and Stellar Astrophysics +1006.1151 Phenomenology +1006.1790 Mesoscale and Nanoscale Physics +1006.3095 Strongly Correlated Electrons +1006.3326 Instrumentation and Methods for Astrophysics +1006.3422 Superconductivity +1006.4087 +1006.4981 Theory +1006.5090 Learning +1007.0540 +1007.1554 Classical Analysis and ODEs +1007.2281 Phenomenology +1007.2672 Phenomenology +1007.3621 Cosmology and Nongalactic Astrophysics +1007.3714 Theory +1007.4171 Phenomenology +1007.4813 Theory +1007.5307 Cosmology and Nongalactic Astrophysics +1007.5318 Data Structures and Algorithms +1008.0535 +1008.0870 Phenomenology +1008.2235 Strongly Correlated Electrons +1008.2441 Phenomenology +1008.2670 Statistical Mechanics +1008.2976 Strongly Correlated Electrons +1008.4224 Analysis of PDEs +1008.4744 Theory +1009.0887 Phenomenology +1009.0930 +1009.0956 Atomic Physics +1009.1025 Phenomenology +1009.1099 Phenomenology +1009.1807 Materials Science +1009.3070 Cosmology and Nongalactic Astrophysics +1009.5582 +1010.4723 Mesoscale and Nanoscale Physics +1010.5225 Statistical Mechanics +1010.6219 Probability +1011.0498 Computational Engineering, Finance, and Science +1011.0689 Classical Analysis and ODEs +1011.0935 Artificial Intelligence +1011.0942 Theory +1011.1117 Analysis of PDEs +1011.1124 Adaptation and Self-Organizing Systems +1011.1175 Pricing of Securities +1011.1255 Cosmology and Nongalactic Astrophysics +1011.1266 Theory +1011.1269 +1011.1270 Theory +1011.1284 Theory +1011.1285 Algebraic Geometry +1011.1290 Earth and Planetary Astrophysics +1011.1298 Geometric Topology +1011.1299 Quantum Algebra +1011.1307 Number Theory +1011.1309 Mesoscale and Nanoscale Physics +1011.1316 Atomic and Molecular Clusters +1011.1320 Fluid Dynamics +1011.1321 Logic in Computer Science +1011.1325 +1011.1326 +1011.1329 Risk Management +1011.1331 Optimization and Control +1011.1332 Combinatorics +1011.1335 Logic in Computer Science +1011.1337 Data Structures and Algorithms +1011.1340 +1011.1341 Accelerator Physics +1011.1343 +1011.1347 Optics +1011.1350 Computational Complexity +1011.1352 Information Theory +1011.1355 Combinatorics +1011.1364 Group Theory +1011.1367 Group Theory +1011.1368 Information Retrieval +1011.1377 Information Theory +1011.1379 Methodology +1011.1381 Probability +1011.1384 Statistics Theory +1011.1394 Spectral Theory +1011.1395 +1011.1398 Phenomenology +1011.1403 Number Theory +1011.1412 Materials Science +1011.1414 Algebraic Topology +1011.1419 Group Theory +1011.1422 Solar and Stellar Astrophysics +1011.1425 Numerical Analysis +1011.1426 Classical Physics +1011.1430 Algebraic Geometry +1011.1432 +1011.1436 Superconductivity +1011.1449 Analysis of PDEs +1011.1454 Soft Condensed Matter +1011.1470 Quantitative Methods +1011.1482 Chemical Physics +1011.1484 Algebraic Geometry +1011.1491 Theory +1011.1494 Fluid Dynamics +astro-ph/0702236 +math-ph/0502019 +math/0611500 Probability +physics/0512182 Classical Physics +0705.3017 +0705.3425 Logic +0706.3223 Differential Geometry +0707.1656 Mesoscale and Nanoscale Physics +0707.4528 Algebraic Geometry +0708.4310 Algebraic Topology +0710.1435 Data Structures and Algorithms +0710.4231 Artificial Intelligence +0710.4975 Artificial Intelligence +0711.1466 Artificial Intelligence +0712.0058 Classical Analysis and ODEs +0712.0483 +0801.4647 +0803.4074 Artificial Intelligence +0804.2906 Operator Algebras +0805.1760 Algebraic Geometry +0805.2769 Combinatorics +0805.3412 Strongly Correlated Electrons +0806.4746 Programming Languages +0807.2358 Computational Geometry +0807.2531 Disordered Systems and Neural Networks +0807.3245 Mesoscale and Nanoscale Physics +0807.4311 Fluid Dynamics +0808.3265 Algebraic Geometry +0808.3774 +0809.1474 Superconductivity +0811.2821 Dynamical Systems +0811.3728 Strongly Correlated Electrons +0812.5050 +0901.0096 Materials Science +0903.0930 Biological Physics +0903.1384 Logic +0904.1617 General Physics +0904.3911 +0904.4744 K-Theory and Homology +0904.4891 Methodology +0905.1617 Algebraic Geometry +0905.1794 Analysis of PDEs +0906.3120 Logic +0906.4874 Theory +0906.5496 Disordered Systems and Neural Networks +0906.5498 Materials Science +0907.0957 Soft Condensed Matter +0907.3018 +0908.0018 Cosmology and Nongalactic Astrophysics +0908.3220 Algebraic Geometry +0908.4238 Optics +0909.2770 Combinatorics +0909.3593 Learning +0909.4212 +0910.0074 +0910.4569 Group Theory +0910.4844 +0910.5296 Chaotic Dynamics +0910.5899 Metric Geometry +0911.1196 Strongly Correlated Electrons +0911.3307 Logic +0911.3577 Mesoscale and Nanoscale Physics +0911.3755 Probability +0912.1115 Logic +0912.2098 +0912.3190 Differential Geometry +1002.1519 Combinatorics +1002.2701 Superconductivity +1002.3221 Number Theory +1002.3520 Algebraic Geometry +1002.4425 +1003.0964 Experiment +1003.1199 Complex Variables +1003.4015 Number Theory +1003.4361 Phenomenology +1003.5711 Theory +1004.0106 Optics +1004.0636 Quantum Gases +1004.0801 Superconductivity +1004.2193 Number Theory +1004.3037 Cryptography and Security +1004.3954 Quantum Gases +1004.4251 Functional Analysis +1004.4797 Atomic Physics +1004.4842 +1004.5110 Atomic Physics +1004.5242 Theory +1005.0024 Mesoscale and Nanoscale Physics +1005.0069 Optimization and Control +1005.0365 +1005.0516 Strongly Correlated Electrons +1005.1299 Statistical Mechanics +1005.2483 Quantum Gases +1005.2707 Strongly Correlated Electrons +1005.3711 Atomic Physics +1005.3718 Superconductivity +1005.4738 Quantum Gases +1005.5231 Mesoscale and Nanoscale Physics +1006.0212 Phenomenology +1006.0611 Biological Physics +1006.2111 High Energy Astrophysical Phenomena +1006.2274 +1006.3575 Experiment +1006.3768 Cosmology and Nongalactic Astrophysics +1006.4346 Solar and Stellar Astrophysics +1006.4351 Operator Algebras +1006.4604 Strongly Correlated Electrons +1006.5692 Atomic and Molecular Clusters +1007.0777 +1007.1703 Mesoscale and Nanoscale Physics +1007.3980 Superconductivity +1008.0323 +1008.0389 Cosmology and Nongalactic Astrophysics +1008.1466 Algebraic Geometry +1008.1522 +1008.1934 Materials Science +1008.2029 Superconductivity +1008.2631 Mesoscale and Nanoscale Physics +1008.2902 Mesoscale and Nanoscale Physics +1008.3247 Other Condensed Matter +1008.3788 Discrete Mathematics +1008.4455 Analysis of PDEs +1008.5099 Statistical Mechanics +1008.5294 +1008.5309 Biological Physics +1009.0180 Group Theory +1009.0365 Theory +1009.0842 Social and Information Networks +1009.0919 Networking and Internet Architecture +1009.2109 Data Structures and Algorithms +1009.2198 Analysis of PDEs +1009.2266 +1009.2646 Machine Learning +1009.2744 +1009.3088 Distributed, Parallel, and Cluster Computing +1009.3818 +1009.4455 Combinatorics +1009.4509 Cellular Automata and Lattice Gases +1009.4520 Networking and Internet Architecture +1009.4521 Networking and Internet Architecture +1009.4564 Neural and Evolutionary Computing +1009.4566 Neural and Evolutionary Computing +1009.4570 Neural and Evolutionary Computing +1009.4572 Neural and Evolutionary Computing +1009.4648 High Energy Astrophysical Phenomena +1009.4718 Experiment +1009.4765 Statistical Mechanics +1009.4937 Cosmology and Nongalactic Astrophysics +1009.4946 Materials Science +1009.4949 Optimization and Control +1009.4950 Dynamical Systems +1009.4951 Solar and Stellar Astrophysics +1009.4962 Neural and Evolutionary Computing +1009.4964 Information Retrieval +1009.4971 Information Theory +1009.4972 Learning +1009.4973 Information Theory +1009.4974 Computer Vision and Pattern Recognition +1009.4975 Numerical Analysis +1009.4976 Information Retrieval +1009.4977 Hardware Architecture +1009.4978 Neural and Evolutionary Computing +1009.4979 Human-Computer Interaction +1009.4980 Human-Computer Interaction +1009.4981 Information Theory +1009.4982 Artificial Intelligence +1009.4983 Neural and Evolutionary Computing +1009.4984 Neural and Evolutionary Computing +1009.4987 Information Retrieval +1009.4988 Neural and Evolutionary Computing +1009.4989 Soft Condensed Matter +1009.4990 +1009.4991 Neural and Evolutionary Computing +1009.4992 Human-Computer Interaction +1009.4994 Information Retrieval +1009.4995 Combinatorics +1009.5000 +1009.5001 +1009.5003 Information Retrieval +1009.5004 Robotics +1009.5007 Quantum Gases +1009.5009 +1009.5012 Networking and Internet Architecture +1009.5013 Mesoscale and Nanoscale Physics +1009.5014 Commutative Algebra +1009.5016 Combinatorics +1009.5019 Computational Complexity +1009.5026 Computer Science and Game Theory +1009.5027 +1009.5028 Group Theory +1009.5029 Computational Complexity +1009.5030 Computational Complexity +1009.5031 Neural and Evolutionary Computing +1009.5040 Differential Geometry +1009.5048 Artificial Intelligence +1009.5054 Phenomenology +1009.5057 Metric Geometry +1009.5060 Mesoscale and Nanoscale Physics +1009.5062 Solar and Stellar Astrophysics +1009.5072 Statistics Theory +1009.5074 Probability +1009.5076 Dynamical Systems +1009.5078 Geophysics +1009.5082 +1009.5087 Software Engineering +1009.5088 Software Engineering +1009.5090 Solar and Stellar Astrophysics +1009.5091 Analysis of PDEs +1009.5092 Number Theory +1009.5097 Logic +1009.5098 Other Computer Science +1009.5100 +1009.5104 +1009.5106 Combinatorics +1009.5116 General Physics +1009.5122 Solar and Stellar Astrophysics +1009.5125 Exactly Solvable and Integrable Systems +1009.5128 +1009.5135 Group Theory +1009.5137 Phenomenology +1009.5141 Probability +1009.5157 Earth and Planetary Astrophysics +1009.5162 Combinatorics +1009.5174 +1009.5176 Algebraic Topology +1009.5183 Graphics +1009.5187 Classical Analysis and ODEs +1009.5188 Astrophysics of Galaxies +1009.5191 Phenomenology +1009.5192 Astrophysics of Galaxies +1009.5193 Materials Science +1009.5194 Astrophysics of Galaxies +1009.5203 Rings and Algebras +1009.5212 +1009.5220 +1009.5244 Logic +1009.5248 Statistical Mechanics +1009.5257 Information Theory +1009.5258 Solar and Stellar Astrophysics +1009.5268 Artificial Intelligence +1009.5275 Functional Analysis +1009.5277 Dynamical Systems +1009.5282 Medical Physics +1009.5286 Differential Geometry +1009.5289 Physics Education +1009.5290 Artificial Intelligence +1009.5291 High Energy Astrophysical Phenomena +1009.5296 Combinatorics +1009.5298 Algebraic Geometry +1009.5302 Analysis of PDEs +1009.5304 Differential Geometry +1009.5306 Earth and Planetary Astrophysics +1009.5313 General Physics +1009.5321 Networking and Internet Architecture +1009.5322 Soft Condensed Matter +1009.5326 Spectral Theory +1009.5332 Popular Physics +1009.5334 Classical Analysis and ODEs +1009.5335 Spectral Theory +1009.5338 Computers and Society +1009.5339 Rings and Algebras +1009.5342 General Physics +1009.5343 Mesoscale and Nanoscale Physics +1009.5346 Multiagent Systems +1009.5347 Other Computer Science +1009.5349 High Energy Astrophysical Phenomena +1009.5352 Digital Libraries +1009.5355 Neurons and Cognition +1009.5357 Number Theory +1009.5360 Number Theory +1009.5363 General Physics +1009.5365 Geometric Topology +1009.5366 Classical Analysis and ODEs +1009.5369 Differential Geometry +1009.5370 Analysis of PDEs +atom-ph/9509005 Atomic Physics +cs/0608061 Distributed, Parallel, and Cluster Computing +gr-qc/0407096 +math/0303263 Combinatorics +math/0309279 Classical Analysis and ODEs +math/0405414 K-Theory and Homology +math/9712265 Combinatorics +nucl-th/9505009 +q-alg/9604003 Quantum Algebra +q-alg/9604004 Quantum Algebra +q-alg/9607003 Quantum Algebra +0707.4567 Algebraic Geometry +0709.1615 Combinatorics +0709.3415 Symplectic Geometry +0711.0235 General Mathematics +0804.3667 Combinatorics +0805.2761 +0805.2770 +0807.1579 Differential Geometry +0812.0127 Statistical Mechanics +0901.4057 Experiment +0903.5053 Combinatorics +0905.2188 High Energy Astrophysical Phenomena +0905.2609 Superconductivity +0907.0909 +0908.3109 Geometric Topology +0909.1095 Atomic Physics +0910.2444 +0910.5912 Mesoscale and Nanoscale Physics +1002.2041 +math/0402273 Differential Geometry +math/0606629 Geometric Topology +math/0702890 Algebraic Geometry +0706.1033 Quantum Algebra +0706.2563 +0706.4103 Analysis of PDEs +0707.1700 +0708.0435 General Physics +0710.1213 Other Condensed Matter +0802.2451 Information Theory +0803.2193 Other Condensed Matter +0804.3623 Exactly Solvable and Integrable Systems +0805.2048 Algebraic Geometry +0807.5124 Operator Algebras +0811.4205 Exactly Solvable and Integrable Systems +0812.4502 +0906.3247 Algebraic Topology +0906.5575 Algebraic Topology +0908.1589 Atmospheric and Oceanic Physics +0908.2586 Cosmology and Nongalactic Astrophysics +0908.4071 Combinatorics +0910.0039 Analysis of PDEs +0910.2363 Statistical Mechanics +0911.1162 Algebraic Geometry +0911.1722 Quantum Gases +0911.3547 Mesoscale and Nanoscale Physics +0912.0182 Strongly Correlated Electrons +0912.0485 +0912.4414 Strongly Correlated Electrons +0912.4752 General Physics +0912.5346 Superconductivity +1001.1466 Rings and Algebras +1001.1488 Statistical Mechanics +1001.2007 Theory +1001.2765 Statistical Mechanics +1002.0351 General Physics +1002.2443 Number Theory +1002.2588 Cosmology and Nongalactic Astrophysics +1002.2698 Algebraic Geometry +1003.2045 Differential Geometry +1003.3430 Strongly Correlated Electrons +1003.3451 Cosmology and Nongalactic Astrophysics +1003.3782 +1003.4026 Atomic Physics +1003.5632 Analysis of PDEs +1004.1273 Mesoscale and Nanoscale Physics +1004.2862 Complex Variables +1004.3216 Atomic Physics +1004.5003 +1005.3245 Theory +1005.4330 Complex Variables +1005.4513 Dynamical Systems +1005.5049 Theory +1005.5303 Geophysics +1006.0782 Earth and Planetary Astrophysics +1006.0787 Superconductivity +1006.1155 +1006.1162 Information Theory +1006.1357 Phenomenology +1006.1522 Plasma Physics +1006.1661 Information Theory +1006.1704 Other Computer Science +1006.1870 Biomolecules +1006.1893 Mesoscale and Nanoscale Physics +1006.1910 Mesoscale and Nanoscale Physics +1006.1912 Superconductivity +1006.1913 Computational Physics +1006.1914 Methodology +1006.1916 Cryptography and Security +1006.1918 Cryptography and Security +1006.1919 Cryptography and Security +1006.1921 Computational Geometry +1006.1922 Theory +1006.1923 Data Structures and Algorithms +1006.1926 Distributed, Parallel, and Cluster Computing +1006.1932 +1006.1935 +1006.1948 Cryptography and Security +1006.1951 Software Engineering +1006.1955 Software Engineering +1006.1957 Analysis of PDEs +1006.1960 Functional Analysis +1006.1965 Medical Physics +1006.1972 Algebraic Geometry +1006.1974 Algebraic Geometry +1006.1977 Experiment +1006.1980 Differential Geometry +1006.1987 Functional Analysis +1006.1993 Digital Libraries +1006.2011 Rings and Algebras +1006.2017 Strongly Correlated Electrons +1006.2022 Information Theory +1006.2023 Accelerator Physics +1006.2029 History and Philosophy of Physics +1006.2030 Optimization and Control +1006.2031 Cosmology and Nongalactic Astrophysics +1006.2033 Number Theory +1006.2037 +1006.2038 Disordered Systems and Neural Networks +1006.2044 Combinatorics +1006.2045 Accelerator Physics +1006.2048 Networking and Internet Architecture +1006.2050 Probability +1006.2053 Metric Geometry +1006.2062 Representation Theory +1006.2063 Computational Complexity +1006.2070 Methodology +1006.2074 Other Computer Science +1006.2077 Databases +1006.2078 Phenomenology +1006.2082 Computers and Society +1006.2084 Cosmology and Nongalactic Astrophysics +1006.2085 Other Computer Science +1006.2086 Information Theory +1006.2088 Databases +1006.2097 Cosmology and Nongalactic Astrophysics +1006.2098 Cosmology and Nongalactic Astrophysics +1006.2102 Instrumentation and Methods for Astrophysics +1006.2104 Operating Systems +1006.2106 Algebraic Geometry +1006.2107 Other Computer Science +1006.2114 Group Theory +1006.2115 Complex Variables +1006.2120 Probability +1006.2121 Functional Analysis +1006.2128 Mesoscale and Nanoscale Physics +1006.2130 +math/0504426 General Mathematics +math/0602283 Algebraic Topology +math/0602376 Numerical Analysis +math/0702018 Quantum Algebra +physics/0109060 General Physics +physics/0612149 Optics +quant-ph/0512034 +0706.4037 +0707.0938 Classical Physics +0708.2318 Strongly Correlated Electrons +0708.3194 Classical Physics +0709.1253 K-Theory and Homology +0709.3457 Classical Physics +0710.2488 Algebraic Geometry +0711.2403 Analysis of PDEs +0807.0350 Representation Theory +0807.1654 Commutative Algebra +0807.2290 Strongly Correlated Electrons +0901.1969 Mesoscale and Nanoscale Physics +0902.0213 Mesoscale and Nanoscale Physics +0902.0323 Algebraic Geometry +0903.4397 +0904.0462 Functional Analysis +0904.2872 Combinatorics +0907.1558 Physics and Society +0908.3542 Spectral Theory +0908.3747 Strongly Correlated Electrons +0910.1859 Quantum Gases +0910.5062 Quantum Gases +0911.0578 Representation Theory +0911.3334 Statistical Mechanics +0911.5463 Superconductivity +0912.1567 Physics and Society +0912.2129 Complex Variables +1001.0324 Algebraic Geometry +1001.3924 K-Theory and Homology +1001.4274 Digital Libraries +1001.4276 Digital Libraries +1002.1867 Statistical Mechanics +1002.4784 Symbolic Computation +1003.0382 Statistical Mechanics +1003.3880 Software Engineering +1003.4721 Analysis of PDEs +1003.5447 Logic in Computer Science +1004.1175 +1004.1897 Algebraic Geometry +1004.4254 Strongly Correlated Electrons +1004.4634 Representation Theory +1004.4732 Information Theory +1004.5410 Cosmology and Nongalactic Astrophysics +1005.1125 Cosmology and Nongalactic Astrophysics +1005.2364 Learning +1005.2400 Computational Complexity +1005.2415 Cosmology and Nongalactic Astrophysics +1005.2430 Operator Algebras +1005.2436 +1005.2440 Earth and Planetary Astrophysics +1005.2442 Optimization and Control +1005.2448 +1005.2449 +1005.2468 Materials Science +1005.2471 +1005.2474 Probability +1005.2477 Probability +1005.2479 Analysis of PDEs +1005.2481 Cosmology and Nongalactic Astrophysics +1005.2487 Optimization and Control +1005.2491 +1005.2494 Probability +1005.2496 Quantum Algebra +1005.2499 Other Computer Science +1005.2500 Probability +1005.2511 Analysis of PDEs +1005.2514 Combinatorics +1005.2525 Phenomenology +1005.2535 Metric Geometry +1005.2539 Representation Theory +1005.2545 Analysis of PDEs +1005.2546 Representation Theory +1005.2547 Analysis of PDEs +1005.2549 Differential Geometry +1005.2553 Combinatorics +1005.2557 Differential Geometry +1005.2564 Experiment +1005.2565 Rings and Algebras +1005.2566 Combinatorics +1005.2567 Distributed, Parallel, and Cluster Computing +1005.2568 Combinatorics +1005.2569 Experiment +1005.2572 Cosmology and Nongalactic Astrophysics +1005.2573 Plasma Physics +1005.2574 Mesoscale and Nanoscale Physics +1005.2577 Chemical Physics +1005.2578 Mesoscale and Nanoscale Physics +1005.2585 Experiment +1005.2588 Quantitative Methods +1005.2590 Logic +1005.2595 Theory +1005.2598 Probability +1005.2602 Analysis of PDEs +1005.2605 Algebraic Geometry +astro-ph/0008465 +cond-mat/0607027 Strongly Correlated Electrons +math-ph/0411041 +math/0409149 Group Theory +math/0608139 Functional Analysis +math/0703775 Differential Geometry +physics/0411034 Classical Physics +physics/0501134 Classical Physics +physics/0506181 Classical Physics +physics/0605003 Classical Physics +quant-ph/0306032 +quant-ph/0409138 +0706.0008 History and Philosophy of Physics +0707.3408 Probability +0803.3321 Differential Geometry +0805.3502 +0903.3688 Complex Variables +0905.1142 Analysis of PDEs +0906.5217 Theory +0908.1915 Soft Condensed Matter +0909.0586 Number Theory +0909.0795 +0909.2096 Plasma Physics +0909.2361 Data Analysis, Statistics and Probability +0909.4254 Statistical Mechanics +0909.5317 Mesoscale and Nanoscale Physics +0910.1633 +0911.0726 General Physics +0912.0827 Differential Geometry +0912.4210 Statistical Mechanics +0912.4764 +0912.5106 Theory +0912.5247 Analysis of PDEs +0912.5515 Logic in Computer Science +cond-mat/0703582 Statistical Mechanics +0705.0426 Group Theory +0707.2212 Soft Condensed Matter +0707.2917 Strongly Correlated Electrons +0711.3821 Dynamical Systems +0711.5010 Theory +0712.2490 +0803.2592 Group Theory +0804.1267 Algebraic Topology +0806.4067 Disordered Systems and Neural Networks +0807.0354 +0807.1689 +0807.1804 +0808.3215 Mesoscale and Nanoscale Physics +0810.0278 Soft Condensed Matter +0810.2695 +0810.4656 Rings and Algebras +0811.1089 Dynamical Systems +0811.1713 +0811.2575 Phenomenology +0811.2950 Atomic Physics +0812.2389 Analysis of PDEs +0812.3242 Other Condensed Matter +0901.0608 Information Theory +0901.1512 Functional Analysis +0902.1810 Representation Theory +0903.2545 K-Theory and Homology +0903.2704 Functional Analysis +0904.1078 Pricing of Securities +0904.2705 +0904.2867 Statistical Mechanics +0904.3238 +0904.4677 Theory +0905.0888 Instrumentation and Methods for Astrophysics +0905.3260 Disordered Systems and Neural Networks +0905.3502 Cell Behavior +0906.2818 Phenomenology +0907.0428 Mesoscale and Nanoscale Physics +0907.1934 +0907.2495 Theory +0907.3994 Astrophysics of Galaxies +0907.5050 Phenomenology +0909.1992 Functional Analysis +0909.3663 General Topology +0909.5328 Superconductivity +0910.1231 Disordered Systems and Neural Networks +0910.1573 Superconductivity +0910.2999 Materials Science +0910.4048 Number Theory +0910.4288 +0910.4593 +0910.5082 Earth and Planetary Astrophysics +0911.2090 Statistical Mechanics +0911.2295 Optics +0911.2796 Earth and Planetary Astrophysics +0912.0705 Mesoscale and Nanoscale Physics +0912.2127 +0912.2456 Exactly Solvable and Integrable Systems +1001.1518 Materials Science +1001.3983 Spectral Theory +1001.4238 Astrophysics of Galaxies +1001.4960 +1001.5031 Theory +1001.5035 Cosmology and Nongalactic Astrophysics +1001.5044 Lattice +1001.5046 High Energy Astrophysical Phenomena +1001.5050 Software Engineering +1001.5059 Solar and Stellar Astrophysics +1001.5060 High Energy Astrophysical Phenomena +1001.5061 +1001.5067 Strongly Correlated Electrons +1001.5072 Functional Analysis +1001.5073 Information Theory +1001.5074 Information Theory +1001.5078 Solar and Stellar Astrophysics +1001.5079 Information Theory +1001.5086 Solar and Stellar Astrophysics +1001.5092 Solar and Stellar Astrophysics +1001.5093 Complex Variables +1001.5095 Combinatorics +1001.5097 Solar and Stellar Astrophysics +1001.5100 Information Theory +1001.5101 Complex Variables +1001.5102 Spectral Theory +1001.5104 Combinatorics +1001.5112 Algebraic Geometry +1001.5123 Cosmology and Nongalactic Astrophysics +1001.5125 Group Theory +1001.5126 Materials Science +1001.5127 Geometric Topology +1001.5130 Genomics +1001.5140 Dynamical Systems +1001.5143 Solar and Stellar Astrophysics +1001.5144 Astrophysics of Galaxies +1001.5146 Theory +1001.5155 Phenomenology +1001.5156 +1001.5158 Analysis of PDEs +1001.5163 +1001.5170 Astrophysics of Galaxies +1001.5173 Phenomenology +1001.5175 +1001.5181 Number Theory +1001.5186 Differential Geometry +1001.5187 Astrophysics of Galaxies +1001.5194 Networking and Internet Architecture +1001.5198 Differential Geometry +1001.5199 Mesoscale and Nanoscale Physics +1001.5202 Pricing of Securities +1001.5203 Lattice +1001.5207 Lattice +1001.5209 Space Physics +1001.5214 Number Theory +1001.5220 Commutative Algebra +1001.5223 Differential Geometry +1001.5224 Commutative Algebra +1001.5228 Probability +1001.5247 Mesoscale and Nanoscale Physics +1001.5249 Statistical Mechanics +1001.5252 High Energy Astrophysical Phenomena +1001.5254 Classical Analysis and ODEs +astro-ph/0605213 +cond-mat/0207101 Soft Condensed Matter +hep-th/0606177 Theory +hep-th/0607043 Theory +hep-th/0703274 Theory +math/0605483 Algebraic Geometry +0709.1971 Quantum Algebra +0711.3669 Functional Analysis +0712.1534 +0809.5181 Superconductivity +0810.2270 Logic +0812.0960 Materials Science +0812.3564 Theory +0903.4518 Probability +0906.3368 Theory +0907.0419 Mesoscale and Nanoscale Physics +0909.1683 Quantum Gases +1001.2350 Statistical Mechanics +math/0609450 Functional Analysis +nlin/0703050 Cellular Automata and Lattice Gases +0704.3439 Superconductivity +0705.0078 Disordered Systems and Neural Networks +0710.4971 Quantum Algebra +0711.4814 Space Physics +0711.4951 +0712.2724 +0801.1959 +0803.0100 +0803.2800 Rings and Algebras +0803.3446 +0806.0224 General Physics +0806.0523 Phenomenology +0806.3525 +0806.4262 +0807.0894 Theory +0807.1521 Probability +0807.2125 Dynamical Systems +0808.1203 Materials Science +0808.2016 Phenomenology +0808.2450 Theory +0809.0069 Other Condensed Matter +0810.0658 Operator Algebras +0810.5076 +0811.0552 Strongly Correlated Electrons +0811.3862 Phenomenology +0811.4128 Operator Algebras +0812.1989 Theory +0812.2050 Classical Analysis and ODEs +0812.2851 Data Structures and Algorithms +0901.4223 Theory +0902.1194 +0903.1992 +0903.2267 +0903.2644 Theory +0903.3153 +0903.4859 Other Condensed Matter +0904.1849 Phenomenology +0905.1346 Materials Science +0905.1801 +0905.3751 Physics and Society +0905.3931 Phenomenology +0905.4413 Astrophysics of Galaxies +0906.0501 Computational Physics +0906.1237 Theory +0906.2634 High Energy Astrophysical Phenomena +0906.2825 +0906.3219 Theory +0906.3272 Theory +0906.3555 Phenomenology +0906.3594 Fluid Dynamics +0906.3789 Phenomenology +0906.4651 Probability +0906.4971 Cosmology and Nongalactic Astrophysics +0906.5309 Phenomenology +0906.5593 Phenomenology +0907.2314 Quantum Gases +0907.2357 Phenomenology +0907.2583 +0907.3501 Functional Analysis +0907.3519 Phenomenology +0908.0050 Machine Learning +0908.0878 Theory +0908.1443 +0908.1658 Materials Science +0908.1750 Phenomenology +0908.2041 Materials Science +0908.2071 Quantum Gases +0908.2309 +0908.2730 Materials Science +0908.3116 Phenomenology +0908.3296 Phenomenology +0909.0410 Theory +0909.1609 Phenomenology +0909.2992 Mesoscale and Nanoscale Physics +0909.3411 Theory +0909.4748 Phenomenology +0909.5098 Phenomenology +0909.5125 Molecular Networks +0909.5264 Theory +0909.5410 Phenomenology +0909.5537 Classical Analysis and ODEs +0909.5602 Mesoscale and Nanoscale Physics +0910.0203 Phenomenology +0910.0637 Theory +0910.0648 Quantum Gases +0910.0934 Theory +0910.1798 Materials Science +0910.1801 Cosmology and Nongalactic Astrophysics +0910.2650 Instrumentation and Detectors +0910.2810 Phenomenology +0910.3032 Phenomenology +0910.3354 Analysis of PDEs +0910.3571 +0910.3594 Theory +0910.3651 Phenomenology +0910.3664 +0910.4431 Theory +0910.4525 Phenomenology +0910.4821 +0910.4829 Phenomenology +0910.4925 Theory +0911.1016 Superconductivity +0911.1839 Disordered Systems and Neural Networks +0912.0050 Atomic Physics +0912.2918 Instrumentation and Methods for Astrophysics +1001.3915 Materials Science +1001.4489 Analysis of PDEs +1001.4839 Representation Theory +1002.1467 Strongly Correlated Electrons +1002.1478 Disordered Systems and Neural Networks +1002.1583 Statistics Theory +1002.1966 Mesoscale and Nanoscale Physics +1002.1969 Solar and Stellar Astrophysics +1002.1970 Instrumentation and Detectors +1002.1981 +1002.1985 Computers and Society +1002.1990 Superconductivity +1002.1992 Accelerator Physics +1002.1995 Computational Finance +1002.1997 Phenomenology +1002.1999 Optics +1002.2001 Numerical Analysis +1002.2002 Physics Education +1002.2006 Astrophysics of Galaxies +1002.2007 Physics and Society +1002.2012 Neural and Evolutionary Computing +1002.2017 Computation +1002.2023 Algebraic Geometry +1002.2024 Algebraic Geometry +1002.2026 Statistical Mechanics +1002.2031 Materials Science +1002.2032 Algebraic Topology +1002.2033 +1002.2034 Artificial Intelligence +1002.2036 Dynamical Systems +1002.2044 Learning +1002.2045 Commutative Algebra +1002.2046 Astrophysics of Galaxies +1002.2050 Computer Vision and Pattern Recognition +1002.2059 Data Analysis, Statistics and Probability +1002.2060 Classical Analysis and ODEs +1002.2080 Methodology +1002.2082 Numerical Analysis +1002.2084 Data Structures and Algorithms +1002.2090 Geometric Topology +1002.2094 Analysis of PDEs +1002.2097 Algebraic Geometry +1002.2098 Number Theory +1002.2100 Atmospheric and Oceanic Physics +1002.2102 Mesoscale and Nanoscale Physics +1002.2105 Optimization and Control +1002.2109 Earth and Planetary Astrophysics +1002.2115 Combinatorics +1002.2118 Soft Condensed Matter +1002.2124 Probability +1002.2127 Materials Science +1002.2131 Fluid Dynamics +1002.2134 Computers and Society +1002.2135 Optimization and Control +1002.2137 Analysis of PDEs +1002.2138 Phenomenology +1002.2140 Phenomenology +1002.2147 Data Structures and Algorithms +1002.2148 +1002.2152 Soft Condensed Matter +1002.2154 Analysis of PDEs +1002.2159 Materials Science +1002.2160 Cosmology and Nongalactic Astrophysics +1002.2162 Geophysics +1002.2163 Probability +1002.2171 Trading and Market Microstructure +1002.2178 +1002.2182 Computer Vision and Pattern Recognition +1002.2184 Multimedia +1002.2185 Functional Analysis +1002.2186 Networking and Internet Architecture +1002.2187 Networking and Internet Architecture +1002.2189 Networking and Internet Architecture +1002.2191 Human-Computer Interaction +1002.2192 Logic +1002.2193 Multimedia +1002.2194 Networking and Internet Architecture +1002.2195 Neural and Evolutionary Computing +1002.2196 Neural and Evolutionary Computing +1002.2197 Software Engineering +1002.2199 Other Computer Science +1002.2202 Artificial Intelligence +1002.2203 Formal Languages and Automata Theory +1002.2204 Atomic Physics +1002.2208 Number Theory +1002.2210 Number Theory +cond-mat/0512602 Strongly Correlated Electrons +cond-mat/0702294 Materials Science +math/0506463 Logic +math/0605644 Dynamical Systems +physics/0505072 Computational Physics +0801.2030 Chaotic Dynamics +0801.3845 +0804.2985 Algebraic Geometry +0806.1690 Theory +0807.1925 +0807.2630 Theory +0809.2035 Analysis of PDEs +0809.2436 Differential Geometry +0810.2524 +0901.1652 +0901.2079 Dynamical Systems +0902.4889 +0904.0536 Optics +0904.2351 Mesoscale and Nanoscale Physics +0907.0391 Strongly Correlated Electrons +0907.1643 Solar and Stellar Astrophysics +0907.2158 Exactly Solvable and Integrable Systems +0907.4525 Probability +0909.0672 Algebraic Geometry +0909.3217 Instrumentation and Detectors +0909.3574 Theory +0909.3584 Cosmology and Nongalactic Astrophysics +0909.4305 Cosmology and Nongalactic Astrophysics +0909.4520 Dynamical Systems +0909.5079 Numerical Analysis +0910.1158 Phenomenology +0910.1326 Phenomenology +0910.1499 Biological Physics +0910.2258 Strongly Correlated Electrons +0910.2311 Differential Geometry +0910.3130 Phenomenology +0910.4006 Atomic and Molecular Clusters +0911.0124 Materials Science +0911.2554 +0911.2821 Theory +0911.3632 Theory +0912.1426 Analysis of PDEs +0912.2984 +1001.1361 Phenomenology +1001.3418 Cosmology and Nongalactic Astrophysics +1001.5090 Analysis of PDEs +1001.5161 +1002.0855 Networking and Internet Architecture +1002.1352 Experiment +1002.1629 Networking and Internet Architecture +1002.3768 Experiment +1002.4167 Experiment +1002.4594 Experiment +1003.0079 Learning +1003.0565 Superconductivity +1003.0801 Quantum Gases +1003.1156 +1003.1427 Phenomenology +1003.4282 Cosmology and Nongalactic Astrophysics +1003.4763 Cosmology and Nongalactic Astrophysics +1003.5352 +1004.0481 Atomic Physics +1004.0509 +1004.1648 Superconductivity +1004.2410 Cosmology and Nongalactic Astrophysics +1004.3453 Mesoscale and Nanoscale Physics +1004.4598 Networking and Internet Architecture +1005.0447 Analysis of PDEs +1005.0787 Strongly Correlated Electrons +1005.1446 Strongly Correlated Electrons +1005.2724 Data Structures and Algorithms +1005.2798 +1005.3141 Quantum Gases +1005.3297 Fluid Dynamics +1005.3763 Statistical Mechanics +1005.4226 +1005.4923 Disordered Systems and Neural Networks +1005.5301 Solar and Stellar Astrophysics +1005.5492 Combinatorics +1006.0305 +1006.2184 Superconductivity +1006.3750 +1006.3765 Optimization and Control +1006.4201 Experiment +1006.4589 Phenomenology +1006.4723 Quantum Gases +1006.4792 Theory +1006.4950 Quantum Gases +1006.5126 Cosmology and Nongalactic Astrophysics +1006.5165 Theory +1006.5330 Phenomenology +1007.0304 Analysis of PDEs +1007.0543 Cosmology and Nongalactic Astrophysics +1007.0584 Optimization and Control +1007.0594 Optimization and Control +1007.1239 Phenomenology +1007.2330 Theory +1007.2667 Number Theory +1007.3480 Theory +1007.3934 Information Theory +1007.4498 +1007.4888 +1007.5360 Accelerator Physics +1007.5438 Theory +1008.1843 Computer Science and Game Theory +1008.2394 Number Theory +1008.2424 Astrophysics of Galaxies +1008.2671 +1008.2739 Theory +1008.3232 Exactly Solvable and Integrable Systems +1008.3519 Optimization and Control +1008.4314 Theory +1008.5384 +1009.1014 Number Theory +1009.1913 Earth and Planetary Astrophysics +1009.2449 Analysis of PDEs +1009.2883 Strongly Correlated Electrons +1009.3122 Strongly Correlated Electrons +1009.3515 Learning +1009.4052 Superconductivity +1010.1546 Phenomenology +1010.2369 Mesoscale and Nanoscale Physics +1010.2883 Earth and Planetary Astrophysics +1010.4226 Trading and Market Microstructure +1010.4884 +1010.5189 Quantum Algebra +1010.5232 Experiment +1010.5501 Cosmology and Nongalactic Astrophysics +1010.5502 Phenomenology +1010.5504 Social and Information Networks +1010.5507 Cosmology and Nongalactic Astrophysics +1010.5510 Analysis of PDEs +1010.5514 Theory +1010.5520 Materials Science +1010.5523 Lattice +1010.5524 Information Theory +1010.5526 Information Theory +1010.5528 High Energy Astrophysical Phenomena +1010.5529 Information Theory +1010.5532 Information Theory +1010.5535 Analysis of PDEs +1010.5541 Materials Science +1010.5548 Materials Science +1010.5553 Quantum Gases +1010.5562 Computational Engineering, Finance, and Science +1010.5565 Logic in Computer Science +1010.5566 Programming Languages +1010.5567 Cryptography and Security +1010.5568 Cryptography and Security +1010.5569 Programming Languages +1010.5570 Programming Languages +1010.5571 Logic in Computer Science +1010.5572 Logic in Computer Science +1010.5573 Distributed, Parallel, and Cluster Computing +1010.5576 Solar and Stellar Astrophysics +1010.5582 Programming Languages +1010.5584 Information Retrieval +1010.5586 Methodology +1010.5587 Probability +1010.5590 Analysis of PDEs +1010.5593 Differential Geometry +1010.5596 Differential Geometry +1010.5598 Chemical Physics +1010.5601 Representation Theory +1010.5602 Neurons and Cognition +1010.5605 Probability +1010.5610 Computer Vision and Pattern Recognition +1010.5614 Combinatorics +1010.5623 Networking and Internet Architecture +1010.5633 Algebraic Topology +1010.5636 Lattice +1010.5639 Disordered Systems and Neural Networks +1010.5642 Computer Science and Game Theory +1010.5646 General Topology +1010.5653 General Finance +1010.5654 Astrophysics of Galaxies +1010.5660 Lattice +1010.5665 Logic in Computer Science +1010.5668 Metric Geometry +1010.5671 Fluid Dynamics +1010.5673 Combinatorics +1010.5681 Differential Geometry +1010.5687 Lattice +1010.5688 Functional Analysis +1010.5690 General Physics +1010.5694 Programming Languages +1010.5697 Other Condensed Matter +1010.5700 Phenomenology +1010.5702 Classical Analysis and ODEs +1010.5706 Combinatorics +1010.5707 Phenomenology +1010.5710 Plasma Physics +1010.5717 Data Structures and Algorithms +1010.5719 Geometric Topology +1010.5720 Information Theory +1010.5721 Experiment +1010.5724 Lattice +1010.5730 Numerical Analysis +1010.5731 Mesoscale and Nanoscale Physics +1010.5735 Dynamical Systems +1010.5736 Dynamical Systems +1010.5738 Differential Geometry +1010.5739 Operator Algebras +1010.5744 Strongly Correlated Electrons +1010.5749 Computer Science and Game Theory +1010.5753 Atmospheric and Oceanic Physics +1010.5759 Solar and Stellar Astrophysics +1010.5760 Optics +1010.5762 +1010.5770 High Energy Astrophysical Phenomena +1010.5772 Combinatorics +1010.5774 Popular Physics +1010.5775 Dynamical Systems +astro-ph/0003071 +astro-ph/0009227 +astro-ph/0212327 +astro-ph/0404576 +astro-ph/0405278 +astro-ph/0406275 +astro-ph/0408363 +astro-ph/0411241 +astro-ph/0412250 +astro-ph/0609175 +astro-ph/0702400 +astro-ph/9705155 +astro-ph/9802186 +astro-ph/9903140 +astro-ph/9911068 +cond-mat/0408241 Other Condensed Matter +cond-mat/0505020 Other Condensed Matter +cond-mat/0511127 Statistical Mechanics +cond-mat/0703047 Other Condensed Matter +hep-lat/0605002 Lattice +hep-ph/0401073 Phenomenology +0802.2225 Differential Geometry +0805.1234 Geometric Topology +0809.2477 Probability +0810.2970 +0810.2975 +0810.2979 +0811.2696 Algebraic Geometry +0901.1907 Disordered Systems and Neural Networks +0904.2350 Mesoscale and Nanoscale Physics +0905.0072 Pricing of Securities +0906.1917 Disordered Systems and Neural Networks +0906.3094 +0907.2230 Functional Analysis +0907.2286 Algebraic Geometry +0907.2544 General Physics +0908.0886 +0908.2000 Materials Science +0908.2921 +0908.4398 +0909.2197 Mesoscale and Nanoscale Physics +0909.4975 General Physics +0909.5605 +0909.5616 Astrophysics of Galaxies +0910.0108 Astrophysics of Galaxies +0910.0479 Atomic Physics +0910.2711 Quantum Gases +0911.1551 Disordered Systems and Neural Networks +0911.2070 Statistical Mechanics +0911.3324 Atomic Physics +0911.3438 Disordered Systems and Neural Networks +0911.4519 Optics +0911.5252 +0912.4854 Number Theory +1002.0560 +1002.3345 Learning +1002.4252 Phenomenology +1002.4593 Disordered Systems and Neural Networks +1002.4761 Soft Condensed Matter +1003.0891 Strongly Correlated Electrons +1003.1251 Data Structures and Algorithms +1003.2524 +1003.3579 Mesoscale and Nanoscale Physics +1003.3756 Strongly Correlated Electrons +1003.4618 Quantum Gases +1004.1082 Differential Geometry +1004.1543 General Physics +1004.1666 Computational Geometry +1004.2623 Dynamical Systems +1005.2812 Geometric Topology +1005.2866 Algebraic Geometry +1005.3153 Number Theory +1005.3819 Optics +1005.3833 Popular Physics +1005.3834 Solar and Stellar Astrophysics +1005.3836 Metric Geometry +1005.3842 K-Theory and Homology +1005.3851 High Energy Astrophysical Phenomena +1005.3856 Geometric Topology +1005.3859 +1005.3860 Mesoscale and Nanoscale Physics +1005.3863 Statistical Mechanics +1005.3871 Number Theory +1005.3873 Information Theory +1005.3879 Mesoscale and Nanoscale Physics +1005.3882 Analysis of PDEs +1005.3883 Numerical Analysis +1005.3885 Solar and Stellar Astrophysics +1005.3888 Cosmology and Nongalactic Astrophysics +1005.3891 Populations and Evolution +1005.3893 Experiment +1005.3894 Phenomenology +1005.3903 History and Philosophy of Physics +1005.3904 Materials Science +1005.3907 Atmospheric and Oceanic Physics +1005.3910 Analysis of PDEs +1005.3911 High Energy Astrophysical Phenomena +1005.3913 Complex Variables +1005.3916 Disordered Systems and Neural Networks +1005.3920 Applications +1005.3922 Analysis of PDEs +1005.3928 Strongly Correlated Electrons +1005.3929 Fluid Dynamics +1005.3931 Strongly Correlated Electrons +1005.3934 Functional Analysis +1005.3943 General Physics +1005.3956 Computational Finance +1005.3957 Probability +1005.3959 Earth and Planetary Astrophysics +1005.3960 Theory +1005.3971 +1005.3972 Theory +1005.3973 +1005.3977 Plasma Physics +1005.3982 Algebraic Geometry +1005.3986 Logic +1005.3988 Algebraic Geometry +1005.3990 Algebraic Geometry +1005.3997 Quantum Gases +1005.4002 Numerical Analysis +1005.4005 Computational Engineering, Finance, and Science +1005.4008 Digital Libraries +1005.4009 Networking and Internet Architecture +1005.4012 Cryptography and Security +1005.4013 Networking and Internet Architecture +1005.4014 Multimedia +1005.4015 Networking and Internet Architecture +1005.4016 Computers and Society +1005.4017 Networking and Internet Architecture +1005.4019 Cosmology and Nongalactic Astrophysics +1005.4020 Computer Vision and Pattern Recognition +1005.4022 Programming Languages +1005.4023 Cryptography and Security +1005.4025 Artificial Intelligence +1005.4026 Digital Libraries +1005.4029 Other Computer Science +1005.4030 Computers and Society +1005.4031 Networking and Internet Architecture +1005.4033 Data Structures and Algorithms +1005.4043 Rings and Algebras +1005.4045 Classical Analysis and ODEs +1005.4047 Statistical Mechanics +1005.4048 Cosmology and Nongalactic Astrophysics +1005.4052 Number Theory +cond-mat/0101147 Strongly Correlated Electrons +cond-mat/0109435 Strongly Correlated Electrons +cond-mat/0109520 Mesoscale and Nanoscale Physics +cond-mat/0201059 Strongly Correlated Electrons +cond-mat/0203472 Strongly Correlated Electrons +cond-mat/0307470 Superconductivity +cond-mat/0308072 Strongly Correlated Electrons +cond-mat/0404023 Strongly Correlated Electrons +cond-mat/0404024 Strongly Correlated Electrons +cond-mat/9412092 +cond-mat/9501065 +cond-mat/9502034 +cond-mat/9801015 Strongly Correlated Electrons +math/0411456 Algebraic Topology +quant-ph/0410043 +quant-ph/0603136 +0705.2409 +0706.2030 Experiment +0710.0282 +0710.1211 Experiment +0802.3510 Theory +0803.2067 +0804.0298 Analysis of PDEs +0804.3096 +0805.2197 +0805.2378 +0805.3438 Theory +0806.2874 Phenomenology +0807.2126 Phenomenology +0807.3239 +0807.3305 Theory +0808.1079 Theory +0808.2201 Phenomenology +0808.2289 +0809.1275 +0809.3649 +0810.1017 Commutative Algebra +0810.3437 +0810.4578 Differential Geometry +0811.0279 +0812.0433 Algebraic Geometry +0812.1482 +0812.2370 +0812.2406 +0812.5091 Theory +0901.0470 +0901.0545 +0901.2591 Representation Theory +0901.2614 Theory +0901.3372 Cosmology and Nongalactic Astrophysics +0901.3777 Phenomenology +0901.3992 Representation Theory +0901.4325 Solar and Stellar Astrophysics +0902.0619 Cosmology and Nongalactic Astrophysics +0902.0746 Networking and Internet Architecture +0902.1696 +0902.1748 Cosmology and Nongalactic Astrophysics +0902.3507 Mesoscale and Nanoscale Physics +0902.4249 Cosmology and Nongalactic Astrophysics +0902.4654 +0903.2609 +0904.0085 Theory +0904.1058 +0904.1393 Classical Analysis and ODEs +0904.1495 Dynamical Systems +0904.2037 Learning +0904.2708 Experiment +0904.3487 Experiment +0904.3936 Earth and Planetary Astrophysics +0904.3943 Instrumentation and Methods for Astrophysics +0904.4691 Theory +0905.0934 Theory +0905.1029 Phenomenology +0905.1715 Cosmology and Nongalactic Astrophysics +0905.3182 Solar and Stellar Astrophysics +0905.3379 Theory +0905.3419 +0905.4071 High Energy Astrophysical Phenomena +0906.0232 Cosmology and Nongalactic Astrophysics +0906.0257 Theory +0906.0460 Phenomenology +0906.0486 Fluid Dynamics +0906.0556 Fluid Dynamics +0906.0797 Phenomenology +0906.1026 Astrophysics of Galaxies +0906.2039 +0906.2120 +0906.2655 +0906.3022 Cosmology and Nongalactic Astrophysics +0906.3347 Cosmology and Nongalactic Astrophysics +0906.3427 Combinatorics +0906.3745 Phenomenology +0906.4224 High Energy Astrophysical Phenomena +0906.4335 Phenomenology +0906.4342 High Energy Astrophysical Phenomena +0906.4437 Operator Algebras +0906.5358 Astrophysics of Galaxies +0907.0021 Theory +0907.0054 Astrophysics of Galaxies +0907.0106 Theory +0907.0277 Superconductivity +0907.0451 Phenomenology +0907.1174 Theory +0907.1626 +0907.1979 Phenomenology +0907.2244 Theory +0907.2896 Information Theory +0907.2973 Phenomenology +0907.4047 Phenomenology +0907.4658 Theory +0907.4790 Phenomenology +0907.5359 +0908.0730 Phenomenology +0908.1088 Strongly Correlated Electrons +0908.1463 +0908.1530 Commutative Algebra +0908.2246 Theory +0908.2621 Theory +0908.3263 Theory +0908.3570 +0908.3937 Superconductivity +0909.0005 Theory +0909.1160 +0909.1197 Theory +0909.2790 High Energy Astrophysical Phenomena +0909.3084 Strongly Correlated Electrons +0909.4217 +0909.4523 Theory +0909.5145 +0909.5460 Computer Vision and Pattern Recognition +0910.0267 Group Theory +0910.0350 +0910.0469 +0910.0510 Theory +0910.0558 +0910.4029 Statistical Mechanics +0911.0172 Rings and Algebras +0911.0584 Algebraic Geometry +0911.2779 Superconductivity +0911.3063 Solar and Stellar Astrophysics +0911.4252 High Energy Astrophysical Phenomena +0912.4228 Soft Condensed Matter +0912.4996 Algebraic Geometry +0912.5353 Information Theory +0912.5408 Analysis of PDEs +0912.5450 Biomolecules +1001.0179 Symplectic Geometry +1001.0353 Solar and Stellar Astrophysics +1001.0567 High Energy Astrophysical Phenomena +1001.0600 Combinatorics +1001.0601 Group Theory +1001.0603 Strongly Correlated Electrons +1001.0607 Algebraic Geometry +1001.0610 Probability +1001.0613 Phenomenology +1001.0615 Pricing of Securities +1001.0618 Algebraic Geometry +1001.0620 Strongly Correlated Electrons +1001.0622 Complex Variables +1001.0623 Phenomenology +1001.0630 General Physics +1001.0632 Analysis of PDEs +1001.0634 Rings and Algebras +1001.0641 Logic in Computer Science +1001.0642 Human-Computer Interaction +1001.0643 Superconductivity +1001.0649 Symbolic Computation +1001.0651 Mesoscale and Nanoscale Physics +1001.0653 Biomolecules +1001.0654 Differential Geometry +1001.0660 Mesoscale and Nanoscale Physics +1001.0675 +1001.0680 Symplectic Geometry +1001.0683 Software Engineering +1001.0685 Quantitative Methods +1001.0686 Other Condensed Matter +1001.0689 Chaotic Dynamics +1001.0697 Other Condensed Matter +1001.0700 Learning +1001.0704 Cosmology and Nongalactic Astrophysics +1001.0708 History and Overview +1001.0714 Functional Analysis +1001.0722 +1001.0736 Statistics Theory +1001.0739 Solar and Stellar Astrophysics +1001.0740 Biomolecules +1001.0745 General Physics +1001.0755 Functional Analysis +1001.0758 Category Theory +astro-ph/0510293 +astro-ph/9308048 +astro-ph/9410083 +astro-ph/9504071 +astro-ph/9505041 +astro-ph/9602116 +astro-ph/9604007 +astro-ph/9605152 +astro-ph/9607066 +astro-ph/9607150 +astro-ph/9707115 +astro-ph/9804177 +astro-ph/9806156 +astro-ph/9808133 +astro-ph/9809142 +astro-ph/9910568 +gr-qc/0201078 +gr-qc/9210017 +gr-qc/9211025 +gr-qc/9301021 +gr-qc/9305023 +gr-qc/9306015 +gr-qc/9306030 +gr-qc/9311004 +gr-qc/9402029 +gr-qc/9403017 +gr-qc/9404035 +gr-qc/9407022 +gr-qc/9411043 +gr-qc/9503043 +gr-qc/9505041 +gr-qc/9506023 +gr-qc/9511028 +gr-qc/9511083 +gr-qc/9602018 +gr-qc/9612015 +gr-qc/9703087 +gr-qc/9709024 +gr-qc/9801012 +gr-qc/9803040 +gr-qc/9805078 +gr-qc/9901075 +gr-qc/9903101 +gr-qc/9903113 +hep-ex/0607041 Experiment +hep-ex/0701032 Experiment +hep-lat/9802001 Lattice +hep-ph/9205240 Phenomenology +hep-ph/9301224 Phenomenology +hep-ph/9309283 Phenomenology +hep-ph/9310327 Phenomenology +hep-ph/9310367 Phenomenology +hep-ph/9311341 Phenomenology +hep-ph/9406379 Phenomenology +hep-ph/9408246 Phenomenology +hep-ph/9408248 Phenomenology +hep-ph/9408352 Phenomenology +hep-ph/9411315 Phenomenology +hep-ph/9411357 Phenomenology +hep-ph/9511382 Phenomenology +hep-ph/9601216 Phenomenology +hep-ph/9604277 Phenomenology +hep-ph/9604404 Phenomenology +hep-ph/9605456 Phenomenology +hep-ph/9609307 Phenomenology +hep-ph/9611439 Phenomenology +hep-ph/9702352 Phenomenology +hep-ph/9703363 Phenomenology +hep-ph/9708295 Phenomenology +hep-ph/9709438 Phenomenology +hep-ph/9806364 Phenomenology +hep-ph/9808306 Phenomenology +hep-ph/9809508 Phenomenology +hep-ph/9809574 Phenomenology +hep-ph/9811485 Phenomenology +hep-ph/9812473 Phenomenology +hep-ph/9812476 Phenomenology +hep-ph/9812505 Phenomenology +hep-ph/9906205 Phenomenology +hep-th/0104093 Theory +hep-th/9204069 Theory +hep-th/9209116 Theory +hep-th/9307177 Theory +hep-th/9310094 Theory +hep-th/9409104 Theory +hep-th/9505058 Theory +hep-th/9610046 Theory +hep-th/9611162 Theory +hep-th/9708154 Theory +hep-th/9710087 Theory +hep-th/9803084 Theory +hep-th/9805043 Theory +hep-th/9812162 Theory +math/0111005 Quantum Algebra +physics/0306082 Computational Physics +quant-ph/0702171 +0704.1952 Physics and Society +0705.1112 Dynamical Systems +0706.2570 Differential Geometry +0708.0967 +0801.1411 +0802.2390 Geometric Topology +0803.1722 Materials Science +0804.1667 Logic in Computer Science +0804.3976 +0805.1566 Operator Algebras +0807.4803 +0808.1666 +0808.3799 Algebraic Topology +0809.1774 Mesoscale and Nanoscale Physics +0809.4178 Computation +0810.1673 Dynamical Systems +0810.3232 Combinatorics +0810.3956 Dynamical Systems +0811.1225 Mesoscale and Nanoscale Physics +0811.1612 Functional Analysis +0811.4602 Dynamical Systems +0812.1496 Other Condensed Matter +0812.3922 +0901.2689 Cryptography and Security +0901.3949 Logic +0902.0066 Chaotic Dynamics +0902.0540 Symplectic Geometry +0902.1667 Representation Theory +0902.3052 Algebraic Geometry +0902.3527 Optimization and Control +0903.2724 +0903.3548 Theory +0904.0295 +0904.0679 Combinatorics +0904.1074 Pricing of Securities +0904.3753 Optics +0905.0404 Algebraic Geometry +0905.1206 Materials Science +0905.1279 +0905.2357 Geometric Topology +0905.3262 Populations and Evolution +0906.5226 Algebraic Geometry +0906.5475 Computational Complexity +0907.2857 Commutative Algebra +0908.3073 Combinatorics +0909.2764 Statistical Mechanics +0909.4076 Strongly Correlated Electrons +0909.4801 +0909.5150 General Physics +0909.5340 Statistical Mechanics +0910.0563 Optics +0910.1560 +0910.1948 Statistical Mechanics +0910.2575 +0910.3673 Statistical Mechanics +0910.5459 Strongly Correlated Electrons +0911.2674 Classical Analysis and ODEs +0911.4922 Soft Condensed Matter +0911.5609 Materials Science +0911.5669 Materials Science +0912.0497 General Topology +0912.0965 Information Theory +0912.1094 Dynamical Systems +0912.1142 Spectral Theory +0912.1244 Complex Variables +0912.2617 Strongly Correlated Electrons +0912.2780 Differential Geometry +0912.3551 +0912.4312 Pricing of Securities +1001.0051 Cosmology and Nongalactic Astrophysics +1001.1431 Disordered Systems and Neural Networks +1001.1748 Spectral Theory +1001.2613 Data Structures and Algorithms +1001.2984 Disordered Systems and Neural Networks +1001.4428 Strongly Correlated Electrons +1001.4982 Statistical Mechanics +1002.0561 Computers and Society +1002.1407 Information Theory +1002.2021 +1002.2356 Phenomenology +1002.3059 +1002.3777 Lattice +1002.3973 General Mathematics +1002.4643 Chemical Physics +1002.4645 Numerical Analysis +1003.0496 Cosmology and Nongalactic Astrophysics +1003.0616 +1003.1899 +1003.2035 General Physics +1003.2226 Information Theory +1003.3105 +1003.3526 Mesoscale and Nanoscale Physics +1003.4551 Mesoscale and Nanoscale Physics +1004.0232 Optimization and Control +1004.0406 Cosmology and Nongalactic Astrophysics +1004.1861 General Physics +1004.2319 Materials Science +1004.3091 Soft Condensed Matter +1004.3331 General Physics +1004.3513 Number Theory +1004.3636 Lattice +1004.4894 Phenomenology +1004.4969 Physics and Society +1004.5231 Dynamical Systems +1004.5595 Strongly Correlated Electrons +1005.0019 Superconductivity +1005.0023 Probability +1005.0026 Solar and Stellar Astrophysics +1005.0034 +1005.0047 Learning +1005.0051 General Finance +1005.0080 Artificial Intelligence +1005.0084 General Mathematics +1005.0085 Computational Geometry +1005.0086 Cryptography and Security +1005.0087 Cryptography and Security +1005.0088 Strongly Correlated Electrons +1005.0089 Artificial Intelligence +1005.0093 Quantum Gases +1005.0095 Cryptography and Security +1005.0097 Cosmology and Nongalactic Astrophysics +1005.0099 High Energy Astrophysical Phenomena +1005.0104 Artificial Intelligence +1005.0106 Cryptography and Security +1005.0107 Fluid Dynamics +1005.0115 Mesoscale and Nanoscale Physics +1005.0120 Statistical Mechanics +1005.0124 Computational Physics +1005.0125 Learning +1005.0137 Strongly Correlated Electrons +1005.0139 Cryptography and Security +1005.0143 +1005.0146 Digital Libraries +1005.0151 Combinatorics +1005.0158 Geophysics +1005.0160 Probability +1005.0164 Theory +1005.0169 Software Engineering +1005.0176 Popular Physics +1005.0184 Differential Geometry +1005.0188 Learning +1005.0190 Superconductivity +1005.0195 Astrophysics of Galaxies +1005.0197 Analysis of PDEs +1005.0202 Information Theory +1005.0207 Analysis of PDEs +1005.0211 Pricing of Securities +1005.0217 Databases +1005.0228 Other Quantitative Biology +1005.0239 Data Structures and Algorithms +1005.0240 Mesoscale and Nanoscale Physics +1005.0241 Analysis of PDEs +1005.0248 Complex Variables +1005.0264 Materials Science +1005.0267 Information Theory +1005.0268 Information Retrieval +1005.0276 Representation Theory +1005.0284 Mesoscale and Nanoscale Physics +1005.0288 Algebraic Geometry +1005.0293 Earth and Planetary Astrophysics +1005.0298 Optimization and Control +1005.0299 Materials Science +1005.0305 Soft Condensed Matter +1005.0308 Geometric Topology +1005.0311 Quantitative Methods +1005.0313 Portfolio Management +1005.0318 Analysis of PDEs +1005.0322 Metric Geometry +1005.0325 Commutative Algebra +1005.0332 Populations and Evolution +1005.0333 +1005.0334 +1005.0344 Cosmology and Nongalactic Astrophysics +1005.0347 Phenomenology +1005.0349 Logic in Computer Science +1005.0350 Strongly Correlated Electrons +1005.0352 Data Structures and Algorithms +1005.0354 Operator Algebras +1005.0371 Materials Science +1005.0379 Algebraic Topology +cond-mat/0104305 Statistical Mechanics +cond-mat/0105114 Disordered Systems and Neural Networks +cond-mat/0212001 Statistical Mechanics +cond-mat/0508391 Materials Science +cond-mat/0508632 Statistical Mechanics +cond-mat/9707153 Materials Science +cond-mat/9808085 +cond-mat/9909055 Disordered Systems and Neural Networks +math/0102090 Algebraic Geometry +math/0104251 Algebraic Geometry +math/0312012 Algebraic Geometry +math/0404203 Number Theory +math/0405097 Classical Analysis and ODEs +math/0409494 Complex Variables +math/0605435 Algebraic Geometry +math/9810097 Algebraic Geometry +math/9901004 Algebraic Geometry +math/9912111 Algebraic Geometry +quant-ph/0605166 +quant-ph/0608006 +quant-ph/0609033 +quant-ph/0610256 +quant-ph/0611080 +quant-ph/0702068 +solv-int/9810001 Exactly Solvable and Integrable Systems +0705.0692 Phenomenology +0710.2514 Materials Science +0710.4481 Quantitative Methods +0712.3149 Materials Science +0802.0362 Other Condensed Matter +0803.2151 Atomic Physics +0806.3286 Methodology +0807.1066 Functional Analysis +0808.1493 Classical Analysis and ODEs +0808.3819 +0810.2773 Commutative Algebra +0810.3102 Commutative Algebra +0812.0957 Commutative Algebra +0904.2110 Physics and Society +0906.2576 K-Theory and Homology +0907.4515 Mesoscale and Nanoscale Physics +0909.1930 Optics +0909.3422 Optics +0910.1688 Information Theory +0910.2585 Methodology +0910.2938 Molecular Networks +0911.1926 +0911.2140 +0911.2515 +0911.5051 +0911.5250 Atomic Physics +0912.1090 Theory +0912.2435 Theory +1001.3923 Metric Geometry +1001.5055 Classical Analysis and ODEs +1001.5069 Group Theory +1002.0778 Phenomenology +1003.0248 Information Theory +1003.5205 Strongly Correlated Electrons +1004.1834 +1004.3230 +1004.5303 Chemical Physics +1005.0586 Statistical Mechanics +1005.1397 Statistical Mechanics +1005.2630 Superconductivity +1005.5596 Computation and Language +1006.0134 Superconductivity +1006.4933 Commutative Algebra +1006.5319 Other Condensed Matter +1007.1127 Materials Science +1007.1919 Strongly Correlated Electrons +1007.2300 Astrophysics of Galaxies +1007.3294 +1007.3609 Discrete Mathematics +1008.1962 +1008.3171 Distributed, Parallel, and Cluster Computing +1008.3463 Statistical Mechanics +1009.0555 Disordered Systems and Neural Networks +1009.2329 Statistical Finance +1009.2460 Number Theory +1009.5316 Physics and Society +1009.5356 Dynamical Systems +1009.5455 Phenomenology +1009.5563 Astrophysics of Galaxies +1009.6076 Group Theory +1009.6194 Fluid Dynamics +1010.0017 Instrumentation and Detectors +1010.0076 Operator Algebras +1010.0077 Operator Algebras +1010.0078 Operator Algebras +1010.0137 High Energy Astrophysical Phenomena +1010.0148 Experiment +1010.1007 Cosmology and Nongalactic Astrophysics +1010.1026 Solar and Stellar Astrophysics +1010.1055 Rings and Algebras +1010.1105 Materials Science +1010.1253 Lattice +1010.1255 High Energy Astrophysical Phenomena +1010.1265 Differential Geometry +1010.1270 Analysis of PDEs +1010.1275 Complex Variables +1010.1276 Complex Variables +1010.1278 Commutative Algebra +1010.1279 Combinatorics +1010.1280 +1010.1281 Complex Variables +1010.1285 Complex Variables +1010.1286 Information Theory +1010.1295 Information Theory +1010.1299 Instrumentation and Methods for Astrophysics +1010.1303 Information Theory +1010.1305 Combinatorics +1010.1311 Algebraic Geometry +1010.1313 Algebraic Geometry +1010.1315 Complex Variables +1010.1321 +1010.1322 Information Theory +1010.1323 Group Theory +1010.1324 Rings and Algebras +1010.1330 Classical Analysis and ODEs +1010.1331 Information Theory +1010.1332 Group Theory +1010.1336 Mesoscale and Nanoscale Physics +1010.1337 Instrumentation and Detectors +1010.1340 +1010.1341 Differential Geometry +1010.1343 Phenomenology +1010.1346 Group Theory +1010.1347 Representation Theory +1010.1351 Fluid Dynamics +1010.1356 Probability +1010.1365 Data Structures and Algorithms +1010.1377 Superconductivity +1010.1378 Representation Theory +1010.1380 Geometric Topology +1010.1382 Other Condensed Matter +1010.1386 Mathematical Software +1010.1389 Materials Science +1010.1391 Information Theory +1010.1393 Astrophysics of Galaxies +1010.1397 Applications +1010.1398 Strongly Correlated Electrons +1010.1401 Phenomenology +1010.1402 Applications +1010.1404 Atomic and Molecular Clusters +1010.1406 Applications +1010.1410 Applications +1010.1413 Physics and Society +1010.1424 +1010.1425 Applications +1010.1426 Popular Physics +1010.1430 Applications +1010.1435 Applications +1010.1437 Machine Learning +1010.1438 Information Theory +1010.1439 Instrumentation and Methods for Astrophysics +1010.1440 General Physics +1010.1441 Algebraic Topology +1010.1442 Optimization and Control +1010.1443 Analysis of PDEs +1010.1446 Combinatorics +1010.1455 Combinatorics +1010.1456 Computational Engineering, Finance, and Science +1010.1459 Numerical Analysis +1010.1462 Soft Condensed Matter +1010.1463 Materials Science +1010.1472 Numerical Analysis +1010.1473 Commutative Algebra +1010.1481 Computational Complexity +1010.1483 Instrumentation and Detectors +1010.1487 Chemical Physics +1010.1493 Instrumentation and Detectors +1010.1494 +1010.1496 Computer Vision and Pattern Recognition +1010.1503 Phenomenology +1010.1508 Applications +1010.1522 Earth and Planetary Astrophysics +1010.1524 Networking and Internet Architecture +1010.1527 Mesoscale and Nanoscale Physics +1010.1528 High Energy Astrophysical Phenomena +cond-mat/0309481 Materials Science +cond-mat/0406192 Materials Science +cond-mat/0504574 Statistical Mechanics +cs/0702059 Information Theory +math/0412058 Dynamical Systems +math/0611518 Representation Theory +math/0703868 Combinatorics +0707.1637 K-Theory and Homology +0708.4301 +0801.1382 Statistical Mechanics +0801.3010 Algebraic Topology +0802.1454 Combinatorics +0804.0119 Probability +0805.1146 Soft Condensed Matter +0806.1289 Statistical Mechanics +0811.0523 Algebraic Geometry +0812.0607 Computational Geometry +0812.4846 Atmospheric and Oceanic Physics +0812.5033 Group Theory +0902.3471 Probability +0902.4528 Rings and Algebras +0903.2106 +0906.2695 Disordered Systems and Neural Networks +0907.1054 Learning +0907.4436 Rings and Algebras +0909.2594 Subcellular Processes +0909.2621 Quantum Gases +0909.4505 Probability +0909.4528 Dynamical Systems +0910.1888 Dynamical Systems +0910.2427 +0911.0555 Soft Condensed Matter +0912.1755 Statistical Mechanics +0912.3378 Mesoscale and Nanoscale Physics +1001.0777 +1002.0943 Mesoscale and Nanoscale Physics +1002.1782 Learning +1002.2284 General Finance +1002.2535 Classical Analysis and ODEs +1002.4658 Machine Learning +1003.3866 Distributed, Parallel, and Cluster Computing +1004.4914 Cryptography and Security +1005.0159 Materials Science +1005.0805 Materials Science +1005.0838 Cosmology and Nongalactic Astrophysics +1005.1702 Instrumentation and Methods for Astrophysics +1005.2201 Numerical Analysis +1005.2206 Dynamical Systems +1005.2223 Digital Libraries +1005.2224 +1005.2233 Cosmology and Nongalactic Astrophysics +1005.2267 Information Theory +1005.2268 Physics and Society +1005.2269 Information Theory +1005.2270 Information Theory +1005.2271 Algebraic Topology +1005.2273 Cryptography and Security +1005.2277 Cryptography and Security +1005.2278 Solar and Stellar Astrophysics +1005.2279 Analysis of PDEs +1005.2280 Cryptography and Security +1005.2281 Discrete Mathematics +1005.2282 K-Theory and Homology +1005.2304 Superconductivity +1005.2312 Earth and Planetary Astrophysics +1005.2314 Mathematical Software +1005.2321 Information Theory +1005.2329 Formal Languages and Automata Theory +1005.2335 Statistics Theory +1005.2342 Astrophysics of Galaxies +1005.2349 +1005.2354 Atmospheric and Oceanic Physics +1005.2355 Computation +1005.2369 Probability +1005.2373 Rings and Algebras +1005.2380 Soft Condensed Matter +1005.2383 Mesoscale and Nanoscale Physics +1005.2398 Algebraic Geometry +1005.2399 Mesoscale and Nanoscale Physics +cond-mat/0605700 Materials Science +cond-mat/0701388 Soft Condensed Matter +cond-mat/9707020 +hep-th/0601143 Theory +hep-th/0608117 Theory +hep-th/0701084 Theory +math-ph/0701073 +math/0410197 Geometric Topology +math/0611316 Analysis of PDEs +nlin/0611024 Pattern Formation and Solitons +physics/0102039 Popular Physics +physics/0505118 Popular Physics +physics/0611111 Atmospheric and Oceanic Physics +0704.0565 Analysis of PDEs +0709.1500 Combinatorics +0710.2509 Category Theory +0710.5935 Statistics Theory +0711.1828 Other Condensed Matter +0711.4258 +0712.3886 Algebraic Topology +0804.4240 +0806.3344 Statistical Mechanics +0808.3438 +0810.5335 Commutative Algebra +0810.5610 +0812.1809 +0902.3891 Biological Physics +0903.0646 General Mathematics +0903.2053 Spectral Theory +0906.3973 Disordered Systems and Neural Networks +0907.4732 Geometric Topology +0908.0498 Algebraic Geometry +0908.3838 Mesoscale and Nanoscale Physics +0908.3850 Combinatorics +0909.0970 +0909.1845 Disordered Systems and Neural Networks +0909.3765 Representation Theory +0909.5048 Mesoscale and Nanoscale Physics +0910.0005 Mesoscale and Nanoscale Physics +0910.0595 Analysis of PDEs +0910.0596 Analysis of PDEs +0910.0597 Analysis of PDEs +0910.2521 Algebraic Geometry +0910.5290 Analysis of PDEs +0911.0325 Solar and Stellar Astrophysics +0911.3187 Classical Analysis and ODEs +0911.4191 Optimization and Control +0912.0411 Strongly Correlated Electrons +0912.2941 Superconductivity +0912.5328 +1001.1047 Superconductivity +1001.1206 Quantum Gases +1001.1472 Theory +1001.1701 Superconductivity +1002.1345 Differential Geometry +1002.3121 Strongly Correlated Electrons +1002.4804 Other Condensed Matter +1003.0282 Computational Physics +1003.1576 Analysis of PDEs +1003.5376 Superconductivity +1004.4005 Formal Languages and Automata Theory +1004.4684 Statistical Mechanics +1005.0932 Strongly Correlated Electrons +1005.1091 +1005.1918 Learning +1005.2516 Other Condensed Matter +1005.2752 Number Theory +1005.3738 Solar and Stellar Astrophysics +1005.4010 Networking and Internet Architecture +1005.4321 Rings and Algebras +1005.4485 High Energy Astrophysical Phenomena +1005.4751 Functional Analysis +1005.5346 Lattice +1006.0664 Algebraic Geometry +1006.0685 Populations and Evolution +1006.0712 Materials Science +1006.0735 Classical Analysis and ODEs +1006.0742 Atomic Physics +1006.0747 +1006.0753 Functional Analysis +1006.0756 Instrumentation and Detectors +1006.0767 Experiment +1006.0768 Computational Finance +1006.0784 Optimization and Control +1006.0788 Metric Geometry +1006.0793 Solar and Stellar Astrophysics +1006.0795 Information Theory +1006.0799 Optics +1006.0806 Cryptography and Security +1006.0808 Combinatorics +1006.0811 +1006.0813 Operating Systems +1006.0816 Mesoscale and Nanoscale Physics +1006.0820 +1006.0823 Accelerator Physics +1006.0824 Number Theory +1006.0826 Statistics Theory +1006.0831 Sound +1006.0834 Networking and Internet Architecture +1006.0836 Other Computer Science +1006.0839 Other Computer Science +1006.0840 Networking and Internet Architecture +1006.0841 Networking and Internet Architecture +1006.0843 Networking and Internet Architecture +1006.0844 Other Computer Science +1006.0845 Networking and Internet Architecture +1006.0846 Computers and Society +1006.0848 Networking and Internet Architecture +1006.0849 Data Structures and Algorithms +1006.0850 Networking and Internet Architecture +1006.0851 Differential Geometry +1006.0854 Quantum Gases +1006.0855 Cosmology and Nongalactic Astrophysics +1006.0856 Other Computer Science +1006.0857 Differential Geometry +1006.0859 Other Computer Science +1006.0860 Networking and Internet Architecture +1006.0862 Instrumentation and Detectors +1006.0863 Risk Management +1006.0870 Optics +1006.0875 Probability +1006.0888 Information Theory +1006.0896 +1006.0902 Discrete Mathematics +1006.0906 Complex Variables +1006.0907 Strongly Correlated Electrons +1006.0922 Cosmology and Nongalactic Astrophysics +1006.0923 Accelerator Physics +1006.0936 Algebraic Geometry +1006.0941 Geometric Topology +1006.0942 +1006.0945 Soft Condensed Matter +1006.0950 Solar and Stellar Astrophysics +1006.0955 High Energy Astrophysical Phenomena +1006.0960 +1006.0964 Information Theory +1006.0965 Probability +1006.0970 Quantitative Methods +cond-mat/0301411 Mesoscale and Nanoscale Physics +cond-mat/0303339 Mesoscale and Nanoscale Physics +cond-mat/0411331 Mesoscale and Nanoscale Physics +math/0305378 Representation Theory +math/0502550 Category Theory +math/0505108 Representation Theory +math/0512176 Representation Theory +math/0602047 Quantum Algebra +math/0606331 Geometric Topology +math/0609467 Statistics Theory +math/0609780 Probability +math/0612772 Group Theory +math/0702307 Complex Variables +math/0702436 Number Theory +physics/0509265 Atomic Physics +0709.4107 Rings and Algebras +0808.3132 Rings and Algebras +0809.4250 Combinatorics +0810.1148 Algebraic Geometry +0812.4667 +0901.0326 Differential Geometry +0902.2465 General Mathematics +0902.4099 +0903.0821 +0904.0580 Probability +0904.3953 Artificial Intelligence +0908.0660 Information Theory +0909.2250 +0909.2825 Mesoscale and Nanoscale Physics +0910.0781 General Physics +0910.3410 Mesoscale and Nanoscale Physics +0910.4576 Mesoscale and Nanoscale Physics +0911.2228 High Energy Astrophysical Phenomena +0911.3255 Instrumentation and Detectors +0911.3550 Cosmology and Nongalactic Astrophysics +0912.0716 Other Condensed Matter +0912.5065 Phenomenology +1001.2423 Phenomenology +1002.1500 Algebraic Geometry +1002.1542 Quantum Gases +1002.2388 Commutative Algebra +math/0610597 Differential Geometry +physics/0701286 General Physics +0705.0734 Artificial Intelligence +0707.0556 Logic in Computer Science +0707.0666 Dynamical Systems +0711.1330 Algebraic Topology +0711.3142 Quantum Algebra +0801.4962 Number Theory +0802.1968 Other Condensed Matter +0804.1729 Logic in Computer Science +0805.3323 Dynamical Systems +0806.0936 Logic in Computer Science +0806.4009 General Topology +0808.0497 Phenomenology +0808.2679 Number Theory +0809.0058 Complex Variables +0809.1858 Disordered Systems and Neural Networks +0810.4205 Dynamical Systems +0810.5441 Other Condensed Matter +0812.1694 Mesoscale and Nanoscale Physics +0812.5077 Other Condensed Matter +0901.1703 Information Theory +0903.0106 Algebraic Geometry +0903.0543 +0903.1546 Functional Analysis +0904.1005 Probability +0904.1422 +0904.2076 Logic in Computer Science +0904.3547 Phenomenology +0906.4400 Probability +0907.3798 +0908.0561 Mesoscale and Nanoscale Physics +0908.3206 Cosmology and Nongalactic Astrophysics +0908.3594 Statistical Mechanics +0909.0138 Artificial Intelligence +0909.3736 Mesoscale and Nanoscale Physics +0910.0486 Mesoscale and Nanoscale Physics +0910.4093 Mesoscale and Nanoscale Physics +0910.4655 Materials Science +0910.5393 Statistical Mechanics +0910.5638 Cosmology and Nongalactic Astrophysics +0910.5770 Soft Condensed Matter +0911.2872 +0911.3871 Chemical Physics +0911.4905 Theory +0911.5245 Probability +0912.0524 Cosmology and Nongalactic Astrophysics +0912.1538 Fluid Dynamics +0912.3646 Quantum Gases +1001.1349 Materials Science +1002.2117 Other Condensed Matter +1002.4550 Experiment +1003.0372 +1003.0593 +1003.1912 Phenomenology +1003.1996 Statistical Mechanics +1003.2059 Superconductivity +1003.3592 Statistical Mechanics +1004.0084 Symbolic Computation +1004.0701 Quantum Gases +1004.1726 Optimization and Control +1004.2095 Probability +1004.2408 Quantum Gases +1004.2777 Mesoscale and Nanoscale Physics +1004.4431 Distributed, Parallel, and Cluster Computing +1004.4875 Phenomenology +1005.0440 Optimization and Control +1005.4032 Computer Vision and Pattern Recognition +1005.4034 Computer Vision and Pattern Recognition +1005.4035 Computer Vision and Pattern Recognition +1005.4044 Computer Vision and Pattern Recognition +1006.1727 Information Theory +1006.2458 Cosmology and Nongalactic Astrophysics +1006.3435 Theory +1006.4084 Number Theory +1006.5117 Applications +1006.5547 Cosmology and Nongalactic Astrophysics +1006.5610 Cosmology and Nongalactic Astrophysics +1006.5712 Astrophysics of Galaxies +1006.5715 Materials Science +1006.5718 Classical Analysis and ODEs +1006.5719 History and Philosophy of Physics +1006.5725 Operator Algebras +1006.5736 Astrophysics of Galaxies +1006.5739 Numerical Analysis +1006.5741 Experiment +1006.5745 Cryptography and Security +1006.5746 Astrophysics of Galaxies +1006.5749 Other Computer Science +1006.5750 Cosmology and Nongalactic Astrophysics +1006.5753 Differential Geometry +1006.5754 +1006.5756 Algebraic Geometry +1006.5758 Materials Science +1006.5759 Strongly Correlated Electrons +1006.5761 Software Engineering +1006.5768 Symbolic Computation +1006.5771 Dynamical Systems +1006.5774 Theory +1006.5775 Superconductivity +1006.5777 Cosmology and Nongalactic Astrophysics +1006.5786 High Energy Astrophysical Phenomena +1006.5790 General Mathematics +1006.5792 Differential Geometry +1006.5794 Databases +1006.5797 Algebraic Topology +1006.5801 Algebraic Geometry +1006.5803 Functional Analysis +1006.5804 Software Engineering +1006.5809 Materials Science +1006.5810 Functional Analysis +1006.5817 Superconductivity +1006.5826 General Physics +1006.5827 Robotics +1006.5828 Solar and Stellar Astrophysics +1006.5836 Analysis of PDEs +1006.5838 Strongly Correlated Electrons +1006.5847 Statistical Finance +1006.5848 +1006.5851 Probability +1006.5856 Phenomenology +1006.5857 Algebraic Geometry +1006.5858 Group Theory +1006.5861 Probability +1006.5862 Functional Analysis +1006.5865 Analysis of PDEs +1006.5870 Algebraic Geometry +1006.5876 Optimization and Control +1006.5880 Computation and Language +1006.5883 Metric Geometry +1006.5884 Popular Physics +1006.5885 +1006.5892 Computational Complexity +1006.5896 Artificial Intelligence +1006.5898 Solar and Stellar Astrophysics +1006.5901 Information Theory +1006.5902 Computer Vision and Pattern Recognition +1006.5906 Formal Languages and Automata Theory +1006.5908 Computer Vision and Pattern Recognition +1006.5911 Computer Vision and Pattern Recognition +1006.5913 Computer Vision and Pattern Recognition +1006.5920 Computer Vision and Pattern Recognition +1006.5923 Theory +1006.5924 Computer Vision and Pattern Recognition +1006.5927 Computer Vision and Pattern Recognition +1006.5928 Combinatorics +1006.5931 Optimization and Control +1006.5936 Cosmology and Nongalactic Astrophysics +1006.5938 Information Theory +1006.5940 Distributed, Parallel, and Cluster Computing +1006.5941 Distributed, Parallel, and Cluster Computing +1006.5942 Computer Vision and Pattern Recognition +1006.5944 General Physics +1006.5947 Operator Algebras +1006.5949 Earth and Planetary Astrophysics +1006.5950 Phenomenology +1006.5954 +cond-mat/0010194 +cond-mat/0109434 +cond-mat/0308126 Materials Science +cond-mat/0504565 Other Condensed Matter +quant-ph/0006036 +quant-ph/0011015 +quant-ph/0306164 +quant-ph/0306165 +0704.3329 Phenomenology +0705.0007 Strongly Correlated Electrons +0705.4527 Mesoscale and Nanoscale Physics +0707.1239 Phenomenology +0707.2675 +0707.3395 +0708.0071 +0712.3952 Probability +0801.2262 +0802.1240 Probability +0802.1267 +0802.3827 +0803.1277 Theory +0803.1609 +0804.1831 Theory +0805.1056 +0805.2570 Theory +0805.3700 Theory +0805.4393 Phenomenology +0806.0232 +0806.0354 Theory +0806.0558 Theory +0806.1042 Spectral Theory +0806.4245 +0806.4448 +0806.4604 +0807.2140 Algebraic Geometry +0807.2633 +0807.2642 +0807.4031 +0807.4984 +0808.0430 +0808.0961 +0808.1477 Rings and Algebras +0808.1691 Phenomenology +0808.3150 +0808.3299 +0809.0720 +0809.1338 Theory +0809.2562 +0809.2885 Lattice +0809.2953 Lattice +0809.4303 Theory +0809.4490 +0809.5172 +0810.2932 +0810.2972 +0810.4257 +0810.4470 +0810.4541 Theory +0810.5003 +0810.5300 +0810.5542 Phenomenology +0811.0666 Phenomenology +0811.0737 Phenomenology +0811.1338 +0811.2423 Theory +0811.2443 +0811.2795 +0811.2804 Theory +0811.3458 Phenomenology +0811.3467 Phenomenology +0811.3470 Phenomenology +0811.3937 +0811.4111 Superconductivity +0812.0366 +0812.0578 Phenomenology +0812.0589 Phenomenology +0812.1342 +0812.1471 Phenomenology +0812.1549 Theory +0812.1722 Phenomenology +0812.2283 +0812.2536 Phenomenology +0812.2834 +0812.2985 Phenomenology +0812.3106 +0812.3267 Phenomenology +0812.3511 Phenomenology +0812.3635 +0812.3809 +0812.3829 Phenomenology +0812.3839 Phenomenology +0812.3850 Phenomenology +0812.3885 +0812.3902 Theory +0812.4080 +0812.4099 +0812.4125 +0812.4138 Phenomenology +0812.4157 +0812.4274 +0812.4415 +0812.4576 +0812.4651 +0812.4724 +0812.5084 Phenomenology +0901.0009 Theory +0901.0133 Astrophysics of Galaxies +0901.0221 +0901.0313 +0901.0458 Cosmology and Nongalactic Astrophysics +0901.0535 +0901.0693 Experiment +0901.0838 +0901.0958 Cosmology and Nongalactic Astrophysics +0901.0989 Cosmology and Nongalactic Astrophysics +0901.1079 +0901.1647 Phenomenology +0901.1818 Cosmology and Nongalactic Astrophysics +0901.1984 +0901.2058 Theory +0901.2168 Phenomenology +0901.2217 Phenomenology +0901.2309 Solar and Stellar Astrophysics +0901.2462 +0901.2485 +0901.2609 Phenomenology +0901.2642 Theory +0901.2818 Phenomenology +0901.2819 Phenomenology +0901.2860 Phenomenology +0901.2925 Phenomenology +0901.3044 Theory +0901.3254 +0901.3362 Experiment +0901.3503 General Physics +0901.3746 Phenomenology +0901.4178 +0901.4653 +0901.4674 +0902.0351 +0902.0729 Theory +0902.0831 Theory +0902.1082 +0902.1170 +0902.1188 Cosmology and Nongalactic Astrophysics +0902.1427 Theory +0902.1440 Solar and Stellar Astrophysics +0902.1619 Cosmology and Nongalactic Astrophysics +0902.1798 Theory +0902.2084 High Energy Astrophysical Phenomena +0902.2272 Solar and Stellar Astrophysics +0902.2840 High Energy Astrophysical Phenomena +0902.2882 Cosmology and Nongalactic Astrophysics +0902.2907 Cosmology and Nongalactic Astrophysics +0902.3177 Theory +0902.3217 Phenomenology +0902.3416 +0902.3494 Phenomenology +0902.3595 Information Theory +0902.3633 +0902.3676 Theory +0902.4024 Earth and Planetary Astrophysics +0902.4027 Solar and Stellar Astrophysics +0902.4029 Solar and Stellar Astrophysics +0902.4434 +0902.4444 Cosmology and Nongalactic Astrophysics +0902.4601 Phenomenology +0902.4664 Phenomenology +0902.4696 Theory +0902.4701 Cosmology and Nongalactic Astrophysics +0902.4712 Cosmology and Nongalactic Astrophysics +0902.4742 Solar and Stellar Astrophysics +0902.4814 Theory +0902.4824 Optics +0903.0060 Phenomenology +0903.0102 Cosmology and Nongalactic Astrophysics +0903.0273 +0903.0335 Cosmology and Nongalactic Astrophysics +0903.0366 +0903.0390 Theory +0903.0477 High Energy Astrophysical Phenomena +0903.0504 Astrophysics of Galaxies +0903.0665 Cosmology and Nongalactic Astrophysics +0903.0690 Solar and Stellar Astrophysics +0903.0844 Astrophysics of Galaxies +0903.0866 Cosmology and Nongalactic Astrophysics +0903.0934 Astrophysics of Galaxies +0903.0940 +0903.1108 Astrophysics of Galaxies +0903.1144 Solar and Stellar Astrophysics +0903.1158 Phenomenology +0903.1288 Solar and Stellar Astrophysics +0903.1376 Algebraic Topology +0903.1440 Astrophysics of Galaxies +0903.1730 Theory +0903.1763 High Energy Astrophysical Phenomena +0903.1810 Astrophysics of Galaxies +0903.1997 Earth and Planetary Astrophysics +0903.2002 Solar and Stellar Astrophysics +0903.2044 Cosmology and Nongalactic Astrophysics +0903.2127 +0903.2302 Astrophysics of Galaxies +0903.2422 Astrophysics of Galaxies +0903.2805 Cosmology and Nongalactic Astrophysics +0903.2878 Cosmology and Nongalactic Astrophysics +0903.3046 Cosmology and Nongalactic Astrophysics +0903.3424 Theory +0903.3757 High Energy Astrophysical Phenomena +0903.3988 Cosmology and Nongalactic Astrophysics +0903.4039 Solar and Stellar Astrophysics +0903.4184 Cosmology and Nongalactic Astrophysics +0903.4193 Solar and Stellar Astrophysics +0903.4245 Theory +0903.4466 Instrumentation and Methods for Astrophysics +0903.4500 Theory +0903.4623 Phenomenology +0903.4849 Phenomenology +0903.4871 Theory +0903.4877 Cosmology and Nongalactic Astrophysics +0903.5329 High Energy Astrophysical Phenomena +0904.0007 Solar and Stellar Astrophysics +0904.0026 Astrophysics of Galaxies +0904.0279 Astrophysics of Galaxies +0904.0470 Differential Geometry +0904.0686 +0904.0809 Cosmology and Nongalactic Astrophysics +0904.1151 +0904.1597 Astrophysics of Galaxies +0904.1626 Astrophysics of Galaxies +0904.1693 High Energy Astrophysical Phenomena +0904.1722 +0904.1745 Phenomenology +0904.1896 Astrophysics of Galaxies +0904.1938 Solar and Stellar Astrophysics +0904.2450 Phenomenology +0904.2873 Theory +0904.2990 +0904.3023 Quantum Gases +0904.3102 High Energy Astrophysical Phenomena +0904.3121 Cosmology and Nongalactic Astrophysics +0904.3186 Experiment +0904.3334 Cosmology and Nongalactic Astrophysics +0904.3581 +0904.3799 Phenomenology +0904.3801 Phenomenology +0904.4084 Solar and Stellar Astrophysics +0904.4087 Theory +0904.4300 High Energy Astrophysical Phenomena +0904.4481 Astrophysics of Galaxies +0904.4505 Cosmology and Nongalactic Astrophysics +0904.4565 Theory +0904.4761 Instrumentation and Detectors +0905.0007 Solar and Stellar Astrophysics +0905.0030 Earth and Planetary Astrophysics +0905.0538 +0905.1196 Algebraic Geometry +0905.1644 +0905.1946 Cosmology and Nongalactic Astrophysics +0905.2300 Theory +0905.2744 Theory +0905.2846 +0905.3461 Theory +0905.4123 Theory +0905.4136 +0905.4590 Theory +0905.4594 Phenomenology +0905.4691 Applications +0906.0102 Theory +0906.0321 +0906.0506 +0906.1008 Experiment +0906.1476 Phenomenology +0906.1516 +0906.1571 Phenomenology +0906.2012 Cosmology and Nongalactic Astrophysics +0906.2013 High Energy Astrophysical Phenomena +0906.2193 Earth and Planetary Astrophysics +0906.2200 High Energy Astrophysical Phenomena +0906.2260 +0906.2431 Experiment +0906.2435 Phenomenology +0906.2670 Phenomenology +0906.2873 +0906.2922 Theory +0906.2957 Phenomenology +0906.2976 Phenomenology +0906.3144 +0906.3305 Theory +0906.3402 Phenomenology +0906.3773 Phenomenology +0906.3786 Experiment +0906.4110 Cosmology and Nongalactic Astrophysics +0906.4275 Theory +0906.4331 Experiment +0906.4463 +0906.4937 Astrophysics of Galaxies +0906.5005 Phenomenology +0906.5008 Phenomenology +0906.5084 Cosmology and Nongalactic Astrophysics +0906.5165 Phenomenology +0906.5313 +0906.5399 Fluid Dynamics +0906.5414 Theory +0906.5505 +0907.0090 +0907.0134 Theory +0907.0188 +0907.0239 Lattice +0907.0244 +0907.0296 Phenomenology +0907.0704 Cosmology and Nongalactic Astrophysics +0907.0718 Data Structures and Algorithms +0907.0797 +0907.1163 Phenomenology +0907.1355 Experiment +0907.1475 +0907.1581 +0907.1680 Earth and Planetary Astrophysics +0907.1886 Phenomenology +0907.1949 Cosmology and Nongalactic Astrophysics +0907.2006 Phenomenology +0907.2288 +0907.2353 +0907.2422 Solar and Stellar Astrophysics +0907.2435 Computer Science and Game Theory +0907.2737 Phenomenology +0907.3151 Phenomenology +0907.3159 Phenomenology +0907.3290 Phenomenology +0907.3523 Phenomenology +0907.3838 +0907.3872 +0907.3916 Phenomenology +0907.3943 Theory +0907.4029 Instrumentation and Detectors +0907.4124 Phenomenology +0907.4125 Phenomenology +0907.4142 Phenomenology +0907.4206 Phenomenology +0907.4421 Theory +0907.4611 +0907.4671 +0907.4916 +0907.4930 +0907.5277 Phenomenology +0907.5470 +0908.0011 Theory +0908.0167 +0908.0298 +0908.0299 +0908.0326 Cosmology and Nongalactic Astrophysics +0908.0469 Phenomenology +0908.0507 Phenomenology +0908.0535 Experiment +0908.1204 +0908.1246 +0908.1283 Lattice +0908.1388 Phenomenology +0908.1858 +0908.1974 Theory +0908.2114 Theory +0908.2157 Experiment +0908.2242 Experiment +0908.2778 Populations and Evolution +0908.2785 Phenomenology +0908.3290 Theory +0908.3461 Theory +0908.3507 +0908.3809 Phenomenology +0908.3896 Phenomenology +0908.4314 Theory +0909.0428 Phenomenology +0909.0503 Theory +0909.0563 +0909.1487 Phenomenology +0909.1492 Experiment +0909.2667 Phenomenology +0909.2939 Lattice +0909.3121 Phenomenology +0909.3505 +0909.3538 +0909.3873 Instrumentation and Detectors +0909.4358 Experiment +0909.4473 Experiment +0909.4618 Quantum Algebra +0909.5374 Theory +0909.5427 Superconductivity +0909.5434 Phenomenology +0909.5485 Theory +0910.0024 +0910.0139 +0910.0276 Lattice +0910.0897 Phenomenology +0910.0972 +0910.1009 Phenomenology +0910.1385 High Energy Astrophysical Phenomena +0910.1777 +0910.1886 Phenomenology +0910.2161 Strongly Correlated Electrons +0910.4913 Statistical Mechanics +0911.2547 Phenomenology +0911.2694 Differential Geometry +0911.3231 +0912.1791 Solar and Stellar Astrophysics +0912.3204 Quantum Gases +0912.3614 Mesoscale and Nanoscale Physics +0912.3860 High Energy Astrophysical Phenomena +0912.4116 Functional Analysis +0912.4336 Mesoscale and Nanoscale Physics +1001.0008 Theory +1001.0979 Cosmology and Nongalactic Astrophysics +1001.1159 Cosmology and Nongalactic Astrophysics +1001.1287 Phenomenology +1001.2299 Geometric Topology +1001.2314 Computational Complexity +1001.2320 Computers and Society +1001.2323 Optics +1001.2326 Cryptography and Security +1001.2328 Computational Physics +1001.2329 Instrumentation and Methods for Astrophysics +1001.2340 Functional Analysis +1001.2342 +1001.2344 Numerical Analysis +1001.2347 Dynamical Systems +1001.2352 Other Condensed Matter +1001.2353 Fluid Dynamics +1001.2360 High Energy Astrophysical Phenomena +1001.2363 Information Theory +1001.2373 +1001.2375 General Physics +1001.2376 Information Theory +1001.2377 Statistical Mechanics +1001.2379 Algebraic Geometry +1001.2381 Probability +1001.2382 General Physics +1001.2383 Analysis of PDEs +1001.2384 Cosmology and Nongalactic Astrophysics +1001.2385 +1001.2386 Software Engineering +1001.2388 Astrophysics of Galaxies +1001.2390 Analysis of PDEs +1001.2396 Phenomenology +1001.2397 Phenomenology +1001.2407 High Energy Astrophysical Phenomena +1001.2408 Geometric Topology +1001.2414 General Physics +1001.2420 Cosmology and Nongalactic Astrophysics +1001.2426 Functional Analysis +1001.2427 Phenomenology +1001.2431 Complex Variables +1001.2432 Functional Analysis +1001.2434 Solar and Stellar Astrophysics +1001.2435 Differential Geometry +1001.2437 Combinatorics +1001.2439 High Energy Astrophysical Phenomena +1001.2451 Classical Analysis and ODEs +1001.2452 Phenomenology +1001.2463 Information Theory +1001.2465 Atomic Physics +1001.2468 Phenomenology +1001.2472 Materials Science +1001.2473 Dynamical Systems +1001.2474 Probability +1001.2477 Statistics Theory +1001.2479 Theory +1001.2480 Cosmology and Nongalactic Astrophysics +1001.2487 Instrumentation and Detectors +1001.2492 Mesoscale and Nanoscale Physics +1001.2496 Differential Geometry +1001.2497 Instrumentation and Detectors +1001.2498 Mesoscale and Nanoscale Physics +1001.2499 Quantitative Methods +1001.2501 Differential Geometry +1001.2503 Information Theory +1001.2506 Differential Geometry +1001.2511 Number Theory +1001.2518 +1001.2525 Number Theory +1001.2528 Strongly Correlated Electrons +1001.2529 Strongly Correlated Electrons +1001.2530 Theory +1001.2537 Phenomenology +1001.2543 Cosmology and Nongalactic Astrophysics +1001.2544 Soft Condensed Matter +1001.2545 Information Theory +1001.2547 Information Theory +1001.2548 Number Theory +1001.2550 +1001.2551 Combinatorics +1001.2554 Information Theory +astro-ph/0006071 +astro-ph/0006142 +astro-ph/0006154 +astro-ph/9502052 +astro-ph/9506015 +astro-ph/9508106 +astro-ph/9901104 +cond-mat/0201149 +cond-mat/0303349 Mesoscale and Nanoscale Physics +cond-mat/0305627 Statistical Mechanics +cond-mat/0311122 Statistical Mechanics +cond-mat/0503599 Strongly Correlated Electrons +cond-mat/0508341 Statistical Mechanics +cond-mat/0611445 Superconductivity +gr-qc/0402017 +gr-qc/0603065 +gr-qc/9407034 +gr-qc/9412031 +hep-ex/0106046 Experiment +hep-ex/0312017 Experiment +hep-ex/0602007 Experiment +hep-ex/9702005 Experiment +hep-lat/0611004 Lattice +hep-ph/0006108 Phenomenology +hep-ph/0011097 Phenomenology +hep-ph/0104114 Phenomenology +hep-ph/0111181 Phenomenology +hep-ph/0206072 Phenomenology +hep-ph/0206233 Phenomenology +hep-ph/0308306 Phenomenology +hep-ph/0310337 Phenomenology +hep-ph/0311178 Phenomenology +hep-ph/0405102 Phenomenology +hep-ph/0407020 Phenomenology +hep-ph/0408048 Phenomenology +hep-ph/0507076 Phenomenology +hep-ph/0703254 Phenomenology +hep-ph/9204239 Phenomenology +hep-ph/9208211 Phenomenology +hep-ph/9403322 Phenomenology +hep-ph/9404270 Phenomenology +hep-ph/9407301 Phenomenology +hep-ph/9411394 Phenomenology +hep-ph/9506256 Phenomenology +hep-ph/9510409 Phenomenology +hep-ph/9511204 Phenomenology +hep-ph/9712360 Phenomenology +hep-th/0308118 Theory +hep-th/0308127 Theory +hep-th/0404018 Theory +hep-th/0407006 Theory +hep-th/0408110 Theory +hep-th/0503189 Theory +hep-th/0504182 Theory +hep-th/0507007 Theory +hep-th/0507148 Theory +hep-th/0507234 Theory +hep-th/0602189 Theory +hep-th/0607122 Theory +hep-th/9604016 Theory +hep-th/9709069 Theory +math-ph/0601021 +math/0311027 Analysis of PDEs +math/0311028 Analysis of PDEs +math/0609733 Number Theory +math/0611930 Category Theory +nucl-ex/9608005 +nucl-th/0002023 +nucl-th/0008006 +nucl-th/0008056 +nucl-th/0212090 +nucl-th/0612050 +nucl-th/9404005 +nucl-th/9712076 +nucl-th/9805052 +physics/0102083 Instrumentation and Detectors +physics/0111005 Accelerator Physics +physics/0111144 Accelerator Physics +physics/0111147 Accelerator Physics +physics/0111150 Accelerator Physics +physics/0503137 Physics and Society +physics/0603186 Data Analysis, Statistics and Probability +0708.2861 Theory +0802.1254 Atomic Physics +0804.1597 Functional Analysis +0806.4734 Theory +0808.3156 +0808.3283 +0810.2107 +0811.4549 Representation Theory +0903.3580 Analysis of PDEs +0906.0368 Phenomenology +0907.0081 +0907.0335 Populations and Evolution +0907.4198 +0907.4684 Dynamical Systems +0908.2513 Analysis of PDEs +0908.3805 Operator Algebras +0909.0441 Strongly Correlated Electrons +0909.1985 +0909.5262 Computation +0910.1179 Theory +0910.2237 Cosmology and Nongalactic Astrophysics +0910.2909 Statistical Finance +0910.4649 +0911.0939 Biological Physics +0912.0831 Optics +1001.3102 Information Theory +1002.0301 Superconductivity +1002.1017 +1002.1158 Mesoscale and Nanoscale Physics +1002.2908 Fluid Dynamics +1002.3879 Group Theory +1002.5011 Algebraic Geometry +1003.1379 +1004.1126 Biological Physics +1004.5056 Soft Condensed Matter +1006.0383 Statistical Mechanics +1006.0873 Number Theory +1006.4426 Quantum Gases +1006.5491 Group Theory +1007.0320 Superconductivity +1007.0487 Instrumentation and Detectors +1007.0671 Physics and Society +1007.0688 History and Overview +1007.0704 Cosmology and Nongalactic Astrophysics +1007.0761 Materials Science +1007.0762 Materials Science +1007.0764 Strongly Correlated Electrons +1007.0767 Cryptography and Security +1007.0769 History and Philosophy of Physics +1007.0770 Soft Condensed Matter +1007.0771 Solar and Stellar Astrophysics +1007.0773 Analysis of PDEs +1007.0779 Logic in Computer Science +1007.0788 Logic in Computer Science +1007.0789 Fluid Dynamics +1007.0791 Rings and Algebras +1007.0795 Combinatorics +1007.0797 Combinatorics +1007.0803 Multiagent Systems +1007.0818 Materials Science +1007.0830 +1007.0831 Logic in Computer Science +1007.0837 Chemical Physics +1007.0838 Spectral Theory +1007.0839 Solar and Stellar Astrophysics +1007.0841 Geometric Topology +1007.0843 Experiment +1007.0844 Logic +1007.0847 Other Condensed Matter +1007.0858 Neurons and Cognition +1007.0859 Artificial Intelligence +1007.0864 Biological Physics +1007.0868 Functional Analysis +1007.0874 Functional Analysis +1007.0877 Differential Geometry +1007.0878 Number Theory +1007.0879 Functional Analysis +1007.0880 Discrete Mathematics +1007.0891 Algebraic Geometry +1007.0896 Probability +1007.0906 Combinatorics +1007.0909 Mesoscale and Nanoscale Physics +1007.0913 Quantum Gases +1007.0917 Cryptography and Security +1007.0918 Cryptography and Security +1007.0920 Distributed, Parallel, and Cluster Computing +1007.0921 Probability +1007.0923 Fluid Dynamics +1007.0926 Number Theory +1007.0929 Number Theory +1007.0931 Information Theory +1007.0936 Computation and Language +1007.0941 Functional Analysis +1007.0944 General Physics +1007.0946 Popular Physics +1007.0948 Geometric Topology +1007.0952 Probability +1007.0958 Materials Science +1007.0960 Networking and Internet Architecture +1007.0965 Metric Geometry +1007.0971 Superconductivity +1007.0975 Solar and Stellar Astrophysics +1007.0976 Fluid Dynamics +1007.0979 Analysis of PDEs +hep-th/0507050 Theory +hep-th/0511179 Theory +math/0309106 Algebraic Topology +math/0309236 Functional Analysis +math/0312046 Algebraic Topology +math/0607743 Complex Variables +math/0612249 Analysis of PDEs +math/0703385 Operator Algebras +q-bio/0411032 Quantitative Methods +0707.0619 +0707.1791 Mesoscale and Nanoscale Physics +0801.2825 Strongly Correlated Electrons +0802.0932 Analysis of PDEs +0802.4367 +0803.2480 Analysis of PDEs +0803.3070 Theory +0803.3785 Probability +0804.2163 +0806.0108 Genomics +0806.1890 Analysis of PDEs +0806.4770 +0808.1644 Differential Geometry +0810.1419 Functional Analysis +0810.2236 Theory +0810.5249 Differential Geometry +0811.3318 Strongly Correlated Electrons +0812.2528 Analysis of PDEs +0812.2656 Probability +0901.1324 Probability +0901.1333 +0901.2301 +0901.4835 Discrete Mathematics +0902.3711 +0904.2938 Materials Science +0904.3617 +0905.1903 Phenomenology +0905.2926 Pricing of Securities +0906.4467 Materials Science +0907.0384 High Energy Astrophysical Phenomena +0907.2105 Algebraic Topology +0907.5039 Superconductivity +0907.5317 Statistical Mechanics +0908.2898 Phenomenology +0909.0201 Statistical Mechanics +0909.0667 Exactly Solvable and Integrable Systems +0909.2429 +0909.2727 General Physics +0909.3315 +0909.3392 Computational Complexity +0909.4231 Mesoscale and Nanoscale Physics +0909.4834 +0909.5095 Cosmology and Nongalactic Astrophysics +0909.5348 +0910.1003 Materials Science +0910.2567 Phenomenology +0910.2716 +0910.3497 Instrumentation and Detectors +0910.4813 Mesoscale and Nanoscale Physics +0910.4838 Lattice +0910.4845 Lattice +0910.5231 Statistical Mechanics +0911.0600 Combinatorics +0911.2052 Operator Algebras +0911.4732 Discrete Mathematics +0912.1360 Probability +0912.1866 Number Theory +0912.2010 Quantum Gases +0912.2124 Group Theory +0912.4823 Strongly Correlated Electrons +1001.1142 Statistical Mechanics +1001.2179 Differential Geometry +1002.0353 Number Theory +1002.0876 Populations and Evolution +1002.1156 Learning +1002.1473 +1002.1530 Information Theory +1002.1532 Information Theory +1002.1624 Formal Languages and Automata Theory +1002.1715 Earth and Planetary Astrophysics +1002.1718 Computer Science and Game Theory +1002.1720 Superconductivity +1002.1723 Differential Geometry +1002.1726 +1002.1729 Astrophysics of Galaxies +1002.1730 Soft Condensed Matter +1002.1736 Biomolecules +1002.1742 Astrophysics of Galaxies +1002.1744 Information Theory +1002.1745 Operator Algebras +1002.1746 Algebraic Topology +1002.1748 Combinatorics +1002.1749 Combinatorics +1002.1753 Commutative Algebra +1002.1755 Experiment +1002.1756 Analysis of PDEs +1002.1758 +1002.1759 Astrophysics of Galaxies +1002.1764 Materials Science +1002.1768 Representation Theory +1002.1773 Robotics +1002.1774 Robotics +1002.1775 Astrophysics of Galaxies +1002.1780 Mesoscale and Nanoscale Physics +1002.1783 Cosmology and Nongalactic Astrophysics +1002.1785 Analysis of PDEs +1002.1786 Analysis of PDEs +1002.1787 Fluid Dynamics +1002.1788 Analysis of PDEs +1002.1791 Statistical Mechanics +1002.1796 Logic in Computer Science +1002.1800 Astrophysics of Galaxies +1002.1802 Physics and Society +1002.1812 Optimization and Control +1002.1816 Analysis of PDEs +1002.1825 Materials Science +1002.1828 Discrete Mathematics +1002.1834 Networking and Internet Architecture +1002.1835 Phenomenology +1002.1837 Differential Geometry +1002.1843 Computational Geometry +1002.1848 Solar and Stellar Astrophysics +1002.1852 Algebraic Topology +1002.1858 General Physics +1002.1860 Space Physics +1002.1866 Group Theory +1002.1868 Logic +1002.1874 Networking and Internet Architecture +1002.1876 +1002.1878 Probability +1002.1881 Hardware Architecture +1002.1886 Number Theory +1002.1890 Soft Condensed Matter +1002.1898 High Energy Astrophysical Phenomena +1002.1901 Mesoscale and Nanoscale Physics +1002.1905 Metric Geometry +1002.1915 High Energy Astrophysical Phenomena +1002.1916 Information Theory +1002.1921 Combinatorics +1002.1925 Combinatorics +1002.1931 Mesoscale and Nanoscale Physics +1002.1932 Theory +1002.1936 General Literature +1002.1937 Computational Geometry +1002.1940 Computation +1002.1950 Cryptography and Security +1002.1951 Multimedia +1002.1953 Hardware Architecture +1002.1954 Networking and Internet Architecture +1002.1955 Networking and Internet Architecture +hep-ph/0202074 Phenomenology +hep-ph/0309033 Phenomenology +hep-th/0203048 Theory +math/0401209 Number Theory +math/0507236 Group Theory +math/0601663 Number Theory +math/0604586 Rings and Algebras +q-bio/0601035 Populations and Evolution +0704.3086 Probability +0704.3788 Other Condensed Matter +0705.1414 Theory +0708.4306 +0709.2648 +0709.4152 +0712.0627 Theory +0712.3238 Spectral Theory +0712.3954 Number Theory +0802.1027 Other Condensed Matter +0803.2618 Statistical Mechanics +0804.0855 Theory +0807.1248 Phenomenology +0807.1635 +0807.2845 Disordered Systems and Neural Networks +0808.2814 Phenomenology +0810.3423 Phenomenology +0811.0877 +0811.1967 Theory +0812.0223 Disordered Systems and Neural Networks +0812.0678 +0812.2085 Theory +0812.4250 +0812.4830 Experiment +0901.0609 Phenomenology +0901.4005 Cosmology and Nongalactic Astrophysics +0902.0367 Lattice +0902.2384 +0902.2729 Theory +0902.4490 Phenomenology +0902.4770 Phenomenology +0904.1581 Probability +0904.2106 +0904.3813 Phenomenology +0904.4329 +0906.3316 Quantum Gases +0907.4672 +0907.5176 Phenomenology +0908.0428 Combinatorics +0908.2186 Phenomenology +0908.2412 Atomic Physics +0909.2173 Theory +0910.2905 Lattice +0910.3631 Mesoscale and Nanoscale Physics +0911.2326 Theory +0911.3032 +0911.3237 Phenomenology +0911.3333 +0911.3454 Physics and Society +0912.0381 Plasma Physics +0912.2734 Theory +0912.2744 Quantum Gases +0912.4800 High Energy Astrophysical Phenomena +1001.0939 Phenomenology +1001.1268 Operator Algebras +1001.1387 +1001.1541 Theory +1001.2808 Theory +1001.3075 Phenomenology +1001.3468 Phenomenology +1001.4207 Phenomenology +1001.4248 Phenomenology +1001.4931 Phenomenology +1001.5118 Theory +1001.5166 Theory +1002.0893 Experiment +1002.1850 Experiment +1002.2503 Phenomenology +1002.2818 Theory +1002.2991 +1002.3547 Theory +1002.3857 Theory +1002.4191 Theory +1002.4601 Phenomenology +1003.0097 +1003.0289 Phenomenology +1003.1857 Phenomenology +1003.1883 Statistical Mechanics +1003.2363 +1003.2388 Phenomenology +1003.3129 Phenomenology +1003.3657 +1003.4052 Theory +1003.4363 +1003.4603 Theory +1003.4717 Theory +1003.5165 Statistics Theory +1003.6084 Cosmology and Nongalactic Astrophysics +1004.0011 Algebraic Geometry +1004.2040 +1004.2779 Theory +1004.2849 Theory +1004.2980 Phenomenology +1004.3060 Quantum Gases +1004.3691 Theory +1004.3752 Theory +1004.4220 Theory +1004.4353 Strongly Correlated Electrons +1004.5138 Theory +1005.0234 Phenomenology +1005.0559 Phenomenology +1005.1354 Phenomenology +1005.1374 Superconductivity +1005.1632 Phenomenology +1005.3482 Phenomenology +1005.3840 Theory +1005.4334 Theory +1005.4345 Cosmology and Nongalactic Astrophysics +1005.4731 Phenomenology +1005.5177 Experiment +1005.5330 +1006.1185 Theory +1006.3284 Phenomenology +1006.3999 Cosmology and Nongalactic Astrophysics +1006.4629 High Energy Astrophysical Phenomena +1006.5806 Theory +1007.1428 Theory +1007.2321 Mesoscale and Nanoscale Physics +1007.2419 Phenomenology +1007.2500 +1007.2604 Phenomenology +1007.2933 Phenomenology +1007.3022 Statistical Mechanics +1007.3354 Theory +1007.3973 +1007.4269 Theory +1007.4430 Complex Variables +1007.4596 +1007.5054 Phenomenology +1007.5208 Phenomenology +1007.5312 Phenomenology +1008.0157 Materials Science +1008.0337 Superconductivity +1008.0521 Computational Complexity +1008.0925 Phenomenology +1008.1577 +1008.1889 Theory +1008.1943 Cosmology and Nongalactic Astrophysics +1008.2062 Theory +1008.2265 Mesoscale and Nanoscale Physics +1008.2306 +1008.2485 Theory +1008.2608 Combinatorics +1008.2956 Phenomenology +1008.2963 Theory +1008.2984 Phenomenology +1008.3263 Phenomenology +1008.3676 Cosmology and Nongalactic Astrophysics +1008.4283 Phenomenology +1008.4579 Theory +1008.4715 Materials Science +1008.4783 Phenomenology +1008.4801 +1008.5096 Theory +1008.5202 Accelerator Physics +1009.0265 Phenomenology +1009.0647 +1009.0987 Number Theory +1009.0992 Theory +1009.1135 Theory +1009.1425 +1009.1730 Phenomenology +1009.1780 Theory +1009.2225 Theory +1009.2276 Phenomenology +1009.2318 Theory +1009.2505 Cosmology and Nongalactic Astrophysics +1009.2580 +1009.2774 Lattice +1009.2813 Phenomenology +1009.3320 High Energy Astrophysical Phenomena +1009.3530 Phenomenology +1009.3674 +1009.3776 Cosmology and Nongalactic Astrophysics +1009.4665 +1009.5387 Theory +1009.5486 Theory +1009.5724 Statistical Mechanics +1010.0525 Phenomenology +1010.0541 Data Analysis, Statistics and Probability +1010.0755 Classical Analysis and ODEs +1010.1362 +1010.1364 Phenomenology +1010.1458 Phenomenology +1010.3906 Phenomenology +1010.4187 Phenomenology +1010.4219 General Mathematics +1010.4317 Phenomenology +1010.4373 Phenomenology +1010.4478 Phenomenology +1010.4794 Solar and Stellar Astrophysics +1010.4843 Instrumentation and Methods for Astrophysics +1011.1434 Phenomenology +1011.1619 Theory +1011.1969 Phenomenology +1011.2263 Phenomenology +1011.2714 Materials Science +1011.3975 Pricing of Securities +1011.4535 Networking and Internet Architecture +1011.5132 Physics and Society +1011.6062 Quantitative Methods +1011.6209 Functional Analysis +1011.6318 Materials Science +1011.6449 Cosmology and Nongalactic Astrophysics +1012.0814 Quantum Algebra +1012.0867 Analysis of PDEs +1012.1015 Differential Geometry +1012.1161 Methodology +1012.1197 Commutative Algebra +1012.1294 Mesoscale and Nanoscale Physics +1012.1336 Computational Complexity +1012.1609 Information Retrieval +1012.1615 Computational Engineering, Finance, and Science +1012.1617 Information Retrieval +1012.1619 Artificial Intelligence +1012.1620 Other Computer Science +1012.1621 Databases +1012.1628 +1012.1632 Databases +1012.1633 High Energy Astrophysical Phenomena +1012.1636 Other Computer Science +1012.1637 Number Theory +1012.1638 Digital Libraries +1012.1641 Programming Languages +1012.1643 Artificial Intelligence +1012.1645 Databases +1012.1646 Artificial Intelligence +1012.1647 Accelerator Physics +1012.1648 Artificial Intelligence +1012.1650 Digital Libraries +1012.1653 Group Theory +1012.1659 Artificial Intelligence +1012.1660 Databases +1012.1661 Artificial Intelligence +1012.1663 Information Retrieval +1012.1664 Other Computer Science +1012.1665 Cryptography and Security +1012.1666 Information Retrieval +1012.1667 Artificial Intelligence +1012.1671 Human-Computer Interaction +1012.1672 Computer Science and Game Theory +1012.1673 Computer Science and Game Theory +1012.1675 Functional Analysis +1012.1687 Earth and Planetary Astrophysics +1012.1689 Networking and Internet Architecture +1012.1691 Numerical Analysis +1012.1695 +1012.1699 Metric Geometry +1012.1705 +1012.1715 Computational Physics +1012.1718 Computational Physics +1012.1719 +1012.1725 Fluid Dynamics +1012.1726 Analysis of PDEs +1012.1731 Materials Science +1012.1733 Analysis of PDEs +1012.1734 Numerical Analysis +1012.1741 Materials Science +1012.1742 Group Theory +1012.1743 Artificial Intelligence +1012.1744 Algebraic Topology +1012.1745 Artificial Intelligence +1012.1750 Cosmology and Nongalactic Astrophysics +1012.1754 Rings and Algebras +1012.1759 Probability +1012.1765 Algebraic Geometry +1012.1767 Statistical Mechanics +1012.1771 Superconductivity +1012.1776 Information Theory +1012.1777 Representation Theory +1012.1785 Group Theory +1012.1788 Biological Physics +1012.1796 Combinatorics +1012.1800 General Physics +1012.1801 Representation Theory +1012.1805 General Topology +1012.1814 Statistical Mechanics +1012.1817 Solar and Stellar Astrophysics +1012.1824 Data Structures and Algorithms +1012.1825 Number Theory +1012.1830 Experiment +1012.1842 Probability +1012.1843 Probability +1012.1850 Data Structures and Algorithms +astro-ph/0002131 +astro-ph/0002308 +astro-ph/0003388 +astro-ph/0011475 +astro-ph/0104464 +astro-ph/0109199 +astro-ph/0110404 +astro-ph/0201405 +astro-ph/0208103 +astro-ph/0208219 +astro-ph/0208567 +astro-ph/0209093 +astro-ph/0303089 +astro-ph/0303227 +astro-ph/0305033 +astro-ph/0305035 +astro-ph/0305126 +astro-ph/0305211 +astro-ph/0312080 +astro-ph/0402045 +astro-ph/0402210 +astro-ph/0406194 +astro-ph/0407646 +astro-ph/0409275 +astro-ph/0409479 +astro-ph/0409523 +astro-ph/0409629 +astro-ph/0410419 +astro-ph/0411475 +astro-ph/0501643 +astro-ph/0502465 +astro-ph/0503033 +astro-ph/0503196 +astro-ph/0503612 +astro-ph/0504465 +astro-ph/0507476 +astro-ph/0509319 +astro-ph/0509344 +astro-ph/0509377 +astro-ph/0509390 +astro-ph/0509397 +astro-ph/0509428 +astro-ph/0509444 +astro-ph/0509449 +astro-ph/0509451 +astro-ph/0509485 +astro-ph/0509523 +astro-ph/0509543 +astro-ph/0509569 +astro-ph/0509618 +astro-ph/0509666 +astro-ph/0509688 +astro-ph/0509691 +astro-ph/0509714 +astro-ph/0509724 +astro-ph/0509842 +astro-ph/0510033 +astro-ph/0510036 +astro-ph/0510073 +astro-ph/0510076 +astro-ph/0510139 +astro-ph/0510140 +astro-ph/0510273 +astro-ph/0510506 +astro-ph/0510514 +astro-ph/0510521 +astro-ph/0510617 +astro-ph/0510644 +astro-ph/0510779 +astro-ph/0510832 +astro-ph/0511024 +astro-ph/0511208 +astro-ph/0511460 +astro-ph/0511524 +astro-ph/0601237 +astro-ph/0602117 +astro-ph/0603019 +astro-ph/0605353 +astro-ph/9308017 +astro-ph/9309049 +astro-ph/9309054 +astro-ph/9311041 +astro-ph/9403037 +astro-ph/9502034 +astro-ph/9704099 +astro-ph/9812370 +astro-ph/9910222 +chao-dyn/9501009 Chaotic Dynamics +chao-dyn/9604018 Chaotic Dynamics +chao-dyn/9612015 Chaotic Dynamics +cond-mat/0610242 Soft Condensed Matter +gr-qc/0304058 +gr-qc/0504141 +gr-qc/9802051 +hep-ex/0102033 Experiment +hep-ex/0210039 Experiment +hep-ex/0412012 Experiment +hep-lat/0210012 Lattice +hep-ph/0106187 Phenomenology +hep-ph/0201178 Phenomenology +hep-ph/0203019 Phenomenology +hep-ph/0206168 Phenomenology +hep-ph/0208222 Phenomenology +hep-ph/0208264 Phenomenology +hep-ph/0209362 Phenomenology +hep-ph/0210440 Phenomenology +hep-ph/0211316 Phenomenology +hep-ph/0305009 Phenomenology +hep-ph/0309229 Phenomenology +hep-ph/0405067 Phenomenology +hep-ph/0604027 Phenomenology +hep-ph/0611336 Phenomenology +hep-ph/9211201 Phenomenology +hep-ph/9305208 Phenomenology +hep-ph/9405385 Phenomenology +hep-ph/9412216 Phenomenology +hep-ph/9801208 Phenomenology +hep-ph/9810315 Phenomenology +hep-ph/9811442 Phenomenology +hep-th/0110019 Theory +hep-th/0210293 Theory +hep-th/0211186 Theory +math/0509280 Statistics Theory +math/0602511 Combinatorics +nucl-ex/0206007 +nucl-ex/0302022 +physics/0305009 General Physics +physics/0403115 History and Philosophy of Physics +0804.1333 General Topology +0811.2815 Theory +0901.0130 Theory +0910.2768 Differential Geometry +1001.2443 Materials Science +1001.4112 Materials Science +1002.1798 +0706.0730 Disordered Systems and Neural Networks +0709.2201 Discrete Mathematics +0709.2525 Discrete Mathematics +0709.3590 Discrete Mathematics +0804.4679 Number Theory +0806.4616 +0810.0191 Analysis of PDEs +0810.2336 Metric Geometry +0811.1016 General Topology +0905.0802 +0906.3937 Statistical Mechanics +0907.1890 Fluid Dynamics +0908.1503 Number Theory +0908.1862 Geometric Topology +0908.3006 Materials Science +0909.0035 Geometric Topology +0909.2613 Combinatorics +0909.5549 Differential Geometry +0910.0136 Disordered Systems and Neural Networks +0910.3142 Number Theory +0910.4539 Differential Geometry +0911.0812 Atomic Physics +0911.0858 Experiment +0912.1456 Theory +0912.4592 Optics +1001.0393 Computer Science and Game Theory +1001.2255 Optimization and Control +1002.0011 Phenomenology +1002.2219 +1002.2817 Statistical Mechanics +1002.4337 Optics +1003.4819 Quantum Gases +1004.2326 Phenomenology +1004.2713 Number Theory +1004.2976 Solar and Stellar Astrophysics +1004.2986 Theory +1004.3168 Quantum Gases +1004.4960 Computational Complexity +1005.0515 Disordered Systems and Neural Networks +1005.0631 Phenomenology +1005.3747 High Energy Astrophysical Phenomena +1005.4576 Quantum Algebra +1005.4999 High Energy Astrophysical Phenomena +1005.5090 Metric Geometry +1006.0889 Strongly Correlated Electrons +1006.1054 Functional Analysis +1006.1621 Solar and Stellar Astrophysics +1006.2052 Functional Analysis +1006.4072 +1006.4281 Populations and Evolution +1006.5336 High Energy Astrophysical Phenomena +1007.0240 Mesoscale and Nanoscale Physics +1007.1325 Materials Science +1007.1557 Materials Science +1007.3081 Strongly Correlated Electrons +1007.4732 Number Theory +1007.4956 Phenomenology +1007.5180 Artificial Intelligence +1007.5196 Astrophysics of Galaxies +1007.5314 Algebraic Geometry +1007.5319 Numerical Analysis +1007.5334 Combinatorics +1007.5335 Numerical Analysis +1007.5336 Information Theory +1007.5338 Accelerator Physics +1007.5340 Superconductivity +1007.5344 Combinatorics +1007.5346 Combinatorics +1007.5347 Atmospheric and Oceanic Physics +1007.5350 Combinatorics +1007.5353 Pricing of Securities +1007.5367 Optics +1007.5372 Materials Science +1007.5386 General Physics +1007.5389 Atomic Physics +1007.5392 Materials Science +1007.5394 Group Theory +1007.5400 Combinatorics +1007.5404 High Energy Astrophysical Phenomena +1007.5406 Data Structures and Algorithms +1007.5408 Information Theory +1007.5410 Materials Science +1007.5413 Statistical Finance +1007.5417 Fluid Dynamics +1007.5421 Artificial Intelligence +1007.5425 Networking and Internet Architecture +1007.5433 Risk Management +1007.5434 Combinatorics +1007.5440 Algebraic Geometry +1007.5445 Analysis of PDEs +1007.5450 Data Structures and Algorithms +1007.5452 Materials Science +1007.5453 Quantum Gases +1007.5462 Probability +1007.5465 Disordered Systems and Neural Networks +1007.5467 Differential Geometry +1007.5471 Neurons and Cognition +1007.5474 Plasma Physics +1007.5475 Data Structures and Algorithms +1007.5478 Differential Geometry +1007.5485 Number Theory +1007.5489 Phenomenology +1007.5491 Logic in Computer Science +1007.5495 Analysis of PDEs +1007.5496 Analysis of PDEs +1007.5511 Materials Science +1007.5514 Information Theory +1007.5519 Populations and Evolution +cs/0304010 Cryptography and Security +cs/0505082 Cryptography and Security +cs/0507063 Cryptography and Security +cs/0607079 Cryptography and Security +math/0009070 Differential Geometry +math/0105045 Logic +math/0208057 Logic +math/0212009 Logic +math/0302322 General Topology +math/0304028 Numerical Analysis +math/0304489 Number Theory +math/0307226 Logic +math/0311228 Metric Geometry +math/0401154 Combinatorics +math/0404076 Group Theory +math/0505458 Algebraic Geometry +math/0507041 Group Theory +math/0511059 Commutative Algebra +math/0703039 Representation Theory +math/9705209 Logic +0712.1869 Combinatorics +0712.3378 Probability +0802.1915 Representation Theory +0805.0612 Combinatorics +0810.2322 Atomic Physics +0811.3099 Phenomenology +0901.3425 Materials Science +0901.4724 Theory +0902.1919 Differential Geometry +0904.2753 K-Theory and Homology +0906.4602 Information Theory +0907.0798 Differential Geometry +0907.4230 Discrete Mathematics +0908.3868 Symplectic Geometry +0909.4624 Phenomenology +0909.5591 Lattice +0910.2513 Cosmology and Nongalactic Astrophysics +0910.3197 +0911.2797 +0911.3315 Space Physics +0911.4023 Dynamical Systems +0911.4223 Data Analysis, Statistics and Probability +1001.4267 Information Theory +1001.4470 Group Theory +1001.4823 Theory +1002.0422 Materials Science +1002.1081 Theory +1002.1846 Theory +1002.2213 Phenomenology +1002.2752 Rings and Algebras +1003.1672 Geometric Topology +1003.3420 Theory +1004.0284 +1004.0976 +1004.1001 Data Structures and Algorithms +1004.3637 Phenomenology +1004.3803 Theory +1004.4197 +1004.4697 +1004.5531 Quantum Gases +1005.0127 Theory +1005.0910 Phenomenology +1005.1529 +1005.1673 Phenomenology +1005.1827 Phenomenology +1005.2908 Optimization and Control +1005.3751 Lattice +1005.3808 Cosmology and Nongalactic Astrophysics +1005.4171 Theory +1005.4296 Statistical Mechanics +1006.0002 Phenomenology +1006.0467 Phenomenology +1006.0661 Phenomenology +1006.0717 Theory +1006.0913 Phenomenology +1006.0938 Lattice +1006.1121 +1006.2357 Phenomenology +1006.2379 Phenomenology +1006.2399 Astrophysics of Galaxies +1006.3444 Classical Physics +1006.4158 Astrophysics of Galaxies +1006.4199 Phenomenology +1007.0319 +1007.0468 Theory +1007.0871 Phenomenology +1007.0964 Phenomenology +1007.1005 Phenomenology +1007.1493 +1007.2385 Theory +1007.2498 Theory +1007.2583 Theory +1007.3484 Theory +1007.3737 Theory +1007.4138 Category Theory +1007.4199 Cosmology and Nongalactic Astrophysics +1007.4242 Cosmology and Nongalactic Astrophysics +1007.4496 Phenomenology +1007.4610 +1007.4789 +1007.4880 Symplectic Geometry +1007.4996 +1007.5066 +1007.5201 High Energy Astrophysical Phenomena +1007.5286 Mesoscale and Nanoscale Physics +1007.5343 +1007.5443 Phenomenology +1008.0117 Phenomenology +1008.0636 Phenomenology +1008.0747 +1008.1798 Phenomenology +1008.1810 Theory +1008.1997 Phenomenology +1008.2332 +1008.3175 Phenomenology +1008.3198 Cosmology and Nongalactic Astrophysics +1008.3297 +1008.3455 Cosmology and Nongalactic Astrophysics +1008.3536 Phenomenology +1008.4018 Lattice +1008.4404 Experiment +1008.4432 Phenomenology +1008.4445 Phenomenology +1008.4523 Quantum Algebra +1008.4562 Lattice +1008.4619 Phenomenology +1008.4750 Phenomenology +1008.4778 Theory +1008.4869 Phenomenology +1008.4921 Theory +1008.5297 Theory +1009.0014 Phenomenology +1009.0067 +1009.0076 Mesoscale and Nanoscale Physics +1009.0277 Cosmology and Nongalactic Astrophysics +1009.0307 Phenomenology +1009.1570 Phenomenology +1009.2068 Phenomenology +1009.2226 +1009.2461 Cosmology and Nongalactic Astrophysics +1009.2783 +1009.2841 Strongly Correlated Electrons +1009.3077 Phenomenology +1009.3521 Phenomenology +1009.3557 Phenomenology +1009.3813 +1009.4193 Cosmology and Nongalactic Astrophysics +1009.4670 Phenomenology +1009.4697 Cosmology and Nongalactic Astrophysics +1009.4811 Phenomenology +1009.5024 +1009.5377 Phenomenology +1009.5901 Mesoscale and Nanoscale Physics +1010.1208 +1010.1217 +1010.1961 Portfolio Management +1010.2328 Theory +1010.2402 Phenomenology +1010.2776 Theory +1010.3769 Cosmology and Nongalactic Astrophysics +1010.4096 High Energy Astrophysical Phenomena +1010.5998 Theory +1011.1749 Phenomenology +1011.2774 Cosmology and Nongalactic Astrophysics +1011.3065 +1011.3781 Optimization and Control +1011.3902 Instrumentation and Methods for Astrophysics +1011.4097 +1011.4572 Combinatorics +1011.5401 Instrumentation and Methods for Astrophysics +1011.5554 Cosmology and Nongalactic Astrophysics +1011.5946 +1011.6269 History and Philosophy of Physics +1012.3491 +1012.3973 Functional Analysis +1012.4207 +1012.5003 Combinatorics +1012.5012 Dynamical Systems +1012.5066 Methodology +1012.5101 High Energy Astrophysical Phenomena +1012.5106 Numerical Analysis +1012.5108 Materials Science +1012.5113 Systems and Control +1012.5120 General Physics +1012.5122 Group Theory +1012.5123 Programming Languages +1012.5124 Mesoscale and Nanoscale Physics +1012.5127 Materials Science +1012.5130 Computational Complexity +1012.5133 Theory +1012.5135 Chemical Physics +1012.5137 Instrumentation and Methods for Astrophysics +1012.5140 Computational Physics +1012.5142 Materials Science +1012.5143 +1012.5147 Materials Science +1012.5148 Classical Physics +1012.5149 Optimization and Control +1012.5151 Fluid Dynamics +1012.5154 Accelerator Physics +1012.5160 Physics and Society +1012.5163 Strongly Correlated Electrons +1012.5168 Lattice +1012.5169 Experiment +1012.5173 Computer Science and Game Theory +1012.5174 Networking and Internet Architecture +1012.5178 +1012.5185 +1012.5189 Materials Science +1012.5191 Algebraic Geometry +1012.5196 Operator Algebras +1012.5198 Functional Analysis +1012.5199 Digital Libraries +1012.5201 Dynamical Systems +1012.5203 Number Theory +1012.5204 Cosmology and Nongalactic Astrophysics +1012.5208 Computer Vision and Pattern Recognition +1012.5210 Commutative Algebra +1012.5214 K-Theory and Homology +1012.5217 Analysis of PDEs +1012.5219 Experiment +1012.5233 +1012.5238 Algebraic Geometry +1012.5240 Computational Geometry +1012.5248 Formal Languages and Automata Theory +1012.5250 Space Physics +1012.5253 Computational Geometry +1012.5258 Experiment +1012.5259 Computational Geometry +1012.5261 +1012.5262 Operator Algebras +1012.5267 Superconductivity +1012.5270 Other Condensed Matter +1012.5274 Probability +1012.5279 Chemical Physics +1012.5281 Earth and Planetary Astrophysics +1012.5283 +1012.5286 General Physics +1012.5292 Probability +1012.5295 Spectral Theory +cond-mat/0607671 Superconductivity +cond-mat/0607714 Superconductivity +gr-qc/0611091 +math/0509559 Number Theory +math/0606796 Algebraic Geometry +0706.1482 General Mathematics +0707.1687 Strongly Correlated Electrons +0707.2447 Dynamical Systems +0708.3657 Other Condensed Matter +0712.0624 Strongly Correlated Electrons +0802.4108 Superconductivity +0802.4113 Strongly Correlated Electrons +0803.3207 +0804.0989 Numerical Analysis +0804.1543 Other Condensed Matter +0805.1046 Classical Analysis and ODEs +0807.0701 Optics +0809.1621 Strongly Correlated Electrons +0809.4833 +0810.1571 Distributed, Parallel, and Cluster Computing +0812.1435 Physics and Society +0901.4544 Disordered Systems and Neural Networks +0902.3701 Strongly Correlated Electrons +0902.4119 Statistical Mechanics +0902.4707 Other Condensed Matter +0905.0826 Soft Condensed Matter +0905.2737 Number Theory +0905.3692 Algebraic Geometry +0906.2814 Earth and Planetary Astrophysics +0907.0145 Classical Analysis and ODEs +0907.0383 Superconductivity +0907.1332 Quantum Gases +0907.1380 Atomic Physics +0907.1653 Earth and Planetary Astrophysics +0907.2011 Superconductivity +0908.2691 Materials Science +0908.3855 Information Theory +0909.0041 Algebraic Geometry +0909.0223 +0909.1136 Superconductivity +0909.2409 Algebraic Topology +0909.3886 Mesoscale and Nanoscale Physics +0910.1174 Statistical Mechanics +0910.4127 Materials Science +0910.5519 Differential Geometry +0911.0001 Phenomenology +0911.0019 Theory +0911.0597 Theory +0911.1148 Phenomenology +0911.1156 Phenomenology +0911.2372 Optimization and Control +0911.2886 Strongly Correlated Electrons +0911.3478 Mesoscale and Nanoscale Physics +0911.4509 Soft Condensed Matter +0911.4681 Probability +0911.5308 +0911.5488 Superconductivity +0912.0992 Strongly Correlated Electrons +0912.4850 Strongly Correlated Electrons +1001.0536 Superconductivity +1001.1489 Cosmology and Nongalactic Astrophysics +1001.2504 Group Theory +1001.3596 Theory +1001.5335 Quantum Gases +1002.1086 Mesoscale and Nanoscale Physics +1002.2022 Earth and Planetary Astrophysics +1002.2769 Digital Libraries +1002.3265 Materials Science +1002.4382 Algebraic Geometry +1003.0225 Combinatorics +1003.0312 Phenomenology +1003.1508 Atmospheric and Oceanic Physics +1003.1678 Chemical Physics +1003.1810 Multiagent Systems +1003.1814 Information Retrieval +1003.1816 Databases +1003.1826 Computer Vision and Pattern Recognition +1003.1827 Computer Vision and Pattern Recognition +1003.1980 Statistical Mechanics +1003.1983 Cellular Automata and Lattice Gases +1003.1984 Combinatorics +1003.1986 Astrophysics of Galaxies +1003.1997 Number Theory +1003.1998 Theory +1003.2009 Functional Analysis +1003.2011 +1003.2015 Combinatorics +1003.2021 +1003.2025 +1003.2028 Combinatorics +1003.2030 +1003.2032 Soft Condensed Matter +1003.2057 Analysis of PDEs +1003.2062 Plasma Physics +1003.2063 High Energy Astrophysical Phenomena +1003.2068 Strongly Correlated Electrons +1003.2074 Probability +1003.2076 Operator Algebras +1003.2079 Strongly Correlated Electrons +1003.2081 Quantum Algebra +1003.2082 Superconductivity +1003.2095 Algebraic Geometry +1003.2097 Operator Algebras +1003.2104 Dynamical Systems +1003.2105 +1003.2107 Differential Geometry +1003.2109 Number Theory +1003.2110 Quantitative Methods +1003.2113 Digital Libraries +1003.2114 Differential Geometry +1003.2116 Differential Geometry +1003.2121 Theory +1003.2122 Probability +1003.2123 Cryptography and Security +1003.2124 Combinatorics +1003.2135 Representation Theory +1003.2138 Information Theory +1003.2142 Information Theory +1003.2143 Strongly Correlated Electrons +1003.2145 Phenomenology +1003.2149 Commutative Algebra +1003.2155 Medical Physics +1003.2157 Phenomenology +1003.2160 Solar and Stellar Astrophysics +1003.2176 Mesoscale and Nanoscale Physics +1003.2179 Representation Theory +1003.2181 Solar and Stellar Astrophysics +1003.2182 Lattice +1003.2184 Differential Geometry +1003.2185 Cosmology and Nongalactic Astrophysics +1003.2195 Complex Variables +1003.2196 +1003.2197 Representation Theory +1003.2198 Digital Libraries +cond-mat/0410541 Materials Science +cond-mat/9912144 Mesoscale and Nanoscale Physics +math-ph/0407043 +math-ph/0504082 +math/0410429 Combinatorics +math/0604091 Quantum Algebra +math/0609232 General Mathematics +nlin/0204060 Chaotic Dynamics +q-bio/0410024 Molecular Networks +q-bio/0702019 Neurons and Cognition +0705.3136 Mesoscale and Nanoscale Physics +0705.3145 Mesoscale and Nanoscale Physics +0706.3621 General Physics +0712.2723 General Physics +0803.3262 +0804.1786 +0805.2528 Mesoscale and Nanoscale Physics +0807.0614 Differential Geometry +0810.4756 Probability +0810.5571 Dynamical Systems +0811.2422 +0812.4797 General Physics +0901.0834 Information Theory +0901.4923 Combinatorics +0903.1621 Disordered Systems and Neural Networks +0904.1403 Dynamical Systems +0904.1474 Symplectic Geometry +0904.3427 Strongly Correlated Electrons +0906.4745 Data Analysis, Statistics and Probability +0906.4774 Combinatorics +0907.1222 Differential Geometry +0907.4478 +0908.0466 Mesoscale and Nanoscale Physics +0909.3665 Quantum Algebra +0911.1516 Computation and Language +0911.1517 Computation and Language +0911.4270 +0912.3486 Differential Geometry +0912.4220 Cosmology and Nongalactic Astrophysics +0912.5361 Phenomenology +1001.1944 Molecular Networks +1001.4323 Geometric Topology +1002.0464 Mesoscale and Nanoscale Physics +1002.1453 Analysis of PDEs +1002.1935 Analysis of PDEs +1002.1987 Quantum Gases +1002.3977 Statistical Mechanics +1002.4767 Mesoscale and Nanoscale Physics +1003.0799 +1003.1147 Quantum Gases +1003.3211 Phenomenology +1003.4662 +1003.4777 Theory +1004.1032 Theory +1004.1838 Strongly Correlated Electrons +1004.1900 Strongly Correlated Electrons +1004.2681 +1004.3720 Number Theory +1004.4165 Optimization and Control +1004.4170 Optimization and Control +1005.0303 Strongly Correlated Electrons +1005.0473 Quantum Gases +1005.3426 Superconductivity +1005.4153 Fluid Dynamics +1005.4223 Plasma Physics +1005.4511 Solar and Stellar Astrophysics +1006.0897 Mesoscale and Nanoscale Physics +1006.3498 Information Retrieval +1006.5656 +1007.2861 +1007.2948 Instrumentation and Detectors +1007.3832 Phenomenology +1007.4409 Algebraic Geometry +1007.4581 Theory +1007.4663 Discrete Mathematics +1007.4737 Solar and Stellar Astrophysics +1007.4811 Combinatorics +1007.4816 Experiment +1007.4821 Number Theory +1007.4822 Combinatorics +1007.4823 Number Theory +1007.4830 Biological Physics +1007.4837 Strongly Correlated Electrons +1007.4838 Materials Science +1007.4845 Group Theory +1007.4855 Rings and Algebras +1007.4857 Distributed, Parallel, and Cluster Computing +1007.4860 High Energy Astrophysical Phenomena +1007.4863 High Energy Astrophysical Phenomena +1007.4866 General Physics +1007.4868 Artificial Intelligence +1007.4873 Superconductivity +1007.4878 Materials Science +1007.4881 Cosmology and Nongalactic Astrophysics +1007.4884 +1007.4885 Lattice +1007.4887 General Topology +1007.4892 Statistical Mechanics +1007.4902 Rings and Algebras +1007.4903 Quantitative Methods +1007.4908 Logic in Computer Science +1007.4909 Statistics Theory +1007.4916 Statistical Mechanics +1007.4921 Experiment +1007.4922 Differential Geometry +1007.4927 Other Condensed Matter +1007.4931 Theory +1007.4932 Probability +1007.4934 Numerical Analysis +1007.4938 Computational Physics +1007.4946 Theory +1007.4959 Solar and Stellar Astrophysics +1007.4969 Applications +1007.4971 Logic in Computer Science +1007.4975 Rings and Algebras +1007.4982 Functional Analysis +1007.4983 Rings and Algebras +1007.4986 Programming Languages +1007.4987 Probability +1007.4990 High Energy Astrophysical Phenomena +1007.4991 Astrophysics of Galaxies +1007.4993 Software Engineering +1007.4997 +1007.4999 Theory +1007.5000 Algebraic Geometry +1007.5004 +1007.5008 Phenomenology +1007.5009 Cosmology and Nongalactic Astrophysics +1007.5011 Strongly Correlated Electrons +1007.5014 Atomic Physics +1007.5017 Combinatorics +1007.5019 Combinatorics +1007.5024 Artificial Intelligence +1007.5025 Optics +1007.5026 Theory +1007.5027 Optics +1007.5028 +1007.5030 Probability +1007.5036 Algebraic Geometry +1007.5041 Superconductivity +1007.5043 Fluid Dynamics +1007.5049 Phenomenology +1007.5055 Mesoscale and Nanoscale Physics +1007.5056 Mesoscale and Nanoscale Physics +math-ph/0204006 +math-ph/0408041 +math/0009049 Differential Geometry +math/0009069 Differential Geometry +math/0009071 Differential Geometry +math/0009117 Differential Geometry +math/0009138 Differential Geometry +math/0011233 Differential Geometry +math/0011262 Differential Geometry +math/0111163 Differential Geometry +math/0204248 Classical Analysis and ODEs +math/0205175 Classical Analysis and ODEs +math/0301037 Classical Analysis and ODEs +math/0310204 Complex Variables +math/0402031 Classical Analysis and ODEs +math/0406616 Classical Analysis and ODEs +math/0602432 Combinatorics +math/0606601 Probability +math/0607291 Analysis of PDEs +math/0607347 Dynamical Systems +math/0703598 Combinatorics +0706.0482 Portfolio Management +0706.0499 Algebraic Geometry +0708.1068 Phenomenology +0708.1478 Experiment +0708.2586 +0709.0595 Phenomenology +0709.1793 +0709.1798 +0709.1802 +0711.4499 K-Theory and Homology +0712.1357 Group Theory +0801.2049 Materials Science +0801.4459 Number Theory +0802.3115 +0803.0134 Discrete Mathematics +0803.2140 Plasma Physics +0805.0031 Experiment +0805.0371 Phenomenology +0805.2018 Instrumentation and Detectors +0806.1214 General Mathematics +0807.3170 Operator Algebras +0809.5046 +0810.0878 Other Condensed Matter +0810.1686 +0810.5220 Theory +0810.5615 Geometric Topology +0810.5734 Quantum Algebra +0811.1569 Representation Theory +0811.2543 +0811.2623 Optimization and Control +0811.3753 Theory +0812.0369 Theory +0812.2508 +0812.2519 K-Theory and Homology +0812.3464 Theory +0812.5055 +0901.4844 Plasma Physics +0902.0242 Chaotic Dynamics +0902.3573 +0903.0869 Combinatorics +0903.1855 Cosmology and Nongalactic Astrophysics +0903.3330 Statistics Theory +0903.4965 Number Theory +0904.3305 Probability +0906.1113 Cosmology and Nongalactic Astrophysics +0906.1737 Theory +0906.3325 Analysis of PDEs +0906.3563 Experiment +0907.1171 Cosmology and Nongalactic Astrophysics +0907.1597 Information Theory +0907.1976 Symplectic Geometry +0908.0719 Chemical Physics +0908.1227 Analysis of PDEs +0909.0144 Statistical Mechanics +0909.0702 Strongly Correlated Electrons +0910.0066 Mesoscale and Nanoscale Physics +0910.0417 +0910.0681 Chaotic Dynamics +0910.3474 Theory +0910.3714 Phenomenology +0910.3996 +0910.5388 Theory +0911.0264 Theory +0911.0387 Statistical Mechanics +0911.2267 Mesoscale and Nanoscale Physics +0911.3818 +0912.0504 Theory +0912.1358 Theory +0912.1814 Theory +0912.2264 +0912.3925 Data Structures and Algorithms +0912.3947 +0912.5017 Phenomenology +0912.5179 Populations and Evolution +1001.0340 Numerical Analysis +1001.0694 +1002.0722 Information Theory +1002.1169 Networking and Internet Architecture +1002.1854 Optics +1002.1919 Computation and Language +1002.3166 Quantum Algebra +1002.4089 Biological Physics +1002.4344 Number Theory +1002.4697 Phenomenology +1002.5016 Cosmology and Nongalactic Astrophysics +1003.1850 Differential Geometry +1003.1870 Theory +1003.2228 Statistical Mechanics +1003.2493 Commutative Algebra +1003.3010 Theory +1003.3024 Probability +1003.3026 Cosmology and Nongalactic Astrophysics +1003.3035 Algebraic Geometry +1003.3036 Biological Physics +1003.3040 Commutative Algebra +1003.3041 High Energy Astrophysical Phenomena +1003.3046 Commutative Algebra +1003.3052 K-Theory and Homology +1003.3056 Information Theory +1003.3058 General Physics +1003.3062 Algebraic Topology +1003.3064 Representation Theory +1003.3068 Analysis of PDEs +1003.3080 Multimedia +1003.3081 Neurons and Cognition +1003.3082 Artificial Intelligence +1003.3084 Physics and Society +1003.3085 Combinatorics +1003.3086 Mesoscale and Nanoscale Physics +1003.3094 Computers and Society +1003.3095 Statistical Mechanics +1003.3097 Computers and Society +1003.3103 Logic in Computer Science +1003.3111 Differential Geometry +1003.3113 Differential Geometry +1003.3123 Operator Algebras +1003.3126 Accelerator Physics +1003.3127 Optimization and Control +1003.3131 Computer Science and Game Theory +1003.3138 Probability +1003.3142 +1003.3143 Number Theory +1003.3144 Experiment +1003.3150 Analysis of PDEs +1003.3151 +1003.3154 Phenomenology +1003.3158 Superconductivity +1003.3159 Instrumentation and Methods for Astrophysics +1003.3160 Number Theory +1003.3166 Functional Analysis +1003.3169 Probability +1003.3172 Spectral Theory +1003.3175 Group Theory +1003.3181 Symbolic Computation +1003.3182 Statistical Mechanics +1003.3185 Popular Physics +1003.3187 Mesoscale and Nanoscale Physics +1003.3189 General Topology +1003.3192 +1003.3197 Spectral Theory +1003.3199 Algebraic Geometry +1003.3201 Computation +1003.3202 Differential Geometry +1003.3209 Symplectic Geometry +1003.3210 Algebraic Geometry +1003.3213 Analysis of PDEs +1003.3220 Differential Geometry +1003.3221 Category Theory +1003.3223 History and Philosophy of Physics +1003.3225 Phenomenology +1003.3227 Group Theory +1003.3228 +1003.3229 Superconductivity +1003.3231 Quantum Algebra +astro-ph/0410031 +gr-qc/0408086 +hep-ph/9304267 Phenomenology +math/0104131 Combinatorics +math/0205271 Algebraic Geometry +math/0207195 Representation Theory +math/0502100 Representation Theory +math/0702816 Functional Analysis +math/9505203 Logic +math/9605211 Logic +math/9712271 Logic +physics/0611032 Plasma Physics +physics/0611069 Plasma Physics +quant-ph/0510079 +quant-ph/0610060 +quant-ph/9412004 +0807.1883 Soft Condensed Matter +0810.2542 +0811.3452 Number Theory +0812.1410 Combinatorics +0901.1726 +0901.2514 Number Theory +0904.2223 Biological Physics +0906.2475 Differential Geometry +0907.1263 Physics and Society +0907.2609 Probability +0907.3827 +0909.3648 Artificial Intelligence +0910.3518 Differential Geometry +0910.5227 Cosmology and Nongalactic Astrophysics +0911.4435 Space Physics +0912.4571 Optimization and Control +1002.0545 Mesoscale and Nanoscale Physics +1002.2610 Strongly Correlated Electrons +1002.4616 Logic in Computer Science +1003.3161 Statistical Mechanics +1003.5223 Instrumentation and Methods for Astrophysics +1004.0353 +1004.1288 Phenomenology +1004.3029 Geometric Topology +1004.3030 Theory +1004.3127 Statistical Mechanics +1004.5461 Mesoscale and Nanoscale Physics +1005.3375 Superconductivity +1005.4674 Geometric Topology +1006.0094 +1006.0262 Cosmology and Nongalactic Astrophysics +1006.0408 Quantitative Methods +1006.0426 Mesoscale and Nanoscale Physics +1006.3166 +1006.3773 Phenomenology +1007.0645 Atomic Physics +1007.1526 Number Theory +1007.2262 Statistical Mechanics +1007.3534 Algebraic Geometry +1007.5222 Materials Science +1008.0495 Solar and Stellar Astrophysics +1008.0708 Quantum Gases +1008.0864 Superconductivity +1008.1217 Representation Theory +1008.1696 Statistical Mechanics +1008.2435 Differential Geometry +1008.2681 Biological Physics +1009.0429 Strongly Correlated Electrons +1009.2004 Combinatorics +1009.4402 Analysis of PDEs +1009.4562 Mesoscale and Nanoscale Physics +1009.4924 Statistical Mechanics +1009.5372 Analysis of PDEs +1010.0931 Phenomenology +1010.1063 Solar and Stellar Astrophysics +1010.1200 Strongly Correlated Electrons +1010.1262 Astrophysics of Galaxies +1010.1938 Cryptography and Security +1010.2100 Pattern Formation and Solitons +1010.2206 High Energy Astrophysical Phenomena +1010.2246 Numerical Analysis +1010.2357 Experiment +1010.2439 Computer Science and Game Theory +1010.2499 Complex Variables +1010.2508 Molecular Networks +1010.2512 Geophysics +1010.2513 Mesoscale and Nanoscale Physics +1010.2515 Solar and Stellar Astrophysics +1010.2517 Statistical Mechanics +1010.2519 Statistical Mechanics +1010.2520 Theory +1010.2521 Physics and Society +1010.2529 Fluid Dynamics +1010.2530 Neurons and Cognition +1010.2537 Functional Analysis +1010.2541 History and Overview +1010.2546 Combinatorics +1010.2547 Differential Geometry +1010.2549 Combinatorics +1010.2551 Information Theory +1010.2552 Logic +1010.2562 Soft Condensed Matter +1010.2564 Fluid Dynamics +1010.2569 Fluid Dynamics +1010.2573 Fluid Dynamics +1010.2575 Earth and Planetary Astrophysics +1010.2579 Rings and Algebras +1010.2586 Phenomenology +1010.2588 +1010.2590 Differential Geometry +1010.2591 Complex Variables +1010.2594 General Physics +1010.2598 Geophysics +1010.2600 Number Theory +1010.2604 Formal Languages and Automata Theory +1010.2606 Combinatorics +1010.2608 Geophysics +1010.2610 Geophysics +1010.2611 Fluid Dynamics +1010.2612 Fluid Dynamics +1010.2615 Combinatorics +1010.2620 Statistical Mechanics +1010.2621 Cryptography and Security +1010.2624 Materials Science +1010.2627 Mesoscale and Nanoscale Physics +1010.2628 Mesoscale and Nanoscale Physics +1010.2631 Mesoscale and Nanoscale Physics +1010.2635 Theory +1010.2640 +1010.2643 Materials Science +1010.2644 Earth and Planetary Astrophysics +1010.2647 Phenomenology +1010.2649 +1010.2652 Analysis of PDEs +1010.2653 Combinatorics +1010.2658 Popular Physics +1010.2666 Phenomenology +1010.2667 Information Theory +1010.2669 Algebraic Geometry +1010.2675 +1010.2680 Superconductivity +1010.2686 Information Theory +1010.2687 Fluid Dynamics +1010.2695 Analysis of PDEs +1010.2702 High Energy Astrophysical Phenomena +1010.2705 Cryptography and Security +1010.2706 Human-Computer Interaction +1010.2707 Geometric Topology +1010.2708 High Energy Astrophysical Phenomena +1010.2711 Combinatorics +1010.2718 Numerical Analysis +1010.2719 History and Overview +1010.2721 Algebraic Topology +1010.2722 Plasma Physics +1010.2725 Experiment +1010.2726 Group Theory +1010.2735 Earth and Planetary Astrophysics +1010.2736 Geometric Topology +1010.2737 Statistics Theory +1010.2742 Fluid Dynamics +cond-mat/0503421 Other Condensed Matter +cs/0501021 Distributed, Parallel, and Cluster Computing +0704.2913 Probability +0706.0358 Probability +0707.0750 Analysis of PDEs +0709.1678 Analysis of PDEs +0709.3044 Combinatorics +0710.3446 +0711.0393 Group Theory +0711.1893 Probability +0711.2138 Analysis of PDEs +0712.3035 Combinatorics +0712.4336 +0801.2994 Superconductivity +0802.1928 K-Theory and Homology +0805.0361 Materials Science +0805.1892 +0806.3845 Subcellular Processes +0806.3959 +0807.1555 Materials Science +0807.4711 Materials Science +0808.1549 Statistical Mechanics +0808.2853 Theory +0810.1895 Differential Geometry +0811.2933 Probability +0901.0498 Human-Computer Interaction +0901.3839 Human-Computer Interaction +0901.3918 Representation Theory +0901.4689 Complex Variables +0902.0524 Computer Science and Game Theory +0902.1162 Geometric Topology +0902.1844 Solar and Stellar Astrophysics +0902.3009 Soft Condensed Matter +0902.3953 Number Theory +0902.4579 Statistical Mechanics +0903.1132 Differential Geometry +0903.1856 Neurons and Cognition +0904.2539 Experiment +0904.4172 +0905.2693 Exactly Solvable and Integrable Systems +0905.3613 Combinatorics +0905.4289 Algebraic Geometry +0906.0693 Combinatorics +0906.3330 Category Theory +0907.0280 +0907.2961 Strongly Correlated Electrons +0907.3695 Analysis of PDEs +0908.3807 Astrophysics of Galaxies +0908.4432 +0909.3271 Combinatorics +0909.4942 +0909.5167 Theory +0910.0268 Superconductivity +0910.1759 Differential Geometry +0910.2192 Plasma Physics +0910.2196 Plasma Physics +0910.2564 Quantum Gases +0910.2569 Analysis of PDEs +0910.4225 Quantum Gases +0910.5697 Information Theory +0911.0057 Trading and Market Microstructure +0911.1314 +0911.1610 Pricing of Securities +0911.2401 Probability +0911.3259 Mesoscale and Nanoscale Physics +0911.4101 Mesoscale and Nanoscale Physics +0911.4166 Strongly Correlated Electrons +0911.4787 Theory +0912.1101 Representation Theory +0912.1534 Neural and Evolutionary Computing +0912.1570 Chemical Physics +0912.2879 +0912.4234 Phenomenology +1001.2482 Strongly Correlated Electrons +1001.3441 Superconductivity +1001.3500 Computational Engineering, Finance, and Science +1001.3585 Mesoscale and Nanoscale Physics +1001.3714 Networking and Internet Architecture +1001.4954 Representation Theory +1001.5241 Populations and Evolution +1002.0374 Combinatorics +1002.0441 Mesoscale and Nanoscale Physics +1002.0764 Plasma Physics +1002.1109 High Energy Astrophysical Phenomena +1002.1428 Cell Behavior +1002.2831 Complex Variables +1002.3724 Computational Engineering, Finance, and Science +1003.0085 Functional Analysis +1003.1454 Combinatorics +1003.2210 Materials Science +1003.2294 Methodology +1003.3241 Number Theory +1003.4462 Statistical Mechanics +1004.1031 Strongly Correlated Electrons +1004.1722 Operator Algebras +1004.2068 Strongly Correlated Electrons +1004.2112 General Physics +1004.2344 Theory +1004.2349 Representation Theory +1004.3242 Functional Analysis +1004.3259 Algebraic Geometry +1004.3580 Digital Libraries +1004.3695 Algebraic Geometry +1004.3730 +1004.4041 Computation +1004.4216 Databases +1004.4221 Functional Analysis +1004.4223 Learning +1004.4225 Commutative Algebra +1004.4226 Theory +1004.4232 Optics +1004.4233 Populations and Evolution +1004.4238 Popular Physics +1004.4239 Discrete Mathematics +1004.4241 Multimedia +1004.4245 Mesoscale and Nanoscale Physics +1004.4258 Statistics Theory +1004.4260 Algebraic Geometry +1004.4262 Probability +1004.4264 Probability +1004.4267 Probability +1004.4269 Number Theory +1004.4271 Analysis of PDEs +1004.4272 Portfolio Management +1004.4273 Combinatorics +1004.4275 Other Computer Science +1004.4278 Strongly Correlated Electrons +1004.4279 Instrumentation and Methods for Astrophysics +1004.4281 Mesoscale and Nanoscale Physics +1004.4288 Differential Geometry +1004.4289 Mesoscale and Nanoscale Physics +1004.4291 Mesoscale and Nanoscale Physics +1004.4296 Digital Libraries +1004.4297 Networking and Internet Architecture +1004.4299 Information Theory +1004.4302 Geometric Topology +1004.4311 Combinatorics +1004.4313 +1004.4316 General Physics +1004.4322 Neurons and Cognition +1004.4325 Geometric Topology +1004.4326 Networking and Internet Architecture +1004.4329 Numerical Analysis +1004.4330 Phenomenology +1004.4332 General Physics +1004.4334 Information Theory +1004.4341 High Energy Astrophysical Phenomena +1004.4349 Dynamical Systems +1004.4355 Complex Variables +1004.4356 Networking and Internet Architecture +1004.4357 Cryptography and Security +1004.4358 Cryptography and Security +1004.4359 Cryptography and Security +1004.4361 Cellular Automata and Lattice Gases +1004.4369 Commutative Algebra +1004.4372 Optics +1004.4373 Computer Vision and Pattern Recognition +1004.4375 Phenomenology +1004.4377 Mesoscale and Nanoscale Physics +1004.4378 Materials Science +1004.4379 Algebraic Geometry +1004.4380 Rings and Algebras +1004.4386 Numerical Analysis +1004.4387 Molecular Networks +1004.4388 Tissues and Organs +1004.4391 Methodology +1004.4392 Phenomenology +1004.4394 Biological Physics +1004.4400 Pricing of Securities +1004.4404 Rings and Algebras +1004.4408 Probability +1004.4410 Phenomenology +1004.4412 Representation Theory +1004.4413 Probability +1004.4416 Metric Geometry +1004.4422 +1004.4423 Algebraic Topology +1004.4430 Instrumentation and Methods for Astrophysics +1004.4432 Information Theory +1004.4438 Information Theory +1004.4439 Cosmology and Nongalactic Astrophysics +1004.4444 Networking and Internet Architecture +1004.4445 Cryptography and Security +1004.4447 Software Engineering +1004.4448 Computer Vision and Pattern Recognition +1004.4449 Other Computer Science +1004.4450 Multiagent Systems +1004.4451 Solar and Stellar Astrophysics +1004.4454 Multiagent Systems +1004.4457 Multimedia +1004.4458 Other Computer Science +1004.4459 Multimedia +1004.4460 Information Retrieval +1004.4462 Information Retrieval +1004.4463 Software Engineering +1004.4464 Information Retrieval +1004.4465 Networking and Internet Architecture +1004.4466 Networking and Internet Architecture +1004.4467 Computer Vision and Pattern Recognition +1004.4469 Computers and Society +1004.4474 Instrumentation and Detectors +1004.4477 Cryptography and Security +1004.4478 Sound +1004.4480 Other Computer Science +1004.4481 Networking and Internet Architecture +1004.4482 Instrumentation and Detectors +1004.4484 Discrete Mathematics +1004.4485 Graphics +1004.4490 Information Theory +1004.4504 Classical Physics +1004.4507 Mesoscale and Nanoscale Physics +1004.4511 Chaotic Dynamics +1004.4512 Representation Theory +1004.4520 Information Theory +1004.4521 Algebraic Geometry +1004.4526 Risk Management +1004.4528 Populations and Evolution +1004.4533 Superconductivity +1004.4535 Fluid Dynamics +1004.4536 Cosmology and Nongalactic Astrophysics +1004.4539 Optimization and Control +1004.4541 Distributed, Parallel, and Cluster Computing +1004.4542 +1004.4545 Solar and Stellar Astrophysics +1004.4548 Symbolic Computation +1004.4552 Combinatorics +1004.4556 Mesoscale and Nanoscale Physics +1004.4559 Distributed, Parallel, and Cluster Computing +1004.4560 Discrete Mathematics +1004.4561 +1004.4564 Geometric Topology +1004.4571 Combinatorics +1004.4575 Theory +1004.4580 Computers and Society +1004.4583 Networking and Internet Architecture +1004.4586 Networking and Internet Architecture +1004.4587 General Physics +1004.4588 Networking and Internet Architecture +1004.4592 Trading and Market Microstructure +1004.4594 Other Computer Science +1004.4595 Other Computer Science +1004.4600 Networking and Internet Architecture +1004.4601 Information Theory +1004.4602 Cosmology and Nongalactic Astrophysics +1004.4605 Other Computer Science +1004.4609 +1004.4610 Neural and Evolutionary Computing +1004.4612 Other Computer Science +1004.4614 Networking and Internet Architecture +1004.4616 Networking and Internet Architecture +1004.4621 Analysis of PDEs +cs/0509077 Information Theory +math/0204324 Probability +math/0204325 Probability +math/0212165 Combinatorics +math/0606509 Probability +nucl-ex/0307008 +nucl-th/0309011 +physics/0504053 Classical Physics +physics/0607212 Computational Physics +physics/0608293 Physics and Society +0707.3185 Group Theory +0709.2962 Logic in Computer Science +0803.0141 Geometric Topology +0808.2381 Group Theory +0810.4879 Differential Geometry +0902.4397 +0903.0135 +0904.1370 Geometric Topology +0905.4732 Cosmology and Nongalactic Astrophysics +0907.1607 Phenomenology +0907.1927 Cosmology and Nongalactic Astrophysics +0909.1901 Physics and Society +0910.0815 Algebraic Geometry +0910.2977 Rings and Algebras +0910.4927 Probability +0911.0408 Molecular Networks +0912.1393 +0912.2094 Cosmology and Nongalactic Astrophysics +0912.2845 +0912.4921 Mesoscale and Nanoscale Physics +0912.5275 Quantum Gases +1001.4875 +1002.0376 Materials Science +1002.0774 Strongly Correlated Electrons +1002.2449 Strongly Correlated Electrons +1003.0377 Chaotic Dynamics +1003.2873 Algebraic Geometry +1003.2983 Mesoscale and Nanoscale Physics +1003.4814 Superconductivity +1004.0169 Classical Analysis and ODEs +1004.1231 General Mathematics +1004.1437 Data Structures and Algorithms +1004.1507 Cosmology and Nongalactic Astrophysics +1005.1120 Data Structures and Algorithms +1005.2052 Classical Analysis and ODEs +1005.2203 Quantum Gases +1005.2886 +1006.0178 Classical Analysis and ODEs +1006.0500 +1006.1439 Biomolecules +1006.1858 +1006.2615 Optimization and Control +1006.3337 Pricing of Securities +1006.3370 Instrumentation and Detectors +1006.3461 +1006.3583 Dynamical Systems +1006.3592 Analysis of PDEs +1006.3599 Instrumentation and Detectors +1006.3601 Optimization and Control +1006.3621 Atmospheric and Oceanic Physics +1006.3623 Instrumentation and Detectors +1006.3624 Phenomenology +1006.3625 Atmospheric and Oceanic Physics +1006.3626 Instrumentation and Detectors +1006.3630 Numerical Analysis +1006.3636 Phenomenology +1006.3638 Formal Languages and Automata Theory +1006.3642 Analysis of PDEs +1006.3643 Analysis of PDEs +1006.3651 +1006.3661 Chaotic Dynamics +1006.3662 Instrumentation and Detectors +1006.3674 Instrumentation and Detectors +1006.3676 Astrophysics of Galaxies +1006.3678 Logic in Computer Science +1006.3679 Computer Vision and Pattern Recognition +1006.3683 Number Theory +1006.3685 General Physics +1006.3687 Pattern Formation and Solitons +1006.3688 Human-Computer Interaction +1006.3690 Methodology +1006.3693 Differential Geometry +1006.3695 Quantum Gases +1006.3697 General Physics +1006.3699 Dynamical Systems +1006.3701 Physics and Society +1006.3706 Complex Variables +1006.3707 Methodology +1006.3708 General Finance +1006.3712 Instrumentation and Detectors +1006.3715 Data Structures and Algorithms +1006.3719 Materials Science +1006.3724 Distributed, Parallel, and Cluster Computing +1006.3727 Earth and Planetary Astrophysics +1006.3728 Distributed, Parallel, and Cluster Computing +1006.3730 Group Theory +1006.3732 Distributed, Parallel, and Cluster Computing +1006.3734 Instrumentation and Detectors +1006.3739 Distributed, Parallel, and Cluster Computing +1006.3742 Distributed, Parallel, and Cluster Computing +1006.3743 +1006.3755 Formal Languages and Automata Theory +1006.3760 Classical Physics +1006.3764 Applications +1006.3770 Plasma Physics +1006.3771 +1006.3775 +1006.3777 Lattice +1006.3780 Information Theory +1006.3781 Numerical Analysis +1006.3788 +alg-geom/9507008 Algebraic Geometry +alg-geom/9711005 Algebraic Geometry +cond-mat/0408340 Mesoscale and Nanoscale Physics +cond-mat/0502508 Mesoscale and Nanoscale Physics +math/0006071 Algebraic Geometry +math/0105232 Number Theory +math/9901048 Algebraic Geometry +math/9901120 Geometric Topology +math/9912002 Algebraic Geometry +quant-ph/0302142 +quant-ph/0602006 +1005.0238 General Physics +0710.1419 Rings and Algebras +0711.4102 Quantum Algebra +0802.0946 Differential Geometry +0807.1048 Chemical Physics +0807.1712 Biological Physics +0808.1419 Theory +0808.2307 Combinatorics +0809.1383 +0810.2985 Classical Physics +0812.2232 Representation Theory +0901.0650 Cosmology and Nongalactic Astrophysics +0901.2234 Methodology +0901.3683 Cosmology and Nongalactic Astrophysics +0902.2745 +0902.3014 Materials Science +0902.3347 Machine Learning +0902.4380 Methodology +0905.0603 Methodology +0905.2773 Differential Geometry +0906.3565 +0906.4258 Machine Learning +0906.5141 +0909.0519 High Energy Astrophysical Phenomena +0910.1523 Probability +0910.1850 Analysis of PDEs +0910.2533 Classical Analysis and ODEs +0911.3460 +0911.4459 Discrete Mathematics +0912.1177 Numerical Analysis +1001.2784 Theory +1001.4747 Analysis of PDEs +1003.1020 Disordered Systems and Neural Networks +1003.3612 Superconductivity +1003.4608 Optimization and Control +1004.4531 Statistical Mechanics +1004.4577 Atomic Physics +1005.0818 Phenomenology +1005.4816 Quantum Gases +1006.0250 Plasma Physics +1006.0564 Materials Science +1006.1969 Soft Condensed Matter +1006.4721 Algebraic Geometry +1007.0685 Quantum Gases +1007.1717 Discrete Mathematics +1007.3974 Statistical Mechanics +1007.4042 Differential Geometry +1008.1600 Mesoscale and Nanoscale Physics +1008.1829 Combinatorics +1008.1909 Methodology +1008.1986 Computation and Language +1008.1987 Rings and Algebras +1008.1989 Optimization and Control +1008.1990 +1008.1994 Rings and Algebras +1008.1998 Rings and Algebras +1008.2006 Rings and Algebras +1008.2009 Rings and Algebras +1008.2014 Rings and Algebras +1008.2021 Logic in Computer Science +1008.2027 Statistical Mechanics +1008.2028 Machine Learning +1008.2034 Algebraic Geometry +1008.2036 Networking and Internet Architecture +1008.2040 Metric Geometry +1008.2047 Geometric Topology +1008.2058 Other Condensed Matter +1008.2059 Number Theory +1008.2066 Neurons and Cognition +1008.2067 Physics and Society +1008.2071 Statistical Mechanics +1008.2084 Representation Theory +1008.2091 Earth and Planetary Astrophysics +1008.2093 Information Theory +1008.2095 Cosmology and Nongalactic Astrophysics +1008.2103 General Physics +1008.2104 Pricing of Securities +1008.2108 Logic in Computer Science +1008.2109 Logic in Computer Science +1008.2110 Logic in Computer Science +1008.2111 Logic in Computer Science +1008.2112 Logic in Computer Science +1008.2113 +1008.2116 Mesoscale and Nanoscale Physics +1008.2122 Information Theory +1008.2124 General Physics +1008.2134 Combinatorics +1008.2144 High Energy Astrophysical Phenomena +1008.2149 Commutative Algebra +1008.2152 Soft Condensed Matter +1008.2160 Multiagent Systems +1008.2163 Rings and Algebras +1008.2164 Earth and Planetary Astrophysics +1008.2167 Metric Geometry +1008.2169 Methodology +1008.2176 Biological Physics +1008.2181 Computer Science and Game Theory +1008.2184 General Physics +1008.2185 General Physics +1008.2186 Databases +1008.2190 Optics +1008.2194 Combinatorics +cond-mat/0208537 Soft Condensed Matter +cond-mat/0501582 Statistical Mechanics +hep-th/0503240 Theory +math-ph/0609014 +math/0601581 Quantum Algebra +math/0608576 Statistics Theory +math/0701193 Quantum Algebra +0706.3081 Differential Geometry +0708.2725 K-Theory and Homology +0710.4510 Quantum Algebra +0711.1605 Information Theory +0804.0816 Quantum Algebra +0809.5082 Algebraic Geometry +0901.4934 Distributed, Parallel, and Cluster Computing +0902.4745 Superconductivity +0903.1680 Databases +0904.0584 Machine Learning +0904.1882 Physics and Society +0905.2646 Computation +0905.2895 Algebraic Topology +0905.4923 Formal Languages and Automata Theory +0906.0423 Statistics Theory +0907.4803 Physics and Society +0908.4394 Theory +0909.2730 Theory +0910.1657 History and Philosophy of Physics +0911.1391 Strongly Correlated Electrons +0912.0800 Optics +0912.2628 Chemical Physics +0912.4307 Physics and Society +0912.4732 Materials Science +1001.1197 Information Theory +1002.0182 Information Theory +1002.0215 Information Retrieval +1002.1547 +1002.3444 Cosmology and Nongalactic Astrophysics +1002.3445 Astrophysics of Galaxies +1002.3827 High Energy Astrophysical Phenomena +1003.1261 +1003.2013 Chaotic Dynamics +1003.3663 Theory +1004.2669 Differential Geometry +1004.3978 Lattice +1004.4925 Disordered Systems and Neural Networks +1004.5552 Disordered Systems and Neural Networks +1005.0110 +1005.0485 Chaotic Dynamics +1005.2156 Mesoscale and Nanoscale Physics +1005.2645 Quantum Gases +1005.2960 High Energy Astrophysical Phenomena +1005.5374 Experiment +1006.0132 Algebraic Geometry +1006.1600 Mesoscale and Nanoscale Physics +1006.2839 +1006.4060 Mesoscale and Nanoscale Physics +1006.4596 General Physics +1006.4808 Quantum Algebra +1006.5245 Superconductivity +1007.0502 Strongly Correlated Electrons +1007.2937 Optimization and Control +1007.5469 +1008.4518 Algebraic Geometry +1009.0375 Algebraic Geometry +1009.1514 Statistical Mechanics +1009.4328 Materials Science +1009.4353 High Energy Astrophysical Phenomena +1009.4447 Computational Complexity +1010.0597 Solar and Stellar Astrophysics +1010.0686 Theory +1010.0696 Systems and Control +1010.0699 Chemical Physics +1010.0702 +1010.0716 Combinatorics +1010.0718 Phenomenology +1010.0720 Representation Theory +1010.0722 Combinatorics +1010.0723 Instrumentation and Methods for Astrophysics +1010.0745 Statistics Theory +1010.0750 Computer Science and Game Theory +1010.0766 +1010.0772 Machine Learning +1010.0775 Dynamical Systems +1010.0777 Quantum Algebra +1010.0785 Mesoscale and Nanoscale Physics +1010.0796 Statistics Theory +1010.0797 +1010.0801 History and Philosophy of Physics +1010.0804 Methodology +1010.0807 Methodology +1010.0808 Medical Physics +1010.0809 Data Structures and Algorithms +1010.0810 Methodology +1010.0812 Category Theory +1010.0814 Methodology +1010.0815 Functional Analysis +1010.0817 Analysis of PDEs +1010.0819 Phenomenology +1010.0825 Applications +1010.0828 Applications +1010.0836 Applications +1010.0838 Applications +1010.0839 Applications +1010.0844 Applications +1010.0848 +1010.0851 Optimization and Control +1010.0859 Materials Science +1010.0865 Analysis of PDEs +1010.0868 Classical Analysis and ODEs +1010.0876 Classical Analysis and ODEs +1010.0879 Operator Algebras +1010.0883 Phenomenology +1010.0885 Soft Condensed Matter +1010.0888 Molecular Networks +1010.0891 Applications +1010.0898 Probability +1010.0905 Discrete Mathematics +1010.0919 Quantitative Methods +1010.0920 Differential Geometry +1010.0923 Functional Analysis +1010.0924 Databases +1010.0933 Information Theory +1010.0937 Information Theory +1010.0943 Phenomenology +1010.0944 +1010.0947 Combinatorics +1010.0958 Distributed, Parallel, and Cluster Computing +1010.0959 Statistics Theory +1010.0964 Phenomenology +1010.0969 Probability +1010.0971 Experiment +1010.0979 Neural and Evolutionary Computing +1010.0980 Neural and Evolutionary Computing +math/0310351 General Mathematics +physics/0605140 Data Analysis, Statistics and Probability +0711.4149 +0802.2414 +0802.4114 +0808.1331 Commutative Algebra +0901.0073 Solar and Stellar Astrophysics +0905.2208 Superconductivity +0906.1485 High Energy Astrophysical Phenomena +0906.4270 General Topology +0907.3227 Soft Condensed Matter +0907.3887 +0907.5143 History and Overview +0908.3607 Mesoscale and Nanoscale Physics +0909.4144 Phenomenology +0909.4510 Statistical Mechanics +0910.1685 Phenomenology +0911.1845 +0911.4200 Group Theory +0912.2297 Symplectic Geometry +1001.4605 Cosmology and Nongalactic Astrophysics +1001.5120 +math/0610236 Algebraic Topology +quant-ph/0412092 +0801.3954 Other Condensed Matter +0810.5622 +0812.3807 Commutative Algebra +0902.4886 Algebraic Geometry +0904.0732 Fluid Dynamics +0904.4617 Materials Science +0906.2852 Chaotic Dynamics +0907.4497 Statistical Mechanics +0909.0141 Combinatorics +0910.0071 Solar and Stellar Astrophysics +0910.1835 Solar and Stellar Astrophysics +0910.1973 Atomic Physics +0910.2710 Cosmology and Nongalactic Astrophysics +0910.4833 Disordered Systems and Neural Networks +0911.0335 Superconductivity +0911.0969 Solar and Stellar Astrophysics +0911.3352 Discrete Mathematics +0912.5245 +hep-th/0601099 Theory +math/0409181 Spectral Theory +math/0411109 Analysis of PDEs +0710.3801 Complex Variables +0711.0064 Atomic Physics +0711.0067 Atomic Physics +0804.0101 Combinatorics +0810.2780 +0901.4566 Cosmology and Nongalactic Astrophysics +0902.3521 +0903.5038 Classical Analysis and ODEs +0905.1524 Probability +0905.3915 Atomic Physics +0906.4109 Theory +0907.0481 Atomic Physics +0908.0217 Optics +0908.1248 Biological Physics +0909.5553 Other Condensed Matter +0910.5075 Atomic Physics +0911.3687 +0911.5535 Differential Geometry +0911.5584 Cosmology and Nongalactic Astrophysics +0912.1150 Combinatorics +0912.2993 Theory +0912.3520 Theory +0912.5513 Cosmology and Nongalactic Astrophysics +1001.0160 Machine Learning +1001.0451 Functional Analysis +1001.1018 Functional Analysis +1001.1597 Information Theory +1001.4011 Functional Analysis +1002.0191 Statistical Mechanics +1002.0984 +1002.2401 Solar and Stellar Astrophysics +1002.2989 Materials Science +1002.3364 Superconductivity +1002.4918 Quantum Gases +1003.0177 Differential Geometry +1003.0854 Atomic Physics +1003.0909 +1003.0965 Cosmology and Nongalactic Astrophysics +1003.1495 +1003.3045 Discrete Mathematics +1003.4437 +1004.4037 +1005.0013 Disordered Systems and Neural Networks +1005.0261 Differential Geometry +1005.4663 Number Theory +1006.2068 Superconductivity +1006.2355 Superconductivity +1006.5721 Atomic Physics +1007.0437 Solar and Stellar Astrophysics +1007.5476 Social and Information Networks +1008.0781 Cryptography and Security +1008.1819 Disordered Systems and Neural Networks +1008.3166 Molecular Networks +1008.3170 +1008.3174 Superconductivity +1008.3185 Astrophysics of Galaxies +1008.3187 Data Structures and Algorithms +1008.3190 Combinatorics +1008.3199 Information Theory +1008.3204 Number Theory +1008.3208 Discrete Mathematics +1008.3210 Operator Algebras +1008.3211 Representation Theory +1008.3213 Combinatorics +1008.3216 Data Structures and Algorithms +1008.3217 Discrete Mathematics +1008.3219 Strongly Correlated Electrons +1008.3220 K-Theory and Homology +1008.3221 Probability +1008.3222 Systems and Control +1008.3223 Optics +1008.3231 Optics +1008.3234 Superconductivity +1008.3241 Rings and Algebras +1008.3244 +1008.3250 Metric Geometry +1008.3252 Analysis of PDEs +1008.3253 Cryptography and Security +1008.3258 Physics Education +1008.3260 Category Theory +1008.3266 Combinatorics +1008.3269 Superconductivity +1008.3271 Functional Analysis +1008.3274 Analysis of PDEs +1008.3275 Number Theory +1008.3282 Information Retrieval +1008.3283 Complex Variables +1008.3284 Spectral Theory +1008.3285 Probability +1008.3288 Hardware Architecture +1008.3289 Social and Information Networks +1008.3290 Strongly Correlated Electrons +1008.3301 Computational Engineering, Finance, and Science +1008.3303 Formal Languages and Automata Theory +1008.3304 Computational Engineering, Finance, and Science +1008.3305 Data Structures and Algorithms +1008.3306 Multiagent Systems +1008.3307 +1008.3311 Hardware Architecture +1008.3314 Artificial Intelligence +1008.3320 Other Computer Science +1008.3321 Software Engineering +1008.3340 Hardware Architecture +1008.3344 Hardware Architecture +1008.3346 Computer Vision and Pattern Recognition +1008.3352 Hardware Architecture +1008.3357 Hardware Architecture +1008.3360 Optimization and Control +1008.3364 Classical Analysis and ODEs +1008.3366 Computer Science and Game Theory +1008.3374 Analysis of PDEs +1008.3379 Materials Science +math/0403065 Differential Geometry +0711.4139 Differential Geometry +0804.0470 Differential Geometry +0901.0852 Logic +0902.2497 Quantum Algebra +0902.4585 Group Theory +0903.5291 +0904.4846 Mesoscale and Nanoscale Physics +0908.2368 Optimization and Control +0908.2664 Instrumentation and Methods for Astrophysics +0910.0085 Optimization and Control +0911.4759 Differential Geometry +0912.0304 Theory +0912.2582 +0912.4775 Differential Geometry +1001.1145 Exactly Solvable and Integrable Systems +1001.1414 Computer Science and Game Theory +1001.1861 Accelerator Physics +math/0603320 Differential Geometry +0704.0437 Experiment +0704.0629 Experiment +0704.2766 Experiment +0704.2773 Experiment +0704.3063 Experiment +0704.3954 Experiment +0705.1798 Experiment +0705.2788 Experiment +0705.4276 Experiment +0706.0458 Experiment +0706.2317 Experiment +0706.2813 Experiment +0707.0653 +0707.1601 Experiment +0707.1810 Experiment +0707.2864 Experiment +0707.3829 Probability +0708.0139 Experiment +0708.1568 Pricing of Securities +0708.1741 Category Theory +0708.2743 Theory +0709.3702 Algebraic Topology +0709.3783 Experiment +0710.0867 +0711.0716 +0711.1463 Experiment +0711.4063 Differential Geometry +0711.4688 Quantum Algebra +0712.0998 Experiment +0712.1020 Experiment +0712.1175 Experiment +0712.2758 Other Quantitative Biology +0712.2875 +0712.2879 +0712.2884 +0801.0680 Experiment +0801.3418 Experiment +0802.1332 Combinatorics +0802.2264 Experiment +0802.2664 Experiment +0802.3885 Combinatorics +0802.4214 Experiment +0802.4222 Experiment +0803.0793 Experiment +0803.1118 Experiment +0803.2869 Experiment +0804.0413 +0804.1369 Theory +0804.2176 +0804.3846 Algebraic Geometry +0804.4432 Experiment +0805.1308 +0805.2719 Strongly Correlated Electrons +0805.4599 Experiment +0806.0671 Experiment +0806.1227 Experiment +0806.1715 Experiment +0806.1801 +0806.2112 Experiment +0806.2344 Experiment +0806.3027 Experiment +0807.1427 Experiment +0807.2695 Experiment +0807.3718 Experiment +0807.3757 Experiment +0807.4545 Experiment +0808.0933 Experiment +0809.1110 Experiment +0809.1773 Rings and Algebras +0809.2587 Experiment +0809.2633 Space Physics +0810.0695 Geometric Topology +0810.1675 Theory +0810.2105 Probability +0810.2289 Probability +0810.3878 Experiment +0811.0586 Experiment +0812.1768 Dynamical Systems +0812.2005 +0812.2147 +0812.3520 Accelerator Physics +0901.0739 Experiment +0901.1147 Experiment +0901.1216 Experiment +0901.3805 Combinatorics +0902.0911 +0902.1171 Cosmology and Nongalactic Astrophysics +0903.0601 Experiment +0903.1023 +0903.1301 Experiment +0903.1505 Phenomenology +0903.1681 Experiment +0903.1748 Experiment +0903.4853 Experiment +0903.5525 Experiment +0904.0673 Experiment +0904.1394 Experiment +0904.2029 +0904.2417 Experiment +0904.3072 Dynamical Systems +0904.3920 Solar and Stellar Astrophysics +0904.4507 Probability +0905.1478 Experiment +0905.2849 Lattice +0905.3381 Experiment +0905.4086 Experiment +0906.0663 +0906.1172 Experiment +0906.1787 Experiment +0906.2138 Experiment +0906.2983 Experiment +0906.3304 +0906.3605 +0906.5267 Mesoscale and Nanoscale Physics +0906.5326 Experiment +0907.1048 Experiment +0907.1443 Phenomenology +0907.1915 Lattice +0907.2616 Statistical Mechanics +0907.3201 Experiment +0907.4398 Experiment +0907.4669 Commutative Algebra +0908.0273 Mesoscale and Nanoscale Physics +0908.1811 Experiment +0908.3909 Theory +0908.4532 Optics +0909.0193 Experiment +0909.0364 Strongly Correlated Electrons +0909.1056 Strongly Correlated Electrons +0909.2144 Quantum Gases +0909.2342 +0909.4779 Differential Geometry +0909.4814 Experiment +0909.5474 Experiment +0910.0516 +0910.1090 Phenomenology +0910.1324 Experiment +0910.2004 Distributed, Parallel, and Cluster Computing +0910.5674 Strongly Correlated Electrons +0911.0043 Theory +0911.0586 Theory +0911.0962 Theory +0911.2189 +0911.2499 Mesoscale and Nanoscale Physics +0911.2710 Experiment +0911.3402 Theory +0911.3544 Theory +0911.4463 Phenomenology +0911.4767 Plasma Physics +0911.5537 Commutative Algebra +0911.5623 Mesoscale and Nanoscale Physics +0912.0500 Phenomenology +0912.0715 Experiment +0912.2270 Theory +0912.2988 Theory +0912.3404 Theory +0912.3607 Mesoscale and Nanoscale Physics +0912.4330 +0912.4853 +0912.5244 Statistical Mechanics +1001.0628 Probability +1001.1377 Strongly Correlated Electrons +1001.1798 Information Theory +1001.2667 +1001.2867 +1001.4088 Cosmology and Nongalactic Astrophysics +1001.4462 Information Theory +1002.0864 Pricing of Securities +1002.1587 Geophysics +1002.2579 Materials Science +1003.0069 Mesoscale and Nanoscale Physics +1003.0158 Materials Science +1003.1288 +1003.1658 Artificial Intelligence +1003.2261 Chemical Physics +1003.4562 Logic in Computer Science +1003.4563 Logic in Computer Science +1003.4800 Logic in Computer Science +1003.4827 Databases +1003.4828 Databases +1003.4830 Databases +1003.4837 Optimization and Control +1003.4890 Methodology +1003.4894 Computation and Language +1003.4898 Computation and Language +1003.4903 Analysis of PDEs +1003.4908 Sound +1003.4920 Probability +1003.4924 Human-Computer Interaction +1003.5056 Databases +1003.5063 Functional Analysis +1003.5067 Complex Variables +1003.5070 Algebraic Geometry +1003.5076 Analysis of PDEs +1003.5105 Networking and Internet Architecture +1003.5199 Soft Condensed Matter +1003.5513 Logic in Computer Science +1003.5518 Logic in Computer Science +1003.5746 Networking and Internet Architecture +1003.5758 Programming Languages +1003.5770 Mesoscale and Nanoscale Physics +1004.0204 Networking and Internet Architecture +1004.0682 General Finance +1004.0778 Category Theory +1004.0835 Analysis of PDEs +1004.0930 Networking and Internet Architecture +1004.0952 High Energy Astrophysical Phenomena +1004.0972 Strongly Correlated Electrons +1004.0973 Biological Physics +1004.0975 Phenomenology +1004.0980 +1004.0986 Number Theory +1004.0988 Superconductivity +1004.0991 Exactly Solvable and Integrable Systems +1004.0992 Computational Complexity +1004.0993 Category Theory +1004.0999 Mesoscale and Nanoscale Physics +1004.1003 Information Theory +1004.1007 Differential Geometry +1004.1009 Algebraic Geometry +1004.1019 Mesoscale and Nanoscale Physics +1004.1020 Superconductivity +1004.1021 Pattern Formation and Solitons +1004.1025 Numerical Analysis +1004.1041 +1004.1042 Networking and Internet Architecture +1004.1043 Differential Geometry +1004.1044 Commutative Algebra +1004.1045 Information Theory +1004.1049 Exactly Solvable and Integrable Systems +1004.1050 Commutative Algebra +1004.1051 Physics and Society +1004.1053 Portfolio Management +1004.1056 Combinatorics +1004.1058 Networking and Internet Architecture +1004.1061 Learning +1004.1065 Number Theory +1004.1067 Number Theory +1004.1072 Number Theory +1004.1078 Number Theory +1004.1083 Number Theory +1004.1084 Number Theory +1004.1085 Number Theory +1004.1089 General Mathematics +1004.1090 Statistical Mechanics +1004.1091 Earth and Planetary Astrophysics +1004.1095 Optimization and Control +1004.1096 Analysis of PDEs +1004.1098 Probability +1004.1100 Superconductivity +1004.1123 High Energy Astrophysical Phenomena +1004.1125 Rings and Algebras +1004.1128 Logic +1004.1145 Differential Geometry +1004.1148 Plasma Physics +1004.1152 Functional Analysis +1004.1155 Information Theory +1004.1158 Information Theory +1004.1163 Algebraic Geometry +astro-ph/0008314 +astro-ph/0012195 +astro-ph/0103249 +astro-ph/0106079 +astro-ph/0107573 +astro-ph/0211570 +astro-ph/0301050 +astro-ph/0302204 +astro-ph/0302572 +astro-ph/0303479 +astro-ph/0309007 +astro-ph/0312276 +astro-ph/0403276 +astro-ph/0412438 +astro-ph/0501506 +astro-ph/0508630 +astro-ph/0511075 +astro-ph/0511228 +astro-ph/0603274 +astro-ph/0608269 +astro-ph/9303001 +astro-ph/9505030 +astro-ph/9511042 +astro-ph/9605047 +astro-ph/9707129 +astro-ph/9711121 +astro-ph/9711336 +astro-ph/9804283 +astro-ph/9808269 +astro-ph/9811018 +astro-ph/9908061 +astro-ph/9908085 +cond-mat/9411085 +gr-qc/9408023 +hep-ex/0001013 Experiment +hep-ex/0001060 Experiment +hep-ex/0002026 Experiment +hep-ex/0003004 Experiment +hep-ex/0004001 Experiment +hep-ex/0004002 Experiment +hep-ex/0004028 Experiment +hep-ex/0004032 Experiment +hep-ex/0004033 Experiment +hep-ex/0005013 Experiment +hep-ex/0006002 Experiment +hep-ex/0006008 Experiment +hep-ex/0006026 Experiment +hep-ex/0007012 Experiment +hep-ex/0007041 Experiment +hep-ex/0007042 Experiment +hep-ex/0007057 Experiment +hep-ex/0008015 Experiment +hep-ex/0009011 Experiment +hep-ex/0009044 Experiment +hep-ex/0010025 Experiment +hep-ex/0010035 Experiment +hep-ex/0010036 Experiment +hep-ex/0010047 Experiment +hep-ex/0010075 Experiment +hep-ex/0010080 Experiment +hep-ex/0011049 Experiment +hep-ex/0011065 Experiment +hep-ex/0011073 Experiment +hep-ex/0012020 Experiment +hep-ex/0012054 Experiment +hep-ex/0101006 Experiment +hep-ex/0101029 Experiment +hep-ex/0101032 Experiment +hep-ex/0101051 Experiment +hep-ex/0102034 Experiment +hep-ex/0102036 Experiment +hep-ex/0102038 Experiment +hep-ex/0102041 Experiment +hep-ex/0102044 Experiment +hep-ex/0102045 Experiment +hep-ex/0103004 Experiment +hep-ex/0103005 Experiment +hep-ex/0103006 Experiment +hep-ex/0103013 Experiment +hep-ex/0103014 Experiment +hep-ex/0103015 Experiment +hep-ex/0103020 Experiment +hep-ex/0103022 Experiment +hep-ex/0103025 Experiment +hep-ex/0103026 Experiment +hep-ex/0103031 Experiment +hep-ex/0103035 Experiment +hep-ex/0103044 Experiment +hep-ex/0104007 Experiment +hep-ex/0104020 Experiment +hep-ex/0104027 Experiment +hep-ex/0105050 Experiment +hep-ex/0105052 Experiment +hep-ex/0105054 Experiment +hep-ex/0105077 Experiment +hep-ex/0105084 Experiment +hep-ex/0106063 Experiment +hep-ex/0108013 Experiment +hep-ex/0108024 Experiment +hep-ex/0108032 Experiment +hep-ex/0108033 Experiment +hep-ex/0108043 Experiment +hep-ex/0110055 Experiment +hep-ex/0110058 Experiment +hep-ex/0110071 Experiment +hep-ex/0111024 Experiment +hep-ex/0111095 Experiment +hep-ex/0112033 Experiment +hep-ex/0201005 Experiment +hep-ex/0201023 Experiment +hep-ex/0202019 Experiment +hep-ex/0202033 Experiment +hep-ex/0203030 Experiment +hep-ex/0203032 Experiment +hep-ex/0204017 Experiment +hep-ex/0204019 Experiment +hep-ex/0206024 Experiment +hep-ex/0206030 Experiment +hep-ex/0207067 Experiment +hep-ex/0207078 Experiment +hep-ex/0208006 Experiment +hep-ex/0208019 Experiment +hep-ex/0210040 Experiment +hep-ex/0210048 Experiment +hep-ex/0211029 Experiment +hep-ex/0212045 Experiment +hep-ex/0212051 Experiment +hep-ex/0301028 Experiment +hep-ex/0302028 Experiment +hep-ex/0303009 Experiment +hep-ex/0304015 Experiment +hep-ex/0304019 Experiment +hep-ex/0305005 Experiment +hep-ex/0305017 Experiment +hep-ex/0307034 Experiment +hep-ex/0309020 Experiment +hep-ex/0309065 Experiment +hep-ex/0311033 Experiment +hep-ex/0312058 Experiment +hep-ex/0401005 Experiment +hep-ex/0402040 Experiment +hep-ex/0403052 Experiment +hep-ex/0403053 Experiment +hep-ex/0404021 Experiment +hep-ex/0405011 Experiment +hep-ex/0407028 Experiment +hep-ex/0407030 Experiment +hep-ex/0407035 Experiment +hep-ex/0408011 Experiment +hep-ex/0408133 Experiment +hep-ex/0409027 Experiment +hep-ex/0409068 Experiment +hep-ex/0410038 Experiment +hep-ex/0410088 Experiment +hep-ex/0411050 Experiment +hep-ex/0411068 Experiment +hep-ex/0501002 Experiment +hep-ex/0501026 Experiment +hep-ex/0501042 Experiment +hep-ex/0502012 Experiment +hep-ex/0503027 Experiment +hep-ex/0503028 Experiment +hep-ex/0503045 Experiment +hep-ex/0504003 Experiment +hep-ex/0505057 Experiment +hep-ex/0505073 Experiment +hep-ex/0505101 Experiment +hep-ex/0506052 Experiment +hep-ex/0506053 Experiment +hep-ex/0508023 Experiment +hep-ex/0508031 Experiment +hep-ex/0508037 Experiment +hep-ex/0508047 Experiment +hep-ex/0508057 Experiment +hep-ex/0509011 Experiment +hep-ex/0509030 Experiment +hep-ex/0509046 Experiment +hep-ex/0510005 Experiment +hep-ex/0510015 Experiment +hep-ex/0510033 Experiment +hep-ex/0510034 Experiment +hep-ex/0511019 Experiment +hep-ex/0512003 Experiment +hep-ex/0512046 Experiment +hep-ex/0512056 Experiment +hep-ex/0512061 Experiment +hep-ex/0512063 Experiment +hep-ex/0601027 Experiment +hep-ex/0601044 Experiment +hep-ex/0602034 Experiment +hep-ex/0603020 Experiment +hep-ex/0604043 Experiment +hep-ex/0604044 Experiment +hep-ex/0605070 Experiment +hep-ex/0606010 Experiment +hep-ex/0606045 Experiment +hep-ex/0607019 Experiment +hep-ex/0607072 Experiment +hep-ex/0607078 Experiment +hep-ex/0607082 Experiment +hep-ex/0610008 Experiment +hep-ex/0610035 Experiment +hep-ex/0611013 Experiment +hep-ex/0611021 Experiment +hep-ex/0612019 Experiment +hep-ex/0612051 Experiment +hep-ex/0701016 Experiment +hep-ex/0703041 Experiment +hep-ex/0703042 Experiment +hep-ex/9504005 Experiment +hep-ex/9611020 Experiment +hep-ex/9701006 Experiment +hep-ex/9701008 Experiment +hep-ex/9701012 Experiment +hep-ex/9701013 Experiment +hep-ex/9702007 Experiment +hep-ex/9702013 Experiment +hep-ex/9703006 Experiment +hep-ex/9703009 Experiment +hep-ex/9703013 Experiment +hep-ex/9704010 Experiment +hep-ex/9704014 Experiment +hep-ex/9705005 Experiment +hep-ex/9705006 Experiment +hep-ex/9705009 Experiment +hep-ex/9705019 Experiment +hep-ex/9706005 Experiment +hep-ex/9706019 Experiment +hep-ex/9706020 Experiment +hep-ex/9707018 Experiment +hep-ex/9707027 Experiment +hep-ex/9707029 Experiment +hep-ex/9707031 Experiment +hep-ex/9708033 Experiment +hep-ex/9708035 Experiment +hep-ex/9709012 Experiment +hep-ex/9710003 Experiment +hep-ex/9710023 Experiment +hep-ex/9710028 Experiment +hep-ex/9711010 Experiment +hep-ex/9711011 Experiment +hep-ex/9712008 Experiment +hep-ex/9712010 Experiment +hep-ex/9712014 Experiment +hep-ex/9712023 Experiment +hep-ex/9801010 Experiment +hep-ex/9801012 Experiment +hep-ex/9802022 Experiment +hep-ex/9802023 Experiment +hep-ex/9802024 Experiment +hep-ex/9803010 Experiment +hep-ex/9803018 Experiment +hep-ex/9803022 Experiment +hep-ex/9803031 Experiment +hep-ex/9804018 Experiment +hep-ex/9805027 Experiment +hep-ex/9805033 Experiment +hep-ex/9807031 Experiment +hep-ex/9808008 Experiment +hep-ex/9809012 Experiment +hep-ex/9810026 Experiment +hep-ex/9810036 Experiment +hep-ex/9810043 Experiment +hep-ex/9811005 Experiment +hep-ex/9811006 Experiment +hep-ex/9811007 Experiment +hep-ex/9811027 Experiment +hep-ex/9811042 Experiment +hep-ex/9902005 Experiment +hep-ex/9902011 Experiment +hep-ex/9902022 Experiment +hep-ex/9903071 Experiment +hep-ex/9903072 Experiment +hep-ex/9903073 Experiment +hep-ex/9903074 Experiment +hep-ex/9905056 Experiment +hep-ex/9906013 Experiment +hep-ex/9906015 Experiment +hep-ex/9907046 Experiment +hep-ex/9907057 Experiment +hep-ex/9908009 Experiment +hep-ex/9908014 Experiment +hep-ex/9908024 Experiment +hep-ex/9908030 Experiment +hep-ex/9909050 Experiment +hep-ex/9910046 Experiment +hep-ex/9910060 Experiment +hep-ph/0111080 Phenomenology +hep-ph/0604035 Phenomenology +hep-ph/9905367 Phenomenology +hep-th/0105261 Theory +hep-th/0405270 Theory +hep-th/0502113 Theory +hep-th/9309051 Theory +hep-th/9404066 Theory +hep-th/9410042 Theory +hep-th/9510095 Theory +hep-th/9807219 Theory +math/0007122 Differential Geometry +math/0205127 Classical Analysis and ODEs +math/0205153 Classical Analysis and ODEs +math/0501113 Classical Analysis and ODEs +math/0604117 Analysis of PDEs +math/0604207 Analysis of PDEs +math/0610298 Combinatorics +math/0702506 Analysis of PDEs +nlin/0104062 Exactly Solvable and Integrable Systems +nlin/0407006 Exactly Solvable and Integrable Systems +nlin/0504060 Exactly Solvable and Integrable Systems +nlin/0608063 Exactly Solvable and Integrable Systems +quant-ph/0307097 +0710.1304 Theory +0802.4304 General Topology +0803.1207 Artificial Intelligence +0809.3471 Analysis of PDEs +0812.3084 Probability +0901.4617 Probability +0902.2853 Symbolic Computation +0904.1167 Probability +0905.4072 Analysis of PDEs +0906.0957 Phenomenology +0906.3915 Analysis of PDEs +0907.0013 Cosmology and Nongalactic Astrophysics +0907.3991 Algebraic Geometry +0908.0344 Analysis of PDEs +0910.3687 Dynamical Systems +0911.1908 Statistical Mechanics +0911.2808 Combinatorics +0911.2861 K-Theory and Homology +0911.4389 Probability +0911.4821 Combinatorics +0912.3094 Mesoscale and Nanoscale Physics +0912.5114 +0912.5495 Strongly Correlated Electrons +1001.0926 Geometric Topology +1001.2934 Cosmology and Nongalactic Astrophysics +1001.3927 +1001.4209 High Energy Astrophysical Phenomena +1001.4934 Mesoscale and Nanoscale Physics +1002.1739 Mesoscale and Nanoscale Physics +1002.2166 Discrete Mathematics +1003.1210 Operator Algebras +1003.1729 Mesoscale and Nanoscale Physics +1003.2086 History and Overview +1003.2634 Quantum Gases +1003.3194 Mesoscale and Nanoscale Physics +1003.3459 Theory +1004.1489 Portfolio Management +1004.2205 +1005.0196 Theory +1005.3363 Superconductivity +1006.0028 Superconductivity +1006.2869 Statistical Mechanics +1006.2951 Chaotic Dynamics +1006.5368 Statistical Mechanics +1007.1049 Distributed, Parallel, and Cluster Computing +1007.1362 Functional Analysis +1007.1721 Soft Condensed Matter +1007.1899 +1007.2145 Mesoscale and Nanoscale Physics +1007.2987 +1007.3342 Materials Science +1007.3967 Differential Geometry +1007.5192 Applications +1008.0850 Dynamical Systems +1008.3816 Atomic and Molecular Clusters +1008.4790 Numerical Analysis +1008.4791 Numerical Analysis +1008.5055 Pricing of Securities +1009.0497 Mesoscale and Nanoscale Physics +1009.1853 High Energy Astrophysical Phenomena +1009.1965 Probability +1009.2446 Combinatorics +1009.2856 Statistical Mechanics +1009.3756 Optics +1009.4161 +1009.5246 Algebraic Geometry +1009.5503 Experiment +1009.5619 Analysis of PDEs +1009.5635 Representation Theory +1009.5684 Logic +1009.5692 Classical Analysis and ODEs +1009.5693 Solar and Stellar Astrophysics +1009.5694 Solar and Stellar Astrophysics +1009.5695 Combinatorics +1009.5698 Software Engineering +1009.5699 Analysis of PDEs +1009.5701 Human-Computer Interaction +1009.5702 Mesoscale and Nanoscale Physics +1009.5705 Software Engineering +1009.5713 Dynamical Systems +1009.5718 Networking and Internet Architecture +1009.5730 Functional Analysis +1009.5731 Combinatorics +1009.5734 Data Structures and Algorithms +1009.5735 Cosmology and Nongalactic Astrophysics +1009.5738 Algebraic Geometry +1009.5740 Combinatorics +1009.5741 Applications +1009.5742 Applications +1009.5743 Applications +1009.5744 Applications +1009.5745 Applications +1009.5746 Probability +1009.5747 Probability +1009.5748 Probability +1009.5749 Probability +1009.5750 Applications +1009.5755 Algebraic Geometry +1009.5758 Computer Vision and Pattern Recognition +1009.5761 Sound +1009.5762 Information Theory +1009.5766 Materials Science +1009.5775 Materials Science +1009.5777 Classical Analysis and ODEs +1009.5778 Applications +1009.5785 Applications +1009.5791 Data Structures and Algorithms +1009.5793 Soft Condensed Matter +1009.5794 Rings and Algebras +1009.5796 Dynamical Systems +1009.5801 Algebraic Geometry +1009.5802 Cryptography and Security +1009.5803 Solar and Stellar Astrophysics +1009.5806 Computational Finance +1009.5809 Operator Algebras +1009.5812 Algebraic Geometry +1009.5813 Solar and Stellar Astrophysics +1009.5818 Applications +1009.5821 Solar and Stellar Astrophysics +1009.5824 Solar and Stellar Astrophysics +1009.5826 Analysis of PDEs +1009.5828 Instrumentation and Methods for Astrophysics +1009.5835 Combinatorics +1009.5839 Statistics Theory +1009.5841 Differential Geometry +1009.5842 Operator Algebras +1009.5850 +1009.5851 Earth and Planetary Astrophysics +1009.5852 Algebraic Topology +1009.5853 Distributed, Parallel, and Cluster Computing +1009.5854 Applications +1009.5856 Phenomenology +1009.5860 Earth and Planetary Astrophysics +1009.5861 Applications +1009.5863 Data Structures and Algorithms +1009.5864 Analysis of PDEs +1009.5869 Applications +1009.5871 Phenomenology +1009.5878 Performance +1009.5882 +1009.5885 Solar and Stellar Astrophysics +1009.5886 Soft Condensed Matter +1009.5887 Dynamical Systems +1009.5898 Algebraic Geometry +1009.5899 Materials Science +1009.5900 Information Theory +1009.5902 Experiment +1009.5903 Strongly Correlated Electrons +1009.5905 Earth and Planetary Astrophysics +1009.5916 Probability +1009.5918 Human-Computer Interaction +1009.5919 Dynamical Systems +1009.5938 Fluid Dynamics +1009.5940 +1009.5943 Chemical Physics +1009.5944 Information Theory +1009.5947 Earth and Planetary Astrophysics +1009.5948 Probability +1009.5949 Information Theory +1009.5951 +1009.5954 Fluid Dynamics +1009.5956 Genomics +1009.5957 Space Physics +1009.5962 Quantitative Methods +1009.5965 Solar and Stellar Astrophysics +1009.5969 Fluid Dynamics +1009.5970 Number Theory +1009.5972 Learning +1009.5974 Mesoscale and Nanoscale Physics +cond-mat/0308404 Strongly Correlated Electrons +math/0611882 Probability +0704.1282 History and Overview +0709.2383 Probability +0802.0367 Exactly Solvable and Integrable Systems +0808.4067 Probability +0810.3431 Geometric Topology +0811.1527 Soft Condensed Matter +0811.2608 Group Theory +0812.1242 Physics and Society +0903.1486 Representation Theory +0903.2749 Information Theory +0904.2271 Number Theory +0904.2904 +0905.0094 Representation Theory +0905.2163 Probability +0905.4793 Trading and Market Microstructure +0906.1767 Theory +0907.1113 Probability +0907.1708 +0908.0869 Differential Geometry +0909.0531 +0909.4331 Applications +0909.5302 Combinatorics +0910.1822 +0910.3391 Number Theory +0910.3966 Analysis of PDEs +0910.5196 Statistical Mechanics +0910.5297 +0911.1748 Algebraic Geometry +0912.0945 +0912.1425 Dynamical Systems +0912.3295 Statistics Theory +1001.0640 Algebraic Geometry +1002.0259 Rings and Algebras +1002.0285 Analysis of PDEs +1002.0948 Optimization and Control +1002.4400 Commutative Algebra +1002.4506 Mesoscale and Nanoscale Physics +1002.4664 Analysis of PDEs +1003.1254 Algebraic Geometry +1003.1517 Data Structures and Algorithms +1003.3660 Plasma Physics +1003.4432 Algebraic Geometry +1004.0937 Phenomenology +1004.3193 Statistical Mechanics +1004.4664 Superconductivity +1004.4678 Materials Science +1005.3837 +1005.3839 +1005.5187 Mesoscale and Nanoscale Physics +1006.0302 +1006.1716 Materials Science +1006.2264 Materials Science +1006.3793 Disordered Systems and Neural Networks +1007.1929 Statistical Mechanics +1007.2942 Earth and Planetary Astrophysics +1007.4478 Theory +1007.5432 Superconductivity +1008.0057 Materials Science +1008.1132 Fluid Dynamics +1008.3310 Optimization and Control +1008.5333 Symplectic Geometry +1009.1005 +1009.1036 Experiment +1009.3840 +1009.4067 Solar and Stellar Astrophysics +1009.4426 +1009.4604 Solar and Stellar Astrophysics +1009.5109 Algebraic Geometry +1009.5114 Optics +1010.0180 Superconductivity +1010.0259 Statistical Mechanics +1010.0297 Applications +1010.0303 Methodology +1010.1009 Number Theory +1010.1011 Phenomenology +1010.1012 Group Theory +1010.1014 Phenomenology +1010.1018 +1010.1020 Instrumentation and Detectors +1010.1022 Materials Science +1010.1023 Experiment +1010.1024 Data Structures and Algorithms +1010.1030 +1010.1032 Earth and Planetary Astrophysics +1010.1036 Mesoscale and Nanoscale Physics +1010.1045 Operator Algebras +1010.1046 Fluid Dynamics +1010.1049 Statistics Theory +1010.1052 Information Theory +1010.1053 Rings and Algebras +1010.1059 Biological Physics +1010.1070 +1010.1081 Solar and Stellar Astrophysics +1010.1085 Differential Geometry +1010.1086 Probability +1010.1088 High Energy Astrophysical Phenomena +1010.1091 Instrumentation and Detectors +1010.1092 Applications +1010.1093 Chemical Physics +1010.1095 Quantum Algebra +1010.1098 Superconductivity +1010.1099 Quantitative Methods +1010.1100 Quantitative Methods +1010.1101 Computational Complexity +1010.1107 Differential Geometry +1010.1108 Applications +1010.1110 Mesoscale and Nanoscale Physics +1010.1113 Combinatorics +1010.1118 Mesoscale and Nanoscale Physics +1010.1126 Applications +1010.1129 Representation Theory +1010.1133 Metric Geometry +1010.1138 Theory +1010.1141 Mesoscale and Nanoscale Physics +1010.1144 Rings and Algebras +1010.1147 Databases +1010.1151 Mesoscale and Nanoscale Physics +1010.1157 Applications +1010.1161 Plasma Physics +1010.1163 Information Theory +1010.1170 Materials Science +1010.1171 Earth and Planetary Astrophysics +1010.1172 Astrophysics of Galaxies +1010.1175 Soft Condensed Matter +1010.1181 +1010.1182 High Energy Astrophysical Phenomena +1010.1188 Biological Physics +1010.1189 Plasma Physics +1010.1190 +1010.1191 Populations and Evolution +1010.1209 Theory +1010.1212 Pricing of Securities +1010.1213 Instrumentation and Methods for Astrophysics +1010.1215 Mesoscale and Nanoscale Physics +1010.1222 Quantum Algebra +1010.1223 +1010.1225 General Mathematics +1010.1226 Logic +1010.1228 +1010.1235 +1010.1251 Numerical Analysis +cond-mat/0206388 Materials Science +cond-mat/0701196 Strongly Correlated Electrons +nlin/0608014 Chaotic Dynamics +physics/0210040 General Physics +physics/0505214 Fluid Dynamics +0704.0062 Data Structures and Algorithms +0706.3294 +0708.0620 +0709.2358 +0709.4191 +0710.5588 Representation Theory +0711.1439 Probability +0712.2290 Algebraic Geometry +0802.1203 +0802.2108 Computational Geometry +0803.1507 +0806.2702 +0807.0415 Spectral Theory +0807.2363 Complex Variables +0809.4337 Commutative Algebra +0810.4941 Superconductivity +0810.5623 Superconductivity +0811.0219 +0812.4327 Strongly Correlated Electrons +0812.4867 Strongly Correlated Electrons +0812.4879 Mesoscale and Nanoscale Physics +0812.4975 Mesoscale and Nanoscale Physics +0902.0724 Physics and Society +0902.2303 Theory +0902.2839 +0903.0641 Rings and Algebras +0903.2405 Probability +0903.2408 Probability +0904.1676 Mesoscale and Nanoscale Physics +0904.2204 Statistical Mechanics +0905.0887 +0905.2651 High Energy Astrophysical Phenomena +0905.3025 Algebraic Geometry +0906.0203 Analysis of PDEs +0906.2105 Classical Analysis and ODEs +0906.2635 Learning +0906.3528 Strongly Correlated Electrons +0906.4917 Symbolic Computation +0906.5251 Mesoscale and Nanoscale Physics +0906.5545 Group Theory +0907.0423 Quantum Gases +0907.0501 Materials Science +0907.1439 Spectral Theory +0907.1442 Spectral Theory +0907.2918 Phenomenology +0907.3875 Superconductivity +0907.5006 Pattern Formation and Solitons +0908.2374 Cosmology and Nongalactic Astrophysics +0908.3351 +0908.3878 Soft Condensed Matter +0908.3987 +0909.0183 Statistical Mechanics +0909.0717 Computational Geometry +0909.0976 Quantum Gases +0909.3368 Solar and Stellar Astrophysics +0910.0573 +0910.0852 Data Analysis, Statistics and Probability +0910.1767 Materials Science +0910.3911 Strongly Correlated Electrons +0910.4977 Quantum Gases +0911.1289 Probability +0911.4734 Algebraic Geometry +0912.2363 Functional Analysis +0912.3338 +1001.0661 +1001.1504 Number Theory +1001.2485 Theory +1001.3006 Statistics Theory +1001.3289 Portfolio Management +1001.3644 Risk Management +1001.3728 Pricing of Securities +1001.3746 Materials Science +1001.3876 Cosmology and Nongalactic Astrophysics +1001.3885 Information Theory +1001.3886 Methodology +1001.3887 +1001.3891 Cosmology and Nongalactic Astrophysics +1001.3894 Number Theory +1001.3899 Combinatorics +1001.3903 Superconductivity +1001.3912 Classical Analysis and ODEs +1001.3916 Information Theory +1001.3917 Differential Geometry +1001.3925 Instrumentation and Methods for Astrophysics +1001.3926 Geometric Topology +1001.3933 Instrumentation and Detectors +1001.3936 Solar and Stellar Astrophysics +1001.3937 +1001.3941 Materials Science +1001.3942 General Physics +1001.3954 Phenomenology +1001.3955 Atomic Physics +1001.3963 Instrumentation and Methods for Astrophysics +1001.3964 +1001.3967 Human-Computer Interaction +1001.3968 Phenomenology +1001.3971 +1001.3972 Probability +1001.3974 Graphics +1001.3979 Phenomenology +1001.3980 Strongly Correlated Electrons +1001.3984 Rings and Algebras +1001.3985 Statistical Mechanics +1001.3986 Representation Theory +1001.3987 Phenomenology +1001.3990 Probability +1001.3991 Astrophysics of Galaxies +1001.3993 +1001.3994 Phenomenology +1001.3996 +1001.3997 +1001.4001 Representation Theory +1001.4005 Strongly Correlated Electrons +1001.4007 Classical Analysis and ODEs +1001.4010 Classical Analysis and ODEs +1001.4012 Analysis of PDEs +1001.4014 High Energy Astrophysical Phenomena +1001.4016 Popular Physics +1001.4019 Machine Learning +1001.4021 Logic in Computer Science +1001.4025 Differential Geometry +1001.4029 +1001.4040 Classical Analysis and ODEs +1001.4061 Instrumentation and Detectors +1001.4064 Complex Variables +1001.4070 Methodology +1001.4071 Category Theory +1001.4072 Information Theory +1001.4073 +1001.4075 Functional Analysis +astro-ph/0007103 +cond-mat/0605096 Strongly Correlated Electrons +math/0005254 Differential Geometry +math/0503373 Classical Analysis and ODEs +math/0605077 Algebraic Geometry +math/0606548 Algebraic Geometry +math/0612090 Combinatorics +0708.3385 Dynamical Systems +0709.0549 Algebraic Geometry +0710.1000 +0710.4569 Geometric Topology +0802.1283 Differential Geometry +0802.3366 Other Quantitative Biology +0803.1858 General Finance +0804.4508 History and Overview +0805.0829 Phenomenology +0806.3590 Number Theory +0806.3667 General Physics +0806.4838 Biomolecules +0807.1606 Differential Geometry +0807.4988 Operator Algebras +0808.0183 Differential Geometry +0809.0473 Logic +0809.3081 +0810.0622 Strongly Correlated Electrons +0810.4669 Algebraic Topology +0810.5399 Statistical Mechanics +0811.2168 +0812.0147 Probability +0812.4775 +0901.1335 Number Theory +0901.1604 Symplectic Geometry +0902.2471 Analysis of PDEs +0903.0405 Optimization and Control +0903.0942 History and Overview +0903.5292 Computation +0904.3380 Chemical Physics +0905.0436 Methodology +0905.0453 Differential Geometry +0905.1767 Strongly Correlated Electrons +0905.2250 Computational Physics +0906.1176 Commutative Algebra +0906.1626 +0907.0132 +0907.0746 Artificial Intelligence +0907.1477 Probability +0907.4913 Combinatorics +0908.0489 Materials Science +0908.1941 Differential Geometry +0908.2126 Materials Science +0908.2982 Computational Finance +0909.0801 Artificial Intelligence +0909.1478 Computational Finance +0909.2426 Differential Geometry +0909.4588 Probability +0910.3338 Probability +0910.4619 Statistical Mechanics +0911.2932 Number Theory +0911.3007 Differential Geometry +0911.5105 Theory +0911.5274 Atomic Physics +0912.0989 Materials Science +0912.5150 +1001.0024 Computational Finance +1001.2852 Analysis of PDEs +1001.4864 Complex Variables +1002.1057 Probability +1002.1666 Algebraic Geometry +1002.1920 +1002.1982 Geometric Topology +1002.3534 Cryptography and Security +1002.4979 Analysis of PDEs +1003.0083 Functional Analysis +1003.0115 Probability +1003.1025 General Physics +1003.1157 Number Theory +1003.1489 Combinatorics +1003.1804 +1003.5059 Functional Analysis +1003.5745 Quantum Gases +1004.0287 Mesoscale and Nanoscale Physics +1004.2084 Geometric Topology +1004.3844 Atmospheric and Oceanic Physics +1004.4035 Mesoscale and Nanoscale Physics +1004.4739 +1004.5102 Solar and Stellar Astrophysics +1005.0828 Statistical Mechanics +1005.2967 Optimization and Control +1005.3451 Probability +1005.3598 Combinatorics +1005.4391 Quantum Gases +1005.5131 Phenomenology +1006.0725 Mesoscale and Nanoscale Physics +1006.2404 Materials Science +1006.2823 Cosmology and Nongalactic Astrophysics +1006.3016 Materials Science +1006.3270 Statistical Mechanics +1006.3446 Biological Physics +1006.3680 +1006.4844 Strongly Correlated Electrons +1006.5299 Symbolic Computation +1007.0846 Phenomenology +1007.1634 Solar and Stellar Astrophysics +1007.2249 Cosmology and Nongalactic Astrophysics +1007.3459 Discrete Mathematics +1007.3659 General Mathematics +1007.3668 Theory +1007.4182 +1007.4345 Phenomenology +1007.4994 Strongly Correlated Electrons +1007.5275 Theory +1008.0198 Mesoscale and Nanoscale Physics +1008.0672 Quantum Algebra +1008.0885 Information Theory +1008.1464 Representation Theory +1008.2048 +1008.2845 Phenomenology +1008.3154 Lattice +1008.3993 Optics +1008.4393 Earth and Planetary Astrophysics +1008.4743 Theory +1008.5262 Materials Science +1009.0030 Astrophysics of Galaxies +1009.1409 Quantum Gases +1009.1503 Materials Science +1009.1809 Statistical Mechanics +1009.2872 +1009.3476 Combinatorics +1009.4238 Mesoscale and Nanoscale Physics +1009.4420 Quantum Gases +1009.4917 Superconductivity +1009.5151 Mesoscale and Nanoscale Physics +1009.6207 Theory +1010.0604 Materials Science +1010.1756 Theory +1010.2445 +1010.4309 Phenomenology +1010.4622 Mesoscale and Nanoscale Physics +1010.5195 High Energy Astrophysical Phenomena +1010.5956 Mesoscale and Nanoscale Physics +1011.2027 +1011.4122 Metric Geometry +1011.5348 +1011.5525 Quantum Gases +1011.5694 Computer Vision and Pattern Recognition +1012.0365 Numerical Analysis +1012.1334 Discrete Mathematics +1012.2439 Materials Science +1012.3559 Theory +1012.3717 Analysis of PDEs +1012.4054 Algebraic Geometry +1012.4696 Differential Geometry +1012.4767 Discrete Mathematics +1012.4770 Functional Analysis +1012.5009 General Physics +1012.5071 Information Theory +1012.5103 Functional Analysis +1012.5361 +1012.5425 Symbolic Computation +1012.5435 Atomic Physics +1012.5442 Algebraic Geometry +1012.5443 Quantum Algebra +1012.5444 Computational Physics +1012.5445 Number Theory +1012.5447 Combinatorics +1012.5449 Algebraic Geometry +1012.5450 Theory +1012.5458 Classical Analysis and ODEs +1012.5463 Quantum Gases +1012.5465 Atomic Physics +1012.5467 Other Condensed Matter +1012.5468 Combinatorics +1012.5469 Other Condensed Matter +1012.5470 Other Condensed Matter +1012.5472 Other Condensed Matter +1012.5473 Other Condensed Matter +1012.5475 Other Condensed Matter +1012.5478 +1012.5481 Optics +1012.5484 Numerical Analysis +1012.5486 Combinatorics +1012.5488 Mesoscale and Nanoscale Physics +1012.5489 Analysis of PDEs +1012.5493 Dynamical Systems +1012.5498 Information Theory +1012.5503 Materials Science +1012.5505 Rings and Algebras +1012.5506 Artificial Intelligence +1012.5507 Combinatorics +1012.5508 Instrumentation and Detectors +1012.5518 Analysis of PDEs +1012.5519 Cosmology and Nongalactic Astrophysics +1012.5520 Analysis of PDEs +1012.5522 Cosmology and Nongalactic Astrophysics +1012.5524 Soft Condensed Matter +1012.5526 Analysis of PDEs +1012.5533 Statistics Theory +1012.5534 Group Theory +1012.5535 Classical Analysis and ODEs +1012.5537 Classical Analysis and ODEs +1012.5538 Classical Analysis and ODEs +1012.5542 Functional Analysis +1012.5546 Databases +1012.5551 Commutative Algebra +1012.5555 Phenomenology +1012.5556 +1012.5560 Programming Languages +1012.5561 Computers and Society +1012.5562 Logic in Computer Science +1012.5563 Logic in Computer Science +1012.5565 Superconductivity +1012.5566 Materials Science +1012.5571 Symplectic Geometry +1012.5572 Chemical Physics +1012.5573 Multimedia +1012.5582 +1012.5588 Soft Condensed Matter +1012.5590 Cryptography and Security +1012.5594 Artificial Intelligence +1012.5597 Networking and Internet Architecture +1012.5598 Group Theory +1012.5599 Superconductivity +1012.5603 +1012.5607 +1012.5610 +1012.5611 Analysis of PDEs +1012.5612 Analysis of PDEs +1012.5613 Classical Analysis and ODEs +1012.5614 Materials Science +1012.5620 Phenomenology +1012.5623 +1012.5625 Computers and Society +1012.5626 +1012.5628 Group Theory +1012.5629 +1012.5630 Algebraic Geometry +1012.5635 Geophysics +1012.5641 Differential Geometry +1012.5644 Atomic Physics +1012.5650 Probability +1012.5656 Analysis of PDEs +1012.5659 Computational Complexity +1012.5660 Analysis of PDEs +1012.5662 Analysis of PDEs +1012.5663 Analysis of PDEs +1012.5668 Analysis of PDEs +1012.5670 Analysis of PDEs +1012.5672 Analysis of PDEs +1012.5682 Chemical Physics +1012.5685 Lattice +1012.5686 Probability +1012.5687 Probability +1012.5689 Probability +1012.5693 Networking and Internet Architecture +1012.5695 Operating Systems +1012.5696 Databases +1012.5697 Optics +1012.5698 Probability +1012.5700 High Energy Astrophysical Phenomena +1012.5702 +1012.5704 Phenomenology +1012.5705 Artificial Intelligence +1012.5706 Solar and Stellar Astrophysics +1012.5710 Combinatorics +1012.5713 General Topology +1012.5717 Strongly Correlated Electrons +1012.5726 Statistical Mechanics +1012.5732 Number Theory +1012.5733 Instrumentation and Methods for Astrophysics +1012.5739 Software Engineering +1012.5743 Materials Science +1012.5744 Numerical Analysis +1012.5752 Social and Information Networks +1012.5753 Phenomenology +1012.5754 Software Engineering +1012.5755 Software Engineering +1012.5757 Cosmology and Nongalactic Astrophysics +1012.5763 General Physics +1012.5765 Differential Geometry +1012.5767 Algebraic Topology +1012.5769 Functional Analysis +1012.5775 Populations and Evolution +1012.5779 +1012.5781 Cosmology and Nongalactic Astrophysics +1012.5788 Differential Geometry +1012.5792 Combinatorics +1012.5793 Combinatorics +1012.5794 Astrophysics of Galaxies +1012.5795 Combinatorics +1012.5798 Experiment +1012.5799 Combinatorics +1012.5802 Cosmology and Nongalactic Astrophysics +1012.5806 Probability +1012.5809 Materials Science +1012.5810 +1012.5811 Instrumentation and Methods for Astrophysics +1012.5822 Classical Analysis and ODEs +1012.5836 Numerical Analysis +1012.5841 Other Computer Science +1012.5843 Algebraic Geometry +1012.5845 Group Theory +1012.5846 Information Theory +1012.5850 Probability +1012.5855 Phenomenology +1012.5856 Statistics Theory +1012.5858 Theory +1012.5861 Analysis of PDEs +1012.5866 History and Overview +1012.5870 Discrete Mathematics +1012.5872 +1012.5878 Optics +1012.5879 Representation Theory +1012.5882 Populations and Evolution +1012.5887 Populations and Evolution +1012.5896 General Finance +1012.5897 Instrumentation and Detectors +1012.5899 Cosmology and Nongalactic Astrophysics +1012.5901 Classical Analysis and ODEs +1012.5905 Cosmology and Nongalactic Astrophysics +1012.5908 Strongly Correlated Electrons +1012.5909 Genomics +1012.5910 +1012.5915 Astrophysics of Galaxies +1012.5919 Phenomenology +1012.5921 Combinatorics +1012.5925 General Physics +1012.5929 Operating Systems +1012.5933 Computer Vision and Pattern Recognition +1012.5936 Computer Vision and Pattern Recognition +1012.5942 Probability +1012.5946 Differential Geometry +1012.5952 Chaotic Dynamics +1012.5956 Information Theory +1012.5958 Neurons and Cognition +1012.5960 Artificial Intelligence +1012.5984 Optics +1012.5987 Neurons and Cognition +1012.5988 Optics +1012.5989 Optics +1012.5990 Dynamical Systems +1012.5994 Social and Information Networks +1012.5995 Discrete Mathematics +1012.5997 Information Theory +1012.5998 Materials Science +1012.6001 Category Theory +1012.6002 Probability +1012.6003 Representation Theory +1012.6004 Chemical Physics +1012.6008 Combinatorics +1012.6009 Databases +1012.6011 +1012.6014 Representation Theory +1012.6016 Theory +1012.6018 Artificial Intelligence +1012.6023 Lattice +1012.6034 Lattice +1012.6036 General Physics +1012.6039 Cosmology and Nongalactic Astrophysics +cond-mat/0310200 Mesoscale and Nanoscale Physics +cond-mat/0312074 Mesoscale and Nanoscale Physics +cond-mat/0410271 Statistical Mechanics +cond-mat/0412047 Mesoscale and Nanoscale Physics +cond-mat/0501484 Superconductivity +cond-mat/0507532 Strongly Correlated Electrons +cond-mat/0703473 Materials Science +cs/0508007 Computer Vision and Pattern Recognition +math/0411396 Differential Geometry +math/0504161 Differential Geometry +math/0512167 Differential Geometry +math/0602414 Differential Geometry +math/0607154 Differential Geometry +math/0701581 Differential Geometry +physics/0501010 Data Analysis, Statistics and Probability +physics/0605057 Physics Education +quant-ph/0109094 +quant-ph/0505180 +quant-ph/0507206 +quant-ph/0510080 +quant-ph/0510082 +quant-ph/0607051 +0705.1867 Algebraic Geometry +0708.0941 Complex Variables +0708.3949 Representation Theory +0709.0922 Disordered Systems and Neural Networks +0709.4230 Analysis of PDEs +0709.4341 Group Theory +0710.0644 Classical Analysis and ODEs +0710.1972 Representation Theory +0710.2545 Classical Analysis and ODEs +0712.3117 Representation Theory +0803.2749 Algebraic Topology +0805.0563 Number Theory +0806.3290 Complex Variables +0807.0901 Representation Theory +0807.2174 Chemical Physics +0807.4263 Algebraic Topology +0810.0845 Group Theory +0810.3479 Representation Theory +0811.1379 Strongly Correlated Electrons +0812.0962 Combinatorics +0812.1577 Mesoscale and Nanoscale Physics +0901.3152 Quantum Gases +0902.0708 Functional Analysis +0903.0704 Data Analysis, Statistics and Probability +0903.1294 Chemical Physics +0903.4412 Geometric Topology +0905.0780 Mesoscale and Nanoscale Physics +0905.1893 Quantitative Methods +0905.2331 Quantum Gases +0906.1320 +0906.2855 Probability +0907.2417 Superconductivity +0908.2292 +0908.4183 Differential Geometry +0908.4222 Differential Geometry +0908.4343 Fluid Dynamics +0908.4344 Fluid Dynamics +0909.2004 Mesoscale and Nanoscale Physics +0909.2729 Representation Theory +0910.5743 Atomic Physics +0911.1362 +0911.3073 Operator Algebras +0912.1530 Superconductivity +0912.2819 Theory +0912.3931 Materials Science +0912.4194 +1001.2695 Superconductivity +1001.4511 Complex Variables +1001.5172 Theory +1002.0330 Superconductivity +1002.1421 General Physics +1002.2477 Computer Science and Game Theory +1002.3876 Theory +1003.0473 Chaotic Dynamics +1003.1371 Mesoscale and Nanoscale Physics +1003.1922 Algebraic Geometry +1003.2530 Materials Science +1003.2619 Statistics Theory +1003.5038 Superconductivity +1003.5215 +1003.5292 Cosmology and Nongalactic Astrophysics +1004.0004 General Topology +1004.0016 Spectral Theory +1004.0025 History and Overview +1004.0027 Information Theory +1004.0033 Numerical Analysis +1004.0035 Dynamical Systems +1004.0036 Analysis of PDEs +1004.0038 Astrophysics of Galaxies +1004.0041 Instrumentation and Detectors +1004.0046 Algebraic Geometry +1004.0052 +1004.0058 +1004.0062 Cryptography and Security +1004.0080 Representation Theory +1004.0086 Dynamical Systems +1004.0092 Information Retrieval +1004.0096 Algebraic Topology +1004.0101 +1004.0105 Computational Complexity +1004.0113 Probability +1004.0116 Solar and Stellar Astrophysics +1004.0125 Pricing of Securities +1004.0142 Differential Geometry +1004.0153 +1004.0161 Analysis of PDEs +1004.0167 Complex Variables +1004.0181 Logic +1004.0186 Chemical Physics +1004.0197 Group Theory +1004.0200 Numerical Analysis +1004.0203 Functional Analysis +1004.0206 +1004.0213 Statistical Finance +1004.0216 Theory +cond-mat/0212451 Disordered Systems and Neural Networks +cond-mat/0606583 Mesoscale and Nanoscale Physics +hep-ph/0606054 Phenomenology +math-ph/0601054 +math/0411528 Representation Theory +math/0411548 Group Theory +math/0411646 Representation Theory +math/0412301 Representation Theory +math/0501220 Representation Theory +math/0502238 Representation Theory +math/0503489 Group Theory +math/0504041 Representation Theory +math/0507195 Representation Theory +math/0510372 Group Theory +math/0510622 Group Theory +math/0510624 Group Theory +math/0511374 Group Theory +math/0511431 Combinatorics +math/0511730 Group Theory +math/0603179 Representation Theory +math/0603475 Representation Theory +math/0603490 Analysis of PDEs +math/0603679 Group Theory +math/0605520 Number Theory +math/0605522 Classical Analysis and ODEs +math/0605523 Number Theory +math/0605524 Classical Analysis and ODEs +math/0607589 Representation Theory +math/0610730 Group Theory +math/0611286 Classical Analysis and ODEs +math/0611304 Number Theory +math/0701796 Analysis of PDEs +math/0702811 Representation Theory +math/0702864 Representation Theory +physics/0509091 Plasma Physics +0704.0537 Algebraic Geometry +0706.0469 +0707.3528 Dynamical Systems +0712.2314 Materials Science +0712.4305 Combinatorics +0801.0172 Spectral Theory +0802.1255 Algebraic Geometry +0802.2909 +0805.1762 Commutative Algebra +0807.3882 Phenomenology +0808.3792 Materials Science +0809.0228 Populations and Evolution +0809.1994 Theory +0810.5663 Information Theory +0811.3539 +0901.4282 Chaotic Dynamics +0902.0872 Cosmology and Nongalactic Astrophysics +0902.2786 Statistical Mechanics +0902.4799 +0903.0281 Theory +0903.2489 Algebraic Geometry +0904.0208 Theory +0904.0283 Symplectic Geometry +0906.0978 +0906.0990 +0906.2880 Atomic Physics +0906.3183 Information Theory +0906.5129 Commutative Algebra +0906.5563 +0907.2423 Computational Geometry +0907.2898 Cosmology and Nongalactic Astrophysics +0908.2277 Information Theory +0908.3437 Statistics Theory +0908.3515 Optics +0909.3069 Dynamical Systems +0910.1055 Probability +0910.2180 +0910.4862 +0910.5845 Solar and Stellar Astrophysics +0911.0637 Representation Theory +0911.0733 Probability +0911.2199 Soft Condensed Matter +0911.3969 Combinatorics +0912.0096 Earth and Planetary Astrophysics +0912.0375 Solar and Stellar Astrophysics +0912.1100 Representation Theory +0912.2016 Statistical Finance +0912.4230 Soft Condensed Matter +0912.4530 Optics +1002.0370 Materials Science +1002.3104 Mesoscale and Nanoscale Physics +1002.3620 Solar and Stellar Astrophysics +1002.4265 Quantum Gases +1003.0550 Differential Geometry +1003.0687 Cosmology and Nongalactic Astrophysics +1003.1929 Lattice +1003.1995 +1003.2348 +1003.3668 +1003.5211 Plasma Physics +1004.2507 +1005.4141 Mesoscale and Nanoscale Physics +1005.5053 Theory +1006.0658 +1006.1304 Operator Algebras +1006.2626 +1006.3904 Algebraic Topology +1006.4601 +1006.5042 Chaotic Dynamics +1007.1253 Data Structures and Algorithms +1007.1718 Phenomenology +1007.2278 Strongly Correlated Electrons +1007.2386 Superconductivity +1007.3133 Programming Languages +1007.3227 Optics +1007.3250 Programming Languages +1007.4139 Analysis of PDEs +1007.5412 Functional Analysis +1008.1392 Soft Condensed Matter +1008.1838 Rings and Algebras +1008.2030 Superconductivity +1008.2628 +1008.3348 Quantum Gases +1008.3375 Theory +1009.0329 Optics +1009.1032 Representation Theory +1009.1986 Soft Condensed Matter +1009.2530 Statistical Mechanics +1009.2934 General Physics +1009.3139 Theory +1009.3344 +1009.3844 Experiment +1009.3845 Phenomenology +1009.4037 Operator Algebras +1009.4358 Soft Condensed Matter +1009.4687 Plasma Physics +1009.4794 Theory +1009.5216 +1009.5551 Phenomenology +1010.1741 Optics +1010.2654 +1010.5033 General Mathematics +1010.5608 Information Theory +1011.0226 Instrumentation and Detectors +1011.3549 Theory +1011.3838 Phenomenology +1011.4106 Theory +1011.4294 Cosmology and Nongalactic Astrophysics +1011.4303 Materials Science +1011.4304 +1011.4312 Solar and Stellar Astrophysics +1011.4316 +1011.4323 Strongly Correlated Electrons +1011.4330 Logic in Computer Science +1011.4343 Materials Science +1011.4344 Computational Physics +1011.4345 +1011.4349 Probability +1011.4350 Solar and Stellar Astrophysics +1011.4352 Geophysics +1011.4353 Algebraic Geometry +1011.4356 Quantum Algebra +1011.4359 Combinatorics +1011.4361 Optics +1011.4362 Artificial Intelligence +1011.4363 Networking and Internet Architecture +1011.4365 Optics +1011.4366 Computer Science and Game Theory +1011.4367 Analysis of PDEs +1011.4368 Group Theory +1011.4369 Mesoscale and Nanoscale Physics +1011.4375 Algebraic Topology +1011.4377 Logic in Computer Science +1011.4382 Biomolecules +1011.4383 Soft Condensed Matter +1011.4387 Solar and Stellar Astrophysics +1011.4398 Earth and Planetary Astrophysics +1011.4401 Data Structures and Algorithms +1011.4402 +1011.4406 High Energy Astrophysical Phenomena +1011.4415 Optics +1011.4419 Earth and Planetary Astrophysics +1011.4424 Numerical Analysis +1011.4434 Combinatorics +1011.4435 Analysis of PDEs +1011.4437 Theory +1011.4442 Earth and Planetary Astrophysics +1011.4443 Fluid Dynamics +1011.4448 Earth and Planetary Astrophysics +1011.4451 Complex Variables +1011.4457 Computation +1011.4464 Solar and Stellar Astrophysics +1011.4465 Data Structures and Algorithms +1011.4466 Strongly Correlated Electrons +1011.4470 Optics +1011.4472 Complex Variables +1011.4473 Plasma Physics +1011.4475 Solar and Stellar Astrophysics +1011.4476 Combinatorics +1011.4480 Functional Analysis +1011.4482 Algebraic Geometry +1011.4485 Metric Geometry +1011.4490 Number Theory +1011.4492 Number Theory +1011.4499 Probability +1011.4502 Analysis of PDEs +1011.4505 Representation Theory +1011.4507 Number Theory +1011.4508 Cosmology and Nongalactic Astrophysics +gr-qc/9901085 +hep-th/9508104 Theory +hep-th/9508136 Theory +math/0501233 Rings and Algebras +math/0702510 Rings and Algebras +nlin/0609056 Chaotic Dynamics +0711.4347 Group Theory +0712.2432 Algebraic Topology +0801.1658 Physics and Society +0802.2333 Group Theory +0802.2617 Superconductivity +0802.4137 +0806.0162 Operator Algebras +0808.0739 Algebraic Topology +0808.3884 Computational Complexity +0810.0979 Differential Geometry +0810.2458 Materials Science +0810.4112 Algebraic Geometry +0812.0764 Combinatorics +0812.1179 Lattice +0904.1838 Materials Science +0904.4895 +0905.2311 Algebraic Geometry +0906.2172 +0907.3512 Symplectic Geometry +0907.5562 +0908.3068 Statistical Mechanics +0908.3911 Computational Geometry +0909.0562 Strongly Correlated Electrons +0909.0946 +0909.4340 Logic +0910.0497 +0910.5123 Cosmology and Nongalactic Astrophysics +0911.0694 Data Analysis, Statistics and Probability +0912.0175 Superconductivity +0912.0216 Commutative Algebra +0912.1269 Instrumentation and Detectors +0912.2667 Astrophysics of Galaxies +0912.3192 Quantum Gases +0912.3196 Quantum Gases +0912.4394 Mesoscale and Nanoscale Physics +0912.4485 Soft Condensed Matter +0912.4945 Superconductivity +1001.0149 Numerical Analysis +1001.0575 +1001.0677 Superconductivity +1001.1153 Strongly Correlated Electrons +1001.2707 Astrophysics of Galaxies +1001.3455 Optimization and Control +1001.3547 +1002.0369 Cosmology and Nongalactic Astrophysics +1002.2075 Algebraic Geometry +1002.2188 +1002.2464 Theory +1002.2648 Symplectic Geometry +1002.4737 Analysis of PDEs +1002.4744 Portfolio Management +1002.4986 Algebraic Geometry +1003.1884 Optimization and Control +1003.1926 Superconductivity +1003.4476 General Physics +1004.0780 +1004.2188 Phenomenology +1004.2375 Combinatorics +1005.0494 Superconductivity +1005.1288 Strongly Correlated Electrons +1005.1448 Superconductivity +1005.3082 Representation Theory +1005.3721 Classical Analysis and ODEs +1005.4516 Theory +1005.4558 Analysis of PDEs +1005.5530 +1006.0224 Theory +1006.0415 Functional Analysis +1006.1091 Phenomenology +1006.1866 Mesoscale and Nanoscale Physics +1006.1897 Mesoscale and Nanoscale Physics +1006.2331 Mesoscale and Nanoscale Physics +1006.4928 Combinatorics +1006.5673 Mesoscale and Nanoscale Physics +1007.0560 +1007.1681 Instrumentation and Methods for Astrophysics +1007.1737 History and Overview +1007.3009 Instrumentation and Detectors +1007.3532 Functional Analysis +1008.0237 Biomolecules +1008.0240 Quantum Gases +1008.1189 Theory +1008.1458 Symplectic Geometry +1008.1606 Geometric Topology +1008.2322 +1008.2438 Group Theory +1008.3517 Functional Analysis +1008.3560 +1008.3563 Instrumentation and Methods for Astrophysics +1008.3568 Rings and Algebras +1008.3572 Geometric Topology +1008.3575 Theory +1008.3581 Analysis of PDEs +1008.3585 Logic in Computer Science +1008.3589 Theory +1008.3593 Quantum Algebra +1008.3595 Analysis of PDEs +1008.3596 Algebraic Geometry +1008.3597 Information Theory +1008.3600 Mesoscale and Nanoscale Physics +1008.3603 Mesoscale and Nanoscale Physics +1008.3608 Information Theory +1008.3610 Operator Algebras +1008.3614 Networking and Internet Architecture +1008.3617 Complex Variables +1008.3623 Chemical Physics +1008.3625 Cryptography and Security +1008.3627 High Energy Astrophysical Phenomena +1008.3629 Information Theory +1008.3634 Differential Geometry +1008.3635 Analysis of PDEs +1008.3638 Phenomenology +1008.3639 Materials Science +1008.3641 Information Theory +1008.3647 Lattice +1008.3648 Algebraic Topology +1008.3649 Number Theory +1008.3652 Discrete Mathematics +1008.3653 Discrete Mathematics +1008.3661 +1008.3667 Symbolic Computation +1008.3670 +1008.3674 Number Theory +1008.3679 Geometric Topology +1008.3681 Networking and Internet Architecture +1008.3685 Algebraic Geometry +1008.3692 Probability +1008.3693 Solar and Stellar Astrophysics +1008.3694 Hardware Architecture +1008.3695 Medical Physics +1008.3699 Numerical Analysis +1008.3700 Differential Geometry +1008.3708 +1008.3711 Commutative Algebra +1008.3718 Portfolio Management +1008.3724 Combinatorics +1008.3725 Computers and Society +1008.3742 Computer Vision and Pattern Recognition +1008.3743 Databases +1008.3748 Operator Algebras +1008.3751 Databases +1008.3758 Networking and Internet Architecture +1008.3759 Networking and Internet Architecture +1008.3760 Robotics +1008.3769 Probability +1008.3773 Data Structures and Algorithms +1008.3775 Networking and Internet Architecture +1008.3776 Information Theory +1008.3782 Strongly Correlated Electrons +1008.3786 Data Structures and Algorithms +1008.3789 Pattern Formation and Solitons +1008.3792 Probability +1008.3793 Chaotic Dynamics +1008.3795 Information Retrieval +1008.3798 Computer Vision and Pattern Recognition +1008.3799 Strongly Correlated Electrons +1008.3800 Adaptation and Self-Organizing Systems +1008.3806 Instrumentation and Methods for Astrophysics +1008.3819 Phenomenology +1008.3820 Other Condensed Matter +1008.3821 Metric Geometry +1008.3824 Differential Geometry +1008.3825 Algebraic Geometry +1008.3830 Superconductivity +1008.3840 Physics and Society +1008.3848 Astrophysics of Galaxies +1008.3849 Probability +1008.3851 Disordered Systems and Neural Networks +1008.3855 Probability +1008.3860 Cosmology and Nongalactic Astrophysics +1008.3863 Logic in Computer Science +1008.3867 Logic in Computer Science +1008.3872 Statistical Mechanics +1008.3880 Computational Finance +1008.3884 +1008.3888 Plasma Physics +1008.3889 Computational Geometry +1008.3895 Computational Physics +1008.3896 +cs/0701043 Information Theory +hep-th/0703111 Theory +math/0510540 Group Theory +math/0511735 Algebraic Topology +0704.0852 +0704.1710 Phenomenology +0705.2895 +0706.0382 +0706.3468 Phenomenology +0707.2690 +0708.2246 Lattice +0711.2504 +0711.3144 +0712.0173 +0712.0180 +0712.0181 +0712.0191 +0712.0199 +0712.0555 +0712.0771 +0712.0800 +0712.0809 +0712.1117 +0712.1340 +0801.2738 +0801.4484 +0803.3844 +0805.1871 Phenomenology +0807.3125 Phenomenology +0808.2387 Theory +0809.3497 +0809.3734 +0902.2737 Cosmology and Nongalactic Astrophysics +0902.3791 Astrophysics of Galaxies +0903.3094 +0906.1926 Experiment +0906.2340 Solar and Stellar Astrophysics +0906.4282 Theory +0906.5036 Cosmology and Nongalactic Astrophysics +0907.1660 Cosmology and Nongalactic Astrophysics +0909.3255 Lattice +0910.0048 Lattice +0910.1330 Astrophysics of Galaxies +0910.4552 Theory +0912.3299 Theory +1001.3678 Cosmology and Nongalactic Astrophysics +1004.0498 +1004.0502 +1004.1510 Theory +1005.2902 Phenomenology +1005.4207 +1005.4393 Populations and Evolution +1005.5563 Phenomenology +1006.2314 Phenomenology +1006.5251 +1007.2260 General Physics +1007.3639 Theory +1007.4451 Theory +1007.4670 +1008.0436 Phenomenology +1008.0820 Phenomenology +1008.1278 +1008.4061 +1008.4773 Theory +1008.5153 Phenomenology +1008.5203 Theory +1009.0080 +1009.1094 Phenomenology +1009.1139 Theory +1009.1453 Phenomenology +1009.3497 Theory +1009.3572 +1009.3667 +1009.3745 +1011.5332 Programming Languages +astro-ph/0203091 +astro-ph/0511240 +gr-qc/0404118 +gr-qc/0501078 +gr-qc/0506008 +gr-qc/0508087 +gr-qc/0702097 +hep-ph/0503154 Phenomenology +hep-ph/0510340 Phenomenology +hep-ph/0604158 Phenomenology +hep-ph/0702082 Phenomenology +hep-ph/0702206 Phenomenology +hep-ph/0702253 Phenomenology +hep-ph/0703026 Phenomenology +hep-ph/0703037 Phenomenology +hep-th/0003215 Theory +hep-th/0005276 Theory +hep-th/0309200 Theory +hep-th/0506113 Theory +hep-th/0511069 Theory +hep-th/9811013 Theory +hep-th/9811228 Theory +hep-th/9812008 Theory +hep-th/9903123 Theory +hep-th/9905006 Theory +math-ph/0506013 +math/0405132 Geometric Topology +nucl-ex/0412034 +nucl-ex/0501033 +nucl-ex/0510017 +nucl-ex/0702040 +nucl-ex/0702045 +nucl-ex/0703042 +nucl-th/0204006 +nucl-th/0303070 +nucl-th/0702076 +nucl-th/0702084 +nucl-th/0703100 +physics/0412010 Classical Physics +physics/0703097 Instrumentation and Detectors +quant-ph/9502015 +0706.2153 Computational Geometry +0709.4421 Combinatorics +0709.4681 Analysis of PDEs +0712.1376 Strongly Correlated Electrons +0801.3040 Algebraic Geometry +0803.1108 Geometric Topology +0803.2262 Information Theory +0804.0550 Strongly Correlated Electrons +0810.0103 Probability +0810.0369 Materials Science +0810.1113 Mesoscale and Nanoscale Physics +0811.4163 Information Theory +0901.3246 Probability +0902.1199 Probability +0902.4030 Analysis of PDEs +0902.4036 +0904.0376 Other Quantitative Biology +0907.1764 +0907.3825 +0907.4056 Classical Analysis and ODEs +0907.4340 Group Theory +0907.5497 Statistical Mechanics +0908.0229 Mesoscale and Nanoscale Physics +0908.2179 Rings and Algebras +0908.3285 Superconductivity +0909.3693 Strongly Correlated Electrons +0909.4185 Disordered Systems and Neural Networks +0909.5094 Statistical Mechanics +0910.1717 Quantum Gases +0910.2438 +0911.1097 +0911.2737 Optics +0911.3832 Mesoscale and Nanoscale Physics +0911.4487 Quantum Gases +0911.4680 +0911.5202 Strongly Correlated Electrons +0912.0631 Statistical Mechanics +0912.3334 Superconductivity +1001.2231 Lattice +1001.4389 Mesoscale and Nanoscale Physics +1002.0998 Superconductivity +1002.3411 Differential Geometry +1003.0529 Learning +1003.1670 Functional Analysis +1003.3432 Cosmology and Nongalactic Astrophysics +1003.3997 Algebraic Geometry +1003.4054 +1003.4465 Number Theory +1003.4480 Algebraic Geometry +1003.4613 Dynamical Systems +1003.4628 Numerical Analysis +1003.5350 Databases +1003.5543 +1003.5569 Algebraic Geometry +1003.5588 Combinatorics +1003.5623 Sound +1003.5627 Sound +1003.5676 Functional Analysis +1003.5681 Commutative Algebra +1003.5683 Commutative Algebra +1003.5685 Commutative Algebra +1003.5686 Commutative Algebra +1003.5688 Combinatorics +1003.5691 Metric Geometry +1003.5693 Information Theory +1003.5701 Superconductivity +1003.5712 General Finance +1003.5715 High Energy Astrophysical Phenomena +1003.5716 Logic in Computer Science +1003.5719 Plasma Physics +1003.5723 Phenomenology +1003.5730 +1003.5747 Classical Analysis and ODEs +1003.5748 Classical Analysis and ODEs +1003.5749 Learning +1003.5750 Soft Condensed Matter +1003.5753 Instrumentation and Methods for Astrophysics +1003.5759 High Energy Astrophysical Phenomena +1003.5764 Number Theory +1003.5769 +1003.5781 Probability +1003.5782 Discrete Mathematics +1003.5787 Cryptography and Security +1003.5789 Metric Geometry +1003.5790 +1003.5798 Differential Geometry +1003.5803 Networking and Internet Architecture +1003.5804 Biological Physics +1003.5811 Representation Theory +1003.5817 Combinatorics +1003.5818 Astrophysics of Galaxies +1003.5819 Optimization and Control +1003.5828 Populations and Evolution +1003.5829 High Energy Astrophysical Phenomena +1003.5832 Soft Condensed Matter +1003.5837 Algebraic Geometry +1003.5839 Populations and Evolution +1003.5844 Probability +1003.5845 Analysis of PDEs +1003.5856 Number Theory +1003.5861 Computer Vision and Pattern Recognition +1003.5865 Computer Vision and Pattern Recognition +1003.5866 Functional Analysis +1003.5870 Materials Science +1003.5874 Computational Geometry +1003.5879 Quantum Algebra +1003.5882 Quantum Algebra +1003.5884 Digital Libraries +1003.5886 Computer Vision and Pattern Recognition +1003.5887 Dynamical Systems +1003.5888 Fluid Dynamics +1003.5890 +1003.5891 Computer Vision and Pattern Recognition +1003.5893 Computer Vision and Pattern Recognition +1003.5897 Computer Vision and Pattern Recognition +1003.5898 Computer Vision and Pattern Recognition +1003.5901 Quantum Gases +1003.5905 Phenomenology +math-ph/0609018 +math/0509271 Combinatorics +math/0510124 Quantum Algebra +math/0601076 Probability +math/0608640 Analysis of PDEs +math/0702392 Analysis of PDEs +nlin/0301025 Chaotic Dynamics +physics/0004023 General Physics +quant-ph/0508190 +0704.2701 Quantum Algebra +0806.4842 Phenomenology +0903.0017 Superconductivity +1009.5482 Phenomenology +1011.3023 Computer Vision and Pattern Recognition +1012.3055 +1102.2650 Probability +1104.0206 +1105.1599 +1106.2814 Phenomenology +1106.4746 +1108.2283 Artificial Intelligence +1110.5093 Materials Science +1110.5373 +1110.6588 Materials Science +1112.1183 Dynamical Systems +1202.3276 Group Theory +1203.4919 Number Theory +1204.0420 Quantum Algebra +1204.2108 Statistics Theory +1204.6296 Phenomenology +1205.0628 Representation Theory +1205.3025 Neurons and Cognition +1206.1096 Superconductivity +1207.5942 High Energy Astrophysical Phenomena +1207.5943 High Energy Astrophysical Phenomena +1207.5945 High Energy Astrophysical Phenomena +1207.6466 Dynamical Systems +1208.3285 Numerical Analysis +1208.3341 Solar and Stellar Astrophysics +1208.4131 Astrophysics of Galaxies +1210.2602 Analysis of PDEs +1210.6637 Solar and Stellar Astrophysics +1211.2839 Soft Condensed Matter +1211.3317 Quantum Gases +1212.0923 Number Theory +1212.1845 +1212.4679 Classical Analysis and ODEs +1212.5106 Formal Languages and Automata Theory +1212.5332 Machine Learning +1301.1719 +1301.2240 Quantum Algebra +1301.3374 Functional Analysis +1301.6072 Dynamical Systems +1302.6185 Theory +1303.2236 Statistics Theory +1303.4891 Phenomenology +1303.5010 Dynamical Systems +1304.2294 Classical Physics +1304.3321 Number Theory +1304.4427 +1304.4641 Dynamical Systems +1304.5995 +1304.6028 +1304.6064 Mesoscale and Nanoscale Physics +1304.6688 +1304.8095 Quantum Gases +1305.0563 Cosmology and Nongalactic Astrophysics +1305.0632 Optimization and Control +1305.1378 Quantum Gases +1305.1796 Information Theory +1305.3438 +1305.4842 High Energy Astrophysical Phenomena +1305.4875 +1305.5520 Data Structures and Algorithms +1305.6161 Information Theory +1305.6185 Quantum Algebra +1305.6413 Quantum Gases +1305.7085 Optimization and Control +1306.1019 +1306.2603 Strongly Correlated Electrons +1306.3144 +1306.3247 Computational Physics +1306.3467 High Energy Astrophysical Phenomena +1306.3865 +1306.5896 Cosmology and Nongalactic Astrophysics +1307.0132 Materials Science +1307.0270 Probability +1307.1298 Strongly Correlated Electrons +1307.1504 +1307.1690 Data Structures and Algorithms +1307.2896 Cosmology and Nongalactic Astrophysics +1307.3109 Numerical Analysis +1307.3115 Theory +1307.3784 Theory +1307.4194 Phenomenology +1307.6180 Strongly Correlated Electrons +1307.6364 +1307.7366 Soft Condensed Matter +1307.8169 Materials Science +1308.0100 +1308.0532 Instrumentation and Detectors +1308.0687 +1308.1070 Probability +1308.3831 Social and Information Networks +1308.3975 Analysis of PDEs +1308.4097 Phenomenology +1308.4123 Probability +1308.4213 +1308.4361 Analysis of PDEs +1309.1789 Materials Science +1309.2347 Disordered Systems and Neural Networks +1309.2945 Materials Science +1309.3065 Phenomenology +1309.4209 +1309.4575 High Energy Astrophysical Phenomena +1309.5833 +1310.1926 Solar and Stellar Astrophysics +1310.2997 Learning +1310.3404 Programming Languages +1310.3867 Statistical Mechanics +1310.4357 Atomic Physics +1310.5371 Analysis of PDEs +1310.5566 Mesoscale and Nanoscale Physics +1310.6721 Number Theory +1310.6974 Dynamical Systems +1310.7969 Materials Science +1310.8153 Theory +1311.0259 +1311.0901 Analysis of PDEs +1311.1443 Theory +1311.1718 Lattice +1311.1953 +1311.2021 Mesoscale and Nanoscale Physics +1311.2113 Representation Theory +1311.2531 Artificial Intelligence +1311.2694 Machine Learning +1311.2787 +1311.3859 Machine Learning +1311.4118 Probability +1311.4262 Geometric Topology +1311.4376 Logic in Computer Science +1311.4516 Theory +1311.4600 Number Theory +1311.4625 Optimization and Control +1311.4629 Differential Geometry +1311.4650 Theory +1311.4756 K-Theory and Homology +1311.4775 Statistical Mechanics +1311.4855 Representation Theory +1311.4894 Multiagent Systems +1311.4897 Probability +1311.4899 Combinatorics +1311.4900 Information Retrieval +1311.4906 Neurons and Cognition +1311.4908 Mesoscale and Nanoscale Physics +1311.4911 +1311.4915 Formal Languages and Automata Theory +1311.4916 Lattice +1311.4918 Phenomenology +1311.4920 Number Theory +1311.4921 Populations and Evolution +1311.4922 Information Theory +1311.4925 Combinatorics +1311.4931 K-Theory and Homology +1311.4933 Geometric Topology +1311.4939 +1311.4948 Analysis of PDEs +1311.4951 Functional Analysis +1311.4952 Distributed, Parallel, and Cluster Computing +1311.4959 Lattice +1311.4967 Probability +1311.4968 Cell Behavior +1311.4969 Pricing of Securities +1311.4973 Pricing of Securities +1311.4976 Statistics Theory +1311.4977 Statistical Finance +1311.4979 Phenomenology +1311.4980 Mesoscale and Nanoscale Physics +1311.4981 Statistics Theory +1311.4986 Instrumentation and Methods for Astrophysics +1311.4987 Artificial Intelligence +1311.4988 Astrophysics of Galaxies +1311.4990 Superconductivity +1311.4992 Phenomenology +1311.4996 Probability +1311.4998 Lattice +1311.4999 Probability +1311.5006 Logic in Computer Science +1311.5010 Lattice +1311.5011 Functional Analysis +1311.5013 Information Retrieval +1311.5016 History and Philosophy of Physics +1311.5018 Graphics +1311.5019 Strongly Correlated Electrons +1311.5024 Statistics Theory +1311.5025 Phenomenology +1311.5026 Lattice +1311.5027 Combinatorics +1311.5033 +1311.5046 Combinatorics +1311.5047 Materials Science +1311.5049 Logic +1311.5056 Combinatorics +1311.5058 Formal Languages and Automata Theory +1311.5064 Discrete Mathematics +1311.5065 Operator Algebras +1311.5068 Learning +1311.5072 Physics and Society +1311.5074 Instrumentation and Detectors +1311.5075 Instrumentation and Detectors +1311.5076 Instrumentation and Detectors +1311.5077 Plasma Physics +1311.5078 Instrumentation and Detectors +1311.5079 +1311.5080 High Energy Astrophysical Phenomena +1311.5081 Data Structures and Algorithms +1311.5083 Dynamical Systems +1311.5084 Computers and Society +1311.5085 Phenomenology +1311.5089 Lattice +1311.5090 Computational Complexity +1311.5091 +1311.5100 Quantum Gases +1311.5102 Computational Complexity +1311.5107 Commutative Algebra +1311.5108 Multiagent Systems +1311.5115 Optimization and Control +1311.5123 Social and Information Networks +1311.5126 Programming Languages +1311.5127 Functional Analysis +1311.5133 Computers and Society +1311.5137 Optics +1311.5141 Algebraic Geometry +1311.5142 Number Theory +1311.5143 Systems and Control +1311.5147 +1311.5148 Instrumentation and Methods for Astrophysics +1311.5150 Computational Physics +1311.5153 Computational Physics +1311.5155 Computational Physics +1311.5160 Strongly Correlated Electrons +1311.5161 High Energy Astrophysical Phenomena +1311.5162 K-Theory and Homology +1311.5163 Number Theory +1311.5167 Complex Variables +1311.5169 Functional Analysis +1311.5171 Complex Variables +1311.5172 Fluid Dynamics +1311.5175 Complex Variables +1311.5177 Lattice +1311.5178 Analysis of PDEs +1311.5183 Geometric Topology +1311.5185 Chemical Physics +1311.5187 Statistics Theory +1311.5191 Phenomenology +1311.5193 Data Structures and Algorithms +1311.5194 +1311.5195 Complex Variables +1311.5196 Analysis of PDEs +1311.5198 Lattice +1311.5204 Databases +1311.5205 Superconductivity +1311.5208 Lattice +1311.5215 +math/9909136 Complex Variables +1312.4731 Other Statistics +1312.6838 Data Structures and Algorithms +0906.5469 Geometric Topology +1008.0590 Applications +0811.1720 Superconductivity +0903.3807 +0905.2784 +0910.2870 Statistical Mechanics +0911.1420 Superconductivity +1002.2231 Statistical Mechanics +1002.2234 Statistical Mechanics +1003.5028 General Mathematics +1005.4813 Mesoscale and Nanoscale Physics +1008.3731 Dynamical Systems +1011.0242 Quantum Gases +1101.1806 Analysis of PDEs +1104.1516 Mesoscale and Nanoscale Physics +1106.3757 +1107.2215 Mesoscale and Nanoscale Physics +1107.2387 Statistics Theory +1108.1704 Mesoscale and Nanoscale Physics +1108.3804 +1108.4991 +1109.0265 Algebraic Topology +1112.5032 Optimization and Control +1201.1699 Experiment +1201.3420 Statistical Mechanics +1201.5416 Atomic Physics +1201.6095 Information Retrieval +1202.5289 Multimedia +1202.5465 Differential Geometry +1202.5494 High Energy Astrophysical Phenomena +1203.1479 Statistical Mechanics +1203.5095 +1205.3649 Spectral Theory +1205.6943 Analysis of PDEs +1207.3067 Mesoscale and Nanoscale Physics +1207.3707 Quantum Gases +1208.1427 +1208.1874 +1208.2020 Theory +1208.3041 Differential Geometry +1208.5641 Cryptography and Security +1209.2361 Dynamical Systems +1209.4232 +1209.4376 Theory +1209.5680 Geometric Topology +1210.2001 Number Theory +1210.4717 +1210.5210 Phenomenology +1211.2000 Phenomenology +1211.2250 Dynamical Systems +1211.3364 Phenomenology +1211.4022 +1211.4495 Analysis of PDEs +1211.4646 Complex Variables +1211.5183 Cryptography and Security +1211.5749 Mesoscale and Nanoscale Physics +1212.3594 +1212.5096 Phenomenology +1212.5783 Atmospheric and Oceanic Physics +1212.6262 Mesoscale and Nanoscale Physics +1301.2937 Experiment +1301.3068 Strongly Correlated Electrons +1301.4462 +1301.5849 Cosmology and Nongalactic Astrophysics +1301.5901 Cosmology and Nongalactic Astrophysics +1301.6028 Quantum Gases +1301.6286 Commutative Algebra +1301.7240 +1302.0337 Databases +1302.6361 Phenomenology +1302.6711 Chemical Physics +1303.0467 Optics +1303.2747 Phenomenology +1303.4339 Mesoscale and Nanoscale Physics +1303.4379 +1303.4395 Phenomenology +1303.4794 Optics +1303.4968 Functional Analysis +1303.5892 Optics +1303.6096 Theory +1303.6250 +1304.2298 Geometric Topology +1304.3789 Biological Physics +1304.3821 Symplectic Geometry +1304.3822 Algebraic Geometry +1304.3868 Data Structures and Algorithms +1304.4606 Phenomenology +1304.4668 Mesoscale and Nanoscale Physics +1304.5316 Geometric Topology +1304.5675 +1304.6445 Combinatorics +1304.7162 Information Theory +1304.7249 Phenomenology +1304.8094 Atomic Physics +1305.0052 Group Theory +1305.0468 Statistical Mechanics +1305.1210 Quantum Gases +1305.2284 Experiment +1305.4269 +1305.4507 Phenomenology +1305.4862 Soft Condensed Matter +1305.5561 Computational Complexity +1305.6849 +1306.1441 Strongly Correlated Electrons +1306.1683 Superconductivity +1306.3245 Phenomenology +1306.4739 +1306.5450 Atomic Physics +1307.1330 Physics and Society +1307.2703 Mesoscale and Nanoscale Physics +1307.2832 Instrumentation and Detectors +1307.3076 Soft Condensed Matter +1307.3697 Mesoscale and Nanoscale Physics +1307.4199 Materials Science +1307.4550 Instrumentation and Methods for Astrophysics +1307.5538 Instrumentation and Detectors +1307.6071 Populations and Evolution +1307.6170 Computer Vision and Pattern Recognition +1307.6716 Systems and Control +1307.6767 Disordered Systems and Neural Networks +1307.7124 General Physics +1307.7149 Experiment +1307.7225 Experiment +1307.7325 Differential Geometry +1307.7332 Information Retrieval +1307.7344 Instrumentation and Methods for Astrophysics +1307.7429 Computers and Society +1307.7432 Computers and Society +1307.7466 Artificial Intelligence +1307.7557 Commutative Algebra +1307.7600 Atmospheric and Oceanic Physics +1307.7620 Phenomenology +1307.7661 Logic in Computer Science +1307.7705 General Physics +1307.7706 Combinatorics +1307.7720 Artificial Intelligence +1307.7727 High Energy Astrophysical Phenomena +1307.7734 Fluid Dynamics +1307.7736 Statistical Mechanics +1307.7737 Probability +1307.7741 Phenomenology +1307.7744 History and Philosophy of Physics +1307.7749 Combinatorics +1307.7750 Phenomenology +1307.7752 Computational Geometry +1307.7753 Solar and Stellar Astrophysics +1307.7761 Statistical Mechanics +1307.7770 Information Theory +1307.7772 Solar and Stellar Astrophysics +1307.7777 Instrumentation and Detectors +1307.7782 +1307.7783 Materials Science +1307.7784 Methodology +1307.7786 Cryptography and Security +1307.7787 Other Computer Science +1307.7788 Computers and Society +1307.7789 Computers and Society +1307.7790 Software Engineering +1307.7796 Physics and Society +1307.7797 Complex Variables +1307.7798 Quantitative Methods +1307.7800 Computer Vision and Pattern Recognition +1307.7803 Quantitative Methods +1307.7805 Quantitative Methods +1307.7806 Data Structures and Algorithms +1307.7807 Discrete Mathematics +1307.7808 Artificial Intelligence +1307.7809 Artificial Intelligence +1307.7812 High Energy Astrophysical Phenomena +1307.7814 Networking and Internet Architecture +1307.7817 Quantitative Methods +1307.7818 Materials Science +1307.7819 Classical Analysis and ODEs +1307.7829 +1307.7832 Cosmology and Nongalactic Astrophysics +1307.7833 Cryptography and Security +1307.7837 Analysis of PDEs +1307.7841 Methodology +1307.7844 Quantitative Methods +1307.7847 Quantitative Methods +1307.7848 Computer Vision and Pattern Recognition +1307.7849 Programming Languages +1307.7851 Computer Vision and Pattern Recognition +1307.7852 Computer Vision and Pattern Recognition +1307.7853 Instrumentation and Detectors +1307.7854 Differential Geometry +1307.7856 Plasma Physics +1307.7857 Rings and Algebras +1307.7858 Discrete Mathematics +1307.7860 Applications +1307.7861 Quantitative Methods +1307.7862 Quantitative Methods +1307.7863 Complex Variables +1307.7868 Materials Science +1307.7875 Phenomenology +1307.7881 Solar and Stellar Astrophysics +1307.7883 Cosmology and Nongalactic Astrophysics +1307.7884 Differential Geometry +1307.7889 Data Analysis, Statistics and Probability +1307.7890 Analysis of PDEs +1307.7891 Rings and Algebras +1307.7892 Instrumentation and Methods for Astrophysics +1307.7895 Systems and Control +1307.7897 Neural and Evolutionary Computing +1307.7900 +1307.7901 Probability +1307.7905 High Energy Astrophysical Phenomena +1307.7912 Medical Physics +1307.7913 +1307.7914 Soft Condensed Matter +1307.7915 Numerical Analysis +1307.7916 Quantitative Methods +1307.7917 Probability +1307.7919 Quantitative Methods +1307.7920 Number Theory +1307.7921 Experiment +1307.7930 Analysis of PDEs +1307.7931 +1307.7932 Probability +1307.7933 Quantitative Methods +1307.7934 Dynamical Systems +1307.7941 Quantitative Methods +1307.7942 Optics +1307.7943 Performance +1307.7944 Superconductivity +1307.7945 Algebraic Geometry +1307.7948 Methodology +1307.7949 +1307.7951 Other Computer Science +1307.7955 Functional Analysis +1307.7957 Classical Analysis and ODEs +1307.7958 Functional Analysis +1307.7962 General Physics +1307.7968 Combinatorics +1307.7969 Phenomenology +1307.7971 Classical Analysis and ODEs +1307.7972 +1307.7974 Information Retrieval +1307.7975 Methodology +1307.7979 Representation Theory +1307.7981 Machine Learning +1307.7982 Physics and Society +1307.7983 High Energy Astrophysical Phenomena +1307.7988 +1307.7993 Learning +1307.7994 Algebraic Topology +1307.7998 Symplectic Geometry +1307.8004 Logic +1307.8008 Mesoscale and Nanoscale Physics +1307.8013 Performance +1307.8015 Analysis of PDEs +1307.8017 Biological Physics +1307.8025 History and Overview +1307.8026 Genomics +1307.8029 Symbolic Computation +1307.8031 Solar and Stellar Astrophysics +1307.8032 Complex Variables +1307.8033 Complex Variables +1307.8034 Strongly Correlated Electrons +1307.8046 Applications +1307.8049 Learning +1307.8051 Instrumentation and Detectors +1307.8052 Computational Physics +1307.8055 Dynamical Systems +1307.8056 Mesoscale and Nanoscale Physics +1307.8067 Digital Libraries +1307.8070 High Energy Astrophysical Phenomena +1307.8071 Combinatorics +1307.8073 Functional Analysis +1307.8074 Algebraic Geometry +1307.8079 Number Theory +1307.8082 Probability +1307.8087 Fluid Dynamics +1307.8088 Functional Analysis +1307.8091 High Energy Astrophysical Phenomena +1307.8102 Experiment +1307.8104 Neural and Evolutionary Computing +1307.8111 Geometric Topology +hep-th/0512322 Theory +hep-th/9502031 Theory +0705.2628 Classical Analysis and ODEs +0711.0605 Analysis of PDEs +0711.3858 +0803.3401 +0807.0104 +0902.1262 Number Theory +0903.2216 Dynamical Systems +0905.0605 +0905.3850 Classical Analysis and ODEs +0906.1537 Classical Analysis and ODEs +0906.2016 +0907.0683 +0910.2622 +0911.0628 Group Theory +0911.3212 Differential Geometry +0912.3155 +0912.3357 +1001.0145 Solar and Stellar Astrophysics +1001.0188 Statistics Theory +1001.4472 Group Theory +1001.4474 Geometric Topology +1003.4667 Differential Geometry +1003.5131 Probability +1004.2970 K-Theory and Homology +1005.2774 Probability +1007.0041 +1009.4025 Probability +1010.0295 Dynamical Systems +1010.1374 Materials Science +1010.5049 +1011.5478 Representation Theory +1012.2751 Information Theory +1103.1512 Materials Science +1103.1610 Group Theory +1103.5431 Optimization and Control +1106.0261 +1106.3288 Analysis of PDEs +1108.0312 +1108.6133 Probability +1109.0494 +1109.4226 Number Theory +1110.2574 Emerging Technologies +1111.2803 Theory +1111.3895 Differential Geometry +1111.4576 Optimization and Control +1112.5754 Theory +1201.1265 Optimization and Control +1202.0417 Information Theory +1202.4842 Combinatorics +1202.5429 Probability +1202.5603 Cosmology and Nongalactic Astrophysics +1203.4873 Probability +1203.5781 +1204.1706 Neural and Evolutionary Computing +1204.1840 Other Computer Science +1204.1850 +1204.3285 Materials Science +1204.6164 Cosmology and Nongalactic Astrophysics +1205.3353 Mesoscale and Nanoscale Physics +1205.6553 Group Theory +1206.1202 +1206.2598 Experiment +1206.2790 Statistics Theory +1206.4071 Instrumentation and Detectors +1206.5829 Cryptography and Security +1206.5961 Theory +1206.6680 Materials Science +1206.6991 Probability +1207.0065 Experiment +1207.0402 Strongly Correlated Electrons +1207.1275 +1207.2392 Experiment +1207.2573 Statistical Mechanics +1207.2666 Experiment +1207.3674 Algebraic Topology +1207.4324 Cosmology and Nongalactic Astrophysics +1207.5988 Cosmology and Nongalactic Astrophysics +1208.0957 Experiment +1208.2826 +1208.4154 +1208.4210 Cosmology and Nongalactic Astrophysics +1208.4887 +1208.5444 Theory +1209.0016 Machine Learning +1209.2710 Phenomenology +1209.2785 Geometric Topology +1209.3882 Functional Analysis +1209.4397 Experiment +1209.6096 Complex Variables +1209.6259 Phenomenology +1209.6479 +1210.1098 Theory +1210.2326 Analysis of PDEs +1210.2860 +1210.3111 Analysis of PDEs +1210.3799 Combinatorics +1210.4937 Logic +1210.5140 Instrumentation and Methods for Astrophysics +1210.5346 Soft Condensed Matter +1210.5482 +1210.5826 Combinatorics +1210.5955 Data Structures and Algorithms +1210.6873 Phenomenology +1210.7404 Numerical Analysis +1210.7487 Cosmology and Nongalactic Astrophysics +1210.8190 Phenomenology +1211.0812 Functional Analysis +1211.1985 Mesoscale and Nanoscale Physics +1211.2080 Superconductivity +1211.2815 Theory +1211.4042 Materials Science +1211.4209 Soft Condensed Matter +1211.4233 Fluid Dynamics +1211.4443 Geometric Topology +1211.6506 Phenomenology +1211.6924 Strongly Correlated Electrons +1211.7178 Probability +1212.0675 Fluid Dynamics +1212.2085 Instrumentation and Methods for Astrophysics +1212.2742 Superconductivity +1212.4831 Theory +1212.5117 Probability +1301.1524 +1301.3577 Learning +1301.3666 Computer Vision and Pattern Recognition +1301.4058 Experiment +1301.5517 Superconductivity +1302.1502 Lattice +1302.2544 General Finance +1302.4631 Applications +1302.4643 Materials Science +1302.5229 Materials Science +1302.5641 Theory +1302.6407 +1302.6721 General Finance +1303.0288 Strongly Correlated Electrons +1303.0444 Statistical Mechanics +1303.0680 Combinatorics +1303.1714 Differential Geometry +1303.2188 Statistical Mechanics +1303.2220 Phenomenology +1303.2733 High Energy Astrophysical Phenomena +1303.3491 Combinatorics +1303.3868 Populations and Evolution +1303.4002 Geometric Topology +1303.4072 Superconductivity +1303.4374 Group Theory +1303.4532 Discrete Mathematics +1303.4610 +1303.4667 Experiment +1303.4729 +1303.4734 Theory +1303.4748 Quantum Algebra +1303.4754 Superconductivity +1303.4757 Accelerator Physics +1303.4762 Information Theory +1303.4764 Quantum Gases +1303.4767 Statistics Theory +1303.4769 Functional Analysis +1303.4770 Statistical Mechanics +1303.4771 Networking and Internet Architecture +1303.4776 Information Theory +1303.4782 Information Theory +1303.4785 +1303.4788 Digital Libraries +1303.4790 +1303.4791 Theory +1303.4796 Mesoscale and Nanoscale Physics +1303.4797 Representation Theory +1303.4799 Mesoscale and Nanoscale Physics +1303.4801 Combinatorics +1303.4803 Computer Vision and Pattern Recognition +1303.4807 Dynamical Systems +1303.4810 Superconductivity +1303.4813 Classical Analysis and ODEs +1303.4814 Cryptography and Security +1303.4815 +1303.4818 Number Theory +1303.4820 +1303.4822 Materials Science +1303.4826 Number Theory +1303.4827 +1303.4830 +1303.4833 +1303.4836 Dynamical Systems +1303.4838 +1303.4839 Computer Vision and Pattern Recognition +1303.4840 Computer Vision and Pattern Recognition +1303.4841 +1303.4842 Operator Algebras +1303.4844 Functional Analysis +1303.4849 Pricing of Securities +1303.4853 Solar and Stellar Astrophysics +1303.4854 Discrete Mathematics +1303.4855 Materials Science +1303.4860 Medical Physics +1303.4861 Differential Geometry +1303.4865 Materials Science +1303.4866 Computer Vision and Pattern Recognition +1303.4868 +1303.4869 Databases +1303.4871 Statistics Theory +1303.4873 Soft Condensed Matter +1303.4875 Statistics Theory +1303.4883 General Topology +1303.4884 Theory +1303.4886 Disordered Systems and Neural Networks +1303.4888 Disordered Systems and Neural Networks +1303.4890 Statistics Theory +1303.4892 Hardware Architecture +1303.4897 Discrete Mathematics +1303.4898 Materials Science +1303.4902 Logic +1303.4903 Astrophysics of Galaxies +1303.4907 Rings and Algebras +1303.4910 Materials Science +1303.4911 Statistics Theory +1303.4912 Differential Geometry +1303.4913 Statistical Mechanics +1303.4917 Statistics Theory +1303.4921 Lattice +1303.4931 Space Physics +1303.4938 Number Theory +1303.4940 Number Theory +1303.4941 Algebraic Geometry +1303.4942 Numerical Analysis +1303.4948 Superconductivity +1303.4949 Emerging Technologies +1303.4953 Instrumentation and Methods for Astrophysics +1303.4956 Applications +1303.4960 Algebraic Geometry +1303.4961 Theory +1303.4966 Group Theory +1303.4972 Functional Analysis +1303.4981 Molecular Networks +1303.4983 Phenomenology +1303.4986 Social and Information Networks +1303.4988 Rings and Algebras +1303.4994 Other Computer Science +1303.4999 Algebraic Geometry +1303.5002 Number Theory +1303.5003 Information Theory +1303.5008 Differential Geometry +1303.5009 Social and Information Networks +1303.5011 Strongly Correlated Electrons +1303.5013 Instrumentation and Methods for Astrophysics +1303.5014 Materials Science +1303.5017 Differential Geometry +1303.5018 Materials Science +1303.5019 Geometric Topology +1303.5023 Classical Physics +1303.5027 Theory +1303.5030 Classical Analysis and ODEs +1303.5031 Probability +1303.5033 +1303.5037 Logic +1303.5043 +1303.5045 Dynamical Systems +1303.5047 Classical Analysis and ODEs +math/0303043 Number Theory +math/0612583 Probability +0709.0852 Pattern Formation and Solitons +0712.4009 Combinatorics +0901.4098 +0903.2785 Number Theory +0910.4604 Materials Science +1002.3151 Instrumentation and Methods for Astrophysics +1004.4004 Statistical Mechanics +1004.4946 Experiment +1006.1391 Mesoscale and Nanoscale Physics +1011.2850 Mesoscale and Nanoscale Physics +1012.0579 Differential Geometry +1103.0868 Combinatorics +1104.1795 Exactly Solvable and Integrable Systems +1104.5217 Pattern Formation and Solitons +1107.3208 Materials Science +1108.2649 Number Theory +1109.1259 Chemical Physics +1109.5980 +1202.2408 Statistics Theory +1203.2980 Analysis of PDEs +1205.2006 Materials Science +1205.3405 Probability +1205.4904 +1206.4073 Probability +1207.1698 Functional Analysis +1207.6055 +1208.1024 Probability +1208.2076 Information Theory +1209.0958 Phenomenology +1209.2079 Information Theory +1210.5646 +1210.7682 Mesoscale and Nanoscale Physics +1211.0826 Strongly Correlated Electrons +1211.4141 +1211.5087 Theory +1212.2383 Probability +1212.3267 Methodology +1212.4172 Theory +1212.6019 Algebraic Geometry +1301.1027 Information Theory +1301.2235 Quantum Algebra +1301.6981 Soft Condensed Matter +1301.6982 Soft Condensed Matter +1302.0704 Materials Science +1302.2970 Atomic Physics +1302.4279 Statistical Mechanics +1302.5804 Adaptation and Self-Organizing Systems +1302.6261 Number Theory +1302.6432 Mesoscale and Nanoscale Physics +1303.2165 Materials Science +1303.6432 Optics +1303.6657 Mesoscale and Nanoscale Physics +1303.6965 Mesoscale and Nanoscale Physics +1303.7476 Popular Physics +1304.0008 +1304.0039 Mesoscale and Nanoscale Physics +1304.0445 Popular Physics +1304.0866 Mesoscale and Nanoscale Physics +1304.1275 Materials Science +1304.1547 Superconductivity +1304.2160 Mesoscale and Nanoscale Physics +1304.2493 Instrumentation and Detectors +1304.2633 High Energy Astrophysical Phenomena +1304.3663 Robotics +1304.4551 Analysis of PDEs +1304.4917 +1304.5737 Phenomenology +1304.6110 Theory +1304.7471 Combinatorics +1304.7486 Strongly Correlated Electrons +1305.0421 Instrumentation and Methods for Astrophysics +1305.2871 Materials Science +1305.5115 Optics +1305.5817 Theory +1306.1305 Astrophysics of Galaxies +1306.1673 Materials Science +1306.1892 Strongly Correlated Electrons +1306.2535 +1306.2632 Astrophysics of Galaxies +1307.0930 Numerical Analysis +1307.1479 Group Theory +1307.2878 Soft Condensed Matter +1307.3153 Materials Science +1307.3185 Physics and Society +1307.4612 Information Theory +1307.5291 Quantum Gases +1307.7086 Theory +1307.8094 Theory +1308.0465 Experiment +1308.0482 Data Structures and Algorithms +1308.0886 Cosmology and Nongalactic Astrophysics +1308.2348 +1308.3110 Optics +1308.4843 Cosmology and Nongalactic Astrophysics +1308.6458 Number Theory +1309.1147 Metric Geometry +1309.1705 Atomic Physics +1309.2204 Theory +1309.2393 Functional Analysis +1309.2492 Superconductivity +1309.3343 Functional Analysis +1309.3440 Soft Condensed Matter +1309.6165 +1310.0245 +1310.1054 Dynamical Systems +1310.2013 Theory +1310.2290 Multiagent Systems +1310.2297 Solar and Stellar Astrophysics +1310.2755 Plasma Physics +1310.3725 Physics Education +1310.3821 High Energy Astrophysical Phenomena +1310.3927 Probability +1310.5026 Number Theory +1310.5402 Algebraic Geometry +1310.7108 Probability +1310.7401 Probability +1310.7422 +1310.8579 +1310.8633 Methodology +1311.0053 Computer Vision and Pattern Recognition +1311.1168 Theory +1311.3234 +1311.3276 Analysis of PDEs +1311.3489 Optics +1311.4356 Experiment +1311.4469 Populations and Evolution +1311.4505 Probability +1311.5000 Statistics Theory +1311.5151 Computational Physics +1311.5296 Differential Geometry +1311.5395 Statistical Mechanics +1311.5398 Phenomenology +1311.5422 Learning +1311.5435 Soft Condensed Matter +1311.5479 Machine Learning +1311.5550 Software Engineering +1311.5567 Formal Languages and Automata Theory +1311.5568 Formal Languages and Automata Theory +1311.5571 Formal Languages and Automata Theory +1311.5572 Formal Languages and Automata Theory +1311.5573 Databases +1311.5578 Number Theory +1311.5579 Lattice +1311.5581 High Energy Astrophysical Phenomena +1311.5584 Analysis of PDEs +1311.5587 Software Engineering +1311.5590 Computer Vision and Pattern Recognition +1311.5595 Computer Vision and Pattern Recognition +1311.5596 Analysis of PDEs +1311.5597 Lattice +1311.5599 Machine Learning +1311.5601 Materials Science +1311.5603 Computer Science and Game Theory +1311.5604 Methodology +1311.5610 Probability +1311.5611 Differential Geometry +1311.5612 Cryptography and Security +1311.5614 Numerical Analysis +1311.5618 Representation Theory +1311.5621 Optics +1311.5627 +1311.5629 Information Theory +1311.5631 +1311.5632 Combinatorics +1311.5634 Combinatorics +1311.5635 Algebraic Geometry +1311.5636 Learning +1311.5639 Other Computer Science +1311.5642 Group Theory +1311.5643 Group Theory +1311.5647 Astrophysics of Galaxies +1311.5650 Quantum Algebra +1311.5654 Dynamical Systems +1311.5656 Algebraic Geometry +1311.5658 Geometric Topology +1311.5661 Trading and Market Microstructure +1311.5663 Databases +1311.5665 Applications +1311.5669 Complex Variables +1311.5671 Algebraic Geometry +1311.5672 Algebraic Geometry +1311.5674 Mesoscale and Nanoscale Physics +1311.5677 Other Computer Science +1311.5679 Analysis of PDEs +1311.5680 Mesoscale and Nanoscale Physics +1311.5681 Information Theory +1311.5684 +1311.5685 Distributed, Parallel, and Cluster Computing +1311.5686 Distributed, Parallel, and Cluster Computing +1311.5688 Earth and Planetary Astrophysics +1311.5690 Computational Complexity +1311.5693 Differential Geometry +1311.5694 Symbolic Computation +1311.5707 Lattice +1311.5711 High Energy Astrophysical Phenomena +1311.5715 Number Theory +1311.5719 +1311.5726 Number Theory +1311.5727 Methodology +1311.5728 Computer Science and Game Theory +1311.5730 +1311.5731 Mesoscale and Nanoscale Physics +1311.5733 Phenomenology +1311.5735 Optimization and Control +1311.5736 Classical Analysis and ODEs +1311.5737 Solar and Stellar Astrophysics +1311.5739 Number Theory +1311.5740 Distributed, Parallel, and Cluster Computing +1311.5741 Rings and Algebras +1311.5745 Experiment +1311.5746 Phenomenology +1311.5748 Geometric Topology +1311.5752 +1311.5754 Strongly Correlated Electrons +1311.5757 Human-Computer Interaction +1311.5763 Neural and Evolutionary Computing +1311.5768 Statistics Theory +1311.5769 Quantitative Methods +1311.5771 Optics +1311.5774 Statistics Theory +1311.5775 Analysis of PDEs +1311.5777 Methodology +1311.5781 Accelerator Physics +1311.5783 High Energy Astrophysical Phenomena +1311.5786 Probability +1311.5791 Accelerator Physics +1311.5792 Accelerator Physics +1311.5793 Accelerator Physics +1311.5794 Chemical Physics +1311.5795 Neurons and Cognition +1311.5797 Adaptation and Self-Organizing Systems +1311.5803 Representation Theory +1311.5810 Programming Languages +1311.5811 Phenomenology +1311.5813 High Energy Astrophysical Phenomena +1311.5816 Social and Information Networks +1311.5825 Programming Languages +1311.5826 Analysis of PDEs +1311.5828 Methodology +1311.5829 Computer Vision and Pattern Recognition +1311.5832 Statistics Theory +1311.5834 Multimedia +1311.5835 History and Philosophy of Physics +1311.5836 Computation and Language +1311.5838 Numerical Analysis +1311.5843 Emerging Technologies +1311.5844 Materials Science +1311.5845 Algebraic Geometry +1311.5853 Physics and Society +1311.5857 Differential Geometry +1311.5860 Phenomenology +1311.5862 Differential Geometry +1311.5865 Analysis of PDEs +1311.5868 Analysis of PDEs +1311.5870 Analysis of PDEs +1311.5873 Probability +1311.5875 Optics +1311.5876 Optics +1311.5880 Human-Computer Interaction +1311.5881 Numerical Analysis +cond-mat/0701392 Statistical Mechanics +0903.2906 Probability +0903.3663 Exactly Solvable and Integrable Systems +0909.1818 Complex Variables +0909.1824 Functional Analysis +0909.1828 Complex Variables +0911.5373 Probability +0912.5462 Optics +1002.4458 Information Theory +1003.0592 Superconductivity +1004.4574 Soft Condensed Matter +1005.3768 Tissues and Organs +1005.5409 Functional Analysis +1006.0729 Statistical Mechanics +1006.3068 Cosmology and Nongalactic Astrophysics +1007.0899 Probability +1008.2456 Symplectic Geometry +1009.2746 Symplectic Geometry +1009.4144 Functional Analysis +1010.0715 Functional Analysis +1011.5395 Machine Learning +1101.5551 Classical Analysis and ODEs +1104.2415 Theory +1104.3621 Machine Learning +1105.5520 Number Theory +1106.2197 Solar and Stellar Astrophysics +1107.0072 Classical Analysis and ODEs +1107.0456 Differential Geometry +1107.4824 Data Structures and Algorithms +1108.1258 Probability +1108.3140 Superconductivity +1109.2029 Dynamical Systems +1109.3429 Functional Analysis +1109.3979 Solar and Stellar Astrophysics +1109.4774 Differential Geometry +1110.1512 Differential Geometry +1110.1626 Exactly Solvable and Integrable Systems +1110.1653 Quantum Gases +1110.2063 Numerical Analysis +1110.2758 Operator Algebras +1110.3816 Cosmology and Nongalactic Astrophysics +1110.5592 Probability +1110.6526 Geometric Topology +1111.2355 +1112.2864 Formal Languages and Automata Theory +1112.5435 Cosmology and Nongalactic Astrophysics +1201.0141 Probability +1201.1762 Theory +1201.3609 Cosmology and Nongalactic Astrophysics +1201.6658 Cosmology and Nongalactic Astrophysics +1203.1005 Computer Vision and Pattern Recognition +1203.2869 +1203.3364 Soft Condensed Matter +1203.3384 Numerical Analysis +1203.3591 Theory +1203.3666 Analysis of PDEs +1203.4734 +1203.4847 Lattice +1203.5022 +1203.6069 Cosmology and Nongalactic Astrophysics +1204.0401 Probability +1204.0937 Mesoscale and Nanoscale Physics +1204.1579 Strongly Correlated Electrons +1204.3109 +1204.3818 Information Theory +1204.4735 Materials Science +1204.4830 +1204.6096 Data Analysis, Statistics and Probability +1205.2689 General Physics +1205.2815 Phenomenology +1205.3301 Strongly Correlated Electrons +1205.6426 Statistical Mechanics +1206.0064 +1206.0704 Optics +1206.2628 Mesoscale and Nanoscale Physics +1206.3352 Functional Analysis +1206.3547 Soft Condensed Matter +1206.4138 Combinatorics +1206.5963 +1206.6498 +1206.6935 +1207.0388 Computational Physics +1207.1205 Mesoscale and Nanoscale Physics +1207.2544 Programming Languages +1207.3534 Instrumentation and Methods for Astrophysics +1207.4331 Classical Analysis and ODEs +1207.5169 Number Theory +1207.6386 Experiment +1207.6651 General Physics +1208.1484 Mesoscale and Nanoscale Physics +1208.2911 +1208.3174 Optics +1208.5192 Superconductivity +1208.5716 Dynamical Systems +1208.6549 Complex Variables +1209.2704 Instrumentation and Methods for Astrophysics +1209.3317 Quantum Gases +1209.3816 Statistical Mechanics +1209.3830 Quantum Gases +1209.4174 Functional Analysis +1209.5779 Optimization and Control +1209.6255 Materials Science +1209.6314 Mesoscale and Nanoscale Physics +1210.0480 Probability +1210.1398 Strongly Correlated Electrons +1210.2717 Cosmology and Nongalactic Astrophysics +1210.3136 +1210.3348 Materials Science +1210.4218 +1210.5763 Theory +1210.7241 Mesoscale and Nanoscale Physics +1210.8430 +1211.0094 Chemical Physics +1211.1735 Strongly Correlated Electrons +1211.2006 Statistical Mechanics +1211.2016 Cosmology and Nongalactic Astrophysics +1211.2992 Accelerator Physics +1211.4708 Phenomenology +1211.5205 Mesoscale and Nanoscale Physics +1211.5300 Cosmology and Nongalactic Astrophysics +1211.6110 Cosmology and Nongalactic Astrophysics +1212.0009 Cosmology and Nongalactic Astrophysics +1212.0162 Soft Condensed Matter +1212.0927 Computation and Language +1212.0983 Operator Algebras +1212.1410 Algebraic Geometry +1212.1656 Phenomenology +1212.2377 Geophysics +1212.3947 +1212.4066 Phenomenology +1212.4107 Disordered Systems and Neural Networks +1212.4259 Optics +1212.5087 Strongly Correlated Electrons +1212.6129 Mesoscale and Nanoscale Physics +1212.6301 Geometric Topology +1301.0955 Data Structures and Algorithms +1301.1021 General Physics +1301.1112 High Energy Astrophysical Phenomena +1301.1523 High Energy Astrophysical Phenomena +1301.1931 Chemical Physics +1301.2060 Physics and Society +1301.4088 Representation Theory +1301.4138 Materials Science +1301.4177 Information Theory +1301.4990 General Physics +1301.6310 Atomic Physics +1301.6436 Superconductivity +1302.0115 Statistics Theory +1302.0395 Tissues and Organs +1302.0723 Learning +1302.0799 Algebraic Geometry +1302.0835 +1302.0837 High Energy Astrophysical Phenomena +1302.0838 Plasma Physics +1302.0839 General Physics +1302.0842 Astrophysics of Galaxies +1302.0854 Theory +1302.0860 +1302.0862 History and Philosophy of Physics +1302.0864 +1302.0869 High Energy Astrophysical Phenomena +1302.0870 Machine Learning +1302.0874 Lattice +1302.0878 High Energy Astrophysical Phenomena +1302.0881 Classical Analysis and ODEs +1302.0882 +1302.0886 Optics +1302.0892 Data Structures and Algorithms +1302.0895 Machine Learning +1302.0899 Strongly Correlated Electrons +1302.0902 Probability +1302.0905 Lattice +1302.0908 Optimization and Control +1302.0917 Number Theory +1302.0925 Analysis of PDEs +1302.0926 Applications +1302.0930 Algebraic Geometry +1302.0931 Group Theory +1302.0933 Group Theory +1302.0935 Optimization and Control +1302.0936 Probability +1302.0937 Numerical Analysis +1302.0938 Optimization and Control +1302.0939 Cryptography and Security +1302.0940 Analysis of PDEs +1302.0944 Differential Geometry +1302.0946 Dynamical Systems +1302.0952 Information Theory +1302.0956 Probability +1302.0961 Fluid Dynamics +1302.0962 Neural and Evolutionary Computing +1302.0963 Learning +1302.0965 Networking and Internet Architecture +1302.0966 Soft Condensed Matter +1302.0967 Mesoscale and Nanoscale Physics +1302.0968 Probability +1302.0972 Geometric Topology +1302.0973 Computational Complexity +1302.0974 Learning +1302.0975 Logic in Computer Science +1302.0976 Statistical Mechanics +1302.0977 Methodology +1302.0978 +1302.0982 Group Theory +1302.0986 Other Condensed Matter +1302.0988 Analysis of PDEs +1302.0991 Classical Analysis and ODEs +1302.0992 Statistical Mechanics +1302.0993 Mesoscale and Nanoscale Physics +1302.0994 Other Condensed Matter +1302.0995 Optics +1302.0997 Superconductivity +1302.1001 Accelerator Physics +1302.1002 +1302.1005 Other Computer Science +1302.1007 Computer Vision and Pattern Recognition +1302.1008 Information Theory +1302.1010 Other Computer Science +1302.1011 +1302.1012 Commutative Algebra +1302.1017 Probability +1302.1019 Numerical Analysis +1302.1020 Information Theory +1302.1021 Symplectic Geometry +1302.1022 Superconductivity +1302.1026 Statistics Theory +1302.1027 Optics +1302.1028 Analysis of PDEs +1302.1032 Optics +1302.1033 Dynamical Systems +1302.1036 Optics +1302.1037 Numerical Analysis +1302.1044 Phenomenology +1302.1047 Methodology +1302.1048 Solar and Stellar Astrophysics +1302.1051 +1302.1053 Analysis of PDEs +1302.1057 Mesoscale and Nanoscale Physics +1302.1058 Rings and Algebras +1302.1067 Soft Condensed Matter +1302.1077 Strongly Correlated Electrons +1302.1078 Performance +1302.1082 Quantum Gases +1302.1084 General Physics +1302.1085 +1302.1086 General Physics +1302.1087 Mesoscale and Nanoscale Physics +1302.1089 Computational Geometry +1302.1090 Classical Analysis and ODEs +1302.1093 Theory +1302.1095 Computation +1302.1096 Number Theory +1302.1104 Algebraic Geometry +1302.1105 Digital Libraries +1302.1109 Computational Complexity +1302.1111 Cryptography and Security +1302.1116 Exactly Solvable and Integrable Systems +1302.1123 Computation and Language +1302.1128 Optimization and Control +1302.1129 Methodology +1302.1131 Networking and Internet Architecture +1302.1133 Differential Geometry +1302.1134 Cryptography and Security +1302.1140 Mesoscale and Nanoscale Physics +1302.1142 Analysis of PDEs +1302.1147 Analysis of PDEs +1302.1153 Software Engineering +1302.1155 Artificial Intelligence +1302.1158 Statistics Theory +1302.1163 Number Theory +1302.1166 Dynamical Systems +1302.1167 History and Overview +1302.1170 Formal Languages and Automata Theory +1302.1174 Metric Geometry +1302.1176 Combinatorics +1302.1178 Information Retrieval +1302.1181 Biological Physics +1302.1183 Geophysics +1302.1184 Numerical Analysis +1302.1190 +1302.1194 +astro-ph/0312114 +astro-ph/0703785 +gr-qc/9903041 +math/0512452 Complex Variables +0710.3575 Optics +0803.3750 Probability +0805.1027 Functional Analysis +0807.3090 Phenomenology +0906.2766 Geometric Topology +0907.4945 Functional Analysis +0908.3188 Statistical Mechanics +0911.2734 Mesoscale and Nanoscale Physics +1003.4932 Logic +1004.3714 Information Theory +1009.4160 Analysis of PDEs +1009.4828 Discrete Mathematics +1010.0590 Metric Geometry +1012.2682 Algebraic Geometry +1101.2601 Analysis of PDEs +1101.4209 Dynamical Systems +1109.0896 Quantum Gases +1109.5086 Probability +1109.5398 Combinatorics +1110.1921 Geometric Topology +1110.2856 Dynamical Systems +1110.5200 +1111.0545 Algebraic Geometry +1111.3942 Materials Science +1111.5446 Mesoscale and Nanoscale Physics +1112.3467 Statistical Mechanics +1201.4408 Logic +1203.1533 Superconductivity +1203.5207 Logic +1204.0850 +1204.3934 Statistical Mechanics +1204.4524 +1204.6254 Algebraic Geometry +1204.6738 +1205.0496 Quantum Gases +1205.4550 +1205.4698 Learning +1205.5782 Strongly Correlated Electrons +1206.1497 Pattern Formation and Solitons +1206.2381 Phenomenology +1206.2724 Commutative Algebra +1206.3017 +1206.3345 Atmospheric and Oceanic Physics +1206.3833 Applications +1206.4553 +1207.0466 Rings and Algebras +1207.1644 +1207.2004 Optics +1207.2880 Mesoscale and Nanoscale Physics +1207.3957 Strongly Correlated Electrons +1207.5776 Cosmology and Nongalactic Astrophysics +1207.7174 +1208.1061 Atmospheric and Oceanic Physics +1208.1271 Number Theory +1208.1466 Mesoscale and Nanoscale Physics +1208.3271 Algebraic Geometry +1209.0628 Number Theory +1209.1356 +1209.1534 Analysis of PDEs +1209.2117 Cosmology and Nongalactic Astrophysics +1209.2232 Mesoscale and Nanoscale Physics +1209.3125 Analysis of PDEs +1209.3450 Dynamical Systems +1209.4534 Optics +1209.4570 Cosmology and Nongalactic Astrophysics +1209.5641 Quantum Gases +1209.6054 Phenomenology +1210.2506 Software Engineering +1210.2547 Phenomenology +1210.2735 Mesoscale and Nanoscale Physics +1210.3461 Cosmology and Nongalactic Astrophysics +1210.3617 +1210.4273 +1210.4326 Classical Analysis and ODEs +1210.6708 Theory +1211.1072 Mesoscale and Nanoscale Physics +1211.1195 Strongly Correlated Electrons +1211.1486 Optics +1211.1853 Soft Condensed Matter +1211.2321 Statistical Mechanics +1211.3008 General Physics +1211.3471 Strongly Correlated Electrons +1211.4910 +1211.5295 Phenomenology +1211.5302 +1211.6430 Mesoscale and Nanoscale Physics +1212.0469 Human-Computer Interaction +1212.0776 Cosmology and Nongalactic Astrophysics +1212.0902 +1212.1786 +1212.2387 Quantum Gases +1212.5460 High Energy Astrophysical Phenomena +1212.6067 Group Theory +1301.1397 Superconductivity +1301.5079 Quantum Algebra +1301.6296 Combinatorics +1302.0439 Computer Vision and Pattern Recognition +1302.0586 Dynamical Systems +1302.0603 Mesoscale and Nanoscale Physics +1302.0664 +1302.0722 Phenomenology +1302.0813 Optimization and Control +1302.1185 Cryptography and Security +1302.1243 Mesoscale and Nanoscale Physics +1302.1366 Cosmology and Nongalactic Astrophysics +1302.1385 Mesoscale and Nanoscale Physics +1302.1402 Discrete Mathematics +1302.1413 Algebraic Geometry +1302.1493 Networking and Internet Architecture +1302.1519 Learning +1302.1520 Artificial Intelligence +1302.1521 Artificial Intelligence +1302.1522 Artificial Intelligence +1302.1523 Artificial Intelligence +1302.1524 Artificial Intelligence +1302.1525 Artificial Intelligence +1302.1526 Artificial Intelligence +1302.1527 Artificial Intelligence +1302.1529 Artificial Intelligence +1302.1530 Artificial Intelligence +1302.1531 Artificial Intelligence +1302.1532 Artificial Intelligence +1302.1533 Artificial Intelligence +1302.1534 Artificial Intelligence +1302.1535 Artificial Intelligence +1302.1536 Artificial Intelligence +1302.1537 Artificial Intelligence +1302.1538 Artificial Intelligence +1302.1539 Computer Vision and Pattern Recognition +1302.1540 Artificial Intelligence +1302.1541 Artificial Intelligence +1302.1542 Artificial Intelligence +1302.1543 Artificial Intelligence +1302.1544 Artificial Intelligence +1302.1545 Learning +1302.1546 Artificial Intelligence +1302.1547 Artificial Intelligence +1302.1548 Artificial Intelligence +1302.1549 Artificial Intelligence +1302.1550 Artificial Intelligence +1302.1551 Artificial Intelligence +1302.1552 Learning +1302.1553 Artificial Intelligence +1302.1554 Artificial Intelligence +1302.1555 Artificial Intelligence +1302.1556 Artificial Intelligence +1302.1557 Artificial Intelligence +1302.1558 Artificial Intelligence +1302.1559 Robotics +1302.1560 Artificial Intelligence +1302.1562 Artificial Intelligence +1302.1563 Artificial Intelligence +1302.1564 Artificial Intelligence +1302.1565 Artificial Intelligence +1302.1566 Methodology +1302.1567 Artificial Intelligence +1302.1568 Computer Science and Game Theory +1302.1569 Artificial Intelligence +1302.1570 Artificial Intelligence +1302.1571 Methodology +1302.1572 Computation and Language +1302.1573 Artificial Intelligence +1302.1574 Artificial Intelligence +1302.1575 Artificial Intelligence +1302.1591 Software Engineering +1302.1595 Solar and Stellar Astrophysics +1302.1599 Combinatorics +1302.1603 Analysis of PDEs +1302.1612 Information Retrieval +1302.1615 Biological Physics +1302.1616 Optimization and Control +1302.1618 Geometric Topology +1302.1623 Instrumentation and Methods for Astrophysics +1302.1624 +1302.1625 Cryptography and Security +1302.1627 Differential Geometry +1302.1635 +1302.1638 Databases +1302.1641 Biological Physics +1302.1642 Networking and Internet Architecture +1302.1643 Commutative Algebra +1302.1649 Human-Computer Interaction +1302.1650 Analysis of PDEs +1302.1653 +1302.1654 Classical Analysis and ODEs +1302.1658 Statistics Theory +1302.1668 Materials Science +1302.1669 Computer Science and Game Theory +1302.1670 Probability +1302.1671 Optics +1302.1672 Representation Theory +1302.1674 Statistics Theory +1302.1675 Soft Condensed Matter +1302.1676 Networking and Internet Architecture +1302.1677 Analysis of PDEs +1302.1685 +1302.1687 Combinatorics +1302.1690 Computer Vision and Pattern Recognition +1302.1693 High Energy Astrophysical Phenomena +1302.1695 Complex Variables +1302.1697 Networking and Internet Architecture +1302.1698 +1302.1699 Probability +1302.1702 High Energy Astrophysical Phenomena +1302.1703 Algebraic Geometry +1302.1704 Space Physics +1302.1706 Superconductivity +1302.1708 Materials Science +1302.1710 +1302.1712 Geometric Topology +1302.1716 Analysis of PDEs +1302.1721 Instrumentation and Methods for Astrophysics +1302.1727 Social and Information Networks +1302.1728 Operator Algebras +1302.1729 Category Theory +1302.1730 Representation Theory +1302.1733 Quantitative Methods +1302.1736 Functional Analysis +1302.1737 Logic in Computer Science +1302.1738 Functional Analysis +1302.1747 Operating Systems +1302.1750 +1302.1751 Group Theory +1302.1753 Atomic Physics +1302.1756 Networking and Internet Architecture +1302.1759 Optimization and Control +1302.1762 +1302.1772 Learning +1302.1776 Optics +1302.1782 Algebraic Topology +1302.1784 Materials Science +1302.1789 Computer Vision and Pattern Recognition +1302.1794 Optimization and Control +1302.1795 Analysis of PDEs +1302.1798 Functional Analysis +1302.1804 Astrophysics of Galaxies +1302.1808 Probability +1302.1810 +1302.1813 Differential Geometry +1302.1823 +1302.1828 Statistical Mechanics +1302.1829 Mesoscale and Nanoscale Physics +1302.1830 +1302.1837 Information Theory +1302.1839 Algebraic Topology +1302.1843 Mesoscale and Nanoscale Physics +1302.1844 +1302.1845 +1302.1863 Phenomenology +math/0406213 Differential Geometry +physics/0006052 General Physics +0710.4218 +0711.0591 Analysis of PDEs +0712.1781 Analysis of PDEs +0804.0563 Analysis of PDEs +0805.0638 Materials Science +0809.0522 Physics and Society +0911.4433 Number Theory +1002.4640 Functional Analysis +1011.6676 Number Theory +1012.2234 Earth and Planetary Astrophysics +1102.3573 +1106.3316 Mesoscale and Nanoscale Physics +1106.4957 Statistical Finance +1108.0013 Networking and Internet Architecture +1108.0338 Algebraic Geometry +1108.5605 Symplectic Geometry +1109.4623 Artificial Intelligence +1111.2897 Combinatorics +1111.5683 +1111.6100 Rings and Algebras +1111.6797 Category Theory +1112.1050 Differential Geometry +1201.2440 Quantum Gases +1204.0222 Number Theory +1205.1421 Analysis of PDEs +1205.5336 +1205.5523 Algebraic Geometry +1206.1530 Computational Complexity +1206.2543 Experiment +1206.6635 Probability +1207.4072 +1207.5766 Number Theory +1208.1434 Number Theory +1209.0654 Computer Vision and Pattern Recognition +1209.1046 Phenomenology +1209.1429 Representation Theory +1209.5323 Earth and Planetary Astrophysics +1210.2811 Chaotic Dynamics +1210.3134 Strongly Correlated Electrons +1210.3555 Neurons and Cognition +1210.3815 Mesoscale and Nanoscale Physics +1211.2704 Quantum Gases +1211.3182 Optics +1211.4075 Phenomenology +1211.6477 Mesoscale and Nanoscale Physics +1211.6780 Dynamical Systems +1212.1138 +1212.1186 Cryptography and Security +1212.1923 Cosmology and Nongalactic Astrophysics +1301.2539 Functional Analysis +1301.2570 +1301.2668 Superconductivity +1301.4815 Theory +1301.6002 Phenomenology +1301.6275 Mesoscale and Nanoscale Physics +1302.2262 +1302.5301 Number Theory +1303.0032 Soft Condensed Matter +1303.0364 Analysis of PDEs +1303.0436 +1303.2226 Materials Science +1303.2228 Materials Science +1303.2732 Popular Physics +1303.5779 Cosmology and Nongalactic Astrophysics +1304.1184 Phenomenology +1304.3655 Phenomenology +1304.6374 +1304.6700 Phenomenology +1304.8119 Materials Science +1305.1816 +1305.3839 Soft Condensed Matter +1305.3902 Quantitative Methods +1305.4606 Statistical Mechanics +1305.5097 Quantum Gases +1305.6102 Atomic Physics +1305.6391 Phenomenology +1306.0423 Disordered Systems and Neural Networks +1306.0604 Learning +1306.0739 Earth and Planetary Astrophysics +1306.4113 Phenomenology +1306.5181 Atomic Physics +1307.1866 +1307.1912 Phenomenology +1307.2138 Superconductivity +1307.2854 Quantum Gases +1307.2870 Strongly Correlated Electrons +1307.3800 Optics +1307.4096 Mesoscale and Nanoscale Physics +1307.4506 Mesoscale and Nanoscale Physics +1307.4656 Biomolecules +1307.5496 Solar and Stellar Astrophysics +1307.6150 Cosmology and Nongalactic Astrophysics +1307.8080 Physics and Society +1308.0900 Machine Learning +1308.2381 Phenomenology +1308.5320 Classical Analysis and ODEs +1308.5711 Earth and Planetary Astrophysics +1308.6106 +1308.6324 Learning +1309.0817 Cosmology and Nongalactic Astrophysics +1309.0851 +1309.1181 Optics +1309.1376 Mesoscale and Nanoscale Physics +1309.2294 Solar and Stellar Astrophysics +1309.2770 Soft Condensed Matter +1309.3297 Combinatorics +1309.5102 Strongly Correlated Electrons +1309.5177 Materials Science +1309.5200 Materials Science +1309.6665 Instrumentation and Methods for Astrophysics +1309.7901 Information Theory +1310.0691 Mesoscale and Nanoscale Physics +1310.1604 Instrumentation and Methods for Astrophysics +1310.2107 Solar and Stellar Astrophysics +1310.2392 Statistical Mechanics +1310.2782 Algebraic Geometry +1310.2863 +1310.4529 Instrumentation and Detectors +1310.5064 +1310.5125 Networking and Internet Architecture +1310.5602 Phenomenology +1310.6934 Neurons and Cognition +1310.7054 Instrumentation and Detectors +1310.7397 Distributed, Parallel, and Cluster Computing +1310.7623 Number Theory +1310.7783 Materials Science +1310.7950 Systems and Control +1310.7951 Multiagent Systems +1310.7955 Populations and Evolution +1310.7957 Information Retrieval +1310.7961 Neural and Evolutionary Computing +1310.7962 Other Computer Science +1310.7964 Combinatorics +1310.7968 Geometric Topology +1310.7980 Number Theory +1310.7981 Neurons and Cognition +1310.7983 Popular Physics +1310.7984 Commutative Algebra +1310.7986 Analysis of PDEs +1310.7987 Earth and Planetary Astrophysics +1310.7988 Earth and Planetary Astrophysics +1310.7994 Learning +1310.7995 Probability +1310.7996 Mesoscale and Nanoscale Physics +1310.7999 Theory +1310.8004 Learning +1310.8005 Algebraic Geometry +1310.8018 Strongly Correlated Electrons +1310.8019 Plasma Physics +1310.8021 Probability +1310.8022 Lattice +1310.8025 Number Theory +1310.8027 Differential Geometry +1310.8036 Dynamical Systems +1310.8039 Materials Science +1310.8040 Social and Information Networks +1310.8044 Mesoscale and Nanoscale Physics +1310.8052 Materials Science +1310.8053 +1310.8054 Algebraic Geometry +1310.8058 Representation Theory +1310.8059 Computation and Language +1310.8060 Differential Geometry +1310.8063 Cryptography and Security +1310.8066 Materials Science +1310.8068 +1310.8071 Number Theory +1310.8073 Phenomenology +1310.8074 Analysis of PDEs +1310.8076 High Energy Astrophysical Phenomena +1310.8084 Numerical Analysis +1310.8085 Superconductivity +1310.8092 Statistics Theory +1310.8098 Instrumentation and Detectors +1310.8100 Rings and Algebras +1310.8102 Metric Geometry +1310.8106 Solar and Stellar Astrophysics +1310.8108 Combinatorics +1310.8109 Theory +1310.8110 Statistics Theory +1310.8111 Software Engineering +1310.8113 Chemical Physics +1310.8115 Human-Computer Interaction +1310.8120 Artificial Intelligence +1310.8122 Dynamical Systems +1310.8123 Statistics Theory +1310.8125 Networking and Internet Architecture +1310.8138 General Mathematics +1310.8139 Neurons and Cognition +1310.8143 Quantum Algebra +1310.8146 Optimization and Control +1310.8151 Algebraic Geometry +1310.8158 Applications +1310.8159 Accelerator Physics +1310.8160 Superconductivity +1310.8164 Theory +1310.8166 Lattice +1310.8172 Materials Science +1310.8183 Experiment +1310.8184 Theory +1310.8186 Discrete Mathematics +1310.8187 Networking and Internet Architecture +1310.8189 Strongly Correlated Electrons +1310.8192 Computation +1310.8199 +1310.8202 Lattice +1310.8204 Computers and Society +1310.8206 Lattice +1310.8209 Analysis of PDEs +1310.8212 Analysis of PDEs +1310.8221 +1310.8228 +1310.8230 High Energy Astrophysical Phenomena +1310.8231 Lattice +1310.8232 Distributed, Parallel, and Cluster Computing +1310.8234 +1310.8236 Applications +1310.8242 Instrumentation and Detectors +1310.8243 Learning +1310.8245 Computer Science and Game Theory +1310.8248 Numerical Analysis +1310.8255 Theory +1310.8256 Functional Analysis +1310.8258 Networking and Internet Architecture +1310.8259 Chemical Physics +1310.8260 Algebraic Geometry +1310.8262 Fluid Dynamics +1310.8269 +1310.8277 General Mathematics +1310.8278 Logic in Computer Science +1310.8280 Algebraic Topology +1310.8283 Strongly Correlated Electrons +1310.8292 General Mathematics +cond-mat/0205384 +cond-mat/0302490 +math/0605769 Analysis of PDEs +math/0611313 Analysis of PDEs +math/0612198 Analysis of PDEs +0812.0340 Computer Vision and Pattern Recognition +1002.3698 Chemical Physics +1003.4805 +1102.0673 Statistics Theory +1102.4511 Analysis of PDEs +1104.0018 +1105.5131 Computational Complexity +1109.0643 +1110.3110 Differential Geometry +1111.0495 Optimization and Control +1112.1391 Populations and Evolution +1201.3205 General Physics +1202.5258 Computational Complexity +1203.3162 Algebraic Geometry +1203.5146 +1206.0868 Optics +1206.2028 Superconductivity +1208.0514 Mesoscale and Nanoscale Physics +1208.1284 Mesoscale and Nanoscale Physics +1208.4473 +1209.4142 Populations and Evolution +1209.4382 Mesoscale and Nanoscale Physics +1209.4650 Statistical Mechanics +1210.3481 Superconductivity +1210.3916 Fluid Dynamics +1210.5077 Algebraic Geometry +1211.2093 Quantum Gases +1211.2338 Cryptography and Security +1211.4699 Optics +1211.5209 Logic +1212.0661 Quantitative Methods +1212.2334 Networking and Internet Architecture +1212.3601 Optics +1212.4786 Quantitative Methods +1212.5009 Phenomenology +1301.0737 Representation Theory +1301.3660 Materials Science +1301.5299 Combinatorics +1301.6633 +1301.6925 Materials Science +1301.7329 Strongly Correlated Electrons +1302.0419 Numerical Analysis +1302.0801 Representation Theory +1302.2424 High Energy Astrophysical Phenomena +1302.3095 General Mathematics +1302.4968 Artificial Intelligence +1303.0726 Data Structures and Algorithms +1303.1467 Artificial Intelligence +1303.1852 Materials Science +1303.5307 General Physics +1303.5451 Cosmology and Nongalactic Astrophysics +1303.6860 Superconductivity +1304.0626 Statistical Mechanics +1304.0762 Theory +1304.1193 Phenomenology +1304.1427 Instrumentation and Methods for Astrophysics +1304.1811 Cosmology and Nongalactic Astrophysics +1304.1943 Statistical Mechanics +1304.4039 Materials Science +1304.4155 Mesoscale and Nanoscale Physics +1304.6355 +1304.7147 Numerical Analysis +1304.7565 Quantum Gases +1305.0492 Probability +1305.2506 Theory +1305.3030 +1305.6223 Optics +1305.6481 Mesoscale and Nanoscale Physics +1305.6760 Genomics +1305.6816 Statistical Mechanics +1305.7391 Phenomenology +1306.3208 Cosmology and Nongalactic Astrophysics +1306.3553 +1307.1753 Statistical Mechanics +1307.3587 Combinatorics +1307.4500 Physics and Society +1307.4703 Fluid Dynamics +1307.6529 Theory +1308.0368 Quantum Algebra +1308.0492 High Energy Astrophysical Phenomena +1308.1040 Superconductivity +1308.1271 Subcellular Processes +1308.1572 Number Theory +1308.1601 Mesoscale and Nanoscale Physics +1308.1666 Solar and Stellar Astrophysics +1308.1733 Computers and Society +1308.1866 Optics +1308.1948 +1308.1949 Geophysics +1308.1961 Quantum Gases +1308.1963 Networking and Internet Architecture +1308.1965 Optics +1308.1966 Plasma Physics +1308.1971 Data Structures and Algorithms +1308.1976 Group Theory +1308.1978 Formal Languages and Automata Theory +1308.1985 Genomics +1308.1986 Computational Geometry +1308.1994 Experiment +1308.1996 High Energy Astrophysical Phenomena +1308.2001 Materials Science +1308.2003 Networking and Internet Architecture +1308.2006 Cosmology and Nongalactic Astrophysics +1308.2007 Genomics +1308.2012 Genomics +1308.2013 Information Theory +1308.2018 Probability +1308.2024 Cosmology and Nongalactic Astrophysics +1308.2026 Classical Analysis and ODEs +1308.2027 Information Theory +1308.2035 Operator Algebras +1308.2039 Chaotic Dynamics +1308.2043 Complex Variables +1308.2049 Strongly Correlated Electrons +1308.2050 Materials Science +1308.2057 Materials Science +1308.2058 Distributed, Parallel, and Cluster Computing +1308.2059 High Energy Astrophysical Phenomena +1308.2060 Dynamical Systems +1308.2064 Materials Science +1308.2066 Distributed, Parallel, and Cluster Computing +1308.2069 Information Theory +1308.2072 Materials Science +1308.2079 +1308.2081 Soft Condensed Matter +1308.2086 High Energy Astrophysical Phenomena +1308.2091 Number Theory +1308.2096 Combinatorics +1308.2098 High Energy Astrophysical Phenomena +1308.2101 Discrete Mathematics +1308.2107 Other Quantitative Biology +1308.2108 Combinatorics +1308.2115 Number Theory +1308.2119 Artificial Intelligence +1308.2121 Mesoscale and Nanoscale Physics +1308.2123 Tissues and Organs +1308.2124 Artificial Intelligence +1308.2127 Differential Geometry +1308.2135 Populations and Evolution +1308.2143 Phenomenology +1308.2145 Molecular Networks +1308.2147 Databases +1308.2154 Probability +1308.2160 Combinatorics +1308.2163 Combinatorics +1308.2164 +1308.2166 Databases +1308.2172 Pricing of Securities +1308.2176 Combinatorics +1308.2177 Theory +1308.2184 Solar and Stellar Astrophysics +1308.2185 +1308.2188 Discrete Mathematics +1308.2190 Populations and Evolution +1308.2195 Physics and Society +1308.2196 Other Computer Science +1308.2197 Strongly Correlated Electrons +1308.2198 Differential Geometry +1308.2200 Superconductivity +1308.2207 Atomic Physics +1308.2210 Phenomenology +1308.2212 +1308.2214 Functional Analysis +1308.2218 Learning +nucl-ex/0410027 +0710.3510 +0903.4836 Differential Geometry +0907.5473 Operator Algebras +0908.0752 +0910.1319 Operator Algebras +0912.5417 +1002.0368 +1003.1970 Theory +1004.2648 Information Theory +1004.4007 +1005.3900 Operator Algebras +1005.4210 Complex Variables +1008.0177 Representation Theory +1008.3677 Combinatorics +1009.0707 Statistical Mechanics +1009.1510 Probability +1011.4849 Astrophysics of Galaxies +1012.0770 Soft Condensed Matter +1012.4730 +1101.2875 Combinatorics +1102.5620 Probability +1103.1709 Probability +1104.0914 Probability +1104.2382 Complex Variables +1104.3526 Soft Condensed Matter +1104.4224 Strongly Correlated Electrons +1105.3344 Probability +1105.3802 Representation Theory +1106.3910 Statistical Mechanics +1107.0233 Probability +1107.2069 Soft Condensed Matter +1107.2990 Distributed, Parallel, and Cluster Computing +1107.3874 Probability +1107.5849 +1108.0296 Theory +1108.3048 Data Structures and Algorithms +1108.5142 Statistical Mechanics +1108.5286 K-Theory and Homology +1109.0610 Mesoscale and Nanoscale Physics +1109.6643 Data Structures and Algorithms +1110.1669 +1111.4988 Number Theory +1111.6833 Statistical Mechanics +1111.6921 Space Physics +1112.1079 Statistical Mechanics +1112.2043 Materials Science +1112.4397 Materials Science +1201.1727 Chaotic Dynamics +1201.2040 Quantum Algebra +1201.4127 Space Physics +1201.5387 Solar and Stellar Astrophysics +1201.5922 Theory +1202.1012 Logic +1202.4267 Probability +1202.4756 Phenomenology +1203.0661 Chaotic Dynamics +1203.0771 Statistical Mechanics +1203.1237 Representation Theory +1203.6596 Space Physics +1204.0923 Functional Analysis +1204.1257 +1204.2620 Optics +1205.1488 Category Theory +1206.0577 Theory +1206.6750 Combinatorics +1207.0060 Space Physics +1207.2872 Dynamical Systems +1207.6850 Combinatorics +1208.0677 +1209.0047 Information Theory +1209.1374 Geometric Topology +1210.7608 Trading and Market Microstructure +1210.8322 Representation Theory +1211.0215 +1211.1915 Disordered Systems and Neural Networks +1212.2007 +1212.3437 Experiment +1212.5233 +1212.6757 Statistics Theory +1301.0717 Theory +1301.1813 Differential Geometry +1301.3168 Astrophysics of Galaxies +1301.5731 Materials Science +1301.5888 Superconductivity +1302.4498 Combinatorics +1302.4905 Instrumentation and Detectors +1302.5908 Strongly Correlated Electrons +1303.1535 +1303.3409 Cosmology and Nongalactic Astrophysics +1303.4927 +1304.0667 Representation Theory +1304.1549 +1304.5887 Strongly Correlated Electrons +1305.0458 Physics and Society +1305.3157 Theory +1305.3187 Disordered Systems and Neural Networks +1305.3268 Computational Complexity +1305.3602 General Physics +1305.4362 Phenomenology +1305.4467 +1305.4665 Mesoscale and Nanoscale Physics +1305.5214 Spectral Theory +1305.5487 Quantum Gases +1305.5895 +1305.6428 Algebraic Geometry +1305.6480 +1306.0398 Quantum Gases +1306.0452 Phenomenology +1306.0656 Numerical Analysis +1306.1539 +1306.2155 Strongly Correlated Electrons +1306.2279 +1306.2307 High Energy Astrophysical Phenomena +1306.2389 Dynamical Systems +1306.3155 Phenomenology +1306.3469 Group Theory +1306.3621 Theory +1306.4097 Optics +1306.5110 Populations and Evolution +1306.5530 Software Engineering +1306.5535 Software Engineering +1306.6128 Chaotic Dynamics +1306.6825 Phenomenology +1306.6925 +1307.0984 Materials Science +1307.2059 Phenomenology +1307.2539 +1307.3347 Strongly Correlated Electrons +1307.3567 Quantum Algebra +1307.3594 Mesoscale and Nanoscale Physics +1307.4711 Phenomenology +1307.4969 Theory +1307.5505 Algebraic Geometry +1307.6385 Probability +1307.6573 Dynamical Systems +1307.6668 Phenomenology +1307.6697 Representation Theory +1307.6861 Phenomenology +1307.7100 Phenomenology +1307.7457 Experiment +1307.7614 Theory +1307.7728 Mesoscale and Nanoscale Physics +1308.0605 Theory +1308.0606 Theory +1308.1100 Disordered Systems and Neural Networks +1308.1781 Metric Geometry +1308.1960 Theory +1308.2417 Statistical Mechanics +1308.3175 Lattice +1308.3371 Experiment +1308.3393 Cosmology and Nongalactic Astrophysics +1308.3527 Chaotic Dynamics +1308.4342 Populations and Evolution +1308.4552 +1308.5012 Mesoscale and Nanoscale Physics +1308.5668 Neurons and Cognition +1308.6101 Statistical Mechanics +1308.6349 Quantum Gases +1309.0258 Quantum Gases +1309.0298 Materials Science +1309.0774 Phenomenology +1309.1034 Statistical Mechanics +1309.1485 Software Engineering +1309.2203 Phenomenology +1309.4240 Materials Science +1309.4382 +1309.4905 Strongly Correlated Electrons +1309.5063 +1309.5926 Astrophysics of Galaxies +1309.6237 Materials Science +1309.6322 Astrophysics of Galaxies +1309.6595 Superconductivity +1310.0036 Computer Vision and Pattern Recognition +1310.1040 Strongly Correlated Electrons +1310.1081 Phenomenology +1310.1176 Phenomenology +1310.1822 Information Theory +1310.1917 Phenomenology +1310.1935 +1310.2120 Instrumentation and Methods for Astrophysics +1310.3028 Theory +1310.4080 Strongly Correlated Electrons +1310.4316 Probability +1310.5112 +1310.5336 Methodology +1310.6309 Cosmology and Nongalactic Astrophysics +1310.6748 Astrophysics of Galaxies +1310.7889 Astrophysics of Galaxies +1311.0492 Superconductivity +1311.0603 Discrete Mathematics +1311.1492 +1311.1526 Fluid Dynamics +1311.2876 Analysis of PDEs +1311.3586 Neurons and Cognition +1311.4404 History and Overview +1311.4811 +1311.4835 +1311.4841 Number Theory +1311.5598 +1311.6671 Computational Complexity +1311.6750 Earth and Planetary Astrophysics +1311.6861 Mesoscale and Nanoscale Physics +1311.6983 History and Overview +1311.7017 Phenomenology +1311.7071 Artificial Intelligence +1311.7158 Optics +1311.7287 Chaotic Dynamics +1311.7426 Group Theory +1312.0029 High Energy Astrophysical Phenomena +1312.0128 Pricing of Securities +1312.0139 Optimization and Control +1312.0367 Superconductivity +1312.0488 Lattice +1312.0587 Metric Geometry +1312.0594 Applications +1312.0596 Software Engineering +1312.0601 Theory +1312.0603 Astrophysics of Galaxies +1312.0617 Emerging Technologies +1312.0629 Networking and Internet Architecture +1312.0638 Computers and Society +1312.0649 Social and Information Networks +1312.0650 Social and Information Networks +1312.0651 Commutative Algebra +1312.0652 Methodology +1312.0654 Analysis of PDEs +1312.0655 Cryptography and Security +1312.0656 Mesoscale and Nanoscale Physics +1312.0658 Programming Languages +1312.0669 Dynamical Systems +1312.0670 Logic +1312.0677 Software Engineering +1312.0681 Chemical Physics +1312.0683 Materials Science +1312.0685 Information Theory +1312.0693 Combinatorics +1312.0696 Number Theory +1312.0697 Logic +1312.0698 Classical Analysis and ODEs +1312.0700 Information Theory +1312.0704 Earth and Planetary Astrophysics +1312.0713 Software Engineering +1312.0714 Logic in Computer Science +1312.0715 Theory +1312.0720 Networking and Internet Architecture +1312.0727 Complex Variables +1312.0728 Systems and Control +1312.0732 Combinatorics +1312.0735 Artificial Intelligence +1312.0736 Artificial Intelligence +1312.0737 Materials Science +1312.0738 +1312.0742 Distributed, Parallel, and Cluster Computing +1312.0747 Differential Geometry +1312.0750 Artificial Intelligence +1312.0756 Strongly Correlated Electrons +1312.0759 Dynamical Systems +1312.0760 Computer Vision and Pattern Recognition +1312.0768 Software Engineering +1312.0771 Materials Science +1312.0772 Combinatorics +1312.0781 Computation +1312.0783 Differential Geometry +1312.0789 Commutative Algebra +1312.0791 Lattice +1312.0792 Metric Geometry +1312.0796 Mesoscale and Nanoscale Physics +1312.0801 Computers and Society +1312.0804 Computers and Society +1312.0809 Computers and Society +1312.0816 Computational Physics +1312.0818 Probability +1312.0819 Mesoscale and Nanoscale Physics +1312.0822 Soft Condensed Matter +1312.0824 Representation Theory +1312.0828 Lattice +1312.0833 Classical Analysis and ODEs +1312.0836 Statistics Theory +1312.0837 Phenomenology +1312.0838 Quantum Algebra +1312.0841 Artificial Intelligence +1312.0844 Disordered Systems and Neural Networks +1312.0846 +1312.0849 Differential Geometry +1312.0858 Commutative Algebra +1312.0859 Methodology +1312.0860 Social and Information Networks +1312.0864 Strongly Correlated Electrons +1312.0867 Biomolecules +1312.0874 Phenomenology +1312.0876 Probability +1312.0877 Commutative Algebra +1312.0882 Information Theory +1312.0883 Networking and Internet Architecture +1312.0884 Computational Geometry +1312.0888 +1312.0890 Materials Science +1312.0892 Biological Physics +1312.0895 Theory +1312.0899 Materials Science +1312.0903 Combinatorics +1312.0906 Methodology +1312.0911 Algebraic Geometry +1312.0912 Social and Information Networks +1312.0916 General Physics +1312.0926 Algebraic Topology +1312.0929 Dynamical Systems +1312.0930 Number Theory +math/0404080 Probability +physics/9904018 General Physics +0805.2900 Probability +0805.3943 Materials Science +0812.0800 Probability +0812.3939 Algebraic Geometry +0902.4305 Classical Analysis and ODEs +0904.0951 Methodology +0906.1417 Probability +0906.1823 Superconductivity +0907.1020 Optimization and Control +0907.1424 Materials Science +0907.2456 Materials Science +0910.5431 Probability +1001.5445 Theory +1002.4478 Probability +1003.5072 Probability +1004.2327 Operator Algebras +1004.3456 Probability +1005.0098 Number Theory +1008.4367 High Energy Astrophysical Phenomena +1009.4386 Networking and Internet Architecture +1010.4864 Number Theory +1011.3275 Superconductivity +1103.3240 Artificial Intelligence +1107.4511 Number Theory +1107.5610 Quantum Algebra +1108.0762 High Energy Astrophysical Phenomena +1108.3260 Artificial Intelligence +1108.4870 Strongly Correlated Electrons +1108.6032 Statistics Theory +1109.1869 Optics +1109.6787 Combinatorics +1110.0286 Number Theory +1111.0391 +1112.0560 Category Theory +1112.1127 Analysis of PDEs +1112.4400 Discrete Mathematics +1203.0829 Phenomenology +1204.1276 Machine Learning +1204.3070 Statistics Theory +1205.0209 +1205.0260 Number Theory +1205.1551 Analysis of PDEs +1205.1780 Functional Analysis +1205.4427 Strongly Correlated Electrons +1207.7131 Quantum Gases +1208.3179 Number Theory +1208.3220 Chemical Physics +1208.4059 Lattice +1208.5978 Combinatorics +1208.6424 Representation Theory +1209.1099 Astrophysics of Galaxies +1209.1407 Phenomenology +1209.5045 Data Structures and Algorithms +1209.5650 Phenomenology +1210.0494 Rings and Algebras +1210.1152 Dynamical Systems +1210.2490 Number Theory +1210.2516 Plasma Physics +1210.4696 +1210.8049 Geometric Topology +1211.0209 Strongly Correlated Electrons +1211.0246 Combinatorics +1211.0796 Statistical Mechanics +1211.1225 +1211.3275 Materials Science +1211.6959 Strongly Correlated Electrons +1212.1072 Analysis of PDEs +1212.1527 Learning +1212.3268 Computer Vision and Pattern Recognition +1212.3623 +1212.3796 Strongly Correlated Electrons +1212.4372 Computational Complexity +1212.5821 +1301.2549 Analysis of PDEs +1301.2555 Instrumentation and Methods for Astrophysics +1301.2557 High Energy Astrophysical Phenomena +1301.3573 Mesoscale and Nanoscale Physics +1301.4389 Phenomenology +1301.6412 Information Theory +1301.6847 Computer Vision and Pattern Recognition +1301.7524 +1302.0923 Algebraic Topology +1302.1731 Analysis of PDEs +1302.2595 Materials Science +1302.3706 +1302.5131 Optimization and Control +1302.5543 Plasma Physics +1302.5574 Statistical Mechanics +1302.6901 Quantum Gases +1302.6946 Category Theory +1303.0135 Functional Analysis +1303.1263 Complex Variables +1303.3273 +1303.5893 Theory +1303.6608 Phenomenology +1304.0066 Disordered Systems and Neural Networks +1304.3052 Number Theory +1304.3761 +1304.4234 High Energy Astrophysical Phenomena +1304.4483 Plasma Physics +1304.5674 Neurons and Cognition +1305.1095 Analysis of PDEs +1305.1292 Analysis of PDEs +1305.2640 +1305.3651 Cosmology and Nongalactic Astrophysics +1305.3987 High Energy Astrophysical Phenomena +1305.5522 Artificial Intelligence +1305.5554 Disordered Systems and Neural Networks +1305.6013 Atomic Physics +1305.7292 Theory +1305.7398 +1305.7462 Algebraic Geometry +1306.4885 Cosmology and Nongalactic Astrophysics +1306.6533 Physics and Society +1307.0034 +1307.0295 Soft Condensed Matter +1307.0476 Phenomenology +1307.1087 Mesoscale and Nanoscale Physics +1307.1707 Strongly Correlated Electrons +1307.1843 Phenomenology +1307.4241 Atomic and Molecular Clusters +1307.4622 Phenomenology +1307.5964 Physics and Society +1307.6474 +1307.8231 Quantum Gases +1308.0694 Superconductivity +1308.1582 Theory +1308.3438 Social and Information Networks +1308.3572 Materials Science +1308.4201 Information Theory +1308.4556 Plasma Physics +1308.4727 Astrophysics of Galaxies +1308.5128 Combinatorics +1308.5894 Cosmology and Nongalactic Astrophysics +1308.6247 Plasma Physics +1309.1981 Data Structures and Algorithms +1309.2163 Combinatorics +1309.2564 High Energy Astrophysical Phenomena +1309.3681 Strongly Correlated Electrons +1309.3721 Portfolio Management +1309.4170 Instrumentation and Detectors +1309.4275 Cryptography and Security +1309.4408 Artificial Intelligence +1309.4413 Graphics +1309.4444 +1309.4445 Theory +1309.4448 Instrumentation and Methods for Astrophysics +1309.4463 High Energy Astrophysical Phenomena +1309.4473 Strongly Correlated Electrons +1309.4474 History and Philosophy of Physics +1309.4475 Spectral Theory +1309.4479 Phenomenology +1309.4481 Combinatorics +1309.4482 Optics +1309.4495 Solar and Stellar Astrophysics +1309.4496 Computers and Society +1309.4499 Cryptography and Security +1309.4501 Artificial Intelligence +1309.4503 Materials Science +1309.4504 Networking and Internet Architecture +1309.4505 Analysis of PDEs +1309.4507 Distributed, Parallel, and Cluster Computing +1309.4508 Human-Computer Interaction +1309.4510 Representation Theory +1309.4511 Networking and Internet Architecture +1309.4512 Probability +1309.4514 Group Theory +1309.4515 +1309.4516 Functional Analysis +1309.4518 Combinatorics +1309.4519 Group Theory +1309.4520 Combinatorics +1309.4521 Combinatorics +1309.4522 +1309.4524 Materials Science +1309.4529 +1309.4531 Information Theory +1309.4532 +1309.4535 Statistical Mechanics +1309.4537 Lattice +1309.4540 Materials Science +1309.4541 Experiment +1309.4542 Combinatorics +1309.4545 Robotics +1309.4546 Probability +1309.4550 Robotics +1309.4553 +1309.4554 Optics +1309.4555 Chaotic Dynamics +1309.4557 Programming Languages +1309.4568 Classical Analysis and ODEs +1309.4569 Materials Science +1309.4572 Group Theory +1309.4573 Computer Vision and Pattern Recognition +1309.4577 Computer Vision and Pattern Recognition +1309.4579 Analysis of PDEs +1309.4581 High Energy Astrophysical Phenomena +1309.4582 Computer Vision and Pattern Recognition +1309.4585 Classical Analysis and ODEs +1309.4587 Physics and Society +1309.4589 Populations and Evolution +1309.4594 Spectral Theory +1309.4595 Analysis of PDEs +1309.4600 Analysis of PDEs +1309.4602 Data Structures and Algorithms +1309.4604 Solar and Stellar Astrophysics +1309.4605 Analysis of PDEs +1309.4606 Analysis of PDEs +1309.4607 +1309.4608 Number Theory +1309.4610 Lattice +1309.4613 Statistical Mechanics +1309.4615 Statistical Mechanics +1309.4617 Solar and Stellar Astrophysics +1309.4626 Mesoscale and Nanoscale Physics +1309.4628 Computation and Language +1309.4630 Cosmology and Nongalactic Astrophysics +1309.4637 Algebraic Topology +1309.4639 Solar and Stellar Astrophysics +1309.4640 Combinatorics +1309.4641 Superconductivity +1309.4644 Plasma Physics +1309.4645 Software Engineering +1309.4646 Instrumentation and Methods for Astrophysics +1309.4647 History and Philosophy of Physics +1309.4651 Information Theory +1309.4653 Mesoscale and Nanoscale Physics +1309.4654 Accelerator Physics +1309.4658 Accelerator Physics +1309.4660 Space Physics +1309.4661 Biomolecules +1309.4663 Accelerator Physics +1309.4668 Accelerator Physics +1309.4670 Classical Analysis and ODEs +1309.4671 Theory +1309.4675 Materials Science +1309.4678 +1309.4680 Theory +1309.4682 Optics +1309.4688 Phenomenology +1309.4689 Rings and Algebras +1309.4691 Analysis of PDEs +1309.4692 Neurons and Cognition +1309.4699 Atmospheric and Oceanic Physics +1309.4707 Superconductivity +1309.4710 Representation Theory +1309.4712 Populations and Evolution +1309.4713 Data Structures and Algorithms +1309.4714 Artificial Intelligence +1309.4716 Superconductivity +1309.4730 Dynamical Systems +1309.4734 Numerical Analysis +1309.4741 Combinatorics +1309.4744 Neurons and Cognition +1309.4749 Solar and Stellar Astrophysics +1309.4752 +1309.4753 Dynamical Systems +1309.4761 Genomics +math/0503123 Probability +math/0504136 Analysis of PDEs +math/0505536 Probability +math/0511752 Probability +quant-ph/0702153 +0710.2405 Dynamical Systems +0907.2541 Pricing of Securities +0911.4852 +1002.0519 Metric Geometry +1002.0675 Probability +1002.1618 Algebraic Geometry +1004.0415 Metric Geometry +1006.3868 Statistics Theory +1006.5520 Combinatorics +1009.5583 Materials Science +1011.1001 Metric Geometry +1012.2798 Probability +1012.2799 Probability +1102.1151 Mesoscale and Nanoscale Physics +1102.1432 Number Theory +1103.2968 Combinatorics +1104.0943 Number Theory +1105.5493 Quantum Gases +1107.0545 Group Theory +1107.2080 Cellular Automata and Lattice Gases +1108.4585 Physics and Society +1108.4934 Group Theory +1109.0373 Probability +1109.2932 Algebraic Geometry +1109.3006 Number Theory +1110.4183 Materials Science +1111.2378 Dynamical Systems +1111.7126 History and Philosophy of Physics +1112.0737 Superconductivity +1112.0825 +1112.3680 Computer Science and Game Theory +1112.6000 Networking and Internet Architecture +1201.0454 Materials Science +1201.1510 +1201.2374 Computational Complexity +1201.4470 +1201.4948 Algebraic Geometry +1201.5168 Combinatorics +1203.2389 Quantum Gases +1203.2541 Number Theory +1204.2483 +1204.5128 Strongly Correlated Electrons +1204.6635 Phenomenology +1205.0204 Dynamical Systems +1205.2079 Group Theory +1205.3360 Disordered Systems and Neural Networks +1205.3638 Mesoscale and Nanoscale Physics +1205.6209 Superconductivity +1206.0051 Databases +1206.0156 Probability +1206.1456 Symbolic Computation +1206.2227 Probability +1206.6176 Optics +1207.6679 Cosmology and Nongalactic Astrophysics +1207.6689 Phenomenology +1208.0706 Strongly Correlated Electrons +1208.2427 Group Theory +1208.4317 +1209.0564 Phenomenology +1209.0709 Superconductivity +1209.1267 Materials Science +1209.1486 Theory +1209.1689 Mesoscale and Nanoscale Physics +1209.1791 Pricing of Securities +1209.2486 Applications +1209.2851 Statistical Mechanics +1209.3506 Atomic Physics +1209.4730 Mesoscale and Nanoscale Physics +1210.0333 Computation +1210.2095 Theory +1210.2874 Mesoscale and Nanoscale Physics +1210.4590 Disordered Systems and Neural Networks +1210.4794 Algebraic Geometry +1210.5586 Cosmology and Nongalactic Astrophysics +1210.6105 Mesoscale and Nanoscale Physics +1210.7698 Phenomenology +1210.8435 Phenomenology +1211.0797 Lattice +1211.0855 Optics +1211.1038 General Physics +1211.1953 Geometric Topology +1211.3290 Soft Condensed Matter +1211.3911 +1211.5109 +1211.5587 Theory +1211.6905 High Energy Astrophysical Phenomena +1211.7220 Atomic Physics +1212.0635 Lattice +1212.0826 Geometric Topology +1212.1221 Phenomenology +1212.1852 Probability +1212.4399 +1212.4485 Strongly Correlated Electrons +1212.6896 Theory +1301.3255 Cosmology and Nongalactic Astrophysics +1302.0388 Probability +1302.0391 +1302.0578 Strongly Correlated Electrons +1302.1293 +1302.1848 Digital Libraries +1302.3109 Formal Languages and Automata Theory +1302.3930 +1302.4510 Cryptography and Security +1302.4549 Learning +1302.4659 Applications +1302.4722 Functional Analysis +1302.4755 Information Theory +1302.4757 Functional Analysis +1302.4761 Optimization and Control +1302.4765 Social and Information Networks +1302.4766 Commutative Algebra +1302.4767 Information Theory +1302.4774 Multiagent Systems +1302.4777 Mesoscale and Nanoscale Physics +1302.4778 Algebraic Geometry +1302.4779 Distributed, Parallel, and Cluster Computing +1302.4780 Software Engineering +1302.4784 Multimedia +1302.4785 Information Theory +1302.4789 Computational Physics +1302.4791 Strongly Correlated Electrons +1302.4796 Programming Languages +1302.4798 Software Engineering +1302.4805 Information Theory +1302.4811 Computation and Language +1302.4813 Computation and Language +1302.4814 Computation and Language +1302.4817 Analysis of PDEs +1302.4818 Complex Variables +1302.4819 +1302.4820 +1302.4821 Materials Science +1302.4824 Numerical Analysis +1302.4825 Group Theory +1302.4827 Superconductivity +1302.4831 +1302.4838 Atomic Physics +1302.4840 Information Theory +1302.4845 Algebraic Geometry +1302.4847 High Energy Astrophysical Phenomena +1302.4852 Phenomenology +1302.4858 Optimization and Control +1302.4859 Probability +1302.4861 Mesoscale and Nanoscale Physics +1302.4864 Digital Libraries +1302.4866 +1302.4869 Materials Science +1302.4870 Discrete Mathematics +1302.4873 Algebraic Geometry +1302.4874 Computation and Language +1302.4876 High Energy Astrophysical Phenomena +1302.4881 Methodology +1302.4882 Cryptography and Security +1302.4892 Phenomenology +1302.4896 Superconductivity +1302.4902 Complex Variables +1302.4906 Differential Geometry +1302.4907 Methodology +1302.4912 Cosmology and Nongalactic Astrophysics +1302.4916 Information Retrieval +1302.4918 Mesoscale and Nanoscale Physics +1302.4921 Number Theory +1302.4928 Artificial Intelligence +1302.4929 Artificial Intelligence +1302.4930 Artificial Intelligence +1302.4931 Artificial Intelligence +1302.4932 Artificial Intelligence +1302.4933 Artificial Intelligence +1302.4934 Artificial Intelligence +1302.4935 Artificial Intelligence +1302.4936 Artificial Intelligence +1302.4937 Artificial Intelligence +1302.4938 Artificial Intelligence +1302.4939 Artificial Intelligence +1302.4940 Artificial Intelligence +1302.4941 Artificial Intelligence +1302.4942 Artificial Intelligence +1302.4943 Artificial Intelligence +1302.4944 Artificial Intelligence +1302.4945 Artificial Intelligence +1302.4946 Artificial Intelligence +1302.4947 Artificial Intelligence +1302.4948 Artificial Intelligence +1302.4949 Artificial Intelligence +1302.4950 Artificial Intelligence +1302.4951 Artificial Intelligence +1302.4952 Artificial Intelligence +1302.4953 Artificial Intelligence +1302.4954 Artificial Intelligence +1302.4955 Artificial Intelligence +1302.4957 Artificial Intelligence +1302.4959 Artificial Intelligence +1302.4960 Artificial Intelligence +1302.4961 Artificial Intelligence +1302.4962 Artificial Intelligence +1302.4963 Artificial Intelligence +1302.4964 Learning +1302.4966 Artificial Intelligence +1302.4967 Artificial Intelligence +1302.4969 Artificial Intelligence +1302.4970 Artificial Intelligence +1302.4971 Artificial Intelligence +1302.4972 Artificial Intelligence +1302.4973 Artificial Intelligence +1302.4974 Artificial Intelligence +1302.4975 Artificial Intelligence +1302.4976 Artificial Intelligence +1302.4977 Artificial Intelligence +1302.4978 Artificial Intelligence +1302.4979 Artificial Intelligence +1302.4980 Artificial Intelligence +1302.4981 Artificial Intelligence +1302.4982 Artificial Intelligence +1302.4983 Artificial Intelligence +1302.4984 Artificial Intelligence +1302.4985 Artificial Intelligence +1302.4986 Artificial Intelligence +1302.4987 Artificial Intelligence +1302.4988 Artificial Intelligence +1302.4989 Artificial Intelligence +1302.4990 Artificial Intelligence +1302.4991 Artificial Intelligence +1302.4992 Artificial Intelligence +1302.4993 Artificial Intelligence +1302.4997 Statistical Mechanics +1302.4999 Analysis of PDEs +1302.5000 +1302.5009 Statistical Mechanics +1302.5012 +1302.5015 Algebraic Geometry +1302.5020 Combinatorics +1302.5025 Soft Condensed Matter +1302.5031 Phenomenology +1302.5032 Number Theory +1302.5035 Atomic Physics +1302.5037 High Energy Astrophysical Phenomena +1302.5038 Combinatorics +1302.5039 Information Theory +1302.5042 Instrumentation and Methods for Astrophysics +1302.5046 General Physics +1302.5051 Mesoscale and Nanoscale Physics +1302.5053 Functional Analysis +1302.5055 Neurons and Cognition +1302.5056 Computer Vision and Pattern Recognition +1302.5058 Experiment +1302.5060 Theory +1302.5062 Cryptography and Security +1302.5063 Analysis of PDEs +1302.5064 Statistical Mechanics +1302.5066 General Physics +1302.5072 Numerical Analysis +1302.5075 Differential Geometry +1302.5082 Robotics +1302.5083 Quantum Gases +1302.5085 Robotics +1302.5091 +1302.5095 Probability +1302.5097 Materials Science +1302.5100 Mesoscale and Nanoscale Physics +1302.5102 Numerical Analysis +1302.5104 Populations and Evolution +cs/0005015 Computation and Language +hep-th/0510040 Theory +0704.0275 Metric Geometry +0711.0674 Category Theory +0801.0751 Rings and Algebras +0806.0607 Number Theory +0806.1750 Rings and Algebras +0810.0611 Theory +0812.3709 Information Theory +0902.1095 +0910.5181 Rings and Algebras +0910.5183 Rings and Algebras +1001.1391 Rings and Algebras +1001.2927 Symplectic Geometry +1004.2177 Analysis of PDEs +1004.5226 Analysis of PDEs +1005.2104 Analysis of PDEs +1006.0431 +1006.5596 Combinatorics +1007.3952 Operator Algebras +1008.2386 Information Theory +1009.5505 Atomic Physics +1012.5029 Atomic Physics +1102.5056 +1103.1339 Rings and Algebras +1104.3173 Rings and Algebras +1104.3827 Group Theory +1106.4702 +1108.0233 Analysis of PDEs +1108.0958 Category Theory +1108.1827 Atomic Physics +1108.2520 Rings and Algebras +1108.4641 Chemical Physics +1108.4802 Biological Physics +1109.1139 Quantum Gases +1110.1199 Rings and Algebras +1111.3054 Statistics Theory +1111.6087 Distributed, Parallel, and Cluster Computing +1112.2405 Analysis of PDEs +1112.2751 Probability +1112.4702 Algebraic Topology +1202.1372 Systems and Control +1202.6435 Mesoscale and Nanoscale Physics +1203.5809 Probability +1205.4508 Probability +1205.5473 Statistics Theory +1206.6072 Chemical Physics +1207.2386 Statistics Theory +1207.4819 Statistics Theory +1207.5847 Physics and Society +1207.5849 Physics and Society +1207.5983 Probability +1208.0749 +1208.2588 Optimization and Control +1208.2818 Superconductivity +1208.3252 Physics and Society +1208.4721 Mathematical Software +1208.5796 Combinatorics +1209.4004 Biological Physics +1209.4618 Phenomenology +1209.6013 Formal Languages and Automata Theory +1210.2447 Analysis of PDEs +1210.4194 Experiment +1210.4227 Materials Science +1210.6852 Phenomenology +1211.0598 Probability +1211.0987 Dynamical Systems +1211.1155 Strongly Correlated Electrons +1211.1275 Machine Learning +1211.1645 Statistical Mechanics +1211.4217 +1211.6809 Probability +1212.1797 Phenomenology +1212.4173 Quantum Gases +1212.5290 Chemical Physics +1212.5567 Physics and Society +1212.5763 Mesoscale and Nanoscale Physics +1212.6012 Strongly Correlated Electrons +1301.1666 Soft Condensed Matter +1301.2828 Probability +1301.3025 Statistical Mechanics +1301.6648 Information Theory +1302.4122 +1302.4900 +1302.5240 +1303.1548 Pattern Formation and Solitons +1303.1556 +1303.1772 Statistical Mechanics +1303.1775 Mesoscale and Nanoscale Physics +1303.1835 +1303.3316 Mesoscale and Nanoscale Physics +1303.4129 +1303.4446 Chemical Physics +1303.5474 Mesoscale and Nanoscale Physics +1304.3940 Human-Computer Interaction +1304.5749 Number Theory +1304.7321 General Mathematics +1305.0579 Classical Analysis and ODEs +1305.0849 Chemical Physics +1305.1288 Physics and Society +1305.1364 Materials Science +1305.1589 Mesoscale and Nanoscale Physics +1305.1631 Cosmology and Nongalactic Astrophysics +1305.1925 Human-Computer Interaction +1305.1929 Theory +1305.1930 +1305.1936 Phenomenology +1305.1946 Artificial Intelligence +1305.1958 Artificial Intelligence +1305.1959 High Energy Astrophysical Phenomena +1305.1960 Differential Geometry +1305.1961 Artificial Intelligence +1305.1962 Combinatorics +1305.1966 Classical Analysis and ODEs +1305.1972 Quantum Gases +1305.1973 Phenomenology +1305.1980 Physics and Society +1305.1982 Complex Variables +1305.1983 Complex Variables +1305.1988 Atomic Physics +1305.1991 Artificial Intelligence +1305.1992 Software Engineering +1305.1994 Analysis of PDEs +1305.1998 Machine Learning +1305.2003 Soft Condensed Matter +1305.2010 General Topology +1305.2015 Combinatorics +1305.2017 Combinatorics +1305.2018 Quantum Gases +1305.2022 +1305.2024 Superconductivity +1305.2028 Number Theory +1305.2031 Analysis of PDEs +1305.2035 Instrumentation and Detectors +1305.2036 Dynamical Systems +1305.2038 Machine Learning +1305.2043 Probability +1305.2045 Superconductivity +1305.2055 +1305.2059 Combinatorics +1305.2061 Populations and Evolution +1305.2064 Dynamical Systems +1305.2067 Solar and Stellar Astrophysics +1305.2073 Statistics Theory +1305.2075 Statistics Theory +1305.2078 Combinatorics +1305.2087 +1305.2089 Strongly Correlated Electrons +1305.2099 Solar and Stellar Astrophysics +1305.2100 +1305.2107 Statistical Mechanics +1305.2108 Data Structures and Algorithms +1305.2111 Materials Science +1305.2115 Rings and Algebras +1305.2116 Combinatorics +1305.2120 Geometric Topology +1305.2122 Theory +1305.2127 Materials Science +1305.2136 Cryptography and Security +1305.2139 Phenomenology +1305.2140 Cosmology and Nongalactic Astrophysics +1305.2147 Spectral Theory +1305.2153 Probability +1305.2154 Combinatorics +1305.2155 Logic +1305.2158 Geophysics +1305.2170 Geophysics +1305.2173 Information Theory +1305.2174 Number Theory +1305.2177 +1305.2180 Mesoscale and Nanoscale Physics +1305.2185 Analysis of PDEs +1305.2190 Networking and Internet Architecture +math/0003009 Algebraic Geometry +math/0606407 Rings and Algebras +0807.1640 +0808.3544 Number Theory +0901.0929 Combinatorics +0906.2262 Metric Geometry +1101.3402 Superconductivity +1102.0647 Metric Geometry +1108.4875 Superconductivity +1109.1078 Combinatorics +1109.2034 Neural and Evolutionary Computing +1110.4700 Statistics Theory +1202.5337 Combinatorics +1203.1561 Fluid Dynamics +1204.1684 +1204.3062 +1204.5192 Combinatorics +1204.6322 Earth and Planetary Astrophysics +1205.4356 Combinatorics +1205.4888 Analysis of PDEs +1205.6431 Disordered Systems and Neural Networks +1206.1816 Superconductivity +1207.1872 Information Theory +1207.2296 Methodology +1207.3611 Quantum Algebra +1207.3829 Spectral Theory +1207.6137 Information Theory +1208.1578 Differential Geometry +1208.3487 +1208.3816 K-Theory and Homology +1208.3973 Superconductivity +1208.4049 +1208.4245 Accelerator Physics +1208.4821 Quantum Algebra +1209.2949 Strongly Correlated Electrons +1210.3589 Commutative Algebra +1210.4142 +1210.7321 Theory +1211.0857 Materials Science +1211.5256 Logic in Computer Science +1211.5259 Logic in Computer Science +1212.0147 +1212.1881 Data Structures and Algorithms +1212.2031 Mesoscale and Nanoscale Physics +1212.2429 Superconductivity +1212.4460 +1212.5524 Systems and Control +1301.0264 Machine Learning +1301.0811 +1301.3229 Geometric Topology +1301.7681 Strongly Correlated Electrons +1302.2301 +1302.2471 +1302.3687 Cosmology and Nongalactic Astrophysics +1302.4210 Number Theory +1302.4247 +1302.4574 Biomolecules +1303.0080 Quantum Gases +1303.1088 Algebraic Geometry +1303.1271 Learning +1303.3833 Phenomenology +1303.4608 Statistical Mechanics +1303.4678 Cosmology and Nongalactic Astrophysics +1303.5138 Superconductivity +1303.5514 +1303.6270 Phenomenology +1303.6292 Lattice +1304.0939 K-Theory and Homology +1304.2322 +1304.4301 Mesoscale and Nanoscale Physics +1305.2196 Mesoscale and Nanoscale Physics +1305.3756 +1305.4520 Optics +1306.0425 Statistical Mechanics +1306.1395 Plasma Physics +1306.2299 +1306.2412 Soft Condensed Matter +1306.2723 Mesoscale and Nanoscale Physics +1306.3454 Probability +1306.3863 +1306.3871 +1306.4252 +1306.4538 Instrumentation and Detectors +1307.0030 Soft Condensed Matter +1307.1306 Materials Science +1307.2295 Information Theory +1307.4062 Software Engineering +1307.5079 Phenomenology +1307.5778 Materials Science +1307.6284 Phenomenology +1307.7375 Information Theory +1307.7454 Data Structures and Algorithms +1308.0022 Symplectic Geometry +1308.0088 Phenomenology +1308.0686 Networking and Internet Architecture +1308.1328 Subcellular Processes +1308.2055 Programming Languages +1308.2409 Computational Complexity +1308.3761 Rings and Algebras +1308.4214 Machine Learning +1308.4267 Instrumentation and Methods for Astrophysics +1308.4272 +1308.4313 +1308.4391 Distributed, Parallel, and Cluster Computing +1308.4677 +1308.4678 History and Overview +1308.4686 Phenomenology +1308.4690 Applications +1308.4695 Probability +1308.4696 Materials Science +1308.4701 General Physics +1308.4702 Soft Condensed Matter +1308.4703 Solar and Stellar Astrophysics +1308.4706 Neurons and Cognition +1308.4707 Neurons and Cognition +1308.4715 Combinatorics +1308.4716 Combinatorics +1308.4718 Functional Analysis +1308.4719 Accelerator Physics +1308.4721 General Topology +1308.4726 Instrumentation and Methods for Astrophysics +1308.4733 Logic +1308.4735 Analysis of PDEs +1308.4737 Plasma Physics +1308.4738 Quantum Algebra +1308.4741 Strongly Correlated Electrons +1308.4743 Rings and Algebras +1308.4744 Operator Algebras +1308.4746 Strongly Correlated Electrons +1308.4749 Soft Condensed Matter +1308.4750 Experiment +1308.4751 Networking and Internet Architecture +1308.4758 Molecular Networks +1308.4761 Artificial Intelligence +1308.4762 +1308.4767 Logic in Computer Science +1308.4768 General Physics +1308.4784 Mesoscale and Nanoscale Physics +1308.4786 Systems and Control +1308.4787 Optimization and Control +1308.4792 Materials Science +1308.4793 Combinatorics +1308.4795 Mesoscale and Nanoscale Physics +1308.4801 Computational Engineering, Finance, and Science +1308.4807 Populations and Evolution +1308.4809 Information Theory +1308.4816 Networking and Internet Architecture +1308.4821 Atmospheric and Oceanic Physics +1308.4822 Rings and Algebras +1308.4828 Learning +1308.4832 +1308.4839 Information Retrieval +1308.4846 Artificial Intelligence +1308.4849 Instrumentation and Methods for Astrophysics +1308.4862 Computers and Society +1308.4864 +1308.4865 Pattern Formation and Solitons +1308.4868 Accelerator Physics +1308.4869 Popular Physics +1308.4871 Computation +1308.4872 +1308.4875 Theory +1308.4878 High Energy Astrophysical Phenomena +1308.4885 High Energy Astrophysical Phenomena +1308.4888 Algebraic Geometry +1308.4889 Chemical Physics +1308.4894 Other Computer Science +1308.4895 Cryptography and Security +1308.4897 Analysis of PDEs +1308.4898 Optics +1308.4903 Pattern Formation and Solitons +1308.4904 Systems and Control +1308.4905 Analysis of PDEs +1308.4907 General Physics +1308.4908 Computer Vision and Pattern Recognition +1308.4910 Materials Science +1308.4912 High Energy Astrophysical Phenomena +1308.4914 Theory +1308.4916 Lattice +1308.4921 Operator Algebras +1308.4923 Theory +1308.4924 Chemical Physics +1308.4927 Number Theory +1308.4928 Representation Theory +1308.4931 +1308.4934 Group Theory +1308.4938 Analysis of PDEs +1308.4944 Probability +1308.4949 Combinatorics +1308.4951 Populations and Evolution +1308.4954 Instrumentation and Methods for Astrophysics +1308.4965 Human-Computer Interaction +1308.4967 Probability +1308.4969 Physics and Society +0802.4295 Numerical Analysis +0805.0245 General Mathematics +0910.1283 Disordered Systems and Neural Networks +0910.5863 Numerical Analysis +0911.1245 Numerical Analysis +0912.3312 Commutative Algebra +1001.4312 Representation Theory +1002.4928 +1003.1377 Data Analysis, Statistics and Probability +1004.1493 Cosmology and Nongalactic Astrophysics +1005.5336 Functional Analysis +1010.5838 Operator Algebras +1012.1477 Algebraic Geometry +1101.1775 Numerical Analysis +1101.2018 Computational Complexity +1102.1311 Algebraic Topology +1102.3825 Optics +1103.0321 Mesoscale and Nanoscale Physics +1104.1265 Group Theory +1105.1864 Cosmology and Nongalactic Astrophysics +1105.5104 Differential Geometry +1106.1005 Theory +1106.3297 +1106.5421 Optimization and Control +1108.2552 +1109.2958 Functional Analysis +1111.3546 Dynamical Systems +1111.5983 Algebraic Geometry +1112.5842 +1112.6028 Statistical Mechanics +1112.6125 Group Theory +1201.3548 Metric Geometry +1202.5665 Systems and Control +1202.5810 Commutative Algebra +1203.2746 Differential Geometry +1204.0972 Analysis of PDEs +1204.2010 Classical Analysis and ODEs +1204.3927 Analysis of PDEs +1205.1732 Algebraic Geometry +1205.4778 Networking and Internet Architecture +1205.4875 Information Theory +1205.5422 Materials Science +1205.7089 Quantum Algebra +1206.0444 +1206.4882 Representation Theory +1207.3404 Complex Variables +1207.7136 Classical Physics +1208.2847 Combinatorics +1208.4045 Geometric Topology +1208.6151 Differential Geometry +1209.1325 Differential Geometry +1209.3942 Quantum Gases +1209.6093 Phenomenology +1209.6465 Analysis of PDEs +1210.0741 Number Theory +1210.0802 +1210.2029 Statistics Theory +1210.2840 Quantum Algebra +1210.3859 Cosmology and Nongalactic Astrophysics +1210.5817 Optics +1210.7581 Operator Algebras +1210.7988 +1210.8290 Optimization and Control +1211.1089 Probability +1211.2923 Combinatorics +1211.3266 Operator Algebras +1211.3804 +1211.4644 Strongly Correlated Electrons +1211.4996 Pattern Formation and Solitons +1211.5405 Information Theory +1211.6451 Methodology +1211.7354 Probability +1212.0702 Theory +1212.1458 Cosmology and Nongalactic Astrophysics +1212.2336 Representation Theory +1212.2354 +1212.4733 Biomolecules +1212.5398 Algebraic Topology +1212.6128 Theory +1212.6231 Materials Science +1212.6505 Representation Theory +1301.0191 Numerical Analysis +1301.0353 Optics +1301.0791 Dynamical Systems +1301.2639 Mesoscale and Nanoscale Physics +1301.2827 Fluid Dynamics +1301.6109 Optics +1302.2373 Methodology +1302.3174 +1302.3500 Group Theory +1302.3543 Statistics Theory +1302.4834 Mesoscale and Nanoscale Physics +1302.5216 Quantum Algebra +1302.6375 Classical Analysis and ODEs +1303.0209 Superconductivity +1303.0998 Statistical Mechanics +1303.1004 Statistical Mechanics +1303.1323 Representation Theory +1303.3040 Phenomenology +1303.3070 Quantum Algebra +1303.3311 Quantum Algebra +1303.3729 Differential Geometry +1303.4128 Information Theory +1303.4798 Optics +1303.5457 Optimization and Control +1303.5900 Experiment +1303.6746 Machine Learning +1303.7306 Mesoscale and Nanoscale Physics +1304.0119 Disordered Systems and Neural Networks +1304.2168 Lattice +1304.3139 Computational Complexity +1304.4672 Machine Learning +1304.5921 Spectral Theory +1304.6238 Mesoscale and Nanoscale Physics +1304.6806 Computer Science and Game Theory +1305.0200 Classical Analysis and ODEs +1305.0408 Statistical Mechanics +1305.0810 +1305.3026 Optics +1305.3044 Cosmology and Nongalactic Astrophysics +1305.3811 Materials Science +1305.3998 Optics +1305.4140 Materials Science +1305.4179 Phenomenology +1305.6021 Information Theory +1305.6663 Learning +1305.7389 Experiment +1306.0158 Social and Information Networks +1306.0360 Statistical Mechanics +1306.0917 Cosmology and Nongalactic Astrophysics +1306.1321 Phenomenology +1306.1433 Learning +1306.2142 +1306.2778 Analysis of PDEs +1306.3576 Physics and Society +1306.3855 Computer Vision and Pattern Recognition +1306.5085 Combinatorics +1306.5106 Theory +1306.5673 Materials Science +1306.5689 Spectral Theory +1306.6269 Computer Vision and Pattern Recognition +1306.6610 Quantum Gases +1306.6757 +1306.6884 Chemical Physics +1307.0002 Quantum Gases +1307.0330 Theory +1307.0450 Portfolio Management +1307.1089 Instrumentation and Detectors +1307.3187 Chemical Physics +1307.3794 Computer Science and Game Theory +1307.6186 Statistical Mechanics +1307.7011 Materials Science +1307.7343 Chemical Physics +1307.7354 General Physics +1307.7742 Disordered Systems and Neural Networks +1307.7992 Mesoscale and Nanoscale Physics +1307.8006 Representation Theory +1308.0295 Phenomenology +1308.0655 Quantitative Methods +1308.0665 Computational Finance +1308.1580 Phenomenology +1308.1843 +1308.2670 Cosmology and Nongalactic Astrophysics +1308.2999 Phenomenology +1308.4212 Phenomenology +1308.5205 Atomic Physics +1308.5490 Combinatorics +1308.5613 Statistical Mechanics +1308.5629 Statistical Mechanics +1308.5892 High Energy Astrophysical Phenomena +1308.6559 Probability +1309.0250 Experiment +1309.0953 Dynamical Systems +1309.1816 Theory +1309.3684 Mesoscale and Nanoscale Physics +1309.3789 +1309.4415 Rings and Algebras +1309.4552 Mesoscale and Nanoscale Physics +1309.4580 Theory +1309.4793 Number Theory +1309.5698 Populations and Evolution +1309.5705 Experiment +1309.5739 High Energy Astrophysical Phenomena +1309.7885 Spectral Theory +1309.7972 Phenomenology +1310.0278 Strongly Correlated Electrons +1310.1042 Discrete Mathematics +1310.2083 Spectral Theory +1310.3118 Pattern Formation and Solitons +1310.4209 Chaotic Dynamics +1310.5101 Materials Science +1310.5306 Social and Information Networks +1310.5775 Number Theory +1310.5778 Biomolecules +1310.5988 Software Engineering +1310.6007 Learning +1310.6356 Solar and Stellar Astrophysics +1310.6911 Cosmology and Nongalactic Astrophysics +1310.7411 Mesoscale and Nanoscale Physics +1310.7785 Analysis of PDEs +1310.7809 Algebraic Geometry +1310.8149 General Mathematics +1311.0561 Superconductivity +1311.0986 Experiment +1311.1007 Analysis of PDEs +1311.1289 Number Theory +1311.1392 Functional Analysis +1311.1478 Number Theory +1311.1523 +1311.1565 Information Theory +1311.1576 Analysis of PDEs +1311.1884 Distributed, Parallel, and Cluster Computing +1311.1895 Software Engineering +1311.1907 Distributed, Parallel, and Cluster Computing +1311.1934 Lattice +1311.2070 Instrumentation and Detectors +1311.2078 Phenomenology +1311.2079 Social and Information Networks +1311.2086 Analysis of PDEs +1311.2087 Quantum Gases +1311.2088 Analysis of PDEs +1311.2091 +1311.2096 Experiment +1311.2100 Databases +1311.2102 Computer Vision and Pattern Recognition +1311.2103 Information Retrieval +1311.2105 Methodology +1311.2106 Data Structures and Algorithms +1311.2110 Data Structures and Algorithms +1311.2111 Optimization and Control +1311.2117 Combinatorics +1311.2118 Representation Theory +1311.2119 Materials Science +1311.2121 Spectral Theory +1311.2123 Information Theory +1311.2124 Combinatorics +1311.2125 Quantitative Methods +1311.2127 Analysis of PDEs +1311.2131 Cosmology and Nongalactic Astrophysics +1311.2133 Classical Analysis and ODEs +1311.2134 Networking and Internet Architecture +1311.2137 Learning +1311.2139 Learning +1311.2142 Mesoscale and Nanoscale Physics +1311.2144 Mesoscale and Nanoscale Physics +1311.2150 Information Theory +1311.2154 Number Theory +1311.2156 Atomic Physics +1311.2163 +1311.2164 Mesoscale and Nanoscale Physics +1311.2165 Atmospheric and Oceanic Physics +1311.2169 Biological Physics +1311.2171 Functional Analysis +1311.2172 +1311.2176 Statistical Mechanics +1311.2177 Functional Analysis +1311.2178 Logic +1311.2181 Dynamical Systems +1311.2190 Analysis of PDEs +1311.2193 +1311.2194 Analysis of PDEs +1311.2198 Phenomenology +1311.2200 Neurons and Cognition +1311.2207 Numerical Analysis +1311.2211 Algebraic Geometry +1311.2213 Mesoscale and Nanoscale Physics +1311.2215 +1311.2217 Soft Condensed Matter +1311.2219 Algebraic Topology +1311.2222 Human-Computer Interaction +1311.2225 Logic +1311.2232 Group Theory +1311.2235 History and Overview +1311.2238 Neurons and Cognition +1311.2241 Learning +1311.2248 Experiment +1311.2251 Lattice +1311.2252 Computation and Language +1311.2256 Symplectic Geometry +1311.2258 Experiment +1311.2259 Strongly Correlated Electrons +1311.2263 +1311.2265 Materials Science +1311.2267 Phenomenology +1311.2269 Optics +1311.2270 Functional Analysis +1311.2271 Learning +1311.2276 Learning +1311.2278 Data Analysis, Statistics and Probability +1311.2280 +1311.2283 Dynamical Systems +1311.2284 Algebraic Geometry +1311.2289 +1311.2290 Logic in Computer Science +1311.2291 +1311.2292 Classical Analysis and ODEs +1311.2293 Phenomenology +1311.2294 Combinatorics +1311.2295 Classical Analysis and ODEs +1311.2303 Fluid Dynamics +1311.2307 Analysis of PDEs +1311.2308 Phenomenology +1311.2309 Data Structures and Algorithms +1311.2311 Optimization and Control +1311.2312 Theory +1311.2314 Differential Geometry +1311.2316 +1311.2320 Complex Variables +1311.2321 Information Theory +1311.2327 Symplectic Geometry +1311.2329 Networking and Internet Architecture +1311.2330 General Topology +1311.2332 Algebraic Geometry +1311.2335 Computation +1311.2336 Statistics Theory +1311.2338 Cosmology and Nongalactic Astrophysics +1311.2339 Quantum Algebra +1311.2341 Statistics Theory +1311.2342 Databases +1311.2345 Analysis of PDEs +1311.2346 Information Theory +1311.2347 Phenomenology +1311.2349 Social and Information Networks +1311.2358 Computational Complexity +1311.2361 Functional Analysis +1311.2362 Logic in Computer Science +1311.2364 Networking and Internet Architecture +1311.2366 Medical Physics +1311.2367 Optimization and Control +1311.2378 Learning +1311.2379 +1311.2385 Functional Analysis +1311.2387 Physics and Society +1311.2390 Theory +1311.2392 Theory +1311.2393 Mesoscale and Nanoscale Physics +1311.2401 Phenomenology +1311.2405 Algebraic Geometry +1311.2406 Exactly Solvable and Integrable Systems +1311.2410 Mesoscale and Nanoscale Physics +1311.2411 Solar and Stellar Astrophysics +1311.2412 Software Engineering +1311.2414 Dynamical Systems +1311.2415 Probability +1311.2418 Spectral Theory +1311.2420 Strongly Correlated Electrons +1311.2422 Methodology +1311.2423 Cell Behavior +1311.2425 +1311.2427 Combinatorics +1311.2437 General Topology +1311.2441 Instrumentation and Methods for Astrophysics +1311.2442 Networking and Internet Architecture +1311.2443 Classical Analysis and ODEs +1311.2444 Distributed, Parallel, and Cluster Computing +1311.2445 Statistics Theory +1311.2446 Mesoscale and Nanoscale Physics +1311.2447 Instrumentation and Detectors +1311.2448 Numerical Analysis +1311.2452 Molecular Networks +1311.2454 +1311.2457 High Energy Astrophysical Phenomena +1311.2461 Plasma Physics +1311.2465 Geometric Topology +1311.2468 Cosmology and Nongalactic Astrophysics +1311.2473 Phenomenology +1311.2474 Instrumentation and Detectors +1311.2478 Experiment +1311.2483 Statistics Theory +1311.2484 Fluid Dynamics +1311.2490 +1311.2492 Computer Vision and Pattern Recognition +1311.2496 Cosmology and Nongalactic Astrophysics +1311.2503 Learning +1311.2504 Digital Libraries +1311.2508 Differential Geometry +1311.2515 Differential Geometry +1311.2517 Cryptography and Security +1311.2518 Classical Analysis and ODEs +1311.2527 Number Theory +1311.2535 Software Engineering +1311.2538 Solar and Stellar Astrophysics +1311.2539 +1311.2545 Biological Physics +1311.2546 Numerical Analysis +1311.2551 Social and Information Networks +1311.2554 Molecular Networks +1311.2562 Theory +1311.2566 Algebraic Geometry +1311.2567 Computational Physics +1311.2568 Tissues and Organs +1311.2571 Optimization and Control +1311.2575 Solar and Stellar Astrophysics +1311.2578 Data Structures and Algorithms +gr-qc/0101030 +gr-qc/0105014 +gr-qc/9703083 +gr-qc/9910085 +math/0606320 Numerical Analysis +physics/0411189 Geophysics +0806.0346 Plasma Physics +0812.3313 Physics and Society +0906.5472 Symplectic Geometry +0911.4906 Quantum Gases +0911.4916 Quantum Gases +0912.1276 +0912.3009 Statistical Mechanics +0912.4318 Quantum Gases +0912.4420 Quantum Gases +1007.0310 Number Theory +1007.2773 Statistical Mechanics +1010.2021 +1011.2870 +1012.0870 Mesoscale and Nanoscale Physics +1012.1988 Statistical Mechanics +1101.0797 +1102.3236 Number Theory +1105.0405 Algebraic Topology +1105.1839 Geometric Topology +1105.2052 Theory +1105.5317 Statistical Mechanics +1105.5376 Biological Physics +1106.4062 Geometric Topology +1107.2590 Group Theory +1109.4091 Differential Geometry +1110.0421 Statistical Mechanics +1112.3455 Logic +1112.5640 Computer Vision and Pattern Recognition +1201.0298 +1201.3861 Combinatorics +1202.2882 Probability +1204.6181 Cellular Automata and Lattice Gases +1206.0048 Analysis of PDEs +1206.0264 Phenomenology +1206.2203 Statistical Mechanics +1206.2821 +1206.6648 Optimization and Control +1207.0244 Commutative Algebra +1207.0650 Optics +1207.3204 Lattice +1207.6163 Mesoscale and Nanoscale Physics +1208.0354 Theory +1208.0530 Statistical Mechanics +1208.1065 Computation +1208.2223 Discrete Mathematics +1208.2984 +1208.3046 Group Theory +1208.3429 Complex Variables +1208.6104 Algebraic Geometry +1209.1001 +1209.2773 Algebraic Topology +1209.3891 Phenomenology +1209.4201 +1209.4393 High Energy Astrophysical Phenomena +1209.5109 +1209.5529 Materials Science +1209.6136 Phenomenology +1209.6197 Quantum Gases +1210.0141 Phenomenology +1210.0278 Dynamical Systems +1210.0588 Functional Analysis +1210.1605 Mesoscale and Nanoscale Physics +1210.2072 Strongly Correlated Electrons +1210.3446 +1210.3524 Probability +1210.5035 Optimization and Control +1210.5431 Phenomenology +1210.6935 +1211.1124 Number Theory +1211.2683 +1211.3425 Theory +1211.3953 +1211.4177 Differential Geometry +1211.6523 +1211.6927 Theory +1211.6960 Materials Science +1212.1241 Cell Behavior +1212.4467 Probability +1212.4755 Experiment +1212.5055 Lattice +1301.1251 Representation Theory +1301.4231 Optimization and Control +1301.7201 +1301.7236 Information Theory +1301.7338 Theory +1302.1211 Systems and Control +1302.1422 Computation and Language +1302.4491 Experiment +1302.5576 Phenomenology +1302.6021 Number Theory +1302.6183 Discrete Mathematics +1303.1540 +1303.2483 Disordered Systems and Neural Networks +1303.2520 +1303.2684 Phenomenology +1303.5511 Theory +1303.5644 +1303.6633 Solar and Stellar Astrophysics +1304.3672 Mesoscale and Nanoscale Physics +1304.6638 Earth and Planetary Astrophysics +1304.6784 Materials Science +1304.7185 Discrete Mathematics +1305.0420 Algebraic Topology +1305.2182 Accelerator Physics +1305.2305 +1305.2623 Information Theory +1305.3595 Information Theory +1305.3882 Computation and Language +1305.3910 Soft Condensed Matter +1305.3916 High Energy Astrophysical Phenomena +1305.3923 Theory +1305.3928 Probability +1305.3930 Dynamical Systems +1305.3931 Information Theory +1305.3934 Information Theory +1305.3936 Mesoscale and Nanoscale Physics +1305.3939 Computer Vision and Pattern Recognition +1305.3940 Algebraic Geometry +1305.3944 Computational Complexity +1305.3948 Strongly Correlated Electrons +1305.3952 Cosmology and Nongalactic Astrophysics +1305.3961 Combinatorics +1305.3969 Information Theory +1305.3971 Graphics +1305.3972 Number Theory +1305.3973 Rings and Algebras +1305.3978 Computers and Society +1305.3981 Computation and Language +1305.3983 Optics +1305.3985 Phenomenology +1305.3988 Pricing of Securities +1305.3989 Data Analysis, Statistics and Probability +1305.3991 High Energy Astrophysical Phenomena +1305.3992 +1305.3994 Materials Science +1305.4000 Computer Science and Game Theory +1305.4002 Computer Science and Game Theory +1305.4005 Combinatorics +1305.4008 Information Theory +1305.4012 Probability +1305.4017 Cosmology and Nongalactic Astrophysics +1305.4018 Social and Information Networks +1305.4019 Analysis of PDEs +1305.4021 Molecular Networks +1305.4023 Exactly Solvable and Integrable Systems +1305.4025 Functional Analysis +1305.4028 Analysis of PDEs +1305.4034 Category Theory +1305.4035 Strongly Correlated Electrons +1305.4038 Networking and Internet Architecture +1305.4041 +1305.4043 +1305.4045 Cryptography and Security +1305.4047 Information Theory +1305.4048 Soft Condensed Matter +1305.4054 Digital Libraries +1305.4055 Group Theory +1305.4057 Statistical Mechanics +1305.4058 Probability +1305.4062 Medical Physics +1305.4064 Computer Vision and Pattern Recognition +1305.4067 Accelerator Physics +1305.4068 Number Theory +1305.4071 Numerical Analysis +1305.4081 Learning +1305.4084 Astrophysics of Galaxies +1305.4086 Instrumentation and Methods for Astrophysics +1305.4089 Analysis of PDEs +1305.4093 Number Theory +1305.4095 Networking and Internet Architecture +1305.4096 Systems and Control +1305.4098 High Energy Astrophysical Phenomena +1305.4100 +1305.4101 Numerical Analysis +1305.4102 Multimedia +1305.4103 Systems and Control +1305.4104 Representation Theory +1305.4110 Differential Geometry +1305.4119 Software Engineering +1305.4121 Dynamical Systems +1305.4122 Dynamical Systems +1305.4130 Artificial Intelligence +1305.4131 Algebraic Geometry +1305.4133 Social and Information Networks +1305.4137 Solar and Stellar Astrophysics +1305.4144 History and Philosophy of Physics +1305.4147 Combinatorics +1305.4148 Human-Computer Interaction +1305.4153 Machine Learning +1305.4160 Neurons and Cognition +1305.4163 Networking and Internet Architecture +1305.4167 Analysis of PDEs +1305.4168 Computer Vision and Pattern Recognition +1305.4171 Functional Analysis +cond-mat/0411272 Mesoscale and Nanoscale Physics +hep-th/0303147 Theory +math/0406337 Classical Analysis and ODEs +0706.2159 +0707.2582 Statistical Mechanics +0711.2786 Soft Condensed Matter +0802.3769 Statistical Mechanics +0807.4257 Superconductivity +0810.4146 Soft Condensed Matter +0903.1629 Statistical Mechanics +0907.3564 Superconductivity +0908.3935 Mesoscale and Nanoscale Physics +0909.1192 Quantum Gases +1003.2306 Group Theory +1003.5073 Probability +1004.4248 Quantum Algebra +1006.1239 Computational Physics +1006.5399 K-Theory and Homology +1007.4588 Statistical Mechanics +1009.1438 Probability +1009.4786 Probability +1102.5239 Numerical Analysis +1103.0012 +1103.0951 Algebraic Geometry +1103.3242 Probability +1104.1276 +1104.3314 Formal Languages and Automata Theory +1104.4572 Earth and Planetary Astrophysics +1105.5254 Mesoscale and Nanoscale Physics +1106.0470 Probability +1106.0873 Differential Geometry +1106.3776 +1106.3950 Algebraic Geometry +1106.6065 Superconductivity +1106.6085 Biological Physics +1107.1039 Quantum Algebra +1107.1482 Chemical Physics +1107.1655 Chemical Physics +1107.1658 Chemical Physics +1108.1667 Chemical Physics +1109.1714 +1109.6489 Number Theory +1110.2049 Computational Engineering, Finance, and Science +1110.5682 Classical Analysis and ODEs +1111.1538 Logic +1112.2352 Probability +1112.5924 Superconductivity +1201.3672 +1201.4049 Numerical Analysis +1201.4249 +1202.1150 Information Theory +1202.6187 Pricing of Securities +1203.2482 Differential Geometry +1203.2765 Dynamical Systems +1203.5401 Materials Science +1203.5783 Theory +1203.6372 Genomics +1204.1729 Algebraic Geometry +1204.2291 Theory +1204.2708 Soft Condensed Matter +1204.4570 +1204.5611 Algebraic Geometry +1204.5863 Rings and Algebras +1204.6056 +1204.6268 Theory +1205.0847 Cosmology and Nongalactic Astrophysics +1205.1829 Materials Science +1205.2674 +1205.3962 Superconductivity +1205.5505 Probability +1206.2817 Analysis of PDEs +1206.3311 Theory +1206.5135 Digital Libraries +1206.5145 +1206.6660 Superconductivity +1206.6944 Strongly Correlated Electrons +1207.1796 Superconductivity +1207.3737 +1207.3833 Optics +1207.3942 +1207.4219 Combinatorics +1207.5437 Learning +1207.5540 Popular Physics +1207.7211 Numerical Analysis +1208.1297 Solar and Stellar Astrophysics +1208.2968 Mesoscale and Nanoscale Physics +1208.5216 Information Theory +1209.2028 Instrumentation and Methods for Astrophysics +1209.2319 Experiment +1209.2977 Mesoscale and Nanoscale Physics +1209.3264 Biomolecules +1209.3489 Experiment +1209.3845 +1209.4073 Dynamical Systems +1209.4480 Materials Science +1209.4533 Experiment +1209.4598 History and Overview +1209.4965 Information Theory +1209.5100 Strongly Correlated Electrons +1209.5691 Metric Geometry +1209.6349 +1209.6454 Fluid Dynamics +1209.6620 Experiment +1210.0198 Algebraic Geometry +1210.1270 Strongly Correlated Electrons +1210.1825 +1210.1866 Statistics Theory +1210.1992 Dynamical Systems +1210.2052 Experiment +1210.2546 Superconductivity +1210.3666 +1210.3775 +1210.3977 Phenomenology +1210.5279 Phenomenology +1210.5304 Data Analysis, Statistics and Probability +1210.6164 Theory +1210.6333 Solar and Stellar Astrophysics +1210.6539 Neural and Evolutionary Computing +1210.6841 High Energy Astrophysical Phenomena +1210.6866 Instrumentation and Methods for Astrophysics +1210.7544 Experiment +1210.8368 Computational Complexity +1211.0134 +1211.0321 Statistical Mechanics +1211.0389 Probability +1211.0416 Materials Science +1211.0823 +1211.1726 Theory +1211.2029 Superconductivity +1211.2180 Dynamical Systems +1211.2963 Distributed, Parallel, and Cluster Computing +1211.3037 +1211.3362 Astrophysics of Galaxies +1211.3405 +1211.3407 +1211.3524 Probability +1211.4082 Statistical Mechanics +1211.4883 Experiment +1211.4890 Experiment +1211.5257 Information Theory +1211.6011 Quantum Gases +1211.6221 Quantum Gases +1211.6721 Cosmology and Nongalactic Astrophysics +1211.7101 +1212.0052 Formal Languages and Automata Theory +1212.0955 Lattice +1212.1577 +1212.1653 +1212.2307 +1212.2322 Statistical Mechanics +1212.3062 Theory +1212.3941 Statistical Mechanics +1212.4157 Cosmology and Nongalactic Astrophysics +1212.4720 Combinatorics +1212.5297 +1212.5912 Strongly Correlated Electrons +1212.6263 Rings and Algebras +1212.6682 Experiment +1212.6782 Strongly Correlated Electrons +1301.0095 Combinatorics +1301.0174 Representation Theory +1301.0682 Spectral Theory +1301.0700 Information Theory +1301.0895 +1301.1475 Disordered Systems and Neural Networks +1301.2534 Statistics Theory +1301.2642 General Topology +1301.2803 Quantum Gases +1301.2843 +1301.3323 Computer Vision and Pattern Recognition +1301.3389 Numerical Analysis +1301.3545 Learning +1301.3616 +1301.3618 Computation and Language +1301.3704 Optics +1301.4168 Learning +1301.4333 Phenomenology +1301.5158 +1301.5268 +1301.5347 Experiment +1301.5969 Combinatorics +1301.6170 Cosmology and Nongalactic Astrophysics +1301.6316 Learning +1302.0091 Cosmology and Nongalactic Astrophysics +1302.0221 Optimization and Control +1302.1914 Physics and Society +1302.1922 Algebraic Geometry +1302.2553 Learning +1302.2760 Physics and Society +1302.3073 Optics +1302.3546 Physics and Society +1302.3674 Materials Science +1302.3960 Earth and Planetary Astrophysics +1302.5846 Phenomenology +1302.6274 Cryptography and Security +1302.6543 Differential Geometry +1302.7118 Complex Variables +1303.0172 Plasma Physics +1303.0181 Classical Physics +1303.0591 Neurons and Cognition +1303.1049 Soft Condensed Matter +1303.1073 Phenomenology +1303.1239 Algebraic Geometry +1303.1276 Materials Science +1303.1578 Algebraic Geometry +1303.1608 Instrumentation and Detectors +1303.2142 High Energy Astrophysical Phenomena +1303.2203 Functional Analysis +1303.3101 Combinatorics +1303.3385 Number Theory +1303.3416 Materials Science +1303.3664 Machine Learning +1303.3698 General Physics +1303.3884 Materials Science +1303.3897 +1303.3900 Optics +1303.3903 Differential Geometry +1303.3904 Information Theory +1303.3907 Dynamical Systems +1303.3910 Plasma Physics +1303.3913 Combinatorics +1303.3920 Populations and Evolution +1303.3921 Information Theory +1303.3922 Phenomenology +1303.3923 Theory +1303.3924 Rings and Algebras +1303.3927 Computational Physics +1303.3930 Cosmology and Nongalactic Astrophysics +1303.3931 Discrete Mathematics +1303.3933 Optimization and Control +1303.3941 +1303.3943 Information Theory +1303.3944 Fluid Dynamics +1303.3945 Data Structures and Algorithms +1303.3948 Computation and Language +1303.3950 Soft Condensed Matter +1303.3954 Emerging Technologies +1303.3956 Portfolio Management +1303.3959 K-Theory and Homology +1303.3960 Computational Physics +1303.3962 Networking and Internet Architecture +1303.3964 Information Retrieval +1303.3965 Information Theory +1303.3970 Strongly Correlated Electrons +1303.3978 Classical Analysis and ODEs +1303.3979 Classical Analysis and ODEs +1303.3980 Classical Analysis and ODEs +1303.3981 Classical Analysis and ODEs +1303.3984 Social and Information Networks +1303.3985 Phenomenology +1303.3987 Learning +1303.3991 Quantum Algebra +1303.3993 Classical Analysis and ODEs +1303.3998 Analysis of PDEs +1303.4004 Cosmology and Nongalactic Astrophysics +1303.4005 Probability +1303.4011 +1303.4012 Optimization and Control +1303.4017 Artificial Intelligence +1303.4018 Algebraic Topology +1303.4020 Optics +1303.4023 Instrumentation and Methods for Astrophysics +1303.4025 Discrete Mathematics +1303.4028 Algebraic Geometry +1303.4029 Algebraic Topology +1303.4030 Combinatorics +1303.4031 Data Structures and Algorithms +1303.4036 Information Theory +1303.4039 Algebraic Geometry +1303.4042 Probability +1303.4043 Algebraic Geometry +1303.4044 Group Theory +1303.4047 Numerical Analysis +1303.4049 Statistical Mechanics +1303.4051 Discrete Mathematics +1303.4052 Earth and Planetary Astrophysics +1303.4053 Genomics +1303.4054 High Energy Astrophysical Phenomena +1303.4056 Software Engineering +1303.4062 Materials Science +1303.4065 Combinatorics +1303.4066 Solar and Stellar Astrophysics +1303.4078 Cryptography and Security +1303.4082 Pricing of Securities +1303.4085 Information Theory +1303.4087 Information Retrieval +1303.4094 High Energy Astrophysical Phenomena +1303.4100 +1303.4101 Differential Geometry +1303.4104 +1303.4105 +1303.4108 Optics +1303.4109 Dynamical Systems +1303.4110 Graphics +1303.4111 Optics +1303.4112 Strongly Correlated Electrons +1303.4115 Numerical Analysis +1303.4116 Numerical Analysis +1303.4120 Information Theory +1303.4121 Methodology +1303.4122 Complex Variables +1303.4124 +1303.4127 +1303.4133 Algebraic Geometry +1303.4137 Number Theory +1303.4145 Analysis of PDEs +1303.4158 Dynamical Systems +1303.4160 Computer Vision and Pattern Recognition +1303.4163 Superconductivity +1303.4164 Neurons and Cognition +1303.4165 Differential Geometry +1303.4169 Learning +1303.4170 Mesoscale and Nanoscale Physics +1303.4172 Learning +1303.4175 Optimization and Control +1303.4177 Data Structures and Algorithms +1303.4178 Algebraic Geometry +1303.4179 Statistics Theory +1303.4181 Probability +1303.4182 Strongly Correlated Electrons +1303.4183 Artificial Intelligence +1303.4185 Representation Theory +1303.4187 Mesoscale and Nanoscale Physics +1303.4188 +1303.4189 Optics +1303.4196 Superconductivity +1303.4199 Computer Science and Game Theory +1303.4201 Populations and Evolution +1303.4202 Functional Analysis +1303.4205 Superconductivity +1303.4206 Superconductivity +1303.4208 Superconductivity +1303.4210 Medical Physics +1303.4213 Combinatorics +1303.4214 Optics +1303.4216 Analysis of PDEs +1303.4217 General Topology +1303.4219 Experiment +1303.4220 Algebraic Geometry +1303.4223 Numerical Analysis +1303.4224 Information Theory +1303.4225 Analysis of PDEs +1303.4227 Information Theory +1303.4228 Materials Science +1303.4231 Computer Science and Game Theory +1303.4232 Earth and Planetary Astrophysics +1303.4235 Superconductivity +1303.4238 Probability +1303.4239 Group Theory +1303.4241 Algebraic Geometry +1303.4243 Probability +1303.4245 Dynamical Systems +1303.4246 Analysis of PDEs +1303.4247 Physics and Society +1303.4248 Dynamical Systems +1303.4257 Logic in Computer Science +1303.4260 Space Physics +1303.4262 Cryptography and Security +1303.4263 Classical Analysis and ODEs +1303.4264 Multimedia +1303.4273 Statistical Mechanics +1303.4274 Probability +1303.4275 Combinatorics +1303.4276 Quantum Algebra +1303.4278 Differential Geometry +1303.4281 Analysis of PDEs +1303.4283 Astrophysics of Galaxies +1303.4285 Strongly Correlated Electrons +1303.4287 Experiment +1303.4289 Information Theory +1303.4295 Dynamical Systems +1303.4296 Robotics +1303.4299 Analysis of PDEs +1303.4308 +1303.4311 +1303.4315 Computational Complexity +1303.4316 +1303.4321 +1303.4334 Solar and Stellar Astrophysics +1303.4335 Number Theory +1303.4340 Solar and Stellar Astrophysics +1303.4341 Algebraic Geometry +1303.4345 Functional Analysis +1303.4347 Networking and Internet Architecture +1303.4352 Information Theory +1303.4354 Analysis of PDEs +1303.4356 +1303.4358 Analysis of PDEs +1303.4373 Classical Analysis and ODEs +1303.4375 Information Theory +1303.4378 Numerical Analysis +1303.4380 Materials Science +astro-ph/0511127 +cond-mat/0107581 Soft Condensed Matter +cond-mat/0203043 Soft Condensed Matter +cond-mat/0203062 Soft Condensed Matter +cond-mat/0510146 Soft Condensed Matter +cond-mat/0512038 Statistical Mechanics +cond-mat/0608387 Statistical Mechanics +math-ph/0312048 +math/0102144 Spectral Theory +math/0408047 Classical Analysis and ODEs +math/0408203 Classical Analysis and ODEs +math/0504545 Classical Analysis and ODEs +math/0607473 Number Theory +math/0703893 Quantum Algebra +physics/0504153 Physics and Society +physics/0506028 Physics and Society +physics/0608174 Physics and Society +0707.3898 Probability +0710.0429 Rings and Algebras +0710.0433 Rings and Algebras +0801.2778 Number Theory +0803.4462 Number Theory +0806.4291 Chaotic Dynamics +0807.2266 Rings and Algebras +0809.3413 Number Theory +0811.2745 Geometric Topology +0902.1684 +0902.3561 Probability +0905.0223 Dynamical Systems +0905.1992 Combinatorics +0907.3359 Probability +0909.0319 Differential Geometry +0909.2479 Physics and Society +0910.3261 Rings and Algebras +0910.4205 Probability +0911.3721 Probability +0912.4433 +0912.4884 Computational Complexity +1001.0402 Number Theory +1001.3394 Number Theory +1002.2446 Probability +1003.1224 Combinatorics +1003.1724 High Energy Astrophysical Phenomena +1003.5009 Probability +1003.5024 Dynamical Systems +1004.1478 Probability +1005.1500 Theory +1008.3504 +1008.4426 Atomic Physics +1009.1082 Number Theory +1009.1166 Databases +1009.5105 Combinatorics +1010.0741 +1010.3493 Complex Variables +1011.1569 Earth and Planetary Astrophysics +1011.3734 Strongly Correlated Electrons +1012.5768 +1101.0417 Probability +1101.1856 Operator Algebras +1101.4792 Number Theory +1101.5083 Combinatorics +1102.2218 Strongly Correlated Electrons +1102.4580 +1103.2992 Group Theory +1104.1104 Statistical Mechanics +1104.4577 Atomic Physics +1105.0980 Mesoscale and Nanoscale Physics +1105.3853 Logic in Computer Science +1106.0412 Algebraic Topology +1106.3705 Logic in Computer Science +1106.6080 Quantum Algebra +1106.6185 Neural and Evolutionary Computing +1107.0471 Combinatorics +1107.5033 Combinatorics +1108.1657 +1108.1673 +1108.1783 Machine Learning +1108.1807 +1108.2132 Probability +1108.5916 +1109.1041 Information Theory +1109.1110 Complex Variables +1109.1346 Combinatorics +1109.4022 +1109.6164 Classical Analysis and ODEs +1110.0721 Methodology +1110.2164 General Physics +1110.2455 Differential Geometry +1110.2456 Differential Geometry +1110.3052 Solar and Stellar Astrophysics +1110.5168 +1110.5349 Experiment +1110.6638 Number Theory +1111.1823 Discrete Mathematics +1111.5847 Operator Algebras +1111.6128 Rings and Algebras +1112.1874 Superconductivity +1112.4412 +1112.5828 +1112.6105 +1112.6149 Cosmology and Nongalactic Astrophysics +1201.4767 Combinatorics +1202.3674 +1202.5912 Biological Physics +1203.3411 Soft Condensed Matter +1203.4082 Soft Condensed Matter +1203.5605 Theory +1203.6492 Dynamical Systems +1204.1220 Optimization and Control +1204.2329 Dynamical Systems +1204.5598 Atomic Physics +1204.5738 Mesoscale and Nanoscale Physics +1205.1881 +1205.3154 Plasma Physics +1205.3407 +1205.3848 Dynamical Systems +1205.5457 Optics +1205.5946 Combinatorics +1205.6504 Numerical Analysis +1205.6509 Mesoscale and Nanoscale Physics +1206.0025 +1206.0600 Analysis of PDEs +1206.0852 Optics +1206.1270 Optimization and Control +1206.2669 Cryptography and Security +1206.4757 Mesoscale and Nanoscale Physics +1206.6959 Strongly Correlated Electrons +1207.0256 +1207.0662 Statistics Theory +1207.1308 Exactly Solvable and Integrable Systems +1207.2328 Learning +1207.2366 +1207.2730 Mesoscale and Nanoscale Physics +1207.6195 Phenomenology +1207.6204 Mesoscale and Nanoscale Physics +1208.0030 Materials Science +1208.0098 +1208.0102 +1208.3688 Physics and Society +1208.5079 +1208.6415 +1209.1920 Dynamical Systems +1209.3135 Optimization and Control +1209.4286 Optics +1209.6252 Statistical Mechanics +1209.6285 Strongly Correlated Electrons +1210.0634 +1210.1567 Phenomenology +1210.1838 Trading and Market Microstructure +1210.2859 Mesoscale and Nanoscale Physics +1210.3846 Logic in Computer Science +1210.4604 Strongly Correlated Electrons +1210.4626 +1210.5208 Symplectic Geometry +1210.5789 +1210.5972 Superconductivity +1210.6830 +1210.6894 Mesoscale and Nanoscale Physics +1210.8221 Cosmology and Nongalactic Astrophysics +1211.0423 Combinatorics +1211.0949 Analysis of PDEs +1211.1932 Information Theory +1211.3584 Superconductivity +1211.4222 Superconductivity +1211.4270 +1211.4903 Strongly Correlated Electrons +1211.6815 Materials Science +1212.1111 +1212.1765 +1212.3139 Computation and Language +1212.3498 Number Theory +1212.3984 Superconductivity +1212.4378 Astrophysics of Galaxies +1212.5602 Disordered Systems and Neural Networks +1301.0298 Lattice +1301.0720 Representation Theory +1301.0850 Quantum Algebra +1301.2765 +1301.4291 Methodology +1301.4306 Mesoscale and Nanoscale Physics +1301.4351 Information Retrieval +1301.4881 General Finance +1301.5216 Computational Complexity +1301.5310 +1301.5692 Biological Physics +1301.6232 Analysis of PDEs +1301.6235 Analysis of PDEs +1301.7207 Materials Science +1301.7225 Instrumentation and Detectors +1301.7498 Theory +1301.7526 History and Philosophy of Physics +1301.7569 Analysis of PDEs +1301.7719 High Energy Astrophysical Phenomena +1302.0202 +1302.0246 Differential Geometry +1302.0283 Instrumentation and Detectors +1302.0284 Materials Science +1302.0285 Astrophysics of Galaxies +1302.0286 Optimization and Control +1302.0304 Computational Geometry +1302.0307 Phenomenology +1302.0311 Biological Physics +1302.0313 Theory +1302.0315 Learning +1302.0318 Combinatorics +1302.0321 Information Theory +1302.0324 Neural and Evolutionary Computing +1302.0326 Analysis of PDEs +1302.0329 Astrophysics of Galaxies +1302.0334 Artificial Intelligence +1302.0340 Superconductivity +1302.0341 +1302.0345 Mesoscale and Nanoscale Physics +1302.0348 Number Theory +1302.0352 Number Theory +1302.0355 Methodology +1302.0356 Methodology +1302.0359 Group Theory +1302.0360 Applications +1302.0361 Pricing of Securities +1302.0363 Exactly Solvable and Integrable Systems +1302.0366 +1302.0368 Commutative Algebra +1302.0370 Materials Science +1302.0371 Materials Science +1302.0373 Statistical Mechanics +1302.0379 Rings and Algebras +1302.0383 Rings and Algebras +1302.0385 Differential Geometry +1302.0389 Experiment +1302.0390 Rings and Algebras +1302.0394 Information Theory +1302.0400 +1302.0406 Learning +1302.0407 Analysis of PDEs +1302.0409 Number Theory +1302.0411 Cosmology and Nongalactic Astrophysics +1302.0413 Information Retrieval +1302.0414 Solar and Stellar Astrophysics +1302.0415 Phenomenology +1302.0418 Computational Complexity +1302.0422 Information Theory +1302.0424 +1302.0426 Operator Algebras +1302.0431 Atomic Physics +1302.0443 Rings and Algebras +1302.0446 Computer Vision and Pattern Recognition +1302.0451 Theory +1302.0453 Superconductivity +1302.0454 Logic +1302.0459 Information Theory +1302.0461 Statistical Mechanics +1302.0464 +1302.0465 Pricing of Securities +1302.0469 Statistical Mechanics +1302.0470 Quantum Gases +1302.0472 Differential Geometry +1302.0473 Analysis of PDEs +1302.0474 Optics +1302.0475 Operator Algebras +1302.0476 Neurons and Cognition +1302.0483 Disordered Systems and Neural Networks +1302.0486 Geophysics +1302.0487 Computational Complexity +1302.0488 Multiagent Systems +1302.0495 High Energy Astrophysical Phenomena +1302.0503 Quantitative Methods +1302.0504 Representation Theory +1302.0505 Dynamical Systems +1302.0512 Theory +1302.0513 Number Theory +1302.0515 Statistical Mechanics +1302.0517 Functional Analysis +1302.0519 Statistical Mechanics +1302.0523 +1302.0524 Differential Geometry +1302.0526 Exactly Solvable and Integrable Systems +1302.0533 Information Theory +1302.0535 Theory +1302.0538 General Finance +1302.0540 Learning +1302.0542 Analysis of PDEs +1302.0543 Dynamical Systems +1302.0545 +1302.0546 Functional Analysis +1302.0547 +1302.0552 Probability +1302.0560 High Energy Astrophysical Phenomena +1302.0564 Quantum Algebra +1302.0567 Space Physics +1302.0569 Information Theory +1302.0574 Pricing of Securities +1302.0587 Geometric Topology +1302.0589 Rings and Algebras +1302.0591 Analysis of PDEs +1302.0595 +1302.0597 Functional Analysis +1302.0602 Rings and Algebras +1302.0604 +1302.0605 Soft Condensed Matter +1302.0606 Popular Physics +1302.0608 Digital Libraries +1302.0616 Classical Analysis and ODEs +1302.0618 Analysis of PDEs +1302.0622 Phenomenology +1302.0628 Combinatorics +1302.0629 Cryptography and Security +1302.0630 +1302.0631 Phenomenology +1302.0639 Commutative Algebra +1302.0641 History and Philosophy of Physics +1302.0647 Differential Geometry +1302.0652 Functional Analysis +1302.0656 Phenomenology +1302.0657 Analysis of PDEs +1302.0658 Group Theory +1302.0661 Phenomenology +1302.0667 +1302.0668 Number Theory +1302.0675 Lattice +1302.0679 Probability +1302.0681 Methodology +1302.0685 Complex Variables +1302.0689 Computer Vision and Pattern Recognition +1302.0696 Cosmology and Nongalactic Astrophysics +1302.0698 Numerical Analysis +1302.0707 Networking and Internet Architecture +1302.0710 Computational Engineering, Finance, and Science +1302.0714 High Energy Astrophysical Phenomena +1302.0717 Astrophysics of Galaxies +1302.0718 Plasma Physics +1302.0720 Statistical Mechanics +1302.0721 Combinatorics +1302.0725 Solar and Stellar Astrophysics +1302.0731 +1302.0732 Analysis of PDEs +1302.0736 Other Condensed Matter +1302.0739 Social and Information Networks +1302.0741 Optimization and Control +1302.0742 Number Theory +1302.0745 Logic in Computer Science +1302.0748 Differential Geometry +1302.0749 Information Theory +1302.0750 Formal Languages and Automata Theory +1302.0753 Information Theory +1302.0758 Phenomenology +1302.0759 Dynamical Systems +1302.0762 Differential Geometry +1302.0763 Experiment +1302.0764 Other Condensed Matter +1302.0765 Popular Physics +1302.0769 Combinatorics +1302.0777 Differential Geometry +1302.0778 Geometric Topology +1302.0779 Phenomenology +1302.0780 Systems and Control +1302.0783 Phenomenology +1302.0785 Emerging Technologies +1302.0786 Optics +1302.0787 Geometric Topology +1302.0789 Complex Variables +1302.0791 Complex Variables +1302.0797 Neural and Evolutionary Computing +1302.0803 Algebraic Geometry +1302.0805 Classical Physics +1302.0806 Information Theory +1302.0807 Complex Variables +1302.0809 Probability +1302.0810 Dynamical Systems +1302.0811 +1302.0812 Combinatorics +1302.0815 Optimization and Control +1302.0817 Methodology +1302.0818 Probability +1302.0819 Probability +1302.0820 Computers and Society +1302.0823 Functional Analysis +1302.0825 Rings and Algebras +1302.0826 Quantitative Methods +1302.0828 Logic +1302.0833 Strongly Correlated Electrons +cs/0609038 Networking and Internet Architecture +hep-th/0407078 Theory +math/0510266 Rings and Algebras +math/0602449 Rings and Algebras +0707.0606 Probability +0804.0444 Differential Geometry +0804.4362 Probability +0806.1837 Probability +0807.3533 +0902.0513 +0904.2043 Data Analysis, Statistics and Probability +0905.3628 Probability +0907.1536 Complex Variables +0911.3494 Other Condensed Matter +0911.5493 Phenomenology +1002.4740 Cosmology and Nongalactic Astrophysics +1003.4014 Differential Geometry +1005.1743 Analysis of PDEs +1005.1795 +1005.5284 +1006.4272 +1007.1378 Discrete Mathematics +1007.1882 Probability +1008.4186 Geometric Topology +1008.4541 High Energy Astrophysical Phenomena +1009.3137 Geometric Topology +1009.5180 +1009.5218 +1101.3464 Materials Science +1101.3957 Strongly Correlated Electrons +1103.0082 +1103.3027 Classical Analysis and ODEs +1103.5852 Differential Geometry +1106.1506 Statistical Mechanics +1108.2278 Theory +1108.6076 Differential Geometry +1109.2431 Computational Physics +1109.3250 Statistics Theory +1109.4782 Quantum Gases +1110.0610 Logic +1110.5659 Classical Analysis and ODEs +1111.1781 +1111.2942 Computational Geometry +1111.5506 Number Theory +1111.6939 Phenomenology +1201.0491 Logic +1201.5792 Commutative Algebra +1201.6148 Differential Geometry +1202.0804 Cosmology and Nongalactic Astrophysics +1202.1175 Operator Algebras +1202.4601 Optics +1202.6285 Group Theory +1203.6584 +1204.3635 Cosmology and Nongalactic Astrophysics +1204.3985 Analysis of PDEs +1204.4494 Methodology +1204.4802 +1204.6014 Classical Analysis and ODEs +1205.1775 Logic +1205.5825 Mesoscale and Nanoscale Physics +1205.6252 Computational Geometry +1206.2462 Strongly Correlated Electrons +1206.6125 Materials Science +1206.7053 Cell Behavior +1207.0366 Analysis of PDEs +1207.1550 Robotics +1207.1553 Robotics +1207.2601 +1207.3408 Superconductivity +1207.6196 Superconductivity +1207.6929 Theory +1208.0461 Mesoscale and Nanoscale Physics +1208.0697 Strongly Correlated Electrons +1208.0719 Theory +1208.0897 +1208.1053 Geometric Topology +1208.1132 Dynamical Systems +1208.1337 Number Theory +1208.3201 Solar and Stellar Astrophysics +1208.3302 Algebraic Geometry +1208.4007 Analysis of PDEs +1208.4413 Theory +1208.4720 +1208.5356 Instrumentation and Methods for Astrophysics +1208.6049 +1208.6279 Information Theory +1208.6442 Superconductivity +1208.6551 Probability +1209.0510 +1209.1090 Cosmology and Nongalactic Astrophysics +1209.1411 Physics and Society +1209.2706 Cosmology and Nongalactic Astrophysics +1209.2897 Quantum Gases +1209.4828 Optics +1209.5223 Numerical Analysis +1209.5997 Algebraic Geometry +1210.0013 Quantum Gases +1210.0591 Probability +1210.0912 Phenomenology +1210.1122 +1210.1380 Operator Algebras +1210.1716 Phenomenology +1210.2351 Superconductivity +1210.3388 +1210.3487 Mesoscale and Nanoscale Physics +1210.5382 +1210.6318 Theory +1210.6818 Mesoscale and Nanoscale Physics +1210.7590 Strongly Correlated Electrons +1210.8361 Statistical Mechanics +1211.1662 Theory +1211.2140 Phenomenology +1211.2506 +1211.3186 +1211.3778 Differential Geometry +1211.4025 Phenomenology +1211.4631 +1211.4693 Algebraic Geometry +1211.5330 Differential Geometry +1211.5653 Materials Science +1211.5969 Numerical Analysis +1211.6130 Strongly Correlated Electrons +1211.7156 +1211.7295 Theory +1212.0593 Strongly Correlated Electrons +1212.1285 +1212.1288 Phenomenology +1212.1404 Representation Theory +1212.1827 Strongly Correlated Electrons +1212.1959 Theory +1212.2117 Chaotic Dynamics +1212.2698 Strongly Correlated Electrons +1212.3124 Populations and Evolution +1212.3272 Phenomenology +1212.3344 Theory +1212.4067 Instrumentation and Detectors +1212.5224 Theory +1301.0518 Theory +1301.0527 Fluid Dynamics +1301.0708 Phenomenology +1301.1419 Astrophysics of Galaxies +1301.1651 Phenomenology +1301.3224 Learning +1301.3624 Cosmology and Nongalactic Astrophysics +1301.4132 Theory +1301.4391 Numerical Analysis +1301.4892 Phenomenology +1301.4894 Analysis of PDEs +1301.5283 Phenomenology +1301.5631 Phenomenology +1301.5719 Strongly Correlated Electrons +1301.5822 Mesoscale and Nanoscale Physics +1301.6234 Analysis of PDEs +1301.6608 Phenomenology +1301.7036 History and Philosophy of Physics +1302.0308 Superconductivity +1302.0550 Strongly Correlated Electrons +1302.1069 Phenomenology +1302.1226 +1302.1509 +1302.1915 High Energy Astrophysical Phenomena +1302.2159 Phenomenology +1302.4854 Computational Finance +1302.5278 Strongly Correlated Electrons +1302.5799 Cosmology and Nongalactic Astrophysics +1302.6515 Hardware Architecture +1302.6635 Materials Science +1303.0178 Theory +1303.2853 Differential Geometry +1303.3151 +1303.3676 Phenomenology +1303.4411 Physics and Society +1303.4540 Combinatorics +1303.4760 Analysis of PDEs +1303.4928 Mathematical Software +1303.5861 Materials Science +1303.6457 Differential Geometry +1303.7063 +1303.7396 Superconductivity +1304.0827 Number Theory +1304.1027 History and Overview +1304.1245 Computational Complexity +1304.1612 Differential Geometry +1304.1670 Materials Science +1304.1709 Materials Science +1304.1796 Computational Complexity +1304.1874 +1304.1985 Populations and Evolution +1304.1995 Computer Vision and Pattern Recognition +1304.2111 Theory +1304.2339 Artificial Intelligence +1304.2340 Artificial Intelligence +1304.2341 Artificial Intelligence +1304.2342 Artificial Intelligence +1304.2343 Artificial Intelligence +1304.2344 Artificial Intelligence +1304.2345 Artificial Intelligence +1304.2346 Artificial Intelligence +1304.2347 Artificial Intelligence +1304.2348 Artificial Intelligence +1304.2349 Artificial Intelligence +1304.2350 Artificial Intelligence +1304.2351 Artificial Intelligence +1304.2352 Artificial Intelligence +1304.2353 Artificial Intelligence +1304.2354 Artificial Intelligence +1304.2355 Artificial Intelligence +1304.2356 Artificial Intelligence +1304.2358 Artificial Intelligence +1304.2359 Artificial Intelligence +1304.2360 Artificial Intelligence +1304.2361 Artificial Intelligence +1304.2362 Artificial Intelligence +1304.2363 Learning +1304.2364 Artificial Intelligence +1304.2366 Artificial Intelligence +1304.2367 Computer Vision and Pattern Recognition +1304.2368 Artificial Intelligence +1304.2369 Artificial Intelligence +1304.2370 Artificial Intelligence +1304.2371 Artificial Intelligence +1304.2372 Artificial Intelligence +1304.2373 Artificial Intelligence +1304.2374 Artificial Intelligence +1304.2375 Artificial Intelligence +1304.2376 Artificial Intelligence +1304.2377 Artificial Intelligence +1304.2378 Artificial Intelligence +1304.2379 Artificial Intelligence +1304.2380 Artificial Intelligence +1304.2381 Artificial Intelligence +1304.2382 Systems and Control +1304.2383 Artificial Intelligence +1304.2384 Artificial Intelligence +1304.2387 Information Theory +1304.2388 Information Theory +1304.2390 Theory +1304.2401 Information Retrieval +1304.2408 Cosmology and Nongalactic Astrophysics +1304.2409 +1304.2410 Earth and Planetary Astrophysics +1304.2412 Logic in Computer Science +1304.2413 Atomic Physics +1304.2415 Analysis of PDEs +1304.2422 Analysis of PDEs +1304.2426 Soft Condensed Matter +1304.2427 High Energy Astrophysical Phenomena +1304.2430 Phenomenology +1304.2431 Experiment +1304.2441 Complex Variables +1304.2442 +1304.2448 Combinatorics +1304.2449 Analysis of PDEs +1304.2450 Functional Analysis +1304.2451 Rings and Algebras +1304.2452 Functional Analysis +1304.2456 Probability +1304.2458 Combinatorics +1304.2460 Statistics Theory +1304.2465 Materials Science +1304.2467 Neural and Evolutionary Computing +1304.2468 Tissues and Organs +1304.2472 Number Theory +1304.2473 Analysis of PDEs +1304.2474 Instrumentation and Methods for Astrophysics +1304.2479 Statistics Theory +1304.2481 Biological Physics +1304.2483 Combinatorics +1304.2484 Combinatorics +1304.2485 Combinatorics +1304.2486 Combinatorics +1304.2487 Solar and Stellar Astrophysics +1304.2488 Probability +1304.2489 High Energy Astrophysical Phenomena +1304.2490 Computer Vision and Pattern Recognition +1304.2495 Optimization and Control +1304.2497 +1304.2498 Metric Geometry +1304.2512 Functional Analysis +1304.2514 Information Retrieval +1304.2515 Commutative Algebra +1304.2517 Commutative Algebra +1304.2522 Statistical Mechanics +1304.2524 Physics and Society +1304.2525 Statistical Mechanics +1304.2534 +1304.2536 +1304.2537 General Topology +1304.2538 Artificial Intelligence +1304.2539 Functional Analysis +1304.2540 Classical Analysis and ODEs +1304.2544 Group Theory +1304.2545 Neural and Evolutionary Computing +1304.2546 Phenomenology +1304.2547 High Energy Astrophysical Phenomena +1304.2548 Other Condensed Matter +1304.2551 Algebraic Geometry +1304.2559 +1304.2560 Cosmology and Nongalactic Astrophysics +1304.2563 Group Theory +1304.2565 Algebraic Geometry +1304.2566 Phenomenology +1304.2567 Instrumentation and Methods for Astrophysics +1304.2570 Solar and Stellar Astrophysics +1304.2574 Networking and Internet Architecture +1304.2579 Exactly Solvable and Integrable Systems +1304.2580 Networking and Internet Architecture +1304.2585 Classical Analysis and ODEs +1304.2586 Accelerator Physics +1304.2588 +1304.2596 Strongly Correlated Electrons +1304.2599 Mesoscale and Nanoscale Physics +1304.2602 Materials Science +1304.2603 Strongly Correlated Electrons +1304.2604 Computational Geometry +1304.2606 Geometric Topology +1304.2607 Differential Geometry +1304.2609 +1304.2614 Phenomenology +1304.2616 Populations and Evolution +1304.2617 Distributed, Parallel, and Cluster Computing +1304.2618 Combinatorics +1304.2619 Analysis of PDEs +1304.2620 Rings and Algebras +1304.2621 Functional Analysis +1304.2622 Differential Geometry +1304.2623 Disordered Systems and Neural Networks +1304.2625 History and Philosophy of Physics +1304.2631 Numerical Analysis +1304.2632 Phenomenology +1304.2636 Representation Theory +1304.2639 Formal Languages and Automata Theory +1304.2646 Soft Condensed Matter +1304.2648 +1304.2650 Operator Algebras +1304.2651 Differential Geometry +1304.2652 Dynamical Systems +1304.2664 Functional Analysis +1304.2665 Algebraic Geometry +1304.2671 Multimedia +1304.2676 Computational Geometry +1304.2677 Functional Analysis +1304.2678 Number Theory +1304.2681 Information Retrieval +1304.2683 Computer Vision and Pattern Recognition +1304.2688 Networking and Internet Architecture +1304.2691 Group Theory +1304.2692 Representation Theory +1304.2694 Artificial Intelligence +1304.2696 Statistics Theory +1304.2697 Differential Geometry +1304.2698 Physics and Society +1304.2700 Solar and Stellar Astrophysics +1304.2702 +1304.2704 Theory +1304.2705 Geometric Topology +1304.2707 Information Theory +math-ph/0401043 +math/0510492 Analysis of PDEs +1004.2582 Group Theory +1011.5333 Group Theory +1011.5412 Soft Condensed Matter +1101.4443 +1103.0700 Chaotic Dynamics +1103.4483 Computational Finance +1104.2420 Probability +1106.2199 Symplectic Geometry +1106.4773 Group Theory +1106.5799 Probability +1108.2056 Combinatorics +1108.4814 Representation Theory +1109.3894 +1110.2474 Geometric Topology +1111.0029 Group Theory +1111.6013 Metric Geometry +1112.1548 Combinatorics +1201.2332 Superconductivity +1201.3952 Soft Condensed Matter +1201.5289 +1202.3119 Digital Libraries +1202.4069 Algebraic Topology +1202.5750 +1203.1428 Number Theory +1204.5577 Mathematical Software +1205.1176 Differential Geometry +1205.1966 Pricing of Securities +1205.3614 Optimization and Control +1206.0449 Group Theory +1206.1488 Operator Algebras +1206.1548 Number Theory +1206.2643 High Energy Astrophysical Phenomena +1207.4316 Theory +1208.0026 Phenomenology +1209.2251 Cosmology and Nongalactic Astrophysics +1209.2729 +1209.4530 +1210.5520 Cosmology and Nongalactic Astrophysics +1210.7428 Theory +1210.7919 Data Structures and Algorithms +1211.2359 Statistics Theory +1212.1139 Information Theory +1212.2323 Classical Physics +1212.3548 Probability +1212.4026 Numerical Analysis +1301.0149 Theory +1301.2106 Strongly Correlated Electrons +1301.3063 Functional Analysis +1301.3629 Earth and Planetary Astrophysics +1301.6102 Phenomenology +1302.0420 Digital Libraries +1302.1278 High Energy Astrophysical Phenomena +1302.1936 Representation Theory +1302.4698 Mesoscale and Nanoscale Physics +1303.1738 Social and Information Networks +1303.1818 Cosmology and Nongalactic Astrophysics +1303.1925 +1303.2528 Materials Science +1304.0129 Theory +1304.1385 Biomolecules +1304.1702 +1304.2129 Applications +1304.3578 Probability +1304.4470 Materials Science +1304.5583 Computer Vision and Pattern Recognition +1304.5936 Phenomenology +1304.6752 Strongly Correlated Electrons +1304.7284 Learning +1305.1315 Soft Condensed Matter +1305.2476 Statistics Theory +1305.2525 Chemical Physics +1305.4116 Differential Geometry +1305.4146 +1305.4850 Spectral Theory +1305.5434 Biological Physics +1306.2681 High Energy Astrophysical Phenomena +1306.4391 Information Theory +1307.1096 Phenomenology +1307.4907 Algebraic Geometry +1307.6801 Biomolecules +1308.0617 +1308.0876 Solar and Stellar Astrophysics +1308.1548 High Energy Astrophysical Phenomena +1308.2225 Phenomenology +1308.2733 Materials Science +1308.3515 High Energy Astrophysical Phenomena +1308.3969 Mesoscale and Nanoscale Physics +1308.4799 +1309.0168 +1309.1042 Mesoscale and Nanoscale Physics +1309.1862 Physics and Society +1309.3166 Materials Science +1309.3467 Information Theory +1309.4248 Materials Science +1309.5860 Phenomenology +1309.7160 Number Theory +1310.0386 Logic +1310.0395 Data Structures and Algorithms +1310.1056 Dynamical Systems +1310.1599 +1310.2220 General Finance +1310.2298 Artificial Intelligence +1310.2913 Numerical Analysis +1310.2971 Fluid Dynamics +1310.3243 General Physics +1310.3314 Databases +1310.3460 Differential Geometry +1310.3916 Mesoscale and Nanoscale Physics +1310.4181 Theory +1310.4186 Fluid Dynamics +1310.4190 Solar and Stellar Astrophysics +1310.4192 Disordered Systems and Neural Networks +1310.4195 Methodology +1310.4196 Theory +1310.4199 Complex Variables +1310.4200 Solar and Stellar Astrophysics +1310.4203 Solar and Stellar Astrophysics +1310.4205 Complex Variables +1310.4207 Cosmology and Nongalactic Astrophysics +1310.4211 Complex Variables +1310.4212 Algebraic Geometry +1310.4213 Experiment +1310.4217 Computer Vision and Pattern Recognition +1310.4218 Distributed, Parallel, and Cluster Computing +1310.4219 Neurons and Cognition +1310.4223 Biomolecules +1310.4226 Metric Geometry +1310.4227 Learning +1310.4230 Solar and Stellar Astrophysics +1310.4231 Hardware Architecture +1310.4237 Number Theory +1310.4238 Mesoscale and Nanoscale Physics +1310.4245 Algebraic Geometry +1310.4251 Numerical Analysis +1310.4252 Machine Learning +1310.4254 Probability +1310.4259 Probability +1310.4260 Instrumentation and Methods for Astrophysics +1310.4268 Functional Analysis +1310.4269 Lattice +1310.4270 Other Computer Science +1310.4273 Superconductivity +1310.4276 Plasma Physics +1310.4279 Mesoscale and Nanoscale Physics +1310.4280 Solar and Stellar Astrophysics +1310.4282 Computer Science and Game Theory +1310.4286 Earth and Planetary Astrophysics +1310.4288 Numerical Analysis +1310.4290 Data Structures and Algorithms +1310.4295 Mesoscale and Nanoscale Physics +1310.4297 +1310.4299 Probability +1310.4301 Information Theory +1310.4303 Discrete Mathematics +1310.4305 Experiment +1310.4306 Logic in Computer Science +1310.4309 Soft Condensed Matter +1310.4310 Logic in Computer Science +1310.4315 Phenomenology +1310.4321 Atmospheric and Oceanic Physics +1310.4323 Differential Geometry +1310.4326 Analysis of PDEs +1310.4327 Soft Condensed Matter +1310.4336 Number Theory +1310.4339 Analysis of PDEs +1310.4340 Experiment +1310.4343 Dynamical Systems +1310.4347 Information Theory +1310.4350 Astrophysics of Galaxies +1310.4355 Optimization and Control +1310.4356 Complex Variables +1310.4360 Spectral Theory +1310.4362 Machine Learning +1310.4369 Phenomenology +1310.4370 Optics +1310.4371 Methodology +1310.4381 Combinatorics +1310.4386 Algebraic Geometry +1310.4388 +1310.4392 Human-Computer Interaction +1310.4409 Experiment +1310.4411 Computation +1310.4418 Combinatorics +1310.4421 Number Theory +1310.4426 Lattice +1310.4428 Phenomenology +1310.4429 Networking and Internet Architecture +1310.4433 Strongly Correlated Electrons +1310.4436 Rings and Algebras +1310.4438 Functional Analysis +1310.4440 Group Theory +1310.4442 Materials Science +1310.4444 Applications +1310.4450 +1310.4453 Functional Analysis +1310.4454 Representation Theory +1310.4456 Machine Learning +1310.4458 Number Theory +1310.4459 Graphics +1310.4465 +1310.4466 Instrumentation and Detectors +1310.4467 Representation Theory +1310.4470 General Physics +1310.4473 +1310.4474 Probability +1310.4479 Accelerator Physics +1310.4480 Medical Physics +1310.4483 Differential Geometry +1310.4485 Cryptography and Security +1310.4487 Instrumentation and Detectors +1310.4488 Solar and Stellar Astrophysics +1310.4492 +math/0311061 Metric Geometry +physics/0005017 General Physics +physics/0006006 General Physics +0707.0805 Statistics Theory +0707.0878 Optimization and Control +0711.2801 Statistics Theory +0712.1638 Mesoscale and Nanoscale Physics +0801.4099 Symplectic Geometry +0807.3154 Differential Geometry +0809.1241 Statistics Theory +0809.3170 Statistics Theory +0810.4727 Statistics Theory +0810.5551 Statistics Theory +0811.4634 Materials Science +0904.1910 Information Theory +0907.1320 Materials Science +0907.1707 Classical Physics +0908.1454 +0908.3041 +0910.2510 +0910.5801 Phenomenology +0912.0415 +0912.2500 Symplectic Geometry +1001.1945 Commutative Algebra +1002.2267 General Mathematics +1002.4119 +1003.0625 Analysis of PDEs +1004.0305 Group Theory +1006.4590 Phenomenology +1010.0260 Differential Geometry +1010.2143 Commutative Algebra +1011.0088 Probability +1012.0065 Information Theory +1012.0999 Chaotic Dynamics +1102.2918 Soft Condensed Matter +1102.4328 General Topology +1103.5364 Combinatorics +1104.3830 Numerical Analysis +1105.1566 Classical Analysis and ODEs +1107.0118 Discrete Mathematics +1108.1483 Machine Learning +1108.3969 Phenomenology +1108.5935 Number Theory +1109.0422 Probability +1109.4363 Probability +1110.4531 Machine Learning +1111.1169 Experiment +1111.6736 Algebraic Topology +1112.5209 Theory +1201.3298 Computational Physics +1201.4765 Probability +1202.5672 +1203.0862 Probability +1203.1146 Differential Geometry +1203.4431 Superconductivity +1203.4510 Data Analysis, Statistics and Probability +1204.0383 Number Theory +1204.0432 Dynamical Systems +1204.2729 +1204.2966 Mesoscale and Nanoscale Physics +1204.3212 Statistics Theory +1204.4688 Data Structures and Algorithms +1205.0462 +1205.2081 Optimization and Control +1205.2210 Superconductivity +1205.3315 +1205.4140 Fluid Dynamics +1205.4542 Fluid Dynamics +1205.6406 Information Theory +1205.6550 Algebraic Geometry +1206.0892 Metric Geometry +1206.3131 Algebraic Geometry +1206.4218 Algebraic Topology +1206.5174 Logic in Computer Science +1206.6133 Statistical Mechanics +1207.0511 +1207.4707 Information Theory +1207.5222 Classical Analysis and ODEs +1208.1056 Statistics Theory +1208.1093 Number Theory +1208.2031 Differential Geometry +1209.3947 Strongly Correlated Electrons +1209.4396 Number Theory +1209.5609 Phenomenology +1209.6366 +1210.2134 +1210.3056 Differential Geometry +1210.3384 Learning +1210.6817 Optimization and Control +1211.0820 Lattice +1211.2176 +1211.2473 Combinatorics +1211.4468 Number Theory +1211.5203 General Physics +1211.5540 Materials Science +1211.7358 Statistical Mechanics +1212.0616 Networking and Internet Architecture +1212.2436 Theory +1212.2901 +1212.3245 +1301.1399 Phenomenology +1301.3115 Group Theory +1301.3642 Quantum Gases +1301.5666 Differential Geometry +1301.6492 Metric Geometry +1301.6652 Operator Algebras +1301.7223 Operator Algebras +1302.0735 Fluid Dynamics +1302.1198 Theory +1302.1577 Theory +1302.1811 Quantum Gases +1302.1963 Optics +1302.2767 Learning +1302.2873 +1302.3162 Symplectic Geometry +1302.3225 Theory +1302.3447 Statistics Theory +1302.4788 Information Theory +1302.7031 Phenomenology +1303.0231 Disordered Systems and Neural Networks +1303.0451 Algebraic Geometry +1303.0603 Mesoscale and Nanoscale Physics +1303.0663 Learning +1303.2842 Phenomenology +1303.3610 Superconductivity +1303.4015 Learning +1303.4867 +1303.5290 General Finance +1303.5308 Algebraic Geometry +1303.6153 Functional Analysis +1303.6792 Probability +1303.6930 Complex Variables +1304.0149 Biological Physics +1304.1206 Discrete Mathematics +1304.1567 Social and Information Networks +1304.3142 Instrumentation and Methods for Astrophysics +1304.3286 Quantum Gases +1304.3391 Instrumentation and Methods for Astrophysics +1304.3656 Statistics Theory +1304.4574 +1304.4936 Phenomenology +1304.5002 Mesoscale and Nanoscale Physics +1304.5866 Classical Analysis and ODEs +1304.7041 +1304.7469 +1304.7731 Quantum Gases +1305.0112 Number Theory +1305.0866 Networking and Internet Architecture +1305.0894 Quantum Gases +1305.1438 Functional Analysis +1305.1743 Materials Science +1305.2117 Cosmology and Nongalactic Astrophysics +1305.2372 Chaotic Dynamics +1305.2541 Algebraic Geometry +1305.2845 Materials Science +1305.4394 Analysis of PDEs +1305.4499 +1305.4583 Graphics +1305.4717 Dynamical Systems +1305.5727 Optics +1305.6010 Other Computer Science +1305.6011 Other Computer Science +1305.6143 Computation and Language +1305.6482 Combinatorics +1305.6874 General Physics +1305.6879 +1305.7395 Chaotic Dynamics +1306.0072 Populations and Evolution +1306.0272 Analysis of PDEs +1306.0811 Learning +1306.0864 Combinatorics +1306.1422 +1306.1691 Operator Algebras +1306.1959 Graphics +1306.2834 Methodology +1306.2956 Phenomenology +1306.3308 Quantum Gases +1306.3578 Cosmology and Nongalactic Astrophysics +1306.3654 +1306.4511 Phenomenology +1306.4949 Systems and Control +1306.5850 Information Theory +1306.6893 Plasma Physics +1307.0147 Graphics +1307.0266 Theory +1307.0283 Phenomenology +1307.0500 Materials Science +1307.0775 Optimization and Control +1307.1700 Statistical Mechanics +1307.1739 Computer Vision and Pattern Recognition +1307.2529 +1307.2532 Probability +1307.2754 Algebraic Geometry +1307.3106 Theory +1307.3561 Phenomenology +1307.3889 Instrumentation and Methods for Astrophysics +1307.4361 Mesoscale and Nanoscale Physics +1307.4448 +1307.5227 Statistical Mechanics +1307.5948 +1307.6754 Functional Analysis +1307.6983 Optics +1307.7725 +1307.8134 Phenomenology +1308.0424 +1308.0598 Phenomenology +1308.1034 Logic in Computer Science +1308.1583 Disordered Systems and Neural Networks +1308.1848 High Energy Astrophysical Phenomena +1308.2806 Data Analysis, Statistics and Probability +1308.4074 Chaotic Dynamics +1308.4876 Quantum Gases +1308.5930 Superconductivity +1309.0003 Probability +1309.0679 Cosmology and Nongalactic Astrophysics +1309.1531 Strongly Correlated Electrons +1309.1687 Theory +1309.2553 Astrophysics of Galaxies +1309.2710 Computational Physics +1309.2994 Statistical Mechanics +1309.4106 Strongly Correlated Electrons +1309.4820 Numerical Analysis +1309.5081 Analysis of PDEs +1309.5678 Data Analysis, Statistics and Probability +1309.6057 +1309.7352 Cosmology and Nongalactic Astrophysics +1309.7572 Information Theory +1309.7767 Strongly Correlated Electrons +1310.0319 Computer Vision and Pattern Recognition +1310.0381 Category Theory +1310.1373 Materials Science +1310.1646 Combinatorics +1310.1705 Algebraic Geometry +1310.2479 Physics and Society +1310.2573 Probability +1310.3358 Systems and Control +1310.3371 Strongly Correlated Electrons +1310.3634 Phenomenology +1310.3794 +1310.4159 Combinatorics +1310.5259 Statistical Mechanics +1310.5846 Experiment +1310.5987 +1310.6324 Number Theory +1310.6326 Differential Geometry +1310.6526 Computational Finance +1310.7222 Category Theory +1310.7669 +1310.7682 Neurons and Cognition +1310.7745 Lattice +1310.7852 Information Theory +1310.8268 Quantitative Methods +1310.8327 Experiment +1311.0072 Machine Learning +1311.0080 Mesoscale and Nanoscale Physics +1311.0114 Lattice +1311.0124 Computer Vision and Pattern Recognition +1311.0283 Phenomenology +1311.0287 High Energy Astrophysical Phenomena +1311.0289 Differential Geometry +1311.0291 Methodology +1311.0293 Computational Complexity +1311.0299 Experiment +1311.0303 Logic +1311.0306 +1311.0315 Classical Physics +1311.0317 Methodology +1311.0319 Phenomenology +1311.0322 Lattice +1311.0324 Information Theory +1311.0328 Optimization and Control +1311.0332 Number Theory +1311.0333 Number Theory +1311.0335 Logic in Computer Science +1311.0336 Soft Condensed Matter +1311.0339 Information Retrieval +1311.0342 Strongly Correlated Electrons +1311.0343 Data Analysis, Statistics and Probability +1311.0350 Databases +1311.0352 Robotics +1311.0353 Mesoscale and Nanoscale Physics +1311.0354 Risk Management +1311.0357 +1311.0359 Networking and Internet Architecture +1311.0360 Machine Learning +1311.0361 Theory +1311.0365 Classical Analysis and ODEs +1311.0366 Data Structures and Algorithms +1311.0374 Strongly Correlated Electrons +1311.0375 Functional Analysis +1311.0377 Representation Theory +1311.0378 Distributed, Parallel, and Cluster Computing +1311.0382 +1311.0386 Optics +1311.0388 Robotics +1311.0390 Computers and Society +1311.0391 Information Theory +1311.0392 Optics +1311.0394 Optics +1311.0397 Phenomenology +1311.0399 Populations and Evolution +1311.0401 Dynamical Systems +1311.0407 Applications +1311.0408 High Energy Astrophysical Phenomena +1311.0409 Solar and Stellar Astrophysics +1311.0410 Symplectic Geometry +1311.0411 Pattern Formation and Solitons +1311.0412 Statistics Theory +1311.0413 Artificial Intelligence +1311.0414 General Finance +1311.0416 Applications +1311.0423 Numerical Analysis +1311.0425 Superconductivity +1311.0426 +1311.0428 Differential Geometry +1311.0433 Information Theory +1311.0434 Geometric Topology +1311.0437 +1311.0441 Quantum Gases +1311.0443 +1311.0444 Algebraic Topology +1311.0447 Algebraic Topology +1311.0452 Combinatorics +1311.0453 Functional Analysis +1311.0454 Differential Geometry +1311.0455 Number Theory +1311.0460 Neural and Evolutionary Computing +1311.0461 Information Theory +1311.0462 Computational Physics +1311.0465 Computational Physics +1311.0466 Machine Learning +1311.0468 Machine Learning +1311.0469 Lattice +1311.0471 Lattice +1311.0473 Lattice +1311.0475 Combinatorics +1311.0476 General Topology +1311.0478 High Energy Astrophysical Phenomena +1311.0479 Combinatorics +1311.0480 Probability +1311.0481 Quantum Algebra +1311.0485 Materials Science +1311.0486 Performance +1311.0487 Theory +1311.0488 +1311.0494 Combinatorics +1311.0495 Exactly Solvable and Integrable Systems +1311.0497 Functional Analysis +1311.0499 Logic +1311.0500 Algebraic Geometry +1311.0501 Classical Analysis and ODEs +1311.0503 Geometric Topology +1311.0504 Representation Theory +1311.0505 Databases +1311.0506 Mesoscale and Nanoscale Physics +1311.0510 Applications +1311.0516 Optics +1311.0518 Geometric Topology +1311.0519 Materials Science +1311.0521 Molecular Networks +1311.0522 Combinatorics +1311.0523 Biological Physics +1311.0524 Methodology +1311.0526 Geometric Topology +1311.0527 Human-Computer Interaction +1311.0528 Symplectic Geometry +1311.0529 Human-Computer Interaction +1311.0530 Computational Finance +1311.0531 Number Theory +1311.0534 Computational Engineering, Finance, and Science +1311.0535 Dynamical Systems +1311.0539 Combinatorics +1311.0540 Probability +1311.0541 Robotics +1311.0543 Quantum Gases +1311.0545 History and Overview +1311.0546 Chaotic Dynamics +1311.0547 Symplectic Geometry +1311.0548 Optics +1311.0550 Phenomenology +1311.0551 Representation Theory +1311.0554 Representation Theory +1311.0558 Combinatorics +1311.0564 Probability +1311.0569 +1311.0572 +1311.0574 Discrete Mathematics +1311.0578 Instrumentation and Methods for Astrophysics +1311.0581 Combinatorics +1311.0583 Numerical Analysis +1311.0587 Statistics Theory +1311.0590 Computational Physics +1311.0591 Experiment +1311.0593 Phenomenology +1311.0594 Statistics Theory +1311.0595 +1311.0596 +1311.0598 Neural and Evolutionary Computing +1311.0599 Combinatorics +1311.0606 Probability +1311.0608 Quantum Algebra +1311.0611 Superconductivity +1311.0617 Geometric Topology +1311.0621 Geometric Topology +1311.0622 Machine Learning +1311.0624 Functional Analysis +1311.0627 Differential Geometry +1311.0628 Earth and Planetary Astrophysics +1311.0631 Superconductivity +1311.0632 Formal Languages and Automata Theory +1311.0634 Methodology +1311.0636 Learning +1311.0637 Group Theory +1311.0640 Numerical Analysis +1311.0643 Phenomenology +1311.0645 Analysis of PDEs +1311.0646 Computer Vision and Pattern Recognition +1311.0651 Populations and Evolution +1311.0652 Lattice +1311.0653 Other Computer Science +1311.0654 Statistical Mechanics +1311.0660 Applications +1311.0663 Human-Computer Interaction +1311.0664 Materials Science +1311.0666 +1311.0667 Information Retrieval +1311.0671 Differential Geometry +1311.0677 Complex Variables +1311.0681 Mathematical Software +1311.0682 Combinatorics +1311.0685 Instrumentation and Methods for Astrophysics +1311.0690 Optimization and Control +1311.0692 +1311.0694 Analysis of PDEs +1311.0695 Probability +1311.0696 Fluid Dynamics +1311.0697 Group Theory +1311.0702 Lattice +1311.0704 Instrumentation and Methods for Astrophysics +1311.0713 Data Structures and Algorithms +1311.0715 Phenomenology +1311.0716 Artificial Intelligence +1311.0717 Number Theory +1311.0721 Probability +1311.0722 Analysis of PDEs +1311.0723 Analysis of PDEs +1311.0724 Logic +1311.0728 Programming Languages +1311.0731 Programming Languages +1311.0735 +1311.0741 Classical Physics +1311.0742 Mesoscale and Nanoscale Physics +1311.0749 Optics +1311.0751 Optics +1311.0753 Neurons and Cognition +1311.0755 Theory +1311.0756 Instrumentation and Detectors +1311.0758 Multiagent Systems +1311.0759 Popular Physics +1311.0761 Optimization and Control +1311.0762 Experiment +1311.0770 Materials Science +1311.0773 Group Theory +1311.0777 +1311.0778 Neurons and Cognition +1311.0787 Networking and Internet Architecture +1311.0795 Analysis of PDEs +1311.0796 Algebraic Topology +1311.0798 Distributed, Parallel, and Cluster Computing +1311.0799 +1311.0800 Learning +1311.0802 Genomics +1311.0804 Computers and Society +1311.0806 Computers and Society +1311.0819 Sound +1311.0820 Representation Theory +1311.0821 Soft Condensed Matter +1311.0822 Chaotic Dynamics +1311.0832 Differential Geometry +1311.0833 Computation and Language +1311.0835 Methodology +1311.0838 Materials Science +1311.0839 Instrumentation and Methods for Astrophysics +1311.0842 Sound +1311.0843 Networking and Internet Architecture +1311.0854 Computational Physics +1311.0855 Group Theory +1311.0856 Cosmology and Nongalactic Astrophysics +astro-ph/0509538 +math-ph/0102026 +0711.0790 Operator Algebras +0711.1688 Superconductivity +0804.0911 Superconductivity +0807.3934 Analysis of PDEs +0910.2656 Group Theory +1002.2514 +1005.5687 Group Theory +1009.0856 Algebraic Geometry +1103.2452 Experiment +1104.2953 Functional Analysis +1105.3419 +1105.6115 Information Theory +1106.0286 Physics and Society +1106.1688 Probability +1107.1572 Number Theory +1107.4279 Superconductivity +1107.4660 Networking and Internet Architecture +1109.4154 +1110.1826 Combinatorics +1110.6039 Representation Theory +1111.4572 Optimization and Control +1112.2541 +1112.3837 Category Theory +1112.6141 Quantum Gases +1112.6358 Quantum Gases +1201.4930 +1202.5470 Information Theory +1203.1453 Classical Analysis and ODEs +1203.2220 +1203.3802 Cosmology and Nongalactic Astrophysics +1204.1612 +1204.4724 Cosmology and Nongalactic Astrophysics +1204.6656 Theory +1205.0219 Fluid Dynamics +1205.0444 Logic +1205.1183 Computational Complexity +1205.2589 Superconductivity +1205.6218 Computational Complexity +1206.1129 Superconductivity +1206.5898 Adaptation and Self-Organizing Systems +1207.1630 Computational Finance +1208.1384 High Energy Astrophysical Phenomena +1208.3777 Classical Analysis and ODEs +1208.3881 Mesoscale and Nanoscale Physics +1209.0957 Mesoscale and Nanoscale Physics +1209.1138 Strongly Correlated Electrons +1209.2413 Cosmology and Nongalactic Astrophysics +1209.2921 +1209.3068 +1209.4108 Solar and Stellar Astrophysics +1209.5447 Superconductivity +1210.0236 High Energy Astrophysical Phenomena +1210.2535 Mesoscale and Nanoscale Physics +1210.4731 Disordered Systems and Neural Networks +1210.7206 +1211.0996 Learning +1211.2315 Machine Learning +1211.2390 Algebraic Geometry +1211.3517 Mesoscale and Nanoscale Physics +1211.3721 Earth and Planetary Astrophysics +1211.4791 +1211.6328 +1212.0562 Quantum Gases +1212.2951 +1212.4548 Computational Complexity +1212.4810 +1212.4830 Strongly Correlated Electrons +1301.0233 Statistical Mechanics +1301.1016 +1301.2065 Quantum Gases +1301.3916 Probability +1301.4025 Geometric Topology +1301.5728 Information Theory +1301.6088 Materials Science +1301.6853 +1301.7048 Experiment +1302.1197 Cosmology and Nongalactic Astrophysics +1302.1633 K-Theory and Homology +1302.1849 Analysis of PDEs +1302.4265 Dynamical Systems +1302.5693 Quantum Gases +1302.6981 Astrophysics of Galaxies +1302.7115 +1303.0272 Theory +1303.0312 Algebraic Topology +1303.1893 High Energy Astrophysical Phenomena +1303.1898 High Energy Astrophysical Phenomena +1303.2304 Combinatorics +1303.3324 Superconductivity +1303.3475 Information Theory +1303.5020 Cosmology and Nongalactic Astrophysics +1303.5091 Solar and Stellar Astrophysics +1303.6050 +1303.6775 Data Structures and Algorithms +1303.7407 Materials Science +1304.0103 Metric Geometry +1304.0970 Geometric Topology +1304.1959 Mesoscale and Nanoscale Physics +1304.2105 +1304.3024 High Energy Astrophysical Phenomena +1304.3054 +1304.3312 Numerical Analysis +1304.3750 Classical Physics +1304.3993 Differential Geometry +1304.4032 Superconductivity +1304.4055 Neural and Evolutionary Computing +1304.4093 +1304.4110 Theory +1304.4114 Lattice +1304.4203 High Energy Astrophysical Phenomena +1304.4256 Cosmology and Nongalactic Astrophysics +1304.4349 Statistical Mechanics +1304.4654 Methodology +1304.4680 Data Structures and Algorithms +1304.4731 Systems and Control +1304.4733 +1304.4780 +1304.4819 Combinatorics +1304.4856 Populations and Evolution +1304.4857 +1304.4858 Dynamical Systems +1304.4948 Data Structures and Algorithms +1304.4958 Algebraic Geometry +1304.4960 Analysis of PDEs +1304.4963 Physics and Society +1304.4965 Artificial Intelligence +1304.4971 Fluid Dynamics +1304.4974 Graphics +1304.4976 Numerical Analysis +1304.4989 Optics +1304.4994 Computer Vision and Pattern Recognition +1304.5015 Networking and Internet Architecture +1304.5019 Fluid Dynamics +1304.5020 Number Theory +1304.5022 Cryptography and Security +1304.5023 Solar and Stellar Astrophysics +1304.5024 Differential Geometry +1304.5026 Symplectic Geometry +1304.5027 Geometric Topology +1304.5028 Differential Geometry +1304.5031 Cell Behavior +1304.5045 Distributed, Parallel, and Cluster Computing +1304.5047 Phenomenology +1304.5048 Complex Variables +1304.5049 Combinatorics +1304.5051 Artificial Intelligence +1304.5052 Group Theory +1304.5053 Group Theory +1304.5055 Instrumentation and Detectors +1304.5057 Materials Science +1304.5059 Phenomenology +1304.5062 Cosmology and Nongalactic Astrophysics +1304.5068 Multimedia +1304.5069 Information Theory +1304.5072 Dynamical Systems +1304.5073 Information Theory +1304.5075 Information Theory +1304.5078 Statistical Mechanics +1304.5080 Phenomenology +1304.5081 Hardware Architecture +1304.5083 Number Theory +1304.5084 Systems and Control +1304.5085 Phenomenology +1304.5089 Commutative Algebra +1304.5093 Algebraic Geometry +1304.5098 Instrumentation and Methods for Astrophysics +1304.5099 Computational Engineering, Finance, and Science +1304.5100 Networking and Internet Architecture +1304.5101 Digital Libraries +1304.5102 +1304.5105 Probability +1304.5107 Digital Libraries +1304.5108 Representation Theory +1304.5109 Discrete Mathematics +1304.5110 Digital Libraries +1304.5113 Probability +1304.5114 Statistical Mechanics +1304.5118 Quantum Gases +1304.5124 Functional Analysis +1304.5132 Chaotic Dynamics +1304.5134 +1304.5137 Geometric Topology +1304.5139 Materials Science +1304.5142 Probability +1304.5145 Fluid Dynamics +1304.5152 Logic +1304.5155 +1304.5156 Pricing of Securities +1304.5158 Quantum Algebra +1304.5159 Artificial Intelligence +1304.5162 Experiment +1304.5163 Other Quantitative Biology +1304.5166 Earth and Planetary Astrophysics +1304.5168 Information Retrieval +1304.5178 Cosmology and Nongalactic Astrophysics +1304.5181 Networking and Internet Architecture +1304.5189 Networking and Internet Architecture +1304.5190 Networking and Internet Architecture +1304.5194 Algebraic Topology +1304.5199 Logic in Computer Science +1304.5201 Analysis of PDEs +1304.5205 +1304.5207 +1304.5209 Probability +1304.5212 Computer Vision and Pattern Recognition +1304.5213 Information Retrieval +1304.5217 Statistics Theory +1304.5222 Materials Science +1304.5224 Differential Geometry +1304.5225 Phenomenology +1304.5228 Dynamical Systems +1304.5236 Analysis of PDEs +nucl-th/0007056 +nucl-th/0210066 +0711.2345 Methodology +0803.0399 Quantum Algebra +0804.1355 Geometric Topology +0806.3068 Geometric Topology +0903.4089 Other Condensed Matter +0903.4563 Soft Condensed Matter +0904.1301 Quantum Algebra +0907.2429 Soft Condensed Matter +0908.0005 Geometric Topology +0911.3845 Algebraic Geometry +1003.1853 +1004.1130 +1004.3501 Computational Physics +1004.4420 Data Structures and Algorithms +1006.2949 Earth and Planetary Astrophysics +1009.3239 Strongly Correlated Electrons +1009.4168 Spectral Theory +1011.4735 Algebraic Topology +1102.4534 +1102.5457 Trading and Market Microstructure +1105.1546 Physics and Society +1108.4378 +1109.5478 +1110.1371 Geometric Topology +1112.4254 Probability +1204.1504 Cosmology and Nongalactic Astrophysics +1204.6709 +1205.3881 Mesoscale and Nanoscale Physics +1206.4965 Differential Geometry +1207.3551 Probability +1207.5449 Theory +1208.5213 Combinatorics +1209.3087 +1210.0765 Materials Science +1210.2639 Differential Geometry +1210.3780 Algebraic Geometry +1210.5523 Phenomenology +1210.6934 Geometric Topology +1211.3057 Lattice +1211.3295 Machine Learning +1211.4050 +1211.6519 Mesoscale and Nanoscale Physics +1211.7004 Phenomenology +1212.2070 +1212.5890 Number Theory +1301.3931 Formal Languages and Automata Theory +1301.5048 Algebraic Geometry +1301.5080 Combinatorics +1301.7220 Theory +1301.7627 Optimization and Control +1301.7750 +1302.0241 +1302.0945 Mesoscale and Nanoscale Physics +1302.1592 Information Theory +1302.2821 Mesoscale and Nanoscale Physics +1302.3527 Theory +1302.3627 Mesoscale and Nanoscale Physics +1303.1138 +1303.1570 Mesoscale and Nanoscale Physics +1303.1622 Phenomenology +1303.1878 Quantum Algebra +1303.2823 Learning +1303.3041 Strongly Correlated Electrons +1303.3471 Numerical Analysis +1303.3792 Materials Science +1303.7408 Instrumentation and Methods for Astrophysics +1304.0608 Information Theory +1304.0968 Quantum Algebra +1304.4763 Populations and Evolution +1304.5160 Combinatorics +1304.5498 Data Structures and Algorithms +1304.5950 Superconductivity +1304.6060 Optics +1305.1342 +1305.4351 +1305.5808 +1305.6510 Atomic Physics +1306.3148 Phenomenology +1306.4172 Atomic Physics +1306.4448 Phenomenology +1306.4986 Statistical Mechanics +1306.5223 Mesoscale and Nanoscale Physics +1306.5697 +1306.5772 +1306.6797 Mesoscale and Nanoscale Physics +1307.0400 +1307.1716 Optics +1307.1734 Theory +1307.4398 Cosmology and Nongalactic Astrophysics +1307.5175 Quantum Gases +1307.5487 Experiment +1307.6069 Cosmology and Nongalactic Astrophysics +1307.6121 Superconductivity +1307.6723 Mesoscale and Nanoscale Physics +1307.7135 Experiment +1308.0474 Phenomenology +1308.0816 Phenomenology +1308.1161 Combinatorics +1308.1788 Neurons and Cognition +1308.1836 Phenomenology +1308.4151 Strongly Correlated Electrons +1308.5834 Theory +1308.6460 Strongly Correlated Electrons +1308.6655 Soft Condensed Matter +1309.0575 Experiment +1309.2423 Multimedia +1309.3695 Dynamical Systems +1309.4257 Superconductivity +1309.5921 Mesoscale and Nanoscale Physics +1309.5936 Statistics Theory +1309.6301 Computer Vision and Pattern Recognition +1309.6683 Social and Information Networks +1309.6979 High Energy Astrophysical Phenomena +1309.7001 Numerical Analysis +1309.7006 High Energy Astrophysical Phenomena +1309.7007 High Energy Astrophysical Phenomena +1309.7008 High Energy Astrophysical Phenomena +1309.7010 High Energy Astrophysical Phenomena +1309.7040 Classical Analysis and ODEs +1309.7051 Strongly Correlated Electrons +1309.7063 Computers and Society +1309.7072 Genomics +1309.7073 Soft Condensed Matter +1309.7075 Phenomenology +1309.7076 Representation Theory +1309.7079 Optics +1309.7080 High Energy Astrophysical Phenomena +1309.7081 High Energy Astrophysical Phenomena +1309.7082 Hardware Architecture +1309.7083 Instrumentation and Detectors +1309.7084 Data Structures and Algorithms +1309.7085 Phenomenology +1309.7087 Soft Condensed Matter +1309.7091 +1309.7092 +1309.7093 +1309.7095 Instrumentation and Methods for Astrophysics +1309.7101 Classical Analysis and ODEs +1309.7102 Information Theory +1309.7105 Materials Science +1309.7109 Information Theory +1309.7113 Group Theory +1309.7115 Quantum Algebra +1309.7116 Mesoscale and Nanoscale Physics +1309.7117 Combinatorics +1309.7122 Computational Engineering, Finance, and Science +1309.7124 Pattern Formation and Solitons +1309.7126 Solar and Stellar Astrophysics +1309.7129 Cosmology and Nongalactic Astrophysics +1309.7130 Complex Variables +1309.7137 High Energy Astrophysical Phenomena +1309.7140 Networking and Internet Architecture +1309.7141 Data Structures and Algorithms +1309.7145 Artificial Intelligence +1309.7146 Statistical Mechanics +1309.7147 Soft Condensed Matter +1309.7150 Analysis of PDEs +1309.7152 Functional Analysis +1309.7153 Representation Theory +1309.7157 Genomics +1309.7158 Exactly Solvable and Integrable Systems +1309.7159 Mesoscale and Nanoscale Physics +1309.7165 Analysis of PDEs +1309.7166 Materials Science +1309.7170 Computer Vision and Pattern Recognition +1309.7171 Optics +1309.7174 +1309.7176 Functional Analysis +1309.7177 Exactly Solvable and Integrable Systems +1309.7184 Optics +1309.7186 +1309.7190 Optics +1309.7191 Classical Physics +1309.7195 Materials Science +1309.7196 Analysis of PDEs +1309.7198 Computational Complexity +1309.7203 Probability +1309.7206 +1309.7208 Fluid Dynamics +1309.7214 +1309.7217 +1309.7228 Combinatorics +1309.7230 Analysis of PDEs +1309.7236 K-Theory and Homology +1309.7237 Algebraic Geometry +1309.7249 Solar and Stellar Astrophysics +1309.7250 Solar and Stellar Astrophysics +1309.7253 Theory +1309.7254 Materials Science +1309.7255 Soft Condensed Matter +1309.7261 Computers and Society +1309.7262 Computers and Society +1309.7264 Optimization and Control +1309.7266 Computers and Society +1309.7270 Information Retrieval +1309.7276 Computer Vision and Pattern Recognition +1309.7277 Analysis of PDEs +1309.7280 Numerical Analysis +1309.7285 Phenomenology +1309.7288 Computational Complexity +1309.7289 Social and Information Networks +1309.7291 Analysis of PDEs +1309.7294 +1309.7295 Group Theory +1309.7299 Rings and Algebras +1309.7308 Strongly Correlated Electrons +1309.7309 +1309.7312 Computation and Language +1309.7315 Systems and Control +1309.7316 Representation Theory +1309.7321 Hardware Architecture +1309.7322 Mesoscale and Nanoscale Physics +1309.7330 Phenomenology +1309.7334 Networking and Internet Architecture +1309.7338 Phenomenology +1309.7341 Software Engineering +math/0106001 Quantum Algebra +math/0111082 Algebraic Geometry +math/0211389 Category Theory +math/0309320 Quantum Algebra +math/0503380 Quantum Algebra +math/0505410 Quantum Algebra +math/0601312 Quantum Algebra +math/0612419 Geometric Topology +0704.0200 Phenomenology +0706.0650 Soft Condensed Matter +0712.1417 Phenomenology +0803.1074 Phenomenology +0805.3991 General Physics +0810.4486 +0902.3348 Representation Theory +0903.4917 Representation Theory +0905.4363 Phenomenology +0910.4397 Machine Learning +1001.0500 Phenomenology +1005.5019 Materials Science +1008.3726 Classical Analysis and ODEs +1008.3897 Representation Theory +1101.4763 Algebraic Geometry +1102.3864 Superconductivity +1104.3721 Phenomenology +1106.1015 Phenomenology +1108.1539 Representation Theory +1108.1970 Operator Algebras +1109.2402 Representation Theory +1109.2892 Dynamical Systems +1110.5402 Analysis of PDEs +1110.6228 Machine Learning +1111.3244 Data Structures and Algorithms +1111.4518 Mesoscale and Nanoscale Physics +1111.5020 Quantum Gases +1112.4576 Exactly Solvable and Integrable Systems +1112.4960 Functional Analysis +1201.1662 Probability +1201.6008 +1203.5169 Combinatorics +1205.0101 Category Theory +1205.2346 +1205.3253 Combinatorics +1205.5018 Mesoscale and Nanoscale Physics +1206.1401 Populations and Evolution +1206.1517 Biomolecules +1207.5192 Theory +1207.6435 +1208.0334 Cosmology and Nongalactic Astrophysics +1209.0009 Theory +1209.2169 Disordered Systems and Neural Networks +1209.3307 Physics and Society +1209.3431 Machine Learning +1209.5099 Strongly Correlated Electrons +1209.5220 Number Theory +1209.5658 Phenomenology +1210.2263 Phenomenology +1210.3578 Instrumentation and Methods for Astrophysics +1210.3763 Phenomenology +1210.7118 Phenomenology +1210.7598 Algebraic Geometry +1210.8339 +1211.0634 History and Philosophy of Physics +1211.3705 Strongly Correlated Electrons +1211.6056 +1211.6325 Cosmology and Nongalactic Astrophysics +1211.6478 Cosmology and Nongalactic Astrophysics +1211.6776 Theory +1212.0556 +1212.2439 Physics and Society +1212.2522 Functional Analysis +1212.3043 Plasma Physics +1212.3300 +1212.3856 Soft Condensed Matter +1212.3892 +1212.4668 Lattice +1212.4893 General Physics +1212.5699 +1212.6656 Representation Theory +1212.6764 Strongly Correlated Electrons +1301.0632 Theory +1301.1114 Lattice +1301.1567 Phenomenology +1301.2991 +1301.4679 Machine Learning +1301.4906 Atomic Physics +1301.6281 Phenomenology +1301.6897 Functional Analysis +1301.7640 Lattice +1302.2491 Strongly Correlated Electrons +1302.2877 Statistical Mechanics +1302.2987 Lattice +1302.3055 +1302.3896 Strongly Correlated Electrons +1302.5434 Theory +1302.5640 Mesoscale and Nanoscale Physics +1302.6145 Chaotic Dynamics +1302.6456 +1302.6473 Chemical Physics +1302.7009 Soft Condensed Matter +1302.7027 Statistical Mechanics +1302.7147 Fluid Dynamics +1303.0758 Phenomenology +1303.1268 +1303.1281 Strongly Correlated Electrons +1303.1542 Mesoscale and Nanoscale Physics +1303.1760 +1303.1776 Cosmology and Nongalactic Astrophysics +1303.2335 Cosmology and Nongalactic Astrophysics +1303.3091 +1303.4153 Distributed, Parallel, and Cluster Computing +1303.4357 +1303.4458 Functional Analysis +1303.5060 Cosmology and Nongalactic Astrophysics +1303.5843 High Energy Astrophysical Phenomena +1303.5975 Superconductivity +1303.6750 Machine Learning +1303.6918 Phenomenology +1303.6949 Cosmology and Nongalactic Astrophysics +1303.7210 Phenomenology +1303.7278 Theory +1304.0381 Phenomenology +1304.0464 Strongly Correlated Electrons +1304.1078 Astrophysics of Galaxies +1304.1195 Statistical Mechanics +1304.1431 +1304.1457 Statistical Mechanics +1304.1685 Mesoscale and Nanoscale Physics +1304.1806 Theory +1304.1817 Cosmology and Nongalactic Astrophysics +1304.2067 Theory +1304.2594 Phenomenology +1304.2836 +1304.3046 Materials Science +1304.3205 Experiment +1304.3403 +1304.4166 +1304.4297 +1304.4875 Atomic Physics +1304.4920 Methodology +1304.5577 Statistical Mechanics +1304.6943 Number Theory +1304.7706 Phenomenology +1305.0695 +1305.1279 Lattice +1305.1417 Phenomenology +1305.1457 Phenomenology +1305.1513 Theory +1305.1714 Atomic Physics +1305.1782 Experiment +1305.3093 Phenomenology +1305.3922 +1305.4142 Superconductivity +1305.5098 Analysis of PDEs +1305.5643 Superconductivity +1305.5801 Materials Science +1305.5960 Information Theory +1306.1220 +1306.1553 Artificial Intelligence +1306.2934 History and Overview +1306.3048 +1306.3657 Strongly Correlated Electrons +1306.3856 Risk Management +1306.3860 Learning +1306.4053 High Energy Astrophysical Phenomena +1306.4866 +1306.5169 Phenomenology +1306.5213 Analysis of PDEs +1306.5365 +1306.5417 Applications +1306.5424 Computational Complexity +1306.5491 Theory +1306.5737 History and Philosophy of Physics +1306.5738 Soft Condensed Matter +1306.5740 Experiment +1306.5742 Classical Analysis and ODEs +1306.5767 Phenomenology +1306.5769 History and Philosophy of Physics +1306.5771 Instrumentation and Methods for Astrophysics +1306.5773 Phenomenology +1306.5777 Chaotic Dynamics +1306.5779 Algebraic Geometry +1306.5782 Distributed, Parallel, and Cluster Computing +1306.5786 Statistics Theory +1306.5789 Medical Physics +1306.5791 Analysis of PDEs +1306.5793 Systems and Control +1306.5801 +1306.5803 +1306.5811 Number Theory +1306.5815 Data Structures and Algorithms +1306.5818 +1306.5821 Atomic Physics +1306.5822 Adaptation and Self-Organizing Systems +1306.5824 Computation +1306.5826 Solar and Stellar Astrophysics +1306.5831 Soft Condensed Matter +1306.5832 Geometric Topology +1306.5836 Systems and Control +1306.5840 Theory +1306.5846 Instrumentation and Methods for Astrophysics +1306.5847 Materials Science +1306.5851 Analysis of PDEs +1306.5855 Computer Science and Game Theory +1306.5857 Analysis of PDEs +1306.5858 Artificial Intelligence +1306.5860 Machine Learning +1306.5862 Probability +1306.5866 Complex Variables +1306.5868 Complex Variables +1306.5869 +1306.5872 Complex Variables +1306.5873 Complex Variables +1306.5875 Complex Variables +1306.5882 Representation Theory +1306.5883 Statistics Theory +1306.5893 History and Philosophy of Physics +1306.5902 Atomic and Molecular Clusters +1306.5904 Solar and Stellar Astrophysics +1306.5906 Analysis of PDEs +1306.5910 Differential Geometry +1306.5911 History and Overview +1306.5913 Optimization and Control +1306.5914 Neurons and Cognition +1306.5925 Materials Science +1306.5928 Computational Physics +1306.5929 Number Theory +1306.5930 Programming Languages +1306.5937 Solar and Stellar Astrophysics +1306.5939 Dynamical Systems +1306.5944 Accelerator Physics +1306.5950 +1306.5956 Complex Variables +1306.5959 Dynamical Systems +1306.5960 Artificial Intelligence +1306.5962 Astrophysics of Galaxies +1306.5964 Probability +1306.5967 Rings and Algebras +1306.5970 Logic +1306.5972 Databases +1306.5973 History and Overview +1306.5978 High Energy Astrophysical Phenomena +1306.5981 Accelerator Physics +1306.5982 Artificial Intelligence +1306.5984 Numerical Analysis +1306.5987 Phenomenology +1306.5997 +1306.6004 Logic +1306.6006 Superconductivity +1306.6010 Other Quantitative Biology +1306.6012 Algebraic Geometry +1306.6015 Combinatorics +1306.6017 Networking and Internet Architecture +1306.6020 Cryptography and Security +1306.6021 Chaotic Dynamics +1306.6028 Computation +1306.6032 Programming Languages +1306.6033 Probability +1306.6036 General Physics +1306.6039 Cosmology and Nongalactic Astrophysics +1306.6041 Neural and Evolutionary Computing +1306.6050 Group Theory +1306.6051 Mesoscale and Nanoscale Physics +1306.6054 Logic in Computer Science +1306.6056 Information Theory +1306.6057 Number Theory +1306.6059 Phenomenology +1306.6060 Phenomenology +1306.6062 +1306.6063 Algebraic Geometry +1306.6065 Algebraic Topology +1306.6070 Optimization and Control +1306.6072 Algebraic Topology +1306.6074 Earth and Planetary Astrophysics +hep-ph/0501167 Phenomenology +hep-ph/0511193 Phenomenology +hep-ph/0609040 Phenomenology +math/0408384 General Mathematics +nucl-ex/0102003 +nucl-ex/0109013 +nucl-ex/0112015 +nucl-ex/0201015 +nucl-ex/0210020 +nucl-ex/0211011 +nucl-ex/0309010 +nucl-ex/0310028 +nucl-ex/0411048 +nucl-ex/9907020 +quant-ph/0512123 +0709.2678 General Physics +0810.5257 Representation Theory +0810.5724 Soft Condensed Matter +0812.4088 Superconductivity +0903.5167 Complex Variables +1002.3469 Earth and Planetary Astrophysics +1004.3916 Classical Analysis and ODEs +1006.4623 Classical Analysis and ODEs +1010.1841 Mesoscale and Nanoscale Physics +1011.4858 Earth and Planetary Astrophysics +1012.0276 Populations and Evolution +1012.4053 Algebraic Geometry +1101.1810 Probability +1101.2824 Cosmology and Nongalactic Astrophysics +1103.0959 Representation Theory +1105.1921 +1106.0036 Classical Analysis and ODEs +1107.0315 +1107.2122 Earth and Planetary Astrophysics +1108.0066 Cosmology and Nongalactic Astrophysics +1109.5760 Representation Theory +1110.6501 Representation Theory +1110.6502 Representation Theory +1111.0979 Number Theory +1111.2382 Mesoscale and Nanoscale Physics +1112.1931 Classical Analysis and ODEs +1112.2919 Soft Condensed Matter +1112.3506 Data Structures and Algorithms +1201.2617 Statistics Theory +1202.2898 Classical Analysis and ODEs +1204.4910 Algebraic Geometry +1204.5163 Complex Variables +1205.4040 Disordered Systems and Neural Networks +1206.3613 Representation Theory +1207.0521 Earth and Planetary Astrophysics +1207.0772 Medical Physics +1207.1619 Optics +1208.1759 Earth and Planetary Astrophysics +1209.3129 Emerging Technologies +1209.3885 Analysis of PDEs +1209.6557 Metric Geometry +1210.0110 Quantum Gases +1210.7449 +1210.8260 Chaotic Dynamics +1211.1642 Machine Learning +1211.2613 +1211.5639 Dynamical Systems +1211.6119 Phenomenology +1212.0896 Representation Theory +1212.4761 Spectral Theory +1212.5142 Data Analysis, Statistics and Probability +1212.5146 +1212.6828 Phenomenology +1301.1925 Quantum Gases +1301.4720 General Physics +1301.5307 +1301.6452 Materials Science +1301.7277 Populations and Evolution +1301.7693 Information Theory +1302.1192 Cryptography and Security +1302.2353 Materials Science +1302.3326 +1302.3757 Populations and Evolution +1302.5244 Optimization and Control +1302.5515 Phenomenology +1303.3806 Superconductivity +1303.5029 Multiagent Systems +1304.5246 Mesoscale and Nanoscale Physics +1304.5259 Representation Theory +1304.7176 Fluid Dynamics +1305.0716 Functional Analysis +1305.1102 Robotics +1305.2842 Phenomenology +1305.6488 Strongly Correlated Electrons +1305.6607 Earth and Planetary Astrophysics +1305.6665 Optics +1306.2357 Experiment +1306.2585 Geometric Topology +1306.2756 Statistical Mechanics +1306.3882 Software Engineering +1306.4408 Statistics Theory +1306.4552 Information Theory +1306.4636 Formal Languages and Automata Theory +1306.5093 Information Theory +1306.6242 Quantum Algebra +1307.0304 High Energy Astrophysical Phenomena +1307.1274 Biological Physics +1307.1315 Optics +1307.3644 Phenomenology +1307.6243 Theory +1307.6641 Theory +1307.7005 Molecular Networks +1308.0566 Quantum Algebra +1308.0681 Atomic Physics +1308.1569 +1308.2244 Phenomenology +1308.2531 Cosmology and Nongalactic Astrophysics +1308.3735 Phenomenology +1308.5288 Phenomenology +1309.1466 Earth and Planetary Astrophysics +1309.3221 Solar and Stellar Astrophysics +1309.3447 +1309.3502 Analysis of PDEs +1309.3658 Genomics +1309.3856 +1309.5111 Dynamical Systems +1309.5646 High Energy Astrophysical Phenomena +1309.7138 Logic +1309.7168 Optimization and Control +1309.7744 K-Theory and Homology +1309.7923 Lattice +1310.0767 Strongly Correlated Electrons +1310.1290 +1310.1802 Theory +1310.1821 Dynamical Systems +1310.1991 Geometric Topology +1310.2211 Earth and Planetary Astrophysics +1310.3695 Information Theory +1310.3770 Computational Geometry +1310.5390 Populations and Evolution +1310.6570 Optics +1310.7151 Analysis of PDEs +1310.7225 Biological Physics +1310.7230 Medical Physics +1310.7975 Analysis of PDEs +1310.8524 Quantum Gases +1310.8538 Differential Geometry +1311.0344 Strongly Correlated Electrons +1311.0562 Statistics Theory +1311.0809 Numerical Analysis +1311.0830 Information Theory +1311.0949 +1311.0979 Materials Science +1311.1107 Plasma Physics +1311.1213 Computers and Society +1311.1220 Algebraic Topology +1311.1223 Computer Vision and Pattern Recognition +1311.1224 Numerical Analysis +1311.1230 Analysis of PDEs +1311.1232 Phenomenology +1311.1241 Genomics +1311.1245 Analysis of PDEs +1311.1247 Information Retrieval +1311.1249 Data Structures and Algorithms +1311.1255 Geometric Topology +1311.1259 Information Theory +1311.1270 Cosmology and Nongalactic Astrophysics +1311.1273 Strongly Correlated Electrons +1311.1274 Experiment +1311.1275 Optics +1311.1277 Analysis of PDEs +1311.1279 Computer Vision and Pattern Recognition +1311.1280 Superconductivity +1311.1285 +1311.1288 Information Theory +1311.1291 Information Theory +1311.1292 Methodology +1311.1296 Representation Theory +1311.1298 Data Structures and Algorithms +1311.1303 Superconductivity +1311.1308 Atmospheric and Oceanic Physics +1311.1309 Optimization and Control +1311.1312 Information Theory +1311.1314 Information Theory +1311.1315 Information Theory +1311.1316 Materials Science +1311.1321 Statistical Mechanics +1311.1323 Software Engineering +1311.1325 Lattice +1311.1326 +1311.1332 Astrophysics of Galaxies +1311.1333 Functional Analysis +1311.1334 Software Engineering +1311.1335 Phenomenology +1311.1338 Data Structures and Algorithms +1311.1341 +1311.1343 Software Engineering +1311.1345 Neurons and Cognition +1311.1349 Probability +1311.1361 Materials Science +1311.1362 Materials Science +1311.1367 Lattice +1311.1372 Information Theory +1311.1377 Soft Condensed Matter +1311.1378 Networking and Internet Architecture +1311.1382 +1311.1394 Functional Analysis +1311.1397 Statistical Mechanics +1311.1400 Statistics Theory +1311.1401 Dynamical Systems +1311.1403 Instrumentation and Methods for Astrophysics +1311.1406 Computer Vision and Pattern Recognition +1311.1407 Classical Analysis and ODEs +1311.1409 Combinatorics +1311.1410 +1311.1412 Differential Geometry +1311.1413 Materials Science +1311.1417 Quantitative Methods +1311.1419 Multimedia +1311.1420 Complex Variables +1311.1423 Other Computer Science +1311.1428 Materials Science +1311.1430 Materials Science +1311.1432 Commutative Algebra +1311.1433 Soft Condensed Matter +1311.1435 Networking and Internet Architecture +1311.1436 Networking and Internet Architecture +1311.1438 Methodology +1311.1439 Mesoscale and Nanoscale Physics +1311.1446 Cryptography and Security +1311.1450 Probability +1311.1451 Number Theory +1311.1452 Dynamical Systems +1311.1453 Lattice +1311.1464 Rings and Algebras +1311.1466 +1311.1475 Group Theory +1311.1479 Combinatorics +1311.1484 Physics and Society +1311.1487 Number Theory +1311.1489 Cosmology and Nongalactic Astrophysics +1311.1494 Analysis of PDEs +1311.1495 Chemical Physics +cond-mat/0203381 Disordered Systems and Neural Networks +cond-mat/0411178 Disordered Systems and Neural Networks +cond-mat/0412470 Disordered Systems and Neural Networks +math/0602467 Dynamical Systems +math/0609486 General Mathematics +physics/0703204 Classical Physics +0710.5874 Statistics Theory +0808.3219 +0810.1070 Differential Geometry +0812.1383 Group Theory +0909.2678 Classical Physics +0911.3488 Functional Analysis +1002.1740 Quantum Gases +1005.4708 Number Theory +1009.4720 Geometric Topology +1011.4256 General Physics +1012.0681 +1012.3969 Strongly Correlated Electrons +1102.2619 +1102.3907 Classical Analysis and ODEs +1105.1805 Symplectic Geometry +1105.3541 Dynamical Systems +1108.1776 Combinatorics +1108.2948 Metric Geometry +1108.5082 Differential Geometry +1109.3403 Probability +1109.4089 Strongly Correlated Electrons +1109.6031 K-Theory and Homology +1111.2966 Combinatorics +1111.6807 Functional Analysis +1112.0768 Symplectic Geometry +1112.2603 Optimization and Control +1112.3304 Probability +1202.3521 +1202.4485 Dynamical Systems +1202.5989 Differential Geometry +1202.6565 Complex Variables +1203.1400 Differential Geometry +1203.2257 Dynamical Systems +1203.6494 Metric Geometry +1204.0174 Classical Analysis and ODEs +1204.3235 Methodology +1205.1031 +1205.1156 Differential Geometry +1206.4940 Probability +1207.1764 Physics Education +1207.2346 Computer Vision and Pattern Recognition +1207.2580 Quantum Gases +1207.3048 +1207.5143 Theory +1207.5789 Cosmology and Nongalactic Astrophysics +1208.0916 Algebraic Geometry +1208.5456 +1209.1352 +1209.1515 Optics +1209.3606 Category Theory +1209.6039 Theory +1210.0404 Logic +1210.6124 Lattice +1210.6922 Strongly Correlated Electrons +1210.7266 Lattice +1211.0257 Superconductivity +1211.0290 Information Theory +1211.5522 Strongly Correlated Electrons +1211.6006 Number Theory +1212.0592 Neurons and Cognition +1212.1876 Theory +1212.2935 Superconductivity +1212.2936 Pattern Formation and Solitons +1212.4210 Information Theory +1212.4757 Numerical Analysis +1212.4925 Optics +1212.5027 Analysis of PDEs +1212.5468 Combinatorics +1212.6739 Materials Science +1301.1153 Computer Science and Game Theory +1301.1422 Statistical Mechanics +1301.3960 +1301.5207 Algebraic Geometry +1301.5820 Analysis of PDEs +1301.6827 Statistical Mechanics +1301.7435 Quantum Gases +1301.7595 +1302.0757 Quantum Gases +1302.1000 Solar and Stellar Astrophysics +1302.1370 Phenomenology +1302.1515 Data Structures and Algorithms +1302.1974 Optimization and Control +1302.2194 Phenomenology +1302.2261 Information Theory +1302.2473 Soft Condensed Matter +1302.2830 Statistical Mechanics +1302.2911 +1302.3238 Statistics Theory +1302.5034 Optimization and Control +1303.0597 Computers and Society +1303.0653 Phenomenology +1303.0948 Phenomenology +1303.1356 Phenomenology +1303.1386 Mesoscale and Nanoscale Physics +1303.1527 Theory +1303.3332 Genomics +1303.3556 Number Theory +1303.6334 Theory +1303.6857 Phenomenology +1303.7216 Theory +1304.0963 Mesoscale and Nanoscale Physics +1304.2978 Theory +1304.3728 Atomic Physics +1304.3903 Theory +1304.4358 Cosmology and Nongalactic Astrophysics +1304.4423 Lattice +1304.4937 Astrophysics of Galaxies +1304.5699 +1304.6016 Theory +1304.6335 Experiment +1304.6757 Soft Condensed Matter +1304.7298 Strongly Correlated Electrons +1304.7382 +1304.7686 +1304.7715 Populations and Evolution +1304.7811 Solar and Stellar Astrophysics +1305.1629 Cosmology and Nongalactic Astrophysics +1305.2172 Phenomenology +1305.3446 Information Theory +1305.3674 Theory +1305.3984 Lattice +1305.4184 Cosmology and Nongalactic Astrophysics +1305.4702 Theory +1306.2447 Strongly Correlated Electrons +1306.3716 Number Theory +1306.3721 Learning +1306.4011 +1306.4368 Atomic Physics +1306.6222 Statistics Theory +1307.0684 Risk Management +1307.0969 Neurons and Cognition +1307.1009 Molecular Networks +1307.1195 General Physics +1307.1460 Theory +1307.1811 Materials Science +1307.1968 Differential Geometry +1307.2203 Physics and Society +1307.2515 Differential Geometry +1307.2579 Learning +1307.2581 Optics +1307.2583 General Physics +1307.2586 Materials Science +1307.2588 Biological Physics +1307.2599 Information Theory +1307.2601 Optimization and Control +1307.2603 Databases +1307.2605 Number Theory +1307.2607 Number Theory +1307.2611 Machine Learning +1307.2612 Rings and Algebras +1307.2614 Methodology +1307.2617 Exactly Solvable and Integrable Systems +1307.2621 +1307.2623 +1307.2624 +1307.2626 +1307.2634 Classical Analysis and ODEs +1307.2638 Cosmology and Nongalactic Astrophysics +1307.2643 Instrumentation and Methods for Astrophysics +1307.2654 Atomic Physics +1307.2660 Cosmology and Nongalactic Astrophysics +1307.2665 Numerical Analysis +1307.2668 Computation +1307.2669 Information Retrieval +1307.2670 Complex Variables +1307.2671 Materials Science +1307.2673 Mesoscale and Nanoscale Physics +1307.2674 Machine Learning +1307.2679 Differential Geometry +1307.2683 +1307.2684 Probability +1307.2686 Probability +1307.2690 Networking and Internet Architecture +1307.2691 Theory +1307.2704 Artificial Intelligence +1307.2708 Discrete Mathematics +1307.2712 Optimization and Control +1307.2713 Logic in Computer Science +1307.2714 Differential Geometry +1307.2715 Machine Learning +1307.2716 Differential Geometry +1307.2720 Differential Geometry +1307.2723 Instrumentation and Methods for Astrophysics +1307.2724 Data Structures and Algorithms +1307.2728 Commutative Algebra +1307.2730 Neurons and Cognition +1307.2732 Atomic Physics +1307.2737 Biomolecules +1307.2738 Representation Theory +1307.2741 Atmospheric and Oceanic Physics +1307.2744 Mesoscale and Nanoscale Physics +1307.2745 Materials Science +1307.2746 Quantum Gases +1307.2751 Operator Algebras +1307.2755 Probability +1307.2756 Cryptography and Security +1307.2758 Experiment +1307.2759 Experiment +1307.2761 High Energy Astrophysical Phenomena +1307.2763 Computer Science and Game Theory +1307.2766 Plasma Physics +1307.2769 Accelerator Physics +1307.2770 K-Theory and Homology +1307.2773 Instrumentation and Methods for Astrophysics +1307.2780 Phenomenology +1307.2786 Optimization and Control +1307.2789 Computational Engineering, Finance, and Science +1307.2790 Optimization and Control +1307.2791 Optimization and Control +1307.2794 Analysis of PDEs +1307.2795 Number Theory +1307.2796 Group Theory +1307.2798 Neurons and Cognition +1307.2799 Information Theory +1307.2801 Mesoscale and Nanoscale Physics +1307.2804 Atmospheric and Oceanic Physics +1307.2806 Data Structures and Algorithms +1307.2807 Instrumentation and Methods for Astrophysics +1307.2809 Medical Physics +1307.2811 Information Theory +1307.2815 Strongly Correlated Electrons +1307.2816 Theory +1307.2817 Other Computer Science +1307.2818 Multimedia +1307.2826 Information Theory +1307.2829 Solar and Stellar Astrophysics +1307.2830 Classical Physics +1307.2833 K-Theory and Homology +1307.2838 Solar and Stellar Astrophysics +1307.2842 +1307.2845 Geometric Topology +1307.2850 Algebraic Topology +1307.2856 Fluid Dynamics +1307.2858 Algebraic Topology +1307.2859 Experiment +1307.2860 Molecular Networks +1307.2861 Mesoscale and Nanoscale Physics +1307.2863 Data Structures and Algorithms +1307.2865 Complex Variables +1307.2866 Computational Physics +1307.2867 Artificial Intelligence +1307.2875 +1307.2882 +1307.2885 +1307.2887 Probability +1307.2888 +cond-mat/0307749 Materials Science +math/0103119 Differential Geometry +math/0506048 Number Theory +0804.3741 Fluid Dynamics +0903.0664 Computation +0912.4814 Dynamical Systems +0912.5284 Fluid Dynamics +1001.0017 +1003.5060 Classical Analysis and ODEs +1103.0250 High Energy Astrophysical Phenomena +1105.0118 Analysis of PDEs +1107.1357 Operator Algebras +1202.1880 Algebraic Topology +1202.5442 Geometric Topology +1204.0544 Optimization and Control +1205.2421 +1208.0197 History and Overview +1208.2841 Methodology +1208.6076 Phenomenology +1210.2105 Functional Analysis +1210.2466 Strongly Correlated Electrons +1210.4010 Number Theory +1210.7740 Dynamical Systems +1210.7799 Theory +1211.1086 Group Theory +1211.3413 Soft Condensed Matter +1211.4701 Statistical Mechanics +1211.4946 Risk Management +1211.4958 Optimization and Control +1212.1721 Cosmology and Nongalactic Astrophysics +1212.4766 +1212.5837 General Mathematics +1212.6166 Probability +1301.1508 Analysis of PDEs +1301.1764 +1301.3702 Statistical Mechanics +1301.6496 Functional Analysis +1301.7664 Systems and Control +1302.0075 Analysis of PDEs +1302.0211 Quantum Gases +1302.2177 +1302.4880 Analysis of PDEs +1303.0150 Classical Analysis and ODEs +1303.1069 Statistical Mechanics +1303.1446 Superconductivity +1303.1755 Soft Condensed Matter +1303.3275 Strongly Correlated Electrons +1303.4149 Strongly Correlated Electrons +1303.4421 Physics and Society +1303.6697 Representation Theory +1303.6853 Theory +1304.2463 +1304.3925 +1304.3984 Optics +1304.4071 Information Theory +1304.4136 Strongly Correlated Electrons +1304.4906 High Energy Astrophysical Phenomena +1304.5282 Optimization and Control +1304.6139 Optimization and Control +1304.7052 Mesoscale and Nanoscale Physics +1305.0986 +1305.1999 Phenomenology +1305.3299 Methodology +1305.5623 Quantum Gases +1305.6711 Statistical Mechanics +1305.7092 Pricing of Securities +1306.0043 Mesoscale and Nanoscale Physics +1306.0568 Phenomenology +1306.1412 Mesoscale and Nanoscale Physics +1306.2384 Lattice +1306.2479 Astrophysics of Galaxies +1306.2804 +1306.3243 Theory +1306.4953 +1307.1421 Mesoscale and Nanoscale Physics +1307.1492 Lattice +1307.1701 Theory +1307.2554 Databases +1307.2783 Distributed, Parallel, and Cluster Computing +1307.3422 Superconductivity +1307.4495 Materials Science +1307.4664 Materials Science +1307.6317 Optics +1307.7509 Materials Science +1308.0843 Experiment +1308.0927 Strongly Correlated Electrons +1308.1004 Computation and Language +1308.1584 +1308.1636 Experiment +1308.1952 Mesoscale and Nanoscale Physics +1308.3605 Medical Physics +1308.4075 Experiment +1308.4159 Theory +1308.5779 +1308.5893 Statistical Mechanics +1308.5950 Superconductivity +1309.0123 Computer Vision and Pattern Recognition +1309.0788 Experiment +1309.1888 Phenomenology +1309.1936 Superconductivity +1309.2260 Solar and Stellar Astrophysics +1309.3317 Optimization and Control +1309.4224 Instrumentation and Methods for Astrophysics +1309.5249 Disordered Systems and Neural Networks +1309.5275 Sound +1309.5484 General Topology +1309.7665 Information Theory +1309.7899 +1309.7977 Theory +1309.7989 Phenomenology +1309.7991 Experiment +1310.0076 Experiment +1310.0292 Experiment +1310.0364 Methodology +1310.0392 Probability +1310.0428 Experiment +1310.0454 Fluid Dynamics +1310.0472 +1310.0473 Experiment +1310.0479 Neurons and Cognition +1310.0480 Number Theory +1310.0481 Combinatorics +1310.0483 Populations and Evolution +1310.0485 Solar and Stellar Astrophysics +1310.0498 Populations and Evolution +1310.0505 Social and Information Networks +1310.0507 Quantitative Methods +1310.0511 Atmospheric and Oceanic Physics +1310.0515 Experiment +1310.0517 Probability +1310.0519 Neurons and Cognition +1310.0520 Experiment +1310.0523 Algebraic Geometry +1310.0524 Multimedia +1310.0525 Chaotic Dynamics +1310.0527 Symplectic Geometry +1310.0531 Numerical Analysis +1310.0533 Solar and Stellar Astrophysics +1310.0534 Solar and Stellar Astrophysics +1310.0535 Solar and Stellar Astrophysics +1310.0536 Instrumentation and Methods for Astrophysics +1310.0537 Solar and Stellar Astrophysics +1310.0539 Solar and Stellar Astrophysics +1310.0540 Instrumentation and Methods for Astrophysics +1310.0541 Number Theory +1310.0542 Solar and Stellar Astrophysics +1310.0543 Solar and Stellar Astrophysics +1310.0544 Solar and Stellar Astrophysics +1310.0545 Quantum Algebra +1310.0548 Computer Science and Game Theory +1310.0549 Solar and Stellar Astrophysics +1310.0550 Solar and Stellar Astrophysics +1310.0553 Solar and Stellar Astrophysics +1310.0554 High Energy Astrophysical Phenomena +1310.0555 Combinatorics +1310.0558 Populations and Evolution +1310.0565 Fluid Dynamics +1310.0571 Mesoscale and Nanoscale Physics +1310.0573 Computation and Language +1310.0576 Learning +1310.0578 Computation and Language +1310.0579 High Energy Astrophysical Phenomena +1310.0580 Solar and Stellar Astrophysics +1310.0581 Computation and Language +1310.0584 Commutative Algebra +1310.0585 Exactly Solvable and Integrable Systems +1310.0587 Solar and Stellar Astrophysics +1310.0589 Exactly Solvable and Integrable Systems +1310.0590 Solar and Stellar Astrophysics +1310.0591 Operator Algebras +1310.0594 Solar and Stellar Astrophysics +1310.0595 Methodology +1310.0600 Quantum Gases +1310.0602 Artificial Intelligence +1310.0610 Experiment +1310.0611 Information Theory +1310.0612 Information Theory +1310.0614 Mesoscale and Nanoscale Physics +1310.0616 Spectral Theory +1310.0617 Exactly Solvable and Integrable Systems +1310.0618 Combinatorics +1310.0620 Mesoscale and Nanoscale Physics +1310.0621 Computers and Society +1310.0624 Optics +1310.0628 Methodology +1310.0629 Numerical Analysis +1310.0631 Differential Geometry +1310.0635 Soft Condensed Matter +1310.0636 Group Theory +1310.0637 Pattern Formation and Solitons +1310.0638 Differential Geometry +1310.0645 Lattice +1310.0646 Strongly Correlated Electrons +1310.0647 High Energy Astrophysical Phenomena +1310.0648 Adaptation and Self-Organizing Systems +1310.0652 Soft Condensed Matter +1310.0654 Dynamical Systems +1310.0656 Biological Physics +1310.0657 Computation +1310.0660 Instrumentation and Detectors +1310.0661 Methodology +1310.0662 Phenomenology +1310.0664 Solar and Stellar Astrophysics +1310.0665 Probability +1310.0672 Chaotic Dynamics +1310.0676 Optimization and Control +1310.0677 Networking and Internet Architecture +1310.0679 Analysis of PDEs +1310.0681 General Mathematics +1310.0687 Materials Science +1310.0689 Numerical Analysis +1310.0699 +1310.0703 Dynamical Systems +1310.0706 +1310.0707 Optimization and Control +1310.0708 Differential Geometry +1310.0710 Computational Geometry +1310.0715 +1310.0716 Fluid Dynamics +1310.0718 Phenomenology +1310.0721 Information Theory +1310.0725 Optics +1310.0726 Probability +1310.0728 Materials Science +1310.0729 Populations and Evolution +1310.0730 Molecular Networks +1310.0732 Optimization and Control +1310.0736 Neurons and Cognition +1310.0737 Digital Libraries +1310.0742 Group Theory +1310.0748 Earth and Planetary Astrophysics +1310.0749 +1310.0754 Computation and Language +1310.0755 Differential Geometry +1310.0760 Geometric Topology +1310.0766 Mesoscale and Nanoscale Physics +1310.0768 Logic in Computer Science +1310.0769 Solar and Stellar Astrophysics +1310.0770 Exactly Solvable and Integrable Systems +1310.0772 Solar and Stellar Astrophysics +1310.0779 Exactly Solvable and Integrable Systems +1310.0781 Experiment +1310.0782 Representation Theory +1310.0784 +1310.0795 Functional Analysis +1310.0797 Fluid Dynamics +1310.0798 Statistical Mechanics +1310.0802 Software Engineering +1310.0804 Accelerator Physics +cond-mat/0407553 Strongly Correlated Electrons +hep-ph/9907330 Phenomenology +0710.0885 +0801.4722 Soft Condensed Matter +0805.2979 Probability +0812.3540 Quantum Algebra +0812.4090 Superconductivity +0904.3436 Combinatorics +0909.3090 Phenomenology +0912.0651 Symplectic Geometry +1003.6050 Probability +1005.4755 Superconductivity +1006.1928 Dynamical Systems +1009.0970 Statistical Mechanics +1009.2305 Information Theory +1011.1082 +1012.2544 Probability +1102.1194 Metric Geometry +1102.1198 Metric Geometry +1103.1755 Probability +1103.5711 Differential Geometry +1103.6049 Data Structures and Algorithms +1104.1773 Risk Management +1104.2011 Rings and Algebras +1104.4693 Superconductivity +1105.0270 Probability +1105.3703 +1105.3704 +1105.3705 +1105.3706 +1105.3708 +1105.3709 +1105.3710 +1105.3932 +1106.1884 Algebraic Geometry +1106.1959 Strongly Correlated Electrons +1107.0949 +1107.4428 Combinatorics +1108.3271 Adaptation and Self-Organizing Systems +1109.5524 Theory +1110.2535 Metric Geometry +1110.4299 Commutative Algebra +1111.3092 Metric Geometry +1111.3519 Combinatorics +1111.5163 +1112.0650 Differential Geometry +1112.1346 Differential Geometry +1112.3427 Statistics Theory +1112.4832 Group Theory +1112.5938 Differential Geometry +1201.6315 Statistical Mechanics +1201.6664 Soft Condensed Matter +1203.2678 Solar and Stellar Astrophysics +1203.5591 Metric Geometry +1204.3496 Probability +1205.3131 Theory +1205.4273 Complex Variables +1206.2664 Mesoscale and Nanoscale Physics +1206.2889 Theory +1206.5453 Populations and Evolution +1206.6033 Rings and Algebras +1207.0001 +1207.1812 +1207.4220 +1207.6993 Algebraic Geometry +1208.2190 Superconductivity +1208.3424 Phenomenology +1208.5349 Strongly Correlated Electrons +1208.5473 Mesoscale and Nanoscale Physics +1209.1612 Representation Theory +1209.3946 Theory +1209.5208 Cryptography and Security +1209.5439 Tissues and Organs +1209.6531 Analysis of PDEs +1210.1001 Strongly Correlated Electrons +1210.3004 +1210.4007 Social and Information Networks +1210.7948 Chaotic Dynamics +1210.8332 High Energy Astrophysical Phenomena +1211.0574 Mesoscale and Nanoscale Physics +1211.0578 Instrumentation and Detectors +1211.0766 +1211.0814 Theory +1211.1237 Phenomenology +1211.1381 Theory +1211.1686 +1211.3596 Fluid Dynamics +1211.4597 Number Theory +1211.6203 Statistical Mechanics +1211.6342 Quantum Gases +1212.1886 Mesoscale and Nanoscale Physics +1212.3222 High Energy Astrophysical Phenomena +1212.5830 General Physics +1212.5944 High Energy Astrophysical Phenomena +1212.6022 Cosmology and Nongalactic Astrophysics +1212.6547 Soft Condensed Matter +1301.0492 Statistical Mechanics +1301.0831 High Energy Astrophysical Phenomena +1301.1477 Algebraic Geometry +1301.1742 Analysis of PDEs +1301.3390 Cosmology and Nongalactic Astrophysics +1301.5756 Astrophysics of Galaxies +1302.0456 +1302.1611 Statistics Theory +1302.1663 Networking and Internet Architecture +1302.1752 Populations and Evolution +1302.1901 Social and Information Networks +1302.2269 Adaptation and Self-Organizing Systems +1302.2308 Formal Languages and Automata Theory +1302.2395 Cryptography and Security +1302.2422 Functional Analysis +1302.2432 Earth and Planetary Astrophysics +1302.2456 Theory +1302.2617 Analysis of PDEs +1302.2620 Phenomenology +1302.2643 Cosmology and Nongalactic Astrophysics +1302.2649 Solar and Stellar Astrophysics +1302.2654 Databases +1302.2656 Cryptography and Security +1302.2657 Software Engineering +1302.2658 Optics +1302.2660 Optics +1302.2664 Number Theory +1302.2665 Biological Physics +1302.2667 Strongly Correlated Electrons +1302.2668 Numerical Analysis +1302.2672 Machine Learning +1302.2687 +1302.2690 Instrumentation and Detectors +1302.2692 Programming Languages +1302.2693 Solar and Stellar Astrophysics +1302.2694 +1302.2696 +1302.2701 +1302.2704 Dynamical Systems +1302.2707 Numerical Analysis +1302.2717 Optimization and Control +1302.2720 Representation Theory +1302.2722 Instrumentation and Methods for Astrophysics +1302.2723 Statistical Mechanics +1302.2725 Rings and Algebras +1302.2731 +1302.2734 Exactly Solvable and Integrable Systems +1302.2735 Soft Condensed Matter +1302.2740 Analysis of PDEs +1302.2741 Biological Physics +1302.2742 Populations and Evolution +1302.2747 Software Engineering +1302.2748 Software Engineering +1302.2751 Differential Geometry +1302.2753 +1302.2755 Classical Analysis and ODEs +1302.2757 Distributed, Parallel, and Cluster Computing +1302.2759 Human-Computer Interaction +1302.2764 Analysis of PDEs +1302.2765 Exactly Solvable and Integrable Systems +1302.2766 Classical Analysis and ODEs +1302.2769 Probability +1302.2770 Fluid Dynamics +1302.2773 Analysis of PDEs +1302.2774 Category Theory +1302.2776 Plasma Physics +1302.2777 Mesoscale and Nanoscale Physics +1302.2779 Mesoscale and Nanoscale Physics +1302.2780 Mesoscale and Nanoscale Physics +1302.2784 Numerical Analysis +1302.2790 Classical Analysis and ODEs +1302.2791 Solar and Stellar Astrophysics +1302.2795 Plasma Physics +1302.2799 Data Analysis, Statistics and Probability +1302.2803 Functional Analysis +1302.2804 Differential Geometry +1302.2810 Theory +1302.2811 +1302.2814 Networking and Internet Architecture +1302.2816 Optics +1302.2819 Group Theory +1302.2820 Information Theory +1302.2828 Robotics +1302.2829 +1302.2831 Geometric Topology +1302.2832 Operator Algebras +1302.2838 Materials Science +1302.2839 Information Theory +1302.2840 Discrete Mathematics +1302.2842 Combinatorics +1302.2843 High Energy Astrophysical Phenomena +1302.2844 Cosmology and Nongalactic Astrophysics +1302.2848 Chemical Physics +1302.2849 History and Philosophy of Physics +1302.2850 +1302.2855 Information Theory +1302.2856 Information Theory +1302.2863 Physics Education +1302.2865 Analysis of PDEs +1302.2871 Quantum Gases +1302.2880 Differential Geometry +1302.2881 Algebraic Geometry +1302.2888 Phenomenology +1302.2889 Accelerator Physics +1302.2898 History and Overview +cond-mat/0609680 Statistical Mechanics +math/0309380 Combinatorics +nucl-th/0502031 +0704.1223 Probability +0903.3099 Number Theory +0909.0122 Artificial Intelligence +1005.5354 Algebraic Geometry +1008.1127 +1008.5227 Computation +1009.5055 Optimization and Control +1011.2782 Fluid Dynamics +1012.2935 Number Theory +1101.1411 Differential Geometry +1101.4604 Commutative Algebra +1104.1762 Number Theory +1106.5850 Computation +1110.2644 Solar and Stellar Astrophysics +1111.1889 High Energy Astrophysical Phenomena +1111.3386 Cosmology and Nongalactic Astrophysics +1111.3991 Probability +1111.4144 Mathematical Software +1201.2557 Algebraic Geometry +1203.0493 Differential Geometry +1205.6578 Combinatorics +1206.0153 Computational Finance +1207.0520 Applications +1207.1866 Physics Education +1207.4664 Numerical Analysis +1207.6678 Information Theory +1207.6748 +1208.1725 Applications +1208.3052 Group Theory +1208.3679 Cosmology and Nongalactic Astrophysics +1208.4818 Computation +1209.5027 Optimization and Control +1210.5687 Algebraic Geometry +1210.8277 Mesoscale and Nanoscale Physics +1211.3840 Optics +1211.6302 Learning +1212.1544 Geophysics +1212.1705 Superconductivity +1212.4065 +1212.4511 Geometric Topology +1301.0178 Information Theory +1301.1468 Commutative Algebra +1301.4685 Functional Analysis +1301.5673 Algebraic Geometry +1301.7298 Superconductivity +1301.7703 Methodology +1302.1484 Information Theory +1302.2565 +1302.2901 Superconductivity +1302.6241 Cosmology and Nongalactic Astrophysics +1302.6560 Number Theory +1303.1054 +1303.3749 Mesoscale and Nanoscale Physics +1303.3812 Quantum Gases +1303.4954 Materials Science +1303.4955 Materials Science +1303.5102 High Energy Astrophysical Phenomena +1303.6202 +1303.6262 Classical Analysis and ODEs +1303.6800 Soft Condensed Matter +1303.7040 Materials Science +1304.1564 Functional Analysis +1304.1999 Probability +1304.2829 Optics +1304.3034 Optics +1304.4764 Mesoscale and Nanoscale Physics +1304.6081 Mesoscale and Nanoscale Physics +1304.6931 Experiment +1304.7636 Strongly Correlated Electrons +1305.0681 +1305.1762 Optics +1305.3862 Computational Physics +1305.4525 Learning +1305.4671 +1305.6006 Lattice +1306.0794 Classical Analysis and ODEs +1306.1249 Mesoscale and Nanoscale Physics +1306.2233 Mesoscale and Nanoscale Physics +1306.2366 Physics and Society +1306.3166 Earth and Planetary Astrophysics +1306.4790 +1306.6280 Atomic Physics +1306.6340 Strongly Correlated Electrons +1307.2086 Theory +1307.2587 Materials Science +1307.4638 Soft Condensed Matter +1307.6260 Mesoscale and Nanoscale Physics +1307.6920 Fluid Dynamics +1307.7237 Chemical Physics +1307.7564 Cosmology and Nongalactic Astrophysics +1308.0983 Mesoscale and Nanoscale Physics +1308.1132 Soft Condensed Matter +1308.2982 Materials Science +1308.5001 Statistical Mechanics +1308.5546 Machine Learning +1309.0716 Strongly Correlated Electrons +1309.1889 Numerical Analysis +1309.3124 Soft Condensed Matter +1309.4179 Superconductivity +1309.6419 Other Condensed Matter +1309.6563 Superconductivity +1309.6619 Phenomenology +1309.6889 Mesoscale and Nanoscale Physics +1309.7510 Fluid Dynamics +1310.1201 Phenomenology +1310.1878 Methodology +1310.1983 Superconductivity +1310.2226 Experiment +1310.2232 Discrete Mathematics +1310.2700 Data Analysis, Statistics and Probability +1310.2783 Combinatorics +1310.2934 Combinatorics +1310.3163 Instrumentation and Methods for Astrophysics +1310.3308 Software Engineering +1310.3359 Group Theory +1310.4012 Mesoscale and Nanoscale Physics +1310.4156 Artificial Intelligence +1310.4354 Lattice +1310.4365 Classical Analysis and ODEs +1310.4711 Geometric Topology +1310.4753 Multiagent Systems +1310.4808 Mesoscale and Nanoscale Physics +1310.4832 Cosmology and Nongalactic Astrophysics +1310.4837 Lattice +1310.4839 Optics +1310.4842 Cosmology and Nongalactic Astrophysics +1310.4843 Data Structures and Algorithms +1310.4845 Algebraic Topology +1310.4846 Analysis of PDEs +1310.4848 Data Analysis, Statistics and Probability +1310.4851 Classical Analysis and ODEs +1310.4856 Formal Languages and Automata Theory +1310.4862 Operator Algebras +1310.4865 Representation Theory +1310.4871 Complex Variables +1310.4872 Complex Variables +1310.4874 Computer Science and Game Theory +1310.4876 Soft Condensed Matter +1310.4882 Group Theory +1310.4885 Cosmology and Nongalactic Astrophysics +1310.4888 Materials Science +1310.4890 +1310.4891 Computer Vision and Pattern Recognition +1310.4892 Logic +1310.4894 Systems and Control +1310.4895 Mesoscale and Nanoscale Physics +1310.4898 Chaotic Dynamics +1310.4899 Social and Information Networks +1310.4900 Digital Libraries +1310.4903 Differential Geometry +1310.4904 Digital Libraries +1310.4905 Combinatorics +1310.4906 Distributed, Parallel, and Cluster Computing +1310.4907 Distributed, Parallel, and Cluster Computing +1310.4908 Distributed, Parallel, and Cluster Computing +1310.4909 Digital Libraries +1310.4912 Geophysics +1310.4914 Statistics Theory +1310.4915 Commutative Algebra +1310.4919 Distributed, Parallel, and Cluster Computing +1310.4921 Fluid Dynamics +1310.4922 +1310.4924 Theory +1310.4933 +1310.4934 Superconductivity +1310.4935 Distributed, Parallel, and Cluster Computing +1310.4938 Computation and Language +1310.4942 Dynamical Systems +1310.4943 Information Theory +1310.4949 Networking and Internet Architecture +1310.4952 Functional Analysis +1310.4953 Optimization and Control +1310.4963 +1310.4965 Phenomenology +1310.4976 Algebraic Geometry +1310.4977 Learning +1310.4978 Dynamical Systems +1310.4980 Cosmology and Nongalactic Astrophysics +1310.4985 Representation Theory +1310.4991 Algebraic Geometry +1310.4997 Mesoscale and Nanoscale Physics +1310.4998 Mesoscale and Nanoscale Physics +1310.4999 Disordered Systems and Neural Networks +1310.5001 +1310.5005 General Physics +1310.5007 Learning +1310.5008 Learning +1310.5010 +1310.5013 Number Theory +1310.5016 Group Theory +1310.5017 Neurons and Cognition +1310.5022 Computational Engineering, Finance, and Science +1310.5025 Computational Engineering, Finance, and Science +1310.5027 Number Theory +1310.5030 Experiment +1310.5031 Instrumentation and Methods for Astrophysics +1310.5032 Formal Languages and Automata Theory +1310.5042 Learning +1310.5046 Instrumentation and Methods for Astrophysics +1310.5053 Analysis of PDEs +1310.5057 Fluid Dynamics +1310.5060 +1310.5062 Physics and Society +1310.5063 Probability +1310.5065 Instrumentation and Detectors +1310.5066 Differential Geometry +1310.5067 Cosmology and Nongalactic Astrophysics +1310.5070 Experiment +1310.5082 Computer Vision and Pattern Recognition +1310.5083 Functional Analysis +1310.5089 Machine Learning +1310.5093 Numerical Analysis +1310.5094 Analysis of PDEs +1310.5095 Machine Learning +1310.5096 Physics and Society +1310.5099 Combinatorics +1310.5103 Methodology +1310.5120 Differential Geometry +1310.5121 Differential Geometry +1310.5122 Functional Analysis +1310.5127 Representation Theory +1310.5132 Algebraic Geometry +1310.5134 Representation Theory +1310.5137 Optics +1310.5138 Operator Algebras +cond-mat/0002096 Superconductivity +math/0703423 Probability +0704.2396 Classical Physics +0709.2972 +0809.2069 Classical Physics +0811.4167 Methodology +0903.0473 Number Theory +0908.3961 Computation +0910.3064 Analysis of PDEs +0911.0203 Atomic Physics +1001.1797 Geometric Topology +1010.1505 Atomic Physics +1010.3654 +1101.2843 +1102.1798 Plasma Physics +1102.2810 Probability +1104.0868 Soft Condensed Matter +1105.4507 Statistics Theory +1109.4775 Combinatorics +1110.0741 Atomic Physics +1110.4042 Mesoscale and Nanoscale Physics +1111.2125 Physics and Society +1111.6671 Analysis of PDEs +1112.1791 Group Theory +1112.5380 Probability +1202.1149 Combinatorics +1202.6589 Number Theory +1203.0329 Phenomenology +1203.1329 Theory +1203.1619 Theory +1203.4146 +1205.3484 +1205.3558 Mesoscale and Nanoscale Physics +1205.3658 Probability +1206.0895 Probability +1206.1101 Differential Geometry +1206.1224 +1206.4484 Experiment +1207.1454 +1207.4095 +1207.5475 Statistical Mechanics +1208.0531 +1208.2030 Phenomenology +1208.2222 Statistical Mechanics +1208.2366 +1208.2553 +1208.3708 Mesoscale and Nanoscale Physics +1209.3571 Algebraic Geometry +1209.5273 +1210.0844 Phenomenology +1210.3842 Analysis of PDEs +1210.3889 Applications +1210.4177 Probability +1210.5147 +1210.5510 Lattice +1210.6219 Strongly Correlated Electrons +1210.6906 Mesoscale and Nanoscale Physics +1211.2164 Differential Geometry +1211.5145 Quantum Gases +1211.5614 Cryptography and Security +1211.6161 Algebraic Geometry +1211.6622 Functional Analysis +1211.6966 Lattice +1212.1280 +1212.2972 Strongly Correlated Electrons +1212.3611 Theory +1212.5330 Strongly Correlated Electrons +1212.5797 Probability +1212.6213 Logic +1301.1234 Mesoscale and Nanoscale Physics +1301.1274 Superconductivity +1301.2614 Quantum Gases +1301.2969 +1301.5461 Statistical Mechanics +1301.6661 Materials Science +1301.7682 Populations and Evolution +1302.0060 Atomic Physics +1302.2317 Mesoscale and Nanoscale Physics +1302.2461 Strongly Correlated Electrons +1302.3388 High Energy Astrophysical Phenomena +1302.3515 General Physics +1302.5718 +1302.6204 Materials Science +1303.3574 Applications +1303.4234 Commutative Algebra +1303.6409 Information Theory +1303.6922 Analysis of PDEs +1303.6967 Cosmology and Nongalactic Astrophysics +1303.7345 Solar and Stellar Astrophysics +1303.7471 Spectral Theory +1304.0079 +1304.0632 Physics and Society +1304.1179 Mesoscale and Nanoscale Physics +1304.1189 Space Physics +1304.2165 Solar and Stellar Astrophysics +1304.2332 +1304.2443 Optics +1304.3220 Differential Geometry +1304.3405 Social and Information Networks +1304.3685 Phenomenology +1304.3768 Chemical Physics +1304.3932 Functional Analysis +1304.4370 Representation Theory +1304.4586 Exactly Solvable and Integrable Systems +1304.4587 Probability +1304.4588 History and Philosophy of Physics +1304.4590 General Finance +1304.4591 Solar and Stellar Astrophysics +1304.4600 Astrophysics of Galaxies +1304.4602 Social and Information Networks +1304.4604 Materials Science +1304.4611 Cosmology and Nongalactic Astrophysics +1304.4613 Cryptography and Security +1304.4619 Computers and Society +1304.4620 Genomics +1304.4621 Information Theory +1304.4623 Probability +1304.4624 Information Theory +1304.4627 Information Theory +1304.4632 Group Theory +1304.4633 Data Structures and Algorithms +1304.4634 Information Theory +1304.4635 Combinatorics +1304.4637 Methodology +1304.4638 Fluid Dynamics +1304.4639 Phenomenology +1304.4640 Probability +1304.4648 Information Theory +1304.4651 Cryptography and Security +1304.4652 Computer Vision and Pattern Recognition +1304.4653 Analysis of PDEs +1304.4657 Social and Information Networks +1304.4661 Data Structures and Algorithms +1304.4662 Computer Vision and Pattern Recognition +1304.4666 Information Theory +1304.4669 Mesoscale and Nanoscale Physics +1304.4677 Computational Geometry +1304.4679 Social and Information Networks +1304.4681 Exactly Solvable and Integrable Systems +1304.4684 Geometric Topology +1304.4685 Optimization and Control +1304.4687 Group Theory +1304.4688 Pricing of Securities +1304.4690 Pricing of Securities +1304.4691 Symbolic Computation +1304.4694 Differential Geometry +1304.4696 Combinatorics +1304.4700 Phenomenology +1304.4701 Analysis of PDEs +1304.4702 Numerical Analysis +1304.4703 Numerical Analysis +1304.4706 Accelerator Physics +1304.4711 Computer Vision and Pattern Recognition +1304.4712 Strongly Correlated Electrons +1304.4716 Number Theory +1304.4721 +1304.4724 Functional Analysis +1304.4727 Differential Geometry +1304.4729 Instrumentation and Detectors +1304.4736 History and Philosophy of Physics +1304.4737 Theory +1304.4738 Numerical Analysis +1304.4740 +1304.4747 Phenomenology +1304.4748 Applications +1304.4749 Strongly Correlated Electrons +1304.4750 Networking and Internet Architecture +1304.4751 Dynamical Systems +1304.4755 Materials Science +1304.4759 Algebraic Topology +1304.4765 Computer Vision and Pattern Recognition +1304.4766 Genomics +1304.4767 Analysis of PDEs +1304.4770 Mesoscale and Nanoscale Physics +1304.4773 Applications +1304.4782 Classical Analysis and ODEs +1304.4784 Group Theory +1304.4785 Logic +1304.4786 Statistics Theory +1304.4787 Logic +1304.4791 Combinatorics +1304.4795 Databases +1304.4799 Applications +1304.4801 +1304.4807 General Finance +1304.4808 Differential Geometry +1304.4809 Soft Condensed Matter +1304.4812 Superconductivity +1304.4813 Combinatorics +1304.4815 General Physics +1304.4816 Numerical Analysis +1304.4817 Number Theory +1304.4818 Differential Geometry +1304.4820 Theory +1304.4830 Theory +1304.4837 Social and Information Networks +1304.4838 Probability +1304.4839 Group Theory +1304.4841 Solar and Stellar Astrophysics +1304.4842 Number Theory +1304.4847 Probability +1304.4848 Statistics Theory +1304.4851 Methodology +1304.4852 General Finance +1304.4853 Probability +1304.4864 Dynamical Systems +1304.4868 +1304.4873 Chaotic Dynamics +1304.4876 Applications +1304.4877 Metric Geometry +1304.4882 Phenomenology +1304.4884 Dynamical Systems +1304.4886 Solar and Stellar Astrophysics +1304.4887 Atomic Physics +1304.4888 Analysis of PDEs +1304.4890 Methodology +1304.4891 High Energy Astrophysical Phenomena +1304.4898 Group Theory +1304.4900 Lattice +1304.4908 Statistical Mechanics +1304.4915 Computers and Society +1304.4916 Chaotic Dynamics +1304.4922 Classical Analysis and ODEs +1304.4924 Differential Geometry +1304.4927 Information Theory +hep-th/0003274 Theory +math/0507522 Probability +math/0610175 Differential Geometry +physics/0405122 Physics Education +physics/0603244 Classical Physics +quant-ph/0301021 +0705.1667 +0710.0716 Dynamical Systems +0802.3544 Group Theory +0804.2620 Spectral Theory +0804.4712 Exactly Solvable and Integrable Systems +0807.4386 Disordered Systems and Neural Networks +0901.0101 Number Theory +1005.4342 Populations and Evolution +1008.0309 Earth and Planetary Astrophysics +1008.3068 Soft Condensed Matter +1009.2126 Number Theory +1009.5549 Optics +1011.3292 Operator Algebras +1011.4128 Algebraic Geometry +1012.1290 Number Theory +1101.0305 Statistics Theory +1101.1134 Quantum Gases +1101.2642 Algebraic Geometry +1101.5697 Rings and Algebras +1102.5694 Populations and Evolution +1103.0314 Differential Geometry +1103.2283 +1103.3928 Number Theory +1103.5803 Algebraic Geometry +1104.2775 Disordered Systems and Neural Networks +1104.3366 Complex Variables +1105.2402 Strongly Correlated Electrons +1105.3657 Statistical Mechanics +1106.4490 Methodology +1106.4772 Strongly Correlated Electrons +1107.0609 +1107.5364 Numerical Analysis +1108.5345 Spectral Theory +1108.6160 Statistical Mechanics +1108.6239 Information Theory +1109.6622 Numerical Analysis +1110.3909 Commutative Algebra +1111.2914 Exactly Solvable and Integrable Systems +1111.5349 Theory +1112.1119 +1112.4002 Social and Information Networks +1112.4712 Biological Physics +1201.0153 Genomics +1201.0749 Data Structures and Algorithms +1201.1609 Analysis of PDEs +1201.2592 Numerical Analysis +1201.2610 Spectral Theory +1201.3275 Soft Condensed Matter +1201.4779 Numerical Analysis +1201.4913 Strongly Correlated Electrons +1201.6005 Logic +1201.6128 Logic +1202.2106 Dynamical Systems +1202.4711 Spectral Theory +1202.5056 +1203.2692 Fluid Dynamics +1203.6681 Adaptation and Self-Organizing Systems +1204.1113 Number Theory +1204.1251 Analysis of PDEs +1204.2321 Neural and Evolutionary Computing +1205.0788 Lattice +1205.1754 Differential Geometry +1205.5450 Analysis of PDEs +1206.1941 Spectral Theory +1206.3826 Number Theory +1206.6780 Group Theory +1208.4607 Phenomenology +1208.5682 Cosmology and Nongalactic Astrophysics +1208.5871 Superconductivity +1209.2219 Algebraic Topology +1209.5156 Cosmology and Nongalactic Astrophysics +1210.5372 Mesoscale and Nanoscale Physics +1210.6615 Classical Analysis and ODEs +1210.6622 Combinatorics +1210.8282 Superconductivity +1211.0874 Phenomenology +1211.1458 Statistical Mechanics +1211.1533 K-Theory and Homology +1211.2228 +1211.2716 Number Theory +1211.2947 Combinatorics +1211.3630 Probability +1212.0436 Algebraic Geometry +1212.2543 Phenomenology +1212.3436 Applications +1212.3574 Number Theory +1212.4879 +1212.5537 Number Theory +1212.6377 Statistical Mechanics +1301.0060 Cosmology and Nongalactic Astrophysics +1301.0290 Differential Geometry +1301.1094 +1301.1337 Mesoscale and Nanoscale Physics +1301.3487 Chaotic Dynamics +1301.3626 +1301.4638 Differential Geometry +1301.5644 Cosmology and Nongalactic Astrophysics +1302.0553 Quantum Gases +1302.0672 Phenomenology +1302.0770 Mesoscale and Nanoscale Physics +1302.1870 Phenomenology +1302.2739 +1302.3869 Neurons and Cognition +1302.4716 Geometric Topology +1302.5557 Mesoscale and Nanoscale Physics +1302.6146 Chemical Physics +1303.0503 Information Theory +1303.0903 Materials Science +1303.2504 Complex Variables +1303.3196 Operator Algebras +1303.3218 Optics +1303.3741 Social and Information Networks +1303.3843 Quantum Gases +1303.4626 Cosmology and Nongalactic Astrophysics +1303.4856 +1304.0343 Phenomenology +1304.2243 Solar and Stellar Astrophysics +1304.4383 Networking and Internet Architecture +1304.4517 Numerical Analysis +1304.4854 Statistical Mechanics +1304.5350 Learning +1304.6191 +1304.6778 Number Theory +1305.1502 Social and Information Networks +1305.1777 Algebraic Geometry +1305.3504 Pattern Formation and Solitons +1305.3562 Dynamical Systems +1305.3909 Experiment +1305.3960 Combinatorics +1305.4094 +1305.4627 +1305.4923 Mesoscale and Nanoscale Physics +1305.4969 Theory +1305.5130 Superconductivity +1305.5517 Fluid Dynamics +1305.5745 Statistical Mechanics +1305.6317 Cosmology and Nongalactic Astrophysics +1306.0349 +1306.0402 Atomic Physics +1306.0623 Statistics Theory +1306.1306 +1306.1732 Phenomenology +1306.1998 Probability +1306.3339 Materials Science +1306.3868 Theory +1306.4138 Phenomenology +1306.4223 Digital Libraries +1306.5514 +1306.6131 Statistical Mechanics +1306.6172 +1306.6474 Phenomenology +1307.0114 Statistical Finance +1307.0420 Number Theory +1307.1590 +1307.2081 Analysis of PDEs +1307.2213 +1307.2388 Algebraic Geometry +1307.3317 Solar and Stellar Astrophysics +1307.3415 +1307.3744 Quantum Gases +1307.4236 Category Theory +1308.0535 Solar and Stellar Astrophysics +1308.0667 Operator Algebras +1308.1532 Category Theory +1308.1779 Computer Science and Game Theory +1308.1799 Materials Science +1308.2636 Plasma Physics +1308.2770 +1308.2925 Theory +1308.3283 Strongly Correlated Electrons +1308.3734 Statistical Mechanics +1308.4246 Analysis of PDEs +1308.4820 Computers and Society +1308.5150 Algebraic Geometry +1308.6059 Representation Theory +1308.6183 Strongly Correlated Electrons +1308.6234 Algebraic Geometry +1308.6303 Methodology +1308.6411 Number Theory +1308.6472 Astrophysics of Galaxies +1308.6709 Systems and Control +1308.6833 Optimization and Control +1309.0009 Astrophysics of Galaxies +1309.0019 Number Theory +1309.0021 Phenomenology +1309.0022 Materials Science +1309.0024 Statistics Theory +1309.0030 Algebraic Geometry +1309.0032 Superconductivity +1309.0039 Rings and Algebras +1309.0042 Medical Physics +1309.0043 Geometric Topology +1309.0053 Commutative Algebra +1309.0057 +1309.0058 +1309.0062 Theory +1309.0063 Applications +1309.0066 Disordered Systems and Neural Networks +1309.0072 Analysis of PDEs +1309.0073 Cryptography and Security +1309.0075 Algebraic Geometry +1309.0078 Materials Science +1309.0079 Adaptation and Self-Organizing Systems +1309.0081 Data Structures and Algorithms +1309.0082 Data Structures and Algorithms +1309.0083 Phenomenology +1309.0088 Information Theory +1309.0089 +1309.0092 Differential Geometry +1309.0095 Materials Science +1309.0097 Biological Physics +1309.0098 +1309.0101 High Energy Astrophysical Phenomena +1309.0106 Strongly Correlated Electrons +1309.0113 Optimization and Control +1309.0118 +1309.0119 Combinatorics +1309.0121 High Energy Astrophysical Phenomena +1309.0124 Combinatorics +1309.0126 Classical Physics +1309.0127 Mesoscale and Nanoscale Physics +1309.0130 Theory +1309.0131 Functional Analysis +1309.0132 +1309.0133 Combinatorics +1309.0135 Commutative Algebra +1309.0138 Differential Geometry +1309.0140 +1309.0141 Information Theory +1309.0143 +1309.0144 History and Philosophy of Physics +1309.0146 Theory +1309.0150 Functional Analysis +1309.0151 Probability +1309.0152 Functional Analysis +1309.0154 Functional Analysis +1309.0156 Strongly Correlated Electrons +1309.0165 Systems and Control +1309.0181 Quantum Gases +1309.0184 Experiment +1309.0185 Human-Computer Interaction +1309.0186 Networking and Internet Architecture +1309.0187 Functional Analysis +1309.0188 Computers and Society +1309.0189 Computers and Society +1309.0193 Information Theory +1309.0195 Networking and Internet Architecture +1309.0196 Logic +1309.0199 Discrete Mathematics +1309.0201 Functional Analysis +1309.0205 Materials Science +1309.0209 Optimization and Control +1309.0210 Differential Geometry +1309.0212 Numerical Analysis +1309.0215 Distributed, Parallel, and Cluster Computing +1309.0218 Statistical Finance +1309.0220 Methodology +1309.0221 Theory +1309.0225 Combinatorics +1309.0229 Analysis of PDEs +1309.0231 Theory +1309.0232 Spectral Theory +1309.0233 Analysis of PDEs +1309.0238 Learning +1309.0240 Functional Analysis +1309.0241 Functional Analysis +1309.0242 Physics and Society +1309.0244 Optics +1309.0245 Cryptography and Security +1309.0246 Materials Science +1309.0248 Populations and Evolution +1309.0249 Computational Complexity +1309.0251 Data Structures and Algorithms +1309.0252 Combinatorics +1309.0254 Combinatorics +1309.0255 Probability +1309.0256 Probability +1309.0261 Computer Vision and Pattern Recognition +1309.0262 Computer Science and Game Theory +1309.0264 Analysis of PDEs +1309.0267 Molecular Networks +1309.0268 Combinatorics +1309.0275 Analysis of PDEs +1309.0277 Digital Libraries +1309.0279 Complex Variables +1309.0281 Metric Geometry +1309.0282 Theory +1309.0284 Representation Theory +1309.0287 Instrumentation and Detectors +1309.0288 Fluid Dynamics +1309.0289 Soft Condensed Matter +1309.0294 Materials Science +1309.0296 Computational Complexity +1309.0302 Machine Learning +1309.0309 Computer Vision and Pattern Recognition +1309.0320 Number Theory +1309.0325 Fluid Dynamics +1309.0328 Functional Analysis +1309.0332 Metric Geometry +1309.0335 Mesoscale and Nanoscale Physics +1309.0337 Machine Learning +1309.0341 Instrumentation and Detectors +1309.0343 Cosmology and Nongalactic Astrophysics +1309.0344 Superconductivity +1309.0345 Dynamical Systems +1309.0346 Data Structures and Algorithms +1309.0348 Physics and Society +1309.0354 Space Physics +1309.0356 Soft Condensed Matter +1309.0359 Mesoscale and Nanoscale Physics +1309.0361 Category Theory +1309.0365 Systems and Control +1309.0367 Operator Algebras +1309.0373 Databases +1309.0379 Analysis of PDEs +1309.0385 Materials Science +1309.0387 Phenomenology +1309.0389 Logic +1309.0390 Mesoscale and Nanoscale Physics +1309.0392 Distributed, Parallel, and Cluster Computing +1309.0394 Algebraic Geometry +1309.0397 High Energy Astrophysical Phenomena +1309.0401 Soft Condensed Matter +1309.0405 Fluid Dynamics +1309.0406 Algebraic Geometry +1309.0407 +1309.0416 Combinatorics +1309.0417 Solar and Stellar Astrophysics +1309.0418 Representation Theory +1309.0428 Computation +1309.0430 +1309.0431 Commutative Algebra +1309.0434 Combinatorics +1309.0435 Discrete Mathematics +1309.0436 +1309.0438 Combinatorics +1309.0441 Number Theory +1309.0442 Robotics +1309.0443 Number Theory +1309.0444 Accelerator Physics +1309.0453 +1309.0454 High Energy Astrophysical Phenomena +1309.0455 Populations and Evolution +1309.0456 Software Engineering +1309.0458 Information Theory +1309.0460 Combinatorics +1309.0465 Optics +1309.0471 +1309.0472 Optics +1309.0476 Analysis of PDEs +1309.0479 Number Theory +1309.0481 Chemical Physics +1309.0483 Rings and Algebras +1309.0484 Algebraic Geometry +1309.0486 Number Theory +1309.0490 Theory +1309.0498 Operator Algebras +cond-mat/0501421 Soft Condensed Matter +cond-mat/0508243 Statistical Mechanics +cond-mat/0601007 Statistical Mechanics +math/0703812 Analysis of PDEs +quant-ph/9907021 +0709.4631 Soft Condensed Matter +0801.3923 Chaotic Dynamics +0801.3931 +0809.0830 Algebraic Geometry +0809.4318 Algebraic Topology +0911.2752 K-Theory and Homology +0912.5013 Methodology +1001.0883 Geometric Topology +1006.5341 Chaotic Dynamics +1007.4412 Analysis of PDEs +1008.0966 Solar and Stellar Astrophysics +1008.2745 Differential Geometry +1008.2750 Information Theory +1009.5683 Group Theory +1010.2609 +1010.4956 Category Theory +1011.0028 Probability +1012.1799 Information Theory +1012.2525 Phenomenology +1012.3373 Instrumentation and Detectors +1012.4926 +1102.5730 Geometric Topology +1103.1336 Mesoscale and Nanoscale Physics +1103.2582 Combinatorics +1103.2594 Theory +1106.0879 Metric Geometry +1106.2024 Atmospheric and Oceanic Physics +1106.2174 Mesoscale and Nanoscale Physics +1106.4795 Phenomenology +1107.3773 Classical Analysis and ODEs +1108.5651 +1109.2290 +1109.4402 Group Theory +1109.5136 Geometric Topology +1110.0551 Cosmology and Nongalactic Astrophysics +1110.2678 General Physics +1110.3938 Superconductivity +1110.6794 +1110.6813 Commutative Algebra +1111.2821 General Physics +1112.1508 Lattice +1112.2122 Analysis of PDEs +1112.6132 Representation Theory +1201.4129 Statistics Theory +1202.0019 Probability +1202.1133 Functional Analysis +1202.3209 Atmospheric and Oceanic Physics +1202.5920 Earth and Planetary Astrophysics +1203.1315 +1203.5794 +1204.0836 Mesoscale and Nanoscale Physics +1204.1451 Logic +1204.1514 Group Theory +1204.1517 Operator Algebras +1204.1584 Materials Science +1204.1819 Probability +1204.3659 Astrophysics of Galaxies +1204.4497 Physics and Society +1204.5603 Number Theory +1204.6235 Number Theory +1205.1711 Statistical Finance +1205.2749 Pattern Formation and Solitons +1205.3197 +1205.3816 Discrete Mathematics +1205.4067 Information Theory +1205.4755 Phenomenology +1205.5528 Instrumentation and Detectors +1205.6025 Number Theory +1206.0327 Group Theory +1206.0717 +1206.4091 Statistics Theory +1206.6389 Learning +1206.6729 Materials Science +1207.0906 Phenomenology +1207.1594 Mesoscale and Nanoscale Physics +1207.2276 +1207.4484 Phenomenology +1207.4636 Classical Physics +1207.5046 Theory +1207.6190 Statistical Mechanics +1207.6968 Phenomenology +1208.0413 Analysis of PDEs +1208.0880 Statistical Mechanics +1208.2732 Phenomenology +1208.3742 Strongly Correlated Electrons +1208.4508 Information Theory +1208.5174 +1209.0875 Cryptography and Security +1209.1782 Numerical Analysis +1209.1893 Computational Finance +1209.2547 +1209.2980 Probability +1209.3551 Strongly Correlated Electrons +1209.4572 Statistical Mechanics +1209.5624 Atomic Physics +1209.5720 Lattice +1209.5931 Other Computer Science +1209.6184 Optics +1210.0861 Rings and Algebras +1210.1441 Physics and Society +1210.1466 Quantum Gases +1210.1746 Dynamical Systems +1210.2010 Optics +1210.2373 Number Theory +1210.3325 Fluid Dynamics +1210.3426 +1210.3662 Probability +1210.3737 Statistical Mechanics +1210.3795 Probability +1210.5089 Instrumentation and Detectors +1210.5357 Materials Science +1210.6071 Representation Theory +1210.6358 Cosmology and Nongalactic Astrophysics +1210.7143 +1210.7774 Programming Languages +1210.8247 Optics +1210.8403 Strongly Correlated Electrons +1211.0239 Operator Algebras +1211.0256 Optics +1211.0358 Machine Learning +1211.0491 Mesoscale and Nanoscale Physics +1211.0800 Materials Science +1211.0877 Data Structures and Algorithms +1211.0944 Solar and Stellar Astrophysics +1211.2218 Theory +1211.2242 Quantum Gases +1211.2712 Operator Algebras +1211.3396 Soft Condensed Matter +1211.4432 Rings and Algebras +1211.5174 Theory +1211.5921 +1211.6258 Software Engineering +1212.0409 +1212.0515 Commutative Algebra +1212.1101 Mesoscale and Nanoscale Physics +1212.1491 Mesoscale and Nanoscale Physics +1212.2369 Solar and Stellar Astrophysics +1212.2530 Combinatorics +1212.2819 Phenomenology +1212.3016 Phenomenology +1212.3734 Quantum Gases +1212.4033 Theory +1212.4803 Exactly Solvable and Integrable Systems +1212.5559 Phenomenology +1212.6095 +1212.6283 Category Theory +1212.6370 Theory +1212.6424 Exactly Solvable and Integrable Systems +1212.6519 Artificial Intelligence +1212.6867 Exactly Solvable and Integrable Systems +1301.0484 Quantum Algebra +1301.0515 Instrumentation and Detectors +1301.1036 Chemical Physics +1301.3268 Theory +1301.3344 Number Theory +1301.3652 Instrumentation and Methods for Astrophysics +1301.3741 Numerical Analysis +1301.3745 Numerical Analysis +1301.3979 Discrete Mathematics +1301.5057 Theory +1301.5061 Information Theory +1301.6202 Spectral Theory +1301.6497 Superconductivity +1302.0601 Phenomenology +1302.1209 Numerical Analysis +1302.2258 Quantum Gases +1302.2321 Solar and Stellar Astrophysics +1302.2689 Numerical Analysis +1302.3775 +1302.5235 Social and Information Networks +1302.5382 Emerging Technologies +1302.5676 Logic +1303.0085 High Energy Astrophysical Phenomena +1303.0096 Experiment +1303.0101 Experiment +1303.0277 Optics +1303.0642 Machine Learning +1303.3724 Algebraic Geometry +1303.4569 Functional Analysis +1303.4772 Strongly Correlated Electrons +1303.4905 Digital Libraries +1303.4920 Combinatorics +1303.5025 +1303.5093 High Energy Astrophysical Phenomena +1303.5153 Statistics Theory +1303.5282 Theory +1303.5345 Solar and Stellar Astrophysics +1303.5364 Networking and Internet Architecture +1303.5365 Networking and Internet Architecture +1303.5387 Optimization and Control +1303.5456 Combinatorics +1303.5703 Artificial Intelligence +1303.5704 Artificial Intelligence +1303.5705 Artificial Intelligence +1303.5706 Artificial Intelligence +1303.5707 Artificial Intelligence +1303.5708 Artificial Intelligence +1303.5709 Artificial Intelligence +1303.5710 Artificial Intelligence +1303.5711 Artificial Intelligence +1303.5712 Artificial Intelligence +1303.5713 Artificial Intelligence +1303.5714 Artificial Intelligence +1303.5715 Artificial Intelligence +1303.5716 Artificial Intelligence +1303.5717 Artificial Intelligence +1303.5719 Artificial Intelligence +1303.5721 Artificial Intelligence +1303.5722 Artificial Intelligence +1303.5723 Artificial Intelligence +1303.5724 Artificial Intelligence +1303.5725 Artificial Intelligence +1303.5726 Artificial Intelligence +1303.5727 Artificial Intelligence +1303.5728 Artificial Intelligence +1303.5729 Artificial Intelligence +1303.5730 Artificial Intelligence +1303.5731 Artificial Intelligence +1303.5732 Artificial Intelligence +1303.5733 Artificial Intelligence +1303.5734 Artificial Intelligence +1303.5735 Artificial Intelligence +1303.5736 Artificial Intelligence +1303.5737 Artificial Intelligence +1303.5738 Artificial Intelligence +1303.5739 Artificial Intelligence +1303.5740 Artificial Intelligence +1303.5741 Artificial Intelligence +1303.5742 Artificial Intelligence +1303.5743 Artificial Intelligence +1303.5744 Artificial Intelligence +1303.5745 Artificial Intelligence +1303.5746 Artificial Intelligence +1303.5747 Artificial Intelligence +1303.5748 Artificial Intelligence +1303.5749 Artificial Intelligence +1303.5750 Artificial Intelligence +1303.5751 Artificial Intelligence +1303.5752 Artificial Intelligence +1303.5753 Artificial Intelligence +1303.5754 Artificial Intelligence +1303.5755 Artificial Intelligence +1303.5756 Artificial Intelligence +1303.5757 Artificial Intelligence +1303.5758 Artificial Intelligence +1303.5759 Artificial Intelligence +1303.5760 Artificial Intelligence +1303.5761 Artificial Intelligence +1303.5763 Probability +1303.5764 Rings and Algebras +1303.5768 Programming Languages +1303.5772 Quantum Gases +1303.5778 Neural and Evolutionary Computing +1303.5783 Number Theory +1303.5791 Strongly Correlated Electrons +1303.5793 Spectral Theory +1303.5795 Representation Theory +1303.5798 General Topology +1303.5800 Data Structures and Algorithms +1303.5803 Computer Science and Game Theory +1303.5804 Phenomenology +1303.5806 Combinatorics +1303.5809 Statistical Finance +1303.5816 Functional Analysis +1303.5819 Phenomenology +1303.5822 Algebraic Geometry +1303.5829 Dynamical Systems +1303.5835 Probability +1303.5837 Distributed, Parallel, and Cluster Computing +1303.5839 Networking and Internet Architecture +1303.5851 Optics +1303.5853 Solar and Stellar Astrophysics +1303.5856 Phenomenology +1303.5859 Cosmology and Nongalactic Astrophysics +1303.5863 Theory +1303.5867 Information Retrieval +1303.5870 Digital Libraries +1303.5872 Group Theory +1303.5874 Software Engineering +1303.5875 Functional Analysis +1303.5876 Classical Analysis and ODEs +1303.5878 Numerical Analysis +1303.5881 Rings and Algebras +1303.5882 General Finance +1303.5884 Differential Geometry +1303.5886 Optics +1303.5890 Soft Condensed Matter +1303.5891 Distributed, Parallel, and Cluster Computing +1303.5895 Earth and Planetary Astrophysics +1303.5896 Soft Condensed Matter +1303.5897 Phenomenology +1303.5902 Mesoscale and Nanoscale Physics +1303.5903 Social and Information Networks +1303.5904 +1303.5905 Algebraic Geometry +1303.5906 Earth and Planetary Astrophysics +1303.5907 Distributed, Parallel, and Cluster Computing +1303.5909 Social and Information Networks +1303.5910 Social and Information Networks +1303.5912 Social and Information Networks +1303.5913 Computer Vision and Pattern Recognition +1303.5914 Phenomenology +1303.5915 Theory +1303.5916 Algebraic Geometry +1303.5919 Artificial Intelligence +1303.5924 Phenomenology +1303.5926 Software Engineering +1303.5927 +1303.5928 +1303.5929 Artificial Intelligence +1303.5930 Numerical Analysis +1303.5931 Exactly Solvable and Integrable Systems +1303.5933 Mesoscale and Nanoscale Physics +1303.5934 Optimization and Control +1303.5936 Combinatorics +1303.5938 Software Engineering +1303.5940 Category Theory +1303.5941 Analysis of PDEs +1303.5943 Networking and Internet Architecture +1303.5948 Algebraic Geometry +1303.5950 Software Engineering +1303.5951 Phenomenology +1303.5958 Computational Geometry +1303.5961 Cosmology and Nongalactic Astrophysics +1303.5970 Probability +1303.5972 Multimedia +1303.5976 Machine Learning +1303.5981 +1303.5982 Classical Analysis and ODEs +1303.5983 Numerical Analysis +1303.5984 Machine Learning +1303.5988 Information Retrieval +1303.5990 Probability +1303.5992 Dynamical Systems +1303.6001 Learning +1303.6005 Analysis of PDEs +1303.6006 Superconductivity +1303.6007 History and Philosophy of Physics +1303.6013 Algebraic Geometry +1303.6021 Computer Vision and Pattern Recognition +1303.6022 Computers and Society +1303.6025 +1303.6026 +1303.6029 Analysis of PDEs +1303.6030 Commutative Algebra +1303.6036 Phenomenology +1303.6037 Exactly Solvable and Integrable Systems +1303.6038 Experiment +1303.6042 Statistics Theory +1303.6045 Statistical Mechanics +1303.6046 Information Theory +1303.6047 +1303.6051 Soft Condensed Matter +1303.6054 Dynamical Systems +1303.6057 +1303.6059 Analysis of PDEs +1303.6061 Soft Condensed Matter +1303.6063 Numerical Analysis +1303.6064 Analysis of PDEs +1303.6065 Phenomenology +1303.6069 Materials Science +1303.6076 Networking and Internet Architecture +1303.6078 Functional Analysis +1303.6086 Learning +1303.6089 Classical Analysis and ODEs +1303.6090 Pricing of Securities +1303.6093 Number Theory +1303.6094 Social and Information Networks +1303.6095 +1303.6100 Probability +1303.6102 High Energy Astrophysical Phenomena +1303.6105 +1303.6107 Logic in Computer Science +1303.6108 High Energy Astrophysical Phenomena +1303.6111 Chemical Physics +1303.6112 Superconductivity +1303.6113 Algebraic Geometry +1303.6114 Differential Geometry +1303.6115 +1303.6117 Atomic Physics +1303.6118 High Energy Astrophysical Phenomena +1303.6119 Number Theory +1303.6120 Physics and Society +1303.6127 Computational Geometry +1303.6128 Algebraic Geometry +1303.6134 Quantum Algebra +1303.6135 Information Theory +1303.6138 Social and Information Networks +1303.6140 Analysis of PDEs +1303.6141 Numerical Analysis +1303.6151 Analysis of PDEs +1303.6152 Applications +1303.6154 Phenomenology +1303.6158 Cosmology and Nongalactic Astrophysics +1303.6160 Cosmology and Nongalactic Astrophysics +1303.6165 Methodology +1303.6169 Applications +1303.6171 Statistics Theory +1303.6172 Analysis of PDEs +1303.6173 Phenomenology +1303.6192 General Finance +1303.6198 Dynamical Systems +1303.6199 Methodology +1303.6200 Computer Science and Game Theory +1303.6206 +1303.6210 Analysis of PDEs +1303.6213 +1303.6214 Commutative Algebra +1303.6218 High Energy Astrophysical Phenomena +1303.6220 Analysis of PDEs +1303.6221 Soft Condensed Matter +1303.6224 Systems and Control +1303.6229 +1303.6230 Instrumentation and Methods for Astrophysics +1303.6233 Strongly Correlated Electrons +1303.6245 Quantum Gases +1303.6251 Analysis of PDEs +1303.6259 Number Theory +astro-ph/0506530 +astro-ph/9912347 +math/0508591 Numerical Analysis +physics/0505040 General Physics +quant-ph/0212001 +quant-ph/0610081 +0710.3423 Operator Algebras +0803.2501 Dynamical Systems +0808.1246 Data Structures and Algorithms +0808.1416 Statistics Theory +0812.0184 Operator Algebras +0902.3886 Operator Algebras +0903.3225 Differential Geometry +0904.0371 Earth and Planetary Astrophysics +0905.2472 Materials Science +0908.2360 Mesoscale and Nanoscale Physics +0909.1274 +0909.3398 Differential Geometry +0911.0086 Data Structures and Algorithms +0911.0328 Earth and Planetary Astrophysics +1002.3934 Differential Geometry +1003.0295 +1005.5081 Methodology +1007.0699 +1008.0656 Combinatorics +1008.2043 Combinatorics +1009.0762 Phenomenology +1009.4141 Quantitative Methods +1010.5183 Statistical Mechanics +1011.2553 Methodology +1012.3340 Cryptography and Security +1012.4506 Data Analysis, Statistics and Probability +1101.4925 Optimization and Control +1102.1888 Probability +1102.2512 Algebraic Topology +1102.3365 +1103.1652 General Finance +1103.2623 Differential Geometry +1103.3626 Combinatorics +1103.4564 Analysis of PDEs +1103.6220 General Physics +1104.0554 Statistics Theory +1104.4315 Differential Geometry +1106.4315 Theory +1106.5787 Theory +1107.4468 Statistics Theory +1107.4813 +1107.5846 +1108.3655 Combinatorics +1108.3731 Algebraic Geometry +1108.4216 Optimization and Control +1108.4496 Combinatorics +1109.2869 Phenomenology +1109.3084 Geometric Topology +1109.5233 +1109.6641 Phenomenology +1110.0220 Pricing of Securities +1110.3646 +1110.4388 Superconductivity +1110.4594 Differential Geometry +1110.4629 General Physics +1110.5794 Cryptography and Security +1111.1671 +1111.6517 Differential Geometry +1112.0607 Phenomenology +1112.2960 Representation Theory +1112.5352 Discrete Mathematics +1112.5416 Cosmology and Nongalactic Astrophysics +1112.5791 Chaotic Dynamics +1201.0567 Chaotic Dynamics +1201.0733 Statistical Mechanics +1201.1610 Group Theory +1201.2035 Optimization and Control +1201.2210 Analysis of PDEs +1201.4589 Number Theory +1201.6025 Soft Condensed Matter +1202.0604 Theory +1202.2404 Classical Physics +1202.2572 Software Engineering +1202.5595 Theory +1202.5871 +1202.5895 Probability +1203.0920 Logic in Computer Science +1203.1203 Formal Languages and Automata Theory +1203.2202 Information Theory +1203.4406 Materials Science +1203.5325 Information Theory +1203.6668 Combinatorics +1204.1290 Systems and Control +1204.2297 Classical Analysis and ODEs +1204.2892 Probability +1204.4258 Combinatorics +1204.5548 Classical Analysis and ODEs +1205.0596 Social and Information Networks +1205.3074 Combinatorics +1205.3502 Astrophysics of Galaxies +1205.3749 Statistical Mechanics +1205.4327 Metric Geometry +1205.4637 Complex Variables +1205.5075 Learning +1205.5553 Strongly Correlated Electrons +1205.6148 Algebraic Geometry +1206.0315 Chaotic Dynamics +1206.1599 Phenomenology +1206.2024 Materials Science +1206.2302 Physics Education +1206.2983 Theory +1206.3744 Rings and Algebras +1206.4107 Combinatorics +1206.5315 Theory +1206.6052 Mesoscale and Nanoscale Physics +1207.0612 Commutative Algebra +1207.1139 +1207.2509 +1207.3754 +1207.4417 Computer Vision and Pattern Recognition +1207.4650 Group Theory +1207.5494 Theory +1207.5934 Atomic Physics +1207.6201 Optics +1208.0024 Combinatorics +1208.0299 Soft Condensed Matter +1208.0600 Cosmology and Nongalactic Astrophysics +1208.1034 Number Theory +1208.1121 Statistical Mechanics +1208.1777 Algebraic Topology +1208.2112 Learning +1208.2934 +1208.3142 Superconductivity +1208.4211 Earth and Planetary Astrophysics +1208.5430 Soft Condensed Matter +1208.6113 Mesoscale and Nanoscale Physics +1208.6211 Analysis of PDEs +1208.6491 Disordered Systems and Neural Networks +1209.0038 Representation Theory +1209.0602 Earth and Planetary Astrophysics +1209.0749 Theory +1209.1155 Quantum Algebra +1209.1445 Populations and Evolution +1209.3863 Quantum Gases +1209.4426 Quantum Gases +1209.5563 Cosmology and Nongalactic Astrophysics +1210.2512 Disordered Systems and Neural Networks +1210.2818 Theory +1210.2923 Earth and Planetary Astrophysics +1210.3651 Phenomenology +1210.3869 Differential Geometry +1210.4748 Fluid Dynamics +1210.5932 Information Theory +1210.5942 Optics +1210.6647 Medical Physics +1210.7308 +1210.8349 +1211.0249 Neurons and Cognition +1211.0880 Biological Physics +1211.1718 +1211.2325 Differential Geometry +1211.2518 +1211.2571 Digital Libraries +1211.2623 Disordered Systems and Neural Networks +1211.2775 +1211.3329 Mesoscale and Nanoscale Physics +1211.5213 Cosmology and Nongalactic Astrophysics +1211.7297 Disordered Systems and Neural Networks +1212.0512 Complex Variables +1212.1266 Combinatorics +1212.1405 Quantum Gases +1212.2410 Solar and Stellar Astrophysics +1212.2998 Theory +1212.3918 Analysis of PDEs +1212.4648 Optimization and Control +1212.4696 Combinatorics +1212.4946 Strongly Correlated Electrons +1212.5399 Operator Algebras +1212.6017 +1212.6681 Optics +1212.6699 Fluid Dynamics +1212.6850 Algebraic Geometry +1212.6895 Strongly Correlated Electrons +1301.0302 Artificial Intelligence +1301.2342 Data Structures and Algorithms +1301.2522 Digital Libraries +1301.2565 Lattice +1301.2868 Statistical Mechanics +1301.2986 Number Theory +1301.3027 Applications +1301.3067 Phenomenology +1301.3110 Populations and Evolution +1301.3614 Computation and Language +1301.3753 Learning +1301.3776 Theory +1301.3821 Biomolecules +1301.3907 Cosmology and Nongalactic Astrophysics +1301.4066 Materials Science +1301.4147 Commutative Algebra +1301.4251 Physics and Society +1301.4269 Computational Complexity +1301.4506 Optimization and Control +1301.4515 Lattice +1301.4518 Representation Theory +1301.4519 Pricing of Securities +1301.4530 Number Theory +1301.4537 +1301.4538 Algebraic Geometry +1301.4539 Distributed, Parallel, and Cluster Computing +1301.4550 Combinatorics +1301.4551 Networking and Internet Architecture +1301.4555 Phenomenology +1301.4561 Algebraic Geometry +1301.4562 Mesoscale and Nanoscale Physics +1301.4564 Biomolecules +1301.4569 +1301.4574 Functional Analysis +1301.4582 Classical Physics +1301.4583 Combinatorics +1301.4584 Classical Physics +1301.4585 Operator Algebras +1301.4587 Systems and Control +1301.4588 Classical Physics +1301.4589 Classical Physics +1301.4590 Spectral Theory +1301.4591 Algebraic Geometry +1301.4593 Algebraic Geometry +1301.4594 Algebraic Geometry +1301.4596 Algebraic Geometry +1301.4600 Software Engineering +1301.4609 Functional Analysis +1301.4610 Spectral Theory +1301.4612 Quantum Algebra +1301.4614 Pricing of Securities +1301.4615 Experiment +1301.4616 Representation Theory +1301.4617 Solar and Stellar Astrophysics +1301.4619 Quantum Gases +1301.4622 Lattice +1301.4623 Combinatorics +1301.4626 Functional Analysis +1301.4630 Algebraic Geometry +1301.4634 Physics and Society +1301.4639 Combinatorics +1301.4640 Populations and Evolution +1301.4644 Astrophysics of Galaxies +1301.4648 Data Analysis, Statistics and Probability +1301.4650 Programming Languages +1301.4651 Solar and Stellar Astrophysics +1301.4654 Networking and Internet Architecture +1301.4656 Differential Geometry +1301.4659 Artificial Intelligence +1301.4660 Statistics Theory +1301.4661 Atomic and Molecular Clusters +1301.4662 Neural and Evolutionary Computing +1301.4665 Classical Analysis and ODEs +1301.4667 Optimization and Control +1301.4671 Classical Analysis and ODEs +1301.4674 Applications +1301.4675 Atomic Physics +1301.4678 General Physics +1301.4683 Strongly Correlated Electrons +1301.4686 Experiment +1301.4690 Experiment +1301.4691 Emerging Technologies +1301.4700 Optics +1301.4701 Representation Theory +1301.4702 Logic +1301.4704 Statistical Mechanics +1301.4706 Operator Algebras +1301.4710 Rings and Algebras +1301.4717 Numerical Analysis +1301.4723 Cryptography and Security +1301.4726 +1301.4737 Exactly Solvable and Integrable Systems +1301.4741 Astrophysics of Galaxies +1301.4745 Symplectic Geometry +1301.4746 +1301.4749 Numerical Analysis +1301.4752 Geometric Topology +1301.4756 Materials Science +1301.4760 Optics +1301.4763 Optimization and Control +1301.4764 Combinatorics +1301.4765 Information Theory +1301.4768 Operator Algebras +1301.4774 Numerical Analysis +1301.4777 Optimization and Control +1301.4780 Computational Geometry +1301.4781 Information Retrieval +1301.4782 High Energy Astrophysical Phenomena +1301.4783 Computational Geometry +1301.4784 Phenomenology +1301.4788 Dynamical Systems +1301.4790 Combinatorics +1301.4792 +1301.4793 Information Theory +1301.4795 Networking and Internet Architecture +1301.4800 Operating Systems +1301.4803 Combinatorics +1301.4809 Computational Geometry +1301.4811 Experiment +1301.4814 Number Theory +1301.4819 Functional Analysis +1301.4820 Astrophysics of Galaxies +1301.4826 Instrumentation and Methods for Astrophysics +1301.4828 Materials Science +1301.4829 High Energy Astrophysical Phenomena +1301.4832 Risk Management +1301.4834 Optics +1301.4839 Distributed, Parallel, and Cluster Computing +1301.4840 Materials Science +1301.4844 Functional Analysis +1301.4847 Analysis of PDEs +1301.4848 Computational Geometry +1301.4849 Phenomenology +1301.4855 Cosmology and Nongalactic Astrophysics +1301.4857 +1301.4858 Programming Languages +1301.4861 Fluid Dynamics +1301.4866 Optimization and Control +1301.4867 +1301.4869 Pricing of Securities +1301.4873 Statistics Theory +1301.4875 Functional Analysis +1301.4876 Computers and Society +1301.4877 Number Theory +1301.4878 Algebraic Geometry +1301.4880 Experiment +1301.4883 Fluid Dynamics +1301.4884 Metric Geometry +1301.4886 Spectral Theory +1301.4889 Spectral Theory +1301.4900 Functional Analysis +1301.4902 +1301.4905 Phenomenology +1301.4909 Networking and Internet Architecture +1301.4910 Logic in Computer Science +1301.4914 Analysis of PDEs +1301.4915 +1301.4916 Information Retrieval +1301.4917 Learning +1301.4921 Phenomenology +1301.4925 Logic +1301.4928 Number Theory +1301.4930 Phenomenology +1301.4932 Pattern Formation and Solitons +1301.4933 Digital Libraries +1301.4936 Materials Science +1301.4943 Analysis of PDEs +1301.4944 Machine Learning +1301.4948 Fluid Dynamics +1301.4950 Methodology +1301.4954 Statistics Theory +1301.4955 Combinatorics +1301.4958 Computer Science and Game Theory +1301.4963 Classical Analysis and ODEs +1301.4967 Combinatorics +1301.4968 Methodology +1301.4971 +1301.4973 Logic in Computer Science +1301.4979 Analysis of PDEs +1301.4983 Symbolic Computation +cs/0202039 Data Structures and Algorithms +cs/0308011 Data Structures and Algorithms +cs/0310049 Data Structures and Algorithms +math-ph/0002038 +math/0701565 Algebraic Topology +math/9901005 Spectral Theory +quant-ph/0002031 +quant-ph/0005042 +quant-ph/0104140 +quant-ph/0107127 +quant-ph/0201077 +quant-ph/0410064 +quant-ph/0507118 +quant-ph/0702021 +quant-ph/9807041 +quant-ph/9901072 +0707.4175 Combinatorics +0709.1160 +0810.2496 Statistical Mechanics +0902.3047 Representation Theory +0910.5260 Numerical Analysis +1001.2409 Classical Analysis and ODEs +1001.4142 Exactly Solvable and Integrable Systems +1006.3190 Spectral Theory +1006.3832 Symplectic Geometry +1009.5525 Probability +1010.1600 Logic +1011.3979 Differential Geometry +1011.4166 Probability +1012.4048 Analysis of PDEs +1012.4347 Soft Condensed Matter +1102.1358 Materials Science +1103.6149 Information Theory +1104.2554 Analysis of PDEs +1105.4672 Analysis of PDEs +1106.4647 Soft Condensed Matter +1107.0376 Materials Science +1107.3392 K-Theory and Homology +1107.5500 Complex Variables +1109.2052 Phenomenology +1109.2964 Information Theory +1109.5859 Number Theory +1110.2335 Mesoscale and Nanoscale Physics +1111.4428 Number Theory +1111.5094 Numerical Analysis +1111.6745 Computational Complexity +1111.7135 Chaotic Dynamics +1112.2896 Logic +1112.5164 Statistical Mechanics +1112.5505 Distributed, Parallel, and Cluster Computing +1201.0342 Strongly Correlated Electrons +1201.1266 Differential Geometry +1201.1695 Distributed, Parallel, and Cluster Computing +1201.3131 Materials Science +1201.3580 Trading and Market Microstructure +1202.1378 Differential Geometry +1202.1950 Probability +1202.2607 Differential Geometry +1202.2687 Information Theory +1202.4168 Disordered Systems and Neural Networks +1202.5342 Mesoscale and Nanoscale Physics +1202.6235 Digital Libraries +1203.2249 Disordered Systems and Neural Networks +1203.3219 Mesoscale and Nanoscale Physics +1203.3913 Instrumentation and Detectors +1203.5056 Biological Physics +1204.3392 Mesoscale and Nanoscale Physics +1204.4543 Mesoscale and Nanoscale Physics +1204.4760 Theory +1205.1955 Strongly Correlated Electrons +1205.1958 Quantum Gases +1205.2220 Phenomenology +1205.3516 Mesoscale and Nanoscale Physics +1205.4377 Computer Vision and Pattern Recognition +1205.5351 Computer Vision and Pattern Recognition +1205.5729 +1206.0188 Statistical Mechanics +1206.1097 Materials Science +1206.1302 Strongly Correlated Electrons +1206.2016 Distributed, Parallel, and Cluster Computing +1206.3687 Quantum Gases +1206.6578 +1206.6730 Number Theory +1207.0305 +1207.4721 Commutative Algebra +1207.5313 Statistics Theory +1207.7056 Materials Science +1208.2215 Mesoscale and Nanoscale Physics +1208.5262 History and Philosophy of Physics +1208.5321 Optics +1208.6430 +1209.0471 Experiment +1209.1190 +1209.1339 Solar and Stellar Astrophysics +1209.1571 Quantum Gases +1209.2725 Physics and Society +1209.3937 Experiment +1210.0108 Dynamical Systems +1210.0875 Experiment +1210.1140 Cosmology and Nongalactic Astrophysics +1210.1246 Cosmology and Nongalactic Astrophysics +1210.1797 Experiment +1210.2402 Experiment +1210.3299 Number Theory +1210.4108 +1210.4704 Theory +1210.4960 Symbolic Computation +1210.6545 +1210.6618 Phenomenology +1210.7993 Quantum Gases +1210.8189 Discrete Mathematics +1211.0287 Cosmology and Nongalactic Astrophysics +1211.2018 Strongly Correlated Electrons +1211.2350 Number Theory +1211.2559 Group Theory +1211.2829 +1211.3573 Mesoscale and Nanoscale Physics +1211.4365 +1211.4551 Mesoscale and Nanoscale Physics +1211.5784 Optimization and Control +1211.6377 Materials Science +1211.6527 Solar and Stellar Astrophysics +1212.0300 Cosmology and Nongalactic Astrophysics +1212.2186 High Energy Astrophysical Phenomena +1212.2977 Phenomenology +1212.3496 Distributed, Parallel, and Cluster Computing +1212.4012 Experiment +1212.4039 Superconductivity +1212.4360 High Energy Astrophysical Phenomena +1212.4635 Quantum Gases +1212.5192 Space Physics +1301.1136 Physics and Society +1301.1296 Optics +1301.1840 Mesoscale and Nanoscale Physics +1301.1847 Solar and Stellar Astrophysics +1301.2416 +1301.3153 Superconductivity +1301.4135 Superconductivity +1301.4181 Theory +1301.4412 Experiment +1301.4753 Distributed, Parallel, and Cluster Computing +1301.5304 Logic +1301.5492 Statistics Theory +1301.5754 +1301.5949 +1301.6359 Artificial Intelligence +1301.6362 Information Theory +1301.6372 Number Theory +1301.6466 Cell Behavior +1301.6509 Combinatorics +1301.6511 Complex Variables +1301.6576 Combinatorics +1301.6583 Optics +1301.6647 Probability +1301.6675 Artificial Intelligence +1301.6676 Learning +1301.6677 Learning +1301.6678 Software Engineering +1301.6679 Artificial Intelligence +1301.6680 Artificial Intelligence +1301.6681 Artificial Intelligence +1301.6682 Artificial Intelligence +1301.6683 Artificial Intelligence +1301.6684 Learning +1301.6686 Artificial Intelligence +1301.6687 Artificial Intelligence +1301.6688 Artificial Intelligence +1301.6689 Artificial Intelligence +1301.6690 Artificial Intelligence +1301.6691 Artificial Intelligence +1301.6692 Artificial Intelligence +1301.6693 Computers and Society +1301.6694 Artificial Intelligence +1301.6695 Learning +1301.6696 Learning +1301.6698 Artificial Intelligence +1301.6699 Artificial Intelligence +1301.6700 Artificial Intelligence +1301.6701 Artificial Intelligence +1301.6702 Artificial Intelligence +1301.6703 Artificial Intelligence +1301.6704 Artificial Intelligence +1301.6705 Learning +1301.6706 Artificial Intelligence +1301.6707 Artificial Intelligence +1301.6708 Artificial Intelligence +1301.6709 Artificial Intelligence +1301.6710 Learning +1301.6711 Artificial Intelligence +1301.6712 Artificial Intelligence +1301.6713 Artificial Intelligence +1301.6714 Computer Science and Game Theory +1301.6715 Artificial Intelligence +1301.6716 Artificial Intelligence +1301.6717 Artificial Intelligence +1301.6718 Artificial Intelligence +1301.6719 Artificial Intelligence +1301.6720 Artificial Intelligence +1301.6721 Artificial Intelligence +1301.6722 Artificial Intelligence +1301.6723 Learning +1301.6724 Artificial Intelligence +1301.6725 Artificial Intelligence +1301.6726 Artificial Intelligence +1301.6727 Artificial Intelligence +1301.6728 Information Retrieval +1301.6729 Artificial Intelligence +1301.6730 Learning +1301.6731 Learning +1301.6732 Artificial Intelligence +1301.6733 Artificial Intelligence +1301.6734 Artificial Intelligence +1301.6735 Artificial Intelligence +1301.6736 Artificial Intelligence +1301.6737 Artificial Intelligence +1301.6738 Learning +1301.6739 Artificial Intelligence +1301.6740 Artificial Intelligence +1301.6741 Artificial Intelligence +1301.6742 Artificial Intelligence +1301.6743 Artificial Intelligence +1301.6744 Artificial Intelligence +1301.6745 Artificial Intelligence +1301.6746 Artificial Intelligence +1301.6747 Artificial Intelligence +1301.6748 Artificial Intelligence +1301.6749 Artificial Intelligence +1301.6750 Artificial Intelligence +1301.6751 Artificial Intelligence +1301.6752 Optimization and Control +1301.6753 Cosmology and Nongalactic Astrophysics +1301.6765 Accelerator Physics +1301.6766 High Energy Astrophysical Phenomena +1301.6770 Information Retrieval +1301.6772 Number Theory +1301.6774 Accelerator Physics +1301.6780 Databases +1301.6786 Accelerator Physics +1301.6787 Information Theory +1301.6788 Rings and Algebras +1301.6789 Artificial Intelligence +1301.6790 Instrumentation and Methods for Astrophysics +1301.6793 Information Theory +1301.6795 +1301.6797 Group Theory +1301.6800 Accelerator Physics +1301.6801 Combinatorics +1301.6802 Physics and Society +1301.6804 Cryptography and Security +1301.6807 Number Theory +1301.6808 Instrumentation and Methods for Astrophysics +1301.6816 Operator Algebras +1301.6817 Algebraic Topology +1301.6821 Statistical Mechanics +1301.6822 Information Retrieval +1301.6834 Materials Science +1301.6836 Programming Languages +1301.6839 Plasma Physics +1301.6843 Computers and Society +1301.6844 Geometric Topology +1301.6862 Numerical Analysis +1301.6863 Operator Algebras +1301.6867 Analysis of PDEs +1301.6868 Soft Condensed Matter +1301.6870 Social and Information Networks +1301.6873 Cosmology and Nongalactic Astrophysics +1301.6874 Analysis of PDEs +1301.6877 Phenomenology +1301.6883 Operator Algebras +1301.6885 +1301.6886 Commutative Algebra +1301.6887 Phenomenology +1301.6890 Commutative Algebra +1301.6893 Analysis of PDEs +1301.6894 Materials Science +1301.6896 Spectral Theory +1301.6899 Social and Information Networks +1301.6901 Functional Analysis +1301.6904 Mesoscale and Nanoscale Physics +1301.6910 Phenomenology +1301.6916 Data Structures and Algorithms +1301.6918 Phenomenology +1301.6919 Theory +1301.6921 Statistics Theory +1301.6923 Information Theory +1301.6932 Social and Information Networks +1301.6935 +1301.6938 Information Theory +1301.6943 Earth and Planetary Astrophysics +1301.6944 Machine Learning +1301.6948 Chaotic Dynamics +1301.6949 +1301.6952 Databases +1301.6953 Phenomenology +1301.6955 +1301.6958 Physics and Society +1301.6959 Solar and Stellar Astrophysics +1301.6960 Materials Science +1301.6965 Geophysics +1301.6972 Cryptography and Security +1301.6976 Phenomenology +1301.6977 Group Theory +1301.6985 Accelerator Physics +1301.6986 Soft Condensed Matter +1301.6989 Accelerator Physics +1301.6993 Accelerator Physics +1301.6994 Complex Variables +1301.6995 Accelerator Physics +1301.7008 Optics +1301.7011 Astrophysics of Galaxies +1301.7012 +1301.7018 Mesoscale and Nanoscale Physics +1301.7024 Number Theory +1301.7025 Mesoscale and Nanoscale Physics +1301.7026 Methodology +1301.7031 Information Theory +1301.7032 Accelerator Physics +1301.7033 Materials Science +1301.7038 Optics +1301.7039 Accelerator Physics +1301.7043 Spectral Theory +1301.7047 Machine Learning +1301.7051 +1301.7053 +1301.7054 Information Theory +1301.7055 Solar and Stellar Astrophysics +1301.7056 Symplectic Geometry +1301.7057 Classical Analysis and ODEs +1301.7058 History and Overview +cond-mat/0511263 Statistical Mechanics +math/0510119 Quantum Algebra +math/9806063 Quantum Algebra +0803.0726 Data Structures and Algorithms +0907.5228 +0909.5642 Mesoscale and Nanoscale Physics +0912.0020 Rings and Algebras +1002.4208 Mesoscale and Nanoscale Physics +1007.0223 Rings and Algebras +1009.3006 Computational Geometry +1011.1238 +1101.2403 Theory +1103.3916 Number Theory +1106.5539 Differential Geometry +1108.1267 Number Theory +1108.3769 +1109.0368 Dynamical Systems +1110.0657 +1111.1148 +1111.3995 +1111.6201 Learning +1112.6085 Trading and Market Microstructure +1202.1781 Phenomenology +1202.6477 Atomic and Molecular Clusters +1203.1849 Combinatorics +1203.3915 Combinatorics +1203.6692 +1204.0565 +1204.3227 K-Theory and Homology +1205.2914 Differential Geometry +1206.1714 Formal Languages and Automata Theory +1206.3926 Analysis of PDEs +1206.4145 +1207.1486 +1208.0436 Plasma Physics +1208.1197 Strongly Correlated Electrons +1208.2133 Metric Geometry +1208.2662 Experiment +1208.4290 Learning +1208.5881 +1209.0393 Phenomenology +1209.0422 Mesoscale and Nanoscale Physics +1209.1535 Mesoscale and Nanoscale Physics +1209.3131 Chaotic Dynamics +1209.4695 Pricing of Securities +1209.5736 +1210.0488 +1210.1856 Theory +1210.5509 Geometric Topology +1210.6844 Atmospheric and Oceanic Physics +1211.0370 +1211.0644 Phenomenology +1211.0920 Symplectic Geometry +1211.1057 Differential Geometry +1211.1166 +1211.2427 Phenomenology +1211.3458 +1211.3624 Logic in Computer Science +1211.4538 +1211.4587 Theory +1211.5162 Quantum Gases +1211.5632 +1211.6297 Plasma Physics +1211.6707 Superconductivity +1212.0513 Cosmology and Nongalactic Astrophysics +1212.1415 Plasma Physics +1212.2199 Exactly Solvable and Integrable Systems +1212.3012 +1212.3735 Complex Variables +1212.5386 Probability +1212.5848 +1212.5928 Geometric Topology +1212.6212 Quantum Gases +1301.0881 Phenomenology +1301.1381 +1301.3226 Learning +1301.5152 Mesoscale and Nanoscale Physics +1301.5525 Dynamical Systems +1301.6236 Information Theory +1301.6951 Quantum Gases +1301.7551 +1301.7601 +1302.1412 Probability +1302.1590 Mesoscale and Nanoscale Physics +1302.2280 Statistical Mechanics +1302.2545 General Physics +1302.4034 Phenomenology +1302.4672 Statistical Mechanics +1302.6129 +1302.6165 General Physics +1302.6341 Atomic Physics +1302.6480 Superconductivity +1302.7257 Earth and Planetary Astrophysics +1303.0360 +1303.0892 Probability +1303.1155 Statistical Mechanics +1303.1353 Mesoscale and Nanoscale Physics +1303.2196 +1303.5117 Optimization and Control +1303.5841 Systems and Control +1303.5842 Optimization and Control +1303.6074 Differential Geometry +1303.6613 Chemical Physics +1303.6779 Soft Condensed Matter +1304.0318 Disordered Systems and Neural Networks +1304.0358 +1304.0756 Metric Geometry +1304.3291 Mesoscale and Nanoscale Physics +1304.3373 Commutative Algebra +1304.4463 Representation Theory +1304.4774 Mesoscale and Nanoscale Physics +1304.6496 Networking and Internet Architecture +1305.1478 Information Theory +1305.3686 Materials Science +1305.3962 +1305.4454 +1305.4475 +1305.5264 Optics +1305.6756 Algebraic Topology +1305.6800 Digital Libraries +1305.6850 Statistical Mechanics +1305.6940 History and Philosophy of Physics +1305.6945 Combinatorics +1305.6947 +1305.6950 +1305.6951 Symplectic Geometry +1305.6954 Information Theory +1305.6957 Commutative Algebra +1305.6958 Category Theory +1305.6962 +1305.6963 Astrophysics of Galaxies +1305.6969 Classical Physics +1305.6970 Combinatorics +1305.6973 +1305.6974 Physics and Society +1305.6976 Numerical Analysis +1305.6978 Space Physics +1305.6979 Social and Information Networks +1305.6980 Solar and Stellar Astrophysics +1305.6986 +1305.6990 Materials Science +1305.6991 +1305.6992 Networking and Internet Architecture +1305.6993 Systems and Control +1305.6995 Other Statistics +1305.6996 Representation Theory +1305.7000 Optics +1305.7003 Probability +1305.7004 Commutative Algebra +1305.7006 Databases +1305.7010 Applications +1305.7011 Number Theory +1305.7012 Optimization and Control +1305.7013 Materials Science +1305.7014 Information Retrieval +1305.7015 Optimization and Control +1305.7016 High Energy Astrophysical Phenomena +1305.7017 Soft Condensed Matter +1305.7018 Strongly Correlated Electrons +1305.7019 Soft Condensed Matter +1305.7023 Phenomenology +1305.7024 Analysis of PDEs +1305.7029 Optics +1305.7030 Biological Physics +1305.7036 Accelerator Physics +1305.7038 Cryptography and Security +1305.7040 Symplectic Geometry +1305.7043 Differential Geometry +1305.7044 +1305.7048 Materials Science +1305.7050 Logic in Computer Science +1305.7053 Computer Vision and Pattern Recognition +1305.7056 Neural and Evolutionary Computing +1305.7064 Complex Variables +1305.7066 Number Theory +1305.7068 Quantitative Methods +1305.7070 Strongly Correlated Electrons +1305.7075 +1305.7077 Complex Variables +1305.7080 Logic +1305.7090 Solar and Stellar Astrophysics +1305.7093 Pattern Formation and Solitons +1305.7098 Solar and Stellar Astrophysics +1305.7100 Functional Analysis +1305.7102 +1305.7103 Networking and Internet Architecture +1305.7109 Functional Analysis +1305.7111 Learning +1305.7121 Systems and Control +1305.7122 Analysis of PDEs +1305.7127 Functional Analysis +1305.7128 Cryptography and Security +1305.7129 +1305.7130 Artificial Intelligence +1305.7131 Atomic Physics +1305.7133 Optics +1305.7143 Phenomenology +1305.7144 Cryptography and Security +1305.7145 Artificial Intelligence +1305.7146 Social and Information Networks +1305.7148 Analysis of PDEs +1305.7150 Complex Variables +1305.7155 Earth and Planetary Astrophysics +1305.7159 Operator Algebras +1305.7164 Dynamical Systems +1305.7182 Systems and Control +1305.7185 Artificial Intelligence +1305.7186 Logic +1305.7187 History and Overview +1305.7194 Populations and Evolution +1305.7195 Plasma Physics +1305.7196 Digital Libraries +1305.7200 Digital Libraries +1305.7212 Number Theory +1305.7213 Number Theory +1305.7214 Information Theory +1305.7218 Algebraic Geometry +math/0506059 K-Theory and Homology +math/0611171 Functional Analysis +0707.4379 +0709.1768 Representation Theory +0802.0545 Phenomenology +0802.4452 +0807.0630 +0911.2769 Representation Theory +0912.5070 Representation Theory +1002.4134 High Energy Astrophysical Phenomena +1003.1536 Dynamical Systems +1004.1700 Representation Theory +1006.2484 Cosmology and Nongalactic Astrophysics +1009.0325 Analysis of PDEs +1011.3238 Operator Algebras +1012.0967 Materials Science +1012.2911 +1012.2916 +1012.2917 +1102.3591 High Energy Astrophysical Phenomena +1104.0329 High Energy Astrophysical Phenomena +1105.1011 Statistics Theory +1105.5218 Group Theory +1107.1584 Algebraic Geometry +1107.2521 Neurons and Cognition +1108.1822 Differential Geometry +1108.5844 Analysis of PDEs +1109.0918 Emerging Technologies +1110.2448 Analysis of PDEs +1110.6723 Representation Theory +1111.2511 +1111.2547 Theory +1111.5537 Soft Condensed Matter +1112.2318 Optimization and Control +1112.3921 Classical Analysis and ODEs +1112.4580 +1112.6007 Computational Complexity +1201.0087 Group Theory +1201.3632 Materials Science +1201.4089 Artificial Intelligence +1201.5653 Logic in Computer Science +1202.4572 General Physics +1202.4807 +1203.0386 High Energy Astrophysical Phenomena +1203.0854 Differential Geometry +1203.2793 Spectral Theory +1203.2807 +1203.5276 Classical Analysis and ODEs +1203.6106 Experiment +1203.6829 Differential Geometry +1204.0192 Materials Science +1204.2438 General Topology +1204.2970 High Energy Astrophysical Phenomena +1204.4473 Classical Analysis and ODEs +1204.5961 +1205.1558 Combinatorics +1205.4407 Differential Geometry +1206.2418 +1206.5094 Algebraic Topology +1206.5098 Functional Analysis +1206.6925 Phenomenology +1207.2800 Combinatorics +1207.4788 Phenomenology +1207.5189 Number Theory +1207.6461 Statistics Theory +1208.1126 Physics Education +1208.4295 +1208.4931 Quantum Gases +1209.0583 Theory +1209.2713 +1209.3073 Theory +1209.3120 Strongly Correlated Electrons +1209.4046 +1209.4694 Theory +1209.5171 +1210.0091 Artificial Intelligence +1210.0534 Theory +1210.0787 +1210.1273 Dynamical Systems +1210.1299 Combinatorics +1210.5421 Fluid Dynamics +1210.5638 Differential Geometry +1210.7113 Materials Science +1210.7550 Experiment +1211.0417 Mesoscale and Nanoscale Physics +1211.0494 High Energy Astrophysical Phenomena +1211.2357 +1211.2512 Artificial Intelligence +1211.2525 Group Theory +1211.3673 Superconductivity +1211.4221 Probability +1211.5234 Analysis of PDEs +1211.5746 Classical Analysis and ODEs +1211.6486 Probability +1212.1470 Strongly Correlated Electrons +1212.2729 +1212.2954 Functional Analysis +1212.3185 Learning +1212.4691 Mesoscale and Nanoscale Physics +1212.4883 Strongly Correlated Electrons +1212.5994 Functional Analysis +1212.6036 Computational Geometry +1212.6038 Computational Geometry +1212.6637 Theory +1212.6688 Soft Condensed Matter +1301.0117 Biomolecules +1301.0327 Strongly Correlated Electrons +1301.0355 High Energy Astrophysical Phenomena +1301.0798 Statistical Mechanics +1301.1869 Quantum Gases +1301.2226 Mesoscale and Nanoscale Physics +1301.2352 Combinatorics +1301.2370 +1301.3041 Classical Analysis and ODEs +1301.3084 Materials Science +1301.4577 Phenomenology +1301.5245 Soft Condensed Matter +1301.5484 Cosmology and Nongalactic Astrophysics +1301.6265 Neural and Evolutionary Computing +1301.6764 Phenomenology +1301.7246 Mesoscale and Nanoscale Physics +1301.7686 Materials Science +1302.0875 High Energy Astrophysical Phenomena +1302.1041 Mesoscale and Nanoscale Physics +1302.1127 General Physics +1302.2277 Learning +1302.3081 Combinatorics +1302.3285 Superconductivity +1302.3299 Physics and Society +1302.4035 +1302.4387 Learning +1302.5217 +1302.5348 Learning +1302.5743 Plasma Physics +1302.6502 Atomic Physics +1302.6758 Solar and Stellar Astrophysics +1303.0054 Probability +1303.0111 Superconductivity +1303.0167 Optimization and Control +1303.0230 Phenomenology +1303.0309 Machine Learning +1303.1733 Learning +1303.2888 Strongly Correlated Electrons +1303.3156 Phenomenology +1303.3371 Logic in Computer Science +1303.3968 Number Theory +1303.4016 Strongly Correlated Electrons +1303.5700 Phenomenology +1303.6247 +1303.6258 Superconductivity +1303.6443 Materials Science +1303.6547 Complex Variables +1303.6917 +1304.0166 Discrete Mathematics +1304.0849 Superconductivity +1304.2018 Neurons and Cognition +1304.2246 +1304.2591 Experiment +1304.2880 Classical Analysis and ODEs +1304.4010 Solar and Stellar Astrophysics +1304.4525 General Finance +1304.4928 Populations and Evolution +1304.5076 Optics +1304.5312 Experiment +1304.6525 Materials Science +1304.7717 Machine Learning +1304.7948 Computer Vision and Pattern Recognition +1305.0978 Systems and Control +1305.1860 Classical Analysis and ODEs +1305.1990 Optimization and Control +1305.3057 Classical Physics +1305.3251 Other Computer Science +1305.3282 Physics and Society +1305.3461 Complex Variables +1305.4226 Dynamical Systems +1305.4268 Methodology +1305.4456 Representation Theory +1305.4734 Chemical Physics +1305.4808 Phenomenology +1305.5534 Instrumentation and Methods for Astrophysics +1305.6190 +1305.6207 Mesoscale and Nanoscale Physics +1305.6210 Mesoscale and Nanoscale Physics +1305.6452 Mesoscale and Nanoscale Physics +1305.6505 Classical Physics +1305.6541 Optimization and Control +1305.7033 Instrumentation and Detectors +1305.7057 Learning +1305.7058 Artificial Intelligence +1305.7175 Algebraic Geometry +1305.7177 Algebraic Geometry +1306.0002 Theory +1306.0006 Phenomenology +1306.0008 Cosmology and Nongalactic Astrophysics +1306.0017 Theory +1306.0018 Cryptography and Security +1306.0019 Discrete Mathematics +1306.0020 +1306.0022 Phenomenology +1306.0025 Genomics +1306.0029 Information Theory +1306.0031 Group Theory +1306.0033 Group Theory +1306.0040 Computation +1306.0047 Cosmology and Nongalactic Astrophysics +1306.0048 Atomic Physics +1306.0055 Dynamical Systems +1306.0057 Optimization and Control +1306.0060 Dynamical Systems +1306.0061 Physics and Society +1306.0065 Instrumentation and Methods for Astrophysics +1306.0066 Logic +1306.0068 Number Theory +1306.0069 Quantitative Methods +1306.0071 Populations and Evolution +1306.0073 Representation Theory +1306.0077 Distributed, Parallel, and Cluster Computing +1306.0079 Functional Analysis +1306.0080 Analysis of PDEs +1306.0082 Analysis of PDEs +1306.0083 Quantum Algebra +1306.0085 Astrophysics of Galaxies +1306.0087 Statistical Mechanics +1306.0089 Hardware Architecture +1306.0090 Neural and Evolutionary Computing +1306.0092 Experiment +1306.0093 Combinatorics +1306.0094 Information Theory +1306.0095 Artificial Intelligence +1306.0098 +1306.0099 Analysis of PDEs +1306.0103 Numerical Analysis +1306.0105 Dynamical Systems +1306.0106 +1306.0113 Methodology +1306.0115 Dynamical Systems +1306.0118 +1306.0122 Analysis of PDEs +1306.0123 Probability +1306.0124 Dynamical Systems +1306.0125 Learning +1306.0127 +1306.0128 Artificial Intelligence +1306.0132 Numerical Analysis +1306.0138 Differential Geometry +1306.0139 Computer Vision and Pattern Recognition +1306.0140 Combinatorics +1306.0143 Optimization and Control +1306.0152 Computer Vision and Pattern Recognition +1306.0153 Computational Complexity +1306.0154 Mesoscale and Nanoscale Physics +1306.0155 Learning +1306.0156 Methodology +1306.0161 Materials Science +1306.0162 Information Theory +1306.0163 Algebraic Geometry +1306.0164 Optics +1306.0165 Information Retrieval +1306.0173 Computer Science and Game Theory +1306.0174 Group Theory +1306.0177 Atomic Physics +1306.0180 Biological Physics +1306.0183 Networking and Internet Architecture +1306.0188 High Energy Astrophysical Phenomena +1306.0189 Soft Condensed Matter +1306.0190 Soft Condensed Matter +1306.0192 Soft Condensed Matter +1306.0194 Computational Engineering, Finance, and Science +1306.0195 Computers and Society +1306.0198 Soft Condensed Matter +1306.0199 Biomolecules +1306.0200 Soft Condensed Matter +1306.0201 Statistical Mechanics +1306.0202 Machine Learning +1306.0203 Optimization and Control +1306.0207 Data Structures and Algorithms +1306.0208 Probability +1306.0209 Complex Variables +1306.0212 Probability +1306.0213 General Physics +1306.0217 Spectral Theory +1306.0219 Differential Geometry +1306.0221 Multimedia +1306.0222 Networking and Internet Architecture +1306.0227 Numerical Analysis +1306.0232 Dynamical Systems +1306.0233 Social and Information Networks +1306.0234 Algebraic Geometry +1306.0235 +1306.0236 Analysis of PDEs +1306.0238 General Physics +1306.0244 Combinatorics +1306.0246 Functional Analysis +1306.0248 Number Theory +1306.0250 Computational Physics +1306.0252 Phenomenology +1306.0253 Cellular Automata and Lattice Gases +1306.0254 Statistics Theory +1306.0255 Probability +1306.0256 Statistics Theory +1306.0258 Emerging Technologies +1306.0259 Classical Analysis and ODEs +1306.0261 +1306.0271 Learning +1306.0277 Soft Condensed Matter +1306.0281 Computational Complexity +1306.0286 Mesoscale and Nanoscale Physics +1306.0289 Accelerator Physics +1306.0290 Statistics Theory +1306.0291 Information Theory +1306.0292 Materials Science +1306.0296 K-Theory and Homology +1306.0301 Materials Science +1306.0302 Instrumentation and Detectors +1306.0303 Probability +1306.0306 Differential Geometry +1306.0310 +1306.0312 Networking and Internet Architecture +1306.0315 Cryptography and Security +1306.0318 Complex Variables +1306.0321 Number Theory +1306.0323 Spectral Theory +1306.0324 Accelerator Physics +1306.0326 Distributed, Parallel, and Cluster Computing +1306.0327 Chemical Physics +1306.0329 Numerical Analysis +1306.0332 Soft Condensed Matter +1306.0334 Networking and Internet Architecture +1306.0342 Combinatorics +1306.0343 Solar and Stellar Astrophysics +1306.0345 Pricing of Securities +1306.0348 Instrumentation and Methods for Astrophysics +1306.0351 +1306.0352 Functional Analysis +1306.0357 Numerical Analysis +1306.0359 Analysis of PDEs +1306.0361 Computers and Society +1306.0362 Operator Algebras +1306.0369 Emerging Technologies +1306.0371 Dynamical Systems +1306.0375 Mesoscale and Nanoscale Physics +1306.0376 Analysis of PDEs +1306.0379 Mesoscale and Nanoscale Physics +1306.0380 Mesoscale and Nanoscale Physics +1306.0381 Analysis of PDEs +1306.0382 Functional Analysis +1306.0383 Theory +1306.0384 Dynamical Systems +1306.0388 Computer Science and Game Theory +1306.0399 +1306.0406 Data Structures and Algorithms +1306.0417 Analysis of PDEs +1306.0418 +1306.0424 Social and Information Networks +1306.0426 Plasma Physics +1306.0428 Computer Science and Game Theory +1306.0433 Dynamical Systems +1306.0436 Dynamical Systems +1306.0438 Combinatorics +1306.0440 +1306.0441 Distributed, Parallel, and Cluster Computing +1306.0442 Neural and Evolutionary Computing +1306.0448 Distributed, Parallel, and Cluster Computing +1306.0451 General Physics +1306.0459 Materials Science +1306.0460 Operator Algebras +1306.0461 Combinatorics +1306.0467 +1306.0468 General Finance +1306.0474 Differential Geometry +1306.0475 +1306.0478 Computers and Society +1306.0485 Rings and Algebras +1306.0493 Physics and Society +1306.0497 Cryptography and Security +1306.0499 Functional Analysis +1306.0500 Cosmology and Nongalactic Astrophysics +1306.0505 Data Analysis, Statistics and Probability +1306.0522 Mesoscale and Nanoscale Physics +1306.0524 Discrete Mathematics +1306.0525 +1306.0530 Information Theory +1306.0535 K-Theory and Homology +1306.0536 Numerical Analysis +1306.0539 Artificial Intelligence +1306.0541 Learning +1306.0542 Commutative Algebra +1306.0544 Functional Analysis +1306.0545 History and Philosophy of Physics +1306.0549 Cryptography and Security +math-ph/0312073 +math/0106114 Probability +math/0211254 Functional Analysis +math/0301207 Analysis of PDEs +math/0702712 Representation Theory +q-bio/0510005 Populations and Evolution +quant-ph/0112037 +0705.4122 Group Theory +0807.4034 Geometric Topology +0812.1676 Differential Geometry +0812.4839 +0901.0104 Astrophysics of Galaxies +0905.3897 Classical Analysis and ODEs +1003.0732 Mesoscale and Nanoscale Physics +1007.0981 Phenomenology +1007.1163 +1007.3730 Rings and Algebras +1010.1294 Probability +1010.5116 Analysis of PDEs +1011.6034 Operator Algebras +1102.4963 Mesoscale and Nanoscale Physics +1103.6242 +1104.0110 Mesoscale and Nanoscale Physics +1104.2512 Quantum Gases +1104.3994 Probability +1104.4917 Probability +1104.5218 Probability +1105.3251 Metric Geometry +1107.2940 Theory +1107.4144 Strongly Correlated Electrons +1108.2646 Materials Science +1110.1172 Cosmology and Nongalactic Astrophysics +1110.4058 +1110.5663 Complex Variables +1111.6580 Theory +1201.4898 Cosmology and Nongalactic Astrophysics +1201.6020 +1202.6357 Mesoscale and Nanoscale Physics +1203.0270 Differential Geometry +1203.0946 Optimization and Control +1203.3868 Combinatorics +1205.3489 Differential Geometry +1205.5400 Materials Science +1205.6742 Group Theory +1206.2120 Probability +1206.3693 Optimization and Control +1206.5318 Earth and Planetary Astrophysics +1207.0609 Phenomenology +1207.2810 Quantum Gases +1207.5122 Combinatorics +1208.4428 Spectral Theory +1209.3203 Networking and Internet Architecture +1210.7468 Networking and Internet Architecture +1211.1946 Algebraic Geometry +1211.3722 Programming Languages +1212.0304 Digital Libraries +1212.0705 Analysis of PDEs +1212.1228 Materials Science +1212.2166 Cosmology and Nongalactic Astrophysics +1212.4550 Cosmology and Nongalactic Astrophysics +1212.6194 Experiment +1301.4134 Exactly Solvable and Integrable Systems +1301.5559 Cosmology and Nongalactic Astrophysics +1301.7132 Statistical Mechanics +1302.0020 Strongly Correlated Electrons +1302.1499 Strongly Correlated Electrons +1302.2428 Phenomenology +1302.3165 Quantum Gases +1302.4341 Mesoscale and Nanoscale Physics +1303.0496 Optics +1303.0515 Solar and Stellar Astrophysics +1303.1169 Materials Science +1303.2778 +1303.2780 +1303.2790 Analysis of PDEs +1303.2839 +1303.4843 +1303.5237 Numerical Analysis +1303.5555 Statistical Mechanics +1303.5567 Soft Condensed Matter +1303.6004 Quantum Gases +1303.6124 Cosmology and Nongalactic Astrophysics +1303.6226 +1303.7271 +1304.0461 Theory +1304.0817 Genomics +1304.1155 Theory +1304.1468 +1304.2264 +1304.3285 Machine Learning +1304.4466 +1304.5211 Theory +1304.5786 +1304.6219 +1304.6423 Optics +1304.6424 Superconductivity +1304.6446 Computational Physics +1304.6687 Strongly Correlated Electrons +1304.7362 +1305.1065 Analysis of PDEs +1305.3621 Theory +1305.3786 Mesoscale and Nanoscale Physics +1305.3814 Information Retrieval +1305.3870 Phenomenology +1305.4132 Pricing of Securities +1305.4612 Mesoscale and Nanoscale Physics +1305.7277 Cosmology and Nongalactic Astrophysics +1305.7298 Strongly Correlated Electrons +1305.7425 Cosmology and Nongalactic Astrophysics +1306.0295 Lattice +1306.1150 Cosmology and Nongalactic Astrophysics +1306.3480 Discrete Mathematics +1306.4084 Mesoscale and Nanoscale Physics +1307.0425 Mesoscale and Nanoscale Physics +1307.0647 Soft Condensed Matter +1307.0860 Commutative Algebra +1307.1956 Commutative Algebra +1307.3027 +1307.3107 Information Theory +1307.3672 Portfolio Management +1307.4633 Materials Science +1307.5078 Number Theory +1307.5169 Lattice +1307.5819 Strongly Correlated Electrons +1307.6026 High Energy Astrophysical Phenomena +1307.6080 Information Retrieval +1307.6116 Instrumentation and Methods for Astrophysics +1307.6143 Machine Learning +1307.6163 Computation and Language +1307.6216 Cosmology and Nongalactic Astrophysics +1307.6229 +1307.6236 Analysis of PDEs +1307.6246 Computer Science and Game Theory +1307.6250 Computer Science and Game Theory +1307.6254 Applications +1307.6255 +1307.6257 Solar and Stellar Astrophysics +1307.6258 Applications +1307.6262 High Energy Astrophysical Phenomena +1307.6267 Statistical Mechanics +1307.6269 Superconductivity +1307.6273 Number Theory +1307.6275 Methodology +1307.6277 Phenomenology +1307.6278 +1307.6285 Information Theory +1307.6290 Applications +1307.6291 Artificial Intelligence +1307.6292 Complex Variables +1307.6293 Analysis of PDEs +1307.6302 Accelerator Physics +1307.6303 Computer Vision and Pattern Recognition +1307.6305 Numerical Analysis +1307.6307 Digital Libraries +1307.6309 Mesoscale and Nanoscale Physics +1307.6311 Materials Science +1307.6313 Instrumentation and Methods for Astrophysics +1307.6314 Fluid Dynamics +1307.6315 Mesoscale and Nanoscale Physics +1307.6319 Plasma Physics +1307.6321 Information Theory +1307.6324 Materials Science +1307.6328 Multimedia +1307.6330 Soft Condensed Matter +1307.6332 Pricing of Securities +1307.6333 Logic in Computer Science +1307.6334 High Energy Astrophysical Phenomena +1307.6338 Statistics Theory +1307.6342 Solar and Stellar Astrophysics +1307.6343 Networking and Internet Architecture +1307.6344 Combinatorics +1307.6345 Information Theory +1307.6347 High Energy Astrophysical Phenomena +1307.6349 Networking and Internet Architecture +1307.6350 Networking and Internet Architecture +1307.6353 Fluid Dynamics +1307.6354 Cryptography and Security +1307.6360 Graphics +1307.6366 Applications +1307.6369 Human-Computer Interaction +1307.6370 +1307.6372 Human-Computer Interaction +1307.6376 Classical Analysis and ODEs +1307.6378 Human-Computer Interaction +1307.6380 Commutative Algebra +1307.6387 Dynamical Systems +1307.6389 Probability +1307.6391 Combinatorics +1307.6393 Analysis of PDEs +1307.6400 Phenomenology +1307.6405 Mesoscale and Nanoscale Physics +1307.6406 Hardware Architecture +1307.6409 Cryptography and Security +1307.6410 Neural and Evolutionary Computing +1307.6411 Instrumentation and Detectors +1307.6414 Computational Complexity +1307.6416 Operator Algebras +1307.6420 Fluid Dynamics +1307.6422 Information Retrieval +1307.6423 Classical Analysis and ODEs +1307.6430 K-Theory and Homology +1307.6431 Metric Geometry +1307.6435 Number Theory +1307.6438 +1307.6441 Logic +1307.6443 Combinatorics +1307.6448 Phenomenology +1307.6452 +1307.6453 Superconductivity +1307.6454 Solar and Stellar Astrophysics +1307.6455 Number Theory +1307.6461 Instrumentation and Methods for Astrophysics +1307.6462 Data Structures and Algorithms +1307.6464 Analysis of PDEs +1307.6465 Accelerator Physics +1307.6466 Soft Condensed Matter +1307.6468 Other Computer Science +1307.6469 Algebraic Geometry +1307.6471 Biological Physics +1307.6472 Soft Condensed Matter +1307.6475 +1307.6476 Information Theory +1307.6477 Information Theory +1307.6481 Strongly Correlated Electrons +1307.6482 Analysis of PDEs +1307.6486 Pricing of Securities +1307.6488 Computational Physics +1307.6489 Instrumentation and Methods for Astrophysics +1307.6490 Theory +1307.6494 High Energy Astrophysical Phenomena +1307.6495 +1307.6496 Representation Theory +1307.6502 Combinatorics +1307.6508 Materials Science +1307.6509 Representation Theory +1307.6512 Information Theory +1307.6515 Machine Learning +1307.6517 Analysis of PDEs +1307.6518 Cosmology and Nongalactic Astrophysics +1307.6520 Strongly Correlated Electrons +1307.6521 General Physics +1307.6522 Statistics Theory +1307.6523 Combinatorics +1307.6524 Fluid Dynamics +1307.6525 +1307.6526 Strongly Correlated Electrons +1307.6528 Computer Science and Game Theory +1307.6535 Complex Variables +1307.6537 High Energy Astrophysical Phenomena +1307.6539 Applications +1307.6541 +1307.6542 Computer Vision and Pattern Recognition +1307.6544 Computer Vision and Pattern Recognition +1307.6547 Number Theory +1307.6548 Networking and Internet Architecture +1307.6549 Computer Vision and Pattern Recognition +math/0407413 Representation Theory +0707.3835 Geometric Topology +0912.5031 Dynamical Systems +1003.2792 Group Theory +1004.5067 Metric Geometry +1005.3647 +1007.4672 Quantum Gases +1009.2459 +1010.3158 Probability +1012.0971 Theory +1103.1286 Optimization and Control +1103.3925 Probability +1104.1813 Probability +1104.2206 Metric Geometry +1105.0499 Atomic Physics +1105.3839 Probability +1105.4283 Probability +1105.4548 Analysis of PDEs +1105.4841 Probability +1105.4842 Probability +1105.5535 Probability +1106.0176 Biological Physics +1106.0318 Dynamical Systems +1106.6132 Probability +1108.2554 Logic +1109.2844 +1109.3522 Number Theory +1109.5668 Probability +1110.6155 Operator Algebras +1111.2090 Rings and Algebras +1112.6347 Group Theory +1201.1027 Dynamical Systems +1201.3850 Classical Analysis and ODEs +1205.1451 +1205.7079 Combinatorics +1206.7033 Statistical Mechanics +1207.0668 Materials Science +1208.2045 Analysis of PDEs +1209.2376 Cryptography and Security +1209.3168 Classical Analysis and ODEs +1209.3329 Fluid Dynamics +1209.3509 Representation Theory +1211.3938 Optimization and Control +1211.5112 Differential Geometry +1211.6333 Strongly Correlated Electrons +1212.0670 Phenomenology +1212.2019 +1212.3324 Mesoscale and Nanoscale Physics +1212.4769 Algebraic Geometry +1212.4900 Mesoscale and Nanoscale Physics +1212.6227 Differential Geometry +1301.1881 Metric Geometry +1301.3142 Statistical Mechanics +1301.4912 Quantum Algebra +1301.5043 Theory +1302.0192 Soft Condensed Matter +1302.0367 Materials Science +1302.0754 +1302.3279 Chaotic Dynamics +1302.3437 Data Structures and Algorithms +1302.6410 Materials Science +1302.7073 Superconductivity +1303.2977 +1303.2982 Superconductivity +1303.4320 Mesoscale and Nanoscale Physics +1303.4616 Materials Science +1303.4939 +1303.5879 Quantum Algebra +1303.6053 Theory +1303.7449 Mesoscale and Nanoscale Physics +1304.0719 General Mathematics +1304.2008 +1304.4939 +1304.6342 Other Condensed Matter +1304.7059 +1305.1566 Theory +1305.2126 +1305.2631 +1305.3082 Databases +1305.3516 Cosmology and Nongalactic Astrophysics +1305.3938 Strongly Correlated Electrons +1305.4357 Cosmology and Nongalactic Astrophysics +1305.4657 Instrumentation and Detectors +1305.5092 Algebraic Geometry +1305.5857 Optics +1305.5887 Experiment +1305.6182 Algebraic Geometry +1305.6333 Atomic Physics +1306.1020 Number Theory +1306.1332 Networking and Internet Architecture +1306.1453 +1306.1883 +1306.1896 +1306.1901 Programming Languages +1306.2198 High Energy Astrophysical Phenomena +1306.3123 Formal Languages and Automata Theory +1306.3315 Number Theory +1306.3751 +1306.5101 Soft Condensed Matter +1306.6076 Cosmology and Nongalactic Astrophysics +1306.6871 Strongly Correlated Electrons +1307.1206 Mesoscale and Nanoscale Physics +1307.1328 Mesoscale and Nanoscale Physics +1307.1641 +1307.1861 Superconductivity +1307.1894 +1307.2595 Operator Algebras +1307.3653 Data Analysis, Statistics and Probability +1307.3972 Differential Geometry +1307.4113 Logic +1307.4652 Materials Science +1307.4767 Materials Science +1307.5474 Metric Geometry +1307.5495 Instrumentation and Detectors +1307.6228 Algebraic Geometry +1307.6264 +1307.6348 Databases +1307.6371 High Energy Astrophysical Phenomena +1307.6413 High Energy Astrophysical Phenomena +1307.6564 Cosmology and Nongalactic Astrophysics +1307.6570 High Energy Astrophysical Phenomena +1307.6571 High Energy Astrophysical Phenomena +1307.6572 High Energy Astrophysical Phenomena +1307.6574 Distributed, Parallel, and Cluster Computing +1307.6582 Differential Geometry +1307.6583 Quantitative Methods +1307.6590 Logic in Computer Science +1307.6598 Quantum Algebra +1307.6599 Logic +1307.6604 General Physics +1307.6605 Instrumentation and Detectors +1307.6614 Algebraic Geometry +1307.6615 Mesoscale and Nanoscale Physics +1307.6616 Learning +1307.6618 Probability +1307.6620 Differential Geometry +1307.6621 Chemical Physics +1307.6622 Networking and Internet Architecture +1307.6623 Rings and Algebras +1307.6627 Data Structures and Algorithms +1307.6628 Computational Geometry +1307.6638 Mathematical Software +1307.6642 Combinatorics +1307.6644 Solar and Stellar Astrophysics +1307.6649 Distributed, Parallel, and Cluster Computing +1307.6652 +1307.6656 +1307.6660 +1307.6661 +1307.6662 Group Theory +1307.6665 Networking and Internet Architecture +1307.6673 Information Theory +1307.6677 Probability +1307.6680 +1307.6684 Statistical Mechanics +1307.6685 Statistics Theory +1307.6686 Classical Physics +1307.6687 Biological Physics +1307.6688 Analysis of PDEs +1307.6693 Combinatorics +1307.6704 Materials Science +1307.6705 Numerical Analysis +1307.6713 Instrumentation and Methods for Astrophysics +1307.6714 +1307.6718 Materials Science +1307.6720 Solar and Stellar Astrophysics +1307.6721 Combinatorics +1307.6726 Computation and Language +1307.6727 Pricing of Securities +1307.6730 Analysis of PDEs +1307.6731 Chaotic Dynamics +1307.6733 Fluid Dynamics +1307.6737 Superconductivity +1307.6738 Computational Complexity +1307.6741 Functional Analysis +1307.6743 Analysis of PDEs +1307.6747 Distributed, Parallel, and Cluster Computing +1307.6749 Probability +1307.6753 Materials Science +1307.6756 General Mathematics +1307.6757 Astrophysics of Galaxies +1307.6758 Instrumentation and Detectors +1307.6759 Astrophysics of Galaxies +1307.6760 Digital Libraries +1307.6761 Optics +1307.6762 Phenomenology +1307.6765 Digital Libraries +1307.6766 Symplectic Geometry +1307.6770 Digital Libraries +1307.6771 Accelerator Physics +1307.6773 Digital Libraries +1307.6774 Phenomenology +1307.6777 Accelerator Physics +1307.6778 Digital Libraries +1307.6785 Materials Science +1307.6787 Accelerator Physics +1307.6790 Mesoscale and Nanoscale Physics +1307.6791 Digital Libraries +1307.6797 Digital Libraries +1307.6798 High Energy Astrophysical Phenomena +1307.6803 Analysis of PDEs +1307.6804 Digital Libraries +1307.6808 +1307.6811 Instrumentation and Detectors +1307.6812 Group Theory +1307.6814 Learning +1307.6821 Atmospheric and Oceanic Physics +1307.6825 Dynamical Systems +1307.6827 Analysis of PDEs +1307.6830 Probability +1307.6835 Statistics Theory +1307.6836 Statistics Theory +1307.6837 Applications +1307.6841 Combinatorics +1307.6844 Materials Science +1307.6849 Dynamical Systems +1307.6855 Solar and Stellar Astrophysics +astro-ph/0202314 +0905.2349 Probability +1302.2362 Probability +1306.6588 Probability +0705.0070 Algebraic Geometry +0707.0861 Statistics Theory +0806.1663 Superconductivity +0807.3350 Populations and Evolution +0812.1528 Combinatorics +0812.2727 Theory +1002.2334 Computer Science and Game Theory +1003.4855 Combinatorics +1006.5959 Algebraic Geometry +1008.3444 Representation Theory +1009.2586 Combinatorics +1010.1612 General Physics +1010.6286 Group Theory +1012.5089 Numerical Analysis +1101.0686 Atomic Physics +1102.4811 Statistics Theory +1102.4996 Probability +1102.5014 Statistics Theory +1106.3287 Number Theory +1108.1738 Algebraic Geometry +1109.0903 Geometric Topology +1109.2251 Number Theory +1109.6705 Algebraic Geometry +1110.0543 Computational Physics +1110.3667 Other Condensed Matter +1110.3908 Differential Geometry +1110.3912 Differential Geometry +1110.5254 Applications +1111.4835 Data Analysis, Statistics and Probability +1111.6832 Machine Learning +1201.3084 Phenomenology +1201.3869 Networking and Internet Architecture +1202.2798 +1204.0495 Combinatorics +1204.1871 Geometric Topology +1204.1908 Experiment +1204.2023 Phenomenology +1205.0178 Formal Languages and Automata Theory +1205.2885 Materials Science +1206.2123 Information Retrieval +1206.2126 Information Retrieval +1206.2727 High Energy Astrophysical Phenomena +1206.3332 Biological Physics +1206.4569 High Energy Astrophysical Phenomena +1206.4801 Optics +1207.1691 Optimization and Control +1207.4852 Algebraic Topology +1207.5001 Classical Analysis and ODEs +1207.5120 Algebraic Geometry +1208.1751 Optimization and Control +1208.2807 Theory +1208.3782 Biomolecules +1208.5647 Optics +1209.0899 Statistics Theory +1210.0670 Computational Finance +1210.0799 Quantum Gases +1210.2279 History and Overview +1210.4358 Materials Science +1210.5003 Combinatorics +1210.5029 Applications +1210.5316 Mesoscale and Nanoscale Physics +1211.0882 Methodology +1211.2020 Combinatorics +1211.2144 Algebraic Topology +1211.5425 Information Theory +1211.6590 +1212.5714 Algebraic Geometry +1301.0883 Number Theory +1301.0903 Number Theory +1301.3269 Numerical Analysis +1301.4978 Geometric Topology +1301.6446 Quantum Gases +1301.6529 Information Theory +1301.6957 Soft Condensed Matter +1301.7037 +1302.2475 +1302.2618 Cosmology and Nongalactic Astrophysics +1302.3036 +1302.5161 Distributed, Parallel, and Cluster Computing +1302.5266 +1302.5440 Mesoscale and Nanoscale Physics +1302.6022 Computational Physics +1302.6447 Dynamical Systems +1303.0375 Mesoscale and Nanoscale Physics +1303.0804 Mesoscale and Nanoscale Physics +1303.1028 Statistical Mechanics +1303.1287 +1303.1348 Cosmology and Nongalactic Astrophysics +1303.1602 +1303.4284 +1303.5973 Methodology +1303.6092 Systems and Control +1303.6405 Statistical Mechanics +1303.7313 Combinatorics +1304.0545 +1304.0973 Disordered Systems and Neural Networks +1304.1775 +1304.2403 Optics +1304.4024 +1304.5393 Mesoscale and Nanoscale Physics +1304.6136 Computational Physics +1304.7431 Theory +1304.7583 +1304.7633 Biomolecules +1305.0314 Mesoscale and Nanoscale Physics +1305.3897 Statistics Theory +1305.3967 Data Analysis, Statistics and Probability +1305.4073 +1305.4170 Computational Geometry +1305.7063 Plasma Physics +1305.7108 Statistical Mechanics +1305.7188 +1306.0957 Information Theory +1306.2006 +1306.2280 +1306.2568 Number Theory +1306.4796 Quantum Gases +1306.4820 Group Theory +1306.4931 Phenomenology +1306.6879 Phenomenology +1307.0338 +1307.0344 Strongly Correlated Electrons +1307.1291 Strongly Correlated Electrons +1307.1347 Phenomenology +1307.3359 +1307.3646 Methodology +1307.3980 Optics +1307.4021 +1307.4609 Theory +1307.5189 Probability +1307.5642 Classical Analysis and ODEs +1307.6870 Quantitative Methods +1308.1513 +1308.1693 Theory +1308.2071 Computational Physics +1308.2082 Strongly Correlated Electrons +1308.3199 Theory +1308.3695 Theory +1308.5298 +1308.5410 Cosmology and Nongalactic Astrophysics +1308.5904 Mesoscale and Nanoscale Physics +1308.6714 Mesoscale and Nanoscale Physics +1309.0969 Materials Science +1309.1058 +1309.2115 Differential Geometry +1309.2468 Mesoscale and Nanoscale Physics +1309.3324 Distributed, Parallel, and Cluster Computing +1309.3889 +1309.3966 Phenomenology +1309.4598 Phenomenology +1309.4746 Cosmology and Nongalactic Astrophysics +1309.5022 +1309.5409 Statistical Mechanics +1309.6982 +1309.7193 Phenomenology +1310.0501 Materials Science +1310.0814 Astrophysics of Galaxies +1310.1053 Phenomenology +1310.1075 +1310.1339 History and Philosophy of Physics +1310.1628 Applications +1310.2288 Probability +1310.2438 Numerical Analysis +1310.2506 Probability +1310.2790 +1310.3410 Geometric Topology +1310.3580 Data Structures and Algorithms +1310.6573 Numerical Analysis +1310.6791 Mesoscale and Nanoscale Physics +1310.7589 Instrumentation and Methods for Astrophysics +1310.8574 Applications +1311.0037 Solar and Stellar Astrophysics +1311.0098 Methodology +1311.0150 +1311.0152 Exactly Solvable and Integrable Systems +1311.0619 Accelerator Physics +1311.1243 Strongly Correlated Electrons +1311.1808 Theory +1311.2011 General Topology +1311.2047 Atomic Physics +1311.2901 Computer Vision and Pattern Recognition +1311.3109 Rings and Algebras +1311.3748 Strongly Correlated Electrons +1311.3793 Plasma Physics +1311.3876 Phenomenology +1311.5372 Dynamical Systems +1311.5638 Mesoscale and Nanoscale Physics +1311.6030 High Energy Astrophysical Phenomena +1311.6168 Number Theory +1311.6211 Learning +1311.6220 Lattice +1311.6412 +1311.6564 Instrumentation and Detectors +1311.6651 Earth and Planetary Astrophysics +1311.6771 Biological Physics +1311.6919 Algebraic Geometry +1311.7030 Numerical Analysis +1311.7082 Combinatorics +1311.7086 Materials Science +1311.7135 High Energy Astrophysical Phenomena +1311.7138 Biological Physics +1311.7139 Artificial Intelligence +1311.7140 Genomics +1311.7141 Solar and Stellar Astrophysics +1311.7142 Disordered Systems and Neural Networks +1311.7145 Theory +1311.7156 Algebraic Geometry +1311.7159 Classical Physics +1311.7161 Combinatorics +1311.7162 Number Theory +1311.7166 +1311.7168 Complex Variables +1311.7175 Solar and Stellar Astrophysics +1311.7177 History and Overview +1311.7178 Computational Complexity +1311.7181 Logic in Computer Science +1311.7182 Cryptography and Security +1311.7184 Machine Learning +1311.7186 Computer Vision and Pattern Recognition +1311.7194 Graphics +1311.7195 Experiment +1311.7197 Analysis of PDEs +1311.7198 Learning +1311.7200 Information Retrieval +1311.7201 Data Structures and Algorithms +1311.7202 Data Structures and Algorithms +1311.7203 Programming Languages +1311.7204 Information Retrieval +1311.7207 Cosmology and Nongalactic Astrophysics +1311.7209 Cosmology and Nongalactic Astrophysics +1311.7210 Distributed, Parallel, and Cluster Computing +1311.7212 Materials Science +1311.7213 Social and Information Networks +1311.7215 Artificial Intelligence +1311.7220 Atomic Physics +1311.7222 Theory +1311.7224 Medical Physics +1311.7229 Computational Complexity +1311.7230 Numerical Analysis +1311.7232 Probability +1311.7233 Functional Analysis +1311.7235 Atmospheric and Oceanic Physics +1311.7242 Programming Languages +1311.7244 Applications +1311.7246 High Energy Astrophysical Phenomena +1311.7247 Materials Science +1311.7250 Combinatorics +1311.7251 Computer Vision and Pattern Recognition +1311.7255 Dynamical Systems +1311.7256 Programming Languages +1311.7257 Applications +1311.7258 +1311.7259 Other Computer Science +1311.7261 Applications +1311.7265 Applications +1311.7267 Combinatorics +1311.7273 Chemical Physics +1311.7279 Applications +1311.7285 Materials Science +1311.7291 Differential Geometry +1311.7292 Geometric Topology +1311.7295 Robotics +1311.7296 Analysis of PDEs +1311.7297 Mesoscale and Nanoscale Physics +1311.7301 Complex Variables +1311.7304 Lattice +1311.7305 Experiment +1311.7306 Fluid Dynamics +1311.7308 Phenomenology +1311.7311 Probability +1311.7314 Optics +1311.7316 Combinatorics +1311.7319 Applications +1311.7326 Applications +1311.7327 Computer Vision and Pattern Recognition +1311.7328 Genomics +1311.7329 Mesoscale and Nanoscale Physics +1311.7333 Applications +1311.7337 Phenomenology +1311.7343 Complex Variables +1311.7349 Algebraic Geometry +1311.7353 Superconductivity +1311.7354 Phenomenology +1311.7362 Experiment +1311.7364 Experiment +1311.7365 Medical Physics +1311.7369 Data Structures and Algorithms +1311.7373 Information Theory +1311.7374 Phenomenology +1311.7375 Analysis of PDEs +1311.7376 Theory +1311.7378 +1311.7382 +1311.7386 Metric Geometry +1311.7388 Information Retrieval +1311.7393 Lattice +1311.7396 Algebraic Geometry +1311.7397 Lattice +1311.7398 Symplectic Geometry +1311.7399 Phenomenology +1311.7400 Networking and Internet Architecture +1311.7401 Applications +1311.7402 Atomic Physics +1311.7403 Formal Languages and Automata Theory +1311.7405 +1311.7406 Phenomenology +1311.7408 Numerical Analysis +1311.7414 Materials Science +1311.7415 Atomic Physics +1311.7416 Differential Geometry +1311.7419 Portfolio Management +1311.7420 Functional Analysis +1311.7421 Networking and Internet Architecture +1311.7422 Distributed, Parallel, and Cluster Computing +1311.7424 Mesoscale and Nanoscale Physics +1311.7425 Phenomenology +1311.7427 Analysis of PDEs +1311.7428 Accelerator Physics +1311.7429 Atomic Physics +1311.7430 Graphics +1311.7433 Subcellular Processes +1311.7435 Distributed, Parallel, and Cluster Computing +1311.7437 Probability +1311.7440 Lattice +1311.7441 Rings and Algebras +1311.7443 Strongly Correlated Electrons +1311.7445 Algebraic Topology +1311.7446 Geometric Topology +1311.7447 Dynamical Systems +1311.7448 Probability +1311.7449 Probability +1311.7453 Exactly Solvable and Integrable Systems +1311.7455 Methodology +1311.7457 Solar and Stellar Astrophysics +1311.7458 Networking and Internet Architecture +1311.7462 Graphics +1311.7466 Information Theory +1311.7467 Phenomenology +1311.7468 Number Theory +1311.7472 Applications +1311.7475 Differential Geometry +1311.7478 Applications +1311.7480 Applications +1311.7482 Applications +1311.7483 Combinatorics +1311.7485 Applications +1311.7489 Physics Education +1311.7490 Experiment +1311.7492 Combinatorics +1311.7494 Mesoscale and Nanoscale Physics +1311.7496 Biological Physics +1311.7497 Instrumentation and Methods for Astrophysics +1311.7503 Algebraic Geometry +1311.7504 Cosmology and Nongalactic Astrophysics +1311.7508 +1311.7514 Atomic and Molecular Clusters +1311.7515 Combinatorics +1311.7518 Information Theory +1311.7519 Analysis of PDEs +1311.7520 Complex Variables +1311.7522 Complex Variables +1311.7523 Rings and Algebras +1311.7525 Numerical Analysis +1311.7530 Experiment +1311.7531 Experiment +1311.7535 Graphics +1311.7536 Software Engineering +1311.7540 Numerical Analysis +1311.7541 Differential Geometry +1311.7548 Chaotic Dynamics +1311.7553 High Energy Astrophysical Phenomena +1311.7562 Systems and Control +1311.7564 Symplectic Geometry +1311.7569 Analysis of PDEs +1311.7572 Dynamical Systems +1311.7575 Functional Analysis +1311.7577 Soft Condensed Matter +1311.7582 Methodology +1311.7590 Information Theory +1311.7591 Phenomenology +1311.7594 Experiment +1311.7595 Probability +1311.7597 Experiment +1311.7598 Materials Science +1311.7599 Chaotic Dynamics +1311.7601 Experiment +1311.7602 Numerical Analysis +1311.7608 Number Theory +1311.7609 Differential Geometry +1311.7616 Applications +1311.7617 Fluid Dynamics +1311.7621 Algebraic Geometry +1311.7623 Solar and Stellar Astrophysics +1311.7625 General Topology +1311.7627 Materials Science +1311.7636 Combinatorics +1311.7639 Lattice +1311.7642 Category Theory +1311.7643 Analysis of PDEs +1311.7650 Applications +1311.7652 Mesoscale and Nanoscale Physics +1311.7654 Phenomenology +1311.7656 Machine Learning +1311.7662 Learning +1311.7663 Mesoscale and Nanoscale Physics +1311.7672 Combinatorics +1311.7674 +1311.7677 +1311.7678 Functional Analysis +1311.7679 Learning +1311.7682 Theory +1311.7689 Genomics +1311.7690 Probability +hep-ph/0210023 Phenomenology +math/0505337 Algebraic Geometry +math/0602428 Combinatorics +math/0701325 Category Theory +0704.3662 Human-Computer Interaction +0803.3461 +0901.3880 Information Theory +0903.2928 Chaotic Dynamics +0907.1186 Combinatorics +0907.2510 Information Theory +0909.1247 Geometric Topology +0909.1557 +0909.1994 Operator Algebras +0911.5130 Differential Geometry +0912.0195 +0912.1022 Geometric Topology +1007.1927 General Topology +1009.0323 Strongly Correlated Electrons +1012.0355 Mesoscale and Nanoscale Physics +1012.0659 Differential Geometry +1103.2731 Combinatorics +1105.0132 Strongly Correlated Electrons +1107.0789 Learning +1107.1074 Probability +1107.1555 Strongly Correlated Electrons +1107.4644 Differential Geometry +1108.1762 Computer Science and Game Theory +1108.4147 +1108.4243 Probability +1109.0611 Probability +1110.6170 Computational Finance +1110.6628 Geometric Topology +1111.3552 +1111.3591 Cosmology and Nongalactic Astrophysics +1111.5390 Mesoscale and Nanoscale Physics +1112.5740 Geometric Topology +1201.4995 Computational Complexity +1201.5666 Cryptography and Security +1201.5760 Mesoscale and Nanoscale Physics +1201.5833 Probability +1202.5013 Complex Variables +1202.5365 Algebraic Geometry +1203.4001 Numerical Analysis +1203.4266 Strongly Correlated Electrons +1203.4594 Geometric Topology +1203.6866 Chaotic Dynamics +1205.0041 Mesoscale and Nanoscale Physics +1205.0119 Representation Theory +1205.3178 Strongly Correlated Electrons +1206.1107 Combinatorics +1206.4097 Analysis of PDEs +1206.5425 Statistical Mechanics +1207.0818 Earth and Planetary Astrophysics +1207.4860 Data Analysis, Statistics and Probability +1207.5021 Statistical Mechanics +1207.5634 Complex Variables +1208.1878 Information Theory +1208.2974 Algebraic Geometry +1208.4248 Algebraic Geometry +1208.4964 +1208.5519 Number Theory +1208.6108 Algebraic Geometry +1209.1533 Combinatorics +1209.2849 Dynamical Systems +1209.4144 Quantum Gases +1209.6372 Commutative Algebra +1210.0196 Algebraic Topology +1210.2154 Superconductivity +1210.2188 Strongly Correlated Electrons +1210.4094 Group Theory +1210.5119 Metric Geometry +1211.0906 Artificial Intelligence +1211.1469 Chemical Physics +1211.1680 Information Theory +1211.2507 Probability +1211.3528 Mesoscale and Nanoscale Physics +1211.4580 Phenomenology +1211.7043 Soft Condensed Matter +1212.0273 Representation Theory +1212.1381 Probability +1212.1439 Representation Theory +1212.1877 Portfolio Management +1212.4640 Statistical Mechanics +1212.5385 Statistical Mechanics +1212.5953 Mesoscale and Nanoscale Physics +1212.6926 Strongly Correlated Electrons +1301.0209 Cell Behavior +1301.3132 Cosmology and Nongalactic Astrophysics +1301.4230 Strongly Correlated Electrons +1301.6857 Numerical Analysis +1302.1356 Logic +1302.2736 Superconductivity +1302.3719 Mesoscale and Nanoscale Physics +1302.3782 Mesoscale and Nanoscale Physics +1302.5546 Analysis of PDEs +1302.5769 Mesoscale and Nanoscale Physics +1302.6263 Experiment +1302.6544 Statistical Mechanics +1303.0021 Mesoscale and Nanoscale Physics +1303.3044 Theory +1303.5776 Phenomenology +1303.6478 Algebraic Geometry +1303.7385 Plasma Physics +1304.0772 Strongly Correlated Electrons +1304.1556 Theory +1304.2088 Combinatorics +1304.2454 Networking and Internet Architecture +1304.2459 +1304.3238 Strongly Correlated Electrons +1304.6848 Rings and Algebras +1305.0600 Theory +1305.0649 Data Structures and Algorithms +1305.1535 Discrete Mathematics +1305.1875 Mesoscale and Nanoscale Physics +1305.1923 +1305.3301 Strongly Correlated Electrons +1305.4984 Strongly Correlated Electrons +1305.5062 +1305.6438 K-Theory and Homology +1305.6907 Phenomenology +1306.0005 Cosmology and Nongalactic Astrophysics +1306.1466 Quantum Algebra +1306.1780 Optics +1306.2462 Data Analysis, Statistics and Probability +1306.2952 Statistical Mechanics +1306.2967 Computer Vision and Pattern Recognition +1306.3430 Chemical Physics +1306.3983 High Energy Astrophysical Phenomena +1306.4526 High Energy Astrophysical Phenomena +1306.6769 Theory +1306.6815 Information Theory +1307.0331 Rings and Algebras +1307.1788 Geometric Topology +1307.2065 Analysis of PDEs +1307.2304 Soft Condensed Matter +1307.2398 Analysis of PDEs +1307.2549 Combinatorics +1307.2908 Computer Science and Game Theory +1307.3631 Mesoscale and Nanoscale Physics +1307.4442 Metric Geometry +1307.5060 +1307.5490 Algebraic Geometry +1307.5522 Algebraic Geometry +1307.5900 Combinatorics +1307.6763 Lattice +1307.7046 Mesoscale and Nanoscale Physics +1307.7423 Theory +1307.7754 +1308.0516 Algebraic Geometry +1308.1585 Earth and Planetary Astrophysics +1308.1588 Analysis of PDEs +1308.1945 Atomic Physics +1308.1999 Algebraic Topology +1308.2545 Lattice +1308.2873 Representation Theory +1308.3777 +1308.5311 Mesoscale and Nanoscale Physics +1308.5456 Instrumentation and Methods for Astrophysics +1308.6734 Superconductivity +1309.1395 Soft Condensed Matter +1309.1828 Computational Engineering, Finance, and Science +1309.2768 +1309.3281 Cosmology and Nongalactic Astrophysics +1309.3419 Probability +1309.3774 Methodology +1309.4747 Numerical Analysis +1309.4899 Classical Analysis and ODEs +1309.5074 Mesoscale and Nanoscale Physics +1309.5330 Instrumentation and Detectors +1309.5717 Biomolecules +1309.6408 Symplectic Geometry +1310.0088 Classical Analysis and ODEs +1310.0607 Systems and Control +1310.0933 Group Theory +1310.2333 Superconductivity +1310.3206 +1310.3402 Algebraic Geometry +1310.4160 Probability +1310.4614 Phenomenology +1310.4624 Computation +1310.4638 Information Theory +1310.5086 Chemical Physics +1310.5426 Learning +1310.5496 Group Theory +1310.5964 Group Theory +1310.6086 Mesoscale and Nanoscale Physics +1310.6107 Number Theory +1310.6405 Logic in Computer Science +1310.6406 Logic in Computer Science +1310.6407 Logic in Computer Science +1310.6409 Logic in Computer Science +1310.6410 Logic in Computer Science +1310.6414 Logic in Computer Science +1310.6423 Logic in Computer Science +1310.6424 Logic in Computer Science +1310.6429 Artificial Intelligence +1310.6430 Logic in Computer Science +1310.6432 Artificial Intelligence +1310.6439 Logic in Computer Science +1310.6440 Logic in Computer Science +1310.6441 Cryptography and Security +1310.6814 Soft Condensed Matter +1310.6831 Numerical Analysis +1310.6901 Networking and Internet Architecture +1310.6939 High Energy Astrophysical Phenomena +1310.7013 Analysis of PDEs +1310.7015 Differential Geometry +1310.7019 Mesoscale and Nanoscale Physics +1310.7033 Machine Learning +1310.7039 Cosmology and Nongalactic Astrophysics +1310.7040 High Energy Astrophysical Phenomena +1310.7042 Optimization and Control +1310.7044 Experiment +1310.7045 Operator Algebras +1310.7046 Optics +1310.7047 Experiment +1310.7048 Learning +1310.7056 Statistics Theory +1310.7058 Analysis of PDEs +1310.7060 Geophysics +1310.7062 Systems and Control +1310.7064 Cosmology and Nongalactic Astrophysics +1310.7065 Algebraic Geometry +1310.7066 Combinatorics +1310.7072 +1310.7077 Medical Physics +1310.7080 Exactly Solvable and Integrable Systems +1310.7081 Probability +1310.7083 Molecular Networks +1310.7086 Quantum Gases +1310.7087 Lattice +1310.7089 Analysis of PDEs +1310.7091 Phenomenology +1310.7093 Formal Languages and Automata Theory +1310.7100 Numerical Analysis +1310.7102 Analysis of PDEs +1310.7103 Number Theory +1310.7104 Cosmology and Nongalactic Astrophysics +1310.7106 Optics +1310.7112 Information Theory +1310.7114 Computer Vision and Pattern Recognition +1310.7115 Artificial Intelligence +1310.7117 Combinatorics +1310.7125 Probability +1310.7128 Risk Management +1310.7131 Populations and Evolution +1310.7135 Optimization and Control +1310.7137 Formal Languages and Automata Theory +1310.7141 Other Statistics +1310.7143 Geometric Topology +1310.7147 Analysis of PDEs +1310.7148 Applications +1310.7154 Mesoscale and Nanoscale Physics +1310.7158 Information Theory +1310.7163 Learning +1310.7164 Probability +1310.7165 Functional Analysis +1310.7168 Numerical Analysis +1310.7172 Phenomenology +1310.7173 Geophysics +1310.7174 Strongly Correlated Electrons +1310.7175 Materials Science +1310.7179 Theory +1310.7184 Strongly Correlated Electrons +1310.7186 Astrophysics of Galaxies +1310.7187 Astrophysics of Galaxies +1310.7189 Astrophysics of Galaxies +1310.7197 Computational Geometry +1310.7204 Combinatorics +1310.7205 Distributed, Parallel, and Cluster Computing +1310.7206 Cell Behavior +1310.7211 Methodology +1310.7214 Group Theory +1310.7217 Information Theory +1310.7219 Spectral Theory +1310.7221 Solar and Stellar Astrophysics +1310.7224 Geometric Topology +1310.7228 Optics +1310.7232 Data Structures and Algorithms +1310.7234 Analysis of PDEs +1310.7235 Quantum Algebra +1310.7237 High Energy Astrophysical Phenomena +1310.7242 Spectral Theory +1310.7246 Soft Condensed Matter +1310.7247 Computer Science and Game Theory +1310.7248 Functional Analysis +1310.7250 +1310.7255 Group Theory +1310.7257 +1310.7262 Systems and Control +1310.7265 Optimization and Control +1310.7268 History and Overview +1310.7275 Neurons and Cognition +1310.7282 Information Theory +1310.7285 Materials Science +1310.7288 Combinatorics +1310.7290 +1310.7292 Optimization and Control +1310.7293 Earth and Planetary Astrophysics +1310.7294 +1310.7295 +1310.7296 +1310.7297 Databases +1310.7308 Combinatorics +1310.7309 +1310.7311 Information Theory +1310.7313 Combinatorics +1310.7314 Geometric Topology +1310.7321 Computational Complexity +1310.7331 Algebraic Geometry +1310.7332 Probability +1310.7335 Spectral Theory +1310.7337 Rings and Algebras +1310.7339 Complex Variables +1310.7340 Experiment +1310.7341 Experiment +1310.7343 Instrumentation and Detectors +1310.7346 Physics and Society +1310.7348 Strongly Correlated Electrons +1310.7351 Functional Analysis +1310.7352 Functional Analysis +1310.7353 Computers and Society +1310.7354 Number Theory +1310.7355 Analysis of PDEs +1310.7357 Soft Condensed Matter +1310.7359 Combinatorics +1310.7366 Experiment +1310.7367 Artificial Intelligence +1310.7368 Systems and Control +1310.7371 Materials Science +1310.7372 Lattice +1310.7373 Probability +1310.7374 Accelerator Physics +1310.7376 Distributed, Parallel, and Cluster Computing +1310.7378 Digital Libraries +1310.7382 Combinatorics +1310.7385 Theory +1310.7387 Theory +1310.7388 Cosmology and Nongalactic Astrophysics +1310.7391 Analysis of PDEs +1310.7393 Differential Geometry +1310.7396 Experiment +1310.7402 Probability +1310.7403 Combinatorics +1310.7404 Analysis of PDEs +1310.7405 Mesoscale and Nanoscale Physics +1310.7407 Differential Geometry +1310.7408 Experiment +1310.7409 Data Structures and Algorithms +1310.7412 Lattice +1310.7416 Phenomenology +1310.7418 Cryptography and Security +1310.7420 Optics +1310.7421 +1310.7423 Cryptography and Security +1310.7424 Superconductivity +1310.7428 Information Retrieval +1310.7429 +1310.7431 Probability +1310.7434 Strongly Correlated Electrons +1310.7440 Computer Vision and Pattern Recognition +1310.7442 Artificial Intelligence +1310.7443 Computer Vision and Pattern Recognition +1310.7444 Networking and Internet Architecture +1310.7445 Group Theory +1310.7447 Computer Vision and Pattern Recognition +1310.7448 Computer Vision and Pattern Recognition +1310.7449 Programming Languages +1310.7461 Chemical Physics +1310.7466 Lattice +1310.7468 Dynamical Systems +1310.7469 Software Engineering +1310.7475 Plasma Physics +1310.7479 Statistics Theory +1310.7480 Combinatorics +1310.7485 Cosmology and Nongalactic Astrophysics +1310.7492 Solar and Stellar Astrophysics +1310.7502 Earth and Planetary Astrophysics +1310.7505 Applications +1310.7508 Mesoscale and Nanoscale Physics +1310.7509 Theory +1310.7510 Chemical Physics +1310.7511 +1310.7512 +1310.7521 Instrumentation and Detectors +1310.7530 Algebraic Topology +1310.7531 Combinatorics +1310.7538 Number Theory +1310.7539 Quantum Algebra +1310.7544 +1310.7554 Atmospheric and Oceanic Physics +1310.7559 Probability +1310.7563 Mesoscale and Nanoscale Physics +alg-geom/9507010 Algebraic Geometry +alg-geom/9507014 Algebraic Geometry +math/0602296 Numerical Analysis +math/0703109 Geometric Topology +q-bio/0703007 Quantitative Methods +0806.2181 Populations and Evolution +0806.3372 +0902.4785 Statistical Mechanics +0909.2454 Populations and Evolution +0910.0334 Analysis of PDEs +0910.1892 Populations and Evolution +0911.2742 Mesoscale and Nanoscale Physics +0912.3723 Algebraic Topology +1005.0317 Classical Analysis and ODEs +1008.2639 Statistics Theory +1009.3704 Soft Condensed Matter +1010.0771 Neural and Evolutionary Computing +1011.1391 Number Theory +1011.3997 Number Theory +1101.5696 Functional Analysis +1103.3815 General Physics +1103.6273 Complex Variables +1104.1863 +1105.6341 Number Theory +1106.0516 Number Theory +1106.4388 Populations and Evolution +1107.0103 Phenomenology +1107.1880 Cryptography and Security +1109.4624 Combinatorics +1110.0305 Physics and Society +1110.1342 Mesoscale and Nanoscale Physics +1110.4488 Strongly Correlated Electrons +1110.5064 +1111.4110 Strongly Correlated Electrons +1111.6470 Strongly Correlated Electrons +1201.1656 Information Theory +1201.5663 Quantum Gases +1202.3874 Materials Science +1202.5543 Strongly Correlated Electrons +1202.6287 Algebraic Geometry +1203.1632 General Physics +1204.4999 Algebraic Topology +1205.2485 Theory +1205.4533 Mesoscale and Nanoscale Physics +1205.5276 Mesoscale and Nanoscale Physics +1206.3025 +1206.5798 Instrumentation and Methods for Astrophysics +1206.6982 Data Structures and Algorithms +1207.0003 Mesoscale and Nanoscale Physics +1207.0196 +1207.1561 Instrumentation and Detectors +1207.5907 Mesoscale and Nanoscale Physics +1207.6552 +1207.6681 +1208.1036 Spectral Theory +1208.1160 Theory +1208.1211 Methodology +1208.1275 Social and Information Networks +1208.1624 Strongly Correlated Electrons +1208.4575 +1208.4586 Cryptography and Security +1208.4834 Strongly Correlated Electrons +1208.4861 High Energy Astrophysical Phenomena +1208.5841 Quantum Gases +1208.5931 Cosmology and Nongalactic Astrophysics +1209.0213 +1209.1684 +1209.1758 +1209.2519 Instrumentation and Detectors +1209.2705 Astrophysics of Galaxies +1209.4769 Cosmology and Nongalactic Astrophysics +1209.5644 Mesoscale and Nanoscale Physics +1210.2405 Cosmology and Nongalactic Astrophysics +1210.4787 Systems and Control +1210.5338 Disordered Systems and Neural Networks +1210.5351 Analysis of PDEs +1210.6449 Phenomenology +1210.7831 Numerical Analysis +1211.1201 Strongly Correlated Electrons +1211.1359 Theory +1211.2644 +1211.2659 Quantum Gases +1211.2739 Mesoscale and Nanoscale Physics +1211.3040 +1211.3067 Mesoscale and Nanoscale Physics +1211.6518 +1211.7147 Optics +1212.2974 Phenomenology +1212.3379 +1212.3397 Operator Algebras +1212.3655 +1212.4408 Phenomenology +1212.4577 Mesoscale and Nanoscale Physics +1301.0157 Networking and Internet Architecture +1301.0840 High Energy Astrophysical Phenomena +1301.1779 Mesoscale and Nanoscale Physics +1301.2333 Number Theory +1301.2959 Adaptation and Self-Organizing Systems +1301.4099 Biological Physics +1301.5503 Atomic Physics +1301.5613 Algebraic Geometry +1301.5831 Molecular Networks +1301.6470 Populations and Evolution +1301.6814 Optics +1301.6824 High Energy Astrophysical Phenomena +1301.7188 Group Theory +1301.7219 +1301.7729 Accelerator Physics +1301.7749 Phenomenology +1302.0011 Cosmology and Nongalactic Astrophysics +1302.0017 Systems and Control +1302.0030 +1302.0031 Experiment +1302.0033 Information Theory +1302.0034 Representation Theory +1302.0036 +1302.0038 Numerical Analysis +1302.0040 +1302.0042 Representation Theory +1302.0043 +1302.0044 Geometric Topology +1302.0053 Experiment +1302.0057 Optics +1302.0059 Information Theory +1302.0064 Space Physics +1302.0067 Computational Complexity +1302.0070 Data Analysis, Statistics and Probability +1302.0072 Data Structures and Algorithms +1302.0077 Computer Vision and Pattern Recognition +1302.0078 Algebraic Geometry +1302.0081 Computational Physics +1302.0082 Machine Learning +1302.0083 Phenomenology +1302.0086 Mesoscale and Nanoscale Physics +1302.0087 Materials Science +1302.0088 Quantum Gases +1302.0089 Phenomenology +1302.0098 Statistics Theory +1302.0100 Solar and Stellar Astrophysics +1302.0101 Solar and Stellar Astrophysics +1302.0104 Solar and Stellar Astrophysics +1302.0105 +1302.0109 Soft Condensed Matter +1302.0110 Statistics Theory +1302.0111 Phenomenology +1302.0114 Statistics Theory +1302.0118 Analysis of PDEs +1302.0119 Analysis of PDEs +1302.0120 Optimization and Control +1302.0121 Representation Theory +1302.0122 Statistics Theory +1302.0124 Astrophysics of Galaxies +1302.0126 Programming Languages +1302.0131 +1302.0132 Optimization and Control +1302.0136 Sound +1302.0138 High Energy Astrophysical Phenomena +1302.0141 Analysis of PDEs +1302.0142 Optimization and Control +1302.0144 Functional Analysis +1302.0145 Instrumentation and Methods for Astrophysics +1302.0146 Analysis of PDEs +1302.0151 Statistics Theory +1302.0153 Optimization and Control +1302.0154 +1302.0158 Probability +1302.0161 Analysis of PDEs +1302.0163 Statistics Theory +1302.0171 Cosmology and Nongalactic Astrophysics +1302.0172 Cosmology and Nongalactic Astrophysics +1302.0173 Optics +1302.0174 Experiment +1302.0176 Analysis of PDEs +1302.0181 Statistics Theory +1302.0188 Combinatorics +1302.0190 Analysis of PDEs +1302.0196 Numerical Analysis +1302.0201 Cosmology and Nongalactic Astrophysics +1302.0209 Analysis of PDEs +1302.0210 Distributed, Parallel, and Cluster Computing +1302.0212 Information Theory +1302.0224 Group Theory +1302.0226 Systems and Control +1302.0227 Experiment +1302.0231 Solar and Stellar Astrophysics +1302.0234 Networking and Internet Architecture +1302.0236 Cosmology and Nongalactic Astrophysics +1302.0239 +1302.0240 History and Philosophy of Physics +1302.0244 Mesoscale and Nanoscale Physics +1302.0247 High Energy Astrophysical Phenomena +1302.0250 Physics and Society +1302.0256 Machine Learning +1302.0257 High Energy Astrophysical Phenomena +1302.0264 Data Structures and Algorithms +1302.0265 Information Theory +1302.0271 Combinatorics +1302.0272 Computers and Society +1302.0274 Physics and Society +1302.0276 Analysis of PDEs +1302.0279 +1302.0282 Differential Geometry +math-ph/0209063 +math-ph/0601028 +nlin/0503009 Pattern Formation and Solitons +0706.0879 Probability +0905.2767 Optimization and Control +0910.0701 Symplectic Geometry +1005.4766 Materials Science +1008.3947 Probability +1102.0027 General Physics +1103.2982 +1103.2983 +1105.0781 +1105.4493 Differential Geometry +1105.5456 Statistical Mechanics +1106.3234 Statistical Mechanics +1106.5422 Phenomenology +1109.0241 Numerical Analysis +1109.4452 Algebraic Geometry +1110.0799 Numerical Analysis +1110.1520 Algebraic Topology +1111.1709 +1111.2228 Data Structures and Algorithms +1111.2481 Phenomenology +1112.5153 Data Structures and Algorithms +1202.4876 Analysis of PDEs +1203.1346 Representation Theory +1203.5760 Functional Analysis +1204.2076 +1204.3083 Representation Theory +1204.6551 Strongly Correlated Electrons +1205.3696 +1205.4630 +1205.4790 Risk Management +1205.6254 General Finance +1206.6521 Algebraic Geometry +1207.3261 +1207.4577 Logic in Computer Science +1208.3376 +1208.5390 +1209.1058 Spectral Theory +1209.5089 Commutative Algebra +1210.0902 Dynamical Systems +1210.1222 Differential Geometry +1210.3063 Combinatorics +1210.4225 Phenomenology +1210.8165 Multimedia +1211.1635 Number Theory +1211.1895 +1211.4054 Strongly Correlated Electrons +1211.4368 Optimization and Control +1211.4391 Optimization and Control +1211.5289 Mesoscale and Nanoscale Physics +1211.5368 Soft Condensed Matter +1211.6547 Metric Geometry +1212.0812 Numerical Analysis +1212.3140 Mesoscale and Nanoscale Physics +1212.6934 Quantum Gases +1301.0731 Rings and Algebras +1301.1087 Materials Science +1301.1455 Optics +1301.1778 Cosmology and Nongalactic Astrophysics +1301.2238 Theory +1301.2386 Cosmology and Nongalactic Astrophysics +1301.3163 Quantum Gases +1301.3223 Distributed, Parallel, and Cluster Computing +1301.5407 Instrumentation and Methods for Astrophysics +1301.5640 Cosmology and Nongalactic Astrophysics +1301.7154 Computational Geometry +1301.7457 Computers and Society +1302.0351 Databases +1302.0637 Exactly Solvable and Integrable Systems +1302.0876 Cosmology and Nongalactic Astrophysics +1302.0953 Cosmology and Nongalactic Astrophysics +1302.1126 Computational Physics +1302.1469 +1302.2464 +1302.3342 Representation Theory +1302.3632 Classical Analysis and ODEs +1302.3843 Strongly Correlated Electrons +1302.4575 Disordered Systems and Neural Networks +1302.4704 Statistical Mechanics +1302.6193 Analysis of PDEs +1302.6235 High Energy Astrophysical Phenomena +1302.6905 Strongly Correlated Electrons +1302.7294 +1303.2342 Statistical Mechanics +1303.2695 Superconductivity +1303.3732 Information Theory +1303.5053 Mesoscale and Nanoscale Physics +1304.1018 Learning +1304.3476 Mesoscale and Nanoscale Physics +1304.4167 +1304.6186 Cosmology and Nongalactic Astrophysics +1304.7255 Strongly Correlated Electrons +1305.0645 Quantum Gases +1305.1341 Strongly Correlated Electrons +1305.1795 Soft Condensed Matter +1305.1799 Soft Condensed Matter +1305.5103 Other Quantitative Biology +1305.7224 Phenomenology +1305.7367 Medical Physics +1305.7450 Mesoscale and Nanoscale Physics +1306.0401 Popular Physics +1306.0795 General Mathematics +1306.1143 General Physics +1306.1449 Analysis of PDEs +1306.1937 History and Philosophy of Physics +1306.1939 History and Philosophy of Physics +1306.1973 Functional Analysis +1306.2240 Geometric Topology +1306.2442 Chemical Physics +1306.2524 +1306.2649 Group Theory +1306.2651 Solar and Stellar Astrophysics +1306.2652 Exactly Solvable and Integrable Systems +1306.2654 Earth and Planetary Astrophysics +1306.2655 Instrumentation and Detectors +1306.2663 Learning +1306.2668 Phenomenology +1306.2669 Number Theory +1306.2674 Probability +1306.2675 Category Theory +1306.2678 Earth and Planetary Astrophysics +1306.2684 Superconductivity +1306.2689 Group Theory +1306.2691 Databases +1306.2692 Programming Languages +1306.2693 Cryptography and Security +1306.2694 Logic in Computer Science +1306.2695 Logic in Computer Science +1306.2696 Logic in Computer Science +1306.2697 Logic in Computer Science +1306.2704 Analysis of PDEs +1306.2707 Geometric Topology +1306.2709 Geophysics +1306.2710 Populations and Evolution +1306.2714 Cosmology and Nongalactic Astrophysics +1306.2718 +1306.2721 Mesoscale and Nanoscale Physics +1306.2726 History and Philosophy of Physics +1306.2727 Computer Vision and Pattern Recognition +1306.2728 Methodology +1306.2729 Number Theory +1306.2730 Phenomenology +1306.2731 Materials Science +1306.2734 Populations and Evolution +1306.2735 Information Theory +1306.2736 Dynamical Systems +1306.2738 Medical Physics +1306.2743 Programming Languages +1306.2747 +1306.2753 Atmospheric and Oceanic Physics +1306.2758 Analysis of PDEs +1306.2759 Learning +1306.2765 Plasma Physics +1306.2770 Solar and Stellar Astrophysics +1306.2771 Phenomenology +1306.2774 Rings and Algebras +1306.2775 Mesoscale and Nanoscale Physics +1306.2777 Soft Condensed Matter +1306.2782 Numerical Analysis +1306.2785 Mesoscale and Nanoscale Physics +1306.2786 Materials Science +1306.2787 Mesoscale and Nanoscale Physics +1306.2791 Methodology +1306.2795 Computer Vision and Pattern Recognition +1306.2798 Phenomenology +1306.2806 Logic in Computer Science +1306.2811 +1306.2812 Methodology +1306.2815 Data Structures and Algorithms +1306.2816 +1306.2821 Numerical Analysis +1306.2822 Numerical Analysis +1306.2823 Analysis of PDEs +1306.2826 Atomic Physics +1306.2827 Computational Geometry +1306.2830 High Energy Astrophysical Phenomena +1306.2833 Cryptography and Security +1306.2837 Functional Analysis +1306.2840 Materials Science +1306.2841 Phenomenology +1306.2844 General Physics +1306.2845 History and Overview +1306.2848 Atomic Physics +1306.2852 Biomolecules +1306.2856 Optics +1306.2857 Commutative Algebra +1306.2859 History and Overview +1306.2860 Rings and Algebras +1306.2862 Combinatorics +1306.2863 Artificial Intelligence +1306.2864 Artificial Intelligence +1306.2867 Numerical Analysis +1306.2871 +1306.2877 Cosmology and Nongalactic Astrophysics +1306.2879 +1306.2882 Cryptography and Security +1306.2885 Cryptography and Security +1306.2891 Materials Science +1306.2898 Computational Engineering, Finance, and Science +1306.2899 Phenomenology +1306.2900 Soft Condensed Matter +1306.2903 Phenomenology +1306.2904 Numerical Analysis +1306.2905 Physics Education +1306.2906 Learning +1306.2907 Numerical Analysis +1306.2917 Probability +1306.2918 Computer Science and Game Theory +1306.2920 Phenomenology +1306.2922 Other Condensed Matter +1306.2926 Phenomenology +1306.2931 Data Structures and Algorithms +1306.2935 Emerging Technologies +hep-ph/9601207 Phenomenology +math/0605272 Classical Analysis and ODEs +nlin/0407045 Pattern Formation and Solitons +nlin/0504046 Pattern Formation and Solitons +0805.2187 Category Theory +0808.1519 Category Theory +0808.1972 Category Theory +0811.3547 Category Theory +0812.2107 Materials Science +0905.1418 Algebraic Geometry +0906.5482 Theory +0907.2361 Category Theory +0912.1404 Category Theory +1002.3089 General Topology +1006.3900 Statistical Mechanics +1006.4253 Combinatorics +1006.4960 Strongly Correlated Electrons +1007.5045 Statistical Mechanics +1008.1517 Algebraic Topology +1008.2434 Statistical Mechanics +1011.3574 General Topology +1012.0165 Soft Condensed Matter +1101.2698 Soft Condensed Matter +1104.1818 Materials Science +1104.2391 Statistical Mechanics +1105.1148 Numerical Analysis +1106.4685 Combinatorics +1107.2261 Statistics Theory +1107.3910 Algebraic Geometry +1108.5985 Symbolic Computation +1109.2662 +1109.6556 Differential Geometry +1110.3403 Superconductivity +1110.4363 +1110.4776 Probability +1111.0472 Metric Geometry +1111.4920 Functional Analysis +1112.2542 Category Theory +1112.2883 Quantum Algebra +1202.2805 Optimization and Control +1203.5354 Materials Science +1204.0631 Superconductivity +1204.5415 Number Theory +1205.0202 Geometric Topology +1205.2041 K-Theory and Homology +1205.3954 Probability +1205.5920 Machine Learning +1206.1376 Combinatorics +1206.5926 Combinatorics +1206.6501 Cosmology and Nongalactic Astrophysics +1207.2715 Functional Analysis +1207.5982 +1207.6451 Representation Theory +1207.6858 Theory +1208.0469 Strongly Correlated Electrons +1208.2211 Quantum Gases +1208.5613 Analysis of PDEs +1209.1331 Theory +1209.2365 Mesoscale and Nanoscale Physics +1209.2815 +1210.0459 Earth and Planetary Astrophysics +1210.1323 Phenomenology +1210.3095 +1210.4136 Cosmology and Nongalactic Astrophysics +1210.6212 Quantum Gases +1211.1918 Statistical Mechanics +1211.2217 +1211.3555 +1211.3917 Mesoscale and Nanoscale Physics +1211.4473 Other Computer Science +1211.6050 Cosmology and Nongalactic Astrophysics +1211.6228 Mesoscale and Nanoscale Physics +1211.6833 Algebraic Topology +1212.0728 Cosmology and Nongalactic Astrophysics +1212.6160 Functional Analysis +1301.0328 Phenomenology +1301.0922 Mesoscale and Nanoscale Physics +1301.0968 Earth and Planetary Astrophysics +1301.1257 Mesoscale and Nanoscale Physics +1301.1637 Dynamical Systems +1301.2389 Materials Science +1301.2840 Computer Vision and Pattern Recognition +1301.3116 +1301.3574 Soft Condensed Matter +1301.4645 +1301.4740 Strongly Correlated Electrons +1302.0268 +1302.2112 Cryptography and Security +1302.2372 Phenomenology +1302.2551 Data Structures and Algorithms +1302.3090 Materials Science +1302.3778 Theory +1302.6073 Methodology +1302.6446 Experiment +1303.0226 Instrumentation and Methods for Astrophysics +1303.0415 Information Theory +1303.5241 Soft Condensed Matter +1303.6015 +1303.6574 Phenomenology +1303.6661 Algebraic Geometry +1303.6914 Algebraic Geometry +1303.7066 Soft Condensed Matter +1303.7116 Populations and Evolution +1304.1763 General Physics +1304.4896 Theory +1304.5575 Learning +1304.5804 +1304.6005 +1304.6367 High Energy Astrophysical Phenomena +1304.6528 Information Theory +1304.6647 Mesoscale and Nanoscale Physics +1304.6663 Optimization and Control +1304.6721 Theory +1304.6728 History and Philosophy of Physics +1304.6733 Theory +1304.6734 Formal Languages and Automata Theory +1304.6740 Data Structures and Algorithms +1304.6745 Soft Condensed Matter +1304.6748 Soft Condensed Matter +1304.6751 Soft Condensed Matter +1304.6756 Combinatorics +1304.6759 Computer Vision and Pattern Recognition +1304.6764 High Energy Astrophysical Phenomena +1304.6765 Optimization and Control +1304.6771 Algebraic Topology +1304.6780 Instrumentation and Methods for Astrophysics +1304.6783 Applications +1304.6788 Optics +1304.6789 Statistics Theory +1304.6792 Information Theory +1304.6795 Biological Physics +1304.6798 Algebraic Geometry +1304.6802 Algebraic Topology +1304.6805 Fluid Dynamics +1304.6809 Distributed, Parallel, and Cluster Computing +1304.6813 Computational Geometry +1304.6815 +1304.6817 Mesoscale and Nanoscale Physics +1304.6818 Soft Condensed Matter +1304.6822 Information Theory +1304.6825 Numerical Analysis +1304.6826 Soft Condensed Matter +1304.6833 Mesoscale and Nanoscale Physics +1304.6837 Strongly Correlated Electrons +1304.6838 Number Theory +1304.6839 Spectral Theory +1304.6847 Dynamical Systems +1304.6850 +1304.6855 Statistical Mechanics +1304.6857 Other Condensed Matter +1304.6858 Information Theory +1304.6859 History and Overview +1304.6862 General Topology +1304.6863 Probability +1304.6868 Phenomenology +1304.6870 Logic in Computer Science +1304.6872 Multimedia +1304.6873 Numerical Analysis +1304.6875 High Energy Astrophysical Phenomena +1304.6885 +1304.6887 Number Theory +1304.6892 Earth and Planetary Astrophysics +1304.6893 Commutative Algebra +1304.6895 Experiment +1304.6897 Data Structures and Algorithms +1304.6898 Systems and Control +1304.6899 Learning +1304.6906 Data Structures and Algorithms +1304.6907 High Energy Astrophysical Phenomena +1304.6911 Optics +1304.6914 Chemical Physics +1304.6926 Numerical Analysis +1304.6928 +1304.6941 Classical Analysis and ODEs +1304.6945 Digital Libraries +1304.6947 Materials Science +1304.6955 Dynamical Systems +1304.6958 Statistics Theory +1304.6963 Commutative Algebra +1304.6964 Materials Science +1304.6965 Statistical Mechanics +1304.6969 Information Theory +1304.6970 Quantum Algebra +1304.6973 Combinatorics +1304.6974 Category Theory +1304.6980 Quantum Gases +1304.6986 Probability +1304.6988 Analysis of PDEs +1304.6990 Computer Vision and Pattern Recognition +1304.6991 Numerical Analysis +1304.6992 Mesoscale and Nanoscale Physics +1304.6994 Distributed, Parallel, and Cluster Computing +1304.6996 Numerical Analysis +1304.6997 Probability +1304.6999 Probability +gr-qc/0610079 +math/0203047 Differential Geometry +math/0506404 Probability +q-bio/0501026 Quantitative Methods +0710.3842 Analysis of PDEs +0805.4130 Exactly Solvable and Integrable Systems +0807.3939 +0808.0854 Symplectic Geometry +0812.1293 Mesoscale and Nanoscale Physics +0902.0500 +0904.4408 Theory +0907.2101 Dynamical Systems +0911.3789 General Finance +0912.3912 +1002.3810 +1005.2053 +1008.3829 Computer Science and Game Theory +1012.5734 Theory +1101.5089 Theory +1103.5724 +1104.0880 +1104.3104 Mesoscale and Nanoscale Physics +1105.0808 Differential Geometry +1105.3321 +1106.2564 Statistical Mechanics +1106.5277 Combinatorics +1106.5914 Dynamical Systems +1107.2677 Information Theory +1109.5346 +1110.5773 Dynamical Systems +1110.6255 +1111.0772 Number Theory +1111.4865 Exactly Solvable and Integrable Systems +1111.7020 Algebraic Geometry +1201.0579 Materials Science +1202.3411 Combinatorics +1202.5264 Analysis of PDEs +1202.5808 Theory +1203.4988 +1203.5317 Superconductivity +1204.0269 Algebraic Geometry +1204.4540 Number Theory +1205.0135 Theory +1205.5050 Methodology +1206.4315 Solar and Stellar Astrophysics +1207.1082 Algebraic Geometry +1207.1625 Soft Condensed Matter +1207.2160 Cosmology and Nongalactic Astrophysics +1207.5762 Statistics Theory +1208.2419 Number Theory +1208.3834 Functional Analysis +1208.3913 Geometric Topology +1209.2073 Dynamical Systems +1209.3539 +1209.3765 General Physics +1209.4541 Metric Geometry +1210.0120 Populations and Evolution +1210.1532 +1210.1604 Genomics +1210.5790 +1210.7596 Theory +1211.1090 Probability +1211.1860 Computer Science and Game Theory +1211.4019 Optics +1211.5349 Phenomenology +1211.5497 Functional Analysis +1211.6094 Mesoscale and Nanoscale Physics +1211.6685 Theory +1211.7150 Instrumentation and Detectors +1212.0049 Phenomenology +1212.2489 Mesoscale and Nanoscale Physics +1212.5404 Physics and Society +1301.0892 Plasma Physics +1301.0918 Theory +1301.0993 Probability +1301.1344 +1301.1500 +1301.3336 Materials Science +1301.5723 Combinatorics +1301.7678 Solar and Stellar Astrophysics +1302.0237 Algebraic Geometry +1302.1866 +1302.1869 Theory +1302.2754 Theory +1302.3078 Commutative Algebra +1302.3208 Optics +1302.5628 +1302.6154 Discrete Mathematics +1302.6269 Experiment +1303.0132 +1303.0800 Phenomenology +1303.2878 Algebraic Geometry +1303.3508 Cosmology and Nongalactic Astrophysics +1303.6497 +1304.0603 Commutative Algebra +1304.1162 Theory +1304.2637 Databases +1304.2813 +1304.4289 Mesoscale and Nanoscale Physics +1304.4667 Differential Geometry +1304.6706 Fluid Dynamics +1304.7596 Materials Science +1305.1278 Theory +1305.2197 Solar and Stellar Astrophysics +1305.2220 Differential Geometry +1305.2894 Earth and Planetary Astrophysics +1305.3687 Instrumentation and Detectors +1305.3693 Number Theory +1305.4531 Analysis of PDEs +1305.4748 Superconductivity +1306.1080 Probability +1306.1411 Astrophysics of Galaxies +1306.2537 Physics and Society +1306.3724 Functional Analysis +1306.4308 Software Engineering +1306.4309 Analysis of PDEs +1306.4310 General Physics +1306.4311 General Physics +1306.4327 Cosmology and Nongalactic Astrophysics +1306.4342 Rings and Algebras +1306.4344 Number Theory +1306.4345 Computer Vision and Pattern Recognition +1306.4359 Computational Geometry +1306.4361 Networking and Internet Architecture +1306.4363 Social and Information Networks +1306.4373 Differential Geometry +1306.4375 Probability +1306.4378 Materials Science +1306.4380 Plasma Physics +1306.4382 Complex Variables +1306.4383 Geophysics +1306.4395 Spectral Theory +1306.4397 Methodology +1306.4402 Biomolecules +1306.4409 Networking and Internet Architecture +1306.4416 Classical Analysis and ODEs +1306.4418 Artificial Intelligence +1306.4419 Cellular Automata and Lattice Gases +1306.4420 Biomolecules +1306.4424 Algebraic Geometry +1306.4426 +1306.4427 Information Retrieval +1306.4430 High Energy Astrophysical Phenomena +1306.4438 Methodology +1306.4440 +1306.4446 Instrumentation and Methods for Astrophysics +1306.4447 Cryptography and Security +1306.4449 Analysis of PDEs +1306.4450 Software Engineering +1306.4452 Commutative Algebra +1306.4453 Mesoscale and Nanoscale Physics +1306.4455 Numerical Analysis +1306.4457 Probability +1306.4460 Artificial Intelligence +1306.4462 Solar and Stellar Astrophysics +1306.4472 Phenomenology +1306.4475 Dynamical Systems +1306.4476 Dynamical Systems +1306.4477 Analysis of PDEs +1306.4479 Systems and Control +1306.4480 +1306.4481 Complex Variables +1306.4486 Solar and Stellar Astrophysics +1306.4491 Number Theory +1306.4493 Logic in Computer Science +1306.4499 Mesoscale and Nanoscale Physics +1306.4507 +1306.4508 Computation +1306.4509 Methodology +1306.4514 Information Theory +1306.4517 Phenomenology +1306.4519 Probability +1306.4521 Data Structures and Algorithms +1306.4527 Solar and Stellar Astrophysics +1306.4529 Applications +1306.4534 Social and Information Networks +1306.4535 Biological Physics +1306.4536 Combinatorics +1306.4537 Solar and Stellar Astrophysics +1306.4539 Differential Geometry +1306.4542 Networking and Internet Architecture +1306.4543 Algebraic Geometry +1306.4545 Algebraic Geometry +1306.4546 Software Engineering +1306.4547 Algebraic Geometry +1306.4549 Information Theory +1306.4551 General Physics +1306.4557 Plasma Physics +1306.4560 Soft Condensed Matter +1306.4565 Strongly Correlated Electrons +1306.4566 Soft Condensed Matter +1306.4569 Plasma Physics +1306.4572 Chemical Physics +1306.4575 Chemical Physics +1306.4577 Chemical Physics +1306.4578 Probability +1306.4582 Probability +1306.4583 Superconductivity +1306.4592 Neural and Evolutionary Computing +1306.4593 Theory +1306.4594 Algebraic Topology +1306.4595 Cryptography and Security +1306.4596 Numerical Analysis +1306.4598 Social and Information Networks +1306.4599 Algebraic Geometry +1306.4600 Soft Condensed Matter +1306.4602 Biological Physics +1306.4603 Biological Physics +1306.4606 Information Retrieval +1306.4607 Optics +1306.4608 Information Retrieval +1306.4609 Popular Physics +1306.4612 Algebraic Geometry +1306.4614 Dynamical Systems +1306.4620 General Physics +1306.4621 Neural and Evolutionary Computing +1306.4622 Neural and Evolutionary Computing +1306.4627 Data Structures and Algorithms +1306.4631 Learning +1306.4633 Learning +1306.4634 Strongly Correlated Electrons +1306.4635 Artificial Intelligence +1306.4640 Statistical Mechanics +1306.4642 Biological Physics +1306.4647 Geophysics +1306.4649 Combinatorics +1306.4652 Cryptography and Security +1306.4654 Probability +1306.4657 Methodology +1306.4660 Cryptography and Security +1306.4664 Data Structures and Algorithms +1306.4666 Cryptography and Security +cond-mat/0104533 Strongly Correlated Electrons +cond-mat/0309015 Disordered Systems and Neural Networks +cond-mat/0409530 Strongly Correlated Electrons +cond-mat/0508484 Superconductivity +nlin/0604070 Exactly Solvable and Integrable Systems +nlin/0610065 Exactly Solvable and Integrable Systems +quant-ph/0308062 +quant-ph/0512114 +0810.2744 Algebraic Geometry +0812.4076 Symplectic Geometry +0910.2618 Differential Geometry +1006.0049 Symplectic Geometry +1009.3921 Functional Analysis +1011.4946 Algebraic Geometry +1101.1896 Algebraic Topology +1101.5603 Dynamical Systems +1102.1474 Symplectic Geometry +1103.0151 Algebraic Geometry +1106.3607 Combinatorics +1108.3438 Probability +1109.0700 General Physics +1109.0898 Statistics Theory +1110.3279 Differential Geometry +1112.3720 Soft Condensed Matter +1201.5005 +1205.6059 Cosmology and Nongalactic Astrophysics +1205.6121 +1205.6935 Information Theory +1206.1472 Probability +1206.3313 Mesoscale and Nanoscale Physics +1208.6303 Mesoscale and Nanoscale Physics +1209.4146 Algebraic Geometry +1210.6729 Commutative Algebra +1211.1956 +1211.3296 Combinatorics +1211.4362 Phenomenology +1211.5622 Representation Theory +1211.6246 Combinatorics +1211.6847 History and Overview +1212.2920 General Physics +1212.4402 Theory +1212.4468 General Physics +1212.6648 Combinatorics +1301.0020 Atmospheric and Oceanic Physics +1301.2028 High Energy Astrophysical Phenomena +1301.6582 High Energy Astrophysical Phenomena +1302.1872 Phenomenology +1302.3629 Combinatorics +1302.5096 Theory +1302.6735 Rings and Algebras +1302.7260 Phenomenology +1303.1954 Lattice +1303.4159 Cosmology and Nongalactic Astrophysics +1303.7412 +1304.0920 Information Theory +1304.3896 Algebraic Geometry +1304.5173 Combinatorics +1304.7501 Functional Analysis +1304.7732 Strongly Correlated Electrons +1305.1097 Quantum Gases +1305.1330 Data Structures and Algorithms +1305.2083 Molecular Networks +1305.5412 +1305.6710 Space Physics +1305.7171 Mesoscale and Nanoscale Physics +1306.2072 Category Theory +1306.2894 Phenomenology +1307.0149 Optics +1307.0177 Representation Theory +1307.2253 Phenomenology +1307.2504 Analysis of PDEs +1307.3963 Probability +1307.4583 Data Analysis, Statistics and Probability +1307.7399 Cosmology and Nongalactic Astrophysics +1307.7598 Atomic Physics +1308.0086 +1308.0230 Phenomenology +1308.0316 Strongly Correlated Electrons +1308.2251 Statistical Mechanics +1308.3289 Chaotic Dynamics +1308.3523 Strongly Correlated Electrons +1309.1001 Dynamical Systems +1309.2466 Phenomenology +1309.3302 Chaotic Dynamics +1309.4244 Theory +1309.4883 Materials Science +1309.5113 +1309.6222 Representation Theory +1309.6652 Phenomenology +1311.0302 Functional Analysis +1311.1518 Astrophysics of Galaxies +1311.2204 Analysis of PDEs +1311.3936 Lattice +1311.5116 Solar and Stellar Astrophysics +1311.7392 Phenomenology +1312.0672 +1312.0989 Cosmology and Nongalactic Astrophysics +1312.1573 +1312.3474 Solar and Stellar Astrophysics +1312.4353 Artificial Intelligence +1312.4454 Programming Languages +1312.4874 Software Engineering +1312.5020 History and Overview +1312.5045 Computer Vision and Pattern Recognition +1312.5129 Computation and Language +1312.5284 Soft Condensed Matter +1312.5320 Cosmology and Nongalactic Astrophysics +1312.5321 Cosmology and Nongalactic Astrophysics +1312.5334 Instrumentation and Methods for Astrophysics +1312.5345 Information Theory +1312.5348 Category Theory +1312.5351 Lattice +1312.5355 Neural and Evolutionary Computing +1312.5362 Classical Analysis and ODEs +1312.5367 Soft Condensed Matter +1312.5369 Combinatorics +1312.5370 Machine Learning +1312.5375 +1312.5376 Biomolecules +1312.5383 Strongly Correlated Electrons +1312.5384 Dynamical Systems +1312.5385 Lattice +1312.5386 Machine Learning +1312.5388 Geometric Topology +1312.5390 Space Physics +1312.5393 Functional Analysis +1312.5394 Neural and Evolutionary Computing +1312.5395 Differential Geometry +1312.5396 Theory +1312.5399 Atomic and Molecular Clusters +1312.5400 Differential Geometry +1312.5402 Computer Vision and Pattern Recognition +1312.5403 Populations and Evolution +1312.5406 Phenomenology +1312.5411 Logic +1312.5413 Cosmology and Nongalactic Astrophysics +1312.5416 Phenomenology +1312.5417 Cryptography and Security +1312.5418 +1312.5420 Logic in Computer Science +1312.5421 Materials Science +1312.5423 Statistics Theory +1312.5427 Analysis of PDEs +1312.5429 Programming Languages +1312.5433 +1312.5435 Experiment +1312.5437 Optimization and Control +1312.5440 Optimization and Control +1312.5442 Statistics Theory +1312.5447 Biological Physics +1312.5448 Statistics Theory +1312.5450 Metric Geometry +1312.5453 Optimization and Control +1312.5458 Computation +1312.5461 +1312.5463 Analysis of PDEs +1312.5464 Solar and Stellar Astrophysics +1312.5466 Algebraic Topology +1312.5469 Distributed, Parallel, and Cluster Computing +1312.5472 Algebraic Geometry +1312.5476 Analysis of PDEs +1312.5480 Networking and Internet Architecture +1312.5481 Computers and Society +1312.5483 History and Overview +1312.5486 Molecular Networks +1312.5488 Spectral Theory +1312.5490 Cosmology and Nongalactic Astrophysics +1312.5493 Phenomenology +1312.5494 Theory +1312.5499 Representation Theory +1312.5500 Phenomenology +1312.5501 Algebraic Topology +1312.5502 Number Theory +1312.5506 Fluid Dynamics +1312.5507 Computational Physics +1312.5509 Commutative Algebra +1312.5515 Artificial Intelligence +1312.5516 Theory +1312.5519 Analysis of PDEs +1312.5520 Data Structures and Algorithms +1312.5528 Populations and Evolution +1312.5530 Methodology +1312.5539 Representation Theory +1312.5543 Computational Physics +1312.5546 Classical Analysis and ODEs +1312.5548 Neural and Evolutionary Computing +1312.5550 Strongly Correlated Electrons +1312.5551 Networking and Internet Architecture +1312.5560 Chaotic Dynamics +1312.5561 Numerical Analysis +1312.5562 +1312.5564 Chaotic Dynamics +1312.5566 Molecular Networks +1312.5568 Computer Vision and Pattern Recognition +1312.5569 Chaotic Dynamics +1312.5570 Analysis of PDEs +1312.5572 Cryptography and Security +1312.5574 +1312.5575 Plasma Physics +1312.5586 Geometric Topology +1312.5587 Functional Analysis +1312.5590 Number Theory +1312.5600 Combinatorics +1312.5602 Learning +1312.5603 Phenomenology +1312.5608 Phenomenology +1312.5609 Lattice +1312.5611 Physics Education +1312.5612 Exactly Solvable and Integrable Systems +1312.5613 +1312.5620 Discrete Mathematics +1312.5625 Molecular Networks +1312.5626 Combinatorics +1312.5627 Combinatorics +1312.5629 Plasma Physics +1312.5635 +1312.5636 General Physics +1312.5638 Instrumentation and Methods for Astrophysics +1312.5639 Biomolecules +1312.5649 Data Analysis, Statistics and Probability +1312.5652 Probability +1312.5653 Numerical Analysis +1312.5654 Group Theory +1312.5665 +1312.5667 Optimization and Control +1312.5670 Digital Libraries +1312.5671 Operator Algebras +1312.5672 Phenomenology +1312.5673 Optimization and Control +1312.5688 Algebraic Geometry +1312.5691 Distributed, Parallel, and Cluster Computing +1312.5692 Computers and Society +1312.5693 Computational Finance +1312.5694 Experiment +1312.5702 Number Theory +1312.5704 Systems and Control +1312.5708 +1312.5709 Probability +1312.5715 Optimization and Control +1312.5734 Machine Learning +1312.5737 High Energy Astrophysical Phenomena +1312.5739 Networking and Internet Architecture +math/0409025 Operator Algebras +0704.1976 Pricing of Securities +0706.2806 Dynamical Systems +0707.4577 Physics and Society +0710.2775 Pricing of Securities +0802.1820 Physics and Society +0802.1959 +0803.3931 Group Theory +0805.2000 Physics and Society +0806.4054 Group Theory +0807.1102 Theory +0807.1253 Trading and Market Microstructure +0807.1494 Artificial Intelligence +0809.3528 Data Structures and Algorithms +0811.3567 +0901.0312 Analysis of PDEs +0901.2700 Analysis of PDEs +0903.4960 Physics and Society +0910.5605 Combinatorics +1003.1452 +1004.4858 Theory +1005.2892 Quantum Algebra +1007.3122 Neurons and Cognition +1009.1920 Materials Science +1009.5936 +1010.0341 Algebraic Geometry +1012.2617 Mesoscale and Nanoscale Physics +1101.0183 Plasma Physics +1101.3743 Disordered Systems and Neural Networks +1102.1964 Experiment +1102.2999 Differential Geometry +1102.3627 Symplectic Geometry +1105.2429 Functional Analysis +1107.2584 Complex Variables +1107.2967 Statistical Mechanics +1108.5396 General Physics +1109.0535 +1109.2317 Distributed, Parallel, and Cluster Computing +1110.0295 Materials Science +1110.4487 Materials Science +1110.4860 Data Structures and Algorithms +1111.3167 +1111.6056 +1112.0591 Theory +1112.1807 Functional Analysis +1112.4258 Information Theory +1201.3042 Mesoscale and Nanoscale Physics +1202.3861 Applications +1202.4605 Data Analysis, Statistics and Probability +1202.4928 Spectral Theory +1203.0481 Dynamical Systems +1203.1926 High Energy Astrophysical Phenomena +1203.3229 +1203.4824 Atomic Physics +1203.5927 Information Theory +1204.1025 Data Structures and Algorithms +1204.5054 +1204.5466 +1204.6552 Computer Science and Game Theory +1205.1869 Superconductivity +1205.3124 Populations and Evolution +1205.4054 Probability +1205.4731 Mesoscale and Nanoscale Physics +1205.5438 Probability +1206.1928 +1206.2446 Numerical Analysis +1206.3617 Theory +1206.5191 Phenomenology +1206.6684 Statistical Mechanics +1207.0459 Quantum Gases +1207.1100 High Energy Astrophysical Phenomena +1207.3335 Theory +1207.4853 Atomic Physics +1207.5785 +1207.6702 Mesoscale and Nanoscale Physics +1208.2341 +1208.3067 Combinatorics +1208.4299 +1208.5112 Probability +1208.5588 Materials Science +1208.5620 Distributed, Parallel, and Cluster Computing +1208.6263 Phenomenology +1209.1530 Optimization and Control +1209.2524 Statistical Mechanics +1209.4693 Strongly Correlated Electrons +1210.0337 Statistical Mechanics +1210.1177 Classical Analysis and ODEs +1210.1240 Molecular Networks +1210.2238 Atomic Physics +1210.2778 High Energy Astrophysical Phenomena +1210.2966 Materials Science +1210.2995 Number Theory +1210.3003 +1210.3049 Materials Science +1210.3686 Phenomenology +1210.3706 Materials Science +1210.4812 Metric Geometry +1210.5588 Theory +1210.6493 Analysis of PDEs +1210.6529 Solar and Stellar Astrophysics +1210.7320 Combinatorics +1211.0317 Algebraic Geometry +1211.2231 Phenomenology +1211.2756 Quantitative Methods +1211.5404 Cosmology and Nongalactic Astrophysics +1211.5833 Algebraic Geometry +1211.5848 Quantum Gases +1212.0988 Optimization and Control +1212.4376 Solar and Stellar Astrophysics +1212.6364 +1212.6677 Solar and Stellar Astrophysics +1301.0698 +1301.2035 +1301.3962 Quantum Algebra +1301.4040 Materials Science +1301.4483 +1301.4771 Classical Analysis and ODEs +1301.5212 +1301.5262 Accelerator Physics +1301.5808 Chemical Physics +1301.6143 Functional Analysis +1301.6835 Differential Geometry +1301.6939 Computation and Language +1301.6945 Space Physics +1301.6991 Geometric Topology +1301.7061 +1301.7064 Instrumentation and Methods for Astrophysics +1301.7075 Dynamical Systems +1301.7077 Dynamical Systems +1301.7078 Pricing of Securities +1301.7081 High Energy Astrophysical Phenomena +1301.7085 Pattern Formation and Solitons +1301.7089 +1301.7090 Discrete Mathematics +1301.7093 Mesoscale and Nanoscale Physics +1301.7094 Dynamical Systems +1301.7101 Networking and Internet Architecture +1301.7103 Number Theory +1301.7108 Operator Algebras +1301.7111 Soft Condensed Matter +1301.7112 Formal Languages and Automata Theory +1301.7118 Methodology +1301.7124 Number Theory +1301.7126 +1301.7137 Lattice +1301.7139 +1301.7141 Analysis of PDEs +1301.7147 Functional Analysis +1301.7148 Probability +1301.7152 Commutative Algebra +1301.7153 Formal Languages and Automata Theory +1301.7159 Dynamical Systems +1301.7160 Disordered Systems and Neural Networks +1301.7168 Number Theory +1301.7169 Cosmology and Nongalactic Astrophysics +1301.7170 Networking and Internet Architecture +1301.7172 +1301.7173 Physics and Society +1301.7175 Number Theory +1301.7177 Combinatorics +1301.7178 Information Theory +1301.7179 Probability +1301.7180 Probability +1301.7183 Data Structures and Algorithms +1301.7184 Cosmology and Nongalactic Astrophysics +1301.7190 Robotics +1301.7197 Phenomenology +1301.7199 High Energy Astrophysical Phenomena +1301.7200 Materials Science +1301.7202 Lattice +1301.7203 Lattice +1301.7204 Lattice +1301.7205 Earth and Planetary Astrophysics +1301.7206 +1301.7208 Solar and Stellar Astrophysics +1301.7216 +1301.7218 Experiment +1301.7228 Soft Condensed Matter +1301.7229 Analysis of PDEs +1301.7231 Other Computer Science +1301.7232 Information Theory +1301.7233 Disordered Systems and Neural Networks +1301.7235 Algebraic Geometry +1301.7237 Soft Condensed Matter +1301.7238 Theory +1301.7241 Differential Geometry +1301.7243 Optics +1301.7251 Artificial Intelligence +1301.7259 Instrumentation and Methods for Astrophysics +1301.7262 Algebraic Geometry +1301.7265 Information Theory +1301.7267 Geometric Topology +1301.7269 Earth and Planetary Astrophysics +1301.7270 Algebraic Geometry +1301.7272 Complex Variables +1301.7274 Disordered Systems and Neural Networks +1301.7276 Numerical Analysis +1301.7281 Number Theory +1301.7283 Optimization and Control +1301.7286 History and Philosophy of Physics +1301.7292 Functional Analysis +1301.7294 History and Philosophy of Physics +1301.7301 Quantum Algebra +1301.7304 Dynamical Systems +1301.7306 +1301.7308 Algebraic Topology +1301.7309 Phenomenology +1301.7312 +1301.7314 Data Structures and Algorithms +1301.7316 Dynamical Systems +1301.7320 Discrete Mathematics +1301.7322 Differential Geometry +1301.7330 General Physics +1301.7331 History and Philosophy of Physics +1301.7340 Mesoscale and Nanoscale Physics +1301.7342 Accelerator Physics +1301.7344 Accelerator Physics +1301.7347 Operator Algebras +1301.7350 Accelerator Physics +1301.7351 +1301.7353 Accelerator Physics +1301.7356 Combinatorics +cond-mat/0003073 Disordered Systems and Neural Networks +math/0111137 Geometric Topology +math/0702842 Metric Geometry +quant-ph/0604196 +quant-ph/0702167 +0710.5711 Combinatorics +0806.1413 Logic in Computer Science +0810.2113 Number Theory +0812.0080 Rings and Algebras +0812.2605 Differential Geometry +0901.2561 Geometric Topology +0907.4236 Solar and Stellar Astrophysics +1001.0895 Probability +1001.3163 Combinatorics +1003.0507 +1005.0548 Group Theory +1005.4973 Mathematical Software +1006.2281 Probability +1006.4785 Algebraic Geometry +1007.2779 Solar and Stellar Astrophysics +1007.3701 Rings and Algebras +1008.2131 Solar and Stellar Astrophysics +1009.2523 Probability +1010.3371 General Mathematics +1101.2239 Rings and Algebras +1101.4219 Cosmology and Nongalactic Astrophysics +1101.4884 Algebraic Geometry +1102.4041 Atomic Physics +1104.1473 Mesoscale and Nanoscale Physics +1104.4021 Dynamical Systems +1105.4737 Optimization and Control +1105.5932 +1107.0703 Solar and Stellar Astrophysics +1108.4936 Biological Physics +1109.5010 Probability +1110.0296 Representation Theory +1110.1572 General Physics +1110.3788 +1110.3796 Phenomenology +1110.5471 Phenomenology +1111.0155 Soft Condensed Matter +1111.0661 Complex Variables +1111.1977 Information Theory +1111.5488 +1111.5509 Instrumentation and Methods for Astrophysics +1112.0719 Quantum Gases +1112.2307 +1112.2458 Superconductivity +1201.0468 Quantum Gases +1201.2029 Cosmology and Nongalactic Astrophysics +1201.2858 Cosmology and Nongalactic Astrophysics +1202.1993 Optics +1202.2601 Probability +1202.4289 Instrumentation and Methods for Astrophysics +1202.4574 Analysis of PDEs +1202.6297 Algebraic Geometry +1203.1494 Theory +1203.3641 Experiment +1203.4360 Mesoscale and Nanoscale Physics +1204.0425 +1204.2444 Rings and Algebras +1204.2913 Soft Condensed Matter +1204.3816 Mesoscale and Nanoscale Physics +1204.5351 +1204.6261 Probability +1205.0603 Algebraic Geometry +1205.1712 +1205.1723 Solar and Stellar Astrophysics +1205.1725 Solar and Stellar Astrophysics +1205.1889 Superconductivity +1205.2882 +1205.3871 Differential Geometry +1205.6595 Networking and Internet Architecture +1205.7052 Theory +1206.0014 +1206.0080 Lattice +1206.0485 Phenomenology +1206.0884 +1206.1037 Exactly Solvable and Integrable Systems +1206.1759 Solar and Stellar Astrophysics +1206.2441 Mesoscale and Nanoscale Physics +1206.3525 Experiment +1206.3590 Strongly Correlated Electrons +1206.4442 +1206.5219 Lattice +1206.5869 Phenomenology +1206.6218 Strongly Correlated Electrons +1206.6598 +1206.7087 +1207.0232 Number Theory +1207.0476 Phenomenology +1207.1065 Phenomenology +1207.1467 +1207.2712 Optics +1207.3143 Statistics Theory +1207.4201 Strongly Correlated Electrons +1207.4527 Dynamical Systems +1207.4580 Computational Physics +1207.4872 High Energy Astrophysical Phenomena +1207.5025 Biological Physics +1207.6110 Theory +1207.6996 Phenomenology +1207.7102 Mesoscale and Nanoscale Physics +1208.0009 Phenomenology +1208.0375 Phenomenology +1208.0559 Cosmology and Nongalactic Astrophysics +1208.0580 +1208.1038 Mesoscale and Nanoscale Physics +1208.1467 High Energy Astrophysical Phenomena +1208.1547 Statistical Mechanics +1208.2132 +1208.2482 Cosmology and Nongalactic Astrophysics +1208.2776 +1208.3010 Symplectic Geometry +1208.3243 Materials Science +1208.3388 +1208.3562 Phenomenology +1208.3599 Phenomenology +1208.4054 Theory +1208.4965 Phenomenology +1208.5774 Phenomenology +1208.6348 +1208.6422 Probability +1209.0795 Strongly Correlated Electrons +1209.1006 Quantum Gases +1209.1845 Theory +1209.3058 Strongly Correlated Electrons +1209.3700 Quantitative Methods +1209.3712 +1209.3807 Experiment +1209.4216 Strongly Correlated Electrons +1209.4360 Machine Learning +1209.5320 +1209.5973 Phenomenology +1209.5992 Phenomenology +1209.6009 Theory +1209.6034 Theory +1209.6061 Theory +1209.6194 Solar and Stellar Astrophysics +1210.0022 High Energy Astrophysical Phenomena +1210.0134 Statistical Mechanics +1210.0209 +1210.0287 Experiment +1210.0486 +1210.0514 Combinatorics +1210.0519 +1210.0524 Combinatorics +1210.0896 Phenomenology +1210.0964 Phenomenology +1210.1056 Optics +1210.1313 Phenomenology +1210.1330 Phenomenology +1210.1340 Strongly Correlated Electrons +1210.1495 Disordered Systems and Neural Networks +1210.1737 Phenomenology +1210.1759 Phenomenology +1210.1965 +1210.2100 Phenomenology +1210.2671 Optics +1210.2788 Probability +1210.4284 Lattice +1210.4338 Quantum Gases +1210.4488 +1210.4774 Strongly Correlated Electrons +1210.4926 Strongly Correlated Electrons +1210.4940 Theory +1210.5388 +1210.5629 Experiment +1210.5707 Statistical Mechanics +1210.5792 Phenomenology +1210.6014 Instrumentation and Methods for Astrophysics +1210.6069 Mesoscale and Nanoscale Physics +1210.6230 Neurons and Cognition +1210.6331 Cosmology and Nongalactic Astrophysics +1210.6337 Phenomenology +1210.6439 Theory +1210.6444 Populations and Evolution +1210.6899 Cosmology and Nongalactic Astrophysics +1210.6968 +1210.7155 Phenomenology +1210.7181 Theory +1210.7202 Phenomenology +1210.7406 Strongly Correlated Electrons +1210.7822 Phenomenology +1210.8166 Phenomenology +1210.8208 Mesoscale and Nanoscale Physics +1210.8304 +1211.0010 Theory +1211.0240 Strongly Correlated Electrons +1211.0293 Strongly Correlated Electrons +1211.0386 +1211.0478 Statistical Mechanics +1211.0563 Theory +1211.0993 Statistical Mechanics +1211.1191 Phenomenology +1211.1549 Phenomenology +1211.1811 Analysis of PDEs +1211.1864 Phenomenology +1211.1962 Phenomenology +1211.2307 Superconductivity +1211.2466 Experiment +1211.2472 Experiment +1211.2531 Statistical Mechanics +1211.3406 Strongly Correlated Electrons +1211.3675 Lattice +1211.3892 Materials Science +1211.3990 Lattice +1211.4402 +1211.4648 Phenomenology +1211.4757 Cosmology and Nongalactic Astrophysics +1211.5021 Lattice +1211.5143 Phenomenology +1211.5177 Statistical Mechanics +1211.5185 Statistical Mechanics +1211.5186 +1211.5563 +1211.5690 Disordered Systems and Neural Networks +1211.5779 Experiment +1211.5863 Strongly Correlated Electrons +1211.6387 Phenomenology +1211.6577 Lattice +1211.6589 Cosmology and Nongalactic Astrophysics +1211.6692 +1211.6987 Phenomenology +1212.0158 Materials Science +1212.0223 Statistical Mechanics +1212.0542 Phenomenology +1212.0631 +1212.1164 Theory +1212.1193 Quantum Gases +1212.1336 +1212.1761 Phenomenology +1212.1776 Experiment +1212.1856 Experiment +1212.1866 Phenomenology +1212.1878 Phenomenology +1212.1930 +1212.2082 Quantum Gases +1212.2175 Phenomenology +1212.2290 +1212.2304 Theory +1212.2886 Phenomenology +1212.2904 Theory +1212.3167 Phenomenology +1212.3608 Cosmology and Nongalactic Astrophysics +1212.3784 Phenomenology +1212.4003 Phenomenology +1212.4102 Theory +1212.4896 Lattice +1212.5036 +1212.5160 Cosmology and Nongalactic Astrophysics +1212.5167 Astrophysics of Galaxies +1212.5429 Statistics Theory +1212.5458 Cosmology and Nongalactic Astrophysics +1212.6007 Cosmology and Nongalactic Astrophysics +1212.6486 Phenomenology +1212.6653 Mesoscale and Nanoscale Physics +1212.6836 Strongly Correlated Electrons +1212.6880 +1301.0090 Phenomenology +1301.0665 Geometric Topology +1301.1476 Experiment +1301.1587 Phenomenology +1301.1631 Theory +1301.1997 +1301.3089 Lattice +1301.3124 +1301.3402 Data Structures and Algorithms +1301.4345 Materials Science +1301.4440 Experiment +1301.5105 Classical Analysis and ODEs +1301.5455 Materials Science +1301.5858 Classical Analysis and ODEs +1301.6990 Soft Condensed Matter +1302.1281 Statistics Theory +1302.1792 Quantum Gases +1302.3359 Mesoscale and Nanoscale Physics +1302.3641 Mesoscale and Nanoscale Physics +1302.4286 High Energy Astrophysical Phenomena +1302.6059 Theory +1302.6179 +1302.6431 Optimization and Control +1303.0232 +1303.0378 Solar and Stellar Astrophysics +1303.0713 +1303.1023 Sound +1303.1050 Statistical Mechanics +1303.1621 Numerical Analysis +1303.2073 General Mathematics +1303.2514 Data Structures and Algorithms +1303.2716 +1303.3007 Astrophysics of Galaxies +1303.3012 Instrumentation and Detectors +1303.3019 Dynamical Systems +1303.3020 Instrumentation and Methods for Astrophysics +1303.3021 Mesoscale and Nanoscale Physics +1303.3023 Earth and Planetary Astrophysics +1303.3026 Performance +1303.3029 Probability +1303.3030 High Energy Astrophysical Phenomena +1303.3034 Dynamical Systems +1303.3035 Symplectic Geometry +1303.3039 Earth and Planetary Astrophysics +1303.3043 Materials Science +1303.3046 Materials Science +1303.3047 Cryptography and Security +1303.3048 Statistical Mechanics +1303.3049 Optimization and Control +1303.3052 Data Analysis, Statistics and Probability +1303.3055 Learning +1303.3056 Differential Geometry +1303.3057 Molecular Networks +1303.3058 Information Theory +1303.3059 Differential Geometry +1303.3061 Probability +1303.3065 Complex Variables +1303.3066 +1303.3067 Computer Vision and Pattern Recognition +1303.3071 Cryptography and Security +1303.3072 Systems and Control +1303.3076 Algebraic Geometry +1303.3078 Biological Physics +1303.3090 Experiment +1303.3094 Experiment +1303.3095 Numerical Analysis +1303.3099 Dynamical Systems +1303.3100 Information Theory +1303.3102 Functional Analysis +1303.3103 Algebraic Geometry +1303.3104 Analysis of PDEs +1303.3109 Quantitative Methods +1303.3110 Other Computer Science +1303.3113 Soft Condensed Matter +1303.3116 +1303.3117 Materials Science +1303.3134 Human-Computer Interaction +1303.3137 Theory +1303.3138 Theory +1303.3141 High Energy Astrophysical Phenomena +1303.3142 Plasma Physics +1303.3147 Materials Science +1303.3152 Computer Vision and Pattern Recognition +1303.3164 Information Retrieval +1303.3166 Computational Complexity +1303.3170 Computation and Language +1303.3171 Materials Science +1303.3173 Rings and Algebras +1303.3175 Optics +1303.3176 Cellular Automata and Lattice Gases +1303.3180 General Physics +1303.3181 Systems and Control +1303.3182 Numerical Analysis +1303.3184 Classical Analysis and ODEs +1303.3193 Superconductivity +1303.3194 Information Theory +1303.3204 General Physics +1303.3206 Statistical Mechanics +1303.3210 Chemical Physics +1303.3211 Astrophysics of Galaxies +1303.3222 Combinatorics +1303.3227 Phenomenology +1303.3228 Strongly Correlated Electrons +1303.3229 Information Retrieval +1303.3233 Databases +1303.3238 +1303.3242 Lattice +1303.3254 Analysis of PDEs +1303.3258 Theory +math/0302334 Rings and Algebras +nucl-th/0310069 +0804.2583 Materials Science +0906.3471 Rings and Algebras +1009.4738 Mesoscale and Nanoscale Physics +1010.6200 Geometric Topology +1012.2946 Geometric Topology +1101.4646 +1105.4906 Probability +1105.4999 Information Theory +1106.0605 Combinatorics +1106.3964 Differential Geometry +1106.4754 +1108.5086 +1108.6068 Analysis of PDEs +1110.1030 Representation Theory +1110.1835 Phenomenology +1110.3361 Probability +1110.6451 Methodology +1112.0512 Statistical Mechanics +1112.2305 Analysis of PDEs +1201.2987 Cosmology and Nongalactic Astrophysics +1201.3600 Differential Geometry +1201.4447 Logic +1201.5260 Group Theory +1201.5590 +1201.6467 Mesoscale and Nanoscale Physics +1202.0157 +1202.1987 Numerical Analysis +1203.1054 Theory +1203.5024 +1204.0077 Formal Languages and Automata Theory +1204.0993 Biomolecules +1204.2129 Mesoscale and Nanoscale Physics +1204.3740 Information Theory +1204.5531 Group Theory +1204.6174 Optimization and Control +1205.3782 +1205.6074 Biological Physics +1205.6113 Numerical Analysis +1205.6805 Theory +1206.1466 Phenomenology +1206.5229 +1206.6241 +1206.6377 Probability +1206.7109 Mesoscale and Nanoscale Physics +1207.0904 Geometric Topology +1207.1653 +1207.3018 Information Theory +1207.3027 Information Theory +1207.3035 Information Theory +1207.3040 Information Theory +1207.3552 Statistical Mechanics +1207.5692 Materials Science +1207.5768 +1207.6357 Logic +1208.0896 High Energy Astrophysical Phenomena +1208.3113 Strongly Correlated Electrons +1208.6008 Superconductivity +1209.0112 +1209.0584 Rings and Algebras +1209.0585 Rings and Algebras +1209.0840 Quantum Gases +1209.1119 Machine Learning +1209.1836 +1209.5619 Mesoscale and Nanoscale Physics +1209.5886 Differential Geometry +1209.6091 Strongly Correlated Electrons +1209.6528 Data Structures and Algorithms +1210.0172 Numerical Analysis +1210.0499 Superconductivity +1210.1138 +1210.1437 Statistical Mechanics +1210.2920 +1210.2988 +1210.3844 Experiment +1210.4200 Solar and Stellar Astrophysics +1210.4709 Spectral Theory +1210.6393 Mesoscale and Nanoscale Physics +1210.6418 General Physics +1210.7098 Mesoscale and Nanoscale Physics +1210.7693 Strongly Correlated Electrons +1210.8283 Materials Science +1211.0329 +1211.0636 Strongly Correlated Electrons +1211.1656 Computer Vision and Pattern Recognition +1211.1954 Disordered Systems and Neural Networks +1211.3145 Mesoscale and Nanoscale Physics +1211.3328 Soft Condensed Matter +1211.3983 Mesoscale and Nanoscale Physics +1211.4297 +1211.4476 Mesoscale and Nanoscale Physics +1211.5480 Differential Geometry +1211.6690 Optics +1212.0608 Materials Science +1212.4576 Astrophysics of Galaxies +1212.4954 Superconductivity +1212.6376 Mesoscale and Nanoscale Physics +1301.1451 +1301.5480 General Physics +1301.5545 Networking and Internet Architecture +1302.0916 +1302.1156 Neural and Evolutionary Computing +1302.1850 Pricing of Securities +1302.1865 General Physics +1302.1890 Materials Science +1302.2015 Computational Geometry +1302.2990 Classical Physics +1302.3013 Cosmology and Nongalactic Astrophysics +1302.3318 Accelerator Physics +1302.3440 Networking and Internet Architecture +1302.3471 Algebraic Geometry +1302.3494 Computational Complexity +1302.3496 Computational Complexity +1302.3549 Artificial Intelligence +1302.3550 Artificial Intelligence +1302.3551 Artificial Intelligence +1302.3552 Artificial Intelligence +1302.3553 Artificial Intelligence +1302.3554 Artificial Intelligence +1302.3555 Artificial Intelligence +1302.3556 Computer Vision and Pattern Recognition +1302.3557 Artificial Intelligence +1302.3558 Data Structures and Algorithms +1302.3559 Artificial Intelligence +1302.3560 Artificial Intelligence +1302.3561 Computer Science and Game Theory +1302.3562 Artificial Intelligence +1302.3564 Artificial Intelligence +1302.3565 Artificial Intelligence +1302.3566 Artificial Intelligence +1302.3568 Artificial Intelligence +1302.3569 Artificial Intelligence +1302.3571 Artificial Intelligence +1302.3572 Artificial Intelligence +1302.3573 Artificial Intelligence +1302.3574 Artificial Intelligence +1302.3575 Artificial Intelligence +1302.3576 Artificial Intelligence +1302.3577 Artificial Intelligence +1302.3578 Artificial Intelligence +1302.3579 Learning +1302.3581 Artificial Intelligence +1302.3582 Artificial Intelligence +1302.3583 Artificial Intelligence +1302.3584 Artificial Intelligence +1302.3585 Artificial Intelligence +1302.3586 Artificial Intelligence +1302.3587 Artificial Intelligence +1302.3589 Artificial Intelligence +1302.3590 Learning +1302.3591 Artificial Intelligence +1302.3592 Artificial Intelligence +1302.3593 Computer Science and Game Theory +1302.3594 Artificial Intelligence +1302.3595 Artificial Intelligence +1302.3596 Artificial Intelligence +1302.3597 Artificial Intelligence +1302.3598 Artificial Intelligence +1302.3599 Artificial Intelligence +1302.3600 Artificial Intelligence +1302.3601 Artificial Intelligence +1302.3602 Artificial Intelligence +1302.3603 Artificial Intelligence +1302.3604 Artificial Intelligence +1302.3605 Artificial Intelligence +1302.3606 Artificial Intelligence +1302.3607 Artificial Intelligence +1302.3608 Artificial Intelligence +1302.3609 Artificial Intelligence +1302.3610 Artificial Intelligence +1302.3611 Artificial Intelligence +1302.3612 Artificial Intelligence +1302.3620 Instrumentation and Methods for Astrophysics +1302.3621 Instrumentation and Methods for Astrophysics +1302.3622 High Energy Astrophysical Phenomena +1302.3624 Soft Condensed Matter +1302.3625 Pattern Formation and Solitons +1302.3634 Differential Geometry +1302.3635 +1302.3636 Combinatorics +1302.3642 General Finance +1302.3646 +1302.3651 Neurons and Cognition +1302.3653 Theory +1302.3659 Differential Geometry +1302.3663 Numerical Analysis +1302.3664 Strongly Correlated Electrons +1302.3665 General Topology +1302.3668 Learning +1302.3670 Operator Algebras +1302.3675 Earth and Planetary Astrophysics +1302.3676 Number Theory +1302.3678 Number Theory +1302.3681 Information Theory +1302.3683 Cosmology and Nongalactic Astrophysics +1302.3686 Logic +1302.3693 Combinatorics +1302.3696 Superconductivity +1302.3698 Experiment +1302.3700 Machine Learning +1302.3702 Cryptography and Security +1302.3705 Information Theory +1302.3708 High Energy Astrophysical Phenomena +1302.3711 Algebraic Topology +1302.3712 Statistical Mechanics +1302.3720 Data Structures and Algorithms +1302.3721 Learning +1302.3722 Combinatorics +1302.3723 Information Theory +1302.3735 Space Physics +1302.3737 Dynamical Systems +1302.3738 Probability +1302.3740 Probability +1302.3742 Phenomenology +1302.3745 Accelerator Physics +1302.3749 Computers and Society +1302.3751 Functional Analysis +1302.3754 High Energy Astrophysical Phenomena +1302.3758 +1302.3759 Dynamical Systems +1302.3762 Optimization and Control +1302.3763 Data Structures and Algorithms +1302.3764 Fluid Dynamics +1302.3770 Probability +1302.3771 Pricing of Securities +1302.3772 Space Physics +1302.3774 Atmospheric and Oceanic Physics +1302.3776 +1302.3779 Geophysics +1302.3783 Combinatorics +1302.3784 Networking and Internet Architecture +1302.3787 +1302.3789 Space Physics +1302.3793 Computer Science and Game Theory +1302.3797 Biological Physics +1302.3798 Formal Languages and Automata Theory +1302.3799 Physics and Society +1302.3800 Information Theory +1302.3801 Mesoscale and Nanoscale Physics +1302.3809 Discrete Mathematics +1302.3813 Algebraic Geometry +1302.3816 Functional Analysis +1302.3820 Human-Computer Interaction +1302.3821 Earth and Planetary Astrophysics +1302.3826 Information Theory +1302.3827 Solar and Stellar Astrophysics +1302.3830 Dynamical Systems +1302.3835 General Topology +1302.3838 +1302.3840 Combinatorics +1302.3841 Differential Geometry +1302.3846 Analysis of PDEs +1302.3855 Quantitative Methods +1302.3859 Functional Analysis +1302.3860 Databases +1302.3861 Tissues and Organs +1302.3862 Human-Computer Interaction +1302.3863 Geometric Topology +1302.3866 Analysis of PDEs +1302.3868 Optimization and Control +1302.3870 Statistical Finance +1302.3872 Combinatorics +1302.3875 +1302.3879 Analysis of PDEs +0803.3710 +0901.4910 +0905.0498 Differential Geometry +0906.0747 Soft Condensed Matter +0907.3503 Statistics Theory +0912.0820 Operator Algebras +0912.2408 +0912.3897 High Energy Astrophysical Phenomena +1001.2020 Geometric Topology +1005.3550 K-Theory and Homology +1005.4559 Geometric Topology +1007.2683 Algebraic Topology +1007.3247 Rings and Algebras +1007.5179 +1009.4553 Statistical Mechanics +1010.3267 Classical Analysis and ODEs +1010.3346 Classical Analysis and ODEs +1101.3499 Analysis of PDEs +1102.1569 Statistical Mechanics +1102.3614 Analysis of PDEs +1104.1804 +1104.5080 Analysis of PDEs +1106.0766 Cosmology and Nongalactic Astrophysics +1106.3087 Cosmology and Nongalactic Astrophysics +1108.5554 Analysis of PDEs +1109.2991 Operator Algebras +1110.0840 Quantum Gases +1110.4699 Classical Analysis and ODEs +1110.6674 Geometric Topology +1111.3586 Analysis of PDEs +1112.3495 Statistical Mechanics +1112.3587 Dynamical Systems +1201.2880 Combinatorics +1201.3271 Combinatorics +1201.4828 Fluid Dynamics +1202.0701 Statistical Mechanics +1202.6668 Computational Complexity +1203.2500 Strongly Correlated Electrons +1203.2804 General Physics +1204.5305 Materials Science +1205.4937 Soft Condensed Matter +1205.6735 Analysis of PDEs +1206.0144 +1206.0593 Optimization and Control +1206.2072 Group Theory +1206.2293 Soft Condensed Matter +1206.4836 +1206.6238 Biological Physics +1207.2229 Computational Complexity +1208.0343 Strongly Correlated Electrons +1208.4127 Quantitative Methods +1208.4698 Numerical Analysis +1208.5559 Phenomenology +1209.3639 Functional Analysis +1209.3990 Applications +1210.2839 Soft Condensed Matter +1210.3210 Neural and Evolutionary Computing +1210.3902 Fluid Dynamics +1210.6306 Statistical Mechanics +1211.0772 Mesoscale and Nanoscale Physics +1211.3243 Mesoscale and Nanoscale Physics +1211.3685 General Physics +1211.4722 Algebraic Geometry +1212.0760 Rings and Algebras +1212.1532 Dynamical Systems +1212.2202 Theory +1212.2599 Theory +1212.2966 Theory +1212.3691 Cosmology and Nongalactic Astrophysics +1212.3927 +1212.4655 Strongly Correlated Electrons +1301.0254 Neural and Evolutionary Computing +1301.1391 Logic in Computer Science +1301.3433 Analysis of PDEs +1301.3581 Statistics Theory +1301.4060 +1301.4159 Mesoscale and Nanoscale Physics +1301.4424 Strongly Correlated Electrons +1301.4652 Phenomenology +1301.5538 +1301.5539 +1301.5834 Soft Condensed Matter +1302.0050 Information Theory +1302.0248 Strongly Correlated Electrons +1302.0921 Fluid Dynamics +1302.1049 +1302.1100 Disordered Systems and Neural Networks +1302.2749 Distributed, Parallel, and Cluster Computing +1302.2995 Cosmology and Nongalactic Astrophysics +1302.3467 Cosmology and Nongalactic Astrophysics +1302.3484 Mesoscale and Nanoscale Physics +1302.4036 Analysis of PDEs +1302.4868 Statistical Mechanics +1302.6067 Mesoscale and Nanoscale Physics +1302.6155 Superconductivity +1302.6507 Theory +1303.1149 Strongly Correlated Electrons +1303.1882 Networking and Internet Architecture +1303.2297 Classical Analysis and ODEs +1303.2589 Materials Science +1303.3036 Logic in Computer Science +1303.3125 Phenomenology +1303.3188 Group Theory +1303.5584 Theory +1303.6348 Atmospheric and Oceanic Physics +1303.6546 Soft Condensed Matter +1303.6704 Formal Languages and Automata Theory +1304.0303 Analysis of PDEs +1304.1336 Phenomenology +1304.1588 Analysis of PDEs +1304.1594 Mesoscale and Nanoscale Physics +1304.1754 Mesoscale and Nanoscale Physics +1304.1790 Information Theory +1304.2071 +1304.3486 Atomic Physics +1304.4351 Exactly Solvable and Integrable Systems +1304.4541 Strongly Correlated Electrons +1304.4726 Mesoscale and Nanoscale Physics +1304.5171 Phenomenology +1304.5691 +1304.6113 Probability +1304.6341 Lattice +1304.6775 +1304.7832 Phenomenology +1305.0234 Cosmology and Nongalactic Astrophysics +1305.0385 +1305.0403 Fluid Dynamics +1305.0566 Theory +1305.0569 Soft Condensed Matter +1305.0577 Combinatorics +1305.0580 Materials Science +1305.0582 Plasma Physics +1305.0586 Optics +1305.0590 Experiment +1305.0595 Algebraic Geometry +1305.0597 Computer Science and Game Theory +1305.0598 Computer Science and Game Theory +1305.0601 Combinatorics +1305.0603 Combinatorics +1305.0604 Number Theory +1305.0606 Cryptography and Security +1305.0610 Probability +1305.0611 Geometric Topology +1305.0612 Probability +1305.0613 Other Quantitative Biology +1305.0618 Differential Geometry +1305.0619 Information Theory +1305.0620 Classical Analysis and ODEs +1305.0625 Human-Computer Interaction +1305.0626 Learning +1305.0630 Statistics Theory +1305.0637 Statistical Mechanics +1305.0638 Learning +1305.0639 Statistical Mechanics +1305.0640 Combinatorics +1305.0641 Cosmology and Nongalactic Astrophysics +1305.0642 Algebraic Geometry +1305.0644 Rings and Algebras +1305.0651 Combinatorics +1305.0657 Quantum Gases +1305.0668 Other Computer Science +1305.0669 Data Structures and Algorithms +1305.0670 Astrophysics of Galaxies +1305.0673 Computers and Society +1305.0674 Data Structures and Algorithms +1305.0675 +1305.0678 Dynamical Systems +1305.0679 Quantum Algebra +1305.0682 Soft Condensed Matter +1305.0683 Optics +1305.0694 Accelerator Physics +1305.0698 Learning +1305.0699 Information Retrieval +1305.0701 Plasma Physics +1305.0711 Distributed, Parallel, and Cluster Computing +1305.0713 Probability +1305.0722 Probability +1305.0725 Probability +1305.0728 History and Overview +1305.0731 Analysis of PDEs +1305.0732 Complex Variables +1305.0734 Differential Geometry +1305.0741 General Finance +1305.0742 History and Philosophy of Physics +1305.0746 Rings and Algebras +1305.0754 Phenomenology +1305.0757 Data Structures and Algorithms +1305.0764 Statistics Theory +1305.0767 Phenomenology +1305.0769 High Energy Astrophysical Phenomena +1305.0778 Representation Theory +1305.0780 Optimization and Control +1305.0781 Soft Condensed Matter +1305.0790 Phenomenology +1305.0791 Operator Algebras +1305.0792 Instrumentation and Methods for Astrophysics +1305.0794 General Finance +1305.0797 Quantum Gases +1305.0799 Operator Algebras +1305.0803 Earth and Planetary Astrophysics +1305.0807 Cryptography and Security +1305.0811 Solar and Stellar Astrophysics +math/0005301 Algebraic Topology +math/0507536 Classical Analysis and ODEs +q-bio/0608028 Quantitative Methods +0705.0800 Atomic Physics +0707.1596 Computational Physics +0710.1787 Phenomenology +0710.1864 Phenomenology +0711.0824 +0712.3112 Combinatorics +0802.1630 Mesoscale and Nanoscale Physics +0810.4216 Classical Analysis and ODEs +0812.0639 Combinatorics +0812.1364 Logic in Computer Science +0812.4147 Combinatorics +0901.1858 +0906.4675 Physics and Society +0907.3308 Algebraic Geometry +0907.5420 Combinatorics +0907.5495 Logic +0908.2029 History and Overview +1001.4313 +1003.2004 Probability +1008.2013 Differential Geometry +1008.2948 Superconductivity +1008.3094 Combinatorics +1009.4597 Computational Complexity +1009.5358 Machine Learning +1010.4696 Quantum Algebra +1011.1525 Dynamical Systems +1011.1632 Complex Variables +1012.2724 Representation Theory +1012.3909 Probability +1101.2532 Combinatorics +1101.3507 Combinatorics +1101.3798 Algebraic Topology +1101.5001 Combinatorics +1101.5395 Algebraic Topology +1101.5693 Fluid Dynamics +1102.1555 Number Theory +1103.3930 Algebraic Geometry +1104.1322 Physics and Society +1104.4814 Group Theory +1105.0160 Quantum Algebra +1105.0189 Group Theory +1105.5893 Soft Condensed Matter +1106.1350 Group Theory +1106.4582 Probability +1107.3410 Neurons and Cognition +1107.5845 Solar and Stellar Astrophysics +1108.1768 Materials Science +1109.2022 +1109.6710 Dynamical Systems +1110.1587 +1110.2014 Combinatorics +1111.0699 Superconductivity +1111.1475 +1111.2634 Number Theory +1112.3830 +1201.0103 Superconductivity +1201.1317 Number Theory +1201.3924 +1201.6217 Number Theory +1202.3639 Data Structures and Algorithms +1203.0693 Cosmology and Nongalactic Astrophysics +1203.1232 Solar and Stellar Astrophysics +1203.5002 General Mathematics +1203.5096 Probability +1203.5498 Analysis of PDEs +1203.5657 Representation Theory +1203.5963 Phenomenology +1204.3961 Dynamical Systems +1205.1185 Functional Analysis +1205.4130 Combinatorics +1205.4640 +1205.6063 Combinatorics +1205.6625 Lattice +1206.1196 Geometric Topology +1206.1734 Number Theory +1206.3780 Materials Science +1206.4020 Algebraic Geometry +1206.5815 Theory +1207.1597 Group Theory +1207.1791 Physics and Society +1207.3199 Statistical Mechanics +1207.6189 Number Theory +1207.6838 Operator Algebras +1207.6861 Classical Analysis and ODEs +1207.7002 Combinatorics +1207.7142 Fluid Dynamics +1208.0427 High Energy Astrophysical Phenomena +1208.1705 Number Theory +1208.3235 Information Theory +1208.3330 Combinatorics +1208.3558 Differential Geometry +1208.5878 Combinatorics +1208.5971 Theory +1208.6592 Soft Condensed Matter +1209.0033 Materials Science +1209.0035 Soft Condensed Matter +1209.1715 +1209.2579 Combinatorics +1209.3385 +1209.3552 Theory +1209.3983 Analysis of PDEs +1209.4347 Differential Geometry +1209.5229 Group Theory +1210.0697 Logic +1210.0898 General Finance +1210.2677 +1210.3229 Neurons and Cognition +1210.4030 Algebraic Topology +1210.4278 Statistical Mechanics +1210.5601 Strongly Correlated Electrons +1211.2820 Molecular Networks +1211.3445 Commutative Algebra +1211.5501 Fluid Dynamics +1211.5538 Theory +1211.5985 +1211.7007 Cosmology and Nongalactic Astrophysics +1212.0199 Group Theory +1301.0096 Combinatorics +1301.0750 Probability +1301.0889 Neurons and Cognition +1301.1951 Representation Theory +1301.2504 Biological Physics +1301.3248 Information Theory +1301.3549 Optics +1301.3564 Strongly Correlated Electrons +1301.3781 Computation and Language +1301.5758 +1301.6973 Phenomenology +1301.7022 Biological Physics +1302.0347 Cryptography and Security +1302.0861 Phenomenology +1302.3121 Strongly Correlated Electrons +1302.3682 Strongly Correlated Electrons +1302.4314 +1302.6920 +1302.7074 Information Theory +1302.7226 +1303.0281 Populations and Evolution +1303.0838 Mesoscale and Nanoscale Physics +1303.0994 Theory +1303.1528 +1303.1942 Logic in Computer Science +1303.2596 Dynamical Systems +1303.2631 +1303.2815 Phenomenology +1303.3256 Systems and Control +1303.4139 Combinatorics +1303.4645 Optimization and Control +1303.5372 Mesoscale and Nanoscale Physics +1303.7254 Theory +1304.0765 Cosmology and Nongalactic Astrophysics +1304.0780 Strongly Correlated Electrons +1304.0862 Dynamical Systems +1304.1469 Strongly Correlated Electrons +1304.2862 Combinatorics +1304.3468 Phenomenology +1304.3611 Representation Theory +1304.3639 Optics +1304.3900 Soft Condensed Matter +1304.4498 Soft Condensed Matter +1304.5071 Statistical Mechanics +1304.5111 Soft Condensed Matter +1304.5274 +1304.5445 Theory +1304.6303 Quantum Gases +1304.6682 Mesoscale and Nanoscale Physics +1304.7240 +1304.7526 Commutative Algebra +1304.7689 Cosmology and Nongalactic Astrophysics +1305.1013 Theory +1305.1087 Solar and Stellar Astrophysics +1305.1659 Classical Analysis and ODEs +1305.1869 History and Overview +1305.3941 Information Theory +1305.4182 Phenomenology +1305.4325 Disordered Systems and Neural Networks +1305.5026 Statistical Mechanics +1305.5313 Differential Geometry +1305.5689 +1305.6127 +1305.6454 Soft Condensed Matter +1305.6759 +1305.7001 Phenomenology +1306.0086 Theory +1306.0278 History and Philosophy of Physics +1306.3085 Lattice +1306.3401 Physics and Society +1306.3472 Strongly Correlated Electrons +1306.4003 Strongly Correlated Electrons +1306.5304 Symplectic Geometry +1306.5610 Mesoscale and Nanoscale Physics +1306.5961 Physics and Society +1306.6399 Information Theory +1307.0007 Phenomenology +1307.0259 Number Theory +1307.0778 Rings and Algebras +1307.1186 +1307.2928 High Energy Astrophysical Phenomena +1307.3849 Plasma Physics +1307.4308 Computational Complexity +1307.4908 Soft Condensed Matter +1307.5160 Differential Geometry +1307.5365 Operator Algebras +1307.5575 +1307.6126 Rings and Algebras +1307.6750 Group Theory +1307.7266 Algebraic Geometry +1307.7277 +1307.7653 +1308.0101 Quantitative Methods +1308.0343 Strongly Correlated Electrons +1308.1800 Materials Science +1308.2724 Theory +1308.3548 Networking and Internet Architecture +1308.3773 Combinatorics +1308.4567 High Energy Astrophysical Phenomena +1308.4797 High Energy Astrophysical Phenomena +1308.5091 Cryptography and Security +1308.5427 Statistics Theory +1308.5805 Quantum Gases +1308.5872 Analysis of PDEs +1308.6795 Atomic Physics +1309.0050 Algebraic Geometry +1309.0162 Instrumentation and Detectors +1309.0172 Materials Science +1309.0214 Popular Physics +1309.0449 Combinatorics +1309.1045 Probability +1309.1087 Theory +1309.1390 Differential Geometry +1309.1428 Software Engineering +1309.1757 General Finance +1309.1760 Dynamical Systems +1309.1761 Learning +1309.1766 Algebraic Geometry +1309.1768 Other Quantitative Biology +1309.1775 Molecular Networks +1309.1776 Data Structures and Algorithms +1309.1787 +1309.1788 Systems and Control +1309.1790 Dynamical Systems +1309.1792 Human-Computer Interaction +1309.1794 Dynamical Systems +1309.1796 Software Engineering +1309.1806 Software Engineering +1309.1807 Computational Geometry +1309.1809 Numerical Analysis +1309.1810 Software Engineering +1309.1811 Networking and Internet Architecture +1309.1813 Software Engineering +1309.1817 Software Engineering +1309.1818 Networking and Internet Architecture +1309.1821 Algebraic Geometry +1309.1824 Optimization and Control +1309.1825 Digital Libraries +1309.1826 Complex Variables +1309.1829 Cryptography and Security +1309.1832 Other Computer Science +1309.1833 Earth and Planetary Astrophysics +1309.1839 Probability +1309.1840 Differential Geometry +1309.1842 Discrete Mathematics +1309.1847 Mesoscale and Nanoscale Physics +1309.1849 Dynamical Systems +1309.1851 Combinatorics +1309.1853 Learning +1309.1855 Dynamical Systems +1309.1858 +1309.1859 Group Theory +1309.1860 Atmospheric and Oceanic Physics +1309.1863 Software Engineering +1309.1864 Systems and Control +1309.1866 Geometric Topology +1309.1881 +1309.1882 Computational Physics +1309.1885 Optics +1309.1892 Quantitative Methods +1309.1894 Performance +1309.1895 Genomics +1309.1901 Methodology +1309.1902 Atmospheric and Oceanic Physics +1309.1904 Dynamical Systems +1309.1906 Computation +1309.1908 Functional Analysis +1309.1909 Mesoscale and Nanoscale Physics +1309.1910 Molecular Networks +1309.1915 Methodology +1309.1916 +1309.1917 Graphics +1309.1919 Analysis of PDEs +1309.1920 Number Theory +1309.1921 Other Computer Science +1309.1922 Numerical Analysis +1309.1926 Combinatorics +1309.1928 Systems and Control +1309.1929 Classical Physics +1309.1931 Analysis of PDEs +1309.1935 Probability +1309.1937 Logic +1309.1940 Functional Analysis +1309.1943 Optimization and Control +1309.1951 General Physics +1309.1954 High Energy Astrophysical Phenomena +1309.1958 Quantum Algebra +1309.1963 Algebraic Geometry +1309.1965 Functional Analysis +1309.1966 +1309.1971 Instrumentation and Detectors +1309.1973 Artificial Intelligence +1309.1989 Differential Geometry +1309.1990 +1309.1994 Combinatorics +1309.1999 Geometric Topology +1309.2001 Atomic Physics +1309.2002 Systems and Control +1309.2003 Combinatorics +1309.2005 Combinatorics +1309.2008 Metric Geometry +1309.2010 Mesoscale and Nanoscale Physics +1309.2012 +1309.2014 Cosmology and Nongalactic Astrophysics +1309.2016 Materials Science +1309.2017 Statistical Mechanics +1309.2020 Functional Analysis +1309.2024 Systems and Control +1309.2031 Information Theory +1309.2032 Molecular Networks +1309.2035 Analysis of PDEs +1309.2044 +1309.2047 Metric Geometry +1309.2048 Phenomenology +1309.2051 Phenomenology +1309.2055 Neurons and Cognition +1309.2056 +1309.2057 Computer Vision and Pattern Recognition +1309.2059 Theory +1309.2062 Solar and Stellar Astrophysics +1309.2065 Number Theory +1309.2067 Phenomenology +1309.2068 Methodology +1309.2070 High Energy Astrophysical Phenomena +1309.2071 Probability +1309.2072 Instrumentation and Methods for Astrophysics +1309.2076 +1309.2077 Robotics +1309.2078 Robotics +1309.2079 Robotics +1309.2081 Robotics +1309.2082 Classical Analysis and ODEs +1309.2085 Representation Theory +1309.2086 Robotics +1309.2089 Robotics +1309.2090 Robotics +1309.2091 Strongly Correlated Electrons +1309.2093 Robotics +1309.2096 Instrumentation and Detectors +1309.2099 Earth and Planetary Astrophysics +1309.2100 Spectral Theory +1309.2101 Numerical Analysis +1309.2102 Phenomenology +1309.2103 Cryptography and Security +1309.2109 Number Theory +1309.2113 Combinatorics +1309.2114 Solar and Stellar Astrophysics +1309.2116 Dynamical Systems +1309.2121 Optimization and Control +1309.2125 Probability +1309.2132 Computers and Society +1309.2137 Discrete Mathematics +1309.2139 Networking and Internet Architecture +1309.2146 Theory +1309.2152 Human-Computer Interaction +1309.2156 Computational Complexity +1309.2167 Complex Variables +1309.2173 Populations and Evolution +1309.2178 Statistics Theory +1309.2183 Neural and Evolutionary Computing +1309.2188 Instrumentation and Methods for Astrophysics +1309.2193 Optimization and Control +1309.2197 Algebraic Geometry +1309.2199 Social and Information Networks +1309.2202 Atomic Physics +1309.2208 Networking and Internet Architecture +1309.2211 Pricing of Securities +1309.2221 +1309.2224 +1309.2227 Analysis of PDEs +1309.2232 Quantitative Methods +1309.2233 Networking and Internet Architecture +1309.2236 Social and Information Networks +1309.2240 Differential Geometry +1309.2244 Optics +1309.2246 Theory +1309.2249 Optimization and Control +1309.2250 Information Theory +1309.2251 Optimization and Control +1309.2252 General Physics +1309.2254 Information Theory +1309.2259 Number Theory +1309.2266 Combinatorics +1309.2267 Soft Condensed Matter +1309.2269 Disordered Systems and Neural Networks +1309.2270 Cosmology and Nongalactic Astrophysics +1309.2273 Probability +cond-mat/0302067 Materials Science +math/0306414 Algebraic Geometry +math/0501059 Classical Analysis and ODEs +physics/0508232 Atomic Physics +physics/0612251 Atomic Physics +quant-ph/0305049 +quant-ph/0501136 +quant-ph/0501137 +0706.0377 Number Theory +0706.2991 Theory +0706.3087 Number Theory +0708.1864 +0710.3858 Number Theory +0711.1187 +0802.0900 +0802.1629 Strongly Correlated Electrons +0804.0870 Functional Analysis +0807.2625 +0808.2588 Number Theory +0904.3059 +0905.4382 Number Theory +0907.2432 +0908.0922 Classical Physics +1001.0829 Numerical Analysis +1001.1852 Solar and Stellar Astrophysics +1001.4256 Group Theory +1002.4280 Rings and Algebras +1004.0006 Algebraic Topology +1004.0314 Machine Learning +1006.3436 Methodology +1007.5248 Functional Analysis +1009.3016 Strongly Correlated Electrons +1010.1186 Functional Analysis +1010.4024 Solar and Stellar Astrophysics +1101.4312 Group Theory +1102.4753 Mesoscale and Nanoscale Physics +1102.4760 Mesoscale and Nanoscale Physics +1103.1594 Mesoscale and Nanoscale Physics +1103.5982 Number Theory +1104.5243 Performance +1105.3175 High Energy Astrophysical Phenomena +1106.4448 Mathematical Software +1108.3181 Analysis of PDEs +1109.2660 Mesoscale and Nanoscale Physics +1110.2566 Materials Science +1111.2066 Instrumentation and Methods for Astrophysics +1111.5493 Social and Information Networks +1112.0856 Combinatorics +1112.3369 General Physics +1112.4126 +1112.5588 Distributed, Parallel, and Cluster Computing +1112.6179 Discrete Mathematics +1201.0279 Algebraic Geometry +1201.2076 +1201.3640 Mesoscale and Nanoscale Physics +1202.3033 History and Overview +1202.4852 Phenomenology +1203.1733 Algebraic Geometry +1203.2776 Algebraic Geometry +1204.3947 Metric Geometry +1205.2347 +1206.0936 +1206.4362 Theory +1206.7059 Pattern Formation and Solitons +1207.1800 +1207.4226 +1207.6288 High Energy Astrophysical Phenomena +1208.0255 Chaotic Dynamics +1208.0438 Atmospheric and Oceanic Physics +1208.0991 Quantum Gases +1208.2296 +1208.3514 +1208.3719 Learning +1208.5873 Superconductivity +1209.0064 Phenomenology +1209.0069 Strongly Correlated Electrons +1209.0282 Experiment +1209.2168 +1209.2315 Number Theory +1209.2544 Statistics Theory +1209.2962 +1209.4745 Soft Condensed Matter +1209.4834 Lattice +1209.4898 Atmospheric and Oceanic Physics +1209.5922 Databases +1209.6508 Operator Algebras +1210.0443 +1210.2470 Mesoscale and Nanoscale Physics +1210.5131 Accelerator Physics +1210.5622 Phenomenology +1210.5684 Mesoscale and Nanoscale Physics +1210.6570 Plasma Physics +1210.8303 Data Structures and Algorithms +1211.1400 +1211.1774 Strongly Correlated Electrons +1211.2167 Theory +1211.2201 Mesoscale and Nanoscale Physics +1211.2597 Representation Theory +1211.3802 Mesoscale and Nanoscale Physics +1211.3831 Learning +1211.5014 Quantum Gases +1211.6272 +1211.6884 +1212.1760 Mesoscale and Nanoscale Physics +1212.2357 Phenomenology +1212.3243 Quantum Gases +1212.5388 +1212.5540 Soft Condensed Matter +1212.6163 +1212.6174 Strongly Correlated Electrons +1301.2779 Statistical Mechanics +1301.4400 Mesoscale and Nanoscale Physics +1301.4556 Disordered Systems and Neural Networks +1301.4676 Optics +1301.5709 Mesoscale and Nanoscale Physics +1301.6237 Analysis of PDEs +1302.0654 Statistics Theory +1302.0751 Solar and Stellar Astrophysics +1302.1391 Strongly Correlated Electrons +1302.1447 Earth and Planetary Astrophysics +1302.3004 +1302.3828 Discrete Mathematics +1302.4033 Mesoscale and Nanoscale Physics +1302.4689 Other Computer Science +1302.4795 Probability +1302.5114 Cosmology and Nongalactic Astrophysics +1302.6729 Optics +1302.6886 Materials Science +1302.7008 Computer Science and Game Theory +1303.0298 Optimization and Control +1303.1454 Artificial Intelligence +1303.1455 Artificial Intelligence +1303.1456 Artificial Intelligence +1303.1457 Artificial Intelligence +1303.1458 Artificial Intelligence +1303.1459 Artificial Intelligence +1303.1460 Artificial Intelligence +1303.1461 Artificial Intelligence +1303.1462 Artificial Intelligence +1303.1464 Artificial Intelligence +1303.1465 Artificial Intelligence +1303.1466 Artificial Intelligence +1303.1469 Artificial Intelligence +1303.1470 Artificial Intelligence +1303.1471 Artificial Intelligence +1303.1472 Artificial Intelligence +1303.1473 Artificial Intelligence +1303.1474 Artificial Intelligence +1303.1475 Artificial Intelligence +1303.1476 Artificial Intelligence +1303.1477 Artificial Intelligence +1303.1478 Artificial Intelligence +1303.1479 Artificial Intelligence +1303.1480 Artificial Intelligence +1303.1481 Artificial Intelligence +1303.1482 Artificial Intelligence +1303.1483 Artificial Intelligence +1303.1484 Artificial Intelligence +1303.1485 Artificial Intelligence +1303.1486 Artificial Intelligence +1303.1487 Artificial Intelligence +1303.1488 Artificial Intelligence +1303.1489 Artificial Intelligence +1303.1490 Artificial Intelligence +1303.1491 Artificial Intelligence +1303.1492 Artificial Intelligence +1303.1494 Artificial Intelligence +1303.1495 Artificial Intelligence +1303.1496 Artificial Intelligence +1303.1497 Artificial Intelligence +1303.1498 Artificial Intelligence +1303.1499 Artificial Intelligence +1303.1500 Artificial Intelligence +1303.1501 Artificial Intelligence +1303.1502 Artificial Intelligence +1303.1503 Artificial Intelligence +1303.1504 Artificial Intelligence +1303.1505 Artificial Intelligence +1303.1506 Artificial Intelligence +1303.1507 Artificial Intelligence +1303.1508 Artificial Intelligence +1303.1509 Artificial Intelligence +1303.1510 Artificial Intelligence +1303.1511 Artificial Intelligence +1303.1512 Artificial Intelligence +1303.1513 Artificial Intelligence +1303.1514 Artificial Intelligence +1303.1515 Artificial Intelligence +1303.1516 Artificial Intelligence +1303.1517 Artificial Intelligence +1303.1518 Artificial Intelligence +1303.1519 Artificial Intelligence +1303.1543 Algebraic Geometry +1303.1547 Phenomenology +1303.1549 High Energy Astrophysical Phenomena +1303.1551 Combinatorics +1303.1558 Phenomenology +1303.1561 Performance +1303.1564 High Energy Astrophysical Phenomena +1303.1567 Analysis of PDEs +1303.1571 Information Theory +1303.1580 Mesoscale and Nanoscale Physics +1303.1581 Atmospheric and Oceanic Physics +1303.1585 Computational Geometry +1303.1597 Networking and Internet Architecture +1303.1600 Probability +1303.1603 Phenomenology +1303.1607 Strongly Correlated Electrons +1303.1610 Quantitative Methods +1303.1611 Exactly Solvable and Integrable Systems +1303.1617 Soft Condensed Matter +1303.1619 High Energy Astrophysical Phenomena +1303.1632 +1303.1635 Networking and Internet Architecture +1303.1640 Data Structures and Algorithms +1303.1643 Data Structures and Algorithms +1303.1653 Algebraic Geometry +1303.1654 +1303.1655 Analysis of PDEs +1303.1661 Number Theory +1303.1663 General Finance +1303.1667 Computer Vision and Pattern Recognition +1303.1668 Dynamical Systems +1303.1669 +1303.1671 Data Structures and Algorithms +1303.1672 Risk Management +1303.1674 Classical Analysis and ODEs +1303.1675 Solar and Stellar Astrophysics +1303.1676 Combinatorics +1303.1682 Combinatorics +1303.1683 Optics +1303.1684 Representation Theory +1303.1691 Computer Science and Game Theory +1303.1695 Information Retrieval +1303.1697 Multimedia +1303.1700 Artificial Intelligence +1303.1701 Differential Geometry +1303.1703 Information Retrieval +1303.1707 Optimization and Control +1303.1709 Numerical Analysis +1303.1712 Solar and Stellar Astrophysics +1303.1716 Programming Languages +1303.1718 General Physics +1303.1720 Analysis of PDEs +1303.1721 Functional Analysis +1303.1724 Computational Engineering, Finance, and Science +1303.1728 Other Computer Science +1303.1731 Materials Science +1303.1732 Other Computer Science +1303.1734 Other Computer Science +1303.1735 +1303.1736 Analysis of PDEs +1303.1740 Networking and Internet Architecture +1303.1741 Social and Information Networks +1303.1743 Statistics Theory +1303.1744 Probability +1303.1746 Optimization and Control +1303.1747 Social and Information Networks +1303.1748 Numerical Analysis +1303.1750 Algebraic Geometry +1303.1751 Networking and Internet Architecture +1303.1752 Classical Analysis and ODEs +1303.1761 Computer Vision and Pattern Recognition +1303.1762 +1303.1764 Classical Analysis and ODEs +1303.1765 Algebraic Geometry +1303.1768 Physics Education +1303.1774 Superconductivity +1303.1777 +1303.1789 Analysis of PDEs +1303.1790 Analysis of PDEs +1303.1796 Earth and Planetary Astrophysics +1303.1798 High Energy Astrophysical Phenomena +1303.1802 +1303.1804 Complex Variables +1303.1805 Group Theory +1303.1810 Complex Variables +1303.1813 Solar and Stellar Astrophysics +cond-mat/9811341 Strongly Correlated Electrons +math-ph/0502010 +math/0505227 Geometric Topology +math/0703426 Number Theory +0809.1486 Other Condensed Matter +0811.2914 Mesoscale and Nanoscale Physics +0901.3102 Number Theory +0903.5052 Superconductivity +0908.4502 Algebraic Geometry +0910.0575 Probability +0911.5546 Representation Theory +1001.2370 Chemical Physics +1003.5526 Operator Algebras +1004.0741 Logic +1004.2947 Computational Finance +1004.3947 Complex Variables +1005.1754 Commutative Algebra +1005.5628 Networking and Internet Architecture +1007.0546 Artificial Intelligence +1007.4824 Popular Physics +1009.2229 Commutative Algebra +1011.1154 Differential Geometry +1101.5503 Differential Geometry +1102.1592 +1103.1456 Representation Theory +1103.3437 Representation Theory +1104.3264 Number Theory +1106.3115 Cosmology and Nongalactic Astrophysics +1106.3430 Algebraic Geometry +1107.2873 Probability +1108.3976 Algebraic Geometry +1109.6081 Accelerator Physics +1111.2727 Quantum Gases +1111.2762 Commutative Algebra +1111.3499 Numerical Analysis +1112.1199 +1112.2385 Quantum Algebra +1112.4137 +1201.3041 +1202.0875 Differential Geometry +1202.2447 Trading and Market Microstructure +1202.4219 Solar and Stellar Astrophysics +1202.4673 Quantum Algebra +1202.5293 Fluid Dynamics +1203.1233 Group Theory +1203.2902 Algebraic Geometry +1204.3436 Neural and Evolutionary Computing +1204.3444 Plasma Physics +1204.5055 General Finance +1204.5314 Social and Information Networks +1204.6470 +1205.3388 Plasma Physics +1205.3706 +1205.6821 Plasma Physics +1205.6859 Dynamical Systems +1206.0038 Systems and Control +1206.0250 Number Theory +1206.0303 Computational Geometry +1206.0440 Algebraic Geometry +1206.2199 Physics and Society +1206.2825 Statistical Mechanics +1206.4505 Differential Geometry +1206.5202 Mesoscale and Nanoscale Physics +1206.5336 Data Structures and Algorithms +1207.0788 Systems and Control +1207.3094 Information Theory +1207.4883 Numerical Analysis +1207.5786 Differential Geometry +1207.5830 Numerical Analysis +1207.5935 Algebraic Geometry +1207.6481 Differential Geometry +1207.6754 Differential Geometry +1208.0034 +1208.2801 Plasma Physics +1208.3290 Physics and Society +1208.5314 Exactly Solvable and Integrable Systems +1209.0147 Number Theory +1209.0977 Solar and Stellar Astrophysics +1209.3297 Quantum Gases +1209.4237 Superconductivity +1209.5115 Superconductivity +1209.6412 Information Theory +1210.0065 Databases +1210.0332 Biological Physics +1210.0868 Mesoscale and Nanoscale Physics +1210.1245 +1210.2262 Theory +1210.2679 Representation Theory +1210.3447 Probability +1210.3800 Probability +1210.5976 Phenomenology +1210.6896 Optimization and Control +1210.6955 Theory +1210.7725 +1211.0117 Solar and Stellar Astrophysics +1211.0479 Data Structures and Algorithms +1211.1512 Quantum Gases +1211.1525 +1211.1753 Mesoscale and Nanoscale Physics +1211.2195 Phenomenology +1211.2702 +1211.6004 +1211.6013 Learning +1211.6733 Number Theory +1211.6919 Quantum Gases +1212.0715 Operator Algebras +1212.3092 Probability +1212.3334 +1212.3503 +1212.3700 Chemical Physics +1212.4500 Cosmology and Nongalactic Astrophysics +1301.0400 Dynamical Systems +1301.0509 Superconductivity +1301.0866 Statistical Mechanics +1301.1355 Lattice +1301.1661 Information Theory +1301.1673 +1301.1923 Populations and Evolution +1301.2056 +1301.2187 +1301.2784 Strongly Correlated Electrons +1301.3217 General Physics +1301.3726 Quantum Gases +1301.4083 Learning +1301.4598 Data Analysis, Statistics and Probability +1301.4868 Analysis of PDEs +1301.5119 Analysis of PDEs +1301.6460 Mesoscale and Nanoscale Physics +1302.0416 Phenomenology +1302.0676 Plasma Physics +1302.0782 Optics +1302.1692 Theory +1302.1781 +1302.2512 Information Theory +1302.3386 Statistical Mechanics +1302.3390 +1302.3518 Information Theory +1302.4686 +1302.5094 Materials Science +1302.5746 Materials Science +1302.6136 Strongly Correlated Electrons +1302.6977 Genomics +1303.0139 Solar and Stellar Astrophysics +1303.0782 Statistical Mechanics +1303.0874 +1303.1616 Quantum Gases +1303.1623 +1303.1832 Theory +1303.2871 Superconductivity +1303.4351 Statistical Finance +1303.4534 Theory +1303.4978 +1303.5245 Strongly Correlated Electrons +1303.5889 Genomics +1303.6130 Phenomenology +1303.6253 Cosmology and Nongalactic Astrophysics +1303.7207 Chemical Physics +1304.2912 +1304.3959 High Energy Astrophysical Phenomena +1304.4017 +1304.4084 Mesoscale and Nanoscale Physics +1304.4088 Materials Science +1304.4396 Logic +1304.4454 Mesoscale and Nanoscale Physics +1304.5518 Data Structures and Algorithms +1304.6039 Symbolic Computation +1304.7177 Theory +1305.0858 Atomic Physics +1305.1693 +1305.2135 Numerical Analysis +1305.3164 Data Structures and Algorithms +1305.3578 Statistical Mechanics +1305.3901 Quantum Gases +1305.4090 Analysis of PDEs +1305.4782 +1305.5165 High Energy Astrophysical Phenomena +1305.5185 Optics +1305.5466 +1305.6151 Information Theory +1305.6211 Computation and Language +1305.6401 Phenomenology +1306.0480 Statistics Theory +1306.1049 Operator Algebras +1306.1443 +1306.2755 High Energy Astrophysical Phenomena +1306.3360 Optics +1306.3626 Number Theory +1306.3903 Networking and Internet Architecture +1306.4370 Theory +1306.4846 Atomic Physics +1306.5024 Accelerator Physics +1306.5476 Statistical Mechanics +1306.5932 +1306.6791 Cosmology and Nongalactic Astrophysics +1306.6868 Superconductivity +1307.0245 Differential Geometry +1307.0799 Phenomenology +1307.1023 Classical Physics +1307.1334 Metric Geometry +1307.2348 Discrete Mathematics +1307.2413 Optics +1307.3022 Materials Science +1307.3061 Databases +1307.3241 Instrumentation and Detectors +1307.3259 Probability +1307.3549 Computational Engineering, Finance, and Science +1307.3550 Distributed, Parallel, and Cluster Computing +1307.3565 Chemical Physics +1307.3573 Information Retrieval +1307.3575 +1307.3576 Superconductivity +1307.3582 Combinatorics +1307.3585 Artificial Intelligence +1307.3590 Number Theory +1307.3593 +1307.3595 +1307.3596 Classical Physics +1307.3597 Portfolio Management +1307.3600 +1307.3604 +1307.3608 Information Theory +1307.3609 Soft Condensed Matter +1307.3610 Theory +1307.3611 Chemical Physics +1307.3612 Astrophysics of Galaxies +1307.3615 Soft Condensed Matter +1307.3616 Digital Libraries +1307.3620 Probability +1307.3621 Data Structures and Algorithms +1307.3624 Materials Science +1307.3626 Social and Information Networks +1307.3635 High Energy Astrophysical Phenomena +1307.3637 Combinatorics +1307.3638 Networking and Internet Architecture +1307.3639 Solar and Stellar Astrophysics +1307.3643 Superconductivity +1307.3645 Information Theory +1307.3647 Analysis of PDEs +1307.3662 Analysis of PDEs +1307.3663 Geometric Topology +1307.3666 Analysis of PDEs +1307.3669 History and Overview +1307.3673 Learning +1307.3675 Learning +1307.3677 Instrumentation and Methods for Astrophysics +1307.3678 Classical Analysis and ODEs +1307.3682 Computational Complexity +1307.3685 Complex Variables +1307.3686 Solar and Stellar Astrophysics +1307.3687 Social and Information Networks +1307.3688 Analysis of PDEs +1307.3690 Hardware Architecture +1307.3691 +1307.3692 Data Structures and Algorithms +1307.3695 Classical Analysis and ODEs +1307.3699 Cryptography and Security +1307.3701 Information Theory +1307.3702 Analysis of PDEs +1307.3703 Statistical Mechanics +1307.3705 Cosmology and Nongalactic Astrophysics +1307.3706 Geophysics +1307.3707 +1307.3722 Software Engineering +1307.3724 Information Theory +1307.3725 Number Theory +1307.3726 +1307.3729 Chemical Physics +1307.3731 Logic +1307.3732 Mesoscale and Nanoscale Physics +1307.3736 Data Structures and Algorithms +1307.3740 +1307.3741 Number Theory +1307.3743 Algebraic Topology +1307.3747 Number Theory +1307.3748 Number Theory +1307.3749 Analysis of PDEs +1307.3752 Algebraic Geometry +1307.3753 Cryptography and Security +1307.3754 Earth and Planetary Astrophysics +1307.3755 Genomics +1307.3760 Computers and Society +1307.3762 Theory +1307.3766 Cryptography and Security +1307.3774 Mesoscale and Nanoscale Physics +1307.3777 Phenomenology +1307.3779 Phenomenology +1307.3780 Information Theory +1307.3783 Solar and Stellar Astrophysics +1307.3785 Machine Learning +1307.3787 Superconductivity +1307.3791 Networking and Internet Architecture +1307.3797 Systems and Control +1307.3799 Systems and Control +1307.3803 +1307.3809 Geometric Topology +1307.3814 Mesoscale and Nanoscale Physics +1307.3815 Rings and Algebras +1307.3816 Rings and Algebras +1307.3818 Systems and Control +1307.3819 Accelerator Physics +1307.3820 Statistical Mechanics +1307.3823 Dynamical Systems +1307.3824 Neural and Evolutionary Computing +1307.3826 Statistical Mechanics +1307.3830 Probability +1307.3832 Logic in Computer Science +1307.3834 +1307.3836 Analysis of PDEs +1307.3838 Analysis of PDEs +1307.3839 Group Theory +1307.3840 Theory +1307.3843 Numerical Analysis +1307.3846 Machine Learning +1307.3850 Dynamical Systems +1307.3851 Number Theory +1307.3853 Hardware Architecture +1307.3855 Information Retrieval +1307.3857 Biomolecules +1307.3860 Probability +1307.3862 Numerical Analysis +1307.3865 Statistical Mechanics +1307.3866 Statistical Mechanics +1307.3867 Statistical Mechanics +1307.3868 Soft Condensed Matter +1307.3869 Statistical Mechanics +1307.3872 Information Theory +1307.3875 Materials Science +1307.3877 Data Structures and Algorithms +1307.3880 Instrumentation and Methods for Astrophysics +1307.3881 Combinatorics +1307.3883 Superconductivity +1307.3887 Phenomenology +1307.3888 Other Computer Science +1307.3890 High Energy Astrophysical Phenomena +1307.3891 Accelerator Physics +1307.3893 Accelerator Physics +1307.3895 High Energy Astrophysical Phenomena +1307.3896 Solar and Stellar Astrophysics +1307.3901 Information Theory +1307.3902 Number Theory +1307.3903 Differential Geometry +1307.3907 Instrumentation and Methods for Astrophysics +1307.3911 Computers and Society +1307.3912 Instrumentation and Methods for Astrophysics +1307.3915 Accelerator Physics +1307.3918 Instrumentation and Methods for Astrophysics +1307.3919 Differential Geometry +1307.3924 Representation Theory +1307.3925 Methodology +1307.3926 Probability +1307.3927 +1307.3938 Geophysics +1307.3940 Information Theory +1307.3945 Probability +1307.3947 +1307.3956 High Energy Astrophysical Phenomena +1307.3958 Materials Science +1307.3959 Materials Science +1307.3962 Phenomenology +1307.3964 Artificial Intelligence +1307.3965 Algebraic Geometry +1307.3968 Differential Geometry +1307.3969 Differential Geometry +1307.3970 Theory +1307.3971 Differential Geometry +1307.3973 Optimization and Control +1307.3974 Analysis of PDEs +1307.3975 Computational Complexity +1307.3976 Formal Languages and Automata Theory +1307.3978 Phenomenology +1307.3984 +1307.3986 Materials Science +1307.3992 Instrumentation and Methods for Astrophysics +1307.3994 Algebraic Geometry +1307.3997 Disordered Systems and Neural Networks +1307.4004 Quantum Gases +1307.4005 K-Theory and Homology +1307.4010 +1307.4013 Accelerator Physics +1307.4024 Probability +1307.4028 Operator Algebras +1307.4031 Atomic Physics +1307.4034 Probability +1307.4043 High Energy Astrophysical Phenomena +1307.4047 Optimization and Control +1307.4049 Theory +1307.4050 High Energy Astrophysical Phenomena +1307.4055 Theory +1307.4061 Materials Science +1307.4063 Information Retrieval +1307.4067 Analysis of PDEs +1307.4068 Phenomenology +1307.4070 Phenomenology +1307.4073 +cond-mat/9612130 Disordered Systems and Neural Networks +hep-ph/0307017 Phenomenology +math/0512416 Complex Variables +0810.4508 Classical Analysis and ODEs +0810.5544 Number Theory +0811.1637 +0910.5039 Differential Geometry +1003.5321 Functional Analysis +1006.0621 Methodology +1008.4017 Functional Analysis +1009.2614 Complex Variables +1010.0349 Number Theory +1103.5590 Materials Science +1105.6132 Materials Science +1105.6274 Cosmology and Nongalactic Astrophysics +1109.0363 Probability +1110.0682 Differential Geometry +1110.2945 Combinatorics +1112.2004 Spectral Theory +1112.3453 Algebraic Geometry +1112.5012 Fluid Dynamics +1202.1377 Methodology +1203.4613 Algebraic Geometry +1203.6548 Theory +1205.0299 Phenomenology +1205.0583 Statistical Mechanics +1205.5119 Representation Theory +1205.5955 Spectral Theory +1207.0487 Classical Analysis and ODEs +1208.1460 Dynamical Systems +1208.2735 Experiment +1209.1662 Representation Theory +1209.2173 Cosmology and Nongalactic Astrophysics +1209.2175 Cosmology and Nongalactic Astrophysics +1209.4129 Machine Learning +1210.5742 Atomic Physics +1211.0985 Information Theory +1211.2576 Operator Algebras +1211.5338 Combinatorics +1211.6319 +1211.6837 Strongly Correlated Electrons +1212.0018 Social and Information Networks +1212.5571 +1212.6463 Strongly Correlated Electrons +1212.6591 +1301.6791 Information Theory +1302.1035 +1302.3638 +1302.4431 Analysis of PDEs +1302.4432 Analysis of PDEs +1302.5204 Representation Theory +1302.6992 Earth and Planetary Astrophysics +1302.7137 Theory +1303.1145 Statistical Mechanics +1303.4075 Optimization and Control +1303.6139 Analysis of PDEs +1303.7055 Phenomenology +1303.7188 Strongly Correlated Electrons +1304.0227 Algebraic Topology +1304.0858 Exactly Solvable and Integrable Systems +1304.6707 Data Structures and Algorithms +1304.7499 Theory +1304.7817 Methodology +1305.0422 Optics +1305.0556 Computation and Language +1305.1090 Superconductivity +1305.2312 Analysis of PDEs +1305.3443 +1305.4530 Cosmology and Nongalactic Astrophysics +1305.4569 Phenomenology +1305.5559 Instrumentation and Detectors +1305.5562 Instrumentation and Detectors +1305.7278 +1305.7279 +1306.0422 Quantum Gases +1306.1030 Superconductivity +1306.1509 Accelerator Physics +1306.1918 Pattern Formation and Solitons +1306.5289 Computation +1306.5327 Instrumentation and Detectors +1307.1004 Mesoscale and Nanoscale Physics +1307.3092 Phenomenology +1307.4428 Soft Condensed Matter +1308.0107 Mesoscale and Nanoscale Physics +1308.2179 Statistical Mechanics +1308.2257 Astrophysics of Galaxies +1308.3817 Materials Science +1308.4585 +1308.4648 Information Retrieval +1308.5436 Materials Science +1309.1962 +1309.2206 Cosmology and Nongalactic Astrophysics +1309.2356 Theory +1309.2465 Functional Analysis +1309.2598 Functional Analysis +1309.3665 Combinatorics +1309.5024 Instrumentation and Detectors +1309.5598 +1309.6144 Computational Complexity +1309.6232 Materials Science +1309.6349 Soft Condensed Matter +1310.0759 Theory +1310.0848 Differential Geometry +1310.0899 Optimization and Control +1310.2840 Cosmology and Nongalactic Astrophysics +1310.2872 Commutative Algebra +1310.2905 Methodology +1310.2936 Classical Physics +1310.2942 Phenomenology +1310.2946 Experiment +1310.2953 High Energy Astrophysical Phenomena +1310.2955 Artificial Intelligence +1310.2960 Information Theory +1310.2961 Emerging Technologies +1310.2962 Optics +1310.2964 General Finance +1310.2966 Earth and Planetary Astrophysics +1310.2969 Symplectic Geometry +1310.2975 Fluid Dynamics +1310.2981 Quantum Algebra +1310.2985 Phenomenology +1310.2989 Cosmology and Nongalactic Astrophysics +1310.2991 Instrumentation and Methods for Astrophysics +1310.2992 Instrumentation and Methods for Astrophysics +1310.2995 Experiment +1310.2998 Fluid Dynamics +1310.2999 +1310.3000 Soft Condensed Matter +1310.3002 Differential Geometry +1310.3004 Machine Learning +1310.3006 Differential Geometry +1310.3008 High Energy Astrophysical Phenomena +1310.3009 Space Physics +1310.3010 Neurons and Cognition +1310.3011 Neurons and Cognition +1310.3012 Phenomenology +1310.3015 Information Theory +1310.3017 Combinatorics +1310.3018 Other Condensed Matter +1310.3030 Geometric Topology +1310.3035 General Physics +1310.3043 Strongly Correlated Electrons +1310.3045 Phenomenology +1310.3050 +1310.3054 Probability +1310.3055 Superconductivity +1310.3063 Classical Analysis and ODEs +1310.3067 Analysis of PDEs +1310.3069 +1310.3070 Human-Computer Interaction +1310.3072 Materials Science +1310.3073 Data Analysis, Statistics and Probability +1310.3075 Classical Analysis and ODEs +1310.3077 Trading and Market Microstructure +1310.3083 General Finance +1310.3087 Astrophysics of Galaxies +1310.3088 Instrumentation and Methods for Astrophysics +1310.3089 +1310.3091 Logic +1310.3094 Fluid Dynamics +1310.3096 Plasma Physics +1310.3098 Probability +1310.3107 Distributed, Parallel, and Cluster Computing +1310.3109 Optics +1310.3110 Algebraic Geometry +1310.3111 Human-Computer Interaction +1310.3113 Pricing of Securities +1310.3114 Probability +1310.3115 Human-Computer Interaction +1310.3119 Computational Engineering, Finance, and Science +1310.3123 Geometric Topology +1310.3124 +1310.3129 Fluid Dynamics +1310.3133 Differential Geometry +1310.3137 Logic +1310.3138 Social and Information Networks +1310.3140 Human-Computer Interaction +1310.3141 Cosmology and Nongalactic Astrophysics +1310.3145 Human-Computer Interaction +1310.3150 Fluid Dynamics +1310.3151 Astrophysics of Galaxies +1310.3152 Experiment +1310.3153 Computer Science and Game Theory +1310.3154 Experiment +1310.3160 Phenomenology +1310.3161 Classical Analysis and ODEs +1310.3162 Plasma Physics +1310.3165 Human-Computer Interaction +1310.3169 Strongly Correlated Electrons +1310.3170 Instrumentation and Detectors +1310.3173 Physics Education +1310.3178 Instrumentation and Detectors +1310.3179 Instrumentation and Detectors +1310.3180 Molecular Networks +1310.3181 Fluid Dynamics +1310.3182 Fluid Dynamics +1310.3184 Theory +1310.3186 Soft Condensed Matter +1310.3190 Experiment +1310.3192 Analysis of PDEs +1310.3194 Optimization and Control +1310.3195 Formal Languages and Automata Theory +1310.3197 Genomics +1310.3199 Fluid Dynamics +1310.3200 Biological Physics +1310.3201 Numerical Analysis +1310.3204 Combinatorics +1310.3207 Lattice +1310.3209 Earth and Planetary Astrophysics +1310.3211 Cosmology and Nongalactic Astrophysics +1310.3217 Neurons and Cognition +1310.3218 Analysis of PDEs +1310.3220 Earth and Planetary Astrophysics +1310.3221 Cryptography and Security +1310.3223 Applications +1310.3224 Fluid Dynamics +1310.3230 Other Computer Science +1310.3232 Statistical Mechanics +1310.3233 Computer Vision and Pattern Recognition +1310.3234 Populations and Evolution +1310.3235 +1310.3245 Logic +1310.3247 Superconductivity +1310.3250 Logic +1310.3251 Quantum Algebra +1310.3252 Data Structures and Algorithms +1310.3261 High Energy Astrophysical Phenomena +astro-ph/0401192 +astro-ph/0405245 +astro-ph/0505525 +astro-ph/0603747 +0705.2108 +0712.3504 Probability +0801.0042 Operator Algebras +0804.1864 Operator Algebras +0804.2169 Operator Algebras +0811.3978 Computer Science and Game Theory +0812.0077 Operator Algebras +0812.0089 Probability +0901.1754 Operator Algebras +0910.3148 Data Structures and Algorithms +0910.3931 Algebraic Geometry +0911.3286 Theory +0912.0368 Data Structures and Algorithms +1001.1210 Computational Engineering, Finance, and Science +1002.2804 Functional Analysis +1002.4139 +1003.2253 Methodology +1005.1396 Operator Algebras +1006.2211 Operator Algebras +1006.2746 Operator Algebras +1006.5523 Analysis of PDEs +1007.0113 Operator Algebras +1007.1561 +1101.6071 Adaptation and Self-Organizing Systems +1106.4945 Numerical Analysis +1107.0875 Metric Geometry +1107.3279 Discrete Mathematics +1107.3724 Data Structures and Algorithms +1109.2313 Information Theory +1109.4359 Probability +1111.0833 Atomic Physics +1111.1880 Materials Science +1111.2363 Earth and Planetary Astrophysics +1111.4536 Lattice +1202.0263 Geometric Topology +1202.0792 Soft Condensed Matter +1202.2712 Cosmology and Nongalactic Astrophysics +1202.3628 +1202.4239 Algebraic Geometry +1203.5718 Number Theory +1204.4526 Data Structures and Algorithms +1204.4823 +1205.3445 Computational Physics +1205.5113 +1206.4183 Materials Science +1207.4078 Algebraic Geometry +1208.0462 +1208.1110 Soft Condensed Matter +1208.5189 +1208.6371 +1209.0632 Cosmology and Nongalactic Astrophysics +1209.2809 Analysis of PDEs +1209.3537 Soft Condensed Matter +1209.3725 Algebraic Geometry +1209.5037 Systems and Control +1210.3305 Materials Science +1210.5139 Mesoscale and Nanoscale Physics +1210.8408 Functional Analysis +1211.0779 Systems and Control +1211.0849 Instrumentation and Detectors +1211.1085 Chemical Physics +1211.4040 Methodology +1211.4813 Probability +1212.0601 +1212.1168 Strongly Correlated Electrons +1212.1172 Theory +1212.2368 Earth and Planetary Astrophysics +1212.4130 +1212.4652 Phenomenology +1212.4894 Probability +1212.4943 History and Philosophy of Physics +1212.5623 Theory +1301.0131 Number Theory +1301.1488 Strongly Correlated Electrons +1301.1566 Group Theory +1301.1665 Quantum Algebra +1301.1720 Soft Condensed Matter +1301.1814 Numerical Analysis +1301.1819 Dynamical Systems +1301.3492 Phenomenology +1301.4831 Cosmology and Nongalactic Astrophysics +1301.4934 Functional Analysis +1301.5296 Combinatorics +1301.6228 Distributed, Parallel, and Cluster Computing +1301.7685 Analysis of PDEs +1302.0455 +1302.1597 Materials Science +1302.1824 +1302.3439 Populations and Evolution +1302.3717 Algebraic Geometry +1302.5146 Materials Science +1303.1072 Cosmology and Nongalactic Astrophysics +1303.2604 +1303.3437 +1303.4658 Superconductivity +1303.6863 +1304.1463 General Physics +1304.1715 +1304.1734 Mesoscale and Nanoscale Physics +1304.1807 Phenomenology +1304.3785 Superconductivity +1304.4515 Genomics +1304.4973 +1304.5883 Plasma Physics +1304.6100 +1304.6187 Materials Science +1304.6299 Quantum Gases +1304.7008 Statistical Mechanics +1304.7866 Phenomenology +1304.7961 Experiment +1304.7965 Functional Analysis +1305.1205 Plasma Physics +1305.2641 Phenomenology +1305.3069 +1305.4196 Computational Physics +1305.4327 Theory +1305.4579 Superconductivity +1305.4994 Operator Algebras +1305.5333 Experiment +1305.5438 Phenomenology +1305.5657 +1305.6039 Strongly Correlated Electrons +1305.6282 Atomic Physics +1305.6297 Lattice +1305.6476 Plasma Physics +1306.1262 Cosmology and Nongalactic Astrophysics +1306.3032 Computer Vision and Pattern Recognition +1306.3232 Theory +1306.4952 Classical Physics +1306.4959 Classical Analysis and ODEs +1306.5402 Phenomenology +1306.5543 +1306.6504 +1307.0268 Quantum Gases +1307.0715 Biological Physics +1307.0883 Probability +1307.3941 Neurons and Cognition +1307.3967 Atomic Physics +1307.4619 Phenomenology +1307.4670 Spectral Theory +1307.4740 Theory +1307.4896 Phenomenology +1307.5218 Probability +1307.5893 +1307.5958 Lattice +1307.6241 +1307.7357 Number Theory +1307.8403 Probability +1308.0559 Phenomenology +1308.0928 Mesoscale and Nanoscale Physics +1308.0988 +1308.1242 Phenomenology +1308.1428 Experiment +1308.1630 Mesoscale and Nanoscale Physics +1308.2575 Phenomenology +1308.3076 Theory +1308.3488 Theory +1308.4003 +1308.4216 Physics and Society +1308.4645 +1308.5815 +1308.5967 Theory +1308.6080 +1308.6170 Superconductivity +1308.6498 Dynamical Systems +1308.6771 +1309.0301 Phenomenology +1309.0464 Statistical Mechanics +1309.0820 Theory +1309.2136 Statistics Theory +1309.2195 Theory +1309.2258 Phenomenology +1309.2655 Databases +1309.2914 Materials Science +1309.3402 Phenomenology +1309.3651 Quantum Gases +1309.4391 Phenomenology +1309.4447 Phenomenology +1309.4731 Biological Physics +1309.4980 High Energy Astrophysical Phenomena +1309.5114 +1309.5622 Quantum Gases +1309.7335 Phenomenology +1309.7340 Social and Information Networks +1309.7459 Quantum Gases +1310.0086 Experiment +1310.1787 Mesoscale and Nanoscale Physics +1310.2698 Theory +1310.6076 Theory +1310.6451 Strongly Correlated Electrons +1310.6930 Superconductivity +1310.7006 Lattice +1310.7474 Representation Theory +1310.8127 Lattice +1311.0396 Systems and Control +1311.0422 Number Theory +1311.0565 Rings and Algebras +1311.0638 Statistical Mechanics +1311.0889 Theory +1311.1201 Earth and Planetary Astrophysics +1311.2099 Numerical Analysis +1311.2506 Methodology +1311.2550 Portfolio Management +1311.2992 Theory +1311.3717 Genomics +1311.3829 Artificial Intelligence +1311.4017 Phenomenology +1311.4042 +1311.4210 Methodology +1311.4237 Statistical Mechanics +1311.4249 Computational Finance +1311.4395 Classical Physics +1311.4538 Theory +1311.4546 Theory +1311.4547 +1311.4548 Statistics Theory +1311.4552 Data Structures and Algorithms +1311.4558 +1311.4560 Analysis of PDEs +1311.4563 Data Structures and Algorithms +1311.4564 Artificial Intelligence +1311.4566 Digital Libraries +1311.4568 Lattice +1311.4570 Computational Engineering, Finance, and Science +1311.4572 Robotics +1311.4573 Robotics +1311.4580 Experiment +1311.4581 +1311.4586 Phenomenology +1311.4592 Rings and Algebras +1311.4593 Soft Condensed Matter +1311.4596 Computational Physics +1311.4601 Information Theory +1311.4602 +1311.4603 +1311.4604 Materials Science +1311.4606 Social and Information Networks +1311.4609 Data Structures and Algorithms +1311.4611 Strongly Correlated Electrons +1311.4612 Medical Physics +1311.4613 Accelerator Physics +1311.4615 Software Engineering +1311.4616 +1311.4617 Logic in Computer Science +1311.4620 Commutative Algebra +1311.4627 Instrumentation and Methods for Astrophysics +1311.4631 Differential Geometry +1311.4632 Data Analysis, Statistics and Probability +1311.4633 Mesoscale and Nanoscale Physics +1311.4634 Information Theory +1311.4639 Artificial Intelligence +1311.4640 Lattice +1311.4643 Learning +1311.4644 Information Retrieval +1311.4646 Lattice +1311.4647 Geometric Topology +1311.4648 +1311.4651 Dynamical Systems +1311.4658 Human-Computer Interaction +1311.4659 Medical Physics +1311.4668 Fluid Dynamics +1311.4670 Lattice +1311.4676 Number Theory +1311.4680 Rings and Algebras +1311.4683 Number Theory +1311.4685 Functional Analysis +1311.4686 Earth and Planetary Astrophysics +1311.4688 Disordered Systems and Neural Networks +1311.4692 +1311.4693 Quantum Gases +1311.4695 Number Theory +1311.4698 Computational Finance +1311.4699 Lattice +1311.4705 Dynamical Systems +1311.4707 Commutative Algebra +1311.4715 Information Theory +1311.4717 Complex Variables +1311.4723 Information Theory +1311.4726 Lattice +1311.4729 Experiment +1311.4731 Digital Libraries +1311.4733 Programming Languages +1311.4734 Dynamical Systems +1311.4735 Earth and Planetary Astrophysics +1311.4737 Optics +1311.4738 Optics +1311.4740 Lattice +1311.4747 Genomics +1311.4753 Astrophysics of Galaxies +1311.4754 Phenomenology +1311.4760 History and Philosophy of Physics +1311.4763 Strongly Correlated Electrons +1311.4766 Combinatorics +1311.4771 Statistical Finance +1311.4773 Optics +1311.4774 Classical Analysis and ODEs +1311.4778 Computational Geometry +1311.4782 Information Theory +1311.4783 Analysis of PDEs +1311.4784 Number Theory +1311.4786 Soft Condensed Matter +1311.4787 Data Analysis, Statistics and Probability +1311.4788 Combinatorics +1311.4798 General Finance +1311.4799 Networking and Internet Architecture +1311.4800 Experiment +1311.4801 Solar and Stellar Astrophysics +1311.4805 Probability +1311.4807 Probability +1311.4809 Information Theory +1311.4815 Probability +1311.4816 Superconductivity +1311.4822 Dynamical Systems +1311.4836 Combinatorics +1311.4837 Optimization and Control +1311.4847 Mesoscale and Nanoscale Physics +1311.4848 Lattice +1311.4850 Probability +1311.4851 Cell Behavior +1311.4858 Lattice +1311.4859 Computational Geometry +1311.4860 Computational Geometry +1311.4861 Information Theory +1311.4862 Number Theory +1311.4864 Information Theory +1311.4866 Optimization and Control +1311.4873 Metric Geometry +1311.4874 Materials Science +cond-mat/0512639 Disordered Systems and Neural Networks +math/0412231 Operator Algebras +math/0502241 Operator Algebras +math/0507081 Analysis of PDEs +math/0509323 Operator Algebras +math/0510677 Operator Algebras +math/0511661 Operator Algebras +math/0601228 Operator Algebras +math/0602459 Operator Algebras +math/0605480 Operator Algebras +math/0607132 Operator Algebras +math/0607362 Operator Algebras +math/0611097 Operator Algebras +math/0703001 Operator Algebras +math/0703798 Operator Algebras +nlin/0109011 Chaotic Dynamics +0708.2928 Number Theory +0801.0667 Group Theory +0807.2835 +0808.3658 Superconductivity +0904.3515 Earth and Planetary Astrophysics +0904.3919 Mesoscale and Nanoscale Physics +0905.2946 Strongly Correlated Electrons +0907.5467 Analysis of PDEs +0908.4342 Operator Algebras +0910.1199 Probability +0911.3161 Earth and Planetary Astrophysics +1005.4884 Dynamical Systems +1006.2748 Materials Science +1007.2670 +1007.2850 Cosmology and Nongalactic Astrophysics +1009.4879 Group Theory +1010.3486 Fluid Dynamics +1011.3183 Classical Analysis and ODEs +1012.0210 Probability +1012.5692 Combinatorics +1101.2363 Category Theory +1101.2531 Group Theory +1101.3503 Analysis of PDEs +1102.0195 Number Theory +1102.0346 Portfolio Management +1102.0741 Phenomenology +1102.2493 Rings and Algebras +1102.4388 Differential Geometry +1104.2811 Mesoscale and Nanoscale Physics +1104.3504 Symplectic Geometry +1104.3874 Phenomenology +1104.4416 K-Theory and Homology +1105.4056 Other Condensed Matter +1105.6047 Probability +1106.1456 Number Theory +1106.3518 Mesoscale and Nanoscale Physics +1107.1639 Optimization and Control +1107.2447 +1109.0180 Probability +1109.1162 Dynamical Systems +1109.4043 Analysis of PDEs +1109.5002 Probability +1110.1819 Analysis of PDEs +1111.5423 Numerical Analysis +1111.5587 Chemical Physics +1201.0931 Number Theory +1201.1271 Quantum Algebra +1201.2878 Numerical Analysis +1201.2977 Combinatorics +1201.3581 Numerical Analysis +1201.4309 Strongly Correlated Electrons +1201.6669 Functional Analysis +1202.3783 Cosmology and Nongalactic Astrophysics +1202.4896 Complex Variables +1202.5753 Differential Geometry +1202.6114 General Physics +1203.6306 Numerical Analysis +1203.6567 Strongly Correlated Electrons +1204.0120 Probability +1204.1287 +1204.4886 Category Theory +1204.5277 Functional Analysis +1205.0773 Geophysics +1205.1467 Geometric Topology +1205.4581 Combinatorics +1205.6500 Quantum Gases +1205.6682 Phenomenology +1205.6858 General Physics +1206.0191 Quantum Gases +1206.2463 Superconductivity +1206.4890 Disordered Systems and Neural Networks +1206.5920 Materials Science +1206.6797 Strongly Correlated Electrons +1207.0231 Rings and Algebras +1207.0357 Statistical Mechanics +1207.1595 +1207.4513 Theory +1208.2109 +1208.2504 Geometric Topology +1208.2816 +1208.3401 Materials Science +1208.4682 Computers and Society +1209.0063 +1209.0987 +1209.2255 Strongly Correlated Electrons +1209.3376 +1209.3693 Algebraic Geometry +1209.4580 Functional Analysis +1209.5051 Commutative Algebra +1209.5578 Disordered Systems and Neural Networks +1209.6010 +1210.0928 Theory +1210.1554 Chemical Physics +1210.1769 Strongly Correlated Electrons +1210.2276 Distributed, Parallel, and Cluster Computing +1210.3079 +1210.4126 Probability +1210.4569 Instrumentation and Methods for Astrophysics +1210.4778 Multiagent Systems +1210.6094 Rings and Algebras +1210.6382 Robotics +1210.7867 Strongly Correlated Electrons +1211.0034 Mesoscale and Nanoscale Physics +1211.0139 Materials Science +1211.1260 Strongly Correlated Electrons +1211.2328 +1211.2643 +1211.3147 Cryptography and Security +1211.4411 Mesoscale and Nanoscale Physics +1211.5324 Soft Condensed Matter +1211.6677 Functional Analysis +1212.0748 Classical Physics +1212.1588 Statistical Mechanics +1212.2023 Statistical Mechanics +1212.2109 Atomic Physics +1212.4384 Quantum Gases +1212.4887 Phenomenology +1212.5530 +1212.6112 Experiment +1212.6807 Materials Science +1301.1432 Exactly Solvable and Integrable Systems +1301.1537 Analysis of PDEs +1301.3508 +1301.3533 Neural and Evolutionary Computing +1301.3826 Portfolio Management +1301.4294 Mesoscale and Nanoscale Physics +1301.4711 General Physics +1301.4712 General Physics +1301.4911 Geometric Topology +1301.5803 +1301.7321 Logic in Computer Science +1302.0294 Experiment +1302.0303 General Physics +1302.1253 Earth and Planetary Astrophysics +1302.2628 Earth and Planetary Astrophysics +1302.3151 Analysis of PDEs +1302.3198 Phenomenology +1302.4520 Theory +1302.5089 Algebraic Geometry +1302.5133 Emerging Technologies +1302.5139 Cosmology and Nongalactic Astrophysics +1302.5162 Cosmology and Nongalactic Astrophysics +1302.5163 +1302.5417 Artificial Intelligence +1302.5418 +1302.5445 Data Structures and Algorithms +1302.5448 Analysis of PDEs +1302.5449 Learning +1302.5450 Optics +1302.5454 Software Engineering +1302.5457 Strongly Correlated Electrons +1302.5460 Mesoscale and Nanoscale Physics +1302.5463 +1302.5464 Theory +1302.5468 Statistics Theory +1302.5472 Geometric Topology +1302.5475 Methodology +1302.5476 Rings and Algebras +1302.5477 Exactly Solvable and Integrable Systems +1302.5479 Materials Science +1302.5481 Distributed, Parallel, and Cluster Computing +1302.5484 Quantitative Methods +1302.5487 Functional Analysis +1302.5489 Computational Physics +1302.5490 Human-Computer Interaction +1302.5495 Computers and Society +1302.5497 Human-Computer Interaction +1302.5499 Computers and Society +1302.5502 Operating Systems +1302.5503 Combinatorics +1302.5506 Differential Geometry +1302.5508 Plasma Physics +1302.5521 Robotics +1302.5522 Phenomenology +1302.5523 Analysis of PDEs +1302.5531 Classical Analysis and ODEs +1302.5535 Numerical Analysis +1302.5536 Complex Variables +1302.5538 Mesoscale and Nanoscale Physics +1302.5539 Phenomenology +1302.5540 Optimization and Control +1302.5542 Dynamical Systems +1302.5544 Digital Libraries +1302.5548 Pricing of Securities +1302.5549 Databases +1302.5551 Analysis of PDEs +1302.5555 Metric Geometry +1302.5556 Applications +1302.5562 Differential Geometry +1302.5565 Learning +1302.5566 Group Theory +1302.5567 Analysis of PDEs +1302.5579 Algebraic Geometry +1302.5581 Materials Science +1302.5583 Phenomenology +1302.5586 Programming Languages +1302.5588 Geometric Topology +1302.5589 Methodology +1302.5591 Combinatorics +1302.5593 Operator Algebras +1302.5595 Lattice +1302.5598 Functional Analysis +1302.5601 Computational Physics +1302.5603 High Energy Astrophysical Phenomena +1302.5606 Probability +1302.5608 Machine Learning +1302.5609 Logic +1302.5611 Data Structures and Algorithms +1302.5624 Computation +1302.5627 Cosmology and Nongalactic Astrophysics +1302.5633 Cosmology and Nongalactic Astrophysics +1302.5637 Optics +1302.5639 Mesoscale and Nanoscale Physics +1302.5644 Methodology +1302.5645 Computation and Language +1302.5646 Distributed, Parallel, and Cluster Computing +1302.5648 Representation Theory +1302.5657 Information Theory +1302.5662 Information Theory +1302.5665 Analysis of PDEs +1302.5666 Medical Physics +1302.5673 Combinatorics +1302.5675 Computation and Language +1302.5677 Computers and Society +1302.5678 +1302.5679 Distributed, Parallel, and Cluster Computing +1302.5680 Materials Science +1302.5684 Phenomenology +1302.5696 Information Theory +1302.5697 Group Theory +astro-ph/0508580 +astro-ph/0609179 +astro-ph/0609242 +cond-mat/0702422 Materials Science +gr-qc/0611028 +math/0003061 Operator Algebras +math/0004052 Operator Algebras +math/0011191 Operator Algebras +math/0011192 Operator Algebras +math/0301181 Complex Variables +math/0407266 Operator Algebras +math/0411121 Differential Geometry +math/0501122 Group Theory +math/0501330 K-Theory and Homology +math/0504362 Operator Algebras +math/0505520 Differential Geometry +math/0511447 K-Theory and Homology +0801.2293 Mesoscale and Nanoscale Physics +0805.2909 Theory +0907.5449 +1008.1753 Cosmology and Nongalactic Astrophysics +1010.2190 Analysis of PDEs +1011.0461 Geometric Topology +1103.0463 Networking and Internet Architecture +1107.2109 +1108.0345 Theory +1108.5755 Spectral Theory +1108.6267 Algebraic Geometry +1110.0570 +1110.3415 Phenomenology +1110.6431 Mesoscale and Nanoscale Physics +1111.1965 Statistics Theory +1111.4885 Computational Physics +1112.2812 Superconductivity +1201.3190 +1202.4009 Probability +1203.4910 Probability +1206.0768 Analysis of PDEs +1206.1721 Strongly Correlated Electrons +1206.2255 Analysis of PDEs +1206.2751 Functional Analysis +1207.2993 Mesoscale and Nanoscale Physics +1208.1457 Classical Analysis and ODEs +1208.4107 +1209.3594 Computational Geometry +1209.5712 Combinatorics +1210.5395 Superconductivity +1210.6396 Quantum Algebra +1210.6523 Optimization and Control +1210.7967 Quantitative Methods +1211.4550 Theory +1211.6373 Phenomenology +1212.0886 Soft Condensed Matter +1212.1267 Atomic Physics +1212.1299 +1212.1868 Strongly Correlated Electrons +1212.2151 Cosmology and Nongalactic Astrophysics +1212.2431 +1212.3281 Biomolecules +1212.5293 Phenomenology +1212.5435 Mesoscale and Nanoscale Physics +1212.5500 +1212.6961 Experiment +1301.1645 Physics and Society +1301.1948 Optimization and Control +1301.4166 Theory +1301.4647 Phenomenology +1301.5647 Theory +1301.5790 Lattice +1301.6833 +1302.1883 Combinatorics +1302.2071 Mesoscale and Nanoscale Physics +1302.5545 +1303.0871 +1303.1599 Physics and Society +1303.2621 Cosmology and Nongalactic Astrophysics +1303.3314 Functional Analysis +1303.3758 Experiment +1303.3858 Instrumentation and Methods for Astrophysics +1303.3871 Instrumentation and Methods for Astrophysics +1303.4141 Strongly Correlated Electrons +1303.4268 Pricing of Securities +1303.4353 Cosmology and Nongalactic Astrophysics +1303.4516 +1303.4749 Materials Science +1303.5054 Theory +1303.5176 +1303.5775 High Energy Astrophysical Phenomena +1304.0792 Theory +1304.1323 Strongly Correlated Electrons +1304.1413 Statistical Mechanics +1304.2685 +1304.3001 Popular Physics +1304.3042 Functional Analysis +1304.5318 +1304.5524 High Energy Astrophysical Phenomena +1304.5716 Quantum Gases +1304.5858 +1304.5901 Theory +1304.5960 Soft Condensed Matter +1304.6534 Cosmology and Nongalactic Astrophysics +1304.6685 Computational Complexity +1304.6779 +1304.6905 +1304.6948 Theory +1304.7104 Theory +1304.7220 Lattice +1305.1441 Algebraic Geometry +1305.1524 +1305.2063 Strongly Correlated Electrons +1305.2929 Theory +1305.3276 Cosmology and Nongalactic Astrophysics +1305.3501 General Physics +1305.3836 Theory +1305.3881 +1305.4582 Theory +1305.4619 +1305.4625 Phenomenology +1305.4704 Optimization and Control +1305.5164 +1305.5236 Cryptography and Security +1305.5490 Classical Analysis and ODEs +1305.5620 Plasma Physics +1305.6538 Strongly Correlated Electrons +1305.6806 +1305.7008 Phenomenology +1306.1244 Superconductivity +1306.1532 Theory +1306.1697 Superconductivity +1306.1965 Quantum Gases +1306.2342 Phenomenology +1306.2507 Data Analysis, Statistics and Probability +1306.4065 +1306.4680 Mesoscale and Nanoscale Physics +1306.5509 Phenomenology +1306.6000 Instrumentation and Detectors +1306.6875 Mesoscale and Nanoscale Physics +1306.6917 +1307.0216 Phenomenology +1307.0291 Phenomenology +1307.0356 Phenomenology +1307.0392 Theory +1307.0474 Experiment +1307.0694 +1307.0980 +1307.2797 Phenomenology +1307.2847 +1307.2857 Phenomenology +1307.4000 Instrumentation and Methods for Astrophysics +1307.4284 Instrumentation and Methods for Astrophysics +1307.5335 Populations and Evolution +1307.5526 Algebraic Geometry +1307.5658 Commutative Algebra +1307.5794 Strongly Correlated Electrons +1307.6035 Astrophysics of Galaxies +1307.6581 Phenomenology +1307.6900 Phenomenology +1307.8086 +1308.1085 Strongly Correlated Electrons +1308.1880 Superconductivity +1308.2034 Commutative Algebra +1308.2262 +1308.3611 Mesoscale and Nanoscale Physics +1308.3618 Materials Science +1308.4902 Computer Vision and Pattern Recognition +1308.4932 Combinatorics +1308.4945 Combinatorics +1308.5239 Information Theory +1308.5631 Populations and Evolution +1308.5678 Populations and Evolution +1308.5687 +1308.5690 +1308.5693 Cosmology and Nongalactic Astrophysics +1308.5697 Numerical Analysis +1308.5700 Experiment +1308.5712 Machine Learning +1308.5715 Materials Science +1308.5717 Computation +1308.5721 Materials Science +1308.5722 Numerical Analysis +1308.5723 Operator Algebras +1308.5724 Computational Engineering, Finance, and Science +1308.5726 Analysis of PDEs +1308.5728 +1308.5731 Phenomenology +1308.5733 High Energy Astrophysical Phenomena +1308.5734 Superconductivity +1308.5737 Information Theory +1308.5745 +1308.5751 Instrumentation and Detectors +1308.5752 Physics and Society +1308.5754 Metric Geometry +1308.5757 Dynamical Systems +1308.5761 +1308.5764 Geometric Topology +1308.5767 Applications +1308.5771 Statistics Theory +1308.5773 Statistics Theory +1308.5775 Theory +1308.5777 Solar and Stellar Astrophysics +1308.5780 Optics +1308.5785 Optics +1308.5786 Information Theory +1308.5791 Soft Condensed Matter +1308.5796 Classical Analysis and ODEs +1308.5799 Probability +1308.5800 Disordered Systems and Neural Networks +1308.5807 Networking and Internet Architecture +1308.5809 Information Theory +1308.5813 +1308.5818 Numerical Analysis +1308.5819 Materials Science +1308.5820 Systems and Control +1308.5821 High Energy Astrophysical Phenomena +1308.5830 Applications +1308.5839 Mesoscale and Nanoscale Physics +1308.5841 Human-Computer Interaction +1308.5842 Applications +1308.5843 Graphics +1308.5846 Geophysics +1308.5847 Graphics +1308.5849 Combinatorics +1308.5854 Probability +1308.5858 Formal Languages and Automata Theory +1308.5861 Analysis of PDEs +1308.5865 Social and Information Networks +1308.5871 Functional Analysis +1308.5874 Experiment +1308.5885 Information Theory +1308.5886 Phenomenology +1308.5887 Functional Analysis +1308.5890 Algebraic Geometry +1308.5895 Dynamical Systems +1308.5896 Logic in Computer Science +1308.5899 Statistical Mechanics +1308.5900 Phenomenology +1308.5903 Fluid Dynamics +1308.5906 Computational Engineering, Finance, and Science +1308.5910 Optics +1308.5913 Numerical Analysis +1308.5915 Numerical Analysis +1308.5920 Number Theory +1308.5927 +1308.5929 Instrumentation and Detectors +1308.5933 Databases +1308.5938 Information Theory +1308.5939 Instrumentation and Detectors +1308.5941 Metric Geometry +1308.5945 Commutative Algebra +1308.5955 Analysis of PDEs +1308.5956 Physics Education +1308.5958 Materials Science +1308.5962 Differential Geometry +1308.5964 Systems and Control +1308.5965 +alg-geom/9604011 Algebraic Geometry +cond-mat/0309255 Statistical Mechanics +cond-mat/0601645 Strongly Correlated Electrons +math/0412277 Number Theory +quant-ph/0605180 +quant-ph/0607167 +quant-ph/0702136 +0705.2007 Phenomenology +0708.2157 +0711.2920 +0809.2738 Algebraic Geometry +0903.4692 Algebraic Geometry +0905.3095 Strongly Correlated Electrons +0905.4810 Adaptation and Self-Organizing Systems +0907.3212 +0910.0119 Strongly Correlated Electrons +0911.4883 Differential Geometry +0912.4932 Cosmology and Nongalactic Astrophysics +1002.0588 Combinatorics +1002.2728 +1004.0043 Combinatorics +1004.1684 Algebraic Geometry +1006.2498 Information Theory +1010.0850 Complex Variables +1010.0985 Quantum Algebra +1101.4210 Operator Algebras +1102.1625 Dynamical Systems +1102.1765 +1102.2583 Statistics Theory +1103.1533 Cosmology and Nongalactic Astrophysics +1103.5179 Combinatorics +1104.1731 Operator Algebras +1105.1897 +1105.2341 Representation Theory +1105.4725 Formal Languages and Automata Theory +1106.1342 Classical Analysis and ODEs +1106.6351 Mesoscale and Nanoscale Physics +1107.3918 Theory +1108.1761 +1109.2408 Statistics Theory +1109.3962 Superconductivity +1109.4492 Cosmology and Nongalactic Astrophysics +1109.6147 Combinatorics +1109.6205 Optics +1110.2060 General Physics +1110.4476 Operator Algebras +1110.5810 +1111.0806 +1111.3458 Complex Variables +1111.4159 Probability +1112.2172 Discrete Mathematics +1112.2464 Neurons and Cognition +1112.3394 Materials Science +1112.4817 Atomic Physics +1201.3798 General Finance +1201.6661 Cosmology and Nongalactic Astrophysics +1202.0668 +1202.2721 Theory +1202.4637 Mesoscale and Nanoscale Physics +1202.5191 +1203.2513 Logic +1203.3362 Instrumentation and Methods for Astrophysics +1203.3867 Earth and Planetary Astrophysics +1203.5370 Classical Analysis and ODEs +1203.5531 Numerical Analysis +1204.0872 +1204.2232 Cosmology and Nongalactic Astrophysics +1204.3014 Instrumentation and Detectors +1204.5941 Molecular Networks +1204.6501 Theory +1205.2091 Strongly Correlated Electrons +1205.5831 Spectral Theory +1206.3984 Quantum Gases +1206.6034 Other Condensed Matter +1207.0735 Phenomenology +1207.1804 Statistical Mechanics +1207.4380 Materials Science +1207.6083 Machine Learning +1207.6484 Fluid Dynamics +1208.0063 Information Theory +1208.0319 Mesoscale and Nanoscale Physics +1208.0507 Atomic and Molecular Clusters +1208.2804 Mesoscale and Nanoscale Physics +1208.4235 Lattice +1208.5845 Mesoscale and Nanoscale Physics +1208.5916 Phenomenology +1209.0212 +1209.0506 Mesoscale and Nanoscale Physics +1209.1029 +1209.1637 Theory +1209.1995 Optics +1209.2055 Mesoscale and Nanoscale Physics +1209.2745 Materials Science +1209.3247 Statistical Mechanics +1209.3309 Cosmology and Nongalactic Astrophysics +1209.4578 Fluid Dynamics +1209.5592 Atomic and Molecular Clusters +1209.6350 Materials Science +1210.0763 Strongly Correlated Electrons +1210.1076 Optics +1210.1331 Fluid Dynamics +1210.2171 Fluid Dynamics +1210.3576 Strongly Correlated Electrons +1210.3915 Cosmology and Nongalactic Astrophysics +1210.6544 +1210.7643 Materials Science +1210.7929 Strongly Correlated Electrons +1210.8078 Instrumentation and Detectors +1210.8182 Social and Information Networks +1211.0253 Lattice +1211.0562 Strongly Correlated Electrons +1211.1702 Strongly Correlated Electrons +1211.2097 Quantum Gases +1211.4513 Differential Geometry +1211.6405 High Energy Astrophysical Phenomena +1212.0037 Phenomenology +1212.0973 High Energy Astrophysical Phenomena +1212.1819 Computer Vision and Pattern Recognition +1212.1896 Performance +1212.3079 Computer Science and Game Theory +1212.3459 Analysis of PDEs +1212.3674 Other Condensed Matter +1212.4723 Phenomenology +1212.4989 Social and Information Networks +1212.5720 Computer Vision and Pattern Recognition +1212.5781 Soft Condensed Matter +1301.0521 Superconductivity +1301.1518 Algebraic Topology +1301.1733 Quantum Algebra +1301.1818 Logic in Computer Science +1301.1857 Quantum Algebra +1301.1889 +1301.1970 +1301.1971 History and Philosophy of Physics +1301.1972 History and Philosophy of Physics +1301.1979 Superconductivity +1301.1981 Differential Geometry +1301.1983 Cosmology and Nongalactic Astrophysics +1301.1990 Earth and Planetary Astrophysics +1301.1994 +1301.1995 +1301.1996 Quantum Algebra +1301.1999 Data Structures and Algorithms +1301.2001 Metric Geometry +1301.2003 Numerical Analysis +1301.2007 Machine Learning +1301.2010 Cryptography and Security +1301.2011 Algebraic Geometry +1301.2012 Learning +1301.2015 Machine Learning +1301.2017 Theory +1301.2018 +1301.2019 Materials Science +1301.2020 Data Analysis, Statistics and Probability +1301.2021 Probability +1301.2031 Number Theory +1301.2032 Computer Vision and Pattern Recognition +1301.2033 Experiment +1301.2034 Mesoscale and Nanoscale Physics +1301.2037 Complex Variables +1301.2043 Rings and Algebras +1301.2046 Data Structures and Algorithms +1301.2047 Soft Condensed Matter +1301.2048 Earth and Planetary Astrophysics +1301.2052 Materials Science +1301.2054 Plasma Physics +1301.2057 Theory +1301.2058 Materials Science +1301.2062 Analysis of PDEs +1301.2068 Superconductivity +1301.2072 Materials Science +1301.2075 Experiment +1301.2077 +1301.2082 Complex Variables +1301.2085 +1301.2086 Software Engineering +1301.2088 Experiment +1301.2089 Strongly Correlated Electrons +1301.2090 +1301.2091 +1301.2092 Formal Languages and Automata Theory +1301.2097 +1301.2112 Group Theory +1301.2115 Machine Learning +1301.2122 +1301.2125 Spectral Theory +1301.2131 Representation Theory +1301.2134 Logic +1301.2136 Chemical Physics +1301.2137 Artificial Intelligence +1301.2138 Information Theory +1301.2140 +1301.2146 Artificial Intelligence +1301.2147 Rings and Algebras +1301.2151 Analysis of PDEs +1301.2153 Astrophysics of Galaxies +1301.2157 Algebraic Geometry +1301.2161 Mesoscale and Nanoscale Physics +1301.2162 Soft Condensed Matter +1301.2163 Instrumentation and Detectors +1301.2164 Materials Science +1301.2169 General Finance +1301.2172 Multimedia +1301.2173 Multimedia +1301.2176 Solar and Stellar Astrophysics +1301.2181 Formal Languages and Automata Theory +1301.2183 Chemical Physics +1301.2190 +1301.2191 Earth and Planetary Astrophysics +1301.2192 Representation Theory +1301.2193 Dynamical Systems +1301.2194 Machine Learning +1301.2195 Combinatorics +1301.2196 General Finance +1301.2200 Multimedia +1301.2201 +1301.2202 Differential Geometry +1301.2203 High Energy Astrophysical Phenomena +1301.2205 Geometric Topology +1301.2206 Phenomenology +1301.2209 +1301.2211 Materials Science +1301.2215 Artificial Intelligence +1301.2220 Networking and Internet Architecture +1301.2221 Functional Analysis +1301.2223 Physics and Society +1301.2224 Instrumentation and Methods for Astrophysics +1301.2227 Quantum Algebra +1301.2229 Strongly Correlated Electrons +1301.2236 Databases +1301.2237 Information Theory +1301.2247 Physics and Society +cond-mat/0610268 Strongly Correlated Electrons +math-ph/0507068 +nucl-th/0703021 +0803.1981 +0808.2380 +0810.4795 Algebraic Geometry +0901.2025 +0903.5261 +0907.2910 Classical Analysis and ODEs +0910.1082 Strongly Correlated Electrons +1004.0597 Other Condensed Matter +1004.4208 Commutative Algebra +1107.4983 Materials Science +1107.5301 Combinatorics +1109.5068 +1110.5253 Solar and Stellar Astrophysics +1201.3295 +1201.6233 General Physics +1203.0261 +1203.5631 Materials Science +1203.5690 Algebraic Geometry +1204.0125 +1204.1742 +1208.1851 Theory +1208.2874 +1208.2879 Solar and Stellar Astrophysics +1208.4092 Mesoscale and Nanoscale Physics +1208.6020 Atomic Physics +1209.5559 Neurons and Cognition +1210.1364 Materials Science +1210.1435 Combinatorics +1210.1884 Phenomenology +1210.2974 Materials Science +1210.4512 Superconductivity +1210.6878 +1210.7752 Information Theory +1211.0746 Differential Geometry +1211.5331 Mesoscale and Nanoscale Physics +1211.5902 Probability +1212.0130 High Energy Astrophysical Phenomena +1212.3005 Logic +1212.4356 Phenomenology +1212.4522 Computer Vision and Pattern Recognition +1212.4968 Information Theory +1212.6423 Cosmology and Nongalactic Astrophysics +1301.1110 +1301.1692 +1301.2329 Statistical Mechanics +1301.4365 Superconductivity +1301.5920 Mesoscale and Nanoscale Physics +1301.7130 Phenomenology +1302.2305 Mesoscale and Nanoscale Physics +1302.2518 Physics and Society +1302.3124 Optics +1302.3396 Materials Science +1302.3648 Statistical Mechanics +1302.4641 Methodology +1302.5005 Combinatorics +1302.7296 Superconductivity +1303.1650 Optics +1303.1710 Theory +1303.1919 +1303.2940 Mesoscale and Nanoscale Physics +1303.3600 Combinatorics +1303.4752 +1303.5094 Cosmology and Nongalactic Astrophysics +1303.7102 Phenomenology +1304.0750 Mesoscale and Nanoscale Physics +1304.1296 Physics and Society +1304.2086 +1304.2203 +1304.2557 Computational Complexity +1304.4715 Mesoscale and Nanoscale Physics +1304.4790 Materials Science +1304.7551 Soft Condensed Matter +1305.0317 Optics +1305.0658 +1305.1396 Computer Vision and Pattern Recognition +1305.1701 +1305.2588 +1305.2818 +1305.2890 Functional Analysis +1305.4052 Phenomenology +1305.4366 Quantitative Methods +1305.4819 Physics and Society +1305.4956 Optics +1305.6060 Functional Analysis +1305.6318 Cosmology and Nongalactic Astrophysics +1305.6349 Combinatorics +1305.6590 Biological Physics +1306.0044 Logic +1306.0450 Statistical Mechanics +1306.0991 General Physics +1306.1440 Lattice +1306.2063 Materials Science +1306.2076 +1306.2398 Theory +1306.3946 Information Theory +1306.4142 Atomic Physics +1306.4292 Mesoscale and Nanoscale Physics +1306.4556 Atomic Physics +1306.6470 Group Theory +1307.2400 Phenomenology +1307.2904 Cosmology and Nongalactic Astrophysics +1307.4337 Phenomenology +1307.5091 Optics +1307.7372 +1308.0303 +1308.2227 Astrophysics of Galaxies +1308.2715 Group Theory +1308.4712 Soft Condensed Matter +1308.5672 Materials Science +1308.6302 Phenomenology +1308.6610 Mesoscale and Nanoscale Physics +1308.6698 High Energy Astrophysical Phenomena +1309.0402 Strongly Correlated Electrons +1309.0616 Phenomenology +1309.1371 Cosmology and Nongalactic Astrophysics +1309.1924 Experiment +1309.1977 Analysis of PDEs +1309.2422 Logic +1309.2795 Combinatorics +1309.2820 Algebraic Topology +1309.2850 Lattice +1309.2860 Probability +1309.2880 Optics +1309.2931 +1309.2933 +1309.2958 Combinatorics +1309.2959 Adaptation and Self-Organizing Systems +1309.2961 Methodology +1309.2963 Social and Information Networks +1309.2964 Theory +1309.2965 Mesoscale and Nanoscale Physics +1309.2966 Software Engineering +1309.2970 Pattern Formation and Solitons +1309.2971 Geometric Topology +1309.2972 Complex Variables +1309.2978 Methodology +1309.2981 Populations and Evolution +1309.2985 Adaptation and Self-Organizing Systems +1309.2989 Soft Condensed Matter +1309.2993 Fluid Dynamics +1309.2997 Combinatorics +1309.3000 Optimization and Control +1309.3007 Optics +1309.3011 Combinatorics +1309.3013 Optics +1309.3014 Probability +1309.3019 Solar and Stellar Astrophysics +1309.3022 Optimization and Control +1309.3023 +1309.3028 Combinatorics +1309.3030 Mesoscale and Nanoscale Physics +1309.3032 Statistics Theory +1309.3033 Commutative Algebra +1309.3034 Statistics Theory +1309.3035 Pricing of Securities +1309.3038 Probability +1309.3041 Materials Science +1309.3042 Instrumentation and Methods for Astrophysics +1309.3046 Number Theory +1309.3049 General Physics +1309.3051 Phenomenology +1309.3056 Mesoscale and Nanoscale Physics +1309.3061 Materials Science +1309.3062 Phenomenology +1309.3067 Mesoscale and Nanoscale Physics +1309.3074 Complex Variables +1309.3075 Populations and Evolution +1309.3082 Exactly Solvable and Integrable Systems +1309.3085 Differential Geometry +1309.3086 Exactly Solvable and Integrable Systems +1309.3091 Materials Science +1309.3092 Strongly Correlated Electrons +1309.3094 Classical Analysis and ODEs +1309.3097 Atomic Physics +1309.3098 Mesoscale and Nanoscale Physics +1309.3100 +1309.3101 Complex Variables +1309.3103 Machine Learning +1309.3104 Analysis of PDEs +1309.3106 Instrumentation and Methods for Astrophysics +1309.3108 General Physics +1309.3109 Group Theory +1309.3111 Numerical Analysis +1309.3112 Optimization and Control +1309.3113 Logic +1309.3116 Probability +1309.3117 Learning +1309.3127 Materials Science +1309.3128 Programming Languages +1309.3130 Solar and Stellar Astrophysics +1309.3136 Cosmology and Nongalactic Astrophysics +1309.3137 Dynamical Systems +1309.3146 Functional Analysis +1309.3148 Solar and Stellar Astrophysics +1309.3149 Accelerator Physics +1309.3151 Optimization and Control +1309.3153 Rings and Algebras +1309.3155 Data Analysis, Statistics and Probability +1309.3167 Group Theory +1309.3173 Information Theory +1309.3175 Probability +1309.3178 Combinatorics +1309.3179 Theory +1309.3181 Astrophysics of Galaxies +1309.3182 Materials Science +1309.3187 Distributed, Parallel, and Cluster Computing +1309.3191 Lattice +1309.3193 Computational Geometry +1309.3195 Information Theory +1309.3196 Dynamical Systems +1309.3209 Optimization and Control +1309.3211 Popular Physics +1309.3213 +1309.3214 Neural and Evolutionary Computing +1309.3216 Experiment +1309.3225 Quantum Gases +1309.3227 +1309.3231 Differential Geometry +1309.3232 Materials Science +1309.3233 Machine Learning +1309.3235 Software Engineering +1309.3238 Space Physics +1309.3243 Probability +1309.3246 Chemical Physics +1309.3249 Probability +1309.3251 Combinatorics +1309.3260 Networking and Internet Architecture +1309.3265 Probability +cond-mat/0101255 Mesoscale and Nanoscale Physics +quant-ph/0103157 +quant-ph/0604164 +0801.4103 Theory +0902.3099 Mesoscale and Nanoscale Physics +0908.3078 Materials Science +0911.4002 Solar and Stellar Astrophysics +1006.5380 Optics +1008.4742 Operator Algebras +1009.5834 Phenomenology +1011.2926 K-Theory and Homology +1012.2094 Numerical Analysis +1101.2075 Representation Theory +1102.0306 Theory +1103.1546 +1103.2701 Theory +1103.4636 High Energy Astrophysical Phenomena +1104.0003 Combinatorics +1105.1332 Phenomenology +1107.2398 Phenomenology +1107.3250 Analysis of PDEs +1108.3690 Statistical Mechanics +1109.4750 Logic in Computer Science +1110.3490 Combinatorics +1111.2047 Phenomenology +1112.0414 Astrophysics of Galaxies +1112.6245 Rings and Algebras +1201.4775 Representation Theory +1202.2030 +1203.1813 +1203.2119 Superconductivity +1203.4544 Algebraic Geometry +1204.4313 Optimization and Control +1204.5700 Materials Science +1204.5917 Mesoscale and Nanoscale Physics +1205.0521 Phenomenology +1205.0894 Analysis of PDEs +1205.3188 Physics and Society +1206.1058 Phenomenology +1207.0409 General Mathematics +1207.0493 Phenomenology +1207.1602 Statistical Mechanics +1207.1861 Strongly Correlated Electrons +1208.0476 Mesoscale and Nanoscale Physics +1208.3101 Digital Libraries +1208.3211 Strongly Correlated Electrons +1208.3282 Astrophysics of Galaxies +1208.5594 Combinatorics +1209.0926 Disordered Systems and Neural Networks +1209.2051 Quantum Gases +1209.2336 Algebraic Geometry +1209.3566 Materials Science +1209.5476 Theory +1210.1251 Analysis of PDEs +1210.1439 Number Theory +1210.1870 High Energy Astrophysical Phenomena +1210.3290 Phenomenology +1210.3908 Probability +1210.4250 Optics +1210.4792 Machine Learning +1210.4973 General Finance +1210.5223 +1210.7366 +1211.4869 Phenomenology +1211.5397 Atomic Physics +1211.5935 Strongly Correlated Electrons +1212.1552 Materials Science +1212.1950 Mesoscale and Nanoscale Physics +1212.3266 +1212.5659 Plasma Physics +1301.1868 Phenomenology +1301.3342 Learning +1301.3432 Statistical Mechanics +1301.3605 Learning +1301.6663 Atomic Physics +1301.7334 Populations and Evolution +1302.0402 +1302.1842 Information Theory +1302.1847 Information Theory +1302.1853 Biological Physics +1302.1857 Information Theory +1302.2045 Earth and Planetary Astrophysics +1302.3191 Dynamical Systems +1302.3657 Combinatorics +1302.5866 Neurons and Cognition +1302.6060 Cosmology and Nongalactic Astrophysics +1303.0084 Computational Complexity +1303.1249 Experiment +1303.1645 Other Computer Science +1303.1725 Computational Engineering, Finance, and Science +1303.1814 History and Philosophy of Physics +1303.1815 Phenomenology +1303.1816 +1303.1821 Phenomenology +1303.1824 Instrumentation and Methods for Astrophysics +1303.1825 Solar and Stellar Astrophysics +1303.1826 High Energy Astrophysical Phenomena +1303.1828 Applications +1303.1829 Computer Vision and Pattern Recognition +1303.1833 Instrumentation and Methods for Astrophysics +1303.1834 Materials Science +1303.1836 Optics +1303.1838 Number Theory +1303.1840 Discrete Mathematics +1303.1841 Complex Variables +1303.1842 Operator Algebras +1303.1845 Other Quantitative Biology +1303.1847 Information Theory +1303.1848 Information Theory +1303.1851 Solar and Stellar Astrophysics +1303.1855 High Energy Astrophysical Phenomena +1303.1862 Differential Geometry +1303.1866 Analysis of PDEs +1303.1868 Neural and Evolutionary Computing +1303.1869 Other Computer Science +1303.1871 Exactly Solvable and Integrable Systems +1303.1872 Data Structures and Algorithms +1303.1873 Mesoscale and Nanoscale Physics +1303.1874 Cosmology and Nongalactic Astrophysics +1303.1875 Cosmology and Nongalactic Astrophysics +1303.1891 +1303.1894 +1303.1901 Soft Condensed Matter +1303.1902 Soft Condensed Matter +1303.1908 Strongly Correlated Electrons +1303.1912 Data Structures and Algorithms +1303.1913 Neural and Evolutionary Computing +1303.1920 High Energy Astrophysical Phenomena +1303.1927 Statistics Theory +1303.1929 Computation and Language +1303.1930 Computation and Language +1303.1931 Computation and Language +1303.1932 Computation and Language +1303.1933 Strongly Correlated Electrons +1303.1939 Neurons and Cognition +1303.1943 Classical Analysis and ODEs +1303.1948 Cryptography and Security +1303.1951 Databases +1303.1952 Networking and Internet Architecture +1303.1958 +1303.1960 Combinatorics +1303.1961 Solar and Stellar Astrophysics +1303.1967 Analysis of PDEs +1303.1969 Computational Complexity +1303.1971 Software Engineering +1303.1975 Instrumentation and Methods for Astrophysics +1303.1976 Complex Variables +1303.1979 Analysis of PDEs +1303.1980 Solar and Stellar Astrophysics +1303.1983 Numerical Analysis +1303.1988 Optimization and Control +1303.1998 Cryptography and Security +1303.2000 Dynamical Systems +1303.2003 Formal Languages and Automata Theory +1303.2006 Biological Physics +1303.2009 +1303.2013 Artificial Intelligence +1303.2016 Solar and Stellar Astrophysics +1303.2017 Cryptography and Security +1303.2019 Number Theory +1303.2022 Earth and Planetary Astrophysics +1303.2028 Probability +1303.2034 +1303.2039 High Energy Astrophysical Phenomena +1303.2043 Distributed, Parallel, and Cluster Computing +1303.2047 High Energy Astrophysical Phenomena +1303.2048 Information Theory +1303.2049 High Energy Astrophysical Phenomena +1303.2050 Strongly Correlated Electrons +1303.2054 Computational Engineering, Finance, and Science +1303.2059 Logic in Computer Science +1303.2062 Networking and Internet Architecture +1303.2063 Astrophysics of Galaxies +1303.2065 Dynamical Systems +1303.2066 +1303.2068 Algebraic Geometry +1303.2069 Number Theory +1303.2072 Networking and Internet Architecture +1303.2078 Theory +1303.2085 Physics and Society +1303.2087 Information Theory +1303.2089 Mesoscale and Nanoscale Physics +1303.2092 Probability +1303.2093 High Energy Astrophysical Phenomena +1303.2095 High Energy Astrophysical Phenomena +1303.2102 High Energy Astrophysical Phenomena +1303.2104 Learning +1303.2106 Analysis of PDEs +astro-ph/0312024 +gr-qc/9704009 +hep-th/0405109 Theory +0802.1350 Mesoscale and Nanoscale Physics +0807.4003 Applications +0809.3572 Geometric Topology +0902.1332 Metric Geometry +0906.0117 Differential Geometry +0906.5250 Differential Geometry +0911.4760 Mesoscale and Nanoscale Physics +0912.0904 Symplectic Geometry +1001.0181 +1001.4257 Group Theory +1002.2064 Differential Geometry +1007.3476 Other Computer Science +1008.2691 General Physics +1008.5220 Theory +1009.2293 General Physics +1009.4514 Quantum Gases +1010.0822 Applications +1010.2561 Number Theory +1010.2636 Cosmology and Nongalactic Astrophysics +1011.3977 Differential Geometry +1011.6541 Differential Geometry +1012.2504 Biomolecules +1101.0495 Differential Geometry +1101.2568 +1101.5931 Algebraic Geometry +1102.4156 Differential Geometry +1103.3019 +1103.4815 Differential Geometry +1104.1807 Methodology +1105.4126 +1106.2218 Category Theory +1106.3059 Computational Complexity +1107.3457 Statistical Mechanics +1107.4104 Biomolecules +1107.5246 Physics and Society +1107.5890 Algebraic Geometry +1109.3473 Cosmology and Nongalactic Astrophysics +1110.1128 Adaptation and Self-Organizing Systems +1110.3419 Operator Algebras +1111.0802 +1111.2365 Dynamical Systems +1111.2962 Algebraic Geometry +1111.3664 History and Overview +1201.0873 Phenomenology +1201.4531 Algebraic Geometry +1203.3168 Commutative Algebra +1203.5297 Cosmology and Nongalactic Astrophysics +1204.0727 Quantum Gases +1204.0777 +1204.2036 +1204.5143 History and Overview +1205.3300 Combinatorics +1205.4313 Group Theory +1205.5324 Information Theory +1205.5477 Optics +1205.6548 Optimization and Control +1205.6718 Group Theory +1206.3421 Computation +1206.6531 Theory +1207.0101 Earth and Planetary Astrophysics +1207.0479 +1207.2457 Superconductivity +1207.4896 Soft Condensed Matter +1207.5688 Physics and Society +1207.5931 Physics and Society +1208.1234 +1208.2254 +1208.4348 Algebraic Geometry +1209.3278 Experiment +1209.3283 +1209.6139 Networking and Internet Architecture +1210.0882 Functional Analysis +1210.1326 Information Theory +1210.1881 Soft Condensed Matter +1210.3469 Quantum Algebra +1210.5155 Commutative Algebra +1211.0531 Theory +1211.0604 +1211.2493 Instrumentation and Detectors +1211.3106 Combinatorics +1211.4017 +1211.4532 Combinatorics +1211.5498 Physics and Society +1211.5965 Differential Geometry +1211.6184 +1212.0216 Dynamical Systems +1212.5123 Category Theory +1301.1828 +1301.2875 Data Structures and Algorithms +1301.3769 Mesoscale and Nanoscale Physics +1301.3782 Superconductivity +1301.3996 Distributed, Parallel, and Cluster Computing +1301.4392 Mesoscale and Nanoscale Physics +1301.4689 Medical Physics +1301.5169 +1301.6980 Networking and Internet Architecture +1301.7245 Networking and Internet Architecture +1301.7248 Differential Geometry +1301.7452 Combinatorics +1302.0730 Methodology +1302.3014 Mesoscale and Nanoscale Physics +1303.0913 Phenomenology +1303.1918 Differential Geometry +1303.1947 Mesoscale and Nanoscale Physics +1303.2098 Phenomenology +1303.2481 Exactly Solvable and Integrable Systems +1303.3537 Quantum Gases +1303.6264 Mesoscale and Nanoscale Physics +1303.6402 +1304.3410 +1304.4143 +1304.5703 Soft Condensed Matter +1304.6012 Strongly Correlated Electrons +1304.6939 Superconductivity +1304.7224 Digital Libraries +1304.7398 Classical Analysis and ODEs +1304.7765 +1304.7899 Phenomenology +1305.0102 Differential Geometry +1305.0293 +1305.0484 Materials Science +1305.1209 Statistical Mechanics +1305.1276 Optimization and Control +1305.1448 Mesoscale and Nanoscale Physics +1305.2049 Optics +1305.3765 Lattice +1305.4127 Strongly Correlated Electrons +1305.4636 Phenomenology +1305.4999 Multimedia +1305.5439 Fluid Dynamics +1305.5516 +1305.5973 Materials Science +1305.6878 Numerical Analysis +1305.6984 Quantum Gases +1306.0572 Phenomenology +1306.1420 +1306.3428 Chaotic Dynamics +1306.4580 Materials Science +1306.4738 Materials Science +1306.5117 Group Theory +1306.5147 Statistical Mechanics +1306.6693 Phenomenology +1306.6786 Functional Analysis +1307.0139 +1307.0598 Mesoscale and Nanoscale Physics +1307.0730 +1307.0820 Cosmology and Nongalactic Astrophysics +1307.0856 Cosmology and Nongalactic Astrophysics +1307.0964 Functional Analysis +1307.1813 History and Philosophy of Physics +1307.2551 Theory +1307.3471 Materials Science +1307.3510 Quantum Gases +1307.3863 Computational Complexity +1307.4360 +1307.4684 Mesoscale and Nanoscale Physics +1307.4784 +1308.0301 Materials Science +1308.0533 Phenomenology +1308.0841 Networking and Internet Architecture +1308.0939 +1308.1294 Superconductivity +1308.2930 Systems and Control +1308.2958 Solar and Stellar Astrophysics +1308.4187 Biomolecules +1308.4464 Representation Theory +1308.4970 Theory +1308.5480 Information Theory +1308.5706 Information Theory +1308.6047 Solar and Stellar Astrophysics +1308.6566 Information Theory +1309.0100 Instrumentation and Methods for Astrophysics +1309.1720 Chaotic Dynamics +1309.1765 Strongly Correlated Electrons +1309.1814 Mesoscale and Nanoscale Physics +1309.2292 Mesoscale and Nanoscale Physics +1309.2875 Group Theory +1309.3010 Functional Analysis +1309.3025 Strongly Correlated Electrons +1309.4782 Theory +1309.4867 Strongly Correlated Electrons +1309.4996 Astrophysics of Galaxies +1309.5227 +1309.5869 Quantum Gases +1309.6167 Optics +1309.6329 Strongly Correlated Electrons +1309.7192 Algebraic Geometry +1309.7494 Theory +1310.0982 Classical Analysis and ODEs +1310.1072 Experiment +1310.1541 Dynamical Systems +1310.3097 Geometric Topology +1310.3742 +1310.3822 Cosmology and Nongalactic Astrophysics +1310.4148 Strongly Correlated Electrons +1310.4750 Optics +1310.5860 Group Theory +1310.5891 Instrumentation and Methods for Astrophysics +1310.6064 Strongly Correlated Electrons +1310.6122 Phenomenology +1310.6527 Experiment +1310.6538 Atomic and Molecular Clusters +1310.6909 Theory +1310.7170 Computer Vision and Pattern Recognition +1310.7998 Fluid Dynamics +1310.8145 Lattice +1310.8178 Solar and Stellar Astrophysics +1311.0507 Algebraic Geometry +1311.0853 +1311.0955 Graphics +1311.1066 Phenomenology +1311.1076 Experiment +1311.2048 Earth and Planetary Astrophysics +1311.2549 Information Theory +1311.3165 Atomic Physics +1311.3287 Learning +1311.3335 Theory +1311.3644 Rings and Algebras +1311.4038 Complex Variables +1311.4065 Classical Analysis and ODEs +1311.4472 Machine Learning +1311.4743 Analysis of PDEs +1311.5037 +1311.5349 +1311.5623 High Energy Astrophysical Phenomena +1311.5624 Superconductivity +1311.6060 Algebraic Geometry +1311.6151 Group Theory +1311.6817 Cosmology and Nongalactic Astrophysics +1311.7076 Metric Geometry +1311.7149 Mesoscale and Nanoscale Physics +1311.7360 +1311.7379 Theory +1312.0057 Optics +1312.0268 +1312.0744 Materials Science +1312.0956 Theory +1312.1104 Neurons and Cognition +1312.1288 Analysis of PDEs +1312.1299 Computational Complexity +1312.1325 Number Theory +1312.1830 Information Theory +1312.2004 General Finance +1312.2006 Cosmology and Nongalactic Astrophysics +1312.2016 Number Theory +1312.2027 Combinatorics +1312.2028 +1312.2029 Mesoscale and Nanoscale Physics +1312.2030 Networking and Internet Architecture +1312.2033 Phenomenology +1312.2036 Combinatorics +1312.2037 Probability +1312.2038 Numerical Analysis +1312.2040 Number Theory +1312.2046 Probability +1312.2047 Systems and Control +1312.2049 Optics +1312.2051 Combinatorics +1312.2052 Networking and Internet Architecture +1312.2059 +1312.2060 Systems and Control +1312.2061 Computer Vision and Pattern Recognition +1312.2062 Networking and Internet Architecture +1312.2063 Information Theory +1312.2064 Logic +1312.2065 Databases +1312.2069 Databases +1312.2072 Phenomenology +1312.2073 Phenomenology +1312.2076 Differential Geometry +1312.2078 Differential Geometry +1312.2079 Methodology +1312.2080 Combinatorics +1312.2083 Software Engineering +1312.2085 Statistical Mechanics +1312.2087 Computation and Language +1312.2091 Networking and Internet Architecture +1312.2094 Social and Information Networks +1312.2096 Social and Information Networks +1312.2097 Quantum Algebra +1312.2098 Methodology +1312.2099 History and Overview +1312.2100 History and Overview +1312.2103 General Topology +1312.2104 Analysis of PDEs +1312.2105 Astrophysics of Galaxies +1312.2107 Superconductivity +1312.2108 Networking and Internet Architecture +1312.2113 Combinatorics +1312.2114 Combinatorics +1312.2115 Theory +1312.2116 Functional Analysis +1312.2121 Software Engineering +1312.2125 History and Overview +1312.2126 Analysis of PDEs +1312.2128 Probability +1312.2129 Applications +1312.2130 Optimization and Control +1312.2131 Optimization and Control +1312.2132 Systems and Control +1312.2133 History and Overview +1312.2136 Analysis of PDEs +1312.2137 Learning +1312.2138 Classical Analysis and ODEs +1312.2140 Computational Engineering, Finance, and Science +1312.2141 Computational Complexity +1312.2143 Computational Complexity +1312.2151 Probability +1312.2153 Probability +1312.2154 Social and Information Networks +1312.2156 Geometric Topology +1312.2161 Symplectic Geometry +1312.2163 Information Theory +1312.2165 Number Theory +1312.2166 Probability +1312.2168 Algebraic Geometry +1312.2170 Combinatorics +1312.2172 Classical Analysis and ODEs +1312.2179 General Finance +1312.2180 Fluid Dynamics +1312.2181 Strongly Correlated Electrons +1312.2182 Other Computer Science +1312.2184 Analysis of PDEs +1312.2185 Computational Geometry +1312.2186 Differential Geometry +1312.2188 Networking and Internet Architecture +1312.2193 Lattice +1312.2194 Computational Geometry +1312.2196 Spectral Theory +1312.2201 Probability +1312.2203 Computational Engineering, Finance, and Science +1312.2206 Classical Analysis and ODEs +1312.2209 Discrete Mathematics +1312.2216 Computers and Society +1312.2218 Programming Languages +1312.2219 Spectral Theory +1312.2223 Rings and Algebras +1312.2225 Networking and Internet Architecture +1312.2230 Geometric Topology +1312.2232 Information Theory +1312.2233 Combinatorics +1312.2237 Social and Information Networks +1312.2239 Probability +1312.2241 Networking and Internet Architecture +1312.2242 Artificial Intelligence +1312.2243 Software Engineering +1312.2245 Combinatorics +1312.2246 Computers and Society +1312.2247 Combinatorics +1312.2248 Methodology +1312.2249 Computer Vision and Pattern Recognition +1312.2254 Logic +1312.2258 Materials Science +1312.2260 +1312.2270 Fluid Dynamics +1312.2271 +1312.2278 Fluid Dynamics +1312.2287 Information Theory +1312.2293 Geometric Topology +1312.2296 Solar and Stellar Astrophysics +1312.2302 Trading and Market Microstructure +1312.2306 Performance +1312.2309 Numerical Analysis +1312.2314 Lattice +1312.2318 Combinatorics +1312.2319 Software Engineering +1312.2323 Software Engineering +1312.2324 Probability +1312.2325 Software Engineering +1312.2327 Software Engineering +1312.2328 Metric Geometry +1312.2329 Mesoscale and Nanoscale Physics +1312.2331 Accelerator Physics +1312.2332 History and Philosophy of Physics +1312.2336 Disordered Systems and Neural Networks +1312.2337 Algebraic Topology +1312.2338 Information Theory +1312.2344 Software Engineering +1312.2350 Lattice +1312.2351 Optimization and Control +1312.2353 Databases +1312.2355 Databases +1312.2356 Optimization and Control +1312.2362 General Finance +1312.2363 Applications +1312.2364 Applications +1312.2365 +1312.2366 Neural and Evolutionary Computing +1312.2367 Computational Complexity +1312.2368 Optimization and Control +1312.2374 Lattice +1312.2375 Information Retrieval +1312.2378 Databases +1312.2381 Data Structures and Algorithms +1312.2382 Probability +1312.2383 Computer Vision and Pattern Recognition +1312.2386 Populations and Evolution +1312.2387 Analysis of PDEs +1312.2393 Applications +1312.2395 Functional Analysis +1312.2398 Probability +1312.2399 Astrophysics of Galaxies +1312.2401 Other Condensed Matter +1312.2403 Instrumentation and Methods for Astrophysics +1312.2406 Computers and Society +1312.2414 Instrumentation and Methods for Astrophysics +1312.2425 Numerical Analysis +1312.2426 +1312.2433 Probability +1312.2439 Astrophysics of Galaxies +1312.2443 Representation Theory +1312.2447 General Literature +1312.2450 Solar and Stellar Astrophysics +1312.2451 Learning +1312.2457 Information Theory +1312.2461 Analysis of PDEs +1312.2463 Analysis of PDEs +1312.2464 Solar and Stellar Astrophysics +1312.2466 Networking and Internet Architecture +1312.2467 Phenomenology +1312.2468 Algebraic Geometry +1312.2474 Algebraic Topology +1312.2476 Analysis of PDEs +1312.2485 Combinatorics +1312.2489 Accelerator Physics +1312.2492 Superconductivity +1312.2493 Probability +1312.2495 Quantum Algebra +1312.2498 General Mathematics +1312.2500 Metric Geometry +1312.2501 Distributed, Parallel, and Cluster Computing +1312.2509 Analysis of PDEs +1312.2510 Dynamical Systems +1312.2513 Solar and Stellar Astrophysics +1312.2516 Analysis of PDEs +1312.2518 Classical Analysis and ODEs +1312.2519 Numerical Analysis +1312.2521 Probability +1312.2525 High Energy Astrophysical Phenomena +1312.2526 Robotics +1312.2527 Superconductivity +1312.2530 Computers and Society +1312.2531 Metric Geometry +1312.2534 Strongly Correlated Electrons +1312.2539 Cryptography and Security +1312.2540 Number Theory +1312.2541 Theory +1312.2549 Computational Geometry +1312.2556 Computation +1312.2558 +1312.2560 Medical Physics +1312.2563 Quantum Gases +1312.2569 Number Theory +1312.2570 Distributed, Parallel, and Cluster Computing +1312.2572 Algebraic Geometry +math/0406397 Differential Geometry +math/9803114 Geometric Topology +0706.2965 Superconductivity +0712.4037 Commutative Algebra +0803.3930 +0807.4490 +0808.1770 +0901.4676 Theory +0903.0354 Analysis of PDEs +0905.0851 Differential Geometry +0906.0189 Differential Geometry +0909.0561 Group Theory +0909.0807 Differential Geometry +0909.2851 Differential Geometry +0912.0630 Physics and Society +0912.3948 Dynamical Systems +1001.0126 +1001.3467 Phenomenology +1003.5639 Commutative Algebra +1003.5674 Commutative Algebra +1003.5677 Commutative Algebra +1003.5678 Commutative Algebra +1003.5689 Commutative Algebra +1005.5523 Commutative Algebra +1007.3089 Classical Analysis and ODEs +1010.5941 Probability +1012.4921 Methodology +1101.0626 Algebraic Geometry +1101.1594 Number Theory +1102.5645 Mesoscale and Nanoscale Physics +1104.4571 Statistical Mechanics +1105.4014 +1105.4278 Cellular Automata and Lattice Gases +1106.0781 Cosmology and Nongalactic Astrophysics +1106.1754 Classical Analysis and ODEs +1106.2033 Functional Analysis +1106.4956 Algebraic Geometry +1107.1066 Combinatorics +1107.2223 Populations and Evolution +1107.3686 Algebraic Topology +1107.4067 Machine Learning +1108.1471 Functional Analysis +1108.3441 Number Theory +1109.1900 Analysis of PDEs +1109.3523 Quantum Algebra +1109.4429 +1110.3187 +1110.3647 Analysis of PDEs +1111.3112 Functional Analysis +1111.3885 Probability +1111.4373 Strongly Correlated Electrons +1112.1302 Functional Analysis +1112.3319 Phenomenology +1112.6012 Logic +1201.0714 Quantum Gases +1201.4137 Differential Geometry +1201.4856 Logic in Computer Science +1202.1365 Geometric Topology +1202.2428 +1202.5898 Materials Science +1203.4650 Geometric Topology +1203.4672 Geometric Topology +1203.5177 Probability +1203.5300 Functional Analysis +1203.5430 Fluid Dynamics +1203.6341 Phenomenology +1204.0072 Information Theory +1204.0521 +1204.1800 Learning +1204.3133 Dynamical Systems +1204.4710 Learning +1205.0165 +1205.0835 Information Theory +1205.3068 Networking and Internet Architecture +1205.3299 Superconductivity +1205.3532 Populations and Evolution +1205.3619 Classical Analysis and ODEs +1205.3804 Theory +1205.3852 Functional Analysis +1205.4535 +1205.5175 +1205.5980 +1206.0466 Phenomenology +1206.2232 Quantum Gases +1206.2384 Discrete Mathematics +1206.3315 Strongly Correlated Electrons +1206.3637 Probability +1206.4359 Physics and Society +1207.0277 +1207.0805 Computer Vision and Pattern Recognition +1207.1022 Soft Condensed Matter +1207.1585 +1207.2380 Algebraic Geometry +1207.2516 Phenomenology +1207.4761 Dynamical Systems +1207.4797 Chemical Physics +1207.5128 Quantum Gases +1207.5259 Learning +1207.6270 Statistical Mechanics +1208.1043 Popular Physics +1208.2324 Theory +1208.4099 Strongly Correlated Electrons +1208.4542 Materials Science +1208.5306 Superconductivity +1208.5705 +1208.6397 Combinatorics +1209.0921 +1209.1351 Physics and Society +1209.3319 Statistical Mechanics +1209.3671 +1209.4724 Physics and Society +1209.4788 Strongly Correlated Electrons +1209.5623 Analysis of PDEs +1210.0113 +1210.1798 Lattice +1210.2861 Accelerator Physics +1210.2909 Cosmology and Nongalactic Astrophysics +1210.3002 Superconductivity +1210.3162 +1210.3476 Phenomenology +1210.3500 Probability +1210.3919 Strongly Correlated Electrons +1210.4946 +1210.5379 Atomic Physics +1210.5505 +1210.5882 Commutative Algebra +1210.6327 Experiment +1210.6701 Quantum Gases +1210.8002 +1211.0192 Functional Analysis +1211.0384 Mesoscale and Nanoscale Physics +1211.1687 Strongly Correlated Electrons +1211.1703 Computer Science and Game Theory +1211.4244 History and Philosophy of Physics +1211.4301 Commutative Algebra +1211.5228 Phenomenology +1212.0720 Commutative Algebra +1212.1163 Mesoscale and Nanoscale Physics +1212.1190 +1212.1328 Discrete Mathematics +1212.1553 Dynamical Systems +1212.1768 Algebraic Geometry +1212.3376 Information Theory +1212.3882 +1212.4374 Materials Science +1212.5079 Phenomenology +1212.5210 Programming Languages +1212.5363 Mesoscale and Nanoscale Physics +1212.5454 Computer Vision and Pattern Recognition +1212.5798 Classical Analysis and ODEs +1212.6035 Quantum Gases +1212.6093 Combinatorics +1212.6187 +1301.0077 +1301.0394 Complex Variables +1301.2706 Physics and Society +1301.2737 +1301.2836 High Energy Astrophysical Phenomena +1301.3052 Mesoscale and Nanoscale Physics +1301.3057 Algebraic Geometry +1301.5139 Logic in Computer Science +1301.6031 Mesoscale and Nanoscale Physics +1301.6108 Mesoscale and Nanoscale Physics +1301.7257 Cryptography and Security +1301.7302 Phenomenology +1302.0492 Medical Physics +1302.1470 Mesoscale and Nanoscale Physics +1302.1814 Analysis of PDEs +1302.2335 Operator Algebras +1302.2726 +1302.4163 Rings and Algebras +1302.4235 Combinatorics +1302.4312 Superconductivity +1302.4729 Mesoscale and Nanoscale Physics +1302.5176 +1302.5337 Machine Learning +1302.7001 Mesoscale and Nanoscale Physics +1303.0087 Analysis of PDEs +1303.0491 +1303.0512 Complex Variables +1303.2332 Differential Geometry +1303.2727 Strongly Correlated Electrons +1303.2927 Experiment +1303.4061 Combinatorics +1303.4088 Rings and Algebras +1303.4211 Statistical Mechanics +1303.4348 Information Theory +1303.4464 Rings and Algebras +1303.5581 Theory +1303.5920 +1303.6017 Information Theory +1303.6079 Analysis of PDEs +1303.6393 Statistical Mechanics +1303.6445 Numerical Analysis +1303.6502 Geometric Topology +1303.6677 +1303.6873 Probability +1303.7085 Cryptography and Security +1303.7190 Materials Science +1303.7310 Computation and Language +1303.7430 Artificial Intelligence +1304.0001 Information Theory +1304.0002 Information Theory +1304.0003 Information Theory +1304.0012 Distributed, Parallel, and Cluster Computing +1304.0013 +1304.0019 Computer Vision and Pattern Recognition +1304.0025 +1304.0026 Algebraic Geometry +1304.0030 Optimization and Control +1304.0031 Neurons and Cognition +1304.0032 Differential Geometry +1304.0038 Popular Physics +1304.0041 Operator Algebras +1304.0042 +1304.0048 Analysis of PDEs +1304.0051 +1304.0054 +1304.0055 Optimization and Control +1304.0059 Soft Condensed Matter +1304.0061 Combinatorics +1304.0063 Commutative Algebra +1304.0064 Mesoscale and Nanoscale Physics +1304.0067 Complex Variables +1304.0069 Probability +1304.0070 Combinatorics +1304.0072 Materials Science +1304.0074 Mesoscale and Nanoscale Physics +1304.0076 Networking and Internet Architecture +1304.0078 Mesoscale and Nanoscale Physics +1304.0080 Phenomenology +1304.0081 Combinatorics +1304.0083 Combinatorics +1304.0085 Solar and Stellar Astrophysics +1304.0088 Algebraic Geometry +1304.0089 Combinatorics +1304.0090 Neural and Evolutionary Computing +1304.0091 Algebraic Geometry +1304.0092 Algebraic Geometry +1304.0093 Algebraic Geometry +1304.0094 Algebraic Geometry +1304.0096 Combinatorics +1304.0098 Algebraic Geometry +1304.0099 Algebraic Geometry +1304.0106 Logic +1304.0107 Superconductivity +1304.0110 Information Theory +1304.0111 Instrumentation and Detectors +1304.0112 Geometric Topology +1304.0116 Software Engineering +1304.0122 Quantitative Methods +1304.0124 Mesoscale and Nanoscale Physics +1304.0125 Combinatorics +1304.0131 Mesoscale and Nanoscale Physics +1304.0132 Populations and Evolution +1304.0134 Operator Algebras +1304.0140 Networking and Internet Architecture +1304.0144 Materials Science +1304.0145 Artificial Intelligence +1304.0148 Numerical Analysis +1304.0151 Computation +1304.0161 Dynamical Systems +1304.0162 Algebraic Geometry +1304.0167 Algebraic Geometry +1304.0168 Classical Analysis and ODEs +1304.0170 Probability +1304.0172 Algebraic Geometry +1304.0174 Algebraic Geometry +1304.0175 Probability +1304.0176 Functional Analysis +1304.0177 Algebraic Geometry +1304.0178 Algebraic Geometry +1304.0179 Metric Geometry +1304.0180 Algebraic Geometry +1304.0181 Algebraic Geometry +1304.0184 Differential Geometry +1304.0185 Discrete Mathematics +1304.0186 +1304.0189 Probability +1304.0192 Mesoscale and Nanoscale Physics +1304.0196 Commutative Algebra +1304.0197 Differential Geometry +1304.0198 Commutative Algebra +1304.0200 Commutative Algebra +1304.0201 Commutative Algebra +1304.0203 Number Theory +1304.0205 +1304.0206 Classical Analysis and ODEs +1304.0207 Information Theory +1304.0208 History and Philosophy of Physics +1304.0210 +1304.0221 Combinatorics +1304.0223 Algebraic Geometry +1304.0224 Algebraic Geometry +1304.0225 Differential Geometry +1304.0226 Algebraic Geometry +1304.0228 Algebraic Geometry +1304.0229 Rings and Algebras +1304.0230 Algebraic Geometry +1304.0231 Algebraic Geometry +1304.0232 Rings and Algebras +1304.0233 Differential Geometry +1304.0234 +1304.0235 Instrumentation and Methods for Astrophysics +1304.0237 Complex Variables +1304.0240 Earth and Planetary Astrophysics +1304.0241 Space Physics +1304.0242 Combinatorics +1304.0243 Optics +1304.0244 Probability +1304.0245 Strongly Correlated Electrons +1304.0247 Computational Geometry +1304.0249 Algebraic Geometry +1304.0250 Probability +1304.0251 Phenomenology +1304.0252 Complex Variables +1304.0254 Computers and Society +1304.0260 Information Theory +1304.0263 Information Theory +1304.0267 Distributed, Parallel, and Cluster Computing +1304.0270 Information Theory +1304.0272 Logic +1304.0280 Algebraic Geometry +1304.0283 +1304.0284 Analysis of PDEs +1304.0288 Materials Science +1304.0289 Phenomenology +1304.0293 Phenomenology +1304.0294 Probability +1304.0295 Functional Analysis +1304.0296 Functional Analysis +1304.0301 +1304.0306 Lattice +1304.0307 +1304.0310 General Physics +1304.0311 Accelerator Physics +1304.0312 Lattice +1304.0321 Systems and Control +1304.0324 High Energy Astrophysical Phenomena +1304.0326 Algebraic Geometry +1304.0327 Astrophysics of Galaxies +1304.0328 Numerical Analysis +1304.0329 Numerical Analysis +1304.0331 Algebraic Geometry +1304.0334 Analysis of PDEs +1304.0336 Materials Science +1304.0338 Optimization and Control +1304.0340 Optimization and Control +1304.0341 Experiment +1304.0342 Molecular Networks +1304.0348 High Energy Astrophysical Phenomena +1304.0350 Algebraic Geometry +1304.0352 Algebraic Topology +1304.0355 Information Theory +1304.0366 Theory +1304.0367 Geometric Topology +1304.0370 Instrumentation and Methods for Astrophysics +1304.0373 Instrumentation and Methods for Astrophysics +1304.0374 Software Engineering +1304.0375 Optimization and Control +1304.0376 Functional Analysis +1304.0377 Number Theory +1304.0379 Mesoscale and Nanoscale Physics +1304.0384 Solar and Stellar Astrophysics +1304.0385 +1304.0390 +1304.0394 Differential Geometry +1304.0395 Solar and Stellar Astrophysics +1304.0396 Cosmology and Nongalactic Astrophysics +1304.0401 Instrumentation and Methods for Astrophysics +1304.0402 Instrumentation and Detectors +1304.0404 Theory +1304.0405 General Physics +1304.0411 Commutative Algebra +1304.0412 Physics Education +1304.0414 Solar and Stellar Astrophysics +1304.0419 Social and Information Networks +1304.0420 General Mathematics +1304.0421 Computer Vision and Pattern Recognition +1304.0422 Information Theory +1304.0423 Statistics Theory +1304.0427 +1304.0432 +cond-mat/0406520 Superconductivity +cond-mat/0505033 Statistical Mechanics +cond-mat/0506262 Superconductivity +cs/0403041 Logic in Computer Science +gr-qc/0605138 +math-ph/0612044 +math/0108121 Combinatorics +math/0304159 Algebraic Geometry +math/0410373 Combinatorics +math/0505255 Combinatorics +math/0507497 Combinatorics +math/0609071 Combinatorics +math/0610977 Combinatorics +math/0702856 Algebraic Geometry +math/9708212 Commutative Algebra +math/9807186 Rings and Algebras +physics/0505137 Physics and Society +q-bio/0505007 Molecular Networks +quant-ph/0605218 +0712.4188 Phenomenology +0808.1165 Phenomenology +0903.2383 Number Theory +0907.0632 Superconductivity +0909.5002 Geometric Topology +1002.1010 Statistical Finance +1003.0908 Operator Algebras +1004.5325 +1007.3911 +1009.1044 Optics +1011.0139 Phenomenology +1012.1959 Probability +1012.3255 +1012.5429 +1102.2717 +1102.3519 Representation Theory +1102.4475 Representation Theory +1103.1884 Rings and Algebras +1103.3963 Cosmology and Nongalactic Astrophysics +1103.4555 Combinatorics +1104.5330 Computational Physics +1105.1527 +1105.5948 Algebraic Topology +1106.0087 +1106.0717 Cosmology and Nongalactic Astrophysics +1106.5073 High Energy Astrophysical Phenomena +1106.5770 +1107.2840 Strongly Correlated Electrons +1107.2907 Strongly Correlated Electrons +1108.2336 Geometric Topology +1108.3024 Classical Analysis and ODEs +1109.3631 General Physics +1110.0229 Quantum Algebra +1110.6563 Logic +1111.0756 Atmospheric and Oceanic Physics +1111.0781 +1111.4365 Mesoscale and Nanoscale Physics +1111.5210 +1112.1028 Phenomenology +1112.2530 Strongly Correlated Electrons +1112.3708 Representation Theory +1112.5367 +1201.0603 Atmospheric and Oceanic Physics +1201.2966 Superconductivity +1201.3387 +1201.6088 Phenomenology +1201.6286 +1201.6391 Differential Geometry +1203.2913 Algebraic Geometry +1203.3054 +1203.6156 Analysis of PDEs +1203.6325 Strongly Correlated Electrons +1204.1098 Data Structures and Algorithms +1204.1161 Dynamical Systems +1204.1666 Classical Analysis and ODEs +1204.2207 +1204.2745 Lattice +1204.2751 +1204.5848 +1205.0604 Superconductivity +1205.0907 Analysis of PDEs +1205.1247 Operator Algebras +1205.1281 Data Structures and Algorithms +1205.1328 +1205.1372 +1205.2123 Statistics Theory +1205.2401 +1205.3578 Analysis of PDEs +1205.4862 +1205.5876 Combinatorics +1205.5929 Adaptation and Self-Organizing Systems +1206.0319 Optimization and Control +1206.0458 Geometric Topology +1206.2045 Superconductivity +1206.2401 Functional Analysis +1206.3536 Artificial Intelligence +1206.4358 Data Analysis, Statistics and Probability +1206.5734 +1207.0146 Soft Condensed Matter +1207.0172 Number Theory +1207.0726 Mesoscale and Nanoscale Physics +1207.2012 Numerical Analysis +1207.3511 +1207.4574 Subcellular Processes +1207.4856 Representation Theory +1207.5234 Strongly Correlated Electrons +1207.6948 Theory +1207.7124 Strongly Correlated Electrons +1207.7247 Functional Analysis +1208.2829 General Topology +1208.3392 +1208.3990 +1208.5133 Mesoscale and Nanoscale Physics +1208.6486 Pricing of Securities +1209.0424 Dynamical Systems +1209.0722 Lattice +1209.1634 High Energy Astrophysical Phenomena +1209.1674 Superconductivity +1209.1861 Representation Theory +1209.1984 Mesoscale and Nanoscale Physics +1209.2120 Cosmology and Nongalactic Astrophysics +1209.2150 High Energy Astrophysical Phenomena +1209.2155 Theory +1209.2316 Numerical Analysis +1209.3960 Algebraic Geometry +1209.4696 +1209.5190 Statistical Finance +1209.5550 Algebraic Geometry +1209.5643 +1210.0133 Strongly Correlated Electrons +1210.0770 Applications +1210.1043 Experiment +1210.1242 Strongly Correlated Electrons +1210.1591 Theory +1210.1731 +1210.4117 Cosmology and Nongalactic Astrophysics +1210.4546 High Energy Astrophysical Phenomena +1210.5723 Analysis of PDEs +1210.6121 Strongly Correlated Electrons +1210.6551 Algebraic Geometry +1210.6920 +1210.7053 Machine Learning +1210.7063 Analysis of PDEs +1210.7080 Phenomenology +1210.7264 +1211.0030 Theory +1211.0719 Physics and Society +1211.0805 Atmospheric and Oceanic Physics +1211.2094 Soft Condensed Matter +1211.2413 Theory +1211.2622 Analysis of PDEs +1211.2942 Combinatorics +1211.4183 +1211.4616 Physics and Society +1211.4761 Superconductivity +1211.4821 Disordered Systems and Neural Networks +1211.4889 Social and Information Networks +1211.6356 Statistical Mechanics +1211.6357 Number Theory +1212.1688 Solar and Stellar Astrophysics +1212.2590 +1212.2625 Theory +1212.2942 Materials Science +1212.3078 Biological Physics +1212.3099 Mesoscale and Nanoscale Physics +1212.4393 Optics +1212.5252 Computational Engineering, Finance, and Science +1212.5918 Mesoscale and Nanoscale Physics +1301.0070 Combinatorics +1301.0661 Theory +1301.0677 Metric Geometry +1301.1004 Classical Analysis and ODEs +1301.1252 Disordered Systems and Neural Networks +1301.1478 Mesoscale and Nanoscale Physics +1301.2818 Mesoscale and Nanoscale Physics +1301.3013 Phenomenology +1301.3065 Theory +1301.3184 Mesoscale and Nanoscale Physics +1301.3360 +1301.4360 Probability +1301.5315 Cosmology and Nongalactic Astrophysics +1301.5372 Geometric Topology +1301.5688 Strongly Correlated Electrons +1301.5816 Phenomenology +1301.6173 +1302.0175 +1302.0494 Computer Vision and Pattern Recognition +1302.1330 +1302.1352 Mesoscale and Nanoscale Physics +1302.1757 Phenomenology +1302.1767 Pattern Formation and Solitons +1302.1917 Cosmology and Nongalactic Astrophysics +1302.2209 Cosmology and Nongalactic Astrophysics +1302.3058 Dynamical Systems +1302.3939 Phenomenology +1302.4356 +1302.4487 Numerical Analysis +1302.5239 +1302.5597 Analysis of PDEs +1302.7157 Instrumentation and Methods for Astrophysics +1303.0044 Logic in Computer Science +1303.2939 General Physics +1303.3136 Cosmology and Nongalactic Astrophysics +1303.3946 Mesoscale and Nanoscale Physics +1303.4424 Classical Analysis and ODEs +1303.5246 Number Theory +1303.5964 Probability +1303.6077 Medical Physics +1303.6299 Strongly Correlated Electrons +1303.6820 Combinatorics +1303.7092 Statistics Theory +1303.7459 Logic in Computer Science +1304.0258 Theory +1304.0300 Materials Science +1304.0406 Analysis of PDEs +1304.1352 +1304.1724 Analysis of PDEs +1304.1733 Statistics Theory +1304.1813 Differential Geometry +1304.2002 +1304.2194 Phenomenology +1304.2218 Mesoscale and Nanoscale Physics +1304.2297 Analysis of PDEs +1304.3200 Neural and Evolutionary Computing +1304.3577 Genomics +1304.3687 K-Theory and Homology +1304.3721 Atomic Physics +1304.3722 General Finance +1304.3729 Probability +1304.3731 Complex Variables +1304.3738 Populations and Evolution +1304.3740 Algebraic Geometry +1304.3741 Probability +1304.3742 Computers and Society +1304.3745 Learning +1304.3747 Social and Information Networks +1304.3748 Biological Physics +1304.3751 Combinatorics +1304.3755 Astrophysics of Galaxies +1304.3758 Multimedia +1304.3762 Artificial Intelligence +1304.3763 Artificial Intelligence +1304.3767 Performance +1304.3769 Methodology +1304.3771 Operating Systems +1304.3774 Combinatorics +1304.3778 Systems and Control +1304.3779 Neural and Evolutionary Computing +1304.3786 Probability +1304.3787 Phenomenology +1304.3790 Analysis of PDEs +1304.3792 Neural and Evolutionary Computing +1304.3795 Information Theory +1304.3802 K-Theory and Homology +1304.3804 Performance +1304.3806 Differential Geometry +1304.3811 Number Theory +1304.3813 Differential Geometry +1304.3816 Computational Complexity +1304.3819 Social and Information Networks +1304.3826 Information Theory +1304.3827 Biological Physics +1304.3828 Fluid Dynamics +1304.3831 Phenomenology +1304.3834 Functional Analysis +1304.3836 Rings and Algebras +1304.3837 Rings and Algebras +1304.3840 Learning +1304.3846 Artificial Intelligence +1304.3849 Artificial Intelligence +1304.3850 Information Theory +1304.3851 Artificial Intelligence +1304.3852 Artificial Intelligence +1304.3853 Artificial Intelligence +1304.3855 Artificial Intelligence +1304.3856 Artificial Intelligence +1304.3857 Artificial Intelligence +1304.3859 Artificial Intelligence +1304.3860 Artificial Intelligence +1304.3864 +1304.3865 Information Theory +1304.3866 History and Overview +1304.3867 Representation Theory +1304.3874 Information Theory +1304.3877 Systems and Control +1304.3879 Artificial Intelligence +1304.3880 Neurons and Cognition +1304.3886 Information Theory +1304.3890 History and Philosophy of Physics +1304.3891 +1304.3892 Neural and Evolutionary Computing +1304.3894 Number Theory +1304.3897 Classical Analysis and ODEs +1304.3904 Networking and Internet Architecture +1304.3905 Phenomenology +1304.3906 Commutative Algebra +1304.3907 Phenomenology +1304.3908 Molecular Networks +1304.3910 Functional Analysis +1304.3911 Information Theory +1304.3912 Software Engineering +1304.3915 Computer Vision and Pattern Recognition +1304.3918 Statistics Theory +1304.3919 Numerical Analysis +1304.3924 Digital Libraries +1304.3931 Systems and Control +1304.3944 Emerging Technologies +1304.3948 Combinatorics +1304.3951 Analysis of PDEs +1304.3960 Plasma Physics +1304.3966 Representation Theory +1304.3972 Systems and Control +1304.3974 Chaotic Dynamics +1304.3977 Networking and Internet Architecture +1304.3978 Distributed, Parallel, and Cluster Computing +1304.3980 Distributed, Parallel, and Cluster Computing +1304.3992 Distributed, Parallel, and Cluster Computing +1304.3999 Artificial Intelligence +1304.4001 Phenomenology +1304.4002 Distributed, Parallel, and Cluster Computing +1304.4003 Information Theory +1304.4006 Molecular Networks +1304.4011 Group Theory +1304.4015 Optimization and Control +1304.4019 History and Philosophy of Physics +1304.4027 Solar and Stellar Astrophysics +1304.4041 Computer Vision and Pattern Recognition +1304.4045 Computers and Society +1304.4047 Computers and Society +1304.4048 +1304.4049 Solar and Stellar Astrophysics +1304.4050 Materials Science +1304.4051 Multiagent Systems +1304.4058 Social and Information Networks +1304.4066 Applications +1304.4069 +1304.4073 Data Structures and Algorithms +1304.4075 Fluid Dynamics +1304.4079 Category Theory +1304.4080 Fluid Dynamics +1304.4090 Optimization and Control +1304.4091 Logic in Computer Science +1304.4105 Superconductivity +1304.4108 Combinatorics +1304.4112 Computer Vision and Pattern Recognition +1304.4113 Statistical Mechanics +1304.4117 Operator Algebras +1304.4119 Digital Libraries +1304.4120 Biological Physics +1304.4121 Earth and Planetary Astrophysics +1304.4137 Social and Information Networks +1304.4140 Operator Algebras +1304.4142 Operator Algebras +1304.4149 Mesoscale and Nanoscale Physics +1304.4153 High Energy Astrophysical Phenomena +1304.4158 Statistical Mechanics +1304.4159 Logic in Computer Science +1304.4162 Numerical Analysis +1304.4163 Solar and Stellar Astrophysics +1304.4170 Chaotic Dynamics +1304.4172 Cosmology and Nongalactic Astrophysics +1304.4175 Solar and Stellar Astrophysics +1304.4177 +1304.4178 Analysis of PDEs +1304.4179 Differential Geometry +1304.4183 Statistical Mechanics +1304.4184 Databases +1304.4185 +1304.4187 Databases +1304.4189 Algebraic Geometry +1304.4190 General Physics +1304.4191 Numerical Analysis +1304.4193 Phenomenology +1304.4199 Information Theory +1304.4205 +1304.4207 Discrete Mathematics +1304.4210 Representation Theory +1304.4216 Biomolecules +cond-mat/9810376 Mesoscale and Nanoscale Physics +math/0703858 Statistics Theory +quant-ph/0008124 +quant-ph/0105114 +quant-ph/0109038 +0806.1617 Strongly Correlated Electrons +0810.5185 Representation Theory +0810.5190 Representation Theory +0903.0958 Representation Theory +0903.2917 Operator Algebras +0904.0541 Operator Algebras +0904.2519 Differential Geometry +0910.1902 Strongly Correlated Electrons +1005.4166 Complex Variables +1006.1095 Metric Geometry +1006.1101 Representation Theory +1006.2745 Analysis of PDEs +1006.2784 Complex Variables +1006.5691 Probability +1007.0642 Cryptography and Security +1008.1729 Probability +1009.5221 Differential Geometry +1011.3492 Complex Variables +1011.5642 Combinatorics +1012.1686 Differential Geometry +1012.3210 Theory +1101.0539 Strongly Correlated Electrons +1101.5192 High Energy Astrophysical Phenomena +1102.0589 +1105.0301 Statistical Mechanics +1106.2820 Materials Science +1106.3622 Combinatorics +1106.5800 Algebraic Geometry +1106.6302 Geometric Topology +1107.2116 Theory +1107.3865 Representation Theory +1109.1636 +1109.3113 +1109.4073 Operator Algebras +1110.4331 +1110.6338 Algebraic Geometry +1111.1294 Commutative Algebra +1111.2433 Mesoscale and Nanoscale Physics +1112.2150 Phenomenology +1112.3748 History and Philosophy of Physics +1201.1095 Formal Languages and Automata Theory +1202.0401 Combinatorics +1202.5685 Information Theory +1202.6396 Experiment +1203.3618 Combinatorics +1203.3959 Analysis of PDEs +1203.3976 Experiment +1203.4986 Phenomenology +1204.0696 Experiment +1204.0821 Experiment +1204.1088 Experiment +1204.1411 Experiment +1204.1643 Experiment +1204.1724 Atomic Physics +1204.5268 Metric Geometry +1204.5479 Strongly Correlated Electrons +1205.0227 +1205.0884 +1205.2013 Pricing of Securities +1205.2477 Materials Science +1205.3563 Metric Geometry +1205.4916 History and Philosophy of Physics +1206.1516 Strongly Correlated Electrons +1206.3388 Other Condensed Matter +1206.4906 Optics +1206.5921 Atomic Physics +1206.6127 Theory +1207.1186 Soft Condensed Matter +1207.1984 Theory +1208.0483 Commutative Algebra +1208.2421 Mesoscale and Nanoscale Physics +1208.3023 Mesoscale and Nanoscale Physics +1208.3064 Soft Condensed Matter +1209.0415 High Energy Astrophysical Phenomena +1209.0826 Mesoscale and Nanoscale Physics +1209.4181 Cosmology and Nongalactic Astrophysics +1209.4366 High Energy Astrophysical Phenomena +1209.5277 Functional Analysis +1209.6411 Strongly Correlated Electrons +1210.0921 Strongly Correlated Electrons +1210.3449 Information Theory +1210.3911 Instrumentation and Methods for Astrophysics +1210.6174 Algebraic Geometry +1210.6289 Experiment +1210.6462 Optics +1210.6961 Mesoscale and Nanoscale Physics +1210.7015 Theory +1210.7243 Theory +1210.7583 Populations and Evolution +1211.0289 Phenomenology +1211.2771 Cosmology and Nongalactic Astrophysics +1211.3006 Networking and Internet Architecture +1211.5419 Mesoscale and Nanoscale Physics +1211.5512 Lattice +1212.1308 Superconductivity +1212.2520 Disordered Systems and Neural Networks +1212.3354 Theory +1212.4589 Networking and Internet Architecture +1212.5686 Classical Analysis and ODEs +1301.0292 Group Theory +1301.1035 High Energy Astrophysical Phenomena +1301.1173 High Energy Astrophysical Phenomena +1301.2428 Strongly Correlated Electrons +1301.2833 Mesoscale and Nanoscale Physics +1301.4085 Representation Theory +1301.4452 Lattice +1301.4571 Differential Geometry +1301.4670 Atomic Physics +1301.5046 Symbolic Computation +1301.5073 Spectral Theory +1301.5189 Cosmology and Nongalactic Astrophysics +1301.5277 Genomics +1301.5317 Materials Science +1301.5326 Theory +1301.5331 Probability +1301.5332 Machine Learning +1301.5334 Information Theory +1301.5336 Group Theory +1301.5338 Rings and Algebras +1301.5342 Theory +1301.5343 Group Theory +1301.5346 Instrumentation and Methods for Astrophysics +1301.5349 Computational Geometry +1301.5363 Software Engineering +1301.5366 Computational Physics +1301.5371 +1301.5375 Digital Libraries +1301.5377 Materials Science +1301.5379 Digital Libraries +1301.5380 Digital Libraries +1301.5381 Digital Libraries +1301.5383 Digital Libraries +1301.5384 Digital Libraries +1301.5385 Digital Libraries +1301.5386 Digital Libraries +1301.5387 Digital Libraries +1301.5388 Dynamical Systems +1301.5392 Digital Libraries +1301.5393 Mesoscale and Nanoscale Physics +1301.5394 +1301.5395 Materials Science +1301.5397 Lattice +1301.5398 Human-Computer Interaction +1301.5399 Networking and Internet Architecture +1301.5400 Digital Libraries +1301.5402 +1301.5409 Dynamical Systems +1301.5410 Algebraic Geometry +1301.5413 Dynamical Systems +1301.5418 Subcellular Processes +1301.5419 +1301.5428 +1301.5431 Mesoscale and Nanoscale Physics +1301.5434 Information Theory +1301.5437 Soft Condensed Matter +1301.5438 Software Engineering +1301.5443 Probability +1301.5445 Astrophysics of Galaxies +1301.5446 +1301.5449 Functional Analysis +1301.5450 Probability +1301.5453 Algebraic Geometry +1301.5457 Phenomenology +1301.5458 +1301.5466 Superconductivity +1301.5467 Pricing of Securities +1301.5470 Software Engineering +1301.5476 +1301.5483 Optimization and Control +1301.5486 Algebraic Geometry +1301.5488 Learning +1301.5489 Representation Theory +1301.5490 Materials Science +1301.5491 Computer Vision and Pattern Recognition +1301.5493 Differential Geometry +1301.5495 +1301.5496 Theory +1301.5504 General Finance +1301.5512 Populations and Evolution +1301.5513 Mesoscale and Nanoscale Physics +1301.5515 Metric Geometry +1301.5516 Phenomenology +1301.5522 Information Theory +1301.5528 +1301.5535 Information Theory +1301.5537 +1301.5544 +1301.5549 Soft Condensed Matter +1301.5550 Soft Condensed Matter +1301.5560 Rings and Algebras +1301.5561 Accelerator Physics +1301.5563 Analysis of PDEs +1301.5565 Algebraic Geometry +1301.5566 Analysis of PDEs +1301.5569 Mesoscale and Nanoscale Physics +1301.5574 +1301.5577 Geometric Topology +1301.5578 Accelerator Physics +1301.5579 Probability +1301.5582 Computer Vision and Pattern Recognition +1301.5584 Data Structures and Algorithms +1301.5585 Formal Languages and Automata Theory +1301.5586 Social and Information Networks +1301.5591 Cosmology and Nongalactic Astrophysics +1301.5593 Systems and Control +1301.5595 Computational Engineering, Finance, and Science +1301.5596 Information Theory +1301.5598 Phenomenology +1301.5601 Solar and Stellar Astrophysics +1301.5606 Algebraic Geometry +1301.5608 Accelerator Physics +1301.5611 Probability +1301.5617 Earth and Planetary Astrophysics +1301.5618 Accelerator Physics +1301.5619 Accelerator Physics +1301.5625 Representation Theory +1301.5628 Phenomenology +cond-mat/0011292 Strongly Correlated Electrons +cond-mat/0105423 Strongly Correlated Electrons +cond-mat/0107499 Statistical Mechanics +cond-mat/0108134 Strongly Correlated Electrons +cond-mat/0110164 Statistical Mechanics +cond-mat/0110266 Statistical Mechanics +cond-mat/0206133 +cond-mat/0301533 +cond-mat/0509345 Superconductivity +cond-mat/0702341 Strongly Correlated Electrons +math-ph/0503069 +math/0301344 Differential Geometry +0705.1067 Dynamical Systems +0707.3283 Fluid Dynamics +0801.2082 Dynamical Systems +0804.1961 Mesoscale and Nanoscale Physics +0804.2142 Number Theory +0806.2675 +0810.5255 +0811.3236 Mesoscale and Nanoscale Physics +0903.2580 Fluid Dynamics +0906.2077 Differential Geometry +0906.2954 Category Theory +0906.4660 Differential Geometry +1001.0390 Dynamical Systems +1001.4996 Pattern Formation and Solitons +1002.4035 +1002.4829 Number Theory +1003.4537 Rings and Algebras +1003.4595 Logic +1003.5141 Algebraic Geometry +1005.0315 Number Theory +1006.4936 Probability +1006.5200 Astrophysics of Galaxies +1008.2199 Combinatorics +1009.0834 Fluid Dynamics +1010.1707 Algebraic Geometry +1010.2334 Statistics Theory +1012.2346 Probability +1101.1479 Probability +1104.5602 Representation Theory +1105.5059 Representation Theory +1105.5918 Algebraic Geometry +1106.0124 Algebraic Geometry +1106.0407 Mesoscale and Nanoscale Physics +1106.2231 Chaotic Dynamics +1107.0318 Theory +1108.4246 +1109.6155 Logic +1110.2813 Social and Information Networks +1110.2894 Computation +1110.6617 Statistical Mechanics +1111.4611 Logic in Computer Science +1112.0923 Logic in Computer Science +1201.1212 +1201.4503 Dynamical Systems +1201.4680 Operator Algebras +1202.0904 Logic in Computer Science +1202.0943 Statistics Theory +1202.4522 Atomic Physics +1202.5243 Soft Condensed Matter +1203.1764 Exactly Solvable and Integrable Systems +1203.4181 Statistical Mechanics +1203.5732 Exactly Solvable and Integrable Systems +1203.6833 Cosmology and Nongalactic Astrophysics +1204.1883 K-Theory and Homology +1204.3349 Mesoscale and Nanoscale Physics +1204.4405 Materials Science +1204.6730 Dynamical Systems +1205.0793 Genomics +1205.1217 +1205.1390 +1205.1440 Logic +1205.2413 Probability +1205.2952 Adaptation and Self-Organizing Systems +1205.4399 +1206.0486 Number Theory +1206.0626 General Topology +1206.6054 +1207.0312 Combinatorics +1207.0804 +1207.2085 Algebraic Geometry +1207.2113 Category Theory +1207.2886 Probability +1207.4104 Information Theory +1207.4564 Other Condensed Matter +1207.4866 Optimization and Control +1207.6592 Differential Geometry +1208.0661 +1208.0761 Lattice +1208.0785 Chaotic Dynamics +1208.1602 Mesoscale and Nanoscale Physics +1208.1729 Strongly Correlated Electrons +1208.2311 Information Theory +1208.2319 General Topology +1208.2987 Mesoscale and Nanoscale Physics +1208.3024 Information Theory +1208.3058 General Topology +1208.6337 Operator Algebras +1209.0204 Phenomenology +1209.1577 Earth and Planetary Astrophysics +1209.2222 Statistical Mechanics +1209.3116 Earth and Planetary Astrophysics +1209.4089 Statistics Theory +1209.4323 Probability +1209.4690 Machine Learning +1210.0721 Theory +1210.1615 +1210.2430 Phenomenology +1210.2661 Differential Geometry +1210.3466 Earth and Planetary Astrophysics +1210.3989 Combinatorics +1210.4252 Other Condensed Matter +1210.6283 Optics +1210.7696 Quantum Gases +1210.7898 Algebraic Geometry +1211.0204 Geometric Topology +1211.0843 Disordered Systems and Neural Networks +1211.1632 Cosmology and Nongalactic Astrophysics +1211.1756 Materials Science +1211.2494 Combinatorics +1211.2498 Mesoscale and Nanoscale Physics +1211.3455 Fluid Dynamics +1211.4268 Algebraic Geometry +1211.4311 Mesoscale and Nanoscale Physics +1212.0164 Probability +1212.0488 Cosmology and Nongalactic Astrophysics +1212.1240 Mesoscale and Nanoscale Physics +1212.1840 Instrumentation and Detectors +1212.2061 Analysis of PDEs +1212.2622 +1212.3214 Genomics +1212.3648 Cryptography and Security +1212.5358 Rings and Algebras +1212.5503 Algebraic Geometry +1212.5539 Category Theory +1212.6796 Mesoscale and Nanoscale Physics +1301.0493 Phenomenology +1301.0770 Earth and Planetary Astrophysics +1301.0777 Optics +1301.0899 Solar and Stellar Astrophysics +1301.0989 Number Theory +1301.1170 +1301.1536 Theory +1301.1737 Materials Science +1301.4775 Group Theory +1301.4786 Information Theory +1301.5909 Superconductivity +1301.6631 Other Condensed Matter +1301.7510 Phenomenology +1302.0744 Information Theory +1302.1072 Experiment +1302.1598 Symplectic Geometry +1302.1801 +1302.2700 +1302.3188 Materials Science +1302.3210 Instrumentation and Detectors +1302.5653 Geometric Topology +1302.5668 Phenomenology +1302.5948 Soft Condensed Matter +1302.6472 +1303.0124 Earth and Planetary Astrophysics +1303.0533 Mesoscale and Nanoscale Physics +1303.1092 Experiment +1303.1630 Mesoscale and Nanoscale Physics +1303.2686 Instrumentation and Detectors +1303.3209 Atomic Physics +1303.3623 Optics +1303.3705 Earth and Planetary Astrophysics +1303.3963 Molecular Networks +1303.3997 Genomics +1303.4089 Functional Analysis +1303.4267 Fluid Dynamics +1303.6018 Representation Theory +1303.6876 Mesoscale and Nanoscale Physics +1303.7317 Mesoscale and Nanoscale Physics +1304.1604 Adaptation and Self-Organizing Systems +1304.2818 Instrumentation and Methods for Astrophysics +1304.3956 Algebraic Geometry +1304.4106 Statistical Mechanics +1304.4169 Probability +1304.4419 Optics +1304.4579 Phenomenology +1304.4810 Earth and Planetary Astrophysics +1304.6061 Cosmology and Nongalactic Astrophysics +1304.6284 Programming Languages +1304.7002 High Energy Astrophysical Phenomena +1304.7674 Atomic Physics +1304.7721 Instrumentation and Detectors +1304.7854 Databases +1305.1149 +1305.1773 Medical Physics +1305.2041 Numerical Analysis +1305.2314 Astrophysics of Galaxies +1305.2374 Phenomenology +1305.2550 Neurons and Cognition +1305.2637 Group Theory +1305.2674 Solar and Stellar Astrophysics +1305.2809 Theory +1305.4233 Fluid Dynamics +1305.4372 Optimization and Control +1305.4478 Differential Geometry +1305.4573 Computational Geometry +1305.4626 Functional Analysis +1305.5363 Populations and Evolution +1305.5386 Theory +1305.5389 Instrumentation and Methods for Astrophysics +1305.5428 Biological Physics +1305.5493 Methodology +1305.5572 Accelerator Physics +1305.5839 Classical Physics +1305.5846 High Energy Astrophysical Phenomena +1305.5848 Disordered Systems and Neural Networks +1305.5852 Functional Analysis +1305.5854 K-Theory and Homology +1305.5856 Optimization and Control +1305.5858 Logic +1305.5860 Biological Physics +1305.5867 Optics +1305.5873 Algebraic Geometry +1305.5886 Cryptography and Security +1305.5891 Classical Analysis and ODEs +1305.5894 Methodology +1305.5897 Instrumentation and Detectors +1305.5898 Group Theory +1305.5900 Operator Algebras +1305.5902 Astrophysics of Galaxies +1305.5904 Analysis of PDEs +1305.5905 Computer Vision and Pattern Recognition +1305.5906 Logic +1305.5912 Geometric Topology +1305.5913 Information Theory +1305.5918 Computation and Language +1305.5919 Cryptography and Security +1305.5922 Tissues and Organs +1305.5927 Molecular Networks +1305.5928 Geometric Topology +1305.5929 Biological Physics +1305.5931 +1305.5937 Optics +1305.5948 Logic +1305.5949 Analysis of PDEs +1305.5950 Human-Computer Interaction +1305.5951 Soft Condensed Matter +1305.5955 Metric Geometry +1305.5958 Statistical Finance +1305.5961 Logic +1305.5977 Numerical Analysis +1305.5981 Information Retrieval +1305.5985 +1305.5986 +1305.5987 Probability +1305.5990 Probability +1305.5992 Information Theory +1305.6000 Statistics Theory +1305.6002 Optimization and Control +1305.6003 Networking and Internet Architecture +1305.6004 Operator Algebras +1305.6012 Information Theory +1305.6024 Algebraic Geometry +1305.6026 Digital Libraries +1305.6034 Probability +1305.6036 Probability +1305.6037 Artificial Intelligence +1305.6044 +1305.6045 Software Engineering +1305.6046 Learning +1305.6056 Optimization and Control +1305.6057 Optimization and Control +1305.6058 Dynamical Systems +1305.6062 Astrophysics of Galaxies +1305.6065 Logic +1305.6067 Other Computer Science +1305.6069 Functional Analysis +1305.6071 Analysis of PDEs +1305.6074 Formal Languages and Automata Theory +1305.6079 High Energy Astrophysical Phenomena +1305.6080 Logic +1305.6084 Optics +1305.6086 +1305.6091 Information Theory +1305.6095 Data Structures and Algorithms +1305.6104 Numerical Analysis +1305.6106 Optimization and Control +1305.6109 Materials Science +1305.6110 Logic in Computer Science +1305.6111 Logic in Computer Science +1305.6112 Software Engineering +1305.6113 Logic in Computer Science +1305.6114 Software Engineering +1305.6115 Logic in Computer Science +1305.6118 Rings and Algebras +1305.6123 Distributed, Parallel, and Cluster Computing +1305.6124 Spectral Theory +1305.6126 Information Theory +1305.6128 Differential Geometry +1305.6129 Learning +1305.6130 Classical Analysis and ODEs +1305.6139 Earth and Planetary Astrophysics +1305.6147 Spectral Theory +1305.6148 General Finance +1305.6153 Phenomenology +1305.6157 Analysis of PDEs +1305.6158 Combinatorics +1305.6164 Combinatorics +1305.6166 Atomic Physics +1305.6170 Optics +1305.6177 Geometric Topology +1305.6181 +1305.6184 Logic in Computer Science +1305.6186 Algebraic Topology +1305.6191 Experiment +1305.6194 Superconductivity +1305.6196 Combinatorics +1305.6203 Distributed, Parallel, and Cluster Computing +1305.6206 Logic +1305.6209 Mesoscale and Nanoscale Physics +1305.6213 Information Theory +1305.6215 Information Theory +1305.6219 +1305.6221 Probability +1305.6222 Probability +1305.6224 Classical Analysis and ODEs +1305.6227 Theory +1305.6229 Networking and Internet Architecture +1305.6235 Functional Analysis +1305.6236 Analysis of PDEs +1305.6237 Number Theory +1305.6238 Computation and Language +1305.6239 Statistics Theory +1305.6240 Mesoscale and Nanoscale Physics +1305.6241 Number Theory +1305.6242 Number Theory +1305.6243 Astrophysics of Galaxies +1305.6244 +1305.6248 Materials Science +1305.6251 Analysis of PDEs +1305.6258 Biological Physics +1305.6265 Materials Science +1305.6268 Algebraic Geometry +1305.6274 Representation Theory +1305.6278 Statistical Mechanics +1305.6286 Operator Algebras +1305.6287 Commutative Algebra +1305.6289 Number Theory +1305.6290 Analysis of PDEs +1305.6294 Phenomenology +1305.6295 Probability +1305.6303 Analysis of PDEs +1305.6304 Commutative Algebra +astro-ph/0401360 +math/0105225 Representation Theory +math/0412079 Number Theory +0709.3006 Disordered Systems and Neural Networks +0801.3220 Differential Geometry +0803.2745 Algebraic Topology +0803.3972 General Physics +0807.1026 +0807.1035 +0809.3718 +0810.2131 Algebraic Topology +0810.2393 Quantum Algebra +0905.4614 Artificial Intelligence +1003.3027 Chemical Physics +1003.4865 Combinatorics +1005.0658 Number Theory +1006.2814 Combinatorics +1006.4493 Strongly Correlated Electrons +1007.2304 Phenomenology +1007.3283 Combinatorics +1009.1499 Metric Geometry +1009.3360 Algebraic Geometry +1010.2312 Optimization and Control +1010.5580 Algebraic Geometry +1011.4691 Analysis of PDEs +1101.4156 Algebraic Geometry +1101.4806 Number Theory +1103.4187 Algebraic Topology +1104.3205 Functional Analysis +1105.0492 General Physics +1105.1349 Dynamical Systems +1106.2798 Cosmology and Nongalactic Astrophysics +1106.3374 Geometric Topology +1107.0834 Solar and Stellar Astrophysics +1107.5638 Software Engineering +1108.0133 Probability +1108.2258 +1108.2263 +1108.5846 Complex Variables +1109.4967 Rings and Algebras +1109.6097 Phenomenology +1110.0003 General Physics +1110.0353 Strongly Correlated Electrons +1110.2453 Spectral Theory +1110.3006 Strongly Correlated Electrons +1110.5959 Number Theory +1111.3563 Statistics Theory +1111.5291 Geometric Topology +1111.6869 Disordered Systems and Neural Networks +1112.4393 K-Theory and Homology +1112.4911 Number Theory +1201.1997 Information Theory +1201.4437 General Physics +1201.5503 Strongly Correlated Electrons +1202.0005 Cosmology and Nongalactic Astrophysics +1202.0628 Portfolio Management +1202.2543 Operator Algebras +1202.4053 +1203.3831 +1203.5852 Phenomenology +1204.0322 +1204.1843 Analysis of PDEs +1204.2347 +1204.5435 +1205.2579 Fluid Dynamics +1205.3102 Optimization and Control +1205.3263 +1205.3877 +1205.4548 Strongly Correlated Electrons +1205.5926 Analysis of PDEs +1206.0818 +1206.1899 Distributed, Parallel, and Cluster Computing +1206.2869 Mesoscale and Nanoscale Physics +1206.4571 Cosmology and Nongalactic Astrophysics +1206.5897 Theory +1206.6011 +1206.6012 +1206.6811 Information Theory +1207.2292 Instrumentation and Detectors +1207.3716 Quantum Gases +1207.3852 Superconductivity +1207.4068 Quantum Gases +1207.5697 Differential Geometry +1207.6007 +1207.6554 +1207.6667 Networking and Internet Architecture +1207.7333 Differential Geometry +1208.1007 Number Theory +1208.1013 Statistical Mechanics +1208.1349 Digital Libraries +1208.1805 Combinatorics +1208.2525 +1208.2616 Classical Analysis and ODEs +1208.3124 Computational Geometry +1208.4341 Optimization and Control +1208.4677 Spectral Theory +1208.4763 +1208.5147 Statistical Mechanics +1208.6474 Phenomenology +1209.0142 Chaotic Dynamics +1209.2044 General Physics +1209.2388 Learning +1209.2424 Strongly Correlated Electrons +1209.4490 Theory +1209.4906 Theory +1210.0249 Cosmology and Nongalactic Astrophysics +1210.0498 Populations and Evolution +1210.0667 Analysis of PDEs +1210.1214 High Energy Astrophysical Phenomena +1210.2205 Superconductivity +1210.5943 Number Theory +1210.7714 Spectral Theory +1210.7954 Distributed, Parallel, and Cluster Computing +1211.1616 Statistical Mechanics +1211.1676 Strongly Correlated Electrons +1211.3645 Differential Geometry +1211.3658 Phenomenology +1211.3868 Probability +1211.4953 Functional Analysis +1211.5390 Adaptation and Self-Organizing Systems +1211.6592 Instrumentation and Methods for Astrophysics +1212.0208 +1212.0397 Probability +1212.0398 Probability +1212.1094 Computational Geometry +1212.1117 Populations and Evolution +1212.1897 Phenomenology +1212.2029 +1212.2063 Mesoscale and Nanoscale Physics +1212.2231 Superconductivity +1212.2233 Quantum Gases +1212.2902 Artificial Intelligence +1212.2934 Computational Physics +1212.3842 Classical Analysis and ODEs +1212.3880 +1212.4345 Theory +1212.4451 Statistical Mechanics +1212.4501 +1212.4731 Symbolic Computation +1212.5779 +1212.5786 Probability +1212.5916 Mesoscale and Nanoscale Physics +1212.6548 Representation Theory +1301.0427 Information Theory +1301.1022 +1301.1033 +1301.2016 +1301.2038 Strongly Correlated Electrons +1301.2159 Quantum Gases +1301.2794 Statistical Mechanics +1301.3169 Strongly Correlated Electrons +1301.3763 Quantum Gases +1301.4222 Strongly Correlated Electrons +1301.4407 Disordered Systems and Neural Networks +1301.6163 High Energy Astrophysical Phenomena +1301.7198 +1301.7345 Information Theory +1301.7653 Materials Science +1302.0401 +1302.0516 Probability +1302.1328 High Energy Astrophysical Phenomena +1302.1864 +1302.2061 Differential Geometry +1302.2340 Combinatorics +1302.2808 Superconductivity +1302.3372 Functional Analysis +1302.3640 +1302.3656 Phenomenology +1302.3741 Logic in Computer Science +1302.4484 Optics +1302.4603 Materials Science +1302.5443 Dynamical Systems +1302.5510 Cosmology and Nongalactic Astrophysics +1302.5573 Symplectic Geometry +1302.5592 Multiagent Systems +1302.5709 Mesoscale and Nanoscale Physics +1302.5756 Algebraic Topology +1302.6938 Phenomenology +1302.6955 +1303.0070 Information Theory +1303.0094 Superconductivity +1303.0114 High Energy Astrophysical Phenomena +1303.0555 Cosmology and Nongalactic Astrophysics +1303.1388 Quantum Gases +1303.1895 Differential Geometry +1303.2287 Theory +1303.2979 Classical Analysis and ODEs +1303.4733 Functional Analysis +1303.4933 Atmospheric and Oceanic Physics +1303.6787 Solar and Stellar Astrophysics +1303.6865 Strongly Correlated Electrons +1304.0279 Numerical Analysis +1304.1274 Group Theory +1304.1541 Cosmology and Nongalactic Astrophysics +1304.1672 Artificial Intelligence +1304.2267 Materials Science +1304.2337 Cosmology and Nongalactic Astrophysics +1304.2922 Statistical Mechanics +1304.2981 Distributed, Parallel, and Cluster Computing +1304.4127 Solar and Stellar Astrophysics +1304.4339 Exactly Solvable and Integrable Systems +1304.4472 Networking and Internet Architecture +1304.4771 +1304.5128 Chemical Physics +1304.5197 Programming Languages +1304.5785 Symplectic Geometry +1304.5823 Logic +1304.5980 Soft Condensed Matter +1304.6166 +1304.6553 Statistical Mechanics +1304.7268 General Physics +1304.7280 Instrumentation and Methods for Astrophysics +1304.7282 Computation and Language +1304.7286 Cosmology and Nongalactic Astrophysics +1304.7288 Theory +1304.7289 Computation and Language +1304.7291 Functional Analysis +1304.7292 +1304.7294 Networking and Internet Architecture +1304.7297 History and Philosophy of Physics +1304.7300 Digital Libraries +1304.7308 Information Theory +1304.7312 Symplectic Geometry +1304.7313 Atmospheric and Oceanic Physics +1304.7315 Optics +1304.7318 Computational Geometry +1304.7319 +1304.7320 +1304.7324 Multimedia +1304.7330 General Finance +1304.7339 Optics +1304.7345 Software Engineering +1304.7347 +1304.7350 Disordered Systems and Neural Networks +1304.7356 Instrumentation and Detectors +1304.7367 Combinatorics +1304.7368 +1304.7373 Data Structures and Algorithms +1304.7375 Information Theory +1304.7376 Probability +1304.7378 Group Theory +1304.7380 Symbolic Computation +1304.7383 Materials Science +1304.7384 Classical Analysis and ODEs +1304.7385 Optimization and Control +1304.7386 Cryptography and Security +1304.7387 Earth and Planetary Astrophysics +1304.7391 Group Theory +1304.7392 Information Theory +1304.7393 Subcellular Processes +1304.7397 Computational Engineering, Finance, and Science +1304.7399 Computer Vision and Pattern Recognition +1304.7401 Social and Information Networks +1304.7402 Information Theory +1304.7403 Data Structures and Algorithms +1304.7405 +1304.7407 Materials Science +1304.7412 +1304.7414 Analysis of PDEs +1304.7415 Cosmology and Nongalactic Astrophysics +1304.7416 Superconductivity +1304.7418 Strongly Correlated Electrons +1304.7429 Networking and Internet Architecture +1304.7430 Differential Geometry +1304.7434 Information Theory +1304.7435 Information Theory +1304.7436 Analysis of PDEs +1304.7437 Accelerator Physics +1304.7439 +1304.7441 Biomolecules +1304.7443 Numerical Analysis +1304.7449 Algebraic Topology +1304.7451 Cryptography and Security +1304.7453 Operator Algebras +1304.7456 Data Structures and Algorithms +1304.7465 Learning +1304.7466 K-Theory and Homology +1304.7484 Differential Geometry +1304.7485 Mesoscale and Nanoscale Physics +1304.7490 Representation Theory +1304.7491 Rings and Algebras +1304.7494 +1304.7496 Tissues and Organs +1304.7500 Theory +1304.7505 Data Structures and Algorithms +1304.7507 Computation and Language +1304.7508 Combinatorics +1304.7512 Computational Geometry +1304.7516 Emerging Technologies +1304.7517 Information Theory +1304.7518 Rings and Algebras +1304.7519 Optics +1304.7520 Probability +1304.7523 Algebraic Geometry +1304.7528 Learning +1304.7530 Data Structures and Algorithms +1304.7536 Analysis of PDEs +1304.7541 Commutative Algebra +1304.7542 Commutative Algebra +1304.7543 Combinatorics +1304.7544 Distributed, Parallel, and Cluster Computing +1304.7547 Computers and Society +1304.7548 Information Theory +1304.7552 Information Theory +1304.7558 Data Structures and Algorithms +1304.7559 Phenomenology +1304.7560 Mesoscale and Nanoscale Physics +1304.7561 Geometric Topology +1304.7562 Portfolio Management +1304.7571 Data Structures and Algorithms +1304.7574 Combinatorics +1304.7576 Learning +1304.7577 Learning +1304.7578 Networking and Internet Architecture +1304.7585 Quantum Algebra +1304.7586 Popular Physics +1304.7590 Logic in Computer Science +1304.7593 Statistical Mechanics +1304.7600 Programming Languages +1304.7601 Dynamical Systems +1304.7604 Data Structures and Algorithms +1304.7605 Computers and Society +1304.7610 Astrophysics of Galaxies +1304.7615 Distributed, Parallel, and Cluster Computing +1304.7616 Operator Algebras +1304.7617 Operator Algebras +1304.7619 Pattern Formation and Solitons +1304.7621 Probability +1304.7623 +1304.7627 Phenomenology +1304.7630 Theory +1304.7631 Mesoscale and Nanoscale Physics +1304.7632 Data Structures and Algorithms +1304.7634 Phenomenology +1304.7639 Analysis of PDEs +1304.7641 Disordered Systems and Neural Networks +1304.7642 Computer Science and Game Theory +1304.7643 Quantum Algebra +1304.7647 Phenomenology +1304.7652 Solar and Stellar Astrophysics +1304.7654 Distributed, Parallel, and Cluster Computing +1304.7659 Algebraic Geometry +1304.7665 Optimization and Control +1304.7669 Geometric Topology +1304.7678 Statistics Theory +1304.7680 Materials Science +1304.7693 Data Structures and Algorithms +1304.7694 Optimization and Control +1304.7695 Experiment +1304.7701 Medical Physics +1304.7704 Quantum Gases +1304.7705 Computational Complexity +1304.7707 Rings and Algebras +1304.7710 Systems and Control +1304.7713 Computer Vision and Pattern Recognition +1304.7714 Logic +1304.7718 Computer Science and Game Theory +1304.7726 Algebraic Geometry +1304.7728 Computation and Language +1304.7736 High Energy Astrophysical Phenomena +1304.7745 Information Theory +1304.7748 Optimization and Control +1304.7749 Analysis of PDEs +1304.7754 Materials Science +1304.7759 Classical Analysis and ODEs +cond-mat/0006188 Disordered Systems and Neural Networks +cond-mat/0607789 Other Condensed Matter +hep-th/0503040 Theory +math/0012169 Combinatorics +math/9712257 Combinatorics +0906.3422 Representation Theory +0912.2665 Differential Geometry +0912.2895 Differential Geometry +0912.3436 Differential Geometry +1004.1558 Classical Analysis and ODEs +1005.2720 Probability +1006.1338 Probability +1006.1587 Discrete Mathematics +1007.4667 Cosmology and Nongalactic Astrophysics +1009.2687 +1011.2283 Probability +1011.4592 Probability +1102.2741 Mesoscale and Nanoscale Physics +1103.2928 +1103.4817 Group Theory +1106.4057 Combinatorics +1106.5637 Probability +1107.5701 Analysis of PDEs +1108.2828 Numerical Analysis +1109.1850 +1109.2501 +1109.5142 Analysis of PDEs +1109.5987 +1110.6084 Statistics Theory +1112.1588 Quantum Algebra +1112.2432 Statistics Theory +1112.5223 Combinatorics +1201.2423 Experiment +1202.3311 Data Structures and Algorithms +1202.3817 +1202.5148 +1203.5116 +1204.1685 Statistics Theory +1204.4559 Neurons and Cognition +1205.0460 +1205.1026 Theory +1205.3377 Theory +1206.1137 Probability +1206.2111 Computer Science and Game Theory +1206.2536 +1207.0589 +1207.3571 Optics +1207.4607 Data Structures and Algorithms +1208.0032 Phenomenology +1208.6195 Dynamical Systems +1209.2022 Quantum Algebra +1209.3083 Biomolecules +1209.3276 +1209.5350 Machine Learning +1209.5604 Probability +1210.0680 +1210.3665 Mesoscale and Nanoscale Physics +1210.5078 Theory +1210.7548 Phenomenology +1210.8342 +1212.0088 Mesoscale and Nanoscale Physics +1212.0734 +1212.2623 +1301.4023 Probability +1301.6440 Theory +1302.0697 Theory +1302.0989 Theory +1302.2105 Theory +1302.3304 Quantum Gases +1302.6421 Logic in Computer Science +1302.6512 Mesoscale and Nanoscale Physics +1302.7297 Theory +1303.0049 Cosmology and Nongalactic Astrophysics +1303.1020 Accelerator Physics +1303.1053 High Energy Astrophysical Phenomena +1303.1420 Software Engineering +1303.3215 +1303.3308 Chemical Physics +1303.3550 +1303.6987 Strongly Correlated Electrons +1304.1428 Information Theory +1304.5210 Disordered Systems and Neural Networks +1304.5361 Optics +1304.5570 High Energy Astrophysical Phenomena +1305.0758 Molecular Networks +1305.1498 Theory +1305.2211 Earth and Planetary Astrophysics +1305.2748 Instrumentation and Detectors +1305.3445 Methodology +1305.4551 Experiment +1305.4809 +1305.5329 K-Theory and Homology +1305.5387 +1305.5410 Theory +1305.5422 Instrumentation and Methods for Astrophysics +1305.5425 Instrumentation and Methods for Astrophysics +1305.5429 Probability +1305.5531 Rings and Algebras +1305.5543 Solar and Stellar Astrophysics +1305.5545 Combinatorics +1305.5551 Data Structures and Algorithms +1305.5564 Phenomenology +1305.5565 Number Theory +1305.5568 Probability +1305.5575 Pricing of Securities +1305.5581 Biomolecules +1305.5582 Mesoscale and Nanoscale Physics +1305.5583 +1305.5585 Information Theory +1305.5586 Instrumentation and Methods for Astrophysics +1305.5587 Earth and Planetary Astrophysics +1305.5588 Networking and Internet Architecture +1305.5589 Mesoscale and Nanoscale Physics +1305.5592 Information Theory +1305.5593 Solar and Stellar Astrophysics +1305.5594 Methodology +1305.5602 Solar and Stellar Astrophysics +1305.5604 Solar and Stellar Astrophysics +1305.5605 +1305.5606 Solar and Stellar Astrophysics +1305.5607 Numerical Analysis +1305.5608 Distributed, Parallel, and Cluster Computing +1305.5609 Commutative Algebra +1305.5610 Artificial Intelligence +1305.5615 Computational Physics +1305.5617 Data Structures and Algorithms +1305.5618 Statistics Theory +1305.5619 Spectral Theory +1305.5622 Combinatorics +1305.5626 Information Theory +1305.5634 Software Engineering +1305.5637 Artificial Intelligence +1305.5639 Instrumentation and Methods for Astrophysics +1305.5646 Statistics Theory +1305.5650 Other Quantitative Biology +1305.5652 History and Philosophy of Physics +1305.5653 Databases +1305.5661 Algebraic Geometry +1305.5663 Rings and Algebras +1305.5665 Artificial Intelligence +1305.5666 Probability +1305.5667 Phenomenology +1305.5669 Classical Analysis and ODEs +1305.5671 Phenomenology +1305.5673 Statistics Theory +1305.5682 Applications +1305.5683 Instrumentation and Methods for Astrophysics +1305.5687 Chaotic Dynamics +1305.5688 Functional Analysis +1305.5692 Combinatorics +1305.5695 Applications +1305.5698 Mesoscale and Nanoscale Physics +1305.5699 +1305.5703 Computers and Society +1305.5704 Phenomenology +1305.5708 +1305.5709 Cosmology and Nongalactic Astrophysics +1305.5710 Mathematical Software +1305.5712 Methodology +1305.5713 Computational Complexity +1305.5715 Phenomenology +1305.5717 Strongly Correlated Electrons +1305.5720 Cosmology and Nongalactic Astrophysics +1305.5722 Algebraic Geometry +1305.5723 Soft Condensed Matter +1305.5724 Digital Libraries +1305.5725 Probability +1305.5728 Computer Vision and Pattern Recognition +1305.5731 Other Condensed Matter +1305.5732 Other Condensed Matter +1305.5734 Machine Learning +1305.5737 Numerical Analysis +1305.5744 +1305.5746 +1305.5747 Probability +1305.5749 +1305.5754 Materials Science +1305.5755 Analysis of PDEs +1305.5756 Computer Vision and Pattern Recognition +1305.5757 Data Structures and Algorithms +1305.5758 Lattice +1305.5760 Classical Physics +1305.5764 Information Theory +1305.5766 Accelerator Physics +1305.5774 Strongly Correlated Electrons +1305.5778 Group Theory +1305.5781 Complex Variables +1305.5782 Machine Learning +1305.5783 Logic +1305.5785 Computation and Language +1305.5794 Optimization and Control +1305.5800 Distributed, Parallel, and Cluster Computing +1305.5802 Analysis of PDEs +1305.5803 Molecular Networks +1305.5805 Rings and Algebras +1305.5810 Optimization and Control +1305.5811 Combinatorics +1305.5820 Logic in Computer Science +1305.5821 Materials Science +1305.5823 Data Structures and Algorithms +1305.5824 Databases +1305.5826 Machine Learning +1305.5827 Information Retrieval +1305.5829 Numerical Analysis +1305.5831 +1305.5837 +math/0304064 Category Theory +0810.3063 Algebraic Topology +0905.4895 Strongly Correlated Electrons +0911.4387 Functional Analysis +0912.1414 Number Theory +1001.4243 Earth and Planetary Astrophysics +1005.3251 Category Theory +1005.3927 Metric Geometry +1005.5273 Symbolic Computation +1006.0223 Algebraic Geometry +1007.1081 Algebraic Geometry +1009.3067 Mesoscale and Nanoscale Physics +1009.5530 Differential Geometry +1010.1132 Classical Analysis and ODEs +1010.2630 Metric Geometry +1010.4699 +1101.2069 Differential Geometry +1102.3240 Category Theory +1102.3615 Logic in Computer Science +1103.1623 General Topology +1104.0221 Probability +1104.5148 Strongly Correlated Electrons +1105.1275 Cell Behavior +1105.3196 Strongly Correlated Electrons +1106.4598 +1107.2063 Theory +1107.4274 Strongly Correlated Electrons +1107.5270 Statistical Mechanics +1108.0063 Dynamical Systems +1108.1524 Number Theory +1108.2965 Differential Geometry +1108.4294 Differential Geometry +1109.0908 Information Theory +1109.1739 Differential Geometry +1109.4147 +1109.5582 +1109.6239 Methodology +1110.0162 Combinatorics +1110.1499 Phenomenology +1110.1980 Computer Science and Game Theory +1111.0317 Methodology +1111.2219 Space Physics +1111.3921 +1111.4076 Mesoscale and Nanoscale Physics +1112.3045 Strongly Correlated Electrons +1112.4310 Statistics Theory +1201.1415 Soft Condensed Matter +1201.3266 Algebraic Geometry +1202.3020 Strongly Correlated Electrons +1202.5411 Probability +1203.0932 Strongly Correlated Electrons +1203.3029 Rings and Algebras +1203.5080 Strongly Correlated Electrons +1204.2871 +1204.5019 Mesoscale and Nanoscale Physics +1205.2052 Chemical Physics +1205.3240 +1205.3907 Number Theory +1206.0125 Lattice +1206.1584 Functional Analysis +1206.2793 Phenomenology +1206.4491 Theory +1206.5211 Strongly Correlated Electrons +1206.6775 Theory +1206.6990 Analysis of PDEs +1206.7021 Differential Geometry +1207.1478 Populations and Evolution +1207.3054 Theory +1207.4726 Combinatorics +1207.5429 Quantum Gases +1207.6034 Functional Analysis +1207.6149 Statistical Mechanics +1207.6608 Strongly Correlated Electrons +1207.7081 Mesoscale and Nanoscale Physics +1208.1693 High Energy Astrophysical Phenomena +1208.3203 +1208.3595 Phenomenology +1208.4247 Numerical Analysis +1208.4727 Strongly Correlated Electrons +1208.5701 Strongly Correlated Electrons +1208.5924 Phenomenology +1209.0767 Cosmology and Nongalactic Astrophysics +1209.0775 Cosmology and Nongalactic Astrophysics +1209.1643 Strongly Correlated Electrons +1209.1658 Analysis of PDEs +1209.3044 Computational Physics +1209.3327 Mesoscale and Nanoscale Physics +1209.4684 Data Analysis, Statistics and Probability +1209.4752 Computational Physics +1209.4804 Theory +1210.0402 Optimization and Control +1210.0686 Statistics Theory +1210.1126 Solar and Stellar Astrophysics +1210.1426 Quantum Gases +1210.1443 +1210.1842 +1210.2039 Logic in Computer Science +1210.2879 Statistics Theory +1210.4727 Earth and Planetary Astrophysics +1210.5373 +1210.7603 Representation Theory +1210.7746 Materials Science +1210.7806 Phenomenology +1210.7907 +1211.0901 Differential Geometry +1211.1643 Systems and Control +1211.1763 Soft Condensed Matter +1211.2848 +1211.4171 Differential Geometry +1211.4893 Physics Education +1211.6433 Solar and Stellar Astrophysics +1211.7098 Cosmology and Nongalactic Astrophysics +1211.7291 Differential Geometry +1212.1546 Superconductivity +1212.3252 Soft Condensed Matter +1212.3446 Instrumentation and Methods for Astrophysics +1212.4719 Theory +1212.6303 Hardware Architecture +1212.6846 Data Structures and Algorithms +1301.0241 Functional Analysis +1301.0443 Accelerator Physics +1301.1326 Solar and Stellar Astrophysics +1301.2061 Probability +1301.2252 Computer Vision and Pattern Recognition +1301.2253 Data Structures and Algorithms +1301.2254 Artificial Intelligence +1301.2255 Artificial Intelligence +1301.2256 Artificial Intelligence +1301.2257 Artificial Intelligence +1301.2258 Artificial Intelligence +1301.2259 Artificial Intelligence +1301.2260 Artificial Intelligence +1301.2261 Methodology +1301.2262 Artificial Intelligence +1301.2263 Artificial Intelligence +1301.2264 Artificial Intelligence +1301.2265 Artificial Intelligence +1301.2266 Learning +1301.2267 Artificial Intelligence +1301.2268 Artificial Intelligence +1301.2269 Learning +1301.2270 Learning +1301.2271 Artificial Intelligence +1301.2272 Artificial Intelligence +1301.2273 Artificial Intelligence +1301.2274 Artificial Intelligence +1301.2275 Artificial Intelligence +1301.2276 Computer Science and Game Theory +1301.2277 Artificial Intelligence +1301.2278 Learning +1301.2279 Artificial Intelligence +1301.2280 Learning +1301.2282 Artificial Intelligence +1301.2283 Learning +1301.2284 Learning +1301.2285 Artificial Intelligence +1301.2286 Learning +1301.2287 Artificial Intelligence +1301.2288 Artificial Intelligence +1301.2289 Artificial Intelligence +1301.2290 Artificial Intelligence +1301.2291 Artificial Intelligence +1301.2292 Artificial Intelligence +1301.2293 Artificial Intelligence +1301.2294 Artificial Intelligence +1301.2295 Artificial Intelligence +1301.2296 Artificial Intelligence +1301.2297 Artificial Intelligence +1301.2298 Artificial Intelligence +1301.2299 Artificial Intelligence +1301.2300 Artificial Intelligence +1301.2301 Artificial Intelligence +1301.2302 Artificial Intelligence +1301.2303 Information Retrieval +1301.2304 Artificial Intelligence +1301.2305 Artificial Intelligence +1301.2306 Artificial Intelligence +1301.2307 Artificial Intelligence +1301.2308 Artificial Intelligence +1301.2309 Information Retrieval +1301.2310 Artificial Intelligence +1301.2311 Learning +1301.2312 Artificial Intelligence +1301.2313 Artificial Intelligence +1301.2314 Artificial Intelligence +1301.2315 Learning +1301.2316 Learning +1301.2317 Artificial Intelligence +1301.2318 Learning +1301.2319 Artificial Intelligence +1301.2320 Information Retrieval +1301.2335 Cryptography and Security +1301.2338 Solar and Stellar Astrophysics +1301.2341 Group Theory +1301.2343 Artificial Intelligence +1301.2345 Phenomenology +1301.2346 Analysis of PDEs +1301.2349 Soft Condensed Matter +1301.2351 Computer Vision and Pattern Recognition +1301.2353 Analysis of PDEs +1301.2355 Group Theory +1301.2356 Dynamical Systems +1301.2357 +1301.2362 Databases +1301.2366 Molecular Networks +1301.2367 Numerical Analysis +1301.2368 Software Engineering +1301.2371 Analysis of PDEs +1301.2373 Lattice +1301.2375 Databases +1301.2377 Statistical Mechanics +1301.2378 Databases +1301.2379 Chemical Physics +1301.2380 Superconductivity +1301.2390 Data Structures and Algorithms +1301.2392 Materials Science +1301.2393 Classical Physics +1301.2399 Applications +1301.2402 Instrumentation and Detectors +1301.2408 Mesoscale and Nanoscale Physics +1301.2409 Mesoscale and Nanoscale Physics +1301.2410 Applications +1301.2411 Applications +1301.2414 Space Physics +1301.2415 Space Physics +1301.2418 Commutative Algebra +1301.2419 Commutative Algebra +1301.2420 Applications +1301.2422 Mesoscale and Nanoscale Physics +1301.2425 Analysis of PDEs +1301.2426 Exactly Solvable and Integrable Systems +1301.2429 Applications +1301.2430 +1301.2435 Applications +1301.2436 Astrophysics of Galaxies +1301.2439 Algebraic Geometry +1301.2443 Software Engineering +1301.2445 Combinatorics +1301.2447 Software Engineering +1301.2448 Phenomenology +1301.2450 Optimization and Control +1301.2456 Combinatorics +1301.2457 Optimization and Control +1301.2459 Applications +1301.2462 Experiment +1301.2464 Physics and Society +1301.2466 Computation and Language +1301.2467 Applications +1301.2472 Mesoscale and Nanoscale Physics +1301.2473 Applications +1301.2475 Solar and Stellar Astrophysics +1301.2478 General Physics +1301.2480 Theory +1301.2481 Numerical Analysis +1301.2482 Optics +1301.2483 Differential Geometry +1301.2486 Symbolic Computation +1301.2490 Applications +1301.2494 Instrumentation and Detectors +1301.2495 Data Structures and Algorithms +1301.2496 Solar and Stellar Astrophysics +1301.2497 Information Theory +1301.2499 Solar and Stellar Astrophysics +1301.2501 +1301.2502 Probability +1301.2503 Applications +1301.2505 Phenomenology +1301.2506 Data Structures and Algorithms +1301.2510 Theory +1301.2511 Algebraic Topology +1301.2515 +1301.2520 Quantitative Methods +1301.2521 Experiment +1301.2524 Differential Geometry +1301.2527 Probability +1301.2528 Molecular Networks +1301.2532 Number Theory +1301.2533 Computer Science and Game Theory +1301.2535 Statistical Finance +1301.2540 +1301.2542 Computer Vision and Pattern Recognition +1301.2544 Mesoscale and Nanoscale Physics +1301.2547 Dynamical Systems +1301.2558 Algebraic Geometry +1301.2561 Social and Information Networks +1301.2567 Optimization and Control +1301.2571 +1301.2572 Mesoscale and Nanoscale Physics +1301.2573 Analysis of PDEs +1301.2575 Solar and Stellar Astrophysics +1301.2579 Differential Geometry +1301.2584 Classical Analysis and ODEs +1301.2585 +1301.2594 Mesoscale and Nanoscale Physics +math-ph/0212031 +quant-ph/0304042 +0710.5885 Representation Theory +0711.3879 Number Theory +0803.0148 Algebraic Geometry +0811.2783 Analysis of PDEs +0902.2349 Representation Theory +0904.4854 Combinatorics +0905.4014 +0911.2059 Algebraic Geometry +0912.2829 Number Theory +0912.3362 Portfolio Management +1003.4704 Representation Theory +1006.3474 Combinatorics +1007.3641 Materials Science +1010.5227 +1011.3323 Combinatorics +1101.3538 Materials Science +1101.5067 Combinatorics +1101.5071 Combinatorics +1103.4602 +1104.4990 Solar and Stellar Astrophysics +1104.5049 Cosmology and Nongalactic Astrophysics +1105.0010 Classical Analysis and ODEs +1105.0545 Distributed, Parallel, and Cluster Computing +1105.5971 Superconductivity +1106.2081 Analysis of PDEs +1106.2901 +1107.1657 Quantum Algebra +1108.4906 +1109.3638 Strongly Correlated Electrons +1110.4576 Superconductivity +1110.5899 +1111.1041 Information Theory +1111.2465 Dynamical Systems +1111.3795 Probability +1111.5266 +1111.6633 Portfolio Management +1112.3507 Computational Physics +1201.3738 Dynamical Systems +1202.4463 Astrophysics of Galaxies +1203.1072 Optimization and Control +1203.3282 Information Theory +1203.5034 Theory +1203.5063 Operator Algebras +1204.3085 Mesoscale and Nanoscale Physics +1204.4471 Strongly Correlated Electrons +1204.4844 +1204.6253 +1205.1379 +1205.3034 +1205.3396 Probability +1205.3494 Cosmology and Nongalactic Astrophysics +1205.4097 Applications +1205.4588 Portfolio Management +1205.6830 Operator Algebras +1206.0234 +1206.0237 Quantum Gases +1206.1736 Mesoscale and Nanoscale Physics +1206.2156 +1206.2515 Superconductivity +1206.2685 Strongly Correlated Electrons +1206.4579 Superconductivity +1206.4716 Dynamical Systems +1207.0432 Combinatorics +1207.1286 Cosmology and Nongalactic Astrophysics +1207.1870 Cosmology and Nongalactic Astrophysics +1207.2717 Materials Science +1207.2788 Physics and Society +1208.1005 +1208.1823 Statistics Theory +1208.3257 Materials Science +1208.3422 Machine Learning +1208.4040 +1208.4125 Combinatorics +1208.4201 +1208.5255 Phenomenology +1208.5307 Superconductivity +1208.5605 +1208.6207 Superconductivity +1208.6550 Commutative Algebra +1209.1028 Physics and Society +1209.2263 Mesoscale and Nanoscale Physics +1209.4387 Optimization and Control +1209.4840 +1209.6246 Atomic and Molecular Clusters +1210.0439 Cosmology and Nongalactic Astrophysics +1210.1521 Cosmology and Nongalactic Astrophysics +1210.2569 +1210.3243 Cosmology and Nongalactic Astrophysics +1210.4931 Cosmology and Nongalactic Astrophysics +1210.5982 Superconductivity +1210.7314 Earth and Planetary Astrophysics +1210.7425 Optimization and Control +1210.7946 Phenomenology +1211.0539 Mesoscale and Nanoscale Physics +1211.1963 +1211.2168 Cosmology and Nongalactic Astrophysics +1211.3062 +1211.3292 Statistics Theory +1211.3772 +1211.4119 Statistical Mechanics +1211.5149 Solar and Stellar Astrophysics +1212.0447 Genomics +1212.2916 Combinatorics +1212.3645 +1212.5832 Representation Theory +1212.5937 Combinatorics +1212.6642 Algebraic Geometry +1212.6793 Exactly Solvable and Integrable Systems +1301.0393 Combinatorics +1301.0711 Plasma Physics +1301.0768 Statistics Theory +1301.1058 Numerical Analysis +1301.1194 Phenomenology +1301.1222 Accelerator Physics +1301.1306 Differential Geometry +1301.1332 Databases +1301.1336 Numerical Analysis +1301.1339 Astrophysics of Galaxies +1301.1351 Solar and Stellar Astrophysics +1301.1353 Quantum Gases +1301.1354 Atomic Physics +1301.1356 Combinatorics +1301.1358 +1301.1360 Probability +1301.1364 General Physics +1301.1366 Functional Analysis +1301.1373 Information Theory +1301.1374 Computer Vision and Pattern Recognition +1301.1383 Phenomenology +1301.1384 Phenomenology +1301.1385 Artificial Intelligence +1301.1386 Programming Languages +1301.1387 Artificial Intelligence +1301.1388 Artificial Intelligence +1301.1389 Artificial Intelligence +1301.1390 Logic in Computer Science +1301.1392 Artificial Intelligence +1301.1393 Logic in Computer Science +1301.1394 Logic in Computer Science +1301.1395 Logic in Computer Science +1301.1396 +1301.1398 Geometric Topology +1301.1401 Number Theory +1301.1404 Group Theory +1301.1408 Combinatorics +1301.1410 Phenomenology +1301.1412 +1301.1413 Instrumentation and Methods for Astrophysics +1301.1420 Computer Science and Game Theory +1301.1424 Number Theory +1301.1426 Populations and Evolution +1301.1428 Applications +1301.1429 Physics and Society +1301.1431 Mesoscale and Nanoscale Physics +1301.1433 Materials Science +1301.1434 Number Theory +1301.1445 Analysis of PDEs +1301.1446 Applications +1301.1452 Combinatorics +1301.1453 Group Theory +1301.1456 Analysis of PDEs +1301.1457 Phenomenology +1301.1460 Pattern Formation and Solitons +1301.1463 Applications +1301.1464 Data Analysis, Statistics and Probability +1301.1466 Probability +1301.1471 Risk Management +1301.1473 Optics +1301.1474 Cosmology and Nongalactic Astrophysics +1301.1479 +1301.1481 Probability +1301.1490 Analysis of PDEs +1301.1492 Solar and Stellar Astrophysics +1301.1493 Discrete Mathematics +1301.1494 Experiment +1301.1497 Solar and Stellar Astrophysics +1301.1499 Probability +1301.1502 Artificial Intelligence +1301.1503 Disordered Systems and Neural Networks +1301.1505 Methodology +1301.1509 +1301.1510 Earth and Planetary Astrophysics +1301.1514 Formal Languages and Automata Theory +1301.1517 Data Structures and Algorithms +1301.1522 Analysis of PDEs +1301.1525 Applications +1301.1527 Applications +1301.1528 Data Analysis, Statistics and Probability +1301.1530 Applications +1301.1533 Dynamical Systems +1301.1534 Social and Information Networks +1301.1543 Differential Geometry +1301.1545 Solar and Stellar Astrophysics +1301.1546 +1301.1549 Information Theory +1301.1551 Computer Vision and Pattern Recognition +1301.1556 Theory +1301.1558 Analysis of PDEs +1301.1562 Solar and Stellar Astrophysics +1301.1563 Digital Libraries +1301.1569 Populations and Evolution +1301.1571 Statistical Mechanics +1301.1572 Algebraic Topology +1301.1575 Databases +1301.1577 +1301.1578 Cryptography and Security +1301.1580 Differential Geometry +1301.1581 +1301.1584 Numerical Analysis +1301.1585 Dynamical Systems +1301.1586 Statistical Mechanics +1301.1590 Biomolecules +1301.1593 Biomolecules +1301.1596 Fluid Dynamics +1301.1603 Phenomenology +1301.1604 Combinatorics +1301.1608 Biomolecules +1301.1610 Mesoscale and Nanoscale Physics +1301.1611 Complex Variables +1301.1614 Materials Science +1301.1616 Strongly Correlated Electrons +1301.1617 Materials Science +1301.1622 Differential Geometry +1301.1623 Materials Science +1301.1629 Logic in Computer Science +1301.1633 Materials Science +1301.1636 General Physics +1301.1638 Formal Languages and Automata Theory +1301.1647 General Physics +1301.1650 Computation +1301.1656 Popular Physics +1301.1657 Biomolecules +1301.1660 High Energy Astrophysical Phenomena +1301.1664 Probability +1301.1671 Computer Vision and Pattern Recognition +astro-ph/0503296 +cond-mat/0009430 Materials Science +cond-mat/0408256 Disordered Systems and Neural Networks +math/0411179 Differential Geometry +math/0609029 Representation Theory +1308.1017 General Physics +0801.2800 Applications +0802.1684 +0807.0053 Methodology +0903.3302 Group Theory +0903.5492 Materials Science +0910.1377 +0912.3759 Cosmology and Nongalactic Astrophysics +0912.3769 Cosmology and Nongalactic Astrophysics +1001.1538 Geometric Topology +1002.1375 Strongly Correlated Electrons +1006.1002 Number Theory +1006.2599 Group Theory +1010.5647 Classical Analysis and ODEs +1012.3691 Strongly Correlated Electrons +1104.3071 Metric Geometry +1105.2079 Materials Science +1106.0983 K-Theory and Homology +1106.2790 Statistics Theory +1106.6293 Materials Science +1108.3954 Optics +1109.2077 +1109.4622 Combinatorics +1110.0367 Distributed, Parallel, and Cluster Computing +1110.2942 Dynamical Systems +1110.5332 +1111.3549 Analysis of PDEs +1111.3882 +1112.0040 Algebraic Topology +1112.2216 Combinatorics +1112.6069 Operator Algebras +1201.4512 Combinatorics +1201.6675 Distributed, Parallel, and Cluster Computing +1202.6233 Materials Science +1204.2576 Phenomenology +1204.5448 Algebraic Geometry +1205.2051 Distributed, Parallel, and Cluster Computing +1205.3294 +1205.4605 Distributed, Parallel, and Cluster Computing +1207.2587 Mesoscale and Nanoscale Physics +1207.4330 Dynamical Systems +1207.5111 Classical Analysis and ODEs +1207.6558 +1208.0181 Superconductivity +1208.1936 Geometric Topology +1208.2703 Geometric Topology +1209.0059 Symplectic Geometry +1209.0605 Materials Science +1209.1415 Numerical Analysis +1209.4429 +1209.5557 Combinatorics +1210.6943 Geometric Topology +1211.0079 +1211.1313 Dynamical Systems +1211.2370 Phenomenology +1211.4536 +1211.6355 Commutative Algebra +1212.0248 +1212.0269 Algebraic Geometry +1212.0655 Algebraic Topology +1212.1302 Probability +1212.2568 Cosmology and Nongalactic Astrophysics +1212.4016 Data Structures and Algorithms +1212.4475 +1212.5931 Lattice +1212.6561 Optimization and Control +1301.0122 +1301.0672 Probability +1301.0983 Cosmology and Nongalactic Astrophysics +1301.4150 Optics +1301.4441 +1301.4613 Exactly Solvable and Integrable Systems +1301.4695 Classical Physics +1301.4897 Operator Algebras +1301.4927 +1301.5948 Genomics +1302.2570 Distributed, Parallel, and Cluster Computing +1302.2792 Differential Geometry +1302.5453 +1302.6381 +1302.7149 Methodology +1302.7165 +1303.0053 Combinatorics +1303.0530 High Energy Astrophysical Phenomena +1303.0753 Theory +1303.3032 Algebraic Geometry +1303.4024 Superconductivity +1303.4041 Optics +1303.6058 Cosmology and Nongalactic Astrophysics +1303.7184 Functional Analysis +1304.1403 Functional Analysis +1304.2418 Artificial Intelligence +1304.2693 Representation Theory +1304.3697 Mesoscale and Nanoscale Physics +1304.4213 Mesoscale and Nanoscale Physics +1304.4938 Strongly Correlated Electrons +1304.6793 Commutative Algebra +1304.7285 Databases +1304.7592 Strongly Correlated Electrons +1304.8036 Probability +1305.1859 Optimization and Control +1305.2304 Functional Analysis +1305.3092 Symplectic Geometry +1305.6029 Strongly Correlated Electrons +1305.7026 +1305.7388 Statistics Theory +1306.0636 Numerical Analysis +1306.0925 +1306.1221 Other Condensed Matter +1306.2666 Strongly Correlated Electrons +1306.3082 Combinatorics +1306.3366 +1306.3424 Chemical Physics +1306.4810 Analysis of PDEs +1306.5290 Mesoscale and Nanoscale Physics +1306.6290 Functional Analysis +1306.6342 Phenomenology +1306.6343 Mesoscale and Nanoscale Physics +1306.6750 Astrophysics of Galaxies +1307.1841 Spectral Theory +1307.3625 Social and Information Networks +1307.3811 Multimedia +1307.4647 Optics +1307.4774 Atomic Physics +1307.6592 Strongly Correlated Electrons +1307.6793 +1307.6850 Theory +1307.8098 Phenomenology +1308.0324 Combinatorics +1308.0803 +1308.1410 Superconductivity +1308.2215 Superconductivity +1308.2660 +1308.3286 Complex Variables +1308.5005 +1309.0729 Materials Science +1309.1170 Mesoscale and Nanoscale Physics +1309.1470 Strongly Correlated Electrons +1309.3036 Theory +1309.3050 Theory +1309.3417 Atomic Physics +1309.3739 Group Theory +1309.3819 +1309.4137 Strongly Correlated Electrons +1309.4635 +1309.4709 Optimization and Control +1309.6594 Phenomenology +1309.7222 Risk Management +1310.0186 Algebraic Geometry +1310.0427 Earth and Planetary Astrophysics +1310.0792 Materials Science +1310.1607 Statistics Theory +1310.1925 Theory +1310.2910 Disordered Systems and Neural Networks +1310.4961 Strongly Correlated Electrons +1310.5098 Solar and Stellar Astrophysics +1310.5273 Atmospheric and Oceanic Physics +1310.5437 Differential Geometry +1310.5951 Methodology +1310.6271 Discrete Mathematics +1310.6635 Networking and Internet Architecture +1310.7643 Statistics Theory +1310.7829 Databases +1311.1447 Soft Condensed Matter +1311.1449 Differential Geometry +1311.1874 Complex Variables +1311.2844 Combinatorics +1311.4413 Phenomenology +1311.4519 Theory +1311.4641 +1311.5990 Biological Physics +1311.6004 +1312.0413 Rings and Algebras +1312.0734 +1312.1313 Numerical Analysis +1312.1674 Computational Complexity +1312.1853 Number Theory +1312.2595 Astrophysics of Galaxies +1312.3033 Materials Science +1312.3069 Combinatorics +1312.3626 Logic +1312.3744 Functional Analysis +1312.4119 Dynamical Systems +1312.4222 Symplectic Geometry +1312.4552 Robotics +1312.4641 +1312.4740 Computer Vision and Pattern Recognition +1312.4851 Computers and Society +1312.4870 Statistical Mechanics +1312.5272 Experiment +1312.5283 Number Theory +1312.5497 Phenomenology +1312.5674 +1312.5906 Complex Variables +1312.5988 Analysis of PDEs +1312.6102 Statistics Theory +1312.6118 Mesoscale and Nanoscale Physics +1312.6119 Systems and Control +1312.6122 Physics and Society +1312.6125 Theory +1312.6130 Artificial Intelligence +1312.6134 Artificial Intelligence +1312.6138 Artificial Intelligence +1312.6140 Artificial Intelligence +1312.6143 Artificial Intelligence +1312.6146 Artificial Intelligence +1312.6147 Dynamical Systems +1312.6149 Artificial Intelligence +1312.6150 Computer Vision and Pattern Recognition +1312.6151 Artificial Intelligence +1312.6156 Artificial Intelligence +1312.6159 Computer Vision and Pattern Recognition +1312.6160 +1312.6162 Combinatorics +1312.6164 +1312.6170 Distributed, Parallel, and Cluster Computing +1312.6175 Classical Analysis and ODEs +1312.6180 Learning +1312.6182 Mathematical Software +1312.6185 Populations and Evolution +1312.6186 Computer Vision and Pattern Recognition +1312.6193 Classical Analysis and ODEs +1312.6196 Theory +1312.6198 Logic +1312.6200 +1312.6201 Software Engineering +1312.6218 Number Theory +1312.6221 Optics +1312.6228 Experiment +1312.6231 Fluid Dynamics +1312.6233 Analysis of PDEs +1312.6235 Analysis of PDEs +1312.6237 Tissues and Organs +1312.6241 Theory +1312.6243 Analysis of PDEs +1312.6244 Optics +1312.6245 Mesoscale and Nanoscale Physics +1312.6246 Distributed, Parallel, and Cluster Computing +1312.6253 +1312.6254 Biomolecules +1312.6255 Number Theory +1312.6256 +1312.6258 Physics Education +1312.6259 Computers and Society +1312.6260 Data Structures and Algorithms +1312.6262 Analysis of PDEs +1312.6263 Rings and Algebras +1312.6265 Functional Analysis +1312.6273 Distributed, Parallel, and Cluster Computing +1312.6276 Classical Analysis and ODEs +1312.6277 Classical Analysis and ODEs +1312.6278 Classical Analysis and ODEs +1312.6282 Learning +1312.6285 Differential Geometry +1312.6286 Analysis of PDEs +1312.6288 Optics +1312.6291 Probability +1312.6292 Differential Geometry +1312.6293 Distributed, Parallel, and Cluster Computing +1312.6295 Differential Geometry +1312.6298 Mesoscale and Nanoscale Physics +1312.6301 Mesoscale and Nanoscale Physics +1312.6303 Chemical Physics +1312.6305 Computational Geometry +1312.6306 Materials Science +1312.6311 Differential Geometry +1312.6312 Mesoscale and Nanoscale Physics +1312.6314 Metric Geometry +1312.6316 Materials Science +1312.6319 Numerical Analysis +1312.6325 Mesoscale and Nanoscale Physics +1312.6327 Algebraic Topology +1312.6329 Combinatorics +1312.6331 Commutative Algebra +1312.6332 Number Theory +1312.6335 Physics and Society +1312.6336 Neurons and Cognition +1312.6337 Combinatorics +1312.6339 Adaptation and Self-Organizing Systems +1312.6341 Methodology +1312.6349 Cryptography and Security +1312.6350 Portfolio Management +1312.6354 Statistics Theory +1312.6357 +1312.6361 +1312.6366 Probability +1312.6370 Computer Vision and Pattern Recognition +1312.6371 Number Theory +1312.6374 Theory +1312.6386 Numerical Analysis +1312.6393 Cryptography and Security +1312.6394 Operator Algebras +1312.6396 Dynamical Systems +1312.6397 Methodology +1312.6410 Computer Vision and Pattern Recognition +1312.6412 Quantum Algebra +1312.6414 Methodology +1312.6417 Fluid Dynamics +1312.6420 Spectral Theory +1312.6421 Systems and Control +1312.6422 Geophysics +1312.6423 Differential Geometry +1312.6424 Algebraic Topology +1312.6426 Cryptography and Security +1312.6436 Symplectic Geometry +1312.6437 +1312.6446 Differential Geometry +1312.6448 Superconductivity +1312.6452 Quantum Gases +1312.6453 Strongly Correlated Electrons +1312.6459 Superconductivity +1312.6460 Numerical Analysis +1312.6466 Statistics Theory +1312.6470 +1312.6471 Methodology +1312.6479 +1312.6480 Phenomenology +1312.6481 Applications +1312.6485 Distributed, Parallel, and Cluster Computing +1312.6492 Optimization and Control +1312.6495 Analysis of PDEs +1312.6497 Multimedia +1312.6498 Analysis of PDEs +1312.6500 Optimization and Control +1312.6501 Networking and Internet Architecture +1312.6502 Functional Analysis +1312.6505 Experiment +1312.6508 Optimization and Control +1312.6509 Materials Science +1312.6511 Soft Condensed Matter +1312.6512 Symplectic Geometry +1312.6513 Mesoscale and Nanoscale Physics +1312.6517 Atomic Physics +1312.6524 Probability +1312.6532 Cryptography and Security +1312.6536 Methodology +1312.6537 Combinatorics +1312.6541 Number Theory +1312.6547 Algebraic Geometry +1312.6549 Cryptography and Security +1312.6552 Social and Information Networks +1312.6556 Physics Education +1312.6557 Physics Education +1312.6558 Artificial Intelligence +1312.6559 Theory +1312.6560 Representation Theory +1312.6564 Cryptography and Security +1312.6565 Information Retrieval +1312.6568 Programming Languages +1312.6569 Functional Analysis +1312.6571 +1312.6573 Robotics +1312.6584 +1312.6590 Fluid Dynamics +1312.6598 Analysis of PDEs +1312.6599 Computer Vision and Pattern Recognition +1312.6602 General Mathematics +1312.6605 Superconductivity +1312.6606 Physics and Society +1312.6609 Neural and Evolutionary Computing +1312.6612 Rings and Algebras +1312.6615 Computer Vision and Pattern Recognition +1312.6618 Accelerator Physics +1312.6622 Superconductivity +1312.6623 Number Theory +1312.6628 Materials Science +1312.6631 Numerical Analysis +1312.6633 Biomolecules +1312.6635 Social and Information Networks +1312.6641 Rings and Algebras +1312.6642 Superconductivity +1312.6647 Dynamical Systems +1312.6648 Cosmology and Nongalactic Astrophysics +1312.6652 Data Structures and Algorithms +1312.6653 History and Philosophy of Physics +1312.6655 +1312.6660 Neurons and Cognition +1312.6666 Atomic Physics +1312.6670 Strongly Correlated Electrons +1312.6674 Differential Geometry +math/0508602 Statistics Theory +math/0601354 Dynamical Systems +quant-ph/0407006 +quant-ph/0407180 +quant-ph/0407196 +quant-ph/0501068 +0705.1806 Combinatorics +0806.0872 Symplectic Geometry +0906.1554 Statistical Mechanics +1004.2476 Geometric Topology +1007.5426 Combinatorics +1009.2990 Representation Theory +1102.2689 Combinatorics +1102.3901 Formal Languages and Automata Theory +1103.1483 Algebraic Topology +1103.4151 Cosmology and Nongalactic Astrophysics +1103.5099 Mesoscale and Nanoscale Physics +1104.0274 Superconductivity +1104.1192 Probability +1105.5588 Algebraic Geometry +1105.6049 Logic +1106.2647 Artificial Intelligence +1107.0146 Representation Theory +1109.3065 Quantum Algebra +1109.5009 +1111.0288 Superconductivity +1111.4705 Symplectic Geometry +1112.1864 Superconductivity +1112.3264 Astrophysics of Galaxies +1201.3531 Functional Analysis +1203.2385 Differential Geometry +1203.3757 Optimization and Control +1203.5526 Materials Science +1204.0400 Theory +1204.1082 Data Structures and Algorithms +1204.1310 Dynamical Systems +1204.1877 General Physics +1204.5440 Rings and Algebras +1204.5492 Cosmology and Nongalactic Astrophysics +1205.6007 Disordered Systems and Neural Networks +1206.0406 Combinatorics +1206.0931 General Physics +1206.1183 Strongly Correlated Electrons +1206.2397 +1206.4188 Cosmology and Nongalactic Astrophysics +1206.4819 Materials Science +1206.5078 General Physics +1206.6209 Distributed, Parallel, and Cluster Computing +1206.6219 Distributed, Parallel, and Cluster Computing +1207.0725 Disordered Systems and Neural Networks +1207.3336 Numerical Analysis +1207.3835 Strongly Correlated Electrons +1207.4844 Classical Analysis and ODEs +1207.5057 Superconductivity +1207.5272 Physics and Society +1207.6184 Statistics Theory +1207.6563 Adaptation and Self-Organizing Systems +1208.3961 Algebraic Topology +1208.5554 Artificial Intelligence +1208.5775 Algebraic Geometry +1208.5819 Complex Variables +1209.0125 Digital Libraries +1209.0399 Optics +1209.3688 Solar and Stellar Astrophysics +1210.0642 +1210.0665 Mesoscale and Nanoscale Physics +1210.0687 Quantum Gases +1210.0851 Number Theory +1210.3146 Combinatorics +1210.4217 Number Theory +1210.4502 Neural and Evolutionary Computing +1210.5698 Mesoscale and Nanoscale Physics +1211.0495 Materials Science +1211.4136 Materials Science +1211.4792 +1211.7195 Analysis of PDEs +1212.0996 Algebraic Geometry +1212.1989 +1212.4117 Mesoscale and Nanoscale Physics +1212.4316 Theory +1212.4351 Differential Geometry +1212.4767 Methodology +1212.5422 Mesoscale and Nanoscale Physics +1212.6714 Differential Geometry +1212.6876 Theory +1301.0165 +1301.0782 Combinatorics +1301.1683 Phenomenology +1301.1834 +1301.3247 Phenomenology +1301.3369 Information Theory +1301.3429 +1301.3481 Mesoscale and Nanoscale Physics +1301.6439 Strongly Correlated Electrons +1302.0090 +1302.4113 Algebraic Geometry +1302.5261 Classical Analysis and ODEs +1302.5874 Phenomenology +1302.6032 Theory +1302.6139 +1302.6742 Physics and Society +1303.1076 Functional Analysis +1303.1545 Geometric Topology +1303.3415 Statistical Mechanics +1303.3519 Strongly Correlated Electrons +1303.3768 +1303.6733 Experiment +1303.7447 Mesoscale and Nanoscale Physics +1304.0937 Algebraic Geometry +1304.1194 Phenomenology +1304.1255 Probability +1304.1799 Mesoscale and Nanoscale Physics +1304.1937 Soft Condensed Matter +1304.2782 Mesoscale and Nanoscale Physics +1304.3870 Earth and Planetary Astrophysics +1304.4268 Superconductivity +1304.5322 +1304.7417 Genomics +1304.8041 Cosmology and Nongalactic Astrophysics +1305.0362 Materials Science +1305.0446 Populations and Evolution +1305.0744 Group Theory +1305.2009 Combinatorics +1305.2195 Instrumentation and Methods for Astrophysics +1305.2255 Strongly Correlated Electrons +1305.2692 Analysis of PDEs +1305.3121 Symplectic Geometry +1305.3273 Cosmology and Nongalactic Astrophysics +1305.3339 Experiment +1305.3341 +1305.3457 Symplectic Geometry +1305.3484 Soft Condensed Matter +1305.4011 Complex Variables +1305.5614 Theory +1305.5759 +1306.0075 Cryptography and Security +1306.0447 +1306.1881 Multiagent Systems +1306.2631 Materials Science +1306.2801 Neural and Evolutionary Computing +1306.4051 Phenomenology +1306.4283 Algebraic Geometry +1306.4942 Biological Physics +1306.4956 Distributed, Parallel, and Cluster Computing +1306.6274 Materials Science +1306.6275 +1306.6642 Cosmology and Nongalactic Astrophysics +1307.0091 Superconductivity +1307.1297 Dynamical Systems +1307.1372 Neural and Evolutionary Computing +1307.2003 Earth and Planetary Astrophysics +1307.2511 Theory +1307.2792 Mesoscale and Nanoscale Physics +1307.3652 +1307.6096 Mesoscale and Nanoscale Physics +1307.7503 Algebraic Geometry +1307.7556 Materials Science +1308.0186 Theory +1308.0211 Computational Complexity +1308.1477 Phenomenology +1308.1704 Pricing of Securities +1308.1922 Soft Condensed Matter +1308.2450 Computational Complexity +1308.2617 Computational Complexity +1308.2655 Learning +1308.2804 Astrophysics of Galaxies +1308.3298 Functional Analysis +1308.3387 Soft Condensed Matter +1308.3703 Solar and Stellar Astrophysics +1308.3710 Representation Theory +1308.3711 Soft Condensed Matter +1308.3718 Fluid Dynamics +1308.3720 Cosmology and Nongalactic Astrophysics +1308.3722 Fluid Dynamics +1308.3724 Superconductivity +1308.3725 Geometric Topology +1308.3726 Accelerator Physics +1308.3727 Physics Education +1308.3728 Statistics Theory +1308.3729 Physics Education +1308.3730 Operator Algebras +1308.3733 Atomic Physics +1308.3740 Applications +1308.3744 Chemical Physics +1308.3745 Human-Computer Interaction +1308.3750 Learning +1308.3752 Astrophysics of Galaxies +1308.3754 Number Theory +1308.3755 Probability +1308.3756 Probability +1308.3757 Phenomenology +1308.3759 Probability +1308.3763 Cryptography and Security +1308.3769 Combinatorics +1308.3772 Information Theory +1308.3775 +1308.3776 Statistical Mechanics +1308.3778 Computer Science and Game Theory +1308.3780 Computer Science and Game Theory +1308.3783 Dynamical Systems +1308.3784 Artificial Intelligence +1308.3785 Computation and Language +1308.3788 Differential Geometry +1308.3790 Logic +1308.3793 Physics and Society +1308.3796 +1308.3797 Phenomenology +1308.3804 Number Theory +1308.3806 Number Theory +1308.3807 +1308.3811 Mesoscale and Nanoscale Physics +1308.3816 Rings and Algebras +1308.3818 Learning +1308.3821 Combinatorics +1308.3823 Combinatorics +1308.3824 Biomolecules +1308.3826 Rings and Algebras +1308.3830 Computation and Language +1308.3834 Representation Theory +1308.3835 Mesoscale and Nanoscale Physics +1308.3837 Mesoscale and Nanoscale Physics +1308.3842 Networking and Internet Architecture +1308.3844 Theory +1308.3846 Networking and Internet Architecture +1308.3855 Performance +1308.3856 Solar and Stellar Astrophysics +1308.3857 Cosmology and Nongalactic Astrophysics +1308.3861 Statistics Theory +1308.3863 Theory +1308.3864 Algebraic Geometry +1308.3866 Materials Science +1308.3867 Combinatorics +1308.3872 Computational Geometry +1308.3873 Materials Science +1308.3874 Multiagent Systems +1308.3876 Social and Information Networks +1308.3883 Numerical Analysis +1308.3885 Networking and Internet Architecture +1308.3894 Numerical Analysis +1308.3897 Logic +1308.3898 Optimization and Control +1308.3900 Artificial Intelligence +1308.3902 Rings and Algebras +1308.3905 Classical Physics +1308.3906 Classical Physics +1308.3909 Analysis of PDEs +1308.3915 Methodology +1308.3916 Systems and Control +1308.3917 Graphics +1308.3918 Geophysics +1308.3924 Human-Computer Interaction +1308.3937 Programming Languages +1308.3938 Programming Languages +1308.3939 Programming Languages +1308.3940 Programming Languages +1308.3941 Programming Languages +1308.3945 Representation Theory +1308.3946 Data Structures and Algorithms +1308.3949 Algebraic Topology +1308.3950 Chemical Physics +1308.3954 Classical Analysis and ODEs +1308.3955 Group Theory +1308.3957 Information Theory +1308.3958 Astrophysics of Galaxies +1308.3959 Probability +1308.3966 Statistical Finance +1308.3976 Instrumentation and Methods for Astrophysics +1308.3981 Optics +1308.3985 Information Theory +1308.3986 Phenomenology +1308.3991 Soft Condensed Matter +1308.3999 Combinatorics +1308.4000 Analysis of PDEs +1308.4001 Soft Condensed Matter +1308.4008 Artificial Intelligence +1308.4011 Software Engineering +1308.4018 Numerical Analysis +1308.4019 General Topology +1308.4021 +1308.4024 Combinatorics +1308.4035 Group Theory +1308.4038 Physics and Society +1308.4040 General Mathematics +1308.4042 Materials Science +1308.4045 Software Engineering +1308.4047 Algebraic Topology +1308.4048 Databases +1308.4056 Representation Theory +1308.4062 Analysis of PDEs +1308.4065 Mesoscale and Nanoscale Physics +1308.4066 Disordered Systems and Neural Networks +1308.4067 Combinatorics +1308.4070 Materials Science +1308.4073 Analysis of PDEs +1308.4078 Spectral Theory +1308.4079 Applications +1308.4081 Combinatorics +1308.4086 Solar and Stellar Astrophysics +1308.4087 Rings and Algebras +1308.4089 Quantum Gases +1308.4090 Quantum Gases +1308.4095 Differential Geometry +1308.4098 Populations and Evolution +1308.4101 Computer Science and Game Theory +1308.4102 Genomics +1308.4108 Combinatorics +1308.4109 Analysis of PDEs +1308.4110 Numerical Analysis +1308.4111 Category Theory +1308.4113 Logic in Computer Science +1308.4115 High Energy Astrophysical Phenomena +1308.4116 Differential Geometry +1308.4120 Combinatorics +gr-qc/9908023 +0901.0722 Phenomenology +0903.1126 Phenomenology +1005.3736 +1006.2523 Information Theory +1101.4565 Analysis of PDEs +1106.2007 Physics and Society +1109.4698 Number Theory +1110.1683 Statistical Mechanics +1111.2105 Metric Geometry +1112.4720 +1112.5765 Phenomenology +1202.3560 +1202.4330 General Topology +1202.6228 Machine Learning +1203.6796 Commutative Algebra +1204.4665 Phenomenology +1206.0839 Optimization and Control +1206.0957 Quantum Gases +1206.3969 Representation Theory +1206.5056 Cosmology and Nongalactic Astrophysics +1207.3929 Solar and Stellar Astrophysics +1207.4699 Quantum Gases +1207.4749 Portfolio Management +1207.5381 Combinatorics +1208.2625 Cosmology and Nongalactic Astrophysics +1208.6324 Formal Languages and Automata Theory +1209.0545 Phenomenology +1209.5657 Numerical Analysis +1210.2714 +1210.4663 Databases +1210.6073 Statistical Mechanics +1210.6298 Logic +1210.8377 Strongly Correlated Electrons +1211.1579 Optics +1211.6209 Phenomenology +1211.6957 Differential Geometry +1211.7052 Statistical Mechanics +1212.4370 Number Theory +1301.3161 Mesoscale and Nanoscale Physics +1301.4696 Superconductivity +1301.5729 Geometric Topology +1301.6617 +1301.6754 Phenomenology +1302.0157 Strongly Correlated Electrons +1302.2034 Analysis of PDEs +1302.2081 +1302.3322 Optics +1302.7279 Cosmology and Nongalactic Astrophysics +1303.2020 Mesoscale and Nanoscale Physics +1303.5462 Plasma Physics +1303.6255 Cosmology and Nongalactic Astrophysics +1303.6713 Materials Science +1304.3584 +1304.5889 Strongly Correlated Electrons +1304.7188 Quantum Gases +1305.0655 Statistical Mechanics +1305.1915 Dynamical Systems +1305.3218 Computational Complexity +1305.5833 Mesoscale and Nanoscale Physics +1305.6339 Digital Libraries +1305.6988 Pricing of Securities +1306.0641 Materials Science +1306.0731 Lattice +1306.1113 Analysis of PDEs +1306.1154 Information Theory +1306.1268 +1306.2478 Differential Geometry +1306.2802 Portfolio Management +1306.4057 +1306.4100 Numerical Analysis +1306.4324 Theory +1306.5426 Phenomenology +1306.5449 Algebraic Topology +1306.6164 Number Theory +1306.6456 Phenomenology +1307.1378 +1307.2995 Instrumentation and Methods for Astrophysics +1307.3191 Mesoscale and Nanoscale Physics +1307.3757 Data Structures and Algorithms +1307.4119 Phenomenology +1307.4404 +1307.4704 High Energy Astrophysical Phenomena +1307.5273 +1307.5514 Theory +1307.6115 Mesoscale and Nanoscale Physics +1307.6613 Strongly Correlated Electrons +1307.8160 +1308.1013 Materials Science +1308.1193 Chemical Physics +1308.2687 Mesoscale and Nanoscale Physics +1308.3425 Mesoscale and Nanoscale Physics +1308.4297 Phenomenology +1308.4339 Superconductivity +1308.5392 Representation Theory +1309.0578 +1309.0727 Quantum Gases +1309.3197 Multiagent Systems +1309.4226 Number Theory +1309.5510 +1310.0583 Experiment +1310.0830 Biological Physics +1310.0842 +1310.0935 Materials Science +1310.3219 Dynamical Systems +1310.3583 Fluid Dynamics +1310.3839 Experiment +1310.4475 Networking and Internet Architecture +1310.4503 Earth and Planetary Astrophysics +1310.4800 Analysis of PDEs +1310.4867 Quantum Algebra +1310.5054 Geometric Topology +1310.5163 Optimization and Control +1310.5168 Optimization and Control +1310.5257 Statistics Theory +1310.5322 Differential Geometry +1310.5385 Number Theory +1310.5411 Emerging Technologies +1310.5596 History and Overview +1310.5598 Commutative Algebra +1310.5692 Phenomenology +1310.5694 +1310.5697 Other Computer Science +1310.5698 Information Retrieval +1310.5705 Experiment +1310.5714 Computational Complexity +1310.5719 Chemical Physics +1310.5724 Soft Condensed Matter +1310.5725 Phenomenology +1310.5730 Optimization and Control +1310.5736 Optics +1310.5738 Machine Learning +1310.5743 Statistics Theory +1310.5745 Cosmology and Nongalactic Astrophysics +1310.5751 Probability +1310.5754 Theory +1310.5755 Computer Vision and Pattern Recognition +1310.5757 Analysis of PDEs +1310.5765 Cosmology and Nongalactic Astrophysics +1310.5766 Probability +1310.5767 Computer Vision and Pattern Recognition +1310.5777 Digital Libraries +1310.5781 Robotics +1310.5782 Algebraic Geometry +1310.5786 Data Structures and Algorithms +1310.5792 Logic +1310.5793 Artificial Intelligence +1310.5794 Networking and Internet Architecture +1310.5797 Lattice +1310.5799 Materials Science +1310.5801 Complex Variables +1310.5804 Solar and Stellar Astrophysics +1310.5805 Networking and Internet Architecture +1310.5806 Physics and Society +1310.5810 Soft Condensed Matter +1310.5812 Digital Libraries +1310.5813 Materials Science +1310.5814 Digital Libraries +1310.5815 Digital Libraries +1310.5816 Digital Libraries +1310.5819 +1310.5821 Probability +1310.5824 Algebraic Topology +1310.5827 Analysis of PDEs +1310.5831 Analysis of PDEs +1310.5838 Numerical Analysis +1310.5839 Distributed, Parallel, and Cluster Computing +1310.5841 Databases +1310.5843 Phenomenology +1310.5845 Probability +1310.5848 Networking and Internet Architecture +1310.5849 Probability +1310.5858 Phenomenology +1310.5869 Algebraic Topology +1310.5871 Solar and Stellar Astrophysics +1310.5880 Numerical Analysis +1310.5882 Combinatorics +1310.5886 Group Theory +1310.5888 Optics +1310.5892 Digital Libraries +1310.5895 Information Theory +1310.5896 Cryptography and Security +1310.5897 Differential Geometry +1310.5902 Cryptography and Security +1310.5903 Analysis of PDEs +1310.5905 Numerical Analysis +1310.5907 Analysis of PDEs +1310.5908 Analysis of PDEs +1310.5909 Group Theory +1310.5910 Populations and Evolution +1310.5911 High Energy Astrophysical Phenomena +1310.5916 Logic +1310.5922 Lattice +1310.5925 Analysis of PDEs +1310.5931 Functional Analysis +1310.5936 Chaotic Dynamics +1310.5937 Pattern Formation and Solitons +1310.5941 +1310.5944 Algebraic Geometry +1310.5947 Chaotic Dynamics +1310.5948 Adaptation and Self-Organizing Systems +1310.5956 Optics +1310.5957 Information Theory +1310.5960 Networking and Internet Architecture +1310.5962 Software Engineering +1310.5965 Computer Vision and Pattern Recognition +1310.5968 Neurons and Cognition +1310.5969 Optics +1310.5972 Optics +1310.5974 Phenomenology +1310.5980 Networking and Internet Architecture +1310.5981 Algebraic Geometry +1310.5985 Networking and Internet Architecture +1310.5990 +1310.5993 Operator Algebras +1310.5999 Computer Vision and Pattern Recognition +1310.6004 Optimization and Control +1310.6008 Computational Complexity +1310.6009 Computational Complexity +1310.6013 Combinatorics +1310.6018 Soft Condensed Matter +1310.6019 Data Structures and Algorithms +1310.6023 Probability +math-ph/0606029 +math/0102227 Probability +0711.1928 Number Theory +0801.3974 Algebraic Geometry +0807.3127 Theory +0810.2516 +0903.3559 Mesoscale and Nanoscale Physics +0909.2184 Algebraic Geometry +0911.3480 Phenomenology +1004.4500 Mesoscale and Nanoscale Physics +1005.2056 Complex Variables +1008.3390 Phenomenology +1010.4540 Soft Condensed Matter +1011.0319 Probability +1012.3856 Mesoscale and Nanoscale Physics +1012.4650 Mesoscale and Nanoscale Physics +1103.3889 Probability +1104.5088 Tissues and Organs +1107.0587 Adaptation and Self-Organizing Systems +1107.2101 Information Theory +1107.2829 Differential Geometry +1107.3762 Mesoscale and Nanoscale Physics +1107.5703 Superconductivity +1108.3556 Data Structures and Algorithms +1108.5121 Strongly Correlated Electrons +1109.5128 +1109.6437 Information Theory +1109.6803 Dynamical Systems +1110.2345 Statistics Theory +1110.2679 Strongly Correlated Electrons +1110.4685 Strongly Correlated Electrons +1110.4935 Mesoscale and Nanoscale Physics +1110.6164 +1111.1780 Optimization and Control +1111.4921 +1111.5387 Chemical Physics +1111.6314 Operator Algebras +1111.6583 Numerical Analysis +1112.5795 Dynamical Systems +1201.0536 Algebraic Geometry +1201.0644 Algebraic Geometry +1201.2328 Soft Condensed Matter +1201.3035 Numerical Analysis +1201.4463 Phenomenology +1202.0747 Information Theory +1203.3810 Materials Science +1203.5653 Lattice +1204.1570 Theory +1204.5048 Differential Geometry +1204.5242 +1204.6735 Applications +1205.0224 Soft Condensed Matter +1205.0511 Strongly Correlated Electrons +1205.0852 Cryptography and Security +1205.1396 Metric Geometry +1205.1690 Information Theory +1205.2114 Social and Information Networks +1205.4861 Superconductivity +1205.5487 Computational Physics +1206.0063 Cosmology and Nongalactic Astrophysics +1206.1084 +1206.1150 Mesoscale and Nanoscale Physics +1206.1521 Phenomenology +1206.2455 Mesoscale and Nanoscale Physics +1207.1679 +1207.2342 Solar and Stellar Astrophysics +1207.2719 Probability +1207.3020 Mesoscale and Nanoscale Physics +1207.4096 Systems and Control +1207.4299 Mesoscale and Nanoscale Physics +1207.4745 Mesoscale and Nanoscale Physics +1207.5349 Soft Condensed Matter +1207.6881 +1207.7112 Superconductivity +1208.0100 Theory +1208.1371 Mesoscale and Nanoscale Physics +1208.1441 +1208.2630 Phenomenology +1208.3298 Phenomenology +1208.3390 Information Theory +1208.3408 Cosmology and Nongalactic Astrophysics +1208.4277 Cosmology and Nongalactic Astrophysics +1208.4574 Mesoscale and Nanoscale Physics +1208.4749 Rings and Algebras +1208.6547 Cosmology and Nongalactic Astrophysics +1209.0196 Geophysics +1209.0426 Neurons and Cognition +1209.2157 +1209.4644 Strongly Correlated Electrons +1209.4863 +1209.5134 Phenomenology +1210.0944 +1210.0969 Theory +1210.2645 Experiment +1210.3539 Logic in Computer Science +1210.3760 Theory +1210.4138 Optics +1210.5963 Lattice +1211.1758 Algebraic Geometry +1211.2871 Superconductivity +1211.4165 Rings and Algebras +1211.4215 Number Theory +1211.4831 Experiment +1211.5050 Symplectic Geometry +1211.5102 Experiment +1211.7119 Astrophysics of Galaxies +1212.0610 Databases +1212.0627 Phenomenology +1212.5362 +1212.6097 +1301.0787 Theory +1301.0839 Chemical Physics +1301.0938 Probability +1301.1011 Spectral Theory +1301.1229 Differential Geometry +1301.1442 Differential Geometry +1301.1589 Statistical Mechanics +1301.1613 Analysis of PDEs +1301.1619 Materials Science +1301.1620 Materials Science +1301.1635 Materials Science +1301.1676 +1301.1679 Cosmology and Nongalactic Astrophysics +1301.1686 Cosmology and Nongalactic Astrophysics +1301.1699 +1301.1700 Experiment +1301.1701 Information Theory +1301.1704 Mathematical Software +1301.1707 Numerical Analysis +1301.1709 Analysis of PDEs +1301.1710 Populations and Evolution +1301.1711 Optimization and Control +1301.1712 Information Theory +1301.1721 Accelerator Physics +1301.1722 Learning +1301.1730 Quantitative Methods +1301.1734 Superconductivity +1301.1739 Cryptography and Security +1301.1741 Superconductivity +1301.1746 Cryptography and Security +1301.1749 Classical Analysis and ODEs +1301.1751 Data Structures and Algorithms +1301.1752 Combinatorics +1301.1759 +1301.1761 +1301.1765 Lattice +1301.1767 +1301.1770 Rings and Algebras +1301.1773 Phenomenology +1301.1775 Combinatorics +1301.1781 Dynamical Systems +1301.1785 Algebraic Topology +1301.1790 Combinatorics +1301.1794 Combinatorics +1301.1799 Digital Libraries +1301.1802 Functional Analysis +1301.1805 Statistical Mechanics +1301.1815 Number Theory +1301.1817 Applications +1301.1821 Solar and Stellar Astrophysics +1301.1822 Algebraic Geometry +1301.1827 Dynamical Systems +1301.1829 Biological Physics +1301.1830 Astrophysics of Galaxies +1301.1831 +1301.1832 Materials Science +1301.1835 Biological Physics +1301.1838 Statistical Mechanics +1301.1843 Quantum Algebra +1301.1846 Algebraic Geometry +1301.1849 Optics +1301.1851 Mesoscale and Nanoscale Physics +1301.1865 Algebraic Geometry +1301.1866 Algebraic Geometry +1301.1870 Combinatorics +1301.1873 Discrete Mathematics +1301.1877 Lattice +1301.1886 Software Engineering +1301.1888 Algebraic Geometry +1301.1892 Popular Physics +1301.1893 Statistical Finance +1301.1894 Multimedia +1301.1897 Computer Vision and Pattern Recognition +1301.1899 General Physics +1301.1902 Materials Science +1301.1903 Materials Science +1301.1907 Instrumentation and Methods for Astrophysics +1301.1908 Astrophysics of Galaxies +1301.1912 Cryptography and Security +1301.1914 Lattice +1301.1915 Statistical Mechanics +1301.1917 Systems and Control +1301.1918 Information Theory +1301.1919 Machine Learning +1301.1920 Solar and Stellar Astrophysics +1301.1921 Solar and Stellar Astrophysics +1301.1922 Solar and Stellar Astrophysics +1301.1929 Solar and Stellar Astrophysics +1301.1932 Sound +1301.1933 +1301.1935 Optimization and Control +1301.1936 Learning +1301.1937 History and Overview +1301.1938 Quantum Gases +1301.1939 Mesoscale and Nanoscale Physics +1301.1940 Representation Theory +1301.1945 Materials Science +1301.1946 Phenomenology +1301.1947 Analysis of PDEs +1301.1950 Computation and Language +1301.1957 High Energy Astrophysical Phenomena +1301.1958 Atomic and Molecular Clusters +1301.1962 Optics +1301.1965 +math/0407113 Algebraic Geometry +math/9904014 Algebraic Geometry +0801.1348 Other Condensed Matter +1002.0541 Theory +1002.0759 Complex Variables +1002.3877 Theory +1011.1567 Probability +1103.0558 Phenomenology +1103.1371 Probability +1104.2762 Probability +1105.5156 Instrumentation and Methods for Astrophysics +1106.6066 Theory +1107.5504 Theory +1108.4662 Complex Variables +1108.5627 Complex Variables +1109.5199 Dynamical Systems +1109.6607 Differential Geometry +1110.3528 Dynamical Systems +1111.0914 Geometric Topology +1112.2632 Geometric Topology +1201.2661 +1201.3569 Probability +1202.6423 Information Theory +1204.5353 +1205.1355 Phenomenology +1206.0650 +1207.0691 Strongly Correlated Electrons +1209.0699 Operator Algebras +1209.0864 Systems and Control +1209.1409 Theory +1209.4349 Strongly Correlated Electrons +1210.3948 Classical Physics +1210.5640 Representation Theory +1210.8063 +1212.1006 +1212.2316 Information Theory +1212.4672 +1301.5327 Spectral Theory +1301.5564 Materials Science +1302.2853 +1302.3406 Theory +1302.4295 Combinatorics +1302.4508 Strongly Correlated Electrons +1302.6414 Atomic Physics +1302.7220 Machine Learning +1303.3805 Physics and Society +1303.4478 Mesoscale and Nanoscale Physics +1304.0335 Quantum Gases +1304.0483 Phenomenology +1304.3012 Quantum Gases +1304.5094 Cosmology and Nongalactic Astrophysics +1304.6278 +1304.6606 Geometric Topology +1305.3180 Mesoscale and Nanoscale Physics +1305.3260 +1305.3644 Materials Science +1305.4272 Operator Algebras +1305.4547 General Mathematics +1305.4549 Algebraic Geometry +1305.5625 Information Theory +1305.6570 Atomic Physics +1305.6944 Plasma Physics +1305.7296 Adaptation and Self-Organizing Systems +1305.7479 Theory +1306.0026 Logic in Computer Science +1306.1496 Theory +1306.1873 Materials Science +1306.3249 Symplectic Geometry +1306.3881 Lattice +1306.4002 Mesoscale and Nanoscale Physics +1306.4585 High Energy Astrophysical Phenomena +1306.5389 High Energy Astrophysical Phenomena +1306.5665 +1306.6034 +1306.6536 +1307.0519 Strongly Correlated Electrons +1307.0617 Mesoscale and Nanoscale Physics +1307.0829 Strongly Correlated Electrons +1307.4020 +1307.6439 Spectral Theory +1307.7999 Phenomenology +1308.2199 Cosmology and Nongalactic Astrophysics +1308.2502 Strongly Correlated Electrons +1308.2548 Probability +1308.2880 Superconductivity +1308.4137 Cosmology and Nongalactic Astrophysics +1308.4315 Chemical Physics +1308.6206 Artificial Intelligence +1308.6305 Atomic Physics +1308.6753 Methodology +1309.0881 Solar and Stellar Astrophysics +1309.1791 Functional Analysis +1309.4237 Combinatorics +1309.4829 Superconductivity +1309.6948 Phenomenology +1309.7351 Phenomenology +1309.7990 Populations and Evolution +1310.1169 Functional Analysis +1310.1671 Mesoscale and Nanoscale Physics +1310.1700 Plasma Physics +1310.2513 Geometric Topology +1310.3618 Optics +1310.4337 Combinatorics +1310.4502 Instrumentation and Methods for Astrophysics +1310.4512 Functional Analysis +1310.4513 Astrophysics of Galaxies +1310.4516 Solar and Stellar Astrophysics +1310.4518 Phenomenology +1310.4524 Analysis of PDEs +1310.4526 Statistics Theory +1310.4531 +1310.4533 Logic +1310.4534 +1310.4537 Geometric Topology +1310.4541 Data Structures and Algorithms +1310.4542 Instrumentation and Detectors +1310.4543 Plasma Physics +1310.4545 Optimization and Control +1310.4546 Computation and Language +1310.4547 Molecular Networks +1310.4550 Optimization and Control +1310.4552 +1310.4553 Astrophysics of Galaxies +1310.4558 Analysis of PDEs +1310.4561 Computational Geometry +1310.4567 Solar and Stellar Astrophysics +1310.4571 Logic in Computer Science +1310.4572 Logic in Computer Science +1310.4573 Logic in Computer Science +1310.4574 Software Engineering +1310.4575 Distributed, Parallel, and Cluster Computing +1310.4577 Cryptography and Security +1310.4578 Solar and Stellar Astrophysics +1310.4579 Learning +1310.4580 Strongly Correlated Electrons +1310.4581 +1310.4582 Strongly Correlated Electrons +1310.4583 Information Theory +1310.4587 Classical Analysis and ODEs +1310.4588 Computational Complexity +1310.4589 Astrophysics of Galaxies +1310.4594 Commutative Algebra +1310.4595 Distributed, Parallel, and Cluster Computing +1310.4596 Information Theory +1310.4599 Optics +1310.4606 Combinatorics +1310.4609 +1310.4617 Numerical Analysis +1310.4618 Differential Geometry +1310.4619 Medical Physics +1310.4622 Solar and Stellar Astrophysics +1310.4623 Superconductivity +1310.4625 Group Theory +1310.4631 Materials Science +1310.4632 Networking and Internet Architecture +1310.4635 Group Theory +1310.4637 Number Theory +1310.4639 Operator Algebras +1310.4640 Cryptography and Security +1310.4643 Differential Geometry +1310.4645 Distributed, Parallel, and Cluster Computing +1310.4647 Databases +1310.4648 +1310.4652 Cryptography and Security +1310.4653 Commutative Algebra +1310.4654 Commutative Algebra +1310.4655 Dynamical Systems +1310.4657 Phenomenology +1310.4658 Classical Analysis and ODEs +1310.4659 Soft Condensed Matter +1310.4660 Phenomenology +1310.4663 Functional Analysis +1310.4666 Combinatorics +1310.4667 Applications +1310.4668 Superconductivity +1310.4671 Materials Science +1310.4674 Astrophysics of Galaxies +1310.4675 Phenomenology +1310.4676 Probability +1310.4680 Quantum Algebra +1310.4681 Number Theory +1310.4683 Algebraic Geometry +1310.4688 Optimization and Control +1310.4689 Geophysics +1310.4694 Analysis of PDEs +1310.4697 Analysis of PDEs +1310.4702 Distributed, Parallel, and Cluster Computing +1310.4706 Optimization and Control +1310.4708 Analysis of PDEs +1310.4710 Analysis of PDEs +1310.4713 Computer Vision and Pattern Recognition +1310.4716 Optimization and Control +1310.4717 Combinatorics +1310.4718 Materials Science +1310.4720 Mesoscale and Nanoscale Physics +1310.4724 Dynamical Systems +1310.4725 Analysis of PDEs +1310.4727 Commutative Algebra +1310.4732 Analysis of PDEs +1310.4734 Numerical Analysis +1310.4735 Rings and Algebras +1310.4736 Group Theory +1310.4738 Optics +1310.4739 History and Overview +1310.4742 Classical Physics +1310.4743 Formal Languages and Automata Theory +1310.4748 Solar and Stellar Astrophysics +1310.4756 Logic in Computer Science +1310.4759 Computer Vision and Pattern Recognition +1310.4760 Analysis of PDEs +1310.4761 Information Theory +1310.4769 Numerical Analysis +1310.4772 Numerical Analysis +1310.4774 Information Retrieval +1310.4781 Optimization and Control +1310.4784 Probability +1310.4785 Numerical Analysis +1310.4787 Probability +1310.4792 Applications +1310.4797 Algebraic Topology +1310.4802 Databases +1310.4805 Mesoscale and Nanoscale Physics +1310.4807 Numerical Analysis +1310.4811 +1310.4813 +1310.4814 Fluid Dynamics +1310.4816 Probability +1310.4821 Theory +0711.1602 Statistical Mechanics +0802.0154 Accelerator Physics +0806.4511 Artificial Intelligence +0807.4188 Algebraic Geometry +0905.2229 Algebraic Geometry +1004.0377 +1005.3759 Combinatorics +1101.5961 Operator Algebras +1103.4540 Combinatorics +1104.4089 Combinatorics +1104.4747 Algebraic Geometry +1106.0792 Commutative Algebra +1107.1262 Algebraic Geometry +1110.2933 Combinatorics +1110.4458 Representation Theory +1111.0524 Materials Science +1111.0728 Algebraic Geometry +1111.5177 Atmospheric and Oceanic Physics +1111.5580 Solar and Stellar Astrophysics +1111.6032 Strongly Correlated Electrons +1111.6327 Algebraic Geometry +1201.4545 +1201.5071 Rings and Algebras +1203.3397 Representation Theory +1203.6252 Phenomenology +1203.6563 Accelerator Physics +1203.6615 Algebraic Geometry +1204.0470 Number Theory +1205.2956 Geometric Topology +1205.4322 Combinatorics +1206.0835 Analysis of PDEs +1206.2063 Algebraic Geometry +1206.2836 Commutative Algebra +1206.3701 Theory +1207.4640 Representation Theory +1207.4867 Phenomenology +1207.6138 Strongly Correlated Electrons +1209.4254 Genomics +1209.5408 Theory +1210.2804 +1211.0688 Mesoscale and Nanoscale Physics +1211.1495 Functional Analysis +1211.2139 Quantum Gases +1211.3903 Operator Algebras +1211.5189 Artificial Intelligence +1212.3388 Theory +1212.4416 Functional Analysis +1301.7165 Algebraic Topology +1302.0500 High Energy Astrophysical Phenomena +1302.1877 Mesoscale and Nanoscale Physics +1302.2136 Numerical Analysis +1302.2319 Materials Science +1302.2375 Theory +1302.4676 Computational Finance +1302.5529 Functional Analysis +1302.6587 Phenomenology +1302.7125 Theory +1303.2311 Statistical Mechanics +1303.2358 Optimization and Control +1303.2825 Classical Analysis and ODEs +1303.3008 Cosmology and Nongalactic Astrophysics +1303.4444 Cosmology and Nongalactic Astrophysics +1303.4566 Dynamical Systems +1303.4976 +1303.5359 Superconductivity +1303.6048 Quantum Gases +1303.6122 Geometric Topology +1303.6950 Mesoscale and Nanoscale Physics +1304.0514 Number Theory +1304.1158 Statistical Mechanics +1304.2176 Popular Physics +1304.2613 Biomolecules +1304.4219 Phenomenology +1304.4296 Analysis of PDEs +1304.6220 +1304.6890 Strongly Correlated Electrons +1304.7406 Methodology +1305.0066 +1305.0259 Physics Education +1305.0315 Mesoscale and Nanoscale Physics +1305.0557 Mesoscale and Nanoscale Physics +1305.0705 Mesoscale and Nanoscale Physics +1305.1043 Optimization and Control +1305.1968 Cosmology and Nongalactic Astrophysics +1305.4398 Number Theory +1305.4855 Instrumentation and Detectors +1305.5500 Computational Complexity +1305.6174 Mesoscale and Nanoscale Physics +1305.6484 Mesoscale and Nanoscale Physics +1306.0415 +1306.0865 Information Theory +1306.1565 +1306.2238 Strongly Correlated Electrons +1306.5948 Strongly Correlated Electrons +1307.0405 Algebraic Geometry +1307.2258 +1307.3236 Statistical Mechanics +1307.3856 Molecular Networks +1307.6907 High Energy Astrophysical Phenomena +1308.0553 Theory +1308.2174 Quantum Gases +1308.2245 Strongly Correlated Electrons +1308.3134 Chemical Physics +1308.4295 Statistics Theory +1308.4713 Theory +1308.5424 +1308.5922 Quantum Gases +1308.5931 Chemical Physics +1309.0280 Differential Geometry +1309.1141 +1309.1597 Dynamical Systems +1309.2440 High Energy Astrophysical Phenomena +1309.2624 Analysis of PDEs +1309.3594 Solar and Stellar Astrophysics +1309.3763 Superconductivity +1309.6122 Classical Physics +1309.6808 Physics Education +1309.7607 Operator Algebras +1310.1439 Optimization and Control +1310.1487 Algebraic Geometry +1310.1676 Neurons and Cognition +1310.2503 Experiment +1310.3064 Superconductivity +1310.3226 Fluid Dynamics +1310.3343 Fluid Dynamics +1310.3560 Differential Geometry +1310.3720 Statistics Theory +1310.3803 +1310.4142 Computational Finance +1310.4349 Information Theory +1310.4427 +1310.4722 Probability +1310.4986 Artificial Intelligence +1310.5661 Soft Condensed Matter +1310.5669 Number Theory +1310.5852 Optics +1310.5963 Information Retrieval +1310.6030 Strongly Correlated Electrons +1310.6054 Quantum Gases +1310.6055 Numerical Analysis +1310.6057 Number Theory +1310.6059 Chemical Physics +1310.6062 Machine Learning +1310.6063 Computer Vision and Pattern Recognition +1310.6066 Computer Vision and Pattern Recognition +1310.6067 Machine Learning +1310.6071 Superconductivity +1310.6072 Materials Science +1310.6073 Combinatorics +1310.6075 Lattice +1310.6078 Emerging Technologies +1310.6079 Numerical Analysis +1310.6084 Computational Geometry +1310.6085 Mesoscale and Nanoscale Physics +1310.6092 Computer Vision and Pattern Recognition +1310.6094 Other Condensed Matter +1310.6096 Analysis of PDEs +1310.6098 Optimization and Control +1310.6106 Classical Analysis and ODEs +1310.6108 Materials Science +1310.6110 Information Retrieval +1310.6120 Mesoscale and Nanoscale Physics +1310.6124 Lattice +1310.6129 Computers and Society +1310.6132 Optics +1310.6134 Physics Education +1310.6139 Information Theory +1310.6140 +1310.6142 Experiment +1310.6146 Numerical Analysis +1310.6147 Experiment +1310.6151 Spectral Theory +1310.6152 Combinatorics +1310.6159 Phenomenology +1310.6160 Fluid Dynamics +1310.6162 Digital Libraries +1310.6164 Accelerator Physics +1310.6165 Superconductivity +1310.6166 Dynamical Systems +1310.6167 Analysis of PDEs +1310.6168 Probability +1310.6169 Probability +1310.6171 Networking and Internet Architecture +1310.6172 Logic +1310.6173 Networking and Internet Architecture +1310.6174 Optics +1310.6178 Phenomenology +1310.6179 Optimization and Control +1310.6181 Probability +1310.6186 Lattice +1310.6188 +1310.6190 Atomic Physics +1310.6193 Strongly Correlated Electrons +1310.6195 Experiment +1310.6208 Combinatorics +1310.6210 Lattice +1310.6211 Representation Theory +1310.6212 Algebraic Topology +1310.6215 Strongly Correlated Electrons +1310.6216 +1310.6222 Analysis of PDEs +1310.6223 High Energy Astrophysical Phenomena +1310.6224 Methodology +1310.6232 Functional Analysis +1310.6233 Materials Science +1310.6234 Mesoscale and Nanoscale Physics +1310.6243 +1310.6244 Number Theory +1310.6247 Algebraic Topology +1310.6252 +1310.6254 Phenomenology +1310.6259 Other Computer Science +1310.6260 Lattice +1310.6265 Information Theory +1310.6268 Classical Analysis and ODEs +1310.6273 Analysis of PDEs +1310.6277 Numerical Analysis +1310.6279 Probability +1310.6284 Representation Theory +1310.6286 Probability +1310.6291 Algebraic Geometry +1310.6298 Operating Systems +1310.6300 +1310.6301 Operating Systems +1310.6303 Formal Languages and Automata Theory +1310.6306 Solar and Stellar Astrophysics +1310.6311 Computers and Society +1310.6314 Molecular Networks +1310.6320 Populations and Evolution +1310.6333 +1310.6342 Multiagent Systems +1310.6344 Metric Geometry +1310.6346 Superconductivity +1310.6347 +1310.6348 +cond-mat/0402389 Statistical Mechanics +cond-mat/0411732 Disordered Systems and Neural Networks +cs/0608012 Networking and Internet Architecture +cs/0703014 Networking and Internet Architecture +gr-qc/0508112 +math-ph/0505035 +math/0611306 Probability +0709.1420 Functional Analysis +0709.1431 Functional Analysis +0709.1435 Functional Analysis +0709.1436 Functional Analysis +0709.1443 Functional Analysis +0803.0538 Combinatorics +0804.3434 Logic in Computer Science +0808.2223 Theory +0809.2910 Other Condensed Matter +0903.3614 Logic +0904.4630 Dynamical Systems +0910.2752 Geometric Topology +0910.3776 Other Condensed Matter +0911.0318 Complex Variables +0911.3856 Networking and Internet Architecture +1005.4257 Materials Science +1005.5391 Theory +1008.0775 Systems and Control +1011.2108 Analysis of PDEs +1011.5437 Classical Analysis and ODEs +1012.2224 Superconductivity +1102.1872 Number Theory +1103.3121 Theory +1103.3213 +1104.1543 Symplectic Geometry +1104.2610 Theory +1105.2020 Functional Analysis +1107.0134 Artificial Intelligence +1108.0117 Metric Geometry +1108.0293 Algebraic Topology +1110.6077 Theory +1111.3145 Classical Analysis and ODEs +1111.5864 Combinatorics +1111.6188 Optimization and Control +1112.0579 Computational Physics +1112.4854 Theory +1201.1850 Solar and Stellar Astrophysics +1201.2339 +1201.3277 Classical Analysis and ODEs +1201.6274 Strongly Correlated Electrons +1202.3538 Logic in Computer Science +1203.6574 Probability +1204.4648 Complex Variables +1205.1336 Metric Geometry +1205.2886 Theory +1205.6791 Computer Science and Game Theory +1206.1793 Mesoscale and Nanoscale Physics +1206.1854 +1206.3649 Optimization and Control +1206.4325 Phenomenology +1207.2167 Phenomenology +1207.3456 Probability +1207.4696 Analysis of PDEs +1208.0023 +1208.2063 +1210.3236 Quantum Algebra +1210.3411 Chaotic Dynamics +1210.5185 Lattice +1211.0206 Theory +1211.1116 Operator Algebras +1211.1538 Mesoscale and Nanoscale Physics +1211.5064 Astrophysics of Galaxies +1211.7268 Algebraic Geometry +1211.7330 Populations and Evolution +1212.2006 Computation and Language +1212.2294 +1301.1916 Atomic Physics +1301.4344 Solar and Stellar Astrophysics +1301.6111 Information Theory +1302.4049 Applications +1302.4826 Quantum Algebra +1302.4841 Logic +1302.5002 Information Theory +1302.5951 +1302.6256 Social and Information Networks +1302.6650 Strongly Correlated Electrons +1303.0314 Adaptation and Self-Organizing Systems +1303.1267 Phenomenology +1303.1334 Computational Finance +1303.1727 Cosmology and Nongalactic Astrophysics +1303.4067 Theory +1303.5496 Complex Variables +1303.5985 Numerical Analysis +1303.7020 +1304.0160 Learning +1304.2471 Materials Science +1304.4904 +1304.5405 Superconductivity +1304.6853 Analysis of PDEs +1304.7205 Populations and Evolution +1304.7810 Numerical Analysis +1305.1138 Earth and Planetary Astrophysics +1305.1511 Differential Geometry +1305.2942 Experiment +1305.4231 +1305.5136 Social and Information Networks +1305.5460 Commutative Algebra +1305.5952 Analysis of PDEs +1305.5956 Computers and Society +1306.0595 Fluid Dynamics +1306.0783 Logic in Computer Science +1306.0940 Machine Learning +1306.3417 High Energy Astrophysical Phenomena +1307.0845 Artificial Intelligence +1307.1714 +1307.5350 Complex Variables +1307.6540 +1307.6634 Mesoscale and Nanoscale Physics +1307.6653 Phenomenology +1307.7495 Information Theory +1307.7756 Populations and Evolution +1307.7780 Phenomenology +1308.0043 Mesoscale and Nanoscale Physics +1308.0320 Phenomenology +1308.0940 Fluid Dynamics +1308.2669 Astrophysics of Galaxies +1308.3225 Multimedia +1308.3303 Information Theory +1308.6230 Cosmology and Nongalactic Astrophysics +1309.0293 Theory +1309.0719 Neural and Evolutionary Computing +1309.1861 Superconductivity +1309.4745 Theory +1309.5267 Exactly Solvable and Integrable Systems +1309.5403 Analysis of PDEs +1309.5603 Probability +1310.0214 Cosmology and Nongalactic Astrophysics +1310.1653 Genomics +1310.1675 Strongly Correlated Electrons +1310.1831 +1310.1952 +1310.2334 Superconductivity +1310.2449 Discrete Mathematics +1310.4790 +1310.5009 Materials Science +1310.7941 Phenomenology +1311.2148 +1311.4282 Dynamical Systems +1311.6124 Algebraic Geometry +1311.6192 Computational Complexity +1311.6202 Dynamical Systems +1311.6392 Learning +1311.6794 +1312.0562 Experiment +1312.1218 +1312.1780 Symbolic Computation +1312.2877 Neural and Evolutionary Computing +1312.2987 Algebraic Geometry +1312.3386 Machine Learning +1312.3914 Materials Science +1312.4306 Metric Geometry +1312.4372 Quantum Algebra +1312.4410 Other Computer Science +1312.4777 Strongly Correlated Electrons +1312.4826 Systems and Control +1312.6063 Solar and Stellar Astrophysics +1312.6219 Computer Vision and Pattern Recognition +1312.6403 +1312.6456 Probability +1312.6506 Computer Vision and Pattern Recognition +1312.6692 Earth and Planetary Astrophysics +1312.6767 Number Theory +1312.6891 Theory +1312.6892 Optics +1312.6895 Biological Physics +1312.6897 Probability +1312.6899 Combinatorics +1312.6905 Numerical Analysis +1312.6906 Analysis of PDEs +1312.6908 Optics +1312.6913 +1312.6914 Theory +1312.6915 Geometric Topology +1312.6917 Geometric Topology +1312.6919 Number Theory +1312.6926 Probability +1312.6929 +1312.6934 Systems and Control +1312.6935 Graphics +1312.6936 Networking and Internet Architecture +1312.6937 Experiment +1312.6938 +1312.6939 Software Engineering +1312.6945 +1312.6946 Group Theory +1312.6948 Computation and Language +1312.6949 Information Theory +1312.6954 Digital Libraries +1312.6956 Machine Learning +1312.6964 General Topology +1312.6965 Machine Learning +1312.6966 Methodology +1312.6967 Methodology +1312.6968 Methodology +1312.6969 Methodology +1312.6973 Combinatorics +1312.6977 Number Theory +1312.6978 Statistics Theory +1312.6981 Commutative Algebra +1312.6991 Cosmology and Nongalactic Astrophysics +1312.6992 +1312.6993 Solar and Stellar Astrophysics +1312.6994 Methodology +1312.6998 Analysis of PDEs +1312.6999 Mesoscale and Nanoscale Physics +1312.7000 Chemical Physics +1312.7001 Methodology +1312.7003 Machine Learning +1312.7007 Methodology +1312.7009 Functional Analysis +1312.7011 Machine Learning +1312.7013 Cryptography and Security +1312.7018 Methodology +1312.7024 Machine Learning +1312.7035 Probability +1312.7036 Social and Information Networks +1312.7042 Computational Complexity +1312.7045 Optics +1312.7046 Atomic Physics +1312.7047 Symplectic Geometry +1312.7048 Metric Geometry +1312.7051 Chemical Physics +1312.7056 Computers and Society +1312.7062 Data Structures and Algorithms +1312.7070 Adaptation and Self-Organizing Systems +1312.7072 Numerical Analysis +1312.7082 Phenomenology +1312.7083 Atomic and Molecular Clusters +1312.7085 Computer Vision and Pattern Recognition +1312.7088 Optimization and Control +1312.7094 Combinatorics +1312.7095 Chaotic Dynamics +1312.7096 Rings and Algebras +1312.7099 Chaotic Dynamics +1312.7101 Soft Condensed Matter +1312.7102 Earth and Planetary Astrophysics +1312.7103 Classical Analysis and ODEs +1312.7105 Complex Variables +1312.7106 Statistical Mechanics +1312.7107 Materials Science +1312.7115 Number Theory +1312.7116 +1312.7118 Computers and Society +1312.7120 Phenomenology +1312.7123 Computers and Society +1312.7124 Chaotic Dynamics +1312.7126 Networking and Internet Architecture +1312.7128 Popular Physics +1312.7130 Classical Physics +1312.7135 Information Theory +1312.7139 Probability +1312.7142 Probability +1312.7143 Materials Science +1312.7144 Algebraic Geometry +1312.7146 +1312.7150 Statistics Theory +1312.7151 Number Theory +1312.7152 Networking and Internet Architecture +1312.7154 Number Theory +1312.7155 Algebraic Topology +1312.7156 Disordered Systems and Neural Networks +1312.7157 Materials Science +1312.7162 Algebraic Geometry +1312.7164 Algebraic Geometry +1312.7165 Physics and Society +1312.7167 Machine Learning +1312.7170 Combinatorics +1312.7171 Number Theory +1312.7172 Optimization and Control +1312.7177 Rings and Algebras +1312.7179 Learning +1312.7187 Networking and Internet Architecture +1312.7188 Quantum Algebra +1312.7191 Information Theory +1312.7194 Lattice +1312.7200 Number Theory +1312.7201 Networking and Internet Architecture +1312.7202 Number Theory +1312.7203 Number Theory +1312.7204 Number Theory +1312.7205 Number Theory +1312.7210 Optimization and Control +1312.7213 Dynamical Systems +1312.7217 Data Structures and Algorithms +1312.7223 Computation and Language +1312.7226 +1312.7230 Lattice +1312.7231 Functional Analysis +1312.7233 Combinatorics +1312.7239 Representation Theory +1312.7240 Numerical Analysis +1312.7245 Experiment +1312.7248 Functional Analysis +1312.7249 Social and Information Networks +1312.7253 Discrete Mathematics +1312.7260 Methodology +1312.7265 Analysis of PDEs +1312.7267 Differential Geometry +1312.7268 Quantum Algebra +1312.7269 Phenomenology +1312.7270 Phenomenology +1312.7272 General Mathematics +1312.7277 Analysis of PDEs +1312.7278 Medical Physics +1312.7289 +1312.7290 Materials Science +1312.7294 Group Theory +1312.7296 Data Structures and Algorithms +1312.7298 Mesoscale and Nanoscale Physics +1312.7299 Exactly Solvable and Integrable Systems +1312.7300 Materials Science +1312.7306 Computational Complexity +1312.7308 Machine Learning +1312.7309 Phenomenology +1312.7313 Theory +1312.7314 +1312.7317 Mesoscale and Nanoscale Physics +1312.7320 Algebraic Geometry +1312.7322 +1312.7326 Artificial Intelligence +1312.7327 Complex Variables +1312.7328 Probability +1312.7330 Instrumentation and Methods for Astrophysics +1312.7331 Neurons and Cognition +1312.7333 Number Theory +1312.7334 Symplectic Geometry +1312.7338 Optimization and Control +1312.7339 Number Theory +cs/0202020 Computer Vision and Pattern Recognition +math/0112212 Logic +math/0503723 Functional Analysis +0710.0618 Differential Geometry +0803.2017 Optics +1102.2677 Information Theory +1102.3571 Combinatorics +1102.4674 Statistics Theory +1105.1746 Differential Geometry +1105.2879 Statistics Theory +1105.3464 Combinatorics +1107.3013 Graphics +1108.4340 Theory +1109.4711 Complex Variables +1111.6704 General Physics +1111.7046 Superconductivity +1112.1115 Social and Information Networks +1112.3403 Theory +1112.5863 Biological Physics +1201.5983 Materials Science +1202.6036 Differential Geometry +1203.5220 +1204.2361 Strongly Correlated Electrons +1204.2632 Theory +1204.5731 Analysis of PDEs +1205.2392 Differential Geometry +1205.3079 Materials Science +1205.5466 Rings and Algebras +1205.6398 Quantum Gases +1206.5562 Superconductivity +1207.0198 Number Theory +1207.2751 +1207.2821 Quantum Gases +1207.6804 Quantum Gases +1208.0869 Algebraic Geometry +1208.2348 Soft Condensed Matter +1208.3115 Phenomenology +1208.3910 Quantum Algebra +1209.2332 Phenomenology +1209.2646 Instrumentation and Detectors +1209.3137 Information Theory +1209.6146 +1210.0225 Adaptation and Self-Organizing Systems +1210.1129 Materials Science +1210.1489 Materials Science +1210.2749 Biological Physics +1210.3980 Algebraic Geometry +1210.5993 Algebraic Geometry +1211.0472 Phenomenology +1211.0718 Materials Science +1211.1476 Number Theory +1211.1497 Mesoscale and Nanoscale Physics +1211.2157 Theory +1211.3952 Other Condensed Matter +1211.4717 Quantum Gases +1211.4916 Theory +1211.5117 Mesoscale and Nanoscale Physics +1211.5290 Computation +1211.7164 Physics and Society +1211.7248 Chaotic Dynamics +1212.3178 Theory +1212.4184 Complex Variables +1212.4749 Statistical Mechanics +1212.4825 Phenomenology +1212.5900 Operator Algebras +1301.0437 Soft Condensed Matter +1301.1285 Mesoscale and Nanoscale Physics +1301.1698 Earth and Planetary Astrophysics +1301.3608 Number Theory +1301.3795 Mesoscale and Nanoscale Physics +1301.4442 Pricing of Securities +1301.6273 Biological Physics +1301.6878 +1302.1287 Analysis of PDEs +1302.2073 Computer Vision and Pattern Recognition +1302.2325 Optimization and Control +1302.2351 Plasma Physics +1302.5748 Mesoscale and Nanoscale Physics +1302.7154 Statistical Mechanics +1303.1427 Combinatorics +1303.4845 Computer Vision and Pattern Recognition +1303.5508 Computer Vision and Pattern Recognition +1303.6529 Computation +1303.6592 Solar and Stellar Astrophysics +1303.6700 Quantitative Methods +1303.6729 Computational Complexity +1303.6769 Complex Variables +1303.6840 Instrumentation and Detectors +1303.6946 Classical Analysis and ODEs +1303.6947 Classical Analysis and ODEs +1303.6948 Classical Analysis and ODEs +1303.6955 Theory +1303.6964 Phenomenology +1303.6976 Computer Science and Game Theory +1303.6979 Optimization and Control +1303.6982 Optimization and Control +1303.6985 Combinatorics +1303.6986 Materials Science +1303.6988 Computational Physics +1303.6991 Optimization and Control +1303.6993 Molecular Networks +1303.6997 Optics +1303.7000 Information Theory +1303.7002 Methodology +1303.7005 Numerical Analysis +1303.7008 Phenomenology +1303.7012 Cryptography and Security +1303.7016 Optics +1303.7024 Representation Theory +1303.7025 Physics Education +1303.7026 Information Theory +1303.7027 Metric Geometry +1303.7031 Mesoscale and Nanoscale Physics +1303.7033 General Physics +1303.7034 Information Theory +1303.7036 Superconductivity +1303.7037 Computational Geometry +1303.7041 Optimization and Control +1303.7046 Category Theory +1303.7048 Numerical Analysis +1303.7049 Representation Theory +1303.7050 Applications +1303.7051 Logic +1303.7053 +1303.7064 Exactly Solvable and Integrable Systems +1303.7065 Biological Physics +1303.7067 Materials Science +1303.7068 High Energy Astrophysical Phenomena +1303.7070 Instrumentation and Methods for Astrophysics +1303.7072 Dynamical Systems +1303.7073 Plasma Physics +1303.7075 Cryptography and Security +1303.7076 Algebraic Geometry +1303.7077 Logic in Computer Science +1303.7080 High Energy Astrophysical Phenomena +1303.7082 Algebraic Geometry +1303.7086 History and Philosophy of Physics +1303.7089 History and Overview +1303.7094 Metric Geometry +1303.7100 Analysis of PDEs +1303.7103 Distributed, Parallel, and Cluster Computing +1303.7105 Statistical Mechanics +1303.7107 Instrumentation and Detectors +1303.7115 Computers and Society +1303.7118 Cosmology and Nongalactic Astrophysics +1303.7123 Analysis of PDEs +1303.7124 Cosmology and Nongalactic Astrophysics +1303.7126 Algebraic Geometry +1303.7129 Lattice +1303.7136 Logic in Computer Science +1303.7137 Artificial Intelligence +1303.7141 Superconductivity +1303.7142 Cosmology and Nongalactic Astrophysics +1303.7144 Social and Information Networks +1303.7155 +1303.7157 Materials Science +1303.7158 High Energy Astrophysical Phenomena +1303.7161 Mesoscale and Nanoscale Physics +1303.7179 Geometric Topology +1303.7180 Classical Analysis and ODEs +1303.7186 Neurons and Cognition +1303.7189 Biomolecules +1303.7191 Atmospheric and Oceanic Physics +1303.7195 Distributed, Parallel, and Cluster Computing +1303.7200 Artificial Intelligence +1303.7201 Artificial Intelligence +1303.7205 Combinatorics +1303.7208 Populations and Evolution +1303.7217 Computational Geometry +1303.7220 Emerging Technologies +1303.7221 Theory +1303.7226 Social and Information Networks +cond-mat/0702222 Materials Science +0903.3576 +0909.5665 Complex Variables +1004.3212 +1006.1841 Complex Variables +1006.3954 K-Theory and Homology +1101.5185 Theory +1102.3502 +1103.5233 Classical Analysis and ODEs +1109.1415 Theory +1110.0909 Metric Geometry +1112.0041 Rings and Algebras +1112.0339 +1202.6344 Commutative Algebra +1203.3111 Analysis of PDEs +1205.3069 Theory +1206.5491 Differential Geometry +1206.5743 Strongly Correlated Electrons +1207.0749 Functional Analysis +1207.2382 Algebraic Geometry +1209.0697 Pricing of Securities +1209.0986 Solar and Stellar Astrophysics +1209.1760 Operator Algebras +1210.0063 Physics and Society +1210.1917 +1210.3339 Algebraic Geometry +1210.4361 +1211.5560 Phenomenology +1212.0818 Theory +1212.1209 Plasma Physics +1212.2788 Physics and Society +1212.3240 Superconductivity +1301.2476 Formal Languages and Automata Theory +1302.0712 Probability +1302.0915 Chaotic Dynamics +1302.2001 Phenomenology +1302.2598 Phenomenology +1302.4244 Statistics Theory +1302.5447 High Energy Astrophysical Phenomena +1303.0108 Phenomenology +1303.0183 Physics and Society +1303.0588 Symplectic Geometry +1303.1541 Mesoscale and Nanoscale Physics +1303.1974 Superconductivity +1303.2331 Number Theory +1303.6203 +1303.7235 Strongly Correlated Electrons +1304.0314 Mesoscale and Nanoscale Physics +1304.0345 Phenomenology +1304.1891 Phenomenology +1304.2090 Theory +1304.2778 Quantum Gases +1304.2800 Phenomenology +1304.3711 Theory +1304.3922 Number Theory +1304.4605 Strongly Correlated Electrons +1304.5260 Physics and Society +1304.5810 Artificial Intelligence +1304.6310 Experiment +1304.6661 Molecular Networks +1305.0887 Probability +1305.1636 Operator Algebras +1305.1671 Materials Science +1306.5251 +1307.0070 Geometric Topology +1307.0109 Analysis of PDEs +1307.0183 Experiment +1307.0339 Artificial Intelligence +1307.0433 Distributed, Parallel, and Cluster Computing +1307.0438 Materials Science +1307.0483 Numerical Analysis +1307.0507 Disordered Systems and Neural Networks +1307.0515 Earth and Planetary Astrophysics +1307.0518 Algebraic Topology +1307.0520 Geophysics +1307.0522 Methodology +1307.0528 +1307.0531 Data Structures and Algorithms +1307.0533 Dynamical Systems +1307.0537 General Physics +1307.0540 Theory +1307.0541 Genomics +1307.0548 Instrumentation and Methods for Astrophysics +1307.0554 Dynamical Systems +1307.0555 Dynamical Systems +1307.0571 Data Structures and Algorithms +1307.0578 Machine Learning +1307.0580 Mesoscale and Nanoscale Physics +1307.0581 Superconductivity +1307.0582 +1307.0583 Accelerator Physics +1307.0584 Data Analysis, Statistics and Probability +1307.0587 Soft Condensed Matter +1307.0589 Learning +1307.0593 Commutative Algebra +1307.0594 +1307.0596 Computation and Language +1307.0606 Representation Theory +1307.0607 Populations and Evolution +1307.0610 Statistical Mechanics +1307.0611 +1307.0613 Group Theory +1307.0616 Networking and Internet Architecture +1307.0618 Solar and Stellar Astrophysics +1307.0619 Analysis of PDEs +1307.0620 Astrophysics of Galaxies +1307.0621 Soft Condensed Matter +1307.0623 Functional Analysis +1307.0624 Data Structures and Algorithms +1307.0626 Systems and Control +1307.0628 Rings and Algebras +1307.0631 Classical Analysis and ODEs +1307.0632 +1307.0633 Classical Analysis and ODEs +1307.0634 Classical Analysis and ODEs +1307.0635 Formal Languages and Automata Theory +1307.0637 Cosmology and Nongalactic Astrophysics +1307.0638 Classical Analysis and ODEs +1307.0639 Algebraic Geometry +1307.0642 Multimedia +1307.0643 Information Theory +1307.0644 Biological Physics +1307.0648 Number Theory +1307.0650 Classical Analysis and ODEs +1307.0653 Classical Analysis and ODEs +1307.0654 Functional Analysis +1307.0655 Classical Analysis and ODEs +1307.0656 Classical Analysis and ODEs +1307.0657 Classical Analysis and ODEs +1307.0658 Soft Condensed Matter +1307.0663 Logic +1307.0664 Classical Analysis and ODEs +1307.0666 Classical Analysis and ODEs +1307.0670 Pattern Formation and Solitons +1307.0677 Solar and Stellar Astrophysics +1307.0687 Networking and Internet Architecture +1307.0689 +1307.0693 Analysis of PDEs +1307.0701 Phenomenology +1307.0706 Instrumentation and Detectors +1307.0720 Probability +1307.0721 Experiment +1307.0724 Algebraic Geometry +1307.0739 Chaotic Dynamics +1307.0747 Computational Engineering, Finance, and Science +1307.0749 Computational Engineering, Finance, and Science +1307.0750 Functional Analysis +1307.0753 +1307.0757 Quantitative Methods +1307.0762 Materials Science +1307.0763 Dynamical Systems +1307.0764 Materials Science +1307.0772 Other Computer Science +1307.0774 Phenomenology +1307.0777 Cosmology and Nongalactic Astrophysics +1307.0779 Number Theory +1307.0781 Learning +1307.0785 General Finance +1307.0789 Solar and Stellar Astrophysics +1307.0793 Operator Algebras +1307.0797 Metric Geometry +1307.0806 Strongly Correlated Electrons +1207.5236 +0705.2746 Strongly Correlated Electrons +0801.1316 Mesoscale and Nanoscale Physics +0803.2567 Adaptation and Self-Organizing Systems +0803.2568 Adaptation and Self-Organizing Systems +0811.2551 Multiagent Systems +0909.2531 Algebraic Geometry +0912.2255 Commutative Algebra +1001.1399 Neurons and Cognition +1001.1401 Artificial Intelligence +1005.1516 Multiagent Systems +1009.0053 Strongly Correlated Electrons +1009.2297 Mesoscale and Nanoscale Physics +1011.1401 +1012.0565 Mesoscale and Nanoscale Physics +1012.0706 Algebraic Geometry +1102.5154 +1103.4272 Phenomenology +1105.3004 +1106.3278 +1110.4884 Mesoscale and Nanoscale Physics +1111.2323 Biomolecules +1111.2621 Data Structures and Algorithms +1111.3275 Information Theory +1111.5378 +1201.1223 Computational Complexity +1201.6070 Geometric Topology +1202.1412 Probability +1202.2893 +1202.3199 Differential Geometry +1202.3544 +1202.4667 +1203.3932 Soft Condensed Matter +1204.0155 Solar and Stellar Astrophysics +1204.5890 +1205.0675 Mesoscale and Nanoscale Physics +1205.4577 Algebraic Geometry +1207.2441 Theory +1207.3349 Statistical Mechanics +1207.5581 +1207.6783 +1208.1426 Solar and Stellar Astrophysics +1208.4090 Dynamical Systems +1208.6214 Strongly Correlated Electrons +1209.5445 Mesoscale and Nanoscale Physics +1210.2552 Logic +1210.4106 +1210.6960 Algebraic Geometry +1210.8444 +1211.0395 Theory +1211.1060 +1211.1646 Computational Physics +1211.4520 Neural and Evolutionary Computing +1212.0899 Geometric Topology +1212.1250 Materials Science +1212.1300 Combinatorics +1212.2344 Theory +1212.5960 Combinatorics +1212.6242 +1301.1555 Neural and Evolutionary Computing +1301.1640 Plasma Physics +1301.1811 Analysis of PDEs +1301.3321 Statistics Theory +1301.4340 Rings and Algebras +1301.5241 Mesoscale and Nanoscale Physics +1301.6024 Probability +1301.7282 Phenomenology +1302.0123 Strongly Correlated Electrons +1302.0216 Artificial Intelligence +1302.0596 Rings and Algebras +1302.1488 Logic +1302.2097 Soft Condensed Matter +1302.3727 Differential Geometry +1302.4069 Strongly Correlated Electrons +1303.0561 Machine Learning +1303.2402 Phenomenology +1303.4303 Quantitative Methods +1303.4607 Statistical Mechanics +1303.5821 Plasma Physics +1303.6237 Probability +1304.1854 Materials Science +1304.2213 Materials Science +1304.2281 Materials Science +1304.3023 Optics +1304.5291 Disordered Systems and Neural Networks +1304.6119 Phenomenology +1304.6705 Theory +1304.7241 Biological Physics +1304.7612 +1305.0381 Superconductivity +1305.1177 Quantum Gases +1305.2020 +1305.3060 Chemical Physics +1305.4608 Geophysics +1305.6171 Plasma Physics +1306.0479 +1306.0908 +1306.2178 Theory +1306.2250 Applications +1306.2876 Representation Theory +1306.2988 Data Structures and Algorithms +1306.3071 Theory +1306.4226 Mesoscale and Nanoscale Physics +1306.5152 Probability +1306.6344 Phenomenology +1306.6669 Operator Algebras +1307.1130 Quantum Gases +1307.1458 Mesoscale and Nanoscale Physics +1307.1732 +1307.3030 Algebraic Geometry +1307.4017 +1307.6323 Phenomenology +1307.6663 Discrete Mathematics +1308.0253 Materials Science +1308.0468 Quantum Gases +1308.1384 Materials Science +1308.4241 Neurons and Cognition +1308.4347 Differential Geometry +1308.4476 Superconductivity +1308.4589 Applications +1308.4815 Programming Languages +1308.4937 Instrumentation and Detectors +1308.4978 Software Engineering +1308.4985 +1308.4987 High Energy Astrophysical Phenomena +1308.4993 Lattice +1308.4994 Information Theory +1308.4995 Functional Analysis +1308.4996 Computational Geometry +1308.4997 Differential Geometry +1308.4999 Social and Information Networks +1308.5002 Geometric Topology +1308.5006 Solar and Stellar Astrophysics +1308.5009 +1308.5010 Physics and Society +1308.5014 Operator Algebras +1308.5019 Computational Finance +1308.5020 Combinatorics +1308.5021 +1308.5025 Accelerator Physics +1308.5028 Functional Analysis +1308.5029 Symbolic Computation +1308.5030 Optics +1308.5032 Neural and Evolutionary Computing +1308.5033 Neural and Evolutionary Computing +1308.5034 Neurons and Cognition +1308.5036 Methodology +1308.5037 Neurons and Cognition +1308.5039 +1308.5041 Number Theory +1308.5042 Optimization and Control +1308.5044 Optimization and Control +1308.5045 Optimization and Control +1308.5046 Artificial Intelligence +1308.5047 Theory +1308.5049 Number Theory +1308.5050 Neurons and Cognition +1308.5053 Emerging Technologies +1308.5057 Probability +1308.5063 Computer Vision and Pattern Recognition +1308.5065 Functional Analysis +1308.5067 Atmospheric and Oceanic Physics +1308.5079 Computational Geometry +1308.5080 Algebraic Geometry +1308.5081 Classical Analysis and ODEs +1308.5085 Commutative Algebra +1308.5086 Optics +1308.5089 Mesoscale and Nanoscale Physics +1308.5092 Networking and Internet Architecture +1308.5094 Populations and Evolution +1308.5095 Instrumentation and Methods for Astrophysics +1308.5096 Probability +1308.5101 Metric Geometry +1308.5103 Operator Algebras +1308.5104 Rings and Algebras +1308.5106 Analysis of PDEs +1308.5107 Mesoscale and Nanoscale Physics +1308.5108 Representation Theory +1308.5110 Theory +1308.5111 Astrophysics of Galaxies +1308.5112 Probability +1308.5118 +1308.5124 Cell Behavior +1308.5125 Social and Information Networks +1308.5137 Artificial Intelligence +1308.5138 Neural and Evolutionary Computing +1308.5147 Functional Analysis +1308.5152 Risk Management +1308.5157 High Energy Astrophysical Phenomena +1308.5158 Computational Complexity +1308.5160 Algebraic Geometry +1308.5161 Chemical Physics +1308.5162 Strongly Correlated Electrons +1308.5163 Cell Behavior +1308.5166 Phenomenology +1308.5168 Social and Information Networks +1308.5171 Functional Analysis +1308.5177 Distributed, Parallel, and Cluster Computing +1308.5180 Dynamical Systems +1308.5181 Earth and Planetary Astrophysics +1308.5189 Probability +1308.5194 Number Theory +1308.5195 Astrophysics of Galaxies +1308.5199 Solar and Stellar Astrophysics +1308.5202 Information Theory +1308.5206 Combinatorics +1308.5208 Computational Physics +1308.5212 +1308.5213 Computational Physics +1308.5214 Medical Physics +1308.5215 Computational Physics +1308.5217 Differential Geometry +cond-mat/0608229 Materials Science +math/0507404 Algebraic Geometry +math/0512190 Algebraic Geometry +math/0601131 Number Theory +nlin/0512025 Adaptation and Self-Organizing Systems +q-bio/0402002 Populations and Evolution +quant-ph/0007044 +0704.0444 Theory +0704.0570 Mesoscale and Nanoscale Physics +0704.2352 +0704.2431 Superconductivity +0704.2746 Materials Science +0704.3045 Phenomenology +0705.0532 Mesoscale and Nanoscale Physics +0705.0872 Plasma Physics +0705.1292 Data Analysis, Statistics and Probability +0705.2393 +0705.2782 Other Condensed Matter +0705.2937 Strongly Correlated Electrons +0705.3539 Soft Condensed Matter +0705.3791 Strongly Correlated Electrons +0705.4055 Chaotic Dynamics +0705.4222 Superconductivity +0705.4235 Atomic and Molecular Clusters +0706.1058 Strongly Correlated Electrons +0706.1746 Superconductivity +0706.2582 Strongly Correlated Electrons +0706.2671 Statistical Mechanics +0706.3129 Disordered Systems and Neural Networks +0706.3371 Strongly Correlated Electrons +0706.3821 +0706.4003 Strongly Correlated Electrons +0706.4422 Statistical Mechanics +0707.0384 Materials Science +0707.0529 +0707.0695 Statistical Mechanics +0707.0776 Other Condensed Matter +0707.1497 +0707.1963 Disordered Systems and Neural Networks +0707.2415 Materials Science +0707.2535 Mesoscale and Nanoscale Physics +0707.2611 +0707.2765 Other Condensed Matter +0707.3031 +0707.3242 Phenomenology +0707.3428 Physics and Society +0708.0384 Mesoscale and Nanoscale Physics +0708.0710 Strongly Correlated Electrons +0708.1094 +0708.1886 Optics +0708.2953 Statistical Mechanics +0708.3102 Statistical Mechanics +0708.3231 Mesoscale and Nanoscale Physics +0708.3855 Materials Science +0709.2059 Materials Science +0709.2164 Phenomenology +0709.2170 Theory +0709.2231 Disordered Systems and Neural Networks +0709.2323 Statistical Mechanics +0709.2454 +0709.2548 Mesoscale and Nanoscale Physics +0709.2643 +0709.2698 Disordered Systems and Neural Networks +0709.3381 Quantum Gases +0709.4059 +0709.4379 Strongly Correlated Electrons +0710.0391 Statistical Mechanics +0710.0478 Mesoscale and Nanoscale Physics +0710.1015 +0710.3086 +0710.3100 Phenomenology +0710.3420 Populations and Evolution +0710.3962 Mesoscale and Nanoscale Physics +0710.4183 +0710.4391 Other Condensed Matter +0710.5441 Physics and Society +0710.5606 Statistical Mechanics +0710.5943 +0711.0333 Strongly Correlated Electrons +0711.0337 Atomic Physics +0711.1275 +0711.1331 Materials Science +0711.1563 Superconductivity +0711.1879 Theory +0711.2538 Soft Condensed Matter +0711.2661 Mesoscale and Nanoscale Physics +0711.3391 Statistical Mechanics +0711.3531 Experiment +0711.3567 Mesoscale and Nanoscale Physics +0711.3767 Strongly Correlated Electrons +0711.4154 Superconductivity +0712.0320 +0712.0403 Theory +0712.1431 Disordered Systems and Neural Networks +0712.1561 Statistical Mechanics +0712.1772 Soft Condensed Matter +0712.1908 Mesoscale and Nanoscale Physics +0712.2838 Strongly Correlated Electrons +0712.3216 +0712.3341 Superconductivity +0712.3431 Strongly Correlated Electrons +0712.4280 Superconductivity +0801.0229 Mesoscale and Nanoscale Physics +0801.0253 Neurons and Cognition +0801.0475 Atomic Physics +0801.1194 Atomic Physics +0801.1573 Physics and Society +0801.1756 Disordered Systems and Neural Networks +0801.3566 Materials Science +0801.4084 Superconductivity +0802.0472 +0802.0485 Soft Condensed Matter +0802.0828 Atomic Physics +0802.1436 Materials Science +0802.2007 Materials Science +0802.2584 Phenomenology +0802.4329 Mesoscale and Nanoscale Physics +0803.0971 Other Condensed Matter +0803.1037 Materials Science +0803.1039 Atomic Physics +0803.1044 Superconductivity +0803.1142 Disordered Systems and Neural Networks +0803.1196 Mesoscale and Nanoscale Physics +0803.2465 Mesoscale and Nanoscale Physics +0803.2515 Superconductivity +0803.2860 Subcellular Processes +0803.3052 Superconductivity +0803.3374 Soft Condensed Matter +0803.3614 Superconductivity +0803.3649 Materials Science +0803.3978 Superconductivity +0803.4028 Theory +0804.0367 +0804.1136 +0804.1436 Disordered Systems and Neural Networks +0804.1512 Strongly Correlated Electrons +0804.2099 Mesoscale and Nanoscale Physics +0804.2919 +0804.3043 Strongly Correlated Electrons +0804.3366 Mesoscale and Nanoscale Physics +0804.4306 Materials Science +0804.4822 Superconductivity +0805.0220 Soft Condensed Matter +0805.0624 Strongly Correlated Electrons +0805.0847 Other Condensed Matter +0805.1393 Strongly Correlated Electrons +0805.1490 Chaotic Dynamics +0805.1543 Strongly Correlated Electrons +0805.3145 Strongly Correlated Electrons +0805.3191 Other Condensed Matter +0805.3265 Statistical Mechanics +0805.3292 Materials Science +0805.3343 Superconductivity +0805.3745 Soft Condensed Matter +0805.4151 Mesoscale and Nanoscale Physics +0805.4155 Phenomenology +0805.4164 +0805.4193 Superconductivity +0805.4284 Mesoscale and Nanoscale Physics +0805.4463 Superconductivity +0805.4825 +0806.0420 Materials Science +0806.0869 Mesoscale and Nanoscale Physics +0806.0996 Pattern Formation and Solitons +0806.1352 Superconductivity +0806.1449 Experiment +0806.1552 Disordered Systems and Neural Networks +0806.1660 +0806.1853 Strongly Correlated Electrons +0806.2699 +0806.3474 +0806.4692 Theory +0807.0067 +0807.0413 Soft Condensed Matter +0807.0466 Theory +0807.0797 Mesoscale and Nanoscale Physics +0807.0955 Mesoscale and Nanoscale Physics +0807.1040 Superconductivity +0807.1110 Lattice +0807.1118 +0807.1123 Strongly Correlated Electrons +0807.1137 Mesoscale and Nanoscale Physics +0807.1492 Theory +0807.1736 Number Theory +0807.1909 Optics +0807.1981 Mesoscale and Nanoscale Physics +0807.2031 Physics and Society +0807.2158 +0807.2202 +0807.2498 Superconductivity +0807.2854 Strongly Correlated Electrons +0807.2977 Strongly Correlated Electrons +0807.3610 +0807.3645 +0807.3683 Other Condensed Matter +0807.3800 Statistical Finance +0807.3809 Neurons and Cognition +0807.3938 +0807.3977 +0807.4079 Statistical Mechanics +0807.4169 Operator Algebras +0807.4566 Superconductivity +0807.4659 +0807.4851 Atomic Physics +0807.4905 Superconductivity +0807.4922 Phenomenology +0807.5026 Mesoscale and Nanoscale Physics +0808.0144 Phenomenology +0808.0302 Superconductivity +0808.0336 Strongly Correlated Electrons +0808.0478 +0808.0479 Mesoscale and Nanoscale Physics +0808.0927 Phenomenology +0808.0944 +0808.1513 Chaotic Dynamics +0808.1768 +0808.1861 Other Condensed Matter +0808.2010 +0808.2145 Computational Physics +0808.2185 Superconductivity +0808.2224 Mesoscale and Nanoscale Physics +0808.2445 Experiment +0808.2501 +0808.2738 Superconductivity +0808.2809 Statistical Mechanics +0808.3217 Disordered Systems and Neural Networks +0808.3339 Statistical Finance +0808.3380 Atomic Physics +0808.3491 Strongly Correlated Electrons +0808.3827 Materials Science +0808.3862 +0808.3996 Neurons and Cognition +0809.0036 Theory +0809.0041 Superconductivity +0809.0051 Mesoscale and Nanoscale Physics +0809.0075 Strongly Correlated Electrons +0809.0244 Superconductivity +0809.0481 Trading and Market Microstructure +0809.0798 Strongly Correlated Electrons +0809.1072 Number Theory +0809.1392 Mesoscale and Nanoscale Physics +0809.1406 Statistical Mechanics +0809.1697 Pattern Formation and Solitons +0809.2049 +0809.2264 +0809.2900 Soft Condensed Matter +0809.2959 Superconductivity +0809.3426 Other Condensed Matter +0809.3505 Theory +0809.3882 +0809.3988 Disordered Systems and Neural Networks +0809.4266 Theory +0809.4706 Materials Science +0809.5076 Phenomenology +0810.0279 Strongly Correlated Electrons +0810.0358 Experiment +0810.0454 +0810.0523 Strongly Correlated Electrons +0810.0552 Materials Science +0810.0636 Mesoscale and Nanoscale Physics +0810.0642 Materials Science +0810.0932 +0810.0977 +0810.1414 +0810.1428 Disordered Systems and Neural Networks +0810.1911 Mesoscale and Nanoscale Physics +0810.1955 Mesoscale and Nanoscale Physics +0810.2110 +0810.2425 Mesoscale and Nanoscale Physics +0810.2484 Soft Condensed Matter +0810.2760 Populations and Evolution +0810.2801 Materials Science +0810.2820 Physics and Society +0810.2882 +0810.2901 Neurons and Cognition +0810.3407 Soft Condensed Matter +0810.3872 Strongly Correlated Electrons +0810.3949 Statistical Mechanics +0810.3953 Strongly Correlated Electrons +0810.4113 Disordered Systems and Neural Networks +0810.4163 Strongly Correlated Electrons +0810.4274 Phenomenology +0810.4296 Theory +0810.4335 +0810.4488 Mesoscale and Nanoscale Physics +0810.4743 Physics and Society +0810.5105 Mesoscale and Nanoscale Physics +0810.5114 Mesoscale and Nanoscale Physics +0810.5232 Mesoscale and Nanoscale Physics +0810.5580 +0810.5653 Materials Science +0810.5715 Soft Condensed Matter +0811.0026 Strongly Correlated Electrons +0811.0059 Mesoscale and Nanoscale Physics +0811.0156 Pattern Formation and Solitons +0811.0368 Phenomenology +0811.0395 Strongly Correlated Electrons +0811.0510 Chaotic Dynamics +0811.0590 Strongly Correlated Electrons +0811.0838 +0811.0870 Mesoscale and Nanoscale Physics +0811.0879 Strongly Correlated Electrons +0811.0911 Strongly Correlated Electrons +0811.1006 Lattice +0811.1118 Atomic Physics +0811.1119 Phenomenology +0811.1207 Experiment +0811.1258 Mesoscale and Nanoscale Physics +0811.1288 +0811.1464 Physics and Society +0811.1499 Atomic and Molecular Clusters +0811.1537 Other Condensed Matter +0811.1869 +0811.1962 +0811.2050 +0811.2188 Mesoscale and Nanoscale Physics +0811.2208 Materials Science +0811.2209 Molecular Networks +0811.2218 Strongly Correlated Electrons +0811.2511 Materials Science +0811.2538 Plasma Physics +0811.2676 Other Condensed Matter +0811.2677 Strongly Correlated Electrons +0811.2858 Materials Science +0811.3000 Strongly Correlated Electrons +0811.3100 +0811.3135 +0811.3270 Superconductivity +0811.3394 Atomic Physics +0811.3407 Molecular Networks +0811.3435 Disordered Systems and Neural Networks +0811.3454 Strongly Correlated Electrons +0811.3578 Other Condensed Matter +0811.3814 +0811.4003 +0811.4072 Mesoscale and Nanoscale Physics +0811.4201 Mesoscale and Nanoscale Physics +0811.4417 Strongly Correlated Electrons +0811.4605 +0811.4695 +0811.4696 Superconductivity +0812.0015 Superconductivity +0812.0056 Superconductivity +0812.0226 Soft Condensed Matter +0812.0244 Materials Science +0812.0401 Plasma Physics +0812.0460 Chaotic Dynamics +0812.0507 +0812.0661 Superconductivity +0812.0701 +0812.1068 Superconductivity +0812.1182 Strongly Correlated Electrons +0812.1248 Neurons and Cognition +0812.1452 Materials Science +0812.1491 Mesoscale and Nanoscale Physics +0812.1572 +0812.1617 +0812.1851 Mesoscale and Nanoscale Physics +0812.2066 Subcellular Processes +0812.2385 +0812.2414 Mesoscale and Nanoscale Physics +0812.2456 Strongly Correlated Electrons +0812.2595 Strongly Correlated Electrons +0812.2691 Mesoscale and Nanoscale Physics +0812.2798 +0812.2923 Materials Science +0812.3015 +0812.3121 Other Condensed Matter +0812.3158 Strongly Correlated Electrons +0812.3247 Theory +0812.3274 Statistical Mechanics +0812.3346 Materials Science +0812.3351 Superconductivity +0812.3417 Disordered Systems and Neural Networks +0812.3490 Statistical Mechanics +0812.3498 Optics +0812.3509 Atomic Physics +0812.3515 Mesoscale and Nanoscale Physics +0812.3575 Strongly Correlated Electrons +0812.3597 +0812.3599 Statistical Mechanics +0812.3630 Other Condensed Matter +0812.3654 Statistical Mechanics +0812.3689 +0812.3819 +0812.3824 Strongly Correlated Electrons +0812.3889 Statistical Mechanics +0812.3896 Mesoscale and Nanoscale Physics +0812.3945 Superconductivity +0812.4067 +0812.4116 Materials Science +0812.4133 Mesoscale and Nanoscale Physics +0812.4139 Strongly Correlated Electrons +0812.4195 Other Condensed Matter +0812.4215 Materials Science +0812.4351 Materials Science +0812.4578 +0812.4635 +0812.4823 Chaotic Dynamics +0812.4863 +0812.4899 Soft Condensed Matter +0812.4967 Mesoscale and Nanoscale Physics +0812.5110 Mesoscale and Nanoscale Physics +0901.0078 Optics +0901.0255 Fluid Dynamics +0901.0284 Disordered Systems and Neural Networks +0901.0420 Strongly Correlated Electrons +0901.0533 +0901.0754 Statistical Mechanics +0901.0812 +0901.1009 Mesoscale and Nanoscale Physics +0901.1160 Theory +0901.1299 Superconductivity +0901.1386 +0901.1419 Superconductivity +0901.1498 Strongly Correlated Electrons +0901.1557 Mesoscale and Nanoscale Physics +0901.1669 +0901.2019 Strongly Correlated Electrons +0901.2542 +0901.2663 +0901.2772 Other Condensed Matter +0901.2791 Strongly Correlated Electrons +0901.2824 +0901.2837 +0901.3113 Phenomenology +0901.3128 Pattern Formation and Solitons +0901.3133 Superconductivity +0901.3208 Optics +0901.3264 +0901.3280 Phenomenology +0901.3409 Mesoscale and Nanoscale Physics +0901.3567 Materials Science +0901.3767 Other Condensed Matter +0901.3930 Soft Condensed Matter +0901.4008 Atomic Physics +0901.4159 Mesoscale and Nanoscale Physics +0901.4166 Soft Condensed Matter +0901.4237 +0901.4274 Other Condensed Matter +0901.4303 Other Condensed Matter +0901.4615 Optics +0901.4695 +0901.4706 Materials Science +0901.4867 Strongly Correlated Electrons +0901.4878 Materials Science +0901.4949 Phenomenology +0902.0002 Theory +0902.0341 Mesoscale and Nanoscale Physics +0902.0459 Phenomenology +0902.0531 Materials Science +0902.0594 Disordered Systems and Neural Networks +0902.0756 Superconductivity +0902.0843 Strongly Correlated Electrons +0902.0984 Other Condensed Matter +0902.1100 Superconductivity +0902.1111 Strongly Correlated Electrons +0902.1209 Statistical Mechanics +0902.1303 Phenomenology +0902.1317 Other Condensed Matter +0902.1371 Strongly Correlated Electrons +0902.1575 +0902.1580 +0902.1584 Materials Science +0902.1752 Strongly Correlated Electrons +0902.1861 Phenomenology +0902.1969 +0902.2167 Atomic Physics +0902.2175 Physics and Society +0902.2414 Materials Science +0902.2457 Mesoscale and Nanoscale Physics +0902.2653 Mesoscale and Nanoscale Physics +0902.2658 +0902.2703 +0902.2803 Phenomenology +0902.2908 Superconductivity +0902.2957 +0902.2960 +0902.3118 Other Condensed Matter +0902.3244 Materials Science +0902.3386 Phenomenology +0902.3605 +0902.3890 +0902.3964 +0902.3969 Other Condensed Matter +0902.4210 Strongly Correlated Electrons +0902.4276 Other Condensed Matter +0902.4412 Strongly Correlated Electrons +0902.4432 +0902.4442 Statistical Mechanics +0902.4475 Strongly Correlated Electrons +0902.4548 Chemical Physics +0902.4797 +0902.4861 Strongly Correlated Electrons +0903.0057 Pattern Formation and Solitons +0903.0396 Phenomenology +0903.0497 Materials Science +0903.0524 Atomic Physics +0903.0564 Phenomenology +0903.0586 +0903.0597 Physics and Society +0903.0751 +0903.0794 Strongly Correlated Electrons +0903.0854 Other Condensed Matter +0903.0861 Materials Science +0903.0870 Strongly Correlated Electrons +0903.1072 Physics and Society +0903.1089 Theory +0903.1171 +0903.1269 Other Condensed Matter +0903.1309 Other Condensed Matter +0903.1340 +0903.1415 +0903.1607 Strongly Correlated Electrons +0903.1653 Soft Condensed Matter +0903.1662 Superconductivity +0903.1993 +0903.2025 Superconductivity +0903.2082 Biomolecules +0903.2102 Disordered Systems and Neural Networks +0903.2111 Other Condensed Matter +0903.2276 Strongly Correlated Electrons +0903.2287 Phenomenology +0903.2303 Soft Condensed Matter +0903.2359 Statistical Mechanics +0903.2377 Materials Science +0903.2404 Materials Science +0903.2501 Lattice +0903.2568 Other Condensed Matter +0903.2681 Mesoscale and Nanoscale Physics +0903.2833 Superconductivity +0903.2838 +0903.2865 Strongly Correlated Electrons +0903.2881 Superconductivity +0903.2976 Materials Science +0903.2989 Strongly Correlated Electrons +0903.3033 Mesoscale and Nanoscale Physics +0903.3168 Strongly Correlated Electrons +0903.3380 +0903.3408 Strongly Correlated Electrons +0903.3414 Statistical Mechanics +0903.3427 Mesoscale and Nanoscale Physics +0903.3454 Superconductivity +0903.3459 Atomic Physics +0903.3740 Statistical Mechanics +0903.3858 Superconductivity +0903.3909 Chemical Physics +0903.3916 +0903.4114 Theory +0903.4145 Atomic Physics +0903.4222 Statistical Mechanics +0903.4273 +0903.4308 +0903.4621 Superconductivity +0903.4630 Theory +0903.4653 Strongly Correlated Electrons +0903.5153 Statistical Mechanics +0903.5159 Other Condensed Matter +0903.5226 Other Condensed Matter +0903.5233 +0903.5260 Superconductivity +0903.5343 Quantum Gases +0903.5348 Theory +0903.5541 Soft Condensed Matter +0904.0060 +0904.0493 +0904.0505 Strongly Correlated Electrons +0904.0550 Strongly Correlated Electrons +0904.0795 Strongly Correlated Electrons +0904.0804 Statistical Mechanics +0904.0844 +0904.0864 Lattice +0904.0947 Molecular Networks +0904.1046 Mesoscale and Nanoscale Physics +0904.1123 Disordered Systems and Neural Networks +0904.1387 +0904.1396 Mesoscale and Nanoscale Physics +0904.1433 Strongly Correlated Electrons +0904.1634 Superconductivity +0904.1751 Mesoscale and Nanoscale Physics +0904.1780 Superconductivity +0904.1844 Atomic and Molecular Clusters +0904.1899 Soft Condensed Matter +0904.1908 Mesoscale and Nanoscale Physics +0904.2085 Fluid Dynamics +0904.2118 Materials Science +0904.2135 Biological Physics +0904.2197 Strongly Correlated Electrons +0904.2211 +0904.2267 +0904.2391 Superconductivity +0904.2397 Superconductivity +0904.2420 +0904.2459 +0904.2504 +0904.2538 Soft Condensed Matter +0904.2614 +0904.2638 Logic in Computer Science +0904.2713 Soft Condensed Matter +0904.2783 +0904.2835 Theory +0904.2881 Quantum Gases +0904.3150 Materials Science +0904.3158 Chaotic Dynamics +0904.3242 Strongly Correlated Electrons +0904.3315 Materials Science +0904.3359 Superconductivity +0904.3402 Strongly Correlated Electrons +0904.3455 Superconductivity +0904.3522 +0904.3544 Theory +0904.3699 Disordered Systems and Neural Networks +0904.3708 Superconductivity +0904.3738 Quantum Gases +0904.3784 Superconductivity +0904.3843 Statistical Mechanics +0904.3883 Strongly Correlated Electrons +0904.3945 +0904.4055 Soft Condensed Matter +0904.4069 Biological Physics +0904.4128 +0904.4165 +0904.4435 +0904.4444 Other Condensed Matter +0904.4603 Strongly Correlated Electrons +0904.4681 Strongly Correlated Electrons +0904.4815 Quantum Gases +0904.4818 +0904.4841 Theory +0904.4870 +0905.0052 +0905.0089 Statistical Mechanics +0905.0222 Quantum Gases +0905.0291 Phenomenology +0905.0424 Mesoscale and Nanoscale Physics +0905.0560 +0905.0598 Quantum Gases +0905.0625 Superconductivity +0905.0717 Cosmology and Nongalactic Astrophysics +0905.0734 Superconductivity +0905.0807 Category Theory +0905.0827 Mesoscale and Nanoscale Physics +0905.0912 Quantum Gases +0905.0933 +0905.0970 +0905.1052 Quantum Gases +0905.1063 Quantum Gases +0905.1083 Populations and Evolution +0905.1085 +0905.1094 +0905.1156 Strongly Correlated Electrons +0905.1232 Strongly Correlated Electrons +0905.1407 +0905.1408 +0905.1481 Superconductivity +0905.1501 +0905.1515 Quantum Gases +0905.1704 Strongly Correlated Electrons +0905.2003 Phenomenology +0905.2058 Theory +0905.2072 Atomic Physics +0905.2145 Subcellular Processes +0905.2199 +0905.2593 +0905.2682 Statistical Mechanics +0905.2716 Optics +0905.2741 +0905.2817 Disordered Systems and Neural Networks +0905.2859 Statistical Mechanics +0905.2928 Theory +0905.2932 Other Quantitative Biology +0905.2971 Strongly Correlated Electrons +0905.2995 Theory +0905.2998 +0905.3183 Theory +0905.3225 Strongly Correlated Electrons +0905.3231 Strongly Correlated Electrons +0905.3288 Soft Condensed Matter +0905.3289 Superconductivity +0905.3301 +0905.3523 Chaotic Dynamics +0905.3575 Materials Science +0905.3645 Mesoscale and Nanoscale Physics +0905.3679 Disordered Systems and Neural Networks +0905.3721 Strongly Correlated Electrons +0905.3722 +0905.3729 +0905.3758 Statistical Mechanics +0905.3782 Materials Science +0905.3893 Theory +0905.3974 +0905.4049 Symplectic Geometry +0905.4111 Disordered Systems and Neural Networks +0905.4112 Strongly Correlated Electrons +0905.4515 Strongly Correlated Electrons +0905.4520 Mesoscale and Nanoscale Physics +0905.4529 +0905.4556 +0905.4568 Theory +0905.4573 Materials Science +0905.4699 Mesoscale and Nanoscale Physics +0905.4722 Mesoscale and Nanoscale Physics +0905.4752 Theory +0905.4755 +0905.4794 +0905.4817 Quantum Gases +0905.4844 Superconductivity +0905.4878 Disordered Systems and Neural Networks +0906.0042 Theory +0906.0310 Mesoscale and Nanoscale Physics +0906.0337 Mesoscale and Nanoscale Physics +0906.0356 Mesoscale and Nanoscale Physics +0906.0357 Strongly Correlated Electrons +0906.0459 Statistical Mechanics +0906.0489 Theory +0906.0503 Classical Physics +0906.0507 Cosmology and Nongalactic Astrophysics +0906.0524 +0906.0597 Mesoscale and Nanoscale Physics +0906.0637 +0906.0689 +0906.0699 Phenomenology +0906.0811 Strongly Correlated Electrons +0906.0894 Strongly Correlated Electrons +0906.0955 Quantum Gases +0906.1140 Phenomenology +0906.1179 Strongly Correlated Electrons +0906.1387 Trading and Market Microstructure +0906.1523 Phenomenology +0906.1594 Materials Science +0906.1719 +0906.1908 Disordered Systems and Neural Networks +0906.1909 +0906.1945 +0906.2049 Theory +0906.2146 Materials Science +0906.2167 Soft Condensed Matter +0906.2282 Mesoscale and Nanoscale Physics +0906.2389 Superconductivity +0906.2394 Pattern Formation and Solitons +0906.2396 Theory +0906.2469 Theory +0906.2640 Statistical Mechanics +0906.2690 +0906.2731 +0906.2735 +0906.2964 Theory +0906.2990 +0906.3003 +0906.3040 Strongly Correlated Electrons +0906.3459 Statistical Mechanics +0906.3651 Plasma Physics +0906.3692 +0906.3714 Theory +0906.3752 Cosmology and Nongalactic Astrophysics +0906.3753 Quantum Gases +0906.3756 +0906.3833 High Energy Astrophysical Phenomena +0906.3837 Theory +0906.3872 Mesoscale and Nanoscale Physics +0906.4067 Chaotic Dynamics +0906.4086 Statistical Mechanics +0906.4099 Phenomenology +0906.4344 +0906.4657 Phenomenology +0906.4681 +0906.4720 Lattice +0906.4723 +0906.4810 Theory +0906.4832 +0906.4988 Statistical Mechanics +0906.5015 Theory +0906.5044 Theory +0906.5072 Phenomenology +0906.5108 +0906.5184 Superconductivity +0906.5384 Mesoscale and Nanoscale Physics +0906.5420 Mesoscale and Nanoscale Physics +0906.5457 Materials Science +0906.5492 Theory +0906.5614 Phenomenology +0907.0078 Data Analysis, Statistics and Probability +0907.0118 Materials Science +0907.0186 Superconductivity +0907.0444 +0907.0463 +0907.0473 Theory +0907.0474 Phenomenology +0907.0556 +0907.0564 Quantum Gases +0907.0679 Quantum Gases +0907.0844 Strongly Correlated Electrons +0907.0874 +0907.0983 Phenomenology +0907.1111 Materials Science +0907.1362 Theory +0907.1478 Statistical Mechanics +0907.1560 Phenomenology +0907.1673 +0907.1818 +0907.1876 Other Condensed Matter +0907.1909 Mesoscale and Nanoscale Physics +0907.2038 +0907.2187 Statistical Mechanics +0907.2369 +0907.2591 Fluid Dynamics +0907.2592 Atomic Physics +0907.2678 Mesoscale and Nanoscale Physics +0907.2713 Phenomenology +0907.2743 Quantum Gases +0907.2842 Phenomenology +0907.2847 Statistical Mechanics +0907.2867 Materials Science +0907.2893 Strongly Correlated Electrons +0907.2948 Soft Condensed Matter +0907.2980 Lattice +0907.3040 Optics +0907.3093 Theory +0907.3107 Statistical Mechanics +0907.3167 Phenomenology +0907.3233 Theory +0907.3421 Plasma Physics +0907.3462 Theory +0907.3618 Cosmology and Nongalactic Astrophysics +0907.3630 Superconductivity +0907.3727 Atomic Physics +0907.3737 Phenomenology +0907.4201 +0907.4537 Strongly Correlated Electrons +0907.4595 Quantum Gases +0907.4797 +0907.5052 Phenomenology +0907.5053 Disordered Systems and Neural Networks +0907.5104 +0907.5164 Quantitative Methods +0907.5167 +0907.5189 Phenomenology +0907.5379 Strongly Correlated Electrons +0907.5404 +0907.5405 Atomic Physics +0907.5431 Materials Science +0907.5513 Strongly Correlated Electrons +0907.5523 Quantum Gases +0907.5576 Strongly Correlated Electrons +0908.0001 Cosmology and Nongalactic Astrophysics +0908.0012 Statistical Mechanics +0908.0033 Superconductivity +0908.0068 Strongly Correlated Electrons +0908.0071 Mesoscale and Nanoscale Physics +0908.0119 +0908.0144 Statistical Mechanics +0908.0236 Quantum Gases +0908.0243 +0908.0291 +0908.0359 Computational Physics +0908.0543 Cosmology and Nongalactic Astrophysics +0908.0579 +0908.0590 Mesoscale and Nanoscale Physics +0908.0702 +0908.0715 Theory +0908.0836 +0908.0844 Strongly Correlated Electrons +0908.0947 Strongly Correlated Electrons +0908.0950 +0908.0991 Cosmology and Nongalactic Astrophysics +0908.1048 +0908.1096 +0908.1225 Strongly Correlated Electrons +0908.1418 Materials Science +0908.1456 +0908.1641 +0908.1846 +0908.1900 Mesoscale and Nanoscale Physics +0908.1954 Theory +0908.1970 Mesoscale and Nanoscale Physics +0908.1972 Theory +0908.2019 Strongly Correlated Electrons +0908.2176 Disordered Systems and Neural Networks +0908.2209 Superconductivity +0908.2343 Mesoscale and Nanoscale Physics +0908.2394 Theory +0908.2477 Theory +0908.2490 Mesoscale and Nanoscale Physics +0908.2520 +0908.2620 Strongly Correlated Electrons +0908.2666 Atomic Physics +0908.2723 Theory +0908.2728 Superconductivity +0908.2893 +0908.3011 Superconductivity +0908.3012 +0908.3074 Quantum Gases +0908.3144 +0908.3168 Superconductivity +0908.3199 Strongly Correlated Electrons +0908.3203 Optics +0908.3481 Mesoscale and Nanoscale Physics +0908.3639 Strongly Correlated Electrons +0908.3654 Mesoscale and Nanoscale Physics +0908.3793 Mesoscale and Nanoscale Physics +0908.3867 +0908.3932 +0908.4058 Strongly Correlated Electrons +0908.4118 Data Analysis, Statistics and Probability +0908.4196 +0908.4237 Phenomenology +0908.4365 Mesoscale and Nanoscale Physics +0908.4409 Theory +0908.4434 Mesoscale and Nanoscale Physics +0908.4504 Optics +0909.0047 Strongly Correlated Electrons +0909.0064 +0909.0234 Other Condensed Matter +0909.0256 +0909.0542 Theory +0909.0812 Mesoscale and Nanoscale Physics +0909.0813 Soft Condensed Matter +0909.0867 Strongly Correlated Electrons +0909.0931 +0909.0959 Theory +0909.1080 +0909.1365 Theory +0909.1394 Plasma Physics +0909.1561 Quantum Gases +0909.1575 Chaotic Dynamics +0909.1577 +0909.1822 Materials Science +0909.1837 Cosmology and Nongalactic Astrophysics +0909.1885 Disordered Systems and Neural Networks +0909.1954 Other Condensed Matter +0909.1956 Mesoscale and Nanoscale Physics +0909.1972 Strongly Correlated Electrons +0909.2155 Strongly Correlated Electrons +0909.2238 Phenomenology +0909.2553 Phenomenology +0909.2633 Other Condensed Matter +0909.2654 Strongly Correlated Electrons +0909.2661 Statistical Mechanics +0909.2707 Statistical Mechanics +0909.2748 +0909.2788 Materials Science +0909.2846 +0909.2857 Mesoscale and Nanoscale Physics +0909.2890 Superconductivity +0909.3005 +0909.3096 Strongly Correlated Electrons +0909.3341 +0909.3497 Mesoscale and Nanoscale Physics +0909.3557 +0909.3716 Soft Condensed Matter +0909.3749 Mesoscale and Nanoscale Physics +0909.3812 Pattern Formation and Solitons +0909.3824 Chemical Physics +0909.3896 +0909.4098 +0909.4209 Disordered Systems and Neural Networks +0909.4321 Superconductivity +0909.4483 +0909.4546 Strongly Correlated Electrons +0909.4608 +0909.4773 Strongly Correlated Electrons +0909.4837 Mesoscale and Nanoscale Physics +0909.4979 Materials Science +0909.5081 Atomic Physics +0909.5134 Mesoscale and Nanoscale Physics +0909.5172 Mesoscale and Nanoscale Physics +0909.5239 Strongly Correlated Electrons +0909.5330 Phenomenology +0909.5399 Statistical Mechanics +0909.5440 Phenomenology +0909.5443 +0909.5515 Theory +0909.5522 Theory +0909.5543 +0909.5620 Quantum Gases +0910.0034 Classical Physics +0910.0182 Quantum Gases +0910.0564 Atomic Physics +0910.0756 Mesoscale and Nanoscale Physics +0910.0912 Mesoscale and Nanoscale Physics +0910.1001 +0910.1221 Optics +0910.1382 Quantum Gases +0910.1530 Statistical Mechanics +0910.1750 +0910.1793 Strongly Correlated Electrons +0910.1800 Artificial Intelligence +0910.1829 +0910.1873 Quantum Gases +0910.1891 +0910.1978 Biological Physics +0910.2019 Complex Variables +0910.2056 Strongly Correlated Electrons +0910.2204 Strongly Correlated Electrons +0910.2286 Strongly Correlated Electrons +0910.2299 +0910.2412 Atomic Physics +0910.2488 Strongly Correlated Electrons +0910.2492 Cosmology and Nongalactic Astrophysics +0910.2610 Quantum Gases +0910.2806 Superconductivity +0910.2844 Mesoscale and Nanoscale Physics +0910.3305 Optics +0910.3488 Theory +0910.3617 Plasma Physics +0910.3699 Quantum Gases +0910.3790 Phenomenology +0910.3837 Atomic Physics +0910.3988 Strongly Correlated Electrons +0910.3995 Mesoscale and Nanoscale Physics +0910.4061 +0910.4121 Materials Science +0910.4311 +0910.4577 Superconductivity +0910.5085 Statistical Mechanics +0910.5214 Atomic Physics +0910.5235 Mesoscale and Nanoscale Physics +0910.5254 +0910.5351 Theory +0910.5458 Strongly Correlated Electrons +0910.5663 Materials Science +0910.5708 Strongly Correlated Electrons +0910.5852 Theory +0910.5921 Superconductivity +0910.5942 +0911.0146 Theory +0911.0153 Theory +0911.0192 Soft Condensed Matter +0911.0527 Chaotic Dynamics +0911.0655 +0911.0823 Mesoscale and Nanoscale Physics +0911.1537 Quantum Gases +0911.1559 Mesoscale and Nanoscale Physics +0911.1704 Quantum Gases +0911.1730 Soft Condensed Matter +0911.1769 Theory +0911.1850 Superconductivity +0911.2055 Statistical Mechanics +0911.2146 Phenomenology +0911.2239 Superconductivity +0911.2379 Quantum Gases +0911.2417 Theory +0911.2514 Statistical Mechanics +0911.2702 Strongly Correlated Electrons +0911.2961 +0911.3029 Statistical Mechanics +0911.3171 Mesoscale and Nanoscale Physics +0911.3548 Theory +0911.3579 +0911.3606 +0911.3630 Mesoscale and Nanoscale Physics +0911.3680 Materials Science +0911.3691 +0911.4084 Mesoscale and Nanoscale Physics +0911.4087 Soft Condensed Matter +0911.4094 Strongly Correlated Electrons +0911.4123 +0911.4174 Soft Condensed Matter +0911.4316 Strongly Correlated Electrons +0911.4499 Physics and Society +0911.4527 +0911.4682 +0911.4965 Quantum Gases +0911.5536 Quantum Gases +0911.5560 +0911.5729 +0912.0008 Strongly Correlated Electrons +0912.0069 Strongly Correlated Electrons +0912.0080 Materials Science +0912.0089 +0912.0747 Atomic Physics +0912.0843 Experiment +0912.0949 Cosmology and Nongalactic Astrophysics +0912.0963 +0912.1032 Superconductivity +0912.1049 Mesoscale and Nanoscale Physics +0912.1060 Disordered Systems and Neural Networks +0912.1259 +0912.1282 Strongly Correlated Electrons +0912.1305 Quantum Gases +0912.1522 +0912.1633 Quantum Gases +0912.1714 Other Condensed Matter +0912.1811 Superconductivity +0912.1870 +0912.1894 Soft Condensed Matter +0912.2004 Mesoscale and Nanoscale Physics +0912.2115 Strongly Correlated Electrons +0912.2133 Atomic Physics +0912.2334 Strongly Correlated Electrons +0912.2348 Phenomenology +0912.2453 Experiment +0912.2848 Statistical Mechanics +0912.3046 Materials Science +0912.3177 Strongly Correlated Electrons +0912.3197 Strongly Correlated Electrons +0912.3294 Superconductivity +0912.3386 +0912.3422 Statistical Mechanics +0912.3476 Quantum Gases +0912.3615 +0912.3658 Biological Physics +0912.3684 Statistical Mechanics +0912.3744 +0912.3750 Strongly Correlated Electrons +0912.4237 Superconductivity +0912.4513 Quantum Gases +0912.4629 Other Condensed Matter +0912.4746 Optics +0912.4762 Quantum Gases +0912.4893 Quantum Gases +0912.5049 Superconductivity +0912.5050 +0912.5204 Strongly Correlated Electrons +0912.5383 Phenomenology +0912.5401 +0912.5429 Accelerator Physics +0912.5470 Atomic Physics +0912.5500 Molecular Networks +1001.0089 +1001.0098 Quantum Gases +1001.0121 Materials Science +1001.0170 Populations and Evolution +1001.0343 +1001.0445 +1001.0663 Disordered Systems and Neural Networks +1001.0671 Superconductivity +1001.0693 Statistical Mechanics +1001.0715 Disordered Systems and Neural Networks +1001.0893 Disordered Systems and Neural Networks +1001.1001 Solar and Stellar Astrophysics +1001.1006 +1001.1015 Statistical Mechanics +1001.1119 Strongly Correlated Electrons +1001.1127 Superconductivity +1001.1505 Superconductivity +1001.1689 Superconductivity +1001.1762 Soft Condensed Matter +1001.1942 Statistical Mechanics +1001.2251 Physics and Society +1001.2260 Atomic Physics +1001.2322 Materials Science +1001.2462 Strongly Correlated Electrons +1001.2592 Quantum Gases +1001.2845 Other Condensed Matter +1001.2883 Phenomenology +1001.2993 Statistical Mechanics +1001.3021 Phenomenology +1001.3220 Mesoscale and Nanoscale Physics +1001.3334 Statistical Mechanics +1001.3423 Strongly Correlated Electrons +1001.3584 Mesoscale and Nanoscale Physics +1001.3707 Mesoscale and Nanoscale Physics +1001.3738 +1001.3837 +1001.3878 Physics and Society +1001.4024 Mesoscale and Nanoscale Physics +1001.4242 Materials Science +1001.4989 Strongly Correlated Electrons +1001.5185 +1002.0206 Theory +1002.0537 +1002.0776 Mesoscale and Nanoscale Physics +1002.0825 Statistical Mechanics +1002.0975 Materials Science +1002.1035 Theory +1002.1258 Atomic Physics +1002.1390 +1002.1405 Strongly Correlated Electrons +1002.1419 +1002.1477 Materials Science +1002.1671 Strongly Correlated Electrons +1002.2513 Mesoscale and Nanoscale Physics +1002.2616 Atomic Physics +1002.2647 Mesoscale and Nanoscale Physics +1002.2846 Theory +1002.2892 Superconductivity +1002.3016 Quantum Gases +1002.3140 Mesoscale and Nanoscale Physics +1002.3295 Materials Science +1002.3321 Optics +1002.3733 Accelerator Physics +1002.3743 Soft Condensed Matter +1002.3819 Materials Science +1002.4499 Statistical Mechanics +1002.4638 Superconductivity +1002.4673 +1003.0104 Molecular Networks +1003.0210 +1003.0296 Materials Science +1003.0432 +1003.0450 Statistical Mechanics +1003.0649 +1003.0726 +1003.0819 Strongly Correlated Electrons +1003.0845 Mesoscale and Nanoscale Physics +1003.0846 Optics +1003.0871 Adaptation and Self-Organizing Systems +1003.0882 +1003.0944 Soft Condensed Matter +1003.0992 Strongly Correlated Electrons +1003.1050 +1003.1221 +1003.1533 Mesoscale and Nanoscale Physics +1003.1591 Disordered Systems and Neural Networks +1003.1634 Physics and Society +1003.1774 Strongly Correlated Electrons +1003.1885 Statistical Mechanics +1003.2172 +1003.2194 Superconductivity +1003.2233 Strongly Correlated Electrons +1003.2258 +1003.2271 Strongly Correlated Electrons +1003.2277 Strongly Correlated Electrons +1003.2409 Theory +1003.2414 Mesoscale and Nanoscale Physics +1003.3331 +1003.3334 Statistical Mechanics +1003.3638 Soft Condensed Matter +1003.3675 +1003.4055 +1003.4200 Phenomenology +1003.4233 Theory +1003.4284 +1003.4290 +1003.4295 +1003.4456 Quantum Gases +1003.5135 Molecular Networks +1003.5224 Disordered Systems and Neural Networks +1003.5243 Mesoscale and Nanoscale Physics +1003.5599 Disordered Systems and Neural Networks +1003.5880 Phenomenology +1003.5902 Theory +1004.0013 Phenomenology +1004.0135 Optics +1004.0229 Theory +1004.0335 Quantum Gases +1004.0434 +1004.0510 Strongly Correlated Electrons +1004.0708 Strongly Correlated Electrons +1004.1119 Strongly Correlated Electrons +1004.1443 +1004.1536 Mesoscale and Nanoscale Physics +1004.1849 Materials Science +1004.1913 Optics +1004.2121 Quantum Gases +1004.2282 +1004.2318 +1004.2925 Quantum Gases +1004.3050 Soft Condensed Matter +1004.3112 +1004.3570 Strongly Correlated Electrons +1004.3657 Strongly Correlated Electrons +1004.3768 +1004.3787 +1004.3812 Atomic Physics +1004.3860 Theory +1004.4042 Mesoscale and Nanoscale Physics +1004.4054 +1004.4066 Soft Condensed Matter +1004.4201 Theory +1004.4486 Statistical Mechanics +1004.4501 Soft Condensed Matter +1004.4581 Quantum Gases +1004.4585 Mesoscale and Nanoscale Physics +1004.4811 Mesoscale and Nanoscale Physics +1004.4983 Statistical Mechanics +1004.5083 Mesoscale and Nanoscale Physics +1005.0018 Mesoscale and Nanoscale Physics +1005.0152 Materials Science +1005.0266 Disordered Systems and Neural Networks +1005.0561 Disordered Systems and Neural Networks +1005.0583 Mesoscale and Nanoscale Physics +1005.0687 +1005.1076 Strongly Correlated Electrons +1005.1270 Quantum Gases +1005.1493 +1005.1654 Mesoscale and Nanoscale Physics +1005.1872 Strongly Correlated Electrons +1005.2020 Statistical Mechanics +1005.2446 +1005.2597 Superconductivity +1005.2617 +1005.3100 Strongly Correlated Electrons +1005.3474 Materials Science +1005.3475 Strongly Correlated Electrons +1005.4273 Materials Science +1005.4311 Statistical Mechanics +1005.4339 Materials Science +1005.4424 Biological Physics +1005.4468 Superconductivity +1005.4476 Strongly Correlated Electrons +1005.4612 Statistical Mechanics +1005.5295 +1005.5328 +1006.0012 Quantum Gases +1006.0242 Mesoscale and Nanoscale Physics +1006.0417 Materials Science +1006.0550 Statistical Mechanics +1006.0943 Quantum Gases +1006.0947 +1006.1141 Disordered Systems and Neural Networks +1006.1316 Chaotic Dynamics +1006.1317 +1006.1358 +1006.1645 +1006.1650 Phenomenology +1006.1804 Optics +1006.1813 +1006.1934 +1006.1961 +1006.2133 +1006.2378 Strongly Correlated Electrons +1006.2395 Disordered Systems and Neural Networks +1006.2426 Mesoscale and Nanoscale Physics +1006.2627 +1006.2752 Molecular Networks +1006.2775 +1006.3032 +1006.3059 +1006.3516 Strongly Correlated Electrons +1006.3702 +1006.3774 Mesoscale and Nanoscale Physics +1006.3843 Materials Science +1006.3940 Soft Condensed Matter +1006.3990 Materials Science +1006.4348 Strongly Correlated Electrons +1006.4483 General Mathematics +1006.4497 Statistical Mechanics +1006.4859 +1006.4881 Materials Science +1006.4924 Mesoscale and Nanoscale Physics +1006.5010 Mesoscale and Nanoscale Physics +1006.5046 Materials Science +1006.5084 Mesoscale and Nanoscale Physics +1006.5144 Mesoscale and Nanoscale Physics +1006.5199 Materials Science +1006.5203 Strongly Correlated Electrons +1006.5257 Strongly Correlated Electrons +1006.5435 Strongly Correlated Electrons +1006.5517 +1006.5767 Superconductivity +1006.5872 Mesoscale and Nanoscale Physics +1007.0271 Materials Science +1007.0433 Fluid Dynamics +1007.0591 +1007.0597 Theory +1007.0869 +1007.1173 Statistical Mechanics +1007.1316 Mesoscale and Nanoscale Physics +1007.1322 +1007.1494 Strongly Correlated Electrons +1007.1566 +1007.1682 Materials Science +1007.2165 +1007.2200 Mesoscale and Nanoscale Physics +1007.2209 +1007.2219 +1007.2400 Atomic Physics +1007.2632 Statistical Mechanics +1007.2643 Strongly Correlated Electrons +1007.2766 Materials Science +1007.2965 Superconductivity +1007.2978 Plasma Physics +1007.3251 Superconductivity +1007.3334 Strongly Correlated Electrons +1007.3374 Disordered Systems and Neural Networks +1007.3529 Quantum Gases +1007.3577 Materials Science +1007.3594 Statistical Mechanics +1007.3600 Materials Science +1007.3774 Data Analysis, Statistics and Probability +1007.3864 Materials Science +1007.3895 Quantum Gases +1007.3907 Mesoscale and Nanoscale Physics +1007.3929 Atomic Physics +1007.4104 Physics and Society +1007.4274 Soft Condensed Matter +1007.4296 +1007.4363 Optics +1007.4690 Statistical Mechanics +1007.4742 +1007.4755 +1007.4773 Mesoscale and Nanoscale Physics +1007.4798 +1007.4802 Mesoscale and Nanoscale Physics +1007.5013 Strongly Correlated Electrons +1007.5486 Atomic Physics +1008.0179 +1008.0241 Statistical Mechanics +1008.0333 Adaptation and Self-Organizing Systems +1008.0372 +1008.0428 Quantum Gases +1008.0442 Mesoscale and Nanoscale Physics +1008.0572 Superconductivity +1008.0594 +1008.0676 +1008.0814 Mesoscale and Nanoscale Physics +1008.0817 Data Analysis, Statistics and Probability +1008.1019 Experiment +1008.1029 +1008.1066 +1008.1211 Mesoscale and Nanoscale Physics +1008.1258 Quantum Gases +1008.1292 +1008.1369 +1008.1759 Theory +1008.1777 Materials Science +1008.1831 +1008.1867 +1008.2012 +1008.2060 Mesoscale and Nanoscale Physics +1008.2096 Quantum Gases +1008.2147 +1008.2239 Quantum Gases +1008.2240 Quantum Gases +1008.2370 +1008.2525 Soft Condensed Matter +1008.2619 Superconductivity +1008.2642 Superconductivity +1008.2916 +1008.3089 Mesoscale and Nanoscale Physics +1008.3139 +1008.3177 +1008.3224 Atomic Physics +1008.3277 +1008.3302 Pattern Formation and Solitons +1008.3406 Quantum Gases +1008.3447 +1008.3454 Mesoscale and Nanoscale Physics +1008.3473 Superconductivity +1008.3492 Materials Science +1008.3612 +1008.3668 Soft Condensed Matter +1008.3749 Mesoscale and Nanoscale Physics +1008.3876 Quantum Gases +1008.3997 Soft Condensed Matter +1008.4003 Materials Science +1008.4106 Strongly Correlated Electrons +1008.4138 Strongly Correlated Electrons +1008.4369 Superconductivity +1008.4392 Atomic Physics +1008.4430 +1008.4858 Mesoscale and Nanoscale Physics +1008.4959 Plasma Physics +1008.5144 Mesoscale and Nanoscale Physics +1008.5158 Mesoscale and Nanoscale Physics +1008.5195 Mesoscale and Nanoscale Physics +1008.5222 +1008.5282 Strongly Correlated Electrons +1008.5380 +1009.0263 Superconductivity +1009.0294 Phenomenology +1009.0336 Mesoscale and Nanoscale Physics +1009.0653 +1009.0709 Materials Science +1009.0740 Superconductivity +1009.0940 +1009.1148 Phenomenology +1009.1176 General Mathematics +1009.1201 Theory +1009.1471 Quantum Gases +1009.1776 Quantum Gases +1009.2203 +1009.2358 Phenomenology +1009.2626 Mesoscale and Nanoscale Physics +1009.2708 Optics +1009.2842 Mesoscale and Nanoscale Physics +1009.2884 Statistical Mechanics +1009.2956 +1009.2967 Strongly Correlated Electrons +1009.3003 Statistical Mechanics +1009.3379 Statistical Mechanics +1009.3437 Mesoscale and Nanoscale Physics +1009.3482 +1009.3814 Statistical Mechanics +1009.4054 +1009.4228 Mesoscale and Nanoscale Physics +1009.4255 +1009.4315 Physics and Society +1009.4492 Mesoscale and Nanoscale Physics +1009.4737 Quantum Gases +1009.4888 +1009.5393 Strongly Correlated Electrons +1009.5405 Phenomenology +1009.5591 Optics +1009.5637 Mesoscale and Nanoscale Physics +1010.0508 Mesoscale and Nanoscale Physics +1010.0664 Superconductivity +1010.0669 +1010.0972 Mesoscale and Nanoscale Physics +1010.1268 Statistical Mechanics +1010.1449 Statistical Mechanics +1010.1598 Plasma Physics +1010.2012 +1010.2717 +1010.2753 Phenomenology +1010.2794 Fluid Dynamics +1010.3090 Materials Science +1010.3419 +1010.3571 +1010.3970 Phenomenology +1010.3975 +1010.4330 Mesoscale and Nanoscale Physics +1010.4428 Theory +1010.4508 Mesoscale and Nanoscale Physics +1010.4554 Classical Analysis and ODEs +1010.4661 +1010.4766 Operator Algebras +1010.4881 Statistical Mechanics +1010.4906 Other Condensed Matter +1010.4943 Classical Physics +1010.5055 Strongly Correlated Electrons +1010.5135 Mesoscale and Nanoscale Physics +1010.5191 +1010.5198 Materials Science +1010.5641 Data Analysis, Statistics and Probability +1010.5897 Mesoscale and Nanoscale Physics +1010.6094 Strongly Correlated Electrons +1010.6266 Atomic Physics +1011.0081 General Mathematics +1011.0388 Quantum Gases +1011.0563 Materials Science +1011.0872 Phenomenology +1011.0873 Atomic Physics +1011.1003 Algebraic Geometry +1011.1055 Materials Science +1011.1118 Statistical Mechanics +1011.1674 Data Analysis, Statistics and Probability +1011.1711 Materials Science +1011.1894 Superconductivity +1011.1934 +1011.2041 +1011.2125 Quantum Gases +1011.2247 Mesoscale and Nanoscale Physics +1011.2371 Mesoscale and Nanoscale Physics +1011.2629 Materials Science +1011.3117 Theory +1011.3207 Quantum Gases +1011.3311 +1011.3646 Mesoscale and Nanoscale Physics +1011.3700 Optics +1011.3851 +1011.3895 Probability +1011.3949 Materials Science +1011.4051 Theory +1011.4115 +1011.4486 Materials Science +1011.4493 Chaotic Dynamics +1011.4534 +1011.4543 Strongly Correlated Electrons +1011.4563 Statistical Mechanics +1011.4626 Soft Condensed Matter +1011.4767 Lattice +1011.4769 Phenomenology +1011.4775 Astrophysics of Galaxies +1011.4790 Lattice +1011.4807 Statistical Mechanics +1011.4972 Phenomenology +1011.4973 Phenomenology +1011.4986 Phenomenology +1011.5109 Materials Science +1011.5206 +1011.5239 Disordered Systems and Neural Networks +1011.5426 Quantum Gases +1011.5489 Atomic Physics +1011.5609 Quantum Gases +1011.5749 Theory +1011.5806 Lattice +1011.6052 Materials Science +1011.6115 Materials Science +1011.6119 Statistical Mechanics +1011.6205 Strongly Correlated Electrons +1011.6334 +1011.6448 +1011.6529 Mesoscale and Nanoscale Physics +1012.0188 Mesoscale and Nanoscale Physics +1012.0316 Strongly Correlated Electrons +1012.0423 Statistical Mechanics +1012.0515 Strongly Correlated Electrons +1012.1011 Strongly Correlated Electrons +1012.1961 Algebraic Geometry +1012.2084 Other Condensed Matter +1012.2238 Optics +1012.2263 Adaptation and Self-Organizing Systems +1012.2378 Cosmology and Nongalactic Astrophysics +1012.2384 Physics and Society +1012.2402 +1012.2432 Disordered Systems and Neural Networks +1012.2794 +1012.2866 Phenomenology +1012.2869 Theory +1012.3204 +1012.3887 Mesoscale and Nanoscale Physics +1012.4153 Biological Physics +1012.4266 +1012.4363 Theory +1012.4380 Atomic Physics +1012.4431 Statistical Mechanics +1012.4463 Theory +1012.4545 Mesoscale and Nanoscale Physics +1012.4664 Quantum Gases +1012.4700 Quantum Algebra +1012.4936 Mesoscale and Nanoscale Physics +1012.5017 +1012.5039 +1012.5042 Statistical Mechanics +1012.5341 High Energy Astrophysical Phenomena +1012.5436 Strongly Correlated Electrons +1012.5456 Mesoscale and Nanoscale Physics +1101.0153 Experiment +1101.0283 General Mathematics +1101.0290 +1101.0667 Materials Science +1101.0789 Superconductivity +1101.2059 Superconductivity +1101.2099 Materials Science +1101.2282 Superconductivity +1101.2469 Quantum Gases +1101.2492 Quantum Gases +1101.2541 Optics +1101.2747 Quantum Gases +1101.3002 Phenomenology +1101.3235 Statistical Mechanics +1101.3239 Atomic Physics +1101.3277 Mesoscale and Nanoscale Physics +1101.3541 Mesoscale and Nanoscale Physics +1101.4246 Fluid Dynamics +1101.4456 Phenomenology +1101.5189 Mesoscale and Nanoscale Physics +1101.5430 +1101.5869 Mesoscale and Nanoscale Physics +1101.5951 Theory +1101.5965 Phenomenology +1102.0290 Theory +1102.0307 +1102.0349 Mesoscale and Nanoscale Physics +1102.0487 +1102.0786 +1102.0997 Quantum Gases +1102.1007 Theory +1102.1427 Mesoscale and Nanoscale Physics +1102.1649 Phenomenology +1102.1757 Theory +1102.2676 Materials Science +1102.2777 Phenomenology +1102.2796 Chaotic Dynamics +1102.2816 +1102.2941 Strongly Correlated Electrons +1102.2973 Statistical Mechanics +1102.3022 +1102.3073 +1102.3098 +1102.3189 Phenomenology +1102.3391 Strongly Correlated Electrons +1102.3480 Phenomenology +1102.3672 Phenomenology +1102.3884 Statistical Mechanics +1102.3899 +1102.4040 Theory +1102.4074 Strongly Correlated Electrons +1102.4110 Machine Learning +1102.4266 +1102.4284 Other Condensed Matter +1102.4307 Soft Condensed Matter +1102.4363 Phenomenology +1102.4560 +1102.4565 Experiment +1102.4751 Quantum Gases +1102.4903 Quantum Gases +1102.4919 +1102.4945 Optics +1102.5152 +1102.5300 Lattice +1102.5379 +1102.5526 Materials Science +1102.5562 Logic +1102.5614 +1103.0312 Theory +1103.0454 Strongly Correlated Electrons +1103.0613 Classical Physics +1103.0768 Theory +1103.0855 +1103.0919 Statistical Mechanics +1103.1142 Statistical Mechanics +1103.1206 +1103.1279 Theory +1103.1329 Phenomenology +1103.1558 Theory +1103.1794 Accelerator Physics +1103.1852 +1103.1864 Experiment +1103.2054 Cosmology and Nongalactic Astrophysics +1103.2134 Cosmology and Nongalactic Astrophysics +1103.2142 Mesoscale and Nanoscale Physics +1103.2159 Phenomenology +1103.2653 Phenomenology +1103.2668 Computational Physics +1103.2746 Mesoscale and Nanoscale Physics +1103.3219 Cosmology and Nongalactic Astrophysics +1103.3260 Theory +1103.3265 Mesoscale and Nanoscale Physics +1103.3271 Phenomenology +1103.3290 Superconductivity +1103.3294 Biomolecules +1103.3297 Disordered Systems and Neural Networks +1103.3323 Strongly Correlated Electrons +1103.3368 Disordered Systems and Neural Networks +1103.3579 Phenomenology +1103.3681 Data Analysis, Statistics and Probability +1103.3728 Disordered Systems and Neural Networks +1103.3740 +1103.3818 +1103.4021 +1103.4024 Phenomenology +1103.4110 Strongly Correlated Electrons +1103.4490 Biological Physics +1103.4500 +1103.4509 Phenomenology +1103.4519 Phenomenology +1103.4617 Phenomenology +1103.4618 Phenomenology +1103.4662 Quantum Gases +1103.4818 Lattice +1103.4824 +1103.4869 Statistical Mechanics +1103.4969 Strongly Correlated Electrons +1103.5145 Cosmology and Nongalactic Astrophysics +1103.5206 Materials Science +1103.5253 +1103.5506 Lattice +1103.5548 Strongly Correlated Electrons +1103.5769 +1103.5784 +1103.5858 Other Condensed Matter +1103.5997 Classical Analysis and ODEs +1103.6040 Mesoscale and Nanoscale Physics +1103.6076 Phenomenology +1104.0002 Theory +1104.0100 Quantum Gases +1104.0227 Materials Science +1104.0256 Strongly Correlated Electrons +1104.0382 Cosmology and Nongalactic Astrophysics +1104.0710 Statistical Mechanics +1104.1063 Lattice +1104.1181 Cosmology and Nongalactic Astrophysics +1104.1292 Strongly Correlated Electrons +1104.1318 +1104.1332 Superconductivity +1104.1421 Biological Physics +1104.1467 Materials Science +1104.1629 Theory +1104.1719 Soft Condensed Matter +1104.2019 Theory +1104.2176 Strongly Correlated Electrons +1104.2226 Materials Science +1104.2237 Other Condensed Matter +1104.2587 +1104.2830 Theory +1104.2838 Optics +1104.3126 +1104.3139 Phenomenology +1104.3193 Theory +1104.3267 Materials Science +1104.3315 Cosmology and Nongalactic Astrophysics +1104.3982 Materials Science +1104.4014 +1104.4031 Phenomenology +1104.4072 Mesoscale and Nanoscale Physics +1104.4125 Mesoscale and Nanoscale Physics +1104.4127 Phenomenology +1104.4600 Lattice +1104.4956 Atomic Physics +1104.5028 Theory +1104.5138 Materials Science +1104.5149 Quantum Gases +1104.5172 High Energy Astrophysical Phenomena +1104.5187 High Energy Astrophysical Phenomena +1104.5241 Theory +1104.5314 Phenomenology +1104.5323 Fluid Dynamics +1104.5352 Phenomenology +1104.5371 Phenomenology +1104.5442 +1104.5505 Lattice +1104.5556 Theory +1104.5635 +1104.5650 +1104.5664 Lattice +1104.5681 Theory +1105.0039 Phenomenology +1105.0166 General Mathematics +1105.0225 Phenomenology +1105.0246 Theory +1105.0289 Strongly Correlated Electrons +1105.0340 +1105.0358 +1105.0418 Theory +1105.0460 Statistical Mechanics +1105.0607 Lattice +1105.0676 +1105.0945 +1105.1098 Statistical Mechanics +1105.1195 Phenomenology +1105.1352 Disordered Systems and Neural Networks +1105.1418 Lattice +1105.1748 Quantum Gases +1105.1766 +1105.1772 Theory +1105.1778 Quantum Gases +1105.1919 +1105.1925 Phenomenology +1105.1994 +1105.2011 Theory +1105.2085 Phenomenology +1105.2285 Phenomenology +1105.2475 Theory +1105.2490 Theory +1105.2521 Mesoscale and Nanoscale Physics +1105.2558 Theory +1105.2581 Theory +1105.2864 Information Theory +1105.2977 Phenomenology +1105.3010 Theory +1105.3017 Strongly Correlated Electrons +1105.3109 +1105.3160 Optics +1105.3193 Theory +1105.3240 High Energy Astrophysical Phenomena +1105.3279 Theory +1105.3371 Theory +1105.3602 Superconductivity +1105.3608 Superconductivity +1105.3628 Cosmology and Nongalactic Astrophysics +1105.3728 Phenomenology +1105.3743 Phenomenology +1105.3744 Theory +1105.3749 Lattice +1105.3873 Quantum Gases +1105.3910 +1105.3998 Theory +1105.4422 Mesoscale and Nanoscale Physics +1105.4473 Phenomenology +1105.4664 Phenomenology +1105.4844 Phenomenology +1105.4886 Quantum Gases +1105.4900 Strongly Correlated Electrons +1105.4957 Other Condensed Matter +1105.5113 High Energy Astrophysical Phenomena +1105.5118 Other Condensed Matter +1105.5122 Phenomenology +1105.5138 Mesoscale and Nanoscale Physics +1105.5165 Theory +1105.5200 Phenomenology +1105.5391 +1105.5392 Theory +1105.5417 Phenomenology +1105.5437 Phenomenology +1105.5829 Phenomenology +1105.5842 +1105.5848 Theory +1105.5937 Optics +1105.6005 +1105.6050 +1105.6088 Theory +1105.6095 Phenomenology +1105.6139 Mesoscale and Nanoscale Physics +1105.6229 Lattice +1105.6230 Cosmology and Nongalactic Astrophysics +1105.6244 Phenomenology +1105.6273 Theory +1105.6360 Theory +1105.6364 Phenomenology +1106.0126 Theory +1106.0527 Theory +1106.0536 Cosmology and Nongalactic Astrophysics +1106.0546 Theory +1106.0623 Mesoscale and Nanoscale Physics +1106.0650 Cosmology and Nongalactic Astrophysics +1106.0747 Phenomenology +1106.0861 Experiment +1106.0862 General Mathematics +1106.0922 Statistical Mechanics +1106.1021 +1106.1066 Phenomenology +1106.1069 Phenomenology +1106.1093 +1106.1118 +1106.1267 Solar and Stellar Astrophysics +1106.1374 Theory +1106.1416 Theory +1106.1483 +1106.1490 +1106.1775 Statistical Mechanics +1106.1798 Theory +1106.1870 Theory +1106.1941 Other Condensed Matter +1106.1956 Phenomenology +1106.2101 Strongly Correlated Electrons +1106.2132 Lattice +1106.2339 Theory +1106.2423 +1106.2433 Phenomenology +1106.2485 Atomic Physics +1106.2511 Phenomenology +1106.2569 Phenomenology +1106.2598 Strongly Correlated Electrons +1106.2700 Phenomenology +1106.2760 Phenomenology +1106.2991 Experiment +1106.3074 Phenomenology +1106.3075 Other Condensed Matter +1106.3082 Phenomenology +1106.3103 Experiment +1106.3133 Phenomenology +1106.3171 +1106.3210 Theory +1106.3240 Theory +1106.3364 Atomic Physics +1106.3404 Experiment +1106.3427 Phenomenology +1106.3557 +1106.3580 Lattice +1106.3687 Mesoscale and Nanoscale Physics +1106.3916 Phenomenology +1106.3965 Mesoscale and Nanoscale Physics +1106.3980 Soft Condensed Matter +1106.4016 Cosmology and Nongalactic Astrophysics +1106.4039 Phenomenology +1106.4044 Phenomenology +1106.4055 Experiment +1106.4220 +1106.4268 Phenomenology +1106.4298 Theory +1106.4306 Phenomenology +1106.4338 Phenomenology +1106.4545 Phenomenology +1106.4553 Phenomenology +1106.4621 High Energy Astrophysical Phenomena +1106.4694 Theory +1106.4767 +1106.4978 Theory +1106.5005 +1106.5075 Phenomenology +1106.5151 Mesoscale and Nanoscale Physics +1106.5210 +1106.5368 +1106.5418 Theory +1106.5452 Theory +1106.5477 Phenomenology +1106.5515 Phenomenology +1106.5528 Phenomenology +1106.5748 Mesoscale and Nanoscale Physics +1106.5879 Analysis of PDEs +1106.5983 Cosmology and Nongalactic Astrophysics +1106.6003 Strongly Correlated Electrons +1106.6025 Theory +1106.6026 +1106.6028 Phenomenology +1106.6051 Phenomenology +1106.6166 Theory +1106.6172 Theory +1106.6199 Phenomenology +1106.6306 Statistical Mechanics +1106.6355 +1107.0163 Experiment +1107.0262 Numerical Analysis +1107.0286 Phenomenology +1107.0288 Mesoscale and Nanoscale Physics +1107.0507 +1107.0574 +1107.0602 +1107.0669 Solar and Stellar Astrophysics +1107.0730 Theory +1107.0750 Quantum Gases +1107.0754 Phenomenology +1107.0771 Phenomenology +1107.0941 Phenomenology +1107.0952 Theory +1107.0978 Phenomenology +1107.1064 Other Condensed Matter +1107.1103 Quantum Gases +1107.1164 Phenomenology +1107.1181 +1107.1268 Experiment +1107.1372 +1107.1412 Phenomenology +1107.1452 Phenomenology +1107.1614 Phenomenology +1107.1849 Experiment +1107.1852 +1107.1935 Theory +1107.2029 Mesoscale and Nanoscale Physics +1107.2134 Theory +1107.2150 Atomic Physics +1107.2163 Phenomenology +1107.2293 Theory +1107.2301 Theory +1107.2354 Optics +1107.2517 Strongly Correlated Electrons +1107.2606 Phenomenology +1107.2731 Strongly Correlated Electrons +1107.2738 Phenomenology +1107.2838 Phenomenology +1107.2917 Theory +1107.2919 Phenomenology +1107.2969 Strongly Correlated Electrons +1107.3003 Cosmology and Nongalactic Astrophysics +1107.3011 Theory +1107.3048 Theory +1107.3063 Dynamical Systems +1107.3078 Phenomenology +1107.3080 Phenomenology +1107.3149 Phenomenology +1107.3247 Phenomenology +1107.3339 +1107.3533 Theory +1107.3556 Theory +1107.3642 Phenomenology +1107.3713 Phenomenology +1107.3830 Strongly Correlated Electrons +1107.3906 +1107.3968 Phenomenology +1107.4031 +1107.4060 Phenomenology +1107.4087 Phenomenology +1107.4131 Phenomenology +1107.4232 +1107.4267 Phenomenology +1107.4339 Chemical Physics +1107.4342 Phenomenology +1107.4354 Phenomenology +1107.4370 Theory +1107.4441 Soft Condensed Matter +1107.4465 Experiment +1107.4477 Mesoscale and Nanoscale Physics +1107.4535 Phenomenology +1107.4551 Theory +1107.4564 Phenomenology +1107.4589 Theory +1107.4639 Theory +1107.4642 Theory +1107.4693 Phenomenology +1107.4701 +1107.4739 Theory +1107.4740 +1107.4767 Phenomenology +1107.4780 Strongly Correlated Electrons +1107.5063 Experiment +1107.5131 Phenomenology +1107.5160 Quantum Gases +1107.5162 +1107.5163 +1107.5318 Theory +1107.5489 Phenomenology +1107.5547 Experiment +1107.5631 Phenomenology +1107.5727 +1107.5755 Phenomenology +1107.5769 Phenomenology +1107.5864 Statistical Mechanics +1107.5879 Phenomenology +1107.5955 +1107.5979 +1107.6033 Theory +1108.0050 Phenomenology +1108.0058 Theory +1108.0139 Strongly Correlated Electrons +1108.0147 Phenomenology +1108.0275 Statistical Mechanics +1108.0398 Phenomenology +1108.0400 Theory +1108.0421 Theory +1108.0423 Phenomenology +1108.0570 Phenomenology +1108.0640 Soft Condensed Matter +1108.0670 Phenomenology +1108.0700 Mesoscale and Nanoscale Physics +1108.0783 Statistical Mechanics +1108.0881 Mesoscale and Nanoscale Physics +1108.0998 Phenomenology +1108.1191 Phenomenology +1108.1196 Phenomenology +1108.1261 Phenomenology +1108.1338 Phenomenology +1108.1391 Phenomenology +1108.1509 Experiment +1108.1745 +1108.1802 Phenomenology +1108.1825 Cosmology and Nongalactic Astrophysics +1108.1835 +1108.1849 Theory +1108.1932 Strongly Correlated Electrons +1108.1946 Strongly Correlated Electrons +1108.1964 Theory +1108.1973 Phenomenology +1108.2029 Theory +1108.2042 +1108.2071 +1108.2231 Phenomenology +1108.2410 +1108.2440 Strongly Correlated Electrons +1108.2504 Materials Science +1108.2702 Phenomenology +1108.2847 Phenomenology +1108.2891 Theory +1108.3031 Theory +1108.3071 Phenomenology +1108.3091 Experiment +1108.3114 +1108.3123 +1108.3156 +1108.3326 Materials Science +1108.3528 Atomic Physics +1108.3549 Experiment +1108.3663 +1108.3764 Phenomenology +1108.3814 +1108.3816 +1108.3972 Phenomenology +1108.3983 Phenomenology +1108.4000 Phenomenology +1108.4025 Phenomenology +1108.4064 High Energy Astrophysical Phenomena +1108.4164 Materials Science +1108.4212 Quantum Gases +1108.4291 Phenomenology +1108.4351 +1108.4401 Theory +1108.4646 Physics and Society +1108.4661 Phenomenology +1108.4734 Phenomenology +1108.4755 Experiment +1108.4782 Theory +1108.4785 Statistical Mechanics +1108.4877 Phenomenology +1108.4954 Strongly Correlated Electrons +1108.5034 Experiment +1108.5132 Materials Science +1108.5207 Superconductivity +1108.5231 Theory +1108.5320 Phenomenology +1108.5371 Lattice +1108.5649 +1108.5744 Statistical Mechanics +1108.5765 Experiment +1108.5874 Experiment +1108.5888 Theory +1108.6122 Other Condensed Matter +1108.6259 Statistical Mechanics +1108.6320 +1109.0014 Cosmology and Nongalactic Astrophysics +1109.0147 +1109.0238 Phenomenology +1109.0347 Phenomenology +1109.0361 Theory +1109.0448 Theory +1109.0518 Phenomenology +1109.0533 Theory +1109.0549 Cosmology and Nongalactic Astrophysics +1109.1065 Theory +1109.1069 Phenomenology +1109.1237 Lattice +1109.1354 Phenomenology +1109.1621 Experiment +1109.1707 +1109.1730 +1109.2073 Phenomenology +1109.2188 Phenomenology +1109.2273 +1109.2292 Algebraic Geometry +1109.2364 Strongly Correlated Electrons +1109.2393 Theory +1109.2455 +1109.2500 Phenomenology +1109.2554 Phenomenology +1109.2646 Other Condensed Matter +1109.2709 Phenomenology +1109.2719 +1109.2767 Cosmology and Nongalactic Astrophysics +1109.2846 Cosmology and Nongalactic Astrophysics +1109.3180 Combinatorics +1109.3197 Phenomenology +1109.3801 Superconductivity +1109.3846 +1109.4033 Phenomenology +1109.4140 Biological Physics +1109.4159 Theory +1109.4415 Cosmology and Nongalactic Astrophysics +1109.4585 +1109.4636 Phenomenology +1109.4794 Quantum Gases +1109.4827 Theory +1109.4839 +1109.4872 Phenomenology +1109.4899 +1109.4947 Cosmology and Nongalactic Astrophysics +1109.5140 Phenomenology +1109.5360 Statistical Mechanics +1109.5361 Theory +1109.5607 +1109.5694 Theory +1109.5847 Commutative Algebra +1109.5930 Phenomenology +1109.6002 +1109.6183 Phenomenology +1109.6217 Materials Science +1109.6260 Statistical Mechanics +1109.6300 +1109.6562 Phenomenology +1109.6796 Mesoscale and Nanoscale Physics +1110.0006 High Energy Astrophysical Phenomena +1110.0628 Classical Physics +1110.0669 Solar and Stellar Astrophysics +1110.0771 Statistical Mechanics +1110.0832 +1110.1089 Mesoscale and Nanoscale Physics +1110.1127 Phenomenology +1110.1133 +1110.1321 +1110.1373 Theory +1110.2113 Phenomenology +1110.2313 Phenomenology +1110.2460 Theory +1110.2587 Cosmology and Nongalactic Astrophysics +1110.2698 +1110.3928 +1110.4132 +1110.4295 Optics +1110.4806 +1110.5023 Phenomenology +1110.5047 Phenomenology +1110.6381 +1110.6569 Mesoscale and Nanoscale Physics +1111.0517 Quantum Gases +1111.3570 Cosmology and Nongalactic Astrophysics +1111.5996 Symplectic Geometry +1112.3512 +1112.5561 Functional Analysis +1201.1419 Materials Science +1202.2027 Spectral Theory +1202.3901 Probability +1203.2219 +1203.2370 Materials Science +1203.2391 Rings and Algebras +1203.4852 Physics and Society +1204.0001 Classical Physics +1204.4622 +1205.6460 Combinatorics +1206.1280 Biological Physics +1206.3523 Programming Languages +1207.2489 Classical Analysis and ODEs +1207.2560 Operator Algebras +1207.6594 Statistical Mechanics +1208.0802 +1208.1761 Cosmology and Nongalactic Astrophysics +1208.3454 +1208.3732 Analysis of PDEs +1209.0560 Quantum Gases +1209.1569 Phenomenology +1209.2057 Analysis of PDEs +1209.4544 Phenomenology +1209.5948 Plasma Physics +1209.6625 +1210.0647 High Energy Astrophysical Phenomena +1210.2876 Mesoscale and Nanoscale Physics +1210.4044 Populations and Evolution +1210.6926 +1210.7978 Theory +1211.1454 Theory +1211.3225 Differential Geometry +1211.3602 Methodology +1211.4449 Statistical Mechanics +1211.5351 Mesoscale and Nanoscale Physics +1211.5786 +1211.6397 Tissues and Organs +1211.6540 +1211.6629 Superconductivity +1211.6806 Soft Condensed Matter +1211.6867 +1212.0166 Phenomenology +1212.1122 +1212.1442 Statistical Mechanics +1212.2811 +1212.2992 +1212.3398 Lattice +1212.4473 +1212.4774 Strongly Correlated Electrons +1212.4797 Computer Science and Game Theory +1212.5000 Theory +1212.5459 Mesoscale and Nanoscale Physics +1212.5673 Soft Condensed Matter +1212.5886 Mesoscale and Nanoscale Physics +1212.6557 Algebraic Geometry +1301.0110 Materials Science +1301.1148 Differential Geometry +1301.1177 Mesoscale and Nanoscale Physics +1301.2525 Classical Analysis and ODEs +1301.2975 Computation +1301.3033 Phenomenology +1301.3918 +1301.4618 +1301.4743 Lattice +1301.5337 +1301.5707 Theory +1301.5990 +1301.5992 Physics and Society +1301.7062 Theory +1301.7592 Computer Science and Game Theory +1301.7732 Theory +1302.0404 Combinatorics +1302.0496 Quantum Gases +1302.0802 Theory +1302.3099 Number Theory +1302.3383 +1302.3808 Strongly Correlated Electrons +1302.4204 +1302.4240 Materials Science +1302.4290 Theory +1302.4914 Solar and Stellar Astrophysics +1302.5153 Information Theory +1302.6505 Phenomenology +1303.0143 Cosmology and Nongalactic Astrophysics +1303.0336 Lattice +1303.1003 +1303.1250 Mesoscale and Nanoscale Physics +1303.1745 +1303.2269 Statistical Mechanics +1303.2936 +1303.4253 Theory +1303.5888 +1303.6360 Experiment +1304.0467 +1304.0647 +1304.1876 Computer Vision and Pattern Recognition +1304.3607 +1304.4874 Soft Condensed Matter +1304.6104 Earth and Planetary Astrophysics +1304.6144 Dynamical Systems +1304.6290 +1304.6396 +1305.0500 Numerical Analysis +1305.0647 Analysis of PDEs +1305.1214 +1305.1561 Differential Geometry +1305.2366 Materials Science +1305.2512 Mesoscale and Nanoscale Physics +1305.3051 Information Theory +1305.3505 Dynamical Systems +1305.3788 Dynamical Systems +1305.4712 Phenomenology +1305.4839 Theory +1305.5497 Mesoscale and Nanoscale Physics +1305.5872 Cosmology and Nongalactic Astrophysics +1305.6146 Databases +1305.6263 Group Theory +1305.6308 Physics and Society +1305.6320 Neurons and Cognition +1305.6326 Differential Geometry +1305.6328 Algebraic Geometry +1305.6331 +1305.6332 Human-Computer Interaction +1305.6336 Information Theory +1305.6337 +1305.6350 Cryptography and Security +1305.6352 Phenomenology +1305.6356 Number Theory +1305.6357 Functional Analysis +1305.6358 Computers and Society +1305.6360 Computers and Society +1305.6362 Experiment +1305.6368 Instrumentation and Detectors +1305.6370 Solar and Stellar Astrophysics +1305.6372 Applications +1305.6376 Computational Complexity +1305.6379 Systems and Control +1305.6380 Group Theory +1305.6381 Soft Condensed Matter +1305.6390 Networking and Internet Architecture +1305.6396 Astrophysics of Galaxies +1305.6402 Systems and Control +1305.6404 Logic +1305.6407 Representation Theory +1305.6409 Probability +1305.6410 Spectral Theory +1305.6417 Algebraic Geometry +1305.6419 Mesoscale and Nanoscale Physics +1305.6425 Dynamical Systems +1305.6426 Numerical Analysis +1305.6436 Differential Geometry +1305.6439 Quantum Algebra +1305.6441 Combinatorics +1305.6442 High Energy Astrophysical Phenomena +1305.6450 Analysis of PDEs +1305.6456 Phenomenology +1305.6458 +1305.6459 Instrumentation and Methods for Astrophysics +1305.6461 Optimization and Control +1305.6462 Classical Analysis and ODEs +1305.6466 Number Theory +1305.6474 Distributed, Parallel, and Cluster Computing +1305.6479 Probability +1305.6487 Statistical Mechanics +1305.6491 Probability +1305.6495 Mesoscale and Nanoscale Physics +1305.6497 Computational Physics +1305.6498 Accelerator Physics +1305.6499 Cosmology and Nongalactic Astrophysics +1305.6500 Optics +1305.6501 Number Theory +1305.6503 Group Theory +1305.6506 Databases +1305.6516 Differential Geometry +1305.6517 Computational Physics +1305.6518 Strongly Correlated Electrons +1305.6525 Classical Analysis and ODEs +1305.6528 Representation Theory +1305.6533 Cellular Automata and Lattice Gases +1305.6535 Phenomenology +1305.6537 Neural and Evolutionary Computing +1305.6542 Geometric Topology +1305.6543 Programming Languages +1305.6547 Functional Analysis +1305.6549 +1305.6551 Statistical Mechanics +1305.6552 Analysis of PDEs +1305.6553 General Physics +1305.6555 Data Structures and Algorithms +1305.6561 Materials Science +1305.6562 Classical Analysis and ODEs +1305.6565 +1305.6568 Learning +1305.6573 Algebraic Topology +1305.6575 Atmospheric and Oceanic Physics +1305.6578 Mesoscale and Nanoscale Physics +1305.6585 Instrumentation and Methods for Astrophysics +1305.6593 History and Overview +1305.6596 Geometric Topology +1305.6599 Phenomenology +1305.6600 Differential Geometry +astro-ph/0012086 +astro-ph/0410451 +astro-ph/0411285 +astro-ph/0505033 +astro-ph/0506692 +astro-ph/0507622 +astro-ph/0507717 +astro-ph/0510052 +astro-ph/0608138 +astro-ph/0610292 +cond-mat/0004264 Soft Condensed Matter +cond-mat/0005121 Superconductivity +cond-mat/0005288 Superconductivity +cond-mat/0005391 Strongly Correlated Electrons +cond-mat/0007064 Superconductivity +cond-mat/0009166 Strongly Correlated Electrons +cond-mat/0009379 Materials Science +cond-mat/0010041 Strongly Correlated Electrons +cond-mat/0010087 Statistical Mechanics +cond-mat/0010232 Soft Condensed Matter +cond-mat/0010386 Strongly Correlated Electrons +cond-mat/0011098 Strongly Correlated Electrons +cond-mat/0012304 Disordered Systems and Neural Networks +cond-mat/0012450 Superconductivity +cond-mat/0101296 Disordered Systems and Neural Networks +cond-mat/0102217 Soft Condensed Matter +cond-mat/0102330 Statistical Mechanics +cond-mat/0102469 Statistical Mechanics +cond-mat/0103066 Materials Science +cond-mat/0103245 Superconductivity +cond-mat/0103277 Superconductivity +cond-mat/0103549 Statistical Mechanics +cond-mat/0104032 Statistical Mechanics +cond-mat/0104126 Strongly Correlated Electrons +cond-mat/0104398 Statistical Mechanics +cond-mat/0104421 Materials Science +cond-mat/0104507 Materials Science +cond-mat/0104552 Materials Science +cond-mat/0104584 Statistical Mechanics +cond-mat/0105038 Strongly Correlated Electrons +cond-mat/0105042 Materials Science +cond-mat/0105284 Strongly Correlated Electrons +cond-mat/0105587 Statistical Mechanics +cond-mat/0106038 Superconductivity +cond-mat/0106358 Mesoscale and Nanoscale Physics +cond-mat/0106515 Soft Condensed Matter +cond-mat/0106554 Disordered Systems and Neural Networks +cond-mat/0106648 Superconductivity +cond-mat/0107076 Statistical Mechanics +cond-mat/0107152 +cond-mat/0107441 Statistical Mechanics +cond-mat/0107476 Materials Science +cond-mat/0107622 Mesoscale and Nanoscale Physics +cond-mat/0108125 +cond-mat/0108368 Superconductivity +cond-mat/0108396 Materials Science +cond-mat/0109036 Strongly Correlated Electrons +cond-mat/0110372 +cond-mat/0110390 Superconductivity +cond-mat/0111191 Soft Condensed Matter +cond-mat/0111361 +cond-mat/0112422 Statistical Mechanics +cond-mat/0201080 Mesoscale and Nanoscale Physics +cond-mat/0202072 Soft Condensed Matter +cond-mat/0202358 Mesoscale and Nanoscale Physics +cond-mat/0202538 Soft Condensed Matter +cond-mat/0203014 +cond-mat/0203159 Disordered Systems and Neural Networks +cond-mat/0203382 +cond-mat/0203407 Mesoscale and Nanoscale Physics +cond-mat/0203593 Statistical Mechanics +cond-mat/0204035 Materials Science +cond-mat/0204062 Mesoscale and Nanoscale Physics +cond-mat/0204373 Strongly Correlated Electrons +cond-mat/0204393 Strongly Correlated Electrons +cond-mat/0204542 Strongly Correlated Electrons +cond-mat/0205271 Materials Science +cond-mat/0205626 Strongly Correlated Electrons +cond-mat/0206018 Strongly Correlated Electrons +cond-mat/0206074 Strongly Correlated Electrons +cond-mat/0206125 Mesoscale and Nanoscale Physics +cond-mat/0207248 Materials Science +cond-mat/0207352 Statistical Mechanics +cond-mat/0207677 +cond-mat/0208233 Mesoscale and Nanoscale Physics +cond-mat/0208266 Superconductivity +cond-mat/0208286 Soft Condensed Matter +cond-mat/0208299 Materials Science +cond-mat/0208361 Strongly Correlated Electrons +cond-mat/0209209 Statistical Mechanics +cond-mat/0209211 Statistical Mechanics +cond-mat/0209247 Statistical Mechanics +cond-mat/0209292 +cond-mat/0209451 Statistical Mechanics +cond-mat/0209676 Soft Condensed Matter +cond-mat/0210030 Soft Condensed Matter +cond-mat/0210103 Strongly Correlated Electrons +cond-mat/0210335 Materials Science +cond-mat/0210695 Mesoscale and Nanoscale Physics +cond-mat/0211163 +cond-mat/0211701 Soft Condensed Matter +cond-mat/0212230 Disordered Systems and Neural Networks +cond-mat/0212232 Disordered Systems and Neural Networks +cond-mat/0212347 +cond-mat/0212429 Strongly Correlated Electrons +cond-mat/0212461 Superconductivity +cond-mat/0212511 Materials Science +cond-mat/0212602 Statistical Mechanics +cond-mat/0301052 Mesoscale and Nanoscale Physics +cond-mat/0301375 Superconductivity +cond-mat/0301451 Disordered Systems and Neural Networks +cond-mat/0302300 +cond-mat/0303073 Statistical Mechanics +cond-mat/0303298 Statistical Mechanics +cond-mat/0303341 Superconductivity +cond-mat/0303360 Strongly Correlated Electrons +cond-mat/0303438 Statistical Mechanics +cond-mat/0304136 Mesoscale and Nanoscale Physics +cond-mat/0304513 Mesoscale and Nanoscale Physics +cond-mat/0304563 Disordered Systems and Neural Networks +cond-mat/0305050 Statistical Mechanics +cond-mat/0305582 +cond-mat/0305673 +cond-mat/0306456 Superconductivity +cond-mat/0306497 +cond-mat/0306646 Soft Condensed Matter +cond-mat/0306711 Statistical Mechanics +cond-mat/0307064 Mesoscale and Nanoscale Physics +cond-mat/0307161 Mesoscale and Nanoscale Physics +cond-mat/0307446 Strongly Correlated Electrons +cond-mat/0307626 Statistical Mechanics +cond-mat/0307645 Statistical Mechanics +cond-mat/0308133 Mesoscale and Nanoscale Physics +cond-mat/0308150 +cond-mat/0308262 Strongly Correlated Electrons +cond-mat/0308305 Soft Condensed Matter +cond-mat/0308602 Materials Science +cond-mat/0309072 Statistical Mechanics +cond-mat/0309563 Superconductivity +cond-mat/0310654 Mesoscale and Nanoscale Physics +cond-mat/0311014 Strongly Correlated Electrons +cond-mat/0311082 Strongly Correlated Electrons +cond-mat/0311203 Disordered Systems and Neural Networks +cond-mat/0311612 Mesoscale and Nanoscale Physics +cond-mat/0312305 Mesoscale and Nanoscale Physics +cond-mat/0312337 Materials Science +cond-mat/0312353 Statistical Mechanics +cond-mat/0312475 Materials Science +cond-mat/0312674 Disordered Systems and Neural Networks +cond-mat/0402089 Soft Condensed Matter +cond-mat/0403131 Materials Science +cond-mat/0403592 Statistical Mechanics +cond-mat/0404537 Strongly Correlated Electrons +cond-mat/0405034 Superconductivity +cond-mat/0405040 Disordered Systems and Neural Networks +cond-mat/0405170 Superconductivity +cond-mat/0405177 Statistical Mechanics +cond-mat/0405540 Superconductivity +cond-mat/0407358 Other Condensed Matter +cond-mat/0407384 Strongly Correlated Electrons +cond-mat/0407465 Other Condensed Matter +cond-mat/0407607 Strongly Correlated Electrons +cond-mat/0407790 Disordered Systems and Neural Networks +cond-mat/0408042 Mesoscale and Nanoscale Physics +cond-mat/0408437 Mesoscale and Nanoscale Physics +cond-mat/0408494 Mesoscale and Nanoscale Physics +cond-mat/0409210 Materials Science +cond-mat/0410157 Soft Condensed Matter +cond-mat/0410486 Mesoscale and Nanoscale Physics +cond-mat/0410654 Strongly Correlated Electrons +cond-mat/0410703 Superconductivity +cond-mat/0411169 Superconductivity +cond-mat/0411593 Materials Science +cond-mat/0411652 Soft Condensed Matter +cond-mat/0411753 Strongly Correlated Electrons +cond-mat/0412361 Soft Condensed Matter +cond-mat/0412609 Mesoscale and Nanoscale Physics +cond-mat/0412616 Materials Science +cond-mat/0412686 Strongly Correlated Electrons +cond-mat/0502063 Disordered Systems and Neural Networks +cond-mat/0502164 Strongly Correlated Electrons +cond-mat/0502224 Superconductivity +cond-mat/0502385 Mesoscale and Nanoscale Physics +cond-mat/0502422 Soft Condensed Matter +cond-mat/0503331 Soft Condensed Matter +cond-mat/0503573 Soft Condensed Matter +cond-mat/0503603 Soft Condensed Matter +cond-mat/0503659 Strongly Correlated Electrons +cond-mat/0503681 Strongly Correlated Electrons +cond-mat/0504016 Disordered Systems and Neural Networks +cond-mat/0504179 Other Condensed Matter +cond-mat/0504311 Other Condensed Matter +cond-mat/0504371 Statistical Mechanics +cond-mat/0504582 Superconductivity +cond-mat/0504739 Superconductivity +cond-mat/0504787 Mesoscale and Nanoscale Physics +cond-mat/0505066 Other Condensed Matter +cond-mat/0505094 Superconductivity +cond-mat/0505132 Mesoscale and Nanoscale Physics +cond-mat/0505455 Soft Condensed Matter +cond-mat/0505745 Statistical Mechanics +cond-mat/0505754 Statistical Mechanics +cond-mat/0506085 Soft Condensed Matter +cond-mat/0506233 Other Condensed Matter +cond-mat/0506345 Statistical Mechanics +cond-mat/0506455 Mesoscale and Nanoscale Physics +cond-mat/0506472 Other Condensed Matter +cond-mat/0506493 Disordered Systems and Neural Networks +cond-mat/0506514 Disordered Systems and Neural Networks +cond-mat/0506527 Soft Condensed Matter +cond-mat/0507107 Disordered Systems and Neural Networks +cond-mat/0507108 Strongly Correlated Electrons +cond-mat/0507149 Mesoscale and Nanoscale Physics +cond-mat/0507223 Mesoscale and Nanoscale Physics +cond-mat/0507256 Other Condensed Matter +cond-mat/0507392 Disordered Systems and Neural Networks +cond-mat/0507458 Disordered Systems and Neural Networks +cond-mat/0508151 Superconductivity +cond-mat/0508242 Strongly Correlated Electrons +cond-mat/0508271 Soft Condensed Matter +cond-mat/0508295 Materials Science +cond-mat/0508498 Soft Condensed Matter +cond-mat/0508563 Other Condensed Matter +cond-mat/0509073 Strongly Correlated Electrons +cond-mat/0509735 Mesoscale and Nanoscale Physics +cond-mat/0509748 Mesoscale and Nanoscale Physics +cond-mat/0510199 Other Condensed Matter +cond-mat/0510302 Soft Condensed Matter +cond-mat/0510395 Statistical Mechanics +cond-mat/0510436 Statistical Mechanics +cond-mat/0510523 Soft Condensed Matter +cond-mat/0510597 Strongly Correlated Electrons +cond-mat/0510689 Mesoscale and Nanoscale Physics +cond-mat/0510840 Disordered Systems and Neural Networks +cond-mat/0511183 Other Condensed Matter +cond-mat/0511186 Statistical Mechanics +cond-mat/0511545 Disordered Systems and Neural Networks +cond-mat/0511634 Materials Science +cond-mat/0511679 Materials Science +cond-mat/0512059 Materials Science +cond-mat/0512101 Materials Science +cond-mat/0512123 Soft Condensed Matter +cond-mat/0512158 Strongly Correlated Electrons +cond-mat/0512344 Statistical Mechanics +cond-mat/0512606 Disordered Systems and Neural Networks +cond-mat/0512667 Materials Science +cond-mat/0601177 Superconductivity +cond-mat/0601360 Materials Science +cond-mat/0601679 Soft Condensed Matter +cond-mat/0601685 Soft Condensed Matter +cond-mat/0601703 Statistical Mechanics +cond-mat/0602087 Statistical Mechanics +cond-mat/0602092 Materials Science +cond-mat/0602255 Soft Condensed Matter +cond-mat/0602280 Strongly Correlated Electrons +cond-mat/0602417 Mesoscale and Nanoscale Physics +cond-mat/0602437 Other Condensed Matter +cond-mat/0602588 Strongly Correlated Electrons +cond-mat/0602616 Other Condensed Matter +cond-mat/0602644 Materials Science +cond-mat/0603042 Strongly Correlated Electrons +cond-mat/0603088 Materials Science +cond-mat/0603234 Strongly Correlated Electrons +cond-mat/0603347 Materials Science +cond-mat/0603501 Materials Science +cond-mat/0603576 Statistical Mechanics +cond-mat/0604106 Strongly Correlated Electrons +cond-mat/0604309 Materials Science +cond-mat/0604361 Superconductivity +cond-mat/0604432 Statistical Mechanics +cond-mat/0604455 Other Condensed Matter +cond-mat/0604529 Superconductivity +cond-mat/0604575 Statistical Mechanics +cond-mat/0604613 Mesoscale and Nanoscale Physics +cond-mat/0605161 Strongly Correlated Electrons +cond-mat/0605203 Strongly Correlated Electrons +cond-mat/0605420 Superconductivity +cond-mat/0605541 Soft Condensed Matter +cond-mat/0606074 Strongly Correlated Electrons +cond-mat/0606078 Superconductivity +cond-mat/0606091 Mesoscale and Nanoscale Physics +cond-mat/0606160 Disordered Systems and Neural Networks +cond-mat/0606203 Superconductivity +cond-mat/0606332 Mesoscale and Nanoscale Physics +cond-mat/0606371 Strongly Correlated Electrons +cond-mat/0606595 Statistical Mechanics +cond-mat/0606635 Materials Science +cond-mat/0606691 Strongly Correlated Electrons +cond-mat/0607053 Strongly Correlated Electrons +cond-mat/0607055 Other Condensed Matter +cond-mat/0607066 Statistical Mechanics +cond-mat/0607089 Disordered Systems and Neural Networks +cond-mat/0607130 Strongly Correlated Electrons +cond-mat/0607139 Strongly Correlated Electrons +cond-mat/0607185 Soft Condensed Matter +cond-mat/0607218 Mesoscale and Nanoscale Physics +cond-mat/0607314 Mesoscale and Nanoscale Physics +cond-mat/0607346 Mesoscale and Nanoscale Physics +cond-mat/0607417 Statistical Mechanics +cond-mat/0607430 Soft Condensed Matter +cond-mat/0607431 Mesoscale and Nanoscale Physics +cond-mat/0607459 Superconductivity +cond-mat/0607570 Strongly Correlated Electrons +cond-mat/0607652 Materials Science +cond-mat/0607656 Statistical Mechanics +cond-mat/0607814 Mesoscale and Nanoscale Physics +cond-mat/0607819 Disordered Systems and Neural Networks +cond-mat/0608028 Mesoscale and Nanoscale Physics +cond-mat/0608039 Materials Science +cond-mat/0608040 Strongly Correlated Electrons +cond-mat/0608042 Strongly Correlated Electrons +cond-mat/0608099 Statistical Mechanics +cond-mat/0608156 Statistical Mechanics +cond-mat/0608166 Mesoscale and Nanoscale Physics +cond-mat/0608218 Statistical Mechanics +cond-mat/0608302 Materials Science +cond-mat/0608376 Mesoscale and Nanoscale Physics +cond-mat/0608378 Mesoscale and Nanoscale Physics +cond-mat/0608543 Strongly Correlated Electrons +cond-mat/0608567 Strongly Correlated Electrons +cond-mat/0608620 Other Condensed Matter +cond-mat/0608670 Statistical Mechanics +cond-mat/0608701 Superconductivity +cond-mat/0608707 Strongly Correlated Electrons +cond-mat/0609051 Strongly Correlated Electrons +cond-mat/0609110 Mesoscale and Nanoscale Physics +cond-mat/0609182 Materials Science +cond-mat/0609211 Statistical Mechanics +cond-mat/0609282 Soft Condensed Matter +cond-mat/0609325 Strongly Correlated Electrons +cond-mat/0609332 Mesoscale and Nanoscale Physics +cond-mat/0609439 Strongly Correlated Electrons +cond-mat/0609457 Strongly Correlated Electrons +cond-mat/0609460 Mesoscale and Nanoscale Physics +cond-mat/0609531 Other Condensed Matter +cond-mat/0609546 Statistical Mechanics +cond-mat/0609624 Soft Condensed Matter +cond-mat/0609648 Materials Science +cond-mat/0609717 Strongly Correlated Electrons +cond-mat/0609760 Materials Science +cond-mat/0610097 Disordered Systems and Neural Networks +cond-mat/0610217 Strongly Correlated Electrons +cond-mat/0610364 Other Condensed Matter +cond-mat/0610401 Strongly Correlated Electrons +cond-mat/0610463 Statistical Mechanics +cond-mat/0610530 Strongly Correlated Electrons +cond-mat/0610602 Materials Science +cond-mat/0610650 Statistical Mechanics +cond-mat/0610679 Mesoscale and Nanoscale Physics +cond-mat/0610703 Other Condensed Matter +cond-mat/0610704 Superconductivity +cond-mat/0610715 Soft Condensed Matter +cond-mat/0610776 Mesoscale and Nanoscale Physics +cond-mat/0610795 Mesoscale and Nanoscale Physics +cond-mat/0610850 Other Condensed Matter +cond-mat/0610870 Materials Science +cond-mat/0611023 Disordered Systems and Neural Networks +cond-mat/0611025 Materials Science +cond-mat/0611026 Materials Science +cond-mat/0611046 Other Condensed Matter +cond-mat/0611114 Strongly Correlated Electrons +cond-mat/0611165 Materials Science +cond-mat/0611225 Superconductivity +cond-mat/0611228 Mesoscale and Nanoscale Physics +cond-mat/0611246 Disordered Systems and Neural Networks +cond-mat/0611347 Strongly Correlated Electrons +cond-mat/0611468 Mesoscale and Nanoscale Physics +cond-mat/0611500 Superconductivity +cond-mat/0611510 Statistical Mechanics +cond-mat/0611522 Other Condensed Matter +cond-mat/0611747 Strongly Correlated Electrons +cond-mat/0611761 Strongly Correlated Electrons +cond-mat/0612005 Superconductivity +cond-mat/0612046 Mesoscale and Nanoscale Physics +cond-mat/0612081 Materials Science +cond-mat/0612094 Superconductivity +cond-mat/0612161 Strongly Correlated Electrons +cond-mat/0612209 Soft Condensed Matter +cond-mat/0612282 Other Condensed Matter +cond-mat/0612288 Superconductivity +cond-mat/0612327 Mesoscale and Nanoscale Physics +cond-mat/0612470 Mesoscale and Nanoscale Physics +cond-mat/0612552 Statistical Mechanics +cond-mat/0612610 Mesoscale and Nanoscale Physics +cond-mat/0701120 Other Condensed Matter +cond-mat/0701441 Statistical Mechanics +cond-mat/0701598 Strongly Correlated Electrons +cond-mat/0701691 Strongly Correlated Electrons +cond-mat/0702052 Other Condensed Matter +cond-mat/0702267 Strongly Correlated Electrons +cond-mat/0702382 Soft Condensed Matter +cond-mat/0702434 Mesoscale and Nanoscale Physics +cond-mat/0703034 Mesoscale and Nanoscale Physics +cond-mat/0703112 Superconductivity +cond-mat/0703463 Superconductivity +cond-mat/0703777 Statistical Mechanics +cond-mat/9612099 Materials Science +cond-mat/9906097 Statistical Mechanics +cond-mat/9909048 Disordered Systems and Neural Networks +cond-mat/9911296 +cond-mat/9912452 Mesoscale and Nanoscale Physics +gr-qc/0101009 +gr-qc/0111109 +gr-qc/0305087 +gr-qc/0305091 +gr-qc/0311006 +gr-qc/0311090 +gr-qc/0406009 +gr-qc/0409002 +gr-qc/0409065 +gr-qc/0501040 +gr-qc/0502036 +gr-qc/0505085 +gr-qc/0505100 +gr-qc/0505135 +gr-qc/0506073 +gr-qc/0507017 +gr-qc/0508015 +gr-qc/0508026 +gr-qc/0508064 +gr-qc/0508096 +gr-qc/0508111 +gr-qc/0509048 +gr-qc/0607051 +gr-qc/0610101 +gr-qc/0612130 +gr-qc/9912115 +hep-ex/0311009 Experiment +hep-ex/0409009 Experiment +hep-ex/0412030 Experiment +hep-ex/0502022 Experiment +hep-ex/0505005 Experiment +hep-ex/0609023 Experiment +hep-ex/0611032 Experiment +hep-ex/9908025 Experiment +hep-lat/0002021 Lattice +hep-lat/0107018 Lattice +hep-lat/0210045 Lattice +hep-lat/0401015 Lattice +hep-lat/0403021 Lattice +hep-lat/0609067 Lattice +hep-ph/0001011 Phenomenology +hep-ph/0010339 Phenomenology +hep-ph/0012380 Phenomenology +hep-ph/0101327 Phenomenology +hep-ph/0105050 Phenomenology +hep-ph/0106142 Phenomenology +hep-ph/0107034 Phenomenology +hep-ph/0107216 Phenomenology +hep-ph/0108122 Phenomenology +hep-ph/0108182 Phenomenology +hep-ph/0109268 Phenomenology +hep-ph/0110046 Phenomenology +hep-ph/0201035 Phenomenology +hep-ph/0204071 Phenomenology +hep-ph/0205142 Phenomenology +hep-ph/0205183 Phenomenology +hep-ph/0206201 Phenomenology +hep-ph/0206222 Phenomenology +hep-ph/0210046 Phenomenology +hep-ph/0212019 Phenomenology +hep-ph/0301175 Phenomenology +hep-ph/0305301 Phenomenology +hep-ph/0311086 Phenomenology +hep-ph/0312293 Phenomenology +hep-ph/0404235 Phenomenology +hep-ph/0405276 Phenomenology +hep-ph/0408017 Phenomenology +hep-ph/0408061 Phenomenology +hep-ph/0409109 Phenomenology +hep-ph/0412223 Phenomenology +hep-ph/0502094 Phenomenology +hep-ph/0502177 Phenomenology +hep-ph/0503256 Phenomenology +hep-ph/0505090 Phenomenology +hep-ph/0505133 Phenomenology +hep-ph/0506045 Phenomenology +hep-ph/0506186 Phenomenology +hep-ph/0506216 Phenomenology +hep-ph/0506279 Phenomenology +hep-ph/0507034 Phenomenology +hep-ph/0507047 Phenomenology +hep-ph/0507107 Phenomenology +hep-ph/0507161 Phenomenology +hep-ph/0507219 Phenomenology +hep-ph/0507289 Phenomenology +hep-ph/0508050 Phenomenology +hep-ph/0508214 Phenomenology +hep-ph/0508219 Phenomenology +hep-ph/0509032 Phenomenology +hep-ph/0509048 Phenomenology +hep-ph/0509079 Phenomenology +hep-ph/0509111 Phenomenology +hep-ph/0509148 Phenomenology +hep-ph/0509213 Phenomenology +hep-ph/0509278 Phenomenology +hep-ph/0509359 Phenomenology +hep-ph/0510049 Phenomenology +hep-ph/0510103 Phenomenology +hep-ph/0510272 Phenomenology +hep-ph/0511079 Phenomenology +hep-ph/0512153 Phenomenology +hep-ph/0601183 Phenomenology +hep-ph/0604062 Phenomenology +hep-ph/0605157 Phenomenology +hep-ph/0605210 Phenomenology +hep-ph/0605216 Phenomenology +hep-ph/0607009 Phenomenology +hep-ph/0607065 Phenomenology +hep-ph/0608268 Phenomenology +hep-ph/9909459 Phenomenology +hep-ph/9910337 Phenomenology +hep-th/0108240 Theory +hep-th/0111074 Theory +hep-th/0203261 Theory +hep-th/0205058 Theory +hep-th/0404167 Theory +hep-th/0405171 Theory +hep-th/0405223 Theory +hep-th/0407169 Theory +hep-th/0408234 Theory +hep-th/0409070 Theory +hep-th/0409156 Theory +hep-th/0410286 Theory +hep-th/0412017 Theory +hep-th/0412118 Theory +hep-th/0412334 Theory +hep-th/0502172 Theory +hep-th/0504028 Theory +hep-th/0505155 Theory +hep-th/0505230 Theory +hep-th/0506025 Theory +hep-th/0506139 Theory +hep-th/0506242 Theory +hep-th/0507145 Theory +hep-th/0507210 Theory +hep-th/0507245 Theory +hep-th/0508028 Theory +hep-th/0508161 Theory +hep-th/0508171 Theory +hep-th/0508209 Theory +hep-th/0509074 Theory +hep-th/0509151 Theory +hep-th/0509177 Theory +hep-th/0509180 Theory +hep-th/0601174 Theory +hep-th/0609185 Theory +hep-th/0612042 Theory +math/0106037 Probability +math/9810083 Differential Geometry +math/9901050 Classical Analysis and ODEs +nlin/0003027 Chaotic Dynamics +nlin/0012041 Pattern Formation and Solitons +nlin/0111044 Chaotic Dynamics +nlin/0204010 Chaotic Dynamics +nlin/0309004 Chaotic Dynamics +nlin/0309029 Pattern Formation and Solitons +nlin/0311006 Chaotic Dynamics +nlin/0402050 Pattern Formation and Solitons +nlin/0412047 Adaptation and Self-Organizing Systems +nlin/0502008 Pattern Formation and Solitons +nlin/0508010 Pattern Formation and Solitons +nlin/0508026 Chaotic Dynamics +nlin/0607039 Adaptation and Self-Organizing Systems +nlin/0608006 Pattern Formation and Solitons +nlin/0609066 Chaotic Dynamics +nlin/0610024 Chaotic Dynamics +nlin/0610059 Pattern Formation and Solitons +nucl-ex/0203018 +nucl-ex/0204010 +nucl-ex/0303001 +nucl-ex/0406019 +nucl-ex/0410037 +nucl-ex/0607020 +nucl-th/0011044 +nucl-th/0011058 +nucl-th/0011059 +nucl-th/0101014 +nucl-th/0103030 +nucl-th/0111060 +nucl-th/0210055 +nucl-th/0304059 +nucl-th/0403022 +nucl-th/0406039 +nucl-th/0407024 +nucl-th/0411052 +nucl-th/0505025 +nucl-th/0506070 +nucl-th/0508008 +nucl-th/0509010 +nucl-th/0512030 +nucl-th/0602024 +nucl-th/0608054 +nucl-th/0612018 +nucl-th/0702050 +patt-sol/9704003 Pattern Formation and Solitons +physics/0005047 Geophysics +physics/0005048 Geophysics +physics/0005049 Geophysics +physics/0011023 Computational Physics +physics/0101086 Atomic Physics +physics/0105029 Medical Physics +physics/0108010 Atomic Physics +physics/0111204 Biological Physics +physics/0207110 Biological Physics +physics/0212003 Atomic Physics +physics/0301061 Biological Physics +physics/0307150 Computational Physics +physics/0402019 Optics +physics/0403009 Atomic Physics +physics/0404089 Biological Physics +physics/0408011 Atomic Physics +physics/0408088 Atomic Physics +physics/0412177 Atomic Physics +physics/0502036 Fluid Dynamics +physics/0505211 Optics +physics/0508082 Atomic Physics +physics/0511046 Atomic Physics +physics/0512120 Fluid Dynamics +physics/0602011 Atomic Physics +physics/0603181 Optics +physics/0606018 Fluid Dynamics +physics/0606190 Physics and Society +physics/0607060 Fluid Dynamics +physics/0608116 Optics +physics/0608153 Physics and Society +physics/0609001 Data Analysis, Statistics and Probability +physics/0609145 Atomic Physics +physics/0609166 Atomic Physics +physics/0610015 Atomic and Molecular Clusters +physics/0610032 Atomic Physics +physics/0610273 Atmospheric and Oceanic Physics +physics/0611065 Physics and Society +physics/0611085 Atomic and Molecular Clusters +physics/0611121 Atomic Physics +physics/0611237 Atomic Physics +physics/0611254 Atomic Physics +physics/0701018 Atomic Physics +physics/9909062 Accelerator Physics +q-bio/0310039 Neurons and Cognition +q-bio/0402036 Biomolecules +q-bio/0406008 Molecular Networks +q-bio/0412029 Populations and Evolution +q-bio/0502025 Neurons and Cognition +q-bio/0505047 Biomolecules +q-bio/0510049 Biomolecules +q-bio/0607044 Biomolecules +q-bio/0608016 Populations and Evolution +q-bio/0611044 Biomolecules +q-bio/0703037 Neurons and Cognition +quant-ph/0009090 +quant-ph/0010097 +quant-ph/0012078 +quant-ph/0012082 +quant-ph/0012111 +quant-ph/0012136 +quant-ph/0101034 +quant-ph/0101084 +quant-ph/0103074 +quant-ph/0103131 +quant-ph/0103170 +quant-ph/0104058 +quant-ph/0104068 +quant-ph/0104072 +quant-ph/0104117 +quant-ph/0105072 +quant-ph/0105122 +quant-ph/0106058 +quant-ph/0107068 +quant-ph/0109053 +quant-ph/0109087 +quant-ph/0110117 +quant-ph/0110144 +quant-ph/0111093 +quant-ph/0111124 +quant-ph/0112042 +quant-ph/0112073 +quant-ph/0201097 +quant-ph/0202009 +quant-ph/0203064 +quant-ph/0204116 +quant-ph/0204121 +quant-ph/0205088 +quant-ph/0205091 +quant-ph/0206181 +quant-ph/0208002 +quant-ph/0208013 +quant-ph/0208123 +quant-ph/0208144 +quant-ph/0208182 +quant-ph/0209074 +quant-ph/0211062 +quant-ph/0211093 +quant-ph/0212086 +quant-ph/0212098 +quant-ph/0301018 +quant-ph/0302101 +quant-ph/0303110 +quant-ph/0306019 +quant-ph/0306139 +quant-ph/0307003 +quant-ph/0308033 +quant-ph/0310015 +quant-ph/0311014 +quant-ph/0311174 +quant-ph/0312207 +quant-ph/0402169 +quant-ph/0404006 +quant-ph/0404033 +quant-ph/0404058 +quant-ph/0404138 +quant-ph/0405011 +quant-ph/0405146 +quant-ph/0406231 +quant-ph/0408035 +quant-ph/0409042 +quant-ph/0409094 +quant-ph/0410107 +quant-ph/0410118 +quant-ph/0410123 +quant-ph/0410168 +quant-ph/0411071 +quant-ph/0411147 +quant-ph/0412036 +quant-ph/0412084 +quant-ph/0412134 +quant-ph/0501152 +quant-ph/0501166 +quant-ph/0502164 +quant-ph/0502170 +quant-ph/0503036 +quant-ph/0503092 +quant-ph/0503194 +quant-ph/0503205 +quant-ph/0504142 +quant-ph/0505008 +quant-ph/0505125 +quant-ph/0505138 +quant-ph/0506045 +quant-ph/0506069 +quant-ph/0506270 +quant-ph/0507059 +quant-ph/0507063 +quant-ph/0507173 +quant-ph/0507249 +quant-ph/0508231 +quant-ph/0509140 +quant-ph/0510029 +quant-ph/0510210 +quant-ph/0511044 +quant-ph/0511205 +quant-ph/0601099 +quant-ph/0601160 +quant-ph/0602022 +quant-ph/0602138 +quant-ph/0602169 +quant-ph/0603014 +quant-ph/0603142 +quant-ph/0603268 +quant-ph/0604125 +quant-ph/0605048 +quant-ph/0605079 +quant-ph/0605224 +quant-ph/0606073 +quant-ph/0606142 +quant-ph/0606217 +quant-ph/0607028 +quant-ph/0607031 +quant-ph/0607082 +quant-ph/0607102 +quant-ph/0607139 +quant-ph/0607150 +quant-ph/0607152 +quant-ph/0608108 +quant-ph/0608122 +quant-ph/0608145 +quant-ph/0608164 +quant-ph/0608215 +quant-ph/0608236 +quant-ph/0609006 +quant-ph/0609020 +quant-ph/0609044 +quant-ph/0609111 +quant-ph/0609158 +quant-ph/0609162 +quant-ph/0609171 +quant-ph/0610025 +quant-ph/0610031 +quant-ph/0610043 +quant-ph/0610125 +quant-ph/0610134 +quant-ph/0610223 +quant-ph/0611017 +quant-ph/0611050 +quant-ph/0611058 +quant-ph/0611093 +quant-ph/0611171 +quant-ph/0611172 +quant-ph/0611201 +quant-ph/0612020 +quant-ph/0612050 +quant-ph/0612081 +quant-ph/0612121 +quant-ph/0612169 +quant-ph/0612188 +quant-ph/0612191 +quant-ph/0701160 +quant-ph/0701224 +quant-ph/0702031 +quant-ph/0702187 +quant-ph/0703219 +quant-ph/9903078 +quant-ph/9908035 +0910.3589 Complex Variables +1005.5048 Classical Analysis and ODEs +1005.5092 +1006.5355 +1007.3653 Classical Analysis and ODEs +1008.2544 +1011.3680 Numerical Analysis +1102.5536 Probability +1103.2568 Differential Geometry +1104.1039 Probability +1104.2169 Cosmology and Nongalactic Astrophysics +1105.1701 Theory +1105.1866 Theory +1106.2945 Numerical Analysis +1107.4601 +1108.3335 Phenomenology +1108.3587 Exactly Solvable and Integrable Systems +1110.0983 Biological Physics +1112.3464 Representation Theory +1112.4036 +1112.6126 Logic +1112.6129 Logic +1202.0894 Algebraic Geometry +1203.6212 Dynamical Systems +1204.2448 Theory +1207.6519 +1208.2244 General Mathematics +1208.2524 Statistical Mechanics +1208.4969 Chemical Physics +1208.6318 Networking and Internet Architecture +1209.3866 Algebraic Topology +1210.0654 Optics +1210.2167 Symplectic Geometry +1210.2365 Cosmology and Nongalactic Astrophysics +1211.4152 Algebraic Geometry +1212.0299 Strongly Correlated Electrons +1212.4239 Neurons and Cognition +1212.5482 Chaotic Dynamics +1301.1467 Logic +1301.3138 +1301.3188 Combinatorics +1301.3521 Probability +1301.3830 Group Theory +1301.5107 Networking and Internet Architecture +1301.6203 Optics +1301.6378 Probability +1301.7226 Quantum Gases +1301.7234 High Energy Astrophysical Phenomena +1302.1169 Probability +1302.2151 +1302.5990 Systems and Control +1302.6869 Rings and Algebras +1302.7166 Statistical Mechanics +1303.1759 Geometric Topology +1303.2227 Number Theory +1304.1329 Disordered Systems and Neural Networks +1304.1739 Medical Physics +1304.3646 Disordered Systems and Neural Networks +1304.5115 Instrumentation and Detectors +1304.5532 Cosmology and Nongalactic Astrophysics +1304.5632 +1304.7454 Functional Analysis +1305.0538 Logic in Computer Science +1305.2944 Functional Analysis +1305.5145 Combinatorics +1305.6270 +1305.7071 Biological Physics +1305.7072 Biological Physics +1305.7387 Algebraic Geometry +1306.0270 Instrumentation and Detectors +1306.0723 Theory +1306.4445 Phenomenology +1306.4850 Metric Geometry +1307.0695 Soft Condensed Matter +1307.1198 Mesoscale and Nanoscale Physics +1307.1500 Commutative Algebra +1307.1780 +1307.5536 Theory +1307.5618 +1307.6361 Strongly Correlated Electrons +1307.7285 Mesoscale and Nanoscale Physics +1307.7299 Analysis of PDEs +1307.7699 Lattice +1307.8173 Phenomenology +1308.0414 Chemical Physics +1308.1407 Strongly Correlated Electrons +1308.2321 Physics and Society +1308.2335 Combinatorics +1308.3256 Strongly Correlated Electrons +1308.4776 +1308.5972 Cosmology and Nongalactic Astrophysics +1308.6115 Soft Condensed Matter +1308.6124 Statistical Mechanics +1309.0621 +1309.1061 Soft Condensed Matter +1309.2176 Mesoscale and Nanoscale Physics +1309.2939 Theory +1309.4012 Materials Science +1309.5428 Logic +1309.6807 Superconductivity +1309.6927 Discrete Mathematics +1310.0253 Theory +1310.0722 General Physics +1310.1424 Pattern Formation and Solitons +1310.1911 Theory +1310.2019 Probability +1310.3136 Strongly Correlated Electrons +1310.3660 Mesoscale and Nanoscale Physics +1310.4496 Phenomenology +1310.6028 +1310.7714 Applications +1310.7827 Phenomenology +1310.8432 Solar and Stellar Astrophysics +1311.2914 Artificial Intelligence +1311.3945 Mesoscale and Nanoscale Physics +1311.5159 Solar and Stellar Astrophysics +1311.5899 Materials Science +1311.7185 High Energy Astrophysical Phenomena +1311.7294 Representation Theory +1311.7442 Information Theory +1312.0144 Artificial Intelligence +1312.0800 Symplectic Geometry +1312.2279 +1312.2359 Software Engineering +1312.2789 Learning +1312.2829 Combinatorics +1312.2841 Computational Engineering, Finance, and Science +1312.2853 Computational Engineering, Finance, and Science +1312.2859 Computational Engineering, Finance, and Science +1312.2861 Computational Engineering, Finance, and Science +1312.2867 Computational Engineering, Finance, and Science +1312.2976 Hardware Architecture +1312.3158 Optimization and Control +1312.3289 Metric Geometry +1312.3318 Analysis of PDEs +1312.3341 Materials Science +1312.3343 Mesoscale and Nanoscale Physics +1312.3344 Materials Science +1312.3346 Theory +1312.3347 Distributed, Parallel, and Cluster Computing +1312.3349 Trading and Market Microstructure +1312.3350 Genomics +1312.3352 Optimization and Control +1312.3355 Optics +1312.3371 Theory +1312.3372 Logic in Computer Science +1312.3374 Group Theory +1312.3376 Pattern Formation and Solitons +1312.3379 Information Theory +1312.3381 Differential Geometry +1312.3383 Classical Physics +1312.3387 Social and Information Networks +1312.3388 Learning +1312.3389 Information Theory +1312.3390 Mesoscale and Nanoscale Physics +1312.3391 Mesoscale and Nanoscale Physics +1312.3394 Computer Science and Game Theory +1312.3396 Combinatorics +1312.3399 Systems and Control +1312.3403 Phenomenology +1312.3404 +1312.3406 Phenomenology +1312.3407 Accelerator Physics +1312.3409 Mesoscale and Nanoscale Physics +1312.3411 Group Theory +1312.3412 Logic in Computer Science +1312.3414 Phenomenology +1312.3416 Logic in Computer Science +1312.3418 Information Theory +1312.3420 Cryptography and Security +1312.3423 Combinatorics +1312.3425 Plasma Physics +1312.3432 Analysis of PDEs +1312.3434 Earth and Planetary Astrophysics +1312.3441 Social and Information Networks +1312.3447 Populations and Evolution +1312.3450 Biological Physics +1312.3452 Dynamical Systems +1312.3460 Functional Analysis +1312.3463 +1312.3472 Soft Condensed Matter +1312.3473 Symplectic Geometry +1312.3477 Optics +1312.3478 Computer Science and Game Theory +1312.3481 Algebraic Geometry +1312.3482 Methodology +1312.3483 High Energy Astrophysical Phenomena +1312.3486 Optics +1312.3489 Classical Analysis and ODEs +1312.3491 Numerical Analysis +1312.3495 Lattice +1312.3503 Statistical Mechanics +1312.3504 Distributed, Parallel, and Cluster Computing +1312.3505 +1312.3506 Theory +1312.3510 +1312.3511 Number Theory +1312.3512 Theory +1312.3518 Geometric Topology +1312.3525 Statistics Theory +1312.3526 Symplectic Geometry +1312.3530 Differential Geometry +1312.3531 Number Theory +1312.3532 Social and Information Networks +1312.3534 Lattice +1312.3535 Lattice +1312.3538 Computational Geometry +1312.3543 Systems and Control +1312.3544 High Energy Astrophysical Phenomena +1312.3546 Probability +1312.3547 Soft Condensed Matter +1312.3548 +1312.3550 Formal Languages and Automata Theory +1312.3552 Data Structures and Algorithms +1312.3557 Analysis of PDEs +1312.3565 Fluid Dynamics +1312.3566 Phenomenology +1312.3569 Analysis of PDEs +1312.3570 Materials Science +1312.3573 Soft Condensed Matter +1312.3575 Analysis of PDEs +1312.3580 Probability +1312.3581 Complex Variables +1312.3583 Adaptation and Self-Organizing Systems +1312.3590 +1312.3591 Lattice +1312.3592 +1312.3593 Phenomenology +1312.3594 +1312.3598 +1312.3602 Statistical Mechanics +1312.3604 Computational Geometry +1312.3607 Instrumentation and Methods for Astrophysics +1312.3608 Functional Analysis +1312.3612 +1312.3614 +1312.3616 Rings and Algebras +1312.3618 Numerical Analysis +1312.3621 Spectral Theory +1312.3632 Superconductivity +0710.1549 Other Condensed Matter +0801.3424 Other Condensed Matter +1001.0935 +1001.1874 Optics +1003.1410 Graphics +1003.5831 Logic +1006.2557 Commutative Algebra +1006.4853 Group Theory +1006.5802 Combinatorics +1012.2375 Earth and Planetary Astrophysics +1106.3066 Theory +1108.3189 Optics +1108.3660 Numerical Analysis +1109.0763 +1109.0868 Superconductivity +1110.0775 +1110.3176 Earth and Planetary Astrophysics +1111.2767 +1111.6136 Theory +1112.0497 Probability +1112.2304 Analysis of PDEs +1112.3339 Strongly Correlated Electrons +1202.1568 Computation and Language +1202.2795 +1202.6341 Numerical Analysis +1204.1449 Exactly Solvable and Integrable Systems +1204.2511 +1204.3042 Algebraic Geometry +1204.4053 Mesoscale and Nanoscale Physics +1204.4718 Earth and Planetary Astrophysics +1204.5304 +1204.6734 Computational Physics +1205.4272 Optics +1205.4843 Optimization and Control +1205.6481 Phenomenology +1205.6834 Materials Science +1206.0979 Strongly Correlated Electrons +1206.1478 Cosmology and Nongalactic Astrophysics +1206.6205 Phenomenology +1207.0253 +1207.1452 Lattice +1207.2251 +1207.2812 Machine Learning +1207.3106 Computation +1207.4236 Differential Geometry +1207.4444 Mesoscale and Nanoscale Physics +1207.5221 Phenomenology +1207.5660 Information Theory +1207.6322 Cosmology and Nongalactic Astrophysics +1207.6915 Experiment +1207.7314 Solar and Stellar Astrophysics +1208.0015 Strongly Correlated Electrons +1208.0517 Solar and Stellar Astrophysics +1208.1348 Probability +1208.2994 Mesoscale and Nanoscale Physics +1208.3969 Statistical Mechanics +1208.4538 Fluid Dynamics +1208.5657 Fluid Dynamics +1209.0718 +1209.2369 Theory +1209.4011 Phenomenology +1209.4681 Theory +1209.4933 Mesoscale and Nanoscale Physics +1209.5602 Phenomenology +1209.5913 Phenomenology +1209.6483 Number Theory +1210.3059 Number Theory +1210.3141 Computer Science and Game Theory +1210.4742 Phenomenology +1210.5499 Statistical Mechanics +1210.5631 Machine Learning +1210.6646 Emerging Technologies +1211.0199 Quantum Gases +1211.0566 Materials Science +1211.0643 Statistical Mechanics +1211.0929 Lattice +1211.1384 Mesoscale and Nanoscale Physics +1211.1981 Phenomenology +1211.3616 Neurons and Cognition +1211.4202 +1211.4340 Combinatorics +1211.4341 Phenomenology +1211.5032 Cosmology and Nongalactic Astrophysics +1211.6001 Theory +1211.7005 Atomic Physics +1211.7285 Phenomenology +1212.0405 Probability +1212.0868 Cosmology and Nongalactic Astrophysics +1212.1393 Exactly Solvable and Integrable Systems +1212.1457 High Energy Astrophysical Phenomena +1212.1493 Quantum Gases +1212.2626 Solar and Stellar Astrophysics +1212.2631 Strongly Correlated Electrons +1212.2655 Phenomenology +1212.2747 Logic in Computer Science +1212.3337 Theory +1212.3414 Statistical Mechanics +1212.3921 Mesoscale and Nanoscale Physics +1212.4075 High Energy Astrophysical Phenomena +1212.4077 Solar and Stellar Astrophysics +1212.4344 +1212.4487 Theory +1212.5237 +1212.5775 Quantum Algebra +1212.6297 Mesoscale and Nanoscale Physics +1212.6625 +1212.6941 Mesoscale and Nanoscale Physics +1301.0153 Chemical Physics +1301.0453 Phenomenology +1301.1300 +1301.1642 Theory +1301.2598 Theory +1301.3204 Theory +1301.3786 +1301.3820 High Energy Astrophysical Phenomena +1301.5323 +1301.5324 Strongly Correlated Electrons +1301.5546 Mesoscale and Nanoscale Physics +1301.5652 Optics +1301.6051 +1301.6501 Strongly Correlated Electrons +1301.6570 +1301.6620 Cosmology and Nongalactic Astrophysics +1301.7042 High Energy Astrophysical Phenomena +1301.7135 Quantum Gases +1301.7250 Data Structures and Algorithms +1301.7303 Phenomenology +1301.7343 Cosmology and Nongalactic Astrophysics +1301.7548 Phenomenology +1301.7671 Theory +1302.0427 High Energy Astrophysical Phenomena +1302.0460 Phenomenology +1302.0840 Theory +1302.1119 +1302.1735 Phenomenology +1302.1745 Phenomenology +1302.1862 Phenomenology +1302.2594 Mesoscale and Nanoscale Physics +1302.2732 Theory +1302.3137 Adaptation and Self-Organizing Systems +1302.3532 Lattice +1302.3710 Phenomenology +1302.4306 +1302.4600 Phenomenology +1302.4801 +1302.4924 Theory +1302.5047 Phenomenology +1302.5250 Phenomenology +1302.5390 +1302.5458 Plasma Physics +1302.5533 Optics +1302.5572 Atomic Physics +1302.6300 +1302.6463 Cosmology and Nongalactic Astrophysics +1302.6535 Strongly Correlated Electrons +1303.0207 +1303.0743 Theory +1303.0759 Theory +1303.0781 Physics and Society +1303.1140 Phenomenology +1303.1811 Phenomenology +1303.1981 +1303.2053 Disordered Systems and Neural Networks +1303.2210 Lattice +1303.2281 +1303.2384 Phenomenology +1303.2676 Fluid Dynamics +1303.3186 +1303.3342 Phenomenology +1303.3343 Quantum Gases +1303.3367 +1303.3411 Optics +1303.3571 +1303.3580 Theory +1303.3673 Optics +1303.3719 Experiment +1303.3762 Materials Science +1303.4034 Theory +1303.4192 Mesoscale and Nanoscale Physics +1303.4390 Theory +1303.4428 Theory +1303.4633 Phenomenology +1303.4642 Solar and Stellar Astrophysics +1303.4806 +1303.4967 +1303.5586 Cosmology and Nongalactic Astrophysics +1303.5979 Lattice +1303.6145 Neural and Evolutionary Computing +1303.6244 Cosmology and Nongalactic Astrophysics +1303.6488 Theory +1303.6550 Cosmology and Nongalactic Astrophysics +1303.6575 Phenomenology +1303.6816 Lattice +1303.6939 Theory +1303.7004 Cosmology and Nongalactic Astrophysics +1303.7056 Phenomenology +1303.7356 Phenomenology +1304.0033 Phenomenology +1304.0142 Algebraic Geometry +1304.0382 Theory +1304.0473 Digital Libraries +1304.0711 Phenomenology +1304.0966 Phenomenology +1304.1439 Lattice +1304.2139 Theory +1304.2402 Statistical Mechanics +1304.2417 Phenomenology +1304.2445 Cosmology and Nongalactic Astrophysics +1304.2541 +1304.2615 Mesoscale and Nanoscale Physics +1304.2654 Phenomenology +1304.2657 Cosmology and Nongalactic Astrophysics +1304.2783 Phenomenology +1304.2938 Theory +1304.3176 +1304.3399 Statistical Mechanics +1304.3407 Mesoscale and Nanoscale Physics +1304.3416 Mesoscale and Nanoscale Physics +1304.3503 Experiment +1304.3558 Phenomenology +1304.3633 Plasma Physics +1304.3737 Atomic Physics +1304.3917 Phenomenology +1304.4128 High Energy Astrophysical Phenomena +1304.4154 Phenomenology +1304.4196 Mesoscale and Nanoscale Physics +1304.4197 Mesoscale and Nanoscale Physics +1304.4200 Applications +1304.4230 Phenomenology +1304.4251 Phenomenology +1304.4310 Physics and Society +1304.4533 Mesoscale and Nanoscale Physics +1304.4614 Lattice +1304.4670 Phenomenology +1304.4717 Cosmology and Nongalactic Astrophysics +1304.5082 Dynamical Systems +1304.5119 Phenomenology +1304.5237 Phenomenology +1304.5353 Phenomenology +1304.5638 Phenomenology +1304.5820 +1304.5888 +1304.5927 +1304.6018 Soft Condensed Matter +1304.6129 Soft Condensed Matter +1304.6145 Lattice +1304.6162 Phenomenology +1304.6217 Cosmology and Nongalactic Astrophysics +1304.6230 Experiment +1304.6307 +1304.6372 High Energy Astrophysical Phenomena +1304.6433 Phenomenology +1304.7100 Theory +1304.7645 Phenomenology +1304.7698 +1304.7761 Lattice +1304.7812 Lattice +1304.7877 +1304.8021 +1304.8027 Phenomenology +1304.8049 Cosmology and Nongalactic Astrophysics +1304.8101 Phenomenology +1304.8113 Phenomenology +1305.0181 Cosmology and Nongalactic Astrophysics +1305.0214 Strongly Correlated Electrons +1305.0279 Theory +1305.0888 Phenomenology +1305.1066 Phenomenology +1305.1304 Theory +1305.1479 Phenomenology +1305.1507 Chaotic Dynamics +1305.1521 Strongly Correlated Electrons +1305.1599 Optics +1305.1624 Phenomenology +1305.1845 Solar and Stellar Astrophysics +1305.2037 Mesoscale and Nanoscale Physics +1305.2047 Phenomenology +1305.2184 +1305.2763 +1305.2814 Theory +1305.2850 Phenomenology +1305.3214 Phenomenology +1305.3378 Optics +1305.3487 Superconductivity +1305.3522 Phenomenology +1305.3813 +1305.4115 Phenomenology +1305.4202 Phenomenology +1305.4280 Theory +1305.4453 Atomic Physics +1305.4563 Materials Science +1305.4682 Information Theory +1305.4779 Cosmology and Nongalactic Astrophysics +1305.4940 Mesoscale and Nanoscale Physics +1305.5279 Algebraic Geometry +1305.5292 Mesoscale and Nanoscale Physics +1305.5320 Phenomenology +1305.5539 Phenomenology +1305.5600 +1305.5718 Phenomenology +1305.5850 Theory +1305.6134 Analysis of PDEs +1305.6253 Lattice +1305.6514 +1305.6774 Phenomenology +1305.7310 Phenomenology +1306.0102 Phenomenology +1306.1322 Statistics Theory +1306.1331 Phenomenology +1306.1384 Phenomenology +1306.1523 Theory +1306.1610 +1306.1911 Phenomenology +1306.2207 Theory +1306.2275 Phenomenology +1306.2315 Phenomenology +1306.2510 Quantum Gases +1306.2703 Phenomenology +1306.3310 Materials Science +1306.3725 +1306.3985 Cosmology and Nongalactic Astrophysics +1306.4861 +1306.5333 Earth and Planetary Astrophysics +1306.5954 Mesoscale and Nanoscale Physics +1306.6014 Phenomenology +1306.6297 Materials Science +1307.5306 Experiment +1307.5923 Numerical Analysis +1307.7476 +1307.7963 Methodology +1307.8133 Soft Condensed Matter +1308.0520 +1308.0556 Statistical Mechanics +1308.0740 Experiment +1308.1153 Materials Science +1308.1536 Distributed, Parallel, and Cluster Computing +1308.1576 Numerical Analysis +1308.1671 High Energy Astrophysical Phenomena +1308.1677 High Energy Astrophysical Phenomena +1308.1679 High Energy Astrophysical Phenomena +1308.1681 High Energy Astrophysical Phenomena +1308.1683 +1308.1684 High Energy Astrophysical Phenomena +1308.1685 +1308.1694 Rings and Algebras +1308.1696 Logic +1308.1698 Instrumentation and Methods for Astrophysics +1308.1699 +1308.1701 +1308.1702 Dynamical Systems +1308.1705 Lattice +1308.1706 Functional Analysis +1308.1715 Phenomenology +1308.1720 Superconductivity +1308.1721 Quantum Algebra +1308.1722 Classical Physics +1308.1723 Analysis of PDEs +1308.1724 Algebraic Topology +1308.1725 Optimization and Control +1308.1730 +1308.1734 Dynamical Systems +1308.1735 Strongly Correlated Electrons +1308.1736 Earth and Planetary Astrophysics +1308.1738 Probability +1308.1742 Phenomenology +1308.1744 Systems and Control +1308.1745 Information Theory +1308.1747 Optimization and Control +1308.1748 +1308.1749 Statistical Finance +1308.1751 Mesoscale and Nanoscale Physics +1308.1752 Metric Geometry +1308.1754 Astrophysics of Galaxies +1308.1756 Representation Theory +1308.1759 Phenomenology +1308.1761 Information Theory +1308.1763 Distributed, Parallel, and Cluster Computing +1308.1764 +1308.1767 Networking and Internet Architecture +1308.1769 Materials Science +1308.1771 +1308.1773 +1308.1774 High Energy Astrophysical Phenomena +1308.1776 Physics and Society +1308.1777 Optics +1308.1783 +1308.1792 Learning +1308.1798 Theory +1308.1801 Computer Vision and Pattern Recognition +1308.1806 Distributed, Parallel, and Cluster Computing +1308.1808 Popular Physics +1308.1809 Networking and Internet Architecture +1308.1815 Statistics Theory +1308.1817 Multimedia +1308.1826 Number Theory +1308.1829 Combinatorics +1308.1831 Superconductivity +1308.1832 Computer Science and Game Theory +1308.1837 +1308.1838 Digital Libraries +1308.1849 General Physics +1308.1855 Solar and Stellar Astrophysics +1308.1857 Social and Information Networks +1308.1858 High Energy Astrophysical Phenomena +1308.1864 Optics +1308.1865 Quantitative Methods +1308.1869 Optimization and Control +1308.1876 Information Theory +1308.1878 Logic +1308.1884 Astrophysics of Galaxies +1308.1888 Cryptography and Security +1308.1890 Geometric Topology +1308.1895 Space Physics +1308.1897 Functional Analysis +1308.1899 Metric Geometry +1308.1901 Software Engineering +1308.1907 Superconductivity +1308.1911 Networking and Internet Architecture +1308.1912 Quantitative Methods +1308.1915 Cosmology and Nongalactic Astrophysics +1308.1924 Optics +1308.1925 Physics and Society +1308.1926 Analysis of PDEs +1308.1930 Optimization and Control +1308.1932 Phenomenology +1308.1936 Solar and Stellar Astrophysics +1308.1938 Tissues and Organs +1308.1946 Digital Libraries +cond-mat/0607721 Other Condensed Matter +math/0110227 Geometric Topology +math/0111173 Algebraic Geometry +0804.2356 Representation Theory +0811.3687 Statistical Mechanics +0903.3857 Complex Variables +0903.3872 Complex Variables +0903.4394 Complex Variables +0908.1152 Probability +1006.3620 Strongly Correlated Electrons +1007.3116 Analysis of PDEs +1008.3995 Dynamical Systems +1012.5892 Analysis of PDEs +1103.0422 Number Theory +1106.6160 General Physics +1107.0144 General Physics +1107.1476 General Physics +1107.3776 Number Theory +1108.5469 Analysis of PDEs +1109.0245 Superconductivity +1110.4198 Learning +1112.0925 Mesoscale and Nanoscale Physics +1112.6123 Algebraic Geometry +1202.0587 Pricing of Securities +1202.1344 Mesoscale and Nanoscale Physics +1202.4973 Cosmology and Nongalactic Astrophysics +1204.0751 Biological Physics +1205.1750 Superconductivity +1205.2224 +1206.1668 Optics +1206.3427 Superconductivity +1207.2928 Adaptation and Self-Organizing Systems +1207.3576 Computer Vision and Pattern Recognition +1207.6556 Phenomenology +1208.1101 Superconductivity +1208.6461 +1209.0228 Materials Science +1209.0237 Classical Analysis and ODEs +1209.0593 Fluid Dynamics +1209.5707 Materials Science +1209.5710 Materials Science +1209.6562 Theory +1209.6563 Theory +1210.0146 Materials Science +1210.0148 Materials Science +1211.1178 Atomic Physics +1211.1858 Systems and Control +1211.2440 Materials Science +1211.2524 Materials Science +1211.4408 Analysis of PDEs +1211.4912 Differential Geometry +1211.5060 Systems and Control +1211.6936 Quantum Gases +1212.0735 Mesoscale and Nanoscale Physics +1212.2119 Optimization and Control +1212.3374 Information Theory +1212.5054 Adaptation and Self-Organizing Systems +1301.1483 +1301.2869 Quantum Gases +1301.4907 Quantum Gases +1301.5054 Populations and Evolution +1301.5553 Mesoscale and Nanoscale Physics +1301.6828 Statistical Mechanics +1301.6850 Strongly Correlated Electrons +1302.0205 +1302.0599 Phenomenology +1302.2200 Mesoscale and Nanoscale Physics +1302.3363 Discrete Mathematics +1302.3365 Systems and Control +1302.5194 Algebraic Geometry +1302.6107 Atomic Physics +1302.6727 Probability +1302.7276 Genomics +1303.1679 Chemical Physics +1303.1723 Soft Condensed Matter +1303.1991 Statistical Mechanics +1303.2114 Superconductivity +1303.6551 +1303.6653 Phenomenology +1303.6943 Probability +1304.1196 Rings and Algebras +1304.2121 +1304.2274 Probability +1304.3044 +1304.3651 Phenomenology +1304.5356 High Energy Astrophysical Phenomena +1304.6082 High Energy Astrophysical Phenomena +1304.6930 Phenomenology +1304.7098 Experiment +1304.7870 Combinatorics +1305.0151 Dynamical Systems +1305.0581 Phenomenology +1305.0609 +1305.0715 Numerical Analysis +1305.1499 Materials Science +1305.1975 +1305.2145 Optimization and Control +1305.2606 Phenomenology +1305.5711 Phenomenology +1305.5979 Phenomenology +1305.6038 Solar and Stellar Astrophysics +1305.6125 Strongly Correlated Electrons +1305.6769 +1305.7451 Chemical Physics +1306.0134 Cosmology and Nongalactic Astrophysics +1306.1102 Physics and Society +1306.2437 Computer Science and Game Theory +1306.2457 Solar and Stellar Astrophysics +1306.2584 Quantitative Methods +1306.4643 Rings and Algebras +1306.6675 Computational Engineering, Finance, and Science +1307.0015 Disordered Systems and Neural Networks +1307.0591 Mesoscale and Nanoscale Physics +1307.0890 Materials Science +1307.1034 History and Overview +1307.2331 Genomics +1307.2380 Distributed, Parallel, and Cluster Computing +1307.2639 +1307.2916 General Physics +1307.2946 Atmospheric and Oceanic Physics +1307.2991 Databases +1307.3198 Materials Science +1307.3243 Rings and Algebras +1307.3265 Classical Analysis and ODEs +1307.3266 +1307.3270 Materials Science +1307.3271 Computer Vision and Pattern Recognition +1307.3272 Computational Geometry +1307.3274 Materials Science +1307.3278 Materials Science +1307.3279 Statistical Mechanics +1307.3283 Computation +1307.3284 Information Retrieval +1307.3286 Methodology +1307.3293 Combinatorics +1307.3294 Multimedia +1307.3295 Networking and Internet Architecture +1307.3297 Combinatorics +1307.3304 General Physics +1307.3305 Cosmology and Nongalactic Astrophysics +1307.3306 Distributed, Parallel, and Cluster Computing +1307.3310 Computation and Language +1307.3312 Combinatorics +1307.3315 Differential Geometry +1307.3321 Computers and Society +1307.3323 +1307.3324 Hardware Architecture +1307.3325 Computers and Society +1307.3327 Classical Analysis and ODEs +1307.3329 Molecular Networks +1307.3331 Optics +1307.3332 Information Theory +1307.3336 Computation and Language +1307.3337 Computational Engineering, Finance, and Science +1307.3341 Cryptography and Security +1307.3342 Functional Analysis +1307.3343 Functional Analysis +1307.3345 Rings and Algebras +1307.3346 Information Theory +1307.3349 Probability +1307.3352 Theory +1307.3355 Dynamical Systems +1307.3356 Software Engineering +1307.3357 Plasma Physics +1307.3364 Solar and Stellar Astrophysics +1307.3365 Optimization and Control +1307.3366 +1307.3367 Optics +1307.3369 Statistics Theory +1307.3371 Algebraic Geometry +1307.3372 Analysis of PDEs +1307.3375 Statistics Theory +1307.3377 Materials Science +1307.3382 Analysis of PDEs +1307.3384 +1307.3386 Instrumentation and Methods for Astrophysics +1307.3388 Computational Engineering, Finance, and Science +1307.3391 Superconductivity +1307.3394 Optics +1307.3395 Combinatorics +1307.3396 Distributed, Parallel, and Cluster Computing +1307.3398 Software Engineering +1307.3399 Social and Information Networks +1307.3400 Machine Learning +1307.3401 General Physics +1307.3402 Networking and Internet Architecture +1307.3404 Optimization and Control +1307.3406 Instrumentation and Methods for Astrophysics +1307.3407 Experiment +1307.3409 Instrumentation and Methods for Astrophysics +1307.3410 Differential Geometry +1307.3411 Networking and Internet Architecture +1307.3425 Materials Science +1307.3427 Soft Condensed Matter +1307.3431 Commutative Algebra +1307.3433 Probability +1307.3434 Populations and Evolution +1307.3439 Computer Vision and Pattern Recognition +1307.3441 Earth and Planetary Astrophysics +1307.3445 Optics +1307.3446 Biomolecules +1307.3447 Cosmology and Nongalactic Astrophysics +1307.3448 Databases +1307.3449 Algebraic Geometry +1307.3450 Instrumentation and Methods for Astrophysics +1307.3452 Instrumentation and Methods for Astrophysics +1307.3454 Phenomenology +1307.3455 Probability +1307.3457 Learning +1307.3459 History and Overview +1307.3466 Statistical Mechanics +1307.3470 Pattern Formation and Solitons +1307.3477 General Mathematics +1307.3481 Dynamical Systems +1307.3488 Accelerator Physics +1307.3489 Computation and Language +1307.3490 Computation +1307.3494 Strongly Correlated Electrons +1307.3497 Solar and Stellar Astrophysics +1307.3500 Experiment +1307.3502 Solar and Stellar Astrophysics +1307.3507 Solar and Stellar Astrophysics +1307.3515 Genomics +1307.3521 Soft Condensed Matter +1307.3522 Optimization and Control +1307.3525 General Physics +1307.3529 Numerical Analysis +1307.3532 Commutative Algebra +1307.3535 Number Theory +1307.3539 High Energy Astrophysical Phenomena +1307.3540 Analysis of PDEs +1307.3548 Networking and Internet Architecture +cond-mat/0603382 Statistical Mechanics +hep-ph/9510298 Phenomenology +nlin/0007008 Chaotic Dynamics +nlin/0210060 Chaotic Dynamics +0809.4847 +0906.1030 +1003.1842 Symplectic Geometry +1004.3561 +1004.3573 +1005.4089 +1009.4945 +1011.2735 K-Theory and Homology +1101.0019 Quantum Gases +1101.4789 Cryptography and Security +1102.2213 +1102.3658 Rings and Algebras +1105.2508 Strongly Correlated Electrons +1106.1785 +1107.1083 +1107.1851 Distributed, Parallel, and Cluster Computing +1107.2148 +1108.0352 Rings and Algebras +1108.0649 Probability +1108.2471 Applications +1109.6779 Computation +1110.6810 Materials Science +1111.4030 Algebraic Geometry +1111.4307 Differential Geometry +1112.2049 Logic +1112.4795 +1201.4487 +1201.4723 Operator Algebras +1202.0966 +1202.1342 Probability +1202.2750 +1202.4406 Computational Complexity +1204.3054 +1205.3755 +1205.4192 Number Theory +1205.6350 Differential Geometry +1206.1850 Methodology +1206.3317 +1206.3675 +1207.4678 Probability +1207.5809 Probability +1207.7230 Probability +1208.1980 Quantum Gases +1208.2499 High Energy Astrophysical Phenomena +1208.3608 Quantum Gases +1208.4724 +1208.6588 K-Theory and Homology +1209.4185 Algebraic Geometry +1209.4375 Rings and Algebras +1209.4632 Functional Analysis +1209.5976 Pricing of Securities +1209.6504 Dynamical Systems +1210.2378 Symplectic Geometry +1210.4090 Numerical Analysis +1210.5747 +1210.5915 Adaptation and Self-Organizing Systems +1210.6430 +1210.7474 Superconductivity +1211.0533 Mesoscale and Nanoscale Physics +1211.4436 Rings and Algebras +1212.2613 Operator Algebras +1212.3551 Number Theory +1212.4055 Phenomenology +1212.4882 Operator Algebras +1212.5431 Classical Analysis and ODEs +1212.6584 Number Theory +1212.6947 Statistical Mechanics +1301.0130 Probability +1301.0133 +1301.5123 Differential Geometry +1301.5540 Soft Condensed Matter +1301.5713 Probability +1302.0410 Number Theory +1302.1320 Symplectic Geometry +1302.1684 Combinatorics +1302.6610 Atomic Physics +1303.1401 Differential Geometry +1303.2235 +1303.2893 Superconductivity +1303.2976 +1303.3608 Number Theory +1303.6992 Applications +1304.4249 Strongly Correlated Electrons +1304.5146 Algebraic Geometry +1304.5179 +1304.7628 Analysis of PDEs +1305.3033 Dynamical Systems +1305.3227 General Mathematics +1305.3852 Strongly Correlated Electrons +1305.3929 Experiment +1305.4462 Lattice +1305.5224 General Physics +1305.5349 Algebraic Geometry +1305.5613 Differential Geometry +1305.6540 Analysis of PDEs +1305.7203 Strongly Correlated Electrons +1306.1950 +1306.2162 Quantum Gases +1306.2484 Computational Complexity +1306.6315 Strongly Correlated Electrons +1307.0734 Mesoscale and Nanoscale Physics +1307.2273 Strongly Correlated Electrons +1307.4130 +1307.5600 Numerical Analysis +1307.7550 Mesoscale and Nanoscale Physics +1308.1561 Chaotic Dynamics +1308.1789 +1308.2459 General Topology +1308.3919 Superconductivity +1308.4463 Mesoscale and Nanoscale Physics +1309.0173 Group Theory +1309.0767 Mesoscale and Nanoscale Physics +1309.2453 Physics and Society +1309.2538 +1309.2835 Category Theory +1309.3309 Materials Science +1309.4414 Theory +1309.4847 +1309.5323 Statistical Mechanics +1309.7993 Group Theory +1310.0255 Mesoscale and Nanoscale Physics +1310.0619 Mesoscale and Nanoscale Physics +1310.1321 Theory +1310.1412 +1310.2685 Atomic Physics +1310.2711 Computational Complexity +1310.2754 Dynamical Systems +1310.3102 Materials Science +1310.3517 Superconductivity +1310.5012 Solar and Stellar Astrophysics +1310.5253 Analysis of PDEs +1310.6262 Group Theory +1310.7721 Plasma Physics +1310.7907 Analysis of PDEs +1311.0320 Databases +1311.0451 Dynamical Systems +1311.0827 Phenomenology +1311.1844 +1311.2026 Strongly Correlated Electrons +1311.2643 Neurons and Cognition +1311.3547 Experiment +1311.3599 +1311.4236 +1311.5270 Software Engineering +1311.5808 +1311.6369 Phenomenology +1311.7102 Differential Geometry +1311.7276 Mesoscale and Nanoscale Physics +1311.7313 Software Engineering +1311.7524 Phenomenology +1312.0543 Algebraic Geometry +1312.0556 Populations and Evolution +1312.0641 Information Theory +1312.0695 Classical Analysis and ODEs +1312.0795 +1312.0852 Computer Vision and Pattern Recognition +1312.1037 Information Theory +1312.1069 Lattice +1312.1148 Other Computer Science +1312.1308 Metric Geometry +1312.1330 Commutative Algebra +1312.1340 Cosmology and Nongalactic Astrophysics +1312.1345 +1312.1356 +1312.1359 Functional Analysis +1312.1361 Lattice +1312.1362 Functional Analysis +1312.1368 +1312.1369 Computational Geometry +1312.1371 Functional Analysis +1312.1373 Fluid Dynamics +1312.1376 Theory +1312.1379 Combinatorics +1312.1382 Data Structures and Algorithms +1312.1385 Digital Libraries +1312.1389 Numerical Analysis +1312.1392 Materials Science +1312.1397 Systems and Control +1312.1398 Optimization and Control +1312.1402 Rings and Algebras +1312.1406 Metric Geometry +1312.1413 Computational Geometry +1312.1417 Lattice +1312.1418 Materials Science +1312.1419 Phenomenology +1312.1422 Group Theory +1312.1423 Neural and Evolutionary Computing +1312.1425 Mesoscale and Nanoscale Physics +1312.1427 Group Theory +1312.1429 Group Theory +1312.1437 Networking and Internet Architecture +1312.1445 Category Theory +1312.1446 Physics Education +1312.1447 Information Theory +1312.1448 Information Retrieval +1312.1452 Software Engineering +1312.1453 Accelerator Physics +1312.1454 +1312.1457 Dynamical Systems +1312.1460 Cryptography and Security +1312.1461 Computer Vision and Pattern Recognition +1312.1462 Computer Vision and Pattern Recognition +1312.1463 Physics Education +1312.1469 +1312.1473 Methodology +1312.1475 Accelerator Physics +1312.1476 Computation +1312.1477 Phenomenology +1312.1481 Analysis of PDEs +1312.1482 Information Theory +1312.1483 Complex Variables +1312.1484 Materials Science +1312.1489 Experiment +1312.1490 Materials Science +1312.1494 Computational Geometry +1312.1497 Quantum Algebra +1312.1500 Classical Analysis and ODEs +1312.1502 Number Theory +1312.1506 Group Theory +1312.1509 Statistics Theory +1312.1511 Group Theory +1312.1512 Computer Vision and Pattern Recognition +1312.1515 Theory +1312.1516 Functional Analysis +1312.1517 Computer Vision and Pattern Recognition +1312.1518 Soft Condensed Matter +1312.1522 Machine Learning +1312.1523 Discrete Mathematics +1312.1524 Numerical Analysis +1312.1525 Experiment +1312.1526 Computational Complexity +1312.1528 Formal Languages and Automata Theory +1312.1529 Programming Languages +1312.1540 Complex Variables +1312.1543 Lattice +1312.1544 Combinatorics +1312.1548 Applications +1312.1552 Analysis of PDEs +1312.1553 Numerical Analysis +1312.1554 Combinatorics +1312.1555 Solar and Stellar Astrophysics +1312.1556 Lattice +1312.1557 Atomic Physics +1312.1560 Applications +1312.1561 Popular Physics +1312.1563 Probability +1312.1570 Soft Condensed Matter +1312.1574 Exactly Solvable and Integrable Systems +1312.1575 Analysis of PDEs +1312.1576 Materials Science +1312.1577 Information Theory +1312.1578 Portfolio Management +1312.1580 +1312.1582 Analysis of PDEs +1312.1583 Information Theory +1312.1593 Information Theory +1312.1597 Classical Analysis and ODEs +1312.1598 Soft Condensed Matter +1312.1601 Experiment +1312.1603 Instrumentation and Methods for Astrophysics +1312.1604 Classical Analysis and ODEs +1312.1606 Dynamical Systems +1312.1607 General Physics +1312.1608 Category Theory +1312.1611 Information Retrieval +1312.1613 Machine Learning +1312.1617 Dynamical Systems +1312.1622 Methodology +1312.1626 Accelerator Physics +1312.1627 Phenomenology +1312.1629 Cryptography and Security +1312.1630 Mesoscale and Nanoscale Physics +1312.1632 Neurons and Cognition +1312.1633 Phenomenology +1312.1635 Chemical Physics +1312.1636 Analysis of PDEs +1312.1643 Astrophysics of Galaxies +1312.1646 Mesoscale and Nanoscale Physics +1312.1647 Statistical Mechanics +1312.1652 Analysis of PDEs +1312.1653 Statistics Theory +1312.1654 Group Theory +1312.1656 Probability +1312.1662 Soft Condensed Matter +1312.1663 Rings and Algebras +1312.1668 Analysis of PDEs +1312.1670 Applications +1312.1679 Optics +astro-ph/0408038 +astro-ph/0408050 +gr-qc/0601064 +quant-ph/0502031 +0709.0189 Materials Science +0801.0761 +0805.1254 Theory +0812.0290 Superconductivity +0901.1801 +0902.4558 Differential Geometry +0909.4087 Mesoscale and Nanoscale Physics +1005.2607 Theory +1006.3507 Materials Science +1006.3785 Algebraic Geometry +1007.2371 Numerical Analysis +1007.3837 Theory +1007.4849 Mesoscale and Nanoscale Physics +1008.0022 Disordered Systems and Neural Networks +1009.5487 Differential Geometry +1011.4047 +1101.4887 Probability +1102.0422 Quantum Algebra +1102.1561 Data Analysis, Statistics and Probability +1102.4031 Algebraic Geometry +1103.3738 Computation +1105.0772 High Energy Astrophysical Phenomena +1107.0940 Programming Languages +1107.3388 +1108.4221 Theory +1108.5563 Representation Theory +1109.1153 Analysis of PDEs +1109.2078 +1109.2111 Spectral Theory +1109.5681 Genomics +1109.5861 Lattice +1110.2585 Probability +1110.3156 Probability +1110.5228 +1111.2696 +1111.3121 +1112.3051 Lattice +1112.3978 Lattice +1112.4027 Portfolio Management +1201.0419 Theory +1201.4909 General Topology +1201.5218 Optics +1203.0974 Analysis of PDEs +1203.2592 Representation Theory +1203.2605 Mesoscale and Nanoscale Physics +1203.3209 Methodology +1203.4004 Probability +1204.1063 +1204.1741 Dynamical Systems +1204.3331 Methodology +1204.3861 Disordered Systems and Neural Networks +1204.4923 Phenomenology +1205.1422 Superconductivity +1205.2137 Probability +1205.3832 Physics and Society +1205.3890 Algebraic Geometry +1205.4172 Probability +1205.4464 Group Theory +1205.5210 Analysis of PDEs +1205.6631 Probability +1206.0435 Differential Geometry +1206.0898 Geometric Topology +1206.1522 Distributed, Parallel, and Cluster Computing +1206.1975 Functional Analysis +1206.6189 Algebraic Geometry +1207.0711 General Physics +1207.1263 Phenomenology +1207.2221 Superconductivity +1207.3506 Networking and Internet Architecture +1207.5200 Data Structures and Algorithms +1207.5350 +1207.6039 +1207.6599 Mesoscale and Nanoscale Physics +1208.1333 Functional Analysis +1209.0084 Commutative Algebra +1209.0483 Analysis of PDEs +1209.1112 Adaptation and Self-Organizing Systems +1209.2801 Data Analysis, Statistics and Probability +1209.4542 +1209.6159 Probability +1210.0536 Astrophysics of Galaxies +1210.2380 Computer Vision and Pattern Recognition +1210.2780 +1210.4936 Phenomenology +1210.5271 Theory +1210.6253 Mesoscale and Nanoscale Physics +1210.7460 Algebraic Geometry +1210.8095 Phenomenology +1211.0211 Analysis of PDEs +1211.1175 Physics and Society +1211.1697 Optics +1211.1920 +1211.2460 +1211.6048 Functional Analysis +1211.6510 Numerical Analysis +1211.6989 Mathematical Software +1211.7027 Earth and Planetary Astrophysics +1212.0660 Number Theory +1212.1422 Analysis of PDEs +1212.1626 Differential Geometry +1212.4514 Dynamical Systems +1212.5411 Representation Theory +1212.6197 Theory +1212.6918 Theory +1301.0215 Optimization and Control +1301.0387 Information Theory +1301.0756 High Energy Astrophysical Phenomena +1301.0912 Statistical Mechanics +1301.0940 Theory +1301.1226 Algebraic Geometry +1301.1504 +1301.1684 Cosmology and Nongalactic Astrophysics +1301.1724 +1301.1949 +1301.2228 Optics +1301.2952 Physics and Society +1301.3471 Computational Geometry +1301.3717 Phenomenology +1301.4728 Optimization and Control +1301.4830 Functional Analysis +1301.5106 Theory +1301.6971 Lattice +1302.1314 Numerical Analysis +1302.1464 Algebraic Geometry +1302.3802 +1302.4057 +1302.4747 Quantum Gases +1302.5961 Fluid Dynamics +1303.0220 Mesoscale and Nanoscale Physics +1303.0428 Phenomenology +1303.1295 Instrumentation and Methods for Astrophysics +1303.2083 Representation Theory +1303.2130 Learning +1303.3140 Mesoscale and Nanoscale Physics +1303.4226 Cosmology and Nongalactic Astrophysics +1303.4916 Computational Physics +1303.4980 Optics +1303.7078 Optics +1303.7154 +1304.0146 Optimization and Control +1304.0553 Information Theory +1304.1377 Probability +1304.1992 Phenomenology +1304.3569 Statistical Mechanics +1304.6676 +1304.6744 Probability +1304.7371 Superconductivity +1304.8004 Phenomenology +1305.0122 Exactly Solvable and Integrable Systems +1305.1186 High Energy Astrophysical Phenomena +1305.1345 Probability +1305.2910 Superconductivity +1305.4197 +1305.4470 Phenomenology +1305.4651 Information Theory +1305.5871 Mesoscale and Nanoscale Physics +1305.6670 Optics +1305.6678 +1305.6868 Pricing of Securities +1305.7289 +1306.0012 Theory +1306.0078 Solar and Stellar Astrophysics +1306.0774 High Energy Astrophysical Phenomena +1306.1459 Quantum Algebra +1306.1781 Applications +1306.2046 Classical Analysis and ODEs +1306.2173 Strongly Correlated Electrons +1306.2242 +1306.2423 Functional Analysis +1306.2438 Numerical Analysis +1306.2439 Numerical Analysis +1306.2540 Combinatorics +1306.2612 Group Theory +1306.4191 +1306.4984 Cosmology and Nongalactic Astrophysics +1306.5317 Representation Theory +1306.6168 Discrete Mathematics +1306.6435 Statistical Mechanics +1306.6551 Statistical Mechanics +1306.6558 Mesoscale and Nanoscale Physics +1306.6724 +1306.6735 Information Theory +1307.0248 +1307.0532 +1307.0622 Analysis of PDEs +1307.0808 Theory +1307.1477 Phenomenology +1307.2884 Mesoscale and Nanoscale Physics +1307.2981 +1307.2987 Optimization and Control +1307.3541 +1307.4878 Superconductivity +1307.5148 Plasma Physics +1307.5670 Mesoscale and Nanoscale Physics +1307.6178 Phenomenology +1307.6203 Materials Science +1307.6675 Mesoscale and Nanoscale Physics +1307.6860 Strongly Correlated Electrons +1307.6933 Astrophysics of Galaxies +1307.7226 Information Theory +1308.0634 Pattern Formation and Solitons +1308.0673 Theory +1308.1163 Theory +1308.1302 Experiment +1308.2851 Metric Geometry +1308.3295 +1308.3376 Solar and Stellar Astrophysics +1308.5254 Genomics +1308.5362 Optics +1308.5375 Phenomenology +1308.5853 Logic +1308.6004 Cell Behavior +1308.6110 High Energy Astrophysical Phenomena +1308.6269 Strongly Correlated Electrons +1309.0366 Mesoscale and Nanoscale Physics +1309.0833 Populations and Evolution +1309.1647 Pricing of Securities +1309.1748 General Topology +1309.1878 Biological Physics +1309.2018 Systems and Control +1309.2816 Disordered Systems and Neural Networks +1309.4631 Logic +1309.5588 Combinatorics +1309.5752 Populations and Evolution +1309.7290 Operator Algebras +1310.0147 Experiment +1310.0197 +1310.0928 Experiment +1310.0954 Phenomenology +1310.1000 Instrumentation and Detectors +1310.1949 Learning +1310.2119 Experiment +1310.2302 +1310.3395 Number Theory +1310.3447 Computer Vision and Pattern Recognition +1310.3455 Phenomenology +1310.4293 Materials Science +1310.4611 Probability +1310.4695 +1310.4771 +1310.4875 Classical Physics +1310.4954 Databases +1310.4989 Software Engineering +1310.5133 Logic +1310.5141 Probability +1310.5142 Computers and Society +1310.5155 Functional Analysis +1310.5156 Numerical Analysis +1310.5159 Phenomenology +1310.5161 Probability +1310.5169 Statistics Theory +1310.5175 Probability +1310.5178 Analysis of PDEs +1310.5183 Instrumentation and Methods for Astrophysics +1310.5184 Mesoscale and Nanoscale Physics +1310.5187 Information Theory +1310.5189 Phenomenology +1310.5193 Geometric Topology +1310.5195 Algebraic Geometry +1310.5196 Fluid Dynamics +1310.5197 +1310.5198 Number Theory +1310.5203 Group Theory +1310.5205 Physics and Society +1310.5213 Algebraic Geometry +1310.5214 Materials Science +1310.5215 Analysis of PDEs +1310.5216 Materials Science +1310.5219 Geometric Topology +1310.5220 Software Engineering +1310.5221 Software Engineering +1310.5222 Software Engineering +1310.5225 Information Theory +1310.5227 Methodology +1310.5228 Materials Science +1310.5229 +1310.5230 Information Theory +1310.5232 Chaotic Dynamics +1310.5236 Algebraic Geometry +1310.5237 Populations and Evolution +1310.5239 Mesoscale and Nanoscale Physics +1310.5240 Combinatorics +1310.5241 Group Theory +1310.5244 Classical Analysis and ODEs +1310.5249 Learning +1310.5250 Number Theory +1310.5252 Classical Physics +1310.5254 Databases +1310.5255 Distributed, Parallel, and Cluster Computing +1310.5260 Probability +1310.5261 Group Theory +1310.5262 Probability +1310.5266 Solar and Stellar Astrophysics +1310.5267 Analysis of PDEs +1310.5269 Mesoscale and Nanoscale Physics +1310.5271 Atmospheric and Oceanic Physics +1310.5274 Classical Analysis and ODEs +1310.5285 Phenomenology +1310.5286 +1310.5289 Analysis of PDEs +1310.5292 Combinatorics +1310.5293 Strongly Correlated Electrons +1310.5294 Combinatorics +1310.5295 Algebraic Geometry +1310.5301 Lattice +1310.5303 Commutative Algebra +1310.5305 Atmospheric and Oceanic Physics +1310.5308 +1310.5309 +1310.5313 Combinatorics +1310.5316 Instrumentation and Methods for Astrophysics +1310.5327 Experiment +1310.5332 High Energy Astrophysical Phenomena +1310.5339 +1310.5341 Materials Science +1310.5345 Classical Analysis and ODEs +1310.5346 Number Theory +1310.5347 Machine Learning +1310.5348 +1310.5351 Dynamical Systems +1310.5352 Numerical Analysis +1310.5354 Disordered Systems and Neural Networks +1310.5357 Category Theory +1310.5364 Dynamical Systems +1310.5366 Chemical Physics +1310.5367 Discrete Mathematics +1310.5368 Experiment +1310.5369 Solar and Stellar Astrophysics +1310.5376 Information Theory +1310.5379 Statistical Mechanics +1310.5382 High Energy Astrophysical Phenomena +1310.5383 Algebraic Topology +1310.5384 Analysis of PDEs +1310.5386 Mesoscale and Nanoscale Physics +1310.5389 Accelerator Physics +1310.5392 Optics +1310.5393 Learning +1310.5397 Earth and Planetary Astrophysics +1310.5398 Soft Condensed Matter +1310.5406 Rings and Algebras +1310.5407 Distributed, Parallel, and Cluster Computing +1310.5413 Populations and Evolution +1310.5423 Rings and Algebras +1310.5428 Probability +1310.5430 Social and Information Networks +1310.5431 +1310.5435 Optics +1310.5436 Differential Geometry +1310.5443 Optics +1310.5444 Analysis of PDEs +1310.5445 Materials Science +1310.5446 Networking and Internet Architecture +1310.5447 Cosmology and Nongalactic Astrophysics +1310.5448 Probability +1310.5451 Probability +1310.5452 +1310.5455 Rings and Algebras +1310.5466 Populations and Evolution +1310.5468 Information Theory +1310.5469 Data Structures and Algorithms +1310.5472 Computers and Society +1310.5473 +1310.5474 Computers and Society +1310.5478 Other Computer Science +1310.5479 Information Theory +1310.5484 Group Theory +1310.5487 Combinatorics +1310.5488 Instrumentation and Methods for Astrophysics +1310.5493 Discrete Mathematics +1310.5497 Other Computer Science +1310.5500 +1310.5504 Combinatorics +1310.5506 Analysis of PDEs +1310.5509 Group Theory +1310.5511 Fluid Dynamics +1310.5512 Group Theory +1310.5513 Lattice +1310.5516 Combinatorics +1310.5522 High Energy Astrophysical Phenomena +1310.5523 Statistics Theory +1310.5528 Accelerator Physics +1310.5532 +1310.5536 Theory +1310.5538 Programming Languages +1310.5539 Combinatorics +1310.5544 Differential Geometry +1310.5547 Materials Science +1310.5551 Symbolic Computation +1310.5556 Statistical Mechanics +1310.5557 Networking and Internet Architecture +1310.5560 Statistics Theory +1310.5561 Algebraic Geometry +1310.5564 Other Computer Science +1310.5565 Mesoscale and Nanoscale Physics +1310.5567 Combinatorics +1310.5568 Computational Engineering, Finance, and Science +1310.5573 Numerical Analysis +1310.5574 Probability +1310.5576 Computational Complexity +1310.5577 Phenomenology +1310.5583 Instrumentation and Detectors +1310.5590 Logic +1310.5595 Operator Algebras +1310.5599 History and Overview +1310.5603 Distributed, Parallel, and Cluster Computing +1310.5609 Operator Algebras +1310.5610 Classical Analysis and ODEs +1310.5611 History and Overview +1310.5612 General Mathematics +1310.5615 Fluid Dynamics +1310.5618 Complex Variables +1310.5619 Computer Vision and Pattern Recognition +1310.5625 Fluid Dynamics +1310.5632 Number Theory +1310.5636 Analysis of PDEs +1310.5647 Computational Geometry +1310.5648 Algebraic Geometry +1310.5649 Algebraic Geometry +1310.5653 Multimedia +1310.5655 Analysis of PDEs +1310.5658 Soft Condensed Matter +1310.5660 Computer Science and Game Theory +1310.5664 +1310.5666 Machine Learning +1310.5671 Complex Variables +1310.5675 Probability +1310.5677 Methodology +1310.5678 Mesoscale and Nanoscale Physics +1310.5679 Differential Geometry +1310.5687 Astrophysics of Galaxies +1310.5688 Other Condensed Matter +cond-mat/0607410 Mesoscale and Nanoscale Physics +math/0208153 Geometric Topology +math/9201243 Logic +nucl-th/0502070 +0710.5239 +0807.4794 Mesoscale and Nanoscale Physics +0809.2773 Classical Analysis and ODEs +0901.4891 Complex Variables +0906.1315 Experiment +1001.2986 Classical Analysis and ODEs +1001.4272 Symplectic Geometry +1006.4898 Number Theory +1011.2592 Statistics Theory +1012.6038 +1102.0369 Methodology +1103.5069 Analysis of PDEs +1105.5876 Geometric Topology +1106.0215 Mesoscale and Nanoscale Physics +1106.2611 Theory +1106.4204 Instrumentation and Detectors +1106.4785 +1108.2098 +1108.4546 Spectral Theory +1108.5851 Space Physics +1109.2883 Category Theory +1109.6732 +1110.5876 +1110.5991 Atomic Physics +1111.2200 Materials Science +1111.2297 +1111.2710 Statistical Mechanics +1111.5534 Physics and Society +1111.6498 Soft Condensed Matter +1111.6570 Functional Analysis +1111.6724 Mesoscale and Nanoscale Physics +1112.2429 Soft Condensed Matter +1112.2517 Fluid Dynamics +1112.2669 Phenomenology +1112.2909 Quantum Algebra +1112.4471 Optics +1201.1589 Social and Information Networks +1201.2922 Algebraic Geometry +1201.4489 Soft Condensed Matter +1202.2048 Experiment +1202.3298 Materials Science +1202.6096 +1202.6664 Algebraic Geometry +1203.2250 General Finance +1204.0248 Combinatorics +1204.0955 Atomic Physics +1204.1841 Operator Algebras +1205.1095 Operator Algebras +1205.3017 Superconductivity +1205.3576 Software Engineering +1205.6189 Quantum Gases +1206.0757 Mesoscale and Nanoscale Physics +1206.1562 +1206.3973 Mesoscale and Nanoscale Physics +1206.6063 Phenomenology +1206.6773 +1206.6906 Mesoscale and Nanoscale Physics +1207.3730 Phenomenology +1207.4828 Strongly Correlated Electrons +1207.5034 Cosmology and Nongalactic Astrophysics +1207.5115 Probability +1207.6660 Mesoscale and Nanoscale Physics +1207.7289 Mesoscale and Nanoscale Physics +1208.0609 +1208.1368 Logic in Computer Science +1208.1508 Solar and Stellar Astrophysics +1208.1971 Probability +1208.2281 Strongly Correlated Electrons +1208.3034 +1208.5083 Data Structures and Algorithms +1208.5747 Superconductivity +1208.6317 Quantum Gases +1209.0020 Statistical Mechanics +1209.0163 Soft Condensed Matter +1209.0362 +1209.3154 Earth and Planetary Astrophysics +1209.3448 Materials Science +1209.4940 Mesoscale and Nanoscale Physics +1210.0388 Lattice +1210.0433 +1210.1389 Probability +1210.2607 Statistical Mechanics +1210.3402 +1210.4827 Earth and Planetary Astrophysics +1210.5575 Numerical Analysis +1210.5661 Statistical Mechanics +1210.5673 Probability +1210.7008 Strongly Correlated Electrons +1210.7196 Statistical Mechanics +1210.7846 Materials Science +1210.7983 Statistical Mechanics +1210.8068 Number Theory +1210.8324 Mesoscale and Nanoscale Physics +1211.1627 Statistical Mechanics +1211.3153 Phenomenology +1211.4118 +1211.5028 Cosmology and Nongalactic Astrophysics +1211.5083 +1211.5340 Statistical Mechanics +1211.6260 Fluid Dynamics +1211.6554 +1211.6676 Mesoscale and Nanoscale Physics +1212.0411 Phenomenology +1212.0612 Phenomenology +1212.0701 Cosmology and Nongalactic Astrophysics +1212.1253 +1212.2419 Theory +1212.2816 Instrumentation and Methods for Astrophysics +1212.6143 Theory +1212.6496 Strongly Correlated Electrons +1301.0801 Digital Libraries +1301.0946 Theory +1301.1714 Computational Engineering, Finance, and Science +1301.1872 Analysis of PDEs +1301.4888 Number Theory +1301.6375 Populations and Evolution +1301.6379 Differential Geometry +1301.6449 Information Theory +1301.6851 Dynamical Systems +1301.6963 Cryptography and Security +1301.7358 Artificial Intelligence +1301.7359 Artificial Intelligence +1301.7360 Artificial Intelligence +1301.7362 Artificial Intelligence +1301.7363 Information Retrieval +1301.7364 Information Retrieval +1301.7365 Artificial Intelligence +1301.7366 Artificial Intelligence +1301.7367 Artificial Intelligence +1301.7368 Artificial Intelligence +1301.7369 Artificial Intelligence +1301.7370 Artificial Intelligence +1301.7371 Artificial Intelligence +1301.7372 Artificial Intelligence +1301.7373 Learning +1301.7374 Artificial Intelligence +1301.7375 Learning +1301.7376 Learning +1301.7377 Artificial Intelligence +1301.7378 Learning +1301.7379 Artificial Intelligence +1301.7380 Artificial Intelligence +1301.7381 Artificial Intelligence +1301.7383 Artificial Intelligence +1301.7384 Artificial Intelligence +1301.7385 Artificial Intelligence +1301.7386 Artificial Intelligence +1301.7387 Artificial Intelligence +1301.7388 Computer Science and Game Theory +1301.7389 Artificial Intelligence +1301.7390 Learning +1301.7391 Artificial Intelligence +1301.7392 Learning +1301.7393 Learning +1301.7394 Artificial Intelligence +1301.7395 Artificial Intelligence +1301.7396 Artificial Intelligence +1301.7397 Artificial Intelligence +1301.7398 Artificial Intelligence +1301.7399 Artificial Intelligence +1301.7400 Applications +1301.7402 Artificial Intelligence +1301.7403 Artificial Intelligence +1301.7404 Artificial Intelligence +1301.7405 Artificial Intelligence +1301.7406 Artificial Intelligence +1301.7407 Artificial Intelligence +1301.7408 Artificial Intelligence +1301.7409 Artificial Intelligence +1301.7410 Artificial Intelligence +1301.7411 Learning +1301.7412 Artificial Intelligence +1301.7413 Portfolio Management +1301.7414 Artificial Intelligence +1301.7416 Artificial Intelligence +1301.7417 Artificial Intelligence +1301.7418 Artificial Intelligence +1301.7423 +1301.7425 Astrophysics of Galaxies +1301.7430 Mesoscale and Nanoscale Physics +1301.7436 Lattice +1301.7439 Accelerator Physics +1301.7442 Accelerator Physics +1301.7443 Digital Libraries +1301.7445 Analysis of PDEs +1301.7446 Accelerator Physics +1301.7448 Soft Condensed Matter +1301.7450 Probability +1301.7455 Social and Information Networks +1301.7458 Accelerator Physics +1301.7460 Accelerator Physics +1301.7461 Mesoscale and Nanoscale Physics +1301.7462 Logic in Computer Science +1301.7466 +1301.7468 Analysis of PDEs +1301.7474 Number Theory +1301.7477 Superconductivity +1301.7478 Theory +1301.7482 Robotics +1301.7484 Functional Analysis +1301.7485 +1301.7491 Information Theory +1301.7496 Networking and Internet Architecture +1301.7501 Cosmology and Nongalactic Astrophysics +1301.7509 History and Philosophy of Physics +1301.7516 +1301.7517 Networking and Internet Architecture +1301.7520 Number Theory +1301.7530 Numerical Analysis +1301.7531 Logic in Computer Science +1301.7533 Logic in Computer Science +1301.7534 Software Engineering +1301.7539 +1301.7540 General Physics +1301.7541 +1301.7544 Combinatorics +1301.7550 Experiment +1301.7554 Theory +1301.7556 Dynamical Systems +1301.7557 Lattice +1301.7559 Materials Science +1301.7560 +1301.7564 Information Theory +1301.7565 Combinatorics +1301.7567 Statistics Theory +1301.7570 Numerical Analysis +1301.7571 Biological Physics +1301.7572 Experiment +1301.7574 High Energy Astrophysical Phenomena +1301.7576 Chemical Physics +1301.7587 +1301.7589 Algebraic Geometry +1301.7596 +1301.7598 Astrophysics of Galaxies +1301.7603 Quantum Algebra +1301.7606 Probability +1301.7610 +1301.7621 Accelerator Physics +1301.7622 Rings and Algebras +1301.7624 Metric Geometry +1301.7625 Statistics Theory +1301.7626 Phenomenology +1301.7628 Applications +1301.7632 Algebraic Geometry +1301.7633 Algebraic Geometry +1301.7637 Combinatorics +1301.7642 Geophysics +1301.7645 Phenomenology +1301.7649 Spectral Theory +1301.7656 History and Philosophy of Physics +1301.7661 Computer Vision and Pattern Recognition +1301.7662 Number Theory +1301.7663 Number Theory +1301.7665 Rings and Algebras +1301.7667 Superconductivity +1301.7669 Programming Languages +1301.7673 Programming Languages +1301.7674 High Energy Astrophysical Phenomena +1301.7676 Artificial Intelligence +1301.7679 Accelerator Physics +1301.7680 Programming Languages +1301.7684 Accelerator Physics +1301.7688 +1301.7689 Geometric Topology +1301.7690 Programming Languages +1301.7694 Programming Languages +1301.7695 Operator Algebras +1301.7696 +1301.7698 Accelerator Physics +1301.7702 Programming Languages +1301.7714 Combinatorics +1301.7715 Statistical Mechanics +1301.7716 Materials Science +1301.7718 Number Theory +1301.7720 Applications +1301.7723 Experiment +1301.7725 Algebraic Geometry +1301.7726 +1301.7731 Accelerator Physics +1301.7733 Materials Science +1301.7734 Biomolecules +1301.7735 Accelerator Physics +1301.7740 Probability +1301.7742 +cond-mat/0105156 Mesoscale and Nanoscale Physics +cond-mat/0606740 Disordered Systems and Neural Networks +0704.1418 Dynamical Systems +0711.2666 Information Theory +0804.1053 +0806.4680 Phenomenology +0807.2367 Dynamical Systems +0811.2268 Superconductivity +0905.0045 Differential Geometry +0907.0607 Algebraic Geometry +0912.0594 +1001.4773 Dynamical Systems +1003.0951 Distributed, Parallel, and Cluster Computing +1003.1487 Algebraic Geometry +1004.5267 High Energy Astrophysical Phenomena +1005.2800 Group Theory +1007.4167 +1008.0153 Populations and Evolution +1008.4646 High Energy Astrophysical Phenomena +1009.3173 Analysis of PDEs +1009.6161 +1010.0343 Group Theory +1101.0278 Algebraic Geometry +1101.0776 Neural and Evolutionary Computing +1101.2380 Analysis of PDEs +1102.3739 Molecular Networks +1102.4507 Differential Geometry +1103.2058 Probability +1103.2207 Number Theory +1103.2859 Analysis of PDEs +1104.2585 +1104.5459 Phenomenology +1105.2735 Classical Analysis and ODEs +1107.2656 Cosmology and Nongalactic Astrophysics +1107.4073 Combinatorics +1107.4169 Combinatorics +1108.0206 Algebraic Geometry +1108.0654 Populations and Evolution +1108.1278 Biological Physics +1108.2974 Dynamical Systems +1109.1509 Superconductivity +1110.0751 Physics and Society +1110.0841 Materials Science +1110.2819 High Energy Astrophysical Phenomena +1111.5430 Mesoscale and Nanoscale Physics +1112.3647 Phenomenology +1201.1392 Quantum Algebra +1201.1886 Superconductivity +1201.1999 Dynamical Systems +1201.5578 Molecular Networks +1202.0251 Complex Variables +1202.0341 Superconductivity +1202.4378 Populations and Evolution +1203.1435 +1204.0080 Phenomenology +1204.0891 +1204.2171 +1204.5203 Dynamical Systems +1204.6247 Other Quantitative Biology +1204.6463 Materials Science +1205.3963 Experiment +1205.4367 +1206.2485 Probability +1206.2858 Statistical Mechanics +1206.3802 Mesoscale and Nanoscale Physics +1206.6280 +1206.6937 +1207.0325 Dynamical Systems +1207.0773 Data Structures and Algorithms +1207.2289 Number Theory +1207.3332 Phenomenology +1207.4947 Algebraic Topology +1207.6018 Dynamical Systems +1207.7288 Superconductivity +1208.1604 Biomolecules +1208.2300 +1208.3761 Representation Theory +1209.3142 Cosmology and Nongalactic Astrophysics +1209.3490 +1209.4555 Soft Condensed Matter +1209.4698 +1210.0280 Materials Science +1210.0805 Machine Learning +1210.1602 Materials Science +1210.4027 Cosmology and Nongalactic Astrophysics +1210.4380 Statistical Mechanics +1210.4515 +1210.6623 Phenomenology +1210.6680 +1210.7439 History and Philosophy of Physics +1210.8236 Optics +1211.0261 +1211.1399 +1211.2270 Quantum Gases +1211.5447 +1211.6172 Atomic Physics +1211.6431 Cosmology and Nongalactic Astrophysics +1211.6432 Solar and Stellar Astrophysics +1212.1340 Information Theory +1212.1600 Statistical Mechanics +1212.3319 Materials Science +1212.3659 +1212.3849 Computational Complexity +1212.6294 Soft Condensed Matter +1212.6464 Mesoscale and Nanoscale Physics +1212.6758 Experiment +1301.0158 Symplectic Geometry +1301.0379 Computational Complexity +1301.0931 Optimization and Control +1301.1167 Phenomenology +1301.2945 Analysis of PDEs +1301.3162 Superconductivity +1301.3548 Experiment +1301.3699 History and Overview +1301.3832 Artificial Intelligence +1301.3833 Learning +1301.3834 Artificial Intelligence +1301.3835 Artificial Intelligence +1301.3836 Artificial Intelligence +1301.3837 Learning +1301.3838 Learning +1301.3839 Artificial Intelligence +1301.3840 Artificial Intelligence +1301.3841 Artificial Intelligence +1301.3842 Artificial Intelligence +1301.3843 Learning +1301.3844 Artificial Intelligence +1301.3845 Artificial Intelligence +1301.3846 Artificial Intelligence +1301.3847 Artificial Intelligence +1301.3848 Artificial Intelligence +1301.3849 Learning +1301.3850 Learning +1301.3851 Learning +1301.3852 Learning +1301.3853 Learning +1301.3854 Computer Vision and Pattern Recognition +1301.3855 Artificial Intelligence +1301.3856 Learning +1301.3857 Artificial Intelligence +1301.3858 Artificial Intelligence +1301.3859 Artificial Intelligence +1301.3860 Artificial Intelligence +1301.3861 Artificial Intelligence +1301.3862 Artificial Intelligence +1301.3863 Artificial Intelligence +1301.3864 Artificial Intelligence +1301.3865 Learning +1301.3866 Artificial Intelligence +1301.3867 Computer Science and Game Theory +1301.3868 Artificial Intelligence +1301.3869 Artificial Intelligence +1301.3870 Computer Science and Game Theory +1301.3871 Artificial Intelligence +1301.3872 Artificial Intelligence +1301.3873 Artificial Intelligence +1301.3874 Artificial Intelligence +1301.3875 Learning +1301.3876 Artificial Intelligence +1301.3877 Learning +1301.3878 Artificial Intelligence +1301.3879 Artificial Intelligence +1301.3880 Artificial Intelligence +1301.3881 Artificial Intelligence +1301.3882 Artificial Intelligence +1301.3883 Artificial Intelligence +1301.3884 Artificial Intelligence +1301.3885 Information Retrieval +1301.3886 Computer Science and Game Theory +1301.3887 Artificial Intelligence +1301.3888 Artificial Intelligence +1301.3889 Artificial Intelligence +1301.3890 Learning +1301.3891 Learning +1301.3892 Computer Science and Game Theory +1301.3893 Artificial Intelligence +1301.3894 Artificial Intelligence +1301.3895 Learning +1301.3896 Learning +1301.3897 Artificial Intelligence +1301.3898 Artificial Intelligence +1301.3899 Learning +1301.3900 Artificial Intelligence +1301.3901 Learning +1301.3902 Artificial Intelligence +1301.3903 Artificial Intelligence +1301.3904 Analysis of PDEs +1301.3911 Astrophysics of Galaxies +1301.3921 Materials Science +1301.3926 Instrumentation and Methods for Astrophysics +1301.3928 Computation +1301.3932 Superconductivity +1301.3936 Pattern Formation and Solitons +1301.3944 Pattern Formation and Solitons +1301.3947 Methodology +1301.3948 Differential Geometry +1301.3949 Methodology +1301.3951 Pattern Formation and Solitons +1301.3953 Cosmology and Nongalactic Astrophysics +1301.3964 Computer Vision and Pattern Recognition +1301.3966 Learning +1301.3969 Strongly Correlated Electrons +1301.3970 Theory +1301.3971 Physics and Society +1301.3973 Plasma Physics +1301.3975 High Energy Astrophysical Phenomena +1301.3983 Representation Theory +1301.3985 Complex Variables +1301.3987 Combinatorics +1301.3988 Combinatorics +1301.3989 Combinatorics +1301.3991 Symbolic Computation +1301.3997 Networking and Internet Architecture +1301.3998 Algebraic Geometry +1301.3999 Networking and Internet Architecture +1301.4004 Phenomenology +1301.4008 Combinatorics +1301.4009 Theory +1301.4011 Phenomenology +1301.4012 Analysis of PDEs +1301.4016 Algebraic Geometry +1301.4017 Combinatorics +1301.4018 Materials Science +1301.4026 Strongly Correlated Electrons +1301.4028 Physics and Society +1301.4029 Group Theory +1301.4034 +1301.4035 Phenomenology +1301.4043 Strongly Correlated Electrons +1301.4044 Cosmology and Nongalactic Astrophysics +1301.4045 +1301.4047 Representation Theory +1301.4048 Materials Science +1301.4049 +1301.4050 Information Theory +1301.4051 Theory +1301.4052 Materials Science +1301.4053 Classical Analysis and ODEs +1301.4054 Materials Science +1301.4056 Materials Science +1301.4057 Phenomenology +1301.4061 Phenomenology +1301.4062 Materials Science +1301.4064 Materials Science +1301.4065 Differential Geometry +1301.4068 Materials Science +1301.4069 Materials Science +1301.4070 Materials Science +1301.4071 Analysis of PDEs +1301.4075 Exactly Solvable and Integrable Systems +1301.4077 Materials Science +1301.4086 Functional Analysis +1301.4087 Accelerator Physics +1301.4093 Group Theory +1301.4094 Lattice +1301.4096 Neural and Evolutionary Computing +1301.4097 High Energy Astrophysical Phenomena +1301.4101 Algebraic Geometry +1301.4104 Astrophysics of Galaxies +1301.4115 Optics +1301.4117 Information Theory +1301.4119 Quantum Gases +1301.4124 Instrumentation and Methods for Astrophysics +1301.4133 Experiment +1301.4136 Group Theory +1301.4141 Lattice +1301.4142 Mesoscale and Nanoscale Physics +1301.4152 Quantum Algebra +1301.4153 +1301.4157 Learning +1301.4158 Theory +1301.4162 Mesoscale and Nanoscale Physics +1301.4164 Materials Science +1301.4167 Methodology +1301.4171 Information Retrieval +1301.4174 Theory +1301.4175 Instrumentation and Methods for Astrophysics +1301.4178 +1301.4179 Cosmology and Nongalactic Astrophysics +1301.4184 Information Theory +1301.4185 Information Theory +1301.4193 Populations and Evolution +1301.4195 Numerical Analysis +1301.4198 +1301.4200 Databases +1301.4203 +1301.4204 Networking and Internet Architecture +1301.4208 Materials Science +1301.4209 Combinatorics +1301.4211 Data Analysis, Statistics and Probability +astro-ph/0503443 +cs/0702018 Information Theory +physics/0606055 Optics +0810.3589 Phenomenology +0811.3283 Quantitative Methods +0903.4976 +0904.1347 Metric Geometry +0908.1545 History and Philosophy of Physics +0910.4653 Analysis of PDEs +0912.2591 Logic +1001.0388 Algebraic Geometry +1003.1436 Instrumentation and Methods for Astrophysics +1003.1643 Phenomenology +1004.3874 Cosmology and Nongalactic Astrophysics +1005.0471 Combinatorics +1005.1588 Numerical Analysis +1005.5338 Phenomenology +1010.2992 Information Theory +1012.1125 +1012.3610 Number Theory +1103.2924 General Topology +1103.4404 Differential Geometry +1105.0714 Category Theory +1105.5153 Number Theory +1106.6029 Solar and Stellar Astrophysics +1108.2967 Complex Variables +1108.3201 Probability +1108.5841 Algebraic Geometry +1109.0939 Differential Geometry +1109.1077 Machine Learning +1109.3732 Statistics Theory +1109.6411 Cosmology and Nongalactic Astrophysics +1110.3846 Analysis of PDEs +1110.5709 Numerical Analysis +1111.2483 Number Theory +1111.3869 Algebraic Geometry +1111.6894 Solar and Stellar Astrophysics +1112.2835 Solar and Stellar Astrophysics +1201.3327 Number Theory +1202.0067 Representation Theory +1202.6604 K-Theory and Homology +1203.0089 +1203.1364 +1203.1999 +1203.3961 Combinatorics +1204.0329 Metric Geometry +1204.1848 Logic in Computer Science +1204.1900 +1204.3840 +1205.2855 Soft Condensed Matter +1205.4415 Algebraic Geometry +1205.4719 Solar and Stellar Astrophysics +1206.1679 Number Theory +1206.2456 Number Theory +1206.2663 Number Theory +1206.4039 Algebraic Geometry +1206.6616 Phenomenology +1207.0844 Physics Education +1207.1078 Solar and Stellar Astrophysics +1207.1972 Algebraic Geometry +1207.3452 Cosmology and Nongalactic Astrophysics +1208.1718 Computer Science and Game Theory +1208.3918 +1208.5435 Optimization and Control +1209.5568 +1209.5821 Data Structures and Algorithms +1209.5929 Analysis of PDEs +1210.0104 Molecular Networks +1210.0953 Differential Geometry +1210.5477 Strongly Correlated Electrons +1210.6988 Astrophysics of Galaxies +1211.6767 Theory +1211.7134 +1212.0115 Metric Geometry +1212.2146 Commutative Algebra +1212.2418 +1212.2702 Optimization and Control +1212.3357 Logic in Computer Science +1212.3764 +1212.3993 Mesoscale and Nanoscale Physics +1212.5024 Information Theory +1212.5894 Quantum Gases +1301.0057 Number Theory +1301.1425 Computational Complexity +1301.2595 Solar and Stellar Astrophysics +1301.2801 +1301.3598 Networking and Internet Architecture +1301.4434 Cosmology and Nongalactic Astrophysics +1301.7609 +1302.0556 Differential Geometry +1302.2466 Optics +1302.2606 Neural and Evolutionary Computing +1302.2756 +1302.2902 Theory +1302.3130 Materials Science +1302.4499 +1302.6419 Lattice +1302.6548 Molecular Networks +1303.1127 +1303.1803 Theory +1303.5505 Combinatorics +1303.6646 Dynamical Systems +1303.6825 Computational Physics +1304.0052 Biomolecules +1304.0636 Popular Physics +1304.0652 Phenomenology +1304.1829 Combinatorics +1304.2161 Computer Science and Game Theory +1304.2389 Superconductivity +1304.4023 High Energy Astrophysical Phenomena +1304.4321 Information Theory +1304.5626 +1304.6347 +1304.6718 High Energy Astrophysical Phenomena +1304.6913 +1304.7758 High Energy Astrophysical Phenomena +1305.0197 Chaotic Dynamics +1305.0199 Accelerator Physics +1305.1365 Numerical Analysis +1305.2026 Applications +1305.3430 Differential Geometry +1305.3932 Social and Information Networks +1305.4440 +1305.4460 Functional Analysis +1305.4828 Phenomenology +1305.4902 +1305.4908 Optics +1305.5385 Probability +1306.0175 +1306.0237 Learning +1306.0807 +1306.1579 Theory +1306.2919 Lattice +1306.4021 Populations and Evolution +1306.4146 +1306.4305 Materials Science +1306.4601 Theory +1306.4645 +1306.4687 Quantum Gases +1306.4975 Statistical Finance +1306.6389 +1307.0219 Social and Information Networks +1307.0468 Social and Information Networks +1307.0516 Social and Information Networks +1307.0597 Biological Physics +1307.0609 Superconductivity +1307.1485 Quantum Gases +1307.1897 Metric Geometry +1307.2347 Data Structures and Algorithms +1307.2672 Information Theory +1307.3738 Statistical Mechanics +1307.3995 High Energy Astrophysical Phenomena +1307.4854 +1307.6536 Cosmology and Nongalactic Astrophysics +1307.6639 Cosmology and Nongalactic Astrophysics +1307.7206 Mesoscale and Nanoscale Physics +1307.7308 Superconductivity +1307.7935 Phenomenology +1307.7954 Theory +1307.8063 Lattice +1308.0570 Analysis of PDEs +1308.0750 Quantum Gases +1308.1766 Statistics Theory +1308.1813 Mesoscale and Nanoscale Physics +1308.1973 Theory +1308.2150 Quantitative Methods +1308.2168 +1308.2376 +1308.2686 Soft Condensed Matter +1308.3232 Cosmology and Nongalactic Astrophysics +1308.4395 Strongly Correlated Electrons +1308.4436 Superconductivity +1308.4622 Superconductivity +1308.4658 Theory +1308.5405 Medical Physics +1308.5457 Materials Science +1308.5789 +1309.0038 Combinatorics +1309.0363 Artificial Intelligence +1309.0520 Cosmology and Nongalactic Astrophysics +1309.0552 +1309.0613 +1309.1405 Materials Science +1309.1719 +1309.2038 Data Structures and Algorithms +1309.2478 Differential Geometry +1309.2863 Mesoscale and Nanoscale Physics +1309.2998 Number Theory +1309.3003 Phenomenology +1309.3682 Phenomenology +1309.3813 Materials Science +1309.4044 Symbolic Computation +1309.4136 Information Theory +1309.4217 Phenomenology +1309.4261 +1309.4417 +1309.4548 +1309.5483 Analysis of PDEs +1309.5584 Group Theory +1309.7326 Quantum Gases +1310.0267 +1310.0686 +1310.1770 Phenomenology +1310.2344 +1310.2370 Algebraic Geometry +1310.3193 Analysis of PDEs +1310.3884 Solar and Stellar Astrophysics +1310.4642 Representation Theory +1310.4883 Mesoscale and Nanoscale Physics +1310.5639 High Energy Astrophysical Phenomena +1310.6126 Commutative Algebra +1310.6973 Logic +1310.7821 +1310.8188 +1310.8428 Learning +1310.8655 +1311.0079 Lattice +1311.0484 Data Structures and Algorithms +1311.0745 History and Philosophy of Physics +1311.0805 Databases +1311.0970 Phenomenology +1311.1137 Theory +1311.1724 Phenomenology +1311.2147 Data Structures and Algorithms +1311.2210 Combinatorics +1311.2502 Dynamical Systems +1311.2661 Numerical Analysis +1311.2981 Probability +1311.3411 Experiment +1311.3472 Instrumentation and Methods for Astrophysics +1311.3811 Mesoscale and Nanoscale Physics +1311.3863 +1311.3978 +1311.3982 Artificial Intelligence +1311.3986 Plasma Physics +1311.3987 Computation and Language +1311.3988 Fluid Dynamics +1311.3989 Functional Analysis +1311.3992 Representation Theory +1311.3994 Materials Science +1311.3996 Geometric Topology +1311.3997 Populations and Evolution +1311.3998 Statistics Theory +1311.4000 Chemical Physics +1311.4003 Group Theory +1311.4005 Superconductivity +1311.4013 Physics and Society +1311.4015 Information Theory +1311.4016 Differential Geometry +1311.4018 Computational Physics +1311.4021 Data Structures and Algorithms +1311.4027 Materials Science +1311.4032 Analysis of PDEs +1311.4033 Computer Vision and Pattern Recognition +1311.4036 Networking and Internet Architecture +1311.4037 Cryptography and Security +1311.4040 Databases +1311.4046 Logic in Computer Science +1311.4050 Superconductivity +1311.4053 Logic +1311.4055 Data Structures and Algorithms +1311.4056 Artificial Intelligence +1311.4057 Portfolio Management +1311.4058 Probability +1311.4062 Group Theory +1311.4064 Artificial Intelligence +1311.4066 Commutative Algebra +1311.4067 Instrumentation and Methods for Astrophysics +1311.4068 Statistical Finance +1311.4069 High Energy Astrophysical Phenomena +1311.4074 Pricing of Securities +1311.4076 Experiment +1311.4077 High Energy Astrophysical Phenomena +1311.4078 Statistical Finance +1311.4083 Dynamical Systems +1311.4084 Instrumentation and Methods for Astrophysics +1311.4085 +1311.4086 Artificial Intelligence +1311.4087 Superconductivity +1311.4088 Databases +1311.4092 Classical Analysis and ODEs +1311.4101 Phenomenology +1311.4103 Medical Physics +1311.4105 Strongly Correlated Electrons +1311.4110 Theory +1311.4112 Distributed, Parallel, and Cluster Computing +1311.4116 Biological Physics +1311.4117 Computation +1311.4119 Dynamical Systems +1311.4121 Databases +1311.4122 +1311.4124 Optics +1311.4125 Atmospheric and Oceanic Physics +1311.4126 Physics and Society +1311.4127 Earth and Planetary Astrophysics +1311.4131 Representation Theory +1311.4133 Number Theory +1311.4137 Analysis of PDEs +1311.4142 Analysis of PDEs +1311.4143 Algebraic Geometry +1311.4150 Learning +1311.4151 Information Retrieval +1311.4153 Lattice +1311.4155 Lattice +1311.4159 Phenomenology +1311.4160 Trading and Market Microstructure +1311.4167 Emerging Technologies +1311.4168 Networking and Internet Architecture +1311.4174 Functional Analysis +1311.4178 Numerical Analysis +1311.4182 Differential Geometry +1311.4185 +1311.4188 Numerical Analysis +1311.4190 Tissues and Organs +1311.4191 Mesoscale and Nanoscale Physics +1311.4192 Lattice +1311.4194 Fluid Dynamics +1311.4196 Methodology +1311.4198 Programming Languages +1311.4201 Programming Languages +1311.4203 Geophysics +1311.4209 Dynamical Systems +1311.4216 Number Theory +1311.4223 Formal Languages and Automata Theory +1311.4226 +1311.4227 Multimedia +1311.4230 Statistical Finance +1311.4231 Programming Languages +1311.4235 Learning +1311.4238 Fluid Dynamics +1311.4239 Space Physics +1311.4248 Differential Geometry +1311.4250 Optics +1311.4252 Computational Physics +1311.4256 Algebraic Topology +1311.4257 Numerical Analysis +1311.4261 Dynamical Systems +1311.4266 Risk Management +1311.4271 Fluid Dynamics +1311.4275 History and Philosophy of Physics +1311.4281 Differential Geometry +1311.4288 Instrumentation and Methods for Astrophysics +1311.4289 Logic in Computer Science +1311.4290 Cell Behavior +1311.4293 Networking and Internet Architecture +1311.4296 Learning +1311.4301 +1311.4305 Distributed, Parallel, and Cluster Computing +1311.4306 Systems and Control +1311.4307 Lattice +1311.4308 Combinatorics +1311.4309 Combinatorics +1311.4314 Group Theory +1311.4316 Algebraic Geometry +1311.4318 Materials Science +1311.4319 Artificial Intelligence +1311.4324 Lattice +1311.4326 Optics +1311.4332 Rings and Algebras +1311.4333 Cosmology and Nongalactic Astrophysics +1311.4337 Astrophysics of Galaxies +1311.4344 Number Theory +1311.4347 Physics Education +1311.4349 Human-Computer Interaction +1311.4350 Optics +1311.4354 Lattice +1311.4355 Combinatorics +1311.4364 Analysis of PDEs +1311.4369 Systems and Control +1311.4372 Combinatorics +1311.4374 Operator Algebras +1311.4379 Strongly Correlated Electrons +1311.4384 Tissues and Organs +1311.4386 Lattice +1311.4387 Numerical Analysis +1311.4389 Computers and Society +1311.4393 Chemical Physics +1311.4394 Data Structures and Algorithms +1311.4396 Earth and Planetary Astrophysics +1311.4397 Plasma Physics +1311.4402 Optimization and Control +1311.4406 History and Philosophy of Physics +1311.4407 Physics and Society +1311.4409 Lattice +1311.4410 Phenomenology +1311.4411 Quantitative Methods +1311.4415 Optimization and Control +1311.4417 Lattice +1311.4419 Systems and Control +1311.4420 Information Retrieval +1311.4422 Mesoscale and Nanoscale Physics +1311.4424 Lattice +1311.4428 Probability +1311.4430 Statistical Mechanics +1311.4431 Information Theory +1311.4435 Analysis of PDEs +1311.4438 Algebraic Geometry +1311.4439 Information Theory +1311.4440 Lattice +1311.4442 Classical Analysis and ODEs +1311.4444 +1311.4448 Formal Languages and Automata Theory +1311.4450 Group Theory +1311.4452 +1311.4456 +1311.4458 Lattice +1311.4462 Lattice +1311.4463 Differential Geometry +1311.4471 Atomic and Molecular Clusters +1311.4473 Algebraic Geometry +1311.4474 +1311.4476 Combinatorics +1311.4477 Dynamical Systems +1311.4487 Theory +1311.4495 Analysis of PDEs +1311.4502 Combinatorics +1311.4503 Probability +1311.4504 Superconductivity +1311.4510 Probability +1311.4513 Operator Algebras +1311.4514 Molecular Networks +1311.4517 Optics +1311.4521 Lattice +1311.4522 Lattice +1311.4527 Artificial Intelligence +1311.4534 Plasma Physics +cond-mat/0306040 Materials Science +math/0110120 Algebraic Geometry +math/0203246 Algebraic Geometry +math/0301261 Algebraic Geometry +math/0401394 Algebraic Geometry +math/0412134 Algebraic Geometry +math/0506057 Algebraic Geometry +math/0607509 Geometric Topology +math/0609107 Algebraic Geometry +1308.4687 Databases +1308.4774 Software Engineering +0705.3763 Mesoscale and Nanoscale Physics +0710.1309 Mesoscale and Nanoscale Physics +0710.2723 Mesoscale and Nanoscale Physics +0801.2913 Representation Theory +0806.4889 Mesoscale and Nanoscale Physics +0811.4179 Computational Physics +0902.3971 Cosmology and Nongalactic Astrophysics +0903.2299 Learning +0906.2214 Optimization and Control +0907.0833 Cosmology and Nongalactic Astrophysics +0907.3408 +0907.4232 Cosmology and Nongalactic Astrophysics +0908.0881 Mesoscale and Nanoscale Physics +0910.1203 +0912.3937 Superconductivity +1001.0373 Strongly Correlated Electrons +1002.0521 Cosmology and Nongalactic Astrophysics +1002.0817 Mesoscale and Nanoscale Physics +1002.3570 Mesoscale and Nanoscale Physics +1003.0943 Combinatorics +1003.1082 +1005.0531 Algebraic Geometry +1006.5183 +1009.3728 Information Theory +1009.3936 Cosmology and Nongalactic Astrophysics +1009.5542 Mesoscale and Nanoscale Physics +1010.0123 Dynamical Systems +1011.4927 Algebraic Geometry +1101.0604 Mesoscale and Nanoscale Physics +1101.1749 Mesoscale and Nanoscale Physics +1102.1782 Information Theory +1102.1826 Numerical Analysis +1102.4403 +1102.5180 Combinatorics +1102.5367 Quantum Gases +1103.0241 Differential Geometry +1103.0935 Probability +1103.4825 Probability +1104.0969 +1104.1768 Group Theory +1104.5000 Differential Geometry +1105.2206 Differential Geometry +1105.2295 Cosmology and Nongalactic Astrophysics +1106.2462 Phenomenology +1106.3779 History and Overview +1106.5563 Soft Condensed Matter +1107.2649 Cosmology and Nongalactic Astrophysics +1108.4929 Cosmology and Nongalactic Astrophysics +1109.0884 Mesoscale and Nanoscale Physics +1110.4280 Mesoscale and Nanoscale Physics +1111.2600 Other Condensed Matter +1111.2867 +1111.5006 Cosmology and Nongalactic Astrophysics +1111.6001 Mesoscale and Nanoscale Physics +1111.6137 Theory +1111.6507 Theory +1201.3518 Symplectic Geometry +1201.6459 Information Theory +1202.0050 Analysis of PDEs +1203.0503 Networking and Internet Architecture +1203.6046 Theory +1204.0226 Optics +1204.1870 +1204.2600 Computational Physics +1204.4684 Instrumentation and Methods for Astrophysics +1204.4947 Solar and Stellar Astrophysics +1205.1967 +1205.3408 Superconductivity +1205.4318 Networking and Internet Architecture +1205.4853 Optimization and Control +1205.5991 Number Theory +1206.2847 Cryptography and Security +1206.5517 +1207.1817 Mesoscale and Nanoscale Physics +1207.2819 Formal Languages and Automata Theory +1207.2823 Quantum Algebra +1207.3897 Chemical Physics +1208.0899 Differential Geometry +1208.1766 Cosmology and Nongalactic Astrophysics +1208.2515 Information Theory +1208.4197 +1208.6434 +1209.1492 Functional Analysis +1209.1938 Superconductivity +1209.3206 Phenomenology +1209.3636 Phenomenology +1209.4243 Phenomenology +1209.5262 Mesoscale and Nanoscale Physics +1210.0158 +1210.2442 Differential Geometry +1210.3088 Statistical Mechanics +1210.4424 Soft Condensed Matter +1210.4650 Probability +1210.5040 Theory +1210.6744 +1211.1705 +1211.1974 High Energy Astrophysical Phenomena +1211.2729 Phenomenology +1211.2797 Cosmology and Nongalactic Astrophysics +1211.3648 Medical Physics +1211.4036 Analysis of PDEs +1211.5872 Disordered Systems and Neural Networks +1211.6239 Information Theory +1211.6571 Materials Science +1212.3237 +1212.3618 Artificial Intelligence +1212.4506 Materials Science +1212.4764 Theory +1212.4815 Statistical Mechanics +1212.5465 +1212.6083 Atomic Physics +1212.6504 Soft Condensed Matter +1212.6763 Differential Geometry +1301.0816 Cosmology and Nongalactic Astrophysics +1301.3990 Phenomenology +1301.4091 Theory +1301.4395 Superconductivity +1301.5695 Information Theory +1301.5815 Optimization and Control +1301.6478 Theory +1301.6622 Theory +1301.6903 Symplectic Geometry +1301.6907 Atomic Physics +1301.6941 Cosmology and Nongalactic Astrophysics +1302.0670 Theory +1302.0947 +1302.2869 Computer Science and Game Theory +1302.3654 Pricing of Securities +1302.4016 Data Structures and Algorithms +1302.4148 Analysis of PDEs +1302.4250 Plasma Physics +1302.4815 Statistics Theory +1302.5303 Algebraic Topology +1302.5873 +1303.1102 Cosmology and Nongalactic Astrophysics +1303.1546 Quantum Gases +1303.2141 +1303.2186 Spectral Theory +1303.2852 +1303.2961 Superconductivity +1303.3723 Phenomenology +1303.4055 +1303.4191 Distributed, Parallel, and Cluster Computing +1303.4601 Theory +1303.4698 +1303.6356 +1303.6505 Number Theory +1303.6580 +1303.6822 Superconductivity +1303.7047 +1304.0455 Cosmology and Nongalactic Astrophysics +1304.0790 Phenomenology +1304.0955 Materials Science +1304.2419 Accelerator Physics +1304.2428 Materials Science +1304.3298 Atomic Physics +1304.4131 Theory +1304.4612 Statistical Mechanics +1304.4883 Analysis of PDEs +1304.5041 Quantum Gases +1304.5088 Emerging Technologies +1304.6092 Phenomenology +1304.6714 Instrumentation and Detectors +1304.6902 +1304.7739 Strongly Correlated Electrons +1304.7939 Theory +1305.0555 Optics +1305.1817 Phenomenology +1305.2844 Phenomenology +1305.4308 Data Structures and Algorithms +1305.4932 Astrophysics of Galaxies +1305.5163 General Physics +1305.5566 Physics and Society +1306.0900 High Energy Astrophysical Phenomena +1306.1199 Mesoscale and Nanoscale Physics +1306.2260 Computational Geometry +1306.3590 Optimization and Control +1306.3603 Chemical Physics +1306.3920 Computation and Language +1306.3929 Phenomenology +1306.4520 Optimization and Control +1306.4555 Earth and Planetary Astrophysics +1306.4653 Learning +1306.4939 +1306.5182 Strongly Correlated Electrons +1306.5219 Information Theory +1306.5726 Logic in Computer Science +1306.5919 +1306.6145 Optimization and Control +1307.0084 Networking and Internet Architecture +1307.0220 Other Computer Science +1307.0811 Instrumentation and Detectors +1307.1254 Algebraic Geometry +1307.1370 Computers and Society +1307.1408 Robotics +1307.1597 Computational Engineering, Finance, and Science +1307.1698 Instrumentation and Detectors +1307.1709 Instrumentation and Methods for Astrophysics +1307.1715 +1307.1719 Software Engineering +1307.1722 Algebraic Topology +1307.1728 Data Structures and Algorithms +1307.1730 Networking and Internet Architecture +1307.1737 Dynamical Systems +1307.1738 Logic in Computer Science +1307.1743 Performance +1307.1746 Information Theory +1307.1748 Methodology +1307.1752 Strongly Correlated Electrons +1307.1756 Networking and Internet Architecture +1307.1763 Fluid Dynamics +1307.1767 Instrumentation and Methods for Astrophysics +1307.1768 Combinatorics +1307.1769 Machine Learning +1307.1772 Data Structures and Algorithms +1307.1774 Data Structures and Algorithms +1307.1777 Analysis of PDEs +1307.1783 Rings and Algebras +1307.1785 +1307.1786 Information Theory +1307.1787 +1307.1789 Analysis of PDEs +1307.1790 Artificial Intelligence +1307.1793 Number Theory +1307.1794 Dynamical Systems +1307.1795 +1307.1800 Number Theory +1307.1806 Operator Algebras +1307.1824 Cosmology and Nongalactic Astrophysics +1307.1825 Differential Geometry +1307.1828 Differential Geometry +1307.1830 Astrophysics of Galaxies +1307.1832 Solar and Stellar Astrophysics +1307.1833 Algebraic Geometry +1307.1834 Physics and Society +1307.1835 Materials Science +1307.1836 Pattern Formation and Solitons +1307.1840 Number Theory +1307.1842 Soft Condensed Matter +1307.1847 General Physics +1307.1851 General Physics +1307.1854 Number Theory +1307.1855 Quantum Gases +1307.1857 Probability +1307.1863 Combinatorics +1307.1870 Robotics +1307.1872 Computation and Language +1307.1874 Differential Geometry +1307.1875 Differential Geometry +1307.1876 Analysis of PDEs +1307.1877 Differential Geometry +1307.1879 Optimization and Control +1307.1881 Analysis of PDEs +1307.1887 +1307.1888 Mesoscale and Nanoscale Physics +1307.1890 Artificial Intelligence +1307.1891 Artificial Intelligence +1307.1893 Artificial Intelligence +1307.1895 Artificial Intelligence +1307.1900 Artificial Intelligence +1307.1903 Artificial Intelligence +1307.1904 Phenomenology +1307.1905 Artificial Intelligence +1307.1908 Superconductivity +1307.1914 +1307.1921 Fluid Dynamics +1307.1924 Spectral Theory +1307.1926 Networking and Internet Architecture +1307.1927 Databases +1307.1928 High Energy Astrophysical Phenomena +1307.1932 Group Theory +1307.1934 Biomolecules +1307.1936 Differential Geometry +1307.1937 Algebraic Geometry +1307.1940 Optimization and Control +1307.1942 Logic in Computer Science +1307.1943 Human-Computer Interaction +1307.1944 Logic in Computer Science +1307.1945 Mathematical Software +1307.1946 Analysis of PDEs +1307.1948 +1307.1950 Accelerator Physics +1307.1952 Statistics Theory +1307.1953 +1307.1961 Information Theory +1307.1962 Statistics Theory +1307.1963 Space Physics +1307.1964 History and Philosophy of Physics +1307.1966 +1307.1969 Plasma Physics +1307.1971 Soft Condensed Matter +1307.1972 Probability +1307.1977 Soft Condensed Matter +1307.1978 Analysis of PDEs +1307.1979 Phenomenology +1307.1981 Combinatorics +1307.1984 Materials Science +1307.1989 General Topology +1307.1990 Quantum Gases +1307.1994 Networking and Internet Architecture +1307.1996 Methodology +1307.1997 Number Theory +1307.1998 Learning +1307.2001 Computational Engineering, Finance, and Science +1307.2004 Logic in Computer Science +1307.2005 Quantum Gases +1307.2008 Mesoscale and Nanoscale Physics +1307.2011 Statistical Mechanics +1307.2012 Earth and Planetary Astrophysics +1307.2013 Soft Condensed Matter +1307.2015 Information Retrieval +1307.2020 Astrophysics of Galaxies +1307.2022 Experiment +1307.2027 Statistical Mechanics +1307.2029 Instrumentation and Methods for Astrophysics +1307.2030 Statistical Mechanics +1307.2032 +1307.2034 Experiment +1307.2039 Probability +1307.2042 Logic +1307.2043 Computational Geometry +1307.2045 Experiment +1307.2046 Phenomenology +1307.2049 Superconductivity +1307.2051 Computer Science and Game Theory +1307.2054 Algebraic Geometry +1307.2057 Statistical Mechanics +1307.2058 Materials Science +1307.2062 Logic in Computer Science +1307.2063 General Physics +1307.2066 Number Theory +1307.2071 Space Physics +1307.2076 Number Theory +1307.2078 Materials Science +1307.2080 Number Theory +1307.2084 Social and Information Networks +1307.2087 Optimization and Control +1307.2091 Dynamical Systems +1307.2093 Commutative Algebra +1307.2095 History and Philosophy of Physics +1307.2098 Combinatorics +1307.2099 Solar and Stellar Astrophysics +1307.2100 Mathematical Software +1307.2105 Information Theory +1307.2107 +1307.2111 Learning +1307.2112 +1307.2113 Complex Variables +1307.2117 Information Theory +1307.2118 Learning +1307.2120 Materials Science +1307.2122 Materials Science +1307.2128 Theory +1307.2129 Dynamical Systems +1307.2131 General Topology +1307.2132 History and Philosophy of Physics +1307.2134 General Physics +1307.2136 Information Theory +1307.2139 Combinatorics +1307.2141 Commutative Algebra +1307.2143 Rings and Algebras +1307.2145 Logic in Computer Science +1307.2149 Phenomenology +1307.2150 Neurons and Cognition +1307.2151 Quantum Gases +1307.2156 Materials Science +1307.2161 Rings and Algebras +1307.2164 Discrete Mathematics +1307.2166 Chaotic Dynamics +1307.2167 +1307.2176 General Finance +1307.2177 General Finance +1307.2180 General Finance +1307.2181 General Finance +1307.2182 Solar and Stellar Astrophysics +1307.2183 Differential Geometry +1307.2189 Social and Information Networks +1307.2191 Human-Computer Interaction +1307.2196 Neurons and Cognition +1307.2198 Combinatorics +1307.2200 Artificial Intelligence +1307.2202 Information Theory +1307.2204 Number Theory +1307.2210 Operator Algebras +1307.2217 Statistics Theory +1307.2218 Probability +1307.2220 Analysis of PDEs +1307.2223 Statistics Theory +astro-ph/0102311 +cond-mat/0007363 Disordered Systems and Neural Networks +cond-mat/0509582 Statistical Mechanics +cond-mat/0610508 Mesoscale and Nanoscale Physics +cond-mat/0612698 Mesoscale and Nanoscale Physics +math/0405159 Logic +quant-ph/0702035 +0708.2994 Materials Science +0805.2376 Differential Geometry +0809.0644 Materials Science +0902.4600 Theory +0907.3517 Analysis of PDEs +0909.3179 Symplectic Geometry +0910.2182 Mesoscale and Nanoscale Physics +1002.1367 Mesoscale and Nanoscale Physics +1003.4274 Computer Science and Game Theory +1003.4277 Computer Science and Game Theory +1004.0401 Differential Geometry +1007.3618 +1101.3737 Algebraic Geometry +1102.0874 Discrete Mathematics +1102.4370 Algebraic Geometry +1104.5007 Combinatorics +1105.0171 Mesoscale and Nanoscale Physics +1106.0729 +1107.4142 Probability +1107.4754 Probability +1108.4150 Geometric Topology +1109.2806 Robotics +1109.4050 Materials Science +1110.4225 Combinatorics +1110.5661 Algebraic Geometry +1111.1938 Probability +1111.3100 Theory +1111.6732 Quantum Gases +1112.4788 Information Theory +1201.3876 Cosmology and Nongalactic Astrophysics +1202.0136 Information Theory +1202.3049 +1202.4200 Algebraic Geometry +1203.2642 Theory +1203.2685 Dynamical Systems +1203.5066 Computation and Language +1204.0435 +1204.2589 Combinatorics +1204.4764 Experiment +1204.5341 Experiment +1204.5741 General Physics +1205.0206 +1205.0272 Experiment +1205.0537 Physics and Society +1205.2068 +1205.5413 Materials Science +1206.0460 +1206.1042 Information Retrieval +1206.4542 Functional Analysis +1206.6649 Phenomenology +1206.6720 Cryptography and Security +1207.0832 Physics and Society +1207.2766 Theory +1207.3995 Materials Science +1207.4556 Probability +1207.5628 Functional Analysis +1207.7054 +1207.7122 Superconductivity +1208.4080 Information Theory +1208.4790 Information Theory +1208.5237 +1208.5240 Strongly Correlated Electrons +1208.5760 Lattice +1208.5830 Materials Science +1209.0666 Functional Analysis +1209.0938 Combinatorics +1209.0992 Mesoscale and Nanoscale Physics +1209.1770 Mesoscale and Nanoscale Physics +1209.2603 Quantum Gases +1209.3623 +1209.4114 Category Theory +1209.4907 Phenomenology +1209.4970 Systems and Control +1209.5017 Mesoscale and Nanoscale Physics +1209.6389 General Physics +1210.2166 Fluid Dynamics +1210.2721 Cosmology and Nongalactic Astrophysics +1210.4104 +1210.5531 +1210.7545 Soft Condensed Matter +1210.7594 Strongly Correlated Electrons +1211.0414 Functional Analysis +1211.0771 Quantum Gases +1211.1273 Theory +1211.2004 High Energy Astrophysical Phenomena +1211.5367 Theory +1211.5807 Populations and Evolution +1211.6798 Cosmology and Nongalactic Astrophysics +1211.6863 Differential Geometry +1211.7317 Dynamical Systems +1212.2142 Physics and Society +1212.3215 Statistical Mechanics +1212.4865 Analysis of PDEs +1301.0219 History and Philosophy of Physics +1301.0276 Solar and Stellar Astrophysics +1301.0370 Operator Algebras +1301.1716 Fluid Dynamics +1301.2835 Rings and Algebras +1301.3493 Phenomenology +1301.3578 Information Theory +1301.4116 Number Theory +1301.4151 Solar and Stellar Astrophysics +1301.4289 Cryptography and Security +1301.4542 Number Theory +1301.4824 Information Theory +1301.4997 High Energy Astrophysical Phenomena +1301.5468 Data Structures and Algorithms +1301.5506 Atmospheric and Oceanic Physics +1301.5542 Superconductivity +1301.5649 Accelerator Physics +1301.5654 Rings and Algebras +1301.5657 Accelerator Physics +1301.5658 General Topology +1301.5659 Differential Geometry +1301.5668 Experiment +1301.5671 Space Physics +1301.5675 Classical Physics +1301.5679 Differential Geometry +1301.5680 Analysis of PDEs +1301.5683 Computer Science and Game Theory +1301.5691 Probability +1301.5693 Geometric Topology +1301.5694 Commutative Algebra +1301.5703 Number Theory +1301.5718 Rings and Algebras +1301.5722 Statistics Theory +1301.5724 Dynamical Systems +1301.5730 Instrumentation and Methods for Astrophysics +1301.5732 Soft Condensed Matter +1301.5734 Optimization and Control +1301.5738 Computer Science and Game Theory +1301.5742 Computational Physics +1301.5744 Optimization and Control +1301.5745 Combinatorics +1301.5748 Optics +1301.5751 High Energy Astrophysical Phenomena +1301.5753 Instrumentation and Methods for Astrophysics +1301.5768 Geometric Topology +1301.5770 Optimization and Control +1301.5772 Differential Geometry +1301.5774 Differential Geometry +1301.5777 Rings and Algebras +1301.5782 Digital Libraries +1301.5784 Phenomenology +1301.5785 High Energy Astrophysical Phenomena +1301.5793 Multimedia +1301.5797 Materials Science +1301.5798 Symbolic Computation +1301.5800 Solar and Stellar Astrophysics +1301.5804 Symbolic Computation +1301.5805 Strongly Correlated Electrons +1301.5806 Atmospheric and Oceanic Physics +1301.5811 Analysis of PDEs +1301.5813 Solar and Stellar Astrophysics +1301.5818 Analysis of PDEs +1301.5821 Risk Management +1301.5823 +1301.5825 Quantum Gases +1301.5826 Lattice +1301.5833 Quantum Algebra +1301.5836 Combinatorics +1301.5837 Mesoscale and Nanoscale Physics +1301.5840 Soft Condensed Matter +1301.5841 Rings and Algebras +1301.5850 Logic +1301.5860 Analysis of PDEs +1301.5863 Analysis of PDEs +1301.5864 Solar and Stellar Astrophysics +1301.5866 +1301.5871 Databases +1301.5872 Solar and Stellar Astrophysics +1301.5874 Statistics Theory +1301.5877 Pricing of Securities +1301.5878 Software Engineering +1301.5882 Algebraic Topology +1301.5886 +1301.5892 Plasma Physics +1301.5894 Classical Analysis and ODEs +1301.5896 Data Structures and Algorithms +cs/0612019 Information Theory +math/0310395 Functional Analysis +math/0504571 Spectral Theory +math/0607616 Spectral Theory +physics/0204008 Optics +physics/0205074 Optics +0709.2337 +0709.3095 +0709.3108 +0709.3112 +0709.3116 +0709.3238 +0709.3242 +0709.3581 Rings and Algebras +0909.0339 Combinatorics +0909.5332 Solar and Stellar Astrophysics +0911.1084 Physics and Society +1004.4677 K-Theory and Homology +1010.4252 Geometric Topology +1102.1995 Differential Geometry +1103.1958 Information Theory +1104.0192 Analysis of PDEs +1108.3373 Group Theory +1108.3947 Quantum Algebra +1109.6821 Rings and Algebras +1201.3699 Combinatorics +1203.3982 Dynamical Systems +1203.6858 Differential Geometry +1204.0110 Number Theory +1204.1982 Theory +1205.2038 Chemical Physics +1205.3132 K-Theory and Homology +1205.3926 +1205.4683 Physics and Society +1205.6286 Analysis of PDEs +1206.2955 Combinatorics +1206.3474 Mesoscale and Nanoscale Physics +1206.7107 Optics +1207.1005 Numerical Analysis +1207.6165 Probability +1208.0737 Differential Geometry +1208.0859 Dynamical Systems +1208.0918 Group Theory +1208.4041 Programming Languages +1208.4646 +1208.5332 Analysis of PDEs +1208.5737 Cosmology and Nongalactic Astrophysics +1209.1917 Phenomenology +1209.6499 +1210.1173 +1210.5892 Solar and Stellar Astrophysics +1210.6735 Statistical Mechanics +1210.7442 Superconductivity +1210.7820 Astrophysics of Galaxies +1211.3791 Superconductivity +1211.4557 +1211.5172 Theory +1211.5608 Information Theory +1211.7086 High Energy Astrophysical Phenomena +1212.0294 Number Theory +1212.0930 Mesoscale and Nanoscale Physics +1212.3161 Differential Geometry +1212.4781 +1212.5338 +1212.6100 Probability +1301.0030 Plasma Physics +1301.0855 +1301.0976 Superconductivity +1301.2064 Earth and Planetary Astrophysics +1301.3038 +1301.3207 Strongly Correlated Electrons +1301.3540 Strongly Correlated Electrons +1301.4718 Quantum Gases +1301.5629 Superconductivity +1301.6013 Metric Geometry +1301.6276 +1301.6304 Combinatorics +1302.0116 Commutative Algebra +1302.1043 Learning +1302.2801 Theory +1302.3334 Strongly Correlated Electrons +1302.4321 Theory +1302.4568 Logic +1303.0661 Mesoscale and Nanoscale Physics +1303.0961 Cosmology and Nongalactic Astrophysics +1303.1916 Representation Theory +1303.2476 +1303.6685 Theory +1303.6754 Mesoscale and Nanoscale Physics +1303.7122 Computer Science and Game Theory +1303.7450 Phenomenology +1304.0572 Mesoscale and Nanoscale Physics +1304.2099 Strongly Correlated Electrons +1304.2207 Phenomenology +1304.2216 Mesoscale and Nanoscale Physics +1304.3069 Theory +1304.3601 Mesoscale and Nanoscale Physics +1304.4645 Representation Theory +1304.4710 +1304.4985 Algebraic Topology +1304.5339 +1304.5999 Classical Analysis and ODEs +1304.7222 Symbolic Computation +1304.7223 Mathematical Software +1304.7603 Symbolic Computation +1304.7978 Theory +1305.0779 Computational Complexity +1305.1058 Superconductivity +1305.1317 Superconductivity +1305.1337 Cosmology and Nongalactic Astrophysics +1305.1517 +1305.3965 Mesoscale and Nanoscale Physics +1305.4195 Databases +1305.5515 Superconductivity +1305.5776 +1305.6949 Operator Algebras +1306.0469 Mesoscale and Nanoscale Physics +1306.1943 +1306.2504 Theory +1306.2520 Mesoscale and Nanoscale Physics +1306.2854 Probability +1306.3896 Information Theory +1306.4516 +1306.4794 Plasma Physics +1306.5467 Materials Science +1306.5678 Logic in Computer Science +1306.5716 Analysis of PDEs +1306.6123 Differential Geometry +1307.0047 Analysis of PDEs +1307.0422 Mesoscale and Nanoscale Physics +1307.0542 Superconductivity +1307.0900 Rings and Algebras +1307.1332 Distributed, Parallel, and Cluster Computing +1307.1539 Analysis of PDEs +1307.1742 Biological Physics +1307.1959 Differential Geometry +1307.2092 Combinatorics +1307.2228 Information Theory +1307.2230 Soft Condensed Matter +1307.2231 Chemical Physics +1307.2255 Differential Geometry +1307.2260 Rings and Algebras +1307.2261 Phenomenology +1307.2272 Materials Science +1307.2274 Data Structures and Algorithms +1307.2275 Analysis of PDEs +1307.2282 Strongly Correlated Electrons +1307.2284 Earth and Planetary Astrophysics +1307.2289 History and Philosophy of Physics +1307.2290 +1307.2292 +1307.2293 Solar and Stellar Astrophysics +1307.2296 Astrophysics of Galaxies +1307.2301 Analysis of PDEs +1307.2303 Solar and Stellar Astrophysics +1307.2307 Machine Learning +1307.2312 Machine Learning +1307.2316 Algebraic Geometry +1307.2319 Number Theory +1307.2320 Information Theory +1307.2322 Phenomenology +1307.2324 +1307.2326 Differential Geometry +1307.2328 Programming Languages +1307.2330 Differential Geometry +1307.2332 Probability +1307.2335 Instrumentation and Detectors +1307.2338 Probability +1307.2341 Earth and Planetary Astrophysics +1307.2344 Optics +1307.2345 Instrumentation and Methods for Astrophysics +1307.2349 +1307.2353 +1307.2363 Superconductivity +1307.2365 Phenomenology +1307.2368 Materials Science +1307.2370 Phenomenology +1307.2374 +1307.2376 Combinatorics +1307.2381 Systems and Control +1307.2391 Plasma Physics +1307.2396 Commutative Algebra +1307.2397 Physics and Society +1307.2401 Algebraic Topology +1307.2402 High Energy Astrophysical Phenomena +1307.2409 Materials Science +1307.2410 Solar and Stellar Astrophysics +1307.2415 Data Structures and Algorithms +1307.2416 Analysis of PDEs +1307.2418 General Mathematics +1307.2419 Probability +1307.2427 Systems and Control +1307.2428 Probability +1307.2429 Analysis of PDEs +1307.2430 Information Theory +1307.2432 Probability +1307.2434 Computer Vision and Pattern Recognition +1307.2437 Functional Analysis +1307.2440 Computer Vision and Pattern Recognition +1307.2441 Number Theory +1307.2443 Optimization and Control +1307.2448 Phenomenology +1307.2449 Computation +1307.2451 Phenomenology +1307.2456 Strongly Correlated Electrons +1307.2457 Computer Vision and Pattern Recognition +1307.2458 Classical Analysis and ODEs +1307.2461 Populations and Evolution +1307.2465 Risk Management +1307.2467 Discrete Mathematics +1307.2468 Chemical Physics +1307.2470 Geometric Topology +1307.2471 Atomic Physics +1307.2472 +1307.2473 Programming Languages +1307.2474 Numerical Analysis +1307.2478 Spectral Theory +1307.2484 Atmospheric and Oceanic Physics +1307.2487 Experiment +1307.2488 Solar and Stellar Astrophysics +1307.2489 Materials Science +1307.2490 Algebraic Geometry +1307.2491 Numerical Analysis +1307.2493 Pricing of Securities +1307.2501 High Energy Astrophysical Phenomena +1307.2502 Materials Science +1307.2507 Materials Science +1307.2508 Functional Analysis +1307.2513 Phenomenology +1307.2520 Data Structures and Algorithms +1307.2521 Data Structures and Algorithms +1307.2527 Group Theory +1307.2530 Classical Physics +1307.2531 Data Structures and Algorithms +1307.2534 +1307.2536 Data Structures and Algorithms +1307.2537 Computer Science and Game Theory +1307.2543 +1307.2545 Geometric Topology +1307.2546 Statistics Theory +1307.2548 Medical Physics +1307.2555 Information Theory +1307.2557 Representation Theory +1307.2559 Neural and Evolutionary Computing +1307.2560 Distributed, Parallel, and Cluster Computing +1307.2563 Instrumentation and Detectors +1307.2567 Differential Geometry +cond-mat/0409171 Strongly Correlated Electrons +quant-ph/0510106 +quant-ph/0510203 +0804.0057 Number Theory +0811.2580 Algebraic Topology +0903.0150 Probability +0910.1061 Probability +1004.0816 Information Retrieval +1005.4006 Numerical Analysis +1009.4653 Probability +1010.1786 Functional Analysis +1012.5913 Social and Information Networks +1101.5973 Probability +1102.5046 Social and Information Networks +1105.5742 Group Theory +1109.5997 Probability +1110.1135 Probability +1110.1695 Probability +1111.2865 +1112.2414 Numerical Analysis +1201.1858 Probability +1201.2901 +1203.1426 Disordered Systems and Neural Networks +1203.2950 Chemical Physics +1203.3061 +1203.5546 Probability +1204.6140 Chemical Physics +1205.0616 Functional Analysis +1205.1137 Differential Geometry +1205.2925 Metric Geometry +1206.6621 +1207.1138 +1208.3109 Atomic Physics +1208.3494 General Topology +1209.1940 Number Theory +1209.4469 Biomolecules +1209.5055 Commutative Algebra +1210.3361 Astrophysics of Galaxies +1210.7908 Group Theory +1210.8317 +1212.0102 Logic +1212.0341 +1212.1217 Group Theory +1212.5168 Operator Algebras +1301.0269 +1301.1644 +1301.2912 Statistical Mechanics +1301.4405 High Energy Astrophysical Phenomena +1301.7289 Probability +1301.7711 +1302.0624 Phenomenology +1302.2011 +1302.3377 Dynamical Systems +1302.4272 Representation Theory +1302.4422 Mesoscale and Nanoscale Physics +1302.5689 Quantum Algebra +1302.6632 Functional Analysis +1303.3364 Atomic Physics +1303.7045 Quantum Gases +1303.7172 Mesoscale and Nanoscale Physics +1304.2149 Neurons and Cognition +1304.2231 Algebraic Geometry +1304.3326 Atomic Physics +1304.4231 Cosmology and Nongalactic Astrophysics +1304.4270 +1304.6708 Phenomenology +1304.7338 Rings and Algebras +1304.7945 Neurons and Cognition +1305.1828 +1305.3746 Mesoscale and Nanoscale Physics +1305.4522 Statistical Mechanics +1305.4628 General Physics +1305.4691 Strongly Correlated Electrons +1305.5197 Earth and Planetary Astrophysics +1305.6049 Chemical Physics +1305.6266 Phenomenology +1305.6899 Solar and Stellar Astrophysics +1305.7005 Soft Condensed Matter +1305.7345 Artificial Intelligence +1306.0851 Statistical Mechanics +1306.3314 Algebraic Geometry +1306.3938 Theory +1306.5401 +1306.6246 Phenomenology +1307.2227 +1307.2533 Physics Education +1307.3043 Computer Vision and Pattern Recognition +1308.3285 Strongly Correlated Electrons +1308.4962 Instrumentation and Detectors +1308.5980 Number Theory +1309.0166 Computational Physics +1309.0414 Instrumentation and Detectors +1309.0696 Chemical Physics +1309.0863 Differential Geometry +1309.0956 Theory +1309.1235 Optimization and Control +1309.1603 Cosmology and Nongalactic Astrophysics +1309.2235 +1309.2923 +1309.2934 General Physics +1309.3047 +1309.3268 Methodology +1309.3283 Earth and Planetary Astrophysics +1309.3284 Networking and Internet Architecture +1309.3285 Artificial Intelligence +1309.3286 Optics +1309.3288 Geometric Topology +1309.3291 Analysis of PDEs +1309.3292 Rings and Algebras +1309.3296 Classical Analysis and ODEs +1309.3298 Algebraic Geometry +1309.3300 Experiment +1309.3304 Metric Geometry +1309.3305 Materials Science +1309.3306 Disordered Systems and Neural Networks +1309.3307 Information Theory +1309.3314 Graphics +1309.3316 Materials Science +1309.3319 Networking and Internet Architecture +1309.3327 Populations and Evolution +1309.3329 Tissues and Organs +1309.3332 Tissues and Organs +1309.3333 Complex Variables +1309.3334 Differential Geometry +1309.3342 Analysis of PDEs +1309.3347 Rings and Algebras +1309.3349 Representation Theory +1309.3352 Rings and Algebras +1309.3354 Combinatorics +1309.3356 +1309.3357 +1309.3358 Materials Science +1309.3360 High Energy Astrophysical Phenomena +1309.3363 Materials Science +1309.3364 Mesoscale and Nanoscale Physics +1309.3365 Probability +1309.3367 History and Philosophy of Physics +1309.3369 Adaptation and Self-Organizing Systems +1309.3370 Statistics Theory +1309.3373 Mesoscale and Nanoscale Physics +1309.3381 Group Theory +1309.3385 +1309.3386 Computation +1309.3387 Methodology +1309.3390 Astrophysics of Galaxies +1309.3391 Instrumentation and Methods for Astrophysics +1309.3392 Dynamical Systems +1309.3393 +1309.3396 Neurons and Cognition +1309.3397 Mesoscale and Nanoscale Physics +1309.3399 Applications +1309.3405 Probability +1309.3407 +1309.3418 Computer Vision and Pattern Recognition +1309.3420 Mesoscale and Nanoscale Physics +1309.3425 Computer Vision and Pattern Recognition +1309.3427 Optics +1309.3431 Analysis of PDEs +1309.3433 Functional Analysis +1309.3434 Materials Science +1309.3438 Atomic Physics +1309.3439 Databases +1309.3446 Information Theory +1309.3455 Number Theory +1309.3460 +1309.3462 Phenomenology +1309.3466 Data Analysis, Statistics and Probability +1309.3468 Atomic Physics +1309.3469 +1309.3475 Chaotic Dynamics +1309.3477 Strongly Correlated Electrons +1309.3479 Portfolio Management +1309.3482 Mesoscale and Nanoscale Physics +1309.3493 Quantum Algebra +1309.3496 Analysis of PDEs +1309.3501 Metric Geometry +1309.3504 Fluid Dynamics +1309.3505 Solar and Stellar Astrophysics +1309.3510 Combinatorics +1309.3513 Discrete Mathematics +1309.3515 Cryptography and Security +1309.3518 Analysis of PDEs +1309.3520 Methodology +1309.3521 Populations and Evolution +1309.3523 +1309.3524 Fluid Dynamics +1309.3525 Optics +1309.3527 Number Theory +1309.3529 Optimization and Control +1309.3530 Number Theory +1309.3533 Methodology +1309.3534 Phenomenology +1309.3536 High Energy Astrophysical Phenomena +1309.3550 Operator Algebras +1309.3552 Phenomenology +1309.3558 Symplectic Geometry +0904.2040 Numerical Analysis +0909.1428 +0910.5012 Mesoscale and Nanoscale Physics +0912.1654 Differential Geometry +1001.2642 Theory +1001.3056 Discrete Mathematics +1002.0695 Mesoscale and Nanoscale Physics +1005.1144 Quantum Algebra +1006.3246 Probability +1007.2402 Algebraic Topology +1008.0836 Computational Finance +1009.2873 Algebraic Geometry +1102.3347 Differential Geometry +1103.4970 Symplectic Geometry +1104.2578 Rings and Algebras +1104.4135 Methodology +1105.0327 Differential Geometry +1105.5181 Spectral Theory +1105.5255 Computer Science and Game Theory +1105.6017 Metric Geometry +1106.4418 Mesoscale and Nanoscale Physics +1107.0400 Combinatorics +1108.0679 Information Theory +1108.1588 +1108.1756 Classical Analysis and ODEs +1109.2776 Probability +1111.4234 Quantum Algebra +1111.4630 +1111.5130 +1112.3932 Geometric Topology +1201.4569 Theory +1201.6660 Materials Science +1202.2398 Functional Analysis +1202.2690 Dynamical Systems +1202.5922 Algebraic Geometry +1202.5993 Theory +1204.0461 Experiment +1204.1086 Discrete Mathematics +1204.2717 Trading and Market Microstructure +1204.3735 Symbolic Computation +1204.5045 Number Theory +1204.5332 Analysis of PDEs +1204.5504 Instrumentation and Detectors +1205.1203 Networking and Internet Architecture +1205.3875 Fluid Dynamics +1206.1126 Geometric Topology +1206.1857 Theory +1206.4077 Commutative Algebra +1206.6275 Superconductivity +1206.6580 Solar and Stellar Astrophysics +1207.0275 +1207.3915 Combinatorics +1207.4043 High Energy Astrophysical Phenomena +1208.0525 Performance +1208.0782 Information Retrieval +1208.0787 Information Retrieval +1208.0788 Applications +1208.1139 Analysis of PDEs +1208.1575 Superconductivity +1208.3568 Combinatorics +1208.4491 +1208.5030 Earth and Planetary Astrophysics +1209.4710 Strongly Correlated Electrons +1209.5332 +1209.5789 Algebraic Geometry +1209.6065 Theory +1210.0195 Phenomenology +1210.0791 +1210.2631 Experiment +1210.3909 Analysis of PDEs +1210.3940 +1210.4407 Number Theory +1210.4409 +1210.6106 Classical Physics +1210.6143 Superconductivity +1210.6375 +1210.7589 Dynamical Systems +1210.8075 Mesoscale and Nanoscale Physics +1211.0098 Materials Science +1211.0180 Representation Theory +1211.0450 Mesoscale and Nanoscale Physics +1211.1087 Instrumentation and Detectors +1211.2452 Solar and Stellar Astrophysics +1211.2898 +1211.3469 Quantum Gases +1211.4242 Analysis of PDEs +1211.4653 Phenomenology +1211.6453 Phenomenology +1211.6614 Theory +1211.7029 +1211.7269 +1211.7312 Plasma Physics +1212.0926 Strongly Correlated Electrons +1212.1277 Cosmology and Nongalactic Astrophysics +1212.1645 Adaptation and Self-Organizing Systems +1212.2129 Computational Finance +1212.2258 Superconductivity +1212.2796 Differential Geometry +1212.5689 Classical Physics +1212.5936 Theory +1301.0331 Plasma Physics +1301.1272 Dynamical Systems +1301.1706 Theory +1301.3348 Soft Condensed Matter +1301.4438 Numerical Analysis +1301.5655 Information Theory +1301.5684 Information Theory +1301.6223 Materials Science +1301.6339 Information Theory +1301.6340 Information Theory +1301.6465 Information Theory +1301.7083 Theory +1301.7136 Quantum Gases +1302.0027 Mesoscale and Nanoscale Physics +1302.0047 Mesoscale and Nanoscale Physics +1302.1205 +1302.2107 Physics and Society +1302.2157 Learning +1302.3268 Learning +1302.3509 +1302.3819 Soft Condensed Matter +1302.4054 Functional Analysis +1302.4231 Strongly Correlated Electrons +1302.4715 Probability +1302.5218 Mesoscale and Nanoscale Physics +1302.5725 Phenomenology +1302.5762 Computer Vision and Pattern Recognition +1302.6162 Phenomenology +1302.6354 Experiment +1303.0289 Phenomenology +1303.0386 Fluid Dynamics +1303.1093 Information Theory +1303.1098 Information Theory +1303.1187 Mesoscale and Nanoscale Physics +1303.2021 Soft Condensed Matter +1303.3489 Information Theory +1303.3846 Mesoscale and Nanoscale Physics +1303.3851 Mesoscale and Nanoscale Physics +1303.4022 Cosmology and Nongalactic Astrophysics +1303.4194 Computational Engineering, Finance, and Science +1303.4369 Mesoscale and Nanoscale Physics +1303.5055 High Energy Astrophysical Phenomena +1303.6040 Representation Theory +1303.6211 Theory +1303.7160 Probability +1304.0058 +1304.1865 Neurons and Cognition +1304.1969 Information Theory +1304.6904 Theory +1304.8060 Solar and Stellar Astrophysics +1304.8088 Applications +1305.0177 Combinatorics +1305.0247 Applications +1305.0961 Discrete Mathematics +1305.1350 Rings and Algebras +1305.1409 Computational Complexity +1305.1563 Phenomenology +1305.1683 Superconductivity +1305.1805 Discrete Mathematics +1305.2205 Algebraic Geometry +1305.2797 Theory +1305.2980 Molecular Networks +1305.3345 Operating Systems +1305.4003 Representation Theory +1305.4004 +1305.4186 Functional Analysis +1305.4188 Number Theory +1305.4189 Experiment +1305.4199 Information Theory +1305.4200 Cosmology and Nongalactic Astrophysics +1305.4204 Learning +1305.4205 +1305.4207 +1305.4208 Phenomenology +1305.4210 Cryptography and Security +1305.4211 Astrophysics of Galaxies +1305.4214 Complex Variables +1305.4216 Populations and Evolution +1305.4217 Complex Variables +1305.4218 Experiment +1305.4223 Theory +1305.4225 Analysis of PDEs +1305.4228 Distributed, Parallel, and Cluster Computing +1305.4229 Cryptography and Security +1305.4230 K-Theory and Homology +1305.4232 Differential Geometry +1305.4234 Strongly Correlated Electrons +1305.4237 Discrete Mathematics +1305.4240 Information Theory +1305.4244 Soft Condensed Matter +1305.4245 Phenomenology +1305.4246 Chemical Physics +1305.4247 Logic in Computer Science +1305.4250 +1305.4251 Theory +1305.4254 +1305.4255 Formal Languages and Automata Theory +1305.4259 +1305.4260 Rings and Algebras +1305.4263 Distributed, Parallel, and Cluster Computing +1305.4266 Phenomenology +1305.4271 Logic +1305.4273 Methodology +1305.4276 Algebraic Geometry +1305.4277 Combinatorics +1305.4279 +1305.4281 Superconductivity +1305.4286 +1305.4287 Spectral Theory +1305.4291 Geometric Topology +1305.4293 Algebraic Topology +1305.4294 Differential Geometry +1305.4295 Functional Analysis +1305.4296 Optimization and Control +1305.4297 Analysis of PDEs +1305.4300 Optimization and Control +1305.4303 Dynamical Systems +1305.4304 Differential Geometry +1305.4305 History and Overview +1305.4307 Classical Analysis and ODEs +1305.4310 Number Theory +1305.4311 Networking and Internet Architecture +1305.4312 Soft Condensed Matter +1305.4313 Number Theory +1305.4314 Information Theory +1305.4315 Combinatorics +1305.4317 Combinatorics +1305.4318 Methodology +1305.4319 Neurons and Cognition +1305.4321 Computational Finance +1305.4324 Learning +1305.4333 Quantitative Methods +1305.4334 Optics +1305.4339 Quantitative Methods +1305.4342 Combinatorics +1305.4344 Theory +1305.4345 Learning +1305.4348 Networking and Internet Architecture +1305.4356 Strongly Correlated Electrons +1305.4359 Computers and Society +1305.4364 Instrumentation and Methods for Astrophysics +1305.4365 Distributed, Parallel, and Cluster Computing +1305.4367 Distributed, Parallel, and Cluster Computing +1305.4373 Differential Geometry +1305.4375 Computers and Society +1305.4376 Distributed, Parallel, and Cluster Computing +1305.4378 Software Engineering +1305.4382 Analysis of PDEs +1305.4383 Optics +1305.4386 Complex Variables +1305.4387 Complex Variables +1305.4388 Analysis of PDEs +1305.4389 Data Structures and Algorithms +1305.4392 Analysis of PDEs +1305.4395 Number Theory +1305.4396 Probability +1305.4400 +1305.4404 Analysis of PDEs +1305.4408 Probability +1305.4413 Methodology +1305.4414 +1305.4420 Mesoscale and Nanoscale Physics +1305.4423 Rings and Algebras +1305.4426 Analysis of PDEs +1305.4428 Materials Science +1305.4429 Social and Information Networks +1305.4432 Chemical Physics +1305.4433 Learning +1305.4443 Computers and Society +1305.4444 Cryptography and Security +1305.4445 Numerical Analysis +1305.4447 Combinatorics +1305.4449 +1305.4451 Differential Geometry +1305.4455 Digital Libraries +1305.4457 +1305.4468 Optimization and Control +1305.4469 Disordered Systems and Neural Networks +1305.4474 Representation Theory +1305.4480 Instrumentation and Methods for Astrophysics +1305.4481 Mesoscale and Nanoscale Physics +1305.4484 Metric Geometry +1305.4491 Category Theory +1305.4492 Dynamical Systems +1305.4495 Functional Analysis +1305.4500 Complex Variables +1305.4502 High Energy Astrophysical Phenomena +1305.4504 Instrumentation and Detectors +1305.4505 Number Theory +1305.4506 Populations and Evolution +1305.4512 +1305.4513 +1305.4514 Fluid Dynamics +1305.4515 General Topology +1305.4517 Materials Science +1305.4523 Algebraic Geometry +1305.4524 +1305.4532 Logic +1305.4534 +1305.4544 Computer Vision and Pattern Recognition +1305.4546 Rings and Algebras +1305.4553 Commutative Algebra +1305.4558 Information Theory +1305.4565 Geometric Topology +1305.4568 +1305.4570 Logic +1305.4572 Phenomenology +1305.4576 Physics Education +1305.4580 Information Theory +1305.4581 Computational Complexity +1305.4584 Programming Languages +1305.4587 Phenomenology +1305.4589 Operator Algebras +1305.4591 +1305.4599 Dynamical Systems +1305.4607 Category Theory +1305.4610 Information Theory +1305.4618 Number Theory +1305.4621 Dynamical Systems +1305.4623 History and Overview +1305.4624 +cond-mat/0604595 Disordered Systems and Neural Networks +math/0102013 Algebraic Geometry +0712.0444 Algebraic Geometry +0809.2490 Metric Geometry +0903.0679 Algebraic Geometry +0907.4592 Probability +0907.4641 Differential Geometry +0910.5445 Mesoscale and Nanoscale Physics +1002.3805 Theory +1102.3667 +1105.0559 Group Theory +1105.5310 Probability +1107.4214 Statistical Mechanics +1107.6032 Category Theory +1108.0114 Algebraic Topology +1108.1175 Cosmology and Nongalactic Astrophysics +1108.5288 Computational Complexity +1110.2979 Algebraic Geometry +1112.0728 Cosmology and Nongalactic Astrophysics +1112.1112 Superconductivity +1112.5101 Combinatorics +1201.2206 Analysis of PDEs +1202.0183 Differential Geometry +1202.5229 Computational Physics +1203.0126 Mesoscale and Nanoscale Physics +1203.4075 Metric Geometry +1205.1540 Theory +1205.1572 Disordered Systems and Neural Networks +1205.5231 +1205.6999 +1206.2517 Social and Information Networks +1207.0214 +1207.0930 Algebraic Geometry +1207.4826 Quantum Gases +1207.4877 +1208.1478 +1209.1881 Statistical Mechanics +1209.2124 Instrumentation and Methods for Astrophysics +1209.2236 Probability +1209.2648 Chemical Physics +1209.2971 +1209.4620 Distributed, Parallel, and Cluster Computing +1210.3410 Physics Education +1210.5160 Superconductivity +1210.6057 Theory +1210.8299 +1211.0488 Group Theory +1211.1115 Cosmology and Nongalactic Astrophysics +1211.1556 Mesoscale and Nanoscale Physics +1211.4310 Mesoscale and Nanoscale Physics +1212.1583 Probability +1212.2670 Algebraic Geometry +1212.3689 Information Theory +1212.4073 Theory +1212.4409 Exactly Solvable and Integrable Systems +1212.6127 Fluid Dynamics +1212.6511 Differential Geometry +1212.6663 Information Theory +1301.2562 Theory +1301.3599 Networking and Internet Architecture +1302.0342 +1302.0906 Phenomenology +1302.5057 Superconductivity +1302.5568 Analysis of PDEs +1302.6713 Phenomenology +1302.7161 Cosmology and Nongalactic Astrophysics +1302.7172 Systems and Control +1303.0962 Combinatorics +1303.1766 Mesoscale and Nanoscale Physics +1303.2077 Theory +1303.2122 Rings and Algebras +1303.2918 Superconductivity +1303.3739 Materials Science +1303.4251 Classical Analysis and ODEs +1303.6419 +1304.0546 Metric Geometry +1304.0679 Chemical Physics +1304.1486 Theory +1304.5515 Plasma Physics +1304.6370 Pattern Formation and Solitons +1305.0974 Cosmology and Nongalactic Astrophysics +1305.3083 +1305.3667 Statistical Mechanics +1305.4238 Commutative Algebra +1305.4898 Superconductivity +1305.6447 Cosmology and Nongalactic Astrophysics +1305.6910 Phenomenology +1305.7227 Theory +1306.0004 Theory +1306.1989 +1306.2409 +1306.4894 Experiment +1306.4935 Number Theory +1306.6162 Superconductivity +1306.6912 +1306.6916 Materials Science +1307.1118 Materials Science +1307.1416 Lattice +1307.2205 Data Structures and Algorithms +1307.2246 High Energy Astrophysical Phenomena +1307.3996 Materials Science +1307.4825 Phenomenology +1307.4828 +1307.6095 +1307.7073 +1307.7125 Theory +1307.8298 Biological Physics +1308.0010 +1308.0095 Optics +1308.0618 Phenomenology +1308.2799 Algebraic Topology +1308.3081 Chaotic Dynamics +1308.3812 Quantum Gases +1308.4504 +1308.6088 Solar and Stellar Astrophysics +1308.6623 Exactly Solvable and Integrable Systems +1309.1514 Phenomenology +1309.2289 Earth and Planetary Astrophysics +1309.3415 Lattice +1309.4536 Materials Science +1309.5041 Phenomenology +1309.5161 Cosmology and Nongalactic Astrophysics +1309.5183 Materials Science +1309.7666 Robotics +1310.0869 Cosmology and Nongalactic Astrophysics +1310.1548 Strongly Correlated Electrons +1310.1845 Discrete Mathematics +1310.1867 Machine Learning +1310.2459 Phenomenology +1310.2608 Phenomenology +1310.2830 Computers and Society +1310.4029 High Energy Astrophysical Phenomena +1310.4641 Soft Condensed Matter +1310.4700 Chaotic Dynamics +1310.4881 Materials Science +1310.5270 K-Theory and Homology +1310.5543 Machine Learning +1310.5850 Human-Computer Interaction +1310.6087 Lattice +1310.6088 Algebraic Geometry +1310.6304 Learning +1310.6325 Numerical Analysis +1310.6336 Phenomenology +1310.6343 Learning +1310.6349 Operating Systems +1310.6366 Cosmology and Nongalactic Astrophysics +1310.6368 Cosmology and Nongalactic Astrophysics +1310.6370 Theory +1310.6374 Number Theory +1310.6376 Computer Vision and Pattern Recognition +1310.6377 Multimedia +1310.6378 Representation Theory +1310.6380 Materials Science +1310.6382 Computer Science and Game Theory +1310.6385 Strongly Correlated Electrons +1310.6387 Phenomenology +1310.6391 Probability +1310.6396 Complex Variables +1310.6397 Networking and Internet Architecture +1310.6404 Geometric Topology +1310.6412 Differential Geometry +1310.6415 Differential Geometry +1310.6421 Probability +1310.6426 Commutative Algebra +1310.6428 Materials Science +1310.6442 Analysis of PDEs +1310.6443 Networking and Internet Architecture +1310.6444 Algebraic Geometry +1310.6445 Algebraic Geometry +1310.6455 Differential Geometry +1310.6461 Lattice +1310.6462 Solar and Stellar Astrophysics +1310.6463 Functional Analysis +1310.6464 Solar and Stellar Astrophysics +1310.6465 Atomic Physics +1310.6467 Number Theory +1310.6471 Analysis of PDEs +1310.6473 Algebraic Geometry +1310.6474 History and Philosophy of Physics +1310.6476 Strongly Correlated Electrons +1310.6477 Combinatorics +1310.6481 Systems and Control +1310.6483 Materials Science +1310.6484 Mesoscale and Nanoscale Physics +1310.6486 Computational Engineering, Finance, and Science +1310.6488 Solar and Stellar Astrophysics +1310.6494 Materials Science +1310.6504 Lattice +1310.6516 Social and Information Networks +1310.6523 Analysis of PDEs +1310.6529 Combinatorics +1310.6531 Dynamical Systems +1310.6534 Metric Geometry +1310.6536 Learning +1310.6539 Rings and Algebras +1310.6540 Plasma Physics +1310.6541 History and Philosophy of Physics +1310.6544 Experiment +1310.6547 Neurons and Cognition +1310.6556 Molecular Networks +1310.6557 Instrumentation and Methods for Astrophysics +1310.6559 Optics +1310.6561 Materials Science +1310.6562 +1310.6564 Software Engineering +1310.6566 Theory +1310.6577 Analysis of PDEs +1310.6578 Instrumentation and Detectors +1310.6585 Operator Algebras +1310.6587 Differential Geometry +1310.6588 Mesoscale and Nanoscale Physics +1310.6589 Number Theory +1310.6590 Populations and Evolution +1310.6591 Number Theory +1310.6593 Instrumentation and Detectors +1310.6595 Superconductivity +1310.6596 Chemical Physics +1310.6597 Number Theory +1310.6600 Algebraic Geometry +1310.6605 Number Theory +1310.6606 Number Theory +1310.6607 Number Theory +1310.6608 Number Theory +1310.6609 Atomic Physics +1310.6613 Instrumentation and Methods for Astrophysics +1310.6618 Numerical Analysis +1310.6619 Functional Analysis +1310.6622 +1310.6623 +1310.6624 Representation Theory +1310.6629 +1310.6632 Materials Science +1310.6633 Analysis of PDEs +1310.6634 Materials Science +1310.6637 Information Retrieval +1310.6639 Rings and Algebras +1310.6640 Solar and Stellar Astrophysics +1310.6641 Fluid Dynamics +1310.6644 Combinatorics +1310.6648 Rings and Algebras +1310.6649 Phenomenology +1310.6654 Computer Vision and Pattern Recognition +1310.6656 Phenomenology +1310.6657 Information Theory +1310.6658 Number Theory +1310.6665 General Topology +1310.6669 Information Theory +1310.6676 +1310.6683 Analysis of PDEs +1310.6686 Software Engineering +1310.6687 Mesoscale and Nanoscale Physics +1310.6688 Instrumentation and Methods for Astrophysics +1310.6691 Number Theory +1310.6692 Probability +1310.6693 Materials Science +1310.6697 Earth and Planetary Astrophysics +1310.6700 Instrumentation and Methods for Astrophysics +1310.6702 History and Philosophy of Physics +1310.6703 Functional Analysis +1310.6704 Multiagent Systems +1310.6708 Phenomenology +1310.6711 Analysis of PDEs +1310.6714 Strongly Correlated Electrons +1310.6720 Soft Condensed Matter +1310.6724 Phenomenology +1310.6726 Combinatorics +1310.6727 Number Theory +1310.6730 Strongly Correlated Electrons +gr-qc/0501094 +hep-ex/9610008 Experiment +math/0106079 Representation Theory +math/0602490 Geometric Topology +math/0610242 Probability +0710.4424 Combinatorics +0711.2735 Representation Theory +0711.3129 +0803.1095 +0803.2239 +0806.0264 Quantum Algebra +0807.3663 +0808.0203 +0903.4288 Cosmology and Nongalactic Astrophysics +0907.1190 +0912.1272 Discrete Mathematics +1004.2471 Symplectic Geometry +1004.4950 Combinatorics +1005.0833 Analysis of PDEs +1007.2306 Number Theory +1010.1096 Cosmology and Nongalactic Astrophysics +1010.2310 Methodology +1011.5300 Dynamical Systems +1101.4584 Cosmology and Nongalactic Astrophysics +1101.4769 Cosmology and Nongalactic Astrophysics +1102.3329 Superconductivity +1103.4186 Earth and Planetary Astrophysics +1105.1502 Chaotic Dynamics +1105.2643 History and Philosophy of Physics +1106.1976 Probability +1107.1656 Cosmology and Nongalactic Astrophysics +1108.5410 Algebraic Geometry +1109.4130 Combinatorics +1111.1749 Theory +1111.4735 +1111.5273 Mesoscale and Nanoscale Physics +1112.4088 Operator Algebras +1112.4450 Superconductivity +1112.5134 Combinatorics +1201.1515 Differential Geometry +1201.2112 Quantum Gases +1202.0469 General Physics +1202.3513 Commutative Algebra +1202.5362 Molecular Networks +1203.0585 +1203.0938 Analysis of PDEs +1203.6786 Computational Geometry +1204.0393 Optics +1204.1238 Quantum Gases +1204.4554 Probability +1205.1420 Analysis of PDEs +1205.2897 +1205.6447 Algebraic Geometry +1206.0046 +1206.0412 Strongly Correlated Electrons +1206.1005 Solar and Stellar Astrophysics +1206.1649 Algebraic Geometry +1206.3663 General Physics +1206.3798 Classical Analysis and ODEs +1206.5182 Probability +1206.5661 Strongly Correlated Electrons +1206.6277 Strongly Correlated Electrons +1206.7103 Combinatorics +1207.2869 Theory +1207.3000 Cosmology and Nongalactic Astrophysics +1207.3401 Quantum Algebra +1207.4547 Strongly Correlated Electrons +1207.5304 Strongly Correlated Electrons +1208.3565 Cosmology and Nongalactic Astrophysics +1208.4223 +1208.5057 Theory +1208.5120 Operator Algebras +1209.0303 Chemical Physics +1209.2459 Theory +1209.2936 High Energy Astrophysical Phenomena +1209.3595 Algebraic Geometry +1209.3862 Fluid Dynamics +1209.5005 Mesoscale and Nanoscale Physics +1209.5824 Quantum Gases +1210.1535 +1210.4354 +1210.6886 +1210.7306 Cosmology and Nongalactic Astrophysics +1210.7930 Computational Physics +1210.8028 Chaotic Dynamics +1211.0318 Adaptation and Self-Organizing Systems +1211.2261 Lattice +1211.2302 +1211.2376 Computational Complexity +1211.2680 Quantum Gases +1211.4030 Theory +1211.6334 Dynamical Systems +1212.1783 Materials Science +1212.1888 Chemical Physics +1212.2392 High Energy Astrophysical Phenomena +1212.3102 +1212.3396 +1212.3862 Superconductivity +1212.4104 Superconductivity +1212.4111 Theory +1212.4780 +1212.4820 Theory +1212.6138 Chemical Physics +1212.6189 Quantum Gases +1212.6249 Theory +1212.6639 Experiment +1301.0685 Statistical Mechanics +1301.0803 Social and Information Networks +1301.2908 Probability +1301.3259 Algebraic Geometry +1301.5183 Phenomenology +1301.5558 +1301.6763 Earth and Planetary Astrophysics +1302.0640 Atomic Physics +1302.0645 Atomic Physics +1302.0650 Atomic Physics +1302.0651 Atomic Physics +1302.0760 Differential Geometry +1302.1739 Atomic Physics +1302.1743 Atomic Physics +1302.1988 Atomic Physics +1302.2042 Atomic Physics +1302.2092 Atomic Physics +1302.2465 Artificial Intelligence +1302.3688 Chaotic Dynamics +1302.3845 Algebraic Topology +1302.6319 Dynamical Systems +1302.6528 Digital Libraries +1302.6630 Soft Condensed Matter +1302.6931 Disordered Systems and Neural Networks +1303.0014 Complex Variables +1303.0017 Probability +1303.0035 Data Structures and Algorithms +1303.0315 Mesoscale and Nanoscale Physics +1303.0714 Optimization and Control +1303.0941 Group Theory +1303.0979 High Energy Astrophysical Phenomena +1303.1099 Complex Variables +1303.1179 High Energy Astrophysical Phenomena +1303.1209 Data Structures and Algorithms +1303.1212 Fluid Dynamics +1303.1214 Numerical Analysis +1303.1219 Methodology +1303.1220 Information Theory +1303.1232 Computation and Language +1303.1233 +1303.1238 Software Engineering +1303.1240 Probability +1303.1241 Numerical Analysis +1303.1243 Neural and Evolutionary Computing +1303.1247 Computers and Society +1303.1248 Portfolio Management +1303.1252 Plasma Physics +1303.1257 Probability +1303.1259 Exactly Solvable and Integrable Systems +1303.1261 Plasma Physics +1303.1264 Learning +1303.1269 +1303.1277 Combinatorics +1303.1279 Computational Geometry +1303.1280 Learning +1303.1283 Soft Condensed Matter +1303.1285 Information Theory +1303.1286 Category Theory +1303.1289 Experiment +1303.1290 Combinatorics +1303.1291 Materials Science +1303.1293 Functional Analysis +1303.1300 Classical Analysis and ODEs +1303.1302 Biomolecules +1303.1306 Representation Theory +1303.1312 Machine Learning +1303.1314 +1303.1316 High Energy Astrophysical Phenomena +1303.1319 Solar and Stellar Astrophysics +1303.1320 Number Theory +1303.1326 Quantitative Methods +1303.1327 Statistical Mechanics +1303.1331 Quantum Algebra +1303.1335 Rings and Algebras +1303.1342 Solar and Stellar Astrophysics +1303.1344 Logic +1303.1350 Complex Variables +1303.1354 Networking and Internet Architecture +1303.1355 Accelerator Physics +1303.1358 Accelerator Physics +1303.1360 Accelerator Physics +1303.1365 Accelerator Physics +1303.1370 High Energy Astrophysical Phenomena +1303.1372 Materials Science +1303.1373 Biological Physics +1303.1378 Logic +1303.1379 Distributed, Parallel, and Cluster Computing +1303.1381 Materials Science +1303.1384 Distributed, Parallel, and Cluster Computing +1303.1387 Analysis of PDEs +1303.1389 Theory +1303.1391 Solar and Stellar Astrophysics +1303.1392 Accelerator Physics +1303.1395 Combinatorics +1303.1402 Plasma Physics +1303.1405 Soft Condensed Matter +1303.1406 High Energy Astrophysical Phenomena +1303.1416 Classical Analysis and ODEs +1303.1417 Cryptography and Security +1303.1418 Other Computer Science +1303.1419 Software Engineering +1303.1422 Materials Science +1303.1423 Soft Condensed Matter +1303.1425 +1303.1428 +1303.1433 Solar and Stellar Astrophysics +1303.1435 Statistics Theory +1303.1436 Methodology +1303.1438 Strongly Correlated Electrons +1303.1442 Populations and Evolution +1303.1444 General Physics +astro-ph/0301132 +astro-ph/0310613 +astro-ph/0407089 +astro-ph/0407090 +astro-ph/0502208 +astro-ph/0602406 +1308.3932 General Physics +0903.1960 Theory +0905.4244 Number Theory +0905.4245 Number Theory +1001.1610 Software Engineering +1001.4499 Data Structures and Algorithms +1003.4521 Phenomenology +1005.3199 Logic in Computer Science +1005.3200 Logic in Computer Science +1008.0852 General Mathematics +1008.2269 Representation Theory +1010.4190 Symplectic Geometry +1010.5022 +1011.3776 Phenomenology +1011.5485 Functional Analysis +1012.4959 Algebraic Geometry +1101.5790 Probability +1102.2126 Phenomenology +1104.3968 Complex Variables +1105.4872 Algebraic Geometry +1106.2242 Group Theory +1107.1287 +1107.3079 Instrumentation and Methods for Astrophysics +1109.2315 Representation Theory +1110.3702 General Physics +1110.6548 Superconductivity +1111.1952 Quantum Gases +1112.0106 Astrophysics of Galaxies +1112.6160 Computational Geometry +1201.0703 Astrophysics of Galaxies +1201.4887 Differential Geometry +1201.5238 Metric Geometry +1201.5565 Differential Geometry +1201.5737 Fluid Dynamics +1202.0152 Accelerator Physics +1202.3949 Computational Complexity +1202.5585 Materials Science +1203.1249 Mesoscale and Nanoscale Physics +1203.3693 +1203.5845 Optimization and Control +1203.6084 +1204.2686 Astrophysics of Galaxies +1205.0197 Mesoscale and Nanoscale Physics +1205.1223 Symbolic Computation +1205.3133 +1206.0701 Numerical Analysis +1206.2501 Probability +1206.4238 Metric Geometry +1206.5665 General Physics +1206.6128 Statistics Theory +1207.1203 +1207.3333 Atomic Physics +1208.0257 Computational Complexity +1208.2049 Algebraic Geometry +1208.2280 Rings and Algebras +1208.3710 Experiment +1208.4873 Numerical Analysis +1208.5087 Probability +1208.5728 +1209.0900 Statistical Finance +1209.3360 +1209.6031 Theory +1210.3777 Materials Science +1210.4303 Mesoscale and Nanoscale Physics +1210.5625 +1210.5863 Discrete Mathematics +1210.7029 Astrophysics of Galaxies +1210.7793 Optics +1211.0969 Dynamical Systems +1211.1973 Astrophysics of Galaxies +1211.5801 +1212.2025 +1212.2320 Strongly Correlated Electrons +1212.4232 Superconductivity +1212.5059 +1212.5335 Mesoscale and Nanoscale Physics +1212.5464 Astrophysics of Galaxies +1212.5670 Strongly Correlated Electrons +1301.0005 General Physics +1301.0127 Computer Vision and Pattern Recognition +1301.0182 Group Theory +1301.2417 Biomolecules +1301.2460 Analysis of PDEs +1301.2686 Theory +1301.3740 High Energy Astrophysical Phenomena +1301.4110 Fluid Dynamics +1301.4182 Mesoscale and Nanoscale Physics +1301.7067 Experiment +1301.7222 Atomic Physics +1302.0417 +1302.1106 Mesoscale and Nanoscale Physics +1302.2123 Logic in Computer Science +1302.2584 Logic in Computer Science +1302.2932 Optics +1302.3753 Populations and Evolution +1302.4217 Optics +1302.6041 Astrophysics of Galaxies +1303.1369 Physics and Society +1303.2416 Data Structures and Algorithms +1303.3016 Biological Physics +1303.3271 Phenomenology +1303.3767 Combinatorics +1303.4144 Superconductivity +1303.4668 Numerical Analysis +1303.5380 High Energy Astrophysical Phenomena +1303.5628 Mesoscale and Nanoscale Physics +1303.5770 +1303.6254 Phenomenology +1303.6971 +1303.6994 Mesoscale and Nanoscale Physics +1303.7054 Information Theory +1304.0029 +1304.0150 Methodology +1304.0542 Quantitative Methods +1304.0769 Phenomenology +1304.1068 +1304.1742 Quantum Gases +1304.1893 Mesoscale and Nanoscale Physics +1304.2291 +1304.3039 Strongly Correlated Electrons +1304.3047 Analysis of PDEs +1304.4781 Cosmology and Nongalactic Astrophysics +1304.7034 Physics and Society +1304.7279 Statistical Mechanics +1304.7964 Chemical Physics +1305.0010 Cosmology and Nongalactic Astrophysics +1305.0561 Cosmology and Nongalactic Astrophysics +1305.1158 +1305.1844 Soft Condensed Matter +1305.2025 Instrumentation and Methods for Astrophysics +1305.2272 Mesoscale and Nanoscale Physics +1305.2820 Mesoscale and Nanoscale Physics +1305.2888 Mesoscale and Nanoscale Physics +1305.2907 Classical Physics +1305.2963 +1305.3439 High Energy Astrophysical Phenomena +1305.4187 Mesoscale and Nanoscale Physics +1305.4602 Optics +1305.4670 Superconductivity +1305.5651 Operator Algebras +1305.5925 Mesoscale and Nanoscale Physics +1305.6052 Logic in Computer Science +1305.6108 Programming Languages +1306.1106 High Energy Astrophysical Phenomena +1306.1344 General Physics +1306.1446 Instrumentation and Methods for Astrophysics +1306.1614 General Physics +1306.1616 General Physics +1306.2618 Theory +1306.3078 Optics +1306.3333 Materials Science +1306.3737 Exactly Solvable and Integrable Systems +1306.4697 Algebraic Geometry +1306.5257 Number Theory +1306.5364 +1306.6604 Phenomenology +1307.0131 Biological Physics +1307.1812 +1307.2073 Atomic Physics +1307.2618 Optics +1307.4716 Distributed, Parallel, and Cluster Computing +1307.5089 Differential Geometry +1307.5916 Earth and Planetary Astrophysics +1307.6883 Computational Engineering, Finance, and Science +1307.6995 Neural and Evolutionary Computing +1307.7004 Soft Condensed Matter +1307.7016 Superconductivity +1307.7414 Rings and Algebras +1307.7462 Superconductivity +1307.8027 Phenomenology +1307.8092 Theory +1307.8177 Algebraic Geometry +1308.0075 Applications +1308.0130 Chaotic Dynamics +1308.0207 +1308.0323 Theory +1308.0425 Analysis of PDEs +1308.0469 Applications +1308.0601 Superconductivity +1308.0608 Information Theory +1308.0610 High Energy Astrophysical Phenomena +1308.0621 Combinatorics +1308.0622 Soft Condensed Matter +1308.0625 Networking and Internet Architecture +1308.0626 Data Structures and Algorithms +1308.0628 Differential Geometry +1308.0631 Rings and Algebras +1308.0632 Information Theory +1308.0633 Mesoscale and Nanoscale Physics +1308.0636 Soft Condensed Matter +1308.0638 Strongly Correlated Electrons +1308.0644 Solar and Stellar Astrophysics +1308.0645 Solar and Stellar Astrophysics +1308.0647 Solar and Stellar Astrophysics +1308.0650 Information Theory +1308.0657 Methodology +1308.0658 Computation and Language +1308.0663 Dynamical Systems +1308.0668 Populations and Evolution +1308.0672 Instrumentation and Detectors +1308.0675 Combinatorics +1308.0676 Operator Algebras +1308.0679 Cryptography and Security +1308.0690 Networking and Internet Architecture +1308.0691 Methodology +1308.0692 Fluid Dynamics +1308.0693 Instrumentation and Detectors +1308.0699 Biomolecules +1308.0700 Phenomenology +1308.0701 Information Retrieval +1308.0702 Artificial Intelligence +1308.0703 Chemical Physics +1308.0705 Strongly Correlated Electrons +1308.0706 Fluid Dynamics +1308.0709 Geometric Topology +1308.0716 Popular Physics +1308.0717 Optimization and Control +1308.0719 Differential Geometry +1308.0721 Combinatorics +1308.0722 Space Physics +1308.0725 Computers and Society +1308.0726 Physics and Society +1308.0727 Commutative Algebra +1308.0729 Logic +1308.0733 Representation Theory +1308.0735 Accelerator Physics +1308.0741 Number Theory +1308.0743 Information Theory +1308.0746 Analysis of PDEs +1308.0748 Number Theory +1308.0749 Digital Libraries +1308.0753 Numerical Analysis +1308.0755 Exactly Solvable and Integrable Systems +1308.0756 Statistical Mechanics +1308.0758 Rings and Algebras +1308.0761 Artificial Intelligence +1308.0762 Human-Computer Interaction +1308.0763 Superconductivity +1308.0765 Physics and Society +1308.0766 Optics +1308.0767 Materials Science +1308.0768 Networking and Internet Architecture +1308.0769 Databases +1308.0772 Experiment +1308.0775 Optimization and Control +1308.0780 Logic +1308.0787 Algebraic Geometry +1308.0789 Metric Geometry +1308.0791 Metric Geometry +1308.0794 Materials Science +1308.0795 Networking and Internet Architecture +1308.0800 Biological Physics +1308.0804 +1308.0805 Fluid Dynamics +1308.0807 Artificial Intelligence +1308.0811 Mesoscale and Nanoscale Physics +1308.0818 Software Engineering +1308.0820 High Energy Astrophysical Phenomena +1308.0822 Physics Education +1308.0824 Cryptography and Security +1308.0827 Combinatorics +1308.0830 Solar and Stellar Astrophysics +1308.0833 +1308.0840 Hardware Architecture +1308.0844 Combinatorics +1308.0845 Phenomenology +1308.0847 Cosmology and Nongalactic Astrophysics +1308.0852 Fluid Dynamics +1308.0855 Number Theory +1308.0858 +1308.0859 Number Theory +1308.0860 +1308.0863 Combinatorics +1308.0864 Systems and Control +1308.0867 Graphics +1308.0869 Graphics +1308.0870 Information Theory +1308.0873 Materials Science +1308.0880 Number Theory +1308.0881 Analysis of PDEs +1308.0882 Earth and Planetary Astrophysics +1308.0883 Plasma Physics +1308.0890 Computer Vision and Pattern Recognition +1308.0892 History and Overview +1308.0893 Soft Condensed Matter +1308.0895 Group Theory +1308.0897 Computation and Language +1308.0907 Data Structures and Algorithms +1308.0909 Algebraic Geometry +1308.0910 Instrumentation and Methods for Astrophysics +1308.0911 +1308.0914 Optics +1308.0916 Information Theory +1308.0917 Instrumentation and Methods for Astrophysics +1308.0920 +1308.0926 Pattern Formation and Solitons +1308.0930 Optics +1308.0932 History and Philosophy of Physics +1308.0933 Probability +1308.0941 Soft Condensed Matter +1308.0953 Optics +1308.0955 Algebraic Geometry +1308.0960 Phenomenology +1308.0963 Analysis of PDEs +1308.0965 Mesoscale and Nanoscale Physics +1308.0969 Materials Science +1308.0975 Soft Condensed Matter +1308.0978 +1308.0980 Analysis of PDEs +1308.0981 Quantum Algebra +1308.0982 Theory +1308.0984 Superconductivity +1308.0990 Computer Science and Game Theory +1308.1001 High Energy Astrophysical Phenomena +1308.1007 +1308.1009 Learning +1308.1012 +1308.1016 General Mathematics +1308.1022 Number Theory +1308.1028 Social and Information Networks +1308.1029 Phenomenology +1308.1030 Chemical Physics +1308.1031 Distributed, Parallel, and Cluster Computing +1308.1039 Group Theory +1308.1041 Discrete Mathematics +1308.1042 Computers and Society +1308.1044 Group Theory +1308.1045 Analysis of PDEs +1308.1049 Multiagent Systems +1308.1053 Chemical Physics +1308.1056 Discrete Mathematics +1308.1059 Group Theory +1308.1064 Analysis of PDEs +1308.1066 Applications +1308.1068 Data Structures and Algorithms +1308.1074 Algebraic Geometry +1308.1075 Group Theory +1308.1076 +1308.1077 Phenomenology +math-ph/0611033 +0811.4613 Optimization and Control +0903.5535 Optimization and Control +0908.4455 +0909.2895 Analysis of PDEs +1003.5267 Materials Science +1004.3008 Materials Science +1006.1231 Data Structures and Algorithms +1007.1202 Theory +1010.2985 Discrete Mathematics +1012.4515 Phenomenology +1102.4276 +1105.3788 Optimization and Control +1108.3094 Materials Science +1109.1628 Differential Geometry +1109.2192 Analysis of PDEs +1109.4991 Algebraic Geometry +1110.4085 Analysis of PDEs +1111.2922 High Energy Astrophysical Phenomena +1111.5759 Theory +1112.5779 +1112.6037 Dynamical Systems +1201.2975 +1201.3006 Statistical Mechanics +1202.0001 Computational Physics +1202.1855 Optics +1202.1998 Methodology +1206.0298 High Energy Astrophysical Phenomena +1206.1963 Analysis of PDEs +1207.0577 Machine Learning +1207.1648 Quantum Gases +1207.2159 Phenomenology +1207.2205 Disordered Systems and Neural Networks +1208.5818 Soft Condensed Matter +1209.3917 +1209.5943 Probability +1210.2085 Machine Learning +1210.3087 Methodology +1210.3783 Number Theory +1210.5420 Analysis of PDEs +1211.1451 Networking and Internet Architecture +1211.3152 Phenomenology +1211.5558 +1212.0370 Number Theory +1212.2855 Group Theory +1212.3254 Theory +1212.5840 +1212.6737 +1301.1117 Differential Geometry +1301.4202 Number Theory +1301.6758 Strongly Correlated Electrons +1301.7348 +1302.3468 +1302.4414 Distributed, Parallel, and Cluster Computing +1302.6196 Classical Analysis and ODEs +1303.2194 Strongly Correlated Electrons +1303.3575 Exactly Solvable and Integrable Systems +1303.5114 +1303.5699 Phenomenology +1303.5784 Mesoscale and Nanoscale Physics +1303.6375 Analysis of PDEs +1303.6522 +1304.1599 Numerical Analysis +1304.2973 Classical Analysis and ODEs +1304.3587 Dynamical Systems +1304.7688 Biological Physics +1305.2351 +1305.2918 Strongly Correlated Electrons +1305.4069 Atomic Physics +1305.6433 +1305.7319 Optimization and Control +1306.0046 Solar and Stellar Astrophysics +1306.0776 Optics +1306.0909 Phenomenology +1306.5088 Logic in Computer Science +1306.5576 +1307.0458 Cosmology and Nongalactic Astrophysics +1307.0667 Digital Libraries +1307.2779 Discrete Mathematics +1307.3117 Quantum Gases +1307.3577 Cosmology and Nongalactic Astrophysics +1307.7306 Methodology +1307.8023 Solar and Stellar Astrophysics +1307.8096 Strongly Correlated Electrons +1307.8101 Instrumentation and Detectors +1307.8434 Solar and Stellar Astrophysics +1308.1686 +1308.1741 Strongly Correlated Electrons +1308.2431 +1308.4118 Atomic Physics +1308.4818 Superconductivity +1308.6077 +1308.6499 +1309.0955 +1309.1913 Optimization and Control +1309.4215 Materials Science +1309.5897 Plasma Physics +1309.6257 Dynamical Systems +1309.6365 Solar and Stellar Astrophysics +1309.6782 Analysis of PDEs +1309.6965 General Mathematics +1309.7180 Exactly Solvable and Integrable Systems +1309.7189 Optimization and Control +1310.0280 Experiment +1310.2206 Information Theory +1310.2208 Information Theory +1310.2293 Medical Physics +1310.2305 Information Theory +1310.2433 Differential Geometry +1310.2500 Mesoscale and Nanoscale Physics +1310.2547 Social and Information Networks +1310.2579 Phenomenology +1310.2598 Methodology +1310.2599 Numerical Analysis +1310.2602 +1310.2620 Instrumentation and Detectors +1310.2624 Analysis of PDEs +1310.2625 Representation Theory +1310.2629 Probability +1310.2631 Formal Languages and Automata Theory +1310.2635 Fluid Dynamics +1310.2636 Physics and Society +1310.2641 Probability +1310.2646 Learning +1310.2649 Instrumentation and Detectors +1310.2650 Fluid Dynamics +1310.2654 Instrumentation and Detectors +1310.2658 Optimization and Control +1310.2660 +1310.2662 Fluid Dynamics +1310.2666 Functional Analysis +1310.2667 Cosmology and Nongalactic Astrophysics +1310.2668 Dynamical Systems +1310.2670 Fluid Dynamics +1310.2682 Algebraic Geometry +1310.2686 Information Theory +1310.2691 Number Theory +1310.2692 Accelerator Physics +1310.2694 Atomic Physics +1310.2699 Analysis of PDEs +1310.2701 Optimization and Control +1310.2705 Instrumentation and Methods for Astrophysics +1310.2706 +1310.2707 Complex Variables +1310.2708 +1310.2710 Materials Science +1310.2713 Metric Geometry +1310.2715 Number Theory +1310.2716 Disordered Systems and Neural Networks +1310.2719 Statistical Mechanics +1310.2721 +1310.2727 Analysis of PDEs +1310.2732 Optics +1310.2736 Chemical Physics +1310.2738 Optimization and Control +1310.2740 Dynamical Systems +1310.2741 Programming Languages +1310.2742 Analysis of PDEs +1310.2743 Artificial Intelligence +1310.2745 Computational Geometry +1310.2751 Materials Science +1310.2752 Analysis of PDEs +1310.2759 Phenomenology +1310.2763 Solar and Stellar Astrophysics +1310.2775 Discrete Mathematics +1310.2777 Representation Theory +1310.2778 Symbolic Computation +1310.2780 Cosmology and Nongalactic Astrophysics +1310.2785 Rings and Algebras +1310.2787 Analysis of PDEs +1310.2796 Solar and Stellar Astrophysics +1310.2797 Artificial Intelligence +1310.2798 General Finance +1310.2804 Statistical Mechanics +1310.2805 Artificial Intelligence +1310.2809 Information Theory +1310.2810 Algebraic Geometry +1310.2812 Statistical Mechanics +1310.2814 Distributed, Parallel, and Cluster Computing +1310.2816 Machine Learning +1310.2823 Formal Languages and Automata Theory +1310.2826 Materials Science +1310.2827 Numerical Analysis +1310.2829 High Energy Astrophysical Phenomena +1310.2832 Computers and Society +1310.2833 Functional Analysis +1310.2835 Solar and Stellar Astrophysics +1310.2838 Theory +1310.2842 Numerical Analysis +1310.2843 Phenomenology +1310.2844 +1310.2846 Exactly Solvable and Integrable Systems +1310.2847 Numerical Analysis +1310.2851 Differential Geometry +1310.2857 Optics +1310.2859 Analysis of PDEs +1310.2860 Information Theory +1310.2861 Networking and Internet Architecture +1310.2862 +1310.2864 Computers and Society +1310.2873 Applications +1310.2876 Fluid Dynamics +1310.2881 Experiment +1310.2882 Information Theory +1310.2883 Fluid Dynamics +1310.2886 Other Computer Science +1310.2890 History and Philosophy of Physics +1310.2899 Differential Geometry +1310.2903 Commutative Algebra +1310.2906 Neurons and Cognition +1310.2907 Geometric Topology +1310.2909 Numerical Analysis +1310.2911 Group Theory +1310.2914 Mesoscale and Nanoscale Physics +1310.2915 Numerical Analysis +1310.2922 Astrophysics of Galaxies +1310.2923 Graphics +1310.2925 Fluid Dynamics +1310.2928 Discrete Mathematics +1310.2930 Combinatorics +physics/0309078 Optics +physics/0309125 Optics +0710.4778 Number Theory +0803.4469 Other Condensed Matter +0904.2826 Phenomenology +0911.3060 Number Theory +1005.2316 Group Theory +1005.2666 Category Theory +1006.2516 Quantum Algebra +1008.2351 Quantum Algebra +1010.5444 +1012.3687 Quantum Algebra +1012.4719 +1101.2319 Symplectic Geometry +1102.1225 Operator Algebras +1103.6002 Strongly Correlated Electrons +1105.2217 Theory +1105.4554 Differential Geometry +1106.1619 Group Theory +1109.2367 Quantum Algebra +1109.3786 Number Theory +1109.5334 +1109.6853 Differential Geometry +1110.2269 Combinatorics +1112.2666 Geometric Topology +1201.1750 +1203.0659 Combinatorics +1203.3187 Combinatorics +1203.3371 Number Theory +1204.6312 High Energy Astrophysical Phenomena +1205.0886 Materials Science +1205.5151 Cosmology and Nongalactic Astrophysics +1205.7086 Number Theory +1206.2618 +1207.0111 Commutative Algebra +1207.1896 Commutative Algebra +1207.7059 Number Theory +1208.1562 Strongly Correlated Electrons +1208.2410 Strongly Correlated Electrons +1208.2683 Combinatorics +1208.3862 Statistics Theory +1208.4329 Number Theory +1210.0121 Chemical Physics +1210.4951 Rings and Algebras +1210.6098 Mesoscale and Nanoscale Physics +1210.6506 Category Theory +1210.7800 Cosmology and Nongalactic Astrophysics +1211.4175 General Topology +1211.5666 Statistical Mechanics +1211.6991 +1212.3515 History and Overview +1301.0281 +1301.3048 +1301.5933 Networking and Internet Architecture +1301.6643 Information Theory +1302.0579 +1302.1717 Optimization and Control +1302.2497 Representation Theory +1302.2981 Phenomenology +1303.3265 Machine Learning +1303.5674 Theory +1303.5898 Disordered Systems and Neural Networks +1303.6186 Logic in Computer Science +1303.6511 Materials Science +1304.2801 Differential Geometry +1304.5569 +1304.6425 +1304.7611 Strongly Correlated Electrons +1305.0389 Combinatorics +1305.2943 Probability +1305.4919 Theory +1305.5260 Cosmology and Nongalactic Astrophysics +1305.6272 +1305.7045 Phenomenology +1306.0320 Quantum Gases +1306.0869 Atomic Physics +1306.1541 Rings and Algebras +1306.1786 Mesoscale and Nanoscale Physics +1306.2605 Cell Behavior +1306.2683 Cosmology and Nongalactic Astrophysics +1306.3580 Theory +1306.3891 Lattice +1306.3899 Information Theory +1306.4626 Physics and Society +1306.4783 +1306.5638 Chemical Physics +1306.6854 Differential Geometry +1307.0805 Information Theory +1307.2675 Strongly Correlated Electrons +1307.3073 Data Structures and Algorithms +1307.3311 Phenomenology +1307.5979 +1307.7188 Quantum Gases +1307.7693 General Mathematics +1308.4278 Mesoscale and Nanoscale Physics +1309.0779 Soft Condensed Matter +1309.1136 Cosmology and Nongalactic Astrophysics +1309.1804 Populations and Evolution +1309.2110 Mesoscale and Nanoscale Physics +1309.2219 +1309.5189 Combinatorics +1309.7448 Phenomenology +1310.1207 Lattice +1310.1741 Experiment +1310.1755 Materials Science +1310.2141 Analysis of PDEs +1310.2496 Commutative Algebra +1310.2935 Computer Science and Game Theory +1310.2967 Fluid Dynamics +1310.3267 Astrophysics of Galaxies +1310.3399 Computer Vision and Pattern Recognition +1310.4775 +1310.5243 Statistical Mechanics +1310.5432 +1310.5807 +1310.6520 Lattice +1310.6680 Solar and Stellar Astrophysics +1310.7384 +1310.7394 Differential Geometry +1310.7514 +1310.7905 Representation Theory +1310.8050 Algebraic Geometry +1310.8124 Numerical Analysis +1310.8222 Soft Condensed Matter +1310.8293 Social and Information Networks +1310.8294 Social and Information Networks +1310.8295 Social and Information Networks +1310.8301 Astrophysics of Galaxies +1310.8309 +1310.8317 Computational Complexity +1310.8319 Lattice +1310.8320 Learning +1310.8325 Algebraic Geometry +1310.8326 Lattice +1310.8328 Dynamical Systems +1310.8330 +1310.8333 Atomic Physics +1310.8335 Lattice +1310.8339 Methodology +1310.8340 Complex Variables +1310.8342 Other Computer Science +1310.8353 Probability +1310.8357 Neurons and Cognition +1310.8369 Number Theory +1310.8371 Rings and Algebras +1310.8375 Superconductivity +1310.8377 Adaptation and Self-Organizing Systems +1310.8378 Combinatorics +1310.8381 Data Structures and Algorithms +1310.8383 Computers and Society +1310.8388 Social and Information Networks +1310.8390 Differential Geometry +1310.8391 Probability +1310.8392 Distributed, Parallel, and Cluster Computing +1310.8393 Superconductivity +1310.8394 Mesoscale and Nanoscale Physics +1310.8395 Soft Condensed Matter +1310.8397 Numerical Analysis +1310.8398 Differential Geometry +1310.8399 Rings and Algebras +1310.8400 Probability +1310.8401 Group Theory +1310.8402 Strongly Correlated Electrons +1310.8405 Symplectic Geometry +1310.8406 Combinatorics +1310.8411 Optimization and Control +1310.8413 Group Theory +1310.8417 Solar and Stellar Astrophysics +1310.8421 Classical Analysis and ODEs +1310.8423 Lattice +1310.8425 Classical Analysis and ODEs +1310.8431 Trading and Market Microstructure +1310.8433 Plasma Physics +1310.8434 Mesoscale and Nanoscale Physics +1310.8436 Mesoscale and Nanoscale Physics +1310.8437 Plasma Physics +1310.8440 Classical Analysis and ODEs +1310.8442 Combinatorics +1310.8444 Atomic and Molecular Clusters +1310.8445 Plasma Physics +1310.8448 Phenomenology +1310.8450 Plasma Physics +1310.8453 Algebraic Geometry +1310.8456 Distributed, Parallel, and Cluster Computing +1310.8457 +1310.8458 Numerical Analysis +1310.8460 Astrophysics of Galaxies +1310.8462 Databases +1310.8467 Networking and Internet Architecture +1310.8468 Information Theory +1310.8469 Other Quantitative Biology +1310.8472 Algebraic Geometry +1310.8473 Theory +1310.8474 Analysis of PDEs +1310.8477 High Energy Astrophysical Phenomena +1310.8486 Distributed, Parallel, and Cluster Computing +1310.8489 Computers and Society +1310.8491 Metric Geometry +1310.8493 Classical Analysis and ODEs +1310.8494 Hardware Architecture +1310.8495 +1310.8502 Classical Analysis and ODEs +1310.8504 Spectral Theory +1310.8506 Solar and Stellar Astrophysics +1310.8512 Exactly Solvable and Integrable Systems +1310.8514 Theory +1310.8520 Materials Science +1310.8521 Lattice +1310.8525 Theory +1310.8526 +1310.8527 Applications +1310.8532 Information Theory +1310.8533 Combinatorics +1310.8535 Lattice +1310.8539 History and Philosophy of Physics +1310.8540 Information Theory +1310.8542 Dynamical Systems +1310.8547 Experiment +1310.8548 Materials Science +1310.8556 Combinatorics +1310.8559 Spectral Theory +1310.8560 Dynamical Systems +1310.8565 Soft Condensed Matter +1310.8568 Logic in Computer Science +1310.8571 +1310.8572 Number Theory +1310.8575 Earth and Planetary Astrophysics +1310.8583 Computational Engineering, Finance, and Science +1310.8585 Human-Computer Interaction +1310.8587 Group Theory +1310.8588 Artificial Intelligence +1310.8593 Experiment +1310.8595 Complex Variables +1310.8597 Phenomenology +1310.8598 Quantitative Methods +1310.8600 +1310.8604 Risk Management +1310.8612 Machine Learning +1310.8614 High Energy Astrophysical Phenomena +1310.8618 Machine Learning +1310.8619 Other Quantitative Biology +1310.8621 Phenomenology +1310.8624 Atomic Physics +1310.8631 Computer Science and Game Theory +1310.8639 Numerical Analysis +1310.8642 Phenomenology +1310.8649 Spectral Theory +1310.8650 Plasma Physics +1310.8657 Theory +cond-mat/0601204 Other Condensed Matter +math/0609598 Classical Analysis and ODEs +nlin/0111060 Exactly Solvable and Integrable Systems +0707.0082 Statistics Theory +0711.3659 Category Theory +0805.1679 Symplectic Geometry +0808.0595 Superconductivity +0808.1916 +0809.0928 Materials Science +0810.0794 Representation Theory +0812.1408 Dynamical Systems +0812.4346 Discrete Mathematics +0904.1099 Category Theory +0904.3160 Pattern Formation and Solitons +0904.4167 Category Theory +0905.2499 Exactly Solvable and Integrable Systems +0906.2680 Phenomenology +0907.3635 Cosmology and Nongalactic Astrophysics +0909.1486 Category Theory +0911.1689 Category Theory +0912.5178 General Topology +1001.0303 Rings and Algebras +1001.1459 Rings and Algebras +1001.4650 Algebraic Topology +1003.4116 Number Theory +1003.5872 Algebraic Geometry +1004.4124 +1005.2008 Representation Theory +1005.2036 Probability +1006.4476 Geometric Topology +1006.4776 Rings and Algebras +1008.2279 Probability +1008.4515 Phenomenology +1009.0803 Category Theory +1009.2217 +1009.3972 Algebraic Topology +1009.4242 Logic +1009.4892 Rings and Algebras +1011.1212 Quantitative Methods +1012.0691 Probability +1012.1430 Algebraic Topology +1012.2630 +1012.5041 Information Theory +1101.1627 Functional Analysis +1102.0216 Theory +1102.0715 Algebraic Topology +1102.2413 Information Theory +1102.3176 Information Theory +1102.3354 +1104.0360 Classical Analysis and ODEs +1104.3344 Artificial Intelligence +1104.3345 Artificial Intelligence +1104.4874 Distributed, Parallel, and Cluster Computing +1105.1812 Physics and Society +1105.1814 Physics and Society +1106.5467 Quantum Algebra +1106.5611 Number Theory +1106.6098 Medical Physics +1107.3878 +1107.3991 Probability +1108.0065 Discrete Mathematics +1108.5116 Statistics Theory +1108.5713 Number Theory +1109.1973 Theory +1109.2419 Functional Analysis +1109.4448 Geophysics +1109.6747 +1110.3741 Learning +1110.5350 General Finance +1110.6285 Computational Physics +1111.2177 +1111.6615 Number Theory +1111.6792 Instrumentation and Methods for Astrophysics +1111.6793 Instrumentation and Methods for Astrophysics +1111.7228 K-Theory and Homology +1112.0867 Probability +1112.0951 +1112.3839 Optimization and Control +1112.4528 Phenomenology +1112.5462 Mesoscale and Nanoscale Physics +1112.6234 Information Theory +1201.0794 Machine Learning +1201.1107 Cell Behavior +1201.1849 Differential Geometry +1201.3230 +1201.3558 Algebraic Geometry +1201.4097 +1201.5348 Optics +1201.5965 Metric Geometry +1202.0124 Data Analysis, Statistics and Probability +1202.1285 Theory +1202.2483 Combinatorics +1202.2547 Complex Variables +1202.3461 Databases +1202.6674 Phenomenology +1203.0719 Algebraic Geometry +1203.1220 Quantum Gases +1203.2625 Astrophysics of Galaxies +1203.2669 Superconductivity +1203.3102 Algebraic Geometry +1203.3865 Number Theory +1203.4000 +1203.4446 +1203.4525 +1203.4956 Operator Algebras +1203.6417 +1204.1320 Strongly Correlated Electrons +1204.3465 Algebraic Topology +1204.4845 +1204.4901 +1204.4914 Artificial Intelligence +1204.5144 +1204.5334 Other Statistics +1204.5822 Operator Algebras +1204.6652 Probability +1205.1209 Number Theory +1205.1431 Combinatorics +1205.1765 Systems and Control +1205.3373 Number Theory +1205.3458 +1205.3936 Materials Science +1205.5503 Atomic Physics +1205.5770 Numerical Analysis +1205.5795 Mesoscale and Nanoscale Physics +1205.6393 Operator Algebras +1206.0090 Theory +1206.1326 Superconductivity +1206.1542 +1206.3428 Optics +1206.4563 Phenomenology +1206.5650 Rings and Algebras +1206.5667 Space Physics +1206.5858 Optics +1207.0175 Analysis of PDEs +1207.0601 +1207.2294 Cosmology and Nongalactic Astrophysics +1207.3533 Mesoscale and Nanoscale Physics +1207.3717 Theory +1207.4204 Theory +1207.6038 Data Analysis, Statistics and Probability +1207.6231 Cryptography and Security +1207.6756 Probability +1207.6913 Strongly Correlated Electrons +1207.7171 Theory +1208.0136 Dynamical Systems +1208.0439 Statistical Mechanics +1208.0654 Mesoscale and Nanoscale Physics +1208.0687 Statistics Theory +1208.0959 Learning +1208.1300 Quantum Gases +1208.1361 Combinatorics +1208.1415 +1208.1448 Information Retrieval +1208.1669 Differential Geometry +1208.2354 Physics and Society +1208.2362 Artificial Intelligence +1208.2464 Dynamical Systems +1208.2901 Mesoscale and Nanoscale Physics +1208.2904 Pattern Formation and Solitons +1208.4156 +1208.4267 Functional Analysis +1208.5671 +1208.6043 +1208.6540 Quantum Gases +1209.0770 Superconductivity +1209.0774 Optics +1209.2757 +1209.2814 Statistical Mechanics +1209.3265 +1209.3874 Strongly Correlated Electrons +1209.5057 +1209.5087 Analysis of PDEs +1209.5232 +1209.5694 Dynamical Systems +1209.5963 Statistical Mechanics +1209.6072 +1210.1106 Lattice +1210.2685 Strongly Correlated Electrons +1210.3611 Atomic Physics +1210.4368 Strongly Correlated Electrons +1210.4375 Classical Physics +1210.4406 +1210.5265 Exactly Solvable and Integrable Systems +1210.5385 Astrophysics of Galaxies +1210.5412 Superconductivity +1210.5996 Mesoscale and Nanoscale Physics +1210.6198 Systems and Control +1210.7288 Superconductivity +1210.7977 Phenomenology +1210.8197 Systems and Control +1211.0522 +1211.0593 Mesoscale and Nanoscale Physics +1211.1150 Experiment +1211.1222 Mesoscale and Nanoscale Physics +1211.1501 Operator Algebras +1211.2108 Solar and Stellar Astrophysics +1211.2798 Quantitative Methods +1211.2988 Number Theory +1211.3740 General Physics +1211.4316 Phenomenology +1211.5713 Soft Condensed Matter +1211.6174 Instrumentation and Methods for Astrophysics +1211.6885 Fluid Dynamics +1211.6890 Soft Condensed Matter +1212.1189 Cosmology and Nongalactic Astrophysics +1212.1655 Mesoscale and Nanoscale Physics +1212.1798 Robotics +1212.2009 Superconductivity +1212.4195 Cryptography and Security +1212.4775 Cryptography and Security +1212.4793 General Topology +1212.5755 Combinatorics +1212.5988 Rings and Algebras +1212.6177 Digital Libraries +1212.6216 Artificial Intelligence +1212.6471 Classical Analysis and ODEs +1301.0680 Instrumentation and Methods for Astrophysics +1301.0766 Solar and Stellar Astrophysics +1301.0827 +1301.0828 Rings and Algebras +1301.0833 Combinatorics +1301.0834 Data Structures and Algorithms +1301.0836 Experiment +1301.0844 High Energy Astrophysical Phenomena +1301.0848 Geometric Topology +1301.0849 Programming Languages +1301.0860 Instrumentation and Methods for Astrophysics +1301.0861 Strongly Correlated Electrons +1301.0862 Computational Complexity +1301.0867 Differential Geometry +1301.0868 Theory +1301.0869 Materials Science +1301.0872 K-Theory and Homology +1301.0884 Networking and Internet Architecture +1301.0886 Networking and Internet Architecture +1301.0891 Statistics Theory +1301.0902 Data Structures and Algorithms +1301.0907 Portfolio Management +1301.0909 Analysis of PDEs +1301.0917 Symbolic Computation +1301.0920 Algebraic Geometry +1301.0921 Dynamical Systems +1301.0923 +1301.0926 Information Theory +1301.0927 Analysis of PDEs +1301.0928 Optimization and Control +1301.0929 Neural and Evolutionary Computing +1301.0930 Systems and Control +1301.0932 Social and Information Networks +1301.0934 Data Analysis, Statistics and Probability +1301.0935 Information Theory +1301.0936 +1301.0937 Optimization and Control +1301.0939 Neural and Evolutionary Computing +1301.0944 Materials Science +1301.0945 Differential Geometry +1301.0947 Rings and Algebras +1301.0948 Number Theory +1301.0951 Analysis of PDEs +1301.0952 Phenomenology +1301.0953 Other Quantitative Biology +1301.0957 Information Theory +1301.0960 Populations and Evolution +1301.0961 Rings and Algebras +1301.0962 Phenomenology +1301.0963 Computers and Society +1301.0964 High Energy Astrophysical Phenomena +1301.0966 Mesoscale and Nanoscale Physics +1301.0977 Databases +1301.0978 Metric Geometry +1301.0984 Cell Behavior +1301.0986 Optimization and Control +1301.0990 Exactly Solvable and Integrable Systems +1301.0995 Data Structures and Algorithms +1301.0996 Neurons and Cognition +1301.0997 Discrete Mathematics +1301.0998 Computer Vision and Pattern Recognition +1301.1001 Functional Analysis +1301.1003 Databases +1301.1009 +1301.1014 Differential Geometry +1301.1017 Quantitative Methods +1301.1019 Data Analysis, Statistics and Probability +1301.1020 Optimization and Control +1301.1025 Classical Analysis and ODEs +1301.1026 Cryptography and Security +1301.1031 Neurons and Cognition +1301.1044 +1301.1048 Analysis of PDEs +1301.1049 Lattice +1301.1056 Earth and Planetary Astrophysics +1301.1060 Instrumentation and Methods for Astrophysics +1301.1071 Distributed, Parallel, and Cluster Computing +1301.1072 +1301.1073 +1301.1077 Populations and Evolution +1301.1080 Classical Analysis and ODEs +1301.1083 Molecular Networks +1301.1085 Software Engineering +1301.1088 Chemical Physics +1301.1089 Algebraic Geometry +1301.1095 Complex Variables +1301.1096 +1301.1097 Combinatorics +1301.1103 Instrumentation and Detectors +1301.1108 Mesoscale and Nanoscale Physics +1301.1111 Populations and Evolution +1301.1121 Theory +1301.1122 Soft Condensed Matter +1301.1124 Number Theory +1301.1125 Differential Geometry +1301.1133 Differential Geometry +1301.1134 Networking and Internet Architecture +1301.1135 Trading and Market Microstructure +1301.1142 Algebraic Geometry +1301.1143 Atomic Physics +1301.1145 Quantum Gases +1301.1149 Rings and Algebras +1301.1152 General Topology +1301.1154 Commutative Algebra +1301.1155 Subcellular Processes +1301.1157 Combinatorics +1301.1158 Experiment +1301.1160 +1301.1161 Instrumentation and Methods for Astrophysics +1301.1162 +1301.1164 Materials Science +1301.1165 Probability +1301.1166 +1301.1168 Algebraic Geometry +1301.1169 Biological Physics +1301.1171 Numerical Analysis +1301.1172 Materials Science +1301.1176 Commutative Algebra +1301.1178 High Energy Astrophysical Phenomena +1301.1179 Experiment +1301.1182 Probability +1301.1183 Quantum Gases +1301.1184 Methodology +1301.1191 Applications +1301.1195 Cryptography and Security +1301.1197 Logic +1301.1199 Probability +1301.1206 Solar and Stellar Astrophysics +1301.1208 Methodology +1301.1221 Probability +1301.1227 Phenomenology +1301.1232 Group Theory +1301.1238 Differential Geometry +1301.1246 Instrumentation and Methods for Astrophysics +1301.1248 Number Theory +1301.1249 Solar and Stellar Astrophysics +1301.1253 Cosmology and Nongalactic Astrophysics +1301.1254 Machine Learning +1301.1260 Analysis of PDEs +1301.1261 Other Computer Science +1301.1262 Cryptography and Security +1301.1266 Chemical Physics +1301.1268 Networking and Internet Architecture +1301.1271 +1301.1278 Materials Science +1301.1279 Networking and Internet Architecture +1301.1281 Materials Science +1301.1282 Analysis of PDEs +1301.1283 High Energy Astrophysical Phenomena +1301.1284 +1301.1293 Probability +1301.1295 Geophysics +1301.1297 Mesoscale and Nanoscale Physics +1301.1299 Machine Learning +1301.1302 Mesoscale and Nanoscale Physics +1301.1308 Phenomenology +1301.1313 Optics +1301.1315 Differential Geometry +1301.1319 Materials Science +1301.1320 Complex Variables +1301.1324 Combinatorics +1301.1328 Dynamical Systems +1301.1333 Optimization and Control +cond-mat/0411059 Other Condensed Matter +cond-mat/0605092 Statistical Mechanics +cond-mat/0609339 Superconductivity +math/0405430 Symplectic Geometry +math/0510523 Symplectic Geometry +math/0601085 Algebraic Topology +math/0605360 Differential Geometry +math/0612214 Commutative Algebra +nlin/0505004 Exactly Solvable and Integrable Systems +0708.3220 Multiagent Systems +0710.3972 Data Analysis, Statistics and Probability +0802.1740 Other Condensed Matter +0809.3105 General Mathematics +0812.1811 Physics and Society +0905.2345 Algebraic Geometry +0907.1813 Functional Analysis +0911.4978 Operator Algebras +1006.1344 +1101.4603 Information Theory +1101.5720 Materials Science +1102.0204 Information Theory +1102.0400 Materials Science +1102.5430 Operator Algebras +1103.1917 Data Structures and Algorithms +1104.3973 Complex Variables +1105.4172 Probability +1106.1977 Category Theory +1107.3054 Cosmology and Nongalactic Astrophysics +1110.2860 Optimization and Control +1110.3756 Classical Analysis and ODEs +1111.4674 +1111.6232 Statistics Theory +1112.1215 Combinatorics +1201.1684 Information Theory +1201.2198 Probability +1201.2388 History and Overview +1201.4715 Programming Languages +1201.4740 Materials Science +1202.2373 +1203.4822 Data Structures and Algorithms +1203.4888 Strongly Correlated Electrons +1204.3134 Mesoscale and Nanoscale Physics +1204.3866 Lattice +1204.6178 Systems and Control +1205.0133 +1205.2862 Operator Algebras +1206.0123 Molecular Networks +1206.3985 Computation +1207.0477 Mesoscale and Nanoscale Physics +1207.0748 Theory +1207.2933 +1208.0042 High Energy Astrophysical Phenomena +1208.0099 Instrumentation and Methods for Astrophysics +1208.1764 +1208.3163 Spectral Theory +1208.5941 Materials Science +1208.6556 Statistical Mechanics +1209.2776 Category Theory +1209.3987 Rings and Algebras +1210.0271 Information Theory +1210.1846 Numerical Analysis +1210.2352 Metric Geometry +1210.2725 Cosmology and Nongalactic Astrophysics +1210.5449 +1210.7267 Probability +1211.0226 Optics +1211.0294 Strongly Correlated Electrons +1211.0673 Networking and Internet Architecture +1211.0933 +1211.1748 Strongly Correlated Electrons +1211.1831 Quantum Gases +1211.2946 Networking and Internet Architecture +1211.4417 Space Physics +1211.5387 High Energy Astrophysical Phenomena +1211.5918 Probability +1211.6067 Strongly Correlated Electrons +1211.6504 Classical Analysis and ODEs +1211.7070 Theory +1212.2979 Theory +1212.3710 +1212.5510 Quantitative Methods +1301.1316 +1301.3079 General Physics +1301.6909 Spectral Theory +1302.3633 Lattice +1302.3854 Mesoscale and Nanoscale Physics +1302.5049 Mesoscale and Nanoscale Physics +1302.6579 Phenomenology +1303.0105 Mesoscale and Nanoscale Physics +1303.0916 Computer Science and Game Theory +1303.2372 Cosmology and Nongalactic Astrophysics +1303.2510 Mesoscale and Nanoscale Physics +1303.2912 Artificial Intelligence +1303.4682 Phenomenology +1303.5198 Experiment +1303.5249 Strongly Correlated Electrons +1303.6638 Phenomenology +1303.7185 Theory +1303.7198 Metric Geometry +1304.0266 +1304.1376 +1304.1580 Probability +1304.2038 Algebraic Geometry +1304.2279 +1304.2521 Plasma Physics +1304.3616 Phenomenology +1304.4402 Exactly Solvable and Integrable Systems +1304.5368 Phenomenology +1304.5870 Data Structures and Algorithms +1304.6279 Logic in Computer Science +1304.7030 +1304.7598 Phenomenology +1304.7618 +1304.7702 Mesoscale and Nanoscale Physics +1304.7913 Mesoscale and Nanoscale Physics +1304.7949 +1305.1247 Theory +1305.1326 +1305.2095 Statistical Mechanics +1305.3132 Theory +1305.3298 Atomic Physics +1305.3322 +1305.3452 Phenomenology +1305.3560 Instrumentation and Detectors +1305.3598 Phenomenology +1305.3750 Category Theory +1305.3854 Phenomenology +1305.4575 Phenomenology +1305.4777 Theory +1305.5315 Populations and Evolution +1305.6155 Cosmology and Nongalactic Astrophysics +1305.7049 Phenomenology +1305.7327 +1306.0220 Theory +1306.0346 Solar and Stellar Astrophysics +1306.0358 Functional Analysis +1306.0531 Combinatorics +1306.0744 Theory +1306.0903 +1306.0912 Atomic Physics +1306.0960 Quantum Gases +1306.1700 Cosmology and Nongalactic Astrophysics +1306.2512 Theory +1306.2657 Phenomenology +1306.3029 Phenomenology +1306.3106 +1306.3371 Molecular Networks +1306.3848 Statistical Mechanics +1306.3995 +1306.4008 Strongly Correlated Electrons +1306.4454 Digital Libraries +1306.4563 Statistical Mechanics +1306.5059 Theory +1306.5544 Cosmology and Nongalactic Astrophysics +1306.5546 Phenomenology +1306.5753 Disordered Systems and Neural Networks +1306.6364 General Physics +1306.6831 Materials Science +1307.0004 Strongly Correlated Electrons +1307.0144 Quantum Gases +1307.1290 Theory +1307.1533 Optics +1307.1534 Optics +1307.2090 Physics and Society +1307.2238 Phenomenology +1307.4228 Computer Science and Game Theory +1307.4723 Soft Condensed Matter +1307.5499 +1307.5766 Phenomenology +1307.6781 Phenomenology +1307.7274 Phenomenology +1307.7623 Cosmology and Nongalactic Astrophysics +1307.7685 +1307.8258 Mesoscale and Nanoscale Physics +1308.0249 General Physics +1308.0420 Differential Geometry +1308.0442 Solar and Stellar Astrophysics +1308.1112 Phenomenology +1308.1137 Dynamical Systems +1308.2106 Earth and Planetary Astrophysics +1308.2158 +1308.6256 Pricing of Securities +1309.0283 Mesoscale and Nanoscale Physics +1309.1409 +1309.2028 +1309.2278 Solar and Stellar Astrophysics +1309.2967 Differential Geometry +1309.3731 Analysis of PDEs +1309.3758 +1309.3851 Probability +1309.4073 Methodology +1309.4085 Artificial Intelligence +1309.4107 Materials Science +1309.4109 Computational Geometry +1309.4111 Machine Learning +1309.4116 Physics and Society +1309.4123 +1309.4124 +1309.4128 Analysis of PDEs +1309.4133 Theory +1309.4134 Number Theory +1309.4140 Computational Complexity +1309.4141 Information Theory +1309.4142 Operator Algebras +1309.4145 Algebraic Geometry +1309.4150 Lattice +1309.4151 Applications +1309.4152 Functional Analysis +1309.4153 Probability +1309.4154 Combinatorics +1309.4157 Social and Information Networks +1309.4163 +1309.4164 Accelerator Physics +1309.4168 Computation and Language +1309.4175 Geometric Topology +1309.4176 Chemical Physics +1309.4186 Combinatorics +1309.4190 Phenomenology +1309.4192 Algebraic Topology +1309.4193 Statistics Theory +1309.4194 Number Theory +1309.4196 Functional Analysis +1309.4199 Methodology +1309.4200 History and Philosophy of Physics +1309.4204 Analysis of PDEs +1309.4205 Mesoscale and Nanoscale Physics +1309.4207 +1309.4210 Experiment +1309.4214 Materials Science +1309.4216 Mesoscale and Nanoscale Physics +1309.4218 Materials Science +1309.4222 Materials Science +1309.4230 Algebraic Geometry +1309.4233 +1309.4234 Fluid Dynamics +1309.4236 Analysis of PDEs +1309.4247 Theory +1309.4249 Solar and Stellar Astrophysics +1309.4258 Probability +1309.4260 +1309.4266 Combinatorics +1309.4267 +1309.4286 Quantitative Methods +1309.4290 Fluid Dynamics +1309.4298 Quantum Algebra +1309.4310 Phenomenology +1309.4316 +1309.4317 Instrumentation and Methods for Astrophysics +1309.4328 Probability +1309.4333 +1309.4334 Programming Languages +1309.4338 Phenomenology +1309.4341 Group Theory +1309.4345 Information Retrieval +1309.4347 Number Theory +1309.4349 Distributed, Parallel, and Cluster Computing +1309.4351 Combinatorics +1309.4356 Networking and Internet Architecture +1309.4358 Functional Analysis +1309.4365 Differential Geometry +1309.4367 Cryptography and Security +1309.4373 Networking and Internet Architecture +1309.4374 Networking and Internet Architecture +1309.4375 Functional Analysis +1309.4376 Analysis of PDEs +1309.4379 Networking and Internet Architecture +1309.4386 Networking and Internet Architecture +1309.4387 Probability +1309.4389 Networking and Internet Architecture +1309.4396 Data Structures and Algorithms +1309.4398 Plasma Physics +1309.4400 Materials Science +1309.4402 Computation +1309.4405 Data Structures and Algorithms +1309.4406 Algebraic Topology +1309.4410 Materials Science +1309.4416 Logic in Computer Science +1309.4426 Computer Vision and Pattern Recognition +1309.4429 Computational Engineering, Finance, and Science +1309.4431 Instrumentation and Methods for Astrophysics +1309.4432 Instrumentation and Methods for Astrophysics +cond-mat/0412637 Mesoscale and Nanoscale Physics +0806.2524 Mesoscale and Nanoscale Physics +0809.2606 Algebraic Geometry +1009.2772 Dynamical Systems +1009.4371 Algebraic Geometry +1009.4372 Algebraic Geometry +1012.0675 Number Theory +1104.3118 Algebraic Geometry +1104.3307 Algebraic Geometry +1104.3950 Combinatorics +1104.4237 Analysis of PDEs +1105.1118 Probability +1106.2429 Learning +1106.5573 Algebraic Geometry +1107.5079 Commutative Algebra +1108.4932 Phenomenology +1110.1472 Operator Algebras +1112.4378 Functional Analysis +1201.2616 Pricing of Securities +1201.4299 Algebraic Geometry +1201.5506 Representation Theory +1202.3833 Superconductivity +1202.3907 Probability +1202.4968 Algebraic Geometry +1203.0793 Functional Analysis +1204.1313 Quantum Gases +1205.3433 Algebraic Geometry +1205.4571 Probability +1206.6685 Combinatorics +1207.4955 Superconductivity +1207.6223 Cosmology and Nongalactic Astrophysics +1209.0221 Geometric Topology +1209.0343 Cosmology and Nongalactic Astrophysics +1209.0934 Number Theory +1209.0936 Number Theory +1210.7323 Strongly Correlated Electrons +1211.0441 Theory +1211.5654 +1211.5825 +1211.6849 Experiment +1212.0903 Quantum Gases +1212.1741 Soft Condensed Matter +1212.4712 Analysis of PDEs +1212.5943 Computers and Society +1212.6772 Mesoscale and Nanoscale Physics +1301.2455 +1301.2895 Statistical Mechanics +1302.1783 +1302.2059 +1302.3274 Populations and Evolution +1302.3389 Lattice +1302.5004 Algebraic Geometry +1303.2993 +1303.3114 Functional Analysis +1303.3444 Quantum Algebra +1303.4599 Quantum Gases +1303.6599 Mesoscale and Nanoscale Physics +1303.6952 Phenomenology +1304.0220 Theory +1304.0429 +1304.0484 Theory +1304.0936 Geometric Topology +1304.2068 Strongly Correlated Electrons +1304.2991 Materials Science +1304.4949 Theory +1304.5766 +1304.6547 +1304.6989 Quantum Gases +1304.7974 Lattice +1305.0931 Commutative Algebra +1305.2780 Phenomenology +1305.7317 Experiment +1306.0210 Theory +1306.0405 Quantum Gases +1306.0449 Logic +1306.0547 Astrophysics of Galaxies +1306.1556 Information Theory +1306.1757 High Energy Astrophysical Phenomena +1306.2949 Statistical Mechanics +1306.3413 Materials Science +1306.4795 Statistical Mechanics +1306.4970 Phenomenology +1306.4981 Theory +1306.5776 Information Theory +1306.5940 +1306.6013 +1306.6371 History and Philosophy of Physics +1307.1470 Solar and Stellar Astrophysics +1307.2106 +1307.2194 +1307.2577 Mesoscale and Nanoscale Physics +1307.3512 Mesoscale and Nanoscale Physics +1307.4060 Disordered Systems and Neural Networks +1307.4107 Cryptography and Security +1307.4143 Optimization and Control +1308.0505 Probability +1308.1184 Solar and Stellar Astrophysics +1308.2834 Mesoscale and Nanoscale Physics +1308.3075 Phenomenology +1308.3261 Optics +1308.5061 Mesoscale and Nanoscale Physics +1308.6307 Experiment +1309.0295 Algebraic Geometry +1309.0558 High Energy Astrophysical Phenomena +1309.1007 Probability +1309.1029 Systems and Control +1309.1805 Software Engineering +1309.2061 Quantum Gases +1309.2635 Cosmology and Nongalactic Astrophysics +1309.2637 Cosmology and Nongalactic Astrophysics +1309.2643 +1309.2646 General Physics +1309.2648 Information Retrieval +1309.2649 Numerical Analysis +1309.2650 Optics +1309.2661 Analysis of PDEs +1309.2663 Fluid Dynamics +1309.2668 Fluid Dynamics +1309.2672 Phenomenology +1309.2675 Databases +1309.2678 Superconductivity +1309.2679 Social and Information Networks +1309.2683 Quantitative Methods +1309.2685 Discrete Mathematics +1309.2686 Cell Behavior +1309.2687 Databases +1309.2690 Information Theory +1309.2693 Artificial Intelligence +1309.2696 Fluid Dynamics +1309.2697 Combinatorics +1309.2699 Fluid Dynamics +1309.2700 Probability +1309.2701 Probability +1309.2702 Probability +1309.2706 Fluid Dynamics +1309.2709 Mesoscale and Nanoscale Physics +1309.2717 Mesoscale and Nanoscale Physics +1309.2722 Popular Physics +1309.2731 Numerical Analysis +1309.2735 Networking and Internet Architecture +1309.2736 +1309.2737 Instrumentation and Methods for Astrophysics +1309.2738 +1309.2739 Materials Science +1309.2740 Analysis of PDEs +1309.2741 Classical Physics +1309.2742 Complex Variables +1309.2745 Instrumentation and Detectors +1309.2747 Artificial Intelligence +1309.2758 History and Philosophy of Physics +1309.2760 Mesoscale and Nanoscale Physics +1309.2762 Mesoscale and Nanoscale Physics +1309.2764 Mesoscale and Nanoscale Physics +1309.2765 Learning +1309.2767 Analysis of PDEs +1309.2771 Mesoscale and Nanoscale Physics +1309.2773 +1309.2779 Statistics Theory +1309.2780 Phenomenology +1309.2781 Probability +1309.2788 Digital Libraries +1309.2789 Networking and Internet Architecture +1309.2797 Physics and Society +1309.2801 Number Theory +1309.2802 Logic in Computer Science +1309.2809 Mesoscale and Nanoscale Physics +1309.2811 Medical Physics +1309.2817 Cell Behavior +1309.2818 Chemical Physics +1309.2821 Differential Geometry +1309.2823 +1309.2824 History and Overview +1309.2828 Optics +1309.2836 Superconductivity +1309.2837 Dynamical Systems +1309.2840 Analysis of PDEs +1309.2841 Data Analysis, Statistics and Probability +1309.2842 Formal Languages and Automata Theory +1309.2845 Adaptation and Self-Organizing Systems +1309.2848 Quantitative Methods +1309.2853 Computation and Language +1309.2854 Fluid Dynamics +1309.2856 +1309.2869 Computers and Society +1309.2870 Information Theory +1309.2874 Probability +1309.2877 Symbolic Computation +1309.2881 Superconductivity +1309.2882 Phenomenology +1309.2885 Complex Variables +1309.2891 Analysis of PDEs +1309.2892 Materials Science +1309.2895 Machine Learning +1309.2900 Social and Information Networks +1309.2901 Medical Physics +1309.2903 Functional Analysis +1309.2904 Networking and Internet Architecture +1309.2907 Classical Physics +1309.2908 Instrumentation and Detectors +1309.2912 +1309.2916 Materials Science +1309.2921 Theory +1309.2922 Computer Science and Game Theory +1309.2925 Materials Science +1309.2928 Theory +math/0306162 Algebraic Geometry +math/0409030 Algebraic Geometry +math/0411541 Algebraic Geometry +math/0512039 Algebraic Geometry +math/0604150 Algebraic Geometry +math/0608430 Algebraic Geometry +0808.2214 +0905.3439 Solar and Stellar Astrophysics +0908.0443 Algebraic Geometry +0909.0685 Databases +0909.3183 Solar and Stellar Astrophysics +0910.2997 Number Theory +1002.1551 Mesoscale and Nanoscale Physics +1005.1343 Soft Condensed Matter +1005.4194 Algebraic Geometry +1006.1718 Phenomenology +1010.5464 +1102.4530 Lattice +1104.5264 +1105.0684 Number Theory +1105.4230 Cosmology and Nongalactic Astrophysics +1106.0854 Algebraic Geometry +1107.0863 Metric Geometry +1107.5705 Theory +1108.2652 Mesoscale and Nanoscale Physics +1108.6132 Networking and Internet Architecture +1109.2301 Mesoscale and Nanoscale Physics +1109.5720 Social and Information Networks +1110.1171 Algebraic Geometry +1111.0512 Group Theory +1112.0127 Combinatorics +1201.0379 Probability +1201.2323 Classical Analysis and ODEs +1202.2127 Strongly Correlated Electrons +1202.2465 Social and Information Networks +1203.4735 Chaotic Dynamics +1203.6886 Materials Science +1204.0178 Statistical Mechanics +1204.0421 Mesoscale and Nanoscale Physics +1204.1895 Probability +1204.5989 +1205.1519 Biological Physics +1205.4117 Theory +1205.4416 Number Theory +1206.3366 Phenomenology +1206.3775 +1206.4186 Representation Theory +1206.6164 Cosmology and Nongalactic Astrophysics +1206.6718 General Physics +1207.1606 Solar and Stellar Astrophysics +1207.3666 +1207.5375 Functional Analysis +1209.1082 Data Structures and Algorithms +1209.1934 Strongly Correlated Electrons +1210.3569 Neural and Evolutionary Computing +1210.4248 +1210.4270 Quantum Gases +1210.4607 +1210.5851 +1210.6780 Cryptography and Security +1210.7333 +1210.7864 Phenomenology +1210.7961 Algebraic Geometry +1210.8345 +1211.2469 +1211.2745 Differential Geometry +1211.2906 Exactly Solvable and Integrable Systems +1211.3156 Lattice +1211.3178 +1211.3379 Optics +1211.4052 Materials Science +1211.4576 Theory +1211.5411 Phenomenology +1211.6489 Functional Analysis +1212.0359 Rings and Algebras +1212.1702 Phenomenology +1212.3591 Phenomenology +1212.4471 Phenomenology +1212.4743 Space Physics +1212.5184 Cosmology and Nongalactic Astrophysics +1212.6164 Phenomenology +1301.0052 Mesoscale and Nanoscale Physics +1301.0982 Phenomenology +1301.1591 +1301.2322 Theory +1301.4226 Soft Condensed Matter +1301.4563 Phenomenology +1301.5032 Analysis of PDEs +1301.5963 Strongly Correlated Electrons +1301.6105 Cosmology and Nongalactic Astrophysics +1301.6253 Phenomenology +1301.6349 Rings and Algebras +1301.6557 Instrumentation and Detectors +1301.7029 Theory +1302.0055 Experiment +1302.0150 Lattice +1302.0191 Experiment +1302.0331 Geometric Topology +1302.0980 +1302.1108 Strongly Correlated Electrons +1302.1256 Information Theory +1302.1471 Phenomenology +1302.1662 +1302.1740 Analysis of PDEs +1302.2956 +1302.3089 Statistical Mechanics +1302.3161 Materials Science +1302.3231 Phenomenology +1302.3730 Statistical Mechanics +1302.3810 +1302.4416 Mesoscale and Nanoscale Physics +1302.4922 Machine Learning +1302.5113 Strongly Correlated Electrons +1302.5317 Strongly Correlated Electrons +1302.5865 Mesoscale and Nanoscale Physics +1303.0332 Phenomenology +1303.0868 Social and Information Networks +1303.1120 Phenomenology +1303.2014 +1303.2174 High Energy Astrophysical Phenomena +1303.2379 Information Theory +1303.3747 Superconductivity +1303.3761 Logic in Computer Science +1303.3837 +1303.5811 Soft Condensed Matter +1303.6335 Phenomenology +1303.6709 +1304.0056 Rings and Algebras +1304.1269 Pattern Formation and Solitons +1304.1548 Social and Information Networks +1304.1680 Combinatorics +1304.1786 High Energy Astrophysical Phenomena +1304.3394 Probability +1304.3532 +1304.5834 +1304.5874 +1304.6800 Computational Complexity +1304.7887 Differential Geometry +1305.0417 Atomic Physics +1305.1213 +1305.1492 Probability +1305.1746 Optimization and Control +1305.2006 Social and Information Networks +1305.2141 Number Theory +1305.2565 Applications +1305.2618 Classical Analysis and ODEs +1305.2659 Populations and Evolution +1305.2713 Computer Vision and Pattern Recognition +1305.2908 +1305.2939 Solar and Stellar Astrophysics +1305.2945 Cosmology and Nongalactic Astrophysics +1305.2952 Numerical Analysis +1305.2954 Molecular Networks +1305.2956 General Physics +1305.2959 Sound +1305.2961 Category Theory +1305.2965 +1305.2966 Networking and Internet Architecture +1305.2972 Probability +1305.2974 Information Theory +1305.2976 Superconductivity +1305.2978 Computers and Society +1305.2979 Computer Science and Game Theory +1305.2981 Computers and Society +1305.2982 Learning +1305.2983 Geometric Topology +1305.2984 Cosmology and Nongalactic Astrophysics +1305.2985 Information Theory +1305.2988 Phenomenology +1305.2999 Information Theory +1305.3000 Differential Geometry +1305.3001 Number Theory +1305.3004 Differential Geometry +1305.3008 Quantum Algebra +1305.3010 Instrumentation and Detectors +1305.3011 Computer Science and Game Theory +1305.3013 Computer Vision and Pattern Recognition +1305.3014 Learning +1305.3017 Cosmology and Nongalactic Astrophysics +1305.3019 Combinatorics +1305.3022 Classical Physics +1305.3024 Rings and Algebras +1305.3029 Algebraic Topology +1305.3031 Distributed, Parallel, and Cluster Computing +1305.3035 Probability +1305.3038 Hardware Architecture +1305.3040 Information Theory +1305.3043 Populations and Evolution +1305.3046 Systems and Control +1305.3054 Information Theory +1305.3058 Databases +1305.3061 Plasma Physics +1305.3066 Phenomenology +1305.3068 Statistics Theory +1305.3070 Metric Geometry +1305.3071 +1305.3077 +1305.3080 Methodology +1305.3084 Experiment +1305.3086 Statistical Mechanics +1305.3087 Number Theory +1305.3089 Instrumentation and Methods for Astrophysics +1305.3090 Optics +1305.3094 Pattern Formation and Solitons +1305.3095 Statistics Theory +1305.3101 Materials Science +1305.3102 Computational Complexity +1305.3103 Programming Languages +1305.3104 Methodology +1305.3105 Distributed, Parallel, and Cluster Computing +1305.3107 Social and Information Networks +1305.3111 Phenomenology +1305.3114 Analysis of PDEs +1305.3119 Combinatorics +1305.3120 Machine Learning +1305.3122 Numerical Analysis +1305.3123 Distributed, Parallel, and Cluster Computing +1305.3126 Experiment +1305.3128 Chaotic Dynamics +1305.3129 General Physics +1305.3131 Logic in Computer Science +1305.3134 Optics +1305.3137 Differential Geometry +1305.3144 Plasma Physics +1305.3145 Differential Geometry +1305.3146 Social and Information Networks +1305.3149 Computational Engineering, Finance, and Science +1305.3155 Differential Geometry +1305.3161 Number Theory +1305.3167 +1305.3168 Instrumentation and Detectors +1305.3169 Experiment +1305.3170 +1305.3177 Combinatorics +1305.3178 Systems and Control +1305.3179 Commutative Algebra +1305.3186 Classical Analysis and ODEs +1305.3189 Computer Vision and Pattern Recognition +1305.3191 +1305.3193 Classical Analysis and ODEs +1305.3194 High Energy Astrophysical Phenomena +1305.3195 +1305.3199 Cryptography and Security +1305.3203 Networking and Internet Architecture +1305.3207 Learning +1305.3210 Strongly Correlated Electrons +1305.3212 Computers and Society +1305.3213 Computers and Society +1305.3219 Phenomenology +1305.3220 Classical Analysis and ODEs +1305.3226 Probability +1305.3233 Representation Theory +1305.3237 Rings and Algebras +1305.3238 Number Theory +1305.3240 Optimization and Control +1305.3244 Quantitative Methods +1305.3245 Geophysics +1305.3249 Materials Science +1305.3253 Networking and Internet Architecture +1305.3254 Logic +1305.3255 Software Engineering +1305.3256 General Physics +1305.3259 Combinatorics +1305.3262 Optics +cond-mat/0002379 Soft Condensed Matter +cond-mat/0109250 Statistical Mechanics +cond-mat/0309689 Statistical Mechanics +0804.3153 +0905.2663 General Physics +0910.3256 Quantum Gases +0911.2566 Number Theory +1003.3676 Data Structures and Algorithms +1007.0808 Phenomenology +1009.1118 Optimization and Control +1011.2564 Optimization and Control +1101.3958 Probability +1105.5926 Theory +1106.1603 Optics +1107.3058 Probability +1109.0721 Combinatorics +1109.3563 Computational Engineering, Finance, and Science +1112.1859 Numerical Analysis +1112.2227 Probability +1201.1319 Combinatorics +1201.5490 Number Theory +1202.1969 Number Theory +1202.2564 Methodology +1204.0659 Spectral Theory +1204.1539 Commutative Algebra +1204.6224 Theory +1205.1161 Quantum Gases +1206.0007 Cosmology and Nongalactic Astrophysics +1206.2380 Statistics Theory +1206.4853 Dynamical Systems +1206.5299 Number Theory +1206.6356 Information Theory +1207.4036 Analysis of PDEs +1208.1463 +1208.2919 +1209.3664 Strongly Correlated Electrons +1209.4523 Information Retrieval +1209.4951 Machine Learning +1209.5028 +1211.0474 Soft Condensed Matter +1211.0564 Statistical Mechanics +1211.3297 Graphics +1211.4435 +1211.6742 Theory +1212.1099 Functional Analysis +1212.1494 Physics Education +1212.2783 +1212.3607 Theory +1212.4684 General Physics +1212.4995 Materials Science +1301.0857 Algebraic Geometry +1301.2382 Probability +1301.4408 Mesoscale and Nanoscale Physics +1301.5715 Probability +1302.0255 Populations and Evolution +1302.1688 Theory +1302.2975 Logic +1302.3263 Physics and Society +1302.3435 Materials Science +1302.3667 Phenomenology +1302.4571 +1303.0056 +1303.1270 +1303.1970 Group Theory +1303.2450 Superconductivity +1303.2851 Statistical Mechanics +1303.4394 Phenomenology +1303.6031 +1304.2283 Quantum Gases +1304.2706 Analysis of PDEs +1304.2975 +1304.3049 Analysis of PDEs +1304.3962 Information Theory +1304.4509 +1304.6551 Artificial Intelligence +1304.6766 Mesoscale and Nanoscale Physics +1304.7432 Computer Science and Game Theory +1305.0692 Phenomenology +1305.3792 Theory +1305.3830 Quantitative Methods +1305.4939 Phenomenology +1305.5943 Mesoscale and Nanoscale Physics +1305.6175 Cryptography and Security +1305.6216 Information Theory +1306.0129 Biological Physics +1306.0228 +1306.1186 Strongly Correlated Electrons +1306.2550 Information Theory +1306.3300 High Energy Astrophysical Phenomena +1306.4027 Theory +1306.4149 Physics and Society +1307.0855 Optimization and Control +1307.1300 Mesoscale and Nanoscale Physics +1307.1758 Phenomenology +1307.2302 Machine Learning +1307.2637 +1307.2940 +1307.2980 Strongly Correlated Electrons +1307.3852 Phenomenology +1307.4064 +1307.6404 Materials Science +1307.6503 Strongly Correlated Electrons +1307.6789 Data Structures and Algorithms +1307.6927 Cryptography and Security +1307.7218 Category Theory +1307.7292 Experiment +1307.7351 Artificial Intelligence +1307.7406 Experiment +1307.7469 Cosmology and Nongalactic Astrophysics +1307.7510 Representation Theory +1307.7584 Performance +1307.7793 Learning +1307.7795 Quantitative Methods +1307.7810 Quantitative Methods +1307.7811 Quantitative Methods +1307.7813 Quantitative Methods +1307.7820 Quantitative Methods +1307.7824 Data Structures and Algorithms +1307.7825 Quantitative Methods +1307.7828 Discrete Mathematics +1307.7831 Quantitative Methods +1307.7840 Quantitative Methods +1307.7842 Data Structures and Algorithms +1307.7925 Data Structures and Algorithms +1307.7973 Computation and Language +1307.8042 Superconductivity +1307.8043 Computers and Society +1307.8057 Computation and Language +1307.8060 Information Retrieval +1307.8198 Computers and Society +1307.8205 Logic in Computer Science +1307.8213 Logic in Computer Science +1307.8438 +1308.0001 +1308.0002 Systems and Control +1308.0003 Other Condensed Matter +1308.0005 +1308.0006 +1308.0007 +1308.0008 +1308.0019 +1308.0030 +1308.0033 Number Theory +1308.0044 Instrumentation and Methods for Astrophysics +1308.0046 Instrumentation and Methods for Astrophysics +1308.0047 Information Theory +1308.0048 History and Philosophy of Physics +1308.0049 Methodology +1308.0050 High Energy Astrophysical Phenomena +1308.0053 Instrumentation and Methods for Astrophysics +1308.0055 High Energy Astrophysical Phenomena +1308.0056 Networking and Internet Architecture +1308.0058 Quantum Gases +1308.0059 Instrumentation and Methods for Astrophysics +1308.0060 Number Theory +1308.0062 Complex Variables +1308.0065 Number Theory +1308.0067 Phenomenology +1308.0069 +1308.0071 Mesoscale and Nanoscale Physics +1308.0072 Applications +1308.0073 Analysis of PDEs +1308.0080 Experiment +1308.0081 Combinatorics +1308.0083 Distributed, Parallel, and Cluster Computing +1308.0085 Data Structures and Algorithms +1308.0087 Quantum Algebra +1308.0089 Experiment +1308.0097 Complex Variables +1308.0099 Networking and Internet Architecture +1308.0102 Systems and Control +1308.0103 +1308.0105 Algebraic Geometry +1308.0106 Experiment +1308.0108 Astrophysics of Galaxies +1308.0113 Category Theory +1308.0116 Accelerator Physics +1308.0119 +1308.0120 Information Theory +1308.0122 Optimization and Control +1308.0123 Mesoscale and Nanoscale Physics +1308.0124 Phenomenology +1308.0125 Accelerator Physics +1308.0126 Accelerator Physics +1308.0129 Atomic Physics +1308.0132 Classical Analysis and ODEs +1308.0135 Algebraic Geometry +1308.0136 Discrete Mathematics +1308.0140 Atmospheric and Oceanic Physics +1308.0141 Instrumentation and Methods for Astrophysics +1308.0146 Number Theory +1308.0148 Distributed, Parallel, and Cluster Computing +1308.0156 Logic +1308.0157 Functional Analysis +1308.0158 Databases +1308.0161 High Energy Astrophysical Phenomena +1308.0163 Chemical Physics +1308.0165 Commutative Algebra +1308.0167 +1308.0168 Logic +1308.0172 Accelerator Physics +1308.0180 Computational Complexity +1308.0183 Data Structures and Algorithms +1308.0185 Strongly Correlated Electrons +1308.0191 Optimization and Control +1308.0194 Instrumentation and Methods for Astrophysics +1308.0200 Exactly Solvable and Integrable Systems +1308.0209 Logic in Computer Science +1308.0212 Optics +1308.0214 Probability +1308.0215 Probability +1308.0217 Probability +1308.0218 Operator Algebras +1308.0220 Representation Theory +1308.0221 +1308.0222 Phenomenology +1308.0223 Networking and Internet Architecture +1308.0236 Differential Geometry +1308.0245 Space Physics +1308.0248 Probability +1308.0251 Category Theory +1308.0252 Solar and Stellar Astrophysics +1308.0254 Phenomenology +1308.0256 Computational Geometry +1308.0257 Functional Analysis +1308.0260 Solar and Stellar Astrophysics +1308.0261 Solar and Stellar Astrophysics +1308.0262 Mesoscale and Nanoscale Physics +1308.0268 Logic in Computer Science +1308.0273 Computer Vision and Pattern Recognition +1308.0275 Computer Vision and Pattern Recognition +1308.0287 High Energy Astrophysical Phenomena +1308.0288 Differential Geometry +1308.0290 Computer Vision and Pattern Recognition +1308.0292 Physics and Society +1308.0307 +1308.0315 Multimedia +1308.0317 Molecular Networks +1308.0322 Human-Computer Interaction +nlin/0407033 Chaotic Dynamics +nlin/0508025 Chaotic Dynamics +0803.0160 Commutative Algebra +0807.1422 Theory +0807.2497 Representation Theory +0807.2952 Probability +0808.0208 Mesoscale and Nanoscale Physics +0808.2952 Dynamical Systems +0809.1128 Commutative Algebra +0809.2750 Disordered Systems and Neural Networks +0901.2565 Geometric Topology +0907.4079 Combinatorics +0908.0067 Applications +0908.1984 Mesoscale and Nanoscale Physics +0910.2229 Phenomenology +0912.5525 Lattice +1001.2065 Strongly Correlated Electrons +1004.0298 Rings and Algebras +1004.5485 Statistics Theory +1005.0042 Representation Theory +1006.5778 Spectral Theory +1006.5943 Mesoscale and Nanoscale Physics +1008.1533 Atomic Physics +1008.4933 Dynamical Systems +1009.1509 Cosmology and Nongalactic Astrophysics +1009.2665 Theory +1009.3859 Group Theory +1011.2900 Phenomenology +1011.3081 Mesoscale and Nanoscale Physics +1011.4617 Analysis of PDEs +1011.4937 Astrophysics of Galaxies +1012.0201 Data Analysis, Statistics and Probability +1012.0676 Probability +1101.2592 Applications +1102.0816 Quantum Algebra +1103.2105 Representation Theory +1104.0855 Geometric Topology +1104.5365 Commutative Algebra +1105.1500 Number Theory +1105.2974 Statistical Mechanics +1107.2213 Cosmology and Nongalactic Astrophysics +1107.2426 Mesoscale and Nanoscale Physics +1107.2576 Statistics Theory +1107.3398 +1107.4623 Numerical Analysis +1108.0148 Differential Geometry +1108.0830 Number Theory +1108.1305 +1109.0862 Quantum Algebra +1109.1684 Materials Science +1109.3108 Phenomenology +1109.3965 Strongly Correlated Electrons +1109.5855 Chemical Physics +1109.6464 Strongly Correlated Electrons +1110.1674 Algebraic Geometry +1110.2207 Data Structures and Algorithms +1110.3893 Cosmology and Nongalactic Astrophysics +1110.4872 +1111.0456 Solar and Stellar Astrophysics +1111.3501 Optimization and Control +1111.3828 Differential Geometry +1112.0240 Materials Science +1112.0717 Geometric Topology +1112.1237 Solar and Stellar Astrophysics +1112.1679 Populations and Evolution +1112.2767 +1112.4726 Number Theory +1112.5663 Analysis of PDEs +1201.4029 Mesoscale and Nanoscale Physics +1202.1196 Cosmology and Nongalactic Astrophysics +1202.5896 Dynamical Systems +1202.6093 Mesoscale and Nanoscale Physics +1203.0776 +1203.0890 Mesoscale and Nanoscale Physics +1203.1307 Representation Theory +1203.1354 Chaotic Dynamics +1203.2575 Algebraic Geometry +1203.3668 Numerical Analysis +1203.5829 Statistics Theory +1203.6734 Theory +1204.2567 Analysis of PDEs +1204.2716 Trading and Market Microstructure +1204.2775 Information Theory +1204.4356 Soft Condensed Matter +1204.6448 Numerical Analysis +1204.6487 Fluid Dynamics +1205.0241 Statistics Theory +1205.0477 Data Structures and Algorithms +1205.2115 Mesoscale and Nanoscale Physics +1206.0307 Superconductivity +1206.1978 Functional Analysis +1206.3776 Applications +1206.5155 Algebraic Geometry +1206.5844 Mesoscale and Nanoscale Physics +1207.0262 Artificial Intelligence +1207.2972 Mesoscale and Nanoscale Physics +1207.3230 Algebraic Geometry +1207.4188 Strongly Correlated Electrons +1207.5952 Strongly Correlated Electrons +1207.6422 Populations and Evolution +1208.0736 +1208.1141 Soft Condensed Matter +1208.2317 +1208.3185 Populations and Evolution +1208.3638 Combinatorics +1208.3644 Phenomenology +1208.4289 Software Engineering +1209.0752 +1209.0883 Theory +1209.1243 Analysis of PDEs +1209.1737 +1209.2161 Mesoscale and Nanoscale Physics +1209.2525 Materials Science +1209.2764 +1209.2961 Cosmology and Nongalactic Astrophysics +1209.3086 Astrophysics of Galaxies +1209.3621 Statistical Mechanics +1209.3659 Mesoscale and Nanoscale Physics +1209.4192 Differential Geometry +1209.5985 Materials Science +1210.0376 Probability +1210.0734 Machine Learning +1210.0907 Strongly Correlated Electrons +1210.1042 Differential Geometry +1210.1356 Adaptation and Self-Organizing Systems +1210.1616 Instrumentation and Methods for Astrophysics +1210.1890 Data Structures and Algorithms +1210.2568 Rings and Algebras +1210.2659 Superconductivity +1210.3282 Mesoscale and Nanoscale Physics +1210.3579 Representation Theory +1210.4167 Strongly Correlated Electrons +1210.6084 Plasma Physics +1211.0397 Atomic and Molecular Clusters +1211.2461 Classical Analysis and ODEs +1211.3350 Logic +1211.3358 Cosmology and Nongalactic Astrophysics +1211.3475 Analysis of PDEs +1211.4652 Atomic Physics +1211.5493 Number Theory +1211.6032 Algebraic Geometry +1211.6745 Cosmology and Nongalactic Astrophysics +1211.6869 Accelerator Physics +1212.0210 Strongly Correlated Electrons +1212.0379 Phenomenology +1212.0921 Quantum Gases +1212.1712 Instrumentation and Detectors +1212.2153 Physics and Society +1212.3271 +1212.4036 Mesoscale and Nanoscale Physics +1212.4071 +1212.4298 Combinatorics +1212.4662 Phenomenology +1212.4985 Phenomenology +1212.5531 Superconductivity +1212.6673 +1212.6675 Dynamical Systems +1212.6679 +1212.6768 Atomic Physics +1212.6822 Logic +1301.0080 Information Theory +1301.0822 Cosmology and Nongalactic Astrophysics +1301.0943 Plasma Physics +1301.1146 Atmospheric and Oceanic Physics +1301.1255 Statistical Mechanics +1301.3468 Machine Learning +1301.4170 Atomic Physics +1301.4341 +1301.5118 Combinatorics +1301.5368 Solar and Stellar Astrophysics +1301.7015 Databases +1301.7604 Soft Condensed Matter +1302.1758 Neurons and Cognition +1302.1947 Multimedia +1302.1994 Strongly Correlated Electrons +1302.1995 Functional Analysis +1302.2528 Algebraic Geometry +1302.3021 Geophysics +1302.3028 Lattice +1302.3690 Phenomenology +1302.4043 Computer Vision and Pattern Recognition +1302.4156 +1302.4184 Cosmology and Nongalactic Astrophysics +1302.4739 Logic in Computer Science +1302.5399 Phenomenology +1302.5414 Networking and Internet Architecture +1302.5882 High Energy Astrophysical Phenomena +1302.5903 Networking and Internet Architecture +1302.6398 +1302.6525 Instrumentation and Methods for Astrophysics +1302.6558 Combinatorics +1302.6856 Combinatorics +1302.6950 Combinatorics +1302.7051 Neural and Evolutionary Computing +1302.7112 Cosmology and Nongalactic Astrophysics +1302.7130 Classical Analysis and ODEs +1303.0058 Information Theory +1303.0217 +1303.0279 +1303.0282 +1303.0284 Social and Information Networks +1303.0294 Computational Physics +1303.0296 Information Theory +1303.0297 Mesoscale and Nanoscale Physics +1303.0301 Differential Geometry +1303.0302 Classical Analysis and ODEs +1303.0303 Instrumentation and Methods for Astrophysics +1303.0307 Solar and Stellar Astrophysics +1303.0311 Solar and Stellar Astrophysics +1303.0319 Mesoscale and Nanoscale Physics +1303.0322 Functional Analysis +1303.0325 Combinatorics +1303.0327 Functional Analysis +1303.0330 Fluid Dynamics +1303.0333 Quantum Gases +1303.0339 Learning +1303.0340 Category Theory +1303.0345 Solar and Stellar Astrophysics +1303.0346 Cryptography and Security +1303.0348 Materials Science +1303.0349 Solar and Stellar Astrophysics +1303.0350 Computation and Language +1303.0351 Distributed, Parallel, and Cluster Computing +1303.0352 Superconductivity +1303.0353 Numerical Analysis +1303.0354 Differential Geometry +1303.0357 Solar and Stellar Astrophysics +1303.0361 Probability +1303.0363 Complex Variables +1303.0367 Analysis of PDEs +1303.0368 +1303.0369 Combinatorics +1303.0370 Metric Geometry +1303.0372 Rings and Algebras +1303.0376 Category Theory +1303.0379 Software Engineering +1303.0382 Logic in Computer Science +1303.0387 Operator Algebras +1303.0388 Systems and Control +1303.0390 Rings and Algebras +1303.0392 Biological Physics +1303.0394 Analysis of PDEs +1303.0395 Software Engineering +1303.0396 Populations and Evolution +1303.0398 Number Theory +1303.0402 Neurons and Cognition +1303.0405 Networking and Internet Architecture +1303.0407 Information Retrieval +1303.0408 Physics Education +1303.0410 Representation Theory +1303.0411 Combinatorics +1303.0412 Logic +1303.0416 Numerical Analysis +1303.0418 Databases +1303.0422 Data Structures and Algorithms +1303.0423 Number Theory +1303.0424 Quantitative Methods +1303.0425 Systems and Control +1303.0426 Methodology +1303.0427 Programming Languages +1303.0430 +1303.0434 Space Physics +1303.0438 Optics +1303.0439 Methodology +1303.0445 Information Retrieval +1303.0446 Computation and Language +1303.0447 Databases +1303.0449 Methodology +1303.0454 Analysis of PDEs +1303.0457 Analysis of PDEs +1303.0458 Statistics Theory +1303.0459 Cryptography and Security +1303.0460 Computer Vision and Pattern Recognition +1303.0462 Neural and Evolutionary Computing +1303.0463 Information Theory +1303.0464 Networking and Internet Architecture +1303.0468 Computers and Society +1303.0469 High Energy Astrophysical Phenomena +1303.0470 Theory +1303.0473 Combinatorics +1303.0474 Combinatorics +1303.0475 Chaotic Dynamics +1303.0476 Chaotic Dynamics +1303.0477 Algebraic Topology +1303.0480 High Energy Astrophysical Phenomena +1303.0484 Information Retrieval +1303.0487 Plasma Physics +1303.0489 Computation and Language +1303.0490 Computers and Society +1303.0492 Optics +1303.0497 Dynamical Systems +1303.0498 Quantum Algebra +1303.0499 Complex Variables +1303.0500 Superconductivity +1303.0501 Complex Variables +1303.0502 Complex Variables +1303.0504 Complex Variables +1303.0506 Complex Variables +1303.0508 Complex Variables +1303.0510 Complex Variables +1303.0511 Complex Variables +1303.0513 Complex Variables +1303.0514 Complex Variables +1303.0520 Computers and Society +1303.0525 Networking and Internet Architecture +1303.0535 Fluid Dynamics +1303.0539 Computational Engineering, Finance, and Science +1303.0540 Disordered Systems and Neural Networks +1303.0543 +1303.0545 Number Theory +1303.0553 Phenomenology +1303.0557 Cryptography and Security +1303.0558 Soft Condensed Matter +1303.0560 Soft Condensed Matter +1303.0565 Soft Condensed Matter +1303.0566 Information Retrieval +1303.0568 Number Theory +1303.0570 History and Overview +1303.0572 Information Theory +1303.0575 Group Theory +1303.0583 Atomic Physics +1303.0586 Symplectic Geometry +1303.0593 Analysis of PDEs +1303.0595 Analysis of PDEs +1303.0598 Distributed, Parallel, and Cluster Computing +1303.0604 +1303.0605 Number Theory +1303.0608 Pattern Formation and Solitons +1303.0609 Data Structures and Algorithms +1303.0620 Optics +1303.0621 +1303.0622 Theory +1303.0626 Complex Variables +1303.0628 Differential Geometry +1303.0629 Experiment +1303.0631 Physics and Society +1303.0633 Computer Vision and Pattern Recognition +1303.0634 Computer Vision and Pattern Recognition +1303.0635 Computer Vision and Pattern Recognition +1303.0639 Cosmology and Nongalactic Astrophysics +1303.0644 Computer Vision and Pattern Recognition +1303.0645 Computer Vision and Pattern Recognition +1303.0646 Social and Information Networks +1303.0647 Computer Vision and Pattern Recognition +1303.0648 Analysis of PDEs +1303.0651 Rings and Algebras +1303.0654 Applications +1303.0656 Functional Analysis +1303.0658 Differential Geometry +1303.0666 +1303.0667 Information Retrieval +1303.0669 Information Theory +1303.0670 Methodology +1303.0671 Cell Behavior +1303.0673 Populations and Evolution +1303.0675 +1303.0681 Solar and Stellar Astrophysics +1303.0683 General Topology +1303.0686 Applications +1303.0688 Theory +1303.0692 Algebraic Geometry +1303.0695 Information Theory +1303.0696 Information Theory +1303.0699 Information Theory +1303.0701 Algebraic Topology +1303.0702 Representation Theory +1303.0706 +1303.0711 Metric Geometry +1303.0712 High Energy Astrophysical Phenomena +1303.0718 Spectral Theory +1303.0722 Programming Languages +1303.0724 Differential Geometry +1303.0725 Other Computer Science +1303.0729 Commutative Algebra +1303.0735 Commutative Algebra +1303.0736 Solar and Stellar Astrophysics +1303.0738 Symbolic Computation +1303.0739 Functional Analysis +1303.0741 Statistical Mechanics +1303.0744 Quantum Algebra +1303.0746 +1303.0751 Materials Science +1303.0752 +1303.0757 Mesoscale and Nanoscale Physics +1303.0762 +1303.0765 Number Theory +1303.0767 General Physics +1303.0771 Materials Science +1303.0780 Logic in Computer Science +1303.0785 General Physics +1303.0786 Computer Science and Game Theory +1303.0787 Artificial Intelligence +1303.0788 Computer Science and Game Theory +1303.0789 Logic in Computer Science +1303.0790 Logic in Computer Science +1303.0791 Computer Science and Game Theory +1303.0792 Logic in Computer Science +1303.0793 Logic in Computer Science +1303.0794 Logic in Computer Science +1303.0795 Logic in Computer Science +1303.0796 Logic in Computer Science +1303.0797 Logic in Computer Science +1303.0798 Computer Science and Game Theory +1303.0799 Computer Science and Game Theory +1303.0801 Mesoscale and Nanoscale Physics +1303.0802 Quantum Algebra +1303.0807 +1303.0811 Group Theory +1303.0812 Group Theory +1303.0814 +1303.0821 Computational Geometry +1303.0825 Instrumentation and Detectors +1303.0827 Differential Geometry +cond-mat/0201215 Superconductivity +cond-mat/0203426 Strongly Correlated Electrons +cond-mat/0212621 Strongly Correlated Electrons +cond-mat/0610665 Mesoscale and Nanoscale Physics +physics/0612233 Atomic Physics +quant-ph/0307159 +0809.2409 Phenomenology +0809.5123 Combinatorics +0901.1441 +1001.0028 Combinatorics +1001.3768 Populations and Evolution +1004.4544 Differential Geometry +1005.2692 Number Theory +1008.0038 Number Theory +1010.4618 Populations and Evolution +1103.1070 Number Theory +1106.0877 Probability +1108.4885 Algebraic Geometry +1109.3353 Combinatorics +1109.3667 Quantum Algebra +1110.6154 Combinatorics +1110.6705 Symplectic Geometry +1112.3103 Operator Algebras +1201.0022 Applications +1201.2212 Combinatorics +1202.2468 Probability +1203.0654 Combinatorics +1203.2338 Algebraic Geometry +1203.3359 Strongly Correlated Electrons +1205.1197 Dynamical Systems +1206.1551 Combinatorics +1206.2260 Combinatorics +1207.1123 Strongly Correlated Electrons +1207.2910 Mesoscale and Nanoscale Physics +1207.3256 Soft Condensed Matter +1207.5285 Analysis of PDEs +1208.1876 Classical Analysis and ODEs +1210.1669 Quantum Algebra +1210.5745 Quantum Gases +1211.2039 Combinatorics +1211.4427 Analysis of PDEs +1211.4546 Theory +1212.0571 Classical Analysis and ODEs +1212.3251 Logic in Computer Science +1212.3326 Computational Physics +1212.4813 Dynamical Systems +1301.1458 Analysis of PDEs +1301.1896 Theory +1301.3019 Probability +1301.6860 Numerical Analysis +1301.7420 Mesoscale and Nanoscale Physics +1302.0012 Phenomenology +1302.0013 Statistical Mechanics +1302.2963 Computational Physics +1302.4234 +1302.4396 Functional Analysis +1303.3810 Dynamical Systems +1303.4013 Instrumentation and Detectors +1303.4531 Cosmology and Nongalactic Astrophysics +1303.5096 Differential Geometry +1303.5911 +1303.6052 High Energy Astrophysical Phenomena +1303.6162 Statistical Mechanics +1304.0214 Dynamical Systems +1304.0426 Logic +1304.0592 Optimization and Control +1304.0786 Physics and Society +1304.0834 Analysis of PDEs +1304.1824 Statistical Mechanics +1304.4803 Materials Science +1304.5808 Computational Complexity +1304.6587 +1304.6610 Number Theory +1304.6662 +1305.1155 Discrete Mathematics +1305.4866 +1305.5945 Mesoscale and Nanoscale Physics +1305.6016 Experiment +1305.6195 Combinatorics +1305.6832 High Energy Astrophysical Phenomena +1306.1763 Combinatorics +1306.2016 Experiment +1306.2505 Mesoscale and Nanoscale Physics +1306.2895 Experiment +1306.4013 Cosmology and Nongalactic Astrophysics +1306.4022 Computer Science and Game Theory +1306.4374 Quantitative Methods +1306.4915 Solar and Stellar Astrophysics +1306.6423 Cosmology and Nongalactic Astrophysics +1307.1829 Physics and Society +1307.2298 Quantitative Methods +1307.3579 +1307.4092 Disordered Systems and Neural Networks +1307.5542 Number Theory +1307.6007 Mesoscale and Nanoscale Physics +1308.2907 Networking and Internet Architecture +1308.3318 +1308.5004 Materials Science +1308.6369 Analysis of PDEs +1308.6516 Earth and Planetary Astrophysics +1309.3150 Networking and Internet Architecture +1309.3180 Fluid Dynamics +1309.5121 Statistical Mechanics +1309.7819 Optimization and Control +1310.0159 +1310.0270 Cosmology and Nongalactic Astrophysics +1310.0486 Experiment +1310.0561 High Energy Astrophysical Phenomena +1310.0572 Networking and Internet Architecture +1310.0800 Probability +1310.0873 Information Theory +1310.1083 Phenomenology +1310.1098 Instrumentation and Detectors +1310.1102 Pricing of Securities +1310.1103 Trading and Market Microstructure +1310.1105 Information Theory +1310.1107 Phenomenology +1310.1108 Earth and Planetary Astrophysics +1310.1111 Biological Physics +1310.1113 +1310.1115 Analysis of PDEs +1310.1120 Functional Analysis +1310.1121 Lattice +1310.1123 +1310.1124 Lattice +1310.1126 Biomolecules +1310.1127 Methodology +1310.1129 Networking and Internet Architecture +1310.1130 Analysis of PDEs +1310.1134 Solar and Stellar Astrophysics +1310.1137 Cryptography and Security +1310.1141 Numerical Analysis +1310.1143 Superconductivity +1310.1149 Analysis of PDEs +1310.1152 Optimization and Control +1310.1153 Information Theory +1310.1161 Databases +1310.1167 Computers and Society +1310.1171 +1310.1180 Optimization and Control +1310.1181 Probability +1310.1182 Functional Analysis +1310.1190 Databases +1310.1192 +1310.1193 Rings and Algebras +1310.1199 Probability +1310.1200 Instrumentation and Methods for Astrophysics +1310.1204 Functional Analysis +1310.1206 Optics +1310.1210 Materials Science +1310.1214 High Energy Astrophysical Phenomena +1310.1215 Dynamical Systems +1310.1221 Information Theory +1310.1226 Algebraic Geometry +1310.1227 Neural and Evolutionary Computing +1310.1231 Mesoscale and Nanoscale Physics +1310.1232 Mesoscale and Nanoscale Physics +1310.1233 Materials Science +1310.1234 Mesoscale and Nanoscale Physics +1310.1235 Materials Science +1310.1236 Statistical Mechanics +1310.1237 Mesoscale and Nanoscale Physics +1310.1239 Number Theory +1310.1240 Graphics +1310.1243 High Energy Astrophysical Phenomena +1310.1244 Probability +1310.1249 Social and Information Networks +1310.1250 Neural and Evolutionary Computing +1310.1255 Fluid Dynamics +1310.1256 Phenomenology +1310.1257 Computer Vision and Pattern Recognition +1310.1258 General Topology +1310.1262 Computational Physics +1310.1273 Combinatorics +1310.1274 Probability +1310.1276 Materials Science +1310.1277 Number Theory +1310.1279 +1310.1280 +1310.1282 Methodology +1310.1283 High Energy Astrophysical Phenomena +1310.1284 Data Analysis, Statistics and Probability +1310.1287 Instrumentation and Methods for Astrophysics +1310.1291 Chemical Physics +1310.1292 Analysis of PDEs +1310.1295 +1310.1296 Phenomenology +1310.1301 Quantum Gases +1310.1304 Chaotic Dynamics +1310.1309 Geometric Topology +1310.1314 Information Theory +1310.1316 Logic in Computer Science +1310.1317 Analysis of PDEs +1310.1319 +1310.1326 Strongly Correlated Electrons +1310.1328 Artificial Intelligence +1310.1331 Soft Condensed Matter +1310.1333 Analysis of PDEs +1310.1336 Instrumentation and Methods for Astrophysics +1310.1342 General Finance +1310.1344 Classical Physics +1310.1346 Geometric Topology +1310.1347 Instrumentation and Detectors +1310.1348 +1310.1355 Probability +1310.1356 Numerical Analysis +1310.1357 Combinatorics +1310.1365 +1310.1368 Combinatorics +1310.1370 Mesoscale and Nanoscale Physics +1310.1378 Discrete Mathematics +1310.1383 Rings and Algebras +1310.1384 Systems and Control +cond-mat/9701124 Soft Condensed Matter +gr-qc/0404101 +hep-th/0402212 Theory +1004.2616 Information Theory +1005.3561 Information Theory +1009.6008 Information Theory +1102.3410 Information Theory +1102.3413 Information Theory +1107.1839 Information Theory +1207.3050 Information Theory +0801.3878 Information Theory +0802.0123 Differential Geometry +0905.1612 Optics +0906.1004 Computation +0909.4415 Logic +1004.0802 Optics +1006.5271 Information Theory +1010.2796 Algebraic Geometry +1010.4883 Number Theory +1011.4034 Soft Condensed Matter +1101.5642 Superconductivity +1103.4405 Mesoscale and Nanoscale Physics +1104.3614 Probability +1105.2625 Optics +1105.5348 Strongly Correlated Electrons +1106.5337 Group Theory +1107.1811 Methodology +1108.0975 Fluid Dynamics +1108.4900 Group Theory +1108.5538 Spectral Theory +1108.5924 Fluid Dynamics +1110.2922 Materials Science +1111.1156 Analysis of PDEs +1112.1866 Superconductivity +1112.5939 Atomic Physics +1202.5464 Metric Geometry +1203.0894 Quantum Gases +1203.2069 Experiment +1203.2445 Numerical Analysis +1203.4944 Atomic and Molecular Clusters +1204.1793 Theory +1204.3335 Number Theory +1204.4225 +1204.4737 +1204.5660 +1204.6245 Strongly Correlated Electrons +1204.6602 Group Theory +1205.0212 Superconductivity +1205.0594 Experiment +1205.1191 Exactly Solvable and Integrable Systems +1205.1411 Phenomenology +1205.2920 General Physics +1205.3624 Fluid Dynamics +1205.5872 +1205.6251 Materials Science +1205.6615 Experiment +1206.0433 Experiment +1206.0973 Populations and Evolution +1206.1744 Mesoscale and Nanoscale Physics +1206.1849 Experiment +1206.3430 Quantum Gases +1206.5492 Strongly Correlated Electrons +1206.5707 Rings and Algebras +1206.6201 Discrete Mathematics +1207.1829 Mesoscale and Nanoscale Physics +1207.4698 Materials Science +1207.6211 +1207.6359 Strongly Correlated Electrons +1207.6633 Algebraic Geometry +1207.6680 +1208.1279 +1208.2970 +1208.3427 Theory +1208.5419 Quantum Gases +1209.1814 Logic +1209.3341 Complex Variables +1209.3368 Superconductivity +1209.4685 Strongly Correlated Electrons +1209.4728 Atomic Physics +1209.5703 +1210.1813 Quantum Gases +1210.2324 Functional Analysis +1210.5231 Functional Analysis +1210.5462 Phenomenology +1210.6177 Solar and Stellar Astrophysics +1210.7212 Optics +1210.8150 Cosmology and Nongalactic Astrophysics +1211.0050 +1211.2417 Neurons and Cognition +1211.2513 +1211.2845 Mesoscale and Nanoscale Physics +1211.2931 Atomic Physics +1211.4007 Dynamical Systems +1211.5741 Algebraic Topology +1212.0576 Statistical Mechanics +1212.1265 +1212.1841 Algebraic Geometry +1212.2239 Cosmology and Nongalactic Astrophysics +1212.3203 Statistical Mechanics +1212.4638 Information Theory +1212.5159 Cosmology and Nongalactic Astrophysics +1212.5925 Superconductivity +1301.0284 Experiment +1301.1034 Quantitative Methods +1301.1860 Earth and Planetary Astrophysics +1301.2406 +1301.3030 Materials Science +1301.3530 Neural and Evolutionary Computing +1301.3803 Geometric Topology +1301.4560 Analysis of PDEs +1301.4924 +1301.5179 Statistical Mechanics +1301.5364 +1301.5609 Analysis of PDEs +1301.5653 Accelerator Physics +1301.5910 Algebraic Geometry +1301.5911 Materials Science +1301.5912 Information Theory +1301.5915 Information Theory +1301.5916 Physics and Society +1301.5918 Probability +1301.5919 Physics and Society +1301.5924 Theory +1301.5934 Differential Geometry +1301.5935 Solar and Stellar Astrophysics +1301.5943 Artificial Intelligence +1301.5946 Artificial Intelligence +1301.5947 Populations and Evolution +1301.5950 +1301.5953 Data Structures and Algorithms +1301.5954 Information Theory +1301.5956 +1301.5960 Optics +1301.5962 Numerical Analysis +1301.5964 Software Engineering +1301.5972 Algebraic Geometry +1301.5973 Information Theory +1301.5978 Functional Analysis +1301.5980 Combinatorics +1301.5985 Rings and Algebras +1301.5988 Numerical Analysis +1301.5989 Soft Condensed Matter +1301.5993 Distributed, Parallel, and Cluster Computing +1301.5995 Optics +1301.5997 Analysis of PDEs +1301.6001 Cosmology and Nongalactic Astrophysics +1301.6005 +1301.6006 Soft Condensed Matter +1301.6007 Graphics +1301.6008 Graphics +1301.6011 Artificial Intelligence +1301.6021 Symbolic Computation +1301.6022 Robotics +1301.6027 Quantitative Methods +1301.6029 Cosmology and Nongalactic Astrophysics +1301.6030 Earth and Planetary Astrophysics +1301.6032 Phenomenology +1301.6034 Strongly Correlated Electrons +1301.6037 +1301.6040 +1301.6043 Classical Physics +1301.6047 Analysis of PDEs +1301.6056 Category Theory +1301.6058 Learning +1301.6059 Combinatorics +1301.6060 +1301.6061 +1301.6074 Phenomenology +1301.6075 Differential Geometry +1301.6077 Materials Science +1301.6078 Quantum Algebra +1301.6079 Analysis of PDEs +1301.6081 High Energy Astrophysical Phenomena +1301.6083 Materials Science +1301.6086 Statistics Theory +1301.6087 Materials Science +1301.6091 History and Philosophy of Physics +1301.6092 Combinatorics +1301.6096 Combinatorics +1301.6099 Genomics +1301.6100 Accelerator Physics +1301.6104 Commutative Algebra +1301.6106 Mesoscale and Nanoscale Physics +1301.6113 Instrumentation and Detectors +1301.6115 Risk Management +1301.6116 Statistical Mechanics +1301.6117 Information Theory +1301.6119 Earth and Planetary Astrophysics +1301.6124 Earth and Planetary Astrophysics +1301.6125 Information Theory +1301.6126 Earth and Planetary Astrophysics +1301.6130 Earth and Planetary Astrophysics +1301.6132 Earth and Planetary Astrophysics +1301.6134 +1301.6135 Quantum Algebra +1301.6144 Functional Analysis +1301.6145 Atomic Physics +1301.6149 Numerical Analysis +1301.6152 Operator Algebras +1301.6158 Number Theory +1301.6159 Superconductivity +1302.0365 Logic +0711.4396 Operator Algebras +0812.2987 Statistics Theory +0904.2624 Group Theory +0904.2626 Group Theory +0909.0143 Number Theory +0909.0570 Representation Theory +1003.5343 Group Theory +1009.1675 Phenomenology +1011.1240 Algebraic Geometry +1104.1733 Theory +1106.0767 +1106.2676 Algebraic Geometry +1106.4751 Number Theory +1107.5493 Combinatorics +1111.6185 Combinatorics +1112.4102 +1112.5550 Risk Management +1201.5555 Algebraic Geometry +1202.2453 Algebraic Geometry +1203.0132 Combinatorics +1203.2552 Number Theory +1203.6857 +1204.3272 +1204.5965 Soft Condensed Matter +1205.0980 Statistical Mechanics +1205.3386 +1205.4283 Combinatorics +1205.6160 Portfolio Management +1205.6184 Algebraic Geometry +1206.2492 Analysis of PDEs +1206.2634 Phenomenology +1206.5851 Social and Information Networks +1207.3481 +1208.4665 Cosmology and Nongalactic Astrophysics +1208.5601 Experiment +1209.0597 Strongly Correlated Electrons +1209.0742 +1209.1564 Algebraic Geometry +1209.1716 Information Theory +1209.5987 Statistical Mechanics +1209.6111 Combinatorics +1209.6333 Statistical Mechanics +1211.0344 +1211.2722 Mesoscale and Nanoscale Physics +1211.5559 Differential Geometry +1211.5834 Complex Variables +1212.0415 Algebraic Geometry +1212.2115 Theory +1212.2399 +1212.3403 Data Structures and Algorithms +1212.5909 Probability +1212.6957 Numerical Analysis +1301.0414 Exactly Solvable and Integrable Systems +1301.2104 Materials Science +1301.4599 History and Overview +1301.4601 History and Overview +1301.4879 Theory +1301.6257 Differential Geometry +1301.6399 Theory +1301.6830 Phenomenology +1301.7580 Fluid Dynamics +1302.3286 Soft Condensed Matter +1302.3482 Soft Condensed Matter +1302.5700 Solar and Stellar Astrophysics +1302.5901 Mesoscale and Nanoscale Physics +1302.6652 Combinatorics +1303.1121 Data Analysis, Statistics and Probability +1303.1396 Theory +1303.2120 Cosmology and Nongalactic Astrophysics +1303.2788 Cosmology and Nongalactic Astrophysics +1303.3380 Cosmology and Nongalactic Astrophysics +1303.4716 Mesoscale and Nanoscale Physics +1303.6010 Experiment +1303.6954 Mesoscale and Nanoscale Physics +1304.1973 Experiment +1304.2661 Plasma Physics +1304.3754 Data Structures and Algorithms +1304.4065 +1304.4160 Strongly Correlated Electrons +1304.4293 Statistical Mechanics +1304.5116 Materials Science +1304.5693 Materials Science +1304.6735 Superconductivity +1304.6976 Phenomenology +1304.7266 Atomic Physics +1304.7791 Cosmology and Nongalactic Astrophysics +1304.7924 +1305.0545 +1305.0568 Statistical Mechanics +1305.1185 Optics +1305.1313 Phenomenology +1305.1334 Algebraic Geometry +1305.1366 Group Theory +1305.1870 Lattice +1305.3018 Materials Science +1305.3293 Spectral Theory +1305.4046 Phenomenology +1305.5806 Phenomenology +1305.5878 Lattice +1305.6415 Superconductivity +1305.6841 Quantum Gases +1305.6982 Cosmology and Nongalactic Astrophysics +1305.7197 Solar and Stellar Astrophysics +1305.7236 Phenomenology +1306.0378 +1306.0574 Phenomenology +1306.0937 Optics +1306.2222 Mesoscale and Nanoscale Physics +1306.2286 +1306.2289 Fluid Dynamics +1306.2364 Theory +1306.3164 +1306.3600 Experiment +1306.4318 +1306.4356 Phenomenology +1306.4522 Theory +1306.4906 Materials Science +1306.4978 Numerical Analysis +1306.5017 Mesoscale and Nanoscale Physics +1306.5448 Statistical Mechanics +1306.5625 +1306.5915 Mesoscale and Nanoscale Physics +1306.6061 +1306.6079 Phenomenology +1306.6080 Strongly Correlated Electrons +1306.6136 Materials Science +1306.6228 Phenomenology +1306.6396 Theory +1306.6630 Phenomenology +1306.6745 Soft Condensed Matter +1307.0888 Numerical Analysis +1307.1147 Quantum Gases +1307.1273 Phenomenology +1307.2075 Software Engineering +1307.2550 Phenomenology +1307.2852 Optimization and Control +1307.3894 +1307.4157 Superconductivity +1307.4595 Quantum Gases +1307.5200 Probability +1307.5445 Atomic Physics +1307.5469 Theory +1307.5593 Quantum Gases +1307.5597 Probability +1307.6004 Quantum Gases +1307.7488 +1307.8267 Materials Science +1308.0160 Materials Science +1308.0188 Cosmology and Nongalactic Astrophysics +1308.0642 Statistics Theory +1308.1143 +1308.1223 Materials Science +1308.2527 +1308.3180 Group Theory +1308.3974 Computational Physics +1308.4218 Cryptography and Security +1308.4630 Atmospheric and Oceanic Physics +1308.4739 Analysis of PDEs +1308.4990 Analysis of PDEs +1308.5538 Accelerator Physics +1308.5739 Functional Analysis +1308.6776 Geometric Topology +1309.0071 Mesoscale and Nanoscale Physics +1309.0170 Combinatorics +1309.0213 Computer Vision and Pattern Recognition +1309.0216 Chemical Physics +1309.0230 Number Theory +1309.0276 Networking and Internet Architecture +1309.0432 Chemical Physics +1309.0480 Accelerator Physics +1309.0502 +1309.0521 Cryptography and Security +1309.0522 Cryptography and Security +1309.0532 Functional Analysis +1309.0533 Spectral Theory +1309.0534 Software Engineering +1309.0539 Functional Analysis +1309.0540 +1309.0545 Representation Theory +1309.0548 Solar and Stellar Astrophysics +1309.0549 Atomic Physics +1309.0551 Computational Engineering, Finance, and Science +1309.0553 Combinatorics +1309.0557 Pricing of Securities +1309.0562 +1309.0565 +1309.0577 Number Theory +1309.0582 Statistical Finance +1309.0585 Symplectic Geometry +1309.0589 Other Computer Science +1309.0592 Algebraic Geometry +1309.0593 Number Theory +1309.0594 Representation Theory +1309.0598 Networking and Internet Architecture +1309.0601 Materials Science +1309.0602 Methodology +1309.0604 Networking and Internet Architecture +1309.0607 Information Theory +1309.0608 Astrophysics of Galaxies +1309.0609 Statistics Theory +1309.0612 High Energy Astrophysical Phenomena +1309.0614 Physics and Society +1309.0619 Probability +1309.0623 Probability +1309.0628 +1309.0631 Differential Geometry +1309.0632 Networking and Internet Architecture +1309.0633 Computational Complexity +1309.0634 Databases +1309.0636 Group Theory +1309.0642 Instrumentation and Methods for Astrophysics +1309.0643 Combinatorics +1309.0644 Combinatorics +1309.0652 +1309.0653 Instrumentation and Methods for Astrophysics +1309.0654 Instrumentation and Methods for Astrophysics +1309.0659 Artificial Intelligence +1309.0662 Rings and Algebras +1309.0663 Analysis of PDEs +1309.0669 Algebraic Topology +1309.0671 Robotics +1309.0672 Instrumentation and Detectors +1309.0676 +1309.0680 Combinatorics +1309.0681 Logic +1309.0683 Computational Geometry +1309.0685 Probability +1309.0686 Algebraic Topology +1309.0687 Algebraic Topology +1309.0689 Functional Analysis +1309.0699 General Physics +1309.0700 Data Structures and Algorithms +1309.0702 Solar and Stellar Astrophysics +1309.0707 Information Theory +1309.0709 Soft Condensed Matter +1309.0711 Lattice +1309.0714 Computers and Society +1309.0715 +1309.0718 Networking and Internet Architecture +1309.0721 Phenomenology +1309.0723 Fluid Dynamics +1309.0724 History and Philosophy of Physics +1309.0725 Combinatorics +1309.0731 Solar and Stellar Astrophysics +1309.0734 Physics Education +1309.0735 Plasma Physics +1309.0737 Solar and Stellar Astrophysics +1309.0738 Experiment +1309.0739 Classical Physics +1309.0740 Solar and Stellar Astrophysics +1309.0741 Solar and Stellar Astrophysics +1309.0744 Number Theory +1309.0747 Functional Analysis +1309.0750 Information Theory +1309.0752 Networking and Internet Architecture +1309.0754 Spectral Theory +1309.0758 Medical Physics +1309.0760 Dynamical Systems +1309.0764 Phenomenology +1309.0766 Robotics +1309.0775 Information Theory +1309.0778 Superconductivity +1309.0781 Computational Engineering, Finance, and Science +1309.0796 Group Theory +1309.0800 +math/0406042 Group Theory +math/0406046 Group Theory +math/0501082 Group Theory +math/0501086 Category Theory +math/0609115 Algebraic Geometry +math/9507205 Group Theory +math/9705205 Group Theory +math/9708202 Group Theory +0807.2309 +0905.3377 Dynamical Systems +0912.1207 Statistics Theory +1009.4003 Analysis of PDEs +1102.1453 Representation Theory +1104.2646 Mesoscale and Nanoscale Physics +1106.3089 +1107.2016 +1110.3432 Solar and Stellar Astrophysics +1111.5168 Operator Algebras +1111.6908 +1112.0771 Operator Algebras +1112.4982 +1201.2379 +1202.1376 +1202.6159 Computation +1203.0402 +1206.1698 Discrete Mathematics +1207.0188 Computation +1207.1250 Algebraic Geometry +1208.2253 Applications +1208.5591 Atomic Physics +1209.6183 Algebraic Geometry +1210.0365 Classical Physics +1210.5734 Logic in Computer Science +1211.3794 +1212.3975 Statistical Mechanics +1212.6735 Combinatorics +1301.0288 Phenomenology +1301.0723 +1301.1052 Optics +1301.5295 General Physics +1301.7069 Astrophysics of Galaxies +1302.1838 +1302.2009 Probability +1302.2817 Quantum Gases +1302.4404 Methodology +1302.7123 Mesoscale and Nanoscale Physics +1303.6609 Databases +1304.0034 Optics +1304.2709 +1304.3871 Classical Analysis and ODEs +1304.6654 Combinatorics +1304.7835 Phenomenology +1305.0523 Instrumentation and Methods for Astrophysics +1305.2398 Software Engineering +1305.3615 Theory +1305.4330 Cryptography and Security +1305.6798 Strongly Correlated Electrons +1305.7116 Theory +1306.1859 Mesoscale and Nanoscale Physics +1306.2526 +1306.4713 Programming Languages +1306.5996 Probability +1306.6367 Symplectic Geometry +1307.1993 Differential Geometry +1307.5151 Optimization and Control +1307.5913 +1307.6081 Methodology +1308.0510 Molecular Networks +1308.0671 Mesoscale and Nanoscale Physics +1308.0924 Cosmology and Nongalactic Astrophysics +1308.1700 Discrete Mathematics +1308.2674 Phenomenology +1308.3096 +1308.3125 +1308.3153 +1308.3576 +1308.3612 Superconductivity +1308.4866 Strongly Correlated Electrons +1308.5848 Rings and Algebras +1308.6007 Computational Complexity +1309.0541 +1309.1501 Learning +1309.1508 Learning +1309.2033 +1309.2106 Classical Analysis and ODEs +1309.2406 Strongly Correlated Electrons +1309.2449 +1309.3706 Superconductivity +1309.4764 Solar and Stellar Astrophysics +1310.0773 High Energy Astrophysical Phenomena +1310.1532 Cosmology and Nongalactic Astrophysics +1310.1961 +1310.2748 Networking and Internet Architecture +1310.4124 Phenomenology +1310.6797 Soft Condensed Matter +1310.6876 Computational Engineering, Finance, and Science +1310.8350 Dynamical Systems +1310.8415 Soft Condensed Matter +1311.3438 Cosmology and Nongalactic Astrophysics +1311.5099 Cosmology and Nongalactic Astrophysics +1311.5496 Strongly Correlated Electrons +1311.5749 Dynamical Systems +1311.6664 Combinatorics +1311.6799 Computer Vision and Pattern Recognition +1311.7350 Theory +1312.0004 +1312.0827 Dynamical Systems +1312.0891 Solar and Stellar Astrophysics +1312.1442 High Energy Astrophysical Phenomena +1312.2018 Data Structures and Algorithms +1312.2175 Networking and Internet Architecture +1312.2389 +1312.2431 Solar and Stellar Astrophysics +1312.2581 Networking and Internet Architecture +1312.2583 Astrophysics of Galaxies +1312.2585 Computers and Society +1312.2604 +1312.2606 Learning +1312.2612 Other Computer Science +1312.2613 Combinatorics +1312.2614 Number Theory +1312.2616 Lattice +1312.2617 Algebraic Geometry +1312.2622 +1312.2624 Phenomenology +1312.2625 Networking and Internet Architecture +1312.2628 Distributed, Parallel, and Cluster Computing +1312.2629 Systems and Control +1312.2630 Strongly Correlated Electrons +1312.2631 Optimization and Control +1312.2632 Systems and Control +1312.2634 +1312.2641 Trading and Market Microstructure +1312.2644 +1312.2648 +1312.2649 Group Theory +1312.2656 Classical Physics +1312.2658 Computers and Society +1312.2660 Superconductivity +1312.2663 Functional Analysis +1312.2669 Databases +1312.2670 +1312.2674 Numerical Analysis +1312.2675 Populations and Evolution +1312.2678 Databases +1312.2679 High Energy Astrophysical Phenomena +1312.2681 Information Theory +1312.2686 Applications +1312.2687 Applications +1312.2689 Complex Variables +1312.2691 High Energy Astrophysical Phenomena +1312.2693 General Finance +1312.2696 Programming Languages +1312.2698 Programming Languages +1312.2699 Programming Languages +1312.2700 Logic in Computer Science +1312.2701 Distributed, Parallel, and Cluster Computing +1312.2702 Programming Languages +1312.2703 Distributed, Parallel, and Cluster Computing +1312.2704 Programming Languages +1312.2705 Distributed, Parallel, and Cluster Computing +1312.2706 Logic in Computer Science +1312.2707 Programming Languages +1312.2709 Artificial Intelligence +1312.2710 Learning +1312.2715 Atomic Physics +1312.2718 +1312.2720 High Energy Astrophysical Phenomena +1312.2722 General Finance +1312.2723 +1312.2725 Differential Geometry +1312.2726 Statistics Theory +1312.2728 High Energy Astrophysical Phenomena +1312.2731 Numerical Analysis +1312.2733 High Energy Astrophysical Phenomena +1312.2736 Differential Geometry +1312.2737 Solar and Stellar Astrophysics +1312.2739 Solar and Stellar Astrophysics +1312.2741 +1312.2742 Popular Physics +1312.2748 Mesoscale and Nanoscale Physics +1312.2750 Quantum Gases +1312.2753 Methodology +1312.2755 Probability +1312.2762 Analysis of PDEs +1312.2763 +1312.2767 Combinatorics +1312.2773 Dynamical Systems +1312.2774 Analysis of PDEs +1312.2778 Combinatorics +1312.2780 Statistics Theory +1312.2782 Rings and Algebras +1312.2785 Information Theory +1312.2787 Fluid Dynamics +1312.2788 Statistics Theory +1312.2790 Disordered Systems and Neural Networks +1312.2791 Digital Libraries +1312.2794 Statistics Theory +1312.2797 Optics +1312.2798 Artificial Intelligence +1312.2799 Statistics Theory +1312.2800 Applications +1312.2801 +1312.2804 Software Engineering +1312.2805 Lattice +1312.2806 Networking and Internet Architecture +1312.2807 Distributed, Parallel, and Cluster Computing +1312.2808 Other Computer Science +1312.2809 Statistics Theory +1312.2811 +1312.2813 Distributed, Parallel, and Cluster Computing +1312.2814 Solar and Stellar Astrophysics +1312.2815 Soft Condensed Matter +1312.2816 Discrete Mathematics +1312.2817 Mesoscale and Nanoscale Physics +1312.2819 Discrete Mathematics +1312.2820 Analysis of PDEs +1312.2822 Robotics +1312.2825 Dynamical Systems +1312.2828 Cryptography and Security +1312.2834 Analysis of PDEs +1312.2835 Mesoscale and Nanoscale Physics +1312.2838 Molecular Networks +1312.2842 Cosmology and Nongalactic Astrophysics +1312.2843 Phenomenology +1312.2844 Information Retrieval +1312.2855 Numerical Analysis +1312.2856 Tissues and Organs +1312.2857 Geometric Topology +1312.2863 Probability +1312.2864 Solar and Stellar Astrophysics +1312.2865 Other Computer Science +1312.2866 +1312.2868 Other Computer Science +1312.2874 Lattice +1312.2875 +1312.2879 Probability +1312.2880 Numerical Analysis +1312.2883 Functional Analysis +1312.2884 Networking and Internet Architecture +1312.2886 +1312.2889 Data Structures and Algorithms +1312.2894 Logic in Computer Science +1312.2897 Chemical Physics +1312.2899 Theory +1312.2903 Probability +1312.2906 +1312.2908 Materials Science +1312.2909 Instrumentation and Methods for Astrophysics +1312.2912 Classical Physics +1312.2915 Computational Complexity +1312.2919 Databases +1312.2920 Representation Theory +1312.2924 Algebraic Topology +1312.2927 Earth and Planetary Astrophysics +1312.2930 Phenomenology +1312.2931 Dynamical Systems +1312.2936 Learning +1312.2943 Astrophysics of Galaxies +1312.2945 Materials Science +gr-qc/0105088 +1305.6876 +1203.2115 Probability +0706.2807 Number Theory +0706.4297 Numerical Analysis +0708.0046 Portfolio Management +0709.3716 Materials Science +0710.4082 Numerical Analysis +0807.2700 +0808.0399 Theory +0808.2847 Differential Geometry +0810.0812 +0902.4424 Numerical Analysis +0903.1576 Spectral Theory +0904.0260 History and Philosophy of Physics +0904.1897 Information Theory +0912.2450 Superconductivity +0912.2844 Chaotic Dynamics +1002.1341 Mesoscale and Nanoscale Physics +1002.3905 General Physics +1006.3440 Functional Analysis +1006.5757 General Physics +1008.0525 Space Physics +1008.2983 Number Theory +1009.3039 Statistical Mechanics +1009.5121 Information Theory +1009.5830 General Finance +1010.1396 Optics +1012.1985 Analysis of PDEs +1012.4686 Experiment +1012.5979 Algebraic Geometry +1101.3074 Combinatorics +1101.3795 Operator Algebras +1102.0667 Combinatorics +1102.1091 Materials Science +1102.3048 Theory +1102.3973 +1102.5624 Statistical Mechanics +1103.0154 Rings and Algebras +1103.1158 Superconductivity +1103.3983 Combinatorics +1103.5379 Statistical Mechanics +1105.0213 +1105.0703 Information Theory +1105.2029 Algebraic Geometry +1105.2661 Classical Analysis and ODEs +1105.3300 Probability +1106.1525 General Physics +1106.1879 Information Theory +1106.5839 Differential Geometry +1107.4118 Data Analysis, Statistics and Probability +1107.5762 Representation Theory +1108.0919 Instrumentation and Methods for Astrophysics +1108.1648 Strongly Correlated Electrons +1108.4110 +1108.4184 Combinatorics +1108.4552 Algebraic Geometry +1108.5860 Optimization and Control +1108.6090 Differential Geometry +1109.1070 Methodology +1109.1682 Analysis of PDEs +1109.1866 +1109.4596 Analysis of PDEs +1109.5083 Information Theory +1109.5120 Information Theory +1110.2109 Quantum Gases +1111.1748 Analysis of PDEs +1111.3019 Earth and Planetary Astrophysics +1111.4139 Superconductivity +1111.4669 Algebraic Topology +1111.4701 Number Theory +1111.5734 Combinatorics +1111.5817 +1111.6578 Classical Analysis and ODEs +1111.7123 Functional Analysis +1112.0333 +1112.1716 +1112.4062 Logic +1112.4085 Differential Geometry +1112.4189 Logic +1112.4610 Combinatorics +1112.5860 Exactly Solvable and Integrable Systems +1201.0272 Rings and Algebras +1201.1780 Theory +1201.6096 Cosmology and Nongalactic Astrophysics +1201.6435 Superconductivity +1202.0095 Quantum Algebra +1202.2183 Complex Variables +1202.2266 Chemical Physics +1202.4062 Geometric Topology +1202.5909 Physics and Society +1202.6539 Theory +1203.0123 Classical Analysis and ODEs +1203.0857 Operator Algebras +1203.2067 Medical Physics +1203.2655 Physics and Society +1203.3047 Other Condensed Matter +1203.3055 Computational Engineering, Finance, and Science +1203.3113 Neurons and Cognition +1203.3235 Functional Analysis +1203.3891 Theory +1203.5390 Other Condensed Matter +1203.5599 Optimization and Control +1204.0076 Analysis of PDEs +1204.2050 Dynamical Systems +1204.4767 Probability +1204.5720 Algebraic Topology +1204.6338 Phenomenology +1205.2098 +1205.2245 Strongly Correlated Electrons +1205.2994 Group Theory +1205.3104 +1205.3321 Databases +1205.4463 Computer Vision and Pattern Recognition +1205.5792 Strongly Correlated Electrons +1205.6725 +1205.6853 Fluid Dynamics +1206.1441 Strongly Correlated Electrons +1206.2031 +1206.2313 Superconductivity +1206.2550 Statistical Mechanics +1206.3164 Dynamical Systems +1206.3688 Probability +1206.4331 Theory +1206.4962 Quantum Gases +1206.5397 Combinatorics +1207.1252 +1207.1690 Systems and Control +1207.2210 Mesoscale and Nanoscale Physics +1207.3402 Mesoscale and Nanoscale Physics +1207.4344 Mesoscale and Nanoscale Physics +1207.4969 Number Theory +1207.6124 Mesoscale and Nanoscale Physics +1207.6277 Materials Science +1207.6528 Numerical Analysis +1207.6538 Instrumentation and Detectors +1207.6607 Networking and Internet Architecture +1207.6924 Mesoscale and Nanoscale Physics +1207.6943 Mesoscale and Nanoscale Physics +1207.7040 Data Structures and Algorithms +1208.0064 Mesoscale and Nanoscale Physics +1208.0444 Cosmology and Nongalactic Astrophysics +1208.0649 Mesoscale and Nanoscale Physics +1208.0746 +1208.0981 Theory +1208.1694 Populations and Evolution +1208.1697 Information Theory +1208.1731 Strongly Correlated Electrons +1208.2363 Optimization and Control +1208.2612 Populations and Evolution +1208.2740 Mesoscale and Nanoscale Physics +1208.2848 Atomic Physics +1208.3843 Strongly Correlated Electrons +1208.3864 Plasma Physics +1208.4480 Mesoscale and Nanoscale Physics +1208.4495 Phenomenology +1208.4971 +1208.5000 Superconductivity +1208.5118 Other Condensed Matter +1208.5704 Phenomenology +1209.0435 +1209.1593 Materials Science +1209.2235 Strongly Correlated Electrons +1209.2781 Adaptation and Self-Organizing Systems +1209.2972 +1209.3175 Materials Science +1209.3386 Phenomenology +1209.3593 Materials Science +1209.3620 Group Theory +1209.3887 +1209.4955 Numerical Analysis +1209.5452 +1210.0111 +1210.0777 +1210.0807 Statistics Theory +1210.1305 Superconductivity +1210.2340 Number Theory +1210.2994 Optics +1210.3458 Phenomenology +1210.3661 Phenomenology +1210.4825 Phenomenology +1210.5010 +1210.5619 +1210.5791 Plasma Physics +1210.6156 Biological Physics +1210.6925 Combinatorics +1210.6973 Materials Science +1210.7108 Strongly Correlated Electrons +1210.7465 Phenomenology +1210.7541 Mesoscale and Nanoscale Physics +1211.0082 +1211.0116 Lattice +1211.0129 Number Theory +1211.0599 Number Theory +1211.0606 Computational Complexity +1211.1509 Classical Physics +1211.1541 Experiment +1211.1970 Mesoscale and Nanoscale Physics +1211.3343 Data Analysis, Statistics and Probability +1211.4884 Chemical Physics +1211.5164 Probability +1211.5224 Statistical Mechanics +1211.5516 Experiment +1211.5730 Genomics +1211.5768 Accelerator Physics +1211.6003 Genomics +1211.6503 Phenomenology +1212.0745 +1212.1543 Pattern Formation and Solitons +1212.1824 Learning +1212.1908 Representation Theory +1212.2435 Plasma Physics +1212.2786 Mesoscale and Nanoscale Physics +1212.2832 Genomics +1212.3017 Classical Physics +1212.3295 Distributed, Parallel, and Cluster Computing +1212.3690 Information Theory +1212.3772 Quantum Algebra +1212.4253 Algebraic Geometry +1212.4303 Social and Information Networks +1212.4916 Statistical Mechanics +1212.5121 Strongly Correlated Electrons +1212.5125 Differential Geometry +1212.5182 Information Theory +1212.5242 +1212.5280 Group Theory +1212.5340 +1212.5476 +1212.5663 Information Theory +1212.5815 Systems and Control +1212.5846 +1212.5946 Metric Geometry +1212.6258 +1212.6259 Cryptography and Security +1212.6260 Plasma Physics +1212.6268 Complex Variables +1212.6269 Instrumentation and Methods for Astrophysics +1212.6273 Robotics +1212.6274 +1212.6278 Instrumentation and Methods for Astrophysics +1212.6285 +1212.6286 Differential Geometry +1212.6287 Numerical Analysis +1212.6289 +1212.6296 Computers and Society +1212.6298 Multiagent Systems +1212.6299 Other Computer Science +1212.6302 Chemical Physics +1212.6305 Geometric Topology +1212.6306 Number Theory +1212.6307 Combinatorics +1212.6308 Strongly Correlated Electrons +1212.6309 Optimization and Control +1212.6310 Solar and Stellar Astrophysics +1212.6311 Phenomenology +1212.6313 +1212.6317 Combinatorics +1212.6323 Social and Information Networks +1212.6325 Systems and Control +1212.6327 Data Structures and Algorithms +1212.6330 Mesoscale and Nanoscale Physics +1212.6333 Lattice +1212.6335 +1212.6339 Other Statistics +1212.6340 +1212.6341 Experiment +1212.6344 +1212.6346 Other Condensed Matter +1212.6349 Biological Physics +1212.6350 Sound +1212.6352 Experiment +1212.6353 Probability +1212.6354 Networking and Internet Architecture +1212.6355 Computer Science and Game Theory +1212.6356 Data Analysis, Statistics and Probability +1212.6357 Chemical Physics +1212.6358 Soft Condensed Matter +1212.6359 Soft Condensed Matter +1212.6360 Numerical Analysis +1212.6366 Probability +1212.6367 History and Philosophy of Physics +1212.6368 Rings and Algebras +1212.6369 Statistical Mechanics +1212.6372 Other Computer Science +1212.6375 Computer Science and Game Theory +1212.6384 Physics and Society +1212.6385 Numerical Analysis +1212.6388 Systems and Control +1212.6390 Probability +1212.6391 Analysis of PDEs +1212.6393 +1212.6394 Geophysics +1212.6399 Cosmology and Nongalactic Astrophysics +1212.6402 Probability +1212.6403 Soft Condensed Matter +1212.6404 Experiment +1212.6405 +1212.6407 Instrumentation and Methods for Astrophysics +1212.6410 Analysis of PDEs +1212.6412 +1212.6413 Materials Science +1212.6414 Combinatorics +1212.6417 Atomic Physics +1212.6420 Algebraic Geometry +1212.6425 Operator Algebras +1212.6429 Commutative Algebra +1212.6433 +1212.6436 Representation Theory +1212.6437 Information Theory +1212.6439 +1212.6449 Theory +1212.6450 Optimization and Control +1212.6452 +1212.6453 Combinatorics +1212.6455 +1212.6456 Physics and Society +1212.6459 Rings and Algebras +1212.6460 Materials Science +1212.6461 Numerical Analysis +1212.6467 Geometric Topology +1212.6468 Combinatorics +1212.6469 Analysis of PDEs +1212.6473 Representation Theory +1212.6474 Optics +1212.6475 Classical Analysis and ODEs +1212.6476 Superconductivity +1212.6478 Information Theory +1212.6480 Strongly Correlated Electrons +1212.6482 Atomic Physics +1212.6483 Materials Science +1212.6484 Superconductivity +1212.6487 Representation Theory +1212.6488 Cosmology and Nongalactic Astrophysics +1212.6489 +1212.6490 Cosmology and Nongalactic Astrophysics +1212.6492 Numerical Analysis +1212.6499 High Energy Astrophysical Phenomena +1212.6500 Logic in Computer Science +1212.6503 Operator Algebras +1212.6508 +1212.6510 Other Computer Science +1212.6513 Number Theory +1212.6514 Mesoscale and Nanoscale Physics +1212.6516 Differential Geometry +1212.6520 Instrumentation and Methods for Astrophysics +1212.6521 Artificial Intelligence +1212.6522 Atmospheric and Oceanic Physics +1212.6525 Representation Theory +1212.6531 Computers and Society +1212.6533 Algebraic Geometry +1212.6535 Differential Geometry +1212.6538 Disordered Systems and Neural Networks +1212.6542 Software Engineering +1212.6544 Functional Analysis +1212.6545 Numerical Analysis +1212.6546 Methodology +1212.6549 Statistics Theory +1212.6550 Artificial Intelligence +1212.6551 Metric Geometry +1212.6552 Experiment +1212.6553 Number Theory +1212.6554 Phenomenology +1212.6555 +1212.6558 Differential Geometry +1212.6560 Differential Geometry +1212.6564 Superconductivity +1212.6565 Cosmology and Nongalactic Astrophysics +1212.6571 Group Theory +1212.6572 Differential Geometry +1212.6574 Logic in Computer Science +1212.6579 Commutative Algebra +1212.6581 Differential Geometry +1212.6583 Soft Condensed Matter +1212.6585 Optics +1212.6586 Fluid Dynamics +1212.6592 Information Theory +1212.6594 Solar and Stellar Astrophysics +1212.6598 Representation Theory +1212.6602 Information Theory +1212.6603 Analysis of PDEs +1212.6604 Dynamical Systems +1212.6605 Optics +1212.6606 Phenomenology +1212.6607 Optimization and Control +1212.6610 Optimization and Control +1212.6611 Group Theory +1212.6616 Astrophysics of Galaxies +1212.6620 Mesoscale and Nanoscale Physics +1212.6621 Number Theory +1212.6622 +1212.6627 Information Theory +1212.6633 Materials Science +1212.6640 Databases +1212.6646 Information Theory +1212.6647 Strongly Correlated Electrons +1212.6650 Theory +1212.6657 Classical Analysis and ODEs +1212.6659 Machine Learning +1212.6661 +1212.6671 Spectral Theory +1212.6678 Populations and Evolution +1212.6683 Group Theory +1212.6684 Pattern Formation and Solitons +1212.6686 Information Theory +1212.6691 Quantum Gases +1212.6692 Combinatorics +1212.6694 Optimization and Control +1212.6695 Number Theory +1212.6704 Materials Science +1212.6707 Astrophysics of Galaxies +1212.6708 Astrophysics of Galaxies +1212.6709 Analysis of PDEs +1212.6711 Data Analysis, Statistics and Probability +1212.6712 Solar and Stellar Astrophysics +1212.6717 Complex Variables +1212.6718 Experiment +1212.6719 Analysis of PDEs +1212.6722 +1212.6723 +1212.6724 Solar and Stellar Astrophysics +1212.6725 Computational Complexity +1212.6731 +1212.6738 Solar and Stellar Astrophysics +1212.6741 Solar and Stellar Astrophysics +1212.6744 Probability +1212.6750 Operator Algebras +1212.6751 Logic +1212.6752 Phenomenology +1212.6754 Disordered Systems and Neural Networks +1212.6756 Combinatorics +1212.6762 Differential Geometry +1212.6771 Quantum Algebra +1212.6776 Physics Education +1212.6778 Disordered Systems and Neural Networks +1212.6780 Group Theory +1212.6781 Data Structures and Algorithms +1212.6784 +1212.6787 Theory +1212.6790 Algebraic Geometry +1212.6791 Trading and Market Microstructure +1212.6795 General Finance +1212.6799 Algebraic Geometry +1212.6802 Differential Geometry +1212.6805 +1212.6806 Social and Information Networks +1212.6808 Social and Information Networks +1212.6810 Social and Information Networks +1212.6811 Operator Algebras +1212.6813 Logic in Computer Science +1212.6817 Systems and Control +1212.6820 Genomics +1212.6827 Biological Physics +1212.6830 Analysis of PDEs +1212.6831 Data Structures and Algorithms +1212.6834 Phenomenology +1212.6835 Mesoscale and Nanoscale Physics +1212.6837 Robotics +1212.6838 Cosmology and Nongalactic Astrophysics +1212.6839 Solar and Stellar Astrophysics +1212.6841 +1212.6845 Combinatorics +1212.6849 Lattice +1212.6851 Probability +1212.6856 Computer Science and Game Theory +1212.6857 Databases +1212.6858 Strongly Correlated Electrons +1212.6861 Combinatorics +1212.6863 +1212.6866 Materials Science +1212.6870 +1212.6871 Representation Theory +1212.6874 +1212.6877 Theory +1212.6887 +1212.6889 Analysis of PDEs +1212.6892 Classical Physics +1212.6897 Dynamical Systems +1212.6898 Experiment +1212.6899 Populations and Evolution +1212.6903 Sound +1212.6904 Rings and Algebras +1212.6907 Networking and Internet Architecture +1212.6908 Probability +1212.6909 Combinatorics +1212.6913 General Mathematics +1212.6919 Theory +1212.6921 Phenomenology +1212.6922 Neural and Evolutionary Computing +1212.6923 Graphics +1212.6928 Functional Analysis +1212.6930 Information Theory +1212.6935 Computational Complexity +1212.6936 Machine Learning +1212.6958 Learning +1212.6960 Cosmology and Nongalactic Astrophysics +1212.6971 Phenomenology +1212.6972 Theory +1212.6974 Theory +cond-mat/0504241 Disordered Systems and Neural Networks +cond-mat/0512555 Disordered Systems and Neural Networks +cond-mat/0603824 Disordered Systems and Neural Networks +cond-mat/0609609 Statistical Mechanics +math/0412347 Numerical Analysis +math/0502140 Group Theory +physics/0501140 History and Philosophy of Physics +physics/0510044 History and Philosophy of Physics +physics/0606023 Physics and Society +quant-ph/0211019 +0705.1707 +0806.2611 +0806.4561 Probability +0809.4984 Analysis of PDEs +0812.4763 General Mathematics +0901.1076 +0902.0753 Mesoscale and Nanoscale Physics +0904.0817 Logic +0905.1341 Algebraic Geometry +0905.2281 Cosmology and Nongalactic Astrophysics +0907.4060 Analysis of PDEs +1003.1858 +1004.4256 Cosmology and Nongalactic Astrophysics +1005.1092 Optics +1005.1093 Optics +1007.0984 Complex Variables +1008.0204 Statistics Theory +1010.1946 Algebraic Geometry +1010.2067 +1011.6522 Phenomenology +1103.3418 Differential Geometry +1104.5016 Theory +1107.1302 +1107.2188 Data Structures and Algorithms +1107.5923 Rings and Algebras +1108.1810 Differential Geometry +1109.2344 Computational Physics +1110.0373 Biological Physics +1110.1243 Functional Analysis +1110.3551 +1111.0156 Discrete Mathematics +1111.3419 Combinatorics +1111.3471 Phenomenology +1112.4275 +1201.2947 +1202.3660 Number Theory +1202.4547 Quantum Gases +1203.2037 +1203.2268 Social and Information Networks +1204.2000 +1204.2394 Commutative Algebra +1204.3035 Optimization and Control +1204.5380 Optics +1204.5444 Analysis of PDEs +1204.6266 Statistical Mechanics +1205.0231 Metric Geometry +1205.3020 Information Theory +1205.3220 Probability +1205.5985 Commutative Algebra +1206.1805 Statistical Mechanics +1206.3544 Functional Analysis +1206.5353 Phenomenology +1207.1952 +1207.5093 Representation Theory +1208.0061 +1208.0620 Probability +1208.2947 Phenomenology +1208.4452 Geometric Topology +1209.2112 Solar and Stellar Astrophysics +1209.2719 Strongly Correlated Electrons +1209.3831 +1209.4049 Theory +1209.4494 +1209.6051 Superconductivity +1210.0695 +1210.0891 Information Theory +1210.1004 +1210.1141 Phenomenology +1210.1623 Number Theory +1210.2555 Applications +1210.3961 Statistical Mechanics +1210.4817 Mesoscale and Nanoscale Physics +1210.5074 Phenomenology +1210.5174 Mesoscale and Nanoscale Physics +1210.6596 Cosmology and Nongalactic Astrophysics +1210.6936 Phenomenology +1210.7457 Representation Theory +1210.8107 Phenomenology +1210.8366 Phenomenology +1211.0105 Dynamical Systems +1211.2147 Number Theory +1211.2225 Theory +1211.2867 Functional Analysis +1211.3468 Statistical Mechanics +1211.3600 Experiment +1211.3806 Soft Condensed Matter +1211.3863 Experiment +1211.4004 Phenomenology +1211.4829 Chemical Physics +1211.4830 Functional Analysis +1211.6280 Mesoscale and Nanoscale Physics +1211.7037 Optics +1211.7063 Cosmology and Nongalactic Astrophysics +1212.0643 Statistical Mechanics +1212.0917 +1212.1503 Quantum Gases +1212.2122 +1212.2197 +1212.2990 Atomic Physics +1212.4412 +1212.5611 +1212.6175 Experiment +1301.0076 Phenomenology +1301.0388 Analysis of PDEs +1301.0519 +1301.0829 Phenomenology +1301.1486 Phenomenology +1301.1777 Materials Science +1301.1839 Phenomenology +1301.2719 Strongly Correlated Electrons +1301.3314 +1301.4114 Applications +1301.4281 Statistical Mechanics +1301.4570 Phenomenology +1301.5706 +1301.5832 +1301.5846 +1301.6900 Social and Information Networks +1301.7327 Optimization and Control +1302.0964 Materials Science +1302.2237 Optics +1302.2356 High Energy Astrophysical Phenomena +1302.2640 Theory +1302.3069 Probability +1302.3108 Mesoscale and Nanoscale Physics +1302.4047 Atomic Physics +1302.4242 Learning +1302.4692 Differential Geometry +1302.5425 Theory +1302.5455 Social and Information Networks +1302.5635 Computational Geometry +1302.5848 Numerical Analysis +1302.5928 Number Theory +1302.6089 +1302.6210 Neural and Evolutionary Computing +1302.6230 Group Theory +1302.6243 Discrete Mathematics +1302.6252 Cosmology and Nongalactic Astrophysics +1302.6258 Cellular Automata and Lattice Gases +1302.6259 Information Theory +1302.6260 Mesoscale and Nanoscale Physics +1302.6262 +1302.6267 Cryptography and Security +1302.6279 Combinatorics +1302.6287 Optics +1302.6290 Representation Theory +1302.6291 Rings and Algebras +1302.6292 Information Theory +1302.6293 Algebraic Geometry +1302.6294 Populations and Evolution +1302.6296 Solar and Stellar Astrophysics +1302.6299 Solar and Stellar Astrophysics +1302.6308 Materials Science +1302.6310 Neural and Evolutionary Computing +1302.6312 Distributed, Parallel, and Cluster Computing +1302.6315 Information Theory +1302.6320 Methodology +1302.6321 Materials Science +1302.6322 Optimization and Control +1302.6324 Networking and Internet Architecture +1302.6326 Numerical Analysis +1302.6327 Materials Science +1302.6328 Programming Languages +1302.6329 Distributed, Parallel, and Cluster Computing +1302.6330 Logic in Computer Science +1302.6331 Programming Languages +1302.6332 Programming Languages +1302.6333 Programming Languages +1302.6334 Computation and Language +1302.6335 Logic in Computer Science +1302.6336 Logic in Computer Science +1302.6337 Programming Languages +1302.6338 Logic in Computer Science +1302.6339 Logic in Computer Science +1302.6340 Information Retrieval +1302.6342 General Physics +1302.6345 Analysis of PDEs +1302.6347 Materials Science +1302.6348 Theory +1302.6351 Number Theory +1302.6356 Mesoscale and Nanoscale Physics +1302.6357 Quantum Algebra +1302.6358 Astrophysics of Galaxies +1302.6360 Quantum Algebra +1302.6364 Computers and Society +1302.6367 Solar and Stellar Astrophysics +1302.6368 Materials Science +1302.6370 General Topology +1302.6371 Instrumentation and Detectors +1302.6377 Analysis of PDEs +1302.6378 Algebraic Geometry +1302.6379 Computer Vision and Pattern Recognition +1302.6380 Analysis of PDEs +1302.6383 Commutative Algebra +1302.6385 Soft Condensed Matter +1302.6390 Methodology +1302.6393 Plasma Physics +1302.6397 Differential Geometry +1302.6399 Pricing of Securities +1302.6400 Classical Analysis and ODEs +1302.6401 Symbolic Computation +1302.6406 Number Theory +1302.6411 Formal Languages and Automata Theory +1302.6412 Instrumentation and Detectors +1302.6417 Materials Science +1302.6420 Cosmology and Nongalactic Astrophysics +1302.6424 Cryptography and Security +1302.6425 Earth and Planetary Astrophysics +1302.6426 Neural and Evolutionary Computing +1302.6427 Methodology +1302.6429 Plasma Physics +1302.6430 Materials Science +1302.6436 Robotics +1302.6437 Mesoscale and Nanoscale Physics +1302.6442 Artificial Intelligence +1302.6444 Atomic Physics +1302.6452 Machine Learning +1302.6454 Other Computer Science +1302.6455 Analysis of PDEs +1302.6461 High Energy Astrophysical Phenomena +1302.6466 Geophysics +1302.6467 Mesoscale and Nanoscale Physics +1302.6474 +1302.6476 Strongly Correlated Electrons +1302.6485 Number Theory +1302.6493 High Energy Astrophysical Phenomena +1302.6496 Dynamical Systems +1302.6501 Probability +1302.6503 Classical Physics +1302.6504 High Energy Astrophysical Phenomena +1302.6506 +1302.6510 Phenomenology +1302.6517 Combinatorics +1302.6519 Instrumentation and Detectors +1302.6522 Mesoscale and Nanoscale Physics +1302.6523 Learning +1302.6536 Geometric Topology +1302.6539 Probability +1302.6552 Commutative Algebra +1302.6561 Combinatorics +1302.6563 Numerical Analysis +1302.6568 Mesoscale and Nanoscale Physics +1302.6570 Information Theory +1302.6575 +1302.6580 Information Retrieval +hep-th/0112195 Theory +quant-ph/9706036 +quant-ph/9810027 +0708.0269 Analysis of PDEs +0805.2865 Algebraic Topology +0807.2936 Chemical Physics +0905.4285 Strongly Correlated Electrons +0908.3342 Strongly Correlated Electrons +1002.2008 Strongly Correlated Electrons +1008.0134 Strongly Correlated Electrons +1010.2232 Group Theory +1010.5077 Operator Algebras +1101.1478 Strongly Correlated Electrons +1103.0856 Group Theory +1103.4339 Populations and Evolution +1104.3906 Differential Geometry +1105.5074 Theory +1107.0637 Pattern Formation and Solitons +1108.2811 Strongly Correlated Electrons +1109.4000 Mesoscale and Nanoscale Physics +1109.4627 Networking and Internet Architecture +1109.5827 Cryptography and Security +1110.3946 +1110.4052 Data Structures and Algorithms +1110.5054 Theory +1110.5947 Complex Variables +1111.1788 Machine Learning +1111.4298 Pricing of Securities +1111.5483 Information Theory +1111.6178 Differential Geometry +1111.6289 Information Theory +1112.2442 Symplectic Geometry +1112.5138 Complex Variables +1112.5916 Strongly Correlated Electrons +1201.0181 Classical Analysis and ODEs +1201.4197 Networking and Internet Architecture +1202.0995 +1203.1570 Multiagent Systems +1203.3826 Strongly Correlated Electrons +1204.0105 Methodology +1204.2506 +1204.4647 Networking and Internet Architecture +1204.5438 Differential Geometry +1204.6157 General Physics +1204.6421 Representation Theory +1204.6537 Information Theory +1205.0920 Differential Geometry +1205.2414 Classical Analysis and ODEs +1205.4961 Statistical Mechanics +1205.5933 Superconductivity +1206.0540 +1206.1990 Algebraic Geometry +1206.2291 Optimization and Control +1206.5160 Experiment +1206.6790 Differential Geometry +1207.0221 Complex Variables +1207.1762 Numerical Analysis +1207.4670 High Energy Astrophysical Phenomena +1207.5585 Mesoscale and Nanoscale Physics +1207.6341 +1207.6828 Geometric Topology +1207.7116 Representation Theory +1208.0815 Dynamical Systems +1208.0863 Populations and Evolution +1208.3266 +1208.3796 +1208.3806 Information Theory +1208.4043 Networking and Internet Architecture +1208.4242 Algebraic Geometry +1209.0345 Optimization and Control +1209.0960 Numerical Analysis +1209.1923 Materials Science +1209.3459 Operator Algebras +1210.0244 General Physics +1210.0254 Analysis of PDEs +1210.1569 General Physics +1210.1993 +1210.2314 Statistics Theory +1210.3546 Probability +1210.3742 Numerical Analysis +1210.4415 Strongly Correlated Electrons +1210.4687 Mesoscale and Nanoscale Physics +1210.7061 Phenomenology +1211.0140 Solar and Stellar Astrophysics +1211.0353 Geometric Topology +1211.0354 Geometric Topology +1211.1214 Lattice +1211.1328 Machine Learning +1211.2269 Mesoscale and Nanoscale Physics +1211.3702 Combinatorics +1211.4909 Information Theory +1211.5623 Mesoscale and Nanoscale Physics +1211.6462 Disordered Systems and Neural Networks +1211.6950 Networking and Internet Architecture +1212.2700 +1212.3789 Optimization and Control +1212.3822 Combinatorics +1212.3824 Probability +1212.4557 +1212.6589 +1301.0027 Computational Complexity +1301.4127 Representation Theory +1301.4236 High Energy Astrophysical Phenomena +1301.4937 Geometric Topology +1301.5708 Materials Science +1301.5870 Cosmology and Nongalactic Astrophysics +1301.7619 Information Theory +1302.0734 Commutative Algebra +1302.1118 Soft Condensed Matter +1302.2220 Complex Variables +1302.2977 Mesoscale and Nanoscale Physics +1302.3491 Phenomenology +1302.3725 Statistical Mechanics +1302.4268 Information Theory +1302.4627 Combinatorics +1302.6249 +1303.0384 Cosmology and Nongalactic Astrophysics +1303.0968 Analysis of PDEs +1303.2616 Cosmology and Nongalactic Astrophysics +1303.2894 +1303.3808 Cosmology and Nongalactic Astrophysics +1303.4517 Combinatorics +1303.4726 Cosmology and Nongalactic Astrophysics +1303.5327 Phenomenology +1303.5602 +1303.5826 Mesoscale and Nanoscale Physics +1303.5850 Combinatorics +1303.6196 Mesoscale and Nanoscale Physics +1303.6324 Phenomenology +1303.6536 +1303.6869 Molecular Networks +1304.1061 Soft Condensed Matter +1304.2595 Statistical Mechanics +1304.2817 Numerical Analysis +1304.4307 Geometric Topology +1304.4709 +1304.5141 Mesoscale and Nanoscale Physics +1304.5603 Medical Physics +1304.5977 +1304.6023 Information Retrieval +1304.6026 Information Theory +1304.6920 Information Retrieval +1305.0253 High Energy Astrophysical Phenomena +1305.0605 Superconductivity +1305.2176 +1305.2761 High Energy Astrophysical Phenomena +1305.2783 +1305.3503 Soft Condensed Matter +1305.3538 Disordered Systems and Neural Networks +1305.6048 Theory +1305.6250 +1305.6782 +1305.6828 Representation Theory +1305.6921 Phenomenology +1305.7412 Soft Condensed Matter +1306.0400 Computational Complexity +1306.1039 Phenomenology +1306.1617 Differential Geometry +1306.1698 Statistical Mechanics +1306.1718 Computation +1306.2300 Materials Science +1306.3010 Statistical Mechanics +1306.3093 Information Theory +1306.3384 Mesoscale and Nanoscale Physics +1306.3902 +1306.4108 Phenomenology +1306.4465 Mesoscale and Nanoscale Physics +1306.5041 Data Structures and Algorithms +1306.5286 Pattern Formation and Solitons +1306.5511 Physics and Society +1306.5539 Logic in Computer Science +1306.5634 +1306.6843 Machine Learning +1307.0115 Analysis of PDEs +1307.1138 Differential Geometry +1307.1168 Instrumentation and Detectors +1307.1190 Accelerator Physics +1307.1432 Experiment +1307.1438 Rings and Algebras +1307.1486 Strongly Correlated Electrons +1307.1991 Statistical Mechanics +1307.2002 Cosmology and Nongalactic Astrophysics +1307.2025 +1307.2110 +1307.2558 +1307.4226 Phenomenology +1307.4314 Pattern Formation and Solitons +1307.4351 Number Theory +1307.4378 Experiment +1307.4418 +1307.4997 Phenomenology +1307.5288 Experiment +1307.6507 Instrumentation and Detectors +1307.6978 Soft Condensed Matter +1307.7280 Experiment +1307.8076 Phenomenology +1307.8444 Phenomenology +1308.1145 Accelerator Physics +1308.1174 Optimization and Control +1308.1394 Computational Complexity +1308.2757 Computational Geometry +1308.3346 Solar and Stellar Astrophysics +1308.4221 Strongly Correlated Electrons +1308.5174 Performance +1308.5485 Materials Science +1308.5555 Superconductivity +1308.5619 +1309.0400 +1309.0491 Statistical Finance +1309.0706 Logic +1309.1384 Atomic Physics +1309.2384 Functional Analysis +1309.4055 Formal Languages and Automata Theory +1309.4737 Commutative Algebra +1309.4794 Optics +1309.5079 Superconductivity +1309.5594 Computer Vision and Pattern Recognition +1309.5883 Combinatorics +1309.5884 Optimization and Control +1309.5895 Number Theory +1309.6025 Combinatorics +1309.6134 Physics and Society +1309.6199 Analysis of PDEs +1309.6351 Commutative Algebra +1309.6646 Analysis of PDEs +1309.6660 Materials Science +1309.6712 Rings and Algebras +1309.6769 Dynamical Systems +1309.6837 +1309.7181 +1309.7226 Chaotic Dynamics +1309.7342 Phenomenology +1309.7356 Algebraic Geometry +1309.7357 +1309.7363 Algebraic Geometry +1309.7364 Analysis of PDEs +1309.7365 Probability +1309.7370 Cosmology and Nongalactic Astrophysics +1309.7371 Solar and Stellar Astrophysics +1309.7373 Instrumentation and Detectors +1309.7376 Statistics Theory +1309.7379 Combinatorics +1309.7380 +1309.7385 Plasma Physics +1309.7386 Number Theory +1309.7390 Rings and Algebras +1309.7391 Computers and Society +1309.7393 Information Retrieval +1309.7397 Phenomenology +1309.7398 Accelerator Physics +1309.7399 Materials Science +1309.7405 Populations and Evolution +1309.7406 Superconductivity +1309.7407 Neurons and Cognition +1309.7409 Representation Theory +1309.7411 +1309.7413 Theory +1309.7414 Neurons and Cognition +1309.7415 Optimization and Control +1309.7421 Optimization and Control +1309.7425 Combinatorics +1309.7426 Analysis of PDEs +1309.7429 Distributed, Parallel, and Cluster Computing +1309.7433 Complex Variables +1309.7434 Computer Vision and Pattern Recognition +1309.7438 Strongly Correlated Electrons +1309.7439 Networking and Internet Architecture +1309.7443 Theory +1309.7445 Other Statistics +1309.7447 Phenomenology +1309.7450 Analysis of PDEs +1309.7451 Information Theory +1309.7452 Computational Physics +1309.7453 Physics and Society +1309.7456 Analysis of PDEs +1309.7457 Computational Complexity +1309.7461 Networking and Internet Architecture +1309.7462 +1309.7465 Strongly Correlated Electrons +1309.7468 Phenomenology +1309.7469 Functional Analysis +1309.7472 Graphics +1309.7478 Information Theory +1309.7482 Number Theory +1309.7484 Computer Vision and Pattern Recognition +1309.7488 Optics +1309.7491 Geometric Topology +1309.7495 +1309.7497 Optimization and Control +1309.7498 Optimization and Control +1309.7499 Analysis of PDEs +1309.7501 Methodology +1309.7503 Methodology +1309.7504 Numerical Analysis +1309.7506 Number Theory +1309.7507 Pricing of Securities +1309.7508 Data Structures and Algorithms +1309.7511 Rings and Algebras +1309.7513 Number Theory +1309.7514 Geometric Topology +1309.7515 Soft Condensed Matter +1309.7517 Information Retrieval +1309.7518 Information Theory +1309.7520 +1309.7522 Neural and Evolutionary Computing +1309.7524 Multiagent Systems +1309.7525 Rings and Algebras +1309.7527 Networking and Internet Architecture +1309.7531 Analysis of PDEs +1309.7537 Number Theory +1309.7545 Atomic Physics +1309.7547 Astrophysics of Galaxies +1309.7549 Populations and Evolution +1309.7550 Probability +1309.7551 Complex Variables +1309.7552 +1309.7555 Fluid Dynamics +1309.7558 +1309.7559 General Physics +1309.7562 Algebraic Geometry +1309.7564 Information Theory +1309.7565 Data Structures and Algorithms +1309.7567 Combinatorics +1309.7569 Classical Analysis and ODEs +1309.7571 Solar and Stellar Astrophysics +1309.7573 Solar and Stellar Astrophysics +1309.7579 Number Theory +1309.7582 +1309.7584 Formal Languages and Automata Theory +1309.7586 Popular Physics +1309.7587 Materials Science +1309.7593 Dynamical Systems +1309.7597 K-Theory and Homology +1309.7598 Learning +1309.7609 Computer Vision and Pattern Recognition +1309.7610 Probability +1309.7611 Learning +1309.7613 Chaotic Dynamics +1309.7615 Computer Vision and Pattern Recognition +1309.7619 Optimization and Control +1309.7621 Probability +1309.7622 Statistics Theory +1309.7624 Probability +1309.7625 Analysis of PDEs +1309.7628 Phenomenology +1309.7630 Combinatorics +1309.7631 Statistical Mechanics +1309.7632 +1309.7633 Numerical Analysis +1309.7635 Probability +1309.7636 Solar and Stellar Astrophysics +1309.7639 Phenomenology +1309.7648 Differential Geometry +1309.7653 Phenomenology +1309.7658 High Energy Astrophysical Phenomena +1309.7661 Metric Geometry +1309.7663 Rings and Algebras +1309.7669 +1309.7673 Combinatorics +1309.7675 Number Theory +1309.7676 Learning +1309.7678 Physics Education +1309.7679 Instrumentation and Detectors +1309.7682 Mesoscale and Nanoscale Physics +1309.7684 Experiment +1309.7686 Computational Engineering, Finance, and Science +1309.7687 Computational Engineering, Finance, and Science +1309.7688 Computational Engineering, Finance, and Science +1309.7689 Computational Engineering, Finance, and Science +1309.7691 Computational Engineering, Finance, and Science +1309.7692 Computational Engineering, Finance, and Science +1309.7693 Computational Engineering, Finance, and Science +1309.7694 Computational Engineering, Finance, and Science +1309.7695 Computational Engineering, Finance, and Science +1309.7696 Computational Engineering, Finance, and Science +1309.7697 Software Engineering +1309.7698 Social and Information Networks +1309.7701 Functional Analysis +1309.7702 Social and Information Networks +1309.7704 Operator Algebras +1309.7706 Optics +1309.7708 General Topology +1309.7710 Differential Geometry +1309.7715 +1309.7716 Algebraic Geometry +1309.7718 +1309.7719 Combinatorics +1309.7720 Distributed, Parallel, and Cluster Computing +1309.7721 Applications +1309.7723 Information Theory +1309.7729 Group Theory +1309.7734 Information Theory +1309.7737 Mesoscale and Nanoscale Physics +1309.7738 Geophysics +1309.7739 Computational Complexity +1309.7740 Physics and Society +1309.7741 Theory +1309.7742 Mesoscale and Nanoscale Physics +1309.7745 Functional Analysis +1309.7747 Computers and Society +1309.7751 Number Theory +1309.7752 Statistics Theory +1309.7753 Classical Analysis and ODEs +1309.7754 Statistics Theory +1309.7758 Cosmology and Nongalactic Astrophysics +1309.7759 Pricing of Securities +1309.7763 Phenomenology +1309.7765 Cosmology and Nongalactic Astrophysics +1309.7770 Cosmology and Nongalactic Astrophysics +1309.7771 Cosmology and Nongalactic Astrophysics +1309.7776 Information Theory +1309.7777 Other Condensed Matter +1309.7781 Methodology +1309.7791 Phenomenology +1309.7792 Astrophysics of Galaxies +1309.7796 Differential Geometry +1309.7797 Quantum Gases +1309.7798 Molecular Networks +1309.7799 Astrophysics of Galaxies +1309.7801 Statistics Theory +1309.7802 Phenomenology +1309.7803 Computational Geometry +1309.7804 Machine Learning +1309.7807 Statistics Theory +1309.7809 Fluid Dynamics +1309.7810 Experiment +1309.7811 Algebraic Geometry +1309.7813 Phenomenology +1309.7815 Statistical Mechanics +1309.7816 Statistics Theory +1309.7820 Combinatorics +1309.7824 Computer Science and Game Theory +1309.7826 Number Theory +1309.7830 Group Theory +1309.7832 Combinatorics +1309.7837 Statistics Theory +1309.7842 Combinatorics +1309.7845 Computational Physics +1309.7846 Analysis of PDEs +1309.7847 Phenomenology +1309.7856 Operator Algebras +1309.7862 Cosmology and Nongalactic Astrophysics +1309.7864 +1309.7865 Dynamical Systems +1309.7867 High Energy Astrophysical Phenomena +1309.7868 Experiment +1309.7874 Combinatorics +1309.7875 Pattern Formation and Solitons +1309.7881 Networking and Internet Architecture +1309.7883 Phenomenology +1309.7887 Superconductivity +1309.7889 Classical Physics +1309.7890 Phenomenology +1309.7891 Data Structures and Algorithms +1309.7898 Instrumentation and Detectors +1309.7900 High Energy Astrophysical Phenomena +1309.7903 Group Theory +1309.7905 Cosmology and Nongalactic Astrophysics +1309.7906 Soft Condensed Matter +1309.7907 Mesoscale and Nanoscale Physics +1309.7909 Probability +1309.7912 Computer Vision and Pattern Recognition +1309.7914 Functional Analysis +1309.7918 General Physics +1309.7922 Optimization and Control +1309.7927 Metric Geometry +1309.7928 Experiment +1309.7934 Dynamical Systems +1309.7935 Networking and Internet Architecture +1309.7942 Lattice +1309.7945 +1309.7950 Software Engineering +1309.7955 Computer Science and Game Theory +1309.7956 Materials Science +1309.7958 Computers and Society +1309.7959 Learning +1309.7961 Experiment +1309.7962 Experiment +1309.7964 Information Theory +1309.7968 High Energy Astrophysical Phenomena +1309.7981 Analysis of PDEs +1309.7982 Learning +1309.7995 Phenomenology +gr-qc/9809054 +hep-ph/0406213 Phenomenology +nlin/0001023 Chaotic Dynamics +0712.0473 Phenomenology +0808.0887 Algebraic Geometry +0906.0710 +0907.0733 Statistical Mechanics +0910.0808 Mesoscale and Nanoscale Physics +0910.1910 +1004.1028 Populations and Evolution +1004.2018 Differential Geometry +1007.1577 Mesoscale and Nanoscale Physics +1008.2821 Probability +1008.4243 +1009.4296 Mesoscale and Nanoscale Physics +1010.4811 High Energy Astrophysical Phenomena +1011.0874 Strongly Correlated Electrons +1101.1880 Solar and Stellar Astrophysics +1102.2814 Solar and Stellar Astrophysics +1103.5020 Rings and Algebras +1104.4103 Functional Analysis +1107.5835 Dynamical Systems +1108.0617 +1108.0797 Algebraic Geometry +1108.4603 Differential Geometry +1108.5400 +1108.5539 Strongly Correlated Electrons +1109.2786 Strongly Correlated Electrons +1109.3480 Experiment +1110.2179 Statistical Mechanics +1110.2903 Quantum Gases +1110.3280 Information Theory +1110.3755 Mesoscale and Nanoscale Physics +1111.1277 +1111.5946 +1112.5611 Strongly Correlated Electrons +1201.2109 Combinatorics +1201.2160 Probability +1201.5106 Strongly Correlated Electrons +1202.3988 Theory +1202.5499 Mesoscale and Nanoscale Physics +1202.6217 Mesoscale and Nanoscale Physics +1203.1696 Algebraic Topology +1203.2405 Analysis of PDEs +1203.2956 +1203.2983 Mesoscale and Nanoscale Physics +1203.5161 Physics and Society +1203.5720 Cosmology and Nongalactic Astrophysics +1204.1889 Statistical Mechanics +1204.1938 Number Theory +1204.4129 Materials Science +1204.4187 Superconductivity +1204.5031 Probability +1204.5923 Combinatorics +1204.6246 Superconductivity +1205.0138 +1205.0752 Phenomenology +1205.6089 +1205.6143 Chaotic Dynamics +1206.3169 Superconductivity +1206.3819 Information Theory +1206.4153 +1206.4223 +1206.4714 +1206.4867 +1206.6082 Analysis of PDEs +1206.6195 Probability +1207.0171 Theory +1207.0853 Geophysics +1207.1631 Quantitative Methods +1207.1996 Combinatorics +1207.2150 Strongly Correlated Electrons +1207.4103 Phenomenology +1207.7270 Logic +1208.4276 Phenomenology +1208.4366 Cosmology and Nongalactic Astrophysics +1208.4738 Materials Science +1208.6297 Phenomenology +1209.1186 Materials Science +1209.1264 Mesoscale and Nanoscale Physics +1209.1649 Analysis of PDEs +1209.2007 History and Overview +1209.2675 Mesoscale and Nanoscale Physics +1209.3177 Strongly Correlated Electrons +1209.5310 Strongly Correlated Electrons +1210.1337 Materials Science +1210.2530 Materials Science +1210.2772 +1210.4166 Strongly Correlated Electrons +1210.6235 Superconductivity +1210.6643 Soft Condensed Matter +1210.6876 +1210.7582 Analysis of PDEs +1210.8287 +1211.0507 Optimization and Control +1211.0585 Cosmology and Nongalactic Astrophysics +1211.0845 +1211.0916 Materials Science +1211.1101 Lattice +1211.1106 Lattice +1211.1773 +1211.3992 Strongly Correlated Electrons +1211.4342 Superconductivity +1212.0730 Superconductivity +1212.1667 Biological Physics +1212.2024 Group Theory +1212.4513 Solar and Stellar Astrophysics +1212.4683 Phenomenology +1212.5050 High Energy Astrophysical Phenomena +1212.5896 Analysis of PDEs +1212.6314 Analysis of PDEs +1212.6381 Phenomenology +1212.6900 Materials Science +1212.6933 Computer Vision and Pattern Recognition +1301.0537 Theory +1301.0630 Strongly Correlated Electrons +1301.0745 Data Structures and Algorithms +1301.0865 General Physics +1301.1174 +1301.1236 Quantum Gases +1301.1745 Materials Science +1301.1848 Multiagent Systems +1301.2354 Computational Engineering, Finance, and Science +1301.2656 Machine Learning +1301.2741 Earth and Planetary Astrophysics +1301.2753 +1301.2847 Complex Variables +1301.2887 +1301.2915 Probability +1301.3017 Statistics Theory +1301.3051 Differential Geometry +1301.3062 Phenomenology +1301.3090 Plasma Physics +1301.3093 Data Structures and Algorithms +1301.3103 Neurons and Cognition +1301.3154 +1301.3156 Instrumentation and Methods for Astrophysics +1301.3159 Materials Science +1301.3166 Methodology +1301.3172 Commutative Algebra +1301.3175 Numerical Analysis +1301.3176 Dynamical Systems +1301.3179 Dynamical Systems +1301.3181 Atomic Physics +1301.3185 Networking and Internet Architecture +1301.3186 Experiment +1301.3187 Computers and Society +1301.3190 Statistics Theory +1301.3192 Learning +1301.3198 Optics +1301.3201 Group Theory +1301.3202 Solar and Stellar Astrophysics +1301.3210 +1301.3213 Other Condensed Matter +1301.3214 Computation and Language +1301.3215 Other Condensed Matter +1301.3218 +1301.3220 Information Theory +1301.3221 Mesoscale and Nanoscale Physics +1301.3222 Commutative Algebra +1301.3228 Other Condensed Matter +1301.3231 Lattice +1301.3232 Number Theory +1301.3236 Astrophysics of Galaxies +1301.3237 Functional Analysis +1301.3239 Functional Analysis +1301.3241 Functional Analysis +1301.3243 Probability +1301.3245 Earth and Planetary Astrophysics +1301.3252 Data Structures and Algorithms +1301.3254 Superconductivity +1301.3257 High Energy Astrophysical Phenomena +1301.3258 Cryptography and Security +1301.3262 Functional Analysis +1301.3263 Materials Science +1301.3273 General Physics +1301.3278 +1301.3281 Hardware Architecture +1301.3283 Experiment +1301.3286 +1301.3288 Probability +1301.3289 Statistics Theory +1301.3291 +1301.3292 Algebraic Geometry +1301.3293 Materials Science +1301.3295 Solar and Stellar Astrophysics +1301.3298 Astrophysics of Galaxies +1301.3299 Logic in Computer Science +1301.3300 Phenomenology +1301.3303 Number Theory +1301.3304 Dynamical Systems +1301.3305 Algebraic Geometry +1301.3306 Astrophysics of Galaxies +1301.3315 Astrophysics of Galaxies +1301.3316 Formal Languages and Automata Theory +1301.3318 Molecular Networks +1301.3320 Operator Algebras +1301.3324 Mesoscale and Nanoscale Physics +1301.3327 Materials Science +1301.3335 Numerical Analysis +1301.3338 Optics +1301.3339 Phenomenology +1301.3341 Optics +1301.3345 Phenomenology +1301.3347 Multiagent Systems +1301.3351 Mesoscale and Nanoscale Physics +1301.3353 Theory +1301.3356 Probability +1301.3358 Cosmology and Nongalactic Astrophysics +1301.3359 Theory +1301.3364 +1301.3365 Astrophysics of Galaxies +1301.3367 Lattice +1301.3373 High Energy Astrophysical Phenomena +1301.3380 Earth and Planetary Astrophysics +1301.3382 Mesoscale and Nanoscale Physics +1301.3384 Plasma Physics +1301.3388 Data Structures and Algorithms +1301.3392 Logic +1301.3393 Logic in Computer Science +1301.3394 Differential Geometry +1301.3397 Lattice +1301.3400 Combinatorics +1301.3403 Metric Geometry +1301.3405 Experiment +1301.3407 +1301.3410 Soft Condensed Matter +1301.3413 Quantum Algebra +1301.3418 Materials Science +1301.3425 Dynamical Systems +1301.3428 Mesoscale and Nanoscale Physics +1301.3430 Phenomenology +1301.3442 +1301.3443 Logic +1301.3447 Functional Analysis +1301.3449 Phenomenology +1301.3454 Solar and Stellar Astrophysics +1301.3458 Soft Condensed Matter +1301.3460 Lattice +1301.3462 Soft Condensed Matter +1301.3465 +1301.3466 Soft Condensed Matter +1301.3472 Tissues and Organs +1301.3477 Number Theory +1301.3482 Data Structures and Algorithms +1301.3488 Data Structures and Algorithms +chao-dyn/9709032 Chaotic Dynamics +chao-dyn/9907033 Chaotic Dynamics +chao-dyn/9912009 Chaotic Dynamics +cond-mat/0606157 Strongly Correlated Electrons +cond-mat/0612009 Strongly Correlated Electrons +cond-mat/9703106 Disordered Systems and Neural Networks +hep-ph/9809419 Phenomenology +math/0106243 Representation Theory +0704.1861 Analysis of PDEs +0704.1862 Analysis of PDEs +0707.4612 +0808.2163 +0811.4537 +0909.2295 Optics +1001.1565 Data Structures and Algorithms +1006.1610 +1009.2143 Dynamical Systems +1012.2131 Dynamical Systems +1102.0240 Logic +1103.5026 +1107.0627 Quantum Gases +1109.0975 Differential Geometry +1110.1187 Materials Science +1111.4647 +1112.4975 Lattice +1201.0121 Number Theory +1201.1786 Optimization and Control +1201.3180 Mesoscale and Nanoscale Physics +1201.5371 Cosmology and Nongalactic Astrophysics +1202.3146 Superconductivity +1202.6156 Analysis of PDEs +1203.5125 Cosmology and Nongalactic Astrophysics +1203.5712 Number Theory +1203.5994 +1204.2145 Numerical Analysis +1204.2674 Rings and Algebras +1204.3599 +1204.3709 Combinatorics +1205.3481 +1206.1013 Mesoscale and Nanoscale Physics +1206.1691 +1206.3715 Number Theory +1206.6493 Astrophysics of Galaxies +1207.0865 Statistics Theory +1207.2216 Algebraic Topology +1207.5742 Information Theory +1207.5910 Statistics Theory +1207.6367 Rings and Algebras +1208.0833 Phenomenology +1208.6535 +1209.2899 Commutative Algebra +1209.4573 Quantum Gases +1209.4814 Phenomenology +1209.6056 Theory +1209.6505 Analysis of PDEs +1210.1254 Mesoscale and Nanoscale Physics +1210.1571 +1210.1980 +1210.3638 Strongly Correlated Electrons +1210.4483 Disordered Systems and Neural Networks +1210.4954 Optimization and Control +1210.5669 Experiment +1210.6309 Other Condensed Matter +1210.6576 Algebraic Geometry +1210.7086 Optics +1211.0207 Theory +1211.0937 Populations and Evolution +1211.2102 Optimization and Control +1211.4314 +1211.5482 Theory +1211.5672 Fluid Dynamics +1211.6700 Group Theory +1212.1003 Theory +1212.2772 Probability +1212.3285 Mesoscale and Nanoscale Physics +1212.4478 Quantum Gases +1212.4694 Analysis of PDEs +1212.5649 Networking and Internet Architecture +1301.1405 General Physics +1301.2170 +1301.2922 +1301.3386 Statistical Mechanics +1301.4081 Mesoscale and Nanoscale Physics +1301.4145 Cosmology and Nongalactic Astrophysics +1301.4470 Phenomenology +1301.4923 +1301.5042 Cosmology and Nongalactic Astrophysics +1301.5059 Atmospheric and Oceanic Physics +1301.5382 Fluid Dynamics +1301.5690 +1301.5941 Probability +1301.6166 Statistical Mechanics +1301.7295 Materials Science +1302.0701 Quantum Gases +1302.0784 Genomics +1302.0846 Phenomenology +1302.0912 Computational Physics +1302.0957 +1302.2012 Mesoscale and Nanoscale Physics +1302.2641 Theory +1302.4093 Analysis of PDEs +1302.5944 Cosmology and Nongalactic Astrophysics +1302.6415 Cosmology and Nongalactic Astrophysics +1302.7238 General Topology +1303.1305 Theory +1303.1313 +1303.1524 Mesoscale and Nanoscale Physics +1303.1592 Phenomenology +1303.1903 +1303.2353 Mesoscale and Nanoscale Physics +1303.2985 Experiment +1303.3687 +1303.3891 +1303.4117 Combinatorics +1303.5099 Statistical Mechanics +1303.6266 Lattice +1303.6630 Cosmology and Nongalactic Astrophysics +1303.6692 +1303.7009 Phenomenology +1303.7320 Phenomenology +1304.0333 Plasma Physics +1304.0516 Optics +1304.0570 Materials Science +1304.1409 +1304.2081 Phenomenology +1304.2108 Statistical Mechanics +1304.2196 Cosmology and Nongalactic Astrophysics +1304.2252 Soft Condensed Matter +1304.2593 Cosmology and Nongalactic Astrophysics +1304.3226 Differential Geometry +1304.3331 +1304.3356 Phenomenology +1304.3464 Phenomenology +1304.3982 +1304.4331 +1304.5454 Quantum Gases +1304.6732 Phenomenology +1304.6874 Theory +1304.7143 Analysis of PDEs +1304.7400 Cosmology and Nongalactic Astrophysics +1304.7467 Phenomenology +1304.7676 Strongly Correlated Electrons +1305.0048 Lattice +1305.0131 Mesoscale and Nanoscale Physics +1305.0298 Strongly Correlated Electrons +1305.0394 +1305.0813 Cosmology and Nongalactic Astrophysics +1305.0830 High Energy Astrophysical Phenomena +1305.1226 +1305.1981 +1305.2011 Theory +1305.2084 Materials Science +1305.2179 Atomic Physics +1305.2194 Cosmology and Nongalactic Astrophysics +1305.2335 Solar and Stellar Astrophysics +1305.2578 Theory +1305.2917 Cosmology and Nongalactic Astrophysics +1305.2947 Phenomenology +1305.3098 +1305.4145 Strongly Correlated Electrons +1305.4239 +1305.5042 Phenomenology +1305.5555 +1305.5560 +1305.6397 Phenomenology +1305.6464 Phenomenology +1305.6610 Phenomenology +1305.6776 +1305.6862 Computers and Society +1305.6961 Theory +1305.7151 Cosmology and Nongalactic Astrophysics +1306.0114 Physics and Society +1306.0249 Instrumentation and Detectors +1306.0487 Statistical Mechanics +1306.0861 +1306.0899 Phenomenology +1306.1389 +1306.1738 +1306.2368 +1306.2591 Statistical Mechanics +1306.2642 Phenomenology +1306.2677 +1306.2739 Phenomenology +1306.2941 Phenomenology +1306.3138 Optics +1306.3269 +1306.3565 Theory +1306.3758 Mesoscale and Nanoscale Physics +1306.3901 +1306.3918 Theory +1306.3992 Theory +1306.4182 Phenomenology +1306.4210 Theory +1306.4346 Strongly Correlated Electrons +1306.4662 Cosmology and Nongalactic Astrophysics +1306.4699 Soft Condensed Matter +1306.4730 Strongly Correlated Electrons +1306.4976 Strongly Correlated Electrons +1306.5012 Materials Science +1306.5125 Mesoscale and Nanoscale Physics +1306.5315 Atomic Physics +1306.5395 +1306.5477 Materials Science +1306.5640 Statistical Mechanics +1306.5792 Theory +1306.5820 +1306.5833 Statistical Mechanics +1306.5947 Experiment +1306.5969 +1306.6349 Cosmology and Nongalactic Astrophysics +1306.6579 +1306.6667 Statistical Mechanics +1307.0039 Theory +1307.0308 Cosmology and Nongalactic Astrophysics +1307.0377 +1307.0825 Phenomenology +1307.0826 Phenomenology +1307.0832 +1307.0975 Strongly Correlated Electrons +1307.1129 Phenomenology +1307.1146 Strongly Correlated Electrons +1307.1314 Theory +1307.1607 Quantum Gases +1307.1657 Atomic Physics +1307.1668 Strongly Correlated Electrons +1307.1711 Phenomenology +1307.1802 Theory +1307.2245 Theory +1307.2423 +1307.2439 Quantum Gases +1307.2464 Phenomenology +1307.2734 Atomic Physics +1307.2793 High Energy Astrophysical Phenomena +1307.2873 Phenomenology +1307.2938 Materials Science +1307.3111 Theory +1307.3383 Phenomenology +1307.3551 Astrophysics of Galaxies +1307.3619 Plasma Physics +1307.4054 +1307.4159 Plasma Physics +1307.4411 +1307.4501 Atomic Physics +1307.4571 +1307.4640 Theory +1307.4701 Lattice +1307.4706 Theory +1307.4849 Phenomenology +1307.5275 +1307.5317 Geometric Topology +1307.5366 Superconductivity +1307.5635 Plasma Physics +1307.5830 Cosmology and Nongalactic Astrophysics +1307.5935 Experiment +1307.5949 Cosmology and Nongalactic Astrophysics +1307.6120 Lattice +1307.6295 Phenomenology +1307.6932 Theory +1307.6996 +1307.7320 Analysis of PDEs +1307.7492 Accelerator Physics +1307.7571 Cosmology and Nongalactic Astrophysics +1307.7610 Theory +1307.7611 Phenomenology +1307.7723 Phenomenology +1307.7967 Instrumentation and Detectors +1307.8195 Instrumentation and Methods for Astrophysics +1307.8368 Mesoscale and Nanoscale Physics +1308.0011 Phenomenology +1308.0286 Cosmology and Nongalactic Astrophysics +1308.0341 Theory +1308.0523 +1308.0819 Theory +1308.0947 Phenomenology +1308.0951 Phenomenology +1308.1080 Solar and Stellar Astrophysics +1308.1094 Phenomenology +1308.1120 Experiment +1308.1256 Mesoscale and Nanoscale Physics +1308.1397 Instrumentation and Methods for Astrophysics +1308.1478 Theory +1308.1598 Analysis of PDEs +1308.1760 Experiment +1308.1830 Experiment +1308.1906 Theory +1308.1995 Social and Information Networks +1308.2112 +1308.2386 Theory +1308.2493 +1308.2589 Experiment +1308.2637 Atomic and Molecular Clusters +1308.2657 Phenomenology +1308.2665 Theory +1308.3044 +1308.3195 Quantum Gases +1308.3218 Geometric Topology +1308.3463 Strongly Correlated Electrons +1308.3794 +1308.3907 +1308.3965 Strongly Correlated Electrons +1308.4025 Phenomenology +1308.4146 Phenomenology +1308.4445 Atomic Physics +1308.4494 Theory +1308.4763 +1308.5072 +1308.5186 Lattice +1308.6463 Instrumentation and Methods for Astrophysics +1308.6555 Functional Analysis +1309.0777 +1309.1690 +1309.2499 +1309.2525 Data Structures and Algorithms +1309.2611 +1309.2756 High Energy Astrophysical Phenomena +1309.3454 Superconductivity +1309.3764 Theory +1309.4318 Theory +1309.4786 Operator Algebras +1309.5776 Superconductivity +1309.7359 Atomic Physics +1310.0279 Quantum Algebra +1310.0615 Instrumentation and Methods for Astrophysics +1310.1629 Materials Science +1310.1804 Geometric Topology +1310.1969 Methodology +1310.3103 +1310.3494 General Mathematics +1310.4262 +1310.4673 Dynamical Systems +1310.5933 +1310.6394 Lattice +1310.6510 Analysis of PDEs +1310.6836 Mesoscale and Nanoscale Physics +1310.7195 Number Theory +1310.7249 Genomics +1310.7566 Instrumentation and Methods for Astrophysics +1310.7567 +1310.7568 Quantitative Methods +1310.7569 History and Philosophy of Physics +1310.7575 Cosmology and Nongalactic Astrophysics +1310.7592 Theory +1310.7595 Functional Analysis +1310.7604 Cellular Automata and Lattice Gases +1310.7607 Numerical Analysis +1310.7610 Distributed, Parallel, and Cluster Computing +1310.7611 Numerical Analysis +1310.7613 Mesoscale and Nanoscale Physics +1310.7614 Biological Physics +1310.7615 +1310.7617 Strongly Correlated Electrons +1310.7626 Functional Analysis +1310.7628 Analysis of PDEs +1310.7634 Computational Physics +1310.7635 Pattern Formation and Solitons +1310.7649 Functional Analysis +1310.7651 Dynamical Systems +1310.7653 Theory +1310.7658 Numerical Analysis +1310.7661 Atomic Physics +1310.7662 Neurons and Cognition +1310.7666 +1310.7668 +1310.7670 Optics +1310.7672 Neurons and Cognition +1310.7675 +1310.7677 Numerical Analysis +1310.7679 Systems and Control +1310.7680 Strongly Correlated Electrons +1310.7683 Algebraic Geometry +1310.7686 Differential Geometry +1310.7689 Number Theory +1310.7695 Representation Theory +1310.7704 +1310.7707 Space Physics +1310.7709 Algebraic Geometry +1310.7716 Number Theory +1310.7722 +1310.7726 Analysis of PDEs +1310.7727 Materials Science +1310.7728 Analysis of PDEs +1310.7729 Systems and Control +1310.7730 High Energy Astrophysical Phenomena +1310.7732 Experiment +1310.7734 Analysis of PDEs +1310.7737 Geometric Topology +1310.7738 Rings and Algebras +1310.7740 Mesoscale and Nanoscale Physics +1310.7741 Data Structures and Algorithms +1310.7743 Analysis of PDEs +1310.7753 Group Theory +1310.7759 Combinatorics +1310.7762 Accelerator Physics +1310.7763 Phenomenology +1310.7765 Plasma Physics +1310.7768 +1310.7770 Probability +1310.7774 Programming Languages +1310.7778 Lattice +1310.7781 Number Theory +1310.7789 Number Theory +1310.7791 Solar and Stellar Astrophysics +1310.7792 Hardware Architecture +1310.7798 Phenomenology +1310.7800 Instrumentation and Methods for Astrophysics +1310.7802 Genomics +1310.7815 Applications +1310.7816 Experiment +1310.7817 Mesoscale and Nanoscale Physics +1310.7818 Lattice +1310.7822 Plasma Physics +1310.7824 Materials Science +1310.7826 Numerical Analysis +1310.7828 Artificial Intelligence +1310.7832 Lattice +1310.7838 Statistics Theory +1310.7844 Classical Analysis and ODEs +1310.7846 +1310.7849 +1310.7850 Applications +1310.7851 General Physics +1310.7855 Machine Learning +1310.7859 Experiment +1310.7864 Classical Analysis and ODEs +1310.7868 Instrumentation and Methods for Astrophysics +1310.7869 Probability +1310.7880 Operator Algebras +1310.7883 Populations and Evolution +1310.7887 Lattice +1310.7890 Data Structures and Algorithms +1310.7898 Data Structures and Algorithms +1310.7902 Solar and Stellar Astrophysics +1310.7904 Classical Analysis and ODEs +1310.7909 Geometric Topology +1310.7918 Statistics Theory +1310.7919 Probability +1310.7920 Astrophysics of Galaxies +1310.7929 Theory +1310.7930 +gr-qc/9508004 +math-ph/0603019 +math-ph/0604015 +0905.2302 Solar and Stellar Astrophysics +0907.4577 Group Theory +1001.3407 +1001.4259 Geometric Topology +1004.0267 Cosmology and Nongalactic Astrophysics +1006.3221 +1010.5099 +1012.2484 Probability +1101.2202 Theory +1101.4056 Probability +1101.5838 Computation +1103.0171 Information Theory +1104.0856 Algebraic Geometry +1105.2516 Classical Analysis and ODEs +1106.5124 Logic +1107.3673 Quantum Gases +1107.5015 Theory +1110.2871 Geometric Topology +1111.0515 Quantum Algebra +1111.2546 Statistics Theory +1111.5529 General Physics +1111.6305 Cosmology and Nongalactic Astrophysics +1111.7274 Analysis of PDEs +1112.1288 Differential Geometry +1112.1456 Differential Geometry +1112.3841 Geometric Topology +1112.5692 Probability +1201.2300 Functional Analysis +1201.5489 General Physics +1201.5832 Theory +1202.1597 Combinatorics +1202.3742 Learning +1202.4850 Statistics Theory +1202.6364 Theory +1202.6506 Classical Physics +1203.3396 +1204.1226 Statistics Theory +1204.2614 +1204.3073 Theory +1204.6586 Cosmology and Nongalactic Astrophysics +1204.6664 +1205.0453 Biological Physics +1205.0487 +1205.2211 Statistical Mechanics +1205.2247 Algebraic Topology +1205.3835 Cosmology and Nongalactic Astrophysics +1205.4539 Differential Geometry +1205.6154 Optics +1205.6665 Soft Condensed Matter +1206.0070 Soft Condensed Matter +1206.1707 Fluid Dynamics +1206.2342 Strongly Correlated Electrons +1206.2524 Biomolecules +1206.2729 Statistics Theory +1206.3850 Quantum Algebra +1206.4225 Combinatorics +1207.5263 Quantum Gases +1207.5390 Optimization and Control +1207.7263 +1208.0241 Mesoscale and Nanoscale Physics +1208.5721 Fluid Dynamics +1208.5761 Theory +1208.6438 Phenomenology +1209.0673 Phenomenology +1209.1108 Soft Condensed Matter +1209.2678 Social and Information Networks +1209.3532 Cosmology and Nongalactic Astrophysics +1209.3724 +1209.3768 Theory +1209.3984 Theory +1209.4427 High Energy Astrophysical Phenomena +1210.0106 Other Condensed Matter +1210.1271 Phenomenology +1210.2370 Differential Geometry +1210.3342 Phenomenology +1210.3586 Soft Condensed Matter +1210.5518 Quantum Gases +1210.7257 Statistics Theory +1210.7304 Statistical Mechanics +1211.0120 +1211.1440 Number Theory +1211.3048 Phenomenology +1211.3579 Phenomenology +1211.5453 Differential Geometry +1211.6407 +1212.0249 Numerical Analysis +1212.2809 Superconductivity +1212.3104 Optics +1212.3791 Soft Condensed Matter +1212.3963 Strongly Correlated Electrons +1301.1092 Mesoscale and Nanoscale Physics +1301.3177 Cosmology and Nongalactic Astrophysics +1301.4468 Statistical Mechanics +1302.1076 Mesoscale and Nanoscale Physics +1302.1146 Geometric Topology +1302.1585 Cosmology and Nongalactic Astrophysics +1302.1972 +1302.2906 Populations and Evolution +1302.2945 Superconductivity +1302.3071 Statistics Theory +1302.4419 Probability +1302.4804 Algebraic Geometry +1302.4919 Metric Geometry +1302.5107 Mesoscale and Nanoscale Physics +1302.6192 Optimization and Control +1302.6423 Molecular Networks +1302.6434 Machine Learning +1302.6542 Metric Geometry +1302.6567 Physics Education +1302.6582 Physics and Society +1302.6583 Combinatorics +1302.6589 High Energy Astrophysical Phenomena +1302.6595 Artificial Intelligence +1302.6602 Artificial Intelligence +1302.6613 Learning +1302.6617 Learning +1302.6618 Phenomenology +1302.6625 Applications +1302.6629 Pricing of Securities +1302.6633 Analysis of PDEs +1302.6634 Information Theory +1302.6639 +1302.6649 Cosmology and Nongalactic Astrophysics +1302.6651 Methodology +1302.6653 Computational Geometry +1302.6655 Differential Geometry +1302.6659 Statistics Theory +1302.6660 Number Theory +1302.6666 Data Structures and Algorithms +1302.6669 Portfolio Management +1302.6670 Analysis of PDEs +1302.6674 +1302.6677 Learning +1302.6680 Geophysics +1302.6683 Systems and Control +1302.6689 Materials Science +1302.6691 Dynamical Systems +1302.6692 Chemical Physics +1302.6699 Theory +1302.6700 Computer Science and Game Theory +1302.6701 +1302.6702 Combinatorics +1302.6704 Systems and Control +1302.6707 Theory +1302.6719 Cosmology and Nongalactic Astrophysics +1302.6722 Cosmology and Nongalactic Astrophysics +1302.6725 Cosmology and Nongalactic Astrophysics +1302.6730 Classical Analysis and ODEs +1302.6733 +1302.6738 Social and Information Networks +1302.6745 Classical Analysis and ODEs +1302.6746 Statistics Theory +1302.6747 Algebraic Geometry +1302.6748 Statistics Theory +1302.6750 High Energy Astrophysical Phenomena +1302.6752 Numerical Analysis +1302.6754 Mesoscale and Nanoscale Physics +1302.6756 Materials Science +1302.6757 Computational Finance +1302.6759 Mesoscale and Nanoscale Physics +1302.6767 Soft Condensed Matter +1302.6776 +1302.6777 Computation and Language +1302.6778 +1302.6779 Artificial Intelligence +1302.6780 Artificial Intelligence +1302.6781 Artificial Intelligence +1302.6782 Artificial Intelligence +1302.6783 Artificial Intelligence +1302.6784 Artificial Intelligence +1302.6786 Artificial Intelligence +1302.6787 Artificial Intelligence +1302.6788 Artificial Intelligence +1302.6789 Artificial Intelligence +1302.6790 Computer Science and Game Theory +1302.6791 Artificial Intelligence +1302.6792 Artificial Intelligence +1302.6793 Artificial Intelligence +1302.6794 Artificial Intelligence +1302.6795 Artificial Intelligence +1302.6796 Artificial Intelligence +1302.6797 Artificial Intelligence +1302.6798 Artificial Intelligence +1302.6799 Artificial Intelligence +1302.6800 Artificial Intelligence +1302.6801 Artificial Intelligence +1302.6802 Artificial Intelligence +1302.6803 Artificial Intelligence +1302.6804 Artificial Intelligence +1302.6805 Artificial Intelligence +1302.6806 Artificial Intelligence +1302.6807 Artificial Intelligence +1302.6808 Artificial Intelligence +1302.6809 Artificial Intelligence +1302.6810 Artificial Intelligence +1302.6811 Artificial Intelligence +1302.6812 Artificial Intelligence +1302.6813 Logic in Computer Science +1302.6817 Artificial Intelligence +1302.6818 Artificial Intelligence +1302.6819 Artificial Intelligence +1302.6820 Artificial Intelligence +1302.6821 Artificial Intelligence +1302.6822 Artificial Intelligence +1302.6823 Artificial Intelligence +1302.6824 Artificial Intelligence +1302.6825 Artificial Intelligence +1302.6826 Artificial Intelligence +1302.6827 Artificial Intelligence +1302.6828 Learning +1302.6829 Artificial Intelligence +1302.6830 Artificial Intelligence +1302.6831 Artificial Intelligence +1302.6832 Artificial Intelligence +1302.6833 Artificial Intelligence +1302.6834 Multiagent Systems +1302.6835 Artificial Intelligence +1302.6836 Artificial Intelligence +1302.6837 Artificial Intelligence +1302.6839 Artificial Intelligence +1302.6840 Artificial Intelligence +1302.6841 Artificial Intelligence +1302.6842 Artificial Intelligence +1302.6843 Artificial Intelligence +1302.6844 Artificial Intelligence +1302.6845 Artificial Intelligence +1302.6846 Artificial Intelligence +1302.6847 Artificial Intelligence +1302.6848 Artificial Intelligence +1302.6849 Artificial Intelligence +1302.6850 Artificial Intelligence +1302.6851 Artificial Intelligence +1302.6852 Artificial Intelligence +1302.6853 Artificial Intelligence +1302.6854 Artificial Intelligence +1302.6855 Artificial Intelligence +1302.6862 Dynamical Systems +1302.6864 Symplectic Geometry +1302.6865 Lattice +1302.6866 Information Theory +1302.6875 Mesoscale and Nanoscale Physics +1302.6877 Superconductivity +1302.6879 +1302.6894 Atomic Physics +1302.6898 High Energy Astrophysical Phenomena +1302.6899 Optimization and Control +1302.6903 Complex Variables +1302.6906 Physics and Society +1302.6910 History and Philosophy of Physics +1302.6911 Distributed, Parallel, and Cluster Computing +1302.6912 Materials Science +1302.6914 Data Structures and Algorithms +1302.6915 Instrumentation and Methods for Astrophysics +1302.6916 Complex Variables +1302.6921 Geometric Topology +1302.6926 Statistics Theory +1302.6927 Learning +1302.6934 Information Theory +1302.6939 Instrumentation and Methods for Astrophysics +1302.6941 Probability +1302.6954 Dynamical Systems +1302.6957 Computer Vision and Pattern Recognition +1302.6959 K-Theory and Homology +1302.6961 +1302.6982 Cosmology and Nongalactic Astrophysics +1302.6985 Mesoscale and Nanoscale Physics +1302.6988 Quantitative Methods +math/0409345 Group Theory +q-alg/9607021 Quantum Algebra +0809.4555 Classical Analysis and ODEs +0906.0539 Complex Variables +1004.4540 Representation Theory +1008.2699 Physics and Society +1010.2476 Disordered Systems and Neural Networks +1010.5435 +1105.1658 Information Theory +1105.4010 Algebraic Topology +1106.2971 Probability +1106.6014 Algebraic Geometry +1109.4309 Quantum Algebra +1109.4314 Information Theory +1109.5752 Numerical Analysis +1109.5802 Algebraic Geometry +1110.5020 Algebraic Topology +1111.5498 +1112.0425 Algebraic Geometry +1201.2315 Information Theory +1201.2931 Combinatorics +1201.4802 Fluid Dynamics +1201.6247 +1202.3614 Symplectic Geometry +1203.5222 Functional Analysis +1204.0502 Number Theory +1204.6331 Quantum Gases +1206.1648 Quantum Gases +1206.5465 Metric Geometry +1206.6332 Soft Condensed Matter +1206.6536 Statistics Theory +1207.1677 Theory +1207.5870 +1207.6172 +1208.1317 Rings and Algebras +1208.2185 Rings and Algebras +1208.3727 Group Theory +1209.3495 Number Theory +1210.3749 +1210.6096 Mesoscale and Nanoscale Physics +1210.7382 Algebraic Geometry +1210.7619 Experiment +1210.8316 Algebraic Geometry +1211.0661 Statistical Mechanics +1211.1342 +1212.0658 Quantitative Methods +1212.0689 Physics and Society +1212.6281 Phenomenology +1212.6973 Analysis of PDEs +1301.2519 Materials Science +1301.4350 Materials Science +1301.6584 Algebraic Geometry +1302.1468 Superconductivity +1302.2548 +1302.5257 +1302.5318 Mesoscale and Nanoscale Physics +1302.5480 Theory +1302.5881 Algebraic Geometry +1302.5883 Algebraic Geometry +1302.6557 Computer Vision and Pattern Recognition +1303.0734 Soft Condensed Matter +1303.4319 Analysis of PDEs +1303.6598 Methodology +1304.3050 Dynamical Systems +1304.6835 Phenomenology +1304.7196 +1304.8111 Quantum Gases +1305.0075 Strongly Correlated Electrons +1305.1840 Distributed, Parallel, and Cluster Computing +1305.1842 Distributed, Parallel, and Cluster Computing +1305.2119 Phenomenology +1305.3558 Strongly Correlated Electrons +1305.4965 Biological Physics +1305.5441 Earth and Planetary Astrophysics +1305.5480 Atomic Physics +1305.6299 Mesoscale and Nanoscale Physics +1305.6334 Mesoscale and Nanoscale Physics +1305.6773 +1306.2825 +1306.3109 Hardware Architecture +1306.3217 Phenomenology +1307.0013 Phenomenology +1307.0223 Materials Science +1307.0348 +1307.1431 Optics +1307.1935 Metric Geometry +1307.3899 Fluid Dynamics +1307.5421 Statistical Mechanics +1308.0118 Atomic and Molecular Clusters +1308.1378 +1308.1450 Analysis of PDEs +1308.1632 Solar and Stellar Astrophysics +1308.2701 Probability +1308.2774 Symplectic Geometry +1308.3409 Experiment +1308.4544 Experiment +1308.4649 Superconductivity +1308.4736 Phenomenology +1308.4989 Instrumentation and Methods for Astrophysics +1308.6282 Earth and Planetary Astrophysics +1309.0650 Theory +1309.0991 Phenomenology +1309.1011 Phenomenology +1309.1088 Representation Theory +1309.4291 Optimization and Control +1309.4879 History and Overview +1309.5609 Instrumentation and Methods for Astrophysics +1310.1165 +1310.2117 Materials Science +1310.2151 Representation Theory +1310.2283 Classical Analysis and ODEs +1310.2731 Superconductivity +1310.3142 Astrophysics of Galaxies +1310.3212 Fluid Dynamics +1310.4367 Logic in Computer Science +1310.5079 +1310.5746 Computational Complexity +1310.5879 Phenomenology +1310.6156 Representation Theory +1310.6543 Combinatorics +1310.6889 Chemical Physics +1310.7159 Information Theory +1310.7775 Probability +1310.8632 Theory +1311.0038 Differential Geometry +1311.0141 Superconductivity +1311.0171 +1311.1454 Methodology +1311.1498 Analysis of PDEs +1311.1570 High Energy Astrophysical Phenomena +1311.1626 Databases +1311.1680 Lattice +1311.1728 +1311.1772 Phenomenology +1311.1777 Atmospheric and Oceanic Physics +1311.1813 Combinatorics +1311.1814 Solar and Stellar Astrophysics +1311.1815 Quantitative Methods +1311.1827 Phenomenology +1311.1833 Complex Variables +1311.1834 Analysis of PDEs +1311.1835 Statistics Theory +1311.1842 Functional Analysis +1311.1846 Optics +1311.1847 Experiment +1311.1848 Algebraic Geometry +1311.1850 Populations and Evolution +1311.1852 Category Theory +1311.1859 Data Structures and Algorithms +1311.1860 Atmospheric and Oceanic Physics +1311.1862 Optics +1311.1865 Logic +1311.1868 Quantum Algebra +1311.1869 Learning +1311.1870 Genomics +1311.1872 Optimization and Control +1311.1878 Soft Condensed Matter +1311.1879 Instrumentation and Methods for Astrophysics +1311.1881 Materials Science +1311.1885 Systems and Control +1311.1887 Systems and Control +1311.1893 Statistics Theory +1311.1894 Statistics Theory +1311.1897 Logic +1311.1900 Probability +1311.1902 Analysis of PDEs +1311.1903 Learning +1311.1905 Exactly Solvable and Integrable Systems +1311.1910 Genomics +1311.1912 Logic +1311.1913 Experiment +1311.1915 Logic +1311.1922 Plasma Physics +1311.1923 Numerical Analysis +1311.1925 Computational Physics +1311.1935 Artificial Intelligence +1311.1939 Computer Vision and Pattern Recognition +1311.1945 +1311.1949 Solar and Stellar Astrophysics +1311.1950 Materials Science +1311.1955 Combinatorics +1311.1956 +1311.1957 Earth and Planetary Astrophysics +1311.1959 Statistics Theory +1311.1960 Experiment +1311.1961 Differential Geometry +1311.1962 Differential Geometry +1311.1966 Lattice +1311.1967 Complex Variables +1311.1970 Lattice +1311.1976 Computational Geometry +1311.1986 Chemical Physics +1311.1987 Combinatorics +1311.1988 Commutative Algebra +1311.1994 Combinatorics +1311.1999 Algebraic Geometry +1311.2000 Probability +1311.2004 Materials Science +1311.2005 Numerical Analysis +1311.2007 Superconductivity +1311.2014 Computer Vision and Pattern Recognition +1311.2016 Probability +1311.2017 Soft Condensed Matter +1311.2018 Number Theory +1311.2019 Distributed, Parallel, and Cluster Computing +1311.2022 Combinatorics +1311.2025 Soft Condensed Matter +1311.2028 Phenomenology +1311.2029 Analysis of PDEs +1311.2039 High Energy Astrophysical Phenomena +1311.2056 Other Computer Science +1311.2060 Theory +1311.2064 Systems and Control +gr-qc/0203025 +math/0406344 Differential Geometry +physics/0008012 History and Philosophy of Physics +1312.6781 Cosmology and Nongalactic Astrophysics +0901.3972 +0903.2212 +0903.3939 +1007.0052 Number Theory +1101.3936 Materials Science +1105.4888 Materials Science +1111.0915 Logic +1111.1399 Materials Science +1111.1401 Materials Science +1111.1403 Materials Science +1111.4603 Classical Analysis and ODEs +1112.5580 +1112.6203 Combinatorics +1112.6329 +1201.2230 Astrophysics of Galaxies +1201.3102 Statistics Theory +1201.4669 Combinatorics +1201.5268 Materials Science +1201.5865 Logic +1202.2500 Materials Science +1204.1487 +1204.6139 Mesoscale and Nanoscale Physics +1206.2170 Mesoscale and Nanoscale Physics +1209.1157 Phenomenology +1210.2979 Experiment +1210.7414 Neurons and Cognition +1211.6063 +1211.7342 +1301.0088 +1301.2360 Materials Science +1301.3668 Phenomenology +1302.1313 +1302.2686 Methodology +1302.4267 Molecular Networks +1302.4888 Information Retrieval +1302.6715 Algebraic Geometry +1303.0115 Algebraic Geometry +1303.0851 Strongly Correlated Electrons +1303.5529 Other Condensed Matter +1304.2969 +1304.6334 +1304.7328 +1305.0212 +1305.1475 Combinatorics +1305.4911 Group Theory +1306.0998 Strongly Correlated Electrons +1306.1979 Optics +1306.2571 +1306.5078 Mesoscale and Nanoscale Physics +1306.5131 Cosmology and Nongalactic Astrophysics +1306.5374 Data Analysis, Statistics and Probability +1306.6622 Strongly Correlated Electrons +1307.1678 +1307.2287 Strongly Correlated Electrons +1307.2727 +1307.3642 Representation Theory +1307.5093 +1307.5516 Soft Condensed Matter +1307.5517 Soft Condensed Matter +1307.5595 Optics +1308.0524 Phenomenology +1308.0674 Algebraic Geometry +1308.0821 Neurons and Cognition +1308.1709 +1308.2726 Soft Condensed Matter +1308.2795 Physics and Society +1308.2959 Theory +1308.4968 Earth and Planetary Astrophysics +1308.5676 Populations and Evolution +1308.5949 Superconductivity +1308.6094 Strongly Correlated Electrons +1308.6660 Phenomenology +1309.0011 Earth and Planetary Astrophysics +1309.0080 Optics +1309.0495 Cosmology and Nongalactic Astrophysics +1309.1883 Instrumentation and Methods for Astrophysics +1309.4135 Phenomenology +1309.4437 +1309.5468 Statistical Mechanics +1309.6977 Mesoscale and Nanoscale Physics +1309.7866 Chemical Physics +1310.0623 Strongly Correlated Electrons +1310.1222 Theory +1310.2137 Materials Science +1310.7052 Phenomenology +1310.8046 Mesoscale and Nanoscale Physics +1311.6847 Algebraic Geometry +1312.5666 Phenomenology +1312.6189 Systems and Control +1312.6317 Machine Learning +1312.6445 Numerical Analysis +1312.6449 +1312.6488 Distributed, Parallel, and Cluster Computing +1312.6681 Dynamical Systems +1312.6682 General Physics +1312.6683 +1312.6689 Theory +1312.6693 Instrumentation and Methods for Astrophysics +1312.6697 Pattern Formation and Solitons +1312.6700 Formal Languages and Automata Theory +1312.6707 General Physics +1312.6710 Instrumentation and Methods for Astrophysics +1312.6711 Number Theory +1312.6714 Numerical Analysis +1312.6715 Social and Information Networks +1312.6723 Instrumentation and Methods for Astrophysics +1312.6726 Artificial Intelligence +1312.6727 Statistical Mechanics +1312.6730 Operator Algebras +1312.6734 Algebraic Geometry +1312.6740 Networking and Internet Architecture +1312.6744 +1312.6745 Dynamical Systems +1312.6746 Strongly Correlated Electrons +1312.6749 Analysis of PDEs +1312.6751 +1312.6756 Social and Information Networks +1312.6757 Statistics Theory +1312.6758 Phenomenology +1312.6762 +1312.6764 Artificial Intelligence +1312.6768 +1312.6771 Strongly Correlated Electrons +1312.6773 Numerical Analysis +1312.6774 Exactly Solvable and Integrable Systems +1312.6777 Functional Analysis +1312.6791 Cryptography and Security +1312.6794 Cryptography and Security +1312.6798 Quantum Algebra +1312.6799 Commutative Algebra +1312.6801 +1312.6802 Information Retrieval +1312.6805 Networking and Internet Architecture +1312.6806 +1312.6807 Learning +1312.6811 Algebraic Geometry +1312.6820 Data Structures and Algorithms +1312.6823 Networking and Internet Architecture +1312.6824 Computational Geometry +1312.6826 Computer Vision and Pattern Recognition +1312.6827 Networking and Internet Architecture +1312.6829 Networking and Internet Architecture +1312.6832 Artificial Intelligence +1312.6833 Networking and Internet Architecture +1312.6834 Computer Vision and Pattern Recognition +1312.6836 Software Engineering +1312.6837 Networking and Internet Architecture +1312.6839 Number Theory +1312.6845 Dynamical Systems +1312.6847 Lattice +1312.6848 +1312.6851 Materials Science +1312.6854 Phenomenology +1312.6859 Earth and Planetary Astrophysics +1312.6869 Geometric Topology +1312.6872 Numerical Analysis +1312.6873 Experiment +1312.6875 Information Theory +1312.6879 Populations and Evolution +1312.6883 +1312.6885 Computer Vision and Pattern Recognition +cond-mat/0307697 Materials Science +cond-mat/0407512 Materials Science +cond-mat/0511047 Materials Science +cond-mat/0512654 Materials Science +cond-mat/0610391 Materials Science +math/0702292 Logic +quant-ph/0412156 +quant-ph/0611186 +0711.2120 +0803.0364 Strongly Correlated Electrons +0812.1142 Mesoscale and Nanoscale Physics +0907.4786 Phenomenology +0911.1275 Information Theory +1002.0838 Cosmology and Nongalactic Astrophysics +1004.3145 Differential Geometry +1005.3654 Differential Geometry +1006.4863 Phenomenology +1008.3176 Superconductivity +1009.4434 Probability +1011.5780 Representation Theory +1103.1201 Differential Geometry +1104.2596 Cosmology and Nongalactic Astrophysics +1104.4279 Data Structures and Algorithms +1105.0797 Probability +1106.0878 Probability +1106.4238 Algebraic Geometry +1107.4442 Combinatorics +1109.6738 Probability +1110.4833 +1110.5628 Theory +1110.6694 +1111.3151 +1111.3319 General Physics +1111.7149 +1112.2300 Group Theory +1112.3234 Mesoscale and Nanoscale Physics +1201.2677 Genomics +1201.4580 Trading and Market Microstructure +1202.0677 Probability +1202.1823 Mesoscale and Nanoscale Physics +1202.2684 Social and Information Networks +1202.3358 Superconductivity +1202.3447 Quantum Gases +1202.5032 Mesoscale and Nanoscale Physics +1202.5607 +1202.5709 Mesoscale and Nanoscale Physics +1203.3846 +1204.3505 +1204.4298 Combinatorics +1205.4969 Cosmology and Nongalactic Astrophysics +1206.0026 Statistical Finance +1206.1229 Probability +1206.1709 Probability +1206.2558 Geometric Topology +1206.3372 Quantum Gases +1206.4557 Physics and Society +1206.5181 Materials Science +1206.5417 Materials Science +1206.6754 Solar and Stellar Astrophysics +1207.0163 Networking and Internet Architecture +1207.2079 Information Theory +1207.6424 Number Theory +1208.0134 +1208.0449 Cosmology and Nongalactic Astrophysics +1208.0641 +1208.1978 Accelerator Physics +1208.3273 Phenomenology +1208.3839 Computer Vision and Pattern Recognition +1208.3845 Learning +1209.2994 Phenomenology +1209.3789 Differential Geometry +1209.3809 Optics +1209.3825 Astrophysics of Galaxies +1209.4102 Phenomenology +1209.4115 Machine Learning +1209.4457 K-Theory and Homology +1209.5743 Strongly Correlated Electrons +1210.0240 Logic +1210.0960 Mesoscale and Nanoscale Physics +1210.0974 +1210.0991 +1210.1547 Applications +1210.2155 +1210.2318 +1210.2933 General Mathematics +1210.3289 Strongly Correlated Electrons +1210.3976 Statistical Mechanics +1210.6834 +1211.1594 Superconductivity +1211.2379 Numerical Analysis +1211.3639 Materials Science +1211.4456 +1211.4756 Cosmology and Nongalactic Astrophysics +1211.4838 Instrumentation and Detectors +1212.0459 Phenomenology +1212.0477 Quantum Gases +1212.1237 Mesoscale and Nanoscale Physics +1212.2353 Mesoscale and Nanoscale Physics +1212.4018 Classical Analysis and ODEs +1212.4109 Statistical Mechanics +1212.4262 +1212.4267 Mesoscale and Nanoscale Physics +1212.5584 Quantum Gases +1212.5630 Statistical Mechanics +1212.5731 +1212.5785 Quantum Algebra +1301.0429 Theory +1301.0461 +1301.1190 Phenomenology +1301.1450 Plasma Physics +1301.1489 Soft Condensed Matter +1301.2714 Systems and Control +1301.2963 Phenomenology +1301.3406 Quantum Gases +1301.4032 Atmospheric and Oceanic Physics +1301.4595 Algebraic Geometry +1301.4794 Numerical Analysis +1301.5063 Computer Vision and Pattern Recognition +1301.5070 Data Structures and Algorithms +1301.6512 Information Theory +1301.6530 Experiment +1302.0137 +1302.1308 Quantum Gases +1302.1423 Statistical Mechanics +1302.1451 Number Theory +1302.2014 Mesoscale and Nanoscale Physics +1302.4205 Formal Languages and Automata Theory +1302.6396 Physics and Society +1302.6521 Information Theory +1303.0479 Computer Vision and Pattern Recognition +1303.1258 High Energy Astrophysical Phenomena +1303.3129 +1303.3693 Physics and Society +1303.3770 Theory +1303.4422 Materials Science +1303.5162 Number Theory +1303.6207 Operator Algebras +1303.7265 Strongly Correlated Electrons +1303.7440 Soft Condensed Matter +1303.7470 Materials Science +1304.0073 High Energy Astrophysical Phenomena +1304.0239 Algebraic Geometry +1304.0256 +1304.0305 Commutative Algebra +1304.0543 High Energy Astrophysical Phenomena +1304.0683 Other Quantitative Biology +1304.0760 Logic +1304.0761 Logic +1304.0776 +1304.0781 Complex Variables +1304.0785 Logic +1304.0788 Physics and Society +1304.0789 Dynamical Systems +1304.0791 Networking and Internet Architecture +1304.0793 Multimedia +1304.0796 Methodology +1304.0797 Probability +1304.0798 High Energy Astrophysical Phenomena +1304.0805 Probability +1304.0807 Cryptography and Security +1304.0810 Data Structures and Algorithms +1304.0816 Dynamical Systems +1304.0818 Probability +1304.0823 Computer Vision and Pattern Recognition +1304.0825 Systems and Control +1304.0830 Mesoscale and Nanoscale Physics +1304.0831 Cosmology and Nongalactic Astrophysics +1304.0832 Analysis of PDEs +1304.0835 Hardware Architecture +1304.0837 Group Theory +1304.0839 Computer Vision and Pattern Recognition +1304.0842 Space Physics +1304.0843 +1304.0844 Artificial Intelligence +1304.0845 +1304.0846 Phenomenology +1304.0847 Combinatorics +1304.0848 Information Theory +1304.0851 Differential Geometry +1304.0853 Differential Geometry +1304.0859 Information Theory +1304.0861 Applications +1304.0863 Networking and Internet Architecture +1304.0864 Programming Languages +1304.0868 Dynamical Systems +1304.0870 Instrumentation and Detectors +1304.0871 Combinatorics +1304.0873 Combinatorics +1304.0876 +1304.0880 Analysis of PDEs +1304.0883 Logic +1304.0884 Dynamical Systems +1304.0886 Computer Vision and Pattern Recognition +1304.0888 Dynamical Systems +1304.0892 Computer Science and Game Theory +1304.0896 Combinatorics +1304.0897 Artificial Intelligence +1304.0899 Experiment +1304.0900 Probability +1304.0903 Algebraic Geometry +1304.0907 Algebraic Geometry +1304.0909 Biological Physics +1304.0912 Formal Languages and Automata Theory +1304.0913 Artificial Intelligence +1304.0924 Biological Physics +1304.0925 Methodology +1304.0929 Solar and Stellar Astrophysics +1304.0931 Cosmology and Nongalactic Astrophysics +1304.0932 Plasma Physics +1304.0933 Analysis of PDEs +1304.0940 +1304.0943 Statistics Theory +1304.0944 Phenomenology +1304.0947 Algebraic Geometry +1304.0953 Materials Science +1304.0956 Differential Geometry +1304.0958 Logic +1304.0959 Databases +1304.0960 Accelerator Physics +1304.0969 Sound +1304.0975 Analysis of PDEs +1304.0978 Theory +1304.0980 Cryptography and Security +1304.0984 Networking and Internet Architecture +1304.0985 Analysis of PDEs +1304.0990 +1304.0992 Computer Science and Game Theory +1304.0994 Complex Variables +1304.0995 Fluid Dynamics +1304.1000 Discrete Mathematics +1304.1001 Chaotic Dynamics +1304.1002 Software Engineering +1304.1005 Computational Complexity +1304.1007 Distributed, Parallel, and Cluster Computing +1304.1008 Phenomenology +1304.1009 Phenomenology +1304.1019 Mesoscale and Nanoscale Physics +1304.1020 Information Theory +1304.1022 Computer Vision and Pattern Recognition +1304.1023 Complex Variables +1304.1026 Mesoscale and Nanoscale Physics +1304.1030 Statistics Theory +1304.1032 Phenomenology +1304.1033 Optimization and Control +1304.1035 Optimization and Control +1304.1038 Statistical Mechanics +1304.1041 Earth and Planetary Astrophysics +1304.1043 Number Theory +1304.1045 Networking and Internet Architecture +1304.1047 Networking and Internet Architecture +1304.1051 Classical Physics +1304.1052 Functional Analysis +1304.1054 Tissues and Organs +1304.1056 Analysis of PDEs +1304.1057 Analysis of PDEs +1304.1059 Networking and Internet Architecture +1304.1066 Information Theory +1304.1067 Physics and Society +1304.1070 Rings and Algebras +1304.1072 Biomolecules +1304.1075 Computer Science and Game Theory +astro-ph/0511368 +cond-mat/0412226 Mesoscale and Nanoscale Physics +cond-mat/0512047 Mesoscale and Nanoscale Physics +cond-mat/0512610 Mesoscale and Nanoscale Physics +0806.3915 Probability +0902.3169 Representation Theory +1002.2285 +1003.3853 Group Theory +1004.2301 Functional Analysis +1008.1319 Differential Geometry +1008.1917 Theory +1009.1323 Analysis of PDEs +1009.2312 Analysis of PDEs +1011.0085 Dynamical Systems +1011.2291 Theory +1011.5473 Dynamical Systems +1105.1116 Soft Condensed Matter +1106.3311 Mesoscale and Nanoscale Physics +1106.4432 Methodology +1107.1145 General Physics +1107.2833 Representation Theory +1109.6665 Information Theory +1110.1504 Experiment +1111.1942 Phenomenology +1111.6676 Solar and Stellar Astrophysics +1112.0485 Atomic Physics +1201.4376 Cryptography and Security +1201.5426 Artificial Intelligence +1203.0079 Differential Geometry +1203.0911 +1203.1905 Networking and Internet Architecture +1203.2627 Mesoscale and Nanoscale Physics +1204.3214 Dynamical Systems +1204.3243 Lattice +1204.3828 Phenomenology +1204.5926 Numerical Analysis +1205.1539 Rings and Algebras +1205.4890 +1205.5338 Cosmology and Nongalactic Astrophysics +1205.5916 Mesoscale and Nanoscale Physics +1205.7024 Strongly Correlated Electrons +1206.1278 Analysis of PDEs +1206.4865 Algebraic Geometry +1207.0605 Algebraic Geometry +1207.1758 Applications +1207.3446 Combinatorics +1207.3908 Mesoscale and Nanoscale Physics +1208.1344 Phenomenology +1208.1748 Soft Condensed Matter +1208.2408 Operator Algebras +1208.5448 Soft Condensed Matter +1208.5901 Mesoscale and Nanoscale Physics +1208.5979 Theory +1209.0138 Experiment +1209.1545 Quantum Gases +1209.3170 Tissues and Organs +1209.4770 Mesoscale and Nanoscale Physics +1209.4969 +1209.6580 Distributed, Parallel, and Cluster Computing +1210.0410 Strongly Correlated Electrons +1210.0657 Quantum Gases +1210.0801 Geometric Topology +1210.0823 Phenomenology +1210.1829 Mesoscale and Nanoscale Physics +1210.2743 Number Theory +1210.2747 +1210.2896 Mesoscale and Nanoscale Physics +1210.3187 Information Theory +1210.4240 Mesoscale and Nanoscale Physics +1210.6374 +1210.7419 +1211.1990 Neurons and Cognition +1211.4778 Materials Science +1211.6447 Phenomenology +1212.2206 Biological Physics +1212.3212 Mesoscale and Nanoscale Physics +1212.3273 Earth and Planetary Astrophysics +1212.4006 Quantum Gases +1212.4275 Optimization and Control +1212.5853 Category Theory +1212.6434 Phenomenology +1301.2022 +1301.2244 Experiment +1301.2593 Materials Science +1301.4188 Statistical Mechanics +1301.5514 High Energy Astrophysical Phenomena +1301.6630 Social and Information Networks +1301.7357 Probability +1301.7643 Human-Computer Interaction +1302.0278 Instrumentation and Detectors +1302.0330 Solar and Stellar Astrophysics +1302.0541 Differential Geometry +1302.0583 Methodology +1302.1701 +1302.1744 Optics +1302.1880 +1302.1882 Cryptography and Security +1302.1887 +1302.1888 Number Theory +1302.1898 Experiment +1302.1899 Astrophysics of Galaxies +1302.1900 Number Theory +1302.1902 Information Theory +1302.1904 Quantitative Methods +1302.1909 Molecular Networks +1302.1912 Software Engineering +1302.1913 Networking and Internet Architecture +1302.1916 Statistics Theory +1302.1919 Combinatorics +1302.1920 Systems and Control +1302.1921 Networking and Internet Architecture +1302.1923 Databases +1302.1930 Fluid Dynamics +1302.1938 Plasma Physics +1302.1939 Distributed, Parallel, and Cluster Computing +1302.1940 Mesoscale and Nanoscale Physics +1302.1942 Computer Vision and Pattern Recognition +1302.1944 Biomolecules +1302.1945 Numerical Analysis +1302.1948 Data Structures and Algorithms +1302.1950 Statistics Theory +1302.1952 Number Theory +1302.1954 Distributed, Parallel, and Cluster Computing +1302.1955 +1302.1957 Distributed, Parallel, and Cluster Computing +1302.1960 Superconductivity +1302.1961 Soft Condensed Matter +1302.1964 Statistical Mechanics +1302.1965 Pricing of Securities +1302.1966 Numerical Analysis +1302.1967 Superconductivity +1302.1968 Combinatorics +1302.1971 Computers and Society +1302.1975 Pattern Formation and Solitons +1302.1980 Dynamical Systems +1302.1989 Theory +1302.1990 Phenomenology +1302.1991 Phenomenology +1302.1996 Atomic and Molecular Clusters +1302.2003 Biomolecules +1302.2005 Mesoscale and Nanoscale Physics +1302.2017 Systems and Control +1302.2019 Probability +1302.2022 Materials Science +1302.2024 Graphics +1302.2025 Combinatorics +1302.2026 Accelerator Physics +1302.2027 Applications +1302.2028 Cryptography and Security +1302.2030 Soft Condensed Matter +1302.2033 Cosmology and Nongalactic Astrophysics +1302.2036 Operator Algebras +1302.2038 Cosmology and Nongalactic Astrophysics +1302.2041 Genomics +1302.2047 Genomics +1302.2048 Information Theory +1302.2050 Theory +1302.2054 Algebraic Geometry +1302.2056 Artificial Intelligence +1302.2057 +1302.2062 Rings and Algebras +1302.2065 High Energy Astrophysical Phenomena +1302.2066 Probability +1302.2076 Metric Geometry +1302.2078 +1302.2079 Numerical Analysis +1302.2080 +1302.2084 Statistical Mechanics +1302.2090 High Energy Astrophysical Phenomena +1302.2091 Materials Science +1302.2093 Optimization and Control +1302.2096 Materials Science +1302.2101 Numerical Analysis +1302.2102 Computation +1302.2104 Analysis of PDEs +1302.2115 Group Theory +1302.2122 +1302.2126 Statistics Theory +1302.2131 Social and Information Networks +1302.2134 Astrophysics of Galaxies +1302.2135 Probability +1302.2137 Data Structures and Algorithms +1302.2142 Computation +math/0611022 Commutative Algebra +0906.1837 Atomic Physics +0910.1745 +1001.4464 Algebraic Geometry +1011.4432 Algebraic Geometry +1102.4055 Probability +1103.0114 Algebraic Geometry +1103.0430 Optimization and Control +1103.0486 Optimization and Control +1103.5050 Probability +1103.6156 Probability +1104.0338 Statistics Theory +1105.3804 Strongly Correlated Electrons +1106.2250 Neurons and Cognition +1106.3716 Algebraic Geometry +1107.4356 Theory +1109.1541 Phenomenology +1109.1724 Artificial Intelligence +1110.3526 Commutative Algebra +1110.4276 +1111.0257 Algebraic Geometry +1111.1851 Probability +1111.4311 General Physics +1112.2078 +1201.0408 Classical Analysis and ODEs +1204.0646 Pricing of Securities +1204.3805 Statistical Mechanics +1205.0332 Statistical Finance +1205.0865 +1205.1719 Representation Theory +1205.4567 Spectral Theory +1205.4918 Atomic Physics +1206.1072 Strongly Correlated Electrons +1206.1602 Cosmology and Nongalactic Astrophysics +1206.1931 +1206.2718 +1206.4846 Combinatorics +1206.5408 Atomic Physics +1206.7002 Statistical Mechanics +1207.2550 Phenomenology +1207.3750 Combinatorics +1207.5941 Statistical Mechanics +1207.7272 +1208.0460 Discrete Mathematics +1208.2638 Applications +1208.5603 Functional Analysis +1209.0457 Cosmology and Nongalactic Astrophysics +1209.1754 Complex Variables +1209.1991 +1209.2381 Biological Physics +1209.4560 Data Structures and Algorithms +1210.3135 Data Structures and Algorithms +1210.4442 Strongly Correlated Electrons +1210.4805 Dynamical Systems +1210.5712 Soft Condensed Matter +1211.1781 Mesoscale and Nanoscale Physics +1211.1907 +1211.3088 Cosmology and Nongalactic Astrophysics +1211.7078 Strongly Correlated Electrons +1212.2815 +1212.3032 Computational Engineering, Finance, and Science +1212.5301 Methodology +1212.6852 Theory +1301.0036 Phenomenology +1301.0627 High Energy Astrophysical Phenomena +1301.2391 +1301.2552 Phenomenology +1301.3485 Learning +1301.3630 Learning +1301.5298 Algebraic Geometry +1301.6212 Phenomenology +1302.0182 Group Theory +1302.0682 +1302.0733 Materials Science +1302.0898 Complex Variables +1302.3167 Dynamical Systems +1302.4687 Superconductivity +1302.4884 Materials Science +1302.5362 Theory +1302.6173 Information Theory +1302.6736 Theory +1303.0742 Learning +1303.3205 Mesoscale and Nanoscale Physics +1303.4081 Logic in Computer Science +1303.4543 Cosmology and Nongalactic Astrophysics +1303.4816 Performance +1303.4879 Rings and Algebras +1303.4971 Combinatorics +1303.5050 Neural and Evolutionary Computing +1303.5056 Phenomenology +1303.5061 Computers and Society +1303.5095 High Energy Astrophysical Phenomena +1303.5097 Information Theory +1303.5101 Classical Analysis and ODEs +1303.5103 Numerical Analysis +1303.5106 Group Theory +1303.5107 Information Theory +1303.5111 Neurons and Cognition +1303.5112 Materials Science +1303.5116 Chemical Physics +1303.5118 Optimization and Control +1303.5120 Optimization and Control +1303.5121 Information Theory +1303.5123 Biological Physics +1303.5127 Optimization and Control +1303.5131 Geometric Topology +1303.5132 Artificial Intelligence +1303.5134 Information Theory +1303.5141 Representation Theory +1303.5144 Analysis of PDEs +1303.5146 Phenomenology +1303.5147 Combinatorics +1303.5148 Computation and Language +1303.5150 Algebraic Geometry +1303.5151 Algebraic Geometry +1303.5159 Algebraic Topology +1303.5164 Distributed, Parallel, and Cluster Computing +1303.5168 +1303.5169 Phenomenology +1303.5171 Combinatorics +1303.5172 Statistics Theory +1303.5173 Superconductivity +1303.5175 Databases +1303.5177 Artificial Intelligence +1303.5180 Statistics Theory +1303.5185 Analysis of PDEs +1303.5186 +1303.5188 Representation Theory +1303.5189 Differential Geometry +1303.5190 Networking and Internet Architecture +1303.5193 Differential Geometry +1303.5199 Systems and Control +1303.5200 Instrumentation and Methods for Astrophysics +1303.5203 Classical Analysis and ODEs +1303.5206 Statistical Mechanics +1303.5211 Statistical Mechanics +1303.5213 Combinatorics +1303.5216 Complex Variables +1303.5220 Complex Variables +1303.5223 Systems and Control +1303.5224 Soft Condensed Matter +1303.5226 Cryptography and Security +1303.5227 Rings and Algebras +1303.5228 Methodology +1303.5230 +1303.5233 Atomic Physics +1303.5235 Materials Science +1303.5238 +1303.5239 Group Theory +1303.5240 Networking and Internet Architecture +1303.5244 Computer Vision and Pattern Recognition +1303.5250 Information Retrieval +1303.5251 Populations and Evolution +1303.5252 Probability +1303.5255 Phenomenology +1303.5259 Computational Geometry +1303.5260 Networking and Internet Architecture +1303.5266 +1303.5268 Networking and Internet Architecture +1303.5270 Number Theory +1303.5274 Networking and Internet Architecture +1303.5276 History and Philosophy of Physics +1303.5279 Probability +1303.5285 Networking and Internet Architecture +1303.5286 Complex Variables +1303.5287 Rings and Algebras +1303.5288 Solar and Stellar Astrophysics +1303.5293 Rings and Algebras +1303.5294 Computation +1303.5295 +1303.5298 Materials Science +1303.5300 Soft Condensed Matter +1303.5301 Systems and Control +1303.5302 Networking and Internet Architecture +1303.5303 Geophysics +1303.5304 Geophysics +1303.5306 Combinatorics +1303.5309 General Physics +1303.5313 Databases +1303.5320 Strongly Correlated Electrons +1303.5321 Information Theory +1303.5334 Algebraic Geometry +1303.5342 Complex Variables +1303.5344 Algebraic Geometry +1303.5347 Geophysics +1303.5348 Geophysics +1303.5349 Complex Variables +1303.5350 Combinatorics +1303.5356 Popular Physics +1303.5358 Combinatorics +1303.5361 Cosmology and Nongalactic Astrophysics +1303.5362 Analysis of PDEs +1303.5363 +1303.5369 History and Overview +1303.5378 Medical Physics +math/0310367 Classical Analysis and ODEs +math/0605157 Geometric Topology +physics/0511172 General Physics +physics/0703075 Atomic Physics +0704.0963 History and Philosophy of Physics +0710.3810 Combinatorics +0710.4109 Combinatorics +0801.3697 Combinatorics +0807.2272 Analysis of PDEs +0807.4482 +0901.0402 +0901.3003 General Finance +0905.1374 Algebraic Geometry +0906.3898 Theory +0907.3344 Representation Theory +0912.2444 Probability +1003.2352 Rings and Algebras +1004.5567 History and Philosophy of Physics +1006.3597 Statistical Mechanics +1008.3318 Metric Geometry +1008.5391 Distributed, Parallel, and Cluster Computing +1009.0576 Strongly Correlated Electrons +1009.1866 Computational Geometry +1010.3091 Learning +1105.0014 Statistics Theory +1105.0568 Mesoscale and Nanoscale Physics +1106.4641 Mesoscale and Nanoscale Physics +1106.5626 Optimization and Control +1107.3102 Commutative Algebra +1107.4689 Dynamical Systems +1108.0431 Rings and Algebras +1108.4999 Representation Theory +1109.3238 Algebraic Geometry +1109.5494 Probability +1110.3544 Probability +1110.4821 Probability +1110.5099 Group Theory +1110.5872 Probability +1110.6930 Algebraic Geometry +1111.1027 Probability +1111.4772 Geometric Topology +1112.3989 Theory +1112.5886 Mesoscale and Nanoscale Physics +1201.0378 Dynamical Systems +1201.4533 Algebraic Geometry +1201.5726 Instrumentation and Methods for Astrophysics +1201.6473 Representation Theory +1202.0907 Combinatorics +1202.2600 Discrete Mathematics +1203.0294 +1203.6576 +1203.6880 Combinatorics +1204.1490 Computational Physics +1204.3563 Combinatorics +1204.4875 Exactly Solvable and Integrable Systems +1204.4961 Algebraic Geometry +1206.4424 Soft Condensed Matter +1206.5871 Cryptography and Security +1207.0224 Theory +1207.1797 Representation Theory +1207.2843 +1207.4604 Strongly Correlated Electrons +1208.6196 Differential Geometry +1208.6391 Operating Systems +1208.6428 Operating Systems +1209.3006 Probability +1209.3289 +1209.3881 Strongly Correlated Electrons +1209.5567 Artificial Intelligence +1210.0123 Representation Theory +1210.2243 Theory +1210.4987 Mesoscale and Nanoscale Physics +1210.6352 Mesoscale and Nanoscale Physics +1210.8168 Analysis of PDEs +1211.0506 +1211.0739 +1211.0919 Machine Learning +1211.2162 Information Theory +1211.4087 Strongly Correlated Electrons +1212.1586 Theory +1212.2733 Superconductivity +1212.2738 Superconductivity +1212.3472 Theory +1212.4634 Optimization and Control +1212.4645 Quantum Gases +1212.6862 Representation Theory +1301.0456 Logic +1301.1824 Trading and Market Microstructure +1301.3235 +1301.3328 Theory +1301.3743 Earth and Planetary Astrophysics +1301.4993 Cosmology and Nongalactic Astrophysics +1301.6093 Probability +1301.7171 Cosmology and Nongalactic Astrophysics +1302.0189 Information Theory +1302.0771 Materials Science +1302.2342 Algebraic Topology +1302.2412 +1302.3015 Materials Science +1302.3726 Data Structures and Algorithms +1302.4915 Exactly Solvable and Integrable Systems +1302.7268 Soft Condensed Matter +1303.1343 +1303.1885 Theory +1303.3541 Representation Theory +1303.3633 Statistical Mechanics +1303.3990 Physics and Society +1303.4386 Disordered Systems and Neural Networks +1303.5686 Atomic Physics +1303.7011 Materials Science +1304.0297 +1304.1267 Physics and Society +1304.3073 Methodology +1304.4895 Soft Condensed Matter +1304.5202 Phenomenology +1304.5836 Molecular Networks +1304.6021 Theory +1304.6107 Group Theory +1305.0006 Strongly Correlated Electrons +1305.0008 Cosmology and Nongalactic Astrophysics +1305.0139 Probability +1305.0663 Phenomenology +1305.1776 Soft Condensed Matter +1305.2060 Adaptation and Self-Organizing Systems +1305.2702 Methodology +1305.3968 Disordered Systems and Neural Networks +1305.4165 K-Theory and Homology +1305.6231 Populations and Evolution +1305.6819 Phenomenology +1305.7216 Phenomenology +1305.7343 Phenomenology +1305.7446 +1306.0540 Disordered Systems and Neural Networks +1306.0647 Theory +1306.1970 Methodology +1306.3390 Algebraic Geometry +1306.3596 Mesoscale and Nanoscale Physics +1306.3658 Materials Science +1306.4121 Disordered Systems and Neural Networks +1306.4719 Cosmology and Nongalactic Astrophysics +1306.5675 Instrumentation and Detectors +1306.5743 Theory +1306.5838 Computational Geometry +1307.0228 Mesoscale and Nanoscale Physics +1307.0491 Numerical Analysis +1307.0501 Strongly Correlated Electrons +1307.0788 Physics and Society +1307.0828 Quantum Gases +1307.1804 Rings and Algebras +1307.1992 +1307.2404 Populations and Evolution +1307.2460 Chemical Physics +1307.2541 Artificial Intelligence +1307.3416 Mesoscale and Nanoscale Physics +1307.3717 Quantum Gases +1307.4262 Cosmology and Nongalactic Astrophysics +1307.4839 Numerical Analysis +1307.4976 Analysis of PDEs +1307.6382 Theory +1307.7918 Earth and Planetary Astrophysics +1307.8268 Computational Geometry +1308.0311 Discrete Mathematics +1308.0451 Classical Analysis and ODEs +1308.0660 Statistical Mechanics +1308.0966 Computational Physics +1308.0997 Algebraic Geometry +1308.1361 Analysis of PDEs +1308.1929 Theory +1308.2186 Phenomenology +1308.2353 Number Theory +1308.3450 +1308.3457 Quantum Gases +1308.3671 Optics +1308.3879 Experiment +1308.4012 Mesoscale and Nanoscale Physics +1308.5302 +1308.6142 Cosmology and Nongalactic Astrophysics +1308.6261 Optics +1308.6420 Functional Analysis +1309.0649 Operator Algebras +1309.0692 Theory +1309.1055 Cosmology and Nongalactic Astrophysics +1309.1349 Systems and Control +1309.1558 Probability +1309.1736 Disordered Systems and Neural Networks +1309.1784 Software Engineering +1309.2707 +1309.3138 Astrophysics of Galaxies +1309.3218 Disordered Systems and Neural Networks +1309.3222 Strongly Correlated Electrons +1309.3516 +1309.3989 Probability +1309.4697 Quantum Algebra +1309.5222 Combinatorics +1309.5870 Atomic Physics +1309.6451 Mesoscale and Nanoscale Physics +1309.7169 Cosmology and Nongalactic Astrophysics +1309.7410 Phenomenology +1309.7724 Data Structures and Algorithms +1310.0137 Strongly Correlated Electrons +1310.0762 Trading and Market Microstructure +1310.1349 Experiment +1310.1593 Neurons and Cognition +1310.1734 +1310.2328 Applications +1310.2554 +1310.2653 Mesoscale and Nanoscale Physics +1310.3254 +1310.3556 Numerical Analysis +1310.3923 Mesoscale and Nanoscale Physics +1310.4364 Materials Science +1310.4554 Experiment +1310.4692 Instrumentation and Detectors +1310.4936 Astrophysics of Galaxies +1310.5333 +1310.6916 +1310.7291 Experiment +1310.7597 Cosmology and Nongalactic Astrophysics +1310.7892 Metric Geometry +1310.8078 Combinatorics +1310.8563 Algebraic Geometry +1311.0976 Soft Condensed Matter +1311.1917 Logic +1311.1927 Earth and Planetary Astrophysics +1311.1944 Mesoscale and Nanoscale Physics +1311.2094 Rings and Algebras +1311.4526 Strongly Correlated Electrons +1311.5915 +1311.6032 Lattice +1311.6352 Algebraic Geometry +1311.6969 Atomic Physics +1311.7228 Combinatorics +1312.0083 Classical Physics +1312.0086 Neural and Evolutionary Computing +1312.0330 Geometric Topology +1312.1126 +1312.2043 Dynamical Systems +1312.2134 Superconductivity +1312.2494 Logic +1312.2507 Optics +1312.2579 +1312.3126 Analysis of PDEs +1312.3309 Experiment +1312.3429 Computer Vision and Pattern Recognition +1312.3435 Disordered Systems and Neural Networks +1312.3620 Number Theory +1312.3687 Materials Science +1312.3765 +1312.3860 Cryptography and Security +1312.3945 High Energy Astrophysical Phenomena +1312.3955 Combinatorics +1312.3957 Materials Science +1312.3965 Probability +1312.3970 Learning +1312.3971 Artificial Intelligence +1312.3973 Plasma Physics +1312.3974 +1312.3975 +1312.3976 Dynamical Systems +1312.3978 Phenomenology +1312.3981 Geophysics +1312.3989 Computer Vision and Pattern Recognition +1312.3991 Subcellular Processes +1312.3993 Number Theory +1312.3994 Analysis of PDEs +1312.3996 Instrumentation and Methods for Astrophysics +1312.3997 Instrumentation and Methods for Astrophysics +1312.3999 Atomic and Molecular Clusters +1312.4000 +1312.4001 Statistics Theory +1312.4002 Algebraic Topology +1312.4008 Spectral Theory +1312.4011 Quantum Gases +1312.4012 Databases +1312.4013 Theory +1312.4014 Sound +1312.4015 Representation Theory +1312.4020 +1312.4022 Rings and Algebras +1312.4023 Rings and Algebras +1312.4024 Rings and Algebras +1312.4026 Artificial Intelligence +1312.4030 Classical Analysis and ODEs +1312.4032 Numerical Analysis +1312.4033 Analysis of PDEs +1312.4036 Information Retrieval +1312.4037 Number Theory +1312.4038 Genomics +1312.4039 Atomic Physics +1312.4040 Soft Condensed Matter +1312.4042 Cryptography and Security +1312.4044 Neural and Evolutionary Computing +1312.4045 Solar and Stellar Astrophysics +1312.4048 Multiagent Systems +1312.4050 Differential Geometry +1312.4052 Number Theory +1312.4053 Number Theory +1312.4054 Dynamical Systems +1312.4058 Methodology +1312.4062 Functional Analysis +1312.4064 Optimization and Control +1312.4066 Discrete Mathematics +1312.4067 Mesoscale and Nanoscale Physics +1312.4069 Algebraic Geometry +1312.4070 Mesoscale and Nanoscale Physics +1312.4071 Networking and Internet Architecture +1312.4072 Functional Analysis +1312.4075 Computational Complexity +1312.4076 Information Theory +1312.4078 Neural and Evolutionary Computing +1312.4080 Fluid Dynamics +1312.4082 Networking and Internet Architecture +1312.4085 Lattice +1312.4088 Probability +1312.4092 Computation and Language +1312.4093 Rings and Algebras +1312.4096 Combinatorics +1312.4098 Instrumentation and Methods for Astrophysics +1312.4099 Instrumentation and Methods for Astrophysics +1312.4100 Phenomenology +1312.4101 Discrete Mathematics +1312.4103 +1312.4106 Neurons and Cognition +1312.4107 Algebraic Geometry +1312.4108 Learning +1312.4109 Commutative Algebra +1312.4110 Combinatorics +1312.4114 Computer Science and Game Theory +1312.4115 Theory +1312.4122 Pattern Formation and Solitons +1312.4123 Probability +1312.4124 Computer Vision and Pattern Recognition +1312.4125 Databases +1312.4127 Sound +1312.4132 Neural and Evolutionary Computing +1312.4134 Discrete Mathematics +1312.4135 Combinatorics +1312.4136 Soft Condensed Matter +1312.4137 +1312.4139 Emerging Technologies +1312.4141 Geometric Topology +1312.4142 Statistical Mechanics +1312.4143 Phenomenology +1312.4146 Biological Physics +1312.4149 Neural and Evolutionary Computing +1312.4159 Number Theory +1312.4161 Materials Science +1312.4162 Robotics +1312.4163 Optimization and Control +1312.4168 Analysis of PDEs +1312.4177 Networking and Internet Architecture +1312.4181 Optimization and Control +1312.4183 Solar and Stellar Astrophysics +1312.4185 Statistical Mechanics +1312.4187 Computer Science and Game Theory +1312.4188 Distributed, Parallel, and Cluster Computing +1312.4189 Emerging Technologies +1312.4192 Algebraic Topology +1312.4193 Optimization and Control +1312.4195 +1312.4204 Phenomenology +1312.4206 Soft Condensed Matter +1312.4208 Algebraic Geometry +1312.4209 Learning +1312.4217 Analysis of PDEs +1312.4220 Phenomenology +1312.4223 Numerical Analysis +1312.4229 Group Theory +1312.4233 Numerical Analysis +1312.4235 Molecular Networks +1312.4239 Spectral Theory +1312.4240 +1312.4244 Probability +1312.4252 Information Theory +1312.4253 High Energy Astrophysical Phenomena +1312.4254 Phenomenology +1312.4256 Chaotic Dynamics +1312.4259 Multiagent Systems +1312.4261 Geophysics +1312.4265 Cryptography and Security +1312.4279 Differential Geometry +1312.4280 Information Theory +1312.4283 Databases +1312.4287 Logic in Computer Science +1312.4288 Number Theory +1312.4289 Number Theory +1312.4295 +1312.4302 Analysis of PDEs +1312.4308 High Energy Astrophysical Phenomena +1312.4315 Combinatorics +1312.4317 Logic +1312.4322 Human-Computer Interaction +1312.4323 Applications +1312.4326 Group Theory +1312.4328 Programming Languages +1312.4329 Earth and Planetary Astrophysics +1312.4333 Distributed, Parallel, and Cluster Computing +1312.4335 Classical Analysis and ODEs +1312.4337 Analysis of PDEs +1312.4339 Phenomenology +1312.4345 Discrete Mathematics +1312.4346 Robotics +1312.4349 Statistics Theory +1312.4358 Algebraic Geometry +1312.4361 Numerical Analysis +1312.4363 Cryptography and Security +1312.4366 Statistics Theory +1312.4371 Optics +1312.4373 Astrophysics of Galaxies +1312.4374 Materials Science +1312.4375 Lattice +1312.4377 Classical Analysis and ODEs +1312.4379 +1312.4381 Logic +1312.4382 Neurons and Cognition +1312.4383 Applications +1312.4384 Computer Vision and Pattern Recognition +1312.4386 Astrophysics of Galaxies +1312.4387 Algebraic Topology +1312.4388 Solar and Stellar Astrophysics +1312.4391 Analysis of PDEs +1312.4394 Astrophysics of Galaxies +1312.4397 Classical Analysis and ODEs +1312.4398 Discrete Mathematics +1312.4402 Classical Analysis and ODEs +1312.4405 Learning +1312.4407 Phenomenology +1312.4408 Other Condensed Matter +1312.4409 Statistical Mechanics +1312.4414 Formal Languages and Automata Theory +1312.4416 Soft Condensed Matter +1312.4421 Algebraic Geometry +1312.4422 Materials Science +1312.4423 Information Theory +1312.4425 Information Retrieval +1312.4426 Machine Learning +1312.4437 Materials Science +1312.4440 Cell Behavior +1312.4443 Pricing of Securities +1312.4450 Earth and Planetary Astrophysics +1312.4455 +1312.4456 +1312.4457 +1312.4459 Superconductivity +1312.4466 Superconductivity +1312.4467 +1312.4468 Information Theory +1312.4471 Analysis of PDEs +1312.4472 Applications +1312.4473 Soft Condensed Matter +1312.4474 Solar and Stellar Astrophysics +1312.4477 Databases +1312.4479 Machine Learning +1312.4480 Analysis of PDEs +1312.4482 Soft Condensed Matter +1312.4486 +1312.4488 Soft Condensed Matter +1312.4490 Molecular Networks +1312.4492 Classical Analysis and ODEs +1312.4495 Soft Condensed Matter +1312.4497 Statistics Theory +1312.4501 Mesoscale and Nanoscale Physics +1312.4502 Geometric Topology +1312.4503 Instrumentation and Methods for Astrophysics +1312.4505 Computational Physics +1312.4508 Distributed, Parallel, and Cluster Computing +1312.4509 Operating Systems +1312.4512 Soft Condensed Matter +1312.4521 Information Theory +gr-qc/0404060 +hep-th/0610074 Theory +math/0010105 Algebraic Geometry +math/0503443 Combinatorics +math/0512497 Algebraic Topology +math/0701392 Combinatorics +math/0703799 Group Theory +0901.0232 Operator Algebras +0901.1004 Operator Algebras +0901.4459 Analysis of PDEs +0907.3801 Discrete Mathematics +0912.4357 Classical Analysis and ODEs +1001.2157 Dynamical Systems +1002.3952 Cosmology and Nongalactic Astrophysics +1006.4021 Differential Geometry +1007.0181 Number Theory +1007.0379 Information Theory +1007.5494 Optimization and Control +1009.5242 Combinatorics +1102.2842 Plasma Physics +1103.1041 Representation Theory +1103.5832 Theory +1105.3283 Analysis of PDEs +1105.5257 Algebraic Topology +1107.1988 Phenomenology +1107.3064 +1108.0601 Algebraic Topology +1108.0634 Logic +1108.4754 Materials Science +1110.5082 Number Theory +1111.0454 Phenomenology +1111.1638 General Physics +1112.3992 +1201.5449 Classical Analysis and ODEs +1202.0399 Superconductivity +1202.1311 Representation Theory +1203.3278 Methodology +1203.3358 Algebraic Topology +1203.6753 Networking and Internet Architecture +1204.1171 General Physics +1205.2004 Atomic Physics +1205.2380 Quantum Gases +1205.2494 General Physics +1205.5067 High Energy Astrophysical Phenomena +1206.2261 Theory +1207.2565 Analysis of PDEs +1207.2720 Dynamical Systems +1207.5973 Phenomenology +1207.6041 Theory +1208.2495 Geometric Topology +1208.6298 Mesoscale and Nanoscale Physics +1209.0908 +1209.2580 Mesoscale and Nanoscale Physics +1209.3559 Theory +1209.3754 +1209.4739 Materials Science +1209.4850 +1209.4929 Quantum Gases +1210.0289 +1210.0573 Strongly Correlated Electrons +1210.1100 Logic in Computer Science +1210.1900 Operator Algebras +1210.4039 +1210.4342 Combinatorics +1210.5169 High Energy Astrophysical Phenomena +1210.5387 Materials Science +1210.8177 High Energy Astrophysical Phenomena +1211.0576 Probability +1211.1699 Computer Science and Game Theory +1211.2099 Phenomenology +1211.3436 Lattice +1211.4350 Quantum Gases +1211.4537 Atomic Physics +1211.5906 Pattern Formation and Solitons +1211.6230 Phenomenology +1212.1201 Instrumentation and Methods for Astrophysics +1212.2299 Quantum Gases +1212.2989 Materials Science +1212.3329 Theory +1212.4329 Rings and Algebras +1212.5029 Phenomenology +1212.5236 Phenomenology +1212.5806 +1301.0277 Number Theory +1301.0826 +1301.1008 Algebraic Geometry +1301.1771 Strongly Correlated Electrons +1301.2968 Mesoscale and Nanoscale Physics +1301.3909 Cosmology and Nongalactic Astrophysics +1301.3919 Phenomenology +1301.4904 Chemical Physics +1301.5530 Algebraic Geometry +1301.7324 Lattice +1301.7707 Mesoscale and Nanoscale Physics +1302.0694 Mesoscale and Nanoscale Physics +1302.1713 Instrumentation and Detectors +1302.2884 Phenomenology +1302.4273 Chaotic Dynamics +1302.5070 +1302.5550 Differential Geometry +1302.5763 Solar and Stellar Astrophysics +1303.0240 Analysis of PDEs +1303.2243 +1303.2467 Logic in Computer Science +1303.2567 General Physics +1303.3356 +1303.3392 Operator Algebras +1303.3424 Classical Analysis and ODEs +1303.3492 Mesoscale and Nanoscale Physics +1303.3813 Metric Geometry +1303.3880 Metric Geometry +1303.3906 +1303.4102 +1303.4304 +1303.5827 Phenomenology +1304.1168 Probability +1304.1188 Data Structures and Algorithms +1304.1797 Mesoscale and Nanoscale Physics +1304.2060 Data Structures and Algorithms +1304.2786 +1304.2822 Accelerator Physics +1304.3043 Number Theory +1304.3075 Artificial Intelligence +1304.3076 Artificial Intelligence +1304.3077 Artificial Intelligence +1304.3078 Artificial Intelligence +1304.3079 Artificial Intelligence +1304.3080 Artificial Intelligence +1304.3081 Artificial Intelligence +1304.3082 Artificial Intelligence +1304.3083 Artificial Intelligence +1304.3084 Artificial Intelligence +1304.3085 Artificial Intelligence +1304.3086 Artificial Intelligence +1304.3087 Artificial Intelligence +1304.3088 Systems and Control +1304.3089 Artificial Intelligence +1304.3090 Artificial Intelligence +1304.3091 Artificial Intelligence +1304.3092 Artificial Intelligence +1304.3093 Artificial Intelligence +1304.3094 Artificial Intelligence +1304.3095 Artificial Intelligence +1304.3096 Artificial Intelligence +1304.3097 Artificial Intelligence +1304.3098 Artificial Intelligence +1304.3099 Artificial Intelligence +1304.3100 Artificial Intelligence +1304.3101 Artificial Intelligence +1304.3102 Artificial Intelligence +1304.3103 Artificial Intelligence +1304.3104 Artificial Intelligence +1304.3105 Artificial Intelligence +1304.3106 Artificial Intelligence +1304.3107 Artificial Intelligence +1304.3108 Artificial Intelligence +1304.3109 Artificial Intelligence +1304.3110 Artificial Intelligence +1304.3111 Artificial Intelligence +1304.3112 Artificial Intelligence +1304.3113 Artificial Intelligence +1304.3114 Artificial Intelligence +1304.3115 Artificial Intelligence +1304.3116 Artificial Intelligence +1304.3117 Artificial Intelligence +1304.3118 Artificial Intelligence +1304.3119 Artificial Intelligence +1304.3120 Databases +1304.3121 Logic in Computer Science +1304.3133 Astrophysics of Galaxies +1304.3134 Distributed, Parallel, and Cluster Computing +1304.3135 Computer Science and Game Theory +1304.3140 Programming Languages +1304.3141 Optics +1304.3144 Artificial Intelligence +1304.3145 Data Structures and Algorithms +1304.3146 Molecular Networks +1304.3149 Probability +1304.3150 Probability +1304.3151 Solar and Stellar Astrophysics +1304.3155 General Physics +1304.3157 Computers and Society +1304.3158 Number Theory +1304.3163 Algebraic Topology +1304.3173 Plasma Physics +1304.3180 Classical Analysis and ODEs +1304.3183 Networking and Internet Architecture +1304.3184 Differential Geometry +1304.3187 Combinatorics +1304.3188 Instrumentation and Detectors +1304.3189 Statistical Mechanics +1304.3190 +1304.3192 Computer Vision and Pattern Recognition +1304.3193 Spectral Theory +1304.3195 Phenomenology +1304.3196 Optics +1304.3207 Optics +1304.3208 Artificial Intelligence +1304.3210 Artificial Intelligence +1304.3211 Analysis of PDEs +1304.3213 Instrumentation and Methods for Astrophysics +1304.3216 Analysis of PDEs +1304.3219 Algebraic Geometry +1304.3222 Statistical Mechanics +1304.3227 Materials Science +1304.3233 Combinatorics +1304.3234 Mesoscale and Nanoscale Physics +1304.3236 Solar and Stellar Astrophysics +1304.3239 Solar and Stellar Astrophysics +1304.3242 Instrumentation and Detectors +1304.3243 +1304.3245 Lattice +1304.3246 Optimization and Control +1304.3249 Logic in Computer Science +1304.3256 Networking and Internet Architecture +1304.3258 Networking and Internet Architecture +1304.3259 Networking and Internet Architecture +1304.3260 Software Engineering +1304.3265 Computation and Language +1304.3266 Quantitative Methods +1304.3267 +1304.3268 Information Retrieval +1304.3271 Physics and Society +1304.3273 Networking and Internet Architecture +1304.3276 Dynamical Systems +1304.3278 Lattice +1304.3280 Information Theory +1304.3288 Numerical Analysis +1304.3289 Theory +1304.3297 Phenomenology +1304.3302 Analysis of PDEs +1304.3304 Chemical Physics +1304.3305 Dynamical Systems +1304.3307 Formal Languages and Automata Theory +1304.3309 Cryptography and Security +1304.3310 +1304.3313 Cryptography and Security +1304.3319 Number Theory +1304.3324 Experiment +1304.3327 Dynamical Systems +1304.3329 Classical Analysis and ODEs +1304.3342 Differential Geometry +1304.3344 Theory +1304.3345 Learning +1304.3347 Methodology +1304.3349 Optics +1304.3350 General Finance +1304.3357 Networking and Internet Architecture +1304.3359 Metric Geometry +1304.3365 Data Structures and Algorithms +1304.3366 Representation Theory +1304.3377 Dynamical Systems +1304.3381 General Physics +1304.3383 Phenomenology +1304.3392 Classical Analysis and ODEs +1304.3396 Distributed, Parallel, and Cluster Computing +1304.3402 Computational Geometry +1304.3404 Phenomenology +1304.3406 Computer Vision and Pattern Recognition +1304.3417 Algebraic Geometry +0710.5279 Algebraic Geometry +0801.1963 Functional Analysis +0809.4908 Differential Geometry +0811.0354 +0902.3979 Multimedia +0902.4614 Materials Science +0905.3801 +0906.0587 Theory +0906.4982 Artificial Intelligence +0907.2715 Theory +0908.2542 Networking and Internet Architecture +0908.2571 Statistical Mechanics +0910.1181 +1001.1042 +1001.1479 Statistical Mechanics +1001.5418 Materials Science +1002.0744 Probability +1003.2851 Discrete Mathematics +1004.1373 Plasma Physics +1006.3407 Algebraic Geometry +1007.0759 Statistical Mechanics +1007.3684 Statistical Mechanics +1008.0172 Materials Science +1008.2814 Optimization and Control +1008.3812 Algebraic Geometry +1009.4075 +1010.2526 Algebraic Geometry +1010.5137 +1011.4103 Logic +1011.5672 Theory +1011.6057 Algebraic Geometry +1012.3837 Materials Science +1012.4577 Complex Variables +1012.4585 Complex Variables +1107.2526 Optimization and Control +1107.4696 Logic +1107.5662 Probability +1108.2375 Astrophysics of Galaxies +1108.4772 Symbolic Computation +1108.4886 Optimization and Control +1109.3174 Materials Science +1109.5932 Solar and Stellar Astrophysics +1110.6135 Applications +1111.3736 Probability +1112.0052 Information Retrieval +1112.0054 Information Retrieval +1112.2986 Probability +1112.4318 +1201.3673 Phenomenology +1201.5295 Number Theory +1201.5709 Logic +1202.2892 Artificial Intelligence +1202.2895 Artificial Intelligence +1202.6406 Strongly Correlated Electrons +1203.0013 Earth and Planetary Astrophysics +1203.1243 Statistics Theory +1203.1505 Optimization and Control +1203.1907 Theory +1203.3617 Group Theory +1204.1102 Quantum Gases +1205.2459 Analysis of PDEs +1205.2593 Accelerator Physics +1206.3364 Exactly Solvable and Integrable Systems +1206.5995 Classical Physics +1206.6904 Combinatorics +1207.1330 Rings and Algebras +1207.5289 Genomics +1207.6718 +1208.0463 Methodology +1208.3288 Analysis of PDEs +1208.5132 +1209.0209 Theory +1209.4441 Optics +1209.4782 Plasma Physics +1209.6380 Statistical Mechanics +1210.0492 Statistical Mechanics +1210.6284 Programming Languages +1211.1740 +1211.1828 +1211.4345 Cosmology and Nongalactic Astrophysics +1211.5104 Strongly Correlated Electrons +1211.5212 Statistical Mechanics +1211.5866 Analysis of PDEs +1211.5878 +1211.7160 Algebraic Geometry +1211.7361 Cosmology and Nongalactic Astrophysics +1212.1048 Optimization and Control +1212.1112 K-Theory and Homology +1212.1611 Information Theory +1212.1743 Geometric Topology +1212.2648 +1212.4123 Distributed, Parallel, and Cluster Computing +1212.4176 Theory +1212.6153 Cosmology and Nongalactic Astrophysics +1212.6430 +1301.2175 Experiment +1301.4796 +1301.5819 Symplectic Geometry +1301.5880 Metric Geometry +1302.0548 Number Theory +1302.0614 Information Theory +1302.1476 Materials Science +1302.1586 High Energy Astrophysical Phenomena +1302.2046 Quantum Algebra +1302.2140 Cosmology and Nongalactic Astrophysics +1302.2647 Mesoscale and Nanoscale Physics +1302.3510 Number Theory +1302.4794 Experiment +1302.5656 Geometric Topology +1303.0672 Phenomenology +1303.1141 Cosmology and Nongalactic Astrophysics +1303.2295 Analysis of PDEs +1303.3657 +1303.4198 Lattice +1303.4738 Earth and Planetary Astrophysics +1304.2122 Probability +1304.4910 Machine Learning +1304.5671 Optics +1304.5747 Methodology +1304.5848 Populations and Evolution +1304.6149 Instrumentation and Detectors +1304.6441 Materials Science +1304.6573 Soft Condensed Matter +1304.6901 Combinatorics +1304.6975 Optics +1304.7498 Experiment +1304.8116 Astrophysics of Galaxies +1305.0714 Materials Science +1305.1015 Functional Analysis +1305.1079 Optimization and Control +1305.1987 Materials Science +1305.2595 +1305.2774 Differential Geometry +1305.2795 Phenomenology +1305.3192 Cosmology and Nongalactic Astrophysics +1305.4747 Data Structures and Algorithms +1305.5851 Strongly Correlated Electrons +1305.6035 Rings and Algebras +1305.6133 +1305.6275 Fluid Dynamics +1305.6869 Chemical Physics +1306.0148 High Energy Astrophysical Phenomena +1306.1035 +1306.1126 Experiment +1306.2698 +1306.2886 Number Theory +1306.2929 Theory +1306.3889 Quantum Gases +1306.4456 Number Theory +1306.5360 Materials Science +1306.6620 Theory +1307.1465 Theory +1307.2594 +1307.4606 Mesoscale and Nanoscale Physics +1307.5245 Operator Algebras +1308.0243 Optics +1308.0284 Statistical Mechanics +1308.0371 Computer Vision and Pattern Recognition +1308.0942 Group Theory +1308.1105 Phenomenology +1308.2132 Theory +1308.2258 Materials Science +1308.2264 Information Theory +1308.2303 Materials Science +1308.2574 Networking and Internet Architecture +1308.3163 Number Theory +1308.3490 Phenomenology +1308.4020 +1308.4303 Phenomenology +1308.6248 Superconductivity +1308.6742 Cosmology and Nongalactic Astrophysics +1309.0194 Statistical Mechanics +1309.0322 Materials Science +1309.0369 Software Engineering +1309.1117 Experiment +1309.1417 Materials Science +1309.1831 High Energy Astrophysical Phenomena +1309.2122 Statistical Mechanics +1309.2750 Representation Theory +1309.3081 Quantum Gases +1309.3503 +1309.3635 +1309.4228 Statistical Mechanics +1309.6204 Social and Information Networks +1309.6328 High Energy Astrophysical Phenomena +1309.6677 Rings and Algebras +1309.6853 +1309.6928 Physics and Society +1309.7234 Accelerator Physics +1310.0077 Phenomenology +1310.1032 Hardware Architecture +1310.1457 Materials Science +1310.2048 Differential Geometry +1310.2463 Strongly Correlated Electrons +1310.3688 +1310.4202 Theory +1310.4366 Information Retrieval +1310.4398 Earth and Planetary Astrophysics +1310.8380 Strongly Correlated Electrons +1310.8607 High Energy Astrophysical Phenomena +1311.0122 +1311.0405 Lattice +1311.0876 Statistical Mechanics +1311.1739 +1311.2485 +1311.2584 Cosmology and Nongalactic Astrophysics +1311.2724 Cosmology and Nongalactic Astrophysics +1311.2783 Combinatorics +1311.2867 Algebraic Geometry +1311.3131 +1311.4019 Number Theory +1311.4043 Applications +1311.4106 Analysis of PDEs +1311.4114 Experiment +1311.4251 +1311.4524 Dynamical Systems +1311.5188 +1311.5644 Cosmology and Nongalactic Astrophysics +1311.5831 Information Theory +1311.5858 Algebraic Geometry +1311.5945 Probability +1311.6041 Learning +1311.6364 Number Theory +1311.6532 Materials Science +1311.6667 Optics +1311.6695 Number Theory +1311.6856 Combinatorics +1311.7013 Data Analysis, Statistics and Probability +1311.7084 Information Theory +1311.7095 Optics +1311.7387 Solar and Stellar Astrophysics +1311.7391 Theory +1311.7456 Representation Theory +1311.7585 Experiment +1312.0001 Databases +1312.0002 Optics +1312.0015 Instrumentation and Methods for Astrophysics +1312.0018 Programming Languages +1312.0020 Statistics Theory +1312.0023 +1312.0024 Algebraic Geometry +1312.0026 Algebraic Geometry +1312.0028 Experiment +1312.0032 Artificial Intelligence +1312.0035 Lattice +1312.0036 Computational Complexity +1312.0042 Data Structures and Algorithms +1312.0043 Differential Geometry +1312.0045 Networking and Internet Architecture +1312.0048 Learning +1312.0050 Analysis of PDEs +1312.0052 +1312.0053 Theory +1312.0059 Probability +1312.0060 Information Theory +1312.0061 Superconductivity +1312.0066 Probability +1312.0067 Earth and Planetary Astrophysics +1312.0068 +1312.0069 Operator Algebras +1312.0072 Computer Vision and Pattern Recognition +1312.0074 Dynamical Systems +1312.0078 Programming Languages +1312.0081 Functional Analysis +1312.0085 Solar and Stellar Astrophysics +1312.0094 Solar and Stellar Astrophysics +1312.0100 Strongly Correlated Electrons +1312.0102 Lattice +1312.0106 Group Theory +1312.0107 Cosmology and Nongalactic Astrophysics +1312.0108 Number Theory +1312.0110 Materials Science +1312.0112 +1312.0113 Phenomenology +1312.0114 Distributed, Parallel, and Cluster Computing +1312.0115 Statistical Mechanics +1312.0118 +1312.0119 Lattice +1312.0121 Logic in Computer Science +1312.0122 Differential Geometry +1312.0124 Phenomenology +1312.0126 Cosmology and Nongalactic Astrophysics +1312.0131 Strongly Correlated Electrons +1312.0133 Networking and Internet Architecture +1312.0135 Complex Variables +1312.0136 Phenomenology +1312.0137 Computer Science and Game Theory +1312.0138 Programming Languages +1312.0140 Differential Geometry +1312.0143 Lattice +1312.0146 Information Theory +1312.0148 Systems and Control +1312.0149 Lattice +1312.0152 Materials Science +1312.0154 Methodology +1312.0155 Lattice +1312.0156 Databases +1312.0161 Physics and Society +1312.0162 Computers and Society +1312.0165 +1312.0167 Spectral Theory +1312.0168 Chemical Physics +1312.0170 Geometric Topology +1312.0174 Materials Science +1312.0176 Theory +1312.0178 Rings and Algebras +1312.0180 Geometric Topology +1312.0182 Information Retrieval +1312.0183 Symplectic Geometry +1312.0186 Data Structures and Algorithms +1312.0187 Experiment +1312.0189 Databases +1312.0190 Formal Languages and Automata Theory +1312.0192 Combinatorics +1312.0194 Data Structures and Algorithms +1312.0195 Computational Physics +1312.0196 Materials Science +1312.0197 Analysis of PDEs +1312.0198 Statistical Mechanics +1312.0200 Logic in Computer Science +1312.0202 Information Theory +1312.0203 Chaotic Dynamics +1312.0208 Phenomenology +1312.0210 Combinatorics +1312.0216 Numerical Analysis +1312.0218 Differential Geometry +1312.0221 Instrumentation and Detectors +1312.0223 Materials Science +1312.0229 Networking and Internet Architecture +1312.0236 Chemical Physics +1312.0237 Cosmology and Nongalactic Astrophysics +1312.0239 Algebraic Geometry +1312.0240 Commutative Algebra +1312.0241 Algebraic Topology +1312.0242 Materials Science +1312.0245 +1312.0247 K-Theory and Homology +1312.0249 Distributed, Parallel, and Cluster Computing +1312.0251 Number Theory +1312.0257 Phenomenology +1312.0263 Optimization and Control +1312.0274 Combinatorics +1312.0281 Dynamical Systems +1312.0283 Risk Management +1312.0284 Fluid Dynamics +1312.0285 Databases +1312.0291 Lattice +1312.0295 General Physics +1312.0298 Dynamical Systems +1312.0299 Combinatorics +1312.0300 Mesoscale and Nanoscale Physics +1312.0302 Methodology +1312.0306 Lattice +1312.0308 Statistics Theory +1312.0309 Emerging Technologies +1312.0313 Group Theory +1312.0318 Optics +1312.0320 Combinatorics +1312.0321 Commutative Algebra +1312.0324 Commutative Algebra +1312.0325 Commutative Algebra +1312.0327 Commutative Algebra +1312.0329 Quantitative Methods +1312.0333 Networking and Internet Architecture +1312.0336 Systems and Control +1312.0337 High Energy Astrophysical Phenomena +1312.0339 Analysis of PDEs +1312.0340 General Physics +1312.0341 Software Engineering +1312.0342 Programming Languages +1312.0343 Software Engineering +1312.0344 Software Engineering +1312.0345 Dynamical Systems +1312.0346 Software Engineering +1312.0347 Software Engineering +1312.0348 Software Engineering +1312.0349 Software Engineering +1312.0350 Logic in Computer Science +1312.0351 Software Engineering +1312.0352 Software Engineering +1312.0353 Populations and Evolution +1312.0354 Software Engineering +1312.0355 Computational Complexity +1312.0356 Software Engineering +1312.0359 Accelerator Physics +1312.0361 Combinatorics +1312.0368 Complex Variables +1312.0372 Information Theory +1312.0375 Lattice +1312.0382 High Energy Astrophysical Phenomena +1312.0383 Experiment +1312.0389 Computational Geometry +1312.0390 Applications +1312.0393 Algebraic Geometry +1312.0394 +1312.0397 Probability +1312.0401 Applications +1312.0403 Information Theory +1312.0411 Instrumentation and Detectors +1312.0412 Learning +1312.0420 +1312.0421 Analysis of PDEs +1312.0423 +1312.0424 Risk Management +1312.0432 Category Theory +1312.0433 Materials Science +1312.0435 +1312.0440 Atmospheric and Oceanic Physics +1312.0441 Combinatorics +1312.0442 Solar and Stellar Astrophysics +1312.0443 Functional Analysis +1312.0445 Complex Variables +1312.0446 Atomic Physics +1312.0447 Theory +1312.0454 Phenomenology +1312.0459 Analysis of PDEs +1312.0461 Software Engineering +1312.0462 Symbolic Computation +1312.0465 Computational Engineering, Finance, and Science +1312.0470 Representation Theory +1312.0473 Materials Science +1312.0477 Lattice +1312.0482 Computation and Language +1312.0483 Atmospheric and Oceanic Physics +1312.0484 Numerical Analysis +1312.0485 Information Theory +1312.0489 Systems and Control +1312.0492 Phenomenology +1312.0493 Learning +1312.0495 Chemical Physics +1312.0497 Data Structures and Algorithms +1312.0501 Geometric Topology +1312.0506 Risk Management +1312.0514 Trading and Market Microstructure +1312.0518 Methodology +1312.0519 Probability +1312.0520 Other Computer Science +1312.0522 Networking and Internet Architecture +1312.0524 Optics +1312.0526 Data Structures and Algorithms +1312.0530 Cosmology and Nongalactic Astrophysics +1312.0534 Optimization and Control +1312.0539 Probability +1312.0541 Theory +1312.0542 Combinatorics +1312.0553 Number Theory +1312.0554 Phenomenology +1312.0558 High Energy Astrophysical Phenomena +1312.0559 Phenomenology +1312.0565 Earth and Planetary Astrophysics +1312.0567 Analysis of PDEs +1312.0568 Number Theory +1312.0569 Statistics Theory +1312.0577 +1312.0579 Learning +1312.0583 Combinatorics +1312.0586 Logic +1312.0588 +1312.0591 High Energy Astrophysical Phenomena +1312.0592 Phenomenology +math/0310237 Algebraic Topology +math/0503614 Complex Variables +physics/0701091 General Physics +0811.2128 Phenomenology +0908.4121 Algebraic Geometry +0910.5077 Representation Theory +1010.3007 +1010.5906 Algebraic Geometry +1012.1557 Geometric Topology +1102.3453 Physics Education +1105.5416 Computational Finance +1106.5834 Statistics Theory +1107.5658 Applications +1110.3772 Data Analysis, Statistics and Probability +1111.4601 Data Analysis, Statistics and Probability +1201.0905 Applications +1202.2262 +1203.5396 +1204.2176 Probability +1205.3138 Cosmology and Nongalactic Astrophysics +1205.6300 Probability +1205.6310 Methodology +1206.4748 Representation Theory +1207.3734 Phenomenology +1209.0082 +1209.0500 +1210.0309 +1210.1563 Statistics Theory +1210.1868 Cosmology and Nongalactic Astrophysics +1210.2433 Group Theory +1211.2123 +1211.4155 Analysis of PDEs +1211.4702 Representation Theory +1211.6755 Logic +1212.0867 Materials Science +1212.0898 Phenomenology +1212.2947 Quantum Gases +1212.3750 Number Theory +1212.4984 Theory +1212.5316 +1212.5696 Materials Science +1301.1444 Artificial Intelligence +1301.3742 Earth and Planetary Astrophysics +1302.0398 +1302.0452 Populations and Evolution +1302.1723 Optimization and Control +1303.1521 Cosmology and Nongalactic Astrophysics +1303.2099 Strongly Correlated Electrons +1303.4894 Chemical Physics +1303.6477 Instrumentation and Detectors +1303.7428 Combinatorics +1304.1552 Optics +1304.2336 +1304.2972 Analysis of PDEs +1304.3981 Geophysics +1304.3983 Earth and Planetary Astrophysics +1304.3985 Geophysics +1304.5614 High Energy Astrophysical Phenomena +1304.6108 Computational Geometry +1304.7097 Theory +1305.0036 Computational Physics +1305.0207 Strongly Correlated Electrons +1305.3313 +1305.3895 Analysis of PDEs +1305.4248 +1305.5178 Cosmology and Nongalactic Astrophysics +1305.5375 Operator Algebras +1305.5939 Populations and Evolution +1305.6489 Social and Information Networks +1305.7411 Other Quantitative Biology +1306.2772 Populations and Evolution +1306.3068 +1306.3656 Physics and Society +1306.5484 History and Philosophy of Physics +1307.0271 High Energy Astrophysical Phenomena +1307.0962 Networking and Internet Architecture +1307.2044 +1307.2610 Instrumentation and Detectors +1307.2699 Quantum Gases +1307.3419 Databases +1307.4334 Optimization and Control +1307.4720 +1307.5705 Soft Condensed Matter +1307.5707 Chaotic Dynamics +1307.6953 Cosmology and Nongalactic Astrophysics +1307.7060 Probability +1307.8406 Mesoscale and Nanoscale Physics +1307.8433 +1308.2406 +1308.4043 Chemical Physics +1308.4329 Statistical Mechanics +1308.6718 Optimization and Control +1309.0033 Solar and Stellar Astrophysics +1309.0134 Phenomenology +1309.0411 +1309.0415 Atomic Physics +1309.1182 Cosmology and Nongalactic Astrophysics +1309.2316 Phenomenology +1309.3223 Data Structures and Algorithms +1309.3379 +1309.3561 Phenomenology +1309.4464 Strongly Correlated Electrons +1310.0354 Computer Vision and Pattern Recognition +1310.0453 Theory +1310.0559 Mesoscale and Nanoscale Physics +1310.2837 Differential Geometry +1310.3562 +1310.5462 Dynamical Systems +1310.6500 +1310.6663 Materials Science +1311.1632 Artificial Intelligence +1311.2223 Fluid Dynamics +1311.2707 Molecular Networks +1311.5511 General Finance +1311.6668 Combinatorics +1311.7547 Soft Condensed Matter +1312.0254 +1312.0834 Representation Theory +1312.1378 Networking and Internet Architecture +1312.1610 General Physics +1312.1623 Analysis of PDEs +1312.1681 Computer Vision and Pattern Recognition +1312.1683 Computer Vision and Pattern Recognition +1312.1684 Computer Vision and Pattern Recognition +1312.1685 Computer Vision and Pattern Recognition +1312.1709 Algebraic Topology +1312.1714 Classical Analysis and ODEs +1312.1717 Numerical Analysis +1312.1718 Computational Complexity +1312.1722 Mesoscale and Nanoscale Physics +1312.1725 Computational Geometry +1312.1727 Information Theory +1312.1737 Learning +1312.1745 Analysis of PDEs +1312.1747 +1312.1748 Algebraic Geometry +1312.1749 Phenomenology +1312.1750 Combinatorics +1312.1752 Neural and Evolutionary Computing +1312.1755 Data Structures and Algorithms +1312.1760 Neural and Evolutionary Computing +1312.1761 Phenomenology +1312.1764 Data Structures and Algorithms +1312.1765 Genomics +1312.1770 +1312.1773 Biological Physics +1312.1774 High Energy Astrophysical Phenomena +1312.1776 Numerical Analysis +1312.1778 Mesoscale and Nanoscale Physics +1312.1781 Astrophysics of Galaxies +1312.1788 Physics Education +1312.1789 Instrumentation and Methods for Astrophysics +1312.1793 Number Theory +1312.1795 Applications +1312.1796 Phenomenology +1312.1797 Applications +1312.1801 Applications +1312.1806 Functional Analysis +1312.1809 Applications +1312.1810 Operating Systems +1312.1813 Experiment +1312.1814 Optimization and Control +1312.1816 Applications +1312.1817 Software Engineering +1312.1818 Applications +1312.1819 Data Structures and Algorithms +1312.1821 +1312.1822 Operating Systems +1312.1824 Graphics +1312.1825 +1312.1826 Computational Complexity +1312.1833 +1312.1837 Quantum Algebra +1312.1838 Instrumentation and Detectors +1312.1839 Disordered Systems and Neural Networks +1312.1840 Applications +1312.1841 Number Theory +1312.1842 Dynamical Systems +1312.1850 Optics +1312.1851 Analysis of PDEs +1312.1855 Group Theory +1312.1856 Applications +1312.1860 Information Retrieval +1312.1865 Solar and Stellar Astrophysics +1312.1866 Complex Variables +1312.1869 Methodology +1312.1872 Representation Theory +1312.1873 Applications +1312.1876 Neurons and Cognition +1312.1877 Superconductivity +1312.1880 Combinatorics +1312.1882 Information Theory +1312.1883 Tissues and Organs +1312.1884 Instrumentation and Methods for Astrophysics +1312.1885 Mesoscale and Nanoscale Physics +1312.1887 Artificial Intelligence +1312.1888 Optics +1312.1889 Other Computer Science +1312.1890 Fluid Dynamics +1312.1893 Dynamical Systems +1312.1895 Computation +1312.1896 Complex Variables +1312.1897 Information Retrieval +1312.1901 Functional Analysis +1312.1902 +1312.1904 Systems and Control +1312.1907 Functional Analysis +1312.1909 Neural and Evolutionary Computing +1312.1910 Numerical Analysis +1312.1913 Information Retrieval +1312.1915 Robotics +1312.1917 Number Theory +1312.1920 Networking and Internet Architecture +1312.1927 Classical Analysis and ODEs +1312.1928 Materials Science +1312.1933 Chaotic Dynamics +1312.1938 Statistics Theory +1312.1939 Probability +1312.1940 +1312.1941 Differential Geometry +1312.1946 Probability +1312.1949 Lattice +1312.1951 Combinatorics +1312.1955 Computer Science and Game Theory +1312.1960 Representation Theory +1312.1964 Analysis of PDEs +1312.1969 Social and Information Networks +1312.1970 Machine Learning +1312.1971 Artificial Intelligence +1312.1973 Networking and Internet Architecture +1312.1976 +1312.1987 Combinatorics +1312.1995 Experiment +1312.1996 Soft Condensed Matter +hep-ex/0406009 Experiment +0704.3417 Representation Theory +0803.1122 Number Theory +0803.2326 Algebraic Geometry +0901.1917 Statistical Mechanics +0907.2733 +0910.0986 +0911.3923 Group Theory +0912.2151 Commutative Algebra +1004.0639 Chaotic Dynamics +1004.5344 Geometric Topology +1006.3939 Strongly Correlated Electrons +1007.1529 Group Theory +1007.1740 Fluid Dynamics +1008.1930 Statistical Mechanics +1009.0029 Representation Theory +1009.5389 Number Theory +1010.1061 Commutative Algebra +1010.1062 Commutative Algebra +1010.1850 Data Analysis, Statistics and Probability +1010.2664 +1011.0672 Dynamical Systems +1101.4704 Functional Analysis +1105.1101 Fluid Dynamics +1105.2528 Probability +1106.3546 Probability +1106.3945 Fluid Dynamics +1106.6061 Discrete Mathematics +1107.1520 Combinatorics +1107.1760 Probability +1107.3224 +1107.4198 +1108.2328 Quantum Gases +1108.2615 Theory +1108.5063 Probability +1109.2194 Analysis of PDEs +1110.1532 Operator Algebras +1110.6433 +1111.0395 +1111.0568 Probability +1112.2557 Dynamical Systems +1112.2645 +1112.2682 Methodology +1112.4782 Representation Theory +1112.6133 Classical Analysis and ODEs +1201.0222 +1201.1408 Functional Analysis +1201.1669 Algebraic Geometry +1201.2806 General Physics +1201.3837 Quantum Gases +1201.5941 +1202.2223 Information Theory +1202.3122 Symplectic Geometry +1203.1908 Number Theory +1203.2212 Classical Analysis and ODEs +1203.4623 Analysis of PDEs +1203.5616 Algebraic Geometry +1203.6546 Number Theory +1204.0556 Information Theory +1204.1518 +1204.1711 Algebraic Geometry +1204.5529 Optics +1205.1167 Statistical Mechanics +1205.4486 Commutative Algebra +1205.5052 Analysis of PDEs +1205.6988 Theory +1206.1735 Commutative Algebra +1206.2810 Combinatorics +1207.4337 Optics +1208.0712 Distributed, Parallel, and Cluster Computing +1208.1091 +1208.2514 Quantum Gases +1208.2544 Differential Geometry +1208.4566 Digital Libraries +1208.6088 Metric Geometry +1209.2408 Computational Complexity +1209.4871 +1209.5239 +1209.5709 +1209.6044 Dynamical Systems +1210.4305 Strongly Correlated Electrons +1210.5423 Quantum Algebra +1210.5571 Superconductivity +1210.6249 Strongly Correlated Electrons +1210.7137 History and Overview +1210.8401 Analysis of PDEs +1211.0722 Information Theory +1211.0961 Phenomenology +1211.1247 Probability +1211.2874 Physics and Society +1211.3720 Applications +1211.4741 Strongly Correlated Electrons +1211.5081 Statistical Mechanics +1211.5477 Differential Geometry +1211.6807 Social and Information Networks +1211.7054 Cosmology and Nongalactic Astrophysics +1211.7215 +1211.7349 Fluid Dynamics +1212.1413 General Mathematics +1212.2044 Neural and Evolutionary Computing +1212.3232 Theory +1212.5075 Algebraic Geometry +1301.1018 Information Theory +1301.1104 Analysis of PDEs +1301.1359 Number Theory +1301.2117 Strongly Correlated Electrons +1301.2973 +1301.3372 +1301.4463 Probability +1301.4776 Quantum Gases +1301.4926 Information Theory +1301.5485 Rings and Algebras +1302.0085 Statistical Mechanics +1302.1628 +1302.5041 Superconductivity +1302.5312 Functional Analysis +1302.5803 Populations and Evolution +1302.6058 Statistics Theory +1302.6637 Cosmology and Nongalactic Astrophysics +1302.7212 Cryptography and Security +1303.0823 Experiment +1303.1926 Materials Science +1303.3088 Rings and Algebras +1303.3631 Algebraic Geometry +1303.4218 Combinatorics +1303.4694 Numerical Analysis +1303.6430 Astrophysics of Galaxies +1304.1181 Cosmology and Nongalactic Astrophysics +1304.2338 Data Structures and Algorithms +1304.3223 +1304.3630 +1304.5501 Mesoscale and Nanoscale Physics +1304.5751 Fluid Dynamics +1304.6205 Algebraic Topology +1304.7271 +1304.7555 Strongly Correlated Electrons +1304.8063 Optics +1305.0244 Phenomenology +1305.0302 High Energy Astrophysical Phenomena +1305.0911 Formal Languages and Automata Theory +1305.1148 Biological Physics +1305.1948 Soft Condensed Matter +1305.2610 Dynamical Systems +1305.2651 Optimization and Control +1305.3427 +1305.4450 Combinatorics +1305.4577 +1305.5065 High Energy Astrophysical Phenomena +1305.5726 General Mathematics +1305.5991 +1305.6527 Mesoscale and Nanoscale Physics +1305.7220 +1306.0267 Applications +1306.0319 Analysis of PDEs +1306.0354 Strongly Correlated Electrons +1306.1521 Number Theory +1306.2606 Quantum Gases +1306.2790 Probability +1306.3230 Strongly Correlated Electrons +1306.4056 Algebraic Geometry +1306.4136 Physics and Society +1306.4306 +1306.4559 Complex Variables +1306.5504 Soft Condensed Matter +1307.0043 Disordered Systems and Neural Networks +1307.0056 Methodology +1307.0478 Phenomenology +1307.1261 Mesoscale and Nanoscale Physics +1307.1623 Mesoscale and Nanoscale Physics +1307.1805 Data Structures and Algorithms +1307.1925 +1307.2426 Phenomenology +1307.3193 Quantum Gases +1307.4026 Quantum Gases +1307.4433 Materials Science +1307.5918 Instrumentation and Detectors +1307.6551 Classical Analysis and ODEs +1308.0267 Formal Languages and Automata Theory +1308.1235 +1308.2192 Number Theory +1308.3142 Phenomenology +1308.4068 Instrumentation and Methods for Astrophysics +1308.5272 Computer Science and Game Theory +1308.6569 Cosmology and Nongalactic Astrophysics +1309.0463 Algebraic Geometry +1309.0573 +1309.1448 +1309.1537 Algebraic Geometry +1309.1835 Combinatorics +1309.1960 Discrete Mathematics +1309.2222 Fluid Dynamics +1309.2721 Information Theory +1309.3073 History and Overview +1309.3077 Analysis of PDEs +1309.3338 Theory +1309.3398 Symplectic Geometry +1309.3435 +1309.3601 Differential Geometry +1309.3642 Discrete Mathematics +1309.3655 Networking and Internet Architecture +1309.3822 Mesoscale and Nanoscale Physics +1309.3927 Optics +1309.4148 Atomic Physics +1309.4538 Commutative Algebra +1309.4750 Strongly Correlated Electrons +1309.4797 Functional Analysis +1309.4799 Dynamical Systems +1309.4896 +1309.5208 Classical Analysis and ODEs +1309.5367 Physics and Society +1309.5372 Digital Libraries +1309.5376 Combinatorics +1309.5377 Software Engineering +1309.5378 Dynamical Systems +1309.5380 Cosmology and Nongalactic Astrophysics +1309.5390 Systems and Control +1309.5391 Computation and Language +1309.5392 Instrumentation and Detectors +1309.5393 Cryptography and Security +1309.5394 Atomic Physics +1309.5397 +1309.5398 Mesoscale and Nanoscale Physics +1309.5399 Cosmology and Nongalactic Astrophysics +1309.5401 Robotics +1309.5404 Analysis of PDEs +1309.5407 Analysis of PDEs +1309.5419 Phenomenology +1309.5420 Rings and Algebras +1309.5423 Number Theory +1309.5427 Learning +1309.5432 Materials Science +1309.5434 Operator Algebras +1309.5435 Operator Algebras +1309.5440 Information Theory +1309.5441 Analysis of PDEs +1309.5442 Distributed, Parallel, and Cluster Computing +1309.5443 Mesoscale and Nanoscale Physics +1309.5450 Data Analysis, Statistics and Probability +1309.5457 Distributed, Parallel, and Cluster Computing +1309.5458 Biomolecules +1309.5459 Hardware Architecture +1309.5460 Space Physics +1309.5466 Statistical Finance +1309.5469 Discrete Mathematics +1309.5470 Chaotic Dynamics +1309.5473 Statistical Mechanics +1309.5475 Functional Analysis +1309.5476 Mesoscale and Nanoscale Physics +1309.5481 Optics +1309.5482 +1309.5486 Methodology +1309.5487 Functional Analysis +1309.5488 Social and Information Networks +1309.5489 Computation +1309.5490 Functional Analysis +1309.5493 Numerical Analysis +1309.5496 Mesoscale and Nanoscale Physics +1309.5497 Solar and Stellar Astrophysics +1309.5498 Mathematical Software +1309.5499 Solar and Stellar Astrophysics +1309.5500 Programming Languages +1309.5501 Solar and Stellar Astrophysics +1309.5503 Digital Libraries +1309.5507 Hardware Architecture +1309.5509 Differential Geometry +1309.5511 Systems and Control +1309.5513 Fluid Dynamics +1309.5514 Materials Science +1309.5515 Optimization and Control +1309.5518 Materials Science +1309.5520 Algebraic Geometry +1309.5521 Classical Analysis and ODEs +1309.5522 Distributed, Parallel, and Cluster Computing +1309.5533 Experiment +1309.5541 Strongly Correlated Electrons +1309.5545 Probability +1309.5547 Optimization and Control +1309.5548 Optimization and Control +1309.5551 Hardware Architecture +1309.5558 Dynamical Systems +1309.5559 Mesoscale and Nanoscale Physics +1309.5560 Numerical Analysis +1309.5562 Algebraic Geometry +1309.5563 Probability +1309.5564 Probability +1309.5565 Pricing of Securities +1309.5566 Probability +1309.5568 Networking and Internet Architecture +1309.5570 Rings and Algebras +1309.5572 Rings and Algebras +1309.5574 Computational Engineering, Finance, and Science +1309.5576 Analysis of PDEs +1309.5577 Group Theory +1309.5579 Optics +1309.5580 Materials Science +1309.5585 Group Theory +1309.5591 Mesoscale and Nanoscale Physics +1309.5593 Strongly Correlated Electrons +1309.5597 Number Theory +1309.5601 Cryptography and Security +1309.5605 Learning +1309.5607 Astrophysics of Galaxies +1309.5610 Mesoscale and Nanoscale Physics +1309.5614 Populations and Evolution +1309.5616 Computation +1309.5617 Instrumentation and Methods for Astrophysics +1309.5618 Data Structures and Algorithms +1309.5623 Analysis of PDEs +1309.5626 Superconductivity +1309.5629 Group Theory +1309.5636 Probability +1309.5637 +1309.5647 Hardware Architecture +1309.5649 K-Theory and Homology +1309.5651 Probability +1309.5652 Computation and Language +1309.5653 Representation Theory +1309.5656 Analysis of PDEs +1309.5657 Computation and Language +1309.5658 Classical Analysis and ODEs +1309.5660 Neural and Evolutionary Computing +1309.5661 Probability +1309.5663 Physics and Society +1309.5664 Optics +1309.5667 Populations and Evolution +1309.5668 Computational Complexity +1309.5670 Adaptation and Self-Organizing Systems +1309.5673 Neurons and Cognition +1309.5677 Computational Engineering, Finance, and Science +1309.5682 Number Theory +1309.5686 Networking and Internet Architecture +1309.5687 Data Structures and Algorithms +1309.5688 Software Engineering +1309.5689 Software Engineering +1309.5690 Materials Science +1309.5696 Mesoscale and Nanoscale Physics +1309.5697 Data Structures and Algorithms +1309.5702 Systems and Control +1309.5703 Statistical Finance +1309.5704 Algebraic Geometry +1309.5711 Probability +1309.5712 Combinatorics +1309.5725 Networking and Internet Architecture +1309.5726 Materials Science +1309.5734 Analysis of PDEs +1309.5735 Human-Computer Interaction +1309.5738 Cosmology and Nongalactic Astrophysics +1309.5740 Statistics Theory +1309.5742 Logic in Computer Science +1309.5744 Differential Geometry +1309.5745 +1309.5749 Information Theory +1309.5751 Logic +1309.5754 Number Theory +1309.5755 Analysis of PDEs +1309.5759 Combinatorics +1309.5763 Phenomenology +1309.5768 Geophysics +1309.5770 Rings and Algebras +1309.5771 +1309.5772 Mesoscale and Nanoscale Physics +1309.5774 +1309.5779 Probability +1309.5780 +1309.5781 Data Structures and Algorithms +1309.5783 Experiment +1309.5787 Discrete Mathematics +1309.5788 Superconductivity +1309.5795 Numerical Analysis +1309.5800 Optimization and Control +1309.5801 Fluid Dynamics +1309.5803 Learning +1309.5804 Group Theory +1309.5805 General Mathematics +1309.5808 Computation +1309.5813 High Energy Astrophysical Phenomena +1309.5815 +1309.5818 K-Theory and Homology +1309.5820 +1309.5821 Databases +1309.5823 Learning +1309.5826 Distributed, Parallel, and Cluster Computing +1309.5828 History and Overview +1309.5830 Optics +1309.5832 Optimization and Control +1309.5834 Atomic and Molecular Clusters +1309.5836 Information Theory +1309.5840 Neurons and Cognition +1309.5842 Rings and Algebras +1309.5843 Computation and Language +1309.5844 Instrumentation and Methods for Astrophysics +1309.5845 Number Theory +1309.5848 +1309.5854 Other Computer Science +1309.5856 Classical Analysis and ODEs +1309.5859 Physics and Society +1309.5861 Molecular Networks +1309.5862 Computational Complexity +1309.5864 Chemical Physics +1309.5871 Algebraic Geometry +1309.5874 High Energy Astrophysical Phenomena +1309.5882 Biological Physics +1309.5885 Distributed, Parallel, and Cluster Computing +1309.5890 Phenomenology +1309.5891 Functional Analysis +1309.5893 Algebraic Geometry +1309.5894 Statistical Mechanics +1309.5896 Neural and Evolutionary Computing +1309.5899 Geometric Topology +1309.5900 Optimization and Control +1309.5902 Number Theory +1309.5904 Learning +1309.5909 Computation and Language +1309.5918 Soft Condensed Matter +1309.5919 Phenomenology +1309.5923 Methodology +1309.5924 High Energy Astrophysical Phenomena +1309.5927 Data Structures and Algorithms +1309.5930 Earth and Planetary Astrophysics +1309.5931 Neural and Evolutionary Computing +math-ph/0611008 +math/0509286 Number Theory +math/0604308 Operator Algebras +1210.1848 Functional Analysis +1308.0068 Classical Analysis and ODEs +1308.0090 Emerging Technologies +0712.3915 +0909.0061 Analysis of PDEs +1006.3159 Programming Languages +1012.1096 Functional Analysis +1103.2898 Group Theory +1105.1801 Mesoscale and Nanoscale Physics +1110.6398 Combinatorics +1111.1468 Analysis of PDEs +1111.6404 Combinatorics +1112.3678 Functional Analysis +1112.6282 Metric Geometry +1112.6284 Metric Geometry +1201.0533 Probability +1201.1405 Number Theory +1201.1412 Functional Analysis +1201.2952 Functional Analysis +1202.6579 Experiment +1203.1308 Combinatorics +1203.5540 Mesoscale and Nanoscale Physics +1205.3206 Mesoscale and Nanoscale Physics +1205.4281 Number Theory +1206.2023 Logic +1208.1332 Strongly Correlated Electrons +1208.2444 Operator Algebras +1209.0533 Number Theory +1209.1033 Information Theory +1209.2663 Phenomenology +1209.2997 Mesoscale and Nanoscale Physics +1209.5478 Logic +1210.5852 Theory +1210.6277 Combinatorics +1210.7210 Phenomenology +1210.7325 Mathematical Software +1210.8016 Cosmology and Nongalactic Astrophysics +1210.8203 Commutative Algebra +1211.1112 Phenomenology +1211.2431 Symplectic Geometry +1211.3655 Analysis of PDEs +1211.5168 Phenomenology +1211.5218 Classical Analysis and ODEs +1211.5546 Exactly Solvable and Integrable Systems +1211.5567 Exactly Solvable and Integrable Systems +1211.5611 Optimization and Control +1211.5652 Analysis of PDEs +1212.1652 Materials Science +1212.1973 +1212.3866 Statistics Theory +1212.4818 Theory +1212.5897 Mesoscale and Nanoscale Physics +1212.6715 Phenomenology +1301.3470 Strongly Correlated Electrons +1301.3568 Machine Learning +1301.3641 Learning +1301.4080 Soft Condensed Matter +1301.6294 Statistical Mechanics +1301.6587 Information Theory +1301.7747 Neurons and Cognition +1302.1785 Superconductivity +1302.4332 Distributed, Parallel, and Cluster Computing +1302.4710 Other Condensed Matter +1302.5351 Dynamical Systems +1302.5691 Chemical Physics +1303.1125 +1303.2312 Atomic Physics +1303.2657 Strongly Correlated Electrons +1303.2884 Strongly Correlated Electrons +1303.3425 Strongly Correlated Electrons +1303.4539 Biological Physics +1303.5195 Applications +1303.5535 +1303.5922 Strongly Correlated Electrons +1303.6458 Mesoscale and Nanoscale Physics +1304.0313 Commutative Algebra +1304.0353 Statistical Finance +1304.2005 Combinatorics +1304.2104 Materials Science +1304.2272 Computational Engineering, Finance, and Science +1304.3596 Programming Languages +1304.6069 Materials Science +1304.6618 +1304.7084 Analysis of PDEs +1304.7355 Data Structures and Algorithms +1304.7804 Data Structures and Algorithms +1304.7840 Combinatorics +1304.7996 High Energy Astrophysical Phenomena +1304.8020 Learning +1304.8034 Software Engineering +1304.8108 Data Structures and Algorithms +1305.0001 Graphics +1305.0015 Machine Learning +1305.0019 Superconductivity +1305.0020 Computer Vision and Pattern Recognition +1305.0021 Phenomenology +1305.0022 High Energy Astrophysical Phenomena +1305.0026 Exactly Solvable and Integrable Systems +1305.0029 Cosmology and Nongalactic Astrophysics +1305.0032 Information Theory +1305.0034 Computer Science and Game Theory +1305.0035 Number Theory +1305.0040 Pricing of Securities +1305.0044 Theory +1305.0045 Operator Algebras +1305.0051 Social and Information Networks +1305.0053 +1305.0061 Information Theory +1305.0063 Superconductivity +1305.0064 Logic +1305.0073 Cosmology and Nongalactic Astrophysics +1305.0076 Astrophysics of Galaxies +1305.0077 Analysis of PDEs +1305.0078 Analysis of PDEs +1305.0080 Group Theory +1305.0083 +1305.0085 Computer Science and Game Theory +1305.0089 Numerical Analysis +1305.0093 Commutative Algebra +1305.0097 Number Theory +1305.0099 Analysis of PDEs +1305.0101 Computer Science and Game Theory +1305.0103 Learning +1305.0104 Probability +1305.0105 Trading and Market Microstructure +1305.0106 Mesoscale and Nanoscale Physics +1305.0109 Phenomenology +1305.0110 Data Structures and Algorithms +1305.0111 Operator Algebras +1305.0115 Soft Condensed Matter +1305.0126 Atomic Physics +1305.0129 Combinatorics +1305.0132 +1305.0134 Combinatorics +1305.0142 Algebraic Topology +1305.0145 Materials Science +1305.0146 Cosmology and Nongalactic Astrophysics +1305.0148 Atomic Physics +1305.0149 Solar and Stellar Astrophysics +1305.0152 Software Engineering +1305.0153 Systems and Control +1305.0159 Genomics +1305.0160 Data Structures and Algorithms +1305.0169 +1305.0170 Phenomenology +1305.0171 Pattern Formation and Solitons +1305.0172 Computational Geometry +1305.0174 Classical Physics +1305.0184 Complex Variables +1305.0187 Artificial Intelligence +1305.0189 Software Engineering +1305.0190 Software Engineering +1305.0195 Software Engineering +1305.0196 Information Retrieval +1305.0198 Strongly Correlated Electrons +1305.0201 Combinatorics +1305.0203 Numerical Analysis +1305.0216 Number Theory +1305.0218 Computer Vision and Pattern Recognition +1305.0220 Methodology +1305.0221 Analysis of PDEs +1305.0223 Chemical Physics +1305.0224 Experiment +1305.0225 +1305.0226 Functional Analysis +1305.0229 Cosmology and Nongalactic Astrophysics +1305.0233 Space Physics +1305.0235 Astrophysics of Galaxies +1305.0238 Strongly Correlated Electrons +1305.0239 Statistical Finance +1305.0240 Materials Science +1305.0241 Probability +1305.0243 Metric Geometry +1305.0245 Cryptography and Security +1305.0252 High Energy Astrophysical Phenomena +1305.0254 Probability +1305.0255 Differential Geometry +0710.5474 Other Condensed Matter +0802.2295 Mesoscale and Nanoscale Physics +0806.3995 +0903.2389 Superconductivity +0904.4465 General Topology +0907.2660 Mesoscale and Nanoscale Physics +0910.0060 Chaotic Dynamics +0910.0917 +0911.4856 Strongly Correlated Electrons +0912.5148 Cosmology and Nongalactic Astrophysics +1004.1327 Mesoscale and Nanoscale Physics +1006.5956 Superconductivity +1007.2602 Materials Science +1007.5365 Strongly Correlated Electrons +1008.0369 +1008.0505 +1008.0875 Classical Physics +1008.3312 Theory +1012.4500 Cosmology and Nongalactic Astrophysics +1103.1423 +1103.2068 Learning +1104.1738 Logic in Computer Science +1104.3409 +1105.2382 +1105.6148 Artificial Intelligence +1106.6147 Methodology +1107.3396 Algebraic Topology +1107.3489 +1107.5886 Logic in Computer Science +1108.2420 +1108.4256 +1109.0926 Phenomenology +1109.4148 Astrophysics of Galaxies +1110.3802 +1111.1862 +1111.3029 Statistics Theory +1111.4906 Chaotic Dynamics +1112.0461 +1112.1898 +1201.2666 Phenomenology +1201.2667 +1202.1066 Algebraic Geometry +1202.1142 +1202.5066 Atmospheric and Oceanic Physics +1202.5554 Earth and Planetary Astrophysics +1202.6526 Disordered Systems and Neural Networks +1203.0207 Phenomenology +1204.0150 Strongly Correlated Electrons +1204.1024 Probability +1205.1811 Strongly Correlated Electrons +1205.4248 Strongly Correlated Electrons +1206.0173 +1206.0445 Theory +1206.5224 Statistical Finance +1206.5699 +1206.5980 +1206.6204 Combinatorics +1207.0227 +1207.1064 Biological Physics +1207.1626 Soft Condensed Matter +1207.3483 Classical Analysis and ODEs +1207.5131 +1207.7125 Social and Information Networks +1208.2118 +1208.2407 Computational Physics +1208.2435 Representation Theory +1208.3359 Soft Condensed Matter +1208.6383 Theory +1208.6476 Group Theory +1209.0779 Earth and Planetary Astrophysics +1209.1884 +1209.5035 +1209.5957 Cosmology and Nongalactic Astrophysics +1210.0160 Information Theory +1210.0793 Earth and Planetary Astrophysics +1210.1191 Complex Variables +1210.1510 Analysis of PDEs +1210.1556 +1210.1687 Symplectic Geometry +1210.2078 Optimization and Control +1210.3537 Soft Condensed Matter +1210.5116 Complex Variables +1210.5922 +1210.6887 Theory +1210.7987 Phenomenology +1211.1165 +1211.1789 Superconductivity +1211.2283 Experiment +1211.3727 Theory +1211.4737 Mesoscale and Nanoscale Physics +1211.5114 +1211.5201 +1211.5584 Phenomenology +1211.5737 History and Overview +1211.6263 Numerical Analysis +1212.0195 +1212.2380 +1212.2958 Neural and Evolutionary Computing +1212.3484 Chemical Physics +1212.4046 Mesoscale and Nanoscale Physics +1212.4377 +1212.5776 Artificial Intelligence +1301.1263 Earth and Planetary Astrophysics +1301.2413 Superconductivity +1301.3536 Analysis of PDEs +1301.3647 Rings and Algebras +1301.5932 Phenomenology +1301.6082 Computational Physics +1301.6221 Earth and Planetary Astrophysics +1301.6410 Information Theory +1301.6578 Strongly Correlated Electrons +1301.7599 +1302.0738 Solar and Stellar Astrophysics +1302.1621 Probability +1302.1777 Information Theory +1302.3009 Combinatorics +1302.3967 Mesoscale and Nanoscale Physics +1302.4305 Phenomenology +1302.5086 Cosmology and Nongalactic Astrophysics +1302.5145 Social and Information Networks +1302.5227 Statistical Mechanics +1302.6010 Exactly Solvable and Integrable Systems +1302.6014 Algebraic Topology +1302.6172 Number Theory +1302.6599 Combinatorics +1302.6984 Numerical Analysis +1303.0356 Computer Science and Game Theory +1303.0578 +1303.0774 Optics +1303.0831 Rings and Algebras +1303.0832 General Physics +1303.0834 Cosmology and Nongalactic Astrophysics +1303.0837 High Energy Astrophysical Phenomena +1303.0848 Geometric Topology +1303.0854 Combinatorics +1303.0855 +1303.0859 Rings and Algebras +1303.0861 Social and Information Networks +1303.0862 Logic +1303.0866 Databases +1303.0867 Algebraic Geometry +1303.0875 Neurons and Cognition +1303.0887 +1303.0890 Information Theory +1303.0895 Algebraic Topology +1303.0898 Rings and Algebras +1303.0908 Programming Languages +1303.0910 Cryptography and Security +1303.0912 +1303.0915 Optics +1303.0918 Materials Science +1303.0920 Rings and Algebras +1303.0921 Superconductivity +1303.0923 +1303.0927 Numerical Analysis +1303.0929 Superconductivity +1303.0930 Cryptography and Security +1303.0934 Learning +1303.0935 Phenomenology +1303.0936 Group Theory +1303.0937 Probability +1303.0939 +1303.0940 Computational Physics +1303.0943 Information Theory +1303.0947 Quantum Gases +1303.0953 Pattern Formation and Solitons +1303.0954 +1303.0955 Logic +1303.0957 Analysis of PDEs +1303.0958 Phenomenology +1303.0963 Group Theory +1303.0964 Computer Vision and Pattern Recognition +1303.0966 Formal Languages and Automata Theory +1303.0967 Classical Analysis and ODEs +1303.0969 Formal Languages and Automata Theory +1303.0970 Social and Information Networks +1303.0972 Atomic Physics +1303.0975 Numerical Analysis +1303.0982 Complex Variables +1303.0983 Phenomenology +1303.0984 Group Theory +1303.0985 Biological Physics +1303.0986 Materials Science +1303.0990 Combinatorics +1303.0991 Combinatorics +1303.0992 Analysis of PDEs +1303.0995 Astrophysics of Galaxies +1303.0997 Functional Analysis +1303.1006 Software Engineering +1303.1007 Software Engineering +1303.1008 Software Engineering +1303.1009 Software Engineering +1303.1010 Software Engineering +1303.1011 Software Engineering +1303.1014 Optics +1303.1018 Neurons and Cognition +1303.1019 Numerical Analysis +1303.1021 Mesoscale and Nanoscale Physics +1303.1025 Analysis of PDEs +1303.1036 Classical Analysis and ODEs +1303.1039 Combinatorics +1303.1046 +1303.1048 Cryptography and Security +1303.1051 Neural and Evolutionary Computing +1303.1056 Metric Geometry +1303.1060 Analysis of PDEs +1303.1063 Geometric Topology +1303.1064 Portfolio Management +1303.1067 Mesoscale and Nanoscale Physics +1303.1070 Materials Science +1303.1071 +1303.1081 Dynamical Systems +1303.1085 Spectral Theory +1303.1089 High Energy Astrophysical Phenomena +1303.1090 Systems and Control +1303.1095 Information Theory +1303.1097 Probability +1303.1103 High Energy Astrophysical Phenomena +1303.1116 Commutative Algebra +1303.1117 Analysis of PDEs +1303.1118 +1303.1119 Networking and Internet Architecture +1303.1134 Pricing of Securities +1303.1142 Phenomenology +1303.1143 +1303.1144 Information Theory +1303.1159 Functional Analysis +1303.1163 Functional Analysis +1303.1165 +1303.1167 Analysis of PDEs +1303.1170 Applications +1303.1171 Classical Physics +astro-ph/9807310 +cond-mat/9908099 Mesoscale and Nanoscale Physics +0804.3165 +0805.1141 Chaotic Dynamics +0806.1818 Combinatorics +0806.3964 +0810.2863 Chaotic Dynamics +0906.4650 Mesoscale and Nanoscale Physics +0907.0490 Materials Science +1008.0421 Fluid Dynamics +1008.3145 Logic +1012.5087 Number Theory +1012.5437 Algebraic Geometry +1108.4206 Geometric Topology +1109.0699 Logic +1109.2064 +1109.6398 Number Theory +1111.2952 Category Theory +1112.1921 Solar and Stellar Astrophysics +1112.2324 Geometric Topology +1201.4239 Applications +1203.3048 Mesoscale and Nanoscale Physics +1203.4286 +1203.5649 K-Theory and Homology +1204.3362 Information Retrieval +1206.0402 Strongly Correlated Electrons +1206.6690 Combinatorics +1207.2428 Mesoscale and Nanoscale Physics +1207.4106 Statistical Mechanics +1207.5756 +1208.2781 +1208.3556 +1208.5648 Soft Condensed Matter +1209.1370 +1209.3340 Phenomenology +1209.6503 Statistics Theory +1210.3827 +1210.4989 Fluid Dynamics +1210.5526 Analysis of PDEs +1211.0552 Phenomenology +1211.1320 Phenomenology +1211.2698 Strongly Correlated Electrons +1211.4606 Populations and Evolution +1212.0062 Biological Physics +1212.5824 Cosmology and Nongalactic Astrophysics +1301.0800 Quantum Gases +1301.1144 Strongly Correlated Electrons +1301.7697 Statistical Mechanics +1302.0198 Quantum Gases +1302.0433 Strongly Correlated Electrons +1302.0983 Mesoscale and Nanoscale Physics +1302.4262 Atomic Physics +1302.6667 Quantitative Methods +1303.1443 Theory +1303.2390 Mesoscale and Nanoscale Physics +1303.3068 Statistical Mechanics +1303.3446 Differential Geometry +1303.4683 Information Theory +1303.4923 Functional Analysis +1303.6977 Machine Learning +1304.0555 +1304.1174 Mesoscale and Nanoscale Physics +1304.3214 Mesoscale and Nanoscale Physics +1304.3586 Optics +1304.3712 Cosmology and Nongalactic Astrophysics +1304.4486 Strongly Correlated Electrons +1304.4855 +1304.5042 +1304.5153 Systems and Control +1304.5912 Biological Physics +1304.6469 Superconductivity +1305.0257 +1305.1997 Phenomenology +1305.3221 Phenomenology +1305.3250 Computer Vision and Pattern Recognition +1305.4176 Astrophysics of Galaxies +1305.4274 Probability +1305.4871 +1305.5125 Mesoscale and Nanoscale Physics +1305.5630 Solar and Stellar Astrophysics +1306.0242 Combinatorics +1306.0463 Materials Science +1306.1886 Numerical Analysis +1306.2296 Physics and Society +1306.2908 Phenomenology +1306.2932 Combinatorics +1306.3692 Computation and Language +1306.4054 Mesoscale and Nanoscale Physics +1306.4272 Solar and Stellar Astrophysics +1306.4789 Earth and Planetary Astrophysics +1306.5319 Phenomenology +1306.5409 Theory +1306.6366 +1306.6405 General Physics +1306.6439 Combinatorics +1306.6529 High Energy Astrophysical Phenomena +1306.6548 Combinatorics +1306.6647 Solar and Stellar Astrophysics +1306.6649 Artificial Intelligence +1306.6655 Functional Analysis +1306.6656 Populations and Evolution +1306.6657 Logic in Computer Science +1306.6665 Disordered Systems and Neural Networks +1306.6666 Mesoscale and Nanoscale Physics +1306.6668 Combinatorics +1306.6670 Databases +1306.6671 Information Theory +1306.6672 Analysis of PDEs +1306.6673 Analysis of PDEs +1306.6674 Analysis of PDEs +1306.6678 Functional Analysis +1306.6679 Analysis of PDEs +1306.6681 Dynamical Systems +1306.6682 Operator Algebras +1306.6684 Computation +1306.6689 Mesoscale and Nanoscale Physics +1306.6697 Number Theory +1306.6703 Data Analysis, Statistics and Probability +1306.6705 Probability +1306.6706 Popular Physics +1306.6707 Geometric Topology +1306.6708 Algebraic Topology +1306.6711 Plasma Physics +1306.6713 Phenomenology +1306.6714 Probability +1306.6715 Risk Management +1306.6718 Chemical Physics +1306.6721 Cosmology and Nongalactic Astrophysics +1306.6726 Computer Vision and Pattern Recognition +1306.6728 Discrete Mathematics +1306.6729 Cryptography and Security +1306.6734 Databases +1306.6736 +1306.6737 Cryptography and Security +1306.6738 Instrumentation and Methods for Astrophysics +1306.6739 Numerical Analysis +1306.6744 Combinatorics +1306.6746 Probability +1306.6749 Symbolic Computation +1306.6752 Optics +1306.6755 Computation and Language +1306.6758 +1306.6760 Logic +1306.6763 Differential Geometry +1306.6764 Plasma Physics +1306.6765 Theory +1306.6766 Cosmology and Nongalactic Astrophysics +1306.6767 Number Theory +1306.6770 Probability +1306.6774 Plasma Physics +1306.6776 Plasma Physics +1306.6777 Plasma Physics +1306.6778 Plasma Physics +1306.6779 Instrumentation and Detectors +1306.6780 Mesoscale and Nanoscale Physics +1306.6781 Statistical Mechanics +1306.6782 Analysis of PDEs +1306.6789 Category Theory +1306.6793 Other Quantitative Biology +1306.6795 Astrophysics of Galaxies +1306.6799 Dynamical Systems +1306.6800 Differential Geometry +1306.6803 Mesoscale and Nanoscale Physics +1306.6804 Quantum Gases +1306.6805 Databases +1306.6807 Optimization and Control +1306.6808 Phenomenology +1306.6809 Classical Analysis and ODEs +1306.6810 Differential Geometry +1306.6811 Commutative Algebra +1306.6812 Social and Information Networks +1306.6819 Phenomenology +1306.6820 Commutative Algebra +1306.6822 Analysis of PDEs +1306.6823 Phenomenology +1306.6826 +1306.6827 Phenomenology +1306.6832 Classical Analysis and ODEs +1306.6833 High Energy Astrophysical Phenomena +1306.6834 Social and Information Networks +1306.6836 General Physics +1306.6837 Phenomenology +1306.6839 Cryptography and Security +1306.6840 Materials Science +1306.6842 Computer Vision and Pattern Recognition +1306.6846 +1306.6849 High Energy Astrophysical Phenomena +1306.6850 High Energy Astrophysical Phenomena +1306.6856 Programming Languages +1306.6858 Soft Condensed Matter +1306.6861 High Energy Astrophysical Phenomena +1306.6863 Plasma Physics +1306.6867 High Energy Astrophysical Phenomena +1306.6877 Earth and Planetary Astrophysics +1306.6878 Spectral Theory +1306.6880 Chaotic Dynamics +1306.6885 High Energy Astrophysical Phenomena +1306.6886 High Energy Astrophysical Phenomena +1306.6890 Astrophysics of Galaxies +1306.6891 General Physics +1306.6892 +1306.6895 Number Theory +1306.6897 Instrumentation and Methods for Astrophysics +1306.6900 Classical Analysis and ODEs +1306.6901 Number Theory +1306.6902 Numerical Analysis +1306.6908 Experiment +1306.6913 Materials Science +1306.6920 Multimedia +1306.6924 Information Theory +1306.6926 History and Overview +1306.6928 Methodology +1306.6929 Computer Science and Game Theory +1306.6930 Classical Analysis and ODEs +1306.6933 Solar and Stellar Astrophysics +1306.6940 Mesoscale and Nanoscale Physics +1306.6944 Computation and Language +0705.1595 Geometric Topology +0712.2505 Geometric Topology +0804.0645 Number Theory +0901.0152 Chemical Physics +0901.1744 Rings and Algebras +0903.4047 +0906.5573 Combinatorics +0910.0534 Strongly Correlated Electrons +1009.3624 Geometric Topology +1009.6009 Disordered Systems and Neural Networks +1012.2941 Analysis of PDEs +1102.5587 +1103.0079 +1106.0090 Numerical Analysis +1106.2191 +1108.5931 +1111.4179 Differential Geometry +1112.4335 +1112.6345 General Physics +1202.1261 Algebraic Geometry +1202.2967 K-Theory and Homology +1205.2517 Number Theory +1206.2824 Theory +1206.3538 Discrete Mathematics +1206.6081 Numerical Analysis +1207.0416 Theory +1207.3864 Dynamical Systems +1208.1017 Phenomenology +1209.1659 Representation Theory +1209.4149 +1210.0923 Combinatorics +1210.8334 +1211.0255 Dynamical Systems +1211.0876 Theory +1211.3995 +1211.4745 Mesoscale and Nanoscale Physics +1211.6320 Computational Complexity +1211.6382 +1211.6770 Cosmology and Nongalactic Astrophysics +1212.1185 Combinatorics +1212.2598 Classical Analysis and ODEs +1212.3658 Strongly Correlated Electrons +1212.5757 Plasma Physics +1212.5961 Combinatorics +1301.4779 Programming Languages +1301.5842 Data Structures and Algorithms +1301.5845 Phenomenology +1301.6502 Complex Variables +1302.1386 Combinatorics +1302.2730 Phenomenology +1302.3101 Social and Information Networks +1302.3539 Theory +1302.5553 +1302.6198 Theory +1302.7142 +1303.4146 Phenomenology +1303.4550 Cosmology and Nongalactic Astrophysics +1303.7279 Group Theory +1304.0304 +1304.2529 +1304.7080 Phenomenology +1304.8132 Data Structures and Algorithms +1305.1482 Strongly Correlated Electrons +1305.2843 Operator Algebras +1305.3867 +1305.5677 Phenomenology +1305.6271 Optimization and Control +1305.6576 +1306.0028 Number Theory +1306.2711 Quantum Gases +1306.3686 Superconductivity +1306.5266 Probability +1306.5909 Probability +1307.2505 Mesoscale and Nanoscale Physics +1307.2777 Mesoscale and Nanoscale Physics +1307.5728 Neurons and Cognition +1307.6968 Theory +1308.1886 Classical Analysis and ODEs +1308.2140 Social and Information Networks +1308.2153 Phenomenology +1308.2221 Cosmology and Nongalactic Astrophysics +1308.2411 Probability +1308.2650 +1308.3491 Cosmology and Nongalactic Astrophysics +1308.5727 Mesoscale and Nanoscale Physics +1308.5829 Phenomenology +1308.6351 Phenomenology +1309.0259 Combinatorics +1309.0704 Experiment +1309.2761 +1309.4018 Computational Physics +1309.4336 Analysis of PDEs +1309.5033 Biomolecules +1309.5321 Probability +1309.5612 High Energy Astrophysical Phenomena +1309.7275 Populations and Evolution +1310.3046 +1310.3240 Information Theory +1310.3800 Phenomenology +1310.6093 High Energy Astrophysical Phenomena +1310.7839 Information Theory +1310.8347 +1311.0189 Fluid Dynamics +1311.0950 Information Theory +1311.0983 Materials Science +1311.1019 +1311.1227 Solar and Stellar Astrophysics +1311.1490 Cryptography and Security +1311.1499 Solar and Stellar Astrophysics +1311.1500 Analysis of PDEs +1311.1512 Theory +1311.1524 History and Overview +1311.1527 +1311.1529 Cosmology and Nongalactic Astrophysics +1311.1532 Networking and Internet Architecture +1311.1533 +1311.1534 +1311.1535 Trading and Market Microstructure +1311.1539 Computation and Language +1311.1546 Rings and Algebras +1311.1547 Phenomenology +1311.1548 Materials Science +1311.1551 +1311.1555 Tissues and Organs +1311.1558 Combinatorics +1311.1560 Number Theory +1311.1561 Algebraic Geometry +1311.1566 +1311.1568 Optimization and Control +1311.1572 Materials Science +1311.1573 Commutative Algebra +1311.1585 Mesoscale and Nanoscale Physics +1311.1586 Optics +1311.1587 Other Computer Science +1311.1589 Complex Variables +1311.1592 Combinatorics +1311.1594 Combinatorics +1311.1596 Classical Analysis and ODEs +1311.1597 Exactly Solvable and Integrable Systems +1311.1602 Logic in Computer Science +1311.1608 +1311.1610 Computer Science and Game Theory +1311.1615 Solar and Stellar Astrophysics +1311.1618 Software Engineering +1311.1625 Algebraic Geometry +1311.1630 Computational Physics +1311.1641 Combinatorics +1311.1642 Numerical Analysis +1311.1644 Learning +1311.1648 Probability +1311.1650 Materials Science +1311.1651 Populations and Evolution +1311.1660 Algebraic Geometry +1311.1665 Number Theory +1311.1667 Hardware Architecture +1311.1670 Rings and Algebras +1311.1671 +1311.1672 +1311.1673 Differential Geometry +1311.1674 Plasma Physics +1311.1679 Number Theory +1311.1681 Lattice +1311.1682 Logic +1311.1684 Materials Science +1311.1687 Statistics Theory +1311.1688 Instrumentation and Detectors +1311.1689 Disordered Systems and Neural Networks +1311.1694 Computer Vision and Pattern Recognition +1311.1695 Numerical Analysis +1311.1698 Software Engineering +1311.1700 Multimedia +1311.1709 Number Theory +1311.1712 Information Theory +1311.1715 Portfolio Management +1311.1719 General Topology +1311.1722 Programming Languages +1311.1725 Physics Education +1311.1727 +1311.1729 Software Engineering +1311.1732 Analysis of PDEs +1311.1737 Analysis of PDEs +1311.1742 Superconductivity +1311.1749 Classical Physics +1311.1752 Analysis of PDEs +1311.1754 Analysis of PDEs +1311.1758 Mesoscale and Nanoscale Physics +1311.1761 Learning +1311.1762 Data Structures and Algorithms +1311.1764 Databases +1311.1765 Combinatorics +1311.1768 Experiment +1311.1770 Lattice +1311.1771 Geometric Topology +1311.1779 Algebraic Geometry +1311.1787 Quantum Algebra +1311.1788 Analysis of PDEs +1311.1798 +1311.1800 Algebraic Geometry +hep-ph/0511065 Phenomenology +math/0702476 Quantum Algebra +0901.4400 Algebraic Geometry +0904.2227 +0904.3294 Materials Science +0908.1358 Strongly Correlated Electrons +0911.4438 +0912.3863 Strongly Correlated Electrons +1001.4490 Differential Geometry +1006.0607 Algebraic Geometry +1009.3194 Differential Geometry +1010.0880 Exactly Solvable and Integrable Systems +1011.3965 +1101.2307 Analysis of PDEs +1103.1526 Trading and Market Microstructure +1105.3565 +1105.5419 Information Theory +1106.3837 +1107.1632 Group Theory +1107.2988 Portfolio Management +1107.3171 General Finance +1109.1316 Strongly Correlated Electrons +1109.6075 Probability +1110.4689 Number Theory +1111.4508 Strongly Correlated Electrons +1201.4058 Statistics Theory +1205.0618 Information Theory +1206.3212 +1207.2661 Instrumentation and Methods for Astrophysics +1207.2820 Group Theory +1207.5938 Statistics Theory +1207.6843 Strongly Correlated Electrons +1208.4863 Combinatorics +1208.6414 Disordered Systems and Neural Networks +1209.1280 Materials Science +1209.5942 Lattice +1210.0269 Number Theory +1210.0296 Analysis of PDEs +1210.1860 Materials Science +1210.2420 Dynamical Systems +1210.3292 Distributed, Parallel, and Cluster Computing +1211.4752 Numerical Analysis +1211.5166 Materials Science +1212.0944 Chemical Physics +1212.5105 Algebraic Geometry +1212.6932 +1301.0007 Trading and Market Microstructure +1301.2093 Methodology +1301.4381 Mesoscale and Nanoscale Physics +1302.0918 Strongly Correlated Electrons +1302.1145 Combinatorics +1302.1933 Mesoscale and Nanoscale Physics +1302.5074 Materials Science +1303.0899 Phenomenology +1303.0996 Statistical Mechanics +1303.3942 Strongly Correlated Electrons +1303.4427 Statistical Mechanics +1304.1585 +1304.2884 Cosmology and Nongalactic Astrophysics +1304.3643 Strongly Correlated Electrons +1304.3695 Atomic Physics +1304.4068 +1304.5628 +1304.6195 Mesoscale and Nanoscale Physics +1304.6316 Discrete Mathematics +1304.8099 +1305.0710 Representation Theory +1305.0798 +1305.1336 +1305.2787 Earth and Planetary Astrophysics +1305.3565 Optics +1305.4464 Cosmology and Nongalactic Astrophysics +1305.6183 +1305.6418 Strongly Correlated Electrons +1305.6449 Quantitative Methods +1305.6754 +1305.7505 Soft Condensed Matter +1306.0579 +1306.0682 Information Theory +1306.0787 Algebraic Geometry +1306.6160 Phenomenology +1306.6616 Phenomenology +1307.1035 Theory +1307.3933 +1307.5651 Theory +1307.6840 Phenomenology +1307.7167 Mesoscale and Nanoscale Physics +1307.7515 Superconductivity +1308.0277 Statistical Mechanics +1308.0875 Mesoscale and Nanoscale Physics +1308.1615 +1308.2095 Quantum Gases +1308.2583 Quantum Algebra +1308.2615 Materials Science +1308.3610 Phenomenology +1308.3858 Superconductivity +1308.4206 Methodology +1308.4714 Classical Physics +1308.5066 Superconductivity +1308.5218 Discrete Mathematics +1308.5381 Geometric Topology +1308.5618 Combinatorics +1308.5675 +1308.6570 Probability +1309.0234 Instrumentation and Detectors +1309.0818 +1309.1006 Materials Science +1309.1056 Materials Science +1309.1194 Machine Learning +1309.1204 Mathematical Software +1309.1273 Emerging Technologies +1309.1313 Phenomenology +1309.1351 Theory +1309.1363 Statistical Mechanics +1309.1365 Performance +1309.1463 Differential Geometry +1309.1479 Strongly Correlated Electrons +1309.1484 +1309.1489 Theory +1309.1490 +1309.1492 Statistical Finance +1309.1493 Chemical Physics +1309.1497 Number Theory +1309.1498 +1309.1499 Earth and Planetary Astrophysics +1309.1506 Number Theory +1309.1509 Instrumentation and Detectors +1309.1510 Classical Analysis and ODEs +1309.1513 Materials Science +1309.1515 Networking and Internet Architecture +1309.1517 Information Theory +1309.1519 Astrophysics of Galaxies +1309.1520 Earth and Planetary Astrophysics +1309.1521 Emerging Technologies +1309.1523 +1309.1526 Number Theory +1309.1527 Classical Analysis and ODEs +1309.1529 Analysis of PDEs +1309.1530 Representation Theory +1309.1532 High Energy Astrophysical Phenomena +1309.1535 Classical Analysis and ODEs +1309.1541 Learning +1309.1543 Learning +1309.1551 Probability +1309.1556 Databases +1309.1559 Data Structures and Algorithms +1309.1566 Probability +1309.1575 Logic +1309.1578 Probability +1309.1583 Representation Theory +1309.1584 Solar and Stellar Astrophysics +1309.1594 Dynamical Systems +1309.1595 Materials Science +1309.1601 Differential Geometry +1309.1605 Soft Condensed Matter +1309.1609 Physics and Society +1309.1610 Optimization and Control +1309.1611 Materials Science +1309.1613 Performance +1309.1615 Materials Science +1309.1616 Quantum Algebra +1309.1617 Numerical Analysis +1309.1621 Information Theory +1309.1623 Information Theory +1309.1625 Cryptography and Security +1309.1626 Soft Condensed Matter +1309.1630 Distributed, Parallel, and Cluster Computing +1309.1631 Combinatorics +1309.1645 Data Structures and Algorithms +1309.1650 High Energy Astrophysical Phenomena +1309.1651 Quantum Algebra +1309.1652 Pattern Formation and Solitons +1309.1664 +1309.1669 Solar and Stellar Astrophysics +1309.1677 Cryptography and Security +1309.1678 Geometric Topology +1309.1682 Atmospheric and Oceanic Physics +1309.1684 High Energy Astrophysical Phenomena +1309.1685 +1309.1686 Operator Algebras +1309.1688 Phenomenology +1309.1691 High Energy Astrophysical Phenomena +1309.1694 Analysis of PDEs +1309.1697 Numerical Analysis +1309.1700 Computer Science and Game Theory +1309.1706 Superconductivity +1309.1712 Analysis of PDEs +1309.1714 Operating Systems +1309.1718 High Energy Astrophysical Phenomena +1309.1725 Dynamical Systems +1309.1726 Number Theory +1309.1728 Fluid Dynamics +1309.1729 Mesoscale and Nanoscale Physics +1309.1732 Data Structures and Algorithms +1309.1740 Instrumentation and Detectors +1309.1741 Popular Physics +1309.1742 Tissues and Organs +1309.1743 Phenomenology +1309.1747 Social and Information Networks +1309.1751 Spectral Theory +nlin/0602001 Exactly Solvable and Integrable Systems +nlin/0606055 Exactly Solvable and Integrable Systems +1307.1011 Quantum Algebra +0809.2161 Category Theory +0712.3247 Materials Science +0804.1903 Materials Science +0809.0246 Analysis of PDEs +0901.2969 Materials Science +0901.2973 Materials Science +0904.0707 Probability +1003.3409 Optimization and Control +1007.1296 Algebraic Geometry +1007.2584 +1011.2731 Analysis of PDEs +1102.0178 Materials Science +1107.1249 Representation Theory +1107.2205 Methodology +1107.3136 Analysis of PDEs +1108.2582 Materials Science +1108.5069 Superconductivity +1109.6214 Dynamical Systems +1112.1169 Phenomenology +1112.3252 +1112.6140 Computer Science and Game Theory +1201.0632 Dynamical Systems +1201.4568 Number Theory +1201.5874 Strongly Correlated Electrons +1202.6590 Computation +1203.0957 Quantum Algebra +1204.3041 Classical Analysis and ODEs +1205.2187 +1205.3024 Algebraic Topology +1206.0353 Cosmology and Nongalactic Astrophysics +1208.6401 Optimization and Control +1210.3485 Phenomenology +1210.5727 Number Theory +1210.7207 +1211.3386 Functional Analysis +1212.2679 Strongly Correlated Electrons +1212.3587 Methodology +1212.5749 General Topology +1301.1653 General Physics +1301.2050 Probability +1301.2325 Theory +1301.4540 Optimization and Control +1302.1604 +1302.2172 +1302.3331 Phenomenology +1303.3666 Populations and Evolution +1303.6357 +1303.6929 Phenomenology +1303.7204 Lattice +1304.0991 Dynamical Systems +1304.1151 Phenomenology +1304.1613 Strongly Correlated Electrons +1304.1998 Optimization and Control +1304.4843 Analysis of PDEs +1304.6170 Experiment +1304.7725 +1304.7740 Statistical Mechanics +1305.0186 Astrophysics of Galaxies +1305.0470 Dynamical Systems +1305.2714 Information Theory +1305.2975 Lattice +1305.5426 Superconductivity +1305.5577 Mesoscale and Nanoscale Physics +1305.6117 Phenomenology +1305.6427 Mesoscale and Nanoscale Physics +1306.0325 Statistics Theory +1306.0370 +1306.1161 +1306.1688 Other Condensed Matter +1306.1995 Phenomenology +1306.2301 +1306.2685 Machine Learning +1306.2713 +1306.5141 Disordered Systems and Neural Networks +1306.6384 Earth and Planetary Astrophysics +1307.2306 Differential Geometry +1307.3698 +1307.4185 Mesoscale and Nanoscale Physics +1307.7262 Atomic Physics +1308.0276 Theory +1308.0977 Physics Education +1308.1239 Materials Science +1308.1942 Soft Condensed Matter +1308.2141 Strongly Correlated Electrons +1308.3408 Algebraic Geometry +1308.4306 +1308.4343 +1308.4507 Strongly Correlated Electrons +1308.4536 Mesoscale and Nanoscale Physics +1308.5319 Mesoscale and Nanoscale Physics +1308.5776 Probability +1308.5823 Superconductivity +1309.1090 +1309.2013 Strongly Correlated Electrons +1309.2996 Theory +1309.3157 Optics +1309.3312 Populations and Evolution +1309.3691 Differential Geometry +1309.5338 +1309.5536 +1309.5602 Soft Condensed Matter +1310.0569 Cryptography and Security +1310.1218 Optics +1310.1271 +1310.1464 Materials Science +1310.1980 Earth and Planetary Astrophysics +1310.2077 +1310.2100 Soft Condensed Matter +1310.2768 Algebraic Topology +1310.2772 Theory +1310.2983 Optics +1310.3066 Algebraic Topology +1310.4007 Phenomenology +1310.5334 Theory +1310.5337 Theory +1310.5395 Differential Geometry +1310.5771 Earth and Planetary Astrophysics +1310.6446 +1310.7776 +1311.0154 +1311.0367 Analysis of PDEs +1311.1012 Lattice +1311.1014 Materials Science +1311.1161 Number Theory +1311.1699 +1311.1797 Applications +1311.2243 Materials Science +1311.2370 Phenomenology +1311.2676 Lattice +1311.2885 Strongly Correlated Electrons +1311.3000 +1311.3013 Logic +1311.3076 Computer Vision and Pattern Recognition +1311.3088 Computer Science and Game Theory +1311.3188 K-Theory and Homology +1311.3293 Programming Languages +1311.3299 Strongly Correlated Electrons +1311.3310 Instrumentation and Detectors +1311.3312 Databases +1311.3318 Computer Vision and Pattern Recognition +1311.3319 Other Computer Science +1311.3322 Operating Systems +1311.3323 Combinatorics +1311.3329 Analysis of PDEs +1311.3332 Combinatorics +1311.3333 Lattice +1311.3334 Analysis of PDEs +1311.3336 Networking and Internet Architecture +1311.3339 K-Theory and Homology +1311.3346 Solar and Stellar Astrophysics +1311.3348 Networking and Internet Architecture +1311.3350 Methodology +1311.3351 Strongly Correlated Electrons +1311.3355 Artificial Intelligence +1311.3356 Phenomenology +1311.3358 Numerical Analysis +1311.3362 Group Theory +1311.3367 Differential Geometry +1311.3368 Machine Learning +1311.3370 Experiment +1311.3373 Superconductivity +1311.3382 Materials Science +1311.3386 Exactly Solvable and Integrable Systems +1311.3392 +1311.3394 Social and Information Networks +1311.3397 Accelerator Physics +1311.3399 Complex Variables +1311.3402 Materials Science +1311.3403 +1311.3404 Phenomenology +1311.3407 Materials Science +1311.3409 Probability +1311.3410 Materials Science +1311.3414 Software Engineering +1311.3415 Materials Science +1311.3423 Soft Condensed Matter +1311.3426 +1311.3429 Fluid Dynamics +1311.3437 +1311.3440 Chemical Physics +1311.3443 Analysis of PDEs +1311.3444 Astrophysics of Galaxies +1311.3447 Materials Science +1311.3451 Category Theory +1311.3452 Materials Science +1311.3454 Analysis of PDEs +1311.3456 Analysis of PDEs +1311.3459 Analysis of PDEs +1311.3463 +1311.3465 Lattice +1311.3469 Number Theory +1311.3473 Classical Analysis and ODEs +1311.3474 Analysis of PDEs +1311.3475 Physics and Society +1311.3480 Materials Science +1311.3483 Networking and Internet Architecture +1311.3484 Solar and Stellar Astrophysics +1311.3485 Information Theory +1311.3487 Lattice +1311.3488 Metric Geometry +1311.3490 Geometric Topology +1311.3491 Geometric Topology +1311.3492 Machine Learning +1311.3495 +1311.3496 Experiment +1311.3506 Group Theory +1311.3508 Social and Information Networks +1311.3511 Geometric Topology +1311.3513 Lattice +1311.3514 Classical Analysis and ODEs +1311.3515 Systems and Control +1311.3517 Geometric Topology +1311.3518 Geometric Topology +1311.3520 Dynamical Systems +1311.3522 Number Theory +1311.3525 Algebraic Geometry +1311.3528 +1311.3530 Logic in Computer Science +1311.3534 Information Theory +1311.3543 Combinatorics +1311.3546 Logic +1311.3548 Other Computer Science +1311.3549 Analysis of PDEs +1311.3555 Materials Science +1311.3556 Materials Science +1311.3557 Materials Science +1311.3558 Materials Science +1311.3560 Materials Science +1311.3561 +1311.3562 Other Computer Science +1311.3565 Number Theory +1311.3566 Information Theory +1311.3567 Chaotic Dynamics +1311.3577 Atomic Physics +1311.3582 Functional Analysis +1311.3583 Phenomenology +1311.3590 Cellular Automata and Lattice Gases +1311.3593 Analysis of PDEs +1311.3596 Systems and Control +1311.3602 General Physics +1311.3608 Materials Science +1311.3609 Phenomenology +1311.3610 +1311.3611 Materials Science +1311.3613 Information Theory +1311.3620 Analysis of PDEs +1311.3621 Phenomenology +1311.3622 Physics Education +1311.3626 Software Engineering +1311.3627 Software Engineering +1311.3628 Software Engineering +1311.3629 Software Engineering +1311.3630 Software Engineering +1311.3631 Software Engineering +1311.3632 Software Engineering +1311.3634 Phenomenology +1311.3638 Networking and Internet Architecture +1311.3642 Analysis of PDEs +1311.3643 Lattice +1311.3647 Lattice +1311.3649 Analysis of PDEs +1311.3657 Differential Geometry +1311.3658 Geometric Topology +cond-mat/0002450 Materials Science +cond-mat/0007502 Materials Science +cond-mat/0401208 Statistical Mechanics +cs/0601014 Logic in Computer Science +hep-th/0702160 Theory +math/0008185 Geometric Topology +math/0106008 Analysis of PDEs +math/0401395 Analysis of PDEs +math/9910118 Algebraic Geometry +quant-ph/0311022 +0708.0946 Classical Analysis and ODEs +0804.0959 Group Theory +0805.2209 +0903.5067 Soft Condensed Matter +0905.3815 Mesoscale and Nanoscale Physics +0908.2577 Group Theory +1003.1903 Symplectic Geometry +1005.4434 Algebraic Geometry +1008.4195 Number Theory +1009.6150 Soft Condensed Matter +1012.1914 Group Theory +1102.1936 Strongly Correlated Electrons +1104.3778 Classical Analysis and ODEs +1104.5303 Number Theory +1105.5909 +1107.3604 Algebraic Geometry +1108.5654 Phenomenology +1110.0091 Functional Analysis +1111.2340 Quantum Gases +1112.1986 +1201.3946 Geometric Topology +1202.2779 +1202.6470 Differential Geometry +1203.1572 Combinatorics +1203.2884 Atomic Physics +1203.5192 High Energy Astrophysical Phenomena +1205.4953 Atomic Physics +1206.5120 Computer Science and Game Theory +1207.6299 Algebraic Geometry +1207.7133 K-Theory and Homology +1209.1189 Number Theory +1209.3102 Numerical Analysis +1209.3391 Operator Algebras +1209.5313 Combinatorics +1209.5384 +1209.5385 +1210.0378 +1211.2400 Methodology +1212.0010 High Energy Astrophysical Phenomena +1212.4052 Materials Science +1212.5883 Number Theory +1301.1876 Subcellular Processes +1301.1928 Algebraic Geometry +1301.5008 Strongly Correlated Electrons +1301.6602 History and Overview +1301.6654 Optics +1301.7651 Number Theory +1302.0336 Statistics Theory +1302.1926 +1302.3240 +1302.4618 Functional Analysis +1302.4646 +1302.4661 Functional Analysis +1302.5730 Biological Physics +1302.5805 Disordered Systems and Neural Networks +1302.5964 Neurons and Cognition +1302.6597 Number Theory +1303.0100 Theory +1303.0803 Mesoscale and Nanoscale Physics +1303.2582 Soft Condensed Matter +1303.6184 Superconductivity +1304.0602 Materials Science +1304.1723 Dynamical Systems +1304.2206 Theory +1304.3723 Strongly Correlated Electrons +1304.3953 +1304.5486 Populations and Evolution +1304.5842 Metric Geometry +1304.6640 Analysis of PDEs +1304.6660 Analysis of PDEs +1304.6938 Theory +1304.7609 +1305.0844 Superconductivity +1305.1458 Atomic Physics +1305.2495 K-Theory and Homology +1305.3708 Quantum Gases +1305.3808 Optics +1305.5144 Theory +1305.5201 +1305.6300 Superconductivity +1305.6733 +1305.6937 Statistical Mechanics +1306.1205 Theory +1306.1472 +1306.3385 Representation Theory +1306.3501 Phenomenology +1306.4933 Methodology +1306.5174 Superconductivity +1307.0512 Mesoscale and Nanoscale Physics +1307.0568 Cosmology and Nongalactic Astrophysics +1307.1608 Superconductivity +1307.1620 Chemical Physics +1307.1822 Earth and Planetary Astrophysics +1307.1889 +1307.2234 Theory +1307.2382 Superconductivity +1307.3214 Computation +1307.3432 Mesoscale and Nanoscale Physics +1307.4327 Populations and Evolution +1307.4801 Information Theory +1307.5222 +1307.5292 Classical Physics +1307.7540 Optics +1307.7582 Strongly Correlated Electrons +1307.7773 Theory +1307.7952 Probability +1308.1370 Theory +1308.1780 Logic in Computer Science +1308.2109 Soft Condensed Matter +1308.2813 Phenomenology +1308.3049 +1308.3170 Soft Condensed Matter +1308.4925 Cosmology and Nongalactic Astrophysics +1309.0052 Performance +1309.1017 Strongly Correlated Electrons +1309.5333 Computational Engineering, Finance, and Science +1309.5709 Fluid Dynamics +1309.7099 Digital Libraries +1309.7100 Superconductivity +1309.7281 +1310.0499 Probability +1310.1164 Combinatorics +1310.2994 Distributed, Parallel, and Cluster Computing +1310.3022 Superconductivity +1310.3049 Cryptography and Security +1310.3269 Earth and Planetary Astrophysics +1310.3338 +1310.3397 Portfolio Management +1310.3433 Fluid Dynamics +1310.3466 Phenomenology +1310.3550 Optics +1310.3816 Complex Variables +1310.3818 Fluid Dynamics +1310.3825 Phenomenology +1310.3833 Cosmology and Nongalactic Astrophysics +1310.3835 Chemical Physics +1310.3845 Algebraic Geometry +1310.3847 Fluid Dynamics +1310.3848 Geometric Topology +1310.3849 Human-Computer Interaction +1310.3850 Human-Computer Interaction +1310.3851 Earth and Planetary Astrophysics +1310.3859 Instrumentation and Methods for Astrophysics +1310.3865 Classical Analysis and ODEs +1310.3871 Geometric Topology +1310.3873 Analysis of PDEs +1310.3875 Multiagent Systems +1310.3882 Soft Condensed Matter +1310.3888 Combinatorics +1310.3891 Experiment +1310.3896 Analysis of PDEs +1310.3898 +1310.3900 Accelerator Physics +1310.3905 Soft Condensed Matter +1310.3915 Materials Science +1310.3919 Populations and Evolution +1310.3924 +1310.3926 Numerical Analysis +1310.3939 Databases +1310.3940 Representation Theory +1310.3945 Formal Languages and Automata Theory +1310.3946 Information Theory +1310.3952 +1310.3954 Information Theory +1310.3955 Analysis of PDEs +1310.3959 Numerical Analysis +1310.3966 +1310.3970 Information Theory +1310.3971 Logic in Computer Science +1310.3972 Phenomenology +1310.3973 Systems and Control +1310.3975 Information Theory +1310.3981 Commutative Algebra +1310.3982 Commutative Algebra +1310.3986 Numerical Analysis +1310.3990 Distributed, Parallel, and Cluster Computing +1310.3992 Combinatorics +1310.3995 Differential Geometry +1310.3996 Probability +1310.4000 Cryptography and Security +1310.4002 +1310.4005 Probability +1310.4008 Differential Geometry +1310.4009 Cosmology and Nongalactic Astrophysics +1310.4010 Neurons and Cognition +1310.4013 Computational Physics +1310.4016 Representation Theory +1310.4017 Disordered Systems and Neural Networks +1310.4019 Programming Languages +1310.4028 Analysis of PDEs +1310.4030 Dynamical Systems +1310.4031 Differential Geometry +1310.4032 Dynamical Systems +1310.4036 Metric Geometry +1310.4037 High Energy Astrophysical Phenomena +1310.4038 Networking and Internet Architecture +1310.4039 Phenomenology +1310.4040 Algebraic Geometry +1310.4041 Probability +1310.4042 Logic +1310.4046 Numerical Analysis +1310.4052 Networking and Internet Architecture +1310.4053 Astrophysics of Galaxies +1310.4058 Biomolecules +1310.4059 High Energy Astrophysical Phenomena +1310.4060 Information Theory +1310.4062 Dynamical Systems +1310.4063 Algebraic Geometry +1310.4064 Analysis of PDEs +1310.4066 Methodology +1310.4072 Solar and Stellar Astrophysics +1310.4076 +1310.4077 Plasma Physics +1310.4083 Representation Theory +1310.4084 Analysis of PDEs +1310.4086 Artificial Intelligence +1310.4089 Mesoscale and Nanoscale Physics +1310.4092 Instrumentation and Methods for Astrophysics +1310.4098 Computer Science and Game Theory +1310.4102 Fluid Dynamics +1310.4104 Materials Science +1310.4106 Logic in Computer Science +1310.4109 Experiment +1310.4110 Analysis of PDEs +1310.4114 Number Theory +1310.4120 +1310.4123 K-Theory and Homology +1310.4128 Symbolic Computation +1310.4132 Statistics Theory +1310.4134 Optics +1310.4136 Distributed, Parallel, and Cluster Computing +1310.4146 Experiment +1310.4147 Cosmology and Nongalactic Astrophysics +1310.4149 Information Theory +1310.4161 Differential Geometry +1310.4164 Statistics Theory +1310.4166 Physics and Society +1310.4168 Robotics +cs/0412102 Computational Complexity +math/0101188 Classical Analysis and ODEs +math/0512320 Geometric Topology +math/0603282 Symplectic Geometry +math/0609094 Classical Analysis and ODEs +math/9307215 Classical Analysis and ODEs +math/9307220 Classical Analysis and ODEs +nlin/0502011 Chaotic Dynamics +quant-ph/0611234 +0705.1442 Computational Complexity +0705.1627 +0706.0631 Superconductivity +0710.5041 Differential Geometry +0712.1257 Other Condensed Matter +0807.0064 +0903.3003 General Physics +0909.3639 Group Theory +0910.1610 Commutative Algebra +1002.1134 Phenomenology +1002.3966 Cosmology and Nongalactic Astrophysics +1004.0840 Commutative Algebra +1004.1238 Mesoscale and Nanoscale Physics +1006.0971 Statistics Theory +1009.1316 Metric Geometry +1009.4089 Lattice +1010.5432 Mesoscale and Nanoscale Physics +1011.3443 Numerical Analysis +1012.4193 Quantum Algebra +1012.4259 Operator Algebras +1012.5245 Exactly Solvable and Integrable Systems +1012.5708 Differential Geometry +1101.5113 General Physics +1103.3695 Functional Analysis +1103.4048 +1104.0091 +1105.3038 Representation Theory +1105.5418 Statistical Mechanics +1106.4292 +1107.1495 General Topology +1108.3803 +1109.2586 Classical Physics +1110.0675 General Physics +1110.1264 Rings and Algebras +1110.6328 Quantum Gases +1111.0519 Probability +1111.0537 Statistics Theory +1111.0577 Group Theory +1111.1285 Analysis of PDEs +1111.1407 Probability +1111.3308 Statistics Theory +1112.3563 +1201.0477 +1201.6003 +1202.1263 Analysis of PDEs +1202.2137 +1202.4230 Statistical Mechanics +1203.0575 Optics +1203.4492 Mesoscale and Nanoscale Physics +1204.0600 Popular Physics +1204.5322 +1204.5875 Analysis of PDEs +1204.5993 Differential Geometry +1205.0338 Superconductivity +1205.2490 +1205.2713 Popular Physics +1205.2935 Representation Theory +1205.4220 Multiagent Systems +1205.4591 Methodology +1205.5426 Number Theory +1205.5983 Representation Theory +1205.6755 +1206.5081 Classical Analysis and ODEs +1206.5082 Combinatorics +1207.4018 Analysis of PDEs +1208.0538 Rings and Algebras +1208.1534 +1208.3310 Representation Theory +1208.3456 Phenomenology +1208.5962 Number Theory +1208.6249 +1209.3641 +1209.5653 Representation Theory +1209.5681 Chaotic Dynamics +1209.5847 +1209.6403 Phenomenology +1210.0024 Quantitative Methods +1210.1207 Robotics +1210.1700 +1210.2489 Statistics Theory +1210.3053 Cosmology and Nongalactic Astrophysics +1210.3216 +1210.3338 Cosmology and Nongalactic Astrophysics +1210.3493 Analysis of PDEs +1210.3825 Theory +1210.4068 Algebraic Topology +1210.5319 Algebraic Topology +1210.5715 Phenomenology +1210.6183 Geometric Topology +1210.6332 Solar and Stellar Astrophysics +1210.6621 Computers and Society +1210.7681 Cosmology and Nongalactic Astrophysics +1210.8173 +1211.0529 Quantum Algebra +1211.0889 Machine Learning +1211.1003 Experiment +1211.1644 Strongly Correlated Electrons +1211.2058 Algebraic Geometry +1211.3207 Group Theory +1211.3248 Combinatorics +1211.3923 +1211.4012 Chaotic Dynamics +1211.5360 Instrumentation and Detectors +1211.5579 Statistics Theory +1211.5939 +1211.6932 Computational Physics +1211.7154 Soft Condensed Matter +1212.0384 +1212.0557 Strongly Correlated Electrons +1212.0937 Mesoscale and Nanoscale Physics +1212.1855 +1212.2278 Computer Vision and Pattern Recognition +1212.2867 Analysis of PDEs +1212.2911 Quantum Gases +1212.2945 +1212.3134 Functional Analysis +1212.3636 +1212.3805 Phenomenology +1212.4148 Phenomenology +1212.5741 Fluid Dynamics +1301.0488 Representation Theory +1301.1691 Quantum Gases +1301.1985 Materials Science +1301.5612 Symbolic Computation +1301.6568 Combinatorics +1301.7354 +1301.7469 Phenomenology +1302.0079 Phenomenology +1302.0766 Cosmology and Nongalactic Astrophysics +1302.1175 Functional Analysis +1302.1217 Analysis of PDEs +1302.1700 Computer Vision and Pattern Recognition +1302.1953 +1302.3056 Cosmology and Nongalactic Astrophysics +1302.3062 Strongly Correlated Electrons +1302.3893 Strongly Correlated Electrons +1302.4104 Materials Science +1302.4354 Astrophysics of Galaxies +1302.4397 Strongly Correlated Electrons +1302.4614 Theory +1302.4887 Statistics Theory +1302.5202 Statistics Theory +1302.5623 Mesoscale and Nanoscale Physics +1302.5911 Solar and Stellar Astrophysics +1302.6482 Combinatorics +1302.6723 +1302.7218 +1303.0617 Chemical Physics +1303.0864 Earth and Planetary Astrophysics +1303.1245 Mesoscale and Nanoscale Physics +1303.1651 Performance +1303.1854 Analysis of PDEs +1303.2717 Optics +1303.4259 Mesoscale and Nanoscale Physics +1303.6306 Computational Physics +1303.6340 Pricing of Securities +1303.6968 High Energy Astrophysical Phenomena +1303.7225 Physics and Society +1303.7239 Cosmology and Nongalactic Astrophysics +1303.7290 Mesoscale and Nanoscale Physics +1304.0691 Chemical Physics +1304.1953 High Energy Astrophysical Phenomena +1304.2304 Solar and Stellar Astrophysics +1304.2455 Strongly Correlated Electrons +1304.3764 Accelerator Physics +1304.3955 Logic +1304.3964 Optimization and Control +1304.4565 Analysis of PDEs +1304.4981 +1304.5235 +1304.6003 Representation Theory +1304.6138 +1304.6345 K-Theory and Homology +1304.6834 Astrophysics of Galaxies +1304.6894 Optimization and Control +1304.6956 Geometric Topology +1304.7346 Software Engineering +1304.7395 Experiment +1304.7685 Number Theory +1304.7820 Social and Information Networks +1305.0039 +1305.0121 Materials Science +1305.0303 Analysis of PDEs +1305.0312 High Energy Astrophysical Phenomena +1305.0386 Soft Condensed Matter +1305.0392 Number Theory +1305.0489 Algebraic Geometry +1305.0552 Physics and Society +1305.0593 Accelerator Physics +1305.0687 +1305.0690 Statistical Mechanics +1305.0762 Dynamical Systems +1305.0832 General Topology +1305.0837 Analysis of PDEs +1305.0839 Probability +1305.0840 Commutative Algebra +1305.0841 Theory +1305.0853 Optimization and Control +1305.0854 Cryptography and Security +1305.0855 Machine Learning +1305.0859 Instrumentation and Detectors +1305.0860 Information Theory +1305.0861 +1305.0863 Plasma Physics +1305.0864 Complex Variables +1305.0865 History and Overview +1305.0872 Differential Geometry +1305.0876 Cryptography and Security +1305.0881 History and Philosophy of Physics +1305.0891 Rings and Algebras +1305.0896 Networking and Internet Architecture +1305.0897 Soft Condensed Matter +1305.0898 Materials Science +1305.0900 Social and Information Networks +1305.0903 Instrumentation and Detectors +1305.0904 Social and Information Networks +1305.0905 Analysis of PDEs +1305.0906 Mesoscale and Nanoscale Physics +1305.0907 Networking and Internet Architecture +1305.0908 Mesoscale and Nanoscale Physics +1305.0909 Information Theory +1305.0910 Mesoscale and Nanoscale Physics +1305.0913 Mesoscale and Nanoscale Physics +1305.0914 Optimization and Control +1305.0916 Quantitative Methods +1305.0918 Information Theory +1305.0919 Analysis of PDEs +1305.0920 Phenomenology +1305.0921 Analysis of PDEs +1305.0922 Neural and Evolutionary Computing +1305.0923 Probability +1305.0929 Chemical Physics +1305.0933 Statistical Mechanics +1305.0936 Software Engineering +1305.0939 Information Retrieval +1305.0941 Number Theory +1305.0943 Computer Science and Game Theory +1305.0952 +1305.0955 Analysis of PDEs +1305.0956 Group Theory +1305.0958 Networking and Internet Architecture +1305.0964 Optics +1305.0969 Cellular Automata and Lattice Gases +1305.0987 Representation Theory +1305.0988 Optics +1305.0992 Optimization and Control +1305.1000 +1305.1002 Learning +1305.1003 Analysis of PDEs +1305.1005 +1305.1006 Phenomenology +1305.1010 Computer Science and Game Theory +1305.1018 Algebraic Geometry +1305.1021 +1305.1024 Algebraic Geometry +1305.1025 Functional Analysis +1305.1026 Algebraic Geometry +1305.1040 Machine Learning +1305.1046 +1305.1051 +1305.1052 Computer Vision and Pattern Recognition +1305.1059 Numerical Analysis +1305.1060 Artificial Intelligence +1305.1062 Dynamical Systems +1305.1068 Accelerator Physics +1305.1070 Numerical Analysis +1305.1072 Combinatorics +1305.1074 Number Theory +1305.1075 Number Theory +1305.1080 Operator Algebras +1305.1082 Information Theory +1305.1084 Numerical Analysis +1305.1086 Superconductivity +1305.1091 Information Theory +1305.1101 Accelerator Physics +1305.1106 Numerical Analysis +1305.1109 Dynamical Systems +1305.1111 Differential Geometry +1305.1112 Computational Engineering, Finance, and Science +1305.1114 Information Retrieval +1305.1116 Superconductivity +1305.1118 Statistics Theory +1305.1120 Physics and Society +1305.1121 Distributed, Parallel, and Cluster Computing +1305.1122 +1305.1124 Strongly Correlated Electrons +1305.1125 Optimization and Control +1305.1127 Functional Analysis +1305.1128 Analysis of PDEs +1305.1129 Analysis of PDEs +1305.1132 Solar and Stellar Astrophysics +1305.1133 Analysis of PDEs +1305.1136 Differential Geometry +1305.1137 Methodology +1305.1139 Combinatorics +1305.1141 Sound +1305.1143 Commutative Algebra +1305.1144 Functional Analysis +1305.1145 Sound +1305.1146 Cryptography and Security +1305.1152 Populations and Evolution +1305.1156 Mesoscale and Nanoscale Physics +1305.1157 Data Structures and Algorithms +1305.1161 Superconductivity +1305.1163 Computer Vision and Pattern Recognition +1305.1165 Algebraic Topology +1305.1166 Mesoscale and Nanoscale Physics +1305.1167 Statistical Mechanics +1305.1169 Artificial Intelligence +1305.1172 Computational Geometry +1305.1173 Classical Analysis and ODEs +1305.1174 Rings and Algebras +1305.1178 Algebraic Topology +1305.1193 Information Theory +1305.1200 Number Theory +1305.1206 Computer Vision and Pattern Recognition +1305.1207 Probability +1305.1208 Probability +1305.1211 Probability +1305.1215 Algebraic Geometry +1305.1219 Algebraic Geometry +1305.1221 Information Theory +1305.1228 +1305.1230 Information Theory +1305.1231 Molecular Networks +1305.1232 Computation +1305.1235 Phenomenology +1305.1249 Chaotic Dynamics +1305.1255 Atmospheric and Oceanic Physics +1305.1259 Networking and Internet Architecture +1305.1260 Rings and Algebras +1305.1262 +1305.1264 +1305.1268 Optimization and Control +1305.1269 Superconductivity +1305.1270 Cryptography and Security +1305.1272 Materials Science +1305.1282 Materials Science +1305.1285 +1305.1286 Genomics +1305.1289 Probability +gr-qc/0409054 +quant-ph/0604064 +1001.1953 Symplectic Geometry +1003.5603 Quantum Algebra +1009.0732 Category Theory +1010.5606 Theory +1011.2867 Solar and Stellar Astrophysics +1011.5261 +1101.0064 +1101.0973 Data Analysis, Statistics and Probability +1102.1652 Dynamical Systems +1103.5528 Algebraic Topology +1104.4645 Number Theory +1104.5581 Algebraic Geometry +1105.5095 Mesoscale and Nanoscale Physics +1107.4082 +1108.5957 Rings and Algebras +1109.0003 Cosmology and Nongalactic Astrophysics +1109.1528 Computer Science and Game Theory +1109.3304 Functional Analysis +1110.0652 Category Theory +1110.3028 Algebraic Geometry +1110.3567 Algebraic Topology +1110.3571 Algebraic Topology +1112.0875 +1202.3621 Dynamical Systems +1203.2152 Functional Analysis +1203.6768 Functional Analysis +1205.1020 Statistical Mechanics +1205.1933 Spectral Theory +1205.2163 Quantum Algebra +1205.2848 Instrumentation and Detectors +1207.1939 Soft Condensed Matter +1207.5007 Computer Vision and Pattern Recognition +1207.5081 Phenomenology +1207.6070 Biological Physics +1208.6241 Cosmology and Nongalactic Astrophysics +1209.0241 Superconductivity +1209.0409 Instrumentation and Detectors +1209.1061 +1209.1290 Combinatorics +1209.1667 Representation Theory +1209.5164 Numerical Analysis +1210.2104 Chaotic Dynamics +1210.5323 Information Theory +1210.6937 Algebraic Geometry +1211.0437 Methodology +1211.4681 Superconductivity +1211.5332 Lattice +1212.0351 Strongly Correlated Electrons +1212.0621 Neurons and Cognition +1212.1018 Quantum Algebra +1212.2210 Theory +1212.2895 Atomic Physics +1212.3002 Quantum Gases +1212.5279 Quantum Algebra +1212.5817 General Physics +1301.2680 Soft Condensed Matter +1301.3683 Optimization and Control +1301.4165 Theory +1301.5288 Machine Learning +1301.6342 Superconductivity +1301.6500 +1301.7441 Mesoscale and Nanoscale Physics +1301.7593 Phenomenology +1302.0462 +1302.1091 Optics +1302.1426 Phenomenology +1302.2500 Biological Physics +1302.4368 +1302.4663 Superconductivity +1302.5934 +1302.6891 Soft Condensed Matter +1303.0022 Lattice +1303.0677 Statistical Mechanics +1303.1562 Fluid Dynamics +1303.2482 Instrumentation and Detectors +1304.1779 Probability +1304.1805 High Energy Astrophysical Phenomena +1304.2659 +1304.3229 Superconductivity +1304.4935 Phenomenology +1304.5407 Atmospheric and Oceanic Physics +1304.5438 Logic in Computer Science +1304.5753 Digital Libraries +1304.5940 Information Theory +1304.6199 Classical Analysis and ODEs +1304.6285 Number Theory +1304.6438 Mesoscale and Nanoscale Physics +1304.6541 Rings and Algebras +1305.0818 Mesoscale and Nanoscale Physics +1305.2246 Solar and Stellar Astrophysics +1305.3125 Optics +1305.4288 Logic +1305.4630 General Physics +1305.5050 Computer Science and Game Theory +1305.5342 Optics +1305.7240 +1306.1497 Number Theory +1306.2023 Astrophysics of Galaxies +1306.3525 Data Structures and Algorithms +1306.3791 +1306.4025 Physics and Society +1306.4255 Atomic Physics +1306.4782 Physics and Society +1306.5998 Neural and Evolutionary Computing +1306.6101 Statistical Mechanics +1306.6792 Strongly Correlated Electrons +1307.0218 Optics +1307.0246 Theory +1307.0645 Superconductivity +1307.1499 Molecular Networks +1307.1537 Information Theory +1307.2224 Metric Geometry +1307.2463 Algebraic Geometry +1307.2819 Classical Analysis and ODEs +1307.3822 Data Structures and Algorithms +1307.4046 Cryptography and Security +1307.4352 Strongly Correlated Electrons +1307.4369 +1307.4407 +1307.4410 Commutative Algebra +1307.4415 Populations and Evolution +1307.4416 Analysis of PDEs +1307.4422 Probability +1307.4423 Numerical Analysis +1307.4424 Probability +1307.4430 Information Theory +1307.4431 Probability +1307.4436 Computers and Society +1307.4440 Artificial Intelligence +1307.4444 Number Theory +1307.4446 +1307.4449 +1307.4452 +1307.4454 Soft Condensed Matter +1307.4458 Operator Algebras +1307.4460 +1307.4462 Information Theory +1307.4465 Logic in Computer Science +1307.4466 Computer Science and Game Theory +1307.4468 Logic in Computer Science +1307.4469 Logic in Computer Science +1307.4470 Logic in Computer Science +1307.4471 Formal Languages and Automata Theory +1307.4472 Logic in Computer Science +1307.4473 Data Structures and Algorithms +1307.4474 Programming Languages +1307.4475 Programming Languages +1307.4476 Computer Science and Game Theory +1307.4477 Multiagent Systems +1307.4478 Logic in Computer Science +1307.4479 Logic in Computer Science +1307.4489 Solar and Stellar Astrophysics +1307.4490 +1307.4491 Strongly Correlated Electrons +1307.4505 Information Theory +1307.4508 Disordered Systems and Neural Networks +1307.4509 Dynamical Systems +1307.4512 Accelerator Physics +1307.4516 Computer Vision and Pattern Recognition +1307.4519 Databases +1307.4520 Soft Condensed Matter +1307.4523 +1307.4530 Functional Analysis +1307.4531 Computers and Society +1307.4537 Instrumentation and Detectors +1307.4540 Instrumentation and Methods for Astrophysics +1307.4543 Data Structures and Algorithms +1307.4545 Instrumentation and Methods for Astrophysics +1307.4554 Symbolic Computation +1307.4555 High Energy Astrophysical Phenomena +1307.4557 Instrumentation and Methods for Astrophysics +1307.4563 Instrumentation and Methods for Astrophysics +1307.4564 Learning +1307.4565 Instrumentation and Methods for Astrophysics +1307.4573 Symplectic Geometry +1307.4574 Fluid Dynamics +1307.4575 Fluid Dynamics +1307.4580 Instrumentation and Methods for Astrophysics +1307.4585 Programming Languages +1307.4588 Optics +1307.4591 Pricing of Securities +1307.4592 Computer Vision and Pattern Recognition +1307.4596 Soft Condensed Matter +1307.4601 Optics +1307.4602 Statistics Theory +1307.4604 Differential Geometry +1307.4605 Differential Geometry +1307.4607 Complex Variables +1307.4608 Instrumentation and Detectors +1307.4610 Information Theory +1307.4616 Solar and Stellar Astrophysics +1307.4625 Methodology +1307.4626 Methodology +1307.4627 Analysis of PDEs +1307.4628 Populations and Evolution +1307.4629 Combinatorics +1307.4630 +1307.4639 High Energy Astrophysical Phenomena +1307.4641 Programming Languages +1307.4642 Programming Languages +1307.4644 Programming Languages +1307.4648 Programming Languages +1307.4653 Learning +1307.4655 Programming Languages +1307.4657 +1307.4659 Optimization and Control +1307.4660 Fluid Dynamics +1307.4662 Number Theory +1307.4674 General Mathematics +1307.4676 +1307.4691 Probability +1307.4695 Software Engineering +1307.4696 Operator Algebras +1307.4707 Statistical Mechanics +1307.4708 Classical Analysis and ODEs +1307.4717 Computer Vision and Pattern Recognition +1307.4721 Analysis of PDEs +1307.4722 Combinatorics +1307.4724 Combinatorics +1307.4725 Statistical Mechanics +1307.4731 Distributed, Parallel, and Cluster Computing +1307.4736 Materials Science +1307.4743 Analysis of PDEs +1307.4746 Differential Geometry +hep-ph/0510080 Phenomenology +math/0512181 Statistics Theory +physics/0610157 Atmospheric and Oceanic Physics +0709.0188 Quantum Algebra +0812.1733 Geophysics +0911.0216 Quantum Algebra +1009.4270 Spectral Theory +1012.0957 Quantum Algebra +1101.1912 +1102.3024 Phenomenology +1104.1137 Cosmology and Nongalactic Astrophysics +1107.0532 Experiment +1107.0622 Optimization and Control +1109.4059 Optimization and Control +1110.4168 Other Statistics +1111.1272 Probability +1111.1682 Probability +1112.0801 Functional Analysis +1112.1241 Probability +1112.6278 Soft Condensed Matter +1201.1738 +1204.1885 General Physics +1204.3210 Numerical Analysis +1205.4219 Statistics Theory +1205.5405 Combinatorics +1205.5449 Probability +1206.1435 Algebraic Geometry +1206.2656 Information Theory +1207.1172 Probability +1207.5067 Optimization and Control +1207.6023 Optimization and Control +1208.3021 +1208.3452 Lattice +1208.3878 Lattice +1209.4641 Theory +1210.5748 +1210.6006 Optics +1211.7021 Theory +1301.5020 Commutative Algebra +1301.5603 Optics +1301.7652 +1302.5265 +1302.5828 Analysis of PDEs +1303.3262 Cryptography and Security +1304.0430 Materials Science +1304.1384 Methodology +1304.1461 Representation Theory +1304.1954 +1304.2263 Information Theory +1304.2877 Chemical Physics +1304.4698 Representation Theory +1304.5239 Cosmology and Nongalactic Astrophysics +1304.5433 +1304.6827 +1305.0437 Soft Condensed Matter +1305.3248 Cryptography and Security +1305.4128 Phenomenology +1305.4787 Emerging Technologies +1305.5496 Quantum Gases +1305.5784 Molecular Networks +1305.5946 Computer Science and Game Theory +1305.6053 Probability +1306.2105 Dynamical Systems +1306.2204 Mesoscale and Nanoscale Physics +1306.2861 Machine Learning +1306.3805 +1306.3984 Phenomenology +1306.5013 Numerical Analysis +1306.5341 +1306.6437 Cosmology and Nongalactic Astrophysics +1306.6531 Cryptography and Security +1307.0712 Astrophysics of Galaxies +1307.2038 Instrumentation and Methods for Astrophysics +1307.2774 Theory +1307.3979 Statistical Mechanics +1307.4037 Phenomenology +1307.4209 Dynamical Systems +1307.5206 Mesoscale and Nanoscale Physics +1307.5418 Algebraic Geometry +1307.5442 Networking and Internet Architecture +1307.6533 Group Theory +1307.7680 Phenomenology +1307.8324 Pattern Formation and Solitons +1307.8420 +1308.0397 Strongly Correlated Electrons +1308.1018 General Mathematics +1308.1521 +1308.1622 History and Philosophy of Physics +1308.1786 Statistical Mechanics +1308.2246 +1308.3017 Optics +1308.3609 Analysis of PDEs +1308.4093 +1308.4394 Phenomenology +1308.4691 Strongly Correlated Electrons +1308.6236 Instrumentation and Detectors +1309.0076 Statistical Mechanics +1309.0114 Astrophysics of Galaxies +1309.3546 Information Theory +1309.4076 Quantum Gases +1309.4089 Theory +1309.4288 +1309.4443 +1309.5708 Mesoscale and Nanoscale Physics +1309.7728 Mesoscale and Nanoscale Physics +1310.0366 Soft Condensed Matter +1310.1748 Theory +1310.2292 Statistical Mechanics +1310.5374 Combinatorics +1310.6752 Phenomenology +1310.7645 Optics +1310.7691 Rings and Algebras +1310.8233 +1310.8553 +1311.0429 +1311.0573 Discrete Mathematics +1311.2858 History and Overview +1311.3391 Number Theory +1311.3486 Instrumentation and Methods for Astrophysics +1311.3878 +1311.5132 Phenomenology +1311.5238 High Energy Astrophysical Phenomena +1311.5246 Cosmology and Nongalactic Astrophysics +1311.6072 Optics +1311.6324 History and Philosophy of Physics +1311.7106 Mesoscale and Nanoscale Physics +1312.0166 Astrophysics of Galaxies +1312.0953 Instrumentation and Detectors +1312.1180 Differential Geometry +1312.2991 Number Theory +1312.3265 Lattice +1312.3286 Lattice +1312.3345 Data Structures and Algorithms +1312.3393 Learning +1312.3462 +1312.3715 +1312.4111 Instrumentation and Detectors +1312.4154 High Energy Astrophysical Phenomena +1312.4428 Computational Complexity +1312.4513 Classical Analysis and ODEs +1312.4527 Learning +1312.4528 General Physics +1312.4534 Astrophysics of Galaxies +1312.4545 Solar and Stellar Astrophysics +1312.4548 Instrumentation and Methods for Astrophysics +1312.4551 Machine Learning +1312.4557 Soft Condensed Matter +1312.4559 Soft Condensed Matter +1312.4562 Soft Condensed Matter +1312.4566 Soft Condensed Matter +1312.4568 Information Theory +1312.4571 Astrophysics of Galaxies +1312.4575 +1312.4580 Materials Science +1312.4585 Space Physics +1312.4587 Computational Engineering, Finance, and Science +1312.4592 Astrophysics of Galaxies +1312.4593 Cosmology and Nongalactic Astrophysics +1312.4598 Systems and Control +1312.4599 Learning +1312.4600 Analysis of PDEs +1312.4601 Robotics +1312.4602 Instrumentation and Methods for Astrophysics +1312.4606 +1312.4607 Group Theory +1312.4608 Complex Variables +1312.4622 Trading and Market Microstructure +1312.4624 Instrumentation and Methods for Astrophysics +1312.4626 Machine Learning +1312.4628 Computational Geometry +1312.4630 Lattice +1312.4634 Robotics +1312.4635 Rings and Algebras +1312.4639 Combinatorics +1312.4640 Human-Computer Interaction +1312.4649 Probability +1312.4658 Algebraic Topology +1312.4660 Genomics +1312.4663 Statistics Theory +1312.4666 Data Structures and Algorithms +1312.4670 +1312.4672 Number Theory +1312.4674 Statistics Theory +1312.4676 Social and Information Networks +1312.4682 Quantum Algebra +1312.4684 Astrophysics of Galaxies +1312.4685 Rings and Algebras +1312.4690 +1312.4691 Statistics Theory +1312.4699 Populations and Evolution +1312.4701 Materials Science +1312.4702 +1312.4704 Digital Libraries +1312.4707 Social and Information Networks +1312.4708 Chemical Physics +1312.4710 Machine Learning +1312.4717 Machine Learning +1312.4719 Machine Learning +1312.4723 Phenomenology +1312.4726 Number Theory +1312.4727 Classical Analysis and ODEs +1312.4729 Classical Physics +1312.4730 Chaotic Dynamics +1312.4732 +1312.4734 Materials Science +1312.4735 +1312.4738 +1312.4742 Software Engineering +1312.4744 Quantitative Methods +1312.4746 Computer Vision and Pattern Recognition +1312.4748 Biomolecules +1312.4751 +1312.4752 Computer Vision and Pattern Recognition +1312.4754 Group Theory +1312.4756 Experiment +1312.4761 Classical Analysis and ODEs +1312.4764 Soft Condensed Matter +1312.4767 Classical Analysis and ODEs +1312.4769 Representation Theory +1312.4771 Differential Geometry +1312.4772 Functional Analysis +1312.4773 Materials Science +1312.4780 +1312.4783 Materials Science +1312.4790 High Energy Astrophysical Phenomena +1312.4791 Phenomenology +1312.4793 Cryptography and Security +1312.4794 Digital Libraries +1312.4797 Methodology +1312.4798 Information Theory +1312.4800 Databases +1312.4801 Instrumentation and Methods for Astrophysics +1312.4802 Data Structures and Algorithms +1312.4812 Analysis of PDEs +1312.4813 Experiment +1312.4814 Cryptography and Security +1312.4815 Experiment +1312.4818 Software Engineering +1312.4820 Classical Physics +1312.4825 Differential Geometry +1312.4828 Cryptography and Security +1312.4830 Phenomenology +1312.4833 Cryptography and Security +1312.4839 Artificial Intelligence +1312.4840 Logic in Computer Science +1312.4843 Astrophysics of Galaxies +1312.4848 Solar and Stellar Astrophysics +1312.4852 Machine Learning +1312.4853 Distributed, Parallel, and Cluster Computing +1312.4857 Cell Behavior +1312.4858 Number Theory +1312.4868 Soft Condensed Matter +1312.4872 Soft Condensed Matter +1312.4878 Solar and Stellar Astrophysics +1312.4880 Solar and Stellar Astrophysics +1312.4885 Optimization and Control +1312.4886 +1312.4888 Phenomenology +1312.4892 Optimization and Control +1312.4895 Machine Learning +1312.4897 Dynamical Systems +1312.4898 Dynamical Systems +1312.4901 Analysis of PDEs +1312.4902 Other Quantitative Biology +1312.4905 Soft Condensed Matter +1312.4912 +1312.4914 +1312.4918 Materials Science +1312.4919 Numerical Analysis +1312.4927 Other Quantitative Biology +1312.4928 Number Theory +1312.4931 Operating Systems +math/0501312 Quantum Algebra +math/0508175 Quantum Algebra +math/0608717 Complex Variables +nucl-ex/0502016 +quant-ph/0511117 +0709.0824 +0810.2725 Group Theory +0812.4516 +0902.1107 Metric Geometry +0906.4925 Metric Geometry +0907.1049 Representation Theory +0908.4215 +0910.3008 Soft Condensed Matter +1005.4996 General Mathematics +1006.5264 +1007.0167 Probability +1007.0556 Theory +1011.3822 Theory +1012.0288 +1012.5266 Phenomenology +1102.0762 +1103.4101 Theory +1105.4998 Rings and Algebras +1106.3198 Rings and Algebras +1106.5352 Quantum Algebra +1106.5959 Phenomenology +1110.6128 +1111.0522 Computation +1111.2273 Functional Analysis +1111.6753 Materials Science +1112.1432 Quantum Algebra +1112.1893 Probability +1112.3417 Materials Science +1112.3869 Rings and Algebras +1201.4829 +1201.5498 +1201.5634 Theory +1201.6509 Rings and Algebras +1202.1857 Atomic Physics +1203.3096 +1203.3821 Dynamical Systems +1203.5088 Theory +1203.5475 Computation +1203.6525 +1204.6443 Algebraic Geometry +1205.0711 Probability +1205.0983 +1205.1366 Information Theory +1205.1810 Functional Analysis +1205.3403 +1205.4946 Strongly Correlated Electrons +1205.5944 Analysis of PDEs +1205.6902 +1206.2042 +1206.6495 Cosmology and Nongalactic Astrophysics +1207.1755 Probability +1207.4257 Rings and Algebras +1207.6731 +1208.0575 Materials Science +1208.1012 +1208.1335 Theory +1208.1593 Information Theory +1208.3367 Theory +1208.3399 Phenomenology +1208.6493 Functional Analysis +1209.0105 Statistical Mechanics +1209.0430 Learning +1209.0644 Geometric Topology +1209.1269 Rings and Algebras +1209.2671 Quantum Gases +1209.3373 Differential Geometry +1209.3798 Dynamical Systems +1209.4662 Combinatorics +1210.0867 Experiment +1210.2180 Computational Physics +1210.6272 Databases +1210.6718 Experiment +1210.7551 Mesoscale and Nanoscale Physics +1210.7995 Materials Science +1211.1283 Statistical Mechanics +1211.1675 Mesoscale and Nanoscale Physics +1211.4661 Analysis of PDEs +1211.4784 Experiment +1211.5483 +1212.0067 Mesoscale and Nanoscale Physics +1212.1571 +1212.5093 Quantum Gases +1212.5407 Experiment +1212.6562 Optics +1212.6632 Computer Science and Game Theory +1301.3107 Strongly Correlated Electrons +1301.3139 Statistical Mechanics +1301.3494 Strongly Correlated Electrons +1301.3737 Phenomenology +1301.3927 +1301.4169 Quantum Gases +1301.4286 +1301.4554 Other Condensed Matter +1301.4698 Experiment +1301.5293 Data Structures and Algorithms +1301.5518 Atomic Physics +1301.6461 Phenomenology +1302.0092 Algebraic Geometry +1302.1180 +1302.1578 Astrophysics of Galaxies +1302.2454 Strongly Correlated Electrons +1302.2691 +1302.3815 +1302.5027 Mesoscale and Nanoscale Physics +1302.5210 Combinatorics +1302.5316 Phenomenology +1302.5917 Neurons and Cognition +1302.6775 Mesoscale and Nanoscale Physics +1303.0061 Quantum Gases +1303.0355 Materials Science +1303.0754 Experiment +1303.1963 Materials Science +1303.2973 Algebraic Geometry +1303.6438 Phenomenology +1304.1065 Phenomenology +1304.1747 Biological Physics +1304.2162 Mesoscale and Nanoscale Physics +1304.2210 Strongly Correlated Electrons +1304.2576 Data Structures and Algorithms +1304.2911 Materials Science +1304.3203 Distributed, Parallel, and Cluster Computing +1304.3382 Theory +1304.3797 Analysis of PDEs +1304.4139 Optics +1304.4428 Information Theory +1304.4966 Theory +1304.5043 Superconductivity +1304.5121 Phenomenology +1304.5351 Number Theory +1304.5378 Discrete Mathematics +1304.6014 +1304.6027 Information Theory +1304.6071 Superconductivity +1304.6265 Soft Condensed Matter +1304.6382 Quantum Algebra +1304.6402 Statistical Mechanics +1304.6420 Social and Information Networks +1304.6426 Probability +1304.6429 Cosmology and Nongalactic Astrophysics +1304.6432 Combinatorics +1304.6434 Materials Science +1304.6439 History and Philosophy of Physics +1304.6442 Artificial Intelligence +1304.6443 +1304.6444 Theory +1304.6447 Phenomenology +1304.6448 Combinatorics +1304.6449 Analysis of PDEs +1304.6450 Discrete Mathematics +1304.6454 Analysis of PDEs +1304.6455 Strongly Correlated Electrons +1304.6460 Digital Libraries +1304.6461 Optimization and Control +1304.6463 Molecular Networks +1304.6465 Combinatorics +1304.6466 Combinatorics +1304.6467 Logic +1304.6468 Information Theory +1304.6470 Information Theory +1304.6473 Computers and Society +1304.6478 Learning +1304.6480 Learning +1304.6481 Numerical Analysis +1304.6486 Networking and Internet Architecture +1304.6488 Combinatorics +1304.6489 Networking and Internet Architecture +1304.6490 Instrumentation and Methods for Astrophysics +1304.6491 Networking and Internet Architecture +1304.6493 Optics +1304.6494 Systems and Control +1304.6497 Instrumentation and Methods for Astrophysics +1304.6498 Software Engineering +1304.6499 Human-Computer Interaction +1304.6501 Computers and Society +1304.6505 Software Engineering +1304.6506 Software Engineering +1304.6507 Soft Condensed Matter +1304.6508 Numerical Analysis +1304.6510 Combinatorics +1304.6518 Rings and Algebras +1304.6522 Cosmology and Nongalactic Astrophysics +1304.6526 Analysis of PDEs +1304.6530 Instrumentation and Methods for Astrophysics +1304.6532 Rings and Algebras +1304.6536 Statistics Theory +1304.6538 Combinatorics +1304.6542 +1304.6543 Mesoscale and Nanoscale Physics +1304.6552 Commutative Algebra +1304.6554 Social and Information Networks +1304.6561 Differential Geometry +1304.6562 Classical Analysis and ODEs +1304.6563 Combinatorics +1304.6566 +1304.6569 Instrumentation and Detectors +1304.6572 Cryptography and Security +1304.6575 Cryptography and Security +1304.6577 Functional Analysis +1304.6578 Mesoscale and Nanoscale Physics +1304.6584 Cryptography and Security +1304.6588 Data Structures and Algorithms +1304.6591 Information Theory +1304.6598 Chemical Physics +1304.6605 Complex Variables +1304.6608 History and Overview +1304.6611 Analysis of PDEs +1304.6614 Information Theory +1304.6615 Instrumentation and Methods for Astrophysics +1304.6617 Information Theory +1304.6619 Mesoscale and Nanoscale Physics +1304.6620 Symplectic Geometry +1304.6621 Classical Analysis and ODEs +1304.6624 Mesoscale and Nanoscale Physics +1304.6626 Human-Computer Interaction +1304.6627 Information Theory +1304.6629 Probability +1304.6642 Combinatorics +1304.6650 Analysis of PDEs +1304.6652 Medical Physics +1304.6653 Strongly Correlated Electrons +1304.6655 Optimization and Control +1304.6656 Software Engineering +1304.6657 Superconductivity +1304.6659 Data Analysis, Statistics and Probability +1304.6669 Applications +1304.6670 Applications +1304.6671 Classical Analysis and ODEs +1304.6672 Cryptography and Security +1304.6677 Phenomenology +1304.6678 +1304.6686 Algebraic Geometry +1304.6692 Soft Condensed Matter +1304.6694 Computers and Society +1304.6695 Instrumentation and Detectors +1304.6701 Probability +1304.6703 Probability +1304.6704 Probability +1304.6709 Digital Libraries +1304.6710 Phenomenology +cs/0608104 Programming Languages +math/0511583 Metric Geometry +math/0701094 Metric Geometry +quant-ph/0109155 +0705.0313 Molecular Networks +0709.4209 Molecular Networks +0712.1852 Molecular Networks +0808.0851 Differential Geometry +0809.3746 +0903.2554 Formal Languages and Automata Theory +0903.4491 Molecular Networks +1006.5234 Computational Complexity +1007.2787 Neurons and Cognition +1007.4955 Information Theory +1008.3127 Mesoscale and Nanoscale Physics +1010.6231 Computational Complexity +1011.2470 Number Theory +1101.0114 Software Engineering +1102.0817 Neurons and Cognition +1103.3439 +1104.1352 Numerical Analysis +1105.4590 Classical Analysis and ODEs +1107.3623 Materials Science +1110.1813 Accelerator Physics +1110.3583 Combinatorics +1110.3841 +1110.4619 Differential Geometry +1111.6328 K-Theory and Homology +1112.1664 Atomic Physics +1112.5026 Molecular Networks +1201.6236 Optimization and Control +1202.0436 Computational Engineering, Finance, and Science +1202.2638 Digital Libraries +1202.2709 Data Analysis, Statistics and Probability +1202.3527 Chemical Physics +1202.6091 Information Theory +1203.6841 Number Theory +1205.3195 +1205.5306 Optimization and Control +1205.6747 Instrumentation and Detectors +1206.4181 Optimization and Control +1207.6103 Computer Science and Game Theory +1207.6198 Pattern Formation and Solitons +1208.0634 Populations and Evolution +1208.2699 Superconductivity +1208.5337 +1208.5538 Probability +1209.0097 Geometric Topology +1209.0232 Quantum Gases +1209.2399 Number Theory +1209.3790 Cosmology and Nongalactic Astrophysics +1209.6561 Artificial Intelligence +1209.6572 +1210.0356 Materials Science +1210.1206 Classical Analysis and ODEs +1210.2608 Number Theory +1210.4667 Geometric Topology +1210.5655 Theory +1210.6772 +1210.7675 Mesoscale and Nanoscale Physics +1210.8201 Cosmology and Nongalactic Astrophysics +1211.0791 +1211.1460 Probability +1211.1728 Information Theory +1211.2536 Statistical Mechanics +1211.3484 Information Theory +1211.4343 Probability +1211.5433 Data Structures and Algorithms +1211.6045 Chaotic Dynamics +1212.0615 Rings and Algebras +1212.0618 Rings and Algebras +1212.3808 Phenomenology +1212.5939 Phenomenology +1301.0381 Portfolio Management +1301.1245 Phenomenology +1301.1609 Information Theory +1301.2053 Methodology +1301.2988 +1301.5743 Materials Science +1301.5844 Computer Science and Game Theory +1301.6046 Atomic Physics +1301.6591 Digital Libraries +1301.6656 +1301.6940 Solar and Stellar Astrophysics +1301.7138 Mesoscale and Nanoscale Physics +1301.7214 Differential Geometry +1302.0261 Statistics Theory +1302.0338 Other Computer Science +1302.0971 Databases +1302.1437 Strongly Correlated Electrons +1302.1935 Mesoscale and Nanoscale Physics +1302.3250 Networking and Internet Architecture +1302.5187 Representation Theory +1302.5511 Other Computer Science +1302.6993 Theory +1302.7126 Physics and Society +1303.0204 Plasma Physics +1303.0993 +1303.4309 High Energy Astrophysical Phenomena +1303.5292 Optics +1303.5636 Algebraic Geometry +1304.0216 Plasma Physics +1304.0977 +1304.1156 Theory +1304.1842 Adaptation and Self-Organizing Systems +1304.2628 Quantum Gases +1304.3803 Theory +1304.4893 Systems and Control +1304.5035 Mesoscale and Nanoscale Physics +1304.5079 Disordered Systems and Neural Networks +1304.6058 Phenomenology +1304.8075 +1305.0487 Statistical Mechanics +1305.0616 Differential Geometry +1305.0765 Atomic Physics +1305.2331 Phenomenology +1305.3632 Strongly Correlated Electrons +1305.4370 +1305.4543 General Physics +1305.5690 Algebraic Geometry +1305.5809 Theory +1305.6504 Atomic Physics +1306.0119 Dynamical Systems +1306.1385 Statistical Mechanics +1306.1807 +1306.2039 Optimization and Control +1306.2553 Algebraic Geometry +1306.3461 Atomic Physics +1306.5187 High Energy Astrophysical Phenomena +1306.5367 Instrumentation and Methods for Astrophysics +1306.5373 Populations and Evolution +1306.5564 +1306.6625 Solar and Stellar Astrophysics +1307.0375 Instrumentation and Methods for Astrophysics +1307.0725 Formal Languages and Automata Theory +1307.1012 Analysis of PDEs +1307.1304 Analysis of PDEs +1307.2197 Materials Science +1307.3042 Complex Variables +1307.3287 Classical Analysis and ODEs +1307.3655 Atomic Physics +1307.3750 Combinatorics +1307.4821 Adaptation and Self-Organizing Systems +1307.6225 Phenomenology +1307.7040 Strongly Correlated Electrons +1307.7172 Digital Libraries +1307.7350 Differential Geometry +1307.7381 Commutative Algebra +1307.7437 General Physics +1307.7649 Functional Analysis +1307.7766 Cryptography and Security +1307.7976 Distributed, Parallel, and Cluster Computing +1307.8020 Risk Management +1307.8103 Materials Science +1307.8107 Number Theory +1307.8112 Computers and Society +1307.8136 Methodology +1307.8138 Combinatorics +1307.8139 Computational Geometry +1307.8143 Populations and Evolution +1307.8145 Plasma Physics +1307.8151 Analysis of PDEs +1307.8152 Cosmology and Nongalactic Astrophysics +1307.8154 Instrumentation and Detectors +1307.8156 Materials Science +1307.8158 Solar and Stellar Astrophysics +1307.8161 Combinatorics +1307.8162 Commutative Algebra +1307.8163 Mesoscale and Nanoscale Physics +1307.8165 Mesoscale and Nanoscale Physics +1307.8167 Fluid Dynamics +1307.8168 Analysis of PDEs +1307.8172 Other Computer Science +1307.8178 +1307.8179 Software Engineering +1307.8181 Phenomenology +1307.8182 Artificial Intelligence +1307.8184 Logic +1307.8186 Cryptography and Security +1307.8191 Other Computer Science +1307.8194 Strongly Correlated Electrons +1307.8201 Information Theory +1307.8202 Logic in Computer Science +1307.8203 Software Engineering +1307.8204 Programming Languages +1307.8207 Programming Languages +1307.8208 Logic in Computer Science +1307.8209 Cryptography and Security +1307.8210 Cryptography and Security +1307.8211 Logic in Computer Science +1307.8212 Logic in Computer Science +1307.8214 Logic in Computer Science +1307.8217 Methodology +1307.8218 Earth and Planetary Astrophysics +1307.8222 Phenomenology +1307.8223 Probability +1307.8225 Information Retrieval +1307.8226 Differential Geometry +1307.8228 Distributed, Parallel, and Cluster Computing +1307.8230 Information Theory +1307.8233 Computer Vision and Pattern Recognition +1307.8237 Number Theory +1307.8239 Digital Libraries +1307.8247 Rings and Algebras +1307.8254 Optimization and Control +1307.8256 Distributed, Parallel, and Cluster Computing +1307.8259 Group Theory +1307.8261 Risk Management +1307.8263 Populations and Evolution +1307.8269 Databases +1307.8270 Computation +1307.8271 Statistics Theory +1307.8272 Fluid Dynamics +1307.8273 Instrumentation and Methods for Astrophysics +1307.8275 Solar and Stellar Astrophysics +1307.8276 Computational Physics +1307.8279 Artificial Intelligence +1307.8286 Accelerator Physics +1307.8289 Representation Theory +1307.8290 Optimization and Control +1307.8291 Classical Analysis and ODEs +1307.8293 Complex Variables +1307.8297 Group Theory +1307.8300 Statistics Theory +1307.8301 Accelerator Physics +1307.8304 Accelerator Physics +1307.8305 Learning +1307.8306 +1307.8307 Category Theory +1307.8309 +1307.8311 +1307.8313 Mesoscale and Nanoscale Physics +1307.8315 Dynamical Systems +1307.8318 +1307.8319 Hardware Architecture +1307.8321 Complex Variables +1307.8322 Cryptography and Security +1307.8326 +1307.8327 Information Theory +1307.8330 Accelerator Physics +1307.8331 +1307.8332 Analysis of PDEs +1307.8333 Machine Learning +1307.8335 Computers and Society +1307.8340 Differential Geometry +1307.8341 Algebraic Geometry +1307.8343 Geometric Topology +1307.8344 High Energy Astrophysical Phenomena +1307.8346 Experiment +1307.8347 Metric Geometry +1307.8350 Phenomenology +1307.8352 Phenomenology +1307.8353 Algebraic Geometry +1307.8354 Combinatorics +1307.8355 Instrumentation and Methods for Astrophysics +1307.8358 Instrumentation and Methods for Astrophysics +1307.8360 Instrumentation and Methods for Astrophysics +1307.8361 Instrumentation and Methods for Astrophysics +1307.8362 Accelerator Physics +1307.8364 Complex Variables +1307.8366 Applications +1307.8367 High Energy Astrophysical Phenomena +1307.8369 Statistics Theory +1307.8376 Instrumentation and Detectors +1307.8379 General Physics +1307.8382 High Energy Astrophysical Phenomena +1307.8385 Multimedia +1307.8389 Programming Languages +1307.8390 Phenomenology +1307.8391 Statistical Mechanics +1307.8394 High Energy Astrophysical Phenomena +1307.8399 Optics +1307.8400 Operator Algebras +1307.8401 Hardware Architecture +1307.8405 Computer Vision and Pattern Recognition +1307.8407 Genomics +1307.8408 Classical Analysis and ODEs +1307.8410 Networking and Internet Architecture +1307.8411 Numerical Analysis +1307.8412 Probability +1307.8413 Solar and Stellar Astrophysics +1307.8415 Rings and Algebras +1307.8416 Quantum Gases +1307.8423 Combinatorics +1307.8426 Probability +1307.8430 Learning +1307.8442 Classical Analysis and ODEs +astro-ph/0011367 +astro-ph/9806254 +astro-ph/9806359 +cond-mat/0609603 Disordered Systems and Neural Networks +q-bio/0701002 Molecular Networks +0904.2010 Materials Science +1010.3775 Neurons and Cognition +1101.4681 Learning +1102.4520 Numerical Analysis +1103.1302 Distributed, Parallel, and Cluster Computing +1104.0106 Theory +1105.0876 Probability +1106.3822 Group Theory +1107.2419 Solar and Stellar Astrophysics +1108.3109 Classical Analysis and ODEs +1109.1942 +1109.2240 Combinatorics +1110.4525 Earth and Planetary Astrophysics +1110.4788 Instrumentation and Methods for Astrophysics +1111.0928 Superconductivity +1112.0354 Logic +1112.1449 K-Theory and Homology +1112.4652 +1201.1594 +1201.3087 Physics and Society +1201.5567 +1202.3148 Strongly Correlated Electrons +1202.6200 Number Theory +1204.2006 Strongly Correlated Electrons +1204.4224 Software Engineering +1204.5963 Computer Science and Game Theory +1204.6477 Phenomenology +1205.1996 Phenomenology +1205.5078 +1205.5958 Portfolio Management +1207.0020 Populations and Evolution +1207.2089 High Energy Astrophysical Phenomena +1207.3462 Combinatorics +1207.3883 Statistical Mechanics +1207.6757 Optics +1208.0037 Strongly Correlated Electrons +1208.3889 +1208.6374 Analysis of PDEs +1209.0729 Neurons and Cognition +1209.1276 Strongly Correlated Electrons +1209.3657 History and Overview +1209.4819 Cryptography and Security +1209.5112 Probability +1210.6538 Logic +1210.7435 High Energy Astrophysical Phenomena +1211.2694 Statistical Mechanics +1211.3083 +1211.6935 Soft Condensed Matter +1212.0120 +1212.0289 Fluid Dynamics +1212.0669 Materials Science +1212.0673 Chaotic Dynamics +1212.1813 Algebraic Geometry +1212.2634 Quantum Gases +1212.2665 Mesoscale and Nanoscale Physics +1212.2946 Other Condensed Matter +1212.5487 Astrophysics of Galaxies +1212.6180 +1212.6315 Quantum Gases +1212.6328 Algebraic Geometry +1301.0259 Physics and Society +1301.2168 Strongly Correlated Electrons +1301.3272 Probability +1301.3828 Instrumentation and Methods for Astrophysics +1301.4205 Mesoscale and Nanoscale Physics +1301.4206 Combinatorics +1301.4268 Phenomenology +1301.4697 Materials Science +1301.6231 Information Theory +1301.6535 Strongly Correlated Electrons +1302.0298 Algebraic Geometry +1302.0621 Distributed, Parallel, and Cluster Computing +1302.1083 Probability +1302.1415 Experiment +1302.2361 Theory +1302.2404 Quantum Gases +1302.2929 Experiment +1302.3694 Experiment +1303.0400 Combinatorics +1303.0471 Materials Science +1303.0614 +1303.1044 Statistical Mechanics +1303.2273 Geometric Topology +1303.2605 Analysis of PDEs +1303.2615 +1303.2810 Disordered Systems and Neural Networks +1303.3396 Superconductivity +1303.4131 Mesoscale and Nanoscale Physics +1303.4331 +1303.5694 +1303.5959 Functional Analysis +1303.6024 Cosmology and Nongalactic Astrophysics +1303.6297 Strongly Correlated Electrons +1303.6623 Physics and Society +1303.6791 Quantum Gases +1304.0253 +1304.0965 Statistical Mechanics +1304.1668 Optics +1304.1838 Databases +1304.3598 +1304.3605 Quantum Gases +1304.3631 Mesoscale and Nanoscale Physics +1304.3743 Fluid Dynamics +1304.4087 Phenomenology +1304.4192 Strongly Correlated Electrons +1304.5342 Algebraic Geometry +1304.5430 +1304.6073 Optimization and Control +1304.6140 Probability +1304.6515 Materials Science +1305.0140 Solar and Stellar Astrophysics +1305.0275 Mesoscale and Nanoscale Physics +1305.0709 Applications +1305.1310 Statistical Mechanics +1305.2138 High Energy Astrophysical Phenomena +1305.2217 Mesoscale and Nanoscale Physics +1305.3796 Phenomenology +1305.4135 Computational Physics +1305.4955 Artificial Intelligence +1305.5094 Biological Physics +1305.5442 Optimization and Control +1305.6075 +1305.6515 High Energy Astrophysical Phenomena +1305.6935 Phenomenology +1306.0763 Analysis of PDEs +1306.2499 Information Retrieval +1306.2824 Mesoscale and Nanoscale Physics +1306.4364 +1306.5054 Spectral Theory +1306.5463 General Topology +1306.5503 Combinatorics +1306.5577 Cellular Automata and Lattice Gases +1306.5907 High Energy Astrophysical Phenomena +1306.6044 Number Theory +1306.6149 Superconductivity +1306.6302 Artificial Intelligence +1306.6327 Accelerator Physics +1306.6328 Accelerator Physics +1306.6329 Instrumentation and Detectors +1306.6333 Cosmology and Nongalactic Astrophysics +1306.6346 Phenomenology +1306.6348 Solar and Stellar Astrophysics +1306.6352 Phenomenology +1306.6353 Accelerator Physics +1306.6355 Functional Analysis +1306.6358 Functional Analysis +1306.6365 Differential Geometry +1306.6369 Group Theory +1306.6375 Artificial Intelligence +1306.6376 Adaptation and Self-Organizing Systems +1306.6377 Quantum Gases +1306.6378 Information Theory +1306.6381 +1306.6382 +1306.6385 Probability +1306.6394 +1306.6397 Distributed, Parallel, and Cluster Computing +1306.6398 Functional Analysis +1306.6400 Optics +1306.6402 Computational Finance +1306.6403 +1306.6408 Computation +1306.6411 Analysis of PDEs +1306.6412 Software Engineering +1306.6413 Networking and Internet Architecture +1306.6414 Optics +1306.6417 Solar and Stellar Astrophysics +1306.6419 Optimization and Control +1306.6420 Phenomenology +1306.6428 Networking and Internet Architecture +1306.6444 Classical Analysis and ODEs +1306.6450 +1306.6453 +1306.6457 Classical Analysis and ODEs +1306.6463 Number Theory +1306.6473 Atomic Physics +1306.6476 Plasma Physics +1306.6477 Mesoscale and Nanoscale Physics +1306.6478 Mesoscale and Nanoscale Physics +1306.6479 Applications +1306.6480 Phenomenology +1306.6483 Phenomenology +1306.6484 Materials Science +1306.6485 Materials Science +1306.6489 Artificial Intelligence +1306.6499 Plasma Physics +1306.6502 Geometric Topology +1306.6503 Functional Analysis +1306.6505 Plasma Physics +1306.6506 High Energy Astrophysical Phenomena +1306.6509 High Energy Astrophysical Phenomena +1306.6513 Phenomenology +1306.6517 +1306.6527 +1306.6542 Computer Science and Game Theory +1306.6543 Number Theory +1306.6546 Atomic Physics +1306.6550 Geophysics +1306.6557 Machine Learning +1306.6566 Statistics Theory +1306.6568 Phenomenology +1306.6574 Chemical Physics +1306.6577 Chemical Physics +1306.6581 Representation Theory +1306.6583 Computational Finance +1306.6595 Digital Libraries +1306.6598 Computational Complexity +1306.6601 Analysis of PDEs +1306.6611 Experiment +1306.6613 Geometric Topology +1306.6614 Strongly Correlated Electrons +math/0411227 Logic +math/0703076 Optimization and Control +0707.2183 Other Condensed Matter +0709.3835 +0803.2751 Geometric Topology +0804.1143 Methodology +0808.3767 +0904.3951 Biological Physics +0906.4382 Operator Algebras +0909.1671 Probability +1002.3003 +1004.2330 Strongly Correlated Electrons +1005.1607 Phenomenology +1006.2513 Information Theory +1007.5395 Dynamical Systems +1012.1888 Differential Geometry +1012.5863 Metric Geometry +1101.0481 Phenomenology +1102.2469 Statistical Mechanics +1102.2564 Analysis of PDEs +1103.2387 Classical Physics +1104.2622 Mesoscale and Nanoscale Physics +1104.4767 Differential Geometry +1106.1703 Systems and Control +1107.4290 Cosmology and Nongalactic Astrophysics +1108.2022 General Physics +1109.0134 Combinatorics +1109.0875 Differential Geometry +1109.1779 +1110.5585 Algebraic Geometry +1111.0047 Algebraic Geometry +1111.4087 Computational Finance +1111.4649 Data Structures and Algorithms +1111.5003 Information Theory +1111.5577 Symplectic Geometry +1112.0975 Algebraic Geometry +1112.1089 Theory +1112.6272 Optimization and Control +1112.6279 Theory +1201.0365 Discrete Mathematics +1201.0887 Combinatorics +1201.4302 Theory +1202.3479 Computational Complexity +1203.0075 +1203.0492 Algebraic Geometry +1203.0565 Machine Learning +1203.0714 Multiagent Systems +1203.6332 Mesoscale and Nanoscale Physics +1203.6365 +1204.0757 Methodology +1204.6692 Dynamical Systems +1205.0293 +1205.0784 Theory +1205.1177 Differential Geometry +1205.4652 +1206.2999 +1207.0560 Data Structures and Algorithms +1207.2586 Spectral Theory +1207.4222 Computational Physics +1207.4535 +1208.1341 Logic +1209.0803 Materials Science +1209.1064 Machine Learning +1209.1576 Instrumentation and Methods for Astrophysics +1209.3847 Cosmology and Nongalactic Astrophysics +1209.4797 Combinatorics +1210.0349 Theory +1210.0467 Solar and Stellar Astrophysics +1210.0957 Differential Geometry +1210.1136 Probability +1210.1738 Functional Analysis +1210.2576 Computational Physics +1210.3227 Mesoscale and Nanoscale Physics +1210.4192 Phenomenology +1210.4594 Data Structures and Algorithms +1210.5626 Information Theory +1210.6693 Strongly Correlated Electrons +1210.7808 Cosmology and Nongalactic Astrophysics +1211.0391 Data Structures and Algorithms +1211.0775 +1211.4380 +1212.0711 +1212.0906 Number Theory +1212.2276 General Physics +1212.2753 Phenomenology +1212.5557 Phenomenology +1212.5576 Functional Analysis +1212.6192 Operator Algebras +1301.0263 Instrumentation and Methods for Astrophysics +1301.0704 +1301.1064 Systems and Control +1301.1978 Cosmology and Nongalactic Astrophysics +1301.2041 Information Theory +1301.3150 Astrophysics of Galaxies +1301.5198 High Energy Astrophysical Phenomena +1301.5554 +1301.7074 +1302.0463 Physics and Society +1302.1289 Classical Physics +1302.2349 Optimization and Control +1302.3890 Phenomenology +1302.4810 Superconductivity +1302.5474 Neural and Evolutionary Computing +1303.0365 Phenomenology +1303.1336 Representation Theory +1303.1830 Astrophysics of Galaxies +1303.1843 Mesoscale and Nanoscale Physics +1303.2613 Instrumentation and Methods for Astrophysics +1303.3305 Analysis of PDEs +1303.4324 Data Structures and Algorithms +1303.4361 Earth and Planetary Astrophysics +1303.4500 High Energy Astrophysical Phenomena +1303.5773 Materials Science +1303.5868 +1303.6594 Optics +1303.7175 Mesoscale and Nanoscale Physics +1304.0388 +1304.0474 Materials Science +1304.2256 Theory +1304.2850 Disordered Systems and Neural Networks +1304.3181 Theory +1304.3485 +1304.3817 Soft Condensed Matter +1304.4395 Materials Science +1304.4487 Mesoscale and Nanoscale Physics +1304.4526 Phenomenology +1304.5947 Biomolecules +1304.5959 Strongly Correlated Electrons +1304.6193 Group Theory +1304.6590 Mesoscale and Nanoscale Physics +1304.6593 Data Structures and Algorithms +1304.6884 High Energy Astrophysical Phenomena +1304.6910 Combinatorics +1304.7489 Rings and Algebras +1305.0488 Mesoscale and Nanoscale Physics +1305.1812 Theory +1305.2841 Algebraic Geometry +1305.3864 Mesoscale and Nanoscale Physics +1305.4916 Phenomenology +1305.6043 Populations and Evolution +1306.0546 +1306.1013 +1306.1132 +1306.1184 +1306.1808 High Energy Astrophysical Phenomena +1306.1839 Materials Science +1306.2040 Systems and Control +1306.2309 High Energy Astrophysical Phenomena +1306.2519 Mesoscale and Nanoscale Physics +1306.4659 Phenomenology +1306.4727 Information Theory +1306.5601 Artificial Intelligence +1306.6111 Social and Information Networks +1306.6370 Social and Information Networks +1307.0020 Cosmology and Nongalactic Astrophysics +1307.0395 Mesoscale and Nanoscale Physics +1307.1349 Phenomenology +1307.1613 Cosmology and Nongalactic Astrophysics +1307.2175 Group Theory +1307.2187 Data Structures and Algorithms +1307.2641 Systems and Control +1307.2701 Superconductivity +1307.3157 Atomic Physics +1307.3658 Instrumentation and Detectors +1307.4738 Instrumentation and Methods for Astrophysics +1307.5176 Cosmology and Nongalactic Astrophysics +1307.5623 +1307.6557 Earth and Planetary Astrophysics +1307.6595 Logic +1307.6699 Phenomenology +1307.6711 Cryptography and Security +1307.7067 Numerical Analysis +1307.7317 General Mathematics +1307.8439 Classical Analysis and ODEs +1308.0192 Materials Science +1308.1396 General Physics +1308.1610 Strongly Correlated Electrons +1308.2191 General Finance +1308.2238 Algebraic Geometry +1308.2446 Instrumentation and Detectors +1308.2469 Algebraic Geometry +1308.3668 General Finance +1308.3678 Number Theory +1308.4366 General Physics +1308.4434 Computational Geometry +1308.4505 Solar and Stellar Astrophysics +1308.4565 Learning +1308.4607 Rings and Algebras +1308.4625 Soft Condensed Matter +1308.4873 Solar and Stellar Astrophysics +1308.4874 Solar and Stellar Astrophysics +1308.5008 +1308.5132 Statistical Mechanics +1308.5222 +1308.5227 Mesoscale and Nanoscale Physics +1308.5232 Cosmology and Nongalactic Astrophysics +1308.5235 Solar and Stellar Astrophysics +1308.5237 Instrumentation and Methods for Astrophysics +1308.5240 +1308.5242 Phenomenology +1308.5245 Solar and Stellar Astrophysics +1308.5256 Data Structures and Algorithms +1308.5259 Algebraic Geometry +1308.5262 Representation Theory +1308.5263 Fluid Dynamics +1308.5267 Numerical Analysis +1308.5268 Functional Analysis +1308.5273 Social and Information Networks +1308.5275 Learning +1308.5276 Functional Analysis +1308.5277 Materials Science +1308.5278 Geometric Topology +1308.5279 Differential Geometry +1308.5281 Learning +1308.5284 Materials Science +1308.5285 Commutative Algebra +1308.5291 Atomic and Molecular Clusters +1308.5293 Functional Analysis +1308.5294 Optimization and Control +1308.5300 History and Overview +1308.5306 Exactly Solvable and Integrable Systems +1308.5310 Networking and Internet Architecture +1308.5314 Numerical Analysis +1308.5316 Chemical Physics +1308.5317 Physics and Society +1308.5318 Probability +1308.5321 Artificial Intelligence +1308.5323 Spectral Theory +1308.5326 Cryptography and Security +1308.5329 Logic in Computer Science +1308.5330 Systems and Control +1308.5331 Systems and Control +1308.5332 Systems and Control +1308.5333 Systems and Control +1308.5334 Systems and Control +1308.5335 Formal Languages and Automata Theory +1308.5336 Logic in Computer Science +1308.5337 Software Engineering +1308.5338 Learning +1308.5339 Systems and Control +1308.5340 Spectral Theory +1308.5343 Statistics Theory +1308.5344 Theory +1308.5347 Phenomenology +1308.5350 Materials Science +1308.5352 Combinatorics +1308.5355 Algebraic Geometry +1308.5358 Populations and Evolution +1308.5360 Networking and Internet Architecture +1308.5366 Differential Geometry +1308.5368 Materials Science +1308.5373 Information Theory +1308.5374 Artificial Intelligence +1308.5378 +1308.5379 Phenomenology +1308.5383 Exactly Solvable and Integrable Systems +1308.5384 +1308.5390 Methodology +1308.5391 +1308.5394 Number Theory +1308.5395 Digital Libraries +1308.5399 Combinatorics +1308.5400 Commutative Algebra +1308.5402 +1308.5409 Logic in Computer Science +1308.5414 Solar and Stellar Astrophysics +1308.5415 Plasma Physics +1308.5416 Functional Analysis +1308.5421 Cryptography and Security +1308.5423 Computation and Language +1308.5425 Numerical Analysis +1308.5431 Physics Education +1308.5437 Combinatorics +1308.5440 +1308.5441 Classical Analysis and ODEs +1308.5442 High Energy Astrophysical Phenomena +1308.5443 Representation Theory +1308.5444 Data Structures and Algorithms +1308.5445 Algebraic Geometry +1308.5449 Soft Condensed Matter +1308.5458 Theory +1308.5462 Cosmology and Nongalactic Astrophysics +1308.5463 High Energy Astrophysical Phenomena +1308.5464 Experiment +1308.5466 Combinatorics +1308.5470 Physics and Society +1308.5472 +1308.5473 Exactly Solvable and Integrable Systems +1308.5476 Statistical Mechanics +1308.5479 Soft Condensed Matter +1308.5488 +1308.5489 Experiment +1308.5492 Number Theory +1308.5494 Classical Physics +1308.5495 Materials Science +1308.5496 Accelerator Physics +1308.5499 Computation and Language +1308.5500 Number Theory +1308.5505 Strongly Correlated Electrons +1308.5506 Computational Complexity +1308.5508 Algebraic Geometry +1308.5511 Probability +1308.5515 Logic +1308.5516 Probability +1308.5517 Logic +1308.5518 Solar and Stellar Astrophysics +1308.5520 High Energy Astrophysical Phenomena +1308.5523 Physics Education +1308.5524 Accelerator Physics +1308.5525 Cosmology and Nongalactic Astrophysics +1308.5526 Dynamical Systems +1308.5530 Fluid Dynamics +1308.5534 Statistics Theory +1308.5536 Optimization and Control +1308.5540 Commutative Algebra +1308.5541 Probability +1308.5542 Analysis of PDEs +1308.5547 Representation Theory +1308.5550 Computational Geometry +1308.5551 Number Theory +1308.5557 Functional Analysis +1308.5561 Probability +1308.5572 Data Analysis, Statistics and Probability +1308.5576 Machine Learning +1308.5580 Number Theory +1308.5582 Optics +1308.5584 Metric Geometry +1308.5585 Databases +1308.5586 Group Theory +1308.5587 Computational Physics +1308.5589 +1308.5597 Information Theory +1308.5598 Lattice +1308.5603 Algebraic Geometry +1308.5606 Probability +1308.5612 Functional Analysis +1308.5617 Analysis of PDEs +1308.5620 Combinatorics +1308.5625 Numerical Analysis +1308.5638 Geometric Topology +1308.5639 Plasma Physics +1308.5641 Experiment +1308.5643 Analysis of PDEs +1308.5644 Complex Variables +1308.5651 High Energy Astrophysical Phenomena +1308.5652 Materials Science +1308.5661 Computer Vision and Pattern Recognition +cond-mat/0703083 Mesoscale and Nanoscale Physics +gr-qc/9710001 +quant-ph/0505121 +quant-ph/0510132 +0707.3374 Fluid Dynamics +0712.2556 Atomic Physics +0802.3488 Quantum Algebra +0803.2839 Statistics Theory +0804.4415 Computational Geometry +0804.4464 Combinatorics +0805.2619 Atomic Physics +0806.0678 Differential Geometry +0806.4131 Soft Condensed Matter +0807.0484 Discrete Mathematics +0809.3537 Atomic Physics +0811.2918 Fluid Dynamics +0812.5039 Combinatorics +0903.5515 Algebraic Geometry +0907.4375 Geometric Topology +0911.3931 Classical Analysis and ODEs +1001.0296 Probability +1002.3823 Strongly Correlated Electrons +1003.1189 Statistics Theory +1007.1970 Solar and Stellar Astrophysics +1010.0774 Differential Geometry +1010.1394 Classical Analysis and ODEs +1010.2920 Fluid Dynamics +1010.4558 Atomic Physics +1012.3894 +1012.4930 Atomic Physics +1012.5591 Analysis of PDEs +1102.3250 Theory +1104.3969 Statistics Theory +1105.2995 Analysis of PDEs +1106.1176 +1106.4293 Statistics Theory +1108.2727 Differential Geometry +1111.1421 Phenomenology +1111.2977 Functional Analysis +1111.2980 Operator Algebras +1111.4642 Probability +1111.5080 Networking and Internet Architecture +1111.6260 Differential Geometry +1201.1802 Computational Physics +1202.1688 Fluid Dynamics +1202.2674 Analysis of PDEs +1202.5992 Statistical Mechanics +1203.3305 +1203.3369 Materials Science +1203.5190 Numerical Analysis +1204.3954 Strongly Correlated Electrons +1204.6506 Group Theory +1205.2932 Cosmology and Nongalactic Astrophysics +1206.0407 Number Theory +1206.0798 Strongly Correlated Electrons +1206.0902 Soft Condensed Matter +1206.1846 Machine Learning +1206.3960 Statistical Mechanics +1206.6036 Physics and Society +1206.7035 Materials Science +1207.1043 +1207.1266 Computational Geometry +1207.2047 Analysis of PDEs +1207.6019 Optics +1207.6656 Neural and Evolutionary Computing +1207.6781 Biological Physics +1208.0455 +1208.2742 Mesoscale and Nanoscale Physics +1208.4796 Phenomenology +1208.4917 Superconductivity +1208.6127 Soft Condensed Matter +1209.1008 Soft Condensed Matter +1209.3251 Group Theory +1209.3313 Disordered Systems and Neural Networks +1210.0429 Mesoscale and Nanoscale Physics +1210.1171 +1210.1748 Cosmology and Nongalactic Astrophysics +1210.2018 Social and Information Networks +1210.2097 Numerical Analysis +1210.4752 Social and Information Networks +1210.6822 Classical Analysis and ODEs +1211.0123 Materials Science +1211.2090 Computer Science and Game Theory +1211.2241 +1211.2361 Neural and Evolutionary Computing +1211.2647 Systems and Control +1211.3695 Strongly Correlated Electrons +1211.4715 Number Theory +1211.5824 Phenomenology +1211.7218 Phenomenology +1211.7320 Quantitative Methods +1212.2776 Theory +1212.3701 Earth and Planetary Astrophysics +1212.4180 Experiment +1212.4204 Experiment +1212.4677 Mesoscale and Nanoscale Physics +1212.6322 Strongly Correlated Electrons +1301.0395 +1301.0646 Cosmology and Nongalactic Astrophysics +1301.4390 Optics +1301.6133 +1301.6927 Differential Geometry +1301.7192 Digital Libraries +1302.0544 Mesoscale and Nanoscale Physics +1302.5225 Instrumentation and Detectors +1302.5310 +1302.6574 Information Theory +1302.6672 Analysis of PDEs +1303.1292 Systems and Control +1303.3815 Earth and Planetary Astrophysics +1303.4787 Instrumentation and Methods for Astrophysics +1303.5317 Numerical Analysis +1303.5328 Cosmology and Nongalactic Astrophysics +1303.5341 Cosmology and Nongalactic Astrophysics +1303.5391 Artificial Intelligence +1303.5392 Artificial Intelligence +1303.5393 Artificial Intelligence +1303.5394 Artificial Intelligence +1303.5395 Artificial Intelligence +1303.5396 Artificial Intelligence +1303.5397 Artificial Intelligence +1303.5398 Artificial Intelligence +1303.5399 Artificial Intelligence +1303.5400 Artificial Intelligence +1303.5401 Artificial Intelligence +1303.5402 Artificial Intelligence +1303.5403 Learning +1303.5404 Artificial Intelligence +1303.5405 Artificial Intelligence +1303.5406 Artificial Intelligence +1303.5407 Artificial Intelligence +1303.5408 Artificial Intelligence +1303.5409 Artificial Intelligence +1303.5410 Artificial Intelligence +1303.5411 Artificial Intelligence +1303.5412 Artificial Intelligence +1303.5413 Artificial Intelligence +1303.5414 Artificial Intelligence +1303.5415 Artificial Intelligence +1303.5416 Artificial Intelligence +1303.5417 Artificial Intelligence +1303.5418 Artificial Intelligence +1303.5419 Artificial Intelligence +1303.5420 Artificial Intelligence +1303.5421 Artificial Intelligence +1303.5422 Artificial Intelligence +1303.5423 Artificial Intelligence +1303.5424 Artificial Intelligence +1303.5425 Artificial Intelligence +1303.5426 Artificial Intelligence +1303.5427 Artificial Intelligence +1303.5428 Artificial Intelligence +1303.5429 Artificial Intelligence +1303.5430 Artificial Intelligence +1303.5431 Artificial Intelligence +1303.5432 Artificial Intelligence +1303.5433 Artificial Intelligence +1303.5434 Artificial Intelligence +1303.5435 Artificial Intelligence +1303.5436 Artificial Intelligence +1303.5437 Artificial Intelligence +1303.5438 Artificial Intelligence +1303.5439 Artificial Intelligence +1303.5440 Artificial Intelligence +1303.5442 Systems and Control +1303.5448 Mesoscale and Nanoscale Physics +1303.5450 Probability +1303.5454 Solar and Stellar Astrophysics +1303.5455 Fluid Dynamics +1303.5464 Information Theory +1303.5467 Probability +1303.5472 Exactly Solvable and Integrable Systems +1303.5473 Computational Geometry +1303.5476 Mesoscale and Nanoscale Physics +1303.5481 Data Structures and Algorithms +1303.5485 Phenomenology +1303.5494 Soft Condensed Matter +1303.5497 Algebraic Geometry +1303.5502 +1303.5503 Numerical Analysis +1303.5513 Computation and Language +1303.5515 Computation and Language +1303.5517 +1303.5518 Analysis of PDEs +1303.5519 Atmospheric and Oceanic Physics +1303.5521 Analysis of PDEs +1303.5526 Information Theory +1303.5527 Combinatorics +1303.5532 Commutative Algebra +1303.5536 Methodology +1303.5537 Statistical Mechanics +1303.5538 Combinatorics +1303.5539 Statistical Mechanics +1303.5540 Materials Science +1303.5541 Software Engineering +1303.5544 Materials Science +1303.5545 Operator Algebras +1303.5550 Dynamical Systems +1303.5552 Risk Management +1303.5553 Phenomenology +1303.5558 Functional Analysis +1303.5559 Representation Theory +1303.5561 Analysis of PDEs +1303.5563 Materials Science +1303.5571 Classical Analysis and ODEs +1303.5572 Functional Analysis +1303.5573 +1303.5574 Algebraic Geometry +1303.5578 Algebraic Geometry +1303.5580 Materials Science +1303.5582 Materials Science +1303.5583 Analysis of PDEs +1303.5585 Statistical Mechanics +1303.5588 Optimization and Control +1303.5589 Atomic Physics +1303.5592 Soft Condensed Matter +1303.5594 +1303.5597 Solar and Stellar Astrophysics +1303.5600 Classical Analysis and ODEs +1303.5601 Combinatorics +1303.5603 Combinatorics +1303.5609 Algebraic Geometry +1303.5613 Social and Information Networks +1303.5616 Neurons and Cognition +1303.5620 Materials Science +1303.5622 Combinatorics +1303.5624 Probability +1303.5629 Optics +1303.5631 General Topology +1303.5633 Adaptation and Self-Organizing Systems +1303.5634 General Physics +1303.5635 Functional Analysis +1303.5637 Quantum Gases +1303.5647 Statistics Theory +1303.5649 Earth and Planetary Astrophysics +1303.5653 Analysis of PDEs +1303.5655 Information Theory +1303.5657 Fluid Dynamics +1303.5663 Theory +1303.5664 Differential Geometry +1303.5669 +1303.5670 Optimization and Control +1303.5671 +1303.5672 High Energy Astrophysical Phenomena +1303.5673 Social and Information Networks +1303.5675 Social and Information Networks +1303.5676 Dynamical Systems +1303.5677 Functional Analysis +1303.5680 Medical Physics +1303.5683 Optics +1303.5684 History and Philosophy of Physics +1303.5691 Computer Vision and Pattern Recognition +1303.5692 Numerical Analysis +1303.5693 Algebraic Geometry +1303.5697 Operator Algebras +1303.5698 Networking and Internet Architecture +hep-th/0107133 Theory +patt-sol/9908008 Pattern Formation and Solitons +physics/0509260 Fluid Dynamics +physics/0603057 Fluid Dynamics +physics/0611122 Atomic Physics +0708.2769 Logic +0709.0959 Algebraic Topology +0710.2254 Algebraic Topology +0801.1962 Functional Analysis +0801.4217 Representation Theory +0806.4922 Rings and Algebras +0807.1107 Theory +0809.1232 Algebraic Topology +0904.2060 Computer Science and Game Theory +0905.0706 +0908.2607 +0909.5138 Experiment +0910.0749 Combinatorics +1006.0047 Theory +1007.2865 +1008.3710 Geometric Topology +1010.3010 +1101.5741 Rings and Algebras +1103.0717 Risk Management +1103.4982 Algebraic Geometry +1103.5594 Probability +1104.0820 Quantum Gases +1104.3767 Lattice +1105.5186 Category Theory +1110.6598 Functional Analysis +1111.2604 Phenomenology +1112.1868 Methodology +1201.0498 +1201.1428 Materials Science +1201.2247 +1201.2384 Computer Science and Game Theory +1201.2691 High Energy Astrophysical Phenomena +1203.2780 Algebraic Geometry +1204.2519 Discrete Mathematics +1204.2710 Discrete Mathematics +1204.6109 High Energy Astrophysical Phenomena +1205.0122 Biological Physics +1205.3595 +1205.6088 +1206.0049 Theory +1206.1872 Phenomenology +1206.4533 +1206.4534 +1207.0606 Phenomenology +1207.0687 +1207.1193 Cosmology and Nongalactic Astrophysics +1207.1218 +1207.1237 Mesoscale and Nanoscale Physics +1207.4054 Strongly Correlated Electrons +1207.6063 +1207.6325 Trading and Market Microstructure +1207.6587 Phenomenology +1208.1737 Phenomenology +1208.2208 Plasma Physics +1208.2825 Networking and Internet Architecture +1208.4941 Quantum Gases +1208.5564 +1208.5954 Populations and Evolution +1208.6004 Superconductivity +1208.6402 Statistics Theory +1209.0375 Data Structures and Algorithms +1209.1260 Computers and Society +1209.2372 Lattice +1209.3023 Phenomenology +1209.3124 Representation Theory +1209.3182 Atomic Physics +1209.4686 +1209.4979 Algebraic Geometry +1209.5742 Theory +1209.6296 Theory +1210.0495 Biomolecules +1210.2366 Experiment +1210.3680 Statistics Theory +1210.3806 Materials Science +1210.4066 High Energy Astrophysical Phenomena +1210.4335 Phenomenology +1210.4776 Materials Science +1210.5413 Materials Science +1210.5611 Mesoscale and Nanoscale Physics +1210.6310 Superconductivity +1210.6676 High Energy Astrophysical Phenomena +1210.8278 +1211.0573 +1211.0654 Discrete Mathematics +1211.0778 Soft Condensed Matter +1211.2542 +1211.2894 Combinatorics +1211.3096 Mesoscale and Nanoscale Physics +1211.3130 Cosmology and Nongalactic Astrophysics +1211.4258 Networking and Internet Architecture +1211.5131 Cosmology and Nongalactic Astrophysics +1212.0550 Mesoscale and Nanoscale Physics +1212.0936 Chaotic Dynamics +1212.3087 K-Theory and Homology +1212.3343 High Energy Astrophysical Phenomena +1212.3702 +1212.3712 Methodology +1212.4094 +1212.4735 Number Theory +1212.5329 Analysis of PDEs +1212.5660 Logic +1212.5723 Phenomenology +1301.0301 Theory +1301.0314 +1301.0315 Cryptography and Security +1301.0330 Strongly Correlated Electrons +1301.0335 Instrumentation and Detectors +1301.0339 Numerical Analysis +1301.0344 Multimedia +1301.0346 Phenomenology +1301.0347 Strongly Correlated Electrons +1301.0348 Cosmology and Nongalactic Astrophysics +1301.0351 +1301.0352 History and Overview +1301.0363 Computational Engineering, Finance, and Science +1301.0366 History and Philosophy of Physics +1301.0369 Information Theory +1301.0373 Information Theory +1301.0382 Soft Condensed Matter +1301.0384 Information Theory +1301.0386 Dynamical Systems +1301.0391 Geometric Topology +1301.0392 +1301.0397 Superconductivity +1301.0401 Computer Science and Game Theory +1301.0402 Analysis of PDEs +1301.0403 Atomic and Molecular Clusters +1301.0405 Materials Science +1301.0406 Experiment +1301.0411 Differential Geometry +1301.0412 Atomic and Molecular Clusters +1301.0413 Machine Learning +1301.0415 Atomic and Molecular Clusters +1301.0419 Materials Science +1301.0422 Rings and Algebras +1301.0428 Analysis of PDEs +1301.0430 Combinatorics +1301.0431 Atomic Physics +1301.0432 Computer Vision and Pattern Recognition +1301.0433 Atomic and Molecular Clusters +1301.0435 Computer Vision and Pattern Recognition +1301.0438 Exactly Solvable and Integrable Systems +1301.0441 Instrumentation and Methods for Astrophysics +1301.0444 Differential Geometry +1301.0446 Cosmology and Nongalactic Astrophysics +1301.0451 Optimization and Control +1301.0452 Solar and Stellar Astrophysics +1301.0455 +1301.0459 +1301.0460 Combinatorics +1301.0463 Methodology +1301.0464 Phenomenology +1301.0468 Experiment +1301.0470 Differential Geometry +1301.0471 Analysis of PDEs +1301.0472 Algebraic Geometry +1301.0473 Analysis of PDEs +1301.0474 Algebraic Geometry +1301.0476 Networking and Internet Architecture +1301.0480 Geometric Topology +1301.0482 Physics and Society +1301.0483 Atomic Physics +1301.0486 Optimization and Control +1301.0502 +1301.0503 Information Retrieval +1301.0504 Experiment +1301.0505 Classical Analysis and ODEs +1301.0512 Astrophysics of Galaxies +1301.0513 Neurons and Cognition +1301.0516 Representation Theory +1301.0517 Number Theory +1301.0523 Software Engineering +1301.0526 Representation Theory +1301.0528 Systems and Control +1301.0538 Strongly Correlated Electrons +math/0404146 Logic +math/0404542 Operator Algebras +math/0406612 Logic +math/0503626 Operator Algebras +math/0507519 Logic +math/0508272 Logic +math/0509392 Logic +math/0605067 Logic +math/0605734 Algebraic Geometry +math/0607218 Logic +math/0607614 Representation Theory +math/0610291 Algebraic Topology +math/0611131 Logic +math/0612316 Algebraic Topology +math/9808104 Logic +math/9810179 Logic +math/9811011 Classical Analysis and ODEs +math/9904163 Logic +math/9906024 Logic +math/9909115 Logic +0801.3316 Fluid Dynamics +0804.2405 Operator Algebras +0805.1116 +0807.0527 +0903.4493 Representation Theory +0904.4272 Combinatorics +0907.0978 Category Theory +0908.1506 Combinatorics +0910.1933 +0911.1433 Numerical Analysis +0911.2608 Algebraic Topology +0911.4068 +0911.5153 Networking and Internet Architecture +0912.4350 Quantum Algebra +1001.2153 Quantum Algebra +1002.2921 Superconductivity +1004.0824 Operator Algebras +1006.2278 Operator Algebras +1006.2454 Phenomenology +1012.1922 Algebraic Geometry +1012.1964 K-Theory and Homology +1101.4512 Algebraic Geometry +1102.2544 +1102.4990 Quantum Algebra +1104.0040 Statistics Theory +1104.0972 Representation Theory +1104.5282 Superconductivity +1105.3410 Algebraic Geometry +1106.3118 Dynamical Systems +1108.3810 Category Theory +1108.4562 Theory +1111.0360 Populations and Evolution +1111.5346 Theory +1112.0091 Phenomenology +1112.2975 Analysis of PDEs +1112.3276 Biological Physics +1201.4244 Analysis of PDEs +1201.4789 Probability +1201.6375 Materials Science +1201.6448 +1202.1879 +1202.4816 Representation Theory +1202.6444 Computational Complexity +1203.3381 Solar and Stellar Astrophysics +1203.4049 Optimization and Control +1203.4296 +1204.1621 Dynamical Systems +1204.1692 Symplectic Geometry +1204.4581 Phenomenology +1204.6036 +1205.1984 Statistics Theory +1206.0157 Phenomenology +1206.0889 Populations and Evolution +1206.1954 +1206.2041 Metric Geometry +1206.2259 Symplectic Geometry +1206.2575 +1206.2853 Superconductivity +1206.4419 Disordered Systems and Neural Networks +1206.4745 Populations and Evolution +1206.5213 +1206.6290 History and Philosophy of Physics +1206.6610 Operator Algebras +1207.1158 Experiment +1207.1489 History and Philosophy of Physics +1207.1635 History and Philosophy of Physics +1207.1825 General Physics +1207.3600 Category Theory +1207.5977 +1208.1447 Experiment +1208.3597 Algebraic Geometry +1208.3653 Social and Information Networks +1208.5596 Superconductivity +1208.6130 Mesoscale and Nanoscale Physics +1209.1599 +1209.3296 Representation Theory +1210.3565 Analysis of PDEs +1210.5473 Theory +1210.5836 Materials Science +1210.6405 Superconductivity +1210.7520 Analysis of PDEs +1211.0452 Solar and Stellar Astrophysics +1211.1205 Mesoscale and Nanoscale Physics +1211.4680 Materials Science +1211.4907 Computer Vision and Pattern Recognition +1211.5495 +1211.7144 Phenomenology +1212.0203 Phenomenology +1212.0605 Group Theory +1212.0990 Phenomenology +1212.1887 Combinatorics +1212.1907 Spectral Theory +1212.3191 Combinatorics +1212.4089 Materials Science +1212.4141 Statistical Mechanics +1212.4146 Phenomenology +1212.4653 Information Theory +1212.5067 Phenomenology +1212.6320 Superconductivity +1212.6746 +1301.0137 Analysis of PDEs +1301.0880 +1301.3238 Adaptation and Self-Organizing Systems +1301.3978 Phenomenology +1301.4265 Mesoscale and Nanoscale Physics +1301.4491 Accelerator Physics +1301.5141 Probability +1301.6183 Experiment +1301.7212 Methodology +1301.7573 Mesoscale and Nanoscale Physics +1302.0950 Phenomenology +1302.2920 Cosmology and Nongalactic Astrophysics +1302.3410 Phenomenology +1302.3530 Statistical Mechanics +1302.3650 Differential Geometry +1302.4772 Molecular Networks +1302.5381 Phenomenology +1302.6251 +1302.6373 Phenomenology +1302.6953 +1303.0028 Instrumentation and Methods for Astrophysics +1303.0358 Materials Science +1303.0632 Machine Learning +1303.2090 Theory +1303.2446 Digital Libraries +1303.4293 Computation and Language +1303.5034 Accelerator Physics +1303.5318 Mesoscale and Nanoscale Physics +1303.5656 Computer Science and Game Theory +1303.6041 Strongly Correlated Electrons +1303.6679 Instrumentation and Detectors +1304.1692 Information Theory +1304.1815 Number Theory +1304.1840 High Energy Astrophysical Phenomena +1304.1894 Astrophysics of Galaxies +1304.2212 +1304.5298 Symplectic Geometry +1304.5355 Superconductivity +1304.5589 Mesoscale and Nanoscale Physics +1304.5953 Statistical Mechanics +1304.5957 +1305.0335 Mesoscale and Nanoscale Physics +1305.0729 Group Theory +1305.1142 Plasma Physics +1305.1761 Strongly Correlated Electrons +1305.1877 Statistical Mechanics +1305.1907 Theory +1305.2056 Mesoscale and Nanoscale Physics +1305.2165 +1305.2816 +1305.3323 Superconductivity +1305.3343 Mesoscale and Nanoscale Physics +1305.3475 +1305.3818 Phenomenology +1305.4974 Social and Information Networks +1305.6121 +1305.6341 +1305.6385 Analysis of PDEs +1305.6524 Phenomenology +1305.6835 Superconductivity +1306.1364 Cosmology and Nongalactic Astrophysics +1306.1390 Quantitative Methods +1306.1550 Atomic Physics +1306.2665 Information Theory +1306.3258 Strongly Correlated Electrons +1306.5163 Cosmology and Nongalactic Astrophysics +1307.1624 Representation Theory +1307.2007 Combinatorics +1307.3183 Statistical Mechanics +1307.3758 Functional Analysis +1307.5109 Statistical Mechanics +1307.6098 Solar and Stellar Astrophysics +1307.6456 Differential Geometry +1307.6784 Digital Libraries +1307.6845 Phenomenology +1307.6888 Other Condensed Matter +1307.7098 Algebraic Topology +1307.7122 Computer Science and Game Theory +1307.7634 Algebraic Geometry +1307.7879 Phenomenology +1307.8224 Materials Science +1308.0179 Commutative Algebra +1308.0678 Networking and Internet Architecture +1308.0682 Cryptography and Security +1308.0684 Solar and Stellar Astrophysics +1308.0698 Programming Languages +1308.0786 Social and Information Networks +1308.0878 Instrumentation and Detectors +1308.1006 Data Structures and Algorithms +1308.1160 Social and Information Networks +1308.1166 Information Retrieval +1308.1214 Networking and Internet Architecture +1308.1245 +1308.1247 Experiment +1308.1281 Computers and Society +1308.1292 Digital Libraries +1308.1383 +1308.1391 +1308.1415 +1308.1719 Analysis of PDEs +1308.1846 Computers and Society +1308.1874 Soft Condensed Matter +1308.1887 Information Theory +1308.1947 Physics and Society +1308.2144 Data Structures and Algorithms +1308.2220 Superconductivity +1308.2232 Phenomenology +1308.2233 +1308.2234 Artificial Intelligence +1308.2236 Artificial Intelligence +1308.2239 Phenomenology +1308.2240 Artificial Intelligence +1308.2243 Lattice +1308.2248 Systems and Control +1308.2249 Strongly Correlated Electrons +1308.2252 Earth and Planetary Astrophysics +1308.2256 Experiment +1308.2259 Classical Analysis and ODEs +1308.2260 Software Engineering +1308.2261 Number Theory +1308.2265 Mesoscale and Nanoscale Physics +1308.2268 Classical Analysis and ODEs +1308.2270 Quantum Algebra +1308.2271 Algebraic Topology +1308.2272 Systems and Control +1308.2274 Differential Geometry +1308.2280 Mesoscale and Nanoscale Physics +1308.2281 Combinatorics +1308.2284 Geophysics +1308.2285 Classical Physics +1308.2292 Computer Vision and Pattern Recognition +1308.2299 Information Theory +1308.2300 Chemical Physics +1308.2307 Computational Engineering, Finance, and Science +1308.2309 Artificial Intelligence +1308.2310 Databases +1308.2312 Strongly Correlated Electrons +1308.2313 Optics +1308.2316 Complex Variables +1308.2322 Quantum Gases +1308.2325 Accelerator Physics +1308.2327 Strongly Correlated Electrons +1308.2329 Methodology +1308.2330 Strongly Correlated Electrons +1308.2331 Strongly Correlated Electrons +1308.2334 Representation Theory +1308.2338 Information Theory +1308.2345 +1308.2346 Solar and Stellar Astrophysics +1308.2350 Neural and Evolutionary Computing +1308.2354 Information Retrieval +1308.2356 Chaotic Dynamics +1308.2357 Information Theory +1308.2359 Computation and Language +1308.2360 Rings and Algebras +1308.2361 Quantum Algebra +1308.2362 Computers and Society +1308.2363 Probability +1308.2364 Number Theory +1308.2365 Number Theory +1308.2366 +1308.2370 +1308.2371 Symbolic Computation +1308.2372 Information Theory +1308.2373 Functional Analysis +1308.2375 Neural and Evolutionary Computing +1308.2378 Mesoscale and Nanoscale Physics +1308.2380 Biological Physics +1308.2388 Biological Physics +1308.2390 Systems and Control +1308.2392 Numerical Analysis +1308.2393 Multimedia +1308.2394 Logic +1308.2396 Rings and Algebras +1308.2400 Data Structures and Algorithms +1308.2403 Methodology +1308.2410 Software Engineering +1308.2412 Differential Geometry +1308.2415 Functional Analysis +1308.2416 +1308.2418 Probability +1308.2420 Representation Theory +1308.2421 Rings and Algebras +1308.2426 Systems and Control +1308.2433 Digital Libraries +1308.2434 Physics Education +1308.2435 Cryptography and Security +1308.2436 +1308.2437 Materials Science +1308.2438 Theory +1308.2439 Algebraic Topology +1308.2441 Quantum Algebra +1308.2444 Probability +1308.2445 Materials Science +1308.2449 Numerical Analysis +1308.2451 Social and Information Networks +1308.2454 Networking and Internet Architecture +1308.2456 Earth and Planetary Astrophysics +1308.2460 Superconductivity +1308.2464 Computer Vision and Pattern Recognition +1308.2465 Representation Theory +1308.2466 Analysis of PDEs +1308.2468 Software Engineering +1308.2471 Combinatorics +1308.2472 Phenomenology +1308.2473 Distributed, Parallel, and Cluster Computing +1308.2474 Metric Geometry +1308.2476 Solar and Stellar Astrophysics +1308.2480 Distributed, Parallel, and Cluster Computing +1308.2482 Materials Science +1308.2484 Dynamical Systems +1308.2491 Category Theory +1308.2492 Algebraic Geometry +1308.2495 Metric Geometry +1308.2497 Computer Science and Game Theory +1308.2499 Analysis of PDEs +1308.2501 Differential Geometry +1308.2505 Optimization and Control +1308.2508 Superconductivity +1308.2509 Computational Geometry +1308.2510 Functional Analysis +1308.2512 Instrumentation and Methods for Astrophysics +1308.2513 +1308.2514 Differential Geometry +1308.2523 Instrumentation and Methods for Astrophysics +1308.2530 Analysis of PDEs +1308.2534 Cosmology and Nongalactic Astrophysics +1308.2535 Mesoscale and Nanoscale Physics +1308.2537 Populations and Evolution +1308.2538 Complex Variables +1308.2541 Discrete Mathematics +1308.2542 Pattern Formation and Solitons +1308.2551 Cosmology and Nongalactic Astrophysics +1308.2553 Experiment +1308.2556 Materials Science +1308.2563 Instrumentation and Detectors +1308.2566 Superconductivity +1308.2570 General Physics +1308.2571 Metric Geometry +1308.2573 High Energy Astrophysical Phenomena +1308.2576 Computer Science and Game Theory +1308.2584 Commutative Algebra +1308.2585 Instrumentation and Detectors +1308.2588 K-Theory and Homology +1308.2591 Social and Information Networks +1308.2593 Plasma Physics +1308.2600 Networking and Internet Architecture +1308.2605 Materials Science +1308.2606 Optics +1308.2607 Dynamical Systems +1308.2610 Experiment +1308.2611 Pattern Formation and Solitons +1308.2614 Physics Education +1308.2621 Solar and Stellar Astrophysics +1308.2626 General Mathematics +1308.2629 Accelerator Physics +1308.2633 Combinatorics +1308.2638 Operator Algebras +1308.2644 Combinatorics +1308.2648 Probability +1308.2652 Algebraic Geometry +1308.2654 Computer Vision and Pattern Recognition +1308.2658 Complex Variables +1308.2659 Numerical Analysis +1308.2662 Complex Variables +cond-mat/0306212 Superconductivity +dg-ga/9602007 Differential Geometry +math/0204099 Quantum Algebra +math/0309066 Quantum Algebra +math/0406475 Category Theory +math/0408120 Category Theory +math/0606472 Category Theory +nucl-th/0607006 +0803.3894 Number Theory +0806.4436 Chaotic Dynamics +0807.3369 +0809.0134 Algebraic Geometry +0809.0287 Algebraic Geometry +0809.0682 +0809.4793 General Physics +0810.0368 Metric Geometry +0810.2291 Optics +0812.2467 +0903.1456 Functional Analysis +0905.2191 Algebraic Geometry +0908.3426 Complex Variables +0910.5430 Differential Geometry +0910.5660 +0911.5137 Representation Theory +0912.0010 Theory +0912.0593 Algebraic Geometry +0912.2382 Combinatorics +1001.1460 Group Theory +1004.0732 Representation Theory +1004.0934 Group Theory +1007.1738 Probability +1007.2796 High Energy Astrophysical Phenomena +1007.3538 Probability +1010.1621 Phenomenology +1010.6111 Probability +1012.0537 Group Theory +1101.0703 K-Theory and Homology +1101.3501 Machine Learning +1101.4323 Number Theory +1101.5783 Statistics Theory +1101.5940 Discrete Mathematics +1102.2877 Theory +1102.3362 General Mathematics +1103.0520 Theory +1103.0773 Mesoscale and Nanoscale Physics +1103.3670 Rings and Algebras +1103.4543 High Energy Astrophysical Phenomena +1103.4580 Representation Theory +1103.5685 Populations and Evolution +1105.1251 Instrumentation and Methods for Astrophysics +1105.5294 Physics and Society +1106.0009 Solar and Stellar Astrophysics +1106.1967 Differential Geometry +1106.2493 Analysis of PDEs +1106.2670 Discrete Mathematics +1106.4778 Combinatorics +1106.5575 +1106.6183 Representation Theory +1109.0001 Combinatorics +1109.0469 Dynamical Systems +1109.0733 Mesoscale and Nanoscale Physics +1109.1080 Solar and Stellar Astrophysics +1109.4613 +1109.5890 Numerical Analysis +1110.0356 Statistics Theory +1110.0502 Cosmology and Nongalactic Astrophysics +1110.2484 Cosmology and Nongalactic Astrophysics +1110.2800 Soft Condensed Matter +1110.3454 Theory +1110.4961 Statistics Theory +1110.4985 Statistics Theory +1111.2176 Mesoscale and Nanoscale Physics +1111.2637 Combinatorics +1111.3113 Mesoscale and Nanoscale Physics +1111.3210 Statistics Theory +1112.2509 Statistics Theory +1112.2977 Plasma Physics +1112.3761 Cellular Automata and Lattice Gases +1112.4624 Adaptation and Self-Organizing Systems +1112.5469 Classical Analysis and ODEs +1201.1472 Logic +1201.5143 +1201.5410 +1202.0909 Probability +1202.0990 Probability +1202.1461 Functional Analysis +1202.1606 Classical Analysis and ODEs +1202.2025 Combinatorics +1202.2032 Probability +1202.4982 Group Theory +1202.5423 Strongly Correlated Electrons +1202.5604 +1203.0418 Mesoscale and Nanoscale Physics +1203.0607 Materials Science +1203.1132 Statistical Mechanics +1203.2618 Astrophysics of Galaxies +1203.3777 +1203.3818 Probability +1203.5119 +1203.5959 Astrophysics of Galaxies +1204.0562 Information Theory +1204.0617 +1204.1972 Theory +1204.2454 Logic +1204.2762 Statistics Theory +1204.4687 Differential Geometry +1204.5833 Differential Geometry +1204.6033 +1205.0932 Cosmology and Nongalactic Astrophysics +1205.0937 Theory +1205.1270 Combinatorics +1205.2542 Classical Analysis and ODEs +1205.2559 Cosmology and Nongalactic Astrophysics +1205.2594 +1205.4225 Strongly Correlated Electrons +1205.5068 Biological Physics +1205.6144 Classical Analysis and ODEs +1205.6411 Populations and Evolution +1205.6432 Learning +1205.6499 +1206.1060 Strongly Correlated Electrons +1206.1106 Machine Learning +1206.2143 High Energy Astrophysical Phenomena +1206.3422 Statistics Theory +1206.4910 Computation +1207.0950 Cosmology and Nongalactic Astrophysics +1207.1227 +1207.1277 Data Structures and Algorithms +1207.4474 Software Engineering +1207.4752 Strongly Correlated Electrons +1207.4763 Information Theory +1207.5028 Combinatorics +1207.5249 Astrophysics of Galaxies +1207.5612 +1207.6419 Probability +1207.6732 Distributed, Parallel, and Cluster Computing +1207.7173 Probability +1208.0500 Superconductivity +1208.0624 +1208.1084 Group Theory +1208.2235 Strongly Correlated Electrons +1208.2608 Complex Variables +1208.3620 Materials Science +1208.4475 Social and Information Networks +1208.4993 Logic in Computer Science +1208.5445 Chaotic Dynamics +1209.0516 Logic in Computer Science +1209.2105 Algebraic Topology +1209.3669 Mesoscale and Nanoscale Physics +1209.6121 Phenomenology +1209.6334 +1210.1065 Rings and Algebras +1210.1783 +1210.1804 Distributed, Parallel, and Cluster Computing +1210.1945 Soft Condensed Matter +1210.1987 Statistical Mechanics +1210.2545 Dynamical Systems +1210.3704 Soft Condensed Matter +1210.4124 +1210.4382 Dynamical Systems +1210.4810 Biological Physics +1210.5033 Experiment +1210.5278 High Energy Astrophysical Phenomena +1210.5680 Quantum Algebra +1210.6564 Plasma Physics +1210.6681 Geometric Topology +1210.6767 Quantum Gases +1210.6776 Phenomenology +1211.0306 Theory +1211.0422 Geometric Topology +1211.0444 +1211.1025 Phenomenology +1211.1304 +1211.2274 Cosmology and Nongalactic Astrophysics +1211.3139 Mesoscale and Nanoscale Physics +1211.3341 Combinatorics +1211.3387 Differential Geometry +1211.5063 Learning +1211.5135 High Energy Astrophysical Phenomena +1211.5229 Instrumentation and Detectors +1211.5616 Pattern Formation and Solitons +1211.6081 Mesoscale and Nanoscale Physics +1211.6168 Differential Geometry +1211.6389 Statistical Mechanics +1211.6613 Quantum Gases +1212.0139 Learning +1212.0338 Mesoscale and Nanoscale Physics +1212.0823 Digital Libraries +1212.1394 +1212.1443 +1212.1524 Neural and Evolutionary Computing +1212.1700 Operator Algebras +1212.2052 Differential Geometry +1212.2126 Machine Learning +1212.2787 Data Analysis, Statistics and Probability +1212.3588 Number Theory +1212.3839 +1212.3846 Mesoscale and Nanoscale Physics +1212.6716 Combinatorics +1301.0334 Experiment +1301.0878 Numerical Analysis +1301.1854 +1301.3368 +1301.3974 Strongly Correlated Electrons +1301.4558 Computer Vision and Pattern Recognition +1301.5796 +1301.5809 Social and Information Networks +1301.5958 Strongly Correlated Electrons +1301.5965 Solar and Stellar Astrophysics +1301.6245 Fluid Dynamics +1301.6859 Classical Analysis and ODEs +1301.6979 Commutative Algebra +1301.7318 Cosmology and Nongalactic Astrophysics +1301.7494 +1301.7614 Commutative Algebra +1301.7730 Mesoscale and Nanoscale Physics +1302.0619 +1302.1793 Applications +1302.2316 Algebraic Geometry +1302.2719 Analysis of PDEs +1302.2895 Probability +1302.2985 Geometric Topology +1302.3100 Geophysics +1302.3160 Information Theory +1302.3261 Neurons and Cognition +1302.3352 Algebraic Geometry +1302.3371 Solar and Stellar Astrophysics +1302.3731 Classical Analysis and ODEs +1302.3790 Applications +1302.3791 +1302.3849 +1302.3882 Representation Theory +1302.3889 Data Structures and Algorithms +1302.3891 +1302.3894 Mathematical Software +1302.3899 Complex Variables +1302.3900 Computer Vision and Pattern Recognition +1302.3904 Number Theory +1302.3905 Functional Analysis +1302.3912 Human-Computer Interaction +1302.3919 Methodology +1302.3920 Differential Geometry +1302.3922 Mesoscale and Nanoscale Physics +1302.3927 Functional Analysis +1302.3928 Astrophysics of Galaxies +1302.3929 Physics Education +1302.3932 Systems and Control +1302.3943 Neurons and Cognition +1302.3946 Data Structures and Algorithms +1302.3947 Mesoscale and Nanoscale Physics +1302.3948 Analysis of PDEs +1302.3952 Phenomenology +1302.3953 Materials Science +1302.3956 Learning +1302.3958 Dynamical Systems +1302.3961 Analysis of PDEs +1302.3963 +1302.3965 Functional Analysis +1302.3969 Systems and Control +1302.3974 Algebraic Geometry +1302.3977 +1302.3978 +1302.3979 Methodology +1302.3981 Classical Physics +1302.3982 Computational Geometry +1302.3984 Earth and Planetary Astrophysics +1302.3991 Phenomenology +1302.3993 Plasma Physics +1302.3995 Instrumentation and Methods for Astrophysics +1302.3996 Soft Condensed Matter +1302.3997 Other Quantitative Biology +1302.3999 Biological Physics +1302.4001 +1302.4010 Cryptography and Security +1302.4011 Probability +1302.4015 Algebraic Geometry +1302.4018 Lattice +1302.4020 Information Theory +1302.4029 Fluid Dynamics +1302.4032 +1302.4040 Number Theory +1302.4044 Plasma Physics +1302.4045 Analysis of PDEs +1302.4046 Networking and Internet Architecture +1302.4048 Plasma Physics +1302.4050 Statistical Mechanics +1302.4051 Neurons and Cognition +1302.4052 Chaotic Dynamics +1302.4053 Digital Libraries +1302.4055 Algebraic Geometry +1302.4059 Distributed, Parallel, and Cluster Computing +1302.4060 Superconductivity +1302.4063 Combinatorics +1302.4064 Data Structures and Algorithms +1302.4066 Chaotic Dynamics +1302.4067 Chaotic Dynamics +1302.4068 Chaotic Dynamics +1302.4071 Optimization and Control +1302.4073 Chaotic Dynamics +1302.4076 Chaotic Dynamics +1302.4078 Chaotic Dynamics +1302.4080 Chaotic Dynamics +1302.4082 Chaotic Dynamics +1302.4083 Strongly Correlated Electrons +1302.4084 Probability +1302.4085 Distributed, Parallel, and Cluster Computing +1302.4086 Classical Analysis and ODEs +1302.4087 Probability +1302.4088 Cosmology and Nongalactic Astrophysics +1302.4089 Solar and Stellar Astrophysics +1302.4090 Populations and Evolution +1302.4092 Physics and Society +1302.4095 Physics and Society +1302.4098 +1302.4099 Physics and Society +1302.4102 Biological Physics +1302.4106 Complex Variables +1302.4107 Physics and Society +1302.4111 Biomolecules +1302.4119 Differential Geometry +1302.4120 Differential Geometry +1302.4123 Combinatorics +1302.4124 Geometric Topology +1302.4127 Information Theory +1302.4129 Information Theory +1302.4130 Information Theory +1302.4133 Cryptography and Security +1302.4134 Algebraic Geometry +1302.4136 Computational Engineering, Finance, and Science +1302.4141 Neural and Evolutionary Computing +1302.4142 +1302.4145 Mesoscale and Nanoscale Physics +1302.4146 Information Theory +1302.4149 Materials Science +1302.4151 Commutative Algebra +1302.4160 Atomic Physics +1302.4162 Atomic Physics +1302.4164 Classical Analysis and ODEs +1302.4165 Analysis of PDEs +1302.4167 Phenomenology +1302.4168 Databases +1302.4170 Number Theory +1302.4171 Solar and Stellar Astrophysics +1302.4172 Hardware Architecture +1302.4173 Optimization and Control +1302.4174 Group Theory +1302.4175 Biological Physics +1302.4177 Materials Science +1302.4179 Solar and Stellar Astrophysics +1302.4181 Pricing of Securities +1302.4185 Mesoscale and Nanoscale Physics +1302.4187 Logic in Computer Science +1302.4188 Optimization and Control +1302.4190 General Topology +1302.4192 General Topology +1302.4193 General Topology +1302.4194 High Energy Astrophysical Phenomena +1302.4195 High Energy Astrophysical Phenomena +1302.4197 Strongly Correlated Electrons +1302.4198 Statistics Theory +1302.4199 Analysis of PDEs +1302.4200 General Topology +1302.4207 Computational Complexity +1302.4208 Phenomenology +1302.4209 Combinatorics +1302.4211 Statistics Theory +1302.4213 Data Structures and Algorithms +1302.4214 Combinatorics +1302.4218 Analysis of PDEs +1302.4219 Combinatorics +1302.4220 Materials Science +1302.4221 Differential Geometry +1302.4223 Atmospheric and Oceanic Physics +1302.4224 Analysis of PDEs +1302.4225 Information Theory +1302.4228 +1302.4230 Chemical Physics +1302.4233 Multimedia +1302.4239 Combinatorics +1302.4241 Spectral Theory +1302.4243 Optics +1302.4249 Combinatorics +1302.4251 Number Theory +1302.4253 Analysis of PDEs +1302.4255 Representation Theory +1302.4257 Neurons and Cognition +1302.4258 Information Theory +1302.4269 Numerical Analysis +1302.4280 Distributed, Parallel, and Cluster Computing +1302.4293 Materials Science +1302.4294 Instrumentation and Detectors +1302.4299 Mesoscale and Nanoscale Physics +1302.4307 Differential Geometry +1302.4309 Dynamical Systems +1302.4315 Differential Geometry +1302.4317 Numerical Analysis +1302.4324 Instrumentation and Detectors +1302.4327 Analysis of PDEs +1302.4334 Solar and Stellar Astrophysics +1302.4335 Analysis of PDEs +1302.4338 Algebraic Geometry +1302.4339 Probability +1302.4342 High Energy Astrophysical Phenomena +1302.4343 Functional Analysis +1302.4347 Data Structures and Algorithms +1302.4355 Optimization and Control +1302.4358 Functional Analysis +1302.4359 Combinatorics +1302.4361 Algebraic Geometry +1302.4364 Superconductivity +1302.4370 Category Theory +1302.4373 Applications +1302.4380 History and Philosophy of Physics +1302.4388 Differential Geometry +1302.4390 Methodology +1302.4392 Statistical Mechanics +1302.4400 Computational Geometry +1302.4401 Combinatorics +1302.4405 Information Theory +1302.4406 Formal Languages and Automata Theory +1302.4409 Combinatorics +1302.4413 Analysis of PDEs +1302.4426 Data Structures and Algorithms +cond-mat/0503580 Materials Science +gr-qc/0504118 +math-ph/0411055 +math-ph/0702070 +math/0602011 Combinatorics +math/0605492 Number Theory +math/0611756 Group Theory +math/0611758 Group Theory +physics/0503174 Classical Physics +physics/0503204 Classical Physics +0708.1878 +0712.1482 Other Condensed Matter +0801.0668 Soft Condensed Matter +0801.2564 +0804.0529 +0906.3177 Numerical Analysis +0909.1618 Materials Science +0910.5575 Soft Condensed Matter +0911.3988 Probability +1002.2174 Analysis of PDEs +1002.2175 Analysis of PDEs +1008.3276 Computational Finance +1008.4373 Computation +1009.0976 +1011.5468 Analysis of PDEs +1101.5364 Hardware Architecture +1102.1600 Networking and Internet Architecture +1102.2871 Analysis of PDEs +1102.5678 Probability +1103.4117 Spectral Theory +1105.6064 Phenomenology +1106.2387 Probability +1106.3701 Mesoscale and Nanoscale Physics +1106.5922 Theory +1107.2365 +1107.4472 Rings and Algebras +1108.0967 Differential Geometry +1108.5160 Spectral Theory +1111.3316 Algebraic Geometry +1111.3940 General Physics +1112.1590 Analysis of PDEs +1112.2613 +1201.1280 Dynamical Systems +1201.2186 Algebraic Geometry +1201.2386 Information Theory +1201.2686 Algebraic Topology +1201.2907 Analysis of PDEs +1202.0058 Cosmology and Nongalactic Astrophysics +1202.0580 Dynamical Systems +1202.1305 Algebraic Topology +1202.4290 Chaotic Dynamics +1203.1127 +1204.0086 Numerical Analysis +1204.0601 Quantum Algebra +1204.5005 Dynamical Systems +1205.0062 Combinatorics +1205.3186 Combinatorics +1205.4611 Distributed, Parallel, and Cluster Computing +1205.6195 +1206.0024 +1206.1765 +1207.0542 Mesoscale and Nanoscale Physics +1207.1706 Theory +1207.6056 Probability +1207.6073 Optimization and Control +1207.6245 Statistical Mechanics +1208.1964 Superconductivity +1208.4020 Quantum Gases +1208.4717 Superconductivity +1208.5047 General Physics +1208.5625 Commutative Algebra +1208.6036 Dynamical Systems +1209.0148 Mesoscale and Nanoscale Physics +1209.1069 Medical Physics +1209.1921 Experiment +1209.2661 +1209.2928 Disordered Systems and Neural Networks +1209.2963 Solar and Stellar Astrophysics +1209.2969 Solar and Stellar Astrophysics +1209.3158 Optics +1209.5132 Mesoscale and Nanoscale Physics +1210.1096 Quantum Gases +1210.1113 +1210.3519 Disordered Systems and Neural Networks +1210.3533 Materials Science +1210.3623 Quantum Gases +1210.4755 Phenomenology +1210.4780 Statistical Mechanics +1210.4979 Soft Condensed Matter +1210.5107 +1210.5409 +1210.5994 Soft Condensed Matter +1210.6982 Phenomenology +1210.7454 Theory +1210.7591 General Mathematics +1210.7803 Phenomenology +1210.7905 Other Condensed Matter +1210.8027 Materials Science +1210.8136 Astrophysics of Galaxies +1211.0068 Dynamical Systems +1211.0190 Materials Science +1211.0612 Optics +1211.1158 Cryptography and Security +1211.1886 +1211.1976 Phenomenology +1211.2232 Cosmology and Nongalactic Astrophysics +1211.3723 Optics +1211.4465 Disordered Systems and Neural Networks +1211.6552 Operator Algebras +1211.7189 Mesoscale and Nanoscale Physics +1212.0260 Phenomenology +1212.0302 Materials Science +1212.0638 Digital Libraries +1212.0641 +1212.2581 Mesoscale and Nanoscale Physics +1212.3301 Theory +1212.3413 Operator Algebras +1212.3901 Strongly Correlated Electrons +1212.4205 Functional Analysis +1212.5629 Mesoscale and Nanoscale Physics +1212.5724 General Topology +1212.6009 Information Theory +1301.0642 Functional Analysis +1301.1913 Materials Science +1301.3111 +1301.6049 Solar and Stellar Astrophysics +1301.6057 Fluid Dynamics +1301.7215 Representation Theory +1302.0197 Strongly Correlated Electrons +1302.0577 Algebraic Geometry +1302.1332 Materials Science +1302.1691 +1302.2458 Solar and Stellar Astrophysics +1302.2746 Atomic Physics +1302.3490 Mesoscale and Nanoscale Physics +1302.4283 Networking and Internet Architecture +1302.4554 Rings and Algebras +1302.4910 Analysis of PDEs +1302.5050 General Physics +1302.5054 Algebraic Geometry +1302.5105 Soft Condensed Matter +1302.5109 Operating Systems +1302.5120 Cryptography and Security +1302.5121 Combinatorics +1302.5125 Machine Learning +1302.5128 Subcellular Processes +1302.5130 Information Theory +1302.5134 Machine Learning +1302.5140 Strongly Correlated Electrons +1302.5141 High Energy Astrophysical Phenomena +1302.5142 Tissues and Organs +1302.5155 Superconductivity +1302.5157 Mesoscale and Nanoscale Physics +1302.5158 Cryptography and Security +1302.5166 Information Theory +1302.5167 Cosmology and Nongalactic Astrophysics +1302.5168 Information Theory +1302.5169 Software Engineering +1302.5170 Software Engineering +1302.5171 Performance +1302.5173 Networking and Internet Architecture +1302.5174 Logic in Computer Science +1302.5175 Software Engineering +1302.5177 Human-Computer Interaction +1302.5178 Cosmology and Nongalactic Astrophysics +1302.5179 Differential Geometry +1302.5180 Numerical Analysis +1302.5181 Formal Languages and Automata Theory +1302.5189 Computer Vision and Pattern Recognition +1302.5195 Computers and Society +1302.5196 Computers and Society +1302.5199 Computers and Society +1302.5200 Computers and Society +1302.5205 Information Theory +1302.5206 Methodology +1302.5211 High Energy Astrophysical Phenomena +1302.5213 Chemical Physics +1302.5214 Optics +1302.5215 Artificial Intelligence +1302.5219 Lattice +1302.5220 Soft Condensed Matter +1302.5221 Statistics Theory +1302.5223 Commutative Algebra +1302.5233 Methodology +1302.5237 Methodology +1302.5241 Materials Science +1302.5243 Materials Science +1302.5245 Functional Analysis +1302.5247 Earth and Planetary Astrophysics +1302.5249 +1302.5252 Phenomenology +1302.5254 Logic in Computer Science +1302.5255 Phenomenology +1302.5256 Experiment +1302.5258 Dynamical Systems +1302.5264 Accelerator Physics +1302.5267 Number Theory +1302.5269 +1302.5272 Optics +1302.5274 Analysis of PDEs +1302.5275 Solar and Stellar Astrophysics +1302.5281 +1302.5286 Mesoscale and Nanoscale Physics +1302.5287 General Topology +1302.5293 Materials Science +1302.5295 Classical Analysis and ODEs +1302.5296 +1302.5297 Algebraic Geometry +1302.5299 Number Theory +1302.5302 Information Retrieval +1302.5304 Combinatorics +1302.5305 Numerical Analysis +1302.5306 Accelerator Physics +1302.5307 Complex Variables +1302.5311 +1302.5322 Functional Analysis +1302.5331 Neurons and Cognition +1302.5332 Computer Science and Game Theory +1302.5333 Dynamical Systems +1302.5334 Combinatorics +1302.5335 Statistical Mechanics +1302.5339 Portfolio Management +1302.5340 Instrumentation and Detectors +1302.5342 Discrete Mathematics +1302.5345 Number Theory +1302.5347 High Energy Astrophysical Phenomena +1302.5350 Optics +1302.5359 High Energy Astrophysical Phenomena +1302.5361 Chaotic Dynamics +1302.5363 Analysis of PDEs +1302.5370 Group Theory +1302.5372 Commutative Algebra +1302.5373 Classical Analysis and ODEs +1302.5377 Earth and Planetary Astrophysics +1302.5379 Mesoscale and Nanoscale Physics +1302.5384 Information Theory +1302.5386 Analysis of PDEs +1302.5393 Logic +1302.5395 Differential Geometry +1302.5397 Physics Education +1302.5401 Data Structures and Algorithms +1302.5402 Differential Geometry +1302.5406 Complex Variables +1302.5410 Algebraic Geometry +1302.5411 Rings and Algebras +1302.5412 +1302.5415 Optimization and Control +cond-mat/0307466 Soft Condensed Matter +cond-mat/0507129 Other Condensed Matter +1311.6839 Computational Geometry +1311.6868 Molecular Networks +0709.3026 Differential Geometry +0710.2026 Analysis of PDEs +0712.0377 Soft Condensed Matter +0712.2827 Soft Condensed Matter +0805.1673 Analysis of PDEs +0806.2771 Group Theory +0806.3452 Geometric Topology +0807.0837 Differential Geometry +0812.0650 Representation Theory +0812.0655 Representation Theory +0901.2104 Soft Condensed Matter +0902.3039 Classical Analysis and ODEs +0903.1996 Classical Analysis and ODEs +0903.3423 +0904.4922 Soft Condensed Matter +0905.1318 Geometric Topology +0905.3497 Soft Condensed Matter +0906.0025 Soft Condensed Matter +0908.0688 Analysis of PDEs +0909.0605 Statistical Mechanics +1001.1080 Combinatorics +1002.1280 Statistics Theory +1003.2938 +1005.4676 Theory +1006.0315 Symplectic Geometry +1006.4582 Statistics Theory +1007.1443 Differential Geometry +1007.3935 Probability +1007.5456 +1008.2079 Soft Condensed Matter +1008.2801 Instrumentation and Methods for Astrophysics +1009.0507 Probability +1009.3573 Analysis of PDEs +1009.4785 Statistical Finance +1010.2955 Information Theory +1011.0215 Analysis of PDEs +1011.5810 Statistical Finance +1011.6414 Dynamical Systems +1012.1116 Soft Condensed Matter +1012.2194 Geometric Topology +1012.3447 Soft Condensed Matter +1012.3449 Soft Condensed Matter +1012.4224 Phenomenology +1101.1194 Logic +1101.2480 Geometric Topology +1101.4850 Analysis of PDEs +1102.1895 Probability +1102.2818 Statistics Theory +1106.1437 Strongly Correlated Electrons +1106.1741 Soft Condensed Matter +1106.2930 Cosmology and Nongalactic Astrophysics +1106.4698 General Physics +1107.3440 Analysis of PDEs +1107.4143 Representation Theory +1108.2306 Representation Theory +1108.3180 Applications +1108.5857 +1109.0856 Computational Physics +1110.0697 +1110.1840 Algebraic Geometry +1110.4433 Phenomenology +1111.5272 Information Theory +1112.4250 Formal Languages and Automata Theory +1112.5187 Complex Variables +1112.6328 High Energy Astrophysical Phenomena +1201.2224 Classical Physics +1201.3120 Numerical Analysis +1201.4366 Probability +1201.4605 Symplectic Geometry +1201.5058 +1201.5109 Optics +1201.5991 Numerical Analysis +1201.6480 Classical Analysis and ODEs +1202.2701 Algebraic Geometry +1202.2858 Cosmology and Nongalactic Astrophysics +1202.3796 Soft Condensed Matter +1202.3975 Strongly Correlated Electrons +1202.5310 Astrophysics of Galaxies +1202.5416 Accelerator Physics +1202.5780 Geometric Topology +1202.5980 Probability +1203.3068 Functional Analysis +1203.5302 +1203.5346 Applications +1203.5465 Differential Geometry +1203.6225 Superconductivity +1203.6228 Statistical Mechanics +1204.0223 General Physics +1204.1117 Theory +1204.1329 Statistical Mechanics +1204.1986 Rings and Algebras +1204.5713 +1205.2024 +1205.2514 +1205.3358 +1205.3598 Probability +1205.3884 Superconductivity +1205.4358 Probability +1205.4585 +1205.5278 Strongly Correlated Electrons +1205.5957 Experiment +1206.2326 +1206.2504 Strongly Correlated Electrons +1206.3921 Experiment +1206.4416 Differential Geometry +1206.4721 +1206.5173 Solar and Stellar Astrophysics +1206.6007 Soft Condensed Matter +1206.6059 Mesoscale and Nanoscale Physics +1206.6960 Atomic and Molecular Clusters +1206.7036 +1207.1067 Number Theory +1207.1130 Experiment +1207.1509 +1207.1548 Logic +1207.1898 Experiment +1207.2485 +1207.3028 Mesoscale and Nanoscale Physics +1207.3486 Superconductivity +1207.4321 Cosmology and Nongalactic Astrophysics +1207.4724 Experiment +1207.4879 +1207.7235 Experiment +1208.0743 Strongly Correlated Electrons +1208.1661 Computer Science and Game Theory +1208.1972 Representation Theory +1208.2283 Phenomenology +1208.2672 Theory +1208.2923 +1208.3647 Theory +1208.4540 Adaptation and Self-Organizing Systems +1208.4859 Experiment +1208.4920 +1208.5674 Plasma Physics +1208.6184 Classical Analysis and ODEs +1208.6418 Instrumentation and Methods for Astrophysics +1209.0441 +1209.1402 Information Theory +1209.2417 Theory +1209.2975 Populations and Evolution +1209.3576 Spectral Theory +1209.4564 Phenomenology +1209.5071 Information Theory +1209.5510 +1209.5952 +1209.6171 Statistical Mechanics +1209.6391 Classical Analysis and ODEs +1210.0061 Cryptography and Security +1210.0136 Theory +1210.0137 Computers and Society +1210.0811 Statistical Mechanics +1210.1531 Materials Science +1210.1786 Lattice +1210.2718 Theory +1210.3306 +1210.5400 Statistical Mechanics +1210.7121 Mesoscale and Nanoscale Physics +1210.8021 Combinatorics +1210.8442 Artificial Intelligence +1211.0922 Superconductivity +1211.0955 Theory +1211.1278 Cosmology and Nongalactic Astrophysics +1211.1730 Group Theory +1211.1927 +1211.2203 +1211.2276 Quantum Gases +1211.3822 Probability +1211.4170 Dynamical Systems +1211.4410 Learning +1211.4608 Algebraic Geometry +1211.4669 Differential Geometry +1211.4836 Solar and Stellar Astrophysics +1211.5735 Information Theory +1211.5775 Mesoscale and Nanoscale Physics +1211.7040 Cosmology and Nongalactic Astrophysics +1212.1150 Dynamical Systems +1212.4083 Numerical Analysis +1212.5314 Chaotic Dynamics +1212.5667 Information Theory +1301.0101 Distributed, Parallel, and Cluster Computing +1301.0159 Computers and Society +1301.0293 Combinatorics +1301.0615 Popular Physics +1301.1013 Digital Libraries +1301.2044 +1301.2076 General Finance +1301.2128 Strongly Correlated Electrons +1301.3144 Astrophysics of Galaxies +1301.4293 Learning +1301.4657 Combinatorics +1301.4931 Number Theory +1301.5027 History and Overview +1301.5127 Optics +1301.5246 Rings and Algebras +1301.5436 Algebraic Geometry +1301.5475 Physics and Society +1301.5607 Information Theory +1301.5685 Instrumentation and Detectors +1301.5686 Computation and Language +1301.5928 Networking and Internet Architecture +1301.5937 Information Theory +1301.5942 Information Theory +1301.6178 Instrumentation and Detectors +1301.6179 Distributed, Parallel, and Cluster Computing +1301.6180 Distributed, Parallel, and Cluster Computing +1301.6181 Materials Science +1301.6184 Cosmology and Nongalactic Astrophysics +1301.6187 Geometric Topology +1301.6188 Lattice +1301.6191 Information Retrieval +1301.6193 +1301.6195 Distributed, Parallel, and Cluster Computing +1301.6198 Information Theory +1301.6200 +1301.6201 Probability +1301.6209 Information Theory +1301.6213 Theory +1301.6214 +1301.6215 Materials Science +1301.6218 Strongly Correlated Electrons +1301.6222 Number Theory +1301.6224 Combinatorics +1301.6225 Disordered Systems and Neural Networks +1301.6226 Functional Analysis +1301.6229 Analysis of PDEs +1301.6230 Optimization and Control +1301.6239 Complex Variables +1301.6240 Group Theory +1301.6241 Solar and Stellar Astrophysics +1301.6243 Astrophysics of Galaxies +1301.6244 Solar and Stellar Astrophysics +1301.6247 Fluid Dynamics +1301.6249 Fluid Dynamics +1301.6250 Functional Analysis +1301.6254 Materials Science +1301.6255 Information Theory +1301.6258 Cellular Automata and Lattice Gases +1301.6260 Programming Languages +1301.6262 Artificial Intelligence +1301.6263 Cryptography and Security +1301.6266 +1301.6269 +1301.6270 Methodology +1301.6274 Phenomenology +1301.6277 Social and Information Networks +1301.6278 Methodology +1301.6279 Strongly Correlated Electrons +1301.6282 Computation +1301.6285 Number Theory +1301.6288 Adaptation and Self-Organizing Systems +1301.6291 Information Theory +1301.6293 Metric Geometry +1301.6299 Data Structures and Algorithms +1301.6302 Information Theory +1301.6306 Fluid Dynamics +1301.6311 +1301.6313 Analysis of PDEs +1301.6315 Information Theory +1301.6319 Other Computer Science +1301.6321 Optimization and Control +1301.6322 +1301.6324 Computer Vision and Pattern Recognition +1301.6328 Group Theory +1301.6329 Probability +1301.6331 Information Theory +1301.6336 Computational Geometry +1301.6338 Algebraic Geometry +1301.6341 Statistical Mechanics +1301.6343 +1301.6345 Information Theory +1301.6347 Cosmology and Nongalactic Astrophysics +1301.6348 Information Theory +1301.6354 Probability +1301.6355 Strongly Correlated Electrons +1301.6365 Computation +1301.6366 Differential Geometry +1301.6373 Cosmology and Nongalactic Astrophysics +1301.6376 Methodology +1301.6385 Probability +1301.6386 Systems and Control +1301.6387 Probability +1301.6388 Information Theory +1301.6389 Probability +1301.6390 Probability +1301.6391 History and Overview +1301.6392 Statistics Theory +1301.6394 Probability +1301.6397 Information Theory +1301.6398 Information Theory +1301.6400 Multiagent Systems +1301.6404 Optics +1301.6406 Information Theory +1301.6408 Information Theory +1301.6409 Optimization and Control +1301.6415 General Finance +1301.6418 Chemical Physics +1301.6420 Analysis of PDEs +1301.6421 Phenomenology +1301.6424 Combinatorics +1301.6426 Information Theory +1301.6427 Information Theory +1301.6428 Data Structures and Algorithms +1301.6433 Information Theory +1301.6434 Instrumentation and Methods for Astrophysics +1301.6443 Optimization and Control +1301.6447 Data Structures and Algorithms +1301.6448 Dynamical Systems +1301.6453 Information Theory +1301.6457 Commutative Algebra +1301.6458 Mesoscale and Nanoscale Physics +1301.6463 Differential Geometry +1301.6468 Probability +1301.6469 Classical Analysis and ODEs +1301.6472 Classical Physics +1301.6473 Information Theory +1301.6475 Combinatorics +1301.6482 +1301.6483 Theory +1301.6484 Information Theory +1301.6487 +1301.6488 Numerical Analysis +1301.6493 Metric Geometry +1301.6506 Statistical Finance +1301.6510 Probability +1301.6513 Metric Geometry +1301.6514 Differential Geometry +1301.6515 Phenomenology +1301.6516 Number Theory +1301.6517 Mesoscale and Nanoscale Physics +1301.6519 General Finance +1301.6522 Information Theory +1301.6523 +1301.6526 Lattice +1301.6537 Materials Science +1301.6539 Phenomenology +1301.6540 Combinatorics +1301.6551 +1301.6553 Computers and Society +1301.6558 Theory +1301.6559 Computation +1301.6564 Optics +1301.6572 Logic in Computer Science +1301.6574 Social and Information Networks +1301.6575 Experiment +1301.6581 Analysis of PDEs +1301.6586 Classical Analysis and ODEs +1301.6590 Lattice +1301.6593 Fluid Dynamics +1301.6595 K-Theory and Homology +1301.6596 General Mathematics +1301.6598 History and Overview +1301.6601 Materials Science +1301.6603 Fluid Dynamics +1301.6604 Classical Analysis and ODEs +1301.6605 Rings and Algebras +1301.6606 History and Overview +1301.6609 Probability +1301.6612 Combinatorics +1301.6616 Optimization and Control +1301.6621 Dynamical Systems +1301.6626 Learning +1301.6628 Data Structures and Algorithms +1301.6638 Trading and Market Microstructure +1301.6641 Combinatorics +1301.6644 Networking and Internet Architecture +1301.6649 Materials Science +1301.6653 Theory +1301.6657 Cosmology and Nongalactic Astrophysics +1301.6658 +1301.6662 Optimization and Control +1301.6665 Representation Theory +1301.6666 Accelerator Physics +1301.6667 Metric Geometry +1301.6671 Accelerator Physics +1301.6673 Instrumentation and Methods for Astrophysics +astro-ph/0505369 +cond-mat/0109357 Strongly Correlated Electrons +cond-mat/0411334 Soft Condensed Matter +cond-mat/0612029 Soft Condensed Matter +math/0103172 Analysis of PDEs +math/0410215 Differential Geometry +math/0504137 Analysis of PDEs +math/0605682 Analysis of PDEs +0804.1688 +0807.3498 Dynamical Systems +0812.2291 Data Structures and Algorithms +0910.2137 Complex Variables +0910.2213 Chaotic Dynamics +0912.0081 Plasma Physics +1007.2215 Chaotic Dynamics +1007.2444 Medical Physics +1101.5231 Rings and Algebras +1103.0843 Networking and Internet Architecture +1103.5189 Statistical Finance +1104.0595 Rings and Algebras +1107.0541 General Physics +1107.2549 Algebraic Geometry +1108.6312 Information Theory +1110.4547 Operator Algebras +1112.2738 Machine Learning +1112.5964 Mesoscale and Nanoscale Physics +1201.1521 +1202.3983 Strongly Correlated Electrons +1202.6141 Information Theory +1203.1119 Geometric Topology +1203.2498 Computation and Language +1204.0025 Earth and Planetary Astrophysics +1204.2282 Classical Analysis and ODEs +1204.6697 Number Theory +1205.0154 Phenomenology +1205.0188 Differential Geometry +1206.2345 Plasma Physics +1206.3075 Physics and Society +1206.5986 Information Theory +1206.6008 Theory +1206.6095 +1206.6907 Algebraic Geometry +1207.1819 +1207.3886 Materials Science +1208.0317 Statistical Finance +1208.1903 Combinatorics +1208.2667 +1208.3996 Strongly Correlated Electrons +1208.4656 Information Theory +1208.5001 Mesoscale and Nanoscale Physics +1209.2520 Statistical Mechanics +1209.2716 Phenomenology +1209.2878 Differential Geometry +1209.4139 +1209.4950 Physics and Society +1209.5752 Cosmology and Nongalactic Astrophysics +1209.5903 Logic in Computer Science +1210.0920 Algebraic Geometry +1210.1761 Cosmology and Nongalactic Astrophysics +1210.2057 Functional Analysis +1210.2311 Experiment +1210.2759 Group Theory +1210.3419 +1210.4205 +1210.5315 +1210.5519 Strongly Correlated Electrons +1210.5657 +1210.8321 Astrophysics of Galaxies +1210.8373 Quantum Gases +1211.1100 Algebraic Geometry +1211.1940 Optimization and Control +1211.2371 Phenomenology +1211.3435 Dynamical Systems +1211.4111 Phenomenology +1211.4710 Combinatorics +1211.5445 +1211.5977 Optics +1211.6880 Superconductivity +1211.7365 Probability +1212.0400 Chemical Physics +1212.1640 +1212.2615 Cosmology and Nongalactic Astrophysics +1212.2673 Superconductivity +1212.3545 Mesoscale and Nanoscale Physics +1212.4415 Functional Analysis +1212.4927 +1212.5034 Optics +1212.5366 +1212.5521 Phenomenology +1212.6660 Experiment +1301.1066 +1301.1312 Cosmology and Nongalactic Astrophysics +1301.2233 Experiment +1301.2344 Mesoscale and Nanoscale Physics +1301.2788 +1301.3551 Learning +1301.3992 Mesoscale and Nanoscale Physics +1301.3995 Mesoscale and Nanoscale Physics +1301.5286 Experiment +1301.5879 Materials Science +1301.7355 Strongly Correlated Electrons +1301.7419 Cosmology and Nongalactic Astrophysics +1302.1221 +1302.1886 Physics and Society +1302.2644 Lattice +1302.2872 +1302.3038 +1302.3970 +1302.4588 Metric Geometry +1302.5655 Cosmology and Nongalactic Astrophysics +1302.5877 Analysis of PDEs +1302.6048 Phenomenology +1302.6470 Mesoscale and Nanoscale Physics +1302.6499 Phenomenology +1302.7018 Phenomenology +1303.0465 Strongly Correlated Electrons +1303.1255 Strongly Correlated Electrons +1303.1849 Learning +1303.1982 +1303.2057 Optics +1303.2949 Phenomenology +1303.3093 Atomic Physics +1303.3158 Phenomenology +1303.3279 Lattice +1303.3497 Theory +1303.3845 Phenomenology +1303.4154 Theory +1303.4405 Phenomenology +1303.4720 Soft Condensed Matter +1303.5191 Theory +1303.5810 Phenomenology +1303.5923 High Energy Astrophysical Phenomena +1303.6097 Phenomenology +1303.7354 +1303.7360 Experiment +1304.0015 Algebraic Geometry +1304.0040 Mesoscale and Nanoscale Physics +1304.0117 +1304.0364 +1304.0380 Phenomenology +1304.0511 Theory +1304.0576 Phenomenology +1304.0822 Theory +1304.1572 Computer Vision and Pattern Recognition +1304.2682 Phenomenology +1304.2841 +1304.3255 Phenomenology +1304.3290 Materials Science +1304.4326 Distributed, Parallel, and Cluster Computing +1304.4414 Phenomenology +1304.6635 +1305.0091 +1305.0369 Phenomenology +1305.0622 Analysis of PDEs +1305.3357 +1305.3769 +1305.3844 Number Theory +1305.4731 Other Computer Science +1305.5040 +1305.5202 Accelerator Physics +1305.5345 Metric Geometry +1305.6369 Number Theory +1305.6465 Algebraic Geometry +1305.7390 Genomics +1306.0178 Information Retrieval +1306.0477 Fluid Dynamics +1306.0515 Theory +1306.0516 Theory +1306.0523 Instrumentation and Detectors +1306.0554 Numerical Analysis +1306.0556 +1306.0558 Populations and Evolution +1306.0566 Earth and Planetary Astrophysics +1306.0575 Solar and Stellar Astrophysics +1306.0578 Earth and Planetary Astrophysics +1306.0584 Mesoscale and Nanoscale Physics +1306.0587 Information Theory +1306.0589 +1306.0593 Mesoscale and Nanoscale Physics +1306.0596 Geometric Topology +1306.0612 Numerical Analysis +1306.0616 Combinatorics +1306.0625 Differential Geometry +1306.0626 Learning +1306.0627 Chaotic Dynamics +1306.0628 Plasma Physics +1306.0630 Computational Complexity +1306.0632 Functional Analysis +1306.0633 Chemical Physics +1306.0634 Combinatorics +1306.0635 Optics +1306.0638 Mesoscale and Nanoscale Physics +1306.0649 Computational Complexity +1306.0651 History and Philosophy of Physics +1306.0660 Optics +1306.0661 High Energy Astrophysical Phenomena +1306.0662 Systems and Control +1306.0663 Geophysics +1306.0665 Artificial Intelligence +1306.0673 Experiment +1306.0688 Chaotic Dynamics +1306.0692 +1306.0693 Probability +1306.0694 Optimization and Control +1306.0695 Phenomenology +1306.0697 Chaotic Dynamics +1306.0698 +1306.0699 +1306.0701 Populations and Evolution +1306.0702 +1306.0704 Solar and Stellar Astrophysics +1306.0708 Rings and Algebras +1306.0710 Information Theory +1306.0712 Information Theory +1306.0714 Complex Variables +1306.0717 Complex Variables +1306.0720 Functional Analysis +1306.0724 Functional Analysis +1306.0727 Digital Libraries +1306.0728 Dynamical Systems +1306.0730 Functional Analysis +1306.0733 Learning +1306.0737 Instrumentation and Detectors +1306.0740 Number Theory +1306.0741 Logic in Computer Science +1306.0742 +1306.0743 Materials Science +1306.0745 Number Theory +1306.0748 Analysis of PDEs +1306.0750 Networking and Internet Architecture +1306.0751 Artificial Intelligence +1306.0754 Number Theory +1306.0755 Networking and Internet Architecture +1306.0757 Networking and Internet Architecture +1306.0758 Number Theory +1306.0760 Software Engineering +1306.0761 Networking and Internet Architecture +1306.0762 Software Engineering +1306.0768 Accelerator Physics +1306.0770 Data Analysis, Statistics and Probability +1306.0771 Data Structures and Algorithms +1306.0773 Soft Condensed Matter +1306.0778 Logic +1306.0781 Quantum Algebra +1306.0786 Instrumentation and Detectors +1306.0790 Experiment +1306.0792 Instrumentation and Methods for Astrophysics +1306.0804 Accelerator Physics +1306.0808 Physics and Society +1306.0809 Materials Science +1306.0810 Logic in Computer Science +1306.0813 Social and Information Networks +1306.0814 Logic in Computer Science +1306.0815 General Physics +1306.0816 Computer Science and Game Theory +1306.0817 Methodology +1306.0818 Computation +1306.0822 Differential Geometry +1306.0827 High Energy Astrophysical Phenomena +1306.0829 High Energy Astrophysical Phenomena +1306.0830 General Physics +1306.0844 Atomic Physics +1306.0853 Fluid Dynamics +1306.0854 Number Theory +1306.0856 Number Theory +1306.0858 Instrumentation and Detectors +1306.0859 Differential Geometry +1306.0867 Representation Theory +1306.0870 Commutative Algebra +1306.0874 Classical Physics +1306.0876 Algebraic Geometry +1306.0879 +1306.0886 Learning +math/0201296 Analysis of PDEs +math/0605017 Differential Geometry +0705.1283 Atomic Physics +0806.0901 Representation Theory +0903.3260 High Energy Astrophysical Phenomena +0905.2310 Probability +0905.3832 Differential Geometry +0908.2279 Optics +1001.4611 Classical Analysis and ODEs +1002.4088 Information Theory +1003.1317 Representation Theory +1008.1046 +1009.2483 Algebraic Geometry +1010.4685 Algebraic Geometry +1011.2722 +1102.2047 Quantum Algebra +1102.3462 +1103.2777 Algebraic Geometry +1106.1257 General Mathematics +1106.2200 General Mathematics +1108.1219 Representation Theory +1109.2676 Networking and Internet Architecture +1111.6331 Probability +1112.2845 Quantum Gases +1201.6461 Probability +1201.6597 +1202.3922 +1202.5221 Algebraic Geometry +1203.0151 +1203.4423 Disordered Systems and Neural Networks +1204.2484 Representation Theory +1204.2578 Geophysics +1205.1817 Strongly Correlated Electrons +1206.0499 Spectral Theory +1206.3071 Strongly Correlated Electrons +1207.1511 General Mathematics +1207.3303 Theory +1207.4651 +1207.5420 +1207.5629 Optics +1207.6638 Algebraic Geometry +1208.1720 Computation +1208.2741 Materials Science +1209.2216 Algebraic Geometry +1209.3849 Computational Complexity +1210.3276 Strongly Correlated Electrons +1210.6246 Number Theory +1210.6251 +1210.6644 +1210.8001 +1210.8411 Superconductivity +1211.3026 Phenomenology +1211.4691 +1211.7044 Operator Algebras +1212.1575 +1212.4353 Mesoscale and Nanoscale Physics +1301.2578 +1301.3331 Number Theory +1301.3695 Solar and Stellar Astrophysics +1301.5376 +1301.5401 Probability +1301.5733 +1301.7189 Machine Learning +1302.1003 Mesoscale and Nanoscale Physics +1302.1290 +1302.1617 Cosmology and Nongalactic Astrophysics +1302.1860 +1302.2984 +1302.4074 +1302.5069 +1302.5437 Phenomenology +1302.5442 Networking and Internet Architecture +1302.7063 Mesoscale and Nanoscale Physics +1302.7171 Mesoscale and Nanoscale Physics +1303.0010 Algebraic Geometry +1303.0347 Physics and Society +1303.3525 Information Theory +1304.1447 Strongly Correlated Electrons +1304.2610 Human-Computer Interaction +1304.3274 Phenomenology +1304.3937 +1304.3939 Superconductivity +1304.3957 Materials Science +1304.4411 Theory +1304.5993 Other Condensed Matter +1305.0158 +1305.0370 +1305.1229 Statistics Theory +1305.1529 Metric Geometry +1305.2030 Complex Variables +1305.5612 High Energy Astrophysical Phenomena +1306.1162 Differential Geometry +1306.1658 Mesoscale and Nanoscale Physics +1306.2388 Atmospheric and Oceanic Physics +1306.2945 Instrumentation and Methods for Astrophysics +1306.3892 Representation Theory +1306.4062 +1306.4950 Strongly Correlated Electrons +1306.5331 Functional Analysis +1306.5663 +1306.5693 Number Theory +1306.5731 Pattern Formation and Solitons +1306.6436 Combinatorics +1306.6936 Materials Science +1307.0079 Combinatorics +1307.0284 Multiagent Systems +1307.0423 Differential Geometry +1307.0794 Networking and Internet Architecture +1307.0807 Experiment +1307.0814 Social and Information Networks +1307.0815 Biological Physics +1307.0816 Classical Analysis and ODEs +1307.0824 Cosmology and Nongalactic Astrophysics +1307.0830 Algebraic Geometry +1307.0837 Symplectic Geometry +1307.0838 Materials Science +1307.0841 Neural and Evolutionary Computing +1307.0842 History and Philosophy of Physics +1307.0844 Databases +1307.0846 Machine Learning +1307.0848 Differential Geometry +1307.0849 Networking and Internet Architecture +1307.0851 Phenomenology +1307.0852 Soft Condensed Matter +1307.0857 Quantitative Methods +1307.0862 Disordered Systems and Neural Networks +1307.0863 Number Theory +1307.0864 Instrumentation and Detectors +1307.0866 Instrumentation and Detectors +1307.0867 Number Theory +1307.0871 Statistical Mechanics +1307.0876 Numerical Analysis +1307.0879 Number Theory +1307.0885 Information Theory +1307.0892 Mesoscale and Nanoscale Physics +1307.0898 Applications +1307.0903 Statistical Mechanics +1307.0904 Accelerator Physics +1307.0913 Probability +1307.0915 Applications +1307.0920 Information Theory +1307.0921 Solar and Stellar Astrophysics +1307.0926 Mesoscale and Nanoscale Physics +1307.0927 Information Theory +1307.0929 Strongly Correlated Electrons +1307.0932 Mesoscale and Nanoscale Physics +1307.0934 +1307.0937 Computer Vision and Pattern Recognition +1307.0939 Algebraic Geometry +1307.0944 Statistical Mechanics +1307.0951 Human-Computer Interaction +1307.0952 Other Computer Science +1307.0954 Phenomenology +1307.0956 Materials Science +1307.0960 Algebraic Geometry +1307.0961 Classical Analysis and ODEs +1307.0966 Cryptography and Security +1307.0974 Information Theory +1307.0977 Dynamical Systems +1307.0986 Analysis of PDEs +1307.0989 Theory +1307.0993 Rings and Algebras +1307.0994 Theory +1307.0995 Learning +1307.1000 Functional Analysis +1307.1008 Number Theory +1307.1016 Logic +1307.1019 Software Engineering +1307.1020 Quantum Algebra +1307.1024 Information Retrieval +1307.1025 Instrumentation and Methods for Astrophysics +1307.1026 +1307.1029 Geometric Topology +1307.1030 Differential Geometry +1307.1036 Differential Geometry +1307.1039 +1307.1049 Cosmology and Nongalactic Astrophysics +1307.1050 Physics Education +1307.1051 Distributed, Parallel, and Cluster Computing +1307.1052 Other Condensed Matter +1307.1053 +1307.1055 Operator Algebras +1307.1057 Analysis of PDEs +1307.1060 Phenomenology +1307.1061 Robotics +1307.1062 Combinatorics +1307.1065 Metric Geometry +1307.1066 Strongly Correlated Electrons +1307.1067 Statistics Theory +1307.1068 Numerical Analysis +1307.1071 Materials Science +1307.1073 Computational Engineering, Finance, and Science +1307.1074 Atomic Physics +1307.1078 Computational Engineering, Finance, and Science +1307.1079 Computational Engineering, Finance, and Science +1307.1088 Software Engineering +1307.1090 Classical Analysis and ODEs +1307.1091 Chemical Physics +1307.1092 Materials Science +1307.1098 General Physics +1307.1103 Solar and Stellar Astrophysics +1307.1107 Theory +1307.1116 Algebraic Geometry +1307.1119 Analysis of PDEs +1307.1120 Operator Algebras +1307.1121 Geophysics +math/0204232 Differential Geometry +math/0703267 Algebraic Geometry +0711.0570 +0802.4121 Data Analysis, Statistics and Probability +0809.2967 Number Theory +0811.3663 Number Theory +0904.1971 +0904.2726 Differential Geometry +0908.1582 Metric Geometry +1001.3742 Statistics Theory +1004.5191 Probability +1005.4041 Differential Geometry +1007.1955 Classical Analysis and ODEs +1011.1655 Logic +1011.3198 Number Theory +1101.4313 Optimization and Control +1101.4841 Analysis of PDEs +1102.3602 Probability +1103.0169 Dynamical Systems +1103.1940 Phenomenology +1104.4456 Fluid Dynamics +1106.0017 Combinatorics +1107.1960 Superconductivity +1107.4646 +1108.0473 Theory +1109.3336 Statistics Theory +1109.5160 Probability +1110.2977 Algebraic Topology +1110.3304 Algebraic Topology +1110.3556 Statistics Theory +1110.6631 Applications +1111.1986 +1111.4664 Algebraic Geometry +1112.2492 +1201.2032 Symplectic Geometry +1201.3810 Cosmology and Nongalactic Astrophysics +1201.4315 Optics +1201.5882 Phenomenology +1202.0976 Methodology +1202.4292 Strongly Correlated Electrons +1203.4632 Geometric Topology +1203.5359 Quantum Gases +1203.6776 Cosmology and Nongalactic Astrophysics +1204.0877 Number Theory +1204.6017 Optimization and Control +1205.2967 Strongly Correlated Electrons +1205.3969 High Energy Astrophysical Phenomena +1205.4692 Statistics Theory +1205.6314 Combinatorics +1206.0255 Number Theory +1206.0619 Strongly Correlated Electrons +1206.1432 +1206.2188 Programming Languages +1206.2282 Differential Geometry +1206.4434 Populations and Evolution +1206.5175 Quantum Gases +1207.1958 Optimization and Control +1207.3250 Phenomenology +1207.5031 Phenomenology +1207.5372 Materials Science +1208.0226 Strongly Correlated Electrons +1208.1289 Strongly Correlated Electrons +1208.1353 Materials Science +1208.1600 Data Analysis, Statistics and Probability +1208.6399 Probability +1209.0739 Combinatorics +1209.1532 Lattice +1209.2367 Experiment +1209.2990 Mesoscale and Nanoscale Physics +1209.4395 +1210.0034 Strongly Correlated Electrons +1210.1169 Theory +1210.3675 Superconductivity +1210.6672 Mesoscale and Nanoscale Physics +1210.8241 Phenomenology +1211.1331 Phenomenology +1211.1851 +1211.1852 Theory +1211.2133 +1211.3113 Theory +1211.3619 Chaotic Dynamics +1211.4530 Statistical Mechanics +1211.5337 Cosmology and Nongalactic Astrophysics +1211.6542 Analysis of PDEs +1211.7359 +1212.0406 Mesoscale and Nanoscale Physics +1212.0837 +1212.1045 Experiment +1212.1079 High Energy Astrophysical Phenomena +1212.2123 Atmospheric and Oceanic Physics +1212.3210 +1212.3433 High Energy Astrophysical Phenomena +1212.5296 Classical Analysis and ODEs +1212.5902 Theory +1212.6631 Optimization and Control +1301.0169 Networking and Internet Architecture +1301.0356 Operator Algebras +1301.2825 Solar and Stellar Astrophysics +1301.3914 Statistical Mechanics +1301.4813 Cosmology and Nongalactic Astrophysics +1301.5357 Populations and Evolution +1301.5424 Differential Geometry +1301.5447 Functional Analysis +1301.5746 Mesoscale and Nanoscale Physics +1301.6937 Molecular Networks +1302.0909 Astrophysics of Galaxies +1302.1268 Lattice +1302.1982 Materials Science +1302.2088 +1302.2156 +1302.2221 Superconductivity +1302.2384 Optimization and Control +1302.2391 Fluid Dynamics +1302.2909 Numerical Analysis +1302.2910 Differential Geometry +1302.2918 Theory +1302.2922 Strongly Correlated Electrons +1302.2923 Cosmology and Nongalactic Astrophysics +1302.2927 Space Physics +1302.2930 Cosmology and Nongalactic Astrophysics +1302.2937 Physics and Society +1302.2938 +1302.2946 Functional Analysis +1302.2949 Strongly Correlated Electrons +1302.2950 Spectral Theory +1302.2954 Complex Variables +1302.2958 Biological Physics +1302.2959 Materials Science +1302.2960 Materials Science +1302.2961 Biological Physics +1302.2962 Materials Science +1302.2966 Databases +1302.2971 Probability +1302.2973 Exactly Solvable and Integrable Systems +1302.2974 Data Analysis, Statistics and Probability +1302.2976 Exactly Solvable and Integrable Systems +1302.2986 Combinatorics +1302.2989 Strongly Correlated Electrons +1302.2991 Algebraic Geometry +1302.2992 Differential Geometry +1302.2994 Information Theory +1302.2996 Materials Science +1302.2997 Fluid Dynamics +1302.2999 Mesoscale and Nanoscale Physics +1302.3005 +1302.3007 Probability +1302.3008 Dynamical Systems +1302.3010 Materials Science +1302.3012 Combinatorics +1302.3016 Mesoscale and Nanoscale Physics +1302.3022 Tissues and Organs +1302.3024 Dynamical Systems +1302.3027 Phenomenology +1302.3030 Statistics Theory +1302.3032 Category Theory +1302.3033 Social and Information Networks +1302.3035 Data Structures and Algorithms +1302.3037 Logic +1302.3043 Logic +1302.3044 Algebraic Geometry +1302.3048 +1302.3054 Instrumentation and Detectors +1302.3057 Computation and Language +1302.3059 Group Theory +1302.3060 Representation Theory +1302.3064 Combinatorics +1302.3067 High Energy Astrophysical Phenomena +1302.3068 Analysis of PDEs +1302.3074 Optimization and Control +1302.3075 Dynamical Systems +1302.3079 Number Theory +1302.3082 Statistics Theory +1302.3084 High Energy Astrophysical Phenomena +1302.3086 Social and Information Networks +1302.3091 Computational Geometry +1302.3096 Materials Science +1302.3097 Probability +1302.3098 Optimization and Control +1302.3103 Optimization and Control +1302.3104 Number Theory +1302.3105 Logic in Computer Science +1302.3106 Instrumentation and Detectors +1302.3107 Analysis of PDEs +1302.3110 +1302.3111 History and Overview +1302.3115 Classical Analysis and ODEs +1302.3117 +1302.3119 Computer Vision and Pattern Recognition +1302.3123 Computer Vision and Pattern Recognition +1302.3126 Physics and Society +1302.3128 Astrophysics of Galaxies +1302.3129 Optimization and Control +1302.3132 High Energy Astrophysical Phenomena +1302.3136 Optimization and Control +1302.3139 Materials Science +1302.3142 Algebraic Geometry +1302.3143 +1302.3144 Probability +1302.3147 Probability +1302.3150 Differential Geometry +1302.3155 Computer Vision and Pattern Recognition +1302.3156 Differential Geometry +1302.3157 Combinatorics +1302.3163 +1302.3166 Information Theory +1302.3169 Statistical Finance +1302.3170 Strongly Correlated Electrons +1302.3178 Programming Languages +1302.3180 Solar and Stellar Astrophysics +1302.3183 Theory +1302.3184 Differential Geometry +1302.3185 Superconductivity +1302.3186 +1302.3187 Mesoscale and Nanoscale Physics +1302.3189 Algebraic Geometry +1302.3192 Rings and Algebras +1302.3193 Analysis of PDEs +1302.3195 Populations and Evolution +1302.3201 Functional Analysis +1302.3202 Probability +1302.3204 Functional Analysis +1302.3205 General Topology +1302.3209 Human-Computer Interaction +1302.3216 Soft Condensed Matter +1302.3217 Materials Science +astro-ph/9912213 +cs/0508123 Programming Languages +gr-qc/0407092 +q-bio/0402019 Populations and Evolution +q-bio/0402042 Populations and Evolution +0705.0466 Probability +0705.2110 Pricing of Securities +0706.4450 Probability +0801.0726 Probability +0802.3761 Probability +0810.3176 Probability +0902.2563 Probability +0907.2337 Machine Learning +0908.3644 Combinatorics +0910.5655 Computational Finance +0912.4339 Probability +1001.0527 +1001.4100 Computational Physics +1003.0848 Statistics Theory +1003.5086 General Mathematics +1005.0700 Classical Analysis and ODEs +1005.0750 Classical Analysis and ODEs +1005.1438 General Mathematics +1005.3268 Mesoscale and Nanoscale Physics +1009.0131 Probability +1009.3973 Combinatorics +1009.5093 Probability +1011.0208 Social and Information Networks +1012.1252 Superconductivity +1102.2250 Information Theory +1103.2596 Physics and Society +1106.0159 Distributed, Parallel, and Cluster Computing +1107.5311 Cosmology and Nongalactic Astrophysics +1108.4793 Superconductivity +1108.6280 Combinatorics +1111.3366 Theory +1111.5933 Operator Algebras +1112.3813 Functional Analysis +1201.3314 Geometric Topology +1201.6326 Analysis of PDEs +1202.1665 Superconductivity +1202.4131 Probability +1203.2280 Classical Analysis and ODEs +1203.2282 Classical Analysis and ODEs +1203.2543 Data Structures and Algorithms +1203.4591 Functional Analysis +1203.6149 +1204.2234 Dynamical Systems +1204.3567 Astrophysics of Galaxies +1204.5830 High Energy Astrophysical Phenomena +1205.2207 +1205.6575 Materials Science +1206.4253 Theory +1206.4988 +1207.0563 Systems and Control +1207.1936 Information Theory +1207.4702 +1207.6878 Mesoscale and Nanoscale Physics +1208.0504 Accelerator Physics +1208.1799 Combinatorics +1208.3087 Statistical Finance +1208.4435 Combinatorics +1208.4509 Theory +1208.5570 Theory +1209.0164 Phenomenology +1209.2453 Cosmology and Nongalactic Astrophysics +1209.3364 Theory +1209.3818 Artificial Intelligence +1209.3844 Fluid Dynamics +1209.5714 Analysis of PDEs +1209.6206 Superconductivity +1210.1473 Methodology +1210.2249 +1210.2895 Superconductivity +1210.3868 Classical Analysis and ODEs +1210.4317 Phenomenology +1210.4464 Lattice +1210.5206 Representation Theory +1210.6273 Theory +1210.7048 +1210.7492 +1210.8188 Optimization and Control +1211.1065 Medical Physics +1211.1317 Theory +1211.1691 Strongly Correlated Electrons +1211.1814 Probability +1211.1987 Mesoscale and Nanoscale Physics +1211.2040 +1211.4804 Phenomenology +1211.5169 Disordered Systems and Neural Networks +1211.5853 Phenomenology +1211.5950 Materials Science +1211.6390 Phenomenology +1212.0142 Computer Vision and Pattern Recognition +1212.0486 Optics +1212.0506 +1212.2010 Mesoscale and Nanoscale Physics +1212.2411 Phenomenology +1212.3127 +1212.4508 Phenomenology +1212.4704 +1212.4747 Phenomenology +1212.5098 Computational Geometry +1212.5162 Theory +1212.5369 Lattice +1212.5520 +1212.5700 +1212.5825 +1301.0640 Operator Algebras +1301.0815 Strongly Correlated Electrons +1301.0933 Phenomenology +1301.1216 Superconductivity +1301.1267 Strongly Correlated Electrons +1301.1350 Phenomenology +1301.2113 Atomic Physics +1301.2608 Strongly Correlated Electrons +1301.2709 Phenomenology +1301.3250 Optics +1301.3450 +1301.3509 Data Structures and Algorithms +1301.3758 Robotics +1301.3819 Phenomenology +1301.4597 Digital Libraries +1301.4941 Digital Libraries +1301.6377 Phenomenology +1301.6831 Mesoscale and Nanoscale Physics +1301.7654 Phenomenology +1302.0052 Phenomenology +1302.0642 +1302.0900 +1302.1681 Mesoscale and Nanoscale Physics +1302.2826 Statistical Mechanics +1302.4161 +1302.4287 Astrophysics of Galaxies +1302.4395 +1302.7066 Complex Variables +1303.0068 Complex Variables +1303.0517 Lattice +1303.1574 Cosmology and Nongalactic Astrophysics +1303.2024 Instrumentation and Methods for Astrophysics +1303.2349 Algebraic Geometry +1303.3595 Numerical Analysis +1303.5155 Representation Theory +1303.5999 Combinatorics +1303.7098 Theory +1303.7177 Trading and Market Microstructure +1303.7302 Superconductivity +1304.0219 Category Theory +1304.0393 Computational Geometry +1304.0437 Adaptation and Self-Organizing Systems +1304.0439 +1304.0440 General Physics +1304.0441 Applications +1304.0450 Solar and Stellar Astrophysics +1304.0466 Physics and Society +1304.0469 Phenomenology +1304.0470 Physics and Society +1304.0475 Theory +1304.0480 Information Theory +1304.0488 Number Theory +1304.0489 Number Theory +1304.0490 Risk Management +1304.0492 +1304.0494 Data Structures and Algorithms +1304.0501 Information Theory +1304.0508 +1304.0518 Operator Algebras +1304.0520 K-Theory and Homology +1304.0524 Computational Geometry +1304.0528 Data Structures and Algorithms +1304.0530 Rings and Algebras +1304.0534 Numerical Analysis +1304.0536 Algebraic Geometry +1304.0537 Methodology +1304.0538 Programming Languages +1304.0539 Computer Science and Game Theory +1304.0540 Symplectic Geometry +1304.0541 General Topology +1304.0547 Instrumentation and Detectors +1304.0557 Algebraic Geometry +1304.0559 Number Theory +1304.0561 +1304.0563 Numerical Analysis +1304.0564 Methodology +1304.0567 Databases +1304.0568 Theory +1304.0573 Optics +1304.0574 Materials Science +1304.0575 Soft Condensed Matter +1304.0578 Instrumentation and Methods for Astrophysics +1304.0580 Statistics Theory +1304.0583 History and Overview +1304.0589 Software Engineering +1304.0590 +1304.0591 Pattern Formation and Solitons +1304.0593 Statistics Theory +1304.0594 +1304.0596 Machine Learning +1304.0600 Graphics +1304.0606 Cryptography and Security +1304.0611 Logic +1304.0612 Logic +1304.0613 Algebraic Topology +1304.0619 K-Theory and Homology +1304.0620 Artificial Intelligence +1304.0621 Numerical Analysis +1304.0627 Physics and Society +1304.0630 Functional Analysis +1304.0637 Networking and Internet Architecture +1304.0639 Superconductivity +1304.0640 Neural and Evolutionary Computing +1304.0641 Cosmology and Nongalactic Astrophysics +1304.0644 +1304.0646 Networking and Internet Architecture +1304.0648 Classical Analysis and ODEs +1304.0649 Classical Analysis and ODEs +1304.0653 Algebraic Geometry +1304.0654 Mesoscale and Nanoscale Physics +1304.0660 Programming Languages +1304.0662 Computational Geometry +1304.0663 Functional Analysis +1304.0664 Computational Geometry +1304.0666 +1304.0676 +1304.0677 Number Theory +1304.0681 Genomics +1304.0684 Number Theory +1304.0685 Solar and Stellar Astrophysics +1304.0687 Rings and Algebras +1304.0690 Optimization and Control +1304.0693 Number Theory +1304.0694 Number Theory +1304.0697 Instrumentation and Methods for Astrophysics +1304.0704 Numerical Analysis +1304.0706 +1304.0707 Logic +1304.0712 Logic +1304.0713 Computational Complexity +1304.0714 Logic +1304.0715 Artificial Intelligence +1304.0716 Optimization and Control +1304.0718 Trading and Market Microstructure +1304.0722 Networking and Internet Architecture +1304.0724 Logic +1304.0725 Learning +1304.0726 Computers and Society +1304.0727 Other Computer Science +1304.0728 Combinatorics +1304.0729 Networking and Internet Architecture +1304.0730 Learning +1304.0731 Superconductivity +1304.0732 Networking and Internet Architecture +1304.0734 Popular Physics +1304.0740 Learning +1304.0743 Rings and Algebras +1304.0744 Combinatorics +1304.0745 Commutative Algebra +1304.0747 Soft Condensed Matter +1304.0749 Quantum Algebra +1304.0751 Neural and Evolutionary Computing +1304.0753 Number Theory +cond-mat/0412664 Mesoscale and Nanoscale Physics +hep-ph/9706266 Phenomenology +hep-th/0410150 Theory +hep-th/0607225 Theory +math/0511208 Probability +math/0601774 Probability +math/0612523 Probability +quant-ph/0406142 +quant-ph/0508176 +0804.3215 Information Theory +0805.3429 +0808.3788 Strongly Correlated Electrons +0909.0885 Data Analysis, Statistics and Probability +0910.4415 Mesoscale and Nanoscale Physics +1002.2011 Functional Analysis +1012.5821 Phenomenology +1101.2422 General Physics +1102.0974 Differential Geometry +1109.0409 Phenomenology +1110.4637 Solar and Stellar Astrophysics +1110.6330 Solar and Stellar Astrophysics +1111.5922 Functional Analysis +1203.5857 Complex Variables +1204.0585 Methodology +1204.2165 Algebraic Geometry +1204.3218 Rings and Algebras +1204.5776 Geometric Topology +1205.0347 Fluid Dynamics +1206.1920 Phenomenology +1208.1596 Superconductivity +1211.0046 Probability +1211.1817 +1211.3582 Phenomenology +1211.4947 Phenomenology +1212.0337 +1212.0534 Computation +1301.1098 Soft Condensed Matter +1301.1294 Networking and Internet Architecture +1301.3622 Data Analysis, Statistics and Probability +1301.4419 Quantum Gases +1301.4872 Mesoscale and Nanoscale Physics +1301.6137 Subcellular Processes +1302.1908 Lattice +1302.5485 High Energy Astrophysical Phenomena +1302.6152 Soft Condensed Matter +1303.2140 Software Engineering +1303.2592 Quantum Gases +1303.3715 Solar and Stellar Astrophysics +1303.5587 Strongly Correlated Electrons +1303.6009 +1303.6712 Dynamical Systems +1304.0182 Theory +1304.0657 Instrumentation and Methods for Astrophysics +1304.1039 Physics and Society +1304.2416 Data Structures and Algorithms +1304.4671 Fluid Dynamics +1304.4909 +1305.0591 Phenomenology +1305.2938 Physics and Society +1305.3264 Analysis of PDEs +1305.3834 Solar and Stellar Astrophysics +1305.4191 +1305.4510 Phenomenology +1305.6659 Learning +1305.7221 +1306.1325 Metric Geometry +1306.1867 Differential Geometry +1306.2589 Probability +1306.4231 Methodology +1306.4692 Fluid Dynamics +1306.6268 Mesoscale and Nanoscale Physics +1307.0941 Mesoscale and Nanoscale Physics +1307.1442 Mesoscale and Nanoscale Physics +1307.1493 Machine Learning +1307.2952 High Energy Astrophysical Phenomena +1307.4022 Strongly Correlated Electrons +1307.4935 Phenomenology +1307.6168 Phenomenology +1307.7648 Experiment +1308.0615 Representation Theory +1308.0888 Geometric Topology +1308.1277 Experiment +1308.2282 Probability +1308.3795 Computational Physics +1308.4401 Quantum Gases +1308.4611 Strongly Correlated Electrons +1308.5512 Instrumentation and Detectors +1308.5605 Phenomenology +1309.2462 Quantitative Methods +1310.3191 Algebraic Geometry +1310.3775 Classical Physics +1310.4258 Populations and Evolution +1310.4319 Theory +1310.6943 Probability +1310.7319 Lattice +1310.7885 +1310.8055 Functional Analysis +1310.8443 Solar and Stellar Astrophysics +1310.8615 Systems and Control +1311.0002 +1311.0004 Strongly Correlated Electrons +1311.0017 +1311.0023 Probability +1311.0028 Numerical Analysis +1311.0029 Phenomenology +1311.0030 Operator Algebras +1311.0035 Information Theory +1311.0042 Optimization and Control +1311.0044 Cryptography and Security +1311.0056 Algebraic Geometry +1311.0059 Databases +1311.0061 +1311.0069 Probability +1311.0071 Atomic Physics +1311.0074 Plasma Physics +1311.0076 History and Philosophy of Physics +1311.0081 Methodology +1311.0084 Lattice +1311.0086 Analysis of PDEs +1311.0090 Social and Information Networks +1311.0092 Instrumentation and Methods for Astrophysics +1311.0101 Theory +1311.0103 Theory +1311.0105 Combinatorics +1311.0113 Combinatorics +1311.0115 Classical Physics +1311.0119 Computer Vision and Pattern Recognition +1311.0120 Cosmology and Nongalactic Astrophysics +1311.0125 Analysis of PDEs +1311.0128 Probability +1311.0130 Strongly Correlated Electrons +1311.0132 Dynamical Systems +1311.0136 Optimization and Control +1311.0137 Combinatorics +1311.0138 Group Theory +1311.0140 Functional Analysis +1311.0142 Classical Analysis and ODEs +1311.0144 History and Philosophy of Physics +1311.0145 Materials Science +1311.0153 Functional Analysis +1311.0155 Functional Analysis +1311.0160 Probability +1311.0162 Computer Vision and Pattern Recognition +1311.0167 Superconductivity +1311.0170 Hardware Architecture +1311.0172 Discrete Mathematics +1311.0176 Analysis of PDEs +1311.0186 Theory +1311.0187 Symplectic Geometry +1311.0188 +1311.0190 Statistical Mechanics +1311.0192 Classical Analysis and ODEs +1311.0193 Plasma Physics +1311.0198 Computer Science and Game Theory +1311.0199 Differential Geometry +1311.0205 +1311.0207 Instrumentation and Methods for Astrophysics +1311.0210 +1311.0213 Dynamical Systems +1311.0216 Experiment +1311.0218 Lattice +1311.0226 Dynamical Systems +1311.0228 Software Engineering +1311.0232 Algebraic Geometry +1311.0236 Pricing of Securities +1311.0240 Strongly Correlated Electrons +1311.0252 History and Philosophy of Physics +1311.0253 Atomic Physics +1311.0257 Cryptography and Security +1311.0260 Differential Geometry +1311.0265 Solar and Stellar Astrophysics +1311.0266 Theory +1311.0270 Methodology +1311.0271 Quantum Algebra +1311.0274 Statistics Theory +1311.0277 +1311.0278 Quantum Algebra +gr-qc/0405053 +0706.0061 Mesoscale and Nanoscale Physics +0803.0928 Superconductivity +0810.0547 +0907.3688 +1006.0265 Algebraic Geometry +1009.0367 Logic +1010.4599 +1011.1794 Representation Theory +1101.0453 +1102.2100 History and Overview +1105.1941 Space Physics +1107.1783 Chaotic Dynamics +1108.0343 Analysis of PDEs +1108.2400 Mesoscale and Nanoscale Physics +1108.4395 Differential Geometry +1108.6261 Logic in Computer Science +1109.1427 Classical Analysis and ODEs +1109.5388 Cryptography and Security +1111.3434 High Energy Astrophysical Phenomena +1112.4625 Information Theory +1201.3726 +1201.4472 Discrete Mathematics +1202.0326 Representation Theory +1202.5961 Logic +1203.0871 Logic +1204.0579 Number Theory +1204.1405 Phenomenology +1204.4065 Information Theory +1204.4941 Classical Physics +1204.6417 Probability +1205.4163 Methodology +1205.6622 Metric Geometry +1206.3763 Probability +1206.6602 Theory +1207.0255 Computational Complexity +1207.0419 Theory +1208.1800 +1208.4162 Plasma Physics +1208.5300 Materials Science +1209.0540 Representation Theory +1209.1332 Fluid Dynamics +1209.1783 Number Theory +1209.4217 Probability +1209.4271 Materials Science +1209.4726 Mesoscale and Nanoscale Physics +1209.5436 Materials Science +1209.5596 Dynamical Systems +1209.5601 Artificial Intelligence +1210.1921 Algebraic Geometry +1211.0580 Symplectic Geometry +1211.1459 Superconductivity +1211.3459 Materials Science +1211.4927 Computational Geometry +1211.5600 Theory +1212.1474 Lattice +1212.1693 Theory +1212.2106 Phenomenology +1212.2441 Superconductivity +1212.2603 Superconductivity +1212.2641 Cosmology and Nongalactic Astrophysics +1212.3081 Tissues and Organs +1212.3299 Mesoscale and Nanoscale Physics +1212.3375 +1212.3456 Rings and Algebras +1212.4661 Cosmology and Nongalactic Astrophysics +1212.5424 Analysis of PDEs +1212.5453 Quantum Algebra +1212.6537 Phenomenology +1301.0004 Populations and Evolution +1301.0225 Phenomenology +1301.0307 History and Philosophy of Physics +1301.0819 Phenomenology +1301.1576 Optimization and Control +1301.1702 Logic in Computer Science +1301.1900 Mesoscale and Nanoscale Physics +1301.3097 History and Philosophy of Physics +1301.3943 Lattice +1301.3963 Metric Geometry +1301.4316 Theory +1301.4942 Superconductivity +1301.5411 Mesoscale and Nanoscale Physics +1301.5926 Theory +1301.6301 Information Theory +1301.6571 Materials Science +1302.0269 Strongly Correlated Electrons +1302.1295 Phenomenology +1302.2089 +1302.2651 Data Analysis, Statistics and Probability +1302.4042 Algebraic Geometry +1302.5473 +1302.5739 Strongly Correlated Electrons +1302.6095 Theory +1302.6311 +1302.6925 +1302.6972 Materials Science +1302.7055 Combinatorics +1302.7278 Data Structures and Algorithms +1303.0236 +1303.0278 Phenomenology +1303.0461 Phenomenology +1303.0747 Quantum Gases +1303.1111 Theory +1303.1185 +1303.1452 Phenomenology +1303.2799 Information Theory +1303.2917 Phenomenology +1303.5261 Atomic Physics +1303.6216 Superconductivity +1303.6942 Mesoscale and Nanoscale Physics +1303.7010 Theory +1304.1200 Space Physics +1304.1390 Statistics Theory +1304.1704 Complex Variables +1304.1974 Group Theory +1304.2154 Space Physics +1304.2228 +1304.2833 +1304.4407 Information Theory +1304.6045 Mesoscale and Nanoscale Physics +1304.6080 Cosmology and Nongalactic Astrophysics +1304.7245 High Energy Astrophysical Phenomena +1305.0107 Chemical Physics +1305.1791 Materials Science +1305.2432 Computer Science and Game Theory +1305.2553 Operating Systems +1305.3468 Experiment +1305.3718 Experiment +1305.4198 Instrumentation and Methods for Astrophysics +1305.4407 Group Theory +1305.4622 Tissues and Organs +1305.4629 Differential Geometry +1305.4633 Cosmology and Nongalactic Astrophysics +1305.4635 Phenomenology +1305.4645 Analysis of PDEs +1305.4649 Materials Science +1305.4659 +1305.4661 Group Theory +1305.4662 Combinatorics +1305.4664 +1305.4675 Data Structures and Algorithms +1305.4677 Physics and Society +1305.4679 Statistical Mechanics +1305.4683 Metric Geometry +1305.4686 Cryptography and Security +1305.4688 Quantum Gases +1305.4692 Analysis of PDEs +1305.4696 Data Structures and Algorithms +1305.4697 Algebraic Geometry +1305.4701 Instrumentation and Detectors +1305.4703 Information Theory +1305.4705 Biological Physics +1305.4710 High Energy Astrophysical Phenomena +1305.4711 Discrete Mathematics +1305.4714 Analysis of PDEs +1305.4720 Dynamical Systems +1305.4723 Optimization and Control +1305.4728 Solar and Stellar Astrophysics +1305.4729 Combinatorics +1305.4732 Other Computer Science +1305.4736 Soft Condensed Matter +1305.4738 Networking and Internet Architecture +1305.4742 Instrumentation and Detectors +1305.4743 +1305.4744 Artificial Intelligence +1305.4745 Computational Complexity +1305.4749 Rings and Algebras +1305.4750 Atomic Physics +1305.4753 Instrumentation and Methods for Astrophysics +1305.4754 Cosmology and Nongalactic Astrophysics +1305.4756 Phenomenology +1305.4757 Learning +1305.4760 Social and Information Networks +1305.4762 Probability +1305.4763 Fluid Dynamics +1305.4766 Probability +1305.4771 Phenomenology +1305.4776 Software Engineering +1305.4781 Distributed, Parallel, and Cluster Computing +1305.4786 Networking and Internet Architecture +1305.4798 Soft Condensed Matter +1305.4801 Information Retrieval +1305.4810 General Physics +1305.4813 Differential Geometry +1305.4814 Differential Geometry +1305.4820 Information Retrieval +1305.4821 History and Philosophy of Physics +1305.4824 Astrophysics of Galaxies +1305.4826 General Topology +1305.4827 Phenomenology +1305.4830 Differential Geometry +1305.4831 Materials Science +1305.4832 Cryptography and Security +1305.4833 Phenomenology +1305.4834 Strongly Correlated Electrons +1305.4835 Plasma Physics +1305.4836 Statistics Theory +1305.4838 Theory +1305.4849 Differential Geometry +1305.4851 +1305.4853 Theory +1305.4854 Differential Geometry +1305.4856 Geophysics +1305.4857 Phenomenology +1305.4858 Molecular Networks +1305.4863 Solar and Stellar Astrophysics +1305.4864 Mesoscale and Nanoscale Physics +1305.4869 +1305.4874 Computer Science and Game Theory +1305.4877 Combinatorics +1305.4883 Combinatorics +1305.4885 Solar and Stellar Astrophysics +1305.4890 Digital Libraries +1305.4892 Probability +1305.4893 Machine Learning +1305.4899 Phenomenology +1305.4900 Phenomenology +1305.4904 +1305.4905 Information Theory +1305.4910 +1305.4917 Artificial Intelligence +1305.4918 Experiment +1305.4920 Phenomenology +1305.4925 Geometric Topology +1305.4926 Phenomenology +1305.4928 Plasma Physics +hep-th/0304193 Theory +math/0505202 Classical Analysis and ODEs +0712.2978 General Physics +0804.2696 Populations and Evolution +0810.4593 +0907.1127 Populations and Evolution +1001.1624 Computational Geometry +1004.5192 Computational Finance +1006.0411 Differential Geometry +1009.1728 Probability +1011.2055 Optimization and Control +1011.6287 Operator Algebras +1012.1337 +1012.3152 +1012.5038 Symplectic Geometry +1101.4216 +1103.1826 Differential Geometry +1105.1905 Group Theory +1108.2490 Statistical Mechanics +1108.4381 Functional Analysis +1108.5970 +1109.0152 Methodology +1109.1101 Rings and Algebras +1109.4134 Mesoscale and Nanoscale Physics +1112.2718 Theory +1112.4691 Dynamical Systems +1112.5082 Strongly Correlated Electrons +1201.2523 Information Theory +1201.5258 +1201.5557 Populations and Evolution +1201.6543 Metric Geometry +1203.6322 Optics +1204.4295 Optics +1204.4967 Number Theory +1205.3808 +1205.5952 Differential Geometry +1205.6289 Soft Condensed Matter +1206.0598 Combinatorics +1206.2435 Combinatorics +1207.4347 Metric Geometry +1207.4668 Quantum Gases +1207.5732 Solar and Stellar Astrophysics +1207.6365 Data Structures and Algorithms +1207.7117 Cosmology and Nongalactic Astrophysics +1207.7287 Phenomenology +1208.3756 Phenomenology +1208.3822 Computer Vision and Pattern Recognition +1208.5038 +1208.5258 Cryptography and Security +1208.6353 Strongly Correlated Electrons +1209.0497 Strongly Correlated Electrons +1209.1479 Physics and Society +1209.2736 Optimization and Control +1209.3280 Mesoscale and Nanoscale Physics +1209.4705 Materials Science +1209.4964 Materials Science +1209.5133 +1210.1372 Mesoscale and Nanoscale Physics +1210.2410 Materials Science +1210.3028 Theory +1210.3201 +1210.4367 Combinatorics +1210.5340 +1210.5730 Optics +1210.6369 Phenomenology +1210.6526 Exactly Solvable and Integrable Systems +1210.6687 Strongly Correlated Electrons +1210.6689 Strongly Correlated Electrons +1210.7083 Neurons and Cognition +1210.7879 Materials Science +1211.1379 Cosmology and Nongalactic Astrophysics +1211.2602 Other Condensed Matter +1211.3491 Superconductivity +1211.3761 +1211.6021 Theory +1212.0375 High Energy Astrophysical Phenomena +1212.1211 Cosmology and Nongalactic Astrophysics +1212.3186 Statistical Mechanics +1212.3489 Analysis of PDEs +1212.4182 Materials Science +1212.4725 Strongly Correlated Electrons +1212.4827 Lattice +1212.4923 Dynamical Systems +1212.5970 Strongly Correlated Electrons +1212.6251 Mesoscale and Nanoscale Physics +1212.6276 Neural and Evolutionary Computing +1301.1628 Optics +1301.2321 Solar and Stellar Astrophysics +1301.3958 Computational Physics +1301.4707 Numerical Analysis +1301.6103 Optics +1301.6527 High Energy Astrophysical Phenomena +1301.6556 Instrumentation and Methods for Astrophysics +1302.0525 Soft Condensed Matter +1302.0981 Instrumentation and Methods for Astrophysics +1302.4166 Optics +1302.5884 +1302.6075 +1302.6353 Strongly Correlated Electrons +1303.0893 Strongly Correlated Electrons +1303.2007 High Energy Astrophysical Phenomena +1303.5000 Phenomenology +1303.5208 Materials Science +1304.0397 High Energy Astrophysical Phenomena +1304.1201 Dynamical Systems +1304.1309 Logic in Computer Science +1304.1491 Artificial Intelligence +1304.1492 Artificial Intelligence +1304.1493 Artificial Intelligence +1304.1494 Artificial Intelligence +1304.1495 Artificial Intelligence +1304.1496 Artificial Intelligence +1304.1497 Artificial Intelligence +1304.1498 Artificial Intelligence +1304.1499 Artificial Intelligence +1304.1500 Artificial Intelligence +1304.1501 Artificial Intelligence +1304.1502 Artificial Intelligence +1304.1503 Artificial Intelligence +1304.1504 Artificial Intelligence +1304.1505 Artificial Intelligence +1304.1506 Artificial Intelligence +1304.1507 Artificial Intelligence +1304.1508 Artificial Intelligence +1304.1509 Artificial Intelligence +1304.1510 Artificial Intelligence +1304.1511 Artificial Intelligence +1304.1512 Artificial Intelligence +1304.1513 Artificial Intelligence +1304.1514 Artificial Intelligence +1304.1515 Artificial Intelligence +1304.1516 Artificial Intelligence +1304.1517 Computer Vision and Pattern Recognition +1304.1518 Artificial Intelligence +1304.1519 Artificial Intelligence +1304.1520 Artificial Intelligence +1304.1521 Artificial Intelligence +1304.1522 Artificial Intelligence +1304.1523 Artificial Intelligence +1304.1524 Artificial Intelligence +1304.1525 Artificial Intelligence +1304.1526 Artificial Intelligence +1304.1527 Artificial Intelligence +1304.1528 Artificial Intelligence +1304.1529 Artificial Intelligence +1304.1530 Artificial Intelligence +1304.1531 Artificial Intelligence +1304.1532 Artificial Intelligence +1304.1533 Artificial Intelligence +1304.1534 Artificial Intelligence +1304.1535 Artificial Intelligence +1304.1536 Artificial Intelligence +1304.1537 Logic +1304.1538 Logic +1304.1562 Analysis of PDEs +1304.1563 Earth and Planetary Astrophysics +1304.1565 Neurons and Cognition +1304.1568 Computer Vision and Pattern Recognition +1304.1571 Multimedia +1304.1574 Learning +1304.1575 Computer Science and Game Theory +1304.1576 Logic +1304.1577 Data Structures and Algorithms +1304.1579 Rings and Algebras +1304.1584 Logic in Computer Science +1304.1589 Phenomenology +1304.1598 Statistics Theory +1304.1600 Methodology +1304.1601 Physics and Society +1304.1608 Computational Physics +1304.1609 Cellular Automata and Lattice Gases +1304.1611 Materials Science +1304.1616 Differential Geometry +1304.1617 Superconductivity +1304.1618 Astrophysics of Galaxies +1304.1622 Functional Analysis +1304.1623 Materials Science +1304.1624 Soft Condensed Matter +1304.1625 Computational Engineering, Finance, and Science +1304.1627 Information Theory +1304.1628 Artificial Intelligence +1304.1629 Materials Science +1304.1630 High Energy Astrophysical Phenomena +1304.1636 Digital Libraries +1304.1637 Discrete Mathematics +1304.1640 +1304.1647 Logic in Computer Science +1304.1649 Networking and Internet Architecture +1304.1652 Differential Geometry +1304.1656 Statistical Mechanics +1304.1658 Adaptation and Self-Organizing Systems +1304.1659 Commutative Algebra +1304.1662 Algebraic Topology +1304.1663 Materials Science +1304.1665 General Finance +1304.1674 Differential Geometry +1304.1676 Software Engineering +1304.1677 Software Engineering +1304.1683 Cryptography and Security +1304.1684 Artificial Intelligence +1304.1686 Materials Science +1304.1688 Probability +1304.1697 Software Engineering +1304.1705 Networking and Internet Architecture +1304.1706 High Energy Astrophysical Phenomena +1304.1707 Materials Science +1304.1712 Physics and Society +1304.1717 Solar and Stellar Astrophysics +1304.1718 Discrete Mathematics +1304.1720 Methodology +1304.1721 General Topology +1304.1722 Accelerator Physics +1304.1729 Algebraic Geometry +1304.1730 +1304.1743 Superconductivity +1304.1746 Physics and Society +1304.1755 Numerical Analysis +1304.1756 Applications +1304.1757 Optimization and Control +1304.1759 Phenomenology +1304.1760 Numerical Analysis +1304.1764 High Energy Astrophysical Phenomena +1304.1771 Metric Geometry +1304.1772 Combinatorics +1304.1773 Differential Geometry +1304.1777 Instrumentation and Detectors +1304.1781 Mesoscale and Nanoscale Physics +1304.1782 Group Theory +1304.1785 Networking and Internet Architecture +1304.1793 Soft Condensed Matter +1304.1794 Rings and Algebras +cond-mat/0009061 Disordered Systems and Neural Networks +cond-mat/0111505 Mesoscale and Nanoscale Physics +cond-mat/0310199 Mesoscale and Nanoscale Physics +cond-mat/0406127 Mesoscale and Nanoscale Physics +cond-mat/0512611 Mesoscale and Nanoscale Physics +cond-mat/9403033 +cond-mat/9607036 +cond-mat/9907027 Mesoscale and Nanoscale Physics +cond-mat/9909293 Mesoscale and Nanoscale Physics +hep-th/9301076 Theory +hep-th/9405085 Theory +quant-ph/9808066 +0705.1899 Number Theory +0709.2852 Number Theory +0712.3899 Materials Science +0802.4027 Number Theory +0906.1815 Number Theory +0907.1100 Computation +0910.4588 Number Theory +1002.3313 Number Theory +1005.0712 Cryptography and Security +1006.5752 Group Theory +1011.0896 Representation Theory +1102.4209 Representation Theory +1104.0178 Phenomenology +1104.0354 Information Theory +1104.2381 Algebraic Geometry +1104.4986 Algebraic Geometry +1104.5031 Number Theory +1106.0101 Soft Condensed Matter +1107.0566 K-Theory and Homology +1109.2706 Logic +1111.5062 Cryptography and Security +1111.5501 Combinatorics +1112.0381 Representation Theory +1112.5537 +1201.1309 Number Theory +1203.1254 Operator Algebras +1204.2997 Optimization and Control +1204.3873 Spectral Theory +1205.0354 Experiment +1205.5319 Rings and Algebras +1205.6842 Number Theory +1206.0087 Number Theory +1206.2226 Geometric Topology +1206.2522 Functional Analysis +1206.4841 Biological Physics +1207.2850 Commutative Algebra +1207.2998 Optics +1207.3517 Probability +1207.6134 Number Theory +1208.5405 Group Theory +1208.6250 Theory +1209.1414 Number Theory +1210.1735 Metric Geometry +1210.2644 Numerical Analysis +1210.6674 High Energy Astrophysical Phenomena +1211.1179 +1211.2181 Statistical Mechanics +1211.5914 Information Theory +1211.6978 Number Theory +1212.1191 High Energy Astrophysical Phenomena +1212.1996 Functional Analysis +1212.2922 Theory +1212.4220 Algebraic Geometry +1212.6082 Strongly Correlated Electrons +1212.6477 Optics +1301.1270 Combinatorics +1301.3496 +1301.4367 Number Theory +1301.6140 Cosmology and Nongalactic Astrophysics +1301.6561 Populations and Evolution +1301.6670 Phenomenology +1302.0312 Commutative Algebra +1302.1182 +1302.3040 Quantum Gases +1302.4389 Machine Learning +1302.6718 Atomic and Molecular Clusters +1303.0216 Genomics +1303.0305 Strongly Correlated Electrons +1303.4416 Superconductivity +1304.4603 Phenomenology +1304.5631 Theory +1304.6156 Mesoscale and Nanoscale Physics +1304.6280 Discrete Mathematics +1304.6957 Analysis of PDEs +1305.0890 General Physics +1305.1016 Phenomenology +1305.1639 Number Theory +1305.3745 Mesoscale and Nanoscale Physics +1305.3880 Mesoscale and Nanoscale Physics +1305.6880 Quantum Gases +1306.0414 +1306.1125 Superconductivity +1306.1279 +1306.1755 Chemical Physics +1306.2763 Analysis of PDEs +1306.4740 Theory +1307.0226 Instrumentation and Methods for Astrophysics +1307.1281 +1307.2408 Statistical Mechanics +1307.2697 +1307.3335 +1307.3370 Statistical Mechanics +1307.3990 Probability +1307.4603 Solar and Stellar Astrophysics +1307.4685 Physics and Society +1307.4937 Phenomenology +1307.5152 Algebraic Geometry +1307.5259 Theory +1307.6556 High Energy Astrophysical Phenomena +1307.6819 Soft Condensed Matter +1307.7309 Networking and Internet Architecture +1308.0635 Theory +1308.1522 Neurons and Cognition +1308.1712 Phenomenology +1308.2926 Theory +1308.3084 Experiment +1308.3521 Information Theory +1308.6509 Data Structures and Algorithms +1309.1659 Rings and Algebras +1309.2455 +1309.2866 Fluid Dynamics +1309.3836 Spectral Theory +1309.3973 High Energy Astrophysical Phenomena +1309.4113 History and Philosophy of Physics +1309.4419 +1309.4468 Solar and Stellar Astrophysics +1309.4632 Statistics Theory +1309.4919 Data Structures and Algorithms +1309.4927 Logic +1309.4946 Functional Analysis +1309.4989 Phenomenology +1309.5083 Discrete Mathematics +1309.5094 Risk Management +1309.5095 Number Theory +1309.5096 Quantum Algebra +1309.5099 Differential Geometry +1309.5101 Symplectic Geometry +1309.5110 Artificial Intelligence +1309.5115 Phenomenology +1309.5116 Combinatorics +1309.5117 Computation +1309.5122 Computation +1309.5125 Group Theory +1309.5126 Information Theory +1309.5127 Solar and Stellar Astrophysics +1309.5128 Programming Languages +1309.5129 Logic in Computer Science +1309.5130 Programming Languages +1309.5131 Programming Languages +1309.5132 Programming Languages +1309.5133 Programming Languages +1309.5134 Other Computer Science +1309.5135 Programming Languages +1309.5137 Programming Languages +1309.5138 Programming Languages +1309.5139 Programming Languages +1309.5140 Logic in Computer Science +1309.5141 Programming Languages +1309.5142 Programming Languages +1309.5143 Software Engineering +1309.5144 Programming Languages +1309.5145 Computational Engineering, Finance, and Science +1309.5146 Logic in Computer Science +1309.5147 Programming Languages +1309.5148 Programming Languages +1309.5149 Programming Languages +1309.5150 Logic in Computer Science +1309.5151 Logic in Computer Science +1309.5152 Programming Languages +1309.5158 General Finance +1309.5164 Atmospheric and Oceanic Physics +1309.5165 Chemical Physics +1309.5169 Materials Science +1309.5171 Exactly Solvable and Integrable Systems +1309.5172 Data Structures and Algorithms +1309.5174 Computer Vision and Pattern Recognition +1309.5181 Representation Theory +1309.5184 Logic in Computer Science +1309.5187 Commutative Algebra +1309.5190 Commutative Algebra +1309.5192 Methodology +1309.5193 Commutative Algebra +1309.5195 Functional Analysis +1309.5198 Strongly Correlated Electrons +1309.5199 History and Philosophy of Physics +1309.5202 Solar and Stellar Astrophysics +1309.5203 History and Philosophy of Physics +1309.5204 Rings and Algebras +1309.5205 History and Philosophy of Physics +1309.5206 Computational Complexity +1309.5211 Genomics +1309.5215 Group Theory +1309.5217 Materials Science +1309.5219 Group Theory +1309.5220 Networking and Internet Architecture +1309.5223 Computation and Language +1309.5226 Computation and Language +1309.5230 Disordered Systems and Neural Networks +1309.5242 Analysis of PDEs +1309.5247 Information Theory +1309.5252 Complex Variables +1309.5255 Cryptography and Security +1309.5256 Digital Libraries +1309.5259 Mesoscale and Nanoscale Physics +1309.5260 Combinatorics +1309.5269 Optics +1309.5271 Metric Geometry +1309.5282 Commutative Algebra +1309.5285 Optimization and Control +1309.5287 Materials Science +1309.5290 Computation and Language +1309.5292 Cryptography and Security +1309.5296 Number Theory +1309.5299 Theory +1309.5303 Numerical Analysis +1309.5304 Systems and Control +1309.5307 Experiment +1309.5309 Number Theory +1309.5312 Combinatorics +1309.5313 Representation Theory +1309.5315 Materials Science +1309.5316 Artificial Intelligence +1309.5319 Computation and Language +1309.5340 Disordered Systems and Neural Networks +1309.5342 Algebraic Geometry +1309.5348 Commutative Algebra +1309.5351 Other Computer Science +1309.5353 Soft Condensed Matter +1309.5355 Soft Condensed Matter +1309.5356 Numerical Analysis +1309.5357 Computer Vision and Pattern Recognition +1309.5361 High Energy Astrophysical Phenomena +math/0207280 Number Theory +math/0307322 Number Theory +math/0405040 Algebraic Geometry +math/0510533 Number Theory +math/0511514 Algebraic Geometry +math/0604149 Number Theory +math/0610290 Number Theory +math/0612054 Number Theory +0712.0202 Algebraic Geometry +0901.0088 General Physics +0908.1714 Differential Geometry +0909.5368 Data Analysis, Statistics and Probability +0909.5403 Geophysics +1003.3212 +1005.2998 Number Theory +1005.3005 Algebraic Geometry +1005.3008 Algebraic Geometry +1007.5461 Complex Variables +1101.4114 Algebraic Geometry +1104.0701 Cosmology and Nongalactic Astrophysics +1107.3549 Number Theory +1108.4571 Mesoscale and Nanoscale Physics +1109.1718 Data Analysis, Statistics and Probability +1109.4892 Theory +1111.2013 Representation Theory +1112.5634 Statistics Theory +1112.5904 Computational Geometry +1201.2265 Probability +1203.0391 Theory +1203.2538 Data Structures and Algorithms +1204.0768 +1204.2876 Theory +1204.3036 Quantum Gases +1204.6610 Learning +1205.2192 Operator Algebras +1205.5524 +1205.6438 Neurons and Cognition +1205.6598 Neurons and Cognition +1206.3051 Mesoscale and Nanoscale Physics +1206.3176 Differential Geometry +1206.4857 Materials Science +1206.5719 Statistical Mechanics +1207.1568 History and Philosophy of Physics +1207.3069 Group Theory +1207.6580 Mesoscale and Nanoscale Physics +1208.1095 +1208.1501 Theory +1208.3601 +1208.5467 Statistics Theory +1209.0288 Mesoscale and Nanoscale Physics +1209.1473 Optics +1209.3153 +1209.3198 Computation +1209.5327 +1209.5551 Quantum Algebra +1209.6436 Strongly Correlated Electrons +1210.1670 Materials Science +1210.3928 Optics +1210.4656 Mesoscale and Nanoscale Physics +1211.1911 Group Theory +1211.1997 Cosmology and Nongalactic Astrophysics +1211.3165 High Energy Astrophysical Phenomena +1211.3534 Dynamical Systems +1211.4711 Mesoscale and Nanoscale Physics +1211.4773 Statistical Mechanics +1211.5254 Mesoscale and Nanoscale Physics +1212.0832 +1212.1631 Algebraic Geometry +1212.2214 +1212.2282 Differential Geometry +1212.5018 Cosmology and Nongalactic Astrophysics +1212.5295 Atomic Physics +1212.5485 Mesoscale and Nanoscale Physics +1212.5730 Mesoscale and Nanoscale Physics +1212.5851 +1301.1068 Mesoscale and Nanoscale Physics +1301.2184 Data Analysis, Statistics and Probability +1301.2960 Metric Geometry +1301.3325 Populations and Evolution +1301.5294 Cosmology and Nongalactic Astrophysics +1301.5477 Cosmology and Nongalactic Astrophysics +1301.5610 +1302.2311 Cosmology and Nongalactic Astrophysics +1302.2897 +1302.3824 Mesoscale and Nanoscale Physics +1302.4284 +1302.4633 Optics +1302.4753 Cosmology and Nongalactic Astrophysics +1302.4792 +1302.5694 Phenomenology +1303.0246 Strongly Correlated Electrons +1303.0371 +1303.0616 Strongly Correlated Electrons +1303.1157 Phenomenology +1303.1193 Theory +1303.2360 +1303.2599 Geometric Topology +1303.3108 Experiment +1303.3163 Artificial Intelligence +1303.5557 Operator Algebras +1303.7418 +1304.0007 Theory +1304.1542 High Energy Astrophysical Phenomena +1304.2132 Systems and Control +1304.2550 Distributed, Parallel, and Cluster Computing +1304.3467 Molecular Networks +1304.3621 Cosmology and Nongalactic Astrophysics +1304.3820 Functional Analysis +1304.3825 Classical Physics +1304.4496 Theory +1304.4945 Earth and Planetary Astrophysics +1304.5090 Populations and Evolution +1304.5437 Phenomenology +1304.5578 +1304.5684 Number Theory +1304.5748 Phenomenology +1304.6256 Biological Physics +1305.1620 High Energy Astrophysical Phenomena +1305.1652 +1305.1667 Analysis of PDEs +1305.1672 Algebraic Topology +1305.2148 Statistical Mechanics +1305.2318 +1305.3303 Astrophysics of Galaxies +1305.3500 Mesoscale and Nanoscale Physics +1305.3804 Functional Analysis +1305.3833 Atomic Physics +1305.4206 Genomics +1305.4415 Cosmology and Nongalactic Astrophysics +1305.4844 +1305.5228 Computer Science and Game Theory +1305.5842 Cosmology and Nongalactic Astrophysics +1305.7095 Mesoscale and Nanoscale Physics +1306.0142 Geophysics +1306.0923 Chaotic Dynamics +1306.1204 Statistical Mechanics +1306.1667 Statistical Mechanics +1306.2285 Analysis of PDEs +1306.2516 Optimization and Control +1306.2792 Optics +1306.2942 Dynamical Systems +1306.2957 Mesoscale and Nanoscale Physics +1306.2963 +1306.2964 Phenomenology +1306.2966 Superconductivity +1306.2972 Optimization and Control +1306.2975 Theory +1306.2977 Algebraic Geometry +1306.2978 Computational Geometry +1306.2981 Numerical Analysis +1306.2984 Exactly Solvable and Integrable Systems +1306.2989 Probability +1306.2990 Statistical Mechanics +1306.2998 Spectral Theory +1306.2999 Social and Information Networks +1306.3000 Data Structures and Algorithms +1306.3002 Machine Learning +1306.3003 Learning +1306.3018 Neural and Evolutionary Computing +1306.3026 Number Theory +1306.3028 +1306.3033 Methodology +1306.3034 Numerical Analysis +1306.3036 Neural and Evolutionary Computing +1306.3039 Methodology +1306.3042 Superconductivity +1306.3043 Earth and Planetary Astrophysics +1306.3044 Analysis of PDEs +1306.3046 Category Theory +1306.3054 Cryptography and Security +1306.3055 Cryptography and Security +1306.3058 Learning +1306.3062 Symbolic Computation +1306.3063 Populations and Evolution +1306.3070 +1306.3073 General Topology +1306.3074 +1306.3076 +1306.3079 Analysis of PDEs +1306.3080 Numerical Analysis +1306.3083 Software Engineering +1306.3084 Computer Vision and Pattern Recognition +1306.3087 Group Theory +1306.3098 Dynamical Systems +1306.3110 Statistical Finance +1306.3111 Information Theory +1306.3116 Solar and Stellar Astrophysics +1306.3117 Phenomenology +1306.3118 Popular Physics +1306.3119 Optimization and Control +1306.3120 Number Theory +1306.3126 Accelerator Physics +1306.3128 Theory +1306.3131 Functional Analysis +1306.3135 Mesoscale and Nanoscale Physics +1306.3140 Lattice +1306.3141 Rings and Algebras +1306.3145 Statistical Mechanics +1306.3146 Quantum Algebra +1306.3150 +1306.3157 Earth and Planetary Astrophysics +1306.3160 Networking and Internet Architecture +1306.3163 Statistical Mechanics +1306.3170 Geometric Topology +1306.3172 Applications +1306.3175 Accelerator Physics +1306.3177 Networking and Internet Architecture +1306.3181 Data Structures and Algorithms +1306.3182 +1306.3184 Data Analysis, Statistics and Probability +1306.3190 Analysis of PDEs +1306.3193 Combinatorics +1306.3198 Logic in Computer Science +1306.3199 Logic in Computer Science +1306.3200 +1306.3201 Classical Analysis and ODEs +1306.3202 +1306.3204 Instrumentation and Methods for Astrophysics +1306.3205 Spectral Theory +1306.3210 Cosmology and Nongalactic Astrophysics +1306.3212 Learning +1306.3213 Combinatorics +1306.3215 Category Theory +math/0110066 Algebraic Geometry +math/0110067 Algebraic Geometry +math/0110068 Algebraic Geometry +math/0110069 Algebraic Geometry +math/0110070 Algebraic Geometry +math/0110071 Number Theory +math/0402380 Algebraic Geometry +math/0408424 Classical Analysis and ODEs +math/9809106 Algebraic Geometry +0811.0883 Number Theory +0903.1885 Number Theory +0911.0255 Theory +0911.1696 +1003.1320 Discrete Mathematics +1008.0897 Number Theory +1009.5932 Algebraic Geometry +1009.5981 Methodology +1010.3399 Differential Geometry +1010.4596 Number Theory +1103.5316 Representation Theory +1104.4161 Optics +1107.0091 Analysis of PDEs +1107.1981 Representation Theory +1107.2266 Number Theory +1107.4620 Category Theory +1109.1030 Geometric Topology +1111.2935 Solar and Stellar Astrophysics +1201.0050 Combinatorics +1201.0553 Physics Education +1201.1333 Physics Education +1201.2064 Number Theory +1201.3008 Physics Education +1202.1213 Dynamical Systems +1202.5108 Spectral Theory +1203.2739 Numerical Analysis +1203.4357 Optics +1204.3127 Operator Algebras +1204.6359 Cosmology and Nongalactic Astrophysics +1205.1106 Rings and Algebras +1205.4106 Strongly Correlated Electrons +1205.6256 Discrete Mathematics +1207.0744 Statistical Mechanics +1207.2870 +1207.6094 Strongly Correlated Electrons +1208.5846 Number Theory +1209.3662 Cosmology and Nongalactic Astrophysics +1210.2375 Materials Science +1210.3751 Phenomenology +1210.4621 Strongly Correlated Electrons +1210.8391 Commutative Algebra +1211.1040 Solar and Stellar Astrophysics +1211.2897 Information Theory +1211.4917 Number Theory +1211.7049 Phenomenology +1212.1384 Statistics Theory +1301.3486 Probability +1301.4388 Lattice +1301.6251 Commutative Algebra +1301.6599 Information Theory +1302.1441 Commutative Algebra +1302.3931 Neural and Evolutionary Computing +1302.3985 Analysis of PDEs +1302.4013 General Topology +1302.4304 Number Theory +1302.5690 +1302.6554 Analysis of PDEs +1303.2766 Information Theory +1303.3440 Information Theory +1303.5257 +1303.6070 Number Theory +1303.6331 Instrumentation and Methods for Astrophysics +1304.0387 Quantum Gases +1304.2496 +1304.4739 Experiment +1304.5872 Data Structures and Algorithms +1304.6767 +1304.7003 Cosmology and Nongalactic Astrophysics +1304.7267 Theory +1305.2928 Quantum Gases +1305.2962 Theory +1305.3222 +1305.4155 Theory +1305.4331 Probability +1305.4951 Mesoscale and Nanoscale Physics +1305.5964 +1305.7141 +1306.0170 Instrumentation and Detectors +1306.0279 Phenomenology +1306.1555 Mesoscale and Nanoscale Physics +1306.3337 Mesoscale and Nanoscale Physics +1306.4295 Complex Variables +1306.6363 Mesoscale and Nanoscale Physics +1306.6418 Statistical Mechanics +1307.1069 Materials Science +1307.2241 Phenomenology +1307.3769 Materials Science +1307.3786 Statistical Mechanics +1307.4687 +1307.4727 Statistical Finance +1307.5073 Phenomenology +1307.6320 Functional Analysis +1307.6924 Category Theory +1307.7873 Superconductivity +1308.0242 Mesoscale and Nanoscale Physics +1308.0358 High Energy Astrophysical Phenomena +1308.1238 Theory +1308.1433 +1308.2820 Theory +1308.3111 Mesoscale and Nanoscale Physics +1308.3848 Solar and Stellar Astrophysics +1308.5447 Information Theory +1308.5812 Quantum Gases +1308.6241 Accelerator Physics +1308.6415 Artificial Intelligence +1309.0936 Subcellular Processes +1309.1193 Machine Learning +1309.2889 Experiment +1309.3070 Complex Variables +1309.7164 Fluid Dynamics +1310.0575 Computation and Language +1310.1581 Numerical Analysis +1310.1989 Biological Physics +1310.1998 Number Theory +1310.2002 Plasma Physics +1310.2041 Computational Physics +1310.2128 Lattice +1310.2160 +1310.2252 Statistical Mechanics +1310.2261 Number Theory +1310.2262 Functional Analysis +1310.2268 Combinatorics +1310.2274 Distributed, Parallel, and Cluster Computing +1310.2276 +1310.2277 Number Theory +1310.2279 Robotics +1310.2287 Geometric Topology +1310.2291 Information Theory +1310.2296 Information Theory +1310.2299 Experiment +1310.2300 Programming Languages +1310.2304 Algebraic Geometry +1310.2306 Systems and Control +1310.2312 Functional Analysis +1310.2315 Commutative Algebra +1310.2320 Logic in Computer Science +1310.2323 Computer Science and Game Theory +1310.2329 Number Theory +1310.2331 Mesoscale and Nanoscale Physics +1310.2332 Symbolic Computation +1310.2335 Exactly Solvable and Integrable Systems +1310.2337 Classical Analysis and ODEs +1310.2339 Probability +1310.2342 Computers and Society +1310.2343 Probability +1310.2345 Probability +1310.2346 Logic +1310.2347 Probability +1310.2348 Dynamical Systems +1310.2349 Probability +1310.2350 Artificial Intelligence +1310.2351 Cryptography and Security +1310.2352 Probability +1310.2353 Combinatorics +1310.2354 Networking and Internet Architecture +1310.2355 Combinatorics +1310.2356 Classical Analysis and ODEs +1310.2358 Probability +1310.2360 Statistical Mechanics +1310.2361 Computational Engineering, Finance, and Science +1310.2363 Materials Science +1310.2365 Software Engineering +1310.2366 Materials Science +1310.2367 Databases +1310.2368 Computers and Society +1310.2369 Software Engineering +1310.2371 Functional Analysis +1310.2375 Databases +1310.2383 +1310.2385 Information Theory +1310.2387 Data Structures and Algorithms +1310.2388 Numerical Analysis +1310.2390 Number Theory +1310.2394 Atomic Physics +1310.2396 Artificial Intelligence +1310.2397 Classical Analysis and ODEs +1310.2398 Dynamical Systems +1310.2400 Solar and Stellar Astrophysics +1310.2403 Representation Theory +1310.2404 Numerical Analysis +1310.2407 +1310.2408 Learning +1310.2409 Learning +1310.2412 Solar and Stellar Astrophysics +1310.2413 Phenomenology +1310.2416 Number Theory +1310.2421 Mesoscale and Nanoscale Physics +1310.2423 Differential Geometry +1310.2425 Solar and Stellar Astrophysics +1310.2429 +1310.2431 Logic in Computer Science +1310.2432 Astrophysics of Galaxies +1310.2437 General Topology +1310.2439 Analysis of PDEs +1310.2440 Analysis of PDEs +1310.2441 Social and Information Networks +1310.2442 Other Statistics +1310.2443 Analysis of PDEs +1310.2448 Analysis of PDEs +1310.2452 Cryptography and Security +1310.2456 Information Theory +1310.2457 Analysis of PDEs +1310.2458 Probability +1310.2464 Software Engineering +1310.2466 Medical Physics +1310.2468 Networking and Internet Architecture +1310.2473 Information Theory +1310.2477 Systems and Control +1310.2481 High Energy Astrophysical Phenomena +1310.2485 Analysis of PDEs +1310.2488 Computers and Society +1310.2491 Logic in Computer Science +1310.2493 Artificial Intelligence +1310.2494 Distributed, Parallel, and Cluster Computing +1310.2498 Numerical Analysis +1310.2501 Analysis of PDEs +1310.2511 Analysis of PDEs +1310.2517 Analysis of PDEs +1310.2520 Biological Physics +1310.2522 Strongly Correlated Electrons +1310.2524 Operator Algebras +1310.2527 Computation and Language +1310.2530 Atomic Physics +1310.2532 Statistics Theory +1310.2533 Analysis of PDEs +1310.2542 Quantitative Methods +1310.2543 +1310.2550 Fluid Dynamics +1310.2553 Solar and Stellar Astrophysics +1310.2556 Phenomenology +1310.2557 Applications +1310.2564 Probability +1310.2565 +1310.2567 Adaptation and Self-Organizing Systems +1310.2568 Rings and Algebras +1310.2571 Combinatorics +1310.2582 Algebraic Geometry +1310.2584 Functional Analysis +1310.2586 Computational Geometry +1310.2588 Experiment +1310.2592 Systems and Control +1310.2593 Experiment +1310.2596 Solar and Stellar Astrophysics +0812.0961 Exactly Solvable and Integrable Systems +0904.0442 Materials Science +1003.1290 Instrumentation and Detectors +1003.2893 Materials Science +1005.3867 Materials Science +1006.3242 Instrumentation and Detectors +1008.4436 +1010.3623 +1012.3115 Mesoscale and Nanoscale Physics +1102.1701 Number Theory +1106.1762 Combinatorics +1107.0132 Probability +1108.1294 Materials Science +1108.1949 Analysis of PDEs +1110.1567 General Finance +1112.1309 Atomic Physics +1202.3787 Cosmology and Nongalactic Astrophysics +1202.5213 +1203.0758 Number Theory +1203.1425 Optics +1203.4548 Algebraic Geometry +1206.0003 Classical Physics +1206.5385 Materials Science +1207.3530 Algebraic Geometry +1208.1063 Group Theory +1208.4430 Algebraic Topology +1208.4881 +1208.5768 Physics and Society +1209.1945 +1209.2036 +1209.4779 Theory +1209.5958 Statistical Mechanics +1210.2346 Learning +1210.4427 Cosmology and Nongalactic Astrophysics +1210.7876 Analysis of PDEs +1211.4982 Operator Algebras +1211.5782 Strongly Correlated Electrons +1212.3781 +1212.4834 Cosmology and Nongalactic Astrophysics +1212.6043 Computational Geometry +1212.6045 Computational Geometry +1212.6048 Graphics +1212.6662 Numerical Analysis +1301.2407 +1301.2964 Risk Management +1301.7076 Combinatorics +1301.7583 Theory +1302.4865 Analysis of PDEs +1302.5147 Mesoscale and Nanoscale Physics +1302.6222 Statistical Mechanics +1302.7188 +1303.1231 +1303.3501 Mesoscale and Nanoscale Physics +1303.4035 Statistics Theory +1303.5596 Physics and Society +1303.5774 Earth and Planetary Astrophysics +1303.6209 Strongly Correlated Electrons +1304.3009 Logic +1304.3209 Instrumentation and Detectors +1304.4831 Materials Science +1304.4914 Atomic Physics +1304.4972 Quantum Gases +1304.5750 Mesoscale and Nanoscale Physics +1304.6340 Strongly Correlated Electrons +1304.6457 Cosmology and Nongalactic Astrophysics +1304.7119 Cosmology and Nongalactic Astrophysics +1304.7233 Spectral Theory +1305.0805 +1305.1195 Superconductivity +1305.1298 Earth and Planetary Astrophysics +1305.2253 +1305.2528 Statistical Mechanics +1305.2563 Strongly Correlated Electrons +1305.2949 Computer Vision and Pattern Recognition +1305.2951 Phenomenology +1305.3480 +1305.3588 Phenomenology +1305.5154 Strongly Correlated Electrons +1305.5409 +1305.7380 Materials Science +1306.0637 Materials Science +1306.0721 Chemical Physics +1306.0877 Phenomenology +1306.1551 Statistical Mechanics +1306.2541 Mesoscale and Nanoscale Physics +1306.2953 Computational Physics +1306.3718 Mesoscale and Nanoscale Physics +1306.3738 Social and Information Networks +1306.4170 Materials Science +1306.4524 Number Theory +1306.4574 Experiment +1306.4800 Statistical Mechanics +1306.5280 +1306.5281 +1306.5456 Mesoscale and Nanoscale Physics +1306.6401 +1307.0673 Probability +1307.2814 Strongly Correlated Electrons +1307.5058 Rings and Algebras +1307.6506 Accelerator Physics +1307.7184 Superconductivity +1307.7625 Phenomenology +1307.7745 Strongly Correlated Electrons +1308.0496 Materials Science +1308.0872 Dynamical Systems +1308.1913 Theory +1308.3086 Differential Geometry +1308.3315 Combinatorics +1308.3516 Optics +1308.4398 Physics and Society +1308.4880 Physics and Society +1308.5327 Materials Science +1308.5741 Computational Geometry +1308.5891 Exactly Solvable and Integrable Systems +1308.5901 Algebraic Geometry +1308.6526 Distributed, Parallel, and Cluster Computing +1308.6582 High Energy Astrophysical Phenomena +1308.6595 +1308.6597 Dynamical Systems +1308.6598 Space Physics +1308.6602 Rings and Algebras +1308.6607 Probability +1308.6608 Cosmology and Nongalactic Astrophysics +1308.6609 Optics +1308.6612 Accelerator Physics +1308.6614 Classical Analysis and ODEs +1308.6616 Geophysics +1308.6621 Combinatorics +1308.6624 Algebraic Geometry +1308.6627 Data Structures and Algorithms +1308.6629 Fluid Dynamics +1308.6633 Systems and Control +1308.6634 Numerical Analysis +1308.6635 Data Structures and Algorithms +1308.6636 Biological Physics +1308.6637 Phenomenology +1308.6641 Systems and Control +1308.6643 Numerical Analysis +1308.6645 Biological Physics +1308.6646 Information Theory +1308.6648 Dynamical Systems +1308.6654 Materials Science +1308.6658 Analysis of PDEs +1308.6663 Networking and Internet Architecture +1308.6664 Materials Science +1308.6667 Analysis of PDEs +1308.6668 Fluid Dynamics +1308.6669 Classical Analysis and ODEs +1308.6670 Number Theory +1308.6672 Fluid Dynamics +1308.6677 +1308.6680 Number Theory +1308.6682 Databases +1308.6683 Databases +1308.6684 Algebraic Topology +1308.6685 Algebraic Topology +1308.6686 Analysis of PDEs +1308.6687 Computer Vision and Pattern Recognition +1308.6688 Materials Science +1308.6693 Computational Geometry +1308.6694 Formal Languages and Automata Theory +1308.6695 Exactly Solvable and Integrable Systems +1308.6696 Combinatorics +1308.6697 Computational Engineering, Finance, and Science +1308.6701 Databases +1308.6705 Social and Information Networks +1308.6708 Exactly Solvable and Integrable Systems +1308.6711 Data Structures and Algorithms +1308.6713 Optics +1308.6717 Combinatorics +1308.6719 Optics +1308.6721 Computer Vision and Pattern Recognition +1308.6727 Plasma Physics +1308.6730 Data Structures and Algorithms +1308.6735 Classical Physics +1308.6737 Biological Physics +1308.6743 Phenomenology +1308.6744 Cryptography and Security +1308.6745 Cryptography and Security +1308.6749 Phenomenology +1308.6754 Functional Analysis +1308.6758 Optics +1308.6760 Computers and Society +1308.6761 Statistics Theory +1308.6762 Probability +1308.6766 Atomic Physics +1308.6770 Quantum Algebra +1308.6772 Number Theory +1308.6773 +1308.6774 Optimization and Control +1308.6781 Differential Geometry +1308.6782 Mesoscale and Nanoscale Physics +1308.6784 Instrumentation and Methods for Astrophysics +1308.6785 Instrumentation and Methods for Astrophysics +1308.6792 K-Theory and Homology +1308.6796 Algebraic Geometry +1308.6798 Pattern Formation and Solitons +1308.6801 Computational Geometry +1308.6803 Combinatorics +1308.6805 Networking and Internet Architecture +1308.6807 Networking and Internet Architecture +1308.6811 Commutative Algebra +1308.6812 Group Theory +1308.6813 Number Theory +1308.6814 Classical Analysis and ODEs +1308.6815 Representation Theory +1308.6816 History and Overview +1308.6820 Dynamical Systems +1308.6821 Complex Variables +1308.6826 Optics +1308.6827 Differential Geometry +dg-ga/9610002 Differential Geometry +gr-qc/0105023 +math/0112207 Geometric Topology +math/0510387 Combinatorics +0708.4250 Group Theory +0711.2657 Materials Science +0803.3969 Rings and Algebras +0806.0699 General Physics +1004.3129 Geometric Topology +1007.0147 +1008.2158 High Energy Astrophysical Phenomena +1102.1401 +1103.5422 Strongly Correlated Electrons +1104.4769 Theory +1105.3665 Probability +1106.1223 Strongly Correlated Electrons +1106.3856 Theory +1106.5311 Superconductivity +1107.3654 Algebraic Geometry +1107.4383 Commutative Algebra +1107.5338 Quantitative Methods +1109.0807 Information Theory +1110.3839 Differential Geometry +1112.1412 Strongly Correlated Electrons +1112.2684 Geometric Topology +1112.5303 Strongly Correlated Electrons +1201.1168 Dynamical Systems +1202.1901 High Energy Astrophysical Phenomena +1204.2257 Probability +1204.2946 Probability +1204.3779 +1204.4296 Fluid Dynamics +1205.0813 Quantum Gases +1205.0833 Materials Science +1205.3833 +1205.6547 Number Theory +1206.4189 Applications +1206.4530 Analysis of PDEs +1206.6974 Atmospheric and Oceanic Physics +1207.0723 +1207.1299 Representation Theory +1207.2083 Information Theory +1207.2370 Applications +1207.5932 Solar and Stellar Astrophysics +1207.6047 High Energy Astrophysical Phenomena +1207.6723 Mesoscale and Nanoscale Physics +1207.6906 +1208.2015 Learning +1208.3134 Superconductivity +1209.1163 High Energy Astrophysical Phenomena +1209.6433 Methodology +1210.0645 Learning +1210.0962 Other Statistics +1210.1561 Theory +1210.1816 Theory +1210.5656 +1210.5979 Number Theory +1210.6025 +1210.8427 +1211.1682 Strongly Correlated Electrons +1211.1769 Representation Theory +1211.1829 Strongly Correlated Electrons +1211.3610 Number Theory +1211.6896 +1211.6929 Superconductivity +1212.1068 Information Retrieval +1212.1622 High Energy Astrophysical Phenomena +1212.2658 Populations and Evolution +1212.3394 Materials Science +1212.3476 Statistical Mechanics +1212.4241 Mesoscale and Nanoscale Physics +1212.4845 Materials Science +1212.5508 Materials Science +1301.1626 Genomics +1301.3441 Commutative Algebra +1301.3925 Numerical Analysis +1301.5861 Mesoscale and Nanoscale Physics +1301.6094 Rings and Algebras +1302.0229 +1302.0666 +1302.0705 Algebraic Geometry +1302.1171 Statistics Theory +1302.1429 Superconductivity +1302.1622 Lattice +1302.1943 Superconductivity +1302.2168 Information Theory +1302.2249 Lattice +1302.3063 Optics +1302.3182 Statistical Mechanics +1302.3190 Geometric Topology +1302.3275 +1302.3413 Mesoscale and Nanoscale Physics +1302.4301 Quantum Gases +1302.4394 Phenomenology +1302.4408 Superconductivity +1302.5486 Phenomenology +1302.6044 Data Analysis, Statistics and Probability +1302.6897 Solar and Stellar Astrophysics +1302.7036 Statistical Finance +1303.0772 Strongly Correlated Electrons +1303.1618 General Physics +1303.3212 Atomic Physics +1303.3975 Cosmology and Nongalactic Astrophysics +1303.4637 +1303.5831 Strongly Correlated Electrons +1304.0371 Computational Complexity +1304.1209 Data Analysis, Statistics and Probability +1304.1434 +1304.2299 Cosmology and Nongalactic Astrophysics +1304.2984 Analysis of PDEs +1304.4597 Astrophysics of Galaxies +1304.4912 Algebraic Topology +1304.5025 Mesoscale and Nanoscale Physics +1304.5648 Algebraic Topology +1304.7515 Geometric Topology +1304.7912 +1305.0284 Geometric Topology +1305.1794 General Topology +1305.2090 Accelerator Physics +1305.2227 Methodology +1305.3252 Systems and Control +1305.3794 Neural and Evolutionary Computing +1305.4037 Classical Analysis and ODEs +1305.4338 Materials Science +1305.4533 Solar and Stellar Astrophysics +1305.4733 Soft Condensed Matter +1305.4896 Methodology +1305.4929 Mesoscale and Nanoscale Physics +1305.4934 Cosmology and Nongalactic Astrophysics +1305.4938 Cosmology and Nongalactic Astrophysics +1305.4945 Representation Theory +1305.4946 Mesoscale and Nanoscale Physics +1305.4947 Neural and Evolutionary Computing +1305.4970 Logic +1305.4971 Dynamical Systems +1305.4975 Numerical Analysis +1305.4981 Methodology +1305.4982 Methodology +1305.4990 +1305.5001 Instrumentation and Detectors +1305.5006 Operator Algebras +1305.5011 Instrumentation and Detectors +1305.5017 Computation +1305.5020 Phenomenology +1305.5021 +1305.5022 Numerical Analysis +1305.5024 Robotics +1305.5025 Robotics +1305.5028 Differential Geometry +1305.5030 Artificial Intelligence +1305.5032 Combinatorics +1305.5033 Atomic Physics +1305.5044 Classical Analysis and ODEs +1305.5045 +1305.5054 Analysis of PDEs +1305.5061 Superconductivity +1305.5063 Analysis of PDEs +1305.5066 Numerical Analysis +1305.5067 Probability +1305.5074 Soft Condensed Matter +1305.5077 Mesoscale and Nanoscale Physics +1305.5081 +1305.5085 Combinatorics +1305.5091 Materials Science +1305.5101 Phenomenology +1305.5102 Algebraic Geometry +1305.5113 History and Overview +1305.5116 Computational Physics +1305.5120 Distributed, Parallel, and Cluster Computing +1305.5121 Rings and Algebras +1305.5133 Disordered Systems and Neural Networks +1305.5137 Materials Science +1305.5140 Mesoscale and Nanoscale Physics +1305.5146 Probability +1305.5151 Logic +1305.5156 Classical Analysis and ODEs +1305.5160 Computer Vision and Pattern Recognition +1305.5170 Computer Science and Game Theory +1305.5173 History and Overview +1305.5174 Algebraic Geometry +1305.5176 Computer Science and Game Theory +1305.5179 Distributed, Parallel, and Cluster Computing +1305.5181 Classical Analysis and ODEs +1305.5183 Instrumentation and Methods for Astrophysics +1305.5184 +1305.5186 Geometric Topology +1305.5189 Physics and Society +1305.5203 +1305.5208 Metric Geometry +1305.5209 Computational Geometry +1305.5210 General Physics +1305.5211 Numerical Analysis +1305.5215 Medical Physics +1305.5218 Materials Science +1305.5220 Pricing of Securities +1305.5225 Computational Physics +1305.5230 Complex Variables +1305.5232 Statistics Theory +1305.5233 Combinatorics +1305.5234 Logic +1305.5235 Physics and Society +1305.5237 Accelerator Physics +1305.5238 Risk Management +1305.5240 Logic in Computer Science +1305.5241 Number Theory +1305.5242 +1305.5246 Phenomenology +1305.5248 Instrumentation and Methods for Astrophysics +0804.2313 Analysis of PDEs +0811.0596 +0901.3577 Dynamical Systems +0903.3465 +0903.5503 Geometric Topology +0912.0194 Operator Algebras +1001.1130 Computational Physics +1003.4133 +1003.4177 +1005.2764 Algebraic Topology +1007.1415 +1008.1896 Materials Science +1008.5301 Algebraic Geometry +1010.2427 Numerical Analysis +1010.3374 General Mathematics +1011.6066 Spectral Theory +1012.4727 +1102.0006 Algebraic Geometry +1103.4722 Optimization and Control +1105.2151 Strongly Correlated Electrons +1106.1569 Cosmology and Nongalactic Astrophysics +1107.2965 +1107.4462 +1108.2808 Combinatorics +1109.4907 Combinatorics +1110.4962 Functional Analysis +1112.4256 Formal Languages and Automata Theory +1112.4315 Category Theory +1201.2883 Differential Geometry +1201.5615 Atomic Physics +1201.6631 Atomic Physics +1202.0117 Adaptation and Self-Organizing Systems +1202.3819 Methodology +1203.3265 +1203.3649 Cosmology and Nongalactic Astrophysics +1203.4169 Atomic Physics +1204.2357 Probability +1204.2741 Computer Vision and Pattern Recognition +1204.2801 Computer Vision and Pattern Recognition +1204.3442 Commutative Algebra +1204.3964 Atomic Physics +1204.6369 Mesoscale and Nanoscale Physics +1205.0990 Statistics Theory +1205.4608 Symplectic Geometry +1205.5895 Atomic Physics +1205.6487 Combinatorics +1206.0158 Functional Analysis +1206.2341 Lattice +1206.4812 Neurons and Cognition +1207.1975 Chaotic Dynamics +1207.5470 Analysis of PDEs +1207.5571 Chaotic Dynamics +1207.5580 +1207.5588 Superconductivity +1207.5639 Earth and Planetary Astrophysics +1207.6315 Representation Theory +1207.6834 Superconductivity +1208.0126 Earth and Planetary Astrophysics +1208.0382 Physics and Society +1208.1630 +1208.3656 +1208.6015 Spectral Theory +1208.6224 Phenomenology +1209.3293 Materials Science +1209.4915 Chaotic Dynamics +1209.5149 Theory +1210.0771 Statistics Theory +1210.1194 +1210.6070 Physics and Society +1210.6778 Functional Analysis +1210.7739 Theory +1211.0999 Phenomenology +1211.1848 Analysis of PDEs +1211.3669 Cosmology and Nongalactic Astrophysics +1211.5619 Cosmology and Nongalactic Astrophysics +1211.5799 Statistical Mechanics +1211.6307 Strongly Correlated Electrons +1212.0081 Materials Science +1212.0093 Theory +1212.1043 Theory +1212.1303 Mesoscale and Nanoscale Physics +1212.1596 Group Theory +1212.1769 +1212.1860 Plasma Physics +1212.3364 Classical Analysis and ODEs +1212.3366 Statistical Mechanics +1212.4121 Chemical Physics +1212.4611 Phenomenology +1212.5831 Theory +1212.6395 Strongly Correlated Electrons +1212.6734 Information Theory +1212.6833 Phenomenology +1212.6927 Theory +1301.1130 Statistical Mechanics +1301.1697 Mesoscale and Nanoscale Physics +1301.1803 Theory +1301.2042 Mesoscale and Nanoscale Physics +1301.2427 Information Theory +1301.2834 Cosmology and Nongalactic Astrophysics +1301.3495 Strongly Correlated Electrons +1301.3632 Cryptography and Security +1301.5677 Theory +1301.6176 Cryptography and Security +1301.6566 Quantum Gases +1301.6811 Phenomenology +1301.7030 +1301.7107 +1301.7191 Functional Analysis +1302.1815 Strongly Correlated Electrons +1302.2055 +1302.2276 Mesoscale and Nanoscale Physics +1302.3856 Phenomenology +1302.3898 Phenomenology +1302.4495 Atomic Physics +1302.4572 Physics and Society +1302.4899 Mesoscale and Nanoscale Physics +1302.5193 Classical Analysis and ODEs +1302.5664 Materials Science +1302.6284 +1302.6553 Cosmology and Nongalactic Astrophysics +1303.0435 Lattice +1303.0610 Phenomenology +1303.0619 Strongly Correlated Electrons +1303.0775 Information Theory +1303.0931 Atomic Physics +1303.1172 Phenomenology +1303.1525 Theory +1303.1687 +1303.2005 Data Analysis, Statistics and Probability +1303.2867 +1303.3146 Cosmology and Nongalactic Astrophysics +1303.4403 Phenomenology +1303.4583 Phenomenology +1303.4602 Optics +1303.4887 Phenomenology +1303.4896 Lattice +1303.5459 Theory +1303.5463 Phenomenology +1303.5479 Data Structures and Algorithms +1303.5510 +1303.6087 Phenomenology +1303.6178 Phenomenology +1303.6193 +1303.6437 Computational Complexity +1303.7199 +1303.7465 Experiment +1304.1988 Strongly Correlated Electrons +1304.2048 Methodology +1304.3130 Theory +1304.4309 Combinatorics +1304.5003 Statistical Mechanics +1304.5061 Group Theory +1304.5514 Numerical Analysis +1304.5741 Lattice +1304.6596 Optics +1304.6866 Phenomenology +1304.7488 Theory +1304.7971 Information Theory +1305.4466 Soft Condensed Matter +1305.5446 +1305.5735 General Physics +1305.5765 Information Theory +1305.5959 Information Retrieval +1305.6179 Solar and Stellar Astrophysics +1305.6618 Soft Condensed Matter +1305.6698 +1305.6712 +1305.6829 Cryptography and Security +1306.0689 Earth and Planetary Astrophysics +1306.1513 Logic +1306.1601 +1306.1898 Biological Physics +1306.1972 Functional Analysis +1306.1974 Functional Analysis +1306.2177 +1306.2189 Materials Science +1306.2208 Combinatorics +1306.2295 Artificial Intelligence +1306.2305 Optimization and Control +1306.2308 Earth and Planetary Astrophysics +1306.2319 High Energy Astrophysical Phenomena +1306.2322 High Energy Astrophysical Phenomena +1306.2323 High Energy Astrophysical Phenomena +1306.2324 High Energy Astrophysical Phenomena +1306.2325 High Energy Astrophysical Phenomena +1306.2328 High Energy Astrophysical Phenomena +1306.2330 High Energy Astrophysical Phenomena +1306.2331 High Energy Astrophysical Phenomena +1306.2332 High Energy Astrophysical Phenomena +1306.2333 High Energy Astrophysical Phenomena +1306.2334 High Energy Astrophysical Phenomena +1306.2335 High Energy Astrophysical Phenomena +1306.2336 High Energy Astrophysical Phenomena +1306.2340 Dynamical Systems +1306.2346 Metric Geometry +1306.2351 Optics +1306.2353 Genomics +1306.2360 Networking and Internet Architecture +1306.2361 Information Theory +1306.2362 Information Theory +1306.2363 Biological Physics +1306.2369 Accelerator Physics +1306.2373 Dynamical Systems +1306.2374 Combinatorics +1306.2375 +1306.2377 Combinatorics +1306.2378 Optics +1306.2379 +1306.2380 Metric Geometry +1306.2382 Probability +1306.2383 Differential Geometry +1306.2385 Group Theory +1306.2387 Combinatorics +1306.2390 Complex Variables +1306.2394 Group Theory +1306.2396 Algebraic Geometry +1306.2397 Functional Analysis +1306.2399 Information Theory +1306.2400 Combinatorics +1306.2404 Human-Computer Interaction +1306.2405 Discrete Mathematics +1306.2407 Cosmology and Nongalactic Astrophysics +1306.2414 Software Engineering +1306.2416 History and Philosophy of Physics +1306.2421 Classical Analysis and ODEs +1306.2425 Networking and Internet Architecture +1306.2427 Methodology +1306.2430 Probability +1306.2431 Optics +1306.2432 Phenomenology +1306.2433 Physics and Society +1306.2434 Information Theory +1306.2435 Subcellular Processes +1306.2440 Rings and Algebras +1306.2444 Strongly Correlated Electrons +1306.2448 Mesoscale and Nanoscale Physics +1306.2449 Populations and Evolution +1306.2450 Functional Analysis +1306.2453 Distributed, Parallel, and Cluster Computing +1306.2456 Algebraic Geometry +1306.2459 Databases +1306.2460 Databases +1306.2464 Optics +1306.2466 Numerical Analysis +1306.2467 Group Theory +1306.2476 Cryptography and Security +1306.2477 Cryptography and Security +1306.2486 Phenomenology +1306.2490 Mesoscale and Nanoscale Physics +1306.2502 Software Engineering +1306.2503 Methodology +1306.2509 Dynamical Systems +1306.2513 Optimization and Control +1306.2523 Commutative Algebra +1306.2528 Earth and Planetary Astrophysics +1306.2529 Number Theory +1306.2536 +1306.2538 Cell Behavior +1306.2539 Geophysics +1306.2548 Formal Languages and Automata Theory +1306.2554 Networking and Internet Architecture +1306.2555 Differential Geometry +1306.2556 Other Computer Science +1306.2558 Artificial Intelligence +1306.2562 History and Overview +1306.2563 Functional Analysis +1306.2565 Analysis of PDEs +1306.2579 Experiment +1306.2593 Sound +1306.2596 Classical Analysis and ODEs +1306.2597 Information Retrieval +1306.2599 Computer Vision and Pattern Recognition +1306.2610 Fluid Dynamics +1306.2611 Strongly Correlated Electrons +1306.2623 Logic +1306.2624 Computer Vision and Pattern Recognition +1306.2627 Materials Science +physics/0104035 Chemical Physics +1111.2331 General Physics +0805.0439 Representation Theory +0902.2068 +1003.2168 Probability +1004.0234 Statistics Theory +1004.2568 Dynamical Systems +1005.5692 Probability +1007.1112 Probability +1007.2669 Probability +1007.2869 +1007.3199 Probability +1008.2697 Probability +1008.3839 Probability +1009.4464 +1010.6118 Probability +1011.4142 Theory +1012.1634 K-Theory and Homology +1012.4148 General Physics +1103.5161 Analysis of PDEs +1104.2841 +1104.3353 Discrete Mathematics +1104.3552 Theory +1107.0310 Quantum Algebra +1108.2023 General Physics +1111.4913 Statistical Mechanics +1111.5481 Physics and Society +1112.2034 +1201.2502 Combinatorics +1201.3503 +1202.1303 Algebraic Geometry +1203.3554 Adaptation and Self-Organizing Systems +1203.5758 Probability +1203.6237 Combinatorics +1204.0567 +1204.1159 Analysis of PDEs +1204.4211 Mesoscale and Nanoscale Physics +1204.4757 Strongly Correlated Electrons +1205.2955 Phenomenology +1205.5039 Statistics Theory +1205.5647 +1205.5868 Methodology +1206.4179 Algebraic Geometry +1207.3021 Atomic Physics +1207.5248 Superconductivity +1207.5397 Functional Analysis +1207.6923 Operator Algebras +1208.3412 Superconductivity +1208.4813 +1208.5470 Phenomenology +1208.5905 Atomic Physics +1208.6115 +1209.2428 Theory +1209.2993 Probability +1209.5312 Dynamical Systems +1209.6152 Information Theory +1210.1388 Computation +1210.4275 +1210.5082 +1210.8250 Lattice +1211.0591 Materials Science +1211.0726 Materials Science +1211.1215 Phenomenology +1211.2511 Numerical Analysis +1211.2788 Theory +1211.3467 Solar and Stellar Astrophysics +1211.3746 Optics +1211.4523 Experiment +1211.4593 Superconductivity +1211.4995 Mesoscale and Nanoscale Physics +1211.5531 Representation Theory +1212.0475 Disordered Systems and Neural Networks +1212.0495 Pattern Formation and Solitons +1212.3637 Numerical Analysis +1212.3945 Soft Condensed Matter +1212.4217 +1212.5069 +1212.5213 Fluid Dynamics +1212.5601 Solar and Stellar Astrophysics +1212.5835 Theory +1212.6566 History and Philosophy of Physics +1212.6859 Strongly Correlated Electrons +1301.0958 Probability +1301.1808 +1301.1956 Soft Condensed Matter +1301.2387 +1301.3541 Learning +1301.3583 Learning +1301.3993 Representation Theory +1301.5705 Strongly Correlated Electrons +1301.5959 Differential Geometry +1301.6368 Theory +1302.3307 High Energy Astrophysical Phenomena +1302.5749 Statistics Theory +1302.7263 Learning +1303.1357 Mesoscale and Nanoscale Physics +1303.1713 High Energy Astrophysical Phenomena +1303.1910 Algebraic Geometry +1303.1934 Materials Science +1303.2302 Combinatorics +1303.2624 Superconductivity +1303.2906 Number Theory +1303.3145 Neural and Evolutionary Computing +1303.3250 Social and Information Networks +1303.3282 Phenomenology +1303.3303 Geometric Topology +1303.3421 Combinatorics +1303.3427 Networking and Internet Architecture +1303.3573 Probability +1303.3577 Chaotic Dynamics +1303.3578 Computational Geometry +1303.3579 General Physics +1303.3581 +1303.3582 +1303.3591 Atomic Physics +1303.3593 Materials Science +1303.3596 Algebraic Geometry +1303.3603 Classical Analysis and ODEs +1303.3604 Analysis of PDEs +1303.3605 Robotics +1303.3606 Accelerator Physics +1303.3607 Number Theory +1303.3614 Computational Engineering, Finance, and Science +1303.3618 Mesoscale and Nanoscale Physics +1303.3619 Combinatorics +1303.3620 Classical Analysis and ODEs +1303.3624 Networking and Internet Architecture +1303.3628 Cosmology and Nongalactic Astrophysics +1303.3630 Instrumentation and Detectors +1303.3632 Distributed, Parallel, and Cluster Computing +1303.3635 Cosmology and Nongalactic Astrophysics +1303.3636 Information Theory +1303.3638 Information Theory +1303.3642 Solar and Stellar Astrophysics +1303.3643 Networking and Internet Architecture +1303.3645 Logic in Computer Science +1303.3647 +1303.3648 Algebraic Geometry +1303.3651 Information Theory +1303.3653 Cosmology and Nongalactic Astrophysics +1303.3655 Probability +1303.3656 Information Theory +1303.3660 Networking and Internet Architecture +1303.3665 Information Theory +1303.3667 Analysis of PDEs +1303.3671 Algebraic Topology +1303.3674 Combinatorics +1303.3675 Combinatorics +1303.3679 Robotics +1303.3682 +1303.3685 Complex Variables +1303.3697 Functional Analysis +1303.3703 Commutative Algebra +1303.3704 Rings and Algebras +1303.3709 Algebraic Geometry +1303.3714 Lattice +1303.3716 Information Theory +1303.3717 Numerical Analysis +1303.3718 Algebraic Topology +1303.3721 Analysis of PDEs +1303.3733 Information Theory +1303.3737 Information Theory +1303.3738 Statistics Theory +1303.3742 Phenomenology +1303.3751 Social and Information Networks +1303.3754 Learning +1303.3759 Instrumentation and Detectors +1303.3760 Materials Science +1303.3763 Theory +1303.3769 Numerical Analysis +1303.3772 Materials Science +1303.3773 Probability +1303.3774 Materials Science +1303.3775 Computation +1303.3779 Populations and Evolution +1303.3784 Group Theory +1303.3785 Combinatorics +1303.3788 Theory +1303.3789 Commutative Algebra +1303.3791 Numerical Analysis +1303.3794 Combinatorics +1303.3801 General Physics +1303.3802 Analysis of PDEs +1303.3804 +1303.3807 Information Theory +1303.3811 Materials Science +1303.3814 Optics +1303.3817 Networking and Internet Architecture +1303.3818 General Physics +1303.3822 Phenomenology +1303.3826 Earth and Planetary Astrophysics +1303.3827 Multiagent Systems +1303.3828 Multiagent Systems +1303.3830 Solar and Stellar Astrophysics +1303.3838 Mesoscale and Nanoscale Physics +1303.3840 Quantum Gases +1303.3842 Populations and Evolution +1303.3844 Information Theory +1303.3849 Information Theory +1303.3854 Phenomenology +1303.3857 Combinatorics +1303.3861 +1303.3866 Data Analysis, Statistics and Probability +1303.3869 Materials Science +1303.3873 Geometric Topology +1303.3875 Digital Libraries +1303.3877 Numerical Analysis +1303.3878 Materials Science +0709.2537 +0711.0280 Materials Science +0809.2083 Metric Geometry +0903.0443 Information Theory +0904.1852 Functional Analysis +0905.2674 Group Theory +0907.1902 +0907.3567 Materials Science +0911.4957 Geometric Topology +1002.4662 Group Theory +1007.0079 Analysis of PDEs +1008.1284 Number Theory +1010.2837 Statistical Mechanics +1010.2844 Soft Condensed Matter +1011.5723 Differential Geometry +1107.5615 Systems and Control +1109.5705 Combinatorics +1111.3281 Computer Vision and Pattern Recognition +1112.1557 +1112.3728 Analysis of PDEs +1201.0596 Mesoscale and Nanoscale Physics +1201.2342 Analysis of PDEs +1201.3801 General Physics +1201.4895 Computer Vision and Pattern Recognition +1202.2689 +1202.2813 Representation Theory +1202.3655 Numerical Analysis +1202.4512 Analysis of PDEs +1203.0816 Mesoscale and Nanoscale Physics +1203.5094 Quantum Gases +1203.6117 Statistical Mechanics +1204.2893 +1205.1375 Geometric Topology +1205.3548 Classical Analysis and ODEs +1205.6079 +1205.6486 Statistical Mechanics +1206.0328 Experiment +1206.1554 +1206.2328 Analysis of PDEs +1206.2850 Analysis of PDEs +1207.3331 +1207.5857 Information Theory +1208.0122 +1208.3533 Databases +1208.4810 Optics +1209.1406 Numerical Analysis +1209.3027 Instrumentation and Methods for Astrophysics +1210.0039 Classical Analysis and ODEs +1210.2239 Statistical Mechanics +1210.3245 Earth and Planetary Astrophysics +1210.3821 Analysis of PDEs +1210.3938 Strongly Correlated Electrons +1210.6759 Theory +1210.8035 Quantum Gases +1211.0057 +1211.3500 Numerical Analysis +1211.3604 Combinatorics +1211.4154 Analysis of PDEs +1211.5634 +1211.5798 Representation Theory +1211.7241 Quantum Gases +1212.0043 Analysis of PDEs +1212.3581 Statistical Mechanics +1212.4558 Soft Condensed Matter +1212.4641 Probability +1212.4858 Phenomenology +1212.5157 Statistical Mechanics +1212.5622 Group Theory +1212.5889 Number Theory +1212.6136 +1212.6818 Phenomenology +1301.1615 Disordered Systems and Neural Networks +1301.1690 Mesoscale and Nanoscale Physics +1301.3939 Instrumentation and Methods for Astrophysics +1301.4267 Strongly Correlated Electrons +1301.5403 Quantum Gases +1301.6498 Statistical Mechanics +1301.6565 Strongly Correlated Electrons +1301.7631 +1302.1460 High Energy Astrophysical Phenomena +1302.1806 Strongly Correlated Electrons +1302.3305 +1302.4925 Strongly Correlated Electrons +1302.5192 Distributed, Parallel, and Cluster Computing +1303.0623 Statistical Mechanics +1303.1413 Theory +1303.2025 Social and Information Networks +1303.3208 Strongly Correlated Electrons +1303.3456 +1303.4300 Strongly Correlated Electrons +1303.4689 Statistical Mechanics +1303.4885 Phenomenology +1303.5038 Optics +1303.6427 Analysis of PDEs +1303.7101 +1303.7420 Superconductivity +1304.0957 Soft Condensed Matter +1304.2837 Statistical Mechanics +1304.3800 Computation +1304.4722 Algebraic Topology +1304.4754 Mesoscale and Nanoscale Physics +1304.5143 Quantum Gases +1304.5612 History and Philosophy of Physics +1304.6200 Mesoscale and Nanoscale Physics +1304.7247 Theory +1304.7985 Theory +1305.1389 Rings and Algebras +1305.1780 Mesoscale and Nanoscale Physics +1305.2092 Phenomenology +1305.2114 High Energy Astrophysical Phenomena +1305.3866 Chemical Physics +1305.4164 Superconductivity +1305.4213 Cosmology and Nongalactic Astrophysics +1305.4822 +1305.7452 Cosmology and Nongalactic Astrophysics +1305.7490 +1306.1608 High Energy Astrophysical Phenomena +1306.2183 Mesoscale and Nanoscale Physics +1306.2829 Quantum Gases +1306.2924 Classical Physics +1306.2973 Computational Physics +1306.3173 Statistical Mechanics +1306.3493 Phenomenology +1306.3640 Cosmology and Nongalactic Astrophysics +1306.4473 Programming Languages +1306.4869 Theory +1306.4909 +1306.5845 Adaptation and Self-Organizing Systems +1306.5879 Dynamical Systems +1306.6058 Computer Vision and Pattern Recognition +1306.6078 Computation and Language +1306.6086 General Topology +1306.6090 High Energy Astrophysical Phenomena +1306.6091 Popular Physics +1306.6092 Metric Geometry +1306.6094 Superconductivity +1306.6098 +1306.6105 Algebraic Geometry +1306.6107 Operator Algebras +1306.6113 Cosmology and Nongalactic Astrophysics +1306.6115 Software Engineering +1306.6120 Representation Theory +1306.6122 Information Theory +1306.6124 Genomics +1306.6127 Functional Analysis +1306.6129 Populations and Evolution +1306.6130 Computation and Language +1306.6137 Applications +1306.6138 High Energy Astrophysical Phenomena +1306.6146 Geometric Topology +1306.6153 History and Philosophy of Physics +1306.6157 Methodology +1306.6163 Populations and Evolution +1306.6165 Mesoscale and Nanoscale Physics +1306.6169 Information Theory +1306.6170 Complex Variables +1306.6173 Complex Variables +1306.6174 Fluid Dynamics +1306.6175 Instrumentation and Methods for Astrophysics +1306.6176 Analysis of PDEs +1306.6177 Analysis of PDEs +1306.6178 Analysis of PDEs +1306.6181 Complex Variables +1306.6182 Complex Variables +1306.6185 Analysis of PDEs +1306.6189 Learning +1306.6192 Distributed, Parallel, and Cluster Computing +1306.6193 Data Structures and Algorithms +1306.6194 Systems and Control +1306.6195 +1306.6196 Fluid Dynamics +1306.6198 Social and Information Networks +1306.6201 +1306.6205 Probability +1306.6206 Computational Engineering, Finance, and Science +1306.6210 +1306.6211 Analysis of PDEs +1306.6214 Soft Condensed Matter +1306.6217 Complex Variables +1306.6219 Phenomenology +1306.6220 Complex Variables +1306.6226 Algebraic Geometry +1306.6230 Optics +1306.6232 Combinatorics +1306.6241 +1306.6243 Mesoscale and Nanoscale Physics +1306.6244 Quantum Algebra +1306.6248 Other Condensed Matter +1306.6249 Complex Variables +1306.6250 Category Theory +1306.6251 Superconductivity +1306.6252 Complex Variables +1306.6255 Numerical Analysis +1306.6256 Spectral Theory +1306.6257 Analysis of PDEs +1306.6260 Cryptography and Security +1306.6261 Group Theory +1306.6262 Software Engineering +1306.6265 Cryptography and Security +1306.6267 Pricing of Securities +1306.6270 Representation Theory +1306.6271 Representation Theory +1306.6278 Computer Science and Game Theory +1306.6279 Soft Condensed Matter +1306.6281 Information Theory +1306.6283 High Energy Astrophysical Phenomena +1306.6286 General Physics +1306.6287 Accelerator Physics +1306.6288 Information Theory +1306.6292 +1306.6295 Data Structures and Algorithms +1306.6298 Phenomenology +1306.6300 Computational Physics +1306.6312 Algebraic Geometry +1306.6313 Quantitative Methods +1306.6322 Representation Theory +cond-mat/9807181 +math/0511418 Symplectic Geometry +math/0703335 Symplectic Geometry +0807.2019 Rings and Algebras +1001.2864 Populations and Evolution +1005.5546 Algebraic Geometry +1007.2679 K-Theory and Homology +1007.4859 +1008.0965 Strongly Correlated Electrons +1011.1696 +1101.3989 Geometric Topology +1102.4003 Statistics Theory +1103.1919 Probability +1104.0189 Probability +1104.0740 Probability +1105.5660 Cosmology and Nongalactic Astrophysics +1106.4294 Cosmology and Nongalactic Astrophysics +1106.5665 Representation Theory +1108.3139 Quantum Algebra +1109.6093 Algebraic Geometry +1112.1802 Rings and Algebras +1112.3806 +1202.0047 Phenomenology +1202.4477 +1205.2398 Pricing of Securities +1205.6603 +1205.6942 +1206.0661 Strongly Correlated Electrons +1206.2594 +1206.6638 Group Theory +1207.5239 +1207.6053 Information Theory +1208.2091 Number Theory +1208.5750 +1209.1776 +1209.2006 Geometric Topology +1209.4214 Data Structures and Algorithms +1210.0475 Dynamical Systems +1210.3212 +1210.6347 Cosmology and Nongalactic Astrophysics +1211.1187 Combinatorics +1211.3049 Discrete Mathematics +1211.3236 Strongly Correlated Electrons +1211.3523 Mesoscale and Nanoscale Physics +1211.4289 Learning +1211.5198 +1211.7293 Phenomenology +1212.3046 Materials Science +1212.3598 Phenomenology +1212.4145 Phenomenology +1212.4338 Strongly Correlated Electrons +1212.4933 +1212.5228 Theory +1212.6003 +1212.6703 +1301.2025 Strongly Correlated Electrons +1301.5814 Theory +1301.7489 Materials Science +1302.1151 Mesoscale and Nanoscale Physics +1302.1742 General Topology +1302.1874 Strongly Correlated Electrons +1302.2108 Strongly Correlated Electrons +1302.2452 Statistical Mechanics +1302.3277 Theory +1302.4100 +1302.4333 Analysis of PDEs +1302.5456 Analysis of PDEs +1302.5737 Phenomenology +1302.6297 +1302.7144 Exactly Solvable and Integrable Systems +1303.0359 Representation Theory +1303.0808 +1303.1363 Mesoscale and Nanoscale Physics +1303.2843 +1303.4161 Spectral Theory +1303.4962 Phenomenology +1303.5119 Phenomenology +1303.5548 Materials Science +1303.5549 Materials Science +1303.5991 Metric Geometry +1304.1480 +1304.2120 Quantum Gases +1304.2309 Phenomenology +1304.2821 Phenomenology +1304.2891 Strongly Correlated Electrons +1304.2892 Number Theory +1304.3732 Instrumentation and Methods for Astrophysics +1304.4325 Strongly Correlated Electrons +1304.4443 Phenomenology +1304.5000 Materials Science +1304.5147 Analysis of PDEs +1304.5296 +1304.6725 +1305.2893 Cosmology and Nongalactic Astrophysics +1305.5142 Instrumentation and Methods for Astrophysics +1305.5206 Phenomenology +1305.5889 Materials Science +1305.6400 Experiment +1306.0435 Spectral Theory +1306.0439 Spectral Theory +1306.1960 Classical Analysis and ODEs +1306.2044 +1306.4429 Algebraic Geometry +1306.4648 Operator Algebras +1306.4892 Theory +1306.5173 +1306.5652 Phenomenology +1306.5829 Data Structures and Algorithms +1306.5876 Mesoscale and Nanoscale Physics +1306.5891 Mesoscale and Nanoscale Physics +1307.0853 Materials Science +1307.0901 Statistical Mechanics +1307.2190 Commutative Algebra +1307.2352 Information Theory +1307.2696 Data Structures and Algorithms +1307.2740 Analysis of PDEs +1307.2912 Popular Physics +1307.2914 Atmospheric and Oceanic Physics +1307.2915 Distributed, Parallel, and Cluster Computing +1307.2917 Metric Geometry +1307.2924 Group Theory +1307.2926 Medical Physics +1307.2929 Instrumentation and Detectors +1307.2930 Molecular Networks +1307.2931 Medical Physics +1307.2934 Accelerator Physics +1307.2935 +1307.2945 Analysis of PDEs +1307.2948 Solar and Stellar Astrophysics +1307.2949 Accelerator Physics +1307.2953 Computers and Society +1307.2954 Dynamical Systems +1307.2956 Solar and Stellar Astrophysics +1307.2960 Mesoscale and Nanoscale Physics +1307.2963 Category Theory +1307.2971 Learning +1307.2975 Analysis of PDEs +1307.2977 Cryptography and Security +1307.2983 +1307.2984 Networking and Internet Architecture +1307.2985 Chemical Physics +1307.2988 Instrumentation and Methods for Astrophysics +1307.2990 Numerical Analysis +1307.2992 Instrumentation and Detectors +1307.2993 +1307.2994 +1307.2997 Computer Vision and Pattern Recognition +1307.3004 Networking and Internet Architecture +1307.3005 Systems and Control +1307.3006 Materials Science +1307.3011 Networking and Internet Architecture +1307.3013 Computers and Society +1307.3014 Computational Engineering, Finance, and Science +1307.3015 Human-Computer Interaction +1307.3017 Other Computer Science +1307.3019 Combinatorics +1307.3021 Differential Geometry +1307.3023 Analysis of PDEs +1307.3024 Phenomenology +1307.3026 Multimedia +1307.3031 Algebraic Topology +1307.3033 Data Structures and Algorithms +1307.3035 Instrumentation and Methods for Astrophysics +1307.3036 +1307.3038 High Energy Astrophysical Phenomena +1307.3039 Materials Science +1307.3041 Instrumentation and Detectors +1307.3046 Databases +1307.3047 Rings and Algebras +1307.3048 High Energy Astrophysical Phenomena +1307.3050 Commutative Algebra +1307.3051 Other Computer Science +1307.3053 Instrumentation and Methods for Astrophysics +1307.3054 Computer Vision and Pattern Recognition +1307.3056 Instrumentation and Methods for Astrophysics +1307.3057 Cryptography and Security +1307.3058 Materials Science +1307.3062 Number Theory +1307.3064 Theory +1307.3068 Differential Geometry +1307.3071 Materials Science +1307.3080 Distributed, Parallel, and Cluster Computing +1307.3082 Differential Geometry +1307.3084 Probability +1307.3086 Software Engineering +1307.3088 Mathematical Software +1307.3089 +1307.3091 Artificial Intelligence +1307.3094 Earth and Planetary Astrophysics +1307.3095 Information Theory +1307.3096 Numerical Analysis +1307.3099 Information Theory +1307.3100 Accelerator Physics +1307.3103 Information Theory +1307.3108 Numerical Analysis +1307.3110 Information Theory +1307.3113 Combinatorics +1307.3119 Quantum Algebra +1307.3122 Group Theory +1307.3124 Solar and Stellar Astrophysics +1307.3125 Physics and Society +1307.3130 Logic +1307.3132 Solar and Stellar Astrophysics +1307.3136 Cryptography and Security +1307.3137 Instrumentation and Methods for Astrophysics +1307.3139 Fluid Dynamics +1307.3140 Functional Analysis +1307.3143 Algebraic Topology +1307.3145 +1307.3146 Applications +1307.3148 Algebraic Topology +1307.3163 Rings and Algebras +1307.3164 Human-Computer Interaction +1307.3165 Chemical Physics +1307.3166 Human-Computer Interaction +1307.3169 Instrumentation and Methods for Astrophysics +1307.3172 Differential Geometry +1307.3173 Materials Science +1307.3174 Human-Computer Interaction +1307.3181 Information Theory +1307.3182 Materials Science +1307.3189 Programming Languages +1307.3192 Data Structures and Algorithms +1307.3195 Artificial Intelligence +1307.3197 +1307.3207 Distributed, Parallel, and Cluster Computing +1307.3208 Algebraic Geometry +1307.3209 Materials Science +1307.3213 Combinatorics +1307.3215 Algebraic Geometry +1307.3216 Networking and Internet Architecture +1307.3217 General Physics +1307.3218 Materials Science +1307.3221 Instrumentation and Methods for Astrophysics +1307.3224 Robotics +1307.3225 Algebraic Geometry +1307.3227 Methodology +1307.3229 Dynamical Systems +1307.3230 Earth and Planetary Astrophysics +1307.3233 Theory +hep-ph/9801287 Phenomenology +hep-th/9808148 Theory +0709.2345 Number Theory +0804.2233 Number Theory +0804.4141 Number Theory +0810.5157 Data Analysis, Statistics and Probability +0812.0146 Data Structures and Algorithms +0903.1575 Number Theory +0904.1990 Methodology +0907.4747 Number Theory +0911.4266 Group Theory +1002.4127 Number Theory +1002.4403 Number Theory +1003.2091 Materials Science +1005.3560 Combinatorics +1006.2761 Molecular Networks +1010.2617 Dynamical Systems +1012.0487 Differential Geometry +1012.1056 General Topology +1012.4492 Quantum Gases +1103.2805 Probability +1104.3052 Mesoscale and Nanoscale Physics +1104.4270 Algebraic Geometry +1105.5669 Machine Learning +1108.0374 +1109.5654 +1110.1611 Populations and Evolution +1110.3564 Learning +1111.6406 Representation Theory +1112.1351 Dynamical Systems +1112.1795 Logic in Computer Science +1112.5041 Combinatorics +1201.2243 Analysis of PDEs +1201.5828 Functional Analysis +1202.3564 Symplectic Geometry +1202.5295 +1203.6828 Cosmology and Nongalactic Astrophysics +1204.0672 Mesoscale and Nanoscale Physics +1204.1068 Optics +1204.2259 Quantum Algebra +1204.2734 Algebraic Geometry +1204.4442 +1205.0287 Mesoscale and Nanoscale Physics +1205.1172 +1205.1412 Disordered Systems and Neural Networks +1205.4306 Methodology +1205.5662 Social and Information Networks +1206.2901 Statistical Mechanics +1206.2910 Phenomenology +1206.5861 +1206.6316 Phenomenology +1207.0046 +1207.1954 Algebraic Topology +1207.2298 Materials Science +1207.3005 Lattice +1207.4062 Statistical Mechanics +1207.4206 Strongly Correlated Electrons +1207.6085 +1208.0210 Cosmology and Nongalactic Astrophysics +1208.0555 +1208.0759 Phenomenology +1208.0874 Dynamical Systems +1208.1115 Strongly Correlated Electrons +1208.1383 Statistical Mechanics +1208.1618 Materials Science +1208.1852 Solar and Stellar Astrophysics +1208.2784 Phenomenology +1208.3436 Phenomenology +1208.3922 Optimization and Control +1208.4017 +1208.4136 Superconductivity +1208.5091 +1208.5782 Phenomenology +1208.5968 Phenomenology +1209.0980 Phenomenology +1209.1511 Probability +1209.1902 Methodology +1209.2718 +1209.3398 Strongly Correlated Electrons +1209.3461 +1209.4858 +1210.0191 Phenomenology +1210.0468 Optics +1210.0900 Phenomenology +1210.1855 Phenomenology +1210.2111 Biological Physics +1210.2589 +1210.2664 +1210.2776 Physics and Society +1210.3890 Phenomenology +1210.4041 Strongly Correlated Electrons +1210.4304 Materials Science +1210.5501 Phenomenology +1210.5618 Statistical Mechanics +1210.5754 Phenomenology +1211.0250 Phenomenology +1211.0696 Classical Analysis and ODEs +1211.1807 Disordered Systems and Neural Networks +1211.2474 Strongly Correlated Electrons +1211.3131 Phenomenology +1211.3499 Strongly Correlated Electrons +1211.3535 Phenomenology +1211.3701 Phenomenology +1211.3849 Phenomenology +1211.4581 Phenomenology +1211.4835 Phenomenology +1211.4845 Probability +1211.4872 Theory +1211.5090 Mesoscale and Nanoscale Physics +1211.5255 +1211.5363 Experiment +1211.6894 Disordered Systems and Neural Networks +1211.6911 Phenomenology +1211.6931 Dynamical Systems +1211.6972 Statistical Mechanics +1212.0061 Mesoscale and Nanoscale Physics +1212.0151 +1212.0222 Strongly Correlated Electrons +1212.0416 +1212.0560 Phenomenology +1212.0850 Theory +1212.1032 Statistical Mechanics +1212.2030 Fluid Dynamics +1212.2149 Phenomenology +1212.2274 Strongly Correlated Electrons +1212.2900 Theory +1212.3003 Experiment +1212.3035 Phenomenology +1212.3367 Statistical Mechanics +1212.3485 Theory +1212.3985 Materials Science +1212.4074 Phenomenology +1212.4079 Phenomenology +1212.4257 Phenomenology +1212.4427 Instrumentation and Detectors +1212.4872 +1212.5905 Atomic and Molecular Clusters +1301.0309 Phenomenology +1301.0548 Atomic Physics +1301.0851 +1301.0969 Theory +1301.1029 Experiment +1301.1495 Theory +1301.1662 Mesoscale and Nanoscale Physics +1301.2771 Cosmology and Nongalactic Astrophysics +1301.3478 Phenomenology +1301.3693 Statistical Mechanics +1301.4368 Phenomenology +1301.5000 +1301.5232 +1301.5256 +1301.5440 Mesoscale and Nanoscale Physics +1301.5568 Probability +1302.0687 +1302.0808 Statistical Mechanics +1302.1094 Information Theory +1302.1179 +1302.1201 Cosmology and Nongalactic Astrophysics +1302.2868 +1302.3544 Cosmology and Nongalactic Astrophysics +1302.3628 Experiment +1302.4118 Information Theory +1302.5400 +1302.6449 Strongly Correlated Electrons +1302.6675 Statistical Mechanics +1302.7181 Solar and Stellar Astrophysics +1303.1079 Mesoscale and Nanoscale Physics +1303.2307 Phenomenology +1303.3434 +1303.4969 Emerging Technologies +1303.5862 Data Structures and Algorithms +1303.6195 Quantum Gases +1303.6271 Physics and Society +1303.6272 +1303.6275 Fluid Dynamics +1303.6277 Functional Analysis +1303.6278 Chemical Physics +1303.6296 Algebraic Geometry +1303.6301 Solar and Stellar Astrophysics +1303.6302 Mesoscale and Nanoscale Physics +1303.6309 Solar and Stellar Astrophysics +1303.6311 Other Computer Science +1303.6312 Dynamical Systems +1303.6318 K-Theory and Homology +1303.6321 Dynamical Systems +1303.6322 Dynamical Systems +1303.6327 Dynamical Systems +1303.6329 Cosmology and Nongalactic Astrophysics +1303.6336 Optimization and Control +1303.6338 Phenomenology +1303.6342 Optimization and Control +1303.6347 Functional Analysis +1303.6349 Statistics Theory +1303.6350 Materials Science +1303.6351 Analysis of PDEs +1303.6358 +1303.6359 Numerical Analysis +1303.6361 Computer Vision and Pattern Recognition +1303.6365 +1303.6368 Mesoscale and Nanoscale Physics +1303.6370 Machine Learning +1303.6373 Dynamical Systems +1303.6374 Cell Behavior +1303.6382 Cell Behavior +1303.6383 Numerical Analysis +1303.6384 Phenomenology +1303.6387 Information Theory +1303.6389 Atomic Physics +1303.6391 Differential Geometry +1303.6400 Phenomenology +1303.6401 Solar and Stellar Astrophysics +1303.6404 +1303.6410 Numerical Analysis +1303.6411 +1303.6413 Solar and Stellar Astrophysics +1303.6416 Combinatorics +1303.6421 Optimization and Control +1303.6423 +1303.6424 Computational Complexity +1303.6433 Phenomenology +1303.6436 Mesoscale and Nanoscale Physics +1303.6447 Applications +1303.6448 Geometric Topology +1303.6449 Probability +1303.6451 Statistics Theory +1303.6452 Probability +1303.6453 Logic in Computer Science +1303.6456 Geometric Topology +1303.6469 Optimization and Control +1303.6470 Commutative Algebra +1303.6473 +1303.6475 General Physics +1303.6479 Phenomenology +1303.6481 Data Structures and Algorithms +1303.6482 High Energy Astrophysical Phenomena +1303.6483 Materials Science +1303.6486 Functional Analysis +1303.6489 Cosmology and Nongalactic Astrophysics +1303.6491 Algebraic Geometry +1303.6492 History and Philosophy of Physics +1303.6493 Computational Geometry +1303.6495 Algebraic Geometry +1303.6496 +1303.6500 Classical Analysis and ODEs +1303.6501 Superconductivity +1303.6504 Analysis of PDEs +1303.6508 +1303.6512 Computers and Society +1303.6514 Accelerator Physics +1303.6516 Biological Physics +1303.6517 Biological Physics +1303.6519 Accelerator Physics +1303.6520 Accelerator Physics +1303.6523 +1303.6526 Chaotic Dynamics +1303.6527 Analysis of PDEs +1303.6528 General Physics +1303.6530 Analysis of PDEs +1303.6531 Differential Geometry +1303.6538 Mesoscale and Nanoscale Physics +1303.6541 Networking and Internet Architecture +1303.6542 Algebraic Geometry +1303.6543 Solar and Stellar Astrophysics +1303.6544 Information Theory +1303.6548 Analysis of PDEs +1303.6552 Accelerator Physics +1303.6555 Logic in Computer Science +1303.6556 Functional Analysis +1303.6565 Superconductivity +1303.6567 Combinatorics +1303.6569 General Finance +1303.6571 General Finance +1303.6576 History and Overview +1303.6581 Materials Science +1303.6584 Methodology +1303.6585 Instrumentation and Methods for Astrophysics +1303.6589 +1303.6590 Number Theory +1303.6595 Instrumentation and Detectors +1303.6597 Biological Physics +1303.6601 Quantum Gases +1303.6602 Chaotic Dynamics +1303.6604 General Finance +1303.6606 Physics and Society +1303.6611 General Physics +1303.6617 Probability +1303.6619 Computer Vision and Pattern Recognition +1303.6621 Chaotic Dynamics +1303.6622 Accelerator Physics +1303.6624 +cs/0608052 Digital Libraries +math/0610335 Number Theory +math/0701319 Algebraic Geometry +0704.2763 Geometric Topology +0705.0619 Mesoscale and Nanoscale Physics +0705.4081 Algebraic Topology +0706.0790 Algebraic Topology +0706.1359 Mesoscale and Nanoscale Physics +0706.2537 Chemical Physics +0707.2009 Probability +0708.3419 Probability +0709.0437 K-Theory and Homology +0709.3235 Combinatorics +0710.0447 Combinatorics +0710.4792 Combinatorics +0711.4098 Representation Theory +0802.0995 Geometric Topology +0802.4391 Mesoscale and Nanoscale Physics +0803.1816 Combinatorics +0804.0995 Combinatorics +0806.3682 Combinatorics +0809.4479 Combinatorics +0809.4480 Combinatorics +0812.0885 Artificial Intelligence +0812.4006 Combinatorics +0901.4261 Combinatorics +0902.0632 Combinatorics +0906.5057 Geometric Topology +0906.5236 Combinatorics +0909.0698 Algebraic Topology +0911.5615 Combinatorics +0912.0184 Combinatorics +1002.3133 Superconductivity +1003.3071 +1006.3703 Optimization and Control +1007.0495 Geometric Topology +1007.4491 Statistical Mechanics +1011.0617 Chemical Physics +1012.1085 Mesoscale and Nanoscale Physics +1012.3061 Algebraic Geometry +1012.4442 Probability +1101.3479 Complex Variables +1102.1910 Dynamical Systems +1103.4171 Algebraic Geometry +1103.5229 Classical Analysis and ODEs +1103.6110 Dynamical Systems +1105.4853 Algebraic Geometry +1106.1033 +1106.3156 Geometric Topology +1106.6008 Probability +1107.5984 +1108.0199 Complex Variables +1108.0924 +1109.1184 Combinatorics +1109.2214 Genomics +1109.4761 General Physics +1109.5298 Statistics Theory +1110.0673 +1110.1897 Algebraic Geometry +1110.3209 Combinatorics +1110.5272 Combinatorics +1111.2526 Logic +1111.3525 Cellular Automata and Lattice Gases +1111.5684 Computers and Society +1111.6742 Classical Analysis and ODEs +1112.2891 Statistical Mechanics +1112.3224 +1112.3828 +1112.4757 Functional Analysis +1112.5407 Information Theory +1112.6201 Commutative Algebra +1202.2584 Probability +1202.2806 Algebraic Topology +1202.3835 Group Theory +1202.4482 Neurons and Cognition +1202.4998 Chaotic Dynamics +1202.5711 Number Theory +1202.5962 +1203.4087 Chaotic Dynamics +1204.0874 Plasma Physics +1204.5346 Exactly Solvable and Integrable Systems +1204.5352 Cosmology and Nongalactic Astrophysics +1204.6375 +1205.1893 Theory +1205.3058 Systems and Control +1205.4135 Information Theory +1205.4911 Strongly Correlated Electrons +1205.6166 +1206.0329 Optimization and Control +1206.1194 Statistics Theory +1206.1356 Group Theory +1206.4793 Group Theory +1207.1103 Theory +1207.1667 Chaotic Dynamics +1207.3052 +1207.5524 Soft Condensed Matter +1207.6338 Theory +1207.6534 Quantum Gases +1207.6795 Mesoscale and Nanoscale Physics +1208.1209 Theory +1208.1975 Distributed, Parallel, and Cluster Computing +1208.2260 Superconductivity +1208.2505 Combinatorics +1208.2623 Strongly Correlated Electrons +1208.3251 Information Theory +1208.3977 Dynamical Systems +1208.5488 Cosmology and Nongalactic Astrophysics +1208.6018 Materials Science +1208.6157 Physics and Society +1208.6445 Experiment +1209.0794 +1209.0946 Statistical Mechanics +1209.1330 Optimization and Control +1209.1345 Optimization and Control +1209.1707 +1209.2060 Complex Variables +1209.2149 Soft Condensed Matter +1209.2351 Complex Variables +1209.2445 +1209.2766 +1209.4449 Portfolio Management +1209.4576 Systems and Control +1209.4967 Genomics +1209.5129 Cosmology and Nongalactic Astrophysics +1209.6148 +1209.6601 Probability +1210.1451 Computational Complexity +1210.2051 Logic +1210.3152 Atomic and Molecular Clusters +1210.3610 +1210.3642 +1210.5576 Strongly Correlated Electrons +1210.6127 +1210.6335 Combinatorics +1210.7801 Theory +1210.8037 +1210.8238 +1211.0251 Populations and Evolution +1211.0432 +1211.0440 Chaotic Dynamics +1211.2577 General Physics +1211.3132 Phenomenology +1211.3282 Number Theory +1211.4061 History and Philosophy of Physics +1211.4539 Phenomenology +1211.5279 Quantum Algebra +1211.5818 Mesoscale and Nanoscale Physics +1211.6386 +1211.6436 Cosmology and Nongalactic Astrophysics +1211.7085 Quantum Gases +1211.7328 Superconductivity +1212.1718 Phenomenology +1212.1981 +1212.3692 +1212.3908 Neurons and Cognition +1212.4434 Superconductivity +1212.4630 Geophysics +1212.5048 Experiment +1212.6218 Strongly Correlated Electrons +1212.6226 General Physics +1301.0417 Experiment +1301.0545 Solar and Stellar Astrophysics +1301.0653 Cosmology and Nongalactic Astrophysics +1301.0686 Instrumentation and Methods for Astrophysics +1301.1447 Geometric Topology +1301.2583 Theory +1301.2723 Networking and Internet Architecture +1301.2764 Spectral Theory +1301.4037 Phenomenology +1301.4271 Solar and Stellar Astrophysics +1301.4692 General Topology +1301.5133 Quantum Gases +1301.5359 Information Theory +1301.5439 +1301.5752 Superconductivity +1301.5830 Atomic and Molecular Clusters +1301.6946 Other Computer Science +1301.7002 Information Theory +1301.7046 Information Theory +1301.7332 Physics and Society +1301.7481 Rings and Algebras +1302.0260 Phenomenology +1302.0263 Optics +1302.0598 Superconductivity +1302.0873 Cosmology and Nongalactic Astrophysics +1302.1098 Populations and Evolution +1302.1164 Chaotic Dynamics +1302.1369 Social and Information Networks +1302.1392 Group Theory +1302.1420 +1302.1425 General Physics +1302.1629 Combinatorics +1302.1667 Cryptography and Security +1302.1981 +1302.1986 Combinatorics +1302.2007 Classical Analysis and ODEs +1302.2162 Superconductivity +1302.2164 Theory +1302.2165 Differential Geometry +1302.2166 Superconductivity +1302.2169 Symbolic Computation +1302.2176 Learning +1302.2179 Space Physics +1302.2182 Genomics +1302.2183 Information Theory +1302.2187 Information Theory +1302.2189 Number Theory +1302.2190 Earth and Planetary Astrophysics +1302.2191 Other Condensed Matter +1302.2193 Software Engineering +1302.2197 Software Engineering +1302.2199 Software Engineering +1302.2201 Software Engineering +1302.2202 Distributed, Parallel, and Cluster Computing +1302.2203 Distributed, Parallel, and Cluster Computing +1302.2204 Analysis of PDEs +1302.2207 +1302.2216 Numerical Analysis +1302.2217 Distributed, Parallel, and Cluster Computing +1302.2222 Information Retrieval +1302.2223 Information Retrieval +1302.2224 Symbolic Computation +1302.2227 Distributed, Parallel, and Cluster Computing +1302.2230 Commutative Algebra +1302.2232 Theory +1302.2238 High Energy Astrophysical Phenomena +1302.2240 High Energy Astrophysical Phenomena +1302.2241 Classical Analysis and ODEs +1302.2244 Networking and Internet Architecture +1302.2246 Information Theory +1302.2250 +1302.2252 Classical Analysis and ODEs +1302.2253 Cryptography and Security +1302.2254 Numerical Analysis +1302.2256 Logic +1302.2259 Algebraic Geometry +1302.2263 Materials Science +1302.2267 Applications +1302.2270 Rings and Algebras +1302.2273 Programming Languages +1302.2274 Combinatorics +1302.2278 Theory +1302.2279 Logic +1302.2282 Dynamical Systems +1302.2287 Soft Condensed Matter +1302.2288 Soft Condensed Matter +1302.2289 Soft Condensed Matter +1302.2302 Optics +1302.2303 Methodology +1302.2304 Earth and Planetary Astrophysics +1302.2306 Solar and Stellar Astrophysics +1302.2307 Classical Analysis and ODEs +1302.2310 Representation Theory +1302.2314 Biological Physics +1302.2315 Functional Analysis +1302.2318 Information Retrieval +1302.2320 Statistical Mechanics +1302.2323 +1302.2326 High Energy Astrophysical Phenomena +1302.2328 Solar and Stellar Astrophysics +1302.2333 Accelerator Physics +1302.2334 Accelerator Physics +1302.2337 General Finance +1302.2338 Combinatorics +1302.2339 Information Theory +1302.2341 Classical Analysis and ODEs +1302.2343 Information Theory +1302.2344 Phenomenology +1302.2345 Statistics Theory +1302.2347 +1302.2363 Mesoscale and Nanoscale Physics +1302.2364 Cosmology and Nongalactic Astrophysics +1302.2365 Strongly Correlated Electrons +1302.2368 +1302.2370 Computational Geometry +1302.2376 Social and Information Networks +1302.2381 Number Theory +1302.2385 Algebraic Geometry +1302.2387 Combinatorics +1302.2388 +1302.2393 Solar and Stellar Astrophysics +1302.2396 +1302.2397 Atomic Physics +1302.2400 Dynamical Systems +1302.2402 Algebraic Geometry +1302.2407 Biological Physics +1302.2409 Experiment +1302.2411 Soft Condensed Matter +1302.2413 Statistical Mechanics +1302.2417 Functional Analysis +1302.2420 Information Theory +1302.2421 Classical Analysis and ODEs +1302.2425 Phenomenology +1302.2427 Information Theory +1302.2433 Dynamical Systems +1302.2434 Number Theory +1302.2435 Probability +1302.2436 Learning +1302.2439 Computational Physics +1302.2441 Combinatorics +1302.2444 High Energy Astrophysical Phenomena +1302.2447 High Energy Astrophysical Phenomena +1302.2451 High Energy Astrophysical Phenomena +1302.2453 Quantum Algebra +1302.2455 Group Theory +1302.2460 +1302.2467 Numerical Analysis +1302.2469 Experiment +1302.2470 Disordered Systems and Neural Networks +1302.2472 Physics and Society +1302.2474 Classical Analysis and ODEs +1302.2477 +1302.2481 Information Theory +1302.2482 Numerical Analysis +1302.2483 Functional Analysis +1302.2490 Functional Analysis +1302.2493 General Finance +1302.2504 Combinatorics +1302.2505 Optics +1302.2507 Probability +1302.2508 Probability +1302.2509 Cosmology and Nongalactic Astrophysics +1302.2513 Combinatorics +1302.2526 Plasma Physics +1302.2531 Probability +1302.2535 Representation Theory +1302.2541 Complex Variables +1302.2543 Distributed, Parallel, and Cluster Computing +1302.2547 Numerical Analysis +1302.2550 Learning +1302.2552 Learning +1302.2564 +1302.2567 Computational Finance +1302.2568 +1302.2569 Machine Learning +1302.2572 General Physics +1302.2573 General Physics +1302.2576 Learning +1302.2577 Emerging Technologies +1302.2580 Algebraic Geometry +1302.2581 Classical Physics +1302.2582 Geophysics +1302.2585 Analysis of PDEs +1302.2590 Analysis of PDEs +1302.2597 Solar and Stellar Astrophysics +1302.2599 Combinatorics +1302.2600 Lattice +1302.2601 Probability +1302.2605 Quantitative Methods +hep-th/0302209 Theory +math/0102051 Combinatorics +math/0103134 Geometric Topology +math/0105065 Combinatorics +math/0109036 Geometric Topology +math/0204026 Combinatorics +math/0307314 Geometric Topology +math/0309152 Geometric Topology +math/0401089 Combinatorics +math/0411387 Combinatorics +math/0411407 Combinatorics +math/0506546 Combinatorics +math/0510218 Combinatorics +math/0511200 Combinatorics +math/0512570 Combinatorics +math/0602043 Combinatorics +math/0605262 Combinatorics +math/0606296 Probability +math/0606301 Combinatorics +math/0701539 Combinatorics +math/0702865 Algebraic Geometry +quant-ph/0212069 +quant-ph/0304026 +quant-ph/0306122 +quant-ph/0506058 +quant-ph/0604202 +0805.4257 Algebraic Geometry +0902.2761 Theory +0905.3203 Numerical Analysis +0905.3605 High Energy Astrophysical Phenomena +0908.0278 Functional Analysis +0911.3771 Algebraic Geometry +0912.0345 Solar and Stellar Astrophysics +0912.3406 Theory +0912.4490 Cosmology and Nongalactic Astrophysics +1004.3017 Solar and Stellar Astrophysics +1005.2356 Differential Geometry +1011.1313 Differential Geometry +1012.0265 Theory +1101.0999 Geometric Topology +1103.0816 Dynamical Systems +1106.1126 Algebraic Geometry +1108.3146 Probability +1108.4531 Neural and Evolutionary Computing +1108.4561 Phenomenology +1110.1168 Geometric Topology +1111.1325 +1111.2244 Soft Condensed Matter +1111.2892 Theory +1111.5950 Information Theory +1112.3146 Soft Condensed Matter +1201.0511 Phenomenology +1201.3017 Phenomenology +1201.4270 Combinatorics +1202.0314 Data Structures and Algorithms +1202.6219 Combinatorics +1203.4628 Quantum Algebra +1204.1153 +1204.2200 Complex Variables +1204.4944 Differential Geometry +1204.6029 Theory +1205.3029 Chaotic Dynamics +1205.3116 Quantum Gases +1205.3592 Chaotic Dynamics +1205.6436 Strongly Correlated Electrons +1206.0282 +1206.1549 Strongly Correlated Electrons +1206.3112 Mesoscale and Nanoscale Physics +1207.0271 Data Structures and Algorithms +1207.1029 Portfolio Management +1207.1852 Distributed, Parallel, and Cluster Computing +1207.3718 Cryptography and Security +1207.3759 Theory +1207.5065 Strongly Correlated Electrons +1207.7001 Quantum Algebra +1208.3971 Classical Analysis and ODEs +1208.4681 Cosmology and Nongalactic Astrophysics +1209.4944 Logic +1209.5579 Lattice +1209.6468 Quantum Gases +1210.1093 Cosmology and Nongalactic Astrophysics +1210.7595 Superconductivity +1211.0161 +1211.1474 Differential Geometry +1211.4304 Theory +1211.4586 +1211.4919 Mesoscale and Nanoscale Physics +1211.5374 Strongly Correlated Electrons +1211.5582 +1211.5922 +1212.0822 +1212.2050 +1212.2226 Solar and Stellar Astrophysics +1212.3518 Algebraic Geometry +1212.4601 Adaptation and Self-Organizing Systems +1212.5269 Statistical Mechanics +1212.6334 Classical Analysis and ODEs +1212.6720 Quantum Algebra +1212.6815 Cosmology and Nongalactic Astrophysics +1301.1369 Statistical Mechanics +1301.2703 Experiment +1301.2726 +1301.2761 Phenomenology +1301.3366 +1301.3748 Digital Libraries +1301.4649 Methodology +1301.7568 Number Theory +1301.7699 Programming Languages +1302.4003 Materials Science +1302.4421 Artificial Intelligence +1302.4512 Strongly Correlated Electrons +1302.5517 Statistical Mechanics +1302.6942 Phenomenology +1302.7134 +1303.1415 Analysis of PDEs +1303.2323 Theory +1303.2876 Neurons and Cognition +1303.6315 Statistical Mechanics +1303.6426 Strongly Correlated Electrons +1304.1651 Instrumentation and Detectors +1304.3351 Populations and Evolution +1304.3579 Quantum Gases +1304.3677 Optimization and Control +1304.3872 Computational Complexity +1304.4682 Social and Information Networks +1304.7421 Soft Condensed Matter +1304.7727 Optimization and Control +1304.8061 Mesoscale and Nanoscale Physics +1305.1395 Analysis of PDEs +1305.1823 Cosmology and Nongalactic Astrophysics +1305.1956 Machine Learning +1305.1964 Cosmology and Nongalactic Astrophysics +1305.2169 Geophysics +1305.2192 +1305.2214 Geometric Topology +1305.2215 Quantum Algebra +1305.2216 Commutative Algebra +1305.2218 Learning +1305.2221 Computer Vision and Pattern Recognition +1305.2223 Solar and Stellar Astrophysics +1305.2229 Quantum Algebra +1305.2232 Numerical Analysis +1305.2233 Information Theory +1305.2235 Computation +1305.2239 +1305.2241 Soft Condensed Matter +1305.2242 Analysis of PDEs +1305.2249 Tissues and Organs +1305.2250 Methodology +1305.2254 Artificial Intelligence +1305.2260 General Physics +1305.2263 Statistical Finance +1305.2264 +1305.2265 Artificial Intelligence +1305.2269 Computer Vision and Pattern Recognition +1305.2270 Earth and Planetary Astrophysics +1305.2276 Computers and Society +1305.2278 Fluid Dynamics +1305.2285 Rings and Algebras +1305.2289 History and Philosophy of Physics +1305.2294 Group Theory +1305.2295 Logic in Computer Science +1305.2299 Robotics +1305.2306 Computers and Society +1305.2309 Mesoscale and Nanoscale Physics +1305.2310 Representation Theory +1305.2311 Representation Theory +1305.2322 Computational Engineering, Finance, and Science +1305.2323 Quantitative Methods +1305.2326 Analysis of PDEs +1305.2329 Methodology +1305.2333 Space Physics +1305.2337 Differential Geometry +1305.2338 Commutative Algebra +1305.2350 Computer Science and Game Theory +1305.2352 Sound +1305.2353 Numerical Analysis +1305.2355 Algebraic Geometry +1305.2358 History and Philosophy of Physics +1305.2362 Computer Vision and Pattern Recognition +1305.2367 Mesoscale and Nanoscale Physics +1305.2368 Group Theory +1305.2369 Networking and Internet Architecture +1305.2370 Networking and Internet Architecture +1305.2373 Chemical Physics +1305.2379 Differential Geometry +1305.2381 Mesoscale and Nanoscale Physics +1305.2386 Multiagent Systems +1305.2387 Networking and Internet Architecture +1305.2388 Cryptography and Security +1305.2389 Phenomenology +1305.2391 Cryptography and Security +1305.2395 Computer Vision and Pattern Recognition +1305.2401 Physics and Society +1305.2404 Combinatorics +1305.2408 Group Theory +1305.2411 Strongly Correlated Electrons +math/0004151 Quantum Algebra +math/0504037 Category Theory +math/0604542 Category Theory +0812.4762 +0907.2671 Symplectic Geometry +0912.3016 Computational Geometry +1004.3522 Materials Science +1004.3536 Materials Science +1008.1902 Computational Geometry +1008.2653 Statistical Mechanics +1009.1373 Computational Geometry +1011.2988 Analysis of PDEs +1011.4872 Instrumentation and Detectors +1012.5515 +1102.5749 Differential Geometry +1104.4563 Optimization and Control +1106.2570 +1106.4435 Experiment +1106.5402 +1107.2884 +1108.3705 Strongly Correlated Electrons +1109.1344 +1109.4269 +1111.2421 Analysis of PDEs +1111.3513 Combinatorics +1201.3750 Materials Science +1201.3751 Materials Science +1201.5734 +1202.2903 Data Analysis, Statistics and Probability +1204.0956 Mesoscale and Nanoscale Physics +1204.6495 +1204.6667 +1205.2061 Differential Geometry +1205.5389 Experiment +1206.2053 Superconductivity +1206.3512 Geometric Topology +1207.1441 Quantum Gases +1207.2858 +1207.4469 Probability +1207.7259 Mesoscale and Nanoscale Physics +1208.0124 Geometric Topology +1208.1890 Number Theory +1208.2330 Information Theory +1208.5902 Theory +1208.6229 Operator Algebras +1209.0057 Data Analysis, Statistics and Probability +1209.1919 Group Theory +1209.2185 Data Structures and Algorithms +1209.3184 Adaptation and Self-Organizing Systems +1209.3237 Mesoscale and Nanoscale Physics +1209.6404 +1210.0748 Databases +1210.1348 Experiment +1210.3433 Number Theory +1210.3872 Networking and Internet Architecture +1210.4295 Analysis of PDEs +1210.5874 High Energy Astrophysical Phenomena +1211.1446 Computational Physics +1211.1765 Analysis of PDEs +1211.3399 Cosmology and Nongalactic Astrophysics +1211.3706 Applications +1212.1620 Disordered Systems and Neural Networks +1212.3801 Analysis of PDEs +1212.4166 Phenomenology +1212.4212 Dynamical Systems +1212.5450 Quantum Gases +1212.5477 Algebraic Geometry +1212.5509 Optics +1212.5803 Computational Physics +1212.5833 Quantum Gases +1212.5978 Phenomenology +1212.6220 Theory +1212.6599 Probability +1301.2559 Experiment +1301.3020 Geophysics +1301.4566 Machine Learning +1301.4664 Materials Science +1301.4985 Mesoscale and Nanoscale Physics +1301.5639 Mesoscale and Nanoscale Physics +1301.5807 +1301.6422 Information Theory +1302.0693 Quantum Gases +1302.1962 Materials Science +1302.3197 Statistical Finance +1302.3497 Analysis of PDEs +1302.4822 Atomic Physics +1302.6433 Phenomenology +1302.6514 Logic in Computer Science +1302.7251 Artificial Intelligence +1303.0274 Theory +1303.1158 Soft Condensed Matter +1303.1560 Group Theory +1303.1905 +1303.2299 Dynamical Systems +1303.2431 Strongly Correlated Electrons +1303.2697 High Energy Astrophysical Phenomena +1303.3435 Mesoscale and Nanoscale Physics +1303.3464 Chemical Physics +1303.6828 Theory +1303.6864 Mesoscale and Nanoscale Physics +1303.7017 Mesoscale and Nanoscale Physics +1303.7081 Probability +1304.0838 Instrumentation and Methods for Astrophysics +1304.0914 Soft Condensed Matter +1304.4988 Strongly Correlated Electrons +1304.5456 High Energy Astrophysical Phenomena +1304.6247 +1304.6295 +1304.6753 Systems and Control +1304.7372 Instrumentation and Methods for Astrophysics +1305.0130 Experiment +1305.0165 Metric Geometry +1305.0202 Combinatorics +1305.0260 Functional Analysis +1305.0261 Information Retrieval +1305.0264 High Energy Astrophysical Phenomena +1305.0278 Strongly Correlated Electrons +1305.0288 Probability +1305.0297 Databases +1305.0299 Phenomenology +1305.0300 Emerging Technologies +1305.0305 +1305.0306 Populations and Evolution +1305.0309 Instrumentation and Methods for Astrophysics +1305.0320 Computation +1305.0321 Information Theory +1305.0324 Analysis of PDEs +1305.0329 Phenomenology +1305.0333 Instrumentation and Methods for Astrophysics +1305.0334 Functional Analysis +1305.0336 Formal Languages and Automata Theory +1305.0339 Statistics Theory +1305.0342 Probability +1305.0343 Combinatorics +1305.0346 Experiment +1305.0352 Statistical Mechanics +1305.0353 Probability +1305.0355 Statistics Theory +1305.0357 Information Retrieval +1305.0358 Materials Science +1305.0361 Physics and Society +1305.0367 Popular Physics +1305.0372 Quantum Gases +1305.0375 Probability +1305.0377 Digital Libraries +1305.0379 Digital Libraries +1305.0382 Differential Geometry +1305.0383 +1305.0384 Information Theory +1305.0387 Phenomenology +1305.0395 Numerical Analysis +1305.0398 Instrumentation and Detectors +1305.0399 +1305.0406 Analysis of PDEs +1305.0415 Classical Analysis and ODEs +1305.0423 Learning +1305.0426 Atomic Physics +1305.0428 Geometric Topology +1305.0429 Commutative Algebra +1305.0431 Number Theory +1305.0433 Data Structures and Algorithms +1305.0434 Discrete Mathematics +1305.0435 Digital Libraries +1305.0436 Statistical Finance +1305.0438 Networking and Internet Architecture +1305.0441 Optimization and Control +1305.0448 Group Theory +1305.0450 Representation Theory +1305.0453 Computational Complexity +1305.0454 Probability +1305.0455 Algebraic Topology +1305.0460 Combinatorics +1305.0462 Lattice +1305.0463 Differential Geometry +1305.0464 Cosmology and Nongalactic Astrophysics +1305.0465 Mesoscale and Nanoscale Physics +1305.0467 Software Engineering +1305.0471 Social and Information Networks +1305.0476 Instrumentation and Methods for Astrophysics +1305.0477 Analysis of PDEs +1305.0481 Analysis of PDEs +1305.0483 Distributed, Parallel, and Cluster Computing +1305.0493 Logic +1305.0495 +1305.0501 Logic +1305.0503 Information Theory +1305.0507 Social and Information Networks +1305.0508 Analysis of PDEs +1305.0509 Analysis of PDEs +1305.0512 Data Structures and Algorithms +1305.0513 Social and Information Networks +1305.0514 +1305.0517 Geometric Topology +1305.0520 Optics +1305.0521 Optics +1305.0524 Populations and Evolution +1305.0529 General Topology +1305.0530 Analysis of PDEs +1305.0532 Pattern Formation and Solitons +1305.0534 Computer Science and Game Theory +1305.0535 Functional Analysis +1305.0536 Number Theory +1305.0539 Algebraic Geometry +1305.0542 Earth and Planetary Astrophysics +1305.0547 Information Theory +1305.0550 Instrumentation and Detectors +cond-mat/0601192 Strongly Correlated Electrons +hep-ph/0701071 Phenomenology +hep-th/0104113 Theory +math/0608199 Combinatorics +0705.3711 Phenomenology +0802.2705 Logic +0805.3848 Algebraic Geometry +0807.0715 Biomolecules +0807.4473 Adaptation and Self-Organizing Systems +0907.2437 Theory +0907.2464 Theory +0909.4765 Pricing of Securities +0912.5277 Analysis of PDEs +1008.0414 Classical Analysis and ODEs +1009.5436 +1012.3238 Symplectic Geometry +1102.1148 +1102.2418 Exactly Solvable and Integrable Systems +1102.5638 Logic in Computer Science +1104.2352 Quantum Gases +1105.1314 Strongly Correlated Electrons +1105.3325 Classical Physics +1107.0493 Probability +1107.1953 Combinatorics +1108.0682 +1108.3689 Cosmology and Nongalactic Astrophysics +1112.5531 Strongly Correlated Electrons +1201.3804 Distributed, Parallel, and Cluster Computing +1202.1455 Astrophysics of Galaxies +1202.3228 Group Theory +1203.0815 Combinatorics +1203.0973 Representation Theory +1203.3694 Statistics Theory +1203.4635 Numerical Analysis +1203.6063 Cosmology and Nongalactic Astrophysics +1204.2645 Phenomenology +1204.3144 Phenomenology +1204.3183 Statistics Theory +1204.5237 Soft Condensed Matter +1205.1436 Fluid Dynamics +1205.1930 Group Theory +1205.4042 Phenomenology +1205.4586 Theory +1206.7030 Probability +1207.2627 Quantitative Methods +1207.4280 Algebraic Geometry +1207.4499 Theory +1207.6197 +1207.7153 Algebraic Geometry +1207.7283 +1208.2777 Computation and Language +1208.4741 Superconductivity +1208.5655 +1208.6135 Materials Science +1209.0326 Number Theory +1209.1628 Logic in Computer Science +1209.3312 Information Theory +1209.4608 Statistical Finance +1209.4999 +1209.5315 +1210.0947 Functional Analysis +1210.2143 Information Theory +1210.4404 General Physics +1210.4822 Data Structures and Algorithms +1210.6131 Experiment +1210.7397 Optimization and Control +1210.8148 High Energy Astrophysical Phenomena +1211.1822 +1211.2580 Physics and Society +1211.6394 Phenomenology +1211.6825 Materials Science +1211.7265 Atomic Physics +1211.7313 Solar and Stellar Astrophysics +1212.1362 Physics and Society +1212.2100 Theory +1212.2289 Cosmology and Nongalactic Astrophysics +1212.3683 Algebraic Geometry +1212.5221 Lattice +1301.0536 Plasma Physics +1301.1501 +1301.1595 Optics +1301.2718 Instrumentation and Methods for Astrophysics +1301.3129 Operator Algebras +1301.4082 +1301.4422 Theory +1301.4999 Superconductivity +1301.5329 Quantum Gases +1301.5367 High Energy Astrophysical Phenomena +1301.5602 Cosmology and Nongalactic Astrophysics +1302.3253 Materials Science +1302.3276 +1302.4297 Learning +1303.0630 +1303.2478 Discrete Mathematics +1303.2905 Theory +1303.3691 Theory +1303.4209 +1303.5466 Numerical Analysis +1303.5801 Mesoscale and Nanoscale Physics +1303.6288 Strongly Correlated Electrons +1303.7193 Mesoscale and Nanoscale Physics +1303.7340 Cosmology and Nongalactic Astrophysics +1304.0787 Statistical Mechanics +1304.1021 Phenomenology +1304.2684 Functional Analysis +1304.2870 Mesoscale and Nanoscale Physics +1304.3165 Solar and Stellar Astrophysics +1304.4086 Computation and Language +1304.4968 Soft Condensed Matter +1304.5218 Numerical Analysis +1304.5419 Superconductivity +1304.5556 Soft Condensed Matter +1304.5587 Computer Vision and Pattern Recognition +1304.6006 Statistical Finance +1304.6422 Theory +1304.6559 Instrumentation and Methods for Astrophysics +1305.0643 Optics +1305.0945 Analysis of PDEs +1305.1266 Analysis of PDEs +1305.2864 Chaotic Dynamics +1305.3141 Symplectic Geometry +1305.3160 Differential Geometry +1305.3204 Logic in Computer Science +1305.3257 Combinatorics +1305.3277 Cosmology and Nongalactic Astrophysics +1305.3281 Earth and Planetary Astrophysics +1305.3283 Logic +1305.3300 +1305.3302 Computational Physics +1305.3304 Pattern Formation and Solitons +1305.3306 +1305.3307 Materials Science +1305.3310 Materials Science +1305.3314 Data Structures and Algorithms +1305.3315 Experiment +1305.3317 Information Theory +1305.3321 Artificial Intelligence +1305.3325 Probability +1305.3327 Atomic Physics +1305.3328 Digital Libraries +1305.3333 Computer Science and Game Theory +1305.3334 Learning +1305.3335 Superconductivity +1305.3336 Computer Science and Game Theory +1305.3337 Differential Geometry +1305.3338 Networking and Internet Architecture +1305.3340 Algebraic Geometry +1305.3344 Complex Variables +1305.3352 Numerical Analysis +1305.3354 Networking and Internet Architecture +1305.3356 Information Theory +1305.3358 Information Theory +1305.3360 +1305.3364 Information Theory +1305.3366 Cosmology and Nongalactic Astrophysics +1305.3367 Atmospheric and Oceanic Physics +1305.3374 Cosmology and Nongalactic Astrophysics +1305.3375 Information Theory +1305.3377 +1305.3379 Theory +1305.3380 Number Theory +1305.3381 Differential Geometry +1305.3382 Statistics Theory +1305.3384 Learning +1305.3385 Materials Science +1305.3388 Logic +1305.3393 General Topology +1305.3396 Cryptography and Security +1305.3398 Analysis of PDEs +1305.3401 Superconductivity +1305.3402 Classical Analysis and ODEs +1305.3403 Classical Analysis and ODEs +1305.3404 Algebraic Geometry +1305.3406 Commutative Algebra +1305.3408 Logic +1305.3409 Methodology +1305.3410 Geometric Topology +1305.3411 Number Theory +1305.3414 Combinatorics +1305.3417 Fluid Dynamics +1305.3420 Combinatorics +1305.3424 Solar and Stellar Astrophysics +1305.3429 Algebraic Geometry +1305.3432 Category Theory +1305.3433 Computational Finance +1305.3434 Phenomenology +1305.3435 Experiment +1305.3441 Solar and Stellar Astrophysics +1305.3444 Number Theory +1305.3447 Dynamical Systems +1305.3458 Rings and Algebras +1305.3459 Optimization and Control +1305.3460 Combinatorics +1305.3467 Mesoscale and Nanoscale Physics +1305.3469 Number Theory +1305.3473 Dynamical Systems +1305.3476 Phenomenology +1305.3477 +1305.3478 Analysis of PDEs +1305.3482 Statistics Theory +1305.3485 Software Engineering +1305.3488 Phenomenology +1305.3490 Performance +1305.3491 Differential Geometry +1305.3495 Neurons and Cognition +1305.3496 Performance +1305.3498 Information Theory +1305.3509 +1305.3510 +1305.3513 History and Overview +1305.3514 Algebraic Geometry +1305.3519 Computational Physics +1305.3520 Soft Condensed Matter +1305.3527 Astrophysics of Galaxies +1305.3533 Statistical Mechanics +1305.3536 Performance +1305.3542 Dynamical Systems +1305.3545 Experiment +1305.3547 Theory +1305.3552 High Energy Astrophysical Phenomena +1305.3553 Subcellular Processes +1305.3554 Soft Condensed Matter +1305.3559 Optimization and Control +1305.3563 Biological Physics +1305.3566 Geometric Topology +1305.3567 Dynamical Systems +1305.3568 Networking and Internet Architecture +1305.3580 Number Theory +1305.3581 Materials Science +1305.3584 Data Structures and Algorithms +1305.3587 Metric Geometry +1305.3589 Phenomenology +1305.3591 +1305.3594 +1305.3596 Information Theory +1305.3599 Phenomenology +1305.3600 General Topology +1305.3601 Experiment +nlin/0607007 Adaptation and Self-Organizing Systems +nlin/0609026 Adaptation and Self-Organizing Systems +0704.1010 Algebraic Geometry +0906.3972 Plasma Physics +0909.3784 Plasma Physics +1001.4063 Materials Science +1002.4582 Optics +1003.1900 Optics +1003.4921 Analysis of PDEs +1006.4200 Cosmology and Nongalactic Astrophysics +1009.2168 Probability +1009.5058 Phenomenology +1104.3027 Mesoscale and Nanoscale Physics +1105.3436 Optics +1107.0420 Information Theory +1107.1767 Optics +1108.0851 Superconductivity +1108.2224 Group Theory +1109.3021 Functional Analysis +1111.2888 Computer Science and Game Theory +1112.3291 Operator Algebras +1112.5346 Analysis of PDEs +1202.0451 Representation Theory +1202.0718 Analysis of PDEs +1202.2309 Cosmology and Nongalactic Astrophysics +1202.2907 Cryptography and Security +1202.4058 Cryptography and Security +1202.5755 Networking and Internet Architecture +1203.3050 Group Theory +1203.3382 +1203.6664 Number Theory +1203.6879 Probability +1205.4161 Combinatorics +1206.0196 Optimization and Control +1206.2798 Statistical Mechanics +1206.3805 Theory +1207.2844 Theory +1207.3939 Statistical Mechanics +1207.4532 Biological Physics +1207.5070 Strongly Correlated Electrons +1207.6602 +1208.0827 High Energy Astrophysical Phenomena +1208.1346 Cryptography and Security +1208.4621 Methodology +1209.2382 Software Engineering +1210.0128 Social and Information Networks +1210.1928 Machine Learning +1210.2094 Programming Languages +1210.5573 +1211.1614 Probability +1211.3590 Quantum Algebra +1211.5286 Rings and Algebras +1211.7176 Materials Science +1212.0121 Physics and Society +1212.1373 Phenomenology +1212.3282 Computational Complexity +1212.4625 Mesoscale and Nanoscale Physics +1301.0144 Popular Physics +1301.0847 Theory +1301.2526 Soft Condensed Matter +1301.4789 Optics +1301.6227 Phenomenology +1302.0281 Quantum Gases +1302.1063 Mesoscale and Nanoscale Physics +1302.2332 +1302.4584 Theory +1302.4856 Logic in Computer Science +1302.6020 Theory +1303.2151 Operator Algebras +1303.3213 Pattern Formation and Solitons +1303.3307 Cosmology and Nongalactic Astrophysics +1303.4649 General Mathematics +1303.4669 Category Theory +1303.6983 +1304.0190 Solar and Stellar Astrophysics +1304.2305 +1304.2645 Phenomenology +1304.5096 Mesoscale and Nanoscale Physics +1304.5360 Superconductivity +1304.6262 Statistical Mechanics +1304.6681 Theory +1304.7459 Solar and Stellar Astrophysics +1304.7873 Theory +1305.0474 +1305.0494 Superconductivity +1305.1431 Group Theory +1305.3551 Strongly Correlated Electrons +1305.3863 Mesoscale and Nanoscale Physics +1305.5003 Mesoscale and Nanoscale Physics +1305.5347 History and Philosophy of Physics +1305.5896 +1305.6136 +1305.7201 Materials Science +1306.0570 Statistical Mechanics +1306.1635 Superconductivity +1306.1924 Instrumentation and Detectors +1306.2688 +1306.3502 Mesoscale and Nanoscale Physics +1306.5123 Chemical Physics +1306.5154 Combinatorics +1306.5774 Statistical Mechanics +1307.0103 Strongly Correlated Electrons +1307.1362 +1307.4806 +1307.5010 Phenomenology +1307.7083 High Energy Astrophysical Phenomena +1307.7115 Analysis of PDEs +1307.8170 Phenomenology +1308.0162 +1308.0430 Statistical Mechanics +1308.6594 Optimization and Control +1308.6678 Combinatorics +1309.0068 Functional Analysis +1309.0243 Functional Analysis +1309.0603 Combinatorics +1309.0771 High Energy Astrophysical Phenomena +1309.0842 Instrumentation and Detectors +1309.0845 Experiment +1309.0931 Optimization and Control +1309.0942 Probability +1309.0959 Spectral Theory +1309.1076 Fluid Dynamics +1309.1077 Quantitative Methods +1309.1140 Number Theory +1309.1155 Computer Vision and Pattern Recognition +1309.1156 Computer Vision and Pattern Recognition +1309.1160 Theory +1309.1169 Astrophysics of Galaxies +1309.1176 Solar and Stellar Astrophysics +1309.1177 Earth and Planetary Astrophysics +1309.1178 Optics +1309.1179 Phenomenology +1309.1184 Networking and Internet Architecture +1309.1185 Algebraic Geometry +1309.1190 Probability +1309.1195 Algebraic Geometry +1309.1196 Populations and Evolution +1309.1199 Computational Engineering, Finance, and Science +1309.1201 Differential Geometry +1309.1206 Lattice +1309.1212 Chaotic Dynamics +1309.1217 Solar and Stellar Astrophysics +1309.1218 Information Theory +1309.1220 Computer Science and Game Theory +1309.1226 Artificial Intelligence +1309.1227 Artificial Intelligence +1309.1228 Artificial Intelligence +1309.1230 Distributed, Parallel, and Cluster Computing +1309.1232 Software Engineering +1309.1234 Solar and Stellar Astrophysics +1309.1238 +1309.1241 Mesoscale and Nanoscale Physics +1309.1246 Computation +1309.1248 Discrete Mathematics +1309.1249 High Energy Astrophysical Phenomena +1309.1251 Programming Languages +1309.1254 Logic in Computer Science +1309.1255 Logic in Computer Science +1309.1256 Logic in Computer Science +1309.1257 Logic in Computer Science +1309.1258 Logic in Computer Science +1309.1259 Logic in Computer Science +1309.1260 Strongly Correlated Electrons +1309.1261 Programming Languages +1309.1264 Formal Languages and Automata Theory +1309.1265 Computational Geometry +1309.1266 Discrete Mathematics +1309.1267 Formal Languages and Automata Theory +1309.1268 Formal Languages and Automata Theory +1309.1269 Computational Complexity +1309.1270 Computational Complexity +1309.1271 Formal Languages and Automata Theory +1309.1272 Discrete Mathematics +1309.1274 Formal Languages and Automata Theory +1309.1278 Phenomenology +1309.1279 Discrete Mathematics +1309.1284 Combinatorics +1309.1286 Information Theory +1309.1291 Probability +1309.1293 Superconductivity +1309.1295 Strongly Correlated Electrons +1309.1300 Systems and Control +1309.1301 Statistical Mechanics +1309.1302 Analysis of PDEs +1309.1303 Fluid Dynamics +1309.1304 Functional Analysis +1309.1307 Programming Languages +1309.1308 Instrumentation and Detectors +1309.1309 Statistics Theory +1309.1310 Soft Condensed Matter +1309.1311 Phenomenology +1309.1312 Combinatorics +1309.1315 Combinatorics +1309.1316 Molecular Networks +1309.1319 Information Theory +1309.1322 Symplectic Geometry +1309.1323 Information Theory +1309.1327 Experiment +1309.1329 Numerical Analysis +1309.1330 Numerical Analysis +1309.1331 Lattice +1309.1335 Probability +1309.1343 Astrophysics of Galaxies +1309.1344 High Energy Astrophysical Phenomena +1309.1346 Representation Theory +1309.1347 Combinatorics +1309.1352 History and Philosophy of Physics +1309.1354 Differential Geometry +1309.1361 Algebraic Topology +1309.1362 Symplectic Geometry +1309.1368 Commutative Algebra +1309.1373 Biomolecules +1309.1374 Materials Science +1309.1381 +1309.1382 Representation Theory +1309.1383 Optics +1309.1386 Cosmology and Nongalactic Astrophysics +1309.1388 Instrumentation and Detectors +1309.1389 Instrumentation and Detectors +1309.1394 Cosmology and Nongalactic Astrophysics +1309.1408 Soft Condensed Matter +1309.1411 Dynamical Systems +1309.1412 Statistics Theory +1309.1413 Dynamical Systems +1309.1415 Adaptation and Self-Organizing Systems +1309.1416 Cryptography and Security +1309.1419 Emerging Technologies +1309.1427 Statistical Mechanics +1309.1430 Logic +1309.1432 Discrete Mathematics +1309.1434 High Energy Astrophysical Phenomena +1309.1435 +1309.1436 General Mathematics +1309.1437 Analysis of PDEs +1309.1442 Phenomenology +1309.1447 Number Theory +1309.1453 Optimization and Control +1309.1455 Materials Science +1309.1457 Earth and Planetary Astrophysics +1309.1460 Mesoscale and Nanoscale Physics +astro-ph/0103158 +nlin/0512053 Pattern Formation and Solitons +0710.1047 Statistical Mechanics +0712.1847 Superconductivity +0904.4414 Algebraic Topology +1001.4981 Statistical Mechanics +1005.2227 Algebraic Topology +1009.3613 Learning +1009.5420 Logic +1010.0388 Logic +1101.1412 Geometric Topology +1103.3434 Quantitative Methods +1105.0504 +1105.4120 +1106.0785 Soft Condensed Matter +1106.5108 Phenomenology +1107.1303 Analysis of PDEs +1107.6016 Probability +1109.0965 Geometric Topology +1110.6262 Analysis of PDEs +1111.0442 Commutative Algebra +1112.3908 Trading and Market Microstructure +1202.2810 Metric Geometry +1203.1508 Chaotic Dynamics +1203.5524 Probability +1203.6478 +1204.4440 Statistics Theory +1205.1564 Computation and Language +1205.4801 Combinatorics +1206.2822 Strongly Correlated Electrons +1207.0392 +1207.0478 Mesoscale and Nanoscale Physics +1207.2722 Cosmology and Nongalactic Astrophysics +1207.4738 Computer Science and Game Theory +1209.2307 Strongly Correlated Electrons +1209.3542 Soft Condensed Matter +1210.1174 Category Theory +1210.1234 +1210.1247 Mesoscale and Nanoscale Physics +1210.3796 Disordered Systems and Neural Networks +1210.4763 +1210.5187 Theory +1210.7201 Strongly Correlated Electrons +1211.1306 Combinatorics +1211.5562 Information Theory +1212.0209 Number Theory +1212.1385 Phenomenology +1212.4980 Strongly Correlated Electrons +1212.5838 Logic +1301.0658 Quantum Gases +1301.0786 +1301.0843 +1301.1789 Phenomenology +1301.2070 Representation Theory +1301.3332 +1301.3746 Geometric Topology +1301.4629 Group Theory +1301.4959 Quantum Gases +1302.3714 Superconductivity +1302.3744 Representation Theory +1302.6080 Cosmology and Nongalactic Astrophysics +1302.6488 Superconductivity +1302.6645 Lattice +1302.6688 Mesoscale and Nanoscale Physics +1303.4922 Mesoscale and Nanoscale Physics +1303.5040 +1304.0961 Phenomenology +1304.2878 High Energy Astrophysical Phenomena +1304.3807 Lattice +1304.3875 Computer Science and Game Theory +1304.5562 Disordered Systems and Neural Networks +1304.6711 Mesoscale and Nanoscale Physics +1304.7614 Software Engineering +1305.0819 Cosmology and Nongalactic Astrophysics +1305.0977 Mesoscale and Nanoscale Physics +1305.1484 +1305.3032 Quantum Gases +1305.3810 Mesoscale and Nanoscale Physics +1305.5141 Quantum Gases +1305.5274 Mesoscale and Nanoscale Physics +1305.5418 Analysis of PDEs +1305.6902 Theory +1305.7052 +1305.7065 Differential Geometry +1306.2038 Materials Science +1306.3352 Phenomenology +1306.3518 Atomic Physics +1306.5105 Cosmology and Nongalactic Astrophysics +1306.5249 Mesoscale and Nanoscale Physics +1306.5912 +1307.0116 Chaotic Dynamics +1307.1939 Statistical Mechanics +1307.2827 +1307.3190 Theory +1307.4624 Earth and Planetary Astrophysics +1307.5135 Solar and Stellar Astrophysics +1307.5524 Information Theory +1307.6181 Phenomenology +1307.6874 Solar and Stellar Astrophysics +1307.7014 K-Theory and Homology +1308.0936 Combinatorics +1308.1181 Solar and Stellar Astrophysics +1308.2125 Superconductivity +1308.2341 Strongly Correlated Electrons +1308.2620 Optimization and Control +1308.2891 Data Structures and Algorithms +1308.2899 Geometric Topology +1308.3230 Superconductivity +1308.4647 Quantum Gases +1308.4668 Probability +1308.5286 Digital Libraries +1308.5308 +1308.5469 +1308.5662 Materials Science +1308.5837 Classical Analysis and ODEs +1308.5957 High Energy Astrophysical Phenomena +1308.5987 Soft Condensed Matter +1308.5992 Numerical Analysis +1308.5993 Algebraic Geometry +1308.5996 Cryptography and Security +1308.5997 Differential Geometry +1308.5998 Numerical Analysis +1308.5999 Networking and Internet Architecture +1308.6003 Neural and Evolutionary Computing +1308.6005 Combinatorics +1308.6016 Analysis of PDEs +1308.6023 Representation Theory +1308.6024 Differential Geometry +1308.6025 Computer Science and Game Theory +1308.6026 Optics +1308.6028 Tissues and Organs +1308.6031 Populations and Evolution +1308.6033 Cell Behavior +1308.6035 Subcellular Processes +1308.6039 Phenomenology +1308.6040 Commutative Algebra +1308.6042 Optics +1308.6043 Commutative Algebra +1308.6044 Commutative Algebra +1308.6045 Algebraic Geometry +1308.6048 Commutative Algebra +1308.6052 Statistical Mechanics +1308.6055 Differential Geometry +1308.6058 Distributed, Parallel, and Cluster Computing +1308.6062 +1308.6063 Atomic and Molecular Clusters +1308.6064 Experiment +1308.6067 +1308.6075 Physics and Society +1308.6081 High Energy Astrophysical Phenomena +1308.6083 Instrumentation and Methods for Astrophysics +1308.6084 Superconductivity +1308.6096 Programming Languages +1308.6098 Strongly Correlated Electrons +1308.6104 Probability +1308.6105 Geometric Topology +1308.6107 Optimization and Control +1308.6117 Operator Algebras +1308.6118 Social and Information Networks +1308.6127 Functional Analysis +1308.6131 +1308.6132 Fluid Dynamics +1308.6139 Combinatorics +1308.6140 Biological Physics +1308.6141 Combinatorics +1308.6144 Algebraic Geometry +1308.6145 Data Structures and Algorithms +1308.6149 Social and Information Networks +1308.6151 Populations and Evolution +1308.6161 +1308.6163 Differential Geometry +1308.6165 Logic +1308.6166 Discrete Mathematics +1308.6173 High Energy Astrophysical Phenomena +1308.6181 Learning +1308.6182 Algebraic Geometry +1308.6187 Group Theory +1308.6189 Accelerator Physics +1308.6190 Mesoscale and Nanoscale Physics +1308.6191 Classical Analysis and ODEs +1308.6193 Probability +1308.6196 Complex Variables +1308.6197 Experiment +1308.6201 Phenomenology +1308.6203 Data Structures and Algorithms +1308.6205 Numerical Analysis +1308.6208 Distributed, Parallel, and Cluster Computing +1308.6216 Emerging Technologies +1308.6217 Other Computer Science +1308.6226 Analysis of PDEs +1308.6227 Functional Analysis +1308.6229 Mesoscale and Nanoscale Physics +1308.6235 Analysis of PDEs +1308.6237 Commutative Algebra +1308.6242 Computation and Language +1308.6250 Systems and Control +1308.6251 Other Computer Science +1308.6255 Computer Science and Game Theory +1308.6267 Analysis of PDEs +1308.6271 Strongly Correlated Electrons +1308.6274 Mesoscale and Nanoscale Physics +cond-mat/0202095 Statistical Mechanics +cond-mat/0307285 Statistical Mechanics +cond-mat/0401128 Statistical Mechanics +cond-mat/0401403 Statistical Mechanics +cond-mat/0401405 Statistical Mechanics +cond-mat/0502458 Statistical Mechanics +cond-mat/0504033 Statistical Mechanics +cond-mat/0504044 Statistical Mechanics +cond-mat/0510293 Statistical Mechanics +cond-mat/0512314 Statistical Mechanics +math-ph/0211054 +quant-ph/0504016 +0708.1874 Statistics Theory +0802.1626 Differential Geometry +0810.3136 Computer Science and Game Theory +0910.2465 Combinatorics +0911.5705 +1005.1567 Artificial Intelligence +1103.4076 Algebraic Geometry +1103.4299 Operator Algebras +1105.0059 Geometric Topology +1105.1033 Learning +1105.2737 Numerical Analysis +1107.2841 Geometric Topology +1107.3788 Analysis of PDEs +1108.4183 Analysis of PDEs +1108.4200 Operator Algebras +1109.2152 Computer Science and Game Theory +1109.5482 Social and Information Networks +1110.3121 Molecular Networks +1111.0682 Representation Theory +1201.0529 Combinatorics +1201.2535 Complex Variables +1202.3189 +1204.1476 Optics +1204.3943 Differential Geometry +1204.4219 High Energy Astrophysical Phenomena +1204.5661 Risk Management +1205.1480 Cosmology and Nongalactic Astrophysics +1205.5581 Optimization and Control +1205.6654 Instrumentation and Methods for Astrophysics +1206.0177 Number Theory +1206.0249 Disordered Systems and Neural Networks +1206.2900 Differential Geometry +1207.0358 +1207.1081 Analysis of PDEs +1207.2569 Data Analysis, Statistics and Probability +1207.2615 Information Retrieval +1207.5860 Representation Theory +1208.5085 Complex Variables +1209.0536 +1209.2042 Algebraic Geometry +1209.4236 Instrumentation and Methods for Astrophysics +1209.4862 Accelerator Physics +1209.5492 Instrumentation and Methods for Astrophysics +1211.0930 Phenomenology +1211.4250 +1211.7137 Statistical Mechanics +1212.3172 Mesoscale and Nanoscale Physics +1212.3620 Phenomenology +1212.5581 Phenomenology +1301.0633 Instrumentation and Methods for Astrophysics +1301.1630 Instrumentation and Methods for Astrophysics +1301.1693 Phenomenology +1301.2246 +1301.2396 Exactly Solvable and Integrable Systems +1301.3313 Strongly Correlated Electrons +1301.5082 Phenomenology +1301.7023 Information Theory +1301.7473 Robotics +1302.1059 Materials Science +1302.1189 Quantum Gases +1302.1288 Theory +1302.1718 Mesoscale and Nanoscale Physics +1302.2625 Phenomenology +1302.3236 Analysis of PDEs +1302.6584 Machine Learning +1302.6624 Experiment +1303.3932 Mesoscale and Nanoscale Physics +1303.4524 Mesoscale and Nanoscale Physics +1303.5016 Probability +1303.5267 Fluid Dynamics +1303.6524 Phenomenology +1303.6868 Cosmology and Nongalactic Astrophysics +1303.7093 Machine Learning +1303.7251 High Energy Astrophysical Phenomena +1304.0046 Strongly Correlated Electrons +1304.0449 Theory +1304.0502 +1304.0893 Disordered Systems and Neural Networks +1304.1210 Number Theory +1304.1326 +1304.3718 Quantum Algebra +1304.3975 Experiment +1304.5284 Statistical Mechanics +1304.7357 Mesoscale and Nanoscale Physics +1304.7744 Strongly Correlated Electrons +1305.0376 Statistical Mechanics +1305.1027 Machine Learning +1305.1349 Mesoscale and Nanoscale Physics +1305.3486 Information Theory +1305.3822 Materials Science +1305.4129 Probability +1305.4724 +1305.5108 General Physics +1305.5205 Group Theory +1305.5998 Data Structures and Algorithms +1305.6226 Functional Analysis +1305.7372 Analysis of PDEs +1306.0053 +1306.0982 Statistical Mechanics +1306.0989 Solar and Stellar Astrophysics +1306.2018 High Energy Astrophysical Phenomena +1306.2531 Space Physics +1306.2846 Soft Condensed Matter +1306.3060 Astrophysics of Galaxies +1306.4086 Quantum Gases +1306.4503 High Energy Astrophysical Phenomena +1306.5208 +1306.5387 Phenomenology +1306.5874 Statistical Mechanics +1306.6037 Soft Condensed Matter +1307.0285 Astrophysics of Galaxies +1307.0289 Logic in Computer Science +1307.0399 Analysis of PDEs +1307.0410 Biological Physics +1307.0479 +1307.1860 Analysis of PDEs +1307.2906 Cosmology and Nongalactic Astrophysics +1307.2936 Phenomenology +1307.3150 Combinatorics +1307.3199 Theory +1307.3810 Spectral Theory +1307.3908 Earth and Planetary Astrophysics +1307.4179 Metric Geometry +1307.4413 Soft Condensed Matter +1307.4484 High Energy Astrophysical Phenomena +1307.4488 Algebraic Topology +1307.4499 Solar and Stellar Astrophysics +1307.4502 Information Theory +1307.4518 Data Structures and Algorithms +1307.4521 Data Structures and Algorithms +1307.4534 Instrumentation and Methods for Astrophysics +1307.4559 Mesoscale and Nanoscale Physics +1307.4567 Distributed, Parallel, and Cluster Computing +1307.4582 +1307.4584 Solar and Stellar Astrophysics +1307.4586 High Energy Astrophysical Phenomena +1307.4587 +1307.4600 Instrumentation and Methods for Astrophysics +1307.4614 Biomolecules +1307.4635 Programming Languages +1307.4658 General Physics +1307.4663 General Physics +1307.4665 General Physics +1307.4689 Artificial Intelligence +1307.4719 Instrumentation and Methods for Astrophysics +1307.4747 +1307.4755 Phenomenology +1307.4766 Representation Theory +1307.4772 Differential Geometry +1307.4779 Accelerator Physics +1307.4781 Analysis of PDEs +1307.4785 Algebraic Geometry +1307.4786 Fluid Dynamics +1307.4790 Information Theory +1307.4795 Numerical Analysis +1307.4796 Dynamical Systems +1307.4803 Combinatorics +1307.4805 +1307.4813 Probability +1307.4816 +1307.4817 Fluid Dynamics +1307.4822 Information Theory +1307.4823 High Energy Astrophysical Phenomena +1307.4824 Cryptography and Security +1307.4826 Phenomenology +1307.4827 Programming Languages +1307.4830 +1307.4831 Chemical Physics +1307.4832 Chemical Physics +1307.4837 Algebraic Geometry +1307.4838 Representation Theory +1307.4841 Optimization and Control +1307.4842 Optics +1307.4843 Medical Physics +1307.4844 Optics +1307.4845 Category Theory +1307.4851 Instrumentation and Methods for Astrophysics +1307.4853 Strongly Correlated Electrons +1307.4856 Chemical Physics +1307.4860 Methodology +1307.4869 Materials Science +1307.4870 Analysis of PDEs +1307.4871 Materials Science +1307.4875 General Topology +1307.4877 Superconductivity +1307.4881 Materials Science +1307.4892 Other Condensed Matter +1307.4894 Information Theory +1307.4895 Materials Science +1307.4897 Computational Complexity +1307.4898 High Energy Astrophysical Phenomena +1307.4900 Functional Analysis +1307.4901 Discrete Mathematics +1307.4903 Differential Geometry +1307.4904 Functional Analysis +1307.4906 +1307.4910 Computational Complexity +1307.4914 Spectral Theory +1307.4915 General Physics +1307.4916 Commutative Algebra +1307.4918 High Energy Astrophysical Phenomena +1307.4919 Number Theory +1307.4924 High Energy Astrophysical Phenomena +1307.4927 Data Structures and Algorithms +1307.4928 Materials Science +1307.4931 History and Overview +1307.4932 Astrophysics of Galaxies +1307.4934 Computer Science and Game Theory +1307.4936 History and Overview +1307.4938 Cellular Automata and Lattice Gases +1307.4939 Instrumentation and Methods for Astrophysics +1307.4941 Functional Analysis +1307.4943 Instrumentation and Methods for Astrophysics +1307.4948 Functional Analysis +1307.4949 Functional Analysis +1307.4950 +1307.4952 Social and Information Networks +1307.4954 Populations and Evolution +1307.4960 General Mathematics +1307.4962 Instrumentation and Methods for Astrophysics +1307.4965 Instrumentation and Methods for Astrophysics +1307.4966 Logic in Computer Science +1307.4972 Theory +1307.4975 Soft Condensed Matter +1307.4978 +1307.4981 Group Theory +1307.4982 Strongly Correlated Electrons +1307.4983 Information Theory +1307.4989 Instrumentation and Methods for Astrophysics +1307.4993 +1307.5000 Analysis of PDEs +1307.5003 High Energy Astrophysical Phenomena +1307.5006 Instrumentation and Methods for Astrophysics +1307.5007 Materials Science +1307.5008 Superconductivity +1307.5009 Dynamical Systems +1307.5013 Analysis of PDEs +1307.5014 Instrumentation and Methods for Astrophysics +1307.5016 Geometric Topology +1307.5020 Functional Analysis +1307.5022 Cosmology and Nongalactic Astrophysics +1307.5027 Combinatorics +1307.5028 Instrumentation and Methods for Astrophysics +1307.5032 Mesoscale and Nanoscale Physics +1307.5033 Functional Analysis +1307.5034 Optics +1307.5036 Mesoscale and Nanoscale Physics +1307.5039 Classical Analysis and ODEs +1307.5041 Statistical Mechanics +1307.5045 High Energy Astrophysical Phenomena +1307.5047 Strongly Correlated Electrons +1307.5051 Cosmology and Nongalactic Astrophysics +1307.5054 Functional Analysis +1307.5057 Networking and Internet Architecture +cond-mat/0105446 Strongly Correlated Electrons +cond-mat/9501077 +cond-mat/9606079 +cond-mat/9611212 Superconductivity +cond-mat/9711176 Mesoscale and Nanoscale Physics +cond-mat/9802160 Superconductivity +cond-mat/9806006 Superconductivity +cond-mat/9806170 Superconductivity +0705.1255 +0711.1348 Combinatorics +0806.2449 +0808.0613 Symplectic Geometry +0901.1709 Statistical Mechanics +0905.0624 +0911.0579 +1007.0466 Cosmology and Nongalactic Astrophysics +1009.5423 Programming Languages +1012.2860 Distributed, Parallel, and Cluster Computing +1106.5223 Computational Complexity +1109.4007 Number Theory +1109.5846 Theory +1109.6042 Statistics Theory +1109.6179 Optimization and Control +1109.6688 Operator Algebras +1112.3972 Distributed, Parallel, and Cluster Computing +1201.6674 Quantum Gases +1202.2154 Statistical Mechanics +1202.5474 Information Theory +1203.0324 Algebraic Geometry +1203.0328 Algebraic Geometry +1203.0596 Number Theory +1203.0895 Probability +1205.5628 Differential Geometry +1206.2601 Analysis of PDEs +1207.0062 +1208.0012 Phenomenology +1208.3572 Phenomenology +1208.5814 Information Theory +1209.2151 High Energy Astrophysical Phenomena +1209.6021 Cosmology and Nongalactic Astrophysics +1209.6287 Theory +1210.3267 Instrumentation and Methods for Astrophysics +1210.6311 Phenomenology +1210.8132 Optics +1210.8387 Commutative Algebra +1211.6728 General Topology +1212.0219 Lattice +1212.1332 +1212.1728 Theory +1212.1880 Materials Science +1212.2556 +1212.2877 Materials Science +1212.3666 Theory +1212.3794 Quantum Gases +1212.6495 Rings and Algebras +1301.1239 Combinatorics +1301.4451 Computational Complexity +1301.4681 Mesoscale and Nanoscale Physics +1301.4984 Cosmology and Nongalactic Astrophysics +1302.0613 Mesoscale and Nanoscale Physics +1302.0924 Statistics Theory +1302.2058 Phenomenology +1302.3042 Disordered Systems and Neural Networks +1302.5615 +1302.5652 Category Theory +1302.6244 Earth and Planetary Astrophysics +1302.7119 Differential Geometry +1302.7210 +1303.0242 Cosmology and Nongalactic Astrophysics +1303.0526 Experiment +1303.1566 Soft Condensed Matter +1303.2668 Theory +1303.4561 Optics +1303.4993 +1303.5949 Experiment +1304.0383 Cryptography and Security +1304.0981 Superconductivity +1304.2232 Phenomenology +1304.3390 Programming Languages +1304.4484 Strongly Correlated Electrons +1304.5403 Strongly Correlated Electrons +1304.5418 Dynamical Systems +1304.5485 Programming Languages +1304.6131 +1304.6164 Probability +1304.6241 Cryptography and Security +1304.7404 +1304.8048 High Energy Astrophysical Phenomena +1305.1600 Theory +1305.1853 +1305.2330 Cosmology and Nongalactic Astrophysics +1305.2492 +1305.4209 +1305.5660 +1305.5999 Fluid Dynamics +1305.6180 Phenomenology +1305.6255 Materials Science +1305.6363 Strongly Correlated Electrons +1306.1352 Strongly Correlated Electrons +1306.2870 Probability +1306.3115 Physics and Society +1306.3127 Computer Science and Game Theory +1306.3396 Analysis of PDEs +1306.5020 Strongly Correlated Electrons +1306.5377 Information Theory +1307.0242 Theory +1307.0957 Physics and Society +1307.1379 Methodology +1307.1448 Distributed, Parallel, and Cluster Computing +1307.1466 Computational Engineering, Finance, and Science +1307.1468 Astrophysics of Galaxies +1307.1473 Strongly Correlated Electrons +1307.1475 Strongly Correlated Electrons +1307.1480 Combinatorics +1307.1482 Artificial Intelligence +1307.1490 +1307.1497 Differential Geometry +1307.1498 +1307.1503 Optimization and Control +1307.1510 +1307.1514 Networking and Internet Architecture +1307.1515 Differential Geometry +1307.1516 Data Structures and Algorithms +1307.1517 Distributed, Parallel, and Cluster Computing +1307.1518 Soft Condensed Matter +1307.1520 +1307.1524 Information Theory +1307.1528 Logic in Computer Science +1307.1532 Probability +1307.1538 Quantum Gases +1307.1540 +1307.1542 Human-Computer Interaction +1307.1543 Information Retrieval +1307.1544 Optics +1307.1550 +1307.1551 Representation Theory +1307.1554 Theory +1307.1555 Materials Science +1307.1560 Data Structures and Algorithms +1307.1561 Information Retrieval +1307.1563 Plasma Physics +1307.1564 Solar and Stellar Astrophysics +1307.1565 Statistics Theory +1307.1566 +1307.1568 Artificial Intelligence +1307.1569 +1307.1572 Analysis of PDEs +1307.1577 Metric Geometry +1307.1578 Geometric Topology +1307.1580 Earth and Planetary Astrophysics +1307.1581 Optimization and Control +1307.1584 Learning +1307.1586 Populations and Evolution +1307.1588 Complex Variables +1307.1593 Solar and Stellar Astrophysics +1307.1598 Computational Engineering, Finance, and Science +1307.1600 Analysis of PDEs +1307.1601 Learning +1307.1604 Theory +1307.1609 Geophysics +1307.1610 Number Theory +1307.1611 Functional Analysis +1307.1612 Analysis of PDEs +1307.1614 Strongly Correlated Electrons +1307.1617 Dynamical Systems +1307.1618 Analysis of PDEs +1307.1621 Phenomenology +1307.1626 Functional Analysis +1307.1627 Number Theory +1307.1628 High Energy Astrophysical Phenomena +1307.1633 Number Theory +1307.1638 Algebraic Geometry +1307.1644 Chemical Physics +1307.1647 Classical Physics +1307.1648 Popular Physics +1307.1649 Earth and Planetary Astrophysics +1307.1650 Distributed, Parallel, and Cluster Computing +1307.1652 Commutative Algebra +1307.1655 Soft Condensed Matter +1307.1665 Rings and Algebras +1307.1670 Dynamical Systems +1307.1671 Dynamical Systems +1307.1674 Machine Learning +1307.1675 Algebraic Geometry +1307.1677 Astrophysics of Galaxies +1307.1681 Social and Information Networks +1307.1684 Networking and Internet Architecture +1307.1691 +1307.1692 General Physics +1307.1693 Strongly Correlated Electrons +1307.1694 Computers and Society +cond-mat/0309043 Superconductivity +cond-mat/0505208 Other Condensed Matter +cs/0701021 Operating Systems +math/0702601 Metric Geometry +0711.4525 Metric Geometry +0804.0915 Rings and Algebras +0907.4560 Logic +0910.1114 Quantum Gases +1001.0435 Algebraic Geometry +1002.2400 Symplectic Geometry +1002.2566 Theory +1003.4766 Geometric Topology +1005.0614 Algebraic Geometry +1005.4225 Representation Theory +1010.0450 Symplectic Geometry +1010.0451 Symplectic Geometry +1010.2292 Algebraic Geometry +1010.2580 Classical Analysis and ODEs +1010.3997 Symplectic Geometry +1011.0814 +1101.4149 Metric Geometry +1102.5024 Algebraic Geometry +1103.0306 +1105.2814 +1109.1233 Probability +1109.6036 Experiment +1110.3543 Optics +1112.1743 Solar and Stellar Astrophysics +1112.2296 Rings and Algebras +1201.5060 +1202.1387 Information Theory +1202.2403 +1203.5625 Functional Analysis +1204.2418 K-Theory and Homology +1204.2958 Materials Science +1204.6030 Functional Analysis +1205.1821 Space Physics +1205.1985 Analysis of PDEs +1205.6042 Populations and Evolution +1205.6820 Theory +1206.4109 +1206.6254 Materials Science +1207.2192 Statistical Mechanics +1207.2273 Number Theory +1207.5506 Biomolecules +1207.5831 Number Theory +1207.6947 Lattice +1207.6954 +1208.0768 Medical Physics +1208.1358 +1208.1928 Statistical Mechanics +1208.2863 +1208.2867 Biological Physics +1208.3453 Number Theory +1208.5478 +1208.5523 Materials Science +1208.6557 Mesoscale and Nanoscale Physics +1209.0007 Phenomenology +1209.0846 Information Theory +1209.2931 Mesoscale and Nanoscale Physics +1209.2983 Physics and Society +1209.4106 Algebraic Geometry +1209.4501 +1209.5460 Strongly Correlated Electrons +1210.0019 +1210.0893 +1210.1657 Mesoscale and Nanoscale Physics +1210.1970 +1210.4152 Strongly Correlated Electrons +1210.5800 Dynamical Systems +1210.6265 Numerical Analysis +1211.0060 Populations and Evolution +1211.1213 +1211.1388 Theory +1211.2088 Mesoscale and Nanoscale Physics +1211.2847 Materials Science +1211.3267 Statistical Mechanics +1211.3449 Phenomenology +1211.4011 Phenomenology +1211.4570 Number Theory +1211.6318 +1211.7133 Digital Libraries +1212.0465 Quantitative Methods +1212.1008 +1212.1231 Optimization and Control +1212.3151 Statistics Theory +1212.4540 +1212.4839 Strongly Correlated Electrons +1212.5023 +1212.6769 Phenomenology +1301.1347 Theory +1301.2602 Plasma Physics +1301.4469 Phenomenology +1301.5498 Phenomenology +1301.5741 +1301.6371 Combinatorics +1301.7268 Instrumentation and Detectors +1301.7432 Phenomenology +1301.7566 Information Theory +1301.7705 Mesoscale and Nanoscale Physics +1302.0291 Theory +1302.0594 Phenomenology +1302.0627 Data Analysis, Statistics and Probability +1302.0960 Phenomenology +1302.1088 Mesoscale and Nanoscale Physics +1302.1102 Phenomenology +1302.1449 Theory +1302.2008 +1302.2130 Theory +1302.2214 Statistical Mechanics +1302.2593 Cosmology and Nongalactic Astrophysics +1302.2919 +1302.2951 Strongly Correlated Electrons +1302.4917 Lattice +1302.5530 +1302.5560 +1302.6638 +1302.6936 Solar and Stellar Astrophysics +1302.7177 +1303.0900 +1303.1173 Theory +1303.1376 Optics +1303.1449 Theory +1303.2060 Applications +1303.2266 Optics +1303.2336 +1303.2882 Phenomenology +1303.3272 Cosmology and Nongalactic Astrophysics +1303.3690 Dynamical Systems +1303.5110 +1303.6806 Representation Theory +1303.6972 Number Theory +1303.6981 Probability +1304.1462 Combinatorics +1304.1858 Information Theory +1304.1913 Programming Languages +1304.3202 Complex Variables +1304.3379 Plasma Physics +1304.3508 K-Theory and Homology +1304.4064 Solar and Stellar Astrophysics +1304.4107 +1304.4147 Metric Geometry +1304.4280 Data Structures and Algorithms +1304.5879 Fluid Dynamics +1304.5916 +1304.5938 Cryptography and Security +1305.0135 Computers and Society +1305.0345 Algebraic Geometry +1305.0574 Artificial Intelligence +1305.0723 Dynamical Systems +1305.0753 Theory +1305.0947 Networking and Internet Architecture +1305.1031 Statistical Mechanics +1305.1034 +1305.1234 Experiment +1305.1293 Graphics +1305.1294 Superconductivity +1305.1295 Data Structures and Algorithms +1305.1303 Solar and Stellar Astrophysics +1305.1314 Combinatorics +1305.1318 Methodology +1305.1319 Computation and Language +1305.1327 +1305.1333 Number Theory +1305.1343 Digital Libraries +1305.1344 Computer Vision and Pattern Recognition +1305.1346 History and Philosophy of Physics +1305.1347 Data Structures and Algorithms +1305.1348 Number Theory +1305.1351 Probability +1305.1356 Classical Physics +1305.1358 Quantum Algebra +1305.1359 Learning +1305.1360 +1305.1371 Information Retrieval +1305.1372 Information Retrieval +1305.1373 Materials Science +1305.1376 Statistics Theory +1305.1377 Materials Science +1305.1380 Molecular Networks +1305.1383 Adaptation and Self-Organizing Systems +1305.1385 Methodology +1305.1391 Rings and Algebras +1305.1393 Solar and Stellar Astrophysics +1305.1397 Information Theory +1305.1398 Physics Education +1305.1415 Information Theory +1305.1418 Probability +1305.1419 Accelerator Physics +1305.1420 Statistical Mechanics +1305.1423 Quantum Gases +1305.1426 Sound +1305.1427 Information Theory +1305.1428 Computers and Society +1305.1429 Information Retrieval +1305.1430 Rings and Algebras +1305.1432 Soft Condensed Matter +1305.1435 Materials Science +1305.1440 Materials Science +1305.1447 Materials Science +1305.1450 Cosmology and Nongalactic Astrophysics +1305.1452 Functional Analysis +1305.1453 Metric Geometry +1305.1462 Lattice +1305.1473 Graphics +1305.1476 Digital Libraries +1305.1477 Systems and Control +1305.1481 Symbolic Computation +1305.1485 Cosmology and Nongalactic Astrophysics +1305.1486 Optics +1305.1488 Digital Libraries +1305.1489 Numerical Analysis +1305.1490 Information Theory +1305.1491 Differential Geometry +1305.1496 Optics +1305.1504 Superconductivity +1305.1516 +1305.1518 Representation Theory +1305.1520 Computer Vision and Pattern Recognition +1305.1522 Optics +1305.1523 +1305.1525 Information Theory +1305.1526 Accelerator Physics +1305.1527 Probability +1305.1528 Accelerator Physics +1305.1530 Experiment +1305.1532 Accelerator Physics +1305.1533 Accelerator Physics +1305.1536 Mesoscale and Nanoscale Physics +1305.1537 Information Theory +1305.1540 Differential Geometry +1305.1542 Accelerator Physics +1305.1544 Accelerator Physics +1305.1545 Exactly Solvable and Integrable Systems +1305.1546 Optimization and Control +1305.1547 Accelerator Physics +1305.1549 Accelerator Physics +1305.1550 Materials Science +1305.1552 Accelerator Physics +1305.1554 Dynamical Systems +1305.1555 Accelerator Physics +1305.1556 Commutative Algebra +1305.1558 Accelerator Physics +1305.1559 General Finance +1305.1564 +1305.1570 Medical Physics +1305.1579 Dynamical Systems +1305.1581 High Energy Astrophysical Phenomena +1305.1586 Other Condensed Matter +1305.1588 Dynamical Systems +1305.1590 Metric Geometry +1305.1592 Optimization and Control +1305.1593 Optimization and Control +1305.1596 Computational Geometry +1305.1597 Geometric Topology +1305.1598 Information Theory +1305.1601 Phenomenology +1305.1609 Databases +1305.1619 Symplectic Geometry +cond-mat/0008239 Materials Science +cond-mat/0307448 Materials Science +cond-mat/0411205 Statistical Mechanics +cond-mat/9805177 Materials Science +cond-mat/9909266 Materials Science +cond-mat/9912241 Materials Science +physics/0507015 Optics +0705.1235 Statistics Theory +0706.3256 Soft Condensed Matter +0805.2855 Digital Libraries +0902.2115 Materials Science +0902.2533 Algebraic Geometry +0904.3252 Analysis of PDEs +0906.0615 Rings and Algebras +0909.3467 Dynamical Systems +1001.2559 Theory +1001.3446 +1004.2576 Spectral Theory +1006.2797 Rings and Algebras +1006.5823 Strongly Correlated Electrons +1007.2429 +1008.0390 Combinatorics +1008.0834 +1011.4539 Combinatorics +1011.5494 Solar and Stellar Astrophysics +1012.1308 Number Theory +1012.2452 Differential Geometry +1101.0022 Number Theory +1101.2838 Phenomenology +1102.1624 Data Analysis, Statistics and Probability +1102.3395 Algebraic Topology +1103.2486 Methodology +1106.0127 Spectral Theory +1106.0131 Spectral Theory +1108.3477 Representation Theory +1108.5695 Probability +1109.1072 Classical Analysis and ODEs +1109.3400 Cosmology and Nongalactic Astrophysics +1111.0139 +1111.1462 +1111.2833 Functional Analysis +1111.6453 Learning +1201.2674 Rings and Algebras +1202.0918 Statistical Mechanics +1202.2469 Theory +1202.3239 Optics +1203.3912 Combinatorics +1204.1510 Quantum Gases +1204.2182 Operator Algebras +1206.0253 Instrumentation and Detectors +1206.4195 Optimization and Control +1206.5822 +1207.0359 +1207.3701 Disordered Systems and Neural Networks +1207.5838 Commutative Algebra +1208.0951 High Energy Astrophysical Phenomena +1208.3189 Superconductivity +1208.4536 Cryptography and Security +1209.1651 Algebraic Geometry +1209.1787 Statistical Mechanics +1210.1052 High Energy Astrophysical Phenomena +1210.2181 +1210.3711 Methodology +1210.5466 Portfolio Management +1211.2516 Differential Geometry +1211.3533 Soft Condensed Matter +1211.4786 Mesoscale and Nanoscale Physics +1211.4885 Strongly Correlated Electrons +1211.5017 Mesoscale and Nanoscale Physics +1212.0968 +1212.2245 Computer Vision and Pattern Recognition +1212.4503 Superconductivity +1212.6408 +1212.6779 Superconductivity +1301.0499 +1301.2397 Quantitative Methods +1301.4161 Rings and Algebras +1301.7736 Numerical Analysis +1302.0985 Group Theory +1302.0998 Phenomenology +1302.3902 Instrumentation and Detectors +1302.6734 Statistical Mechanics +1302.6967 Geometric Topology +1303.0237 Portfolio Management +1303.1749 Computer Vision and Pattern Recognition +1303.3476 Statistical Mechanics +1303.4236 Statistical Mechanics +1303.4504 Physics and Society +1303.6471 Combinatorics +1304.0709 Optics +1304.1077 Soft Condensed Matter +1304.2767 Theory +1304.3264 Functional Analysis +1304.4125 Soft Condensed Matter +1304.5184 Rings and Algebras +1304.7122 Mesoscale and Nanoscale Physics +1305.0444 +1305.0959 Materials Science +1305.1261 High Energy Astrophysical Phenomena +1305.1541 Algebraic Geometry +1305.1548 Phenomenology +1305.4595 Algebraic Geometry +1305.6901 Disordered Systems and Neural Networks +1305.7124 Statistical Mechanics +1306.0590 Probability +1306.1547 Data Structures and Algorithms +1306.1877 Computational Complexity +1306.2110 Chemical Physics +1306.4158 Probability +1306.4384 Data Structures and Algorithms +1306.4706 Quantum Gases +1306.6171 Phenomenology +1306.6259 Social and Information Networks +1306.6687 Theory +1306.6915 Cosmology and Nongalactic Astrophysics +1307.0006 Quantum Gases +1307.0708 Phenomenology +1307.1154 Materials Science +1307.2395 Phenomenology +1307.2454 Theory +1307.2979 Statistical Mechanics +1307.3223 Dynamical Systems +1307.4560 Experiment +1307.5113 Superconductivity +1307.5296 Data Structures and Algorithms +1307.5790 Phenomenology +1307.5851 High Energy Astrophysical Phenomena +1307.6230 Mesoscale and Nanoscale Physics +1307.6235 General Physics +1307.6739 Strongly Correlated Electrons +1307.7908 Phenomenology +1307.8129 Atomic Physics +1308.1002 Soft Condensed Matter +1308.1288 Materials Science +1308.1306 +1308.1668 Phenomenology +1308.1743 Superconductivity +1308.4963 Differential Geometry +1308.5782 Number Theory +1308.6642 +1309.2375 Machine Learning +1309.2878 Strongly Correlated Electrons +1309.3055 Functional Analysis +1309.3089 Instrumentation and Detectors +1309.4013 High Energy Astrophysical Phenomena +1309.4320 Number Theory +1309.5472 Strongly Correlated Electrons +1309.5480 Statistical Mechanics +1309.6224 +1309.6331 Fluid Dynamics +1310.0925 Fluid Dynamics +1310.1118 Other Computer Science +1310.1208 Analysis of PDEs +1310.1381 High Energy Astrophysical Phenomena +1310.1518 Learning +1310.1540 Cryptography and Security +1310.1651 Computers and Society +1310.1746 Computers and Society +1310.1828 General Topology +1310.1842 Geometric Topology +1310.1863 Artificial Intelligence +1310.1881 Probability +1310.1910 Rings and Algebras +1310.1914 Earth and Planetary Astrophysics +1310.1927 High Energy Astrophysical Phenomena +1310.1928 Phenomenology +1310.1934 Learning +1310.1938 High Energy Astrophysical Phenomena +1310.1942 Probability +1310.1943 Numerical Analysis +1310.1947 Artificial Intelligence +1310.1953 Physics and Society +1310.1956 Quantum Algebra +1310.1962 Phenomenology +1310.1964 Computation and Language +1310.1967 Instrumentation and Methods for Astrophysics +1310.1968 Digital Libraries +1310.1970 +1310.1973 Cosmology and Nongalactic Astrophysics +1310.1975 Computation and Language +1310.1977 Materials Science +1310.1978 High Energy Astrophysical Phenomena +1310.1981 +1310.1988 Number Theory +1310.1999 Classical Analysis and ODEs +1310.2001 Information Theory +1310.2005 Phenomenology +1310.2014 Optimization and Control +1310.2015 Differential Geometry +1310.2017 Combinatorics +1310.2030 High Energy Astrophysical Phenomena +1310.2037 Information Theory +1310.2045 Information Theory +1310.2049 Learning +1310.2050 Computer Vision and Pattern Recognition +1310.2051 Information Theory +1310.2053 Computer Vision and Pattern Recognition +1310.2059 Machine Learning +1310.2062 Strongly Correlated Electrons +1310.2065 Chemical Physics +1310.2066 Databases +1310.2068 Quantitative Methods +1310.2071 Computers and Society +1310.2074 Instrumentation and Detectors +1310.2075 Numerical Analysis +1310.2076 Applications +1310.2078 Instrumentation and Methods for Astrophysics +1310.2079 Computers and Society +1310.2086 Systems and Control +1310.2088 Experiment +1310.2089 Artificial Intelligence +1310.2091 Geometric Topology +1310.2094 Instrumentation and Detectors +1310.2095 Networking and Internet Architecture +1310.2098 Information Theory +1310.2102 Human-Computer Interaction +1310.2104 Number Theory +1310.2108 Differential Geometry +1310.2110 Populations and Evolution +1310.2114 Populations and Evolution +1310.2116 Mesoscale and Nanoscale Physics +1310.2118 Data Structures and Algorithms +1310.2122 Probability +1310.2127 Information Retrieval +1310.2129 Genomics +1310.2131 +1310.2133 Earth and Planetary Astrophysics +1310.2136 Classical Analysis and ODEs +1310.2140 Rings and Algebras +1310.2143 Logic in Computer Science +1310.2144 +1310.2149 +1310.2154 Instrumentation and Methods for Astrophysics +1310.2159 Probability +1310.2162 Instrumentation and Detectors +1310.2165 Instrumentation and Methods for Astrophysics +1310.2166 Networking and Internet Architecture +1310.2169 Physics and Society +1310.2180 Rings and Algebras +1310.2182 Computational Engineering, Finance, and Science +1310.2183 +1310.2184 High Energy Astrophysical Phenomena +1310.2186 Theory +1310.2188 Combinatorics +1310.2192 Experiment +1310.2193 High Energy Astrophysical Phenomena +1310.2197 Instrumentation and Methods for Astrophysics +1310.2203 Accelerator Physics +1310.2212 Optics +1310.2216 Cosmology and Nongalactic Astrophysics +1310.2217 +1310.2225 Classical Analysis and ODEs +1310.2231 Experiment +1310.2235 Number Theory +1310.2236 Methodology +1310.2237 Algebraic Geometry +gr-qc/0612056 +math/0312468 Functional Analysis +math/0312477 General Topology +math/0402442 General Topology +math/0402443 General Topology +math/0402444 Optimization and Control +math/0402445 Optimization and Control +math/0409609 General Topology +math/0412560 Analysis of PDEs +math/0612356 Geometric Topology +0710.0101 Spectral Theory +0711.0303 +0801.1780 Optimization and Control +0807.4455 Analysis of PDEs +0808.1402 General Mathematics +0905.1531 Soft Condensed Matter +0906.1972 Analysis of PDEs +0909.3509 Commutative Algebra +0910.0461 Cosmology and Nongalactic Astrophysics +0910.0718 Quantum Algebra +0910.1314 +0911.2171 Optimization and Control +0911.5700 Cosmology and Nongalactic Astrophysics +0912.5231 Geometric Topology +1001.5319 Information Theory +1003.0646 Analysis of PDEs +1004.1086 Information Theory +1007.3919 Analysis of PDEs +1007.4952 Algebraic Geometry +1007.5213 Numerical Analysis +1008.0900 Symplectic Geometry +1008.5329 Combinatorics +1010.2638 Classical Analysis and ODEs +1011.0743 Representation Theory +1011.2169 Commutative Algebra +1101.2759 Networking and Internet Architecture +1102.2629 Rings and Algebras +1102.5057 Astrophysics of Galaxies +1103.5538 Probability +1105.0445 +1105.0938 +1106.0475 Astrophysics of Galaxies +1106.5677 Algebraic Geometry +1107.3044 Cosmology and Nongalactic Astrophysics +1107.4351 Phenomenology +1107.5363 Numerical Analysis +1109.2181 Solar and Stellar Astrophysics +1110.2705 Symplectic Geometry +1111.0836 Mesoscale and Nanoscale Physics +1111.2010 +1111.4979 Commutative Algebra +1112.0389 Quantum Algebra +1112.0688 Experiment +1112.2191 Algebraic Geometry +1112.4803 Cosmology and Nongalactic Astrophysics +1201.2629 Probability +1201.3093 +1201.3158 +1201.4575 Probability +1202.1151 Analysis of PDEs +1202.3827 Experiment +1202.5102 +1202.5395 Materials Science +1202.6605 Astrophysics of Galaxies +1203.4394 Applications +1203.5731 Discrete Mathematics +1203.6718 Materials Science +1204.0545 +1204.0921 Strongly Correlated Electrons +1204.4491 Social and Information Networks +1204.5206 Mesoscale and Nanoscale Physics +1204.5291 Statistics Theory +1204.5445 Geophysics +1205.1078 Adaptation and Self-Organizing Systems +1205.1103 +1205.6889 Materials Science +1206.0983 Information Theory +1206.3795 Statistical Mechanics +1206.4341 Analysis of PDEs +1206.5403 Symplectic Geometry +1207.0189 Differential Geometry +1207.0471 Probability +1207.1341 High Energy Astrophysical Phenomena +1207.1849 Phenomenology +1207.3225 Other Condensed Matter +1207.5052 Statistical Mechanics +1207.5601 +1208.0814 Earth and Planetary Astrophysics +1208.0969 +1208.2014 Phenomenology +1208.2787 Information Theory +1209.0361 Geometric Topology +1209.2221 +1209.2345 Chemical Physics +1209.2692 Numerical Analysis +1209.2930 Cosmology and Nongalactic Astrophysics +1209.4029 Experiment +1209.4172 Commutative Algebra +1210.0418 +1210.0869 Lattice +1210.3699 High Energy Astrophysical Phenomena +1210.4186 +1210.5434 Phenomenology +1210.5974 Logic in Computer Science +1210.7668 Strongly Correlated Electrons +1211.0469 Experiment +1211.0632 Learning +1211.1267 Analysis of PDEs +1211.2267 Quantum Gases +1211.3873 Number Theory +1211.5677 Pattern Formation and Solitons +1212.0232 +1212.0233 Optics +1212.1416 Cosmology and Nongalactic Astrophysics +1212.1480 Cosmology and Nongalactic Astrophysics +1212.2571 +1212.2755 Superconductivity +1212.2929 +1212.3038 Superconductivity +1212.3083 High Energy Astrophysical Phenomena +1212.3184 Phenomenology +1212.3766 +1212.3823 Algebraic Geometry +1212.6275 Analysis of PDEs +1212.6883 Discrete Mathematics +1301.0303 Combinatorics +1301.0434 Experiment +1301.1513 Statistical Mechanics +1301.2374 Instrumentation and Methods for Astrophysics +1301.2400 Statistical Mechanics +1301.2493 Solar and Stellar Astrophysics +1301.2678 Multiagent Systems +1301.4337 Multimedia +1301.4383 Fluid Dynamics +1301.4541 Representation Theory +1301.4559 +1301.4742 Differential Geometry +1301.4835 Analysis of PDEs +1301.4862 Learning +1301.4908 Cosmology and Nongalactic Astrophysics +1301.4988 Networking and Internet Architecture +1301.4989 Rings and Algebras +1301.4991 Artificial Intelligence +1301.4992 Artificial Intelligence +1301.5003 Information Theory +1301.5006 Information Theory +1301.5010 Astrophysics of Galaxies +1301.5011 Information Theory +1301.5012 Soft Condensed Matter +1301.5015 +1301.5016 Astrophysics of Galaxies +1301.5018 Rings and Algebras +1301.5019 Fluid Dynamics +1301.5022 Cryptography and Security +1301.5026 Strongly Correlated Electrons +1301.5035 Computation +1301.5038 Symbolic Computation +1301.5045 Symbolic Computation +1301.5053 Phenomenology +1301.5055 Combinatorics +1301.5058 Cell Behavior +1301.5062 Number Theory +1301.5065 Cryptography and Security +1301.5066 Plasma Physics +1301.5069 Cryptography and Security +1301.5071 Quantum Gases +1301.5074 Computers and Society +1301.5075 Computers and Society +1301.5076 Programming Languages +1301.5077 Computers and Society +1301.5078 Spectral Theory +1301.5086 Statistics Theory +1301.5087 Category Theory +1301.5088 Machine Learning +1301.5091 Cryptography and Security +1301.5093 Genomics +1301.5098 Disordered Systems and Neural Networks +1301.5104 Combinatorics +1301.5108 Information Theory +1301.5111 Phenomenology +1301.5112 Learning +1301.5115 Combinatorics +1301.5116 Functional Analysis +1301.5117 Pattern Formation and Solitons +1301.5120 High Energy Astrophysical Phenomena +1301.5121 Databases +1301.5131 Populations and Evolution +1301.5132 Networking and Internet Architecture +1301.5136 Cryptography and Security +1301.5140 Differential Geometry +1301.5143 Differential Geometry +1301.5144 Probability +1301.5147 Geometric Topology +1301.5148 Neurons and Cognition +1301.5150 Mesoscale and Nanoscale Physics +1301.5151 Lattice +1301.5155 Solar and Stellar Astrophysics +1301.5157 Methodology +1301.5162 Functional Analysis +1301.5166 Group Theory +1301.5168 Representation Theory +1301.5170 Analysis of PDEs +1301.5172 Combinatorics +1301.5176 Analysis of PDEs +1301.5180 Fluid Dynamics +1301.5186 Statistics Theory +1301.5187 Genomics +1301.5188 Popular Physics +1301.5192 Spectral Theory +1301.5193 Instrumentation and Methods for Astrophysics +1301.5201 Social and Information Networks +1301.5202 Cosmology and Nongalactic Astrophysics +1301.5203 High Energy Astrophysical Phenomena +1301.5204 Lattice +1301.5208 Strongly Correlated Electrons +1301.5210 +1301.5211 Commutative Algebra +1301.5213 Analysis of PDEs +1301.5223 Geophysics +1301.5225 +1301.5227 Materials Science +1301.5234 Optimization and Control +1301.5235 Analysis of PDEs +1301.5239 Solar and Stellar Astrophysics +1301.5242 Instrumentation and Detectors +1301.5247 Commutative Algebra +1301.5251 Superconductivity +1301.5253 Fluid Dynamics +1301.5254 Statistics Theory +1301.5258 Information Theory +1301.5259 Statistics Theory +1301.5260 Algebraic Geometry +1301.5263 Combinatorics +1301.5264 +1301.5265 Solar and Stellar Astrophysics +1301.5266 +1301.5267 Metric Geometry +1301.5275 Differential Geometry +1301.5285 Experiment +1301.5287 Probability +1301.5292 Theory +1301.5300 Probability +1301.5301 Mesoscale and Nanoscale Physics +1301.5303 Geophysics +1301.5311 Probability +1301.5313 Phenomenology +cond-mat/0606791 Materials Science +math/0201057 Geometric Topology +math/0507544 Combinatorics +1111.2025 Theory +0709.0223 Computers and Society +0711.2248 Functional Analysis +0804.3064 Computers and Society +0804.3572 Classical Analysis and ODEs +0805.1460 Statistical Mechanics +0807.2357 Physics and Society +0807.4675 Soft Condensed Matter +0809.0633 Soft Condensed Matter +0809.3033 Superconductivity +0810.1618 Soft Condensed Matter +0811.4511 Statistical Mechanics +0906.2548 Exactly Solvable and Integrable Systems +0906.5325 Learning +0909.0237 Human-Computer Interaction +0910.4292 Computers and Society +0912.4204 Statistical Mechanics +1001.1439 Disordered Systems and Neural Networks +1002.0189 Geometric Topology +1002.0394 Geometric Topology +1002.3347 +1005.0360 Dynamical Systems +1005.0585 Dynamical Systems +1009.0683 Probability +1012.0981 Dynamical Systems +1012.3651 Physics and Society +1012.4761 Superconductivity +1101.3997 +1102.5437 Multimedia +1103.1252 Artificial Intelligence +1103.1254 Artificial Intelligence +1103.2591 Dynamical Systems +1103.3084 Dynamical Systems +1103.3969 Classical Analysis and ODEs +1103.4271 Graphics +1104.2333 Cosmology and Nongalactic Astrophysics +1104.3150 +1104.3637 Dynamical Systems +1104.4268 +1104.4940 +1106.1137 Classical Analysis and ODEs +1107.0690 Graphics +1110.2389 Rings and Algebras +1110.3795 +1111.1871 Combinatorics +1112.3434 Combinatorics +1112.4084 Multimedia +1201.2672 Phenomenology +1202.1557 Theory +1202.4864 Solar and Stellar Astrophysics +1202.6323 Quantum Gases +1203.2238 Differential Geometry +1203.4461 Optics +1204.3543 Cryptography and Security +1204.5985 Probability +1205.0909 Mesoscale and Nanoscale Physics +1205.2112 Optics +1205.2723 +1205.5661 Classical Analysis and ODEs +1205.5718 Strongly Correlated Electrons +1206.1510 Earth and Planetary Astrophysics +1206.1653 Distributed, Parallel, and Cluster Computing +1206.4206 Human-Computer Interaction +1206.4592 Other Condensed Matter +1206.5311 Theory +1207.1104 Mesoscale and Nanoscale Physics +1208.4118 Computation +1208.4925 Strongly Correlated Electrons +1209.1797 Cryptography and Security +1209.2406 Dynamical Systems +1209.2676 Cosmology and Nongalactic Astrophysics +1209.4938 Algebraic Geometry +1209.6047 +1210.1859 Quantum Gases +1210.2423 Theory +1210.3646 Theory +1210.3843 Theory +1210.4036 Mesoscale and Nanoscale Physics +1210.5105 Strongly Correlated Electrons +1210.5879 Computational Complexity +1211.0706 Solar and Stellar Astrophysics +1211.3056 Mathematical Software +1211.3059 Strongly Correlated Electrons +1211.3560 +1212.1484 +1212.2242 Phenomenology +1212.2492 Cosmology and Nongalactic Astrophysics +1212.2689 +1301.1521 Combinatorics +1301.4499 Instrumentation and Methods for Astrophysics +1301.5261 +1301.7535 Phenomenology +1301.7575 Atomic Physics +1302.0665 +1302.0907 Information Theory +1302.1664 Mesoscale and Nanoscale Physics +1302.2867 Solar and Stellar Astrophysics +1302.4041 Dynamical Systems +1302.5052 +1302.5309 Theory +1302.6128 Quantum Gases +1302.6175 Superconductivity +1302.6254 Statistical Mechanics +1302.6266 Phenomenology +1302.6889 Phenomenology +1303.0919 Operator Algebras +1303.1771 Statistical Mechanics +1303.1827 Social and Information Networks +1303.2058 Soft Condensed Matter +1303.5643 Materials Science +1303.6080 Superconductivity +1303.6310 Neural and Evolutionary Computing +1304.0582 +1304.1324 Classical Analysis and ODEs +1304.2577 Analysis of PDEs +1304.5249 Atomic Physics +1304.7658 Solar and Stellar Astrophysics +1304.8085 Exactly Solvable and Integrable Systems +1305.0485 Differential Geometry +1305.2396 Dynamical Systems +1305.3463 High Energy Astrophysical Phenomena +1305.4078 General Finance +1305.5716 +1305.6131 Experiment +1305.6344 Combinatorics +1305.6658 Fluid Dynamics +1305.6720 Analysis of PDEs +1305.6766 Statistical Mechanics +1305.6791 Analysis of PDEs +1305.6796 Soft Condensed Matter +1305.7331 Learning +1306.0010 Instrumentation and Methods for Astrophysics +1306.0117 General Physics +1306.0216 Probability +1306.0224 Quantum Algebra +1306.0412 Group Theory +1306.0491 Computers and Society +1306.0752 Combinatorics +1306.0765 Number Theory +1306.0769 Fluid Dynamics +1306.0893 Functional Analysis +1306.0896 Neural and Evolutionary Computing +1306.0897 Neural and Evolutionary Computing +1306.0910 Cosmology and Nongalactic Astrophysics +1306.0916 Materials Science +1306.0919 Phenomenology +1306.0922 Classical Analysis and ODEs +1306.0926 Information Theory +1306.0927 Astrophysics of Galaxies +1306.0932 +1306.0938 Applications +1306.0944 Information Theory +1306.0946 Information Theory +1306.0947 Digital Libraries +1306.0948 Number Theory +1306.0949 Chaotic Dynamics +1306.0950 +1306.0958 Software Engineering +1306.0961 +1306.0963 Artificial Intelligence +1306.0965 Geometric Topology +1306.0966 Risk Management +1306.0967 +1306.0968 Information Theory +1306.0974 Computer Vision and Pattern Recognition +1306.0976 Methodology +1306.0978 Combinatorics +1306.0979 Superconductivity +1306.0980 Pricing of Securities +1306.0984 Accelerator Physics +1306.0986 Dynamical Systems +1306.0992 Algebraic Geometry +1306.0993 Commutative Algebra +1306.0996 Computational Geometry +1306.1007 Rings and Algebras +1306.1008 Differential Geometry +1306.1012 Fluid Dynamics +1306.1016 Superconductivity +1306.1017 Rings and Algebras +1306.1021 Commutative Algebra +1306.1023 Rings and Algebras +1306.1034 Artificial Intelligence +1306.1040 High Energy Astrophysical Phenomena +1306.1041 Mesoscale and Nanoscale Physics +1306.1044 Strongly Correlated Electrons +1306.1048 +1306.1051 Solar and Stellar Astrophysics +1306.1052 Machine Learning +1306.1053 Cosmology and Nongalactic Astrophysics +1306.1054 Probability +1306.1059 Statistics Theory +1306.1062 Probability +1306.1063 Instrumentation and Detectors +1306.1064 Number Theory +1306.1068 Software Engineering +1306.1069 Formal Languages and Automata Theory +1306.1072 +1306.1073 Digital Libraries +1306.1077 Mesoscale and Nanoscale Physics +1306.1083 Computer Vision and Pattern Recognition +1306.1085 Geometric Topology +1306.1087 Solar and Stellar Astrophysics +1306.1088 Instrumentation and Detectors +1306.1089 Computational Physics +1306.1093 +1306.1094 Functional Analysis +1306.1096 Geometric Topology +1306.1097 Numerical Analysis +1306.1101 Information Theory +1306.1103 Solar and Stellar Astrophysics +1306.1112 Combinatorics +1306.1114 Combinatorics +1306.1116 Analysis of PDEs +1306.1117 Complex Variables +1306.1119 +1306.1120 Materials Science +1306.1123 Differential Geometry +1306.1128 Data Structures and Algorithms +1306.1129 Optimization and Control +1306.1131 Statistical Mechanics +1306.1133 +1306.1134 Networking and Internet Architecture +1306.1136 Optimization and Control +1306.1137 Networking and Internet Architecture +1306.1138 Group Theory +1306.1139 Accelerator Physics +1306.1140 Computers and Society +1306.1144 Robotics +1306.1146 Networking and Internet Architecture +1306.1148 Networking and Internet Architecture +1306.1153 Databases +1306.1158 Algebraic Topology +1306.1160 Solar and Stellar Astrophysics +1306.1163 Optimization and Control +1306.1166 Probability +1306.1167 Data Structures and Algorithms +1306.1172 Logic +1306.1174 Logic +1306.1178 Theory +1306.1180 Algebraic Geometry +1306.1181 Statistical Mechanics +1306.1182 Computation +1306.1185 Machine Learning +1306.1188 Differential Geometry +1306.1192 Materials Science +1306.1196 Materials Science +1306.1201 Theory +1306.1208 Algebraic Geometry +1306.1209 Combinatorics +1306.1215 Populations and Evolution +1306.1219 Group Theory +1306.1224 +0708.3333 Algebraic Geometry +0802.2700 Symplectic Geometry +0804.4383 Logic in Computer Science +0810.4471 Strongly Correlated Electrons +0811.4062 Symplectic Geometry +0903.0826 Commutative Algebra +0905.4653 Mesoscale and Nanoscale Physics +0906.4711 Logic in Computer Science +0907.5074 Logic in Computer Science +0909.0884 Software Engineering +0909.1005 Geometric Topology +0910.1909 Geometric Topology +0911.0379 Group Theory +0911.2255 Rings and Algebras +1001.1847 General Physics +1001.2100 Logic in Computer Science +1002.2479 Differential Geometry +1002.4860 Geometric Topology +1003.5777 Software Engineering +1007.4926 Quantum Gases +1011.1744 Differential Geometry +1011.5553 Computational Geometry +1012.3845 Probability +1012.4740 Symplectic Geometry +1103.4398 Quantum Algebra +1104.3116 Programming Languages +1104.3335 Computational Complexity +1105.3755 Spectral Theory +1106.3644 Category Theory +1106.5356 Analysis of PDEs +1108.0513 +1108.1068 Software Engineering +1108.4447 +1109.0031 Phenomenology +1109.0511 Mesoscale and Nanoscale Physics +1110.3348 +1111.5622 Superconductivity +1112.4513 Soft Condensed Matter +1201.6363 Quantum Gases +1202.2856 High Energy Astrophysical Phenomena +1202.3162 Social and Information Networks +1202.4066 Theory +1202.4148 Group Theory +1203.0258 Plasma Physics +1203.4643 Methodology +1203.6399 Number Theory +1204.0171 Learning +1204.1996 Number Theory +1205.0417 Statistics Theory +1205.6244 Methodology +1206.2280 Number Theory +1206.2891 Superconductivity +1207.0289 Logic +1207.0502 High Energy Astrophysical Phenomena +1207.0698 Experiment +1207.3126 Phenomenology +1207.3757 Statistics Theory +1207.6301 Operator Algebras +1207.7202 Phenomenology +1208.0519 Mesoscale and Nanoscale Physics +1208.1037 Quantum Algebra +1208.3320 Mesoscale and Nanoscale Physics +1208.3337 Software Engineering +1208.3339 Exactly Solvable and Integrable Systems +1208.4535 Lattice +1209.3395 Optics +1210.1448 Functional Analysis +1210.4402 Statistics Theory +1210.4655 Phenomenology +1210.4760 +1210.4804 Geophysics +1210.7239 Cosmology and Nongalactic Astrophysics +1210.7857 Instrumentation and Detectors +1211.1701 +1211.2573 Computers and Society +1211.3257 Software Engineering +1211.4772 Quantum Gases +1211.6413 Probability +1212.0449 Soft Condensed Matter +1212.1182 Machine Learning +1212.1871 Theory +1212.2075 Solar and Stellar Astrophysics +1212.5177 Superconductivity +1212.5702 Strongly Correlated Electrons +1212.6597 Superconductivity +1212.6685 Metric Geometry +1212.6760 Theory +1301.0272 Space Physics +1301.1441 Materials Science +1301.2491 Materials Science +1301.2679 Differential Geometry +1301.6635 Computation +1302.1694 Optics +1302.4178 Superconductivity +1302.4653 Phenomenology +1302.4736 Quantum Gases +1302.5466 +1302.5594 Exactly Solvable and Integrable Systems +1302.5631 Cosmology and Nongalactic Astrophysics +1302.5898 Computational Complexity +1302.6218 +1302.6918 Lattice +1303.2794 Probability +1303.3260 +1303.3294 Phenomenology +1303.4143 Cosmology and Nongalactic Astrophysics +1303.4659 +1303.4755 Optics +1303.5092 +1303.5336 Cosmology and Nongalactic Astrophysics +1303.5360 Statistical Mechanics +1303.5547 Materials Science +1303.6703 Phenomenology +1303.7038 +1303.7468 Superconductivity +1304.0463 Geometric Topology +1304.0841 Experiment +1304.0895 +1304.1436 Mesoscale and Nanoscale Physics +1304.2773 Mesoscale and Nanoscale Physics +1304.3514 Phenomenology +1304.4969 Mesoscale and Nanoscale Physics +1304.5037 Phenomenology +1304.5875 Populations and Evolution +1304.6883 Category Theory +1304.6940 Atomic Physics +1304.7295 Mesoscale and Nanoscale Physics +1304.7322 Strongly Correlated Electrons +1304.7438 Phenomenology +1304.7452 Statistical Mechanics +1304.7779 Phenomenology +1304.7944 +1305.0217 +1305.0554 Mesoscale and Nanoscale Physics +1305.0852 Phenomenology +1305.1392 +1305.1414 Phenomenology +1305.1627 Phenomenology +1305.3116 Statistical Mechanics +1305.3246 Quantum Algebra +1305.3308 Phenomenology +1305.4020 Phenomenology +1305.4242 Digital Libraries +1305.5161 Lattice +1305.5995 +1305.6081 Lattice +1305.7459 Theory +1306.1637 Cosmology and Nongalactic Astrophysics +1306.1914 Pattern Formation and Solitons +1306.2248 Phenomenology +1306.2781 Experiment +1306.2875 Biomolecules +1306.3154 Phenomenology +1306.3256 Theory +1306.3283 Lattice +1306.3515 Phenomenology +1306.3771 Digital Libraries +1306.4377 Superconductivity +1306.4498 Statistical Mechanics +1306.5222 Superconductivity +1307.0538 Geometric Topology +1307.0728 Combinatorics +1307.0756 Probability +1307.0973 Representation Theory +1307.1072 Phenomenology +1307.1109 Theory +1307.2229 +1307.2886 Earth and Planetary Astrophysics +1307.3044 +1307.4690 High Energy Astrophysical Phenomena +1307.6446 Optimization and Control +1307.6516 +1307.7072 Materials Science +1308.0412 Materials Science +1308.1603 Neural and Evolutionary Computing +1308.1654 Combinatorics +1308.2025 Instrumentation and Detectors +1308.2120 Numerical Analysis +1308.2340 Dynamical Systems +1308.2447 Solar and Stellar Astrophysics +1308.2453 Superconductivity +1308.2625 Optimization and Control +1308.2651 +1308.2681 Cosmology and Nongalactic Astrophysics +1308.2683 +1308.2684 Quantum Gases +1308.2688 Pricing of Securities +1308.2691 Group Theory +1308.2692 Group Theory +1308.2693 Materials Science +1308.2694 Distributed, Parallel, and Cluster Computing +1308.2696 Computation and Language +1308.2705 Computers and Society +1308.2708 Experiment +1308.2711 Materials Science +1308.2712 Strongly Correlated Electrons +1308.2717 Chaotic Dynamics +1308.2719 Methodology +1308.2725 Information Theory +1308.2728 Mesoscale and Nanoscale Physics +1308.2732 Statistical Finance +1308.2737 Information Theory +1308.2738 Phenomenology +1308.2740 Strongly Correlated Electrons +1308.2743 Information Theory +1308.2744 Theory +1308.2749 Optics +1308.2750 Optimization and Control +1308.2752 Operator Algebras +1308.2762 Networking and Internet Architecture +1308.2764 Statistics Theory +1308.2768 Functional Analysis +1308.2771 Methodology +1308.2772 Artificial Intelligence +1308.2775 Functional Analysis +1308.2778 Optimization and Control +1308.2779 Networking and Internet Architecture +1308.2781 Classical Analysis and ODEs +1308.2784 Classical Physics +1308.2787 Distributed, Parallel, and Cluster Computing +1308.2788 +1308.2791 Methodology +1308.2793 Probability +1308.2794 Combinatorics +1308.2796 Statistical Mechanics +1308.2797 Networking and Internet Architecture +1308.2798 Information Theory +1308.2808 Information Theory +1308.2809 Statistics Theory +1308.2810 Dynamical Systems +1308.2811 Statistical Mechanics +1308.2815 +1308.2829 Instrumentation and Methods for Astrophysics +1308.2830 Statistics Theory +1308.2831 Cryptography and Security +1308.2837 Combinatorics +1308.2839 Combinatorics +1308.2840 Statistical Mechanics +1308.2841 Combinatorics +1308.2842 Statistical Mechanics +1308.2843 Combinatorics +1308.2845 Statistics Theory +1308.2848 Optics +1308.2849 Representation Theory +1308.2850 Strongly Correlated Electrons +1308.2853 Learning +1308.2856 Combinatorics +1308.2864 Computational Physics +1308.2865 Combinatorics +1308.2870 Superconductivity +1308.2872 Distributed, Parallel, and Cluster Computing +1308.2876 Software Engineering +1308.2881 Distributed, Parallel, and Cluster Computing +1308.2885 Quantitative Methods +1308.2888 Group Theory +1308.2890 Mesoscale and Nanoscale Physics +1308.2892 Computational Complexity +1308.2894 Information Theory +1308.2895 Analysis of PDEs +1308.2901 Optics +1308.2910 Numerical Analysis +1308.2916 Chemical Physics +1308.2917 Commutative Algebra +1308.2920 Networking and Internet Architecture +1308.2921 Cryptography and Security +1308.2922 Phenomenology +1308.2923 Networking and Internet Architecture +1308.2934 +1308.2935 Combinatorics +1308.2938 Social and Information Networks +1308.2939 +1308.2940 Computers and Society +1308.2944 Computers and Society +1308.2947 Computers and Society +1308.2951 Superconductivity +1308.2953 Biomolecules +1308.2954 Data Structures and Algorithms +1308.2957 Computational Finance +hep-ph/0012292 Phenomenology +math/0607004 Representation Theory +0802.3548 Number Theory +0804.1820 Category Theory +0805.0181 Combinatorics +0805.1505 Category Theory +0805.3527 Algebraic Geometry +0902.3294 Artificial Intelligence +0902.3635 Artificial Intelligence +0902.3749 Artificial Intelligence +0906.5181 Logic in Computer Science +0909.2761 Metric Geometry +1001.1873 Information Theory +1003.4434 +1004.1599 +1004.5556 Mesoscale and Nanoscale Physics +1005.2346 Representation Theory +1005.2761 Algebraic Geometry +1005.2910 Category Theory +1005.5082 Portfolio Management +1101.1781 Commutative Algebra +1105.5655 Analysis of PDEs +1107.2460 Complex Variables +1108.0835 Computational Geometry +1109.1723 Quantum Gases +1109.2342 Dynamical Systems +1109.5063 Metric Geometry +1110.0767 Category Theory +1110.4514 Probability +1111.4170 Quantum Gases +1111.6270 Dynamical Systems +1111.7227 Probability +1112.3310 +1201.1717 Social and Information Networks +1201.4167 Mesoscale and Nanoscale Physics +1202.4660 Optics +1202.5143 Quantum Gases +1202.5347 +1203.3410 +1203.5199 Phenomenology +1204.5076 Plasma Physics +1204.6436 Data Analysis, Statistics and Probability +1205.3913 Differential Geometry +1206.1422 Computational Geometry +1206.2884 +1206.3117 Strongly Correlated Electrons +1206.3862 Combinatorics +1206.4270 Statistical Mechanics +1207.3605 Combinatorics +1207.4771 Symplectic Geometry +1207.5595 +1207.6522 Combinatorics +1208.3634 Differential Geometry +1208.3999 Cosmology and Nongalactic Astrophysics +1208.4161 Information Theory +1209.0011 Quantum Gases +1209.0246 Theory +1209.2305 Differential Geometry +1209.4974 Numerical Analysis +1209.5195 Optics +1209.5591 Algebraic Geometry +1210.0371 Optimization and Control +1210.2533 Combinatorics +1210.4975 Classical Analysis and ODEs +1210.5328 Phenomenology +1210.5607 Combinatorics +1210.7336 +1210.8375 Cryptography and Security +1211.0132 Dynamical Systems +1211.0453 Analysis of PDEs +1211.2669 Combinatorics +1211.3164 General Topology +1211.4205 Strongly Correlated Electrons +1211.4635 Materials Science +1211.5312 Strongly Correlated Electrons +1211.5850 +1211.6400 Statistical Mechanics +1211.6983 +1212.0516 Analysis of PDEs +1212.2941 +1212.4763 Quantum Algebra +1212.5573 +1212.5698 Algebraic Geometry +1212.5794 Materials Science +1212.5915 Mesoscale and Nanoscale Physics +1212.6798 Functional Analysis +1301.0718 Quantum Gases +1301.1131 Combinatorics +1301.2972 Pattern Formation and Solitons +1301.4131 Data Structures and Algorithms +1301.4256 +1301.5252 Optics +1301.5726 Functional Analysis +1301.6337 Mesoscale and Nanoscale Physics +1301.6803 Theory +1301.7546 Strongly Correlated Electrons +1302.1275 Astrophysics of Galaxies +1302.2371 Phenomenology +1302.4323 Quantum Gases +1302.4521 Category Theory +1302.4532 Probability +1302.4749 Superconductivity +1302.5369 Strongly Correlated Electrons +1302.6052 Biological Physics +1302.6248 Strongly Correlated Electrons +1302.7120 Classical Physics +1302.7261 Analysis of PDEs +1303.0077 +1303.0180 Theory +1303.0431 Phenomenology +1303.0704 Pattern Formation and Solitons +1303.1641 Superconductivity +1303.2253 Disordered Systems and Neural Networks +1303.3264 General Physics +1303.4118 Group Theory +1303.4266 Information Theory +1303.4294 +1303.4313 Combinatorics +1303.4469 Quantum Gases +1303.6343 +1303.6852 Other Condensed Matter +1304.0027 Dynamical Systems +1304.0211 Theory +1304.1545 High Energy Astrophysical Phenomena +1304.1890 Algebraic Geometry +1304.2662 Chaotic Dynamics +1304.2845 Statistical Mechanics +1304.3354 Superconductivity +1304.3591 +1304.3706 Cosmology and Nongalactic Astrophysics +1304.5009 Experiment +1304.5331 Classical Physics +1304.5657 Experiment +1304.6226 Populations and Evolution +1304.6567 Mesoscale and Nanoscale Physics +1304.7256 Robotics +1304.7462 Statistical Mechanics +1304.8010 Plasma Physics +1304.8096 +1305.0752 Lattice +1305.0954 Other Computer Science +1305.1767 +1305.2720 Group Theory +1305.3140 Mesoscale and Nanoscale Physics +1305.3528 Computational Physics +1305.3953 Geometric Topology +1305.4653 Analysis of PDEs +1305.4817 Soft Condensed Matter +1305.4852 Materials Science +1305.4948 Strongly Correlated Electrons +1305.5910 Functional Analysis +1305.6652 Phenomenology +1305.6888 +1305.7099 Phenomenology +1306.0263 Statistical Mechanics +1306.1045 Functional Analysis +1306.1286 Software Engineering +1306.1711 Atomic Physics +1306.1750 Analysis of PDEs +1306.1969 +1306.2912 Disordered Systems and Neural Networks +1306.4135 Experiment +1306.4468 Phenomenology +1306.4765 Statistical Mechanics +1306.5307 Functional Analysis +1306.5363 Experiment +1306.5709 Neurons and Cognition +1306.6486 +1306.6525 +1307.0299 Lattice +1307.1631 +1307.2632 Cosmology and Nongalactic Astrophysics +1307.3093 Theory +1307.3281 Lattice +1307.3557 Phenomenology +1307.3613 Physics Education +1307.3953 +1307.5483 Information Theory +1307.5605 Algebraic Geometry +1307.5865 Phenomenology +1307.6037 +1307.6794 Quantum Algebra +1307.7371 Mesoscale and Nanoscale Physics +1307.7575 Mesoscale and Nanoscale Physics +1307.8235 Strongly Correlated Electrons +1308.1023 Other Statistics +1308.1390 Instrumentation and Methods for Astrophysics +1308.2428 Computation and Language +1308.2698 Combinatorics +1308.2723 Operator Algebras +1308.3215 Functional Analysis +1308.3737 Group Theory +1308.4013 Computer Science and Game Theory +1308.4107 Solar and Stellar Astrophysics +1308.4386 +1308.4858 Mesoscale and Nanoscale Physics +1308.5179 Probability +1308.5274 Experiment +1308.5461 Commutative Algebra +1308.6361 Classical Analysis and ODEs +1308.6752 +1309.0115 Functional Analysis +1309.0618 Geometric Topology +1309.1219 Functional Analysis +1309.1337 Algebraic Topology +1309.1778 Statistical Mechanics +1309.1783 Mathematical Software +1309.1801 +1309.1812 Computational Engineering, Finance, and Science +1309.1947 Experiment +1309.2542 Representation Theory +1309.2888 Geometric Topology +1309.3239 Accelerator Physics +1309.3253 Mesoscale and Nanoscale Physics +1309.3355 Materials Science +1309.3569 Cosmology and Nongalactic Astrophysics +1309.3573 High Energy Astrophysical Phenomena +1309.3578 Geometric Topology +1309.3583 Biological Physics +1309.3587 Dynamical Systems +1309.3597 Networking and Internet Architecture +1309.3598 Phenomenology +1309.3604 High Energy Astrophysical Phenomena +1309.3606 Numerical Analysis +1309.3608 Numerical Analysis +1309.3611 Artificial Intelligence +1309.3617 Strongly Correlated Electrons +1309.3620 Operator Algebras +1309.3623 Information Theory +1309.3624 Optics +1309.3628 Networking and Internet Architecture +1309.3629 Functional Analysis +1309.3632 Fluid Dynamics +1309.3633 History and Philosophy of Physics +1309.3640 Quantitative Methods +1309.3644 Differential Geometry +1309.3645 Disordered Systems and Neural Networks +1309.3647 Social and Information Networks +1309.3648 Differential Geometry +1309.3650 Geometric Topology +1309.3653 Materials Science +1309.3656 Functional Analysis +1309.3659 Fluid Dynamics +1309.3660 Social and Information Networks +1309.3662 Classical Physics +1309.3663 Statistics Theory +1309.3670 Strongly Correlated Electrons +1309.3675 Data Structures and Algorithms +1309.3676 Information Theory +1309.3685 Hardware Architecture +1309.3688 Computers and Society +1309.3690 Computational Complexity +1309.3692 Information Theory +1309.3697 Learning +1309.3699 Machine Learning +1309.3700 Statistics Theory +1309.3701 Discrete Mathematics +1309.3704 Systems and Control +1309.3705 Metric Geometry +1309.3707 Analysis of PDEs +1309.3708 Classical Analysis and ODEs +1309.3710 Cosmology and Nongalactic Astrophysics +1309.3712 Materials Science +1309.3716 Systems and Control +1309.3720 Information Theory +1309.3727 Functional Analysis +1309.3729 Cosmology and Nongalactic Astrophysics +1309.3730 Software Engineering +1309.3732 Classical Physics +1309.3733 Databases +1309.3735 Combinatorics +1309.3736 Instrumentation and Detectors +1309.3744 Strongly Correlated Electrons +1309.3745 Optimization and Control +1309.3752 Information Theory +1309.3755 Classical Analysis and ODEs +1309.3760 Mesoscale and Nanoscale Physics +1309.3761 Phenomenology +1309.3765 Commutative Algebra +1309.3767 Complex Variables +1309.3771 General Finance +1309.3779 Algebraic Topology +1309.3780 Dynamical Systems +1309.3783 Instrumentation and Methods for Astrophysics +1309.3785 Hardware Architecture +1309.3787 Geometric Topology +1309.3791 Algebraic Geometry +1309.3792 Statistical Mechanics +1309.3795 Combinatorics +1309.3798 Networking and Internet Architecture +1309.3805 Phenomenology +1309.3809 Computer Vision and Pattern Recognition +1309.3810 Differential Geometry +1309.3815 Logic +1309.3816 Neural and Evolutionary Computing +1309.3824 History and Overview +1309.3825 Combinatorics +1309.3826 Instrumentation and Methods for Astrophysics +1309.3829 Probability +1309.3830 Distributed, Parallel, and Cluster Computing +1309.3831 Analysis of PDEs +1309.3838 Operator Algebras +1309.3839 Operator Algebras +1309.3840 +1309.3843 Chemical Physics +1309.3844 Trading and Market Microstructure +1309.3846 High Energy Astrophysical Phenomena +1309.3848 Computer Vision and Pattern Recognition +1309.3849 Data Structures and Algorithms +1309.3853 Numerical Analysis +1309.3854 Analysis of PDEs +1309.3855 Probability +1309.3857 High Energy Astrophysical Phenomena +1309.3858 Computational Geometry +1309.3859 Lattice +1309.3862 Functional Analysis +1309.3863 Geophysics +1309.3864 Information Theory +1309.3866 Functional Analysis +1309.3868 Fluid Dynamics +1309.3869 High Energy Astrophysical Phenomena +1309.3874 Social and Information Networks +1309.3877 Learning +1309.3880 Combinatorics +1309.3882 Probability +1309.3886 Fluid Dynamics +1309.3888 Social and Information Networks +1309.3895 Methodology +1309.3897 Optics +1309.3899 Classical Analysis and ODEs +1309.3900 +1309.3903 Functional Analysis +1309.3910 Software Engineering +1309.3912 Statistics Theory +1309.3914 Programming Languages +1309.3915 Classical Physics +1309.3917 Artificial Intelligence +1309.3918 Probability +1309.3919 Programming Languages +1309.3921 Artificial Intelligence +1309.3928 Theory +1309.3934 Quantum Algebra +1309.3935 Combinatorics +1309.3936 Combinatorics +1309.3938 Logic +1309.3939 +1309.3942 Functional Analysis +1309.3944 Computers and Society +1309.3945 Neural and Evolutionary Computing +1309.3946 Information Retrieval +1309.3949 Information Retrieval +1309.3951 Mesoscale and Nanoscale Physics +1309.3952 Combinatorics +1309.3953 Cryptography and Security +1309.3954 Chemical Physics +1309.3958 Cryptography and Security +1309.3960 Dynamical Systems +1309.3962 Probability +1309.3963 Computational Geometry +1309.3964 Cryptography and Security +1309.3965 Instrumentation and Detectors +1309.3967 Earth and Planetary Astrophysics +1309.3981 Group Theory +1309.3984 Computer Science and Game Theory +1309.3987 +1309.3992 Instrumentation and Detectors +1309.3993 Other Computer Science +1309.3999 +1309.4002 Complex Variables +1309.4003 Strongly Correlated Electrons +1309.4006 Differential Geometry +1309.4008 Digital Libraries +1309.4009 Digital Libraries +1309.4014 Instrumentation and Methods for Astrophysics +1309.4015 Differential Geometry +1309.4016 Digital Libraries +1309.4020 Combinatorics +1309.4025 Dynamical Systems +1309.4032 Functional Analysis +1309.4033 Computational Complexity +1309.4034 Information Theory +1309.4035 Computation and Language +1309.4036 +1309.4038 Functional Analysis +1309.4047 Combinatorics +1309.4049 +1309.4051 Superconductivity +1309.4053 Number Theory +1309.4061 Learning +1309.4063 General Physics +1309.4067 Social and Information Networks +1309.4074 Fluid Dynamics +1309.4080 +astro-ph/0510557 +cs/0610066 Logic in Computer Science +math/0503219 Differential Geometry +math/0603097 Geometric Topology +physics/0605197 Data Analysis, Statistics and Probability +0902.1779 Solar and Stellar Astrophysics +1002.0147 +1004.2158 Astrophysics of Galaxies +1007.5283 Strongly Correlated Electrons +1009.0828 Commutative Algebra +1010.2305 Solar and Stellar Astrophysics +1010.5415 Statistical Mechanics +1010.5640 Phenomenology +1010.6036 Optimization and Control +1010.6119 Algebraic Geometry +1011.1051 Solar and Stellar Astrophysics +1011.5900 Theory +1103.3727 Algebraic Geometry +1104.0236 +1105.0870 +1105.2599 Numerical Analysis +1105.4052 Solar and Stellar Astrophysics +1106.0936 Complex Variables +1108.1285 Fluid Dynamics +1110.5354 Complex Variables +1110.5422 Functional Analysis +1112.0647 Symbolic Computation +1112.3801 Solar and Stellar Astrophysics +1112.6050 Solar and Stellar Astrophysics +1202.1198 Logic +1203.0545 Phenomenology +1203.6378 Theory +1204.0265 Complex Variables +1204.2192 Algebraic Geometry +1205.0334 Differential Geometry +1205.1833 Dynamical Systems +1205.1861 Statistical Finance +1205.6814 Theory +1206.2256 +1206.3056 +1206.3947 Representation Theory +1207.4719 Functional Analysis +1207.5163 Fluid Dynamics +1207.6849 Strongly Correlated Electrons +1207.7099 +1208.0548 Mesoscale and Nanoscale Physics +1209.2476 Physics and Society +1209.4112 +1210.1139 Information Theory +1210.7378 Theory +1211.1749 Strongly Correlated Electrons +1211.1772 +1211.1805 Superconductivity +1211.5574 Mesoscale and Nanoscale Physics +1211.6023 Theory +1211.6687 Machine Learning +1212.0036 Analysis of PDEs +1212.4242 +1212.6920 Algebraic Topology +1301.2101 Accelerator Physics +1301.3767 Symplectic Geometry +1301.6756 Theory +1302.0025 Theory +1302.2359 Number Theory +1302.3065 Methodology +1302.3788 Soft Condensed Matter +1302.6661 Strongly Correlated Electrons +1303.1177 Theory +1303.2644 Mesoscale and Nanoscale Physics +1303.3130 Quantum Gases +1303.3153 Chemical Physics +1303.5877 Phenomenology +1304.0783 Strongly Correlated Electrons +1304.1016 Theory +1304.7167 Materials Science +1304.7200 Materials Science +1304.7299 Plasma Physics +1305.1416 +1305.1506 +1305.3241 Computer Science and Game Theory +1305.3727 Plasma Physics +1305.4118 Superconductivity +1305.4597 High Energy Astrophysical Phenomena +1305.5567 Representation Theory +1305.7510 Classical Analysis and ODEs +1306.0176 Probability +1306.1415 Mesoscale and Nanoscale Physics +1306.2909 +1306.4665 Solar and Stellar Astrophysics +1306.4689 Algebraic Geometry +1306.4912 Plasma Physics +1307.3389 Quantitative Methods +1307.6851 Complex Variables +1307.8348 Theory +1308.0484 Learning +1308.0954 Number Theory +1308.0964 Populations and Evolution +1308.1430 Phenomenology +1308.1797 Other Computer Science +1308.2324 Portfolio Management +1308.2572 Distributed, Parallel, and Cluster Computing +1308.2745 Disordered Systems and Neural Networks +1308.2854 Mesoscale and Nanoscale Physics +1308.3057 Strongly Correlated Electrons +1308.3151 Algebraic Geometry +1308.3229 Systems and Control +1308.3267 Number Theory +1308.3280 Discrete Mathematics +1308.3332 Functional Analysis +1308.3442 Phenomenology +1308.3489 Cryptography and Security +1308.3498 High Energy Astrophysical Phenomena +1308.3500 Group Theory +1308.3506 Computer Science and Game Theory +1308.3509 Learning +1308.3511 Optics +1308.3512 Materials Science +1308.3513 Learning +1308.3518 Classical Analysis and ODEs +1308.3519 Solar and Stellar Astrophysics +1308.3520 Data Structures and Algorithms +1308.3524 Neural and Evolutionary Computing +1308.3528 Spectral Theory +1308.3533 Probability +1308.3534 Soft Condensed Matter +1308.3537 Analysis of PDEs +1308.3538 Accelerator Physics +1308.3539 Superconductivity +1308.3540 +1308.3546 Dynamical Systems +1308.3553 Information Theory +1308.3554 Software Engineering +1308.3555 Atomic Physics +1308.3558 Learning +1308.3559 Cryptography and Security +1308.3561 Functional Analysis +1308.3562 Functional Analysis +1308.3573 Materials Science +1308.3574 Algebraic Topology +1308.3575 Information Theory +1308.3577 Information Theory +1308.3578 Information Theory +1308.3579 Computers and Society +1308.3582 Instrumentation and Detectors +1308.3584 Populations and Evolution +1308.3585 Group Theory +1308.3586 Category Theory +1308.3589 Algebraic Topology +1308.3596 Materials Science +1308.3597 Number Theory +1308.3598 Solar and Stellar Astrophysics +1308.3600 Methodology +1308.3613 Computational Complexity +1308.3619 Combinatorics +1308.3623 Experiment +1308.3624 Probability +1308.3628 Analysis of PDEs +1308.3629 Functional Analysis +1308.3630 Operator Algebras +1308.3639 Optimization and Control +1308.3641 Numerical Analysis +1308.3642 +1308.3643 Numerical Analysis +1308.3647 Dynamical Systems +1308.3648 Distributed, Parallel, and Cluster Computing +1308.3663 Other Quantitative Biology +1308.3665 Computational Complexity +1308.3673 Other Quantitative Biology +1308.3675 Other Quantitative Biology +1308.3676 Soft Condensed Matter +1308.3677 +1308.3679 Databases +1308.3681 Geophysics +1308.3684 Soft Condensed Matter +1308.3686 Geometric Topology +1308.3687 +1308.3690 Tissues and Organs +1308.3693 Computers and Society +0706.2488 General Physics +0801.2112 Probability +0809.3319 +0910.4524 +0912.0581 Combinatorics +1001.0717 Differential Geometry +1004.0031 Differential Geometry +1004.1334 Numerical Analysis +1009.3617 +1010.2441 Information Theory +1101.0441 Representation Theory +1101.3521 +1101.5927 Differential Geometry +1102.3674 Strongly Correlated Electrons +1104.3192 Probability +1105.1220 Statistical Mechanics +1105.2069 Probability +1105.2181 Representation Theory +1105.2419 Combinatorics +1105.5187 Category Theory +1105.5695 +1106.6233 Numerical Analysis +1107.2832 High Energy Astrophysical Phenomena +1107.3714 Phenomenology +1107.4421 +1108.2229 Phenomenology +1108.2680 +1109.0349 +1109.5034 Human-Computer Interaction +1110.5803 Mesoscale and Nanoscale Physics +1111.2772 Disordered Systems and Neural Networks +1112.0351 Analysis of PDEs +1112.0918 Methodology +1112.2398 Number Theory +1112.3596 +1112.3940 Phenomenology +1201.5237 +1203.4514 General Physics +1203.6865 Analysis of PDEs +1204.3298 Geometric Topology +1204.4069 Materials Science +1204.5293 Analysis of PDEs +1204.6607 Analysis of PDEs +1205.4202 Fluid Dynamics +1205.5393 Cosmology and Nongalactic Astrophysics +1206.0880 Differential Geometry +1206.1535 Combinatorics +1206.2186 Strongly Correlated Electrons +1206.2473 Number Theory +1206.6064 Phenomenology +1206.6306 +1207.0006 Theory +1207.0300 Experiment +1207.2438 General Physics +1207.3033 Strongly Correlated Electrons +1207.3804 Cosmology and Nongalactic Astrophysics +1207.4016 Dynamical Systems +1207.6095 Operator Algebras +1207.6967 Algebraic Geometry +1208.1178 Experiment +1208.1713 +1208.2081 Dynamical Systems +1208.2227 Soft Condensed Matter +1208.2647 Other Condensed Matter +1209.0995 Statistical Mechanics +1209.1161 Solar and Stellar Astrophysics +1209.4433 Optimization and Control +1209.5305 +1210.0885 Geometric Topology +1210.1241 Materials Science +1210.2494 Fluid Dynamics +1210.2765 Instrumentation and Detectors +1210.3041 Cosmology and Nongalactic Astrophysics +1210.4513 Mesoscale and Nanoscale Physics +1210.4672 Statistics Theory +1210.4802 Materials Science +1210.5416 Atmospheric and Oceanic Physics +1210.5539 Dynamical Systems +1210.7436 Operator Algebras +1210.7969 +1211.1071 Astrophysics of Galaxies +1211.1149 Data Structures and Algorithms +1211.2746 Phenomenology +1211.4134 Logic +1211.6877 Mesoscale and Nanoscale Physics +1212.0634 Methodology +1212.1380 Phenomenology +1212.2054 Cryptography and Security +1212.2259 Classical Physics +1212.2789 Logic in Computer Science +1212.3249 Phenomenology +1212.4716 Mesoscale and Nanoscale Physics +1212.5073 Fluid Dynamics +1212.5545 Disordered Systems and Neural Networks +1212.6693 Theory +1301.0365 Geophysics +1301.1042 Mesoscale and Nanoscale Physics +1301.1416 Exactly Solvable and Integrable Systems +1301.1421 Quantum Algebra +1301.1459 Machine Learning +1301.2339 Analysis of PDEs +1301.2610 Genomics +1301.2990 Differential Geometry +1301.3527 Learning +1301.3595 Dynamical Systems +1301.3775 Learning +1301.4732 Networking and Internet Architecture +1301.6592 Mesoscale and Nanoscale Physics +1301.7615 Solar and Stellar Astrophysics +1302.1977 Cosmology and Nongalactic Astrophysics +1302.4027 Materials Science +1302.5622 History and Philosophy of Physics +1302.6063 Theory +1303.1366 Combinatorics +1303.1537 +1303.1538 +1303.2015 High Energy Astrophysical Phenomena +1303.2191 Solar and Stellar Astrophysics +1303.2877 Combinatorics +1303.3961 Combinatorics +1303.4140 +1303.4376 Discrete Mathematics +1303.4383 Biomolecules +1303.4384 Information Theory +1303.4385 Instrumentation and Detectors +1303.4402 Social and Information Networks +1303.4407 Logic +1303.4419 Logic +1303.4426 Dynamical Systems +1303.4429 Soft Condensed Matter +1303.4432 Probability +1303.4433 +1303.4434 Learning +1303.4438 Computer Science and Game Theory +1303.4439 Networking and Internet Architecture +1303.4440 Probability +1303.4445 Other Condensed Matter +1303.4447 Information Theory +1303.4448 Discrete Mathematics +1303.4449 Algebraic Geometry +1303.4451 Social and Information Networks +1303.4452 Information Theory +1303.4457 Analysis of PDEs +1303.4459 Number Theory +1303.4461 Other Computer Science +1303.4462 +1303.4466 Solar and Stellar Astrophysics +1303.4468 Solar and Stellar Astrophysics +1303.4470 Cosmology and Nongalactic Astrophysics +1303.4471 Databases +1303.4474 Optimization and Control +1303.4476 Optimization and Control +1303.4479 Algebraic Topology +1303.4480 Classical Analysis and ODEs +1303.4484 Information Theory +1303.4489 Superconductivity +1303.4496 +1303.4498 Computers and Society +1303.4499 Complex Variables +1303.4501 Combinatorics +1303.4503 Instrumentation and Detectors +1303.4506 Earth and Planetary Astrophysics +1303.4507 Materials Science +1303.4509 Materials Science +1303.4510 Numerical Analysis +1303.4511 Optics +1303.4512 Materials Science +1303.4513 Geophysics +1303.4514 General Finance +1303.4515 +1303.4518 Statistics Theory +1303.4520 Commutative Algebra +1303.4521 Analysis of PDEs +1303.4523 Computational Physics +1303.4528 K-Theory and Homology +1303.4536 Combinatorics +1303.4538 Performance +1303.4544 Instrumentation and Detectors +1303.4547 Probability +1303.4554 Optimization and Control +1303.4557 Phenomenology +1303.4559 Analysis of PDEs +1303.4567 Information Theory +1303.4578 Instrumentation and Methods for Astrophysics +1303.4579 Combinatorics +1303.4581 Optimization and Control +1303.4586 Materials Science +1303.4588 Probability +1303.4590 Functional Analysis +1303.4600 Dynamical Systems +1303.4604 Other Condensed Matter +1303.4605 Materials Science +1303.4609 Complex Variables +1303.4611 Materials Science +1303.4614 Computer Vision and Pattern Recognition +1303.4615 Optimization and Control +1303.4619 Mesoscale and Nanoscale Physics +1303.4620 Statistics Theory +1303.4629 Physics and Society +1303.4631 Materials Science +1303.4632 Data Structures and Algorithms +1303.4638 Learning +1303.4639 Phenomenology +1303.4641 Materials Science +1303.4651 +1303.4653 High Energy Astrophysical Phenomena +1303.4654 Cosmology and Nongalactic Astrophysics +1303.4656 Plasma Physics +1303.4660 +1303.4664 Learning +1303.4670 Algebraic Geometry +1303.4671 High Energy Astrophysical Phenomena +1303.4673 Combinatorics +1303.4675 Strongly Correlated Electrons +1303.4679 Networking and Internet Architecture +1303.4680 Commutative Algebra +1303.4684 Dynamical Systems +1303.4687 Phenomenology +1303.4690 +1303.4691 +1303.4692 Multiagent Systems +1303.4693 Networking and Internet Architecture +1303.4695 Multiagent Systems +1303.4696 Other Computer Science +1303.4699 Social and Information Networks +1303.4705 Probability +1303.4708 Theory +1303.4709 Probability +1303.4711 Social and Information Networks +1303.4715 Probability +1303.4723 Phenomenology +1303.4725 Probability +math/0603330 Probability +0712.3444 Algebraic Topology +0803.1593 Theory +0807.3670 Popular Physics +0901.0602 +0906.0810 Statistical Mechanics +0908.0600 Chaotic Dynamics +0908.1271 Statistical Mechanics +0908.4243 Chaotic Dynamics +0910.1695 Materials Science +0910.1858 Combinatorics +0911.0610 Probability +0912.1023 Networking and Internet Architecture +0912.1843 Geometric Topology +1002.1633 Combinatorics +1004.1595 +1004.3847 Other Condensed Matter +1006.0724 Mesoscale and Nanoscale Physics +1006.3104 Chaotic Dynamics +1007.3336 Networking and Internet Architecture +1007.3780 Algebraic Geometry +1007.4820 +1009.0337 Chaotic Dynamics +1009.2997 Multiagent Systems +1009.3167 Networking and Internet Architecture +1009.3922 Statistical Mechanics +1010.2859 Materials Science +1010.3437 Mesoscale and Nanoscale Physics +1010.5409 Materials Science +1102.0037 Algebraic Geometry +1102.2836 Information Theory +1103.4385 Atmospheric and Oceanic Physics +1103.4876 Theory +1103.5384 Number Theory +1105.0148 Strongly Correlated Electrons +1105.0256 Complex Variables +1105.1158 Analysis of PDEs +1106.2785 Geometric Topology +1106.5999 +1109.2565 +1109.4920 Computer Vision and Pattern Recognition +1110.4141 Optimization and Control +1110.6395 Algebraic Geometry +1112.0672 Statistical Mechanics +1112.1255 Dynamical Systems +1112.1468 Algebraic Geometry +1112.2941 Dynamical Systems +1112.3459 Materials Science +1201.5228 Differential Geometry +1202.0821 Mesoscale and Nanoscale Physics +1202.5115 +1203.2034 +1203.3934 Differential Geometry +1203.4644 Superconductivity +1204.0342 Biological Physics +1204.1240 Information Theory +1204.1803 Other Condensed Matter +1204.4483 History and Overview +1204.5637 Probability +1205.0474 Cosmology and Nongalactic Astrophysics +1205.1051 Phenomenology +1205.1077 Strongly Correlated Electrons +1205.1245 Machine Learning +1205.3217 Applications +1205.5738 +1206.4375 Classical Analysis and ODEs +1206.4729 +1207.0531 Soft Condensed Matter +1207.2052 Statistical Mechanics +1207.2427 Statistical Mechanics +1207.3817 Quantum Gases +1207.3898 +1207.5009 Algebraic Geometry +1207.5156 +1207.7236 Phenomenology +1208.0252 Soft Condensed Matter +1208.1842 Logic in Computer Science +1208.2038 Theory +1208.3129 Mesoscale and Nanoscale Physics +1208.3140 Optimization and Control +1208.5027 +1208.5053 Strongly Correlated Electrons +1209.1180 Information Theory +1209.3225 Biological Physics +1209.3550 Methodology +1209.3846 Superconductivity +1209.4128 Quantitative Methods +1209.5343 Complex Variables +1210.1703 +1210.2269 Algebraic Geometry +1210.3523 Algebraic Geometry +1210.5686 Experiment +1210.6248 Statistical Mechanics +1210.6993 Theory +1210.7228 Strongly Correlated Electrons +1210.7480 Biological Physics +1211.1865 Optics +1211.2773 Phenomenology +1211.3394 Statistics Theory +1211.3631 Strongly Correlated Electrons +1211.4750 Cosmology and Nongalactic Astrophysics +1211.4987 Quantum Gases +1212.0186 Combinatorics +1212.1944 Theory +1212.2092 +1212.3579 +1212.5144 Phenomenology +1212.5963 Operator Algebras +1212.6150 Number Theory +1301.0108 +1301.0296 History and Philosophy of Physics +1301.0981 +1301.3141 Solar and Stellar Astrophysics +1301.4103 Theory +1301.6045 Classical Physics +1301.6650 +1301.7109 Mesoscale and Nanoscale Physics +1301.7666 Complex Variables +1302.0429 +1302.0435 Learning +1302.0572 Soft Condensed Matter +1302.0834 Disordered Systems and Neural Networks +1302.0897 Networking and Internet Architecture +1302.0949 Analysis of PDEs +1302.1064 Data Structures and Algorithms +1302.1162 Probability +1302.1207 Logic +1302.1212 +1302.1214 Algebraic Topology +1302.1218 Analysis of PDEs +1302.1222 Fluid Dynamics +1302.1227 Analysis of PDEs +1302.1228 General Finance +1302.1229 Materials Science +1302.1232 Statistics Theory +1302.1234 Solar and Stellar Astrophysics +1302.1235 +1302.1236 Information Theory +1302.1239 Functional Analysis +1302.1242 +1302.1248 Mesoscale and Nanoscale Physics +1302.1249 Differential Geometry +1302.1254 Probability +1302.1255 Number Theory +1302.1257 Instrumentation and Methods for Astrophysics +1302.1260 +1302.1261 Complex Variables +1302.1262 Analysis of PDEs +1302.1263 Instrumentation and Methods for Astrophysics +1302.1266 Discrete Mathematics +1302.1269 Analysis of PDEs +1302.1273 Statistical Mechanics +1302.1274 Commutative Algebra +1302.1276 Materials Science +1302.1279 Statistical Mechanics +1302.1280 Mesoscale and Nanoscale Physics +1302.1285 Soft Condensed Matter +1302.1291 Materials Science +1302.1294 Computer Vision and Pattern Recognition +1302.1296 Computer Vision and Pattern Recognition +1302.1297 Analysis of PDEs +1302.1298 Algebraic Geometry +1302.1300 Computer Vision and Pattern Recognition +1302.1301 +1302.1304 Analysis of PDEs +1302.1306 Distributed, Parallel, and Cluster Computing +1302.1307 Commutative Algebra +1302.1310 Mesoscale and Nanoscale Physics +1302.1312 Theory +1302.1318 Mesoscale and Nanoscale Physics +1302.1321 Experiment +1302.1323 Optimization and Control +1302.1326 Computer Vision and Pattern Recognition +1302.1327 Mesoscale and Nanoscale Physics +1302.1329 Metric Geometry +1302.1334 Artificial Intelligence +1302.1335 Information Retrieval +1302.1337 Probability +1302.1339 Cosmology and Nongalactic Astrophysics +1302.1340 General Topology +1302.1341 +1302.1343 Optics +1302.1345 Analysis of PDEs +1302.1347 Cosmology and Nongalactic Astrophysics +1302.1350 Materials Science +1302.1351 Information Theory +1302.1353 Information Theory +1302.1355 Software Engineering +1302.1358 Information Theory +1302.1360 Mesoscale and Nanoscale Physics +1302.1368 Logic +1302.1373 Phenomenology +1302.1374 Numerical Analysis +1302.1377 Exactly Solvable and Integrable Systems +1302.1380 Computation and Language +1302.1382 Medical Physics +1302.1383 Algebraic Geometry +1302.1384 Group Theory +1302.1390 Hardware Architecture +1302.1393 Software Engineering +1302.1394 +1302.1396 Emerging Technologies +1302.1397 High Energy Astrophysical Phenomena +1302.1399 +1302.1400 Data Structures and Algorithms +1302.1401 Analysis of PDEs +1302.1404 Strongly Correlated Electrons +1302.1417 Differential Geometry +1302.1419 Information Theory +1302.1421 Mesoscale and Nanoscale Physics +1302.1427 Analysis of PDEs +1302.1428 Cosmology and Nongalactic Astrophysics +1302.1434 Differential Geometry +1302.1439 Algebraic Geometry +1302.1440 Populations and Evolution +1302.1444 Mesoscale and Nanoscale Physics +1302.1445 Theory +1302.1448 Quantum Gases +1302.1450 Phenomenology +1302.1453 Chemical Physics +1302.1454 Number Theory +1302.1457 Astrophysics of Galaxies +1302.1461 Information Theory +1302.1462 Dynamical Systems +1302.1463 Probability +1302.1472 Geometric Topology +1302.1475 Optimization and Control +1302.1477 Number Theory +1302.1480 Rings and Algebras +1302.1482 Phenomenology +1302.1483 +1302.1485 Statistical Mechanics +1302.1489 Information Theory +1302.1491 General Physics +1302.1495 Cryptography and Security +1302.1497 Cosmology and Nongalactic Astrophysics +1302.1498 History and Philosophy of Physics +1302.1500 Data Analysis, Statistics and Probability +1302.1503 Theory +1302.1505 Commutative Algebra +1302.1506 Networking and Internet Architecture +1302.1508 Instrumentation and Methods for Astrophysics +1302.1510 Information Theory +1302.1511 Information Theory +1302.1512 Information Theory +1302.1516 Phenomenology +cond-mat/0510410 Mesoscale and Nanoscale Physics +cond-mat/0602251 Mesoscale and Nanoscale Physics +hep-th/0606258 Theory +math-ph/0504041 +0803.1340 Popular Physics +0805.3819 General Physics +0904.1602 Differential Geometry +0905.1423 Algebraic Geometry +0911.2179 Differential Geometry +0912.2516 K-Theory and Homology +1008.0616 Computers and Society +1010.5125 Space Physics +1102.2361 Systems and Control +1104.0531 Quantum Algebra +1105.2686 Data Structures and Algorithms +1105.6157 +1106.2169 +1107.0482 +1107.4490 +1108.5302 Geometric Topology +1109.0770 Statistical Mechanics +1109.5807 Atomic Physics +1110.5321 Numerical Analysis +1110.6327 Dynamical Systems +1111.6438 Algebraic Geometry +1112.4223 +1203.3089 Optimization and Control +1204.1253 +1204.2498 Optimization and Control +1204.4202 Artificial Intelligence +1204.4838 Algebraic Geometry +1204.4855 Representation Theory +1204.6405 Theory +1205.3362 Spectral Theory +1205.5945 Number Theory +1205.6284 High Energy Astrophysical Phenomena +1205.6722 +1205.7071 Phenomenology +1206.1407 Superconductivity +1206.4214 Optics +1207.2041 Information Theory +1207.3919 +1207.4322 Exactly Solvable and Integrable Systems +1207.4941 Applications +1207.6370 +1208.0632 Combinatorics +1208.1908 Probability +1208.2838 Differential Geometry +1208.4464 Soft Condensed Matter +1208.5749 Representation Theory +1209.3185 Spectral Theory +1209.3919 Geometric Topology +1209.5234 Classical Analysis and ODEs +1210.1124 Statistical Mechanics +1210.1503 +1210.2019 Information Theory +1210.3622 +1210.4997 Theory +1210.5445 Superconductivity +1210.6039 Astrophysics of Galaxies +1211.1082 Learning +1211.3928 Chaotic Dynamics +1211.4047 Mathematical Software +1211.6079 +1211.7305 Differential Geometry +1212.1334 +1212.2287 Databases +1212.4312 Biological Physics +1212.5053 +1212.5103 Theory +1212.6125 Atomic Physics +1212.6326 Mathematical Software +1212.6361 Theory +1301.1241 +1301.2454 Optics +1301.2695 +1301.2811 Computation and Language +1301.3544 Other Condensed Matter +1301.4310 +1301.4952 Data Structures and Algorithms +1301.5197 Formal Languages and Automata Theory +1301.5908 Cosmology and Nongalactic Astrophysics +1301.7001 Phenomenology +1301.7519 Information Theory +1302.1754 Theory +1302.1834 Differential Geometry +1302.2841 Mesoscale and Nanoscale Physics +1302.3739 Lattice +1302.4666 Classical Analysis and ODEs +1302.4685 Analysis of PDEs +1302.4751 Algebraic Topology +1302.5430 Cosmology and Nongalactic Astrophysics +1302.5467 Strongly Correlated Electrons +1302.6604 Mesoscale and Nanoscale Physics +1302.7041 Plasma Physics +1303.0740 Mesoscale and Nanoscale Physics +1303.2833 Optics +1303.2937 Commutative Algebra +1303.3054 Cell Behavior +1303.3092 Phenomenology +1303.3702 Statistical Mechanics +1303.4037 Information Theory +1304.0577 Cosmology and Nongalactic Astrophysics +1304.0828 Statistics Theory +1304.2280 Astrophysics of Galaxies +1304.2453 High Energy Astrophysical Phenomena +1304.3003 Strongly Correlated Electrons +1304.3301 Superconductivity +1304.4540 Applications +1304.4629 Superconductivity +1304.5063 Computer Vision and Pattern Recognition +1304.5257 Software Engineering +1304.6362 Phenomenology +1304.6385 +1304.6607 Commutative Algebra +1304.6664 Operator Algebras +1304.6933 Computer Vision and Pattern Recognition +1304.7001 Operating Systems +1304.7012 Algebraic Geometry +1304.7016 +1304.7018 +1304.7020 +1304.7025 Information Theory +1304.7026 Combinatorics +1304.7028 Group Theory +1304.7029 Formal Languages and Automata Theory +1304.7035 Pattern Formation and Solitons +1304.7039 Commutative Algebra +1304.7043 +1304.7047 Probability +1304.7048 Computer Science and Game Theory +1304.7049 Numerical Analysis +1304.7050 Numerical Analysis +1304.7051 Operator Algebras +1304.7053 Mathematical Software +1304.7054 Mathematical Software +1304.7055 Data Structures and Algorithms +1304.7060 +1304.7061 Data Structures and Algorithms +1304.7062 Analysis of PDEs +1304.7067 Data Structures and Algorithms +1304.7068 Functional Analysis +1304.7070 Analysis of PDEs +1304.7071 +1304.7072 Materials Science +1304.7073 Cryptography and Security +1304.7074 Phenomenology +1304.7075 Information Theory +1304.7078 Functional Analysis +1304.7079 Mesoscale and Nanoscale Physics +1304.7082 Materials Science +1304.7083 Earth and Planetary Astrophysics +1304.7085 Theory +1304.7090 Phenomenology +1304.7094 Databases +1304.7095 Information Theory +1304.7096 Databases +1304.7109 Molecular Networks +1304.7113 Mesoscale and Nanoscale Physics +1304.7114 High Energy Astrophysical Phenomena +1304.7115 High Energy Astrophysical Phenomena +1304.7118 Neural and Evolutionary Computing +1304.7123 Logic in Computer Science +1304.7124 Computers and Society +1304.7125 Numerical Analysis +1304.7127 Instrumentation and Detectors +1304.7128 Category Theory +1304.7129 Soft Condensed Matter +1304.7130 Operator Algebras +1304.7132 Computer Vision and Pattern Recognition +1304.7136 Optimization and Control +1304.7140 Computer Vision and Pattern Recognition +1304.7144 Astrophysics of Galaxies +1304.7149 +1304.7151 Digital Libraries +1304.7152 Quantum Algebra +1304.7153 Computer Vision and Pattern Recognition +1304.7157 Computation and Language +1304.7158 Learning +1304.7159 Theory +1304.7160 Combinatorics +1304.7165 +1304.7166 Phenomenology +1304.7168 Artificial Intelligence +1304.7178 Statistics Theory +1304.7180 Phenomenology +1304.7181 Optimization and Control +1304.7184 Computer Vision and Pattern Recognition +1304.7186 Combinatorics +1304.7187 Materials Science +1304.7189 Functional Analysis +1304.7193 Molecular Networks +1304.7194 Complex Variables +1304.7197 Superconductivity +1304.7198 Methodology +1304.7201 General Physics +1304.7207 Operator Algebras +1304.7209 Logic in Computer Science +1304.7211 Computer Vision and Pattern Recognition +1304.7213 Algebraic Geometry +1304.7214 Biomolecules +1304.7217 Systems and Control +1304.7218 Numerical Analysis +1304.7226 Computational Engineering, Finance, and Science +1304.7235 Data Structures and Algorithms +1304.7236 Computer Vision and Pattern Recognition +1304.7238 Artificial Intelligence +1304.7239 Artificial Intelligence +1304.7242 Mesoscale and Nanoscale Physics +1304.7244 Computer Science and Game Theory +1304.7248 Earth and Planetary Astrophysics +1304.7254 Superconductivity +1304.7258 +1304.7260 Rings and Algebras +astro-ph/0403086 +hep-th/0403146 Theory +1212.0493 Information Theory +0907.5262 Mesoscale and Nanoscale Physics +0908.3881 Biological Physics +0912.1793 Probability +1003.5705 Analysis of PDEs +1009.1767 Classical Analysis and ODEs +1011.3941 +1102.3097 Functional Analysis +1103.5028 Physics Education +1104.2930 Methodology +1108.6067 +1110.2907 Systems and Control +1111.3423 Cosmology and Nongalactic Astrophysics +1112.3637 Differential Geometry +1201.3321 Differential Geometry +1202.0566 Mesoscale and Nanoscale Physics +1202.4179 Astrophysics of Galaxies +1202.6684 Lattice +1203.1048 Theory +1203.1429 Systems and Control +1204.3640 Phenomenology +1204.3699 Analysis of PDEs +1204.4548 Soft Condensed Matter +1204.4635 Combinatorics +1205.4504 +1206.0731 Cosmology and Nongalactic Astrophysics +1206.3197 Commutative Algebra +1206.4788 Symplectic Geometry +1206.5682 Logic +1207.6739 +1208.0254 Chaotic Dynamics +1208.4001 Classical Analysis and ODEs +1208.4526 +1208.5767 Materials Science +1209.0260 Theory +1209.0577 +1209.5684 Optimization and Control +1209.5769 Phenomenology +1209.6105 +1209.6116 Optimization and Control +1209.6494 +1210.1073 Geometric Topology +1210.1423 High Energy Astrophysical Phenomena +1210.1749 General Topology +1210.2891 Metric Geometry +1210.4990 Statistical Mechanics +1210.5126 Probability +1210.7450 +1211.1083 Phenomenology +1211.2227 Learning +1211.2419 Optics +1211.3743 Cosmology and Nongalactic Astrophysics +1211.4857 Physics Education +1211.6537 Statistics Theory +1212.4647 Analysis of PDEs +1212.4951 +1212.5512 Quantum Gases +1212.5671 Dynamical Systems +1301.0083 Algebraic Geometry +1301.1605 Biological Physics +1301.1850 +1301.1930 Mesoscale and Nanoscale Physics +1301.3542 Materials Science +1301.4473 Quantum Gases +1301.4816 Logic in Computer Science +1301.6283 Superconductivity +1301.6479 Databases +1301.7641 Computer Vision and Pattern Recognition +1302.1030 +1302.1925 History and Philosophy of Physics +1302.3220 Astrophysics of Galaxies +1302.3288 Materials Science +1302.3344 Distributed, Parallel, and Cluster Computing +1302.3874 Theory +1302.5892 Statistics Theory +1303.1176 Cosmology and Nongalactic Astrophysics +1303.1596 Cosmology and Nongalactic Astrophysics +1303.1660 Theory +1303.2534 Phenomenology +1303.2539 Instrumentation and Detectors +1303.3160 Mesoscale and Nanoscale Physics +1303.3859 Mesoscale and Nanoscale Physics +1303.4477 Optics +1303.5608 Classical Physics +1303.6441 Quantum Gases +1303.6842 Phenomenology +1303.7432 +1304.0308 Mesoscale and Nanoscale Physics +1304.1917 Classical Analysis and ODEs +1304.2013 Strongly Correlated Electrons +1304.2257 Phenomenology +1304.4057 Cosmology and Nongalactic Astrophysics +1304.4330 Atomic Physics +1304.6549 Materials Science +1304.6816 Analysis of PDEs +1304.7137 Mesoscale and Nanoscale Physics +1304.7666 Solar and Stellar Astrophysics +1305.0980 Earth and Planetary Astrophysics +1305.2065 Solar and Stellar Astrophysics +1305.3247 +1305.4690 +1305.4989 Phenomenology +1305.5882 Statistics Theory +1305.7173 High Energy Astrophysical Phenomena +1305.7495 Operator Algebras +1306.0136 Combinatorics +1306.0147 Superconductivity +1306.0284 +1306.0509 +1306.0511 Number Theory +1306.0800 Functional Analysis +1306.0842 Machine Learning +1306.1232 Cosmology and Nongalactic Astrophysics +1306.1237 Theory +1306.1248 Phenomenology +1306.1254 +1306.1257 Combinatorics +1306.1259 +1306.1266 Mesoscale and Nanoscale Physics +1306.1270 Logic +1306.1271 Social and Information Networks +1306.1272 Cosmology and Nongalactic Astrophysics +1306.1274 Analysis of PDEs +1306.1276 Rings and Algebras +1306.1277 +1306.1278 Analysis of PDEs +1306.1280 Materials Science +1306.1281 Analysis of PDEs +1306.1288 Computers and Society +1306.1293 Algebraic Geometry +1306.1294 Statistics Theory +1306.1296 Probability +1306.1297 Probability +1306.1298 Machine Learning +1306.1300 Social and Information Networks +1306.1301 Computer Vision and Pattern Recognition +1306.1302 Software Engineering +1306.1303 Distributed, Parallel, and Cluster Computing +1306.1310 Information Theory +1306.1311 +1306.1312 Optimization and Control +1306.1313 Analysis of PDEs +1306.1315 Metric Geometry +1306.1316 Operating Systems +1306.1318 Statistics Theory +1306.1319 +1306.1320 Statistics Theory +1306.1323 Learning +1306.1324 Statistics Theory +1306.1326 Learning +1306.1327 Classical Analysis and ODEs +1306.1334 Databases +1306.1335 Other Computer Science +1306.1336 Data Analysis, Statistics and Probability +1306.1338 Networking and Internet Architecture +1306.1339 Populations and Evolution +1306.1340 Logic in Computer Science +1306.1341 Optics +1306.1343 Computation and Language +1306.1347 Complex Variables +1306.1353 Optics +1306.1354 High Energy Astrophysical Phenomena +1306.1358 Computer Vision and Pattern Recognition +1306.1359 Algebraic Geometry +1306.1360 Computational Complexity +1306.1365 Computers and Society +1306.1366 Data Structures and Algorithms +1306.1368 Group Theory +1306.1369 Solar and Stellar Astrophysics +1306.1370 Strongly Correlated Electrons +1306.1372 Biomolecules +1306.1373 Distributed, Parallel, and Cluster Computing +1306.1376 Geometric Topology +1306.1378 Computational Finance +1306.1381 Astrophysics of Galaxies +1306.1386 Combinatorics +1306.1393 Atomic Physics +1306.1394 Distributed, Parallel, and Cluster Computing +1306.1398 Analysis of PDEs +1306.1401 Soft Condensed Matter +1306.1402 Data Structures and Algorithms +1306.1403 Combinatorics +1306.1406 Analysis of PDEs +1306.1407 Superconductivity +1306.1408 Networking and Internet Architecture +1306.1410 Number Theory +1306.1417 Analysis of PDEs +1306.1425 High Energy Astrophysical Phenomena +1306.1426 Optimization and Control +1306.1427 Dynamical Systems +1306.1431 Plasma Physics +1306.1436 Cryptography and Security +1306.1439 Biomolecules +1306.1442 Materials Science +1306.1448 Networking and Internet Architecture +1306.1451 Optics +1306.1462 Computer Vision and Pattern Recognition +1306.1463 Logic +1306.1464 Logic +1306.1467 Distributed, Parallel, and Cluster Computing +1306.1468 Formal Languages and Automata Theory +1306.1469 Software Engineering +1306.1471 Mesoscale and Nanoscale Physics +1306.1473 Spectral Theory +1306.1475 Medical Physics +1306.1478 Information Retrieval +1306.1480 Functional Analysis +1306.1490 Computers and Society +1306.1491 Robotics +1306.1492 Probability +1306.1493 Statistics Theory +1306.1495 Lattice +1306.1505 Spectral Theory +1306.1508 Probability +1306.1511 Computational Engineering, Finance, and Science +1306.1519 Cryptography and Security +1306.1520 Learning +1306.1524 Spectral Theory +q-bio/0609025 Biomolecules +1304.4995 General Physics +0712.3873 Algebraic Geometry +0802.3213 +0810.3771 Operator Algebras +0812.4235 Learning +0907.4846 Operator Algebras +0908.1850 Operator Algebras +0909.4743 Theory +0909.4746 Theory +0911.0539 Operator Algebras +0911.1225 Cosmology and Nongalactic Astrophysics +0911.1393 Computational Complexity +1003.5285 Algebraic Geometry +1004.3416 Combinatorics +1006.2415 High Energy Astrophysical Phenomena +1007.2003 Materials Science +1007.3107 Strongly Correlated Electrons +1008.5090 Learning +1009.1457 Mesoscale and Nanoscale Physics +1009.3520 Information Theory +1010.3031 Cosmology and Nongalactic Astrophysics +1010.4003 Strongly Correlated Electrons +1101.0469 Geometric Topology +1101.5808 Phenomenology +1102.0938 Portfolio Management +1105.0955 Quantitative Methods +1105.3929 Probability +1105.5506 +1106.6156 Strongly Correlated Electrons +1107.0161 Optimization and Control +1107.4727 Strongly Correlated Electrons +1107.4866 Analysis of PDEs +1108.3149 Information Theory +1109.3682 Number Theory +1110.0226 Differential Geometry +1110.0383 Commutative Algebra +1110.0407 Cosmology and Nongalactic Astrophysics +1110.1595 Materials Science +1111.1236 Cosmology and Nongalactic Astrophysics +1111.2863 Astrophysics of Galaxies +1111.4541 Learning +1111.6591 Cosmology and Nongalactic Astrophysics +1112.0620 Representation Theory +1112.2201 Number Theory +1112.4271 Software Engineering +1201.4387 Astrophysics of Galaxies +1201.5437 Strongly Correlated Electrons +1201.6143 Strongly Correlated Electrons +1202.0021 Phenomenology +1202.0139 Rings and Algebras +1202.1726 Mesoscale and Nanoscale Physics +1202.2940 Algebraic Geometry +1202.3307 Statistics Theory +1202.3588 Analysis of PDEs +1203.1419 Analysis of PDEs +1203.5202 Probability +1203.5614 +1203.6120 Differential Geometry +1204.5213 Computer Science and Game Theory +1204.5564 Computation +1204.5856 Functional Analysis +1205.1257 Instrumentation and Methods for Astrophysics +1205.4348 +1206.0011 Cosmology and Nongalactic Astrophysics +1206.1992 Number Theory +1206.2795 General Physics +1206.3757 Analysis of PDEs +1206.4224 Computational Complexity +1206.4475 Biomolecules +1206.5006 Instrumentation and Methods for Astrophysics +1207.2118 Statistics Theory +1207.3563 Neurons and Cognition +1207.5277 Classical Analysis and ODEs +1208.0212 Phenomenology +1208.2011 Optics +1208.4076 Optimization and Control +1208.4874 Quantum Algebra +1208.6358 Functional Analysis +1208.6565 +1209.0183 Dynamical Systems +1209.2689 Materials Science +1209.2888 Mesoscale and Nanoscale Physics +1209.4355 Theory +1209.5803 Information Theory +1209.5873 Phenomenology +1209.6612 Materials Science +1209.6627 Phenomenology +1210.0183 +1210.0903 Cosmology and Nongalactic Astrophysics +1210.5899 Strongly Correlated Electrons +1210.6276 Mesoscale and Nanoscale Physics +1211.0913 +1211.1177 Optimization and Control +1211.1903 Numerical Analysis +1211.2876 Differential Geometry +1211.3075 +1211.3119 Astrophysics of Galaxies +1211.3210 Computation +1211.3268 +1211.3751 +1211.4163 Optics +1211.5134 +1212.0892 Systems and Control +1212.1477 +1212.2569 Differential Geometry +1212.2745 Materials Science +1212.3831 Mesoscale and Nanoscale Physics +1212.4972 Theory +1212.5038 Materials Science +1212.5152 Quantum Gases +1212.5607 Quantum Gases +1212.5634 Strongly Correlated Electrons +1212.6374 Phenomenology +1301.1927 +1301.2381 Commutative Algebra +1301.3011 Theory +1301.3137 Cosmology and Nongalactic Astrophysics +1301.3816 Learning +1301.4128 Algebraic Geometry +1301.6036 Strongly Correlated Electrons +1301.6318 Information Theory +1301.7072 Phenomenology +1301.7339 Materials Science +1302.0019 Information Theory +1302.1821 General Physics +1302.2586 Optics +1302.2705 Materials Science +1302.2786 +1302.3944 Mesoscale and Nanoscale Physics +1302.4473 Mesoscale and Nanoscale Physics +1302.5308 Cosmology and Nongalactic Astrophysics +1302.6187 Chaotic Dynamics +1302.6190 +1302.7222 Analysis of PDEs +1303.0285 Cosmology and Nongalactic Astrophysics +1303.0495 +1303.0942 Cosmology and Nongalactic Astrophysics +1303.2391 Materials Science +1303.2497 Mesoscale and Nanoscale Physics +1303.3033 Analysis of PDEs +1303.3722 Phenomenology +1303.3756 +1303.4063 Strongly Correlated Electrons +1303.4487 Optics +1303.4773 Soft Condensed Matter +1303.6460 Physics and Society +1303.7237 Cosmology and Nongalactic Astrophysics +1303.7238 Cosmology and Nongalactic Astrophysics +1303.7258 Cosmology and Nongalactic Astrophysics +1304.0964 Strongly Correlated Electrons +1304.1244 +1304.1374 Digital Libraries +1304.2854 Strongly Correlated Electrons +1304.3293 Mesoscale and Nanoscale Physics +1304.3299 Quantum Gases +1304.3796 Molecular Networks +1304.3809 Soft Condensed Matter +1304.3838 Methodology +1304.4471 Computer Science and Game Theory +1304.5095 +1304.5526 Phenomenology +1304.5847 Combinatorics +1304.6233 Machine Learning +1304.6249 +1304.6319 Populations and Evolution +1304.7038 Computational Complexity +1304.7361 Solar and Stellar Astrophysics +1304.7514 Mesoscale and Nanoscale Physics +1304.7951 +1305.0014 Phenomenology +1305.0502 Databases +1305.0685 Representation Theory +1305.1368 Materials Science +1305.1411 Combinatorics +1305.1460 Functional Analysis +1305.1465 Algebraic Geometry +1305.1553 Mesoscale and Nanoscale Physics +1305.2133 +1305.2146 Number Theory +1305.3318 Representation Theory +1305.4823 Mesoscale and Nanoscale Physics +1305.5750 Systems and Control +1305.5814 Materials Science +1306.0416 Disordered Systems and Neural Networks +1306.0527 +1306.0812 +1306.1628 High Energy Astrophysical Phenomena +1306.2690 Combinatorics +1306.2779 Commutative Algebra +1306.3348 +1306.3513 Optimization and Control +1306.4049 History and Overview +1306.4387 Algebraic Geometry +1306.4678 Strongly Correlated Electrons +1306.4702 Phenomenology +1306.4770 Spectral Theory +1306.5138 Theory +1306.5167 Combinatorics +1306.5302 General Finance +1306.5390 Distributed, Parallel, and Cluster Computing +1306.5413 Phenomenology +1306.5618 Soft Condensed Matter +1306.5809 Information Theory +1306.6350 Chemical Physics +1306.6424 Number Theory +1306.6702 Dynamical Systems +1306.6887 +1306.6943 Data Structures and Algorithms +1307.0018 Cosmology and Nongalactic Astrophysics +1307.0023 Phenomenology +1307.0024 Data Structures and Algorithms +1307.0027 Combinatorics +1307.0031 Physics and Society +1307.0032 Machine Learning +1307.0036 Computer Vision and Pattern Recognition +1307.0040 Logic +1307.0049 Distributed, Parallel, and Cluster Computing +1307.0051 Analysis of PDEs +1307.0059 Combinatorics +1307.0060 Artificial Intelligence +1307.0062 Mesoscale and Nanoscale Physics +1307.0064 Algebraic Topology +1307.0066 Differential Geometry +1307.0072 Computers and Society +1307.0076 Computers and Society +1307.0082 Cryptography and Security +1307.0083 Number Theory +1307.0085 Information Theory +1307.0087 Information Retrieval +1307.0090 Biological Physics +1307.0092 Combinatorics +1307.0093 Cellular Automata and Lattice Gases +1307.0096 Theory +1307.0097 Theory +1307.0098 Dynamical Systems +1307.0099 Formal Languages and Automata Theory +1307.0100 Distributed, Parallel, and Cluster Computing +1307.0101 Instrumentation and Detectors +1307.0102 Algebraic Geometry +1307.0106 Superconductivity +1307.0108 Logic +1307.0110 Digital Libraries +1307.0117 Instrumentation and Detectors +1307.0121 Optics +1307.0124 Combinatorics +1307.0127 Learning +1307.0129 Computer Vision and Pattern Recognition +1307.0138 Theory +1307.0142 Cosmology and Nongalactic Astrophysics +1307.0146 Phenomenology +1307.0151 Plasma Physics +1307.0153 Combinatorics +1307.0155 Instrumentation and Detectors +1307.0161 Combinatorics +1307.0163 +1307.0164 Machine Learning +1307.0165 Phenomenology +1307.0168 Combinatorics +1307.0170 Methodology +1307.0171 Optimization and Control +1307.0173 Number Theory +1307.0174 Functional Analysis +1307.0178 Molecular Networks +1307.0179 +1307.0180 Information Theory +1307.0181 Probability +1307.0187 Information Theory +1307.0189 Computational Complexity +1307.0190 General Finance +1307.0191 Databases +1307.0192 Combinatorics +1307.0193 Databases +1307.0194 Genomics +1307.0197 Instrumentation and Methods for Astrophysics +1307.0199 Applications +1307.0200 K-Theory and Homology +1307.0203 Representation Theory +1307.0205 Atomic Physics +1307.0206 Classical Analysis and ODEs +1307.0207 Classical Analysis and ODEs +1307.0213 Complex Variables +1307.0222 +1307.0224 Logic +1307.0225 Neurons and Cognition +1307.0227 Algebraic Geometry +1307.0230 Probability +1307.0233 Materials Science +1307.0234 Analysis of PDEs +1307.0235 Numerical Analysis +1307.0236 Differential Geometry +1307.0240 Atmospheric and Oceanic Physics +1307.0244 Combinatorics +1307.0247 Graphics +1307.0249 Mesoscale and Nanoscale Physics +1307.0253 Learning +1307.0258 Information Theory +1307.0261 Learning +1307.0264 Information Theory +1307.0265 Category Theory +1307.0267 +1307.0275 Biological Physics +1307.0277 Computer Vision and Pattern Recognition +1307.0278 Discrete Mathematics +1307.0281 Plasma Physics +1307.0282 Rings and Algebras +1307.0286 Instrumentation and Detectors +1307.0287 Dynamical Systems +1307.0298 Phenomenology +1307.0301 Materials Science +1307.0302 Materials Science +1307.0305 Tissues and Organs +1307.0316 +1307.0317 Learning +1307.0320 Information Retrieval +1307.0323 Machine Learning +1307.0324 High Energy Astrophysical Phenomena +1307.0326 Methodology +1307.0329 Functional Analysis +1307.0332 Computer Science and Game Theory +1307.0333 Differential Geometry +1307.0334 Numerical Analysis +1307.0336 Probability +1307.0337 Populations and Evolution +1307.0341 Classical Analysis and ODEs +1307.0343 Populations and Evolution +1307.0346 Differential Geometry +1307.0349 Networking and Internet Architecture +1307.0352 Solar and Stellar Astrophysics +1307.0355 Plasma Physics +1307.0359 Dynamical Systems +1307.0360 Number Theory +1307.0365 Classical Analysis and ODEs +1307.0369 Commutative Algebra +1307.0373 Machine Learning +1307.0378 +1307.0379 Group Theory +1307.0380 +1307.0385 Mesoscale and Nanoscale Physics +1307.0386 Instrumentation and Methods for Astrophysics +1307.0387 Plasma Physics +1307.0389 High Energy Astrophysical Phenomena +1307.0391 Instrumentation and Methods for Astrophysics +1307.0397 Solar and Stellar Astrophysics +1307.0398 Number Theory +1307.0406 Phenomenology +1307.0414 Machine Learning +1307.0415 Materials Science +1307.0419 Astrophysics of Galaxies +1307.0424 Classical Analysis and ODEs +1307.0427 Materials Science +1307.0430 Differential Geometry +1307.0431 Atomic and Molecular Clusters +1307.0435 General Physics +1307.0441 Databases +1307.0445 Systems and Control +1307.0447 General Physics +1307.0451 Other Quantitative Biology +1307.0454 Differential Geometry +1307.0456 Phenomenology +1307.0457 General Physics +1307.0459 Algebraic Geometry +1307.0460 General Physics +1307.0463 Earth and Planetary Astrophysics +1307.0465 +1307.0467 Symplectic Geometry +1307.0469 Representation Theory +1307.0470 +1307.0475 Cryptography and Security +1307.0477 Differential Geometry +1307.0489 Logic in Computer Science +1307.0492 Rings and Algebras +1307.0493 +1307.0495 Combinatorics +1307.0497 High Energy Astrophysical Phenomena +1307.0498 Quantum Algebra +hep-ph/0506055 Phenomenology +math/0610458 Geometric Topology +physics/0603183 Fluid Dynamics +quant-ph/0205161 +0705.3402 Disordered Systems and Neural Networks +1002.0089 Materials Science +1002.0090 Materials Science +1002.1545 Materials Science +1004.1426 Probability +1006.5831 Methodology +1008.0958 Mesoscale and Nanoscale Physics +1102.1121 Mesoscale and Nanoscale Physics +1102.2547 Commutative Algebra +1105.3286 Analysis of PDEs +1105.3289 Analysis of PDEs +1105.5018 Dynamical Systems +1107.3227 Probability +1108.4142 Computer Science and Game Theory +1108.5416 Geometric Topology +1109.1826 Phenomenology +1109.5231 Learning +1111.5647 Soft Condensed Matter +1111.5808 Statistical Mechanics +1112.4498 Theory +1202.1322 Probability +1202.4103 Theory +1203.2707 Statistical Mechanics +1203.3599 Theory +1203.5738 Combinatorics +1204.1110 Lattice +1204.1688 Statistics Theory +1205.1084 Combinatorics +1205.1514 Cosmology and Nongalactic Astrophysics +1206.1230 Phenomenology +1206.1923 Phenomenology +1206.3965 Information Theory +1206.7092 Materials Science +1207.2375 Computational Geometry +1207.2488 Computer Vision and Pattern Recognition +1207.3071 Computer Vision and Pattern Recognition +1207.3342 +1207.5824 Theory +1207.7356 Mesoscale and Nanoscale Physics +1208.0550 Mesoscale and Nanoscale Physics +1208.1493 Materials Science +1208.3197 Theory +1208.6506 Quantum Gases +1209.2310 Analysis of PDEs +1209.3988 Analysis of PDEs +1210.5527 Statistical Mechanics +1210.6397 Strongly Correlated Electrons +1210.6516 Statistics Theory +1211.2084 +1211.4999 Probability +1212.0646 Phenomenology +1212.0873 Optimization and Control +1212.2777 Functional Analysis +1212.3524 Physics and Society +1212.5284 Information Theory +1212.6788 Statistics Theory +1212.6931 Number Theory +1301.1335 Biological Physics +1301.4349 Analysis of PDEs +1301.4352 Combinatorics +1301.4529 Data Structures and Algorithms +1301.5704 +1302.0551 Experiment +1302.3328 High Energy Astrophysical Phenomena +1302.3707 Theory +1302.6392 Digital Libraries +1302.6483 Mesoscale and Nanoscale Physics +1302.7077 Analysis of PDEs +1303.1924 Materials Science +1303.2866 Dynamical Systems +1303.4190 Strongly Correlated Electrons +1303.4332 Phenomenology +1303.4455 +1303.4502 Strongly Correlated Electrons +1303.4781 Optics +1303.5125 Phenomenology +1303.5954 Phenomenology +1303.6104 Statistical Mechanics +1304.0325 Lattice +1304.0595 Superconductivity +1304.2175 Strongly Correlated Electrons +1304.2838 +1304.2858 +1304.2990 Mesoscale and Nanoscale Physics +1304.3624 Strongly Correlated Electrons +1304.4208 +1304.4788 Analysis of PDEs +1304.6580 Strongly Correlated Electrons +1304.7730 +1304.7738 Phenomenology +1304.7838 Differential Geometry +1305.0056 Phenomenology +1305.0660 Strongly Correlated Electrons +1305.1324 High Energy Astrophysical Phenomena +1305.2191 Solar and Stellar Astrophysics +1305.2208 Quantum Gases +1305.2993 Materials Science +1305.3368 Superconductivity +1305.3626 Mesoscale and Nanoscale Physics +1305.4613 Cosmology and Nongalactic Astrophysics +1305.4708 Strongly Correlated Electrons +1305.5546 Superconductivity +1305.5628 +1305.6314 Theory +1305.7202 Statistical Mechanics +1306.3367 Materials Science +1306.3399 Strongly Correlated Electrons +1306.4178 Phenomenology +1306.4240 Materials Science +1306.4244 Cryptography and Security +1306.4544 Plasma Physics +1306.4617 +1306.5756 Theory +1306.5985 Soft Condensed Matter +1307.0535 Phenomenology +1307.0710 Phenomenology +1307.0812 Materials Science +1307.1132 Theory +1307.1139 Theory +1307.2133 Soft Condensed Matter +1307.2361 Disordered Systems and Neural Networks +1307.2568 +1307.3234 Theory +1307.3424 Instrumentation and Methods for Astrophysics +1307.4882 Phenomenology +1307.5068 Phenomenology +1307.5592 Logic in Computer Science +1307.5610 Probability +1307.6696 Lattice +1307.6997 Lattice +1307.7023 Analysis of PDEs +1307.7205 Lattice +1307.8249 Genomics +1308.0084 +1308.0661 Information Retrieval +1308.1347 Symplectic Geometry +1308.1746 Social and Information Networks +1308.2622 Theory +1308.2642 Strongly Correlated Electrons +1308.2932 Phenomenology +1308.3043 Phenomenology +1308.3052 Computer Vision and Pattern Recognition +1308.3208 Quantum Gases +1308.3685 +1308.4577 Physics and Society +1308.5223 +1308.5571 Information Theory +1308.5911 Phenomenology +1308.5959 +1308.6720 Analysis of PDEs +1309.0334 Statistics Theory +1309.0626 Statistical Mechanics +1309.0665 Atomic Physics +1309.0789 Theory +1309.2491 Quantum Gases +1309.2984 Phenomenology +1309.3346 +1309.3871 Mesoscale and Nanoscale Physics +1309.4523 Theory +1309.4533 Lattice +1309.4939 Phenomenology +1309.4949 Exactly Solvable and Integrable Systems +1309.5008 +1309.6221 +1309.6557 +1309.7500 Superconductivity +1310.2054 Soft Condensed Matter +1310.2521 Superconductivity +1310.4338 High Energy Astrophysical Phenomena +1310.6475 Optimization and Control +1310.7806 Soft Condensed Matter +1310.8485 +1311.0719 Combinatorics +1311.1053 Information Theory +1311.2237 +1311.2424 Algebraic Geometry +1311.3193 Metric Geometry +1311.3839 Optics +1311.4094 Superconductivity +1311.4486 Learning +1311.4673 Algebraic Geometry +1311.4817 Theory +1311.5211 Pricing of Securities +1311.5448 Materials Science +1311.5704 Materials Science +1311.5716 Mesoscale and Nanoscale Physics +1311.5859 Statistical Mechanics +1311.5977 Mesoscale and Nanoscale Physics +1311.5999 +1311.6078 Molecular Networks +1311.6122 Functional Analysis +1311.6393 Algebraic Topology +1311.6406 Neurons and Cognition +1311.6421 Formal Languages and Automata Theory +1311.6426 Combinatorics +1311.6427 High Energy Astrophysical Phenomena +1311.6435 Statistics Theory +1311.6463 Cosmology and Nongalactic Astrophysics +1311.6474 +1311.6476 Phenomenology +1311.6477 Theory +1311.6479 Phenomenology +1311.6484 General Mathematics +1311.6486 Computation +1311.6489 Differential Geometry +1311.6492 Information Theory +1311.6494 +1311.6496 Solar and Stellar Astrophysics +1311.6497 +1311.6498 +1311.6500 Computer Vision and Pattern Recognition +1311.6508 Analysis of PDEs +1311.6510 Computer Vision and Pattern Recognition +1311.6514 Phenomenology +1311.6518 Combinatorics +1311.6519 High Energy Astrophysical Phenomena +1311.6525 Analysis of PDEs +1311.6526 Social and Information Networks +1311.6528 Phenomenology +1311.6529 Computation +1311.6534 Differential Geometry +1311.6536 Information Theory +1311.6537 Phenomenology +1311.6538 Strongly Correlated Electrons +1311.6542 Logic in Computer Science +1311.6544 General Topology +1311.6548 Superconductivity +1311.6550 Other Computer Science +1311.6552 Lattice +1311.6554 Dynamical Systems +1311.6557 Mesoscale and Nanoscale Physics +1311.6560 Commutative Algebra +1311.6561 Combinatorics +1311.6563 Logic in Computer Science +1311.6566 Cryptography and Security +1311.6573 Analysis of PDEs +1311.6578 Databases +1311.6580 Numerical Analysis +1311.6581 +1311.6582 Mesoscale and Nanoscale Physics +1311.6583 Group Theory +1311.6584 Functional Analysis +1311.6585 Data Analysis, Statistics and Probability +1311.6589 Mesoscale and Nanoscale Physics +1311.6591 Artificial Intelligence +1311.6598 Materials Science +1311.6603 Differential Geometry +1311.6605 Formal Languages and Automata Theory +1311.6606 Software Engineering +1311.6607 Analysis of PDEs +1311.6621 Algebraic Geometry +1311.6625 Biomolecules +1311.6627 Phenomenology +1311.6636 Statistics Theory +1311.6637 Materials Science +1311.6639 Materials Science +1311.6646 Mesoscale and Nanoscale Physics +1311.6647 Information Theory +1311.6654 +1311.6655 Mesoscale and Nanoscale Physics +1311.6656 Dynamical Systems +1311.6657 Materials Science +1311.6658 Robotics +1311.6659 Software Engineering +1311.6662 Phenomenology +1311.6663 Mesoscale and Nanoscale Physics +1311.6665 Group Theory +1311.6670 Computers and Society +1311.6672 +1311.6674 Robotics +1311.6676 Robotics +1311.6677 Robotics +1311.6678 Cosmology and Nongalactic Astrophysics +1311.6680 Combinatorics +1311.6682 Populations and Evolution +1311.6685 Robotics +1311.6689 +1311.6691 Combinatorics +1311.6698 Complex Variables +1311.6705 Chemical Physics +1311.6708 Pattern Formation and Solitons +1311.6709 Artificial Intelligence +1311.6710 Classical Analysis and ODEs +1311.6712 Phenomenology +1311.6713 General Physics +1311.6714 Databases +1311.6716 Computational Complexity +1311.6719 Phenomenology +1311.6725 Materials Science +1311.6728 Systems and Control +1311.6731 Experiment +1311.6732 Methodology +1311.6740 Computer Vision and Pattern Recognition +1311.6743 Phenomenology +1311.6745 Lattice +1311.6747 Analysis of PDEs +1311.6751 Robotics +1311.6752 High Energy Astrophysical Phenomena +1311.6754 Other Computer Science +1311.6755 Probability +1311.6757 Analysis of PDEs +1311.6758 Computer Vision and Pattern Recognition +1311.6761 Instrumentation and Detectors +1311.6764 Fluid Dynamics +1311.6766 +1311.6767 Complex Variables +1311.6772 Combinatorics +1311.6773 Spectral Theory +1311.6775 Mesoscale and Nanoscale Physics +1311.6776 Classical Physics +1311.6780 Earth and Planetary Astrophysics +1311.6781 +1311.6783 Probability +1311.6784 +1311.6788 Differential Geometry +1311.6789 Logic +1311.6790 History and Philosophy of Physics +1311.6791 Algebraic Geometry +1311.6806 Earth and Planetary Astrophysics +cond-mat/0601497 Other Condensed Matter +math/0701696 Complex Variables +quant-ph/0610138 +0704.0615 Populations and Evolution +0707.3764 Dynamical Systems +0806.1635 Soft Condensed Matter +0807.0094 Soft Condensed Matter +0810.3095 Statistical Mechanics +0901.3186 Analysis of PDEs +0907.3091 Cosmology and Nongalactic Astrophysics +0907.4262 Statistical Mechanics +0910.4761 Differential Geometry +1001.4220 Software Engineering +1002.1172 +1008.3365 Complex Variables +1010.5113 Social and Information Networks +1010.5119 Dynamical Systems +1011.1214 Fluid Dynamics +1011.4388 Algebraic Geometry +1102.3760 Combinatorics +1102.5420 Social and Information Networks +1104.1060 Probability +1104.4084 Symplectic Geometry +1105.1586 Combinatorics +1106.1833 Commutative Algebra +1106.4322 Solar and Stellar Astrophysics +1107.0193 Computation and Language +1107.2555 Geophysics +1107.2773 Probability +1108.1229 Dynamical Systems +1109.1849 Probability +1110.1500 Fluid Dynamics +1110.2166 Algebraic Geometry +1110.4099 Adaptation and Self-Organizing Systems +1110.5751 Superconductivity +1111.3562 Group Theory +1111.7077 Probability +1201.3595 Dynamical Systems +1202.4739 Dynamical Systems +1202.6356 +1203.0178 Differential Geometry +1203.0505 Quantum Gases +1203.6224 Group Theory +1204.4818 +1205.3041 Probability +1205.3653 Materials Science +1206.1607 High Energy Astrophysical Phenomena +1206.2038 Cryptography and Security +1206.3543 Statistics Theory +1206.5862 Statistics Theory +1207.1719 Mesoscale and Nanoscale Physics +1207.3953 Soft Condensed Matter +1207.6945 Cryptography and Security +1208.0496 +1208.1809 Analysis of PDEs +1208.2170 Number Theory +1208.2654 Formal Languages and Automata Theory +1208.2943 Systems and Control +1209.0229 Systems and Control +1209.2843 Analysis of PDEs +1209.4058 +1209.4085 +1210.0088 Metric Geometry +1210.0274 +1210.1724 Fluid Dynamics +1210.4947 Dynamical Systems +1210.5280 Earth and Planetary Astrophysics +1210.6715 +1210.7062 Probability +1210.7895 Group Theory +1210.7953 Analysis of PDEs +1211.0104 Subcellular Processes +1211.2377 +1211.3144 Group Theory +1212.0012 Strongly Correlated Electrons +1212.2703 Strongly Correlated Electrons +1212.3262 Soft Condensed Matter +1212.3586 Phenomenology +1212.6148 Computational Geometry +1301.2150 Data Analysis, Statistics and Probability +1301.2174 Disordered Systems and Neural Networks +1301.3363 Quantum Gases +1301.5318 Astrophysics of Galaxies +1301.5810 Phenomenology +1301.5931 Networking and Internet Architecture +1301.6164 Materials Science +1302.0004 Phenomenology +1302.2900 Statistical Mechanics +1302.7033 Phenomenology +1303.1199 Mesoscale and Nanoscale Physics +1303.3895 Cosmology and Nongalactic Astrophysics +1303.4207 Learning +1303.4958 Theory +1303.5254 Solar and Stellar Astrophysics +1303.5646 Phenomenology +1303.6984 Instrumentation and Methods for Astrophysics +1303.7187 +1304.2153 Strongly Correlated Electrons +1304.3808 Strongly Correlated Electrons +1304.4742 Physics and Society +1304.4757 Lattice +1304.5736 Probability +1304.6189 Data Structures and Algorithms +1304.6485 Information Theory +1305.0003 Quantum Gases +1305.0206 Adaptation and Self-Organizing Systems +1305.0427 General Physics +1305.0928 Phenomenology +1305.1407 Data Structures and Algorithms +1305.2051 Mesoscale and Nanoscale Physics +1305.2124 Phenomenology +1305.2560 +1305.3148 Theory +1305.5172 Mesoscale and Nanoscale Physics +1305.5302 Cosmology and Nongalactic Astrophysics +1305.5659 General Physics +1305.5714 +1305.6595 Cosmology and Nongalactic Astrophysics +1305.6964 +1305.7225 Cosmology and Nongalactic Astrophysics +1305.7226 Cosmology and Nongalactic Astrophysics +1306.0591 Cosmology and Nongalactic Astrophysics +1306.0972 +1306.1002 Strongly Correlated Electrons +1306.1015 General Physics +1306.1830 Phenomenology +1306.1957 Discrete Mathematics +1306.2159 Computer Vision and Pattern Recognition +1306.2263 Statistical Mechanics +1306.2318 Phenomenology +1306.2329 Phenomenology +1306.2872 Probability +1306.3024 Superconductivity +1306.4407 General Physics +1306.4470 Phenomenology +1306.4715 Phenomenology +1306.4744 Mesoscale and Nanoscale Physics +1306.4964 +1306.5396 Strongly Correlated Electrons +1306.5604 Quantum Gases +1306.5897 Phenomenology +1306.6142 +1306.6618 Phenomenology +1307.0307 Combinatorics +1307.0390 Materials Science +1307.1506 Optics +1307.1522 Strongly Correlated Electrons +1307.2067 +1307.2420 Phenomenology +1307.2633 General Physics +1307.4737 Phenomenology +1307.4773 Phenomenology +1307.4863 Spectral Theory +1307.5215 Cosmology and Nongalactic Astrophysics +1307.5953 Materials Science +1307.7315 +1307.7361 +1307.7419 Experiment +1307.7718 Statistical Mechanics +1307.8266 Cosmology and Nongalactic Astrophysics +1307.8428 Phenomenology +1308.0233 Computational Physics +1308.0297 Phenomenology +1308.1549 Astrophysics of Galaxies +1308.2339 Mesoscale and Nanoscale Physics +1308.3401 +1308.3505 Analysis of PDEs +1308.4080 Astrophysics of Galaxies +1308.4271 Astrophysics of Galaxies +1308.4926 +1308.5683 Superconductivity +1308.5973 Cosmology and Nongalactic Astrophysics +1308.6334 Experiment +1308.6699 Cosmology and Nongalactic Astrophysics +1309.0383 Geometric Topology +1309.1245 Strongly Correlated Electrons +1309.1996 History and Philosophy of Physics +1309.2497 Phenomenology +1309.3490 +1309.3541 Accelerator Physics +1309.3626 Cell Behavior +1309.4835 Probability +1309.7028 Dynamical Systems +1309.7043 Experiment +1309.7062 +1309.7460 +1309.7512 Computer Vision and Pattern Recognition +1309.7535 Algebraic Geometry +1309.7614 Probability +1309.7805 Chaotic Dynamics +1309.7980 Phenomenology +1310.0001 Differential Geometry +1310.0010 Quantum Gases +1310.0025 Experiment +1310.0031 Theory +1310.0032 Pricing of Securities +1310.0035 Populations and Evolution +1310.0038 Computer Science and Game Theory +1310.0039 Methodology +1310.0040 General Physics +1310.0041 Graphics +1310.0045 Probability +1310.0053 Fluid Dynamics +1310.0055 +1310.0057 General Finance +1310.0058 Systems and Control +1310.0061 Algebraic Geometry +1310.0062 Theory +1310.0064 Systems and Control +1310.0066 Numerical Analysis +1310.0069 Instrumentation and Methods for Astrophysics +1310.0071 High Energy Astrophysical Phenomena +1310.0072 High Energy Astrophysical Phenomena +1310.0073 High Energy Astrophysical Phenomena +1310.0074 Instrumentation and Methods for Astrophysics +1310.0079 Materials Science +1310.0080 Mesoscale and Nanoscale Physics +1310.0082 Astrophysics of Galaxies +1310.0087 +1310.0091 Experiment +1310.0095 Algebraic Topology +1310.0096 Algebraic Topology +1310.0098 Instrumentation and Detectors +1310.0100 Hardware Architecture +1310.0101 Information Theory +1310.0105 Algebraic Topology +1310.0106 Optics +1310.0110 Information Theory +1310.0113 Group Theory +1310.0116 Networking and Internet Architecture +1310.0119 Experiment +1310.0120 Information Theory +1310.0121 Group Theory +1310.0123 Optics +1310.0125 Experiment +1310.0128 Functional Analysis +1310.0132 Cryptography and Security +1310.0133 Optimization and Control +1310.0135 Strongly Correlated Electrons +1310.0138 High Energy Astrophysical Phenomena +1310.0140 Experiment +1310.0143 High Energy Astrophysical Phenomena +1310.0144 High Energy Astrophysical Phenomena +1310.0145 Systems and Control +1310.0149 Solar and Stellar Astrophysics +1310.0150 Statistics Theory +1310.0152 Software Engineering +1310.0155 Exactly Solvable and Integrable Systems +1310.0157 Phenomenology +1310.0164 Phenomenology +1310.0165 Lattice +1310.0171 Computer Vision and Pattern Recognition +1310.0172 Rings and Algebras +1310.0173 Methodology +1310.0177 Computer Science and Game Theory +1310.0178 Data Structures and Algorithms +1310.0182 Probability +1310.0183 Instrumentation and Detectors +1310.0185 Discrete Mathematics +1310.0189 Solar and Stellar Astrophysics +1310.0194 Analysis of PDEs +1310.0195 Analysis of PDEs +1310.0196 Combinatorics +1310.0199 Combinatorics +1310.0205 Strongly Correlated Electrons +1310.0209 Analysis of PDEs +1310.0212 Accelerator Physics +1310.0213 Other Quantitative Biology +1310.0215 Materials Science +1310.0216 Networking and Internet Architecture +1310.0217 Phenomenology +1310.0221 Strongly Correlated Electrons +1310.0222 Phenomenology +1310.0234 Information Theory +1310.0238 Fluid Dynamics +1310.0242 Software Engineering +1310.0246 Other Condensed Matter +1310.0249 Algebraic Geometry +1310.0250 Information Retrieval +1310.0254 Probability +1310.0256 Analysis of PDEs +1310.0259 +1310.0260 Methodology +1310.0261 Accelerator Physics +1310.0263 Logic in Computer Science +1310.0266 Atmospheric and Oceanic Physics +1310.0283 Plasma Physics +1310.0288 Experiment +1310.0289 Experiment +1310.0290 Accelerator Physics +1310.0296 Systems and Control +1310.0301 Probability +1310.0302 Computer Vision and Pattern Recognition +1310.0305 Computer Vision and Pattern Recognition +1310.0306 Computer Vision and Pattern Recognition +1310.0308 Computer Vision and Pattern Recognition +1310.0310 Computer Vision and Pattern Recognition +1310.0311 Computer Vision and Pattern Recognition +1310.0314 Computer Vision and Pattern Recognition +1310.0315 Computer Vision and Pattern Recognition +1310.0316 Computer Vision and Pattern Recognition +1310.0317 Computer Vision and Pattern Recognition +1310.0320 Fluid Dynamics +1310.0324 +1310.0326 +1310.0327 Solar and Stellar Astrophysics +1310.0329 Fluid Dynamics +1310.0330 High Energy Astrophysical Phenomena +1310.0332 Soft Condensed Matter +1310.0333 Methodology +1310.0334 Experiment +1310.0335 Analysis of PDEs +1310.0337 Number Theory +1310.0338 Complex Variables +1310.0340 Discrete Mathematics +1310.0342 Materials Science +1310.0344 Soft Condensed Matter +1310.0346 Networking and Internet Architecture +1310.0350 Lattice +1310.0356 Phenomenology +1310.0357 Differential Geometry +1310.0361 +1310.0362 Analysis of PDEs +1310.0363 Phenomenology +1310.0365 Computer Vision and Pattern Recognition +1310.0371 Systems and Control +1310.0379 Methodology +1310.0383 +1310.0396 General Topology +1310.0397 Instrumentation and Detectors +1310.0398 Computational Complexity +1310.0401 Probability +1310.0402 Systems and Control +1310.0404 Probability +1310.0407 Operator Algebras +1310.0408 Phenomenology +1310.0415 Disordered Systems and Neural Networks +1310.0416 Commutative Algebra +1310.0418 Classical Analysis and ODEs +1310.0419 Phenomenology +1310.0421 +1310.0422 Analysis of PDEs +1310.0426 Phenomenology +1310.0432 Optimization and Control +1310.0434 Lattice +1310.0436 Mesoscale and Nanoscale Physics +1310.0437 Atomic Physics +1310.0441 Cryptography and Security +cond-mat/0202240 Materials Science +cond-mat/0209458 Materials Science +0708.1627 Methodology +0710.0924 General Physics +0803.1597 Combinatorics +0806.0388 +0903.2173 Algebraic Geometry +0910.4795 +0912.2114 Geometric Topology +1001.2019 Optimization and Control +1003.5903 Geometric Topology +1004.4127 Combinatorics +1009.2838 Probability +1011.4151 Probability +1105.0875 Machine Learning +1105.1700 Data Analysis, Statistics and Probability +1106.1095 Combinatorics +1111.2008 Data Analysis, Statistics and Probability +1201.3830 +1201.6104 Group Theory +1202.3881 Materials Science +1202.6662 Algebraic Geometry +1203.0190 Dynamical Systems +1203.4114 +1204.1936 Combinatorics +1204.2178 +1205.1150 Statistics Theory +1205.2119 Commutative Algebra +1206.2523 Data Structures and Algorithms +1208.0823 Pattern Formation and Solitons +1208.6120 High Energy Astrophysical Phenomena +1208.6519 Plasma Physics +1209.3851 +1209.5700 Mesoscale and Nanoscale Physics +1210.0529 General Physics +1210.0838 Lattice +1210.1814 Applications +1210.2787 Strongly Correlated Electrons +1210.3023 Methodology +1210.4422 Mesoscale and Nanoscale Physics +1210.6463 +1210.7052 Methodology +1210.7270 Commutative Algebra +1210.7389 Numerical Analysis +1211.0538 Phenomenology +1211.3353 Strongly Correlated Electrons +1211.5630 Number Theory +1211.6954 Cosmology and Nongalactic Astrophysics +1211.7275 Statistical Mechanics +1212.0391 +1212.2312 Fluid Dynamics +1212.2586 Combinatorics +1212.2978 Phenomenology +1212.3804 Disordered Systems and Neural Networks +1212.5012 Mesoscale and Nanoscale Physics +1212.5425 Probability +1301.0905 Atomic Physics +1301.1465 Hardware Architecture +1301.4320 Statistics Theory +1301.4982 Strongly Correlated Electrons +1301.5081 Statistical Mechanics +1301.5971 +1302.1029 Probability +1302.1791 Superconductivity +1302.1895 Materials Science +1302.2866 Mesoscale and Nanoscale Physics +1302.3242 Classical Analysis and ODEs +1302.3921 Information Theory +1302.4879 Statistical Mechanics +1302.5353 Theory +1302.5355 Mesoscale and Nanoscale Physics +1302.6772 Mesoscale and Nanoscale Physics +1302.6908 Complex Variables +1303.0334 Quantum Gases +1303.0870 Phenomenology +1303.2522 Mesoscale and Nanoscale Physics +1303.2698 Atmospheric and Oceanic Physics +1303.3025 +1303.3601 Differential Geometry +1303.3637 +1303.3821 +1303.5560 Discrete Mathematics +1304.0779 Theory +1304.0811 Mesoscale and Nanoscale Physics +1304.1727 General Topology +1304.3367 +1304.4077 Methodology +1304.5860 Superconductivity +1304.6275 +1304.6327 Superconductivity +1304.6925 Logic in Computer Science +1305.1296 Superconductivity +1305.2280 Materials Science +1305.2950 Space Physics +1305.3453 Materials Science +1305.4458 Lattice +1305.4716 +1305.5016 Materials Science +1305.5947 Representation Theory +1305.6259 Genomics +1305.6496 Materials Science +1305.6718 Solar and Stellar Astrophysics +1305.6734 Mesoscale and Nanoscale Physics +1305.7055 Phenomenology +1305.7079 Classical Physics +1305.7117 Optimization and Control +1305.7125 Neurons and Cognition +1305.7250 Information Theory +1305.7252 Information Theory +1305.7254 Artificial Intelligence +1305.7255 Machine Learning +1305.7257 Experiment +1305.7262 Dynamical Systems +1305.7266 Phenomenology +1305.7267 +1305.7271 Neurons and Cognition +1305.7273 High Energy Astrophysical Phenomena +1305.7274 Optics +1305.7276 Functional Analysis +1305.7280 Differential Geometry +1305.7284 Applications +1305.7286 Combinatorics +1305.7288 Algebraic Geometry +1305.7291 Symplectic Geometry +1305.7294 Information Theory +1305.7297 Differential Geometry +1305.7303 Populations and Evolution +1305.7305 Combinatorics +1305.7307 Quantum Algebra +1305.7309 Portfolio Management +1305.7311 Computer Vision and Pattern Recognition +1305.7313 Materials Science +1305.7315 Functional Analysis +1305.7316 Digital Libraries +1305.7322 +1305.7329 +1305.7339 Rings and Algebras +1305.7346 +1305.7348 Probability +1305.7349 Analysis of PDEs +1305.7351 Computational Geometry +1305.7352 Complex Variables +1305.7355 Mesoscale and Nanoscale Physics +1305.7356 Phenomenology +1305.7358 Fluid Dynamics +1305.7360 Logic in Computer Science +1305.7362 Optics +1305.7366 Solar and Stellar Astrophysics +1305.7369 General Topology +1305.7377 Phenomenology +1305.7379 Theory +1305.7381 History and Philosophy of Physics +1305.7393 Information Theory +1305.7401 +1305.7403 Distributed, Parallel, and Cluster Computing +1305.7406 Statistics Theory +1305.7414 Category Theory +1305.7416 Cryptography and Security +1305.7422 Computational Engineering, Finance, and Science +1305.7423 Soft Condensed Matter +1305.7424 Computational Engineering, Finance, and Science +1305.7427 Instrumentation and Detectors +1305.7430 Social and Information Networks +1305.7432 Neural and Evolutionary Computing +1305.7434 Neural and Evolutionary Computing +1305.7435 Tissues and Organs +1305.7437 Computational Engineering, Finance, and Science +1305.7438 Physics and Society +1305.7442 Theory +1305.7448 Data Structures and Algorithms +1305.7453 +1305.7454 Learning +1305.7458 Computational Engineering, Finance, and Science +1305.7465 Neural and Evolutionary Computing +1305.7466 Networking and Internet Architecture +1305.7467 Cryptography and Security +1305.7470 Theory +1305.7471 Computational Engineering, Finance, and Science +1305.7473 Combinatorics +1305.7474 Combinatorics +1305.7476 Neural and Evolutionary Computing +1305.7482 Cryptography and Security +1305.7484 Robotics +1305.7488 Cryptography and Security +1305.7489 +1305.7497 Soft Condensed Matter +1305.7501 Logic +1305.7502 Algebraic Geometry +1305.7507 Mesoscale and Nanoscale Physics +1305.7514 Metric Geometry +gr-qc/0603106 +math/0008204 Geometric Topology +math/0106253 Geometric Topology +math/9806113 Geometric Topology +math/9806114 Geometric Topology +physics/0602078 Classical Physics +0709.3925 Algebraic Topology +0909.0522 Differential Geometry +1003.2652 Quantum Algebra +1007.3711 Classical Analysis and ODEs +1008.5264 Group Theory +1011.5720 Algebraic Geometry +1103.1439 Information Theory +1104.4132 Differential Geometry +1104.4536 Geometric Topology +1105.4404 Dynamical Systems +1107.0733 Theory +1107.1428 Phenomenology +1108.5223 Group Theory +1109.3423 K-Theory and Homology +1111.0222 Phenomenology +1112.4806 Strongly Correlated Electrons +1201.3426 Quantum Algebra +1201.4901 Algebraic Geometry +1202.4119 Algebraic Geometry +1203.3422 Applications +1204.4228 Statistics Theory +1205.3255 Numerical Analysis +1205.6632 Combinatorics +1206.5629 Probability +1207.1014 Phenomenology +1207.1504 Superconductivity +1207.5219 Classical Analysis and ODEs +1208.1006 Theory +1208.4252 Phenomenology +1209.0769 Strongly Correlated Electrons +1209.0942 Number Theory +1210.3432 Phenomenology +1210.4042 +1210.5256 +1211.1542 Phenomenology +1211.1720 Fluid Dynamics +1211.2248 +1211.3201 Computer Science and Game Theory +1211.3865 Strongly Correlated Electrons +1211.4747 Commutative Algebra +1211.4925 Statistical Mechanics +1211.7224 +1212.1223 Networking and Internet Architecture +1212.2688 Group Theory +1212.6465 Information Theory +1301.1377 Materials Science +1301.3444 Phenomenology +1301.3445 Phenomenology +1301.3455 Graphics +1301.4223 Strongly Correlated Electrons +1301.4304 Mesoscale and Nanoscale Physics +1301.4966 Atomic Physics +1301.5224 Atomic Physics +1301.5344 Phenomenology +1301.7585 Materials Science +1302.1225 Optimization and Control +1302.1711 Phenomenology +1302.2659 Solar and Stellar Astrophysics +1302.2886 Analysis of PDEs +1302.3704 Data Analysis, Statistics and Probability +1302.3911 +1302.3988 Computer Science and Game Theory +1302.5108 Differential Geometry +1302.5122 Cryptography and Security +1303.0195 Theory +1303.1408 +1303.1587 Strongly Correlated Electrons +1303.2665 Theory +1303.3502 Physics and Society +1303.4750 Theory +1303.5046 Statistics Theory +1303.5389 Analysis of PDEs +1304.0748 +1304.0894 Cosmology and Nongalactic Astrophysics +1304.1320 Phenomenology +1304.1648 Optimization and Control +1304.1713 Probability +1304.1784 Atmospheric and Oceanic Physics +1304.3300 +1304.3340 +1304.3986 Algebraic Topology +1304.4133 Atomic Physics +1304.4504 +1304.4663 Superconductivity +1304.4911 Materials Science +1304.4982 +1304.5172 Theory +1304.5925 +1304.6019 Materials Science +1304.6330 +1304.6407 Theory +1304.7234 Strongly Correlated Electrons +1304.7846 +1305.0183 Mesoscale and Nanoscale Physics +1305.1100 Phenomenology +1305.1241 Phenomenology +1305.1565 Theory +1305.1575 Experiment +1305.2281 Superconductivity +1305.2357 Physics and Society +1305.2705 Superconductivity +1305.3525 Theory +1305.4876 Theory +1305.4906 Number Theory +1305.5153 Biological Physics +1305.5381 +1305.5513 +1305.6150 Phenomenology +1305.6230 Statistical Mechanics +1305.6437 +1305.6443 Phenomenology +1305.6584 Materials Science +1305.7114 Networking and Internet Architecture +1305.7386 Phenomenology +1306.1225 Statistical Mechanics +1306.2066 Phenomenology +1306.2320 +1306.2349 Phenomenology +1306.2532 Lattice +1306.2625 Phenomenology +1306.3441 Phenomenology +1306.3442 Mesoscale and Nanoscale Physics +1306.3516 Strongly Correlated Electrons +1306.3678 Strongly Correlated Electrons +1306.3812 Instrumentation and Methods for Astrophysics +1306.4216 Strongly Correlated Electrons +1306.4251 Strongly Correlated Electrons +1306.4650 Machine Learning +1306.4852 Phenomenology +1306.5344 Mesoscale and Nanoscale Physics +1306.5750 Theory +1306.6088 Phenomenology +1306.6212 Experiment +1306.6645 Theory +1307.0257 +1307.0782 Phenomenology +1307.1337 Genomics +1307.1519 Strongly Correlated Electrons +1307.2729 Differential Geometry +1307.2803 Statistical Mechanics +1307.5005 +1307.6056 Lattice +1307.6511 Experiment +1307.6764 Phenomenology +1307.7549 Earth and Planetary Astrophysics +1307.8296 Soft Condensed Matter +1308.0849 Atomic Physics +1308.1043 +1308.1816 Strongly Correlated Electrons +1308.3193 Combinatorics +1308.3923 Logic in Computer Science +1308.5816 Solar and Stellar Astrophysics +1309.0934 +1309.1049 Distributed, Parallel, and Cluster Computing +1309.1172 Solar and Stellar Astrophysics +1309.1334 Databases +1309.1496 Geophysics +1309.1649 Computation and Language +1309.1654 Neurons and Cognition +1309.1822 Representation Theory +1309.2094 Optimization and Control +1309.2141 Spectral Theory +1309.2253 Fluid Dynamics +1309.2298 High Energy Astrophysical Phenomena +1309.2299 Theory +1309.2303 Machine Learning +1309.2304 Algebraic Geometry +1309.2311 +1309.2312 Instrumentation and Detectors +1309.2322 Fluid Dynamics +1309.2325 Fluid Dynamics +1309.2328 Distributed, Parallel, and Cluster Computing +1309.2333 Earth and Planetary Astrophysics +1309.2334 Cryptography and Security +1309.2339 Software Engineering +1309.2341 Analysis of PDEs +1309.2343 Information Theory +1309.2344 Probability +1309.2345 Fluid Dynamics +1309.2350 Learning +1309.2351 Artificial Intelligence +1309.2352 Dynamical Systems +1309.2355 Systems and Control +1309.2357 Computers and Society +1309.2359 Multimedia +1309.2360 High Energy Astrophysical Phenomena +1309.2362 General Physics +1309.2364 Analysis of PDEs +1309.2367 Commutative Algebra +1309.2368 Exactly Solvable and Integrable Systems +1309.2371 Databases +1309.2377 Commutative Algebra +1309.2379 High Energy Astrophysical Phenomena +1309.2382 Neurons and Cognition +1309.2383 Pricing of Securities +1309.2385 Analysis of PDEs +1309.2387 Other Computer Science +1309.2390 Soft Condensed Matter +1309.2392 Solar and Stellar Astrophysics +1309.2395 Plasma Physics +1309.2398 Molecular Networks +1309.2399 Discrete Mathematics +1309.2400 Mesoscale and Nanoscale Physics +1309.2408 Analysis of PDEs +1309.2409 Digital Libraries +1309.2410 High Energy Astrophysical Phenomena +1309.2412 Optics +1309.2413 Digital Libraries +1309.2416 Statistical Finance +1309.2417 Mesoscale and Nanoscale Physics +1309.2418 Instrumentation and Methods for Astrophysics +1309.2420 Combinatorics +1309.2421 K-Theory and Homology +1309.2426 Distributed, Parallel, and Cluster Computing +1309.2428 Genomics +1309.2431 Statistics Theory +1309.2433 Astrophysics of Galaxies +1309.2435 Methodology +1309.2437 Astrophysics of Galaxies +1309.2438 Group Theory +1309.2441 Materials Science +1309.2454 +1309.2458 Hardware Architecture +1309.2459 Differential Geometry +1309.2460 Optimization and Control +1309.2471 Computation and Language +1309.2473 Information Theory +1309.2475 Representation Theory +1309.2476 Data Structures and Algorithms +1309.2481 Fluid Dynamics +1309.2482 Soft Condensed Matter +1309.2485 Software Engineering +1309.2486 Digital Libraries +1309.2487 Differential Geometry +1309.2493 Number Theory +1309.2494 Analysis of PDEs +1309.2500 Representation Theory +1309.2503 High Energy Astrophysical Phenomena +1309.2504 Mesoscale and Nanoscale Physics +1309.2505 Machine Learning +1309.2506 Computer Vision and Pattern Recognition +1309.2508 Phenomenology +1309.2511 Programming Languages +1309.2517 Databases +1309.2522 Numerical Analysis +1309.2523 Materials Science +1309.2524 Algebraic Topology +1309.2528 Differential Geometry +1309.2529 Computer Science and Game Theory +1309.2530 Lattice +1309.2531 Analysis of PDEs +1309.2533 Hardware Architecture +1309.2534 Number Theory +1309.2535 Analysis of PDEs +1309.2536 K-Theory and Homology +1309.2543 Networking and Internet Architecture +1309.2544 +1309.2546 Digital Libraries +1309.2555 Phenomenology +1309.2559 Earth and Planetary Astrophysics +1309.2562 Dynamical Systems +1309.2563 Statistical Mechanics +1309.2566 Probability +1309.2567 Rings and Algebras +1309.2569 Group Theory +1309.2574 Systems and Control +1309.2582 Theory +1309.2584 Statistical Mechanics +1309.2589 Probability +1309.2590 Soft Condensed Matter +1309.2592 History and Philosophy of Physics +1309.2593 Learning +1309.2595 Optics +1309.2597 Databases +1309.2599 Probability +1309.2600 Populations and Evolution +1309.2601 Differential Geometry +1309.2602 Accelerator Physics +1309.2609 Neurons and Cognition +1309.2612 Functional Analysis +1309.2618 Quantitative Methods +1309.2622 Populations and Evolution +1309.2626 Probability +1309.2627 Applications +cond-mat/0302468 Statistical Mechanics +cond-mat/0302470 Statistical Mechanics +cond-mat/0312404 Disordered Systems and Neural Networks +cond-mat/0312406 Statistical Mechanics +cond-mat/0312560 Statistical Mechanics +hep-th/0509186 Theory +math/0601221 Algebraic Topology +math/0604514 Algebraic Topology +nlin/0312040 Chaotic Dynamics +physics/0512124 Physics and Society +physics/0601106 Physics and Society +physics/0603139 Physics and Society +0704.0768 +0708.3611 Chemical Physics +0811.4489 Computational Geometry +0906.3413 Number Theory +0909.0909 Atomic Physics +0910.3055 Data Analysis, Statistics and Probability +0912.0173 Number Theory +1002.0490 +1003.1094 Number Theory +1003.3536 Computational Geometry +1006.0814 Data Analysis, Statistics and Probability +1008.2139 +1008.2151 +1008.3475 Number Theory +1008.5141 Functional Analysis +1009.5249 Computer Vision and Pattern Recognition +1011.1455 Combinatorics +1101.1612 Algebraic Geometry +1102.1797 Atomic Physics +1102.5595 Materials Science +1103.5663 +1105.0266 Pattern Formation and Solitons +1108.0280 +1108.0806 +1108.4320 Atomic Physics +1109.1592 Combinatorics +1110.2159 +1201.0907 +1201.4273 Astrophysics of Galaxies +1201.6194 Number Theory +1201.6195 Number Theory +1202.3905 Pattern Formation and Solitons +1202.5061 Probability +1202.5802 Number Theory +1203.2029 Numerical Analysis +1203.5483 Machine Learning +1203.5736 +1204.0047 Learning +1204.2227 +1204.2431 Number Theory +1204.3681 +1204.6003 +1207.2091 Pattern Formation and Solitons +1207.5080 Strongly Correlated Electrons +1208.2204 +1208.3128 Superconductivity +1208.4511 Data Structures and Algorithms +1208.6370 Mesoscale and Nanoscale Physics +1209.0717 Number Theory +1209.2911 Genomics +1209.4319 Phenomenology +1210.1957 Mesoscale and Nanoscale Physics +1210.2007 Materials Science +1210.2376 Physics and Society +1210.7122 Solar and Stellar Astrophysics +1210.8294 Mesoscale and Nanoscale Physics +1211.1455 Phenomenology +1211.1715 Symplectic Geometry +1211.2441 Information Theory +1211.4077 Systems and Control +1211.6019 Representation Theory +1212.1114 +1212.1525 Numerical Analysis +1212.1647 Materials Science +1212.2180 Analysis of PDEs +1212.3111 Statistics Theory +1212.3703 Adaptation and Self-Organizing Systems +1212.4139 Phenomenology +1212.4807 Quantum Gases +1301.0954 Information Theory +1301.4207 General Finance +1301.4221 Phenomenology +1301.4346 Pattern Formation and Solitons +1301.5927 Methodology +1301.7073 Theory +1301.7504 Information Theory +1301.7579 Soft Condensed Matter +1302.2761 Chaotic Dynamics +1302.3046 Strongly Correlated Electrons +1302.3131 Soft Condensed Matter +1302.3492 Information Theory +1302.3493 Optics +1302.3617 Quantum Gases +1302.4022 Phenomenology +1302.6223 +1302.6641 Data Structures and Algorithms +1303.1002 Materials Science +1303.1244 Phenomenology +1303.1896 Strongly Correlated Electrons +1303.3576 +1303.3694 Materials Science +1303.4350 +1303.4863 Phenomenology +1303.6121 Astrophysics of Galaxies +1303.6284 Cosmology and Nongalactic Astrophysics +1303.6353 Strongly Correlated Electrons +1303.7052 Quantum Gases +1304.0921 Phenomenology +1304.1559 Astrophysics of Galaxies +1304.1762 Classical Analysis and ODEs +1304.1905 Number Theory +1304.2201 +1304.4059 +1304.4209 +1304.4340 Quantum Gases +1304.6013 Strongly Correlated Electrons +1304.7369 Optics +1305.1105 Cosmology and Nongalactic Astrophysics +1305.2019 Optics +1305.2384 Numerical Analysis +1305.2723 Statistical Mechanics +1305.5155 Statistical Mechanics +1305.5507 Atomic Physics +1305.6411 Differential Geometry +1305.6657 Methodology +1305.6744 Classical Physics +1306.0767 Group Theory +1306.1107 Cosmology and Nongalactic Astrophysics +1306.2106 Cosmology and Nongalactic Astrophysics +1306.3781 Mesoscale and Nanoscale Physics +1306.4144 Networking and Internet Architecture +1306.4396 +1306.4979 +1306.5022 Accelerator Physics +1306.6857 Plasma Physics +1306.6889 Instrumentation and Detectors +1307.1125 Number Theory +1307.1512 Differential Geometry +1307.1957 Differential Geometry +1307.2050 Geometric Topology +1307.2604 General Topology +1307.2667 Quantum Algebra +1307.3435 Artificial Intelligence +1307.3523 Functional Analysis +1307.3623 Differential Geometry +1307.3882 Functional Analysis +1307.3932 Materials Science +1307.3982 Physics and Society +1307.4002 Analysis of PDEs +1307.4045 Medical Physics +1307.4076 Cryptography and Security +1307.4077 Computers and Society +1307.4093 Instrumentation and Methods for Astrophysics +1307.4094 Astrophysics of Galaxies +1307.4097 Optimization and Control +1307.4110 Analysis of PDEs +1307.4111 Functional Analysis +1307.4114 Representation Theory +1307.4115 Solar and Stellar Astrophysics +1307.4118 Populations and Evolution +1307.4121 Dynamical Systems +1307.4124 Networking and Internet Architecture +1307.4126 Superconductivity +1307.4127 Networking and Internet Architecture +1307.4129 Networking and Internet Architecture +1307.4132 Applications +1307.4137 Populations and Evolution +1307.4139 +1307.4140 Geophysics +1307.4142 Rings and Algebras +1307.4144 +1307.4151 Mesoscale and Nanoscale Physics +1307.4152 Superconductivity +1307.4155 Combinatorics +1307.4156 Learning +1307.4158 +1307.4162 Computer Science and Game Theory +1307.4163 Solar and Stellar Astrophysics +1307.4164 Data Structures and Algorithms +1307.4165 Operating Systems +1307.4167 Operating Systems +1307.4173 Probability +1307.4174 Software Engineering +1307.4175 Superconductivity +1307.4177 Instrumentation and Methods for Astrophysics +1307.4178 Superconductivity +1307.4184 +1307.4186 Neural and Evolutionary Computing +1307.4189 Instrumentation and Methods for Astrophysics +1307.4190 High Energy Astrophysical Phenomena +1307.4191 Combinatorics +1307.4193 +1307.4197 Algebraic Geometry +1307.4201 Operator Algebras +1307.4205 Astrophysics of Galaxies +1307.4210 +1307.4214 Computational Physics +1307.4221 Networking and Internet Architecture +1307.4222 Logic +1307.4230 Computers and Society +1307.4232 Accelerator Physics +1307.4238 +1307.4243 Astrophysics of Galaxies +1307.4244 Theory +1307.4249 Probability +1307.4257 Data Structures and Algorithms +1307.4259 Distributed, Parallel, and Cluster Computing +1307.4264 Social and Information Networks +1307.4266 Earth and Planetary Astrophysics +1307.4267 Classical Analysis and ODEs +1307.4269 Statistical Mechanics +1307.4271 Strongly Correlated Electrons +1307.4274 Neural and Evolutionary Computing +1307.4275 Instrumentation and Methods for Astrophysics +1307.4277 Classical Analysis and ODEs +1307.4283 Strongly Correlated Electrons +1307.4288 Commutative Algebra +1307.4291 Genomics +1307.4292 Physics and Society +1307.4293 +1307.4295 +1307.4298 Logic +1307.4299 Computation and Language +1307.4300 Computation and Language +1307.4301 Instrumentation and Detectors +1307.4302 Optimization and Control +1307.4303 Disordered Systems and Neural Networks +1307.4306 Materials Science +1307.4310 Astrophysics of Galaxies +1307.4311 Numerical Analysis +1307.4315 Accelerator Physics +1307.4320 Numerical Analysis +1307.4321 Symplectic Geometry +1307.4329 Digital Libraries +1307.4330 Numerical Analysis +1307.4332 Optimization and Control +1307.4345 Popular Physics +1307.4353 Optics +1307.4356 High Energy Astrophysical Phenomena +1307.4362 Biological Physics +1307.4363 Symplectic Geometry +1307.4364 Analysis of PDEs +1307.4372 Number Theory +1307.4374 Mesoscale and Nanoscale Physics +1307.4377 Solar and Stellar Astrophysics +1307.4380 Computers and Society +1307.4382 Functional Analysis +1307.4383 Functional Analysis +1307.4385 Functional Analysis +1307.4386 Functional Analysis +1307.4387 Functional Analysis +1307.4392 Probability +math/0108119 General Mathematics +quant-ph/0409197 +0706.3282 Quantum Algebra +0711.1392 Other Condensed Matter +0803.3957 Theory +0804.1654 Algebraic Geometry +0806.1339 Differential Geometry +0806.3720 +0807.2534 Materials Science +0809.3730 +0901.4784 Computation and Language +0904.2547 Analysis of PDEs +0905.3244 +0910.1784 Probability +0911.0177 +0912.3446 Combinatorics +1001.2033 Spectral Theory +1001.3526 Statistical Mechanics +1004.0133 Chemical Physics +1004.0201 Chemical Physics +1004.3176 Functional Analysis +1005.0556 Statistical Mechanics +1006.1860 Methodology +1007.1741 Spectral Theory +1007.5078 Representation Theory +1008.4085 General Physics +1009.0473 Probability +1009.0932 Optimization and Control +1009.1191 Statistical Mechanics +1009.1569 +1010.0351 Representation Theory +1010.2324 Algebraic Geometry +1011.0642 Classical Analysis and ODEs +1011.1775 Classical Analysis and ODEs +1012.2424 Mesoscale and Nanoscale Physics +1012.5377 Operator Algebras +1101.3294 +1101.4612 +1102.2565 Probability +1102.4597 Category Theory +1102.4997 Strongly Correlated Electrons +1103.1236 +1103.2616 Phenomenology +1104.0784 Probability +1104.1028 Soft Condensed Matter +1104.2232 Number Theory +1105.3533 Optics +1106.0831 Information Theory +1106.3993 Strongly Correlated Electrons +1107.0463 Spectral Theory +1107.2766 Statistics Theory +1107.4461 Phenomenology +1107.4575 Theory +1108.1167 Portfolio Management +1108.4488 Optics +1108.5442 Statistical Mechanics +1109.1951 Computational Complexity +1110.1751 Probability +1110.1890 Classical Analysis and ODEs +1110.2231 +1110.4204 +1110.4370 Cosmology and Nongalactic Astrophysics +1110.4372 Cosmology and Nongalactic Astrophysics +1110.4694 +1110.6114 +1111.2557 Pattern Formation and Solitons +1111.3913 +1112.1653 Combinatorics +1112.5218 Populations and Evolution +1201.0175 Statistics Theory +1201.2755 Complex Variables +1201.3427 +1201.3498 Computer Science and Game Theory +1201.4152 Probability +1201.5076 Applications +1202.1478 Cosmology and Nongalactic Astrophysics +1202.5130 Machine Learning +1202.6504 Machine Learning +1203.1066 Differential Geometry +1203.2671 Phenomenology +1203.2712 +1203.4481 Numerical Analysis +1203.6398 Theory +1204.0333 Strongly Correlated Electrons +1204.0599 Optics +1204.0644 Combinatorics +1204.2123 Mesoscale and Nanoscale Physics +1204.4259 Operator Algebras +1204.6113 Fluid Dynamics +1204.6708 Phenomenology +1205.0523 Operator Algebras +1205.0994 +1205.2686 Combinatorics +1205.3556 +1205.3629 Soft Condensed Matter +1205.4340 Combinatorics +1205.5211 +1205.6474 Cosmology and Nongalactic Astrophysics +1206.2707 Statistical Mechanics +1206.3938 General Physics +1206.4333 Superconductivity +1206.5949 General Topology +1206.6299 Chemical Physics +1206.6620 Instrumentation and Methods for Astrophysics +1207.0584 Geometric Topology +1207.0740 Phenomenology +1207.1331 Mesoscale and Nanoscale Physics +1207.1614 Physics and Society +1207.2123 Atomic Physics +1207.2671 Number Theory +1207.4548 Mesoscale and Nanoscale Physics +1207.4747 Learning +1207.5185 Probability +1207.5641 Strongly Correlated Electrons +1207.5795 Phenomenology +1207.6131 +1207.6694 Mesoscale and Nanoscale Physics +1208.0173 +1208.0232 +1208.0331 Cosmology and Nongalactic Astrophysics +1208.1062 Phenomenology +1208.1523 +1208.2581 Fluid Dynamics +1208.3188 Atomic Physics +1208.4772 Numerical Analysis +1209.0220 Rings and Algebras +1209.1126 Quantum Gases +1209.2611 Statistical Mechanics +1209.3660 Materials Science +1209.3880 Materials Science +1209.3923 Plasma Physics +1209.4103 Statistical Mechanics +1209.4296 High Energy Astrophysical Phenomena +1209.5026 Applications +1209.5731 High Energy Astrophysical Phenomena +1209.5914 Phenomenology +1209.6358 Phenomenology +1209.6472 Soft Condensed Matter +1210.0082 Popular Physics +1210.0375 Numerical Analysis +1210.0800 Mathematical Software +1210.1212 Mesoscale and Nanoscale Physics +1210.1481 Strongly Correlated Electrons +1210.2353 +1210.2668 Superconductivity +1210.3436 General Physics +1210.3744 Applications +1210.3745 Applications +1210.4080 Superconductivity +1210.4724 General Physics +1210.4834 Quantum Gases +1210.5022 Biological Physics +1210.6739 Number Theory +1210.7119 Combinatorics +1210.7975 Phenomenology +1211.0248 Dynamical Systems +1211.0380 +1211.0387 Chemical Physics +1211.1122 Astrophysics of Galaxies +1211.1281 Quantitative Methods +1211.1605 Lattice +1211.1916 General Physics +1211.2470 Quantum Gases +1211.3232 Analysis of PDEs +1211.3788 Instrumentation and Detectors +1211.4302 +1211.5000 Phenomenology +1211.5919 Differential Geometry +1211.6066 Combinatorics +1211.6409 Artificial Intelligence +1212.1496 Machine Learning +1212.1935 Materials Science +1212.3019 Soft Condensed Matter +1212.3100 Fluid Dynamics +1212.3384 Superconductivity +1212.3479 Differential Geometry +1212.3652 Phenomenology +1212.3751 +1212.4044 Superconductivity +1212.4197 Experiment +1212.4425 Solar and Stellar Astrophysics +1212.4613 Data Structures and Algorithms +1212.4926 Astrophysics of Galaxies +1212.4930 Other Computer Science +1212.4947 Dynamical Systems +1212.4990 +1212.5716 Phenomenology +1212.5790 Cosmology and Nongalactic Astrophysics +1212.6133 Soft Condensed Matter +1212.6240 Algebraic Geometry +1212.6612 Cosmology and Nongalactic Astrophysics +1301.0031 K-Theory and Homology +1301.0239 Social and Information Networks +1301.0349 Complex Variables +1301.0703 Accelerator Physics +1301.0765 Other Statistics +1301.0897 Data Analysis, Statistics and Probability +1301.1006 +1301.1028 Combinatorics +1301.1118 Algebraic Geometry +1301.1198 Solar and Stellar Astrophysics +1301.1233 +1301.1280 Geophysics +1301.1667 Probability +1301.1993 Classical Analysis and ODEs +1301.2040 Mesoscale and Nanoscale Physics +1301.2049 High Energy Astrophysical Phenomena +1301.2156 Geophysics +1301.2479 Information Theory +1301.2509 Experiment +1301.2516 +1301.2606 Functional Analysis +1301.2607 Lattice +1301.2616 +1301.2618 Operator Algebras +1301.2620 Soft Condensed Matter +1301.2622 Complex Variables +1301.2626 Data Structures and Algorithms +1301.2629 Information Theory +1301.2632 +1301.2636 Classical Analysis and ODEs +1301.2638 Neural and Evolutionary Computing +1301.2646 Lattice +1301.2647 Algebraic Topology +1301.2648 Information Theory +1301.2649 Distributed, Parallel, and Cluster Computing +1301.2652 Differential Geometry +1301.2654 Applications +1301.2655 Learning +1301.2657 Superconductivity +1301.2658 Geophysics +1301.2659 Learning +1301.2660 Materials Science +1301.2662 Computer Science and Game Theory +1301.2663 Computer Science and Game Theory +1301.2667 Exactly Solvable and Integrable Systems +1301.2673 Experiment +1301.2687 Analysis of PDEs +1301.2688 Algebraic Topology +1301.2689 Networking and Internet Architecture +1301.2693 Chemical Physics +1301.2696 Information Theory +1301.2697 Information Theory +1301.2698 Social and Information Networks +1301.2701 Optics +1301.2702 Probability +1301.2705 Algebraic Geometry +1301.2708 Statistics Theory +1301.2710 Systems and Control +1301.2711 Systems and Control +1301.2716 Commutative Algebra +1301.2722 Systems and Control +1301.2725 Machine Learning +1301.2729 Computational Complexity +1301.2731 Computational Complexity +1301.2733 Phenomenology +1301.2736 Solar and Stellar Astrophysics +1301.2738 Applications +1301.2740 Complex Variables +1301.2742 Spectral Theory +1301.2747 Combinatorics +1301.2754 K-Theory and Homology +1301.2757 Analysis of PDEs +1301.2759 +1301.2760 Spectral Theory +1301.2763 Logic in Computer Science +1301.2770 Differential Geometry +1301.2772 Astrophysics of Galaxies +1301.2773 Theory +1301.2776 Rings and Algebras +1301.2780 Other Computer Science +1301.2785 Information Retrieval +1301.2786 Materials Science +1301.2787 Differential Geometry +1301.2789 Theory +1301.2791 Populations and Evolution +1301.2792 Statistical Mechanics +1301.2795 Dynamical Systems +1301.2796 Atomic Physics +1301.2797 Differential Geometry +1301.2798 Numerical Analysis +1301.2799 Functional Analysis +1301.2802 Experiment +1301.2805 Materials Science +1301.2807 Other Condensed Matter +1301.2808 +1301.2810 Mesoscale and Nanoscale Physics +1301.2816 Cosmology and Nongalactic Astrophysics +1301.2819 Mesoscale and Nanoscale Physics +1301.2823 Soft Condensed Matter +1301.2829 Representation Theory +1301.2830 High Energy Astrophysical Phenomena +1301.2831 Numerical Analysis +1301.2832 Algebraic Topology +1301.2837 Functional Analysis +1301.2838 Statistical Mechanics +1301.2839 Rings and Algebras +1301.2842 Materials Science +1301.2848 Networking and Internet Architecture +1301.2850 Optimization and Control +1301.2853 Representation Theory +1301.2854 Accelerator Physics +1301.2855 Lattice +1301.2857 Computation and Language +1301.2858 Other Computer Science +1301.2859 Numerical Analysis +1301.2860 Information Theory +1301.2864 Lattice +1301.2871 Applications +1301.2872 Number Theory +1301.2878 Applications +1301.2879 Lattice +1301.2880 Computational Complexity +1301.2881 Lattice +1301.2882 Optics +1301.2884 Computer Vision and Pattern Recognition +1301.2885 Neurons and Cognition +1301.2888 Functional Analysis +1301.2889 Cosmology and Nongalactic Astrophysics +1301.2890 Astrophysics of Galaxies +1301.2892 Group Theory +1301.2893 Theory +1301.2894 Applications +1301.2896 Strongly Correlated Electrons +1301.2899 Astrophysics of Galaxies +1301.2903 Programming Languages +1301.2907 Cryptography and Security +1301.2910 Algebraic Geometry +1301.2916 Solar and Stellar Astrophysics +1301.2918 Statistical Mechanics +1301.2921 +1301.2929 Space Physics +1301.2931 Combinatorics +1301.2936 Applications +1301.2939 Astrophysics of Galaxies +1301.2949 Group Theory +1301.2954 Applications +1301.2955 Group Theory +1301.2957 Social and Information Networks +1301.2961 Analysis of PDEs +1301.2962 Analysis of PDEs +1301.2967 Discrete Mathematics +1301.2970 Strongly Correlated Electrons +1301.2971 Lattice +1301.2976 Distributed, Parallel, and Cluster Computing +1301.2984 Solar and Stellar Astrophysics +1301.2987 Optimization and Control +1301.2994 Solar and Stellar Astrophysics +1301.2998 Astrophysics of Galaxies +1301.3000 +1301.3002 Instrumentation and Methods for Astrophysics +1301.3003 Information Theory +1301.3007 Numerical Analysis +1301.3008 Phenomenology +1301.3009 +1301.3022 Networking and Internet Architecture +1301.3024 Phenomenology +1301.3031 +1301.3032 Superconductivity +1301.3034 Plasma Physics +1301.3036 Optics +1301.3043 Metric Geometry +1301.3044 Plasma Physics +1301.3046 Experiment +1301.3047 Software Engineering +1301.3053 Number Theory +1301.3054 General Mathematics +1301.3056 Algebraic Geometry +1301.3059 +1301.3060 Symplectic Geometry +1301.3066 Solar and Stellar Astrophysics +1301.3069 Instrumentation and Methods for Astrophysics +1301.3076 Astrophysics of Galaxies +1301.3077 Genomics +1301.3078 Algebraic Geometry +1301.3080 Theory +1301.3081 Optimization and Control +1301.3086 Optimization and Control +1301.3096 General Finance +1301.3099 Lattice +1301.3102 Spectral Theory +1301.3104 Chemical Physics +1301.3109 Populations and Evolution +1301.3112 Solar and Stellar Astrophysics +1301.3113 +1301.3118 Distributed, Parallel, and Cluster Computing +1301.3120 Physics and Society +1301.3122 Combinatorics +1301.3125 Number Theory +alg-geom/9605009 Algebraic Geometry +astro-ph/0609228 +dg-ga/9712009 Differential Geometry +funct-an/9711005 Functional Analysis +gr-qc/0403079 +hep-th/0010159 Theory +hep-th/0406073 Theory +hep-th/0406229 Theory +math-ph/0010014 +math-ph/9905011 +math/0005059 Differential Geometry +math/0012206 Representation Theory +math/0012220 Representation Theory +math/0104035 Classical Analysis and ODEs +math/0401097 Differential Geometry +math/9403217 Quantum Algebra +math/9905014 Differential Geometry +math/9905045 Representation Theory +math/9906075 Representation Theory +math/9911020 Representation Theory +physics/0211097 Optics +physics/0304109 Optics +physics/0307068 Optics +physics/0404058 Optics +physics/0405100 Optics +physics/0406069 Optics +physics/0501040 Optics +physics/0505082 Optics +physics/0601175 Optics +physics/0605037 Optics +physics/9808051 General Physics +quant-ph/0611280 +0902.4887 +0903.2914 Logic in Computer Science +0907.4268 Astrophysics of Galaxies +0907.4508 Logic +0909.4216 Materials Science +0912.0385 Representation Theory +1002.0857 Statistics Theory +1004.4744 Theory +1007.2109 Probability +1009.5107 High Energy Astrophysical Phenomena +1009.5590 Cosmology and Nongalactic Astrophysics +1010.6038 Algebraic Geometry +1105.5982 Mesoscale and Nanoscale Physics +1106.1393 +1107.1901 Logic in Computer Science +1107.5335 Differential Geometry +1108.4775 Mesoscale and Nanoscale Physics +1109.0056 Algebraic Topology +1112.6415 Group Theory +1201.4407 +1201.5421 Combinatorics +1202.0847 Discrete Mathematics +1203.1680 Theory +1203.3731 Combinatorics +1205.0840 Complex Variables +1206.3614 Artificial Intelligence +1206.3835 Probability +1206.5771 Neurons and Cognition +1207.0838 Geometric Topology +1207.4465 Complex Variables +1207.4732 Optimization and Control +1207.6663 Theory +1207.7251 Physics and Society +1208.2666 Populations and Evolution +1209.3697 +1209.5392 Theory +1209.5526 Materials Science +1209.6446 Mesoscale and Nanoscale Physics +1210.1352 Differential Geometry +1210.3817 Soft Condensed Matter +1210.7441 Differential Geometry +1211.0762 Mesoscale and Nanoscale Physics +1211.2780 Statistics Theory +1211.4690 Materials Science +1211.4850 Phenomenology +1211.5301 Lattice +1212.1534 Phenomenology +1212.1623 Analysis of PDEs +1212.2208 +1212.2284 Computational Complexity +1301.0362 Materials Science +1301.5979 Physics and Society +1302.1596 Information Retrieval +1302.1987 Quantitative Methods +1302.3179 Phenomenology +1302.3228 Phenomenology +1302.6072 Atomic Physics +1302.6286 Plasma Physics +1303.1151 Mesoscale and Nanoscale Physics +1303.2355 Mesoscale and Nanoscale Physics +1303.5967 Optics +1303.6148 Analysis of PDEs +1303.6185 Chemical Physics +1304.3323 Quantum Gases +1304.4542 Mesoscale and Nanoscale Physics +1304.5608 +1304.7708 Superconductivity +1305.1807 Materials Science +1305.2734 Experiment +1305.3717 Quantum Gases +1305.4790 +1305.5377 Statistical Mechanics +1305.6378 +1305.6554 Experiment +1305.6767 Theory +1305.6931 Cosmology and Nongalactic Astrophysics +1305.7192 Group Theory +1306.0193 Social and Information Networks +1306.1413 Strongly Correlated Electrons +1306.1946 Phenomenology +1306.2506 Number Theory +1306.2933 Phenomenology +1306.3137 +1306.4257 Materials Science +1306.4437 Analysis of PDEs +1307.0347 Dynamical Systems +1307.0429 +1307.1234 Mesoscale and Nanoscale Physics +1307.1823 Space Physics +1307.2171 Algebraic Topology +1307.2315 +1307.2907 Instrumentation and Methods for Astrophysics +1307.3003 Physics and Society +1307.3801 Biological Physics +1307.4075 High Energy Astrophysical Phenomena +1307.4539 Soft Condensed Matter +1307.4730 Strongly Correlated Electrons +1307.7114 Strongly Correlated Electrons +1307.7821 Data Structures and Algorithms +1307.8381 Analysis of PDEs +1308.0809 +1308.0817 Metric Geometry +1308.0846 High Energy Astrophysical Phenomena +1308.1033 Solar and Stellar Astrophysics +1308.1078 Phenomenology +1308.1086 Materials Science +1308.1087 Other Quantitative Biology +1308.1097 High Energy Astrophysical Phenomena +1308.1110 Physics Education +1308.1114 Methodology +1308.1118 Social and Information Networks +1308.1121 Experiment +1308.1122 Classical Analysis and ODEs +1308.1123 Number Theory +1308.1125 +1308.1126 Computer Vision and Pattern Recognition +1308.1128 Biological Physics +1308.1129 Instrumentation and Methods for Astrophysics +1308.1140 Exactly Solvable and Integrable Systems +1308.1147 Statistics Theory +1308.1150 Multimedia +1308.1155 Analysis of PDEs +1308.1156 Earth and Planetary Astrophysics +1308.1157 Quantitative Methods +1308.1158 Computers and Society +1308.1162 Social and Information Networks +1308.1164 Social and Information Networks +1308.1168 Computers and Society +1308.1169 Analysis of PDEs +1308.1170 Mesoscale and Nanoscale Physics +1308.1171 Phenomenology +1308.1172 Functional Analysis +1308.1173 Materials Science +1308.1175 Computers and Society +1308.1176 Social and Information Networks +1308.1178 Computers and Society +1308.1180 Accelerator Physics +1308.1182 Materials Science +1308.1186 Dynamical Systems +1308.1187 Computer Vision and Pattern Recognition +1308.1188 Materials Science +1308.1189 Superconductivity +1308.1190 Differential Geometry +1308.1196 Machine Learning +1308.1199 Operating Systems +1308.1204 Cryptography and Security +1308.1205 Theory +1308.1206 Cryptography and Security +1308.1208 +1308.1212 Networking and Internet Architecture +1308.1215 Number Theory +1308.1217 Numerical Analysis +1308.1220 Materials Science +1308.1224 Information Retrieval +1308.1226 Atomic Physics +1308.1229 Soft Condensed Matter +1308.1231 Chemical Physics +1308.1237 Methodology +1308.1240 Cosmology and Nongalactic Astrophysics +1308.1241 Methodology +1308.1248 High Energy Astrophysical Phenomena +1308.1250 Geometric Topology +1308.1252 Neurons and Cognition +1308.1253 High Energy Astrophysical Phenomena +1308.1259 Information Theory +1308.1260 Probability +1308.1261 Representation Theory +1308.1264 Number Theory +1308.1268 Cosmology and Nongalactic Astrophysics +1308.1274 Accelerator Physics +1308.1278 Theory +1308.1284 Social and Information Networks +1308.1286 Group Theory +1308.1287 Social and Information Networks +1308.1289 Populations and Evolution +1308.1290 Accelerator Physics +1308.1295 Accelerator Physics +1308.1299 Combinatorics +1308.1301 Accelerator Physics +1308.1303 Distributed, Parallel, and Cluster Computing +1308.1305 Accelerator Physics +1308.1307 Algebraic Geometry +1308.1309 Accelerator Physics +1308.1313 Numerical Analysis +1308.1316 Accelerator Physics +1308.1321 Portfolio Management +1308.1325 +1308.1332 Astrophysics of Galaxies +1308.1336 Information Theory +1308.1343 Distributed, Parallel, and Cluster Computing +1308.1357 High Energy Astrophysical Phenomena +1308.1358 Distributed, Parallel, and Cluster Computing +1308.1359 Statistics Theory +1308.1365 Computational Engineering, Finance, and Science +1308.1367 Classical Analysis and ODEs +1308.1371 Mesoscale and Nanoscale Physics +1308.1372 Experiment +1308.1373 Solar and Stellar Astrophysics +1308.1374 Computer Vision and Pattern Recognition +1308.1375 Cosmology and Nongalactic Astrophysics +1308.1381 General Physics +1308.1382 Computer Science and Game Theory +1308.1385 Data Structures and Algorithms +1308.1387 Classical Analysis and ODEs +1308.1389 Information Theory +1308.1392 Probability +astro-ph/0311544 +cond-mat/0401238 Materials Science +cond-mat/0404637 Materials Science +cond-mat/0504365 Materials Science +cond-mat/0508701 Materials Science +0902.2969 Logic in Computer Science +0905.1522 Cosmology and Nongalactic Astrophysics +1004.2520 +1011.5442 Probability +1102.1647 Mesoscale and Nanoscale Physics +1104.0037 Disordered Systems and Neural Networks +1106.1400 Probability +1107.0461 Analysis of PDEs +1107.0706 Probability +1109.0048 Commutative Algebra +1109.0203 Commutative Algebra +1109.5976 Dynamical Systems +1109.6786 Phenomenology +1110.0993 +1110.6069 Representation Theory +1112.3013 Number Theory +1112.3420 Mesoscale and Nanoscale Physics +1112.5159 Commutative Algebra +1201.5084 Probability +1201.5221 Logic +1203.1267 Phenomenology +1203.1564 Theory +1203.2590 +1205.0322 Mesoscale and Nanoscale Physics +1205.4582 Physics and Society +1206.2995 +1207.0660 Dynamical Systems +1207.3514 Operator Algebras +1207.4298 Chemical Physics +1208.1732 Combinatorics +1208.3380 Machine Learning +1208.3738 Mesoscale and Nanoscale Physics +1208.4184 Mesoscale and Nanoscale Physics +1208.5261 +1209.2966 Functional Analysis +1209.3049 Optimization and Control +1209.5506 Materials Science +1210.0525 Phenomenology +1210.5050 Mesoscale and Nanoscale Physics +1210.7444 Algebraic Geometry +1211.0084 Theory +1211.0415 Distributed, Parallel, and Cluster Computing +1211.1517 Strongly Correlated Electrons +1211.2676 +1211.3713 Theory +1211.3993 Populations and Evolution +1211.4703 Phenomenology +1211.5007 Phenomenology +1211.6084 Quantum Gases +1211.6381 +1212.0435 Statistical Mechanics +1212.3061 +1212.3647 Quantitative Methods +1212.6775 Probability +1301.2783 Probability +1301.2933 Mesoscale and Nanoscale Physics +1301.6395 Differential Geometry +1301.7003 +1301.7253 Phenomenology +1301.7472 +1301.7683 Strongly Correlated Electrons +1302.0549 Theory +1302.1375 Adaptation and Self-Organizing Systems +1302.1644 +1302.1840 Phenomenology +1302.2161 Superconductivity +1302.3639 Machine Learning +1302.6386 Mesoscale and Nanoscale Physics +1302.7146 Analysis of PDEs +1303.1082 +1303.1101 Statistical Mechanics +1303.2811 +1303.4435 Theory +1303.4686 +1303.4858 Phenomenology +1303.4973 Theory +1304.0262 Statistical Mechanics +1304.0504 +1304.1071 Geometric Topology +1304.1277 Lattice +1304.1316 Mesoscale and Nanoscale Physics +1304.2597 Number Theory +1304.5919 +1304.6351 +1304.6431 Cosmology and Nongalactic Astrophysics +1304.6632 +1305.0163 +1305.1290 Strongly Correlated Electrons +1305.1369 Materials Science +1305.1374 Mesoscale and Nanoscale Physics +1305.4350 Phenomenology +1305.4713 Phenomenology +1305.4936 Mesoscale and Nanoscale Physics +1305.6340 Methodology +1305.6485 Populations and Evolution +1305.6490 Statistical Mechanics +1305.6580 Populations and Evolution +1305.7034 Phenomenology +1305.7136 Lattice +1305.7338 +1306.0430 +1306.0835 Lattice +1306.1920 Astrophysics of Galaxies +1306.2230 Physics and Society +1306.2724 +1306.2938 +1306.3677 +1306.4682 Theory +1306.5005 Emerging Technologies +1306.5920 +1306.5999 Mesoscale and Nanoscale Physics +1306.6052 +1307.0521 +1307.0536 Biological Physics +1307.0702 Soft Condensed Matter +1307.1407 Quantum Gases +1307.1412 Functional Analysis +1307.1487 Theory +1307.1750 Phenomenology +1307.2214 Phenomenology +1307.2592 Strongly Correlated Electrons +1307.2619 Strongly Correlated Electrons +1307.2628 Mesoscale and Nanoscale Physics +1307.2653 Soft Condensed Matter +1307.3362 Strongly Correlated Electrons +1307.3870 +1307.4276 Genomics +1307.4485 Phenomenology +1307.5226 Statistical Mechanics +1307.5251 Adaptation and Self-Organizing Systems +1307.5276 Cosmology and Nongalactic Astrophysics +1307.5627 Strongly Correlated Electrons +1307.6057 Optics +1307.6159 Probability +1307.6187 +1307.7223 Information Theory +1307.7368 Quantum Gases +1307.7520 Phenomenology +1307.7719 Disordered Systems and Neural Networks +1307.7977 +1307.8085 Strongly Correlated Electrons +1307.8132 Mesoscale and Nanoscale Physics +1307.8312 +1307.8323 Theory +1308.0052 Phenomenology +1308.0151 Materials Science +1308.0318 +1308.0332 Phenomenology +1308.0493 Instrumentation and Detectors +1308.1103 Phenomenology +1308.1283 Lattice +1308.1339 +1308.1511 +1308.1673 Theory +1308.2074 +1308.2489 Lattice +1308.2710 Materials Science +1308.2993 Phenomenology +1308.3000 +1308.3638 Phenomenology +1308.3865 Theory +1308.3944 Materials Science +1308.4002 Cellular Automata and Lattice Gases +1308.4269 Disordered Systems and Neural Networks +1308.4723 Phenomenology +1308.4851 Strongly Correlated Electrons +1308.4911 Phenomenology +1308.5003 Phenomenology +1308.5139 Phenomenology +1308.5346 Phenomenology +1308.5671 Phenomenology +1308.5988 Phenomenology +1308.6008 Atomic Physics +1308.6272 Phenomenology +1308.6345 Phenomenology +1308.6690 Experiment +1309.0493 Cosmology and Nongalactic Astrophysics +1309.1709 Phenomenology +1309.1876 Optics +1309.1923 +1309.2124 Materials Science +1309.2153 Lattice +1309.2448 +1309.2498 Theory +1309.2867 +1309.3162 Theory +1309.3224 Quantum Gases +1309.3556 Lattice +1309.3605 +1309.3641 Optics +1309.3747 Materials Science +1309.3790 Phenomenology +1309.3976 Phenomenology +1309.4078 Experiment +1309.4335 Lattice +1309.4436 Cosmology and Nongalactic Astrophysics +1309.4845 +1309.5088 Theory +1309.5327 Phenomenology +1309.5966 Phenomenology +1309.6201 Phenomenology +1309.6247 Statistical Mechanics +1309.6963 Phenomenology +1309.7148 Mesoscale and Nanoscale Physics +1309.7346 Mesoscale and Nanoscale Physics +1309.7644 Phenomenology +1309.7848 +1309.7879 Phenomenology +1310.0735 Strongly Correlated Electrons +1310.1375 Phenomenology +1310.1739 Theory +1310.2082 Quantum Gases +1310.2286 Materials Science +1310.2341 +1310.2376 Phenomenology +1310.2536 +1310.2594 Theory +1310.2866 Theory +1310.3024 Theory +1310.3249 Theory +1310.3676 Theory +1310.5587 +1310.5787 Classical Analysis and ODEs +1310.5826 Experiment +1310.5939 Theory +1310.6250 Fluid Dynamics +1310.8010 Probability +1310.8334 +1310.8613 Computer Science and Game Theory +1311.0445 Numerical Analysis +1311.2419 Statistical Mechanics +1311.2480 Materials Science +1311.3625 +1311.4136 Applications +1311.4365 Lattice +1311.4400 Probability +1311.5830 Computer Vision and Pattern Recognition +1311.6795 Analysis of PDEs +1311.6906 Dynamical Systems +1311.7303 Commutative Algebra +1312.0578 Theory +1312.0624 Learning +1312.1393 Phenomenology +1312.3228 Materials Science +1312.3283 Populations and Evolution +1312.3647 Molecular Networks +1312.3648 Astrophysics of Galaxies +1312.3649 High Energy Astrophysical Phenomena +1312.3663 Mesoscale and Nanoscale Physics +1312.3668 +1312.3674 Theory +1312.3677 Accelerator Physics +1312.3678 Experiment +1312.3680 Cosmology and Nongalactic Astrophysics +1312.3688 Analysis of PDEs +1312.3691 Computational Physics +1312.3692 Networking and Internet Architecture +1312.3693 Social and Information Networks +1312.3700 Other Computer Science +1312.3708 Representation Theory +1312.3709 Category Theory +1312.3712 Combinatorics +1312.3717 +1312.3718 Solar and Stellar Astrophysics +1312.3719 Materials Science +1312.3720 Cosmology and Nongalactic Astrophysics +1312.3721 Differential Geometry +1312.3722 Computational Physics +1312.3724 Computer Vision and Pattern Recognition +1312.3733 Plasma Physics +1312.3738 Robotics +1312.3739 Programming Languages +1312.3743 +1312.3748 Information Theory +1312.3753 Analysis of PDEs +1312.3756 Rings and Algebras +1312.3766 Networking and Internet Architecture +1312.3768 Analysis of PDEs +1312.3769 Strongly Correlated Electrons +1312.3772 Mesoscale and Nanoscale Physics +1312.3773 Statistical Mechanics +1312.3774 Materials Science +1312.3777 Combinatorics +1312.3778 Materials Science +1312.3783 Combinatorics +1312.3784 +1312.3786 Mesoscale and Nanoscale Physics +1312.3788 Physics and Society +1312.3794 Social and Information Networks +1312.3795 Geometric Topology +1312.3796 Classical Physics +1312.3797 Logic in Computer Science +1312.3798 Classical Analysis and ODEs +1312.3800 Quantum Algebra +1312.3805 Numerical Analysis +1312.3807 Astrophysics of Galaxies +1312.3808 Computational Engineering, Finance, and Science +1312.3811 Learning +1312.3816 Analysis of PDEs +1312.3818 Phenomenology +1312.3819 Number Theory +1312.3821 Experiment +1312.3824 +1312.3825 Artificial Intelligence +1312.3827 Classical Analysis and ODEs +1312.3836 Optimization and Control +1312.3838 Adaptation and Self-Organizing Systems +1312.3841 Group Theory +1312.3846 Algebraic Topology +1312.3847 Networking and Internet Architecture +1312.3848 Combinatorics +1312.3850 Phenomenology +1312.3855 Optics +1312.3856 Astrophysics of Galaxies +1312.3857 Quantum Algebra +1312.3858 Computational Engineering, Finance, and Science +1312.3859 Probability +1312.3861 Populations and Evolution +1312.3865 Analysis of PDEs +1312.3866 +1312.3868 Instrumentation and Detectors +1312.3869 Genomics +1312.3872 Information Retrieval +1312.3873 Functional Analysis +1312.3876 Information Theory +1312.3883 +1312.3886 Materials Science +1312.3891 Programming Languages +1312.3892 Computer Science and Game Theory +1312.3894 Statistical Finance +1312.3895 Data Analysis, Statistics and Probability +1312.3898 Materials Science +1312.3901 Astrophysics of Galaxies +1312.3902 Analysis of PDEs +1312.3903 Artificial Intelligence +1312.3907 Number Theory +1312.3908 Commutative Algebra +1312.3909 Optimization and Control +1312.3910 Logic in Computer Science +1312.3911 Metric Geometry +1312.3915 Optimization and Control +1312.3926 Populations and Evolution +1312.3930 Materials Science +1312.3935 Commutative Algebra +1312.3939 Mesoscale and Nanoscale Physics +1312.3940 Differential Geometry +1312.3941 Solar and Stellar Astrophysics +cond-mat/0408341 Soft Condensed Matter +cond-mat/0606788 Mesoscale and Nanoscale Physics +hep-ph/0504267 Phenomenology +0706.1956 Representation Theory +0807.3843 Disordered Systems and Neural Networks +0808.2356 Superconductivity +0808.4091 Algebraic Geometry +0904.4338 Strongly Correlated Electrons +0907.3562 Materials Science +0910.3599 Superconductivity +0911.0343 Representation Theory +0911.0553 Materials Science +1003.0193 Materials Science +1009.2161 +1009.2738 Numerical Analysis +1009.3635 Data Analysis, Statistics and Probability +1011.3648 Algebraic Geometry +1012.0821 Computational Complexity +1012.3054 Strongly Correlated Electrons +1101.4077 High Energy Astrophysical Phenomena +1102.2862 +1103.4644 Commutative Algebra +1103.5928 Materials Science +1104.5104 +1105.2857 Quantum Gases +1106.4976 Materials Science +1107.0039 Functional Analysis +1109.4788 Differential Geometry +1110.4113 Earth and Planetary Astrophysics +1111.1031 Materials Science +1111.2197 Metric Geometry +1111.4683 Phenomenology +1201.0843 Solar and Stellar Astrophysics +1201.3522 Methodology +1201.6650 Category Theory +1202.1836 Solar and Stellar Astrophysics +1202.4187 +1203.5503 Soft Condensed Matter +1204.0085 Classical Physics +1205.3670 Plasma Physics +1205.5623 Mesoscale and Nanoscale Physics +1205.7083 Accelerator Physics +1206.1946 +1206.6115 Phenomenology +1207.0944 Classical Analysis and ODEs +1207.0970 Superconductivity +1207.7094 Phenomenology +1208.0381 Quantum Gases +1208.2246 +1209.1664 Computational Complexity +1209.2950 High Energy Astrophysical Phenomena +1209.3497 Logic +1209.4125 Representation Theory +1210.7396 Combinatorics +1211.3177 Phenomenology +1212.5212 Theory +1301.0941 Statistical Mechanics +1301.1625 Mesoscale and Nanoscale Physics +1301.3984 Combinatorics +1301.4531 Analysis of PDEs +1301.6777 Mesoscale and Nanoscale Physics +1302.0713 Materials Science +1302.1331 Cosmology and Nongalactic Astrophysics +1302.1951 Digital Libraries +1302.3319 Pricing of Securities +1302.6884 Solar and Stellar Astrophysics +1302.6998 Cosmology and Nongalactic Astrophysics +1303.1569 Materials Science +1303.1990 High Energy Astrophysical Phenomena +1303.2658 Cosmology and Nongalactic Astrophysics +1303.3544 Mesoscale and Nanoscale Physics +1303.3911 Classical Analysis and ODEs +1303.3999 High Energy Astrophysical Phenomena +1303.4135 Strongly Correlated Electrons +1303.4925 Optics +1303.6161 Mesoscale and Nanoscale Physics +1303.6326 Phenomenology +1304.0535 Materials Science +1304.1889 High Energy Astrophysical Phenomena +1304.2192 +1304.2250 +1304.2695 Numerical Analysis +1304.6533 Computational Physics +1304.6589 Information Theory +1305.1515 Optics +1305.1623 Phenomenology +1305.2319 Distributed, Parallel, and Cluster Computing +1305.2615 Atomic Physics +1305.3133 Theory +1305.3454 Atomic Physics +1305.3638 Disordered Systems and Neural Networks +1305.3688 Networking and Internet Architecture +1305.3861 +1305.4913 Number Theory +1305.5935 Quantum Gases +1305.7234 +1306.1018 Functional Analysis +1306.1666 Mesoscale and Nanoscale Physics +1306.1879 Mesoscale and Nanoscale Physics +1306.2600 High Energy Astrophysical Phenomena +1306.3186 High Energy Astrophysical Phenomena +1306.3673 Representation Theory +1306.5562 Phenomenology +1306.6235 +1307.1859 Probability +1307.2346 Strongly Correlated Electrons +1307.3606 +1307.4108 High Energy Astrophysical Phenomena +1307.4921 Solar and Stellar Astrophysics +1307.5030 Computational Geometry +1307.6045 Quantitative Methods +1307.6362 Solar and Stellar Astrophysics +1307.7950 Quantitative Methods +1308.0718 Populations and Evolution +1308.1354 Chemical Physics +1308.1386 Functional Analysis +1308.1412 Algebraic Topology +1308.1414 Algebraic Topology +1308.1417 Earth and Planetary Astrophysics +1308.1422 Mesoscale and Nanoscale Physics +1308.1423 Analysis of PDEs +1308.1426 Phenomenology +1308.1427 Dynamical Systems +1308.1440 Databases +1308.1442 Exactly Solvable and Integrable Systems +1308.1443 Logic in Computer Science +1308.1444 Analysis of PDEs +1308.1451 Populations and Evolution +1308.1453 Populations and Evolution +1308.1457 Analysis of PDEs +1308.1458 Analysis of PDEs +1308.1460 Differential Geometry +1308.1461 Phenomenology +1308.1464 Computational Engineering, Finance, and Science +1308.1469 Number Theory +1308.1470 Number Theory +1308.1471 Databases +1308.1484 Neural and Evolutionary Computing +1308.1485 High Energy Astrophysical Phenomena +1308.1489 Analysis of PDEs +1308.1491 Probability +1308.1493 Probability +1308.1497 Combinatorics +1308.1498 Operator Algebras +1308.1499 Group Theory +1308.1500 Representation Theory +1308.1503 Information Theory +1308.1504 Optimization and Control +1308.1507 Computation and Language +1308.1509 Systems and Control +1308.1510 Phenomenology +1308.1512 Instrumentation and Methods for Astrophysics +1308.1515 Instrumentation and Methods for Astrophysics +1308.1516 Instrumentation and Methods for Astrophysics +1308.1517 Mesoscale and Nanoscale Physics +1308.1518 +1308.1523 Materials Science +1308.1525 +1308.1529 Geometric Topology +1308.1534 Superconductivity +1308.1539 Cryptography and Security +1308.1544 Analysis of PDEs +1308.1547 Classical Analysis and ODEs +1308.1550 Physics Education +1308.1551 Representation Theory +1308.1554 Digital Libraries +1308.1556 Data Structures and Algorithms +1308.1564 Populations and Evolution +1308.1565 Logic +1308.1566 Number Theory +1308.1568 Data Structures and Algorithms +1308.1570 Dynamical Systems +1308.1573 Geophysics +1308.1574 Complex Variables +1308.1590 Systems and Control +1308.1591 Solar and Stellar Astrophysics +1308.1596 Numerical Analysis +1308.1602 Computers and Society +1308.1605 Physics and Society +1308.1606 Networking and Internet Architecture +1308.1609 Information Theory +1308.1611 Computers and Society +1308.1612 Computers and Society +1308.1614 Solar and Stellar Astrophysics +1308.1616 General Finance +1308.1617 Solar and Stellar Astrophysics +1308.1618 History and Philosophy of Physics +1308.1621 Computational Physics +1308.1624 Applications +1308.1625 +1308.1626 High Energy Astrophysical Phenomena +1308.1633 Instrumentation and Detectors +1308.1635 Phenomenology +1308.1637 Combinatorics +1308.1643 Computational Complexity +1308.1644 Materials Science +1308.1645 Chemical Physics +1308.1648 Mesoscale and Nanoscale Physics +1308.1652 Combinatorics +1308.1656 Probability +1308.1661 Geophysics +cond-mat/0606108 Materials Science +cond-mat/0607338 Materials Science +cond-mat/0607525 Mesoscale and Nanoscale Physics +cond-mat/0609042 Materials Science +cond-mat/0609146 Materials Science +cond-mat/0609738 Mesoscale and Nanoscale Physics +hep-th/9604144 Theory +math/0310414 Symplectic Geometry +math/0406043 Group Theory +math/0406044 Group Theory +math/0501085 Group Theory +physics/0703223 Data Analysis, Statistics and Probability +0707.0784 Strongly Correlated Electrons +0909.3506 Populations and Evolution +0910.4233 Cosmology and Nongalactic Astrophysics +1003.4499 Strongly Correlated Electrons +1005.3211 Materials Science +1006.5655 Probability +1008.5194 Strongly Correlated Electrons +1009.0587 Atomic Physics +1011.1784 +1101.4744 Methodology +1102.1583 +1102.4399 Methodology +1104.0491 Statistical Mechanics +1104.4064 Logic +1105.0077 Rings and Algebras +1105.4464 +1106.5888 Materials Science +1106.5929 Pricing of Securities +1108.3966 +1108.6062 Molecular Networks +1109.5312 Materials Science +1111.0598 +1111.4986 Algebraic Geometry +1112.0445 Phenomenology +1112.1140 High Energy Astrophysical Phenomena +1112.5178 Theory +1201.4694 Number Theory +1202.4853 Classical Analysis and ODEs +1203.1179 Physics and Society +1203.1729 +1203.6233 Information Theory +1204.0935 Analysis of PDEs +1204.2166 Accelerator Physics +1204.3130 Methodology +1204.4472 +1204.6382 Statistics Theory +1205.1321 +1205.4016 +1206.4459 +1207.3224 Strongly Correlated Electrons +1207.5318 +1207.5763 +1207.6501 Metric Geometry +1207.6551 +1207.6611 Strongly Correlated Electrons +1207.7176 +1208.0132 Algebraic Geometry +1208.0467 Plasma Physics +1208.0915 +1208.2517 Experiment +1208.4831 Statistical Finance +1208.5777 +1209.2610 Mesoscale and Nanoscale Physics +1209.3968 Cosmology and Nongalactic Astrophysics +1209.4122 Representation Theory +1209.4798 Theory +1210.0387 Mesoscale and Nanoscale Physics +1210.0705 Optimization and Control +1210.0756 Physics and Society +1210.0774 Soft Condensed Matter +1210.1155 +1210.1491 Numerical Analysis +1210.1595 Mesoscale and Nanoscale Physics +1210.1659 Disordered Systems and Neural Networks +1210.2634 Strongly Correlated Electrons +1210.3213 +1210.5440 Strongly Correlated Electrons +1210.5605 Strongly Correlated Electrons +1210.5779 Quantitative Methods +1210.8094 Statistics Theory +1211.1218 +1211.2490 +1211.2768 Mesoscale and Nanoscale Physics +1211.3909 Materials Science +1211.5532 Strongly Correlated Electrons +1211.6326 +1211.6725 Number Theory +1212.0319 +1212.1563 Analysis of PDEs +1212.1832 Fluid Dynamics +1212.1837 Materials Science +1212.2693 Data Analysis, Statistics and Probability +1212.2696 Data Analysis, Statistics and Probability +1212.3976 +1212.3999 Complex Variables +1212.4361 Statistical Mechanics +1212.4516 +1212.6409 Number Theory +1301.1376 +1301.1952 Materials Science +1301.2977 Combinatorics +1301.4090 Theory +1301.5273 Genomics +1301.5765 Networking and Internet Architecture +1301.6066 Plasma Physics +1302.0576 Superconductivity +1302.0617 +1302.0830 Experiment +1302.0919 Fluid Dynamics +1302.0920 +1302.1836 Information Theory +1302.2718 Cryptography and Security +1302.2805 Data Structures and Algorithms +1302.3000 Probability +1302.3034 Optics +1302.3181 Phenomenology +1302.3219 Learning +1302.3224 Instrumentation and Methods for Astrophysics +1302.3234 Optics +1302.3237 Plasma Physics +1302.3241 +1302.3244 Populations and Evolution +1302.3252 Superconductivity +1302.3254 High Energy Astrophysical Phenomena +1302.3255 Differential Geometry +1302.3256 Differential Geometry +1302.3257 Differential Geometry +1302.3258 Disordered Systems and Neural Networks +1302.3264 Astrophysics of Galaxies +1302.3265 Disordered Systems and Neural Networks +1302.3267 Tissues and Organs +1302.3271 Differential Geometry +1302.3272 Differential Geometry +1302.3273 Instrumentation and Detectors +1302.3282 Dynamical Systems +1302.3289 General Physics +1302.3290 Logic in Computer Science +1302.3291 Logic in Computer Science +1302.3292 Distributed, Parallel, and Cluster Computing +1302.3293 Logic in Computer Science +1302.3298 +1302.3300 Differential Geometry +1302.3301 +1302.3302 Statistics Theory +1302.3303 Differential Geometry +1302.3308 Computational Complexity +1302.3310 Operator Algebras +1302.3311 Popular Physics +1302.3314 Differential Geometry +1302.3315 Differential Geometry +1302.3323 Spectral Theory +1302.3325 Spectral Theory +1302.3339 Optics +1302.3340 Soft Condensed Matter +1302.3347 Data Structures and Algorithms +1302.3349 Genomics +1302.3351 High Energy Astrophysical Phenomena +1302.3354 Analysis of PDEs +1302.3355 Cosmology and Nongalactic Astrophysics +1302.3356 +1302.3362 Materials Science +1302.3366 Mesoscale and Nanoscale Physics +1302.3375 High Energy Astrophysical Phenomena +1302.3378 Experiment +1302.3379 Experiment +1302.3380 Experiment +1302.3384 +1302.3387 Numerical Analysis +1302.3391 Materials Science +1302.3392 Differential Geometry +1302.3397 Materials Science +1302.3398 Superconductivity +1302.3399 +1302.3403 Statistics Theory +1302.3404 Data Structures and Algorithms +1302.3407 Machine Learning +1302.3411 Classical Analysis and ODEs +1302.3414 Methodology +1302.3416 Optimization and Control +1302.3417 Data Structures and Algorithms +1302.3421 +1302.3426 Logic +1302.3429 Dynamical Systems +1302.3432 Mesoscale and Nanoscale Physics +1302.3433 Discrete Mathematics +1302.3434 High Energy Astrophysical Phenomena +1302.3436 Classical Analysis and ODEs +1302.3442 High Energy Astrophysical Phenomena +1302.3443 High Energy Astrophysical Phenomena +1302.3444 High Energy Astrophysical Phenomena +1302.3450 Materials Science +1302.3452 Optimization and Control +1302.3453 Number Theory +1302.3455 Optimization and Control +1302.3456 High Energy Astrophysical Phenomena +1302.3458 Differential Geometry +1302.3465 Logic +1302.3469 Solar and Stellar Astrophysics +1302.3476 Representation Theory +1302.3478 Materials Science +1302.3480 Adaptation and Self-Organizing Systems +1302.3485 High Energy Astrophysical Phenomena +1302.3486 Discrete Mathematics +1302.3487 Complex Variables +1302.3488 Methodology +1302.3489 Formal Languages and Automata Theory +1302.3501 Optimization and Control +1302.3503 Optimization and Control +1302.3507 Combinatorics +1302.3511 +1302.3512 +1302.3513 Optimization and Control +1302.3514 Probability +1302.3516 Fluid Dynamics +1302.3523 Mesoscale and Nanoscale Physics +1302.3524 Algebraic Geometry +1302.3525 Phenomenology +1302.3529 Disordered Systems and Neural Networks +1302.3533 Astrophysics of Galaxies +1302.3536 Pattern Formation and Solitons +1302.3541 Neural and Evolutionary Computing +1302.3542 Phenomenology +1302.3545 Human-Computer Interaction +1302.3547 Algebraic Geometry +cond-mat/0007163 Superconductivity +cond-mat/0403530 Statistical Mechanics +cond-mat/9711190 +0801.3598 Statistical Mechanics +0810.0967 Theory +0812.1525 Number Theory +1003.0825 High Energy Astrophysical Phenomena +1003.1055 High Energy Astrophysical Phenomena +1003.4954 Geometric Topology +1005.1038 Algebraic Geometry +1005.3661 Probability +1005.3677 K-Theory and Homology +1006.5163 Number Theory +1008.2796 Number Theory +1009.0154 Number Theory +1010.2061 Statistical Finance +1011.3325 High Energy Astrophysical Phenomena +1011.4762 Metric Geometry +1012.0175 Number Theory +1102.0950 Probability +1102.1716 Probability +1102.3850 Functional Analysis +1104.1590 Materials Science +1106.1087 Algebraic Topology +1106.4522 Number Theory +1107.5993 Number Theory +1108.2583 +1108.4756 +1108.5536 +1108.5990 Dynamical Systems +1110.0309 Number Theory +1110.0455 Analysis of PDEs +1111.3215 Geometric Topology +1111.3597 Cryptography and Security +1111.3780 Computational Physics +1112.3242 Probability +1202.5415 Mesoscale and Nanoscale Physics +1202.5605 Commutative Algebra +1203.5178 Mesoscale and Nanoscale Physics +1204.3084 Cosmology and Nongalactic Astrophysics +1204.4679 Computational Geometry +1205.1524 Computational Geometry +1206.6541 Discrete Mathematics +1207.0544 Phenomenology +1207.0666 Functional Analysis +1207.0733 High Energy Astrophysical Phenomena +1207.3196 +1207.4088 Phenomenology +1207.6588 Physics and Society +1208.0464 Materials Science +1208.0901 +1208.0987 Phenomenology +1208.2430 Algebraic Geometry +1208.3172 Data Analysis, Statistics and Probability +1208.5580 Cryptography and Security +1209.0207 Number Theory +1209.1146 Analysis of PDEs +1209.2421 Phenomenology +1209.2976 Algebraic Geometry +1210.1045 Geometric Topology +1210.1289 Strongly Correlated Electrons +1210.1972 Probability +1210.2302 Solar and Stellar Astrophysics +1210.2304 Solar and Stellar Astrophysics +1210.4741 Mesoscale and Nanoscale Physics +1210.6554 Neurons and Cognition +1210.6594 High Energy Astrophysical Phenomena +1211.1450 Algebraic Geometry +1211.2284 Probability +1211.6014 Physics and Society +1211.6657 Cosmology and Nongalactic Astrophysics +1212.0659 Mesoscale and Nanoscale Physics +1212.2105 Fluid Dynamics +1212.2254 Cosmology and Nongalactic Astrophysics +1212.2534 Physics and Society +1212.4631 +1212.4811 Superconductivity +1212.5444 Other Condensed Matter +1212.6124 Earth and Planetary Astrophysics +1212.6812 Strongly Correlated Electrons +1301.1904 +1301.7162 High Energy Astrophysical Phenomena +1301.7164 High Energy Astrophysical Phenomena +1301.7611 Mesoscale and Nanoscale Physics +1302.0127 High Energy Astrophysical Phenomena +1302.1110 Statistical Mechanics +1302.1114 Operator Algebras +1302.2903 Theory +1302.4189 Cosmology and Nongalactic Astrophysics +1302.4547 +1302.4594 Strongly Correlated Electrons +1302.5612 Superconductivity +1302.5734 Cryptography and Security +1302.6408 Plasma Physics +1302.6471 Strongly Correlated Electrons +1303.0227 Earth and Planetary Astrophysics +1303.1194 Strongly Correlated Electrons +1303.2027 Mesoscale and Nanoscale Physics +1303.3121 Cosmology and Nongalactic Astrophysics +1303.4068 High Energy Astrophysical Phenomena +1303.5035 Theory +1303.5504 Probability +1303.6655 Strongly Correlated Electrons +1303.6718 Cosmology and Nongalactic Astrophysics +1303.7125 Experiment +1304.1710 Instrumentation and Methods for Astrophysics +1304.2134 Disordered Systems and Neural Networks +1304.3021 Cosmology and Nongalactic Astrophysics +1304.4925 Artificial Intelligence +1304.7816 Phenomenology +1305.1083 +1305.1692 Experiment +1305.2054 Theory +1305.2701 Cosmology and Nongalactic Astrophysics +1305.2927 Cosmology and Nongalactic Astrophysics +1305.3541 General Physics +1305.3853 Software Engineering +1305.4001 Differential Geometry +1305.4159 High Energy Astrophysical Phenomena +1305.4267 Classical Analysis and ODEs +1305.5495 History and Philosophy of Physics +1305.6745 Programming Languages +1305.6989 Cosmology and Nongalactic Astrophysics +1305.7153 Number Theory +1306.0518 +1306.1307 Statistical Mechanics +1306.1574 Cosmology and Nongalactic Astrophysics +1306.1719 +1306.2443 Populations and Evolution +1306.2659 Phenomenology +1306.2991 +1306.3014 Methodology +1306.3015 Materials Science +1306.3133 Applications +1306.3224 Theory +1306.3240 Mesoscale and Nanoscale Physics +1306.3252 Optimization and Control +1306.3253 Instrumentation and Methods for Astrophysics +1306.3254 Instrumentation and Methods for Astrophysics +1306.3255 Data Analysis, Statistics and Probability +1306.3257 Computational Complexity +1306.3261 Digital Libraries +1306.3263 Strongly Correlated Electrons +1306.3267 Fluid Dynamics +1306.3273 Instrumentation and Methods for Astrophysics +1306.3277 Computation +1306.3278 Differential Geometry +1306.3285 Neurons and Cognition +1306.3294 Computer Vision and Pattern Recognition +1306.3295 General Literature +1306.3297 Computer Vision and Pattern Recognition +1306.3301 Statistics Theory +1306.3302 Hardware Architecture +1306.3303 Complex Variables +1306.3305 Commutative Algebra +1306.3311 Commutative Algebra +1306.3323 Computers and Society +1306.3324 Atmospheric and Oceanic Physics +1306.3325 +1306.3331 Information Theory +1306.3334 Probability +1306.3341 Statistical Mechanics +1306.3355 Combinatorics +1306.3357 High Energy Astrophysical Phenomena +1306.3372 +1306.3373 Statistics Theory +1306.3375 Software Engineering +1306.3376 Algebraic Geometry +1306.3378 Systems and Control +1306.3388 +1306.3389 Algebraic Geometry +1306.3395 General Finance +1306.3408 Fluid Dynamics +1306.3409 Machine Learning +1306.3415 Computer Vision and Pattern Recognition +1306.3418 Logic in Computer Science +1306.3426 Other Computer Science +1306.3427 Populations and Evolution +1306.3429 Other Computer Science +1306.3433 Materials Science +1306.3440 Information Theory +1306.3448 Probability +1306.3449 Probability +1306.3451 +1306.3456 Logic in Computer Science +1306.3460 Other Condensed Matter +1306.3464 Numerical Analysis +1306.3466 Genomics +1306.3468 General Physics +1306.3473 Geophysics +1306.3474 Learning +1306.3475 Solar and Stellar Astrophysics +1306.3476 Computer Vision and Pattern Recognition +1306.3482 Data Structures and Algorithms +1306.3484 Information Theory +1306.3485 Mesoscale and Nanoscale Physics +1306.3487 Geometric Topology +1306.3490 Solar and Stellar Astrophysics +1306.3491 Soft Condensed Matter +1306.3492 Formal Languages and Automata Theory +1306.3495 Rings and Algebras +cond-mat/0610376 Statistical Mechanics +cs/0203029 Computational Complexity +0805.4727 Atomic Physics +0906.5068 High Energy Astrophysical Phenomena +1007.0902 Probability +1010.5338 Probability +1011.5868 Mesoscale and Nanoscale Physics +1012.0649 Classical Analysis and ODEs +1101.3441 Probability +1101.4081 Numerical Analysis +1104.3966 Probability +1105.5303 +1106.1306 Chaotic Dynamics +1106.4121 Logic +1107.3143 Phenomenology +1107.3952 Analysis of PDEs +1108.6123 Data Structures and Algorithms +1109.1113 Probability +1110.2515 Physics and Society +1110.6392 +1111.4918 Mesoscale and Nanoscale Physics +1111.5128 Soft Condensed Matter +1111.5994 Computational Physics +1111.7150 Dynamical Systems +1112.0076 Trading and Market Microstructure +1112.0817 +1202.2643 Number Theory +1202.5518 +1203.4116 Numerical Analysis +1203.5753 Statistics Theory +1203.5894 +1206.1512 Disordered Systems and Neural Networks +1206.4572 Information Theory +1206.5637 Databases +1206.6970 Operator Algebras +1206.7048 Atomic and Molecular Clusters +1207.2413 Geometric Topology +1207.2613 Superconductivity +1208.1793 Distributed, Parallel, and Cluster Computing +1208.4605 Phenomenology +1208.4766 Networking and Internet Architecture +1209.1843 +1209.6000 Dynamical Systems +1210.0517 Materials Science +1210.1800 Other Condensed Matter +1211.3944 Superconductivity +1211.4480 Cosmology and Nongalactic Astrophysics +1211.5701 Functional Analysis +1211.6372 Dynamical Systems +1211.6772 Numerical Analysis +1212.0297 Data Structures and Algorithms +1212.2684 Strongly Correlated Electrons +1212.4773 +1212.5074 Phenomenology +1301.1382 +1301.1757 Computers and Society +1301.2171 Group Theory +1301.2826 +1301.4039 Combinatorics +1301.6455 Phenomenology +1301.6659 Learning +1301.7700 Logic in Computer Science +1301.7737 Differential Geometry +1301.7741 Optimization and Control +1302.0187 Strongly Correlated Electrons +1302.0289 Superconductivity +1302.1305 Phenomenology +1302.1478 +1302.1818 Strongly Correlated Electrons +1302.2125 +1302.2609 Atomic Physics +1302.4690 +1302.5992 Phenomenology +1303.0026 Combinatorics +1303.1168 Cosmology and Nongalactic Astrophysics +1303.2694 Strongly Correlated Electrons +1303.3379 +1303.3855 General Literature +1303.4992 +1304.1886 Classical Physics +1304.2128 Theory +1304.2414 Numerical Analysis +1304.3724 Cosmology and Nongalactic Astrophysics +1304.4617 Strongly Correlated Electrons +1304.5722 Disordered Systems and Neural Networks +1304.6066 Phenomenology +1304.6987 +1304.7521 Cosmology and Nongalactic Astrophysics +1304.7888 Phenomenology +1305.0049 Geometric Topology +1305.1126 Instrumentation and Detectors +1305.2039 Computational Complexity +1305.2313 Atomic Physics +1305.2320 Phenomenology +1305.4241 High Energy Astrophysical Phenomena +1305.4473 +1305.5548 Cosmology and Nongalactic Astrophysics +1306.0580 Phenomenology +1306.3287 Earth and Planetary Astrophysics +1306.3672 Earth and Planetary Astrophysics +1306.4895 Systems and Control +1306.6324 Astrophysics of Galaxies +1307.1238 Astrophysics of Galaxies +1307.2951 Superconductivity +1307.3806 Optimization and Control +1307.5046 Solar and Stellar Astrophysics +1307.6135 Quantum Gases +1307.6698 Chaotic Dynamics +1307.7834 Experiment +1307.8084 Artificial Intelligence +1307.8232 Optimization and Control +1307.8285 Experiment +1307.8303 Numerical Analysis +1307.8414 Dynamical Systems +1307.8418 Category Theory +1308.0173 Computer Science and Game Theory +1308.0198 Physics and Society +1308.0231 Phenomenology +1308.0299 Artificial Intelligence +1308.0319 Algebraic Geometry +1308.0325 +1308.0326 Instrumentation and Detectors +1308.0327 Instrumentation and Detectors +1308.0350 Space Physics +1308.0354 Instrumentation and Detectors +1308.0355 Phenomenology +1308.0356 Artificial Intelligence +1308.0359 Mesoscale and Nanoscale Physics +1308.0365 Computer Vision and Pattern Recognition +1308.0366 Materials Science +1308.0372 Human-Computer Interaction +1308.0373 +1308.0374 Experiment +1308.0375 Graphics +1308.0377 Combinatorics +1308.0380 Populations and Evolution +1308.0384 Systems and Control +1308.0385 Systems and Control +1308.0386 Numerical Analysis +1308.0387 Numerical Analysis +1308.0388 Software Engineering +1308.0389 Programming Languages +1308.0390 Programming Languages +1308.0391 Networking and Internet Architecture +1308.0393 Physics and Society +1308.0395 Number Theory +1308.0396 Atomic Physics +1308.0398 Combinatorics +1308.0399 Computation +1308.0400 Applications +1308.0401 Combinatorics +1308.0402 Theory +1308.0408 Group Theory +1308.0423 Algebraic Geometry +1308.0428 Logic in Computer Science +1308.0429 Operator Algebras +1308.0433 High Energy Astrophysical Phenomena +1308.0435 Multimedia +1308.0437 Cryptography and Security +1308.0438 Physics and Society +1308.0439 Materials Science +1308.0444 Materials Science +1308.0445 Dynamical Systems +1308.0446 Earth and Planetary Astrophysics +1308.0447 Statistics Theory +1308.0448 Accelerator Physics +1308.0449 Cosmology and Nongalactic Astrophysics +1308.0455 Information Theory +1308.0457 Popular Physics +1308.0467 +1308.0471 Mesoscale and Nanoscale Physics +1308.0472 Algebraic Geometry +1308.0473 Instrumentation and Methods for Astrophysics +1308.0475 High Energy Astrophysical Phenomena +1308.0480 Combinatorics +1308.0481 Materials Science +1308.0486 Dynamical Systems +1308.0488 Combinatorics +1308.0497 Computational Complexity +1308.0498 Analysis of PDEs +1308.0500 +1308.0502 Databases +1308.0503 Computers and Society +1308.0504 Optics +1308.0507 Numerical Analysis +1308.0514 Databases +1308.0518 Systems and Control +1308.0525 Soft Condensed Matter +1308.0534 Cosmology and Nongalactic Astrophysics +1308.0538 Theory +1308.0541 Geometric Topology +1308.0542 Analysis of PDEs +1308.0549 Probability +1308.0550 Materials Science +1308.0551 Quantitative Methods +1308.0555 Other Computer Science +1308.0568 Distributed, Parallel, and Cluster Computing +1308.0569 Analysis of PDEs +1308.0577 Social and Information Networks +1308.0578 Number Theory +1308.0579 Rings and Algebras +1308.0586 Dynamical Systems +1308.0587 Experiment +1308.0590 Disordered Systems and Neural Networks +0706.3648 +0808.1209 Geometric Topology +0808.1852 Biomolecules +0909.3221 Computer Science and Game Theory +0910.5057 Populations and Evolution +0912.4818 General Physics +1002.1270 Combinatorics +1003.0780 Theory +1005.0895 Combinatorics +1006.4695 Statistical Mechanics +1008.2928 Data Structures and Algorithms +1010.4904 Probability +1102.1751 Atomic Physics +1102.3385 Theory +1103.2661 Experiment +1104.3798 +1105.2483 Theory +1106.2016 Cosmology and Nongalactic Astrophysics +1107.5929 +1108.0124 Statistical Mechanics +1108.0248 +1109.0465 Statistical Finance +1109.4348 +1110.5226 Atomic and Molecular Clusters +1112.3273 Atomic Physics +1112.5083 Classical Physics +1201.0926 Cosmology and Nongalactic Astrophysics +1201.1585 Number Theory +1201.4540 Differential Geometry +1201.5508 Atomic Physics +1202.1569 Combinatorics +1202.2878 Probability +1202.2881 Probability +1202.5859 Probability +1204.2029 Theory +1204.4929 Pattern Formation and Solitons +1205.0058 Cosmology and Nongalactic Astrophysics +1205.0059 Cosmology and Nongalactic Astrophysics +1205.2698 Cosmology and Nongalactic Astrophysics +1205.6970 Physics Education +1206.1262 Algebraic Geometry +1206.1985 Analysis of PDEs +1206.2077 Statistical Mechanics +1206.2082 Data Structures and Algorithms +1206.2482 Disordered Systems and Neural Networks +1206.2584 Dynamical Systems +1206.3800 Probability +1206.4317 Cosmology and Nongalactic Astrophysics +1207.1439 Cosmology and Nongalactic Astrophysics +1207.1456 Mesoscale and Nanoscale Physics +1207.5141 Analysis of PDEs +1208.2518 Social and Information Networks +1208.4180 Materials Science +1208.4875 Accelerator Physics +1208.5758 +1208.6444 Other Computer Science +1209.0386 Biological Physics +1209.1442 Optics +1209.4171 Differential Geometry +1210.1579 Strongly Correlated Electrons +1210.1943 +1210.2477 +1210.2518 Cosmology and Nongalactic Astrophysics +1211.2015 Materials Science +1211.3668 Probability +1211.5381 Statistical Mechanics +1211.5603 Earth and Planetary Astrophysics +1211.7114 Statistics Theory +1212.0075 Networking and Internet Architecture +1212.0793 Biological Physics +1212.1078 Complex Variables +1212.2121 Strongly Correlated Electrons +1212.2216 Cosmology and Nongalactic Astrophysics +1212.2996 Solar and Stellar Astrophysics +1212.4465 Mesoscale and Nanoscale Physics +1212.5379 Quantum Gases +1301.0003 Representation Theory +1301.1738 +1301.2675 High Energy Astrophysical Phenomena +1301.3412 Theory +1301.5661 +1301.7605 Phenomenology +1301.7623 Experiment +1302.0097 Materials Science +1302.1165 +1302.1812 Fluid Dynamics +1302.2824 Networking and Internet Architecture +1302.3906 Formal Languages and Automata Theory +1302.5203 +1302.5537 Phenomenology +1302.6526 Algebraic Geometry +1303.0007 Cosmology and Nongalactic Astrophysics +1303.0008 Cosmology and Nongalactic Astrophysics +1303.1106 Superconductivity +1303.2519 Analysis of PDEs +1303.2729 Combinatorics +1303.2909 Mesoscale and Nanoscale Physics +1303.2978 Superconductivity +1303.4193 Logic in Computer Science +1303.5857 Social and Information Networks +1303.6730 Mesoscale and Nanoscale Physics +1303.6989 Algebraic Topology +1303.7453 Materials Science +1304.0650 Classical Analysis and ODEs +1304.1325 +1304.2690 Quantum Gases +1304.2828 Methodology +1304.2909 Earth and Planetary Astrophysics +1304.7836 +1304.7969 Solar and Stellar Astrophysics +1305.1804 Analysis of PDEs +1305.1910 Materials Science +1305.2048 Strongly Correlated Electrons +1305.2105 +1305.2626 High Energy Astrophysical Phenomena +1305.2653 Strongly Correlated Electrons +1305.2802 +1305.3136 Mesoscale and Nanoscale Physics +1305.4681 Analysis of PDEs +1305.4957 Programming Languages +1305.4993 Information Theory +1305.5019 Computers and Society +1305.5078 Learning +1305.5157 Materials Science +1305.5192 Quantum Gases +1305.5222 Computer Science and Game Theory +1305.5267 Computers and Society +1305.5269 Logic +1305.5272 +1305.5281 +1305.5282 Solar and Stellar Astrophysics +1305.5287 Algebraic Geometry +1305.5288 Chemical Physics +1305.5289 Mesoscale and Nanoscale Physics +1305.5294 Differential Geometry +1305.5295 Rings and Algebras +1305.5296 Algebraic Geometry +1305.5297 Optics +1305.5298 Probability +1305.5305 Dynamical Systems +1305.5306 Computer Vision and Pattern Recognition +1305.5309 Atomic Physics +1305.5310 Analysis of PDEs +1305.5311 Dynamical Systems +1305.5312 Dynamical Systems +1305.5317 +1305.5321 Analysis of PDEs +1305.5324 Probability +1305.5325 Analysis of PDEs +1305.5327 Analysis of PDEs +1305.5330 Information Retrieval +1305.5332 Phenomenology +1305.5334 +1305.5337 Software Engineering +1305.5341 Materials Science +1305.5343 Pattern Formation and Solitons +1305.5344 Numerical Analysis +1305.5351 Group Theory +1305.5352 Information Theory +1305.5353 Complex Variables +1305.5355 Applications +1305.5357 Combinatorics +1305.5364 Phenomenology +1305.5366 Algebraic Geometry +1305.5368 Numerical Analysis +1305.5369 Molecular Networks +1305.5371 Physics and Society +1305.5372 Combinatorics +1305.5392 Medical Physics +1305.5395 Rings and Algebras +1305.5396 Classical Analysis and ODEs +1305.5397 Statistical Mechanics +1305.5399 Optimization and Control +1305.5400 Number Theory +1305.5404 Computer Science and Game Theory +1305.5407 Statistical Mechanics +1305.5408 Chaotic Dynamics +1305.5413 Populations and Evolution +1305.5414 Accelerator Physics +1305.5419 Differential Geometry +1305.5423 Soft Condensed Matter +1305.5431 Phenomenology +1305.5433 Instrumentation and Detectors +1305.5435 Optimization and Control +1305.5436 Cryptography and Security +1305.5437 Instrumentation and Detectors +1305.5445 Methodology +1305.5448 Plasma Physics +1305.5451 Theory +1305.5458 +1305.5464 Multimedia +1305.5465 Chemical Physics +1305.5472 Group Theory +1305.5473 Probability +1305.5474 +1305.5477 Computational Physics +1305.5482 Phenomenology +1305.5492 +1305.5498 Number Theory +1305.5499 Combinatorics +1305.5501 Probability +1305.5502 Number Theory +1305.5505 Strongly Correlated Electrons +1305.5506 Artificial Intelligence +1305.5508 Atmospheric and Oceanic Physics +1305.5514 Logic +1305.5518 Combinatorics +1305.5524 Computational Engineering, Finance, and Science +1305.5525 +1305.5529 +1305.5530 Information Theory +1305.5532 Chemical Physics +math/9911204 Logic +0705.3932 Algebraic Geometry +0707.1108 Number Theory +0707.1110 Number Theory +0707.1111 Number Theory +0707.1552 Algebraic Geometry +0707.1835 Algebraic Geometry +0707.1837 Number Theory +0707.2757 Classical Analysis and ODEs +0807.3139 Number Theory +0807.3576 Algebraic Geometry +0810.2830 Number Theory +0811.3554 Data Analysis, Statistics and Probability +0901.3048 Other Condensed Matter +0903.4528 Differential Geometry +0907.0124 Differential Geometry +0907.3502 Metric Geometry +0910.0106 Instrumentation and Methods for Astrophysics +0912.0995 +1004.1920 Cosmology and Nongalactic Astrophysics +1004.3940 Mesoscale and Nanoscale Physics +1005.5179 Number Theory +1006.5333 Combinatorics +1007.0959 Statistics Theory +1007.2140 Data Structures and Algorithms +1008.2794 Differential Geometry +1009.4365 +1012.1361 Combinatorics +1012.1795 Number Theory +1102.3483 Combinatorics +1104.1936 Functional Analysis +1104.2730 Atmospheric and Oceanic Physics +1105.2288 Analysis of PDEs +1105.3172 Theory +1105.5329 Physics and Society +1106.2030 Number Theory +1107.1972 Information Theory +1107.5169 Cosmology and Nongalactic Astrophysics +1109.6210 Risk Management +1109.6421 Theory +1111.2303 +1111.6383 +1112.2969 Quantum Algebra +1112.3130 Combinatorics +1201.1842 +1202.4466 Theory +1204.4198 Representation Theory +1204.4876 +1204.5971 Optics +1205.2571 Molecular Networks +1205.5166 Analysis of PDEs +1206.0247 Algebraic Topology +1206.5462 +1206.6643 Classical Analysis and ODEs +1207.1117 Operator Algebras +1208.0258 +1208.1803 Numerical Analysis +1208.2468 Superconductivity +1208.6375 Probability +1209.0091 Cosmology and Nongalactic Astrophysics +1209.0473 +1209.4683 Information Theory +1209.4924 Optics +1209.5263 +1210.0572 Numerical Analysis +1210.1125 Number Theory +1210.1634 Chemical Physics +1210.1638 Chemical Physics +1210.1913 Chemical Physics +1210.2403 Statistical Mechanics +1210.2594 Analysis of PDEs +1210.5507 Cosmology and Nongalactic Astrophysics +1210.6055 Probability +1210.6509 Combinatorics +1210.6737 Atomic Physics +1210.7502 Dynamical Systems +1211.1372 Optics +1211.3233 Computational Engineering, Finance, and Science +1211.3348 Phenomenology +1211.5045 +1211.5521 Classical Physics +1211.6200 Algebraic Geometry +1211.6695 Trading and Market Microstructure +1212.0140 Atmospheric and Oceanic Physics +1212.0922 Fluid Dynamics +1212.1433 Fluid Dynamics +1212.1939 General Physics +1212.4354 Statistical Mechanics +1212.4495 Phenomenology +1301.5278 Commutative Algebra +1301.7176 +1302.0252 Algebraic Geometry +1302.0309 Databases +1302.3026 Functional Analysis +1302.3118 +1302.3504 Quantum Gases +1302.4182 +1302.4807 Mesoscale and Nanoscale Physics +1302.4828 Phenomenology +1302.5584 +1302.6039 Combinatorics +1302.6871 Cosmology and Nongalactic Astrophysics +1303.0205 Instrumentation and Detectors +1303.0466 Superconductivity +1303.3304 Superconductivity +1303.3901 Neural and Evolutionary Computing +1303.3937 Commutative Algebra +1303.5326 +1303.6281 Cosmology and Nongalactic Astrophysics +1303.6417 +1304.0403 Numerical Analysis +1304.0800 Probability +1304.1276 +1304.1978 Neural and Evolutionary Computing +1304.2333 Information Theory +1304.2438 Materials Science +1304.2980 Theory +1304.3235 Analysis of PDEs +1304.3254 Mesoscale and Nanoscale Physics +1304.3308 Mesoscale and Nanoscale Physics +1304.3479 Systems and Control +1304.7602 +1305.1069 Strongly Correlated Electrons +1305.1071 Geometric Topology +1305.2072 Strongly Correlated Electrons +1305.2997 Materials Science +1305.3224 Information Theory +1305.3607 Theory +1305.3857 Adaptation and Self-Organizing Systems +1305.6598 Quantum Gases +1305.6688 +1306.1701 Phenomenology +1306.2410 Probability +1306.2576 Disordered Systems and Neural Networks +1306.2614 Strongly Correlated Electrons +1306.2733 Learning +1306.3008 Materials Science +1306.3455 Phenomenology +1306.4898 Programming Languages +1306.5878 Phenomenology +1306.6661 Phenomenology +1307.0037 +1307.0367 Soft Condensed Matter +1307.0729 Data Analysis, Statistics and Probability +1307.0746 Analysis of PDEs +1307.1097 +1307.1548 Combinatorics +1307.1892 Strongly Correlated Electrons +1307.2165 Solar and Stellar Astrophysics +1307.2431 Mesoscale and Nanoscale Physics +1307.2822 Methodology +1307.3921 Analysis of PDEs +1307.4335 Optics +1307.4951 Theory +1307.4970 Mesoscale and Nanoscale Physics +1307.5025 Experiment +1307.6692 Populations and Evolution +1307.7065 Strongly Correlated Electrons +1307.7097 Instrumentation and Detectors +1307.7337 Soft Condensed Matter +1307.8187 Learning +1308.2038 Solar and Stellar Astrophysics +1308.2288 Quantum Gases +1308.2320 Probability +1308.3247 Computational Complexity +1308.3290 Fluid Dynamics +1308.3381 Machine Learning +1308.3420 History and Overview +1308.3590 Applications +1308.3606 Analysis of PDEs +1308.3758 Dynamical Systems +1308.4330 Statistical Mechanics +1308.5389 Soft Condensed Matter +1308.5873 Computational Physics +1308.6346 +1308.6692 Theory +1309.0751 Combinatorics +1309.1253 Number Theory +1309.1941 Combinatorics +1309.2813 Complex Variables +1309.3383 High Energy Astrophysical Phenomena +1309.3702 General Topology +1309.3860 Materials Science +1309.4704 Theory +1309.4827 Superconductivity +1309.4885 Materials Science +1309.5009 Computational Complexity +1309.5294 Soft Condensed Matter +1309.5534 Statistics Theory +1309.5592 Differential Geometry +1309.5674 Information Theory +1309.5721 High Energy Astrophysical Phenomena +1309.5887 Solar and Stellar Astrophysics +1309.6099 Instrumentation and Methods for Astrophysics +1309.6164 Pricing of Securities +1309.6493 +1309.6597 Phenomenology +1309.6799 Complex Variables +1309.7707 Phenomenology +1309.7985 Instrumentation and Detectors +1310.0353 Combinatorics +1310.0431 Phenomenology +1310.0547 Physics and Society +1310.0776 Number Theory +1310.0903 Category Theory +1310.0920 Commutative Algebra +1310.0937 Algebraic Topology +1310.1122 Chaotic Dynamics +1310.1132 Experiment +1310.1387 Physics and Society +1310.1388 +1310.1390 Computers and Society +1310.1403 Biomolecules +1310.1404 Machine Learning +1310.1415 Machine Learning +1310.1416 Numerical Analysis +1310.1417 Combinatorics +1310.1419 Information Theory +1310.1423 +1310.1425 Computation and Language +1310.1426 Computation and Language +1310.1429 Probability +1310.1431 Chaotic Dynamics +1310.1434 Medical Physics +1310.1437 Instrumentation and Detectors +1310.1441 Chemical Physics +1310.1442 Information Theory +1310.1444 Portfolio Management +1310.1447 Phenomenology +1310.1448 Data Structures and Algorithms +1310.1449 Instrumentation and Methods for Astrophysics +1310.1453 Biomolecules +1310.1455 Materials Science +1310.1456 Atomic Physics +1310.1461 Materials Science +1310.1462 Quantitative Methods +1310.1466 Materials Science +1310.1467 Statistical Mechanics +1310.1469 Materials Science +1310.1470 Mesoscale and Nanoscale Physics +1310.1471 Mesoscale and Nanoscale Physics +1310.1474 Computational Physics +1310.1475 +1310.1477 Disordered Systems and Neural Networks +1310.1478 Disordered Systems and Neural Networks +1310.1482 Biological Physics +1310.1484 +1310.1485 Computational Physics +1310.1488 Optimization and Control +1310.1492 Dynamical Systems +1310.1494 Analysis of PDEs +1310.1498 Information Retrieval +1310.1499 Chemical Physics +1310.1500 Logic in Computer Science +1310.1503 Optics +1310.1506 Software Engineering +1310.1507 Discrete Mathematics +1310.1509 Complex Variables +1310.1510 Information Theory +1310.1512 Information Theory +1310.1514 Metric Geometry +1310.1515 Fluid Dynamics +1310.1516 Fluid Dynamics +1310.1517 Astrophysics of Galaxies +1310.1522 Materials Science +1310.1524 +1310.1531 Computer Vision and Pattern Recognition +1310.1535 Geometric Topology +1310.1536 Information Theory +1310.1543 Algebraic Geometry +1310.1544 Number Theory +1310.1545 Learning +1310.1551 Other Computer Science +1310.1552 Networking and Internet Architecture +1310.1553 Distributed, Parallel, and Cluster Computing +1310.1557 Rings and Algebras +1310.1563 Numerical Analysis +1310.1565 Instrumentation and Methods for Astrophysics +1310.1566 Probability +1310.1568 Optimization and Control +1310.1571 Information Theory +1310.1572 Soft Condensed Matter +1310.1573 History and Philosophy of Physics +1310.1575 Theory +1310.1576 Chaotic Dynamics +1310.1578 Probability +1310.1587 Probability +1310.1588 Operating Systems +1310.1590 Computation and Language +1310.1591 Functional Analysis +1310.1592 Plasma Physics +1310.1594 Instrumentation and Methods for Astrophysics +1310.1596 Representation Theory +1310.1597 Computation and Language +1310.1598 Algebraic Geometry +1310.1601 Statistical Finance +1310.1602 +1310.1603 Number Theory +1310.1606 Combinatorics +1310.1610 Combinatorics +1310.1611 Differential Geometry +1310.1612 Medical Physics +1310.1613 Superconductivity +1310.1614 Medical Physics +1310.1615 Dynamical Systems +1310.1619 Differential Geometry +1310.1620 Dynamical Systems +1310.1621 +1310.1624 Analysis of PDEs +1310.1625 History and Overview +1310.1630 Statistics Theory +1310.1636 Phenomenology +1310.1637 +1310.1640 Mesoscale and Nanoscale Physics +1310.1641 Instrumentation and Methods for Astrophysics +1310.1644 Fluid Dynamics +1310.1645 Number Theory +1310.1648 Populations and Evolution +1310.1649 Data Structures and Algorithms +1310.1655 Mesoscale and Nanoscale Physics +1310.1658 Number Theory +1310.1659 Learning +1310.1661 +1310.1668 Populations and Evolution +1310.1670 Fluid Dynamics +1310.1672 Computers and Society +1310.1673 Analysis of PDEs +1310.1674 Superconductivity +1310.1678 Neurons and Cognition +1310.1679 Networking and Internet Architecture +1310.1680 Theory +1310.1681 Instrumentation and Methods for Astrophysics +1310.1683 Astrophysics of Galaxies +1310.1685 Number Theory +1310.1687 Symplectic Geometry +1310.1689 Mesoscale and Nanoscale Physics +1310.1690 Computer Vision and Pattern Recognition +1310.1706 Accelerator Physics +1310.1709 Numerical Analysis +1310.1710 Differential Geometry +1310.1711 Geometric Topology +1310.1713 Instrumentation and Methods for Astrophysics +1310.1717 History and Philosophy of Physics +1310.1718 Analysis of PDEs +1310.1720 Biological Physics +1310.1722 +1310.1724 Phenomenology +1310.1725 Solar and Stellar Astrophysics +1310.1726 Computational Geometry +1310.1729 Probability +1310.1730 Phenomenology +1310.1732 Information Theory +1310.1738 +1310.1743 +1310.1751 Mesoscale and Nanoscale Physics +1310.1752 High Energy Astrophysical Phenomena +1310.1754 Mesoscale and Nanoscale Physics +1310.1758 Human-Computer Interaction +1310.1759 Mesoscale and Nanoscale Physics +1310.1760 Lattice +1310.1762 Experiment +1310.1763 Logic in Computer Science +1310.1766 Information Theory +1310.1767 Formal Languages and Automata Theory +1310.1769 Optimization and Control +1310.1771 Computer Vision and Pattern Recognition +1310.1775 Group Theory +1310.1777 Computer Science and Game Theory +1310.1778 +1310.1782 Mesoscale and Nanoscale Physics +1310.1786 General Finance +1310.1788 +1310.1791 Strongly Correlated Electrons +1310.1800 Methodology +1310.1801 Neurons and Cognition +1310.1805 Combinatorics +1310.1808 General Topology +1310.1811 Computer Vision and Pattern Recognition +1310.1813 Probability +1310.1814 Computer Science and Game Theory +1310.1815 Solar and Stellar Astrophysics +1310.1819 Instrumentation and Detectors +1310.1825 +1310.1827 Combinatorics +1310.1833 Networking and Internet Architecture +1310.1834 Soft Condensed Matter +1310.1836 High Energy Astrophysical Phenomena +1310.1840 Learning +1310.1841 Formal Languages and Automata Theory +1310.1847 Numerical Analysis +1310.1849 Logic +1310.1855 Computer Vision and Pattern Recognition +1310.1856 High Energy Astrophysical Phenomena +1310.1857 Optimization and Control +1310.1860 Metric Geometry +1310.1865 Geometric Topology +1310.1866 Mesoscale and Nanoscale Physics +1310.1869 Computer Vision and Pattern Recognition +1310.1870 Materials Science +1310.1871 Computational Physics +1310.1872 Analysis of PDEs +1310.1873 Phenomenology +1310.1874 Optimization and Control +1310.1879 Combinatorics +1310.1884 +1310.1887 Category Theory +1310.1891 Information Theory +1310.1894 High Energy Astrophysical Phenomena +1310.1896 Data Structures and Algorithms +1310.1897 +1310.1902 Instrumentation and Detectors +1310.1909 Quantum Algebra +gr-qc/9502039 +math/0501305 General Topology +math/0501524 General Topology +math/0501525 Logic +math/0501526 Logic +math/0501527 Logic +nucl-ex/0401027 +nucl-ex/0401039 +0801.3310 Combinatorics +0808.0410 Number Theory +0812.2672 Algebraic Geometry +0903.2843 Number Theory +1003.1520 Discrete Mathematics +1010.1420 Number Theory +1011.3833 Number Theory +1012.0364 +1104.2504 Numerical Analysis +1105.0679 Representation Theory +1105.2272 Complex Variables +1105.2894 Neural and Evolutionary Computing +1105.5210 Algebraic Geometry +1107.1799 General Physics +1108.1893 Number Theory +1110.1773 Functional Analysis +1111.4587 Optimization and Control +1112.1924 Representation Theory +1203.1618 Solar and Stellar Astrophysics +1203.4313 Number Theory +1204.3875 Algebraic Geometry +1205.0120 Theory +1205.0651 Information Theory +1205.3416 Representation Theory +1205.5252 Number Theory +1206.0427 Optics +1206.5410 +1206.6088 +1207.1238 Information Theory +1207.2908 Computer Science and Game Theory +1207.3616 Differential Geometry +1207.3911 +1207.6360 Probability +1208.1208 Materials Science +1208.2247 Quantitative Methods +1208.5929 Instrumentation and Methods for Astrophysics +1209.6005 Number Theory +1210.1211 Cosmology and Nongalactic Astrophysics +1210.3838 Earth and Planetary Astrophysics +1210.3870 Representation Theory +1211.0497 High Energy Astrophysical Phenomena +1211.1024 Representation Theory +1211.2089 Dynamical Systems +1211.2300 Statistics Theory +1211.3209 Probability +1211.3629 Mesoscale and Nanoscale Physics +1211.5502 Statistical Finance +1212.1488 Populations and Evolution +1212.3157 Theory +1212.4100 Phenomenology +1212.4569 Machine Learning +1212.6759 Mesoscale and Nanoscale Physics +1301.1755 Geometric Topology +1301.4187 Chaotic Dynamics +1301.5095 +1301.6562 Computational Physics +1301.6646 Computer Vision and Pattern Recognition +1302.0028 Quantum Gases +1302.0165 +1302.0709 +1302.2382 Optics +1302.3767 Physics Education +1303.6509 Exactly Solvable and Integrable Systems +1303.6510 Exactly Solvable and Integrable Systems +1304.2335 Algebraic Geometry +1304.4758 Computers and Society +1304.6517 Mesoscale and Nanoscale Physics +1304.6978 Algebraic Geometry +1304.7537 Chaotic Dynamics +1305.4282 Dynamical Systems +1305.4498 Differential Geometry +1305.4680 Symplectic Geometry +1306.1404 Theory +1306.2352 Strongly Correlated Electrons +1306.2716 Cosmology and Nongalactic Astrophysics +1306.2831 Statistical Finance +1306.2866 Digital Libraries +1306.2869 Digital Libraries +1306.6102 Quantum Gases +1306.6159 Superconductivity +1307.1799 Computation +1307.4751 +1307.5548 +1307.6633 Statistical Mechanics +1307.6862 Phenomenology +1307.7887 Symbolic Computation +1308.1717 +1308.2402 Representation Theory +1308.2776 Statistical Mechanics +1308.3839 Computation and Language +1308.4119 Fluid Dynamics +1308.6432 Systems and Control +1308.6541 Soft Condensed Matter +1309.2548 Atomic Physics +1309.5998 Physics and Society +1309.6508 +1309.6968 Complex Variables +1309.7786 Cosmology and Nongalactic Astrophysics +1309.7800 Group Theory +1310.0763 Phenomenology +1310.1025 Systems and Control +1310.1803 Information Theory +1310.2373 Strongly Correlated Electrons +1310.3041 Statistical Mechanics +1310.3834 Superconductivity +1310.5456 Combinatorics +1310.6604 Functional Analysis +1310.6880 Networking and Internet Architecture +1311.0491 Materials Science +1311.2046 Classical Analysis and ODEs +1311.2394 Experiment +1311.3015 Strongly Correlated Electrons +1311.3331 Theory +1311.3372 Earth and Planetary Astrophysics +1311.3467 Cosmology and Nongalactic Astrophysics +1311.3799 Applications +1311.4070 +1311.4180 Computers and Society +1311.4434 Phenomenology +1311.5103 +1311.5528 Mesoscale and Nanoscale Physics +1311.6388 Optimization and Control +1312.0453 Symbolic Computation +1312.4716 Information Theory +1312.5212 Neurons and Cognition +1312.5297 Social and Information Networks +1312.5766 Machine Learning +1312.6391 Analysis of PDEs +1312.7176 +1312.7222 +1312.7284 Logic in Computer Science +1312.7341 General Mathematics +1312.7342 Probability +1312.7345 Computer Vision and Pattern Recognition +1312.7346 Risk Management +1312.7351 Probability +1312.7352 Instrumentation and Methods for Astrophysics +1312.7354 Emerging Technologies +1312.7355 Emerging Technologies +1312.7356 Instrumentation and Methods for Astrophysics +1312.7363 Computational Geometry +1312.7376 Statistical Mechanics +1312.7378 Analysis of PDEs +1312.7379 Optimization and Control +1312.7382 Differential Geometry +1312.7388 Differential Geometry +1312.7392 +1312.7393 Accelerator Physics +1312.7396 Probability +1312.7398 Analysis of PDEs +1312.7400 Commutative Algebra +1312.7403 Commutative Algebra +1312.7405 Combinatorics +1312.7414 Computer Vision and Pattern Recognition +1312.7418 Dynamical Systems +1312.7421 +1312.7422 Artificial Intelligence +1312.7423 Soft Condensed Matter +1312.7430 Systems and Control +1312.7432 Physics and Society +1312.7434 Combinatorics +1312.7436 Other Computer Science +1312.7439 Statistics Theory +1312.7441 Other Computer Science +1312.7444 Human-Computer Interaction +1312.7445 Systems and Control +1312.7447 Systems and Control +1312.7448 Representation Theory +1312.7451 Phenomenology +1312.7453 Group Theory +1312.7460 General Finance +1312.7461 Differential Geometry +1312.7463 Machine Learning +1312.7465 Dynamical Systems +1312.7473 Optimization and Control +1312.7477 General Topology +1312.7478 +1312.7479 Computation +1312.7480 Statistical Mechanics +1312.7484 Dynamical Systems +1312.7486 Quantum Gases +1312.7495 Combinatorics +1312.7496 Atmospheric and Oceanic Physics +1312.7499 Data Structures and Algorithms +1312.7501 +1312.7502 High Energy Astrophysical Phenomena +1312.7503 Subcellular Processes +1312.7511 Computer Vision and Pattern Recognition +1312.7515 Logic +1312.7516 Geometric Topology +1312.7517 Optimization and Control +1312.7522 Discrete Mathematics +1312.7523 Logic in Computer Science +1312.7524 Representation Theory +1312.7525 Methodology +1312.7528 Biomolecules +1312.7529 Combinatorics +1312.7531 Geometric Topology +1312.7532 Quantitative Methods +1312.7534 Spectral Theory +1312.7537 Plasma Physics +1312.7538 Quantitative Methods +1312.7539 Number Theory +1312.7542 Databases +1312.7549 Phenomenology +1312.7552 High Energy Astrophysical Phenomena +1312.7556 Quantitative Methods +1312.7557 Computer Vision and Pattern Recognition +1312.7558 Strongly Correlated Electrons +1312.7560 Computer Vision and Pattern Recognition +1312.7563 Discrete Mathematics +1312.7567 Methodology +1312.7570 Computer Vision and Pattern Recognition +1312.7572 Robotics +1312.7573 Computer Vision and Pattern Recognition +1312.7586 Superconductivity +1312.7587 Functional Analysis +1312.7589 Combinatorics +1312.7591 Functional Analysis +1312.7592 Chemical Physics +1312.7593 Analysis of PDEs +1312.7595 Statistical Mechanics +1312.7596 Analysis of PDEs +1312.7598 Mesoscale and Nanoscale Physics +1312.7599 Rings and Algebras +1312.7600 Analysis of PDEs +1312.7605 Logic in Computer Science +1312.7611 Materials Science +1312.7613 Solar and Stellar Astrophysics +1312.7615 Computational Complexity +1312.7622 Instrumentation and Detectors +1312.7623 Experiment +1312.7624 Mesoscale and Nanoscale Physics +1312.7626 Distributed, Parallel, and Cluster Computing +1312.7629 Numerical Analysis +1312.7630 Social and Information Networks +1312.7632 Mesoscale and Nanoscale Physics +1312.7633 Combinatorics +1312.7636 Mesoscale and Nanoscale Physics +1312.7638 Dynamical Systems +1312.7641 Phenomenology +1312.7642 +1312.7643 Accelerator Physics +1312.7645 Networking and Internet Architecture +1312.7646 +1312.7647 Probability +1312.7654 Dynamical Systems +1312.7655 Pattern Formation and Solitons +1312.7656 Phenomenology +1312.7658 Learning +1312.7659 Lattice +1312.7660 Networking and Internet Architecture +1312.7664 Phenomenology +1312.7669 Phenomenology +1312.7670 Software Engineering +1312.7681 Materials Science +1312.7682 Group Theory +1312.7685 Distributed, Parallel, and Cluster Computing +1312.7686 Differential Geometry +1312.7693 Lattice +1312.7697 Category Theory +1312.7708 +1312.7709 Statistics Theory +1312.7711 +1312.7712 Methodology +1312.7719 Representation Theory +1312.7720 Mesoscale and Nanoscale Physics +1312.7721 +1312.7725 Classical Analysis and ODEs +1312.7728 Statistical Mechanics +1312.7729 Number Theory +1312.7730 Optimization and Control +1312.7735 Neurons and Cognition +1312.7737 Instrumentation and Methods for Astrophysics +1312.7739 Classical Analysis and ODEs +1312.7740 Artificial Intelligence +1312.7741 +1312.7742 Social and Information Networks +1312.7744 General Physics +1312.7745 Materials Science +1312.7749 Populations and Evolution +1312.7750 Machine Learning +1312.7754 +1312.7755 Analysis of PDEs +1312.7758 Software Engineering +1312.7761 Neurons and Cognition +1312.7764 Differential Geometry +1312.7768 Astrophysics of Galaxies +1312.7773 Superconductivity +1312.7775 Complex Variables +1312.7780 Group Theory +1312.7781 Group Theory +1312.7785 Probability +1312.7795 Statistics Theory +1312.7796 History and Overview +1312.7799 History and Overview +1312.7804 Functional Analysis +1312.7805 Accelerator Physics +1312.7812 Classical Physics +1312.7822 High Energy Astrophysical Phenomena +1312.7825 +1312.7827 Computation +1312.7833 Category Theory +1312.7835 +1312.7836 Algebraic Geometry +1312.7838 Number Theory +1312.7840 Statistics Theory +1312.7841 Phenomenology +1312.7844 Networking and Internet Architecture +1312.7848 Theory +1312.7859 Number Theory +1312.7860 Trading and Market Microstructure +1312.7861 Neurons and Cognition +1312.7862 Probability +1312.7867 Computation +1312.7870 Differential Geometry +1312.7871 Metric Geometry +cond-mat/0105191 Statistical Mechanics +1311.3597 Analysis of PDEs +0810.1151 Programming Languages +0902.1982 Analysis of PDEs +0910.3661 Mesoscale and Nanoscale Physics +0912.4007 Theory +1001.2242 Geometric Topology +1004.3345 +1007.3622 Machine Learning +1008.2892 General Physics +1011.3829 Analysis of PDEs +1011.3953 Classical Physics +1012.5816 Probability +1012.5959 Astrophysics of Galaxies +1101.1057 Machine Learning +1105.4217 Materials Science +1106.1166 +1108.4739 Applications +1109.4127 +1110.2969 Theory +1110.4617 +1111.5357 Discrete Mathematics +1201.1209 Classical Analysis and ODEs +1201.6138 Classical Analysis and ODEs +1202.1466 Theory +1202.1592 Mesoscale and Nanoscale Physics +1202.2307 +1203.0223 Combinatorics +1203.1960 Group Theory +1203.2180 Cosmology and Nongalactic Astrophysics +1203.4197 Cosmology and Nongalactic Astrophysics +1203.5962 +1203.6186 Commutative Algebra +1204.0003 Strongly Correlated Electrons +1204.4898 +1204.5276 Combinatorics +1205.0129 Classical Analysis and ODEs +1205.0939 Geometric Topology +1205.1013 Information Theory +1205.4780 Strongly Correlated Electrons +1206.3859 Mesoscale and Nanoscale Physics +1206.5839 Theory +1207.0130 +1207.3471 Atomic Physics +1207.3496 +1208.0902 Networking and Internet Architecture +1208.1587 Materials Science +1208.3550 Number Theory +1208.4678 Experiment +1208.5681 +1208.5864 Mesoscale and Nanoscale Physics +1208.6568 +1209.1172 Representation Theory +1209.1897 Cosmology and Nongalactic Astrophysics +1209.2141 Soft Condensed Matter +1209.3279 Soft Condensed Matter +1209.4927 Logic in Computer Science +1209.4948 +1210.1831 Strongly Correlated Electrons +1210.1942 Number Theory +1210.2178 Numerical Analysis +1210.2257 Disordered Systems and Neural Networks +1210.2492 Statistical Mechanics +1210.3239 Classical Analysis and ODEs +1210.3445 Probability +1210.3994 Quantum Gases +1210.4530 Physics and Society +1210.4608 +1210.4740 Theory +1210.5220 Mesoscale and Nanoscale Physics +1210.6569 Optics +1210.7011 +1211.0103 Accelerator Physics +1211.0112 Strongly Correlated Electrons +1211.0202 Mesoscale and Nanoscale Physics +1211.0300 Probability +1211.0461 Phenomenology +1211.0581 +1211.0682 Analysis of PDEs +1211.0871 Numerical Analysis +1211.1397 Cosmology and Nongalactic Astrophysics +1211.2036 Cosmology and Nongalactic Astrophysics +1211.2152 Optics +1211.2616 Cosmology and Nongalactic Astrophysics +1211.2837 Phenomenology +1211.3680 History and Overview +1211.4357 Strongly Correlated Electrons +1211.5537 Theory +1211.5838 Theory +1212.2856 +1212.3328 Phenomenology +1212.3788 Theory +1212.4128 Theory +1212.4159 Disordered Systems and Neural Networks +1212.4357 +1212.5893 Phenomenology +1212.6108 Probability +1212.6111 Phenomenology +1212.6435 Combinatorics +1212.6509 Materials Science +1212.6753 Theory +1212.6970 +1301.1116 Strongly Correlated Electrons +1301.2154 Theory +1301.2523 Phenomenology +1301.3072 Phenomenology +1301.3242 +1301.3677 Number Theory +1301.4507 Experiment +1301.5068 Phenomenology +1301.5178 Theory +1301.5348 Learning +1301.5663 Number Theory +1301.6085 Phenomenology +1301.6403 Instrumentation and Methods for Astrophysics +1301.6819 Rings and Algebras +1301.6967 Statistical Mechanics +1301.7086 Phenomenology +1302.0200 Mesoscale and Nanoscale Physics +1302.0297 Quantum Gases +1302.0755 Solar and Stellar Astrophysics +1302.1120 Soft Condensed Matter +1302.1200 Cosmology and Nongalactic Astrophysics +1302.2574 Phenomenology +1302.2928 Theory +1302.3222 Theory +1302.3427 Phenomenology +1302.3520 Astrophysics of Galaxies +1302.3873 Representation Theory +1302.3976 Mesoscale and Nanoscale Physics +1302.4515 Materials Science +1302.4524 Phenomenology +1302.4553 Phenomenology +1302.4750 Phenomenology +1302.5768 Theory +1302.6069 Theory +1303.0624 +1303.1041 Functional Analysis +1303.2259 Number Theory +1303.2508 Soft Condensed Matter +1303.2601 Cosmology and Nongalactic Astrophysics +1303.2974 Cryptography and Security +1303.4244 Combinatorics +1303.4305 High Energy Astrophysical Phenomena +1303.6328 Phenomenology +1304.0045 Analysis of PDEs +1304.0265 General Finance +1304.0872 Computational Complexity +1304.1298 Mesoscale and Nanoscale Physics +1304.1438 Differential Geometry +1304.1578 Materials Science +1304.1607 Algebraic Geometry +1304.2314 Number Theory +1304.2923 Group Theory +1304.3153 +1304.3225 Phenomenology +1304.3567 Differential Geometry +1304.3688 Probability +1304.3946 Optimization and Control +1304.3995 Representation Theory +1304.4009 Materials Science +1304.4020 Optimization and Control +1304.4134 Symbolic Computation +1304.4221 Chemical Physics +1304.4222 Computers and Society +1304.4223 Computers and Society +1304.4225 Rings and Algebras +1304.4241 Phenomenology +1304.4243 Computational Geometry +1304.4261 History and Overview +1304.4264 Differential Geometry +1304.4272 Functional Analysis +1304.4273 Cryptography and Security +1304.4274 Biomolecules +1304.4276 Experiment +1304.4278 Algebraic Topology +1304.4282 Numerical Analysis +1304.4284 Disordered Systems and Neural Networks +1304.4285 Networking and Internet Architecture +1304.4286 Combinatorics +1304.4288 Number Theory +1304.4292 Numerical Analysis +1304.4302 Methodology +1304.4303 Databases +1304.4304 Statistics Theory +1304.4306 Subcellular Processes +1304.4314 Optics +1304.4315 +1304.4317 Dynamical Systems +1304.4324 Social and Information Networks +1304.4327 Data Structures and Algorithms +1304.4329 Cryptography and Security +1304.4332 Number Theory +1304.4333 Computation +1304.4334 Computation +1304.4335 Combinatorics +1304.4336 Numerical Analysis +1304.4344 Learning +1304.4346 Probability +1304.4347 Phenomenology +1304.4350 Networking and Internet Architecture +1304.4354 Combinatorics +1304.4355 Chemical Physics +1304.4356 Optics +1304.4360 Phenomenology +1304.4362 Statistics Theory +1304.4363 Discrete Mathematics +1304.4365 Optimization and Control +1304.4367 Optics +1304.4369 Optimization and Control +1304.4371 Data Structures and Algorithms +1304.4374 Probability +1304.4376 Analysis of PDEs +1304.4378 +1304.4380 Optics +1304.4386 Superconductivity +1304.4391 Logic +1304.4393 Astrophysics of Galaxies +1304.4394 Classical Analysis and ODEs +1304.4405 High Energy Astrophysical Phenomena +1304.4409 Accelerator Physics +1304.4413 Phenomenology +1304.4415 Artificial Intelligence +1304.4416 Plasma Physics +1304.4417 Chemical Physics +1304.4418 Mesoscale and Nanoscale Physics +1304.4420 Statistical Mechanics +1304.4424 Instrumentation and Detectors +1304.4425 +1304.4429 Earth and Planetary Astrophysics +1304.4431 Functional Analysis +1304.4432 Optics +1304.4433 Applications +1304.4435 Solar and Stellar Astrophysics +1304.4439 Applications +1304.4440 Number Theory +1304.4441 Applications +1304.4445 Applications +1304.4446 Cosmology and Nongalactic Astrophysics +1304.4447 Optics +1304.4448 Applications +1304.4450 Dynamical Systems +1304.4455 Solar and Stellar Astrophysics +1304.4457 Strongly Correlated Electrons +1304.4459 Materials Science +1304.4462 Analysis of PDEs +1304.4464 Information Theory +1304.4465 Phenomenology +1304.4467 High Energy Astrophysical Phenomena +1304.4468 Soft Condensed Matter +1304.4469 Probability +1304.4475 +1304.4476 General Finance +1304.4477 +1304.4479 Biological Physics +1304.4480 Algebraic Geometry +1304.4481 Representation Theory +1304.4482 Quantum Algebra +1304.4485 Biological Physics +1304.4488 Disordered Systems and Neural Networks +1304.4489 Analysis of PDEs +1304.4491 Dynamical Systems +1304.4492 +1304.4501 Mesoscale and Nanoscale Physics +1304.4502 Analysis of PDEs +1304.4513 Numerical Analysis +1304.4519 Computational Complexity +1304.4520 Computation and Language +1304.4524 Networking and Internet Architecture +1304.4527 Analysis of PDEs +1304.4529 Complex Variables +1304.4531 Strongly Correlated Electrons +1304.4532 Differential Geometry +1304.4534 Probability +1304.4535 Computer Vision and Pattern Recognition +1304.4537 Soft Condensed Matter +1304.4539 Software Engineering +1304.4547 Combinatorics +1304.4548 Networking and Internet Architecture +1304.4549 Machine Learning +1304.4553 Discrete Mathematics +1304.4555 Quantum Algebra +1304.4557 Logic in Computer Science +1304.4560 Theory +1304.4561 Optimization and Control +1304.4572 Cryptography and Security +1304.4573 Populations and Evolution +1304.4580 Probability +1304.4581 Instrumentation and Detectors +cond-mat/0612554 Soft Condensed Matter +0706.4230 Complex Variables +0710.5218 Statistics Theory +0901.0264 Probability +0907.3576 Information Theory +1006.1059 Complex Variables +1006.1380 Computer Science and Game Theory +1006.4592 K-Theory and Homology +1006.4978 Analysis of PDEs +1006.5066 Information Theory +1007.0238 Methodology +1011.5204 Complex Variables +1101.3298 High Energy Astrophysical Phenomena +1102.3100 Numerical Analysis +1106.2410 Classical Analysis and ODEs +1107.0744 Astrophysics of Galaxies +1107.2402 High Energy Astrophysical Phenomena +1108.2221 Functional Analysis +1108.3336 Strongly Correlated Electrons +1111.1161 Theory +1111.1287 Group Theory +1111.5674 Superconductivity +1112.2818 Phenomenology +1112.6045 Physics and Society +1112.6151 Probability +1201.2457 Representation Theory +1201.5209 Classical Analysis and ODEs +1201.6344 Materials Science +1202.1556 Dynamical Systems +1202.2213 Materials Science +1202.2520 Complex Variables +1203.2925 Astrophysics of Galaxies +1204.1027 Theory +1204.2750 +1204.2930 Differential Geometry +1204.4487 Mesoscale and Nanoscale Physics +1204.5240 Atomic Physics +1204.5247 Commutative Algebra +1205.0709 Statistical Mechanics +1205.1497 +1205.2075 Analysis of PDEs +1205.4046 Analysis of PDEs +1205.4919 Probability +1205.5225 Strongly Correlated Electrons +1205.6923 Superconductivity +1206.3335 +1206.3738 Performance +1206.4151 High Energy Astrophysical Phenomena +1206.4272 Fluid Dynamics +1206.5421 Social and Information Networks +1206.6665 Experiment +1207.0298 Neurons and Cognition +1207.0795 Solar and Stellar Astrophysics +1207.3417 +1207.4919 Materials Science +1207.7203 Analysis of PDEs +1208.0668 +1208.1897 Rings and Algebras +1208.2951 Phenomenology +1208.3229 Number Theory +1208.3393 Number Theory +1208.4518 Earth and Planetary Astrophysics +1208.4669 Phenomenology +1208.6524 Experiment +1209.0225 High Energy Astrophysical Phenomena +1209.0263 Computational Complexity +1209.0489 Materials Science +1209.0496 Superconductivity +1209.2431 Astrophysics of Galaxies +1209.3861 Strongly Correlated Electrons +1209.4260 Operator Algebras +1209.4415 Mesoscale and Nanoscale Physics +1209.5411 Biological Physics +1209.5516 Representation Theory +1209.6396 Data Structures and Algorithms +1210.2825 Mesoscale and Nanoscale Physics +1210.5757 Logic +1210.5816 Materials Science +1210.6029 High Energy Astrophysical Phenomena +1210.7890 Phenomenology +1210.8383 Superconductivity +1211.0231 +1211.0355 Materials Science +1211.1046 +1211.2901 Quantum Gases +1211.3251 Differential Geometry +1211.4145 Functional Analysis +1211.4980 +1211.5339 Solar and Stellar Astrophysics +1211.6065 Biomolecules +1211.6516 Phenomenology +1212.0551 +1212.0559 History and Overview +1212.0729 +1212.2012 Probability +1212.2694 Strongly Correlated Electrons +1212.2976 Strongly Correlated Electrons +1212.2985 Solar and Stellar Astrophysics +1212.3444 Exactly Solvable and Integrable Systems +1212.3855 Strongly Correlated Electrons +1212.4023 Disordered Systems and Neural Networks +1212.5930 Phenomenology +1212.6916 Theory +1212.6968 Cosmology and Nongalactic Astrophysics +1301.0068 Genomics +1301.0992 Biomolecules +1301.1643 General Physics +1301.2167 Methodology +1301.2218 Systems and Control +1301.2985 Differential Geometry +1301.3946 Data Structures and Algorithms +1301.4797 Applications +1301.7738 Computation and Language +1302.0103 Databases +1302.0259 Earth and Planetary Astrophysics +1302.0772 General Mathematics +1302.1186 Group Theory +1302.2503 Representation Theory +1302.3368 High Energy Astrophysical Phenomena +1302.3431 Logic +1302.3449 Logic +1302.3454 +1302.3637 +1302.3933 K-Theory and Homology +1302.4236 Materials Science +1302.4345 +1302.4360 Functional Analysis +1302.4384 Digital Libraries +1302.4412 Information Retrieval +1302.4427 Experiment +1302.4428 Differential Geometry +1302.4429 Differential Geometry +1302.4433 Information Theory +1302.4434 General Topology +1302.4435 Differential Geometry +1302.4446 +1302.4452 High Energy Astrophysical Phenomena +1302.4455 Solar and Stellar Astrophysics +1302.4462 Instrumentation and Methods for Astrophysics +1302.4464 Hardware Architecture +1302.4465 Physics and Society +1302.4466 Complex Variables +1302.4467 Strongly Correlated Electrons +1302.4470 Combinatorics +1302.4471 Physics and Society +1302.4472 Experiment +1302.4474 Information Theory +1302.4481 Algebraic Geometry +1302.4485 Astrophysics of Galaxies +1302.4489 Computation and Language +1302.4490 Physics and Society +1302.4492 Computation and Language +1302.4494 Representation Theory +1302.4500 Metric Geometry +1302.4501 Mesoscale and Nanoscale Physics +1302.4503 Earth and Planetary Astrophysics +1302.4504 Physics and Society +1302.4506 Classical Analysis and ODEs +1302.4513 Numerical Analysis +1302.4517 Differential Geometry +1302.4519 Neural and Evolutionary Computing +1302.4523 +1302.4526 Probability +1302.4529 +1302.4534 Materials Science +1302.4535 Biological Physics +1302.4541 Materials Science +1302.4543 Theory +1302.4544 Distributed, Parallel, and Cluster Computing +1302.4545 Computer Science and Game Theory +1302.4546 Social and Information Networks +1302.4548 Instrumentation and Detectors +1302.4552 Statistics Theory +1302.4555 Soft Condensed Matter +1302.4556 Soft Condensed Matter +1302.4557 Medical Physics +1302.4558 Distributed, Parallel, and Cluster Computing +1302.4561 Statistics Theory +1302.4569 Instrumentation and Detectors +1302.4570 Differential Geometry +1302.4573 Category Theory +1302.4577 Lattice +1302.4578 Materials Science +1302.4583 Superconductivity +1302.4586 +1302.4592 Trading and Market Microstructure +1302.4595 Risk Management +1302.4596 Analysis of PDEs +1302.4599 Metric Geometry +1302.4601 Analysis of PDEs +1302.4605 Statistics Theory +1302.4607 Statistics Theory +1302.4609 Cryptography and Security +1302.4615 Probability +1302.4617 Computational Physics +1302.4619 Computation and Language +1302.4621 Earth and Planetary Astrophysics +1302.4622 Number Theory +1302.4623 +1302.4629 Analysis of PDEs +1302.4630 Chemical Physics +1302.4632 +1302.4634 High Energy Astrophysical Phenomena +1302.4635 Commutative Algebra +1302.4636 Cosmology and Nongalactic Astrophysics +1302.4637 Probability +1302.4638 Earth and Planetary Astrophysics +1302.4639 Metric Geometry +1302.4640 Cosmology and Nongalactic Astrophysics +1302.4644 Combinatorics +1302.4647 Combinatorics +1302.4648 Fluid Dynamics +1302.4654 +1302.4655 Number Theory +1302.4656 Networking and Internet Architecture +1302.4657 Strongly Correlated Electrons +1302.4660 Information Theory +1302.4667 Algebraic Geometry +1302.4668 Probability +1302.4670 Information Theory +1302.4673 Computer Vision and Pattern Recognition +1302.4675 Mesoscale and Nanoscale Physics +1302.4680 Information Theory +1302.4681 Rings and Algebras +1302.4688 Symbolic Computation +1302.4699 Materials Science +1302.4701 Information Theory +1302.4702 Numerical Analysis +1302.4703 Combinatorics +1302.4705 Information Theory +1302.4711 General Mathematics +1302.4712 Classical Analysis and ODEs +1302.4717 Information Theory +1302.4720 Networking and Internet Architecture +1302.4721 Information Theory +1302.4726 Information Retrieval +1302.4731 History and Overview +1302.4734 +1302.4735 Applications +1302.4738 Probability +math/0406440 Logic +0707.4143 +0708.3874 +0807.4132 General Literature +0903.2867 Combinatorics +0906.2056 Number Theory +0907.0187 Rings and Algebras +0912.2966 General Physics +1009.0943 Rings and Algebras +1009.3260 Algebraic Topology +1011.2376 Theory +1103.6085 Earth and Planetary Astrophysics +1104.0919 Data Structures and Algorithms +1105.2525 Combinatorics +1105.5380 +1106.5931 Experiment +1107.3318 Number Theory +1107.5519 +1109.1242 Differential Geometry +1109.2269 +1110.0692 Numerical Analysis +1110.5276 Computational Finance +1110.6297 Information Theory +1111.0280 +1111.1339 Probability +1112.5742 Geophysics +1112.5746 Geophysics +1112.6233 Operator Algebras +1201.5054 Exactly Solvable and Integrable Systems +1202.1930 Probability +1202.6559 Optics +1203.1629 +1203.5352 Algebraic Geometry +1204.0832 Logic +1204.3458 +1205.0792 Information Theory +1207.0850 Number Theory +1207.4033 Differential Geometry +1207.7265 +1209.0108 +1209.3127 Complex Variables +1209.3661 +1209.3978 Theory +1209.4164 Soft Condensed Matter +1209.4339 Probability +1209.6488 Dynamical Systems +1210.1277 Complex Variables +1210.1929 +1211.1314 Analysis of PDEs +1211.2023 Astrophysics of Galaxies +1211.3691 Analysis of PDEs +1211.4086 Computational Physics +1211.4861 Astrophysics of Galaxies +1211.4933 Populations and Evolution +1211.5139 Theory +1211.5586 +1212.0461 Strongly Correlated Electrons +1212.0964 Cosmology and Nongalactic Astrophysics +1212.1531 Geometric Topology +1212.4211 Optimization and Control +1301.1480 +1301.2633 Algebraic Geometry +1301.3563 Number Theory +1301.5524 Plasma Physics +1302.2708 Functional Analysis +1302.3463 Applications +1302.4693 Genomics +1303.2329 Number Theory +1303.3710 Phenomenology +1303.3951 Materials Science +1303.4779 Complex Variables +1303.4821 +1303.6143 Chaotic Dynamics +1303.6877 Instrumentation and Methods for Astrophysics +1304.1025 Phenomenology +1304.1866 +1304.1896 Physics and Society +1304.3472 Mesoscale and Nanoscale Physics +1304.4375 Quantum Gases +1304.5187 Theory +1304.6821 Theory +1305.0068 +1305.0123 Superconductivity +1305.1686 Phenomenology +1305.1750 +1305.2484 Phenomenology +1305.3572 Differential Geometry +1305.5095 +1306.0009 Cosmology and Nongalactic Astrophysics +1306.0582 Theory +1306.0834 Rings and Algebras +1306.1540 Theory +1306.2413 Logic in Computer Science +1306.3104 Differential Geometry +1306.4459 Mesoscale and Nanoscale Physics +1306.5563 Strongly Correlated Electrons +1306.6047 Programming Languages +1306.6141 Information Theory +1307.0202 Populations and Evolution +1307.0766 Number Theory +1307.2582 Optimization and Control +1307.3563 Biological Physics +1307.3599 +1307.3689 Theory +1307.4038 Category Theory +1307.7425 Phenomenology +1307.8040 Optimization and Control +1308.0410 Differential Geometry +1308.1134 Classical Analysis and ODEs +1308.2182 +1308.2387 Optics +1308.2498 +1308.2581 Data Structures and Algorithms +1308.2612 Differential Geometry +1308.2748 Probability +1308.2805 Commutative Algebra +1308.2836 Statistics Theory +1308.2858 Data Structures and Algorithms +1308.2961 Combinatorics +1308.2970 Computational Complexity +1308.2971 Instrumentation and Methods for Astrophysics +1308.2972 Classical Analysis and ODEs +1308.2973 Experiment +1308.2978 Experiment +1308.2980 Statistical Mechanics +1308.2981 +1308.2983 Combinatorics +1308.2986 Differential Geometry +1308.2988 Dynamical Systems +1308.2989 Experiment +1308.2995 Representation Theory +1308.2996 Dynamical Systems +1308.2997 Algebraic Geometry +1308.2998 +1308.3002 Fluid Dynamics +1308.3005 Analysis of PDEs +1308.3009 Data Analysis, Statistics and Probability +1308.3012 Combinatorics +1308.3013 Materials Science +1308.3015 Robotics +1308.3018 Exactly Solvable and Integrable Systems +1308.3019 Atomic Physics +1308.3023 Soft Condensed Matter +1308.3027 Complex Variables +1308.3031 Complex Variables +1308.3032 Biomolecules +1308.3036 Rings and Algebras +1308.3037 Combinatorics +1308.3040 Soft Condensed Matter +1308.3041 +1308.3050 Materials Science +1308.3051 Optics +1308.3055 Rings and Algebras +1308.3056 Symplectic Geometry +1308.3063 Differential Geometry +1308.3069 Materials Science +1308.3070 Biological Physics +1308.3074 Combinatorics +1308.3083 Complex Variables +1308.3090 Probability +1308.3092 Algebraic Topology +1308.3093 Commutative Algebra +1308.3094 Physics and Society +1308.3097 Probability +1308.3098 +1308.3100 +1308.3101 Computer Vision and Pattern Recognition +1308.3103 Quantitative Methods +1308.3104 Soft Condensed Matter +1308.3105 Superconductivity +1308.3106 Computation and Language +1308.3108 Commutative Algebra +1308.3112 Combinatorics +1308.3118 Atomic Physics +1308.3120 Solar and Stellar Astrophysics +1308.3127 Performance +1308.3129 Superconductivity +1308.3131 Strongly Correlated Electrons +1308.3135 +1308.3143 Metric Geometry +1308.3147 Astrophysics of Galaxies +1308.3155 Information Theory +1308.3156 Formal Languages and Automata Theory +1308.3159 Mesoscale and Nanoscale Physics +1308.3164 +1308.3165 General Physics +1308.3166 Phenomenology +1308.3172 Genomics +1308.3174 Social and Information Networks +1308.3177 Information Retrieval +1308.3178 Combinatorics +1308.3181 Computational Geometry +1308.3183 +1308.3187 Algebraic Topology +1308.3192 Group Theory +1308.3194 Optics +1308.3202 High Energy Astrophysical Phenomena +1308.3203 Programming Languages +1308.3209 High Energy Astrophysical Phenomena +1308.3210 Combinatorics +1308.3213 Experiment +1308.3214 Numerical Analysis +1308.3216 Solar and Stellar Astrophysics +1308.3217 Information Theory +1308.3222 High Energy Astrophysical Phenomena +cond-mat/0508282 Mesoscale and Nanoscale Physics +math/0507502 Number Theory +math/0601472 Quantum Algebra +0706.0276 Mesoscale and Nanoscale Physics +0708.4108 Quantum Algebra +0803.0888 Other Quantitative Biology +0810.3947 Combinatorics +0903.2807 Quantum Algebra +0910.0790 Other Condensed Matter +0910.0794 Other Condensed Matter +0911.5287 Quantum Algebra +0912.2232 +1003.5728 Mesoscale and Nanoscale Physics +1005.1503 Algebraic Geometry +1005.1781 Probability +1007.4992 +1009.3676 Combinatorics +1009.4424 General Physics +1012.3200 Strongly Correlated Electrons +1101.1972 Functional Analysis +1102.4210 Applications +1102.4754 High Energy Astrophysical Phenomena +1104.5313 Complex Variables +1105.5524 Superconductivity +1105.5527 Superconductivity +1107.1607 Probability +1107.3223 Complex Variables +1107.3367 Probability +1108.3099 Mesoscale and Nanoscale Physics +1109.0557 Metric Geometry +1109.1094 Earth and Planetary Astrophysics +1109.1769 +1109.6715 Statistical Mechanics +1110.2350 Programming Languages +1111.5091 Superconductivity +1111.5600 Number Theory +1112.2675 Phenomenology +1201.1573 Probability +1201.2583 Optics +1201.2990 +1201.5145 Solar and Stellar Astrophysics +1202.1167 +1202.3532 Instrumentation and Detectors +1202.5187 Information Theory +1203.3630 Earth and Planetary Astrophysics +1203.4325 +1204.0049 Phenomenology +1204.0429 Information Theory +1204.3075 Populations and Evolution +1204.5768 Superconductivity +1205.0247 Disordered Systems and Neural Networks +1205.0880 Statistics Theory +1205.1070 Differential Geometry +1205.3239 Superconductivity +1206.1287 +1206.4075 +1206.6121 Statistical Mechanics +1206.6190 Information Theory +1206.6776 Phenomenology +1207.0043 Data Structures and Algorithms +1207.0166 Learning +1207.1596 +1207.2507 Statistical Mechanics +1207.3197 Mesoscale and Nanoscale Physics +1207.3629 Combinatorics +1207.5800 Cosmology and Nongalactic Astrophysics +1207.6080 +1207.6136 Mesoscale and Nanoscale Physics +1207.6550 Statistical Mechanics +1208.0471 Strongly Correlated Electrons +1208.0747 Quantitative Methods +1208.1354 Mesoscale and Nanoscale Physics +1208.1512 Statistical Mechanics +1208.2052 Fluid Dynamics +1208.2854 Mesoscale and Nanoscale Physics +1208.3362 Group Theory +1208.5393 Optimization and Control +1208.6112 Symbolic Computation +1208.6143 Strongly Correlated Electrons +1208.6400 +1209.2618 Cosmology and Nongalactic Astrophysics +1209.4460 Phenomenology +1210.1298 +1210.1822 Mesoscale and Nanoscale Physics +1210.2399 High Energy Astrophysical Phenomena +1210.3669 +1210.4109 Theory +1210.4584 Methodology +1210.5012 Computer Science and Game Theory +1210.5099 High Energy Astrophysical Phenomena +1211.0505 +1211.0590 Chemical Physics +1211.1482 Computer Vision and Pattern Recognition +1211.4139 Spectral Theory +1211.4143 Analysis of PDEs +1211.4144 +1211.4295 Statistical Mechanics +1211.7232 Social and Information Networks +1212.1133 +1212.1529 Dynamical Systems +1212.1742 High Energy Astrophysical Phenomena +1212.2857 Artificial Intelligence +1212.4147 Solar and Stellar Astrophysics +1212.4553 General Physics +1212.4600 Rings and Algebras +1212.5331 Information Retrieval +1212.5998 Statistical Mechanics +1301.0876 Statistical Mechanics +1301.1372 Experiment +1301.1753 Networking and Internet Architecture +1301.1793 Spectral Theory +1301.1798 Algebraic Geometry +1301.2601 Cosmology and Nongalactic Astrophysics +1301.2721 Number Theory +1301.2743 +1301.2767 Analysis of PDEs +1301.2989 Phenomenology +1301.3171 Theory +1301.3385 Computer Vision and Pattern Recognition +1301.3502 Solar and Stellar Astrophysics +1301.3503 Materials Science +1301.3513 Lattice +1301.3514 Machine Learning +1301.3520 Lattice +1301.3523 Applications +1301.3524 Learning +1301.3525 Phenomenology +1301.3528 Genomics +1301.3532 Phenomenology +1301.3534 Instrumentation and Methods for Astrophysics +1301.3535 Systems and Control +1301.3537 Artificial Intelligence +1301.3539 Learning +1301.3546 Dynamical Systems +1301.3547 Computation and Language +1301.3552 Systems and Control +1301.3556 Classical Analysis and ODEs +1301.3557 Learning +1301.3558 Methodology +1301.3560 Computer Vision and Pattern Recognition +1301.3570 Machine Learning +1301.3571 Statistical Mechanics +1301.3575 Learning +1301.3586 Analysis of PDEs +1301.3589 Analysis of PDEs +1301.3590 Information Theory +1301.3591 Lattice +1301.3594 Number Theory +1301.3601 Networking and Internet Architecture +1301.3603 Numerical Analysis +1301.3604 Theory +1301.3606 Astrophysics of Galaxies +1301.3609 Computer Science and Game Theory +1301.3615 Materials Science +1301.3619 Lattice +1301.3620 Optics +1301.3621 Materials Science +1301.3628 +1301.3633 Phenomenology +1301.3635 Phenomenology +1301.3636 +1301.3638 Group Theory +1301.3640 Operator Algebras +1301.3644 Computer Vision and Pattern Recognition +1301.3651 Populations and Evolution +1301.3653 Classical Analysis and ODEs +1301.3654 Materials Science +1301.3655 Number Theory +1301.3657 Astrophysics of Galaxies +1301.3658 Classical Analysis and ODEs +1301.3659 Classical Analysis and ODEs +1301.3661 Mesoscale and Nanoscale Physics +1301.3663 Analysis of PDEs +1301.3664 Theory +1301.3669 Combinatorics +1301.3670 Strongly Correlated Electrons +1301.3672 Phenomenology +1301.3675 Optimization and Control +1301.3678 Metric Geometry +1301.3679 Category Theory +1301.3680 Cosmology and Nongalactic Astrophysics +1301.3682 Metric Geometry +1301.3684 Analysis of PDEs +1301.3690 Instrumentation and Methods for Astrophysics +1301.3692 +1301.3696 +1301.3700 Symplectic Geometry +1301.3701 Lattice +1301.3705 Differential Geometry +1301.3706 Theory +1301.3707 Group Theory +1301.3708 Information Theory +1301.3709 Algebraic Geometry +1301.3710 Optics +1301.3711 Phenomenology +1301.3712 Optics +1301.3716 Dynamical Systems +1301.3718 Applications +1301.3719 Superconductivity +1301.3723 Optimization and Control +1301.3727 +1301.3729 Spectral Theory +1301.3730 Solar and Stellar Astrophysics +1301.3731 Spectral Theory +1301.3734 Number Theory +1301.3736 Strongly Correlated Electrons +1301.3744 Digital Libraries +1301.3747 +1301.3750 Instrumentation and Detectors +1301.3751 Formal Languages and Automata Theory +1301.3752 Differential Geometry +1301.3754 Phenomenology +1301.3755 Computer Vision and Pattern Recognition +1301.3757 Superconductivity +1301.3771 Computational Complexity +1301.3774 Analysis of PDEs +1301.3780 Discrete Mathematics +1301.3791 Information Theory +1301.3797 Earth and Planetary Astrophysics +1301.3804 Solar and Stellar Astrophysics +1301.3807 Analysis of PDEs +1301.3808 Earth and Planetary Astrophysics +1301.3810 Spectral Theory +1301.3812 Phenomenology +1301.3813 Solar and Stellar Astrophysics +1301.3815 Algebraic Geometry +1301.3818 Solar and Stellar Astrophysics +1301.3823 Portfolio Management +1301.3824 Risk Management +0705.3134 Algebraic Geometry +0804.0655 Classical Analysis and ODEs +0807.4888 Classical Analysis and ODEs +0906.1861 Complex Variables +0906.1862 Classical Analysis and ODEs +0910.3087 Classical Analysis and ODEs +0911.0274 Probability +1003.0747 Statistics Theory +1008.4871 Analysis of PDEs +1011.6036 Exactly Solvable and Integrable Systems +1101.3688 Classical Analysis and ODEs +1103.6125 Statistical Mechanics +1105.5229 Classical Analysis and ODEs +1106.2775 Probability +1106.2959 Classical Analysis and ODEs +1106.4771 Probability +1106.5758 Statistics Theory +1107.0477 Probability +1107.0520 Dynamical Systems +1107.1034 +1107.2315 Probability +1108.2784 Probability +1108.3845 +1108.3917 Classical Analysis and ODEs +1108.3918 Classical Analysis and ODEs +1109.1732 Soft Condensed Matter +1109.3203 Earth and Planetary Astrophysics +1109.3249 Probability +1109.5684 Probability +1110.1599 Probability +1110.5395 Cryptography and Security +1112.0921 Mesoscale and Nanoscale Physics +1112.2184 +1201.0653 Complex Variables +1201.2928 +1202.3420 Phenomenology +1202.3960 Algebraic Geometry +1206.1609 +1207.0149 Algebraic Topology +1207.3535 Instrumentation and Methods for Astrophysics +1207.3585 Formal Languages and Automata Theory +1207.5012 +1207.5105 +1207.5690 Formal Languages and Automata Theory +1208.2978 +1208.5412 Formal Languages and Automata Theory +1209.0890 Group Theory +1209.1909 Computational Finance +1210.1377 Mesoscale and Nanoscale Physics +1210.3371 Data Structures and Algorithms +1210.4359 +1210.7157 Number Theory +1210.7278 +1210.8423 Populations and Evolution +1211.0222 +1211.0830 Probability +1212.2181 Statistical Mechanics +1212.3430 Materials Science +1212.6609 Formal Languages and Automata Theory +1301.0949 Experiment +1301.2992 Phenomenology +1302.3052 +1302.6226 Optics +1303.5814 Plasma Physics +1304.0599 Cosmology and Nongalactic Astrophysics +1304.0671 Experiment +1304.2140 Earth and Planetary Astrophysics +1304.3053 Phenomenology +1304.3901 +1304.4499 Logic in Computer Science +1304.5395 Commutative Algebra +1304.5758 Machine Learning +1304.7278 Systems and Control +1304.7352 Statistical Mechanics +1305.1308 Cosmology and Nongalactic Astrophysics +1305.1841 Chaotic Dynamics +1305.3448 +1305.4401 Cryptography and Security +1305.4431 Phenomenology +1305.4448 +1305.4829 Mesoscale and Nanoscale Physics +1305.5039 +1305.6840 +1306.1567 Phenomenology +1306.1618 Instrumentation and Methods for Astrophysics +1306.1631 Phenomenology +1306.3522 Populations and Evolution +1306.3913 +1306.4171 Phenomenology +1306.4947 Learning +1306.6002 +1306.6748 Mesoscale and Nanoscale Physics +1307.0201 Computer Science and Game Theory +1307.0370 Strongly Correlated Electrons +1307.0585 Information Theory +1307.1726 Mesoscale and Nanoscale Physics +1307.2843 Quantum Gases +1307.4373 Soft Condensed Matter +1307.4522 +1307.5459 Systems and Control +1307.6046 Statistical Finance +1307.6213 Phenomenology +1307.6240 Experiment +1307.6647 Statistical Mechanics +1307.6908 Phenomenology +1308.1486 Chemical Physics +1308.3798 Plasma Physics +1308.4254 Functional Analysis +1308.5017 High Energy Astrophysical Phenomena +1308.5531 Fluid Dynamics +1308.5758 Solar and Stellar Astrophysics +1309.1067 +1309.3616 Spectral Theory +1309.3911 +1309.5288 Materials Science +1309.6368 Combinatorics +1309.7201 Phenomenology +1309.7608 General Mathematics +1309.7640 Multimedia +1309.7685 Programming Languages +1309.7690 Neural and Evolutionary Computing +1310.0201 Computation and Language +1310.0634 Combinatorics +1310.0655 Computation +1310.0810 Computers and Society +1310.0815 Cosmology and Nongalactic Astrophysics +1310.0824 Cosmology and Nongalactic Astrophysics +1310.0841 Phenomenology +1310.0843 Group Theory +1310.0850 Differential Geometry +1310.0855 Experiment +1310.0860 Differential Geometry +1310.0863 +1310.0864 Computers and Society +1310.0866 Optimization and Control +1310.0867 Programming Languages +1310.0871 +1310.0872 Information Theory +1310.0875 High Energy Astrophysical Phenomena +1310.0876 Experiment +1310.0880 Strongly Correlated Electrons +1310.0883 Distributed, Parallel, and Cluster Computing +1310.0885 Instrumentation and Methods for Astrophysics +1310.0886 Space Physics +1310.0888 Soft Condensed Matter +1310.0890 Learning +1310.0891 Logic +1310.0893 Soft Condensed Matter +1310.0894 Information Retrieval +1310.0900 Computer Vision and Pattern Recognition +1310.0901 Software Engineering +1310.0905 +1310.0908 Solar and Stellar Astrophysics +1310.0910 Metric Geometry +1310.0916 Commutative Algebra +1310.0918 High Energy Astrophysical Phenomena +1310.0919 Symbolic Computation +1310.0924 Probability +1310.0927 Artificial Intelligence +1310.0932 Systems and Control +1310.0939 Probability +1310.0943 Atmospheric and Oceanic Physics +1310.0945 Accelerator Physics +1310.0946 Phenomenology +1310.0947 Classical Analysis and ODEs +1310.0959 Representation Theory +1310.0963 Lattice +1310.0965 Analysis of PDEs +1310.0968 Experiment +1310.0974 Analysis of PDEs +1310.0976 Analysis of PDEs +1310.0977 Probability +1310.0978 Soft Condensed Matter +1310.0979 Number Theory +1310.0987 +1310.0988 Combinatorics +1310.0990 +1310.0991 Mesoscale and Nanoscale Physics +1310.0992 Combinatorics +1310.0994 Accelerator Physics +1310.0995 Classical Analysis and ODEs +1310.1002 Experiment +1310.1006 Chemical Physics +1310.1009 +1310.1012 Discrete Mathematics +1310.1015 Networking and Internet Architecture +1310.1018 Differential Geometry +1310.1019 General Physics +1310.1022 Machine Learning +1310.1024 General Physics +1310.1026 Analysis of PDEs +1310.1031 Functional Analysis +1310.1033 History and Philosophy of Physics +1310.1034 Computation +1310.1039 Lattice +1310.1046 Instrumentation and Detectors +1310.1048 Data Structures and Algorithms +1310.1050 Distributed, Parallel, and Cluster Computing +1310.1057 Symplectic Geometry +1310.1060 Theory +1310.1061 +1310.1062 Instrumentation and Detectors +1310.1067 +1310.1070 Phenomenology +1310.1076 Methodology +math/0101187 Classical Analysis and ODEs +math/0103184 Classical Analysis and ODEs +math/0109222 Classical Analysis and ODEs +math/0111252 Classical Analysis and ODEs +math/0204155 Classical Analysis and ODEs +math/0302357 Classical Analysis and ODEs +math/0303093 Classical Analysis and ODEs +math/0310436 Classical Analysis and ODEs +math/0403510 Classical Analysis and ODEs +math/0403532 Classical Analysis and ODEs +math/0403533 Classical Analysis and ODEs +math/0407265 Classical Analysis and ODEs +math/0408269 Classical Analysis and ODEs +math/0505041 Rings and Algebras +math/0511509 Quantum Algebra +math/0512358 Classical Analysis and ODEs +math/0604312 Classical Analysis and ODEs +math/0606334 Classical Analysis and ODEs +math/9510214 Classical Analysis and ODEs +0704.0304 Information Theory +0907.4393 Superconductivity +1004.2135 Commutative Algebra +1010.4642 Probability +1012.2736 Analysis of PDEs +1102.2744 Combinatorics +1105.6140 Operator Algebras +1106.0037 Experiment +1106.3279 Trading and Market Microstructure +1108.1280 Dynamical Systems +1108.3961 Number Theory +1110.0783 Phenomenology +1110.1054 +1111.1349 Risk Management +1111.3464 Optimization and Control +1111.3511 Differential Geometry +1111.6107 General Physics +1112.0266 Probability +1112.2482 Analysis of PDEs +1112.3845 Analysis of PDEs +1201.3022 Quantitative Methods +1201.4821 Probability +1202.1716 Soft Condensed Matter +1202.6370 Superconductivity +1203.4027 Analysis of PDEs +1204.1259 Learning +1204.5938 +1205.1835 Phenomenology +1205.5091 Accelerator Physics +1206.2767 Number Theory +1206.3933 Social and Information Networks +1206.4813 Instrumentation and Detectors +1206.4925 Dynamical Systems +1206.5832 Theory +1206.7082 Instrumentation and Detectors +1207.4914 Physics and Society +1207.5059 Quantum Gases +1207.6826 Strongly Correlated Electrons +1208.2008 Theory +1208.3791 Functional Analysis +1208.5130 Physics and Society +1208.6063 Social and Information Networks +1209.0203 Mesoscale and Nanoscale Physics +1209.2895 +1209.3536 Representation Theory +1209.6512 Superconductivity +1210.1107 +1210.2754 Theory +1210.3020 Theory +1210.3921 Probability +1210.6883 Social and Information Networks +1210.6962 +1210.7051 +1211.0196 +1211.0615 Mesoscale and Nanoscale Physics +1211.2301 Combinatorics +1211.2713 Data Structures and Algorithms +1211.3143 Experiment +1211.3330 +1211.3456 Quantum Gases +1211.3866 Quantum Gases +1211.4045 Cosmology and Nongalactic Astrophysics +1211.6731 Statistical Mechanics +1212.0835 Strongly Correlated Electrons +1212.1024 Soft Condensed Matter +1212.3561 Theory +1212.3714 Strongly Correlated Electrons +1212.4387 +1212.4484 Phenomenology +1212.5644 Quantum Gases +1212.5703 Theory +1301.0229 Theory +1301.0345 Phenomenology +1301.0383 Strongly Correlated Electrons +1301.2121 Optics +1301.2974 Optics +1301.4079 +1301.5023 Experiment +1301.5229 +1301.6813 Materials Science +1301.7323 Strongly Correlated Electrons +1302.3158 Space Physics +1302.6663 Strongly Correlated Electrons +1302.6770 Social and Information Networks +1302.7040 Functional Analysis +1303.0385 Quantum Algebra +1303.2632 Theory +1303.4222 Differential Geometry +1303.4367 +1303.4491 Strongly Correlated Electrons +1303.5780 Commutative Algebra +1303.6532 Metric Geometry +1303.6563 +1303.7308 +1303.7437 Statistics Theory +1304.0188 Computational Complexity +1304.0269 Number Theory +1304.0457 +1304.0738 Combinatorics +1304.0814 Statistical Mechanics +1304.0877 Statistics Theory +1304.1006 Dynamical Systems +1304.1011 Mesoscale and Nanoscale Physics +1304.1074 Computer Science and Game Theory +1304.1081 Artificial Intelligence +1304.1082 Artificial Intelligence +1304.1083 Artificial Intelligence +1304.1084 Artificial Intelligence +1304.1086 Artificial Intelligence +1304.1087 Artificial Intelligence +1304.1088 Artificial Intelligence +1304.1089 Artificial Intelligence +1304.1090 Artificial Intelligence +1304.1092 Artificial Intelligence +1304.1093 Artificial Intelligence +1304.1094 Artificial Intelligence +1304.1095 Artificial Intelligence +1304.1096 Artificial Intelligence +1304.1097 Artificial Intelligence +1304.1098 Robotics +1304.1099 Artificial Intelligence +1304.1100 Artificial Intelligence +1304.1101 Artificial Intelligence +1304.1102 Artificial Intelligence +1304.1103 Artificial Intelligence +1304.1104 Artificial Intelligence +1304.1105 Artificial Intelligence +1304.1106 Artificial Intelligence +1304.1107 Artificial Intelligence +1304.1108 Artificial Intelligence +1304.1109 Artificial Intelligence +1304.1110 Artificial Intelligence +1304.1111 Artificial Intelligence +1304.1112 Artificial Intelligence +1304.1113 Artificial Intelligence +1304.1114 Artificial Intelligence +1304.1115 Artificial Intelligence +1304.1116 Artificial Intelligence +1304.1117 Artificial Intelligence +1304.1118 Artificial Intelligence +1304.1119 Artificial Intelligence +1304.1120 Artificial Intelligence +1304.1121 Artificial Intelligence +1304.1122 Artificial Intelligence +1304.1123 Artificial Intelligence +1304.1124 Artificial Intelligence +1304.1125 Artificial Intelligence +1304.1126 Artificial Intelligence +1304.1127 Artificial Intelligence +1304.1128 Artificial Intelligence +1304.1129 Artificial Intelligence +1304.1130 Artificial Intelligence +1304.1131 Artificial Intelligence +1304.1132 Artificial Intelligence +1304.1133 Artificial Intelligence +1304.1134 Artificial Intelligence +1304.1135 Artificial Intelligence +1304.1136 Artificial Intelligence +1304.1137 Artificial Intelligence +1304.1138 Artificial Intelligence +1304.1139 Artificial Intelligence +1304.1140 Artificial Intelligence +1304.1141 Artificial Intelligence +1304.1142 Artificial Intelligence +1304.1143 Artificial Intelligence +1304.1144 Artificial Intelligence +1304.1146 Artificial Intelligence +1304.1148 Logic +1304.1149 Logic +1304.1164 +1304.1165 Solar and Stellar Astrophysics +1304.1166 Phenomenology +1304.1169 Combinatorics +1304.1175 Instrumentation and Detectors +1304.1176 Quantum Gases +1304.1177 Phenomenology +1304.1186 General Finance +1304.1187 Biological Physics +1304.1190 Phenomenology +1304.1192 Learning +1304.1204 Rings and Algebras +1304.1205 Combinatorics +1304.1207 Information Theory +1304.1208 Probability +1304.1212 +1304.1217 Computational Complexity +1304.1218 Algebraic Geometry +1304.1221 Combinatorics +1304.1226 Combinatorics +1304.1229 Optics +1304.1230 Functional Analysis +1304.1231 Genomics +1304.1233 Computer Vision and Pattern Recognition +1304.1234 Dynamical Systems +1304.1235 Networking and Internet Architecture +1304.1242 Cellular Automata and Lattice Gases +1304.1250 Computer Vision and Pattern Recognition +1304.1251 Materials Science +1304.1258 High Energy Astrophysical Phenomena +1304.1259 Solar and Stellar Astrophysics +1304.1262 Cell Behavior +1304.1263 Combinatorics +1304.1268 General Topology +1304.1273 Superconductivity +1304.1280 General Physics +1304.1281 General Physics +1304.1285 Optics +1304.1291 Numerical Analysis +1304.1292 +1304.1295 Statistics Theory +1304.1303 Phenomenology +1304.1305 Solar and Stellar Astrophysics +1304.1311 High Energy Astrophysical Phenomena +1304.1312 Analysis of PDEs +1304.1314 Chemical Physics +1304.1319 Probability +1304.1321 High Energy Astrophysical Phenomena +1304.1332 Human-Computer Interaction +1304.1334 Mesoscale and Nanoscale Physics +1304.1337 Combinatorics +1304.1338 Combinatorics +1304.1340 Combinatorics +1304.1342 Probability +1304.1343 Rings and Algebras +1304.1344 Algebraic Geometry +1304.1345 Combinatorics +1304.1347 Computational Complexity +1304.1348 History and Overview +1304.1349 Instrumentation and Methods for Astrophysics +1304.1350 Computation +1304.1351 Computer Science and Game Theory +1304.1353 Materials Science +1304.1354 Atmospheric and Oceanic Physics +1304.1355 Strongly Correlated Electrons +1304.1356 Mathematical Software +1304.1357 +1304.1358 Optics +1304.1360 Phenomenology +1304.1362 Solar and Stellar Astrophysics +1304.1363 Algebraic Geometry +1304.1370 Statistics Theory +1304.1371 +1304.1380 Logic +1304.1381 Commutative Algebra +1304.1386 Systems and Control +1304.1387 Materials Science +1304.1391 Learning +1304.1393 Instrumentation and Detectors +1304.1394 High Energy Astrophysical Phenomena +1304.1395 High Energy Astrophysical Phenomena +1304.1397 Pricing of Securities +1304.1399 Earth and Planetary Astrophysics +1304.1401 Mesoscale and Nanoscale Physics +1304.1404 Logic +1304.1405 Information Theory +1304.1407 Materials Science +1304.1410 Soft Condensed Matter +1304.1416 Lattice +1304.1417 Differential Geometry +1304.1419 Computer Vision and Pattern Recognition +1304.1425 Earth and Planetary Astrophysics +1304.1429 Logic +1304.1432 Information Theory +1304.1435 +1304.1441 Logic +1304.1442 Number Theory +1304.1443 +1304.1448 Representation Theory +1304.1452 +1304.1456 Computer Science and Game Theory +1304.1458 Data Structures and Algorithms +1304.1459 Information Theory +1304.1460 Dynamical Systems +1304.1470 Astrophysics of Galaxies +1304.1479 Phenomenology +1304.1485 Popular Physics +1304.1488 Geometric Topology +1304.1489 +cond-mat/0402044 Superconductivity +nlin/0404004 Adaptation and Self-Organizing Systems +0705.2122 +0705.3834 Algebraic Geometry +0706.1575 Chaotic Dynamics +0709.2498 Mesoscale and Nanoscale Physics +0803.0076 Chaotic Dynamics +0803.0270 Combinatorics +0804.2508 Analysis of PDEs +0807.0678 Chaotic Dynamics +0809.0011 History and Overview +0810.3322 Combinatorics +0904.4580 Mesoscale and Nanoscale Physics +0905.0334 Exactly Solvable and Integrable Systems +0905.4105 Optics +0906.0419 Optics +0906.2941 Atomic Physics +0907.5427 Data Structures and Algorithms +0912.1516 Probability +1002.2821 Algebraic Geometry +1003.3406 Combinatorics +1005.5207 Algebraic Geometry +1006.0953 Mesoscale and Nanoscale Physics +1006.3501 Geometric Topology +1006.4135 Combinatorics +1006.5181 Cosmology and Nongalactic Astrophysics +1007.1727 Data Analysis, Statistics and Probability +1008.2461 Experiment +1008.2873 Information Theory +1008.5254 Information Theory +1009.2035 Strongly Correlated Electrons +1009.2910 Strongly Correlated Electrons +1009.4480 Biomolecules +1011.5385 Soft Condensed Matter +1012.4229 Strongly Correlated Electrons +1102.0173 Probability +1103.0485 Metric Geometry +1103.6208 Experiment +1104.0179 Logic +1104.0441 Combinatorics +1104.2957 Cosmology and Nongalactic Astrophysics +1104.3038 Experiment +1105.5217 +1106.2503 Social and Information Networks +1106.5006 Mesoscale and Nanoscale Physics +1106.5852 Differential Geometry +1107.0867 Mesoscale and Nanoscale Physics +1107.1131 Combinatorics +1108.2362 Strongly Correlated Electrons +1108.4962 Dynamical Systems +1109.0769 Mesoscale and Nanoscale Physics +1109.2835 Algebraic Geometry +1109.3686 Exactly Solvable and Integrable Systems +1110.1556 History and Overview +1110.5016 Experiment +1110.6356 +1110.6567 Geometric Topology +1111.0248 Cosmology and Nongalactic Astrophysics +1111.1001 General Physics +1111.5114 +1111.6266 Theory +1112.5154 Experiment +1201.0127 Data Structures and Algorithms +1201.1687 Astrophysics of Galaxies +1201.3239 Statistics Theory +1201.5444 Algebraic Geometry +1202.1598 +1202.3389 Experiment +1202.5663 +1202.6419 Optics +1203.3087 Experiment +1203.3571 Soft Condensed Matter +1203.4139 Functional Analysis +1203.5015 Experiment +1203.5567 Strongly Correlated Electrons +1203.6583 Strongly Correlated Electrons +1204.1927 Combinatorics +1204.2963 Classical Analysis and ODEs +1204.3185 Theory +1205.0431 +1205.1834 Dynamical Systems +1205.2067 Experiment +1205.2531 Experiment +1205.6240 Combinatorics +1206.0882 Representation Theory +1206.1460 Probability +1206.2135 Experiment +1206.2513 +1206.2636 Biomolecules +1206.3810 Materials Science +1206.5369 Experiment +1206.5778 Strongly Correlated Electrons +1207.1473 +1207.2263 Analysis of PDEs +1207.2358 Theory +1207.3508 Networking and Internet Architecture +1207.5669 Theory +1207.5883 Dynamical Systems +1207.5892 Quantum Gases +1207.6000 +1207.6704 Superconductivity +1208.0563 Experiment +1208.1390 Experiment +1208.2083 +1208.2241 Geometric Topology +1208.3549 Systems and Control +1208.4688 Experiment +1208.5311 Applications +1208.6256 Experiment +1209.3022 Phenomenology +1209.5729 Mesoscale and Nanoscale Physics +1209.5892 Biomolecules +1210.0127 Space Physics +1210.0441 Experiment +1210.2222 Mesoscale and Nanoscale Physics +1210.2435 Metric Geometry +1210.3219 Combinatorics +1210.3649 Mesoscale and Nanoscale Physics +1210.4087 Phenomenology +1210.4212 +1210.4536 Materials Science +1210.5048 Optimization and Control +1210.6995 Experiment +1210.7235 Exactly Solvable and Integrable Systems +1211.0597 Strongly Correlated Electrons +1211.1625 General Physics +1211.1693 Phenomenology +1211.1778 +1211.1913 Experiment +1211.2191 Combinatorics +1211.4020 Quantum Gases +1211.4905 Materials Science +1211.6092 Theory +1211.6096 Experiment +1211.6736 Earth and Planetary Astrophysics +1211.6899 Experiment +1212.0523 Optimization and Control +1212.1244 Statistical Mechanics +1212.2752 Information Theory +1212.3565 Quantum Gases +1212.3746 Networking and Internet Architecture +1212.3768 +1212.4000 +1212.4051 Quantum Gases +1212.4917 Plasma Physics +1212.5488 Statistical Mechanics +1212.6208 Phenomenology +1212.6530 Probability +1301.0535 Superconductivity +1301.1137 Phenomenology +1301.2340 +1301.3611 Machine Learning +1301.4266 Classical Analysis and ODEs +1301.4694 Phenomenology +1301.4947 Mesoscale and Nanoscale Physics +1301.5040 +1301.6205 Instrumentation and Methods for Astrophysics +1301.6567 +1301.6872 Experiment +1301.7017 Probability +1301.7311 Optics +1302.0320 Networking and Internet Architecture +1302.0853 Theory +1302.0959 +1302.1891 Experiment +1302.2431 Phenomenology +1302.2519 General Topology +1302.2637 Cosmology and Nongalactic Astrophysics +1302.2782 Classical Physics +1302.4372 General Physics +1302.5494 Strongly Correlated Electrons +1302.5610 Superconductivity +1302.5956 Phenomenology +1302.6180 Algebraic Geometry +1302.6694 Lattice +1303.0184 Statistical Mechanics +1303.0343 Soft Condensed Matter +1303.0554 Earth and Planetary Astrophysics +1303.0885 Combinatorics +1303.1531 High Energy Astrophysical Phenomena +1303.1662 Mesoscale and Nanoscale Physics +1303.3839 Cosmology and Nongalactic Astrophysics +1303.4643 Strongly Correlated Electrons +1303.4834 Dynamical Systems +1303.5128 Statistical Mechanics +1303.5258 High Energy Astrophysical Phenomena +1303.6305 Phenomenology +1303.7029 Geometric Topology +1303.7467 Networking and Internet Architecture +1304.0950 Mesoscale and Nanoscale Physics +1304.1699 Astrophysics of Galaxies +1304.1864 Numerical Analysis +1304.2282 +1304.2315 General Mathematics +1304.3670 Phenomenology +1304.3861 Algebraic Geometry +1304.4437 Lattice +1304.5103 Quantum Gases +1304.5863 Artificial Intelligence +1304.5973 Data Structures and Algorithms +1304.6769 Optics +1304.7135 Theory +1304.7531 Probability +1304.7553 Strongly Correlated Electrons +1305.0069 Data Structures and Algorithms +1305.0125 Experiment +1305.2341 +1305.2346 Mesoscale and Nanoscale Physics +1305.2450 +1305.2764 Algebraic Geometry +1305.2904 Materials Science +1305.3362 Soft Condensed Matter +1305.4914 Data Structures and Algorithms +1305.5126 Materials Science +1305.5644 Probability +1305.6159 Superconductivity +1305.6626 +1305.7478 Tissues and Organs +1306.0749 Soft Condensed Matter +1306.0791 Strongly Correlated Electrons +1306.1727 Complex Variables +1306.1840 Learning +1306.2146 General Topology +1306.3535 Neurons and Cognition +1306.3542 Artificial Intelligence +1306.3548 Artificial Intelligence +1306.3693 Information Theory +1306.3970 Cosmology and Nongalactic Astrophysics +1306.4466 Computational Complexity +1306.4591 Mesoscale and Nanoscale Physics +1306.4871 Theory +1306.5228 Biomolecules +1306.5229 Information Theory +1306.5231 Strongly Correlated Electrons +1306.5233 Physics Education +1306.5234 Classical Physics +1306.5247 Computers and Society +1306.5253 Methodology +1306.5256 Mesoscale and Nanoscale Physics +1306.5258 Optimization and Control +1306.5259 Cosmology and Nongalactic Astrophysics +1306.5263 Computer Vision and Pattern Recognition +1306.5264 Logic in Computer Science +1306.5272 Probability +1306.5275 Neurons and Cognition +1306.5277 Information Theory +1306.5278 Geometric Topology +1306.5287 Optimization and Control +1306.5291 Information Theory +1306.5293 Computer Vision and Pattern Recognition +1306.5299 Information Theory +1306.5300 Experiment +1306.5303 Plasma Physics +1306.5305 Information Theory +1306.5306 Representation Theory +1306.5308 Artificial Intelligence +1306.5309 +1306.5310 Machine Learning +1306.5311 Statistics Theory +1306.5321 +1306.5323 Information Theory +1306.5326 Information Theory +1306.5328 Classical Analysis and ODEs +1306.5330 +1306.5337 Analysis of PDEs +1306.5339 Metric Geometry +1306.5342 Probability +1306.5343 Phenomenology +1306.5345 Logic +1306.5349 Learning +1306.5350 Information Theory +1306.5352 Phenomenology +1306.5353 Probability +1306.5356 Combinatorics +1306.5357 +1306.5362 Methodology +1306.5366 Populations and Evolution +1306.5369 Optimization and Control +1306.5372 Operator Algebras +1306.5375 Complex Variables +1306.5379 +1306.5381 Emerging Technologies +1306.5383 Physics and Society +1306.5385 Instrumentation and Detectors +1306.5391 Data Structures and Algorithms +1306.5392 Statistics Theory +1306.5393 Methodology +1306.5397 Soft Condensed Matter +1306.5398 Soft Condensed Matter +1306.5399 Logic +1306.5400 Instrumentation and Methods for Astrophysics +1306.5403 Combinatorics +1306.5406 +1306.5408 General Physics +1306.5411 +1306.5412 Systems and Control +1306.5414 Strongly Correlated Electrons +1306.5416 +1306.5419 Algebraic Geometry +1306.5420 Phenomenology +1306.5423 +1306.5428 Combinatorics +1306.5429 Algebraic Geometry +1306.5430 Soft Condensed Matter +1306.5432 Optics +1306.5436 Soft Condensed Matter +1306.5441 Systems and Control +1306.5443 Combinatorics +1306.5444 Functional Analysis +1306.5445 Computers and Society +1306.5451 Dynamical Systems +1306.5454 Number Theory +1306.5461 Statistics Theory +1306.5464 Combinatorics +1306.5466 Optimization and Control +1306.5468 Rings and Algebras +1306.5470 +1306.5472 Instrumentation and Methods for Astrophysics +1306.5473 Computers and Society +1306.5474 Computers and Society +1306.5478 Representation Theory +1306.5480 Computer Vision and Pattern Recognition +1306.5483 Geometric Topology +1306.5487 Learning +1306.5493 Optics +1306.5495 Group Theory +1306.5496 Quantum Gases +1306.5497 Combinatorics +1306.5499 Other Condensed Matter +1306.5501 Hardware Architecture +1306.5506 Complex Variables +1306.5507 Cryptography and Security +1306.5510 Risk Management +1306.5516 Functional Analysis +1306.5517 Spectral Theory +1306.5519 Astrophysics of Galaxies +1306.5524 Applications +1306.5526 Rings and Algebras +1306.5528 Experiment +1306.5529 Fluid Dynamics +1306.5533 Computational Engineering, Finance, and Science +1306.5534 Earth and Planetary Astrophysics +1306.5537 Optics +1306.5542 Geometric Topology +1306.5547 Cryptography and Security +1306.5548 Probability +1306.5551 +1306.5552 Mesoscale and Nanoscale Physics +1306.5553 Operator Algebras +1306.5560 Accelerator Physics +1306.5566 Theory +1306.5568 Discrete Mathematics +1306.5571 Data Structures and Algorithms +1306.5572 General Topology +1306.5574 Phenomenology +1306.5580 Probability +1306.5582 Atomic Physics +1306.5583 Computation +1306.5586 Databases +1306.5592 Number Theory +1306.5596 Information Theory +1306.5597 +1306.5598 Rings and Algebras +1306.5599 History and Overview +1306.5609 Information Theory +1306.5611 Soft Condensed Matter +1306.5612 Soft Condensed Matter +1306.5613 Soft Condensed Matter +1306.5617 Analysis of PDEs +1306.5623 Mesoscale and Nanoscale Physics +1306.5630 Applications +1306.5632 Mesoscale and Nanoscale Physics +1306.5635 Combinatorics +1306.5649 Atmospheric and Oceanic Physics +1306.5650 Analysis of PDEs +1306.5653 Accelerator Physics +1306.5655 Instrumentation and Detectors +1306.5656 General Mathematics +1306.5661 Theory +1306.5666 Instrumentation and Detectors +1306.5667 Neural and Evolutionary Computing +1306.5672 General Mathematics +1306.5676 Biological Physics +1306.5677 Computer Science and Game Theory +1306.5683 Differential Geometry +1306.5688 Group Theory +1306.5690 Databases +1306.5691 Number Theory +1306.5692 Probability +1306.5696 Group Theory +1306.5702 Neural and Evolutionary Computing +1306.5703 Solar and Stellar Astrophysics +1306.5704 Materials Science +1306.5705 Risk Management +1306.5706 Optics +1306.5713 Chemical Physics +1306.5715 Computation +1306.5720 Data Structures and Algorithms +1306.5721 Functional Analysis +1306.5723 Materials Science +1306.5729 Optimization and Control +1306.5732 Combinatorics +chao-dyn/9511004 Chaotic Dynamics +cond-mat/0110443 Mesoscale and Nanoscale Physics +cond-mat/0302073 Soft Condensed Matter +cond-mat/0310285 Soft Condensed Matter +cond-mat/0504563 Strongly Correlated Electrons +cond-mat/0601272 Strongly Correlated Electrons +cond-mat/9910061 Mesoscale and Nanoscale Physics +math-ph/0609073 +math-ph/0611060 +math/0504596 Differential Geometry +math/0511039 Analysis of PDEs +math/0605568 Combinatorics +math/0610305 Dynamical Systems +math/9702227 Combinatorics +nlin/0504024 Chaotic Dynamics +1303.3485 Cryptography and Security +0704.0005 Classical Analysis and ODEs +0704.0054 Classical Analysis and ODEs +0708.1677 Category Theory +0801.3079 Representation Theory +0807.2719 Materials Science +0809.4192 Algebraic Topology +0809.5120 General Mathematics +0901.2350 Algebraic Geometry +0904.2841 Representation Theory +0905.1444 Algebraic Geometry +0907.4590 Algebraic Geometry +0908.2989 Theory +0909.3347 Theory +0910.5376 +1003.2356 +1005.5557 Algebraic Geometry +1006.1925 Algebraic Geometry +1006.3146 +1007.5220 Representation Theory +1008.1489 Algebraic Geometry +1009.0629 Fluid Dynamics +1009.5609 Algebraic Topology +1010.2322 Statistical Mechanics +1010.4005 Differential Geometry +1101.2189 Representation Theory +1102.0752 Atomic Physics +1103.3995 Differential Geometry +1104.0524 Algebraic Geometry +1104.1108 +1104.4428 Functional Analysis +1105.1508 Computation +1108.0353 Computation and Language +1108.4124 Theory +1109.5832 Strongly Correlated Electrons +1110.0333 Functional Analysis +1110.1010 Rings and Algebras +1110.3447 Theory +1110.3500 Quantum Algebra +1110.3717 Learning +1111.5398 Algebraic Geometry +1112.2624 Representation Theory +1202.1327 Systems and Control +1202.2723 Statistics Theory +1202.5167 Analysis of PDEs +1202.6033 Social and Information Networks +1202.6543 Functional Analysis +1202.6550 Functional Analysis +1203.0140 Functional Analysis +1203.0436 Artificial Intelligence +1203.0520 Strongly Correlated Electrons +1203.2129 Commutative Algebra +1204.1873 Computational Geometry +1204.2377 Group Theory +1204.2866 Functional Analysis +1204.6216 Graphics +1204.6490 Disordered Systems and Neural Networks +1205.0971 Theory +1205.3585 +1205.4555 Fluid Dynamics +1205.5141 Combinatorics +1206.2966 Methodology +1206.3326 Fluid Dynamics +1206.3992 Social and Information Networks +1206.4956 +1206.5628 Statistics Theory +1206.6778 +1206.7014 Soft Condensed Matter +1207.2638 Functional Analysis +1209.1113 Analysis of PDEs +1209.3442 Methodology +1209.3675 +1209.6022 Probability +1209.6497 Pricing of Securities +1210.2176 Quantum Gases +1210.3764 Fluid Dynamics +1210.3797 Fluid Dynamics +1210.5613 +1210.5616 +1210.5990 Probability +1210.6091 +1210.8147 High Energy Astrophysical Phenomena +1211.4879 Differential Geometry +1211.5391 Strongly Correlated Electrons +1211.6073 Strongly Correlated Electrons +1211.6315 Distributed, Parallel, and Cluster Computing +1212.0086 +1212.0332 Phenomenology +1212.0787 Analysis of PDEs +1212.3147 Pricing of Securities +1301.0104 Learning +1301.1541 Biomolecules +1301.1987 Geometric Topology +1301.2130 Information Theory +1301.2862 +1301.5094 Theory +1301.5161 +1301.5163 +1301.5314 +1301.7594 Materials Science +1302.0073 Number Theory +1302.0580 Logic +1302.2272 Group Theory +1302.3684 Probability +1302.3697 Digital Libraries +1302.4313 Soft Condensed Matter +1302.4624 Numerical Analysis +1302.6859 Lattice +1302.7143 Biological Physics +1303.0013 Neurons and Cognition +1303.1634 Mesoscale and Nanoscale Physics +1303.2701 Complex Variables +1303.4527 Differential Geometry +1303.4982 Group Theory +1303.6412 +1304.0215 Disordered Systems and Neural Networks +1304.1768 Optimization and Control +1304.1878 +1304.2275 Superconductivity +1304.3010 Social and Information Networks +1304.4180 Combinatorics +1304.4279 Experiment +1304.4514 Cosmology and Nongalactic Astrophysics +1304.5006 High Energy Astrophysical Phenomena +1304.5247 Computational Complexity +1304.5598 General Physics +1304.6527 Cosmology and Nongalactic Astrophysics +1304.8128 +1305.0665 Learning +1305.1756 Complex Variables +1305.1846 Phenomenology +1305.1854 Strongly Correlated Electrons +1305.2573 Number Theory +1305.2822 Statistical Mechanics +1305.5068 Biological Physics +1305.5187 Medical Physics +1305.5815 Materials Science +1305.7268 +1305.7270 +1306.1636 Mesoscale and Nanoscale Physics +1306.1662 Information Theory +1306.1744 Number Theory +1306.2545 Algebraic Geometry +1306.2621 Mesoscale and Nanoscale Physics +1306.3398 Physics and Society +1306.3444 Solar and Stellar Astrophysics +1306.3947 Mesoscale and Nanoscale Physics +1306.4267 Strongly Correlated Electrons +1306.4341 Mesoscale and Nanoscale Physics +1306.5584 Strongly Correlated Electrons +1306.5828 Strongly Correlated Electrons +1306.6203 Information Theory +1306.6293 Atomic Physics +1306.6433 Superconductivity +1306.6898 Quantum Gases +1307.0126 Experiment +1307.1422 +1307.1629 Differential Geometry +1307.1637 Chemical Physics +1307.2257 Mesoscale and Nanoscale Physics +1307.2964 Cryptography and Security +1307.3184 Computational Complexity +1307.4344 Materials Science +1307.4367 Statistical Mechanics +1307.5726 Quantum Gases +1307.6122 Theory +1307.7183 Mesoscale and Nanoscale Physics +1307.7276 High Energy Astrophysical Phenomena +1308.0035 Accelerator Physics +1308.0144 Statistical Mechanics +1308.0331 Theory +1308.0826 Mesoscale and Nanoscale Physics +1308.1108 Theory +1308.1194 Quantum Gases +1308.1473 Superconductivity +1308.1989 Chemical Physics +1308.3551 Cosmology and Nongalactic Astrophysics +1308.3887 Superconductivity +1308.4057 +1308.4966 Soft Condensed Matter +1308.6121 High Energy Astrophysical Phenomena +1308.6550 +1308.6576 Astrophysics of Galaxies +1308.6797 Learning +1309.1132 Materials Science +1309.1759 Analysis of PDEs +1309.1959 Instrumentation and Detectors +1309.2275 Combinatorics +1309.2276 Chemical Physics +1309.3163 Statistical Mechanics +1309.3588 Statistical Mechanics +1309.3589 Statistical Mechanics +1309.3592 Statistical Mechanics +1309.4732 Atomic Physics +1309.6746 Quantum Gases +1309.6805 Experiment +1309.7098 Computation +1310.0158 Analysis of PDEs +1310.0605 Logic in Computer Science +1310.0794 Logic in Computer Science +1310.0811 Materials Science +1310.1253 Number Theory +1310.1345 Combinatorics +1310.1702 Optics +1310.1779 High Energy Astrophysical Phenomena +1310.1972 Representation Theory +1310.2313 Optics +1310.2760 Metric Geometry +1310.3149 Experiment +1310.3156 +1310.3203 Other Computer Science +1310.3268 Human-Computer Interaction +1310.3272 Solar and Stellar Astrophysics +1310.3281 Materials Science +1310.3285 Statistics Theory +1310.3289 Fluid Dynamics +1310.3290 Fluid Dynamics +1310.3291 Genomics +1310.3292 Phenomenology +1310.3293 Number Theory +1310.3294 Fluid Dynamics +1310.3297 Algebraic Geometry +1310.3299 Fluid Dynamics +1310.3300 Experiment +1310.3303 Rings and Algebras +1310.3305 Fluid Dynamics +1310.3307 Cryptography and Security +1310.3309 Distributed, Parallel, and Cluster Computing +1310.3310 Fluid Dynamics +1310.3311 Cellular Automata and Lattice Gases +1310.3313 Fluid Dynamics +1310.3316 Populations and Evolution +1310.3322 Distributed, Parallel, and Cluster Computing +1310.3323 Fluid Dynamics +1310.3325 Fluid Dynamics +1310.3326 Differential Geometry +1310.3327 Fluid Dynamics +1310.3328 Fluid Dynamics +1310.3333 Information Retrieval +1310.3334 Fluid Dynamics +1310.3335 Optics +1310.3340 Strongly Correlated Electrons +1310.3344 General Physics +1310.3345 Algebraic Geometry +1310.3348 Phenomenology +1310.3351 Information Theory +1310.3352 Classical Analysis and ODEs +1310.3353 Data Structures and Algorithms +1310.3356 Hardware Architecture +1310.3360 Computational Engineering, Finance, and Science +1310.3361 Analysis of PDEs +1310.3363 Optimization and Control +1310.3365 Fluid Dynamics +1310.3366 Computer Vision and Pattern Recognition +1310.3368 Analysis of PDEs +1310.3369 Number Theory +1310.3373 +1310.3375 General Physics +1310.3376 Analysis of PDEs +1310.3377 Analysis of PDEs +1310.3382 Functional Analysis +1310.3387 Disordered Systems and Neural Networks +1310.3388 Computational Geometry +1310.3389 Physics and Society +1310.3390 Algebraic Topology +1310.3393 Fluid Dynamics +1310.3396 Portfolio Management +1310.3401 Atmospheric and Oceanic Physics +1310.3405 Cosmology and Nongalactic Astrophysics +1310.3406 Combinatorics +1310.3407 Networking and Internet Architecture +1310.3408 Biomolecules +1310.3409 Commutative Algebra +1310.3411 Experiment +1310.3412 Functional Analysis +1310.3414 Differential Geometry +1310.3416 Information Theory +1310.3417 Metric Geometry +1310.3420 Experiment +1310.3427 Lattice +1310.3432 +1310.3434 Strongly Correlated Electrons +1310.3438 Machine Learning +1310.3442 +1310.3445 Fluid Dynamics +1310.3446 Geometric Topology +1310.3449 +1310.3450 Combinatorics +1310.3452 Computer Vision and Pattern Recognition +1310.3454 Information Theory +1310.3456 Metric Geometry +1310.3458 Statistical Mechanics +1310.3461 Spectral Theory +1310.3465 Quantitative Methods +1310.3467 Solar and Stellar Astrophysics +1310.3470 Analysis of PDEs +1310.3473 Programming Languages +1310.3475 History and Philosophy of Physics +1310.3481 Programming Languages +1310.3482 Information Theory +1310.3484 Disordered Systems and Neural Networks +1310.3485 Instrumentation and Methods for Astrophysics +1310.3486 Data Structures and Algorithms +1310.3488 Number Theory +1310.3489 Optimization and Control +1310.3490 Combinatorics +1310.3492 Social and Information Networks +1310.3493 Fluid Dynamics +1310.3497 Cosmology and Nongalactic Astrophysics +1310.3498 Computers and Society +1310.3499 Social and Information Networks +1310.3500 Social and Information Networks +1310.3501 Fluid Dynamics +1310.3502 Materials Science +1310.3503 Analysis of PDEs +1310.3510 Combinatorics +1310.3515 Combinatorics +1310.3516 Analysis of PDEs +1310.3518 Populations and Evolution +1310.3520 Combinatorics +1310.3521 Computer Science and Game Theory +1310.3523 Fluid Dynamics +1310.3525 +1310.3526 Combinatorics +1310.3527 Logic +1310.3531 Probability +1310.3537 Representation Theory +1310.3538 Atmospheric and Oceanic Physics +1310.3539 General Physics +1310.3551 Experiment +1310.3552 Algebraic Geometry +1310.3558 Quantum Gases +1310.3564 Numerical Analysis +1310.3569 Algebraic Geometry +1310.3570 Representation Theory +1310.3572 Computational Finance +1310.3574 Methodology +1310.3577 Numerical Analysis +1310.3578 Statistics Theory +1310.3582 Superconductivity +1310.3584 Networking and Internet Architecture +1310.3585 Group Theory +1310.3586 Chemical Physics +1310.3588 Accelerator Physics +1310.3592 Materials Science +1310.3596 Computation +1310.3598 Phenomenology +1310.3603 Number Theory +1310.3605 Combinatorics +1310.3606 +1310.3607 Learning +1310.3612 +1310.3613 Other Condensed Matter +1310.3619 Astrophysics of Galaxies +1310.3622 Mesoscale and Nanoscale Physics +1310.3623 Distributed, Parallel, and Cluster Computing +1310.3627 Experiment +1310.3630 Materials Science +1310.3637 Networking and Internet Architecture +1310.3643 +1310.3649 Probability +1310.3651 Astrophysics of Galaxies +1310.3652 Computers and Society +1310.3657 Experiment +1310.3658 Analysis of PDEs +1310.3666 Differential Geometry +1310.3668 Representation Theory +1310.3674 Computational Complexity +1310.3677 Analysis of PDEs +1310.3679 Analysis of PDEs +1310.3681 Analysis of PDEs +1310.3682 Geometric Topology +1310.3686 Solar and Stellar Astrophysics +1310.3690 Astrophysics of Galaxies +1310.3692 Adaptation and Self-Organizing Systems +1310.3693 Molecular Networks +1310.3697 Machine Learning +1310.3699 Rings and Algebras +1310.3700 Optics +1310.3704 Materials Science +1310.3708 Geometric Topology +1310.3713 Information Theory +1310.3717 Computer Vision and Pattern Recognition +1310.3718 Quantum Algebra +1310.3723 Cryptography and Security +1310.3729 Soft Condensed Matter +1310.3731 Experiment +1310.3740 Cosmology and Nongalactic Astrophysics +1310.3741 Symbolic Computation +1310.3743 Fluid Dynamics +1310.3744 Strongly Correlated Electrons +1310.3747 Fluid Dynamics +1310.3752 Theory +1310.3754 Neurons and Cognition +1310.3758 Theory +1310.3759 Theory +1310.3765 Adaptation and Self-Organizing Systems +1310.3766 Differential Geometry +1310.3767 Astrophysics of Galaxies +1310.3774 Fluid Dynamics +1310.3779 Analysis of PDEs +1310.3781 Multiagent Systems +1310.3782 +1310.3783 Classical Analysis and ODEs +1310.3784 Commutative Algebra +1310.3787 Optimization and Control +1310.3795 Fluid Dynamics +1310.3796 Neurons and Cognition +1310.3797 Strongly Correlated Electrons +1310.3799 Fluid Dynamics +1310.3802 Number Theory +1310.3805 Neural and Evolutionary Computing +1310.3808 Digital Libraries +1310.3809 Cryptography and Security +1310.3811 Fluid Dynamics +1310.3813 Superconductivity +1310.3814 High Energy Astrophysical Phenomena +cond-mat/0108527 Strongly Correlated Electrons +cond-mat/0108528 Statistical Mechanics +cond-mat/0201013 Statistical Mechanics +cond-mat/0305057 Strongly Correlated Electrons +math/0209259 Differential Geometry +math/0511207 Functional Analysis +math/0602002 Algebraic Geometry +math/0702677 Algebraic Topology +math/9403216 Classical Analysis and ODEs +q-alg/9705001 Quantum Algebra +solv-int/9704005 Exactly Solvable and Integrable Systems +solv-int/9709009 Exactly Solvable and Integrable Systems +0803.0105 Geometric Topology +0807.2326 Geometric Topology +0809.1483 General Mathematics +0906.4557 +0911.1602 Differential Geometry +1003.0737 Geometric Topology +1007.3036 Data Structures and Algorithms +1104.3446 Chaotic Dynamics +1105.1455 Combinatorics +1106.5376 +1107.3509 Chaotic Dynamics +1110.5048 Cosmology and Nongalactic Astrophysics +1110.5278 Probability +1111.3307 Mesoscale and Nanoscale Physics +1111.7269 +1201.2759 Cosmology and Nongalactic Astrophysics +1201.4416 +1202.4900 Chaotic Dynamics +1203.2269 Combinatorics +1204.0794 +1205.0022 Theory +1207.2340 Social and Information Networks +1208.1895 Algebraic Geometry +1208.6027 Differential Geometry +1209.0206 +1209.0604 Number Theory +1210.0926 Theory +1210.1941 Analysis of PDEs +1210.2783 Analysis of PDEs +1210.3293 +1211.3816 +1211.5384 Numerical Analysis +1211.5500 Superconductivity +1211.6082 Solar and Stellar Astrophysics +1212.0759 Analysis of PDEs +1212.4254 Quantum Gases +1212.4853 Earth and Planetary Astrophysics +1301.0364 Instrumentation and Methods for Astrophysics +1301.2142 Materials Science +1301.3582 Combinatorics +1301.7721 Materials Science +1302.1039 Combinatorics +1302.3865 +1302.4589 Functional Analysis +1302.6132 Mesoscale and Nanoscale Physics +1303.0965 Materials Science +1303.2429 Representation Theory +1303.2924 +1303.3487 Representation Theory +1303.4415 Theory +1304.0773 Phenomenology +1304.1366 Theory +1304.1745 Mesoscale and Nanoscale Physics +1304.2552 Analysis of PDEs +1304.4387 Atmospheric and Oceanic Physics +1304.4503 Analysis of PDEs +1304.5520 Quantum Gases +1304.5931 +1304.7191 Complex Variables +1304.7667 Mesoscale and Nanoscale Physics +1304.7878 Portfolio Management +1305.0258 Numerical Analysis +1305.0856 Theory +1305.4114 Adaptation and Self-Organizing Systems +1305.6672 Materials Science +1305.6854 Algebraic Geometry +1306.0884 +1306.1543 Theory +1306.4401 Physics and Society +1306.5554 Machine Learning +1307.0411 +1307.0770 Experiment +1307.0922 Strongly Correlated Electrons +1307.1207 Quantum Gases +1307.1264 Superconductivity +1307.3476 +1307.6339 Lattice +1307.6577 +1307.6964 Mesoscale and Nanoscale Physics +1307.7487 +1307.8011 Phenomenology +1308.0736 Phenomenology +1308.2786 Theory +1308.3189 Experiment +1308.3250 +1308.3445 Instrumentation and Detectors +1308.3791 Algebraic Geometry +1308.5686 Theory +1308.6456 Theory +1308.6583 Theory +1309.0658 Strongly Correlated Electrons +1309.1041 Mesoscale and Nanoscale Physics +1309.1567 Instrumentation and Detectors +1309.2274 Physics and Society +1309.4197 Superconductivity +1309.4903 Mesoscale and Nanoscale Physics +1309.5216 Combinatorics +1309.6140 Differential Geometry +1309.6405 +1309.6685 Differential Geometry +1309.6687 Social and Information Networks +1309.7305 +1309.7987 Instrumentation and Detectors +1310.1996 Solar and Stellar Astrophysics +1310.2430 Neurons and Cognition +1310.4570 Plasma Physics +1310.5929 Theory +1310.6154 Optics +1310.7018 Statistical Finance +1310.7912 Commutative Algebra +1310.7985 +1310.8536 Lattice +1310.8646 Group Theory +1311.0094 Classical Analysis and ODEs +1311.0099 Lattice +1311.0222 Learning +1311.0351 Artificial Intelligence +1311.0602 Hardware Architecture +1311.0623 Cosmology and Nongalactic Astrophysics +1311.0841 Databases +1311.0861 Instrumentation and Methods for Astrophysics +1311.0863 Spectral Theory +1311.0864 Programming Languages +1311.0887 Differential Geometry +1311.0891 Phenomenology +1311.0892 Number Theory +1311.0895 Materials Science +1311.0896 Number Theory +1311.0897 Functional Analysis +1311.0898 Optics +1311.0899 Complex Variables +1311.0902 Information Theory +1311.0904 Analysis of PDEs +1311.0909 Information Theory +1311.0914 Learning +1311.0915 Algebraic Geometry +1311.0917 Adaptation and Self-Organizing Systems +1311.0920 Phenomenology +1311.0921 Phenomenology +1311.0923 Analysis of PDEs +1311.0924 Computer Science and Game Theory +1311.0925 Optics +1311.0928 Computational Geometry +1311.0931 Materials Science +1311.0937 Operator Algebras +1311.0939 Commutative Algebra +1311.0940 Algebraic Geometry +1311.0942 Information Theory +1311.0944 Artificial Intelligence +1311.0945 Logic +1311.0946 Optics +1311.0947 Materials Science +1311.0951 Networking and Internet Architecture +1311.0959 Robotics +1311.0961 Differential Geometry +1311.0965 Materials Science +1311.0968 Experiment +1311.0969 Differential Geometry +1311.0971 Analysis of PDEs +1311.0973 Number Theory +1311.0974 Algebraic Geometry +1311.0975 Analysis of PDEs +1311.0977 +1311.0978 +1311.0981 Commutative Algebra +1311.0984 Probability +1311.0987 Commutative Algebra +1311.0988 Materials Science +1311.0994 Lattice +1311.0998 +1311.1011 Atomic Physics +1311.1018 Computer Science and Game Theory +1311.1020 Classical Analysis and ODEs +1311.1021 Astrophysics of Galaxies +1311.1022 Analysis of PDEs +1311.1024 Number Theory +1311.1027 Probability +1311.1036 +1311.1037 Materials Science +1311.1041 Numerical Analysis +1311.1049 Materials Science +1311.1052 Phenomenology +1311.1055 Optimization and Control +1311.1058 Fluid Dynamics +1311.1060 Probability +1311.1064 Rings and Algebras +1311.1082 Digital Libraries +1311.1089 Other Computer Science +1311.1090 Neural and Evolutionary Computing +1311.1093 Number Theory +1311.1094 +1311.1097 General Finance +1311.1100 Number Theory +1311.1103 Phenomenology +1311.1104 Cosmology and Nongalactic Astrophysics +1311.1113 Phenomenology +1311.1121 Theory +1311.1122 Statistical Finance +1311.1126 +1311.1127 Phenomenology +1311.1130 Lattice +1311.1131 Statistics Theory +1311.1132 Human-Computer Interaction +1311.1135 Classical Analysis and ODEs +1311.1140 Soft Condensed Matter +1311.1143 Lattice +1311.1146 Category Theory +1311.1147 Differential Geometry +1311.1152 +1311.1162 Computers and Society +1311.1165 Complex Variables +1311.1166 Optimization and Control +1311.1169 Computation and Language +1311.1172 +1311.1175 Phenomenology +1311.1176 Complex Variables +1311.1177 Materials Science +1311.1181 Databases +1311.1185 Algebraic Geometry +1311.1193 Operator Algebras +1311.1194 Computation and Language +1311.1195 Networking and Internet Architecture +1311.1197 Software Engineering +math/0305069 Differential Geometry +math/0305233 Differential Geometry +math/0309087 Differential Geometry +math/0509147 Differential Geometry +math/0612304 Differential Geometry +0801.1335 Analysis of PDEs +0810.0043 Group Theory +0810.1097 Numerical Analysis +0810.1381 Numerical Analysis +0810.4364 Populations and Evolution +0811.0203 Populations and Evolution +0811.0941 Analysis of PDEs +0812.3831 +0903.0678 Representation Theory +0908.0845 Metric Geometry +0909.0392 Numerical Analysis +0909.0637 Analysis of PDEs +0910.4305 Algebraic Geometry +0911.5436 Algebraic Geometry +0912.3225 Populations and Evolution +1001.0237 Combinatorics +1001.3371 General Physics +1002.2244 Discrete Mathematics +1012.0682 Analysis of PDEs +1012.3686 Number Theory +1012.4995 Theory +1103.4226 Statistics Theory +1104.0621 Functional Analysis +1104.3515 Statistical Mechanics +1104.3923 Data Structures and Algorithms +1105.0649 +1107.0264 K-Theory and Homology +1107.0805 Operator Algebras +1108.1824 Information Theory +1108.4894 Instrumentation and Detectors +1108.5349 +1109.2210 +1109.2591 +1110.4798 Analysis of PDEs +1111.2085 Cell Behavior +1111.2372 Algebraic Geometry +1111.6433 Statistical Mechanics +1112.2594 Analysis of PDEs +1201.2337 Computation +1202.2949 Algebraic Geometry +1202.3642 +1202.4902 Dynamical Systems +1203.2881 Category Theory +1203.3457 Analysis of PDEs +1203.4730 Spectral Theory +1204.1505 Computational Complexity +1204.1772 Analysis of PDEs +1204.6703 Learning +1205.3127 Commutative Algebra +1205.4157 Statistical Mechanics +1205.6600 High Energy Astrophysical Phenomena +1206.2290 +1206.3189 Information Theory +1206.4570 +1206.4921 Phenomenology +1206.5107 Mesoscale and Nanoscale Physics +1207.1017 Analysis of PDEs +1207.2177 Physics Education +1207.7051 Number Theory +1207.7208 Probability +1208.2453 Analysis of PDEs +1208.5708 Mesoscale and Nanoscale Physics +1209.1483 Digital Libraries +1209.1575 Analysis of PDEs +1209.1883 Statistical Mechanics +1209.2607 Statistical Mechanics +1209.4298 Optics +1209.4767 Optics +1209.5161 Phenomenology +1209.5560 Soft Condensed Matter +1210.2067 Information Theory +1210.2267 Mesoscale and Nanoscale Physics +1210.3042 Statistical Mechanics +1210.4279 Probability +1210.4620 Differential Geometry +1210.5481 +1210.7158 Mesoscale and Nanoscale Physics +1211.0128 +1211.0214 +1211.0312 Applications +1211.0786 Complex Variables +1211.0923 Materials Science +1211.1447 Distributed, Parallel, and Cluster Computing +1211.2637 +1211.3642 Data Structures and Algorithms +1211.3931 Cosmology and Nongalactic Astrophysics +1211.3965 Complex Variables +1211.4394 Instrumentation and Methods for Astrophysics +1211.5731 Number Theory +1211.6404 Cosmology and Nongalactic Astrophysics +1211.6468 Logic in Computer Science +1211.6822 Numerical Analysis +1211.6891 Logic +1212.0175 Materials Science +1212.0600 Instrumentation and Methods for Astrophysics +1212.0710 Materials Science +1212.1151 Cosmology and Nongalactic Astrophysics +1212.2539 Quantum Gases +1212.3829 Fluid Dynamics +1301.0099 Phenomenology +1301.0299 Optics +1301.0477 Algebraic Topology +1301.1051 Classical Analysis and ODEs +1301.1061 Information Theory +1301.2207 Soft Condensed Matter +1301.2405 Applications +1301.2518 Data Analysis, Statistics and Probability +1301.2564 Superconductivity +1301.3127 Logic in Computer Science +1301.3811 Combinatorics +1301.3817 Dynamical Systems +1301.3937 Phenomenology +1301.4125 Algebraic Geometry +1301.4140 Solar and Stellar Astrophysics +1301.4148 Cosmology and Nongalactic Astrophysics +1301.4194 Portfolio Management +1301.4215 Pattern Formation and Solitons +1301.4216 Materials Science +1301.4218 Materials Science +1301.4220 Cosmology and Nongalactic Astrophysics +1301.4238 Rings and Algebras +1301.4239 Lattice +1301.4241 Mesoscale and Nanoscale Physics +1301.4243 Number Theory +1301.4244 Cosmology and Nongalactic Astrophysics +1301.4247 Neurons and Cognition +1301.4248 Instrumentation and Detectors +1301.4250 Number Theory +1301.4255 History and Overview +1301.4258 Programming Languages +1301.4259 Geometric Topology +1301.4263 Instrumentation and Methods for Astrophysics +1301.4272 Artificial Intelligence +1301.4276 Populations and Evolution +1301.4277 Optics +1301.4278 Optics +1301.4282 Analysis of PDEs +1301.4287 Networking and Internet Architecture +1301.4292 Statistics Theory +1301.4298 Quantitative Methods +1301.4299 Populations and Evolution +1301.4300 Information Theory +1301.4303 Quantum Gases +1301.4314 Functional Analysis +1301.4329 Astrophysics of Galaxies +1301.4330 Accelerator Physics +1301.4331 Numerical Analysis +1301.4334 Programming Languages +1301.4335 Analysis of PDEs +1301.4336 Analysis of PDEs +1301.4338 General Topology +1301.4342 Classical Analysis and ODEs +1301.4343 Materials Science +1301.4348 Phenomenology +1301.4354 Mesoscale and Nanoscale Physics +1301.4355 Chemical Physics +1301.4356 Software Engineering +1301.4357 Materials Science +1301.4359 Complex Variables +1301.4366 Astrophysics of Galaxies +1301.4372 Logic in Computer Science +1301.4377 Computer Vision and Pattern Recognition +1301.4380 Cosmology and Nongalactic Astrophysics +1301.4384 High Energy Astrophysical Phenomena +1301.4394 Robotics +1301.4396 Spectral Theory +1301.4402 Probability +1301.4403 Dynamical Systems +1301.4406 Functional Analysis +1301.4409 Algebraic Geometry +1301.4413 Dynamical Systems +1301.4415 Analysis of PDEs +1301.4421 Combinatorics +1301.4428 Probability +1301.4430 Artificial Intelligence +1301.4431 Phenomenology +1301.4432 Computation and Language +1301.4444 Information Theory +1301.4446 Group Theory +1301.4448 Phenomenology +1301.4449 Soft Condensed Matter +1301.4455 Phenomenology +1301.4456 Metric Geometry +1301.4461 +1301.4466 Dynamical Systems +1301.4467 Phenomenology +1301.4475 Analysis of PDEs +1301.4478 Data Structures and Algorithms +1301.4480 Differential Geometry +1301.4482 Mesoscale and Nanoscale Physics +1301.4488 Materials Science +1301.4490 Distributed, Parallel, and Cluster Computing +math/0011159 Dynamical Systems +math/0608041 Analysis of PDEs +0712.2323 Spectral Theory +0809.3589 Complex Variables +0811.0466 Materials Science +1003.1009 Symplectic Geometry +1004.4725 Theory +1006.0810 Symplectic Geometry +1006.5073 Probability +1008.4841 Pricing of Securities +1011.1570 Differential Geometry +1102.4796 Probability +1103.4506 Classical Physics +1105.4696 Earth and Planetary Astrophysics +1107.2963 Phenomenology +1109.1767 Quantum Algebra +1110.1145 Functional Analysis +1110.1864 Logic +1110.6600 Data Structures and Algorithms +1111.4339 Logic +1111.4975 Rings and Algebras +1112.1413 +1201.0899 Algebraic Topology +1201.2310 Number Theory +1201.4831 Probability +1202.4609 Instrumentation and Methods for Astrophysics +1202.5369 Statistical Mechanics +1203.0802 General Physics +1203.5856 Spectral Theory +1204.1543 Metric Geometry +1204.2163 Analysis of PDEs +1204.2345 Pattern Formation and Solitons +1204.6423 Information Theory +1205.2011 Geometric Topology +1205.3250 Superconductivity +1205.3359 Materials Science +1206.0758 +1206.5967 Fluid Dynamics +1207.4479 Strongly Correlated Electrons +1207.4987 +1207.6920 Phenomenology +1208.2691 Probability +1209.3575 Combinatorics +1209.5585 Phenomenology +1210.3450 Computational Physics +1210.5286 Metric Geometry +1210.7628 Spectral Theory +1211.1685 Theory +1211.3159 Fluid Dynamics +1211.4251 Biomolecules +1212.3997 Mesoscale and Nanoscale Physics +1212.6146 Statistical Mechanics +1301.0543 Theory +1301.4935 Probability +1302.1068 Instrumentation and Methods for Astrophysics +1302.3689 +1302.3885 High Energy Astrophysical Phenomena +1302.6178 Mesoscale and Nanoscale Physics +1302.6295 Functional Analysis +1303.2498 Number Theory +1303.4099 Dynamical Systems +1304.0735 Instrumentation and Methods for Astrophysics +1304.2171 Strongly Correlated Electrons +1304.4554 Analysis of PDEs +1304.4642 +1304.4676 Neurons and Cognition +1304.5161 +1304.5177 Adaptation and Self-Organizing Systems +1304.5619 Geometric Topology +1304.6017 Statistics Theory +1305.0251 Phenomenology +1305.0985 +1305.2916 Theory +1305.2948 +1305.3680 Theory +1305.3886 Optics +1305.5335 Metric Geometry +1305.6137 Logic in Computer Science +1305.6731 Strongly Correlated Electrons +1305.7364 Dynamical Systems +1305.7397 Phenomenology +1306.0097 +1306.1485 +1306.2789 Strongly Correlated Electrons +1306.3195 +1306.3782 +1306.4630 Soft Condensed Matter +1306.5992 +1306.6643 Experiment +1307.0503 Cosmology and Nongalactic Astrophysics +1307.1902 Atomic Physics +1307.2337 Analysis of PDEs +1307.2752 +1307.3520 Theory +1307.4282 +1307.4700 Information Theory +1307.4867 Statistical Mechanics +1307.5131 Strongly Correlated Electrons +1307.6070 Experiment +1307.7077 Cosmology and Nongalactic Astrophysics +1307.7187 History and Overview +1307.7551 +1308.0985 Differential Geometry +1308.1222 Theory +1308.2467 Statistical Mechanics +1308.2722 Optics +1308.4510 +1309.0060 Quantum Gases +1309.1119 +1309.1121 Theory +1309.2623 +1309.3198 Superconductivity +1309.4711 +1309.7833 Computational Finance +1310.0870 Cosmology and Nongalactic Astrophysics +1310.1318 +1310.1385 Phenomenology +1310.1820 Optics +1310.5139 Physics and Society +1310.5209 Phenomenology +1310.5881 Phenomenology +1310.7121 Popular Physics +1310.7267 Experiment +1310.7897 Phenomenology +1310.8179 Combinatorics +1310.8211 Distributed, Parallel, and Cluster Computing +1311.1726 Biomolecules +1311.2184 Superconductivity +1311.4207 Earth and Planetary Astrophysics +1311.4712 Lattice +1311.4993 +1311.5325 +1311.6042 Superconductivity +1311.6284 +1311.6371 Machine Learning +1311.6376 Populations and Evolution +1311.6488 Phenomenology +1311.6638 Computer Science and Game Theory +1311.6782 Group Theory +1311.6807 General Physics +1311.6810 Robotics +1311.6811 Graphics +1311.6820 Lattice +1311.6821 Cryptography and Security +1311.6827 Mesoscale and Nanoscale Physics +1311.6828 Analysis of PDEs +1311.6829 Phenomenology +1311.6830 Formal Languages and Automata Theory +1311.6838 Learning +1311.6844 Methodology +1311.6848 Cryptography and Security +1311.6850 Operator Algebras +1311.6851 Statistical Mechanics +1311.6857 Populations and Evolution +1311.6858 Cosmology and Nongalactic Astrophysics +1311.6864 Neurons and Cognition +1311.6870 Multiagent Systems +1311.6871 Optics +1311.6876 Databases +1311.6877 Information Theory +1311.6878 Algebraic Topology +1311.6879 Formal Languages and Automata Theory +1311.6880 Information Theory +1311.6881 Computer Vision and Pattern Recognition +1311.6885 Lattice +1311.6891 +1311.6894 Astrophysics of Galaxies +1311.6896 Optics +1311.6897 Symbolic Computation +1311.6900 Numerical Analysis +1311.6901 Superconductivity +1311.6902 Distributed, Parallel, and Cluster Computing +1311.6903 Group Theory +1311.6907 Artificial Intelligence +1311.6914 Networking and Internet Architecture +1311.6915 Strongly Correlated Electrons +1311.6917 Phenomenology +1311.6918 High Energy Astrophysical Phenomena +1311.6920 Experiment +1311.6921 Optics +1311.6928 Differential Geometry +1311.6929 Programming Languages +1311.6931 Lattice +1311.6932 Computer Vision and Pattern Recognition +1311.6933 Software Engineering +1311.6934 Computer Vision and Pattern Recognition +1311.6935 Analysis of PDEs +1311.6938 Numerical Analysis +1311.6940 Instrumentation and Detectors +1311.6941 Lattice +1311.6945 Strongly Correlated Electrons +1311.6949 Other Computer Science +1311.6952 Analysis of PDEs +1311.6962 Algebraic Geometry +1311.6967 Lattice +1311.6968 Representation Theory +1311.6972 Combinatorics +1311.6974 Functional Analysis +1311.6975 Lattice +1311.6981 Other Computer Science +1311.6984 +1311.6996 Computational Geometry +1311.6997 Analysis of PDEs +1311.7007 Analysis of PDEs +1311.7010 Mesoscale and Nanoscale Physics +1311.7011 Software Engineering +1311.7015 Lattice +1311.7016 Number Theory +1311.7019 Exactly Solvable and Integrable Systems +1311.7025 Dynamical Systems +1311.7034 Probability +1311.7036 Cosmology and Nongalactic Astrophysics +1311.7038 Combinatorics +1311.7041 Lattice +1311.7042 +1311.7044 High Energy Astrophysical Phenomena +1311.7049 Statistics Theory +1311.7050 Analysis of PDEs +1311.7055 Medical Physics +1311.7056 Algebraic Topology +1311.7060 Combinatorics +1311.7061 Representation Theory +1311.7064 Combinatorics +1311.7072 Statistical Mechanics +1311.7080 Computer Vision and Pattern Recognition +1311.7085 +1311.7089 Group Theory +1311.7093 Networking and Internet Architecture +1311.7099 Optimization and Control +1311.7101 Algebraic Geometry +1311.7105 Computational Complexity +1311.7109 Phenomenology +1311.7115 Computational Complexity +1311.7116 +1311.7118 Statistics Theory +1311.7119 Chemical Physics +1311.7120 Probability +1311.7122 Methodology +1311.7124 Rings and Algebras +1311.7125 Category Theory +1311.7134 Cosmology and Nongalactic Astrophysics +cond-mat/0209313 Materials Science +cs/0410048 Data Structures and Algorithms +math/0609570 Quantum Algebra +0708.1356 +0708.3822 +0709.1499 Number Theory +0811.2170 Data Analysis, Statistics and Probability +0907.2354 +0910.4702 +1011.6082 Combinatorics +1101.3449 Differential Geometry +1101.4803 Operator Algebras +1105.1995 Functional Analysis +1107.5732 Classical Analysis and ODEs +1110.0189 Combinatorics +1110.0634 +1110.3618 Adaptation and Self-Organizing Systems +1110.6737 Combinatorics +1111.2787 Analysis of PDEs +1111.6409 Classical Analysis and ODEs +1112.4633 +1112.5797 +1202.1072 +1202.6034 Category Theory +1204.1367 Computational Complexity +1204.1766 High Energy Astrophysical Phenomena +1204.3648 Astrophysics of Galaxies +1206.2159 +1206.6784 Astrophysics of Galaxies +1207.1055 +1207.3537 Other Condensed Matter +1207.4756 Instrumentation and Detectors +1208.0320 Representation Theory +1208.1031 +1208.3515 Mesoscale and Nanoscale Physics +1208.5194 Discrete Mathematics +1209.3019 Phenomenology +1209.4310 Phenomenology +1209.4801 +1209.5935 Quantum Gases +1210.0414 +1210.2712 Strongly Correlated Electrons +1210.5991 Information Theory +1210.6692 Soft Condensed Matter +1210.7915 Analysis of PDEs +1211.0332 Atomic Physics +1211.1470 Other Condensed Matter +1211.4966 Geometric Topology +1211.5047 Plasma Physics +1211.5674 Dynamical Systems +1211.6862 +1212.0290 Theory +1212.1949 Methodology +1212.3836 Superconductivity +1212.4636 Strongly Correlated Electrons +1212.5447 Statistical Mechanics +1212.5809 Analysis of PDEs +1212.5877 Computer Vision and Pattern Recognition +1212.6319 +1301.0980 Information Theory +1301.1688 Cosmology and Nongalactic Astrophysics +1301.1837 Statistical Mechanics +1301.1968 Materials Science +1301.2084 +1301.2901 Phenomenology +1301.3005 Earth and Planetary Astrophysics +1301.4347 Strongly Correlated Electrons +1301.5365 Quantum Gases +1301.5936 Solar and Stellar Astrophysics +1302.0491 +1302.1796 Geophysics +1302.5073 Analysis of PDEs +1302.6376 Disordered Systems and Neural Networks +1302.6958 Probability +1303.0155 +1303.1899 Mesoscale and Nanoscale Physics +1303.2157 Statistical Mechanics +1303.2301 Phenomenology +1303.2370 Functional Analysis +1303.2397 Solar and Stellar Astrophysics +1303.2428 +1303.3139 Statistical Mechanics +1303.3439 Complex Variables +1303.3547 Optimization and Control +1303.4298 High Energy Astrophysical Phenomena +1303.5158 +1303.5312 Complex Variables +1303.6227 Genomics +1303.7030 Information Theory +1303.7128 Solar and Stellar Astrophysics +1303.7149 Digital Libraries +1303.7227 Optimization and Control +1303.7236 Phenomenology +1303.7241 Quantum Gases +1303.7242 Algebraic Geometry +1303.7245 Optimization and Control +1303.7253 Biological Physics +1303.7262 Popular Physics +1303.7263 +1303.7268 Analysis of PDEs +1303.7276 Biological Physics +1303.7282 Materials Science +1303.7287 Information Theory +1303.7289 Information Theory +1303.7291 Information Theory +1303.7292 Biological Physics +1303.7293 Commutative Algebra +1303.7295 Information Theory +1303.7296 Information Theory +1303.7298 Commutative Algebra +1303.7300 Distributed, Parallel, and Cluster Computing +1303.7307 Physics and Society +1303.7309 Number Theory +1303.7312 Algebraic Geometry +1303.7316 Materials Science +1303.7318 Computation +1303.7321 Superconductivity +1303.7322 Dynamical Systems +1303.7324 Geometric Topology +1303.7326 Logic in Computer Science +1303.7327 Logic in Computer Science +1303.7328 Logic in Computer Science +1303.7329 Logic in Computer Science +1303.7330 Logic in Computer Science +1303.7331 Logic in Computer Science +1303.7332 Logic in Computer Science +1303.7333 Logic in Computer Science +1303.7334 Logic in Computer Science +1303.7335 Logic in Computer Science +1303.7336 Logic in Computer Science +1303.7337 Number Theory +1303.7342 Theory +1303.7346 Functional Analysis +1303.7350 Rings and Algebras +1303.7351 +1303.7353 Multimedia +1303.7355 Functional Analysis +1303.7358 Mesoscale and Nanoscale Physics +1303.7361 Computational Complexity +1303.7366 Differential Geometry +1303.7367 Phenomenology +1303.7370 Classical Analysis and ODEs +1303.7373 Mesoscale and Nanoscale Physics +1303.7377 Multiagent Systems +1303.7379 Software Engineering +1303.7380 Geometric Topology +1303.7382 Popular Physics +1303.7383 Geometric Topology +1303.7384 +1303.7386 Logic +1303.7387 Geometric Topology +1303.7392 +1303.7395 +1303.7397 Cryptography and Security +1303.7398 +1303.7400 General Finance +1303.7401 General Finance +1303.7402 General Finance +1303.7403 General Finance +1303.7404 General Finance +1303.7405 General Finance +1303.7406 Differential Geometry +1303.7409 Methodology +1303.7413 Fluid Dynamics +1303.7414 Materials Science +1303.7421 Mesoscale and Nanoscale Physics +1303.7422 Differential Geometry +1303.7425 Symbolic Computation +1303.7427 Computational Geometry +1303.7431 Theory +1303.7433 Instrumentation and Methods for Astrophysics +1303.7435 +1303.7442 Analysis of PDEs +1303.7443 Optimization and Control +1303.7444 Differential Geometry +1303.7445 Artificial Intelligence +1303.7452 Materials Science +1303.7454 Information Theory +1303.7455 Optimization and Control +1303.7457 Cryptography and Security +1303.7460 Information Theory +1303.7463 Solar and Stellar Astrophysics +1303.7466 Combinatorics +1303.7473 +1303.7475 Populations and Evolution +cond-mat/0110561 Statistical Mechanics +cond-mat/0307242 Soft Condensed Matter +cond-mat/0601453 Mesoscale and Nanoscale Physics +math/0702234 Algebraic Geometry +physics/0612142 Biological Physics +0712.0273 Strongly Correlated Electrons +0809.0415 Number Theory +0809.4990 Probability +0810.3596 General Physics +0810.4695 Operator Algebras +0901.0580 +0906.4822 Theory +0907.1117 General Physics +0912.1732 Optics +1001.4166 Phenomenology +1002.0742 +1004.0500 Group Theory +1007.5187 +1007.5223 Quantum Gases +1008.1429 Dynamical Systems +1008.1852 Symplectic Geometry +1011.2439 +1012.0269 Computation +1012.2737 Analysis of PDEs +1103.2647 Dynamical Systems +1105.0140 Dynamical Systems +1105.4164 +1108.5550 Complex Variables +1109.1588 +1110.0710 +1111.2112 Experiment +1112.3679 +1201.3499 Cosmology and Nongalactic Astrophysics +1202.0447 Probability +1202.6117 Combinatorics +1203.1958 Probability +1204.3932 Statistical Mechanics +1205.1761 Phenomenology +1205.2102 Symplectic Geometry +1205.3274 Number Theory +1205.3635 Dynamical Systems +1206.0883 Physics and Society +1206.1389 Information Theory +1206.5473 Logic +1207.0724 Number Theory +1207.3985 Differential Geometry +1208.1653 Quantum Gases +1208.5325 Probability +1209.4981 Metric Geometry +1209.5079 +1210.4702 Solar and Stellar Astrophysics +1210.7318 Cosmology and Nongalactic Astrophysics +1211.1707 Theory +1211.3745 Phenomenology +1211.4306 +1211.4751 +1212.0984 Superconductivity +1212.2769 Theory +1212.4881 Mesoscale and Nanoscale Physics +1212.4993 Lattice +1212.6462 Group Theory +1212.6529 Cosmology and Nongalactic Astrophysics +1212.6665 Analysis of PDEs +1301.2197 Optics +1301.4033 Dynamical Systems +1301.4492 Strongly Correlated Electrons +1301.4709 Quantum Gases +1301.4972 Combinatorics +1301.5501 Theory +1301.5521 Number Theory +1301.5670 Differential Geometry +1301.7717 Optimization and Control +1302.1763 Theory +1302.2557 +1302.4278 Probability +1302.5098 Phenomenology +1302.5291 Phenomenology +1302.6103 Statistics Theory +1302.6298 Quantum Algebra +1302.6389 +1303.0223 Experiment +1303.0534 Fluid Dynamics +1303.1390 Optics +1303.2233 Phenomenology +1303.3062 Phenomenology +1303.4203 Materials Science +1303.5351 Phenomenology +1304.1411 Databases +1304.3360 +1304.3415 High Energy Astrophysical Phenomena +1304.4368 +1304.5708 Dynamical Systems +1304.6399 Cosmology and Nongalactic Astrophysics +1304.6903 Theory +1304.7036 Atomic Physics +1305.0071 Theory +1305.0178 Algebraic Geometry +1305.0390 Superconductivity +1305.0559 Strongly Correlated Electrons +1305.0634 Group Theory +1305.4818 Symbolic Computation +1305.5796 Computational Engineering, Finance, and Science +1305.6882 Plasma Physics +1305.6967 Geophysics +1306.1104 Quantum Gases +1306.2469 Functional Analysis +1306.2664 Disordered Systems and Neural Networks +1306.4802 Solar and Stellar Astrophysics +1306.6481 Strongly Correlated Electrons +1306.6573 +1307.0690 Materials Science +1307.1884 Earth and Planetary Astrophysics +1307.3591 Neurons and Cognition +1307.4145 Learning +1307.4146 Information Theory +1307.4147 Biological Physics +1307.4420 Computational Complexity +1307.4432 Instrumentation and Detectors +1307.4852 Networking and Internet Architecture +1307.4868 High Energy Astrophysical Phenomena +1307.5004 Computer Science and Game Theory +1307.5072 Solar and Stellar Astrophysics +1307.5074 Solar and Stellar Astrophysics +1307.5076 Computational Engineering, Finance, and Science +1307.5080 Phenomenology +1307.5085 Networking and Internet Architecture +1307.5088 Classical Analysis and ODEs +1307.5090 Computational Complexity +1307.5092 Instrumentation and Methods for Astrophysics +1307.5094 Combinatorics +1307.5096 Optics +1307.5097 Solar and Stellar Astrophysics +1307.5099 Differential Geometry +1307.5100 Optimization and Control +1307.5108 Data Structures and Algorithms +1307.5110 Combinatorics +1307.5112 Superconductivity +1307.5114 Numerical Analysis +1307.5118 Machine Learning +1307.5124 Theory +1307.5125 High Energy Astrophysical Phenomena +1307.5127 +1307.5129 Instrumentation and Methods for Astrophysics +1307.5133 Accelerator Physics +1307.5136 Optics +1307.5137 Statistical Mechanics +1307.5138 Metric Geometry +1307.5139 Instrumentation and Methods for Astrophysics +1307.5142 Instrumentation and Methods for Astrophysics +1307.5143 +1307.5145 Applications +1307.5147 Populations and Evolution +1307.5150 Materials Science +1307.5156 Number Theory +1307.5164 Strongly Correlated Electrons +1307.5165 Phenomenology +1307.5170 Number Theory +1307.5179 Probability +1307.5180 Statistical Mechanics +1307.5184 Analysis of PDEs +1307.5186 Discrete Mathematics +1307.5188 Number Theory +1307.5192 Instrumentation and Methods for Astrophysics +1307.5194 Instrumentation and Methods for Astrophysics +1307.5195 Instrumentation and Methods for Astrophysics +1307.5196 Instrumentation and Methods for Astrophysics +1307.5197 High Energy Astrophysical Phenomena +1307.5199 Earth and Planetary Astrophysics +1307.5201 Classical Analysis and ODEs +1307.5203 Differential Geometry +1307.5204 Instrumentation and Methods for Astrophysics +1307.5211 Phenomenology +1307.5214 Pattern Formation and Solitons +1307.5216 Computer Science and Game Theory +1307.5217 Optics +1307.5221 Probability +1307.5225 Solar and Stellar Astrophysics +1307.5228 Information Theory +1307.5235 Differential Geometry +1307.5236 Analysis of PDEs +1307.5240 Information Theory +1307.5243 Statistics Theory +1307.5246 Combinatorics +1307.5247 Disordered Systems and Neural Networks +1307.5248 Phenomenology +1307.5252 Rings and Algebras +1307.5254 Lattice +1307.5260 Human-Computer Interaction +1307.5262 Group Theory +1307.5263 Atomic Physics +1307.5265 Differential Geometry +1307.5266 Phenomenology +1307.5268 Physics and Society +1307.5277 Programming Languages +1307.5278 Dynamical Systems +1307.5286 Statistics Theory +1307.5289 Instrumentation and Detectors +1307.5293 Analysis of PDEs +1307.5299 Data Structures and Algorithms +1307.5305 Classical Analysis and ODEs +1307.5314 Differential Geometry +cond-mat/9302038 +cond-mat/9308015 +cond-mat/9506022 +math/0010109 Combinatorics +math/0211301 General Mathematics +math/0702277 Quantum Algebra +physics/0305015 General Physics +0804.0218 +0809.1596 Analysis of PDEs +0910.4748 Programming Languages +1006.3302 Data Structures and Algorithms +1006.5833 Algebraic Geometry +1007.2928 Information Theory +1008.1151 Operator Algebras +1011.6071 Classical Analysis and ODEs +1011.6090 Dynamical Systems +1012.4858 Solar and Stellar Astrophysics +1012.5102 Analysis of PDEs +1101.2866 Algebraic Geometry +1102.3284 Medical Physics +1104.4194 Cosmology and Nongalactic Astrophysics +1106.4366 Probability +1108.0804 Materials Science +1108.4181 Numerical Analysis +1109.2084 Optics +1110.1761 Analysis of PDEs +1110.3005 Number Theory +1111.1085 +1111.6969 +1112.0421 +1112.1145 Numerical Analysis +1112.3814 +1112.4764 Phenomenology +1202.0167 Atomic Physics +1202.0532 Mesoscale and Nanoscale Physics +1202.0578 Differential Geometry +1202.2727 Algebraic Geometry +1202.4414 Analysis of PDEs +1202.4958 Mesoscale and Nanoscale Physics +1203.3415 Data Structures and Algorithms +1203.3829 Complex Variables +1203.6129 Information Theory +1203.6254 +1204.3279 +1204.3319 Mesoscale and Nanoscale Physics +1204.4226 Superconductivity +1204.4423 Combinatorics +1205.0369 Combinatorics +1206.1285 Differential Geometry +1206.2439 +1206.3130 Functional Analysis +1206.5801 Cosmology and Nongalactic Astrophysics +1206.6786 Superconductivity +1207.2215 Information Theory +1207.2277 Data Analysis, Statistics and Probability +1207.2711 Information Theory +1207.3115 Medical Physics +1207.7038 Cosmology and Nongalactic Astrophysics +1208.0612 Strongly Correlated Electrons +1208.1105 Other Condensed Matter +1208.2301 Applications +1208.4283 Earth and Planetary Astrophysics +1208.5547 Strongly Correlated Electrons +1208.6209 Soft Condensed Matter +1209.0491 Information Theory +1209.1266 +1210.1338 +1210.4643 General Finance +1210.5230 Mesoscale and Nanoscale Physics +1210.7133 Phenomenology +1211.1211 Analysis of PDEs +1211.2692 Plasma Physics +1211.3080 Materials Science +1211.3382 Statistics Theory +1211.4431 Number Theory +1211.5539 Phenomenology +1211.6460 +1212.2219 Strongly Correlated Electrons +1212.3412 Superconductivity +1212.3752 +1212.3865 +1212.4158 Phenomenology +1212.4183 Strongly Correlated Electrons +1212.4221 +1212.4556 Phenomenology +1212.5013 Phenomenology +1212.5305 Combinatorics +1301.0913 Materials Science +1301.2461 Cosmology and Nongalactic Astrophysics +1301.3778 Mesoscale and Nanoscale Physics +1301.4825 Mesoscale and Nanoscale Physics +1301.4969 Spectral Theory +1301.5339 Mesoscale and Nanoscale Physics +1301.5794 Soft Condensed Matter +1301.5843 Cosmology and Nongalactic Astrophysics +1302.0014 Cosmology and Nongalactic Astrophysics +1302.0565 +1302.1013 Statistical Mechanics +1302.1144 Materials Science +1302.3153 Instrumentation and Detectors +1302.4613 +1302.6453 Plasma Physics +1302.6685 Optimization and Control +1302.7158 Astrophysics of Galaxies +1303.1786 Data Structures and Algorithms +1303.3339 Astrophysics of Galaxies +1303.5036 Mesoscale and Nanoscale Physics +1303.5668 Instrumentation and Detectors +1303.5932 Solar and Stellar Astrophysics +1303.6385 Social and Information Networks +1303.6620 +1304.0890 Materials Science +1304.1853 Atomic Physics +1304.3241 Metric Geometry +1304.4308 Phenomenology +1304.4865 Computational Engineering, Finance, and Science +1304.4889 Neural and Evolutionary Computing +1304.5016 Classical Analysis and ODEs +1304.5248 Algebraic Geometry +1304.5250 Symplectic Geometry +1304.5251 Systems and Control +1304.5252 Statistical Mechanics +1304.5258 Optimization and Control +1304.5263 Analysis of PDEs +1304.5264 Data Structures and Algorithms +1304.5270 Experiment +1304.5272 Number Theory +1304.5275 Category Theory +1304.5276 Theory +1304.5278 Logic in Computer Science +1304.5281 Logic in Computer Science +1304.5285 Analysis of PDEs +1304.5287 Complex Variables +1304.5288 Algebraic Geometry +1304.5289 Representation Theory +1304.5294 +1304.5295 Category Theory +1304.5297 Computers and Society +1304.5304 Information Theory +1304.5307 Materials Science +1304.5310 Spectral Theory +1304.5311 Fluid Dynamics +1304.5313 Cryptography and Security +1304.5317 Software Engineering +1304.5319 Computer Vision and Pattern Recognition +1304.5321 Solar and Stellar Astrophysics +1304.5324 Cell Behavior +1304.5325 Experiment +1304.5328 Rings and Algebras +1304.5330 Networking and Internet Architecture +1304.5335 Mesoscale and Nanoscale Physics +1304.5336 Cryptography and Security +1304.5341 Instrumentation and Detectors +1304.5346 Other Computer Science +1304.5349 Applications +1304.5362 Phenomenology +1304.5364 Materials Science +1304.5366 Analysis of PDEs +1304.5369 Classical Analysis and ODEs +1304.5384 +1304.5385 Logic +1304.5386 +1304.5389 Other Computer Science +1304.5392 Classical Analysis and ODEs +1304.5398 +1304.5399 Solar and Stellar Astrophysics +1304.5401 Applications +1304.5402 Physics and Society +1304.5413 +1304.5416 Information Theory +1304.5417 Machine Learning +1304.5421 Logic +1304.5424 Probability +1304.5425 Dynamical Systems +1304.5426 Optimization and Control +1304.5427 Combinatorics +1304.5428 Numerical Analysis +1304.5431 High Energy Astrophysical Phenomena +1304.5434 Algebraic Geometry +1304.5441 Other Condensed Matter +1304.5444 Group Theory +1304.5448 Biological Physics +1304.5449 Artificial Intelligence +1304.5450 Group Theory +1304.5453 Methodology +1304.5455 History and Overview +1304.5457 Information Retrieval +1304.5458 Representation Theory +1304.5459 Analysis of PDEs +1304.5463 Strongly Correlated Electrons +1304.5464 Biological Physics +1304.5465 Representation Theory +1304.5467 Strongly Correlated Electrons +1304.5468 Combinatorics +1304.5471 Dynamical Systems +1304.5472 Numerical Analysis +1304.5473 Exactly Solvable and Integrable Systems +1304.5475 Digital Libraries +1304.5487 Quantitative Methods +1304.5488 Instrumentation and Methods for Astrophysics +1304.5489 Solar and Stellar Astrophysics +1304.5494 History and Philosophy of Physics +1304.5507 Social and Information Networks +1304.5511 Complex Variables +1304.5513 Soft Condensed Matter +0902.2519 Classical Analysis and ODEs +1005.1989 Logic +1005.1991 Logic +1005.2003 Logic +1005.2005 Logic +1005.2007 Logic +1010.4111 Logic +1011.5036 Differential Geometry +1102.0596 Logic +1102.1618 +1103.2499 +1103.4683 Disordered Systems and Neural Networks +1105.5999 Analysis of PDEs +1105.6164 Information Theory +1106.4695 +1108.0488 Systems and Control +1109.0641 +1109.3858 Algebraic Geometry +1110.3692 Group Theory +1110.5927 Statistics Theory +1110.6894 +1111.0462 Logic +1111.0953 Spectral Theory +1111.1751 Soft Condensed Matter +1202.4716 Group Theory +1203.2221 +1203.6598 Atomic Physics +1204.2337 +1204.3107 +1204.5399 Multiagent Systems +1205.3439 +1205.3938 Mesoscale and Nanoscale Physics +1206.0066 Analysis of PDEs +1206.1529 Learning +1206.3007 Combinatorics +1207.0212 +1207.1787 Quantum Gases +1207.2967 +1207.6760 Computer Science and Game Theory +1208.2926 Number Theory +1208.3826 Probability +1208.4569 Atomic Physics +1208.6359 Number Theory +1209.1078 +1209.1127 Strongly Correlated Electrons +1209.1477 Quantum Gases +1209.2853 Phenomenology +1209.4273 Atmospheric and Oceanic Physics +1209.6174 Strongly Correlated Electrons +1210.0131 Theory +1210.0516 Information Theory +1210.1418 Earth and Planetary Astrophysics +1210.1986 Materials Science +1210.3518 Disordered Systems and Neural Networks +1210.3557 Experiment +1210.8170 Mesoscale and Nanoscale Physics +1211.0396 Functional Analysis +1211.0626 +1211.2060 Statistics Theory +1211.2153 Dynamical Systems +1211.4497 Lattice +1211.4540 +1211.4826 Differential Geometry +1211.5055 Mesoscale and Nanoscale Physics +1211.5141 Solar and Stellar Astrophysics +1211.6093 Experiment +1211.6606 Disordered Systems and Neural Networks +1211.7045 Learning +1211.7060 +1212.0870 Methodology +1212.1054 Classical Analysis and ODEs +1212.1708 Phenomenology +1212.2139 High Energy Astrophysical Phenomena +1212.2638 Earth and Planetary Astrophysics +1212.2773 Strongly Correlated Electrons +1212.2915 Earth and Planetary Astrophysics +1212.3020 Strongly Correlated Electrons +1212.3671 Strongly Correlated Electrons +1212.4430 +1212.4462 +1212.4517 Quantum Gases +1212.5446 Atomic Physics +1301.0870 Soft Condensed Matter +1301.1361 Theory +1301.1570 Mesoscale and Nanoscale Physics +1301.2250 Phenomenology +1301.3158 Number Theory +1301.3457 Computer Vision and Pattern Recognition +1301.3942 Lattice +1301.4095 Phenomenology +1301.4964 Number Theory +1301.5024 Materials Science +1301.5763 +1301.5922 Fluid Dynamics +1301.6297 Distributed, Parallel, and Cluster Computing +1301.6914 Phenomenology +1301.7239 Mesoscale and Nanoscale Physics +1302.1430 +1302.2127 Data Structures and Algorithms +1302.4274 Statistical Mechanics +1302.6569 Physics and Society +1303.0192 Astrophysics of Galaxies +1303.1859 Optimization and Control +1303.2100 +1303.2150 Earth and Planetary Astrophysics +1303.2348 Instrumentation and Detectors +1303.2378 Machine Learning +1303.2958 Mesoscale and Nanoscale Physics +1303.3087 Computer Vision and Pattern Recognition +1303.3361 Earth and Planetary Astrophysics +1303.3521 Phenomenology +1303.4985 Mesoscale and Nanoscale Physics +1303.5215 Analysis of PDEs +1303.7088 Solar and Stellar Astrophysics +1303.7364 Algebraic Geometry +1304.0277 Differential Geometry +1304.0378 Data Structures and Algorithms +1304.0410 Theory +1304.0878 Mathematical Software +1304.1271 Numerical Analysis +1304.1346 Robotics +1304.1679 Computational Complexity +1304.1990 Functional Analysis +1304.2331 Applications +1304.2432 Operator Algebras +1304.2437 Earth and Planetary Astrophysics +1304.2670 Geometric Topology +1304.2711 Artificial Intelligence +1304.2712 Artificial Intelligence +1304.2713 Artificial Intelligence +1304.2714 Artificial Intelligence +1304.2715 Artificial Intelligence +1304.2716 Artificial Intelligence +1304.2717 Artificial Intelligence +1304.2718 Artificial Intelligence +1304.2719 Artificial Intelligence +1304.2720 Artificial Intelligence +1304.2721 Artificial Intelligence +1304.2722 Artificial Intelligence +1304.2723 Artificial Intelligence +1304.2724 Artificial Intelligence +1304.2725 Artificial Intelligence +1304.2726 Artificial Intelligence +1304.2727 Artificial Intelligence +1304.2728 Artificial Intelligence +1304.2729 Artificial Intelligence +1304.2730 Artificial Intelligence +1304.2731 Artificial Intelligence +1304.2732 Artificial Intelligence +1304.2733 Artificial Intelligence +1304.2734 Artificial Intelligence +1304.2735 Artificial Intelligence +1304.2736 Artificial Intelligence +1304.2737 Artificial Intelligence +1304.2738 Artificial Intelligence +1304.2739 Artificial Intelligence +1304.2740 Artificial Intelligence +1304.2741 Artificial Intelligence +1304.2742 Artificial Intelligence +1304.2743 Computer Vision and Pattern Recognition +1304.2744 Artificial Intelligence +1304.2745 Artificial Intelligence +1304.2746 Artificial Intelligence +1304.2747 Artificial Intelligence +1304.2748 Artificial Intelligence +1304.2749 Computer Vision and Pattern Recognition +1304.2750 Artificial Intelligence +1304.2751 Artificial Intelligence +1304.2752 Artificial Intelligence +1304.2753 Artificial Intelligence +1304.2754 Artificial Intelligence +1304.2755 Artificial Intelligence +1304.2756 Artificial Intelligence +1304.2757 Systems and Control +1304.2758 Artificial Intelligence +1304.2759 Artificial Intelligence +1304.2760 Artificial Intelligence +1304.2762 Functional Analysis +1304.2763 Materials Science +1304.2781 Phenomenology +1304.2787 Solar and Stellar Astrophysics +1304.2789 Logic +1304.2790 Classical Analysis and ODEs +1304.2796 +1304.2797 Artificial Intelligence +1304.2798 Information Theory +1304.2799 Artificial Intelligence +1304.2802 Materials Science +1304.2803 History and Overview +1304.2805 Spectral Theory +1304.2807 +1304.2808 Optimization and Control +1304.2809 Information Theory +1304.2814 Formal Languages and Automata Theory +1304.2820 Combinatorics +1304.2827 Symplectic Geometry +1304.2830 Combinatorics +1304.2840 Distributed, Parallel, and Cluster Computing +1304.2847 Statistics Theory +1304.2848 Theory +1304.2852 +1304.2855 Symplectic Geometry +1304.2860 Combinatorics +1304.2865 Applications +1304.2867 Networking and Internet Architecture +1304.2868 Representation Theory +1304.2874 Dynamical Systems +1304.2876 +1304.2881 Discrete Mathematics +1304.2885 +1304.2888 Robotics +1304.2894 Instrumentation and Detectors +1304.2895 Earth and Planetary Astrophysics +1304.2898 Accelerator Physics +1304.2900 Superconductivity +1304.2903 Dynamical Systems +1304.2904 Classical Analysis and ODEs +1304.2906 Number Theory +1304.2913 Algebraic Geometry +1304.2915 Solar and Stellar Astrophysics +1304.2917 Quantitative Methods +1304.2918 Functional Analysis +1304.2920 Cryptography and Security +1304.2927 Superconductivity +1304.2930 Logic +1304.2931 Logic +1304.2932 Logic +1304.2935 Populations and Evolution +1304.2936 Logic in Computer Science +1304.2937 Differential Geometry +1304.2941 +1304.2943 Instrumentation and Detectors +1304.2944 Superconductivity +1304.2945 Materials Science +1304.2946 Cryptography and Security +1304.2948 Computational Engineering, Finance, and Science +1304.2950 Functional Analysis +1304.2952 Superconductivity +1304.2955 Populations and Evolution +1304.2959 Formal Languages and Automata Theory +1304.2960 Molecular Networks +1304.2961 Group Theory +1304.2966 Materials Science +1304.2974 Social and Information Networks +1304.2983 Data Structures and Algorithms +1304.2985 Statistics Theory +1304.2987 Phenomenology +1304.2989 Superconductivity +1304.2993 Superconductivity +1304.2995 Statistics Theory +1304.2996 Superconductivity +1304.3000 Combinatorics +1304.3002 Optimization and Control +1304.3005 Analysis of PDEs +1304.3011 Geometric Topology +1304.3013 Physics and Society +1304.3015 Cosmology and Nongalactic Astrophysics +1304.3019 Logic +1304.3026 Strongly Correlated Electrons +1304.3027 Numerical Analysis +1304.3029 Algebraic Geometry +1304.3031 Group Theory +1304.3032 Complex Variables +1304.3033 Category Theory +1304.3040 Geometric Topology +1304.3055 Solar and Stellar Astrophysics +1304.3056 Multimedia +1304.3059 Networking and Internet Architecture +1304.3063 Optimization and Control +1304.3065 Symplectic Geometry +math/0302061 Dynamical Systems +math/0511648 Dynamical Systems +0712.4180 Theory +0802.2926 Materials Science +0803.2995 Other Computer Science +0803.3905 Neural and Evolutionary Computing +0804.4263 Strongly Correlated Electrons +0806.1257 +0806.2694 Neurons and Cognition +0808.1134 Biological Physics +0808.3783 Experiment +0810.4399 Statistical Mechanics +0811.4274 Geometric Topology +0904.4561 Phenomenology +0905.0728 Quantitative Methods +0909.3817 Physics and Society +0909.5108 Phenomenology +0910.2212 +0911.2177 Group Theory +0911.2433 Mesoscale and Nanoscale Physics +0912.2987 +1002.0420 +1002.4880 +1003.0181 +1003.0614 +1003.3766 Artificial Intelligence +1004.0373 Instrumentation and Detectors +1004.3285 Cosmology and Nongalactic Astrophysics +1004.4050 +1004.4081 Mesoscale and Nanoscale Physics +1005.5703 Mesoscale and Nanoscale Physics +1006.2207 Materials Science +1006.3650 Artificial Intelligence +1007.0150 Mesoscale and Nanoscale Physics +1007.0185 Theory +1007.5306 Statistical Mechanics +1008.1477 Statistical Mechanics +1008.1730 Cosmology and Nongalactic Astrophysics +1009.1214 +1009.2241 Atomic and Molecular Clusters +1009.3882 Superconductivity +1009.4923 +1009.6198 +1010.0454 Other Computer Science +1010.1728 +1010.4337 High Energy Astrophysical Phenomena +1010.5249 Theory +1010.5515 Theory +1011.3508 +1011.3766 Fluid Dynamics +1011.4916 Methodology +1011.5296 +1011.5871 Phenomenology +1012.0386 +1012.2029 Plasma Physics +1012.3382 Theory +1012.5671 Strongly Correlated Electrons +1101.0431 Statistical Mechanics +1101.0438 Statistical Mechanics +1101.3171 +1101.5013 Optics +1101.5106 Phenomenology +1101.5379 Physics and Society +1101.5681 Biological Physics +1101.6019 +1102.2290 Biological Physics +1102.2427 +1102.3487 Phenomenology +1102.3729 Phenomenology +1102.4043 Phenomenology +1102.5115 +1102.5294 Disordered Systems and Neural Networks +1102.5611 +1103.0121 Optics +1103.0378 Cosmology and Nongalactic Astrophysics +1103.0809 Phenomenology +1103.1840 +1103.3247 Statistical Mechanics +1103.3289 Phenomenology +1103.3353 Materials Science +1103.3521 High Energy Astrophysical Phenomena +1103.3650 Mesoscale and Nanoscale Physics +1103.3823 +1103.4266 High Energy Astrophysical Phenomena +1103.4283 Phenomenology +1103.4892 Phenomenology +1103.5496 Soft Condensed Matter +1103.5578 Phenomenology +1103.6123 +1104.0170 Phenomenology +1104.1260 Phenomenology +1104.1347 +1104.1356 +1104.1430 Phenomenology +1104.1469 Mesoscale and Nanoscale Physics +1104.1519 +1104.1561 Atomic Physics +1104.2590 Cosmology and Nongalactic Astrophysics +1104.3125 Mesoscale and Nanoscale Physics +1104.3320 Mesoscale and Nanoscale Physics +1104.3425 Phenomenology +1104.4683 Strongly Correlated Electrons +1104.5471 +1105.0072 Algebraic Geometry +1105.0237 Strongly Correlated Electrons +1105.0800 Theory +1105.0832 Cosmology and Nongalactic Astrophysics +1105.1199 Phenomenology +1105.1232 +1105.1433 Phenomenology +1105.1517 +1105.1556 +1105.1647 Tissues and Organs +1105.1723 Phenomenology +1105.1876 Mesoscale and Nanoscale Physics +1105.2086 Mesoscale and Nanoscale Physics +1105.2148 Soft Condensed Matter +1105.2275 Cosmology and Nongalactic Astrophysics +1105.2463 Group Theory +1105.2644 +1105.2870 Phenomenology +1105.3087 Phenomenology +1105.3246 Cosmology and Nongalactic Astrophysics +1105.3756 Superconductivity +1105.3798 +1105.3994 Mesoscale and Nanoscale Physics +1105.5090 Superconductivity +1105.5604 Superconductivity +1105.5719 Phenomenology +1105.5771 Strongly Correlated Electrons +1105.5860 +1105.6082 +1106.0382 Mesoscale and Nanoscale Physics +1106.0999 Theory +1106.1106 Phenomenology +1106.1133 Materials Science +1106.1164 High Energy Astrophysical Phenomena +1106.1373 +1106.1441 Mesoscale and Nanoscale Physics +1106.1463 Plasma Physics +1106.1662 Phenomenology +1106.1830 Mesoscale and Nanoscale Physics +1106.2000 Theory +1106.2185 Cosmology and Nongalactic Astrophysics +1106.2270 Statistical Mechanics +1106.2385 Strongly Correlated Electrons +1106.2706 Superconductivity +1106.3346 Phenomenology +1106.3377 +1106.3483 Strongly Correlated Electrons +1106.3566 Theory +1106.3573 Materials Science +1106.3845 Theory +1106.3999 Cosmology and Nongalactic Astrophysics +1106.4031 Quantum Gases +1106.4210 Theory +1106.4231 Materials Science +1106.4250 Experiment +1106.4379 Phenomenology +1106.4501 Theory +1106.4546 Phenomenology +1106.4782 Experiment +1106.4815 Phenomenology +1106.4906 Quantum Gases +1106.4999 Strongly Correlated Electrons +1106.5293 Lattice +1106.5538 Lattice +1106.5552 Experiment +1106.5647 Phenomenology +1106.5819 Mesoscale and Nanoscale Physics +1106.5865 Theory +1106.6006 +1106.6047 Phenomenology +1107.0395 +1107.0544 Materials Science +1107.0546 +1107.0686 +1107.0717 Phenomenology +1107.0721 Phenomenology +1107.0827 Mesoscale and Nanoscale Physics +1107.0854 +1107.1141 Atomic Physics +1107.1312 Phenomenology +1107.1349 Optics +1107.1353 +1107.1406 +1107.1689 +1107.1816 +1107.2093 Phenomenology +1107.2104 Neural and Evolutionary Computing +1107.2117 Phenomenology +1107.2296 Other Condensed Matter +1107.2326 +1107.2408 Phenomenology +1107.2538 Theory +1107.2780 Theory +1107.2856 Phenomenology +1107.2893 Statistical Mechanics +1107.3125 Theory +1107.3312 Theory +1107.3317 +1107.3476 +1107.3513 Theory +1107.3536 Disordered Systems and Neural Networks +1107.3546 Phenomenology +1107.3612 +1107.3858 Phenomenology +1107.4309 Phenomenology +1107.4375 Superconductivity +1107.4560 Mesoscale and Nanoscale Physics +1107.4630 +1107.4633 +1107.4634 Phenomenology +1107.4798 Phenomenology +1107.5023 Lattice +1107.5078 Materials Science +1107.5085 +1107.5245 +1107.5319 Statistical Mechanics +1107.5560 Cosmology and Nongalactic Astrophysics +1107.5669 Cosmology and Nongalactic Astrophysics +1107.5693 +1107.5707 +1107.5823 Phenomenology +1107.5830 Phenomenology +1108.0005 +1108.0019 Materials Science +1108.0079 +1108.0208 Phenomenology +1108.0350 Phenomenology +1108.0369 +1108.0563 +1108.0715 Strongly Correlated Electrons +1108.0874 Theory +1108.0900 Strongly Correlated Electrons +1108.0964 Phenomenology +1108.1162 +1108.1173 Phenomenology +1108.1180 Theory +1108.1266 Phenomenology +1108.1274 Phenomenology +1108.1393 Theory +1108.1406 Theory +1108.1408 Quantum Gases +1108.1579 Lattice +1108.1650 Lattice +1108.1734 Statistical Mechanics +1108.1765 Phenomenology +1108.1800 Phenomenology +1108.2015 Theory +1108.2190 Phenomenology +1108.2220 Phenomenology +1108.2265 Cosmology and Nongalactic Astrophysics +1108.2354 Dynamical Systems +1108.2523 Phenomenology +1108.2691 Chaotic Dynamics +1108.2798 Superconductivity +1108.2879 +1108.2944 Cosmology and Nongalactic Astrophysics +1108.2963 Superconductivity +1108.3065 +1108.3078 Theory +1108.3080 Theory +1108.3081 Cosmology and Nongalactic Astrophysics +1108.3235 Computational Engineering, Finance, and Science +1108.3283 +1108.3291 +1108.3303 +1108.3428 Phenomenology +1108.3501 Phenomenology +1108.3568 Theory +1108.3574 Phenomenology +1108.3579 Theory +1108.3612 +1108.3725 Phenomenology +1108.3763 +1108.3794 Phenomenology +1108.3813 Cosmology and Nongalactic Astrophysics +1108.3818 +1108.3820 Cosmology and Nongalactic Astrophysics +1108.3859 +1108.3867 Phenomenology +1108.3986 Solar and Stellar Astrophysics +1108.4010 Phenomenology +1108.4022 Theory +1108.4360 Phenomenology +1108.4375 Superconductivity +1108.4392 Other Condensed Matter +1108.4415 Theory +1108.4604 Statistical Mechanics +1108.4688 Cosmology and Nongalactic Astrophysics +1108.4911 Optics +1108.5112 Phenomenology +1108.5479 +1108.5512 Cosmology and Nongalactic Astrophysics +1108.5559 Optics +1108.5561 +1108.5618 +1108.5636 +1108.5688 Soft Condensed Matter +1108.5719 Algebraic Topology +1108.5769 Phenomenology +1108.5947 Phenomenology +1108.6028 Theory +1108.6172 Phenomenology +1108.6297 +1109.0020 Phenomenology +1109.0254 Theory +1109.0292 Theory +1109.0512 Phenomenology +1109.0602 +1109.0722 Phenomenology +1109.1000 Theory +1109.1238 +1109.1273 Superconductivity +1109.1290 +1109.1418 +1109.1419 Strongly Correlated Electrons +1109.1448 Materials Science +1109.1527 Experiment +1109.1630 +1109.1663 Quantum Gases +1109.1735 Phenomenology +1109.1785 Phenomenology +1109.1834 Mesoscale and Nanoscale Physics +1109.1971 Phenomenology +1109.2072 Phenomenology +1109.2164 Phenomenology +1109.2329 Phenomenology +1109.2334 Superconductivity +1109.2335 Theory +1109.2486 +1109.2562 Phenomenology +1109.2604 Phenomenology +1109.2609 Theory +1109.2850 Mesoscale and Nanoscale Physics +1109.2889 Lattice +1109.2910 Cosmology and Nongalactic Astrophysics +1109.2942 Mesoscale and Nanoscale Physics +1109.3032 Phenomenology +1109.3140 Phenomenology +1109.3166 Experiment +1109.3172 Cosmology and Nongalactic Astrophysics +1109.3185 Strongly Correlated Electrons +1109.3191 Theory +1109.3279 Theory +1109.3402 High Energy Astrophysical Phenomena +1109.3496 +1109.3513 Phenomenology +1109.3684 Pattern Formation and Solitons +1109.3718 Phenomenology +1109.3773 Theory +1109.4119 +1109.4526 Statistical Mechanics +1109.4561 Strongly Correlated Electrons +1109.4656 Atomic and Molecular Clusters +1109.4665 Theory +1109.4734 Theory +1109.4736 Cosmology and Nongalactic Astrophysics +1109.4883 +1109.4934 Cosmology and Nongalactic Astrophysics +1109.5013 +1109.5082 Phenomenology +1109.5117 Cosmology and Nongalactic Astrophysics +1109.5139 +1109.5143 Phenomenology +1109.5181 Phenomenology +1109.5195 High Energy Astrophysical Phenomena +1109.5379 +1109.5410 Genomics +1109.5412 +1109.5464 Statistical Mechanics +1109.5539 Phenomenology +1109.5697 Mesoscale and Nanoscale Physics +1109.5738 Lattice +1109.5788 Strongly Correlated Electrons +1109.5856 Phenomenology +1109.5858 +1109.5862 Cosmology and Nongalactic Astrophysics +1109.5881 History and Philosophy of Physics +1109.5888 Theory +1109.6010 Theory +1109.6014 Phenomenology +1109.6250 +1109.6289 Phenomenology +1109.6322 Cosmology and Nongalactic Astrophysics +1109.6334 Cosmology and Nongalactic Astrophysics +1109.6374 Phenomenology +1109.6376 Theory +1109.6563 +1109.6575 +1109.6683 Lattice +1109.6731 Adaptation and Self-Organizing Systems +1109.6858 +1110.0022 Phenomenology +1110.0074 Disordered Systems and Neural Networks +1110.0083 Phenomenology +1110.0265 Phenomenology +1110.0375 +1110.0424 Phenomenology +1110.0426 Strongly Correlated Electrons +1110.0440 Strongly Correlated Electrons +1110.0454 Strongly Correlated Electrons +1110.0459 Theory +1110.0460 +1110.0482 Phenomenology +1110.0496 Theory +1110.0526 Theory +1110.0534 +1110.0591 Statistical Mechanics +1110.0779 Theory +1110.0825 Theory +1110.0843 Phenomenology +1110.0996 Classical Physics +1110.1039 +1110.1147 Phenomenology +1110.1182 Phenomenology +1110.1203 Phenomenology +1110.1270 Chaotic Dynamics +1110.1363 Mesoscale and Nanoscale Physics +1110.1366 Phenomenology +1110.1524 Statistical Mechanics +1110.1528 Phenomenology +1110.1539 Lattice +1110.1574 Theory +1110.1728 Phenomenology +1110.1816 +1110.1858 Soft Condensed Matter +1110.2011 Disordered Systems and Neural Networks +1110.2072 Phenomenology +1110.2128 Theory +1110.2147 Phenomenology +1110.2180 Instrumentation and Detectors +1110.2188 Phenomenology +1110.2251 Experiment +1110.2332 Adaptation and Self-Organizing Systems +1110.2462 Cosmology and Nongalactic Astrophysics +1110.2485 +1110.2583 Phenomenology +1110.2751 Cosmology and Nongalactic Astrophysics +1110.2826 Phenomenology +1110.2851 Lattice +1110.2878 Materials Science +1110.2930 Phenomenology +1110.2963 Number Theory +1110.3143 Quantum Gases +1110.3191 Cosmology and Nongalactic Astrophysics +1110.3297 +1110.3302 Experiment +1110.3325 Experiment +1110.3327 Cosmology and Nongalactic Astrophysics +1110.3328 Strongly Correlated Electrons +1110.3338 Disordered Systems and Neural Networks +1110.3341 +1110.3342 Theory +1110.3345 +1110.3362 Phenomenology +1110.3478 +1110.3484 Materials Science +1110.3733 Phenomenology +1110.3748 Atomic Physics +1110.3749 Theory +1110.3771 Experiment +1110.3848 Materials Science +1110.3902 Theory +1110.3904 Phenomenology +1110.3960 Superconductivity +1110.4265 Experiment +1110.4272 Experiment +1110.4277 Theory +1110.4281 Phenomenology +1110.4333 Experiment +1110.4376 Phenomenology +1110.4378 Phenomenology +1110.4395 Theory +1110.4687 Superconductivity +1110.4777 Probability +1110.4804 +1110.4856 Theory +1110.4858 Theory +1110.4890 Atomic Physics +1110.4904 Phenomenology +1110.4967 Theory +1110.4971 Lattice +1110.4972 +1110.5081 Theory +1110.5187 Phenomenology +1110.5249 +1110.5262 +1110.5338 Cosmology and Nongalactic Astrophysics +1110.5400 Phenomenology +1110.5433 Adaptation and Self-Organizing Systems +1110.5482 +1110.5495 Statistical Mechanics +1110.5497 Theory +1110.5500 Statistical Mechanics +1110.5503 +1110.5621 Theory +1110.5637 Mesoscale and Nanoscale Physics +1110.5646 Phenomenology +1110.5800 +1110.5801 +1110.5818 Quantum Gases +1110.5838 +1110.5898 Phenomenology +1110.5931 Cosmology and Nongalactic Astrophysics +1110.5956 Strongly Correlated Electrons +1110.6059 Phenomenology +1110.6068 Soft Condensed Matter +1110.6118 Theory +1110.6122 Phenomenology +1110.6205 Cosmology and Nongalactic Astrophysics +1110.6280 Mesoscale and Nanoscale Physics +1110.6428 Phenomenology +1110.6438 Cosmology and Nongalactic Astrophysics +1110.6474 +1110.6520 Mesoscale and Nanoscale Physics +1110.6561 Statistical Mechanics +1110.6583 +1110.6622 +1110.6660 Phenomenology +1110.6686 +1110.6726 Mesoscale and Nanoscale Physics +1110.6741 Phenomenology +1110.6825 Theory +1110.6846 Materials Science +1110.6911 Theory +1111.0103 Experiment +1111.0169 Lattice +1111.0177 Phenomenology +1111.0197 Phenomenology +1111.0295 Cosmology and Nongalactic Astrophysics +1111.0418 +1111.0511 Theory +1111.0513 +1111.0528 Phenomenology +1111.0599 Phenomenology +1111.0610 Phenomenology +1111.0633 Phenomenology +1111.0647 +1111.0649 Phenomenology +1111.0863 Phenomenology +1111.0919 +1111.0963 Phenomenology +1111.1061 Disordered Systems and Neural Networks +1111.1072 Phenomenology +1111.1157 Cosmology and Nongalactic Astrophysics +1111.1214 Fluid Dynamics +1111.1243 Theory +1111.1270 Phenomenology +1111.1359 +1111.1363 Lattice +1111.1465 Theory +1111.1513 Phenomenology +1111.1591 Mesoscale and Nanoscale Physics +1111.1633 Phenomenology +1111.1678 Biological Physics +1111.1691 Theory +1111.1733 Phenomenology +1111.1844 Phenomenology +1111.1867 Phenomenology +1111.1916 Statistics Theory +1111.1987 Theory +1111.2049 Phenomenology +1111.2055 Phenomenology +1111.2196 +1111.2210 Quantum Gases +1111.2245 Mesoscale and Nanoscale Physics +1111.2250 Phenomenology +1111.2327 Lattice +1111.2332 Superconductivity +1111.2361 Phenomenology +1111.2404 Lattice +1111.2462 Probability +1111.2519 Strongly Correlated Electrons +1111.2571 +1111.2580 Phenomenology +1111.2588 +1111.2601 Theory +1111.2607 High Energy Astrophysical Phenomena +1111.2613 Phenomenology +1111.2691 Phenomenology +1111.2701 +1111.2751 Phenomenology +1111.2811 Mesoscale and Nanoscale Physics +1111.2875 Theory +1111.2934 Theory +1111.3021 +1111.3080 +1111.3205 Cosmology and Nongalactic Astrophysics +1111.3222 Mesoscale and Nanoscale Physics +1111.3276 Phenomenology +1111.3298 +1111.3347 Phenomenology +1111.3353 Lattice +1111.3354 Phenomenology +1111.3369 Phenomenology +1111.3490 +1111.3536 +1111.3595 Phenomenology +1111.3613 Theory +1111.3634 Strongly Correlated Electrons +1111.3652 Physics and Society +1111.3717 Phenomenology +1111.3776 Theory +1111.3884 Phenomenology +1111.3894 Theory +1111.3936 Phenomenology +1111.4224 Theory +1111.4261 +1111.4386 +1111.4401 Phenomenology +1111.4465 +1111.4474 Theory +1111.4479 Phenomenology +1111.4566 Phenomenology +1111.4577 Cosmology and Nongalactic Astrophysics +1111.4666 Phenomenology +1111.4771 Phenomenology +1111.4776 Phenomenology +1111.4882 Phenomenology +1111.4895 Soft Condensed Matter +1111.4902 Strongly Correlated Electrons +1111.4915 Mesoscale and Nanoscale Physics +1111.4946 +1111.4952 Phenomenology +1111.4991 Phenomenology +1111.5023 Experiment +1111.5025 Superconductivity +1111.5034 Phenomenology +1111.5048 Lattice +1111.5078 Strongly Correlated Electrons +1111.5191 Disordered Systems and Neural Networks +1111.5206 Phenomenology +1111.5211 Phenomenology +1111.5222 +1111.5260 Strongly Correlated Electrons +1111.5278 Theory +1111.5300 Materials Science +1111.5350 Phenomenology +1111.5411 Phenomenology +1111.5438 Materials Science +1111.5462 Phenomenology +1111.5619 Theory +1111.5661 High Energy Astrophysical Phenomena +1111.5698 Lattice +1111.5712 Phenomenology +1111.5751 Phenomenology +1111.5798 Statistical Mechanics +1111.5813 Phenomenology +1111.5842 Theory +1111.5857 Phenomenology +1111.5874 +1111.5956 Disordered Systems and Neural Networks +1111.5997 +1111.6058 Solar and Stellar Astrophysics +1111.6076 Solar and Stellar Astrophysics +1111.6078 Phenomenology +1111.6135 Pattern Formation and Solitons +1111.6170 +1111.6264 Phenomenology +1111.6307 Phenomenology +1111.6342 +1111.6356 +1111.6363 Lattice +1111.6432 Atomic Physics +1111.6450 Quantum Gases +1111.6581 Theory +1111.6599 Cosmology and Nongalactic Astrophysics +1111.6634 Theory +1111.6639 Disordered Systems and Neural Networks +1111.6651 +1111.6729 +1111.6897 Phenomenology +1111.7153 Phenomenology +1111.7242 Quantum Gases +1111.7250 Phenomenology +1111.7264 Phenomenology +1111.7278 Phenomenology +1111.7289 Phenomenology +1112.0086 Phenomenology +1112.0116 +1112.0142 Superconductivity +1112.0150 Experiment +1112.0171 +1112.0264 Phenomenology +1112.0271 Phenomenology +1112.0302 Phenomenology +1112.0325 Theory +1112.0328 Theory +1112.0418 Phenomenology +1112.0477 Chemical Physics +1112.0543 +1112.0567 Cosmology and Nongalactic Astrophysics +1112.0578 Theory +1112.0592 Quantum Gases +1112.0635 Theory +1112.0645 Mesoscale and Nanoscale Physics +1112.0702 Experiment +1112.0736 +1112.0763 Theory +1112.0899 Quantum Gases +1112.0907 Experiment +1112.0942 Experiment +1112.1059 Phenomenology +1112.1061 Phenomenology +1112.1069 Strongly Correlated Electrons +1112.1095 Phenomenology +1112.1128 Cosmology and Nongalactic Astrophysics +1112.1134 Phenomenology +1112.1157 Theory +1112.1257 Phenomenology +1112.1264 Quantum Gases +1112.1348 Atomic Physics +1112.1523 Phenomenology +1112.1539 +1112.1644 Mesoscale and Nanoscale Physics +1112.1685 Phenomenology +1112.1699 Phenomenology +1112.1726 Experiment +1112.1821 Materials Science +1112.1832 +1112.1855 Lattice +1112.1865 Phenomenology +1112.1888 Phenomenology +1112.1891 Phenomenology +1112.1899 +1112.1957 Phenomenology +1112.2019 +1112.2108 Lattice +1112.2123 +1112.2177 Theory +1112.2204 Mesoscale and Nanoscale Physics +1112.2208 Phenomenology +1112.2232 Phenomenology +1112.2391 Phenomenology +1112.2456 +1112.2469 Materials Science +1112.2478 +1112.2503 Phenomenology +1112.2569 Materials Science +1112.2595 Phenomenology +1112.2622 High Energy Astrophysical Phenomena +1112.2641 +1112.2647 +1112.2659 Phenomenology +1112.2695 +1112.2715 Quantum Gases +1112.2739 Atomic Physics +1112.2747 Theory +1112.2805 Superconductivity +1112.2964 Cosmology and Nongalactic Astrophysics +1112.2978 Experiment +1112.2980 Experiment +1112.3006 Cosmology and Nongalactic Astrophysics +1112.3017 Phenomenology +1112.3021 Phenomenology +1112.3036 Theory +1112.3043 Phenomenology +1112.3044 Phenomenology +1112.3048 +1112.3068 Phenomenology +1112.3186 Strongly Correlated Electrons +1112.3215 Phenomenology +1112.3243 Phenomenology +1112.3277 Phenomenology +1112.3284 Phenomenology +1112.3301 +1112.3334 Experiment +1112.3341 Theory +1112.3343 Phenomenology +1112.3360 Theory +1112.3365 Phenomenology +1112.3378 Phenomenology +1112.3396 +1112.3433 Theory +1112.3509 +1112.3524 +1112.3557 Quantum Gases +1112.3604 Lattice +1112.3633 Phenomenology +1112.3636 Optics +1112.3676 Cosmology and Nongalactic Astrophysics +1112.3775 Quantum Gases +1112.3895 Cosmology and Nongalactic Astrophysics +1112.3896 Experiment +1112.3964 Theory +1112.3966 Phenomenology +1112.3987 +1112.3998 Lattice +1112.4022 Theory +1112.4054 Phenomenology +1112.4086 Theory +1112.4158 Optics +1112.4244 Quantum Gases +1112.4340 Theory +1112.4358 Experiment +1112.4384 Lattice +1112.4423 Phenomenology +1112.4426 +1112.4430 Cosmology and Nongalactic Astrophysics +1112.4464 Phenomenology +1112.4552 Phenomenology +1112.4661 Cosmology and Nongalactic Astrophysics +1112.4664 Theory +1112.4681 Fluid Dynamics +1112.4705 Cosmology and Nongalactic Astrophysics +1112.4758 Data Analysis, Statistics and Probability +1112.4767 +1112.4797 Cosmology and Nongalactic Astrophysics +1112.4834 Phenomenology +1112.4849 Cosmology and Nongalactic Astrophysics +1112.4855 +1112.4866 Theory +1112.4887 Atomic Physics +1112.4903 +1112.4940 Cosmology and Nongalactic Astrophysics +1112.5028 Theory +1112.5055 +1112.5097 Theory +1112.5122 Phenomenology +1112.5137 Phenomenology +1112.5143 Strongly Correlated Electrons +1112.5161 Quantum Gases +1112.5230 Phenomenology +1112.5268 Phenomenology +1112.5338 +1112.5385 +1112.5401 Phenomenology +1112.5418 Numerical Analysis +1112.5425 Theory +1112.5430 Phenomenology +1112.5452 Phenomenology +1112.5457 Phenomenology +1112.5527 Phenomenology +1112.5559 +1112.5631 Phenomenology +1112.5643 Phenomenology +1112.5653 Phenomenology +1112.5666 Phenomenology +1112.5739 Theory +1112.5757 Materials Science +1112.5819 Phenomenology +1112.5922 Phenomenology +1112.5982 Quantum Gases +1112.6004 +1112.6150 +1112.6215 +1112.6322 Theory +1112.6324 Phenomenology +1112.6334 Mesoscale and Nanoscale Physics +1112.6337 Materials Science +1112.6353 Experiment +1112.6365 Theory +1112.6366 Theory +1112.6412 Phenomenology +1112.6419 Phenomenology +1201.0019 Phenomenology +1201.0045 Disordered Systems and Neural Networks +1201.0281 +1201.0315 Phenomenology +1201.0438 Lattice +1201.0583 Strongly Correlated Electrons +1201.0637 +1201.0785 Phenomenology +1201.0809 Phenomenology +1201.1160 +1201.1165 Atomic Physics +1201.1173 +1201.1222 Phenomenology +1201.1244 Theory +1201.1288 Theory +1201.1307 Theory +1201.1361 Lattice +1201.1413 Phenomenology +1201.1489 Mesoscale and Nanoscale Physics +1201.1508 Cosmology and Nongalactic Astrophysics +1201.1517 +1201.1529 Analysis of PDEs +1201.1595 Statistical Mechanics +1201.1625 Theory +1201.1660 High Energy Astrophysical Phenomena +1201.1688 +1201.1698 Superconductivity +1201.1764 Theory +1201.1807 Theory +1201.1914 Phenomenology +1201.1934 Theory +1201.1978 Theory +1201.2039 Phenomenology +1201.2132 Theory +1201.2135 Phenomenology +1201.2298 Strongly Correlated Electrons +1201.2349 Phenomenology +1201.2351 Phenomenology +1201.2354 +1201.2372 +1201.2461 Phenomenology +1201.2631 Experiment +1201.2636 Phenomenology +1201.2644 Phenomenology +1201.2649 Theory +1201.2658 Phenomenology +1201.2699 Phenomenology +1201.2768 Phenomenology +1201.2775 Algebraic Geometry +1201.2814 +1201.2865 +1201.2898 Phenomenology +1201.2903 Cosmology and Nongalactic Astrophysics +1201.2917 Phenomenology +1201.2949 Phenomenology +1201.2959 +1201.2964 +1201.2989 Phenomenology +1201.3028 +1201.3047 Phenomenology +1201.3063 Theory +1201.3085 Theory +1201.3151 +1201.3323 Phenomenology +1201.3509 Mesoscale and Nanoscale Physics +1201.3582 Phenomenology +1201.3596 Lattice +1201.3624 Mesoscale and Nanoscale Physics +1201.3668 Phenomenology +1201.3732 Quantum Gases +1201.3805 Phenomenology +1201.3917 Theory +1201.3931 Phenomenology +1201.3933 Mesoscale and Nanoscale Physics +1201.3939 Cosmology and Nongalactic Astrophysics +1201.3964 Theory +1201.3977 Lattice +1201.3979 +1201.4053 Phenomenology +1201.4065 Phenomenology +1201.4156 Experiment +1201.4157 Lattice +1201.4165 Strongly Correlated Electrons +1201.4184 +1201.4280 Phenomenology +1201.4331 +1201.4373 +1201.4374 Phenomenology +1201.4383 Phenomenology +1201.4400 +1201.4438 Atomic Physics +1201.4492 +1201.4558 +1201.4590 Theory +1201.4640 Phenomenology +1201.4800 +1201.4804 Phenomenology +1201.4827 Cosmology and Nongalactic Astrophysics +1201.4852 Phenomenology +1201.4858 Phenomenology +1201.4994 +1201.5001 Phenomenology +1201.5014 Phenomenology +1201.5025 Lattice +1201.5045 Mesoscale and Nanoscale Physics +1201.5047 Phenomenology +1201.5066 Phenomenology +1201.5108 +1201.5278 +1201.5347 Superconductivity +1201.5372 Theory +1201.5374 Cosmology and Nongalactic Astrophysics +1201.5375 Cosmology and Nongalactic Astrophysics +1201.5465 Mesoscale and Nanoscale Physics +1201.5522 +1201.5542 Mesoscale and Nanoscale Physics +1201.5598 Phenomenology +1201.5601 +1201.5616 Phenomenology +1201.5652 Experiment +1201.5667 Mesoscale and Nanoscale Physics +1201.5677 Experiment +1201.5714 Phenomenology +1201.5759 Phenomenology +1201.5836 +1201.5942 Analysis of PDEs +1201.5999 +1201.6037 Phenomenology +1201.6114 Lattice +1201.6189 Phenomenology +1201.6262 Lattice +1201.6264 Statistical Mechanics +1201.6386 +1201.6426 Theory +1201.6449 Theory +1201.6452 Theory +1201.6510 Phenomenology +1201.6602 Phenomenology +1201.6603 Phenomenology +1201.6609 Theory +1202.0007 Astrophysics of Galaxies +1202.0202 Strongly Correlated Electrons +1202.0229 Materials Science +1202.0248 Phenomenology +1202.0250 Theory +1202.0273 Fluid Dynamics +1202.0284 Phenomenology +1202.0323 Phenomenology +1202.0620 Lattice +1202.0648 Theory +1202.0719 +1202.0760 Phenomenology +1202.0769 +1202.0783 Strongly Correlated Electrons +1202.0806 Optics +1202.0826 Phenomenology +1202.0845 Phenomenology +1202.0929 Lattice +1202.0953 Phenomenology +1202.0999 +1202.1202 Theory +1202.1260 Experiment +1202.1276 Superconductivity +1202.1284 Cosmology and Nongalactic Astrophysics +1202.1316 Phenomenology +1202.1405 Phenomenology +1202.1469 Cosmology and Nongalactic Astrophysics +1202.1472 Accelerator Physics +1202.1475 Phenomenology +1202.1476 Cosmology and Nongalactic Astrophysics +1202.1503 Phenomenology +1202.1570 Lattice +1202.1657 Theory +1202.1824 Theory +1202.1825 Phenomenology +1202.1834 Phenomenology +1202.1844 Strongly Correlated Electrons +1202.1884 Strongly Correlated Electrons +1202.1912 Theory +1202.2073 Theory +1202.2105 Theory +1202.2109 Lattice +1202.2145 Lattice +1202.2161 Theory +1202.2205 Phenomenology +1202.2253 Phenomenology +1202.2273 Phenomenology +1202.2346 Phenomenology +1202.2359 Solar and Stellar Astrophysics +1202.2374 Theory +1202.2418 +1202.2537 Other Condensed Matter +1202.2675 Lattice +1202.2679 +1202.2730 Atomic Physics +1202.2767 +1202.2788 +1202.2812 Phenomenology +1202.2817 +1202.3105 Phenomenology +1202.3120 Strongly Correlated Electrons +1202.3136 Disordered Systems and Neural Networks +1202.3224 Theory +1202.3260 Phenomenology +1202.3376 Theory +1202.3388 Theory +1202.3423 Theory +1202.3580 Mesoscale and Nanoscale Physics +1202.3794 Phenomenology +1202.3998 Cosmology and Nongalactic Astrophysics +1202.4012 Phenomenology +1202.4197 +1202.4235 Theory +1202.4272 +1202.4310 Theory +1202.4312 +1202.4381 Phenomenology +1202.4402 Quantum Gases +1202.4428 Soft Condensed Matter +1202.4484 Strongly Correlated Electrons +1202.4488 Phenomenology +1202.4497 Theory +1202.4501 Cosmology and Nongalactic Astrophysics +1202.4528 Phenomenology +1202.4564 High Energy Astrophysical Phenomena +1202.4579 Phenomenology +1202.4690 Theory +1202.4713 +1202.4745 Phenomenology +1202.4750 +1202.4857 +1202.4924 Quantum Gases +1202.4940 Phenomenology +1202.5000 Instrumentation and Detectors +1202.5073 Phenomenology +1202.5081 Theory +1202.5158 Materials Science +1202.5272 Experiment +1202.5297 Mesoscale and Nanoscale Physics +1202.5308 Theory +1202.5317 +1202.5331 Theory +1202.5370 +1202.5456 Phenomenology +1202.5501 Theory +1202.5556 Phenomenology +1202.5562 Strongly Correlated Electrons +1202.5612 Theory +1202.5617 +1202.5650 Theory +1202.5673 Statistical Mechanics +1202.5700 Lattice +1202.5800 +1202.5814 Strongly Correlated Electrons +1202.5816 Phenomenology +1202.5935 Theory +1202.5950 +1202.5970 +1202.5976 Quantum Gases +1202.6017 Lattice +1202.6066 Cosmology and Nongalactic Astrophysics +1202.6213 +1202.6257 +1202.6270 Phenomenology +1202.6318 Phenomenology +1202.6337 +1202.6377 Phenomenology +1202.6401 +1202.6449 Quantum Gases +1202.6465 +1202.6529 High Energy Astrophysical Phenomena +1202.6563 Soft Condensed Matter +1202.6572 Lattice +1202.6576 +1202.6622 Phenomenology +1202.6629 Experiment +1202.6682 Theory +1203.0067 +1203.0073 Theory +1203.0155 Phenomenology +1203.0198 Theory +1203.0219 Theory +1203.0238 Phenomenology +1203.0395 +1203.0452 +1203.0523 +1203.0559 Theory +1203.0562 Theory +1203.0623 Quantum Gases +1203.0672 Materials Science +1203.0712 Phenomenology +1203.0775 Phenomenology +1203.0784 Lattice +1203.0909 Theory +1203.0936 Phenomenology +1203.0979 +1203.1033 Cosmology and Nongalactic Astrophysics +1203.1082 Experiment +1203.1092 Phenomenology +1203.1200 Strongly Correlated Electrons +1203.1320 Phenomenology +1203.1353 +1203.1534 Phenomenology +1203.1662 Phenomenology +1203.1923 Phenomenology +1203.2157 Cosmology and Nongalactic Astrophysics +1203.2199 Quantitative Methods +1203.2303 Phenomenology +1203.2314 Materials Science +1203.2330 Phenomenology +1203.2342 Phenomenology +1203.2406 Statistical Mechanics +1203.2419 Phenomenology +1203.2452 +1203.2646 Phenomenology +1203.2661 +1203.2843 Mesoscale and Nanoscale Physics +1203.2924 Phenomenology +1203.2947 Phenomenology +1203.2958 Mesoscale and Nanoscale Physics +1203.2964 +1203.3109 +1203.3146 Phenomenology +1203.3176 Superconductivity +1203.3195 Cosmology and Nongalactic Astrophysics +1203.3276 Phenomenology +1203.3338 Optics +1203.3399 Experiment +1203.3426 Phenomenology +1203.3454 +1203.3545 Phenomenology +1203.3547 Cosmology and Nongalactic Astrophysics +1203.3556 Theory +1203.3632 Phenomenology +1203.3848 Mesoscale and Nanoscale Physics +1203.4038 Phenomenology +1203.4059 Phenomenology +1203.4120 Phenomenology +1203.4129 Phenomenology +1203.4232 Cosmology and Nongalactic Astrophysics +1203.4259 Theory +1203.4328 Phenomenology +1203.4362 Phenomenology +1203.4412 Phenomenology +1203.4529 Phenomenology +1203.4589 Statistical Mechanics +1203.4637 +1203.4646 Phenomenology +1203.4763 Materials Science +1203.4782 Phenomenology +1203.4812 Cosmology and Nongalactic Astrophysics +1203.4818 Strongly Correlated Electrons +1203.4821 Phenomenology +1203.4883 Theory +1203.4890 Quantum Gases +1203.4894 Theory +1203.4968 +1203.5153 Phenomenology +1203.5171 Cosmology and Nongalactic Astrophysics +1203.5293 Phenomenology +1203.5311 Experiment +1203.5361 Experiment +1203.5373 +1203.5394 +1203.5461 Phenomenology +1203.5538 Cosmology and Nongalactic Astrophysics +1203.5544 Phenomenology +1203.5552 +1203.5634 Phenomenology +1203.5687 Theory +1203.5694 Phenomenology +1203.5702 Theory +1203.5704 +1203.5710 Theory +1203.5752 Strongly Correlated Electrons +1203.5769 Phenomenology +1203.5789 Theory +1203.5801 +1203.5820 +1203.5843 Phenomenology +1203.5849 Cosmology and Nongalactic Astrophysics +1203.5873 +1203.5936 Phenomenology +1203.5987 Classical Physics +1203.5993 +1203.6034 Experiment +1203.6050 Phenomenology +1203.6060 +1203.6073 Phenomenology +1203.6077 Phenomenology +1203.6088 Phenomenology +1203.6121 Superconductivity +1203.6139 Phenomenology +1203.6179 Theory +1203.6180 Theory +1203.6238 Mesoscale and Nanoscale Physics +1203.6251 Biological Physics +1203.6281 Theory +1203.6309 +1203.6312 Theory +1203.6337 Plasma Physics +1203.6614 Phenomenology +1203.6621 Strongly Correlated Electrons +1203.6633 Cosmology and Nongalactic Astrophysics +1203.6647 Experiment +1203.6654 Cosmology and Nongalactic Astrophysics +1203.6656 Theory +1203.6740 +1203.6781 Phenomenology +1203.6823 Phenomenology +1203.6876 Theory +1203.6883 Strongly Correlated Electrons +1203.6896 Phenomenology +1204.0035 Phenomenology +1204.0126 Theory +1204.0216 Lattice +1204.0407 +1204.0445 Phenomenology +1204.0455 Phenomenology +1204.0508 Phenomenology +1204.0512 High Energy Astrophysical Phenomena +1204.0539 +1204.0655 Phenomenology +1204.0674 Phenomenology +1204.0740 Phenomenology +1204.0749 Other Condensed Matter +1204.0778 Theory +1204.0826 Lattice +1204.0906 Biological Physics +1204.0965 +1204.0973 Theory +1204.0988 Theory +1204.1020 Lattice +1204.1046 Phenomenology +1204.1129 Experiment +1204.1239 Phenomenology +1204.1284 Theory +1204.1323 Mesoscale and Nanoscale Physics +1204.1327 +1204.1337 Phenomenology +1204.1356 Theory +1204.1387 +1204.1394 +1204.1455 Phenomenology +1204.1472 Cosmology and Nongalactic Astrophysics +1204.1519 Quantum Gases +1204.1592 Phenomenology +1204.1618 +1204.1642 Theory +1204.1661 Theory +1204.1734 Theory +1204.1791 Phenomenology +1204.1888 Solar and Stellar Astrophysics +1204.1923 Phenomenology +1204.1945 Phenomenology +1204.2007 Cosmology and Nongalactic Astrophysics +1204.2116 Theory +1204.2130 +1204.2155 Quantum Gases +1204.2158 Experiment +1204.2217 Theory +1204.2246 Phenomenology +1204.2277 Phenomenology +1204.2289 +1204.2317 Phenomenology +1204.2405 Theory +1204.2411 +1204.2655 Phenomenology +1204.2671 Phenomenology +1204.2705 Phenomenology +1204.2722 +1204.2788 Theory +1204.3151 Statistical Mechanics +1204.3160 +1204.3288 +1204.3369 Phenomenology +1204.3371 Statistical Mechanics +1204.3456 Subcellular Processes +1204.3484 Materials Science +1204.3540 Phenomenology +1204.3606 Lattice +1204.3625 Cosmology and Nongalactic Astrophysics +1204.3632 Theory +1204.3706 Theory +1204.3785 Materials Science +1204.3789 Cosmology and Nongalactic Astrophysics +1204.3906 Phenomenology +1204.3933 Experiment +1204.3976 Cosmology and Nongalactic Astrophysics +1204.3978 +1204.4076 Strongly Correlated Electrons +1204.4156 Disordered Systems and Neural Networks +1204.4164 Theory +1204.4165 Theory +1204.4183 Phenomenology +1204.4189 Theory +1204.4208 Theory +1204.4241 Cosmology and Nongalactic Astrophysics +1204.4254 Phenomenology +1204.4391 Cosmology and Nongalactic Astrophysics +1204.4422 +1204.4444 Phenomenology +1204.4537 Phenomenology +1204.4609 Phenomenology +1204.4664 Lattice +1204.4766 Strongly Correlated Electrons +1204.4806 +1204.4822 Statistical Mechanics +1204.4851 +1204.4858 Theory +1204.4890 Phenomenology +1204.5022 +1204.5121 Quantum Gases +1204.5201 Phenomenology +1204.5239 Theory +1204.5381 Phenomenology +1204.5409 Strongly Correlated Electrons +1204.5418 Strongly Correlated Electrons +1204.5464 Phenomenology +1204.5471 Phenomenology +1204.5473 Phenomenology +1204.5476 Phenomenology +1204.5486 Strongly Correlated Electrons +1204.5512 +1204.5547 Information Theory +1204.5553 Phenomenology +1204.5572 Phenomenology +1204.5723 Experiment +1204.5746 Phenomenology +1204.5751 Strongly Correlated Electrons +1204.5878 Materials Science +1204.5885 Phenomenology +1204.5944 Phenomenology +1204.5984 Superconductivity +1204.5995 Phenomenology +1204.6085 Phenomenology +1204.6110 +1204.6220 +1204.6239 Theory +1204.6256 Lattice +1204.6329 Cosmology and Nongalactic Astrophysics +1204.6365 Mesoscale and Nanoscale Physics +1204.6403 Phenomenology +1204.6428 Mesoscale and Nanoscale Physics +1204.6574 +1204.6711 Materials Science +1205.0019 Phenomenology +1205.0043 Optics +1205.0046 Theory +1205.0067 Phenomenology +1205.0075 Phenomenology +1205.0084 Lattice +1205.0093 Atomic Physics +1205.0115 +1205.0123 Mesoscale and Nanoscale Physics +1205.0134 Phenomenology +1205.0137 Phenomenology +1205.0211 Physics and Society +1205.0234 Quantum Gases +1205.0235 Lattice +1205.0279 +1205.0297 Theory +1205.0365 Materials Science +1205.0443 Theory +1205.0538 Lattice +1205.0545 Phenomenology +1205.0580 Phenomenology +1205.0653 Mesoscale and Nanoscale Physics +1205.0733 +1205.0766 Phenomenology +1205.0862 +1205.0887 Strongly Correlated Electrons +1205.1009 Phenomenology +1205.1160 Theory +1205.1218 +1205.1244 Strongly Correlated Electrons +1205.1278 Mesoscale and Nanoscale Physics +1205.1288 +1205.1333 Strongly Correlated Electrons +1205.1391 Phenomenology +1205.1438 Phenomenology +1205.1512 Cosmology and Nongalactic Astrophysics +1205.1529 Phenomenology +1205.1532 Theory +1205.1625 Statistical Mechanics +1205.1659 Lattice +1205.1674 Theory +1205.1685 Theory +1205.1762 +1205.1763 Theory +1205.1791 Phenomenology +1205.1806 Quantum Gases +1205.1914 Phenomenology +1205.1934 Instrumentation and Methods for Astrophysics +1205.2069 Theory +1205.2085 Strongly Correlated Electrons +1205.2088 Theory +1205.2228 Experiment +1205.2283 Phenomenology +1205.2287 +1205.2329 +1205.2372 Phenomenology +1205.2388 Strongly Correlated Electrons +1205.2422 Cosmology and Nongalactic Astrophysics +1205.2530 Theory +1205.2688 Phenomenology +1205.2699 Phenomenology +1205.2715 +1205.2730 Phenomenology +1205.2781 +1205.2875 Phenomenology +1205.2906 Soft Condensed Matter +1205.2918 Theory +1205.2943 Phenomenology +1205.2971 Phenomenology +1205.3008 Physics and Society +1205.3036 Phenomenology +1205.3043 Theory +1205.3093 Lattice +1205.3107 Theory +1205.3118 +1205.3325 Plasma Physics +1205.3326 Mesoscale and Nanoscale Physics +1205.3329 Phenomenology +1205.3361 Phenomenology +1205.3387 +1205.3438 Theory +1205.3535 Lattice +1205.3631 +1205.3662 Phenomenology +1205.3695 Lattice +1205.3713 Fluid Dynamics +1205.3838 Strongly Correlated Electrons +1205.3842 +1205.3847 Theory +1205.3893 +1205.3898 Phenomenology +1205.3934 Theory +1205.3988 Mesoscale and Nanoscale Physics +1205.4015 Phenomenology +1205.4026 Quantum Gases +1205.4066 High Energy Astrophysical Phenomena +1205.4109 Phenomenology +1205.4156 Phenomenology +1205.4224 Lattice +1205.4247 Phenomenology +1205.4263 +1205.4286 Atomic Physics +1205.4362 Strongly Correlated Electrons +1205.4419 Experiment +1205.4425 Theory +1205.4465 Phenomenology +1205.4579 Mesoscale and Nanoscale Physics +1205.4596 Theory +1205.4721 Phenomenology +1205.4733 Phenomenology +1205.4863 +1205.4907 Materials Science +1205.4964 Phenomenology +1205.4972 Theory +1205.5027 Soft Condensed Matter +1205.5035 Phenomenology +1205.5170 Phenomenology +1205.5220 Materials Science +1205.5254 Phenomenology +1205.5267 Phenomenology +1205.5291 Theory +1205.5293 Strongly Correlated Electrons +1205.5550 Theory +1205.5587 +1205.5620 +1205.5641 Cosmology and Nongalactic Astrophysics +1205.5794 Cosmology and Nongalactic Astrophysics +1205.5811 Phenomenology +1205.5815 Theory +1205.5833 Theory +1205.5967 Phenomenology +1205.5976 Soft Condensed Matter +1205.6009 +1205.6080 Phenomenology +1205.6155 Phenomenology +1205.6157 Phenomenology +1205.6188 +1205.6191 Phenomenology +1205.6260 Phenomenology +1205.6267 Theory +1205.6341 +1205.6480 Phenomenology +1205.6538 Experiment +1205.6580 Phenomenology +1205.6604 +1205.6606 Phenomenology +1205.6634 Theory +1205.6636 Phenomenology +1205.6710 Phenomenology +1205.6781 Phenomenology +1205.6801 Theory +1205.6811 Phenomenology +1205.6850 Theory +1205.6856 Lattice +1205.6933 +1205.6949 Quantum Gases +1205.6972 +1205.7006 +1205.7010 Quantum Algebra +1206.0109 Cosmology and Nongalactic Astrophysics +1206.0140 Materials Science +1206.0186 Phenomenology +1206.0256 Phenomenology +1206.0279 Materials Science +1206.0290 Statistical Mechanics +1206.0360 +1206.0535 Phenomenology +1206.0554 Cosmology and Nongalactic Astrophysics +1206.0618 Cosmology and Nongalactic Astrophysics +1206.0630 +1206.0657 Theory +1206.0674 Mesoscale and Nanoscale Physics +1206.0687 Experiment +1206.0699 Phenomenology +1206.0903 Cosmology and Nongalactic Astrophysics +1206.0930 +1206.0958 Strongly Correlated Electrons +1206.0991 +1206.1003 Statistical Mechanics +1206.1027 Theory +1206.1031 Phenomenology +1206.1046 Phenomenology +1206.1081 Theory +1206.1139 Cosmology and Nongalactic Astrophysics +1206.1159 Lattice +1206.1257 Phenomenology +1206.1261 Phenomenology +1206.1289 Materials Science +1206.1295 Mesoscale and Nanoscale Physics +1206.1315 +1206.1375 Lattice +1206.1423 Strongly Correlated Electrons +1206.1453 Phenomenology +1206.1489 Lattice +1206.1536 Theory +1206.1652 Quantum Gases +1206.1661 Phenomenology +1206.1673 Phenomenology +1206.1807 +1206.1991 Lattice +1206.2008 Experiment +1206.2043 Materials Science +1206.2050 Phenomenology +1206.2237 Cellular Automata and Lattice Gases +1206.2244 Mesoscale and Nanoscale Physics +1206.2246 +1206.2263 +1206.2304 Materials Science +1206.2351 Theory +1206.2368 Statistical Mechanics +1206.2427 Data Analysis, Statistics and Probability +1206.2428 Cosmology and Nongalactic Astrophysics +1206.2519 Phenomenology +1206.2549 Phenomenology +1206.2554 Lattice +1206.2555 Phenomenology +1206.2590 Phenomenology +1206.2711 +1206.2814 Theory +1206.2818 Molecular Networks +1206.2852 +1206.2896 Pattern Formation and Solitons +1206.2929 Phenomenology +1206.2939 Cosmology and Nongalactic Astrophysics +1206.2940 Mesoscale and Nanoscale Physics +1206.2956 Phenomenology +1206.2969 Superconductivity +1206.2970 Phenomenology +1206.3015 +1206.3054 Superconductivity +1206.3076 Cosmology and Nongalactic Astrophysics +1206.3102 +1206.3156 Lattice +1206.3178 +1206.3190 Theory +1206.3560 Phenomenology +1206.3587 Phenomenology +1206.3605 Phenomenology +1206.3816 Lattice +1206.3904 Quantum Gases +1206.3957 Phenomenology +1206.3961 Phenomenology +1206.3968 Phenomenology +1206.4024 Phenomenology +1206.4055 Cosmology and Nongalactic Astrophysics +1206.4100 Phenomenology +1206.4125 Strongly Correlated Electrons +1206.4141 Lattice +1206.4147 Superconductivity +1206.4163 Phenomenology +1206.4205 Lattice +1206.4229 Computational Physics +1206.4233 Phenomenology +1206.4286 +1206.4320 Mesoscale and Nanoscale Physics +1206.4324 Phenomenology +1206.4339 Phenomenology +1206.4373 Phenomenology +1206.4471 Theory +1206.4490 +1206.4492 Disordered Systems and Neural Networks +1206.4515 Theory +1206.4527 Lattice +1206.4537 Mesoscale and Nanoscale Physics +1206.4551 Strongly Correlated Electrons +1206.4566 Mesoscale and Nanoscale Physics +1206.4732 Materials Science +1206.4754 Phenomenology +1206.4786 Lattice +1206.4884 +1206.4936 Lattice +1206.4992 Phenomenology +1206.5028 Phenomenology +1206.5038 Theory +1206.5047 Phenomenology +1206.5066 Theory +1206.5079 Mesoscale and Nanoscale Physics +1206.5138 +1206.5142 Lattice +1206.5154 Soft Condensed Matter +1206.5194 Cosmology and Nongalactic Astrophysics +1206.5216 Phenomenology +1206.5447 Phenomenology +1206.5460 Phenomenology +1206.5485 +1206.5546 Cosmology and Nongalactic Astrophysics +1206.5549 Cosmology and Nongalactic Astrophysics +1206.5633 Phenomenology +1206.5641 Phenomenology +1206.5642 Theory +1206.5697 Theory +1206.5741 Phenomenology +1206.5770 Phenomenology +1206.5786 +1206.5787 Quantum Gases +1206.5800 Phenomenology +1206.5814 Strongly Correlated Electrons +1206.5816 Phenomenology +1206.5831 Theory +1206.5836 Strongly Correlated Electrons +1206.5880 Theory +1206.5891 Lattice +1206.5942 +1206.5988 Phenomenology +1206.5998 Phenomenology +1206.6014 Phenomenology +1206.6042 Quantum Gases +1206.6110 Phenomenology +1206.6305 Phenomenology +1206.6338 Strongly Correlated Electrons +1206.6343 +1206.6505 Theory +1206.6510 Theory +1206.6668 +1206.6703 Phenomenology +1206.6734 Materials Science +1206.6888 Phenomenology +1206.7055 Phenomenology +1206.7057 +1207.0053 +1207.0131 Phenomenology +1207.0197 Phenomenology +1207.0243 Theory +1207.0263 Mesoscale and Nanoscale Physics +1207.0265 Phenomenology +1207.0442 Mesoscale and Nanoscale Physics +1207.0517 Theory +1207.0526 Mesoscale and Nanoscale Physics +1207.0549 +1207.0652 +1207.0693 +1207.0747 Theory +1207.0779 Phenomenology +1207.0798 Phenomenology +1207.0803 Phenomenology +1207.0994 Lattice +1207.1041 Experiment +1207.1093 Phenomenology +1207.1101 Phenomenology +1207.1110 Lattice +1207.1116 Phenomenology +1207.1201 Experiment +1207.1212 +1207.1229 Phenomenology +1207.1261 Superconductivity +1207.1450 Phenomenology +1207.1466 Quantum Gases +1207.1484 Phenomenology +1207.1538 +1207.1541 Phenomenology +1207.1545 Phenomenology +1207.1598 Soft Condensed Matter +1207.1663 Phenomenology +1207.1704 Experiment +1207.1711 Experiment +1207.1712 +1207.1892 Phenomenology +1207.1940 Theory +1207.2035 Cosmology and Nongalactic Astrophysics +1207.2073 Superconductivity +1207.2080 Information Theory +1207.2156 Strongly Correlated Electrons +1207.2333 Theory +1207.2412 High Energy Astrophysical Phenomena +1207.2425 Phenomenology +1207.2433 Strongly Correlated Electrons +1207.2443 Algebraic Geometry +1207.2473 Phenomenology +1207.2520 Experiment +1207.2559 Mesoscale and Nanoscale Physics +1207.2578 Phenomenology +1207.2651 Experiment +1207.2677 +1207.2690 Experiment +1207.2757 Experiment +1207.2791 +1207.2832 Phenomenology +1207.2893 Disordered Systems and Neural Networks +1207.2916 Materials Science +1207.2927 Phenomenology +1207.3060 Lattice +1207.3073 Phenomenology +1207.3134 Phenomenology +1207.3145 Superconductivity +1207.3149 Theory +1207.3221 Phenomenology +1207.3245 Phenomenology +1207.3293 Cosmology and Nongalactic Astrophysics +1207.3343 Phenomenology +1207.3352 Theory +1207.3356 Cosmology and Nongalactic Astrophysics +1207.3444 Strongly Correlated Electrons +1207.3536 Lattice +1207.3540 Chaotic Dynamics +1207.3637 Theory +1207.3723 Theory +1207.3811 Molecular Networks +1207.4030 Phenomenology +1207.4187 Cosmology and Nongalactic Astrophysics +1207.4193 Phenomenology +1207.4205 Theory +1207.4207 Phenomenology +1207.4267 Phenomenology +1207.4346 Theory +1207.4375 Populations and Evolution +1207.4377 Lattice +1207.4472 Phenomenology +1207.4496 Phenomenology +1207.4543 Cosmology and Nongalactic Astrophysics +1207.4599 Phenomenology +1207.4662 Theory +1207.4787 Phenomenology +1207.4846 Phenomenology +1207.4851 Theory +1207.4905 Lattice +1207.4908 Theory +1207.4923 +1207.4979 Phenomenology +1207.4996 Phenomenology +1207.5016 Experiment +1207.5047 Neurons and Cognition +1207.5068 Quantum Gases +1207.5096 Phenomenology +1207.5118 Phenomenology +1207.5149 Lattice +1207.5179 Phenomenology +1207.5186 Phenomenology +1207.5287 Mesoscale and Nanoscale Physics +1207.5415 Theory +1207.5448 +1207.5453 Phenomenology +1207.5454 Phenomenology +1207.5493 +1207.5496 +1207.5547 Cosmology and Nongalactic Astrophysics +1207.5693 Atomic Physics +1207.5730 +1207.5757 Phenomenology +1207.5772 Experiment +1207.5937 Strongly Correlated Electrons +1207.6008 +1207.6105 Cosmology and Nongalactic Astrophysics +1207.6135 Statistical Mechanics +1207.6257 High Energy Astrophysical Phenomena +1207.6261 Strongly Correlated Electrons +1207.6266 Cosmology and Nongalactic Astrophysics +1207.6337 Strongly Correlated Electrons +1207.6350 +1207.6388 Phenomenology +1207.6414 Theory +1207.6415 Phenomenology +1207.6425 High Energy Astrophysical Phenomena +1207.6515 Cosmology and Nongalactic Astrophysics +1207.6529 Phenomenology +1207.6596 Phenomenology +1207.6597 Mesoscale and Nanoscale Physics +1207.6619 Mesoscale and Nanoscale Physics +1207.6640 Cosmology and Nongalactic Astrophysics +1207.6641 Phenomenology +1207.6691 Theory +1207.6701 Optics +1207.6772 +1207.6794 Phenomenology +1207.6847 Phenomenology +1207.6876 Phenomenology +1207.6879 Statistical Mechanics +1207.6891 +1207.7021 Statistical Mechanics +1207.7050 Other Condensed Matter +1207.7052 Phenomenology +1207.7061 Phenomenology +1207.7062 Phenomenology +1207.7068 Phenomenology +1207.7216 Theory +1207.7325 Theory +1208.0010 Phenomenology +1208.0014 Phenomenology +1208.0115 Phenomenology +1208.0184 Cosmology and Nongalactic Astrophysics +1208.0190 Theory +1208.0213 Soft Condensed Matter +1208.0336 Phenomenology +1208.0376 Experiment +1208.0450 Quantum Gases +1208.0601 Phenomenology +1208.0662 Phenomenology +1208.0731 Phenomenology +1208.0769 Phenomenology +1208.0828 High Energy Astrophysical Phenomena +1208.0882 Theory +1208.1073 +1208.1082 Chemical Physics +1208.1107 Chaotic Dynamics +1208.1108 Theory +1208.1177 Phenomenology +1208.1191 Cosmology and Nongalactic Astrophysics +1208.1195 +1208.1212 Phenomenology +1208.1242 +1208.1254 Theory +1208.1255 Theory +1208.1282 Experiment +1208.1391 Materials Science +1208.1398 Phenomenology +1208.1533 Phenomenology +1208.1686 Phenomenology +1208.1734 +1208.1754 Theory +1208.1899 Phenomenology +1208.1952 Phenomenology +1208.2146 +1208.2162 +1208.2181 Theory +1208.2182 Theory +1208.2216 Chemical Physics +1208.2340 +1208.2458 Phenomenology +1208.2465 Theory +1208.2513 +1208.2594 Statistical Mechanics +1208.2604 +1208.2615 Theory +1208.2692 Phenomenology +1208.2700 Theory +1208.2710 Phenomenology +1208.2790 +1208.2855 Lattice +1208.2915 Experiment +1208.2916 Lattice +1208.3009 +1208.3234 Strongly Correlated Electrons +1208.3250 Statistical Mechanics +1208.3343 Phenomenology +1208.3405 Accelerator Physics +1208.3475 Lattice +1208.3491 +1208.3578 Theory +1208.3642 Phenomenology +1208.3697 Cosmology and Nongalactic Astrophysics +1208.3731 +1208.3821 Theory +1208.3968 Theory +1208.3980 Phenomenology +1208.4002 Theory +1208.4088 Phenomenology +1208.4102 Theory +1208.4104 Phenomenology +1208.4181 High Energy Astrophysical Phenomena +1208.4303 Phenomenology +1208.4347 Cosmology and Nongalactic Astrophysics +1208.4595 Theory +1208.4612 Cosmology and Nongalactic Astrophysics +1208.4768 Phenomenology +1208.4784 Theory +1208.4825 Theory +1208.4840 Phenomenology +1208.4871 +1208.4992 Cosmology and Nongalactic Astrophysics +1208.5082 Theory +1208.5138 Theory +1208.5288 High Energy Astrophysical Phenomena +1208.5293 Optics +1208.5389 Theory +1208.5446 Phenomenology +1208.5533 Phenomenology +1208.5811 Phenomenology +1208.5813 Experiment +1208.5967 Phenomenology +1208.6062 Phenomenology +1208.6239 Phenomenology +1208.6270 Lattice +1208.6300 Quantum Gases +1208.6315 Theory +1208.6426 Phenomenology +1208.6472 Lattice +1209.0024 +1209.0211 Phenomenology +1209.0376 Phenomenology +1209.0418 Theory +1209.0451 Theory +1209.0529 +1209.0638 Mesoscale and Nanoscale Physics +1209.0682 Phenomenology +1209.0683 +1209.0707 Phenomenology +1209.0760 Theory +1209.0817 Phenomenology +1209.0837 +1209.0862 +1209.0971 +1209.1020 Mesoscale and Nanoscale Physics +1209.1037 Phenomenology +1209.1093 Phenomenology +1209.1101 Phenomenology +1209.1292 Phenomenology +1209.1319 Phenomenology +1209.1348 Phenomenology +1209.1353 Phenomenology +1209.1401 +1209.1470 Phenomenology +1209.1476 Physics and Society +1209.1489 Phenomenology +1209.1603 +1209.1624 Theory +1209.1819 Phenomenology +1209.1928 Strongly Correlated Electrons +1209.2061 Lattice +1209.2062 Strongly Correlated Electrons +1209.2201 Lattice +1209.2258 Lattice +1209.2328 Phenomenology +1209.2389 Phenomenology +1209.2469 Experiment +1209.2472 Theory +1209.2619 +1209.2734 Experiment +1209.2871 +1209.3240 Phenomenology +1209.3488 +1209.3628 Statistics Theory +1209.3649 Theory +1209.3658 Instrumentation and Methods for Astrophysics +1209.3716 Phenomenology +1209.3757 Phenomenology +1209.3781 Phenomenology +1209.3872 +1209.3896 Experiment +1209.3956 Optics +1209.3967 Optics +1209.4018 Quantum Gases +1209.4051 Phenomenology +1209.4348 Theory +1209.4354 Phenomenology +1209.4514 Theory +1209.4713 Phenomenology +1209.4866 Phenomenology +1209.5001 +1209.5034 Theory +1209.5216 Theory +1209.5270 Phenomenology +1209.5403 Theory +1209.5427 High Energy Astrophysical Phenomena +1209.5432 Phenomenology +1209.5515 Statistical Mechanics +1209.5697 Lattice +1209.5781 Phenomenology +1209.5798 Phenomenology +1209.5823 Instrumentation and Methods for Astrophysics +1209.6015 Lattice +1209.6060 Theory +1209.6063 Phenomenology +1209.6079 +1209.6088 +1209.6212 Theory +1209.6226 Phenomenology +1209.6235 Phenomenology +1209.6265 Phenomenology +1209.6286 +1209.6330 +1209.6352 Phenomenology +1209.6362 Phenomenology +1209.6368 Theory +1209.6375 Phenomenology +1209.6387 Phenomenology +1209.6507 Phenomenology +1210.0025 Lattice +1210.0029 Theory +1210.0096 Theory +1210.0126 Phenomenology +1210.0164 Theory +1210.0299 Strongly Correlated Electrons +1210.0491 Phenomenology +1210.0507 Theory +1210.0545 Phenomenology +1210.0581 Theory +1210.0594 Phenomenology +1210.0720 +1210.0760 Phenomenology +1210.0890 +1210.0973 Phenomenology +1210.1128 +1210.1189 +1210.1220 High Energy Astrophysical Phenomena +1210.1225 Statistical Mechanics +1210.1553 Phenomenology +1210.1580 Theory +1210.1897 +1210.1906 Phenomenology +1210.1953 Lattice +1210.1997 Mesoscale and Nanoscale Physics +1210.2168 Cosmology and Nongalactic Astrophysics +1210.2369 Theory +1210.2416 Phenomenology +1210.2495 Cosmology and Nongalactic Astrophysics +1210.2497 Theory +1210.2588 Phenomenology +1210.2648 +1210.2808 Phenomenology +1210.2823 Statistical Mechanics +1210.2829 Cosmology and Nongalactic Astrophysics +1210.2831 Experiment +1210.2834 +1210.2851 Mesoscale and Nanoscale Physics +1210.2927 Phenomenology +1210.2965 Cosmology and Nongalactic Astrophysics +1210.3007 +1210.3072 Theory +1210.3170 Phenomenology +1210.3562 Cosmology and Nongalactic Astrophysics +1210.3657 Phenomenology +1210.3703 Quantum Gases +1210.3748 Experiment +1210.3981 Phenomenology +1210.4011 Phenomenology +1210.4035 Theory +1210.4125 Phenomenology +1210.4181 Theory +1210.4379 Theory +1210.4554 Quantum Gases +1210.4642 Mesoscale and Nanoscale Physics +1210.4684 +1210.5072 Phenomenology +1210.5299 Populations and Evolution +1210.5302 Cosmology and Nongalactic Astrophysics +1210.5453 Statistical Mechanics +1210.5828 Atomic Physics +1210.5901 Mesoscale and Nanoscale Physics +1210.5944 Optics +1210.6009 +1210.6507 Phenomenology +1210.6651 Cosmology and Nongalactic Astrophysics +1210.6702 Theory +1210.6723 Theory +1210.6863 Theory +1210.6867 Mesoscale and Nanoscale Physics +1210.6914 Experiment +1210.7166 Cosmology and Nongalactic Astrophysics +1210.7431 Probability +1210.7649 Phenomenology +1210.7709 Theory +1210.7738 Materials Science +1210.7804 Phenomenology +1210.7957 Quantum Gases +1210.8335 +1211.0083 Cosmology and Nongalactic Astrophysics +1211.0092 Lattice +1211.0133 +1211.0195 +1211.0281 Phenomenology +1211.0546 +1211.0725 Phenomenology +1211.1125 +1211.1248 Phenomenology +1211.1321 Phenomenology +1211.1429 Strongly Correlated Electrons +1211.1880 Phenomenology +1211.2048 +1211.2114 Phenomenology +1211.2154 Cosmology and Nongalactic Astrophysics +1211.2561 Differential Geometry +1211.2581 +1211.2868 Theory +1211.3011 Phenomenology +1211.3097 Cosmology and Nongalactic Astrophysics +1211.3154 +1211.3196 Algebraic Geometry +1211.3495 Mesoscale and Nanoscale Physics +1211.3679 Theory +1211.3734 Phenomenology +1211.3920 Solar and Stellar Astrophysics +1211.4110 Quantum Gases +1211.4128 Cosmology and Nongalactic Astrophysics +1211.4265 Phenomenology +1211.4374 Exactly Solvable and Integrable Systems +1211.4378 +1211.4434 Disordered Systems and Neural Networks +1211.4462 Experiment +1211.4507 Phenomenology +1211.4716 Phenomenology +1211.4981 Phenomenology +1211.5144 Phenomenology +1211.5541 Atomic Physics +1211.5665 +1211.5915 Cosmology and Nongalactic Astrophysics +1211.6128 Cosmology and Nongalactic Astrophysics +1211.6332 Phenomenology +1211.6348 Neurons and Cognition +1211.6679 Quantum Gases +1211.6797 Phenomenology +1211.6909 Geometric Topology +1211.7006 Phenomenology +1211.7067 Strongly Correlated Electrons +1211.7095 +1212.0165 Phenomenology +1212.1962 Strongly Correlated Electrons +1212.2423 Atomic Physics +1212.2691 Theory +1212.3250 Phenomenology +1212.4651 Phenomenology +1212.5065 Phenomenology +1212.5308 Phenomenology +1212.5346 Phenomenology +1212.5691 Spectral Theory +1212.6801 Combinatorics +1301.0358 Quantum Gases +1301.0542 Numerical Analysis +1301.3409 Group Theory +1301.3538 Strongly Correlated Electrons +1301.4309 Representation Theory +1301.4895 Lattice +1301.5100 Combinatorics +1301.6474 Algebraic Geometry +1301.6536 Materials Science +1301.7252 Strongly Correlated Electrons +1302.1707 Mesoscale and Nanoscale Physics +1302.2394 Experiment +1302.2745 Group Theory +1302.2936 +1302.4560 Strongly Correlated Electrons +1302.7225 Materials Science +1303.3885 Mesoscale and Nanoscale Physics +1303.4080 Instrumentation and Detectors +1303.4483 Operator Algebras +1303.4811 Experiment +1303.6000 Cosmology and Nongalactic Astrophysics +1303.6408 Phenomenology +1303.7281 Superconductivity +1304.0642 +1304.1573 Quantum Gases +1304.2334 Phenomenology +1304.3701 Materials Science +1304.4212 Soft Condensed Matter +1304.5262 General Mathematics +1304.5528 +1304.5862 Learning +1304.6168 Number Theory +1304.6602 Earth and Planetary Astrophysics +1304.7317 Cosmology and Nongalactic Astrophysics +1305.0845 High Energy Astrophysical Phenomena +1305.0850 Earth and Planetary Astrophysics +1305.1739 Analysis of PDEs +1305.2096 Phenomenology +1305.3056 Algebraic Geometry +1305.3762 +1305.4051 Biomolecules +1305.5124 Disordered Systems and Neural Networks +1305.5656 General Finance +1305.5729 Instrumentation and Detectors +1305.5879 Methodology +1305.6416 Dynamical Systems +1305.6434 Materials Science +1305.6444 Solar and Stellar Astrophysics +1305.6451 Social and Information Networks +1305.6614 +1305.6620 Instrumentation and Methods for Astrophysics +1305.6621 Combinatorics +1305.6624 Distributed, Parallel, and Cluster Computing +1305.6640 Software Engineering +1305.6642 Phenomenology +1305.6643 Metric Geometry +1305.6646 Learning +1305.6650 Artificial Intelligence +1305.6653 Numerical Analysis +1305.6664 Chemical Physics +1305.6666 Biomolecules +1305.6667 Classical Physics +1305.6669 Computational Complexity +1305.6671 +1305.6673 Combinatorics +1305.6674 Combinatorics +1305.6675 Representation Theory +1305.6680 +1305.6681 Fluid Dynamics +1305.6683 Functional Analysis +1305.6684 Functional Analysis +1305.6693 Computational Geometry +1305.6700 Populations and Evolution +1305.6701 Mesoscale and Nanoscale Physics +1305.6705 Computer Science and Game Theory +1305.6707 Space Physics +1305.6715 Combinatorics +1305.6717 Populations and Evolution +1305.6721 Programming Languages +1305.6723 Probability +1305.6735 Probability +1305.6736 Computation +1305.6738 Computation +1305.6739 Functional Analysis +1305.6741 Theory +1305.6743 Functional Analysis +1305.6752 High Energy Astrophysical Phenomena +1305.6753 Physics and Society +1305.6755 Dynamical Systems +1305.6757 Formal Languages and Automata Theory +1305.6761 Materials Science +1305.6762 Risk Management +1305.6765 Probability +1305.6772 General Physics +1305.6775 Accelerator Physics +1305.6777 Analysis of PDEs +1305.6779 Phenomenology +1305.6783 Information Theory +1305.6787 Accelerator Physics +1305.6803 Formal Languages and Automata Theory +1305.6807 Mesoscale and Nanoscale Physics +1305.6814 Representation Theory +1305.6820 Superconductivity +1305.6821 Chaotic Dynamics +1305.6822 General Physics +1305.6824 High Energy Astrophysical Phenomena +1305.6827 Networking and Internet Architecture +1305.6831 Portfolio Management +1305.6836 Social and Information Networks +1305.6838 +1305.6844 Rings and Algebras +1305.6847 Astrophysics of Galaxies +1305.6851 History and Overview +1305.6855 +1305.6857 Numerical Analysis +1305.6858 Rings and Algebras +1305.6861 Distributed, Parallel, and Cluster Computing +1305.6864 Information Theory +1305.6866 Combinatorics +1305.6867 Representation Theory +1305.6875 General Physics +1305.6883 Computer Vision and Pattern Recognition +1305.6891 +1305.6894 High Energy Astrophysical Phenomena +1305.6903 Dynamical Systems +1305.6909 Methodology +1305.6914 General Physics +1305.6915 Software Engineering +1305.6917 Accelerator Physics +1305.6918 Computer Vision and Pattern Recognition +1305.6919 Mesoscale and Nanoscale Physics +cond-mat/0011008 Strongly Correlated Electrons +gr-qc/0509116 +q-bio/0409024 Populations and Evolution +q-bio/0703062 Populations and Evolution +0807.3803 +0811.1472 Strongly Correlated Electrons +0911.1849 Information Theory +1008.1275 Representation Theory +1008.4014 Classical Analysis and ODEs +1010.0554 Classical Analysis and ODEs +1011.6106 Algebraic Geometry +1012.3347 Distributed, Parallel, and Cluster Computing +1101.0599 Number Theory +1103.2940 Algebraic Geometry +1104.1554 Probability +1105.3457 Strongly Correlated Electrons +1106.2190 +1106.3076 Phenomenology +1106.5240 +1107.1529 Information Theory +1109.2831 +1110.3887 Geometric Topology +1111.3812 Classical Analysis and ODEs +1111.4871 Mesoscale and Nanoscale Physics +1112.5353 Differential Geometry +1201.0472 Statistics Theory +1201.6068 Geometric Topology +1201.6397 Information Theory +1202.1238 Information Theory +1202.1897 Algebraic Geometry +1203.0427 Complex Variables +1203.1709 +1203.4813 Phenomenology +1203.5696 Numerical Analysis +1204.1128 Algebraic Geometry +1204.4358 Solar and Stellar Astrophysics +1204.4865 Systems and Control +1204.6100 Information Theory +1205.1870 Symplectic Geometry +1205.2042 +1205.4840 Applications +1205.4868 Dynamical Systems +1205.6265 Numerical Analysis +1206.1503 +1206.4417 Rings and Algebras +1206.4755 Information Theory +1207.0451 Group Theory +1207.2853 Information Theory +1207.4067 Logic +1208.1893 Mesoscale and Nanoscale Physics +1209.1696 Classical Analysis and ODEs +1209.2845 Materials Science +1209.3731 +1209.5042 +1209.6068 +1210.0911 Strongly Correlated Electrons +1210.1863 Geometric Topology +1210.3150 Phenomenology +1210.4074 Probability +1210.5868 Probability +1211.0267 Superconductivity +1211.1700 Quantum Gases +1211.2111 +1211.2277 Phenomenology +1211.4759 Operator Algebras +1211.4973 Mesoscale and Nanoscale Physics +1212.0986 Strongly Correlated Electrons +1212.2291 Networking and Internet Architecture +1212.3360 Phenomenology +1212.4285 Solar and Stellar Astrophysics +1212.4456 +1212.4944 Phenomenology +1212.5390 Mesoscale and Nanoscale Physics +1301.3114 Trading and Market Microstructure +1301.3935 Mesoscale and Nanoscale Physics +1301.4823 +1301.5173 Differential Geometry +1301.5556 Strongly Correlated Electrons +1301.5904 Statistical Mechanics +1301.6016 Representation Theory +1301.6206 Methodology +1301.6325 Differential Geometry +1301.7655 Superconductivity +1302.0051 Superconductivity +1302.0904 Theory +1302.1034 Superconductivity +1302.1993 Phenomenology +1302.2579 Phenomenology +1302.2714 Fluid Dynamics +1302.4754 Cosmology and Nongalactic Astrophysics +1302.4878 High Energy Astrophysical Phenomena +1302.5930 +1302.6151 Number Theory +1302.7162 Theory +1302.7274 Digital Libraries +1303.0478 Computational Complexity +1303.1996 Numerical Analysis +1303.3426 Solar and Stellar Astrophysics +1303.3493 Phenomenology +1303.3552 Probability +1303.4872 Fluid Dynamics +1303.5184 Superconductivity +1303.5825 Phenomenology +1303.6398 +1303.6818 Lattice +1304.0659 Popular Physics +1304.1198 Optimization and Control +1304.2245 Phenomenology +1304.2271 Differential Geometry +1304.2535 +1304.2590 Optimization and Control +1304.3057 General Physics +1304.3156 Information Theory +1304.3240 High Energy Astrophysical Phenomena +1304.3296 Lattice +1304.3418 Artificial Intelligence +1304.3419 Artificial Intelligence +1304.3420 Artificial Intelligence +1304.3421 Artificial Intelligence +1304.3422 Artificial Intelligence +1304.3423 Artificial Intelligence +1304.3424 Artificial Intelligence +1304.3425 Artificial Intelligence +1304.3426 Artificial Intelligence +1304.3427 Artificial Intelligence +1304.3428 Artificial Intelligence +1304.3429 Artificial Intelligence +1304.3430 Artificial Intelligence +1304.3431 Artificial Intelligence +1304.3432 Artificial Intelligence +1304.3433 Artificial Intelligence +1304.3434 Artificial Intelligence +1304.3435 Artificial Intelligence +1304.3436 Artificial Intelligence +1304.3437 Artificial Intelligence +1304.3438 Artificial Intelligence +1304.3439 Artificial Intelligence +1304.3440 Artificial Intelligence +1304.3441 Artificial Intelligence +1304.3442 Artificial Intelligence +1304.3443 Artificial Intelligence +1304.3444 Artificial Intelligence +1304.3445 Artificial Intelligence +1304.3446 Artificial Intelligence +1304.3447 Computer Vision and Pattern Recognition +1304.3448 Artificial Intelligence +1304.3449 Computational Engineering, Finance, and Science +1304.3450 Artificial Intelligence +1304.3451 Artificial Intelligence +1304.3453 General Physics +1304.3455 Astrophysics of Galaxies +1304.3458 Theory +1304.3470 Soft Condensed Matter +1304.3471 Functional Analysis +1304.3477 Systems and Control +1304.3478 Optimization and Control +1304.3480 Social and Information Networks +1304.3481 Quantum Algebra +1304.3482 Theory +1304.3484 Dynamical Systems +1304.3489 Artificial Intelligence +1304.3493 Complex Variables +1304.3496 Optics +1304.3497 Phenomenology +1304.3498 Probability +1304.3501 Numerical Analysis +1304.3504 Differential Geometry +1304.3507 Other Computer Science +1304.3512 Classical Analysis and ODEs +1304.3513 Cryptography and Security +1304.3515 +1304.3524 Combinatorics +1304.3526 Solar and Stellar Astrophysics +1304.3527 Mesoscale and Nanoscale Physics +1304.3528 Dynamical Systems +1304.3529 Cosmology and Nongalactic Astrophysics +1304.3530 Number Theory +1304.3534 Mesoscale and Nanoscale Physics +1304.3535 Cryptography and Security +1304.3536 Classical Analysis and ODEs +1304.3538 Number Theory +1304.3539 Number Theory +1304.3541 Computational Complexity +1304.3542 Geophysics +1304.3543 Number Theory +1304.3544 Methodology +1304.3546 Populations and Evolution +1304.3547 +1304.3550 Cryptography and Security +1304.3554 Emerging Technologies +1304.3557 Operating Systems +1304.3559 Statistics Theory +1304.3560 Networking and Internet Architecture +1304.3563 Information Retrieval +1304.3564 Accelerator Physics +1304.3565 Superconductivity +1304.3568 Machine Learning +1304.3570 Analysis of PDEs +1304.3572 Mesoscale and Nanoscale Physics +1304.3574 Pricing of Securities +1304.3576 Classical Analysis and ODEs +1304.3589 Applications +1304.3592 Category Theory +1304.3594 Phenomenology +1304.3600 Discrete Mathematics +1304.3603 Databases +1304.3608 Methodology +1304.3610 Neural and Evolutionary Computing +1304.3612 Neural and Evolutionary Computing +1304.3613 Combinatorics +1304.3617 Combinatorics +1304.3622 Algebraic Topology +1304.3625 Logic +1304.3628 Quantum Gases +1304.3629 Multimedia +1304.3636 +1304.3641 Classical Physics +1304.3642 Phenomenology +1304.3652 Optics +1304.3653 Data Structures and Algorithms +1304.3654 Optics +1304.3662 Symplectic Geometry +1304.3664 Cosmology and Nongalactic Astrophysics +1304.3665 Cosmology and Nongalactic Astrophysics +1304.3666 Formal Languages and Automata Theory +1304.3671 Computational Geometry +1304.3673 Computation +1304.3674 General Literature +1304.3676 Methodology +1304.3690 +1304.3691 Populations and Evolution +1304.3694 Metric Geometry +1304.3699 Logic +1304.3700 Computers and Society +1304.3702 Atomic Physics +1304.3703 +1304.3707 Dynamical Systems +1304.3708 Learning +1304.3716 Software Engineering +0811.3390 Algebraic Geometry +0811.3392 Algebraic Geometry +0901.3928 Group Theory +0906.3478 Algebraic Geometry +0910.5161 Other Condensed Matter +1006.1268 Combinatorics +1008.1086 Probability +1011.1183 Group Theory +1012.0618 Algebraic Geometry +1103.4457 Probability +1104.1679 Plasma Physics +1104.4317 Theory +1109.6419 Mesoscale and Nanoscale Physics +1110.1913 +1111.0994 Solar and Stellar Astrophysics +1111.1295 Probability +1111.4778 Quantum Gases +1202.3213 Number Theory +1202.5504 Algebraic Topology +1203.0710 +1203.5362 Networking and Internet Architecture +1204.3792 Materials Science +1204.4002 Materials Science +1205.1844 Classical Analysis and ODEs +1205.5012 Machine Learning +1205.5800 Functional Analysis +1206.3709 Systems and Control +1207.2006 Strongly Correlated Electrons +1207.3138 +1207.5544 +1207.6595 Logic +1208.5100 Probability +1209.0002 Geometric Topology +1209.0519 +1209.5309 Number Theory +1209.5738 +1210.0115 Computer Vision and Pattern Recognition +1210.0286 Quantitative Methods +1210.2610 Logic in Computer Science +1210.3123 Mesoscale and Nanoscale Physics +1210.4414 Strongly Correlated Electrons +1210.6612 Number Theory +1211.3551 Numerical Analysis +1211.5663 Phenomenology +1211.7300 Materials Science +1212.0180 Geometric Topology +1212.1919 Pricing of Securities +1212.2038 Superconductivity +1212.2220 Atomic Physics +1212.3059 +1301.0187 Solar and Stellar Astrophysics +1301.4602 Spectral Theory +1301.4603 Spectral Theory +1301.4725 K-Theory and Homology +1301.7600 +1302.2536 +1302.2778 Mesoscale and Nanoscale Physics +1302.3807 Mesoscale and Nanoscale Physics +1302.5008 Dynamical Systems +1302.5150 Computational Engineering, Finance, and Science +1302.5910 Information Theory +1302.7174 Chaotic Dynamics +1303.0914 Quantum Gases +1303.0949 +1303.1677 Superconductivity +1303.2421 Materials Science +1303.2645 Phenomenology +1303.3472 Theory +1303.4571 Experiment +1303.4593 Combinatorics +1303.4899 Information Theory +1303.4946 Mesoscale and Nanoscale Physics +1303.5311 Materials Science +1303.7294 Phenomenology +1304.0560 Cosmology and Nongalactic Astrophysics +1304.2009 Statistical Mechanics +1304.4552 Optimization and Control +1304.5303 Superconductivity +1304.5946 Theory +1304.5992 +1304.6223 Complex Variables +1304.7752 Phenomenology +1305.2839 Optics +1305.4224 Instrumentation and Detectors +1305.6005 Cosmology and Nongalactic Astrophysics +1305.6781 Number Theory +1305.7061 Mesoscale and Nanoscale Physics +1306.1715 General Topology +1306.2017 +1306.2634 Cosmology and Nongalactic Astrophysics +1306.6756 Instrumentation and Detectors +1307.0646 Dynamical Systems +1307.0660 Classical Analysis and ODEs +1307.0931 Optics +1307.1127 Solar and Stellar Astrophysics +1307.1131 Phenomenology +1307.1140 Theory +1307.1144 Computers and Society +1307.1145 +1307.1148 Combinatorics +1307.1150 Superconductivity +1307.1151 Numerical Analysis +1307.1156 Analysis of PDEs +1307.1157 Computational Complexity +1307.1160 Metric Geometry +1307.1163 Populations and Evolution +1307.1164 Methodology +1307.1166 Computer Vision and Pattern Recognition +1307.1169 Combinatorics +1307.1170 Social and Information Networks +1307.1174 Classical Analysis and ODEs +1307.1177 High Energy Astrophysical Phenomena +1307.1178 +1307.1179 Information Retrieval +1307.1182 Dynamical Systems +1307.1183 +1307.1188 Dynamical Systems +1307.1191 Materials Science +1307.1192 Machine Learning +1307.1199 Analysis of PDEs +1307.1204 Networking and Internet Architecture +1307.1209 Optics +1307.1210 Optics +1307.1211 Optics +1307.1212 Networking and Internet Architecture +1307.1214 Medical Physics +1307.1215 Other Computer Science +1307.1217 Performance +1307.1221 Phenomenology +1307.1223 Numerical Analysis +1307.1229 Analysis of PDEs +1307.1239 High Energy Astrophysical Phenomena +1307.1240 Astrophysics of Galaxies +1307.1244 History and Philosophy of Physics +1307.1245 Astrophysics of Galaxies +1307.1248 Numerical Analysis +1307.1251 Emerging Technologies +1307.1252 Computer Science and Game Theory +1307.1255 Astrophysics of Galaxies +1307.1257 Analysis of PDEs +1307.1262 General Topology +1307.1265 Dynamical Systems +1307.1269 +1307.1270 Distributed, Parallel, and Cluster Computing +1307.1271 Digital Libraries +1307.1272 Phenomenology +1307.1275 Learning +1307.1277 Logic +1307.1278 Mesoscale and Nanoscale Physics +1307.1279 Number Theory +1307.1282 Superconductivity +1307.1283 Mesoscale and Nanoscale Physics +1307.1286 Geophysics +1307.1288 Probability +1307.1303 Computer Vision and Pattern Recognition +1307.1305 Chemical Physics +1307.1307 Information Theory +1307.1310 +1307.1318 Rings and Algebras +1307.1319 Phenomenology +1307.1320 Optimization and Control +1307.1321 Solar and Stellar Astrophysics +1307.1326 Classical Analysis and ODEs +1307.1327 Optimization and Control +1307.1333 Physics Education +1307.1335 Mathematical Software +1307.1336 Solar and Stellar Astrophysics +1307.1338 Classical Analysis and ODEs +1307.1339 Algebraic Geometry +1307.1340 Classical Analysis and ODEs +1307.1342 Operator Algebras +1307.1343 Mathematical Software +1307.1348 Mathematical Software +1307.1350 +1307.1352 Mathematical Software +1307.1356 Algebraic Topology +1307.1360 Information Theory +1307.1361 Probability +1307.1368 Computation +1307.1369 Probability +1307.1371 Discrete Mathematics +1307.1380 Computational Engineering, Finance, and Science +1307.1381 Quantum Algebra +1307.1382 Molecular Networks +1307.1384 Methodology +1307.1385 Computational Engineering, Finance, and Science +1307.1387 Learning +1307.1388 Artificial Intelligence +1307.1389 Combinatorics +1307.1390 Computational Engineering, Finance, and Science +1307.1391 Learning +1307.1392 Combinatorics +1307.1393 Number Theory +1307.1394 Computational Engineering, Finance, and Science +1307.1395 Probability +1307.1396 Number Theory +1307.1397 Information Theory +1307.1400 Experiment +1307.1406 Data Structures and Algorithms +1307.1410 Analysis of PDEs +1307.1411 Learning +1307.1413 Number Theory +1307.1417 Data Structures and Algorithms +1307.1418 Combinatorics +1307.1423 Classical Analysis and ODEs +1307.1426 Instrumentation and Detectors +1307.1428 Data Structures and Algorithms +1307.1434 Analysis of PDEs +1307.1435 Strongly Correlated Electrons +1307.1437 Computer Vision and Pattern Recognition +1307.1441 General Physics +1307.1444 General Mathematics +1307.1445 Phenomenology +1307.1449 Algebraic Geometry +1307.1450 High Energy Astrophysical Phenomena +1307.1451 Phenomenology +1307.1452 +math/0701669 Algebraic Geometry +0807.1445 Mesoscale and Nanoscale Physics +0905.2007 Group Theory +0907.2111 Optics +0910.5233 Cosmology and Nongalactic Astrophysics +0912.5402 Differential Geometry +1002.0175 Probability +1007.0741 +1008.2740 Probability +1011.1877 Probability +1012.2372 Combinatorics +1105.1462 Mesoscale and Nanoscale Physics +1106.5707 +1107.2961 Combinatorics +1107.4927 Mesoscale and Nanoscale Physics +1108.0440 Probability +1108.3414 Dynamical Systems +1109.0499 +1110.1786 Soft Condensed Matter +1112.2065 Rings and Algebras +1112.2626 +1112.3014 Mesoscale and Nanoscale Physics +1112.6390 Chaotic Dynamics +1202.5904 Optics +1204.5774 Phenomenology +1204.6202 Mesoscale and Nanoscale Physics +1205.6161 Quantum Gases +1205.6494 Mesoscale and Nanoscale Physics +1205.6766 Cosmology and Nongalactic Astrophysics +1206.2004 Superconductivity +1206.3359 Optimization and Control +1206.6087 +1207.1111 +1207.4777 Statistical Mechanics +1208.1298 Statistical Finance +1209.1016 Materials Science +1209.6558 Information Theory +1210.0781 +1210.1086 Analysis of PDEs +1210.6582 Classical Analysis and ODEs +1210.6736 +1211.1906 Mesoscale and Nanoscale Physics +1211.3611 Mesoscale and Nanoscale Physics +1211.4354 Dynamical Systems +1211.5040 Theory +1211.7002 General Physics +1211.7234 Atomic Physics +1212.0908 Materials Science +1212.3904 Rings and Algebras +1212.4301 Strongly Correlated Electrons +1212.4343 Lattice +1212.4913 Other Computer Science +1212.5030 Operator Algebras +1212.5179 Strongly Correlated Electrons +1212.5713 +1212.6277 Mesoscale and Nanoscale Physics +1301.1069 +1301.1409 Computational Engineering, Finance, and Science +1301.1436 Strongly Correlated Electrons +1301.3593 Commutative Algebra +1301.4536 Experiment +1301.5233 Astrophysics of Galaxies +1301.5581 Quantum Algebra +1301.6289 Earth and Planetary Astrophysics +1301.6290 Instrumentation and Methods for Astrophysics +1301.7213 Analysis of PDEs +1301.7352 Theory +1302.0242 +1302.0855 Mesoscale and Nanoscale Physics +1302.0955 Theory +1302.1655 Algebraic Geometry +1302.2639 Optimization and Control +1302.4277 Instrumentation and Detectors +1302.4330 Theory +1303.0857 Cryptography and Security +1303.1052 Probability +1303.3777 Logic in Computer Science +1303.5564 +1303.6088 Social and Information Networks +1303.6243 +1303.6559 Quantum Gases +1303.7169 Strongly Correlated Electrons +1304.0011 +1304.0757 +1304.1306 Instrumentation and Detectors +1304.2708 Accelerator Physics +1304.2914 +1304.3933 Superconductivity +1304.4235 Cosmology and Nongalactic Astrophysics +1304.4319 Theory +1304.5462 Phenomenology +1304.5551 Phenomenology +1304.6555 Materials Science +1304.6846 Pricing of Securities +1304.7102 Phenomenology +1304.7309 +1305.0054 Strongly Correlated Electrons +1305.0208 Learning +1305.2892 Software Engineering +1305.4024 Materials Science +1305.6187 Artificial Intelligence +1305.6601 Classical Analysis and ODEs +1306.0107 Dynamical Systems +1306.0333 Cosmology and Nongalactic Astrophysics +1306.0446 Lattice +1306.0538 +1306.0680 Fluid Dynamics +1306.1963 Theory +1306.2209 Optics +1306.2783 Probability +1306.3096 Phenomenology +1306.3361 Experiment +1306.3380 Phenomenology +1306.3412 Earth and Planetary Astrophysics +1306.3937 Earth and Planetary Astrophysics +1306.4392 +1306.5094 Lattice +1306.6190 High Energy Astrophysical Phenomena +1307.2140 Algebraic Geometry +1307.2264 Astrophysics of Galaxies +1307.2658 Differential Geometry +1307.2685 Statistical Mechanics +1307.3734 Cosmology and Nongalactic Astrophysics +1307.4457 Optimization and Control +1307.4765 Statistics Theory +1307.4984 Statistical Mechanics +1307.5290 Data Structures and Algorithms +1307.5336 Computation and Language +1307.5340 Theory +1307.5341 Theory +1307.5424 Probability +1307.5461 +1307.5562 Cosmology and Nongalactic Astrophysics +1307.5569 Optics +1307.5589 Solar and Stellar Astrophysics +1307.5612 Computational Geometry +1307.5805 Phenomenology +1307.5817 Functional Analysis +1307.5835 Complex Variables +1307.5837 Information Theory +1307.5838 Neural and Evolutionary Computing +1307.5839 Neural and Evolutionary Computing +1307.5840 Neural and Evolutionary Computing +1307.5841 Classical Analysis and ODEs +1307.5842 Earth and Planetary Astrophysics +1307.5859 Superconductivity +1307.5862 Geometric Topology +1307.5866 Computational Physics +1307.5876 Probability +1307.5878 Cell Behavior +1307.5881 Probability +1307.5883 Functional Analysis +1307.5889 Group Theory +1307.5890 Operator Algebras +1307.5894 Databases +1307.5897 Combinatorics +1307.5902 Algebraic Geometry +1307.5903 Optimization and Control +1307.5905 Instrumentation and Methods for Astrophysics +1307.5906 Information Theory +1307.5908 Populations and Evolution +1307.5910 Artificial Intelligence +1307.5912 Number Theory +1307.5917 Classical Physics +1307.5920 Dynamical Systems +1307.5921 Solar and Stellar Astrophysics +1307.5926 Soft Condensed Matter +1307.5927 Differential Geometry +1307.5928 Methodology +1307.5929 Methodology +1307.5931 Combinatorics +1307.5938 Materials Science +1307.5940 Materials Science +1307.5943 Accelerator Physics +1307.5947 +1307.5954 Superconductivity +1307.5960 Superconductivity +1307.5962 Statistics Theory +1307.5963 Analysis of PDEs +1307.5965 Statistics Theory +1307.5969 Category Theory +1307.5971 Statistics Theory +1307.5972 Mesoscale and Nanoscale Physics +1307.5974 Mesoscale and Nanoscale Physics +1307.5975 General Finance +1307.5976 Statistics Theory +1307.5977 Logic +1307.5982 Statistics Theory +1307.5986 Classical Physics +1307.5987 +1307.5989 Quantum Gases +1307.5990 Statistics Theory +1307.5993 Phenomenology +1307.5998 Quantum Gases +1307.5999 Classical Analysis and ODEs +1307.6003 High Energy Astrophysical Phenomena +1307.6008 Computer Vision and Pattern Recognition +1307.6013 Representation Theory +1307.6014 Algebraic Geometry +1307.6017 Fluid Dynamics +1307.6020 Pricing of Securities +1307.6022 Strongly Correlated Electrons +1307.6023 Artificial Intelligence +1307.6029 Combinatorics +1307.6030 Analysis of PDEs +1307.6033 Information Theory +1307.6039 Numerical Analysis +1307.6040 Differential Geometry +1307.6041 +1307.6043 Populations and Evolution +1307.6044 Statistics Theory +1307.6049 Physics Education +1307.6050 Probability +1307.6051 Soft Condensed Matter +1307.6059 Information Theory +1307.6061 +1307.6066 Distributed, Parallel, and Cluster Computing +1307.6068 High Energy Astrophysical Phenomena +1307.6074 High Energy Astrophysical Phenomena +1307.6075 Chemical Physics +1307.6076 Complex Variables +1307.6078 Instrumentation and Detectors +1307.6082 Cryptography and Security +1307.6083 +1307.6085 Algebraic Geometry +1307.6094 Astrophysics of Galaxies +1307.6100 Instrumentation and Methods for Astrophysics +1307.6101 Lattice +1307.6104 Strongly Correlated Electrons +1307.6107 Rings and Algebras +1307.6108 +1307.6111 Statistical Mechanics +1307.6112 Solar and Stellar Astrophysics +1307.6114 Experiment +1307.6118 Functional Analysis +1307.6127 Computation +1307.6129 Phenomenology +1307.6133 Phenomenology +1307.6137 Differential Geometry +1307.6144 Physics Education +1307.6145 Social and Information Networks +1307.6146 Differential Geometry +1307.6151 Functional Analysis +1307.6155 Combinatorics +1307.6156 Cosmology and Nongalactic Astrophysics +1307.6160 Biomolecules +1307.6161 Theory +1307.6164 Complex Variables +1307.6171 +1307.6179 Atmospheric and Oceanic Physics +1307.6183 Biological Physics +1307.6185 Accelerator Physics +1307.6191 Earth and Planetary Astrophysics +1307.6192 Combinatorics +1307.6194 Analysis of PDEs +1307.6198 +1307.6199 Statistical Mechanics +1307.6200 Number Theory +1307.6202 Complex Variables +1307.6205 Classical Analysis and ODEs +1307.6206 Commutative Algebra +1307.6207 Solar and Stellar Astrophysics +cond-mat/0412048 Mesoscale and Nanoscale Physics +cond-mat/0503687 Mesoscale and Nanoscale Physics +physics/0610068 Optics +0704.0837 Theory +0801.1442 +1001.4928 Combinatorics +1004.1999 Information Theory +1004.5099 High Energy Astrophysical Phenomena +1005.2936 Functional Analysis +1005.3213 Mesoscale and Nanoscale Physics +1008.3706 Earth and Planetary Astrophysics +1011.2998 Neurons and Cognition +1012.5800 Algebraic Geometry +1103.6122 Functional Analysis +1104.3960 Functional Analysis +1104.5531 Probability +1106.4255 Number Theory +1107.5566 Analysis of PDEs +1108.2969 Symplectic Geometry +1108.4624 Number Theory +1109.0017 Strongly Correlated Electrons +1109.2569 Other Condensed Matter +1109.6406 Statistics Theory +1110.4060 Algebraic Geometry +1201.4095 Mesoscale and Nanoscale Physics +1202.0515 Machine Learning +1203.5025 Materials Science +1203.5620 Disordered Systems and Neural Networks +1205.4344 Combinatorics +1206.1055 Strongly Correlated Electrons +1206.4089 Analysis of PDEs +1206.6216 +1207.0290 Information Theory +1207.5408 Mesoscale and Nanoscale Physics +1207.6087 Computer Science and Game Theory +1207.6362 +1207.6568 Probability +1208.0608 Strongly Correlated Electrons +1208.2175 Computational Engineering, Finance, and Science +1208.2196 Functional Analysis +1208.2998 Phenomenology +1208.3698 Cosmology and Nongalactic Astrophysics +1209.0870 +1209.2317 +1209.4721 Exactly Solvable and Integrable Systems +1209.5416 Phenomenology +1210.1166 Group Theory +1210.7652 Cosmology and Nongalactic Astrophysics +1210.7821 Strongly Correlated Electrons +1211.0328 Combinatorics +1211.0717 Group Theory +1211.2368 Representation Theory +1211.3670 Differential Geometry +1212.2194 +1212.3042 Quantum Gases +1212.5046 +1212.6590 Phenomenology +1301.3133 Cosmology and Nongalactic Astrophysics +1301.3146 +1301.3934 Tissues and Organs +1301.4426 Mesoscale and Nanoscale Physics +1301.6095 +1301.6142 Superconductivity +1301.6396 Superconductivity +1302.0080 +1302.0467 Astrophysics of Galaxies +1302.3280 Analysis of PDEs +1302.3677 Mesoscale and Nanoscale Physics +1302.4316 Disordered Systems and Neural Networks +1302.5705 Solar and Stellar Astrophysics +1303.0202 Superconductivity +1303.0286 High Energy Astrophysical Phenomena +1303.1989 +1303.2433 +1303.2503 Physics and Society +1303.3135 Functional Analysis +1303.3661 Physics and Society +1303.3790 General Physics +1303.4420 +1303.5333 Rings and Algebras +1303.7039 Information Theory +1303.7061 Experiment +1304.2675 Phenomenology +1304.3008 Physics and Society +1304.3490 Superconductivity +1304.5238 High Energy Astrophysical Phenomena +1304.7495 Experiment +1304.7599 Statistical Mechanics +1305.0211 Superconductivity +1305.1573 Neurons and Cognition +1305.2390 Experiment +1305.2634 Methodology +1305.3593 Optics +1305.4009 +1305.5596 Experiment +1305.5621 Pricing of Securities +1305.6030 Superconductivity +1305.6630 Superconductivity +1306.1817 Mesoscale and Nanoscale Physics +1306.2546 Cosmology and Nongalactic Astrophysics +1306.4199 High Energy Astrophysical Phenomena +1306.5775 Strongly Correlated Electrons +1306.5814 +1306.6023 Distributed, Parallel, and Cluster Computing +1306.6873 +1307.2018 Human-Computer Interaction +1307.2041 Probability +1307.3002 Strongly Correlated Electrons +1307.5580 Cosmology and Nongalactic Astrophysics +1307.7182 Cosmology and Nongalactic Astrophysics +1308.0195 High Energy Astrophysical Phenomena +1308.0972 Chemical Physics +1308.1619 Phenomenology +1308.2052 Phenomenology +1308.4325 Analysis of PDEs +1308.4409 Phenomenology +1308.4419 Classical Analysis and ODEs +1308.4421 Tissues and Organs +1308.4422 Spectral Theory +1308.4426 Space Physics +1308.4428 Phenomenology +1308.4429 Functional Analysis +1308.4430 Analysis of PDEs +1308.4431 Combinatorics +1308.4433 Biomolecules +1308.4439 Algebraic Geometry +1308.4440 Computer Vision and Pattern Recognition +1308.4448 Solar and Stellar Astrophysics +1308.4450 Optimization and Control +1308.4454 Numerical Analysis +1308.4462 Methodology +1308.4465 Networking and Internet Architecture +1308.4469 Data Structures and Algorithms +1308.4470 +1308.4473 Phenomenology +1308.4474 Materials Science +1308.4479 Computation and Language +1308.4480 Superconductivity +1308.4481 Statistical Mechanics +1308.4482 +1308.4483 Materials Science +1308.4484 Combinatorics +1308.4485 Computers and Society +1308.4486 Other Computer Science +1308.4487 Materials Science +1308.4490 Algebraic Geometry +1308.4499 Information Theory +1308.4500 Group Theory +1308.4501 Networking and Internet Architecture +1308.4506 Neural and Evolutionary Computing +1308.4509 Phenomenology +1308.4512 Lattice +1308.4516 Formal Languages and Automata Theory +1308.4518 Phenomenology +1308.4519 Strongly Correlated Electrons +1308.4520 Probability +1308.4522 Dynamical Systems +1308.4523 +1308.4524 Strongly Correlated Electrons +1308.4528 Number Theory +1308.4530 Atmospheric and Oceanic Physics +1308.4537 Instrumentation and Detectors +1308.4538 Operator Algebras +1308.4539 Materials Science +1308.4540 Logic +1308.4541 Materials Science +1308.4542 Materials Science +1308.4543 Materials Science +1308.4549 +1308.4553 Analysis of PDEs +1308.4554 Metric Geometry +1308.4558 Lattice +1308.4560 Information Theory +1308.4562 Analysis of PDEs +1308.4566 +1308.4571 Classical Analysis and ODEs +1308.4572 Information Theory +1308.4575 General Physics +1308.4580 Rings and Algebras +1308.4586 Atomic Physics +1308.4590 Materials Science +1308.4593 Optics +1308.4599 Geometric Topology +1308.4600 High Energy Astrophysical Phenomena +1308.4601 Computation +1308.4603 Algebraic Geometry +1308.4613 Combinatorics +1308.4617 Rings and Algebras +1308.4618 Computation and Language +1308.4619 Physics Education +1308.4621 Algebraic Topology +1308.4623 Optics +1308.4624 Rings and Algebras +1308.4626 Probability +1308.4628 Representation Theory +1308.4635 +1308.4637 Number Theory +1308.4639 Phenomenology +1308.4642 Soft Condensed Matter +1308.4643 Social and Information Networks +1308.4650 Rings and Algebras +1308.4652 Phenomenology +1308.4656 Metric Geometry +1308.4657 General Mathematics +1308.4659 Commutative Algebra +1308.4671 Materials Science +1308.4672 Emerging Technologies +1308.4675 Neural and Evolutionary Computing +math/0411437 Probability +0709.3180 Disordered Systems and Neural Networks +0711.4344 Biomolecules +0806.1029 Biomolecules +0808.2376 Theory +0812.0086 Superconductivity +0905.4401 +0906.2055 Astrophysics of Galaxies +0908.3715 Networking and Internet Architecture +0912.5507 Machine Learning +1002.2242 Optimization and Control +1003.0890 Combinatorics +1005.1975 +1005.5063 Information Theory +1006.2012 Pricing of Securities +1006.3392 Cosmology and Nongalactic Astrophysics +1006.5340 Differential Geometry +1008.0257 Differential Geometry +1008.3658 Analysis of PDEs +1008.4856 Dynamical Systems +1009.0488 Number Theory +1009.2975 +1010.3885 General Physics +1011.1703 Methodology +1011.4548 Superconductivity +1011.6554 Combinatorics +1012.0351 Numerical Analysis +1012.2436 Superconductivity +1101.2020 Cosmology and Nongalactic Astrophysics +1105.0016 Strongly Correlated Electrons +1105.3968 Algebraic Topology +1106.1071 Numerical Analysis +1106.1726 Materials Science +1106.5231 +1107.2128 Phenomenology +1107.2135 Theory +1107.3712 Analysis of PDEs +1108.2140 Superconductivity +1108.4273 Theory +1108.5964 Combinatorics +1108.5978 Other Condensed Matter +1109.2936 Numerical Analysis +1109.4928 Computational Engineering, Finance, and Science +1110.0058 Numerical Analysis +1110.1192 Analysis of PDEs +1110.2843 Theory +1110.3518 Analysis of PDEs +1110.6535 Cosmology and Nongalactic Astrophysics +1110.6595 +1111.0038 Plasma Physics +1111.3584 Computational Geometry +1111.6050 Materials Science +1111.6712 Combinatorics +1111.6796 Complex Variables +1112.4951 Statistics Theory +1112.5554 Differential Geometry +1112.5607 Materials Science +1201.0934 Functional Analysis +1201.2001 Classical Analysis and ODEs +1201.6051 Classical Physics +1201.6076 Commutative Algebra +1201.6447 Fluid Dynamics +1202.1243 Molecular Networks +1202.1828 Mesoscale and Nanoscale Physics +1202.5288 Phenomenology +1203.1727 Strongly Correlated Electrons +1203.2171 Combinatorics +1203.3610 Differential Geometry +1203.4305 +1203.4592 Information Theory +1203.5417 Algebraic Geometry +1204.6087 Methodology +1205.0198 Phenomenology +1205.1981 Strongly Correlated Electrons +1205.2397 Theory +1205.3512 Cosmology and Nongalactic Astrophysics +1205.3681 Theory +1205.4568 Analysis of PDEs +1205.6038 Geometric Topology +1205.6552 +1206.0346 Probability +1206.0763 +1206.4000 Statistics Theory +1206.4182 Algebraic Geometry +1206.4751 Number Theory +1206.5704 Probability +1206.6013 Chemical Physics +1206.6266 Statistical Mechanics +1206.7011 Optics +1207.0238 Statistical Mechanics +1207.0257 Soft Condensed Matter +1207.0460 Theory +1207.0658 Data Analysis, Statistics and Probability +1207.1799 Other Condensed Matter +1207.2429 Phenomenology +1207.3248 +1207.3379 +1207.5237 Theory +1207.5485 +1207.7000 Chaotic Dynamics +1207.7228 Neurons and Cognition +1208.0374 Combinatorics +1208.1475 Pattern Formation and Solitons +1208.1865 +1208.2023 Mesoscale and Nanoscale Physics +1208.3869 Strongly Correlated Electrons +1208.4743 Networking and Internet Architecture +1208.5246 Computational Physics +1208.6384 Probability +1209.1426 Information Theory +1209.6302 Phenomenology +1210.0119 +1210.2843 Mesoscale and Nanoscale Physics +1210.3372 +1210.3761 Logic in Computer Science +1210.3982 Mesoscale and Nanoscale Physics +1210.4054 Cosmology and Nongalactic Astrophysics +1210.4631 Rings and Algebras +1210.4693 Differential Geometry +1210.5060 +1210.5244 Quantum Gases +1210.5325 Commutative Algebra +1210.5530 +1210.6755 Phenomenology +1210.6819 Information Theory +1210.7818 Cosmology and Nongalactic Astrophysics +1211.0016 Quantum Gases +1211.1152 Algebraic Geometry +1211.1253 Physics Education +1211.1810 Statistical Mechanics +1211.1966 Theory +1211.3660 Complex Variables +1211.4487 Emerging Technologies +1211.4515 Mesoscale and Nanoscale Physics +1211.5024 +1211.5393 Dynamical Systems +1211.5788 +1211.5938 Computer Science and Game Theory +1211.6391 Theory +1211.6393 Lattice +1211.6570 Mesoscale and Nanoscale Physics +1212.0055 Strongly Correlated Electrons +1212.0494 +1212.0727 Analysis of PDEs +1212.0847 Materials Science +1212.1489 Strongly Correlated Electrons +1212.2427 +1212.2555 Populations and Evolution +1212.2639 Cosmology and Nongalactic Astrophysics +1212.2846 Cellular Automata and Lattice Gases +1212.4518 Mesoscale and Nanoscale Physics +1212.4785 Phenomenology +1212.4794 Data Analysis, Statistics and Probability +1212.4878 Strongly Correlated Electrons +1212.5234 Theory +1212.5241 Phenomenology +1212.5880 Distributed, Parallel, and Cluster Computing +1212.5932 Quantitative Methods +1212.6541 Phenomenology +1212.6864 Phenomenology +1301.0222 Theory +1301.0329 Phenomenology +1301.0449 Optics +1301.0908 Numerical Analysis +1301.1314 Materials Science +1301.1520 Statistical Mechanics +1301.1717 Statistics Theory +1301.2069 Operator Algebras +1301.2127 Instrumentation and Detectors +1301.3796 Theory +1301.3908 Strongly Correlated Electrons +1301.4363 Mesoscale and Nanoscale Physics +1301.4699 +1301.5982 +1301.6998 Probability +1302.0636 Dynamical Systems +1302.0737 Mesoscale and Nanoscale Physics +1302.2298 Strongly Correlated Electrons +1302.3892 Physics and Society +1302.4456 High Energy Astrophysical Phenomena +1302.4590 +1302.4610 Mesoscale and Nanoscale Physics +1302.4833 +1302.4844 Probability +1302.4883 Operator Algebras +1303.0409 Differential Geometry +1303.0716 Number Theory +1303.0863 Solar and Stellar Astrophysics +1303.1823 High Energy Astrophysical Phenomena +1303.2271 High Energy Astrophysical Phenomena +1303.2436 +1303.2829 +1303.3395 Analysis of PDEs +1303.3449 Combinatorics +1303.4889 Superconductivity +1303.5218 Number Theory +1303.5446 Cosmology and Nongalactic Astrophysics +1303.6106 Multiagent Systems +1303.6144 Cosmology and Nongalactic Astrophysics +1303.6215 Solar and Stellar Astrophysics +1303.6388 Information Theory +1303.7390 Computer Vision and Pattern Recognition +1304.0047 +1304.0255 Phenomenology +1304.1227 Combinatorics +1304.1236 Functional Analysis +1304.1301 Phenomenology +1304.1402 Artificial Intelligence +1304.1582 History and Philosophy of Physics +1304.1590 Data Structures and Algorithms +1304.1593 Theory +1304.1610 Superconductivity +1304.1701 +1304.1818 Medical Physics +1304.1819 Artificial Intelligence +1304.1821 Portfolio Management +1304.1825 High Energy Astrophysical Phenomena +1304.1826 Probability +1304.1827 Artificial Intelligence +1304.1828 Information Theory +1304.1831 Probability +1304.1832 Number Theory +1304.1834 Quantitative Methods +1304.1835 Programming Languages +1304.1841 Complex Variables +1304.1845 Social and Information Networks +1304.1847 Combinatorics +1304.1848 Optics +1304.1856 Rings and Algebras +1304.1859 Numerical Analysis +1304.1861 Combinatorics +1304.1863 Performance +1304.1867 Phenomenology +1304.1868 Materials Science +1304.1870 Geometric Topology +1304.1877 Databases +1304.1883 Optics +1304.1885 Geometric Topology +1304.1892 +1304.1895 Physics Education +1304.1897 Strongly Correlated Electrons +1304.1898 Physics and Society +1304.1900 Discrete Mathematics +1304.1901 Materials Science +1304.1902 Formal Languages and Automata Theory +1304.1903 Computational Physics +1304.1906 Differential Geometry +1304.1907 Analysis of PDEs +1304.1908 Analysis of PDEs +1304.1911 Superconductivity +1304.1916 Data Structures and Algorithms +1304.1920 Methodology +1304.1922 Rings and Algebras +1304.1923 Differential Geometry +1304.1924 Information Retrieval +1304.1925 Solar and Stellar Astrophysics +1304.1930 Computer Vision and Pattern Recognition +1304.1932 Information Theory +1304.1935 Information Theory +1304.1936 Soft Condensed Matter +1304.1944 Number Theory +1304.1956 Solar and Stellar Astrophysics +1304.1962 Information Theory +1304.1963 Networking and Internet Architecture +1304.1964 Probability +1304.1972 Computer Vision and Pattern Recognition +1304.1979 Physics and Society +1304.1980 Astrophysics of Galaxies +1304.1981 Networking and Internet Architecture +1304.1982 Combinatorics +1304.1984 Information Theory +1304.1986 Computational Geometry +1304.1987 Exactly Solvable and Integrable Systems +1304.1989 Analysis of PDEs +1304.1991 Functional Analysis +1304.1994 Phenomenology +1304.1996 Computational Complexity +1304.2001 Probability +1304.2003 Complex Variables +1304.2004 Complex Variables +1304.2010 Numerical Analysis +1304.2011 Theory +1304.2012 Analysis of PDEs +1304.2014 Dynamical Systems +1304.2015 Other Computer Science +1304.2016 Probability +1304.2017 Medical Physics +1304.2019 Probability +1304.2021 Solar and Stellar Astrophysics +1304.2023 Solar and Stellar Astrophysics +1304.2026 Computational Complexity +1304.2029 Statistical Mechanics +1304.2031 Computers and Society +1304.2032 Digital Libraries +1304.2033 Networking and Internet Architecture +1304.2034 Statistical Mechanics +1304.2035 Networking and Internet Architecture +1304.2036 Theory +1304.2037 Theory +1304.2039 Solar and Stellar Astrophysics +1304.2047 Phenomenology +1304.2049 Statistical Mechanics +1304.2050 Emerging Technologies +1304.2053 Instrumentation and Detectors +1304.2054 Quantitative Methods +1304.2058 Data Analysis, Statistics and Probability +1304.2063 Rings and Algebras +1304.2064 High Energy Astrophysical Phenomena +1304.2069 Methodology +1304.2073 +1304.2074 Numerical Analysis +1304.2077 Data Structures and Algorithms +1304.2080 Software Engineering +1304.2083 Instrumentation and Detectors +1304.2091 Lattice +1304.2092 Logic +1304.2094 Cryptography and Security +1304.2096 Functional Analysis +1304.2097 Neural and Evolutionary Computing +1304.2102 Superconductivity +1304.2103 Information Theory +1304.2107 Optimization and Control +1304.2109 Computer Vision and Pattern Recognition +1304.2110 Data Structures and Algorithms +1304.2112 Networking and Internet Architecture +1304.2115 Soft Condensed Matter +1304.2119 Materials Science +1304.2126 Physics and Society +1304.2130 Soft Condensed Matter +1304.2133 Computer Vision and Pattern Recognition +1304.2137 History and Overview +1304.2138 +1304.2141 Pricing of Securities +1304.2143 Phenomenology +1304.2144 Data Structures and Algorithms +1304.2145 Number Theory +1304.2146 Soft Condensed Matter +1304.2148 Accelerator Physics +1304.2150 Materials Science +1304.2151 Combinatorics +1304.2152 Optimization and Control +1304.2155 +1304.2156 Solar and Stellar Astrophysics +1304.2163 Dynamical Systems +1304.2166 +1304.2170 Computational Engineering, Finance, and Science +1304.2172 Information Theory +1304.2173 Experiment +1304.2179 Probability +1304.2180 Statistics Theory +1304.2182 Dynamical Systems +1304.2184 Databases +1304.2189 Experiment +1304.2193 Operator Algebras +1304.2195 Probability +1304.2205 Materials Science +1304.2215 Combinatorics +1304.2219 Statistical Mechanics +1304.2224 Experiment +1304.2225 +1304.2227 Materials Science +1304.2229 Rings and Algebras +1304.2233 Systems and Control +1304.2237 Differential Geometry +1304.2241 Representation Theory +1304.2242 Differential Geometry +1304.2244 Computer Science and Game Theory +1304.2249 Phenomenology +1304.2254 Number Theory +1304.2260 Probability +1304.2262 Solar and Stellar Astrophysics +1304.2265 Numerical Analysis +1304.2266 Neurons and Cognition +1304.2268 Systems and Control +1304.2276 Numerical Analysis +1304.2277 General Physics +1304.2278 +1304.2285 General Physics +1304.2292 Cosmology and Nongalactic Astrophysics +1304.2293 Methodology +1304.2296 Analysis of PDEs +1304.2300 Discrete Mathematics +1304.2301 Populations and Evolution +1304.2302 Machine Learning +1304.2306 High Energy Astrophysical Phenomena +1304.2308 High Energy Astrophysical Phenomena +1304.2310 Computer Vision and Pattern Recognition +1304.2312 Applications +1304.2313 Databases +1304.2316 +1304.2317 Solar and Stellar Astrophysics +1304.2320 Fluid Dynamics +1304.2324 Populations and Evolution +1304.2325 Strongly Correlated Electrons +1304.2326 Software Engineering +1304.2328 +1304.2329 Optimization and Control +nlin/0103001 Chaotic Dynamics +0709.3498 +0903.1012 Neurons and Cognition +0905.1310 +0906.2930 Rings and Algebras +0909.1208 +0911.1412 Logic in Computer Science +0912.1386 +1001.0075 K-Theory and Homology +1003.3522 Representation Theory +1003.3919 Combinatorics +1003.3973 Algebraic Geometry +1003.4108 Rings and Algebras +1003.5176 Functional Analysis +1005.4390 Probability +1009.3795 +1009.5625 +1010.2187 Algebraic Geometry +1101.2589 Combinatorics +1101.3083 Probability +1102.2983 Optics +1103.0748 Functional Analysis +1103.0997 Functional Analysis +1103.6000 Number Theory +1104.2212 +1104.2490 Algebraic Geometry +1104.3294 Group Theory +1105.2180 Analysis of PDEs +1105.4472 Algebraic Geometry +1107.1112 Geometric Topology +1107.3578 K-Theory and Homology +1108.0887 Phenomenology +1108.2542 Metric Geometry +1108.3277 Rings and Algebras +1108.5542 +1109.5416 Programming Languages +1109.6365 Chaotic Dynamics +1110.1663 Optics +1110.2061 Differential Geometry +1110.3165 Mesoscale and Nanoscale Physics +1110.3895 Adaptation and Self-Organizing Systems +1110.5627 History and Overview +1110.6630 Metric Geometry +1111.6052 +1111.6940 Cosmology and Nongalactic Astrophysics +1112.1687 Information Theory +1112.5019 Representation Theory +1201.2245 Symplectic Geometry +1201.2684 +1201.2756 Optimization and Control +1202.4165 Symplectic Geometry +1202.4869 Analysis of PDEs +1202.5254 Cosmology and Nongalactic Astrophysics +1203.1732 Soft Condensed Matter +1203.6860 Differential Geometry +1204.0705 Combinatorics +1204.3209 Dynamical Systems +1204.4227 Information Theory +1204.4714 Computational Geometry +1204.5117 +1204.5397 Optics +1204.6013 Analysis of PDEs +1204.6141 +1204.6618 Probability +1205.0095 Functional Analysis +1205.3000 +1205.3262 Complex Variables +1205.3678 Commutative Algebra +1205.4537 +1206.0424 Number Theory +1206.0581 Differential Geometry +1206.1167 Analysis of PDEs +1206.1581 Mesoscale and Nanoscale Physics +1206.2431 Soft Condensed Matter +1207.1928 +1207.2101 Chemical Physics +1207.3166 Phenomenology +1207.4389 Strongly Correlated Electrons +1207.5083 Soft Condensed Matter +1208.0848 Learning +1208.1054 Molecular Networks +1208.1511 Superconductivity +1208.1638 +1208.1727 Algebraic Geometry +1208.2803 Representation Theory +1208.3156 +1208.3619 Quantitative Methods +1208.4755 Functional Analysis +1208.5925 Popular Physics +1208.6268 Computation and Language +1209.0383 Superconductivity +1209.0745 Physics Education +1209.2180 Popular Physics +1209.2209 +1209.2885 Metric Geometry +1209.3380 Probability +1209.4334 Superconductivity +1209.4656 Group Theory +1209.4680 Optics +1209.4715 Optics +1209.4738 Mesoscale and Nanoscale Physics +1209.5127 Symbolic Computation +1209.5689 Analysis of PDEs +1209.6418 Algebraic Geometry +1209.6533 +1209.6618 +1210.1195 Mesoscale and Nanoscale Physics +1210.1631 Spectral Theory +1210.3220 Mesoscale and Nanoscale Physics +1210.4496 Lattice +1210.4853 Computer Science and Game Theory +1210.5579 Representation Theory +1210.6036 Phenomenology +1210.6381 Materials Science +1210.6434 Solar and Stellar Astrophysics +1210.6662 Soft Condensed Matter +1210.6941 Mesoscale and Nanoscale Physics +1210.8143 Strongly Correlated Electrons +1210.8327 Materials Science +1211.0122 Information Theory +1211.0413 Biomolecules +1211.0903 Earth and Planetary Astrophysics +1211.1489 Populations and Evolution +1211.1952 Theory +1211.2008 +1211.2631 +1211.4915 Mesoscale and Nanoscale Physics +1211.5071 Plasma Physics +1211.5200 Superconductivity +1211.6872 Rings and Algebras +1211.7217 +1212.0008 +1212.0704 Statistical Mechanics +1212.0827 Geometric Topology +1212.2313 +1212.2382 +1212.3164 Superconductivity +1212.3516 Geophysics +1212.3826 Mesoscale and Nanoscale Physics +1212.4809 Phenomenology +1212.5658 Cosmology and Nongalactic Astrophysics +1301.0332 Geometric Topology +1301.1402 Chemical Physics +1301.1844 Quantum Algebra +1301.3206 +1301.3735 Strongly Correlated Electrons +1301.4242 Cosmology and Nongalactic Astrophysics +1301.6303 +1301.6552 Cosmology and Nongalactic Astrophysics +1301.7185 +1301.7464 Information Theory +1301.7708 Theory +1302.0481 Statistical Mechanics +1302.1976 +1302.3309 Computer Science and Game Theory +1302.4024 Physics and Society +1302.4147 Information Theory +1302.4461 Commutative Algebra +1302.4996 Materials Science +1302.5033 Number Theory +1302.5101 Cryptography and Security +1302.5198 Computers and Society +1302.5212 Differential Geometry +1302.5461 Differential Geometry +1302.5491 Human-Computer Interaction +1302.5509 Strongly Correlated Electrons +1302.5512 Algebraic Topology +1302.5685 Earth and Planetary Astrophysics +1302.5692 Category Theory +1302.5698 Mesoscale and Nanoscale Physics +1302.5708 Number Theory +1302.5711 Combinatorics +1302.5714 Methodology +1302.5715 High Energy Astrophysical Phenomena +1302.5717 Instrumentation and Methods for Astrophysics +1302.5719 Metric Geometry +1302.5720 Instrumentation and Methods for Astrophysics +1302.5727 Complex Variables +1302.5728 Number Theory +1302.5735 +1302.5736 Combinatorics +1302.5738 Instrumentation and Methods for Astrophysics +1302.5741 Combinatorics +1302.5750 +1302.5751 Materials Science +1302.5752 Commutative Algebra +1302.5754 Discrete Mathematics +1302.5755 Discrete Mathematics +1302.5758 Mesoscale and Nanoscale Physics +1302.5771 Space Physics +1302.5772 Space Physics +1302.5773 Dynamical Systems +1302.5774 Lattice +1302.5775 Combinatorics +1302.5776 Rings and Algebras +1302.5777 Combinatorics +1302.5778 Combinatorics +1302.5779 Operator Algebras +1302.5780 Materials Science +1302.5781 Operator Algebras +1302.5782 +1302.5784 Operator Algebras +1302.5785 Analysis of PDEs +1302.5786 Instrumentation and Methods for Astrophysics +1302.5788 Software Engineering +1302.5789 Functional Analysis +1302.5790 Functional Analysis +1302.5791 Complex Variables +1302.5794 Physics and Society +1302.5795 Theory +1302.5797 Learning +1302.5798 Programming Languages +1302.5800 Complex Variables +1302.5801 Biomolecules +1302.5806 Analysis of PDEs +1302.5809 Optimization and Control +1302.5811 Algebraic Geometry +1302.5812 Analysis of PDEs +1302.5814 Algebraic Geometry +1302.5815 Combinatorics +1302.5817 +1302.5818 Classical Analysis and ODEs +1302.5819 Rings and Algebras +1302.5820 Data Structures and Algorithms +1302.5823 Analysis of PDEs +1302.5824 Artificial Intelligence +1302.5825 Rings and Algebras +1302.5835 Disordered Systems and Neural Networks +1302.5837 Commutative Algebra +1302.5838 Fluid Dynamics +1302.5842 +1302.5847 Applications +1302.5849 Methodology +1302.5850 Fluid Dynamics +1302.5851 Distributed, Parallel, and Cluster Computing +1302.5853 Fluid Dynamics +1302.5856 Methodology +1302.5857 Applications +1302.5858 Mesoscale and Nanoscale Physics +1302.5860 Information Theory +1302.5861 Adaptation and Self-Organizing Systems +1302.5863 Instrumentation and Methods for Astrophysics +1302.5867 Systems and Control +1302.5869 Genomics +1302.5871 Data Structures and Algorithms +1302.5872 Information Theory +1302.5876 Materials Science +1302.5878 Physics and Society +1302.5879 Differential Geometry +1302.5886 Symplectic Geometry +1302.5889 Discrete Mathematics +1302.5890 Statistics Theory +1302.5894 Computer Vision and Pattern Recognition +1302.5896 Metric Geometry +1302.5899 Experiment +1302.5900 Optimization and Control +1302.5909 Physics and Society +1302.5912 Solar and Stellar Astrophysics +1302.5913 Data Structures and Algorithms +1302.5914 Networking and Internet Architecture +1302.5919 Commutative Algebra +1302.5920 Operator Algebras +1302.5921 +1302.5922 Operator Algebras +1302.5923 Analysis of PDEs +1302.5926 Operator Algebras +1302.5929 Networking and Internet Architecture +1302.5933 Quantum Gases +1302.5935 +1302.5936 Information Theory +1302.5938 Probability +1302.5940 Metric Geometry +1302.5941 Computational Engineering, Finance, and Science +1302.5942 Computational Engineering, Finance, and Science +1302.5945 Networking and Internet Architecture +1302.5946 Algebraic Geometry +1302.5949 Combinatorics +1302.5950 +1302.5952 Soft Condensed Matter +1302.5953 Dynamical Systems +1302.5954 Representation Theory +1302.5955 Information Theory +1302.5957 Computer Vision and Pattern Recognition +1302.5958 Information Theory +1302.5959 +1302.5960 Information Theory +1302.5962 Analysis of PDEs +1302.5963 Combinatorics +1302.5966 Trading and Market Microstructure +1302.5971 Probability +1302.5974 Symbolic Computation +1302.5975 Information Theory +1302.5977 Differential Geometry +1302.5981 Experiment +1302.5983 Differential Geometry +1302.5984 Number Theory +1302.5985 Computer Vision and Pattern Recognition +1302.5986 +1302.5988 Functional Analysis +1302.5989 +1302.5993 Soft Condensed Matter +1302.5995 Numerical Analysis +1302.5997 Symbolic Computation +1302.5998 Materials Science +1302.5999 Distributed, Parallel, and Cluster Computing +1302.6000 Analysis of PDEs +1302.6001 Probability +1302.6004 Numerical Analysis +1302.6005 +1302.6008 Cosmology and Nongalactic Astrophysics +1302.6009 Learning +1302.6011 Pricing of Securities +1302.6016 General Physics +1302.6018 Materials Science +1302.6019 Functional Analysis +1302.6023 Optimization and Control +1302.6025 +1302.6026 Analysis of PDEs +1302.6027 Quantum Gases +1302.6028 +1302.6029 Probability +1302.6030 Computational Engineering, Finance, and Science +1302.6031 Sound +1302.6035 Instrumentation and Detectors +1302.6038 Representation Theory +1302.6040 Instrumentation and Methods for Astrophysics +1302.6046 Representation Theory +1302.6047 Probability +1302.6054 Numerical Analysis +1302.6055 Functional Analysis +1302.6068 Exactly Solvable and Integrable Systems +1302.6070 Instrumentation and Methods for Astrophysics +1302.6081 Fluid Dynamics +1302.6087 Lattice +1302.6088 Methodology +1302.6093 Functional Analysis +1302.6094 Number Theory +1302.6096 Group Theory +1302.6097 Number Theory +1302.6099 Chemical Physics +1302.6100 Plasma Physics +1302.6102 Statistics Theory +1302.6106 Functional Analysis +1302.6111 +1302.6117 High Energy Astrophysical Phenomena +1302.6120 Pricing of Securities +1302.6125 Experiment +1302.6130 Geometric Topology +1302.6133 Phenomenology +1302.6137 Superconductivity +1302.6149 Robotics +1302.6153 General Physics +1302.6156 Networking and Internet Architecture +1302.6161 Statistics Theory +1302.6163 +1302.6171 Plasma Physics +1302.6176 Soft Condensed Matter +1302.6177 Materials Science +1302.6182 Computation +1302.6188 Solar and Stellar Astrophysics +1302.6189 Numerical Analysis +1302.6194 Sound +1302.6195 Phenomenology +1302.6212 General Finance +1302.6213 High Energy Astrophysical Phenomena +1302.6214 Artificial Intelligence +1302.6215 Phenomenology +1302.6217 Theory +1302.6221 Cosmology and Nongalactic Astrophysics +cond-mat/0702590 Statistical Mechanics +math-ph/0508007 +math-ph/0604020 +math-ph/0611081 +math/9807071 Algebraic Topology +quant-ph/0703029 +0705.3349 Differential Geometry +0712.2498 Algebraic Geometry +1001.0329 Logic +1003.3824 Superconductivity +1004.2872 Differential Geometry +1006.1482 Algebraic Geometry +1007.1815 Algebraic Geometry +1010.5096 Algebraic Geometry +1011.3424 Number Theory +1012.1349 Earth and Planetary Astrophysics +1103.0729 Classical Analysis and ODEs +1104.2290 Algebraic Topology +1105.3888 Classical Analysis and ODEs +1105.5822 +1106.1295 +1108.3370 Geometric Topology +1109.2256 Group Theory +1109.2755 Superconductivity +1109.6490 Algebraic Geometry +1111.3542 Algebraic Geometry +1111.5323 Differential Geometry +1201.0694 Strongly Correlated Electrons +1201.4346 Chaotic Dynamics +1201.5707 Combinatorics +1204.1459 Analysis of PDEs +1204.3586 Statistical Mechanics +1204.3617 Geometric Topology +1204.5615 Representation Theory +1205.5877 Combinatorics +1206.4797 Mesoscale and Nanoscale Physics +1207.2054 Quantum Algebra +1210.4676 Numerical Analysis +1210.5398 Superconductivity +1211.3380 Dynamical Systems +1211.6111 Theory +1211.6861 General Physics +1212.3462 +1301.2248 Solar and Stellar Astrophysics +1301.3018 Atomic Physics +1301.6402 Atomic Physics +1301.7122 +1302.0162 Optics +1302.1215 Dynamical Systems +1302.2480 Disordered Systems and Neural Networks +1302.4226 Strongly Correlated Electrons +1302.6174 Cosmology and Nongalactic Astrophysics +1303.1296 Pricing of Securities +1303.1298 Pricing of Securities +1303.1299 Complex Variables +1303.1702 Data Analysis, Statistics and Probability +1303.4059 Solar and Stellar Astrophysics +1303.5568 Pattern Formation and Solitons +1304.0948 +1304.0989 High Energy Astrophysical Phenomena +1304.1247 Data Structures and Algorithms +1304.3380 Numerical Analysis +1305.0814 Probability +1305.1223 Phenomenology +1305.1577 Theory +1305.1800 Quantum Gases +1305.2068 +1305.2425 +1305.3523 Data Analysis, Statistics and Probability +1305.3800 +1305.4486 Numerical Analysis +1305.4666 Mesoscale and Nanoscale Physics +1305.5159 +1305.5182 Soft Condensed Matter +1305.5265 Astrophysics of Galaxies +1305.5338 Phenomenology +1305.6612 Phenomenology +1305.6965 +1305.7104 +1305.7180 Phenomenology +1306.1590 Algebraic Geometry +1306.2712 +1306.3007 Physics and Society +1306.4518 Theory +1306.4809 Numerical Analysis +1306.4873 Materials Science +1306.6563 Strongly Correlated Electrons +1306.6692 Cosmology and Nongalactic Astrophysics +1307.0530 Theory +1307.0550 Logic in Computer Science +1307.2060 Theory +1307.2279 Mesoscale and Nanoscale Physics +1307.2486 Materials Science +1307.2616 Mesoscale and Nanoscale Physics +1307.3097 Populations and Evolution +1307.3171 Statistical Mechanics +1307.3333 Mesoscale and Nanoscale Physics +1307.3768 Statistical Mechanics +1307.3884 Cosmology and Nongalactic Astrophysics +1307.5158 +1307.5973 Phenomenology +1307.6027 Strongly Correlated Electrons +1307.6513 Dynamical Systems +1307.6816 +1307.7146 Phenomenology +1307.7424 Atomic Physics +1307.7615 Computational Complexity +1308.0575 Phenomenology +1308.3321 Cosmology and Nongalactic Astrophysics +1308.5035 +1308.6102 +1308.6473 +1309.0791 +1309.2698 +1309.2905 Geometric Topology +1309.2906 +1309.4131 Optics +1309.5838 Number Theory +1309.6662 Atomic Physics +1310.0653 Theory +1310.1716 Atomic Physics +1310.2572 Algebraic Geometry +1310.4817 Superconductivity +1310.5044 Soft Condensed Matter +1310.7307 Group Theory +1310.7650 +1310.7702 Mesoscale and Nanoscale Physics +1310.7831 +1310.7875 Lattice +1310.8270 Optics +1311.0711 Combinatorics +1311.0957 Exactly Solvable and Integrable Systems +1311.0958 Lattice +1311.1456 +1311.1731 Methodology +1311.2228 Differential Geometry +1311.2459 Lattice +1311.2839 Distributed, Parallel, and Cluster Computing +1311.2909 Phenomenology +1311.2927 Programming Languages +1311.2929 Analysis of PDEs +1311.2936 Strongly Correlated Electrons +1311.2941 Astrophysics of Galaxies +1311.2951 +1311.2954 Mesoscale and Nanoscale Physics +1311.2960 Logic in Computer Science +1311.2963 Mesoscale and Nanoscale Physics +1311.2964 Dynamical Systems +1311.2966 Lattice +1311.2967 Strongly Correlated Electrons +1311.2968 Software Engineering +1311.2969 Combinatorics +1311.2971 Machine Learning +1311.2973 Logic in Computer Science +1311.2976 +1311.2978 Computation and Language +1311.2985 Combinatorics +1311.2986 +1311.2987 Learning +1311.2991 +1311.2998 Lattice +1311.3001 Machine Learning +1311.3002 Analysis of PDEs +1311.3006 +1311.3007 +1311.3009 Information Theory +1311.3019 Pricing of Securities +1311.3022 Differential Geometry +1311.3023 Information Theory +1311.3024 +1311.3026 Software Engineering +1311.3027 Quantum Algebra +1311.3029 Lattice +1311.3030 +1311.3032 Materials Science +1311.3034 Digital Libraries +1311.3037 Social and Information Networks +1311.3040 Phenomenology +1311.3042 +1311.3043 Number Theory +1311.3044 Number Theory +1311.3048 Data Structures and Algorithms +1311.3049 Combinatorics +1311.3052 Mesoscale and Nanoscale Physics +1311.3058 Logic +1311.3062 Distributed, Parallel, and Cluster Computing +1311.3063 +1311.3065 Mesoscale and Nanoscale Physics +1311.3068 Chemical Physics +1311.3069 Analysis of PDEs +1311.3070 Distributed, Parallel, and Cluster Computing +1311.3071 Cryptography and Security +1311.3072 Differential Geometry +1311.3073 Analysis of PDEs +1311.3078 Other Computer Science +1311.3079 Analysis of PDEs +1311.3082 Number Theory +1311.3085 Social and Information Networks +1311.3086 Combinatorics +1311.3087 Physics and Society +1311.3094 +1311.3096 Combinatorics +1311.3099 Cryptography and Security +1311.3105 Networking and Internet Architecture +1311.3106 Materials Science +1311.3114 Materials Science +1311.3119 Analysis of PDEs +1311.3120 Mesoscale and Nanoscale Physics +1311.3122 Dynamical Systems +1311.3128 Analysis of PDEs +1311.3129 Neurons and Cognition +1311.3130 Programming Languages +1311.3132 Atomic Physics +1311.3134 Analysis of PDEs +1311.3139 Cryptography and Security +1311.3142 Instrumentation and Methods for Astrophysics +1311.3143 Numerical Analysis +1311.3146 +1311.3147 Strongly Correlated Electrons +1311.3149 Computational Geometry +1311.3151 Cryptography and Security +1311.3152 Statistical Mechanics +1311.3154 Materials Science +1311.3156 +1311.3157 Learning +1311.3166 Algebraic Geometry +1311.3169 Dynamical Systems +1311.3170 Representation Theory +1311.3172 Networking and Internet Architecture +1311.3173 General Mathematics +1311.3174 Lattice +1311.3175 Computation and Language +1311.3178 Lattice +1311.3179 Combinatorics +1311.3181 Networking and Internet Architecture +1311.3182 +1311.3184 Networking and Internet Architecture +1311.3186 Data Analysis, Statistics and Probability +1311.3192 Robotics +1311.3194 Mesoscale and Nanoscale Physics +1311.3195 Software Engineering +1311.3198 Artificial Intelligence +1311.3199 Dynamical Systems +1311.3202 Mesoscale and Nanoscale Physics +1311.3209 Classical Analysis and ODEs +1311.3212 Dynamical Systems +1311.3220 Multimedia +1311.3226 Networking and Internet Architecture +1311.3231 Computers and Society +1311.3232 Algebraic Geometry +1311.3233 Analysis of PDEs +1311.3236 Genomics +1311.3237 Molecular Networks +1311.3238 Computer Science and Game Theory +1311.3239 Operator Algebras +1311.3243 Software Engineering +1311.3246 Solar and Stellar Astrophysics +1311.3247 Phenomenology +1311.3248 Tissues and Organs +1311.3253 Mesoscale and Nanoscale Physics +1311.3258 Representation Theory +1311.3261 Quantitative Methods +1311.3264 Numerical Analysis +1311.3269 Computer Vision and Pattern Recognition +1311.3271 Mesoscale and Nanoscale Physics +1311.3273 Lattice +1311.3283 Mesoscale and Nanoscale Physics +1311.3285 Lattice +1311.3286 Numerical Analysis +1311.3289 Strongly Correlated Electrons +1311.3290 Analysis of PDEs +astro-ph/0508367 +dg-ga/9702006 Differential Geometry +hep-ph/0412027 Phenomenology +math/0506273 Differential Geometry +math/0507454 Complex Variables +math/0703859 Algebraic Geometry +0704.3373 Differential Geometry +0807.1016 Logic in Computer Science +0905.4805 Algebraic Geometry +0907.2899 Differential Geometry +1004.4409 Soft Condensed Matter +1005.3963 Differential Geometry +1006.1654 Number Theory +1010.3213 Soft Condensed Matter +1011.5867 Algebraic Geometry +1012.0280 Data Structures and Algorithms +1101.0493 Algebraic Geometry +1104.2564 Quantum Gases +1104.2716 Number Theory +1104.3088 Cosmology and Nongalactic Astrophysics +1104.4314 Differential Geometry +1104.4412 Combinatorics +1105.0094 +1105.3007 Statistics Theory +1106.5076 Computational Geometry +1106.6311 Superconductivity +1107.3869 Probability +1107.3880 Statistics Theory +1107.3882 Combinatorics +1107.5802 +1108.1548 Optimization and Control +1108.2613 Computational Complexity +1109.3041 Statistical Mechanics +1110.4148 Strongly Correlated Electrons +1112.3473 Mesoscale and Nanoscale Physics +1201.4361 Soft Condensed Matter +1201.4488 Soft Condensed Matter +1202.4171 Number Theory +1203.0175 Dynamical Systems +1203.3177 Quantum Gases +1204.3260 Experiment +1204.3644 +1204.6496 +1205.0036 +1206.2627 Computer Vision and Pattern Recognition +1206.5413 +1206.5749 Solar and Stellar Astrophysics +1206.5834 +1206.6992 Algebraic Topology +1207.0857 Soft Condensed Matter +1207.1770 Strongly Correlated Electrons +1207.3815 Populations and Evolution +1207.5233 Phenomenology +1207.6910 Networking and Internet Architecture +1208.2372 +1208.4339 +1209.1528 Superconductivity +1209.2703 Phenomenology +1209.2922 Experiment +1209.3465 +1209.5467 Machine Learning +1209.6590 Cosmology and Nongalactic Astrophysics +1210.0740 Number Theory +1210.0989 Statistical Mechanics +1210.1778 Experiment +1210.6176 Data Structures and Algorithms +1210.7849 Lattice +1210.8376 Populations and Evolution +1211.1955 Phenomenology +1211.4663 Mesoscale and Nanoscale Physics +1211.5283 Information Theory +1211.6562 Superconductivity +1212.0113 Earth and Planetary Astrophysics +1212.1704 +1212.1838 Experiment +1301.1646 Experiment +1301.2665 Commutative Algebra +1301.3209 Theory +1301.3941 Strongly Correlated Electrons +1301.4514 Differential Geometry +1301.7151 Soft Condensed Matter +1302.0253 Classical Analysis and ODEs +1302.0478 Statistical Mechanics +1302.1504 Phenomenology +1302.2583 Mesoscale and Nanoscale Physics +1302.2892 Experiment +1302.3658 Materials Science +1302.4398 Superconductivity +1302.4853 Machine Learning +1302.5078 Rings and Algebras +1302.5970 Phenomenology +1302.6391 Digital Libraries +1303.0131 Mesoscale and Nanoscale Physics +1303.1189 Phenomenology +1303.4674 +1303.5921 Mesoscale and Nanoscale Physics +1304.1904 Phenomenology +1304.2136 +1304.3388 Number Theory +1304.4054 Superconductivity +1304.6065 Instrumentation and Detectors +1304.6436 Combinatorics +1304.7364 Physics and Society +1304.8135 Data Structures and Algorithms +1305.0332 Chemical Physics +1305.0747 Experiment +1305.0965 Rings and Algebras +1305.1017 Number Theory +1305.1367 Materials Science +1305.1375 Discrete Mathematics +1305.1436 Genomics +1305.1443 Computer Vision and Pattern Recognition +1305.1519 +1305.1568 History and Philosophy of Physics +1305.1621 Networking and Internet Architecture +1305.1630 Cosmology and Nongalactic Astrophysics +1305.1635 Symplectic Geometry +1305.1637 K-Theory and Homology +1305.1638 Algebraic Topology +1305.1640 +1305.1642 Quantum Algebra +1305.1645 Phenomenology +1305.1650 Algebraic Topology +1305.1651 Commutative Algebra +1305.1654 Algebraic Topology +1305.1655 Artificial Intelligence +1305.1657 Networking and Internet Architecture +1305.1658 High Energy Astrophysical Phenomena +1305.1660 Solar and Stellar Astrophysics +1305.1661 Mesoscale and Nanoscale Physics +1305.1664 Algebraic Topology +1305.1666 Software Engineering +1305.1669 Algebraic Topology +1305.1677 Combinatorics +1305.1678 K-Theory and Homology +1305.1679 Artificial Intelligence +1305.1680 Solar and Stellar Astrophysics +1305.1688 Accelerator Physics +1305.1689 Optics +1305.1690 Logic in Computer Science +1305.1691 Classical Analysis and ODEs +1305.1694 Data Structures and Algorithms +1305.1696 Theory +1305.1702 +1305.1703 Instrumentation and Methods for Astrophysics +1305.1704 Machine Learning +1305.1705 Soft Condensed Matter +1305.1706 Quantitative Methods +1305.1707 Learning +1305.1708 General Topology +1305.1709 Commutative Algebra +1305.1713 Databases +1305.1717 Earth and Planetary Astrophysics +1305.1727 Cryptography and Security +1305.1730 Information Theory +1305.1732 Strongly Correlated Electrons +1305.1733 Differential Geometry +1305.1734 Social and Information Networks +1305.1737 Graphics +1305.1738 +1305.1744 Data Structures and Algorithms +1305.1745 Information Retrieval +1305.1749 +1305.1751 Statistics Theory +1305.1753 Probability +1305.1754 Phenomenology +1305.1757 Phenomenology +1305.1764 Solar and Stellar Astrophysics +1305.1766 +1305.1768 Mesoscale and Nanoscale Physics +1305.1775 Analysis of PDEs +1305.1778 Statistics Theory +1305.1779 Fluid Dynamics +1305.1784 Theory +1305.1785 Optics +1305.1786 Information Theory +1305.1787 Information Retrieval +1305.1789 +1305.1790 Materials Science +1305.1797 Phenomenology +1305.1798 Combinatorics +1305.1802 Astrophysics of Galaxies +1305.1814 Mesoscale and Nanoscale Physics +1305.1815 General Topology +1305.1820 Mesoscale and Nanoscale Physics +1305.1827 Functional Analysis +1305.1831 Combinatorics +1305.1838 +1305.1849 Classical Analysis and ODEs +1305.1850 Number Theory +1305.1861 Genomics +1305.1862 High Energy Astrophysical Phenomena +1305.1864 Theory +1305.1865 Classical Analysis and ODEs +1305.1866 Phenomenology +1305.1867 Number Theory +1305.1868 Pricing of Securities +1305.1872 Mesoscale and Nanoscale Physics +1305.1874 Phenomenology +1305.1880 Combinatorics +1305.1882 Populations and Evolution +1305.1886 Optimization and Control +1305.1887 Multimedia +1305.1892 Number Theory +1305.1896 Cosmology and Nongalactic Astrophysics +1305.1897 Biological Physics +1305.1898 Phenomenology +1305.1899 Information Retrieval +1305.1900 Cryptography and Security +1305.1903 Theory +1305.1906 Phenomenology +1305.1908 Computational Physics +1305.1916 Instrumentation and Methods for Astrophysics +1305.1917 Theory +1305.1922 Data Structures and Algorithms +math/0602039 Group Theory +math/9809101 Algebraic Geometry +0804.4565 Logic in Computer Science +0908.1573 Phenomenology +1002.3496 Probability +1002.3813 Probability +1103.0149 Quantum Algebra +1106.4189 Combinatorics +1106.4197 Geometric Topology +1106.5279 Combinatorics +1108.1944 +1108.2925 Algebraic Geometry +1108.3526 Combinatorics +1109.2249 Algebraic Geometry +1109.2552 Experiment +1110.6141 General Physics +1111.1327 Differential Geometry +1112.3553 +1201.0400 Statistics Theory +1202.6392 Group Theory +1203.2008 Statistics Theory +1204.3835 +1205.0561 Multiagent Systems +1205.2074 Computer Science and Game Theory +1207.3885 Algebraic Topology +1207.4338 Phenomenology +1208.2815 Phenomenology +1208.4529 Solar and Stellar Astrophysics +1208.5177 Algebraic Geometry +1209.6597 Mesoscale and Nanoscale Physics +1210.0251 Algebraic Geometry +1210.0959 Probability +1210.1109 +1210.1790 Cryptography and Security +1211.0650 +1211.4952 +1211.6129 Pattern Formation and Solitons +1212.0611 +1212.0879 Solar and Stellar Astrophysics +1212.1375 Algebraic Geometry +1212.3635 Number Theory +1212.5968 Analysis of PDEs +1301.0134 Dynamical Systems +1301.1349 Cosmology and Nongalactic Astrophysics +1301.1606 Solar and Stellar Astrophysics +1301.2036 Mesoscale and Nanoscale Physics +1301.3687 Phenomenology +1302.2661 Analysis of PDEs +1302.3823 +1302.4551 Soft Condensed Matter +1303.0235 General Topology +1303.1068 Theory +1303.2361 Strongly Correlated Electrons +1303.2628 Quantum Gases +1303.3006 Theory +1304.0204 Disordered Systems and Neural Networks +1304.3752 Genomics +1304.5627 +1304.6435 Dynamical Systems +1304.7648 Materials Science +1305.0290 +1305.3508 Phenomenology +1305.4930 Cosmology and Nongalactic Astrophysics +1305.5649 +1306.0849 +1306.2147 Quantum Gases +1306.5681 +1306.6099 Functional Analysis +1306.6445 Computational Physics +1307.0455 Lattice +1307.0726 Mesoscale and Nanoscale Physics +1307.2700 Computational Geometry +1307.3657 Commutative Algebra +1307.5968 +1308.0346 Statistics Theory +1308.1393 Computational Physics +1308.1640 Computational Complexity +1308.1867 Theory +1308.4050 Experiment +1308.5474 Optimization and Control +1308.5753 Atomic Physics +1309.0355 Phenomenology +1309.0409 Rings and Algebras +1309.1399 High Energy Astrophysical Phenomena +1309.1914 Computational Complexity +1309.2190 Differential Geometry +1309.3156 Optics +1309.5707 +1309.6020 Solar and Stellar Astrophysics +1309.6400 Superconductivity +1309.6503 +1310.0496 Dynamical Systems +1310.1213 Superconductivity +1310.1402 Solar and Stellar Astrophysics +1310.2271 +1310.3053 Theory +1310.3248 Information Theory +1310.3901 Numerical Analysis +1310.4585 Theory +1310.5533 History and Philosophy of Physics +1310.6198 +1310.6381 Solar and Stellar Astrophysics +1310.7320 Statistics Theory +1310.8038 Social and Information Networks +1311.0185 Dynamical Systems +1311.0243 Cryptography and Security +1311.0604 Group Theory +1311.1705 +1311.1793 Other Computer Science +1311.1861 Populations and Evolution +1311.2114 Representation Theory +1311.2116 Representation Theory +1311.2429 Instrumentation and Detectors +1311.2756 Lattice +1311.2824 Phenomenology +1311.3012 +1311.3200 Distributed, Parallel, and Cluster Computing +1311.3208 Lattice +1311.3218 Chemical Physics +1311.3311 Experiment +1311.3371 Human-Computer Interaction +1311.3381 Dynamical Systems +1311.3405 Computer Vision and Pattern Recognition +1311.3533 Information Theory +1311.3618 Computer Vision and Pattern Recognition +1311.3633 Systems and Control +1311.3660 Mesoscale and Nanoscale Physics +1311.3669 Social and Information Networks +1311.3672 Human-Computer Interaction +1311.3674 Multiagent Systems +1311.3676 Lattice +1311.3679 General Topology +1311.3682 Astrophysics of Galaxies +1311.3684 Optics +1311.3687 Logic in Computer Science +1311.3689 Cosmology and Nongalactic Astrophysics +1311.3690 Metric Geometry +1311.3693 High Energy Astrophysical Phenomena +1311.3695 Lattice +1311.3699 Differential Geometry +1311.3701 Rings and Algebras +1311.3704 Geophysics +1311.3706 Geophysics +1311.3707 Number Theory +1311.3708 Mesoscale and Nanoscale Physics +1311.3709 Machine Learning +1311.3716 Cryptography and Security +1311.3719 Lattice +1311.3721 Differential Geometry +1311.3724 Experiment +1311.3729 Numerical Analysis +1311.3730 Numerical Analysis +1311.3731 Data Structures and Algorithms +1311.3732 Social and Information Networks +1311.3733 Phenomenology +1311.3735 Learning +1311.3736 Theory +1311.3740 Analysis of PDEs +1311.3741 Quantum Gases +1311.3743 Combinatorics +1311.3746 Networking and Internet Architecture +1311.3753 Statistics Theory +1311.3757 Cosmology and Nongalactic Astrophysics +1311.3759 Lattice +1311.3760 Instrumentation and Methods for Astrophysics +1311.3764 Risk Management +1311.3766 Numerical Analysis +1311.3768 Statistics Theory +1311.3769 Genomics +1311.3770 Genomics +1311.3772 Systems and Control +1311.3773 Information Theory +1311.3778 Lattice +1311.3779 Systems and Control +1311.3780 Instrumentation and Detectors +1311.3781 Complex Variables +1311.3785 Computational Complexity +1311.3786 Materials Science +1311.3792 Instrumentation and Detectors +1311.3794 Mesoscale and Nanoscale Physics +1311.3798 Software Engineering +1311.3800 Artificial Intelligence +1311.3801 Materials Science +1311.3804 Combinatorics +1311.3807 Instrumentation and Detectors +1311.3808 Computer Vision and Pattern Recognition +1311.3810 +1311.3813 Discrete Mathematics +1311.3816 Networking and Internet Architecture +1311.3821 Cryptography and Security +1311.3822 Operator Algebras +1311.3827 Group Theory +1311.3830 Numerical Analysis +1311.3831 Group Theory +1311.3833 Adaptation and Self-Organizing Systems +1311.3837 Computational Engineering, Finance, and Science +1311.3838 Lattice +1311.3840 Computational Engineering, Finance, and Science +1311.3841 Lattice +1311.3844 Lattice +1311.3845 Functional Analysis +1311.3848 Optics +1311.3849 Differential Geometry +1311.3851 Representation Theory +1311.3852 Software Engineering +1311.3853 Combinatorics +1311.3854 Lattice +1311.3858 Functional Analysis +1311.3862 +1311.3864 Classical Physics +1311.3866 Group Theory +1311.3868 Information Theory +1311.3869 Materials Science +1311.3872 Dynamical Systems +1311.3874 Discrete Mathematics +1311.3875 Materials Science +1311.3879 Databases +1311.3882 Social and Information Networks +1311.3883 Phenomenology +1311.3885 Lattice +1311.3889 Lattice +1311.3890 Mesoscale and Nanoscale Physics +1311.3896 Probability +1311.3898 Probability +1311.3900 Physics and Society +1311.3903 Logic in Computer Science +1311.3905 Physics Education +1311.3906 Group Theory +1311.3917 +1311.3925 +1311.3930 Numerical Analysis +1311.3932 Quantitative Methods +1311.3933 Lattice +1311.3934 Instrumentation and Methods for Astrophysics +1311.3935 Numerical Analysis +1311.3942 Group Theory +1311.3943 Lattice +1311.3951 Statistical Mechanics +1311.3952 Neurons and Cognition +1311.3955 Group Theory +1311.3961 Computation and Language +1311.3963 Analysis of PDEs +1311.3970 Atomic Physics +1311.3973 Strongly Correlated Electrons +astro-ph/0405137 +cond-mat/0312216 Strongly Correlated Electrons +cond-mat/0609587 Other Condensed Matter +cond-mat/9406003 +gr-qc/0608102 +math-ph/0510076 +math/0405009 Probability +math/0411539 Statistics Theory +nucl-th/0609037 +0801.3670 General Physics +0805.3830 Metric Geometry +0806.3721 Differential Geometry +0905.0395 +0907.0695 Geometric Topology +1004.3968 Analysis of PDEs +1004.4141 Analysis of PDEs +1005.4661 Mathematical Software +1006.1635 Theory +1008.1150 Computer Vision and Pattern Recognition +1008.2556 Computers and Society +1008.2943 Functional Analysis +1009.0890 History and Overview +1009.1377 Mesoscale and Nanoscale Physics +1009.3914 +1009.5876 Astrophysics of Galaxies +1010.1516 +1010.2565 Combinatorics +1011.5375 Algebraic Geometry +1011.5606 Systems and Control +1011.6313 Functional Analysis +1012.2254 Functional Analysis +1012.5986 Statistical Finance +1102.0852 Differential Geometry +1103.4318 +1104.0810 Functional Analysis +1105.1294 +1105.4648 Differential Geometry +1106.0558 Chaotic Dynamics +1106.0972 Statistics Theory +1106.2843 +1107.4832 +1107.5995 Exactly Solvable and Integrable Systems +1108.0163 +1108.3744 Classical Physics +1108.3895 Combinatorics +1108.6217 Analysis of PDEs +1109.1726 Materials Science +1109.3057 Functional Analysis +1110.0945 Analysis of PDEs +1110.2494 +1110.5038 Combinatorics +1110.6289 Portfolio Management +1110.6876 Algebraic Topology +1111.1428 Algebraic Geometry +1111.1440 Optimization and Control +1111.1457 Computational Physics +1111.3209 Algebraic Geometry +1112.1116 Data Structures and Algorithms +1112.1724 Analysis of PDEs +1112.4011 Optimization and Control +1112.4113 Optimization and Control +1112.4205 Classical Analysis and ODEs +1112.6265 Computational Complexity +1201.5173 Information Theory +1202.0932 Information Theory +1202.1319 Probability +1202.3800 Populations and Evolution +1202.5479 Optimization and Control +1203.2227 Superconductivity +1203.3154 Analysis of PDEs +1203.3887 Machine Learning +1203.4048 Probability +1203.4374 Cryptography and Security +1203.6091 Superconductivity +1204.1659 Quantum Gases +1204.2126 Mesoscale and Nanoscale Physics +1204.3418 Functional Analysis +1205.1418 Classical Physics +1205.1542 +1205.2725 +1205.4060 Combinatorics +1205.4604 General Physics +1205.5205 Analysis of PDEs +1205.5261 Geometric Topology +1205.6953 Mesoscale and Nanoscale Physics +1206.0101 Fluid Dynamics +1206.1660 Methodology +1206.1904 Commutative Algebra +1206.2432 +1206.3010 Geophysics +1206.3218 Functional Analysis +1206.3221 Number Theory +1206.3593 Algebraic Geometry +1206.4036 Instrumentation and Detectors +1206.6710 High Energy Astrophysical Phenomena +1206.6964 Theory +1207.0547 Statistics Theory +1207.1175 Analysis of PDEs +1207.3110 Networking and Internet Architecture +1207.5063 Information Theory +1207.5194 Phenomenology +1207.5558 Information Theory +1207.5940 Differential Geometry +1207.6655 +1208.0878 Earth and Planetary Astrophysics +1208.0925 Analysis of PDEs +1208.1342 Combinatorics +1208.2042 Statistical Mechanics +1208.3030 Machine Learning +1208.3307 Databases +1208.3779 Learning +1208.5395 Spectral Theory +1208.6447 Analysis of PDEs +1209.0437 Operator Algebras +1209.2461 Cosmology and Nongalactic Astrophysics +1209.3611 Number Theory +1209.6128 Disordered Systems and Neural Networks +1210.1701 Strongly Correlated Electrons +1210.1763 Algebraic Geometry +1210.2437 Quantum Gases +1210.2464 Methodology +1210.2771 Machine Learning +1210.2789 Phenomenology +1210.3264 Probability +1210.3273 High Energy Astrophysical Phenomena +1210.4267 Disordered Systems and Neural Networks +1210.4350 Classical Analysis and ODEs +1210.4362 Analysis of PDEs +1210.5289 Plasma Physics +1210.5452 +1210.6607 +1210.6722 Information Theory +1210.7151 Complex Variables +1210.7665 Machine Learning +1210.7992 High Energy Astrophysical Phenomena +1210.8300 Chemical Physics +1211.0219 Cosmology and Nongalactic Astrophysics +1211.0270 Data Structures and Algorithms +1211.0482 Theory +1211.2172 Algebraic Geometry +1211.2646 Theory +1211.2655 Classical Physics +1211.3511 Functional Analysis +1211.3564 Group Theory +1211.4267 Group Theory +1211.4954 Quantum Gases +1211.5523 Fluid Dynamics +1211.5637 Theory +1211.6144 Strongly Correlated Electrons +1211.6828 Earth and Planetary Astrophysics +1212.0427 Distributed, Parallel, and Cluster Computing +1212.0725 +1212.1248 Differential Geometry +1212.1537 Genomics +1212.1744 Adaptation and Self-Organizing Systems +1212.1893 Phenomenology +1212.2147 Quantum Gases +1212.2185 Theory +1212.3806 Programming Languages +1212.4385 Atomic Physics +1212.4538 Theory +1212.4664 Classical Analysis and ODEs +1212.4745 Cell Behavior +1212.4760 Experiment +1212.5238 Physics and Society +1212.6580 Number Theory +1212.6635 Theory +1212.6848 Data Structures and Algorithms +1301.0547 Analysis of PDEs +1301.0971 Mesoscale and Nanoscale Physics +1301.2118 High Energy Astrophysical Phenomena +1301.2661 Computer Science and Game Theory +1301.3434 Strongly Correlated Electrons +1301.3490 Analysis of PDEs +1301.4038 Algebraic Geometry +1301.4953 +1301.5103 +1301.5177 Digital Libraries +1301.5876 Number Theory +1301.5996 Strongly Correlated Electrons +1301.6823 Materials Science +1301.6917 Information Theory +1301.7010 Materials Science +1301.7155 Analysis of PDEs +1301.7488 Materials Science +1301.7701 Soft Condensed Matter +1302.0093 +1302.1973 Differential Geometry +1302.2476 Physics and Society +1302.2495 Soft Condensed Matter +1302.2890 Strongly Correlated Electrons +1302.3750 Statistical Mechanics +1302.4094 Quantum Algebra +1302.4344 Cosmology and Nongalactic Astrophysics +1302.4518 Fluid Dynamics +1302.4616 Theory +1302.4877 Optics +1302.6355 Phenomenology +1302.6861 Statistical Mechanics +1302.6933 Group Theory +1302.6943 Solar and Stellar Astrophysics +1302.7298 Strongly Correlated Electrons +1303.0694 +1303.1061 Quantum Gases +1303.4150 Combinatorics +1303.4847 Pricing of Securities +1303.6003 Number Theory +1303.6044 Mesoscale and Nanoscale Physics +1303.7297 Statistics Theory +1304.0720 Cosmology and Nongalactic Astrophysics +1304.1171 Physics and Society +1304.1731 Cryptography and Security +1304.2065 Pattern Formation and Solitons +1304.2784 Theory +1304.3987 Fluid Dynamics +1304.4412 +1304.4792 Quantum Gases +1304.5056 Analysis of PDEs +1304.5104 Phenomenology +1304.5516 Other Condensed Matter +1304.5523 Soft Condensed Matter +1304.5531 Programming Languages +1304.5534 Instrumentation and Detectors +1304.5535 Genomics +1304.5536 Soft Condensed Matter +1304.5540 Numerical Analysis +1304.5543 Mesoscale and Nanoscale Physics +1304.5545 Multiagent Systems +1304.5546 Mathematical Software +1304.5548 +1304.5549 Group Theory +1304.5550 Artificial Intelligence +1304.5553 Software Engineering +1304.5554 Artificial Intelligence +1304.5555 Algebraic Geometry +1304.5558 Algebraic Geometry +1304.5560 Data Structures and Algorithms +1304.5563 Applications +1304.5564 Analysis of PDEs +1304.5565 Molecular Networks +1304.5566 Databases +1304.5568 Robotics +1304.5571 Algebraic Topology +1304.5573 Cosmology and Nongalactic Astrophysics +1304.5574 Information Theory +1304.5579 Group Theory +1304.5581 General Physics +1304.5582 Materials Science +1304.5585 Optics +1304.5591 Data Structures and Algorithms +1304.5592 Accelerator Physics +1304.5595 Combinatorics +1304.5597 Mesoscale and Nanoscale Physics +1304.5602 Logic in Computer Science +1304.5604 Computational Complexity +1304.5605 Differential Geometry +1304.5606 Differential Geometry +1304.5607 Materials Science +1304.5609 Group Theory +1304.5610 Optimization and Control +1304.5618 Rings and Algebras +1304.5620 Computer Science and Game Theory +1304.5622 Statistical Mechanics +1304.5624 +1304.5625 Data Structures and Algorithms +1304.5629 Social and Information Networks +1304.5634 Learning +1304.5635 Neurons and Cognition +1304.5637 Methodology +1304.5639 Experiment +1304.5640 Cosmology and Nongalactic Astrophysics +1304.5641 Geometric Topology +1304.5642 Applications +1304.5643 Combinatorics +1304.5647 Analysis of PDEs +1304.5649 Emerging Technologies +1304.5650 Optics +1304.5651 Probability +1304.5658 Combinatorics +1304.5659 Number Theory +1304.5661 Programming Languages +1304.5662 Algebraic Topology +1304.5663 Instrumentation and Methods for Astrophysics +1304.5664 Populations and Evolution +1304.5665 Genomics +1304.5668 Adaptation and Self-Organizing Systems +1304.5669 Combinatorics +1304.5670 Information Theory +1304.5677 Networking and Internet Architecture +1304.5678 Learning +1304.5679 Mesoscale and Nanoscale Physics +1304.5688 Digital Libraries +1304.5689 +1304.5700 Information Theory +1304.5705 Artificial Intelligence +1304.5706 Computational Engineering, Finance, and Science +1304.5710 Dynamical Systems +1304.5711 Quantum Algebra +1304.5714 Formal Languages and Automata Theory +1304.5715 Probability +1304.5720 Representation Theory +1304.5725 Networking and Internet Architecture +1304.5728 Differential Geometry +1304.5729 Logic +1304.5731 Molecular Networks +1304.5732 Atomic Physics +1304.5733 Materials Science +1304.5738 Cosmology and Nongalactic Astrophysics +1304.5743 Digital Libraries +1304.5746 Data Structures and Algorithms +1304.5755 Other Computer Science +1304.5757 Representation Theory +1304.5759 Quantitative Methods +1304.5760 Combinatorics +1304.5764 Chemical Physics +1304.5767 Rings and Algebras +1304.5770 Geometric Topology +1304.5771 Cellular Automata and Lattice Gases +1304.5772 Differential Geometry +1304.5780 Plasma Physics +1304.5787 Complex Variables +1304.5789 Operator Algebras +1304.5796 Optimization and Control +1304.5798 Combinatorics +1304.5799 Networking and Internet Architecture +1304.5800 Spectral Theory +1304.5801 Analysis of PDEs +1304.5802 Information Theory +1304.5806 Logic in Computer Science +1304.5809 Algebraic Geometry +1304.5814 Populations and Evolution +1304.5816 Applications +1304.5818 Exactly Solvable and Integrable Systems +1304.5821 Information Theory +1304.5822 Computer Science and Game Theory +1304.5826 Exactly Solvable and Integrable Systems +1304.5827 Emerging Technologies +1304.5829 Number Theory +1304.5830 Combinatorics +1304.5833 Commutative Algebra +1304.5837 Mesoscale and Nanoscale Physics +1304.5838 High Energy Astrophysical Phenomena +1304.5840 Algebraic Geometry +1304.5844 Pattern Formation and Solitons +1304.5846 Statistics Theory +1304.5849 Data Structures and Algorithms +1304.5855 Phenomenology +1304.5856 Information Theory +1304.5861 Differential Geometry +1304.5871 Atomic Physics +1304.5876 Data Structures and Algorithms +1304.5877 Astrophysics of Galaxies +1304.5878 Robotics +1304.5880 Computation and Language +1304.5881 Statistics Theory +1304.5882 Analysis of PDEs +1304.5884 Solar and Stellar Astrophysics +1304.5885 Plasma Physics +1304.5893 Programming Languages +1304.5896 +1304.5897 Artificial Intelligence +1304.5898 Biomolecules +1304.5903 Biological Physics +1304.5905 Optimization and Control +1304.5907 Operator Algebras +1304.5909 Category Theory +1304.5910 Computational Complexity +1304.5915 +1304.5917 +1304.5918 +1304.5920 Mesoscale and Nanoscale Physics +1304.5922 Algebraic Topology +1304.5923 Numerical Analysis +1304.5924 Algebraic Topology +1304.5929 Statistics Theory +1304.5934 Computational Complexity +1304.5937 Phenomenology +1304.5939 Statistics Theory +1304.5942 Optimization and Control +1304.5943 Statistics Theory +1304.5945 +1304.5948 Materials Science +1304.5949 Algebraic Geometry +1304.5955 Optics +1304.5958 Complex Variables +1304.5961 Artificial Intelligence +1304.5966 Distributed, Parallel, and Cluster Computing +1304.5968 Disordered Systems and Neural Networks +1304.5970 Artificial Intelligence +1304.5971 Data Structures and Algorithms +1304.5974 Social and Information Networks +1304.5975 Classical Analysis and ODEs +1304.5976 Materials Science +1304.5979 Materials Science +1304.5986 Geometric Topology +1304.5989 General Physics +1304.5991 Data Structures and Algorithms +1304.5997 +1304.5998 Atomic Physics +1304.6000 Information Theory +1304.6004 Numerical Analysis +1304.6007 Data Structures and Algorithms +1304.6010 Materials Science +1304.6011 Combinatorics +1304.6033 Information Theory +1304.6034 Quantitative Methods +1304.6038 Programming Languages +1304.6042 Rings and Algebras +1304.6043 Earth and Planetary Astrophysics +1304.6047 Numerical Analysis +1304.6053 Geometric Topology +1304.6054 Materials Science +1304.6056 Solar and Stellar Astrophysics +1304.6057 Computer Science and Game Theory +1304.6067 Operating Systems +1304.6074 Combinatorics +1304.6076 Combinatorics +math-ph/0505085 +math/0702186 Functional Analysis +0807.1416 Optimization and Control +0808.0029 Geometric Topology +0902.3324 Operator Algebras +0907.1494 +1002.5025 +1009.1178 Differential Geometry +1011.0392 Symplectic Geometry +1011.5770 Instrumentation and Methods for Astrophysics +1101.0540 Exactly Solvable and Integrable Systems +1102.2264 Phenomenology +1103.0052 Analysis of PDEs +1103.2575 Computational Geometry +1104.0322 Computational Finance +1104.0401 Combinatorics +1104.0452 Algebraic Topology +1105.2594 Fluid Dynamics +1105.3130 Probability +1106.0147 Algebraic Topology +1106.0444 Analysis of PDEs +1108.0687 Probability +1109.5614 Analysis of PDEs +1110.2068 Strongly Correlated Electrons +1110.2071 Strongly Correlated Electrons +1110.2073 Strongly Correlated Electrons +1110.6744 Mesoscale and Nanoscale Physics +1111.0547 Instrumentation and Methods for Astrophysics +1111.1184 Cosmology and Nongalactic Astrophysics +1111.3131 Statistical Mechanics +1111.4180 Methodology +1111.4475 Functional Analysis +1112.5423 Combinatorics +1202.1882 Combinatorics +1202.3001 Numerical Analysis +1203.0185 Algebraic Geometry +1203.3563 +1204.2211 Fluid Dynamics +1204.4333 Methodology +1204.4878 Algebraic Topology +1204.5882 +1205.0522 Combinatorics +1205.1590 Operator Algebras +1205.3924 +1205.5617 Probability +1206.0213 Dynamical Systems +1206.3301 +1206.7121 Cosmology and Nongalactic Astrophysics +1207.1430 General Physics +1207.3704 Optimization and Control +1207.4029 Optimization and Control +1207.5751 Soft Condensed Matter +1207.6627 Theory +1208.0395 Computational Geometry +1208.1970 Phenomenology +1208.2084 Representation Theory +1208.3894 Populations and Evolution +1208.4425 Pattern Formation and Solitons +1208.6026 General Physics +1209.1174 Cosmology and Nongalactic Astrophysics +1209.2220 Commutative Algebra +1209.2355 Learning +1209.3224 Optics +1209.5124 Algebraic Geometry +1209.5466 Populations and Evolution +1209.5594 Mesoscale and Nanoscale Physics +1210.1029 Computer Vision and Pattern Recognition +1210.3848 Classical Physics +1210.3922 Quantum Algebra +1210.4635 Soft Condensed Matter +1210.4816 Differential Geometry +1210.4922 Phenomenology +1210.5362 Analysis of PDEs +1210.8312 Theory +1211.0756 Cosmology and Nongalactic Astrophysics +1211.1176 Instrumentation and Detectors +1211.1404 Mesoscale and Nanoscale Physics +1211.3688 +1211.3980 Lattice +1211.3987 Representation Theory +1211.4677 Numerical Analysis +1211.5585 Differential Geometry +1211.5880 Strongly Correlated Electrons +1211.6963 Operator Algebras +1211.7042 Mesoscale and Nanoscale Physics +1212.0509 Probability +1212.0761 Phenomenology +1212.1089 Logic in Computer Science +1212.4269 Optimization and Control +1212.5604 Phenomenology +1212.5911 +1212.6730 Analysis of PDEs +1301.0350 Number Theory +1301.1159 +1301.2144 +1301.3253 Materials Science +1301.3792 Experiment +1301.5352 Mesoscale and Nanoscale Physics +1302.0457 Combinatorics +1302.1764 Experiment +1302.2133 Geometric Topology +1302.3085 Networking and Internet Architecture +1302.4271 Soft Condensed Matter +1302.4505 Mesoscale and Nanoscale Physics +1302.5285 Strongly Correlated Electrons +1302.6562 Information Theory +1302.7312 Theory +1303.0532 Cosmology and Nongalactic Astrophysics +1303.0835 Cosmology and Nongalactic Astrophysics +1303.0882 Populations and Evolution +1303.1086 +1303.1294 +1303.1846 High Energy Astrophysical Phenomena +1303.2313 Atomic Physics +1303.2693 Phenomenology +1303.3192 Phenomenology +1303.3195 Soft Condensed Matter +1303.4382 Differential Geometry +1303.4573 Phenomenology +1303.5390 Differential Geometry +1303.5512 Representation Theory +1303.5824 Strongly Correlated Electrons +1303.6142 Experiment +1303.6363 Superconductivity +1303.7410 Machine Learning +1304.0638 Mesoscale and Nanoscale Physics +1304.0741 +1304.1421 Atomic Physics +1304.1716 Optimization and Control +1304.2052 +1304.2584 Phenomenology +1304.3138 Neural and Evolutionary Computing +1304.4366 Strongly Correlated Electrons +1304.5599 High Energy Astrophysical Phenomena +1304.5783 Experiment +1304.6161 Cryptography and Security +1304.6274 Programming Languages +1305.0082 High Energy Astrophysical Phenomena +1305.0095 Group Theory +1305.0491 Experiment +1305.0862 Dynamical Systems +1305.1682 +1305.2301 +1305.2364 Disordered Systems and Neural Networks +1305.3837 Optics +1305.3947 Popular Physics +1305.4676 Phenomenology +1305.5374 Statistical Mechanics +1305.6192 Commutative Algebra +1305.6193 Rings and Algebras +1305.6199 Commutative Algebra +1305.6719 Strongly Correlated Electrons +1305.7027 Instrumentation and Detectors +1305.7184 +1306.0573 Instrumentation and Methods for Astrophysics +1306.1986 +1306.2985 Probability +1306.3191 Functional Analysis +1306.3748 Optics +1306.4129 Quantum Gases +1306.4444 Strongly Correlated Electrons +1306.6114 +1306.6511 Combinatorics +1306.6634 Solar and Stellar Astrophysics +1306.6862 Number Theory +1307.1095 General Physics +1307.1852 Classical Analysis and ODEs +1307.2232 High Energy Astrophysical Phenomena +1307.2373 Mesoscale and Nanoscale Physics +1307.3914 Instrumentation and Detectors +1307.4242 Statistical Mechanics +1307.4482 Probability +1307.5264 Networking and Internet Architecture +1307.5312 High Energy Astrophysical Phenomena +1307.5385 +1307.5590 Biological Physics +1307.5776 Computational Complexity +1307.5836 Operator Algebras +1307.6169 +1307.6695 Risk Management +1307.6779 Information Theory +1307.6833 +1307.7142 Social and Information Networks +1307.7153 Astrophysics of Galaxies +1307.7158 Probability +1307.7163 General Physics +1307.7164 Networking and Internet Architecture +1307.7166 Strongly Correlated Electrons +1307.7168 Probability +1307.7176 Functional Analysis +1307.7191 Strongly Correlated Electrons +1307.7192 Learning +1307.7193 +1307.7194 Atomic Physics +1307.7195 Optimization and Control +1307.7198 Computer Vision and Pattern Recognition +1307.7202 Computers and Society +1307.7203 Methodology +1307.7208 Computers and Society +1307.7209 Methodology +1307.7212 Algebraic Topology +1307.7214 Optics +1307.7215 Category Theory +1307.7216 Category Theory +1307.7217 +1307.7222 Probability +1307.7224 Commutative Algebra +1307.7227 Spectral Theory +1307.7228 Mesoscale and Nanoscale Physics +1307.7229 Rings and Algebras +1307.7231 Networking and Internet Architecture +1307.7232 Rings and Algebras +1307.7233 Cryptography and Security +1307.7234 Algebraic Geometry +1307.7236 Algebraic Geometry +1307.7239 Symplectic Geometry +1307.7243 Strongly Correlated Electrons +1307.7248 Solar and Stellar Astrophysics +1307.7257 Numerical Analysis +1307.7258 Phenomenology +1307.7261 Programming Languages +1307.7263 Robotics +1307.7271 Performance +1307.7278 Instrumentation and Methods for Astrophysics +1307.7282 Quantitative Methods +1307.7286 Learning +1307.7287 Combinatorics +1307.7290 Dynamical Systems +1307.7291 Social and Information Networks +1307.7293 High Energy Astrophysical Phenomena +1307.7295 Chemical Physics +1307.7298 Phenomenology +1307.7300 Instrumentation and Methods for Astrophysics +1307.7302 Neurons and Cognition +1307.7303 Learning +1307.7304 Quantum Algebra +1307.7307 Combinatorics +1307.7310 Numerical Analysis +1307.7316 Analysis of PDEs +1307.7318 +1307.7319 Theory +1307.7322 Computer Science and Game Theory +1307.7323 Combinatorics +1307.7324 Representation Theory +1307.7326 Social and Information Networks +1307.7327 Space Physics +1307.7328 Databases +1307.7333 Numerical Analysis +1307.7334 Numerical Analysis +1307.7336 Algebraic Geometry +1307.7342 Neurons and Cognition +1307.7346 Plasma Physics +1307.7348 Spectral Theory +1307.7355 High Energy Astrophysical Phenomena +1307.7362 Analysis of PDEs +1307.7363 Combinatorics +1307.7365 Cryptography and Security +1307.7369 Dynamical Systems +1307.7370 Number Theory +1307.7380 +1307.7382 Computation and Language +1307.7385 Molecular Networks +1307.7386 Soft Condensed Matter +1307.7387 Logic +1307.7389 Physics and Society +1307.7390 Combinatorics +1307.7393 Analysis of PDEs +1307.7395 Optimization and Control +1307.7396 Solar and Stellar Astrophysics +1307.7398 Robotics +1307.7402 Materials Science +1307.7403 Phenomenology +1307.7405 Robotics +1307.7407 Dynamical Systems +1307.7409 Solar and Stellar Astrophysics +1307.7410 Rings and Algebras +1307.7416 Networking and Internet Architecture +1307.7417 +1307.7418 +1307.7430 Data Structures and Algorithms +1307.7431 History and Overview +1307.7433 Cryptography and Security +1307.7434 History and Overview +1307.7435 Neural and Evolutionary Computing +1307.7439 Solar and Stellar Astrophysics +1307.7440 Logic in Computer Science +1307.7441 Logic in Computer Science +1307.7442 Logic in Computer Science +1307.7443 Formal Languages and Automata Theory +1307.7444 Logic in Computer Science +1307.7445 Logic in Computer Science +1307.7446 Logic in Computer Science +1307.7447 Information Theory +1307.7449 Differential Geometry +1307.7450 +1307.7452 Experiment +1307.7456 Algebraic Geometry +1307.7461 Robotics +1307.7463 Number Theory +1307.7464 Networking and Internet Architecture +1307.7467 Classical Physics +1307.7468 +1307.7471 Atmospheric and Oceanic Physics +1307.7472 Computers and Society +1307.7473 Classical Analysis and ODEs +1307.7474 Computer Vision and Pattern Recognition +1307.7475 Fluid Dynamics +1307.7478 Computers and Society +1307.7481 Materials Science +1307.7483 Optimization and Control +1307.7486 Combinatorics +1307.7494 Artificial Intelligence +1307.7498 Digital Libraries +1307.7504 Dynamical Systems +1307.7507 Instrumentation and Detectors +1307.7513 Databases +1307.7516 Symplectic Geometry +1307.7522 Commutative Algebra +1307.7527 Mesoscale and Nanoscale Physics +1307.7533 Optimization and Control +1307.7534 Cryptography and Security +1307.7538 Algebraic Geometry +1307.7543 Numerical Analysis +1307.7545 Information Theory +1307.7547 Optimization and Control +1307.7548 Phenomenology +1307.7552 Atomic Physics +1307.7553 Networking and Internet Architecture +1307.7555 Materials Science +1307.7561 Materials Science +1307.7562 Optimization and Control +1307.7563 Networking and Internet Architecture +1307.7566 High Energy Astrophysical Phenomena +1307.7572 Representation Theory +1307.7574 Category Theory +1307.7578 Numerical Analysis +1307.7585 +1307.7588 Materials Science +1307.7591 Pattern Formation and Solitons +1307.7597 Information Theory +1307.7602 Information Theory +1307.7604 Algebraic Geometry +1307.7606 Materials Science +1307.7616 Materials Science +1307.7618 High Energy Astrophysical Phenomena +1307.7629 High Energy Astrophysical Phenomena +1307.7630 Theory +1307.7631 Mesoscale and Nanoscale Physics +1307.7632 +1307.7635 Rings and Algebras +1307.7636 Differential Geometry +1307.7637 +1307.7642 Genomics +1307.7644 Experiment +1307.7646 Functional Analysis +1307.7650 Methodology +1307.7655 Dynamical Systems +1307.7660 Theory +1307.7662 Differential Geometry +1307.7666 Machine Learning +1307.7668 +1307.7670 Instrumentation and Detectors +1307.7671 Dynamical Systems +1307.7673 +1307.7674 Quantum Algebra +1307.7675 Representation Theory +1307.7677 +1307.7678 Populations and Evolution +1307.7682 Statistics Theory +1307.7683 Symplectic Geometry +1307.7684 Chemical Physics +1307.7686 Other Condensed Matter +1307.7687 Number Theory +1307.7689 Instrumentation and Detectors +1307.7692 High Energy Astrophysical Phenomena +1307.7694 Quantum Gases +math/0612488 Statistics Theory +0709.0481 Algebraic Geometry +0809.3513 +0901.1524 Cosmology and Nongalactic Astrophysics +0908.2110 Superconductivity +0912.0801 Mesoscale and Nanoscale Physics +1005.3648 Phenomenology +1006.1386 Mesoscale and Nanoscale Physics +1102.2302 Number Theory +1103.3201 +1104.2398 Mesoscale and Nanoscale Physics +1105.3498 +1109.3170 Superconductivity +1110.0903 Functional Analysis +1110.5339 Cosmology and Nongalactic Astrophysics +1112.3392 Combinatorics +1201.4661 Materials Science +1201.5284 Materials Science +1204.2805 Algebraic Geometry +1204.4538 Algebraic Geometry +1204.5313 +1207.6024 +1207.6410 Cosmology and Nongalactic Astrophysics +1209.0133 Chaotic Dynamics +1209.1832 General Physics +1209.3998 Analysis of PDEs +1209.5202 +1210.6391 +1210.6931 Operator Algebras +1210.8280 Algebraic Geometry +1211.0245 Quantum Gases +1211.2707 General Physics +1211.4945 +1211.5960 Computational Physics +1212.0753 Phenomenology +1212.6634 Strongly Correlated Electrons +1301.0322 Cosmology and Nongalactic Astrophysics +1301.4464 Soft Condensed Matter +1301.5875 +1302.0280 Theory +1302.1206 +1302.3673 Computational Complexity +1302.5682 Chemical Physics +1302.6896 Numerical Analysis +1302.7136 Theory +1303.2082 Theory +1303.3253 Algebraic Geometry +1303.5130 Superconductivity +1303.5383 Probability +1304.0643 Functional Analysis +1304.2507 Optics +1304.2578 Quantum Gases +1304.3178 Quantum Gases +1304.3474 Cosmology and Nongalactic Astrophysics +1304.5323 Materials Science +1304.8058 General Physics +1305.0113 Populations and Evolution +1305.1424 Materials Science +1305.1587 Materials Science +1305.2798 +1305.3316 Pattern Formation and Solitons +1305.3704 Differential Geometry +1305.6689 Algebraic Geometry +1306.0621 Materials Science +1306.1168 Phenomenology +1306.1644 Solar and Stellar Astrophysics +1306.2485 +1306.3321 Classical Physics +1306.3642 Materials Science +1306.4618 Disordered Systems and Neural Networks +1306.5371 Combinatorics +1306.5957 +1306.6553 Phenomenology +1307.1536 +1307.1713 Probability +1307.2383 +1307.2512 Statistical Mechanics +1307.2680 Geophysics +1307.3090 Soft Condensed Matter +1307.3505 Mesoscale and Nanoscale Physics +1307.3640 +1307.4237 Phenomenology +1307.6442 Methodology +1307.6769 Machine Learning +1307.7288 Mesoscale and Nanoscale Physics +1308.0411 Solar and Stellar Astrophysics +1308.0894 Superconductivity +1308.1822 Methodology +1308.3712 Phenomenology +1308.4783 Atomic Physics +1308.5290 +1308.5650 +1308.6419 Strongly Correlated Electrons +1308.6769 Cosmology and Nongalactic Astrophysics +1309.1032 Mesoscale and Nanoscale Physics +1309.1123 +1309.2608 Lattice +1309.2947 Astrophysics of Galaxies +1309.3177 Phenomenology +1309.4756 +1309.5103 Superconductivity +1309.5634 +1309.5706 Digital Libraries +1309.5917 Mesoscale and Nanoscale Physics +1309.6540 Cosmology and Nongalactic Astrophysics +1310.1511 Chemical Physics +1310.2427 +1310.2927 +1310.4302 +1310.7067 Mesoscale and Nanoscale Physics +1310.7180 Mesoscale and Nanoscale Physics +1310.7878 Theory +1310.8011 Representation Theory +1310.8645 Soft Condensed Matter +1310.8653 Materials Science +1311.0006 High Energy Astrophysical Phenomena +1311.0368 +1311.0673 Strongly Correlated Electrons +1311.1033 Machine Learning +1311.1123 Materials Science +1311.1358 Information Theory +1311.3519 Lattice +1311.3966 Phenomenology +1311.4441 Earth and Planetary Astrophysics +1311.4621 Lattice +1311.4854 Computational Geometry +1311.4963 Computer Vision and Pattern Recognition +1311.5029 Lattice +1311.5184 Information Theory +1311.5227 Theory +1311.5237 Astrophysics of Galaxies +1311.5240 Optimization and Control +1311.5242 Other Computer Science +1311.5243 Solar and Stellar Astrophysics +1311.5244 Discrete Mathematics +1311.5249 Methodology +1311.5250 Chaotic Dynamics +1311.5260 Algebraic Geometry +1311.5261 +1311.5265 Operator Algebras +1311.5266 Phenomenology +1311.5272 Physics Education +1311.5276 Functional Analysis +1311.5277 Operator Algebras +1311.5280 Differential Geometry +1311.5283 Strongly Correlated Electrons +1311.5285 Phenomenology +1311.5287 Experiment +1311.5288 Differential Geometry +1311.5289 Lattice +1311.5290 Data Analysis, Statistics and Probability +1311.5291 Complex Variables +1311.5294 Phenomenology +1311.5295 +1311.5299 Rings and Algebras +1311.5301 Statistics Theory +1311.5309 Dynamical Systems +1311.5311 Plasma Physics +1311.5315 Accelerator Physics +1311.5316 Phenomenology +1311.5317 Data Structures and Algorithms +1311.5319 Number Theory +1311.5321 Representation Theory +1311.5323 Analysis of PDEs +1311.5336 Phenomenology +1311.5337 High Energy Astrophysical Phenomena +1311.5340 Accelerator Physics +1311.5341 Phenomenology +1311.5342 Phenomenology +1311.5346 Algebraic Geometry +1311.5347 Experiment +1311.5352 Lattice +1311.5354 Statistics Theory +1311.5355 Artificial Intelligence +1311.5356 Instrumentation and Detectors +1311.5363 Chemical Physics +1311.5365 Analysis of PDEs +1311.5374 Atomic Physics +1311.5375 Geometric Topology +1311.5377 High Energy Astrophysical Phenomena +1311.5381 Solar and Stellar Astrophysics +1311.5382 Networking and Internet Architecture +1311.5385 Networking and Internet Architecture +1311.5394 Dynamical Systems +1311.5402 Cosmology and Nongalactic Astrophysics +1311.5403 Lattice +1311.5405 Soft Condensed Matter +1311.5406 Machine Learning +1311.5411 Instrumentation and Methods for Astrophysics +1311.5412 High Energy Astrophysical Phenomena +1311.5421 Soft Condensed Matter +1311.5426 Human-Computer Interaction +1311.5428 Materials Science +1311.5430 Materials Science +1311.5431 Materials Science +1311.5432 +1311.5434 Human-Computer Interaction +1311.5436 General Topology +1311.5438 Accelerator Physics +1311.5439 Soft Condensed Matter +1311.5440 Materials Science +1311.5441 Materials Science +1311.5442 Materials Science +1311.5444 Materials Science +1311.5446 Probability +1311.5447 Computational Geometry +1311.5452 Soft Condensed Matter +1311.5455 Phenomenology +1311.5456 Geometric Topology +1311.5458 Theory +1311.5461 Populations and Evolution +1311.5464 Probability +1311.5466 Analysis of PDEs +1311.5467 Computational Complexity +1311.5469 Lattice +1311.5475 Rings and Algebras +1311.5480 Populations and Evolution +1311.5481 Data Structures and Algorithms +1311.5482 Number Theory +1311.5483 Number Theory +1311.5486 Instrumentation and Methods for Astrophysics +1311.5490 Lattice +1311.5491 Phenomenology +1311.5494 Category Theory +1311.5495 Lattice +1311.5499 Combinatorics +1311.5500 Phenomenology +1311.5502 Social and Information Networks +1311.5503 Mesoscale and Nanoscale Physics +1311.5505 Dynamical Systems +1311.5507 Probability +1311.5515 Lattice +1311.5517 Quantitative Methods +1311.5518 Materials Science +1311.5531 Instrumentation and Methods for Astrophysics +1311.5540 Classical Analysis and ODEs +1311.5544 Tissues and Organs +1311.5555 +0711.4229 Quantum Algebra +0711.4409 Category Theory +0802.0540 +0904.0727 Discrete Mathematics +0907.3652 Other Condensed Matter +0907.4697 Information Theory +0907.4812 Functional Analysis +0909.4615 Cosmology and Nongalactic Astrophysics +0909.5162 Probability +0910.2990 Astrophysics of Galaxies +0912.1423 Theory +1001.5320 Functional Analysis +1002.5024 Statistical Mechanics +1003.3346 +1004.0810 General Physics +1004.2603 Algebraic Geometry +1006.4432 Methodology +1011.0889 Mesoscale and Nanoscale Physics +1102.3264 Cosmology and Nongalactic Astrophysics +1105.1580 Chaotic Dynamics +1106.1681 Optics +1107.0984 Optics +1107.1330 Analysis of PDEs +1108.0051 +1108.1110 Phenomenology +1108.5960 Representation Theory +1111.2269 +1111.3517 Combinatorics +1112.0194 Differential Geometry +1112.2968 Analysis of PDEs +1112.4969 Mesoscale and Nanoscale Physics +1112.5328 Physics and Society +1112.5674 +1112.6197 +1201.0257 Dynamical Systems +1201.4100 Mesoscale and Nanoscale Physics +1201.4608 +1202.0831 Theory +1202.3529 Classical Analysis and ODEs +1203.0888 Probability +1203.4017 Classical Analysis and ODEs +1205.0180 Lattice +1205.1458 Group Theory +1205.2926 Symbolic Computation +1205.3246 Populations and Evolution +1207.4199 Theory +1208.0760 Superconductivity +1208.0889 Representation Theory +1209.2483 Disordered Systems and Neural Networks +1209.2569 Statistical Mechanics +1209.4386 Functional Analysis +1209.6019 Representation Theory +1210.0409 Strongly Correlated Electrons +1210.1633 Networking and Internet Architecture +1210.2681 Probability +1210.4307 Representation Theory +1210.6726 Disordered Systems and Neural Networks +1212.0529 Probability +1212.1921 Phenomenology +1212.2073 Mesoscale and Nanoscale Physics +1212.4119 +1301.0796 Adaptation and Self-Organizing Systems +1301.1715 Pattern Formation and Solitons +1301.7209 Complex Variables +1301.7612 +1302.6697 Mesoscale and Nanoscale Physics +1303.0081 Physics Education +1303.0448 Computer Vision and Pattern Recognition +1303.1614 Superconductivity +1303.3010 Phenomenology +1303.3191 Combinatorics +1303.3865 Superconductivity +1303.4685 High Energy Astrophysical Phenomena +1304.0021 Category Theory +1304.0290 Differential Geometry +1304.0462 +1304.1626 Representation Theory +1304.5230 +1304.5344 Mesoscale and Nanoscale Physics +1304.5969 Accelerator Physics +1304.6190 Phenomenology +1304.6421 Rings and Algebras +1304.6531 Optimization and Control +1305.0621 Phenomenology +1305.1160 Strongly Correlated Electrons +1305.2070 Disordered Systems and Neural Networks +1305.2307 Classical Analysis and ODEs +1305.3650 +1305.3709 +1305.3790 Statistical Mechanics +1305.5421 Soft Condensed Matter +1305.5504 Strongly Correlated Electrons +1305.7245 Experiment +1305.7500 Mesoscale and Nanoscale Physics +1306.0294 Combinatorics +1306.1751 Information Theory +1306.2461 Fluid Dynamics +1306.3174 Physics and Society +1306.3757 Geometric Topology +1306.4181 Optics +1307.0029 Computational Geometry +1307.1259 Superconductivity +1307.4768 Theory +1307.4812 +1308.0583 Logic in Computer Science +1308.1896 +1308.2857 Physics and Society +1308.3107 Superconductivity +1308.3221 Fluid Dynamics +1308.3260 Optics +1308.3556 Strongly Correlated Electrons +1308.4503 +1308.5532 Differential Geometry +1308.6662 +1308.6740 General Physics +1308.6779 Phenomenology +1309.0091 +1309.0122 +1309.1956 Other Condensed Matter +1309.2314 Rings and Algebras +1309.3226 Materials Science +1309.3294 Classical Analysis and ODEs +1309.3694 Functional Analysis +1309.3768 Accelerator Physics +1309.4813 History and Overview +1309.4976 History and Philosophy of Physics +1309.5445 Instrumentation and Detectors +1309.5567 Classical Analysis and ODEs +1309.5802 Information Theory +1309.5911 Experiment +1309.5979 Statistics Theory +1309.6033 Earth and Planetary Astrophysics +1309.6064 Numerical Analysis +1309.6299 Representation Theory +1309.6308 Materials Science +1309.6311 Numerical Analysis +1309.6312 Mesoscale and Nanoscale Physics +1309.6313 Solar and Stellar Astrophysics +1309.6330 Logic +1309.6332 Phenomenology +1309.6334 High Energy Astrophysical Phenomena +1309.6335 Atomic Physics +1309.6344 Mesoscale and Nanoscale Physics +1309.6346 Physics Education +1309.6347 Computation and Language +1309.6352 Computation and Language +1309.6353 Strongly Correlated Electrons +1309.6360 Probability +1309.6361 Methodology +1309.6364 Plasma Physics +1309.6366 Instrumentation and Methods for Astrophysics +1309.6367 Differential Geometry +1309.6369 Social and Information Networks +1309.6370 +1309.6372 Biological Physics +1309.6373 Mesoscale and Nanoscale Physics +1309.6378 Metric Geometry +1309.6379 Computer Vision and Pattern Recognition +1309.6385 Quantum Algebra +1309.6387 Mesoscale and Nanoscale Physics +1309.6388 Analysis of PDEs +1309.6389 Number Theory +1309.6390 Computer Vision and Pattern Recognition +1309.6391 Computer Vision and Pattern Recognition +1309.6395 Networking and Internet Architecture +1309.6402 Functional Analysis +1309.6403 Algebraic Geometry +1309.6406 Functional Analysis +1309.6407 Strongly Correlated Electrons +1309.6410 Mesoscale and Nanoscale Physics +1309.6414 Probability +1309.6417 Materials Science +1309.6421 Differential Geometry +1309.6422 Networking and Internet Architecture +1309.6423 Complex Variables +1309.6427 Materials Science +1309.6433 Artificial Intelligence +1309.6435 Instrumentation and Methods for Astrophysics +1309.6437 Materials Science +1309.6439 Instrumentation and Detectors +1309.6440 Materials Science +1309.6441 Classical Analysis and ODEs +1309.6442 Materials Science +1309.6443 Disordered Systems and Neural Networks +1309.6444 Biological Physics +1309.6446 Mesoscale and Nanoscale Physics +1309.6448 Analysis of PDEs +1309.6449 Computational Complexity +1309.6450 Cryptography and Security +1309.6454 Analysis of PDEs +1309.6455 Social and Information Networks +1309.6456 Statistical Mechanics +1309.6462 Materials Science +1309.6463 Superconductivity +1309.6466 Networking and Internet Architecture +1309.6468 Cryptography and Security +1309.6469 Rings and Algebras +1309.6476 Instrumentation and Methods for Astrophysics +1309.6479 Quantitative Methods +1309.6481 Algebraic Topology +1309.6482 Optics +1309.6485 Metric Geometry +1309.6486 Accelerator Physics +1309.6488 Statistics Theory +1309.6491 Combinatorics +1309.6494 Accelerator Physics +1309.6495 Materials Science +1309.6504 Computational Complexity +1309.6506 Combinatorics +1309.6507 +1309.6510 Algebraic Topology +1309.6511 Algebraic Topology +1309.6512 Classical Analysis and ODEs +1309.6517 +1309.6519 Analysis of PDEs +1309.6523 Soft Condensed Matter +1309.6526 Geometric Topology +1309.6527 Information Retrieval +1309.6530 High Energy Astrophysical Phenomena +1309.6535 Instrumentation and Detectors +1309.6542 Cosmology and Nongalactic Astrophysics +1309.6545 Social and Information Networks +1309.6552 Functional Analysis +1309.6555 Functional Analysis +1309.6558 Algebraic Geometry +1309.6561 Complex Variables +1309.6566 Classical Analysis and ODEs +1309.6575 Phenomenology +1309.6576 Cryptography and Security +1309.6578 +1309.6584 Neural and Evolutionary Computing +1309.6587 Rings and Algebras +1309.6589 Populations and Evolution +1309.6592 High Energy Astrophysical Phenomena +1309.6596 Probability +1309.6598 Number Theory +1309.6599 Phenomenology +1309.6601 Analysis of PDEs +1309.6602 Statistics Theory +1309.6604 Probability +1309.6608 Computers and Society +1309.6609 Methodology +1309.6616 Optics +1309.6618 Physics and Society +1309.6621 Numerical Analysis +astro-ph/0601362 +astro-ph/0612421 +hep-th/9502163 Theory +hep-th/9503173 Theory +0706.2851 Probability +0708.0359 Geometric Topology +0708.3977 Algebraic Geometry +0710.2070 Algebraic Geometry +0710.2645 Algebraic Topology +0711.1683 Category Theory +0809.4791 Algebraic Topology +0810.2506 +0901.1908 Computational Geometry +0904.3895 Algebraic Topology +0905.4118 Metric Geometry +0907.4646 Strongly Correlated Electrons +0907.5482 Differential Geometry +0908.3545 Data Structures and Algorithms +0911.2484 Computational Geometry +1002.3786 Statistics Theory +1003.0304 +1003.2693 +1004.2663 Differential Geometry +1004.3712 General Physics +1006.3835 Classical Analysis and ODEs +1009.1926 Methodology +1009.4345 Statistics Theory +1010.3774 Analysis of PDEs +1011.6263 Instrumentation and Detectors +1012.3043 Functional Analysis +1101.0087 +1101.5660 Logic +1103.0878 Data Analysis, Statistics and Probability +1103.1584 Symplectic Geometry +1103.2999 Differential Geometry +1104.1978 Analysis of PDEs +1105.2679 Probability +1105.4979 Instrumentation and Detectors +1106.0132 +1106.0951 Functional Analysis +1106.3942 Phenomenology +1106.6104 Optimization and Control +1107.3084 Experiment +1107.5862 Algebraic Geometry +1108.2164 Combinatorics +1108.3659 Rings and Algebras +1108.5616 Probability +1108.6301 +1109.1572 Physics and Society +1109.4888 Quantum Algebra +1110.1050 Dynamical Systems +1110.5737 Materials Science +1110.6518 Quantum Gases +1110.6697 General Physics +1112.1950 Mesoscale and Nanoscale Physics +1112.2493 Chaotic Dynamics +1112.2554 Number Theory +1112.2932 Mesoscale and Nanoscale Physics +1201.0413 Category Theory +1201.2647 Classical Analysis and ODEs +1201.6574 Differential Geometry +1202.0892 Cosmology and Nongalactic Astrophysics +1202.5217 Mesoscale and Nanoscale Physics +1202.5309 Cosmology and Nongalactic Astrophysics +1202.5668 Combinatorics +1202.5724 Optics +1202.5761 General Physics +1202.6258 Optimization and Control +1203.0849 Instrumentation and Methods for Astrophysics +1203.2113 +1203.4364 Computers and Society +1203.4807 Physics and Society +1204.0205 Logic +1204.4085 Number Theory +1204.4120 Phenomenology +1204.5133 +1205.2472 Theory +1205.4031 Quantum Gases +1205.5134 Information Theory +1205.5861 Differential Geometry +1205.6715 +1205.6746 Cosmology and Nongalactic Astrophysics +1206.0116 +1206.0732 Cosmology and Nongalactic Astrophysics +1206.1197 Materials Science +1206.3990 +1206.7095 Theory +1207.0106 Experiment +1207.0123 K-Theory and Homology +1207.0816 Cosmology and Nongalactic Astrophysics +1207.3088 +1207.3165 Data Structures and Algorithms +1207.5427 Mesoscale and Nanoscale Physics +1207.6785 Combinatorics +1208.0229 Cosmology and Nongalactic Astrophysics +1208.0618 +1208.1179 Optimization and Control +1208.1773 Strongly Correlated Electrons +1208.3477 Experiment +1208.3838 Quantum Gases +1208.3861 +1208.5200 Dynamical Systems +1208.5948 Theory +1208.6395 Dynamical Systems +1209.0236 Information Theory +1209.0400 Complex Variables +1209.2178 Databases +1209.3268 +1209.5193 Algebraic Topology +1209.6071 Phenomenology +1209.6256 Rings and Algebras +1209.6304 +1209.6547 Physics and Society +1210.0185 Strongly Correlated Electrons +1210.1767 Phenomenology +1210.1971 Mesoscale and Nanoscale Physics +1210.2033 Mesoscale and Nanoscale Physics +1210.2418 Superconductivity +1210.2556 Combinatorics +1210.3315 Complex Variables +1210.3757 Number Theory +1210.4098 Category Theory +1210.4623 Materials Science +1210.5627 Experiment +1210.6117 Phenomenology +1210.6356 Strongly Correlated Electrons +1210.6598 Phenomenology +1210.6956 Computational Engineering, Finance, and Science +1210.7471 Experiment +1210.7524 Functional Analysis +1210.7997 Number Theory +1211.0033 Statistical Mechanics +1211.0881 Mesoscale and Nanoscale Physics +1211.2438 Dynamical Systems +1211.2971 Theory +1211.3070 Mesoscale and Nanoscale Physics +1211.3194 +1211.3643 Computation and Language +1211.4548 Superconductivity +1211.5403 +1211.6359 Combinatorics +1211.6494 Dynamical Systems +1211.6839 Physics and Society +1211.7292 Materials Science +1212.2167 +1212.2699 Algebraic Geometry +1212.3460 Phenomenology +1212.3991 +1212.4087 Strongly Correlated Electrons +1212.4216 Dynamical Systems +1212.4290 Statistical Mechanics +1212.4563 Experiment +1212.4620 Experiment +1212.4960 Mesoscale and Nanoscale Physics +1212.5127 Instrumentation and Detectors +1212.5828 Geophysics +1301.0177 Probability +1301.0375 +1301.1090 General Finance +1301.2185 Optics +1301.2553 Commutative Algebra +1301.2666 Statistical Mechanics +1301.3302 Networking and Internet Architecture +1301.3391 Learning +1301.3476 Learning +1301.4137 Artificial Intelligence +1301.5552 +1301.6141 Statistical Finance +1301.6157 Information Theory +1301.7014 Phenomenology +1301.7467 +1301.7602 Discrete Mathematics +1301.7607 Soft Condensed Matter +1302.0484 Statistical Mechanics +1302.0620 Algebraic Geometry +1302.0643 Cosmology and Nongalactic Astrophysics +1302.1220 General Physics +1302.2386 Dynamical Systems +1302.2533 Statistical Mechanics +1302.3692 Materials Science +1302.4038 Algebraic Geometry +1302.4700 +1302.4709 +1302.4775 Mesoscale and Nanoscale Physics +1302.4842 General Mathematics +1302.5043 General Physics +1302.5183 General Physics +1302.5937 +1302.6131 Combinatorics +1302.6273 General Physics +1302.6441 Phenomenology +1302.6556 Databases +1302.7196 Superconductivity +1302.7233 Mesoscale and Nanoscale Physics +1303.0045 Social and Information Networks +1303.0055 +1303.0344 Social and Information Networks +1303.0381 Information Theory +1303.0888 Combinatorics +1303.1016 Data Structures and Algorithms +1303.1626 Information Theory +1303.1644 High Energy Astrophysical Phenomena +1303.1678 Numerical Analysis +1303.1886 Statistical Mechanics +1303.1888 Solar and Stellar Astrophysics +1303.1993 Optimization and Control +1303.1994 Logic in Computer Science +1303.2119 Cosmology and Nongalactic Astrophysics +1303.2121 High Energy Astrophysical Phenomena +1303.2123 History and Philosophy of Physics +1303.2124 Plasma Physics +1303.2126 +1303.2131 High Energy Astrophysical Phenomena +1303.2136 Information Theory +1303.2137 +1303.2138 Combinatorics +1303.2139 Quantum Algebra +1303.2143 Formal Languages and Automata Theory +1303.2144 Combinatorics +1303.2149 Information Theory +1303.2155 High Energy Astrophysical Phenomena +1303.2156 Information Retrieval +1303.2159 +1303.2162 Computational Geometry +1303.2166 High Energy Astrophysical Phenomena +1303.2168 Statistical Mechanics +1303.2169 Networking and Internet Architecture +1303.2170 Genomics +1303.2171 Distributed, Parallel, and Cluster Computing +1303.2172 High Energy Astrophysical Phenomena +1303.2175 Hardware Architecture +1303.2176 Physics and Society +1303.2177 Combinatorics +1303.2178 Materials Science +1303.2181 Accelerator Physics +1303.2182 Functional Analysis +1303.2189 Analysis of PDEs +1303.2193 Materials Science +1303.2197 Materials Science +1303.2200 +1303.2202 Digital Libraries +1303.2204 Biological Physics +1303.2206 Earth and Planetary Astrophysics +1303.2207 Solar and Stellar Astrophysics +1303.2211 Multimedia +1303.2215 Neural and Evolutionary Computing +1303.2219 Cryptography and Security +1303.2223 Computational Engineering, Finance, and Science +1303.2224 Strongly Correlated Electrons +1303.2225 Fluid Dynamics +1303.2231 Superconductivity +1303.2232 Instrumentation and Detectors +1303.2237 Analysis of PDEs +1303.2238 Numerical Analysis +1303.2240 Soft Condensed Matter +1303.2247 Dynamical Systems +1303.2248 Algebraic Geometry +1303.2250 Numerical Analysis +1303.2251 Information Theory +1303.2255 Information Theory +1303.2262 Phenomenology +1303.2265 +1303.2267 Optics +1303.2276 Number Theory +1303.2277 Information Retrieval +1303.2279 Complex Variables +1303.2282 Cryptography and Security +1303.2283 Number Theory +1303.2285 Data Structures and Algorithms +1303.2290 Mesoscale and Nanoscale Physics +1303.2292 Human-Computer Interaction +1303.2294 Networking and Internet Architecture +1303.2298 +1303.2306 Probability +1303.2309 Information Theory +1303.2310 Databases +1303.2314 Learning +1303.2316 Methodology +1303.2317 Other Computer Science +1303.2319 Dynamical Systems +1303.2322 Complex Variables +1303.2326 High Energy Astrophysical Phenomena +1303.2327 Fluid Dynamics +1303.2330 Multimedia +1303.2333 Tissues and Organs +1303.2337 Functional Analysis +1303.2344 Optimization and Control +1303.2350 Functional Analysis +1303.2352 Number Theory +1303.2359 Disordered Systems and Neural Networks +1303.2362 Number Theory +1303.2364 Social and Information Networks +1303.2365 Social and Information Networks +1303.2366 Solar and Stellar Astrophysics +1303.2369 Social and Information Networks +1303.2380 Probability +1303.2382 +1303.2386 Probability +1303.2387 Combinatorics +1303.2389 Information Theory +1303.2395 Dynamical Systems +1303.2398 Other Quantitative Biology +1303.2399 Biomolecules +1303.2400 Analysis of PDEs +1303.2403 Analysis of PDEs +1303.2405 Combinatorics +1303.2409 Systems and Control +1303.2411 Genomics +1303.2417 Learning +1303.2422 Optimization and Control +1303.2435 Number Theory +1303.2437 Computer Vision and Pattern Recognition +1303.2439 Computer Vision and Pattern Recognition +1303.2440 +1303.2443 Analysis of PDEs +1303.2444 Analysis of PDEs +1303.2445 Numerical Analysis +1303.2448 Computation and Language +1303.2449 Computation and Language +1303.2455 +1303.2457 Algebraic Geometry +1303.2460 Strongly Correlated Electrons +1303.2462 Discrete Mathematics +1303.2465 Computer Vision and Pattern Recognition +1303.2469 +1303.2474 Quantum Gases +1303.2477 Cosmology and Nongalactic Astrophysics +1303.2484 Spectral Theory +1303.2485 Operator Algebras +1303.2486 Optimization and Control +1303.2488 Machine Learning +1303.2489 Logic in Computer Science +1303.2491 Differential Geometry +1303.2495 Probability +1303.2496 Strongly Correlated Electrons +1303.2505 Probability +1303.2507 Logic in Computer Science +1303.2512 Phenomenology +1303.2516 +1303.2517 Machine Learning +1303.2523 Instrumentation and Detectors +1303.2524 Numerical Analysis +1303.2527 Complex Variables +1303.2531 Chemical Physics +1303.2536 Combinatorics +1303.2538 Cosmology and Nongalactic Astrophysics +1303.2543 Soft Condensed Matter +1303.2544 Mesoscale and Nanoscale Physics +1303.2546 Data Structures and Algorithms +1303.2547 Information Theory +1303.2550 Number Theory +1303.2553 Networking and Internet Architecture +1303.2554 Software Engineering +1303.2556 General Physics +1303.2559 Fluid Dynamics +1303.2564 Discrete Mathematics +1303.2570 +1303.2572 Logic +1303.2576 High Energy Astrophysical Phenomena +1303.2577 General Physics +1303.2579 Information Theory +1303.2580 Computational Complexity +1303.2581 Symplectic Geometry +1303.2586 Superconductivity +1303.2591 Logic +1303.2593 Other Computer Science +1303.2594 Functional Analysis +1303.2595 Databases +1303.2597 General Physics +1303.2598 Logic +1303.2608 Number Theory +1303.2610 Computer Vision and Pattern Recognition +1303.2611 Probability +1303.2619 Distributed, Parallel, and Cluster Computing +1303.2626 Theory +1303.2629 Solar and Stellar Astrophysics +1303.2630 High Energy Astrophysical Phenomena +1303.2635 Analysis of PDEs +1303.2637 Computational Physics +1303.2638 Medical Physics +1303.2639 Mesoscale and Nanoscale Physics +1303.2640 Atomic Physics +1303.2642 Geophysics +1303.2643 Learning +1303.2646 Software Engineering +math/0308137 Classical Analysis and ODEs +0805.0524 Algebraic Geometry +0812.2223 Differential Geometry +0912.1644 Algebraic Geometry +1003.2612 Symplectic Geometry +1004.1659 Phenomenology +1010.3449 Algebraic Geometry +1011.5369 Combinatorics +1011.6592 Phenomenology +1101.5856 Mesoscale and Nanoscale Physics +1107.2748 Pricing of Securities +1107.5690 +1107.5948 +1109.0764 +1111.3661 Plasma Physics +1112.0280 Functional Analysis +1201.0552 Systems and Control +1204.5205 Rings and Algebras +1206.0690 K-Theory and Homology +1206.4108 Solar and Stellar Astrophysics +1206.4386 Populations and Evolution +1207.1446 Phenomenology +1208.5350 Neurons and Cognition +1208.5677 +1208.5703 Optimization and Control +1209.0557 +1209.1097 Phenomenology +1209.5846 Statistical Mechanics +1209.5909 Metric Geometry +1210.1312 +1210.7607 Mesoscale and Nanoscale Physics +1211.0012 Differential Geometry +1211.2219 Analysis of PDEs +1211.6442 Theory +1211.7036 +1212.1127 Phenomenology +1212.1377 Computational Finance +1212.2201 Commutative Algebra +1212.3283 Cosmology and Nongalactic Astrophysics +1212.4826 Theory +1212.5513 Solar and Stellar Astrophysics +1301.0312 Soft Condensed Matter +1301.0705 +1301.2189 +1301.2334 +1301.3483 Phenomenology +1301.3505 Materials Science +1301.4544 +1302.2215 Pattern Formation and Solitons +1302.3047 Algebraic Geometry +1302.3461 Superconductivity +1302.3884 Phenomenology +1302.4743 Phenomenology +1302.4897 +1302.6932 Information Theory +1303.1096 Theory +1303.1195 Symplectic Geometry +1303.3132 +1303.4587 Phenomenology +1303.6133 Mesoscale and Nanoscale Physics +1303.6708 Neurons and Cognition +1303.6913 +1303.6978 Cosmology and Nongalactic Astrophysics +1304.1253 Phenomenology +1304.1424 Data Structures and Algorithms +1304.2928 Functional Analysis +1304.3028 Algebraic Geometry +1304.3461 Phenomenology +1304.4262 Phenomenology +1304.4675 Cosmology and Nongalactic Astrophysics +1304.5167 Strongly Correlated Electrons +1304.5422 Experiment +1304.5646 +1304.5845 Phenomenology +1304.6259 Experiment +1304.6428 High Energy Astrophysical Phenomena +1304.6877 Strongly Correlated Electrons +1304.7017 +1304.8056 Materials Science +1305.1014 +1305.1649 Phenomenology +1305.2690 Materials Science +1305.3605 Mesoscale and Nanoscale Physics +1305.3949 Phenomenology +1305.4320 Phenomenology +1305.5322 +1305.5420 Phenomenology +1305.5450 Statistical Mechanics +1305.6605 Complex Variables +1305.6606 High Energy Astrophysical Phenomena +1305.6770 +1305.7251 +1305.7404 High Energy Astrophysical Phenomena +1306.0347 Statistical Mechanics +1306.3329 Spectral Theory +1306.3816 Theory +1306.4023 Disordered Systems and Neural Networks +1306.4281 Phenomenology +1306.4390 Complex Variables +1306.4916 Numerical Analysis +1306.5558 Optics +1307.0340 +1307.0362 Phenomenology +1307.1006 Soft Condensed Matter +1307.1189 Experiment +1307.1736 Populations and Evolution +1307.2297 Statistics Theory +1307.4058 Subcellular Processes +1307.4195 +1307.4922 Molecular Networks +1307.5821 General Physics +1307.6184 Cosmology and Nongalactic Astrophysics +1308.0669 General Finance +1308.1441 Strongly Correlated Electrons +1308.1466 Networking and Internet Architecture +1308.1482 Systems and Control +1308.3680 +1308.3825 Algebraic Topology +1308.3828 High Energy Astrophysical Phenomena +1308.3838 +1308.4044 +1308.4064 Data Structures and Algorithms +1308.4077 Information Theory +1308.4096 Cosmology and Nongalactic Astrophysics +1308.4125 Software Engineering +1308.4126 +1308.4127 Representation Theory +1308.4128 Methodology +1308.4134 +1308.4144 Solar and Stellar Astrophysics +1308.4152 Algebraic Geometry +1308.4153 Algebraic Geometry +1308.4166 Distributed, Parallel, and Cluster Computing +1308.4169 Emerging Technologies +1308.4171 Logic in Computer Science +1308.4175 Representation Theory +1308.4183 Probability +1308.4185 Quantum Algebra +1308.4186 Computational Geometry +1308.4188 Representation Theory +1308.4191 Optimization and Control +1308.4192 Number Theory +1308.4194 Probability +1308.4197 Discrete Mathematics +1308.4200 Computer Vision and Pattern Recognition +1308.4203 Dynamical Systems +1308.4205 Fluid Dynamics +1308.4208 Distributed, Parallel, and Cluster Computing +1308.4211 Machine Learning +1308.4215 Analysis of PDEs +1308.4217 Numerical Analysis +1308.4223 Representation Theory +1308.4225 Statistical Mechanics +1308.4226 Physics Education +1308.4227 Probability +1308.4230 Dynamical Systems +1308.4244 Algebraic Geometry +1308.4245 Neurons and Cognition +1308.4251 Combinatorics +1308.4252 Number Theory +1308.4259 Physics and Society +1308.4263 Multimedia +1308.4268 Information Theory +1308.4274 Systems and Control +1308.4276 Statistical Finance +1308.4280 Networking and Internet Architecture +1308.4285 Analysis of PDEs +1308.4286 Mesoscale and Nanoscale Physics +1308.4287 Combinatorics +1308.4289 Phenomenology +1308.4290 Group Theory +1308.4291 Computational Geometry +1308.4292 Numerical Analysis +1308.4294 Robotics +1308.4298 Algebraic Geometry +1308.4304 Algebraic Geometry +1308.4307 Differential Geometry +1308.4317 Materials Science +1308.4321 Combinatorics +1308.4334 Combinatorics +1308.4335 Atmospheric and Oceanic Physics +1308.4338 Information Theory +1308.4341 Combinatorics +1308.4346 Analysis of PDEs +1308.4349 +1308.4352 Solar and Stellar Astrophysics +1308.4354 Solar and Stellar Astrophysics +1308.4355 Materials Science +1308.4356 Mesoscale and Nanoscale Physics +1308.4359 Physics Education +1308.4363 Pricing of Securities +1308.4364 Classical Analysis and ODEs +1308.4373 +1308.4375 Disordered Systems and Neural Networks +1308.4377 Algebraic Geometry +1308.4378 Materials Science +1308.4380 Astrophysics of Galaxies +1308.4381 Algebraic Geometry +1308.4382 Quantum Gases +1308.4385 Statistics Theory +1308.4392 Complex Variables +hep-ph/0512323 Phenomenology +math/0411412 Differential Geometry +math/0503111 Commutative Algebra +math/0601245 Commutative Algebra +math/0610168 Commutative Algebra +math/0610662 Commutative Algebra +quant-ph/0609094 +0704.3741 Materials Science +0712.3729 Functional Analysis +0808.0135 Functional Analysis +0901.2440 General Mathematics +0905.1754 +0907.2331 Algebraic Geometry +1003.1077 Analysis of PDEs +1003.2609 Superconductivity +1005.5084 Instrumentation and Detectors +1007.3543 Differential Geometry +1101.2370 Differential Geometry +1102.5157 Fluid Dynamics +1103.2229 Mesoscale and Nanoscale Physics +1103.3404 Operator Algebras +1111.4452 Probability +1111.5372 Exactly Solvable and Integrable Systems +1112.0509 Cosmology and Nongalactic Astrophysics +1112.4262 K-Theory and Homology +1201.1964 Networking and Internet Architecture +1201.3245 Methodology +1202.1711 Cosmology and Nongalactic Astrophysics +1203.1469 Mesoscale and Nanoscale Physics +1204.0387 Phenomenology +1204.2488 Experiment +1204.4045 Logic +1204.5855 +1205.5913 Combinatorics +1206.1272 Statistical Finance +1206.2620 Statistics Theory +1206.3966 Combinatorics +1206.4912 Data Structures and Algorithms +1207.0885 +1207.1062 Group Theory +1207.4509 Quantum Gases +1207.6880 Probability +1208.2107 +1208.4113 Soft Condensed Matter +1208.4160 Cosmology and Nongalactic Astrophysics +1209.2109 Spectral Theory +1209.2720 Differential Geometry +1210.2913 Fluid Dynamics +1210.6252 Analysis of PDEs +1210.6425 Strongly Correlated Electrons +1210.8239 Number Theory +1211.0856 Pricing of Securities +1211.1080 +1211.3044 Theory +1211.3883 History and Philosophy of Physics +1211.6792 Dynamical Systems +1212.0428 Other Condensed Matter +1212.3144 Materials Science +1212.4202 Strongly Correlated Electrons +1212.4738 Number Theory +1212.4907 +1301.2124 Phenomenology +1301.2923 Theory +1301.3270 Representation Theory +1301.4433 Mesoscale and Nanoscale Physics +1301.6003 Superconductivity +1301.6122 Experiment +1302.1172 Algebraic Topology +1302.2896 Soft Condensed Matter +1302.3168 +1302.4579 Superconductivity +1302.5976 Number Theory +1302.6605 Medical Physics +1303.5277 Classical Physics +1303.5604 General Physics +1304.0665 +1304.0922 Phenomenology +1304.1803 Theory +1304.1822 Phenomenology +1304.7092 +1304.7691 Phenomenology +1304.7927 Phenomenology +1305.1765 Lattice +1305.2443 Quantum Gases +1305.3188 +1305.3272 Phenomenology +1305.3872 Quantum Gases +1305.4033 Cosmology and Nongalactic Astrophysics +1305.6149 Mesoscale and Nanoscale Physics +1305.7394 Dynamical Systems +1306.0016 Plasma Physics +1306.0483 Materials Science +1306.0521 Superconductivity +1306.1606 +1306.2543 Theory +1306.2965 Materials Science +1306.2994 Optics +1306.4276 Mesoscale and Nanoscale Physics +1306.4400 +1306.4923 Materials Science +1307.0342 Mesoscale and Nanoscale Physics +1307.1184 Soft Condensed Matter +1307.1704 Mesoscale and Nanoscale Physics +1307.1886 Combinatorics +1307.2300 Solar and Stellar Astrophysics +1307.2762 Strongly Correlated Electrons +1307.2910 Quantum Gases +1307.3114 +1307.3249 Phenomenology +1307.3309 Superconductivity +1307.3892 Instrumentation and Methods for Astrophysics +1307.4071 Strongly Correlated Electrons +1307.4101 Other Statistics +1307.4946 Mesoscale and Nanoscale Physics +1307.6166 +1307.7210 Networking and Internet Architecture +1307.7524 Probability +1307.8284 Probability +1308.1560 Data Analysis, Statistics and Probability +1308.1928 Theory +1308.2977 Materials Science +1308.3058 Information Theory +1308.3661 Superconductivity +1308.4281 Astrophysics of Galaxies +1308.4288 Chaotic Dynamics +1308.5483 Functional Analysis +1308.6120 Portfolio Management +1308.6622 Chemical Physics +1309.0506 Cosmology and Nongalactic Astrophysics +1309.2192 Mesoscale and Nanoscale Physics +1309.3006 Computer Vision and Pattern Recognition +1309.3080 Mesoscale and Nanoscale Physics +1309.4828 Instrumentation and Detectors +1309.5046 Trading and Market Microstructure +1309.5243 Algebraic Geometry +1309.5317 Optimization and Control +1309.5379 Combinatorics +1309.5695 Cosmology and Nongalactic Astrophysics +1309.6045 K-Theory and Homology +1309.6137 Geometric Topology +1309.6381 Accelerator Physics +1309.6398 Superconductivity +1309.6474 Computer Science and Game Theory +1309.6502 +1309.6536 Statistics Theory +1309.6577 Geophysics +1309.6590 History and Philosophy of Physics +1309.6629 Adaptation and Self-Organizing Systems +1309.6650 Computation and Language +1309.6651 Discrete Mathematics +1309.6655 Symbolic Computation +1309.6661 Analysis of PDEs +1309.6667 Strongly Correlated Electrons +1309.6669 Combinatorics +1309.6670 Accelerator Physics +1309.6671 Strongly Correlated Electrons +1309.6673 Strongly Correlated Electrons +1309.6674 Cosmology and Nongalactic Astrophysics +1309.6675 Strongly Correlated Electrons +1309.6680 Strongly Correlated Electrons +1309.6684 +1309.6686 Combinatorics +1309.6689 Data Structures and Algorithms +1309.6691 Computer Vision and Pattern Recognition +1309.6692 Cell Behavior +1309.6693 Dynamical Systems +1309.6694 Commutative Algebra +1309.6696 Number Theory +1309.6698 High Energy Astrophysical Phenomena +1309.6700 Combinatorics +1309.6701 Information Theory +1309.6703 +1309.6704 Experiment +1309.6709 +1309.6714 Mesoscale and Nanoscale Physics +1309.6719 Optics +1309.6720 Combinatorics +1309.6721 Functional Analysis +1309.6722 Computation and Language +1309.6723 Distributed, Parallel, and Cluster Computing +1309.6725 Trading and Market Microstructure +1309.6726 Soft Condensed Matter +1309.6732 Information Theory +1309.6737 Statistical Mechanics +1309.6739 Plasma Physics +1309.6744 +1309.6745 Computation +1309.6749 Statistical Mechanics +1309.6758 Classical Analysis and ODEs +1309.6762 Materials Science +1309.6764 Materials Science +1309.6766 Statistics Theory +1309.6767 Number Theory +1309.6770 Probability +1309.6773 Accelerator Physics +1309.6774 Instrumentation and Methods for Astrophysics +1309.6775 Instrumentation and Methods for Astrophysics +1309.6777 +1309.6778 Algebraic Geometry +1309.6788 Information Theory +1309.6790 Statistics Theory +1309.6791 Statistical Mechanics +1309.6795 Accelerator Physics +1309.6797 Computer Science and Game Theory +1309.6798 Classical Analysis and ODEs +1309.6801 Combinatorics +1309.6811 Learning +1309.6812 Learning +1309.6813 Learning +1309.6814 Learning +1309.6815 Databases +1309.6816 Artificial Intelligence +1309.6817 Artificial Intelligence +1309.6818 Learning +1309.6819 Learning +1309.6820 Learning +1309.6821 Learning +1309.6822 Artificial Intelligence +1309.6823 Learning +1309.6824 Artificial Intelligence +1309.6826 Artificial Intelligence +1309.6827 Artificial Intelligence +1309.6828 Artificial Intelligence +1309.6829 Artificial Intelligence +1309.6830 Learning +1309.6831 Learning +1309.6832 Artificial Intelligence +1309.6833 Learning +1309.6834 Learning +1309.6835 Learning +1309.6836 Artificial Intelligence +1309.6838 Learning +1309.6839 Artificial Intelligence +1309.6840 Learning +1309.6841 Social and Information Networks +1309.6842 Artificial Intelligence +1309.6843 Artificial Intelligence +1309.6844 Artificial Intelligence +1309.6845 Artificial Intelligence +1309.6846 Artificial Intelligence +1309.6847 Learning +1309.6848 Artificial Intelligence +1309.6849 Learning +1309.6850 Learning +1309.6851 Data Structures and Algorithms +1309.6852 Learning +1309.6854 Computer Science and Game Theory +1309.6855 Artificial Intelligence +1309.6856 Artificial Intelligence +1309.6857 Artificial Intelligence +1309.6858 Learning +1309.6859 Discrete Mathematics +1309.6860 Learning +1309.6862 Learning +1309.6863 Learning +1309.6864 Artificial Intelligence +1309.6865 Learning +1309.6867 Learning +1309.6868 Learning +1309.6869 Learning +1309.6870 Artificial Intelligence +1309.6871 Artificial Intelligence +1309.6872 Artificial Intelligence +1309.6874 Learning +1309.6875 Learning +1309.6876 Machine Learning +1309.6879 +1309.6881 Fluid Dynamics +1309.6882 Functional Analysis +1309.6887 Phenomenology +1309.6890 +1309.6891 Statistical Mechanics +1309.6892 Soft Condensed Matter +1309.6894 Theory +1309.6897 Computation +1309.6904 Algebraic Geometry +1309.6906 Methodology +1309.6908 Information Retrieval +1309.6910 Combinatorics +1309.6911 Operator Algebras +1309.6913 Classical Physics +1309.6914 Formal Languages and Automata Theory +1309.6918 Mesoscale and Nanoscale Physics +1309.6919 Computational Engineering, Finance, and Science +1309.6921 Cosmology and Nongalactic Astrophysics +1309.6923 Accelerator Physics +1309.6930 Combinatorics +1309.6931 Classical Analysis and ODEs +1309.6933 Statistics Theory +1309.6938 Analysis of PDEs +1309.6940 Probability +1309.6941 Group Theory +1309.6942 Mesoscale and Nanoscale Physics +1309.6943 Soft Condensed Matter +1309.6951 Cosmology and Nongalactic Astrophysics +1309.6952 Category Theory +1309.6959 Optimization and Control +1309.6967 Analysis of PDEs +1309.6972 Disordered Systems and Neural Networks +1309.6974 High Energy Astrophysical Phenomena +1309.6976 Optimization and Control +1309.6980 Number Theory +1309.6984 Algebraic Geometry +1309.6988 Theory +1309.6989 Artificial Intelligence +1309.6994 Instrumentation and Methods for Astrophysics +1309.6997 Algebraic Topology +1309.7004 Artificial Intelligence +1309.7021 Materials Science +1309.7023 Materials Science +1309.7029 Phenomenology +1309.7034 Soft Condensed Matter +1309.7035 Phenomenology +cond-mat/0404209 Soft Condensed Matter +math/0507304 Commutative Algebra +math/0508236 Commutative Algebra +quant-ph/0612060 +0806.0701 +0806.0721 +0808.3041 Statistical Mechanics +0809.5091 Analysis of PDEs +0907.5346 Strongly Correlated Electrons +0908.3501 Fluid Dynamics +1005.5630 Distributed, Parallel, and Cluster Computing +1007.2230 Commutative Algebra +1009.4279 Methodology +1010.0520 Statistics Theory +1011.2331 Probability +1102.0110 Statistics Theory +1102.1741 Probability +1103.2203 Statistical Mechanics +1104.1736 Phenomenology +1104.3074 Statistics Theory +1105.2135 Statistics Theory +1106.3576 Theory +1106.4721 Probability +1106.4739 Methodology +1110.6037 Fluid Dynamics +1111.1498 Optimization and Control +1111.5927 Statistics Theory +1112.1917 +1201.2716 Probability +1201.3870 Differential Geometry +1202.4007 Pricing of Securities +1202.6448 Chemical Physics +1205.0642 Data Structures and Algorithms +1205.0657 Quantum Gases +1206.2569 High Energy Astrophysical Phenomena +1206.5393 Risk Management +1207.1485 High Energy Astrophysical Phenomena +1208.6534 Fluid Dynamics +1209.2478 High Energy Astrophysical Phenomena +1209.4844 +1210.2469 High Energy Astrophysical Phenomena +1210.5615 Mesoscale and Nanoscale Physics +1210.6889 +1211.1004 K-Theory and Homology +1211.2681 Algebraic Geometry +1211.3703 Number Theory +1211.4891 Information Theory +1211.6383 Complex Variables +1211.7259 Probability +1212.3759 Quantum Gases +1212.4532 Rings and Algebras +1212.4949 General Physics +1301.1668 Number Theory +1301.7041 +1302.2815 Analysis of PDEs +1302.3942 Mesoscale and Nanoscale Physics +1302.4017 Mesoscale and Nanoscale Physics +1302.6741 Statistics Theory +1303.0201 Fluid Dynamics +1303.1625 Biological Physics +1303.2086 Theory +1303.2715 Analysis of PDEs +1304.2186 Statistics Theory +1304.5077 Analysis of PDEs +1304.5208 Logic +1304.6008 Combinatorics +1304.6544 Probability +1304.7141 Analysis of PDEs +1304.7142 Analysis of PDEs +1305.1829 Probability +1305.1921 Phenomenology +1305.2207 +1305.4427 Superconductivity +1305.5768 Algebraic Geometry +1305.6392 Analysis of PDEs +1306.3695 Strongly Correlated Electrons +1306.5725 High Energy Astrophysical Phenomena +1306.5739 +1307.1467 Astrophysics of Galaxies +1307.2024 Mesoscale and Nanoscale Physics +1307.2135 Soft Condensed Matter +1307.2498 Mesoscale and Nanoscale Physics +1307.3170 Strongly Correlated Electrons +1307.4251 Number Theory +1307.4977 Physics and Society +1307.5307 +1307.5352 +1307.5475 Materials Science +1307.7639 Theory +1308.0197 +1308.0853 Classical Analysis and ODEs +1308.1982 +1308.3525 Theory +1308.4488 Cosmology and Nongalactic Astrophysics +1308.4976 +1308.6314 Mesoscale and Nanoscale Physics +1308.6656 Cosmology and Nongalactic Astrophysics +1309.1710 +1309.1988 Pricing of Securities +1309.2537 High Energy Astrophysical Phenomena +1309.2830 Strongly Correlated Electrons +1309.5581 Materials Science +1309.6901 Mesoscale and Nanoscale Physics +1310.0026 Astrophysics of Galaxies +1310.0275 Methodology +1310.0889 Biomolecules +1310.0911 Analysis of PDEs +1310.1059 Numerical Analysis +1310.2505 +1310.2813 Differential Geometry +1310.3749 Materials Science +1310.4342 Artificial Intelligence +1310.4494 +1310.5029 +1310.5088 +1310.6427 Information Theory +1310.7026 Earth and Planetary Astrophysics +1310.7094 Materials Science +1311.4039 Algebraic Geometry +1311.5040 Solar and Stellar Astrophysics +1311.5314 Geometric Topology +1311.5553 Chaotic Dynamics +1311.6457 +1312.0101 Analysis of PDEs +1312.0755 Probability +1312.1027 Computational Complexity +1312.1066 Exactly Solvable and Integrable Systems +1312.1467 Theory +1312.1558 Data Structures and Algorithms +1312.1916 Instrumentation and Methods for Astrophysics +1312.1961 Distributed, Parallel, and Cluster Computing +1312.2086 Computational Complexity +1312.2890 Number Theory +1312.2891 Analysis of PDEs +1312.2949 Performance +1312.2950 Neurons and Cognition +1312.2951 Materials Science +1312.2960 +1312.2965 Solar and Stellar Astrophysics +1312.2971 Metric Geometry +1312.2972 Theory +1312.2978 Experiment +1312.2980 Probability +1312.2983 Information Theory +1312.2993 Geometric Topology +1312.2994 Combinatorics +1312.2995 Representation Theory +1312.2996 Fluid Dynamics +1312.2998 Distributed, Parallel, and Cluster Computing +1312.3000 Mesoscale and Nanoscale Physics +1312.3002 Logic +1312.3003 Computational Complexity +1312.3008 Exactly Solvable and Integrable Systems +1312.3011 Phenomenology +1312.3019 Analysis of PDEs +1312.3020 Distributed, Parallel, and Cluster Computing +1312.3023 Cell Behavior +1312.3024 Data Structures and Algorithms +1312.3025 Algebraic Geometry +1312.3026 Metric Geometry +1312.3027 Computation +1312.3032 Theory +1312.3035 Computer Vision and Pattern Recognition +1312.3037 Optics +1312.3038 Statistics Theory +1312.3042 Functional Analysis +1312.3045 Software Engineering +1312.3046 Statistics Theory +1312.3048 Systems and Control +1312.3050 Lattice +1312.3052 Classical Analysis and ODEs +1312.3053 Differential Geometry +1312.3058 Statistics Theory +1312.3059 Logic +1312.3061 Computer Vision and Pattern Recognition +1312.3062 Computer Vision and Pattern Recognition +1312.3064 Mesoscale and Nanoscale Physics +1312.3066 Materials Science +1312.3067 Statistical Mechanics +1312.3068 Combinatorics +1312.3072 Combinatorics +1312.3074 Materials Science +1312.3075 Combinatorics +1312.3076 Commutative Algebra +1312.3077 Digital Libraries +1312.3078 Methodology +1312.3082 Phenomenology +1312.3091 Statistics Theory +1312.3092 Information Theory +1312.3095 +1312.3096 Experiment +1312.3098 Dynamical Systems +1312.3100 Materials Science +1312.3106 Soft Condensed Matter +1312.3109 Instrumentation and Detectors +1312.3113 Numerical Analysis +1312.3115 Genomics +1312.3116 Other Computer Science +1312.3120 Statistics Theory +1312.3121 Combinatorics +1312.3122 Complex Variables +1312.3129 Mesoscale and Nanoscale Physics +1312.3131 Materials Science +1312.3135 Classical Analysis and ODEs +1312.3141 Computers and Society +1312.3145 Data Analysis, Statistics and Probability +1312.3146 Cryptography and Security +1312.3150 Strongly Correlated Electrons +1312.3151 Numerical Analysis +1312.3152 Quantum Algebra +1312.3157 +1312.3160 Chaotic Dynamics +1312.3164 Combinatorics +1312.3165 Phenomenology +1312.3168 Computation and Language +1312.3170 Analysis of PDEs +1312.3172 History and Overview +1312.3173 Geometric Topology +1312.3175 Earth and Planetary Astrophysics +1312.3182 Discrete Mathematics +1312.3183 Cryptography and Security +1312.3184 Programming Languages +1312.3188 Computational Geometry +1312.3190 Computational Physics +1312.3191 Instrumentation and Methods for Astrophysics +1312.3193 Computational Complexity +1312.3194 Information Theory +1312.3195 Solar and Stellar Astrophysics +1312.3197 Lattice +1312.3199 Computer Vision and Pattern Recognition +1312.3200 Information Theory +1312.3201 Instrumentation and Methods for Astrophysics +1312.3206 Populations and Evolution +1312.3211 Analysis of PDEs +1312.3213 General Literature +1312.3216 Cosmology and Nongalactic Astrophysics +1312.3222 Computers and Society +1312.3227 +1312.3230 Cryptography and Security +1312.3232 Probability +1312.3238 Biological Physics +1312.3242 Analysis of PDEs +1312.3249 Instrumentation and Methods for Astrophysics +1312.3251 Computation and Language +1312.3255 Combinatorics +1312.3256 Statistics Theory +1312.3257 Numerical Analysis +1312.3258 Computation and Language +1312.3259 Optics +1312.3260 Genomics +1312.3262 Classical Physics +1312.3267 Optics +1312.3271 Optics +1312.3272 Probability +1312.3277 Analysis of PDEs +1312.3281 Astrophysics of Galaxies +1312.3282 Mesoscale and Nanoscale Physics +1312.3284 Differential Geometry +1312.3285 Group Theory +1312.3288 Optimization and Control +1312.3291 Machine Learning +1312.3292 Quantum Gases +1312.3302 Statistics Theory +1312.3303 Distributed, Parallel, and Cluster Computing +1312.3305 Mesoscale and Nanoscale Physics +1312.3306 Probability +math-ph/0612083 +math/0512461 Analysis of PDEs +0812.2936 Statistics Theory +0902.3849 Group Theory +0905.3250 Number Theory +0909.4526 Symplectic Geometry +1002.0957 Superconductivity +1005.0010 Probability +1007.1097 Fluid Dynamics +1010.2291 Cosmology and Nongalactic Astrophysics +1102.4966 Representation Theory +1102.5524 Theory +1104.1728 Classical Analysis and ODEs +1106.5485 Probability +1107.5778 Networking and Internet Architecture +1109.3282 Combinatorics +1109.5446 +1111.0658 History and Philosophy of Physics +1111.5568 Statistics Theory +1202.4714 Number Theory +1204.4716 Probability +1204.4743 Logic +1205.5888 Functional Analysis +1205.6392 Number Theory +1206.2511 Probability +1207.5548 Probability +1208.0675 Algebraic Geometry +1208.0779 Complex Variables +1208.1647 +1208.4149 Probability +1208.4976 Chemical Physics +1208.5826 Algebraic Geometry +1209.0244 +1209.3903 Numerical Analysis +1209.5574 +1209.6365 Combinatorics +1210.0481 Databases +1210.3425 Group Theory +1210.4526 +1210.6927 Systems and Control +1211.3391 Numerical Analysis +1211.3935 +1211.6350 Group Theory +1211.7130 Representation Theory +1211.7162 +1212.0607 Representation Theory +1212.3716 Risk Management +1301.1435 Plasma Physics +1301.1512 Combinatorics +1301.6292 Earth and Planetary Astrophysics +1302.1362 Soft Condensed Matter +1303.0846 Phenomenology +1303.1670 Lattice +1303.2530 Computation +1303.2915 Applications +1303.3735 Optimization and Control +1303.3955 Algebraic Geometry +1303.4412 Metric Geometry +1304.2236 Mesoscale and Nanoscale Physics +1304.3334 +1304.3385 Metric Geometry +1304.3637 Populations and Evolution +1304.3929 Mesoscale and Nanoscale Physics +1304.4522 Phenomenology +1304.7472 Algebraic Geometry +1305.0623 Biological Physics +1305.0648 Logic in Computer Science +1305.1894 +1305.5479 Statistical Mechanics +1305.7287 Disordered Systems and Neural Networks +1306.0051 Analysis of PDEs +1306.0171 Mesoscale and Nanoscale Physics +1306.2820 General Finance +1306.3915 Metric Geometry +1306.3966 Theory +1306.4857 Astrophysics of Galaxies +1306.5590 Differential Geometry +1307.0162 Instrumentation and Detectors +1307.0482 +1307.2495 Mesoscale and Nanoscale Physics +1307.3123 +1307.5309 +1307.5749 Experiment +1307.6395 Quantum Gases +1307.6676 +1308.1914 +1308.2427 Functional Analysis +1308.2790 Applications +1308.3079 Mesoscale and Nanoscale Physics +1308.3601 Numerical Analysis +1308.3888 Superconductivity +1308.3972 Number Theory +1308.4583 Experiment +1309.0732 Quantum Gases +1309.0827 Differential Geometry +1309.1108 Quantitative Methods +1309.2451 +1309.5517 +1309.7278 +1310.0425 Statistics Theory +1310.1413 Instrumentation and Detectors +1310.1829 Social and Information Networks +1310.2885 Computational Complexity +1310.3183 Phenomenology +1310.4395 Group Theory +1310.5842 Distributed, Parallel, and Cluster Computing +1310.7310 Superconductivity +1310.7685 Mesoscale and Nanoscale Physics +1311.3587 Analysis of PDEs +1311.6652 Strongly Correlated Electrons +1311.7047 Superconductivity +1312.1286 Digital Libraries +1312.2159 Social and Information Networks +1312.2300 Algebraic Geometry +1312.2418 Functional Analysis +1312.3060 Artificial Intelligence +1312.4049 Phenomenology +1312.4796 Chemical Physics +1312.5356 +1312.5392 Differential Geometry +1312.5558 Accelerator Physics +1312.5581 Soft Condensed Matter +1312.5677 Numerical Analysis +1312.5697 Computer Vision and Pattern Recognition +1312.5722 Group Theory +1312.5750 Materials Science +1312.5751 Mesoscale and Nanoscale Physics +1312.5755 Analysis of PDEs +1312.5757 Quantum Gases +1312.5762 Analysis of PDEs +1312.5763 Systems and Control +1312.5764 Other Computer Science +1312.5768 Materials Science +1312.5769 Mesoscale and Nanoscale Physics +1312.5772 Quantum Gases +1312.5783 Learning +1312.5789 Methodology +1312.5791 Phenomenology +1312.5792 Numerical Analysis +1312.5793 Number Theory +1312.5794 Networking and Internet Architecture +1312.5795 Algebraic Geometry +1312.5797 Information Theory +1312.5800 Information Theory +1312.5802 Phenomenology +1312.5807 Statistics Theory +1312.5811 Phenomenology +1312.5814 Neural and Evolutionary Computing +1312.5823 Functional Analysis +1312.5829 Analysis of PDEs +1312.5830 Social and Information Networks +1312.5831 Materials Science +1312.5832 Commutative Algebra +1312.5836 Analysis of PDEs +1312.5837 Optics +1312.5839 Statistics Theory +1312.5840 Solar and Stellar Astrophysics +1312.5841 Probability +1312.5846 Solar and Stellar Astrophysics +1312.5852 Commutative Algebra +1312.5855 Number Theory +1312.5858 Functional Analysis +1312.5859 Applications +1312.5861 Optimization and Control +1312.5862 Statistics Theory +1312.5866 Analysis of PDEs +1312.5871 Analysis of PDEs +1312.5874 Lattice +1312.5886 Numerical Analysis +1312.5887 Numerical Analysis +1312.5889 Machine Learning +1312.5890 Solar and Stellar Astrophysics +1312.5891 Information Theory +1312.5892 Networking and Internet Architecture +1312.5903 Probability +1312.5904 Methodology +1312.5905 Number Theory +1312.5908 History and Philosophy of Physics +1312.5915 +1312.5917 Solar and Stellar Astrophysics +1312.5919 Trading and Market Microstructure +1312.5934 Methodology +1312.5936 Computer Science and Game Theory +1312.5939 Optimization and Control +1312.5941 Multiagent Systems +1312.5942 Dynamical Systems +1312.5949 +1312.5951 Logic in Computer Science +1312.5952 Robotics +1312.5957 Methodology +1312.5960 Analysis of PDEs +1312.5963 Atomic Physics +1312.5964 Soft Condensed Matter +1312.5966 Superconductivity +1312.5974 Theory +1312.5978 Computational Complexity +1312.5979 Logic +1312.5983 Probability +1312.5996 Number Theory +1312.5999 Theory +1312.6004 Physics Education +1312.6005 Metric Geometry +1312.6007 +1312.6015 Atmospheric and Oceanic Physics +1312.6022 Statistical Mechanics +1312.6023 Functional Analysis +1312.6024 Computer Vision and Pattern Recognition +1312.6031 Analysis of PDEs +1312.6032 Pricing of Securities +1312.6036 Computers and Society +1312.6039 Data Structures and Algorithms +1312.6040 +1312.6041 Statistical Mechanics +1312.6046 Medical Physics +1312.6047 Numerical Analysis +1312.6048 Combinatorics +1312.6049 Differential Geometry +1312.6052 Cryptography and Security +1312.6053 Complex Variables +1312.6054 Materials Science +1312.6061 Physics and Society +1312.6064 Information Theory +1312.6079 Information Theory +1312.6080 Plasma Physics +1312.6081 General Topology +1312.6086 Learning +1312.6087 +1312.6090 Multimedia +1312.6092 Numerical Analysis +1312.6096 Artificial Intelligence +1312.6097 Differential Geometry +1312.6101 Information Theory +1312.6103 Algebraic Topology +1312.6104 Representation Theory +1312.6105 Artificial Intelligence +1312.6113 Artificial Intelligence +hep-th/0512099 Theory +math-ph/0309011 +0807.1045 Functional Analysis +0810.3773 +0906.3533 Number Theory +0907.2897 +0911.3915 Geometric Topology +1003.3050 Metric Geometry +1009.5451 Superconductivity +1010.0042 Superconductivity +1011.5767 Materials Science +1101.2635 +1101.3806 Mesoscale and Nanoscale Physics +1102.2021 Symplectic Geometry +1103.3757 Classical Analysis and ODEs +1105.0393 Information Theory +1106.4798 Algebraic Topology +1106.4799 Algebraic Topology +1109.2753 Mesoscale and Nanoscale Physics +1110.6003 Quantum Gases +1110.6683 Functional Analysis +1111.3392 Algebraic Geometry +1111.6941 General Physics +1112.0730 Earth and Planetary Astrophysics +1202.4075 Combinatorics +1203.1940 Computer Science and Game Theory +1203.2126 Analysis of PDEs +1203.6691 Functional Analysis +1204.0431 Information Theory +1204.0944 Discrete Mathematics +1204.2304 Dynamical Systems +1204.2537 Superconductivity +1204.3023 +1204.3117 Cosmology and Nongalactic Astrophysics +1204.6343 Operator Algebras +1205.0910 Computational Geometry +1205.2313 Mesoscale and Nanoscale Physics +1206.1874 Applications +1206.4586 Combinatorics +1207.5517 Theory +1207.6076 Methodology +1207.6345 +1207.7285 Phenomenology +1208.3603 Cosmology and Nongalactic Astrophysics +1208.3683 Geometric Topology +1208.4349 Lattice +1208.4643 Geometric Topology +1208.5121 +1209.0631 +1209.6371 Complex Variables +1210.0714 Mesoscale and Nanoscale Physics +1210.1585 Strongly Correlated Electrons +1210.3473 +1210.5538 +1210.7638 Data Structures and Algorithms +1211.0490 General Physics +1211.0610 Statistics Theory +1211.1147 Mesoscale and Nanoscale Physics +1211.1493 Geometric Topology +1211.2209 Solar and Stellar Astrophysics +1211.5554 +1211.6114 +1211.6242 Dynamical Systems +1211.6461 Theory +1211.6634 +1212.0407 +1212.2892 Theory +1212.4512 Probability +1212.4637 Quantum Gases +1212.5150 +1212.6053 Distributed, Parallel, and Cluster Computing +1212.6701 +1301.0901 Information Theory +1301.1093 Populations and Evolution +1301.2324 Phenomenology +1301.2979 Populations and Evolution +1301.7525 Probability +1302.1652 Theory +1302.3041 Probability +1302.4114 Plasma Physics +1302.4115 Plasma Physics +1302.4420 Theory +1302.4453 Quantum Gases +1302.4732 Solar and Stellar Astrophysics +1302.4903 Statistical Mechanics +1302.5385 +1302.5695 +1302.6281 Superconductivity +1303.0571 Experiment +1303.0981 +1303.1282 Methodology +1303.1787 Strongly Correlated Electrons +1303.2563 Astrophysics of Galaxies +1303.2575 Theory +1303.4312 Distributed, Parallel, and Cluster Computing +1303.5314 Experiment +1303.6878 Cosmology and Nongalactic Astrophysics +1303.7165 Mesoscale and Nanoscale Physics +1304.0322 Phenomenology +1304.1359 Data Structures and Algorithms +1304.2100 Number Theory +1304.2766 Strongly Correlated Electrons +1304.2811 Mesoscale and Nanoscale Physics +1304.3582 +1304.3585 +1304.4338 Strongly Correlated Electrons +1304.4846 Mesoscale and Nanoscale Physics +1304.5890 Materials Science +1304.6051 Phenomenology +1304.6408 Theory +1304.6417 Theory +1304.6546 Solar and Stellar Astrophysics +1304.6644 Phenomenology +1304.7303 Theory +1304.7588 Dynamical Systems +1304.7723 Theory +1305.0055 Cosmology and Nongalactic Astrophysics +1305.0282 +1305.0349 +1305.0827 Strongly Correlated Electrons +1305.1222 Data Structures and Algorithms +1305.1681 Data Structures and Algorithms +1305.1788 Strongly Correlated Electrons +1305.2131 Optics +1305.2209 Cosmology and Nongalactic Astrophysics +1305.2735 +1305.2919 Theory +1305.2969 Phenomenology +1305.3494 Quantum Gases +1305.4117 Theory +1305.5599 Quantum Gases +1305.6140 Mesoscale and Nanoscale Physics +1305.6592 Optics +1305.6771 Adaptation and Self-Organizing Systems +1305.6889 Statistical Mechanics +1305.7138 Mesoscale and Nanoscale Physics +1305.7333 Cosmology and Nongalactic Astrophysics +1306.1528 Strongly Correlated Electrons +1306.2702 Fluid Dynamics +1306.2959 Phenomenology +1306.3369 Phenomenology +1306.4404 High Energy Astrophysical Phenomena +1306.4900 Phenomenology +1306.4927 +1306.5090 +1306.5361 +1306.5864 Soft Condensed Matter +1306.5865 High Energy Astrophysical Phenomena +1306.5898 Cryptography and Security +1306.5899 Statistics Theory +1306.6067 Strongly Correlated Electrons +1306.6600 +1307.0752 +1307.1075 Mesoscale and Nanoscale Physics +1307.2031 Phenomenology +1307.2318 Mesoscale and Nanoscale Physics +1307.2389 +1307.2575 Theory +1307.2662 Statistics Theory +1307.4012 Mesoscale and Nanoscale Physics +1307.4258 Computer Science and Game Theory +1307.4342 Optimization and Control +1307.4343 Theory +1307.4375 Populations and Evolution +1307.4544 Physics and Society +1307.4568 Experiment +1307.5410 Cryptography and Security +1307.5439 +1307.6060 Solar and Stellar Astrophysics +1307.6106 Lattice +1307.6499 Phenomenology +1307.6552 Mesoscale and Nanoscale Physics +1307.7169 Theory +1307.7251 Lattice +1307.7560 +1307.7596 High Energy Astrophysical Phenomena +1307.7729 Physics and Society +1307.7953 Superconductivity +1307.7961 Mesoscale and Nanoscale Physics +1307.8037 Data Structures and Algorithms +1308.0064 Theory +1308.0226 Metric Geometry +1308.0321 Quantum Gases +1308.0427 Strongly Correlated Electrons +1308.1151 Experiment +1308.1227 Phenomenology +1308.1329 Strongly Correlated Electrons +1308.1331 Atomic Physics +1308.1429 +1308.1431 Quantum Gases +1308.1795 Experiment +1308.2004 Quantum Gases +1308.2333 Mesoscale and Nanoscale Physics +1308.2398 Astrophysics of Galaxies +1308.2602 Phenomenology +1308.2676 Phenomenology +1308.2847 Phenomenology +1308.2945 Phenomenology +1308.3048 Chemical Physics +1308.3264 Mesoscale and Nanoscale Physics +1308.3473 Phenomenology +1308.4121 Theory +1308.4176 +1308.4511 Quantum Gases +1308.4811 Lattice +1308.4935 Cosmology and Nongalactic Astrophysics +1308.4979 Cosmology and Nongalactic Astrophysics +1308.5188 Combinatorics +1308.5269 Neural and Evolutionary Computing +1308.6061 Statistical Mechanics +1308.6079 Mesoscale and Nanoscale Physics +1308.6218 Phenomenology +1308.6461 +1309.0167 Strongly Correlated Electrons +1309.0964 Chaotic Dynamics +1309.1021 Theory +1309.1252 +1309.2040 Lattice +1309.2255 Strongly Correlated Electrons +1309.2532 +1309.2591 Experiment +1309.2778 Strongly Correlated Electrons +1309.2833 +1309.3506 Fluid Dynamics +1309.4057 Phenomenology +1309.4427 Pattern Formation and Solitons +1309.4439 +1309.5020 +1309.5028 Analysis of PDEs +1309.6187 Optimization and Control +1309.6200 Information Theory +1309.6304 +1309.6324 Cosmology and Nongalactic Astrophysics +1309.7339 Other Condensed Matter +1309.7467 Number Theory +1310.0131 Astrophysics of Galaxies +1310.0820 Phenomenology +1310.1184 Networking and Internet Architecture +1310.1519 Machine Learning +1310.1719 +1310.1852 High Energy Astrophysical Phenomena +1310.2445 Materials Science +1310.3116 +1310.5540 Statistical Finance +1310.6010 Soft Condensed Matter +1310.7644 Geometric Topology +1310.8573 Numerical Analysis +1311.0436 +1311.0710 Rings and Algebras +1311.0952 Number Theory +1311.0990 Accelerator Physics +1311.1422 Learning +1311.1506 Mesoscale and Nanoscale Physics +1311.1582 +1311.2208 Computational Physics +1311.2322 Classical Analysis and ODEs +1311.2449 Experiment +1311.2462 Physics and Society +1311.2557 Data Structures and Algorithms +1311.2581 General Physics +1311.2598 General Physics +1311.2608 Group Theory +1311.2609 Cosmology and Nongalactic Astrophysics +1311.2613 Analysis of PDEs +1311.2621 Computer Vision and Pattern Recognition +1311.2622 Differential Geometry +1311.2623 +1311.2627 +1311.2630 Networking and Internet Architecture +1311.2632 Mesoscale and Nanoscale Physics +1311.2636 Complex Variables +1311.2637 Information Theory +1311.2640 Fluid Dynamics +1311.2642 Computer Vision and Pattern Recognition +1311.2644 Fluid Dynamics +1311.2646 Populations and Evolution +1311.2648 Group Theory +1311.2650 Information Theory +1311.2659 +1311.2666 Instrumentation and Methods for Astrophysics +1311.2668 Complex Variables +1311.2675 Exactly Solvable and Integrable Systems +1311.2677 Networking and Internet Architecture +1311.2678 Combinatorics +1311.2679 Lattice +1311.2680 Strongly Correlated Electrons +1311.2681 Mesoscale and Nanoscale Physics +1311.2682 Strongly Correlated Electrons +1311.2683 Logic +1311.2690 Logic +1311.2691 Strongly Correlated Electrons +1311.2692 Functional Analysis +1311.2697 Lattice +1311.2702 Software Engineering +1311.2705 Information Theory +1311.2706 Strongly Correlated Electrons +1311.2710 Accelerator Physics +1311.2712 Physics Education +1311.2713 Dynamical Systems +1311.2715 Strongly Correlated Electrons +1311.2719 Lattice +1311.2721 +1311.2722 Analysis of PDEs +1311.2732 Statistical Mechanics +1311.2734 Fluid Dynamics +1311.2737 Algebraic Geometry +1311.2740 Statistics Theory +1311.2742 Statistics Theory +1311.2743 Astrophysics of Galaxies +1311.2746 Neural and Evolutionary Computing +1311.2748 Combinatorics +1311.2750 Mesoscale and Nanoscale Physics +1311.2752 Mesoscale and Nanoscale Physics +1311.2754 Experiment +1311.2757 Genomics +1311.2760 Lattice +1311.2761 Quantum Gases +1311.2767 Superconductivity +1311.2770 Mesoscale and Nanoscale Physics +1311.2771 Solar and Stellar Astrophysics +1311.2776 Optimization and Control +1311.2777 Instrumentation and Detectors +1311.2780 Numerical Analysis +1311.2788 Solar and Stellar Astrophysics +1311.2791 Statistics Theory +1311.2796 Optimization and Control +1311.2797 Lattice +1311.2798 History and Philosophy of Physics +1311.2799 Statistics Theory +1311.2802 Soft Condensed Matter +1311.2803 +1311.2807 Materials Science +1311.2811 +1311.2813 Solar and Stellar Astrophysics +1311.2815 Functional Analysis +1311.2820 Computer Science and Game Theory +1311.2821 Operator Algebras +1311.2822 Quantum Algebra +1311.2825 Phenomenology +1311.2829 Quantum Algebra +1311.2832 Solar and Stellar Astrophysics +1311.2841 Cosmology and Nongalactic Astrophysics +1311.2845 Optimization and Control +1311.2848 Lattice +1311.2850 Systems and Control +1311.2851 Networking and Internet Architecture +1311.2855 History and Overview +1311.2857 History and Overview +1311.2860 Optics +1311.2862 Spectral Theory +1311.2863 Classical Analysis and ODEs +1311.2865 Number Theory +1311.2866 Complex Variables +1311.2869 Networking and Internet Architecture +1311.2870 Analysis of PDEs +1311.2872 Algebraic Geometry +1311.2873 Group Theory +1311.2874 +1311.2878 Social and Information Networks +1311.2879 Data Structures and Algorithms +1311.2883 Functional Analysis +1311.2884 Combinatorics +1311.2886 Artificial Intelligence +1311.2889 Learning +1311.2892 Theory +1311.2900 Soft Condensed Matter +1311.2902 Statistics Theory +1311.2908 +1311.2912 Artificial Intelligence +1311.2915 Representation Theory +1311.2917 Materials Science +1311.2918 +1311.2923 +1311.2924 Populations and Evolution +astro-ph/9307035 +astro-ph/9308044 +gr-qc/9311029 +gr-qc/9403016 +hep-lat/9401035 Lattice +hep-ph/9206222 Phenomenology +hep-ph/9208234 Phenomenology +hep-ph/9210240 Phenomenology +hep-ph/9303247 Phenomenology +hep-ph/9306265 Phenomenology +hep-ph/9306309 Phenomenology +hep-ph/9307307 Phenomenology +hep-ph/9309258 Phenomenology +hep-ph/9311281 Phenomenology +hep-ph/9403356 Phenomenology +hep-ph/9403401 Phenomenology +hep-ph/9404227 Phenomenology +hep-ph/9404312 Phenomenology +hep-ph/9406383 Phenomenology +hep-ph/9406406 Phenomenology +hep-th/9206006 Theory +hep-th/9206064 Theory +hep-th/9209049 Theory +hep-th/9301047 Theory +hep-th/9302137 Theory +hep-th/9304082 Theory +hep-th/9304113 Theory +hep-th/9305163 Theory +hep-th/9310101 Theory +hep-th/9310190 Theory +hep-th/9311017 Theory +hep-th/9311103 Theory +hep-th/9312034 Theory +hep-th/9312127 Theory +hep-th/9312172 Theory +hep-th/9401134 Theory +hep-th/9402004 Theory +hep-th/9403192 Theory +hep-th/9405070 Theory +hep-th/9406069 Theory +hep-th/9406132 Theory +hep-th/9406210 Theory +math/0508134 Algebraic Geometry +0706.3196 +0712.3882 Classical Analysis and ODEs +0802.1650 +0807.0151 +0905.1868 Mesoscale and Nanoscale Physics +0906.0112 Classical Analysis and ODEs +0907.5194 High Energy Astrophysical Phenomena +0909.1925 Cosmology and Nongalactic Astrophysics +0909.4402 Quantum Algebra +0910.0927 Soft Condensed Matter +0910.2778 Instrumentation and Methods for Astrophysics +0910.5878 Analysis of PDEs +0912.3339 Lattice +1003.5407 +1008.2722 Instrumentation and Detectors +1008.2777 Cosmology and Nongalactic Astrophysics +1011.2479 +1012.5782 Representation Theory +1101.4716 Classical Physics +1102.1440 Combinatorics +1103.3891 Dynamical Systems +1104.2442 Analysis of PDEs +1105.1059 Instrumentation and Detectors +1105.1283 Mesoscale and Nanoscale Physics +1105.2675 Combinatorics +1105.4369 Analysis of PDEs +1106.2944 Combinatorics +1108.0099 General Finance +1108.2463 Functional Analysis +1109.1028 Probability +1109.3379 +1109.4861 +1110.2995 Combinatorics +1110.3661 Representation Theory +1110.5595 Classical Analysis and ODEs +1110.6260 Cosmology and Nongalactic Astrophysics +1111.1802 Methodology +1112.0819 Logic +1112.6426 Experiment +1201.0894 Classical Analysis and ODEs +1201.2275 Analysis of PDEs +1201.5768 Spectral Theory +1201.6006 Probability +1202.2826 Information Theory +1202.4874 Mesoscale and Nanoscale Physics +1203.1302 Experiment +1203.1653 Functional Analysis +1203.5200 Operator Algebras +1204.0310 High Energy Astrophysical Phenomena +1204.0551 Functional Analysis +1204.0876 Algebraic Topology +1204.3310 Molecular Networks +1204.5510 Analysis of PDEs +1204.5884 +1205.3551 Materials Science +1205.4666 +1205.5534 Number Theory +1205.6744 Experiment +1206.0257 Experiment +1206.1381 Functional Analysis +1206.2443 Experiment +1206.2703 Algebraic Geometry +1206.5563 Optics +1206.5971 Experiment +1206.6074 Experiment +1206.6248 Combinatorics +1207.0210 Experiment +1207.2284 Experiment +1207.2822 Algebraic Topology +1207.3368 Neural and Evolutionary Computing +1207.4716 Mesoscale and Nanoscale Physics +1207.5036 Algebraic Geometry +1207.5121 Differential Geometry +1207.5644 Experiment +1207.6411 Experiment +1207.6479 Number Theory +1208.0572 Experiment +1208.1967 Experiment +1208.3522 Cosmology and Nongalactic Astrophysics +1208.3523 Cosmology and Nongalactic Astrophysics +1208.3941 Rings and Algebras +1208.4372 Theory +1208.5810 Superconductivity +1208.5891 Statistical Mechanics +1209.0264 Number Theory +1209.1468 Chaotic Dynamics +1209.2273 Solar and Stellar Astrophysics +1209.2535 Experiment +1209.2805 +1209.4030 Medical Physics +1209.4446 Experiment +1209.4483 Information Theory +1209.4625 Experiment +1209.4825 Learning +1209.5093 High Energy Astrophysical Phenomena +1209.6593 Experiment +1210.0308 Cosmology and Nongalactic Astrophysics +1210.0435 Experiment +1210.1036 Representation Theory +1210.1345 Strongly Correlated Electrons +1210.1474 Rings and Algebras +1210.1713 Pattern Formation and Solitons +1210.1718 Experiment +1210.2854 Mesoscale and Nanoscale Physics +1210.4115 +1210.4491 Experiment +1210.4538 Experiment +1210.5070 Experiment +1210.5226 Probability +1210.5468 Experiment +1210.6210 Experiment +1210.6486 Experiment +1210.6604 Experiment +1210.7434 Exactly Solvable and Integrable Systems +1210.8006 Algebraic Geometry +1210.8141 Phenomenology +1210.8389 Experiment +1211.1064 Algebraic Geometry +1211.1716 Learning +1211.2202 Experiment +1211.2211 Functional Analysis +1211.3732 Analysis of PDEs +1211.3914 Classical Analysis and ODEs +1211.4322 Mesoscale and Nanoscale Physics +1211.4326 Mesoscale and Nanoscale Physics +1211.5026 Mesoscale and Nanoscale Physics +1211.5636 Classical Physics +1211.6069 Classical Analysis and ODEs +1211.6312 Experiment +1211.6628 Mesoscale and Nanoscale Physics +1211.6956 Experiment +1211.7205 Experiment +1211.7255 Experiment +1211.7355 Theory +1212.0111 Mesoscale and Nanoscale Physics +1212.0230 Fluid Dynamics +1212.1337 +1212.1991 Mesoscale and Nanoscale Physics +1212.2834 Learning +1212.3572 Experiment +1212.3792 Cosmology and Nongalactic Astrophysics +1212.3950 Networking and Internet Architecture +1212.4048 Exactly Solvable and Integrable Systems +1212.4891 +1212.5171 +1212.5198 Experiment +1212.5409 Experiment +1212.5899 Lattice +1212.6156 Statistical Mechanics +1301.0729 Strongly Correlated Electrons +1301.0799 Mesoscale and Nanoscale Physics +1301.0809 +1301.1583 Experiment +1301.1763 Cosmology and Nongalactic Astrophysics +1301.1895 +1301.2568 Quantum Gases +1301.2691 Formal Languages and Automata Theory +1301.2812 Materials Science +1301.4493 Accelerator Physics +1301.4980 Theory +1301.5171 Commutative Algebra +1301.5272 Experiment +1301.5621 Theory +1301.6065 Experiment +1301.6332 Rings and Algebras +1301.6815 +1302.0510 Cosmology and Nongalactic Astrophysics +1302.1949 Optics +1302.2484 Mesoscale and Nanoscale Physics +1302.2979 Soft Condensed Matter +1302.3918 Information Theory +1302.4403 Experiment +1302.4451 Theory +1302.4454 Phenomenology +1302.4760 Distributed, Parallel, and Cluster Computing +1302.6288 Information Theory +1302.6460 High Energy Astrophysical Phenomena +1302.7034 +1303.0170 Number Theory +1303.0291 Theory +1303.0299 +1303.0763 Experiment +1303.0959 +1303.2004 Strongly Correlated Electrons +1303.2407 Mesoscale and Nanoscale Physics +1303.2587 Information Theory +1303.2855 Superconductivity +1303.2975 Logic in Computer Science +1303.4136 Quantum Gases +1303.4944 Mesoscale and Nanoscale Physics +1303.5579 Astrophysics of Galaxies +1303.6720 +1303.6903 Quantum Gases +1303.7192 +1304.0133 Information Theory +1304.0299 Discrete Mathematics +1304.0389 Optics +1304.0438 Optics +1304.0733 Formal Languages and Automata Theory +1304.0833 Instrumentation and Methods for Astrophysics +1304.1553 Optics +1304.1631 Materials Science +1304.2253 Soft Condensed Matter +1304.2785 Cosmology and Nongalactic Astrophysics +1304.3799 Rings and Algebras +1304.5446 Fluid Dynamics +1304.6770 Commutative Algebra +1304.7671 Fluid Dynamics +1304.7687 Data Structures and Algorithms +1304.7781 +1304.7825 Theory +1305.0323 General Mathematics +1305.0416 Optics +1305.0787 Computers and Society +1305.0874 Phenomenology +1305.0997 Statistical Mechanics +1305.4707 Mesoscale and Nanoscale Physics +1305.4895 Data Analysis, Statistics and Probability +1305.5373 General Finance +1305.5486 Information Theory +1305.5700 Theory +1305.6202 Other Quantitative Biology +1305.6531 Phenomenology +1305.6853 Strongly Correlated Electrons +1305.6863 Statistical Mechanics +1305.7376 Discrete Mathematics +1306.0070 Algebraic Topology +1306.0081 Statistical Mechanics +1306.0110 Combinatorics +1306.0492 Theory +1306.0513 Strongly Correlated Electrons +1306.1047 +1306.1164 Differential Geometry +1306.1733 High Energy Astrophysical Phenomena +1306.1753 Algebraic Topology +1306.1822 Computer Vision and Pattern Recognition +1306.1823 Geophysics +1306.1825 Metric Geometry +1306.1828 High Energy Astrophysical Phenomena +1306.1838 Combinatorics +1306.1841 Analysis of PDEs +1306.1844 Theory +1306.1846 Biological Physics +1306.1850 Computational Engineering, Finance, and Science +1306.1855 Combinatorics +1306.1856 Materials Science +1306.1857 Discrete Mathematics +1306.1860 Discrete Mathematics +1306.1861 Distributed, Parallel, and Cluster Computing +1306.1866 Statistics Theory +1306.1868 Statistics Theory +1306.1870 Programming Languages +1306.1875 Optimization and Control +1306.1876 Number Theory +1306.1878 Operator Algebras +1306.1880 Strongly Correlated Electrons +1306.1884 Optimization and Control +1306.1885 Probability +1306.1888 Distributed, Parallel, and Cluster Computing +1306.1889 Hardware Architecture +1306.1893 Mesoscale and Nanoscale Physics +1306.1894 Computer Vision and Pattern Recognition +1306.1897 +1306.1899 Solar and Stellar Astrophysics +1306.1900 Algebraic Geometry +1306.1905 Analysis of PDEs +1306.1906 Physics and Society +1306.1907 Information Theory +1306.1908 Optics +1306.1912 Classical Analysis and ODEs +1306.1915 Operator Algebras +1306.1916 Cryptography and Security +1306.1919 Programming Languages +1306.1921 Plasma Physics +1306.1927 Applications +1306.1928 Distributed, Parallel, and Cluster Computing +1306.1929 Probability +1306.1932 Phenomenology +1306.1942 Exactly Solvable and Integrable Systems +1306.1945 Logic in Computer Science +1306.1947 Formal Languages and Automata Theory +1306.1949 Other Condensed Matter +1306.1953 Cryptography and Security +1306.1954 Functional Analysis +1306.1955 Cryptography and Security +1306.1956 Multiagent Systems +1306.1958 Software Engineering +1306.1961 Soft Condensed Matter +1306.1971 Combinatorics +1306.1976 Instrumentation and Detectors +1306.1980 Mesoscale and Nanoscale Physics +1306.1984 Materials Science +1306.1988 Quantum Gases +1306.1990 +1306.1991 Instrumentation and Detectors +1306.1992 Statistical Mechanics +1306.1993 Optics +1306.1994 +1306.2003 Statistics Theory +1306.2004 Methodology +1306.2005 Number Theory +1306.2009 Networking and Internet Architecture +1306.2011 Earth and Planetary Astrophysics +1306.2019 Computational Engineering, Finance, and Science +1306.2021 Probability +1306.2025 Artificial Intelligence +1306.2027 Materials Science +1306.2029 Biological Physics +1306.2035 Machine Learning +1306.2037 +1306.2042 Optics +1306.2043 Data Structures and Algorithms +1306.2045 Phenomenology +1306.2051 Analysis of PDEs +1306.2059 Probability +1306.2061 Dynamical Systems +1306.2062 Applications +1306.2064 Analysis of PDEs +1306.2065 Biological Physics +1306.2071 Chemical Physics +1306.2073 Trading and Market Microstructure +1306.2075 Algebraic Geometry +1306.2081 Graphics +1306.2083 Computer Science and Game Theory +1306.2084 Machine Learning +1306.2085 +1306.2088 Combinatorics +1306.2089 Rings and Algebras +1306.2092 Rings and Algebras +1306.2094 Learning +1306.2095 Materials Science +1306.2096 Software Engineering +1306.2100 Computer Vision and Pattern Recognition +1306.2101 Information Theory +1306.2102 Computer Vision and Pattern Recognition +1306.2103 Statistical Mechanics +1306.2104 Computational Geometry +1306.2107 Soft Condensed Matter +1306.2108 Discrete Mathematics +1306.2113 +1306.2118 Computational Engineering, Finance, and Science +1306.2119 Learning +1306.2123 Populations and Evolution +1306.2124 Materials Science +1306.2126 Analysis of PDEs +1306.2127 Analysis of PDEs +1306.2131 Populations and Evolution +1306.2132 +1306.2133 Number Theory +1306.2136 Analysis of PDEs +1306.2140 Probability +1306.2150 Numerical Analysis +1306.2152 Solar and Stellar Astrophysics +1306.2157 Rings and Algebras +1306.2158 Computation and Language +1306.2160 Networking and Internet Architecture +1306.2161 Materials Science +1306.2163 Operator Algebras +1306.2165 Complex Variables +1306.2166 Combinatorics +1306.2167 Populations and Evolution +1306.2171 Computational Complexity +1306.2174 +1306.2180 Solar and Stellar Astrophysics +1306.2184 Algebraic Geometry +1306.2185 Algebraic Geometry +1306.2186 Analysis of PDEs +1306.2187 Computational Complexity +1306.2188 Statistical Finance +1306.2191 Numerical Analysis +1306.2194 Statistics Theory +1306.2195 Algebraic Geometry +1306.2197 Combinatorics +1306.2201 Algebraic Geometry +1306.2213 +1306.2217 Computational Complexity +1306.2218 Analysis of PDEs +1306.2225 Differential Geometry +1306.2227 Computational Physics +1306.2229 Probability +1306.2234 Instrumentation and Detectors +1306.2235 Optics +1306.2237 Algebraic Geometry +1306.2243 Genomics +1306.2244 Molecular Networks +1306.2249 Networking and Internet Architecture +1306.2251 General Finance +1306.2252 Cryptography and Security +1306.2257 Neural and Evolutionary Computing +1306.2258 Biomolecules +1306.2264 High Energy Astrophysical Phenomena +1306.2266 History and Philosophy of Physics +1306.2267 Programming Languages +1306.2268 Artificial Intelligence +1306.2270 +1306.2271 +1306.2278 History and Overview +1306.2281 Methodology +1306.2283 Logic +1306.2284 Computer Science and Game Theory +1306.2290 Statistics Theory +1306.2293 Neurons and Cognition +1306.2294 Analysis of PDEs +1306.2297 Optimization and Control +astro-ph/0201462 +cond-mat/0512334 Mesoscale and Nanoscale Physics +cond-mat/0512382 Mesoscale and Nanoscale Physics +gr-qc/9809072 +math-ph/0605081 +math/0502098 Probability +math/0610970 Algebraic Geometry +0808.1923 Differential Geometry +0811.0662 Probability +0904.1255 Differential Geometry +0907.5604 Differential Geometry +0910.3473 +0912.4546 +1002.3042 Algebraic Geometry +1003.0713 Earth and Planetary Astrophysics +1004.4411 Algebraic Geometry +1006.0916 Cosmology and Nongalactic Astrophysics +1009.5720 Earth and Planetary Astrophysics +1105.3383 Discrete Mathematics +1106.2616 Algebraic Geometry +1106.2703 Classical Analysis and ODEs +1107.0327 Combinatorics +1107.0742 Quantum Algebra +1107.3264 Classical Analysis and ODEs +1108.5129 Spectral Theory +1109.0729 Cosmology and Nongalactic Astrophysics +1109.4470 Strongly Correlated Electrons +1111.7057 Representation Theory +1112.2544 Dynamical Systems +1112.2709 Mesoscale and Nanoscale Physics +1201.0003 Phenomenology +1201.5003 Strongly Correlated Electrons +1202.3368 Group Theory +1202.6216 Mesoscale and Nanoscale Physics +1204.2060 Number Theory +1205.0436 Mesoscale and Nanoscale Physics +1206.6091 Probability +1206.6270 Combinatorics +1207.1767 +1207.7198 Analysis of PDEs +1208.1308 Number Theory +1208.1472 Strongly Correlated Electrons +1208.3336 Superconductivity +1208.5574 +1209.5303 +1209.6384 Mesoscale and Nanoscale Physics +1210.1349 Strongly Correlated Electrons +1210.7112 High Energy Astrophysical Phenomena +1210.8204 Theory +1211.0499 Phenomenology +1211.5486 Classical Physics +1211.6917 Theory +1211.6993 Experiment +1212.0148 Analysis of PDEs +1212.1130 Superconductivity +1212.2170 Probability +1212.2647 Statistical Mechanics +1212.3090 Symbolic Computation +1212.6049 +1301.3501 Strongly Correlated Electrons +1301.4677 Algebraic Geometry +1301.5051 Representation Theory +1301.5358 Experiment +1301.6668 Experiment +1302.0149 Optics +1302.0497 Optics +1302.0796 Instrumentation and Detectors +1302.2064 Phenomenology +1302.3020 Information Theory +1302.5723 Experiment +1303.2834 +1303.5296 Materials Science +1303.5939 Atomic Physics +1303.6346 Experiment +1304.1471 +1304.1632 +1304.1700 Strongly Correlated Electrons +1304.3682 Algebraic Geometry +1304.6679 +1304.6819 Trading and Market Microstructure +1305.0016 Earth and Planetary Astrophysics +1305.0128 +1305.0400 Phenomenology +1305.0486 Classical Physics +1305.1449 +1305.1927 +1305.1993 +1305.2825 Earth and Planetary Astrophysics +1305.3462 Probability +1305.3466 Group Theory +1305.3564 Lattice +1305.4385 High Energy Astrophysical Phenomena +1305.5251 Phenomenology +1305.6837 Phenomenology +1305.7417 Theory +1306.0023 Experiment +1306.0363 Mesoscale and Nanoscale Physics +1306.1092 Theory +1306.1156 Phenomenology +1306.1643 Astrophysics of Galaxies +1306.2468 Mesoscale and Nanoscale Physics +1306.3143 Optics +1306.3989 Solar and Stellar Astrophysics +1306.4921 Astrophysics of Galaxies +1306.5033 Superconductivity +1306.5605 Atomic Physics +1306.6075 Theory +1306.6186 Cosmology and Nongalactic Astrophysics +1306.6341 Theory +1307.0525 Strongly Correlated Electrons +1307.2425 Lattice +1307.2631 Phenomenology +1307.3516 Strongly Correlated Electrons +1307.3679 Theory +1307.3920 Phenomenology +1307.4008 Mesoscale and Nanoscale Physics +1307.4206 Mesoscale and Nanoscale Physics +1307.4650 Theory +1307.5470 +1307.5488 Mesoscale and Nanoscale Physics +1307.5678 Group Theory +1307.6274 +1307.7120 Phenomenology +1307.7485 Phenomenology +1307.7627 Experiment +1307.7936 Solar and Stellar Astrophysics +1308.0121 +1308.1267 Algebraic Geometry +1308.1456 Number Theory +1308.2151 Phenomenology +1308.3389 Phenomenology +1308.4521 Mesoscale and Nanoscale Physics +1308.5182 Differential Geometry +1308.5838 Cosmology and Nongalactic Astrophysics +1308.5966 Fluid Dynamics +1308.6078 Classical Physics +1308.6528 Strongly Correlated Electrons +1309.0468 Representation Theory +1309.1465 Phenomenology +1309.2791 +1309.4172 Phenomenology +1309.4177 +1309.4767 Computational Complexity +1309.5218 Materials Science +1309.5386 Cosmology and Nongalactic Astrophysics +1309.5389 Cosmology and Nongalactic Astrophysics +1309.5529 +1309.5942 Computation and Language +1309.5944 Networking and Internet Architecture +1309.5946 Computer Science and Game Theory +1309.5968 Logic +1309.5970 Mesoscale and Nanoscale Physics +1309.5971 +1309.5974 Instrumentation and Detectors +1309.5975 Dynamical Systems +1309.5977 Machine Learning +1309.5982 High Energy Astrophysical Phenomena +1309.5984 Artificial Intelligence +1309.5985 History and Overview +1309.5988 Numerical Analysis +1309.5989 Cosmology and Nongalactic Astrophysics +1309.5990 Theory +1309.5991 Data Structures and Algorithms +1309.5993 Social and Information Networks +1309.5996 Logic +1309.5997 Networking and Internet Architecture +1309.5999 Methodology +1309.6000 Networking and Internet Architecture +1309.6007 Optimization and Control +1309.6008 Accelerator Physics +1309.6009 Dynamical Systems +1309.6013 Machine Learning +1309.6015 Quantitative Methods +1309.6018 Superconductivity +1309.6019 Strongly Correlated Electrons +1309.6021 Number Theory +1309.6023 Mesoscale and Nanoscale Physics +1309.6026 High Energy Astrophysical Phenomena +1309.6028 Algebraic Geometry +1309.6036 Information Theory +1309.6043 High Energy Astrophysical Phenomena +1309.6046 Strongly Correlated Electrons +1309.6047 Sound +1309.6049 Representation Theory +1309.6050 Rings and Algebras +1309.6053 Number Theory +1309.6054 +1309.6058 Methodology +1309.6059 Lattice +1309.6060 Algebraic Geometry +1309.6061 Statistics Theory +1309.6063 Functional Analysis +1309.6067 Mesoscale and Nanoscale Physics +1309.6069 Data Structures and Algorithms +1309.6070 Group Theory +1309.6074 Functional Analysis +1309.6075 +1309.6076 Dynamical Systems +1309.6077 Analysis of PDEs +1309.6078 Data Structures and Algorithms +1309.6080 Spectral Theory +1309.6082 Probability +1309.6085 Functional Analysis +1309.6087 High Energy Astrophysical Phenomena +1309.6088 Materials Science +1309.6090 Combinatorics +1309.6092 Materials Science +1309.6093 Materials Science +1309.6096 Algebraic Geometry +1309.6102 Analysis of PDEs +1309.6107 Quantum Gases +1309.6110 Astrophysics of Galaxies +1309.6113 Analysis of PDEs +1309.6114 Cosmology and Nongalactic Astrophysics +1309.6117 Materials Science +1309.6119 Combinatorics +1309.6121 Materials Science +1309.6123 Networking and Internet Architecture +1309.6124 Formal Languages and Automata Theory +1309.6125 Functional Analysis +1309.6126 Materials Science +1309.6127 Materials Science +1309.6129 Data Structures and Algorithms +1309.6132 Distributed, Parallel, and Cluster Computing +1309.6133 Other Condensed Matter +1309.6135 Representation Theory +1309.6142 Geometric Topology +1309.6146 Data Analysis, Statistics and Probability +1309.6148 Discrete Mathematics +1309.6149 Cryptography and Security +1309.6151 Information Theory +1309.6154 Functional Analysis +1309.6155 +1309.6158 Machine Learning +1309.6159 Complex Variables +1309.6162 Computation and Language +1309.6166 Plasma Physics +1309.6173 Analysis of PDEs +1309.6176 Computation and Language +1309.6178 Applications +1309.6182 High Energy Astrophysical Phenomena +1309.6185 Computation and Language +1309.6193 Materials Science +1309.6194 Probability +1309.6195 Computer Vision and Pattern Recognition +1309.6196 Probability +1309.6202 Computation and Language +1309.6207 Soft Condensed Matter +1309.6208 Populations and Evolution +1309.6210 Materials Science +1309.6212 Statistical Mechanics +1309.6214 Fluid Dynamics +1309.6217 Data Analysis, Statistics and Probability +1309.6220 Phenomenology +1309.6223 Dynamical Systems +1309.6225 Physics and Society +1309.6230 Algebraic Geometry +1309.6233 Differential Geometry +1309.6240 Number Theory +1309.6246 Dynamical Systems +1309.6248 Differential Geometry +1309.6249 Lattice +1309.6253 Lattice +1309.6255 Mesoscale and Nanoscale Physics +1309.6259 Classical Analysis and ODEs +1309.6262 Algebraic Geometry +1309.6265 Probability +1309.6266 Combinatorics +1309.6269 Experiment +1309.6271 Molecular Networks +1309.6272 Analysis of PDEs +1309.6273 Tissues and Organs +1309.6278 Lattice +1309.6282 Theory +1309.6286 Optics +1309.6287 Probability +1309.6288 Lattice +1309.6289 Dynamical Systems +1309.6291 Analysis of PDEs +1309.6292 Functional Analysis +1309.6293 Spectral Theory +1309.6294 +1309.6295 Analysis of PDEs +1309.6296 Probability +1309.6306 Operator Algebras +1309.6307 Systems and Control +astro-ph/0307335 +hep-ph/0303259 Phenomenology +1101.3396 Data Structures and Algorithms +0706.0707 Differential Geometry +0706.0888 Differential Geometry +0708.1999 Differential Geometry +0710.1611 Differential Geometry +0902.2096 +0903.5534 Differential Geometry +0907.3333 Popular Physics +0908.1437 Popular Physics +0908.3179 Quantum Gases +0910.3083 Differential Geometry +0911.0957 Atomic Physics +0911.3294 Differential Geometry +1001.3802 Probability +1003.1416 Differential Geometry +1003.1417 Differential Geometry +1003.6053 Probability +1006.0198 Quantum Gases +1009.5934 Probability +1010.2878 +1011.2958 Risk Management +1011.4080 Populations and Evolution +1011.4929 Classical Analysis and ODEs +1012.0677 Statistical Mechanics +1012.2499 Distributed, Parallel, and Cluster Computing +1012.2810 Combinatorics +1101.0754 Adaptation and Self-Organizing Systems +1101.3229 Statistics Theory +1101.5282 Probability +1102.1093 Algebraic Geometry +1103.2955 Group Theory +1104.2577 +1104.3034 Probability +1105.1718 Combinatorics +1105.6330 Functional Analysis +1106.6299 Theory +1107.2373 Cosmology and Nongalactic Astrophysics +1107.4835 +1107.5415 Numerical Analysis +1108.3346 +1108.4241 +1108.4686 +1108.5761 Combinatorics +1109.1020 Materials Science +1109.1602 Combinatorics +1109.1884 Algebraic Geometry +1109.1963 +1109.3218 Combinatorics +1109.6248 Differential Geometry +1110.0619 Plasma Physics +1110.2272 Combinatorics +1110.4650 Solar and Stellar Astrophysics +1111.2659 Number Theory +1111.2916 Phenomenology +1112.2892 Information Theory +1201.0013 Theory +1201.2239 Theory +1202.6131 Optimization and Control +1203.1562 Fluid Dynamics +1203.3324 Cryptography and Security +1203.4681 Cosmology and Nongalactic Astrophysics +1203.6623 Metric Geometry +1204.0148 Trading and Market Microstructure +1204.0278 +1204.1799 Algebraic Geometry +1204.2346 +1204.2951 Probability +1204.5311 Group Theory +1205.3151 Quantum Gases +1205.6612 Probability +1205.6861 Algebraic Geometry +1206.0096 Mesoscale and Nanoscale Physics +1206.0785 +1206.2039 Representation Theory +1206.3645 Algebraic Geometry +1207.0573 Theory +1207.0590 Quantum Gases +1207.0648 Spectral Theory +1207.7249 Geometric Topology +1208.4139 Number Theory +1209.0542 Statistics Theory +1209.0653 Differential Geometry +1209.2860 Theory +1209.3695 Plasma Physics +1209.4121 Mesoscale and Nanoscale Physics +1209.5932 +1210.0631 Functional Analysis +1210.1678 Superconductivity +1210.4499 Spectral Theory +1210.4691 Solar and Stellar Astrophysics +1210.5945 +1210.5960 Mesoscale and Nanoscale Physics +1210.6213 +1210.6904 +1210.7149 Other Condensed Matter +1210.7328 Statistical Mechanics +1211.0070 Theory +1211.2184 Symplectic Geometry +1211.3757 Mesoscale and Nanoscale Physics +1211.4053 Computer Science and Game Theory +1211.4203 Strongly Correlated Electrons +1211.4347 Software Engineering +1211.4454 Theory +1211.5755 Combinatorics +1212.3335 Theory +1212.3609 Theory +1212.5302 Representation Theory +1301.0357 Quantum Gases +1301.0467 Theory +1301.0906 Functional Analysis +1301.1887 Physics and Society +1301.2119 History and Philosophy of Physics +1301.2637 Geometric Topology +1301.4105 Analysis of PDEs +1301.4246 +1301.4810 Metric Geometry +1301.5218 +1301.5643 Strongly Correlated Electrons +1301.6930 Solar and Stellar Astrophysics +1301.6934 Solar and Stellar Astrophysics +1301.7021 +1301.7098 Analysis of PDEs +1302.0384 +1302.0644 Superconductivity +1302.2383 +1302.2540 Mesoscale and Nanoscale Physics +1302.2710 Populations and Evolution +1302.3901 Cryptography and Security +1302.3936 Phenomenology +1302.4350 Logic in Computer Science +1302.4762 +1302.5126 Phenomenology +1302.5246 Lattice +1302.6205 Strongly Correlated Electrons +1303.0776 Mesoscale and Nanoscale Physics +1303.1706 Strongly Correlated Electrons +1303.2179 Mesoscale and Nanoscale Physics +1303.2691 Solar and Stellar Astrophysics +1303.2710 Superconductivity +1303.2806 Mesoscale and Nanoscale Physics +1303.3405 Quantum Gases +1303.3413 Probability +1303.3558 Mesoscale and Nanoscale Physics +1303.3825 +1303.4443 Computational Complexity +1303.5860 Mesoscale and Nanoscale Physics +1303.5887 Information Theory +1303.5974 Discrete Mathematics +1303.6012 Numerical Analysis +1303.6610 Soft Condensed Matter +1303.7275 Geometric Topology +1304.0309 Cosmology and Nongalactic Astrophysics +1304.0809 Programming Languages +1304.0821 Instrumentation and Detectors +1304.0917 Data Structures and Algorithms +1304.2217 Commutative Algebra +1304.2582 Plasma Physics +1304.2656 Mesoscale and Nanoscale Physics +1304.2977 Instrumentation and Detectors +1304.3465 Cosmology and Nongalactic Astrophysics +1304.3934 Mesoscale and Nanoscale Physics +1304.3994 Information Theory +1304.4008 +1304.4052 Astrophysics of Galaxies +1304.4930 Probability +1304.4970 Phenomenology +1304.5086 Group Theory +1304.5140 Data Structures and Algorithms +1304.5681 Biological Physics +1304.5761 Mesoscale and Nanoscale Physics +1304.6090 High Energy Astrophysical Phenomena +1304.6844 Mesoscale and Nanoscale Physics +1304.7058 +1304.7134 Plasma Physics +1304.7446 Dynamical Systems +1305.0205 Physics and Society +1305.0768 Physics and Society +1305.1188 General Physics +1305.4040 Category Theory +1305.4425 Materials Science +1305.5049 Theory +1305.6142 Cosmology and Nongalactic Astrophysics +1305.6168 +1305.6353 Algebraic Geometry +1305.7392 Mesoscale and Nanoscale Physics +1306.0021 Statistical Mechanics +1306.0030 Soft Condensed Matter +1306.0407 Machine Learning +1306.0555 Software Engineering +1306.1702 Other Computer Science +1306.2091 Computation and Language +1306.2392 Numerical Analysis +1306.2986 Phenomenology +1306.3049 Commutative Algebra +1306.3434 Number Theory +1306.3438 Analysis of PDEs +1306.3498 Functional Analysis +1306.3499 +1306.3506 Numerical Analysis +1306.3507 Formal Languages and Automata Theory +1306.3508 Combinatorics +1306.3511 +1306.3514 Algebraic Geometry +1306.3524 Data Analysis, Statistics and Probability +1306.3528 Statistical Mechanics +1306.3531 Risk Management +1306.3538 Data Structures and Algorithms +1306.3539 +1306.3546 Cryptography and Security +1306.3547 Superconductivity +1306.3551 Robotics +1306.3558 Learning +1306.3560 Computer Vision and Pattern Recognition +1306.3566 Data Structures and Algorithms +1306.3567 Mesoscale and Nanoscale Physics +1306.3574 Machine Learning +1306.3577 Analysis of PDEs +1306.3584 Computation and Language +1306.3585 Probability +1306.3586 Phenomenology +1306.3594 +1306.3601 Data Structures and Algorithms +1306.3602 Data Structures and Algorithms +1306.3606 Dynamical Systems +1306.3608 Solar and Stellar Astrophysics +1306.3609 Statistics Theory +1306.3610 Information Theory +1306.3615 Populations and Evolution +1306.3622 Information Theory +1306.3623 Operator Algebras +1306.3628 Exactly Solvable and Integrable Systems +1306.3629 Analysis of PDEs +1306.3630 Geometric Topology +1306.3636 Applications +1306.3637 Optimization and Control +1306.3638 +1306.3641 Classical Analysis and ODEs +1306.3643 Pattern Formation and Solitons +1306.3644 Analysis of PDEs +1306.3645 +1306.3646 Phenomenology +1306.3647 Networking and Internet Architecture +1306.3648 Dynamical Systems +1306.3650 Commutative Algebra +1306.3653 Phenomenology +1306.3655 Representation Theory +1306.3659 Probability +1306.3660 Quantum Algebra +1306.3664 +1306.3667 Solar and Stellar Astrophysics +1306.3668 Algebraic Geometry +1306.3670 Solar and Stellar Astrophysics +1306.3671 Fluid Dynamics +1306.3676 Functional Analysis +1306.3679 Optimization and Control +1306.3680 Optimization and Control +1306.3681 Number Theory +1306.3682 Optimization and Control +1306.3683 Optimization and Control +1306.3684 Optimization and Control +1306.3685 Optimization and Control +1306.3687 Solar and Stellar Astrophysics +1306.3688 K-Theory and Homology +1306.3699 Analysis of PDEs +1306.3702 Strongly Correlated Electrons +1306.3704 General Finance +1306.3705 Quantum Algebra +1306.3707 Networking and Internet Architecture +1306.3710 Information Theory +1306.3713 +1306.3714 Computational Physics +1306.3715 Differential Geometry +1306.3727 Computational Complexity +1306.3729 Learning +1306.3734 +1306.3735 Analysis of PDEs +1306.3746 +1306.3749 +1306.3755 Atmospheric and Oceanic Physics +1306.3760 +1306.3761 Analysis of PDEs +1306.3762 Applications +1306.3764 Optimization and Control +1306.3766 Computational Complexity +1306.3768 Applications +1306.3770 Information Theory +1306.3772 Data Structures and Algorithms +1306.3774 Information Theory +1306.3776 Operator Algebras +1306.3783 Digital Libraries +1306.3785 Fluid Dynamics +1306.3789 History and Philosophy of Physics +1306.3793 Phenomenology +1306.3794 Instrumentation and Detectors +1306.3795 K-Theory and Homology +1306.3797 Combinatorics +1306.3798 Optimization and Control +1306.3802 Rings and Algebras +1306.3807 Optimization and Control +1306.3809 Probability +1306.3811 Soft Condensed Matter +1306.3813 Biological Physics +1306.3814 Dynamical Systems +1306.3817 Metric Geometry +1306.3820 Physics and Society +1306.3821 Quantum Algebra +1306.3822 Physics and Society +1306.3827 Functional Analysis +1306.3828 Computer Vision and Pattern Recognition +1306.3831 Probability +1306.3832 Optics +1306.3834 Optics +1306.3836 Optimization and Control +1306.3838 Rings and Algebras +1306.3839 Social and Information Networks +1306.3840 Rings and Algebras +1306.3844 Dynamical Systems +1306.3847 Dynamical Systems +1306.3852 Algebraic Geometry +1306.3853 History and Overview +1306.3857 Data Structures and Algorithms +1306.3859 Quantum Algebra +1306.3862 Machine Learning +1306.3867 Optimization and Control +1306.3875 Other Computer Science +1306.3877 Data Structures and Algorithms +1306.3897 Differential Geometry +1306.3905 Learning +1306.3906 Distributed, Parallel, and Cluster Computing +1306.3907 Phenomenology +1306.3908 Strongly Correlated Electrons +1306.3909 Computer Science and Game Theory +1306.3911 Probability +1306.3917 Machine Learning +1306.3921 Combinatorics +1306.3925 +1306.3926 Phenomenology +1306.3928 Analysis of PDEs +1306.3931 Materials Science +1306.3932 +1306.3934 Probability +1306.3943 Symplectic Geometry +1306.3945 +1306.3952 +1306.3953 Systems and Control +1306.3954 General Topology +1306.3955 Information Retrieval +1306.3958 Cosmology and Nongalactic Astrophysics +1306.3959 Software Engineering +1306.3964 Rings and Algebras +1306.3965 Representation Theory +1306.3968 Atomic Physics +gr-qc/0611124 +math-ph/0402049 +math/0507303 Probability +0708.0565 Algebraic Geometry +0908.2238 Algebraic Geometry +0909.1835 Algebraic Geometry +0910.0144 Networking and Internet Architecture +0910.2140 Networking and Internet Architecture +1001.4498 Algebraic Geometry +1007.1789 +1008.2911 Group Theory +1010.6171 Algebraic Geometry +1011.2044 Rings and Algebras +1011.2513 Superconductivity +1102.1620 Probability +1102.4349 Astrophysics of Galaxies +1103.3060 Differential Geometry +1103.4175 Quantum Algebra +1103.4550 Social and Information Networks +1104.3061 Instrumentation and Methods for Astrophysics +1105.0724 Algebraic Geometry +1105.2174 Materials Science +1106.1356 Chemical Physics +1106.2896 Statistical Mechanics +1106.4946 +1107.1947 Differential Geometry +1107.2874 Probability +1107.2876 Probability +1107.2878 Probability +1108.1938 Algebraic Topology +1108.5565 Probability +1109.5590 Strongly Correlated Electrons +1201.3138 Superconductivity +1201.3217 Computational Geometry +1201.4505 Metric Geometry +1201.6316 Statistical Mechanics +1201.6642 Mesoscale and Nanoscale Physics +1202.2557 Classical Analysis and ODEs +1202.5531 Algebraic Geometry +1203.0066 +1203.0885 Mesoscale and Nanoscale Physics +1203.0910 Combinatorics +1203.3994 Mesoscale and Nanoscale Physics +1203.5385 Other Condensed Matter +1203.6458 High Energy Astrophysical Phenomena +1204.4814 Mesoscale and Nanoscale Physics +1204.5059 Information Theory +1204.5405 Strongly Correlated Electrons +1204.5740 General Physics +1204.6093 Optimization and Control +1204.6624 Dynamical Systems +1205.1816 Strongly Correlated Electrons +1205.5001 Number Theory +1205.6023 Mesoscale and Nanoscale Physics +1206.6803 Strongly Correlated Electrons +1207.2510 +1207.3649 Machine Learning +1208.1689 +1208.3171 Analysis of PDEs +1209.1606 Disordered Systems and Neural Networks +1209.1967 Superconductivity +1209.4060 High Energy Astrophysical Phenomena +1209.4095 Rings and Algebras +1209.5424 Strongly Correlated Electrons +1209.5457 Algebraic Geometry +1209.5915 Theory +1209.6058 Strongly Correlated Electrons +1209.6207 Phenomenology +1210.0256 Differential Geometry +1210.0883 Algebraic Topology +1210.1012 Superconductivity +1210.4056 Category Theory +1210.5239 Mesoscale and Nanoscale Physics +1210.6297 Strongly Correlated Electrons +1211.0989 +1211.1980 Phenomenology +1211.2538 +1211.4800 Statistical Mechanics +1211.5100 Mesoscale and Nanoscale Physics +1211.5314 Phenomenology +1211.5990 +1211.7261 Phenomenology +1212.0155 +1212.3292 Spectral Theory +1212.3553 Earth and Planetary Astrophysics +1212.4365 +1301.0846 Quantum Gases +1301.3764 Learning +1301.3788 Mesoscale and Nanoscale Physics +1301.3805 Astrophysics of Galaxies +1301.5355 Superconductivity +1301.6076 Theory +1301.6554 Neurons and Cognition +1301.6866 Differential Geometry +1301.7009 Theory +1301.7070 Astrophysics of Galaxies +1301.7536 Phenomenology +1302.1809 Statistics Theory +1302.2293 Functional Analysis +1302.2862 Probability +1302.3989 Strongly Correlated Electrons +1302.6751 Atomic Physics +1303.2920 Data Structures and Algorithms +1303.3659 +1303.5782 Group Theory +1303.5885 Combinatorics +1303.6201 Mesoscale and Nanoscale Physics +1303.6231 Biomolecules +1303.6390 Learning +1303.6399 Superconductivity +1303.6490 General Physics +1303.6625 Dynamical Systems +1303.6626 Probability +1303.6627 +1303.6642 Commutative Algebra +1303.6643 Geometric Topology +1303.6647 Chaotic Dynamics +1303.6649 +1303.6652 Solar and Stellar Astrophysics +1303.6654 General Finance +1303.6660 Spectral Theory +1303.6663 Probability +1303.6667 Biomolecules +1303.6669 Metric Geometry +1303.6670 Atomic Physics +1303.6671 Materials Science +1303.6675 Functional Analysis +1303.6676 Chemical Physics +1303.6682 Databases +1303.6683 Computational Geometry +1303.6698 Phenomenology +1303.6701 +1303.6707 Instrumentation and Methods for Astrophysics +1303.6711 Computer Vision and Pattern Recognition +1303.6714 General Topology +1303.6715 Superconductivity +1303.6717 Geometric Topology +1303.6719 Systems and Control +1303.6721 Analysis of PDEs +1303.6724 Analysis of PDEs +1303.6726 Theory +1303.6728 Differential Geometry +1303.6731 Accelerator Physics +1303.6747 Fluid Dynamics +1303.6749 High Energy Astrophysical Phenomena +1303.6751 Classical Analysis and ODEs +1303.6753 Networking and Internet Architecture +1303.6757 Atomic Physics +1303.6759 Logic +1303.6761 Discrete Mathematics +1303.6762 Accelerator Physics +1303.6766 Accelerator Physics +1303.6767 Accelerator Physics +1303.6770 Probability +1303.6771 Information Theory +1303.6774 Group Theory +1303.6776 Lattice +1303.6777 Robotics +1303.6781 High Energy Astrophysical Phenomena +1303.6782 Cryptography and Security +1303.6784 Applications +1303.6790 Classical Analysis and ODEs +1303.6794 Social and Information Networks +1303.6795 Probability +1303.6796 Numerical Analysis +1303.6799 Discrete Mathematics +1303.6801 Information Theory +1303.6807 Networking and Internet Architecture +1303.6808 Instrumentation and Methods for Astrophysics +1303.6810 Optics +1303.6811 Machine Learning +1303.6817 Networking and Internet Architecture +1303.6819 +1303.6823 Analysis of PDEs +1303.6824 +1303.6826 Metric Geometry +1303.6827 Classical Analysis and ODEs +1303.6831 +1303.6837 Systems and Control +1303.6838 Solar and Stellar Astrophysics +1303.6839 Networking and Internet Architecture +1303.6841 Networking and Internet Architecture +1303.6845 Theory +1303.6847 Number Theory +1303.6855 Operator Algebras +1303.6859 Networking and Internet Architecture +1303.6862 Logic in Computer Science +1303.6870 Solar and Stellar Astrophysics +1303.6871 Solar and Stellar Astrophysics +1303.6872 Data Structures and Algorithms +1303.6874 Commutative Algebra +1303.6875 Group Theory +1303.6880 Information Theory +1303.6881 Networking and Internet Architecture +1303.6883 Numerical Analysis +1303.6884 Probability +1303.6885 Software Engineering +1303.6886 Physics Education +1303.6887 Networking and Internet Architecture +1303.6888 Classical Analysis and ODEs +1303.6889 Geometric Topology +1303.6890 Classical Analysis and ODEs +1303.6892 Classical Analysis and ODEs +1303.6893 Classical Analysis and ODEs +1303.6896 Cosmology and Nongalactic Astrophysics +1303.6898 Classical Analysis and ODEs +1303.6905 Cryptography and Security +1303.6906 Information Retrieval +1303.6908 Networking and Internet Architecture +1303.6910 Physics Education +1303.6911 Geometric Topology +1303.6919 Information Theory +1303.6927 Computer Vision and Pattern Recognition +1303.6931 Phenomenology +1303.6933 History and Overview +1303.6934 Analysis of PDEs +1303.6935 Machine Learning +1303.6937 Algebraic Geometry +1303.6944 Functional Analysis +math/0612476 Probability +solv-int/9909027 Exactly Solvable and Integrable Systems +0810.3670 Probability +0906.0601 Analysis of PDEs +0907.2882 Analysis of PDEs +0908.0097 Differential Geometry +0912.1098 Mesoscale and Nanoscale Physics +1004.3531 Probability +1004.4527 Analysis of PDEs +1005.2059 Numerical Analysis +1006.2059 Numerical Analysis +1012.1819 Combinatorics +1106.0823 Computer Vision and Pattern Recognition +1108.0220 Theory +1108.3102 Geometric Topology +1108.3249 Combinatorics +1110.2124 Commutative Algebra +1111.4392 Operator Algebras +1202.3294 Combinatorics +1205.1784 Theory +1206.0128 Complex Variables +1206.1283 Materials Science +1206.2938 Superconductivity +1206.5227 Mesoscale and Nanoscale Physics +1206.6967 Numerical Analysis +1207.1724 Quantum Gases +1207.4686 Experiment +1207.4708 Artificial Intelligence +1207.5835 Functional Analysis +1208.0353 Information Theory +1208.2884 Experiment +1208.2956 Data Structures and Algorithms +1208.3144 Experiment +1208.3956 Numerical Analysis +1208.3988 Differential Geometry +1208.4305 Experiment +1208.4783 Dynamical Systems +1208.6168 Mesoscale and Nanoscale Physics +1209.0753 Experiment +1209.1441 +1209.2102 Experiment +1209.2140 Cosmology and Nongalactic Astrophysics +1209.3817 Differential Geometry +1209.4186 Experiment +1210.1238 Strongly Correlated Electrons +1210.1314 Experiment +1210.2852 Experiment +1210.4457 Experiment +1210.4813 Experiment +1210.4826 Experiment +1210.7451 Experiment +1210.8382 Strongly Correlated Electrons +1211.1167 Experiment +1211.1597 Experiment +1211.4620 Theory +1211.5503 Strongly Correlated Electrons +1211.6454 Superconductivity +1212.0482 Quantum Gases +1212.1272 Experiment +1212.2870 +1212.3231 Probability +1212.5774 +1212.6149 Experiment +1301.3294 Dynamical Systems +1301.4192 Physics and Society +1301.5714 +1302.2378 Group Theory +1302.2379 Group Theory +1302.2592 Statistical Mechanics +1302.2681 Group Theory +1302.3836 Phenomenology +1302.3949 Physics and Society +1302.6278 +1303.2264 Statistical Mechanics +1303.2813 Cosmology and Nongalactic Astrophysics +1303.4155 Cryptography and Security +1303.4718 +1303.6553 Mesoscale and Nanoscale Physics +1303.7151 Instrumentation and Methods for Astrophysics +1304.0276 Materials Science +1304.6592 +1305.1403 Statistical Mechanics +1305.1446 Theory +1305.1459 Distributed, Parallel, and Cluster Computing +1305.1888 Strongly Correlated Electrons +1305.2627 Phenomenology +1305.3673 Mesoscale and Nanoscale Physics +1305.3809 Accelerator Physics +1305.4617 Instrumentation and Methods for Astrophysics +1305.5640 +1305.6099 Statistics Theory +1305.6817 Cryptography and Security +1306.0652 Superconductivity +1306.0845 Phenomenology +1306.1099 Phenomenology +1306.1145 Mesoscale and Nanoscale Physics +1306.1223 Theory +1306.1291 Phenomenology +1306.1735 Phenomenology +1306.2717 Algebraic Topology +1306.3790 Materials Science +1306.3799 Chemical Physics +1306.4290 Representation Theory +1306.4487 +1306.4597 High Energy Astrophysical Phenomena +1306.4628 Combinatorics +1306.4629 Neural and Evolutionary Computing +1306.4733 Pricing of Securities +1306.4735 Physics and Society +1306.4954 Cosmology and Nongalactic Astrophysics +1306.4977 +1306.4995 +1306.4997 Networking and Internet Architecture +1306.4999 Social and Information Networks +1306.5002 Probability +1306.5003 Data Structures and Algorithms +1306.5004 Physics and Society +1306.5007 Combinatorics +1306.5011 Optics +1306.5023 Theory +1306.5027 Superconductivity +1306.5029 Data Structures and Algorithms +1306.5034 Geophysics +1306.5037 Functional Analysis +1306.5039 +1306.5047 Phenomenology +1306.5049 Materials Science +1306.5050 Materials Science +1306.5052 Phenomenology +1306.5053 Artificial Intelligence +1306.5055 Mesoscale and Nanoscale Physics +1306.5058 Populations and Evolution +1306.5061 Programming Languages +1306.5066 Optics +1306.5068 Optics +1306.5070 Artificial Intelligence +1306.5074 Rings and Algebras +1306.5075 Quantitative Methods +1306.5081 Computational Geometry +1306.5082 General Finance +1306.5091 Computers and Society +1306.5092 Accelerator Physics +1306.5097 Soft Condensed Matter +1306.5098 Social and Information Networks +1306.5099 Systems and Control +1306.5102 Algebraic Geometry +1306.5108 Solar and Stellar Astrophysics +1306.5109 Systems and Control +1306.5111 Information Theory +1306.5113 Mesoscale and Nanoscale Physics +1306.5114 Populations and Evolution +1306.5118 Operator Algebras +1306.5121 +1306.5124 Superconductivity +1306.5128 Logic +1306.5133 +1306.5136 +1306.5139 Optimization and Control +1306.5142 Programming Languages +1306.5146 Theory +1306.5148 Quantitative Methods +1306.5151 Computer Vision and Pattern Recognition +1306.5156 Cryptography and Security +1306.5158 Computational Engineering, Finance, and Science +1306.5159 Differential Geometry +1306.5160 Computational Engineering, Finance, and Science +1306.5162 Cosmology and Nongalactic Astrophysics +1306.5164 High Energy Astrophysical Phenomena +1306.5165 +1306.5166 Multiagent Systems +1306.5170 Information Retrieval +1306.5172 Numerical Analysis +1306.5179 Physics and Society +1306.5180 Other Computer Science +1306.5185 General Physics +1306.5188 Strongly Correlated Electrons +1306.5189 Solar and Stellar Astrophysics +1306.5191 Solar and Stellar Astrophysics +1306.5192 +1306.5202 Quantitative Methods +1306.5204 Social and Information Networks +1306.5206 +1306.5209 Networking and Internet Architecture +1306.5211 +1306.5215 General Literature +1306.5216 Numerical Analysis +1306.5218 Phenomenology +1306.5224 Computational Geometry +1306.5225 Rings and Algebras +math/0610440 Geometric Topology +physics/0605005 Chemical Physics +0810.0851 Algebraic Topology +0810.4423 Computational Geometry +0811.0144 Rings and Algebras +0811.1248 +0903.1472 Quantum Algebra +0905.3602 Information Theory +0906.1618 Information Theory +0909.1708 Quantum Algebra +0911.2942 Databases +0911.4020 Metric Geometry +1001.0158 General Topology +1001.3054 Probability +1002.0518 Quantum Algebra +1002.4513 General Physics +1003.0501 Quantum Algebra +1003.1187 Probability +1005.1694 Discrete Mathematics +1005.3651 +1006.0361 Differential Geometry +1007.1550 Statistical Mechanics +1012.2188 +1105.2575 Algebraic Geometry +1105.4166 Cosmology and Nongalactic Astrophysics +1106.4684 Probability +1107.1419 Analysis of PDEs +1107.4810 Numerical Analysis +1108.3172 Combinatorics +1108.6316 Differential Geometry +1109.2859 Physics and Society +1109.6862 Information Retrieval +1111.1825 Classical Analysis and ODEs +1111.3268 Combinatorics +1111.5218 Theory +1111.7137 Phenomenology +1112.3153 Discrete Mathematics +1201.6022 Information Theory +1202.3506 Phenomenology +1203.1776 Commutative Algebra +1203.1871 Statistics Theory +1203.2733 +1204.1093 General Physics +1204.1309 +1204.1903 Pricing of Securities +1204.1987 +1204.3593 Phenomenology +1204.5896 Quantum Gases +1204.6308 +1204.6543 Probability +1204.6564 Information Theory +1205.0898 Solar and Stellar Astrophysics +1205.1090 Combinatorics +1205.1557 Phenomenology +1205.2884 Combinatorics +1205.2936 Superconductivity +1206.0013 Mesoscale and Nanoscale Physics +1206.0067 Phenomenology +1206.1755 Optimization and Control +1206.3945 Combinatorics +1207.0646 Strongly Correlated Electrons +1207.1194 Optimization and Control +1207.1460 Probability +1207.2203 Theory +1207.3238 Statistics Theory +1207.5242 +1207.5832 Experiment +1208.1294 Populations and Evolution +1208.1339 Mesoscale and Nanoscale Physics +1208.1530 Lattice +1208.4541 Fluid Dynamics +1208.4855 Cosmology and Nongalactic Astrophysics +1208.5550 Strongly Correlated Electrons +1209.0825 Cosmology and Nongalactic Astrophysics +1209.1398 +1209.1891 Optics +1209.3610 +1209.3676 Strongly Correlated Electrons +1209.4291 Phenomenology +1209.4470 Mesoscale and Nanoscale Physics +1209.4613 Strongly Correlated Electrons +1209.5646 Statistical Mechanics +1209.6169 Optimization and Control +1209.6263 Strongly Correlated Electrons +1209.6435 +1210.0509 +1210.1770 +1210.3463 Statistical Mechanics +1210.4807 Disordered Systems and Neural Networks +1210.5857 Materials Science +1210.6030 Solar and Stellar Astrophysics +1210.6534 Mesoscale and Nanoscale Physics +1210.6848 Fluid Dynamics +1210.8014 Data Structures and Algorithms +1210.8195 Chaotic Dynamics +1210.8196 Systems and Control +1211.3277 Atomic Physics +1211.5475 Rings and Algebras +1211.5659 +1211.6708 Plasma Physics +1211.7240 +1211.7370 Theory +1212.0744 Analysis of PDEs +1212.1316 Quantum Gases +1212.1483 +1212.4479 Algebraic Geometry +1212.4890 Applications +1212.5165 Phenomenology +1212.5345 Algebraic Geometry +1212.5841 Learning +1212.5950 Phenomenology +1212.6316 Machine Learning +1212.6337 Disordered Systems and Neural Networks +1212.6472 Superconductivity +1212.6672 Functional Analysis +1212.6911 Functional Analysis +1301.0001 Emerging Technologies +1301.0006 Social and Information Networks +1301.0008 Number Theory +1301.0010 Cosmology and Nongalactic Astrophysics +1301.0013 Differential Geometry +1301.0015 Learning +1301.0019 Combinatorics +1301.0025 Representation Theory +1301.0026 Multimedia +1301.0029 Lattice +1301.0033 General Physics +1301.0035 Number Theory +1301.0037 Software Engineering +1301.0038 Logic in Computer Science +1301.0039 Logic in Computer Science +1301.0040 Logic in Computer Science +1301.0041 Logic in Computer Science +1301.0042 Software Engineering +1301.0043 Human-Computer Interaction +1301.0044 Software Engineering +1301.0045 Logic in Computer Science +1301.0046 Logic in Computer Science +1301.0048 Neural and Evolutionary Computing +1301.0050 Neurons and Cognition +1301.0055 Experiment +1301.0061 Mesoscale and Nanoscale Physics +1301.0062 Geometric Topology +1301.0065 Optics +1301.0066 +1301.0067 +1301.0074 Combinatorics +1301.0075 Combinatorics +1301.0078 Number Theory +1301.0079 Information Theory +1301.0081 History and Overview +1301.0082 Learning +1301.0085 Group Theory +1301.0094 Information Theory +1301.0097 Information Theory +1301.0098 Experiment +1301.0100 Materials Science +1301.0102 Combinatorics +1301.0103 Data Structures and Algorithms +1301.0106 +1301.0109 Computational Finance +1301.0112 Analysis of PDEs +1301.0113 Probability +1301.0114 Programming Languages +1301.0115 +1301.0116 +1301.0118 Methodology +1301.0119 Probability +1301.0124 Probability +1301.0125 Probability +1301.0126 Algebraic Geometry +1301.0128 Mathematical Software +1301.0129 Mathematical Software +1301.0132 Functional Analysis +1301.0141 Experiment +1301.0142 Machine Learning +1301.0143 Analysis of PDEs +1301.0145 Materials Science +1301.0147 Probability +1301.0148 Data Analysis, Statistics and Probability +1301.0150 Fluid Dynamics +1301.0152 Computer Science and Game Theory +1301.0160 Analysis of PDEs +1301.0161 Representation Theory +1301.0167 Computer Vision and Pattern Recognition +1301.0173 Artificial Intelligence +1301.0176 Artificial Intelligence +1301.0179 Learning +1301.0180 Exactly Solvable and Integrable Systems +1301.0181 Data Structures and Algorithms +1301.0184 Mesoscale and Nanoscale Physics +1301.0186 Risk Management +1301.0188 Networking and Internet Architecture +1301.0194 Analysis of PDEs +1301.0198 Space Physics +1301.0199 Solar and Stellar Astrophysics +1301.0200 +1301.0203 +1301.0207 Information Theory +1301.0211 Methodology +1301.0212 Lattice +1301.0214 Number Theory +1301.0216 Artificial Intelligence +1301.0220 Biological Physics +1301.0221 +1301.0226 Complex Variables +1301.0228 Experiment +1301.0236 Optics +1301.0238 Soft Condensed Matter +1301.0240 Astrophysics of Galaxies +1301.0246 Materials Science +1301.0249 Algebraic Geometry +1301.0251 Number Theory +1301.0252 Number Theory +1301.0255 Astrophysics of Galaxies +1301.0262 +1301.0265 Sound +1301.0267 Numerical Analysis +1301.0268 Symplectic Geometry +1301.0275 +1301.0278 Sound +1301.0279 Experiment +1301.0282 Combinatorics +1301.0283 Experiment +1301.0285 Earth and Planetary Astrophysics +1301.0287 Phenomenology +1301.0289 Graphics +1301.0294 Probability +1301.0297 Information Theory +1301.0300 Category Theory +1301.0308 Quantum Gases +1301.0310 Physics and Society +1301.0311 Instrumentation and Methods for Astrophysics +math/0006219 Logic +math/0010070 Logic +math/0107206 Logic +math/0210087 Logic +math/0210205 Logic +math/0603530 Differential Geometry +math/9711222 Logic +math/9806165 Logic +math/9807172 Logic +math/9808056 Logic +physics/0703035 Geophysics +0706.3262 Dynamical Systems +0906.4296 Symplectic Geometry +0910.0933 Strongly Correlated Electrons +1008.1287 Data Analysis, Statistics and Probability +1011.6079 Number Theory +1012.1908 Optimization and Control +1102.5598 Disordered Systems and Neural Networks +1103.2712 Commutative Algebra +1107.0158 Probability +1109.3210 +1110.2598 Combinatorics +1111.3164 Optimization and Control +1111.4007 Strongly Correlated Electrons +1112.0983 Optimization and Control +1201.1316 Functional Analysis +1201.3094 Algebraic Geometry +1201.6438 Numerical Analysis +1202.6002 Strongly Correlated Electrons +1203.0808 Classical Analysis and ODEs +1203.1372 Analysis of PDEs +1204.1164 Superconductivity +1204.4563 Information Theory +1204.6302 Combinatorics +1205.5646 Theory +1206.0258 Strongly Correlated Electrons +1207.2691 Mesoscale and Nanoscale Physics +1207.6166 High Energy Astrophysical Phenomena +1208.0339 Theory +1209.0305 Portfolio Management +1209.1579 Mesoscale and Nanoscale Physics +1209.2293 Dynamical Systems +1209.5141 Numerical Analysis +1209.5311 Operator Algebras +1210.2156 +1210.2656 +1210.4196 Phenomenology +1210.4720 +1210.6001 Learning +1211.1950 Superconductivity +1211.6088 Mesoscale and Nanoscale Physics +1211.6123 Cosmology and Nongalactic Astrophysics +1212.2937 Combinatorics +1212.3000 Theory +1212.3457 Quantum Gases +1212.3562 +1212.3744 Mesoscale and Nanoscale Physics +1301.1910 Phenomenology +1301.3261 Strongly Correlated Electrons +1301.3427 Strongly Correlated Electrons +1301.3959 Quantum Gases +1301.4505 Theory +1301.7028 +1301.7227 Quantum Gases +1302.1187 Quantum Gases +1302.1303 Quantum Gases +1302.1418 Materials Science +1302.2578 +1302.4282 Phenomenology +1302.4514 Mesoscale and Nanoscale Physics +1302.4669 +1302.7183 Plasma Physics +1302.7232 Phenomenology +1303.0258 Materials Science +1303.1325 Atomic Physics +1303.1593 Cosmology and Nongalactic Astrophysics +1303.2046 Chemical Physics +1303.2244 Logic +1303.3412 +1303.6802 Combinatorics +1304.0060 +1304.1300 Plasma Physics +1304.4021 Soft Condensed Matter +1304.5256 Strongly Correlated Electrons +1304.6055 Number Theory +1304.6646 Optics +1304.7818 Space Physics +1304.7851 Learning +1305.0445 Learning +1305.0975 Probability +1305.1384 Experiment +1305.2406 Functional Analysis +1305.2703 Cosmology and Nongalactic Astrophysics +1305.3369 Mesoscale and Nanoscale Physics +1305.3913 General Physics +1305.4185 Soft Condensed Matter +1305.4709 Theory +1305.5590 Geometric Topology +1305.5707 Biological Physics +1305.7472 +1306.0159 +1306.0602 +1306.0860 +1306.0942 Materials Science +1306.1210 +1306.1308 Atomic Physics +1306.1428 Geometric Topology +1306.1544 Numerical Analysis +1306.1548 Cosmology and Nongalactic Astrophysics +1306.1557 Artificial Intelligence +1306.1558 Group Theory +1306.1561 Probability +1306.1564 Phenomenology +1306.1575 Materials Science +1306.1580 K-Theory and Homology +1306.1581 Differential Geometry +1306.1584 Plasma Physics +1306.1585 Dynamical Systems +1306.1589 Optimization and Control +1306.1593 Combinatorics +1306.1594 Materials Science +1306.1597 Phenomenology +1306.1598 Methodology +1306.1599 Materials Science +1306.1600 Instrumentation and Methods for Astrophysics +1306.1602 Numerical Analysis +1306.1603 Computer Vision and Pattern Recognition +1306.1604 Computers and Society +1306.1607 Number Theory +1306.1609 Computer Vision and Pattern Recognition +1306.1613 Plasma Physics +1306.1615 Rings and Algebras +1306.1619 Computer Vision and Pattern Recognition +1306.1620 Rings and Algebras +1306.1626 Geophysics +1306.1627 Geophysics +1306.1629 Metric Geometry +1306.1630 Human-Computer Interaction +1306.1638 Classical Analysis and ODEs +1306.1639 Distributed, Parallel, and Cluster Computing +1306.1646 Materials Science +1306.1649 Analysis of PDEs +1306.1650 Rings and Algebras +1306.1651 Networking and Internet Architecture +1306.1652 Populations and Evolution +1306.1653 Neural and Evolutionary Computing +1306.1655 Differential Geometry +1306.1656 Discrete Mathematics +1306.1657 Number Theory +1306.1660 Rings and Algebras +1306.1664 Plasma Physics +1306.1669 Rings and Algebras +1306.1672 Earth and Planetary Astrophysics +1306.1676 Computer Vision and Pattern Recognition +1306.1677 Computer Science and Game Theory +1306.1678 Statistics Theory +1306.1679 Rings and Algebras +1306.1689 Databases +1306.1692 Distributed, Parallel, and Cluster Computing +1306.1694 +1306.1703 Soft Condensed Matter +1306.1705 Geometric Topology +1306.1709 +1306.1710 Analysis of PDEs +1306.1714 Logic in Computer Science +1306.1716 Learning +1306.1723 Databases +1306.1725 Methodology +1306.1728 Classical Analysis and ODEs +1306.1730 Databases +1306.1731 Cosmology and Nongalactic Astrophysics +1306.1739 Pattern Formation and Solitons +1306.1740 Cryptography and Security +1306.1743 Information Retrieval +1306.1747 Materials Science +1306.1752 Human-Computer Interaction +1306.1754 Classical Analysis and ODEs +1306.1756 +1306.1762 Strongly Correlated Electrons +1306.1764 Earth and Planetary Astrophysics +1306.1766 Number Theory +1306.1767 Group Theory +1306.1768 Earth and Planetary Astrophysics +1306.1769 Networking and Internet Architecture +1306.1771 Optimization and Control +1306.1772 Software Engineering +1306.1773 Software Engineering +1306.1774 Plasma Physics +1306.1782 Soft Condensed Matter +1306.1784 Experiment +1306.1792 High Energy Astrophysical Phenomena +1306.1794 Logic +1306.1797 Analysis of PDEs +1306.1798 Soft Condensed Matter +1306.1799 Earth and Planetary Astrophysics +1306.1802 Logic +1306.1803 Combinatorics +1306.1809 Cosmology and Nongalactic Astrophysics +1306.1811 Solar and Stellar Astrophysics +1306.1813 Mesoscale and Nanoscale Physics +1306.1815 Superconductivity +cond-mat/0005033 Superconductivity +cond-mat/0508326 Other Condensed Matter +cond-mat/0508425 Other Condensed Matter +cond-mat/0508505 Statistical Mechanics +cond-mat/0510165 Other Condensed Matter +cond-mat/0606129 Other Condensed Matter +cond-mat/0606540 Other Condensed Matter +cs/0703110 Computational Complexity +0707.2007 Classical Analysis and ODEs +0707.2346 Classical Analysis and ODEs +0803.3489 Algebraic Geometry +0806.1400 Soft Condensed Matter +0809.4560 Probability +0810.1547 Statistics Theory +0810.5706 Probability +0811.3552 Probability +0812.0881 Probability +0812.4105 Probability +0904.0966 Probability +0905.2670 +0908.2483 Mesoscale and Nanoscale Physics +0912.1120 Statistical Mechanics +1001.4684 Probability +1003.1552 +1004.1857 Mesoscale and Nanoscale Physics +1007.0895 Algebraic Geometry +1007.4310 Number Theory +1008.0126 Probability +1008.0367 Dynamical Systems +1010.1695 Differential Geometry +1103.2831 Probability +1103.3123 Artificial Intelligence +1103.4291 Algebraic Geometry +1103.4449 Quantum Gases +1104.2960 Geometric Topology +1105.4127 Discrete Mathematics +1105.5958 Classical Physics +1106.1188 Number Theory +1106.2330 Strongly Correlated Electrons +1107.0177 Spectral Theory +1107.3569 Cell Behavior +1107.3657 Probability +1108.5343 Functional Analysis +1109.1385 Number Theory +1109.2453 Materials Science +1109.3780 Astrophysics of Galaxies +1110.3497 Combinatorics +1110.5683 Algebraic Geometry +1111.7263 Commutative Algebra +1112.0113 +1112.0805 Information Theory +1112.4991 Metric Geometry +1112.5706 Algebraic Geometry +1201.2468 Theory +1201.3154 Quantum Gases +1201.5364 Populations and Evolution +1201.5447 Differential Geometry +1201.5690 Statistical Finance +1201.6222 Computational Geometry +1202.0997 Cosmology and Nongalactic Astrophysics +1202.1810 Statistical Mechanics +1202.4796 Materials Science +1202.6174 Robotics +1202.6562 Data Structures and Algorithms +1203.0893 Metric Geometry +1203.6526 +1204.0904 +1204.3765 Statistics Theory +1204.5451 +1204.5704 Combinatorics +1205.0061 Dynamical Systems +1205.0218 Soft Condensed Matter +1205.7050 Number Theory +1206.0617 +1206.0795 Logic +1206.1035 +1206.1274 Differential Geometry +1206.2895 Solar and Stellar Astrophysics +1206.4111 Numerical Analysis +1206.4374 +1206.5934 Quantum Algebra +1206.6550 +1207.0582 +1207.2834 Combinatorics +1207.3016 Phenomenology +1207.3694 Category Theory +1207.5864 Phenomenology +1207.6010 Soft Condensed Matter +1208.1525 +1208.4265 Materials Science +1208.5907 Data Structures and Algorithms +1208.5959 Numerical Analysis +1209.0041 +1209.0567 Disordered Systems and Neural Networks +1209.0949 Phenomenology +1209.1053 Quantum Gases +1209.2571 Soft Condensed Matter +1209.3776 Optics +1209.3971 Computational Physics +1209.4076 Quantum Gases +1209.4799 Combinatorics +1209.5346 Mesoscale and Nanoscale Physics +1210.0330 Molecular Networks +1210.0452 High Energy Astrophysical Phenomena +1210.0623 Social and Information Networks +1210.1089 Experiment +1210.1677 +1210.1852 Mesoscale and Nanoscale Physics +1210.2074 +1210.2473 Social and Information Networks +1210.2810 Materials Science +1210.4057 Mesoscale and Nanoscale Physics +1210.5179 +1210.6010 +1210.7010 +1210.7367 Symplectic Geometry +1210.7408 Geometric Topology +1210.7413 Cosmology and Nongalactic Astrophysics +1210.7512 +1210.8098 Materials Science +1210.8422 +1211.0075 Atomic Physics +1211.0194 Subcellular Processes +1211.0802 +1211.1144 Methodology +1211.1426 Exactly Solvable and Integrable Systems +1211.1522 Statistical Mechanics +1211.1591 +1211.1619 +1211.2272 Phenomenology +1211.3170 Cosmology and Nongalactic Astrophysics +1211.4048 +1211.4783 Social and Information Networks +1211.5001 +1212.0126 Phenomenology +1212.0276 Differential Geometry +1212.0517 Phenomenology +1212.0546 Strongly Correlated Electrons +1212.1686 +1212.1960 Theory +1212.3031 Theory +1212.4022 Strongly Correlated Electrons +1212.4480 Soft Condensed Matter +1212.5109 Molecular Networks +1212.5274 Quantum Gases +1212.5413 Phenomenology +1212.5908 Differential Geometry +1212.6428 Experiment +1301.0197 Phenomenology +1301.0728 Phenomenology +1301.0853 Strongly Correlated Electrons +1301.1059 K-Theory and Homology +1301.1201 Fluid Dynamics +1301.2212 Statistics Theory +1301.2242 Number Theory +1301.2700 Soft Condensed Matter +1301.2778 Cosmology and Nongalactic Astrophysics +1301.3183 +1301.3627 Computation and Language +1301.3686 +1301.4120 Strongly Correlated Electrons +1301.4680 +1301.5755 Experiment +1301.6151 +1301.6356 Information Theory +1301.6357 Neurons and Cognition +1301.6360 Neurons and Cognition +1301.6964 Soft Condensed Matter +1301.7581 Theory +1302.0179 Materials Science +1302.0215 Information Theory +1302.0230 Strongly Correlated Electrons +1302.0293 Phenomenology +1302.0306 Strongly Correlated Electrons +1302.1042 Phenomenology +1302.1424 Differential Geometry +1302.1868 Cosmology and Nongalactic Astrophysics +1302.2196 Phenomenology +1302.2291 Cosmology and Nongalactic Astrophysics +1302.3077 Optimization and Control +1302.3877 Cosmology and Nongalactic Astrophysics +1302.3968 Experiment +1302.4138 Computer Science and Game Theory +1302.4256 +1302.4563 Soft Condensed Matter +1302.5224 Theory +1302.5338 +1302.5433 Superconductivity +1302.5880 Mesoscale and Nanoscale Physics +1302.6325 Programming Languages +1302.6761 Quantum Gases +1302.7048 Networking and Internet Architecture +1302.7094 Physics Education +1302.7100 +1303.0073 Statistical Finance +1303.0076 Applications +1303.0283 Learning +1303.0594 Information Theory +1303.1397 Phenomenology +1303.1984 Materials Science +1303.2018 High Energy Astrophysical Phenomena +1303.2041 Computer Science and Game Theory +1303.2278 High Energy Astrophysical Phenomena +1303.2666 Solar and Stellar Astrophysics +1303.3124 +1303.3454 Metric Geometry +1303.4221 Differential Geometry +1303.4965 General Physics +1303.5149 Analysis of PDEs +1303.6034 Mathematical Software +1303.6232 Metric Geometry +1303.6354 +1303.6915 Algebraic Geometry +1304.0360 General Topology +1304.0372 Phenomenology +1304.0496 Metric Geometry +1304.0826 Superconductivity +1304.1315 Spectral Theory +1304.1810 Data Structures and Algorithms +1304.2869 Analysis of PDEs +1304.3269 Computational Physics +1304.3339 Cosmology and Nongalactic Astrophysics +1304.3590 Superconductivity +1304.5242 Cosmology and Nongalactic Astrophysics +1304.5254 General Topology +1304.5779 Rings and Algebras +1304.5797 +1304.5869 Computers and Society +1304.5978 Superconductivity +1304.6253 Mesoscale and Nanoscale Physics +1304.6643 Applications +1304.6776 Logic +1304.6878 Analysis of PDEs +1304.7262 High Energy Astrophysical Phenomena +1305.0070 Phenomenology +1305.0144 Portfolio Management +1305.0540 Information Retrieval +1305.0544 Complex Variables +1305.1073 Combinatorics +1305.1081 Classical Analysis and ODEs +1305.1340 Biological Physics +1305.1711 Optimization and Control +1305.1728 Dynamical Systems +1305.1729 Information Theory +1305.1856 Optics +1305.2113 Statistical Mechanics +1305.2150 Number Theory +1305.2231 Logic in Computer Science +1305.2277 Instrumentation and Detectors +1305.2415 Artificial Intelligence +1305.2416 +1305.2417 +1305.2419 Phenomenology +1305.2423 Geometric Topology +1305.2424 Phenomenology +1305.2426 Cryptography and Security +1305.2431 Number Theory +1305.2435 +1305.2438 Combinatorics +1305.2440 Information Theory +1305.2442 High Energy Astrophysical Phenomena +1305.2444 Optimization and Control +1305.2445 Mesoscale and Nanoscale Physics +1305.2449 Numerical Analysis +1305.2451 Mesoscale and Nanoscale Physics +1305.2452 Learning +1305.2458 Representation Theory +1305.2459 Information Theory +1305.2463 Symbolic Computation +1305.2468 Combinatorics +1305.2473 Statistics Theory +1305.2478 High Energy Astrophysical Phenomena +1305.2481 Functional Analysis +1305.2489 Analysis of PDEs +1305.2491 Atomic Physics +1305.2493 Statistical Mechanics +1305.2494 Numerical Analysis +1305.2498 Artificial Intelligence +1305.2499 +1305.2500 Other Computer Science +1305.2503 Combinatorics +1305.2505 Learning +1305.2508 Atomic Physics +1305.2513 Experiment +1305.2529 Solar and Stellar Astrophysics +1305.2531 Statistical Mechanics +1305.2532 Learning +1305.2533 Combinatorics +1305.2534 Strongly Correlated Electrons +1305.2536 Materials Science +1305.2537 Cellular Automata and Lattice Gases +1305.2540 Data Structures and Algorithms +1305.2542 Solar and Stellar Astrophysics +1305.2543 Combinatorics +1305.2544 Number Theory +1305.2546 Fluid Dynamics +1305.2548 Information Theory +1305.2549 Algebraic Geometry +1305.2551 Commutative Algebra +1305.2552 High Energy Astrophysical Phenomena +1305.2555 Chemical Physics +1305.2556 Statistical Mechanics +1305.2561 Artificial Intelligence +1305.2564 Theory +1305.2567 Combinatorics +1305.2569 Accelerator Physics +1305.2571 Analysis of PDEs +1305.2576 Representation Theory +1305.2579 Atomic Physics +1305.2581 Machine Learning +1305.2586 Probability +1305.2592 Information Theory +1305.2596 +1305.2598 History and Overview +1305.2607 Superconductivity +1305.2609 Computers and Society +1305.2611 Probability +1305.2612 Geometric Topology +1305.2616 Computers and Society +1305.2630 Group Theory +1305.2632 Classical Analysis and ODEs +1305.2633 Analysis of PDEs +1305.2635 Analysis of PDEs +1305.2636 Data Structures and Algorithms +1305.2639 +1305.2642 Information Theory +1305.2644 Classical Analysis and ODEs +1305.2645 Data Structures and Algorithms +1305.2646 Combinatorics +1305.2647 Data Structures and Algorithms +1305.2648 Learning +1305.2654 Medical Physics +1305.2655 Statistical Finance +1305.2656 Superconductivity +1305.2658 Probability +1305.2660 Solar and Stellar Astrophysics +1305.2663 Strongly Correlated Electrons +1305.2666 Probability +1305.2667 Methodology +1305.2669 Analysis of PDEs +1305.2671 Combinatorics +1305.2680 Computation and Language +1305.2684 Distributed, Parallel, and Cluster Computing +1305.2685 Number Theory +1305.2686 Information Retrieval +1305.2687 Computer Vision and Pattern Recognition +1305.2689 History and Overview +1305.2693 Pricing of Securities +1305.2696 Analysis of PDEs +1305.2699 Instrumentation and Methods for Astrophysics +1305.2704 Cryptography and Security +1305.2706 Mesoscale and Nanoscale Physics +1305.2708 Networking and Internet Architecture +1305.2717 Materials Science +1305.2718 Solar and Stellar Astrophysics +1305.2719 Cosmology and Nongalactic Astrophysics +1305.2724 Artificial Intelligence +1305.2725 Group Theory +1305.2726 Statistical Mechanics +1305.2729 Combinatorics +1305.2731 Algebraic Topology +1305.2732 Learning +1305.2736 Differential Geometry +1305.2744 Logic in Computer Science +1305.2749 Algebraic Geometry +1305.2752 Systems and Control +1305.2755 Information Retrieval +1305.2758 Databases +1305.2760 Optimization and Control +1305.2765 Combinatorics +1305.2766 Probability +1305.2767 Networking and Internet Architecture +1305.2770 Social and Information Networks +1305.2772 Data Structures and Algorithms +1305.2773 Optimization and Control +1305.2775 Analysis of PDEs +1305.2776 Networking and Internet Architecture +1305.2779 Plasma Physics +1305.2782 +1305.2785 Phenomenology +1305.2788 Learning +1305.2790 Plasma Physics +1305.2791 Solar and Stellar Astrophysics +1305.2792 Cosmology and Nongalactic Astrophysics +1305.2796 Combinatorics +1305.2801 Information Theory +1305.2803 High Energy Astrophysical Phenomena +1305.2804 +1305.2805 Differential Geometry +1305.2807 High Energy Astrophysical Phenomena +1305.2808 Cosmology and Nongalactic Astrophysics +1305.2811 High Energy Astrophysical Phenomena +1305.2812 Atmospheric and Oceanic Physics +1305.2813 Number Theory +1305.2815 Applications +1305.2821 Earth and Planetary Astrophysics +1305.2824 Applications +1305.2827 Computer Vision and Pattern Recognition +1305.2828 Computer Vision and Pattern Recognition +1305.2830 Neural and Evolutionary Computing +1305.2831 Information Retrieval +1305.2832 Classical Analysis and ODEs +1305.2835 Computational Geometry +1305.2836 Networking and Internet Architecture +1305.2837 Networking and Internet Architecture +1305.2838 Networking and Internet Architecture +1305.2846 Computation and Language +1305.2847 Computation and Language +1305.2848 Theory +1305.2865 Distributed, Parallel, and Cluster Computing +1305.2870 Probability +1305.2872 Number Theory +1305.2880 Combinatorics +1305.2882 Fluid Dynamics +1305.2883 Physics Education +1305.2884 History and Overview +1305.2885 Fluid Dynamics +1305.2886 Theory +1305.2891 Theory +astro-ph/0312655 +math/0511271 Quantum Algebra +quant-ph/9707020 +1211.6565 Experiment +1311.6759 +0706.1701 Combinatorics +0906.1272 Rings and Algebras +0908.3148 Neural and Evolutionary Computing +1001.2337 Probability +1002.0159 Probability +1003.1097 Materials Science +1004.3007 +1004.4645 Differential Geometry +1009.5245 Commutative Algebra +1009.5661 Differential Geometry +1010.5457 +1101.3711 Mesoscale and Nanoscale Physics +1102.5605 Computational Complexity +1103.2109 Probability +1103.3112 Commutative Algebra +1103.3887 Mesoscale and Nanoscale Physics +1104.4619 Commutative Algebra +1106.5153 Logic +1107.0284 Representation Theory +1107.5140 +1108.5236 Probability +1108.6148 +1109.3272 Information Theory +1109.3296 Dynamical Systems +1110.4188 Quantum Algebra +1111.3078 Mesoscale and Nanoscale Physics +1112.3481 +1112.3899 Theory +1201.4918 +1201.6551 Statistics Theory +1202.1181 +1202.2559 Applications +1202.3937 General Physics +1202.6638 Complex Variables +1203.2599 Phenomenology +1203.3344 Algebraic Geometry +1204.1183 Mesoscale and Nanoscale Physics +1204.2918 Other Condensed Matter +1204.3972 Learning +1204.5936 +1205.0607 Algebraic Geometry +1205.1024 Mesoscale and Nanoscale Physics +1205.5060 Earth and Planetary Astrophysics +1206.3998 Cosmology and Nongalactic Astrophysics +1207.6809 +1207.7018 Instrumentation and Detectors +1208.1861 +1208.2195 Optics +1208.3962 Atomic Physics +1208.5015 +1208.5889 Other Computer Science +1208.6257 Materials Science +1209.0618 Number Theory +1209.0920 Mesoscale and Nanoscale Physics +1209.2039 Networking and Internet Architecture +1209.2683 +1209.3001 Superconductivity +1209.4442 Strongly Correlated Electrons +1209.4517 +1209.5446 Quantum Gases +1210.1286 Strongly Correlated Electrons +1210.1420 Mesoscale and Nanoscale Physics +1210.1826 Materials Science +1210.1949 Quantum Gases +1210.2192 Cosmology and Nongalactic Astrophysics +1210.2777 Functional Analysis +1210.4277 Information Theory +1210.6595 Cosmology and Nongalactic Astrophysics +1210.6829 Atomic Physics +1210.7310 Strongly Correlated Electrons +1210.8118 Mesoscale and Nanoscale Physics +1211.0045 Analysis of PDEs +1211.0081 Analysis of PDEs +1211.0607 Atmospheric and Oceanic Physics +1211.1585 +1211.5577 Human-Computer Interaction +1211.5780 Quantum Gases +1211.6147 Materials Science +1211.7126 Materials Science +1212.0138 +1212.0642 Mesoscale and Nanoscale Physics +1212.0949 Solar and Stellar Astrophysics +1212.1398 Quantum Gases +1212.2037 Phenomenology +1212.2642 Medical Physics +1212.3632 Strongly Correlated Electrons +1212.4413 Theory +1301.2198 +1301.2734 Optimization and Control +1301.2820 Computer Vision and Pattern Recognition +1301.2965 Theory +1301.3287 Instrumentation and Detectors +1301.3572 Computer Vision and Pattern Recognition +1301.3631 Lattice +1301.4439 Atomic Physics +1301.4703 +1301.5041 Optimization and Control +1301.5181 Mesoscale and Nanoscale Physics +1301.6185 Optics +1301.6849 Digital Libraries +1302.0299 Representation Theory +1302.0477 Strongly Correlated Electrons +1302.0559 Quantum Gases +1302.1581 Cosmology and Nongalactic Astrophysics +1302.4008 +1302.5813 Dynamical Systems +1302.5969 Probability +1302.6716 Exactly Solvable and Integrable Systems +1302.7287 Optics +1303.0600 +1303.0904 History and Overview +1303.1001 Mesoscale and Nanoscale Physics +1303.1922 High Energy Astrophysical Phenomena +1303.2031 Statistical Mechanics +1303.2241 Algebraic Geometry +1303.2249 Number Theory +1303.2368 Functional Analysis +1303.2509 Cosmology and Nongalactic Astrophysics +1303.2681 Populations and Evolution +1303.2706 General Physics +1303.3053 Number Theory +1303.3077 Computers and Society +1303.3167 Differential Geometry +1303.3232 Analysis of PDEs +1303.3263 Other Computer Science +1303.3266 General Physics +1303.3267 High Energy Astrophysical Phenomena +1303.3268 Solar and Stellar Astrophysics +1303.3276 Experiment +1303.3277 Probability +1303.3280 Earth and Planetary Astrophysics +1303.3287 Neurons and Cognition +1303.3289 Theory +1303.3293 Differential Geometry +1303.3295 Theory +1303.3298 Pattern Formation and Solitons +1303.3302 Cosmology and Nongalactic Astrophysics +1303.3309 Analysis of PDEs +1303.3310 Classical Analysis and ODEs +1303.3320 Optimization and Control +1303.3323 Combinatorics +1303.3326 Mesoscale and Nanoscale Physics +1303.3330 Earth and Planetary Astrophysics +1303.3334 Experiment +1303.3337 Category Theory +1303.3340 Materials Science +1303.3341 Information Theory +1303.3344 Chaotic Dynamics +1303.3349 Lattice +1303.3353 Phenomenology +1303.3355 Materials Science +1303.3360 Fluid Dynamics +1303.3365 Statistics Theory +1303.3366 Statistical Mechanics +1303.3369 Theory +1303.3378 Optimization and Control +1303.3382 Superconductivity +1303.3383 Mesoscale and Nanoscale Physics +1303.3384 Applications +1303.3386 Data Structures and Algorithms +1303.3388 Probability +1303.3390 Methodology +1303.3391 Pricing of Securities +1303.3394 Mesoscale and Nanoscale Physics +1303.3397 Combinatorics +1303.3398 Materials Science +1303.3399 Algebraic Geometry +1303.3404 High Energy Astrophysical Phenomena +1303.3407 +1303.3414 Differential Geometry +1303.3422 Information Theory +1303.3423 Lattice +1303.3428 Cosmology and Nongalactic Astrophysics +1303.3441 Logic +1303.3445 Data Structures and Algorithms +1303.3450 Optimization and Control +1303.3452 Optimization and Control +1303.3455 Number Theory +1303.3457 Group Theory +1303.3460 Differential Geometry +1303.3461 Commutative Algebra +1303.3465 Probability +1303.3468 Statistical Mechanics +1303.3469 Neural and Evolutionary Computing +1303.3470 Dynamical Systems +1303.3477 Biological Physics +1303.3479 High Energy Astrophysical Phenomena +1303.3482 Statistics Theory +1303.3483 Pattern Formation and Solitons +1303.3490 +1303.3500 Number Theory +1303.3503 Soft Condensed Matter +1303.3504 Medical Physics +1303.3506 Cosmology and Nongalactic Astrophysics +1303.3512 Earth and Planetary Astrophysics +1303.3513 Operator Algebras +1303.3514 Instrumentation and Methods for Astrophysics +1303.3517 Distributed, Parallel, and Cluster Computing +1303.3520 Genomics +1303.3522 Optimization and Control +1303.3523 +1303.3527 Logic in Computer Science +1303.3532 +1303.3533 Robotics +1303.3539 Combinatorics +1303.3540 Theory +1303.3543 Logic +1303.3553 Analysis of PDEs +1303.3554 Analysis of PDEs +1303.3555 Dynamical Systems +1303.3559 Superconductivity +1303.3561 Mesoscale and Nanoscale Physics +1303.3564 Data Structures and Algorithms +1303.3565 High Energy Astrophysical Phenomena +1303.3567 Algebraic Topology +1303.3568 +math-ph/0002037 +0707.2262 Geometric Topology +0708.0637 Complex Variables +0710.3460 Operator Algebras +0804.1418 Differential Geometry +0804.3633 Geometric Topology +0806.3999 Optics +0806.4146 +0806.4167 +0808.0187 Optics +0809.4477 Geometric Topology +0812.0017 Geometric Topology +0904.4568 Differential Geometry +0905.2360 Geometric Topology +0907.2182 Theory +0908.0555 Algebraic Geometry +1001.1114 Geometric Topology +1001.1880 Quantum Algebra +1001.1881 Quantum Algebra +1001.4374 Cosmology and Nongalactic Astrophysics +1003.3890 +1003.5161 Atomic Physics +1004.2456 Classical Analysis and ODEs +1005.3974 +1009.1031 Probability +1010.1203 Group Theory +1010.2731 Statistics Theory +1010.3458 Differential Geometry +1010.3674 Logic in Computer Science +1102.1542 +1103.0218 Geometric Topology +1103.0899 K-Theory and Homology +1103.2441 Algebraic Topology +1103.3226 Analysis of PDEs +1103.4166 +1104.0080 High Energy Astrophysical Phenomena +1104.2371 Geometric Topology +1104.3583 Pricing of Securities +1106.0858 Analysis of PDEs +1108.0486 Distributed, Parallel, and Cluster Computing +1109.2044 Physics and Society +1109.3235 +1109.4529 Representation Theory +1110.0723 +1110.1248 Computation +1111.0273 Phenomenology +1111.0785 Phenomenology +1111.3375 Strongly Correlated Electrons +1111.4731 Representation Theory +1111.4732 Representation Theory +1111.6147 Instrumentation and Detectors +1112.0110 Instrumentation and Detectors +1112.0307 +1112.0490 +1112.5448 Probability +1203.4561 Astrophysics of Galaxies +1204.1237 Experiment +1204.3399 Classical Analysis and ODEs +1204.3739 Group Theory +1204.4237 Superconductivity +1204.6603 Theory +1205.3978 Representation Theory +1205.4800 +1206.1725 Experiment +1206.1875 Atomic Physics +1207.0627 Experiment +1207.2307 +1207.3366 Statistical Mechanics +1207.4795 Quantum Gases +1207.6079 Experiment +1208.2187 Commutative Algebra +1208.2282 Theory +1208.2931 Experiment +1208.3819 Combinatorics +1208.4330 Spectral Theory +1208.4354 Cosmology and Nongalactic Astrophysics +1208.5506 Phenomenology +1208.6160 +1208.6212 Analysis of PDEs +1209.2146 Representation Theory +1209.3136 +1209.4926 Mesoscale and Nanoscale Physics +1209.5008 Biomolecules +1209.6306 Phenomenology +1210.0904 Quantum Gases +1210.1815 Rings and Algebras +1210.2387 Experiment +1210.3043 Strongly Correlated Electrons +1210.4128 +1210.4818 Mesoscale and Nanoscale Physics +1210.5810 Materials Science +1210.7117 Chemical Physics +1210.7645 +1211.0770 +1211.2660 +1211.2828 Strongly Correlated Electrons +1211.3448 +1211.3960 +1211.4573 Phenomenology +1211.5876 Statistical Mechanics +1212.2267 Probability +1212.2335 Analysis of PDEs +1301.2569 Phenomenology +1301.3379 +1301.4802 Statistical Mechanics +1301.5153 Cosmology and Nongalactic Astrophysics +1301.6629 Mesoscale and Nanoscale Physics +1302.0001 Functional Analysis +1302.0781 Quantum Gases +1302.1154 Methodology +1302.2043 Statistics Theory +1302.2044 Statistics Theory +1302.5836 Statistical Mechanics +1302.6062 Strongly Correlated Electrons +1302.6571 Cosmology and Nongalactic Astrophysics +1302.7246 Pricing of Securities +1303.0088 Information Theory +1303.1042 +1303.1606 High Energy Astrophysical Phenomena +1303.1613 Logic +1303.1892 +1303.2091 High Energy Astrophysical Phenomena +1303.2318 Representation Theory +1303.2367 High Energy Astrophysical Phenomena +1303.2420 Number Theory +1303.2461 Phenomenology +1303.2588 Experiment +1303.2652 Mesoscale and Nanoscale Physics +1303.2656 High Energy Astrophysical Phenomena +1303.2669 Biological Physics +1303.2670 Probability +1303.2671 Algebraic Topology +1303.2675 Computers and Society +1303.2678 High Energy Astrophysical Phenomena +1303.2680 Complex Variables +1303.2682 Cryptography and Security +1303.2683 Rings and Algebras +1303.2685 Computer Vision and Pattern Recognition +1303.2699 Experiment +1303.2700 Group Theory +1303.2703 Solar and Stellar Astrophysics +1303.2705 Dynamical Systems +1303.2709 Systems and Control +1303.2711 Solar and Stellar Astrophysics +1303.2713 Optimization and Control +1303.2719 +1303.2720 Information Theory +1303.2721 Systems and Control +1303.2723 Cosmology and Nongalactic Astrophysics +1303.2724 Combinatorics +1303.2725 Information Theory +1303.2730 Data Structures and Algorithms +1303.2731 Functional Analysis +1303.2735 Information Theory +1303.2736 +1303.2739 Learning +1303.2741 Materials Science +1303.2742 Materials Science +1303.2745 Neural and Evolutionary Computing +1303.2749 Algebraic Geometry +1303.2751 Computer Vision and Pattern Recognition +1303.2754 Materials Science +1303.2756 +1303.2757 Materials Science +1303.2759 Functional Analysis +1303.2760 Optimization and Control +1303.2761 Materials Science +1303.2762 History and Overview +1303.2764 Networking and Internet Architecture +1303.2767 Superconductivity +1303.2771 Mesoscale and Nanoscale Physics +1303.2772 Data Structures and Algorithms +1303.2775 Quantum Gases +1303.2776 Solar and Stellar Astrophysics +1303.2777 Solar and Stellar Astrophysics +1303.2779 Computational Geometry +1303.2782 Quantum Algebra +1303.2783 Computer Vision and Pattern Recognition +1303.2784 Software Engineering +1303.2789 Multiagent Systems +1303.2792 Robotics +1303.2793 Statistical Mechanics +1303.2795 Probability +1303.2796 Probability +1303.2797 Applications +1303.2800 Statistics Theory +1303.2804 Optimization and Control +1303.2812 Information Theory +1303.2814 Statistics Theory +1303.2817 Information Theory +1303.2818 Strongly Correlated Electrons +1303.2820 Information Theory +1303.2821 Materials Science +1303.2824 Graphics +1303.2826 Computation and Language +1303.2827 Machine Learning +1303.2828 Logic +1303.2830 Systems and Control +1303.2835 Optics +1303.2837 Distributed, Parallel, and Cluster Computing +1303.2848 Materials Science +1303.2850 High Energy Astrophysical Phenomena +1303.2854 Probability +1303.2858 Phenomenology +1303.2859 Mesoscale and Nanoscale Physics +1303.2861 Probability +1303.2863 Statistics Theory +1303.2865 Combinatorics +1303.2868 Discrete Mathematics +1303.2873 Computers and Society +1303.2874 Statistics Theory +1303.2875 Optimization and Control +1303.2880 +1303.2881 Number Theory +1303.2883 Representation Theory +1303.2887 Number Theory +1303.2891 Probability +1303.2892 Machine Learning +1303.2895 Mesoscale and Nanoscale Physics +1303.2897 Analysis of PDEs +1303.2901 Physics and Society +1303.2902 Numerical Analysis +1303.2903 Data Analysis, Statistics and Probability +1303.2907 Chaotic Dynamics +1303.2910 Risk Management +1303.2916 Cosmology and Nongalactic Astrophysics +1303.2919 Instrumentation and Methods for Astrophysics +1303.2921 Solar and Stellar Astrophysics +1303.2923 Applications +1303.2925 Earth and Planetary Astrophysics +1303.2929 Algebraic Geometry +1303.2930 Statistical Mechanics +1303.2932 Numerical Analysis +1303.2933 Information Theory +1303.2935 Tissues and Organs +1303.2938 Materials Science +1303.2941 Numerical Analysis +1303.2944 Analysis of PDEs +1303.2947 Mesoscale and Nanoscale Physics +1303.2951 Combinatorics +1303.2952 Combinatorics +1303.2953 +1303.2954 Algebraic Geometry +1303.2956 Differential Geometry +1303.2960 Numerical Analysis +1303.2963 Data Structures and Algorithms +1303.2966 Software Engineering +1303.2967 Formal Languages and Automata Theory +1303.2970 Analysis of PDEs +1303.2972 +1303.2986 Geometric Topology +1303.2987 Systems and Control +1303.2988 Astrophysics of Galaxies +1303.2989 Numerical Analysis +1303.2996 Functional Analysis +quant-ph/0002071 +quant-ph/0002080 +quant-ph/0004080 +quant-ph/0110167 +quant-ph/0208095 +quant-ph/0208096 +quant-ph/0208097 +quant-ph/0212073 +quant-ph/0301111 +quant-ph/0304157 +quant-ph/0501158 +quant-ph/9911005 +0808.2822 Combinatorics +0810.0623 Atomic Physics +0812.2711 Atomic Physics +0901.1060 Chemical Physics +0904.3990 Chemical Physics +1001.2932 Formal Languages and Automata Theory +1003.1843 Geometric Topology +1006.0529 Metric Geometry +1009.0144 Combinatorics +1012.3007 Theory +1110.2318 Formal Languages and Automata Theory +1111.1051 Information Theory +1112.2490 Lattice +1201.2157 Probability +1201.2447 Representation Theory +1202.5745 Combinatorics +1206.5795 Networking and Internet Architecture +1207.3687 Analysis of PDEs +1208.2051 Earth and Planetary Astrophysics +1208.4356 +1208.6321 Differential Geometry +1209.1166 Dynamical Systems +1210.4355 Strongly Correlated Electrons +1210.8090 Analysis of PDEs +1211.6769 Strongly Correlated Electrons +1212.1367 Chemical Physics +1212.3286 +1301.0497 Representation Theory +1301.0877 Computation +1301.1618 Mesoscale and Nanoscale Physics +1301.2724 Machine Learning +1301.2746 Complex Variables +1301.7007 +1302.0037 +1302.0364 Analysis of PDEs +1302.0894 +1302.2684 Learning +1302.3080 Cosmology and Nongalactic Astrophysics +1302.5721 Methodology +1302.6948 Fluid Dynamics +1303.0194 +1303.1135 +1303.1856 Number Theory +1303.2216 Materials Science +1303.3370 Soft Condensed Matter +1303.7131 Strongly Correlated Electrons +1304.0558 Logic in Computer Science +1304.4438 Statistical Mechanics +1304.6297 Formal Languages and Automata Theory +1304.6395 Cosmology and Nongalactic Astrophysics +1305.0033 Optics +1305.0938 Classical Analysis and ODEs +1305.1402 +1305.2029 Theory +1305.2496 Molecular Networks +1305.3544 Populations and Evolution +1305.4603 +1305.4773 Chemical Physics +1305.5631 Optics +1305.5972 Biological Physics +1305.6212 Rings and Algebras +1305.6928 Cosmology and Nongalactic Astrophysics +1305.7123 Superconductivity +1306.0759 Strongly Correlated Electrons +1306.1108 Strongly Correlated Electrons +1306.3605 Soft Condensed Matter +1306.4587 Chemical Physics +1306.4945 Experiment +1307.0035 Genomics +1307.0953 Phenomenology +1307.1018 Mesoscale and Nanoscale Physics +1307.3443 Quantum Gases +1307.5029 +1307.6024 Accelerator Physics +1307.6053 Strongly Correlated Electrons +1307.7804 Statistical Mechanics +1308.1219 Analysis of PDEs +1308.1476 Materials Science +1308.4446 +1308.5570 Phenomenology +1308.6210 Applications +1309.1133 Materials Science +1309.1367 Mesoscale and Nanoscale Physics +1309.2424 +1309.3002 Populations and Evolution +1309.5910 Superconductivity +1309.6081 Earth and Planetary Astrophysics +1309.7142 Analysis of PDEs +1309.7671 Superconductivity +1309.7731 Systems and Control +1310.0778 Solar and Stellar Astrophysics +1310.1504 Mesoscale and Nanoscale Physics +1310.2060 Instrumentation and Detectors +1310.2502 Solar and Stellar Astrophysics +1310.2591 Classical Physics +1310.4709 Theory +1310.4833 Instrumentation and Methods for Astrophysics +1310.4870 Differential Geometry +1310.5158 Instrumentation and Detectors +1310.5597 Digital Libraries +1310.5662 Phenomenology +1310.5667 +1310.5808 Statistical Mechanics +1310.6052 Theory +1310.6323 Artificial Intelligence +1310.6408 Computer Science and Game Theory +1310.6411 Computer Science and Game Theory +1310.6416 Computer Science and Game Theory +1310.6418 Computer Science and Game Theory +1310.6433 Computer Science and Game Theory +1310.6434 Computer Science and Game Theory +1310.6435 Computer Science and Game Theory +1310.6436 Computer Science and Game Theory +1310.6437 Computer Science and Game Theory +1310.6438 Computer Science and Game Theory +1310.6449 Disordered Systems and Neural Networks +1310.6542 Distributed, Parallel, and Cluster Computing +1310.6630 +1310.6705 Algebraic Geometry +1310.6736 Computer Vision and Pattern Recognition +1310.6738 Pattern Formation and Solitons +1310.6740 Machine Learning +1310.6741 Biomolecules +1310.6742 Astrophysics of Galaxies +1310.6749 +1310.6753 Social and Information Networks +1310.6769 Numerical Analysis +1310.6770 Numerical Analysis +1310.6771 Quantum Gases +1310.6772 Computation and Language +1310.6773 Algebraic Geometry +1310.6776 Combinatorics +1310.6792 Strongly Correlated Electrons +1310.6798 Mesoscale and Nanoscale Physics +1310.6807 Cosmology and Nongalactic Astrophysics +1310.6808 Computer Vision and Pattern Recognition +1310.6809 Cosmology and Nongalactic Astrophysics +1310.6812 Experiment +1310.6816 Analysis of PDEs +1310.6817 Information Theory +1310.6819 Pricing of Securities +1310.6821 High Energy Astrophysical Phenomena +1310.6822 Portfolio Management +1310.6828 Strongly Correlated Electrons +1310.6830 Dynamical Systems +1310.6832 Quantum Algebra +1310.6833 Databases +1310.6840 Soft Condensed Matter +1310.6844 Populations and Evolution +1310.6847 Logic in Computer Science +1310.6852 Functional Analysis +1310.6853 Soft Condensed Matter +1310.6856 Strongly Correlated Electrons +1310.6857 Theory +1310.6858 +1310.6860 Solar and Stellar Astrophysics +1310.6861 +1310.6862 Analysis of PDEs +1310.6863 Materials Science +1310.6866 Instrumentation and Detectors +1310.6867 Mesoscale and Nanoscale Physics +1310.6872 Strongly Correlated Electrons +1310.6874 Functional Analysis +1310.6875 Fluid Dynamics +1310.6877 Phenomenology +1310.6882 Algebraic Geometry +1310.6884 Number Theory +1310.6886 Fluid Dynamics +1310.6891 Rings and Algebras +1310.6892 Fluid Dynamics +1310.6894 Computational Geometry +1310.6895 Solar and Stellar Astrophysics +1310.6898 Classical Analysis and ODEs +1310.6899 Analysis of PDEs +1310.6903 Algebraic Geometry +1310.6904 Applications +1310.6912 Mesoscale and Nanoscale Physics +1310.6914 Algebraic Geometry +1310.6917 Materials Science +1310.6918 Classical Physics +1310.6924 Cryptography and Security +1310.6926 Optimization and Control +1310.6938 Information Theory +1310.6940 Representation Theory +1310.6942 Solar and Stellar Astrophysics +1310.6944 Accelerator Physics +1310.6945 Information Theory +1310.6948 Lattice +1310.6949 Optics +1310.6959 +1310.6960 Space Physics +1310.6964 Experiment +1310.6969 Strongly Correlated Electrons +1310.6976 Computational Complexity +1310.6977 Algebraic Geometry +1310.6978 Logic in Computer Science +1310.6983 Atomic Physics +1310.6984 Analysis of PDEs +1310.6987 Geometric Topology +1310.6991 Number Theory +1310.6993 Numerical Analysis +1310.6997 Computer Science and Game Theory +1310.6998 Social and Information Networks +1310.7000 Numerical Analysis +1310.7002 Probability +1310.7005 Experiment +1310.7007 Symbolic Computation +1310.7009 Lattice +1310.7010 Complex Variables +1310.7012 Solar and Stellar Astrophysics +math/0503484 General Mathematics +0710.2947 Physics and Society +0806.4685 Optics +0901.3838 Neurons and Cognition +0909.4827 +0910.1482 Group Theory +0910.1502 +0911.3468 Rings and Algebras +1001.0427 Rings and Algebras +1003.1793 +1004.0132 Soft Condensed Matter +1011.3860 Representation Theory +1012.0835 Algebraic Geometry +1101.0660 +1103.3488 Combinatorics +1104.0896 Machine Learning +1104.2029 Rings and Algebras +1105.1259 Algebraic Geometry +1105.4430 Probability +1106.4249 Number Theory +1107.2835 Theory +1107.5535 Algebraic Geometry +1108.2456 Algebraic Geometry +1108.3847 +1109.5929 Differential Geometry +1110.3665 Phenomenology +1111.1338 Analysis of PDEs +1111.2005 Statistical Mechanics +1111.2170 Quantum Algebra +1111.5028 Methodology +1201.3607 +1202.2676 Algebraic Geometry +1202.5092 Molecular Networks +1203.6558 Optics +1204.5427 Algebraic Topology +1205.2083 Cosmology and Nongalactic Astrophysics +1205.3447 +1205.4033 Astrophysics of Galaxies +1205.5257 Mesoscale and Nanoscale Physics +1205.6033 Numerical Analysis +1206.0404 Representation Theory +1206.0834 Computational Geometry +1206.3564 Computational Geometry +1206.5632 Cosmology and Nongalactic Astrophysics +1206.5717 Representation Theory +1206.6314 Soft Condensed Matter +1206.7051 Machine Learning +1207.0741 Theory +1207.1754 Materials Science +1207.2171 Computational Complexity +1207.4809 Experiment +1207.4886 Applications +1207.6209 Combinatorics +1207.6366 +1207.6855 Quantum Gases +1208.5115 +1208.5354 Rings and Algebras +1208.6067 Robotics +1208.6082 Phenomenology +1209.0511 Probability +1209.0725 Quantitative Methods +1209.0759 Astrophysics of Galaxies +1209.3750 Complex Variables +1209.3802 Molecular Networks +1209.4126 +1209.4346 Mesoscale and Nanoscale Physics +1209.5959 Combinatorics +1210.0730 +1210.0853 Theory +1210.0948 Materials Science +1210.0950 Materials Science +1210.1205 Mesoscale and Nanoscale Physics +1210.1302 Quantum Gases +1210.2544 Computational Complexity +1210.3310 Number Theory +1210.5909 Theory +1210.6348 Theory +1210.6975 Phenomenology +1210.7673 +1211.1417 Mesoscale and Nanoscale Physics +1211.1598 Strongly Correlated Electrons +1211.2254 Phenomenology +1211.2811 Phenomenology +1211.3325 Superconductivity +1211.4610 Cosmology and Nongalactic Astrophysics +1211.5129 Phenomenology +1211.6090 Theory +1211.6314 High Energy Astrophysical Phenomena +1211.6615 Neurons and Cognition +1211.6805 Quantum Gases +1212.0596 Cosmology and Nongalactic Astrophysics +1212.0831 +1212.1617 Computational Geometry +1212.1952 Exactly Solvable and Integrable Systems +1212.2975 Superconductivity +1212.3868 Numerical Analysis +1212.5131 Theory +1212.5219 +1212.5463 +1212.5864 +1212.5957 Mesoscale and Nanoscale Physics +1212.6824 Theory +1212.6860 Commutative Algebra +1301.2865 Superconductivity +1301.3119 Cosmology and Nongalactic Astrophysics +1301.3461 Learning +1301.3576 +1301.3648 +1301.3698 Physics and Society +1301.4143 Phenomenology +1301.4545 Phenomenology +1301.4557 Phenomenology +1301.5226 Adaptation and Self-Organizing Systems +1301.5414 Symbolic Computation +1301.6207 Theory +1301.6380 Optics +1301.6794 +1301.7114 +1301.7310 Phenomenology +1301.7361 Artificial Intelligence +1302.0322 +1302.0934 +1302.2630 Phenomenology +1302.3232 +1302.4781 Phenomenology +1302.5081 +1302.5918 Phenomenology +1302.7170 +1303.2957 Statistical Mechanics +1303.3005 Cosmology and Nongalactic Astrophysics +1303.6035 Mesoscale and Nanoscale Physics +1303.6268 Operator Algebras +1304.0513 Computational Complexity +1304.2823 Populations and Evolution +1304.3355 Analysis of PDEs +1304.4038 Analysis of PDEs +1304.4752 High Energy Astrophysical Phenomena +1304.4869 Superconductivity +1304.5029 Phenomenology +1304.5594 Neural and Evolutionary Computing +1304.5892 Artificial Intelligence +1304.5894 Computer Vision and Pattern Recognition +1304.5951 Combinatorics +1304.6031 Phenomenology +1304.6078 Artificial Intelligence +1304.6098 Populations and Evolution +1304.6101 Algebraic Geometry +1304.6102 Classical Analysis and ODEs +1304.6105 Combinatorics +1304.6106 +1304.6116 Computer Science and Game Theory +1304.6118 Theory +1304.6122 Algebraic Geometry +1304.6123 Information Theory +1304.6125 Mesoscale and Nanoscale Physics +1304.6128 Networking and Internet Architecture +1304.6132 Analysis of PDEs +1304.6133 Information Theory +1304.6146 Robotics +1304.6148 Atmospheric and Oceanic Physics +1304.6152 Information Theory +1304.6153 Combinatorics +1304.6154 Information Theory +1304.6158 Cell Behavior +1304.6165 Pricing of Securities +1304.6167 Complex Variables +1304.6169 Quantum Gases +1304.6176 Distributed, Parallel, and Cluster Computing +1304.6179 Number Theory +1304.6180 Differential Geometry +1304.6181 Information Retrieval +1304.6184 Earth and Planetary Astrophysics +1304.6185 Neurons and Cognition +1304.6192 Computer Vision and Pattern Recognition +1304.6194 Soft Condensed Matter +1304.6196 Soft Condensed Matter +1304.6197 Probability +1304.6202 Number Theory +1304.6204 Differential Geometry +1304.6206 Instrumentation and Detectors +1304.6208 Applications +1304.6209 Numerical Analysis +1304.6212 Fluid Dynamics +1304.6213 Computer Vision and Pattern Recognition +1304.6214 Metric Geometry +1304.6216 Group Theory +1304.6218 Number Theory +1304.6229 Soft Condensed Matter +1304.6231 Quantum Algebra +1304.6232 Data Structures and Algorithms +1304.6235 Soft Condensed Matter +1304.6237 Statistics Theory +1304.6244 Combinatorics +1304.6245 Information Theory +1304.6250 Number Theory +1304.6254 +1304.6255 Discrete Mathematics +1304.6263 Combinatorics +1304.6266 Combinatorics +1304.6267 Solar and Stellar Astrophysics +1304.6268 Soft Condensed Matter +1304.6277 +1304.6282 Analysis of PDEs +1304.6286 Statistical Mechanics +1304.6288 Algebraic Geometry +1304.6291 Computer Vision and Pattern Recognition +1304.6296 Computational Geometry +1304.6301 Logic in Computer Science +1304.6304 Experiment +1304.6312 Geometric Topology +1304.6313 Soft Condensed Matter +1304.6314 Strongly Correlated Electrons +1304.6318 Mesoscale and Nanoscale Physics +1304.6321 Data Structures and Algorithms +1304.6322 Operator Algebras +1304.6326 Probability +1304.6333 Computational Complexity +1304.6337 Operator Algebras +1304.6338 Phenomenology +1304.6343 Rings and Algebras +1304.6346 Phenomenology +1304.6357 Probability +1304.6358 Data Structures and Algorithms +1304.6363 History and Overview +1304.6368 Differential Geometry +1304.6371 General Mathematics +1304.6375 Populations and Evolution +1304.6379 Computer Vision and Pattern Recognition +1304.6380 Materials Science +1304.6388 Formal Languages and Automata Theory +1304.6389 Theory +1304.6391 Differential Geometry +1304.6393 Data Structures and Algorithms +1304.6394 Populations and Evolution +gr-qc/0410009 +math/0507512 Rings and Algebras +math/0509177 Rings and Algebras +math/0510567 Rings and Algebras +q-bio/0604028 Neurons and Cognition +quant-ph/0504156 +quant-ph/0508035 +0807.3299 Commutative Algebra +0812.4969 Quantum Algebra +0902.2913 Materials Science +0904.2423 Group Theory +0904.3826 Geometric Topology +0911.0166 Strongly Correlated Electrons +1003.1709 Materials Science +1003.3019 +1004.1865 Probability +1007.1038 Classical Physics +1007.1761 Differential Geometry +1007.5265 Commutative Algebra +1009.4993 Commutative Algebra +1011.3468 Statistical Mechanics +1102.3016 Combinatorics +1103.6128 Differential Geometry +1104.4531 Spectral Theory +1106.1484 Operator Algebras +1110.1142 Number Theory +1111.6831 Phenomenology +1111.7049 Atmospheric and Oceanic Physics +1112.5649 Numerical Analysis +1202.1118 Spectral Theory +1202.1943 Computer Vision and Pattern Recognition +1202.3084 Distributed, Parallel, and Cluster Computing +1202.3890 Learning +1202.4035 Dynamical Systems +1202.4513 +1202.6153 Artificial Intelligence +1202.6177 Artificial Intelligence +1202.6302 Geometric Topology +1203.1357 Symbolic Computation +1203.2295 Optimization and Control +1203.3078 Computational Physics +1203.4860 Operator Algebras +1203.5284 Theory +1203.5646 Fluid Dynamics +1203.6246 Information Theory +1205.2521 Trading and Market Microstructure +1205.2812 Spectral Theory +1206.0272 Analysis of PDEs +1206.0916 Statistics Theory +1206.1382 Classical Analysis and ODEs +1206.3650 Mesoscale and Nanoscale Physics +1206.6003 Information Theory +1207.2448 Instrumentation and Detectors +1207.3034 Differential Geometry +1207.5599 Geometric Topology +1208.1156 +1208.1389 Geometric Topology +1208.4198 Astrophysics of Galaxies +1208.6197 Theory +1209.0845 Differential Geometry +1209.1150 Differential Geometry +1209.1307 Combinatorics +1209.1604 Quantum Gases +1209.2074 Populations and Evolution +1209.3977 Information Theory +1209.4284 Experiment +1210.0077 Artificial Intelligence +1210.0084 Functional Analysis +1210.1164 Functional Analysis +1210.2177 Probability +1210.3894 Classical Analysis and ODEs +1210.3932 Classical Analysis and ODEs +1210.8295 Neurons and Cognition +1210.8308 +1210.8413 Quantum Algebra +1211.0385 Chemical Physics +1211.0519 Pattern Formation and Solitons +1211.0867 Mesoscale and Nanoscale Physics +1211.1629 Mesoscale and Nanoscale Physics +1211.2129 +1211.3878 Theory +1211.4913 Fluid Dynamics +1211.6739 Phenomenology +1212.0932 Strongly Correlated Electrons +1212.2394 Quantum Gases +1212.3130 Analysis of PDEs +1212.4175 Combinatorics +1212.4453 Quantum Gases +1212.4768 Lattice +1212.4783 Mesoscale and Nanoscale Physics +1212.5197 Combinatorics +1212.5984 +1212.6869 Phenomenology +1301.3035 Combinatorics +1301.5142 Cryptography and Security +1301.5583 Algebraic Topology +1301.5854 Quantum Gases +1301.5986 Information Theory +1301.6520 Information Theory +1301.7670 Phenomenology +1302.0204 Mesoscale and Nanoscale Physics +1302.1302 Information Theory +1302.1657 Phenomenology +1302.1726 Social and Information Networks +1302.1855 +1302.1997 Earth and Planetary Astrophysics +1302.4150 +1302.4533 Cosmology and Nongalactic Astrophysics +1302.5298 Phenomenology +1302.6229 Phenomenology +1303.2242 Adaptation and Self-Organizing Systems +1303.3346 +1303.3966 Theory +1303.4001 Populations and Evolution +1303.4184 Mesoscale and Nanoscale Physics +1303.5786 Optics +1304.0700 High Energy Astrophysical Phenomena +1304.1619 Strongly Correlated Electrons +1304.3609 Instrumentation and Methods for Astrophysics +1304.3935 Data Structures and Algorithms +1304.4556 Dynamical Systems +1304.4931 Astrophysics of Galaxies +1304.5843 Strongly Correlated Electrons +1304.6366 Soft Condensed Matter +1304.7243 Atomic Physics +1304.7897 Soft Condensed Matter +1304.8008 Soft Condensed Matter +1305.0650 Phenomenology +1305.0917 Analysis of PDEs +1305.0950 Differential Geometry +1305.1254 Phenomenology +1305.1363 Learning +1305.2566 Combinatorics +1305.2617 Geometric Topology +1305.2777 Data Structures and Algorithms +1305.2819 Phenomenology +1305.3124 Differential Geometry +1305.3288 Information Theory +1305.3456 Systems and Control +1305.3512 Probability +1305.3585 Methodology +1305.3616 Social and Information Networks +1305.3625 Computational Physics +1305.3634 Cell Behavior +1305.3637 Theory +1305.3640 Machine Learning +1305.3654 Experiment +1305.3655 Quantitative Methods +1305.3663 Optics +1305.3666 Functional Analysis +1305.3668 Social and Information Networks +1305.3671 Information Theory +1305.3672 +1305.3675 Experiment +1305.3685 Analysis of PDEs +1305.3691 Biomolecules +1305.3695 Experiment +1305.3697 Computation +1305.3698 Complex Variables +1305.3699 Cryptography and Security +1305.3703 Cosmology and Nongalactic Astrophysics +1305.3711 +1305.3712 Neurons and Cognition +1305.3714 Optics +1305.3715 Soft Condensed Matter +1305.3716 Combinatorics +1305.3719 Chemical Physics +1305.3721 Plasma Physics +1305.3722 Representation Theory +1305.3723 Plasma Physics +1305.3728 Statistics Theory +1305.3731 Plasma Physics +1305.3733 Information Theory +1305.3735 Computational Complexity +1305.3736 Mesoscale and Nanoscale Physics +1305.3737 Optimization and Control +1305.3738 +1305.3740 Other Condensed Matter +1305.3743 Functional Analysis +1305.3744 Superconductivity +1305.3752 Classical Analysis and ODEs +1305.3753 Cryptography and Security +1305.3754 Populations and Evolution +1305.3755 +1305.3758 Computational Engineering, Finance, and Science +1305.3761 Phenomenology +1305.3763 Phenomenology +1305.3767 Differential Geometry +1305.3768 Phenomenology +1305.3770 Accelerator Physics +1305.3772 Numerical Analysis +1305.3773 Experiment +1305.3774 Networking and Internet Architecture +1305.3775 Classical Analysis and ODEs +1305.3778 Information Theory +1305.3780 Algebraic Geometry +1305.3783 Optics +1305.3785 +1305.3793 Differential Geometry +1305.3797 Optimization and Control +1305.3799 +1305.3803 Numerical Analysis +1305.3807 +1305.3812 +1305.3819 Classical Analysis and ODEs +1305.3824 Commutative Algebra +1305.3827 Computational Complexity +1305.3829 Commutative Algebra +1305.3840 Soft Condensed Matter +1305.3845 Combinatorics +1305.3846 Experiment +1305.3848 Materials Science +1305.3849 Operating Systems +1305.3850 Dynamical Systems +1305.3855 Dynamical Systems +1305.3859 Dynamical Systems +1305.3869 Combinatorics +1305.3871 Differential Geometry +1305.3883 Cryptography and Security +1305.3885 Computer Vision and Pattern Recognition +1305.3887 Information Theory +1305.3889 Dynamical Systems +1305.3892 Phenomenology +1305.3893 Theory +1305.3896 Number Theory +1305.3898 Physics Education +1305.3900 Group Theory +1305.3903 Rings and Algebras +1305.3906 Rings and Algebras +q-bio/0603011 Quantitative Methods +0707.0904 Algebraic Topology +0708.4324 Robotics +0801.2461 +0806.0874 Computers and Society +0810.3695 +0811.3208 +0811.4554 Differential Geometry +0812.1366 Differential Geometry +0907.1257 Differential Geometry +0909.2056 Statistical Mechanics +1002.1578 Algebraic Geometry +1002.3612 Phenomenology +1002.3634 Classical Analysis and ODEs +1003.5714 Mesoscale and Nanoscale Physics +1005.3465 Algebraic Geometry +1007.2822 Algebraic Geometry +1008.1261 Differential Geometry +1009.0416 +1012.0598 Theory +1012.5796 Functional Analysis +1012.5993 Complex Variables +1103.3017 +1105.2343 Algebraic Geometry +1105.4754 Strongly Correlated Electrons +1105.4914 Superconductivity +1110.2197 Algebraic Geometry +1110.6367 Algebraic Geometry +1112.5672 Probability +1201.0349 Networking and Internet Architecture +1202.1452 Biomolecules +1202.6030 Materials Science +1203.1276 Optimization and Control +1206.1245 Dynamical Systems +1206.1449 Probability +1206.3187 Probability +1206.4340 Statistics Theory +1207.1823 +1208.2940 Representation Theory +1209.5491 +1209.6348 +1210.7976 Algebraic Geometry +1211.0297 Data Structures and Algorithms +1211.0997 Algebraic Geometry +1211.1041 Computational Complexity +1211.4067 Soft Condensed Matter +1211.4727 Group Theory +1211.5389 Data Structures and Algorithms +1211.6288 Materials Science +1212.2160 Instrumentation and Detectors +1212.2264 Data Structures and Algorithms +1301.2919 Plasma Physics +1301.4014 Phenomenology +1301.6922 Theory +1302.3752 Distributed, Parallel, and Cluster Computing +1302.3765 Phenomenology +1302.3909 Phenomenology +1302.4091 Dynamical Systems +1303.3144 +1303.3187 Instrumentation and Detectors +1303.3327 Logic +1303.3329 Logic +1303.7119 Materials Science +1303.7339 Superconductivity +1304.0588 Computers and Society +1304.2123 Mesoscale and Nanoscale Physics +1304.3943 Classical Analysis and ODEs +1304.5054 Numerical Analysis +1304.5309 +1304.6601 Physics and Society +1305.1847 Biological Physics +1305.2619 Astrophysics of Galaxies +1305.7206 Strongly Correlated Electrons +1305.7332 Logic in Computer Science +1306.1014 Soft Condensed Matter +1306.1535 Cosmology and Nongalactic Astrophysics +1306.2619 Classical Physics +1306.3421 Biomolecules +1306.3804 Mesoscale and Nanoscale Physics +1306.4561 Solar and Stellar Astrophysics +1306.5835 Optics +1306.5983 Optics +1306.6323 Theory +1306.6359 +1307.0549 Atomic Physics +1307.0906 +1307.1605 Materials Science +1307.2097 Computational Geometry +1307.5372 Soft Condensed Matter +1307.6005 +1308.0133 High Energy Astrophysical Phenomena +1308.2148 Mesoscale and Nanoscale Physics +1308.2425 Space Physics +1308.2430 Populations and Evolution +1308.2663 Theory +1308.3191 Mesoscale and Nanoscale Physics +1308.5145 Theory +1308.5781 Superconductivity +1308.5970 Solar and Stellar Astrophysics +1308.6015 Quantum Gases +1309.0157 Information Theory +1309.0809 Astrophysics of Galaxies +1309.1052 +1309.1555 Information Theory +1309.1735 Phenomenology +1309.2263 Algebraic Geometry +1309.2730 Number Theory +1309.3255 +1309.3847 Cosmology and Nongalactic Astrophysics +1309.4028 Dynamical Systems +1309.4189 Statistical Mechanics +1309.4724 +1309.5320 Analysis of PDEs +1309.5400 Geometric Topology +1309.6022 Combinatorics +1309.6143 Instrumentation and Detectors +1310.3436 Classical Analysis and ODEs +1310.3587 +1310.4328 Atomic and Molecular Clusters +1310.5579 Theory +1310.6499 Solar and Stellar Astrophysics +1310.6846 Probability +1311.0525 Materials Science +1311.1038 +1311.1849 +1311.3167 Differential Geometry +1311.4961 Mesoscale and Nanoscale Physics +1311.5622 Computational Complexity +1311.5734 High Energy Astrophysical Phenomena +1311.6007 Computer Vision and Pattern Recognition +1311.6993 +1312.0532 Representation Theory +1312.0561 Combinatorics +1312.0646 Methodology +1312.0660 Superconductivity +1312.0691 Physics and Society +1312.0799 +1312.0938 Social and Information Networks +1312.0940 Computers and Society +1312.0948 Biological Physics +1312.0952 +1312.0958 General Physics +1312.0960 Materials Science +1312.0965 +1312.0973 +1312.0977 Instrumentation and Detectors +1312.0982 Solar and Stellar Astrophysics +1312.0983 Statistics Theory +1312.0993 Probability +1312.0994 Networking and Internet Architecture +1312.1003 Artificial Intelligence +1312.1004 Information Theory +1312.1005 Probability +1312.1010 Lattice +1312.1012 Analysis of PDEs +1312.1013 Combinatorics +1312.1019 Analysis of PDEs +1312.1021 Materials Science +1312.1025 Quantitative Methods +1312.1028 +1312.1036 Number Theory +1312.1040 Software Engineering +1312.1042 Software Engineering +1312.1043 Software Engineering +1312.1044 +1312.1051 Mesoscale and Nanoscale Physics +1312.1052 Lattice +1312.1056 Superconductivity +1312.1057 Genomics +1312.1059 Functional Analysis +1312.1064 Group Theory +1312.1065 Number Theory +1312.1068 Phenomenology +1312.1070 Logic in Computer Science +1312.1084 Complex Variables +1312.1088 Applications +1312.1089 Analysis of PDEs +1312.1091 +1312.1095 Lattice +1312.1098 Soft Condensed Matter +1312.1099 Machine Learning +1312.1103 Differential Geometry +1312.1105 Solar and Stellar Astrophysics +1312.1106 Combinatorics +1312.1107 Phenomenology +1312.1109 Astrophysics of Galaxies +1312.1110 Combinatorics +1312.1113 Functional Analysis +1312.1116 +1312.1118 Fluid Dynamics +1312.1119 +1312.1120 Logic in Computer Science +1312.1121 Learning +1312.1122 Quantum Algebra +1312.1123 Materials Science +1312.1124 Analysis of PDEs +1312.1127 History and Overview +1312.1131 Analysis of PDEs +1312.1137 Probability +1312.1139 General Physics +1312.1140 +1312.1142 Numerical Analysis +1312.1146 Artificial Intelligence +1312.1147 Information Theory +1312.1156 Mesoscale and Nanoscale Physics +1312.1157 History and Overview +1312.1160 Cryptography and Security +1312.1161 Dynamical Systems +1312.1163 Theory +1312.1164 Mesoscale and Nanoscale Physics +1312.1165 Mesoscale and Nanoscale Physics +1312.1169 Algebraic Geometry +1312.1172 Discrete Mathematics +1312.1178 Emerging Technologies +1312.1181 Computational Geometry +1312.1185 Combinatorics +1312.1188 Software Engineering +1312.1189 Mesoscale and Nanoscale Physics +1312.1191 Algebraic Topology +1312.1201 Lattice +1312.1202 Earth and Planetary Astrophysics +1312.1206 Neurons and Cognition +1312.1207 Statistics Theory +1312.1210 +1312.1211 Probability +1312.1213 Combinatorics +1312.1214 Theory +1312.1215 Soft Condensed Matter +1312.1216 Differential Geometry +1312.1220 Solar and Stellar Astrophysics +1312.1221 Accelerator Physics +1312.1222 Probability +1312.1224 Soft Condensed Matter +1312.1225 Logic in Computer Science +1312.1227 Phenomenology +1312.1229 +1312.1232 Number Theory +1312.1234 Combinatorics +1312.1239 Rings and Algebras +1312.1244 Machine Learning +1312.1249 Astrophysics of Galaxies +1312.1250 Commutative Algebra +1312.1255 Populations and Evolution +1312.1256 Geometric Topology +1312.1258 Digital Libraries +1312.1260 Digital Libraries +1312.1262 +1312.1267 General Physics +1312.1273 Data Structures and Algorithms +1312.1280 Analysis of PDEs +1312.1293 Rings and Algebras +1312.1295 Classical Physics +1312.1304 Analysis of PDEs +1312.1305 Metric Geometry +1312.1307 Functional Analysis +1312.1309 Information Theory +1312.1310 Fluid Dynamics +1312.1311 Number Theory +1312.1315 Atomic Physics +1312.1317 Theory +1312.1318 Differential Geometry +1312.1329 +gr-qc/9508023 +gr-qc/9910036 +math/0112176 Algebraic Topology +quant-ph/0010076 +quant-ph/0010082 +quant-ph/0109063 +quant-ph/0109088 +quant-ph/0111038 +quant-ph/0111039 +quant-ph/0301078 +quant-ph/0309120 +quant-ph/0312228 +quant-ph/0407054 +quant-ph/0408078 +quant-ph/0503114 +quant-ph/0503239 +quant-ph/0511148 +quant-ph/9807064 +1206.5969 General Physics +0902.0635 +0906.2807 Combinatorics +0909.4119 +0909.5367 Cosmology and Nongalactic Astrophysics +0911.0642 Metric Geometry +1004.1251 Probability +1005.0826 Learning +1005.0928 Machine Learning +1005.3331 Astrophysics of Galaxies +1011.1110 Combinatorics +1101.3735 Physics and Society +1105.1364 Databases +1108.3105 Dynamical Systems +1111.0344 Analysis of PDEs +1111.6473 Machine Learning +1201.0935 Lattice +1202.4698 Theory +1202.6437 Group Theory +1202.6640 +1203.0931 +1203.6382 Mesoscale and Nanoscale Physics +1204.0013 Experiment +1204.2569 +1204.2807 Experiment +1204.2842 Materials Science +1204.4545 Complex Variables +1205.1921 Quantum Gases +1205.3223 Phenomenology +1205.4710 +1206.1344 Phenomenology +1206.3750 High Energy Astrophysical Phenomena +1207.0621 Phenomenology +1207.1798 Experiment +1207.2411 Numerical Analysis +1207.5210 Theory +1208.1334 +1208.3183 Dynamical Systems +1208.4010 Probability +1208.5021 Theory +1208.5563 +1208.5676 Theory +1208.6271 Data Structures and Algorithms +1209.0065 +1209.1214 +1209.1974 Phenomenology +1209.2261 Algebraic Topology +1209.2323 +1209.4399 Strongly Correlated Electrons +1210.0457 +1210.0691 +1210.1661 Superconductivity +1210.1712 Theory +1210.2255 Theory +1210.2328 Astrophysics of Galaxies +1210.2483 Quantum Gases +1210.2894 +1210.6056 Combinatorics +1210.6840 Theory +1210.7683 Mathematical Software +1210.8158 Theory +1211.1209 +1211.1608 Optics +1211.1944 Lattice +1211.2220 Experiment +1211.2782 Populations and Evolution +1211.2813 Superconductivity +1211.2840 Theory +1211.2863 Computer Vision and Pattern Recognition +1211.3076 Fluid Dynamics +1211.3287 +1211.3338 Experiment +1211.6412 Phenomenology +1211.6701 Cosmology and Nongalactic Astrophysics +1211.6794 Plasma Physics +1211.7214 +1212.0540 Solar and Stellar Astrophysics +1212.1942 Statistical Mechanics +1212.2108 Atmospheric and Oceanic Physics +1212.2182 Experiment +1212.3408 Cosmology and Nongalactic Astrophysics +1212.3552 Quantum Gases +1212.4355 +1212.4436 Phenomenology +1212.4498 Theory +1212.4970 Materials Science +1212.4992 Phenomenology +1212.5202 +1212.5495 Plasma Physics +1212.5910 Atomic Physics +1212.6698 Differential Geometry +1212.6948 Phenomenology +1301.0230 +1301.0440 Superconductivity +1301.0738 Phenomenology +1301.0916 Experiment +1301.3566 Quantum Gases +1301.3625 Algebraic Geometry +1301.3822 Phenomenology +1301.4273 Strongly Correlated Electrons +1301.4274 Theory +1301.4581 Experiment +1301.5002 Theory +1301.5279 Cosmology and Nongalactic Astrophysics +1301.5855 Phenomenology +1301.6560 General Physics +1301.6961 Geometric Topology +1302.0185 Lattice +1302.0531 Experiment +1302.0847 Strongly Correlated Electrons +1302.1159 High Energy Astrophysical Phenomena +1302.2812 Experiment +1302.3327 Commutative Algebra +1302.3522 Theory +1302.3535 +1302.3998 +1302.4216 Data Structures and Algorithms +1302.4367 Theory +1302.5290 +1302.6181 Lattice +1303.1013 Theory +1303.1235 Strongly Correlated Electrons +1303.1693 Information Theory +1303.2809 Strongly Correlated Electrons +1303.3225 +1303.3239 Experiment +1303.3338 +1303.4366 Digital Libraries +1304.0020 +1304.0173 Medical Physics +1304.1266 Soft Condensed Matter +1304.1643 Theory +1304.1725 Statistical Mechanics +1304.2672 Astrophysics of Galaxies +1304.3552 Phenomenology +1304.3801 Spectral Theory +1304.4194 Experiment +1304.4267 Logic in Computer Science +1304.4379 Artificial Intelligence +1304.4582 Theory +1304.5010 Computational Complexity +1304.5185 Logic in Computer Science +1304.5306 Phenomenology +1304.5394 Materials Science +1304.5964 Geometric Topology +1304.6020 Phenomenology +1304.6264 Phenomenology +1304.6702 +1304.6730 +1304.7230 Machine Learning +1304.7413 Optimization and Control +1304.7711 Phenomenology +1304.7757 Phenomenology +1304.7763 General Physics +1304.7767 Physics and Society +1304.7775 Phenomenology +1304.7784 Earth and Planetary Astrophysics +1304.7788 Computers and Society +1304.7790 Combinatorics +1304.7792 Plasma Physics +1304.7793 Data Structures and Algorithms +1304.7797 Logic +1304.7798 Theory +1304.7803 Instrumentation and Detectors +1304.7805 Instrumentation and Detectors +1304.7807 Computational Physics +1304.7808 Computation +1304.7809 Phenomenology +1304.7819 Computers and Society +1304.7821 Geophysics +1304.7824 Rings and Algebras +1304.7833 Computational Geometry +1304.7842 Graphics +1304.7843 Artificial Intelligence +1304.7845 Graphics +1304.7847 Methodology +1304.7848 Graphics +1304.7850 +1304.7852 Graphics +1304.7855 Mathematical Software +1304.7856 Software Engineering +1304.7857 Logic in Computer Science +1304.7858 Logic in Computer Science +1304.7859 Logic in Computer Science +1304.7860 Logic in Computer Science +1304.7861 Logic in Computer Science +1304.7862 Hardware Architecture +1304.7863 Logic in Computer Science +1304.7864 Networking and Internet Architecture +1304.7865 Materials Science +1304.7867 Methodology +1304.7868 Graphics +1304.7872 Classical Analysis and ODEs +1304.7875 Logic in Computer Science +1304.7876 Number Theory +1304.7879 Atmospheric and Oceanic Physics +1304.7880 Statistical Mechanics +1304.7881 Graphics +1304.7882 Risk Management +1304.7883 Graphics +1304.7889 Other Computer Science +1304.7892 Optimization and Control +1304.7896 Soft Condensed Matter +1304.7900 Superconductivity +1304.7901 Mesoscale and Nanoscale Physics +1304.7902 Group Theory +1304.7903 Materials Science +1304.7905 Subcellular Processes +1304.7906 Soft Condensed Matter +1304.7908 Soft Condensed Matter +1304.7914 Statistics Theory +1304.7915 Probability +1304.7920 Other Statistics +1304.7921 Metric Geometry +1304.7923 Group Theory +1304.7928 Emerging Technologies +1304.7932 Classical Analysis and ODEs +1304.7936 Functional Analysis +1304.7937 Representation Theory +1304.7942 Computation and Language +1304.7946 Combinatorics +1304.7952 Representation Theory +1304.7953 Mesoscale and Nanoscale Physics +1304.7954 Probability +1304.7957 Combinatorics +1304.7958 Materials Science +1304.7962 Optics +1304.7963 Combinatorics +1304.7972 Pattern Formation and Solitons +1304.7973 Computation +1304.7982 Classical Analysis and ODEs +1304.7984 Social and Information Networks +1304.7993 Discrete Mathematics +1304.7994 Metric Geometry +1304.7997 Combinatorics +1304.7998 Networking and Internet Architecture +1304.8000 Biological Physics +1304.8001 Astrophysics of Galaxies +1304.8002 Optics +1304.8006 Other Computer Science +1304.8009 Biomolecules +1304.8011 Number Theory +1304.8013 Human-Computer Interaction +1304.8014 Probability +1304.8016 Data Structures and Algorithms +1304.8017 Classical Analysis and ODEs +1304.8019 Systems and Control +1304.8023 Phenomenology +1304.8024 +1304.8025 Analysis of PDEs +1304.8026 Optimization and Control +1304.8028 Networking and Internet Architecture +1304.8031 Theory +1304.8032 Analysis of PDEs +1304.8040 Mesoscale and Nanoscale Physics +1304.8043 Functional Analysis +1304.8047 Classical Analysis and ODEs +1304.8052 Computer Vision and Pattern Recognition +1304.8054 Mesoscale and Nanoscale Physics +1304.8055 Physics Education +1304.8057 High Energy Astrophysical Phenomena +1304.8066 Numerical Analysis +1304.8070 General Physics +1304.8071 High Energy Astrophysical Phenomena +1304.8074 Geometric Topology +1304.8078 Materials Science +1304.8080 Multimedia +1304.8084 Applications +1304.8087 Data Structures and Algorithms +1304.8089 Methodology +1304.8092 Computer Vision and Pattern Recognition +1304.8100 Materials Science +1304.8103 +1304.8104 Cellular Automata and Lattice Gases +1304.8109 Cryptography and Security +1304.8112 Phenomenology +1304.8114 +1304.8118 Optimization and Control +1304.8124 +1304.8125 Computer Science and Game Theory +1304.8133 Phenomenology +0709.1777 +0801.0324 Operator Algebras +0802.3411 +0803.1901 Phenomenology +0806.0255 +0806.4036 Phenomenology +0904.4333 Cosmology and Nongalactic Astrophysics +0910.0858 Instrumentation and Methods for Astrophysics +1003.3714 History and Overview +1007.1797 Functional Analysis +1007.3677 Superconductivity +1009.1683 Phenomenology +1011.3111 Cosmology and Nongalactic Astrophysics +1012.3364 Probability +1101.0258 Strongly Correlated Electrons +1101.5469 Quantum Gases +1104.1505 Complex Variables +1106.2731 Disordered Systems and Neural Networks +1108.4288 Geometric Topology +1108.5363 Phenomenology +1109.1809 Cosmology and Nongalactic Astrophysics +1109.3543 Cosmology and Nongalactic Astrophysics +1110.4457 Probability +1110.4770 Differential Geometry +1111.1631 Instrumentation and Methods for Astrophysics +1111.7177 Algebraic Geometry +1111.7281 Commutative Algebra +1112.1129 Algebraic Topology +1112.3239 Differential Geometry +1112.4151 Combinatorics +1201.4975 +1202.0046 Probability +1202.1249 Strongly Correlated Electrons +1202.5847 Dynamical Systems +1203.2104 Commutative Algebra +1203.5087 +1203.6444 +1204.4590 Analysis of PDEs +1205.0858 Information Theory +1205.3126 Statistical Mechanics +1205.3514 General Physics +1205.5420 Algebraic Geometry +1205.6738 +1206.4593 General Physics +1207.2979 Materials Science +1208.0108 Cryptography and Security +1208.0327 +1208.1909 +1208.2130 Metric Geometry +1208.3629 Data Structures and Algorithms +1208.5367 Number Theory +1208.5874 +1209.1154 Systems and Control +1209.3924 Subcellular Processes +1209.4762 Cosmology and Nongalactic Astrophysics +1210.1578 Superconductivity +1210.3451 Other Condensed Matter +1210.6519 Category Theory +1210.7020 Phenomenology +1211.1467 Discrete Mathematics +1211.1931 Algebraic Geometry +1211.4748 +1211.6513 Rings and Algebras +1211.6902 Logic +1212.4004 Analysis of PDEs +1212.5239 Populations and Evolution +1301.0494 +1301.1826 Atomic Physics +1301.2755 Instrumentation and Detectors +1301.7065 Phenomenology +1302.1631 Geometric Topology +1302.3980 +1302.4159 Biological Physics +1302.5270 +1302.6928 +1303.0090 Biomolecules +1303.1047 Mesoscale and Nanoscale Physics +1303.1272 K-Theory and Homology +1303.2408 Quantum Gases +1303.3459 Quantum Gases +1303.3507 Mesoscale and Nanoscale Physics +1303.3940 +1303.4069 Theory +1303.4831 Strongly Correlated Electrons +1304.1738 +1304.1750 Classical Analysis and ODEs +1304.2248 Mesoscale and Nanoscale Physics +1304.3062 Strongly Correlated Electrons +1304.3257 Mesoscale and Nanoscale Physics +1304.3709 +1304.7219 Disordered Systems and Neural Networks +1304.7677 Phenomenology +1305.1685 Number Theory +1305.1725 Instrumentation and Detectors +1305.2603 Phenomenology +1305.2727 Superconductivity +1305.2743 Data Structures and Algorithms +1305.3891 Earth and Planetary Astrophysics +1305.4775 Experiment +1305.5721 Solar and Stellar Astrophysics +1305.6475 Statistical Mechanics +1305.7139 Cosmology and Nongalactic Astrophysics +1305.7441 Cosmology and Nongalactic Astrophysics +1305.7445 Physics and Society +1306.0410 +1306.1246 Experiment +1306.2673 Optics +1306.5965 +1306.6215 Atmospheric and Oceanic Physics +1306.6306 Superconductivity +1307.3020 Chemical Physics +1307.3138 Superconductivity +1307.3518 Experiment +1307.4346 Medical Physics +1307.6090 Cosmology and Nongalactic Astrophysics +1307.8035 Chemical Physics +1308.0409 Algebraic Geometry +1308.0574 Number Theory +1308.0585 Systems and Control +1308.0798 Genomics +1308.1311 Cosmology and Nongalactic Astrophysics +1308.2305 +1308.2516 Physics and Society +1308.2517 Materials Science +1308.3025 Physics and Society +1308.3168 Solar and Stellar Astrophysics +1308.4682 Cosmology and Nongalactic Astrophysics +1308.4854 Theory +1308.6214 Differential Geometry +1308.6791 Combinatorics +1309.0094 Phenomenology +1309.0640 Theory +1309.0670 Quantitative Methods +1309.0710 Strongly Correlated Electrons +1309.0745 Physics and Society +1309.0805 Probability +1309.0806 Other Computer Science +1309.0824 Cosmology and Nongalactic Astrophysics +1309.0834 Information Theory +1309.0839 Accelerator Physics +1309.0841 Earth and Planetary Astrophysics +1309.0843 Statistical Mechanics +1309.0846 Neurons and Cognition +1309.0850 Lattice +1309.0853 Populations and Evolution +1309.0866 Logic in Computer Science +1309.0867 Logic in Computer Science +1309.0868 Systems and Control +1309.0869 Logic in Computer Science +1309.0870 Computational Engineering, Finance, and Science +1309.0871 Computational Engineering, Finance, and Science +1309.0872 Computational Engineering, Finance, and Science +1309.0873 Systems and Control +1309.0874 Distributed, Parallel, and Cluster Computing +1309.0882 Astrophysics of Galaxies +1309.0884 Number Theory +1309.0887 Cosmology and Nongalactic Astrophysics +1309.0888 Combinatorics +1309.0890 Logic in Computer Science +1309.0891 Logic in Computer Science +1309.0892 Logic in Computer Science +1309.0893 Formal Languages and Automata Theory +1309.0894 Logic in Computer Science +1309.0895 Logic in Computer Science +1309.0896 Logic in Computer Science +1309.0899 Materials Science +1309.0902 Chaotic Dynamics +1309.0904 +1309.0907 +1309.0909 Strongly Correlated Electrons +1309.0912 Metric Geometry +1309.0915 +1309.0917 Materials Science +1309.0918 Earth and Planetary Astrophysics +1309.0919 Cosmology and Nongalactic Astrophysics +1309.0922 Category Theory +1309.0924 Logic in Computer Science +1309.0925 Strongly Correlated Electrons +1309.0926 Populations and Evolution +1309.0927 Complex Variables +1309.0928 Biological Physics +1309.0932 Phenomenology +1309.0933 Phenomenology +1309.0938 Functional Analysis +1309.0939 Strongly Correlated Electrons +1309.0941 Disordered Systems and Neural Networks +1309.0943 Materials Science +1309.0947 Statistical Mechanics +1309.0952 Superconductivity +1309.0958 Cryptography and Security +1309.0960 Chemical Physics +1309.0963 Algebraic Geometry +1309.0966 Instrumentation and Detectors +1309.0967 Instrumentation and Detectors +1309.0968 Phenomenology +1309.0970 Probability +1309.0971 Discrete Mathematics +1309.0973 Analysis of PDEs +1309.0974 Group Theory +1309.0978 Discrete Mathematics +1309.0981 Algebraic Topology +1309.0982 Operator Algebras +1309.0983 Chemical Physics +1309.0985 Classical Physics +1309.0986 Probability +1309.0988 Biological Physics +1309.0990 Mesoscale and Nanoscale Physics +1309.0992 Fluid Dynamics +1309.0997 Statistics Theory +1309.0998 Representation Theory +1309.0999 Computer Vision and Pattern Recognition +1309.1000 Computer Vision and Pattern Recognition +1309.1008 Dynamical Systems +1309.1009 Computer Vision and Pattern Recognition +1309.1010 Biological Physics +1309.1014 Computation and Language +1309.1015 High Energy Astrophysical Phenomena +1309.1019 Dynamical Systems +1309.1020 Combinatorics +1309.1024 +1309.1026 Information Theory +1309.1027 Number Theory +1309.1030 Dynamical Systems +1309.1035 Algebraic Geometry +1309.1037 Exactly Solvable and Integrable Systems +1309.1038 Instrumentation and Detectors +1309.1040 Combinatorics +1309.1043 Formal Languages and Automata Theory +1309.1047 Astrophysics of Galaxies +1309.1050 Differential Geometry +1309.1053 Strongly Correlated Electrons +1309.1054 +1309.1057 Experiment +1309.1063 Accelerator Physics +1309.1064 Analysis of PDEs +1309.1066 Digital Libraries +1309.1070 Operator Algebras +1309.1071 Number Theory +1309.1072 Commutative Algebra +1309.1074 Lattice +1309.1075 Fluid Dynamics +1309.1078 Earth and Planetary Astrophysics +1309.1080 Computer Vision and Pattern Recognition +1309.1086 Neurons and Cognition +1309.1089 Computational Complexity +1309.1094 +1309.1095 +1309.1096 Earth and Planetary Astrophysics +1309.1098 Commutative Algebra +1309.1101 Distributed, Parallel, and Cluster Computing +1309.1109 Analysis of PDEs +1309.1110 Optimization and Control +1309.1111 +1309.1113 Materials Science +1309.1118 Probability +1309.1124 Number Theory +1309.1125 Computation and Language +1309.1129 Computation and Language +1309.1135 Analysis of PDEs +1309.1146 Probability +1309.1150 Algebraic Geometry +cond-mat/0606805 Disordered Systems and Neural Networks +hep-ph/0603156 Phenomenology +physics/0403123 Geophysics +physics/0509004 Geophysics +0704.3517 +0704.3715 Quantitative Methods +0709.4570 +0807.4228 +0811.4057 +0812.2801 Materials Science +0902.4662 Theory +0906.0084 High Energy Astrophysical Phenomena +1008.3242 Combinatorics +1008.4792 Phenomenology +1009.0938 Computational Physics +1010.1686 Materials Science +1103.4286 Systems and Control +1103.4425 Biological Physics +1104.2154 Chemical Physics +1106.0150 Dynamical Systems +1106.4457 General Topology +1107.2146 Computer Science and Game Theory +1107.4397 Theory +1108.1884 Methodology +1108.3551 Dynamical Systems +1109.1157 +1109.2113 Commutative Algebra +1110.6917 Number Theory +1111.4262 Algebraic Geometry +1111.6521 History and Overview +1112.2231 Differential Geometry +1112.2236 Differential Geometry +1112.3657 Quantum Gases +1112.4147 Analysis of PDEs +1112.4468 Quantum Gases +1112.4901 Representation Theory +1201.4497 +1202.0743 Functional Analysis +1203.4585 +1204.2074 Probability +1204.3396 Fluid Dynamics +1204.4041 Probability +1205.1116 High Energy Astrophysical Phenomena +1205.2280 Dynamical Systems +1205.4131 +1206.0518 Dynamical Systems +1206.3539 Functional Analysis +1206.3546 Commutative Algebra +1206.4772 +1206.5698 Artificial Intelligence +1207.0345 Strongly Correlated Electrons +1207.1605 Probability +1207.3746 Analysis of PDEs +1207.5962 +1207.6803 Atomic Physics +1208.0647 Atmospheric and Oceanic Physics +1208.4064 Commutative Algebra +1208.5598 Cosmology and Nongalactic Astrophysics +1208.5923 Metric Geometry +1209.1315 +1209.5534 Quantum Gases +1209.6425 Learning +1210.0030 Quantum Gases +1210.1210 High Energy Astrophysical Phenomena +1210.1833 Instrumentation and Methods for Astrophysics +1210.5117 Information Theory +1210.7019 Biological Physics +1211.3621 Probability +1211.3626 Probability +1211.6012 Quantum Gases +1212.1910 Experiment +1212.3776 General Topology +1212.5007 Strongly Correlated Electrons +1212.6726 Statistical Mechanics +1212.6959 +1301.1325 Phenomenology +1301.2364 Differential Geometry +1301.3355 Strongly Correlated Electrons +1301.3526 +1301.4458 +1301.5412 Numerical Analysis +1301.5465 Biological Physics +1301.5650 Machine Learning +1301.6975 Artificial Intelligence +1301.7019 Statistical Mechanics +1301.7121 Analysis of PDEs +1302.0393 Logic +1302.0508 Experiment +1302.0711 +1302.1636 Materials Science +1302.1861 Medical Physics +1302.2680 Strongly Correlated Electrons +1302.4591 Digital Libraries +1302.6079 High Energy Astrophysical Phenomena +1302.6276 Social and Information Networks +1302.6867 Strongly Correlated Electrons +1302.6893 +1303.2857 Software Engineering +1303.3795 Quantum Gases +1303.4277 Databases +1303.4882 Physics and Society +1303.5225 Mesoscale and Nanoscale Physics +1303.5524 Atomic Physics +1303.5551 Strongly Correlated Electrons +1303.5638 Category Theory +1303.5883 Quantum Gases +1303.6891 Instrumentation and Methods for Astrophysics +1303.7212 Cosmology and Nongalactic Astrophysics +1304.0213 Experiment +1304.0935 Lattice +1304.1278 Materials Science +1304.4959 Quantum Gases +1304.5186 +1304.5196 Quantum Gases +1304.5588 Algebraic Geometry +1304.7148 Superconductivity +1304.7853 Algebraic Geometry +1305.0608 Probability +1305.1771 K-Theory and Homology +1305.3217 High Energy Astrophysical Phenomena +1305.3624 +1305.3646 Plasma Physics +1305.4108 Superconductivity +1305.4361 Dynamical Systems +1305.5291 +1305.6602 Mesoscale and Nanoscale Physics +1305.6813 High Energy Astrophysical Phenomena +1305.6994 +1306.0571 Phenomenology +1306.0959 Methodology +1306.1891 Phenomenology +1306.1967 Discrete Mathematics +1306.2093 Classical Analysis and ODEs +1306.2216 Materials Science +1306.2560 Quantum Gases +1306.3004 Computational Complexity +1306.3711 Number Theory +1306.3754 Solar and Stellar Astrophysics +1306.4044 Cryptography and Security +1306.4353 Data Structures and Algorithms +1306.4411 Artificial Intelligence +1306.4525 Statistical Mechanics +1306.4619 Probability +1306.4624 Cryptography and Security +1306.4646 +1306.4669 Theory +1306.4671 Phenomenology +1306.4672 Robotics +1306.4684 Cosmology and Nongalactic Astrophysics +1306.4691 Classical Physics +1306.4693 Mesoscale and Nanoscale Physics +1306.4695 Dynamical Systems +1306.4698 Accelerator Physics +1306.4701 Phenomenology +1306.4708 Methodology +1306.4709 Fluid Dynamics +1306.4714 Artificial Intelligence +1306.4723 Methodology +1306.4724 Computer Vision and Pattern Recognition +1306.4726 Cryptography and Security +1306.4729 Accelerator Physics +1306.4734 Methodology +1306.4741 Optimization and Control +1306.4742 Chaotic Dynamics +1306.4746 Computer Vision and Pattern Recognition +1306.4747 Populations and Evolution +1306.4752 Analysis of PDEs +1306.4753 Learning +1306.4754 Information Theory +1306.4755 Information Theory +1306.4757 Superconductivity +1306.4758 Information Retrieval +1306.4762 Materials Science +1306.4764 Phenomenology +1306.4766 Number Theory +1306.4767 +1306.4768 +1306.4772 +1306.4773 Performance +1306.4775 +1306.4777 Plasma Physics +1306.4778 Analysis of PDEs +1306.4779 Computers and Society +1306.4780 Number Theory +1306.4781 Combinatorics +1306.4785 Quantum Gases +1306.4791 Commutative Algebra +1306.4792 +1306.4793 Neural and Evolutionary Computing +1306.4797 Mesoscale and Nanoscale Physics +1306.4798 Combinatorics +1306.4799 Soft Condensed Matter +1306.4803 +1306.4806 Symplectic Geometry +1306.4811 Numerical Analysis +1306.4812 Mesoscale and Nanoscale Physics +1306.4814 Algebraic Topology +1306.4819 Analysis of PDEs +1306.4826 +1306.4828 Cryptography and Security +1306.4829 Quantum Algebra +1306.4830 Accelerator Physics +1306.4833 Optimization and Control +1306.4834 Geophysics +1306.4840 Tissues and Organs +1306.4842 Tissues and Organs +1306.4845 Cryptography and Security +1306.4847 Statistics Theory +1306.4853 +1306.4856 Digital Libraries +1306.4858 Mesoscale and Nanoscale Physics +1306.4862 Experiment +1306.4863 Fluid Dynamics +1306.4864 Statistics Theory +1306.4867 Statistics Theory +1306.4868 Number Theory +1306.4870 Geophysics +1306.4872 Statistics Theory +1306.4876 Mesoscale and Nanoscale Physics +1306.4877 Solar and Stellar Astrophysics +1306.4881 Fluid Dynamics +1306.4882 Phenomenology +1306.4883 Systems and Control +1306.4884 Computer Science and Game Theory +1306.4886 Computation and Language +1306.4889 +1306.4890 Computation and Language +1306.4891 Number Theory +1306.4893 +1306.4897 History and Philosophy of Physics +1306.4902 History and Philosophy of Physics +1306.4903 +1306.4907 +1306.4908 Computation and Language +1306.4911 Methodology +1306.4913 History and Overview +1306.4919 Computational Geometry +1306.4926 Numerical Analysis +1306.4930 Astrophysics of Galaxies +1306.4941 Combinatorics +1306.4943 Statistics Theory +1306.4944 Physics Education +1306.4948 Strongly Correlated Electrons +1306.4958 Portfolio Management +1306.4961 Phenomenology +1306.4966 Computer Vision and Pattern Recognition +1306.4972 Mesoscale and Nanoscale Physics +astro-ph/0611291 +astro-ph/0612209 +astro-ph/0701522 +cond-mat/0512348 Disordered Systems and Neural Networks +gr-qc/0009080 +math/0606352 Algebraic Geometry +0909.4861 Mesoscale and Nanoscale Physics +1008.0703 Mesoscale and Nanoscale Physics +1102.1548 High Energy Astrophysical Phenomena +1102.4168 Optics +1104.4006 Representation Theory +1104.5242 +1105.0373 Statistical Mechanics +1105.5770 Classical Analysis and ODEs +1105.6270 Combinatorics +1108.1743 Statistical Mechanics +1109.4428 Combinatorics +1109.4472 Combinatorics +1109.5109 +1110.1239 Theory +1201.2723 Mesoscale and Nanoscale Physics +1201.5283 Learning +1202.1479 Optimization and Control +1202.1768 +1202.2397 Strongly Correlated Electrons +1202.3040 Mesoscale and Nanoscale Physics +1203.5861 Instrumentation and Methods for Astrophysics +1204.0394 Instrumentation and Methods for Astrophysics +1204.0404 Mesoscale and Nanoscale Physics +1204.1818 Disordered Systems and Neural Networks +1204.3770 Biological Physics +1204.4797 Dynamical Systems +1205.0333 Probability +1206.0018 Quantum Gases +1206.0926 Analysis of PDEs +1206.1870 +1206.3088 +1206.4168 Mesoscale and Nanoscale Physics +1206.4470 Mesoscale and Nanoscale Physics +1206.4724 High Energy Astrophysical Phenomena +1207.0884 Rings and Algebras +1208.2721 Computational Complexity +1209.1747 Phenomenology +1209.4335 Statistical Mechanics +1210.3596 Exactly Solvable and Integrable Systems +1211.1010 Cosmology and Nongalactic Astrophysics +1211.3464 +1212.0016 Superconductivity +1212.2222 Geometric Topology +1212.3275 +1212.5164 Superconductivity +1212.6329 +1212.6789 Combinatorics +1301.1030 Superconductivity +1301.3143 Cosmology and Nongalactic Astrophysics +1301.3448 Phenomenology +1301.3806 Statistical Mechanics +1301.3956 Materials Science +1301.4027 +1301.6261 Representation Theory +1301.6864 Quantum Gases +1301.7608 Adaptation and Self-Organizing Systems +1302.0362 Statistical Mechanics +1302.0773 Lattice +1302.1336 +1302.3031 +1302.5670 Superconductivity +1303.0300 High Energy Astrophysical Phenomena +1303.0971 Dynamical Systems +1303.1411 +1303.2413 Computational Complexity +1303.3085 Mesoscale and Nanoscale Physics +1303.3214 Mesoscale and Nanoscale Physics +1303.3953 Experiment +1303.5371 Cosmology and Nongalactic Astrophysics +1303.6136 Experiment +1303.6570 Dynamical Systems +1303.6641 Theory +1304.1473 Quantum Gases +1304.3363 Lattice +1304.3815 Phenomenology +1304.4342 Mesoscale and Nanoscale Physics +1304.4636 Data Structures and Algorithms +1304.4772 +1304.6768 Materials Science +1304.7597 +1304.7970 Materials Science +1305.0775 Number Theory +1305.1665 Mesoscale and Nanoscale Physics +1305.3106 Cosmology and Nongalactic Astrophysics +1305.4109 Superconductivity +1305.4812 Mesoscale and Nanoscale Physics +1305.5168 Solar and Stellar Astrophysics +1305.5401 Instrumentation and Methods for Astrophysics +1305.6398 Phenomenology +1305.7335 Materials Science +1306.0620 Mesoscale and Nanoscale Physics +1306.0872 Quantum Gases +1306.2151 Solar and Stellar Astrophysics +1306.3209 High Energy Astrophysical Phenomena +1306.3402 Quantum Gases +1307.0681 Phenomenology +1307.1571 Accelerator Physics +1307.2088 Differential Geometry +1307.2168 Experiment +1307.2208 Statistical Mechanics +1307.2552 +1307.2840 Dynamical Systems +1307.3546 Phenomenology +1307.3696 Networking and Internet Architecture +1307.3847 Algebraic Geometry +1307.3848 Materials Science +1307.4009 Quantum Gases +1307.5655 Symbolic Computation +1307.5899 Data Structures and Algorithms +1307.6119 Superconductivity +1307.6358 Materials Science +1307.6596 Algebraic Topology +1307.6635 Materials Science +1307.6672 Fluid Dynamics +1307.6792 Digital Libraries +1307.6864 Numerical Analysis +1307.6865 Statistics Theory +1307.6867 Analysis of PDEs +1307.6876 Probability +1307.6881 Group Theory +1307.6886 +1307.6887 Machine Learning +1307.6889 Applications +1307.6890 Mesoscale and Nanoscale Physics +1307.6892 Group Theory +1307.6893 Dynamical Systems +1307.6894 Category Theory +1307.6895 Analysis of PDEs +1307.6897 High Energy Astrophysical Phenomena +1307.6898 Quantum Gases +1307.6899 Statistical Mechanics +1307.6901 Software Engineering +1307.6903 Programming Languages +1307.6912 +1307.6916 Solar and Stellar Astrophysics +1307.6917 Probability +1307.6919 Numerical Analysis +1307.6923 Information Theory +1307.6929 Group Theory +1307.6930 Information Theory +1307.6937 Information Retrieval +1307.6938 Differential Geometry +1307.6939 Discrete Mathematics +1307.6941 Digital Libraries +1307.6942 Functional Analysis +1307.6944 Combinatorics +1307.6946 Cosmology and Nongalactic Astrophysics +1307.6947 Probability +1307.6949 Analysis of PDEs +1307.6951 Analysis of PDEs +1307.6955 Cosmology and Nongalactic Astrophysics +1307.6956 +1307.6958 Logic in Computer Science +1307.6960 Applications +1307.6963 Soft Condensed Matter +1307.6974 General Finance +1307.6975 Computers and Society +1307.6976 Networking and Internet Architecture +1307.6977 Soft Condensed Matter +1307.6979 Information Theory +1307.6981 Instrumentation and Detectors +1307.6985 Plasma Physics +1307.6987 Geometric Topology +1307.6988 Operator Algebras +1307.6989 Instrumentation and Detectors +1307.6991 Atmospheric and Oceanic Physics +1307.6992 Experiment +1307.6998 Materials Science +1307.7000 Networking and Internet Architecture +1307.7002 Optimization and Control +1307.7008 Space Physics +1307.7009 Networking and Internet Architecture +1307.7010 Classical Analysis and ODEs +1307.7024 Learning +1307.7028 Learning +1307.7029 Superconductivity +1307.7031 Digital Libraries +1307.7033 Digital Libraries +1307.7035 Digital Libraries +1307.7039 Classical Analysis and ODEs +1307.7041 High Energy Astrophysical Phenomena +1307.7050 Learning +1307.7051 High Energy Astrophysical Phenomena +1307.7054 Statistics Theory +1307.7055 Adaptation and Self-Organizing Systems +1307.7057 Networking and Internet Architecture +1307.7058 Computers and Society +1307.7062 Earth and Planetary Astrophysics +1307.7070 Computational Finance +1307.7071 Instrumentation and Methods for Astrophysics +1307.7079 Analysis of PDEs +1307.7081 Complex Variables +1307.7087 Information Theory +1307.7089 Data Structures and Algorithms +1307.7090 Analysis of PDEs +1307.7094 Physics and Society +1307.7096 Software Engineering +1307.7099 Phenomenology +1307.7101 Statistical Mechanics +1307.7103 Cosmology and Nongalactic Astrophysics +1307.7112 Probability +1307.7113 Number Theory +1307.7118 Computer Science and Game Theory +1307.7119 Numerical Analysis +1307.7127 Computers and Society +1307.7129 Robotics +1307.7131 High Energy Astrophysical Phenomena +1307.7132 Combinatorics +1307.7137 Probability +physics/0509206 Physics and Society +0710.2191 +0901.4951 Disordered Systems and Neural Networks +0906.0164 +0906.4091 +0912.3906 Mesoscale and Nanoscale Physics +0912.5193 Methodology +1009.3288 +1009.3335 +1101.5655 +1102.1665 Solar and Stellar Astrophysics +1102.2109 Disordered Systems and Neural Networks +1102.2490 Statistics Theory +1103.4361 Computational Geometry +1105.5124 Symplectic Geometry +1108.2956 +1108.5835 +1110.5813 Social and Information Networks +1111.4627 Phenomenology +1201.1696 +1203.0838 Disordered Systems and Neural Networks +1203.3300 +1203.6854 Statistical Mechanics +1203.6895 Statistical Mechanics +1205.6765 Optimization and Control +1206.3085 +1206.4254 +1207.1440 Mesoscale and Nanoscale Physics +1207.6402 Cosmology and Nongalactic Astrophysics +1208.5638 Number Theory +1209.1314 Exactly Solvable and Integrable Systems +1209.2588 Biological Physics +1209.2858 Phenomenology +1209.5187 Information Theory +1209.6220 Cosmology and Nongalactic Astrophysics +1210.2150 Group Theory +1210.3061 Networking and Internet Architecture +1210.3405 Computation +1210.6446 Cosmology and Nongalactic Astrophysics +1211.1711 +1211.5438 +1211.6324 Optimization and Control +1212.5907 Solar and Stellar Astrophysics +1301.0852 Statistical Mechanics +1301.2948 Experiment +1301.3665 +1301.6499 Theory +1301.6832 +1302.0590 Portfolio Management +1302.6962 Probability +1302.6990 +1303.0589 +1303.1207 Mesoscale and Nanoscale Physics +1303.3819 +1303.4417 Mesoscale and Nanoscale Physics +1303.5167 +1303.6238 Atomic and Molecular Clusters +1303.6540 General Physics +1304.0417 +1304.1455 Quantitative Methods +1304.2526 Materials Science +1304.2933 Strongly Correlated Electrons +1304.3517 Materials Science +1304.5221 Cosmology and Nongalactic Astrophysics +1304.5267 Soft Condensed Matter +1304.7310 Exactly Solvable and Integrable Systems +1305.2428 Number Theory +1305.2584 Metric Geometry +1305.2728 Theory +1305.2921 Phenomenology +1305.2967 Materials Science +1305.3096 Soft Condensed Matter +1305.3943 Cosmology and Nongalactic Astrophysics +1305.4770 Soft Condensed Matter +1305.4903 Lattice +1305.5509 Theory +1305.7456 +1306.1082 Quantum Gases +1306.2525 +1306.3108 Learning +1306.3912 Phenomenology +1306.3948 Phenomenology +1306.6835 Materials Science +1307.1585 Solar and Stellar Astrophysics +1307.1667 Quantum Gases +1307.4552 Cosmology and Nongalactic Astrophysics +1307.4770 +1307.4879 Computation and Language +1307.6087 Rings and Algebras +1307.6772 High Energy Astrophysical Phenomena +1307.6936 Phenomenology +1307.7339 Rings and Algebras +1307.7792 Networking and Internet Architecture +1307.8351 Rings and Algebras +1308.0918 Solar and Stellar Astrophysics +1308.2801 Phenomenology +1308.4952 +1308.4992 Number Theory +1308.5719 +1308.6001 Popular Physics +1308.6018 Quantitative Methods +1308.6032 Materials Science +1308.6034 Materials Science +1308.6038 Numerical Analysis +1308.6070 Cosmology and Nongalactic Astrophysics +1308.6138 Networking and Internet Architecture +1308.6243 Quantitative Methods +1308.6249 History and Overview +1308.6266 Phenomenology +1308.6276 Physics and Society +1308.6281 High Energy Astrophysical Phenomena +1308.6284 High Energy Astrophysical Phenomena +1308.6286 Cosmology and Nongalactic Astrophysics +1308.6292 Artificial Intelligence +1308.6297 Computation and Language +1308.6299 Phenomenology +1308.6300 Computation and Language +1308.6301 Fluid Dynamics +1308.6309 Computer Vision and Pattern Recognition +1308.6311 Computer Vision and Pattern Recognition +1308.6312 Applications +1308.6316 Information Theory +1308.6318 Logic +1308.6319 Computer Vision and Pattern Recognition +1308.6320 Numerical Analysis +1308.6327 Soft Condensed Matter +1308.6329 Operator Algebras +1308.6330 Group Theory +1308.6333 Genomics +1308.6337 Optimization and Control +1308.6339 Information Theory +1308.6340 Materials Science +1308.6341 General Physics +1308.6348 Rings and Algebras +1308.6356 Social and Information Networks +1308.6360 +1308.6362 History and Philosophy of Physics +1308.6363 Computers and Society +1308.6365 Other Condensed Matter +1308.6367 Populations and Evolution +1308.6368 Human-Computer Interaction +1308.6370 Optimization and Control +1308.6375 Cosmology and Nongalactic Astrophysics +1308.6378 Optimization and Control +1308.6379 Probability +1308.6384 Discrete Mathematics +1308.6388 Computer Vision and Pattern Recognition +1308.6390 Quantum Algebra +1308.6391 Differential Geometry +1308.6392 Statistics Theory +1308.6393 Materials Science +1308.6395 Instrumentation and Detectors +1308.6397 Probability +1308.6399 Logic +1308.6400 Materials Science +1308.6401 Computer Vision and Pattern Recognition +1308.6403 High Energy Astrophysical Phenomena +1308.6405 Optics +1308.6407 Cosmology and Nongalactic Astrophysics +1308.6408 Atomic Physics +1308.6412 Biological Physics +1308.6413 Software Engineering +1308.6416 Earth and Planetary Astrophysics +1308.6417 Optics +1308.6422 Soft Condensed Matter +1308.6424 Mesoscale and Nanoscale Physics +1308.6428 Commutative Algebra +1308.6429 Differential Geometry +1308.6431 +1308.6437 Information Theory +1308.6439 Differential Geometry +1308.6440 Soft Condensed Matter +1308.6441 +1308.6445 Number Theory +1308.6446 +1308.6448 Number Theory +1308.6449 Commutative Algebra +1308.6454 Algebraic Geometry +1308.6464 Distributed, Parallel, and Cluster Computing +1308.6468 Phenomenology +1308.6469 Performance +1308.6471 Analysis of PDEs +1308.6474 Complex Variables +1308.6477 Classical Analysis and ODEs +1308.6479 Soft Condensed Matter +1308.6481 Information Theory +1308.6482 Soft Condensed Matter +1308.6483 Cosmology and Nongalactic Astrophysics +1308.6487 Information Theory +1308.6488 Optics +1308.6494 Physics and Society +1308.6495 Category Theory +1308.6497 Geometric Topology +1308.6501 Analysis of PDEs +1308.6505 Computational Complexity +1308.6506 Experiment +1308.6510 Soft Condensed Matter +1308.6513 Mesoscale and Nanoscale Physics +1308.6515 Soft Condensed Matter +1308.6518 Dynamical Systems +1308.6527 Atomic and Molecular Clusters +1308.6532 Analysis of PDEs +1308.6534 Populations and Evolution +1308.6535 Probability +1308.6543 Information Theory +1308.6546 Cell Behavior +1308.6547 Algebraic Geometry +1308.6552 Information Theory +1308.6553 Optics +1308.6554 Instrumentation and Detectors +1308.6557 Operator Algebras +1308.6558 Optics +1308.6563 +1308.6565 +1308.6572 Phenomenology +cond-mat/0601341 Superconductivity +cond-mat/0601407 Superconductivity +0707.0815 +0801.2875 Probability +0809.1400 Optimization and Control +0811.4285 Probability +0901.0890 Superconductivity +0905.3917 Probability +0910.4908 +1001.2935 Numerical Analysis +1005.1808 Classical Analysis and ODEs +1005.4438 Probability +1007.2565 Probability +1008.4217 Logic +1012.4293 Mesoscale and Nanoscale Physics +1103.3512 Statistics Theory +1105.1231 Metric Geometry +1105.4489 Differential Geometry +1106.1158 +1106.1194 Neural and Evolutionary Computing +1107.0976 Strongly Correlated Electrons +1107.3834 Theory +1107.5175 Group Theory +1108.5099 Differential Geometry +1109.3025 Functional Analysis +1109.5558 Quantum Algebra +1110.4653 Probability +1111.0488 Probability +1111.1077 Statistics Theory +1111.5052 Numerical Analysis +1111.5259 Differential Geometry +1111.6312 Numerical Analysis +1201.0566 Computer Vision and Pattern Recognition +1201.6403 Algebraic Geometry +1201.6454 Symplectic Geometry +1202.2142 Probability +1202.6267 Experiment +1202.6611 Statistical Finance +1204.0121 Phenomenology +1204.0388 +1204.1432 Dynamical Systems +1204.4539 Machine Learning +1205.4090 Number Theory +1206.5197 Metric Geometry +1206.5648 Programming Languages +1207.0235 Probability +1207.3791 Differential Geometry +1208.3419 +1209.4336 Operator Algebras +1209.4888 Rings and Algebras +1209.4922 Systems and Control +1210.4461 General Finance +1210.6749 Classical Analysis and ODEs +1210.7334 Differential Geometry +1210.7510 General Finance +1211.1536 Mesoscale and Nanoscale Physics +1211.2972 Artificial Intelligence +1211.3071 Differential Geometry +1211.3356 Classical Analysis and ODEs +1212.3307 Phenomenology +1212.5438 Functional Analysis +1301.1243 Experiment +1301.1554 Phenomenology +1301.2453 +1301.4836 Superconductivity +1301.4949 Representation Theory +1301.5856 Phenomenology +1301.6186 Strongly Correlated Electrons +1302.0566 Computational Complexity +1302.0615 Combinatorics +1302.1139 +1302.3211 Functional Analysis +1302.3284 Classical Physics +1302.3415 Experiment +1303.1685 Number Theory +1303.2922 Atomic Physics +1303.3529 Mesoscale and Nanoscale Physics +1303.4719 Mesoscale and Nanoscale Physics +1303.4795 Probability +1303.4935 Quantum Algebra +1303.5605 Quantum Gases +1303.6628 Cosmology and Nongalactic Astrophysics +1303.6793 Subcellular Processes +1303.6912 Phenomenology +1304.1928 Symbolic Computation +1304.4224 Chaotic Dynamics +1304.4313 +1304.4397 Functional Analysis +1304.7442 +1304.7741 +1305.0804 Mesoscale and Nanoscale Physics +1305.5633 Mesoscale and Nanoscale Physics +1305.5869 Atomic Physics +1305.6063 Materials Science +1305.6725 Probability +1305.7359 Optics +1306.2803 Solar and Stellar Astrophysics +1306.4236 Combinatorics +1306.5015 Analysis of PDEs +1306.5292 Mesoscale and Nanoscale Physics +1306.5536 +1306.5719 Theory +1306.6213 Quantum Gases +1307.0011 Cosmology and Nongalactic Astrophysics +1307.2277 Probability +1307.4995 Cosmology and Nongalactic Astrophysics +1307.6729 Populations and Evolution +1307.7012 +1308.0774 Computation +1308.1653 Combinatorics +1308.1941 Numerical Analysis +1308.2963 Astrophysics of Galaxies +1308.3880 +1308.5477 Representation Theory +1308.6389 Strongly Correlated Electrons +1309.0096 +1309.0567 Mesoscale and Nanoscale Physics +1309.3835 Solar and Stellar Astrophysics +1309.3988 Cosmology and Nongalactic Astrophysics +1309.4706 +1309.4769 Superconductivity +1309.4773 Astrophysics of Galaxies +1309.4784 Cosmology and Nongalactic Astrophysics +1309.4789 +1309.4791 Classical Physics +1309.4792 +1309.4798 Functional Analysis +1309.4800 Complex Variables +1309.4802 Combinatorics +1309.4803 Geometric Topology +1309.4806 Phenomenology +1309.4811 Probability +1309.4814 Algebraic Geometry +1309.4818 Logic +1309.4821 Category Theory +1309.4822 Quantum Algebra +1309.4826 Number Theory +1309.4830 Mesoscale and Nanoscale Physics +1309.4831 Analysis of PDEs +1309.4832 Mesoscale and Nanoscale Physics +1309.4843 Other Computer Science +1309.4844 Machine Learning +1309.4846 Social and Information Networks +1309.4848 Classical Physics +1309.4849 Rings and Algebras +1309.4850 Optimization and Control +1309.4852 Materials Science +1309.4856 Theory +1309.4865 Chemical Physics +1309.4866 Cosmology and Nongalactic Astrophysics +1309.4868 Analysis of PDEs +1309.4869 Analysis of PDEs +1309.4871 Applications +1309.4872 Numerical Analysis +1309.4874 Analysis of PDEs +1309.4875 Analysis of PDEs +1309.4876 Analysis of PDEs +1309.4878 Analysis of PDEs +1309.4881 +1309.4882 Data Structures and Algorithms +1309.4887 Distributed, Parallel, and Cluster Computing +1309.4890 Plasma Physics +1309.4893 Medical Physics +1309.4900 +1309.4907 Systems and Control +1309.4912 Classical Analysis and ODEs +1309.4914 Algebraic Geometry +1309.4915 +1309.4921 Functional Analysis +1309.4928 Optimization and Control +1309.4932 Digital Libraries +1309.4937 +1309.4938 Information Retrieval +1309.4941 Lattice +1309.4943 Fluid Dynamics +1309.4945 Classical Analysis and ODEs +1309.4951 Number Theory +1309.4952 Populations and Evolution +1309.4953 Data Structures and Algorithms +1309.4957 +1309.4960 Solar and Stellar Astrophysics +1309.4962 Artificial Intelligence +1309.4964 Mesoscale and Nanoscale Physics +1309.4965 Mesoscale and Nanoscale Physics +1309.4966 Lattice +1309.4969 Representation Theory +1309.4972 High Energy Astrophysical Phenomena +1309.4974 Functional Analysis +1309.4975 Probability +1309.4984 Statistics Theory +1309.4987 Probability +1309.4990 +1309.4994 Other Computer Science +1309.4995 +1309.4997 Algebraic Topology +1309.4998 Materials Science +1309.4999 Learning +1309.5003 Statistics Theory +1309.5004 Computer Vision and Pattern Recognition +1309.5006 Representation Theory +1309.5007 Computational Physics +1309.5013 Differential Geometry +1309.5014 Physics and Society +1309.5018 Artificial Intelligence +1309.5019 Methodology +1309.5021 Rings and Algebras +1309.5025 Functional Analysis +1309.5029 Metric Geometry +1309.5030 Trading and Market Microstructure +1309.5040 Analysis of PDEs +1309.5043 Dynamical Systems +1309.5045 Commutative Algebra +1309.5047 Learning +1309.5048 Numerical Analysis +1309.5053 General Finance +1309.5054 Strongly Correlated Electrons +1309.5069 Cryptography and Security +1309.5073 Statistical Finance +1309.5075 Other Computer Science +1309.5076 Neurons and Cognition +1309.5078 Tissues and Organs +1309.5080 Chaotic Dynamics +math/0106215 Probability +0705.3803 Logic +0708.0072 Superconductivity +0708.2307 Number Theory +0804.0865 Number Theory +0804.3429 Strongly Correlated Electrons +0806.1438 Discrete Mathematics +0807.4996 Algebraic Geometry +0807.5020 Rings and Algebras +0808.0034 Algebraic Geometry +0812.1817 Numerical Analysis +0812.4077 Atomic Physics +0902.1633 Disordered Systems and Neural Networks +0903.4301 Quantum Algebra +0906.0611 Number Theory +1002.2962 +1005.2016 Number Theory +1009.2361 Combinatorics +1009.5049 Atomic Physics +1011.1397 Mesoscale and Nanoscale Physics +1011.2796 Analysis of PDEs +1011.4930 Algebraic Geometry +1011.4931 Algebraic Geometry +1011.6500 Superconductivity +1101.5835 Fluid Dynamics +1102.4901 Representation Theory +1103.3175 Representation Theory +1103.3295 +1104.3625 Quantum Gases +1105.5709 +1107.4826 Algebraic Geometry +1108.2689 Algebraic Geometry +1108.3944 Optimization and Control +1109.1437 +1109.2448 Algebraic Geometry +1109.2530 Theory +1109.2803 Statistical Finance +1109.5811 Quantum Gases +1111.1356 Analysis of PDEs +1111.3859 Other Computer Science +1112.0676 Analysis of PDEs +1202.0335 Theory +1202.2456 +1203.0168 +1203.1809 Computer Science and Game Theory +1204.0571 Quantum Gases +1204.1753 Algebraic Geometry +1204.2545 Other Computer Science +1204.3186 Statistics Theory +1204.6491 Statistics Theory +1205.0324 +1205.1238 +1205.2337 Plasma Physics +1205.5041 Number Theory +1205.6169 Group Theory +1205.6860 Phenomenology +1206.0684 Mesoscale and Nanoscale Physics +1206.2086 Lattice +1206.3068 Group Theory +1206.6721 Statistics Theory +1207.0089 Mesoscale and Nanoscale Physics +1207.1647 Cosmology and Nongalactic Astrophysics +1207.1881 Data Analysis, Statistics and Probability +1207.2108 +1207.2710 Classical Analysis and ODEs +1208.1155 Differential Geometry +1208.4853 Strongly Correlated Electrons +1208.5181 +1208.6266 Quantum Gases +1209.0079 +1209.0389 Statistical Mechanics +1209.1226 Mesoscale and Nanoscale Physics +1209.2256 Superconductivity +1209.2775 Statistical Mechanics +1209.3629 Strongly Correlated Electrons +1209.3899 Combinatorics +1209.5219 +1209.6606 Strongly Correlated Electrons +1210.0803 +1210.1754 +1210.1755 Theory +1210.2233 Theory +1210.3318 Complex Variables +1210.4384 Strongly Correlated Electrons +1210.4445 Statistical Mechanics +1210.5076 Phenomenology +1210.6290 Disordered Systems and Neural Networks +1211.0545 Quantum Gases +1211.1808 Phenomenology +1211.6810 Atomic Physics +1211.6871 K-Theory and Homology +1212.0904 Phenomenology +1212.3317 Differential Geometry +1212.4155 Phenomenology +1212.5669 Computation +1212.6288 +1212.6527 Artificial Intelligence +1301.0171 +1301.0550 Artificial Intelligence +1301.0551 Learning +1301.0552 Artificial Intelligence +1301.0553 Artificial Intelligence +1301.0554 Learning +1301.0555 Artificial Intelligence +1301.0556 Learning +1301.0557 Artificial Intelligence +1301.0558 Artificial Intelligence +1301.0559 Artificial Intelligence +1301.0560 Artificial Intelligence +1301.0561 Artificial Intelligence +1301.0562 Learning +1301.0563 Learning +1301.0564 Artificial Intelligence +1301.0565 Learning +1301.0566 Artificial Intelligence +1301.0567 Learning +1301.0568 Artificial Intelligence +1301.0569 Artificial Intelligence +1301.0570 Artificial Intelligence +1301.0571 Artificial Intelligence +1301.0572 Artificial Intelligence +1301.0573 Human-Computer Interaction +1301.0574 Artificial Intelligence +1301.0576 Artificial Intelligence +1301.0577 Computer Science and Game Theory +1301.0578 Learning +1301.0579 Learning +1301.0580 Artificial Intelligence +1301.0581 Numerical Analysis +1301.0582 Artificial Intelligence +1301.0583 Artificial Intelligence +1301.0584 Artificial Intelligence +1301.0585 Artificial Intelligence +1301.0586 Learning +1301.0587 Data Structures and Algorithms +1301.0588 Learning +1301.0589 Artificial Intelligence +1301.0590 Artificial Intelligence +1301.0591 Artificial Intelligence +1301.0592 Artificial Intelligence +1301.0593 Learning +1301.0594 Artificial Intelligence +1301.0595 Computer Science and Game Theory +1301.0596 Artificial Intelligence +1301.0597 Artificial Intelligence +1301.0598 Artificial Intelligence +1301.0599 Learning +1301.0601 Learning +1301.0602 Learning +1301.0603 Artificial Intelligence +1301.0604 Learning +1301.0605 Artificial Intelligence +1301.0606 Artificial Intelligence +1301.0607 Robotics +1301.0608 Artificial Intelligence +1301.0609 Artificial Intelligence +1301.0610 Learning +1301.0611 Artificial Intelligence +1301.0612 Computer Vision and Pattern Recognition +1301.0613 Learning +1301.0614 Artificial Intelligence +1301.0635 Differential Geometry +1301.0637 Experiment +1301.0647 Logic +1301.0648 Computers and Society +1301.0650 Plasma Physics +1301.0652 Combinatorics +1301.0659 K-Theory and Homology +1301.0660 Category Theory +1301.0662 Plasma Physics +1301.0664 Metric Geometry +1301.0666 Lattice +1301.0667 Logic in Computer Science +1301.0669 Information Theory +1301.0670 Instrumentation and Methods for Astrophysics +1301.0671 +1301.0673 Mesoscale and Nanoscale Physics +1301.0674 High Energy Astrophysical Phenomena +1301.0681 Methodology +1301.0688 Metric Geometry +1301.0690 Exactly Solvable and Integrable Systems +1301.0692 +1301.0693 Analysis of PDEs +1301.0696 Analysis of PDEs +1301.0701 Information Retrieval +1301.0702 Information Theory +1301.0706 Algebraic Geometry +1301.0713 +1301.0719 Portfolio Management +1301.0725 Learning +1301.0726 Statistics Theory +1301.0727 Dynamical Systems +1301.0730 Information Theory +1301.0732 Exactly Solvable and Integrable Systems +1301.0734 +1301.0735 Logic +1301.0736 Tissues and Organs +1301.0741 Methodology +1301.0743 Group Theory +1301.0746 +1301.0747 Numerical Analysis +1301.0748 Programming Languages +1301.0749 Functional Analysis +1301.0751 Physics and Society +1301.0753 Classical Physics +1301.0754 Computational Physics +1301.0755 Experiment +1301.0757 Quantum Algebra +1301.0758 General Mathematics +1301.0759 Discrete Mathematics +1301.0761 Rings and Algebras +1301.0762 Software Engineering +1301.0763 Data Structures and Algorithms +1301.0764 Group Theory +1301.0767 +1301.0775 Networking and Internet Architecture +1301.0778 Mesoscale and Nanoscale Physics +1301.0784 Commutative Algebra +1301.0785 Neural and Evolutionary Computing +1301.0789 Commutative Algebra +1301.0790 Combinatorics +1301.0793 Data Structures and Algorithms +1301.0797 Functional Analysis +1301.0804 Experiment +1301.0810 Functional Analysis +1301.0820 Computational Complexity +hep-ph/0511232 Phenomenology +math/0309255 Optimization and Control +math/0404268 Number Theory +math/0409232 Number Theory +math/0409233 Number Theory +0804.1887 Functional Analysis +0812.3112 Other Condensed Matter +0903.1201 Phenomenology +0904.4746 Analysis of PDEs +0907.4149 Materials Science +1001.1475 Group Theory +1001.1707 Logic +1004.4017 Information Theory +1009.3862 Probability +1010.0992 Differential Geometry +1010.5557 +1011.1764 Probability +1011.3749 Classical Analysis and ODEs +1101.0226 Algebraic Topology +1102.0721 Solar and Stellar Astrophysics +1102.1487 Physics and Society +1103.3722 Probability +1103.5015 Phenomenology +1104.1049 Spectral Theory +1105.4578 +1106.0073 Lattice +1107.2894 Operator Algebras +1109.4277 Logic +1111.5161 Analysis of PDEs +1111.5633 Superconductivity +1111.6812 Functional Analysis +1112.5207 Cosmology and Nongalactic Astrophysics +1112.5277 Quantum Gases +1112.5689 Probability +1201.3657 K-Theory and Homology +1201.4777 Artificial Intelligence +1201.4938 Numerical Analysis +1202.6644 Biological Physics +1203.1129 Analysis of PDEs +1203.5480 Complex Variables +1204.3902 Phenomenology +1204.4056 Dynamical Systems +1204.4728 Strongly Correlated Electrons +1205.0530 Disordered Systems and Neural Networks +1205.0585 Lattice +1205.0646 Digital Libraries +1205.2050 Representation Theory +1206.0260 +1206.0948 Chaotic Dynamics +1206.2566 Quantum Gases +1206.5080 Operator Algebras +1206.5236 +1207.4238 Quantum Gases +1207.4263 +1207.6500 +1208.0799 Applications +1208.1698 Mesoscale and Nanoscale Physics +1208.4504 Optics +1209.2343 Soft Condensed Matter +1209.3898 +1209.4478 Superconductivity +1209.5025 Distributed, Parallel, and Cluster Computing +1210.1417 Plasma Physics +1210.3636 Superconductivity +1210.3808 +1210.4935 Theory +1210.5654 Solar and Stellar Astrophysics +1210.6428 Mesoscale and Nanoscale Physics +1210.6473 Analysis of PDEs +1210.7462 Superconductivity +1210.7920 Dynamical Systems +1210.8106 +1211.1896 Phenomenology +1211.3598 Quantum Gases +1211.6080 Optimization and Control +1211.6444 Earth and Planetary Astrophysics +1211.6732 Geometric Topology +1211.6832 Algebraic Topology +1212.0342 Strongly Correlated Electrons +1212.0437 Statistical Mechanics +1212.0622 Rings and Algebras +1212.0834 Analysis of PDEs +1212.1184 Phenomenology +1212.1188 Combinatorics +1212.2234 +1212.2400 +1212.4228 Strongly Correlated Electrons +1212.4765 Strongly Correlated Electrons +1212.5360 Statistical Mechanics +1212.5501 +1301.0532 +1301.1743 Mesoscale and Nanoscale Physics +1301.1823 Mesoscale and Nanoscale Physics +1301.3437 Theory +1301.4767 Learning +1301.4769 Learning +1301.4957 Dynamical Systems +1301.5160 Learning +1301.5641 Cosmology and Nongalactic Astrophysics +1302.0024 Plasma Physics +1302.1315 Combinatorics +1302.1579 Cosmology and Nongalactic Astrophysics +1302.1771 Materials Science +1302.1867 Solar and Stellar Astrophysics +1302.4109 Strongly Correlated Electrons +1302.6306 Soft Condensed Matter +1302.6458 Lattice +1302.6484 Instrumentation and Methods for Astrophysics +1302.6559 Solar and Stellar Astrophysics +1302.6737 Theory +1302.6976 Superconductivity +1302.7011 Geometric Topology +1302.7016 +1302.7022 Complex Variables +1302.7025 Social and Information Networks +1302.7028 Networking and Internet Architecture +1302.7035 Dynamical Systems +1302.7037 +1302.7039 Information Retrieval +1302.7043 Machine Learning +1302.7044 Analysis of PDEs +1302.7046 Networking and Internet Architecture +1302.7050 Analysis of PDEs +1302.7054 Plasma Physics +1302.7058 Optics +1302.7059 Instrumentation and Detectors +1302.7069 Logic +1302.7070 Sound +1302.7076 Commutative Algebra +1302.7078 Cosmology and Nongalactic Astrophysics +1302.7079 Numerical Analysis +1302.7081 Computers and Society +1302.7082 Computer Vision and Pattern Recognition +1302.7084 Analysis of PDEs +1302.7086 Theory +1302.7087 +1302.7090 Systems and Control +1302.7092 +1302.7095 K-Theory and Homology +1302.7096 Neural and Evolutionary Computing +1302.7098 Analysis of PDEs +1302.7099 Statistics Theory +1302.7102 Genomics +1302.7105 Functional Analysis +1302.7108 Mesoscale and Nanoscale Physics +1302.7111 Logic in Computer Science +1302.7114 Solar and Stellar Astrophysics +1302.7121 Numerical Analysis +1302.7128 Probability +1302.7129 Classical Physics +1302.7131 Information Retrieval +1302.7133 Earth and Planetary Astrophysics +1302.7141 Combinatorics +1302.7145 Other Computer Science +1302.7150 +1302.7155 Cosmology and Nongalactic Astrophysics +1302.7156 Functional Analysis +1302.7159 Dynamical Systems +1302.7167 Solar and Stellar Astrophysics +1302.7168 Logic in Computer Science +1302.7178 Superconductivity +1302.7180 Computer Vision and Pattern Recognition +1302.7182 Mesoscale and Nanoscale Physics +1302.7184 High Energy Astrophysical Phenomena +1302.7191 Software Engineering +1302.7193 Numerical Analysis +1302.7194 Symbolic Computation +1302.7197 Statistical Mechanics +1302.7199 Probability +1302.7201 Phenomenology +1302.7206 +1302.7207 Functional Analysis +1302.7208 Number Theory +1302.7213 Symplectic Geometry +1302.7214 Quantum Gases +1302.7221 Mesoscale and Nanoscale Physics +1302.7223 Algebraic Geometry +1302.7228 Combinatorics +1302.7234 +1302.7235 Optimization and Control +1302.7241 Mesoscale and Nanoscale Physics +1302.7247 Probability +1302.7254 Fluid Dynamics +1302.7259 Disordered Systems and Neural Networks +1302.7265 Analysis of PDEs +1302.7267 +1302.7277 Chaotic Dynamics +1302.7283 Learning +1302.7292 Computational Physics +1302.7302 Rings and Algebras +1302.7303 Operator Algebras +1302.7308 Phenomenology +1302.7311 Phenomenology +1302.7313 Combinatorics +1302.7314 Systems and Control +1302.7316 +math/0602377 Statistics Theory +math/0610050 Number Theory +math/0611753 Dynamical Systems +quant-ph/0605109 +0706.1409 Symbolic Computation +0712.3476 Algebraic Topology +0804.2337 Symbolic Computation +0804.2373 Symbolic Computation +0805.2630 Data Structures and Algorithms +0805.3990 General Physics +0809.0063 Symbolic Computation +0904.2452 Symbolic Computation +0904.2761 Symbolic Computation +0906.1957 Combinatorics +0906.2888 Symbolic Computation +0907.0291 Symbolic Computation +0908.4003 Quantitative Methods +0908.4015 Strongly Correlated Electrons +0912.1040 General Physics +1004.1808 Data Structures and Algorithms +1004.3732 Information Retrieval +1010.1698 Combinatorics +1010.3504 Lattice +1011.2452 Operator Algebras +1012.3177 Atomic Physics +1101.0910 General Mathematics +1101.1966 Analysis of PDEs +1104.3120 Phenomenology +1105.3195 +1105.6145 Other Statistics +1106.0373 Group Theory +1107.1720 Computational Geometry +1107.2254 Optics +1107.2272 Combinatorics +1108.5232 Representation Theory +1109.2809 Symbolic Computation +1110.1423 +1110.4871 Phenomenology +1110.6265 Networking and Internet Architecture +1111.3456 Differential Geometry +1112.0290 Symplectic Geometry +1201.4551 Applications +1202.1296 Theory +1202.2502 Probability +1202.5120 Quantum Algebra +1203.0880 Mesoscale and Nanoscale Physics +1203.3104 Analysis of PDEs +1203.3317 Group Theory +1203.6553 Probability +1205.0626 Combinatorics +1205.0879 Symbolic Computation +1205.2089 Algebraic Topology +1205.3414 Symbolic Computation +1205.4526 Strongly Correlated Electrons +1206.0921 +1206.2467 Materials Science +1206.5817 Algebraic Geometry +1207.1604 +1207.2769 +1207.2814 +1207.7220 Strongly Correlated Electrons +1208.2201 +1208.3100 Algebraic Geometry +1208.4922 Probability +1209.0121 Neurons and Cognition +1209.6592 Phenomenology +1210.1715 Statistics Theory +1210.1794 Lattice +1210.2990 Phenomenology +1210.4050 Operator Algebras +1210.4800 +1210.5989 Materials Science +1210.6814 Theory +1211.0283 Cosmology and Nongalactic Astrophysics +1211.2239 Theory +1211.3733 Strongly Correlated Electrons +1211.4565 Group Theory +1211.7072 Strongly Correlated Electrons +1212.1102 Lattice +1212.2136 Learning +1212.2300 Genomics +1212.3763 Strongly Correlated Electrons +1212.4047 Other Condensed Matter +1212.5339 Statistical Mechanics +1212.6255 Strongly Correlated Electrons +1301.2337 Earth and Planetary Astrophysics +1301.2824 Strongly Correlated Electrons +1301.3519 Theory +1301.4186 Phenomenology +1301.6597 Plasma Physics +1301.7317 History and Philosophy of Physics +1302.2878 Statistical Mechanics +1302.3733 Optics +1302.4369 +1302.4378 +1302.4438 Phenomenology +1302.5726 Mesoscale and Nanoscale Physics +1302.6164 Metric Geometry +1302.6944 Statistical Mechanics +1303.0215 +1303.0607 Instrumentation and Detectors +1303.0703 Strongly Correlated Electrons +1303.0883 Strongly Correlated Electrons +1303.1181 Phenomenology +1303.2885 Fluid Dynamics +1303.3127 Optics +1303.3168 Strongly Correlated Electrons +1303.4290 Strongly Correlated Electrons +1303.5049 +1303.6480 Superconductivity +1303.7057 Atomic Physics +1304.0121 Experiment +1304.0631 Mesoscale and Nanoscale Physics +1304.1160 +1304.1265 Phenomenology +1304.1655 Experiment +1304.2634 Quantum Gases +1304.2635 Genomics +1304.4426 Differential Geometry +1304.4473 Cosmology and Nongalactic Astrophysics +1304.6029 Instrumentation and Methods for Astrophysics +1304.6633 Metric Geometry +1304.6971 Atomic Physics +1304.7534 Statistical Mechanics +1304.7991 Biomolecules +1305.0405 Mesoscale and Nanoscale Physics +1305.0602 Geometric Topology +1305.1855 Superconductivity +1305.3633 Computer Vision and Pattern Recognition +1305.3635 Computer Vision and Pattern Recognition +1305.5455 Optics +1305.5672 Superconductivity +1305.6471 Differential Geometry +1305.7396 +1306.1895 Category Theory +1306.2079 Data Structures and Algorithms +1306.2228 Earth and Planetary Astrophysics +1306.2498 Combinatorics +1306.2853 Other Condensed Matter +1306.3260 Formal Languages and Automata Theory +1306.3340 Logic +1306.3530 Machine Learning +1306.3543 Distributed, Parallel, and Cluster Computing +1306.3728 +1306.3739 Data Structures and Algorithms +1306.3767 Human-Computer Interaction +1306.3927 Applications +1306.3975 Optimization and Control +1306.3976 Information Theory +1306.3978 Optimization and Control +1306.3979 Optimization and Control +1306.3980 Probability +1306.3981 Solar and Stellar Astrophysics +1306.3997 Representation Theory +1306.3999 Theory +1306.4006 Rings and Algebras +1306.4017 High Energy Astrophysical Phenomena +1306.4018 Quantum Gases +1306.4029 Computational Complexity +1306.4033 Spectral Theory +1306.4035 Theory +1306.4039 +1306.4040 Cryptography and Security +1306.4041 Methodology +1306.4042 Soft Condensed Matter +1306.4043 Representation Theory +1306.4046 Geometric Topology +1306.4048 Discrete Mathematics +1306.4059 Symbolic Computation +1306.4060 Combinatorics +1306.4063 Software Engineering +1306.4064 Physics and Society +1306.4068 Numerical Analysis +1306.4069 Databases +1306.4070 Pricing of Securities +1306.4071 Systems and Control +1306.4072 +1306.4075 Numerical Analysis +1306.4079 Computer Vision and Pattern Recognition +1306.4082 Networking and Internet Architecture +1306.4083 Networking and Internet Architecture +1306.4085 Computers and Society +1306.4088 Category Theory +1306.4089 Complex Variables +1306.4090 Networking and Internet Architecture +1306.4092 Computational Engineering, Finance, and Science +1306.4093 Functional Analysis +1306.4094 Human-Computer Interaction +1306.4095 Phenomenology +1306.4102 Mesoscale and Nanoscale Physics +1306.4103 Machine Learning +1306.4105 Strongly Correlated Electrons +1306.4109 Algebraic Geometry +1306.4110 Instrumentation and Detectors +1306.4112 +1306.4115 Classical Analysis and ODEs +1306.4116 Mesoscale and Nanoscale Physics +1306.4124 Solar and Stellar Astrophysics +1306.4127 Materials Science +1306.4128 Methodology +1306.4132 +1306.4133 Networking and Internet Architecture +1306.4134 Computation and Language +1306.4137 +1306.4139 Computation and Language +1306.4141 Number Theory +1306.4148 Fluid Dynamics +1306.4150 Optics +1306.4151 Computational Complexity +1306.4152 Learning +1306.4155 +1306.4161 Distributed, Parallel, and Cluster Computing +1306.4163 Number Theory +1306.4164 Combinatorics +1306.4173 Instrumentation and Methods for Astrophysics +1306.4176 Soft Condensed Matter +1306.4179 Combinatorics +1306.4183 Phenomenology +1306.4188 History and Philosophy of Physics +1306.4189 Mesoscale and Nanoscale Physics +1306.4201 +1306.4204 Differential Geometry +1306.4207 Data Structures and Algorithms +1306.4212 Strongly Correlated Electrons +1306.4214 Materials Science +1306.4219 Optimization and Control +1306.4221 Metric Geometry +1306.4225 History and Overview +1306.4228 Combinatorics +1306.4229 Mesoscale and Nanoscale Physics +1306.4230 Information Theory +1306.4233 Differential Geometry +1306.4235 History and Overview +1306.4241 Differential Geometry +1306.4242 Logic in Computer Science +1306.4245 Software Engineering +1306.4249 Analysis of PDEs +1306.4250 Differential Geometry +1306.4253 Discrete Mathematics +1306.4261 Statistical Mechanics +1306.4263 Symbolic Computation +1306.4269 Strongly Correlated Electrons +1306.4270 Biomolecules +1306.4273 Phenomenology +1306.4277 Probability +1306.4279 Phenomenology +1306.4280 Software Engineering +1306.4285 Group Theory +1306.4287 Data Structures and Algorithms +1306.4288 Representation Theory +1306.4296 Materials Science +1306.4298 Theory +1306.4299 Combinatorics +1306.4300 Mesoscale and Nanoscale Physics +1306.4302 Computer Science and Game Theory +1306.4303 Information Theory +1306.4307 Solar and Stellar Astrophysics +cs/0609020 Computational Complexity +hep-th/0104237 Theory +0804.3089 Probability +0808.3665 Differential Geometry +0810.3751 Probability +0902.3395 Probability +0902.4343 +0905.0367 Probability +0905.3140 Representation Theory +0910.0130 Probability +1005.0654 +1009.0208 Statistical Mechanics +1009.2029 Probability +1009.2037 Combinatorics +1011.4478 Strongly Correlated Electrons +1101.5324 Logic in Computer Science +1101.5847 Algebraic Geometry +1103.0176 Classical Analysis and ODEs +1103.1240 Accelerator Physics +1103.1498 Probability +1103.3959 Probability +1103.5848 Combinatorics +1103.6232 Functional Analysis +1104.4738 +1104.4762 Number Theory +1104.5246 Information Theory +1106.1447 Algebraic Geometry +1108.0390 Biological Physics +1109.1412 Combinatorics +1110.1426 Functional Analysis +1111.5876 Statistics Theory +1111.6397 Mesoscale and Nanoscale Physics +1111.6574 Dynamical Systems +1201.1908 Strongly Correlated Electrons +1201.3771 Software Engineering +1201.4133 General Physics +1201.5396 Algebraic Geometry +1203.1027 K-Theory and Homology +1203.1512 +1204.0214 Group Theory +1204.1524 Theory +1205.0254 Quantum Gases +1205.0888 Lattice +1205.2896 History and Philosophy of Physics +1205.6536 Numerical Analysis +1205.6909 Mesoscale and Nanoscale Physics +1206.1156 Optimization and Control +1206.4859 Soft Condensed Matter +1206.5065 Computer Vision and Pattern Recognition +1206.5146 Pattern Formation and Solitons +1206.5539 Disordered Systems and Neural Networks +1207.0077 Statistics Theory +1207.0528 Superconductivity +1207.0636 Strongly Correlated Electrons +1207.3038 Operator Algebras +1207.4334 Theory +1207.5877 +1207.6573 Theory +1208.0059 Superconductivity +1208.0330 Probability +1208.0910 Statistical Mechanics +1208.2470 +1208.2671 Experiment +1208.3131 Group Theory +1208.3175 Theory +1208.4087 Rings and Algebras +1208.4750 Phenomenology +1208.5454 Functional Analysis +1209.2695 +1209.3504 Chaotic Dynamics +1209.5138 Combinatorics +1210.2300 +1210.2317 Quantum Gases +1210.2480 Cosmology and Nongalactic Astrophysics +1210.2596 Quantum Gases +1210.5985 Phenomenology +1210.6185 Instrumentation and Detectors +1210.7170 Cosmology and Nongalactic Astrophysics +1211.0410 Materials Science +1211.1033 High Energy Astrophysical Phenomena +1211.1234 Information Theory +1211.2199 Theory +1211.4101 Distributed, Parallel, and Cluster Computing +1211.5323 Quantum Gases +1211.6358 Mesoscale and Nanoscale Physics +1211.6469 +1211.6850 Strongly Correlated Electrons +1211.6873 Materials Science +1212.0664 Analysis of PDEs +1212.1795 Probability +1212.2055 +1212.3897 High Energy Astrophysical Phenomena +1212.5196 Phenomenology +1212.6252 Phenomenology +1212.6338 Algebraic Geometry +1301.0639 Superconductivity +1301.1323 +1301.1682 Cosmology and Nongalactic Astrophysics +1301.4002 Algebraic Geometry +1301.5571 Solar and Stellar Astrophysics +1301.5883 Atomic Physics +1301.7084 Experiment +1301.7521 Logic in Computer Science +1302.1889 Phenomenology +1302.2052 Combinatorics +1302.2120 Atomic Physics +1302.2933 Analysis of PDEs +1302.3345 Rings and Algebras +1302.4000 Biomolecules +1302.4787 Superconductivity +1302.5482 Cosmology and Nongalactic Astrophysics +1302.5669 +1302.5840 Complex Variables +1302.6314 Superconductivity +1302.6352 Cryptography and Security +1302.6363 Trading and Market Microstructure +1302.6533 Computer Science and Game Theory +1302.6764 Software Engineering +1302.7060 +1302.7065 +1302.7068 +1302.7116 Representation Theory +1302.7175 Machine Learning +1302.7291 +1302.7305 Mesoscale and Nanoscale Physics +1303.0006 Cosmology and Nongalactic Astrophysics +1303.0011 Physics and Society +1303.0015 Mesoscale and Nanoscale Physics +1303.0016 Combinatorics +1303.0018 Functional Analysis +1303.0025 Experiment +1303.0029 Cosmology and Nongalactic Astrophysics +1303.0031 Probability +1303.0034 Astrophysics of Galaxies +1303.0036 Astrophysics of Galaxies +1303.0039 Mesoscale and Nanoscale Physics +1303.0040 Medical Physics +1303.0041 Computational Complexity +1303.0042 Instrumentation and Methods for Astrophysics +1303.0043 Cosmology and Nongalactic Astrophysics +1303.0046 Medical Physics +1303.0048 Medical Physics +1303.0050 Information Theory +1303.0057 Classical Analysis and ODEs +1303.0059 +1303.0060 +1303.0063 +1303.0064 High Energy Astrophysical Phenomena +1303.0065 Statistical Mechanics +1303.0066 Robotics +1303.0069 Plasma Physics +1303.0071 Computer Science and Game Theory +1303.0072 +1303.0079 Physics Education +1303.0082 Phenomenology +1303.0083 Commutative Algebra +1303.0089 Digital Libraries +1303.0092 +1303.0093 Social and Information Networks +1303.0095 Social and Information Networks +1303.0097 Algebraic Geometry +1303.0098 Functional Analysis +1303.0102 +1303.0103 Molecular Networks +1303.0104 Lattice +1303.0106 Complex Variables +1303.0110 Probability +1303.0113 Mesoscale and Nanoscale Physics +1303.0117 Applications +1303.0122 Exactly Solvable and Integrable Systems +1303.0125 Phenomenology +1303.0130 Strongly Correlated Electrons +1303.0133 +1303.0134 Complex Variables +1303.0136 Networking and Internet Architecture +1303.0137 Complex Variables +1303.0140 Learning +1303.0141 Information Theory +1303.0148 Statistics Theory +1303.0149 Representation Theory +1303.0151 Solar and Stellar Astrophysics +1303.0156 Computational Engineering, Finance, and Science +1303.0159 Statistics Theory +1303.0165 Theory +1303.0174 +1303.0176 Number Theory +1303.0187 Rings and Algebras +1303.0189 Cosmology and Nongalactic Astrophysics +1303.0196 +1303.0197 +1303.0198 Information Theory +1303.0203 Number Theory +1303.0213 Artificial Intelligence +1303.0214 Combinatorics +1303.0218 +1303.0219 Cosmology and Nongalactic Astrophysics +1303.0222 Cryptography and Security +1303.0229 Information Theory +1303.0238 Statistics Theory +1303.0243 Fluid Dynamics +1303.0247 Information Theory +1303.0249 Astrophysics of Galaxies +1303.0252 Algebraic Geometry +1303.0253 Algebraic Geometry +1303.0254 Earth and Planetary Astrophysics +1303.0262 Combinatorics +1303.0270 Data Structures and Algorithms +1303.0275 High Energy Astrophysical Phenomena +1303.0276 Distributed, Parallel, and Cluster Computing +math/0409376 Group Theory +math/0508098 Dynamical Systems +math/0606199 Geometric Topology +math/0611733 Group Theory +0806.1458 Soft Condensed Matter +0809.2872 Analysis of PDEs +0901.2312 Operator Algebras +0904.3087 Distributed, Parallel, and Cluster Computing +0907.3211 Differential Geometry +0908.3380 Information Theory +0908.3383 Information Theory +0909.1823 Probability +1001.0730 Operator Algebras +1008.2598 +1008.4294 +1009.4061 Combinatorics +1010.3481 +1011.0111 Probability +1012.5766 Algebraic Topology +1101.5294 Combinatorics +1102.1531 Classical Analysis and ODEs +1103.1650 Group Theory +1103.4591 Probability +1104.3548 Soft Condensed Matter +1105.4204 Computer Vision and Pattern Recognition +1105.5611 Dynamical Systems +1107.3520 Chemical Physics +1107.4071 Superconductivity +1107.4619 Functional Analysis +1108.0945 Portfolio Management +1108.3242 Dynamical Systems +1109.3935 History and Philosophy of Physics +1110.5850 Combinatorics +1110.6914 Algebraic Geometry +1111.0615 Mesoscale and Nanoscale Physics +1112.0149 Spectral Theory +1112.5246 Learning +1201.4081 Probability +1201.6246 Algebraic Geometry +1202.2395 Statistics Theory +1202.5172 Probability +1203.1347 Combinatorics +1203.3075 Chemical Physics +1203.6051 Probability +1204.0729 Representation Theory +1204.1728 Optimization and Control +1204.5376 Dynamical Systems +1204.6445 Computational Complexity +1205.1158 Other Quantitative Biology +1205.1442 Differential Geometry +1205.5054 Probability +1205.5670 Quantum Gases +1205.7046 Numerical Analysis +1206.0102 Optimization and Control +1206.0382 Metric Geometry +1206.1143 Metric Geometry +1206.1825 Quantum Gases +1206.2448 Computer Science and Game Theory +1206.2777 Theory +1206.4598 Other Computer Science +1206.4696 Theory +1206.4710 Other Computer Science +1206.4713 Other Computer Science +1207.0086 Functional Analysis +1207.1329 Algebraic Geometry +1207.4360 Complex Variables +1208.5176 Theory +1208.6201 Superconductivity +1209.0058 +1209.1071 Operator Algebras +1209.1903 General Finance +1209.4203 Probability +1209.6463 Methodology +1210.0014 Cosmology and Nongalactic Astrophysics +1210.0194 +1210.0248 Symplectic Geometry +1210.0796 +1210.1347 Materials Science +1210.3255 Algebraic Geometry +1210.3401 Functional Analysis +1210.3684 Discrete Mathematics +1210.3819 Information Theory +1210.5093 Distributed, Parallel, and Cluster Computing +1210.5326 +1210.5737 Materials Science +1210.6138 Mesoscale and Nanoscale Physics +1210.6307 Classical Analysis and ODEs +1210.6741 Geometric Topology +1211.0165 Solar and Stellar Astrophysics +1211.3013 Probability +1211.4298 Populations and Evolution +1211.4881 Combinatorics +1211.5913 +1211.6224 Statistical Mechanics +1211.6474 Geophysics +1211.7087 Algebraic Topology +1212.1829 Applications +1212.1964 Mesoscale and Nanoscale Physics +1212.2183 Mesoscale and Nanoscale Physics +1212.2426 Materials Science +1212.3209 Phenomenology +1212.3263 Theory +1212.3596 Algebraic Topology +1212.5688 +1301.0243 History and Overview +1301.2623 Theory +1301.4290 Instrumentation and Methods for Astrophysics +1301.5114 Group Theory +1301.6759 High Energy Astrophysical Phenomena +1302.0532 +1302.0626 +1302.1978 Functional Analysis +1302.2075 +1302.2119 Theory +1302.2367 Optics +1302.2487 Materials Science +1302.2614 Phenomenology +1302.2711 Mesoscale and Nanoscale Physics +1302.4362 Mesoscale and Nanoscale Physics +1302.4525 +1302.5144 Theory +1302.5277 Soft Condensed Matter +1302.5294 Theory +1302.5783 Cosmology and Nongalactic Astrophysics +1302.6003 +1302.6158 Quantum Gases +1303.0306 Data Analysis, Statistics and Probability +1303.0710 Number Theory +1303.1946 Theory +1303.1995 Theory +1303.2969 Phenomenology +1303.4114 Performance +1303.4662 Solar and Stellar Astrophysics +1303.4747 Cosmology and Nongalactic Astrophysics +1303.5339 Chaotic Dynamics +1303.6295 Superconductivity +1303.6586 Algebraic Geometry +1303.7032 Artificial Intelligence +1304.0359 Optics +1304.0431 Classical Analysis and ODEs +1304.0434 +1304.1163 +1304.1732 Data Analysis, Statistics and Probability +1304.2055 Phenomenology +1304.2875 Soft Condensed Matter +1304.3018 Mesoscale and Nanoscale Physics +1304.3306 Mesoscale and Nanoscale Physics +1304.3369 Phenomenology +1304.3649 Strongly Correlated Electrons +1304.3938 Theory +1304.4007 High Energy Astrophysical Phenomena +1304.4078 Materials Science +1304.4202 +1304.4806 Learning +1304.5499 Differential Geometry +1304.6328 Algebraic Topology +1304.6860 Phenomenology +1304.7023 Differential Geometry +1304.7426 Superconductivity +1304.7524 Materials Science +1304.7890 Rings and Algebras +1304.7929 Materials Science +1305.0047 Machine Learning +1305.0351 Strongly Correlated Electrons +1305.0528 Materials Science +1305.0697 General Mathematics +1305.2104 Statistical Mechanics +1305.2465 Differential Geometry +1305.2519 +1305.2905 Phenomenology +1305.2924 Mesoscale and Nanoscale Physics +1305.3820 Phenomenology +1305.4091 Mesoscale and Nanoscale Physics +1305.5406 +1305.6301 Superconductivity +1306.0067 Atomic Physics +1306.0824 Phenomenology +1306.0920 Cosmology and Nongalactic Astrophysics +1306.1275 Phenomenology +1306.2080 Phenomenology +1306.2564 Computers and Society +1306.5197 Analysis of PDEs +1306.5730 Earth and Planetary Astrophysics +1306.5768 Astrophysics of Galaxies +1306.6740 Functional Analysis +1306.6844 General Physics +1307.0402 Functional Analysis +1307.0940 Mesoscale and Nanoscale Physics +1307.2159 Combinatorics +1307.2286 Disordered Systems and Neural Networks +1307.2308 Phenomenology +1307.2542 Differential Geometry +1307.2911 Biological Physics +1307.3018 Phenomenology +1307.3661 Dynamical Systems +1307.3676 Phenomenology +1307.3825 Mesoscale and Nanoscale Physics +1307.4150 Information Theory +1307.4239 Differential Geometry +1307.5171 Cosmology and Nongalactic Astrophysics +1307.5182 Networking and Internet Architecture +1307.5229 Group Theory +1307.5322 Artificial Intelligence +1307.5327 Experiment +1307.5328 Number Theory +1307.5331 Phenomenology +1307.5332 Probability +1307.5334 Mesoscale and Nanoscale Physics +1307.5339 Machine Learning +1307.5344 Fluid Dynamics +1307.5345 Geometric Topology +1307.5346 Number Theory +1307.5349 Strongly Correlated Electrons +1307.5351 Metric Geometry +1307.5356 Astrophysics of Galaxies +1307.5359 Phenomenology +1307.5361 Number Theory +1307.5362 Number Theory +1307.5363 Complex Variables +1307.5364 Populations and Evolution +1307.5376 Instrumentation and Methods for Astrophysics +1307.5377 Logic in Computer Science +1307.5378 Combinatorics +1307.5382 Superconductivity +1307.5383 Category Theory +1307.5388 Geometric Topology +1307.5392 Group Theory +1307.5393 Computation and Language +1307.5397 Astrophysics of Galaxies +1307.5398 Numerical Analysis +1307.5399 Analysis of PDEs +1307.5400 Representation Theory +1307.5403 +1307.5404 Category Theory +1307.5405 Instrumentation and Methods for Astrophysics +1307.5406 Differential Geometry +1307.5409 Functional Analysis +1307.5411 Combinatorics +1307.5412 +1307.5416 Group Theory +1307.5417 Group Theory +1307.5420 Cryptography and Security +1307.5423 Human-Computer Interaction +1307.5425 Differential Geometry +1307.5426 Human-Computer Interaction +1307.5431 Human-Computer Interaction +1307.5433 Phenomenology +1307.5434 Soft Condensed Matter +1307.5435 Distributed, Parallel, and Cluster Computing +1307.5436 Statistical Mechanics +1307.5437 Databases +1307.5443 Cosmology and Nongalactic Astrophysics +1307.5447 Analysis of PDEs +1307.5451 Materials Science +1307.5453 Number Theory +1307.5454 Complex Variables +1307.5455 Complex Variables +1307.5456 Number Theory +1307.5457 Complex Variables +1307.5460 Spectral Theory +1307.5462 +1307.5463 Instrumentation and Methods for Astrophysics +1307.5464 Materials Science +1307.5467 Algebraic Geometry +1307.5468 Biomolecules +1307.5472 +1307.5476 Statistics Theory +1307.5481 Functional Analysis +1307.5482 Geometric Topology +1307.5485 Mesoscale and Nanoscale Physics +1307.5486 Instrumentation and Detectors +1307.5489 Strongly Correlated Electrons +1307.5491 Analysis of PDEs +1307.5493 Symplectic Geometry +1307.5494 Numerical Analysis +1307.5497 Learning +1307.5498 Rings and Algebras +1307.5501 Rings and Algebras +1307.5503 Physics and Society +1307.5508 +1307.5510 Information Theory +1307.5511 Physics and Society +1307.5512 Statistical Mechanics +1307.5513 Commutative Algebra +1307.5519 Neural and Evolutionary Computing +1307.5523 Analysis of PDEs +1307.5528 Rings and Algebras +1307.5529 Rings and Algebras +1307.5534 Neural and Evolutionary Computing +1307.5537 Analysis of PDEs +1307.5540 Pricing of Securities +1307.5541 Networking and Internet Architecture +1307.5545 Materials Science +1307.5547 Data Structures and Algorithms +1307.5550 Statistical Mechanics +1307.5551 Computer Vision and Pattern Recognition +1307.5552 Information Theory +1307.5560 Instrumentation and Methods for Astrophysics +1307.5564 Algebraic Geometry +1307.5565 Biomolecules +1307.5570 Optics +1307.5582 Data Structures and Algorithms +1307.5583 Information Theory +1307.5591 Computer Vision and Pattern Recognition +1307.5594 Classical Analysis and ODEs +1307.5598 Materials Science +1307.5599 Learning +1307.5602 General Finance +1307.5603 Mesoscale and Nanoscale Physics +1307.5604 Phenomenology +1307.5607 Phenomenology +1307.5608 Classical Analysis and ODEs +1307.5609 Operator Algebras +1307.5611 Classical Analysis and ODEs +1307.5619 Distributed, Parallel, and Cluster Computing +1307.5620 Functional Analysis +1307.5621 Optics +1307.5625 Category Theory +1307.5632 Geometric Topology +1307.5633 Geophysics +1307.5634 Strongly Correlated Electrons +1307.5637 High Energy Astrophysical Phenomena +1307.5638 Mesoscale and Nanoscale Physics +1307.5641 Robotics +1307.5646 +1307.5647 Physics and Society +1307.5648 Optics +1307.5649 Optics +1307.5653 Computer Vision and Pattern Recognition +1307.5656 Soft Condensed Matter +1307.5657 Numerical Analysis +1307.5659 High Energy Astrophysical Phenomena +1307.5660 Complex Variables +1307.5661 Statistical Mechanics +1307.5667 Neural and Evolutionary Computing +1307.5668 Materials Science +1307.5669 Algebraic Topology +1307.5671 High Energy Astrophysical Phenomena +1307.5673 High Energy Astrophysical Phenomena +1307.5674 Neural and Evolutionary Computing +1307.5675 Physics and Society +1307.5679 Neural and Evolutionary Computing +1307.5680 +1307.5682 Phenomenology +1307.5684 Neurons and Cognition +1307.5685 Digital Libraries +1307.5686 Algebraic Geometry +1307.5688 +1307.5690 Spectral Theory +1307.5691 Computer Vision and Pattern Recognition +1307.5692 Number Theory +1307.5693 Computer Vision and Pattern Recognition +1307.5699 +1307.5700 Instrumentation and Methods for Astrophysics +1307.5702 Computer Vision and Pattern Recognition +1307.5704 Dynamical Systems +1307.5708 Functional Analysis +1307.5710 Computer Vision and Pattern Recognition +1307.5713 Computer Vision and Pattern Recognition +1307.5714 Cryptography and Security +1307.5715 Solar and Stellar Astrophysics +1307.5720 Robotics +1307.5722 Phenomenology +1307.5727 Combinatorics +1307.5729 Complex Variables +1307.5730 Learning +1307.5731 Number Theory +1307.5732 Instrumentation and Methods for Astrophysics +1307.5734 Number Theory +1307.5736 Computation and Language +1307.5737 Cosmology and Nongalactic Astrophysics +1307.5738 Strongly Correlated Electrons +1307.5746 Numerical Analysis +1307.5747 Populations and Evolution +1307.5748 Computer Vision and Pattern Recognition +1307.5758 Analysis of PDEs +1307.5759 Methodology +1307.5760 Physics Education +1307.5765 Representation Theory +1307.5767 Probability +1307.5769 Instrumentation and Detectors +1307.5771 +1307.5774 Earth and Planetary Astrophysics +1307.5775 Chemical Physics +1307.5777 Combinatorics +1307.5780 Representation Theory +1307.5781 Combinatorics +1307.5783 Algebraic Topology +1307.5786 Solar and Stellar Astrophysics +1307.5796 Dynamical Systems +1307.5797 Optimization and Control +1307.5799 Analysis of PDEs +1307.5800 Computer Vision and Pattern Recognition +1307.5802 Operator Algebras +1307.5803 Probability +1307.5806 Methodology +1307.5808 Combinatorics +1307.5809 Geophysics +1307.5810 Materials Science +1307.5816 Analysis of PDEs +1307.5818 +1307.5822 +1307.5824 Numerical Analysis +1307.5833 Tissues and Organs +astro-ph/0308379 +astro-ph/0610610 +gr-qc/0208004 +hep-ph/0512098 Phenomenology +math/0001122 Complex Variables +math/0001124 Complex Variables +math/0003175 Complex Variables +math/0005032 Complex Variables +math/0011216 K-Theory and Homology +math/0101164 Complex Variables +math/0101166 Classical Analysis and ODEs +math/0401002 Algebraic Geometry +q-bio/0310037 Populations and Evolution +0706.4284 +0804.0882 Combinatorics +0804.3241 Sound +0804.4347 Numerical Analysis +0806.2058 Probability +0807.2245 Statistics Theory +0810.4632 Dynamical Systems +0901.4725 Computational Physics +0904.3042 Dynamical Systems +0906.0841 Algebraic Geometry +0907.0250 Probability +0908.4450 Probability +0910.2454 Functional Analysis +0910.3350 Functional Analysis +1001.5323 Dynamical Systems +1002.1801 Mesoscale and Nanoscale Physics +1002.3183 Computational Complexity +1004.0330 Theory +1004.0580 Phenomenology +1006.4891 Number Theory +1007.0982 Information Theory +1007.5150 Rings and Algebras +1008.4697 Phenomenology +1009.4254 Phenomenology +1011.1064 Phenomenology +1011.1312 Phenomenology +1012.1028 +1012.2699 Social and Information Networks +1101.5448 Theory +1104.0090 Group Theory +1104.1760 Number Theory +1106.1832 Differential Geometry +1106.3520 Methodology +1107.0417 Statistics Theory +1108.3761 General Physics +1201.0700 Dynamical Systems +1201.1672 Optimization and Control +1201.4656 +1202.1900 +1202.3665 Instrumentation and Methods for Astrophysics +1202.6188 Pricing of Securities +1203.4217 Number Theory +1204.0111 Numerical Analysis +1204.0516 Cosmology and Nongalactic Astrophysics +1204.2864 +1205.0772 Commutative Algebra +1205.1640 Geophysics +1206.6986 +1207.3851 Phenomenology +1207.5947 Methodology +1208.1910 Materials Science +1208.4310 Phenomenology +1208.5869 +1208.6536 Atomic and Molecular Clusters +1209.0176 Genomics +1209.2067 Multimedia +1209.2747 Optics +1209.4869 Differential Geometry +1210.0265 Analysis of PDEs +1210.0561 Complex Variables +1210.4799 Geometric Topology +1210.6090 Functional Analysis +1210.7497 Strongly Correlated Electrons +1210.7634 Algebraic Geometry +1210.8302 Logic in Computer Science +1211.1198 Analysis of PDEs +1211.1959 Phenomenology +1211.3255 Superconductivity +1211.5705 Probability +1211.6426 Cosmology and Nongalactic Astrophysics +1212.0071 Phenomenology +1212.1352 Numerical Analysis +1212.1925 Rings and Algebras +1212.2280 Materials Science +1212.3859 Information Theory +1212.4549 Numerical Analysis +1212.6190 Lattice +1301.1000 Optimization and Control +1301.3174 Information Theory +1301.4673 Accelerator Physics +1301.4729 Information Theory +1301.6073 Number Theory +1301.6300 Representation Theory +1302.0049 Group Theory +1302.2035 +1302.2128 Information Theory +1302.2846 Differential Geometry +1302.4530 Representation Theory +1302.4848 Atomic Physics +1302.7062 Analysis of PDEs +1302.7101 Representation Theory +1303.0580 Cosmology and Nongalactic Astrophysics +1303.1739 Mesoscale and Nanoscale Physics +1303.2471 +1303.3197 Cosmology and Nongalactic Astrophysics +1303.5042 Symbolic Computation +1303.5828 +1303.6904 Optimization and Control +1303.7464 +1304.0082 Optimization and Control +1304.0986 Cosmology and Nongalactic Astrophysics +1304.4100 Dynamical Systems +1304.4311 General Finance +1304.5994 Strongly Correlated Electrons +1304.6234 Group Theory +1305.0108 Materials Science +1305.0262 Instrumentation and Methods for Astrophysics +1305.0782 Cell Behavior +1305.2504 Neural and Evolutionary Computing +1305.3779 +1305.4650 Numerical Analysis +1305.4654 Cosmology and Nongalactic Astrophysics +1306.0391 Materials Science +1306.2367 +1306.3125 Mesoscale and Nanoscale Physics +1306.3233 Cosmology and Nongalactic Astrophysics +1306.3359 Computational Finance +1306.5135 Mesoscale and Nanoscale Physics +1306.6253 Algebraic Geometry +1306.6488 Strongly Correlated Electrons +1307.0834 Theory +1307.1014 Analysis of PDEs +1307.1101 Information Theory +1307.1165 Number Theory +1307.1228 Solar and Stellar Astrophysics +1307.1462 Optics +1307.1645 Chemical Physics +1307.3276 Strongly Correlated Electrons +1307.3952 +1307.4082 Phenomenology +1307.4245 Numerical Analysis +1307.4481 Phenomenology +1307.5101 Learning +1307.6188 Algebraic Topology +1307.6367 Instrumentation and Detectors +1307.6498 Theory +1307.6986 +1307.7573 Representation Theory +1308.0139 Mesoscale and Nanoscale Physics +1308.1198 Mesoscale and Nanoscale Physics +1308.1314 Materials Science +1308.1613 Differential Geometry +1308.2193 Materials Science +1308.2301 Mesoscale and Nanoscale Physics +1308.2835 Probability +1308.2909 Materials Science +1308.2950 Networking and Internet Architecture +1308.3433 Mesoscale and Nanoscale Physics +1308.3762 Analysis of PDEs +1308.4587 General Physics +1308.5184 Phenomenology +1308.6585 Cosmology and Nongalactic Astrophysics +1309.0399 +1309.0897 Software Engineering +1309.1933 Statistical Mechanics +1309.3004 Optics +1309.3295 Computation +1309.4649 Data Analysis, Statistics and Probability +1309.4702 Algebraic Geometry +1309.5650 Combinatorics +1309.6302 Algebraic Geometry +1309.6458 Theory +1309.6606 Differential Geometry +1309.6729 Mesoscale and Nanoscale Physics +1309.7727 Fluid Dynamics +1309.7896 Instrumentation and Detectors +1310.0228 +1310.0309 Dynamical Systems +1310.0509 Learning +1310.0675 +1310.1097 +1310.3439 Differential Geometry +1310.3733 Mesoscale and Nanoscale Physics +1310.3947 Materials Science +1310.4387 Optimization and Control +1310.4766 Analysis of PDEs +1310.5234 Soft Condensed Matter +1310.5358 Fluid Dynamics +1310.5494 Data Analysis, Statistics and Probability +1310.6214 Soft Condensed Matter +1310.7243 Analysis of PDEs +1310.7325 Superconductivity +1310.7772 Materials Science +1310.8086 Soft Condensed Matter +1310.8168 Mesoscale and Nanoscale Physics +1310.8198 Soft Condensed Matter +1310.8322 Analysis of PDEs +1311.0337 Mesoscale and Nanoscale Physics +1311.0508 Instrumentation and Methods for Astrophysics +1311.1744 History and Philosophy of Physics +1311.3081 Lattice +1311.3084 Classical Analysis and ODEs +1311.3376 High Energy Astrophysical Phenomena +1311.3571 Rings and Algebras +1311.3752 Dynamical Systems +1311.3912 +1311.4385 Lattice +1311.4425 Logic in Computer Science +1311.4446 Lattice +1311.4610 Databases +1311.4769 Robotics +1311.5278 Experiment +1311.5471 Combinatorics +1311.5592 Probability +1311.5640 Differential Geometry +1311.5678 Mesoscale and Nanoscale Physics +1311.5682 Mesoscale and Nanoscale Physics +1311.5683 Mesoscale and Nanoscale Physics +1311.5750 Learning +1311.5884 +1311.5887 Phenomenology +1311.5898 Cosmology and Nongalactic Astrophysics +1311.5903 Fluid Dynamics +1311.5905 Probability +1311.5906 Solar and Stellar Astrophysics +1311.5907 Chemical Physics +1311.5908 Fluid Dynamics +1311.5910 Materials Science +1311.5911 Number Theory +1311.5913 Functional Analysis +1311.5918 Optimization and Control +1311.5919 Probability +1311.5920 +1311.5924 Sound +1311.5925 Computer Science and Game Theory +1311.5926 Differential Geometry +1311.5927 Combinatorics +1311.5929 Materials Science +1311.5930 Data Structures and Algorithms +1311.5939 Probability +1311.5940 +1311.5942 Combinatorics +1311.5943 Materials Science +1311.5947 Computer Vision and Pattern Recognition +1311.5952 +1311.5956 Optimization and Control +1311.5959 Optimization and Control +1311.5964 Optics +1311.5970 Analysis of PDEs +1311.5973 Materials Science +1311.5976 Phenomenology +1311.5978 Social and Information Networks +1311.5986 Functional Analysis +1311.5992 Number Theory +1311.5996 Experiment +1311.5998 Artificial Intelligence +1311.6003 Experiment +1311.6005 Systems and Control +1311.6009 Systems and Control +1311.6010 Systems and Control +1311.6012 Systems and Control +1311.6013 Networking and Internet Architecture +1311.6015 Systems and Control +1311.6016 Combinatorics +1311.6017 Optimization and Control +1311.6018 Statistics Theory +1311.6019 Soft Condensed Matter +1311.6021 Classical Analysis and ODEs +1311.6023 Systems and Control +1311.6024 Data Structures and Algorithms +1311.6025 Classical Analysis and ODEs +1311.6026 Systems and Control +1311.6027 Pricing of Securities +1311.6028 +1311.6031 Statistical Mechanics +1311.6033 Computational Geometry +1311.6034 History and Overview +1311.6036 +1311.6038 +1311.6040 Analysis of PDEs +1311.6043 Probability +1311.6044 Analysis of PDEs +1311.6045 Computation and Language +1311.6046 Optimization and Control +1311.6048 Computer Vision and Pattern Recognition +1311.6049 Computer Vision and Pattern Recognition +1311.6054 Artificial Intelligence +1311.6056 Group Theory +1311.6057 Logic in Computer Science +1311.6061 Dynamical Systems +1311.6062 +1311.6064 Analysis of PDEs +1311.6066 Phenomenology +1311.6069 Differential Geometry +1311.6073 Lattice +1311.6077 Numerical Analysis +1311.6084 Analysis of PDEs +1311.6086 Algebraic Geometry +1311.6087 +1311.6088 Theory +1311.6092 Systems and Control +1311.6094 Systems and Control +1311.6099 +1311.6103 Data Analysis, Statistics and Probability +1311.6106 Soft Condensed Matter +1311.6113 Phenomenology +1311.6118 Cosmology and Nongalactic Astrophysics +1311.6121 Chemical Physics +1311.6126 Data Structures and Algorithms +1311.6131 +1311.6132 Lattice +1311.6135 Combinatorics +1311.6138 Optics +1311.6145 Software Engineering +1311.6146 Distributed, Parallel, and Cluster Computing +1311.6149 Multiagent Systems +1311.6154 Phenomenology +1311.6155 Commutative Algebra +1311.6156 Group Theory +1311.6161 Mesoscale and Nanoscale Physics +1311.6163 Systems and Control +1311.6164 Complex Variables +1311.6173 Materials Science +1311.6174 Differential Geometry +1311.6176 Number Theory +1311.6178 Information Theory +1311.6183 Distributed, Parallel, and Cluster Computing +1311.6185 Analysis of PDEs +1311.6186 Statistics Theory +1311.6190 Optimization and Control +1311.6194 Exactly Solvable and Integrable Systems +1311.6199 Systems and Control +1311.6201 Group Theory +1311.6206 Phenomenology +1311.6207 Operator Algebras +1311.6208 Emerging Technologies +1311.6210 Phenomenology +1311.6212 Algebraic Geometry +1311.6215 Computational Engineering, Finance, and Science +1311.6221 Software Engineering +1311.6223 Lattice +1311.6224 Software Engineering +1311.6227 Information Retrieval +1311.6229 Multiagent Systems +1311.6233 Multiagent Systems +1311.6234 Optics +1311.6236 Cryptography and Security +1311.6240 Information Retrieval +1311.6243 Information Retrieval +1311.6244 Computational Physics +1311.6245 Information Retrieval +1311.6247 Information Theory +1311.6248 Probability +1311.6249 Software Engineering +1311.6251 Physics Education +1311.6255 Physics Education +1311.6257 Computational Finance +1311.6259 Emerging Technologies +1311.6263 Algebraic Geometry +1311.6264 Software Engineering +1311.6266 Phenomenology +1311.6267 Probability +1311.6268 Lattice +1311.6269 Strongly Correlated Electrons +1311.6272 Information Theory +1311.6275 Information Theory +1311.6277 Mesoscale and Nanoscale Physics +1311.6278 +1311.6280 Networking and Internet Architecture +1311.6288 Analysis of PDEs +1311.6292 Combinatorics +1311.6299 Mesoscale and Nanoscale Physics +1311.6304 +1311.6310 Mesoscale and Nanoscale Physics +1311.6312 Lattice +1311.6314 Phenomenology +1311.6315 Numerical Analysis +1311.6318 Number Theory +1311.6327 Statistics Theory +1311.6328 General Physics +1311.6334 Social and Information Networks +1311.6335 Databases +1311.6339 Combinatorics +1311.6340 Spectral Theory +1311.6341 Quantum Algebra +1311.6342 Group Theory +1311.6345 Neurons and Cognition +1311.6354 Theory +1311.6355 Multimedia +1311.6363 Chemical Physics +1311.6366 Phenomenology +1311.6367 Probability +1311.6375 Logic +1311.6378 +1311.6381 Mesoscale and Nanoscale Physics +1311.6389 Probability +1311.6390 Optics +1311.6400 Fluid Dynamics +1311.6401 Physics and Society +1311.6413 Numerical Analysis +1311.6415 Phenomenology +1311.6417 Analysis of PDEs +1311.6425 Optimization and Control +1311.6430 Optimization and Control +1311.6432 Plasma Physics +1311.6433 Optimization and Control +1311.6434 Optics +1311.6436 Optimization and Control +1311.6439 Optimization and Control +1311.6440 Optimization and Control +1311.6442 Probability +1311.6443 Quantitative Methods +1311.6445 Materials Science +1311.6446 Optimization and Control +1311.6447 Phenomenology +1311.6449 Applications +1311.6450 Analysis of PDEs +1311.6451 Analysis of PDEs +1311.6453 Multimedia +1311.6454 Applications +1311.6456 +1311.6458 +1311.6460 Computational Engineering, Finance, and Science +cond-mat/0207599 Quantum Gases +cond-mat/0211604 Quantum Gases +cond-mat/0406093 Quantum Gases +cond-mat/0505136 Quantum Gases +cond-mat/0612213 Quantum Gases +physics/0702233 General Physics +quant-ph/0510090 +quant-ph/0609133 +0708.0242 Information Theory +0802.3563 Information Theory +0804.1635 Mesoscale and Nanoscale Physics +0903.2984 Strongly Correlated Electrons +0904.1840 Information Theory +1002.0240 Strongly Correlated Electrons +1006.1399 Strongly Correlated Electrons +1009.2022 Statistics Theory +1011.1643 Classical Analysis and ODEs +1102.1126 Differential Geometry +1104.1972 Probability +1108.4046 Materials Science +1108.4766 Algebraic Geometry +1110.1013 Geometric Topology +1201.3254 Optics +1203.0447 Probability +1203.1742 Number Theory +1203.4626 Information Theory +1203.4710 Pattern Formation and Solitons +1203.6231 Populations and Evolution +1205.6238 Theory +1205.6272 Quantum Gases +1206.1824 Earth and Planetary Astrophysics +1207.0787 Theory +1207.1443 +1207.1882 Combinatorics +1208.4391 Computer Vision and Pattern Recognition +1208.4923 +1209.1508 Statistics Theory +1209.2662 Differential Geometry +1209.5725 Phenomenology +1210.2793 Logic +1210.2917 Mesoscale and Nanoscale Physics +1210.3510 Soft Condensed Matter +1210.6204 Statistics Theory +1211.4457 Operator Algebras +1211.6530 Theory +1212.1788 Optimization and Control +1212.1822 Theory +1212.2172 Populations and Evolution +1212.3721 Optimization and Control +1212.4856 Phenomenology +1212.6615 Spectral Theory +1301.0054 Functional Analysis +1301.0817 Analysis of PDEs +1301.1687 Theory +1301.3230 Networking and Internet Architecture +1302.1832 Theory +1302.2602 Classical Analysis and ODEs +1302.3338 Cosmology and Nongalactic Astrophysics +1302.5036 Mesoscale and Nanoscale Physics +1302.5436 Probability +1303.1394 Theory +1303.3467 Materials Science +1303.4363 General Physics +1303.4564 Algebraic Geometry +1303.4924 Networking and Internet Architecture +1303.5012 Populations and Evolution +1304.2971 Analysis of PDEs +1304.4388 Analysis of PDEs +1304.6077 +1305.0301 Mesoscale and Nanoscale Physics +1305.4120 Quantum Gases +1306.4638 Statistical Mechanics +1306.5540 Operator Algebras +1306.6392 Representation Theory +1306.6814 Experiment +1307.0737 Populations and Evolution +1307.0963 +1307.2153 Cosmology and Nongalactic Astrophysics +1307.3028 Materials Science +1307.3841 Number Theory +1307.3955 Materials Science +1307.4427 Phenomenology +1308.0603 Strongly Correlated Electrons +1308.0866 Mesoscale and Nanoscale Physics +1308.1552 Physics and Society +1308.1868 Probability +1308.4092 Theory +1308.5074 Metric Geometry +1308.5155 Algebraic Geometry +1308.6270 +1309.0336 Physics and Society +1309.2547 Analysis of PDEs +1309.2607 +1309.2968 +1309.4758 Soft Condensed Matter +1309.5453 Theory +1309.6802 Solar and Stellar Astrophysics +1310.0295 General Physics +1310.1465 +1310.1904 Phenomenology +1310.2693 Accelerator Physics +1310.6083 Symplectic Geometry +1310.6276 Classical Analysis and ODEs +1310.6671 +1310.8203 Statistics Theory +1311.1155 Mesoscale and Nanoscale Physics +1311.1491 Theory +1311.2098 Plasma Physics +1311.2774 Number Theory +1311.5199 Analysis of PDEs +1311.7592 +1312.0040 Information Theory +1312.0474 Phenomenology +1312.1263 +1312.1510 Astrophysics of Galaxies +1312.3119 Number Theory +1312.3254 Phenomenology +1312.4116 +1312.4247 Functional Analysis +1312.4399 Group Theory +1312.4412 Materials Science +1312.4555 Exactly Solvable and Integrable Systems +1312.4706 Human-Computer Interaction +1312.4768 Cosmology and Nongalactic Astrophysics +1312.4787 +1312.4884 Physics and Society +1312.4941 Fluid Dynamics +1312.4943 Statistics Theory +1312.4959 Cosmology and Nongalactic Astrophysics +1312.4973 Combinatorics +1312.4977 Lattice +1312.4979 Pricing of Securities +1312.4980 Analysis of PDEs +1312.4986 Learning +1312.4987 Dynamical Systems +1312.4991 Plasma Physics +1312.4996 Cosmology and Nongalactic Astrophysics +1312.4998 Group Theory +1312.5001 Theory +1312.5002 Computation +1312.5005 +1312.5006 Accelerator Physics +1312.5007 Accelerator Physics +1312.5008 Rings and Algebras +1312.5009 Dynamical Systems +1312.5010 Accelerator Physics +1312.5011 Lattice +1312.5013 Instrumentation and Methods for Astrophysics +1312.5014 +1312.5015 Materials Science +1312.5018 Complex Variables +1312.5019 Classical Analysis and ODEs +1312.5021 Learning +1312.5023 Machine Learning +1312.5026 Mesoscale and Nanoscale Physics +1312.5033 Robotics +1312.5037 Rings and Algebras +1312.5038 Probability +1312.5042 Probability +1312.5043 +1312.5044 Analysis of PDEs +1312.5046 Accelerator Physics +1312.5050 Multimedia +1312.5053 Differential Geometry +1312.5054 Methodology +1312.5057 Physics and Society +1312.5058 Software Engineering +1312.5061 Software Engineering +1312.5063 Theory +1312.5065 Chemical Physics +1312.5066 Machine Learning +1312.5067 Discrete Mathematics +1312.5070 Lattice +1312.5073 Computational Finance +1312.5076 Phenomenology +1312.5077 Differential Geometry +1312.5078 Combinatorics +1312.5082 Statistics Theory +1312.5085 Statistics Theory +1312.5086 Accelerator Physics +1312.5088 Solar and Stellar Astrophysics +1312.5090 Mesoscale and Nanoscale Physics +1312.5093 Phenomenology +1312.5096 Information Theory +1312.5097 Artificial Intelligence +1312.5098 Phenomenology +1312.5099 High Energy Astrophysical Phenomena +1312.5101 Instrumentation and Detectors +1312.5103 Statistics Theory +1312.5105 Data Structures and Algorithms +1312.5107 Differential Geometry +1312.5108 Algebraic Geometry +1312.5110 High Energy Astrophysical Phenomena +1312.5111 Information Retrieval +1312.5112 Numerical Analysis +1312.5113 Strongly Correlated Electrons +1312.5114 Statistics Theory +1312.5115 Probability +1312.5117 +1312.5118 Classical Analysis and ODEs +1312.5120 Probability +1312.5122 Solar and Stellar Astrophysics +1312.5123 Statistics Theory +1312.5124 Applications +1312.5125 +1312.5128 Solar and Stellar Astrophysics +1312.5132 Algebraic Geometry +1312.5136 Dynamical Systems +1312.5137 Statistics Theory +1312.5138 Information Theory +1312.5142 Rings and Algebras +1312.5149 Phenomenology +1312.5150 Software Engineering +1312.5152 Differential Geometry +1312.5155 Information Theory +1312.5160 Number Theory +1312.5162 Artificial Intelligence +1312.5164 Materials Science +1312.5165 Experiment +1312.5169 Emerging Technologies +1312.5172 Computers and Society +1312.5173 Information Theory +1312.5174 +1312.5179 Machine Learning +1312.5180 Combinatorics +1312.5186 Dynamical Systems +1312.5196 Group Theory +1312.5202 Systems and Control +1312.5211 Solar and Stellar Astrophysics +1312.5214 Phenomenology +1312.5219 Statistics Theory +1312.5224 Applications +1312.5227 Metric Geometry +1312.5229 Probability +1312.5236 Earth and Planetary Astrophysics +1312.5241 Number Theory +1312.5244 Cellular Automata and Lattice Gases +1312.5249 Analysis of PDEs +1312.5251 +1312.5253 Exactly Solvable and Integrable Systems +1312.5255 Classical Analysis and ODEs +1312.5257 Other Computer Science +1312.5265 Fluid Dynamics +1312.5266 Exactly Solvable and Integrable Systems +1312.5268 Strongly Correlated Electrons +1312.5269 Logic +1312.5271 Risk Management +1312.5273 High Energy Astrophysical Phenomena +1312.5277 Numerical Analysis +1312.5278 Phenomenology +1312.5279 Statistical Mechanics +1312.5295 Materials Science +1312.5298 Lattice +1312.5299 Functional Analysis +1312.5300 Geophysics +1312.5304 Phenomenology +gr-qc/9404005 +hep-ph/9511265 Phenomenology +math/0509194 Combinatorics +quant-ph/9511040 +quant-ph/9602005 +0711.0429 Complex Variables +0901.1857 General Mathematics +1006.0325 Combinatorics +1008.2364 Solar and Stellar Astrophysics +1010.5361 Probability +1103.2270 +1105.2556 Probability +1105.3869 Category Theory +1105.6075 Methodology +1107.0104 Computational Geometry +1108.0185 Computation +1110.2273 Rings and Algebras +1201.4071 Mesoscale and Nanoscale Physics +1201.4107 Group Theory +1203.2353 Solar and Stellar Astrophysics +1203.4132 Probability +1203.6759 Soft Condensed Matter +1205.0350 Solar and Stellar Astrophysics +1205.4369 Exactly Solvable and Integrable Systems +1206.1705 Materials Science +1207.1125 +1207.3270 Artificial Intelligence +1207.6443 Phenomenology +1209.3926 Atomic Physics +1209.4784 Cryptography and Security +1209.6274 Phenomenology +1210.4215 Number Theory +1211.0322 +1211.3496 Optics +1211.3877 +1212.0403 Lattice +1212.1648 Lattice +1212.1739 +1212.2896 +1301.5689 Superconductivity +1301.6314 Learning +1301.7134 Optimization and Control +1302.5358 +1302.5621 +1302.6771 Populations and Evolution +1302.7239 Mesoscale and Nanoscale Physics +1303.0507 Mesoscale and Nanoscale Physics +1303.3609 Phenomenology +1303.4071 +1303.5598 Mesoscale and Nanoscale Physics +1303.5682 Strongly Correlated Electrons +1303.7035 Phenomenology +1304.3147 Statistical Mechanics +1304.4034 +1304.4850 Representation Theory +1304.6215 +1304.7259 +1305.0596 Computational Engineering, Finance, and Science +1305.1531 Geometric Topology +1305.2488 +1305.2909 +1305.7320 Strongly Correlated Electrons +1306.0150 Computational Engineering, Finance, and Science +1306.0878 Earth and Planetary Astrophysics +1307.0143 Mesoscale and Nanoscale Physics +1307.0602 Cosmology and Nongalactic Astrophysics +1307.0678 Cosmology and Nongalactic Astrophysics +1307.4793 Theory +1307.5071 Cosmology and Nongalactic Astrophysics +1307.5579 Solar and Stellar Astrophysics +1307.5870 Machine Learning +1307.5914 Mesoscale and Nanoscale Physics +1307.6459 Information Theory +1307.7411 Databases +1307.7794 Number Theory +1308.1322 Strongly Correlated Electrons +1308.1974 Quantum Algebra +1308.2161 Mesoscale and Nanoscale Physics +1308.2736 Combinatorics +1308.2990 Plasma Physics +1308.3047 Instrumentation and Detectors +1308.3115 Analysis of PDEs +1308.3123 Performance +1308.3211 Numerical Analysis +1308.3236 High Energy Astrophysical Phenomena +1308.3239 Information Theory +1308.3243 Multimedia +1308.3253 High Energy Astrophysical Phenomena +1308.3258 Computer Science and Game Theory +1308.3262 Combinatorics +1308.3263 Functional Analysis +1308.3272 Information Theory +1308.3273 +1308.3274 Probability +1308.3275 Quantum Gases +1308.3276 Fluid Dynamics +1308.3277 Genomics +1308.3279 Probability +1308.3281 Combinatorics +1308.3284 Algebraic Geometry +1308.3287 +1308.3288 Optics +1308.3293 Metric Geometry +1308.3294 Cryptography and Security +1308.3297 Social and Information Networks +1308.3300 Information Theory +1308.3302 Information Theory +1308.3304 Statistics Theory +1308.3308 +1308.3309 Artificial Intelligence +1308.3312 Networking and Internet Architecture +1308.3313 Analysis of PDEs +1308.3314 Machine Learning +1308.3316 Number Theory +1308.3320 Software Engineering +1308.3322 Discrete Mathematics +1308.3323 Computers and Society +1308.3324 Multiagent Systems +1308.3326 Data Structures and Algorithms +1308.3327 Mesoscale and Nanoscale Physics +1308.3328 +1308.3329 Computer Science and Game Theory +1308.3333 Plasma Physics +1308.3337 +1308.3338 Experiment +1308.3340 Physics and Society +1308.3344 Materials Science +1308.3354 Combinatorics +1308.3355 Combinatorics +1308.3357 Databases +1308.3362 Neurons and Cognition +1308.3363 Neurons and Cognition +1308.3366 Lattice +1308.3367 Materials Science +1308.3370 Computational Geometry +1308.3374 Statistics Theory +1308.3378 Pricing of Securities +1308.3380 Combinatorics +1308.3385 Combinatorics +1308.3388 Social and Information Networks +1308.3390 General Mathematics +1308.3394 Logic +1308.3396 History and Overview +1308.3399 Numerical Analysis +1308.3400 Neural and Evolutionary Computing +1308.3402 Molecular Networks +1308.3404 Differential Geometry +1308.3405 Data Structures and Algorithms +1308.3406 Lattice +1308.3407 Dynamical Systems +1308.3416 Methodology +1308.3417 Number Theory +1308.3424 Materials Science +1308.3427 Combinatorics +1308.3428 Mesoscale and Nanoscale Physics +1308.3429 Operator Algebras +1308.3432 Learning +1308.3437 Solar and Stellar Astrophysics +1308.3443 Solar and Stellar Astrophysics +1308.3447 Solar and Stellar Astrophysics +1308.3449 Soft Condensed Matter +1308.3451 Algebraic Geometry +1308.3458 Number Theory +1308.3460 Mesoscale and Nanoscale Physics +1308.3464 Mesoscale and Nanoscale Physics +1308.3465 Mesoscale and Nanoscale Physics +1308.3467 Methodology +1308.3468 Phenomenology +1308.3472 Cryptography and Security +1308.3474 Quantitative Methods +1308.3477 Experiment +1308.3479 Classical Analysis and ODEs +1308.3480 Quantum Algebra +1308.3481 Networking and Internet Architecture +1308.3482 Cryptography and Security +1308.3484 Classical Physics +1308.3485 Physics and Society +1308.3486 High Energy Astrophysical Phenomena +1308.3487 Phenomenology +math/0312404 Classical Analysis and ODEs +math/0510297 K-Theory and Homology +physics/0512107 Atomic Physics +0707.0083 Superconductivity +0708.2114 Combinatorics +0801.2130 Mesoscale and Nanoscale Physics +0803.0754 Geometric Topology +0803.1098 +0804.0308 +0808.2678 Strongly Correlated Electrons +0812.3519 Algebraic Geometry +0901.4010 Differential Geometry +0901.4315 Geometric Topology +0902.0261 Computational Complexity +0903.1170 Cosmology and Nongalactic Astrophysics +0903.1929 High Energy Astrophysical Phenomena +0904.4813 Astrophysics of Galaxies +0905.2485 Computational Complexity +0907.4520 Strongly Correlated Electrons +0908.1981 Geometric Topology +0910.1277 Strongly Correlated Electrons +0910.2798 Number Theory +0911.0092 Probability +0912.0509 Optimization and Control +0912.4035 Combinatorics +0912.4847 Astrophysics of Galaxies +1001.3285 +1002.0180 +1002.4774 Probability +1002.4848 Algebraic Geometry +1003.0754 Cosmology and Nongalactic Astrophysics +1003.4494 Geometric Topology +1004.1386 +1005.0263 Cosmology and Nongalactic Astrophysics +1005.1216 Number Theory +1005.2254 Information Theory +1005.3188 Group Theory +1005.3411 Plasma Physics +1006.3390 +1006.5308 Spectral Theory +1006.5347 Category Theory +1007.1366 Probability +1007.2284 Analysis of PDEs +1007.2864 +1007.3430 Other Condensed Matter +1007.3979 +1008.1700 Numerical Analysis +1008.2365 Combinatorics +1008.3927 Strongly Correlated Electrons +1008.4559 Classical Physics +1009.1051 Earth and Planetary Astrophysics +1009.1775 +1009.4114 Other Condensed Matter +1009.5281 Number Theory +1010.2364 Astrophysics of Galaxies +1010.2838 Phenomenology +1011.0403 Theory +1011.2432 Logic +1011.2912 Astrophysics of Galaxies +1011.3366 Analysis of PDEs +1011.3958 +1011.4426 Phenomenology +1011.5580 Phenomenology +1011.5635 Plasma Physics +1011.6250 +1011.6391 Phenomenology +1011.6480 Phenomenology +1012.0055 Phenomenology +1012.0146 Instrumentation and Methods for Astrophysics +1012.1010 Logic in Computer Science +1012.2192 Representation Theory +1012.2208 +1012.2396 Strongly Correlated Electrons +1012.5206 Probability +1012.5369 Phenomenology +1012.5669 Strongly Correlated Electrons +1012.5966 Phenomenology +1101.2107 Phenomenology +1101.2967 Phenomenology +1101.5138 Experiment +1101.5707 Probability +1102.1727 Theory +1102.2702 Information Theory +1102.2931 +1102.2963 Logic in Computer Science +1102.3179 +1102.3182 Phenomenology +1102.3876 Experiment +1102.4021 Learning +1102.5599 Systems and Control +1102.5603 Systems and Control +1103.1422 Theory +1103.1548 Superconductivity +1103.1936 Soft Condensed Matter +1103.4639 Mesoscale and Nanoscale Physics +1103.5146 Mesoscale and Nanoscale Physics +1103.5641 Materials Science +1104.0672 Instrumentation and Methods for Astrophysics +1104.1608 Statistics Theory +1104.4059 Mesoscale and Nanoscale Physics +1104.4124 Phenomenology +1105.0044 Optics +1105.0174 +1105.1284 Soft Condensed Matter +1105.1513 Molecular Networks +1105.2334 Statistical Mechanics +1105.2353 Strongly Correlated Electrons +1105.2583 Mesoscale and Nanoscale Physics +1105.2725 Logic in Computer Science +1105.3025 Phenomenology +1105.3401 Data Analysis, Statistics and Probability +1105.3490 Phenomenology +1105.3677 Theory +1105.4242 Populations and Evolution +1105.4579 +1105.4653 Geophysics +1105.5248 Phenomenology +1105.6015 Mesoscale and Nanoscale Physics +1105.6111 Theory +1106.0856 Number Theory +1106.1573 Phenomenology +1106.2116 Analysis of PDEs +1106.2162 Phenomenology +1106.2296 Number Theory +1106.3289 Superconductivity +1106.3700 Theory +1106.3866 Theory +1106.5079 Superconductivity +1106.5881 Operator Algebras +1106.6090 Cosmology and Nongalactic Astrophysics +1107.0255 Materials Science +1107.0723 Theory +1107.3449 +1107.4514 Solar and Stellar Astrophysics +1107.4721 Digital Libraries +1107.5029 Mesoscale and Nanoscale Physics +1107.5273 Optics +1107.5855 Geometric Topology +1108.0980 Materials Science +1108.2176 Superconductivity +1108.2513 Theory +1108.3902 +1108.4477 Geometric Topology +1108.5576 Functional Analysis +1108.5889 Representation Theory +1109.0489 Probability +1109.0768 Phenomenology +1109.1573 Combinatorics +1109.2449 Computer Vision and Pattern Recognition +1109.2611 Data Analysis, Statistics and Probability +1109.3159 Differential Geometry +1109.3237 General Physics +1109.3325 Complex Variables +1109.3388 High Energy Astrophysical Phenomena +1109.3439 Phenomenology +1109.3721 Plasma Physics +1109.3729 Quantum Algebra +1109.3730 Strongly Correlated Electrons +1109.3733 +1109.3737 Artificial Intelligence +1109.3740 Solar and Stellar Astrophysics +1109.3741 Combinatorics +1109.3744 Strongly Correlated Electrons +1109.3756 Geometric Topology +1109.3758 Theory +1109.3760 Rings and Algebras +1109.3761 Rings and Algebras +1109.3767 Computer Vision and Pattern Recognition +1109.3771 Rings and Algebras +1109.3775 Optics +1109.3778 Classical Analysis and ODEs +1109.3779 Atomic Physics +1109.3781 Systems and Control +1109.3792 Physics Education +1109.3793 Functional Analysis +1109.3794 Geometric Topology +1109.3795 Functional Analysis +1109.3797 Statistical Mechanics +1109.3805 Functional Analysis +1109.3806 Functional Analysis +1109.3809 Numerical Analysis +1109.3815 Superconductivity +1109.3817 Mesoscale and Nanoscale Physics +1109.3820 Theory +1109.3823 Probability +1109.3830 Numerical Analysis +1109.3832 Numerical Analysis +1109.3835 Analysis of PDEs +1109.3837 Superconductivity +1109.3840 Solar and Stellar Astrophysics +1109.3847 Combinatorics +1109.3850 Computer Vision and Pattern Recognition +1109.3857 +1109.3860 Soft Condensed Matter +1109.3862 Geometric Topology +1109.3863 Analysis of PDEs +1109.3871 +1109.3874 Statistical Mechanics +1109.3876 Information Theory +1109.3879 Theory +1109.3890 Data Structures and Algorithms +1109.3892 Representation Theory +1109.3895 Probability +1109.3896 Dynamical Systems +1109.3897 +1109.3898 Networking and Internet Architecture +1109.3902 Logic +1109.3905 +1109.3907 Probability +1109.3911 Social and Information Networks +1109.3912 Experiment +1109.3915 Probability +1109.3921 Commutative Algebra +1109.3927 Combinatorics +1109.3928 Combinatorics +1109.3929 Combinatorics +1109.3930 Combinatorics +1109.3932 Differential Geometry +1109.3933 Combinatorics +1109.3934 Data Structures and Algorithms +1109.3937 Accelerator Physics +1109.3939 Rings and Algebras +1109.3945 Cosmology and Nongalactic Astrophysics +1109.3951 Physics Education +1109.3953 Other Condensed Matter +1109.3956 Representation Theory +1109.3957 Networking and Internet Architecture +1109.3961 Mesoscale and Nanoscale Physics +1109.3966 Differential Geometry +1109.3970 Quantum Gases +1109.3972 Materials Science +1109.3974 +1109.3977 Optics +1109.3978 Superconductivity +1109.3983 Complex Variables +1109.3985 Spectral Theory +1109.3987 Distributed, Parallel, and Cluster Computing +1109.3992 Strongly Correlated Electrons +1109.3994 Information Theory +1109.3997 Distributed, Parallel, and Cluster Computing +1109.3999 Networking and Internet Architecture +1109.4008 Experiment +1109.4010 Astrophysics of Galaxies +1109.4020 Functional Analysis +1109.4025 General Mathematics +1109.4026 Materials Science +1109.4029 +1109.4034 Data Structures and Algorithms +1109.4036 Materials Science +1109.4041 Probability +1109.4047 Algebraic Geometry +1109.4048 Programming Languages +1109.4049 Analysis of PDEs +1109.4051 Solar and Stellar Astrophysics +1109.4066 +1109.4067 Commutative Algebra +1109.4068 Statistical Mechanics +1109.4070 Number Theory +1109.4075 Mesoscale and Nanoscale Physics +1109.4077 Lattice +1109.4092 Numerical Analysis +1109.4093 Operator Algebras +1109.4099 +1109.4100 Experiment +1109.4111 Soft Condensed Matter +1109.4114 Networking and Internet Architecture +1109.4115 +1109.4116 Solar and Stellar Astrophysics +1109.4118 Combinatorics +1109.4122 Combinatorics +1109.4124 Chaotic Dynamics +1109.4125 Solar and Stellar Astrophysics +1109.4133 Solar and Stellar Astrophysics +astro-ph/0511256 +astro-ph/0602431 +astro-ph/0610400 +astro-ph/0703353 +cond-mat/0607668 Materials Science +math/0610715 Dynamical Systems +math/0701109 Complex Variables +math/0701110 Algebraic Geometry +math/0702323 Differential Geometry +q-bio/0609046 Populations and Evolution +0705.3202 Representation Theory +0709.4031 Number Theory +0710.3356 Representation Theory +0712.1228 Representation Theory +0712.1702 Theory +0801.0826 Analysis of PDEs +0802.1651 Algebraic Geometry +0805.3444 Quantum Algebra +0806.0072 Algebraic Geometry +0807.3859 Category Theory +0809.2335 Probability +0811.1296 Soft Condensed Matter +0811.1785 +0811.3383 +0812.4656 Algebraic Geometry +0904.4573 Combinatorics +0905.1678 Analysis of PDEs +0906.2356 Adaptation and Self-Organizing Systems +0908.2630 Algebraic Geometry +0909.1856 General Physics +0910.1856 Group Theory +0911.1583 Computers and Society +0911.5082 Theory +0912.0554 +0912.3595 Biomolecules +1001.4553 Quantum Algebra +1001.5064 Theory +1003.2066 Algebraic Geometry +1003.4546 Discrete Mathematics +1004.4755 +1005.4150 Representation Theory +1005.4175 Theory +1005.4694 +1006.0062 Phenomenology +1006.0490 Solar and Stellar Astrophysics +1006.2641 +1007.0661 Cosmology and Nongalactic Astrophysics +1007.3285 Mesoscale and Nanoscale Physics +1007.3773 Phenomenology +1007.5086 Strongly Correlated Electrons +1008.0596 Number Theory +1008.1354 Dynamical Systems +1008.1590 Strongly Correlated Electrons +1008.1972 Soft Condensed Matter +1008.3373 Number Theory +1008.4215 Complex Variables +1009.3998 Combinatorics +1009.4274 +1009.5211 Phenomenology +1009.6187 Analysis of PDEs +1010.1964 Theory +1010.3175 Strongly Correlated Electrons +1010.3595 Strongly Correlated Electrons +1010.3716 Strongly Correlated Electrons +1010.5109 Earth and Planetary Astrophysics +1010.6172 Superconductivity +1010.6301 Theory +1011.0386 Mesoscale and Nanoscale Physics +1011.1593 Strongly Correlated Electrons +1011.1611 Algebraic Topology +1011.1795 +1011.2012 Representation Theory +1011.2250 Strongly Correlated Electrons +1011.2455 +1011.2940 Number Theory +1011.4982 Superconductivity +1011.5552 Classical Physics +1011.6548 +1011.6583 Differential Geometry +1011.6587 Astrophysics of Galaxies +1012.0892 +1012.0987 Lattice +1012.0990 Chaotic Dynamics +1012.1839 +1012.2008 Superconductivity +1012.3003 Strongly Correlated Electrons +1012.3633 +1012.3778 Theory +1101.3274 Functional Analysis +1101.4610 Optics +1101.4622 Statistical Mechanics +1101.4992 Mesoscale and Nanoscale Physics +1101.5463 Social and Information Networks +1102.0266 Solar and Stellar Astrophysics +1102.1173 Numerical Analysis +1102.1384 Neurons and Cognition +1102.1783 Data Structures and Algorithms +1102.1836 Combinatorics +1102.4016 Data Structures and Algorithms +1102.4199 Spectral Theory +1102.4531 Algebraic Geometry +1102.4776 Materials Science +1102.4925 Artificial Intelligence +1102.4926 Artificial Intelligence +1102.5033 Solar and Stellar Astrophysics +1102.5227 Optics +1103.0266 Information Theory +1103.1503 Data Structures and Algorithms +1103.1938 Materials Science +1103.2329 Superconductivity +1103.2363 Superconductivity +1103.3089 Statistics Theory +1103.3283 Quantum Algebra +1103.3316 Information Theory +1103.3893 Classical Analysis and ODEs +1103.4493 +1103.4523 High Energy Astrophysical Phenomena +1103.4965 Pricing of Securities +1103.5064 Earth and Planetary Astrophysics +1103.5079 +1103.5082 Logic in Computer Science +1103.5091 Materials Science +1103.5093 +1103.5094 Functional Analysis +1103.5100 Number Theory +1103.5101 Cosmology and Nongalactic Astrophysics +1103.5102 Data Structures and Algorithms +1103.5104 Instrumentation and Methods for Astrophysics +1103.5111 Logic +1103.5113 Rings and Algebras +1103.5115 Cryptography and Security +1103.5119 Discrete Mathematics +1103.5121 Quantum Algebra +1103.5123 Strongly Correlated Electrons +1103.5125 +1103.5128 Information Theory +1103.5138 Theory +1103.5139 Exactly Solvable and Integrable Systems +1103.5142 Information Theory +1103.5149 Group Theory +1103.5150 Populations and Evolution +1103.5151 Group Theory +1103.5153 Group Theory +1103.5155 Group Theory +1103.5156 Phenomenology +1103.5159 Group Theory +1103.5160 Group Theory +1103.5162 Digital Libraries +1103.5164 +1103.5168 Probability +1103.5172 Representation Theory +1103.5173 Geometric Topology +1103.5176 Molecular Networks +1103.5178 Methodology +1103.5181 Quantitative Methods +1103.5183 +1103.5184 +1103.5186 Probability +1103.5191 Mesoscale and Nanoscale Physics +1103.5192 Accelerator Physics +1103.5193 Dynamical Systems +1103.5197 Cryptography and Security +1103.5198 Number Theory +1103.5203 Analysis of PDEs +1103.5210 Analysis of PDEs +1103.5216 Materials Science +1103.5217 Probability +1103.5219 Information Theory +1103.5224 Statistical Mechanics +1103.5226 Cosmology and Nongalactic Astrophysics +1103.5230 Formal Languages and Automata Theory +1103.5232 Classical Analysis and ODEs +1103.5234 Classical Analysis and ODEs +1103.5247 Numerical Analysis +1103.5249 +1103.5251 Category Theory +1103.5257 Analysis of PDEs +1103.5261 Rings and Algebras +1103.5263 Metric Geometry +1103.5264 Theory +1103.5265 Cosmology and Nongalactic Astrophysics +1103.5266 Differential Geometry +1103.5268 Numerical Analysis +1103.5269 Statistical Mechanics +1103.5283 Algebraic Geometry +1103.5284 Operator Algebras +1103.5285 Functional Analysis +1103.5287 Functional Analysis +1103.5288 Functional Analysis +1103.5289 Functional Analysis +1103.5291 Probability +1103.5296 Instrumentation and Detectors +1103.5305 Differential Geometry +1103.5313 +1103.5315 +1103.5321 +1103.5322 Materials Science +1103.5323 Algebraic Geometry +1103.5337 Atomic Physics +1103.5341 +1103.5343 Theory +1103.5345 Pricing of Securities +1103.5346 General Mathematics +1103.5365 Analysis of PDEs +1103.5370 Disordered Systems and Neural Networks +1103.5373 Probability +1103.5375 Mesoscale and Nanoscale Physics +1103.5383 Complex Variables +1103.5388 Number Theory +1103.5392 Algebraic Geometry +1103.5394 Solar and Stellar Astrophysics +1103.5399 Statistics Theory +1103.5401 Cosmology and Nongalactic Astrophysics +1103.5403 Analysis of PDEs +1103.5405 Systems and Control +1103.5408 Risk Management +1103.5409 Risk Management +1103.5411 Computational Finance +1103.5412 Risk Management +1103.5414 Statistical Finance +1103.5415 Representation Theory +1103.5416 Risk Management +1103.5417 Statistical Finance +1103.5418 Risk Management +1103.5419 Lattice +1103.5420 Statistical Mechanics +1103.5424 Optics +1103.5425 Soft Condensed Matter +1103.5427 Number Theory +1103.5432 Physics Education +1103.5441 Systems and Control +1103.5444 Dynamical Systems +1103.5448 +1103.5451 Physics and Society +1103.5453 Data Structures and Algorithms +cond-mat/0508291 Mesoscale and Nanoscale Physics +cond-mat/0701367 Soft Condensed Matter +cs/0702155 Discrete Mathematics +math-ph/0607019 +math/0604103 Number Theory +0704.1851 Differential Geometry +0710.0672 Neural and Evolutionary Computing +0801.3590 Experiment +0805.3193 Theory +0812.0228 Theory +0812.0803 Analysis of PDEs +0812.1372 Theory +0812.4450 Theory +0901.3969 +0905.4355 Phenomenology +0906.0589 Differential Geometry +0906.5556 Phenomenology +0907.0248 Astrophysics of Galaxies +0908.0874 Experiment +0908.2425 Theory +0908.3059 Phenomenology +0909.0611 Computational Engineering, Finance, and Science +0909.2461 Combinatorics +0909.4443 +0910.1112 +0910.2733 Category Theory +1002.2169 Soft Condensed Matter +1003.0843 Solar and Stellar Astrophysics +1003.3170 Differential Geometry +1004.0523 +1004.0616 +1004.1479 Phenomenology +1004.3279 Superconductivity +1005.1177 Combinatorics +1005.1421 Theory +1005.2985 +1005.4786 Phenomenology +1005.5217 +1005.5663 Commutative Algebra +1006.0476 +1006.2438 Theory +1006.3459 Analysis of PDEs +1006.4519 Statistical Mechanics +1007.1497 Phenomenology +1007.1828 Atmospheric and Oceanic Physics +1007.2899 +1007.3326 Phenomenology +1007.3733 Mesoscale and Nanoscale Physics +1007.4936 Statistical Mechanics +1008.0481 Mesoscale and Nanoscale Physics +1008.0694 Soft Condensed Matter +1008.2155 Phenomenology +1008.2179 Statistical Finance +1008.3200 Phenomenology +1008.3226 Phenomenology +1008.4553 Superconductivity +1009.1485 +1009.1580 Experiment +1009.2510 Phenomenology +1009.2759 Quantum Gases +1009.3719 Probability +1009.4159 Quantum Gases +1009.6042 Phenomenology +1010.0588 +1010.1043 Atomic Physics +1010.1177 Theory +1010.2633 Phenomenology +1010.3685 Data Structures and Algorithms +1010.3849 Cosmology and Nongalactic Astrophysics +1010.4676 Soft Condensed Matter +1010.4891 Software Engineering +1010.5556 Theory +1010.5751 Phenomenology +1011.3390 Differential Geometry +1011.3942 Materials Science +1011.4711 Soft Condensed Matter +1011.4967 Quantum Gases +1012.0105 Symplectic Geometry +1012.0575 Theory +1012.1820 Soft Condensed Matter +1012.3591 Cosmology and Nongalactic Astrophysics +1012.4665 +1012.5453 Theory +1101.0345 Social and Information Networks +1101.0517 Combinatorics +1101.1726 Chemical Physics +1101.2933 Atomic Physics +1101.3247 Statistical Mechanics +1101.4083 +1101.4123 Theory +1101.5266 Phenomenology +1101.5409 Theory +1101.5839 +1101.6032 Space Physics +1102.0076 Theory +1102.0172 Phenomenology +1102.1523 Mathematical Software +1102.1813 Theory +1102.2029 +1102.3821 +1102.4678 Optics +1102.5162 +1102.5177 Materials Science +1103.1509 Analysis of PDEs +1103.2139 Algebraic Geometry +1103.2140 Algebraic Geometry +1103.2150 Atomic Physics +1103.2155 Strongly Correlated Electrons +1103.2157 Materials Science +1103.2158 Solar and Stellar Astrophysics +1103.2160 Algebraic Geometry +1103.2162 +1103.2163 Spectral Theory +1103.2168 General Physics +1103.2169 Algebraic Geometry +1103.2172 Information Theory +1103.2176 Superconductivity +1103.2179 Soft Condensed Matter +1103.2183 Dynamical Systems +1103.2184 Physics and Society +1103.2194 General Physics +1103.2195 +1103.2196 Materials Science +1103.2198 General Physics +1103.2208 Applications +1103.2209 Applications +1103.2210 Applications +1103.2213 Applications +1103.2214 Trading and Market Microstructure +1103.2222 Analysis of PDEs +1103.2224 Astrophysics of Galaxies +1103.2243 Statistical Mechanics +1103.2245 Fluid Dynamics +1103.2246 Logic in Computer Science +1103.2251 Discrete Mathematics +1103.2258 Cosmology and Nongalactic Astrophysics +1103.2262 Number Theory +1103.2264 Physics and Society +1103.2274 Classical Physics +1103.2275 Data Structures and Algorithms +1103.2279 Optics +1103.2285 Complex Variables +1103.2295 Number Theory +1103.2298 Number Theory +1103.2302 +1103.2319 Strongly Correlated Electrons +1103.2322 Probability +1103.2325 Computation and Language +1103.2331 Complex Variables +1103.2336 Operating Systems +1103.2341 Rings and Algebras +1103.2342 Artificial Intelligence +1103.2347 Complex Variables +1103.2348 Operating Systems +1103.2349 Functional Analysis +1103.2351 Computational Engineering, Finance, and Science +1103.2356 Data Analysis, Statistics and Probability +1103.2358 Geometric Topology +1103.2359 Strongly Correlated Electrons +1103.2366 Neurons and Cognition +cond-mat/0604577 Mesoscale and Nanoscale Physics +gr-qc/0702002 +hep-ex/0611043 Experiment +0706.2412 +0706.2428 Exactly Solvable and Integrable Systems +0707.4328 Combinatorics +0711.2769 Combinatorics +0806.3709 Combinatorics +0810.2560 +0901.2737 Physics and Society +0903.5127 Physics and Society +0903.5179 Combinatorics +0906.2699 +0906.4859 Algebraic Geometry +0907.2870 Number Theory +0907.2883 High Energy Astrophysical Phenomena +0908.1752 Number Theory +0909.0253 Disordered Systems and Neural Networks +0909.0307 Number Theory +0910.1914 +0910.3563 Number Theory +0910.5408 Group Theory +0911.3278 Commutative Algebra +0911.3284 Commutative Algebra +0911.3310 +0911.3495 Commutative Algebra +0912.1904 +1002.1667 +1002.3901 +1002.4839 Quantum Algebra +1003.1345 Digital Libraries +1004.1264 Other Condensed Matter +1006.4086 Dynamical Systems +1006.4151 Materials Science +1006.4453 Superconductivity +1007.2227 Chemical Physics +1007.2630 Chemical Physics +1007.2756 +1008.0301 Dynamical Systems +1008.1230 Soft Condensed Matter +1008.1718 +1008.4402 Statistical Mechanics +1008.5121 +1009.1091 Superconductivity +1009.4655 Dynamical Systems +1010.1537 Mesoscale and Nanoscale Physics +1010.4079 Cosmology and Nongalactic Astrophysics +1010.4882 Cosmology and Nongalactic Astrophysics +1010.5597 Superconductivity +1010.5830 Optics +1011.1789 Strongly Correlated Electrons +1011.3168 Machine Learning +1011.3408 Mesoscale and Nanoscale Physics +1011.3526 Phenomenology +1011.4600 Number Theory +1012.0348 Pricing of Securities +1012.4857 +1012.4901 Dynamical Systems +1101.0677 Soft Condensed Matter +1102.4060 Biological Physics +1102.4071 Plasma Physics +1102.4516 Astrophysics of Galaxies +1103.0476 Optics +1103.0704 +1103.1943 Information Theory +1103.2798 Probability +1103.3514 Algebraic Geometry +1103.3951 Phenomenology +1103.4278 Algebraic Geometry +1103.4335 Algebraic Geometry +1103.4450 +1103.4566 Data Structures and Algorithms +1103.4578 Information Theory +1103.4588 Lattice +1103.4623 Algebraic Geometry +1103.4626 Complex Variables +1103.4629 Combinatorics +1103.4633 Dynamical Systems +1103.4641 +1103.4643 Instrumentation and Methods for Astrophysics +1103.4647 Superconductivity +1103.4654 Atmospheric and Oceanic Physics +1103.4655 Algebraic Geometry +1103.4656 Theory +1103.4660 +1103.4665 Mesoscale and Nanoscale Physics +1103.4666 Mesoscale and Nanoscale Physics +1103.4667 Materials Science +1103.4669 Differential Geometry +1103.4670 Materials Science +1103.4672 Quantum Algebra +1103.4673 Materials Science +1103.4674 Geometric Topology +1103.4676 Cryptography and Security +1103.4678 Cryptography and Security +1103.4682 Functional Analysis +1103.4686 Discrete Mathematics +1103.4689 Algebraic Geometry +1103.4693 Operator Algebras +1103.4694 Logic in Computer Science +1103.4695 Geometric Topology +1103.4697 Symbolic Computation +1103.4698 Optics +1103.4705 Mesoscale and Nanoscale Physics +1103.4707 Solar and Stellar Astrophysics +1103.4711 Materials Science +1103.4712 Multimedia +1103.4717 Networking and Internet Architecture +1103.4718 +1103.4719 Instrumentation and Methods for Astrophysics +1103.4721 Rings and Algebras +1103.4727 Networking and Internet Architecture +1103.4728 Probability +1103.4729 Group Theory +1103.4730 Commutative Algebra +1103.4733 +1103.4734 Statistical Mechanics +1103.4736 Analysis of PDEs +1103.4738 Probability +1103.4740 Number Theory +1103.4744 General Topology +1103.4747 +1103.4750 Superconductivity +1103.4752 Classical Analysis and ODEs +1103.4756 Optimization and Control +1103.4760 Fluid Dynamics +1103.4766 Instrumentation and Methods for Astrophysics +1103.4767 Methodology +1103.4769 Networking and Internet Architecture +1103.4771 Optics +1103.4774 Information Theory +1103.4778 Databases +1103.4792 Materials Science +1103.4796 Analysis of PDEs +1103.4798 High Energy Astrophysical Phenomena +1103.4805 Differential Geometry +1103.4814 Classical Analysis and ODEs +1103.4816 +1103.4820 Neural and Evolutionary Computing +1103.4822 Analysis of PDEs +1103.4827 Theory +1103.4828 Numerical Analysis +1103.4833 Materials Science +1103.4837 Classical Analysis and ODEs +1103.4845 General Physics +1103.4854 Information Theory +astro-ph/0409377 +cond-mat/0510378 Disordered Systems and Neural Networks +math/0412015 Combinatorics +math/0501441 Combinatorics +math/0504195 Combinatorics +math/0504569 Combinatorics +math/0512249 Combinatorics +math/0512571 Combinatorics +math/0604407 Combinatorics +math/0605780 Algebraic Geometry +0704.0335 Probability +0705.4124 Functional Analysis +0706.2151 +0712.2378 Functional Analysis +0801.4174 History and Overview +0802.0533 History and Overview +0802.1127 Optics +0802.1966 Optics +0805.3947 Optimization and Control +0806.2604 Algebraic Geometry +0809.2166 Number Theory +0809.5184 +0810.0858 Complex Variables +0810.1555 Other Condensed Matter +0811.2052 Probability +0812.2591 Number Theory +0901.2546 +0903.3852 Computational Physics +0904.2482 Information Theory +0904.4541 Information Theory +0905.3330 Digital Libraries +0907.0060 Functional Analysis +0907.0665 Theory +0907.0767 +0907.2329 Soft Condensed Matter +0908.1032 +0908.1034 +0908.1040 +0910.5045 Analysis of PDEs +0911.1072 Information Theory +0911.3036 Mesoscale and Nanoscale Physics +0911.4529 Algebraic Geometry +0912.5489 Statistics Theory +1001.1905 Combinatorics +1002.0106 Superconductivity +1002.2398 Soft Condensed Matter +1003.1342 Algebraic Topology +1003.3313 Statistical Mechanics +1004.2533 Mesoscale and Nanoscale Physics +1004.3723 Quantum Algebra +1004.4102 Solar and Stellar Astrophysics +1005.1151 Optimization and Control +1005.1760 Statistical Finance +1005.2263 Machine Learning +1005.5076 Theory +1005.5549 Soft Condensed Matter +1006.0205 Number Theory +1006.1078 Phenomenology +1006.1728 +1006.3150 Statistical Mechanics +1006.4206 Number Theory +1007.2119 Information Theory +1007.3652 Optimization and Control +1007.4317 Cosmology and Nongalactic Astrophysics +1007.4776 K-Theory and Homology +1008.1174 Statistical Mechanics +1008.1603 +1008.2493 Superconductivity +1009.1040 Strongly Correlated Electrons +1009.1442 Cosmology and Nongalactic Astrophysics +1009.1717 +1009.2281 Analysis of PDEs +1009.3491 +1009.6121 Number Theory +1009.6141 +1010.0332 Superconductivity +1010.0941 Theory +1010.2008 Strongly Correlated Electrons +1010.3032 +1010.4431 History and Philosophy of Physics +1010.4565 Theory +1010.4840 +1010.6176 Superconductivity +1011.1221 Soft Condensed Matter +1011.4684 +1012.0196 Physics and Society +1012.0939 Mesoscale and Nanoscale Physics +1012.2309 Other Condensed Matter +1012.3604 Chaotic Dynamics +1101.1079 +1101.1386 Materials Science +1101.1634 Algebraic Topology +1101.2666 Quantum Gases +1101.4484 Quantum Algebra +1101.5270 Mesoscale and Nanoscale Physics +1101.6005 +1102.0103 Statistical Mechanics +1102.2249 Solar and Stellar Astrophysics +1102.4923 Information Theory +1102.4980 Combinatorics +1102.5475 Statistical Mechanics +1103.0792 Soft Condensed Matter +1103.1308 Optics +1103.2265 Rings and Algebras +1103.3293 Mesoscale and Nanoscale Physics +1103.3596 Information Theory +1103.3937 Group Theory +1103.4107 Theory +1103.4111 Operator Algebras +1103.5256 +1104.1216 Operator Algebras +1104.2783 History and Overview +1104.3270 Robotics +1104.3647 Functional Analysis +1105.0155 Information Theory +1105.0513 +1105.1923 Phenomenology +1105.2387 Solar and Stellar Astrophysics +1105.2967 +1105.3905 Analysis of PDEs +1105.4402 Probability +1105.4498 Phenomenology +1105.4686 Dynamical Systems +1105.4773 Differential Geometry +1105.5029 +1105.5092 Optics +1105.5115 Quantum Gases +1105.5311 Differential Geometry +1105.5425 Earth and Planetary Astrophysics +1105.5641 Distributed, Parallel, and Cluster Computing +1105.5647 Strongly Correlated Electrons +1105.5652 Discrete Mathematics +1105.5659 Analysis of PDEs +1105.5667 Artificial Intelligence +1105.5673 Representation Theory +1105.5675 Multimedia +1105.5678 Graphics +1105.5679 Probability +1105.5681 Cryptography and Security +1105.5684 Networking and Internet Architecture +1105.5685 Molecular Networks +1105.5686 Differential Geometry +1105.5689 Biological Physics +1105.5702 Materials Science +1105.5704 Combinatorics +1105.5707 Materials Science +1105.5714 Other Condensed Matter +1105.5717 Risk Management +1105.5718 Data Structures and Algorithms +1105.5722 Commutative Algebra +1105.5724 Geometric Topology +1105.5728 +1105.5730 Experiment +1105.5733 Combinatorics +1105.5735 Classical Analysis and ODEs +1105.5737 Methodology +1105.5738 Applications +1105.5743 Optimization and Control +1105.5744 Optimization and Control +1105.5755 Information Theory +1105.5762 Statistics Theory +1105.5763 Combinatorics +1105.5764 Genomics +1105.5765 Numerical Analysis +1105.5767 Mesoscale and Nanoscale Physics +1105.5779 Mesoscale and Nanoscale Physics +1105.5781 Materials Science +1105.5782 Information Theory +1105.5783 Experiment +1105.5784 Adaptation and Self-Organizing Systems +1105.5786 Number Theory +1105.5788 Spectral Theory +1105.5789 Information Retrieval +1105.5791 Mesoscale and Nanoscale Physics +1105.5792 Mesoscale and Nanoscale Physics +1105.5794 Mesoscale and Nanoscale Physics +1105.5795 Combinatorics +1105.5796 Algebraic Geometry +1105.5806 Computational Complexity +1105.5807 Differential Geometry +1105.5808 Algebraic Topology +1105.5810 Dynamical Systems +1105.5813 Experiment +1105.5817 Distributed, Parallel, and Cluster Computing +1105.5818 Instrumentation and Detectors +1105.5823 Number Theory +1105.5838 Combinatorics +1105.5839 Physics and Society +1105.5843 +1105.5844 Group Theory +1105.5847 Phenomenology +1105.5850 Computational Finance +1105.5852 Number Theory +1105.5855 +1105.5856 Chaotic Dynamics +1105.5857 +1105.5859 +1105.5861 Information Theory +1105.5867 Soft Condensed Matter +1105.5872 +1105.5875 Other Computer Science +1105.5878 Fluid Dynamics +1105.5882 Solar and Stellar Astrophysics +1105.5887 Computation +1105.5896 Superconductivity +1105.5898 Analysis of PDEs +1105.5908 Differential Geometry +1105.5911 Experiment +1105.5912 Digital Libraries +1105.5923 Phenomenology +1105.5924 Numerical Analysis +1105.5938 Classical Analysis and ODEs +1105.5939 Computational Engineering, Finance, and Science +1105.5941 Materials Science +1105.5942 Chaotic Dynamics +1105.5945 Methodology +1105.5949 Optics +1105.5951 Databases +1105.5953 Instrumentation and Methods for Astrophysics +1105.5956 Mesoscale and Nanoscale Physics +1105.5957 Experiment +1105.5961 Operator Algebras +1105.5962 +1105.5968 Experiment +1105.5986 Distributed, Parallel, and Cluster Computing +1105.5987 Classical Analysis and ODEs +1105.5988 Phenomenology +1105.5989 Number Theory +1105.5990 History and Overview +1105.5991 Instrumentation and Methods for Astrophysics +1105.5993 Cosmology and Nongalactic Astrophysics +1105.5998 Phenomenology +1105.6002 Complex Variables +1105.6006 Number Theory +1105.6007 Analysis of PDEs +1105.6014 Computer Vision and Pattern Recognition +1105.6018 Probability +1105.6020 Human-Computer Interaction +1105.6024 Networking and Internet Architecture +1105.6028 Differential Geometry +1105.6031 Statistics Theory +1105.6033 Information Theory +1105.6035 Phenomenology +1105.6038 Probability +1105.6040 Distributed, Parallel, and Cluster Computing +1105.6041 Learning +1105.6042 Complex Variables +1105.6052 Optics +1105.6053 Phenomenology +1105.6060 Computer Vision and Pattern Recognition +1105.6068 +1105.6069 Populations and Evolution +1105.6070 Phenomenology +1105.6073 Logic +1105.6079 Experiment +1105.6080 Probability +1105.6083 Number Theory +cs/0602072 Information Theory +hep-ph/0703268 Phenomenology +math/0410536 Number Theory +math/0502106 Functional Analysis +math/0504046 Functional Analysis +math/0507203 History and Overview +math/0507205 General Mathematics +math/0510327 Analysis of PDEs +math/0608298 General Mathematics +math/0610195 Logic +math/0701059 Functional Analysis +math/0701118 History and Overview +math/0701244 History and Overview +nlin/0612006 Chaotic Dynamics +0707.1317 Theory +0708.4112 Optics +0805.3679 Theory +0903.3036 Earth and Planetary Astrophysics +0906.2749 Number Theory +0906.3350 Dynamical Systems +0909.4857 Theory +1001.2006 Earth and Planetary Astrophysics +1005.0751 Optimization and Control +1005.1398 Probability +1005.3854 General Physics +1005.4617 Differential Geometry +1006.0915 Number Theory +1006.3721 Computational Physics +1006.5903 Cosmology and Nongalactic Astrophysics +1007.4652 +1008.3202 Number Theory +1008.5014 +1010.0275 +1010.4180 Phenomenology +1010.4579 Analysis of PDEs +1010.5729 Phenomenology +1010.6132 Phenomenology +1011.1372 Mesoscale and Nanoscale Physics +1011.2476 Fluid Dynamics +1012.0272 Spectral Theory +1012.2059 Strongly Correlated Electrons +1012.2076 Dynamical Systems +1012.2262 +1012.3070 Complex Variables +1101.5320 Computer Vision and Pattern Recognition +1101.5340 Chaotic Dynamics +1102.1492 Machine Learning +1102.3911 Cosmology and Nongalactic Astrophysics +1103.0444 Combinatorics +1103.0975 Analysis of PDEs +1103.1599 Mesoscale and Nanoscale Physics +1103.1656 General Physics +1103.3387 Analysis of PDEs +1103.3454 +1103.4046 Mesoscale and Nanoscale Physics +1103.4128 Atomic Physics +1103.4314 +1103.4411 +1104.0078 Statistical Mechanics +1104.0479 Analysis of PDEs +1104.1876 Functional Analysis +1104.3812 Functional Analysis +1104.3855 Phenomenology +1104.4923 Theory +1105.0161 Soft Condensed Matter +1105.1310 Statistics Theory +1105.3442 Functional Analysis +1106.1888 Theory +1106.2707 Phenomenology +1106.4008 Cosmology and Nongalactic Astrophysics +1106.4347 Phenomenology +1106.4408 Strongly Correlated Electrons +1106.4856 Combinatorics +1107.0133 Group Theory +1107.2338 Fluid Dynamics +1107.4057 Artificial Intelligence +1107.4289 Cosmology and Nongalactic Astrophysics +1107.4400 +1107.4453 Phenomenology +1108.0827 Phenomenology +1108.0875 +1108.1021 Lattice +1108.2059 Materials Science +1108.2232 Statistics Theory +1108.2453 Atomic Physics +1108.2581 Combinatorics +1108.3049 Phenomenology +1108.3484 Phenomenology +1109.0178 Fluid Dynamics +1109.0376 Optics +1109.0732 Information Retrieval +1109.0808 +1109.2149 +1109.3093 Phenomenology +1109.3996 +1109.4044 Fluid Dynamics +1109.4875 Discrete Mathematics +1109.5084 Strongly Correlated Electrons +1110.1621 Theory +1110.1860 Logic +1110.2341 Networking and Internet Architecture +1110.2592 Probability +1110.3246 Experiment +1110.3767 Computer Vision and Pattern Recognition +1110.4864 +1110.5367 +1110.5371 Social and Information Networks +1110.5470 Pattern Formation and Solitons +1110.5638 Cosmology and Nongalactic Astrophysics +1110.5642 Phenomenology +1110.5647 Experiment +1110.5649 High Energy Astrophysical Phenomena +1110.5654 Superconductivity +1110.5667 Artificial Intelligence +1110.5668 Mesoscale and Nanoscale Physics +1110.5670 Astrophysics of Galaxies +1110.5675 Geometric Topology +1110.5686 History and Overview +1110.5696 Computational Complexity +1110.5699 Solar and Stellar Astrophysics +1110.5702 Mesoscale and Nanoscale Physics +1110.5706 Functional Analysis +1110.5710 Information Theory +1110.5711 Materials Science +1110.5716 Mesoscale and Nanoscale Physics +1110.5719 Analysis of PDEs +1110.5720 Analysis of PDEs +1110.5721 +1110.5722 Information Retrieval +1110.5723 Probability +1110.5725 Solar and Stellar Astrophysics +1110.5731 Statistics Theory +1110.5733 Solar and Stellar Astrophysics +1110.5736 Combinatorics +1110.5741 Information Theory +1110.5742 Mesoscale and Nanoscale Physics +1110.5747 History and Overview +1110.5748 Optics +1110.5749 Lattice +1110.5753 Data Structures and Algorithms +1110.5754 Pattern Formation and Solitons +1110.5758 Differential Geometry +1110.5762 Robotics +1110.5770 Combinatorics +1110.5771 Statistical Mechanics +1110.5772 Combinatorics +1110.5774 Functional Analysis +1110.5777 Differential Geometry +1110.5781 Probability +1110.5783 Lattice +1110.5785 Experiment +1110.5790 +1110.5793 Operating Systems +1110.5797 Analysis of PDEs +1110.5807 Phenomenology +1110.5808 Instrumentation and Detectors +1110.5811 Mesoscale and Nanoscale Physics +1110.5815 Number Theory +1110.5816 Classical Analysis and ODEs +1110.5822 +1110.5824 Analysis of PDEs +1110.5825 Instrumentation and Methods for Astrophysics +1110.5826 Functional Analysis +1110.5828 Materials Science +1110.5830 Phenomenology +1110.5832 Other Computer Science +1110.5835 Experiment +1110.5836 +1110.5839 +1110.5841 Theory +1110.5843 Algebraic Geometry +1110.5845 Experiment +1110.5846 Pricing of Securities +1110.5847 Machine Learning +1110.5848 Rings and Algebras +1110.5849 Popular Physics +1110.5859 Phenomenology +1110.5861 High Energy Astrophysical Phenomena +1110.5866 General Physics +1110.5867 Logic in Computer Science +1110.5886 Computer Science and Game Theory +1110.5889 Computer Science and Game Theory +1110.5895 Phenomenology +1110.5897 K-Theory and Homology +hep-ph/0503113 Phenomenology +hep-th/0701080 Theory +math/0601431 Combinatorics +0705.0424 Metric Geometry +0705.3522 Quantum Algebra +0705.3653 Strongly Correlated Electrons +0705.4588 Methodology +0706.0417 Number Theory +0706.0881 Statistics Theory +0706.2955 Number Theory +0801.4234 Group Theory +0802.1916 +0802.2324 Analysis of PDEs +0804.2644 +0805.1740 Software Engineering +0806.1206 +0806.1701 +0807.0482 Complex Variables +0809.2194 Commutative Algebra +0810.1958 Analysis of PDEs +0810.4986 Combinatorics +0811.3255 +0903.2073 +0904.1351 +0904.3050 Combinatorics +0905.3508 Representation Theory +0906.0475 Differential Geometry +0906.2935 Algebraic Geometry +0906.2948 Algebraic Geometry +0908.1188 Software Engineering +0908.1580 Human-Computer Interaction +0909.2582 Algebraic Geometry +0909.3753 Logic +0910.1851 Differential Geometry +0911.2660 Number Theory +1003.1449 Cryptography and Security +1003.1477 Numerical Analysis +1003.1478 Networking and Internet Architecture +astro-ph/0501368 +astro-ph/0508152 +astro-ph/0510757 +astro-ph/0608605 +astro-ph/0609794 +astro-ph/0612774 +astro-ph/9305026 +astro-ph/9609161 +cond-mat/0405012 Materials Science +cond-mat/0508351 Materials Science +cond-mat/0511467 Strongly Correlated Electrons +cond-mat/0701471 Other Condensed Matter +cs/0412051 Robotics +cs/0701168 Databases +gr-qc/0612095 +hep-ex/0207052 Experiment +hep-ex/9712017 Experiment +hep-ex/9905018 Experiment +hep-ex/9912059 Experiment +hep-ex/9912061 Experiment +hep-lat/9205016 Lattice +hep-lat/9208018 Lattice +hep-lat/9209007 Lattice +hep-lat/9209008 Lattice +hep-ph/0511003 Phenomenology +hep-ph/9409338 Phenomenology +hep-ph/9504337 Phenomenology +hep-ph/9709270 Phenomenology +hep-ph/9906367 Phenomenology +math/0212287 Dynamical Systems +math/0311440 Dynamical Systems +math/0404023 Representation Theory +math/0405059 Analysis of PDEs +math/0406370 Classical Analysis and ODEs +math/0409047 Probability +math/0504324 Differential Geometry +math/0504542 Algebraic Geometry +math/0603450 Number Theory +math/0606615 Probability +math/0606618 Probability +math/0606620 Probability +math/0606621 Probability +math/0606622 Probability +math/0608720 Dynamical Systems +math/0609471 Algebraic Geometry +math/0609495 Differential Geometry +math/0701267 Representation Theory +math/0702131 Probability +math/0702204 Analysis of PDEs +nucl-th/0410003 +physics/0407046 Physics and Society +physics/0606167 General Physics +physics/9907029 Instrumentation and Detectors +q-bio/0508006 Quantitative Methods +quant-ph/0404110 +quant-ph/0411173 +quant-ph/0412203 +quant-ph/0509014 +quant-ph/0511224 +quant-ph/0605107 +quant-ph/0606236 +quant-ph/0703068 +0710.2008 Statistical Mechanics +0712.0969 Atomic Physics +0807.0583 +0901.1359 Medical Physics +0902.0927 +0904.4659 Algebraic Geometry +0910.2626 Digital Libraries +1001.3340 Algebraic Geometry +1003.2156 Mesoscale and Nanoscale Physics +1003.3581 Probability +1003.5650 General Finance +1004.3976 Analysis of PDEs +1006.1938 Experiment +1006.5231 +1007.5510 Computation +1008.5036 Optimization and Control +1009.2260 Computation +1009.5196 +1009.5199 +1009.5200 +1009.5201 +1009.5454 +1009.5462 +1011.4663 +1012.3508 Logic +1101.1636 +1101.4821 Algebraic Geometry +1102.1807 +1102.4476 Symplectic Geometry +1103.3898 +1103.4433 Cryptography and Security +1103.5730 Cosmology and Nongalactic Astrophysics +1104.1550 Computer Vision and Pattern Recognition +1104.3945 Cosmology and Nongalactic Astrophysics +1104.4561 Dynamical Systems +1104.5254 Experiment +1105.2201 +1105.3986 +1105.4705 Neurons and Cognition +1105.4723 Soft Condensed Matter +1106.1546 Exactly Solvable and Integrable Systems +1106.2311 Molecular Networks +1106.2685 Statistical Finance +1106.2714 Lattice +1106.4387 Probability +1106.6141 Phenomenology +1106.6337 Accelerator Physics +1107.0683 Phenomenology +1107.1174 Statistical Finance +1107.2183 Cryptography and Security +1107.2475 Medical Physics +1107.2490 Learning +1107.5696 Probability +1108.0704 Materials Science +1108.1133 Pricing of Securities +1108.1135 Statistical Mechanics +1108.1710 Materials Science +1108.3206 Robotics +1108.3576 High Energy Astrophysical Phenomena +1108.3788 Fluid Dynamics +1108.4371 Mesoscale and Nanoscale Physics +1108.5004 Optics +1108.5453 Strongly Correlated Electrons +1108.5836 +1108.6071 Materials Science +1109.3521 Strongly Correlated Electrons +1109.3574 Theory +1109.4175 Astrophysics of Galaxies +1109.6105 Probability +1109.6106 Probability +1110.0546 Superconductivity +1110.0696 Theory +1110.1833 Classical Analysis and ODEs +1110.2290 +1110.3285 Statistical Mechanics +1110.3545 Chemical Physics +1110.3673 Biological Physics +1111.1012 Optics +1111.2589 Phenomenology +1111.4169 Probability +1111.5022 Mesoscale and Nanoscale Physics +1111.5750 Physics and Society +1111.6739 Strongly Correlated Electrons +1112.0494 Atmospheric and Oceanic Physics +1112.2141 General Mathematics +1112.2322 Combinatorics +1112.2363 Biomolecules +1112.3282 +1112.4970 Combinatorics +1112.5071 Data Structures and Algorithms +1112.5176 Phenomenology +1112.5177 Analysis of PDEs +1112.5179 Theory +1112.5189 Numerical Analysis +1112.5192 Instrumentation and Methods for Astrophysics +1112.5193 Instrumentation and Methods for Astrophysics +1112.5200 Distributed, Parallel, and Cluster Computing +1112.5213 Category Theory +1112.5214 Numerical Analysis +1112.5215 Machine Learning +1112.5236 Solar and Stellar Astrophysics +1112.5238 Solar and Stellar Astrophysics +1112.5239 Cryptography and Security +1112.5241 Dynamical Systems +1112.5245 Cryptography and Security +1112.5247 Symplectic Geometry +1112.5248 Dynamical Systems +1112.5254 Mesoscale and Nanoscale Physics +1112.5258 Phenomenology +1112.5259 Lattice +1112.5261 General Topology +1112.5263 Phenomenology +1112.5265 +1112.5266 Exactly Solvable and Integrable Systems +1112.5269 +1112.5272 Symplectic Geometry +1112.5275 Soft Condensed Matter +1112.5276 Phenomenology +1112.5279 High Energy Astrophysical Phenomena +1112.5280 Lattice +1112.5283 Robotics +1112.5284 Phenomenology +1112.5286 Phenomenology +1112.5288 Geophysics +1112.5289 Probability +1112.5292 +1112.5298 Computer Vision and Pattern Recognition +1112.5305 Probability +1112.5311 Dynamical Systems +1112.5314 Information Theory +1112.5317 Phenomenology +1112.5318 +1112.5322 +1112.5324 Phenomenology +1112.5325 Category Theory +1112.5330 Probability +1112.5334 Materials Science +1112.5340 Pricing of Securities +1112.5343 High Energy Astrophysical Phenomena +1112.5345 Theory +1112.5350 Solar and Stellar Astrophysics +1112.5355 Information Retrieval +1112.5358 Soft Condensed Matter +1112.5359 Combinatorics +1112.5365 Experiment +1112.5366 +1112.5370 Artificial Intelligence +1112.5374 Geometric Topology +1112.5375 Instrumentation and Methods for Astrophysics +1112.5376 Analysis of PDEs +1112.5377 Representation Theory +1112.5383 Representation Theory +1112.5392 Biological Physics +1112.5393 Analysis of PDEs +1112.5398 Materials Science +1112.5405 Classical Physics +1112.5408 Classical Physics +1112.5409 Algebraic Topology +1112.5413 Lattice +1112.5424 Neural and Evolutionary Computing +1112.5429 Phenomenology +1112.5434 High Energy Astrophysical Phenomena +1112.5436 Pattern Formation and Solitons +1112.5439 Pattern Formation and Solitons +1112.5440 Phenomenology +1112.5444 Pattern Formation and Solitons +1112.5445 Pattern Formation and Solitons +1112.5449 Neurons and Cognition +1112.5450 Pattern Formation and Solitons +math/0406175 Commutative Algebra +math/0604617 Algebraic Geometry +quant-ph/0109037 +quant-ph/0602044 +quant-ph/0612106 +0706.3050 +0802.3512 Combinatorics +0802.3513 Computer Science and Game Theory +0804.0195 Representation Theory +0804.1777 Computer Science and Game Theory +0812.3102 Probability +0901.1444 Information Theory +0901.3293 Soft Condensed Matter +0902.2606 +0903.1265 Astrophysics of Galaxies +0905.0150 K-Theory and Homology +0912.0819 Number Theory +0912.1746 Computer Science and Game Theory +1001.4341 Data Structures and Algorithms +1003.0772 +1003.1060 Soft Condensed Matter +1004.0641 Dynamical Systems +1006.0129 K-Theory and Homology +1006.3725 Dynamical Systems +1006.4340 Soft Condensed Matter +1007.2541 Earth and Planetary Astrophysics +1008.0652 Complex Variables +1010.3420 +1011.1072 Earth and Planetary Astrophysics +1012.0444 Cosmology and Nongalactic Astrophysics +1012.2193 Analysis of PDEs +1012.3543 +1012.3910 +1012.4771 Mesoscale and Nanoscale Physics +1101.0437 Geometric Topology +1101.4254 Theory +1101.4772 Mesoscale and Nanoscale Physics +1101.5128 Dynamical Systems +1102.1651 +1102.3873 Functional Analysis +1103.0162 Strongly Correlated Electrons +1104.1611 +1104.5467 Statistical Mechanics +1105.2427 Number Theory +1106.0764 Phenomenology +1107.1918 Soft Condensed Matter +1107.3163 Theory +1107.4136 Strongly Correlated Electrons +1107.4903 Mesoscale and Nanoscale Physics +1108.0872 +1108.1399 Mesoscale and Nanoscale Physics +1108.4386 Neural and Evolutionary Computing +1108.6114 Information Theory +1109.0155 Group Theory +1109.1304 Statistical Mechanics +1110.0772 Physics Education +1110.5329 High Energy Astrophysical Phenomena +1110.6286 Strongly Correlated Electrons +1110.6666 Optimization and Control +1111.2301 Cryptography and Security +1111.3478 Phenomenology +1111.3566 Mesoscale and Nanoscale Physics +1111.5977 Quantum Gases +1112.0582 Numerical Analysis +1112.2187 Social and Information Networks +1112.3101 Analysis of PDEs +1112.3204 Phenomenology +1112.3206 Materials Science +1112.3344 Astrophysics of Galaxies +1112.3349 High Energy Astrophysical Phenomena +1112.3353 Combinatorics +1112.3357 Populations and Evolution +1112.3366 Other Computer Science +1112.3370 Populations and Evolution +1112.3375 Phenomenology +1112.3379 Phenomenology +1112.3382 +1112.3384 Representation Theory +1112.3388 Solar and Stellar Astrophysics +1112.3391 Classical Physics +1112.3395 Mesoscale and Nanoscale Physics +1112.3399 +1112.3400 Mesoscale and Nanoscale Physics +1112.3401 Probability +1112.3421 Classical Analysis and ODEs +1112.3422 Differential Geometry +1112.3431 +1112.3432 Combinatorics +1112.3435 Formal Languages and Automata Theory +1112.3439 +1112.3443 Mesoscale and Nanoscale Physics +1112.3444 Number Theory +1112.3445 Strongly Correlated Electrons +1112.3450 Statistics Theory +1112.3451 Analysis of PDEs +1112.3452 Differential Geometry +1112.3454 Phenomenology +1112.3468 Combinatorics +1112.3469 Complex Variables +1112.3477 Combinatorics +1112.3478 Phenomenology +1112.3479 K-Theory and Homology +1112.3480 Cosmology and Nongalactic Astrophysics +1112.3482 Lattice +1112.3486 Chemical Physics +1112.3496 Biological Physics +1112.3497 Instrumentation and Methods for Astrophysics +1112.3499 Instrumentation and Methods for Astrophysics +1112.3511 Accelerator Physics +1112.3514 Analysis of PDEs +1112.3518 Phenomenology +1112.3521 Phenomenology +1112.3523 Discrete Mathematics +1112.3528 Rings and Algebras +1112.3529 Populations and Evolution +1112.3531 +1112.3532 Materials Science +1112.3538 Phenomenology +1112.3540 Geometric Topology +1112.3541 Theory +1112.3542 Instrumentation and Methods for Astrophysics +1112.3550 Probability +1112.3559 Functional Analysis +1112.3574 Populations and Evolution +1112.3575 +1112.3577 Algebraic Geometry +1112.3579 Materials Science +1112.3583 Phenomenology +1112.3586 Algebraic Geometry +1112.3589 Dynamical Systems +1112.3591 Solar and Stellar Astrophysics +1112.3593 Combinatorics +1112.3599 Information Theory +1112.3600 +1112.3603 Category Theory +1112.3610 Combinatorics +1112.3617 Solar and Stellar Astrophysics +1112.3619 Representation Theory +1112.3623 Optics +1112.3624 Soft Condensed Matter +1112.3629 +1112.3630 Cosmology and Nongalactic Astrophysics +1112.3632 Superconductivity +1112.3634 Algebraic Geometry +1112.3639 Combinatorics +1112.3640 Tissues and Organs +1112.3646 Theory +1112.3651 Astrophysics of Galaxies +astro-ph/0205078 +astro-ph/0407044 +astro-ph/0408167 +math/0309148 General Mathematics +0711.1686 +0801.4636 Number Theory +0803.3848 Quantum Algebra +0804.3981 +0807.4578 Theory +0812.2200 Lattice +0901.0877 Algebraic Topology +0902.1488 Differential Geometry +0906.1816 Phenomenology +0909.1166 Analysis of PDEs +0909.2408 Information Theory +0910.0004 Cosmology and Nongalactic Astrophysics +0910.1841 Numerical Analysis +0910.3389 Mesoscale and Nanoscale Physics +0911.0316 Chaotic Dynamics +0912.1440 Information Theory +1001.0598 High Energy Astrophysical Phenomena +1001.0771 Algebraic Topology +1002.2448 Chaotic Dynamics +1003.0411 Geometric Topology +1003.5743 Mesoscale and Nanoscale Physics +1004.5227 Analysis of PDEs +1004.5521 +1005.0043 Cryptography and Security +1005.1345 Mesoscale and Nanoscale Physics +1005.5722 Symplectic Geometry +1006.0455 Rings and Algebras +1006.0681 Phenomenology +1006.1634 Statistical Mechanics +1006.3007 Phenomenology +1006.3051 +1007.0130 +1007.0757 Cosmology and Nongalactic Astrophysics +1007.1616 +1007.2221 Phenomenology +1007.2490 Theory +1007.3588 Information Theory +1007.4080 +1008.2238 Rings and Algebras +1008.3205 +1009.1841 Populations and Evolution +1009.2909 Phenomenology +1009.3925 +1009.4169 Classical Analysis and ODEs +1009.4181 Strongly Correlated Electrons +1009.5136 Theory +1010.0874 +1010.1178 +1010.2694 +1010.2930 +1010.4593 Strongly Correlated Electrons +1010.6282 Mesoscale and Nanoscale Physics +1011.0479 +1011.0483 Lattice +1011.0560 Lattice +1011.0622 Lattice +1011.0968 +1011.1197 High Energy Astrophysical Phenomena +1011.1756 Phenomenology +1011.2558 Chaotic Dynamics +1011.2864 Cosmology and Nongalactic Astrophysics +1011.3499 Theory +1011.3724 Differential Geometry +1011.4207 Phenomenology +1011.4237 Systems and Control +1011.4813 Theory +1011.5791 Representation Theory +1011.6588 Theory +1012.1326 Theory +1012.1803 +1012.1818 Theory +1012.2697 Phenomenology +1012.2905 Theory +1012.3128 Mesoscale and Nanoscale Physics +1012.3512 Theory +1012.3784 Phenomenology +1101.1894 Phenomenology +1101.2903 High Energy Astrophysical Phenomena +1101.4736 +1102.0105 Cosmology and Nongalactic Astrophysics +1102.0633 +1102.0713 Analysis of PDEs +1102.1573 +1102.1608 Cosmology and Nongalactic Astrophysics +1102.1874 +1102.1985 Social and Information Networks +1102.2140 Optics +1102.2359 Soft Condensed Matter +1102.2613 Theory +1102.2758 General Physics +1102.2848 +1102.4234 Materials Science +1102.4570 Populations and Evolution +1102.5719 +1103.0073 +1103.0075 +1103.0221 Theory +1103.2512 Cosmology and Nongalactic Astrophysics +1103.2846 Soft Condensed Matter +1103.4262 Category Theory +1103.6160 Materials Science +1103.6166 Probability +1103.6181 Probability +1103.6227 Instrumentation and Methods for Astrophysics +1104.0008 Combinatorics +1104.0013 Phenomenology +1104.0021 Populations and Evolution +1104.0022 Cosmology and Nongalactic Astrophysics +1104.0024 Strongly Correlated Electrons +1104.0028 Quantum Algebra +1104.0035 Mesoscale and Nanoscale Physics +1104.0042 Earth and Planetary Astrophysics +1104.0043 Distributed, Parallel, and Cluster Computing +1104.0058 Lattice +1104.0063 Materials Science +1104.0064 Instrumentation and Detectors +1104.0069 +1104.0073 Geometric Topology +1104.0074 Representation Theory +1104.0082 Soft Condensed Matter +1104.0085 Cryptography and Security +1104.0087 Cryptography and Security +1104.0089 Methodology +1104.0097 High Energy Astrophysical Phenomena +1104.0098 Statistics Theory +1104.0101 Experiment +1104.0102 Representation Theory +1104.0104 Solar and Stellar Astrophysics +1104.0105 +1104.0107 Solar and Stellar Astrophysics +1104.0108 Number Theory +1104.0111 Learning +1104.0114 +1104.0118 Information Theory +1104.0119 Number Theory +1104.0120 Number Theory +1104.0121 Physics and Society +1104.0122 Computational Geometry +1104.0124 Number Theory +1104.0126 Information Retrieval +1104.0128 Information Retrieval +1104.0129 Number Theory +1104.0131 Molecular Networks +1104.0134 Solar and Stellar Astrophysics +1104.0136 Information Theory +1104.0138 +1104.0142 Networking and Internet Architecture +1104.0143 Solar and Stellar Astrophysics +1104.0145 Methodology +1104.0148 Probability +1104.0157 Statistical Mechanics +1104.0161 High Energy Astrophysical Phenomena +1104.0165 Rings and Algebras +1104.0166 Statistics Theory +1104.0168 Phenomenology +1104.0174 Other Quantitative Biology +1104.0180 +1104.0187 Plasma Physics +1104.0190 Combinatorics +1104.0194 Combinatorics +1104.0198 Distributed, Parallel, and Cluster Computing +1104.0199 Mathematical Software +1104.0201 Combinatorics +1104.0209 +1104.0212 Mesoscale and Nanoscale Physics +1104.0213 Lattice +1104.0219 Logic in Computer Science +1104.0224 Information Theory +1104.0226 Group Theory +1104.0232 Analysis of PDEs +1104.0235 Learning +1104.0240 Optimization and Control +astro-ph/0002434 +astro-ph/0110677 +astro-ph/0205018 +astro-ph/0209456 +astro-ph/0411167 +astro-ph/0603547 +astro-ph/0606630 +astro-ph/0702556 +astro-ph/0702643 +astro-ph/9412091 +astro-ph/9705161 +astro-ph/9707203 +astro-ph/9712320 +astro-ph/9801275 +astro-ph/9804212 +astro-ph/9811260 +astro-ph/9901316 +astro-ph/9908098 +astro-ph/9909293 +cond-mat/0111337 Strongly Correlated Electrons +cond-mat/0311420 Strongly Correlated Electrons +gr-qc/0302121 +gr-qc/9810043 +gr-qc/9810089 +gr-qc/9810090 +gr-qc/9903097 +gr-qc/9904006 +gr-qc/9904007 +gr-qc/9905005 +gr-qc/9905006 +hep-ph/0412234 Phenomenology +hep-th/0204236 Theory +hep-th/9904079 Theory +math/0510326 Analysis of PDEs +nlin/0004041 Exactly Solvable and Integrable Systems +physics/0702152 Geophysics +q-bio/0609002 Populations and Evolution +0704.1957 +0704.2183 Probability +0704.2863 Algebraic Geometry +0704.3213 Dynamical Systems +0707.4110 Statistical Mechanics +0709.3591 Number Theory +0712.4395 Algebraic Geometry +0803.3575 Differential Geometry +0803.3723 Differential Geometry +0805.1495 Algebraic Geometry +0806.4845 Quantitative Methods +0811.4434 Optics +0902.0526 +0905.2231 Quantum Algebra +0905.4679 Logic +0905.4685 Logic +0908.3414 Differential Geometry +0909.3119 Strongly Correlated Electrons +0909.4053 Astrophysics of Galaxies +0909.5355 +0909.5613 Theory +0912.2339 Strongly Correlated Electrons +0912.2600 Strongly Correlated Electrons +1001.0125 Combinatorics +1002.1902 +1003.4948 Number Theory +1004.5152 Earth and Planetary Astrophysics +1005.2252 Dynamical Systems +1006.0750 +1006.1952 Probability +1006.2410 Lattice +1006.3196 Statistical Mechanics +1006.4817 General Physics +1006.5269 Physics and Society +1007.4183 +1007.4308 Instrumentation and Methods for Astrophysics +1007.5069 Differential Geometry +1008.0056 Materials Science +1008.1446 General Physics +1008.1636 Methodology +1008.3853 +1009.0917 General Physics +1009.5204 Algebraic Geometry +1010.0488 +1010.4762 Solar and Stellar Astrophysics +1011.0315 Combinatorics +1011.5788 Combinatorics +1012.6028 Phenomenology +1101.0161 General Physics +1101.0567 General Physics +1101.0989 Experiment +1101.1002 Spectral Theory +1101.1083 Theory +1101.1090 Physics Education +1101.1101 Theory +1101.1106 Atomic and Molecular Clusters +1101.1108 Combinatorics +1101.1113 Group Theory +1101.1131 Differential Geometry +1101.1132 Classical Analysis and ODEs +1101.1144 Differential Geometry +1101.1148 General Finance +1101.1149 Probability +1101.1154 Applications +1101.1159 Differential Geometry +1101.1161 Probability +1101.1163 Applications +1101.1164 Applications +1101.1165 Physics and Society +1101.1166 Algebraic Geometry +1101.1169 Computational Complexity +1101.1171 Functional Analysis +1101.1176 Probability +1101.1178 Mesoscale and Nanoscale Physics +1101.1184 Analysis of PDEs +1101.1191 Analysis of PDEs +1101.1203 Applications +1101.1210 Applications +1101.1211 Soft Condensed Matter +1101.1215 Algebraic Topology +1101.1216 History and Philosophy of Physics +1101.1218 Numerical Analysis +1101.1224 Numerical Analysis +1101.1225 General Physics +1101.1231 Numerical Analysis +1101.1232 Information Theory +1101.1235 Operator Algebras +1101.1237 Networking and Internet Architecture +1101.1240 Graphics +1101.1243 +1101.1249 General Physics +1101.1251 Complex Variables +1101.1256 Data Structures and Algorithms +1101.1257 Instrumentation and Detectors +1101.1266 Data Structures and Algorithms +1101.1288 Group Theory +1101.1292 +math-ph/0311019 +math/0512544 Probability +math/0702156 Analysis of PDEs +0709.0883 Computational Complexity +0809.0088 Combinatorics +0907.1097 Cosmology and Nongalactic Astrophysics +0907.2284 Differential Geometry +0908.0447 Classical Analysis and ODEs +0911.4147 Number Theory +0911.5020 Quantum Gases +1001.1698 Adaptation and Self-Organizing Systems +1004.1956 Data Structures and Algorithms +1005.0225 Mesoscale and Nanoscale Physics +1005.5365 Lattice +1007.0228 +1007.0866 Theory +1007.2134 Phenomenology +1008.1891 Pattern Formation and Solitons +1008.2121 Logic in Computer Science +1008.2431 Quantum Gases +1008.3780 Phenomenology +1009.0143 Formal Languages and Automata Theory +1009.0216 Discrete Mathematics +1009.5847 Rings and Algebras +1010.1640 Theory +1010.2142 Mesoscale and Nanoscale Physics +1010.3222 Quantum Gases +1010.5881 Data Structures and Algorithms +1011.0397 Computer Science and Game Theory +1011.2848 Statistical Mechanics +1011.3600 +1011.4172 Superconductivity +1011.4515 Lattice +1011.4853 Phenomenology +1011.6067 Mesoscale and Nanoscale Physics +1012.0334 Quantum Gases +1012.2330 Mesoscale and Nanoscale Physics +1012.5649 Neurons and Cognition +1101.2748 History and Philosophy of Physics +1102.1277 Mesoscale and Nanoscale Physics +1102.1421 Strongly Correlated Electrons +1102.1435 Strongly Correlated Electrons +1102.1946 Theory +1102.2121 Atomic Physics +1102.3566 Theory +1102.4249 Phenomenology +1102.4327 Algebraic Geometry +1103.0007 Cosmology and Nongalactic Astrophysics +1103.1193 Solar and Stellar Astrophysics +1103.1722 +1103.3589 +1103.3856 Strongly Correlated Electrons +1103.5694 Superconductivity +1104.2889 +1104.3158 Combinatorics +1105.0020 Phenomenology +1105.0633 +1105.2056 Instrumentation and Detectors +1105.3864 Networking and Internet Architecture +1105.5195 +1106.2603 Data Structures and Algorithms +1106.2909 +1106.4324 Theory +1106.4706 Mesoscale and Nanoscale Physics +1106.4901 Experiment +1107.0595 Complex Variables +1107.1102 Mesoscale and Nanoscale Physics +1107.1188 Quantum Gases +1107.1382 Optimization and Control +1107.1506 Rings and Algebras +1107.1519 Materials Science +1107.1521 +1107.1522 Algebraic Geometry +1107.1524 Geometric Topology +1107.1525 Information Theory +1107.1532 Probability +1107.1533 Probability +1107.1536 Probability +1107.1537 High Energy Astrophysical Phenomena +1107.1543 Algebraic Geometry +1107.1545 Applications +1107.1547 Computation +1107.1548 Methodology +1107.1550 Materials Science +1107.1551 General Physics +1107.1560 Optics +1107.1563 Information Theory +1107.1571 Analysis of PDEs +1107.1577 Genomics +1107.1580 Optimization and Control +1107.1585 Data Structures and Algorithms +1107.1591 +1107.1593 High Energy Astrophysical Phenomena +1107.1595 Analysis of PDEs +1107.1602 Theory +1107.1610 Phenomenology +1107.1615 Phenomenology +1107.1619 Soft Condensed Matter +1107.1627 Information Theory +1107.1628 Data Structures and Algorithms +1107.1633 Networking and Internet Architecture +1107.1636 Differential Geometry +1107.1638 Information Theory +1107.1642 Information Theory +1107.1644 Computer Vision and Pattern Recognition +1107.1645 Geometric Topology +1107.1646 Geometric Topology +1107.1651 Probability +1107.1662 Disordered Systems and Neural Networks +1107.1663 Discrete Mathematics +1107.1667 Logic +1107.1676 Digital Libraries +1107.1681 Cosmology and Nongalactic Astrophysics +1107.1685 Category Theory +1107.1686 Artificial Intelligence +1107.1687 Complex Variables +1107.1692 Logic +1107.1693 Logic +1107.1694 Complex Variables +1107.1695 Information Theory +1107.1699 Differential Geometry +1107.1700 Functional Analysis +1107.1705 Differential Geometry +1107.1707 Group Theory +math/0508307 Algebraic Geometry +math/0508308 Algebraic Geometry +math/0610303 Algebraic Geometry +0706.0290 Number Theory +0706.0292 Number Theory +0709.0292 +0801.2770 +0812.0330 Number Theory +0906.3724 Combinatorics +0906.4350 Cosmology and Nongalactic Astrophysics +0906.4613 Materials Science +0909.3295 Mesoscale and Nanoscale Physics +0911.0096 Superconductivity +1001.4860 +1002.2845 Statistics Theory +1003.5881 Analysis of PDEs +1004.0538 Mesoscale and Nanoscale Physics +1004.1850 Probability +1004.5386 Cosmology and Nongalactic Astrophysics +1005.1036 Machine Learning +1005.1642 Cosmology and Nongalactic Astrophysics +1005.3921 Cosmology and Nongalactic Astrophysics +1006.0294 Strongly Correlated Electrons +1006.0295 Strongly Correlated Electrons +1006.0591 Strongly Correlated Electrons +1006.0613 Algebraic Topology +1006.1548 Information Theory +1006.2861 Analysis of PDEs +1007.2840 Cosmology and Nongalactic Astrophysics +1007.3068 Statistical Mechanics +1008.3428 Probability +1008.4111 Mesoscale and Nanoscale Physics +1009.1719 +1010.4769 Probability +1011.2403 Lattice +1011.3486 Classical Analysis and ODEs +1011.4105 Combinatorics +1011.5127 Mesoscale and Nanoscale Physics +1012.0182 Differential Geometry +1012.1977 +1012.2858 Databases +1012.3690 +1012.5647 Category Theory +1101.0380 Disordered Systems and Neural Networks +1101.1289 Phenomenology +1101.4702 Dynamical Systems +1102.0228 Probability +1102.3348 Astrophysics of Galaxies +1102.3900 Risk Management +1102.4891 Numerical Analysis +1102.5351 Number Theory +1103.0761 +1103.1931 Superconductivity +1103.2136 Theory +1103.2190 Mesoscale and Nanoscale Physics +1103.3216 Digital Libraries +1103.4704 Mesoscale and Nanoscale Physics +1103.5749 Cosmology and Nongalactic Astrophysics +1103.6175 Cosmology and Nongalactic Astrophysics +1104.0890 Quantum Gases +1104.1241 Mesoscale and Nanoscale Physics +1104.1462 Analysis of PDEs +1104.2207 Mesoscale and Nanoscale Physics +1105.0134 Mesoscale and Nanoscale Physics +1105.1551 Number Theory +1105.4407 General Physics +1105.4557 Solar and Stellar Astrophysics +1105.6004 Representation Theory +1106.0352 Superconductivity +1106.0606 Materials Science +1106.4612 +1106.4633 Combinatorics +1106.4989 Probability +1106.5040 Trading and Market Microstructure +1106.5052 Cosmology and Nongalactic Astrophysics +1106.5138 Analysis of PDEs +1106.5157 Phenomenology +1106.5246 +1106.5476 Analysis of PDEs +1106.5517 Algebraic Geometry +1106.5518 Instrumentation and Detectors +1106.5522 Combinatorics +1106.5524 Physics and Society +1106.5525 Materials Science +1106.5527 Analysis of PDEs +1106.5531 Statistics Theory +1106.5544 Classical Analysis and ODEs +1106.5551 Robotics +1106.5554 Mesoscale and Nanoscale Physics +1106.5560 +1106.5564 Phenomenology +1106.5565 Mesoscale and Nanoscale Physics +1106.5568 Information Retrieval +1106.5569 Computer Vision and Pattern Recognition +1106.5570 Distributed, Parallel, and Cluster Computing +1106.5571 Computer Vision and Pattern Recognition +1106.5574 Computational Physics +1106.5576 Distributed, Parallel, and Cluster Computing +1106.5577 +1106.5580 Phenomenology +1106.5584 Number Theory +1106.5586 Number Theory +1106.5588 Soft Condensed Matter +1106.5589 Combinatorics +1106.5591 Combinatorics +1106.5597 Analysis of PDEs +1106.5598 Other Statistics +1106.5600 Algebraic Geometry +1106.5603 Analysis of PDEs +1106.5606 Optics +1106.5610 Materials Science +1106.5622 Logic in Computer Science +1106.5624 Statistical Mechanics +1106.5631 Mesoscale and Nanoscale Physics +1106.5632 Solar and Stellar Astrophysics +1106.5634 Geometric Topology +1106.5636 Algebraic Geometry +1106.5640 Superconductivity +1106.5641 Fluid Dynamics +1106.5644 Instrumentation and Methods for Astrophysics +1106.5646 Combinatorics +1106.5648 Information Theory +1106.5650 Algebraic Topology +1106.5661 Theory +1106.5663 Strongly Correlated Electrons +1106.5666 Complex Variables +1106.5669 +1106.5670 Functional Analysis +1106.5675 Information Theory +1106.5678 Neurons and Cognition +1106.5680 Probability +1106.5681 Phenomenology +1106.5683 Information Theory +1106.5686 Commutative Algebra +1106.5691 History and Overview +1106.5692 Probability +1106.5700 Logic in Computer Science +1106.5703 Probability +1106.5705 Mesoscale and Nanoscale Physics +1106.5709 +1106.5716 +1106.5728 +1106.5732 Algebraic Geometry +1106.5735 Algebraic Geometry +1106.5736 Data Structures and Algorithms +1106.5737 Computer Vision and Pattern Recognition +1106.5739 Phenomenology +1106.5747 Rings and Algebras +1106.5749 Number Theory +1106.5750 Analysis of PDEs +1106.5752 +1106.5755 Dynamical Systems +1106.5757 Quantum Gases +1106.5774 Spectral Theory +1106.5779 Methodology +cond-mat/0612233 Strongly Correlated Electrons +math/0606650 Statistics Theory +0704.3256 Algebraic Geometry +0708.0662 +0708.3309 Geometric Topology +0709.0187 +0710.0049 Algebraic Geometry +0805.4774 +0808.2631 Theory +0808.4118 Number Theory +0809.3437 +0809.4627 Computation +0811.1199 +0812.2472 +0812.3466 Theory +0903.0165 High Energy Astrophysical Phenomena +0903.4698 Cosmology and Nongalactic Astrophysics +0904.0222 +0904.1556 Theory +0904.4720 +0905.4689 Phenomenology +0906.1434 +0907.0839 +0908.2158 Phenomenology +0909.3483 High Energy Astrophysical Phenomena +0909.5480 Quantum Algebra +0910.0777 Data Structures and Algorithms +0910.3029 Phenomenology +0911.3782 Probability +0912.1466 Statistical Mechanics +0912.4756 Representation Theory +0912.4801 +1001.0496 Mesoscale and Nanoscale Physics +1001.0733 Quantum Algebra +1001.2124 Complex Variables +1002.3022 +1002.3658 Combinatorics +1003.0466 Computers and Society +1003.1111 Differential Geometry +1003.2326 Number Theory +1003.4017 Combinatorics +1003.5006 +1004.0733 +1004.1563 General Mathematics +1005.2235 +1005.2829 Phenomenology +1005.3315 +1005.4614 Phenomenology +1006.1986 Theory +1006.5541 +1006.5684 Differential Geometry +1006.5893 +1007.0285 Lattice +1007.0816 Theory +1007.1160 High Energy Astrophysical Phenomena +1007.2334 Soft Condensed Matter +1007.4383 Commutative Algebra +1007.5267 Populations and Evolution +1008.0402 Solar and Stellar Astrophysics +1008.1170 +1008.4771 Phenomenology +1008.5337 +1009.1090 +1009.1534 Atomic Physics +1009.4887 Theory +1010.0218 Solar and Stellar Astrophysics +1010.1939 Theory +1010.3046 +1010.4013 +1010.4418 Theory +1011.0134 General Physics +1011.0543 Theory +1011.1153 Theory +1011.1783 Programming Languages +1011.3029 +1011.4445 Physics and Society +1011.4538 +1011.4634 +1011.5692 +1011.5745 Theory +1011.5826 +1011.5904 +1011.6176 +1011.6223 Programming Languages +1011.6608 +1011.6657 Phenomenology +1012.0907 +1012.1053 Phenomenology +1012.1232 Phenomenology +1012.1530 Phenomenology +1012.1568 Theory +1012.1571 Theory +1012.2958 Cosmology and Nongalactic Astrophysics +1012.3159 +1012.4438 Complex Variables +1012.4460 Phenomenology +1012.4731 Theory +1012.5110 +1012.5276 Mesoscale and Nanoscale Physics +1012.5574 Quantum Algebra +1012.5807 Theory +1101.0163 Theory +1101.2919 Strongly Correlated Electrons +1101.4406 Theory +1101.4710 Theory +1101.4913 +1101.5615 Strongly Correlated Electrons +1102.1814 Number Theory +1102.2447 Materials Science +1102.2923 Phenomenology +1102.3051 Fluid Dynamics +1102.3142 +1102.3612 +1102.4947 Populations and Evolution +1103.1063 Dynamical Systems +1103.2149 +1103.2931 Mesoscale and Nanoscale Physics +1103.4350 Phenomenology +1103.4481 Solar and Stellar Astrophysics +1103.4530 Theory +1103.5307 Phenomenology +1104.0271 Optics +1104.1038 Data Analysis, Statistics and Probability +1104.1205 +1104.1687 +1104.1707 Emerging Technologies +1104.1787 Theory +1104.1873 +1104.2694 Optics +1104.5637 Disordered Systems and Neural Networks +1105.0459 +1105.0778 Soft Condensed Matter +1105.1165 +1105.1579 +1105.1596 Superconductivity +1105.1761 Phenomenology +1105.1771 Mesoscale and Nanoscale Physics +1105.2347 Strongly Correlated Electrons +1105.2684 Solar and Stellar Astrophysics +1105.2802 +1105.3090 +1105.3258 +1105.3607 +1105.3983 Statistical Mechanics +1105.5006 Phenomenology +1105.6271 History and Philosophy of Physics +1106.0822 Quantum Gases +1106.1140 Algebraic Geometry +1106.1847 Theory +1106.2015 Probability +1106.2266 Theory +1106.3106 +1106.3846 Strongly Correlated Electrons +1106.4035 Group Theory +1106.4246 Number Theory +1106.5444 Classical Analysis and ODEs +1106.5934 High Energy Astrophysical Phenomena +1107.1211 Cosmology and Nongalactic Astrophysics +1107.1228 Phenomenology +1107.1432 +1107.1746 Differential Geometry +1107.2300 Soft Condensed Matter +1107.2588 Phenomenology +1107.2658 Theory +1107.2673 Cosmology and Nongalactic Astrophysics +1107.3496 Experiment +1107.3565 Theory +1107.5144 Optics +1107.5471 Statistical Mechanics +1107.5811 Statistical Mechanics +1108.2103 Analysis of PDEs +1108.2272 Strongly Correlated Electrons +1108.3580 Number Theory +1108.4915 Combinatorics +1108.5071 Differential Geometry +1108.6166 Soft Condensed Matter +1109.0244 Group Theory +1109.0256 General Physics +1109.1056 Combinatorics +1109.1534 Theory +1109.2128 Computation and Language +1109.2781 Experiment +1109.2946 Dynamical Systems +1109.3200 Theory +1109.4747 Experiment +1109.4787 +1109.4995 +1109.5247 Experiment +1109.5337 Phenomenology +1109.5344 +1109.5534 Computational Complexity +1109.5646 Experiment +1109.5689 Dynamical Systems +1109.5711 Artificial Intelligence +1109.5712 Multiagent Systems +1109.5713 Artificial Intelligence +1109.5714 Artificial Intelligence +1109.5716 Artificial Intelligence +1109.5717 Artificial Intelligence +1109.5723 Mesoscale and Nanoscale Physics +1109.5730 Computer Vision and Pattern Recognition +1109.5731 Mesoscale and Nanoscale Physics +1109.5732 Artificial Intelligence +1109.5733 Algebraic Geometry +1109.5736 Functional Analysis +1109.5740 Number Theory +1109.5741 Statistical Mechanics +1109.5742 Geometric Topology +1109.5745 +1109.5747 +1109.5750 Artificial Intelligence +1109.5751 Probability +1109.5755 Numerical Analysis +1109.5758 Solar and Stellar Astrophysics +1109.5761 Group Theory +1109.5768 Solar and Stellar Astrophysics +1109.5770 Distributed, Parallel, and Cluster Computing +1109.5778 +1109.5781 Statistical Mechanics +1109.5786 Biological Physics +1109.5790 Information Theory +1109.5792 +1109.5795 Analysis of PDEs +1109.5799 Solar and Stellar Astrophysics +1109.5803 Operator Algebras +1109.5805 High Energy Astrophysical Phenomena +1109.5808 Differential Geometry +1109.5809 Optics +1109.5812 Probability +1109.5814 Phenomenology +1109.5831 Solar and Stellar Astrophysics +1109.5833 Solar and Stellar Astrophysics +1109.5835 Phenomenology +1109.5854 Representation Theory +1109.5857 Theory +1109.5864 Phenomenology +1109.5865 Solar and Stellar Astrophysics +1109.5866 High Energy Astrophysical Phenomena +1109.5871 High Energy Astrophysical Phenomena +1109.5874 Functional Analysis +1109.5876 Sound +1109.5880 Probability +1109.5882 Complex Variables +1109.5884 Mesoscale and Nanoscale Physics +1109.5891 High Energy Astrophysical Phenomena +1109.5893 Emerging Technologies +1109.5903 Earth and Planetary Astrophysics +1109.5905 Atomic Physics +1109.5913 Numerical Analysis +1109.5918 Earth and Planetary Astrophysics +1109.5920 Artificial Intelligence +1109.5922 Phenomenology +1109.5925 Instrumentation and Detectors +1109.5926 Algebraic Geometry +1109.5931 Data Structures and Algorithms +1109.5935 High Energy Astrophysical Phenomena +1109.5939 Solar and Stellar Astrophysics +1109.5940 Mesoscale and Nanoscale Physics +1109.5942 Solar and Stellar Astrophysics +1109.5953 Classical Physics +1109.5954 Theory +1109.5964 High Energy Astrophysical Phenomena +1109.5965 Complex Variables +1109.5968 Operator Algebras +1109.5970 Soft Condensed Matter +1109.5974 Lattice +1109.5978 Materials Science +1109.5982 Numerical Analysis +1109.5984 +1109.5991 Quantum Algebra +1109.5992 Phenomenology +1109.6001 Number Theory +cond-mat/0510761 Superconductivity +hep-th/9907189 Theory +math/0105155 Rings and Algebras +math/0607003 Algebraic Geometry +math/0608463 Algebraic Geometry +quant-ph/0101006 +0709.2960 Theory +0807.0258 Classical Analysis and ODEs +0808.3148 Soft Condensed Matter +0809.4652 Statistical Mechanics +0811.3949 Mesoscale and Nanoscale Physics +0812.0431 Dynamical Systems +0812.0618 +0812.3965 Probability +0901.2065 Phenomenology +0903.0498 Probability +0903.3134 +0903.4157 Quantum Algebra +0905.2783 Soft Condensed Matter +0905.3282 Probability +0907.5165 Information Theory +0909.3307 Theory +1001.4668 +1003.2461 Analysis of PDEs +1003.4999 Complex Variables +1003.5077 Geometric Topology +1004.3569 +1004.4406 Superconductivity +1005.1756 Experiment +1005.2111 Theory +1005.2240 Theory +1006.2150 Strongly Correlated Electrons +1006.3103 +1006.3130 +1007.1293 Theory +1008.0391 Phenomenology +1008.1635 Data Analysis, Statistics and Probability +1008.2487 Phenomenology +1008.2578 Phenomenology +1009.0551 Materials Science +1009.2850 Quantum Algebra +1009.3091 +1010.0345 Theory +1010.0993 Theory +1010.2285 Information Theory +1011.3068 Mesoscale and Nanoscale Physics +1012.2475 Theory +1012.3174 +1012.4957 Quantum Gases +1012.5183 +1101.0386 +1101.1219 Metric Geometry +1101.3192 Representation Theory +1101.3524 +1101.4576 Mesoscale and Nanoscale Physics +1101.4687 +1101.5190 +1101.5748 +1101.6028 +1102.0429 Algebraic Geometry +1102.1040 Theory +1102.1598 General Physics +1102.3492 Lattice +1102.3716 Strongly Correlated Electrons +1102.4882 Quantum Algebra +1102.5252 +1102.5288 Machine Learning +1102.5506 Mesoscale and Nanoscale Physics +1102.5740 Theory +1103.0290 +1103.0619 Lattice +1103.0631 Phenomenology +1103.1328 Cosmology and Nongalactic Astrophysics +1103.1713 +1103.1827 Phenomenology +1103.1967 Strongly Correlated Electrons +1103.4061 Group Theory +1103.4468 Lattice +1103.5809 Commutative Algebra +1103.5831 Instrumentation and Detectors +1104.0150 Superconductivity +1104.0998 Phenomenology +1104.1092 Mesoscale and Nanoscale Physics +1104.1235 +1104.1754 Phenomenology +1104.4434 +1104.4459 +1105.1263 Quantum Gases +1105.1276 Materials Science +1105.1656 +1105.2469 Strongly Correlated Electrons +1105.3871 Analysis of PDEs +1105.3893 General Physics +1105.3987 Superconductivity +1105.4591 +1105.4688 Molecular Networks +1106.0440 +1106.1945 Lattice +1106.2182 Phenomenology +1106.2851 +1106.3570 Solar and Stellar Astrophysics +1106.3792 Materials Science +1106.6100 Theory +1107.0162 Mesoscale and Nanoscale Physics +1107.5726 Representation Theory +1107.5968 Systems and Control +1108.0709 History and Philosophy of Physics +1108.1847 Classical Analysis and ODEs +1108.2726 Analysis of PDEs +1108.3171 Materials Science +1108.4589 Popular Physics +1108.4863 Astrophysics of Galaxies +1108.6270 Phenomenology +1109.1227 General Topology +1109.1693 Data Structures and Algorithms +1109.1816 Analysis of PDEs +1109.1818 +1109.1836 Analysis of PDEs +1109.1837 Analysis of PDEs +1109.1840 Statistical Mechanics +1109.1841 Digital Libraries +1109.1842 +1109.1843 Networking and Internet Architecture +1109.1863 Operator Algebras +1109.1864 Accelerator Physics +1109.1865 Computer Vision and Pattern Recognition +1109.1870 Phenomenology +1109.1872 Mesoscale and Nanoscale Physics +1109.1877 Cryptography and Security +1109.1878 Differential Geometry +1109.1879 Multiagent Systems +1109.1880 Probability +1109.1882 Symplectic Geometry +1109.1886 Instrumentation and Methods for Astrophysics +1109.1890 Superconductivity +1109.1891 Software Engineering +1109.1892 +1109.1894 +1109.1895 Information Theory +1109.1896 Experiment +1109.1897 Numerical Analysis +1109.1898 Medical Physics +1109.1903 Numerical Analysis +1109.1904 Numerical Analysis +1109.1905 Programming Languages +1109.1907 Numerical Analysis +1109.1908 Numerical Analysis +1109.1910 Analysis of PDEs +1109.1911 Rings and Algebras +1109.1915 Classical Physics +1109.1917 +1109.1920 Computational Physics +1109.1922 Artificial Intelligence +1109.1924 Materials Science +1109.1925 +1109.1928 +1109.1929 Analysis of PDEs +1109.1931 Dynamical Systems +1109.1932 Molecular Networks +1109.1933 +1109.1934 Molecular Networks +1109.1935 Analysis of PDEs +1109.1944 Experiment +1109.1945 Combinatorics +1109.1947 Quantum Algebra +1109.1954 +1109.1956 Accelerator Physics +1109.1964 Differential Geometry +1109.1965 Materials Science +1109.1967 Cosmology and Nongalactic Astrophysics +1109.1975 High Energy Astrophysical Phenomena +1109.1976 Functional Analysis +1109.1982 Instrumentation and Detectors +1109.1987 Atomic Physics +1109.1989 Information Retrieval +1109.1991 Information Retrieval +1109.1992 Optics +1109.1999 Solar and Stellar Astrophysics +1109.2003 Experiment +1109.2005 Numerical Analysis +1109.2009 General Physics +1109.2010 General Physics +1109.2011 Superconductivity +1109.2012 +1109.2015 Logic in Computer Science +1109.2020 Group Theory +1109.2023 Data Analysis, Statistics and Probability +1109.2027 Classical Analysis and ODEs +1109.2030 Functional Analysis +1109.2040 Category Theory +1109.2047 Learning +1109.2048 Artificial Intelligence +1109.2049 Artificial Intelligence +1109.2057 Quantitative Methods +1109.2058 Digital Libraries +1109.2066 Cryptography and Security +1109.2067 Computer Science and Game Theory +1109.2076 Physics and Society +1109.2083 Neurons and Cognition +1109.2087 Strongly Correlated Electrons +1109.2088 Learning +1109.2091 Category Theory +1109.2098 History and Overview +1109.2099 Optics +1109.2101 Mesoscale and Nanoscale Physics +1109.2102 Accelerator Physics +1109.2103 +1109.2104 Spectral Theory +1109.2106 Group Theory +1109.2107 Representation Theory +cond-mat/0603141 Mesoscale and Nanoscale Physics +cond-mat/0608615 Mesoscale and Nanoscale Physics +gr-qc/0011097 +hep-ex/9905038 Experiment +hep-lat/9405012 Lattice +hep-ph/0201307 Phenomenology +hep-ph/0207059 Phenomenology +hep-ph/0311093 Phenomenology +hep-ph/9708487 Phenomenology +math/0305372 Dynamical Systems +math/0504208 Dynamical Systems +nucl-ex/0004001 +nucl-ex/0007010 +nucl-ex/0010008 +nucl-ex/0301016 +nucl-ex/0301018 +nucl-ex/9512002 +nucl-ex/9708005 +0706.4157 Probability +0707.3504 Probability +0709.1339 +0709.1369 Complex Variables +0806.0490 Probability +0810.1994 Probability +0810.5412 Lattice +0811.0462 Fluid Dynamics +0811.0624 Other Condensed Matter +0812.1655 Probability +0901.2016 Fluid Dynamics +0904.1119 Classical Analysis and ODEs +0904.1441 Complex Variables +0905.0379 Fluid Dynamics +0905.1621 +0906.0250 Quantum Gases +0909.3294 Lattice +0911.5699 Strongly Correlated Electrons +0912.0816 Fluid Dynamics +0912.4466 Statistical Mechanics +1001.1523 Mesoscale and Nanoscale Physics +1001.3413 Combinatorics +1001.4203 Metric Geometry +1002.1339 Fluid Dynamics +1002.3899 Fluid Dynamics +1003.0356 Combinatorics +1005.0689 Analysis of PDEs +1006.0803 Analysis of PDEs +1006.1856 +1007.0598 General Physics +1007.1940 Superconductivity +1008.0564 +1008.4098 Atomic Physics +1008.4521 Quantum Gases +1009.0865 +1009.1249 +1009.1338 Group Theory +1010.4510 Strongly Correlated Electrons +1011.1819 General Physics +1011.2603 Statistical Mechanics +1011.5873 Solar and Stellar Astrophysics +1012.5156 Quantum Gases +1101.0696 Quantum Gases +1102.0882 +1102.1463 +1102.2307 Fluid Dynamics +1102.3945 Quantum Gases +1103.0117 +1103.5073 Strongly Correlated Electrons +1103.5360 Theory +1103.6023 Strongly Correlated Electrons +1104.1801 Statistics Theory +1105.0353 Quantum Gases +1105.1189 Quantum Gases +1105.1262 Mesoscale and Nanoscale Physics +1105.1855 +1105.3027 Superconductivity +1106.1672 General Topology +1106.1871 +1106.1874 Phenomenology +1106.1932 Phenomenology +1106.3005 Populations and Evolution +1106.3015 Atmospheric and Oceanic Physics +1106.4163 Statistical Mechanics +1106.4297 Mesoscale and Nanoscale Physics +1107.0786 Analysis of PDEs +1107.1761 +1107.2701 Mesoscale and Nanoscale Physics +1107.4484 Functional Analysis +1107.5308 Theory +1108.1533 Superconductivity +1108.1670 Superconductivity +1108.3413 Data Structures and Algorithms +1108.3862 Strongly Correlated Electrons +1108.3866 Atomic Physics +1108.4573 High Energy Astrophysical Phenomena +1108.4595 Solar and Stellar Astrophysics +1108.5770 Quantum Gases +1108.6009 Phenomenology +1109.0772 Theory +1109.0803 +1109.3001 Theory +1109.4826 Plasma Physics +1109.5560 Physics and Society +1109.5616 Strongly Correlated Electrons +1109.6864 Fluid Dynamics +1109.6865 Fluid Dynamics +1109.6866 Fluid Dynamics +1109.6867 Fluid Dynamics +1110.0488 Theory +1110.1200 Phenomenology +1110.1828 +1110.3065 Disordered Systems and Neural Networks +1110.4080 Commutative Algebra +1110.4492 +1111.0341 Astrophysics of Galaxies +1111.0887 Strongly Correlated Electrons +1111.2029 Soft Condensed Matter +1111.2111 Data Structures and Algorithms +1111.5059 Lattice +1111.6400 Solar and Stellar Astrophysics +1111.7295 Databases +1112.0037 Solar and Stellar Astrophysics +1112.0090 Materials Science +1112.0318 High Energy Astrophysical Phenomena +1112.0329 Instrumentation and Methods for Astrophysics +1112.0343 Databases +1112.0344 Logic +1112.0345 Experiment +1112.0346 Number Theory +1112.0347 Logic in Computer Science +1112.0348 Optimization and Control +1112.0349 Logic +1112.0352 Algebraic Geometry +1112.0353 General Physics +1112.0356 Phenomenology +1112.0357 +1112.0363 +1112.0364 Lattice +1112.0369 Experiment +1112.0373 +1112.0377 Lattice +1112.0383 Information Theory +1112.0384 Distributed, Parallel, and Cluster Computing +1112.0390 Mesoscale and Nanoscale Physics +1112.0393 Networking and Internet Architecture +1112.0396 Computation and Language +1112.0401 Solar and Stellar Astrophysics +1112.0402 Numerical Analysis +1112.0403 Solar and Stellar Astrophysics +1112.0410 Combinatorics +1112.0423 Popular Physics +1112.0427 Logic in Computer Science +1112.0429 Strongly Correlated Electrons +1112.0433 Numerical Analysis +1112.0438 Cosmology and Nongalactic Astrophysics +1112.0439 Cosmology and Nongalactic Astrophysics +1112.0444 Operator Algebras +1112.0449 Group Theory +1112.0451 Experiment +1112.0452 Classical Analysis and ODEs +1112.0453 Mesoscale and Nanoscale Physics +1112.0455 Differential Geometry +1112.0463 Machine Learning +1112.0464 Quantitative Methods +1112.0471 Geometric Topology +1112.0473 Lattice +1112.0476 Analysis of PDEs +1112.0486 Classical Analysis and ODEs +1112.0508 Artificial Intelligence +1112.0510 Probability +1112.0525 Exactly Solvable and Integrable Systems +1112.0533 Astrophysics of Galaxies +1112.0534 Data Structures and Algorithms +1112.0537 Lattice +1112.0539 Information Theory +1112.0541 Complex Variables +1112.0544 Algebraic Geometry +1112.0546 Lattice +1112.0547 Numerical Analysis +1112.0549 General Mathematics +1112.0553 Accelerator Physics +1112.0559 +cs/0702028 Artificial Intelligence +physics/0101013 General Physics +0704.2110 Superconductivity +0705.3598 Probability +0706.3210 Other Condensed Matter +0709.2755 General Mathematics +0806.0844 Materials Science +0807.2294 Algebraic Geometry +0807.2806 +0811.0632 Materials Science +0901.3479 Other Condensed Matter +0903.1450 Computer Science and Game Theory +0903.3453 Representation Theory +0903.4765 Mesoscale and Nanoscale Physics +0905.3876 Differential Geometry +0907.1170 Theory +0907.5094 Statistical Mechanics +0908.1656 Superconductivity +0908.1813 Materials Science +0908.3447 Chaotic Dynamics +0909.1500 Materials Science +0909.2677 Probability +0909.4460 Quantum Algebra +0910.0271 Materials Science +0910.2960 Number Theory +0911.2037 Differential Geometry +0911.3519 +0911.3890 Phenomenology +0912.0704 Theory +0912.2338 Cosmology and Nongalactic Astrophysics +0912.4700 Mesoscale and Nanoscale Physics +1001.0178 +1001.0376 Exactly Solvable and Integrable Systems +1001.0885 Soft Condensed Matter +1001.1148 Strongly Correlated Electrons +1001.1827 +1001.2656 +1001.3722 +1001.4695 Classical Analysis and ODEs +1002.0153 Analysis of PDEs +1002.1610 Combinatorics +1002.2951 High Energy Astrophysical Phenomena +1003.5037 Theory +1004.0720 Functional Analysis +1004.4207 Experiment +1004.4524 Materials Science +1004.4929 Symplectic Geometry +1004.5477 Phenomenology +1005.0278 Materials Science +1005.0380 Cosmology and Nongalactic Astrophysics +1005.0571 Phenomenology +1005.2587 Theory +1005.3261 Theory +1005.4099 Differential Geometry +1005.4580 Combinatorics +1005.5668 Strongly Correlated Electrons +1006.0366 +1006.1479 +1006.2455 General Physics +1006.3471 Superconductivity +1006.3860 +1006.4308 Computational Physics +1006.5192 Strongly Correlated Electrons +1007.0202 Materials Science +1007.0287 Materials Science +1007.0729 Lattice +1007.1578 Differential Geometry +1007.1913 Phenomenology +1007.2190 Phenomenology +1007.2291 Phenomenology +1007.2433 Superconductivity +1007.2704 +1007.3844 Strongly Correlated Electrons +1007.3920 +1007.4727 Strongly Correlated Electrons +1007.5006 Strongly Correlated Electrons +1008.0245 Phenomenology +1008.1593 Phenomenology +1008.1877 Theory +1008.3327 Theory +1008.3669 +1008.4963 Materials Science +1008.5197 +1009.0195 Theory +1009.2450 Phenomenology +1009.3062 Theory +1009.3490 Strongly Correlated Electrons +1009.4357 Solar and Stellar Astrophysics +1009.4439 Theory +1009.4749 Phenomenology +1009.4803 Phenomenology +1009.5066 Phenomenology +1009.5320 Phenomenology +1009.6000 Theory +1010.1334 Phenomenology +1010.1667 Phenomenology +1010.1745 Analysis of PDEs +1010.2107 Computational Physics +1010.3050 Dynamical Systems +1010.5081 Computer Science and Game Theory +1010.5853 Differential Geometry +1010.5910 Strongly Correlated Electrons +1011.0959 +1011.2365 Functional Analysis +1011.2372 Functional Analysis +1011.3090 Machine Learning +1011.4178 Complex Variables +1011.5172 Chaotic Dynamics +1012.5965 +1101.0636 Superconductivity +1101.0864 Cosmology and Nongalactic Astrophysics +1101.3980 Theory +1101.5423 Phenomenology +1102.0588 Data Structures and Algorithms +1102.1392 Materials Science +1102.3657 Representation Theory +1102.4155 Algebraic Topology +1102.4324 +1102.4721 Theory +1102.5426 Phenomenology +1102.5500 Computers and Society +1102.5556 +1102.5559 Information Theory +1103.0112 Accelerator Physics +1103.0275 Solar and Stellar Astrophysics +1103.0291 Mesoscale and Nanoscale Physics +1103.0294 Superconductivity +1103.0297 Earth and Planetary Astrophysics +1103.0305 Information Theory +1103.0307 Cosmology and Nongalactic Astrophysics +1103.0308 Probability +1103.0309 Probability +1103.0311 Information Theory +1103.0316 Functional Analysis +1103.0317 Information Theory +1103.0318 Data Structures and Algorithms +1103.0326 Information Theory +1103.0330 Earth and Planetary Astrophysics +1103.0331 Combinatorics +1103.0332 Plasma Physics +1103.0333 Dynamical Systems +1103.0336 Functional Analysis +1103.0337 Data Structures and Algorithms +1103.0338 Theory +1103.0339 General Physics +1103.0349 +1103.0351 Probability +1103.0354 Data Analysis, Statistics and Probability +1103.0356 Representation Theory +1103.0358 Information Theory +1103.0359 Classical Analysis and ODEs +1103.0365 Computation +1103.0366 Functional Analysis +1103.0369 +1103.0371 Probability +1103.0373 Solar and Stellar Astrophysics +1103.0377 Applications +1103.0379 Earth and Planetary Astrophysics +1103.0384 Earth and Planetary Astrophysics +1103.0387 +1103.0389 General Physics +1103.0398 Learning +1103.0403 Physics and Society +1103.0405 Human-Computer Interaction +1103.0408 Mesoscale and Nanoscale Physics +1103.0414 Optimization and Control +1103.0415 Numerical Analysis +1103.0418 +1103.0420 General Physics +1103.0421 Earth and Planetary Astrophysics +1103.0424 Superconductivity +1103.0429 Analysis of PDEs +1103.0443 Dynamical Systems +1103.0450 Cosmology and Nongalactic Astrophysics +1103.0451 Neurons and Cognition +1103.0455 Astrophysics of Galaxies +1103.0456 Analysis of PDEs +1103.0458 Solar and Stellar Astrophysics +1103.0461 Information Theory +1103.0464 Cryptography and Security +1103.0469 Statistical Mechanics +1103.0470 Rings and Algebras +1103.0478 Theory +1103.0487 Geometric Topology +1103.0491 Numerical Analysis +1103.0495 Numerical Analysis +1103.0497 Mesoscale and Nanoscale Physics +1103.0499 Theory +1103.0502 Information Theory +1103.0503 Combinatorics +1103.0505 Information Theory +1103.0509 Instrumentation and Methods for Astrophysics +1103.0516 Combinatorics +1103.0525 Cosmology and Nongalactic Astrophysics +1103.0530 Dynamical Systems +1103.0531 High Energy Astrophysical Phenomena +1103.0532 +1103.0533 Probability +1103.0534 Data Structures and Algorithms +1103.0537 +1103.0540 Computer Vision and Pattern Recognition +1103.0545 Functional Analysis +astro-ph/0212312 +astro-ph/9706028 +cond-mat/0409118 Strongly Correlated Electrons +cond-mat/0506389 Materials Science +cond-mat/0511042 Materials Science +math/0209119 Geometric Topology +math/0306325 Geometric Topology +math/0405211 K-Theory and Homology +math/0408243 K-Theory and Homology +math/0601736 K-Theory and Homology +math/0603413 Logic +math/0703879 K-Theory and Homology +nucl-th/0412099 +nucl-th/0604028 +1103.1482 Digital Libraries +0704.1889 Strongly Correlated Electrons +0705.4322 Other Condensed Matter +0706.3417 Other Condensed Matter +0707.1751 Strongly Correlated Electrons +0707.2625 Strongly Correlated Electrons +0710.5226 Functional Analysis +0803.1077 Algebraic Geometry +0804.1429 Superconductivity +0805.0545 Algebraic Geometry +0806.1571 General Mathematics +0807.0830 Strongly Correlated Electrons +0808.1900 Other Condensed Matter +0808.2082 Differential Geometry +0809.3458 General Mathematics +0811.3117 Algebraic Geometry +0811.3568 Metric Geometry +0812.1673 Group Theory +0812.3422 Complex Variables +0901.0341 +0901.0345 Classical Analysis and ODEs +0902.2731 Functional Analysis +0903.2407 Lattice +0904.0354 Mesoscale and Nanoscale Physics +0904.3567 Functional Analysis +0904.4716 +0906.4155 General Mathematics +0907.1965 Populations and Evolution +0908.0924 Phenomenology +0908.1398 Earth and Planetary Astrophysics +0908.2349 Theory +0909.1730 Quantum Algebra +0909.3976 Sound +0910.0999 Algebraic Geometry +0911.5359 Optics +0912.2737 +0912.3950 Other Condensed Matter +0912.5162 Algebraic Geometry +1001.0053 Dynamical Systems +1001.1890 Optimization and Control +1001.2760 Strongly Correlated Electrons +1001.4148 +1002.0918 Geometric Topology +1003.2005 Optimization and Control +1003.4771 Probability +1004.5396 Phenomenology +1005.0130 General Physics +1005.2077 Differential Geometry +1005.2778 Algebraic Geometry +1005.3246 Differential Geometry +1005.3364 Algebraic Geometry +1006.4864 Probability +1007.1389 +1007.3146 Analysis of PDEs +1007.3597 Superconductivity +1008.1161 Materials Science +1008.1373 Materials Science +1008.5342 Complex Variables +1009.0178 Algebraic Geometry +1009.0270 Phenomenology +1009.0944 Analysis of PDEs +1009.1640 Superconductivity +1009.2423 +1009.5484 Phenomenology +1009.5577 Algebraic Geometry +1010.0896 Commutative Algebra +1010.3098 Strongly Correlated Electrons +1010.4060 Algebraic Geometry +1010.4550 Phenomenology +1010.5482 Strongly Correlated Electrons +1010.5960 Mesoscale and Nanoscale Physics +1011.0562 Analysis of PDEs +1011.3022 +1011.4652 Metric Geometry +1011.5538 Optics +1011.5804 +1011.5982 Astrophysics of Galaxies +1011.6294 Dynamical Systems +1012.0943 Probability +1012.1668 Group Theory +1012.2341 Representation Theory +1012.5190 Theory +1012.5289 Phenomenology +1101.0097 Number Theory +1101.0404 +1101.0976 Optics +1101.1577 Information Theory +1101.2891 Theory +1101.2902 Phenomenology +1101.3208 Differential Geometry +1102.0244 Dynamical Systems +1102.1717 Algebraic Geometry +1102.1781 +1102.1838 +1102.2071 +1102.2487 Analysis of PDEs +1102.4509 Theory +1102.4886 Mesoscale and Nanoscale Physics +1103.0273 Theory +1103.0435 Functional Analysis +1103.1049 Metric Geometry +1103.2543 Number Theory +1103.2612 Systems and Control +1103.5684 Phenomenology +1103.5691 +1103.6078 +1103.6251 Materials Science +1104.1871 Quantum Gases +1104.2508 Phenomenology +1104.2846 Theory +1104.2908 Theory +1104.3021 Theory +1104.3286 Phenomenology +1104.4261 Combinatorics +1104.4395 Probability +1104.4656 Discrete Mathematics +1104.4691 +1104.5651 Phenomenology +1104.5703 Soft Condensed Matter +1105.0241 Phenomenology +1105.0315 Mesoscale and Nanoscale Physics +1105.0424 Phenomenology +1105.0735 Phenomenology +1105.1856 +1105.2299 Theory +1105.2498 +1105.2836 Theory +1105.2842 Phenomenology +1105.3887 Phenomenology +1105.4248 +1105.4907 Disordered Systems and Neural Networks +1105.5103 +1105.6091 Theory +1105.6246 Soft Condensed Matter +1106.0836 +1106.1424 Systems and Control +1106.1614 Phenomenology +1106.1671 Theory +1106.1734 Phenomenology +1106.1831 Other Condensed Matter +1106.1947 Mesoscale and Nanoscale Physics +1106.2177 +1106.2230 Phenomenology +1106.2582 Optics +1106.2951 Materials Science +1106.4351 Numerical Analysis +1106.4439 Strongly Correlated Electrons +1106.4475 Databases +1106.6208 Phenomenology +1106.6312 Algebraic Geometry +1107.0481 Mesoscale and Nanoscale Physics +1107.1473 Phenomenology +1107.3167 Phenomenology +1107.3416 Cosmology and Nongalactic Astrophysics +1107.3486 Phenomenology +1107.3572 Phenomenology +1107.4766 Phenomenology +1107.4840 Strongly Correlated Electrons +1107.5332 Phenomenology +1107.5752 Computation and Language +1107.5819 Cosmology and Nongalactic Astrophysics +1108.2715 Number Theory +1108.2822 Social and Information Networks +1108.2977 Spectral Theory +1108.3007 Materials Science +1108.5501 Strongly Correlated Electrons +1108.5822 Numerical Analysis +1109.0029 Genomics +1109.0156 Cosmology and Nongalactic Astrophysics +1109.0487 Cosmology and Nongalactic Astrophysics +1109.0767 +1109.1185 Theory +1109.1475 Phenomenology +1109.1661 Cosmology and Nongalactic Astrophysics +1109.2033 Strongly Correlated Electrons +1109.2086 Experiment +1109.2092 Experiment +1109.2114 Computers and Society +1109.2127 Artificial Intelligence +1109.2129 Multiagent Systems +1109.2130 Computation and Language +1109.2131 Artificial Intelligence +1109.2132 Multiagent Systems +1109.2134 Artificial Intelligence +1109.2135 Artificial Intelligence +1109.2136 Computation and Language +1109.2137 Artificial Intelligence +1109.2138 Artificial Intelligence +1109.2139 Artificial Intelligence +1109.2140 Artificial Intelligence +1109.2141 Learning +1109.2142 Artificial Intelligence +1109.2143 Artificial Intelligence +1109.2144 Experiment +1109.2145 Artificial Intelligence +1109.2146 Neural and Evolutionary Computing +1109.2147 Learning +1109.2148 Artificial Intelligence +1109.2151 Strongly Correlated Electrons +1109.2153 Artificial Intelligence +1109.2154 Artificial Intelligence +1109.2155 Artificial Intelligence +1109.2156 Artificial Intelligence +1109.2157 Probability +1109.2158 Computational Geometry +1109.2161 Geometric Topology +1109.2162 Computational Complexity +1109.2166 Dynamical Systems +1109.2169 Computer Science and Game Theory +1109.2172 Representation Theory +1109.2173 Algebraic Geometry +1109.2174 Combinatorics +1109.2176 Computational Complexity +1109.2184 Analysis of PDEs +1109.2191 Cellular Automata and Lattice Gases +1109.2193 Combinatorics +1109.2195 Combinatorics +1109.2200 Differential Geometry +1109.2202 +1109.2205 Experiment +1109.2206 Accelerator Physics +1109.2208 Number Theory +1109.2209 Populations and Evolution +1109.2218 Fluid Dynamics +1109.2219 Cosmology and Nongalactic Astrophysics +1109.2221 +1109.2222 Logic in Computer Science +1109.2229 Data Structures and Algorithms +1109.2230 Astrophysics of Galaxies +1109.2234 +1109.2237 Information Theory +1109.2241 Optics +1109.2244 High Energy Astrophysical Phenomena +1109.2245 High Energy Astrophysical Phenomena +1109.2247 Logic in Computer Science +1109.2248 Functional Analysis +1109.2252 Materials Science +1109.2257 Materials Science +1109.2258 Cosmology and Nongalactic Astrophysics +1109.2259 +1109.2265 Algebraic Geometry +1109.2272 Physics and Society +1109.2274 Number Theory +1109.2278 Theory +1109.2280 Combinatorics +1109.2281 Differential Geometry +1109.2282 Cryptography and Security +1109.2283 Logic +1109.2284 Astrophysics of Galaxies +1109.2285 Networking and Internet Architecture +1109.2288 Robotics +1109.2291 Discrete Mathematics +1109.2293 Computers and Society +1109.2296 Learning +1109.2297 Networking and Internet Architecture +1109.2309 Operator Algebras +1109.2310 +1109.2311 Superconductivity +1109.2316 Probability +1109.2318 Cosmology and Nongalactic Astrophysics +1109.2319 Probability +1109.2321 Information Retrieval +1109.2322 +1109.2325 Multimedia +1109.2327 General Finance +1109.2331 Theory +1109.2337 Algebraic Geometry +1109.2339 Classical Analysis and ODEs +1109.2343 Differential Geometry +1109.2345 Numerical Analysis +1109.2346 Artificial Intelligence +1109.2347 Artificial Intelligence +1109.2348 Data Structures and Algorithms +1109.2349 Dynamical Systems +1109.2355 Artificial Intelligence +1109.2365 Commutative Algebra +1109.2370 Solar and Stellar Astrophysics +1109.2373 Solar and Stellar Astrophysics +1109.2374 History and Philosophy of Physics +1109.2378 Machine Learning +1109.2383 Algebraic Geometry +1109.2388 Learning +1109.2389 Computer Vision and Pattern Recognition +1109.2390 Representation Theory +1109.2392 Phenomenology +1109.2394 Numerical Analysis +1109.2396 Number Theory +1109.2399 Logic in Computer Science +1109.2405 Programming Languages +1109.2413 Analysis of PDEs +1109.2417 Social and Information Networks +1109.2418 Social and Information Networks +1109.2425 Distributed, Parallel, and Cluster Computing +1109.2427 Databases +1109.2430 Networking and Internet Architecture +1109.2432 Soft Condensed Matter +1109.2434 Logic in Computer Science +1109.2435 Theory +1109.2437 Probability +1109.2439 Algebraic Geometry +1109.2440 Number Theory +1109.2444 Phenomenology +1109.2446 Experiment +1109.2452 Quantum Algebra +1109.2457 Experiment +1109.2459 Fluid Dynamics +1109.2463 Commutative Algebra +1109.2465 Mesoscale and Nanoscale Physics +1109.2467 Other Condensed Matter +1109.2469 Rings and Algebras +1109.2475 Popular Physics +1109.2478 Quantum Algebra +1109.2492 +1109.2493 Cosmology and Nongalactic Astrophysics +1109.2497 Earth and Planetary Astrophysics +1109.2498 Differential Geometry +1109.2499 Social and Information Networks +1109.2504 Differential Geometry +1109.2505 Earth and Planetary Astrophysics +1109.2508 +1109.2509 Medical Physics +1109.2511 Chaotic Dynamics +1109.2512 Representation Theory +1109.2521 Phenomenology +1109.2527 Applications +1109.2529 Cosmology and Nongalactic Astrophysics +1109.2532 Superconductivity +1109.2534 Number Theory +1109.2540 Phenomenology +1109.2543 Information Theory +1109.2548 Programming Languages +1109.2555 Combinatorics +1109.2559 Physics Education +1109.2564 Phenomenology +1109.2571 Combinatorics +1109.2580 Analysis of PDEs +1109.2582 Instrumentation and Detectors +astro-ph/0111438 +astro-ph/0209232 +astro-ph/0305390 +astro-ph/0310308 +astro-ph/0311430 +astro-ph/0311586 +astro-ph/0410470 +astro-ph/0411754 +astro-ph/0603022 +astro-ph/9708109 +cond-mat/0309329 Soft Condensed Matter +cond-mat/0402383 Soft Condensed Matter +cond-mat/0404274 Superconductivity +cond-mat/0408104 Statistical Mechanics +cond-mat/0411090 Superconductivity +cond-mat/0502087 Other Condensed Matter +cond-mat/0504394 Soft Condensed Matter +cond-mat/0505689 Superconductivity +cond-mat/0508603 Superconductivity +cond-mat/0510647 Superconductivity +cond-mat/0512596 Strongly Correlated Electrons +cond-mat/0604469 Strongly Correlated Electrons +cond-mat/0605039 Strongly Correlated Electrons +cond-mat/0605684 Strongly Correlated Electrons +cond-mat/0608454 Superconductivity +cond-mat/0608662 Strongly Correlated Electrons +cond-mat/0610006 Strongly Correlated Electrons +cond-mat/0610274 Strongly Correlated Electrons +cond-mat/0611104 Superconductivity +cond-mat/0612103 Strongly Correlated Electrons +cond-mat/0612268 Strongly Correlated Electrons +cs/0512024 Information Theory +gr-qc/0003086 +gr-qc/0005053 +gr-qc/0006097 +gr-qc/0012027 +gr-qc/0203054 +gr-qc/0212002 +gr-qc/0304025 +gr-qc/0304027 +gr-qc/0308021 +gr-qc/0310096 +gr-qc/0407046 +gr-qc/0410017 +gr-qc/0604119 +gr-qc/9909006 +gr-qc/9910016 +gr-qc/9912028 +hep-ex/0012044 Experiment +hep-ex/0202042 Experiment +hep-ex/0306034 Experiment +hep-ex/0309012 Experiment +hep-ex/0309023 Experiment +hep-ex/0309061 Experiment +hep-ex/0310005 Experiment +hep-ex/0310016 Experiment +hep-ex/0310036 Experiment +hep-ex/0310038 Experiment +hep-ex/0310040 Experiment +hep-ex/0310056 Experiment +hep-ex/0310062 Experiment +hep-ex/0310063 Experiment +hep-ex/0311010 Experiment +hep-ex/0311014 Experiment +hep-ex/0311025 Experiment +hep-ex/0311047 Experiment +hep-ex/0312053 Experiment +hep-ex/0312062 Experiment +hep-ex/0401007 Experiment +hep-ex/0402016 Experiment +hep-ex/0402032 Experiment +hep-ex/0403013 Experiment +hep-ex/0403015 Experiment +hep-ex/0405053 Experiment +hep-ex/0406037 Experiment +hep-ex/0407040 Experiment +hep-ex/0410011 Experiment +hep-ex/9803016 Experiment +hep-ex/9901012 Experiment +hep-ex/9905007 Experiment +hep-lat/0105014 Lattice +hep-lat/0109029 Lattice +hep-lat/0208051 Lattice +hep-lat/0211003 Lattice +hep-lat/0410031 Lattice +hep-lat/0503001 Lattice +hep-lat/0512035 Lattice +hep-lat/9703004 Lattice +hep-lat/9707023 Lattice +hep-lat/9707025 Lattice +hep-lat/9807023 Lattice +hep-lat/9809054 Lattice +hep-lat/9811031 Lattice +hep-lat/9902030 Lattice +hep-lat/9907015 Lattice +hep-lat/9908042 Lattice +hep-ph/0001038 Phenomenology +hep-ph/0001048 Phenomenology +hep-ph/0001080 Phenomenology +hep-ph/0001120 Phenomenology +hep-ph/0001259 Phenomenology +hep-ph/0001268 Phenomenology +hep-ph/0002069 Phenomenology +hep-ph/0002072 Phenomenology +hep-ph/0002103 Phenomenology +hep-ph/0002134 Phenomenology +hep-ph/0002138 Phenomenology +hep-ph/0002251 Phenomenology +hep-ph/0002298 Phenomenology +hep-ph/0002299 Phenomenology +hep-ph/0003022 Phenomenology +hep-ph/0003030 Phenomenology +hep-ph/0003031 Phenomenology +hep-ph/0003050 Phenomenology +hep-ph/0003079 Phenomenology +hep-ph/0003229 Phenomenology +hep-ph/0003257 Phenomenology +hep-ph/0004038 Phenomenology +hep-ph/0004112 Phenomenology +hep-ph/0005075 Phenomenology +hep-ph/0005218 Phenomenology +hep-ph/0005318 Phenomenology +hep-ph/0006011 Phenomenology +hep-ph/0006133 Phenomenology +hep-ph/0006135 Phenomenology +hep-ph/0007084 Phenomenology +hep-ph/0007097 Phenomenology +hep-ph/0007099 Phenomenology +hep-ph/0007101 Phenomenology +hep-ph/0007183 Phenomenology +hep-ph/0007187 Phenomenology +hep-ph/0007189 Phenomenology +hep-ph/0008168 Phenomenology +hep-ph/0010201 Phenomenology +hep-ph/0011058 Phenomenology +hep-ph/0011145 Phenomenology +hep-ph/0011188 Phenomenology +hep-ph/0011238 Phenomenology +hep-ph/0012113 Phenomenology +hep-ph/0101292 Phenomenology +hep-ph/0102240 Phenomenology +hep-ph/0103155 Phenomenology +hep-ph/0105121 Phenomenology +hep-ph/0105209 Phenomenology +hep-ph/0105277 Phenomenology +hep-ph/0105302 Phenomenology +hep-ph/0106047 Phenomenology +hep-ph/0107041 Phenomenology +hep-ph/0107080 Phenomenology +hep-ph/0107114 Phenomenology +hep-ph/0107135 Phenomenology +hep-ph/0107154 Phenomenology +hep-ph/0107224 Phenomenology +hep-ph/0107234 Phenomenology +hep-ph/0107262 Phenomenology +hep-ph/0107282 Phenomenology +hep-ph/0108055 Phenomenology +hep-ph/0108059 Phenomenology +hep-ph/0108077 Phenomenology +hep-ph/0108117 Phenomenology +hep-ph/0108220 Phenomenology +hep-ph/0108221 Phenomenology +hep-ph/0108239 Phenomenology +hep-ph/0108245 Phenomenology +hep-ph/0109037 Phenomenology +hep-ph/0109047 Phenomenology +hep-ph/0109160 Phenomenology +hep-ph/0109167 Phenomenology +hep-ph/0109271 Phenomenology +hep-ph/0109290 Phenomenology +hep-ph/0110063 Phenomenology +hep-ph/0110120 Phenomenology +hep-ph/0110184 Phenomenology +hep-ph/0110208 Phenomenology +hep-ph/0110213 Phenomenology +hep-ph/0110225 Phenomenology +hep-ph/0110237 Phenomenology +hep-ph/0110312 Phenomenology +hep-ph/0110344 Phenomenology +hep-ph/0110371 Phenomenology +hep-ph/0110400 Phenomenology +hep-ph/0111022 Phenomenology +hep-ph/0111046 Phenomenology +hep-ph/0111087 Phenomenology +hep-ph/0111162 Phenomenology +hep-ph/0111182 Phenomenology +hep-ph/0111206 Phenomenology +hep-ph/0111212 Phenomenology +hep-ph/0111242 Phenomenology +hep-ph/0111267 Phenomenology +hep-ph/0111472 Phenomenology +hep-ph/0112079 Phenomenology +hep-ph/0112110 Phenomenology +hep-ph/0112127 Phenomenology +hep-ph/0112166 Phenomenology +hep-ph/0112184 Phenomenology +hep-ph/0112193 Phenomenology +hep-ph/0112219 Phenomenology +hep-ph/0112231 Phenomenology +hep-ph/0112237 Phenomenology +hep-ph/0112256 Phenomenology +hep-ph/0112258 Phenomenology +hep-ph/0112268 Phenomenology +hep-ph/0112283 Phenomenology +hep-ph/0201282 Phenomenology +hep-ph/0201301 Phenomenology +hep-ph/0201306 Phenomenology +hep-ph/0202108 Phenomenology +hep-ph/0202114 Phenomenology +hep-ph/0202121 Phenomenology +hep-ph/0202127 Phenomenology +hep-ph/0202201 Phenomenology +hep-ph/0202223 Phenomenology +hep-ph/0202232 Phenomenology +hep-ph/0202254 Phenomenology +hep-ph/0203022 Phenomenology +hep-ph/0203025 Phenomenology +hep-ph/0203075 Phenomenology +hep-ph/0203093 Phenomenology +hep-ph/0203122 Phenomenology +hep-ph/0203124 Phenomenology +hep-ph/0203148 Phenomenology +hep-ph/0203159 Phenomenology +hep-ph/0203175 Phenomenology +hep-ph/0203251 Phenomenology +hep-ph/0203260 Phenomenology +hep-ph/0203269 Phenomenology +hep-ph/0204156 Phenomenology +hep-ph/0204214 Phenomenology +hep-ph/0204269 Phenomenology +hep-ph/0206012 Phenomenology +hep-ph/0206091 Phenomenology +hep-ph/0206100 Phenomenology +hep-ph/0206188 Phenomenology +hep-ph/0206252 Phenomenology +hep-ph/0206280 Phenomenology +hep-ph/0206285 Phenomenology +hep-ph/0206288 Phenomenology +hep-ph/0206297 Phenomenology +hep-ph/0207014 Phenomenology +hep-ph/0207027 Phenomenology +hep-ph/0207042 Phenomenology +hep-ph/0207183 Phenomenology +hep-ph/0207224 Phenomenology +hep-ph/0207313 Phenomenology +hep-ph/0208274 Phenomenology +hep-ph/0209058 Phenomenology +hep-ph/0209120 Phenomenology +hep-ph/0209155 Phenomenology +hep-ph/0209205 Phenomenology +hep-ph/0209226 Phenomenology +hep-ph/0209229 Phenomenology +hep-ph/0209283 Phenomenology +hep-ph/0209290 Phenomenology +hep-ph/0210049 Phenomenology +hep-ph/0210063 Phenomenology +hep-ph/0210362 Phenomenology +hep-ph/0210367 Phenomenology +hep-ph/0211080 Phenomenology +hep-ph/0211142 Phenomenology +hep-ph/0211225 Phenomenology +hep-ph/0211348 Phenomenology +hep-ph/0212016 Phenomenology +hep-ph/0212020 Phenomenology +hep-ph/0212178 Phenomenology +hep-ph/0212189 Phenomenology +hep-ph/0212225 Phenomenology +hep-ph/0301024 Phenomenology +hep-ph/0301113 Phenomenology +hep-ph/0301180 Phenomenology +hep-ph/0302005 Phenomenology +hep-ph/0302046 Phenomenology +hep-ph/0302065 Phenomenology +hep-ph/0302079 Phenomenology +hep-ph/0302139 Phenomenology +hep-ph/0302166 Phenomenology +hep-ph/0302187 Phenomenology +hep-ph/0302250 Phenomenology +hep-ph/0303032 Phenomenology +hep-ph/0303044 Phenomenology +hep-ph/0303108 Phenomenology +hep-ph/0303257 Phenomenology +hep-ph/0304006 Phenomenology +hep-ph/0304075 Phenomenology +hep-ph/0304100 Phenomenology +hep-ph/0304119 Phenomenology +hep-ph/0304224 Phenomenology +hep-ph/0304247 Phenomenology +hep-ph/0304278 Phenomenology +hep-ph/0305107 Phenomenology +hep-ph/0305137 Phenomenology +hep-ph/0306162 Phenomenology +hep-ph/0306235 Phenomenology +hep-ph/0307092 Phenomenology +hep-ph/0308108 Phenomenology +hep-ph/0308235 Phenomenology +hep-ph/0308303 Phenomenology +hep-ph/0308312 Phenomenology +hep-ph/0308319 Phenomenology +hep-ph/0309084 Phenomenology +hep-ph/0309125 Phenomenology +hep-ph/0309325 Phenomenology +hep-ph/0310028 Phenomenology +hep-ph/0310085 Phenomenology +hep-ph/0310139 Phenomenology +hep-ph/0310151 Phenomenology +hep-ph/0310152 Phenomenology +hep-ph/0310164 Phenomenology +hep-ph/0310170 Phenomenology +hep-ph/0310171 Phenomenology +hep-ph/0310187 Phenomenology +hep-ph/0310220 Phenomenology +hep-ph/0310245 Phenomenology +hep-ph/0310256 Phenomenology +hep-ph/0310268 Phenomenology +hep-ph/0310282 Phenomenology +hep-ph/0310329 Phenomenology +hep-ph/0310334 Phenomenology +hep-ph/0310352 Phenomenology +hep-ph/0310367 Phenomenology +hep-ph/0311005 Phenomenology +hep-ph/0311019 Phenomenology +hep-ph/0311042 Phenomenology +hep-ph/0311075 Phenomenology +hep-ph/0311094 Phenomenology +hep-ph/0311122 Phenomenology +hep-ph/0311157 Phenomenology +hep-ph/0311159 Phenomenology +hep-ph/0311166 Phenomenology +hep-ph/0311216 Phenomenology +hep-ph/0312006 Phenomenology +hep-ph/0312037 Phenomenology +hep-ph/0312120 Phenomenology +hep-ph/0312145 Phenomenology +hep-ph/0312201 Phenomenology +hep-ph/0312202 Phenomenology +hep-ph/0312301 Phenomenology +hep-ph/0312388 Phenomenology +hep-ph/0401033 Phenomenology +hep-ph/0401034 Phenomenology +hep-ph/0401097 Phenomenology +hep-ph/0401110 Phenomenology +hep-ph/0401112 Phenomenology +hep-ph/0401205 Phenomenology +hep-ph/0402254 Phenomenology +hep-ph/0403270 Phenomenology +hep-ph/0404006 Phenomenology +hep-ph/0404188 Phenomenology +hep-ph/0406114 Phenomenology +hep-ph/0406170 Phenomenology +hep-ph/0406230 Phenomenology +hep-ph/0406265 Phenomenology +hep-ph/0406314 Phenomenology +hep-ph/0407177 Phenomenology +hep-ph/0407224 Phenomenology +hep-ph/0407347 Phenomenology +hep-ph/0408186 Phenomenology +hep-ph/0408214 Phenomenology +hep-ph/0408282 Phenomenology +hep-ph/0409032 Phenomenology +hep-ph/0409037 Phenomenology +hep-ph/0410060 Phenomenology +hep-ph/0411095 Phenomenology +hep-ph/0411153 Phenomenology +hep-ph/0411183 Phenomenology +hep-ph/0411408 Phenomenology +hep-ph/0412157 Phenomenology +hep-ph/0412218 Phenomenology +hep-ph/0412376 Phenomenology +hep-ph/0412384 Phenomenology +hep-ph/0412400 Phenomenology +hep-ph/0501031 Phenomenology +hep-ph/0501065 Phenomenology +hep-ph/0501099 Phenomenology +hep-ph/0501163 Phenomenology +hep-ph/0501269 Phenomenology +hep-ph/0502081 Phenomenology +hep-ph/0502098 Phenomenology +hep-ph/0502165 Phenomenology +hep-ph/0502170 Phenomenology +hep-ph/0502180 Phenomenology +hep-ph/0502184 Phenomenology +hep-ph/0502194 Phenomenology +hep-ph/0502202 Phenomenology +hep-ph/0503023 Phenomenology +hep-ph/0503049 Phenomenology +hep-ph/0503075 Phenomenology +hep-ph/0504008 Phenomenology +hep-ph/0504018 Phenomenology +hep-ph/0504019 Phenomenology +hep-ph/0504216 Phenomenology +hep-ph/0505053 Phenomenology +hep-ph/0506188 Phenomenology +hep-ph/0601095 Phenomenology +hep-ph/0602170 Phenomenology +hep-ph/0603060 Phenomenology +hep-ph/0604229 Phenomenology +hep-ph/0605184 Phenomenology +hep-ph/0606029 Phenomenology +hep-ph/0606213 Phenomenology +hep-ph/0607035 Phenomenology +hep-ph/0607089 Phenomenology +hep-ph/0607131 Phenomenology +hep-ph/0607275 Phenomenology +hep-ph/0608002 Phenomenology +hep-ph/0608003 Phenomenology +hep-ph/0608053 Phenomenology +hep-ph/0608082 Phenomenology +hep-ph/0608133 Phenomenology +hep-ph/0609023 Phenomenology +hep-ph/0612001 Phenomenology +hep-ph/9507297 Phenomenology +hep-ph/9603367 Phenomenology +hep-ph/9605337 Phenomenology +hep-ph/9606468 Phenomenology +hep-ph/9606483 Phenomenology +hep-ph/9607218 Phenomenology +hep-ph/9608316 Phenomenology +hep-ph/9608372 Phenomenology +hep-ph/9609295 Phenomenology +hep-ph/9609487 Phenomenology +hep-ph/9610250 Phenomenology +hep-ph/9611283 Phenomenology +hep-ph/9612378 Phenomenology +hep-ph/9701224 Phenomenology +hep-ph/9701285 Phenomenology +hep-ph/9701299 Phenomenology +hep-ph/9701384 Phenomenology +hep-ph/9702249 Phenomenology +hep-ph/9703368 Phenomenology +hep-ph/9703385 Phenomenology +hep-ph/9703386 Phenomenology +hep-ph/9704261 Phenomenology +hep-ph/9704297 Phenomenology +hep-ph/9704319 Phenomenology +hep-ph/9704345 Phenomenology +hep-ph/9704353 Phenomenology +hep-ph/9704375 Phenomenology +hep-ph/9704405 Phenomenology +hep-ph/9704415 Phenomenology +hep-ph/9704420 Phenomenology +hep-ph/9704445 Phenomenology +hep-ph/9705322 Phenomenology +hep-ph/9705333 Phenomenology +hep-ph/9705358 Phenomenology +hep-ph/9705389 Phenomenology +hep-ph/9705406 Phenomenology +hep-ph/9705465 Phenomenology +hep-ph/9705470 Phenomenology +hep-ph/9705473 Phenomenology +hep-ph/9706373 Phenomenology +hep-ph/9706406 Phenomenology +hep-ph/9706421 Phenomenology +hep-ph/9706481 Phenomenology +hep-ph/9706523 Phenomenology +hep-ph/9706525 Phenomenology +hep-ph/9706537 Phenomenology +hep-ph/9707240 Phenomenology +hep-ph/9707350 Phenomenology +hep-ph/9707362 Phenomenology +hep-ph/9707506 Phenomenology +hep-ph/9708275 Phenomenology +hep-ph/9708298 Phenomenology +hep-ph/9708363 Phenomenology +hep-ph/9708378 Phenomenology +hep-ph/9708473 Phenomenology +hep-ph/9709249 Phenomenology +hep-ph/9709254 Phenomenology +hep-ph/9709341 Phenomenology +hep-ph/9709342 Phenomenology +hep-ph/9709343 Phenomenology +hep-ph/9709414 Phenomenology +hep-ph/9710220 Phenomenology +hep-ph/9710240 Phenomenology +hep-ph/9710243 Phenomenology +hep-ph/9710263 Phenomenology +hep-ph/9710309 Phenomenology +hep-ph/9710313 Phenomenology +hep-ph/9710321 Phenomenology +hep-ph/9710413 Phenomenology +hep-ph/9710529 Phenomenology +hep-ph/9711212 Phenomenology +hep-ph/9711229 Phenomenology +hep-ph/9711231 Phenomenology +hep-ph/9711263 Phenomenology +hep-ph/9711285 Phenomenology +hep-ph/9711304 Phenomenology +hep-ph/9711327 Phenomenology +hep-ph/9711341 Phenomenology +hep-ph/9711354 Phenomenology +hep-ph/9711369 Phenomenology +hep-ph/9711392 Phenomenology +hep-ph/9711422 Phenomenology +hep-ph/9712241 Phenomenology +hep-ph/9712300 Phenomenology +hep-ph/9712309 Phenomenology +hep-ph/9712314 Phenomenology +hep-ph/9712316 Phenomenology +hep-ph/9712371 Phenomenology +hep-ph/9712451 Phenomenology +hep-ph/9712461 Phenomenology +hep-ph/9712485 Phenomenology +hep-ph/9801277 Phenomenology +hep-ph/9801285 Phenomenology +hep-ph/9801300 Phenomenology +hep-ph/9801406 Phenomenology +hep-ph/9802227 Phenomenology +hep-ph/9802389 Phenomenology +hep-ph/9803209 Phenomenology +hep-ph/9803251 Phenomenology +hep-ph/9803296 Phenomenology +hep-ph/9803311 Phenomenology +hep-ph/9803322 Phenomenology +hep-ph/9803375 Phenomenology +hep-ph/9803408 Phenomenology +hep-ph/9803449 Phenomenology +hep-ph/9804239 Phenomenology +hep-ph/9804261 Phenomenology +hep-ph/9804271 Phenomenology +hep-ph/9804280 Phenomenology +hep-ph/9804284 Phenomenology +hep-ph/9804316 Phenomenology +hep-ph/9804331 Phenomenology +hep-ph/9804333 Phenomenology +hep-ph/9804335 Phenomenology +hep-ph/9804349 Phenomenology +hep-ph/9805201 Phenomenology +hep-ph/9805303 Phenomenology +hep-ph/9805309 Phenomenology +hep-ph/9805354 Phenomenology +hep-ph/9805355 Phenomenology +hep-ph/9805409 Phenomenology +hep-ph/9805430 Phenomenology +hep-ph/9805490 Phenomenology +hep-ph/9806212 Phenomenology +hep-ph/9806367 Phenomenology +hep-ph/9806369 Phenomenology +hep-ph/9806373 Phenomenology +hep-ph/9806404 Phenomenology +hep-ph/9806419 Phenomenology +hep-ph/9806464 Phenomenology +hep-ph/9807224 Phenomenology +hep-ph/9807357 Phenomenology +hep-ph/9807380 Phenomenology +hep-ph/9807425 Phenomenology +hep-ph/9807448 Phenomenology +hep-ph/9807453 Phenomenology +hep-ph/9807536 Phenomenology +hep-ph/9808254 Phenomenology +hep-ph/9808309 Phenomenology +hep-ph/9808376 Phenomenology +hep-ph/9808429 Phenomenology +hep-ph/9808436 Phenomenology +hep-ph/9808455 Phenomenology +hep-ph/9808484 Phenomenology +hep-ph/9809320 Phenomenology +hep-ph/9809331 Phenomenology +hep-ph/9809372 Phenomenology +hep-ph/9809386 Phenomenology +hep-ph/9809398 Phenomenology +hep-ph/9809437 Phenomenology +hep-ph/9809439 Phenomenology +hep-ph/9809506 Phenomenology +hep-ph/9809527 Phenomenology +hep-ph/9809548 Phenomenology +hep-ph/9809563 Phenomenology +hep-ph/9810207 Phenomenology +hep-ph/9810260 Phenomenology +hep-ph/9810271 Phenomenology +hep-ph/9810295 Phenomenology +hep-ph/9810355 Phenomenology +hep-ph/9810397 Phenomenology +hep-ph/9810432 Phenomenology +hep-ph/9810484 Phenomenology +hep-ph/9810493 Phenomenology +hep-ph/9811229 Phenomenology +hep-ph/9811253 Phenomenology +hep-ph/9811334 Phenomenology +hep-ph/9811349 Phenomenology +hep-ph/9811382 Phenomenology +hep-ph/9811393 Phenomenology +hep-ph/9811397 Phenomenology +hep-ph/9811418 Phenomenology +hep-ph/9811431 Phenomenology +hep-ph/9811437 Phenomenology +hep-ph/9811443 Phenomenology +hep-ph/9811478 Phenomenology +hep-ph/9811480 Phenomenology +hep-ph/9812236 Phenomenology +hep-ph/9812267 Phenomenology +hep-ph/9812347 Phenomenology +hep-ph/9812416 Phenomenology +hep-ph/9812424 Phenomenology +hep-ph/9812427 Phenomenology +hep-ph/9812451 Phenomenology +hep-ph/9812458 Phenomenology +hep-ph/9812484 Phenomenology +hep-ph/9901245 Phenomenology +hep-ph/9901258 Phenomenology +hep-ph/9901323 Phenomenology +hep-ph/9901343 Phenomenology +hep-ph/9901346 Phenomenology +hep-ph/9901349 Phenomenology +hep-ph/9901375 Phenomenology +hep-ph/9901422 Phenomenology +hep-ph/9901438 Phenomenology +hep-ph/9901440 Phenomenology +hep-ph/9901451 Phenomenology +hep-ph/9902205 Phenomenology +hep-ph/9902230 Phenomenology +hep-ph/9902241 Phenomenology +hep-ph/9902245 Phenomenology +hep-ph/9902334 Phenomenology +hep-ph/9902343 Phenomenology +hep-ph/9902356 Phenomenology +hep-ph/9902391 Phenomenology +hep-ph/9902393 Phenomenology +hep-ph/9902418 Phenomenology +hep-ph/9902426 Phenomenology +hep-ph/9902478 Phenomenology +hep-ph/9902480 Phenomenology +hep-ph/9903211 Phenomenology +hep-ph/9903315 Phenomenology +hep-ph/9903322 Phenomenology +hep-ph/9903325 Phenomenology +hep-ph/9903338 Phenomenology +hep-ph/9903348 Phenomenology +hep-ph/9903412 Phenomenology +hep-ph/9903439 Phenomenology +hep-ph/9903443 Phenomenology +hep-ph/9903444 Phenomenology +hep-ph/9903450 Phenomenology +hep-ph/9904205 Phenomenology +hep-ph/9904251 Phenomenology +hep-ph/9904277 Phenomenology +hep-ph/9904287 Phenomenology +hep-ph/9904292 Phenomenology +hep-ph/9904317 Phenomenology +hep-ph/9904319 Phenomenology +hep-ph/9904403 Phenomenology +hep-ph/9904450 Phenomenology +hep-ph/9904455 Phenomenology +hep-ph/9905213 Phenomenology +hep-ph/9905278 Phenomenology +hep-ph/9905320 Phenomenology +hep-ph/9905341 Phenomenology +hep-ph/9905436 Phenomenology +hep-ph/9905452 Phenomenology +hep-ph/9905462 Phenomenology +hep-ph/9906204 Phenomenology +hep-ph/9906256 Phenomenology +hep-ph/9906282 Phenomenology +hep-ph/9906347 Phenomenology +hep-ph/9906418 Phenomenology +hep-ph/9906481 Phenomenology +hep-ph/9906522 Phenomenology +hep-ph/9906535 Phenomenology +hep-ph/9906550 Phenomenology +hep-ph/9907204 Phenomenology +hep-ph/9907227 Phenomenology +hep-ph/9907293 Phenomenology +hep-ph/9907332 Phenomenology +hep-ph/9907336 Phenomenology +hep-ph/9907393 Phenomenology +hep-ph/9907511 Phenomenology +hep-ph/9907512 Phenomenology +hep-ph/9908228 Phenomenology +hep-ph/9908254 Phenomenology +hep-ph/9908287 Phenomenology +hep-ph/9908473 Phenomenology +hep-ph/9908529 Phenomenology +hep-ph/9909225 Phenomenology +hep-ph/9909242 Phenomenology +hep-ph/9909263 Phenomenology +hep-ph/9909292 Phenomenology +hep-ph/9909541 Phenomenology +hep-ph/9910270 Phenomenology +hep-ph/9910374 Phenomenology +hep-ph/9910536 Phenomenology +hep-ph/9911306 Phenomenology +hep-ph/9911311 Phenomenology +hep-ph/9911340 Phenomenology +hep-ph/9911466 Phenomenology +hep-ph/9911541 Phenomenology +hep-ph/9912272 Phenomenology +hep-ph/9912348 Phenomenology +hep-ph/9912439 Phenomenology +hep-ph/9912503 Phenomenology +hep-ph/9912547 Phenomenology +hep-th/0001032 Theory +hep-th/0001203 Theory +hep-th/0003225 Theory +hep-th/0004008 Theory +hep-th/0005227 Theory +hep-th/0006246 Theory +hep-th/0007023 Theory +hep-th/0007070 Theory +hep-th/0008020 Theory +hep-th/0009241 Theory +hep-th/0010079 Theory +hep-th/0101048 Theory +hep-th/0101128 Theory +hep-th/0102005 Theory +hep-th/0102139 Theory +hep-th/0103120 Theory +hep-th/0104153 Theory +hep-th/0107073 Theory +hep-th/0107106 Theory +hep-th/0108045 Theory +hep-th/0108139 Theory +hep-th/0110016 Theory +hep-th/0110065 Theory +hep-th/0110231 Theory +hep-th/0111059 Theory +hep-th/0111063 Theory +hep-th/0111172 Theory +hep-th/0201074 Theory +hep-th/0201171 Theory +hep-th/0201245 Theory +hep-th/0203062 Theory +hep-th/0204128 Theory +hep-th/0205013 Theory +hep-th/0205153 Theory +hep-th/0205158 Theory +hep-th/0205269 Theory +hep-th/0208052 Theory +hep-th/0209096 Theory +hep-th/0210277 Theory +hep-th/0211014 Theory +hep-th/0211051 Theory +hep-th/0212129 Theory +hep-th/0304204 Theory +hep-th/0305223 Theory +hep-th/0310124 Theory +hep-th/0311160 Theory +hep-th/0401113 Theory +hep-th/0401235 Theory +hep-th/0402138 Theory +hep-th/0404188 Theory +hep-th/0406115 Theory +hep-th/0410104 Theory +hep-th/0410213 Theory +hep-th/0411151 Theory +hep-th/0411161 Theory +hep-th/0411204 Theory +hep-th/0412284 Theory +hep-th/0501075 Theory +hep-th/0503099 Theory +hep-th/0504179 Theory +hep-th/0508037 Theory +hep-th/0508237 Theory +hep-th/0606240 Theory +hep-th/0607175 Theory +hep-th/0610234 Theory +hep-th/0702057 Theory +hep-th/0702058 Theory +hep-th/9606076 Theory +hep-th/9610128 Theory +hep-th/9611080 Theory +hep-th/9702186 Theory +hep-th/9706058 Theory +hep-th/9706068 Theory +hep-th/9706105 Theory +hep-th/9706169 Theory +hep-th/9707037 Theory +hep-th/9709037 Theory +hep-th/9709144 Theory +hep-th/9712041 Theory +hep-th/9803001 Theory +hep-th/9803079 Theory +hep-th/9803091 Theory +hep-th/9803144 Theory +hep-th/9804048 Theory +hep-th/9805025 Theory +hep-th/9805027 Theory +hep-th/9805098 Theory +hep-th/9806138 Theory +hep-th/9807004 Theory +hep-th/9807145 Theory +hep-th/9808003 Theory +hep-th/9808103 Theory +hep-th/9809005 Theory +hep-th/9810166 Theory +hep-th/9810190 Theory +hep-th/9812102 Theory +hep-th/9903076 Theory +hep-th/9904014 Theory +hep-th/9904091 Theory +hep-th/9905022 Theory +hep-th/9909014 Theory +math-ph/0201061 +math-ph/0504008 +math-ph/0612046 +math/0004011 Quantum Algebra +math/0308133 Representation Theory +math/0404448 Algebraic Geometry +math/0506196 General Mathematics +math/0510039 Category Theory +math/0510194 Representation Theory +math/0609673 Geometric Topology +math/9801104 Quantum Algebra +math/9809160 Quantum Algebra +nucl-ex/0406022 +nucl-ex/0502023 +nucl-ex/0506002 +nucl-ex/0608020 +nucl-ex/0608054 +nucl-ex/9805007 +nucl-th/0103023 +nucl-th/0103033 +nucl-th/0207012 +nucl-th/0301052 +nucl-th/0307017 +nucl-th/0308049 +nucl-th/0502009 +nucl-th/0608069 +nucl-th/0608070 +nucl-th/0609010 +nucl-th/0610041 +nucl-th/9701013 +nucl-th/9704008 +nucl-th/9705015 +nucl-th/9707018 +nucl-th/9712050 +nucl-th/9801023 +nucl-th/9809070 +nucl-th/9910041 +physics/0409064 General Physics +q-alg/9709032 Quantum Algebra +quant-ph/0501039 +quant-ph/9708027 +0705.1496 Phenomenology +0707.2454 Algebraic Geometry +0808.0610 +0809.2830 Algebraic Geometry +0908.3409 Probability +0912.4533 Probability +0912.5239 Algebraic Geometry +1001.4028 Probability +1003.3333 Algebraic Geometry +1003.5278 Geometric Topology +1004.4304 Number Theory +1005.4320 Superconductivity +1007.1733 Data Structures and Algorithms +1007.5387 +1010.2501 Analysis of PDEs +1010.3534 Complex Variables +1011.0534 Physics and Society +1012.1239 Functional Analysis +1101.3131 Chemical Physics +1101.4615 General Topology +1101.5122 Cosmology and Nongalactic Astrophysics +1102.2557 Materials Science +1102.4564 General Topology +1103.1780 Probability +1103.6146 Theory +1104.1875 Numerical Analysis +1104.4679 Quantum Algebra +1104.4970 Soft Condensed Matter +1105.0363 Machine Learning +1105.0376 Phenomenology +1105.1160 Data Analysis, Statistics and Probability +1105.3730 Phenomenology +1106.2368 Disordered Systems and Neural Networks +1106.2869 Combinatorics +1107.0157 Statistical Mechanics +1107.1040 Strongly Correlated Electrons +1107.1688 +1107.2686 Data Structures and Algorithms +1107.4022 Theory +1107.4374 Strongly Correlated Electrons +1108.0455 Mesoscale and Nanoscale Physics +1108.0876 Cosmology and Nongalactic Astrophysics +1108.2655 Numerical Analysis +1108.3093 Phenomenology +1108.4542 Soft Condensed Matter +1108.4788 Strongly Correlated Electrons +1108.4935 Fluid Dynamics +1108.5105 +1108.5722 Optics +1108.6200 Probability +1109.0910 Computational Physics +1109.0999 Cosmology and Nongalactic Astrophysics +1109.1787 Strongly Correlated Electrons +1109.2277 Optics +1109.2456 +1109.2623 Geometric Topology +1109.4445 Mesoscale and Nanoscale Physics +1109.4721 Theory +1110.2135 Quantum Gases +1110.4174 Information Theory +1110.5729 Chemical Physics +1111.0082 Statistical Mechanics +1111.0898 Pattern Formation and Solitons +1111.1290 Materials Science +1111.3212 General Topology +1111.6594 Phenomenology +1112.1243 Lattice +1112.1671 K-Theory and Homology +1112.1709 Theory +1112.1711 Mesoscale and Nanoscale Physics +1112.1713 Combinatorics +1112.1714 General Topology +1112.1718 Spectral Theory +1112.1722 Experiment +1112.1723 Experiment +1112.1727 Optics +1112.1731 History and Philosophy of Physics +1112.1734 Databases +1112.1739 Pattern Formation and Solitons +1112.1742 Human-Computer Interaction +1112.1745 Instrumentation and Methods for Astrophysics +1112.1746 Analysis of PDEs +1112.1747 Optics +1112.1748 Pattern Formation and Solitons +1112.1750 Analysis of PDEs +1112.1751 Programming Languages +1112.1756 Algebraic Geometry +1112.1763 Pricing of Securities +1112.1764 Group Theory +1112.1768 Learning +1112.1770 Information Theory +1112.1782 Pricing of Securities +1112.1785 Strongly Correlated Electrons +1112.1789 Dynamical Systems +1112.1792 Earth and Planetary Astrophysics +1112.1793 General Physics +1112.1794 General Physics +1112.1798 Mesoscale and Nanoscale Physics +1112.1801 Mesoscale and Nanoscale Physics +1112.1806 Mesoscale and Nanoscale Physics +1112.1812 Experiment +1112.1814 Populations and Evolution +1112.1816 Plasma Physics +1112.1817 Theory +1112.1818 Differential Geometry +1112.1831 Social and Information Networks +1112.1846 Statistical Mechanics +1112.1848 Logic in Computer Science +1112.1850 K-Theory and Homology +1112.1858 Phenomenology +1112.1869 Methodology +1112.1870 General Physics +1112.1875 General Physics +1112.1876 Statistical Mechanics +1112.1877 Rings and Algebras +1112.1879 Mesoscale and Nanoscale Physics +1112.1880 High Energy Astrophysical Phenomena +1112.1881 Phenomenology +1112.1882 +1112.1883 Lattice +1112.1892 Networking and Internet Architecture +1112.1894 Materials Science +1112.1895 Computer Science and Game Theory +1112.1896 Classical Analysis and ODEs +1112.1897 +1112.1900 Mesoscale and Nanoscale Physics +1112.1902 Chemical Physics +1112.1904 Functional Analysis +1112.1908 Superconductivity +1112.1909 Probability +1112.1912 Quantum Algebra +1112.1913 Solar and Stellar Astrophysics +1112.1914 Lattice +1112.1916 Solar and Stellar Astrophysics +1112.1918 Quantum Algebra +1112.1920 Solar and Stellar Astrophysics +1112.1932 Networking and Internet Architecture +1112.1933 Discrete Mathematics +1112.1937 Learning +1112.1941 +1112.1946 Classical Analysis and ODEs +cs/0701114 Databases +math/0602661 History and Overview +quant-ph/0602052 +0706.3178 Operator Algebras +0708.4282 +0711.0111 Operator Algebras +0803.0048 Distributed, Parallel, and Cluster Computing +0806.0947 Pattern Formation and Solitons +0809.2516 General Physics +0809.3359 +0810.2450 Strongly Correlated Electrons +0810.5650 Statistical Mechanics +0903.1430 Classical Analysis and ODEs +0904.0682 Databases +0904.0734 Functional Analysis +0905.4004 Phenomenology +0909.1180 Analysis of PDEs +0909.2433 Quantum Algebra +0909.4285 +0910.3260 Astrophysics of Galaxies +0910.3785 Optics +0910.4538 Category Theory +0911.4756 Phenomenology +0912.0258 +1001.2612 Optimization and Control +1002.0795 Methodology +1002.3599 Superconductivity +1003.4232 Strongly Correlated Electrons +1004.0162 Theory +1004.2529 Physics and Society +1004.2531 +1004.2791 High Energy Astrophysical Phenomena +1004.3992 Space Physics +1004.5255 Metric Geometry +1005.3767 +1006.1506 Fluid Dynamics +1006.1930 Artificial Intelligence +1006.2343 Cosmology and Nongalactic Astrophysics +1006.2783 Optics +1006.4209 Phenomenology +1006.4843 Formal Languages and Automata Theory +1006.4905 +1007.0695 Geometric Topology +1008.2180 +1008.2716 +1008.3739 Representation Theory +1008.3890 Solar and Stellar Astrophysics +1008.4241 Statistical Mechanics +1008.5109 +1009.0125 Optimization and Control +1009.0801 +1009.1353 Functional Analysis +1009.1727 +1009.3741 Cosmology and Nongalactic Astrophysics +1009.4508 +1009.4942 +1009.5448 Disordered Systems and Neural Networks +1010.0281 Phenomenology +1010.2212 Number Theory +1010.2421 +1010.3350 Fluid Dynamics +1010.3886 Cosmology and Nongalactic Astrophysics +1010.3900 Phenomenology +1010.5579 Phenomenology +1010.6049 +1010.6265 Theory +1011.0127 Experiment +1011.0574 Theory +1011.0739 Theory +1011.1386 Soft Condensed Matter +1011.1734 Astrophysics of Galaxies +1011.2202 Theory +1011.2207 Theory +1011.2224 Theory +1011.2241 Theory +1011.2274 Phenomenology +1011.2310 Phenomenology +1011.2332 Lattice +1011.2341 +1011.2360 Phenomenology +1011.2420 +1011.2601 +1011.3162 Complex Variables +1011.3194 +1011.4908 Phenomenology +1011.5088 +1011.6443 +1011.6593 Phenomenology +1012.1270 +1012.2754 Number Theory +1012.2893 Phenomenology +1012.3822 +1012.3929 Differential Geometry +1012.4806 +1012.5365 Phenomenology +1012.5709 Theory +1101.0086 Computational Physics +1101.0643 Solar and Stellar Astrophysics +1101.0715 Phenomenology +1101.2343 Theory +1101.2789 +1101.3769 Phenomenology +1101.4049 +1101.4350 Commutative Algebra +1101.5928 Optics +1102.0275 Cosmology and Nongalactic Astrophysics +1102.0545 Phenomenology +1102.0726 Phenomenology +1102.1195 +1102.1734 Theory +1102.2417 +1102.3299 Phenomenology +1102.3357 Theory +1102.3421 +1102.3888 Superconductivity +1102.3942 Theory +1102.4196 Theory +1102.5286 Atomic Physics +1102.5327 Phenomenology +1102.5534 Quantum Gases +1103.0370 Number Theory +1103.0672 Symplectic Geometry +1103.1076 Space Physics +1103.1366 Phenomenology +1103.1381 Theory +1103.1464 Cosmology and Nongalactic Astrophysics +1103.1528 +1103.1699 +1103.1711 Artificial Intelligence +1103.2035 Phenomenology +1103.2141 Phenomenology +1103.2345 Probability +1103.2583 Earth and Planetary Astrophysics +1103.2966 Superconductivity +1103.3755 Quantum Algebra +1103.4759 Theory +1103.4762 Phenomenology +1103.5576 Phenomenology +1103.5935 +1104.0125 +1104.0341 Methodology +1104.1349 Theory +1104.1512 +1104.1683 +1104.2393 +1104.2439 +1104.3042 +1104.3940 +1104.4610 Probability +1105.0191 Phenomenology +1105.0969 Phenomenology +1105.1427 Classical Analysis and ODEs +1105.1831 Analysis of PDEs +1105.1849 Commutative Algebra +1105.1889 Solar and Stellar Astrophysics +1105.2164 +1105.2224 Differential Geometry +1105.2292 Networking and Internet Architecture +1105.2305 General Physics +1105.2313 +1105.2315 Probability +1105.2316 +1105.2322 Statistics Theory +1105.2325 Commutative Algebra +1105.2335 Software Engineering +1105.2344 Multimedia +1105.2349 Superconductivity +1105.2356 Theory +1105.2361 Information Theory +1105.2362 Biomolecules +1105.2371 Cosmology and Nongalactic Astrophysics +1105.2374 +1105.2383 Algebraic Geometry +1105.2389 Combinatorics +1105.2392 Digital Libraries +1105.2396 Dynamical Systems +1105.2397 Data Structures and Algorithms +1105.2399 Commutative Algebra +1105.2404 Combinatorics +1105.2405 +1105.2408 Soft Condensed Matter +1105.2409 Probability +1105.2411 Metric Geometry +1105.2414 Trading and Market Microstructure +1105.2422 Information Theory +1105.2424 Statistics Theory +1105.2428 +1105.2430 Complex Variables +1105.2433 Applications +1105.2435 Experiment +1105.2437 Optimization and Control +1105.2439 Representation Theory +1105.2441 Digital Libraries +1105.2443 Social and Information Networks +1105.2465 +1105.2467 High Energy Astrophysical Phenomena +1105.2476 Functional Analysis +1105.2478 Classical Physics +1105.2480 Algebraic Geometry +1105.2504 +1105.2507 Strongly Correlated Electrons +1105.2510 Statistical Mechanics +1105.2515 Spectral Theory +1105.2517 Biological Physics +1105.2529 Metric Geometry +1105.2530 Molecular Networks +1105.2535 +1105.2539 +1105.2542 Geometric Topology +1105.2544 Rings and Algebras +1105.2545 Analysis of PDEs +1105.2553 Computational Physics +1105.2554 Programming Languages +cond-mat/0605513 Strongly Correlated Electrons +math/0201172 Differential Geometry +math/0606099 Geometric Topology +math/0609130 Functional Analysis +nlin/0611052 Pattern Formation and Solitons +nucl-th/9711033 +physics/0412163 Computational Physics +physics/0511017 Atomic Physics +quant-ph/0404068 +0706.3425 Group Theory +0706.4097 Algebraic Topology +0708.3187 Dynamical Systems +0711.2704 Combinatorics +0712.3007 Algebraic Geometry +0712.3039 Algebraic Topology +0804.1052 Soft Condensed Matter +0805.1371 Group Theory +0805.2036 Functional Analysis +0809.0737 Information Theory +0812.2867 Classical Analysis and ODEs +0910.3835 Probability +0910.4322 Theory +0910.4636 Machine Learning +0911.0312 Quantum Gases +0911.3385 Group Theory +0912.0166 Operator Algebras +0912.3823 +1002.1712 Cosmology and Nongalactic Astrophysics +1003.0118 Computer Science and Game Theory +1003.4850 Category Theory +1003.5150 Soft Condensed Matter +1005.0638 Strongly Correlated Electrons +1005.2038 Symplectic Geometry +1005.4011 Probability +1006.2666 Functional Analysis +1006.2668 Functional Analysis +1006.3328 +1007.2305 Materials Science +1007.3725 Cosmology and Nongalactic Astrophysics +1007.4562 Theory +1008.1539 +1008.4826 Algebraic Topology +1009.2976 Theory +1009.4080 Phenomenology +1010.4348 Statistical Mechanics +1010.4477 Molecular Networks +1010.6043 Group Theory +1010.6223 +1011.0721 Operator Algebras +1011.3561 Differential Geometry +1012.0181 Soft Condensed Matter +1012.1268 Cosmology and Nongalactic Astrophysics +1012.1437 Algebraic Geometry +1012.2376 +1012.2458 Exactly Solvable and Integrable Systems +1012.2748 Phenomenology +1012.2924 Superconductivity +1012.3161 Superconductivity +1012.4564 Strongly Correlated Electrons +1012.5311 Materials Science +1101.0265 Computational Physics +1101.1140 +1101.1437 Probability +1101.3687 Superconductivity +1101.5290 Mesoscale and Nanoscale Physics +1101.5991 Quantum Gases +1101.6049 Strongly Correlated Electrons +1102.0492 Phenomenology +1102.1189 Discrete Mathematics +1102.4688 Phenomenology +1103.0325 Computational Physics +1103.0460 Strongly Correlated Electrons +1103.0519 Probability +1104.1606 Probability +1104.2124 Computational Finance +1104.2187 General Finance +1104.2233 +1104.2729 Probability +1104.3190 Differential Geometry +1104.3394 Analysis of PDEs +1104.3417 Geometric Topology +1104.3432 Pattern Formation and Solitons +1104.3488 +1104.3630 Category Theory +1104.4728 Discrete Mathematics +1104.5056 Astrophysics of Galaxies +1104.5248 High Energy Astrophysical Phenomena +1104.5285 Mesoscale and Nanoscale Physics +1104.5413 Fluid Dynamics +1105.0080 +1105.0516 Soft Condensed Matter +1105.0730 Classical Analysis and ODEs +1105.0786 Analysis of PDEs +1105.1127 Number Theory +1105.1486 Distributed, Parallel, and Cluster Computing +1105.1536 Statistics Theory +1105.1721 Operator Algebras +1105.1756 +1105.1774 Cosmology and Nongalactic Astrophysics +1105.1775 Solar and Stellar Astrophysics +1105.1785 Mesoscale and Nanoscale Physics +1105.1788 Biomolecules +1105.1791 Differential Geometry +1105.1798 Complex Variables +1105.1803 +1105.1804 Mesoscale and Nanoscale Physics +1105.1807 Statistical Mechanics +1105.1808 Phenomenology +1105.1810 Analysis of PDEs +1105.1811 Operating Systems +1105.1815 Operating Systems +1105.1821 Probability +1105.1822 Optimization and Control +1105.1823 Optimization and Control +1105.1829 Optimization and Control +1105.1830 Mesoscale and Nanoscale Physics +1105.1836 Probability +1105.1837 Mesoscale and Nanoscale Physics +1105.1838 Classical Analysis and ODEs +1105.1844 Geometric Topology +1105.1846 Cryptography and Security +1105.1847 Combinatorics +1105.1848 Superconductivity +1105.1850 +1105.1862 Superconductivity +1105.1867 Differential Geometry +1105.1874 Complex Variables +1105.1881 +1105.1884 +1105.1885 Computers and Society +1105.1887 Earth and Planetary Astrophysics +1105.1896 Statistics Theory +1105.1901 Neural and Evolutionary Computing +1105.1903 Superconductivity +1105.1906 Combinatorics +1105.1908 Combinatorics +1105.1914 Operator Algebras +1105.1915 Number Theory +1105.1917 Physics and Society +1105.1926 Data Analysis, Statistics and Probability +1105.1927 Soft Condensed Matter +1105.1929 Artificial Intelligence +1105.1930 Databases +1105.1931 Lattice +1105.1936 Analysis of PDEs +1105.1939 Group Theory +1105.1940 Combinatorics +1105.1943 Information Theory +1105.1944 Analysis of PDEs +1105.1945 Cryptography and Security +1105.1948 Multimedia +1105.1950 Databases +1105.1952 Analysis of PDEs +1105.1954 Instrumentation and Methods for Astrophysics +1105.1961 Strongly Correlated Electrons +1105.1967 Hardware Architecture +1105.1969 Information Theory +1105.1972 Differential Geometry +1105.1977 Probability +1105.1979 Operator Algebras +1105.1980 +1105.1982 Distributed, Parallel, and Cluster Computing +1105.1988 High Energy Astrophysical Phenomena +1105.1993 +1105.1999 Computational Complexity +1105.2002 Cryptography and Security +1105.2015 Analysis of PDEs +1105.2016 Theory +1105.2017 Information Theory +1105.2019 Dynamical Systems +1105.2023 +1105.2026 Mesoscale and Nanoscale Physics +1105.2034 General Physics +cond-mat/0302312 Disordered Systems and Neural Networks +math/0601271 Group Theory +math/0601368 Algebraic Topology +math/0601392 Algebraic Topology +math/0701702 Algebraic Topology +0710.2652 Theory +0712.0591 Logic +0804.3323 +0805.3470 Pricing of Securities +0806.4255 Theory +0811.0112 +0811.4233 +0902.4612 Logic +0905.1465 Theory +0905.1834 Analysis of PDEs +0905.3849 +0906.4842 Optimization and Control +0907.1769 Theory +0909.0304 Group Theory +0909.0329 Computation +0909.2011 Differential Geometry +0909.2439 +0910.4742 Theory +0911.1189 Computation +0912.0120 +0912.0535 Cosmology and Nongalactic Astrophysics +0912.1112 +0912.4096 Classical Physics +1001.1049 Numerical Analysis +1001.1591 Superconductivity +1001.2974 Plasma Physics +1001.4136 Cryptography and Security +1002.1533 +1002.2641 Theory +1002.3137 Analysis of PDEs +1002.3211 +1002.4718 Phenomenology +1003.3514 Statistical Mechanics +1003.3551 Quantitative Methods +1003.5763 Mesoscale and Nanoscale Physics +1005.1363 Quantum Gases +1005.2217 Probability +1005.2256 Theory +1005.2656 +1005.2681 Phenomenology +1005.3381 Quantum Algebra +1005.5007 Theory +1005.5717 Fluid Dynamics +1006.0337 Theory +1006.1445 Soft Condensed Matter +1006.2887 +1006.2939 Phenomenology +1006.3759 +1006.3926 +1006.4755 Other Condensed Matter +1006.4920 +1006.5324 Phenomenology +1007.1232 +1007.1509 Phenomenology +1007.2083 +1007.4145 Strongly Correlated Electrons +1007.4464 Experiment +1007.4893 Theory +1008.0419 Theory +1008.0827 Cosmology and Nongalactic Astrophysics +1008.1219 Experiment +1008.2702 Experiment +1008.3225 Phenomenology +1008.3328 Other Computer Science +1008.3963 Phenomenology +1008.4580 Theory +1008.5048 Theory +1009.0173 Experiment +1009.0811 Mesoscale and Nanoscale Physics +1009.0859 Experiment +1009.1008 Experiment +1009.1607 +1009.1948 Theory +1009.2386 Statistical Mechanics +1009.2714 Phenomenology +1009.3142 Phenomenology +1009.3143 Phenomenology +1009.4184 Experiment +1009.4436 Phenomenology +1009.4545 Phenomenology +1009.4936 Phenomenology +1009.5099 Phenomenology +1009.5154 Phenomenology +1009.5324 Experiment +1009.5474 Analysis of PDEs +1009.5651 +1009.5941 Mesoscale and Nanoscale Physics +1009.6172 +1009.6232 Phenomenology +1010.0160 Phenomenology +1010.0870 Theory +1010.0875 Other Condensed Matter +1010.1291 Phenomenology +1010.1687 Phenomenology +1010.1819 Mesoscale and Nanoscale Physics +1010.2115 +1010.3151 Experiment +1010.3388 Algebraic Geometry +1010.3679 Theory +1010.3874 +1010.5322 Theory +1010.5678 Phenomenology +1010.6005 Lattice +1010.6058 Phenomenology +1010.6149 +1010.6229 +1011.0181 +1011.0297 Instrumentation and Detectors +1011.0623 +1011.0726 Theory +1011.0843 +1011.0845 Phenomenology +1011.1286 Phenomenology +1011.1383 Phenomenology +1011.1456 Theory +1011.1812 +1011.1850 +1011.1854 Phenomenology +1011.1862 Lattice +1011.2482 Cosmology and Nongalactic Astrophysics +1011.3176 Dynamical Systems +1011.3802 Experiment +1011.4280 +1011.4618 +1011.5027 High Energy Astrophysical Phenomena +1011.5120 Theory +1011.5154 Phenomenology +1011.5173 +1011.5249 +1011.5877 Theory +1011.5906 Lattice +1011.6059 Lattice +1011.6357 Theory +1011.6531 Phenomenology +1012.1343 +1012.1670 +1012.1834 Phenomenology +1012.1859 Cosmology and Nongalactic Astrophysics +1012.1864 Theory +1012.1892 Atomic Physics +1012.2039 High Energy Astrophysical Phenomena +1012.2057 Social and Information Networks +1012.2150 Instrumentation and Methods for Astrophysics +1012.2233 +1012.2280 Theory +1012.2970 Phenomenology +1012.3960 Cosmology and Nongalactic Astrophysics +1012.4130 Phenomenology +1012.5121 Phenomenology +1012.5252 +1012.5530 Materials Science +1012.5944 Phenomenology +1012.6026 Theory +1101.1121 +1101.1313 Experiment +1101.1976 Phenomenology +1101.2158 Phenomenology +1101.4130 Theory +1101.4267 Theory +1101.4322 Combinatorics +1101.5362 Phenomenology +1101.5602 Phenomenology +1102.0004 Cosmology and Nongalactic Astrophysics +1102.0198 Algebraic Geometry +1102.0359 Plasma Physics +1102.0425 Theory +1102.0577 Theory +1102.1417 Phenomenology +1102.1584 Optics +1102.1689 Phenomenology +1102.1921 Theory +1102.2183 Phenomenology +1102.2305 Phenomenology +1102.2460 Combinatorics +1102.2485 Quantum Gases +1102.2611 +1102.2679 Phenomenology +1102.2695 +1102.3163 Phenomenology +1102.3438 Probability +1102.3803 +1102.3835 Phenomenology +1102.4010 Phenomenology +1102.4012 Solar and Stellar Astrophysics +1102.4026 Molecular Networks +1102.4406 Combinatorics +1102.4584 Geometric Topology +1102.4713 Theory +1102.4736 Phenomenology +1103.1172 Cosmology and Nongalactic Astrophysics +1103.1858 Algebraic Geometry +1103.2244 Statistical Mechanics +1103.4214 Cosmology and Nongalactic Astrophysics +1103.5246 Classical Analysis and ODEs +1103.6007 Metric Geometry +1104.0270 Differential Geometry +1104.1266 Combinatorics +1104.1270 +1104.2621 Theory +1104.2937 +1104.3322 +1104.3739 Information Theory +1104.4002 Applications +1104.4075 Combinatorics +1104.4090 Optics +1104.4112 Instrumentation and Methods for Astrophysics +1104.4133 History and Philosophy of Physics +1104.4153 Artificial Intelligence +1104.4159 Materials Science +1104.4160 Discrete Mathematics +1104.4164 Databases +1104.4168 Computer Vision and Pattern Recognition +1104.4171 Applications +1104.4174 Applications +1104.4176 Applications +1104.4178 Applications +1104.4180 Probability +1104.4185 Applications +1104.4186 Probability +1104.4188 Applications +1104.4189 +1104.4191 Applications +1104.4192 Analysis of PDEs +1104.4193 Applications +1104.4195 Applications +1104.4196 Functional Analysis +1104.4197 Strongly Correlated Electrons +1104.4198 Group Theory +1104.4203 Data Structures and Algorithms +1104.4204 Networking and Internet Architecture +1104.4220 Statistics Theory +1104.4222 Strongly Correlated Electrons +1104.4223 Functional Analysis +1104.4227 Earth and Planetary Astrophysics +1104.4232 Quantum Algebra +1104.4233 Phenomenology +1104.4236 Commutative Algebra +1104.4238 +1104.4239 Atomic and Molecular Clusters +1104.4240 Commutative Algebra +1104.4242 Commutative Algebra +1104.4243 Probability +1104.4247 Information Theory +1104.4250 Strongly Correlated Electrons +1104.4252 Statistics Theory +1104.4260 Information Theory +1104.4262 Combinatorics +1104.4267 Symplectic Geometry +1104.4269 Astrophysics of Galaxies +1104.4271 Combinatorics +1104.4275 Category Theory +1104.4289 Statistics Theory +1104.4291 Rings and Algebras +1104.4294 Numerical Analysis +1104.4296 Social and Information Networks +1104.4297 Algebraic Geometry +1104.4300 Information Theory +1104.4303 Theory +1104.4316 Representation Theory +1104.4321 Computation and Language +1104.4322 Earth and Planetary Astrophysics +1104.4331 Differential Geometry +1104.4335 Algebraic Geometry +1104.4339 Operator Algebras +gr-qc/0106035 +math/0703776 Logic +quant-ph/0209120 +0705.3477 +0706.1494 Chaotic Dynamics +0707.2155 +0707.2398 +0708.0176 +0708.2096 +0709.0910 Combinatorics +0709.4175 Representation Theory +0801.0059 Probability +0801.1652 Combinatorics +0802.3392 +0803.2696 Statistical Mechanics +0804.0505 +0805.3711 +0807.4848 Rings and Algebras +0809.1620 Symplectic Geometry +0809.5222 +0810.0957 Differential Geometry +0810.4032 Atmospheric and Oceanic Physics +0810.4294 Differential Geometry +0812.4607 Theory +0902.0844 Logic +0902.1864 Theory +0902.3198 Theory +0902.3409 Theory +0902.3750 Theory +0902.3835 Theory +0903.0530 Number Theory +0904.4672 Theory +0905.0765 +0905.1340 Group Theory +0905.3009 Symplectic Geometry +0907.0540 Rings and Algebras +0907.1522 Theory +0907.5107 Theory +0907.5583 Theory +0908.0004 Theory +0909.0715 Number Theory +0909.0716 Differential Geometry +0909.1810 Representation Theory +0909.5630 Group Theory +0910.2002 +0910.3652 Quantum Algebra +0910.4990 Soft Condensed Matter +0911.1388 Discrete Mathematics +0912.4642 Analysis of PDEs +1001.4085 +1001.4496 Number Theory +1002.2797 Combinatorics +1002.3128 Methodology +1002.3499 Plasma Physics +1003.1527 Combinatorics +1003.5418 +1004.2972 Data Structures and Algorithms +1004.3194 Theory +1004.3736 Theory +1004.3776 +1005.3835 Data Structures and Algorithms +1005.4621 Phenomenology +1006.1418 Combinatorics +1006.2497 +1006.2686 Symplectic Geometry +1006.2867 Logic in Computer Science +1006.3244 Phenomenology +1006.4704 Phenomenology +1006.5167 +1007.1137 Mesoscale and Nanoscale Physics +1007.2350 Mesoscale and Nanoscale Physics +1007.3948 Metric Geometry +1008.2056 +1009.0148 Algebraic Geometry +1009.0596 Group Theory +1009.1340 +1009.4619 Group Theory +1010.0461 Functional Analysis +1010.1876 +1010.2818 Networking and Internet Architecture +1010.2929 +1010.4156 Analysis of PDEs +1010.4720 +1010.5715 +1011.4004 Mesoscale and Nanoscale Physics +1011.5017 Operator Algebras +1011.5539 Populations and Evolution +1012.2088 Combinatorics +1012.3596 Functional Analysis +1012.3767 Spectral Theory +1101.0187 +1101.1204 Theory +1101.4991 Operator Algebras +1101.6056 Superconductivity +1102.1069 Cellular Automata and Lattice Gases +1102.1230 Superconductivity +1102.2732 Disordered Systems and Neural Networks +1102.2800 +1102.4649 Theory +1103.0341 Probability +1103.0860 Soft Condensed Matter +1103.3982 Theory +1103.5516 +1104.0066 +1104.0438 Mesoscale and Nanoscale Physics +1104.3083 Physics and Society +1105.0419 Cosmology and Nongalactic Astrophysics +1105.0762 Lattice +1105.2249 Number Theory +1105.4326 +1105.4726 Phenomenology +1105.5222 +1105.5752 Rings and Algebras +1105.5827 Mesoscale and Nanoscale Physics +1106.0116 Theory +1106.0165 Probability +1106.2252 Biomolecules +1106.3284 Phenomenology +1106.3759 Optimization and Control +1106.4254 +1106.5214 High Energy Astrophysical Phenomena +1107.0422 +1107.0680 Instrumentation and Methods for Astrophysics +1107.0819 Mesoscale and Nanoscale Physics +1107.3448 Theory +1107.3659 Cosmology and Nongalactic Astrophysics +1107.4264 Instrumentation and Methods for Astrophysics +1107.4784 Theory +1107.4873 Networking and Internet Architecture +1107.5087 Numerical Analysis +1108.0007 Computer Vision and Pattern Recognition +1108.0012 Soft Condensed Matter +1108.0014 General Physics +1108.0017 Learning +1108.0024 Information Theory +1108.0026 Analysis of PDEs +1108.0035 Analysis of PDEs +1108.0041 Mesoscale and Nanoscale Physics +1108.0044 Optics +1108.0045 Algebraic Geometry +1108.0049 Operator Algebras +1108.0054 Optics +1108.0055 Pattern Formation and Solitons +1108.0056 Cosmology and Nongalactic Astrophysics +1108.0057 +1108.0059 Strongly Correlated Electrons +1108.0062 Geometric Topology +1108.0072 Information Theory +1108.0075 Algebraic Geometry +1108.0077 General Finance +1108.0080 +1108.0082 Differential Geometry +1108.0083 Superconductivity +1108.0085 +1108.0087 Number Theory +1108.0089 Classical Analysis and ODEs +1108.0090 Phenomenology +1108.0096 Number Theory +1108.0102 Materials Science +1108.0104 Materials Science +1108.0105 Number Theory +1108.0109 Analysis of PDEs +1108.0112 Atomic Physics +1108.0113 Analysis of PDEs +1108.0115 Phenomenology +1108.0123 Numerical Analysis +1108.0126 Representation Theory +1108.0128 Optimization and Control +1108.0132 Classical Analysis and ODEs +1108.0134 Differential Geometry +1108.0135 Number Theory +1108.0136 Analysis of PDEs +1108.0142 Functional Analysis +1108.0144 Logic in Computer Science +1108.0150 Atomic Physics +1108.0153 +1108.0154 Materials Science +1108.0155 Artificial Intelligence +1108.0159 Materials Science +1108.0164 Algebraic Geometry +1108.0170 Systems and Control +1108.0174 Differential Geometry +1108.0177 Functional Analysis +1108.0183 Spectral Theory +1108.0184 Statistics Theory +1108.0189 Algebraic Topology +1108.0190 Programming Languages +1108.0191 +1108.0192 Networking and Internet Architecture +1108.0193 Strongly Correlated Electrons +1108.0194 Information Theory +1108.0197 Strongly Correlated Electrons +1108.0200 Optics +1108.0202 Number Theory +1108.0209 Molecular Networks +1108.0212 +1108.0217 Analysis of PDEs +1108.0223 Computational Complexity +1108.0226 +1108.0228 Software Engineering +1108.0229 Logic in Computer Science +1108.0230 Formal Languages and Automata Theory +1108.0231 Distributed, Parallel, and Cluster Computing +1108.0232 Formal Languages and Automata Theory +1108.0235 +1108.0239 Optimization and Control +1108.0240 Applications +1108.0243 Cryptography and Security +1108.0247 Differential Geometry +1108.0250 Phenomenology +1108.0252 Group Theory +1108.0256 Dynamical Systems +1108.0261 Social and Information Networks +1108.0262 Group Theory +1108.0263 +1108.0267 Networking and Internet Architecture +1108.0271 +1108.0274 Group Theory +1108.0276 Metric Geometry +1108.0279 Strongly Correlated Electrons +1108.0282 Representation Theory +1108.0287 Theory +1108.0289 Populations and Evolution +1108.0298 Methodology +1108.0299 Mesoscale and Nanoscale Physics +1108.0301 Applications +1108.0303 +1108.0306 Solar and Stellar Astrophysics +1108.0314 Dynamical Systems +1108.0325 +1108.0327 Symplectic Geometry +1108.0329 Programming Languages +1108.0330 Logic in Computer Science +1108.0335 Solar and Stellar Astrophysics +1108.0340 Materials Science +1108.0344 Spectral Theory +1108.0347 Information Theory +1108.0351 Representation Theory +1108.0355 Computational Engineering, Finance, and Science +1108.0357 +1108.0363 Programming Languages +1108.0370 Networking and Internet Architecture +1108.0372 Materials Science +1108.0373 Statistics Theory +1108.0377 Networking and Internet Architecture +1108.0378 Other Condensed Matter +1108.0380 Materials Science +1108.0381 Physics and Society +1108.0382 Cosmology and Nongalactic Astrophysics +1108.0384 Probability +1108.0388 Data Structures and Algorithms +1108.0396 High Energy Astrophysical Phenomena +1108.0397 Analysis of PDEs +1108.0406 Classical Analysis and ODEs +1108.0407 Superconductivity +astro-ph/0703204 +cond-mat/0602326 Soft Condensed Matter +cond-mat/0610184 Soft Condensed Matter +cs/0511082 Data Structures and Algorithms +math/0501011 Symplectic Geometry +math/0502573 Algebraic Geometry +math/0611209 Number Theory +math/0703738 Symplectic Geometry +physics/0601112 Fluid Dynamics +quant-ph/0611190 +0704.0893 +0708.2070 +0802.2522 +0804.4859 +0808.0030 Superconductivity +0812.2545 +0905.3940 Algebraic Geometry +0907.0861 Theory +0907.1277 +0907.4053 +0907.4661 Analysis of PDEs +0907.4764 Combinatorics +0909.0993 Algebraic Geometry +0910.0045 Logic in Computer Science +0910.1059 Computational Geometry +0910.2791 +0910.4222 +0911.0630 Logic in Computer Science +0911.2440 +0911.4120 Solar and Stellar Astrophysics +0911.5227 +0911.5357 Methodology +1003.4897 Analysis of PDEs +1004.0143 Commutative Algebra +1004.2417 High Energy Astrophysical Phenomena +1005.1684 Information Theory +1005.1797 Atomic Physics +1005.3631 Cosmology and Nongalactic Astrophysics +1006.0765 +1006.4687 Cosmology and Nongalactic Astrophysics +1006.5382 Disordered Systems and Neural Networks +1007.2587 Fluid Dynamics +1007.5333 Phenomenology +1008.0312 Geometric Topology +1008.4296 Functional Analysis +1009.0382 Commutative Algebra +1009.0385 Algebraic Geometry +1009.3210 Rings and Algebras +1009.4230 Theory +1009.4629 Differential Geometry +1010.0162 Probability +1010.1249 Solar and Stellar Astrophysics +1010.2626 Phenomenology +1010.4016 Other Condensed Matter +1010.4567 Strongly Correlated Electrons +1011.3288 High Energy Astrophysical Phenomena +1011.3809 +1011.3883 +1011.3922 General Physics +1011.4240 +1011.4290 +1011.4306 Phenomenology +1011.4325 Lattice +1011.4354 +1011.4378 Lattice +1011.4393 Lattice +1011.4400 Statistical Mechanics +1011.4417 Phenomenology +1011.4491 Theory +1011.4883 Lattice +1011.4892 Experiment +1011.4893 Quantum Gases +1011.4922 Phenomenology +1012.0035 Statistical Mechanics +1012.1300 Theory +1012.1870 Phenomenology +1012.4402 Theory +1012.4672 Strongly Correlated Electrons +1012.5523 Theory +1012.5728 Theory +1101.0916 Materials Science +1101.1283 +1101.2810 Phenomenology +1101.4444 Differential Geometry +1101.4868 Quantum Gases +1101.4910 Phenomenology +1101.5276 +1101.5611 +1101.5843 Theory +1101.6008 Phenomenology +1102.3428 Mesoscale and Nanoscale Physics +1102.3532 +1102.3977 Mesoscale and Nanoscale Physics +1102.3986 +1102.4376 +1102.4696 +1102.5489 Phenomenology +1103.0008 Phenomenology +1103.1269 Phenomenology +1103.1449 +1103.1632 Phenomenology +1103.1993 Theory +1103.2111 +1103.2219 Theory +1103.2880 High Energy Astrophysical Phenomena +1103.3232 Theory +1103.3773 Theory +1103.4081 +1103.4231 Quantum Gases +1103.5174 Solar and Stellar Astrophysics +1103.5699 Experiment +1103.5720 Differential Geometry +1103.5779 Cosmology and Nongalactic Astrophysics +1103.5977 Phenomenology +1104.0307 Phenomenology +1104.3404 Theory +1104.3879 +1104.5022 Theory +1104.5385 Plasma Physics +1105.0086 Number Theory +1105.0546 Solar and Stellar Astrophysics +1105.0618 High Energy Astrophysical Phenomena +1105.1419 Cosmology and Nongalactic Astrophysics +1105.1705 Phenomenology +1105.1946 +1106.0091 +1106.0328 +1106.0421 Quantum Algebra +1106.0789 Theory +1106.0835 Numerical Analysis +1106.1183 Cosmology and Nongalactic Astrophysics +1106.2163 Cosmology and Nongalactic Astrophysics +1106.2728 +1106.4088 +1106.5170 Distributed, Parallel, and Cluster Computing +1106.5292 +1107.1046 Optics +1107.1065 Algebraic Topology +1107.1233 Logic in Computer Science +1107.1247 Soft Condensed Matter +1107.1257 Computational Physics +1107.1258 Solar and Stellar Astrophysics +1107.1259 Phenomenology +1107.1265 Data Structures and Algorithms +1107.1273 Phenomenology +1107.1289 Functional Analysis +1107.1290 +1107.1292 Discrete Mathematics +1107.1293 +1107.1296 Combinatorics +1107.1297 Rings and Algebras +1107.1300 Mesoscale and Nanoscale Physics +1107.1306 +1107.1321 Computational Physics +1107.1332 Group Theory +1107.1335 Combinatorics +1107.1338 +1107.1359 Computational Geometry +1107.1360 Atmospheric and Oceanic Physics +1107.1362 Algebraic Geometry +1107.1363 Geometric Topology +1107.1364 Number Theory +1107.1365 General Physics +1107.1375 Rings and Algebras +1107.1385 Soft Condensed Matter +1107.1393 Theory +1107.1394 Group Theory +1107.1396 Quantum Algebra +1107.1397 +1107.1398 Programming Languages +1107.1399 Classical Physics +1107.1400 Phenomenology +1107.1402 Phenomenology +1107.1403 Combinatorics +1107.1408 Algebraic Topology +1107.1416 Atmospheric and Oceanic Physics +1107.1418 Phenomenology +1107.1423 Phenomenology +1107.1445 Data Analysis, Statistics and Probability +1107.1449 Rings and Algebras +1107.1450 Disordered Systems and Neural Networks +1107.1454 Biological Physics +1107.1457 Theory +1107.1460 Phenomenology +1107.1465 Representation Theory +1107.1466 +1107.1474 Analysis of PDEs +1107.1496 Superconductivity +astro-ph/0504381 +astro-ph/0606542 +astro-ph/0609405 +astro-ph/0703581 +hep-th/9403154 Theory +math/0511104 Geometric Topology +physics/0403021 Optics +quant-ph/0412127 +0710.2001 +0801.1319 Combinatorics +0801.4104 +0806.2031 Disordered Systems and Neural Networks +0807.3944 +0810.2532 +0903.4414 Algebraic Geometry +0905.0443 Functional Analysis +0905.2410 Quantum Algebra +0906.1223 Probability +0907.3755 Geometric Topology +0907.4566 Experiment +0908.1164 Differential Geometry +0908.1926 Probability +0909.1471 Algebraic Geometry +0911.0232 Optimization and Control +0912.0626 Algebraic Geometry +0912.3512 Representation Theory +1001.2366 Category Theory +1001.3046 Theory +1002.1337 Information Theory +1002.4857 Statistical Mechanics +1004.0946 Differential Geometry +1004.3310 Portfolio Management +1007.1128 +1007.2144 Statistical Mechanics +1009.0472 Theory +1009.0909 Data Structures and Algorithms +1009.1752 Mesoscale and Nanoscale Physics +1010.0326 +1010.0721 Dynamical Systems +1010.1367 +1010.3757 Physics and Society +1011.0040 Representation Theory +1011.1030 Formal Languages and Automata Theory +1011.5684 Mesoscale and Nanoscale Physics +1012.0645 +1012.1497 Differential Geometry +1012.2664 Probability +1101.3610 Quantum Gases +1101.4948 Theory +1102.3400 +1102.5742 Superconductivity +1103.0152 Theory +1103.0881 Instrumentation and Detectors +1103.1216 Instrumentation and Methods for Astrophysics +1103.3329 Superconductivity +1103.3731 Probability +1103.6188 +1104.1101 Analysis of PDEs +1104.1148 +1104.1706 High Energy Astrophysical Phenomena +1104.3717 Strongly Correlated Electrons +1104.4626 Classical Analysis and ODEs +1104.5603 Statistical Mechanics +1105.2764 +1105.3807 +1105.3922 +1105.4540 Information Theory +1106.0281 Physics and Society +1106.3973 Superconductivity +1106.4242 Mesoscale and Nanoscale Physics +1106.4355 Machine Learning +1107.0088 Discrete Mathematics +1107.2047 Materials Science +1107.2618 Statistical Mechanics +1107.2772 Strongly Correlated Electrons +1107.3524 Probability +1107.4208 Strongly Correlated Electrons +1107.5145 +1108.1199 Mesoscale and Nanoscale Physics +1108.2888 Cosmology and Nongalactic Astrophysics +1108.3211 Experiment +1108.3835 Superconductivity +1108.4240 Superconductivity +1108.4361 Computers and Society +1108.4796 Disordered Systems and Neural Networks +1108.5230 Quantum Gases +1109.0112 Fluid Dynamics +1109.1169 Numerical Analysis +1109.1916 Group Theory +1109.3175 Fluid Dynamics +1109.4160 Molecular Networks +1109.4743 High Energy Astrophysical Phenomena +1109.5383 Phenomenology +1109.5441 Category Theory +1109.5652 General Physics +1110.0111 Classical Analysis and ODEs +1110.0234 General Physics +1110.0764 Geometric Topology +1110.1584 Logic +1110.2516 Instrumentation and Methods for Astrophysics +1110.2571 Combinatorics +1110.2664 +1110.2909 Phenomenology +1110.2961 Statistics Theory +1110.3071 Phenomenology +1110.3086 Instrumentation and Detectors +1110.3441 Optimization and Control +1110.3642 Phenomenology +1110.3759 +1110.3784 Cosmology and Nongalactic Astrophysics +1110.3810 Dynamical Systems +1110.3811 Probability +1110.3813 Probability +1110.3814 Theory +1110.3819 Fluid Dynamics +1110.3821 Cosmology and Nongalactic Astrophysics +1110.3825 Phenomenology +1110.3827 Probability +1110.3844 Cryptography and Security +1110.3849 Combinatorics +1110.3850 Data Structures and Algorithms +1110.3851 Representation Theory +1110.3852 Chaotic Dynamics +1110.3853 Programming Languages +1110.3855 Information Theory +1110.3859 Representation Theory +1110.3860 Social and Information Networks +1110.3869 High Energy Astrophysical Phenomena +1110.3870 Earth and Planetary Astrophysics +1110.3871 Strongly Correlated Electrons +1110.3875 Cryptography and Security +1110.3883 Mesoscale and Nanoscale Physics +1110.3890 Materials Science +1110.3891 Accelerator Physics +1110.3900 Analysis of PDEs +1110.3903 +1110.3905 High Energy Astrophysical Phenomena +1110.3906 Phenomenology +1110.3910 Lattice +1110.3914 Phenomenology +1110.3917 Learning +1110.3922 Spectral Theory +1110.3923 +1110.3926 Complex Variables +1110.3931 +1110.3933 Neurons and Cognition +1110.3939 Computer Science and Game Theory +1110.3941 Quantum Gases +1110.3943 Populations and Evolution +1110.3944 Statistical Mechanics +1110.3954 Cosmology and Nongalactic Astrophysics +1110.3956 Strongly Correlated Electrons +1110.3959 Emerging Technologies +1110.3961 Multiagent Systems +1110.3965 +1110.3966 +1110.3968 General Physics +1110.3969 Other Computer Science +1110.3974 Fluid Dynamics +1110.3975 Fluid Dynamics +1110.3980 Fluid Dynamics +1110.3985 Fluid Dynamics +1110.3987 Fluid Dynamics +1110.3990 Operator Algebras +1110.3992 Fluid Dynamics +1110.3993 Fluid Dynamics +1110.4001 Dynamical Systems +1110.4003 Differential Geometry +1110.4005 +1110.4007 Fluid Dynamics +1110.4012 Solar and Stellar Astrophysics +1110.4014 Combinatorics +1110.4015 Social and Information Networks +1110.4017 Functional Analysis +1110.4018 Atmospheric and Oceanic Physics +1110.4030 Chemical Physics +1110.4034 Logic in Computer Science +1110.4040 Atomic Physics +1110.4044 High Energy Astrophysical Phenomena +1110.4046 Numerical Analysis +1110.4049 Number Theory +1110.4054 Fluid Dynamics +1110.4056 +1110.4059 Combinatorics +1110.4064 Solar and Stellar Astrophysics +1110.4065 Spectral Theory +1110.4068 Logic +1110.4070 Populations and Evolution +1110.4075 Soft Condensed Matter +1110.4076 Artificial Intelligence +1110.4078 Phenomenology +1110.4079 Probability +1110.4084 Optimization and Control +1110.4086 Algebraic Topology +1110.4091 Strongly Correlated Electrons +1110.4092 Quantum Gases +1110.4095 General Physics +1110.4098 Number Theory +1110.4100 Analysis of PDEs +gr-qc/0505127 +math-ph/0308005 +math-ph/0607008 +math/0102223 Combinatorics +math/0508371 Probability +math/0511537 Combinatorics +math/0609601 General Topology +math/0610425 Probability +math/0611924 Differential Geometry +nlin/0010045 Chaotic Dynamics +nlin/0104009 Chaotic Dynamics +nlin/0304034 Chaotic Dynamics +0708.1771 +0805.4731 +0806.0463 Algebraic Geometry +0809.3797 +0810.3046 Phenomenology +0902.2790 Theory +0904.4275 Functional Analysis +0905.1197 +0905.4107 Algebraic Geometry +0906.1402 Spectral Theory +0907.2451 Statistics Theory +0909.0370 +0911.2846 Theory +0911.4528 +0912.1408 +1002.0832 Machine Learning +1002.3468 +1002.4275 +1003.0718 Differential Geometry +1003.4703 Spectral Theory +1003.4738 Earth and Planetary Astrophysics +1004.2987 Mesoscale and Nanoscale Physics +1004.5529 Information Theory +1007.0245 Earth and Planetary Astrophysics +1007.2002 Classical Analysis and ODEs +1008.1550 Methodology +1008.3717 Astrophysics of Galaxies +1008.3883 Soft Condensed Matter +1009.0145 Probability +1009.2690 Phenomenology +1009.4383 Social and Information Networks +1009.5139 Fluid Dynamics +1010.4611 Metric Geometry +1010.5559 Mesoscale and Nanoscale Physics +1011.2313 Performance +1011.3434 Number Theory +1011.3906 Soft Condensed Matter +1012.0085 +1012.4705 Solar and Stellar Astrophysics +1012.5327 Information Theory +1012.5347 Probability +1101.1394 Algebraic Geometry +1101.1660 Dynamical Systems +1102.3261 +1103.3373 Instrumentation and Methods for Astrophysics +1103.5748 Theory +1104.1138 Statistical Mechanics +1104.3702 +1104.4455 Probability +1104.5050 Materials Science +1105.0030 Quantum Gases +1105.2645 Solar and Stellar Astrophysics +1105.3771 Exactly Solvable and Integrable Systems +1105.4090 +1106.4971 Quantum Gases +1106.5242 Applications +1106.5409 +1106.6232 Cosmology and Nongalactic Astrophysics +1106.6240 +1106.6248 Phenomenology +1107.0795 Materials Science +1107.2764 Phenomenology +1107.2960 Spectral Theory +1108.0778 Experiment +1108.2968 Phenomenology +1108.4133 Networking and Internet Architecture +1108.4654 Theory +1108.4716 Solar and Stellar Astrophysics +1108.5247 Atomic and Molecular Clusters +1108.5505 Optimization and Control +1108.5669 Computer Science and Game Theory +1108.5724 Systems and Control +1108.5747 General Topology +1108.5751 General Topology +1108.5933 Commutative Algebra +1108.6031 Optimization and Control +1108.6223 Software Engineering +1109.0032 Digital Libraries +1109.0094 Data Structures and Algorithms +1109.0148 Solar and Stellar Astrophysics +1109.0179 Phenomenology +1109.0281 Astrophysics of Galaxies +1109.0291 +1109.0296 Popular Physics +1109.0310 Materials Science +1109.0311 Phenomenology +1109.0312 Computational Geometry +1109.0313 Functional Analysis +1109.0315 Plasma Physics +1109.0321 Solar and Stellar Astrophysics +1109.0322 Methodology +1109.0323 Programming Languages +1109.0324 Software Engineering +1109.0326 Classical Analysis and ODEs +1109.0327 Materials Science +1109.0329 Optics +1109.0331 Algebraic Geometry +1109.0333 Logic in Computer Science +1109.0334 Materials Science +1109.0335 Theory +1109.0337 Information Theory +1109.0339 +1109.0341 Superconductivity +1109.0345 Computational Geometry +1109.0352 Algebraic Topology +1109.0353 Algebraic Topology +1109.0359 Cryptography and Security +1109.0364 Numerical Analysis +1109.0365 Mesoscale and Nanoscale Physics +1109.0367 Optimization and Control +1109.0375 Logic in Computer Science +1109.0379 +1109.0380 Strongly Correlated Electrons +1109.0385 Numerical Analysis +1109.0387 +1109.0389 Computational Geometry +1109.0391 Mesoscale and Nanoscale Physics +1109.0413 Number Theory +1109.0414 Information Theory +1109.0416 Instrumentation and Methods for Astrophysics +1109.0417 Combinatorics +1109.0418 Optimization and Control +1109.0420 Information Retrieval +1109.0423 Biomolecules +1109.0428 Systems and Control +1109.0429 Classical Analysis and ODEs +1109.0432 Phenomenology +1109.0434 Atomic Physics +1109.0437 +1109.0439 Algebraic Geometry +1109.0445 Solar and Stellar Astrophysics +1109.0449 Probability +1109.0450 Functional Analysis +1109.0451 Number Theory +1109.0455 Machine Learning +1109.0456 Software Engineering +1109.0461 +1109.0462 Superconductivity +1109.0464 Experiment +1109.0466 Classical Analysis and ODEs +1109.0472 Atmospheric and Oceanic Physics +1109.0473 Solar and Stellar Astrophysics +1109.0476 Algebraic Geometry +1109.0477 Functional Analysis +1109.0483 Cosmology and Nongalactic Astrophysics +1109.0488 Functional Analysis +1109.0490 Lattice +1109.0497 Statistical Mechanics +1109.0507 Cryptography and Security +1109.0514 Cosmology and Nongalactic Astrophysics +1109.0516 Dynamical Systems +1109.0520 Differential Geometry +1109.0522 Combinatorics +1109.0524 Statistics Theory +1109.0529 Cosmology and Nongalactic Astrophysics +1109.0530 Information Retrieval +math/0612094 Probability +quant-ph/0609077 +0709.0121 Probability +0710.1370 Combinatorics +0807.1336 +0807.3579 Materials Science +0810.1168 Statistical Mechanics +0810.1181 +0812.4253 Mesoscale and Nanoscale Physics +0812.4764 Numerical Analysis +0901.0350 Biological Physics +0901.4065 Mesoscale and Nanoscale Physics +0902.2069 Astrophysics of Galaxies +0902.3301 Biological Physics +0905.4230 Probability +0906.3343 Statistical Mechanics +0907.2043 Quantitative Methods +0908.0734 High Energy Astrophysical Phenomena +0910.3632 Probability +0910.4963 Theory +0910.5164 Differential Geometry +0911.2657 Superconductivity +1001.0001 Information Theory +1003.1600 Populations and Evolution +1003.4216 Portfolio Management +1003.4225 Number Theory +1003.5239 Networking and Internet Architecture +1003.6003 Analysis of PDEs +1004.0485 Functional Analysis +1004.0854 Superconductivity +1004.1387 Superconductivity +1005.1699 Populations and Evolution +1005.2073 +1005.5087 Analysis of PDEs +1006.1524 Instrumentation and Methods for Astrophysics +1006.4516 +1007.0561 +1007.5381 Strongly Correlated Electrons +1009.2387 Dynamical Systems +1009.2541 Operator Algebras +1010.3668 Probability +1010.3851 Cosmology and Nongalactic Astrophysics +1010.4355 Probability +1010.5026 Algebraic Geometry +1010.5964 +1011.0946 Cosmology and Nongalactic Astrophysics +1011.1546 Superconductivity +1011.2117 +1011.3878 Dynamical Systems +1011.5455 Geometric Topology +1011.5827 Strongly Correlated Electrons +1012.2656 +1012.2745 Soft Condensed Matter +1012.4475 +1101.1626 +1101.2574 Phenomenology +1101.4873 Probability +1101.4885 +1101.5145 Theory +1102.0481 Number Theory +1102.0878 Algebraic Geometry +1102.1046 Optics +1102.2824 Statistical Mechanics +1102.4930 Information Theory +1102.5272 Superconductivity +1103.0172 Databases +1103.0800 Systems and Control +1103.1845 Analysis of PDEs +1103.2165 Computational Complexity +1103.5332 Earth and Planetary Astrophysics +1104.2866 +1104.5506 Optics +1104.5596 Commutative Algebra +1104.5695 +1105.0236 Materials Science +1105.0540 Machine Learning +1105.0668 Distributed, Parallel, and Cluster Computing +1105.0748 +1105.0830 Social and Information Networks +1105.0847 Number Theory +1105.0848 Number Theory +1105.0850 Number Theory +1105.0927 Phenomenology +1105.0929 Astrophysics of Galaxies +1105.0930 Materials Science +1105.0934 Optimization and Control +1105.0949 Materials Science +1105.0957 +1105.0958 +1105.0959 Instrumentation and Methods for Astrophysics +1105.0962 Rings and Algebras +1105.0963 Medical Physics +1105.0964 +1105.0966 Programming Languages +1105.0967 +1105.0974 Artificial Intelligence +1105.0975 Earth and Planetary Astrophysics +1105.0981 Populations and Evolution +1105.0987 Geometric Topology +1105.0988 +1105.0991 Discrete Mathematics +1105.0994 +1105.0998 Materials Science +1105.0999 Soft Condensed Matter +1105.1001 Mesoscale and Nanoscale Physics +1105.1009 Statistical Mechanics +1105.1013 Soft Condensed Matter +1105.1014 Hardware Architecture +1105.1017 Algebraic Geometry +1105.1028 Robotics +1105.1029 Operator Algebras +1105.1042 +1105.1044 Strongly Correlated Electrons +1105.1045 Solar and Stellar Astrophysics +1105.1048 Group Theory +1105.1049 Materials Science +1105.1051 +1105.1054 Group Theory +1105.1055 Probability +1105.1065 Superconductivity +1105.1066 Solar and Stellar Astrophysics +1105.1067 Combinatorics +1105.1070 General Physics +1105.1079 Chemical Physics +1105.1081 Cosmology and Nongalactic Astrophysics +1105.1085 Phenomenology +1105.1087 +1105.1088 Combinatorics +1105.1095 Probability +1105.1096 Mesoscale and Nanoscale Physics +1105.1097 Materials Science +1105.1099 Combinatorics +1105.1102 Soft Condensed Matter +1105.1104 Strongly Correlated Electrons +1105.1106 Analysis of PDEs +1105.1108 Chaotic Dynamics +1105.1109 Data Structures and Algorithms +1105.1120 Solar and Stellar Astrophysics +1105.1121 Analysis of PDEs +1105.1124 Functional Analysis +1105.1125 Mesoscale and Nanoscale Physics +1105.1126 Solar and Stellar Astrophysics +1105.1131 Numerical Analysis +1105.1134 +1105.1136 Algebraic Geometry +1105.1141 Cryptography and Security +1105.1156 Strongly Correlated Electrons +gr-qc/0702095 +hep-th/0701219 Theory +math/0702079 Analysis of PDEs +0705.3857 Spectral Theory +0706.0243 Quantum Algebra +0811.0456 +0902.2415 Physics and Society +0903.1587 Geometric Topology +0907.1520 Rings and Algebras +0909.4307 Solar and Stellar Astrophysics +0910.1225 Solar and Stellar Astrophysics +0910.2377 Materials Science +0910.4230 Superconductivity +0911.2459 Differential Geometry +1003.5327 Networking and Internet Architecture +1004.3396 Mesoscale and Nanoscale Physics +1005.0361 Neurons and Cognition +1005.0558 Number Theory +1005.0560 Number Theory +1005.1528 Number Theory +1005.1533 Number Theory +1005.1535 Number Theory +1005.3958 Solar and Stellar Astrophysics +1006.4286 Strongly Correlated Electrons +1007.0058 Operator Algebras +1007.1076 Algebraic Geometry +1007.1932 Operator Algebras +1008.2085 Cosmology and Nongalactic Astrophysics +1009.3040 Representation Theory +1010.2135 Representation Theory +1011.1977 Optics +1011.2435 Adaptation and Self-Organizing Systems +1011.4662 Commutative Algebra +1012.2576 Algebraic Geometry +1101.2127 Statistical Mechanics +1102.0663 Exactly Solvable and Integrable Systems +1102.1227 Information Theory +1102.3139 Chaotic Dynamics +1102.4207 Mesoscale and Nanoscale Physics +1103.0050 Chaotic Dynamics +1103.0774 +1103.3810 Combinatorics +1103.4377 K-Theory and Homology +1103.4949 +1103.5342 Quantum Gases +1103.5709 +1104.5247 Physics and Society +1105.3701 Analysis of PDEs +1105.4311 Plasma Physics +1106.0833 History and Overview +1106.3028 Phenomenology +1106.4256 Superconductivity +1106.4454 Data Structures and Algorithms +1106.4765 Soft Condensed Matter +1106.5561 Statistical Mechanics +1106.5951 Plasma Physics +1107.1596 Theory +1107.3434 Mesoscale and Nanoscale Physics +1107.4704 Dynamical Systems +1107.5419 Distributed, Parallel, and Cluster Computing +1107.5990 Optics +1108.0028 Instrumentation and Methods for Astrophysics +1108.0140 Phenomenology +1108.0284 Phenomenology +1108.0775 Learning +1108.1113 Theory +1108.3056 Soft Condensed Matter +1108.3227 Geometric Topology +1108.3273 Differential Geometry +1108.3709 Number Theory +1108.3710 Number Theory +1108.4193 +1108.4522 Other Condensed Matter +1108.5638 Superconductivity +1109.0252 +1109.2031 Solar and Stellar Astrophysics +1109.2798 Quantum Gases +1109.3149 +1109.5600 Probability +1110.1943 Phenomenology +1110.1966 Experiment +1110.2510 Soft Condensed Matter +1110.3627 Statistics Theory +1110.5182 Phenomenology +1111.0297 Earth and Planetary Astrophysics +1111.0420 Statistical Mechanics +1111.3362 Astrophysics of Galaxies +1111.3848 Number Theory +1111.4388 Probability +1111.4813 Combinatorics +1111.5106 Mesoscale and Nanoscale Physics +1111.5284 Algebraic Geometry +1111.5318 History and Philosophy of Physics +1111.5337 Quantum Gases +1111.5339 Algebraic Geometry +1111.5340 Computational Geometry +1111.5342 Algebraic Geometry +1111.5347 +1111.5348 Operating Systems +1111.5354 Algebraic Geometry +1111.5355 Materials Science +1111.5356 +1111.5365 +1111.5368 Phenomenology +1111.5370 Phenomenology +1111.5382 Physics and Society +1111.5386 Data Structures and Algorithms +1111.5391 Distributed, Parallel, and Cluster Computing +1111.5395 Differential Geometry +1111.5396 Analysis of PDEs +1111.5397 Risk Management +1111.5399 +1111.5400 Physics Education +1111.5401 Number Theory +1111.5404 Number Theory +1111.5407 Phenomenology +1111.5409 Differential Geometry +1111.5412 Combinatorics +1111.5414 Data Structures and Algorithms +1111.5419 Applications +1111.5420 Statistics Theory +1111.5425 +1111.5429 Applications +1111.5434 +1111.5436 High Energy Astrophysical Phenomena +1111.5447 Group Theory +1111.5451 Dynamical Systems +1111.5453 Materials Science +1111.5456 Soft Condensed Matter +1111.5466 Materials Science +1111.5467 Formal Languages and Automata Theory +1111.5468 Biomolecules +1111.5484 Information Theory +1111.5487 Applications +1111.5495 Algebraic Topology +1111.5496 Combinatorics +1111.5500 Human-Computer Interaction +1111.5502 Software Engineering +1111.5507 Fluid Dynamics +1111.5510 Fluid Dynamics +1111.5514 Algebraic Geometry +1111.5518 Databases +1111.5526 Differential Geometry +1111.5527 Solar and Stellar Astrophysics +1111.5530 General Physics +1111.5533 Probability +1111.5538 Probability +1111.5541 Quantum Gases +1111.5545 Instrumentation and Methods for Astrophysics +1111.5548 Databases +1111.5551 Applications +1111.5556 Materials Science +1111.5563 Applications +1111.5572 Data Structures and Algorithms +1111.5576 Theory +1111.5586 Biomolecules +1111.5590 Earth and Planetary Astrophysics +1111.5592 Number Theory +1111.5593 Computers and Society +1111.5596 Lattice +1111.5598 Combinatorics +1111.5599 Earth and Planetary Astrophysics +1111.5601 Group Theory +1111.5604 Rings and Algebras +math/0308222 Geometric Topology +math/0309367 General Mathematics +math/0602255 Algebraic Geometry +nlin/0509053 Chaotic Dynamics +quant-ph/0508145 +0704.1829 Discrete Mathematics +0704.1866 Analysis of PDEs +0707.0124 Functional Analysis +0801.0219 Functional Analysis +0803.3933 Combinatorics +0807.4706 Representation Theory +0808.1790 Superconductivity +0809.2060 Phenomenology +0811.2498 +0901.1171 Classical Analysis and ODEs +0901.1725 Spectral Theory +0901.3029 Functional Analysis +0902.0186 Metric Geometry +0903.3653 Geometric Topology +0905.1503 Optics +0906.3984 Optics +0909.5541 Statistical Mechanics +0910.1383 Representation Theory +0910.3797 Analysis of PDEs +0910.5367 Geometric Topology +0911.4522 Information Theory +0912.0006 Cosmology and Nongalactic Astrophysics +0912.0260 Solar and Stellar Astrophysics +0912.4058 Atomic Physics +1001.0612 Probability +1002.0042 Statistics Theory +1002.0185 Theory +1002.4141 Geometric Topology +1002.4622 Theory +1003.0760 Materials Science +1003.1138 Phenomenology +1003.3548 Probability +1003.4585 Experiment +1003.5826 Optimization and Control +1004.2419 Mesoscale and Nanoscale Physics +1004.4169 Portfolio Management +1004.4886 Combinatorics +1005.3293 Theory +1005.5144 +1005.5656 Algebraic Geometry +1006.0772 Physics and Society +1006.1509 Strongly Correlated Electrons +1006.2245 Phenomenology +1006.3118 Optics +1006.5532 Functional Analysis +1006.5808 Representation Theory +1007.0378 Soft Condensed Matter +1007.0522 Information Theory +1007.2329 Pattern Formation and Solitons +1007.2996 Phenomenology +1007.3042 High Energy Astrophysical Phenomena +1007.3155 +1007.3229 Networking and Internet Architecture +1007.3443 Cosmology and Nongalactic Astrophysics +1007.4019 Combinatorics +1007.4121 +1007.4434 Analysis of PDEs +1007.4954 High Energy Astrophysical Phenomena +1008.0552 Plasma Physics +1008.0745 Theory +1008.3719 Algebraic Geometry +1008.4946 Dynamical Systems +1009.0013 Cosmology and Nongalactic Astrophysics +1009.0823 Other Condensed Matter +1009.1263 Analysis of PDEs +1009.2179 Cosmology and Nongalactic Astrophysics +1009.3426 +1009.3686 +1009.3853 Phenomenology +1009.4957 +1009.5158 Information Theory +1009.5264 Earth and Planetary Astrophysics +1009.5424 Mesoscale and Nanoscale Physics +1009.5959 Information Theory +1010.0569 Mesoscale and Nanoscale Physics +1010.0680 +1010.1495 +1010.1721 Astrophysics of Galaxies +1010.2714 Cosmology and Nongalactic Astrophysics +1010.3934 Analysis of PDEs +1010.4516 Phenomenology +1010.6222 +1011.0322 Populations and Evolution +1011.0327 Materials Science +1011.1180 Solar and Stellar Astrophysics +1011.3349 Commutative Algebra +1011.3729 Quantum Gases +1011.3797 Operator Algebras +1011.4259 Quantum Gases +1011.4551 Mesoscale and Nanoscale Physics +1011.4655 Theory +1011.5508 Phenomenology +1011.5676 +1011.5706 Optics +1011.5731 Symplectic Geometry +1011.5756 Soft Condensed Matter +1011.5819 Theory +1012.0798 +1012.0802 Combinatorics +1012.2011 Statistical Mechanics +1012.2103 Theory +1012.2913 Theory +1012.2976 Numerical Analysis +1012.3398 Phenomenology +1012.4922 Phenomenology +1012.5031 Experiment +1012.5634 Phenomenology +1012.5712 +1101.0239 Classical Analysis and ODEs +1101.0484 Biological Physics +1101.2090 +1101.2265 Solar and Stellar Astrophysics +1101.2616 +1101.2853 +1101.2982 Classical Analysis and ODEs +1101.3382 Symbolic Computation +1101.3906 Analysis of PDEs +1101.4111 Combinatorics +1101.4998 Phenomenology +1101.5474 Theory +1102.1101 Computer Vision and Pattern Recognition +1102.1128 Probability +1102.1166 Theory +1102.2046 Statistics Theory +1102.2377 Algebraic Geometry +1102.2570 Functional Analysis +1102.2615 Functional Analysis +1102.2623 Social and Information Networks +1102.2630 Mesoscale and Nanoscale Physics +1102.3212 High Energy Astrophysical Phenomena +1102.3308 Analysis of PDEs +1102.3401 Dynamical Systems +1102.3514 Optics +1102.3783 Algebraic Topology +1102.3905 Probability +1102.3919 Genomics +1102.3939 Information Theory +1102.3940 Materials Science +1102.3947 Information Theory +1102.3951 Representation Theory +1102.3953 Solar and Stellar Astrophysics +1102.3954 Solar and Stellar Astrophysics +1102.3956 Probability +1102.3957 Classical Analysis and ODEs +1102.3958 +1102.3959 +1102.3960 +1102.3963 +1102.3964 +1102.3965 +1102.3970 Complex Variables +1102.3971 Cryptography and Security +1102.3976 Solar and Stellar Astrophysics +1102.3978 Representation Theory +1102.3979 Probability +1102.3982 Mesoscale and Nanoscale Physics +1102.3984 Number Theory +1102.3987 Combinatorics +1102.3992 Probability +1102.3994 +1102.3995 Analysis of PDEs +1102.3998 Functional Analysis +1102.3999 Statistics Theory +1102.4004 Mesoscale and Nanoscale Physics +1102.4006 Statistical Mechanics +1102.4008 Analysis of PDEs +1102.4009 Phenomenology +1102.4015 Genomics +1102.4018 +1102.4022 Analysis of PDEs +1102.4039 Populations and Evolution +1102.4042 +1102.4052 Solar and Stellar Astrophysics +1102.4057 Materials Science +1102.4061 Dynamical Systems +1102.4062 Analysis of PDEs +1102.4064 Representation Theory +1102.4066 Lattice +1102.4072 High Energy Astrophysical Phenomena +1102.4077 Medical Physics +1102.4081 Metric Geometry +1102.4083 Algebraic Geometry +1102.4084 Metric Geometry +1102.4087 Algebraic Geometry +1102.4089 Number Theory +1102.4092 Pattern Formation and Solitons +1102.4097 Numerical Analysis +1102.4100 Discrete Mathematics +1102.4103 Mesoscale and Nanoscale Physics +1102.4104 Databases +1102.4106 Networking and Internet Architecture +1102.4107 Group Theory +1102.4108 Representation Theory +1102.4112 Classical Physics +1102.4114 +1102.4117 Logic in Computer Science +1102.4118 Logic in Computer Science +1102.4119 Logic in Computer Science +1102.4120 Computer Science and Game Theory +1102.4121 Logic in Computer Science +1102.4128 Analysis of PDEs +1102.4130 +1102.4135 Social and Information Networks +1102.4137 Information Theory +1102.4138 Statistical Mechanics +1102.4139 Algebraic Geometry +1102.4140 Data Analysis, Statistics and Probability +1102.4147 Solar and Stellar Astrophysics +1102.4153 Probability +1102.4160 Phenomenology +1102.4161 Operator Algebras +1102.4162 Software Engineering +1102.4163 +1102.4169 Analysis of PDEs +1102.4172 Representation Theory +1102.4177 Probability +1102.4180 Robotics +1102.4185 Quantum Algebra +1102.4188 Rings and Algebras +1102.4200 Lattice +1102.4201 Fluid Dynamics +1102.4212 Metric Geometry +1102.4216 Differential Geometry +1102.4218 Analysis of PDEs +1102.4224 Mesoscale and Nanoscale Physics +1102.4225 Logic in Computer Science +1102.4227 Optics +1102.4228 Cosmology and Nongalactic Astrophysics +1102.4235 General Physics +1102.4236 Cosmology and Nongalactic Astrophysics +1102.4238 +1102.4240 Learning +1102.4244 Quantum Gases +1102.4250 Representation Theory +1102.4251 Differential Geometry +1102.4252 Soft Condensed Matter +1102.4257 Probability +1102.4258 Computer Vision and Pattern Recognition +1102.4263 Differential Geometry +1102.4264 Strongly Correlated Electrons +1102.4268 Analysis of PDEs +1102.4271 Soft Condensed Matter +1102.4272 Information Theory +1102.4278 Algebraic Topology +1102.4279 Analysis of PDEs +1102.4281 Geometric Topology +1102.4290 Statistical Mechanics +1102.4292 Combinatorics +1102.4294 Algebraic Geometry +1102.4302 Functional Analysis +1102.4303 Chaotic Dynamics +1102.4309 Functional Analysis +1102.4310 Dynamical Systems +1102.4311 Data Structures and Algorithms +1102.4314 Algebraic Geometry +1102.4315 Formal Languages and Automata Theory +1102.4321 +1102.4323 Geophysics +1102.4325 Functional Analysis +1102.4326 Cryptography and Security +astro-ph/0407330 +hep-ph/0307253 Phenomenology +hep-ph/9810511 Phenomenology +hep-th/0202036 Theory +hep-th/0507266 Theory +math-ph/0407003 +math-ph/0609038 +math/0405055 Dynamical Systems +math/0406114 Dynamical Systems +math/0603321 Analysis of PDEs +math/0603586 Functional Analysis +math/0603597 Functional Analysis +math/0610354 Dynamical Systems +math/0701740 Differential Geometry +math/0702455 Differential Geometry +physics/0407011 Plasma Physics +physics/0407015 Plasma Physics +physics/0506130 Classical Physics +physics/0508186 Physics Education +1008.4222 Analysis of PDEs +1109.3068 Theory +1110.0357 General Mathematics +1110.0451 Phenomenology +1110.1743 General Mathematics +1110.3274 General Mathematics +1110.5116 High Energy Astrophysical Phenomena +1110.5425 Combinatorics +0704.3251 Differential Geometry +0704.3846 Soft Condensed Matter +0707.1351 +0707.1513 +0707.3293 Materials Science +0709.0034 Algebraic Geometry +0709.0216 +0710.1412 Group Theory +0711.0957 Strongly Correlated Electrons +0711.4091 Theory +0712.0061 Superconductivity +0712.0540 Phenomenology +0712.2275 +0801.4259 Operator Algebras +0802.2578 +0803.4004 +0804.0912 Phenomenology +0804.1200 Group Theory +0804.1206 Group Theory +0805.4381 Atomic Physics +0808.1962 +0808.3366 +0810.5686 +0811.2187 Metric Geometry +0811.4532 Dynamical Systems +0812.1511 Operator Algebras +0901.0911 Cryptography and Security +0902.2472 Probability +0902.3977 Methodology +0902.4097 +0902.4332 Number Theory +0904.0151 Astrophysics of Galaxies +0905.0875 +0905.1550 Theory +0905.1987 Superconductivity +0905.2910 +0905.3055 Solar and Stellar Astrophysics +0905.3543 Theory +0906.1541 Number Theory +0906.2349 +0906.2535 Functional Analysis +0906.5033 Theory +0907.2430 Number Theory +0907.3560 Number Theory +0907.4016 +0907.4728 Statistics Theory +0907.4740 Digital Libraries +0907.5462 Fluid Dynamics +0908.0195 High Energy Astrophysical Phenomena +0908.0972 Phenomenology +0908.2098 Methodology +0909.1518 Functional Analysis +0909.3111 Mesoscale and Nanoscale Physics +0909.4029 Analysis of PDEs +0910.5066 Solar and Stellar Astrophysics +0911.0129 Representation Theory +0911.0185 Functional Analysis +0911.0623 Complex Variables +0911.0925 +0911.3395 Theory +0911.3760 Combinatorics +0911.4351 Combinatorics +0911.4719 High Energy Astrophysical Phenomena +0911.4930 +0912.1572 Instrumentation and Methods for Astrophysics +0912.1979 Superconductivity +0912.2387 Metric Geometry +0912.3994 Analysis of PDEs +0912.4457 Lattice +0912.4750 Cosmology and Nongalactic Astrophysics +1001.0756 +1001.4538 Cosmology and Nongalactic Astrophysics +1001.4635 Cosmology and Nongalactic Astrophysics +1002.1049 Differential Geometry +1002.4629 Mesoscale and Nanoscale Physics +1003.2201 +1003.2920 Computational Finance +1003.3072 Mesoscale and Nanoscale Physics +1003.3321 Lattice +1003.4383 +1003.5236 Differential Geometry +1003.5778 K-Theory and Homology +1004.0326 +1004.2201 Statistical Mechanics +1004.3020 Computational Complexity +1005.0956 Phenomenology +1005.1213 Software Engineering +1005.1496 +1005.2394 Number Theory +1005.3844 Phenomenology +1005.4126 Instrumentation and Methods for Astrophysics +1005.5347 +1005.5531 +1006.0014 Cosmology and Nongalactic Astrophysics +1006.0257 +1006.0497 Algebraic Geometry +1006.0563 Phenomenology +1006.0966 Quantum Gases +1006.1203 Phenomenology +1006.1288 Learning +1006.1629 Phenomenology +1006.2093 +1006.2132 Phenomenology +1006.2193 Combinatorics +1006.2483 Phenomenology +1006.2893 +1006.3107 Mesoscale and Nanoscale Physics +1006.3346 Theory +1006.4074 Theory +1006.4264 Theory +1006.4764 +1006.5297 +1006.5412 +1006.5459 Theory +1007.0553 Theory +1007.0814 Phenomenology +1007.0860 Lattice +1007.1327 Phenomenology +1007.1728 Phenomenology +1007.1847 Quantum Gases +1007.2041 Differential Geometry +1007.2141 Phenomenology +1007.2184 Theory +1007.2244 Experiment +1007.2688 Phenomenology +1007.3083 Phenomenology +1007.3154 Combinatorics +1007.3228 Phenomenology +1007.4186 Materials Science +1007.4839 Phenomenology +1007.5183 Phenomenology +1007.5499 Theory +1008.0007 Quantum Gases +1008.0037 +1008.0051 Fluid Dynamics +1008.0167 Phenomenology +1008.0714 Quantum Gases +1008.1158 +1008.1282 High Energy Astrophysical Phenomena +1008.1404 Phenomenology +1008.1911 +1008.2685 Phenomenology +1008.2752 Theory +1008.2763 Phenomenology +1008.3129 Phenomenology +1008.3165 Phenomenology +1008.3435 Theory +1008.3892 Statistical Mechanics +1008.4064 Phenomenology +1008.4226 Solar and Stellar Astrophysics +1008.4292 Commutative Algebra +1008.4323 Superconductivity +1008.4531 Phenomenology +1008.4552 Statistical Mechanics +1008.4836 +1008.4919 +1008.4953 Lattice +1008.5059 +1008.5064 Theory +1009.0015 +1009.0190 Theory +1009.0362 Mesoscale and Nanoscale Physics +1009.0531 Fluid Dynamics +1009.1054 Theory +1009.1793 Strongly Correlated Electrons +1009.1885 Theory +1009.2141 Phenomenology +1009.2342 Phenomenology +1009.2442 Theory +1009.2455 Cosmology and Nongalactic Astrophysics +1009.2624 Theory +1009.2834 +1009.3312 Phenomenology +1009.3408 Lattice +1009.3781 +1009.3838 Phenomenology +1009.3938 Theory +1009.4182 +1009.4829 Phenomenology +1009.4835 Statistical Finance +1009.4890 Combinatorics +1009.5052 Mesoscale and Nanoscale Physics +1009.5414 Theory +1009.5450 Phenomenology +1009.5594 Phenomenology +1009.5687 Analysis of PDEs +1009.5827 Phenomenology +1009.5875 Solar and Stellar Astrophysics +1009.5946 Disordered Systems and Neural Networks +1009.5950 Experiment +1009.6012 Phenomenology +1009.6137 Phenomenology +1010.0087 Theory +1010.0095 Phenomenology +1010.0098 Phenomenology +1010.0214 Phenomenology +1010.0682 Strongly Correlated Electrons +1010.1909 +1010.1912 Phenomenology +1010.1924 Phenomenology +1010.2068 Theory +1010.2086 +1010.2161 Phenomenology +1010.2207 +1010.2293 Phenomenology +1010.2655 Astrophysics of Galaxies +1010.2757 Digital Libraries +1010.2901 +1010.2945 Phenomenology +1010.3561 Theory +1010.3848 Lattice +1010.3960 Cosmology and Nongalactic Astrophysics +1010.4325 +1010.4575 +1010.4583 +1010.5147 Mesoscale and Nanoscale Physics +1010.5612 Cosmology and Nongalactic Astrophysics +1010.5679 High Energy Astrophysical Phenomena +1010.5755 Cosmology and Nongalactic Astrophysics +1010.5815 Phenomenology +1011.1428 Phenomenology +1011.1673 Cosmology and Nongalactic Astrophysics +1011.2067 Optics +1011.2221 +1011.2718 Phenomenology +1011.3007 Mesoscale and Nanoscale Physics +1011.3016 Phenomenology +1011.3021 Materials Science +1011.3120 Digital Libraries +1011.3130 Lattice +1011.3237 Phenomenology +1011.3624 Materials Science +1011.5205 +1011.5209 Computation and Language +1011.5727 Theory +1011.6574 Superconductivity +1012.1629 +1012.2353 Lattice +1012.3453 Probability +1012.4035 +1012.4654 Combinatorics +1012.4950 Superconductivity +1012.5578 +1101.0191 +1101.0719 Atomic Physics +1101.1576 Analysis of PDEs +1101.1788 Superconductivity +1101.2951 Number Theory +1101.3272 Other Condensed Matter +1101.4644 General Physics +1101.5334 Databases +1101.5565 Commutative Algebra +1101.5628 Instrumentation and Methods for Astrophysics +1101.5631 Experiment +1101.5632 Learning +1101.5635 Physics and Society +1101.5649 Superconductivity +1101.5650 Astrophysics of Galaxies +1101.5652 Logic +1101.5653 Astrophysics of Galaxies +1101.5658 Geometric Topology +1101.5661 +1101.5662 Number Theory +1101.5665 +1101.5668 Databases +1101.5669 Cosmology and Nongalactic Astrophysics +1101.5683 Materials Science +1101.5685 Functional Analysis +1101.5687 Computer Vision and Pattern Recognition +1101.5688 Soft Condensed Matter +1101.5689 +1101.5701 +1101.5704 Number Theory +1101.5705 Logic +1101.5709 Group Theory +1101.5710 Group Theory +1101.5712 Materials Science +1101.5715 Probability +1101.5721 Combinatorics +1101.5722 +1101.5724 Algebraic Topology +1101.5729 Materials Science +1101.5730 Differential Geometry +1101.5732 Fluid Dynamics +1101.5735 Cosmology and Nongalactic Astrophysics +1101.5736 +1101.5743 Probability +1101.5744 Mesoscale and Nanoscale Physics +1101.5745 Atmospheric and Oceanic Physics +1101.5753 Data Structures and Algorithms +1101.5756 +1101.5757 Computation and Language +1101.5763 Information Retrieval +1101.5766 Computer Vision and Pattern Recognition +1101.5768 Phenomenology +1101.5769 +1101.5779 Networking and Internet Architecture +1101.5782 General Physics +1101.5788 Spectral Theory +1101.5791 Distributed, Parallel, and Cluster Computing +1101.5792 +1101.5796 Lattice +1101.5800 Lattice +1101.5811 Accelerator Physics +1101.5815 +1101.5821 Soft Condensed Matter +1101.5823 Algebraic Geometry +1101.5825 Instrumentation and Detectors +1101.5826 Statistical Mechanics +1101.5833 Digital Libraries +1101.5834 Algebraic Geometry +1101.5840 Soft Condensed Matter +1101.5842 Logic in Computer Science +1101.5844 High Energy Astrophysical Phenomena +1101.5854 +1101.5862 Analysis of PDEs +1101.5867 Number Theory +1101.5868 General Physics +1101.5871 Algebraic Geometry +1101.5873 Solar and Stellar Astrophysics +1101.5887 Quantum Algebra +1101.5890 Disordered Systems and Neural Networks +1101.5892 Differential Geometry +1101.5916 Mesoscale and Nanoscale Physics +1101.5917 Chaotic Dynamics +1101.5920 High Energy Astrophysical Phenomena +1101.5922 Phenomenology +1101.5925 Disordered Systems and Neural Networks +1101.5935 Differential Geometry +1101.5938 Software Engineering +1101.5942 Cosmology and Nongalactic Astrophysics +1101.5948 Superconductivity +1101.5949 High Energy Astrophysical Phenomena +1101.5957 Software Engineering +1101.5959 Functional Analysis +1101.5963 Accelerator Physics +1101.5966 Information Theory +1101.5968 +1101.5984 Information Theory +1101.5985 Information Theory +1101.5997 Neural and Evolutionary Computing +1101.6009 Artificial Intelligence +1101.6010 Analysis of PDEs +1101.6013 Solar and Stellar Astrophysics +1101.6014 Mesoscale and Nanoscale Physics +1101.6015 Instrumentation and Methods for Astrophysics +1101.6016 Networking and Internet Architecture +1101.6018 Neural and Evolutionary Computing +1101.6021 Plasma Physics +1101.6033 Information Theory +1101.6034 Representation Theory +1101.6038 Discrete Mathematics +1101.6041 Instrumentation and Detectors +1101.6044 Phenomenology +1101.6048 Theory +1101.6055 High Energy Astrophysical Phenomena +1101.6063 Applications +1101.6070 Chemical Physics +1101.6073 +1101.6075 Functional Analysis +astro-ph/0411803 +astro-ph/0501594 +astro-ph/0502184 +astro-ph/0507184 +astro-ph/0603340 +cond-mat/0102410 Superconductivity +cond-mat/0103211 Superconductivity +cond-mat/0211389 Superconductivity +cond-mat/0404659 Mesoscale and Nanoscale Physics +cond-mat/0410307 Mesoscale and Nanoscale Physics +cond-mat/0508638 Mesoscale and Nanoscale Physics +gr-qc/0304065 +gr-qc/0611115 +hep-ex/0210065 Experiment +hep-lat/0006026 Lattice +hep-lat/0110112 Lattice +hep-lat/0601036 Lattice +hep-lat/9407025 Lattice +hep-ph/0003218 Phenomenology +hep-ph/0004198 Phenomenology +hep-ph/0005132 Phenomenology +hep-ph/0006076 Phenomenology +hep-ph/0006091 Phenomenology +hep-ph/0006120 Phenomenology +hep-ph/0006322 Phenomenology +hep-ph/0009190 Phenomenology +hep-ph/0011049 Phenomenology +hep-ph/0012294 Phenomenology +hep-ph/0101132 Phenomenology +hep-ph/0107222 Phenomenology +hep-ph/0203153 Phenomenology +hep-ph/0204060 Phenomenology +hep-ph/0205150 Phenomenology +hep-ph/0208033 Phenomenology +hep-ph/0210124 Phenomenology +hep-ph/0210414 Phenomenology +hep-ph/0211334 Phenomenology +hep-ph/0305327 Phenomenology +hep-ph/0307083 Phenomenology +hep-ph/0307150 Phenomenology +hep-ph/0310225 Phenomenology +hep-ph/0312271 Phenomenology +hep-ph/0409253 Phenomenology +hep-ph/0412284 Phenomenology +hep-ph/0508178 Phenomenology +hep-ph/0509360 Phenomenology +hep-ph/0512188 Phenomenology +hep-ph/9302299 Phenomenology +hep-ph/9306299 Phenomenology +hep-ph/9306302 Phenomenology +hep-ph/9309323 Phenomenology +hep-ph/9311330 Phenomenology +hep-ph/9405303 Phenomenology +hep-ph/9506264 Phenomenology +hep-ph/9511314 Phenomenology +hep-ph/9603351 Phenomenology +hep-ph/9606380 Phenomenology +hep-ph/9607263 Phenomenology +hep-ph/9608354 Phenomenology +hep-ph/9609261 Phenomenology +hep-ph/9610284 Phenomenology +hep-ph/9611266 Phenomenology +hep-ph/9705327 Phenomenology +hep-ph/9706300 Phenomenology +hep-ph/9707373 Phenomenology +hep-ph/9708234 Phenomenology +hep-ph/9708300 Phenomenology +hep-ph/9708356 Phenomenology +hep-ph/9709405 Phenomenology +hep-ph/9709430 Phenomenology +hep-ph/9710375 Phenomenology +hep-ph/9711227 Phenomenology +hep-ph/9803354 Phenomenology +hep-ph/9806496 Phenomenology +hep-ph/9809480 Phenomenology +hep-ph/9810348 Phenomenology +hep-ph/9810376 Phenomenology +hep-ph/9811509 Phenomenology +hep-ph/9812224 Phenomenology +hep-ph/9901239 Phenomenology +hep-ph/9905360 Phenomenology +hep-ph/9907501 Phenomenology +hep-ph/9909230 Phenomenology +hep-ph/9911207 Phenomenology +hep-ph/9912543 Phenomenology +hep-th/0703073 Theory +math-ph/0212009 +math/0307112 Algebraic Topology +math/0311151 Quantum Algebra +math/0409594 Classical Analysis and ODEs +math/0605527 Dynamical Systems +math/0610525 Number Theory +math/0703814 Differential Geometry +nucl-th/0006042 +nucl-th/0009027 +nucl-th/0403072 +nucl-th/9406023 +nucl-th/9507030 +physics/0609072 Atomic Physics +physics/0612154 Atomic Physics +physics/0701301 Atmospheric and Oceanic Physics +quant-ph/0511164 +1108.0521 Group Theory +0707.0678 Commutative Algebra +0707.4527 Commutative Algebra +0801.4087 Theory +0803.0064 Combinatorics +0803.3677 Commutative Algebra +0805.0162 Computational Geometry +0805.4788 Operator Algebras +0807.1023 Representation Theory +0807.1341 Geometric Topology +0809.0915 Combinatorics +0902.3064 Complex Variables +0903.0292 Theory +0903.3190 Algebraic Geometry +0907.0763 Superconductivity +0911.1967 +0911.2945 Operator Algebras +0912.0718 Theory +0912.3655 Cosmology and Nongalactic Astrophysics +0912.4844 Algebraic Topology +1003.4719 Logic in Computer Science +1004.3848 Probability +1004.4702 Strongly Correlated Electrons +1005.2639 Combinatorics +1008.4177 Information Theory +1009.2245 Algebraic Geometry +1010.0427 Statistics Theory +1010.0877 Algebraic Geometry +1010.6296 Rings and Algebras +1011.0368 Numerical Analysis +1011.0417 Solar and Stellar Astrophysics +1011.2118 Combinatorics +1011.2533 Statistical Mechanics +1011.5501 High Energy Astrophysical Phenomena +1011.5888 Materials Science +1011.6214 Analysis of PDEs +1012.1360 Disordered Systems and Neural Networks +1012.3125 Mesoscale and Nanoscale Physics +1012.3237 Statistical Mechanics +1012.3365 Earth and Planetary Astrophysics +1012.4354 Solar and Stellar Astrophysics +1012.4418 +1012.4423 +1012.5716 Mesoscale and Nanoscale Physics +1101.4257 +1101.5280 Statistical Mechanics +1102.0254 Mesoscale and Nanoscale Physics +1103.1089 Theory +1103.1663 Strongly Correlated Electrons +1103.1776 Logic +1103.1980 Logic +1103.2061 Strongly Correlated Electrons +1103.2392 Classical Analysis and ODEs +1103.2716 +1103.3759 General Topology +1103.4742 Mesoscale and Nanoscale Physics +1104.0016 Theory +1104.4086 Differential Geometry +1104.5498 High Energy Astrophysical Phenomena +1105.0886 Optics +1105.2720 Experiment +1105.4046 Strongly Correlated Electrons +1105.5184 Superconductivity +1106.0343 Phenomenology +1106.1112 Cosmology and Nongalactic Astrophysics +1106.1853 Artificial Intelligence +1106.2452 Phenomenology +1106.2480 Phenomenology +1106.3540 Mesoscale and Nanoscale Physics +1106.5000 +1107.0606 Differential Geometry +1107.3169 +1107.4909 +1107.4912 Plasma Physics +1107.5236 Learning +1107.5694 Phenomenology +1107.5804 Classical Physics +1108.0474 Geometric Topology +1108.0751 Strongly Correlated Electrons +1108.0756 Quantum Gases +1108.1848 Mesoscale and Nanoscale Physics +1108.2294 Theory +1108.2844 +1108.3198 Information Theory +1108.3540 Systems and Control +1108.3666 Combinatorics +1108.3759 Operator Algebras +1108.3885 Geometric Topology +1108.3893 +1108.4041 Digital Libraries +1108.4174 +1108.4199 Artificial Intelligence +1108.4224 Information Theory +1108.4348 Instrumentation and Methods for Astrophysics +1108.4432 Robotics +1108.4435 Number Theory +1108.4439 Computer Science and Game Theory +1108.4443 Robotics +1108.4445 Robotics +1108.4448 Robotics +1108.4450 Information Theory +1108.4452 Solar and Stellar Astrophysics +1108.4459 Phenomenology +1108.4464 Logic in Computer Science +1108.4466 Logic in Computer Science +1108.4467 Logic in Computer Science +1108.4468 Logic in Computer Science +1108.4469 Logic in Computer Science +1108.4470 Logic in Computer Science +1108.4471 Distributed, Parallel, and Cluster Computing +1108.4473 Numerical Analysis +1108.4476 Geometric Topology +1108.4486 Mesoscale and Nanoscale Physics +1108.4487 Symbolic Computation +1108.4489 Algebraic Geometry +1108.4490 Cosmology and Nongalactic Astrophysics +1108.4492 Exactly Solvable and Integrable Systems +1108.4494 Combinatorics +1108.4495 Algebraic Topology +1108.4497 Superconductivity +1108.4498 Superconductivity +1108.4499 Optimization and Control +1108.4502 Exactly Solvable and Integrable Systems +1108.4505 Solar and Stellar Astrophysics +1108.4506 Cosmology and Nongalactic Astrophysics +1108.4509 Computational Physics +1108.4513 Cosmology and Nongalactic Astrophysics +1108.4516 Databases +1108.4517 +1108.4523 Strongly Correlated Electrons +1108.4525 +1108.4526 Mesoscale and Nanoscale Physics +1108.4532 Algebraic Geometry +1108.4545 Learning +1108.4547 Programming Languages +1108.4548 Neural and Evolutionary Computing +1108.4551 Learning +1108.4558 Probability +1108.4564 Commutative Algebra +1108.4565 High Energy Astrophysical Phenomena +1108.4567 Materials Science +1108.4570 Differential Geometry +1108.4577 +1108.4578 +1108.4579 +1108.4580 +1108.4581 +1108.4582 +1108.4584 Phenomenology +1108.4586 Statistical Mechanics +1108.4588 Phenomenology +1108.4590 Chemical Physics +1108.4593 History and Overview +1108.4596 Databases +1108.4600 Solar and Stellar Astrophysics +1108.4601 Phenomenology +1108.4605 Materials Science +1108.4606 Data Structures and Algorithms +1108.4612 Phenomenology +1108.4616 Quantum Algebra +1108.4618 Neural and Evolutionary Computing +1108.4619 Number Theory +1108.4625 Accelerator Physics +1108.4627 Algebraic Topology +1108.4631 Astrophysics of Galaxies +1108.4639 Earth and Planetary Astrophysics +1108.4640 Phenomenology +1108.4642 Populations and Evolution +1108.4647 Combinatorics +1108.4648 Group Theory +1108.4657 Logic +1108.4658 Physics and Society +1108.4659 Strongly Correlated Electrons +1108.4665 Dynamical Systems +1108.4669 Mesoscale and Nanoscale Physics +1108.4671 Geometric Topology +1108.4675 Social and Information Networks +1108.4676 Phenomenology +cond-mat/0401460 Mesoscale and Nanoscale Physics +cond-mat/0409622 Superconductivity +gr-qc/0310010 +hep-th/0506147 Theory +math/0008041 Commutative Algebra +math/0011211 Commutative Algebra +math/0308066 Commutative Algebra +math/0311020 Commutative Algebra +math/0406409 Commutative Algebra +math/0502517 Commutative Algebra +math/0506221 Commutative Algebra +math/0507372 Commutative Algebra +math/0508392 Commutative Algebra +math/0605150 Commutative Algebra +math/0605365 Probability +math/0609443 Probability +math/0612581 Commutative Algebra +math/0612650 Commutative Algebra +nucl-th/0212039 +nucl-th/0407117 +physics/0004051 General Physics +physics/0012034 General Physics +physics/0012035 General Physics +quant-ph/9805012 +0705.0542 Phenomenology +0705.3817 Data Analysis, Statistics and Probability +0711.2868 Analysis of PDEs +0804.3133 +0805.4759 Phenomenology +0805.4792 Phenomenology +0806.0029 +0806.2803 +0806.3943 Number Theory +0807.2407 Experiment +0810.2258 +0811.2446 +0811.3012 +0812.2983 +0901.2728 Superconductivity +0902.4309 +0903.2179 +0903.4144 +0904.4671 Theory +0905.1601 Earth and Planetary Astrophysics +0909.3704 Methodology +0910.1022 Machine Learning +0910.2854 Instrumentation and Methods for Astrophysics +0910.4504 +0910.5239 Theory +0911.1634 +0911.2928 Theory +0912.1817 +0912.4089 +1001.4003 Data Structures and Algorithms +1001.5231 Analysis of PDEs +1002.1399 Algebraic Geometry +1002.3405 Complex Variables +1003.0070 General Physics +1003.4000 Analysis of PDEs +1004.0475 Classical Analysis and ODEs +1004.0953 Phenomenology +1004.3883 Phenomenology +1005.3646 Statistical Mechanics +1005.4631 Statistical Mechanics +1006.2269 Numerical Analysis +1006.2773 Quantum Algebra +1006.3587 Theory +1006.3637 +1006.4120 Representation Theory +1007.0044 Theory +1007.0659 Phenomenology +1007.3770 Functional Analysis +1007.5203 Quantum Algebra +1008.0258 Phenomenology +1008.2698 Phenomenology +1008.3027 Theory +1009.0997 Analysis of PDEs +1009.3780 Optimization and Control +1010.4572 +1010.4792 Solar and Stellar Astrophysics +1011.0644 Soft Condensed Matter +1011.3950 +1011.5392 K-Theory and Homology +1011.6213 +1011.6224 Data Analysis, Statistics and Probability +1011.6237 Experiment +1011.6255 Theory +1011.6265 Phenomenology +1011.6301 Theory +1011.6309 Lattice +1011.6322 +1012.0630 +1012.1916 +1012.2065 Theory +1012.2435 Phenomenology +1012.2473 Functional Analysis +1012.2842 Phenomenology +1012.5536 Materials Science +1012.5873 +1101.0122 Applications +1101.0124 Experiment +1101.0164 Analysis of PDEs +1101.1281 Theory +1101.2109 Disordered Systems and Neural Networks +1101.3559 Theory +1101.4865 +1102.0675 Materials Science +1102.1868 Phenomenology +1102.2807 +1102.2854 Phenomenology +1102.3148 Phenomenology +1102.4080 Probability +1102.4410 +1102.4651 History and Overview +1102.5100 Phenomenology +1102.5713 +1103.0876 +1103.1973 Phenomenology +1103.2228 Superconductivity +1103.2858 Cosmology and Nongalactic Astrophysics +1103.3380 +1103.4120 +1103.4137 +1103.4184 +1103.4362 Lattice +1103.5377 Theory +1103.5988 Strongly Correlated Electrons +1103.6145 Theory +1104.0292 Cosmology and Nongalactic Astrophysics +1104.0602 Phenomenology +1104.0950 Cosmology and Nongalactic Astrophysics +1104.1444 Cosmology and Nongalactic Astrophysics +1104.1896 Theory +1104.2097 Learning +1104.2448 Phenomenology +1104.2645 Mesoscale and Nanoscale Physics +1104.3755 Phenomenology +1104.4590 Experiment +1104.5132 Phenomenology +1104.5147 Physics and Society +1104.5696 +1105.0041 Phenomenology +1105.0098 Mesoscale and Nanoscale Physics +1105.0117 Phenomenology +1105.0734 Phenomenology +1105.1144 +1105.1443 Superconductivity +1105.1652 Phenomenology +1105.2324 Analysis of PDEs +1105.2963 +1105.3644 Quantum Gases +1105.3666 Mesoscale and Nanoscale Physics +1105.4362 Complex Variables +1105.4728 Materials Science +1106.0344 Cosmology and Nongalactic Astrophysics +1106.1141 Solar and Stellar Astrophysics +1106.1260 General Physics +1106.1493 Phenomenology +1106.1521 Information Retrieval +1106.2624 Solar and Stellar Astrophysics +1106.2741 Phenomenology +1106.5204 Discrete Mathematics +1107.0345 +1107.0407 Chemical Physics +1107.1440 +1107.3502 +1107.4550 Mesoscale and Nanoscale Physics +1107.5036 +1107.5866 +1107.5999 +1108.0496 Distributed, Parallel, and Cluster Computing +1108.1065 Social and Information Networks +1108.1508 Dynamical Systems +1108.1989 Networking and Internet Architecture +1108.2028 Analysis of PDEs +1108.2038 Computational Geometry +1108.2043 Cosmology and Nongalactic Astrophysics +1108.2045 Numerical Analysis +1108.2054 Learning +1108.2058 Computational Geometry +1108.2062 Mesoscale and Nanoscale Physics +1108.2063 Computational Geometry +1108.2073 General Physics +1108.2076 Complex Variables +1108.2078 Complex Variables +1108.2080 Networking and Internet Architecture +1108.2081 Materials Science +1108.2082 Materials Science +1108.2083 Rings and Algebras +1108.2085 Software Engineering +1108.2090 Materials Science +1108.2092 Computer Science and Game Theory +1108.2094 Networking and Internet Architecture +1108.2095 Networking and Internet Architecture +1108.2096 Artificial Intelligence +1108.2101 Differential Geometry +1108.2108 Mesoscale and Nanoscale Physics +1108.2118 Statistical Mechanics +1108.2120 Methodology +1108.2123 Optics +1108.2126 Robotics +1108.2127 Probability +1108.2141 Methodology +1108.2142 Analysis of PDEs +1108.2147 Functional Analysis +1108.2149 Cryptography and Security +1108.2150 Cryptography and Security +1108.2151 Cryptography and Security +1108.2152 Cryptography and Security +1108.2153 Cryptography and Security +1108.2155 Physics Education +1108.2156 +1108.2163 Theory +1108.2167 Applications +1108.2168 Geometric Topology +1108.2169 Probability +1108.2170 Numerical Analysis +1108.2171 Statistics Theory +1108.2174 Metric Geometry +1108.2177 Methodology +1108.2179 Combinatorics +1108.2180 Phenomenology +1108.2182 Geometric Topology +1108.2185 Number Theory +1108.2191 Computational Complexity +1108.2194 +1108.2196 Chaotic Dynamics +1108.2199 Solar and Stellar Astrophysics +1108.2201 Logic +1108.2204 Popular Physics +1108.2206 Instrumentation and Methods for Astrophysics +1108.2207 Symplectic Geometry +1108.2214 +1108.2215 Combinatorics +1108.2219 Combinatorics +1108.2233 +1108.2240 Algebraic Topology +1108.2252 Other Condensed Matter +1108.2254 Mesoscale and Nanoscale Physics +1108.2256 Functional Analysis +astro-ph/0105302 +astro-ph/0111162 +astro-ph/0111546 +astro-ph/0309217 +astro-ph/0504062 +astro-ph/0504671 +astro-ph/0611690 +astro-ph/9808087 +cond-mat/0512556 Strongly Correlated Electrons +cond-mat/9211009 +cond-mat/9902128 Statistical Mechanics +gr-qc/0004007 +gr-qc/0004059 +gr-qc/0005047 +gr-qc/0009053 +gr-qc/0101086 +gr-qc/0201035 +gr-qc/0305108 +gr-qc/0406089 +gr-qc/9403051 +gr-qc/9405025 +gr-qc/9407039 +gr-qc/9512033 +gr-qc/9710038 +gr-qc/9803094 +hep-ex/0202014 Experiment +hep-ex/0411057 Experiment +hep-ex/0512004 Experiment +hep-lat/0505024 Lattice +hep-lat/9305002 Lattice +hep-ph/0011009 Phenomenology +hep-ph/0104216 Phenomenology +hep-ph/0110290 Phenomenology +hep-ph/0212278 Phenomenology +hep-ph/0310227 Phenomenology +hep-ph/0403149 Phenomenology +hep-ph/0411258 Phenomenology +hep-ph/0412169 Phenomenology +hep-ph/0511034 Phenomenology +hep-ph/0603197 Phenomenology +hep-ph/9311216 Phenomenology +hep-ph/9312201 Phenomenology +hep-ph/9403221 Phenomenology +hep-ph/9405424 Phenomenology +hep-ph/9409212 Phenomenology +hep-ph/9503238 Phenomenology +hep-ph/9510223 Phenomenology +hep-ph/9510372 Phenomenology +hep-ph/9609379 Phenomenology +hep-ph/9703369 Phenomenology +hep-ph/9708361 Phenomenology +hep-ph/9710333 Phenomenology +hep-ph/9802440 Phenomenology +hep-ph/9803256 Phenomenology +hep-ph/9803302 Phenomenology +hep-ph/9803475 Phenomenology +hep-ph/9805445 Phenomenology +hep-ph/9807459 Phenomenology +hep-ph/9807538 Phenomenology +hep-ph/9808204 Phenomenology +hep-ph/9812209 Phenomenology +hep-ph/9904447 Phenomenology +hep-ph/9905409 Phenomenology +hep-ph/9908393 Phenomenology +hep-th/0011208 Theory +hep-th/0103174 Theory +hep-th/0107068 Theory +hep-th/0210042 Theory +hep-th/0306272 Theory +hep-th/0310267 Theory +hep-th/0403106 Theory +hep-th/0404213 Theory +hep-th/0408232 Theory +hep-th/0412198 Theory +hep-th/0505101 Theory +hep-th/9310055 Theory +hep-th/9402121 Theory +hep-th/9405027 Theory +hep-th/9503131 Theory +hep-th/9510063 Theory +hep-th/9512171 Theory +hep-th/9810070 Theory +math/0609401 General Topology +nucl-ex/0307014 +nucl-ex/0408008 +nucl-th/0002059 +nucl-th/0007046 +nucl-th/0111035 +nucl-th/0209056 +nucl-th/0410062 +nucl-th/0502072 +physics/0001068 Atomic Physics +quant-ph/0405039 +quant-ph/9709037 +quant-ph/9806082 +quant-ph/9807050 +quant-ph/9808036 +0802.3360 Symplectic Geometry +0805.4350 Materials Science +0805.4477 History and Overview +0806.3303 +0807.1400 Disordered Systems and Neural Networks +0809.2619 Theory +0901.0121 Discrete Mathematics +0904.3558 Phenomenology +0910.3906 Differential Geometry +0910.4299 Complex Variables +0912.1795 Quantum Algebra +0912.3738 Analysis of PDEs +1002.1123 Exactly Solvable and Integrable Systems +1003.0990 Strongly Correlated Electrons +1003.5783 Discrete Mathematics +1006.0650 Symplectic Geometry +1006.1459 Strongly Correlated Electrons +1006.3193 Superconductivity +1007.0538 Strongly Correlated Electrons +1007.3162 Complex Variables +1008.0106 Differential Geometry +1008.2826 Analysis of PDEs +1008.2827 Analysis of PDEs +1009.2699 Number Theory +1009.3553 Logic +1009.5688 Mesoscale and Nanoscale Physics +1010.1820 Dynamical Systems +1010.5544 Materials Science +1010.6084 Spectral Theory +1011.4270 Functional Analysis +1011.5840 High Energy Astrophysical Phenomena +1012.0270 Statistical Mechanics +1012.5099 Phenomenology +1102.2221 Strongly Correlated Electrons +1102.2566 Cryptography and Security +1102.3356 +1103.1082 +1103.1083 +1103.2261 Quantum Algebra +1103.2263 Quantum Algebra +1103.2908 Atomic Physics +1104.0133 History and Philosophy of Physics +1104.0567 Statistical Mechanics +1104.0706 Theory +1105.1787 Mesoscale and Nanoscale Physics +1105.2570 Analysis of PDEs +1105.2765 Phenomenology +1105.5969 Materials Science +1106.1661 Solar and Stellar Astrophysics +1106.2111 Superconductivity +1106.5149 Cryptography and Security +1107.0426 Strongly Correlated Electrons +1107.1294 +1107.1714 Cosmology and Nongalactic Astrophysics +1107.3036 Methodology +1107.3576 Mesoscale and Nanoscale Physics +1107.3754 Cosmology and Nongalactic Astrophysics +1107.4120 Combinatorics +1107.4908 Optics +1108.0536 Mesoscale and Nanoscale Physics +1108.0820 Mesoscale and Nanoscale Physics +1108.0840 Information Theory +1108.1429 Combinatorics +1108.2980 Instrumentation and Detectors +1108.5951 +1109.0204 Astrophysics of Galaxies +1109.0400 Quantum Gases +1110.0861 Theory +1110.1242 Mesoscale and Nanoscale Physics +1110.2305 Digital Libraries +1110.4530 Mesoscale and Nanoscale Physics +1110.6738 Logic in Computer Science +1111.0460 Functional Analysis +1111.2692 High Energy Astrophysical Phenomena +1111.3408 Algebraic Geometry +1111.3643 +1111.3654 Number Theory +1111.3660 Algebraic Geometry +1111.3662 Algebraic Geometry +1111.3663 Data Structures and Algorithms +1111.3665 Analysis of PDEs +1111.3666 Statistical Mechanics +1111.3667 Number Theory +1111.3670 Data Structures and Algorithms +1111.3673 Programming Languages +1111.3681 +1111.3683 Materials Science +1111.3686 Lattice +1111.3689 Databases +1111.3692 Phenomenology +1111.3703 +1111.3705 Representation Theory +1111.3707 Combinatorics +1111.3708 Instrumentation and Methods for Astrophysics +1111.3712 Theory +1111.3714 Mesoscale and Nanoscale Physics +1111.3715 Discrete Mathematics +1111.3716 Phenomenology +1111.3718 Algebraic Geometry +1111.3719 Functional Analysis +1111.3724 Differential Geometry +1111.3732 Combinatorics +1111.3733 Mesoscale and Nanoscale Physics +1111.3735 Learning +1111.3738 Materials Science +1111.3747 Geometric Topology +1111.3753 Cryptography and Security +1111.3755 Earth and Planetary Astrophysics +1111.3758 Cryptography and Security +1111.3759 Functional Analysis +1111.3764 Cosmology and Nongalactic Astrophysics +1111.3768 Statistics Theory +1111.3771 +1111.3779 High Energy Astrophysical Phenomena +1111.3781 Machine Learning +1111.3782 Functional Analysis +1111.3784 Instrumentation and Methods for Astrophysics +1111.3787 Number Theory +1111.3805 Information Theory +1111.3806 Distributed, Parallel, and Cluster Computing +1111.3815 Lattice +1111.3818 Computer Vision and Pattern Recognition +1111.3819 Strongly Correlated Electrons +1111.3823 Representation Theory +1111.3827 Numerical Analysis +1111.3829 Statistical Mechanics +1111.3833 Operator Algebras +1111.3838 Materials Science +1111.3839 Phenomenology +1111.3840 Statistical Mechanics +1111.3846 Learning +1111.3847 Algebraic Topology +1111.3851 Differential Geometry +1111.3854 Information Theory +1111.3861 Quantitative Methods +1111.3864 +1111.3866 Statistics Theory +1111.3873 General Physics +1111.3875 Differential Geometry +1111.3876 General Physics +1111.3888 General Physics +1111.3889 Differential Geometry +1111.3892 +1111.3897 Lattice +1111.3904 Algebraic Topology +1111.3907 Optics +1111.3910 Algebraic Topology +1111.3911 Combinatorics +1111.3912 Cosmology and Nongalactic Astrophysics +1111.3917 Mesoscale and Nanoscale Physics +1111.3920 Combinatorics +1111.3925 Information Theory +1111.3926 Theory +1111.3932 Quantum Algebra +1111.3933 Computer Science and Game Theory +1111.3945 +math/0703342 Differential Geometry +quant-ph/0703092 +0704.1357 Materials Science +0706.3615 Materials Science +0712.1488 Materials Science +0712.4373 Exactly Solvable and Integrable Systems +0803.2988 Strongly Correlated Electrons +0804.3970 Dynamical Systems +0805.1532 Materials Science +0808.2415 +0808.2674 +0809.4680 Materials Science +0810.0311 Combinatorics +0810.0328 Cryptography and Security +0810.0772 Functional Analysis +0810.4083 Complex Variables +0811.2307 Fluid Dynamics +0812.2063 +0812.3584 Operator Algebras +0812.3601 Operator Algebras +0812.4773 Mesoscale and Nanoscale Physics +0903.2853 Combinatorics +0903.3717 K-Theory and Homology +0904.0114 Algebraic Geometry +0904.2140 Materials Science +0904.3946 +0905.0012 +0905.0175 Differential Geometry +0905.1626 Spectral Theory +0906.2545 Statistical Mechanics +0907.0083 +0907.0449 Probability +0907.1995 Functional Analysis +0907.3113 Statistical Mechanics +0907.4600 Atomic Physics +0907.5534 Atomic Physics +0909.3185 Information Theory +0909.3727 Differential Geometry +0911.5179 Probability +0911.5413 Probability +1001.2838 Solar and Stellar Astrophysics +1001.4119 Computational Geometry +1002.2811 Probability +1002.4037 +1002.4172 Other Computer Science +1003.2259 Information Theory +1003.4457 Statistical Mechanics +1003.5156 Operator Algebras +1005.1369 Information Theory +1005.1467 Geometric Topology +1005.4138 Classical Analysis and ODEs +1006.4153 Commutative Algebra +1006.4256 Number Theory +1007.0161 Other Condensed Matter +1007.4622 Statistics Theory +1007.4750 Instrumentation and Detectors +1008.0901 Applications +1009.0490 +1009.0918 Theory +1009.0998 Pattern Formation and Solitons +1009.2631 Computers and Society +1009.4032 Soft Condensed Matter +1009.5315 Biological Physics +1009.5464 +1010.1918 Algebraic Geometry +1010.2098 +1010.2434 Theory +1010.2662 Algebraic Geometry +1010.2733 Computer Vision and Pattern Recognition +1010.4113 Statistical Mechanics +1010.4728 +1010.5422 Atomic Physics +1010.6103 +1011.2503 Group Theory +1011.4969 Optimization and Control +1012.0446 Analysis of PDEs +1012.2729 Group Theory +1012.3146 Classical Analysis and ODEs +1012.3739 Statistical Mechanics +1012.4745 Mesoscale and Nanoscale Physics +1012.5762 Phenomenology +1101.0073 +1101.4997 +1101.5462 Algebraic Geometry +1101.5820 Probability +1102.1682 +1102.3842 Plasma Physics +1102.4242 Strongly Correlated Electrons +1103.0998 Dynamical Systems +1103.1195 Cosmology and Nongalactic Astrophysics +1103.1710 Mesoscale and Nanoscale Physics +1103.2414 General Physics +1103.2519 Dynamical Systems +1103.2956 Atomic Physics +1103.3447 Theory +1103.3860 Phenomenology +1103.5124 Strongly Correlated Electrons +1103.5828 Cosmology and Nongalactic Astrophysics +1103.5964 Quantum Gases +1104.1802 +1104.1965 Quantum Gases +1104.2061 +1104.2358 Superconductivity +1104.2402 Statistical Mechanics +1104.2746 Statistical Mechanics +1104.5021 +1104.5541 Differential Geometry +1105.0766 Materials Science +1105.1547 Theory +1105.1971 Quantum Gases +1105.3923 Differential Geometry +1105.3933 Algebraic Geometry +1105.4313 Chaotic Dynamics +1106.0153 +1106.0925 +1106.1368 Algebraic Geometry +1106.1835 Probability +1106.2370 Soft Condensed Matter +1106.2997 Quantum Gases +1106.3229 Phenomenology +1106.3371 Phenomenology +1106.3717 Plasma Physics +1106.3719 Plasma Physics +1106.3784 Geometric Topology +1106.4070 Phenomenology +1106.4296 Materials Science +1106.4984 +1106.5324 Optics +1106.5328 Superconductivity +1106.5549 Strongly Correlated Electrons +1107.0167 Optics +1107.1299 Combinatorics +1107.1916 Cosmology and Nongalactic Astrophysics +1107.2837 Superconductivity +1107.3077 Quantum Gases +1107.3483 Physics Education +1107.4265 Mesoscale and Nanoscale Physics +1107.4486 Materials Science +1107.4733 +1107.4816 Cosmology and Nongalactic Astrophysics +1107.5031 Number Theory +1107.5071 +1107.5159 +1108.0078 +1108.0711 Superconductivity +1108.0728 Statistical Mechanics +1108.0973 +1108.1170 Optimization and Control +1108.1829 +1108.1830 Superconductivity +1108.1906 Representation Theory +1108.2160 Materials Science +1108.2284 Group Theory +1108.2452 Computer Science and Game Theory +1108.2468 +1108.3002 Materials Science +1108.3334 Cosmology and Nongalactic Astrophysics +1108.4075 Materials Science +1108.4087 Complex Variables +1108.4088 Complex Variables +1108.4143 +1108.4374 Statistical Mechanics +1108.5085 Materials Science +1108.5263 Strongly Correlated Electrons +1108.5310 Superconductivity +1108.5419 Complex Variables +1108.6202 Chaotic Dynamics +1109.0249 Solar and Stellar Astrophysics +1109.0442 Data Analysis, Statistics and Probability +1109.0560 Physics and Society +1109.1594 Materials Science +1109.1601 Logic +1109.1626 Plasma Physics +1109.1700 Strongly Correlated Electrons +1109.2271 Artificial Intelligence +1109.2715 Statistical Mechanics +1109.2848 Theory +1109.3639 Computational Complexity +1109.3750 Cosmology and Nongalactic Astrophysics +1109.4060 Dynamical Systems +1109.4518 Applications +1109.4972 Phenomenology +1109.5622 +1109.6060 Discrete Mathematics +1109.6601 Soft Condensed Matter +1109.6797 Strongly Correlated Electrons +1110.0184 Algebraic Geometry +1110.0185 Algebraic Geometry +1110.1370 Superconductivity +1110.1740 Statistics Theory +1110.1845 +1110.2137 Superconductivity +1110.2225 Combinatorics +1110.2818 Materials Science +1110.3704 Logic in Computer Science +1110.3776 Statistical Mechanics +1110.4233 Mesoscale and Nanoscale Physics +1110.4414 Data Structures and Algorithms +1110.4542 Number Theory +1110.4574 +1110.5330 Quantum Gases +1110.5466 +1110.5504 +1110.5868 +1110.5944 +1110.5983 Lattice +1110.6396 Materials Science +1110.6797 Statistical Mechanics +1111.0184 +1111.0358 Superconductivity +1111.0801 Data Structures and Algorithms +1111.1550 Commutative Algebra +1111.1612 Theory +1111.2231 Strongly Correlated Electrons +1111.2698 Plasma Physics +1111.2910 Materials Science +1111.3057 Number Theory +1111.3088 Combinatorics +1111.3115 Differential Geometry +1111.3389 Strongly Correlated Electrons +1111.5083 Superconductivity +1111.5296 Networking and Internet Architecture +1111.5777 Atomic and Molecular Clusters +1111.6187 Algebraic Geometry +1111.6292 Group Theory +1111.6445 Materials Science +1112.0833 Strongly Correlated Electrons +1112.0837 Quantum Gases +1112.0872 Materials Science +1112.1620 Superconductivity +1112.2333 +1112.2697 Materials Science +1112.3121 Instrumentation and Detectors +1112.3132 Superconductivity +1112.3313 +1112.3406 Strongly Correlated Electrons +1112.3522 Fluid Dynamics +1112.3544 Genomics +1112.3665 Mesoscale and Nanoscale Physics +1112.4067 +1112.4323 Neural and Evolutionary Computing +1112.4459 Optics +1112.4581 Solar and Stellar Astrophysics +1112.4605 Classical Analysis and ODEs +1112.4943 +1112.5025 +1112.5045 Cosmology and Nongalactic Astrophysics +1112.5109 Dynamical Systems +1112.5320 Mesoscale and Nanoscale Physics +1112.5468 Group Theory +1112.5536 Algebraic Topology +1112.5629 Information Theory +1112.5665 Numerical Analysis +1112.5667 +1112.5676 Phenomenology +1112.5677 Classical Analysis and ODEs +1112.5679 Networking and Internet Architecture +1112.5680 Materials Science +1112.5682 Lattice +1112.5686 History and Philosophy of Physics +1112.5690 Dynamical Systems +1112.5694 Complex Variables +1112.5695 K-Theory and Homology +1112.5697 Number Theory +1112.5699 +1112.5700 +1112.5701 +1112.5703 Networking and Internet Architecture +1112.5707 Pattern Formation and Solitons +1112.5709 Group Theory +1112.5712 +1112.5713 Complex Variables +1112.5714 Algebraic Geometry +1112.5715 Number Theory +1112.5718 Probability +1112.5719 Probability +1112.5721 Solar and Stellar Astrophysics +1112.5723 Cosmology and Nongalactic Astrophysics +1112.5724 Statistical Mechanics +1112.5726 Mesoscale and Nanoscale Physics +1112.5728 Computers and Society +1112.5730 Solar and Stellar Astrophysics +1112.5732 Cryptography and Security +1112.5735 Rings and Algebras +1112.5741 Data Structures and Algorithms +1112.5743 Number Theory +1112.5745 Machine Learning +1112.5747 Probability +1112.5748 +1112.5749 Probability +1112.5750 Functional Analysis +1112.5756 Information Theory +1112.5758 Numerical Analysis +1112.5760 Cryptography and Security +1112.5769 Classical Analysis and ODEs +1112.5774 Software Engineering +1112.5775 +1112.5778 Differential Geometry +1112.5780 Complex Variables +1112.5787 Superconductivity +1112.5790 Networking and Internet Architecture +1112.5799 Networking and Internet Architecture +1112.5800 Networking and Internet Architecture +1112.5802 Applications +1112.5803 +1112.5806 Statistics Theory +1112.5809 Rings and Algebras +1112.5810 +1112.5812 +1112.5813 High Energy Astrophysical Phenomena +1112.5814 Popular Physics +1112.5829 +1112.5831 Algebraic Geometry +1112.5832 Algebraic Geometry +1112.5834 +1112.5835 +1112.5837 +1112.5838 +1112.5843 Superconductivity +1112.5845 +1112.5846 +1112.5849 Statistical Mechanics +1112.5851 Materials Science +1112.5853 Phenomenology +1112.5854 Statistics Theory +1112.5856 Theory +1112.5864 +1112.5868 Numerical Analysis +1112.5869 Mesoscale and Nanoscale Physics +1112.5873 +1112.5877 Numerical Analysis +1112.5879 Group Theory +1112.5880 Group Theory +1112.5888 Functional Analysis +1112.5890 Statistics Theory +1112.5891 General Topology +1112.5892 Group Theory +1112.5893 Superconductivity +1112.5895 Computer Vision and Pattern Recognition +1112.5896 Representation Theory +1112.5897 Probability +1112.5899 Cosmology and Nongalactic Astrophysics +1112.5906 Physics and Society +1112.5908 Databases +1112.5911 +1112.5917 Distributed, Parallel, and Cluster Computing +1112.5920 Number Theory +1112.5921 Other Quantitative Biology +1112.5930 General Physics +1112.5934 +1112.5946 +1112.5947 Formal Languages and Automata Theory +1112.5949 High Energy Astrophysical Phenomena +1112.5953 Cryptography and Security +1112.5959 Networking and Internet Architecture +1112.5966 Quantitative Methods +1112.5967 +1112.5978 Phenomenology +1112.5981 Solar and Stellar Astrophysics +1112.5984 Number Theory +1112.5985 Experiment +1112.5986 Number Theory +1112.5987 Differential Geometry +1112.5991 Strongly Correlated Electrons +1112.5993 Phenomenology +1112.5994 Solar and Stellar Astrophysics +1112.5996 Operator Algebras +1112.5999 Operator Algebras +1112.6003 Probability +1112.6011 Biological Physics +1112.6015 Biomolecules +1112.6024 General Finance +1112.6026 +1112.6027 +1112.6032 Graphics +1112.6035 Representation Theory +1112.6036 Superconductivity +1112.6038 Number Theory +1112.6042 +1112.6044 Functional Analysis +1112.6046 Combinatorics +1112.6047 Cryptography and Security +1112.6056 Geometric Topology +1112.6058 K-Theory and Homology +1112.6059 Combinatorics +1112.6061 Combinatorics +1112.6064 Analysis of PDEs +1112.6066 Dynamical Systems +1112.6067 Number Theory +1112.6068 Representation Theory +1112.6071 Commutative Algebra +1112.6075 Optimization and Control +1112.6077 Theory +1112.6078 Superconductivity +1112.6081 Differential Geometry +1112.6082 Algebraic Topology +1112.6084 Cosmology and Nongalactic Astrophysics +1112.6087 Solar and Stellar Astrophysics +1112.6088 Materials Science +1112.6089 Solar and Stellar Astrophysics +1112.6093 Biological Physics +1112.6094 Analysis of PDEs +1112.6095 Algebraic Geometry +1112.6096 Programming Languages +1112.6098 Human-Computer Interaction +1112.6101 Astrophysics of Galaxies +1112.6103 Quantum Algebra +1112.6104 Superconductivity +1112.6106 Phenomenology +1112.6107 Dynamical Systems +1112.6109 Superconductivity +1112.6110 Instrumentation and Detectors +1112.6111 Combinatorics +1112.6114 Phenomenology +1112.6116 Representation Theory +1112.6117 Information Theory +1112.6118 Astrophysics of Galaxies +1112.6121 Instrumentation and Methods for Astrophysics +1112.6122 Analysis of PDEs +1112.6124 History and Overview +1112.6127 History and Overview +1112.6130 Differential Geometry +1112.6142 Number Theory +1112.6144 Superconductivity +1112.6145 Materials Science +1112.6146 Lattice +1112.6147 Classical Analysis and ODEs +1112.6148 Analysis of PDEs +1112.6152 +1112.6155 +1112.6156 Analysis of PDEs +1112.6157 Superconductivity +1112.6159 Probability +1112.6162 Computation +1112.6166 Strongly Correlated Electrons +1112.6167 Metric Geometry +1112.6169 Trading and Market Microstructure +1112.6172 Combinatorics +1112.6176 Classical Analysis and ODEs +1112.6178 Sound +1112.6182 Mesoscale and Nanoscale Physics +1112.6184 Strongly Correlated Electrons +1112.6186 +1112.6190 Biological Physics +1112.6192 Theory +1112.6194 Combinatorics +1112.6196 Theory +1112.6206 Phenomenology +1112.6207 Combinatorics +1112.6208 +1112.6216 Theory +1112.6219 Information Retrieval +1112.6221 Combinatorics +1112.6223 Differential Geometry +1112.6225 Solar and Stellar Astrophysics +1112.6227 Differential Geometry +1112.6228 High Energy Astrophysical Phenomena +1112.6229 Cosmology and Nongalactic Astrophysics +1112.6231 Information Theory +1112.6235 Statistics Theory +1112.6237 Complex Variables +1112.6239 Probability +1112.6242 Probability +1112.6251 Operator Algebras +1112.6254 Distributed, Parallel, and Cluster Computing +1112.6255 Data Structures and Algorithms +1112.6264 Mesoscale and Nanoscale Physics +1112.6269 Computer Vision and Pattern Recognition +1112.6274 +1112.6276 General Physics +1112.6277 +1112.6280 +1112.6281 Computers and Society +1112.6287 Materials Science +1112.6289 Representation Theory +1112.6291 Computer Vision and Pattern Recognition +1112.6292 Complex Variables +1112.6293 Representation Theory +1112.6300 +1112.6302 Differential Geometry +1112.6308 Methodology +1112.6314 Materials Science +1112.6318 +1112.6321 Combinatorics +1112.6323 General Mathematics +1112.6326 Dynamical Systems +1112.6327 Algebraic Topology +1112.6336 Phenomenology +1112.6338 +1112.6339 Phenomenology +1112.6342 Materials Science +1112.6344 Information Theory +1112.6350 +1112.6356 +1112.6359 Algebraic Geometry +1112.6360 Materials Science +1112.6361 Computer Science and Game Theory +1112.6362 Analysis of PDEs +1112.6363 Machine Learning +1112.6367 Information Theory +1112.6371 Data Analysis, Statistics and Probability +1112.6375 Mesoscale and Nanoscale Physics +1112.6376 Quantum Algebra +1112.6378 Cosmology and Nongalactic Astrophysics +1112.6382 Optimization and Control +1112.6384 Computation and Language +1112.6385 Symplectic Geometry +1112.6386 Phenomenology +1112.6387 Phenomenology +1112.6396 Other Condensed Matter +1112.6397 Analysis of PDEs +1112.6399 Learning +1112.6407 Theory +1112.6409 Atomic Physics +1112.6417 Physics and Society +1112.6418 Theory +1112.6421 Physics and Society +1112.6423 Atomic Physics +1112.6424 Populations and Evolution +1112.6431 Analysis of PDEs +cond-mat/0005175 Strongly Correlated Electrons +cond-mat/0104418 Statistical Mechanics +cond-mat/0203264 Statistical Mechanics +cond-mat/0407461 Materials Science +cond-mat/0410326 Materials Science +cond-mat/0507713 Materials Science +cond-mat/0507724 Materials Science +cond-mat/0508385 Strongly Correlated Electrons +hep-ph/9808396 Phenomenology +hep-th/0412317 Theory +hep-th/9411074 Theory +math/0409221 Dynamical Systems +math/0410376 Complex Variables +math/0506063 Dynamical Systems +math/0506204 Dynamical Systems +math/0607386 Dynamical Systems +nucl-th/0606027 +physics/0511192 Geophysics +physics/0512147 Geophysics +physics/0512154 Geophysics +physics/0602056 Geophysics +physics/0602057 Geophysics +0707.4344 Soft Condensed Matter +0709.0919 Differential Geometry +0709.3266 Phenomenology +0803.1035 +0805.3958 +0806.0944 +0806.4563 Theory +0806.4716 Theory +0806.4723 Theory +0806.4807 Theory +0806.4977 Theory +0807.0004 Theory +0807.0368 Theory +0807.0391 Theory +0807.0566 Theory +0807.0710 Theory +0807.1099 Theory +0807.3613 Theory +0807.3664 Theory +0807.4223 Theory +0807.4252 Representation Theory +0807.4375 Theory +0807.4400 Theory +0807.4752 Theory +0807.4886 Theory +0807.5016 Theory +0807.5027 Theory +0807.5127 Theory +0808.0170 Theory +0808.0282 Theory +0808.0504 Theory +0809.4495 +0809.4710 +0809.5060 Theory +0809.5064 Theory +0809.5149 Theory +0809.5270 Theory +0810.1058 Theory +0810.1214 Theory +0810.1379 Theory +0810.1563 Theory +0811.1724 Analysis of PDEs +0811.2182 Theory +0811.2197 Theory +0811.2775 Theory +0811.2976 Theory +0812.3036 +0812.4251 +0901.4691 Classical Analysis and ODEs +0902.0096 +0902.1043 Discrete Mathematics +0902.2323 Rings and Algebras +0903.2376 Theory +0903.2493 Theory +0905.4914 Phenomenology +0906.2127 Phenomenology +0906.4102 Cosmology and Nongalactic Astrophysics +0906.4314 Operator Algebras +0906.4831 +0907.5225 Symplectic Geometry +0907.5510 Theory +0908.0128 Statistics Theory +0909.0950 +0909.2340 Plasma Physics +0909.5272 Atomic and Molecular Clusters +0909.5674 +0910.0759 Phenomenology +0910.1152 Astrophysics of Galaxies +0911.3814 +0912.0297 Cosmology and Nongalactic Astrophysics +0912.0391 Statistical Mechanics +0912.1263 Number Theory +0912.3491 Theory +0912.5149 +1002.2662 Geometric Topology +1002.4366 Quantum Gases +1003.1192 Theory +1003.3400 Complex Variables +1003.5152 Theory +1004.1591 Theory +1004.2740 Strongly Correlated Electrons +1005.0414 +1005.0801 Instrumentation and Detectors +1005.1659 Statistical Mechanics +1005.1878 +1005.2275 Phenomenology +1005.4470 Algebraic Geometry +1005.4741 +1005.5222 Group Theory +1005.5704 Populations and Evolution +1006.0128 Cosmology and Nongalactic Astrophysics +1006.0581 Probability +1006.2559 Theory +1006.2974 Theory +1006.3054 Theory +1006.3723 +1006.3749 +1006.4113 Molecular Networks +1006.4702 Earth and Planetary Astrophysics +1006.4921 Plasma Physics +1006.5900 Functional Analysis +1007.0264 +1007.1547 Rings and Algebras +1007.1928 Biological Physics +1007.1998 Group Theory +1007.4318 +1007.4396 Functional Analysis +1007.4697 Phenomenology +1007.4770 Theory +1008.0479 +1008.0726 Theory +1008.1423 Theory +1008.1884 Probability +1008.1885 Symplectic Geometry +1008.2809 +1008.3072 Phenomenology +1008.3569 Experiment +1008.3598 +1008.3620 Phenomenology +1008.3713 Phenomenology +1008.3783 Experiment +1008.3802 +1008.3838 Experiment +1008.3843 Commutative Algebra +1008.3926 Physics and Society +1008.4247 Phenomenology +1008.4567 Theory +1008.5225 +1009.0711 Phenomenology +1009.0947 Phenomenology +1009.1063 +1009.2133 Quantum Gases +1009.2250 Phenomenology +1009.3397 Experiment +1009.3442 +1009.3804 Phenomenology +1009.4210 Theory +1009.4232 Phenomenology +1009.4388 +1009.4894 Strongly Correlated Electrons +1009.5481 +1009.5536 Phenomenology +1009.5676 Quantum Gases +1009.5697 +1009.6039 Numerical Analysis +1010.0030 Theory +1010.0255 Theory +1010.0566 Theory +1010.0935 Phenomenology +1010.1078 Solar and Stellar Astrophysics +1010.1453 Analysis of PDEs +1010.1515 Theory +1010.1550 Theory +1010.1683 Theory +1010.1970 Phenomenology +1010.3749 Phenomenology +1010.4046 Classical Analysis and ODEs +1010.4778 Lattice +1010.5073 Lattice +1010.5078 +1011.0621 +1011.0965 Phenomenology +1011.1762 Phenomenology +1011.2343 Mesoscale and Nanoscale Physics +1011.3036 Phenomenology +1011.3053 Mesoscale and Nanoscale Physics +1011.4211 +1011.4302 Information Theory +1011.4474 +1011.4628 +1011.6329 Geometric Topology +1011.6392 Cosmology and Nongalactic Astrophysics +1012.0472 Statistical Mechanics +1012.2248 Cryptography and Security +1012.3564 +1012.3627 Atomic Physics +1012.5175 Instrumentation and Detectors +1012.5525 Superconductivity +1012.5678 +1101.0621 +1101.1208 +1101.1667 Formal Languages and Automata Theory +1101.2083 General Physics +1101.2175 Molecular Networks +1101.2986 Number Theory +1101.3151 +1101.4181 Theory +1101.4272 Phenomenology +1101.4972 Phenomenology +1101.5225 Materials Science +1101.5742 Exactly Solvable and Integrable Systems +1102.0894 +1102.1677 Mesoscale and Nanoscale Physics +1102.1953 Spectral Theory +1102.2273 Number Theory +1102.2597 Analysis of PDEs +1102.2980 Number Theory +1102.3531 Chemical Physics +1102.4102 Probability +1102.5102 +1102.5201 Optics +1102.5376 Earth and Planetary Astrophysics +1102.5385 Artificial Intelligence +1102.5431 Methodology +1102.5448 Computer Vision and Pattern Recognition +1102.5561 Artificial Intelligence +1102.5674 +1102.5768 Analysis of PDEs +1103.0027 Solar and Stellar Astrophysics +1103.0039 Combinatorics +1103.0043 Representation Theory +1103.0046 Commutative Algebra +1103.0047 Functional Analysis +1103.0048 Physics and Society +1103.0061 +1103.0065 Multimedia +1103.0067 Combinatorics +1103.0068 Representation Theory +1103.0071 Complex Variables +1103.0072 Geometric Topology +1103.0083 Databases +1103.0086 Distributed, Parallel, and Cluster Computing +1103.0087 Neural and Evolutionary Computing +1103.0089 Information Theory +1103.0090 Functional Analysis +1103.0092 Probability +1103.0094 Experiment +1103.0095 Strongly Correlated Electrons +1103.0100 +1103.0104 +1103.0105 Mesoscale and Nanoscale Physics +1103.0113 Analysis of PDEs +1103.0116 Data Structures and Algorithms +1103.0118 Complex Variables +1103.0125 Software Engineering +1103.0126 +1103.0127 Artificial Intelligence +1103.0132 +1103.0134 Optimization and Control +1103.0138 Analysis of PDEs +1103.0139 Strongly Correlated Electrons +1103.0140 Phenomenology +1103.0143 Numerical Analysis +1103.0144 +1103.0150 +1103.0163 Analysis of PDEs +1103.0164 Statistical Mechanics +1103.0170 Classical Analysis and ODEs +1103.0173 Combinatorics +1103.0174 Probability +1103.0175 Chemical Physics +1103.0181 Popular Physics +1103.0185 Mesoscale and Nanoscale Physics +1103.0190 Strongly Correlated Electrons +1103.0191 Analysis of PDEs +1103.0197 Differential Geometry +1103.0198 Analysis of PDEs +1103.0199 Earth and Planetary Astrophysics +1103.0200 K-Theory and Homology +1103.0207 Analysis of PDEs +1103.0208 Probability +1103.0209 Analysis of PDEs +1103.0214 Probability +1103.0216 Biomolecules +1103.0217 Logic in Computer Science +1103.0219 Statistical Mechanics +1103.0220 Cryptography and Security +1103.0226 +1103.0236 Theory +1103.0242 Soft Condensed Matter +1103.0246 Representation Theory +1103.0248 Databases +1103.0254 Geometric Topology +1103.0255 Functional Analysis +1103.0260 Data Structures and Algorithms +1103.0267 Number Theory +1103.0270 Information Theory +astro-ph/0408094 +astro-ph/9501103 +cond-mat/0306736 Soft Condensed Matter +cond-mat/9912030 Superconductivity +hep-ex/0410061 Experiment +hep-ex/0505021 Experiment +hep-ph/9308345 Phenomenology +hep-ph/9411310 Phenomenology +hep-ph/9412239 Phenomenology +hep-ph/9503444 Phenomenology +hep-ph/9503461 Phenomenology +hep-ph/9505270 Phenomenology +hep-ph/9506450 Phenomenology +hep-ph/9509392 Phenomenology +hep-ph/9510260 Phenomenology +hep-ph/9510321 Phenomenology +hep-ph/9510334 Phenomenology +hep-ph/9511469 Phenomenology +hep-ph/9512205 Phenomenology +hep-ph/9601393 Phenomenology +hep-ph/9608436 Phenomenology +hep-ph/9609311 Phenomenology +hep-ph/9609373 Phenomenology +hep-ph/9609432 Phenomenology +hep-ph/9609453 Phenomenology +hep-ph/9610337 Phenomenology +hep-ph/9610341 Phenomenology +hep-ph/9610373 Phenomenology +hep-ph/9610513 Phenomenology +hep-ph/9611358 Phenomenology +hep-ph/9611445 Phenomenology +hep-ph/9612342 Phenomenology +hep-ph/9703289 Phenomenology +hep-ph/9710287 Phenomenology +hep-ph/9710497 Phenomenology +hep-ph/9711233 Phenomenology +hep-ph/9711254 Phenomenology +hep-ph/9803222 Phenomenology +hep-ph/9901251 Phenomenology +hep-ph/9903504 Phenomenology +hep-ph/9911399 Phenomenology +hep-th/0104144 Theory +hep-th/0307015 Theory +hep-th/9208073 Theory +hep-th/9303004 Theory +hep-th/9711171 Theory +math/0401286 Representation Theory +math/0502540 Differential Geometry +math/0508640 Representation Theory +nucl-ex/0409031 +nucl-ex/0608005 +quant-ph/0702225 +0706.0138 Dynamical Systems +0706.2234 +0707.1160 Strongly Correlated Electrons +0708.2633 Theory +0709.4467 Portfolio Management +0801.1359 +0802.0411 +0802.4033 Operator Algebras +0804.4798 +0805.0852 +0805.1700 +0805.1898 +0805.2085 +0805.4075 +0806.0323 +0806.0324 +0806.1245 +0806.4094 Functional Analysis +0807.0487 Other Condensed Matter +0807.1738 +0808.1147 +0809.2620 +0809.5197 +0811.3430 +0901.3239 Chaotic Dynamics +0901.3471 Statistics Theory +0903.3372 Probability +0903.4796 Data Structures and Algorithms +0904.1551 Statistics Theory +0904.3695 General Physics +0905.3298 +0905.3860 Statistical Mechanics +0906.0530 Theory +0906.0678 Portfolio Management +0906.0702 Pricing of Securities +0906.4785 Cosmology and Nongalactic Astrophysics +0907.3545 Analysis of PDEs +0908.0835 General Physics +0908.1767 Statistics Theory +0908.3974 +0909.1088 Probability +0909.1288 Probability +0909.2558 Theory +0910.0444 Cosmology and Nongalactic Astrophysics +0910.4477 Quantum Algebra +0911.0026 Symplectic Geometry +0911.1861 Chaotic Dynamics +0911.4402 Strongly Correlated Electrons +0912.4480 Statistics Theory +1001.0728 Phenomenology +1001.3209 Statistics Theory +1002.0098 Algebraic Topology +1002.0557 +1002.1412 Classical Analysis and ODEs +1002.2277 Space Physics +1002.2396 Classical Analysis and ODEs +1003.5594 Superconductivity +1004.0015 Mesoscale and Nanoscale Physics +1004.0581 Functional Analysis +1004.3185 Probability +1004.4954 +1004.5166 Algebraic Geometry +1004.5400 +1005.0918 Algebraic Topology +1005.1474 Strongly Correlated Electrons +1005.2058 Theory +1005.2424 Classical Analysis and ODEs +1005.3565 Probability +1005.4443 +1005.5272 Quantum Gases +1005.5545 +1005.5573 Phenomenology +1006.0218 Algebraic Geometry +1006.3645 +1006.4930 Theory +1006.5822 +1007.0088 Phenomenology +1007.0268 Phenomenology +1007.1454 Cosmology and Nongalactic Astrophysics +1007.1482 Theory +1007.2393 Lattice +1007.2494 Theory +1007.2590 Phenomenology +1007.4522 Mesoscale and Nanoscale Physics +1007.4639 Lattice +1007.5164 Lattice +1007.5191 Solar and Stellar Astrophysics +1007.5379 Phenomenology +1008.0291 Mesoscale and Nanoscale Physics +1008.0466 Phenomenology +1008.0709 Phenomenology +1008.2317 Phenomenology +1008.2465 Commutative Algebra +1008.3218 Lattice +1008.3510 +1008.3715 +1008.3814 Phenomenology +1008.4691 Complex Variables +1008.5063 Algebraic Geometry +1008.5208 +1008.5256 +1009.1181 +1009.1186 Lattice +1009.1196 +1009.1248 Superconductivity +1009.1790 Lattice +1009.2377 Optics +1009.2704 +1009.4129 Phenomenology +1009.4522 Phenomenology +1009.4534 +1009.5167 Combinatorics +1009.5190 +1009.5494 +1009.5707 Phenomenology +1009.5781 Phenomenology +1009.5846 Theory +1009.6201 +1010.0028 Phenomenology +1010.0054 Phenomenology +1010.0197 Phenomenology +1010.0598 Probability +1010.1204 Phenomenology +1010.1298 Functional Analysis +1010.2175 Phenomenology +1010.2788 High Energy Astrophysical Phenomena +1010.3021 Theory +1010.3066 Superconductivity +1010.4136 Superconductivity +1010.4356 Phenomenology +1010.4760 Formal Languages and Automata Theory +1010.4828 +1010.4962 Theory +1010.5253 Phenomenology +1010.5254 Phenomenology +1010.5281 Lattice +1010.5307 Theory +1010.5323 Phenomenology +1010.5428 Lattice +1010.5483 Lattice +1011.0771 Mesoscale and Nanoscale Physics +1011.1589 Programming Languages +1011.2205 Phenomenology +1011.3954 Strongly Correlated Electrons +1011.4190 Experiment +1011.4444 +1011.4479 History and Philosophy of Physics +1011.5182 +1012.0049 Quantum Gases +1012.0079 Dynamical Systems +1012.1537 Exactly Solvable and Integrable Systems +1012.1740 Statistical Mechanics +1012.3133 +1012.3381 +1012.4061 +1012.4817 General Mathematics +1012.5874 +1101.0489 Rings and Algebras +1101.1234 Superconductivity +1101.1277 Combinatorics +1101.5181 Plasma Physics +1102.1170 +1102.1532 Phenomenology +1102.1958 Mesoscale and Nanoscale Physics +1102.4391 Quantum Algebra +1103.1157 Artificial Intelligence +1103.1272 Functional Analysis +1103.1342 History and Philosophy of Physics +1103.1413 Classical Physics +1103.1414 Quantum Algebra +1103.1474 Computer Vision and Pattern Recognition +1103.1500 Analysis of PDEs +1103.1501 Adaptation and Self-Organizing Systems +1103.1510 +1103.1562 Algebraic Geometry +1103.1634 Disordered Systems and Neural Networks +1103.1643 +1103.1653 Populations and Evolution +1103.1655 General Mathematics +1103.1662 Number Theory +1103.1672 Information Theory +1103.1673 +1103.1674 Theory +1103.1676 Probability +1103.1678 Instrumentation and Detectors +1103.1680 Physics and Society +1103.1687 Space Physics +1103.1689 Information Theory +1103.1691 Combinatorics +1103.1697 Phenomenology +1103.1698 Dynamical Systems +1103.1716 Networking and Internet Architecture +1103.1717 Operating Systems +1103.1725 Networking and Internet Architecture +1103.1726 Statistics Theory +1103.1729 Portfolio Management +1103.1738 Algebraic Topology +1103.1741 Physics and Society +1103.1742 Information Theory +1103.1754 Mesoscale and Nanoscale Physics +1103.1768 Statistics Theory +1103.1769 Representation Theory +1103.1771 Data Structures and Algorithms +1103.1773 Computer Vision and Pattern Recognition +1103.1777 Computational Engineering, Finance, and Science +1103.1778 Computational Engineering, Finance, and Science +1103.1779 Numerical Analysis +1103.1781 Analysis of PDEs +1103.1783 Cosmology and Nongalactic Astrophysics +1103.1784 Information Theory +1103.1790 Statistics Theory +1103.1795 Statistics Theory +1103.1800 Accelerator Physics +1103.1801 Combinatorics +1103.1812 Rings and Algebras +1103.1815 Accelerator Physics +1103.1822 Classical Analysis and ODEs +1103.1828 Theory +1103.1831 Materials Science +1103.1834 Populations and Evolution +1103.1838 Materials Science +1103.1839 Probability +1103.1859 Numerical Analysis +1103.1862 +1103.1866 +1103.1870 Soft Condensed Matter +astro-ph/0005368 +astro-ph/0010505 +astro-ph/0011005 +astro-ph/0011104 +astro-ph/0012165 +astro-ph/0012204 +astro-ph/0012417 +astro-ph/0012429 +astro-ph/0103143 +astro-ph/0105252 +astro-ph/0105500 +astro-ph/0106430 +astro-ph/0107090 +astro-ph/0107197 +astro-ph/0107451 +astro-ph/0108155 +astro-ph/0109152 +astro-ph/0109167 +astro-ph/0109533 +astro-ph/0110043 +astro-ph/0110289 +astro-ph/0110676 +astro-ph/0111011 +astro-ph/0111255 +astro-ph/0112043 +astro-ph/0112084 +astro-ph/0112162 +astro-ph/0112234 +astro-ph/0201494 +astro-ph/0202400 +astro-ph/0203336 +astro-ph/0205530 +astro-ph/0206178 +astro-ph/0206216 +astro-ph/0206256 +astro-ph/0206425 +astro-ph/0207128 +astro-ph/0207570 +astro-ph/0208106 +astro-ph/0208309 +astro-ph/0208553 +astro-ph/0209302 +astro-ph/0209440 +astro-ph/0210255 +astro-ph/0210348 +astro-ph/0210559 +astro-ph/0210644 +astro-ph/0211624 +astro-ph/0212345 +astro-ph/0212375 +astro-ph/0212562 +astro-ph/0301047 +astro-ph/0301155 +astro-ph/0302280 +astro-ph/0302440 +astro-ph/0302531 +astro-ph/0303668 +astro-ph/0304290 +astro-ph/0304296 +astro-ph/0304297 +astro-ph/0304541 +astro-ph/0305032 +astro-ph/0305278 +astro-ph/0311090 +astro-ph/0311379 +astro-ph/0311408 +astro-ph/0312160 +astro-ph/0401135 +astro-ph/0401405 +astro-ph/0401406 +astro-ph/0401434 +astro-ph/0401442 +astro-ph/0402402 +astro-ph/0402566 +astro-ph/0402567 +astro-ph/0402577 +astro-ph/0402652 +astro-ph/0403040 +astro-ph/0403482 +astro-ph/0403502 +astro-ph/0404275 +astro-ph/0404422 +astro-ph/0404574 +astro-ph/0405021 +astro-ph/0405506 +astro-ph/0406380 +astro-ph/0406471 +astro-ph/0406513 +astro-ph/0406559 +astro-ph/0406560 +astro-ph/0406564 +astro-ph/0407537 +astro-ph/0409080 +astro-ph/0409314 +astro-ph/0411233 +astro-ph/0411646 +astro-ph/0412079 +astro-ph/0412175 +astro-ph/0501180 +astro-ph/0501355 +astro-ph/0501422 +astro-ph/0502401 +astro-ph/0503062 +astro-ph/0504058 +astro-ph/0504300 +astro-ph/0504492 +astro-ph/0505299 +astro-ph/0506340 +astro-ph/0507705 +astro-ph/0602240 +astro-ph/0603336 +astro-ph/0606137 +astro-ph/9405046 +astro-ph/9602104 +astro-ph/9607034 +astro-ph/9610079 +astro-ph/9706211 +astro-ph/9706218 +astro-ph/9707140 +astro-ph/9805336 +astro-ph/9807058 +astro-ph/9812473 +astro-ph/9909211 +cond-mat/0503190 Superconductivity +hep-ph/9308329 Phenomenology +hep-ph/9610229 Phenomenology +hep-ph/9612245 Phenomenology +hep-ph/9702429 Phenomenology +hep-ph/9704365 Phenomenology +hep-ph/9709483 Phenomenology +hep-ph/9710403 Phenomenology +hep-ph/9802340 Phenomenology +hep-ph/9803471 Phenomenology +hep-ph/9807283 Phenomenology +hep-ph/9807552 Phenomenology +hep-ph/9810471 Phenomenology +hep-th/0210228 Theory +hep-th/0501212 Theory +hep-th/9712109 Theory +math/0104186 Differential Geometry +math/0105085 Differential Geometry +math/0412006 Geometric Topology +math/0509526 Algebraic Geometry +math/9806073 Operator Algebras +nlin/0606007 Cellular Automata and Lattice Gases +physics/0402044 Instrumentation and Detectors +0712.4127 Rings and Algebras +0806.3862 Superconductivity +0807.1113 +0807.5096 Statistics Theory +0812.2316 Analysis of PDEs +0812.4161 Geometric Topology +0901.1968 +0901.2989 Metric Geometry +0903.1387 Popular Physics +0903.1508 Popular Physics +0905.2979 Methodology +0906.2429 Theory +0907.1740 Rings and Algebras +0909.3085 Analysis of PDEs +0911.4352 Soft Condensed Matter +1001.1588 Atmospheric and Oceanic Physics +1001.4559 +1001.5431 Superconductivity +1002.4651 +1005.3805 Quantum Algebra +1005.5539 Fluid Dynamics +1006.0917 Quantum Gases +1006.3805 Optics +1007.0714 Functional Analysis +1007.2598 Group Theory +1008.3378 +1008.3491 Cosmology and Nongalactic Astrophysics +1009.0134 Analysis of PDEs +1009.3570 Algebraic Geometry +1010.0398 Algebraic Geometry +1010.1969 Numerical Analysis +1010.3052 +1010.4886 +1011.4235 Differential Geometry +1012.2812 Materials Science +1012.3017 Mesoscale and Nanoscale Physics +1012.3182 Optimization and Control +1102.2492 Strongly Correlated Electrons +1102.3218 Computational Finance +1102.3301 Phenomenology +1102.3757 Mesoscale and Nanoscale Physics +1103.0215 +1103.0412 Combinatorics +1103.1983 +1103.4331 Functional Analysis +1103.4790 Accelerator Physics +1103.5006 Phenomenology +1103.5030 Number Theory +1103.5934 Neurons and Cognition +1103.5993 +1104.0337 Superconductivity +1104.0807 Digital Libraries +1104.4068 Phenomenology +1105.0326 General Physics +1105.1956 Instrumentation and Detectors +1105.2298 Theory +1105.3465 Theory +1105.4244 Mesoscale and Nanoscale Physics +1105.4418 Soft Condensed Matter +1105.4845 Theory +1105.5110 Superconductivity +1105.5934 Theory +1106.1143 +1106.1479 +1106.2579 Spectral Theory +1106.2822 Experiment +1106.3696 High Energy Astrophysical Phenomena +1106.3763 Materials Science +1106.5401 Superconductivity +1107.4882 High Energy Astrophysical Phenomena +1107.5370 Data Structures and Algorithms +1107.5657 Probability +1107.5697 Statistical Mechanics +1107.5719 Instrumentation and Methods for Astrophysics +1107.5816 Biological Physics +1107.5821 +1107.5831 History and Overview +1107.5841 Optimization and Control +1107.5847 Software Engineering +1107.5851 Social and Information Networks +1107.5853 Biomolecules +1107.5854 Mesoscale and Nanoscale Physics +1107.5856 Analysis of PDEs +1107.5859 Statistics Theory +1107.5861 Symplectic Geometry +1107.5865 Algebraic Topology +1107.5870 Social and Information Networks +1107.5871 +1107.5872 Applications +1107.5880 Chemical Physics +1107.5881 +1107.5883 Applications +1107.5891 Materials Science +1107.5893 Numerical Analysis +1107.5894 General Physics +1107.5897 Logic in Computer Science +1107.5899 Applications +1107.5904 Plasma Physics +1107.5913 Probability +1107.5914 Dynamical Systems +1107.5917 Analysis of PDEs +1107.5919 Atmospheric and Oceanic Physics +1107.5921 Plasma Physics +1107.5924 Systems and Control +1107.5926 Probability +1107.5930 Artificial Intelligence +1107.5935 Applications +1107.5937 Quantum Gases +1107.5938 Fluid Dynamics +1107.5946 Algebraic Geometry +1107.5952 Differential Geometry +1107.5962 Materials Science +1107.5969 Group Theory +1107.5972 Dynamical Systems +1107.5974 Astrophysics of Galaxies +1107.5976 Analysis of PDEs +1107.5977 Phenomenology +1107.5978 Astrophysics of Galaxies +1107.5980 Logic in Computer Science +1107.5981 Dynamical Systems +1107.5986 Theory +1107.5989 Number Theory +1107.5998 Materials Science +1107.6008 Rings and Algebras +1107.6012 Statistical Mechanics +1107.6014 Distributed, Parallel, and Cluster Computing +1107.6020 Computational Physics +1107.6038 Numerical Analysis +1107.6039 Number Theory +1107.6043 Methodology +1107.6044 Algebraic Geometry +astro-ph/0108003 +astro-ph/0302161 +astro-ph/0406069 +astro-ph/0408419 +astro-ph/0411522 +astro-ph/9908267 +hep-lat/0505012 Lattice +hep-ph/0404183 Phenomenology +hep-ph/0603048 Phenomenology +hep-ph/0607184 Phenomenology +hep-ph/9404262 Phenomenology +hep-ph/9501266 Phenomenology +hep-ph/9612313 Phenomenology +hep-ph/9912287 Phenomenology +hep-th/0005136 Theory +hep-th/0205236 Theory +hep-th/0211250 Theory +hep-th/0306235 Theory +hep-th/0602129 Theory +math/0406025 Number Theory +quant-ph/0403053 +quant-ph/0607166 +0708.1980 Logic +0801.0684 Complex Variables +0804.1540 Soft Condensed Matter +0805.3964 Computer Vision and Pattern Recognition +0812.4185 Algebraic Geometry +0905.0398 +0905.2585 Combinatorics +0907.2984 Information Theory +0909.4287 Algebraic Topology +0909.5288 +0911.1254 Differential Geometry +0911.3282 +1001.0490 Theory +1004.4770 +1005.2806 Logic +1005.3585 Combinatorics +1006.0479 Mesoscale and Nanoscale Physics +1006.2568 Experiment +1007.0243 Phenomenology +1007.1689 Optics +1007.4035 +1008.0150 Mesoscale and Nanoscale Physics +1008.0640 Theory +1008.1137 +1008.1267 Phenomenology +1008.1646 Phenomenology +1008.2246 Cosmology and Nongalactic Astrophysics +1008.2594 Quantum Gases +1009.2362 +1009.2417 +1009.2448 Phenomenology +1009.2512 Mesoscale and Nanoscale Physics +1009.2578 Mesoscale and Nanoscale Physics +1009.2894 Phenomenology +1009.3390 Experiment +1009.4588 Phenomenology +1009.5297 Phenomenology +1009.5309 Theory +1009.5571 Mesoscale and Nanoscale Physics +1010.0596 Lattice +1010.3609 +1010.3699 +1011.1287 Theory +1011.2673 Theory +1011.2712 Superconductivity +1011.2751 +1011.4932 Theory +1012.1501 Learning +1012.1934 Optics +1012.3605 Soft Condensed Matter +1012.3612 Algebraic Geometry +1012.4325 Materials Science +1012.4403 Tissues and Organs +1012.5263 Optics +1101.0553 Numerical Analysis +1101.0763 Astrophysics of Galaxies +1101.1467 Solar and Stellar Astrophysics +1101.1882 Mesoscale and Nanoscale Physics +1101.2685 Lattice +1101.2738 Representation Theory +1101.3548 Theory +1101.4810 Phenomenology +1101.4878 Phenomenology +1101.5156 Theory +1101.5623 Statistical Mechanics +1102.0343 Theory +1102.0385 +1102.0704 Phenomenology +1102.1047 +1102.1428 Theory +1102.1794 Phenomenology +1102.2896 Phenomenology +1102.2900 Phenomenology +1102.3125 Strongly Correlated Electrons +1102.3251 Phenomenology +1102.3595 Phenomenology +1102.3638 Other Condensed Matter +1102.3937 Social and Information Networks +1102.4093 Theory +1102.4145 Phenomenology +1102.4724 Theory +1102.4969 Functional Analysis +1102.4971 Programming Languages +1102.5091 Theory +1102.5423 +1103.0343 +1103.0696 Quantum Gases +1103.1261 Cosmology and Nongalactic Astrophysics +1103.1490 Theory +1103.1688 Phenomenology +1103.2032 +1103.3085 Phenomenology +1103.4132 Cosmology and Nongalactic Astrophysics +1103.4510 Materials Science +1103.5460 Mesoscale and Nanoscale Physics +1103.6033 Phenomenology +1104.0387 +1104.0421 +1104.0931 Cosmology and Nongalactic Astrophysics +1104.1035 Instrumentation and Detectors +1104.1212 Differential Geometry +1104.1376 Analysis of PDEs +1104.1576 Theory +1104.2503 Lattice +1104.3253 +1104.4157 +1104.4438 High Energy Astrophysical Phenomena +1104.4749 Phenomenology +1104.4790 +1105.0725 Computation +1105.1636 Quantum Algebra +1105.1863 +1105.1895 Solar and Stellar Astrophysics +1105.2360 Strongly Correlated Electrons +1105.2526 Methodology +1105.3331 +1105.4113 Representation Theory +1105.4370 High Energy Astrophysical Phenomena +1105.6185 Lattice +1106.1811 Databases +1106.1894 Other Computer Science +1106.1898 High Energy Astrophysical Phenomena +1106.1905 Theory +1106.1907 Rings and Algebras +1106.1908 Rings and Algebras +1106.1909 Quantum Algebra +1106.1910 Computational Complexity +1106.1912 Mesoscale and Nanoscale Physics +1106.1916 Methodology +1106.1917 Strongly Correlated Electrons +1106.1918 Probability +1106.1919 Networking and Internet Architecture +1106.1923 Materials Science +1106.1924 Strongly Correlated Electrons +1106.1927 Astrophysics of Galaxies +1106.1936 Number Theory +1106.1938 Cosmology and Nongalactic Astrophysics +1106.1940 Social and Information Networks +1106.1944 Information Theory +1106.1946 Instrumentation and Detectors +1106.1957 Artificial Intelligence +1106.1958 Combinatorics +1106.1963 Plasma Physics +1106.1965 Mesoscale and Nanoscale Physics +1106.1969 Information Theory +1106.1972 Soft Condensed Matter +1106.1979 Category Theory +1106.1981 Plasma Physics +1106.1986 +1106.1993 Methodology +1106.1996 Phenomenology +1106.1997 Phenomenology +1106.1999 Computational Finance +1106.2006 Mesoscale and Nanoscale Physics +1106.2010 Analysis of PDEs +1106.2012 Differential Geometry +1106.2019 Solar and Stellar Astrophysics +1106.2021 Theory +1106.2029 Number Theory +1106.2031 Functional Analysis +1106.2034 Soft Condensed Matter +1106.2037 +1106.2038 Biological Physics +1106.2048 Neurons and Cognition +1106.2050 Information Theory +1106.2052 Numerical Analysis +1106.2057 Information Theory +1106.2059 High Energy Astrophysical Phenomena +1106.2061 Experiment +1106.2064 Phenomenology +1106.2067 High Energy Astrophysical Phenomena +1106.2072 Functional Analysis +1106.2073 Soft Condensed Matter +1106.2076 Phenomenology +1106.2077 Other Computer Science +1106.2079 Accelerator Physics +1106.2084 Cosmology and Nongalactic Astrophysics +1106.2086 +1106.2093 Soft Condensed Matter +1106.2094 Group Theory +1106.2095 Computational Finance +1106.2096 Phenomenology +1106.2099 +1106.2103 Phenomenology +1106.2104 Computational Complexity +1106.2105 +1106.2108 Probability +1106.2113 Neural and Evolutionary Computing +1106.2122 Logic in Computer Science +1106.2123 Probability +1106.2124 Medical Physics +1106.2129 Statistical Mechanics +1106.2136 Group Theory +1106.2139 Functional Analysis +1106.2149 Number Theory +1106.2152 Mesoscale and Nanoscale Physics +1106.2155 Analysis of PDEs +1106.2156 Neural and Evolutionary Computing +1106.2158 Cosmology and Nongalactic Astrophysics +astro-ph/0508554 +cond-mat/0211119 Strongly Correlated Electrons +math/0609636 Logic +math/0612682 Optimization and Control +nucl-th/9803036 +0712.1118 +0807.0079 Biological Physics +0807.0745 Strongly Correlated Electrons +0810.2988 Numerical Analysis +0810.4544 Group Theory +0811.3080 Statistical Mechanics +0812.1200 Computational Complexity +0812.1702 +0812.4878 Phenomenology +0901.0827 Representation Theory +0902.2537 Numerical Analysis +0904.4381 Cosmology and Nongalactic Astrophysics +0907.3874 Networking and Internet Architecture +0908.0008 Phenomenology +0908.0635 +0909.4308 Dynamical Systems +0910.3812 Algebraic Geometry +0910.3915 Fluid Dynamics +0910.5095 Phenomenology +0911.0877 Probability +0911.1340 Symbolic Computation +0911.5336 Instrumentation and Detectors +0912.0547 Mesoscale and Nanoscale Physics +0912.1847 Earth and Planetary Astrophysics +0912.2153 +0912.3311 Algebraic Geometry +1001.0016 Theory +1001.0174 Geometric Topology +1001.1217 Phenomenology +1001.2378 General Topology +1001.2799 Phenomenology +1001.4188 +1001.4655 Optics +1001.4716 General Physics +1002.1202 Materials Science +1002.1912 Cosmology and Nongalactic Astrophysics +1002.3717 Differential Geometry +1002.4397 Earth and Planetary Astrophysics +1003.0999 Representation Theory +1003.1597 Instrumentation and Detectors +1003.1718 Phenomenology +1003.1837 +1003.2037 Combinatorics +1003.4008 Commutative Algebra +1003.4150 +1004.2184 +1004.2587 Instrumentation and Detectors +1004.2727 +1004.4537 +1005.0291 Information Theory +1005.1164 +1005.1657 +1005.2219 +1005.2334 +1005.3038 Cosmology and Nongalactic Astrophysics +1005.3492 Cosmology and Nongalactic Astrophysics +1005.4060 Phenomenology +1005.4686 Theory +1006.0135 Instrumentation and Detectors +1006.0817 Data Analysis, Statistics and Probability +1006.1266 Probability +1006.1525 Strongly Correlated Electrons +1006.3321 Cosmology and Nongalactic Astrophysics +1006.3602 +1006.4208 Experiment +1006.4749 Theory +1006.4802 Phenomenology +1006.5304 Strongly Correlated Electrons +1006.5483 Theory +1006.5710 Theory +1007.0464 Phenomenology +1007.0596 Phenomenology +1007.1131 Instrumentation and Detectors +1007.1642 +1007.2309 Number Theory +1007.2877 Phenomenology +1007.3163 Cosmology and Nongalactic Astrophysics +1007.3300 Phenomenology +1007.3721 Phenomenology +1007.3779 Experiment +1007.4130 Chaotic Dynamics +1007.4746 +1008.0768 Phenomenology +1008.0860 +1008.1250 Cosmology and Nongalactic Astrophysics +1008.1433 +1008.2098 Phenomenology +1008.2596 +1008.3637 Theory +1008.4107 Instrumentation and Detectors +1008.4444 +1008.4595 Fluid Dynamics +1008.5013 Phenomenology +1008.5087 Mesoscale and Nanoscale Physics +1008.5193 High Energy Astrophysical Phenomena +1008.5326 Phenomenology +1009.0206 Cosmology and Nongalactic Astrophysics +1009.0851 Dynamical Systems +1009.1003 Data Analysis, Statistics and Probability +1009.1281 Algebraic Geometry +1009.1475 Mesoscale and Nanoscale Physics +1009.1549 Cosmology and Nongalactic Astrophysics +1009.1614 Strongly Correlated Electrons +1009.2072 Atomic Physics +1009.2485 +1009.2683 +1009.3244 Phenomenology +1009.3605 Phenomenology +1009.3655 Phenomenology +1009.3688 Theory +1009.3693 Atomic Physics +1009.4380 Phenomenology +1009.4593 Phenomenology +1009.4864 Experiment +1009.4935 Phenomenology +1009.5492 Theory +1009.5662 Phenomenology +1009.5837 Cosmology and Nongalactic Astrophysics +1009.5977 Phenomenology +1009.6015 Disordered Systems and Neural Networks +1010.1057 Instrumentation and Detectors +1010.1967 History and Overview +1010.2250 +1010.2415 +1010.2493 Solar and Stellar Astrophysics +1010.3077 Phenomenology +1010.3457 +1010.3483 Phenomenology +1010.4254 Phenomenology +1010.4544 Number Theory +1010.5620 Experiment +1011.0296 Quantum Gases +1011.0448 Statistical Mechanics +1011.0597 Distributed, Parallel, and Cluster Computing +1011.0747 +1011.1661 Quantum Gases +1011.2143 +1011.2499 Superconductivity +1011.2869 +1011.3562 Theory +1011.3625 Cosmology and Nongalactic Astrophysics +1011.4072 Phenomenology +1011.4411 +1011.4483 +1011.5125 Materials Science +1011.5837 Other Condensed Matter +1012.0850 High Energy Astrophysical Phenomena +1012.2143 High Energy Astrophysical Phenomena +1012.2366 +1012.2627 Phenomenology +1012.2795 Experiment +1012.3203 Cosmology and Nongalactic Astrophysics +1012.4042 High Energy Astrophysical Phenomena +1012.4457 Astrophysics of Galaxies +1012.4625 Chemical Physics +1012.4766 High Energy Astrophysical Phenomena +1012.5395 Mesoscale and Nanoscale Physics +1012.5411 High Energy Astrophysical Phenomena +1012.5557 +1101.0700 +1101.1541 Materials Science +1101.1630 Phenomenology +1101.1649 Analysis of PDEs +1101.1797 Statistical Mechanics +1101.2084 +1101.2737 General Mathematics +1101.2818 General Mathematics +1101.2829 General Mathematics +1101.2845 General Mathematics +1101.3080 General Mathematics +1101.3081 General Mathematics +1101.3201 Phenomenology +1101.3231 Methodology +1101.3699 General Mathematics +1101.4609 Discrete Mathematics +1101.4720 General Mathematics +1101.5341 Software Engineering +1101.5747 Combinatorics +1101.5897 Analysis of PDEs +1101.5944 Data Structures and Algorithms +1101.5988 Plasma Physics +1101.5996 Algebraic Geometry +1102.0003 Solar and Stellar Astrophysics +1102.0008 Statistics Theory +1102.0012 Cosmology and Nongalactic Astrophysics +1102.0021 Probability +1102.0023 Cryptography and Security +1102.0040 Information Theory +1102.0050 Phenomenology +1102.0064 Phenomenology +1102.0071 Analysis of PDEs +1102.0075 Statistics Theory +1102.0079 Artificial Intelligence +1102.0096 Combinatorics +1102.0099 Physics and Society +1102.0100 Mesoscale and Nanoscale Physics +1102.0102 Algebraic Topology +1102.0104 Solar and Stellar Astrophysics +1102.0107 High Energy Astrophysical Phenomena +1102.0109 Statistical Mechanics +1102.0112 Fluid Dynamics +1102.0115 Databases +1102.0116 Fluid Dynamics +1102.0118 Phenomenology +1102.0119 Algebraic Geometry +1102.0124 Materials Science +1102.0125 Geophysics +1102.0127 Combinatorics +1102.0128 +1102.0129 Theory +1102.0131 Superconductivity +1102.0132 Instrumentation and Detectors +1102.0137 Functional Analysis +1102.0143 Statistics Theory +1102.0144 Instrumentation and Methods for Astrophysics +1102.0148 Instrumentation and Methods for Astrophysics +1102.0150 Solar and Stellar Astrophysics +1102.0155 Logic in Computer Science +1102.0158 Symplectic Geometry +1102.0160 Information Theory +1102.0161 Instrumentation and Methods for Astrophysics +1102.0165 Astrophysics of Galaxies +1102.0166 Neurons and Cognition +1102.0167 Analysis of PDEs +1102.0169 General Mathematics +1102.0182 +1102.0183 Artificial Intelligence +1102.0186 Algebraic Topology +1102.0190 Dynamical Systems +1102.0191 Statistical Mechanics +1102.0193 Soft Condensed Matter +1102.0194 Soft Condensed Matter +1102.0199 +1102.0201 Cosmology and Nongalactic Astrophysics +1102.0202 Numerical Analysis +1102.0203 Computer Science and Game Theory +1102.0209 General Mathematics +1102.0210 Experiment +1102.0211 Theory +1102.0213 Representation Theory +1102.0220 +1102.0224 Pricing of Securities +1102.0230 Combinatorics +1102.0248 Operator Algebras +1102.0249 Astrophysics of Galaxies +1102.0253 Astrophysics of Galaxies +1102.0257 Social and Information Networks +astro-ph/0506141 +astro-ph/9907431 +cond-mat/0611740 Superconductivity +hep-th/9807213 Theory +math/0203060 Quantum Algebra +math/0605517 Algebraic Geometry +nucl-th/0511086 +nucl-th/0701004 +0711.3328 Rings and Algebras +0711.3928 Numerical Analysis +0804.4262 Numerical Analysis +0804.4868 +0808.1936 Probability +0809.3520 Strongly Correlated Electrons +0810.2359 Combinatorics +0811.1855 Atmospheric and Oceanic Physics +0812.3447 Information Theory +0901.1124 Atomic Physics +0906.4777 Strongly Correlated Electrons +0907.0511 Statistical Mechanics +0907.4000 Applications +0909.3549 Symplectic Geometry +0910.5232 Materials Science +0911.4070 Strongly Correlated Electrons +0911.4271 Data Analysis, Statistics and Probability +0912.1038 Theory +1002.0241 Differential Geometry +1002.0515 Theory +1002.1709 Theory +1004.2573 Theory +1004.3075 +1004.3542 Cosmology and Nongalactic Astrophysics +1004.4685 Strongly Correlated Electrons +1005.2488 Theory +1005.3556 Strongly Correlated Electrons +1005.3659 Probability +1005.4493 Pattern Formation and Solitons +1006.2696 Combinatorics +1006.3209 Algebraic Geometry +1006.3600 Statistical Mechanics +1006.3681 Disordered Systems and Neural Networks +1006.3946 +1006.3997 Spectral Theory +1007.0711 Functional Analysis +1007.2114 Analysis of PDEs +1007.2631 Phenomenology +1007.2651 Theory +1007.3005 +1007.3323 Phenomenology +1007.4257 Computational Complexity +1008.0689 +1008.1569 +1008.1576 Differential Geometry +1008.2562 Strongly Correlated Electrons +1009.3842 General Physics +1009.5680 Cosmology and Nongalactic Astrophysics +1010.1165 Physics and Society +1010.1671 Quantum Gases +1010.2048 Statistical Finance +1010.3447 Symplectic Geometry +1011.0516 Lattice +1011.0697 +1011.0945 Functional Analysis +1011.1052 Phenomenology +1011.2573 Materials Science +1011.3569 Pattern Formation and Solitons +1011.5376 Atomic and Molecular Clusters +1012.0303 Strongly Correlated Electrons +1012.1572 +1012.2279 General Finance +1012.2744 Theory +1012.3153 Complex Variables +1012.4114 +1012.4417 Quantum Gases +1102.0524 Data Analysis, Statistics and Probability +1102.0601 Geometric Topology +1102.1241 Metric Geometry +1102.4205 Numerical Analysis +1102.5292 Cosmology and Nongalactic Astrophysics +1103.1064 Quantum Gases +1103.2857 Statistical Mechanics +1103.3493 Category Theory +1103.4287 Theory +1103.4392 History and Philosophy of Physics +1103.5243 Statistics Theory +1103.5918 +1104.0317 Functional Analysis +1104.0409 +1104.0459 Databases +1104.0487 Theory +1104.0662 Quantum Algebra +1104.0673 Combinatorics +1104.0682 General Physics +1104.0684 General Physics +1104.0689 Symbolic Computation +1104.0694 Phenomenology +1104.0703 Physics Education +1104.0713 Combinatorics +1104.0714 Quantum Algebra +1104.0719 +1104.0726 Algebraic Geometry +1104.0727 Populations and Evolution +1104.0731 K-Theory and Homology +1104.0732 Dynamical Systems +1104.0734 +1104.0739 Data Structures and Algorithms +1104.0745 Differential Geometry +1104.0746 Symbolic Computation +1104.0747 Solar and Stellar Astrophysics +1104.0749 Spectral Theory +1104.0750 Functional Analysis +1104.0752 Networking and Internet Architecture +1104.0756 Analysis of PDEs +1104.0763 Statistics Theory +1104.0764 Methodology +1104.0766 Analysis of PDEs +1104.0767 Analysis of PDEs +1104.0769 Robotics +1104.0770 Functional Analysis +1104.0771 Functional Analysis +1104.0774 Probability +1104.0777 General Finance +1104.0780 Robotics +1104.0782 Medical Physics +1104.0787 Phenomenology +1104.0792 Classical Analysis and ODEs +1104.0796 High Energy Astrophysical Phenomena +1104.0797 Classical Analysis and ODEs +1104.0799 Accelerator Physics +1104.0800 Cryptography and Security +1104.0801 Materials Science +1104.0802 Accelerator Physics +1104.0803 Accelerator Physics +1104.0809 Multimedia +1104.0813 Theory +1104.0824 Other Computer Science +1104.0825 High Energy Astrophysical Phenomena +1104.0829 Differential Geometry +1104.0833 Complex Variables +1104.0834 Robotics +1104.0835 History and Philosophy of Physics +1104.0839 Robotics +1104.0840 Robotics +1104.0846 Solar and Stellar Astrophysics +1104.0848 Data Structures and Algorithms +1104.0850 Phenomenology +1104.0854 Mesoscale and Nanoscale Physics +1104.0867 Databases +1104.0869 Lattice +1104.0870 Algebraic Geometry +1104.0876 Biological Physics +1104.0882 Data Structures and Algorithms +1104.0886 +1104.0893 Fluid Dynamics +1104.0904 Rings and Algebras +1104.0911 Functional Analysis +1104.0915 Spectral Theory +1104.0917 Combinatorics +funct-an/9302008 Functional Analysis +funct-an/9704007 Functional Analysis +gr-qc/9605073 +hep-th/9703129 Theory +hep-th/9905102 Theory +math-ph/0203021 +math-ph/0304022 +math-ph/0405037 +math-ph/0405067 +math/0003082 Operator Algebras +math/0102196 Operator Algebras +math/0309366 Operator Algebras +math/0312512 Operator Algebras +math/9903104 Operator Algebras +nlin/0607004 Chaotic Dynamics +0705.3224 Physics and Society +0806.2098 +0806.4508 Differential Geometry +0807.3312 Group Theory +0809.2304 Differential Geometry +0810.3209 Combinatorics +0811.2362 Dynamical Systems +0811.2514 Theory +0812.4366 Phenomenology +0901.3741 +0902.1826 Differential Geometry +0902.3165 Phenomenology +0903.1279 Phenomenology +0903.2020 +0904.1887 +0905.4576 Cosmology and Nongalactic Astrophysics +0906.2806 Logic +0906.3944 High Energy Astrophysical Phenomena +0908.4284 Functional Analysis +0909.1196 Astrophysics of Galaxies +0909.2415 Rings and Algebras +0909.2628 Functional Analysis +0909.3995 Algebraic Topology +0910.0508 Quantum Gases +0910.0782 Theory +0910.1254 +0910.1272 Solar and Stellar Astrophysics +0910.1879 Information Theory +0910.3415 Spectral Theory +0911.2947 Phenomenology +0911.4780 Atomic Physics +0911.4782 Atomic Physics +0911.5001 +0911.5171 Sound +0912.0662 Strongly Correlated Electrons +0912.2041 Phenomenology +0912.2467 Analysis of PDEs +0912.2725 Theory +0912.2870 Logic +1001.0306 +1001.2447 +1002.3884 Metric Geometry +1003.1532 Geometric Topology +1003.3788 Theory +1003.4642 Strongly Correlated Electrons +1003.4692 Classical Analysis and ODEs +1003.5419 Functional Analysis +1004.1737 Strongly Correlated Electrons +1004.1782 Cosmology and Nongalactic Astrophysics +1004.3401 Quantum Algebra +1004.3572 Theory +1004.3833 Information Theory +1004.4632 +1005.0569 +1005.1420 +1005.1807 +1005.2934 Theory +1005.3209 Phenomenology +1005.4521 Phenomenology +1006.2389 Phenomenology +1006.2555 Pricing of Securities +1006.3306 Theory +1006.3846 Phenomenology +1006.4522 +1006.4991 Mesoscale and Nanoscale Physics +1006.5028 Populations and Evolution +1006.5418 +1006.5727 Quantum Algebra +1007.0368 Phenomenology +1007.1230 Cosmology and Nongalactic Astrophysics +1007.3041 +1007.3719 Theory +1007.4048 Strongly Correlated Electrons +1007.4676 Theory +1007.5414 Phenomenology +1008.0087 Theory +1008.1130 Materials Science +1008.2115 +1008.2259 Superconductivity +1008.3026 +1008.3186 Theory +1008.4423 +1008.4759 Phenomenology +1008.5281 Astrophysics of Galaxies +1008.5289 Mesoscale and Nanoscale Physics +1008.5325 Learning +1009.0882 +1009.0983 Phenomenology +1009.0985 +1009.1376 Theory +1009.2559 Phenomenology +1009.3895 Phenomenology +1009.4876 +1009.4916 +1009.5327 Probability +1009.5601 Strongly Correlated Electrons +1009.5690 Theory +1009.5729 Cryptography and Security +1009.5907 Quantum Gases +1009.6180 Soft Condensed Matter +1010.0040 Analysis of PDEs +1010.0242 Analysis of PDEs +1010.1124 +1010.1581 +1010.1775 Theory +1010.2153 Phenomenology +1010.2256 Fluid Dynamics +1010.3282 +1010.3288 Theory +1010.3673 Group Theory +1010.4085 Theory +1010.5577 +1010.5949 +1010.6021 Phenomenology +1010.6085 Quantum Gases +1010.6207 Functional Analysis +1011.0073 +1011.0224 +1011.0240 Theory +1011.0269 Phenomenology +1011.0317 Logic +1011.0371 Lattice +1011.0373 Lattice +1011.0379 Lattice +1011.0411 Lattice +1011.0829 Cosmology and Nongalactic Astrophysics +1011.1168 Data Structures and Algorithms +1011.1190 +1011.1630 Theory +1011.1940 +1011.2345 Cosmology and Nongalactic Astrophysics +1011.2832 +1011.2903 Statistical Mechanics +1011.2907 Phenomenology +1011.3244 Adaptation and Self-Organizing Systems +1011.4085 +1011.4164 Statistical Mechanics +1011.4542 Phenomenology +1011.4669 Theory +1011.4714 +1011.4730 Phenomenology +1011.4860 Phenomenology +1011.4873 Phenomenology +1011.4979 Phenomenology +1011.5067 Mesoscale and Nanoscale Physics +1011.5304 Phenomenology +1012.0082 Phenomenology +1012.0262 +1012.0435 Phenomenology +1012.0595 +1012.0644 +1012.1179 Mesoscale and Nanoscale Physics +1012.1248 +1012.1325 Group Theory +1012.1335 Cosmology and Nongalactic Astrophysics +1012.1478 Phenomenology +1012.1794 Experiment +1012.2126 Phenomenology +1012.2158 +1012.2168 Phenomenology +1012.2456 +1012.2861 +1012.3209 Theory +1012.3460 Cosmology and Nongalactic Astrophysics +1012.3568 Theory +1012.3904 Cosmology and Nongalactic Astrophysics +1012.4179 Phenomenology +1012.4323 Phenomenology +1012.4671 Phenomenology +1012.4867 Theory +1012.5829 +1012.6045 +1101.0319 +1101.0554 +1101.0623 Mesoscale and Nanoscale Physics +1101.1254 Cosmology and Nongalactic Astrophysics +1101.1439 Phenomenology +1101.2690 +1101.2936 Phenomenology +1101.3943 Strongly Correlated Electrons +1101.4009 Theory +1101.4358 Theory +1101.4967 Superconductivity +1101.5164 Cosmology and Nongalactic Astrophysics +1101.5977 Instrumentation and Detectors +1101.5982 Category Theory +1102.0174 Materials Science +1102.0737 Materials Science +1102.0756 Phenomenology +1102.1174 Number Theory +1102.1948 +1102.2030 +1102.2271 +1102.2397 Phenomenology +1102.2545 +1102.3076 Functional Analysis +1102.3407 Lattice +1102.3714 +1102.3799 Instrumentation and Detectors +1102.3863 +1102.3946 Phenomenology +1102.4915 Statistics Theory +1102.5149 Combinatorics +1103.0514 Algebraic Geometry +1103.1040 Computer Science and Game Theory +1103.1203 +1103.1419 +1103.1434 Plasma Physics +1103.1553 +1103.1622 Formal Languages and Automata Theory +1103.1732 Optimization and Control +1103.2666 Theory +1103.3099 Performance +1103.3313 Representation Theory +1103.3399 Theory +1103.3539 Rings and Algebras +1103.3575 Earth and Planetary Astrophysics +1103.3696 General Physics +1103.3701 Cosmology and Nongalactic Astrophysics +1103.3712 Chemical Physics +1103.3717 History and Overview +1103.3718 Analysis of PDEs +1103.3719 Information Theory +1103.3721 Networking and Internet Architecture +1103.3726 Optimization and Control +1103.3735 Information Retrieval +1103.3737 Information Theory +1103.3742 Information Theory +1103.3745 Artificial Intelligence +1103.3749 Strongly Correlated Electrons +1103.3758 Analysis of PDEs +1103.3760 Analysis of PDEs +1103.3762 Number Theory +1103.3766 Networking and Internet Architecture +1103.3770 General Topology +1103.3774 Phenomenology +1103.3775 Functional Analysis +1103.3779 Software Engineering +1103.3780 K-Theory and Homology +1103.3782 Computer Science and Game Theory +1103.3783 Materials Science +1103.3786 Materials Science +1103.3788 Phenomenology +1103.3792 Cryptography and Security +1103.3793 +1103.3798 Materials Science +1103.3801 Numerical Analysis +1103.3802 Multimedia +1103.3811 Analysis of PDEs +1103.3816 Geophysics +1103.3819 Algebraic Geometry +1103.3830 +1103.3831 Operating Systems +1103.3832 Operating Systems +1103.3833 +1103.3838 Differential Geometry +1103.3843 Information Theory +1103.3846 Numerical Analysis +1103.3853 Number Theory +1103.3854 Combinatorics +1103.3855 Materials Science +1103.3858 Combinatorics +1103.3865 Rings and Algebras +1103.3867 Analysis of PDEs +1103.3871 Classical Analysis and ODEs +1103.3877 Differential Geometry +1103.3883 Biomolecules +1103.3885 Information Theory +1103.3897 Cosmology and Nongalactic Astrophysics +1103.3901 +1103.3903 Computational Geometry +1103.3904 Artificial Intelligence +1103.3926 Instrumentation and Detectors +1103.3929 Exactly Solvable and Integrable Systems +1103.3931 Classical Physics +1103.3938 Combinatorics +1103.3939 Group Theory +1103.3941 Solar and Stellar Astrophysics +1103.3945 Numerical Analysis +1103.3947 +1103.3950 Computer Science and Game Theory +1103.3953 Statistical Mechanics +1103.3954 Artificial Intelligence +1103.3956 Algebraic Topology +1103.3962 +1103.3972 Geophysics +1103.3973 Optics +1103.3986 Number Theory +1103.3989 +1103.3991 Category Theory +1103.3998 General Physics +1103.4000 General Physics +1103.4004 Probability +1103.4007 Information Theory +1103.4014 Analysis of PDEs +1103.4016 Networking and Internet Architecture +1103.4019 Dynamical Systems +1103.4022 Analysis of PDEs +1103.4023 Machine Learning +1103.4026 Astrophysics of Galaxies +1103.4027 Analysis of PDEs +1103.4030 Biomolecules +1103.4031 Representation Theory +1103.4035 +1103.4039 Optimization and Control +1103.4041 Analysis of PDEs +1103.4043 Other Condensed Matter +1103.4056 Software Engineering +1103.4063 Functional Analysis +1103.4064 Probability +1103.4066 Representation Theory +1103.4068 Combinatorics +1103.4071 Distributed, Parallel, and Cluster Computing +1103.4074 Superconductivity +1103.4080 Other Computer Science +1103.4088 Metric Geometry +1103.4089 Rings and Algebras +1103.4095 Fluid Dynamics +1103.4096 K-Theory and Homology +1103.4118 Sound +cond-mat/0603512 Mesoscale and Nanoscale Physics +hep-ph/0203049 Phenomenology +hep-ph/0212392 Phenomenology +hep-ph/0303103 Phenomenology +hep-ph/0401039 Phenomenology +hep-ph/0404150 Phenomenology +hep-ph/9907264 Phenomenology +hep-th/0209150 Theory +hep-th/0301178 Theory +hep-th/0305075 Theory +hep-th/0309079 Theory +hep-th/0401162 Theory +hep-th/0412260 Theory +hep-th/0602043 Theory +math/0509161 Algebraic Geometry +math/0510279 Spectral Theory +math/0608209 Algebraic Geometry +math/0701051 Representation Theory +math/0701295 Algebraic Topology +physics/0701107 Physics and Society +1101.4787 General Mathematics +1101.4791 General Mathematics +1101.4807 General Mathematics +1102.1350 General Mathematics +1107.3129 Distributed, Parallel, and Cluster Computing +1107.3164 Theory +1107.3357 Chemical Physics +1108.1371 +1108.1881 +1108.1901 Adaptation and Self-Organizing Systems +1108.1945 Statistics Theory +1108.3379 Commutative Algebra +1108.3552 Statistics Theory +1108.3979 Materials Science +1108.4597 General Mathematics +1108.4760 +1108.4945 Analysis of PDEs +1108.5050 +1108.5133 Theory +1108.5432 Solar and Stellar Astrophysics +1108.5477 Analysis of PDEs +1108.6104 Statistics Theory +1108.6323 +1109.0067 Cosmology and Nongalactic Astrophysics +1109.0068 +1109.0848 Theory +1109.1095 Phenomenology +1109.1533 Optimization and Control +1109.1658 Logic +1109.1979 Algebraic Geometry +1109.2253 Materials Science +1109.2522 Soft Condensed Matter +0704.2929 History and Overview +0705.0017 +0707.3622 Discrete Mathematics +0708.1947 Superconductivity +0802.2424 Statistics Theory +0808.0651 +0808.3623 Optics +0809.3332 Statistics Theory +0810.2904 Atomic Physics +0811.2827 Data Analysis, Statistics and Probability +0902.0195 Operator Algebras +0904.4853 Algebraic Geometry +0905.0086 Plasma Physics +0905.3342 Cosmology and Nongalactic Astrophysics +0906.0767 Cosmology and Nongalactic Astrophysics +0907.2934 Classical Analysis and ODEs +0908.4269 Theory +0909.3136 Optics +0911.1991 Soft Condensed Matter +0911.2080 Differential Geometry +0912.0874 Machine Learning +0912.1085 +0912.3293 Soft Condensed Matter +1001.5291 Theory +1003.3910 Geometric Topology +1004.2809 +1005.3255 Differential Geometry +1006.4670 Soft Condensed Matter +1006.5522 Functional Analysis +1008.1641 Classical Physics +1008.3744 Other Condensed Matter +1009.5319 Theory +1010.5842 Operator Algebras +1011.1915 Phenomenology +1011.5005 Theory +1011.6092 Algebraic Topology +1012.1929 Data Analysis, Statistics and Probability +1101.0204 Networking and Internet Architecture +1101.3456 Phenomenology +1101.3641 Materials Science +1102.2015 Applications +1102.2886 Probability +1102.2942 Spectral Theory +1102.3631 Logic +1102.3636 Mesoscale and Nanoscale Physics +1103.0494 Information Theory +1103.2372 Methodology +1103.4708 Theory +1104.2143 Theory +1104.4098 Theory +1104.5271 General Physics +1105.1062 Information Retrieval +1105.1340 +1105.2457 +1105.2947 +1105.3233 Atomic Physics +1105.5567 Materials Science +1105.5624 +1105.5646 +1105.5677 Atomic Physics +1105.5802 Information Theory +1106.0277 Theory +1106.1557 Strongly Correlated Electrons +1106.1718 Quantum Gases +1106.5056 +1106.5150 Physics and Society +1106.5399 Mesoscale and Nanoscale Physics +1106.5725 Lattice +1107.2177 Disordered Systems and Neural Networks +1107.5833 Quantum Gases +1108.0434 +1108.1656 Physics and Society +1108.4838 High Energy Astrophysical Phenomena +1108.5134 +1108.5278 Soft Condensed Matter +1108.5478 Mesoscale and Nanoscale Physics +1109.0182 Probability +1109.0355 Mesoscale and Nanoscale Physics +1109.2089 Mesoscale and Nanoscale Physics +1109.3097 Theory +1109.4611 Dynamical Systems +1109.5640 Other Statistics +1110.0603 Statistical Mechanics +1110.3391 Mesoscale and Nanoscale Physics +1110.4036 Mesoscale and Nanoscale Physics +1110.4484 Phenomenology +1110.5476 High Energy Astrophysical Phenomena +1110.5965 Algebraic Geometry +1110.6768 +1110.6863 High Energy Astrophysical Phenomena +1110.6890 High Energy Astrophysical Phenomena +1111.0427 Other Computer Science +1111.0432 Learning +1111.0463 Phenomenology +1111.0520 Cosmology and Nongalactic Astrophysics +1111.0627 Distributed, Parallel, and Cluster Computing +1111.0638 +1111.0639 Differential Geometry +1111.0640 Software Engineering +1111.0645 Spectral Theory +1111.0648 Geophysics +1111.0652 Analysis of PDEs +1111.0655 History and Overview +1111.0662 Chemical Physics +1111.0666 Analysis of PDEs +1111.0669 Representation Theory +1111.0671 Numerical Analysis +1111.0677 Lattice +1111.0681 Phenomenology +1111.0684 Probability +1111.0686 High Energy Astrophysical Phenomena +1111.0693 Physics and Society +1111.0695 +1111.0697 High Energy Astrophysical Phenomena +1111.0698 High Energy Astrophysical Phenomena +1111.0703 Hardware Architecture +1111.0704 Hardware Architecture +1111.0705 Hardware Architecture +1111.0706 Computational Complexity +1111.0707 Cosmology and Nongalactic Astrophysics +1111.0710 Cosmology and Nongalactic Astrophysics +1111.0712 Learning +1111.0719 Optics +1111.0722 Dynamical Systems +1111.0726 +1111.0727 Information Theory +1111.0735 Digital Libraries +1111.0738 Cosmology and Nongalactic Astrophysics +1111.0743 Phenomenology +1111.0745 Quantum Algebra +1111.0749 History and Philosophy of Physics +1111.0750 Geophysics +1111.0751 +1111.0755 Experiment +1111.0763 +1111.0764 Mesoscale and Nanoscale Physics +1111.0770 Atmospheric and Oceanic Physics +1111.0771 Group Theory +1111.0775 Group Theory +1111.0783 High Energy Astrophysical Phenomena +1111.0784 Group Theory +1111.0789 Instrumentation and Detectors +1111.0790 Theory +1111.0793 Materials Science +1111.0794 Optimization and Control +1111.0795 Lattice +1111.0796 Analysis of PDEs +1111.0799 Phenomenology +1111.0807 Solar and Stellar Astrophysics +1111.0811 Optics +1111.0813 High Energy Astrophysical Phenomena +1111.0814 +1111.0818 Optimization and Control +1111.0821 Solar and Stellar Astrophysics +1111.0828 High Energy Astrophysical Phenomena +1111.0841 Complex Variables +1111.0844 Complex Variables +1111.0845 Lattice +1111.0846 Solar and Stellar Astrophysics +1111.0847 Complex Variables +1111.0852 General Physics +1111.0854 Algebraic Topology +1111.0855 Networking and Internet Architecture +1111.0856 Logic +1111.0858 Analysis of PDEs +1111.0859 Differential Geometry +1111.0860 Artificial Intelligence +1111.0864 Phenomenology +1111.0866 +1111.0869 Experiment +1111.0870 Software Engineering +1111.0871 Group Theory +1111.0873 Robotics +1111.0877 Probability +1111.0881 Classical Analysis and ODEs +1111.0882 Networking and Internet Architecture +1111.0885 Computer Vision and Pattern Recognition +1111.0886 +1111.0891 Chemical Physics +1111.0892 Chemical Physics +1111.0894 Chemical Physics +1111.0896 Chemical Physics +1111.0901 Lattice +1111.0902 Complex Variables +1111.0904 High Energy Astrophysical Phenomena +1111.0911 Applications +1111.0913 High Energy Astrophysical Phenomena +1111.0918 Phenomenology +1111.0920 Social and Information Networks +1111.0923 Differential Geometry +1111.0924 +1111.0925 Number Theory +1111.0926 Optics +1111.0929 Lattice +1111.0939 Materials Science +1111.0942 Number Theory +1111.0943 Mesoscale and Nanoscale Physics +1111.0944 +1111.0945 +1111.0947 +1111.0948 Networking and Internet Architecture +1111.0949 Phenomenology +1111.0951 Lattice +1111.0952 Data Structures and Algorithms +1111.0954 High Energy Astrophysical Phenomena +1111.0955 Soft Condensed Matter +1111.0960 Classical Analysis and ODEs +gr-qc/0307042 +physics/0612041 General Physics +quant-ph/0112086 +quant-ph/0312213 +quant-ph/0509181 +quant-ph/0511071 +0708.0650 Materials Science +0708.2894 Complex Variables +0709.2978 Commutative Algebra +0709.3993 Complex Variables +0712.0201 Algebraic Geometry +0712.1502 +0712.3585 +0801.2599 Algebraic Geometry +0801.3891 Theory +0804.2415 Algebraic Geometry +0805.1218 +0809.0026 Phenomenology +0811.3448 Data Structures and Algorithms +0902.0251 Analysis of PDEs +0902.0659 Algebraic Topology +0903.1401 Geometric Topology +0904.2120 Superconductivity +0904.2151 Materials Science +0904.3847 Probability +0905.4901 Commutative Algebra +0909.3282 +0910.2166 Combinatorics +0910.3629 Instrumentation and Detectors +0911.0055 Symplectic Geometry +0911.2899 Programming Languages +0911.3767 Differential Geometry +0911.4859 Computational Finance +0912.2514 Dynamical Systems +0912.4984 Representation Theory +1002.0631 Operator Algebras +1002.2038 Algebraic Geometry +1002.3275 Dynamical Systems +1003.2492 Instrumentation and Detectors +1003.4795 Dynamical Systems +1003.5048 Differential Geometry +1003.5181 Operator Algebras +1004.1989 +1004.3511 Cosmology and Nongalactic Astrophysics +1005.1285 Combinatorics +1005.3877 Algebraic Geometry +1005.4348 +1006.0688 Materials Science +1006.3097 Phenomenology +1006.3548 +1006.5134 Quantum Algebra +1006.5286 Probability +1007.0070 Dynamical Systems +1007.0071 Dynamical Systems +1007.0707 +1007.2955 Differential Geometry +1007.3084 +1007.4302 Theory +1007.5361 +1008.1388 +1008.1951 Mesoscale and Nanoscale Physics +1008.2833 Lattice +1008.3245 Phenomenology +1008.3255 Mesoscale and Nanoscale Physics +1008.4216 Cosmology and Nongalactic Astrophysics +1008.5399 Phenomenology +1009.0202 Algebraic Geometry +1009.1891 Strongly Correlated Electrons +1009.2306 +1009.2400 Phenomenology +1009.2596 +1009.3081 +1009.3831 Materials Science +1009.3909 Materials Science +1009.4044 Algebraic Geometry +1010.0269 Mesoscale and Nanoscale Physics +1010.1536 Commutative Algebra +1010.3478 Theory +1010.3853 Theory +1010.3865 +1011.0055 Strongly Correlated Electrons +1011.0108 Data Structures and Algorithms +1011.2506 Experiment +1011.2535 Lattice +1011.2548 Lattice +1011.2570 Lattice +1011.2595 +1011.2596 Phenomenology +1011.2627 +1011.2698 Strongly Correlated Electrons +1011.2726 +1011.4570 +1011.5630 +1011.5838 Phenomenology +1012.0479 Superconductivity +1012.5932 General Finance +1101.0314 Strongly Correlated Electrons +1101.0761 Dynamical Systems +1101.1791 +1101.3253 Logic +1101.3259 Strongly Correlated Electrons +1101.3493 Methodology +1101.4783 Theory +1101.4961 Lattice +1101.5358 Phenomenology +1101.5616 Superconductivity +1102.0563 Phenomenology +1102.0767 Theory +1102.0910 Theory +1102.1407 Neural and Evolutionary Computing +1102.2039 Geometric Topology +1102.2423 Physics and Society +1102.2428 Cosmology and Nongalactic Astrophysics +1102.3094 Soft Condensed Matter +1102.3387 Quantum Gases +1102.3489 Phenomenology +1102.4167 Theory +1102.4579 Cryptography and Security +1102.5344 Theory +1103.0189 Analysis of PDEs +1103.0642 Soft Condensed Matter +1103.1887 Theory +1103.3405 Theory +1103.3912 Superconductivity +1103.4172 +1103.4360 General Physics +1103.5457 Geometric Topology +1103.5824 Theory +1104.2166 Probability +1104.2389 Phenomenology +1104.2478 Theory +1104.3099 +1104.3243 Theory +1104.3323 +1104.4016 Theory +1104.5289 Materials Science +1104.5666 Mesoscale and Nanoscale Physics +1105.0950 Solar and Stellar Astrophysics +1105.1407 Other Computer Science +1105.1411 Networking and Internet Architecture +1105.1857 Algebraic Geometry +1105.2345 +1105.2761 Materials Science +1105.2913 Differential Geometry +1105.2932 +1105.3139 Algebraic Geometry +1105.3162 Other Computer Science +1105.3208 +1105.3212 Digital Libraries +1105.3217 Numerical Analysis +1105.3224 Statistics Theory +1105.3230 Analysis of PDEs +1105.3235 Dynamical Systems +1105.3237 Cryptography and Security +1105.3238 Metric Geometry +1105.3239 Cryptography and Security +1105.3243 Theory +1105.3249 Dynamical Systems +1105.3250 Operator Algebras +1105.3252 Group Theory +1105.3260 Dynamical Systems +1105.3263 Metric Geometry +1105.3265 Physics and Society +1105.3270 Computer Vision and Pattern Recognition +1105.3272 Optimization and Control +1105.3276 Statistical Mechanics +1105.3280 Methodology +1105.3287 Digital Libraries +1105.3290 Combinatorics +1105.3293 Algebraic Geometry +1105.3308 Representation Theory +1105.3315 Differential Geometry +1105.3316 Physics and Society +1105.3319 Commutative Algebra +1105.3320 General Physics +1105.3343 Optimization and Control +1105.3346 Discrete Mathematics +1105.3347 Physics and Society +1105.3348 General Physics +1105.3355 Logic +1105.3356 Quantum Gases +1105.3360 Materials Science +1105.3367 Differential Geometry +1105.3369 Statistics Theory +1105.3374 Statistical Mechanics +1105.3380 Earth and Planetary Astrophysics +1105.3386 Solar and Stellar Astrophysics +1105.3388 Cryptography and Security +1105.3390 Theory +1105.3391 Solar and Stellar Astrophysics +1105.3392 Solar and Stellar Astrophysics +1105.3398 Functional Analysis +1105.3399 General Mathematics +1105.3400 High Energy Astrophysical Phenomena +1105.3405 Category Theory +1105.3408 Atmospheric and Oceanic Physics +1105.3413 Functional Analysis +1105.3414 Logic in Computer Science +1105.3418 Algebraic Geometry +1105.3425 Information Theory +1105.3435 Computational Geometry +1105.3439 Algebraic Geometry +1105.3448 Numerical Analysis +1105.3450 Cosmology and Nongalactic Astrophysics +1105.3452 Combinatorics +1105.3459 Digital Libraries +1105.3460 Differential Geometry +1105.3462 Theory +1105.3469 Other Computer Science +astro-ph/0106438 +astro-ph/0209012 +hep-ex/0001012 Experiment +hep-ex/0211057 Experiment +hep-ex/0301015 Experiment +hep-ex/0307024 Experiment +hep-ph/0004092 Phenomenology +hep-ph/0602032 Phenomenology +0707.3506 Differential Geometry +0710.3245 Differential Geometry +0803.2692 Theory +0804.3939 Molecular Networks +0806.3776 +0809.1754 Group Theory +0810.1682 Experiment +0811.1214 Phenomenology +0901.0562 Astrophysics of Galaxies +0902.3542 Statistical Mechanics +0902.3548 Physics and Society +0903.4472 Algebraic Geometry +0903.5454 Rings and Algebras +0905.0976 Physics and Society +0909.5586 Representation Theory +0910.4684 Classical Physics +0910.5957 Phenomenology +0911.1217 Superconductivity +0912.1086 Superconductivity +0912.2580 History and Overview +0912.5086 Experiment +1001.1662 Logic in Computer Science +1002.2544 +1002.4873 Theory +1005.2022 Instrumentation and Detectors +1006.2721 +1006.2731 Operator Algebras +1006.3823 Representation Theory +1006.5460 Cosmology and Nongalactic Astrophysics +1007.0155 Probability +1007.3006 Strongly Correlated Electrons +1007.3224 Phenomenology +1007.3490 Biological Physics +1007.4539 Cosmology and Nongalactic Astrophysics +1009.4584 Differential Geometry +1009.4679 Probability +1010.2665 Theory +1010.4339 Risk Management +1010.4528 Phenomenology +1011.1911 Theory +1011.2639 Theory +1011.2783 +1011.4038 Analysis of PDEs +1011.4074 Theory +1012.1472 Strongly Correlated Electrons +1012.2470 Rings and Algebras +1012.3611 +1012.4753 Theory +1012.5592 Phenomenology +1101.0465 Quantum Gases +1101.0533 Superconductivity +1101.1971 Theory +1101.2391 Quantum Gases +1101.2881 Statistical Mechanics +1101.3749 +1101.3796 Phenomenology +1101.3990 +1101.5625 Phenomenology +1101.6029 Programming Languages +1102.0313 Theory +1102.0924 Popular Physics +1102.1283 +1102.2830 Earth and Planetary Astrophysics +1102.2992 Theory +1102.5023 Lattice +1102.5356 +1103.3148 Theory +1103.3189 +1103.4365 Phenomenology +1103.4587 Phenomenology +1103.5703 General Finance +1103.5762 Experiment +1104.0185 Computational Complexity +1104.2234 Representation Theory +1104.2743 Geophysics +1104.2969 Cosmology and Nongalactic Astrophysics +1104.3249 Differential Geometry +1104.3723 +1104.3737 Phenomenology +1104.3776 Plasma Physics +1104.4060 +1104.4148 Earth and Planetary Astrophysics +1104.4248 Atomic Physics +1105.2401 General Topology +1105.2882 +1105.2954 Instrumentation and Detectors +1105.3931 Learning +1105.3974 Strongly Correlated Electrons +1105.3990 Probability +1105.3995 Physics Education +1105.3996 Probability +1105.4001 Materials Science +1105.4002 Numerical Analysis +1105.4004 Information Retrieval +1105.4012 Group Theory +1105.4016 Instrumentation and Methods for Astrophysics +1105.4019 General Physics +1105.4021 +1105.4024 +1105.4026 Information Theory +1105.4032 +1105.4033 +1105.4034 Statistical Mechanics +1105.4035 Solar and Stellar Astrophysics +1105.4037 Optimization and Control +1105.4053 Statistical Mechanics +1105.4058 Computer Vision and Pattern Recognition +1105.4060 Logic in Computer Science +1105.4062 Classical Analysis and ODEs +1105.4064 Group Theory +1105.4066 Analysis of PDEs +1105.4067 Theory +1105.4069 Functional Analysis +1105.4070 Analysis of PDEs +1105.4078 Group Theory +1105.4079 Analysis of PDEs +1105.4082 Networking and Internet Architecture +1105.4083 Representation Theory +1105.4087 Probability +1105.4088 Analysis of PDEs +1105.4091 Analysis of PDEs +1105.4092 Number Theory +1105.4094 High Energy Astrophysical Phenomena +1105.4095 Analysis of PDEs +1105.4101 Analysis of PDEs +1105.4105 Analysis of PDEs +1105.4107 Analysis of PDEs +1105.4110 Analysis of PDEs +1105.4111 Analysis of PDEs +1105.4121 Rings and Algebras +1105.4122 General Topology +1105.4125 Cryptography and Security +1105.4132 Probability +1105.4133 Phenomenology +1105.4137 Analysis of PDEs +1105.4138 +1105.4146 Astrophysics of Galaxies +1105.4153 +1105.4156 Algebraic Geometry +1105.4157 Classical Analysis and ODEs +1105.4162 Combinatorics +1105.4163 Combinatorics +astro-ph/0001105 +astro-ph/0001173 +astro-ph/0001254 +astro-ph/0001274 +astro-ph/0001397 +astro-ph/0001429 +astro-ph/0001501 +astro-ph/0002297 +astro-ph/0002448 +astro-ph/0003098 +astro-ph/0003179 +astro-ph/0003189 +astro-ph/0003308 +astro-ph/0003442 +astro-ph/0003472 +astro-ph/0004079 +astro-ph/0004282 +astro-ph/0004292 +astro-ph/0004375 +astro-ph/0005076 +astro-ph/0005212 +astro-ph/0005468 +astro-ph/0005515 +astro-ph/0006133 +astro-ph/0006163 +astro-ph/0007183 +astro-ph/0007464 +astro-ph/0007465 +astro-ph/0008113 +astro-ph/0008206 +astro-ph/0008333 +astro-ph/0008480 +astro-ph/0009417 +astro-ph/0010163 +astro-ph/0010196 +astro-ph/0010322 +astro-ph/0010437 +astro-ph/0010554 +astro-ph/0010560 +astro-ph/0010608 +astro-ph/0010641 +astro-ph/0010659 +astro-ph/0011167 +astro-ph/0011205 +astro-ph/0011269 +astro-ph/0011357 +astro-ph/0011454 +astro-ph/0012094 +astro-ph/0012321 +astro-ph/0012547 +astro-ph/0101069 +astro-ph/0101408 +astro-ph/0103274 +astro-ph/0105077 +astro-ph/0105114 +astro-ph/0105215 +astro-ph/0106070 +astro-ph/0106088 +astro-ph/0106369 +astro-ph/0107334 +astro-ph/0107582 +astro-ph/0108331 +astro-ph/0109510 +astro-ph/0112441 +astro-ph/0301063 +astro-ph/0301071 +astro-ph/0301075 +astro-ph/0301079 +astro-ph/0301115 +astro-ph/0301141 +astro-ph/0301190 +astro-ph/0301195 +astro-ph/0301201 +astro-ph/0301205 +astro-ph/0301206 +astro-ph/0301208 +astro-ph/0301219 +astro-ph/0301221 +astro-ph/0301245 +astro-ph/0301254 +astro-ph/0301258 +astro-ph/0301262 +astro-ph/0301267 +astro-ph/0301522 +astro-ph/0301523 +astro-ph/0301524 +astro-ph/0301525 +astro-ph/0301529 +astro-ph/0301534 +astro-ph/0301569 +astro-ph/0301571 +astro-ph/0301572 +astro-ph/0301573 +astro-ph/0301574 +astro-ph/0301579 +astro-ph/0301580 +astro-ph/0301602 +astro-ph/0301604 +astro-ph/0301618 +astro-ph/0301637 +astro-ph/0301639 +astro-ph/0301648 +astro-ph/0302007 +astro-ph/0302019 +astro-ph/0302026 +astro-ph/0302029 +astro-ph/0302032 +astro-ph/0302043 +astro-ph/0302045 +astro-ph/0302053 +astro-ph/0302059 +astro-ph/0302075 +astro-ph/0302080 +astro-ph/0302121 +astro-ph/0302234 +astro-ph/0302239 +astro-ph/0302242 +astro-ph/0302323 +astro-ph/0302334 +astro-ph/0302406 +astro-ph/0302411 +astro-ph/0302415 +astro-ph/0302417 +astro-ph/0302421 +astro-ph/0302422 +astro-ph/0302426 +astro-ph/0302475 +astro-ph/0302476 +astro-ph/0302477 +astro-ph/0302484 +astro-ph/0302488 +astro-ph/0302492 +astro-ph/0302493 +astro-ph/0302515 +astro-ph/0302516 +astro-ph/0302518 +astro-ph/0302522 +astro-ph/0302551 +astro-ph/0302561 +astro-ph/0302564 +astro-ph/0302570 +astro-ph/0302590 +astro-ph/0302595 +astro-ph/0302601 +astro-ph/0303025 +astro-ph/0303029 +astro-ph/0303031 +astro-ph/0303111 +astro-ph/0303258 +astro-ph/0303409 +astro-ph/0303439 +astro-ph/0303471 +astro-ph/0303486 +astro-ph/0303525 +astro-ph/0303528 +astro-ph/0303547 +astro-ph/0303575 +astro-ph/0303585 +astro-ph/0303624 +astro-ph/0303634 +astro-ph/0303644 +astro-ph/0303646 +astro-ph/0304344 +astro-ph/0305017 +astro-ph/0305204 +astro-ph/0305220 +astro-ph/0305243 +astro-ph/0305355 +astro-ph/0305356 +astro-ph/0305388 +astro-ph/0305502 +astro-ph/0306197 +astro-ph/0306277 +astro-ph/0306298 +astro-ph/0310096 +astro-ph/0310156 +astro-ph/0310225 +astro-ph/0310637 +astro-ph/0310693 +astro-ph/0311097 +astro-ph/0311283 +astro-ph/0311345 +astro-ph/0311388 +astro-ph/0311620 +astro-ph/0312118 +astro-ph/9205004 +astro-ph/9209001 +astro-ph/9212001 +astro-ph/9301010 +astro-ph/9305023 +astro-ph/9305024 +astro-ph/9308031 +astro-ph/9309020 +astro-ph/9309053 +astro-ph/9311043 +astro-ph/9311044 +astro-ph/9312058 +astro-ph/9312060 +astro-ph/9404001 +astro-ph/9404019 +astro-ph/9406013 +astro-ph/9406025 +astro-ph/9406027 +astro-ph/9406062 +astro-ph/9407008 +astro-ph/9407049 +astro-ph/9409010 +astro-ph/9409029 +astro-ph/9409067 +astro-ph/9410071 +astro-ph/9410076 +astro-ph/9411018 +astro-ph/9411047 +astro-ph/9411084 +astro-ph/9411096 +astro-ph/9411100 +astro-ph/9412029 +astro-ph/9412051 +astro-ph/9412065 +astro-ph/9412071 +astro-ph/9412074 +astro-ph/9501013 +astro-ph/9501077 +astro-ph/9501083 +astro-ph/9502089 +astro-ph/9502093 +astro-ph/9503021 +astro-ph/9503026 +astro-ph/9503037 +astro-ph/9504089 +astro-ph/9504090 +astro-ph/9505014 +astro-ph/9505025 +astro-ph/9505026 +astro-ph/9505027 +astro-ph/9505054 +astro-ph/9505071 +astro-ph/9505076 +astro-ph/9505097 +astro-ph/9505119 +astro-ph/9506007 +astro-ph/9506012 +astro-ph/9506024 +astro-ph/9506040 +astro-ph/9506100 +astro-ph/9506112 +astro-ph/9508147 +astro-ph/9509004 +astro-ph/9509027 +astro-ph/9509058 +astro-ph/9509090 +astro-ph/9509139 +astro-ph/9509140 +astro-ph/9510036 +astro-ph/9510119 +astro-ph/9510133 +astro-ph/9511084 +astro-ph/9511136 +astro-ph/9512120 +astro-ph/9512144 +astro-ph/9601115 +astro-ph/9601129 +astro-ph/9601132 +astro-ph/9602053 +astro-ph/9602072 +astro-ph/9602115 +astro-ph/9603131 +astro-ph/9603133 +astro-ph/9604065 +astro-ph/9604073 +astro-ph/9604104 +astro-ph/9604115 +astro-ph/9604130 +astro-ph/9605107 +astro-ph/9605133 +astro-ph/9605145 +astro-ph/9605149 +astro-ph/9605153 +astro-ph/9605188 +astro-ph/9606014 +astro-ph/9606122 +astro-ph/9606149 +astro-ph/9607040 +astro-ph/9607161 +astro-ph/9608155 +astro-ph/9609156 +astro-ph/9610070 +astro-ph/9610106 +astro-ph/9610172 +astro-ph/9610247 +astro-ph/9611030 +astro-ph/9611084 +astro-ph/9611159 +astro-ph/9612012 +astro-ph/9612058 +astro-ph/9612085 +astro-ph/9612158 +astro-ph/9612214 +astro-ph/9701037 +astro-ph/9701073 +astro-ph/9702071 +astro-ph/9702139 +astro-ph/9703045 +astro-ph/9704023 +astro-ph/9704028 +astro-ph/9704138 +astro-ph/9705001 +astro-ph/9705093 +astro-ph/9705210 +astro-ph/9706005 +astro-ph/9706273 +astro-ph/9706299 +astro-ph/9707095 +astro-ph/9708041 +astro-ph/9708119 +astro-ph/9708236 +astro-ph/9709160 +astro-ph/9709218 +astro-ph/9709232 +astro-ph/9710030 +astro-ph/9710206 +astro-ph/9710254 +astro-ph/9712115 +astro-ph/9712293 +astro-ph/9801119 +astro-ph/9801174 +astro-ph/9801265 +astro-ph/9802243 +astro-ph/9802287 +astro-ph/9803098 +astro-ph/9803105 +astro-ph/9803187 +astro-ph/9803329 +astro-ph/9804059 +astro-ph/9805152 +astro-ph/9805211 +astro-ph/9805297 +astro-ph/9805364 +astro-ph/9806132 +astro-ph/9806152 +astro-ph/9806173 +astro-ph/9806302 +astro-ph/9806320 +astro-ph/9807056 +astro-ph/9807061 +astro-ph/9807080 +astro-ph/9807119 +astro-ph/9807147 +astro-ph/9807148 +astro-ph/9808033 +astro-ph/9808084 +astro-ph/9808112 +astro-ph/9808139 +astro-ph/9808186 +astro-ph/9809071 +astro-ph/9809085 +astro-ph/9809189 +astro-ph/9809255 +astro-ph/9810166 +astro-ph/9810182 +astro-ph/9810228 +astro-ph/9810355 +astro-ph/9811303 +astro-ph/9811448 +astro-ph/9811466 +astro-ph/9812153 +astro-ph/9812366 +astro-ph/9812447 +astro-ph/9901232 +astro-ph/9901235 +astro-ph/9901396 +astro-ph/9902006 +astro-ph/9902070 +astro-ph/9902079 +astro-ph/9902120 +astro-ph/9902123 +astro-ph/9902125 +astro-ph/9902138 +astro-ph/9902244 +astro-ph/9902337 +astro-ph/9902364 +astro-ph/9903010 +astro-ph/9903031 +astro-ph/9903044 +astro-ph/9903045 +astro-ph/9903127 +astro-ph/9903155 +astro-ph/9903175 +astro-ph/9903208 +astro-ph/9903241 +astro-ph/9903252 +astro-ph/9903359 +astro-ph/9903387 +astro-ph/9903453 +astro-ph/9903460 +astro-ph/9904055 +astro-ph/9904166 +astro-ph/9904172 +astro-ph/9904190 +astro-ph/9904234 +astro-ph/9904246 +astro-ph/9904297 +astro-ph/9904300 +astro-ph/9904324 +astro-ph/9904342 +astro-ph/9904372 +astro-ph/9904395 +astro-ph/9904420 +astro-ph/9905244 +astro-ph/9905262 +astro-ph/9905265 +astro-ph/9906166 +astro-ph/9906247 +astro-ph/9906274 +astro-ph/9906282 +astro-ph/9906350 +astro-ph/9906410 +astro-ph/9906482 +astro-ph/9907030 +astro-ph/9907055 +astro-ph/9907169 +astro-ph/9907250 +astro-ph/9907345 +astro-ph/9907347 +astro-ph/9907357 +astro-ph/9907399 +astro-ph/9908092 +astro-ph/9908132 +astro-ph/9908134 +astro-ph/9908155 +astro-ph/9908202 +astro-ph/9909010 +astro-ph/9909376 +astro-ph/9909381 +astro-ph/9909432 +astro-ph/9910112 +astro-ph/9910151 +astro-ph/9910208 +astro-ph/9910535 +astro-ph/9911146 +astro-ph/9911269 +astro-ph/9912312 +astro-ph/9912568 +gr-qc/0001035 +gr-qc/0003012 +gr-qc/0009031 +gr-qc/0010108 +gr-qc/0011093 +gr-qc/0107045 +gr-qc/0205089 +gr-qc/0208025 +gr-qc/0209033 +gr-qc/0304038 +gr-qc/0405145 +gr-qc/0405146 +gr-qc/0406041 +gr-qc/0407047 +gr-qc/0411123 +gr-qc/0412024 +gr-qc/0505009 +gr-qc/0505113 +gr-qc/0506105 +gr-qc/0604123 +gr-qc/9210002 +gr-qc/9508029 +gr-qc/9511031 +gr-qc/9604050 +gr-qc/9710121 +gr-qc/9804026 +gr-qc/9804048 +gr-qc/9910038 +hep-ex/0001041 Experiment +hep-ex/0003003 Experiment +hep-ex/0008001 Experiment +hep-ex/0109013 Experiment +hep-ex/0202015 Experiment +hep-ex/0302022 Experiment +hep-ex/0312050 Experiment +hep-ex/0403009 Experiment +hep-ex/0404042 Experiment +hep-ex/9910002 Experiment +hep-ph/0001245 Phenomenology +hep-ph/0002282 Phenomenology +hep-ph/0004073 Phenomenology +hep-ph/0004100 Phenomenology +hep-ph/0007155 Phenomenology +hep-ph/0008223 Phenomenology +hep-ph/0008245 Phenomenology +hep-ph/0008263 Phenomenology +hep-ph/0010306 Phenomenology +hep-ph/0102042 Phenomenology +hep-ph/0103176 Phenomenology +hep-ph/0104054 Phenomenology +hep-ph/0107241 Phenomenology +hep-ph/0108166 Phenomenology +hep-ph/0108204 Phenomenology +hep-ph/0109133 Phenomenology +hep-ph/0111229 Phenomenology +hep-ph/0112104 Phenomenology +hep-ph/0112222 Phenomenology +hep-ph/0202095 Phenomenology +hep-ph/0206112 Phenomenology +hep-ph/0212394 Phenomenology +hep-ph/0309107 Phenomenology +hep-ph/0309299 Phenomenology +hep-ph/0312105 Phenomenology +hep-ph/0312155 Phenomenology +hep-ph/0312221 Phenomenology +hep-ph/0402033 Phenomenology +hep-ph/0402128 Phenomenology +hep-ph/0405056 Phenomenology +hep-ph/0406248 Phenomenology +hep-ph/0406251 Phenomenology +hep-ph/0407130 Phenomenology +hep-ph/0407158 Phenomenology +hep-ph/0408320 Phenomenology +hep-ph/0412383 Phenomenology +hep-ph/0502247 Phenomenology +hep-ph/0504270 Phenomenology +hep-ph/0505255 Phenomenology +hep-ph/0509136 Phenomenology +hep-ph/0510251 Phenomenology +hep-ph/0510377 Phenomenology +hep-ph/0602019 Phenomenology +hep-ph/0603162 Phenomenology +hep-ph/9212264 Phenomenology +hep-ph/9308269 Phenomenology +hep-ph/9309218 Phenomenology +hep-ph/9309219 Phenomenology +hep-ph/9312226 Phenomenology +hep-ph/9403345 Phenomenology +hep-ph/9406369 Phenomenology +hep-ph/9408391 Phenomenology +hep-ph/9505218 Phenomenology +hep-ph/9505417 Phenomenology +hep-ph/9506362 Phenomenology +hep-ph/9506419 Phenomenology +hep-ph/9512444 Phenomenology +hep-ph/9601339 Phenomenology +hep-ph/9604252 Phenomenology +hep-ph/9606226 Phenomenology +hep-ph/9606485 Phenomenology +hep-ph/9701246 Phenomenology +hep-ph/9701362 Phenomenology +hep-ph/9704388 Phenomenology +hep-ph/9705408 Phenomenology +hep-ph/9804421 Phenomenology +hep-ph/9807476 Phenomenology +hep-ph/9809239 Phenomenology +hep-ph/9810285 Phenomenology +hep-ph/9810408 Phenomenology +hep-ph/9901370 Phenomenology +hep-ph/9902206 Phenomenology +hep-ph/9904257 Phenomenology +hep-ph/9909228 Phenomenology +hep-ph/9909512 Phenomenology +hep-ph/9910444 Phenomenology +hep-ph/9911488 Phenomenology +hep-th/0203076 Theory +hep-th/0701274 Theory +hep-th/9211021 Theory +hep-th/9403161 Theory +hep-th/9408025 Theory +hep-th/9608041 Theory +math/0409157 Differential Geometry +math/0603543 Probability +math/0612792 Combinatorics +nlin/0207021 Chaotic Dynamics +nucl-ex/9707006 +nucl-th/0012015 +nucl-th/0506066 +physics/0401163 Instrumentation and Detectors +physics/0510224 Optics +0707.0295 Theory +0709.1628 Statistical Mechanics +0712.2839 Statistical Mechanics +0802.1933 Statistical Mechanics +0806.4029 Phenomenology +0806.4456 +0902.1797 Algebraic Geometry +0903.1371 Differential Geometry +0903.2556 +0903.5103 Algebraic Geometry +0904.4150 Phenomenology +0906.4583 Statistical Mechanics +0907.1292 +0908.2838 +0910.2218 Statistical Mechanics +0910.2847 Mesoscale and Nanoscale Physics +0911.0622 Cosmology and Nongalactic Astrophysics +0912.1138 Statistical Mechanics +1001.0706 Theory +1001.3883 High Energy Astrophysical Phenomena +1002.3987 Phenomenology +1004.2698 Statistical Mechanics +1005.3658 Data Analysis, Statistics and Probability +1005.3999 General Physics +1005.4556 Probability +1006.2067 Mesoscale and Nanoscale Physics +1006.3412 +1006.3838 Geometric Topology +1008.0027 Cosmology and Nongalactic Astrophysics +1008.3400 Statistical Mechanics +1008.5148 Cosmology and Nongalactic Astrophysics +1008.5204 Optimization and Control +1009.3257 Quantum Gases +1010.2657 Statistical Mechanics +1011.1219 Chaotic Dynamics +1011.1849 Theory +1011.3536 Soft Condensed Matter +1012.5040 +1101.0722 Materials Science +1101.2878 Phenomenology +1101.4508 Quantum Gases +1101.5994 Materials Science +1102.0077 Phenomenology +1102.1002 Mesoscale and Nanoscale Physics +1102.1821 Theory +1102.3057 Other Condensed Matter +1102.4823 Statistical Mechanics +1103.0178 Mesoscale and Nanoscale Physics +1103.0224 Other Condensed Matter +1103.1406 Atomic Physics +1103.1522 Soft Condensed Matter +1103.1793 Strongly Correlated Electrons +1103.2584 Analysis of PDEs +1103.3621 Theory +1103.4751 Analysis of PDEs +1103.5231 Physics and Society +1103.6228 Mesoscale and Nanoscale Physics +1104.0627 Representation Theory +1104.1646 Phenomenology +1104.1953 +1104.2691 Quantum Gases +1104.3517 Theory +1104.3894 Theory +1105.0466 Quantum Gases +1105.1053 Statistical Mechanics +1105.2549 Combinatorics +1105.2703 Combinatorics +1105.2739 Mesoscale and Nanoscale Physics +1105.4039 Analysis of PDEs +1105.4421 Logic +1105.5809 History and Overview +1106.1311 Programming Languages +1106.1346 Soft Condensed Matter +1106.2799 Dynamical Systems +1106.4182 Statistical Mechanics +1106.4731 Analysis of PDEs +1106.5489 Networking and Internet Architecture +1106.5530 Group Theory +1106.5694 Distributed, Parallel, and Cluster Computing +1106.5965 Phenomenology +1106.6050 General Mathematics +1106.6057 +1106.6069 Networking and Internet Architecture +1106.6072 Number Theory +1106.6074 Combinatorics +1106.6075 Solar and Stellar Astrophysics +1106.6077 Algebraic Geometry +1106.6079 Algebraic Geometry +1106.6086 Rings and Algebras +1106.6088 Cosmology and Nongalactic Astrophysics +1106.6094 Instrumentation and Methods for Astrophysics +1106.6099 Combinatorics +1106.6115 Plasma Physics +1106.6122 Distributed, Parallel, and Cluster Computing +1106.6125 Analysis of PDEs +1106.6127 Operator Algebras +1106.6134 Strongly Correlated Electrons +1106.6137 Dynamical Systems +1106.6138 Statistical Mechanics +1106.6140 Functional Analysis +1106.6144 Combinatorics +1106.6151 Number Theory +1106.6154 Number Theory +1106.6158 Experiment +1106.6159 Software Engineering +1106.6163 Superconductivity +1106.6164 Phenomenology +1106.6167 Functional Analysis +1106.6170 +1106.6176 Geometric Topology +1106.6186 Learning +1106.6190 Rings and Algebras +1106.6192 Rings and Algebras +1106.6205 +1106.6206 Information Theory +1106.6210 Cell Behavior +1106.6212 Mesoscale and Nanoscale Physics +1106.6213 Differential Geometry +1106.6216 Soft Condensed Matter +1106.6217 Distributed, Parallel, and Cluster Computing +1106.6219 +1106.6230 Complex Variables +1106.6234 Disordered Systems and Neural Networks +1106.6239 Solar and Stellar Astrophysics +1106.6242 Cryptography and Security +1106.6245 Analysis of PDEs +1106.6249 Materials Science +1106.6256 Materials Science +1106.6261 Data Structures and Algorithms +1106.6262 Classical Analysis and ODEs +1106.6263 Numerical Analysis +1106.6267 Logic in Computer Science +1106.6268 Differential Geometry +1106.6269 +1106.6270 Algebraic Geometry +1106.6278 Phenomenology +1106.6279 Algebraic Geometry +1106.6292 +1106.6297 Phenomenology +1106.6300 Probability +1106.6304 Distributed, Parallel, and Cluster Computing +1106.6323 Information Theory +1106.6333 Networking and Internet Architecture +1106.6335 Number Theory +1106.6336 Data Structures and Algorithms +1106.6338 Algebraic Geometry +1106.6342 Data Structures and Algorithms +1106.6343 Algebraic Geometry +1106.6356 Instrumentation and Methods for Astrophysics +cond-mat/0504600 Strongly Correlated Electrons +cs/0512105 Discrete Mathematics +math/0701129 Functional Analysis +0704.2249 +0704.2596 Information Theory +0705.3564 Algebraic Geometry +0707.0889 Quantum Algebra +0710.3576 Mesoscale and Nanoscale Physics +0711.1977 Phenomenology +0712.3656 +0801.2805 +0802.2093 +0803.0608 +0804.1082 Algebraic Topology +0804.1933 Geometric Topology +0805.0157 Algebraic Geometry +0808.1097 Phenomenology +0808.1749 Geometric Topology +0808.1750 Geometric Topology +0809.2944 Accelerator Physics +0812.3600 Statistical Mechanics +0901.3336 Phenomenology +0902.2304 +0903.0248 +0903.4241 Theory +0903.4724 +0904.0575 Tissues and Organs +0904.1000 Phenomenology +0904.4103 Algebraic Topology +0905.3147 +0905.3685 Earth and Planetary Astrophysics +0907.1515 Mesoscale and Nanoscale Physics +0907.1649 Mesoscale and Nanoscale Physics +0907.2246 Quantum Algebra +0907.3216 +0907.5551 Medical Physics +0908.1669 Information Theory +0908.2299 Quantum Algebra +0908.2415 Theory +0909.2668 Solar and Stellar Astrophysics +0909.3689 +0910.1439 +0910.3833 Cosmology and Nongalactic Astrophysics +0910.4129 +0910.4529 Solar and Stellar Astrophysics +0911.0959 Mesoscale and Nanoscale Physics +0911.2864 Algebraic Topology +0911.3891 Theory +0912.3635 Rings and Algebras +0912.3668 Phenomenology +0912.5203 Atomic Physics +1001.1011 Theory +1001.1316 Theory +1001.1619 Theory +1001.2356 +1001.4536 Category Theory +1001.5030 Disordered Systems and Neural Networks +1002.3403 Mesoscale and Nanoscale Physics +1002.3951 Classical Analysis and ODEs +1003.0979 Differential Geometry +1004.0023 Distributed, Parallel, and Cluster Computing +1004.0621 Theory +1004.0956 Theory +1004.2099 Phenomenology +1004.3004 Operator Algebras +1004.4660 Cosmology and Nongalactic Astrophysics +1005.2453 Theory +1006.0248 Phenomenology +1006.1102 Analysis of PDEs +1006.1465 Differential Geometry +1006.1879 Combinatorics +1006.5138 Algebraic Geometry +1006.5461 Theory +1006.5660 +1007.0098 Statistical Mechanics +1007.0367 Materials Science +1007.1430 Combinatorics +1007.3405 Theory +1007.3417 Theory +1007.4282 Statistics Theory +1007.4862 High Energy Astrophysical Phenomena +1008.0132 Mesoscale and Nanoscale Physics +1008.0207 +1008.0598 Quantum Gases +1008.0629 Superconductivity +1008.1474 Instrumentation and Detectors +1008.2506 Theory +1008.3350 +1008.4201 Classical Physics +1009.1497 Theory +1009.1639 Classical Analysis and ODEs +1009.3732 Phenomenology +1009.4540 +1009.6185 Theory +1010.0668 Mesoscale and Nanoscale Physics +1010.2222 Theory +1010.3218 Theory +1010.3559 Dynamical Systems +1010.4310 Phenomenology +1010.5536 Theory +1010.5885 Soft Condensed Matter +1010.6216 Number Theory +1010.6245 Theory +1011.0007 Lattice +1011.0086 Phenomenology +1011.0095 Lattice +1011.0199 Lattice +1011.0230 Lattice +1011.0666 Phenomenology +1011.0678 +1011.0695 Lattice +1011.1548 Phenomenology +1011.3500 Strongly Correlated Electrons +1011.4817 Experiment +1011.5854 Disordered Systems and Neural Networks +1011.6202 +1012.2443 +1012.3371 Biological Physics +1012.3618 Neurons and Cognition +1012.4499 Quantum Gases +1012.5202 +1012.5501 Phenomenology +1012.5679 Solar and Stellar Astrophysics +1101.1536 Combinatorics +1101.1881 Data Analysis, Statistics and Probability +1101.2274 Metric Geometry +1101.3352 Functional Analysis +1101.4715 Combinatorics +1102.0122 Theory +1102.1694 +1102.1858 +1102.4245 Phenomenology +1102.5251 Theory +1102.5530 Cosmology and Nongalactic Astrophysics +1103.0623 Theory +1103.0634 Theory +1103.0836 +1103.1530 Physics and Society +1103.1954 Statistical Mechanics +1103.4966 Pattern Formation and Solitons +1103.5137 Functional Analysis +1103.5537 Machine Learning +1103.5614 Fluid Dynamics +1103.5700 Theory +1103.5743 Distributed, Parallel, and Cluster Computing +1103.5747 Solar and Stellar Astrophysics +1103.5759 +1103.5760 Distributed, Parallel, and Cluster Computing +1103.5761 Materials Science +1103.5764 Distributed, Parallel, and Cluster Computing +1103.5768 Soft Condensed Matter +1103.5772 Number Theory +1103.5780 Populations and Evolution +1103.5783 Cryptography and Security +1103.5791 Networking and Internet Architecture +1103.5795 Databases +1103.5807 Differential Geometry +1103.5808 Computer Vision and Pattern Recognition +1103.5818 Probability +1103.5819 Complex Variables +1103.5822 Complex Variables +1103.5823 Probability +1103.5827 Materials Science +1103.5830 Number Theory +1103.5833 Number Theory +1103.5836 Materials Science +1103.5838 Dynamical Systems +1103.5839 Materials Science +1103.5840 Materials Science +1103.5843 Dynamical Systems +1103.5846 Combinatorics +1103.5851 Mesoscale and Nanoscale Physics +1103.5855 Computational Geometry +1103.5856 Algebraic Topology +1103.5865 Probability +1103.5874 Representation Theory +1103.5880 Cosmology and Nongalactic Astrophysics +1103.5881 Networking and Internet Architecture +1103.5882 Probability +1103.5884 Statistics Theory +1103.5886 Number Theory +1103.5887 Group Theory +1103.5893 Analysis of PDEs +1103.5894 Statistics Theory +1103.5896 Group Theory +1103.5898 Group Theory +1103.5901 Software Engineering +1103.5903 Group Theory +1103.5905 Group Theory +1103.5908 Geometric Topology +1103.5913 Methodology +1103.5915 Complex Variables +1103.5921 Statistics Theory +1103.5925 Methodology +1103.5929 High Energy Astrophysical Phenomena +1103.5931 Methodology +1103.5932 Biological Physics +1103.5933 Medical Physics +1103.5936 K-Theory and Homology +1103.5938 Methodology +1103.5939 Phenomenology +1103.5947 Methodology +1103.5948 Combinatorics +1103.5953 Statistics Theory +1103.5956 Methodology +1103.5957 Networking and Internet Architecture +1103.5958 Instrumentation and Methods for Astrophysics +1103.5959 Lattice +1103.5962 Risk Management +1103.5965 Risk Management +1103.5966 Risk Management +1103.5968 Risk Management +1103.5971 Portfolio Management +1103.5972 Portfolio Management +1103.5973 Risk Management +1103.5975 Mesoscale and Nanoscale Physics +1103.5976 Statistical Finance +1103.5978 Risk Management +1103.5981 Other Condensed Matter +1103.5986 Computation +1103.5994 General Finance +1103.6001 +1103.6003 Strongly Correlated Electrons +1103.6005 Soft Condensed Matter +1103.6006 Optimization and Control +1103.6008 Phenomenology +1103.6009 Category Theory +1103.6012 Statistical Mechanics +1103.6021 Solar and Stellar Astrophysics +astro-ph/0005524 +astro-ph/0410529 +astro-ph/0606656 +astro-ph/0608592 +astro-ph/0611030 +astro-ph/0702231 +gr-qc/0603010 +hep-ex/0409066 Experiment +hep-ph/0202102 Phenomenology +hep-ph/0503092 Phenomenology +hep-ph/0511331 Phenomenology +hep-ph/0605197 Phenomenology +hep-ph/0611067 Phenomenology +hep-ph/9306323 Phenomenology +hep-ph/9310355 Phenomenology +hep-ph/9403233 Phenomenology +hep-ph/9409231 Phenomenology +hep-ph/9502363 Phenomenology +hep-ph/9809287 Phenomenology +hep-th/0307140 Theory +hep-th/9208049 Theory +hep-th/9312187 Theory +hep-th/9607032 Theory +hep-th/9609174 Theory +math/0210458 Combinatorics +math/0307153 Geometric Topology +math/0307254 Geometric Topology +math/0307328 Geometric Topology +math/0312295 Geometric Topology +math/0401163 Geometric Topology +math/0402213 Algebraic Topology +math/0404143 Geometric Topology +math/0405312 Algebraic Topology +math/0407301 Geometric Topology +math/0407302 Geometric Topology +math/0408325 Geometric Topology +math/0410606 Geometric Topology +math/0411542 Algebraic Topology +math/0411543 Category Theory +math/0609002 Quantum Algebra +math/0701112 Geometric Topology +math/0702087 Geometric Topology +physics/0605174 Plasma Physics +quant-ph/0103136 +quant-ph/0208140 +1102.5612 Cosmology and Nongalactic Astrophysics +1104.3511 +1105.2616 +1105.2617 +0704.1461 +0704.2157 +0704.2294 +0704.3068 +0705.0758 +0705.4263 +0706.1535 +0706.3052 +0707.2036 +0707.3244 Number Theory +0708.1333 +0710.1839 +0710.2558 +0710.3619 Theory +0711.0801 +0711.0832 Theory +0711.1299 +0712.3460 Theory +0801.2013 +0801.3664 Materials Science +0802.1460 Theory +0802.1686 Phenomenology +0803.2945 Theory +0803.3024 Theory +0803.3923 +0803.4179 Numerical Analysis +0803.4200 +0804.0068 +0804.1322 +0805.0810 Phenomenology +0805.1452 +0806.2754 Theory +0809.1033 Phenomenology +0809.2469 +0810.3157 +0810.3465 +0811.0502 +0811.1698 +0811.4056 +0811.4308 Phenomenology +0812.1230 Theory +0812.2813 +0812.3745 +0812.3980 Phenomenology +0812.4098 +0812.4597 +0901.1606 +0901.3588 Theory +0901.3885 Theory +0901.4428 Theory +0902.0230 +0902.1039 Astrophysics of Galaxies +0902.2416 +0902.2531 +0902.2532 +0902.3454 Theory +0903.0179 Theory +0903.0322 Phenomenology +0903.0893 Theory +0903.2743 Functional Analysis +0903.3542 Materials Science +0903.4357 +0903.5417 Solar and Stellar Astrophysics +0904.0065 +0904.0775 Functional Analysis +0904.3441 +0904.4183 Theory +0904.4252 Cosmology and Nongalactic Astrophysics +0905.1951 Theory +0905.3776 Theory +0905.4881 +0906.1259 +0906.1318 +0906.1613 +0906.2528 +0906.2617 +0906.3978 Cosmology and Nongalactic Astrophysics +0907.0450 Cosmology and Nongalactic Astrophysics +0907.0850 Theory +0907.1191 Cosmology and Nongalactic Astrophysics +0907.2276 Theory +0907.4135 +0907.5106 Number Theory +0908.0087 Theory +0908.0444 +0908.0767 Differential Geometry +0908.1016 Theory +0908.2507 Instrumentation and Detectors +0908.3024 General Physics +0908.4029 +0909.0011 High Energy Astrophysical Phenomena +0909.1071 +0909.2646 Solar and Stellar Astrophysics +0909.3212 Instrumentation and Methods for Astrophysics +0909.3404 Chaotic Dynamics +0909.5619 Phenomenology +0910.0711 Cosmology and Nongalactic Astrophysics +0910.2697 Theory +0910.3367 Solar and Stellar Astrophysics +0910.3667 Cosmology and Nongalactic Astrophysics +0910.3690 Solar and Stellar Astrophysics +0910.3970 Lattice +0910.4346 Cosmology and Nongalactic Astrophysics +0910.4456 Theory +0910.5332 Statistical Mechanics +0911.0806 Phenomenology +0911.1877 Theory +0911.2371 High Energy Astrophysical Phenomena +0911.2429 Instrumentation and Detectors +0911.3382 Theory +0911.3432 +0911.4629 Solar and Stellar Astrophysics +0911.4884 Theory +0911.4909 Solar and Stellar Astrophysics +0911.5056 Cosmology and Nongalactic Astrophysics +0911.5224 Algebraic Geometry +0911.5340 Phenomenology +0912.0454 Phenomenology +0912.1501 Solar and Stellar Astrophysics +0912.2676 Phenomenology +0912.2834 Solar and Stellar Astrophysics +0912.2931 High Energy Astrophysical Phenomena +0912.3135 Lattice +0912.3250 Theory +0912.3653 Solar and Stellar Astrophysics +0912.3721 Phenomenology +0912.4528 Solar and Stellar Astrophysics +0912.4998 Solar and Stellar Astrophysics +0912.5142 Phenomenology +1001.0091 +1001.0152 +1001.1054 Phenomenology +1001.1075 Theory +1001.1205 +1001.5416 Quantum Algebra +1002.0979 Computational Finance +1002.1331 Analysis of PDEs +1002.1625 Cosmology and Nongalactic Astrophysics +1002.1949 +1002.3742 Earth and Planetary Astrophysics +1002.3747 Statistical Finance +1002.3860 Phenomenology +1002.4225 +1003.0297 Functional Analysis +1003.0876 Theory +1003.1203 Theory +1003.1316 Experiment +1003.1660 Strongly Correlated Electrons +1003.1852 Phenomenology +1003.3145 +1003.3913 Statistical Mechanics +1003.4280 +1003.5473 Phenomenology +1003.5585 Phenomenology +1003.5696 +1003.5950 +1004.0292 Lattice +1004.0544 +1004.0601 Theory +1004.0672 +1004.0750 Superconductivity +1004.1798 +1004.2125 Phenomenology +1004.2692 Theory +1004.2850 Combinatorics +1004.3404 Phenomenology +1004.4153 Pricing of Securities +1005.0613 Optics +1005.0633 Theory +1005.0655 Theory +1005.0695 Phenomenology +1005.0764 +1005.1032 Statistical Mechanics +1005.1236 +1005.2133 Theory +1005.2508 Theory +1005.3101 +1005.3444 +1005.3571 Theory +1005.3769 +1005.4075 Theory +1005.4185 +1005.4656 +1005.4680 Theory +1005.5000 Optics +1005.5570 Cosmology and Nongalactic Astrophysics +1006.0436 Experiment +1006.2176 Theory +1006.2363 Theory +1006.2375 Phenomenology +1006.2393 Quantum Gases +1006.2451 +1006.2546 Theory +1006.3220 Instrumentation and Detectors +1006.3299 Mesoscale and Nanoscale Physics +1006.3439 Theory +1006.3519 Cosmology and Nongalactic Astrophysics +1006.3876 Optics +1006.4868 Strongly Correlated Electrons +1006.5115 Experiment +1006.5176 +1006.5480 Theory +1006.5534 Phenomenology +1006.5589 Theory +1007.0721 Quantum Algebra +1007.1275 Astrophysics of Galaxies +1007.1516 +1007.2085 Disordered Systems and Neural Networks +1007.2237 +1007.2448 Theory +1007.2474 +1007.2574 +1007.2580 Lattice +1007.2645 Phenomenology +1007.2729 Theory +1007.2790 +1007.3127 +1007.3194 +1007.3299 +1007.3407 Instrumentation and Detectors +1007.3749 Theory +1007.3868 Algebraic Topology +1007.3871 Theory +1007.4075 Theory +1007.4094 +1007.4328 Phenomenology +1007.4598 +1007.4948 Mesoscale and Nanoscale Physics +1007.5277 Phenomenology +1008.0041 Theory +1008.0917 Phenomenology +1008.0969 Mesoscale and Nanoscale Physics +1008.1104 Theory +1008.1471 Combinatorics +1008.1676 +1008.2191 Mesoscale and Nanoscale Physics +1008.2641 Cosmology and Nongalactic Astrophysics +1008.2678 +1008.2775 Theory +1008.2805 +1008.3440 Theory +1008.3479 Phenomenology +1008.3807 +1008.3810 Theory +1008.3836 Theory +1008.3909 Theory +1008.4075 Instrumentation and Detectors +1008.4269 +1008.4355 Phenomenology +1008.4440 Strongly Correlated Electrons +1008.4470 Strongly Correlated Electrons +1008.4572 Phenomenology +1008.4780 +1008.5062 Phenomenology +1008.5101 +1008.5313 Phenomenology +1009.0617 Theory +1009.1551 Statistical Mechanics +1009.1984 Plasma Physics +1009.1996 +1009.3398 Phenomenology +1009.3695 Theory +1009.3835 Disordered Systems and Neural Networks +1009.5231 +1009.5466 Cosmology and Nongalactic Astrophysics +1009.5572 High Energy Astrophysical Phenomena +1009.5732 Mesoscale and Nanoscale Physics +1009.5765 Phenomenology +1010.0065 Theory +1010.0170 +1010.0175 +1010.0564 +1010.0620 +1010.0918 Phenomenology +1010.1077 Optimization and Control +1010.1248 Phenomenology +1010.1290 Theory +1010.1498 Theory +1010.1977 Mesoscale and Nanoscale Physics +1010.2171 Mesoscale and Nanoscale Physics +1010.3405 Cosmology and Nongalactic Astrophysics +1010.4259 Group Theory +1010.4322 Portfolio Management +1010.5431 Phenomenology +1010.5519 Statistical Mechanics +1010.5599 +1011.0033 Quantum Gases +1011.0056 Lattice +1011.0058 +1011.0157 Lattice +1011.0243 Theory +1011.0270 +1011.0289 Theory +1011.0680 Phenomenology +1011.0696 Theory +1011.1646 Phenomenology +1011.2779 +1011.2839 Phenomenology +1011.3969 Theory +1011.4206 Theory +1011.5007 Theory +1011.5406 Solar and Stellar Astrophysics +1011.5814 Information Theory +1011.5856 Theory +1011.5961 Phenomenology +1011.6118 Phenomenology +1011.6282 Phenomenology +1011.6315 Theory +1012.0267 Phenomenology +1012.0796 Theory +1012.1109 Cosmology and Nongalactic Astrophysics +1012.1467 Theory +1012.2153 +1012.2706 Theory +1012.3342 Cosmology and Nongalactic Astrophysics +1012.3392 Cosmology and Nongalactic Astrophysics +1012.3561 Theory +1012.3703 +1012.3708 Classical Physics +1012.3760 Classical Analysis and ODEs +1012.3806 Strongly Correlated Electrons +1012.4443 Phenomenology +1012.4533 Phenomenology +1012.4600 Phenomenology +1012.5109 Theory +1012.5176 +1012.5271 High Energy Astrophysical Phenomena +1012.5349 Analysis of PDEs +1012.5448 Analysis of PDEs +1012.5797 Theory +1012.5875 Lattice +1012.5880 Classical Analysis and ODEs +1101.0288 Phenomenology +1101.0329 +1101.0629 Instrumentation and Methods for Astrophysics +1101.1059 Theory +1101.1484 Phenomenology +1101.1676 High Energy Astrophysical Phenomena +1101.1983 Phenomenology +1101.3818 Theory +1101.4805 Experiment +1101.5404 Theory +1101.5878 Phenomenology +1101.5906 Phenomenology +1101.6000 Cosmology and Nongalactic Astrophysics +1102.0279 Phenomenology +1102.1426 Astrophysics of Galaxies +1102.1993 Solar and Stellar Astrophysics +1102.2734 Information Theory +1102.3092 Cosmology and Nongalactic Astrophysics +1102.3906 Phenomenology +1102.4455 Experiment +1102.4748 Experiment +1102.4892 Symplectic Geometry +1102.5572 Phenomenology +1103.0345 Superconductivity +1103.1015 Theory +1103.1458 Methodology +1103.1824 Cryptography and Security +1103.2424 High Energy Astrophysical Phenomena +1103.3697 General Physics +1103.3785 Atomic Physics +1103.4349 Differential Geometry +1103.4474 +1103.4720 Computational Engineering, Finance, and Science +1103.4865 Numerical Analysis +1103.4866 Applications +1103.4870 Combinatorics +1103.4873 Networking and Internet Architecture +1103.4881 Distributed, Parallel, and Cluster Computing +1103.4888 Information Theory +1103.4889 +1103.4890 Statistics Theory +1103.4893 Systems and Control +1103.4895 Group Theory +1103.4896 Learning +1103.4900 Chaotic Dynamics +1103.4902 Algebraic Geometry +1103.4903 +1103.4905 Distributed, Parallel, and Cluster Computing +1103.4906 Classical Analysis and ODEs +1103.4907 Other Computer Science +1103.4913 Computer Vision and Pattern Recognition +1103.4914 Other Computer Science +1103.4918 +1103.4922 Number Theory +1103.4924 Data Analysis, Statistics and Probability +1103.4925 Analysis of PDEs +1103.4934 Trading and Market Microstructure +1103.4936 Combinatorics +1103.4943 Risk Management +1103.4944 Number Theory +1103.4948 Number Theory +1103.4952 Dynamical Systems +1103.4955 Disordered Systems and Neural Networks +1103.4962 Phenomenology +1103.4963 Number Theory +1103.4971 Combinatorics +1103.4972 Accelerator Physics +1103.4973 Probability +1103.4977 Statistics Theory +1103.4992 Dynamical Systems +1103.4993 Dynamical Systems +1103.4997 Analysis of PDEs +1103.4998 Machine Learning +1103.5000 Classical Analysis and ODEs +1103.5002 Information Retrieval +1103.5004 Adaptation and Self-Organizing Systems +1103.5012 Accelerator Physics +1103.5014 +1103.5016 Functional Analysis +1103.5018 Functional Analysis +1103.5019 Functional Analysis +1103.5021 Materials Science +1103.5024 Materials Science +1103.5029 Mesoscale and Nanoscale Physics +1103.5031 Cosmology and Nongalactic Astrophysics +1103.5032 Optics +1103.5034 Artificial Intelligence +1103.5035 Human-Computer Interaction +1103.5043 Information Retrieval +1103.5044 Information Retrieval +1103.5047 +1103.5049 Phenomenology +1103.5054 Combinatorics +1103.5057 Phenomenology +1103.5062 Data Analysis, Statistics and Probability +1103.5063 Plasma Physics +1103.5071 Computer Science and Game Theory +1103.5072 Number Theory +astro-ph/0005177 +astro-ph/0005337 +astro-ph/0009118 +astro-ph/0101486 +astro-ph/0105221 +astro-ph/0107337 +astro-ph/0110362 +astro-ph/0203429 +astro-ph/0204297 +astro-ph/0207507 +astro-ph/0211167 +astro-ph/0410346 +astro-ph/0505431 +astro-ph/0505432 +astro-ph/0505470 +astro-ph/0507085 +astro-ph/0508462 +astro-ph/0510422 +astro-ph/0511788 +astro-ph/0702511 +astro-ph/9411088 +astro-ph/9902101 +astro-ph/9903281 +astro-ph/9905318 +astro-ph/9906465 +astro-ph/9909342 +astro-ph/9911229 +astro-ph/9911355 +cond-mat/0103232 Statistical Mechanics +cond-mat/0209308 Statistical Mechanics +cond-mat/0402461 Disordered Systems and Neural Networks +cond-mat/0407124 Statistical Mechanics +cond-mat/0506686 Disordered Systems and Neural Networks +cond-mat/0511743 Statistical Mechanics +cond-mat/0602459 Statistical Mechanics +gr-qc/9212013 +hep-ph/0608157 Phenomenology +hep-ph/0611120 Phenomenology +hep-ph/0701108 Phenomenology +hep-ph/0702173 Phenomenology +hep-ph/0703161 Phenomenology +hep-th/0205086 Theory +hep-th/0506170 Theory +hep-th/0702140 Theory +hep-th/9406110 Theory +hep-th/9505043 Theory +hep-th/9903069 Theory +hep-th/9904038 Theory +math-ph/0307055 +nucl-th/9709053 +nucl-th/9903030 +physics/0008096 Accelerator Physics +quant-ph/0605181 +quant-ph/9805052 +quant-ph/9907091 +0704.1698 Superconductivity +0705.1903 Exactly Solvable and Integrable Systems +0710.1020 Materials Science +0801.0806 Exactly Solvable and Integrable Systems +0805.3199 +0806.4085 General Physics +0807.0676 Strongly Correlated Electrons +0903.1717 Exactly Solvable and Integrable Systems +0903.3840 Cosmology and Nongalactic Astrophysics +0905.1397 Analysis of PDEs +0906.3955 Exactly Solvable and Integrable Systems +0906.5247 Operator Algebras +0912.2919 Combinatorics +0912.4076 +1004.3609 Algebraic Geometry +1005.4705 Solar and Stellar Astrophysics +1006.0668 +1007.1263 Theory +1007.2124 Mesoscale and Nanoscale Physics +1007.3471 Strongly Correlated Electrons +1007.5313 Phenomenology +1007.5512 Phenomenology +1009.1839 +1009.5895 +1010.0914 Lattice +1010.2516 Combinatorics +1010.3553 Phenomenology +1010.3583 Soft Condensed Matter +1010.5218 Phenomenology +1010.5637 Phenomenology +1010.5803 Phenomenology +1011.0416 Phenomenology +1011.0711 Theory +1011.0821 Phenomenology +1011.1601 Phenomenology +1011.1978 Exactly Solvable and Integrable Systems +1011.4913 Materials Science +1011.5147 Theory +1011.5148 Theory +1012.0073 Computation +1012.1074 Mesoscale and Nanoscale Physics +1012.1374 Materials Science +1012.1697 Theory +1012.3246 Fluid Dynamics +1012.3399 Atomic Physics +1012.4612 Materials Science +1012.5016 +1101.0078 Phenomenology +1101.1314 Theory +1101.2331 Spectral Theory +1101.3421 Mesoscale and Nanoscale Physics +1102.2751 Theory +1102.2757 Theory +1102.3344 Strongly Correlated Electrons +1102.3715 Lattice +1102.3923 Learning +1102.5028 Phenomenology +1103.0103 Metric Geometry +1103.1382 Theory +1103.1392 Lattice +1103.1529 Logic +1103.3188 Probability +1103.4446 Algebraic Geometry +1104.2006 Quantum Gases +1104.4885 +1105.2306 Phenomenology +1105.2759 Analysis of PDEs +1105.3553 Strongly Correlated Electrons +1105.4210 Combinatorics +1105.4397 Geometric Topology +1105.4899 Phenomenology +1105.4931 Combinatorics +1105.4959 Statistical Mechanics +1105.4990 Phenomenology +1105.5036 Statistics Theory +1105.5072 Information Theory +1105.5082 Pricing of Securities +1105.5148 Dynamical Systems +1105.5150 Superconductivity +1105.5154 Combinatorics +1105.5164 Quantum Gases +1105.5166 Phenomenology +1105.5169 Representation Theory +1105.5172 Earth and Planetary Astrophysics +1105.5177 Data Structures and Algorithms +1105.5182 Spectral Theory +1105.5185 Superconductivity +1105.5192 Statistical Mechanics +1105.5223 +1105.5230 Statistical Mechanics +1105.5231 Statistics Theory +1105.5234 Cosmology and Nongalactic Astrophysics +1105.5240 Experiment +1105.5243 High Energy Astrophysical Phenomena +1105.5244 Phenomenology +1105.5252 +1105.5260 Mesoscale and Nanoscale Physics +1105.5262 Chemical Physics +1105.5263 Probability +1105.5269 +1105.5277 Geophysics +1105.5281 Astrophysics of Galaxies +1105.5285 Functional Analysis +1105.5288 Functional Analysis +1105.5298 Combinatorics +1105.5300 Materials Science +1105.5307 Computer Vision and Pattern Recognition +1105.5315 Differential Geometry +1105.5316 Digital Libraries +1105.5318 Differential Geometry +1105.5320 Algebraic Geometry +1105.5321 +1105.5324 Logic +1105.5327 Phenomenology +1105.5330 Experiment +1105.5331 Numerical Analysis +1105.5335 Dynamical Systems +1105.5339 +1105.5340 Optics +1105.5349 Phenomenology +1105.5353 +1105.5355 Functional Analysis +1105.5357 Number Theory +1105.5358 Analysis of PDEs +1105.5362 Chaotic Dynamics +1105.5363 Cosmology and Nongalactic Astrophysics +1105.5364 Rings and Algebras +1105.5366 Operator Algebras +1105.5370 Information Theory +1105.5371 Materials Science +1105.5372 Numerical Analysis +1105.5373 Combinatorics +1105.5379 Learning +1105.5385 Theory +cond-mat/0105500 Materials Science +cond-mat/0408344 Superconductivity +cond-mat/0604037 Strongly Correlated Electrons +hep-th/0201062 Theory +math/0610523 Algebraic Topology +math/0703627 Differential Geometry +nlin/0311034 Exactly Solvable and Integrable Systems +0705.2859 Complex Variables +0710.5270 Statistical Mechanics +0711.2885 Operator Algebras +0802.3736 General Physics +0803.0717 Symplectic Geometry +0803.1147 Differential Geometry +0806.1993 Combinatorics +0811.2118 Materials Science +0812.0907 Statistical Mechanics +0904.4310 Number Theory +0906.0634 Differential Geometry +0908.2536 Number Theory +0908.3086 Differential Geometry +0909.0178 Probability +0909.1893 Probability +0910.4882 Geometric Topology +0912.0342 Quantum Algebra +0912.3412 Representation Theory +1001.1071 +1002.3467 Algebraic Geometry +1002.3843 Optics +1002.4595 Operator Algebras +1004.0795 Disordered Systems and Neural Networks +1004.2218 Symplectic Geometry +1005.1459 Mesoscale and Nanoscale Physics +1005.4671 Lattice +1006.2359 Phenomenology +1006.4428 Statistical Mechanics +1007.3985 +1007.5371 +1008.2837 Superconductivity +1008.4528 Phenomenology +1008.4587 Instrumentation and Methods for Astrophysics +1009.0736 Number Theory +1009.1750 +1009.2019 +1009.2545 +1009.3093 +1009.3954 Functional Analysis +1009.4646 +1010.0635 Materials Science +1010.4753 Geometric Topology +1010.5008 Mesoscale and Nanoscale Physics +1010.5089 Phenomenology +1010.5711 Atmospheric and Oceanic Physics +1011.0006 Quantum Gases +1011.0500 Phenomenology +1011.1441 +1011.1993 Mesoscale and Nanoscale Physics +1011.2640 Cosmology and Nongalactic Astrophysics +1011.2738 Combinatorics +1011.3524 Phenomenology +1011.4008 +1011.5546 Mesoscale and Nanoscale Physics +1011.6040 Superconductivity +1012.1135 +1012.2236 Theory +1012.2695 Algebraic Topology +1012.4294 Superconductivity +1012.4298 Dynamical Systems +1101.0284 Quantum Gases +1101.1012 +1101.3604 +1101.3716 Probability +1101.5850 Statistical Mechanics +1102.0067 Solar and Stellar Astrophysics +1102.3030 Optimization and Control +1102.3061 Information Theory +1102.3193 Astrophysics of Galaxies +1102.3408 Mesoscale and Nanoscale Physics +1103.1125 Number Theory +1103.1267 Phenomenology +1103.2269 Theory +1103.2593 Physics and Society +1103.3790 +1103.3863 Databases +1103.4169 Databases +1103.4225 +1103.4959 Optimization and Control +1104.1004 +1104.1114 Analysis of PDEs +1104.2268 Mesoscale and Nanoscale Physics +1104.2985 Analysis of PDEs +1104.3821 Functional Analysis +1104.3876 Distributed, Parallel, and Cluster Computing +1104.3884 Probability +1104.3886 Networking and Internet Architecture +1104.3887 Cosmology and Nongalactic Astrophysics +1104.3900 Combinatorics +1104.3903 High Energy Astrophysical Phenomena +1104.3904 Artificial Intelligence +1104.3905 Data Structures and Algorithms +1104.3908 Functional Analysis +1104.3910 Number Theory +1104.3919 Combinatorics +1104.3920 Combinatorics +1104.3921 Quantum Algebra +1104.3927 Artificial Intelligence +1104.3928 Statistical Mechanics +1104.3929 Artificial Intelligence +1104.3931 Logic in Computer Science +1104.3947 Distributed, Parallel, and Cluster Computing +1104.3949 +1104.3951 Statistical Mechanics +1104.3953 +1104.3954 Rings and Algebras +1104.3955 Cosmology and Nongalactic Astrophysics +1104.3956 Algebraic Geometry +1104.3964 General Mathematics +1104.3970 Theory +1104.3971 Number Theory +1104.3972 Differential Geometry +1104.3984 Complex Variables +1104.3988 Combinatorics +1104.3992 General Physics +1104.4003 Probability +1104.4004 Earth and Planetary Astrophysics +1104.4012 Popular Physics +1104.4022 Distributed, Parallel, and Cluster Computing +1104.4023 History and Philosophy of Physics +1104.4025 Symbolic Computation +1104.4026 Symbolic Computation +1104.4029 Phenomenology +1104.4030 Statistical Mechanics +1104.4035 Information Theory +1104.4038 Geophysics +1104.4041 Probability +1104.4048 Representation Theory +1104.4052 Dynamical Systems +1104.4053 Artificial Intelligence +1104.4055 Classical Analysis and ODEs +1104.4063 Information Retrieval +1104.4078 Distributed, Parallel, and Cluster Computing +1104.4080 Mesoscale and Nanoscale Physics +1104.4085 Materials Science +1104.4088 High Energy Astrophysical Phenomena +1104.4099 Combinatorics +1104.4102 Biological Physics +1104.4110 General Topology +astro-ph/9603158 +cond-mat/0403731 Mesoscale and Nanoscale Physics +cond-mat/0501316 Materials Science +cond-mat/9703195 Strongly Correlated Electrons +gr-qc/0002074 +gr-qc/0106026 +gr-qc/0109045 +gr-qc/0110013 +gr-qc/0201091 +gr-qc/0205044 +gr-qc/0208014 +gr-qc/0302083 +gr-qc/0401019 +gr-qc/0404092 +gr-qc/0409102 +gr-qc/0412020 +gr-qc/0506085 +gr-qc/0507007 +gr-qc/0509092 +gr-qc/0512091 +gr-qc/0512093 +gr-qc/0602051 +gr-qc/0608013 +gr-qc/9705014 +gr-qc/9709016 +gr-qc/9801023 +gr-qc/9801071 +math/0311103 General Mathematics +math/0312479 Analysis of PDEs +math/0610982 Algebraic Geometry +physics/0310030 Optics +physics/0403006 Atomic Physics +q-bio/0604011 Biomolecules +0704.2579 +0704.3696 Commutative Algebra +0705.2770 Phenomenology +0710.0491 Numerical Analysis +0801.0055 Combinatorics +0807.2139 +0807.3220 Instrumentation and Detectors +0809.4550 Optics +0810.3118 Materials Science +0811.4195 Theory +0811.4358 Theory +0811.4478 Theory +0811.4644 Theory +0811.4774 Theory +0812.3234 Theory +0901.0623 Probability +0902.3876 Mesoscale and Nanoscale Physics +0902.4357 +0903.1869 Methodology +0903.2208 Cosmology and Nongalactic Astrophysics +0903.3446 Differential Geometry +0904.0981 Logic in Computer Science +0904.3938 Number Theory +0908.0992 Mesoscale and Nanoscale Physics +0908.2189 Analysis of PDEs +0909.0294 Theory +0911.0376 Mesoscale and Nanoscale Physics +0912.3358 Functional Analysis +1001.1255 +1001.5404 Computational Complexity +1004.0583 Algebraic Topology +1004.3512 +1004.3672 Quantum Gases +1004.3826 Differential Geometry +1005.3140 +1006.0612 Phenomenology +1006.1780 +1006.1811 Mesoscale and Nanoscale Physics +1006.2165 Methodology +1007.0715 +1007.2531 Atomic Physics +1007.4796 Algebraic Geometry +1008.0910 +1008.3778 Theory +1008.4500 Dynamical Systems +1009.4125 High Energy Astrophysical Phenomena +1010.0192 Solar and Stellar Astrophysics +1010.3589 +1010.4797 Astrophysics of Galaxies +1010.5112 Experiment +1011.0801 Theory +1011.0868 Phenomenology +1011.2089 Logic +1011.2810 Soft Condensed Matter +1011.3205 Soft Condensed Matter +1011.3564 Atmospheric and Oceanic Physics +1011.3712 +1011.4906 Solar and Stellar Astrophysics +1012.1975 Phenomenology +1012.4338 Logic +1101.0497 Quantum Gases +1101.0501 Pattern Formation and Solitons +1101.0560 Representation Theory +1101.0935 Methodology +1101.5328 Phenomenology +1102.0045 Classical Physics +1102.2385 Phenomenology +1102.4539 Theory +1103.0646 Theory +1103.1657 Theory +1103.2379 Strongly Correlated Electrons +1103.3553 +1103.4651 Astrophysics of Galaxies +1103.5677 High Energy Astrophysical Phenomena +1103.5942 +1104.0001 Cosmology and Nongalactic Astrophysics +1104.1355 Molecular Networks +1104.2033 Differential Geometry +1104.3473 Atomic Physics +1104.4695 +1104.5298 Differential Geometry +1105.1188 Algebraic Geometry +1105.2222 +1105.5401 Computational Geometry +1105.6037 Cosmology and Nongalactic Astrophysics +1106.1022 Probability +1106.1259 Geometric Topology +1106.1301 Commutative Algebra +1106.1449 Solar and Stellar Astrophysics +1106.1453 +1106.1454 Experiment +1106.1458 Materials Science +1106.1461 Mesoscale and Nanoscale Physics +1106.1466 Mesoscale and Nanoscale Physics +1106.1470 +1106.1473 Materials Science +1106.1477 Optics +1106.1478 Databases +1106.1480 +1106.1482 Combinatorics +1106.1487 Materials Science +1106.1495 Analysis of PDEs +1106.1503 Plasma Physics +1106.1509 Probability +1106.1510 Artificial Intelligence +1106.1516 Networking and Internet Architecture +1106.1517 Analysis of PDEs +1106.1523 Digital Libraries +1106.1524 Probability +1106.1526 Optimization and Control +1106.1527 Combinatorics +1106.1532 Strongly Correlated Electrons +1106.1534 +1106.1535 +1106.1536 +1106.1537 +1106.1544 +1106.1545 Rings and Algebras +1106.1547 Phenomenology +1106.1550 +1106.1556 Solar and Stellar Astrophysics +1106.1561 Cosmology and Nongalactic Astrophysics +1106.1564 Differential Geometry +1106.1566 Soft Condensed Matter +1106.1570 Neural and Evolutionary Computing +1106.1575 Optics +1106.1577 Physics and Society +1106.1582 +1106.1583 Human-Computer Interaction +1106.1585 Theory +1106.1594 Combinatorics +1106.1595 Information Theory +1106.1600 General Physics +1106.1601 Number Theory +1106.1604 Experiment +1106.1606 Category Theory +1106.1607 +1106.1609 Symplectic Geometry +1106.1610 Soft Condensed Matter +1106.1620 Quantitative Methods +1106.1622 Learning +1106.1623 Symplectic Geometry +1106.1625 Combinatorics +1106.1629 Logic +1106.1634 Information Theory +1106.1638 Statistics Theory +1106.1639 +astro-ph/0102226 +cond-mat/0108385 +cond-mat/0209301 Superconductivity +hep-ph/0312368 Phenomenology +hep-ph/0409065 Phenomenology +hep-th/0605175 Theory +math/0110308 Algebraic Topology +quant-ph/0010045 +quant-ph/0011105 +quant-ph/9912097 +0807.1875 Superconductivity +0808.3521 Geometric Topology +0812.3637 Analysis of PDEs +0904.2660 Data Analysis, Statistics and Probability +0905.0423 Geometric Topology +0908.0129 Probability +0909.1211 Spectral Theory +0911.1180 Superconductivity +0911.1779 Experiment +0911.2597 General Physics +1002.1772 Analysis of PDEs +1004.3326 Geometric Topology +1004.3441 Dynamical Systems +1004.4418 Analysis of PDEs +1005.1222 +1006.0580 Analysis of PDEs +1006.3154 Information Theory +1006.4866 +1006.5407 +1007.1664 +1007.2155 Geophysics +1008.0445 Number Theory +1008.2949 +1008.4643 +1009.0667 Group Theory +1009.0863 Exactly Solvable and Integrable Systems +1009.2210 +1009.4024 +1009.4943 Representation Theory +1010.3850 Combinatorics +1011.0283 Statistical Mechanics +1011.1736 +1012.5237 Geometric Topology +1012.5839 Phenomenology +1101.3261 Analysis of PDEs +1101.3964 Analysis of PDEs +1103.0334 Statistical Mechanics +1103.1572 +1103.2693 +1103.3557 +1103.3661 Phenomenology +1103.4129 +1103.4691 Functional Analysis +1104.2193 +1104.3177 Atomic Physics +1104.3383 Statistical Mechanics +1105.2291 Combinatorics +1105.2391 Data Structures and Algorithms +1105.2782 Computer Vision and Pattern Recognition +1105.3940 Phenomenology +1106.0205 Commutative Algebra +1106.0636 Exactly Solvable and Integrable Systems +1106.0690 Statistical Mechanics +1106.1192 Analysis of PDEs +1106.2783 +1106.3010 +1106.3011 +1106.3515 +1106.4920 Statistical Mechanics +1107.0850 +1107.2061 Quantum Gases +1107.2287 Atomic Physics +1108.0428 Strongly Correlated Electrons +1108.1289 Probability +1108.1304 Materials Science +1108.2633 Probability +1108.3934 Cosmology and Nongalactic Astrophysics +1108.4335 +1109.1514 Atomic Physics +1109.3058 Atmospheric and Oceanic Physics +1109.5367 Superconductivity +1109.5771 Accelerator Physics +1109.5784 Superconductivity +1110.0894 Strongly Correlated Electrons +1110.2148 Metric Geometry +1110.2242 +1110.2950 Classical Analysis and ODEs +1110.3633 Fluid Dynamics +1110.4743 Earth and Planetary Astrophysics +1110.5162 Phenomenology +1110.5568 Phenomenology +1110.6027 Information Theory +1110.6043 High Energy Astrophysical Phenomena +1110.6124 Functional Analysis +1110.6171 General Physics +1110.6175 High Energy Astrophysical Phenomena +1110.6177 Theory +1110.6187 Probability +1110.6194 Populations and Evolution +1110.6196 Mesoscale and Nanoscale Physics +1110.6206 History and Philosophy of Physics +1110.6211 Mesoscale and Nanoscale Physics +1110.6214 Representation Theory +1110.6216 Functional Analysis +1110.6219 +1110.6220 Numerical Analysis +1110.6227 Operator Algebras +1110.6231 Distributed, Parallel, and Cluster Computing +1110.6234 General Physics +1110.6236 High Energy Astrophysical Phenomena +1110.6237 Optimization and Control +1110.6238 +1110.6245 Fluid Dynamics +1110.6246 Optimization and Control +1110.6249 Experiment +1110.6250 Biomolecules +1110.6251 Information Theory +1110.6252 Cosmology and Nongalactic Astrophysics +1110.6256 Chemical Physics +1110.6261 Numerical Analysis +1110.6264 Statistical Mechanics +1110.6267 Social and Information Networks +1110.6278 Differential Geometry +1110.6279 High Energy Astrophysical Phenomena +1110.6281 Differential Geometry +1110.6287 Learning +1110.6288 Distributed, Parallel, and Cluster Computing +1110.6290 Artificial Intelligence +1110.6292 Optics +1110.6293 Algebraic Topology +1110.6295 +1110.6296 Information Theory +1110.6303 Statistical Mechanics +1110.6306 Analysis of PDEs +1110.6310 Classical Analysis and ODEs +1110.6313 High Energy Astrophysical Phenomena +1110.6322 Pricing of Securities +1110.6324 Representation Theory +1110.6333 Probability +1110.6335 Differential Geometry +1110.6337 Analysis of PDEs +1110.6341 High Energy Astrophysical Phenomena +1110.6342 Analysis of PDEs +1110.6344 Solar and Stellar Astrophysics +1110.6345 Analysis of PDEs +1110.6346 Number Theory +1110.6348 Strongly Correlated Electrons +1110.6351 Number Theory +1110.6352 History and Philosophy of Physics +1110.6358 Classical Analysis and ODEs +1110.6360 High Energy Astrophysical Phenomena +1110.6362 K-Theory and Homology +1110.6364 Quantum Gases +1110.6365 Lattice +1110.6366 Number Theory +1110.6368 High Energy Astrophysical Phenomena +1110.6369 Probability +1110.6371 High Energy Astrophysical Phenomena +1110.6374 Differential Geometry +1110.6378 +1110.6385 Lattice +1110.6389 Theory +1110.6390 Group Theory +1110.6391 Phenomenology +1110.6403 Phenomenology +1110.6408 Experiment +1110.6409 Numerical Analysis +1110.6413 Other Quantitative Biology +1110.6414 Analysis of PDEs +1110.6418 Instrumentation and Methods for Astrophysics +1110.6419 Soft Condensed Matter +1110.6421 High Energy Astrophysical Phenomena +1110.6422 Instrumentation and Methods for Astrophysics +1110.6426 Dynamical Systems +1110.6430 Number Theory +1110.6432 Atomic Physics +1110.6435 Phenomenology +astro-ph/0609352 +gr-qc/9911072 +math/0603527 Probability +math/0701119 Geometric Topology +nlin/0607014 Chaotic Dynamics +nlin/0612016 Chaotic Dynamics +physics/0703258 Optics +quant-ph/0702057 +0709.2415 Classical Physics +0710.3784 Populations and Evolution +0712.1804 Commutative Algebra +0801.3894 Probability +0802.1289 Phenomenology +0802.4190 Applications +0803.4350 Chaotic Dynamics +0804.4251 Chaotic Dynamics +0809.2867 Dynamical Systems +0810.1100 Exactly Solvable and Integrable Systems +0810.5478 Geometric Topology +0812.0913 Statistical Finance +0903.1590 Differential Geometry +0903.4799 Materials Science +0904.1432 Mesoscale and Nanoscale Physics +0905.0893 +0906.2824 Artificial Intelligence +0907.1864 Probability +0907.1925 Cellular Automata and Lattice Gases +0907.2053 Algebraic Geometry +0907.4856 +0909.0168 Geometric Topology +0909.0230 Classical Analysis and ODEs +0909.2923 Exactly Solvable and Integrable Systems +0909.4842 +0910.0192 +0911.0938 Rings and Algebras +0911.5026 Networking and Internet Architecture +0912.1250 Populations and Evolution +1001.1600 Group Theory +1001.3838 Number Theory +1001.4244 Exactly Solvable and Integrable Systems +1001.4599 Exactly Solvable and Integrable Systems +1002.0587 High Energy Astrophysical Phenomena +1002.2237 Dynamical Systems +1002.4657 Classical Analysis and ODEs +1003.4612 Classical Analysis and ODEs +1004.0360 Number Theory +1005.0111 Materials Science +1006.3914 Exactly Solvable and Integrable Systems +1006.4123 Chaotic Dynamics +1006.4614 Combinatorics +1006.5043 Dynamical Systems +1008.3534 Strongly Correlated Electrons +1009.0467 Analysis of PDEs +1009.2299 Algebraic Geometry +1009.2397 Combinatorics +1009.4475 +1009.5160 Atomic Physics +1009.5896 Combinatorics +1010.2622 +1010.3181 Phenomenology +1010.3492 Exactly Solvable and Integrable Systems +1010.5664 +1011.0964 Phenomenology +1011.2982 +1011.3643 Theory +1011.3960 Theory +1011.5491 Combinatorics +1011.5658 Statistical Mechanics +1012.0468 Exactly Solvable and Integrable Systems +1012.1790 Combinatorics +1012.1852 Disordered Systems and Neural Networks +1012.1904 Optimization and Control +1012.4194 Numerical Analysis +1012.4558 Cosmology and Nongalactic Astrophysics +1101.1739 High Energy Astrophysical Phenomena +1101.3841 Phenomenology +1102.0197 +1102.0574 Theory +1102.0866 Theory +1102.0901 Lattice +1102.1832 Phenomenology +1102.3091 Theory +1102.3103 Phenomenology +1102.3119 Theory +1102.3166 Theory +1102.3232 Networking and Internet Architecture +1102.3467 Adaptation and Self-Organizing Systems +1102.3875 Phenomenology +1102.4679 Materials Science +1102.5305 Materials Science +1102.5415 Cryptography and Security +1102.5628 Cosmology and Nongalactic Astrophysics +1102.5763 Algebraic Geometry +1103.0153 Combinatorics +1103.0404 Plasma Physics +1103.0666 Optics +1103.1188 Quantum Algebra +1103.2540 +1103.4436 Materials Science +1103.6278 Number Theory +1104.0010 Cosmology and Nongalactic Astrophysics +1104.0030 General Physics +1104.0640 Information Theory +1104.1396 Mesoscale and Nanoscale Physics +1104.1929 Statistical Mechanics +1104.3152 Artificial Intelligence +1105.0571 Solar and Stellar Astrophysics +1105.1421 Physics and Society +1105.1951 Adaptation and Self-Organizing Systems +1105.3227 Theory +1105.4071 Optics +1105.5221 Number Theory +1105.5287 Representation Theory +1105.5436 Algebraic Geometry +1105.5494 +1105.5691 Solar and Stellar Astrophysics +1105.5940 Combinatorics +1106.0138 +1106.0639 Theory +1106.2328 Cosmology and Nongalactic Astrophysics +1106.3016 Statistical Finance +1106.3022 Group Theory +1106.3739 Computational Geometry +1106.3925 Biological Physics +1106.4274 Statistical Mechanics +1106.5274 Trading and Market Microstructure +1106.5905 +1106.5920 Lattice +1106.6109 Atomic Physics +1107.0910 High Energy Astrophysical Phenomena +1107.1734 Strongly Correlated Electrons +1107.2203 Number Theory +1107.2252 Superconductivity +1107.4027 +1107.4316 +1108.0437 High Energy Astrophysical Phenomena +1108.0574 Cryptography and Security +1108.1106 +1108.1705 Phenomenology +1108.2496 Dynamical Systems +1108.4617 Algebraic Geometry +1108.4733 Algebraic Topology +1108.4761 Strongly Correlated Electrons +1108.5520 Applications +1108.5830 Metric Geometry +1109.0030 Experiment +1109.0061 +1109.0295 Strongly Correlated Electrons +1109.0545 Distributed, Parallel, and Cluster Computing +1109.0550 Experiment +1109.0555 Mesoscale and Nanoscale Physics +1109.0562 Data Structures and Algorithms +1109.0566 Algebraic Geometry +1109.0567 Spectral Theory +1109.0571 Combinatorics +1109.0575 Number Theory +1109.0576 Experiment +1109.0578 +1109.0581 Phenomenology +1109.0583 Logic in Computer Science +1109.0591 Operator Algebras +1109.0596 +1109.0598 +1109.0601 Multiagent Systems +1109.0606 Physics and Society +1109.0612 Algebraic Geometry +1109.0615 Quantitative Methods +1109.0617 Databases +1109.0621 Artificial Intelligence +1109.0623 Differential Geometry +1109.0624 Computation and Language +1109.0625 Spectral Theory +1109.0634 Combinatorics +1109.0636 Combinatorics +1109.0637 Superconductivity +1109.0638 Programming Languages +1109.0644 +1109.0645 Theory +1109.0646 Dynamical Systems +1109.0647 Pattern Formation and Solitons +1109.0649 +1109.0650 +1109.0652 Combinatorics +1109.0653 Statistical Mechanics +1109.0655 +1109.0662 +1109.0664 Popular Physics +1109.0671 Dynamical Systems +1109.0672 Probability +1109.0673 Operator Algebras +1109.0674 Exactly Solvable and Integrable Systems +1109.0675 Networking and Internet Architecture +1109.0678 Statistical Mechanics +1109.0680 Digital Libraries +1109.0682 Materials Science +1109.0683 General Physics +1109.0688 Phenomenology +1109.0689 Cryptography and Security +1109.0690 High Energy Astrophysical Phenomena +1109.0695 Statistical Mechanics +1109.0696 Information Theory +1109.0703 Numerical Analysis +1109.0704 Solar and Stellar Astrophysics +1109.0706 Risk Management +1109.0708 Hardware Architecture +1109.0714 Data Analysis, Statistics and Probability +1109.0716 History and Overview +1109.0717 Solar and Stellar Astrophysics +1109.0720 Analysis of PDEs +1109.0725 Statistics Theory +1109.0727 Statistical Mechanics +1109.0730 Machine Learning +1109.0731 Phenomenology +1109.0734 Strongly Correlated Electrons +1109.0735 Instrumentation and Methods for Astrophysics +1109.0736 Databases +1109.0741 Probability +1109.0742 Distributed, Parallel, and Cluster Computing +1109.0743 Biological Physics +1109.0744 Biological Physics +1109.0746 High Energy Astrophysical Phenomena +1109.0747 Differential Geometry +1109.0749 Differential Geometry +1109.0750 Differential Geometry +1109.0751 Differential Geometry +1109.0752 Hardware Architecture +1109.0753 Multimedia +1109.0755 Hardware Architecture +1109.0758 Social and Information Networks +1109.0759 Astrophysics of Galaxies +1109.0760 +1109.0761 Geometric Topology +1109.0762 Information Theory +1109.0774 Programming Languages +1109.0775 Programming Languages +1109.0776 Programming Languages +1109.0777 Programming Languages +1109.0778 Programming Languages +1109.0779 Programming Languages +1109.0780 Programming Languages +1109.0781 Programming Languages +1109.0783 Data Structures and Algorithms +1109.0784 Programming Languages +1109.0785 Programming Languages +1109.0786 Programming Languages +1109.0787 Combinatorics +1109.0792 Networking and Internet Architecture +1109.0794 Representation Theory +1109.0799 Phenomenology +1109.0800 Information Theory +1109.0801 +1109.0802 +1109.0804 Statistical Mechanics +1109.0810 Classical Analysis and ODEs +1109.0811 Analysis of PDEs +1109.0815 Combinatorics +1109.0817 +1109.0819 +1109.0820 Learning +1109.0827 Information Theory +1109.0829 General Physics +1109.0834 High Energy Astrophysical Phenomena +1109.0836 +1109.0837 Solar and Stellar Astrophysics +1109.0842 +1109.0849 Dynamical Systems +1109.0853 Superconductivity +1109.0854 Functional Analysis +1109.0861 Differential Geometry +1109.0867 Number Theory +1109.0869 Solar and Stellar Astrophysics +1109.0871 Analysis of PDEs +1109.0879 Computational Physics +1109.0880 General Physics +1109.0883 Experiment +1109.0889 Fluid Dynamics +1109.0890 Phenomenology +1109.0892 Optics +1109.0894 Differential Geometry +1109.0901 Group Theory +1109.0902 +1109.0905 Mesoscale and Nanoscale Physics +1109.0906 Group Theory +1109.0913 Phenomenology +1109.0915 Logic in Computer Science +1109.0916 Information Retrieval +1109.0922 Number Theory +1109.0933 Probability +1109.0934 Experiment +1109.0937 Computers and Society +1109.0943 Symplectic Geometry +1109.0947 Materials Science +1109.0951 Atmospheric and Oceanic Physics +1109.0960 Algebraic Topology +1109.0961 Statistics Theory +1109.0964 Computational Complexity +1109.0968 Classical Analysis and ODEs +1109.0971 Cryptography and Security +1109.0973 Astrophysics of Galaxies +1109.0974 Solar and Stellar Astrophysics +1109.0981 High Energy Astrophysical Phenomena +1109.0982 High Energy Astrophysical Phenomena +1109.0983 Digital Libraries +astro-ph/0510318 +cond-mat/0412411 Other Condensed Matter +cs/0505049 Information Theory +hep-ph/0112120 Phenomenology +math-ph/0703028 +math/0211425 Geometric Topology +math/0303249 Geometric Topology +math/0312329 Geometric Topology +math/0402339 Geometric Topology +math/0405250 Geometric Topology +math/0412511 Geometric Topology +math/0610745 Geometric Topology +physics/0005072 Atmospheric and Oceanic Physics +physics/0601127 Optics +physics/0607178 Physics and Society +quant-ph/0406035 +quant-ph/0512006 +quant-ph/0512023 +quant-ph/9912057 +0706.4389 +0709.3966 Soft Condensed Matter +0711.0310 Theory +0711.0461 Disordered Systems and Neural Networks +0712.3975 +0801.4262 Other Condensed Matter +0803.2943 +0804.2225 Other Condensed Matter +0808.2251 Representation Theory +0810.1677 Algebraic Geometry +0903.1897 Fluid Dynamics +0903.4740 Probability +0906.0671 High Energy Astrophysical Phenomena +0909.1436 +0909.1655 Combinatorics +0911.0714 Representation Theory +0912.0248 Differential Geometry +0912.3265 Theory +0912.4690 Fluid Dynamics +1001.1421 Algebraic Geometry +1001.4347 Disordered Systems and Neural Networks +1004.1101 Analysis of PDEs +1004.1541 Quantum Gases +1004.2140 +1004.4938 Algebraic Geometry +1005.2322 Fluid Dynamics +1006.1124 +1006.3304 Rings and Algebras +1006.3729 Materials Science +1007.4421 +1007.4468 Logic +1008.1441 +1009.1350 +1009.1417 Superconductivity +1009.1419 Combinatorics +1009.2224 Atomic Physics +1009.2564 +1009.2676 Materials Science +1009.2983 Theory +1009.4482 Representation Theory +1009.4678 Superconductivity +1010.0751 +1010.4525 Phenomenology +1010.5241 Theory +1010.6196 Soft Condensed Matter +1011.0960 Phenomenology +1011.1438 Mesoscale and Nanoscale Physics +1011.5634 Phenomenology +1011.6061 Soft Condensed Matter +1012.0224 Phenomenology +1012.3263 Theory +1012.3828 Computational Complexity +1012.5215 Lattice +1012.5854 Cosmology and Nongalactic Astrophysics +1101.0729 Cosmology and Nongalactic Astrophysics +1101.1016 Analysis of PDEs +1101.4088 Mesoscale and Nanoscale Physics +1102.0637 Soft Condensed Matter +1102.1438 +1102.3539 +1102.5538 Data Structures and Algorithms +1103.0416 Classical Physics +1103.0844 Materials Science +1103.2368 +1103.2671 Theory +1103.3424 Quantum Gases +1103.3848 Theory +1103.5055 Programming Languages +1103.5327 Algebraic Geometry +1103.6091 Cosmology and Nongalactic Astrophysics +1104.0404 Chaotic Dynamics +1104.2517 +1104.3857 +1104.5089 Statistical Mechanics +1104.5334 Mesoscale and Nanoscale Physics +1104.5552 High Energy Astrophysical Phenomena +1105.0389 Theory +1105.0708 Materials Science +1105.2100 +1105.2163 Phenomenology +1105.3622 +1105.3676 Phenomenology +1105.3957 Differential Geometry +1105.3966 Superconductivity +1105.5586 Solar and Stellar Astrophysics +1105.6201 Instrumentation and Detectors +1106.0136 Earth and Planetary Astrophysics +1106.0539 Methodology +1106.1644 Quantum Gases +1106.1673 Quantum Gases +1106.2990 Experiment +1106.3380 +1106.4470 Mesoscale and Nanoscale Physics +1106.4893 Theory +1106.5357 Number Theory +1106.5788 Phenomenology +1106.6019 Phenomenology +1106.6097 Dynamical Systems +1107.1007 +1107.2744 Statistical Mechanics +1107.3718 Phenomenology +1107.3958 Quantum Gases +1107.5544 Combinatorics +1107.5994 +1108.0207 Analysis of PDEs +1108.3829 Machine Learning +1108.4126 Methodology +1108.4403 Algebraic Geometry +1108.5214 Combinatorics +1108.5532 Algebraic Geometry +1109.2833 Probability +1109.3011 +1109.3014 Analysis of PDEs +1109.3098 Solar and Stellar Astrophysics +1109.3143 Instrumentation and Detectors +1109.3164 +1109.3202 Phenomenology +1109.3205 Algebraic Geometry +1109.3208 +1109.3213 Astrophysics of Galaxies +1109.3214 Dynamical Systems +1109.3215 +1109.3220 Probability +1109.3223 Experiment +1109.3225 Materials Science +1109.3231 Phenomenology +1109.3233 Experiment +1109.3240 Information Theory +1109.3241 Atomic Physics +1109.3244 Dynamical Systems +1109.3246 Algebraic Geometry +1109.3248 Learning +1109.3254 Computation +1109.3256 Programming Languages +1109.3257 Analysis of PDEs +1109.3260 Analysis of PDEs +1109.3262 Experiment +1109.3268 Populations and Evolution +1109.3273 Combinatorics +1109.3274 Geometric Topology +1109.3280 Dynamical Systems +1109.3286 +1109.3287 +1109.3288 Solar and Stellar Astrophysics +1109.3290 Rings and Algebras +1109.3291 Astrophysics of Galaxies +1109.3292 Statistical Mechanics +1109.3297 Representation Theory +1109.3298 +1109.3300 Instrumentation and Detectors +1109.3302 +1109.3303 Analysis of PDEs +1109.3306 Operator Algebras +1109.3310 Experiment +1109.3311 +1109.3313 Artificial Intelligence +1109.3316 Computational Geometry +1109.3317 Computer Vision and Pattern Recognition +1109.3319 Geophysics +1109.3323 Optimization and Control +1109.3328 Mesoscale and Nanoscale Physics +1109.3329 +1109.3331 Chemical Physics +1109.3344 Algebraic Geometry +1109.3346 +1109.3348 Mesoscale and Nanoscale Physics +1109.3355 Physics and Society +1109.3362 Number Theory +1109.3369 Phenomenology +1109.3370 Logic in Computer Science +1109.3371 Experiment +1109.3377 Quantum Gases +1109.3380 Differential Geometry +1109.3381 Formal Languages and Automata Theory +1109.3383 Experiment +1109.3385 +1109.3387 Instrumentation and Detectors +1109.3390 Combinatorics +1109.3391 +1109.3397 Analysis of PDEs +1109.3398 Experiment +1109.3406 Probability +1109.3408 +1109.3411 Numerical Analysis +1109.3416 Biological Physics +1109.3417 Experiment +1109.3422 Theory +1109.3424 Functional Analysis +1109.3426 Cosmology and Nongalactic Astrophysics +1109.3427 Fluid Dynamics +1109.3430 Probability +1109.3431 Optics +1109.3441 Metric Geometry +1109.3442 Cosmology and Nongalactic Astrophysics +1109.3444 Software Engineering +astro-ph/0205304 +astro-ph/0604416 +astro-ph/9803164 +cond-mat/0301488 Disordered Systems and Neural Networks +cond-mat/0301490 Disordered Systems and Neural Networks +cond-mat/0506287 Disordered Systems and Neural Networks +cond-mat/0510714 Disordered Systems and Neural Networks +gr-qc/9902026 +hep-ex/0004024 Experiment +hep-ex/0309048 Experiment +hep-ex/0408134 Experiment +hep-ph/9906307 Phenomenology +hep-th/0403232 Theory +hep-th/9712036 Theory +math/0405487 Number Theory +math/0609568 Probability +0705.3445 Group Theory +0708.2349 Probability +0708.2358 Group Theory +0801.4653 Phenomenology +0804.3071 Combinatorics +0805.2660 Representation Theory +0810.1065 Group Theory +0810.2114 Group Theory +0811.1315 Differential Geometry +0811.1888 Probability +0812.1397 Dynamical Systems +0812.3146 Probability +0901.2410 Information Theory +0902.0436 Combinatorics +0902.1758 Classical Analysis and ODEs +0903.0152 Differential Geometry +0904.0200 Combinatorics +0904.2820 Analysis of PDEs +0905.0679 +0908.2399 Computer Science and Game Theory +0910.1600 +0910.2429 Group Theory +0911.2539 +0911.4218 +1001.3902 Algebraic Geometry +1002.0328 Soft Condensed Matter +1002.0363 Superconductivity +1003.1526 +1003.2809 Group Theory +1003.5272 Theory +1004.2581 Statistics Theory +1004.5585 Cosmology and Nongalactic Astrophysics +1005.3415 Superconductivity +1005.5188 Mesoscale and Nanoscale Physics +1006.1122 +1006.2594 Phenomenology +1006.3677 Group Theory +1006.4124 Superconductivity +1006.5535 +1007.1006 Theory +1007.1957 Functional Analysis +1007.2074 Analysis of PDEs +1007.2765 Cosmology and Nongalactic Astrophysics +1007.3033 General Physics +1007.3956 +1007.4696 Quantum Algebra +1008.0418 Number Theory +1008.0470 +1008.1707 Accelerator Physics +1008.3657 +1009.0147 Astrophysics of Galaxies +1009.1484 Dynamical Systems +1009.2947 Theory +1009.3366 Phenomenology +1009.5337 Statistics Theory +1010.2141 Physics and Society +1010.4036 Theory +1011.0281 Theory +1011.1239 Optics +1011.2888 Combinatorics +1011.5219 +1011.5859 +1011.5886 Theory +1011.5899 Phenomenology +1011.5907 +1011.5921 Phenomenology +1011.5924 Phenomenology +1011.5932 Disordered Systems and Neural Networks +1011.5948 +1011.5952 Phenomenology +1011.5963 +1011.5965 Phenomenology +1011.5974 Lattice +1011.5976 Phenomenology +1011.5999 Quantum Gases +1011.6024 +1011.6027 Phenomenology +1011.6046 Phenomenology +1011.6056 +1011.6058 Lattice +1011.6104 Phenomenology +1011.6154 +1011.6360 Experiment +1011.6653 Complex Variables +1012.3311 Data Structures and Algorithms +1012.5648 Phenomenology +1012.5867 Mesoscale and Nanoscale Physics +1101.4669 High Energy Astrophysical Phenomena +1101.4742 Classical Physics +1102.0812 +1102.1261 Multiagent Systems +1102.1844 Theory +1102.2156 Rings and Algebras +1102.2513 +1102.4056 +1103.0678 Strongly Correlated Electrons +1103.0707 Commutative Algebra +1103.2260 Mesoscale and Nanoscale Physics +1103.4310 Mesoscale and Nanoscale Physics +1103.5110 Physics and Society +1103.5475 Solar and Stellar Astrophysics +1104.0242 Superconductivity +1104.2356 Cosmology and Nongalactic Astrophysics +1104.2557 Phenomenology +1104.3500 Formal Languages and Automata Theory +1104.4621 Mesoscale and Nanoscale Physics +1104.4982 Atomic Physics +1104.5382 Phenomenology +1105.1501 Chemical Physics +1105.3275 Phenomenology +1105.3947 Differential Geometry +1105.4000 Differential Geometry +1105.5147 High Energy Astrophysical Phenomena +1105.5516 Artificial Intelligence +1105.6294 Theory +1106.0473 Quantum Gases +1106.0477 Materials Science +1106.2608 Instrumentation and Methods for Astrophysics +1106.2890 Phenomenology +1106.6131 Mesoscale and Nanoscale Physics +1107.0531 Materials Science +1107.1022 Theory +1107.1220 Exactly Solvable and Integrable Systems +1107.1307 Atmospheric and Oceanic Physics +1107.1609 Information Theory +1107.2836 Differential Geometry +1107.2947 Fluid Dynamics +1107.3575 Instrumentation and Detectors +1107.4295 +1107.4932 Logic +1107.4935 Logic in Computer Science +1107.5091 Statistical Mechanics +1107.5190 Probability +1107.5869 Optimization and Control +1108.0258 Rings and Algebras +1108.0814 Mesoscale and Nanoscale Physics +1108.0821 Number Theory +1108.1253 Materials Science +1108.2249 Analysis of PDEs +1108.3197 Number Theory +1108.3558 Distributed, Parallel, and Cluster Computing +1108.3571 Information Theory +1108.3575 Analysis of PDEs +1108.3585 Statistics Theory +1108.3588 Combinatorics +1108.3594 +1108.3595 Analysis of PDEs +1108.3596 Methodology +1108.3599 Information Theory +1108.3601 High Energy Astrophysical Phenomena +1108.3607 Materials Science +1108.3611 Group Theory +1108.3614 Artificial Intelligence +1108.3615 Computational Geometry +1108.3616 Formal Languages and Automata Theory +1108.3617 Formal Languages and Automata Theory +1108.3618 Formal Languages and Automata Theory +1108.3619 Formal Languages and Automata Theory +1108.3620 Formal Languages and Automata Theory +1108.3621 Formal Languages and Automata Theory +1108.3622 Formal Languages and Automata Theory +1108.3623 Discrete Mathematics +1108.3624 Formal Languages and Automata Theory +1108.3625 Formal Languages and Automata Theory +1108.3626 Formal Languages and Automata Theory +1108.3627 Discrete Mathematics +1108.3628 Formal Languages and Automata Theory +1108.3629 Formal Languages and Automata Theory +1108.3630 Formal Languages and Automata Theory +1108.3631 Formal Languages and Automata Theory +1108.3632 Discrete Mathematics +1108.3633 Formal Languages and Automata Theory +1108.3634 Formal Languages and Automata Theory +1108.3635 Formal Languages and Automata Theory +1108.3636 Information Theory +1108.3637 Formal Languages and Automata Theory +1108.3638 Discrete Mathematics +1108.3639 Discrete Mathematics +1108.3640 Formal Languages and Automata Theory +1108.3641 Discrete Mathematics +1108.3642 Discrete Mathematics +1108.3645 Materials Science +1108.3648 Exactly Solvable and Integrable Systems +1108.3650 +1108.3651 Materials Science +1108.3652 Information Theory +1108.3653 Computational Complexity +1108.3657 Methodology +1108.3664 High Energy Astrophysical Phenomena +1108.3665 Geophysics +1108.3672 Representation Theory +1108.3674 Operator Algebras +1108.3675 Logic in Computer Science +1108.3676 Geometric Topology +1108.3680 Number Theory +1108.3683 Data Structures and Algorithms +1108.3685 Algebraic Topology +1108.3687 Mesoscale and Nanoscale Physics +1108.3692 Astrophysics of Galaxies +1108.3700 Combinatorics +1108.3702 Multiagent Systems +1108.3703 Networking and Internet Architecture +1108.3704 Optics +1108.3714 Analysis of PDEs +1108.3718 Materials Science +1108.3724 Category Theory +1108.3727 Cosmology and Nongalactic Astrophysics +1108.3728 Information Theory +1108.3737 Number Theory +1108.3738 Optics +1108.3747 Dynamical Systems +1108.3751 General Topology +1108.3756 Discrete Mathematics +1108.3757 Artificial Intelligence +1108.3758 Analysis of PDEs +1108.3760 Classical Analysis and ODEs +1108.3777 Group Theory +1108.3779 Computer Science and Game Theory +1108.3787 K-Theory and Homology +1108.3798 Optimization and Control +1108.3807 Solar and Stellar Astrophysics +1108.3809 Probability +1108.3817 Materials Science +1108.3819 Number Theory +1108.3831 Number Theory +adap-org/9608001 Adaptation and Self-Organizing Systems +astro-ph/0205250 +astro-ph/0206393 +astro-ph/0208512 +astro-ph/0302307 +astro-ph/0603418 +astro-ph/0605726 +hep-ex/9405003 Experiment +hep-th/9404169 Theory +math/0601077 Group Theory +math/0701629 Combinatorics +math/0702874 Group Theory +nlin/0302020 Pattern Formation and Solitons +nlin/0302021 Pattern Formation and Solitons +nlin/0302022 Pattern Formation and Solitons +nucl-ex/0002010 +nucl-ex/0010006 +nucl-ex/0010017 +nucl-ex/0112001 +nucl-ex/0204001 +nucl-ex/0307003 +nucl-ex/0401025 +nucl-ex/0503010 +nucl-ex/9706004 +nucl-ex/9811002 +nucl-ex/9903009 +nucl-ex/9906005 +nucl-ex/9909001 +nucl-ex/9909010 +nucl-ex/9910004 +nucl-ex/9912007 +physics/0212086 Computational Physics +physics/0309024 Atomic and Molecular Clusters +physics/0402031 Classical Physics +physics/9702008 Accelerator Physics +physics/9704004 Chemical Physics +quant-ph/0503097 +0704.3740 Theory +0706.1948 Mesoscale and Nanoscale Physics +0706.3979 General Physics +0707.3675 Materials Science +0707.3692 Mesoscale and Nanoscale Physics +0708.0922 +0709.3015 +0710.0412 Lattice +0711.1657 +0711.3596 Phenomenology +0712.4042 Data Analysis, Statistics and Probability +0801.1184 +0802.2892 Mesoscale and Nanoscale Physics +0802.4094 +0804.3794 +0805.2551 Phenomenology +0805.4690 Phenomenology +0806.0257 +0806.1162 +0806.1840 Phenomenology +0806.2266 +0807.2040 Probability +0807.3196 Theory +0808.1388 +0808.2590 Experiment +0810.2541 +0810.2556 +0811.1555 Phenomenology +0812.3034 +0902.0848 +0902.2608 General Physics +0904.4117 Theory +0905.1629 Statistical Mechanics +0905.3532 Theory +0906.0666 +0906.4380 +0906.5204 Mesoscale and Nanoscale Physics +0909.3835 Theory +0910.1649 Probability +0910.3815 Combinatorics +0911.3696 Rings and Algebras +0911.4622 Solar and Stellar Astrophysics +0911.5329 Mesoscale and Nanoscale Physics +0912.2191 +0912.4920 Statistical Mechanics +1001.1649 Mesoscale and Nanoscale Physics +1001.3237 +1002.1019 Theory +1002.1476 Cosmology and Nongalactic Astrophysics +1003.0896 Cosmology and Nongalactic Astrophysics +1003.3870 Cosmology and Nongalactic Astrophysics +1003.4428 +1004.0978 Analysis of PDEs +1004.1760 +1004.2672 Phenomenology +1004.4572 Rings and Algebras +1005.1169 Theory +1005.1403 Optimization and Control +1005.1843 Physics and Society +1005.5725 Algebraic Geometry +1006.0061 +1006.1712 Phenomenology +1006.2508 High Energy Astrophysical Phenomena +1006.2732 Cryptography and Security +1006.4880 Phenomenology +1006.5779 Probability +1007.0342 +1007.0950 Analysis of PDEs +1007.3916 +1008.0049 +1008.0994 +1008.1149 Probability +1008.1212 Operator Algebras +1008.1966 Group Theory +1008.2507 +1008.4517 +1009.0188 Analysis of PDEs +1009.1535 Phenomenology +1009.1596 +1009.2069 Mesoscale and Nanoscale Physics +1009.2248 Mesoscale and Nanoscale Physics +1009.2304 +1009.3151 Numerical Analysis +1009.3331 +1009.3596 +1009.3689 Mesoscale and Nanoscale Physics +1009.4213 Mesoscale and Nanoscale Physics +1009.5230 +1010.1832 +1010.2159 Strongly Correlated Electrons +1010.2363 +1010.2738 Phenomenology +1010.3745 Strongly Correlated Electrons +1010.4527 Category Theory +1010.4556 Phenomenology +1011.0206 Astrophysics of Galaxies +1011.0524 +1011.0552 Phenomenology +1011.0848 Superconductivity +1011.0858 +1011.1853 +1011.2177 Astrophysics of Galaxies +1011.2414 Phenomenology +1011.2490 Quantum Gases +1011.3886 +1011.4520 High Energy Astrophysical Phenomena +1011.4632 Artificial Intelligence +1011.5407 +1011.5912 Theory +1011.5960 +1011.6073 +1011.6306 Algebraic Geometry +1011.6618 Theory +1012.0883 Cosmology and Nongalactic Astrophysics +1012.1582 +1012.2320 Dynamical Systems +1012.2333 +1012.2363 Physics and Society +1012.2455 Phenomenology +1012.3448 Probability +1012.3827 Quantum Gases +1012.3840 +1012.3876 Superconductivity +1012.3906 Differential Geometry +1012.4190 +1012.4238 Cosmology and Nongalactic Astrophysics +1012.5114 Phenomenology +1012.5158 Theory +1012.5608 General Physics +1012.6017 Superconductivity +1101.0071 +1101.0425 Phenomenology +1101.1013 Biomolecules +1101.2070 Quantum Gases +1101.2854 Quantum Gases +1101.4030 Materials Science +1101.4663 Quantum Gases +1101.5028 +1101.5217 +1101.5534 Lattice +1102.0156 Phenomenology +1102.0241 +1102.0625 Statistics Theory +1102.0995 Cosmology and Nongalactic Astrophysics +1102.1683 +1102.1787 +1102.1789 Statistical Mechanics +1102.3053 Quantum Gases +1102.3281 +1102.3432 Phenomenology +1102.4350 Physics and Society +1102.4619 Cosmology and Nongalactic Astrophysics +1102.4701 Disordered Systems and Neural Networks +1103.0110 Number Theory +1103.0758 Superconductivity +1103.0931 +1103.2009 +1103.2332 +1103.3379 Solar and Stellar Astrophysics +1103.3668 High Energy Astrophysical Phenomena +1103.4285 +1103.5393 +1103.5728 Number Theory +1103.5877 +1103.6266 Probability +1104.0699 Experiment +1104.0707 Combinatorics +1104.2107 Geometric Topology +1104.3240 +1104.4920 Probability +1105.0031 Information Theory +1105.0345 +1105.0441 Algebraic Geometry +1105.0483 Theory +1105.0490 Statistics Theory +1105.0494 Statistical Mechanics +1105.0595 Theory +1105.0623 Analysis of PDEs +1105.0637 Instrumentation and Methods for Astrophysics +1105.0673 Computation and Language +1105.0687 Mesoscale and Nanoscale Physics +1105.0695 Neurons and Cognition +1105.0697 Social and Information Networks +1105.0699 Multimedia +1105.0701 +1105.0702 Representation Theory +1105.0707 Artificial Intelligence +1105.0709 Data Structures and Algorithms +1105.0717 Analysis of PDEs +1105.0720 Geophysics +1105.0723 Optics +1105.0727 Probability +1105.0738 Networking and Internet Architecture +1105.0741 Symplectic Geometry +1105.0750 Plasma Physics +1105.0751 Phenomenology +1105.0755 Applications +1105.0757 Optimization and Control +1105.0760 Machine Learning +1105.0763 +1105.0777 Mesoscale and Nanoscale Physics +1105.0779 Solar and Stellar Astrophysics +1105.0780 Biomolecules +1105.0784 +1105.0785 Information Theory +1105.0790 Combinatorics +1105.0792 Phenomenology +1105.0801 Soft Condensed Matter +1105.0803 Combinatorics +1105.0811 Algebraic Topology +1105.0815 General Physics +1105.0818 Populations and Evolution +1105.0821 Computer Vision and Pattern Recognition +1105.0824 Phenomenology +1105.0826 Multimedia +1105.0836 Functional Analysis +1105.0840 High Energy Astrophysical Phenomena +1105.0841 Number Theory +1105.0843 Mesoscale and Nanoscale Physics +1105.0845 Logic in Computer Science +1105.0854 Functional Analysis +1105.0856 Dynamical Systems +1105.0857 Learning +1105.0858 Representation Theory +1105.0859 Classical Analysis and ODEs +1105.0862 Algebraic Geometry +1105.0872 Analysis of PDEs +1105.0877 Functional Analysis +1105.0879 Instrumentation and Methods for Astrophysics +1105.0880 Genomics +1105.0881 Probability +1105.0887 Algebraic Geometry +1105.0892 Probability +1105.0896 Solar and Stellar Astrophysics +1105.0899 Phenomenology +1105.0900 Quantitative Methods +1105.0902 Methodology +1105.0906 Statistical Mechanics +1105.0908 Materials Science +1105.0910 General Physics +astro-ph/0001072 +astro-ph/0001295 +astro-ph/0001366 +astro-ph/0001402 +astro-ph/0002336 +astro-ph/0003008 +astro-ph/0003334 +astro-ph/0003447 +astro-ph/0005010 +astro-ph/0005435 +astro-ph/0011001 +astro-ph/0011223 +astro-ph/0011484 +astro-ph/0011493 +astro-ph/0012067 +astro-ph/0012324 +astro-ph/0012510 +astro-ph/0101216 +astro-ph/0102074 +astro-ph/0102151 +astro-ph/0102186 +astro-ph/0102391 +astro-ph/0102411 +astro-ph/0103513 +astro-ph/0104097 +astro-ph/0104320 +astro-ph/0105004 +astro-ph/0105093 +astro-ph/0105396 +astro-ph/0106151 +astro-ph/0107318 +astro-ph/0108483 +astro-ph/0109121 +astro-ph/0112477 +astro-ph/0201195 +astro-ph/0201318 +astro-ph/0202466 +astro-ph/0203252 +astro-ph/0203469 +astro-ph/0203510 +astro-ph/0204016 +astro-ph/0204182 +astro-ph/0204425 +astro-ph/0205281 +astro-ph/0206438 +astro-ph/0207322 +astro-ph/0207332 +astro-ph/0207664 +astro-ph/0208001 +astro-ph/0208145 +astro-ph/0208192 +astro-ph/0209478 +astro-ph/0209565 +astro-ph/0210129 +astro-ph/0210449 +astro-ph/0210643 +astro-ph/0211125 +astro-ph/0211267 +astro-ph/0211602 +astro-ph/0212028 +astro-ph/0212198 +astro-ph/0212242 +astro-ph/0212380 +astro-ph/0301062 +astro-ph/0301454 +astro-ph/0301540 +astro-ph/0301629 +astro-ph/0302543 +astro-ph/0303188 +astro-ph/0303228 +astro-ph/0304060 +astro-ph/0304423 +astro-ph/0305231 +astro-ph/0305261 +astro-ph/0305441 +astro-ph/0305476 +astro-ph/0306047 +astro-ph/0306122 +astro-ph/0310189 +astro-ph/0310232 +astro-ph/0310703 +astro-ph/0311082 +astro-ph/0311257 +astro-ph/0311538 +astro-ph/0311541 +astro-ph/0312189 +astro-ph/0401088 +astro-ph/0401123 +astro-ph/0401219 +astro-ph/0401457 +astro-ph/0402319 +astro-ph/0402347 +astro-ph/0403486 +astro-ph/0404062 +astro-ph/0404224 +astro-ph/0404358 +astro-ph/0405262 +astro-ph/0406106 +astro-ph/0406167 +astro-ph/0406247 +astro-ph/0406254 +astro-ph/0407566 +astro-ph/0409513 +astro-ph/0411310 +astro-ph/0412357 +astro-ph/0412444 +astro-ph/0503027 +astro-ph/0503387 +astro-ph/0504046 +astro-ph/0504555 +astro-ph/0504584 +astro-ph/0505042 +astro-ph/0505214 +astro-ph/0505301 +astro-ph/0601015 +astro-ph/0601108 +astro-ph/0601357 +astro-ph/0605725 +astro-ph/0606700 +astro-ph/0608038 +astro-ph/0612273 +astro-ph/9304022 +astro-ph/9403015 +astro-ph/9411044 +astro-ph/9505009 +astro-ph/9509007 +astro-ph/9510080 +astro-ph/9510136 +astro-ph/9604011 +astro-ph/9609132 +astro-ph/9611097 +astro-ph/9709257 +astro-ph/9711102 +astro-ph/9801013 +astro-ph/9802239 +astro-ph/9803073 +astro-ph/9803261 +astro-ph/9803277 +astro-ph/9806151 +astro-ph/9806181 +astro-ph/9807150 +astro-ph/9811189 +astro-ph/9811294 +astro-ph/9901023 +astro-ph/9901175 +astro-ph/9902032 +astro-ph/9903478 +astro-ph/9904309 +astro-ph/9908159 +astro-ph/9910565 +astro-ph/9912391 +cond-mat/0110572 +cond-mat/0506538 Mesoscale and Nanoscale Physics +cond-mat/0509330 Mesoscale and Nanoscale Physics +cond-mat/0510576 Disordered Systems and Neural Networks +cond-mat/0604654 Mesoscale and Nanoscale Physics +gr-qc/0009008 +gr-qc/0207080 +gr-qc/0207085 +gr-qc/0301052 +gr-qc/0303039 +gr-qc/0303073 +gr-qc/0304074 +gr-qc/0308070 +gr-qc/0602001 +gr-qc/0604044 +gr-qc/9406037 +gr-qc/9504015 +gr-qc/9702050 +gr-qc/9708063 +gr-qc/9711068 +gr-qc/9904062 +gr-qc/9909079 +hep-lat/0305007 Lattice +hep-lat/0306021 Lattice +hep-lat/0311023 Lattice +hep-lat/0503014 Lattice +hep-lat/0610094 Lattice +hep-lat/0701002 Lattice +hep-lat/9512011 Lattice +hep-lat/9704011 Lattice +hep-lat/9705009 Lattice +hep-lat/9912050 Lattice +hep-ph/0001172 Phenomenology +hep-ph/0001233 Phenomenology +hep-ph/0005094 Phenomenology +hep-ph/0005214 Phenomenology +hep-ph/0006359 Phenomenology +hep-ph/0007112 Phenomenology +hep-ph/0009237 Phenomenology +hep-ph/0012279 Phenomenology +hep-ph/0103201 Phenomenology +hep-ph/0103322 Phenomenology +hep-ph/0107001 Phenomenology +hep-ph/0107101 Phenomenology +hep-ph/0108030 Phenomenology +hep-ph/0108135 Phenomenology +hep-ph/0110315 Phenomenology +hep-ph/0201001 Phenomenology +hep-ph/0205283 Phenomenology +hep-ph/0205305 Phenomenology +hep-ph/0206026 Phenomenology +hep-ph/0206057 Phenomenology +hep-ph/0206152 Phenomenology +hep-ph/0207008 Phenomenology +hep-ph/0207047 Phenomenology +hep-ph/0209038 Phenomenology +hep-ph/0209219 Phenomenology +hep-ph/0209303 Phenomenology +hep-ph/0210058 Phenomenology +hep-ph/0211393 Phenomenology +hep-ph/0302103 Phenomenology +hep-ph/0302135 Phenomenology +hep-ph/0303034 Phenomenology +hep-ph/0306077 Phenomenology +hep-ph/0307095 Phenomenology +hep-ph/0307102 Phenomenology +hep-ph/0307383 Phenomenology +hep-ph/0308251 Phenomenology +hep-ph/0309342 Phenomenology +hep-ph/0312109 Phenomenology +hep-ph/0312207 Phenomenology +hep-ph/0312274 Phenomenology +hep-ph/0403035 Phenomenology +hep-ph/0403143 Phenomenology +hep-ph/0406125 Phenomenology +hep-ph/0409146 Phenomenology +hep-ph/0409232 Phenomenology +hep-ph/0409342 Phenomenology +hep-ph/0503108 Phenomenology +hep-ph/0504181 Phenomenology +hep-ph/0505111 Phenomenology +hep-ph/0505239 Phenomenology +hep-ph/0507001 Phenomenology +hep-ph/0509275 Phenomenology +hep-ph/0510164 Phenomenology +hep-ph/0511094 Phenomenology +hep-ph/0602178 Phenomenology +hep-ph/0602244 Phenomenology +hep-ph/0603059 Phenomenology +hep-ph/0604204 Phenomenology +hep-ph/0604236 Phenomenology +hep-ph/0605214 Phenomenology +hep-ph/0605306 Phenomenology +hep-ph/9209238 Phenomenology +hep-ph/9209269 Phenomenology +hep-ph/9210255 Phenomenology +hep-ph/9302208 Phenomenology +hep-ph/9302248 Phenomenology +hep-ph/9304225 Phenomenology +hep-ph/9309289 Phenomenology +hep-ph/9311290 Phenomenology +hep-ph/9312324 Phenomenology +hep-ph/9402291 Phenomenology +hep-ph/9403227 Phenomenology +hep-ph/9403331 Phenomenology +hep-ph/9403403 Phenomenology +hep-ph/9407282 Phenomenology +hep-ph/9407389 Phenomenology +hep-ph/9411239 Phenomenology +hep-ph/9501232 Phenomenology +hep-ph/9502308 Phenomenology +hep-ph/9504334 Phenomenology +hep-ph/9504378 Phenomenology +hep-ph/9505224 Phenomenology +hep-ph/9505251 Phenomenology +hep-ph/9509358 Phenomenology +hep-ph/9602271 Phenomenology +hep-ph/9603205 Phenomenology +hep-ph/9603378 Phenomenology +hep-ph/9603406 Phenomenology +hep-ph/9605266 Phenomenology +hep-ph/9605288 Phenomenology +hep-ph/9605342 Phenomenology +hep-ph/9606419 Phenomenology +hep-ph/9606427 Phenomenology +hep-ph/9607440 Phenomenology +hep-ph/9608322 Phenomenology +hep-ph/9609529 Phenomenology +hep-ph/9611367 Phenomenology +hep-ph/9612464 Phenomenology +hep-ph/9702318 Phenomenology +hep-ph/9703436 Phenomenology +hep-ph/9704255 Phenomenology +hep-ph/9706511 Phenomenology +hep-ph/9707347 Phenomenology +hep-ph/9709223 Phenomenology +hep-ph/9709348 Phenomenology +hep-ph/9709492 Phenomenology +hep-ph/9712212 Phenomenology +hep-ph/9803394 Phenomenology +hep-ph/9804255 Phenomenology +hep-ph/9804281 Phenomenology +hep-ph/9807339 Phenomenology +hep-ph/9810374 Phenomenology +hep-ph/9812205 Phenomenology +hep-ph/9812472 Phenomenology +hep-ph/9901201 Phenomenology +hep-ph/9902308 Phenomenology +hep-ph/9902483 Phenomenology +hep-ph/9903305 Phenomenology +hep-ph/9903417 Phenomenology +hep-ph/9905448 Phenomenology +hep-ph/9906286 Phenomenology +hep-ph/9907495 Phenomenology +hep-ph/9907545 Phenomenology +hep-ph/9908245 Phenomenology +hep-ph/9908459 Phenomenology +hep-ph/9911427 Phenomenology +hep-ph/9911457 Phenomenology +hep-th/0003029 Theory +hep-th/0006203 Theory +hep-th/0007191 Theory +hep-th/0008204 Theory +hep-th/0011172 Theory +hep-th/0101194 Theory +hep-th/0106138 Theory +hep-th/0106200 Theory +hep-th/0106274 Theory +hep-th/0109133 Theory +hep-th/0202140 Theory +hep-th/0203028 Theory +hep-th/0205052 Theory +hep-th/0205214 Theory +hep-th/0210209 Theory +hep-th/0210233 Theory +hep-th/0303116 Theory +hep-th/0304172 Theory +hep-th/0304222 Theory +hep-th/0305052 Theory +hep-th/0306291 Theory +hep-th/0307097 Theory +hep-th/0308056 Theory +hep-th/0309042 Theory +hep-th/0309213 Theory +hep-th/0310281 Theory +hep-th/0311223 Theory +hep-th/0312100 Theory +hep-th/0402009 Theory +hep-th/0403190 Theory +hep-th/0403264 Theory +hep-th/0407232 Theory +hep-th/0408010 Theory +hep-th/0408095 Theory +hep-th/0408141 Theory +hep-th/0410280 Theory +hep-th/0412141 Theory +hep-th/0502058 Theory +hep-th/0503183 Theory +hep-th/0505016 Theory +hep-th/0507014 Theory +hep-th/0507203 Theory +hep-th/0509012 Theory +hep-th/0509184 Theory +hep-th/0510024 Theory +hep-th/0512077 Theory +hep-th/0512177 Theory +hep-th/0602005 Theory +hep-th/9201013 Theory +hep-th/9207050 Theory +hep-th/9304141 Theory +hep-th/9307036 Theory +hep-th/9309137 Theory +hep-th/9312153 Theory +hep-th/9401069 Theory +hep-th/9406206 Theory +hep-th/9407117 Theory +hep-th/9408068 Theory +hep-th/9508025 Theory +hep-th/9509115 Theory +hep-th/9510200 Theory +hep-th/9511108 Theory +hep-th/9512181 Theory +hep-th/9512210 Theory +hep-th/9602043 Theory +hep-th/9603002 Theory +hep-th/9604026 Theory +hep-th/9604189 Theory +hep-th/9605032 Theory +hep-th/9605151 Theory +hep-th/9606139 Theory +hep-th/9607167 Theory +hep-th/9608059 Theory +hep-th/9701042 Theory +hep-th/9707126 Theory +hep-th/9711108 Theory +hep-th/9803235 Theory +hep-th/9805105 Theory +hep-th/9810146 Theory +hep-th/9901109 Theory +hep-th/9901122 Theory +hep-th/9904025 Theory +hep-th/9907001 Theory +hep-th/9908064 Theory +math-ph/0110016 +math-ph/0112041 +math/0209099 Differential Geometry +math/0601348 Combinatorics +math/0602504 General Topology +math/0703440 Number Theory +math/9904055 Quantum Algebra +nucl-th/0001018 +nucl-th/0110014 +nucl-th/0205002 +nucl-th/0205009 +nucl-th/0205043 +nucl-th/0302002 +nucl-th/0305005 +nucl-th/9510051 +nucl-th/9808012 +nucl-th/9809027 +nucl-th/9910064 +nucl-th/9911001 +quant-ph/9604005 +0704.0881 +0705.0020 +0705.2588 +0705.3048 +0706.0383 +0706.1083 +0706.1995 +0706.2029 +0706.2100 +0706.2171 +0706.2652 +0706.2663 +0706.2881 +0706.2900 +0706.3206 +0706.3464 +0706.3715 +0706.4223 +0706.4265 +0706.4483 +0707.0508 +0707.0816 +0707.0967 +0707.1310 +0708.0313 +0708.0815 +0708.2967 +0708.3247 Exactly Solvable and Integrable Systems +0709.1106 +0709.3387 +0709.3470 +0710.1992 +0710.2954 +0710.3906 +0710.4485 +0710.5740 +0711.0759 +0711.1680 +0711.1863 +0712.0543 +0712.3171 +0801.0115 Theory +0801.4441 +0802.3186 +0802.3244 Theory +0803.2706 +0803.3161 +0804.0199 +0804.1353 +0804.3463 +0804.4008 +0805.0309 +0805.1040 +0805.1055 +0805.1118 +0805.1188 +0805.1261 +0805.1412 +0805.1469 +0805.1693 +0805.1750 +0805.1870 +0805.1921 +0805.1990 +0805.2160 +0805.2207 +0805.2320 +0805.2607 +0805.2617 +0805.2950 +0805.2965 +0805.3138 +0805.3151 +0805.3201 +0805.3302 +0805.3540 +0805.3644 +0805.3915 +0805.4012 +0805.4016 +0805.4238 +0805.4342 +0805.4373 Probability +0805.4492 +0805.4645 +0806.0038 +0806.0364 +0806.0512 +0806.0617 +0806.0824 +0806.0862 +0806.0988 +0806.1311 +0806.1653 +0806.1739 +0806.1938 +0806.2340 +0806.2343 +0806.2662 +0806.2723 +0806.2818 +0806.2859 +0806.2897 +0806.3269 +0806.3339 +0806.3441 +0806.3470 +0806.3541 +0806.4008 +0806.4122 +0806.4346 +0806.4970 +0806.4972 +0807.0189 +0807.0223 +0807.0277 +0807.0473 +0807.0535 +0807.0624 +0807.0866 +0807.0869 +0807.0951 +0807.1021 +0807.1097 +0807.1430 +0807.1674 +0807.1744 +0807.1752 +0807.1798 +0807.1931 +0807.1962 +0807.2242 +0807.2437 +0807.2450 +0807.2540 +0807.2818 +0807.2862 +0807.2892 +0807.2900 +0807.3044 +0807.3526 +0807.3555 +0807.3567 +0807.3769 +0807.3956 +0807.3985 +0807.4180 +0807.4702 +0807.4778 +0807.4933 +0807.4998 +0807.5053 +0808.0010 +0808.0138 +0808.0214 +0808.0461 +0808.0462 +0808.0692 +0808.0773 +0808.1106 +0808.1461 +0808.1574 +0808.1834 +0808.2469 +0808.2477 +0808.2513 +0808.2812 +0808.2980 +0808.2988 +0808.3014 +0808.3140 +0808.3141 +0808.3226 +0808.3293 +0808.3294 +0808.3407 +0808.3668 +0808.3769 +0808.3818 +0808.3847 +0808.3980 +0808.4001 +0808.4099 +0809.0001 +0809.0015 +0809.0278 +0809.0309 +0809.0508 +0809.0509 +0809.0568 +0809.0601 +0809.0851 +0809.0866 +0809.0895 +0809.0896 +0809.0901 +0809.1096 +0809.1212 +0809.1397 +0809.1457 +0809.1494 +0809.1588 +0809.1608 +0809.1617 +0809.1619 +0809.1625 +0809.1642 +0809.1648 +0809.1651 +0809.1708 +0809.1726 +0809.1866 +0809.2038 +0809.2042 +0809.2087 +0809.2089 +0809.2094 +0809.2120 +0809.2156 +0809.2180 +0809.2302 +0809.2303 +0809.2389 +0809.2404 +0809.2793 +0809.2810 +0809.2975 +0809.2987 +0809.2997 +0809.3089 +0809.3171 +0809.3185 +0809.3262 +0809.3404 +0809.3424 +0809.3593 +0809.3722 +0809.3733 +0809.3749 +0809.3790 +0809.3819 +0809.3832 +0809.3839 +0809.3906 +0809.3931 +0809.3992 +0809.4005 +0809.4016 +0809.4024 +0809.4025 +0809.4052 +0809.4125 +0809.4166 +0809.4230 +0809.4254 +0809.4260 +0809.4267 +0809.4281 +0809.4292 +0809.4295 +0809.4306 +0809.4320 +0809.4486 +0809.4504 +0809.4589 +0809.4624 +0809.4656 +0809.4691 +0809.4765 +0809.4943 +0809.5054 +0809.5057 +0809.5077 +0809.5079 +0809.5256 +0809.5263 +0810.0005 +0810.0009 +0810.0018 +0810.0021 +0810.0308 +0810.0446 +0810.0528 +0810.0597 +0810.0635 +0810.0709 +0810.0802 +0810.0884 +0810.0969 +0810.1052 +0810.1082 +0810.1090 +0810.1095 +0810.1140 +0810.1225 +0810.1244 +0810.1245 +0810.1249 +0810.1251 +0810.1252 +0810.1272 +0810.1282 +0810.1393 +0810.1415 +0810.1478 +0810.1516 +0810.1520 +0810.1521 +0810.1591 +0810.1594 +0810.1605 +0810.1626 +0810.1651 +0810.1712 +0810.1867 +0810.1935 +0810.2009 +0810.2104 +0810.2238 +0810.2298 +0810.2303 +0810.2481 +0810.2540 +0810.2543 +0810.2552 +0810.2563 +0810.2599 +0810.2619 +0810.2702 +0810.2788 +0810.2796 +0810.2800 +0810.2803 +0810.2957 +0810.2971 +0810.3001 +0810.3014 +0810.3056 +0810.3108 +0810.3129 +0810.3140 +0810.3234 +0810.3235 +0810.3237 +0810.3276 +0810.3384 +0810.3447 +0810.3459 +0810.3466 +0810.3571 +0810.3577 +0810.3613 +0810.3662 +0810.3701 +0810.3757 +0810.3793 +0810.3804 +0810.3917 +0810.3920 +0810.3971 +0810.3999 +0810.4135 +0810.4142 +0810.4145 +0810.4150 +0810.4154 +0810.4210 +0810.4383 +0810.4540 +0810.4561 +0810.4564 +0810.4565 +0810.4650 +0810.4674 +0810.4687 +0810.4725 +0810.4838 +0810.4873 +0810.4923 +0810.4925 +0810.4947 +0810.4950 +0810.5022 +0810.5026 +0810.5118 +0810.5130 +0810.5134 +0810.5139 +0810.5142 +0810.5200 +0810.5313 +0810.5314 +0810.5348 +0810.5404 +0810.5447 +0810.5553 +0810.5556 +0810.5661 +0810.5675 +0810.5704 +0810.5720 +0811.0002 +0811.0003 +0811.0054 +0811.0169 +0811.0197 +0811.0230 +0811.0327 +0811.0363 +0811.0391 +0811.0501 +0811.0512 +0811.0595 +0811.0615 +0811.0679 +0811.0701 +0811.0704 +0811.0768 +0811.0813 +0811.0822 +0811.0828 +0811.0832 +0811.0930 +0811.1042 +0811.1053 +0811.1128 +0811.1145 +0811.1164 +0811.1176 +0811.1217 +0811.1241 +0811.1398 +0811.1436 +0811.1474 +0811.1533 +0811.1562 +0811.1577 +0811.1616 Strongly Correlated Electrons +0811.1642 +0811.1675 +0811.1688 +0811.1708 +0811.1762 +0811.1774 +0811.1833 +0811.1837 +0811.1907 +0811.1953 Phenomenology +0811.1972 +0811.1985 +0811.1986 +0811.1988 +0811.1991 +0811.1996 +0811.2001 +0811.2014 +0811.2033 +0811.2041 +0811.2142 +0811.2220 +0811.2447 +0811.2451 +0811.2532 +0811.2533 +0811.2550 +0811.2600 +0811.2655 +0811.2749 +0811.2793 +0811.2811 +0811.2974 +0811.3031 +0811.3179 +0811.3226 +0811.3251 +0811.3381 +0811.3385 +0811.3401 +0811.3415 +0811.3446 +0811.3654 +0811.3743 +0811.3796 +0811.3935 +0811.3965 +0811.3979 +0811.3984 Theory +0811.4035 +0811.4096 +0811.4190 +0811.4291 +0811.4345 +0811.4425 +0811.4751 +0812.0007 +0812.0011 +0812.0119 +0812.0186 +0812.0269 +0812.0358 +0812.0365 +0812.0383 +0812.0450 +0812.0457 +0812.0506 +0812.0817 +0812.0824 +0812.0979 +0812.0991 +0812.1028 +0812.1220 +0812.1284 +0812.1329 +0812.1392 +0812.1563 +0812.1569 +0812.1582 +0812.1618 +0812.1791 +0812.1846 +0812.1847 +0812.1848 +0812.1855 +0812.1906 +0812.1918 +0812.2012 +0812.2020 +0812.2021 +0812.2125 +0812.2150 +0812.2187 +0812.2198 +0812.2441 +0812.2496 +0812.2568 +0812.2594 +0812.2598 +0812.2607 +0812.2742 +0812.2756 +0812.2788 +0812.2815 +0812.2856 +0812.2882 +0812.2893 +0812.2906 +0812.2922 +0812.2927 +0812.2975 +0812.2997 +0812.3093 +0812.3103 +0812.3148 +0812.3153 +0812.3199 +0812.3240 +0812.3339 +0812.3358 +0812.3375 +0812.3444 +0812.3494 +0812.3647 +0812.3659 +0812.3688 +0812.3823 +0812.3853 +0812.3918 +0812.3931 +0812.3958 +0812.3993 +0812.4104 +0812.4231 +0812.4349 +0812.4405 +0812.4466 +0812.4541 +0812.4582 +0812.4671 +0901.0031 High Energy Astrophysical Phenomena +0901.0095 Solar and Stellar Astrophysics +0901.0273 Astrophysics of Galaxies +0901.0297 Astrophysics of Galaxies +0901.0304 High Energy Astrophysical Phenomena +0901.0360 Solar and Stellar Astrophysics +0901.0415 Astrophysics of Galaxies +0901.0452 Astrophysics of Galaxies +0901.0517 Astrophysics of Galaxies +0901.0550 Astrophysics of Galaxies +0901.0554 Solar and Stellar Astrophysics +0901.0558 Astrophysics of Galaxies +0901.0567 Astrophysics of Galaxies +0901.0617 Astrophysics of Galaxies +0901.0711 Cosmology and Nongalactic Astrophysics +0901.0792 Astrophysics of Galaxies +0901.0909 Solar and Stellar Astrophysics +0901.0913 Astrophysics of Galaxies +0901.0925 Astrophysics of Galaxies +0901.0928 Cosmology and Nongalactic Astrophysics +0901.0968 Astrophysics of Galaxies +0901.0972 Astrophysics of Galaxies +0901.0973 Earth and Planetary Astrophysics +0901.0999 Astrophysics of Galaxies +0901.1039 High Energy Astrophysical Phenomena +0901.1075 Solar and Stellar Astrophysics +0901.1097 Astrophysics of Galaxies +0901.1127 Astrophysics of Galaxies +0901.1138 Cosmology and Nongalactic Astrophysics +0901.1143 High Energy Astrophysical Phenomena +0901.1206 Solar and Stellar Astrophysics +0901.1225 High Energy Astrophysical Phenomena +0901.1295 Solar and Stellar Astrophysics +0901.1297 High Energy Astrophysical Phenomena +0901.1316 Astrophysics of Galaxies +0901.1411 Solar and Stellar Astrophysics +0901.1436 Solar and Stellar Astrophysics +0901.1480 Astrophysics of Galaxies +0901.1622 Solar and Stellar Astrophysics +0901.1656 Astrophysics of Galaxies +0901.1663 Astrophysics of Galaxies +0901.1673 Cosmology and Nongalactic Astrophysics +0901.1698 Earth and Planetary Astrophysics +0901.1702 High Energy Astrophysical Phenomena +0901.1721 Astrophysics of Galaxies +0901.1789 Astrophysics of Galaxies +0901.1973 Astrophysics of Galaxies +0901.1982 High Energy Astrophysical Phenomena +0901.1997 Solar and Stellar Astrophysics +0901.2046 Astrophysics of Galaxies +0901.2096 Astrophysics of Galaxies +0901.2105 High Energy Astrophysical Phenomena +0901.2115 Astrophysics of Galaxies +0901.2134 Solar and Stellar Astrophysics +0901.2177 Earth and Planetary Astrophysics +0901.2189 Solar and Stellar Astrophysics +0901.2273 Solar and Stellar Astrophysics +0901.2361 Astrophysics of Galaxies +0901.2447 Astrophysics of Galaxies +0901.2476 Solar and Stellar Astrophysics +0901.2481 Astrophysics of Galaxies +0901.2578 High Energy Astrophysical Phenomena +0901.2603 Solar and Stellar Astrophysics +0901.2634 Astrophysics of Galaxies +0901.2688 Astrophysics of Galaxies +0901.2886 Earth and Planetary Astrophysics +0901.2907 Solar and Stellar Astrophysics +0901.2929 Astrophysics of Galaxies +0901.2990 High Energy Astrophysical Phenomena +0901.3008 Solar and Stellar Astrophysics +0901.3013 Solar and Stellar Astrophysics +0901.3115 Solar and Stellar Astrophysics +0901.3281 Solar and Stellar Astrophysics +0901.3321 Astrophysics of Galaxies +0901.3415 Astrophysics of Galaxies +0901.3514 Solar and Stellar Astrophysics +0901.3552 High Energy Astrophysical Phenomena +0901.3566 Astrophysics of Galaxies +0901.3591 Solar and Stellar Astrophysics +0901.3592 Solar and Stellar Astrophysics +0901.3667 Solar and Stellar Astrophysics +0901.3677 Solar and Stellar Astrophysics +0901.3744 Solar and Stellar Astrophysics +0901.3750 High Energy Astrophysical Phenomena +0901.3778 Astrophysics of Galaxies +0901.3802 Cosmology and Nongalactic Astrophysics +0901.4034 Solar and Stellar Astrophysics +0901.4053 High Energy Astrophysical Phenomena +0901.4093 Solar and Stellar Astrophysics +0901.4095 Solar and Stellar Astrophysics +0901.4121 Astrophysics of Galaxies +0901.4162 Astrophysics of Galaxies +0901.4179 Astrophysics of Galaxies +0901.4254 Solar and Stellar Astrophysics +0901.4302 High Energy Astrophysical Phenomena +0901.4328 Solar and Stellar Astrophysics +0901.4330 Cosmology and Nongalactic Astrophysics +0901.4337 Cosmology and Nongalactic Astrophysics +0901.4340 Cosmology and Nongalactic Astrophysics +0901.4343 Astrophysics of Galaxies +0901.4360 Solar and Stellar Astrophysics +0901.4364 Cosmology and Nongalactic Astrophysics +0901.4372 Cosmology and Nongalactic Astrophysics +0901.4394 Earth and Planetary Astrophysics +0901.4402 High Energy Astrophysical Phenomena +0901.4411 Solar and Stellar Astrophysics +0901.4492 Solar and Stellar Astrophysics +0901.4495 Astrophysics of Galaxies +0901.4558 Astrophysics of Galaxies +0901.4626 Cosmology and Nongalactic Astrophysics +0901.4718 High Energy Astrophysical Phenomena +0901.4733 Cosmology and Nongalactic Astrophysics +0901.4809 Cosmology and Nongalactic Astrophysics +0901.4897 Earth and Planetary Astrophysics +0901.4940 Earth and Planetary Astrophysics +0901.4944 High Energy Astrophysical Phenomena +0902.0001 Solar and Stellar Astrophysics +0902.0003 Cosmology and Nongalactic Astrophysics +0902.0004 Astrophysics of Galaxies +0902.0064 Astrophysics of Galaxies +0902.0077 Solar and Stellar Astrophysics +0902.0121 Cosmology and Nongalactic Astrophysics +0902.0122 Cosmology and Nongalactic Astrophysics +0902.0208 Cosmology and Nongalactic Astrophysics +0902.0243 Solar and Stellar Astrophysics +0902.0336 Cosmology and Nongalactic Astrophysics +0902.0363 Cosmology and Nongalactic Astrophysics +0902.0369 High Energy Astrophysical Phenomena +0902.0384 Astrophysics of Galaxies +0902.0536 Solar and Stellar Astrophysics +0902.0609 High Energy Astrophysical Phenomena +0902.0636 Astrophysics of Galaxies +0902.0647 Astrophysics of Galaxies +0902.0736 Cosmology and Nongalactic Astrophysics +0902.0737 Earth and Planetary Astrophysics +0902.0786 High Energy Astrophysical Phenomena +0902.0794 High Energy Astrophysical Phenomena +0902.0810 Cosmology and Nongalactic Astrophysics +0902.0942 High Energy Astrophysical Phenomena +0902.0951 Astrophysics of Galaxies +0902.0978 Astrophysics of Galaxies +0902.1007 Solar and Stellar Astrophysics +0902.1014 Astrophysics of Galaxies +0902.1071 Solar and Stellar Astrophysics +0902.1103 Cosmology and Nongalactic Astrophysics +0902.1366 Astrophysics of Galaxies +0902.1542 Earth and Planetary Astrophysics +0902.1557 Solar and Stellar Astrophysics +0902.1578 Astrophysics of Galaxies +0902.1614 Solar and Stellar Astrophysics +0902.1640 Earth and Planetary Astrophysics +0902.1701 High Energy Astrophysical Phenomena +0902.1714 Cosmology and Nongalactic Astrophysics +0902.1805 Solar and Stellar Astrophysics +0902.1985 High Energy Astrophysical Phenomena +0902.2008 Solar and Stellar Astrophysics +0902.2087 Astrophysics of Galaxies +0902.2310 Astrophysics of Galaxies +0902.2335 Cosmology and Nongalactic Astrophysics +0902.2369 High Energy Astrophysical Phenomena +0902.2378 Astrophysics of Galaxies +0902.2397 High Energy Astrophysical Phenomena +0902.2403 Cosmology and Nongalactic Astrophysics +0902.2409 Astrophysics of Galaxies +0902.2412 Solar and Stellar Astrophysics +0902.2437 Instrumentation and Methods for Astrophysics +0902.2481 High Energy Astrophysical Phenomena +0902.2555 Cosmology and Nongalactic Astrophysics +0902.2561 Solar and Stellar Astrophysics +0902.2709 Astrophysics of Galaxies +0902.2716 Cosmology and Nongalactic Astrophysics +0902.2778 Astrophysics of Galaxies +0902.2779 Earth and Planetary Astrophysics +0902.2784 Cosmology and Nongalactic Astrophysics +0902.2804 Astrophysics of Galaxies +0902.2831 Cosmology and Nongalactic Astrophysics +0902.2852 High Energy Astrophysical Phenomena +0902.2899 Cosmology and Nongalactic Astrophysics +0902.2930 Cosmology and Nongalactic Astrophysics +0902.2992 Instrumentation and Methods for Astrophysics +0902.3001 Astrophysics of Galaxies +0902.3082 Earth and Planetary Astrophysics +0902.3095 Astrophysics of Galaxies +0902.3258 Cosmology and Nongalactic Astrophysics +0902.3280 Astrophysics of Galaxies +0902.3307 Astrophysics of Galaxies +0902.3332 Instrumentation and Methods for Astrophysics +0902.3357 High Energy Astrophysical Phenomena +0902.3391 High Energy Astrophysical Phenomena +0902.3477 Astrophysics of Galaxies +0902.3500 Astrophysics of Galaxies +0902.3504 High Energy Astrophysical Phenomena +0902.3537 Solar and Stellar Astrophysics +0902.3604 Solar and Stellar Astrophysics +0902.3636 Cosmology and Nongalactic Astrophysics +0902.3640 Solar and Stellar Astrophysics +0902.3658 Cosmology and Nongalactic Astrophysics +0902.3664 Astrophysics of Galaxies +0902.3672 High Energy Astrophysical Phenomena +0902.3747 Cosmology and Nongalactic Astrophysics +0902.3982 High Energy Astrophysical Phenomena +0902.3984 Astrophysics of Galaxies +0902.3988 Astrophysics of Galaxies +0902.4003 Cosmology and Nongalactic Astrophysics +0902.4004 Solar and Stellar Astrophysics +0902.4015 High Energy Astrophysical Phenomena +0902.4044 Solar and Stellar Astrophysics +0902.4103 Cosmology and Nongalactic Astrophysics +0902.4118 High Energy Astrophysical Phenomena +0902.4182 Solar and Stellar Astrophysics +0902.4237 Earth and Planetary Astrophysics +0902.4399 Cosmology and Nongalactic Astrophysics +0902.4427 Solar and Stellar Astrophysics +0902.4625 Astrophysics of Galaxies +0902.4632 High Energy Astrophysical Phenomena +0902.4802 Earth and Planetary Astrophysics +0903.0192 Combinatorics +0903.0214 Astrophysics of Galaxies +0903.0237 Astrophysics of Galaxies +0903.0330 Solar and Stellar Astrophysics +0903.0375 Cosmology and Nongalactic Astrophysics +0903.0429 High Energy Astrophysical Phenomena +0903.0440 Solar and Stellar Astrophysics +0903.0620 High Energy Astrophysical Phenomena +0903.0622 Instrumentation and Methods for Astrophysics +0903.0636 Solar and Stellar Astrophysics +0903.0638 Astrophysics of Galaxies +0903.0775 Astrophysics of Galaxies +0903.0791 Solar and Stellar Astrophysics +0903.0825 Solar and Stellar Astrophysics +0903.0857 Solar and Stellar Astrophysics +0903.0868 Solar and Stellar Astrophysics +0903.0886 Astrophysics of Galaxies +0903.1229 Cosmology and Nongalactic Astrophysics +0903.1249 Cosmology and Nongalactic Astrophysics +0903.1255 Solar and Stellar Astrophysics +0903.1302 High Energy Astrophysical Phenomena +0903.1349 Solar and Stellar Astrophysics +0903.1392 Cosmology and Nongalactic Astrophysics +0903.1492 Solar and Stellar Astrophysics +0903.1602 High Energy Astrophysical Phenomena +0903.1636 Cosmology and Nongalactic Astrophysics +0903.1678 Cosmology and Nongalactic Astrophysics +0903.1712 High Energy Astrophysical Phenomena +0903.1731 Cosmology and Nongalactic Astrophysics +0903.1829 Instrumentation and Methods for Astrophysics +0903.1852 Astrophysics of Galaxies +0903.1861 Cosmology and Nongalactic Astrophysics +0903.1892 Solar and Stellar Astrophysics +0903.1900 Differential Geometry +0903.1919 Solar and Stellar Astrophysics +0903.1974 High Energy Astrophysical Phenomena +0903.2086 High Energy Astrophysical Phenomena +0903.2149 Cosmology and Nongalactic Astrophysics +0903.2238 Astrophysics of Galaxies +0903.2257 Astrophysics of Galaxies +0903.2325 Cosmology and Nongalactic Astrophysics +0903.2535 Cosmology and Nongalactic Astrophysics +0903.2606 Cosmology and Nongalactic Astrophysics +0903.2663 High Energy Astrophysical Phenomena +0903.2666 Earth and Planetary Astrophysics +0903.2680 High Energy Astrophysical Phenomena +0903.2775 Solar and Stellar Astrophysics +0903.2798 Cosmology and Nongalactic Astrophysics +0903.2839 Astrophysics of Galaxies +0903.2840 Cosmology and Nongalactic Astrophysics +0903.2877 High Energy Astrophysical Phenomena +0903.2879 High Energy Astrophysical Phenomena +0903.2882 Solar and Stellar Astrophysics +0903.2922 Cosmology and Nongalactic Astrophysics +0903.3015 Cosmology and Nongalactic Astrophysics +0903.3031 High Energy Astrophysical Phenomena +0903.3057 Solar and Stellar Astrophysics +0903.3066 Cosmology and Nongalactic Astrophysics +0903.3067 Cosmology and Nongalactic Astrophysics +0903.3070 Cosmology and Nongalactic Astrophysics +0903.3191 Astrophysics of Galaxies +0903.3239 Cosmology and Nongalactic Astrophysics +0903.3242 Solar and Stellar Astrophysics +0903.3251 Solar and Stellar Astrophysics +0903.3371 Instrumentation and Methods for Astrophysics +0903.3405 Earth and Planetary Astrophysics +0903.3411 Cosmology and Nongalactic Astrophysics +0903.3416 Astrophysics of Galaxies +0903.3457 High Energy Astrophysical Phenomena +0903.3573 High Energy Astrophysical Phenomena +0903.3583 High Energy Astrophysical Phenomena +0903.3603 Cosmology and Nongalactic Astrophysics +0903.3634 Cosmology and Nongalactic Astrophysics +0903.3714 Solar and Stellar Astrophysics +0903.3802 Astrophysics of Galaxies +0903.3871 Astrophysics of Galaxies +0903.3880 Solar and Stellar Astrophysics +0903.3885 Solar and Stellar Astrophysics +0903.3934 Cosmology and Nongalactic Astrophysics +0903.3940 Cosmology and Nongalactic Astrophysics +0903.3950 Cosmology and Nongalactic Astrophysics +0903.3968 Solar and Stellar Astrophysics +0903.4164 High Energy Astrophysical Phenomena +0903.4175 Cosmology and Nongalactic Astrophysics +0903.4182 Cosmology and Nongalactic Astrophysics +0903.4183 Cosmology and Nongalactic Astrophysics +0903.4197 Cosmology and Nongalactic Astrophysics +0903.4343 Solar and Stellar Astrophysics +0903.4344 Solar and Stellar Astrophysics +0903.4347 Cosmology and Nongalactic Astrophysics +0903.4411 Cosmology and Nongalactic Astrophysics +0903.4455 Solar and Stellar Astrophysics +0903.4483 Cosmology and Nongalactic Astrophysics +0903.4488 Astrophysics of Galaxies +0903.4498 High Energy Astrophysical Phenomena +0903.4519 Cosmology and Nongalactic Astrophysics +0903.4643 Cosmology and Nongalactic Astrophysics +0903.4660 Cosmology and Nongalactic Astrophysics +0903.4693 Cosmology and Nongalactic Astrophysics +0903.4700 Earth and Planetary Astrophysics +0903.4857 Cosmology and Nongalactic Astrophysics +0903.4873 Solar and Stellar Astrophysics +0903.4895 Cosmology and Nongalactic Astrophysics +0903.4897 Astrophysics of Galaxies +0903.4942 Solar and Stellar Astrophysics +0903.5077 Earth and Planetary Astrophysics +0903.5205 Astrophysics of Galaxies +0903.5224 Cosmology and Nongalactic Astrophysics +0903.5301 Cosmology and Nongalactic Astrophysics +0903.5304 Earth and Planetary Astrophysics +0903.5338 Astrophysics of Galaxies +0903.5411 Cosmology and Nongalactic Astrophysics +0904.0009 Astrophysics of Galaxies +0904.0083 Cosmology and Nongalactic Astrophysics +0904.0096 High Energy Astrophysical Phenomena +0904.0249 Astrophysics of Galaxies +0904.0250 Astrophysics of Galaxies +0904.0266 Cosmology and Nongalactic Astrophysics +0904.0280 Astrophysics of Galaxies +0904.0325 Solar and Stellar Astrophysics +0904.0395 Solar and Stellar Astrophysics +0904.0592 Earth and Planetary Astrophysics +0904.0603 Solar and Stellar Astrophysics +0904.0614 Solar and Stellar Astrophysics +0904.0645 Instrumentation and Methods for Astrophysics +0904.0646 Cosmology and Nongalactic Astrophysics +0904.0652 Astrophysics of Galaxies +0904.0657 Astrophysics of Galaxies +0904.0743 Earth and Planetary Astrophysics +0904.0819 Solar and Stellar Astrophysics +0904.0831 Cosmology and Nongalactic Astrophysics +0904.0878 Solar and Stellar Astrophysics +0904.0996 Cosmology and Nongalactic Astrophysics +0904.1003 Astrophysics of Galaxies +0904.1010 Solar and Stellar Astrophysics +0904.1064 High Energy Astrophysical Phenomena +0904.1170 Earth and Planetary Astrophysics +0904.1189 High Energy Astrophysical Phenomena +0904.1238 High Energy Astrophysical Phenomena +0904.1373 Solar and Stellar Astrophysics +0904.1430 Cosmology and Nongalactic Astrophysics +0904.1448 Solar and Stellar Astrophysics +0904.1494 Cosmology and Nongalactic Astrophysics +0904.1542 Solar and Stellar Astrophysics +0904.1574 Astrophysics of Galaxies +0904.1575 Solar and Stellar Astrophysics +0904.1596 Cosmology and Nongalactic Astrophysics +0904.1610 Cosmology and Nongalactic Astrophysics +0904.1620 Solar and Stellar Astrophysics +0904.1633 Instrumentation and Methods for Astrophysics +0904.1742 Cosmology and Nongalactic Astrophysics +0904.1821 High Energy Astrophysical Phenomena +0904.1879 Cosmology and Nongalactic Astrophysics +0904.1953 Solar and Stellar Astrophysics +0904.1964 Astrophysics of Galaxies +0904.1995 Astrophysics of Galaxies +0904.2000 Astrophysics of Galaxies +0904.2006 Cosmology and Nongalactic Astrophysics +0904.2079 Solar and Stellar Astrophysics +0904.2150 Cosmology and Nongalactic Astrophysics +0904.2162 Astrophysics of Galaxies +0904.2221 Cosmology and Nongalactic Astrophysics +0904.2331 Cosmology and Nongalactic Astrophysics +0904.2355 Cosmology and Nongalactic Astrophysics +0904.2363 Solar and Stellar Astrophysics +0904.2383 High Energy Astrophysical Phenomena +0904.2446 High Energy Astrophysical Phenomena +0904.2608 Solar and Stellar Astrophysics +0904.2621 Solar and Stellar Astrophysics +0904.2772 High Energy Astrophysical Phenomena +0904.2791 High Energy Astrophysical Phenomena +0904.2907 Solar and Stellar Astrophysics +0904.2939 Solar and Stellar Astrophysics +0904.2941 High Energy Astrophysical Phenomena +0904.3013 Solar and Stellar Astrophysics +0904.3056 Cosmology and Nongalactic Astrophysics +0904.3092 Earth and Planetary Astrophysics +0904.3105 Solar and Stellar Astrophysics +0904.3146 Earth and Planetary Astrophysics +0904.3161 Astrophysics of Galaxies +0904.3200 Cosmology and Nongalactic Astrophysics +0904.3272 Earth and Planetary Astrophysics +0904.3326 Astrophysics of Galaxies +0904.3348 Cosmology and Nongalactic Astrophysics +0904.3486 High Energy Astrophysical Phenomena +0904.3496 Astrophysics of Galaxies +0904.3507 Solar and Stellar Astrophysics +0904.3562 Solar and Stellar Astrophysics +0904.3934 Astrophysics of Galaxies +0904.4086 Astrophysics of Galaxies +0904.4169 Astrophysics of Galaxies +0904.4287 Astrophysics of Galaxies +0904.4328 Cosmology and Nongalactic Astrophysics +0904.4398 Solar and Stellar Astrophysics +0904.4410 Cosmology and Nongalactic Astrophysics +0904.4419 Solar and Stellar Astrophysics +0904.4445 Astrophysics of Galaxies +0904.4463 Solar and Stellar Astrophysics +0904.4543 Earth and Planetary Astrophysics +0904.4615 Data Structures and Algorithms +0904.4693 Solar and Stellar Astrophysics +0904.4752 Astrophysics of Galaxies +0904.4782 Solar and Stellar Astrophysics +0904.4786 Cosmology and Nongalactic Astrophysics +0904.4812 Astrophysics of Galaxies +0904.4901 Astrophysics of Galaxies +0904.4918 Cosmology and Nongalactic Astrophysics +0905.0041 High Energy Astrophysical Phenomena +0905.0077 Astrophysics of Galaxies +0905.0145 High Energy Astrophysical Phenomena +0905.0410 Cosmology and Nongalactic Astrophysics +0905.0460 Astrophysics of Galaxies +0905.0495 High Energy Astrophysical Phenomena +0905.0539 Cosmology and Nongalactic Astrophysics +0905.0695 Cosmology and Nongalactic Astrophysics +0905.0808 Cosmology and Nongalactic Astrophysics +0905.0950 Solar and Stellar Astrophysics +0905.1001 Astrophysics of Galaxies +0905.1114 Earth and Planetary Astrophysics +0905.1124 Solar and Stellar Astrophysics +0905.1158 Astrophysics of Galaxies +0905.1166 Solar and Stellar Astrophysics +0905.1177 Cosmology and Nongalactic Astrophysics +0905.1327 Cosmology and Nongalactic Astrophysics +0905.1354 Solar and Stellar Astrophysics +0905.1416 Cosmology and Nongalactic Astrophysics +0905.1578 Cosmology and Nongalactic Astrophysics +0905.1648 Solar and Stellar Astrophysics +0905.1674 Cosmology and Nongalactic Astrophysics +0905.1676 Instrumentation and Methods for Astrophysics +0905.1690 High Energy Astrophysical Phenomena +0905.1695 Earth and Planetary Astrophysics +0905.1747 Astrophysics of Galaxies +0905.1918 Solar and Stellar Astrophysics +0905.2475 Cosmology and Nongalactic Astrophysics +0905.2518 Cosmology and Nongalactic Astrophysics +0905.2520 Phenomenology +0905.2683 Cosmology and Nongalactic Astrophysics +0905.2989 Cosmology and Nongalactic Astrophysics +0905.3139 High Energy Astrophysical Phenomena +0905.3272 Solar and Stellar Astrophysics +0905.3291 High Energy Astrophysical Phenomena +0905.3389 Astrophysics of Galaxies +0905.3511 Solar and Stellar Astrophysics +0905.3572 High Energy Astrophysical Phenomena +0905.3637 Cosmology and Nongalactic Astrophysics +0905.3744 Astrophysics of Galaxies +0905.3753 Solar and Stellar Astrophysics +0905.3800 Astrophysics of Galaxies +0905.3824 Solar and Stellar Astrophysics +0905.4012 Cosmology and Nongalactic Astrophysics +0905.4294 Astrophysics of Galaxies +0905.4460 Solar and Stellar Astrophysics +0905.4514 Astrophysics of Galaxies +0905.4525 Cosmology and Nongalactic Astrophysics +0905.4669 Cosmology and Nongalactic Astrophysics +0905.4782 Cosmology and Nongalactic Astrophysics +0905.4785 High Energy Astrophysical Phenomena +0906.0192 Solar and Stellar Astrophysics +0906.0194 Solar and Stellar Astrophysics +0906.0223 Astrophysics of Galaxies +0906.0590 Cosmology and Nongalactic Astrophysics +0906.0691 Astrophysics of Galaxies +0906.0982 Solar and Stellar Astrophysics +0906.1003 Cosmology and Nongalactic Astrophysics +0906.1062 High Energy Astrophysical Phenomena +0906.1184 Solar and Stellar Astrophysics +0906.1185 Astrophysics of Galaxies +0906.1293 Solar and Stellar Astrophysics +0906.1400 Solar and Stellar Astrophysics +0906.1595 Solar and Stellar Astrophysics +0906.1607 Cosmology and Nongalactic Astrophysics +0906.1756 Solar and Stellar Astrophysics +0906.1804 Solar and Stellar Astrophysics +0906.1810 Cosmology and Nongalactic Astrophysics +0906.2163 Solar and Stellar Astrophysics +0906.2210 Cosmology and Nongalactic Astrophysics +0906.2235 Astrophysics of Galaxies +0906.2474 Phenomenology +0906.2777 Astrophysics of Galaxies +0906.2784 High Energy Astrophysical Phenomena +0906.2902 Functional Analysis +0906.2907 +0906.3005 Solar and Stellar Astrophysics +0906.3293 Cosmology and Nongalactic Astrophysics +0906.3296 Astrophysics of Galaxies +0906.3365 Solar and Stellar Astrophysics +0906.3406 Solar and Stellar Astrophysics +0906.3514 Solar and Stellar Astrophysics +0906.3517 Cosmology and Nongalactic Astrophysics +0906.3673 Astrophysics of Galaxies +0906.3688 Cosmology and Nongalactic Astrophysics +0906.3739 Cosmology and Nongalactic Astrophysics +0906.3744 Earth and Planetary Astrophysics +0906.3767 High Energy Astrophysical Phenomena +0906.3897 Solar and Stellar Astrophysics +0906.4030 Earth and Planetary Astrophysics +0906.4148 Solar and Stellar Astrophysics +0906.4153 Cosmology and Nongalactic Astrophysics +0906.4446 Solar and Stellar Astrophysics +0906.4447 Cosmology and Nongalactic Astrophysics +0906.4599 Solar and Stellar Astrophysics +0906.4619 Earth and Planetary Astrophysics +0906.4703 Cosmology and Nongalactic Astrophysics +0906.4885 Cosmology and Nongalactic Astrophysics +0906.5025 Astrophysics of Galaxies +0906.5166 Cosmology and Nongalactic Astrophysics +0906.5348 Astrophysics of Galaxies +0906.5352 High Energy Astrophysical Phenomena +0907.0231 Cosmology and Nongalactic Astrophysics +0907.0582 Statistical Mechanics +0907.0837 High Energy Astrophysical Phenomena +0907.1285 Cosmology and Nongalactic Astrophysics +0907.1300 Astrophysics of Galaxies +0907.1654 Cosmology and Nongalactic Astrophysics +0907.1668 Phenomenology +0907.1684 High Energy Astrophysical Phenomena +0907.2012 Astrophysics of Galaxies +0907.2068 High Energy Astrophysical Phenomena +0907.2131 Solar and Stellar Astrophysics +0907.2235 Cosmology and Nongalactic Astrophysics +0907.4659 Algebraic Geometry +0909.0031 Cosmology and Nongalactic Astrophysics +0909.0609 Symplectic Geometry +0909.1325 Cosmology and Nongalactic Astrophysics +0909.2311 Superconductivity +0909.3849 Cosmology and Nongalactic Astrophysics +0909.4228 Astrophysics of Galaxies +0909.5595 Solar and Stellar Astrophysics +0910.0836 Cosmology and Nongalactic Astrophysics +0910.1257 Earth and Planetary Astrophysics +0910.1505 Earth and Planetary Astrophysics +0910.2986 Cosmology and Nongalactic Astrophysics +0910.3448 Probability +0910.3683 Cosmology and Nongalactic Astrophysics +0910.3731 High Energy Astrophysical Phenomena +0910.4425 Theory +0910.4875 Earth and Planetary Astrophysics +0910.4958 Cosmology and Nongalactic Astrophysics +0910.5126 Strongly Correlated Electrons +0910.5521 Cosmology and Nongalactic Astrophysics +0911.0311 Solar and Stellar Astrophysics +0911.0357 Probability +0911.0435 High Energy Astrophysical Phenomena +0911.1060 Cosmology and Nongalactic Astrophysics +0911.1301 Instrumentation and Methods for Astrophysics +0911.1337 Earth and Planetary Astrophysics +0911.1741 Discrete Mathematics +0911.2230 Cosmology and Nongalactic Astrophysics +0911.2798 Cosmology and Nongalactic Astrophysics +0911.3485 High Energy Astrophysical Phenomena +0911.4217 High Energy Astrophysical Phenomena +0912.1069 Cosmology and Nongalactic Astrophysics +0912.3662 High Energy Astrophysical Phenomena +0912.4491 Solar and Stellar Astrophysics +1002.1080 Cosmology and Nongalactic Astrophysics +1002.1813 Theory +1002.2283 Optimization and Control +1002.3527 Phenomenology +1003.5708 Functional Analysis +1004.0951 +1004.1466 +1004.3551 Theory +1005.1304 Commutative Algebra +1005.1310 Commutative Algebra +1005.3367 Distributed, Parallel, and Cluster Computing +1005.4027 Quantum Gases +1006.2257 Theory +1006.2492 Numerical Analysis +1006.2875 +1006.2978 +1006.3100 Numerical Analysis +1006.3406 Quantum Gases +1006.4240 Theory +1006.4324 Probability +1006.4952 Algebraic Geometry +1006.5011 Phenomenology +1006.5489 +1007.2320 Superconductivity +1007.3023 Programming Languages +1007.4369 Superconductivity +1007.4767 Artificial Intelligence +1007.5498 Cosmology and Nongalactic Astrophysics +1008.0695 +1008.1056 Statistical Mechanics +1008.1995 Phenomenology +1008.2153 Phenomenology +1008.2679 +1008.3975 Materials Science +1009.0016 Quantum Gases +1009.1285 Mesoscale and Nanoscale Physics +1009.2108 Numerical Analysis +1009.2960 Instrumentation and Detectors +1009.3104 Superconductivity +1009.3107 Phenomenology +1009.4343 Strongly Correlated Electrons +1009.5600 Statistical Mechanics +1010.0100 Phenomenology +1010.0853 Quantum Gases +1010.1206 Phenomenology +1010.1759 Phenomenology +1010.2273 Theory +1010.2494 Phenomenology +1010.2804 +1010.2918 Mesoscale and Nanoscale Physics +1010.2988 Phenomenology +1010.3396 Lattice +1010.3713 Lattice +1010.3734 Atomic Physics +1010.4023 Phenomenology +1010.4192 Phenomenology +1010.4240 Lattice +1011.0113 High Energy Astrophysical Phenomena +1011.0576 Strongly Correlated Electrons +1011.0903 Differential Geometry +1011.1179 +1011.1259 Strongly Correlated Electrons +1011.2784 High Energy Astrophysical Phenomena +1011.3458 Cosmology and Nongalactic Astrophysics +1011.5350 Quantum Gases +1012.5504 Phenomenology +1101.0930 Superconductivity +1101.2073 Phenomenology +1101.2386 +1101.3817 +1101.4588 Cosmology and Nongalactic Astrophysics +1101.5311 Soft Condensed Matter +1101.5684 Cryptography and Security +1102.0580 Discrete Mathematics +1102.1402 Computers and Society +1102.1515 Materials Science +1102.1796 Methodology +1102.1959 Information Theory +1102.1965 Information Theory +1102.1984 Combinatorics +1102.1990 Superconductivity +1102.2002 Superconductivity +1102.2004 Materials Science +1102.2007 Quantum Algebra +1102.2013 Statistical Mechanics +1102.2019 Differential Geometry +1102.2022 Representation Theory +1102.2032 Optimization and Control +1102.2034 Biological Physics +1102.2036 Complex Variables +1102.2037 Numerical Analysis +1102.2038 Complex Variables +1102.2045 Cosmology and Nongalactic Astrophysics +1102.2052 Operator Algebras +1102.2053 Statistics Theory +1102.2054 Biological Physics +1102.2057 Instrumentation and Methods for Astrophysics +1102.2058 +1102.2063 Algebraic Geometry +1102.2064 Statistics Theory +1102.2069 +1102.2072 Statistics Theory +1102.2073 Group Theory +1102.2075 Machine Learning +1102.2078 Statistics Theory +1102.2079 Logic in Computer Science +1102.2081 Rings and Algebras +1102.2084 +1102.2093 General Topology +1102.2096 General Mathematics +1102.2099 Number Theory +1102.2101 Statistics Theory +1102.2105 Chaotic Dynamics +1102.2110 +1102.2111 Materials Science +1102.2118 Statistics Theory +1102.2122 Number Theory +1102.2123 Phenomenology +1102.2124 Rings and Algebras +1102.2127 Rings and Algebras +1102.2128 Rings and Algebras +1102.2136 Functional Analysis +1102.2141 Combinatorics +1102.2144 Soft Condensed Matter +1102.2148 Analysis of PDEs +1102.2152 Theory +1102.2155 Superconductivity +1102.2157 +1102.2158 Commutative Algebra +1102.2159 Logic +1102.2162 Number Theory +1102.2163 Probability +1102.2165 Probability +1102.2168 Materials Science +1102.2188 Cosmology and Nongalactic Astrophysics +1102.2191 Phenomenology +1102.2193 Soft Condensed Matter +1102.2196 General Mathematics +1102.2198 High Energy Astrophysical Phenomena +1102.2207 Information Theory +1102.2214 Cryptography and Security +1102.2222 History and Philosophy of Physics +1102.2223 Information Theory +1102.2224 Computer Science and Game Theory +astro-ph/0001126 +astro-ph/0005390 +astro-ph/0008266 +astro-ph/0009046 +astro-ph/0010158 +astro-ph/0101032 +astro-ph/0103241 +astro-ph/0104184 +astro-ph/0107187 +astro-ph/0108119 +astro-ph/0108298 +astro-ph/0109216 +astro-ph/0110100 +astro-ph/0111121 +astro-ph/0111285 +astro-ph/0205087 +astro-ph/0206297 +astro-ph/0206388 +astro-ph/0304334 +astro-ph/0305008 +astro-ph/0403206 +astro-ph/0403696 +astro-ph/0404381 +astro-ph/0506395 +astro-ph/0508467 +astro-ph/0508516 +astro-ph/0509203 +astro-ph/0509392 +astro-ph/0511292 +astro-ph/0512597 +astro-ph/0601272 +astro-ph/0601523 +astro-ph/0601527 +astro-ph/0601621 +astro-ph/0601622 +astro-ph/0601652 +astro-ph/0601717 +astro-ph/0602038 +astro-ph/0602248 +astro-ph/0602290 +astro-ph/0602522 +astro-ph/0602601 +astro-ph/0603051 +astro-ph/0603061 +astro-ph/0603119 +astro-ph/0603137 +astro-ph/0603146 +astro-ph/0603147 +astro-ph/0603181 +astro-ph/0603191 +astro-ph/0603194 +astro-ph/0603296 +astro-ph/0603343 +astro-ph/0603351 +astro-ph/0603374 +astro-ph/0603468 +astro-ph/0603479 +astro-ph/0603543 +astro-ph/0603557 +astro-ph/0603656 +astro-ph/0603742 +astro-ph/0603775 +astro-ph/0603810 +astro-ph/0603856 +astro-ph/0604250 +astro-ph/0604255 +astro-ph/0604305 +astro-ph/0604308 +astro-ph/0604432 +astro-ph/0604506 +astro-ph/0604519 +astro-ph/0604583 +astro-ph/0604588 +astro-ph/0604594 +astro-ph/0604613 +astro-ph/0604618 +astro-ph/0605001 +astro-ph/0605027 +astro-ph/0605037 +astro-ph/0605038 +astro-ph/0605043 +astro-ph/0605044 +astro-ph/0605055 +astro-ph/0605060 +astro-ph/0605075 +astro-ph/0605087 +astro-ph/0605123 +astro-ph/0605142 +astro-ph/0605163 +astro-ph/0605187 +astro-ph/0605200 +astro-ph/0605265 +astro-ph/0605273 +astro-ph/0605280 +astro-ph/0605299 +astro-ph/0605323 +astro-ph/0605329 +astro-ph/0605436 +astro-ph/0605499 +astro-ph/0605511 +astro-ph/0605608 +astro-ph/0605612 +astro-ph/0605643 +astro-ph/0605648 +astro-ph/0605686 +astro-ph/0606030 +astro-ph/0606076 +astro-ph/0606106 +astro-ph/0606187 +astro-ph/0606237 +astro-ph/0606246 +astro-ph/0606320 +astro-ph/0606359 +astro-ph/0606362 +astro-ph/0606370 +astro-ph/0606420 +astro-ph/0606435 +astro-ph/0606462 +astro-ph/0606477 +astro-ph/0606502 +astro-ph/0606525 +astro-ph/0606538 +astro-ph/0606563 +astro-ph/0606573 +astro-ph/0606590 +astro-ph/0606596 +astro-ph/0606610 +astro-ph/0606659 +astro-ph/0606672 +astro-ph/0606687 +astro-ph/0606739 +astro-ph/0607031 +astro-ph/0607041 +astro-ph/0607074 +astro-ph/0607083 +astro-ph/0607116 +astro-ph/0607120 +astro-ph/0607136 +astro-ph/0607140 +astro-ph/0607155 +astro-ph/0607156 +astro-ph/0607213 +astro-ph/0607214 +astro-ph/0607228 +astro-ph/0607231 +astro-ph/0607238 +astro-ph/0607278 +astro-ph/0607284 +astro-ph/0607286 +astro-ph/0607288 +astro-ph/0607301 +astro-ph/0607303 +astro-ph/0607307 +astro-ph/0607309 +astro-ph/0607337 +astro-ph/0607345 +astro-ph/0607362 +astro-ph/0607398 +astro-ph/0607400 +astro-ph/0607407 +astro-ph/0607408 +astro-ph/0607441 +astro-ph/0607444 +astro-ph/0607459 +astro-ph/0607475 +astro-ph/0607489 +astro-ph/0607490 +astro-ph/0607516 +astro-ph/0607518 +astro-ph/0607521 +astro-ph/0607545 +astro-ph/0607550 +astro-ph/0607551 +astro-ph/0607562 +astro-ph/0607587 +astro-ph/0607600 +astro-ph/0607602 +astro-ph/0607603 +astro-ph/0607622 +astro-ph/0607633 +astro-ph/0607637 +astro-ph/0607641 +astro-ph/0607649 +astro-ph/0607650 +astro-ph/0607653 +astro-ph/0607655 +astro-ph/0607659 +astro-ph/0608004 +astro-ph/0608030 +astro-ph/0608039 +astro-ph/0608052 +astro-ph/0608065 +astro-ph/0608068 +astro-ph/0608089 +astro-ph/0608091 +astro-ph/0608150 +astro-ph/0608161 +astro-ph/0608164 +astro-ph/0608195 +astro-ph/0608215 +astro-ph/0608229 +astro-ph/0608232 +astro-ph/0608235 +astro-ph/0608237 +astro-ph/0608281 +astro-ph/0608302 +astro-ph/0608307 +astro-ph/0608314 +astro-ph/0608335 +astro-ph/0608336 +astro-ph/0608347 +astro-ph/0608353 +astro-ph/0608355 +astro-ph/0608422 +astro-ph/0608442 +astro-ph/0608444 +astro-ph/0608446 +astro-ph/0608463 +astro-ph/0608467 +astro-ph/0608498 +astro-ph/0608499 +astro-ph/0608552 +astro-ph/0608561 +astro-ph/0608603 +astro-ph/0608642 +astro-ph/0608678 +astro-ph/0608680 +astro-ph/0608682 +astro-ph/0609023 +astro-ph/0609041 +astro-ph/0609049 +astro-ph/0609087 +astro-ph/0609088 +astro-ph/0609104 +astro-ph/0609108 +astro-ph/0609131 +astro-ph/0609133 +astro-ph/0609138 +astro-ph/0609140 +astro-ph/0609153 +astro-ph/0609184 +astro-ph/0609197 +astro-ph/0609204 +astro-ph/0609213 +astro-ph/0609254 +astro-ph/0609267 +astro-ph/0609284 +astro-ph/0609300 +astro-ph/0609323 +astro-ph/0609325 +astro-ph/0609332 +astro-ph/0609336 +astro-ph/0609346 +astro-ph/0609347 +astro-ph/0609360 +astro-ph/0609371 +astro-ph/0609372 +astro-ph/0609374 +astro-ph/0609419 +astro-ph/0609424 +astro-ph/0609431 +astro-ph/0609439 +astro-ph/0609483 +astro-ph/0609503 +astro-ph/0609515 +astro-ph/0609538 +astro-ph/0609545 +astro-ph/0609549 +astro-ph/0609555 +astro-ph/0609558 +astro-ph/0609562 +astro-ph/0609592 +astro-ph/0609602 +astro-ph/0609613 +astro-ph/0609637 +astro-ph/0609661 +astro-ph/0609663 +astro-ph/0609676 +astro-ph/0609685 +astro-ph/0609690 +astro-ph/0609727 +astro-ph/0609735 +astro-ph/0609745 +astro-ph/0609762 +astro-ph/0609772 +astro-ph/0609792 +astro-ph/0609812 +astro-ph/0609828 +astro-ph/0610007 +astro-ph/0610014 +astro-ph/0610027 +astro-ph/0610043 +astro-ph/0610088 +astro-ph/0610132 +astro-ph/0610143 +astro-ph/0610178 +astro-ph/0610213 +astro-ph/0610228 +astro-ph/0610258 +astro-ph/0610263 +astro-ph/0610431 +astro-ph/0610523 +astro-ph/0610572 +astro-ph/0610603 +astro-ph/0610613 +astro-ph/0610641 +astro-ph/0610655 +astro-ph/0610685 +astro-ph/0610721 +astro-ph/0610732 +astro-ph/0610813 +astro-ph/0610904 +astro-ph/0610949 +astro-ph/0611010 +astro-ph/0611018 +astro-ph/0611079 +astro-ph/0611100 +astro-ph/0611110 +astro-ph/0611204 +astro-ph/0611205 +astro-ph/0611263 +astro-ph/0611269 +astro-ph/0611275 +astro-ph/0611312 +astro-ph/0611315 +astro-ph/0611317 +astro-ph/0611318 +astro-ph/0611324 +astro-ph/0611341 +astro-ph/0611349 +astro-ph/0611392 +astro-ph/0611394 +astro-ph/0611420 +astro-ph/0611448 +astro-ph/0611498 +astro-ph/0611505 +astro-ph/0611578 +astro-ph/0611599 +astro-ph/0611655 +astro-ph/0611714 +astro-ph/0611718 +astro-ph/0611809 +astro-ph/0611820 +astro-ph/0611822 +astro-ph/0611823 +astro-ph/0611858 +astro-ph/0611916 +astro-ph/0611930 +astro-ph/0611933 +astro-ph/0612032 +astro-ph/0612045 +astro-ph/0612058 +astro-ph/0612100 +astro-ph/0612101 +astro-ph/0612114 +astro-ph/0612135 +astro-ph/0612138 +astro-ph/0612154 +astro-ph/0612161 +astro-ph/0612164 +astro-ph/0612198 +astro-ph/0612201 +astro-ph/0612204 +astro-ph/0612206 +astro-ph/0612230 +astro-ph/0612232 +astro-ph/0612233 +astro-ph/0612248 +astro-ph/0612259 +astro-ph/0612265 +astro-ph/0612272 +astro-ph/0612292 +astro-ph/0612321 +astro-ph/0612355 +astro-ph/0612362 +astro-ph/0612364 +astro-ph/0612368 +astro-ph/0612389 +astro-ph/0612394 +astro-ph/0612412 +astro-ph/0612415 +astro-ph/0612437 +astro-ph/0612446 +astro-ph/0612471 +astro-ph/0612476 +astro-ph/0612480 +astro-ph/0612507 +astro-ph/0612508 +astro-ph/0612513 +astro-ph/0612520 +astro-ph/0612544 +astro-ph/0612551 +astro-ph/0612552 +astro-ph/0612558 +astro-ph/0612560 +astro-ph/0612575 +astro-ph/0612604 +astro-ph/0612621 +astro-ph/0612657 +astro-ph/0612663 +astro-ph/0612664 +astro-ph/0612674 +astro-ph/0612675 +astro-ph/0612680 +astro-ph/0612693 +astro-ph/0612698 +astro-ph/0612702 +astro-ph/0612703 +astro-ph/0612722 +astro-ph/0612748 +astro-ph/0612760 +astro-ph/0612766 +astro-ph/0612767 +astro-ph/0701002 +astro-ph/0701007 +astro-ph/0701010 +astro-ph/0701022 +astro-ph/0701040 +astro-ph/0701045 +astro-ph/0701048 +astro-ph/0701049 +astro-ph/0701075 +astro-ph/0701077 +astro-ph/0701079 +astro-ph/0701086 +astro-ph/0701088 +astro-ph/0701092 +astro-ph/0701111 +astro-ph/0701114 +astro-ph/0701115 +astro-ph/0701116 +astro-ph/0701119 +astro-ph/0701123 +astro-ph/0701124 +astro-ph/0701126 +astro-ph/0701146 +astro-ph/0701156 +astro-ph/0701159 +astro-ph/0701185 +astro-ph/0701225 +astro-ph/0701239 +astro-ph/0701248 +astro-ph/0701264 +astro-ph/0701266 +astro-ph/0701269 +astro-ph/0701274 +astro-ph/0701279 +astro-ph/0701283 +astro-ph/0701307 +astro-ph/0701311 +astro-ph/0701321 +astro-ph/0701334 +astro-ph/0701336 +astro-ph/0701346 +astro-ph/0701347 +astro-ph/0701348 +astro-ph/0701350 +astro-ph/0701355 +astro-ph/0701359 +astro-ph/0701365 +astro-ph/0701366 +astro-ph/0701381 +astro-ph/0701386 +astro-ph/0701390 +astro-ph/0701396 +astro-ph/0701398 +astro-ph/0701402 +astro-ph/0701408 +astro-ph/0701409 +astro-ph/0701417 +astro-ph/0701418 +astro-ph/0701424 +astro-ph/0701431 +astro-ph/0701439 +astro-ph/0701441 +astro-ph/0701443 +astro-ph/0701445 +astro-ph/0701458 +astro-ph/0701463 +astro-ph/0701466 +astro-ph/0701476 +astro-ph/0701484 +astro-ph/0701492 +astro-ph/0701500 +astro-ph/0701511 +astro-ph/0701514 +astro-ph/0701515 +astro-ph/0701516 +astro-ph/0701518 +astro-ph/0701528 +astro-ph/0701539 +astro-ph/0701548 +astro-ph/0701549 +astro-ph/0701557 +astro-ph/0701568 +astro-ph/0701569 +astro-ph/0701574 +astro-ph/0701580 +astro-ph/0701584 +astro-ph/0701587 +astro-ph/0701589 +astro-ph/0701595 +astro-ph/0701600 +astro-ph/0701604 +astro-ph/0701628 +astro-ph/0701632 +astro-ph/0701637 +astro-ph/0701651 +astro-ph/0701661 +astro-ph/0701698 +astro-ph/0701702 +astro-ph/0701703 +astro-ph/0701710 +astro-ph/0701712 +astro-ph/0701720 +astro-ph/0701735 +astro-ph/0701741 +astro-ph/0701755 +astro-ph/0701769 +astro-ph/0701775 +astro-ph/0701788 +astro-ph/0701792 +astro-ph/0701795 +astro-ph/0701800 +astro-ph/0701809 +astro-ph/0701816 +astro-ph/0701827 +astro-ph/0701865 +astro-ph/0702007 +astro-ph/0702030 +astro-ph/0702036 +astro-ph/0702037 +astro-ph/0702038 +astro-ph/0702042 +astro-ph/0702044 +astro-ph/0702049 +astro-ph/0702069 +astro-ph/0702094 +astro-ph/0702117 +astro-ph/0702131 +astro-ph/0702135 +astro-ph/0702165 +astro-ph/0702174 +astro-ph/0702177 +astro-ph/0702180 +astro-ph/0702184 +astro-ph/0702186 +astro-ph/0702191 +astro-ph/0702200 +astro-ph/0702205 +astro-ph/0702210 +astro-ph/0702213 +astro-ph/0702242 +astro-ph/0702250 +astro-ph/0702266 +astro-ph/0702271 +astro-ph/0702273 +astro-ph/0702279 +astro-ph/0702283 +astro-ph/0702302 +astro-ph/0702330 +astro-ph/0702347 +astro-ph/0702349 +astro-ph/0702358 +astro-ph/0702378 +astro-ph/0702380 +astro-ph/0702383 +astro-ph/0702391 +astro-ph/0702392 +astro-ph/0702396 +astro-ph/0702401 +astro-ph/0702409 +astro-ph/0702419 +astro-ph/0702425 +astro-ph/0702442 +astro-ph/0702453 +astro-ph/0702456 +astro-ph/0702463 +astro-ph/0702466 +astro-ph/0702470 +astro-ph/0702492 +astro-ph/0702498 +astro-ph/0702499 +astro-ph/0702500 +astro-ph/0702522 +astro-ph/0702526 +astro-ph/0702539 +astro-ph/0702545 +astro-ph/0702550 +astro-ph/0702552 +astro-ph/0702563 +astro-ph/0702582 +astro-ph/0702585 +astro-ph/0702598 +astro-ph/0702624 +astro-ph/0702625 +astro-ph/0702626 +astro-ph/0702630 +astro-ph/0702644 +astro-ph/0702662 +astro-ph/0702663 +astro-ph/0702674 +astro-ph/0702690 +astro-ph/0702697 +astro-ph/0702705 +astro-ph/0702716 +astro-ph/0702724 +astro-ph/0702740 +astro-ph/0702742 +astro-ph/0702744 +astro-ph/0702749 +astro-ph/0702750 +astro-ph/0703003 +astro-ph/0703004 +astro-ph/0703006 +astro-ph/0703008 +astro-ph/0703022 +astro-ph/0703028 +astro-ph/0703033 +astro-ph/0703047 +astro-ph/0703049 +astro-ph/0703051 +astro-ph/0703057 +astro-ph/0703061 +astro-ph/0703074 +astro-ph/0703080 +astro-ph/0703087 +astro-ph/0703088 +astro-ph/0703089 +astro-ph/0703091 +astro-ph/0703092 +astro-ph/0703093 +astro-ph/0703102 +astro-ph/0703103 +astro-ph/0703109 +astro-ph/0703152 +astro-ph/0703153 +astro-ph/0703158 +astro-ph/0703159 +astro-ph/0703160 +astro-ph/0703169 +astro-ph/0703175 +astro-ph/0703205 +astro-ph/0703206 +astro-ph/0703208 +astro-ph/0703209 +astro-ph/0703235 +astro-ph/0703237 +astro-ph/0703239 +astro-ph/0703244 +astro-ph/0703253 +astro-ph/0703255 +astro-ph/0703268 +astro-ph/0703269 +astro-ph/0703271 +astro-ph/0703278 +astro-ph/0703279 +astro-ph/0703283 +astro-ph/0703289 +astro-ph/0703294 +astro-ph/0703295 +astro-ph/0703321 +astro-ph/0703324 +astro-ph/0703330 +astro-ph/0703336 +astro-ph/0703343 +astro-ph/0703350 +astro-ph/0703351 +astro-ph/0703359 +astro-ph/0703372 +astro-ph/0703377 +astro-ph/0703384 +astro-ph/0703388 +astro-ph/0703401 +astro-ph/0703418 +astro-ph/0703421 +astro-ph/0703422 +astro-ph/0703439 +astro-ph/0703441 +astro-ph/0703453 +astro-ph/0703464 +astro-ph/0703468 +astro-ph/0703473 +astro-ph/0703477 +astro-ph/0703497 +astro-ph/0703498 +astro-ph/0703500 +astro-ph/0703501 +astro-ph/0703519 +astro-ph/0703527 +astro-ph/0703529 +astro-ph/0703536 +astro-ph/0703562 +astro-ph/0703564 +astro-ph/0703567 +astro-ph/0703569 +astro-ph/0703572 +astro-ph/0703600 +astro-ph/0703608 +astro-ph/0703616 +astro-ph/0703635 +astro-ph/0703648 +astro-ph/0703660 +astro-ph/0703661 +astro-ph/0703662 +astro-ph/0703665 +astro-ph/0703684 +astro-ph/0703688 +astro-ph/0703697 +astro-ph/0703699 +astro-ph/0703735 +astro-ph/0703747 +astro-ph/0703773 +astro-ph/0703777 +astro-ph/0703787 +astro-ph/0703807 +astro-ph/9309037 +astro-ph/9312031 +astro-ph/9607103 +astro-ph/9607141 +astro-ph/9610051 +astro-ph/9702169 +astro-ph/9704226 +astro-ph/9706227 +astro-ph/9707209 +astro-ph/9708172 +astro-ph/9712289 +astro-ph/9801064 +astro-ph/9801188 +astro-ph/9801222 +astro-ph/9802096 +astro-ph/9802102 +astro-ph/9802122 +astro-ph/9802343 +astro-ph/9804051 +astro-ph/9804319 +astro-ph/9805176 +astro-ph/9806060 +astro-ph/9806070 +astro-ph/9806160 +astro-ph/9809177 +astro-ph/9812117 +astro-ph/9903025 +astro-ph/9903207 +astro-ph/9906266 +astro-ph/9907007 +astro-ph/9907359 +astro-ph/9907388 +astro-ph/9908146 +astro-ph/9910034 +astro-ph/9910376 +astro-ph/9912008 +astro-ph/9912408 +cond-mat/0512056 Other Condensed Matter +gr-qc/0009071 +gr-qc/0608088 +hep-ph/0006338 Phenomenology +hep-ph/0007004 Phenomenology +hep-ph/0110167 Phenomenology +hep-ph/0306017 Phenomenology +hep-ph/9606411 Phenomenology +hep-ph/9611319 Phenomenology +hep-ph/9611378 Phenomenology +hep-ph/9706497 Phenomenology +hep-ph/9711294 Phenomenology +hep-ph/9906268 Phenomenology +hep-ph/9910442 Phenomenology +hep-th/0105177 Theory +hep-th/0112036 Theory +hep-th/0205238 Theory +hep-th/0401075 Theory +hep-th/0411094 Theory +hep-th/0509181 Theory +hep-th/0610202 Theory +hep-th/9212050 Theory +hep-th/9312169 Theory +hep-th/9412229 Theory +hep-th/9604044 Theory +hep-th/9607099 Theory +hep-th/9703026 Theory +hep-th/9805008 Theory +hep-th/9812091 Theory +hep-th/9812247 Theory +math-ph/0008038 +math-ph/0009010 +math/0010053 Algebraic Geometry +math/0211360 Algebraic Geometry +math/0410405 Algebraic Topology +math/0502434 Probability +math/0507080 Statistics Theory +math/0607649 Classical Analysis and ODEs +math/0612223 Combinatorics +math/0701648 Representation Theory +nlin/0102030 Exactly Solvable and Integrable Systems +nlin/0203036 Exactly Solvable and Integrable Systems +nlin/0503045 Chaotic Dynamics +nlin/0604072 Chaotic Dynamics +nucl-ex/0506020 +nucl-th/0311013 +physics/0003104 Accelerator Physics +physics/0111128 Accelerator Physics +quant-ph/0702173 +quant-ph/9808004 +0710.1423 Theory +0710.5833 Phenomenology +0711.2278 +0712.3022 +0712.4359 Complex Variables +0801.2264 +0802.1413 Phenomenology +0806.4309 Theory +0807.4405 +0810.1295 Group Theory +0811.3549 Strongly Correlated Electrons +0811.3632 Mesoscale and Nanoscale Physics +0812.3738 Classical Physics +0812.3798 Superconductivity +0904.3859 Materials Science +0906.4891 Group Theory +0906.5157 Mesoscale and Nanoscale Physics +0907.3521 Computation +0908.4119 Computation +0908.4487 +0909.1884 Statistics Theory +0909.3626 +0909.4507 Classical Physics +0910.0863 Group Theory +1001.0162 Algebraic Geometry +1001.3726 Symplectic Geometry +1002.0829 Representation Theory +1004.0631 Theory +1005.3905 Other Condensed Matter +1006.1153 Geometric Topology +1007.5324 Number Theory +1008.0317 Strongly Correlated Electrons +1009.2916 +1009.3606 Biomolecules +1009.5904 Representation Theory +1010.2778 Mesoscale and Nanoscale Physics +1010.3291 Space Physics +1010.4707 Chaotic Dynamics +1011.2047 Theory +1011.6078 Geometric Topology +1012.2969 Theory +1012.3813 Quantum Gases +1012.4496 Theory +1103.0146 Superconductivity +1103.1120 +1103.2084 Phenomenology +1103.4121 +1103.5523 Mesoscale and Nanoscale Physics +1104.0084 Exactly Solvable and Integrable Systems +1104.0761 General Finance +1104.3149 Phenomenology +1104.3565 +1104.5239 Phenomenology +1104.5560 Materials Science +1105.0532 +1105.1105 Superconductivity +1105.1767 Trading and Market Microstructure +1105.3734 Phenomenology +1105.4791 +1106.1293 Theory +1106.1763 General Physics +1106.2213 Functional Analysis +1106.2243 Phenomenology +1106.2538 +1106.3933 Quantum Gases +1106.6313 +1107.0006 Mesoscale and Nanoscale Physics +1107.0793 Atomic and Molecular Clusters +1107.1578 Materials Science +1107.2659 Theory +1107.3055 Representation Theory +1107.3173 +1107.4010 Instrumentation and Detectors +1107.5334 +1107.5878 +1108.1659 +1108.2895 Superconductivity +1108.3357 Quantum Algebra +1108.5010 Accelerator Physics +1108.5336 Differential Geometry +1108.5907 Strongly Correlated Electrons +1109.0392 Information Theory +1109.2250 Materials Science +1109.2489 Computers and Society +1109.2704 Differential Geometry +1109.2884 Statistics Theory +1109.2899 Solar and Stellar Astrophysics +1109.2915 Representation Theory +1109.2916 Superconductivity +1109.2918 Astrophysics of Galaxies +1109.2919 Physics Education +1109.2921 Materials Science +1109.2923 Molecular Networks +1109.2934 Combinatorics +1109.2937 Accelerator Physics +1109.2939 Combinatorics +1109.2944 Information Theory +1109.2954 Social and Information Networks +1109.2956 Atomic and Molecular Clusters +1109.2957 Information Theory +1109.2959 Materials Science +1109.2962 Operator Algebras +1109.2963 Data Analysis, Statistics and Probability +1109.2965 Geometric Topology +1109.2966 Commutative Algebra +1109.2968 Materials Science +1109.2969 Combinatorics +1109.2970 +1109.2971 Atomic and Molecular Clusters +1109.2973 Materials Science +1109.2975 Probability +1109.2976 Combinatorics +1109.2977 Atomic and Molecular Clusters +1109.2978 Combinatorics +1109.2979 Instrumentation and Detectors +1109.2987 Complex Variables +1109.2989 Complex Variables +1109.2990 Methodology +1109.2993 Information Theory +1109.2995 +1109.2997 Human-Computer Interaction +1109.2998 Data Structures and Algorithms +1109.3000 Analysis of PDEs +1109.3003 Rings and Algebras +1109.3009 +1109.3015 Symplectic Geometry +1109.3020 Analysis of PDEs +1109.3026 Complex Variables +1109.3028 Materials Science +1109.3030 Lattice +1109.3036 Solar and Stellar Astrophysics +1109.3038 Solar and Stellar Astrophysics +1109.3042 Statistics Theory +1109.3043 +1109.3044 Rings and Algebras +1109.3049 Superconductivity +1109.3051 Probability +1109.3053 Algebraic Geometry +1109.3055 Statistical Mechanics +1109.3061 Numerical Analysis +1109.3064 Materials Science +1109.3067 Statistical Mechanics +1109.3070 Systems and Control +1109.3074 Distributed, Parallel, and Cluster Computing +1109.3075 Operating Systems +1109.3076 Operating Systems +1109.3077 +1109.3081 Accelerator Physics +1109.3082 Phenomenology +1109.3086 Accelerator Physics +1109.3087 Superconductivity +1109.3088 Instrumentation and Detectors +1109.3090 Mesoscale and Nanoscale Physics +1109.3091 Probability +1109.3094 Artificial Intelligence +1109.3095 Information Theory +1109.3096 Astrophysics of Galaxies +1109.3102 Information Theory +1109.3104 Astrophysics of Galaxies +1109.3107 Number Theory +1109.3109 Materials Science +1109.3111 Fluid Dynamics +1109.3116 Earth and Planetary Astrophysics +1109.3117 Strongly Correlated Electrons +1109.3120 Commutative Algebra +1109.3125 Information Theory +1109.3126 Computer Vision and Pattern Recognition +1109.3129 Analysis of PDEs +1109.3132 Analysis of PDEs +1109.3137 Functional Analysis +1109.3138 Information Retrieval +1109.3141 Chemical Physics +1109.3145 Robotics +1109.3146 Computational Physics +1109.3148 Fluid Dynamics +1109.3150 Networking and Internet Architecture +1109.3152 Differential Geometry +1109.3155 Number Theory +1109.3158 +1109.3161 Differential Geometry +1109.3165 Geometric Topology +1109.3169 Differential Geometry +1109.3176 Representation Theory +1109.3178 Genomics +1109.3179 Functional Analysis +astro-ph/0112101 +astro-ph/0210224 +astro-ph/0511531 +astro-ph/0604561 +astro-ph/0702009 +gr-qc/0006018 +gr-qc/9412012 +hep-ph/0012270 Phenomenology +hep-th/0305083 Theory +hep-th/0305214 Theory +hep-th/0306286 Theory +hep-th/0310100 Theory +hep-th/0607054 Theory +hep-th/0611280 Theory +hep-th/9305171 Theory +math/0406251 Geometric Topology +math/0507332 Probability +math/0612478 Rings and Algebras +quant-ph/9506021 +quant-ph/9812008 +0706.2699 +0707.4643 Methodology +0710.4771 Statistical Mechanics +0802.3600 Statistical Mechanics +0803.1403 +0803.3516 +0809.2432 +0810.4230 Rings and Algebras +0811.1393 Soft Condensed Matter +0811.3490 Data Structures and Algorithms +0901.0546 Instrumentation and Methods for Astrophysics +0902.3019 +0903.1951 Statistics Theory +0903.3215 +0904.2805 +0904.3116 Computational Complexity +0904.4382 Representation Theory +0906.1977 Analysis of PDEs +0906.2648 Phenomenology +0907.0657 Number Theory +0907.3382 +0909.4763 Phenomenology +0910.0199 Differential Geometry +0910.3318 +0910.4574 Statistical Mechanics +0911.0429 Phenomenology +0911.3874 Phenomenology +0911.4938 Phenomenology +0912.1365 Optics +0912.3072 Theory +1003.2358 Algebraic Geometry +1003.3059 +1004.1548 Fluid Dynamics +1004.4276 Strongly Correlated Electrons +1004.5177 Materials Science +1005.0316 Combinatorics +1005.1928 Superconductivity +1005.3552 Theory +1005.4483 +1005.5184 Strongly Correlated Electrons +1005.5195 +1006.0779 Theory +1006.0931 Cosmology and Nongalactic Astrophysics +1006.0972 Cosmology and Nongalactic Astrophysics +1006.2019 Strongly Correlated Electrons +1006.3293 Phenomenology +1006.3567 +1006.3802 +1006.3927 +1006.4845 Cosmology and Nongalactic Astrophysics +1006.5543 +1007.0766 +1007.1524 +1007.2187 Superconductivity +1007.2732 Experiment +1007.3086 +1007.3705 Mesoscale and Nanoscale Physics +1007.4243 +1007.4273 Strongly Correlated Electrons +1007.4538 Strongly Correlated Electrons +1007.4807 Phenomenology +1008.0089 Phenomenology +1008.0617 Classical Analysis and ODEs +1008.1855 Phenomenology +1008.3239 Theory +1008.3785 Phenomenology +1008.4149 Phenomenology +1008.4315 Theory +1008.4471 Cosmology and Nongalactic Astrophysics +1008.4857 Lattice +1008.5187 +1009.0085 +1009.2741 Phenomenology +1009.3268 Theory +1009.3571 Phenomenology +1009.3893 Theory +1009.5222 Theory +1009.5925 Statistical Mechanics +1009.6173 Theory +1010.0578 Cosmology and Nongalactic Astrophysics +1010.0811 Representation Theory +1010.1103 Statistical Mechanics +1010.1244 Phenomenology +1010.3189 Theory +1010.3516 Theory +1010.4214 Phenomenology +1010.4518 Theory +1010.4635 Phenomenology +1010.5044 Theory +1010.5075 +1010.5174 Theory +1010.5204 Phenomenology +1010.5399 +1010.5508 Theory +1010.6125 +1010.6251 Phenomenology +1011.0504 Differential Geometry +1011.0540 Plasma Physics +1011.0863 Theory +1011.1668 Phenomenology +1011.2497 +1011.4915 Phenomenology +1011.5050 Statistical Mechanics +1011.5570 Theory +1011.5593 +1011.6185 Analysis of PDEs +1012.0067 Phenomenology +1012.0202 Theory +1012.0225 Mesoscale and Nanoscale Physics +1012.0589 Experiment +1012.1202 Disordered Systems and Neural Networks +1012.1588 Materials Science +1012.3438 Theory +1012.3849 Phenomenology +1012.4176 Optics +1012.4370 Logic +1012.5309 Phenomenology +1101.0219 +1101.1177 +1101.1376 +1101.2014 Phenomenology +1101.2019 Phenomenology +1101.2021 Theory +1101.2091 Theory +1101.2306 Theory +1101.2665 Phenomenology +1101.4192 Complex Variables +1101.5023 Theory +1101.5304 Phenomenology +1101.6080 Instrumentation and Methods for Astrophysics +1102.1304 +1102.1655 +1102.2090 +1102.3604 Combinatorics +1102.4354 Mesoscale and Nanoscale Physics +1102.4528 Computational Engineering, Finance, and Science +1102.4542 Functional Analysis +1102.4784 Logic +1102.5313 Data Analysis, Statistics and Probability +1103.0081 Phenomenology +1103.0296 Number Theory +1103.1117 Mesoscale and Nanoscale Physics +1103.1266 Phenomenology +1103.3281 Probability +1103.3378 Cryptography and Security +1103.3510 Information Theory +1103.3515 Distributed, Parallel, and Cluster Computing +1103.3529 Classical Physics +1103.3531 Biological Physics +1103.3532 Methodology +1103.3533 Classical Analysis and ODEs +1103.3536 Analysis of PDEs +1103.3537 Category Theory +1103.3545 Representation Theory +1103.3555 Commutative Algebra +1103.3567 Soft Condensed Matter +1103.3569 Software Engineering +1103.3570 Combinatorics +1103.3571 Differential Geometry +1103.3572 Rings and Algebras +1103.3576 Combinatorics +1103.3578 Number Theory +1103.3580 Information Theory +1103.3584 Group Theory +1103.3586 Cosmology and Nongalactic Astrophysics +1103.3587 +1103.3588 Combinatorics +1103.3590 Strongly Correlated Electrons +1103.3591 Algebraic Geometry +1103.3594 +1103.3595 Plasma Physics +1103.3597 Differential Geometry +1103.3604 Pattern Formation and Solitons +1103.3613 Chaotic Dynamics +1103.3623 Differential Geometry +1103.3632 Logic +1103.3634 Chaotic Dynamics +1103.3635 Combinatorics +1103.3637 Differential Geometry +1103.3638 Logic +1103.3662 Dynamical Systems +1103.3665 Optimization and Control +1103.3666 Materials Science +1103.3673 Information Theory +1103.3677 Analysis of PDEs +1103.3678 Phenomenology +1103.3687 Artificial Intelligence +1103.3691 Mesoscale and Nanoscale Physics +astro-ph/0702660 +cond-mat/0111263 Strongly Correlated Electrons +hep-ph/0306107 Phenomenology +hep-ph/0310064 Phenomenology +physics/0603237 General Physics +0708.4369 Probability +0803.3747 Strongly Correlated Electrons +0805.1404 Statistics Theory +0806.4476 +0901.0661 Probability +0901.3917 Phenomenology +0902.3556 Statistical Mechanics +0903.0817 Number Theory +0907.2843 Probability +0907.2850 Computational Complexity +0907.3731 Quantum Gases +0908.0433 Statistics Theory +0910.1064 Combinatorics +0910.2145 Machine Learning +0911.0616 Probability +0911.4816 Statistical Mechanics +0912.5111 Analysis of PDEs +1003.4751 Theory +1004.2232 Statistical Mechanics +1004.4319 Symplectic Geometry +1005.2620 High Energy Astrophysical Phenomena +1005.3379 +1005.5426 Materials Science +1006.1546 Functional Analysis +1006.2362 Chaotic Dynamics +1006.2633 Analysis of PDEs +1006.5667 +1007.2347 +1008.1090 Functional Analysis +1008.4080 Experiment +1009.1185 Metric Geometry +1009.1656 Phenomenology +1009.2025 +1009.4788 Theory +1010.2374 Superconductivity +1010.3109 +1011.0381 Strongly Correlated Electrons +1011.0581 Lattice +1011.1728 Lattice +1011.5637 Statistical Mechanics +1011.6347 Disordered Systems and Neural Networks +1012.0363 Statistics Theory +1012.2675 Materials Science +1012.3629 Theory +1012.4779 Atmospheric and Oceanic Physics +1012.5265 Algebraic Geometry +1101.0053 Representation Theory +1101.0390 Data Analysis, Statistics and Probability +1101.0515 Commutative Algebra +1101.1138 Differential Geometry +1101.1147 +1101.1309 Cosmology and Nongalactic Astrophysics +1101.1312 +1101.1317 Phenomenology +1101.1322 Cosmology and Nongalactic Astrophysics +1101.1323 Soft Condensed Matter +1101.1327 Statistical Mechanics +1101.1329 Theory +1101.1334 +1101.1343 Materials Science +1101.1358 Neurons and Cognition +1101.1365 Applications +1101.1369 Probability +1101.1373 Applications +1101.1377 Applications +1101.1385 Optimization and Control +1101.1398 Applications +1101.1400 Group Theory +1101.1402 Applications +1101.1405 Group Theory +1101.1407 Applications +1101.1415 Applications +1101.1419 Solar and Stellar Astrophysics +1101.1421 Applications +1101.1422 Solar and Stellar Astrophysics +1101.1425 Applications +1101.1428 Differential Geometry +1101.1431 Probability +1101.1433 +1101.1436 Analysis of PDEs +1101.1440 Classical Analysis and ODEs +1101.1441 Strongly Correlated Electrons +1101.1447 Analysis of PDEs +1101.1462 Analysis of PDEs +1101.1464 +1101.1465 Representation Theory +1101.1468 K-Theory and Homology +1101.1487 Soft Condensed Matter +1101.1488 Combinatorics +1101.1492 +1101.1494 Materials Science +1101.1495 Optimization and Control +1101.1496 Differential Geometry +1101.1499 Instrumentation and Methods for Astrophysics +1101.1505 Rings and Algebras +1101.1508 Combinatorics +math/0201030 Probability +math/0408060 Probability +math/0609748 Category Theory +quant-ph/0410061 +0708.0561 Theory +0710.2379 Differential Geometry +0710.5530 Theory +0710.5931 Probability +0711.2974 Algebraic Geometry +0712.1215 Theory +0801.1287 Theory +0804.4258 Probability +0805.3211 +0807.1604 Differential Geometry +0807.1844 Theory +0808.0133 Dynamical Systems +0809.4253 Theory +0810.3774 +0812.3138 Theory +0812.3397 Theory +0812.3771 +0902.0967 Algebraic Geometry +0903.0133 Theory +0904.4022 Superconductivity +0905.0151 +0906.4205 History and Overview +0907.2849 Combinatorics +0909.4756 Computer Science and Game Theory +0910.0793 Algebraic Geometry +0910.1613 Theory +0910.2210 Operator Algebras +0911.1970 Combinatorics +0911.2665 Theory +0911.4342 Theory +0912.0944 Theory +0912.1045 Data Structures and Algorithms +0912.1081 Phenomenology +0912.3730 Computational Complexity +1002.2056 +1003.3087 +1004.0321 Phenomenology +1004.0543 Differential Geometry +1004.5230 Discrete Mathematics +1005.3370 Phenomenology +1005.4284 Group Theory +1006.0040 Theory +1006.1978 +1006.2026 Combinatorics +1006.2125 Physics and Society +1006.2305 Lattice +1006.4106 +1006.5524 Theory +1006.5597 Phenomenology +1007.1260 Computational Complexity +1007.1665 Cosmology and Nongalactic Astrophysics +1007.1906 Statistics Theory +1007.2653 Theory +1007.4203 High Energy Astrophysical Phenomena +1007.4856 Theory +1008.1580 Phenomenology +1008.2560 Cosmology and Nongalactic Astrophysics +1008.2721 Rings and Algebras +1008.3212 Superconductivity +1009.0905 Phenomenology +1009.2251 Soft Condensed Matter +1009.2359 Cosmology and Nongalactic Astrophysics +1009.2921 Theory +1009.3009 Phenomenology +1009.3026 Theory +1009.3369 Strongly Correlated Electrons +1009.3632 Cosmology and Nongalactic Astrophysics +1009.3929 Phenomenology +1009.5112 +1009.5870 Phenomenology +1009.5998 +1010.0171 Phenomenology +1010.1192 +1010.1361 Theory +1010.1711 Theory +1010.1781 Phenomenology +1010.2453 Soft Condensed Matter +1010.2470 +1010.2758 Theory +1010.3326 Probability +1010.3980 High Energy Astrophysical Phenomena +1010.4274 Optics +1010.4300 Cosmology and Nongalactic Astrophysics +1010.4574 Operator Algebras +1010.5188 Theory +1010.5380 Theory +1010.6141 Materials Science +1011.0593 +1011.1229 Cosmology and Nongalactic Astrophysics +1011.1246 Phenomenology +1011.1472 Phenomenology +1011.1606 Representation Theory +1011.3151 Soft Condensed Matter +1011.3233 Lattice +1011.3528 Phenomenology +1011.3588 Information Theory +1011.4199 Neural and Evolutionary Computing +1011.4397 Experiment +1011.4743 Phenomenology +1011.4997 Cosmology and Nongalactic Astrophysics +1011.5803 Lattice +1012.2986 Cosmology and Nongalactic Astrophysics +1012.3798 Phenomenology +1012.4920 Statistical Mechanics +1012.4962 Data Structures and Algorithms +1101.1130 Phenomenology +1101.2290 Experiment +1101.2397 +1101.5885 Atomic Physics +1101.6006 Combinatorics +1102.0413 Soft Condensed Matter +1102.1454 Probability +1102.1713 General Finance +1102.1854 Theory +1102.3122 Phenomenology +1102.4275 Analysis of PDEs +1102.4308 Analysis of PDEs +1102.4346 Computational Complexity +1102.4372 Statistics Theory +1102.4663 Quantum Algebra +1102.4666 Probability +1102.4668 Computation +1102.4848 Solar and Stellar Astrophysics +1102.4853 Physics and Society +1102.4856 Combinatorics +1102.4860 Number Theory +1102.4861 Geometric Topology +1102.4862 Metric Geometry +1102.4865 Information Theory +1102.4869 Operator Algebras +1102.4871 Instrumentation and Methods for Astrophysics +1102.4873 Data Analysis, Statistics and Probability +1102.4874 Instrumentation and Methods for Astrophysics +1102.4883 Algebraic Topology +1102.4885 Discrete Mathematics +1102.4889 Symplectic Geometry +1102.4896 Strongly Correlated Electrons +1102.4899 Phenomenology +1102.4904 Molecular Networks +1102.4909 Other Condensed Matter +1102.4912 Functional Analysis +1102.4917 Phenomenology +1102.4921 Probability +1102.4922 Artificial Intelligence +1102.4924 Artificial Intelligence +1102.4933 Dynamical Systems +1102.4941 Solar and Stellar Astrophysics +1102.4944 Materials Science +1102.4946 Distributed, Parallel, and Cluster Computing +1102.4949 Instrumentation and Methods for Astrophysics +1102.4951 Discrete Mathematics +1102.4954 Optimization and Control +1102.4958 Optics +1102.4959 High Energy Astrophysical Phenomena +1102.4960 Other Condensed Matter +1102.4967 Information Theory +1102.4968 Disordered Systems and Neural Networks +1102.4972 Computational Geometry +1102.4973 Algebraic Geometry +1102.4981 Data Structures and Algorithms +1102.4983 Statistics Theory +1102.4985 Combinatorics +1102.4987 Complex Variables +1102.4988 Atomic Physics +1102.4999 +1102.5000 Materials Science +1102.5004 Instrumentation and Methods for Astrophysics +1102.5008 Statistics Theory +1102.5017 Materials Science +1102.5019 Statistics Theory +1102.5021 Methodology +1102.5027 Spectral Theory +1102.5030 Information Theory +1102.5043 Networking and Internet Architecture +1102.5047 Dynamical Systems +1102.5049 Probability +1102.5050 Differential Geometry +1102.5055 Functional Analysis +1102.5058 Phenomenology +1102.5062 Commutative Algebra +1102.5069 Differential Geometry +1102.5073 Solar and Stellar Astrophysics +1102.5074 Optics +1102.5075 Optimization and Control +1102.5081 Geometric Topology +1102.5086 Number Theory +gr-qc/0612166 +math/0610183 Logic +math/0611568 Commutative Algebra +0704.1910 +0708.3851 +0710.2720 Combinatorics +0802.1312 Computational Geometry +0804.4322 Probability +0806.0619 Theory +0806.2428 Representation Theory +0807.3695 Theory +0807.3728 Theory +0807.3807 Theory +0807.4678 Theory +0807.4703 Theory +0807.4714 Theory +0808.1793 Theory +0810.0012 Theory +0810.0188 Theory +0811.2155 Theory +0901.0068 General Physics +0901.1506 Combinatorics +0901.1573 Statistical Mechanics +0901.3119 Discrete Mathematics +0901.4019 Differential Geometry +0901.4189 Statistical Mechanics +0905.2533 Differential Geometry +0906.0669 Analysis of PDEs +0906.3278 +0906.5319 Combinatorics +0907.2373 Neurons and Cognition +0907.5134 Statistical Mechanics +0908.0416 Numerical Analysis +0908.1853 Algebraic Geometry +0909.2008 Instrumentation and Methods for Astrophysics +0909.2442 Combinatorics +0909.4936 +0911.4336 Functional Analysis +0912.2212 Combinatorics +0912.5322 Dynamical Systems +1001.1729 Group Theory +1003.2017 Quantum Algebra +1003.2060 Number Theory +1003.3119 Theory +1003.4639 Statistical Mechanics +1003.5581 Strongly Correlated Electrons +1005.3870 Geometric Topology +1005.4777 +1006.3096 +1006.4039 Learning +1007.1306 High Energy Astrophysical Phenomena +1007.1873 Statistical Mechanics +1007.1874 Statistical Mechanics +1007.2189 Quantum Gases +1007.3870 +1007.5326 Astrophysics of Galaxies +1008.0354 Theory +1008.0813 Theory +1008.2254 Phenomenology +1009.0331 Geometric Topology +1009.0640 +1009.1934 Complex Variables +1009.3743 Probability +1009.5642 Materials Science +1010.0219 Data Structures and Algorithms +1010.0420 Materials Science +1010.2108 Materials Science +1010.5521 +1011.4772 +1012.0906 +1012.2620 Differential Geometry +1012.3039 Physics and Society +1101.1764 Instrumentation and Methods for Astrophysics +1101.1765 Instrumentation and Methods for Astrophysics +1101.4534 Operator Algebras +1101.4591 +1101.5429 +1101.5629 Statistical Mechanics +1102.0610 Biological Physics +1102.0615 Biological Physics +1102.0683 Computational Finance +1102.0760 Number Theory +1102.0763 Cryptography and Security +1102.0796 Numerical Analysis +1102.0802 Earth and Planetary Astrophysics +1102.0805 Discrete Mathematics +1102.0808 Algebraic Topology +1102.0813 Operator Algebras +1102.0815 Instrumentation and Methods for Astrophysics +1102.0820 Geometric Topology +1102.0821 Geometric Topology +1102.0822 Statistics Theory +1102.0831 Artificial Intelligence +1102.0833 Earth and Planetary Astrophysics +1102.0835 +1102.0839 Dynamical Systems +1102.0843 Analysis of PDEs +1102.0846 Statistical Mechanics +1102.0847 Statistical Mechanics +1102.0848 Dynamical Systems +1102.0849 Materials Science +1102.0853 Solar and Stellar Astrophysics +1102.0858 Cryptography and Security +1102.0862 Representation Theory +1102.0863 Number Theory +1102.0864 General Physics +1102.0871 Mesoscale and Nanoscale Physics +1102.0873 Representation Theory +1102.0877 +1102.0884 Hardware Architecture +1102.0886 Experiment +1102.0892 Phenomenology +1102.0897 General Topology +1102.0899 Artificial Intelligence +1102.0908 Data Structures and Algorithms +1102.0909 General Physics +1102.0912 Materials Science +1102.0919 Numerical Analysis +1102.0921 Combinatorics +1102.0922 Mesoscale and Nanoscale Physics +1102.0925 Materials Science +1102.0930 Information Retrieval +1102.0931 +1102.0932 Operator Algebras +1102.0937 Dynamical Systems +1102.0941 Dynamical Systems +1102.0947 Formal Languages and Automata Theory +1102.0951 Programming Languages +1102.0952 Databases +1102.0958 Optimization and Control +1102.0959 Analysis of PDEs +1102.0964 Information Theory +1102.0965 Solar and Stellar Astrophysics +1102.0979 Category Theory +1102.0981 Category Theory +1102.0982 Functional Analysis +1102.0986 Classical Analysis and ODEs +1102.0988 Combinatorics +1102.0990 +1102.0998 Classical Analysis and ODEs +1102.1003 Data Structures and Algorithms +1102.1004 Analysis of PDEs +1102.1006 Computational Complexity +1102.1009 Earth and Planetary Astrophysics +astro-ph/9605185 +astro-ph/9710152 +cond-mat/9508027 Superconductivity +hep-ex/0302035 Experiment +hep-ph/0001129 Phenomenology +hep-ph/0003149 Phenomenology +hep-ph/0008177 Phenomenology +hep-ph/0104171 Phenomenology +hep-ph/0106002 Phenomenology +hep-ph/0112189 Phenomenology +hep-ph/9808388 Phenomenology +hep-ph/9811419 Phenomenology +hep-ph/9903552 Phenomenology +hep-ph/9909293 Phenomenology +math/0701874 Algebraic Geometry +0706.3818 Probability +0806.2610 Theory +0902.1858 Statistical Mechanics +0902.4454 Algebraic Geometry +0903.5193 General Physics +0904.3555 Algebraic Geometry +0907.4087 +0908.2461 Representation Theory +0909.5516 Analysis of PDEs +0911.0302 Superconductivity +1001.0269 Analysis of PDEs +1001.0505 Cellular Automata and Lattice Gases +1001.4775 Phenomenology +1004.1102 Physics and Society +1005.4179 Plasma Physics +1005.5705 Probability +1006.2060 Astrophysics of Galaxies +1006.3731 Instrumentation and Detectors +1008.3704 Mesoscale and Nanoscale Physics +1009.0981 Cosmology and Nongalactic Astrophysics +1009.1794 +1009.3171 Statistical Mechanics +1009.3979 +1009.4172 Neurons and Cognition +1009.4741 +1009.4899 Probability +1009.5208 Optimization and Control +1010.1764 Symbolic Computation +1010.6194 Combinatorics +1011.2242 Mesoscale and Nanoscale Physics +1011.3348 Theory +1011.4836 Number Theory +1011.5891 Theory +1012.2586 Probability +1012.2710 Probability +1012.4321 Quantum Gases +1012.4986 Statistical Mechanics +1012.5090 Functional Analysis +1012.5543 Strongly Correlated Electrons +1012.6005 Operator Algebras +1101.0216 Mesoscale and Nanoscale Physics +1101.2911 Complex Variables +1101.4770 Strongly Correlated Electrons +1101.5037 Statistical Mechanics +1101.5755 Information Theory +1102.0491 Optics +1102.3285 Formal Languages and Automata Theory +1102.3589 Strongly Correlated Electrons +1102.5553 Analysis of PDEs +1103.1297 Soft Condensed Matter +1103.3753 Databases +1103.3873 Group Theory +1103.5367 Algebraic Geometry +1104.4042 +1104.4332 Number Theory +1104.4594 Number Theory +1104.4624 Solar and Stellar Astrophysics +1104.4785 +1104.4797 Cosmology and Nongalactic Astrophysics +1104.4798 General Mathematics +1104.4813 Geophysics +1104.4826 Representation Theory +1104.4828 Algebraic Geometry +1104.4829 Classical Physics +1104.4838 +1104.4840 Algebraic Geometry +1104.4841 Plasma Physics +1104.4843 Cryptography and Security +1104.4847 Differential Geometry +1104.4851 Functional Analysis +1104.4856 Superconductivity +1104.4860 Logic +1104.4861 Analysis of PDEs +1104.4866 High Energy Astrophysical Phenomena +1104.4870 Representation Theory +1104.4871 Cosmology and Nongalactic Astrophysics +1104.4873 Computational Physics +1104.4877 Analysis of PDEs +1104.4878 +1104.4887 Physics and Society +1104.4896 Functional Analysis +1104.4899 Databases +1104.4904 Networking and Internet Architecture +1104.4910 Artificial Intelligence +1104.4912 Quantum Gases +1104.4913 Populations and Evolution +1104.4922 Strongly Correlated Electrons +1104.4924 Theory +1104.4925 Chemical Physics +1104.4927 Information Theory +1104.4935 Functional Analysis +1104.4936 Probability +1104.4938 Combinatorics +1104.4947 Optics +1104.4957 Number Theory +1104.4966 Artificial Intelligence +1104.4969 Probability +1104.4975 Mesoscale and Nanoscale Physics +1104.4976 Algebraic Geometry +1104.4979 Algebraic Geometry +1104.4984 Exactly Solvable and Integrable Systems +1104.4985 Accelerator Physics +1104.4991 Statistical Mechanics +1104.4993 Artificial Intelligence +1104.4998 Combinatorics +1104.5003 High Energy Astrophysical Phenomena +1104.5004 +1104.5008 Other Quantitative Biology +math/0301332 Differential Geometry +math/0409280 Functional Analysis +math/0509153 Functional Analysis +math/0510145 Algebraic Geometry +math/0609097 Functional Analysis +math/0611174 Functional Analysis +math/0701842 Probability +math/0703379 Functional Analysis +q-alg/9505028 Quantum Algebra +0708.1355 +0710.3078 Representation Theory +0711.2938 Commutative Algebra +0805.1646 Differential Geometry +0806.1088 Commutative Algebra +0808.0452 Theory +0810.4728 Group Theory +0901.1395 Rings and Algebras +0903.3552 Mesoscale and Nanoscale Physics +0903.4496 Probability +0904.2577 +0904.3681 Commutative Algebra +0905.2243 Chaotic Dynamics +0906.0383 Geometric Topology +0906.0604 Phenomenology +0906.0927 Differential Geometry +0906.3159 Functional Analysis +0906.4781 Strongly Correlated Electrons +0906.5252 Algebraic Geometry +0906.5303 Combinatorics +0907.1357 Logic in Computer Science +0907.3253 Commutative Algebra +0908.0046 Differential Geometry +0909.2104 Experiment +0909.2658 Cosmology and Nongalactic Astrophysics +0910.5898 Strongly Correlated Electrons +0911.2722 Biological Physics +0911.5370 Phenomenology +0912.1609 +0912.2312 Solar and Stellar Astrophysics +1001.0348 Number Theory +1002.0015 Rings and Algebras +1002.0120 Superconductivity +1002.1319 Optics +1002.2893 +1002.3853 Classical Analysis and ODEs +1002.3918 Metric Geometry +1003.0054 Networking and Internet Architecture +1003.4995 Probability +1004.1133 +1004.2220 Other Condensed Matter +1005.2749 Superconductivity +1005.3094 Geometric Topology +1006.3352 +1006.4191 Probability +1007.3550 Geometric Topology +1007.3852 Number Theory +1008.2138 Numerical Analysis +1008.3716 Numerical Analysis +1008.5348 Theory +1009.1828 Neurons and Cognition +1009.3466 Solar and Stellar Astrophysics +1009.5488 Materials Science +1010.1509 Mesoscale and Nanoscale Physics +1010.2848 +1010.3029 Commutative Algebra +1010.4713 Superconductivity +1010.4985 Combinatorics +1010.5358 +1010.5712 Statistical Mechanics +1011.0501 +1011.1487 +1011.1933 Discrete Mathematics +1011.2292 Numerical Analysis +1011.2385 Statistical Finance +1011.3347 Combinatorics +1011.5848 +1012.0226 +1012.0779 Mesoscale and Nanoscale Physics +1012.2637 Strongly Correlated Electrons +1012.4494 Strongly Correlated Electrons +1012.6000 Probability +1101.0174 Probability +1101.0206 Statistical Mechanics +1101.1364 +1101.2886 Atomic Physics +1101.3745 Combinatorics +1101.4239 Lattice +1101.4857 Probability +1101.5521 Materials Science +1102.0135 Combinatorics +1102.0426 Symplectic Geometry +1102.0658 Mesoscale and Nanoscale Physics +1102.2525 +1102.2940 Dynamical Systems +1102.3967 Pattern Formation and Solitons +1102.4407 +1102.4837 Classical Physics +1103.0186 Analysis of PDEs +1103.1173 Biological Physics +1103.1748 Phenomenology +1103.2055 Phenomenology +1103.3906 Functional Analysis +1103.4265 Instrumentation and Detectors +1103.4451 Number Theory +1104.0920 Combinatorics +1104.3775 +1104.4464 +1104.4614 +1104.5197 Rings and Algebras +1104.5406 Number Theory +1105.1412 Other Computer Science +1105.2095 Human-Computer Interaction +1105.3225 Dynamical Systems +1105.3299 Numerical Analysis +1105.3620 Discrete Mathematics +1105.3696 General Physics +1105.3698 Number Theory +1105.3948 +1105.3965 Phenomenology +1105.4169 +1105.4174 Discrete Mathematics +1105.4175 Computational Complexity +1105.4183 Computer Vision and Pattern Recognition +1105.4184 +1105.4192 Number Theory +1105.4193 High Energy Astrophysical Phenomena +1105.4206 Information Theory +1105.4214 Probability +1105.4218 Functional Analysis +1105.4222 Probability +1105.4223 Functional Analysis +1105.4224 Artificial Intelligence +1105.4225 Analysis of PDEs +1105.4237 Combinatorics +1105.4238 Combinatorics +1105.4246 Computational Geometry +1105.4250 Data Structures and Algorithms +1105.4251 Databases +1105.4252 Databases +1105.4253 Databases +1105.4254 Databases +1105.4255 Information Retrieval +1105.4256 Social and Information Networks +1105.4261 Networking and Internet Architecture +1105.4264 Superconductivity +1105.4267 Phenomenology +1105.4270 Materials Science +1105.4272 Learning +1105.4276 Social and Information Networks +1105.4279 Functional Analysis +1105.4287 Geometric Topology +1105.4289 Superconductivity +1105.4295 Analysis of PDEs +1105.4299 General Physics +1105.4301 Distributed, Parallel, and Cluster Computing +1105.4302 +1105.4306 Combinatorics +1105.4308 Materials Science +1105.4314 Combinatorics +1105.4317 Combinatorics +1105.4320 Combinatorics +1105.4321 Number Theory +1105.4323 Differential Geometry +1105.4324 Numerical Analysis +1105.4329 Accelerator Physics +1105.4332 Cellular Automata and Lattice Gases +1105.4337 Numerical Analysis +1105.4340 Information Theory +1105.4343 Analysis of PDEs +1105.4352 Experiment +1105.4353 Statistical Mechanics +1105.4360 Information Theory +1105.4361 Mesoscale and Nanoscale Physics +1105.4365 Quantum Gases +1105.4366 General Physics +1105.4372 Data Structures and Algorithms +1105.4378 Information Theory +1105.4379 Information Theory +1105.4380 Information Theory +1105.4389 Classical Analysis and ODEs +1105.4393 Dynamical Systems +1105.4400 Instrumentation and Detectors +1105.4408 Information Theory +1105.4416 +1105.4417 Complex Variables +1105.4419 Probability +1105.4424 Distributed, Parallel, and Cluster Computing +1105.4425 Biomolecules +1105.4429 Analysis of PDEs +1105.4431 Multimedia +1105.4435 Number Theory +1105.4438 Quantum Gases +1105.4441 +1105.4453 Combinatorics +1105.4457 Functional Analysis +1105.4458 Quantum Algebra +1105.4461 Cosmology and Nongalactic Astrophysics +1105.4463 General Topology +1105.4468 Software Engineering +1105.4476 Number Theory +1105.4477 Computer Vision and Pattern Recognition +1105.4478 Commutative Algebra +1105.4480 Computer Vision and Pattern Recognition +1105.4485 Probability +1105.4490 Data Structures and Algorithms +1105.4492 Logic +1105.4496 Commutative Algebra +1105.4499 +1105.4503 Phenomenology +1105.4504 Classical Analysis and ODEs +1105.4509 Plasma Physics +1105.4513 Number Theory +1105.4514 Cryptography and Security +1105.4517 Computers and Society +1105.4519 Methodology +1105.4520 Statistical Mechanics +1105.4522 Statistical Mechanics +1105.4525 Symbolic Computation +1105.4532 History and Philosophy of Physics +1105.4533 Probability +1105.4547 General Physics +1105.4558 Probability +1105.4562 Classical Analysis and ODEs +1105.4564 Chemical Physics +1105.4565 Analysis of PDEs +1105.4567 Computational Finance +1105.4568 Algebraic Geometry +1105.4576 Representation Theory +1105.4577 Algebraic Geometry +1105.4580 Complex Variables +1105.4582 Computation and Language +1105.4586 Instrumentation and Detectors +1105.4589 Classical Analysis and ODEs +1105.4592 Numerical Analysis +astro-ph/0206448 +astro-ph/0208139 +astro-ph/0403045 +astro-ph/0407184 +astro-ph/0407526 +astro-ph/0410450 +astro-ph/0411513 +astro-ph/0411514 +astro-ph/0502356 +astro-ph/0503715 +astro-ph/0506256 +astro-ph/0603824 +astro-ph/9903262 +cond-mat/9903048 Statistical Mechanics +cond-mat/9906455 Statistical Mechanics +cs/0410045 Numerical Analysis +gr-qc/9801102 +gr-qc/9912055 +hep-th/0210052 Theory +hep-th/0503195 Theory +hep-th/0604105 Theory +math/0506231 Differential Geometry +math/0612643 Classical Analysis and ODEs +0704.1933 Complex Variables +0706.4440 Other Computer Science +0712.0911 +0805.0266 Mesoscale and Nanoscale Physics +0905.0181 Chaotic Dynamics +0908.0379 +0909.2620 Theory +0909.2814 Discrete Mathematics +0910.4246 Probability +0912.3669 +1005.0015 Group Theory +1005.2351 +1005.5260 Probability +1007.3515 Artificial Intelligence +1007.3643 Geometric Topology +1007.4509 Probability +1008.0761 Materials Science +1009.4517 Data Structures and Algorithms +1010.1696 Probability +1010.2399 Algebraic Geometry +1010.2886 Chaotic Dynamics +1010.3049 Differential Geometry +1010.3711 Classical Analysis and ODEs +1011.0825 Populations and Evolution +1011.4771 Chaotic Dynamics +1011.6389 Strongly Correlated Electrons +1012.0671 Number Theory +1012.5848 Quantum Gases +1101.2352 Mesoscale and Nanoscale Physics +1101.4523 Performance +1102.1186 Portfolio Management +1102.2048 Category Theory +1103.0156 General Physics +1103.5574 Algebraic Geometry +1103.5917 Populations and Evolution +1104.0328 Materials Science +1104.1894 Phenomenology +1104.4272 Statistical Mechanics +1104.4862 Atomic Physics +1105.2230 Chaotic Dynamics +1105.6098 Theory +1106.0737 Theory +1106.1471 Complex Variables +1106.4981 Statistical Mechanics +1106.5585 Quantum Gases +1107.0830 High Energy Astrophysical Phenomena +1107.1874 Theory +1107.2369 Theory +1107.3285 Materials Science +1107.5025 Strongly Correlated Electrons +1107.5286 Statistical Mechanics +1107.5848 Quantum Gases +1107.6011 Cosmology and Nongalactic Astrophysics +1108.0145 Quantum Gases +1108.3707 Cosmology and Nongalactic Astrophysics +1108.3770 Materials Science +1108.4038 Strongly Correlated Electrons +1108.5922 +1109.2071 Superconductivity +1109.2544 Astrophysics of Galaxies +1109.3604 Phenomenology +1109.4974 Distributed, Parallel, and Cluster Computing +1109.5566 Phenomenology +1109.5898 Geometric Topology +1109.6327 Phenomenology +1110.0862 Statistical Mechanics +1110.4336 Representation Theory +1110.4873 Analysis of PDEs +1110.5202 Probability +1110.5396 Information Theory +1110.6410 Mesoscale and Nanoscale Physics +1111.0014 Astrophysics of Galaxies +1111.1623 Solar and Stellar Astrophysics +1111.1836 Spectral Theory +1111.3348 +1111.3918 Superconductivity +1111.3923 Superconductivity +1111.4394 Materials Science +1111.5286 Disordered Systems and Neural Networks +1111.5471 Lattice +1111.5695 +1111.6103 Accelerator Physics +1112.0144 Mesoscale and Nanoscale Physics +1112.0707 Operator Algebras +1112.0770 Statistical Finance +1112.1521 Pricing of Securities +1112.1612 Solar and Stellar Astrophysics +1112.1758 Differential Geometry +1112.1853 Solar and Stellar Astrophysics +1112.1948 Phenomenology +1112.1960 Functional Analysis +1112.1966 Learning +1112.1969 Metric Geometry +1112.1970 Group Theory +1112.1974 Algebraic Topology +1112.1976 Probability +1112.1980 Mesoscale and Nanoscale Physics +1112.1987 Mesoscale and Nanoscale Physics +1112.1989 Information Theory +1112.1990 Information Theory +1112.2002 Analysis of PDEs +1112.2005 Chemical Physics +1112.2009 Number Theory +1112.2010 +1112.2011 +1112.2012 Computational Complexity +1112.2013 Populations and Evolution +1112.2014 Populations and Evolution +1112.2015 Information Retrieval +1112.2018 Solar and Stellar Astrophysics +1112.2020 Databases +1112.2021 Distributed, Parallel, and Cluster Computing +1112.2022 +1112.2024 Networking and Internet Architecture +1112.2025 Distributed, Parallel, and Cluster Computing +1112.2026 Databases +1112.2027 Multimedia +1112.2028 Information Retrieval +1112.2031 Information Retrieval +1112.2033 Superconductivity +1112.2037 Earth and Planetary Astrophysics +1112.2038 Networking and Internet Architecture +1112.2039 Cryptography and Security +1112.2040 Multimedia +1112.2042 Multimedia +1112.2044 Multimedia +1112.2045 Mesoscale and Nanoscale Physics +1112.2046 Networking and Internet Architecture +1112.2048 +1112.2051 Lattice +1112.2056 Theory +1112.2059 General Finance +1112.2060 Dynamical Systems +1112.2061 Phenomenology +1112.2062 Mesoscale and Nanoscale Physics +1112.2063 Experiment +1112.2067 Social and Information Networks +1112.2068 Combinatorics +1112.2071 Information Retrieval +1112.2083 Differential Geometry +1112.2084 +1112.2087 Earth and Planetary Astrophysics +1112.2089 Phenomenology +1112.2090 Optimization and Control +1112.2092 Mesoscale and Nanoscale Physics +1112.2094 Theory +1112.2095 Artificial Intelligence +1112.2096 Spectral Theory +1112.2099 Differential Geometry +1112.2100 Number Theory +1112.2104 Algebraic Topology +1112.2107 Phenomenology +1112.2109 Networking and Internet Architecture +1112.2115 Combinatorics +1112.2118 Discrete Mathematics +1112.2120 Combinatorics +1112.2128 Cryptography and Security +1112.2130 Optimization and Control +1112.2131 Algebraic Geometry +1112.2137 Databases +1112.2138 Theory +1112.2139 +1112.2140 Cosmology and Nongalactic Astrophysics +1112.2143 Data Structures and Algorithms +1112.2148 Operator Algebras +1112.2149 Artificial Intelligence +1112.2152 Phenomenology +1112.2156 +1112.2159 Materials Science +1112.2160 Computational Physics +1112.2168 General Finance +1112.2171 Phenomenology +1112.2173 Medical Physics +1112.2176 Accelerator Physics +1112.2178 Phenomenology +1112.2181 Experiment +1112.2183 Neural and Evolutionary Computing +1112.2185 Mesoscale and Nanoscale Physics +1112.2193 Lattice +1112.2196 Optics +1112.2197 Mesoscale and Nanoscale Physics +1112.2202 +cond-mat/0608476 Materials Science +math-ph/9906016 +0711.0886 General Physics +0711.2618 Distributed, Parallel, and Cluster Computing +0712.2877 +0801.3707 Representation Theory +0807.2789 Mesoscale and Nanoscale Physics +0808.1282 Theory +0809.1810 Data Structures and Algorithms +0810.3740 Quantum Algebra +0811.0143 Optics +0812.1749 Differential Geometry +0902.1116 Instrumentation and Detectors +0903.1212 Dynamical Systems +0905.2637 Distributed, Parallel, and Cluster Computing +0907.0109 Analysis of PDEs +0908.3761 Theory +0909.1366 Analysis of PDEs +0909.5364 +0909.5413 Mathematical Software +0912.1108 Cosmology and Nongalactic Astrophysics +0912.2860 Optics +1002.0198 Analysis of PDEs +1002.0974 Logic +1002.2668 General Physics +1002.3765 Differential Geometry +1002.4457 Analysis of PDEs +1003.0947 Analysis of PDEs +1003.3904 Combinatorics +1006.0409 Classical Analysis and ODEs +1006.1970 Theory +1006.2039 Theory +1006.3967 Functional Analysis +1007.0171 Dynamical Systems +1007.4591 Computational Engineering, Finance, and Science +1009.1610 Number Theory +1009.2393 Materials Science +1009.2980 Solar and Stellar Astrophysics +1009.3240 Learning +1009.3457 Mathematical Software +1010.4153 Mesoscale and Nanoscale Physics +1010.4270 Strongly Correlated Electrons +1010.5180 +1010.5348 Probability +1011.2442 Dynamical Systems +1011.2449 Phenomenology +1012.0624 Phenomenology +1012.0744 Phenomenology +1012.1204 Phenomenology +1012.1280 Theory +1012.1312 Theory +1012.1576 Optics +1012.2489 Probability +1012.3052 +1012.4164 +1101.1556 Populations and Evolution +1101.1886 +1101.2858 +1101.3028 Strongly Correlated Electrons +1101.3555 Cosmology and Nongalactic Astrophysics +1101.4427 Analysis of PDEs +1101.4722 +1102.2882 Superconductivity +1102.5734 Superconductivity +1103.0049 Materials Science +1103.1180 +1103.2352 Soft Condensed Matter +1103.2435 +1103.4690 Distributed, Parallel, and Cluster Computing +1103.4868 Computer Science and Game Theory +1103.5038 Strongly Correlated Electrons +1103.5610 Probability +1103.5861 Number Theory +1103.5909 Theory +1104.0463 Analysis of PDEs +1104.0953 +1104.3852 Theory +1104.4921 Lattice +1104.4939 Mesoscale and Nanoscale Physics +1105.0510 Multiagent Systems +1105.0560 Strongly Correlated Electrons +1105.1765 Probability +1105.2513 +1105.2936 Optics +1105.4335 Molecular Networks +1105.4713 Representation Theory +1105.5293 Quantum Gases +1106.0865 Strongly Correlated Electrons +1106.1120 Dynamical Systems +1106.2953 Computational Physics +1106.3666 +1106.4331 Mesoscale and Nanoscale Physics +1106.4494 +1106.4708 Strongly Correlated Electrons +1106.5197 +1107.0753 Mesoscale and Nanoscale Physics +1107.1143 Cosmology and Nongalactic Astrophysics +1107.1237 Cosmology and Nongalactic Astrophysics +1107.1898 Theory +1107.1899 Complex Variables +1107.2962 Superconductivity +1107.4273 Biological Physics +1107.4726 Functional Analysis +1107.5110 Differential Geometry +1107.5621 Geometric Topology +1107.5800 Strongly Correlated Electrons +1108.0172 Classical Analysis and ODEs +1108.0537 +1108.0612 General Physics +1108.3855 +1108.4319 +1108.5875 Phenomenology +1108.6130 Classical Analysis and ODEs +1109.0573 Information Theory +1109.0603 Mesoscale and Nanoscale Physics +1109.2120 Theory +1109.2556 Neurons and Cognition +1109.2938 Statistics Theory +1109.3609 Materials Science +1109.3669 Atomic Physics +1109.3827 Information Theory +1109.3882 Analysis of PDEs +1109.4085 Molecular Networks +1109.4156 Discrete Mathematics +1109.4168 Applications +1109.4173 Information Theory +1109.4180 Methodology +1109.4181 Cosmology and Nongalactic Astrophysics +1109.4184 Optimization and Control +1109.4185 Phenomenology +1109.4190 Number Theory +1109.4191 Materials Science +1109.4194 Analysis of PDEs +1109.4195 Mesoscale and Nanoscale Physics +1109.4197 +1109.4201 Social and Information Networks +1109.4202 Statistical Mechanics +1109.4210 Category Theory +1109.4213 Phenomenology +1109.4217 Mesoscale and Nanoscale Physics +1109.4218 Analysis of PDEs +1109.4221 Robotics +1109.4222 Differential Geometry +1109.4224 Functional Analysis +1109.4230 Operator Algebras +1109.4231 Differential Geometry +1109.4232 Biomolecules +1109.4233 Mesoscale and Nanoscale Physics +1109.4234 History and Philosophy of Physics +1109.4237 Solar and Stellar Astrophysics +1109.4240 Programming Languages +1109.4241 Differential Geometry +1109.4242 Number Theory +1109.4243 Optimization and Control +1109.4247 Cosmology and Nongalactic Astrophysics +1109.4249 Group Theory +1109.4255 Astrophysics of Galaxies +1109.4257 Information Retrieval +1109.4262 Molecular Networks +1109.4263 Mesoscale and Nanoscale Physics +1109.4264 Theory +1109.4267 Disordered Systems and Neural Networks +1109.4268 Soft Condensed Matter +1109.4273 Solar and Stellar Astrophysics +1109.4275 Statistical Mechanics +1109.4276 Experiment +1109.4279 Lattice +1109.4282 Differential Geometry +1109.4284 Chemical Physics +1109.4285 Solar and Stellar Astrophysics +1109.4287 Soft Condensed Matter +1109.4295 +1109.4297 Phenomenology +1109.4298 History and Overview +1109.4304 Mesoscale and Nanoscale Physics +1109.4311 Probability +1109.4316 General Physics +1109.4319 Classical Analysis and ODEs +1109.4322 Operator Algebras +1109.4323 Symbolic Computation +1109.4324 Analysis of PDEs +1109.4326 High Energy Astrophysical Phenomena +1109.4328 +1109.4334 Solar and Stellar Astrophysics +1109.4341 +1109.4345 Probability +1109.4347 Combinatorics +1109.4350 Information Theory +1109.4351 Software Engineering +1109.4352 Analysis of PDEs +1109.4353 Logic in Computer Science +1109.4357 Logic in Computer Science +1109.4358 +1109.4365 Experiment +1109.4367 Dynamical Systems +1109.4368 +1109.4370 Phenomenology +1109.4372 Statistical Finance +1109.4375 +1109.4378 Number Theory +1109.4381 Number Theory +1109.4383 General Finance +1109.4385 Theory +1109.4394 Solar and Stellar Astrophysics +1109.4399 General Finance +1109.4400 +1109.4406 Superconductivity +cond-mat/0209538 Materials Science +hep-ph/9401329 Phenomenology +math/0408413 Differential Geometry +math/0408414 Metric Geometry +math/0502481 Symplectic Geometry +math/0508123 Representation Theory +nucl-th/0003070 +nucl-th/9901100 +quant-ph/0302190 +0706.2166 Number Theory +0706.2169 Number Theory +0707.1505 Number Theory +0801.3045 Number Theory +0805.2700 +0807.1911 Algebraic Topology +0902.4164 Phenomenology +0903.5442 Representation Theory +0905.4370 Algebraic Geometry +0906.4311 Operator Algebras +0907.0884 Data Structures and Algorithms +0908.3835 Number Theory +0908.3895 Number Theory +0910.3343 +0910.4498 Number Theory +1003.0361 Statistical Mechanics +1003.3513 Statistical Mechanics +1004.4558 Algebraic Topology +1005.1538 Optics +1005.3012 Theory +1006.2578 +1006.3217 Rings and Algebras +1006.4091 Statistical Mechanics +1007.1949 Superconductivity +1007.4906 Superconductivity +1008.0723 Number Theory +1008.1699 Differential Geometry +1008.3556 Mesoscale and Nanoscale Physics +1009.0040 Quantum Gases +1009.1954 Phenomenology +1010.2478 Populations and Evolution +1010.2479 Populations and Evolution +1010.2905 Materials Science +1010.6289 Phenomenology +1011.4381 Computation +1012.2036 Quantum Gases +1012.3103 +1012.3145 Complex Variables +1012.4155 Algebraic Geometry +1012.5322 Number Theory +1012.5345 Soft Condensed Matter +1012.5637 Superconductivity +1012.5869 Theory +1101.1303 Mesoscale and Nanoscale Physics +1101.2758 Statistical Mechanics +1102.0200 Numerical Analysis +1102.0738 Statistical Mechanics +1102.1305 Materials Science +1102.2367 Materials Science +1102.3482 Optics +1102.3546 Analysis of PDEs +1102.5311 Mesoscale and Nanoscale Physics +1102.5576 Mesoscale and Nanoscale Physics +1103.1350 Strongly Correlated Electrons +1103.5869 Materials Science +1103.6108 Materials Science +1104.1415 Algebraic Geometry +1104.2323 Astrophysics of Galaxies +1104.5336 Classical Analysis and ODEs +1105.2021 +1105.2122 General Finance +1105.4448 Numerical Analysis +1105.4764 Optimization and Control +1105.5224 +1105.5256 Computation +1105.5282 Cryptography and Security +1105.5322 +1105.5390 +1105.5394 Phenomenology +1105.5398 Phenomenology +1105.5404 Soft Condensed Matter +1105.5406 History and Overview +1105.5409 Instrumentation and Detectors +1105.5410 Analysis of PDEs +1105.5412 Superconductivity +1105.5413 Combinatorics +1105.5414 Superconductivity +1105.5420 Combinatorics +1105.5422 Group Theory +1105.5429 Materials Science +1105.5438 Information Theory +1105.5439 Trading and Market Microstructure +1105.5440 Artificial Intelligence +1105.5441 Artificial Intelligence +1105.5442 Artificial Intelligence +1105.5443 Artificial Intelligence +1105.5444 Artificial Intelligence +1105.5446 Artificial Intelligence +1105.5447 Artificial Intelligence +1105.5448 Artificial Intelligence +1105.5449 Artificial Intelligence +1105.5450 Artificial Intelligence +1105.5451 Artificial Intelligence +1105.5452 Artificial Intelligence +1105.5453 Artificial Intelligence +1105.5454 Artificial Intelligence +1105.5455 Artificial Intelligence +1105.5457 Artificial Intelligence +1105.5458 Artificial Intelligence +1105.5459 Artificial Intelligence +1105.5460 Artificial Intelligence +1105.5461 Artificial Intelligence +1105.5462 Artificial Intelligence +1105.5463 Artificial Intelligence +1105.5464 Learning +1105.5465 Artificial Intelligence +1105.5466 Artificial Intelligence +1105.5471 Functional Analysis +1105.5475 Rings and Algebras +1105.5477 Number Theory +1105.5481 Computational Physics +1105.5488 Social and Information Networks +1105.5490 Combinatorics +1105.5501 Mesoscale and Nanoscale Physics +1105.5502 Algebraic Topology +1105.5503 General Finance +1105.5505 Dynamical Systems +1105.5507 Commutative Algebra +1105.5508 Geometric Topology +1105.5509 Commutative Algebra +1105.5510 +1105.5513 Phenomenology +1105.5514 Materials Science +1105.5515 Networking and Internet Architecture +1105.5518 Networking and Internet Architecture +1105.5519 Differential Geometry +1105.5521 Discrete Mathematics +1105.5522 Combinatorics +1105.5540 Neural and Evolutionary Computing +1105.5541 Number Theory +1105.5549 Chemical Physics +1105.5552 Numerical Analysis +1105.5558 Mesoscale and Nanoscale Physics +1105.5561 Phenomenology +1105.5563 Networking and Internet Architecture +1105.5565 Methodology +1105.5570 Analysis of PDEs +1105.5581 Populations and Evolution +1105.5582 Lattice +1105.5587 Experiment +1105.5589 Differential Geometry +1105.5591 Rings and Algebras +1105.5592 Learning +1105.5593 Networking and Internet Architecture +1105.5596 Cosmology and Nongalactic Astrophysics +1105.5600 Complex Variables +1105.5603 Analysis of PDEs +1105.5607 Analysis of PDEs +1105.5608 Phenomenology +1105.5614 Mesoscale and Nanoscale Physics +1105.5619 Statistical Mechanics +1105.5620 Classical Analysis and ODEs +1105.5623 Networking and Internet Architecture +1105.5627 Classical Analysis and ODEs +1105.5637 Algebraic Geometry +math/0508259 Number Theory +math/9609212 Dynamical Systems +0804.0038 Number Theory +0812.5090 General Mathematics +0903.1127 High Energy Astrophysical Phenomena +0903.4844 Subcellular Processes +0904.2928 +0905.2876 Number Theory +0905.3239 Algebraic Geometry +0910.1401 Computational Physics +0910.1929 +0911.0278 Algebraic Geometry +0911.4871 Biomolecules +0912.4403 Mesoscale and Nanoscale Physics +1002.4630 Mesoscale and Nanoscale Physics +1005.1111 Optics +1005.5120 Number Theory +1005.5206 Optics +1007.2641 Theory +1009.1047 +1009.3524 Differential Geometry +1009.3709 Optics +1009.4272 Differential Geometry +1009.6086 +1011.2454 Combinatorics +1011.4709 Optics +1011.5688 Algebraic Geometry +1101.5626 Cosmology and Nongalactic Astrophysics +1101.6057 +1102.2556 Dynamical Systems +1102.4774 Cosmology and Nongalactic Astrophysics +1102.5335 Combinatorics +1103.0982 Phenomenology +1103.2461 +1103.3979 Classical Analysis and ODEs +1103.5572 Strongly Correlated Electrons +1104.3359 +1104.5188 Dynamical Systems +1104.5686 Differential Geometry +1105.1252 Quantum Gases +1105.2733 Statistical Mechanics +1105.2901 Phenomenology +1105.3604 Theory +1105.4147 Strongly Correlated Electrons +1105.5171 Phenomenology +1105.6062 Commutative Algebra +1106.0564 Earth and Planetary Astrophysics +1106.0798 Optics +1106.1682 Phenomenology +1106.2949 Representation Theory +1106.3420 Mesoscale and Nanoscale Physics +1106.3891 Superconductivity +1106.4477 Representation Theory +1106.5389 Probability +1106.5921 Probability +1107.0962 Superconductivity +1107.4239 Algebraic Geometry +1107.4531 Phenomenology +1107.5253 Methodology +1108.0409 +1108.0978 Phenomenology +1108.1390 Strongly Correlated Electrons +1108.1480 +1108.2605 Optics +1108.4501 Computational Complexity +1108.4842 +1109.0102 Mesoscale and Nanoscale Physics +1109.1261 Phenomenology +1109.1852 Physics and Society +1109.4083 Phenomenology +1109.4467 Programming Languages +1109.5149 Algebraic Geometry +1109.6062 Mesoscale and Nanoscale Physics +1109.6215 Theory +1109.6624 Phenomenology +1109.6792 Quantum Gases +1110.0241 Phenomenology +1110.1322 Number Theory +1110.1459 Number Theory +1110.1489 +1110.1720 +1110.2944 Astrophysics of Galaxies +1110.4555 Solar and Stellar Astrophysics +1110.4768 Cosmology and Nongalactic Astrophysics +1110.5403 Phenomenology +1110.6725 +1110.6921 Cosmology and Nongalactic Astrophysics +1111.2929 Strongly Correlated Electrons +1111.3710 Cosmology and Nongalactic Astrophysics +1111.4548 Materials Science +1111.4681 Lattice +1111.4703 Optics +1111.6446 +1111.6556 Operator Algebras +1111.7288 Theory +1112.0514 Methodology +1112.0859 +1112.2209 +1112.3061 Phenomenology +1112.3118 Instrumentation and Detectors +1112.3197 Algebraic Geometry +1112.3601 Algebraic Geometry +1112.3733 Mesoscale and Nanoscale Physics +1112.3955 +1112.4015 Number Theory +1112.4122 Classical Analysis and ODEs +1112.4123 Probability +1112.4124 Analysis of PDEs +1112.4125 Analysis of PDEs +1112.4129 Analysis of PDEs +1112.4176 Exactly Solvable and Integrable Systems +1112.4278 Analysis of PDEs +1112.4293 Atmospheric and Oceanic Physics +1112.4482 Instrumentation and Methods for Astrophysics +1112.4499 History and Overview +1112.4504 Analysis of PDEs +1112.4507 Adaptation and Self-Organizing Systems +1112.4522 +1112.4523 Computational Geometry +1112.4525 Analysis of PDEs +1112.4534 Statistical Finance +1112.4536 Computational Complexity +1112.4539 Instrumentation and Methods for Astrophysics +1112.4543 Theory +1112.4547 Number Theory +1112.4548 Number Theory +1112.4549 Operator Algebras +1112.4550 Earth and Planetary Astrophysics +1112.4551 +1112.4554 Statistics Theory +1112.4555 Group Theory +1112.4556 Chaotic Dynamics +1112.4557 Probability +1112.4559 Group Theory +1112.4561 Representation Theory +1112.4569 Exactly Solvable and Integrable Systems +1112.4572 Computer Science and Game Theory +1112.4574 Dynamical Systems +1112.4575 Differential Geometry +1112.4577 Representation Theory +1112.4578 Data Structures and Algorithms +1112.4579 +1112.4584 Operator Algebras +1112.4587 +1112.4594 Quantum Gases +1112.4601 Algebraic Geometry +1112.4603 Algebraic Geometry +1112.4606 Phenomenology +1112.4607 Learning +1112.4611 Theory +1112.4612 Theory +1112.4617 Analysis of PDEs +1112.4622 +1112.4623 Dynamical Systems +1112.4634 Algebraic Geometry +1112.4635 Numerical Analysis +1112.4637 Group Theory +1112.4638 Materials Science +1112.4640 Cosmology and Nongalactic Astrophysics +1112.4643 +1112.4649 Numerical Analysis +1112.4650 Strongly Correlated Electrons +1112.4656 Mesoscale and Nanoscale Physics +1112.4659 High Energy Astrophysical Phenomena +1112.4665 Analysis of PDEs +1112.4672 +1112.4673 Analysis of PDEs +1112.4677 Quantitative Methods +1112.4679 Solar and Stellar Astrophysics +1112.4684 Dynamical Systems +1112.4685 +1112.4686 Dynamical Systems +1112.4687 Dynamical Systems +1112.4690 +1112.4692 Phenomenology +1112.4697 Classical Physics +1112.4703 Symbolic Computation +1112.4706 Dynamical Systems +1112.4708 Social and Information Networks +1112.4709 Representation Theory +1112.4711 Chaotic Dynamics +1112.4718 Probability +1112.4727 Number Theory +1112.4730 Mesoscale and Nanoscale Physics +1112.4731 Mesoscale and Nanoscale Physics +1112.4741 Metric Geometry +1112.4742 Networking and Internet Architecture +1112.4744 Chaotic Dynamics +1112.4748 Experiment +1112.4749 Phenomenology +1112.4759 Mesoscale and Nanoscale Physics +1112.4763 Mesoscale and Nanoscale Physics +1112.4765 Functional Analysis +1112.4766 Mesoscale and Nanoscale Physics +1112.4773 Networking and Internet Architecture +1112.4775 Networking and Internet Architecture +1112.4780 Dynamical Systems +1112.4781 Analysis of PDEs +1112.4783 Theory +1112.4790 Solar and Stellar Astrophysics +1112.4791 Computational Geometry +1112.4805 Solar and Stellar Astrophysics +1112.4808 Biomolecules +1112.4811 Information Theory +1112.4823 Instrumentation and Detectors +1112.4825 Instrumentation and Detectors +1112.4826 Physics and Society +1112.4827 Cosmology and Nongalactic Astrophysics +0708.3003 Statistical Mechanics +0801.1157 +0803.3225 Other Condensed Matter +0805.3599 +0810.3402 Theory +0811.0346 +0811.0406 General Mathematics +0811.0420 General Mathematics +0902.0187 +0902.0529 Algebraic Geometry +0903.5295 Rings and Algebras +0906.4520 Cosmology and Nongalactic Astrophysics +0906.5047 Theory +0908.1490 Information Theory +0908.3976 Theory +0909.0105 Information Theory +0909.0212 Theory +0909.4700 Quantum Gases +0911.1209 +0911.4980 Phenomenology +0912.4027 Theory +0912.4139 Phenomenology +1001.1152 Accelerator Physics +1001.2438 Optimization and Control +1001.2598 Strongly Correlated Electrons +1001.2634 Optimization and Control +1001.3867 +1002.1903 Algebraic Geometry +1002.2142 Algebraic Geometry +1002.4024 +1003.2370 Group Theory +1003.5068 Performance +1004.1573 Materials Science +1004.1729 Discrete Mathematics +1004.1818 +1004.1993 Phenomenology +1004.2261 Phenomenology +1004.2885 Cosmology and Nongalactic Astrophysics +1004.3532 +1004.4590 Information Theory +1005.0255 +1005.0546 Other Condensed Matter +1005.4380 Logic +1005.5025 Algebraic Geometry +1006.0921 +1006.1471 +1006.2987 Theory +1006.3403 Computational Physics +1006.3441 Theory +1006.4173 Data Structures and Algorithms +1006.5197 +1007.0516 Experiment +1007.3683 +1008.0767 +1008.1091 Subcellular Processes +1008.1520 +1008.2215 Theory +1008.2756 Phenomenology +1008.4403 Cosmology and Nongalactic Astrophysics +1009.0505 Experiment +1009.0701 +1009.1203 Combinatorics +1009.1322 Chemical Physics +1009.1415 Mesoscale and Nanoscale Physics +1009.1863 Probability +1009.2089 Theory +1009.3385 Medical Physics +1009.3458 +1009.4640 Statistical Mechanics +1010.0038 Phenomenology +1010.0227 +1010.1986 +1010.3173 Theory +1010.3237 Disordered Systems and Neural Networks +1010.3638 Theory +1010.3725 Lattice +1010.3772 +1010.4359 +1010.5013 Theory +1011.1624 Theory +1011.1707 Theory +1011.2505 Astrophysics of Galaxies +1011.2692 Phenomenology +1011.3010 High Energy Astrophysical Phenomena +1011.3820 Phenomenology +1011.3966 Cosmology and Nongalactic Astrophysics +1011.4144 Theory +1011.5917 Phenomenology +1011.6132 Cosmology and Nongalactic Astrophysics +1011.6380 Phenomenology +1011.6452 Phenomenology +1012.1231 Combinatorics +1012.1808 Populations and Evolution +1012.1937 Adaptation and Self-Organizing Systems +1012.2825 Data Structures and Algorithms +1012.2882 Theory +1012.3419 Phenomenology +1012.4868 Phenomenology +1012.5034 +1012.5132 Phenomenology +1012.5368 +1012.5675 +1101.0464 Commutative Algebra +1101.4485 Materials Science +1101.4699 +1101.4923 Superconductivity +1101.5058 Physics and Society +1101.5235 +1102.1376 Geometric Topology +1102.1588 Instrumentation and Methods for Astrophysics +1102.2212 Algebraic Geometry +1102.2793 Number Theory +1102.3052 History and Overview +1102.3813 Data Structures and Algorithms +1102.4017 Analysis of PDEs +1102.4173 Superconductivity +1102.4262 Optics +1102.4312 General Mathematics +1102.4338 Solar and Stellar Astrophysics +1102.4341 Solar and Stellar Astrophysics +1102.4351 Statistics Theory +1102.4353 Group Theory +1102.4355 Rings and Algebras +1102.4359 Statistics Theory +1102.4366 Geometric Topology +1102.4368 Statistics Theory +1102.4371 Statistics Theory +1102.4373 Complex Variables +1102.4377 Dynamical Systems +1102.4381 Metric Geometry +1102.4382 Mesoscale and Nanoscale Physics +1102.4386 Mesoscale and Nanoscale Physics +1102.4389 Representation Theory +1102.4390 Instrumentation and Methods for Astrophysics +1102.4394 Analysis of PDEs +1102.4396 Number Theory +1102.4397 Number Theory +1102.4398 Analysis of PDEs +1102.4401 Computational Physics +1102.4408 Solar and Stellar Astrophysics +1102.4409 Combinatorics +1102.4413 Operator Algebras +1102.4419 Astrophysics of Galaxies +1102.4421 Group Theory +1102.4424 Differential Geometry +1102.4425 Representation Theory +1102.4427 Group Theory +1102.4429 Databases +1102.4431 Number Theory +1102.4438 Earth and Planetary Astrophysics +1102.4439 Computer Science and Game Theory +1102.4442 Learning +1102.4443 Dynamical Systems +1102.4449 +1102.4450 Disordered Systems and Neural Networks +1102.4457 Differential Geometry +1102.4460 High Energy Astrophysical Phenomena +1102.4461 Lattice +1102.4462 Adaptation and Self-Organizing Systems +1102.4469 Networking and Internet Architecture +1102.4472 Strongly Correlated Electrons +1102.4473 Materials Science +1102.4478 Differential Geometry +1102.4481 +1102.4482 Superconductivity +1102.4483 +1102.4485 Cosmology and Nongalactic Astrophysics +1102.4486 +1102.4487 +1102.4488 +1102.4489 Risk Management +1102.4494 Operator Algebras +1102.4498 Data Structures and Algorithms +1102.4499 Chemical Physics +1102.4504 Materials Science +1102.4510 Optics +1102.4514 Astrophysics of Galaxies +1102.4522 Other Computer Science +1102.4523 Data Structures and Algorithms +1102.4524 Group Theory +1102.4525 Earth and Planetary Astrophysics +1102.4527 Numerical Analysis +1102.4533 Probability +1102.4536 General Physics +1102.4549 Earth and Planetary Astrophysics +1102.4553 Functional Analysis +1102.4556 Analysis of PDEs +1102.4557 Number Theory +1102.4563 Robotics +1102.4569 Phenomenology +1102.4573 Information Theory +1102.4578 +1102.4587 Probability +1102.4590 Soft Condensed Matter +1102.4599 Social and Information Networks +1102.4600 Number Theory +1102.4601 Probability +1102.4605 General Physics +1102.4607 Solar and Stellar Astrophysics +astro-ph/0311015 +cond-mat/0007381 +cond-mat/0108004 Soft Condensed Matter +cond-mat/0202369 Soft Condensed Matter +cond-mat/0607323 Superconductivity +cond-mat/0610224 Soft Condensed Matter +cond-mat/0701647 Soft Condensed Matter +cond-mat/9910487 +gr-qc/0508011 +math/0310100 Geometric Topology +math/0608103 Geometric Topology +1002.0107 +1102.2889 Phenomenology +1104.3937 High Energy Astrophysical Phenomena +0711.1761 Category Theory +0712.0724 Category Theory +0803.4466 Logic +0804.2663 Category Theory +0806.1261 Differential Geometry +0806.1833 Pattern Formation and Solitons +0808.2122 Logic +0810.4450 Category Theory +0812.0298 Logic +0901.1368 Analysis of PDEs +0903.3339 Superconductivity +0904.4432 Superconductivity +0907.2635 Mesoscale and Nanoscale Physics +0907.4670 Differential Geometry +0909.3218 Quantum Gases +0910.1607 Superconductivity +0910.2207 +0912.2652 Algebraic Geometry +0912.3393 Quantum Gases +1001.3881 Quantum Gases +1002.1662 Combinatorics +1002.3448 Statistics Theory +1003.4723 Quantum Gases +1004.1795 Classical Analysis and ODEs +1005.2455 Phenomenology +1006.0632 Quantum Algebra +1006.1125 Dynamical Systems +1006.5953 Data Analysis, Statistics and Probability +1007.0227 Quantum Algebra +1007.1983 Rings and Algebras +1007.3399 Optimization and Control +1007.4638 Logic +1008.0213 Data Structures and Algorithms +1008.2280 Differential Geometry +1009.1331 Phenomenology +1009.2196 Superconductivity +1009.3314 Phenomenology +1009.3682 Logic in Computer Science +1010.2134 Cosmology and Nongalactic Astrophysics +1010.3127 Differential Geometry +1010.4799 Mesoscale and Nanoscale Physics +1011.0299 Probability +1011.1043 Social and Information Networks +1011.4896 Optics +1011.5425 Data Structures and Algorithms +1012.0643 Mesoscale and Nanoscale Physics +1012.1412 Pricing of Securities +1012.1442 Number Theory +1012.5593 Dynamical Systems +1012.5977 Populations and Evolution +1101.0370 High Energy Astrophysical Phenomena +1101.0556 Mesoscale and Nanoscale Physics +1101.3983 Quantitative Methods +1102.1449 Cosmology and Nongalactic Astrophysics +1102.2301 Strongly Correlated Electrons +1103.0021 Mesoscale and Nanoscale Physics +1103.3985 Soft Condensed Matter +1103.5066 Quantum Gases +1103.5723 Complex Variables +1104.1520 +1104.1872 Optimization and Control +1104.2044 Cosmology and Nongalactic Astrophysics +1104.3331 Lattice +1104.4276 Soft Condensed Matter +1104.4518 Distributed, Parallel, and Cluster Computing +1104.5053 Superconductivity +1104.5673 Cosmology and Nongalactic Astrophysics +1105.0457 Combinatorics +1105.5132 +1106.0326 Quantum Gases +1106.0355 Mesoscale and Nanoscale Physics +1106.0601 Phenomenology +1106.2171 Phenomenology +1106.2442 Methodology +1106.2602 Complex Variables +1106.2612 Mesoscale and Nanoscale Physics +1106.4385 Phenomenology +1106.4605 Statistical Mechanics +1106.4839 Phenomenology +1106.5099 K-Theory and Homology +1106.5366 Soft Condensed Matter +1106.5722 Mesoscale and Nanoscale Physics +1107.0537 Combinatorics +1107.0908 Solar and Stellar Astrophysics +1107.2428 Quantum Gases +1107.2621 Commutative Algebra +1107.4466 Data Structures and Algorithms +1107.4647 +1108.0993 Optics +1108.1128 Phenomenology +1108.1402 Optics +1108.1411 Superconductivity +1108.1529 Optics +1108.1601 Experiment +1108.2457 Cosmology and Nongalactic Astrophysics +1108.2884 Chemical Physics +1108.3827 Phenomenology +1108.3897 Solar and Stellar Astrophysics +1108.5441 +1108.6115 Strongly Correlated Electrons +1109.1557 Earth and Planetary Astrophysics +1109.1712 Physics and Society +1109.1853 +1109.3505 Instrumentation and Detectors +1109.5425 Differential Geometry +1109.5427 Differential Geometry +1110.0157 +1110.2365 Dynamical Systems +1110.2509 Instrumentation and Methods for Astrophysics +1110.2543 Accelerator Physics +1110.2614 High Energy Astrophysical Phenomena +1110.2624 +1110.2811 Optimization and Control +1110.3042 Accelerator Physics +1110.3059 +1110.3062 Information Theory +1110.3063 Differential Geometry +1110.3064 Probability +1110.3066 Earth and Planetary Astrophysics +1110.3068 Logic +1110.3070 Experiment +1110.3075 Superconductivity +1110.3076 Machine Learning +1110.3077 Combinatorics +1110.3079 General Topology +1110.3082 Algebraic Geometry +1110.3083 High Energy Astrophysical Phenomena +1110.3084 Fluid Dynamics +1110.3085 Fluid Dynamics +1110.3088 Computation and Language +1110.3089 Computation and Language +1110.3091 Computation and Language +1110.3092 Fluid Dynamics +1110.3094 Computation and Language +1110.3096 Fluid Dynamics +1110.3100 Data Structures and Algorithms +1110.3101 Analysis of PDEs +1110.3102 Functional Analysis +1110.3108 Exactly Solvable and Integrable Systems +1110.3111 Cosmology and Nongalactic Astrophysics +1110.3112 +1110.3116 Algebraic Topology +1110.3117 Algebraic Geometry +1110.3122 Materials Science +1110.3123 Fluid Dynamics +1110.3124 Fluid Dynamics +1110.3125 Chemical Physics +1110.3126 Human-Computer Interaction +1110.3130 Superconductivity +1110.3131 Dynamical Systems +1110.3132 Classical Analysis and ODEs +1110.3134 Geometric Topology +1110.3142 Solar and Stellar Astrophysics +1110.3154 High Energy Astrophysical Phenomena +1110.3158 Databases +1110.3166 Astrophysics of Galaxies +1110.3168 Dynamical Systems +1110.3169 Instrumentation and Methods for Astrophysics +1110.3171 +1110.3177 Information Theory +1110.3179 +1110.3181 +1110.3182 Commutative Algebra +1110.3185 Symbolic Computation +1110.3188 Analysis of PDEs +1110.3190 +1110.3192 Dynamical Systems +1110.3194 Computer Vision and Pattern Recognition +1110.3195 Information Theory +1110.3197 Information Theory +1110.3198 Combinatorics +1110.3199 Medical Physics +1110.3206 Differential Geometry +1110.3210 Phenomenology +1110.3211 Computational Complexity +1110.3215 Experiment +1110.3217 Group Theory +1110.3219 Dynamical Systems +1110.3222 Functional Analysis +1110.3227 Functional Analysis +1110.3232 Instrumentation and Detectors +1110.3236 Functional Analysis +1110.3237 Optimization and Control +1110.3241 Accelerator Physics +1110.3243 Accelerator Physics +1110.3244 Solar and Stellar Astrophysics +1110.3249 Experiment +1110.3254 Probability +1110.3257 Applications +1110.3258 Theory +1110.3260 Optics +1110.3264 Information Theory +1110.3265 Probability +1110.3270 Analysis of PDEs +1110.3273 Fluid Dynamics +1110.3276 Fluid Dynamics +1110.3284 Phenomenology +1110.3286 Group Theory +1110.3299 Phenomenology +1110.3301 Analysis of PDEs +1110.3307 General Physics +1110.3311 Strongly Correlated Electrons +1110.3313 Experiment +astro-ph/0702189 +cond-mat/9804288 +0704.3780 Neural and Evolutionary Computing +0705.0134 +0706.3661 Statistical Mechanics +0709.4241 Combinatorics +0805.4587 Statistical Mechanics +0806.2238 Combinatorics +0807.2058 Differential Geometry +0810.0783 +0810.1477 Biological Physics +0901.2360 Probability +0901.4085 High Energy Astrophysical Phenomena +0901.4501 +0902.0240 Methodology +0903.0230 Functional Analysis +0904.2052 Methodology +0905.3872 Symplectic Geometry +0906.3568 Theory +0907.3096 Quantum Gases +0908.4493 Analysis of PDEs +0909.2245 Theory +0910.0311 Analysis of PDEs +0910.4297 Cosmology and Nongalactic Astrophysics +0911.1802 Number Theory +0911.3250 General Topology +1001.1639 Number Theory +1002.1621 +1003.2163 Statistical Mechanics +1004.2080 Rings and Algebras +1004.2667 General Physics +1005.1994 Analysis of PDEs +1005.2862 Risk Management +1005.2885 Cosmology and Nongalactic Astrophysics +1005.3554 +1005.3558 +1008.0219 Analysis of PDEs +1008.1447 Superconductivity +1008.3654 Statistics Theory +1008.3992 High Energy Astrophysical Phenomena +1008.4840 Soft Condensed Matter +1008.5001 Soft Condensed Matter +1009.0579 Computational Geometry +1009.2065 Optimization and Control +1009.2138 Analysis of PDEs +1009.4004 Computer Vision and Pattern Recognition +1009.5438 Quantum Gases +1010.0794 Soft Condensed Matter +1011.3180 Combinatorics +1011.4533 +1011.5765 General Physics +1012.2323 Numerical Analysis +1101.2308 +1101.4606 Algebraic Geometry +1102.0718 +1102.1929 Physics and Society +1102.4434 Methodology +1102.4609 Chaotic Dynamics +1103.1787 Methodology +1103.2533 Complex Variables +1103.2537 Complex Variables +1103.2633 Other Condensed Matter +1103.4940 Theory +1104.0560 Algebraic Geometry +1104.2137 Probability +1104.2217 Computer Science and Game Theory +1105.0744 +1105.0782 +1105.1071 Cryptography and Security +1105.1747 Spectral Theory +1105.2751 Logic in Computer Science +1105.5107 Theory +1105.5716 Statistical Mechanics +1106.1354 Algebraic Geometry +1106.1397 High Energy Astrophysical Phenomena +1106.2600 Superconductivity +1106.3801 Superconductivity +1106.3807 +1106.4335 Plasma Physics +1106.4486 Phenomenology +1106.4523 Phenomenology +1106.5072 +1106.5741 Number Theory +1107.0518 Representation Theory +1107.0719 Cosmology and Nongalactic Astrophysics +1107.2697 +1107.3103 Strongly Correlated Electrons +1107.3235 +1107.3322 +1107.4202 Mesoscale and Nanoscale Physics +1107.4667 Computer Vision and Pattern Recognition +1107.4977 Cosmology and Nongalactic Astrophysics +1107.5467 +1108.1339 Mesoscale and Nanoscale Physics +1108.3339 Phenomenology +1108.3741 Astrophysics of Galaxies +1108.4009 Fluid Dynamics +1108.4283 Other Condensed Matter +1108.5642 Quantum Gases +1108.5676 Phenomenology +1108.5996 Representation Theory +1108.6207 +1109.2060 +1109.2895 Cosmology and Nongalactic Astrophysics +1109.3271 Disordered Systems and Neural Networks +1109.4355 Analysis of PDEs +1109.4940 Theory +1109.5271 +1109.5636 Networking and Internet Architecture +1110.1453 Phenomenology +1110.1478 +1110.1589 Exactly Solvable and Integrable Systems +1110.2037 Phenomenology +1110.2056 Logic +1110.2064 Phenomenology +1110.2348 Functional Analysis +1110.4006 Biological Physics +1110.5030 Dynamical Systems +1110.5302 Experiment +1110.5672 Representation Theory +1111.0660 Theory +1111.1318 Theory +1111.1829 Popular Physics +1111.3602 Cryptography and Security +1111.3711 Networking and Internet Architecture +1111.4464 Fluid Dynamics +1111.4602 Optics +1111.5517 Strongly Correlated Electrons +1111.6963 Functional Analysis +1112.0889 Phenomenology +1112.1401 Complex Variables +1112.1809 Geometric Topology +1112.2406 Portfolio Management +1112.2772 Instrumentation and Methods for Astrophysics +1112.2773 Dynamical Systems +1112.2946 Experiment +1112.3126 Cosmology and Nongalactic Astrophysics +1112.3167 Combinatorics +1112.3269 Phenomenology +1112.3484 Phenomenology +1112.3485 Statistical Mechanics +1112.3620 Data Analysis, Statistics and Probability +1112.3927 +1112.3962 Theory +1112.3970 Cosmology and Nongalactic Astrophysics +1112.3971 Accelerator Physics +1112.3977 Differential Geometry +1112.3980 Analysis of PDEs +1112.3982 Probability +1112.3983 Analysis of PDEs +1112.3984 Theory +1112.3988 Molecular Networks +1112.3991 Populations and Evolution +1112.3999 Solar and Stellar Astrophysics +1112.4005 Optimization and Control +1112.4006 Computer Science and Game Theory +1112.4007 Portfolio Management +1112.4010 +1112.4012 Instrumentation and Methods for Astrophysics +1112.4014 Symbolic Computation +1112.4016 Software Engineering +1112.4017 Software Engineering +1112.4018 Cryptography and Security +1112.4019 Digital Libraries +1112.4020 Learning +1112.4021 Instrumentation and Methods for Astrophysics +1112.4023 Lattice +1112.4026 Combinatorics +1112.4029 Analysis of PDEs +1112.4031 Databases +1112.4033 Cryptography and Security +1112.4037 Computers and Society +1112.4043 Analysis of PDEs +1112.4044 Superconductivity +1112.4049 Software Engineering +1112.4057 Artificial Intelligence +1112.4059 Neurons and Cognition +1112.4060 Computer Vision and Pattern Recognition +1112.4063 Quantum Algebra +1112.4064 Computer Vision and Pattern Recognition +1112.4065 Dynamical Systems +1112.4072 Algebraic Geometry +1112.4073 Theory +1112.4075 Dynamical Systems +1112.4076 Information Theory +1112.4080 Exactly Solvable and Integrable Systems +1112.4087 Combinatorics +1112.4089 High Energy Astrophysical Phenomena +1112.4094 Phenomenology +1112.4099 Other Computer Science +1112.4103 Lattice +1112.4114 +1112.4118 Methodology +1112.4120 Theory +1112.4128 Category Theory +1112.4130 Probability +1112.4132 Analysis of PDEs +1112.4135 Computer Vision and Pattern Recognition +1112.4136 Theory +1112.4139 Instrumentation and Methods for Astrophysics +1112.4140 Plasma Physics +1112.4143 Dynamical Systems +1112.4148 Complex Variables +1112.4149 Information Theory +1112.4155 Experiment +1112.4156 Analysis of PDEs +1112.4163 Lattice +1112.4165 Instrumentation and Methods for Astrophysics +1112.4166 General Topology +1112.4167 Information Theory +1112.4174 Combinatorics +1112.4177 Differential Geometry +1112.4181 Differential Geometry +1112.4182 K-Theory and Homology +1112.4186 Cosmology and Nongalactic Astrophysics +1112.4188 High Energy Astrophysical Phenomena +1112.4190 Human-Computer Interaction +1112.4191 Human-Computer Interaction +1112.4198 +1112.4200 +1112.4201 Theory +1112.4206 Classical Analysis and ODEs +1112.4208 Probability +1112.4212 Theory +1112.4214 Networking and Internet Architecture +1112.4216 Analysis of PDEs +1112.4219 Analysis of PDEs +1112.4226 Number Theory +1112.4235 Lattice +1112.4237 Cryptography and Security +1112.4238 Numerical Analysis +1112.4241 Classical Analysis and ODEs +1112.4243 Learning +1112.4247 +1112.4253 Information Theory +1112.4259 Geophysics +1112.4264 Computer Science and Game Theory +1112.4267 Number Theory +1112.4274 Lattice +1112.4276 Dynamical Systems +1112.4277 Category Theory +1112.4283 +1112.4288 Differential Geometry +1112.4295 Computational Complexity +1112.4297 Analysis of PDEs +1112.4302 High Energy Astrophysical Phenomena +1112.4303 Distributed, Parallel, and Cluster Computing +1112.4313 Data Analysis, Statistics and Probability +1112.4317 Algebraic Geometry +1112.4321 Methodology +1112.4322 Instrumentation and Detectors +1112.4329 Solar and Stellar Astrophysics +1112.4330 Representation Theory +1112.4336 Lattice +1112.4339 Networking and Internet Architecture +1112.4344 Learning +1112.4351 Probability +1112.4355 Experiment +1112.4359 Differential Geometry +1112.4368 Phenomenology +1112.4370 Logic +1112.4372 Earth and Planetary Astrophysics +1112.4377 Dynamical Systems +1112.4383 General Physics +1112.4386 Cosmology and Nongalactic Astrophysics +1112.4392 Lattice +1112.4394 Machine Learning +1112.4396 Discrete Mathematics +1112.4398 Analysis of PDEs +1112.4401 Analysis of PDEs +1112.4410 Data Analysis, Statistics and Probability +1112.4413 Statistics Theory +1112.4417 Commutative Algebra +1112.4424 Logic +1112.4425 Superconductivity +1112.4428 Logic in Computer Science +1112.4435 Solar and Stellar Astrophysics +1112.4438 Genomics +1112.4440 Fluid Dynamics +1112.4445 Differential Geometry +1112.4449 +1112.4454 Neural and Evolutionary Computing +1112.4455 Mesoscale and Nanoscale Physics +1112.4456 Social and Information Networks +1112.4458 Optimization and Control +1112.4463 Optimization and Control +cond-mat/0105193 Statistical Mechanics +cond-mat/0312326 Statistical Mechanics +cond-mat/0608385 Superconductivity +cond-mat/0610820 Statistical Mechanics +cond-mat/0612516 Statistical Mechanics +hep-ph/0205256 Phenomenology +math-ph/0507040 +math/0209321 Quantum Algebra +math/0503011 Combinatorics +math/0506630 Combinatorics +math/0510614 Combinatorics +math/0602169 Rings and Algebras +math/0610752 Geometric Topology +math/0612140 Statistics Theory +q-bio/0609039 Populations and Evolution +q-bio/0610014 Populations and Evolution +quant-ph/0703148 +0706.0103 Logic in Computer Science +0709.1308 Logic in Computer Science +0711.1442 +0712.1345 Logic in Computer Science +0802.1805 Classical Analysis and ODEs +0805.3521 Logic in Computer Science +0810.0324 Algebraic Geometry +0812.3680 Symplectic Geometry +0904.2408 Atomic Physics +0904.3367 Optimization and Control +0905.0806 History and Philosophy of Physics +0905.3903 Phenomenology +0907.2770 Applications +0907.2827 Geometric Topology +0908.1518 Statistical Mechanics +0908.4278 Theory +0909.0985 Analysis of PDEs +0909.0986 Analysis of PDEs +0911.1478 +0912.0676 Algebraic Geometry +0912.1212 Algebraic Topology +1001.4475 Learning +1002.3748 +1002.3800 Analysis of PDEs +1003.5167 Quantum Gases +1003.5356 Statistical Finance +1003.5739 Combinatorics +1004.0739 Logic in Computer Science +1004.2320 +1005.0285 Solar and Stellar Astrophysics +1005.3650 Theory +1005.4215 Plasma Physics +1005.5194 Combinatorics +1005.5555 Classical Analysis and ODEs +1006.4977 Number Theory +1007.1229 Discrete Mathematics +1007.1898 Atomic Physics +1007.5152 Phenomenology +1007.5226 Classical Analysis and ODEs +1007.5320 Strongly Correlated Electrons +1008.4414 Instrumentation and Methods for Astrophysics +1009.0611 Superconductivity +1009.2542 Phenomenology +1009.3024 Phenomenology +1009.4117 K-Theory and Homology +1010.0190 Materials Science +1010.0738 Statistical Mechanics +1010.4119 Strongly Correlated Electrons +1010.5820 Materials Science +1011.0746 +1011.1031 Logic +1011.3178 Logic +1011.4501 Number Theory +1011.5155 Number Theory +1011.6328 +1011.6655 Strongly Correlated Electrons +1012.4394 Mesoscale and Nanoscale Physics +1012.5980 Superconductivity +1101.0833 Dynamical Systems +1101.3732 Instrumentation and Methods for Astrophysics +1101.4993 +1102.0778 Quantum Gases +1102.2043 Number Theory +1102.2788 Strongly Correlated Electrons +1102.2912 Solar and Stellar Astrophysics +1102.4545 Superconductivity +1102.5438 Combinatorics +1103.0918 Differential Geometry +1103.1677 Statistical Mechanics +1103.4826 +1104.0237 Classical Analysis and ODEs +1104.1902 Commutative Algebra +1104.2051 Theory +1104.2270 Differential Geometry +1104.2368 Networking and Internet Architecture +1104.2479 Data Analysis, Statistics and Probability +1104.2605 Theory +1104.2611 Statistical Mechanics +1104.2615 +1104.2616 Quantitative Methods +1104.2626 Operator Algebras +1104.2634 History and Philosophy of Physics +1104.2636 +1104.2638 Classical Physics +1104.2639 Functional Analysis +1104.2640 Representation Theory +1104.2642 Geometric Topology +1104.2644 Neural and Evolutionary Computing +1104.2647 Differential Geometry +1104.2648 High Energy Astrophysical Phenomena +1104.2666 Chemical Physics +1104.2671 Functional Analysis +1104.2676 Applications +1104.2678 Probability +1104.2681 Programming Languages +1104.2684 Analysis of PDEs +1104.2686 Functional Analysis +1104.2693 Materials Science +1104.2697 Analysis of PDEs +1104.2699 History and Overview +1104.2702 Combinatorics +1104.2703 Applications +1104.2706 Combinatorics +1104.2709 +1104.2710 +1104.2717 Applications +1104.2719 Applications +1104.2720 Optics +1104.2721 Databases +1104.2724 Commutative Algebra +1104.2732 Distributed, Parallel, and Cluster Computing +1104.2741 Geophysics +1104.2745 Computer Vision and Pattern Recognition +1104.2748 Applications +1104.2751 Computer Vision and Pattern Recognition +1104.2753 Commutative Algebra +1104.2756 Databases +1104.2759 +1104.2766 Differential Geometry +1104.2776 Category Theory +1104.2779 Probability +1104.2784 Information Theory +1104.2793 General Topology +1104.2799 Data Structures and Algorithms +1104.2806 Functional Analysis +1104.2807 Quantum Algebra +1104.2815 Cosmology and Nongalactic Astrophysics +1104.2816 Computational Complexity +1104.2817 +1104.2819 +1104.2825 Logic in Computer Science +1104.2826 Methodology +1104.2829 Adaptation and Self-Organizing Systems +1104.2859 Classical Analysis and ODEs +1104.2860 Quantum Gases +1104.2862 Combinatorics +1104.2867 Strongly Correlated Electrons +1104.2871 Instrumentation and Detectors +1104.2872 Computer Science and Game Theory +1104.2882 Data Structures and Algorithms +1104.2885 Popular Physics +1104.2891 Probability +1104.2895 Physics and Society +astro-ph/9501064 +astro-ph/9501065 +astro-ph/9501071 +astro-ph/9502041 +astro-ph/9503036 +astro-ph/9509002 +astro-ph/9510075 +astro-ph/9511036 +astro-ph/9512088 +astro-ph/9607079 +astro-ph/9608060 +astro-ph/9609016 +astro-ph/9609081 +astro-ph/9609110 +astro-ph/9610220 +astro-ph/9610234 +astro-ph/9611018 +astro-ph/9611102 +astro-ph/9611175 +astro-ph/9611186 +astro-ph/9611227 +astro-ph/9612004 +astro-ph/9612011 +astro-ph/9701118 +astro-ph/9704026 +astro-ph/9707015 +astro-ph/9709187 +astro-ph/9710019 +astro-ph/9801117 +astro-ph/9802007 +astro-ph/9802083 +astro-ph/9803312 +astro-ph/9803328 +astro-ph/9804041 +astro-ph/9805252 +astro-ph/9808098 +astro-ph/9811360 +astro-ph/9901076 +astro-ph/9903160 +astro-ph/9904102 +astro-ph/9908003 +astro-ph/9911058 +cond-mat/9512099 +cond-mat/9610143 Statistical Mechanics +cond-mat/9905320 +cond-mat/9908311 Statistical Mechanics +cond-mat/9909236 +cond-mat/9909240 Statistical Mechanics +cond-mat/9911070 Statistical Mechanics +cs/0404023 Logic in Computer Science +cs/0404024 Logic in Computer Science +cs/0406037 Logic in Computer Science +cs/0407054 Logic in Computer Science +cs/0501031 Logic in Computer Science +cs/0507045 Logic in Computer Science +cs/0512100 Logic in Computer Science +cs/0602011 Logic in Computer Science +gr-qc/0003043 +gr-qc/0004031 +gr-qc/0004049 +gr-qc/0005023 +gr-qc/0006104 +gr-qc/0007027 +gr-qc/0010018 +gr-qc/0010105 +gr-qc/0206057 +gr-qc/9306009 +gr-qc/9308020 +gr-qc/9406025 +gr-qc/9406040 +gr-qc/9406047 +gr-qc/9406048 +gr-qc/9407040 +gr-qc/9506042 +gr-qc/9507058 +gr-qc/9509056 +gr-qc/9510032 +gr-qc/9511049 +gr-qc/9511080 +gr-qc/9602014 +gr-qc/9606049 +gr-qc/9607077 +gr-qc/9608006 +gr-qc/9608008 +gr-qc/9608009 +gr-qc/9608010 +gr-qc/9609020 +gr-qc/9610024 +gr-qc/9611057 +gr-qc/9612058 +gr-qc/9701027 +gr-qc/9703022 +gr-qc/9704051 +gr-qc/9708016 +gr-qc/9708062 +gr-qc/9710086 +gr-qc/9712073 +gr-qc/9801029 +gr-qc/9802040 +gr-qc/9802066 +gr-qc/9803017 +gr-qc/9805016 +gr-qc/9806119 +gr-qc/9806122 +gr-qc/9812034 +gr-qc/9812063 +gr-qc/9904022 +gr-qc/9904039 +gr-qc/9908022 +gr-qc/9909093 +gr-qc/9910035 +gr-qc/9910046 +gr-qc/9910080 +gr-qc/9911006 +gr-qc/9911021 +gr-qc/9912079 +gr-qc/9912114 +hep-ex/0001024 Experiment +hep-ex/0001042 Experiment +hep-ex/0001059 Experiment +hep-ex/0002063 Experiment +hep-ex/0003014 Experiment +hep-ex/9512003 Experiment +hep-ex/9610003 Experiment +hep-ex/9907017 Experiment +hep-ex/9908047 Experiment +hep-ex/9910058 Experiment +hep-ex/9912004 Experiment +hep-ex/9912007 Experiment +hep-ex/9912010 Experiment +hep-ex/9912019 Experiment +hep-ex/9912040 Experiment +hep-ex/9912042 Experiment +hep-lat/0002030 Lattice +hep-lat/0007029 Lattice +hep-lat/9208024 Lattice +hep-lat/9209005 Lattice +hep-lat/9210007 Lattice +hep-lat/9308014 Lattice +hep-lat/9311013 Lattice +hep-lat/9311037 Lattice +hep-lat/9312055 Lattice +hep-lat/9409008 Lattice +hep-lat/9606006 Lattice +hep-lat/9608151 Lattice +hep-lat/9904005 Lattice +hep-lat/9911032 Lattice +hep-lat/9912011 Lattice +hep-lat/9912020 Lattice +hep-lat/9912022 Lattice +hep-lat/9912026 Lattice +hep-lat/9912033 Lattice +hep-lat/9912048 Lattice +hep-ph/0001094 Phenomenology +hep-ph/0001126 Phenomenology +hep-ph/0002070 Phenomenology +hep-ph/0002218 Phenomenology +hep-ph/0003108 Phenomenology +hep-ph/0008123 Phenomenology +hep-ph/0105343 Phenomenology +hep-ph/9301281 Phenomenology +hep-ph/9306217 Phenomenology +hep-ph/9308301 Phenomenology +hep-ph/9309257 Phenomenology +hep-ph/9309268 Phenomenology +hep-ph/9401279 Phenomenology +hep-ph/9404323 Phenomenology +hep-ph/9404358 Phenomenology +hep-ph/9404363 Phenomenology +hep-ph/9406267 Phenomenology +hep-ph/9406395 Phenomenology +hep-ph/9407240 Phenomenology +hep-ph/9408201 Phenomenology +hep-ph/9408270 Phenomenology +hep-ph/9409325 Phenomenology +hep-ph/9409412 Phenomenology +hep-ph/9410412 Phenomenology +hep-ph/9411300 Phenomenology +hep-ph/9412244 Phenomenology +hep-ph/9505434 Phenomenology +hep-ph/9506229 Phenomenology +hep-ph/9506237 Phenomenology +hep-ph/9506379 Phenomenology +hep-ph/9507281 Phenomenology +hep-ph/9507356 Phenomenology +hep-ph/9507360 Phenomenology +hep-ph/9508235 Phenomenology +hep-ph/9509357 Phenomenology +hep-ph/9509362 Phenomenology +hep-ph/9510296 Phenomenology +hep-ph/9510299 Phenomenology +hep-ph/9510339 Phenomenology +hep-ph/9510350 Phenomenology +hep-ph/9510371 Phenomenology +hep-ph/9510374 Phenomenology +hep-ph/9510382 Phenomenology +hep-ph/9510414 Phenomenology +hep-ph/9510442 Phenomenology +hep-ph/9510443 Phenomenology +hep-ph/9510459 Phenomenology +hep-ph/9511218 Phenomenology +hep-ph/9511223 Phenomenology +hep-ph/9511246 Phenomenology +hep-ph/9511249 Phenomenology +hep-ph/9511253 Phenomenology +hep-ph/9511334 Phenomenology +hep-ph/9511339 Phenomenology +hep-ph/9511372 Phenomenology +hep-ph/9511427 Phenomenology +hep-ph/9511450 Phenomenology +hep-ph/9512203 Phenomenology +hep-ph/9512245 Phenomenology +hep-ph/9601250 Phenomenology +hep-ph/9603231 Phenomenology +hep-ph/9604216 Phenomenology +hep-ph/9604281 Phenomenology +hep-ph/9604314 Phenomenology +hep-ph/9604324 Phenomenology +hep-ph/9605354 Phenomenology +hep-ph/9606208 Phenomenology +hep-ph/9606424 Phenomenology +hep-ph/9606478 Phenomenology +hep-ph/9607255 Phenomenology +hep-ph/9607271 Phenomenology +hep-ph/9607468 Phenomenology +hep-ph/9608362 Phenomenology +hep-ph/9609208 Phenomenology +hep-ph/9609281 Phenomenology +hep-ph/9609334 Phenomenology +hep-ph/9609338 Phenomenology +hep-ph/9609345 Phenomenology +hep-ph/9609422 Phenomenology +hep-ph/9609426 Phenomenology +hep-ph/9609429 Phenomenology +hep-ph/9609461 Phenomenology +hep-ph/9610349 Phenomenology +hep-ph/9610350 Phenomenology +hep-ph/9610364 Phenomenology +hep-ph/9610371 Phenomenology +hep-ph/9610372 Phenomenology +hep-ph/9610417 Phenomenology +hep-ph/9610427 Phenomenology +hep-ph/9610467 Phenomenology +hep-ph/9610510 Phenomenology +hep-ph/9610516 Phenomenology +hep-ph/9611212 Phenomenology +hep-ph/9611238 Phenomenology +hep-ph/9611241 Phenomenology +hep-ph/9611282 Phenomenology +hep-ph/9611299 Phenomenology +hep-ph/9611308 Phenomenology +hep-ph/9611323 Phenomenology +hep-ph/9611336 Phenomenology +hep-ph/9611354 Phenomenology +hep-ph/9611426 Phenomenology +hep-ph/9611449 Phenomenology +hep-ph/9612262 Phenomenology +hep-ph/9612275 Phenomenology +hep-ph/9612296 Phenomenology +hep-ph/9612315 Phenomenology +hep-ph/9612325 Phenomenology +hep-ph/9612331 Phenomenology +hep-ph/9612359 Phenomenology +hep-ph/9612361 Phenomenology +hep-ph/9612384 Phenomenology +hep-ph/9612491 Phenomenology +hep-ph/9701360 Phenomenology +hep-ph/9702230 Phenomenology +hep-ph/9703205 Phenomenology +hep-ph/9703422 Phenomenology +hep-ph/9703431 Phenomenology +hep-ph/9704292 Phenomenology +hep-ph/9704295 Phenomenology +hep-ph/9704401 Phenomenology +hep-ph/9704435 Phenomenology +hep-ph/9705419 Phenomenology +hep-ph/9706202 Phenomenology +hep-ph/9707461 Phenomenology +hep-ph/9708293 Phenomenology +hep-ph/9708301 Phenomenology +hep-ph/9708452 Phenomenology +hep-ph/9709232 Phenomenology +hep-ph/9709272 Phenomenology +hep-ph/9709302 Phenomenology +hep-ph/9709323 Phenomenology +hep-ph/9709347 Phenomenology +hep-ph/9709416 Phenomenology +hep-ph/9709436 Phenomenology +hep-ph/9710320 Phenomenology +hep-ph/9710442 Phenomenology +hep-ph/9710481 Phenomenology +hep-ph/9711213 Phenomenology +hep-ph/9711258 Phenomenology +hep-ph/9711270 Phenomenology +hep-ph/9711291 Phenomenology +hep-ph/9711315 Phenomenology +hep-ph/9711390 Phenomenology +hep-ph/9711437 Phenomenology +hep-ph/9711506 Phenomenology +hep-ph/9712275 Phenomenology +hep-ph/9712283 Phenomenology +hep-ph/9712320 Phenomenology +hep-ph/9712434 Phenomenology +hep-ph/9712436 Phenomenology +hep-ph/9801314 Phenomenology +hep-ph/9801394 Phenomenology +hep-ph/9802370 Phenomenology +hep-ph/9803325 Phenomenology +hep-ph/9803358 Phenomenology +hep-ph/9805362 Phenomenology +hep-ph/9806284 Phenomenology +hep-ph/9806331 Phenomenology +hep-ph/9807210 Phenomenology +hep-ph/9807274 Phenomenology +hep-ph/9807292 Phenomenology +hep-ph/9807304 Phenomenology +hep-ph/9807404 Phenomenology +hep-ph/9807471 Phenomenology +hep-ph/9807562 Phenomenology +hep-ph/9808281 Phenomenology +hep-ph/9808365 Phenomenology +hep-ph/9808381 Phenomenology +hep-ph/9808494 Phenomenology +hep-ph/9809213 Phenomenology +hep-ph/9809272 Phenomenology +hep-ph/9809595 Phenomenology +hep-ph/9811228 Phenomenology +hep-ph/9811264 Phenomenology +hep-ph/9811516 Phenomenology +hep-ph/9812368 Phenomenology +hep-ph/9812526 Phenomenology +hep-ph/9901313 Phenomenology +hep-ph/9901315 Phenomenology +hep-ph/9901322 Phenomenology +hep-ph/9901338 Phenomenology +hep-ph/9901417 Phenomenology +hep-ph/9902229 Phenomenology +hep-ph/9902346 Phenomenology +hep-ph/9902360 Phenomenology +hep-ph/9902459 Phenomenology +hep-ph/9903248 Phenomenology +hep-ph/9904300 Phenomenology +hep-ph/9905251 Phenomenology +hep-ph/9905374 Phenomenology +hep-ph/9905497 Phenomenology +hep-ph/9906263 Phenomenology +hep-ph/9906264 Phenomenology +hep-ph/9906315 Phenomenology +hep-ph/9906386 Phenomenology +hep-ph/9907316 Phenomenology +hep-ph/9907503 Phenomenology +hep-ph/9907565 Phenomenology +hep-ph/9907566 Phenomenology +hep-ph/9908258 Phenomenology +hep-ph/9908470 Phenomenology +hep-ph/9909252 Phenomenology +hep-ph/9909547 Phenomenology +hep-ph/9910227 Phenomenology +hep-ph/9910336 Phenomenology +hep-ph/9910340 Phenomenology +hep-ph/9910355 Phenomenology +hep-ph/9910357 Phenomenology +hep-ph/9910358 Phenomenology +hep-ph/9910379 Phenomenology +hep-ph/9910384 Phenomenology +hep-ph/9910428 Phenomenology +hep-ph/9910455 Phenomenology +hep-ph/9910472 Phenomenology +hep-ph/9910496 Phenomenology +hep-ph/9910513 Phenomenology +hep-ph/9910524 Phenomenology +hep-ph/9910528 Phenomenology +hep-ph/9911260 Phenomenology +hep-ph/9911371 Phenomenology +hep-ph/9911403 Phenomenology +hep-ph/9911405 Phenomenology +hep-ph/9911412 Phenomenology +hep-ph/9911445 Phenomenology +hep-ph/9911455 Phenomenology +hep-ph/9911499 Phenomenology +hep-ph/9912227 Phenomenology +hep-ph/9912279 Phenomenology +hep-ph/9912288 Phenomenology +hep-ph/9912292 Phenomenology +hep-ph/9912294 Phenomenology +hep-ph/9912311 Phenomenology +hep-ph/9912337 Phenomenology +hep-ph/9912346 Phenomenology +hep-ph/9912422 Phenomenology +hep-ph/9912442 Phenomenology +hep-ph/9912443 Phenomenology +hep-ph/9912462 Phenomenology +hep-ph/9912521 Phenomenology +hep-ph/9912550 Phenomenology +hep-th/0001103 Theory +hep-th/0001110 Theory +hep-th/0001136 Theory +hep-th/0002136 Theory +hep-th/0002162 Theory +hep-th/0005264 Theory +hep-th/0108221 Theory +hep-th/0206051 Theory +hep-th/0209099 Theory +hep-th/0307025 Theory +hep-th/0310040 Theory +hep-th/0405236 Theory +hep-th/0407029 Theory +hep-th/0503238 Theory +hep-th/0508092 Theory +hep-th/0511164 Theory +hep-th/0605027 Theory +hep-th/0703100 Theory +hep-th/9111027 Theory +hep-th/9205065 Theory +hep-th/9205074 Theory +hep-th/9307052 Theory +hep-th/9307155 Theory +hep-th/9308012 Theory +hep-th/9308085 Theory +hep-th/9308155 Theory +hep-th/9312212 Theory +hep-th/9402060 Theory +hep-th/9406026 Theory +hep-th/9408172 Theory +hep-th/9409126 Theory +hep-th/9410021 Theory +hep-th/9411071 Theory +hep-th/9411139 Theory +hep-th/9411148 Theory +hep-th/9411177 Theory +hep-th/9411178 Theory +hep-th/9412040 Theory +hep-th/9412060 Theory +hep-th/9504158 Theory +hep-th/9506119 Theory +hep-th/9507029 Theory +hep-th/9509031 Theory +hep-th/9509054 Theory +hep-th/9509106 Theory +hep-th/9510143 Theory +hep-th/9510216 Theory +hep-th/9510237 Theory +hep-th/9510238 Theory +hep-th/9511122 Theory +hep-th/9511178 Theory +hep-th/9512071 Theory +hep-th/9512170 Theory +hep-th/9602004 Theory +hep-th/9602021 Theory +hep-th/9602079 Theory +hep-th/9603191 Theory +hep-th/9604062 Theory +hep-th/9604137 Theory +hep-th/9605186 Theory +hep-th/9606010 Theory +hep-th/9606059 Theory +hep-th/9608003 Theory +hep-th/9608090 Theory +hep-th/9608171 Theory +hep-th/9609021 Theory +hep-th/9609024 Theory +hep-th/9609049 Theory +hep-th/9609098 Theory +hep-th/9609148 Theory +hep-th/9609185 Theory +hep-th/9610002 Theory +hep-th/9610007 Theory +hep-th/9610012 Theory +hep-th/9610019 Theory +hep-th/9610024 Theory +hep-th/9610054 Theory +hep-th/9610108 Theory +hep-th/9610146 Theory +hep-th/9610153 Theory +hep-th/9610183 Theory +hep-th/9610184 Theory +hep-th/9610202 Theory +hep-th/9611019 Theory +hep-th/9611062 Theory +hep-th/9611229 Theory +hep-th/9701046 Theory +hep-th/9702082 Theory +hep-th/9702152 Theory +hep-th/9703169 Theory +hep-th/9704114 Theory +hep-th/9705083 Theory +hep-th/9706031 Theory +hep-th/9706049 Theory +hep-th/9707150 Theory +hep-th/9707216 Theory +hep-th/9709156 Theory +hep-th/9710167 Theory +hep-th/9711134 Theory +hep-th/9711136 Theory +hep-th/9712235 Theory +hep-th/9801177 Theory +hep-th/9803059 Theory +hep-th/9804154 Theory +hep-th/9806013 Theory +hep-th/9806062 Theory +hep-th/9807029 Theory +hep-th/9807132 Theory +hep-th/9807135 Theory +hep-th/9808100 Theory +hep-th/9808176 Theory +hep-th/9808190 Theory +hep-th/9809128 Theory +hep-th/9810009 Theory +hep-th/9810015 Theory +hep-th/9810018 Theory +hep-th/9810048 Theory +hep-th/9810178 Theory +hep-th/9812173 Theory +hep-th/9901081 Theory +hep-th/9902019 Theory +hep-th/9902147 Theory +hep-th/9904077 Theory +hep-th/9905047 Theory +hep-th/9906049 Theory +hep-th/9906115 Theory +hep-th/9906122 Theory +hep-th/9906158 Theory +hep-th/9907218 Theory +hep-th/9908091 Theory +hep-th/9908126 Theory +hep-th/9908153 Theory +hep-th/9908200 Theory +hep-th/9909042 Theory +hep-th/9910082 Theory +hep-th/9910089 Theory +hep-th/9910098 Theory +hep-th/9910115 Theory +hep-th/9910184 Theory +hep-th/9910203 Theory +hep-th/9910216 Theory +hep-th/9910251 Theory +hep-th/9911002 Theory +hep-th/9911102 Theory +hep-th/9911170 Theory +hep-th/9911175 Theory +hep-th/9911219 Theory +hep-th/9911236 Theory +hep-th/9911240 Theory +hep-th/9911241 Theory +hep-th/9912161 Theory +math-ph/0404008 +math-ph/9809004 +math-ph/9812010 +math/0506553 Logic +math/9801110 Algebraic Geometry +math/9805122 Quantum Algebra +math/9811135 Analysis of PDEs +math/9909001 Quantum Algebra +nlin/0008017 Exactly Solvable and Integrable Systems +nucl-ex/9612005 +nucl-ex/9801007 +nucl-ex/9902002 +nucl-ex/9902008 +nucl-ex/9903004 +nucl-ex/9905006 +nucl-ex/9906009 +nucl-ex/9910011 +nucl-th/0001011 +nucl-th/0002035 +nucl-th/0002047 +nucl-th/0006040 +nucl-th/0009034 +nucl-th/0210019 +nucl-th/9402011 +nucl-th/9411009 +nucl-th/9412006 +nucl-th/9507001 +nucl-th/9507035 +nucl-th/9507042 +nucl-th/9507043 +nucl-th/9509024 +nucl-th/9510018 +nucl-th/9510037 +nucl-th/9511015 +nucl-th/9511017 +nucl-th/9511023 +nucl-th/9512001 +nucl-th/9512030 +nucl-th/9606060 +nucl-th/9607016 +nucl-th/9607019 +nucl-th/9607031 +nucl-th/9607051 +nucl-th/9707035 +nucl-th/9708046 +nucl-th/9708058 +nucl-th/9709010 +nucl-th/9709022 +nucl-th/9709023 +nucl-th/9709041 +nucl-th/9709050 +nucl-th/9710016 +nucl-th/9710036 +nucl-th/9711060 +nucl-th/9712016 +nucl-th/9802064 +nucl-th/9802084 +nucl-th/9806036 +nucl-th/9806079 +nucl-th/9806090 +nucl-th/9807050 +nucl-th/9807053 +nucl-th/9808015 +nucl-th/9808034 +nucl-th/9809002 +nucl-th/9809010 +nucl-th/9809026 +nucl-th/9809041 +nucl-th/9809046 +nucl-th/9809091 +nucl-th/9810019 +nucl-th/9810053 +nucl-th/9810054 +nucl-th/9810058 +nucl-th/9810079 +nucl-th/9811020 +nucl-th/9811084 +nucl-th/9812048 +nucl-th/9901036 +nucl-th/9901056 +nucl-th/9901085 +nucl-th/9903035 +nucl-th/9904044 +nucl-th/9904045 +nucl-th/9905006 +nucl-th/9905062 +nucl-th/9906011 +nucl-th/9907046 +nucl-th/9909011 +nucl-th/9909036 +nucl-th/9910010 +nucl-th/9910019 +nucl-th/9910053 +nucl-th/9910059 +nucl-th/9911003 +nucl-th/9911013 +nucl-th/9911017 +nucl-th/9911040 +nucl-th/9911059 +nucl-th/9912075 +physics/0105080 General Physics +physics/0601192 Physics and Society +physics/9707018 General Physics +physics/9803046 +q-alg/9607029 Quantum Algebra +q-alg/9610004 Quantum Algebra +quant-ph/9510024 +quant-ph/9512014 +quant-ph/9609009 +quant-ph/9702018 +quant-ph/9702044 +quant-ph/9705050 +quant-ph/9707003 +quant-ph/9709018 +quant-ph/9709021 +quant-ph/9709039 +quant-ph/9712014 +quant-ph/9802057 +quant-ph/9804028 +quant-ph/9804036 +quant-ph/9804046 +quant-ph/9805040 +quant-ph/9808052 +quant-ph/9808057 +quant-ph/9809031 +quant-ph/9809041 +quant-ph/9809073 +quant-ph/9810050 +quant-ph/9904105 +quant-ph/9908062 +quant-ph/9911031 +0705.1025 Data Structures and Algorithms +0705.3779 Algebraic Geometry +0710.5673 Differential Geometry +0801.4770 +0804.2482 +0806.4591 +0807.1586 Soft Condensed Matter +0807.3082 Superconductivity +0808.1220 Phenomenology +0809.1693 +0809.2295 +0809.4362 +0810.1031 +0811.1529 Algebraic Geometry +0902.2420 Distributed, Parallel, and Cluster Computing +0902.3460 Cosmology and Nongalactic Astrophysics +0903.0594 Combinatorics +0904.0120 Commutative Algebra +0904.0336 Differential Geometry +0904.1630 Computational Complexity +0904.4358 Optimization and Control +0905.0114 +0905.1256 High Energy Astrophysical Phenomena +0907.1072 Formal Languages and Automata Theory +0911.4376 Solar and Stellar Astrophysics +0911.5718 Solar and Stellar Astrophysics +1001.2727 Soft Condensed Matter +1002.0625 Astrophysics of Galaxies +1002.1248 Phenomenology +1002.3296 Algebraic Geometry +1003.3367 General Physics +1003.6128 Analysis of PDEs +1004.1734 +1005.0553 Mesoscale and Nanoscale Physics +1005.1980 Geometric Topology +1005.4374 Methodology +1006.3462 Algebraic Geometry +1006.3639 +1006.5869 +1007.2626 Differential Geometry +1007.3021 Formal Languages and Automata Theory +1008.0954 Theory +1008.3121 Superconductivity +1008.4209 Theory +1008.4274 +1008.4734 Exactly Solvable and Integrable Systems +1009.0431 +1009.1110 Theory +1009.2255 +1009.2557 Networking and Internet Architecture +1009.4050 Theory +1009.4403 +1009.6220 +1010.0945 Materials Science +1010.1027 Phenomenology +1010.1353 Mesoscale and Nanoscale Physics +1010.1470 Quantum Algebra +1010.3566 Combinatorics +1010.4125 Theory +1010.4641 Analysis of PDEs +1010.4924 Superconductivity +1011.5046 Lattice +1011.5190 Phenomenology +1011.5422 Experiment +1011.5482 Theory +1011.5787 +1011.6146 Cosmology and Nongalactic Astrophysics +1012.0959 Mesoscale and Nanoscale Physics +1012.1763 Superconductivity +1012.2457 Statistical Mechanics +1012.2560 +1012.3431 Quantum Gases +1101.0207 +1101.4422 Mesoscale and Nanoscale Physics +1101.5456 Dynamical Systems +1101.5797 Phenomenology +1102.1934 Digital Libraries +1102.2675 Exactly Solvable and Integrable Systems +1102.2933 Computational Engineering, Finance, and Science +1102.3096 Lattice +1102.3377 Algebraic Geometry +1102.3710 Functional Analysis +1102.4334 Theory +1102.5119 +1103.0400 Algebraic Topology +1103.1631 Phenomenology +1103.1946 Disordered Systems and Neural Networks +1103.2042 Phenomenology +1103.2730 Theory +1103.2823 Atomic Physics +1103.3172 Mesoscale and Nanoscale Physics +1103.3918 Mesoscale and Nanoscale Physics +1103.4953 Exactly Solvable and Integrable Systems +1103.5187 +1104.0014 Cosmology and Nongalactic Astrophysics +1104.0092 Quantum Gases +1104.1375 Phenomenology +1104.1609 Strongly Correlated Electrons +1104.2791 Spectral Theory +1104.3281 Theory +1104.4426 Computation and Language +1104.4657 Social and Information Networks +1104.4978 Computer Science and Game Theory +1104.5395 Phenomenology +1105.0383 Statistical Mechanics +1105.2505 Earth and Planetary Astrophysics +1105.3456 +1105.4413 Exactly Solvable and Integrable Systems +1105.4465 +1105.6165 General Physics +1105.6332 Materials Science +1106.1636 Artificial Intelligence +1106.1742 Disordered Systems and Neural Networks +1106.2696 Cryptography and Security +1106.4101 Materials Science +1106.6081 Analysis of PDEs +1107.1731 Information Theory +1107.2839 +1107.3166 Networking and Internet Architecture +1107.3175 Solar and Stellar Astrophysics +1107.3191 Analysis of PDEs +1107.3422 +1107.3478 Accelerator Physics +1107.3655 Soft Condensed Matter +1107.3679 Analysis of PDEs +1107.3742 General Physics +1107.3766 Analysis of PDEs +1107.3846 Experiment +1107.3847 Differential Geometry +1107.3848 Experiment +1107.3850 Rings and Algebras +1107.3851 Soft Condensed Matter +1107.3852 Combinatorics +1107.3853 Phenomenology +1107.3854 Probability +1107.3856 Phenomenology +1107.3857 Networking and Internet Architecture +1107.3859 Phenomenology +1107.3873 Combinatorics +1107.3876 Data Structures and Algorithms +1107.3879 Networking and Internet Architecture +1107.3883 Logic +1107.3885 Classical Physics +1107.3893 Human-Computer Interaction +1107.3899 Commutative Algebra +1107.3900 Quantum Algebra +1107.3903 Numerical Analysis +1107.3907 Numerical Analysis +1107.3911 Biological Physics +1107.3915 +1107.3921 Biomolecules +1107.3923 Theory +1107.3924 Hardware Architecture +1107.3930 Quantum Gases +1107.3945 Dynamical Systems +1107.3948 Materials Science +1107.3953 Chaotic Dynamics +1107.3955 Group Theory +1107.3960 Methodology +1107.3962 Cosmology and Nongalactic Astrophysics +1107.3963 Exactly Solvable and Integrable Systems +1107.3965 Operator Algebras +1107.3969 Astrophysics of Galaxies +1107.3973 Phenomenology +1107.3974 Data Analysis, Statistics and Probability +1107.3981 Mesoscale and Nanoscale Physics +1107.3984 Phenomenology +1107.3989 +1107.3993 High Energy Astrophysical Phenomena +1107.3996 Analysis of PDEs +1107.3997 Solar and Stellar Astrophysics +1107.4006 Numerical Analysis +1107.4008 Solar and Stellar Astrophysics +1107.4016 Software Engineering +1107.4018 Differential Geometry +1107.4019 Number Theory +1107.4024 Analysis of PDEs +1107.4026 Classical Analysis and ODEs +1107.4028 General Physics +1107.4033 Classical Analysis and ODEs +1107.4047 Methodology +1107.4054 Cryptography and Security +1107.4055 Numerical Analysis +1107.4058 Statistics Theory +1107.4062 Cryptography and Security +1107.4064 Astrophysics of Galaxies +1107.4065 Cryptography and Security +1107.4075 Phenomenology +1107.4076 Cryptography and Security +1107.4077 Cryptography and Security +1107.4079 Group Theory +1107.4080 Learning +astro-ph/0101107 +astro-ph/0405313 +astro-ph/0602483 +astro-ph/0605438 +astro-ph/0702489 +astro-ph/9704201 +astro-ph/9904308 +cond-mat/0702300 Soft Condensed Matter +dg-ga/9707017 Differential Geometry +hep-th/0103100 Theory +hep-th/9304108 Theory +hep-th/9506155 Theory +hep-th/9804150 Theory +math/0311172 Differential Geometry +math/0603018 Differential Geometry +math/0606224 Differential Geometry +math/9912168 Differential Geometry +nucl-th/9508028 +0801.2222 Materials Science +0807.1938 General Physics +0810.5681 Differential Geometry +0903.2372 Quantum Algebra +0904.0907 Mesoscale and Nanoscale Physics +0908.0826 Algebraic Geometry +0908.1183 Algebraic Geometry +0909.2114 Numerical Analysis +0910.1180 Strongly Correlated Electrons +0911.4207 Statistical Finance +0912.2898 Algebraic Geometry +1001.1311 Algebraic Geometry +1002.0579 Algebraic Geometry +1003.3785 Rings and Algebras +1003.5729 Theory +1004.2675 Geophysics +1004.2924 Optimization and Control +1004.4195 Algebraic Geometry +1004.5362 Mesoscale and Nanoscale Physics +1006.5475 Algebraic Geometry +1007.1938 Information Theory +1007.3698 Soft Condensed Matter +1008.4009 +1009.0304 Information Theory +1009.2451 Phenomenology +1009.3492 Soft Condensed Matter +1009.4428 Theory +1009.5037 Computer Science and Game Theory +1010.1601 Statistics Theory +1011.1530 Astrophysics of Galaxies +1011.1921 Mesoscale and Nanoscale Physics +1011.2979 Soft Condensed Matter +1011.4423 +1011.5650 Computational Finance +1012.3529 Analysis of PDEs +1101.0378 Atomic and Molecular Clusters +1102.3211 Mesoscale and Nanoscale Physics +1102.3222 General Physics +1103.0688 Superconductivity +1103.1368 Strongly Correlated Electrons +1103.1385 Solar and Stellar Astrophysics +1103.1436 Rings and Algebras +1103.2182 Theory +1104.0353 Materials Science +1104.2081 Phenomenology +1104.3838 Strongly Correlated Electrons +1104.5215 Theory +1104.5333 +1104.5376 Statistical Mechanics +1104.5591 Cosmology and Nongalactic Astrophysics +1104.5699 Mesoscale and Nanoscale Physics +1105.2103 Complex Variables +1105.2296 Phenomenology +1105.2787 Classical Analysis and ODEs +1105.2908 Materials Science +1105.3647 Phenomenology +1105.4720 Probability +1105.5397 Phenomenology +1105.6291 Quantum Gases +1106.0095 +1106.1114 +1106.1307 Classical Analysis and ODEs +1106.2436 Learning +1106.2886 Information Theory +1106.2888 Information Theory +1106.3712 Superconductivity +1106.4391 Metric Geometry +1106.4853 Rings and Algebras +1106.6331 Mesoscale and Nanoscale Physics +1107.0828 Soft Condensed Matter +1107.3154 Cosmology and Nongalactic Astrophysics +1107.3497 Strongly Correlated Electrons +1107.3998 Analysis of PDEs +1107.4323 +1107.5021 Superconductivity +1108.0304 Materials Science +1108.3066 Strongly Correlated Electrons +1108.3132 Strongly Correlated Electrons +1108.3586 Statistics Theory +1109.4023 Quantum Gases +1109.5040 Combinatorics +1109.5386 Complex Variables +1110.0370 Mesoscale and Nanoscale Physics +1110.0914 Adaptation and Self-Organizing Systems +1110.1320 Data Structures and Algorithms +1110.2635 Group Theory +1110.2708 Group Theory +1110.3193 Cosmology and Nongalactic Astrophysics +1110.3476 +1110.4932 Number Theory +1110.5008 Group Theory +1110.5019 Cosmology and Nongalactic Astrophysics +1110.5109 +1110.5137 Classical Physics +1110.5139 +1110.5227 Solar and Stellar Astrophysics +1110.5256 Phenomenology +1110.5304 High Energy Astrophysical Phenomena +1110.5320 Superconductivity +1110.5333 Phenomenology +1110.5337 Optics +1110.5344 Numerical Analysis +1110.5346 Statistics Theory +1110.5359 Theory +1110.5360 Instrumentation and Methods for Astrophysics +1110.5364 Commutative Algebra +1110.5366 Mesoscale and Nanoscale Physics +1110.5374 Phenomenology +1110.5376 Populations and Evolution +1110.5380 Materials Science +1110.5384 Data Analysis, Statistics and Probability +1110.5387 +1110.5388 General Topology +1110.5394 Probability +1110.5397 Symplectic Geometry +1110.5401 High Energy Astrophysical Phenomena +1110.5404 Computer Vision and Pattern Recognition +1110.5405 Classical Analysis and ODEs +1110.5411 Materials Science +1110.5412 History and Overview +1110.5413 Phenomenology +1110.5417 Classical Physics +1110.5419 Digital Libraries +1110.5423 Soft Condensed Matter +1110.5426 +1110.5428 Rings and Algebras +1110.5429 Applications +1110.5430 Optics +1110.5431 Optics +1110.5437 Materials Science +1110.5438 Algebraic Geometry +1110.5439 Computer Science and Game Theory +1110.5443 Differential Geometry +1110.5447 Optimization and Control +1110.5449 Dynamical Systems +1110.5450 Computer Vision and Pattern Recognition +1110.5455 Probability +1110.5456 Logic +1110.5459 Operator Algebras +1110.5461 Materials Science +1110.5467 Number Theory +1110.5468 Rings and Algebras +1110.5478 Classical Analysis and ODEs +1110.5481 Biological Physics +1110.5483 Metric Geometry +1110.5488 Dynamical Systems +1110.5489 Probability +1110.5491 +1110.5496 Soft Condensed Matter +1110.5501 Materials Science +1110.5506 Materials Science +1110.5507 Mesoscale and Nanoscale Physics +1110.5508 Machine Learning +1110.5509 Statistics Theory +1110.5513 Numerical Analysis +1110.5516 General Finance +1110.5518 General Finance +1110.5523 Strongly Correlated Electrons +1110.5528 Cosmology and Nongalactic Astrophysics +1110.5530 Phenomenology +1110.5533 Phenomenology +1110.5534 General Finance +1110.5535 Experiment +1110.5538 General Finance +1110.5540 Combinatorics +1110.5542 Category Theory +1110.5544 General Finance +1110.5547 Materials Science +1110.5548 General Finance +1110.5549 +1110.5551 Functional Analysis +1110.5552 General Finance +1110.5556 General Finance +1110.5557 General Finance +1110.5558 General Finance +1110.5559 General Finance +1110.5563 Dynamical Systems +1110.5564 General Finance +1110.5571 General Finance +1110.5572 Solar and Stellar Astrophysics +1110.5573 General Finance +1110.5574 Networking and Internet Architecture +1110.5578 General Finance +1110.5590 Combinatorics +1110.5597 Operator Algebras +1110.5598 Dynamical Systems +1110.5604 Optics +1110.5606 Theory +1110.5608 Algebraic Topology +1110.5612 Dynamical Systems +1110.5613 Soft Condensed Matter +1110.5615 Phenomenology +1110.5616 Statistical Mechanics +1110.5617 Lattice +1110.5620 Differential Geometry +1110.5625 Category Theory +cond-mat/0204423 Statistical Mechanics +cond-mat/0304086 Soft Condensed Matter +cond-mat/0510496 Soft Condensed Matter +cond-mat/9503065 +hep-th/0208170 Theory +hep-th/0406151 Theory +math/0506550 Algebraic Geometry +math/0607577 Algebraic Geometry +math/0703115 Operator Algebras +physics/0604033 Computational Physics +physics/0612039 General Physics +0706.1430 +0707.1654 +0709.0621 +0803.1572 Statistics Theory +0803.4439 Dynamical Systems +0804.0512 Theory +0806.1513 +0808.2243 Theory +0808.3452 Algebraic Geometry +0810.1231 Disordered Systems and Neural Networks +0811.1620 +0811.3330 Statistics Theory +0811.4523 Quantum Algebra +0812.0173 +0812.1806 Theory +0812.1940 Theory +0812.1946 Theory +0812.3410 Theory +0812.4220 +0902.0488 Number Theory +0902.1286 General Physics +0903.1348 Differential Geometry +0905.0670 Differential Geometry +0905.1888 Optimization and Control +0906.3018 General Physics +0908.1180 Differential Geometry +0908.4105 Theory +0909.2573 +0910.0895 Statistics Theory +0910.1407 Information Theory +0910.1924 Disordered Systems and Neural Networks +0911.1070 Functional Analysis +0911.5279 Phenomenology +0912.2013 +0912.2989 Chaotic Dynamics +0912.5469 General Topology +1002.3498 +1003.0160 Mesoscale and Nanoscale Physics +1003.3121 Probability +1003.3883 Mesoscale and Nanoscale Physics +1003.5256 +1003.5663 Phenomenology +1004.1303 Representation Theory +1004.1942 Representation Theory +1004.2966 +1004.3467 Fluid Dynamics +1004.4063 Discrete Mathematics +1005.0771 Multimedia +1005.1801 Information Theory +1005.1803 Information Theory +1005.3350 Information Theory +1005.4651 +1006.0054 Information Theory +1006.0420 Mesoscale and Nanoscale Physics +1006.1979 Cosmology and Nongalactic Astrophysics +1006.4257 Physics and Society +1008.2120 +1008.3368 Dynamical Systems +1008.4135 +1008.4624 +1008.4874 Computational Physics +1009.0135 Probability +1009.0182 Theory +1009.0339 Theory +1009.3248 +1009.3939 Theory +1009.4194 Strongly Correlated Electrons +1009.4998 +1010.3301 Phenomenology +1010.3723 Cosmology and Nongalactic Astrophysics +1010.6193 Plasma Physics +1011.0764 Theory +1011.0836 +1011.1294 Representation Theory +1011.1576 Learning +1011.1803 Theory +1011.1964 Lattice +1011.2172 Theory +1011.2727 Lattice +1011.5849 Plasma Physics +1012.0116 Phenomenology +1012.1649 Phenomenology +1012.2883 Theory +1012.3377 Phenomenology +1012.3458 Cosmology and Nongalactic Astrophysics +1012.4311 +1012.4861 Materials Science +1012.5837 Number Theory +1101.0364 +1101.1007 Computer Science and Game Theory +1101.1554 Classical Analysis and ODEs +1101.1910 +1101.2001 +1101.2206 Statistical Mechanics +1101.2285 Dynamical Systems +1101.2385 Quantum Gases +1101.3106 +1101.3863 Digital Libraries +1101.4638 +1101.4919 Phenomenology +1101.4978 Strongly Correlated Electrons +1102.0243 +1102.0376 +1102.0961 Materials Science +1102.1133 Theory +1102.1136 Classical Analysis and ODEs +1102.2917 Mesoscale and Nanoscale Physics +1102.3368 Atomic Physics +1102.3743 Superconductivity +1102.4187 Mesoscale and Nanoscale Physics +1102.4344 Phenomenology +1102.4706 Phenomenology +1102.4766 Physics and Society +1102.5302 Quantum Gases +1102.5683 Number Theory +1103.1539 Statistical Mechanics +1103.1549 +1103.1551 Computational Physics +1103.1888 Phenomenology +1103.2318 Instrumentation and Methods for Astrophysics +1103.2328 Theory +1103.3451 Quantum Algebra +1103.3765 Phenomenology +1103.3872 Information Retrieval +1103.5670 +1103.5815 Superconductivity +1104.0581 Statistics Theory +1104.0679 Phenomenology +1104.0688 Theory +1104.0758 Instrumentation and Detectors +1104.0863 High Energy Astrophysical Phenomena +1104.1882 Geometric Topology +1104.2298 Solar and Stellar Astrophysics +1104.2591 +1104.2714 +1104.2996 Phenomenology +1104.3086 Phenomenology +1104.4205 Experiment +1104.4487 Atomic Physics +1104.4618 Computational Geometry +1104.4761 Theory +1104.5418 Physics and Society +1104.5456 Information Theory +1105.0408 Materials Science +1105.1025 Algebraic Geometry +1105.1357 +1105.1598 Materials Science +1105.2541 Optimization and Control +1105.2606 Materials Science +1105.2608 Materials Science +1105.2910 Materials Science +1105.3261 Algebraic Geometry +1105.4171 Theory +1105.4474 Complex Variables +1105.4619 Solar and Stellar Astrophysics +1105.5236 Networking and Internet Architecture +1105.5904 Differential Geometry +1105.6312 Algebraic Geometry +1106.0602 Numerical Analysis +1106.1036 Phenomenology +1106.1515 Analysis of PDEs +1106.1892 +1106.1961 +1106.2087 Experiment +1106.2221 +1106.2302 Probability +1106.2352 Logic in Computer Science +1106.2488 +1106.2905 +1106.3044 Theory +1106.3384 Exactly Solvable and Integrable Systems +1106.3405 Phenomenology +1106.3567 Quantum Gases +1106.3572 Solar and Stellar Astrophysics +1106.3574 Cryptography and Security +1106.3577 Number Theory +1106.3578 Statistical Mechanics +1106.3582 Optimization and Control +1106.3584 +1106.3590 Probability +1106.3595 Information Theory +1106.3596 +1106.3600 Neurons and Cognition +1106.3611 Complex Variables +1106.3612 Complex Variables +1106.3624 Theory +1106.3625 Information Theory +1106.3627 Information Theory +1106.3628 Computational Geometry +1106.3629 Information Theory +1106.3630 Instrumentation and Detectors +1106.3633 Algebraic Geometry +1106.3634 Distributed, Parallel, and Cluster Computing +1106.3635 Numerical Analysis +1106.3637 Analysis of PDEs +1106.3638 Commutative Algebra +1106.3639 History and Philosophy of Physics +1106.3641 Phenomenology +1106.3642 Plasma Physics +1106.3643 Solar and Stellar Astrophysics +1106.3646 Medical Physics +1106.3647 +1106.3648 High Energy Astrophysical Phenomena +1106.3653 Combinatorics +1106.3656 Mesoscale and Nanoscale Physics +1106.3657 Theory +1106.3659 Materials Science +1106.3660 Materials Science +1106.3662 Materials Science +1106.3663 Commutative Algebra +1106.3665 Strongly Correlated Electrons +1106.3667 Cosmology and Nongalactic Astrophysics +1106.3669 Mesoscale and Nanoscale Physics +1106.3670 Statistics Theory +1106.3671 +1106.3672 Pattern Formation and Solitons +1106.3674 Differential Geometry +1106.3675 Materials Science +1106.3676 Optics +1106.3677 Hardware Architecture +1106.3678 Numerical Analysis +1106.3680 Discrete Mathematics +1106.3684 Computer Vision and Pattern Recognition +1106.3694 Numerical Analysis +1106.3698 High Energy Astrophysical Phenomena +1106.3699 High Energy Astrophysical Phenomena +1106.3706 Solar and Stellar Astrophysics +1106.3710 Probability +1106.3715 Materials Science +1106.3734 +1106.3735 Differential Geometry +1106.3737 Dynamical Systems +1106.3738 +1106.3742 Cryptography and Security +1106.3746 Cryptography and Security +1106.3753 Phenomenology +1106.3754 Combinatorics +1106.3755 Optimization and Control +1106.3758 Rings and Algebras +1106.3760 Group Theory +1106.3769 Group Theory +1106.3771 Quantitative Methods +1106.3774 Combinatorics +1106.3775 +1106.3778 Phenomenology +1106.3780 Analysis of PDEs +1106.3781 Statistical Mechanics +1106.3782 Astrophysics of Galaxies +1106.3786 +1106.3787 Computational Physics +1106.3790 Fluid Dynamics +1106.3791 Quantitative Methods +1106.3795 General Physics +1106.3799 Dynamical Systems +1106.3806 General Topology +1106.3808 General Topology +1106.3809 Information Theory +1106.3812 +1106.3813 +1106.3814 Applications +1106.3815 +1106.3820 Commutative Algebra +1106.3828 Materials Science +1106.3833 Experiment +1106.3834 Machine Learning +1106.3835 Optics +1106.3836 General Topology +1106.3839 Phenomenology +1106.3849 Materials Science +1106.3862 History and Philosophy of Physics +1106.3865 Probability +1106.3867 Materials Science +1106.3868 Functional Analysis +1106.3869 Materials Science +1106.3871 Experiment +1106.3872 Phenomenology +1106.3875 Cosmology and Nongalactic Astrophysics +1106.3876 Artificial Intelligence +1106.3881 Instrumentation and Detectors +1106.3887 Phenomenology +1106.3893 Statistical Mechanics +1106.3899 Probability +1106.3905 Dynamical Systems +1106.3912 Phenomenology +1106.3915 Machine Learning +1106.3920 Commutative Algebra +1106.3922 Commutative Algebra +1106.3932 Artificial Intelligence +1106.3934 Functional Analysis +1106.3940 Other Statistics +1106.3943 Exactly Solvable and Integrable Systems +1106.3948 Geometric Topology +1106.3960 Mesoscale and Nanoscale Physics +1106.3962 Experiment +1106.3969 Algebraic Geometry +1106.3972 Theory +1106.3974 Analysis of PDEs +1106.3976 Materials Science +1106.3981 Information Theory +1106.3992 Computational Physics +1106.3996 General Physics +1106.3997 High Energy Astrophysical Phenomena +1106.4004 Statistical Mechanics +astro-ph/0012022 +astro-ph/0101093 +astro-ph/0107018 +astro-ph/0109239 +astro-ph/0202462 +astro-ph/0205210 +astro-ph/0207127 +astro-ph/0210476 +astro-ph/0302279 +astro-ph/0302511 +astro-ph/0302525 +astro-ph/0306354 +astro-ph/0309657 +astro-ph/0310473 +astro-ph/0311488 +astro-ph/0402435 +astro-ph/0403399 +astro-ph/0602246 +astro-ph/0603070 +astro-ph/0606637 +astro-ph/0612126 +astro-ph/9804031 +astro-ph/9907251 +cond-mat/9205009 +cond-mat/9906453 Mesoscale and Nanoscale Physics +cs/0701143 Information Retrieval +hep-lat/0603018 Lattice +hep-ph/0309149 Phenomenology +hep-ph/0510100 Phenomenology +hep-ph/0603011 Phenomenology +hep-ph/9804379 Phenomenology +hep-th/0011217 Theory +math/0509405 Differential Geometry +math/0608069 Geometric Topology +nucl-ex/9901003 +nucl-th/9906074 +0704.2675 Phenomenology +0706.0580 Networking and Internet Architecture +0710.1324 Differential Geometry +0711.4618 Phenomenology +0802.0385 Probability +0802.1831 Probability +0802.3034 +0803.3392 Phenomenology +0804.3869 +0805.0476 +0808.3921 Theory +0809.0066 +0810.3101 Theory +0810.4956 +0810.5271 Phenomenology +0811.0613 +0812.0520 Phenomenology +0812.1217 +0812.1363 Analysis of PDEs +0812.1367 Analysis of PDEs +0812.3614 Theory +0812.3951 General Physics +0901.0922 Cosmology and Nongalactic Astrophysics +0901.1267 Theory +0901.3011 +0903.0272 Mesoscale and Nanoscale Physics +0903.1649 Analysis of PDEs +0904.0992 Theory +0904.1955 Phenomenology +0904.3375 Phenomenology +0905.1086 High Energy Astrophysical Phenomena +0905.1661 +0905.2673 +0905.3834 Analysis of PDEs +0906.0994 Cosmology and Nongalactic Astrophysics +0906.2180 Analysis of PDEs +0906.3518 Theory +0907.0266 +0907.0822 +0908.4123 Theory +0908.4292 +0909.0065 Probability +0909.0680 Astrophysics of Galaxies +0909.1593 Cosmology and Nongalactic Astrophysics +0909.1787 Mesoscale and Nanoscale Physics +0909.2047 Metric Geometry +0909.2446 High Energy Astrophysical Phenomena +0909.2494 Cosmology and Nongalactic Astrophysics +0909.2747 +0909.2753 +0909.2991 Cosmology and Nongalactic Astrophysics +0909.4301 Cosmology and Nongalactic Astrophysics +0909.4714 Cosmology and Nongalactic Astrophysics +0909.5113 +0909.5196 Cosmology and Nongalactic Astrophysics +0910.0546 Solar and Stellar Astrophysics +0910.1812 +0910.2808 +0910.3317 Cosmology and Nongalactic Astrophysics +0910.3871 Probability +0910.4178 +0910.4474 Phenomenology +0911.0097 Optics +0911.0171 Earth and Planetary Astrophysics +0911.0699 Astrophysics of Galaxies +0911.1210 Instrumentation and Methods for Astrophysics +0911.2118 Theory +0911.2998 Phenomenology +0911.3431 +0911.3551 Popular Physics +0911.3553 +0911.5345 Cosmology and Nongalactic Astrophysics +0911.5566 Cosmology and Nongalactic Astrophysics +0911.5597 +0912.0621 Cosmology and Nongalactic Astrophysics +0912.0739 Cosmology and Nongalactic Astrophysics +0912.1133 Earth and Planetary Astrophysics +0912.1547 Optimization and Control +0912.1662 Instrumentation and Methods for Astrophysics +0912.1678 +0912.1884 Cosmology and Nongalactic Astrophysics +0912.2045 Fluid Dynamics +0912.2214 +0912.2370 Solar and Stellar Astrophysics +0912.2659 Phenomenology +0912.3080 Phenomenology +0912.3105 Phenomenology +0912.3557 Instrumentation and Detectors +0912.4308 Cosmology and Nongalactic Astrophysics +0912.4950 Cosmology and Nongalactic Astrophysics +0912.5431 Cosmology and Nongalactic Astrophysics +1001.2672 +1001.4948 Phenomenology +1002.0530 +1002.0995 Statistical Mechanics +1002.2427 Theory +1002.3725 +1002.4963 Mesoscale and Nanoscale Physics +1002.5032 Phenomenology +1003.0928 Mesoscale and Nanoscale Physics +1003.2106 Statistical Mechanics +1003.4591 +1003.5019 Representation Theory +1003.5752 Theory +1003.5927 Plasma Physics +1004.0516 +1004.1714 +1004.4579 +1005.0685 Superconductivity +1005.1002 Optics +1005.1490 Statistical Mechanics +1005.1967 Number Theory +1005.3714 Theory +1005.4595 Materials Science +1005.4672 Other Condensed Matter +1005.5216 Instrumentation and Detectors +1005.5318 +1005.5724 Mesoscale and Nanoscale Physics +1006.0175 +1006.0219 +1006.1583 +1006.2122 Instrumentation and Detectors +1006.2843 Optics +1006.4150 +1006.4439 +1007.0096 General Mathematics +1007.0716 Optics +1007.1335 +1007.1725 Analysis of PDEs +1007.2335 Theory +1007.2926 Differential Geometry +1007.2985 Theory +1007.3352 Atomic Physics +1008.0133 Dynamical Systems +1008.0349 Cosmology and Nongalactic Astrophysics +1008.0393 Earth and Planetary Astrophysics +1008.0677 +1008.1689 Phenomenology +1008.1888 +1008.2625 Probability +1008.3495 Plasma Physics +1008.3678 +1008.4001 Lattice +1008.4843 Phenomenology +1008.4928 Cosmology and Nongalactic Astrophysics +1008.5129 Theory +1008.5359 Dynamical Systems +1009.0492 +1009.0871 Chemical Physics +1009.0926 Quantum Gases +1009.1946 Statistical Mechanics +1009.2801 Analysis of PDEs +1009.2877 +1009.3653 Instrumentation and Detectors +1009.3730 +1009.4008 Earth and Planetary Astrophysics +1009.5172 +1009.5280 +1010.2673 Disordered Systems and Neural Networks +1010.4103 +1010.4258 Phenomenology +1010.4294 Theory +1011.0400 Phenomenology +1011.0469 Disordered Systems and Neural Networks +1011.1069 Lattice +1011.1148 Phenomenology +1011.1162 +1011.1165 Lattice +1011.1244 +1011.1417 Materials Science +1011.3723 Phenomenology +1011.3947 Functional Analysis +1011.4108 Analysis of PDEs +1011.6461 Software Engineering +1011.6641 Strongly Correlated Electrons +1012.0161 Phenomenology +1012.1376 High Energy Astrophysical Phenomena +1012.1500 Astrophysics of Galaxies +1012.5421 +1012.5431 Theory +1101.1061 Lattice +1101.1384 Theory +1101.1480 +1101.3359 +1101.3669 Statistical Mechanics +1101.4892 +1101.5434 Earth and Planetary Astrophysics +1102.0095 Theory +1102.1714 Combinatorics +1102.2284 Information Theory +1102.2528 Phenomenology +1102.2586 Operator Algebras +1102.3004 +1102.3380 Strongly Correlated Electrons +1102.4000 +1103.0459 General Mathematics +1103.1080 Strongly Correlated Electrons +1103.2192 Geometric Topology +1103.2474 Mesoscale and Nanoscale Physics +1103.5046 Information Retrieval +1103.5820 Differential Geometry +1103.6114 Distributed, Parallel, and Cluster Computing +1104.0208 Materials Science +1104.0282 +1104.0309 +1104.0608 +1104.0940 Strongly Correlated Electrons +1104.0947 Phenomenology +1104.0954 Information Theory +1104.0956 Cosmology and Nongalactic Astrophysics +1104.0967 Solar and Stellar Astrophysics +1104.0970 Optics +1104.0971 Differential Geometry +1104.0977 Materials Science +1104.0979 Quantitative Methods +1104.0987 Soft Condensed Matter +1104.0988 Information Theory +1104.0993 Pattern Formation and Solitons +1104.0995 Materials Science +1104.0996 Differential Geometry +1104.0999 Exactly Solvable and Integrable Systems +1104.1000 +1104.1001 Rings and Algebras +1104.1006 +1104.1012 Analysis of PDEs +1104.1013 Analysis of PDEs +1104.1018 Commutative Algebra +1104.1023 Combinatorics +1104.1030 Materials Science +1104.1031 Networking and Internet Architecture +1104.1033 Geophysics +1104.1043 Probability +1104.1047 Probability +1104.1051 Dynamical Systems +1104.1052 Fluid Dynamics +1104.1058 Operator Algebras +1104.1061 Algebraic Geometry +1104.1064 Probability +1104.1065 Mesoscale and Nanoscale Physics +1104.1066 Group Theory +1104.1068 Representation Theory +1104.1069 Classical Analysis and ODEs +1104.1070 Cryptography and Security +1104.1071 Information Theory +1104.1073 Astrophysics of Galaxies +1104.1074 Information Theory +1104.1075 Information Theory +1104.1077 Complex Variables +1104.1081 Fluid Dynamics +1104.1097 Combinatorics +1104.1099 Probability +1104.1102 Analysis of PDEs +1104.1109 High Energy Astrophysical Phenomena +1104.1110 Other Quantitative Biology +1104.1116 +1104.1117 Materials Science +1104.1118 Cosmology and Nongalactic Astrophysics +1104.1120 Materials Science +1104.1125 Analysis of PDEs +1104.1129 Superconductivity +1104.1131 Representation Theory +1104.1132 Software Engineering +1104.1142 Algebraic Geometry +1104.1143 Other Condensed Matter +1104.1146 +1104.1147 Mesoscale and Nanoscale Physics +1104.1150 +1104.1151 Differential Geometry +1104.1153 Classical Analysis and ODEs +1104.1156 Dynamical Systems +1104.1157 Optimization and Control +1104.1162 Applications +1104.1171 +cond-mat/0210509 Statistical Mechanics +cond-mat/0309663 Mesoscale and Nanoscale Physics +gr-qc/0104060 +gr-qc/0507050 +gr-qc/0612025 +hep-th/0006185 Theory +hep-th/0307264 Theory +math/0612798 Quantum Algebra +0704.3468 Differential Geometry +0705.4007 Theory +0707.3705 Mesoscale and Nanoscale Physics +0707.3963 Differential Geometry +0709.1452 Differential Geometry +0710.4165 Complex Variables +0803.3865 Operator Algebras +0803.3867 +0808.1070 +0808.2400 Mesoscale and Nanoscale Physics +0809.4699 Differential Geometry +0809.4705 Differential Geometry +0811.3880 Group Theory +0811.4470 Differential Geometry +0812.1745 Dynamical Systems +0902.1290 Rings and Algebras +0903.4728 Computational Complexity +0904.1687 Mesoscale and Nanoscale Physics +0907.3457 +0908.0464 Databases +0910.4355 Probability +0911.1518 Differential Geometry +0911.2122 Mesoscale and Nanoscale Physics +0911.2200 Mesoscale and Nanoscale Physics +0912.0674 Phenomenology +1002.1468 Group Theory +1002.4584 General Physics +1004.2109 Geometric Topology +1004.4371 Probability +1005.4366 +1006.1549 Programming Languages +1006.5443 +1006.5881 Mesoscale and Nanoscale Physics +1010.5840 Operator Algebras +1010.6168 Materials Science +1012.2012 Probability +1012.2847 Superconductivity +1012.3069 Analysis of PDEs +1012.5402 +1101.4823 Number Theory +1101.4968 Popular Physics +1102.0181 +1102.3560 +1102.4384 Differential Geometry +1102.4604 Chaotic Dynamics +1103.1135 +1103.1536 Analysis of PDEs +1103.2402 Superconductivity +1103.3254 Physics Education +1103.4069 Statistical Mechanics +1103.4333 Phenomenology +1103.4946 Algebraic Geometry +1103.5088 +1103.5319 Chaotic Dynamics +1104.1128 Materials Science +1104.2088 Theory +1104.2707 Mesoscale and Nanoscale Physics +1104.2927 Theory +1104.3254 +1104.4013 Information Theory +1104.5084 Algebraic Geometry +1105.0299 Quantum Gases +1105.0979 Discrete Mathematics +1105.2115 Phenomenology +1105.2500 Algebraic Geometry +1105.3291 Statistical Mechanics +1105.5943 Phenomenology +1106.1273 Popular Physics +1106.2358 Geometric Topology +1106.2615 +1106.3811 General Topology +1106.4014 Superconductivity +1107.0451 Statistical Mechanics +1107.0572 Mesoscale and Nanoscale Physics +1107.1383 Logic in Computer Science +1107.1438 Phenomenology +1107.4570 Databases +1107.4584 Phenomenology +1107.4687 Computation and Language +1107.5105 Cosmology and Nongalactic Astrophysics +1107.5599 Superconductivity +1107.5679 Data Analysis, Statistics and Probability +1107.5928 Optimization and Control +1108.0326 Earth and Planetary Astrophysics +1108.0518 Phenomenology +1108.1240 +1108.1296 Phenomenology +1108.1603 +1108.2125 Mesoscale and Nanoscale Physics +1108.2617 +1108.3691 Physics and Society +1108.5611 Fluid Dynamics +1108.6218 Number Theory +1109.0340 Mesoscale and Nanoscale Physics +1109.1229 +1109.1512 +1109.3008 Other Condensed Matter +1109.3743 Mesoscale and Nanoscale Physics +1109.4019 K-Theory and Homology +1109.5237 Quantum Gases +1109.6083 Experiment +1109.6280 Astrophysics of Galaxies +1109.6577 +1109.6790 Number Theory +1109.6800 Theory +1110.0438 Geometric Topology +1110.0449 Phenomenology +1110.1093 Experiment +1110.1149 Analysis of PDEs +1110.1380 Cosmology and Nongalactic Astrophysics +1110.1382 Earth and Planetary Astrophysics +1110.1383 Classical Analysis and ODEs +1110.1387 Optimization and Control +1110.1389 Algebraic Geometry +1110.1391 Computation and Language +1110.1394 Computation and Language +1110.1397 Geometric Topology +1110.1398 Experiment +1110.1403 Phenomenology +1110.1409 Physics and Society +1110.1415 Solar and Stellar Astrophysics +1110.1418 Mesoscale and Nanoscale Physics +1110.1427 Phenomenology +1110.1428 Computation and Language +1110.1432 Numerical Analysis +1110.1433 Operator Algebras +1110.1435 Logic +1110.1442 +1110.1444 Solar and Stellar Astrophysics +1110.1446 Rings and Algebras +1110.1458 Classical Analysis and ODEs +1110.1460 Classical Analysis and ODEs +1110.1461 +1110.1465 Phenomenology +1110.1466 Commutative Algebra +1110.1469 Solar and Stellar Astrophysics +1110.1473 +1110.1475 Differential Geometry +1110.1480 +1110.1481 +1110.1484 Classical Analysis and ODEs +1110.1485 Computer Vision and Pattern Recognition +1110.1488 Cryptography and Security +1110.1490 Cryptography and Security +1110.1491 Networking and Internet Architecture +1110.1493 +1110.1495 Cryptography and Security +1110.1496 Networking and Internet Architecture +1110.1497 Cryptography and Security +1110.1498 Cryptography and Security +1110.1502 Cryptography and Security +1110.1503 +1110.1505 +1110.1507 +1110.1509 Computer Vision and Pattern Recognition +1110.1513 Computer Vision and Pattern Recognition +1110.1514 Computer Science and Game Theory +1110.1519 Information Theory +1110.1522 Trading and Market Microstructure +1110.1525 Differential Geometry +1110.1527 Probability +1110.1531 K-Theory and Homology +1110.1534 High Energy Astrophysical Phenomena +1110.1536 Phenomenology +1110.1538 Rings and Algebras +1110.1546 Rings and Algebras +1110.1549 Hardware Architecture +1110.1550 Representation Theory +1110.1557 Operator Algebras +1110.1558 Phenomenology +1110.1560 Networking and Internet Architecture +1110.1562 Atmospheric and Oceanic Physics +1110.1563 Networking and Internet Architecture +1110.1564 Optimization and Control +1110.1569 Networking and Internet Architecture +1110.1576 Differential Geometry +1110.1577 Soft Condensed Matter +1110.1578 Risk Management +1110.1579 Networking and Internet Architecture +1110.1580 Data Structures and Algorithms +1110.1581 High Energy Astrophysical Phenomena +1110.1585 Accelerator Physics +1110.1588 Probability +1110.1590 Networking and Internet Architecture +1110.1592 Solar and Stellar Astrophysics +1110.1594 Cosmology and Nongalactic Astrophysics +1110.1596 Materials Science +1110.1600 Instrumentation and Methods for Astrophysics +1110.1602 Cryptography and Security +1110.1604 Instrumentation and Detectors +1110.1605 Probability +1110.1609 Experiment +1110.1616 Instrumentation and Methods for Astrophysics +1110.1619 Theory +1110.1620 Materials Science +alg-geom/9702002 Algebraic Geometry +cond-mat/0208384 Mesoscale and Nanoscale Physics +cond-mat/0309619 Strongly Correlated Electrons +cond-mat/0407170 Strongly Correlated Electrons +cond-mat/0412346 Mesoscale and Nanoscale Physics +cond-mat/0703381 Mesoscale and Nanoscale Physics +hep-th/0403287 Theory +math/0310214 Operator Algebras +math/0503202 Complex Variables +math/0510078 Differential Geometry +math/0510340 Operator Algebras +math/0511018 Complex Variables +math/0511331 Operator Algebras +math/0609105 Complex Variables +math/0609319 Differential Geometry +math/0610467 Operator Algebras +math/0610468 Operator Algebras +0705.4285 +0708.0465 Differential Geometry +0708.2474 Logic +0710.2183 Statistics Theory +0710.3896 +0802.0491 Theory +0802.2693 Probability +0803.3357 +0804.3061 Theory +0804.4483 +0805.1399 +0805.2299 Theory +0809.2228 Soft Condensed Matter +0811.0804 +0811.4754 Probability +0903.0534 General Physics +0904.0423 +0904.3639 General Physics +0904.4304 Number Theory +0905.3526 Theory +0906.0139 Functional Analysis +0906.2102 +0907.1173 High Energy Astrophysical Phenomena +0907.3231 Trading and Market Microstructure +0908.0355 +0908.0383 Functional Analysis +0908.2903 Cosmology and Nongalactic Astrophysics +0908.4592 Cosmology and Nongalactic Astrophysics +0909.3016 +0909.5220 Instrumentation and Methods for Astrophysics +0909.5430 Theory +0910.1937 +0910.5639 Algebraic Topology +0911.0066 Representation Theory +0911.0442 Theory +0911.1187 +0911.2367 High Energy Astrophysical Phenomena +0911.5037 Geometric Topology +0912.1143 +0912.5118 Theory +0912.5520 +1001.0281 Statistical Mechanics +1001.1068 +1001.2514 Computational Physics +1001.2896 General Physics +1001.5232 Optimization and Control +1002.1034 Representation Theory +1002.1810 History and Philosophy of Physics +1003.5129 Theory +1004.0063 +1004.0496 Phenomenology +1004.4714 High Energy Astrophysical Phenomena +1005.1404 +1005.1586 Numerical Analysis +1005.1708 +1005.2358 +1005.2739 Theory +1005.3009 +1005.3630 Theory +1005.4642 Theory +1005.4839 Phenomenology +1005.5529 Phenomenology +1005.5585 Optics +1006.0099 Theory +1006.2267 Strongly Correlated Electrons +1006.4442 Programming Languages +1006.4986 +1006.5512 Theory +1006.5612 Combinatorics +1006.5849 Theory +1007.0314 +1007.1357 Theory +1007.1372 +1007.4331 Theory +1007.4389 Data Structures and Algorithms +1008.1359 Biomolecules +1008.4128 Theory +1008.4290 Theory +1008.4473 +1008.4808 Number Theory +1009.2953 Phenomenology +1009.4101 Combinatorics +1010.3180 Strongly Correlated Electrons +1010.3672 Phenomenology +1010.4896 Phenomenology +1010.4928 +1010.4941 Phenomenology +1010.4946 Theory +1010.4948 +1010.4958 +1010.4995 Lattice +1011.2152 Distributed, Parallel, and Cluster Computing +1011.3541 High Energy Astrophysical Phenomena +1011.6167 Phenomenology +1012.0750 Mesoscale and Nanoscale Physics +1012.1768 Numerical Analysis +1012.1906 Numerical Analysis +1012.3908 Solar and Stellar Astrophysics +1012.4127 Group Theory +1012.5161 Materials Science +1012.5483 Numerical Analysis +1101.3015 History and Philosophy of Physics +1101.4214 +1101.5102 Theory +1101.5926 Combinatorics +1102.1123 Combinatorics +1102.1766 General Physics +1102.1885 General Mathematics +1102.5390 Methodology +1102.5393 Plasma Physics +1103.0102 Learning +1103.0498 Statistics Theory +1103.0521 Analysis of PDEs +1103.0548 Cosmology and Nongalactic Astrophysics +1103.0560 Experiment +1103.0562 Experiment +1103.0565 Algebraic Geometry +1103.0566 Classical Analysis and ODEs +1103.0567 Number Theory +1103.0568 Adaptation and Self-Organizing Systems +1103.0570 Algebraic Geometry +1103.0571 Optimization and Control +1103.0575 Probability +1103.0577 Statistical Mechanics +1103.0581 Statistical Mechanics +1103.0588 +1103.0590 Complex Variables +1103.0591 Materials Science +1103.0596 Combinatorics +1103.0598 Learning +1103.0599 Quantum Gases +1103.0605 Artificial Intelligence +1103.0610 +1103.0614 Materials Science +1103.0616 Classical Analysis and ODEs +1103.0617 Classical Analysis and ODEs +1103.0618 Classical Analysis and ODEs +1103.0622 Biological Physics +1103.0624 Astrophysics of Galaxies +1103.0627 Materials Science +1103.0633 Databases +1103.0638 +1103.0640 +1103.0643 Phenomenology +1103.0645 +1103.0647 Probability +1103.0650 Differential Geometry +1103.0651 Analysis of PDEs +1103.0652 Numerical Analysis +1103.0655 Analysis of PDEs +1103.0658 Networking and Internet Architecture +1103.0659 Atomic Physics +1103.0662 Instrumentation and Methods for Astrophysics +1103.0663 Solar and Stellar Astrophysics +1103.0667 Optics +1103.0675 Cell Behavior +1103.0676 Logic in Computer Science +1103.0679 Cosmology and Nongalactic Astrophysics +1103.0680 Logic in Computer Science +1103.0681 Materials Science +1103.0685 Quantum Algebra +1103.0686 Databases +1103.0690 Fluid Dynamics +1103.0697 Artificial Intelligence +1103.0709 Combinatorics +1103.0715 General Physics +1103.0716 General Physics +1103.0725 Group Theory +1103.0727 +1103.0730 Logic +1103.0731 +1103.0733 Systems and Control +1103.0736 +1103.0737 General Physics +1103.0738 Computer Vision and Pattern Recognition +1103.0740 Soft Condensed Matter +1103.0741 Discrete Mathematics +1103.0744 Dynamical Systems +1103.0749 Instrumentation and Methods for Astrophysics +1103.0753 Phenomenology +1103.0759 Distributed, Parallel, and Cluster Computing +1103.0766 +1103.0770 Accelerator Physics +astro-ph/9801138 +hep-ph/9306314 Phenomenology +hep-th/9204063 Theory +0706.4447 K-Theory and Homology +0803.0858 Discrete Mathematics +0806.2194 Pattern Formation and Solitons +0811.4039 Computational Finance +0906.3840 Combinatorics +0907.3556 Materials Science +0907.3572 Mesoscale and Nanoscale Physics +0909.3623 Mesoscale and Nanoscale Physics +0911.0702 Soft Condensed Matter +0912.2063 Theory +0912.3697 Exactly Solvable and Integrable Systems +1001.2611 Soft Condensed Matter +1002.0256 Geometric Topology +1002.4850 Probability +1003.3903 Superconductivity +1004.1278 Combinatorics +1004.2342 Artificial Intelligence +1005.1484 Analysis of PDEs +1006.5514 Algebraic Geometry +1007.3059 Dynamical Systems +1008.0142 Number Theory +1008.3498 Strongly Correlated Electrons +1008.4011 Chaotic Dynamics +1008.4681 Chaotic Dynamics +1009.0322 +1009.1179 Strongly Correlated Electrons +1009.3250 Analysis of PDEs +1009.4830 Data Structures and Algorithms +1010.0039 Phenomenology +1010.0616 Physics and Society +1011.1443 +1011.3987 Differential Geometry +1011.4577 Phenomenology +1012.0406 Representation Theory +1012.2405 +1012.5510 Dynamical Systems +1012.5820 Mesoscale and Nanoscale Physics +1102.1750 +1102.3123 High Energy Astrophysical Phenomena +1102.4759 +1102.4902 +1102.5166 Optics +1103.0528 Algebraic Geometry +1103.1315 Complex Variables +1103.4154 Soft Condensed Matter +1103.4592 Atomic Physics +1104.1539 Statistical Mechanics +1104.2195 Dynamical Systems +1104.5043 Computational Geometry +1104.5321 Materials Science +1105.2310 Complex Variables +1105.2380 Representation Theory +1105.2416 Learning +1105.2965 Social and Information Networks +1105.3103 Geometric Topology +1105.3528 +1105.3625 Statistics Theory +1105.3715 Computers and Society +1105.3726 Molecular Networks +1105.3736 Superconductivity +1105.3747 Functional Analysis +1105.3748 Data Structures and Algorithms +1105.3763 +1105.3770 Combinatorics +1105.3774 Logic +1105.3777 Logic +1105.3780 Operator Algebras +1105.3790 Cryptography and Security +1105.3800 +1105.3805 Materials Science +1105.3816 Statistics Theory +1105.3821 Artificial Intelligence +1105.3822 Logic +1105.3823 Phenomenology +1105.3830 +1105.3833 Artificial Intelligence +1105.3834 Computer Vision and Pattern Recognition +1105.3835 Information Theory +1105.3837 Geophysics +1105.3843 Distributed, Parallel, and Cluster Computing +1105.3844 Analysis of PDEs +1105.3846 Phenomenology +1105.3847 Phenomenology +1105.3855 Dynamical Systems +1105.3856 Phenomenology +1105.3863 Mesoscale and Nanoscale Physics +1105.3870 Dynamical Systems +1105.3878 Accelerator Physics +1105.3879 Cryptography and Security +1105.3882 Physics and Society +1105.3884 General Topology +1105.3885 Data Analysis, Statistics and Probability +1105.3892 Probability +1105.3894 Biological Physics +1105.3901 +1105.3916 +1105.3918 Probability +1105.3925 Metric Geometry +1105.3927 Chaotic Dynamics +1105.3938 Algebraic Geometry +1105.3941 Superconductivity +1105.3942 Number Theory +1105.3945 +1105.3949 Geometric Topology +1105.3951 Algebraic Topology +1105.3953 Earth and Planetary Astrophysics +1105.3960 Analysis of PDEs +1105.3963 Probability +1105.3964 History and Philosophy of Physics +1105.3973 Strongly Correlated Electrons +cond-mat/0701370 Soft Condensed Matter +cond-mat/9909034 Statistical Mechanics +cond-mat/9912411 Statistical Mechanics +hep-ph/0502097 Phenomenology +physics/0302013 General Physics +0712.3857 Algebraic Topology +0805.3173 Biological Physics +0809.0480 Differential Geometry +0811.1646 Phenomenology +0812.3461 +0904.0183 Rings and Algebras +0904.2868 +0905.2429 Information Theory +0909.0591 Instrumentation and Methods for Astrophysics +0909.2352 Algebraic Geometry +0911.2841 +0911.2842 +0911.2981 +0912.0637 Algebraic Topology +0912.1248 Phenomenology +0912.2205 Experiment +0912.2386 Experiment +0912.2493 Probability +0912.3088 Mesoscale and Nanoscale Physics +1001.0070 Phenomenology +1001.2898 Experiment +1001.3767 General Physics +1002.2909 Risk Management +1004.1081 Theory +1004.2680 Quantum Gases +1004.2685 Combinatorics +1005.0432 Algebraic Geometry +1005.0778 Statistical Mechanics +1005.3399 Phenomenology +1005.3797 Phenomenology +1005.4412 Theory +1005.4983 Physics Education +1005.5464 Complex Variables +1006.0986 Phenomenology +1006.3675 Theory +1006.5538 +1006.5899 +1007.1411 +1007.2910 Mesoscale and Nanoscale Physics +1007.2944 Phenomenology +1007.2950 Astrophysics of Galaxies +1007.3113 Optics +1007.3559 Lattice +1007.3850 Soft Condensed Matter +1007.3936 Cosmology and Nongalactic Astrophysics +1007.4163 Theory +1008.4066 Theory +1009.1826 Statistical Mechanics +1009.5961 Phenomenology +1009.6190 Theory +1010.0115 +1010.0196 Phenomenology +1010.1159 Theory +1010.1368 Materials Science +1010.4290 Cosmology and Nongalactic Astrophysics +1010.5619 Mesoscale and Nanoscale Physics +1010.5709 Exactly Solvable and Integrable Systems +1010.6060 Cosmology and Nongalactic Astrophysics +1011.0231 Combinatorics +1011.1691 Algebraic Topology +1011.2261 Disordered Systems and Neural Networks +1011.2486 Materials Science +1011.4149 +1011.4998 Solar and Stellar Astrophysics +1011.5614 +1012.1540 Algebraic Topology +1012.1541 Algebraic Topology +1012.2249 +1012.3186 Phenomenology +1012.5461 Superconductivity +1101.0018 Statistical Mechanics +1101.0075 Classical Analysis and ODEs +1101.0326 Space Physics +1101.0391 Methodology +1101.0610 Numerical Analysis +1101.0613 Digital Libraries +1101.0617 Materials Science +1101.0625 +1101.0630 Earth and Planetary Astrophysics +1101.0631 Solar and Stellar Astrophysics +1101.0638 Differential Geometry +1101.0640 Information Theory +1101.0644 Strongly Correlated Electrons +1101.0653 Information Theory +1101.0654 Computers and Society +1101.0656 Applications +1101.0659 Chemical Physics +1101.0662 Accelerator Physics +1101.0663 Graphics +1101.0664 Distributed, Parallel, and Cluster Computing +1101.0666 +1101.0673 Machine Learning +1101.0675 Experiment +1101.0679 Instrumentation and Methods for Astrophysics +1101.0680 Solar and Stellar Astrophysics +1101.0683 Algebraic Geometry +1101.0684 Instrumentation and Methods for Astrophysics +1101.0687 Quantitative Methods +1101.0688 +1101.0689 Statistics Theory +1101.0690 General Physics +1101.0701 Cosmology and Nongalactic Astrophysics +1101.0704 Fluid Dynamics +1101.0707 Cosmology and Nongalactic Astrophysics +1101.0714 Geometric Topology +1101.0718 Astrophysics of Galaxies +1101.0725 Combinatorics +1101.0733 Optics +1101.0734 Optics +1101.0740 Instrumentation and Methods for Astrophysics +1101.0742 Soft Condensed Matter +1101.0749 +1101.0752 Representation Theory +1101.0758 Representation Theory +1101.0766 Information Retrieval +1101.0769 +1101.0770 Classical Analysis and ODEs +1101.0772 Algebraic Topology +1101.0777 Computational Geometry +1101.0795 Operator Algebras +1101.0803 Quantum Algebra +cs/0606067 Data Structures and Algorithms +hep-ph/0008071 Phenomenology +hep-ph/0009144 Phenomenology +hep-ph/0103087 Phenomenology +hep-ph/0105292 Phenomenology +hep-ph/0111115 Phenomenology +hep-ph/0112300 Phenomenology +hep-ph/0204341 Phenomenology +hep-ph/0303254 Phenomenology +hep-ph/0311151 Phenomenology +hep-ph/0312063 Phenomenology +hep-ph/0407323 Phenomenology +hep-ph/0505068 Phenomenology +hep-ph/0512097 Phenomenology +hep-ph/0605009 Phenomenology +hep-ph/9312301 Phenomenology +hep-ph/9408382 Phenomenology +hep-ph/9506374 Phenomenology +hep-ph/9509204 Phenomenology +hep-ph/9602281 Phenomenology +hep-ph/9603417 Phenomenology +hep-ph/9707251 Phenomenology +hep-ph/9712372 Phenomenology +hep-ph/9802391 Phenomenology +hep-ph/9809438 Phenomenology +hep-ph/9809468 Phenomenology +hep-ph/9911245 Phenomenology +q-bio/0310022 Genomics +0707.3995 Mesoscale and Nanoscale Physics +0711.1763 Classical Analysis and ODEs +0712.1732 Data Analysis, Statistics and Probability +0805.4654 Operator Algebras +0901.2211 Algebraic Geometry +0910.1878 Cosmology and Nongalactic Astrophysics +1001.4303 +1001.4521 Information Theory +1001.4548 Information Theory +1002.1522 Optics +1003.2047 Algebraic Geometry +1004.2948 Numerical Analysis +1005.0533 Probability +1006.0962 Functional Analysis +1007.3669 Soft Condensed Matter +1008.3854 Representation Theory +1010.0962 +1010.5539 +1011.3699 Algebraic Geometry +1011.4046 Computational Physics +1012.0282 Cosmology and Nongalactic Astrophysics +1012.2165 Probability +1012.4065 Superconductivity +1101.1695 Computational Physics +1101.2597 Quantitative Methods +1102.2627 +1102.5627 Fluid Dynamics +1103.4321 Phenomenology +1103.5272 +1104.0304 Quantum Gases +1104.4097 Cell Behavior +1105.0506 +1105.1224 Group Theory +1105.6239 Statistics Theory +1106.1501 Analysis of PDEs +1106.2765 Number Theory +1106.3127 Group Theory +1106.3365 Mesoscale and Nanoscale Physics +1106.4456 Analysis of PDEs +1106.4627 +1106.5248 Statistical Mechanics +1106.5652 Statistical Mechanics +1107.0335 Solar and Stellar Astrophysics +1107.2417 Computational Physics +1107.2501 +1107.2820 Mesoscale and Nanoscale Physics +1107.3397 Cosmology and Nongalactic Astrophysics +1107.3756 Theory +1107.4837 General Mathematics +1108.0596 Cosmology and Nongalactic Astrophysics +1108.0779 Physics and Society +1108.1336 Disordered Systems and Neural Networks +1108.1909 Quantum Gases +1108.3990 Exactly Solvable and Integrable Systems +1108.5694 Phenomenology +1108.5701 Biological Physics +1109.1893 Atomic Physics +1109.2728 Algebraic Topology +1109.3004 Materials Science +1109.4781 Phenomenology +1110.0392 General Physics +1110.0542 Phenomenology +1110.2424 Instrumentation and Methods for Astrophysics +1110.3477 Experiment +1110.3885 Optimization and Control +1110.3888 Artificial Intelligence +1110.3919 Computational Physics +1110.4213 Analysis of PDEs +1110.4301 Combinatorics +1110.4319 Data Structures and Algorithms +1110.4368 Classical Physics +1110.4369 Mesoscale and Nanoscale Physics +1110.4380 Quantitative Methods +1110.4399 Analysis of PDEs +1110.4401 Cosmology and Nongalactic Astrophysics +1110.4403 Fluid Dynamics +1110.4406 Mesoscale and Nanoscale Physics +1110.4411 Machine Learning +1110.4412 Computer Science and Game Theory +1110.4415 Experiment +1110.4424 Group Theory +1110.4426 Operator Algebras +1110.4429 Number Theory +1110.4432 Experiment +1110.4435 Dynamical Systems +1110.4441 Systems and Control +1110.4461 Space Physics +1110.4463 Cosmology and Nongalactic Astrophysics +1110.4466 Computational Physics +1110.4473 Logic in Computer Science +1110.4474 Social and Information Networks +1110.4475 Dynamical Systems +1110.4478 Solar and Stellar Astrophysics +1110.4480 Instrumentation and Methods for Astrophysics +1110.4481 Learning +1110.4482 Classical Analysis and ODEs +1110.4483 General Topology +1110.4493 Data Structures and Algorithms +1110.4499 Social and Information Networks +1110.4501 Software Engineering +1110.4507 Numerical Analysis +1110.4511 Group Theory +1110.4512 Theory +1110.4513 Phenomenology +1110.4516 Risk Management +1110.4524 Solar and Stellar Astrophysics +1110.4539 Other Statistics +1110.4543 Lattice +1110.4544 Information Theory +1110.4553 High Energy Astrophysical Phenomena +1110.4563 Materials Science +1110.4569 Experiment +1110.4571 Differential Geometry +1110.4572 Optimization and Control +1110.4578 +1110.4580 +1110.4582 Commutative Algebra +1110.4584 Logic +1110.4587 +1110.4591 Phenomenology +1110.4602 +1110.4605 Biomolecules +1110.4613 Information Theory +1110.4614 Astrophysics of Galaxies +1110.4616 Cosmology and Nongalactic Astrophysics +1110.4618 Analysis of PDEs +1110.4621 Representation Theory +1110.4623 Operating Systems +math/0503316 General Mathematics +math/0702833 Dynamical Systems +0707.2075 Strongly Correlated Electrons +0802.3554 Networking and Internet Architecture +0807.2084 Differential Geometry +0807.3374 Adaptation and Self-Organizing Systems +0809.3487 Quantum Algebra +0812.3935 Disordered Systems and Neural Networks +0901.0638 Computational Finance +0901.0800 +0902.4108 Strongly Correlated Electrons +0903.4548 Strongly Correlated Electrons +0907.2958 Superconductivity +0907.5374 Geometric Topology +0909.0808 Optimization and Control +0909.2616 Soft Condensed Matter +0910.1783 Algebraic Geometry +0910.2359 Strongly Correlated Electrons +0912.3022 Superconductivity +1001.2371 Algebraic Geometry +1001.5015 Superconductivity +1002.0035 Computer Science and Game Theory +1002.3457 Representation Theory +1003.1323 Mesoscale and Nanoscale Physics +1004.0906 Symplectic Geometry +1004.3661 +1004.3713 Probability +1005.1063 Statistical Mechanics +1005.1283 Algebraic Geometry +1006.0524 Probability +1008.0878 +1008.3351 Theory +1009.2456 Representation Theory +1009.3959 Networking and Internet Architecture +1009.6169 Astrophysics of Galaxies +1010.1214 Operator Algebras +1010.2715 Dynamical Systems +1010.5917 Probability +1010.5930 Algebraic Geometry +1011.6535 Soft Condensed Matter +1012.1507 Algebraic Topology +1012.1721 Symplectic Geometry +1012.1918 Materials Science +1012.5056 +1101.0291 Mesoscale and Nanoscale Physics +1102.1621 Information Theory +1102.3665 Theory +1102.4492 Cosmology and Nongalactic Astrophysics +1102.4772 Information Theory +1102.5566 +1103.1094 Soft Condensed Matter +1103.5240 Mesoscale and Nanoscale Physics +1103.5355 Statistical Mechanics +1103.6010 Materials Science +1103.6013 Optics +1104.1935 Phenomenology +1104.3091 Differential Geometry +1105.1155 +1105.2482 +1105.4652 +1105.4865 +1106.1394 Mesoscale and Nanoscale Physics +1106.1624 Soft Condensed Matter +1106.1755 Materials Science +1106.3605 Mesoscale and Nanoscale Physics +1106.3623 Soft Condensed Matter +1106.4681 Combinatorics +1106.5756 +1106.5766 Theory +1107.0519 Fluid Dynamics +1107.0876 Theory +1107.1092 +1107.1315 +1107.1594 Analysis of PDEs +1107.1622 Soft Condensed Matter +1107.1765 Soft Condensed Matter +1107.4403 Strongly Correlated Electrons +1107.5715 Superconductivity +1108.0888 +1108.2183 Strongly Correlated Electrons +1108.2507 Strongly Correlated Electrons +1109.0527 Algebraic Geometry +1109.4865 Analysis of PDEs +1109.6238 Experiment +1109.6310 Information Theory +1109.6613 Biological Physics +1110.3039 Superconductivity +1110.3388 Statistical Mechanics +1110.4201 Computational Complexity +1110.5357 Differential Geometry +1110.6050 Phenomenology +1111.0428 Materials Science +1111.1567 Cellular Automata and Lattice Gases +1111.1687 Machine Learning +1111.2679 Differential Geometry +1111.3857 Analysis of PDEs +1111.3966 Information Theory +1111.3992 Theory +1111.4973 Dynamical Systems +1111.5452 Phenomenology +1112.0542 Theory +1112.0667 Mesoscale and Nanoscale Physics +1112.0990 Strongly Correlated Electrons +1112.1020 Dynamical Systems +1112.1144 Computational Geometry +1112.1182 Atomic Physics +1112.1276 +1112.1344 Information Theory +1112.1360 Discrete Mathematics +1112.1403 Analysis of PDEs +1112.1416 Cosmology and Nongalactic Astrophysics +1112.1421 Algebraic Geometry +1112.1422 Representation Theory +1112.1423 Number Theory +1112.1433 Mesoscale and Nanoscale Physics +1112.1440 Statistical Mechanics +1112.1445 Algebraic Geometry +1112.1448 Category Theory +1112.1452 Symplectic Geometry +1112.1472 Cosmology and Nongalactic Astrophysics +1112.1473 Networking and Internet Architecture +1112.1477 Phenomenology +1112.1480 Networking and Internet Architecture +1112.1484 Computer Vision and Pattern Recognition +1112.1488 Probability +1112.1489 Artificial Intelligence +1112.1490 Statistics Theory +1112.1498 Commutative Algebra +1112.1501 Phenomenology +1112.1502 Data Analysis, Statistics and Probability +1112.1503 Number Theory +1112.1505 Cosmology and Nongalactic Astrophysics +1112.1511 Complex Variables +1112.1513 Superconductivity +1112.1518 Algebraic Geometry +1112.1519 Complex Variables +1112.1520 Computer Science and Game Theory +1112.1526 Applications +1112.1528 Genomics +1112.1535 Computational Geometry +1112.1540 Lattice +1112.1541 Applications +1112.1544 Computation +1112.1545 Combinatorics +1112.1550 +1112.1552 Algebraic Geometry +1112.1555 Algebraic Topology +1112.1563 Statistical Mechanics +1112.1564 Computational Complexity +1112.1567 Representation Theory +1112.1570 +1112.1572 +1112.1586 General Physics +1112.1592 Numerical Analysis +1112.1593 Information Theory +1112.1594 Differential Geometry +1112.1598 Statistical Mechanics +1112.1609 Group Theory +1112.1615 Networking and Internet Architecture +1112.1616 Optics +1112.1618 Disordered Systems and Neural Networks +1112.1623 Materials Science +1112.1625 Soft Condensed Matter +1112.1632 Functional Analysis +1112.1634 Group Theory +1112.1635 Phenomenology +1112.1646 Mesoscale and Nanoscale Physics +1112.1650 Number Theory +1112.1654 Functional Analysis +1112.1655 High Energy Astrophysical Phenomena +1112.1656 Combinatorics +1112.1667 +1112.1668 Databases +1112.1669 Physics and Society +1112.1670 Artificial Intelligence +1112.1673 Algebraic Geometry +1112.1674 Atmospheric and Oceanic Physics +1112.1675 Discrete Mathematics +1112.1678 Metric Geometry +1112.1681 Digital Libraries +1112.1682 +1112.1684 Discrete Mathematics +1112.1686 +1112.1688 Instrumentation and Methods for Astrophysics +cond-mat/0403334 Strongly Correlated Electrons +cond-mat/0502374 Strongly Correlated Electrons +cond-mat/0512193 Strongly Correlated Electrons +cond-mat/0606244 Strongly Correlated Electrons +cond-mat/9211003 +cond-mat/9406068 +math/0607088 Optimization and Control +0801.3719 Disordered Systems and Neural Networks +0803.1313 Differential Geometry +0804.4817 Phenomenology +0805.2388 Theory +0810.0340 Superconductivity +0810.1915 Theory +0810.1943 Theory +0810.2075 Theory +0810.2079 Theory +0810.2091 Theory +0810.2911 +0810.3011 Theory +0810.3220 Theory +0810.3430 Theory +0810.4041 Theory +0810.4160 Theory +0810.4811 Theory +0811.0529 Theory +0812.1085 Dynamical Systems +0812.2878 +0812.3714 Functional Analysis +0903.2038 Functional Analysis +0903.5315 Cosmology and Nongalactic Astrophysics +0904.2744 Theory +0904.3751 Theory +0904.4267 Theory +0906.0097 Theory +0907.3312 Functional Analysis +0907.3913 Functional Analysis +0908.1504 Materials Science +0908.1949 +0909.3174 Disordered Systems and Neural Networks +0910.1002 Cosmology and Nongalactic Astrophysics +0910.4780 Combinatorics +0910.4791 Combinatorics +0910.4879 +0911.2527 Combinatorics +0911.2862 Differential Geometry +0911.2939 Phenomenology +0911.5157 Graphics +1001.3055 Statistical Mechanics +1001.3551 Computational Finance +1004.2700 Functional Analysis +1005.1429 Analysis of PDEs +1005.1629 Theory +1005.3128 +1005.4055 Phenomenology +1005.4495 Statistical Mechanics +1006.2788 Theory +1007.1387 +1007.1419 Phenomenology +1007.1467 +1007.3360 +1007.3996 Theory +1007.4766 Materials Science +1008.1562 +1008.1778 Theory +1008.3107 Materials Science +1008.4325 Phenomenology +1008.4354 Phenomenology +1008.4487 +1008.5322 Phenomenology +1009.0430 Phenomenology +1009.1865 Theory +1009.1936 Phenomenology +1009.2556 Information Theory +1009.2981 Phenomenology +1009.4165 Phenomenology +1009.5579 +1009.6170 Phenomenology +1010.0703 Data Structures and Algorithms +1010.1539 Cosmology and Nongalactic Astrophysics +1010.2917 Strongly Correlated Electrons +1010.3219 Quantum Gases +1010.3647 +1010.3917 Disordered Systems and Neural Networks +1010.5124 +1010.5324 Phenomenology +1010.5335 Statistical Mechanics +1011.0170 +1011.0314 +1011.0546 +1011.0547 Phenomenology +1011.1423 Mesoscale and Nanoscale Physics +1011.1511 Lattice +1011.1534 Lattice +1011.1721 +1011.2766 Theory +1011.4766 Differential Geometry +1011.6211 Cellular Automata and Lattice Gases +1011.6403 Phenomenology +1012.0551 Phenomenology +1012.3170 Quantum Gases +1012.5684 +1012.5825 +1101.1030 +1101.1357 Theory +1101.2361 +1101.2720 Cosmology and Nongalactic Astrophysics +1101.3007 Instrumentation and Methods for Astrophysics +1101.3650 High Energy Astrophysical Phenomena +1101.3721 +1101.4842 High Energy Astrophysical Phenomena +1102.0126 +1102.1729 Theory +1102.3040 +1102.3041 +1102.3545 Strongly Correlated Electrons +1102.3795 Phenomenology +1103.1647 Phenomenology +1103.3182 Theory +1103.3310 Computer Science and Game Theory +1103.3857 Databases +1103.3935 Materials Science +1103.4847 +1103.5114 +1103.5719 Experiment +1103.5860 Materials Science +1104.0127 Logic in Computer Science +1104.0276 Pattern Formation and Solitons +1104.1983 Probability +1104.2023 Mesoscale and Nanoscale Physics +1104.2192 Phenomenology +1104.2660 Mesoscale and Nanoscale Physics +1104.4324 Algebraic Topology +1104.4710 +1104.4893 Metric Geometry +1104.5010 Chaotic Dynamics +1104.5030 Optimization and Control +1104.5032 Complex Variables +1104.5033 Statistical Mechanics +1104.5035 Algebraic Geometry +1104.5036 Statistical Mechanics +1104.5042 Chemical Physics +1104.5044 Quantitative Methods +1104.5054 Number Theory +1104.5064 Applications +1104.5069 Artificial Intelligence +1104.5070 Machine Learning +1104.5074 Instrumentation and Methods for Astrophysics +1104.5075 Mesoscale and Nanoscale Physics +1104.5076 Multiagent Systems +1104.5082 Medical Physics +1104.5095 +1104.5096 Probability +1104.5098 Combinatorics +1104.5100 Classical Analysis and ODEs +1104.5102 High Energy Astrophysical Phenomena +1104.5103 Materials Science +1104.5106 Probability +1104.5111 Data Structures and Algorithms +1104.5113 Combinatorics +1104.5119 Astrophysics of Galaxies +1104.5121 Combinatorics +1104.5123 Phenomenology +1104.5124 Phenomenology +1104.5125 Analysis of PDEs +1104.5128 Functional Analysis +1104.5133 Programming Languages +1104.5135 General Mathematics +1104.5136 Statistics Theory +1104.5139 Databases +1104.5143 Materials Science +1104.5144 +1104.5145 Classical Analysis and ODEs +1104.5146 Superconductivity +1104.5150 Networking and Internet Architecture +1104.5153 Geophysics +1104.5154 Fluid Dynamics +1104.5159 Algebraic Geometry +1104.5162 Disordered Systems and Neural Networks +1104.5164 Phenomenology +1104.5178 Number Theory +1104.5179 Differential Geometry +1104.5180 Statistical Mechanics +1104.5186 Machine Learning +1104.5195 Functional Analysis +1104.5198 +1104.5206 Classical Physics +1104.5216 Quantitative Methods +1104.5223 Representation Theory +astro-ph/0702493 +hep-th/0611301 Theory +math-ph/0006032 +math/0402387 Algebraic Geometry +math/0609829 Algebraic Geometry +physics/0604156 Chemical Physics +0705.1210 Algebraic Geometry +0706.4060 Algebraic Geometry +0708.3762 Phenomenology +0708.3999 +0709.2663 Probability +0710.2861 Probability +0711.4851 Theory +0712.2708 Applications +0802.3927 +0804.0600 Algebraic Geometry +0806.2792 Mesoscale and Nanoscale Physics +0807.0264 Lattice +0807.1111 Theory +0809.0539 Information Theory +0811.4217 Classical Analysis and ODEs +0812.1578 +0812.2160 Lattice +0901.1496 +0901.3538 Strongly Correlated Electrons +0903.4972 +0903.5478 +0904.0298 +0904.3053 Other Condensed Matter +0904.3601 +0904.4009 +0905.0999 +0905.2041 Cosmology and Nongalactic Astrophysics +0906.5086 Classical Physics +0907.0713 +0907.1842 Soft Condensed Matter +0907.4651 Theory +0908.3921 Theory +0909.3707 Analysis of PDEs +0910.3608 Theory +0911.0299 +0911.0300 +0911.2002 Cosmology and Nongalactic Astrophysics +0912.0071 Learning +0912.1035 High Energy Astrophysical Phenomena +1001.0848 Phenomenology +1001.1759 Phenomenology +1001.1954 Probability +1001.2220 +1001.2649 Phenomenology +1001.3430 +1001.4382 Information Theory +1002.0272 Representation Theory +1002.0292 Phenomenology +1003.0157 +1003.5191 Mesoscale and Nanoscale Physics +1004.1388 +1004.1752 Information Theory +1004.3311 High Energy Astrophysical Phenomena +1004.3405 Theory +1005.1224 Phenomenology +1005.1905 Strongly Correlated Electrons +1005.3093 Information Theory +1005.3288 Experiment +1005.3772 Phenomenology +1005.4770 Superconductivity +1005.4930 Phenomenology +1006.1400 +1006.1536 Theory +1006.2171 Phenomenology +1006.2201 +1006.2246 Plasma Physics +1006.2631 Combinatorics +1006.4094 Strongly Correlated Electrons +1006.4459 Group Theory +1006.4603 +1006.5223 Geometric Topology +1006.5631 +1007.0045 Phenomenology +1007.0758 Phenomenology +1007.1180 +1007.2150 +1007.2399 +1007.3095 Phenomenology +1007.3211 +1007.3341 Networking and Internet Architecture +1007.3901 Phenomenology +1007.4915 Combinatorics +1007.5142 Theory +1007.5457 Quantum Gases +1008.0068 Phenomenology +1008.1106 Strongly Correlated Electrons +1008.1509 +1008.1841 Phenomenology +1008.2828 Theory +1008.3181 Theory +1008.3412 +1008.3869 Phenomenology +1008.4034 Cosmology and Nongalactic Astrophysics +1008.4072 Phenomenology +1008.4094 Cosmology and Nongalactic Astrophysics +1008.4272 Phenomenology +1008.4520 +1008.4639 +1008.4875 +1008.4894 +1009.0105 +1009.0225 +1009.0268 Theory +1009.0500 Other Condensed Matter +1009.0526 Theory +1009.0651 Theory +1009.0868 Experiment +1009.1197 Strongly Correlated Electrons +1009.1985 +1009.2197 Lattice +1009.2214 +1009.2419 Chaotic Dynamics +1009.2468 +1009.2478 Other Condensed Matter +1009.3020 Cosmology and Nongalactic Astrophysics +1009.3157 Experiment +1009.3350 Experiment +1009.3364 +1009.4729 Phenomenology +1009.4800 Statistical Mechanics +1009.5256 Experiment +1009.5510 +1009.5575 Optics +1009.6056 +1010.0152 Number Theory +1010.0174 High Energy Astrophysical Phenomena +1010.0309 Phenomenology +1010.0689 +1010.0832 Soft Condensed Matter +1010.1451 +1010.1512 Probability +1010.1840 +1010.1846 +1010.2041 +1010.2165 +1010.2229 Experiment +1010.2366 Lattice +1010.2698 +1010.3074 General Physics +1010.3187 +1010.3225 Physics and Society +1010.3271 +1010.3359 Theory +1010.3397 Phenomenology +1010.3625 Lattice +1010.3701 Phenomenology +1010.3712 +1010.3768 Lattice +1010.4002 Mesoscale and Nanoscale Physics +1010.4193 +1010.4194 +1010.4318 Mesoscale and Nanoscale Physics +1010.4776 +1010.5123 Phenomenology +1010.5149 +1010.5200 +1010.5438 +1010.5495 Cosmology and Nongalactic Astrophysics +1010.5662 Cosmology and Nongalactic Astrophysics +1010.5827 Phenomenology +1010.5911 Theory +1011.0353 Theory +1011.0434 Cosmology and Nongalactic Astrophysics +1011.0806 Astrophysics of Galaxies +1011.1257 Cosmology and Nongalactic Astrophysics +1011.1504 Cosmology and Nongalactic Astrophysics +1011.1821 Phenomenology +1011.1910 Phenomenology +1011.3076 Phenomenology +1011.3613 Phenomenology +1011.4042 Probability +1011.4180 Theory +1011.4566 Cosmology and Nongalactic Astrophysics +1011.4658 Combinatorics +1011.4706 Theory +1011.4801 General Physics +1011.5399 +1011.5627 Solar and Stellar Astrophysics +1011.5945 Theory +1011.5969 Instrumentation and Detectors +1012.0150 Phenomenology +1012.0485 Theory +1012.0552 Phenomenology +1012.1966 Theory +1012.2204 Instrumentation and Methods for Astrophysics +1012.2485 Phenomenology +1012.3150 Algebraic Geometry +1012.4223 Mesoscale and Nanoscale Physics +1012.4365 Phenomenology +1012.5139 Statistical Mechanics +1012.5145 Experiment +1012.5355 +1101.0058 Combinatorics +1101.0555 Phenomenology +1101.0963 Theory +1101.1052 +1101.1583 Cosmology and Nongalactic Astrophysics +1101.1736 +1101.2806 Lattice +1101.3063 Physics and Society +1101.3436 Cosmology and Nongalactic Astrophysics +1101.3592 Phenomenology +1101.4673 Mesoscale and Nanoscale Physics +1101.5824 Differential Geometry +1102.0255 Soft Condensed Matter +1102.2114 Multiagent Systems +1102.2131 Distributed, Parallel, and Cluster Computing +1102.2776 Fluid Dynamics +1102.3295 Optimization and Control +1102.3384 Mesoscale and Nanoscale Physics +1102.3422 Pattern Formation and Solitons +1102.3437 Analysis of PDEs +1102.3441 +1102.3445 Mesoscale and Nanoscale Physics +1102.3446 Analysis of PDEs +1102.3447 Representation Theory +1102.3450 Symplectic Geometry +1102.3452 +1102.3461 Probability +1102.3463 Computational Complexity +1102.3465 Logic in Computer Science +1102.3469 Algebraic Geometry +1102.3485 Solar and Stellar Astrophysics +1102.3490 +1102.3491 Data Structures and Algorithms +1102.3497 Plasma Physics +1102.3499 Computer Science and Game Theory +1102.3500 Information Theory +1102.3505 Superconductivity +1102.3506 Superconductivity +1102.3509 Probability +1102.3510 Phenomenology +1102.3513 Information Theory +1102.3517 Probability +1102.3518 Analysis of PDEs +1102.3522 Formal Languages and Automata Theory +1102.3524 Strongly Correlated Electrons +1102.3525 Group Theory +1102.3528 Algebraic Geometry +1102.3533 Networking and Internet Architecture +1102.3537 Data Structures and Algorithms +1102.3538 Networking and Internet Architecture +1102.3541 Computational Finance +1102.3549 Algebraic Topology +1102.3552 Probability +1102.3558 Cosmology and Nongalactic Astrophysics +1102.3559 Algebraic Geometry +1102.3563 Distributed, Parallel, and Cluster Computing +1102.3567 Solar and Stellar Astrophysics +1102.3568 History and Overview +1102.3569 Information Theory +1102.3570 Soft Condensed Matter +1102.3574 Group Theory +1102.3575 Mesoscale and Nanoscale Physics +1102.3579 Information Theory +1102.3582 Risk Management +1102.3587 +1102.3592 Methodology +1102.3600 General Physics +1102.3601 Probability +1102.3605 Information Theory +1102.3607 Networking and Internet Architecture +1102.3608 Complex Variables +1102.3609 +1102.3613 Probability +1102.3621 Functional Analysis +1102.3622 Rings and Algebras +1102.3623 Algebraic Geometry +1102.3626 Group Theory +1102.3630 Quantum Gases +1102.3632 Computer Science and Game Theory +1102.3639 Representation Theory +1102.3647 Cosmology and Nongalactic Astrophysics +1102.3649 Instrumentation and Detectors +1102.3666 High Energy Astrophysical Phenomena +1102.3668 Probability +1102.3670 Computational Geometry +1102.3679 Phenomenology +1102.3681 Probability +1102.3682 Probability +1102.3687 Materials Science +hep-ph/0311183 Phenomenology +hep-th/0203218 Theory +hep-th/0502021 Theory +hep-th/0602236 Theory +math-ph/0601019 +math-ph/0609037 +math/0112315 Probability +math/0204089 Probability +math/0207009 Probability +math/0211435 Probability +math/0306263 Probability +math/0504027 Probability +math/0506058 Algebraic Geometry +math/0508554 Algebraic Geometry +math/0607660 Algebraic Geometry +math/9902126 Probability +0712.0462 Populations and Evolution +0801.1331 +0806.1450 Superconductivity +0808.1654 Combinatorics +0809.1972 +0809.2596 Theory +0810.4105 Geometric Topology +0811.0606 Geometric Topology +0812.1171 Algebraic Geometry +0812.4320 Phenomenology +0901.0145 Materials Science +0901.4185 Soft Condensed Matter +0902.4173 Theory +0903.3721 +0905.1623 Theory +0905.1901 Theory +0907.4573 Data Structures and Algorithms +0908.3569 Exactly Solvable and Integrable Systems +0908.4205 Geometric Topology +0909.0914 Solar and Stellar Astrophysics +0909.3427 Mesoscale and Nanoscale Physics +0909.4821 Statistics Theory +0910.1542 Theory +0910.1710 Probability +0910.4959 Probability +0910.5333 Mesoscale and Nanoscale Physics +0911.0179 Dynamical Systems +0911.0182 Dynamical Systems +0911.0393 Geometric Topology +0911.3107 Probability +0911.3722 Group Theory +0911.4075 General Topology +0911.4081 General Topology +1001.0557 Category Theory +1001.2522 Geometric Topology +1002.0041 Materials Science +1002.1777 Quantum Algebra +1002.2802 Geometric Topology +1002.3352 General Topology +1003.1000 Classical Analysis and ODEs +1003.2588 Combinatorics +1003.5341 General Topology +1004.0904 Operator Algebras +1004.2126 Dynamical Systems +1004.2230 Representation Theory +1004.4363 Mesoscale and Nanoscale Physics +1005.0882 Group Theory +1005.1082 Optimization and Control +1005.1308 +1005.1423 Differential Geometry +1005.4610 +1006.0253 Analysis of PDEs +1006.2118 Strongly Correlated Electrons +1006.3089 Functional Analysis +1006.3411 Superconductivity +1006.4500 Theory +1006.4799 Atomic Physics +1006.4806 +1006.4887 Optics +1007.0518 Theory +1008.0108 Functional Analysis +1008.4124 Materials Science +1008.5196 Information Theory +1009.0303 Biomolecules +1009.1783 Algebraic Geometry +1009.2486 Number Theory +1009.4039 +1009.5041 Theory +1009.6181 Algebraic Geometry +1010.1359 Combinatorics +1010.2355 +1010.3182 Quantum Algebra +1010.3418 Analysis of PDEs +1011.1387 Superconductivity +1011.2585 Group Theory +1011.3990 Instrumentation and Methods for Astrophysics +1011.4554 General Topology +1011.4555 General Topology +1011.5003 Classical Analysis and ODEs +1011.5188 Computation and Language +1011.5259 +1011.5483 Atomic Physics +1011.6072 Spectral Theory +1012.1798 Combinatorics +1012.2122 +1012.2522 General Topology +1012.2550 Group Theory +1012.3426 Representation Theory +1101.0702 Quantum Gases +1101.1585 Strongly Correlated Electrons +1101.3482 Number Theory +1101.4105 +1102.0084 Mesoscale and Nanoscale Physics +1102.0162 Soft Condensed Matter +1102.0353 +1102.0408 Cosmology and Nongalactic Astrophysics +1102.3770 Rings and Algebras +1102.3889 Superconductivity +1102.4050 Optimization and Control +1102.5026 Functional Analysis +1103.1277 +1103.2107 Atomic Physics +1103.2710 Mesoscale and Nanoscale Physics +1103.4795 General Physics +1103.5944 Quantum Gases +1103.6120 Materials Science +1104.0051 Mesoscale and Nanoscale Physics +1104.0742 Physics and Society +1104.1778 Complex Variables +1104.2625 Risk Management +1104.2627 Quantum Gases +1104.2868 +1104.2870 +1104.3407 Mesoscale and Nanoscale Physics +1104.3981 Phenomenology +1104.4034 Exactly Solvable and Integrable Systems +1104.4750 +1104.4955 Theory +1104.5415 Information Theory +1104.5518 Mesoscale and Nanoscale Physics +1104.5616 Information Theory +1105.0172 General Physics +1105.0894 +1105.1233 Geophysics +1105.1299 +1105.2043 Materials Science +1105.2227 Strongly Correlated Electrons +1105.2933 Molecular Networks +1105.3786 Phenomenology +1105.3826 Materials Science +1105.4119 Probability +1105.4294 History and Overview +1105.4852 Theory +1105.5531 Mesoscale and Nanoscale Physics +1106.0805 Exactly Solvable and Integrable Systems +1106.1088 Materials Science +1106.4377 Complex Variables +1106.4389 Mesoscale and Nanoscale Physics +1106.4927 Computational Geometry +1106.5290 Phenomenology +1107.0442 History and Philosophy of Physics +1107.1159 Probability +1107.1750 Physics and Society +1107.2404 Cosmology and Nongalactic Astrophysics +1107.4509 Experiment +1107.4673 Theory +1107.4723 Computation and Language +1107.4757 Algebraic Geometry +1108.0746 Number Theory +1108.0772 Methodology +1108.1523 Geometric Topology +1108.2086 Materials Science +1108.2478 Dynamical Systems +1108.2738 Statistical Mechanics +1108.2860 Algebraic Geometry +1108.3535 Classical Analysis and ODEs +1108.3825 Instrumentation and Detectors +1108.3865 Atomic Physics +1108.3929 Optics +1108.4033 Experiment +1108.4042 Differential Geometry +1108.4045 Combinatorics +1108.4047 Combinatorics +1108.4048 Systems and Control +1108.4050 Instrumentation and Methods for Astrophysics +1108.4051 Solar and Stellar Astrophysics +1108.4052 Computation and Language +1108.4053 Dynamical Systems +1108.4054 Probability +1108.4056 Discrete Mathematics +1108.4065 Dynamical Systems +1108.4066 Classical Analysis and ODEs +1108.4067 Functional Analysis +1108.4069 Probability +1108.4072 Functional Analysis +1108.4076 Cryptography and Security +1108.4077 Logic in Computer Science +1108.4079 Computer Vision and Pattern Recognition +1108.4080 Neural and Evolutionary Computing +1108.4081 Theory +1108.4082 Computational Physics +1108.4086 Probability +1108.4089 Complex Variables +1108.4090 Complex Variables +1108.4091 Soft Condensed Matter +1108.4092 Geometric Topology +1108.4096 Information Theory +1108.4100 Cryptography and Security +1108.4102 Portfolio Management +1108.4105 Functional Analysis +1108.4109 Classical Analysis and ODEs +1108.4113 Pricing of Securities +1108.4118 Chaotic Dynamics +1108.4120 Superconductivity +1108.4122 Materials Science +1108.4123 Classical Analysis and ODEs +1108.4127 Geometric Topology +1108.4128 Cosmology and Nongalactic Astrophysics +1108.4131 Dynamical Systems +1108.4138 Networking and Internet Architecture +1108.4139 Other Computer Science +1108.4141 Materials Science +1108.4149 +1108.4155 Experiment +1108.4157 Theory +1108.4161 Theory +1108.4166 +1108.4167 Neurons and Cognition +1108.4168 Information Theory +1108.4175 +1108.4178 Number Theory +1108.4182 Materials Science +1108.4190 Strongly Correlated Electrons +1108.4191 Optimization and Control +1108.4192 Dynamical Systems +1108.4202 Rings and Algebras +1108.4208 Exactly Solvable and Integrable Systems +1108.4209 Numerical Analysis +1108.4211 Algebraic Geometry +1108.4215 Computation +1108.4217 Data Structures and Algorithms +1108.4220 Artificial Intelligence +1108.4222 High Energy Astrophysical Phenomena +1108.4225 Spectral Theory +1108.4226 Networking and Internet Architecture +1108.4227 Algebraic Geometry +1108.4228 +1108.4231 Differential Geometry +1108.4232 Differential Geometry +1108.4253 Logic in Computer Science +1108.4258 Statistical Mechanics +1108.4259 Strongly Correlated Electrons +1108.4261 Exactly Solvable and Integrable Systems +1108.4268 Commutative Algebra +1108.4279 Artificial Intelligence +1108.4280 Materials Science +1108.4281 Combinatorics +1108.4285 Solar and Stellar Astrophysics +1108.4286 Cell Behavior +1108.4287 +1108.4295 Experiment +1108.4296 Neurons and Cognition +1108.4297 Computation and Language +1108.4298 Analysis of PDEs +1108.4299 Biological Physics +1108.4305 Biological Physics +1108.4309 Cosmology and Nongalactic Astrophysics +1108.4311 Superconductivity +1108.4315 Computer Vision and Pattern Recognition +1108.4316 Statistical Mechanics +1108.4317 Probability +1108.4323 +1108.4328 Soft Condensed Matter +1108.4330 Strongly Correlated Electrons +1108.4331 Astrophysics of Galaxies +1108.4336 Computational Geometry +1108.4339 Group Theory +1108.4346 Algebraic Topology +1108.4358 Data Structures and Algorithms +1108.4359 +1108.4364 Probability +1108.4373 Combinatorics +1108.4377 Cosmology and Nongalactic Astrophysics +1108.4380 Algebraic Geometry +1108.4382 Combinatorics +1108.4383 Combinatorics +1108.4387 Geometric Topology +1108.4389 Theory +1108.4396 Computational Physics +1108.4407 Atomic Physics +1108.4408 Data Structures and Algorithms +astro-ph/0001469 +astro-ph/0002133 +astro-ph/0006065 +astro-ph/0006316 +astro-ph/0008305 +astro-ph/0009505 +astro-ph/0010468 +astro-ph/0207040 +astro-ph/0209429 +astro-ph/0210287 +astro-ph/0210377 +astro-ph/0210525 +astro-ph/0211168 +astro-ph/0301271 +astro-ph/0305496 +astro-ph/0403385 +astro-ph/0404268 +astro-ph/0407428 +astro-ph/0408359 +astro-ph/0409153 +astro-ph/0409743 +astro-ph/0501439 +astro-ph/0506015 +astro-ph/0506103 +astro-ph/0604311 +astro-ph/9811367 +astro-ph/9907411 +gr-qc/0010059 +hep-ph/0406187 Phenomenology +hep-ph/0411352 Phenomenology +hep-ph/0501233 Phenomenology +hep-ph/0503297 Phenomenology +hep-ph/0507233 Phenomenology +math-ph/0007040 +math/0604109 Dynamical Systems +math/0703138 Differential Geometry +nucl-ex/0408014 +nucl-th/0306065 +physics/0610253 Atomic Physics +0704.1890 Computational Physics +0704.2999 Phenomenology +0705.3652 Optics +0706.0319 Logic +0706.0859 Algebraic Geometry +0706.1119 Computational Engineering, Finance, and Science +0706.2270 +0707.1486 Spectral Theory +0709.0699 +0710.3792 Probability +0710.4240 Lattice +0711.0686 +0711.1953 Spectral Theory +0711.4127 Classical Analysis and ODEs +0712.1740 +0801.3309 Geometric Topology +0801.3854 Combinatorics +0802.1494 Optics +0803.3503 Mesoscale and Nanoscale Physics +0804.1575 Phenomenology +0805.2437 +0805.3060 +0805.3777 Algebraic Geometry +0806.2096 Combinatorics +0806.3700 Complex Variables +0808.3244 Combinatorics +0809.0259 Combinatorics +0809.1806 Combinatorics +0809.2749 Algebraic Geometry +0809.4933 Differential Geometry +0810.0219 Theory +0810.2717 Combinatorics +0811.0485 Phenomenology +0811.0782 +0811.2158 Complex Variables +0811.4089 Combinatorics +0811.4432 Functional Analysis +0812.1961 +0812.2870 Discrete Mathematics +0902.1935 +0903.0599 +0903.1463 Algebraic Geometry +0903.2523 Geometric Topology +0904.4819 Combinatorics +0905.1024 Combinatorics +0905.2169 Algebraic Geometry +0905.3487 Combinatorics +0905.4435 Theory +0906.0180 Statistics Theory +0906.1053 Digital Libraries +0906.2854 Functional Analysis +0906.4047 +0906.4609 Combinatorics +0906.5103 Analysis of PDEs +0907.0302 Algebraic Geometry +0907.2732 Statistical Mechanics +0908.0327 Cosmology and Nongalactic Astrophysics +0908.1313 Combinatorics +0908.3566 Functional Analysis +0908.4101 Differential Geometry +0909.1867 Functional Analysis +0910.0386 Algebraic Topology +0910.0964 +0910.4768 Functional Analysis +0910.5044 K-Theory and Homology +0911.3144 Physics and Society +0912.0771 +0912.2243 +0912.4287 Complex Variables +0912.4827 Group Theory +0912.4961 +0912.5005 Phenomenology +1001.0295 +1001.0579 Phenomenology +1001.2652 +1001.4023 Digital Libraries +1001.4115 Operating Systems +1001.5147 +1001.5347 Strongly Correlated Electrons +1002.0462 Cosmology and Nongalactic Astrophysics +1002.0852 Information Theory +1002.1490 +1002.2130 Theory +1003.0148 Group Theory +1003.3852 Probability +1003.4248 +1003.5043 General Physics +1003.5140 Superconductivity +1003.5213 +1004.1252 Statistical Mechanics +1004.1430 Combinatorics +1004.1624 Instrumentation and Methods for Astrophysics +1004.2733 +1004.5001 Materials Science +1005.0359 Instrumentation and Methods for Astrophysics +1005.0542 Numerical Analysis +1005.1007 Phenomenology +1005.2682 +1005.3024 Theory +1005.3035 Theory +1005.3125 Materials Science +1005.3165 Cosmology and Nongalactic Astrophysics +1005.3555 Theory +1005.4795 Strongly Correlated Electrons +1005.5491 +1006.0718 Theory +1006.1230 +1006.1438 Quantum Gases +1006.2479 Statistical Mechanics +1006.2480 Statistical Mechanics +1006.3226 Cosmology and Nongalactic Astrophysics +1006.4219 Mesoscale and Nanoscale Physics +1006.4763 Cosmology and Nongalactic Astrophysics +1006.5740 Number Theory +1006.5791 Physics and Society +1007.0025 Phenomenology +1007.0500 Theory +1007.0937 +1007.1358 +1007.1585 Phenomenology +1007.1931 Quantum Algebra +1007.2839 General Physics +1008.0949 +1008.1004 Data Analysis, Statistics and Probability +1008.1067 Statistical Mechanics +1008.1136 Materials Science +1008.1624 Lattice +1008.3342 Instrumentation and Detectors +1008.3645 Medical Physics +1008.3809 Numerical Analysis +1008.4622 +1008.4623 Instrumentation and Methods for Astrophysics +1008.4835 +1009.2493 +1009.2588 Numerical Analysis +1009.2669 Mesoscale and Nanoscale Physics +1009.2698 Computation +1009.4356 Strongly Correlated Electrons +1009.5067 Phenomenology +1009.6192 Lattice +1010.1143 +1010.1715 +1010.1719 +1010.2544 Solar and Stellar Astrophysics +1010.2553 +1010.2578 Phenomenology +1010.2596 +1010.2614 Phenomenology +1010.2618 +1010.2625 +1010.2650 +1010.2659 Phenomenology +1010.2744 Phenomenology +1010.5488 Differential Geometry +1011.0071 Functional Analysis +1011.1024 +1011.1222 Solar and Stellar Astrophysics +1011.1489 Statistical Mechanics +1011.4469 Superconductivity +1011.6543 Computer Science and Game Theory +1012.0094 Number Theory +1012.0641 High Energy Astrophysical Phenomena +1012.2075 Statistical Mechanics +1012.2761 Optics +1012.2775 +1012.2777 +1012.3314 Strongly Correlated Electrons +1012.3723 Solar and Stellar Astrophysics +1012.4227 Mesoscale and Nanoscale Physics +1012.5290 Analysis of PDEs +1101.0583 Theory +1101.0605 Distributed, Parallel, and Cluster Computing +1101.0968 Logic in Computer Science +1101.3285 Information Theory +1101.4010 Phenomenology +1101.4236 Cryptography and Security +1101.4248 Materials Science +1101.4251 +1101.4252 +1101.4255 Number Theory +1101.4266 Logic in Computer Science +1101.4268 Classical Analysis and ODEs +1101.4270 Databases +1101.4284 Materials Science +1101.4286 Group Theory +1101.4288 Differential Geometry +1101.4295 Cosmology and Nongalactic Astrophysics +1101.4315 Numerical Analysis +1101.4329 Functional Analysis +1101.4334 Theory +1101.4343 Information Theory +1101.4347 Optimization and Control +1101.4357 Differential Geometry +1101.4368 Methodology +1101.4371 Classical Analysis and ODEs +1101.4372 Information Theory +1101.4374 Dynamical Systems +1101.4376 Optics +1101.4377 Functional Analysis +1101.4381 Analysis of PDEs +1101.4383 Mesoscale and Nanoscale Physics +1101.4393 Combinatorics +1101.4398 Materials Science +1101.4400 General Topology +1101.4402 Representation Theory +1101.4404 High Energy Astrophysical Phenomena +1101.4415 Rings and Algebras +1101.4416 Metric Geometry +1101.4419 Representation Theory +1101.4420 Combinatorics +1101.4423 Logic in Computer Science +1101.4424 Logic in Computer Science +1101.4425 Logic in Computer Science +1101.4426 Logic in Computer Science +1101.4428 Programming Languages +1101.4429 Programming Languages +1101.4430 Programming Languages +1101.4437 Probability +1101.4445 Neural and Evolutionary Computing +1101.4446 Data Structures and Algorithms +1101.4449 Disordered Systems and Neural Networks +1101.4451 Differential Geometry +1101.4465 Logic in Computer Science +1101.4474 Distributed, Parallel, and Cluster Computing +1101.4481 +1101.4483 +1101.4488 +1101.4489 Instrumentation and Methods for Astrophysics +1101.4492 Combinatorics +1101.4501 Symplectic Geometry +1101.4503 Rings and Algebras +1101.4504 General Topology +1101.4516 Complex Variables +1101.4518 Solar and Stellar Astrophysics +1101.4522 +1101.4525 Lattice +1101.4531 Solar and Stellar Astrophysics +1101.4533 +1101.4536 Optimization and Control +1101.4548 General Finance +1101.4552 Functional Analysis +1101.4554 Logic in Computer Science +1101.4563 Probability +1101.4573 Molecular Networks +1101.4575 +1101.4581 Algebraic Geometry +1101.4583 Cosmology and Nongalactic Astrophysics +1101.4592 Experiment +1101.4593 Chaotic Dynamics +1101.4596 Chaotic Dynamics +1101.4597 +1101.4605 Number Theory +1101.4607 Statistics Theory +1101.4616 Statistics Theory +1101.4621 Combinatorics +1101.4629 Cosmology and Nongalactic Astrophysics +1101.4632 Cryptography and Security +1101.4634 +1101.4640 Cryptography and Security +1101.4642 Theory +cond-mat/0506235 Strongly Correlated Electrons +cond-mat/0609534 Mesoscale and Nanoscale Physics +cs/0607069 Cryptography and Security +hep-ex/0206032 Experiment +hep-ex/0308075 Experiment +hep-ex/0309018 Experiment +hep-ex/0702047 Experiment +hep-ex/9604010 Experiment +hep-ex/9905051 Experiment +hep-ex/9911010 Experiment +hep-ph/0001133 Phenomenology +hep-ph/0001312 Phenomenology +hep-ph/0003124 Phenomenology +hep-ph/0003253 Phenomenology +hep-ph/0007238 Phenomenology +hep-ph/0008283 Phenomenology +hep-ph/0009085 Phenomenology +hep-ph/0009117 Phenomenology +hep-ph/0009258 Phenomenology +hep-ph/0011265 Phenomenology +hep-ph/0012305 Phenomenology +hep-ph/0101240 Phenomenology +hep-ph/0102009 Phenomenology +hep-ph/0103177 Phenomenology +hep-ph/0107028 Phenomenology +hep-ph/0107159 Phenomenology +hep-ph/0108205 Phenomenology +hep-ph/0109061 Phenomenology +hep-ph/0110084 Phenomenology +hep-ph/0110320 Phenomenology +hep-ph/0111232 Phenomenology +hep-ph/0111357 Phenomenology +hep-ph/0112276 Phenomenology +hep-ph/0201159 Phenomenology +hep-ph/0203050 Phenomenology +hep-ph/0203132 Phenomenology +hep-ph/0204065 Phenomenology +hep-ph/0204125 Phenomenology +hep-ph/0206129 Phenomenology +hep-ph/0206220 Phenomenology +hep-ph/0206241 Phenomenology +hep-ph/0207152 Phenomenology +hep-ph/0208154 Phenomenology +hep-ph/0208278 Phenomenology +hep-ph/0209022 Phenomenology +hep-ph/0209135 Phenomenology +hep-ph/0210233 Phenomenology +hep-ph/0210236 Phenomenology +hep-ph/0210319 Phenomenology +hep-ph/0211035 Phenomenology +hep-ph/0211363 Phenomenology +hep-ph/0211422 Phenomenology +hep-ph/0212115 Phenomenology +hep-ph/0212123 Phenomenology +hep-ph/0305045 Phenomenology +hep-ph/0305201 Phenomenology +hep-ph/0305332 Phenomenology +hep-ph/0306014 Phenomenology +hep-ph/0306305 Phenomenology +hep-ph/0307090 Phenomenology +hep-ph/0307129 Phenomenology +hep-ph/0308056 Phenomenology +hep-ph/0308124 Phenomenology +hep-ph/0308315 Phenomenology +hep-ph/0309162 Phenomenology +hep-ph/0309207 Phenomenology +hep-ph/0309276 Phenomenology +hep-ph/0310007 Phenomenology +hep-ph/0310029 Phenomenology +hep-ph/0310077 Phenomenology +hep-ph/0310115 Phenomenology +hep-ph/0311004 Phenomenology +hep-ph/0312066 Phenomenology +hep-ph/0312137 Phenomenology +hep-ph/0403195 Phenomenology +hep-ph/0403229 Phenomenology +hep-ph/0404031 Phenomenology +hep-ph/0405045 Phenomenology +hep-ph/0405058 Phenomenology +hep-ph/0405281 Phenomenology +hep-ph/0406157 Phenomenology +hep-ph/0407046 Phenomenology +hep-ph/0407176 Phenomenology +hep-ph/0408021 Phenomenology +hep-ph/0409066 Phenomenology +hep-ph/0410012 Phenomenology +hep-ph/0410019 Phenomenology +hep-ph/0410115 Phenomenology +hep-ph/0410199 Phenomenology +hep-ph/0411405 Phenomenology +hep-ph/0412275 Phenomenology +hep-ph/0412314 Phenomenology +hep-ph/0501110 Phenomenology +hep-ph/0501171 Phenomenology +hep-ph/0501193 Phenomenology +hep-ph/0501271 Phenomenology +hep-ph/0505014 Phenomenology +hep-ph/0505052 Phenomenology +hep-ph/0505235 Phenomenology +hep-ph/0507084 Phenomenology +hep-ph/0509023 Phenomenology +hep-ph/0509272 Phenomenology +hep-ph/0511183 Phenomenology +hep-ph/0511226 Phenomenology +hep-ph/0511257 Phenomenology +hep-ph/0601229 Phenomenology +hep-ph/9211205 Phenomenology +hep-ph/9212289 Phenomenology +hep-ph/9302306 Phenomenology +hep-ph/9306337 Phenomenology +hep-ph/9307291 Phenomenology +hep-ph/9310350 Phenomenology +hep-ph/9312249 Phenomenology +hep-ph/9401227 Phenomenology +hep-ph/9405302 Phenomenology +hep-ph/9405325 Phenomenology +hep-ph/9405401 Phenomenology +hep-ph/9406273 Phenomenology +hep-ph/9406299 Phenomenology +hep-ph/9406359 Phenomenology +hep-ph/9406405 Phenomenology +hep-ph/9406428 Phenomenology +hep-ph/9407351 Phenomenology +hep-ph/9408306 Phenomenology +hep-ph/9409208 Phenomenology +hep-ph/9409453 Phenomenology +hep-ph/9410387 Phenomenology +hep-ph/9411282 Phenomenology +hep-ph/9411296 Phenomenology +hep-ph/9412249 Phenomenology +hep-ph/9503384 Phenomenology +hep-ph/9504433 Phenomenology +hep-ph/9505279 Phenomenology +hep-ph/9506338 Phenomenology +hep-ph/9507353 Phenomenology +hep-ph/9509229 Phenomenology +hep-ph/9510285 Phenomenology +hep-ph/9510293 Phenomenology +hep-ph/9510399 Phenomenology +hep-ph/9511440 Phenomenology +hep-ph/9512239 Phenomenology +hep-ph/9512251 Phenomenology +hep-ph/9512322 Phenomenology +hep-ph/9512445 Phenomenology +hep-ph/9601306 Phenomenology +hep-ph/9601324 Phenomenology +hep-ph/9602256 Phenomenology +hep-ph/9602403 Phenomenology +hep-ph/9604266 Phenomenology +hep-ph/9604302 Phenomenology +hep-ph/9604347 Phenomenology +hep-ph/9604424 Phenomenology +hep-ph/9605270 Phenomenology +hep-ph/9605297 Phenomenology +hep-ph/9605318 Phenomenology +hep-ph/9606396 Phenomenology +hep-ph/9607328 Phenomenology +hep-ph/9607423 Phenomenology +hep-ph/9608234 Phenomenology +hep-ph/9608406 Phenomenology +hep-ph/9609316 Phenomenology +hep-ph/9609352 Phenomenology +hep-ph/9609388 Phenomenology +hep-ph/9609526 Phenomenology +hep-ph/9610425 Phenomenology +hep-ph/9611317 Phenomenology +hep-ph/9611318 Phenomenology +hep-ph/9612254 Phenomenology +hep-ph/9612449 Phenomenology +hep-ph/9612461 Phenomenology +hep-ph/9701421 Phenomenology +hep-ph/9702222 Phenomenology +hep-ph/9702341 Phenomenology +hep-ph/9703277 Phenomenology +hep-ph/9704203 Phenomenology +hep-ph/9704412 Phenomenology +hep-ph/9705226 Phenomenology +hep-ph/9705446 Phenomenology +hep-ph/9706433 Phenomenology +hep-ph/9707424 Phenomenology +hep-ph/9708265 Phenomenology +hep-ph/9708271 Phenomenology +hep-ph/9708439 Phenomenology +hep-ph/9708448 Phenomenology +hep-ph/9709219 Phenomenology +hep-ph/9709281 Phenomenology +hep-ph/9709282 Phenomenology +hep-ph/9709335 Phenomenology +hep-ph/9710229 Phenomenology +hep-ph/9711367 Phenomenology +hep-ph/9712205 Phenomenology +hep-ph/9712482 Phenomenology +hep-ph/9712494 Phenomenology +hep-ph/9802360 Phenomenology +hep-ph/9803360 Phenomenology +hep-ph/9803398 Phenomenology +hep-ph/9803401 Phenomenology +hep-ph/9804215 Phenomenology +hep-ph/9805207 Phenomenology +hep-ph/9805216 Phenomenology +hep-ph/9805253 Phenomenology +hep-ph/9805508 Phenomenology +hep-ph/9807332 Phenomenology +hep-ph/9807405 Phenomenology +hep-ph/9808491 Phenomenology +hep-ph/9809220 Phenomenology +hep-ph/9809589 Phenomenology +hep-ph/9809591 Phenomenology +hep-ph/9810259 Phenomenology +hep-ph/9810270 Phenomenology +hep-ph/9810340 Phenomenology +hep-ph/9810427 Phenomenology +hep-ph/9811328 Phenomenology +hep-ph/9811351 Phenomenology +hep-ph/9811415 Phenomenology +hep-ph/9811457 Phenomenology +hep-ph/9812263 Phenomenology +hep-ph/9812430 Phenomenology +hep-ph/9903518 Phenomenology +hep-ph/9904258 Phenomenology +hep-ph/9904510 Phenomenology +hep-ph/9907271 Phenomenology +hep-ph/9907378 Phenomenology +hep-ph/9909345 Phenomenology +hep-ph/9909356 Phenomenology +hep-ph/9910342 Phenomenology +hep-ph/9910390 Phenomenology +hep-ph/9910403 Phenomenology +hep-ph/9911215 Phenomenology +hep-ph/9911229 Phenomenology +hep-ph/9911461 Phenomenology +hep-ph/9911471 Phenomenology +hep-ph/9911478 Phenomenology +hep-ph/9912374 Phenomenology +hep-th/0408068 Theory +hep-th/0512331 Theory +math-ph/0702052 +math/0408365 Combinatorics +math/0411239 Combinatorics +math/0508197 Algebraic Geometry +math/0601083 Logic +math/0603412 Probability +math/0606367 Functional Analysis +math/0611120 Quantum Algebra +math/0703302 Logic +nlin/0612053 Chaotic Dynamics +nucl-ex/0209015 +nucl-ex/0211021 +nucl-th/0001016 +nucl-th/0006009 +nucl-th/0103019 +nucl-th/0107031 +nucl-th/0202008 +nucl-th/0307035 +nucl-th/0403048 +nucl-th/0403077 +nucl-th/0409042 +nucl-th/0411010 +nucl-th/0412037 +nucl-th/9711059 +nucl-th/9807070 +nucl-th/9906079 +nucl-th/9910047 +physics/0511241 Atomic Physics +quant-ph/0504228 +quant-ph/0505216 +quant-ph/0701066 +0710.1241 Materials Science +0710.4496 Geometric Topology +0712.2771 Portfolio Management +0803.1363 Statistical Mechanics +0808.3348 Materials Science +0809.1873 Methodology +0811.4102 Dynamical Systems +0812.0534 Superconductivity +0902.0465 Robotics +0902.4146 +0904.0838 Machine Learning +0904.2115 Computational Geometry +0906.3644 Superconductivity +0907.0165 Combinatorics +0907.3322 Mesoscale and Nanoscale Physics +0907.4965 Materials Science +0907.5003 Cosmology and Nongalactic Astrophysics +0908.0162 Probability +0908.0180 Theory +0908.0565 Superconductivity +0910.0288 Strongly Correlated Electrons +0910.3556 Disordered Systems and Neural Networks +0910.4467 Probability +0910.5858 +0910.5900 Fluid Dynamics +0911.1406 K-Theory and Homology +0911.4394 Probability +0912.0601 Statistical Mechanics +0912.2499 +0912.3824 Computational Physics +0912.4647 Statistical Mechanics +1003.1928 Analysis of PDEs +1003.4320 Mesoscale and Nanoscale Physics +1003.5098 +1003.5744 Metric Geometry +1004.0066 Representation Theory +1004.1717 Statistical Mechanics +1004.1882 Superconductivity +1004.2716 +1004.3625 Combinatorics +1005.3749 Combinatorics +1006.2705 Classical Physics +1006.3414 Phenomenology +1007.0953 +1007.1527 Phenomenology +1007.1999 Materials Science +1007.2870 Combinatorics +1007.3943 Theory +1007.4173 Cosmology and Nongalactic Astrophysics +1007.4374 Theory +1007.4677 +1008.1536 +1008.1931 Optimization and Control +1008.2282 +1008.2868 Mesoscale and Nanoscale Physics +1008.3020 Theory +1008.3073 +1008.3605 Theory +1008.4757 Phenomenology +1009.0506 +1009.1162 Phenomenology +1009.2064 +1009.2627 Experiment +1009.3054 Superconductivity +1009.3428 Theory +1009.3753 Portfolio Management +1009.4939 Phenomenology +1009.5189 +1009.5406 +1009.5426 Probability +1009.5973 Computational Finance +1009.6007 +1010.1921 Theory +1010.2186 +1010.4026 Mesoscale and Nanoscale Physics +1010.4224 +1010.5134 Other Condensed Matter +1010.5667 +1010.6179 Exactly Solvable and Integrable Systems +1011.0952 Lattice +1011.1324 Theory +1011.2855 +1011.3153 +1011.3807 Quantum Gases +1011.5733 General Physics +1012.0656 Strongly Correlated Electrons +1101.0452 Commutative Algebra +1101.0578 Numerical Analysis +1101.1382 Phenomenology +1101.2489 Machine Learning +1101.3169 Theory +1101.4218 Superconductivity +1101.4672 Superconductivity +1101.4988 Superconductivity +1102.2612 +1102.4348 High Energy Astrophysical Phenomena +1102.4544 Mesoscale and Nanoscale Physics +1102.5733 Combinatorics +1103.2829 Dynamical Systems +1103.4122 +1103.4340 Optimization and Control +1103.5560 Computational Complexity +1104.0808 Phenomenology +1104.0916 Plasma Physics +1104.1182 Number Theory +1104.1186 Networking and Internet Architecture +1104.1188 +1104.1190 Robotics +1104.1191 Robotics +1104.1194 +1104.1195 Representation Theory +1104.1198 Algebraic Geometry +1104.1204 Machine Learning +1104.1207 +1104.1208 Differential Geometry +1104.1209 Computational Complexity +1104.1237 Computer Vision and Pattern Recognition +1104.1240 Differential Geometry +1104.1249 Robotics +1104.1251 +1104.1264 Combinatorics +1104.1271 Analysis of PDEs +1104.1277 Combinatorics +1104.1278 Number Theory +1104.1279 Multiagent Systems +1104.1286 Logic +1104.1291 Probability +1104.1299 Solar and Stellar Astrophysics +1104.1301 +1104.1302 Materials Science +1104.1303 Probability +1104.1304 Materials Science +1104.1308 +1104.1309 Discrete Mathematics +1104.1310 +1104.1311 Databases +1104.1314 Cosmology and Nongalactic Astrophysics +1104.1315 Theory +1104.1320 Algebraic Geometry +1104.1321 Probability +1104.1325 Algebraic Topology +1104.1328 Rings and Algebras +1104.1329 Functional Analysis +1104.1333 Representation Theory +1104.1336 Fluid Dynamics +1104.1337 Biological Physics +1104.1341 Rings and Algebras +1104.1351 Programming Languages +1104.1354 Analysis of PDEs +1104.1357 Superconductivity +1104.1361 +1104.1366 Rings and Algebras +1104.1368 Geophysics +1104.1370 Software Engineering +1104.1377 Data Structures and Algorithms +1104.1383 +1104.1389 Optimization and Control +1104.1391 History and Philosophy of Physics +1104.1394 Soft Condensed Matter +1104.1397 Solar and Stellar Astrophysics +1104.1398 Operator Algebras +1104.1406 Differential Geometry +1104.1407 Complex Variables +1104.1412 Differential Geometry +1104.1414 Functional Analysis +astro-ph/0604427 +cond-mat/0005546 Superconductivity +cond-mat/0006180 Superconductivity +cond-mat/0010067 Superconductivity +cond-mat/0012408 Superconductivity +cond-mat/0209540 Materials Science +cond-mat/0307750 Materials Science +cond-mat/0505620 Materials Science +cond-mat/0507479 Superconductivity +cond-mat/0606572 Superconductivity +cond-mat/9807370 Superconductivity +cond-mat/9810023 Superconductivity +cond-mat/9903256 Superconductivity +cond-mat/9906112 Superconductivity +cond-mat/9907285 Superconductivity +cond-mat/9907300 Superconductivity +hep-ph/9408315 Phenomenology +hep-ph/9511424 Phenomenology +hep-ph/9609479 Phenomenology +hep-th/0503014 Theory +math/0411428 Rings and Algebras +math/0507112 Combinatorics +math/0601209 Quantum Algebra +math/0602329 Algebraic Geometry +quant-ph/0605182 +0707.2360 Dynamical Systems +0712.1032 Algebraic Topology +0807.3059 General Finance +0807.3648 Logic in Computer Science +0808.1238 Dynamical Systems +0809.3776 Soft Condensed Matter +0809.4602 Soft Condensed Matter +0810.5739 +0812.2044 Soft Condensed Matter +0901.1613 Soft Condensed Matter +0902.4106 Information Theory +0903.4449 Statistical Mechanics +0903.4727 +0904.4409 Theory +0905.1455 Differential Geometry +0906.1248 Strongly Correlated Electrons +0909.1521 Phenomenology +0910.5540 Theory +0910.5673 Optimization and Control +0911.0708 Theory +0912.0469 Phenomenology +0912.1562 Optics +0912.5033 +1001.0725 +1001.4651 Analysis of PDEs +1002.0763 Physics and Society +1003.1049 Quantum Algebra +1003.2517 Geometric Topology +1004.0653 Discrete Mathematics +1004.1420 Algebraic Geometry +1004.2102 Optimization and Control +1004.2421 Earth and Planetary Astrophysics +1004.3314 Symbolic Computation +1004.3327 Networking and Internet Architecture +1004.3407 Networking and Internet Architecture +1004.3408 Networking and Internet Architecture +1004.4154 Networking and Internet Architecture +1005.2751 General Physics +1006.0200 Symbolic Computation +1006.1765 Phenomenology +1006.1988 +1006.3467 Geometric Topology +1007.0403 +1007.0575 +1007.1044 Functional Analysis +1007.1445 +1007.1563 +1007.4293 Functional Analysis +1007.4984 Phenomenology +1008.0116 Statistics Theory +1008.0778 +1008.2283 Differential Geometry +1008.4386 Probability +1009.1060 +1009.1630 +1009.2182 General Physics +1009.3136 +1009.6082 +1010.0104 +1010.0353 Probability +1010.0528 Quantum Algebra +1010.0648 Analysis of PDEs +1010.0977 Theory +1010.1335 +1010.1949 Solar and Stellar Astrophysics +1010.2382 Information Theory +1010.2522 Strongly Correlated Electrons +1010.3099 +1010.3119 Phenomenology +1010.3412 Representation Theory +1010.4225 Theory +1010.5283 Quantum Algebra +1010.5476 Strongly Correlated Electrons +1010.5600 Phenomenology +1011.0145 High Energy Astrophysical Phenomena +1011.0734 Cosmology and Nongalactic Astrophysics +1011.2759 Cosmology and Nongalactic Astrophysics +1011.2985 Physics and Society +1011.3301 Theory +1011.3403 Phenomenology +1011.3621 Phenomenology +1011.3633 Phenomenology +1011.3757 K-Theory and Homology +1012.3509 Combinatorics +1012.4243 Instrumentation and Methods for Astrophysics +1012.4392 Superconductivity +1012.4679 Phenomenology +1012.5356 +1101.1246 Combinatorics +1101.1944 Materials Science +1101.3125 +1101.4781 Quantum Gases +1102.0419 Theory +1102.1594 Theory +1102.2129 Mesoscale and Nanoscale Physics +1102.2355 Superconductivity +1102.3258 Phenomenology +1102.3472 Phenomenology +1102.3847 Theory +1102.3854 Strongly Correlated Electrons +1102.3969 Statistical Mechanics +1102.4755 +1103.0625 +1103.1627 Phenomenology +1103.1728 +1103.1767 Soft Condensed Matter +1103.2442 Phenomenology +1103.2658 Cosmology and Nongalactic Astrophysics +1103.2943 +1103.3964 Statistical Mechanics +1103.4079 Theory +1103.4320 Phenomenology +1103.4663 Mesoscale and Nanoscale Physics +1103.5207 General Topology +1103.5468 Theory +1103.5471 +1103.5607 Phenomenology +1103.6045 Materials Science +1103.6065 Functional Analysis +1104.0195 Logic in Computer Science +1104.0718 +1104.1273 Materials Science +1104.1323 Theory +1104.1385 Phenomenology +1104.1580 Instrumentation and Methods for Astrophysics +1104.2158 Phenomenology +1104.2302 Phenomenology +1104.2329 Theory +1104.3653 Superconductivity +1104.3672 +1104.4286 Theory +1104.5019 Cosmology and Nongalactic Astrophysics +1104.5196 Theory +1104.5488 Theory +1105.0068 Pricing of Securities +1105.0128 Optics +1105.0422 Cosmology and Nongalactic Astrophysics +1105.0544 +1105.0689 Theory +1105.1069 Statistical Mechanics +1105.1545 Chemical Physics +1105.2030 High Energy Astrophysical Phenomena +1105.2090 Networking and Internet Architecture +1105.2091 Networking and Internet Architecture +1105.2351 Combinatorics +1105.5314 +1105.6162 Computation and Language +1106.1914 Astrophysics of Galaxies +1106.2219 Statistics Theory +1106.4239 Phenomenology +1106.4417 Experiment +1106.4588 Differential Geometry +1106.4806 Number Theory +1106.4917 Algebraic Geometry +1106.4954 Applications +1106.5042 Probability +1106.5053 Social and Information Networks +1106.5067 Dynamical Systems +1106.5068 Representation Theory +1106.5081 Risk Management +1106.5088 Functional Analysis +1106.5093 Solar and Stellar Astrophysics +1106.5094 Representation Theory +1106.5095 +1106.5096 +1106.5100 Human-Computer Interaction +1106.5101 Medical Physics +1106.5103 Number Theory +1106.5106 Probability +1106.5111 Artificial Intelligence +1106.5112 Artificial Intelligence +1106.5113 Databases +1106.5115 Group Theory +1106.5116 General Topology +1106.5119 Probability +1106.5122 Databases +1106.5126 +1106.5127 Materials Science +1106.5129 Mesoscale and Nanoscale Physics +1106.5132 Experiment +1106.5134 +1106.5135 Analysis of PDEs +1106.5136 Statistical Mechanics +1106.5137 Analysis of PDEs +1106.5139 Statistical Mechanics +1106.5142 Mesoscale and Nanoscale Physics +1106.5143 +1106.5144 Theory +1106.5146 +1106.5148 +1106.5158 Distributed, Parallel, and Cluster Computing +1106.5159 Functional Analysis +1106.5161 Distributed, Parallel, and Cluster Computing +1106.5163 Quantum Algebra +1106.5164 Materials Science +1106.5165 Materials Science +1106.5166 Materials Science +1106.5168 Distributed, Parallel, and Cluster Computing +1106.5171 Distributed, Parallel, and Cluster Computing +1106.5172 Cosmology and Nongalactic Astrophysics +1106.5174 Social and Information Networks +1106.5175 Machine Learning +1106.5177 Information Theory +1106.5178 Digital Libraries +1106.5182 Instrumentation and Detectors +1106.5184 +1106.5186 Computer Vision and Pattern Recognition +1106.5187 Combinatorics +1106.5188 Complex Variables +1106.5189 Differential Geometry +1106.5190 Commutative Algebra +1106.5191 Numerical Analysis +1106.5196 +1106.5203 Functional Analysis +1106.5213 Information Retrieval +1106.5218 Number Theory +1106.5225 General Physics +1106.5230 Computer Science and Game Theory +1106.5234 +1106.5236 Learning +1106.5241 Statistics Theory +1106.5251 Combinatorics +1106.5252 Phenomenology +1106.5256 Artificial Intelligence +1106.5257 Artificial Intelligence +1106.5258 Artificial Intelligence +1106.5260 Artificial Intelligence +1106.5261 Artificial Intelligence +1106.5262 Artificial Intelligence +1106.5263 Artificial Intelligence +1106.5264 Computation and Language +1106.5265 Artificial Intelligence +1106.5266 Artificial Intelligence +1106.5267 Learning +1106.5268 Artificial Intelligence +1106.5269 Artificial Intelligence +1106.5270 Artificial Intelligence +1106.5271 Artificial Intelligence +1106.5278 Soft Condensed Matter +1106.5289 K-Theory and Homology +1106.5294 Logic in Computer Science +1106.5295 Probability +1106.5299 Distributed, Parallel, and Cluster Computing +1106.5300 Complex Variables +1106.5302 Distributed, Parallel, and Cluster Computing +1106.5303 Distributed, Parallel, and Cluster Computing +1106.5304 Digital Libraries +1106.5306 Statistical Mechanics +1106.5308 Human-Computer Interaction +1106.5309 Distributed, Parallel, and Cluster Computing +1106.5310 Distributed, Parallel, and Cluster Computing +1106.5312 Artificial Intelligence +1106.5319 +1106.5320 Number Theory +1106.5326 Computer Science and Game Theory +1106.5341 Computer Vision and Pattern Recognition +1106.5343 Superconductivity +1106.5344 Classical Physics +1106.5345 Analysis of PDEs +1106.5348 Methodology +1106.5349 Optimization and Control +1106.5350 Optimization and Control +1106.5351 Optimization and Control +1106.5360 Phenomenology +1106.5369 Analysis of PDEs +1106.5377 Phenomenology +1106.5378 Statistical Mechanics +1106.5379 Dynamical Systems +1106.5382 Chaotic Dynamics +1106.5392 Fluid Dynamics +1106.5393 Experiment +1106.5400 Theory +1106.5406 Representation Theory +1106.5408 Phenomenology +1106.5413 Optimization and Control +1106.5416 Algebraic Topology +1106.5419 +1106.5420 Soft Condensed Matter +1106.5424 Combinatorics +1106.5427 Artificial Intelligence +1106.5431 Differential Geometry +1106.5433 Cryptography and Security +1106.5437 Differential Geometry +1106.5439 Numerical Analysis +1106.5441 Algebraic Geometry +1106.5446 Materials Science +1106.5448 Artificial Intelligence +1106.5449 Solar and Stellar Astrophysics +1106.5451 Distributed, Parallel, and Cluster Computing +1106.5457 Distributed, Parallel, and Cluster Computing +1106.5460 Computer Vision and Pattern Recognition +1106.5461 Materials Science +1106.5465 Distributed, Parallel, and Cluster Computing +1106.5466 Strongly Correlated Electrons +1106.5469 Materials Science +1106.5472 General Topology +1106.5478 Atmospheric and Oceanic Physics +cond-mat/0611072 Soft Condensed Matter +gr-qc/0612088 +hep-th/0002037 Theory +math/0305250 Algebraic Topology +math/0306151 Algebraic Topology +math/0602425 Number Theory +math/0605041 Differential Geometry +math/0609300 Algebraic Geometry +math/9903160 Logic +quant-ph/0011039 +0706.2289 Optics +0707.3658 K-Theory and Homology +0710.1028 +0711.1189 Combinatorics +0802.2576 Combinatorics +0804.2347 Chaotic Dynamics +0805.3370 Rings and Algebras +0806.1656 Soft Condensed Matter +0807.0410 Combinatorics +0807.2757 Superconductivity +0807.2793 +0808.0287 Populations and Evolution +0809.4432 Statistical Mechanics +0810.4770 Materials Science +0811.2012 Combinatorics +0812.4440 Theory +0902.0035 Theory +0904.1590 General Physics +0905.4751 Combinatorics +0908.0648 Geophysics +0908.1354 Cosmology and Nongalactic Astrophysics +0908.1956 Combinatorics +0909.0040 Astrophysics of Galaxies +0910.0871 Astrophysics of Galaxies +0911.2074 +1001.2814 +1001.3631 +1002.3067 +1002.4379 Differential Geometry +1003.0373 Differential Geometry +1004.4881 Solar and Stellar Astrophysics +1006.0471 Theory +1006.2634 Biomolecules +1006.5864 Combinatorics +1007.3523 Cosmology and Nongalactic Astrophysics +1007.3568 Information Theory +1007.4106 Other Computer Science +1007.4681 +1008.1353 Disordered Systems and Neural Networks +1008.2250 Combinatorics +1008.2293 Differential Geometry +1009.4199 Strongly Correlated Electrons +1009.5278 Chemical Physics +1010.0085 Phenomenology +1010.3967 Algebraic Geometry +1011.2222 Computational Engineering, Finance, and Science +1011.6286 +1012.1835 +1012.1851 Theory +1012.2033 +1101.1039 +1102.4998 +1102.5353 Phenomenology +1103.1099 Group Theory +1103.4148 Analysis of PDEs +1103.5911 Theory +1104.0348 Symplectic Geometry +1104.0490 Theory +1104.1243 Combinatorics +1104.1737 Statistical Mechanics +1105.0186 +1105.0333 Superconductivity +1105.0580 Mesoscale and Nanoscale Physics +1105.1672 Phenomenology +1105.4858 Differential Geometry +1105.4927 Soft Condensed Matter +1106.0561 Materials Science +1106.0939 Chemical Physics +1106.1770 Learning +1106.2996 Strongly Correlated Electrons +1106.3239 Statistical Mechanics +1106.3535 Mesoscale and Nanoscale Physics +1106.5763 Theory +1106.5795 +1107.0053 Artificial Intelligence +1107.0184 Analysis of PDEs +1107.2039 Superconductivity +1107.3021 Materials Science +1107.3890 Materials Science +1107.4129 Group Theory +1107.4294 +1108.1130 Data Structures and Algorithms +1108.3563 Theory +1108.5908 +1109.0519 General Physics +1109.1270 Solar and Stellar Astrophysics +1109.1665 Strongly Correlated Electrons +1109.4632 Cosmology and Nongalactic Astrophysics +1109.5528 Materials Science +1109.5837 +1109.5869 Atomic Physics +1109.6181 Computational Complexity +1109.6633 +1110.0027 Artificial Intelligence +1110.0051 +1110.0061 Learning +1110.0066 Experiment +1110.0126 Solar and Stellar Astrophysics +1110.0377 Strongly Correlated Electrons +1110.0413 Machine Learning +1110.0437 Solar and Stellar Astrophysics +1110.0441 Mesoscale and Nanoscale Physics +1110.0476 +1110.0477 Neural and Evolutionary Computing +1110.0479 Theory +1110.0485 Solar and Stellar Astrophysics +1110.0497 Instrumentation and Methods for Astrophysics +1110.0498 Instrumentation and Methods for Astrophysics +1110.0499 Instrumentation and Methods for Astrophysics +1110.0500 Instrumentation and Methods for Astrophysics +1110.0503 Instrumentation and Methods for Astrophysics +1110.0504 Instrumentation and Methods for Astrophysics +1110.0505 Instrumentation and Methods for Astrophysics +1110.0506 Instrumentation and Methods for Astrophysics +1110.0508 Instrumentation and Methods for Astrophysics +1110.0509 Instrumentation and Methods for Astrophysics +1110.0510 Instrumentation and Methods for Astrophysics +1110.0511 Instrumentation and Methods for Astrophysics +1110.0512 Instrumentation and Methods for Astrophysics +1110.0513 Instrumentation and Methods for Astrophysics +1110.0514 Instrumentation and Methods for Astrophysics +1110.0515 Instrumentation and Methods for Astrophysics +1110.0516 Instrumentation and Methods for Astrophysics +1110.0518 Instrumentation and Methods for Astrophysics +1110.0519 Instrumentation and Methods for Astrophysics +1110.0520 Instrumentation and Methods for Astrophysics +1110.0522 Instrumentation and Methods for Astrophysics +1110.0523 Instrumentation and Methods for Astrophysics +1110.0525 Instrumentation and Methods for Astrophysics +1110.0538 Geometric Topology +1110.0544 Quantum Algebra +1110.0550 Computational Complexity +1110.0554 Category Theory +1110.0560 Information Theory +1110.0561 Probability +1110.0565 Differential Geometry +1110.0566 Number Theory +1110.0567 Atomic Physics +1110.0569 Numerical Analysis +1110.0577 Functional Analysis +1110.0578 Human-Computer Interaction +1110.0580 Classical Analysis and ODEs +1110.0582 Geometric Topology +1110.0583 Data Structures and Algorithms +1110.0585 Computer Vision and Pattern Recognition +1110.0586 Exactly Solvable and Integrable Systems +1110.0588 Materials Science +1110.0589 Geometric Topology +1110.0590 Differential Geometry +1110.0593 Learning +1110.0596 Analysis of PDEs +1110.0598 Superconductivity +1110.0607 Instrumentation and Detectors +1110.0609 +1110.0611 +1110.0614 Logic +1110.0616 +1110.0618 +1110.0622 +1110.0624 Logic in Computer Science +1110.0625 History and Overview +1110.0626 Analysis of PDEs +1110.0631 Artificial Intelligence +1110.0633 Classical Analysis and ODEs +1110.0635 Probability +1110.0636 Strongly Correlated Electrons +1110.0640 Phenomenology +1110.0641 Machine Learning +1110.0642 Logic +1110.0643 Logic +1110.0647 Phenomenology +1110.0653 Cosmology and Nongalactic Astrophysics +1110.0654 +1110.0661 Operator Algebras +1110.0662 Analysis of PDEs +1110.0663 Phenomenology +1110.0667 Networking and Internet Architecture +1110.0668 Algebraic Geometry +1110.0676 Materials Science +1110.0678 Information Theory +1110.0680 General Mathematics +1110.0681 +1110.0685 Discrete Mathematics +1110.0701 Optics +1110.0702 +1110.0705 Solar and Stellar Astrophysics +1110.0709 Optics +1110.0715 Category Theory +1110.0716 Classical Physics +1110.0718 Information Theory +1110.0720 General Physics +1110.0725 Distributed, Parallel, and Cluster Computing +1110.0726 Cosmology and Nongalactic Astrophysics +1110.0728 Populations and Evolution +1110.0732 +1110.0735 Geometric Topology +1110.0745 Commutative Algebra +1110.0746 Astrophysics of Galaxies +1110.0755 General Physics +1110.0760 Formal Languages and Automata Theory +1110.0776 Statistical Mechanics +1110.0778 +1110.0791 Digital Libraries +1110.0794 Numerical Analysis +1110.0795 Commutative Algebra +1110.0796 Probability +1110.0798 Analysis of PDEs +1110.0800 Biomolecules +1110.0807 Statistics Theory +1110.0809 +1110.0810 Probability +1110.0819 Information Theory +1110.0822 Algebraic Topology +cond-mat/0003473 Strongly Correlated Electrons +cond-mat/0103307 Strongly Correlated Electrons +cond-mat/0107106 Mesoscale and Nanoscale Physics +cond-mat/0204309 Strongly Correlated Electrons +cond-mat/0407298 Mesoscale and Nanoscale Physics +cond-mat/0508780 Soft Condensed Matter +cond-mat/0511633 Mesoscale and Nanoscale Physics +cond-mat/0511710 Superconductivity +cond-mat/0612042 Superconductivity +cs/0404031 Discrete Mathematics +cs/0406024 Discrete Mathematics +cs/0407033 Discrete Mathematics +hep-th/9201071 Theory +math/0402206 Combinatorics +math/0403530 Algebraic Geometry +math/0501214 Combinatorics +math/0503050 Combinatorics +math/0511248 Combinatorics +math/0511262 Combinatorics +math/0609339 Combinatorics +math/0701036 Algebraic Geometry +math/0701074 Algebraic Geometry +0704.0295 Combinatorics +0709.2093 Other Condensed Matter +0802.3959 Quantitative Methods +0803.0937 Spectral Theory +0807.3179 Differential Geometry +0809.1323 Strongly Correlated Electrons +0809.4067 Operator Algebras +0809.4640 Probability +0811.2070 +0901.3157 Solar and Stellar Astrophysics +0901.4726 Spectral Theory +0903.1924 Representation Theory +0906.3359 Analysis of PDEs +0906.4094 Pattern Formation and Solitons +0906.4322 +0907.1999 +0908.3076 Number Theory +0908.4111 Logic +0909.2122 +0909.2467 Logic +0909.5468 Phenomenology +0910.1300 Information Theory +0912.0373 +0912.1637 Quantitative Methods +0912.3460 Theory +0912.4013 Theory +1001.2582 Information Theory +1001.4818 +1002.3310 Number Theory +1003.1613 Materials Science +1003.2101 Combinatorics +1003.2158 Optics +1003.3745 Cosmology and Nongalactic Astrophysics +1003.4833 General Physics +1003.5812 Phenomenology +1004.0984 Phenomenology +1004.3246 Formal Languages and Automata Theory +1005.5212 Quantum Gases +1005.5481 Solar and Stellar Astrophysics +1006.2619 Analysis of PDEs +1006.3363 Phenomenology +1006.4800 Phenomenology +1007.1837 Strongly Correlated Electrons +1007.2559 Differential Geometry +1007.4418 Information Theory +1008.0531 Mesoscale and Nanoscale Physics +1008.1172 +1008.1604 +1008.1788 Materials Science +1008.1959 Astrophysics of Galaxies +1008.2620 Solar and Stellar Astrophysics +1008.2730 Phenomenology +1008.3846 +1008.3852 Theory +1009.0194 Quantum Gases +1009.0489 +1009.0885 Other Condensed Matter +1009.3087 +1009.4040 Strongly Correlated Electrons +1009.4283 +1009.4865 Probability +1009.5044 Quantum Gases +1010.0142 +1010.2280 Theory +1010.3629 +1010.3805 Phenomenology +1010.5800 Quantum Gases +1011.0109 Optics +1011.0402 Soft Condensed Matter +1011.1191 +1011.2114 Functional Analysis +1011.2561 +1011.3715 Earth and Planetary Astrophysics +1011.3981 Strongly Correlated Electrons +1011.4013 +1011.4677 Materials Science +1011.6137 Theory +1012.1954 Phenomenology +1012.2255 Strongly Correlated Electrons +1012.2854 +1012.4269 Complex Variables +1012.5823 Chemical Physics +1101.0190 Fluid Dynamics +1101.0462 Superconductivity +1101.2557 Phenomenology +1101.2723 +1101.3423 Strongly Correlated Electrons +1101.3527 Mesoscale and Nanoscale Physics +1101.3634 General Physics +1101.5458 Phenomenology +1102.0628 +1102.1610 +1102.2542 Combinatorics +1102.2731 Optimization and Control +1102.2829 General Physics +1102.3050 Rings and Algebras +1102.3132 Information Theory +1102.3220 Information Theory +1102.3382 Representation Theory +1102.3577 Functional Analysis +1102.3610 Networking and Internet Architecture +1102.3616 Statistics Theory +1102.3693 High Energy Astrophysical Phenomena +1102.3702 Statistical Finance +1102.3705 Statistical Mechanics +1102.3709 Populations and Evolution +1102.3711 Mesoscale and Nanoscale Physics +1102.3713 Optimization and Control +1102.3718 Materials Science +1102.3719 Materials Science +1102.3720 Genomics +1102.3721 +1102.3723 Dynamical Systems +1102.3730 Logic in Computer Science +1102.3731 Logic in Computer Science +1102.3732 Logic in Computer Science +1102.3733 Logic in Computer Science +1102.3734 Logic in Computer Science +1102.3741 Computer Science and Game Theory +1102.3742 Geometric Topology +1102.3745 Cryptography and Security +1102.3748 Biomolecules +1102.3749 Data Structures and Algorithms +1102.3754 Number Theory +1102.3755 Information Theory +1102.3758 Information Theory +1102.3763 Information Theory +1102.3764 Number Theory +1102.3766 Computational Complexity +1102.3768 Methodology +1102.3769 Number Theory +1102.3773 Methodology +1102.3774 Mathematical Software +1102.3776 Optimization and Control +1102.3778 Accelerator Physics +1102.3780 Methodology +1102.3782 Statistical Mechanics +1102.3788 Mesoscale and Nanoscale Physics +1102.3791 Phenomenology +1102.3793 Quantitative Methods +1102.3800 Materials Science +1102.3804 Numerical Analysis +1102.3807 Fluid Dynamics +1102.3808 High Energy Astrophysical Phenomena +1102.3811 Number Theory +1102.3815 Materials Science +1102.3817 Materials Science +1102.3818 Number Theory +1102.3822 Computer Science and Game Theory +1102.3823 Operator Algebras +1102.3828 Information Retrieval +1102.3830 Computer Vision and Pattern Recognition +1102.3833 Information Theory +1102.3834 +1102.3840 Materials Science +1102.3851 Methodology +1102.3852 Information Theory +1102.3855 Optics +1102.3857 Risk Management +1102.3860 Functional Analysis +1102.3865 Human-Computer Interaction +1102.3866 Information Retrieval +1102.3867 Optimization and Control +1102.3879 Computer Science and Game Theory +1102.3880 +1102.3896 Programming Languages +1102.3898 Phenomenology +1102.3909 Materials Science +astro-ph/9612044 +astro-ph/9902342 +cs/0606102 Programming Languages +gr-qc/9509035 +hep-ex/0011048 Experiment +hep-lat/9605037 Lattice +hep-ph/0011387 Phenomenology +hep-ph/0110166 Phenomenology +hep-ph/0112329 Phenomenology +hep-ph/0512278 Phenomenology +hep-ph/9509423 Phenomenology +hep-ph/9702366 Phenomenology +math/0610954 Algebraic Geometry +math/0702773 Combinatorics +0807.4629 Soft Condensed Matter +0808.2753 Group Theory +0808.3430 Theory +0808.3459 +0808.3493 Theory +0809.1100 Theory +0809.2713 Dynamical Systems +0810.2578 Category Theory +0810.3719 Theory +0811.4286 Differential Geometry +0901.4012 Learning +0902.3547 Other Condensed Matter +0904.2051 Information Theory +0904.2333 Theory +0904.2431 Theory +0904.2463 Theory +0904.2510 Theory +0904.2533 Theory +0904.2537 Theory +0904.2932 Theory +0904.2985 Functional Analysis +0904.3079 Theory +0904.3115 Theory +0904.3490 Theory +0904.3670 Theory +0904.4036 Theory +0904.4625 Populations and Evolution +0905.0067 Functional Analysis +0908.3169 Combinatorics +0910.2673 Algebraic Geometry +0910.3892 Number Theory +0911.3599 Algebraic Geometry +0912.3726 Differential Geometry +0912.5130 +0912.5137 +1001.5455 Astrophysics of Galaxies +1002.1122 Category Theory +1002.3815 Quantum Gases +1002.4133 Geometric Topology +1004.3222 Group Theory +1004.5035 Quantum Gases +1006.4659 Numerical Analysis +1006.4987 Strongly Correlated Electrons +1007.3067 Phenomenology +1008.1507 Formal Languages and Automata Theory +1008.1645 Strongly Correlated Electrons +1008.2003 Mesoscale and Nanoscale Physics +1008.4499 Lattice +1009.1798 Quantum Algebra +1009.2821 Superconductivity +1009.3744 Strongly Correlated Electrons +1009.3803 Phenomenology +1009.4289 Mesoscale and Nanoscale Physics +1009.4504 Statistical Mechanics +1009.5931 Quantum Gases +1009.6099 +1010.0385 Theory +1010.1006 Strongly Correlated Electrons +1010.1926 Number Theory +1010.2459 Strongly Correlated Electrons +1010.3817 Mesoscale and Nanoscale Physics +1011.0759 Phenomenology +1011.0809 Theory +1011.0842 +1011.0864 Lattice +1011.0866 +1011.0867 +1011.0880 +1011.0881 +1011.0882 +1011.0940 Lattice +1011.1054 Phenomenology +1011.2033 Mesoscale and Nanoscale Physics +1011.3128 Analysis of PDEs +1011.3672 Astrophysics of Galaxies +1011.4336 Statistical Finance +1011.4920 +1011.6616 Probability +1012.1363 Mesoscale and Nanoscale Physics +1012.2928 Combinatorics +1012.2996 Theory +1012.3537 Mesoscale and Nanoscale Physics +1012.4435 Operator Algebras +1012.5331 Algebraic Topology +1101.4614 Analysis of PDEs +1101.5610 Strongly Correlated Electrons +1101.5863 Disordered Systems and Neural Networks +1102.1414 Strongly Correlated Electrons +1102.2310 Phenomenology +1102.3680 Artificial Intelligence +1103.0600 Category Theory +1103.1287 +1103.2161 Algebraic Geometry +1103.2833 Theory +1103.4383 +1103.4692 Number Theory +1103.6189 Earth and Planetary Astrophysics +1104.0791 Analysis of PDEs +1104.2018 Artificial Intelligence +1104.2299 Probability +1104.2325 Astrophysics of Galaxies +1104.2335 +1104.2336 Instrumentation and Methods for Astrophysics +1104.2339 Representation Theory +1104.2341 Other Condensed Matter +1104.2342 Dynamical Systems +1104.2344 General Finance +1104.2360 Category Theory +1104.2361 Atomic and Molecular Clusters +1104.2364 Physics and Society +1104.2380 Networking and Internet Architecture +1104.2385 Formal Languages and Automata Theory +1104.2386 Theory +1104.2390 Complex Variables +1104.2392 Differential Geometry +1104.2395 Analysis of PDEs +1104.2397 Differential Geometry +1104.2400 Methodology +1104.2403 Instrumentation and Methods for Astrophysics +1104.2404 Phenomenology +1104.2407 Methodology +1104.2427 Cosmology and Nongalactic Astrophysics +1104.2434 Other Statistics +1104.2449 Plasma Physics +1104.2458 Category Theory +1104.2460 Rings and Algebras +1104.2463 Functional Analysis +1104.2470 Algebraic Geometry +1104.2472 General Physics +1104.2475 +1104.2484 General Physics +1104.2488 Spectral Theory +1104.2491 +1104.2501 High Energy Astrophysical Phenomena +1104.2502 Computational Complexity +1104.2506 Cosmology and Nongalactic Astrophysics +1104.2509 General Physics +1104.2510 General Physics +1104.2511 Symplectic Geometry +1104.2514 Mesoscale and Nanoscale Physics +1104.2515 Quantitative Methods +1104.2516 Analysis of PDEs +1104.2525 General Physics +1104.2527 Data Structures and Algorithms +1104.2529 Materials Science +1104.2531 General Physics +1104.2535 Quantum Gases +1104.2538 Computational Complexity +1104.2539 Algebraic Topology +1104.2540 Theory +1104.2541 Artificial Intelligence +1104.2559 General Mathematics +1104.2565 Cryptography and Security +1104.2566 Distributed, Parallel, and Cluster Computing +1104.2569 Solar and Stellar Astrophysics +1104.2579 Commutative Algebra +1104.2584 Analysis of PDEs +astro-ph/0202236 +math/0208162 Algebraic Topology +nucl-th/0501044 +quant-ph/0010074 +0706.0165 +0706.2511 +0710.2656 +0711.3664 Probability +0801.3233 Algebraic Geometry +0804.4341 Optics +0809.2343 +0811.0932 +0812.1209 +0812.3758 Algebraic Geometry +0901.4832 Theory +0903.4812 Discrete Mathematics +0904.1307 Algebraic Geometry +0906.0176 Solar and Stellar Astrophysics +0906.0434 Computer Vision and Pattern Recognition +0906.1970 Instrumentation and Methods for Astrophysics +0907.4083 Combinatorics +0907.4924 +0910.4175 Differential Geometry +0910.5022 Phenomenology +0910.5778 Theory +0911.0632 +0911.3083 Statistics Theory +0912.1668 General Physics +1001.0169 Operator Algebras +1001.0548 Commutative Algebra +1001.0707 Phenomenology +1001.2532 Differential Geometry +1002.1939 Phenomenology +1002.2783 Theory +1002.3387 Statistical Mechanics +1002.4567 Atomic Physics +1003.4197 Quantum Gases +1004.4111 +1004.4443 +1004.4890 Phenomenology +1005.3248 Category Theory +1005.4696 Materials Science +1005.4938 Analysis of PDEs +1006.1254 General Physics +1007.1903 Cosmology and Nongalactic Astrophysics +1007.2157 +1007.3266 Strongly Correlated Electrons +1007.3942 +1008.1177 +1008.2125 +1009.2199 Combinatorics +1009.3427 +1009.4073 Instrumentation and Detectors +1009.4908 Instrumentation and Detectors +1010.0890 Phenomenology +1010.1333 Phenomenology +1010.2283 Phenomenology +1010.2482 Instrumentation and Detectors +1010.4215 Phenomenology +1010.5052 Differential Geometry +1010.5057 Strongly Correlated Electrons +1010.5284 Plasma Physics +1010.5811 Instrumentation and Detectors +1011.0780 Theory +1011.1521 Differential Geometry +1011.1980 Statistical Mechanics +1011.2941 Astrophysics of Galaxies +1011.5460 Combinatorics +1011.5604 +1011.5612 Phenomenology +1011.5613 Plasma Physics +1011.5619 Phenomenology +1011.5626 Phenomenology +1011.5628 +1011.5636 Theory +1011.5639 Quantum Gases +1011.5641 Phenomenology +1011.5645 Phenomenology +1011.6278 Experiment +1012.0828 Operator Algebras +1012.1903 Theory +1012.2853 Analysis of PDEs +1012.3688 Statistical Mechanics +1012.5077 Earth and Planetary Astrophysics +1012.5364 +1101.3636 +1101.3690 +1102.1338 High Energy Astrophysical Phenomena +1102.2548 Phenomenology +1102.2575 High Energy Astrophysical Phenomena +1102.2752 High Energy Astrophysical Phenomena +1102.3932 Formal Languages and Automata Theory +1102.4905 Optics +1102.5012 Theory +1102.5439 +1102.5528 Neurons and Cognition +1102.5631 Phenomenology +1103.0636 +1103.0721 Phenomenology +1103.1808 +1103.1830 Strongly Correlated Electrons +1103.2457 Strongly Correlated Electrons +1103.2516 Analysis of PDEs +1103.3667 +1103.4491 Statistical Mechanics +1103.4498 +1103.5452 Strongly Correlated Electrons +1103.5643 Atomic Physics +1103.5790 Quantum Gases +1103.5793 +1104.1993 Statistical Mechanics +1104.2260 Theory +1104.2770 High Energy Astrophysical Phenomena +1104.2786 Probability +1104.3210 Theory +1104.4357 +1104.4819 Materials Science +1104.5205 +1104.5669 Soft Condensed Matter +1105.1024 Phenomenology +1105.1137 Chaotic Dynamics +1105.1910 Solar and Stellar Astrophysics +1105.2197 Algebraic Geometry +1105.4512 General Physics +1105.4810 +1105.5035 High Energy Astrophysical Phenomena +1105.5483 Materials Science +1106.0337 Mesoscale and Nanoscale Physics +1106.0402 Quantum Gases +1106.1519 Materials Science +1106.1921 Experiment +1106.3994 Chaotic Dynamics +1106.4476 Atomic Physics +1106.4533 Optics +1106.4849 Theory +1106.5482 Theory +1106.5892 Optics +1107.2541 Mesoscale and Nanoscale Physics +1107.3633 Dynamical Systems +1107.3894 Artificial Intelligence +1107.4212 Logic in Computer Science +1107.4318 Materials Science +1107.5108 Systems and Control +1107.5187 Optimization and Control +1107.5322 Phenomenology +1107.5323 +1107.5325 Solar and Stellar Astrophysics +1107.5326 Numerical Analysis +1107.5329 Data Structures and Algorithms +1107.5330 Chemical Physics +1107.5331 Algebraic Geometry +1107.5340 Optimization and Control +1107.5344 +1107.5347 +1107.5348 Systems and Control +1107.5349 Computer Vision and Pattern Recognition +1107.5354 Computer Science and Game Theory +1107.5355 Information Theory +1107.5359 Combinatorics +1107.5361 Statistical Mechanics +1107.5372 Networking and Internet Architecture +1107.5373 General Finance +1107.5382 Cosmology and Nongalactic Astrophysics +1107.5384 +1107.5385 Instrumentation and Methods for Astrophysics +1107.5386 Phenomenology +1107.5387 Robotics +1107.5394 Number Theory +1107.5399 Networking and Internet Architecture +1107.5400 Probability +1107.5401 Materials Science +1107.5407 Applications +1107.5408 Programming Languages +1107.5414 Group Theory +1107.5418 Mesoscale and Nanoscale Physics +1107.5420 Chaotic Dynamics +1107.5423 Applications +1107.5426 Cell Behavior +1107.5443 Cosmology and Nongalactic Astrophysics +1107.5446 Phenomenology +1107.5461 Numerical Analysis +1107.5462 Artificial Intelligence +1107.5465 +1107.5468 Networking and Internet Architecture +1107.5478 Computational Complexity +1107.5479 Numerical Analysis +1107.5480 Strongly Correlated Electrons +1107.5483 General Mathematics +1107.5486 Representation Theory +1107.5490 Combinatorics +1107.5491 Optics +1107.5492 Sound +1107.5497 +1107.5508 Methodology +1107.5510 Algebraic Topology +1107.5512 Instrumentation and Detectors +1107.5513 +1107.5516 +1107.5517 Applications +1107.5521 Superconductivity +1107.5524 Methodology +1107.5525 Theory +1107.5527 Geometric Topology +1107.5532 Differential Geometry +1107.5538 Cryptography and Security +1107.5541 Information Theory +1107.5542 Algebraic Geometry +1107.5546 Statistical Mechanics +astro-ph/0308141 +astro-ph/9810327 +cond-mat/0507367 Statistical Mechanics +hep-lat/0108024 Lattice +hep-lat/0112025 Lattice +hep-ph/0104240 Phenomenology +hep-ph/0109107 Phenomenology +hep-ph/0405279 Phenomenology +hep-th/0106257 Theory +hep-th/0108151 Theory +hep-th/0108243 Theory +hep-th/0201208 Theory +hep-th/0203116 Theory +hep-th/0203240 Theory +hep-th/0204175 Theory +hep-th/0205195 Theory +hep-th/0209140 Theory +hep-th/0301114 Theory +hep-th/0305240 Theory +hep-th/0308094 Theory +hep-th/0309172 Theory +hep-th/0312322 Theory +hep-th/0405023 Theory +hep-th/0405108 Theory +hep-th/0505102 Theory +hep-th/0512301 Theory +hep-th/0609210 Theory +hep-th/0612078 Theory +nucl-ex/0603021 +physics/0508020 Plasma Physics +q-alg/9505004 Quantum Algebra +quant-ph/0106021 +quant-ph/0108096 +quant-ph/0210084 +quant-ph/0211145 +quant-ph/0302204 +quant-ph/0401139 +0704.1272 Geometric Topology +0706.0594 Fluid Dynamics +0708.0137 +0711.2466 Representation Theory +0801.1426 Computational Physics +0801.2524 Combinatorics +0803.1953 Differential Geometry +0803.3675 Applications +0804.0272 +0804.2162 Biological Physics +0806.1920 Algebraic Geometry +0807.0430 Algebraic Geometry +0807.1824 Differential Geometry +0808.2604 Quantum Algebra +0809.0102 +0809.0538 Logic +0809.0540 Classical Analysis and ODEs +0809.1391 Algebraic Geometry +0809.3723 Other Condensed Matter +0810.0805 Functional Analysis +0812.4457 +0905.4922 Strongly Correlated Electrons +0906.4678 +0907.4776 Statistical Mechanics +0908.2289 Functional Analysis +0909.3551 Optimization and Control +0911.1023 General Topology +0912.3332 Analysis of PDEs +1001.5017 Dynamical Systems +1002.1805 Fluid Dynamics +1002.2451 +1004.2199 +1004.2894 Geometric Topology +1004.3936 Geometric Topology +1005.1974 General Topology +1005.3809 Phenomenology +1005.5248 Strongly Correlated Electrons +1006.0023 Cell Behavior +1006.2337 Strongly Correlated Electrons +1006.3596 +1006.5247 Solar and Stellar Astrophysics +1007.0279 Combinatorics +1007.0386 +1007.1064 Algebraic Geometry +1007.4152 Optimization and Control +1007.4233 Representation Theory +1008.0154 General Physics +1008.0289 Algebraic Geometry +1008.2037 Disordered Systems and Neural Networks +1008.4625 Populations and Evolution +1009.0872 Number Theory +1009.1116 Algebraic Topology +1009.3073 Materials Science +1009.4814 Classical Analysis and ODEs +1010.4695 Superconductivity +1011.2811 Geometric Topology +1011.3911 +1011.5126 Superconductivity +1011.6101 Soft Condensed Matter +1012.0062 Populations and Evolution +1012.1094 General Topology +1012.1868 +1012.1950 Differential Geometry +1012.3361 Phenomenology +1012.3531 Other Computer Science +1012.5317 Phenomenology +1012.6035 Programming Languages +1101.0274 Superconductivity +1101.1597 Commutative Algebra +1101.5337 Strongly Correlated Electrons +1102.0073 +1102.1325 Probability +1102.1529 Materials Science +1102.3661 Analysis of PDEs +1103.2634 Chaotic Dynamics +1103.2719 Physics and Society +1103.2935 Differential Geometry +1103.4797 Combinatorics +1103.5017 Soft Condensed Matter +1103.5363 Phenomenology +1104.1677 Artificial Intelligence +1104.1725 Analysis of PDEs +1104.1740 Algebraic Geometry +1104.2031 Mesoscale and Nanoscale Physics +1104.2440 Materials Science +1104.4863 Soft Condensed Matter +1105.1688 +1105.1824 Computer Science and Game Theory +1105.2277 Superconductivity +1105.4325 +1105.4347 Quantum Algebra +1105.5058 Mesoscale and Nanoscale Physics +1105.5247 Analysis of PDEs +1105.5622 Strongly Correlated Electrons +1105.5749 Statistical Mechanics +1106.0510 +1106.0565 Machine Learning +1106.3148 Superconductivity +1106.3390 Phenomenology +1106.4648 Materials Science +1106.5109 High Energy Astrophysical Phenomena +1106.6334 +1107.0387 Mesoscale and Nanoscale Physics +1107.1230 Probability +1107.1274 +1107.1678 +1107.1990 Phenomenology +1107.2916 +1107.3226 Computational Physics +1107.3241 Mesoscale and Nanoscale Physics +1107.3933 Statistical Mechanics +1107.4090 Phenomenology +1107.4516 Quantum Gases +1107.4556 +1107.4870 Mesoscale and Nanoscale Physics +1107.5008 Soft Condensed Matter +1107.5911 +1107.5916 +1108.0108 Materials Science +1108.1555 Algebraic Geometry +1108.1771 Phenomenology +1108.4171 Representation Theory +1108.4312 Statistical Mechanics +1108.5101 +1108.5120 +1108.5594 Lattice +1109.0279 Strongly Correlated Electrons +1109.0886 +1109.0952 +1109.1406 Phenomenology +1109.1576 +1109.1764 Materials Science +1109.3433 Combinatorics +1109.4280 Theory +1109.5294 Statistical Mechanics +1109.6301 Theory +1110.0198 +1110.0207 Databases +1110.0302 Phenomenology +1110.1552 Quantum Gases +1110.1776 Algebraic Topology +1110.1958 Cosmology and Nongalactic Astrophysics +1110.2043 Quantum Gases +1110.2492 +1110.4796 Numerical Analysis +1110.6115 Optics +1110.6611 Functional Analysis +1111.0167 Numerical Analysis +1111.0247 Accelerator Physics +1111.0597 Number Theory +1111.0937 Superconductivity +1111.1448 +1111.2838 Cosmology and Nongalactic Astrophysics +1111.3480 Combinatorics +1111.3583 +1111.3694 Mesoscale and Nanoscale Physics +1111.4044 +1111.4486 Phenomenology +1111.4652 Analysis of PDEs +1111.4909 High Energy Astrophysical Phenomena +1111.5220 Data Structures and Algorithms +1111.5569 +1111.6530 Analysis of PDEs +1111.6656 +1111.6698 Data Structures and Algorithms +1111.6957 Phenomenology +1111.7230 Phenomenology +1111.7290 Experiment +1112.0068 High Energy Astrophysical Phenomena +1112.0173 +1112.0210 Adaptation and Self-Organizing Systems +1112.0222 History and Philosophy of Physics +1112.0253 Optimization and Control +1112.0506 +1112.0569 High Energy Astrophysical Phenomena +1112.0570 Cosmology and Nongalactic Astrophysics +1112.0581 Numerical Analysis +1112.0583 Computational Physics +1112.0585 Computational Physics +1112.0588 Analysis of PDEs +1112.0589 Superconductivity +1112.0594 Numerical Analysis +1112.0595 +1112.0596 Cryptography and Security +1112.0597 Mesoscale and Nanoscale Physics +1112.0598 Commutative Algebra +1112.0599 Commutative Algebra +1112.0600 Commutative Algebra +1112.0602 Group Theory +1112.0603 Probability +1112.0605 Commutative Algebra +1112.0608 Commutative Algebra +1112.0610 Materials Science +1112.0611 Machine Learning +1112.0615 Mesoscale and Nanoscale Physics +1112.0618 Experiment +1112.0619 Solar and Stellar Astrophysics +1112.0621 Probability +1112.0622 High Energy Astrophysical Phenomena +1112.0623 Optimization and Control +1112.0625 Algebraic Topology +1112.0631 Discrete Mathematics +1112.0633 +1112.0639 Neurons and Cognition +1112.0640 Superconductivity +1112.0643 Logic in Computer Science +1112.0646 Cosmology and Nongalactic Astrophysics +1112.0648 Classical Analysis and ODEs +1112.0649 Cryptography and Security +1112.0653 Optimization and Control +1112.0654 Optimization and Control +1112.0658 Probability +1112.0662 Networking and Internet Architecture +1112.0663 Analysis of PDEs +1112.0664 Probability +1112.0674 Information Theory +1112.0680 Superconductivity +1112.0683 Analysis of PDEs +1112.0684 Complex Variables +1112.0685 Complex Variables +1112.0686 Complex Variables +1112.0687 Representation Theory +1112.0689 Computational Geometry +1112.0690 Mesoscale and Nanoscale Physics +1112.0692 Solar and Stellar Astrophysics +1112.0694 Differential Geometry +1112.0695 Computational Geometry +1112.0696 Phenomenology +1112.0697 Optimization and Control +1112.0700 +1112.0701 Optimization and Control +1112.0703 Optimization and Control +1112.0706 Cosmology and Nongalactic Astrophysics +1112.0709 Instrumentation and Methods for Astrophysics +1112.0712 Methodology +1112.0714 Statistical Mechanics +1112.0715 Dynamical Systems +1112.0716 Statistics Theory +1112.0720 Accelerator Physics +1112.0724 Differential Geometry +1112.0725 Information Theory +1112.0733 +1112.0735 Optics +1112.0738 +1112.0741 Optimization and Control +1112.0742 Instrumentation and Methods for Astrophysics +1112.0745 Cosmology and Nongalactic Astrophysics +1112.0746 Numerical Analysis +1112.0748 Combinatorics +1112.0750 Instrumentation and Methods for Astrophysics +1112.0753 Combinatorics +1112.0754 Combinatorics +1112.0755 Combinatorics +1112.0756 High Energy Astrophysical Phenomena +1112.0757 +1112.0766 Statistical Mechanics +1112.0767 Physics and Society +1112.0774 Rings and Algebras +1112.0776 Superconductivity +1112.0779 Differential Geometry +1112.0781 Category Theory +1112.0783 History and Philosophy of Physics +1112.0784 Data Structures and Algorithms +1112.0790 Data Structures and Algorithms +1112.0791 Logic in Computer Science +1112.0793 Strongly Correlated Electrons +1112.0795 Networking and Internet Architecture +1112.0796 Populations and Evolution +1112.0799 Representation Theory +1112.0800 Combinatorics +1112.0804 Algebraic Geometry +1112.0806 Algebraic Geometry +1112.0808 +1112.0809 +1112.0812 Algebraic Topology +1112.0813 Analysis of PDEs +1112.0815 Phenomenology +1112.0818 Statistics Theory +1112.0821 +1112.0827 Instrumentation and Methods for Astrophysics +1112.0829 Probability +1112.0830 Differential Geometry +1112.0831 Operator Algebras +1112.0836 Cryptography and Security +1112.0838 Combinatorics +1112.0841 Experiment +1112.0843 Quantum Gases +1112.0848 Optics +1112.0850 Performance +1112.0851 Statistical Mechanics +1112.0853 Number Theory +1112.0857 Data Structures and Algorithms +1112.0861 +1112.0863 Solar and Stellar Astrophysics +1112.0864 Geometric Topology +1112.0865 Optimization and Control +1112.0866 +1112.0868 Experiment +1112.0871 Disordered Systems and Neural Networks +1112.0879 Optimization and Control +1112.0881 Fluid Dynamics +1112.0883 General Topology +1112.0885 Theory +1112.0886 Instrumentation and Methods for Astrophysics +1112.0888 Chemical Physics +1112.0894 Geophysics +1112.0897 Materials Science +1112.0898 Statistical Mechanics +1112.0901 Mesoscale and Nanoscale Physics +1112.0902 Solar and Stellar Astrophysics +1112.0906 Statistics Theory +1112.0908 Phenomenology +1112.0926 Phenomenology +1112.0929 Applications +1112.0932 Probability +1112.0933 Algebraic Geometry +1112.0934 Probability +1112.0936 Solar and Stellar Astrophysics +1112.0946 Combinatorics +1112.0950 Cryptography and Security +1112.0953 Statistical Mechanics +1112.0956 History and Overview +1112.0957 History and Overview +1112.0961 Other Computer Science +1112.0973 Phenomenology +1112.0974 Computer Vision and Pattern Recognition +1112.0977 Solar and Stellar Astrophysics +1112.0979 Solar and Stellar Astrophysics +1112.0981 +1112.0984 Medical Physics +1112.0989 Differential Geometry +1112.0992 Computers and Society +1112.0993 Data Structures and Algorithms +1112.0997 Phenomenology +1112.0998 Statistical Mechanics +1112.1001 Number Theory +1112.1002 Dynamical Systems +1112.1007 +1112.1008 Combinatorics +1112.1011 Strongly Correlated Electrons +1112.1012 Algebraic Geometry +1112.1013 Astrophysics of Galaxies +1112.1016 Theory +1112.1023 Applications +1112.1024 Applications +1112.1030 Statistical Mechanics +1112.1032 Number Theory +1112.1033 High Energy Astrophysical Phenomena +1112.1038 Computers and Society +1112.1040 Computational Complexity +1112.1041 Performance +1112.1044 Instrumentation and Methods for Astrophysics +1112.1046 Solar and Stellar Astrophysics +1112.1048 Cryptography and Security +1112.1052 Materials Science +1112.1056 Theory +astro-ph/0607104 +astro-ph/0703759 +cond-mat/0608388 Soft Condensed Matter +cond-mat/0610407 Disordered Systems and Neural Networks +cond-mat/0612553 Soft Condensed Matter +cs/0602083 Computer Vision and Pattern Recognition +math/0112148 Algebraic Geometry +math/0112276 Algebraic Geometry +math/0204227 Quantum Algebra +math/0207235 Quantum Algebra +math/0702741 Differential Geometry +physics/0703245 Fluid Dynamics +quant-ph/0302038 +quant-ph/0401088 +quant-ph/0411146 +quant-ph/0411163 +0704.3930 Phenomenology +0707.4407 Other Condensed Matter +0708.1174 Combinatorics +0710.4982 Probability +0711.2360 Combinatorics +0802.0914 Populations and Evolution +0805.3678 Analysis of PDEs +0811.0772 Phenomenology +0901.2383 Materials Science +0901.2589 Metric Geometry +0904.0545 Artificial Intelligence +0904.4446 Mesoscale and Nanoscale Physics +0908.1707 Fluid Dynamics +0908.2056 Probability +0910.1105 Differential Geometry +0910.4737 +0911.4741 Combinatorics +0912.2577 Probability +0912.4566 Statistics Theory +1001.0062 Theory +1001.5344 Phenomenology +1002.3394 Cosmology and Nongalactic Astrophysics +1003.3021 Cosmology and Nongalactic Astrophysics +1004.5193 Analysis of PDEs +1005.0843 High Energy Astrophysical Phenomena +1005.4134 Cosmology and Nongalactic Astrophysics +1006.0809 Data Structures and Algorithms +1007.0861 Combinatorics +1007.3811 Computational Physics +1008.0604 Chaotic Dynamics +1008.1183 Cosmology and Nongalactic Astrophysics +1008.3103 Geometric Topology +1008.4645 Phenomenology +1009.3833 General Physics +1009.4059 Algebraic Geometry +1010.4366 Statistical Mechanics +1010.5311 Combinatorics +1010.5979 Quantum Gases +1011.0162 High Energy Astrophysical Phenomena +1011.1716 Numerical Analysis +1011.2387 +1011.2492 Cosmology and Nongalactic Astrophysics +1011.4340 Logic +1011.6668 +1012.3132 Dynamical Systems +1012.4427 +1012.5719 +1101.2994 Combinatorics +1101.3339 +1101.4143 Cosmology and Nongalactic Astrophysics +1101.5520 Phenomenology +1102.3367 Phenomenology +1102.3576 Lattice +1102.4068 Phenomenology +1102.4297 Earth and Planetary Astrophysics +1103.2361 Mesoscale and Nanoscale Physics +1103.3044 Superconductivity +1103.4862 Mesoscale and Nanoscale Physics +1103.4894 Phenomenology +1103.5194 Spectral Theory +1103.5271 Analysis of PDEs +1103.5816 Chaotic Dynamics +1104.2459 Operator Algebras +1104.2609 Theory +1105.0042 Portfolio Management +1105.1035 +1105.1293 Human-Computer Interaction +1105.1681 +1105.1752 Statistical Mechanics +1105.3161 Phenomenology +1105.4611 Phenomenology +1105.4753 Phenomenology +1105.4967 +1105.6248 Statistical Mechanics +1106.0333 Phenomenology +1106.0340 Phenomenology +1106.1780 Data Analysis, Statistics and Probability +1106.2282 Fluid Dynamics +1106.2530 Formal Languages and Automata Theory +1106.3097 Phenomenology +1106.3159 Phenomenology +1106.4123 Atomic Physics +1106.4285 Representation Theory +1106.5066 +1107.0332 Theory +1107.0763 +1107.3004 Phenomenology +1107.3133 Machine Learning +1107.4176 Materials Science +1107.5312 Phenomenology +1107.5822 Theory +1108.2290 Metric Geometry +1108.3010 Phenomenology +1108.3218 +1108.4350 +1108.4414 Cosmology and Nongalactic Astrophysics +1108.4845 Experiment +1108.5062 Programming Languages +1108.5070 +1109.0510 Fluid Dynamics +1109.0845 Other Condensed Matter +1109.0911 Experiment +1109.0930 +1109.1007 Strongly Correlated Electrons +1109.1011 Solar and Stellar Astrophysics +1109.1014 Physics and Society +1109.1015 Physics and Society +1109.1016 +1109.1024 Spectral Theory +1109.1029 +1109.1032 Artificial Intelligence +1109.1033 Instrumentation and Methods for Astrophysics +1109.1037 Solar and Stellar Astrophysics +1109.1038 Strongly Correlated Electrons +1109.1039 Computational Physics +1109.1042 Complex Variables +1109.1043 +1109.1045 Information Theory +1109.1048 Combinatorics +1109.1049 +1109.1053 Computer Science and Game Theory +1109.1054 Number Theory +1109.1055 Computer Science and Game Theory +1109.1057 Computer Vision and Pattern Recognition +1109.1058 Experiment +1109.1059 Digital Libraries +1109.1060 Rings and Algebras +1109.1062 Computational Engineering, Finance, and Science +1109.1063 Social and Information Networks +1109.1068 Computer Vision and Pattern Recognition +1109.1071 Strongly Correlated Electrons +1109.1074 Neural and Evolutionary Computing +1109.1075 Analysis of PDEs +1109.1087 Databases +1109.1088 Information Retrieval +1109.1090 Strongly Correlated Electrons +1109.1093 Multiagent Systems +1109.1097 +1109.1100 Functional Analysis +1109.1105 Information Theory +1109.1107 Analysis of PDEs +1109.1108 Quantitative Methods +1109.1109 Earth and Planetary Astrophysics +1109.1114 Earth and Planetary Astrophysics +1109.1123 Classical Analysis and ODEs +1109.1124 +1109.1126 Chemical Physics +1109.1128 Dynamical Systems +1109.1133 Computer Vision and Pattern Recognition +1109.1134 Networking and Internet Architecture +1109.1135 Fluid Dynamics +1109.1136 Instrumentation and Methods for Astrophysics +1109.1144 Databases +1109.1145 Multimedia +1109.1146 Distributed, Parallel, and Cluster Computing +1109.1147 Networking and Internet Architecture +1109.1149 Discrete Mathematics +1109.1150 Combinatorics +1109.1161 Analysis of PDEs +1109.1167 General Finance +1109.1168 Databases +1109.1172 Statistics Theory +1109.1173 Digital Libraries +1109.1181 Phenomenology +1109.1187 Experiment +1109.1196 Instrumentation and Methods for Astrophysics +1109.1200 Functional Analysis +1109.1202 Databases +1109.1211 Neural and Evolutionary Computing +1109.1213 General Finance +1109.1216 Combinatorics +1109.1221 Biomolecules +1109.1228 Number Theory +1109.1231 Artificial Intelligence +1109.1239 +1109.1240 General Physics +1109.1246 Astrophysics of Galaxies +1109.1247 Computer Vision and Pattern Recognition +1109.1254 Group Theory +1109.1255 Information Theory +1109.1256 Portfolio Management +1109.1263 Differential Geometry +1109.1264 Mathematical Software +1109.1268 History and Philosophy of Physics +1109.1276 Artificial Intelligence +astro-ph/0008097 +cs/0605048 Learning +hep-ph/0101038 Phenomenology +hep-th/9907045 Theory +math/0409429 Probability +math/0604366 Probability +math/0604367 Probability +math/0612046 Probability +quant-ph/0006101 +0710.4403 +0711.0462 +0802.0960 Algebraic Geometry +0804.0500 Strongly Correlated Electrons +0811.1660 Other Condensed Matter +0812.0381 Mesoscale and Nanoscale Physics +0812.3175 Dynamical Systems +0902.0824 Mesoscale and Nanoscale Physics +0903.0488 Soft Condensed Matter +0903.3137 Strongly Correlated Electrons +0904.2433 Soft Condensed Matter +0905.3865 Dynamical Systems +0906.2769 Mesoscale and Nanoscale Physics +0907.1505 Algebraic Topology +0908.2677 Quantitative Methods +0910.1157 Strongly Correlated Electrons +0911.0975 Mesoscale and Nanoscale Physics +1003.3487 Statistical Mechanics +1003.5388 Number Theory +1004.3822 Representation Theory +1005.0448 Algebraic Geometry +1005.1001 +1005.1336 General Physics +1005.3460 Combinatorics +1006.1049 Metric Geometry +1007.2175 Classical Physics +1007.2208 Metric Geometry +1007.2775 Combinatorics +1008.1768 +1008.2543 +1008.3958 Cosmology and Nongalactic Astrophysics +1008.5235 Solar and Stellar Astrophysics +1009.0672 Cosmology and Nongalactic Astrophysics +1009.4462 Solar and Stellar Astrophysics +1009.6178 Accelerator Physics +1010.3548 Optimization and Control +1011.0702 Geometric Topology +1011.0944 Data Analysis, Statistics and Probability +1011.3368 Number Theory +1011.3388 Materials Science +1011.4664 Strongly Correlated Electrons +1011.5269 Theory +1012.3228 Theory +1012.5871 Algebraic Geometry +1101.0534 Optics +1101.4564 Discrete Mathematics +1102.1850 Disordered Systems and Neural Networks +1103.0649 +1103.0885 Superconductivity +1103.2026 Phenomenology +1103.3676 Mesoscale and Nanoscale Physics +1103.3859 Quantum Gases +1103.4309 Soft Condensed Matter +1104.2066 +1104.3585 High Energy Astrophysical Phenomena +1104.4817 Mesoscale and Nanoscale Physics +1105.0311 Statistical Mechanics +1105.0356 Phenomenology +1105.1820 +1106.0288 Physics and Society +1106.1080 Superconductivity +1106.1797 Artificial Intelligence +1106.3018 Mesoscale and Nanoscale Physics +1106.3226 Phenomenology +1106.4248 +1106.5789 Phenomenology +1107.0412 Superconductivity +1107.4590 Strongly Correlated Electrons +1107.5563 +1107.5567 Instrumentation and Detectors +1108.0122 Exactly Solvable and Integrable Systems +1108.0562 Soft Condensed Matter +1108.1466 Number Theory +1108.2008 Number Theory +1108.2074 Solar and Stellar Astrophysics +1108.2100 Group Theory +1108.2227 Theory +1108.4097 Differential Geometry +1108.4393 Pricing of Securities +1108.4524 +1108.4537 Materials Science +1108.4930 High Energy Astrophysical Phenomena +1108.4938 Differential Geometry +1108.4941 Analysis of PDEs +1108.4944 Physics Education +1108.4947 Combinatorics +1108.4950 Populations and Evolution +1108.4951 Molecular Networks +1108.4952 General Mathematics +1108.4955 Geometric Topology +1108.4957 Dynamical Systems +1108.4958 Combinatorics +1108.4961 Learning +1108.4967 Algebraic Geometry +1108.4968 Algebraic Geometry +1108.4975 Algebraic Geometry +1108.4977 +1108.4984 Solar and Stellar Astrophysics +1108.4985 Solar and Stellar Astrophysics +1108.4987 Solar and Stellar Astrophysics +1108.4990 Theory +1108.4992 Algebraic Geometry +1108.4993 Algebraic Geometry +1108.4994 Rings and Algebras +1108.5000 Quantum Gases +1108.5001 Metric Geometry +1108.5007 Soft Condensed Matter +1108.5009 Combinatorics +1108.5013 Differential Geometry +1108.5015 Soft Condensed Matter +1108.5016 Computation and Language +1108.5017 Computation and Language +1108.5018 +1108.5019 Analysis of PDEs +1108.5020 Solar and Stellar Astrophysics +1108.5021 Operator Algebras +1108.5023 Materials Science +1108.5024 Instrumentation and Methods for Astrophysics +1108.5025 Information Theory +1108.5027 Computation and Language +1108.5032 Soft Condensed Matter +1108.5033 Soft Condensed Matter +1108.5040 Cosmology and Nongalactic Astrophysics +1108.5046 Metric Geometry +1108.5052 Networking and Internet Architecture +1108.5055 Quantum Algebra +1108.5058 Dynamical Systems +1108.5066 +1108.5072 Materials Science +1108.5079 General Physics +1108.5081 General Mathematics +1108.5088 Experiment +1108.5092 Number Theory +1108.5093 Number Theory +1108.5095 Data Structures and Algorithms +1108.5096 Computation and Language +1108.5097 +1108.5103 Differential Geometry +1108.5104 Information Theory +1108.5106 Materials Science +1108.5108 +1108.5110 Populations and Evolution +1108.5111 Differential Geometry +1108.5113 Differential Geometry +1108.5114 Representation Theory +1108.5117 +1108.5118 Representation Theory +1108.5119 Classical Analysis and ODEs +1108.5124 Instrumentation and Methods for Astrophysics +1108.5139 Theory +1108.5144 +1108.5146 +1108.5154 Populations and Evolution +1108.5156 Strongly Correlated Electrons +1108.5162 Solar and Stellar Astrophysics +1108.5164 Classical Analysis and ODEs +1108.5169 Phenomenology +cond-mat/0511379 Soft Condensed Matter +hep-th/0612064 Theory +hep-th/9702036 Theory +0704.0909 Geometric Topology +0712.2310 Statistical Mechanics +0803.1990 Optimization and Control +0810.4282 +0812.1256 Combinatorics +0812.3561 +0812.4091 Combinatorics +0902.2996 Statistics Theory +0903.0393 Geometric Topology +0905.0305 Dynamical Systems +0905.3594 Number Theory +0905.3955 Strongly Correlated Electrons +0906.2871 Analysis of PDEs +0907.1485 Combinatorics +0908.2641 Combinatorics +0910.2036 Combinatorics +0910.2788 Probability +0912.1982 Optics +1001.0611 Differential Geometry +1001.4133 Number Theory +1002.0828 Combinatorics +1003.3494 Probability +1004.4453 Soft Condensed Matter +1005.1058 General Physics +1005.3583 Fluid Dynamics +1005.4105 Number Theory +1005.4437 Number Theory +1006.1040 Materials Science +1006.2521 +1006.3812 Combinatorics +1006.3819 Materials Science +1006.5026 General Physics +1007.2101 Fluid Dynamics +1007.3043 +1007.4253 +1007.4939 Quantum Gases +1008.3286 Theory +1008.4892 Combinatorics +1009.1101 Complex Variables +1009.1274 Functional Analysis +1009.1444 Computation +1009.2102 Fluid Dynamics +1009.4453 Theory +1009.4486 Representation Theory +1009.5260 Representation Theory +1009.5535 Classical Analysis and ODEs +1010.0231 Materials Science +1010.0952 Other Condensed Matter +1010.0968 Other Condensed Matter +1010.0974 Other Condensed Matter +1011.1514 Phenomenology +1011.3051 Biological Physics +1011.4454 Computational Physics +1011.4688 Biological Physics +1011.5551 Algebraic Geometry +1012.1121 Fluid Dynamics +1012.3730 Probability +1012.5157 Classical Analysis and ODEs +1012.5497 Superconductivity +1012.5883 Optimization and Control +1012.6013 +1101.3031 Differential Geometry +1101.3329 Theory +1102.2338 +1102.2511 Classical Analysis and ODEs +1102.5223 Atomic Physics +1103.0002 Theory +1103.0060 Number Theory +1103.0436 Mesoscale and Nanoscale Physics +1103.0556 Astrophysics of Galaxies +1103.1543 Classical Analysis and ODEs +1103.4388 Cosmology and Nongalactic Astrophysics +1103.4985 Strongly Correlated Electrons +1103.6195 +1104.0047 Soft Condensed Matter +1104.0233 Mesoscale and Nanoscale Physics +1104.0547 Information Theory +1104.0913 Materials Science +1104.5275 +1104.5353 Theory +1104.5554 Optics +1105.0071 +1105.0320 Experiment +1105.1655 Mesoscale and Nanoscale Physics +1105.2289 +1105.2728 +1105.2929 Phenomenology +1105.3150 Differential Geometry +1105.3872 Strongly Correlated Electrons +1105.4128 Theory +1105.4167 Theory +1105.4497 Theory +1105.5700 Quantum Gases +1105.5805 Differential Geometry +1106.0529 Phenomenology +1106.0706 Cryptography and Security +1106.2291 Theory +1106.4157 Fluid Dynamics +1106.4944 Materials Science +1107.2412 +1108.0795 Atomic Physics +1108.0923 +1108.1086 Strongly Correlated Electrons +1108.1646 Astrophysics of Galaxies +1108.2197 Phenomenology +1108.3074 Artificial Intelligence +1108.4137 High Energy Astrophysical Phenomena +1108.4289 +1108.4322 Superconductivity +1108.4864 History and Philosophy of Physics +1108.5147 Computers and Society +1108.5158 Atomic Physics +1108.5159 Solar and Stellar Astrophysics +1108.5259 Phenomenology +1108.5342 Number Theory +1108.5386 Category Theory +1108.5390 Biological Physics +1108.5394 Analysis of PDEs +1108.5395 Statistics Theory +1108.5397 Machine Learning +1108.5402 Instrumentation and Methods for Astrophysics +1108.5403 Functional Analysis +1108.5409 Numerical Analysis +1108.5412 Complex Variables +1108.5413 Strongly Correlated Electrons +1108.5421 Complex Variables +1108.5422 Data Structures and Algorithms +1108.5426 Instrumentation and Methods for Astrophysics +1108.5431 Populations and Evolution +1108.5434 Programming Languages +1108.5435 Mesoscale and Nanoscale Physics +1108.5445 Differential Geometry +1108.5446 +1108.5448 Rings and Algebras +1108.5450 Data Analysis, Statistics and Probability +1108.5451 Databases +1108.5454 K-Theory and Homology +1108.5457 Data Structures and Algorithms +1108.5460 Information Retrieval +1108.5463 Materials Science +1108.5466 Other Computer Science +1108.5468 Representation Theory +1108.5470 Classical Analysis and ODEs +1108.5471 Data Structures and Algorithms +1108.5475 Information Theory +1108.5476 Analysis of PDEs +1108.5483 Fluid Dynamics +1108.5484 Fluid Dynamics +1108.5488 Probability +1108.5491 Information Retrieval +1108.5494 Networking and Internet Architecture +1108.5500 Probability +1108.5502 History and Philosophy of Physics +1108.5503 +1108.5504 Optimization and Control +1108.5506 Popular Physics +1108.5508 Data Analysis, Statistics and Probability +1108.5510 Mesoscale and Nanoscale Physics +1108.5511 Mesoscale and Nanoscale Physics +1108.5513 Strongly Correlated Electrons +1108.5514 Learning +1108.5517 +1108.5518 Superconductivity +1108.5519 Astrophysics of Galaxies +1108.5521 Other Condensed Matter +1108.5522 Rings and Algebras +1108.5528 +1108.5529 Mesoscale and Nanoscale Physics +1108.5531 +1108.5537 Combinatorics +1108.5543 Robotics +1108.5544 High Energy Astrophysical Phenomena +1108.5546 Earth and Planetary Astrophysics +1108.5547 Information Theory +1108.5557 Group Theory +1108.5564 Probability +1108.5566 Representation Theory +1108.5567 Artificial Intelligence +1108.5572 Experiment +1108.5573 Experiment +1108.5575 Information Retrieval +1108.5580 General Physics +1108.5585 Probability +1108.5590 Probability +1108.5591 Phenomenology +1108.5592 Databases +1108.5593 Fluid Dynamics +1108.5596 Statistical Finance +1108.5597 Number Theory +1108.5599 Phenomenology +1108.5603 Combinatorics +1108.5609 Programming Languages +1108.5619 Databases +1108.5622 Systems and Control +1108.5623 Earth and Planetary Astrophysics +1108.5624 Robotics +1108.5628 Functional Analysis +1108.5630 Functional Analysis +1108.5632 Theory +1108.5633 Instrumentation and Methods for Astrophysics +1108.5634 Functional Analysis +1108.5635 Combinatorics +1108.5639 Combinatorics +1108.5640 Geometric Topology +1108.5643 Emerging Technologies +1108.5648 Physics and Society +1108.5655 Classical Analysis and ODEs +1108.5656 Materials Science +1108.5657 Molecular Networks +1108.5658 Chaotic Dynamics +1108.5660 Dynamical Systems +1108.5661 Materials Science +1108.5663 Category Theory +1108.5664 Classical Analysis and ODEs +1108.5665 Chemical Physics +1108.5671 Number Theory +1108.5674 Number Theory +1108.5677 Number Theory +1108.5679 Cosmology and Nongalactic Astrophysics +1108.5682 Solar and Stellar Astrophysics +1108.5683 Solar and Stellar Astrophysics +1108.5684 Commutative Algebra +1108.5687 Number Theory +1108.5699 Combinatorics +1108.5700 Geometric Topology +1108.5703 Information Retrieval +1108.5704 Computers and Society +1108.5706 Networking and Internet Architecture +1108.5707 Rings and Algebras +1108.5711 Discrete Mathematics +1108.5712 Strongly Correlated Electrons +1108.5714 Numerical Analysis +1108.5717 Artificial Intelligence +1108.5720 Computer Vision and Pattern Recognition +1108.5721 Dynamical Systems +1108.5726 Materials Science +1108.5727 +cs/0305036 Computational Engineering, Finance, and Science +cs/0503087 Computational Engineering, Finance, and Science +cs/0506033 Computational Engineering, Finance, and Science +hep-ph/0502063 Phenomenology +hep-ph/0503034 Phenomenology +hep-ph/0505042 Phenomenology +hep-ph/0612180 Phenomenology +math/0606117 Optimization and Control +0705.0836 Analysis of PDEs +0803.0185 Number Theory +0806.2867 Theory +0809.0261 Biomolecules +0810.2625 Materials Science +0812.0694 +0812.2596 Number Theory +0901.2543 Geometric Topology +0901.3637 Statistical Mechanics +0903.0151 Other Condensed Matter +0903.5109 Commutative Algebra +0906.3885 Combinatorics +0907.1574 Mesoscale and Nanoscale Physics +0910.2868 +0911.0706 Strongly Correlated Electrons +0911.0721 Combinatorics +0911.4894 +0911.5354 Theory +0912.2484 Strongly Correlated Electrons +0912.2877 Differential Geometry +0912.4804 Operator Algebras +0912.5373 Phenomenology +1001.1175 Combinatorics +1001.4925 Theory +1001.5056 Optimization and Control +1001.5089 Classical Analysis and ODEs +1001.5437 Representation Theory +1003.1054 Analysis of PDEs +1004.0054 Representation Theory +1005.0893 +1005.1331 Differential Geometry +1006.0422 Lattice +1006.0818 Phenomenology +1006.1697 +1006.3618 Analysis of PDEs +1007.1457 Theory +1007.2876 Methodology +1007.4415 +1007.4608 +1008.3682 +1008.4097 +1009.1329 Phenomenology +1009.4756 Superconductivity +1010.1561 Social and Information Networks +1010.4835 Analysis of PDEs +1011.1152 Strongly Correlated Electrons +1011.2002 Superconductivity +1011.3032 Combinatorics +1011.3262 Probability +1011.3967 Algebraic Geometry +1011.5162 Statistics Theory +1011.5697 High Energy Astrophysical Phenomena +1012.0539 +1012.1761 Phenomenology +1012.1860 Theory +1101.0764 Information Theory +1101.0862 Superconductivity +1101.1473 Data Analysis, Statistics and Probability +1101.1547 Formal Languages and Automata Theory +1101.5499 Phenomenology +1101.5799 Subcellular Processes +1101.5960 Statistics Theory +1102.0265 Mesoscale and Nanoscale Physics +1102.1903 +1102.2276 Theory +1102.4037 Computer Science and Game Theory +1102.4845 Solar and Stellar Astrophysics +1102.5291 Statistical Mechanics +1103.0482 Phenomenology +1103.0563 Theory +1103.1899 Soft Condensed Matter +1103.2927 +1103.3551 Theory +1103.3686 Software Engineering +1103.4152 Phenomenology +1103.4236 Quantum Gases +1103.4613 Phenomenology +1103.4741 Dynamical Systems +1103.4835 Phenomenology +1103.4874 Physics and Society +1103.5059 Strongly Correlated Electrons +1103.5143 Experiment +1103.5205 Phenomenology +1103.5697 +1103.5801 Phenomenology +1104.0031 Solar and Stellar Astrophysics +1104.0411 High Energy Astrophysical Phenomena +1104.0941 +1104.1583 Theory +1104.1600 Lattice +1104.1721 Statistical Mechanics +1104.2056 Phenomenology +1104.2083 Combinatorics +1104.3138 Phenomenology +1104.3744 Soft Condensed Matter +1104.5058 +1104.5167 Phenomenology +1104.5183 Optimization and Control +1104.5454 Quantum Gases +1105.0359 Lattice +1105.5803 Applications +1106.0005 Astrophysics of Galaxies +1106.0300 Cosmology and Nongalactic Astrophysics +1106.0341 General Physics +1106.0554 Materials Science +1106.1842 Formal Languages and Automata Theory +1106.1855 Optics +1106.1904 Quantum Algebra +1106.2498 Instrumentation and Methods for Astrophysics +1106.2535 Lattice +1106.3474 Number Theory +1106.3913 High Energy Astrophysical Phenomena +1106.4262 Phenomenology +1106.4595 Geometric Topology +1106.4892 Mesoscale and Nanoscale Physics +1106.5156 Computer Vision and Pattern Recognition +1106.5488 Soft Condensed Matter +1106.6252 Materials Science +1107.0321 +1107.0326 History and Overview +1107.0329 Statistical Mechanics +1107.0331 Optics +1107.0333 Materials Science +1107.0341 +1107.0342 Superconductivity +1107.0346 Differential Geometry +1107.0348 Functional Analysis +1107.0349 Logic in Computer Science +1107.0354 +1107.0356 Functional Analysis +1107.0357 Soft Condensed Matter +1107.0358 Instrumentation and Detectors +1107.0361 Probability +1107.0363 Experiment +1107.0364 Combinatorics +1107.0374 Phenomenology +1107.0375 Analysis of PDEs +1107.0381 Number Theory +1107.0382 Number Theory +1107.0384 Rings and Algebras +1107.0385 Numerical Analysis +1107.0391 General Mathematics +1107.0393 Complex Variables +1107.0397 Disordered Systems and Neural Networks +1107.0406 Quantitative Methods +1107.0409 Superconductivity +1107.0411 Differential Geometry +1107.0413 Number Theory +1107.0414 Data Analysis, Statistics and Probability +1107.0416 Information Theory +1107.0419 Materials Science +1107.0421 Astrophysics of Galaxies +1107.0424 Classical Analysis and ODEs +1107.0425 Group Theory +1107.0427 Experiment +1107.0431 Computer Science and Game Theory +1107.0433 Computer Science and Game Theory +1107.0434 Artificial Intelligence +1107.0439 Computer Science and Game Theory +1107.0440 Commutative Algebra +1107.0441 Astrophysics of Galaxies +1107.0445 +1107.0446 Commutative Algebra +1107.0447 Commutative Algebra +1107.0448 Astrophysics of Galaxies +1107.0452 Geometric Topology +1107.0458 Data Analysis, Statistics and Probability +1107.0464 Astrophysics of Galaxies +1107.0465 High Energy Astrophysical Phenomena +1107.0469 Phenomenology +1107.0480 Statistical Finance +1107.0483 Pattern Formation and Solitons +1107.0484 Astrophysics of Galaxies +1107.0487 Rings and Algebras +1107.0495 Quantum Algebra +1107.0496 +1107.0499 Algebraic Geometry +1107.0502 Optics +1107.0503 Experiment +1107.0506 Number Theory +1107.0510 Statistical Mechanics +1107.0512 Phenomenology +1107.0523 Experiment +1107.0525 +1107.0527 Analysis of PDEs +1107.0534 +1107.0538 Distributed, Parallel, and Cluster Computing +1107.0548 +1107.0551 Strongly Correlated Electrons +1107.0552 Operator Algebras +1107.0554 Chaotic Dynamics +1107.0558 Theory +1107.0562 Solar and Stellar Astrophysics +1107.0563 Commutative Algebra +1107.0567 +1107.0571 Numerical Analysis +1107.0579 Algebraic Geometry +1107.0580 Fluid Dynamics +1107.0582 Complex Variables +1107.0583 Cosmology and Nongalactic Astrophysics +1107.0590 Materials Science +1107.0591 Cosmology and Nongalactic Astrophysics +1107.0607 Networking and Internet Architecture +1107.0610 Complex Variables +1107.0617 Differential Geometry +1107.0621 Phenomenology +1107.0634 Data Structures and Algorithms +1107.0635 Superconductivity +1107.0639 Information Theory +1107.0641 Tissues and Organs +1107.0648 Logic +1107.0650 Theory +1107.0651 Representation Theory +1107.0652 Accelerator Physics +1107.0655 Probability +1107.0666 Logic in Computer Science +1107.0671 Probability +1107.0673 +1107.0676 Combinatorics +1107.0679 Solar and Stellar Astrophysics +1107.0681 Social and Information Networks +1107.0685 Algebraic Topology +1107.0687 Commutative Algebra +1107.0689 Superconductivity +1107.0699 Soft Condensed Matter +1107.0700 Differential Geometry +1107.0702 Algebraic Geometry +1107.0708 +1107.0716 Genomics +hep-th/9706188 Theory +math-ph/9903001 +math/0212383 Algebraic Topology +math/0611388 Number Theory +physics/0502142 General Physics +0708.2043 Theory +0805.1674 Materials Science +0808.1291 +0902.2020 Neurons and Cognition +0902.4302 Optimization and Control +0911.2873 Information Theory +0911.3109 Cosmology and Nongalactic Astrophysics +1001.2184 Mesoscale and Nanoscale Physics +1001.2725 +1002.1446 Information Theory +1002.3575 Theory +1005.1900 Rings and Algebras +1006.2532 Functional Analysis +1007.0907 Differential Geometry +1007.2633 Algebraic Geometry +1008.1357 Social and Information Networks +1008.1546 Analysis of PDEs +1009.3997 Exactly Solvable and Integrable Systems +1009.5574 Classical Physics +1011.0693 Optics +1011.1585 +1011.5443 Combinatorics +1012.2105 Methodology +1101.1993 Group Theory +1101.3233 Representation Theory +1101.3269 Phenomenology +1101.3915 Probability +1102.1870 Complex Variables +1102.4088 Rings and Algebras +1102.4827 General Physics +1103.1964 Theory +1103.2786 Cosmology and Nongalactic Astrophysics +1104.2355 Information Theory +1104.2495 Strongly Correlated Electrons +1104.4630 Quantum Algebra +1105.1694 Trading and Market Microstructure +1105.3999 Phenomenology +1106.4444 Quantum Gases +1106.4973 High Energy Astrophysical Phenomena +1106.6272 Strongly Correlated Electrons +1107.0283 Plasma Physics +1107.1743 Dynamical Systems +1107.2433 Probability +1107.2456 Applications +1107.3886 Mesoscale and Nanoscale Physics +1107.3946 Rings and Algebras +1107.4638 Phenomenology +1107.5411 Other Condensed Matter +1107.5736 Disordered Systems and Neural Networks +1108.0877 Theory +1108.2049 Computational Physics +1108.3483 +1108.3882 Astrophysics of Galaxies +1109.0045 Data Analysis, Statistics and Probability +1109.0073 Lattice +1109.2986 Rings and Algebras +1109.3413 Dynamical Systems +1109.4342 High Energy Astrophysical Phenomena +1109.6475 Differential Geometry +1109.6608 Logic +1110.0552 Commutative Algebra +1110.0684 +1110.0890 Analysis of PDEs +1110.1417 Analysis of PDEs +1110.2058 Statistics Theory +1110.6061 Information Theory +1110.6845 Lattice +1110.6929 High Energy Astrophysical Phenomena +1111.0002 Earth and Planetary Astrophysics +1111.0004 Instrumentation and Methods for Astrophysics +1111.0008 Phenomenology +1111.0021 Differential Geometry +1111.0024 Computer Vision and Pattern Recognition +1111.0039 Artificial Intelligence +1111.0040 Artificial Intelligence +1111.0041 Artificial Intelligence +1111.0042 High Energy Astrophysical Phenomena +1111.0043 Artificial Intelligence +1111.0044 Artificial Intelligence +1111.0045 Databases +1111.0046 Computer Science and Game Theory +1111.0048 Computation and Language +1111.0049 Artificial Intelligence +1111.0051 Artificial Intelligence +1111.0053 Artificial Intelligence +1111.0054 Artificial Intelligence +1111.0055 Artificial Intelligence +1111.0056 Artificial Intelligence +1111.0059 Artificial Intelligence +1111.0060 Artificial Intelligence +1111.0062 Artificial Intelligence +1111.0064 Distributed, Parallel, and Cluster Computing +1111.0065 Artificial Intelligence +1111.0066 High Energy Astrophysical Phenomena +1111.0067 Artificial Intelligence +1111.0068 Artificial Intelligence +1111.0069 Biological Physics +1111.0071 Optimization and Control +1111.0073 Physics and Society +1111.0074 Experiment +1111.0075 Instrumentation and Methods for Astrophysics +1111.0077 High Energy Astrophysical Phenomena +1111.0078 Probability +1111.0079 Complex Variables +1111.0085 Logic in Computer Science +1111.0086 Logic in Computer Science +1111.0087 Logic in Computer Science +1111.0088 Logic in Computer Science +1111.0089 Logic in Computer Science +1111.0090 Logic in Computer Science +1111.0094 Discrete Mathematics +1111.0096 Spectral Theory +1111.0104 Mesoscale and Nanoscale Physics +1111.0109 +1111.0115 Classical Analysis and ODEs +1111.0116 High Energy Astrophysical Phenomena +1111.0121 High Energy Astrophysical Phenomena +1111.0124 Probability +1111.0125 Computational Physics +1111.0127 High Energy Astrophysical Phenomena +1111.0128 Lattice +1111.0130 Lattice +1111.0131 Exactly Solvable and Integrable Systems +1111.0134 Strongly Correlated Electrons +1111.0141 Cosmology and Nongalactic Astrophysics +1111.0142 Lattice +1111.0143 High Energy Astrophysical Phenomena +1111.0158 Software Engineering +1111.0159 Fluid Dynamics +1111.0162 Earth and Planetary Astrophysics +1111.0164 Algebraic Geometry +1111.0168 Experiment +1111.0170 +1111.0183 Experiment +1111.0185 Lattice +1111.0186 Fluid Dynamics +1111.0188 Phenomenology +1111.0191 High Energy Astrophysical Phenomena +1111.0192 High Energy Astrophysical Phenomena +1111.0200 Phenomenology +1111.0205 Probability +1111.0208 Optics +1111.0209 Solar and Stellar Astrophysics +1111.0210 General Mathematics +1111.0211 +1111.0212 Solar and Stellar Astrophysics +1111.0224 Group Theory +1111.0225 Lattice +1111.0226 Superconductivity +1111.0228 Discrete Mathematics +1111.0229 Plasma Physics +1111.0230 Classical Analysis and ODEs +1111.0231 Analysis of PDEs +1111.0234 Combinatorics +1111.0242 Multimedia +1111.0243 +1111.0244 High Energy Astrophysical Phenomena +1111.0252 High Energy Astrophysical Phenomena +1111.0254 Lattice +1111.0260 General Physics +1111.0261 Chemical Physics +1111.0265 High Energy Astrophysical Phenomena +1111.0266 Disordered Systems and Neural Networks +1111.0276 Theory +1111.0278 Dynamical Systems +1111.0282 Experiment +1111.0286 +1111.0287 Symplectic Geometry +cond-mat/0604478 Soft Condensed Matter +cs/0610093 Logic in Computer Science +cs/0702097 Cryptography and Security +quant-ph/0609132 +0801.0208 Symplectic Geometry +0801.3048 Multiagent Systems +0802.3309 Differential Geometry +0806.3998 Differential Geometry +0807.4209 +0811.0031 Differential Geometry +0812.1753 Lattice +0906.3309 Analysis of PDEs +0907.5214 Algebraic Geometry +0909.2129 Commutative Algebra +0910.0570 Mesoscale and Nanoscale Physics +0910.1584 Phenomenology +0910.2518 Mesoscale and Nanoscale Physics +0910.3503 Data Structures and Algorithms +0910.5158 +0912.5016 Phenomenology +1001.1735 Mesoscale and Nanoscale Physics +1003.0216 Strongly Correlated Electrons +1003.0886 Theory +1004.1934 Differential Geometry +1004.2686 +1004.3044 Strongly Correlated Electrons +1004.4538 Representation Theory +1005.1767 Quantum Algebra +1005.4369 Materials Science +1006.2250 +1007.0639 Mesoscale and Nanoscale Physics +1007.3724 +1007.3825 +1008.0668 Mesoscale and Nanoscale Physics +1008.3554 Probability +1008.4136 +1008.5143 Methodology +1009.3967 Cosmology and Nongalactic Astrophysics +1009.4730 +1009.5611 Probability +1009.5924 +1010.1571 Disordered Systems and Neural Networks +1011.0676 Theory +1011.3304 +1011.3552 Combinatorics +1012.3468 Cosmology and Nongalactic Astrophysics +1012.5391 +1012.5941 +1101.0546 Quantum Algebra +1101.0774 Functional Analysis +1101.3212 Fluid Dynamics +1102.0269 Phenomenology +1102.1718 Mesoscale and Nanoscale Physics +1102.1942 Exactly Solvable and Integrable Systems +1102.2326 +1102.3180 Cosmology and Nongalactic Astrophysics +1102.3471 Statistics Theory +1102.3747 +1102.3809 +1102.3910 +1102.3931 Physics and Society +1102.4842 Data Structures and Algorithms +1102.5215 +1102.5773 Phenomenology +1103.0013 Theory +1103.2814 Analysis of PDEs +1103.2990 Experiment +1103.3861 Phenomenology +1103.4679 Mesoscale and Nanoscale Physics +1103.4709 +1103.5108 Accelerator Physics +1103.5308 Phenomenology +1103.5380 Algebraic Geometry +1104.0675 +1104.0821 +1104.1552 +1104.1634 Cosmology and Nongalactic Astrophysics +1104.2843 Theory +1104.3171 Phenomenology +1104.3709 Soft Condensed Matter +1104.3716 +1104.4123 Theory +1104.5431 +1105.0028 Statistical Mechanics +1105.0421 Superconductivity +1105.2125 +1105.2449 +1105.2552 Strongly Correlated Electrons +1105.2815 Experiment +1105.3069 +1105.3173 +1105.3313 +1105.3817 +1105.4305 +1105.6027 Statistics Theory +1105.6147 High Energy Astrophysical Phenomena +1106.0837 Materials Science +1106.1728 Solar and Stellar Astrophysics +1106.1942 Statistical Mechanics +1106.3903 +1106.4003 Theory +1106.4018 Cosmology and Nongalactic Astrophysics +1106.5160 Strongly Correlated Electrons +1107.0159 Experiment +1107.0665 High Energy Astrophysical Phenomena +1107.1264 +1107.2406 Numerical Analysis +1107.2886 +1107.4115 +1107.4923 Accelerator Physics +1107.5595 Algebraic Geometry +1107.5598 Algebraic Geometry +1108.0029 Superconductivity +1108.0405 Accelerator Physics +1108.0625 Dynamical Systems +1108.1453 Algebraic Topology +1108.1923 Materials Science +1108.2740 +1108.2830 Symbolic Computation +1108.2937 Statistical Finance +1108.3155 Statistical Finance +1108.3363 Analysis of PDEs +1108.3512 +1108.3698 Earth and Planetary Astrophysics +1108.3802 Functional Analysis +1108.3843 Computation and Language +1108.3846 Combinatorics +1108.3848 Computation and Language +1108.3850 Computation and Language +1108.3854 Algebraic Geometry +1108.3864 Experiment +1108.3869 Phenomenology +1108.3871 Combinatorics +1108.3873 Information Theory +1108.3876 General Topology +1108.3883 Information Theory +1108.3884 Exactly Solvable and Integrable Systems +1108.3886 Probability +1108.3887 Information Theory +1108.3888 Materials Science +1108.3894 Materials Science +1108.3899 Combinatorics +1108.3900 Instrumentation and Methods for Astrophysics +1108.3901 Digital Libraries +1108.3904 Methodology +1108.3906 Phenomenology +1108.3907 Astrophysics of Galaxies +1108.3908 Mesoscale and Nanoscale Physics +1108.3910 Applications +1108.3912 Methodology +1108.3913 Methodology +1108.3914 Methodology +1108.3916 Phenomenology +1108.3919 Methodology +1108.3923 Lattice +1108.3924 Probability +1108.3926 +1108.3928 +1108.3930 Statistical Mechanics +1108.3931 Methodology +1108.3938 Methodology +1108.3940 Methodology +1108.3941 Methodology +1108.3943 Phenomenology +1108.3945 Algebraic Geometry +1108.3946 Methodology +1108.3951 Theory +1108.3953 Methodology +1108.3955 Phenomenology +1108.3956 Superconductivity +1108.3958 Rings and Algebras +1108.3960 Materials Science +1108.3963 +1108.3964 Quantum Gases +1108.3965 Probability +1108.3973 Systems and Control +1108.3974 Geophysics +1108.3977 Solar and Stellar Astrophysics +1108.3978 Strongly Correlated Electrons +1108.3980 Robotics +1108.3982 Statistical Mechanics +1108.3998 Pricing of Securities +1108.4007 Algebraic Geometry +1108.4008 Phenomenology +1108.4012 +1108.4016 Probability +1108.4020 Analysis of PDEs +1108.4024 +1108.4026 Materials Science +1108.4028 Algebraic Geometry +1108.4034 Social and Information Networks +chem-ph/9603001 Chemical Physics +dg-ga/9712017 Differential Geometry +gr-qc/9707044 +hep-th/0507022 Theory +math/0406209 Dynamical Systems +nlin/0505042 Exactly Solvable and Integrable Systems +solv-int/9712019 Exactly Solvable and Integrable Systems +0810.5063 Analysis of PDEs +0811.2261 Algebraic Geometry +0812.4584 Algebraic Geometry +0903.5133 Differential Geometry +0904.3540 Complex Variables +0907.2089 Databases +0907.3293 Algebraic Geometry +0911.4354 Plasma Physics +1002.1871 +1002.4476 +1003.5451 Theory +1003.5592 Dynamical Systems +1005.0016 +1006.3885 +1007.5035 Molecular Networks +1008.1017 Optics +1008.4361 Theory +1010.4216 Soft Condensed Matter +1011.0015 Statistical Mechanics +1011.5776 Experiment +1012.1784 +1012.1806 Phenomenology +1012.1811 Phenomenology +1012.3318 Combinatorics +1012.3940 +1012.5247 Complex Variables +1012.6041 Strongly Correlated Electrons +1101.5900 +1101.5947 Phenomenology +1101.5962 Experiment +1102.0927 Statistics Theory +1102.2309 +1102.3245 Computational Complexity +1102.3313 Biological Physics +1102.4129 Data Structures and Algorithms +1102.4868 Information Theory +1103.1736 Materials Science +1103.2734 Probability +1104.0667 Mesoscale and Nanoscale Physics +1104.0744 Mesoscale and Nanoscale Physics +1104.1782 Algebraic Geometry +1104.2832 Mesoscale and Nanoscale Physics +1104.3631 Statistical Mechanics +1104.4095 Mesoscale and Nanoscale Physics +1104.5238 Cosmology and Nongalactic Astrophysics +1105.0884 Mesoscale and Nanoscale Physics +1105.1840 +1105.3438 Statistical Mechanics +1105.4348 Strongly Correlated Electrons +1106.0710 Cosmology and Nongalactic Astrophysics +1106.2036 +1106.2549 Superconductivity +1106.2970 Complex Variables +1106.4142 Computational Complexity +1106.5123 Experiment +1106.5131 Experiment +1107.0012 +1107.1782 Cosmology and Nongalactic Astrophysics +1107.2645 Theory +1107.5261 Chemical Physics +1108.0221 Solar and Stellar Astrophysics +1108.0856 +1108.4633 Strongly Correlated Electrons +1108.6100 +1109.1279 Disordered Systems and Neural Networks +1109.1343 Experiment +1109.1404 Superconductivity +1109.4658 High Energy Astrophysical Phenomena +1109.5105 Combinatorics +1110.0119 Classical Analysis and ODEs +1110.0244 Optics +1110.0245 General Physics +1110.0256 Populations and Evolution +1110.0384 Algebraic Geometry +1110.0445 Functional Analysis +1110.0486 History and Philosophy of Physics +1110.0592 Theory +1110.0674 Phenomenology +1110.0828 Materials Science +1110.0831 Solar and Stellar Astrophysics +1110.0848 +1110.0851 Dynamical Systems +1110.0855 Optimization and Control +1110.0856 Theory +1110.0857 High Energy Astrophysical Phenomena +1110.0859 Experiment +1110.0860 Computational Physics +1110.0863 Algebraic Geometry +1110.0867 Theory +1110.0870 Classical Analysis and ODEs +1110.0871 Spectral Theory +1110.0872 Computer Vision and Pattern Recognition +1110.0873 Solar and Stellar Astrophysics +1110.0875 Solar and Stellar Astrophysics +1110.0879 Computer Vision and Pattern Recognition +1110.0880 Combinatorics +1110.0883 Applications +1110.0885 Materials Science +1110.0891 Solar and Stellar Astrophysics +1110.0892 Computational Complexity +1110.0893 Superconductivity +1110.0898 Differential Geometry +1110.0904 Combinatorics +1110.0912 Cosmology and Nongalactic Astrophysics +1110.0918 Theory +1110.0919 Logic +1110.0921 Analysis of PDEs +1110.0922 Lattice +1110.0923 Algebraic Geometry +1110.0924 Theory +1110.0926 Rings and Algebras +1110.0929 General Physics +1110.0930 Rings and Algebras +1110.0937 Instrumentation and Methods for Astrophysics +1110.0943 +1110.0947 High Energy Astrophysical Phenomena +1110.0948 Phenomenology +1110.0958 +1110.0974 +1110.0975 Solar and Stellar Astrophysics +1110.0985 Solar and Stellar Astrophysics +1110.0987 Representation Theory +1110.0988 Solar and Stellar Astrophysics +1110.0989 Phenomenology +1110.0990 Data Structures and Algorithms +1110.0991 +1110.0992 Number Theory +1110.0994 General Topology +1110.0995 Fluid Dynamics +1110.0997 +1110.0998 Chaotic Dynamics +1110.1003 General Topology +1110.1005 Instrumentation and Detectors +1110.1006 Statistical Finance +1110.1007 Soft Condensed Matter +1110.1008 Experiment +1110.1012 Methodology +1110.1014 Optimization and Control +1110.1016 Artificial Intelligence +1110.1019 General Physics +1110.1021 Differential Geometry +1110.1025 +1110.1033 Algebraic Geometry +1110.1037 Differential Geometry +1110.1038 Neural and Evolutionary Computing +1110.1041 Phenomenology +1110.1044 Probability +1110.1046 Cryptography and Security +1110.1048 Group Theory +1110.1051 Accelerator Physics +1110.1052 Computational Complexity +1110.1055 Experiment +1110.1059 Commutative Algebra +1110.1061 Cosmology and Nongalactic Astrophysics +1110.1064 Data Structures and Algorithms +1110.1065 Classical Analysis and ODEs +1110.1067 Classical Analysis and ODEs +1110.1068 Differential Geometry +1110.1070 Classical Analysis and ODEs +1110.1072 Quantum Algebra +1110.1073 Learning +1110.1078 Information Theory +1110.1079 Data Structures and Algorithms +1110.1080 Functional Analysis +1110.1081 Mesoscale and Nanoscale Physics +astro-ph/0412214 +hep-ex/9909034 Experiment +0705.4131 Logic +0808.3773 +0903.1501 Probability +0905.0777 Atomic Physics +0905.4874 Probability +0908.0223 +0908.2217 Probability +0909.2341 Probability +0909.2796 Analysis of PDEs +0911.3433 +1001.0106 Materials Science +1001.0798 History and Overview +1001.0859 Group Theory +1001.3952 Mesoscale and Nanoscale Physics +1003.0648 Superconductivity +1003.1166 Superconductivity +1003.3509 Rings and Algebras +1003.3700 Probability +1003.3935 Theory +1004.1918 K-Theory and Homology +1004.2086 +1004.4727 Computer Science and Game Theory +1005.0274 Phenomenology +1005.1268 +1005.3214 Theory +1005.4406 Cosmology and Nongalactic Astrophysics +1005.4451 Phenomenology +1006.1086 +1006.1246 +1006.1260 Physics and Society +1006.3281 Biological Physics +1006.3658 Strongly Correlated Electrons +1006.3836 High Energy Astrophysical Phenomena +1006.4686 Algebraic Geometry +1006.5625 Statistical Mechanics +1007.0193 Statistical Mechanics +1007.1281 Physics and Society +1007.2617 +1007.4848 Numerical Analysis +1008.0670 Mesoscale and Nanoscale Physics +1008.1252 Quantum Gases +1008.2326 Statistical Mechanics +1008.3631 Strongly Correlated Electrons +1008.4497 Disordered Systems and Neural Networks +1008.4787 Theory +1009.1296 Astrophysics of Galaxies +1009.2605 Experiment +1009.4293 Optics +1009.4532 Quantum Gases +1009.5223 +1010.0730 Soft Condensed Matter +1010.0731 Soft Condensed Matter +1010.2411 Theory +1010.6273 Phenomenology +1011.0712 +1011.2842 Cosmology and Nongalactic Astrophysics +1011.3186 Algebraic Geometry +1011.4794 Populations and Evolution +1011.5221 Astrophysics of Galaxies +1011.6260 Materials Science +1012.0391 General Mathematics +1012.5722 Space Physics +1101.0155 General Topology +1101.0214 Algebraic Geometry +1101.0271 Biological Physics +1101.0775 Physics and Society +1101.0810 Phenomenology +1101.0819 Computational Physics +1101.0821 General Physics +1101.0823 Discrete Mathematics +1101.0825 Algebraic Geometry +1101.0827 Cryptography and Security +1101.0830 Classical Analysis and ODEs +1101.0831 Methodology +1101.0836 Number Theory +1101.0838 Other Condensed Matter +1101.0847 Algebraic Geometry +1101.0851 Dynamical Systems +1101.0854 Information Theory +1101.0855 Information Theory +1101.0861 Plasma Physics +1101.0863 +1101.0865 +1101.0868 Algebraic Geometry +1101.0872 Theory +1101.0875 Algebraic Geometry +1101.0877 Theory +1101.0878 Experiment +1101.0881 Functional Analysis +1101.0883 Solar and Stellar Astrophysics +1101.0887 Materials Science +1101.0888 General Physics +1101.0891 Methodology +1101.0893 Solar and Stellar Astrophysics +1101.0898 Cosmology and Nongalactic Astrophysics +1101.0899 Methodology +1101.0901 Methodology +1101.0904 Classical Physics +1101.0905 Methodology +1101.0908 History and Philosophy of Physics +1101.0914 Algebraic Geometry +1101.0917 Applications +1101.0922 Dynamical Systems +1101.0928 Optics +1101.0929 Applications +1101.0934 Applications +1101.0936 Applications +1101.0940 Solar and Stellar Astrophysics +1101.0941 Applications +1101.0943 Applications +1101.0946 Symplectic Geometry +1101.0947 Applications +1101.0949 Group Theory +1101.0952 Applications +1101.0959 Applications +1101.0961 Applications +1101.0964 Discrete Mathematics +1101.0966 Applications +1101.0967 Combinatorics +1101.0969 Chemical Physics +1101.0977 Combinatorics +1101.0985 Applications +1101.0991 Commutative Algebra +1101.0992 Analysis of PDEs +1101.1003 Biological Physics +1101.1005 Pattern Formation and Solitons +1101.1010 Mesoscale and Nanoscale Physics +1101.1018 Superconductivity +1101.1032 Statistics Theory +1101.1034 Probability +1101.1037 Accelerator Physics +1101.1046 Solar and Stellar Astrophysics +1101.1047 +1101.1048 Dynamical Systems +1101.1049 Materials Science +1101.1050 Number Theory +1101.1056 Chemical Physics +1101.1063 General Physics +1101.1066 General Physics +astro-ph/0301170 +astro-ph/0308544 +astro-ph/0411574 +cond-mat/9408062 +cond-mat/9705201 +math/0211079 Statistics Theory +0707.0131 Lattice +0708.2776 Combinatorics +0712.3123 Algebraic Topology +0806.1033 Algebraic Geometry +0806.1348 Combinatorics +0807.0427 Dynamical Systems +0808.3684 Algebraic Geometry +0902.2843 Differential Geometry +0904.2455 Dynamical Systems +0906.3677 Superconductivity +0911.0538 Theory +0911.1700 +0911.3142 Theory +0912.3160 History and Philosophy of Physics +1003.4885 Statistics Theory +1004.3644 +1004.4213 Phenomenology +1004.5154 Phenomenology +1004.5343 Dynamical Systems +1005.3783 Differential Geometry +1005.3936 Quantum Gases +1005.4484 Representation Theory +1006.1599 Representation Theory +1006.3776 Combinatorics +1006.3779 Combinatorics +1006.3783 Combinatorics +1007.0786 Combinatorics +1007.1615 Combinatorics +1008.3650 Pricing of Securities +1009.4839 Mesoscale and Nanoscale Physics +1011.0879 +1011.4827 Strongly Correlated Electrons +1012.1192 Geometric Topology +1012.3603 Strongly Correlated Electrons +1012.3660 +1012.3885 Rings and Algebras +1012.5083 Number Theory +1102.2895 Quantum Gases +1102.3215 Probability +1102.4991 Theory +1102.5549 Applications +1103.1211 Group Theory +1103.1902 Superconductivity +1103.2772 Cosmology and Nongalactic Astrophysics +1103.5597 Mesoscale and Nanoscale Physics +1103.5799 Strongly Correlated Electrons +1104.2546 Mesoscale and Nanoscale Physics +1104.2633 Strongly Correlated Electrons +1104.3854 Strongly Correlated Electrons +1104.5515 Analysis of PDEs +1105.0432 Strongly Correlated Electrons +1105.3475 Phenomenology +1105.5368 Quantum Gases +1105.5836 +1105.6258 Quantum Gases +1106.1851 Phenomenology +1106.2872 Programming Languages +1106.4085 Quantum Gases +1106.5370 Superconductivity +1106.6035 Quantum Gases +1107.0438 Algebraic Geometry +1107.3253 Information Theory +1107.3467 Mesoscale and Nanoscale Physics +1107.4044 Phenomenology +1107.4643 Differential Geometry +1107.4802 Theory +1107.4996 Soft Condensed Matter +1107.5505 Soft Condensed Matter +1108.1604 Solar and Stellar Astrophysics +1108.3921 Commutative Algebra +1108.5243 Algebraic Geometry +1108.5796 Algebraic Geometry +1109.0399 Representation Theory +1109.2372 Fluid Dynamics +1109.2421 Instrumentation and Methods for Astrophysics +1109.2707 Soft Condensed Matter +1109.3464 Superconductivity +1109.3493 Strongly Correlated Electrons +1109.3989 Programming Languages +1109.4095 Logic in Computer Science +1109.6154 Pricing of Securities +1109.6383 Experiment +1109.6846 Statistics Theory +1110.0456 Phenomenology +1110.0595 Experiment +1110.0939 Number Theory +1110.1625 Chaotic Dynamics +1110.1755 Solar and Stellar Astrophysics +1110.2167 Accelerator Physics +1110.2168 Solar and Stellar Astrophysics +1110.2169 Geophysics +1110.2173 Cosmology and Nongalactic Astrophysics +1110.2178 Solar and Stellar Astrophysics +1110.2189 Molecular Networks +1110.2190 +1110.2192 Experiment +1110.2199 +1110.2200 Artificial Intelligence +1110.2201 Differential Geometry +1110.2203 Artificial Intelligence +1110.2204 Artificial Intelligence +1110.2205 Artificial Intelligence +1110.2209 Artificial Intelligence +1110.2210 Computer Vision and Pattern Recognition +1110.2211 Learning +1110.2212 Artificial Intelligence +1110.2213 Artificial Intelligence +1110.2214 Phenomenology +1110.2215 Computation and Language +1110.2216 Artificial Intelligence +1110.2218 Experiment +1110.2219 +1110.2222 +1110.2228 Mesoscale and Nanoscale Physics +1110.2230 Computational Complexity +1110.2233 Instrumentation and Detectors +1110.2235 Combinatorics +1110.2236 Phenomenology +1110.2240 Cryptography and Security +1110.2241 Quantum Gases +1110.2243 Dynamical Systems +1110.2244 Symplectic Geometry +1110.2246 Analysis of PDEs +1110.2247 Complex Variables +1110.2248 Rings and Algebras +1110.2252 Phenomenology +1110.2253 History and Philosophy of Physics +1110.2258 Software Engineering +1110.2259 Experiment +1110.2260 Trading and Market Microstructure +1110.2263 Symbolic Computation +1110.2265 Experiment +1110.2266 Experiment +1110.2267 Networking and Internet Architecture +1110.2268 Experiment +1110.2270 Networking and Internet Architecture +1110.2275 Experiment +1110.2276 Phenomenology +1110.2277 Commutative Algebra +1110.2278 Experiment +1110.2280 Mesoscale and Nanoscale Physics +1110.2281 Numerical Analysis +1110.2282 General Physics +1110.2284 Rings and Algebras +1110.2286 Emerging Technologies +1110.2288 Systems and Control +1110.2289 Networking and Internet Architecture +1110.2298 +1110.2300 Commutative Algebra +1110.2302 Probability +1110.2314 Analysis of PDEs +1110.2316 Numerical Analysis +1110.2317 Logic in Computer Science +1110.2321 Phenomenology +1110.2322 Differential Geometry +1110.2323 Dynamical Systems +1110.2324 Numerical Analysis +1110.2325 Theory +1110.2331 Optics +1110.2337 Statistical Mechanics +1110.2339 Atomic Physics +1110.2344 Materials Science +1110.2347 Rings and Algebras +1110.2351 History and Overview +1110.2352 Analysis of PDEs +1110.2360 Fluid Dynamics +1110.2361 Solar and Stellar Astrophysics +1110.2369 +1110.2372 Classical Physics +1110.2374 Experiment +1110.2376 Numerical Analysis +1110.2377 Number Theory +1110.2385 Symplectic Geometry +1110.2386 +1110.2387 General Physics +1110.2396 Digital Libraries +1110.2400 Digital Libraries +1110.2405 Mesoscale and Nanoscale Physics +1110.2406 Metric Geometry +1110.2407 Logic +1110.2416 Learning +1110.2421 Experiment +1110.2423 Chemical Physics +1110.2425 Probability +1110.2432 Solar and Stellar Astrophysics +1110.2434 Phenomenology +1110.2435 Computation +1110.2436 Information Theory +1110.2437 Classical Analysis and ODEs +1110.2438 K-Theory and Homology +1110.2443 Disordered Systems and Neural Networks +1110.2444 Combinatorics +1110.2445 History and Philosophy of Physics +1110.2447 Differential Geometry +1110.2449 Functional Analysis +1110.2454 Probability +1110.2457 Logic +1110.2467 Cosmology and Nongalactic Astrophysics +1110.2469 Analysis of PDEs +1110.2471 Probability +1110.2477 Distributed, Parallel, and Cluster Computing +cond-mat/0610685 Mesoscale and Nanoscale Physics +cs/0606100 Learning +math/0510621 Combinatorics +math/0512518 Combinatorics +math/0601172 Combinatorics +math/0601623 Combinatorics +math/0605084 Combinatorics +math/0609123 Combinatorics +physics/0701103 Atmospheric and Oceanic Physics +quant-ph/0603026 +0706.0433 Numerical Analysis +0707.4251 Differential Geometry +0709.0015 +0801.3940 Biomolecules +0802.2557 +0804.1720 Quantitative Methods +0806.2022 +0808.1886 Theory +0810.4889 +0811.2269 Strongly Correlated Electrons +0811.3130 General Finance +0811.4533 Materials Science +0906.5100 Mesoscale and Nanoscale Physics +0907.1820 Algebraic Geometry +0907.2176 Algebraic Geometry +0907.3815 Combinatorics +0908.1939 Probability +0908.4587 Probability +0911.2815 +1002.1552 Classical Analysis and ODEs +1004.0350 Mesoscale and Nanoscale Physics +1004.2528 Strongly Correlated Electrons +1004.3945 Quantum Gases +1005.1200 Human-Computer Interaction +1005.2093 Soft Condensed Matter +1005.2610 Quantum Gases +1005.3655 Cosmology and Nongalactic Astrophysics +1006.0359 Cosmology and Nongalactic Astrophysics +1006.2669 Algebraic Topology +1006.2920 Statistical Mechanics +1006.4640 Superconductivity +1006.4703 Information Theory +1007.2056 Mesoscale and Nanoscale Physics +1007.4833 Phenomenology +1007.5050 Group Theory +1008.0401 Computational Finance +1009.0427 Mesoscale and Nanoscale Physics +1009.1844 +1009.2078 Superconductivity +1009.3212 Statistical Mechanics +1009.3830 +1009.4381 Instrumentation and Methods for Astrophysics +1009.5652 Atomic Physics +1009.5764 Information Theory +1010.1325 Cosmology and Nongalactic Astrophysics +1010.1411 Statistical Mechanics +1010.1929 Theory +1010.3309 Phenomenology +1010.3946 Phenomenology +1010.4853 Materials Science +1010.4855 Information Theory +1011.0246 +1011.2532 Quantum Gases +1011.2931 Soft Condensed Matter +1011.3750 +1011.6584 Functional Analysis +1012.0232 Computational Complexity +1012.2175 Representation Theory +1012.2886 Cosmology and Nongalactic Astrophysics +1012.3549 Cosmology and Nongalactic Astrophysics +1012.3816 Medical Physics +1012.5954 Representation Theory +1101.2992 Functional Analysis +1101.3297 Computational Geometry +1102.2527 Differential Geometry +1102.3033 +1102.3082 Information Theory +1102.3107 Statistics Theory +1102.3108 Statistics Theory +1102.3137 Strongly Correlated Electrons +1102.3174 Formal Languages and Automata Theory +1102.3191 Algebraic Geometry +1102.3196 Optics +1102.3199 Geometric Topology +1102.3201 Numerical Analysis +1102.3204 Information Theory +1102.3205 Classical Analysis and ODEs +1102.3207 Geometric Topology +1102.3214 Information Theory +1102.3216 Information Theory +1102.3217 Chemical Physics +1102.3219 Networking and Internet Architecture +1102.3221 Group Theory +1102.3223 High Energy Astrophysical Phenomena +1102.3224 Complex Variables +1102.3225 Information Theory +1102.3228 +1102.3230 Solar and Stellar Astrophysics +1102.3241 Information Theory +1102.3242 Information Theory +1102.3243 Information Theory +1102.3247 Number Theory +1102.3252 Logic +1102.3253 General Topology +1102.3255 Materials Science +1102.3266 +1102.3268 Functional Analysis +1102.3269 +1102.3283 Quantum Gases +1102.3287 Statistical Mechanics +1102.3289 Information Theory +1102.3290 Algebraic Geometry +1102.3294 Information Theory +1102.3297 Theory +1102.3303 Operator Algebras +1102.3304 +1102.3306 Information Retrieval +1102.3315 Earth and Planetary Astrophysics +1102.3324 Mesoscale and Nanoscale Physics +1102.3325 Human-Computer Interaction +1102.3328 Graphics +1102.3335 Differential Geometry +1102.3337 Soft Condensed Matter +1102.3338 Adaptation and Self-Organizing Systems +1102.3340 Social and Information Networks +1102.3345 High Energy Astrophysical Phenomena +1102.3358 +1102.3359 Combinatorics +1102.3366 +1102.3369 Cell Behavior +1102.3371 Solar and Stellar Astrophysics +1102.3372 Earth and Planetary Astrophysics +1102.3381 History and Philosophy of Physics +1102.3383 Complex Variables +1102.3386 Theory +1102.3389 Computational Geometry +1102.3390 Information Theory +1102.3392 Information Theory +1102.3393 Data Structures and Algorithms +1102.3396 Robotics +1102.3417 Pattern Formation and Solitons +1102.3418 Fluid Dynamics +1102.3419 Pattern Formation and Solitons +1102.3420 Programming Languages +1102.3427 Experiment +cond-mat/0505478 Statistical Mechanics +cond-mat/0701735 Strongly Correlated Electrons +math-ph/0509023 +0802.0031 Operator Algebras +0802.1462 Other Condensed Matter +0803.1448 Plasma Physics +0807.2586 Mesoscale and Nanoscale Physics +0807.3157 Number Theory +0808.1795 Geometric Topology +0809.0815 Optimization and Control +0901.0161 +0904.3573 Symplectic Geometry +0907.2282 Classical Physics +0909.0565 Quantum Gases +0911.2788 Pattern Formation and Solitons +1001.1586 Materials Science +1001.3116 +1003.0376 Theory +1004.2105 Mesoscale and Nanoscale Physics +1004.3432 +1004.4263 Representation Theory +1005.1662 Algebraic Topology +1005.5689 Mesoscale and Nanoscale Physics +1006.1998 Computational Geometry +1007.1187 Plasma Physics +1007.2755 +1007.4648 Probability +1008.1124 +1008.1870 Lattice +1008.2248 Analysis of PDEs +1008.2800 Theory +1008.2899 Statistical Mechanics +1008.4774 Strongly Correlated Electrons +1008.5103 Mesoscale and Nanoscale Physics +1008.5167 +1009.0121 Algebraic Geometry +1009.1671 Quantum Gases +1009.2982 Group Theory +1010.0973 Classical Analysis and ODEs +1010.2205 Quantum Gases +1010.3549 Soft Condensed Matter +1011.3618 Cosmology and Nongalactic Astrophysics +1012.2252 Optics +1012.4519 Information Theory +1012.5268 Classical Analysis and ODEs +1101.0970 Information Theory +1101.1261 Strongly Correlated Electrons +1101.2293 Statistical Mechanics +1101.2778 Mesoscale and Nanoscale Physics +1101.2788 Optics +1101.2944 +1101.3417 Logic in Computer Science +1101.4126 Phenomenology +1101.4562 Atomic and Molecular Clusters +1101.5813 Theory +1102.1570 Differential Geometry +1102.1881 Optics +1102.4285 +1102.5663 Statistical Mechanics +1103.1004 Quantum Gases +1103.1245 +1103.5888 Strongly Correlated Electrons +1104.0924 Emerging Technologies +1104.1046 Atomic Physics +1104.3757 Materials Science +1104.5203 +1105.1415 Analysis of PDEs +1105.1741 Theory +1105.3429 Strongly Correlated Electrons +1105.3779 Metric Geometry +1105.3794 Instrumentation and Methods for Astrophysics +1105.3806 Representation Theory +1105.4118 Statistical Mechanics +1105.5550 Optimization and Control +1105.5815 Cosmology and Nongalactic Astrophysics +1105.5816 Quantitative Methods +1105.5820 Statistics Theory +1105.5900 Neural and Evolutionary Computing +1105.5930 Analysis of PDEs +1105.5981 Information Theory +1105.6023 Statistical Mechanics +1105.6066 Group Theory +1105.6090 Strongly Correlated Electrons +1105.6094 Earth and Planetary Astrophysics +1105.6102 Mesoscale and Nanoscale Physics +1105.6104 Mesoscale and Nanoscale Physics +1105.6105 Functional Analysis +1105.6109 Complex Variables +1105.6117 Statistical Mechanics +1105.6118 Databases +1105.6119 Differential Geometry +1105.6121 Fluid Dynamics +1105.6124 Artificial Intelligence +1105.6125 Strongly Correlated Electrons +1105.6126 Solar and Stellar Astrophysics +1105.6128 Software Engineering +1105.6129 Probability +1105.6133 Dynamical Systems +1105.6135 Experiment +1105.6138 Numerical Analysis +1105.6143 Algebraic Geometry +1105.6149 +1105.6150 Information Theory +1105.6151 Data Structures and Algorithms +1105.6155 Number Theory +1105.6159 Differential Geometry +1105.6160 Networking and Internet Architecture +1105.6166 Instrumentation and Methods for Astrophysics +1105.6167 Combinatorics +1105.6170 Information Theory +1105.6175 Exactly Solvable and Integrable Systems +1105.6177 Functional Analysis +1105.6178 Atomic and Molecular Clusters +1105.6181 Classical Analysis and ODEs +1105.6183 Exactly Solvable and Integrable Systems +1105.6187 Probability +1105.6194 +1105.6200 +1105.6205 Neural and Evolutionary Computing +1105.6207 Experiment +1105.6208 Cosmology and Nongalactic Astrophysics +1105.6210 Logic in Computer Science +1105.6213 Information Retrieval +1105.6224 Information Theory +1105.6237 Networking and Internet Architecture +1105.6241 Experiment +1105.6243 Number Theory +1105.6251 Soft Condensed Matter +1105.6252 Soft Condensed Matter +1105.6254 Soft Condensed Matter +1105.6260 Plasma Physics +1105.6265 General Finance +1105.6272 General Finance +1105.6279 General Mathematics +1105.6282 Other Quantitative Biology +1105.6286 Phenomenology +1105.6288 Information Theory +1105.6292 Mesoscale and Nanoscale Physics +1105.6296 +1105.6300 Theory +1105.6301 Dynamical Systems +1105.6302 Experiment +1105.6304 Phenomenology +1105.6305 Computational Geometry +1105.6307 Social and Information Networks +1105.6309 Mesoscale and Nanoscale Physics +1105.6314 Artificial Intelligence +1105.6316 Strongly Correlated Electrons +1105.6319 Classical Analysis and ODEs +1105.6320 Cryptography and Security +1105.6325 Representation Theory +1105.6326 Information Theory +1105.6328 +1105.6331 Number Theory +1105.6333 Cosmology and Nongalactic Astrophysics +1105.6349 Physics Education +1105.6351 Statistics Theory +1105.6352 Pattern Formation and Solitons +1105.6356 +1105.6357 Computers and Society +1105.6358 Computers and Society +1105.6361 Other Computer Science +1105.6363 Algebraic Topology +1105.6370 Mesoscale and Nanoscale Physics +1105.6374 Information Theory +cond-mat/0608253 Superconductivity +math/0507180 Statistics Theory +math/0511541 Geometric Topology +math/0606060 Operator Algebras +0708.2783 +0711.4393 Combinatorics +0804.2740 +0807.4443 Statistical Mechanics +0903.3270 Commutative Algebra +0904.1138 Materials Science +0904.3878 Strongly Correlated Electrons +0905.1049 Rings and Algebras +0905.1082 Rings and Algebras +0905.2385 Rings and Algebras +0905.3450 Adaptation and Self-Organizing Systems +0905.3700 Probability +0906.0751 +0906.4448 Astrophysics of Galaxies +0907.4512 Other Condensed Matter +0909.5211 Strongly Correlated Electrons +0910.3607 Algebraic Geometry +0910.3761 Phenomenology +0911.1709 Rings and Algebras +0911.4725 Classical Analysis and ODEs +0912.1076 Phenomenology +0912.1222 +0912.3825 +1001.0535 Functional Analysis +1001.5304 Representation Theory +1002.5013 Statistical Mechanics +1003.0502 Operator Algebras +1003.3177 Differential Geometry +1003.5172 Differential Geometry +1004.2142 Differential Geometry +1004.4620 +1005.2580 Populations and Evolution +1006.5697 Differential Geometry +1007.5328 Physics and Society +1008.2573 Commutative Algebra +1008.5008 +1009.0810 Combinatorics +1009.5470 +1009.5723 Analysis of PDEs +1010.1039 Other Condensed Matter +1010.1349 Cosmology and Nongalactic Astrophysics +1010.2005 Algebraic Geometry +1010.2887 Theory +1010.3390 Methodology +1010.3854 Biological Physics +1010.3911 +1010.4591 Earth and Planetary Astrophysics +1010.5450 Strongly Correlated Electrons +1010.5638 +1011.0018 Materials Science +1011.1263 Data Structures and Algorithms +1011.4048 Mesoscale and Nanoscale Physics +1011.4138 +1011.5929 Adaptation and Self-Organizing Systems +1011.6204 Operator Algebras +1012.4288 Materials Science +1012.4697 Cosmology and Nongalactic Astrophysics +1012.5931 +1101.1157 Strongly Correlated Electrons +1101.1395 Theory +1101.3434 Superconductivity +1101.4292 Combinatorics +1101.4293 Complex Variables +1101.4907 Commutative Algebra +1102.1657 Mesoscale and Nanoscale Physics +1102.1801 Exactly Solvable and Integrable Systems +1102.1938 Instrumentation and Methods for Astrophysics +1102.2044 Phenomenology +1102.4049 Superconductivity +1102.4115 Materials Science +1102.4289 Materials Science +1102.5101 Commutative Algebra +1102.5103 Strongly Correlated Electrons +1103.1792 Strongly Correlated Electrons +1103.4753 +1104.0364 Superconductivity +1104.1821 Mesoscale and Nanoscale Physics +1104.2735 Phenomenology +1104.3279 Analysis of PDEs +1104.4005 +1104.4077 Fluid Dynamics +1104.4111 General Mathematics +1104.4283 Analysis of PDEs +1104.4369 Logic +1104.4502 Dynamical Systems +1104.4503 Cryptography and Security +1104.4520 Mesoscale and Nanoscale Physics +1104.4524 Quantitative Methods +1104.4539 Functional Analysis +1104.4544 Cryptography and Security +1104.4547 Instrumentation and Detectors +1104.4550 General Topology +1104.4557 Number Theory +1104.4559 Classical Analysis and ODEs +1104.4562 Differential Geometry +1104.4564 Phenomenology +1104.4566 +1104.4568 Populations and Evolution +1104.4569 Combinatorics +1104.4579 +1104.4582 +1104.4583 Number Theory +1104.4586 Human-Computer Interaction +1104.4587 Functional Analysis +1104.4592 Differential Geometry +1104.4593 Combinatorics +1104.4597 Data Structures and Algorithms +1104.4598 Number Theory +1104.4602 Mesoscale and Nanoscale Physics +1104.4604 Classical Analysis and ODEs +1104.4605 Machine Learning +1104.4606 Logic +1104.4609 Cosmology and Nongalactic Astrophysics +1104.4620 Complex Variables +1104.4625 Statistical Mechanics +1104.4629 Complex Variables +1104.4637 General Physics +1104.4641 Number Theory +1104.4643 +1104.4646 Information Theory +1104.4651 Functional Analysis +1104.4653 Geometric Topology +1104.4660 Functional Analysis +1104.4661 +1104.4663 Phenomenology +1104.4668 Computational Engineering, Finance, and Science +1104.4673 +1104.4675 Quantum Algebra +1104.4680 Data Structures and Algorithms +1104.4681 Computation and Language +1104.4687 Combinatorics +1104.4690 Networking and Internet Architecture +1104.4692 Combinatorics +1104.4698 Operator Algebras +1104.4703 Combinatorics +1104.4709 Theory +1104.4711 Optimization and Control +1104.4717 Exactly Solvable and Integrable Systems +1104.4723 Computer Vision and Pattern Recognition +1104.4724 Functional Analysis +1104.4733 Probability +1104.4737 +1104.4742 Probability +1104.4744 Superconductivity +1104.4748 Geophysics +1104.4752 Rings and Algebras +1104.4755 Rings and Algebras +1104.4758 +1104.4771 +1104.4772 Classical Analysis and ODEs +1104.4780 Phenomenology +astro-ph/9807162 +cond-mat/0108358 Statistical Mechanics +cond-mat/0509747 Strongly Correlated Electrons +cond-mat/0606159 Strongly Correlated Electrons +hep-th/0306244 Theory +math/0012233 K-Theory and Homology +math/0012234 K-Theory and Homology +math/0207096 Symplectic Geometry +math/0603439 Number Theory +math/0608492 Classical Analysis and ODEs +math/0609043 Symplectic Geometry +math/0612565 Symplectic Geometry +nlin/0406003 Exactly Solvable and Integrable Systems +nucl-th/0410076 +quant-ph/0311188 +0704.2989 Differential Geometry +0704.3627 Algebraic Geometry +0706.1632 Probability +0709.3648 Number Theory +0710.3095 Probability +0803.4063 Physics and Society +0807.1053 +0809.4229 +0809.4236 Algebraic Geometry +0810.0482 Statistical Mechanics +0810.3540 +0902.0183 Theory +0902.0694 Probability +0902.3885 Theory +0902.4312 Probability +0903.3734 +0905.1664 Theory +0905.3780 Cosmology and Nongalactic Astrophysics +0906.3090 Methodology +0907.2767 Number Theory +0908.0452 Probability +0908.0593 +0908.1777 Commutative Algebra +0909.4467 Data Analysis, Statistics and Probability +0910.0874 Chaotic Dynamics +0911.1255 Strongly Correlated Electrons +0911.1697 Applications +0911.3337 Superconductivity +0911.3944 Machine Learning +0911.4436 Phenomenology +0912.0556 Theory +0912.3598 +0912.5517 Theory +1001.0253 Discrete Mathematics +1001.3914 Mesoscale and Nanoscale Physics +1001.3951 +1001.4283 Representation Theory +1001.4401 Statistical Finance +1002.3886 Operator Algebras +1004.5545 Physics and Society +1006.3094 +1006.3804 Phenomenology +1007.1148 Strongly Correlated Electrons +1007.5316 Theory +1008.2038 +1008.2920 +1008.3430 Phenomenology +1008.3886 Phenomenology +1008.4435 Phenomenology +1009.0232 Phenomenology +1009.1200 Materials Science +1010.1574 Superconductivity +1010.3585 +1011.0185 +1011.1251 Solar and Stellar Astrophysics +1011.1496 Solar and Stellar Astrophysics +1011.1825 Number Theory +1011.2350 Theory +1011.3771 Superconductivity +1012.1066 Representation Theory +1012.3363 +1012.4627 Phenomenology +1012.5129 Earth and Planetary Astrophysics +1012.5699 +1101.0468 Mesoscale and Nanoscale Physics +1101.0791 Materials Science +1101.1226 Differential Geometry +1102.1977 Cosmology and Nongalactic Astrophysics +1102.2832 Physics and Society +1102.3375 Phenomenology +1102.4505 Statistical Mechanics +1102.4767 Superconductivity +1102.5264 Data Analysis, Statistics and Probability +1102.5269 +1103.0129 Strongly Correlated Electrons +1103.1045 Mesoscale and Nanoscale Physics +1103.1903 Mesoscale and Nanoscale Physics +1103.1951 Logic +1103.2504 Phenomenology +1103.4057 +1104.0164 Theory +1104.2295 Phenomenology +1104.3285 +1104.3725 Phenomenology +1104.4387 Theory +1104.5308 Instrumentation and Methods for Astrophysics +1104.5397 Theory +1105.1150 Earth and Planetary Astrophysics +1105.1591 High Energy Astrophysical Phenomena +1105.2333 +1105.5194 Theory +1105.5703 Optics +1105.5879 Phenomenology +1106.0102 +1106.0829 Mesoscale and Nanoscale Physics +1106.1182 Phenomenology +1106.1897 Theory +1106.1902 Theory +1106.2133 General Physics +1106.2610 Physics and Society +1106.2688 Phenomenology +1106.3387 Mesoscale and Nanoscale Physics +1106.3455 Physics Education +1106.3824 +1106.4670 Mesoscale and Nanoscale Physics +1107.0911 Astrophysics of Galaxies +1107.1122 Superconductivity +1107.1225 Atomic Physics +1107.2216 Theory +1107.3413 Theory +1107.4662 Statistical Mechanics +1108.0188 General Finance +1108.1112 General Physics +1108.2250 History and Philosophy of Physics +1108.2623 Trading and Market Microstructure +1108.4083 Neural and Evolutionary Computing +1108.4250 Networking and Internet Architecture +1108.4303 Experiment +1108.4333 +1108.4441 +1108.4592 General Physics +1108.4620 Complex Variables +1108.4635 Earth and Planetary Astrophysics +1108.4636 Earth and Planetary Astrophysics +1108.4645 Earth and Planetary Astrophysics +1108.4691 Solar and Stellar Astrophysics +1108.4701 Data Analysis, Statistics and Probability +1108.4702 Combinatorics +1108.4706 Programming Languages +1108.4713 +1108.4715 Quantitative Methods +1108.4720 Numerical Analysis +1108.4722 Number Theory +1108.4723 Information Theory +1108.4724 Materials Science +1108.4725 Number Theory +1108.4726 Number Theory +1108.4731 +1108.4744 Computer Science and Game Theory +1108.4747 Instrumentation and Methods for Astrophysics +1108.4750 Representation Theory +1108.4752 Cosmology and Nongalactic Astrophysics +1108.4758 +1108.4762 Number Theory +1108.4765 +1108.4767 Earth and Planetary Astrophysics +1108.4769 Materials Science +1108.4770 Software Engineering +1108.4776 Phenomenology +1108.4779 Materials Science +1108.4784 Instrumentation and Methods for Astrophysics +1108.4789 Materials Science +1108.4792 Dynamical Systems +1108.4795 Cell Behavior +1108.4801 Social and Information Networks +1108.4803 Data Structures and Algorithms +1108.4805 Optimization and Control +1108.4808 Dynamical Systems +1108.4816 Programming Languages +1108.4826 Plasma Physics +1108.4829 Operator Algebras +1108.4831 Mesoscale and Nanoscale Physics +1108.4832 Group Theory +1108.4837 +1108.4839 Materials Science +1108.4840 Number Theory +1108.4841 Quantitative Methods +1108.4843 Other Computer Science +1108.4844 High Energy Astrophysical Phenomena +1108.4848 Methodology +1108.4852 Phenomenology +1108.4855 Physics and Society +1108.4856 Functional Analysis +1108.4857 Mesoscale and Nanoscale Physics +1108.4862 +1108.4866 Materials Science +1108.4868 Algebraic Topology +1108.4869 Geometric Topology +1108.4874 Experiment +1108.4876 Biomolecules +1108.4879 Machine Learning +1108.4882 Other Computer Science +1108.4883 General Physics +1108.4884 Other Computer Science +1108.4891 Artificial Intelligence +1108.4893 Space Physics +1108.4896 Probability +1108.4901 Populations and Evolution +1108.4905 Cosmology and Nongalactic Astrophysics +1108.4912 Methodology +1108.4913 Group Theory +1108.4916 Exactly Solvable and Integrable Systems +1108.4917 Solar and Stellar Astrophysics +astro-ph/0204338 +astro-ph/0612599 +cond-mat/9701161 Statistical Mechanics +cond-mat/9704017 Statistical Mechanics +cond-mat/9704018 Statistical Mechanics +math-ph/0212029 +math-ph/0505001 +math/0101174 Probability +math/0110127 Probability +math/0111274 Probability +math/0304348 Probability +math/0307043 Probability +math/0310217 Probability +math/0503222 Probability +math/9807134 Probability +math/9807135 Probability +math/9909057 Probability +math/9911106 Probability +quant-ph/0411206 +1008.4000 Learning +1109.6628 Applications +0705.2561 +0711.1309 +0712.3447 Phenomenology +0802.2381 +0804.3325 +0805.0252 Experiment +0806.0198 Algebraic Geometry +0806.4191 Theory +0807.0491 Algebraic Geometry +0809.2421 Artificial Intelligence +0810.4273 Theory +0811.3136 General Physics +0812.4978 General Finance +0902.0447 Quantum Algebra +0902.0918 General Physics +0902.2329 Combinatorics +0902.2583 Solar and Stellar Astrophysics +0902.3732 Earth and Planetary Astrophysics +0902.4018 Earth and Planetary Astrophysics +0903.1633 Probability +0904.1339 Algebraic Geometry +0904.2453 Phenomenology +0905.1968 Theory +0905.3477 Phenomenology +0905.4309 Solar and Stellar Astrophysics +0905.4849 Statistical Mechanics +0906.4977 Cosmology and Nongalactic Astrophysics +0908.0059 Theory +0908.0218 Theory +0908.2874 +0908.3801 Combinatorics +0908.4550 Other Condensed Matter +0909.2228 Instrumentation and Methods for Astrophysics +0909.2427 +0909.2606 Probability +0909.5462 +0910.0693 Statistical Mechanics +0910.3426 Theory +0911.1737 Combinatorics +0911.1907 Cosmology and Nongalactic Astrophysics +0911.2297 +0911.3892 Phenomenology +0911.5695 Theory +0912.1849 Phenomenology +0912.2147 Phenomenology +0912.4590 Differential Geometry +0912.4796 Strongly Correlated Electrons +1001.0127 +1001.0757 Theory +1001.0785 Theory +1001.3360 Phenomenology +1001.4053 +1002.2923 Soft Condensed Matter +1003.0462 Number Theory +1003.0711 Geometric Topology +1003.1393 Probability +1004.0450 General Physics +1004.1635 +1004.4142 Theory +1005.0500 +1005.1561 +1005.1620 +1005.3305 Phenomenology +1005.3353 Lattice +1005.3541 Quantum Gases +1005.3653 Theory +1005.4921 Theory +1005.5104 Theory +1005.5256 Phenomenology +1005.5357 Phenomenology +1005.5667 Phenomenology +1006.0679 Phenomenology +1006.2099 Phenomenology +1006.2109 Phenomenology +1006.2231 Phenomenology +1006.3497 Theory +1006.3657 Phenomenology +1006.3952 Phenomenology +1006.3966 Phenomenology +1006.4822 Theory +1006.5594 Phenomenology +1006.5714 Theory +1007.1739 Quantum Algebra +1007.1849 Superconductivity +1007.2502 Phenomenology +1007.2654 Theory +1007.2936 Strongly Correlated Electrons +1007.3776 +1007.3800 +1007.4612 +1007.4886 Representation Theory +1007.5012 Theory +1007.5023 Phenomenology +1008.0983 Theory +1008.1581 Theory +1008.2196 +1008.2460 Phenomenology +1008.2623 Chaotic Dynamics +1008.2962 Theory +1008.2996 Information Theory +1008.3134 +1008.3180 Theory +1008.3237 Operator Algebras +1008.4529 Statistical Mechanics +1008.4591 +1008.4834 Mesoscale and Nanoscale Physics +1009.0215 +1009.1124 Representation Theory +1009.2525 Theory +1009.3032 Theory +1009.3226 Theory +1009.4187 Dynamical Systems +1009.4369 Theory +1009.5294 Strongly Correlated Electrons +1010.0134 Phenomenology +1010.0257 Theory +1010.1485 +1010.1702 Theory +1010.1766 Statistical Mechanics +1010.2054 +1010.2116 Phenomenology +1010.2514 +1010.3630 +1010.3700 Theory +1010.3968 Phenomenology +1010.4648 Theory +1010.5804 +1010.6106 Theory +1011.0029 +1011.0114 Phenomenology +1011.0167 +1011.0741 Materials Science +1011.1302 Lattice +1011.1322 Lattice +1011.1323 Lattice +1011.1353 Lattice +1011.1358 Lattice +1011.1359 Lattice +1011.1371 Phenomenology +1011.1388 Lattice +1011.1392 Phenomenology +1011.1404 Phenomenology +1011.1411 Phenomenology +1011.1435 Phenomenology +1011.1448 Phenomenology +1011.3522 Phenomenology +1011.3623 Superconductivity +1011.4374 Cosmology and Nongalactic Astrophysics +1011.4683 Materials Science +1011.4778 Data Analysis, Statistics and Probability +1012.2137 High Energy Astrophysical Phenomena +1012.2515 Theory +1012.2896 Quantum Gases +1012.3556 +1012.5236 Superconductivity +1012.5643 Theory +1012.6042 Phenomenology +1101.0051 Superconductivity +1101.0117 Phenomenology +1101.0152 Theory +1101.1389 Theory +1101.2374 Methodology +1101.2454 Mesoscale and Nanoscale Physics +1101.2727 +1101.2749 Phenomenology +1101.2820 +1101.2868 +1101.2885 +1101.3388 +1101.3560 Theory +1101.3691 +1101.3747 Instrumentation and Detectors +1101.4089 +1101.4146 Chemical Physics +1101.4560 Solar and Stellar Astrophysics +1101.4611 Phenomenology +1101.4926 Experiment +1101.5117 Superconductivity +1101.5226 +1101.5523 Experiment +1101.5695 Phenomenology +1102.0093 Theory +1102.1134 Phenomenology +1102.1877 Phenomenology +1102.2145 Statistical Mechanics +1102.2174 Logic in Computer Science +1102.2253 +1102.2699 +1102.3081 Phenomenology +1102.3083 Optics +1102.3388 Phenomenology +1102.3656 +1102.3820 Theory +1102.4214 Phenomenology +1102.4858 +1102.5032 Optics +1102.5657 Atomic Physics +1103.0357 Cosmology and Nongalactic Astrophysics +1103.1695 +1103.2571 Phenomenology +1103.2782 Experiment +1103.3922 Theory +1103.4025 Representation Theory +1103.4842 General Physics +1103.5180 Differential Geometry +1103.5250 Analysis of PDEs +1103.5505 Differential Geometry +1103.5916 Logic in Computer Science +1104.1233 Cosmology and Nongalactic Astrophysics +1104.2773 Information Theory +1104.3311 +1104.3447 Probability +1104.3478 K-Theory and Homology +1104.3581 Cosmology and Nongalactic Astrophysics +1104.3582 Chemical Physics +1104.3589 Analysis of PDEs +1104.3600 Group Theory +1104.3602 Information Theory +1104.3604 Functional Analysis +1104.3605 Classical Analysis and ODEs +1104.3609 Formal Languages and Automata Theory +1104.3623 General Physics +1104.3626 Dynamical Systems +1104.3628 +1104.3634 +1104.3648 Algebraic Geometry +1104.3649 Analysis of PDEs +1104.3650 +1104.3651 Optics +1104.3652 Mesoscale and Nanoscale Physics +1104.3655 +1104.3657 Differential Geometry +1104.3667 Methodology +1104.3671 +1104.3677 Data Structures and Algorithms +1104.3679 Probability +1104.3681 Robotics +1104.3684 +1104.3690 Astrophysics of Galaxies +1104.3694 Networking and Internet Architecture +1104.3696 Analysis of PDEs +1104.3698 Group Theory +1104.3701 Analysis of PDEs +1104.3710 High Energy Astrophysical Phenomena +1104.3724 Number Theory +1104.3730 Lattice +1104.3731 Probability +1104.3741 +1104.3742 Computer Vision and Pattern Recognition +1104.3748 Algebraic Geometry +1104.3759 Probability +1104.3760 Computational Complexity +1104.3762 Dynamical Systems +1104.3769 Numerical Analysis +1104.3772 Rings and Algebras +1104.3774 Rings and Algebras +1104.3779 Plasma Physics +1104.3780 Chemical Physics +1104.3782 Plasma Physics +1104.3784 Accelerator Physics +1104.3793 Quantum Algebra +1104.3805 Populations and Evolution +1104.3806 Data Structures and Algorithms +1104.3807 Accelerator Physics +1104.3808 Discrete Mathematics +1104.3810 Data Structures and Algorithms +1104.3813 General Physics +1104.3817 Solar and Stellar Astrophysics +1104.3824 Rings and Algebras +1104.3826 General Mathematics +1104.3831 History and Overview +1104.3841 Operator Algebras +1104.3845 Cosmology and Nongalactic Astrophysics +1104.3848 +1104.3849 Differential Geometry +1104.3853 +astro-ph/0207226 +astro-ph/0210042 +astro-ph/0409302 +astro-ph/0509021 +astro-ph/9501008 +astro-ph/9811364 +astro-ph/9906426 +astro-ph/9909143 +cond-mat/0405648 Disordered Systems and Neural Networks +cond-mat/9207025 +cond-mat/9706149 +cond-mat/9706172 +cond-mat/9708074 +cs/0502089 Distributed, Parallel, and Cluster Computing +gr-qc/0211062 +gr-qc/9303018 +gr-qc/9307030 +gr-qc/9309008 +gr-qc/9403064 +gr-qc/9406004 +gr-qc/9506053 +gr-qc/9607008 +gr-qc/9607040 +gr-qc/9706044 +gr-qc/9710081 +gr-qc/9811004 +gr-qc/9905029 +gr-qc/9910005 +gr-qc/9910011 +hep-ex/9510011 Experiment +hep-ex/9704019 Experiment +hep-ex/9903009 Experiment +hep-lat/0204013 Lattice +hep-lat/0205030 Lattice +hep-lat/9204017 Lattice +hep-lat/9208002 Lattice +hep-lat/9209021 Lattice +hep-lat/9306023 Lattice +hep-lat/9309004 Lattice +hep-lat/9311006 Lattice +hep-lat/9311045 Lattice +hep-lat/9311069 Lattice +hep-lat/9401026 Lattice +hep-lat/9412091 Lattice +hep-lat/9901014 Lattice +hep-ph/0001197 Phenomenology +hep-ph/0002266 Phenomenology +hep-ph/0005012 Phenomenology +hep-ph/0007323 Phenomenology +hep-ph/0106227 Phenomenology +hep-ph/0110287 Phenomenology +hep-ph/0111275 Phenomenology +hep-ph/0112014 Phenomenology +hep-ph/0201243 Phenomenology +hep-ph/0604190 Phenomenology +hep-ph/9204231 Phenomenology +hep-ph/9212254 Phenomenology +hep-ph/9302205 Phenomenology +hep-ph/9307210 Phenomenology +hep-ph/9307364 Phenomenology +hep-ph/9308300 Phenomenology +hep-ph/9312327 Phenomenology +hep-ph/9401252 Phenomenology +hep-ph/9405329 Phenomenology +hep-ph/9409314 Phenomenology +hep-ph/9411279 Phenomenology +hep-ph/9412285 Phenomenology +hep-ph/9502408 Phenomenology +hep-ph/9503239 Phenomenology +hep-ph/9507370 Phenomenology +hep-ph/9507389 Phenomenology +hep-ph/9507435 Phenomenology +hep-ph/9510349 Phenomenology +hep-ph/9510413 Phenomenology +hep-ph/9605252 Phenomenology +hep-ph/9605367 Phenomenology +hep-ph/9608350 Phenomenology +hep-ph/9609308 Phenomenology +hep-ph/9702371 Phenomenology +hep-ph/9708375 Phenomenology +hep-ph/9804256 Phenomenology +hep-ph/9807242 Phenomenology +hep-ph/9807335 Phenomenology +hep-ph/9902383 Phenomenology +hep-ph/9904507 Phenomenology +hep-ph/9907456 Phenomenology +hep-th/0002034 Theory +hep-th/0002139 Theory +hep-th/0002254 Theory +hep-th/0108134 Theory +hep-th/0111167 Theory +hep-th/0112097 Theory +hep-th/0202110 Theory +hep-th/0206006 Theory +hep-th/0306127 Theory +hep-th/9108026 Theory +hep-th/9110045 Theory +hep-th/9112048 Theory +hep-th/9112065 Theory +hep-th/9203079 Theory +hep-th/9205061 Theory +hep-th/9207004 Theory +hep-th/9207011 Theory +hep-th/9208046 Theory +hep-th/9209050 Theory +hep-th/9209122 Theory +hep-th/9211090 Theory +hep-th/9212030 Theory +hep-th/9301020 Theory +hep-th/9307030 Theory +hep-th/9309062 Theory +hep-th/9310049 Theory +hep-th/9311023 Theory +hep-th/9312213 Theory +hep-th/9403081 Theory +hep-th/9404128 Theory +hep-th/9408077 Theory +hep-th/9408146 Theory +hep-th/9408152 Theory +hep-th/9408176 Theory +hep-th/9409075 Theory +hep-th/9411136 Theory +hep-th/9503028 Theory +hep-th/9503222 Theory +hep-th/9506204 Theory +hep-th/9609200 Theory +hep-th/9704166 Theory +hep-th/9707178 Theory +hep-th/9808064 Theory +hep-th/9904147 Theory +hep-th/9906199 Theory +hep-th/9910170 Theory +math/0109152 Probability +math/0511603 Differential Geometry +math/0605383 Algebraic Geometry +nucl-ex/0104018 +nucl-ex/0607012 +nucl-ex/9906001 +nucl-th/9406018 +nucl-th/9406033 +nucl-th/9508011 +nucl-th/9901072 +physics/0003024 General Physics +physics/0603230 Accelerator Physics +physics/9706024 Instrumentation and Detectors +physics/9707015 +physics/9804010 Classical Physics +physics/9901045 Accelerator Physics +physics/9904044 Fluid Dynamics +0705.0591 Complex Variables +0708.2155 Complex Variables +0711.2276 +0712.2641 Algebraic Geometry +0807.1397 +0807.4292 Mesoscale and Nanoscale Physics +0808.0131 Geometric Topology +0809.0504 Populations and Evolution +0810.4563 +0812.1948 Probability +0812.2461 Symplectic Geometry +0902.1784 Metric Geometry +0903.1077 Statistical Mechanics +0903.4570 Biological Physics +0904.4388 +0907.0745 Classical Analysis and ODEs +0909.0556 Optics +0909.5274 Number Theory +0909.5632 Functional Analysis +1001.2107 Optics +1001.4943 Fluid Dynamics +1001.5142 Probability +1002.2970 +1002.3416 +1003.3453 Strongly Correlated Electrons +1004.1608 +1004.1837 Strongly Correlated Electrons +1005.3314 Strongly Correlated Electrons +1005.4413 Mesoscale and Nanoscale Physics +1007.3562 Geometric Topology +1007.5280 Mesoscale and Nanoscale Physics +1008.1262 Mesoscale and Nanoscale Physics +1008.3939 Algebraic Geometry +1008.4151 +1009.5325 +1010.1551 Mesoscale and Nanoscale Physics +1011.6053 +1012.2070 +1012.5100 Quantum Gases +1012.5780 Statistical Mechanics +1101.1895 Information Theory +1101.3451 +1102.1557 Theory +1102.5082 Functional Analysis +1102.5182 Probability +1102.5416 +1103.0826 +1103.0950 Mesoscale and Nanoscale Physics +1103.1411 High Energy Astrophysical Phenomena +1103.1930 Materials Science +1103.3984 Number Theory +1103.5311 +1103.5974 Cosmology and Nongalactic Astrophysics +1104.0945 +1104.1888 Theory +1104.2802 Functional Analysis +1105.0622 +1105.1080 +1105.1295 +1105.1447 Phenomenology +1105.1669 +1105.1711 Phenomenology +1105.3083 Solar and Stellar Astrophysics +1105.4141 Strongly Correlated Electrons +1105.4804 Phenomenology +1106.0715 +1106.2968 Phenomenology +1106.3121 +1106.3157 +1106.3618 +1106.3797 +1106.4539 +1106.5864 Statistical Mechanics +1106.6189 +1107.0271 Cosmology and Nongalactic Astrophysics +1107.0324 Statistical Mechanics +1107.0340 Phenomenology +1107.0914 Phenomenology +1107.1770 +1107.2233 Solar and Stellar Astrophysics +1107.2661 General Topology +1107.3092 Atomic Physics +1107.3403 Analysis of PDEs +1108.0620 +1108.2070 Networking and Internet Architecture +1108.3647 Theory +1108.4094 Software Engineering +1108.5148 Cryptography and Security +1108.6096 Number Theory +1108.6144 +1108.6145 Spectral Theory +1108.6211 Artificial Intelligence +1108.6228 Probability +1108.6290 Multimedia +1109.0025 Number Theory +1109.0033 Number Theory +1109.0035 Systems and Control +1109.0038 Networking and Internet Architecture +1109.0041 +1109.0044 Probability +1109.0051 Dynamical Systems +1109.0055 Optics +1109.0057 Plasma Physics +1109.0060 +1109.0071 Mesoscale and Nanoscale Physics +1109.0077 Systems and Control +1109.0078 Statistics Theory +1109.0082 +1109.0085 Neural and Evolutionary Computing +1109.0090 Computer Vision and Pattern Recognition +1109.0091 Theory +1109.0097 Cryptography and Security +1109.0098 Software Engineering +1109.0099 Functional Analysis +1109.0100 Functional Analysis +1109.0101 Functional Analysis +1109.0104 Statistical Mechanics +1109.0106 Category Theory +1109.0109 Numerical Analysis +1109.0113 Artificial Intelligence +1109.0114 Artificial Intelligence +1109.0115 Logic in Computer Science +1109.0121 Solar and Stellar Astrophysics +1109.0126 +1109.0127 Phenomenology +1109.0129 Computational Geometry +1109.0132 Cryptography and Security +1109.0138 Computer Vision and Pattern Recognition +1109.0140 +1109.0141 Statistics Theory +1109.0142 Classical Physics +1109.0144 Solar and Stellar Astrophysics +1109.0160 Optics +1109.0163 +1109.0164 Computational Physics +1109.0165 Disordered Systems and Neural Networks +1109.0166 Information Retrieval +1109.0168 +1109.0170 +1109.0172 Computational Physics +1109.0183 Dynamical Systems +1109.0187 Differential Geometry +1109.0191 Combinatorics +1109.0192 High Energy Astrophysical Phenomena +1109.0196 Lattice +1109.0202 Probability +1109.0206 +1109.0207 Number Theory +1109.0213 Other Computer Science +1109.0214 Other Computer Science +1109.0215 +1109.0216 Information Theory +1109.0218 Algebraic Topology +1109.0219 Experiment +1109.0220 Molecular Networks +1109.0231 Operator Algebras +1109.0232 Number Theory +1109.0234 Strongly Correlated Electrons +1109.0239 Rings and Algebras +1109.0246 Software Engineering +1109.0247 Statistical Mechanics +1109.0248 +1109.0251 Rings and Algebras +1109.0257 Networking and Internet Architecture +1109.0264 Information Theory +1109.0267 Cosmology and Nongalactic Astrophysics +1109.0268 Phenomenology +1109.0274 Analysis of PDEs +cond-mat/0701463 Statistical Mechanics +cs/0603109 Information Theory +hep-th/0412034 Theory +math/0411211 Optimization and Control +0711.1598 +0712.1851 Phenomenology +0806.3293 +0806.4483 Instrumentation and Detectors +0902.0680 Dynamical Systems +0902.1994 +0904.3690 Materials Science +0905.4284 +0906.2985 Analysis of PDEs +0907.4775 Computational Complexity +0910.1682 Instrumentation and Detectors +0910.3356 Phenomenology +0911.0715 General Physics +0911.2023 Information Theory +0912.1132 Symplectic Geometry +1002.1336 Strongly Correlated Electrons +1002.4626 Cosmology and Nongalactic Astrophysics +1002.4663 Cosmology and Nongalactic Astrophysics +1003.3774 Theory +1004.1721 Optics +1004.4498 Materials Science +1005.1322 Materials Science +1005.1675 Cosmology and Nongalactic Astrophysics +1005.2570 Differential Geometry +1005.3394 Phenomenology +1005.4779 Theory +1005.5280 Commutative Algebra +1005.5638 Optimization and Control +1006.0487 High Energy Astrophysical Phenomena +1006.3562 Phenomenology +1006.4469 Cosmology and Nongalactic Astrophysics +1007.2990 +1008.0206 Theory +1008.1839 Theory +1008.2077 Phenomenology +1008.3619 +1008.4812 Probability +1009.3663 Numerical Analysis +1009.6175 Phenomenology +1010.3834 +1010.4721 Combinatorics +1011.0161 Experiment +1011.0616 Experiment +1011.0921 Phenomenology +1011.2016 Materials Science +1011.2395 Statistical Mechanics +1011.2424 Statistics Theory +1011.3026 Lattice +1011.3423 +1011.4239 Cosmology and Nongalactic Astrophysics +1011.4642 Quantum Gases +1011.4950 Phenomenology +1012.2419 +1012.2971 Quantum Gases +1012.3046 +1012.3459 Mesoscale and Nanoscale Physics +1012.4041 Superconductivity +1012.4606 Algebraic Geometry +1012.5502 Phenomenology +1012.5900 +1101.0146 +1101.0911 Strongly Correlated Electrons +1101.1324 Phenomenology +1101.2366 Dynamical Systems +1101.2498 Statistical Mechanics +1101.2771 Algebraic Geometry +1101.2918 Algebraic Topology +1101.4012 +1101.5420 Phenomenology +1102.1933 Superconductivity +1102.3015 Theory +1102.3578 Chaotic Dynamics +1102.3594 Phenomenology +1102.3690 Strongly Correlated Electrons +1102.4142 Phenomenology +1102.4217 Plasma Physics +1102.4938 +1103.0639 Quantum Gases +1103.0776 Cosmology and Nongalactic Astrophysics +1103.0949 Machine Learning +1103.1102 Cosmology and Nongalactic Astrophysics +1103.1569 Phenomenology +1103.3280 Phenomenology +1103.3341 Phenomenology +1103.4108 High Energy Astrophysical Phenomena +1103.4659 Physics and Society +1103.5081 Neural and Evolutionary Computing +1103.5476 Cosmology and Nongalactic Astrophysics +1103.5568 Theory +1103.5690 Popular Physics +1103.5941 +1104.0453 Superconductivity +1104.1084 Phenomenology +1104.1917 Phenomenology +1104.2077 Theory +1104.3194 Theory +1104.3535 Mesoscale and Nanoscale Physics +1104.3860 Cosmology and Nongalactic Astrophysics +1104.3872 Disordered Systems and Neural Networks +1104.4225 Phenomenology +1104.5120 Mesoscale and Nanoscale Physics +1104.5687 Machine Learning +1105.0747 Materials Science +1105.2065 Astrophysics of Galaxies +1105.2682 Analysis of PDEs +1105.2928 Data Analysis, Statistics and Probability +1105.3294 Phenomenology +1105.3758 Biomolecules +1105.3827 Materials Science +1105.3840 +1105.5650 Solar and Stellar Astrophysics +1105.5996 Analysis of PDEs +1106.0047 Superconductivity +1106.2407 Optimization and Control +1106.2422 Quantum Algebra +1106.2572 High Energy Astrophysical Phenomena +1106.2642 +1106.4881 Theory +1106.5061 Quantitative Methods +1106.5254 Differential Geometry +1106.5558 Theory +1106.5596 Computer Science and Game Theory +1106.5599 Statistics Theory +1106.5660 +1106.5704 Algebraic Geometry +1106.5776 Classical Analysis and ODEs +1106.5796 General Physics +1106.5811 Materials Science +1106.5814 Atmospheric and Oceanic Physics +1106.5815 Optimization and Control +1106.5816 Materials Science +1106.5818 Physics and Society +1106.5820 Phenomenology +1106.5824 Materials Science +1106.5827 Strongly Correlated Electrons +1106.5829 Robotics +1106.5831 Mesoscale and Nanoscale Physics +1106.5833 Applications +1106.5837 Methodology +1106.5844 Metric Geometry +1106.5845 Data Structures and Algorithms +1106.5846 Distributed, Parallel, and Cluster Computing +1106.5849 Astrophysics of Galaxies +1106.5851 Number Theory +1106.5855 Functional Analysis +1106.5859 Superconductivity +1106.5860 Number Theory +1106.5862 Disordered Systems and Neural Networks +1106.5873 +1106.5877 Instrumentation and Detectors +1106.5884 Astrophysics of Galaxies +1106.5885 Combinatorics +1106.5890 Artificial Intelligence +1106.5895 Combinatorics +1106.5896 Statistical Mechanics +1106.5897 Phenomenology +1106.5900 Differential Geometry +1106.5911 Chemical Physics +1106.5916 Cosmology and Nongalactic Astrophysics +1106.5917 Artificial Intelligence +1106.5918 Cosmology and Nongalactic Astrophysics +1106.5919 Methodology +1106.5924 Soft Condensed Matter +1106.5928 Computer Vision and Pattern Recognition +1106.5933 Theory +1106.5937 Phenomenology +1106.5939 +1106.5940 Combinatorics +1106.5946 Solar and Stellar Astrophysics +1106.5947 Group Theory +1106.5949 Algebraic Geometry +1106.5950 Quantitative Methods +1106.5954 Rings and Algebras +1106.5955 Superconductivity +1106.5961 Analysis of PDEs +1106.5962 Software Engineering +1106.5966 +1106.5967 Operator Algebras +1106.5969 Combinatorics +1106.5970 +1106.5973 Computation and Language +1106.5975 Numerical Analysis +1106.5979 Databases +1106.5986 Representation Theory +1106.5990 Numerical Analysis +1106.5995 Artificial Intelligence +1106.5998 Artificial Intelligence +1106.6004 Algebraic Geometry +1106.6013 Classical Analysis and ODEs +1106.6015 Rings and Algebras +1106.6024 Optimization and Control +1106.6033 Algebraic Topology +astro-ph/0302574 +astro-ph/9404061 +cs/0306114 Distributed, Parallel, and Cluster Computing +cs/0306115 Distributed, Parallel, and Cluster Computing +hep-th/0301023 Theory +math/0608422 Probability +nucl-ex/0606001 +physics/0409006 Instrumentation and Detectors +0704.0036 Quantitative Methods +0704.0136 General Physics +0704.0158 Other Quantitative Biology +0704.0187 +0704.0251 +0704.0309 Computational Complexity +0704.0511 +0704.0731 +0704.0781 Materials Science +0704.0926 Optimization and Control +0704.0960 +0704.1007 Disordered Systems and Neural Networks +0704.1017 Strongly Correlated Electrons +0704.1048 Strongly Correlated Electrons +0704.1269 Disordered Systems and Neural Networks +0704.1274 Learning +0704.1378 Algebraic Topology +0704.1520 Soft Condensed Matter +0704.1598 +0704.1635 Functional Analysis +0704.1663 Statistical Mechanics +0704.1806 Soft Condensed Matter +0704.1895 Soft Condensed Matter +0704.2027 +0704.2060 Superconductivity +0704.2088 Strongly Correlated Electrons +0704.2119 Differential Geometry +0704.2128 Materials Science +0704.2225 Mesoscale and Nanoscale Physics +0704.2289 Probability +0704.2304 +0704.2307 Phenomenology +0704.2310 Superconductivity +0704.2370 Mesoscale and Nanoscale Physics +0704.2464 Theory +0704.2619 Statistical Mechanics +0704.2682 Materials Science +0704.2725 Neural and Evolutionary Computing +0704.2734 Commutative Algebra +0704.2757 +0704.2765 +0704.2816 Phenomenology +0704.2937 +0704.2951 Physics and Society +0704.3015 Soft Condensed Matter +0704.3070 +0704.3142 +0704.3230 Soft Condensed Matter +0704.3510 Strongly Correlated Electrons +0704.3598 Mesoscale and Nanoscale Physics +0704.3659 Phenomenology +0704.3687 Operator Algebras +0704.3755 Soft Condensed Matter +0704.3843 Combinatorics +0705.0150 Computational Engineering, Finance, and Science +0705.0427 +0705.0498 Strongly Correlated Electrons +0705.0509 Superconductivity +0705.0631 +0705.0635 Computational Geometry +0705.0651 Materials Science +0705.0744 Theory +0705.0843 Statistical Mechanics +0705.0845 +0705.0886 Mesoscale and Nanoscale Physics +0705.1102 Mesoscale and Nanoscale Physics +0705.1119 +0705.1175 Statistical Mechanics +0705.1275 +0705.1303 Mesoscale and Nanoscale Physics +0705.1329 Numerical Analysis +0705.1424 +0705.1459 Chaotic Dynamics +0705.1467 Strongly Correlated Electrons +0705.1533 +0705.1543 Mesoscale and Nanoscale Physics +0705.1617 +0705.1648 +0705.1699 Analysis of PDEs +0705.1708 Functional Analysis +0705.1735 Statistical Mechanics +0705.1817 Optics +0705.1991 +0705.2015 Statistical Mechanics +0705.2042 Classical Analysis and ODEs +0705.2163 Materials Science +0705.2239 Superconductivity +0705.2416 Probability +0705.2424 Mesoscale and Nanoscale Physics +0705.2432 Experiment +0705.2466 +0705.2498 Materials Science +0705.2591 Strongly Correlated Electrons +0705.2615 Superconductivity +0705.2737 Other Condensed Matter +0705.2752 Strongly Correlated Electrons +0705.2881 Atmospheric and Oceanic Physics +0705.2904 +0705.2914 Experiment +0705.3125 Experiment +0705.3156 Probability +0705.3227 Computer Science and Game Theory +0705.3346 Superconductivity +0705.3387 Atomic and Molecular Clusters +0705.3389 Atomic and Molecular Clusters +0705.3589 Phenomenology +0705.3693 Dynamical Systems +0705.3718 Statistical Mechanics +0705.3733 Experiment +0709.2882 Number Theory +0710.4629 Logic in Computer Science +0710.4630 Hardware Architecture +0710.4632 Hardware Architecture +0710.4633 Performance +0710.4634 Hardware Architecture +0710.4635 Operating Systems +0710.4636 Hardware Architecture +0710.4637 Other Computer Science +0710.4638 Hardware Architecture +0710.4639 Hardware Architecture +0710.4640 Programming Languages +0710.4641 Software Engineering +0710.4642 Other Computer Science +0710.4643 Hardware Architecture +0710.4644 Hardware Architecture +0710.4645 Hardware Architecture +0710.4646 Hardware Architecture +0710.4649 Hardware Architecture +0710.4652 Hardware Architecture +0710.4653 Hardware Architecture +0710.4654 Hardware Architecture +0710.4655 Hardware Architecture +0710.4656 Hardware Architecture +0710.4657 Hardware Architecture +0710.4658 Hardware Architecture +0710.4659 Hardware Architecture +0710.4660 Hardware Architecture +0710.4661 Hardware Architecture +0710.4663 Hardware Architecture +0710.4665 Hardware Architecture +0710.4666 Logic in Computer Science +0710.4667 Hardware Architecture +0710.4669 Hardware Architecture +0710.4670 Hardware Architecture +0710.4671 Hardware Architecture +0710.4672 Hardware Architecture +0710.4673 Hardware Architecture +0710.4678 Hardware Architecture +0710.4679 Hardware Architecture +0710.4680 Computational Complexity +0710.4681 Hardware Architecture +0710.4682 Software Engineering +0710.4683 Programming Languages +0710.4684 Hardware Architecture +0710.4685 Hardware Architecture +0710.4686 Hardware Architecture +0710.4687 Hardware Architecture +0710.4688 Hardware Architecture +0710.4689 Logic in Computer Science +0710.4690 Other Computer Science +0710.4691 Hardware Architecture +0710.4692 Hardware Architecture +0710.4693 Hardware Architecture +0710.4694 Logic in Computer Science +0710.4695 Logic in Computer Science +0710.4697 Hardware Architecture +0710.4698 Logic in Computer Science +0710.4700 Software Engineering +0710.4701 Performance +0710.4702 Programming Languages +0710.4703 Hardware Architecture +0710.4704 Hardware Architecture +0710.4705 Hardware Architecture +0710.4706 Hardware Architecture +0710.4707 Hardware Architecture +0710.4709 Hardware Architecture +0710.4710 Other Computer Science +0710.4711 Hardware Architecture +0710.4712 Hardware Architecture +0710.4713 Hardware Architecture +0710.4714 Hardware Architecture +0710.4715 Hardware Architecture +0710.4716 Hardware Architecture +0710.4717 Hardware Architecture +0710.4718 Other Computer Science +0710.4719 Hardware Architecture +0710.4720 Hardware Architecture +0710.4721 Hardware Architecture +0710.4722 Hardware Architecture +0710.4723 Performance +0710.4724 Hardware Architecture +0710.4725 Neural and Evolutionary Computing +0710.4727 Hardware Architecture +0710.4728 Hardware Architecture +0710.4729 Hardware Architecture +0710.4731 Hardware Architecture +0710.4732 Networking and Internet Architecture +0710.4733 Hardware Architecture +0710.4734 Artificial Intelligence +0710.4735 Hardware Architecture +0710.4736 Hardware Architecture +0710.4737 Other Computer Science +0710.4738 Hardware Architecture +0710.4739 Other Computer Science +0710.4740 Other Computer Science +0710.4742 Hardware Architecture +0710.4743 Logic in Computer Science +0710.4745 Other Computer Science +0710.4746 Operating Systems +0710.4747 Hardware Architecture +0710.4748 Hardware Architecture +0710.4750 Information Theory +0710.4751 Hardware Architecture +0710.4752 Other Computer Science +0710.4753 Logic in Computer Science +0710.4754 Hardware Architecture +0710.4755 Software Engineering +0710.4756 Cryptography and Security +0710.4757 Hardware Architecture +0710.4758 Other Computer Science +0710.4759 Hardware Architecture +0710.4760 Hardware Architecture +0710.4761 Hardware Architecture +0710.4762 Hardware Architecture +0710.4763 Hardware Architecture +0710.4764 Hardware Architecture +0710.4793 Software Engineering +0710.4794 Hardware Architecture +0710.4795 Hardware Architecture +0710.4796 Hardware Architecture +0710.4797 Other Computer Science +0710.4798 Other Computer Science +0710.4799 Other Computer Science +0710.4800 Cryptography and Security +0710.4801 Hardware Architecture +0710.4802 Other Computer Science +0710.4803 Cryptography and Security +0710.4805 Hardware Architecture +0710.4806 Hardware Architecture +0710.4807 Programming Languages +0710.4808 Hardware Architecture +0710.4809 Hardware Architecture +0710.4810 Cryptography and Security +0710.4811 Other Computer Science +0710.4812 Hardware Architecture +0710.4813 Hardware Architecture +0710.4814 Hardware Architecture +0710.4815 Networking and Internet Architecture +0710.4816 Networking and Internet Architecture +0710.4817 Cryptography and Security +0710.4818 Networking and Internet Architecture +0710.4819 Multimedia +0710.4820 Hardware Architecture +0710.4821 Multimedia +0710.4823 Multimedia +0710.4824 Hardware Architecture +0710.4825 Hardware Architecture +0710.4826 Hardware Architecture +0710.4827 Hardware Architecture +0710.4829 Software Engineering +0710.4831 Other Computer Science +0710.4832 Hardware Architecture +0710.4833 Hardware Architecture +0710.4834 Hardware Architecture +0710.4835 Other Computer Science +0710.4836 Other Computer Science +0710.4838 Hardware Architecture +0710.4839 Hardware Architecture +0710.4840 Hardware Architecture +0710.4842 Hardware Architecture +0710.4843 Hardware Architecture +0710.4844 Hardware Architecture +0710.4845 Hardware Architecture +0710.4846 Multimedia +0710.4848 Logic in Computer Science +0710.4850 Hardware Architecture +0710.4851 Logic in Computer Science +0710.4852 Other Computer Science +0805.2751 +0810.0438 Combinatorics +0901.1101 Materials Science +0902.2832 Algebraic Geometry +0903.1625 Number Theory +0905.3279 Classical Analysis and ODEs +0909.5517 Strongly Correlated Electrons +0910.4193 Populations and Evolution +0911.1197 Theory +1004.4656 Logic in Computer Science +1005.4919 Biological Physics +1006.3941 +1006.4027 +1007.0564 Functional Analysis +1007.4758 +1008.2026 Mesoscale and Nanoscale Physics +1009.5647 +1009.6060 Atomic Physics +1010.5829 Data Analysis, Statistics and Probability +1011.3444 Quantum Gases +1012.1230 Theory +1101.1908 Mesoscale and Nanoscale Physics +1101.3086 Superconductivity +1101.3163 Cosmology and Nongalactic Astrophysics +1101.4036 Information Theory +1101.4637 Statistical Mechanics +1102.1024 Materials Science +1102.3002 Information Theory +1103.0615 Probability +1103.0996 Information Theory +1103.1039 Strongly Correlated Electrons +1103.1770 Phenomenology +1103.3448 Earth and Planetary Astrophysics +1103.4885 Mesoscale and Nanoscale Physics +1103.5397 Statistical Mechanics +1104.0439 Number Theory +1104.0545 +1104.0748 Dynamical Systems +1104.1652 +1104.3334 Combinatorics +1104.5441 Statistical Mechanics +1105.0198 Materials Science +1105.0952 Probability +1105.1030 +1105.1633 Software Engineering +1105.2250 Quantum Gases +1105.2712 Algebraic Topology +1105.3729 Cosmology and Nongalactic Astrophysics +1105.4531 +1106.0847 General Physics +1106.0964 Probability +1106.1710 Complex Variables +1106.3911 +1106.4663 Disordered Systems and Neural Networks +1106.5956 Phenomenology +1107.1283 Learning +1107.1355 Lattice +1107.1486 Strongly Correlated Electrons +1107.2225 +1107.2926 Cosmology and Nongalactic Astrophysics +1107.4105 Cosmology and Nongalactic Astrophysics +1107.4152 +1107.4285 Strongly Correlated Electrons +1107.5455 General Physics +1108.2909 Theory +1108.4338 Phenomenology +1108.5157 Quantum Algebra +1108.5497 Hardware Architecture +1108.5981 Optics +1109.0199 Phenomenology +1109.0319 Cosmology and Nongalactic Astrophysics +1109.0604 Data Structures and Algorithms +1109.5744 Statistical Mechanics +1109.5762 Strongly Correlated Electrons +1109.6141 Fluid Dynamics +1110.1622 Optics +1110.2086 Algebraic Geometry +1110.3507 Combinatorics +1110.4556 Mesoscale and Nanoscale Physics +1110.5026 Cosmology and Nongalactic Astrophysics +1110.6157 +1110.6626 High Energy Astrophysical Phenomena +1111.0095 Spectral Theory +1111.0253 Combinatorics +1111.0376 Data Structures and Algorithms +1111.0879 High Energy Astrophysical Phenomena +1111.0909 Solar and Stellar Astrophysics +1111.1298 Probability +1111.1352 Probability +1111.1378 Logic +1111.1510 Functional Analysis +1111.1547 Theory +1111.1563 Phenomenology +1111.1573 Statistical Mechanics +1111.1636 High Energy Astrophysical Phenomena +1111.1646 Biomolecules +1111.1712 Numerical Analysis +1111.1713 Data Structures and Algorithms +1111.1714 Applications +1111.1750 Data Structures and Algorithms +1111.1752 Computer Vision and Pattern Recognition +1111.1754 Mesoscale and Nanoscale Physics +1111.1756 Probability +1111.1766 +1111.1768 Other Computer Science +1111.1769 Cryptography and Security +1111.1770 Cryptography and Security +1111.1771 Cryptography and Security +1111.1772 Cryptography and Security +1111.1778 Strongly Correlated Electrons +1111.1783 Cosmology and Nongalactic Astrophysics +1111.1787 Cosmology and Nongalactic Astrophysics +1111.1801 +1111.1803 Physics and Society +1111.1806 +1111.1808 Operator Algebras +1111.1810 Number Theory +1111.1812 Lattice +1111.1814 Discrete Mathematics +1111.1815 Fluid Dynamics +1111.1820 Category Theory +1111.1824 Lattice +1111.1826 Software Engineering +1111.1830 Machine Learning +1111.1834 Instrumentation and Methods for Astrophysics +1111.1840 Solar and Stellar Astrophysics +1111.1841 Combinatorics +1111.1842 Human-Computer Interaction +1111.1843 Combinatorics +1111.1845 Probability +1111.1846 Probability +1111.1847 General Physics +1111.1854 Networking and Internet Architecture +1111.1855 Applications +1111.1859 Astrophysics of Galaxies +1111.1865 Networking and Internet Architecture +1111.1873 Mesoscale and Nanoscale Physics +1111.1875 +1111.1876 Statistics Theory +1111.1882 Differential Geometry +1111.1883 Numerical Analysis +1111.1885 +1111.1887 Astrophysics of Galaxies +1111.1888 Analysis of PDEs +1111.1892 +1111.1894 Computers and Society +1111.1898 Classical Physics +1111.1901 Probability +1111.1903 +1111.1904 Software Engineering +1111.1905 Mesoscale and Nanoscale Physics +1111.1908 +1111.1910 Operator Algebras +1111.1913 Phenomenology +1111.1915 Machine Learning +1111.1918 Optics +1111.1921 Number Theory +1111.1923 Symplectic Geometry +1111.1927 Optimization and Control +1111.1930 Networking and Internet Architecture +1111.1933 Networking and Internet Architecture +1111.1934 +1111.1936 Logic +1111.1941 Artificial Intelligence +1111.1947 Computer Vision and Pattern Recognition +1111.1948 +1111.1950 Number Theory +1111.1951 Number Theory +1111.1956 +1111.1957 Methodology +1111.1958 Social and Information Networks +1111.1961 +1111.1964 Networking and Internet Architecture +1111.1967 +1111.1970 +1111.1975 +1111.1978 +1111.1980 Other Condensed Matter +1111.1989 Optics +1111.1990 Dynamical Systems +1111.1993 Dynamical Systems +1111.1996 Dynamical Systems +1111.2000 Dynamical Systems +1111.2001 Systems and Control +1111.2002 Number Theory +1111.2003 Number Theory +1111.2015 Physics Education +1111.2017 Phenomenology +1111.2018 Social and Information Networks +1111.2019 Quantitative Methods +1111.2021 Lattice +1111.2028 Biological Physics +1111.2039 High Energy Astrophysical Phenomena +1111.2040 High Energy Astrophysical Phenomena +1111.2042 Popular Physics +alg-geom/9509003 Algebraic Geometry +astro-ph/0302159 +astro-ph/0604049 +astro-ph/0610795 +astro-ph/0612173 +astro-ph/0612571 +astro-ph/0702295 +astro-ph/0702488 +astro-ph/0703280 +astro-ph/0703380 +cond-mat/0009471 +cond-mat/0108290 Mesoscale and Nanoscale Physics +cond-mat/0202417 Statistical Mechanics +cond-mat/0211112 +cond-mat/0303332 Soft Condensed Matter +cond-mat/0305614 Statistical Mechanics +cond-mat/0307233 Materials Science +cond-mat/0308252 Strongly Correlated Electrons +cond-mat/0312046 Disordered Systems and Neural Networks +cond-mat/0312087 +cond-mat/0312334 Superconductivity +cond-mat/0401506 Disordered Systems and Neural Networks +cond-mat/0406218 Soft Condensed Matter +cond-mat/0409504 Superconductivity +cond-mat/0409671 Materials Science +cond-mat/0410268 Materials Science +cond-mat/0412432 Strongly Correlated Electrons +cond-mat/0502340 Mesoscale and Nanoscale Physics +cond-mat/0505566 Disordered Systems and Neural Networks +cond-mat/0507131 Strongly Correlated Electrons +cond-mat/0507400 Materials Science +cond-mat/0508015 Superconductivity +cond-mat/0509319 Strongly Correlated Electrons +cond-mat/0509489 Materials Science +cond-mat/0510073 Materials Science +cond-mat/0510809 Statistical Mechanics +cond-mat/0511716 Statistical Mechanics +cond-mat/0512494 Strongly Correlated Electrons +cond-mat/0512693 Other Condensed Matter +cond-mat/0601153 Strongly Correlated Electrons +cond-mat/0601393 Superconductivity +cond-mat/0601480 Disordered Systems and Neural Networks +cond-mat/0602099 Superconductivity +cond-mat/0602180 Strongly Correlated Electrons +cond-mat/0602559 Statistical Mechanics +cond-mat/0603210 Superconductivity +cond-mat/0603350 Disordered Systems and Neural Networks +cond-mat/0604069 Statistical Mechanics +cond-mat/0604072 Mesoscale and Nanoscale Physics +cond-mat/0604164 Strongly Correlated Electrons +cond-mat/0604313 Superconductivity +cond-mat/0604382 Materials Science +cond-mat/0605024 Disordered Systems and Neural Networks +cond-mat/0605406 Statistical Mechanics +cond-mat/0605427 Superconductivity +cond-mat/0605518 Superconductivity +cond-mat/0605546 Strongly Correlated Electrons +cond-mat/0605571 Other Condensed Matter +cond-mat/0605671 Mesoscale and Nanoscale Physics +cond-mat/0606483 Materials Science +cond-mat/0606535 Superconductivity +cond-mat/0606719 Superconductivity +cond-mat/0607241 Other Condensed Matter +cond-mat/0608048 Materials Science +cond-mat/0608101 Strongly Correlated Electrons +cond-mat/0608195 Strongly Correlated Electrons +cond-mat/0609105 Mesoscale and Nanoscale Physics +cond-mat/0609169 Strongly Correlated Electrons +cond-mat/0609237 Statistical Mechanics +cond-mat/0609293 Strongly Correlated Electrons +cond-mat/0609384 Materials Science +cond-mat/0609425 Strongly Correlated Electrons +cond-mat/0609432 Strongly Correlated Electrons +cond-mat/0609438 Strongly Correlated Electrons +cond-mat/0609663 Soft Condensed Matter +cond-mat/0609673 Mesoscale and Nanoscale Physics +cond-mat/0610074 Materials Science +cond-mat/0610170 Materials Science +cond-mat/0610236 Strongly Correlated Electrons +cond-mat/0610316 Strongly Correlated Electrons +cond-mat/0610328 Soft Condensed Matter +cond-mat/0610433 Mesoscale and Nanoscale Physics +cond-mat/0610444 Strongly Correlated Electrons +cond-mat/0610604 Materials Science +cond-mat/0610623 Other Condensed Matter +cond-mat/0610818 Strongly Correlated Electrons +cond-mat/0611077 Mesoscale and Nanoscale Physics +cond-mat/0611218 Mesoscale and Nanoscale Physics +cond-mat/0611384 Materials Science +cond-mat/0611541 Statistical Mechanics +cond-mat/0611597 Mesoscale and Nanoscale Physics +cond-mat/0612018 Other Condensed Matter +cond-mat/0612020 Soft Condensed Matter +cond-mat/0612035 Superconductivity +cond-mat/0612064 Strongly Correlated Electrons +cond-mat/0612131 Disordered Systems and Neural Networks +cond-mat/0612135 Superconductivity +cond-mat/0612201 Materials Science +cond-mat/0612227 Strongly Correlated Electrons +cond-mat/0612283 Strongly Correlated Electrons +cond-mat/0612295 Soft Condensed Matter +cond-mat/0612446 Mesoscale and Nanoscale Physics +cond-mat/0612503 Mesoscale and Nanoscale Physics +cond-mat/0612570 Disordered Systems and Neural Networks +cond-mat/0612592 Mesoscale and Nanoscale Physics +cond-mat/0612668 Mesoscale and Nanoscale Physics +cond-mat/0612701 Materials Science +cond-mat/0701029 Materials Science +cond-mat/0701144 Other Condensed Matter +cond-mat/0701164 Statistical Mechanics +cond-mat/0701245 Superconductivity +cond-mat/0701287 Materials Science +cond-mat/0701310 Strongly Correlated Electrons +cond-mat/0701385 Mesoscale and Nanoscale Physics +cond-mat/0701461 Materials Science +cond-mat/0701534 Mesoscale and Nanoscale Physics +cond-mat/0701559 Mesoscale and Nanoscale Physics +cond-mat/0701588 Strongly Correlated Electrons +cond-mat/0701626 Strongly Correlated Electrons +cond-mat/0701703 Strongly Correlated Electrons +cond-mat/0701723 Statistical Mechanics +cond-mat/0701727 Strongly Correlated Electrons +cond-mat/0701765 Strongly Correlated Electrons +cond-mat/0702038 Statistical Mechanics +cond-mat/0702118 Strongly Correlated Electrons +cond-mat/0702183 Other Condensed Matter +cond-mat/0702295 Mesoscale and Nanoscale Physics +cond-mat/0702299 Mesoscale and Nanoscale Physics +cond-mat/0702329 Mesoscale and Nanoscale Physics +cond-mat/0702340 Soft Condensed Matter +cond-mat/0702343 Other Condensed Matter +cond-mat/0702381 Materials Science +cond-mat/0702383 Materials Science +cond-mat/0702470 Materials Science +cond-mat/0702475 Strongly Correlated Electrons +cond-mat/0702494 Mesoscale and Nanoscale Physics +cond-mat/0702536 Superconductivity +cond-mat/0702610 Statistical Mechanics +cond-mat/0702646 Soft Condensed Matter +cond-mat/0703019 Soft Condensed Matter +cond-mat/0703037 Strongly Correlated Electrons +cond-mat/0703040 Statistical Mechanics +cond-mat/0703084 Materials Science +cond-mat/0703116 Mesoscale and Nanoscale Physics +cond-mat/0703135 Statistical Mechanics +cond-mat/0703190 Mesoscale and Nanoscale Physics +cond-mat/0703206 Soft Condensed Matter +cond-mat/0703242 Statistical Mechanics +cond-mat/0703275 Materials Science +cond-mat/0703282 Statistical Mechanics +cond-mat/0703286 Mesoscale and Nanoscale Physics +cond-mat/0703315 Statistical Mechanics +cond-mat/0703365 Materials Science +cond-mat/0703374 Mesoscale and Nanoscale Physics +cond-mat/0703376 Statistical Mechanics +cond-mat/0703387 Soft Condensed Matter +cond-mat/0703390 Mesoscale and Nanoscale Physics +cond-mat/0703396 Strongly Correlated Electrons +cond-mat/0703431 Strongly Correlated Electrons +cond-mat/0703442 Materials Science +cond-mat/0703682 Soft Condensed Matter +cond-mat/0703690 Mesoscale and Nanoscale Physics +cond-mat/0703704 Statistical Mechanics +cond-mat/0703720 Mesoscale and Nanoscale Physics +cond-mat/0703721 Mesoscale and Nanoscale Physics +cond-mat/0703733 Other Condensed Matter +cond-mat/0703736 Soft Condensed Matter +cond-mat/0703759 Statistical Mechanics +cond-mat/0703767 Superconductivity +cond-mat/9809051 Statistical Mechanics +cs/0002018 Other Computer Science +cs/0006004 Distributed, Parallel, and Cluster Computing +cs/0101019 Artificial Intelligence +cs/0106049 Computational Complexity +cs/0109076 Computers and Society +cs/0111002 Other Computer Science +cs/0111054 Computational Complexity +cs/0205001 Networking and Internet Architecture +cs/0206025 Other Computer Science +cs/0206039 Computational Engineering, Finance, and Science +cs/0305052 Learning +cs/0306033 Other Computer Science +cs/0306077 Databases +cs/0306125 Neural and Evolutionary Computing +cs/0306136 Logic in Computer Science +cs/0307026 Networking and Internet Architecture +cs/0308032 Computation and Language +cs/0309046 Logic in Computer Science +cs/0310038 Databases +cs/0312019 Logic in Computer Science +cs/0404034 Numerical Analysis +cs/0404057 Learning +cs/0406011 Learning +cs/0407050 Software Engineering +cs/0407052 Mathematical Software +cs/0410005 Multiagent Systems +cs/0411097 Logic in Computer Science +cs/0412007 Networking and Internet Architecture +cs/0412027 Performance +cs/0412037 Networking and Internet Architecture +cs/0503034 Computational Complexity +cs/0503044 Artificial Intelligence +cs/0505048 Data Structures and Algorithms +cs/0505086 Discrete Mathematics +cs/0509052 Networking and Internet Architecture +cs/0510007 Networking and Internet Architecture +cs/0511077 Digital Libraries +cs/0512022 Other Computer Science +cs/0512046 Data Structures and Algorithms +cs/0512047 Artificial Intelligence +cs/0512061 Data Structures and Algorithms +cs/0512063 Information Theory +cs/0512068 Digital Libraries +cs/0512069 Information Retrieval +cs/0512086 Logic in Computer Science +cs/0512103 Other Computer Science +cs/0603030 Cryptography and Security +cs/0603065 Information Theory +cs/0603116 Computer Vision and Pattern Recognition +cs/0604041 Discrete Mathematics +cs/0604044 Discrete Mathematics +cs/0604050 Discrete Mathematics +cs/0606012 Computational Geometry +cs/0606019 Logic in Computer Science +cs/0606048 Data Structures and Algorithms +cs/0608074 Computational Complexity +cs/0609082 Mathematical Software +cs/0611051 Logic in Computer Science +cs/0611058 Neural and Evolutionary Computing +cs/0701015 Distributed, Parallel, and Cluster Computing +cs/0701019 Information Theory +cs/0701052 Learning +cs/0701071 Computer Science and Game Theory +cs/0701077 Multiagent Systems +cs/0701127 Computer Vision and Pattern Recognition +cs/0702069 Logic in Computer Science +cs/0702162 Information Theory +cs/0703038 Information Theory +cs/0703070 Human-Computer Interaction +cs/0703090 Information Theory +cs/9905002 Programming Languages +cs/9907014 Logic in Computer Science +gr-qc/0502044 +gr-qc/0512054 +gr-qc/0606003 +hep-ex/0506039 Experiment +hep-ex/0507030 Experiment +hep-ex/0507033 Experiment +hep-ex/0507034 Experiment +hep-ex/0507039 Experiment +hep-ex/0507045 Experiment +hep-ex/0507059 Experiment +hep-ex/0507064 Experiment +hep-ex/0507065 Experiment +hep-ex/0508009 Experiment +hep-ex/0508018 Experiment +hep-ex/0508040 Experiment +hep-ex/0508048 Experiment +hep-ex/0509014 Experiment +hep-ex/0509016 Experiment +hep-ex/0509020 Experiment +hep-ex/0509047 Experiment +hep-ex/0604026 Experiment +hep-ex/0605067 Experiment +hep-ex/0607017 Experiment +hep-ex/0607042 Experiment +hep-ex/0608031 Experiment +hep-ex/0608034 Experiment +hep-ex/0609048 Experiment +hep-ex/0609049 Experiment +hep-ex/0610054 Experiment +hep-ex/0611004 Experiment +hep-ex/0611047 Experiment +hep-ex/0701047 Experiment +math-ph/0009024 +math-ph/0011021 +math-ph/0211062 +math-ph/0305016 +math-ph/0306003 +math-ph/0402005 +math-ph/0402024 +math-ph/0411028 +math-ph/0601034 +math-ph/0611013 +math-ph/0611071 +math/0503068 Functional Analysis +math/0503270 General Topology +math/0505423 Probability +math/0505424 Complex Variables +math/0505558 Number Theory +math/0509226 Operator Algebras +math/0509480 Number Theory +math/0509662 Differential Geometry +math/0509684 Algebraic Geometry +math/0509688 Group Theory +math/0509693 Group Theory +math/0510032 Dynamical Systems +math/0510106 Quantum Algebra +math/0510151 Group Theory +math/0510366 Differential Geometry +math/0511339 Number Theory +math/0511538 Rings and Algebras +math/0511582 Algebraic Topology +math/0511600 Combinatorics +math/0511694 Probability +math/0601011 Functional Analysis +math/0601040 Probability +math/0601061 Group Theory +math/0601174 Probability +math/0601420 Differential Geometry +math/0601477 Commutative Algebra +math/0601590 Group Theory +math/0602113 Probability +math/0602200 Group Theory +math/0602336 Combinatorics +math/0602400 Algebraic Geometry +math/0602562 Algebraic Geometry +math/0602616 Algebraic Geometry +math/0603155 Optimization and Control +math/0603159 Probability +math/0603217 Geometric Topology +math/0603253 Commutative Algebra +math/0603305 Group Theory +math/0603376 Quantum Algebra +math/0603377 Geometric Topology +math/0603501 Functional Analysis +math/0603523 Differential Geometry +math/0603544 K-Theory and Homology +math/0603643 Differential Geometry +math/0603658 Probability +math/0603700 Number Theory +math/0603730 Differential Geometry +math/0605133 Symplectic Geometry +math/0605212 Probability +math/0605301 Algebraic Geometry +math/0605553 Group Theory +math/0605643 Geometric Topology +math/0605665 Probability +math/0605701 Algebraic Geometry +math/0605743 Algebraic Topology +math/0606005 Combinatorics +math/0606063 Symplectic Geometry +math/0606087 Number Theory +math/0606106 Quantum Algebra +math/0606123 Representation Theory +math/0606316 Number Theory +math/0606376 Probability +math/0606456 Differential Geometry +math/0606473 K-Theory and Homology +math/0606476 Optimization and Control +math/0606498 Quantum Algebra +math/0606501 Representation Theory +math/0606537 Classical Analysis and ODEs +math/0606719 Probability +math/0606749 Combinatorics +math/0607253 Probability +math/0607287 Rings and Algebras +math/0607348 Representation Theory +math/0607438 Differential Geometry +math/0607463 Functional Analysis +math/0607480 Differential Geometry +math/0607823 Classical Analysis and ODEs +math/0608288 Representation Theory +math/0608379 Analysis of PDEs +math/0608539 Dynamical Systems +math/0608541 Analysis of PDEs +math/0608644 Complex Variables +math/0608705 Algebraic Topology +math/0608759 Dynamical Systems +math/0608760 Category Theory +math/0609099 Geometric Topology +math/0609257 Geometric Topology +math/0609346 Algebraic Topology +math/0609377 Statistics Theory +math/0609528 Algebraic Geometry +math/0609678 Statistics Theory +math/0609687 Quantum Algebra +math/0610038 Functional Analysis +math/0610044 Operator Algebras +math/0610244 Probability +math/0610365 Numerical Analysis +math/0610404 Rings and Algebras +math/0610495 Number Theory +math/0610530 General Mathematics +math/0610614 Symplectic Geometry +math/0610663 Algebraic Geometry +math/0610691 Quantum Algebra +math/0610802 Probability +math/0611175 Operator Algebras +math/0611373 Dynamical Systems +math/0611519 History and Overview +math/0611623 K-Theory and Homology +math/0611660 Quantum Algebra +math/0611760 Algebraic Geometry +math/0611781 Statistics Theory +math/0611852 Probability +math/0611887 Quantum Algebra +math/0611950 Representation Theory +math/0611959 Analysis of PDEs +math/0612213 Rings and Algebras +math/0612250 Spectral Theory +math/0612264 Numerical Analysis +math/0612267 Algebraic Geometry +math/0612271 Number Theory +math/0612379 Differential Geometry +math/0612547 Symplectic Geometry +math/0612720 Combinatorics +math/0612743 Spectral Theory +math/0612853 Rings and Algebras +math/0701004 Statistics Theory +math/0701031 Combinatorics +math/0701242 Quantum Algebra +math/0701300 Symplectic Geometry +math/0701417 Classical Analysis and ODEs +math/0701427 Quantum Algebra +math/0701514 Operator Algebras +math/0701644 Representation Theory +math/0702068 K-Theory and Homology +math/0702150 Dynamical Systems +math/0702165 Algebraic Topology +math/0702192 Combinatorics +math/0702193 Group Theory +math/0702285 Algebraic Geometry +math/0702291 Analysis of PDEs +math/0702462 Classical Analysis and ODEs +math/0702487 Complex Variables +math/0702557 Combinatorics +math/0702561 Differential Geometry +math/0702577 Quantum Algebra +math/0702745 Operator Algebras +math/0703219 Differential Geometry +math/0703229 Statistics Theory +math/0703258 Commutative Algebra +math/0703264 Algebraic Geometry +math/0703349 Classical Analysis and ODEs +math/0703383 Representation Theory +math/0703411 Group Theory +math/0703522 Number Theory +math/0703528 Representation Theory +math/0703718 Number Theory +math/0703763 Rings and Algebras +nlin/0508001 Cellular Automata and Lattice Gases +nlin/0609038 Adaptation and Self-Organizing Systems +nlin/0609042 Adaptation and Self-Organizing Systems +nlin/0611044 Chaotic Dynamics +nucl-ex/0106013 +nucl-th/0703020 +physics/0007058 General Physics +physics/0212045 Biological Physics +physics/0307045 Biological Physics +physics/0307138 Data Analysis, Statistics and Probability +physics/0402078 Data Analysis, Statistics and Probability +physics/0409065 Data Analysis, Statistics and Probability +physics/0504079 Atomic Physics +physics/0505041 General Physics +physics/0507155 Optics +physics/0601161 Chemical Physics +physics/0601185 Biological Physics +physics/0602028 History and Philosophy of Physics +physics/0604076 Biological Physics +physics/0605123 Data Analysis, Statistics and Probability +physics/0605137 Chemical Physics +physics/0605209 Fluid Dynamics +physics/0606187 Fluid Dynamics +physics/0608003 Optics +physics/0609105 Popular Physics +physics/0609244 Chemical Physics +physics/0610106 Geophysics +physics/0610138 Biological Physics +physics/0610143 Optics +physics/0610201 History and Philosophy of Physics +physics/0610255 Plasma Physics +physics/0610266 Plasma Physics +physics/0610281 Physics and Society +physics/0612004 Computational Physics +physics/0612180 Physics and Society +physics/0612216 Atmospheric and Oceanic Physics +physics/0612254 Fluid Dynamics +physics/0702054 General Physics +physics/0702086 General Physics +physics/0702219 Fluid Dynamics +physics/9908039 Biological Physics +q-bio/0410033 Genomics +q-bio/0506009 Neurons and Cognition +q-bio/0510052 Quantitative Methods +q-bio/0511009 Populations and Evolution +q-bio/0511013 Subcellular Processes +q-bio/0511045 Quantitative Methods +q-bio/0604024 Populations and Evolution +q-bio/0701003 Tissues and Organs +q-bio/0701020 Molecular Networks +q-bio/0701025 Populations and Evolution +q-bio/0701039 Quantitative Methods +quant-ph/0110137 +quant-ph/0204077 +quant-ph/0307125 +quant-ph/0307191 +quant-ph/0307197 +quant-ph/0307225 +quant-ph/0404002 +quant-ph/0409064 +quant-ph/0409136 +quant-ph/0411207 +quant-ph/0411210 +quant-ph/0501185 +quant-ph/0504204 +quant-ph/0508040 +quant-ph/0508098 +quant-ph/0510057 +quant-ph/0510093 +quant-ph/0510109 +quant-ph/0510194 +quant-ph/0512021 +quant-ph/0512173 +quant-ph/0601054 +quant-ph/0602209 +quant-ph/0602235 +quant-ph/0603069 +quant-ph/0603238 +quant-ph/0603277 +quant-ph/0604015 +quant-ph/0604086 +quant-ph/0604155 +quant-ph/0606106 +quant-ph/0606176 +quant-ph/0607043 +quant-ph/0607048 +quant-ph/0608016 +quant-ph/0608123 +quant-ph/0609022 +quant-ph/0609047 +quant-ph/0609079 +quant-ph/0609151 +quant-ph/0609154 +quant-ph/0609203 +quant-ph/0609204 +quant-ph/0610085 +quant-ph/0610100 +quant-ph/0610144 +quant-ph/0610151 +quant-ph/0610165 +quant-ph/0610267 +quant-ph/0611139 +quant-ph/0611287 +quant-ph/0612022 +quant-ph/0612123 +quant-ph/0612164 +quant-ph/0612170 +quant-ph/0612210 +quant-ph/0701059 +quant-ph/0701111 +quant-ph/0701190 +quant-ph/0701200 +quant-ph/0702018 +quant-ph/0702027 +quant-ph/0702072 +quant-ph/0702104 +quant-ph/0702190 +quant-ph/0702219 +quant-ph/0702266 +quant-ph/0703015 +quant-ph/0703046 +quant-ph/0703050 +quant-ph/0703069 +quant-ph/0703085 +quant-ph/0703154 +quant-ph/0703161 +quant-ph/0703231 +0705.3289 +0706.3055 Differential Geometry +0707.0281 Group Theory +0707.0286 Group Theory +0707.0362 Group Theory +0707.0371 Group Theory +0711.1081 Classical Physics +0712.0669 Geometric Topology +0803.3290 Group Theory +0805.0178 Classical Physics +0805.1793 Differential Geometry +0809.0194 Commutative Algebra +0811.2726 Disordered Systems and Neural Networks +0811.3990 Group Theory +0901.0244 Group Theory +0901.1402 Geometric Topology +0901.1404 Geometric Topology +0901.3895 Commutative Algebra +0901.4168 Number Theory +0902.3254 Metric Geometry +0902.4251 +0903.1284 Probability +0904.0627 Chaotic Dynamics +0904.2844 Algebraic Geometry +0905.0740 Computation and Language +0906.1303 Commutative Algebra +0907.0680 Differential Geometry +0907.0690 Differential Geometry +0908.1410 Instrumentation and Methods for Astrophysics +0908.2051 Functional Analysis +0908.3745 Differential Geometry +0910.1552 Physics and Society +0910.3991 Cryptography and Security +0911.0790 Numerical Analysis +0911.2999 Operator Algebras +0911.4656 Geometric Topology +0912.4322 +1001.1554 Algebraic Geometry +1001.2981 Superconductivity +1002.3455 +1003.2759 Differential Geometry +1003.5380 Populations and Evolution +1004.4764 Quantitative Methods +1004.5296 Soft Condensed Matter +1005.5657 Symplectic Geometry +1006.2706 Algebraic Geometry +1006.2970 +1006.3468 Data Analysis, Statistics and Probability +1006.3606 Analysis of PDEs +1006.4805 +1007.4611 +1008.0957 Solar and Stellar Astrophysics +1008.3083 Physics and Society +1008.3300 Chaotic Dynamics +1008.4234 Number Theory +1009.1488 Materials Science +1009.1958 +1010.1448 Differential Geometry +1010.6148 Optimization and Control +1011.0249 Cosmology and Nongalactic Astrophysics +1011.0302 Statistical Mechanics +1011.2733 General Physics +1011.3378 Mesoscale and Nanoscale Physics +1011.3866 +1011.4838 +1011.5234 General Physics +1012.0590 Superconductivity +1012.0608 Rings and Algebras +1012.5426 Mesoscale and Nanoscale Physics +1101.0987 Physics and Society +1101.1844 +1101.1860 Complex Variables +1101.2438 Rings and Algebras +1101.3348 Information Theory +1101.3740 Superconductivity +1101.3950 Mesoscale and Nanoscale Physics +1101.4225 Astrophysics of Galaxies +1101.5375 +1102.2662 +1102.3765 Superconductivity +1102.4141 +1102.4296 Operator Algebras +1103.0020 Strongly Correlated Electrons +1103.0136 Probability +1103.0965 Strongly Correlated Electrons +1103.1322 Theory +1103.1642 Cosmology and Nongalactic Astrophysics +1103.1804 Symplectic Geometry +1103.2732 Theory +1103.2841 Programming Languages +1103.4677 Statistical Mechanics +1103.4809 Mesoscale and Nanoscale Physics +1103.4860 Theory +1103.5096 +1103.5940 Disordered Systems and Neural Networks +1104.0019 Cosmology and Nongalactic Astrophysics +1104.1386 Soft Condensed Matter +1104.3164 High Energy Astrophysical Phenomena +1104.4046 Materials Science +1104.4423 Computer Science and Game Theory +1104.5316 Phenomenology +1105.0272 Materials Science +1105.1578 Geometric Topology +1105.1648 Superconductivity +1105.3200 Group Theory +1105.3317 Statistical Mechanics +1105.3336 Statistical Mechanics +1105.4829 Theory +1106.0790 Phenomenology +1106.4013 Earth and Planetary Astrophysics +1106.4207 Soft Condensed Matter +1106.4295 +1106.5767 Formal Languages and Automata Theory +1106.6307 Group Theory +1107.0377 Geometric Topology +1107.0378 Geometric Topology +1107.0555 Representation Theory +1107.0695 Number Theory +1107.0720 Phenomenology +1107.1618 Spectral Theory +1107.1723 Solar and Stellar Astrophysics +1107.1728 Instrumentation and Methods for Astrophysics +1107.1730 Number Theory +1107.1735 Combinatorics +1107.1739 Information Theory +1107.1756 Combinatorics +1107.1757 Superconductivity +1107.1758 Mesoscale and Nanoscale Physics +1107.1768 +1107.1769 Solar and Stellar Astrophysics +1107.1775 +1107.1780 Data Structures and Algorithms +1107.1784 +1107.1788 Dynamical Systems +1107.1790 Algebraic Topology +1107.1800 Cell Behavior +1107.1808 Phenomenology +1107.1809 Complex Variables +1107.1814 Computer Science and Game Theory +1107.1818 Functional Analysis +1107.1820 Combinatorics +1107.1821 Cryptography and Security +1107.1827 Representation Theory +1107.1830 +1107.1831 Computational Finance +1107.1834 Computational Finance +1107.1836 Differential Geometry +1107.1838 Probability +1107.1844 Combinatorics +1107.1845 Superconductivity +1107.1847 Cryptography and Security +1107.1853 Differential Geometry +1107.1856 +1107.1859 Geometric Topology +1107.1860 Symplectic Geometry +1107.1861 Representation Theory +1107.1869 Combinatorics +1107.1877 Geometric Topology +1107.1878 Combinatorics +1107.1882 Soft Condensed Matter +1107.1883 Logic +1107.1885 Classical Analysis and ODEs +1107.1887 Classical Analysis and ODEs +1107.1888 Phenomenology +1107.1889 Theory +1107.1891 Soft Condensed Matter +1107.1894 Solar and Stellar Astrophysics +1107.1895 Optimization and Control +1107.1917 Analysis of PDEs +1107.1919 Methodology +1107.1921 Materials Science +1107.1922 Analysis of PDEs +1107.1923 Mesoscale and Nanoscale Physics +1107.1925 Analysis of PDEs +1107.1927 Biomolecules +1107.1931 Operator Algebras +1107.1933 Instrumentation and Methods for Astrophysics +1107.1936 Earth and Planetary Astrophysics +1107.1939 Number Theory +1107.1940 +1107.1941 Networking and Internet Architecture +1107.1943 Neural and Evolutionary Computing +1107.1950 Artificial Intelligence +1107.1951 Networking and Internet Architecture +1107.1952 Materials Science +1107.1954 Networking and Internet Architecture +1107.1956 Information Retrieval +1107.1959 Statistical Mechanics +1107.1962 Commutative Algebra +1107.1965 +1107.1967 Networking and Internet Architecture +1107.1968 Algebraic Geometry +1107.1974 Social and Information Networks +1107.1975 Materials Science +1107.1976 General Physics +1107.1978 Materials Science +1107.1980 Phenomenology +1107.1987 Data Analysis, Statistics and Probability +1107.1991 Phenomenology +1107.1992 Quantum Algebra +1107.1995 Quantum Algebra +1107.1996 Classical Analysis and ODEs +1107.2000 Data Structures and Algorithms +1107.2001 Data Structures and Algorithms +1107.2002 Differential Geometry +1107.2010 Biological Physics +1107.2012 Astrophysics of Galaxies +1107.2023 Experiment +1107.2028 Numerical Analysis +1107.2033 Data Structures and Algorithms +1107.2034 Geometric Topology +1107.2042 Number Theory +1107.2053 Operator Algebras +1107.2054 Analysis of PDEs +1107.2059 Information Theory +1107.2066 Experiment +1107.2070 Accelerator Physics +1107.2072 Soft Condensed Matter +1107.2073 Strongly Correlated Electrons +1107.2076 Rings and Algebras +1107.2085 Computer Vision and Pattern Recognition +1107.2089 Artificial Intelligence +1107.2090 Artificial Intelligence +1107.2091 Formal Languages and Automata Theory +1107.2100 Information Theory +1107.2102 Commutative Algebra +cond-mat/0608515 Superconductivity +math/0107193 Geometric Topology +math/0112311 Algebraic Geometry +math/0402429 Differential Geometry +math/0406247 Differential Geometry +math/0411039 Group Theory +math/0506212 Differential Geometry +math/0506401 Differential Geometry +physics/0701307 Physics and Society +physics/0702055 Classical Physics +0708.3772 +0801.3402 Theory +0811.3899 Differential Geometry +0812.4208 +0901.0240 Probability +0902.0392 Machine Learning +0902.1334 Statistical Mechanics +0904.1317 +0907.2345 Superconductivity +0907.2874 Chemical Physics +0909.5524 Applications +0910.4893 Analysis of PDEs +0912.1939 Analysis of PDEs +0912.3413 Differential Geometry +0912.3805 +1001.0239 Representation Theory +1002.1627 Numerical Analysis +1002.3081 Operator Algebras +1003.3268 Symplectic Geometry +1003.4398 Numerical Analysis +1004.5229 Learning +1005.2512 Analysis of PDEs +1006.2141 Cosmology and Nongalactic Astrophysics +1006.4847 Computational Physics +1007.1565 Accelerator Physics +1007.1901 Combinatorics +1008.0096 Chaotic Dynamics +1008.0380 Phenomenology +1008.2289 Mesoscale and Nanoscale Physics +1009.0849 Superconductivity +1009.2067 Combinatorics +1010.1137 Mesoscale and Nanoscale Physics +1010.2692 Optimization and Control +1010.5977 Analysis of PDEs +1011.1091 Numerical Analysis +1011.2478 Symplectic Geometry +1011.4339 Methodology +1011.5378 Theory +1012.0390 Theory +1012.1138 +1012.2180 Theory +1012.3124 Cell Behavior +1102.2434 Superconductivity +1102.4586 Strongly Correlated Electrons +1102.4931 Category Theory +1102.5738 Quantum Gases +1103.1073 Algebraic Geometry +1103.1199 Earth and Planetary Astrophysics +1103.4182 +1103.4620 Theory +1103.5395 +1104.0103 +1104.1048 +1104.2280 Theory +1104.2349 +1104.3203 Biological Physics +1104.3545 Cosmology and Nongalactic Astrophysics +1104.5018 Strongly Correlated Electrons +1104.5092 Algebraic Topology +1105.1135 Superconductivity +1105.1236 +1105.2326 High Energy Astrophysical Phenomena +1105.2423 Biological Physics +1105.4523 Operator Algebras +1105.4790 +1106.1865 High Energy Astrophysical Phenomena +1106.4734 +1106.4992 Phenomenology +1106.6023 Phenomenology +1106.6169 Optics +1107.1033 Cosmology and Nongalactic Astrophysics +1107.1745 Mesoscale and Nanoscale Physics +1107.3925 Mesoscale and Nanoscale Physics +1107.4602 Materials Science +1107.5321 Theory +1107.5518 Experiment +1108.3823 Mesoscale and Nanoscale Physics +1108.3915 Databases +1108.4587 Instrumentation and Detectors +1108.4794 Materials Science +1108.4888 Mesoscale and Nanoscale Physics +1109.1206 Quantitative Methods +1109.1906 Astrophysics of Galaxies +1109.2286 Materials Science +1109.2377 Experiment +1109.3321 High Energy Astrophysical Phenomena +1109.3922 Populations and Evolution +1109.3991 Atomic Physics +1109.4113 Number Theory +1109.4250 Chaotic Dynamics +1109.4313 Classical Analysis and ODEs +1109.4419 High Energy Astrophysical Phenomena +1109.4422 Portfolio Management +1109.4426 Theory +1109.4430 Symplectic Geometry +1109.4433 Distributed, Parallel, and Cluster Computing +1109.4436 +1109.4443 +1109.4453 Combinatorics +1109.4455 Cryptography and Security +1109.4457 Optimization and Control +1109.4459 Cryptography and Security +1109.4460 Data Structures and Algorithms +1109.4464 Metric Geometry +1109.4466 Symplectic Geometry +1109.4468 Phenomenology +1109.4473 Operator Algebras +1109.4474 Systems and Control +1109.4476 Experiment +1109.4477 Mesoscale and Nanoscale Physics +1109.4478 Phenomenology +1109.4481 Optimization and Control +1109.4483 Cosmology and Nongalactic Astrophysics +1109.4488 Materials Science +1109.4489 Dynamical Systems +1109.4493 Solar and Stellar Astrophysics +1109.4494 Phenomenology +1109.4497 Spectral Theory +1109.4499 Information Theory +1109.4500 Functional Analysis +1109.4502 Strongly Correlated Electrons +1109.4503 Networking and Internet Architecture +1109.4511 Complex Variables +1109.4512 Optics +1109.4521 Physics and Society +1109.4523 Statistical Mechanics +1109.4528 Classical Analysis and ODEs +1109.4530 Optimization and Control +1109.4531 Computation and Language +1109.4532 Differential Geometry +1109.4544 Optimization and Control +1109.4546 +1109.4549 Superconductivity +1109.4550 Analysis of PDEs +1109.4552 Discrete Mathematics +1109.4562 Solar and Stellar Astrophysics +1109.4563 Solar and Stellar Astrophysics +1109.4565 Cryptography and Security +1109.4570 Logic in Computer Science +1109.4584 Dynamical Systems +1109.4597 Instrumentation and Detectors +1109.4598 Numerical Analysis +1109.4600 Algebraic Geometry +1109.4603 Artificial Intelligence +1109.4604 History and Overview +1109.4607 +1109.4609 Neural and Evolutionary Computing +1109.4614 Functional Analysis +1109.4616 Number Theory +1109.4618 Logic in Computer Science +1109.4620 Phenomenology +1109.4626 Probability +cond-mat/0409468 Statistical Mechanics +cond-mat/0612533 Superconductivity +hep-ph/9505370 Phenomenology +math/0012227 Quantum Algebra +math/0202101 Quantum Algebra +math/0602029 Functional Analysis +math/0609016 Algebraic Geometry +math/9905141 Quantum Algebra +nucl-th/0404084 +0706.4061 Differential Geometry +0707.0870 Other Condensed Matter +0710.1418 Dynamical Systems +0801.1263 +0802.3390 Classical Physics +0805.0968 +0808.3010 Strongly Correlated Electrons +0809.0827 +0902.4367 Combinatorics +0903.1760 Fluid Dynamics +0904.1921 Solar and Stellar Astrophysics +0905.2740 Combinatorics +0905.3779 Number Theory +0905.3857 Number Theory +0906.1016 +0908.3035 Representation Theory +0908.3441 Statistical Mechanics +0910.4654 Analysis of PDEs +0911.4392 Cosmology and Nongalactic Astrophysics +1001.5081 Number Theory +1002.0117 Optimization and Control +1002.1255 Analysis of PDEs +1002.1327 High Energy Astrophysical Phenomena +1002.1822 Fluid Dynamics +1002.2605 Fluid Dynamics +1002.4442 Probability +1003.4633 Differential Geometry +1003.5139 Operator Algebras +1004.2697 Logic in Computer Science +1004.2834 +1005.0824 Logic in Computer Science +1005.3881 Classical Physics +1005.5277 Fluid Dynamics +1006.0162 Functional Analysis +1006.1240 Theory +1006.3338 Mesoscale and Nanoscale Physics +1007.1788 Chemical Physics +1007.3108 Information Theory +1008.0055 Statistics Theory +1008.1021 Combinatorics +1008.4155 Strongly Correlated Electrons +1008.4339 Spectral Theory +1009.3448 Networking and Internet Architecture +1009.6028 Superconductivity +1010.3272 Dynamical Systems +1010.3375 +1010.5661 Information Theory +1010.6295 Rings and Algebras +1011.0180 Computational Complexity +1011.0473 +1011.1725 Numerical Analysis +1011.5338 Combinatorics +1012.0132 Representation Theory +1012.2100 +1012.2218 Metric Geometry +1012.4317 Statistical Mechanics +1012.4684 +1101.0168 General Physics +1101.0915 Fluid Dynamics +1101.2638 +1101.2990 Group Theory +1101.5126 +1101.5517 Mesoscale and Nanoscale Physics +1102.0973 Strongly Correlated Electrons +1102.3874 Mesoscale and Nanoscale Physics +1102.4459 Materials Science +1103.0474 Pattern Formation and Solitons +1103.0912 Cosmology and Nongalactic Astrophysics +1103.2954 Mesoscale and Nanoscale Physics +1103.3526 High Energy Astrophysical Phenomena +1104.0214 Materials Science +1104.1799 Representation Theory +1104.2328 Theory +1104.3093 Chaotic Dynamics +1104.3384 Lattice +1104.4734 +1104.5219 Algebraic Topology +1105.0593 Phenomenology +1105.1272 Probability +1105.1878 Mesoscale and Nanoscale Physics +1105.1924 Methodology +1105.1981 Phenomenology +1105.2167 +1105.2664 Mesoscale and Nanoscale Physics +1105.2896 Combinatorics +1105.2955 Cosmology and Nongalactic Astrophysics +1105.4693 Strongly Correlated Electrons +1106.0100 Plasma Physics +1106.0481 Number Theory +1106.1159 +1106.1872 Soft Condensed Matter +1106.2386 Quantum Gases +1106.3047 +1106.3332 Mesoscale and Nanoscale Physics +1106.3756 +1106.4173 +1106.4233 Mesoscale and Nanoscale Physics +1106.4356 Phenomenology +1106.4958 +1106.6126 +1106.6296 Data Analysis, Statistics and Probability +1107.0457 Plasma Physics +1107.0755 Phenomenology +1107.0953 Mesoscale and Nanoscale Physics +1107.1196 Quantum Gases +1107.1789 Cosmology and Nongalactic Astrophysics +1107.2366 Operator Algebras +1107.2617 +1107.2680 Classical Analysis and ODEs +1107.2952 High Energy Astrophysical Phenomena +1107.3101 Atomic Physics +1107.3791 +1107.3816 Atomic Physics +1107.4327 +1107.4532 Functional Analysis +1107.5646 Data Analysis, Statistics and Probability +1108.1024 +1108.1137 Lattice +1108.1457 Mesoscale and Nanoscale Physics +1108.1467 Functional Analysis +1108.2131 Phenomenology +1108.3532 Chemical Physics +1108.4278 Phenomenology +1108.4728 Materials Science +1108.5003 Geophysics +1108.5313 Differential Geometry +1108.5482 Fluid Dynamics +1108.5485 Fluid Dynamics +1108.5607 Theory +1108.6142 Strongly Correlated Electrons +1109.0589 Cellular Automata and Lattice Gases +1109.1155 Biological Physics +1109.1297 Strongly Correlated Electrons +1109.1551 Strongly Correlated Electrons +1109.1687 Materials Science +1109.1823 Phenomenology +1109.1855 Atomic Physics +1109.2600 Superconductivity +1109.3054 Statistical Mechanics +1109.3364 +1109.3877 Phenomenology +1109.4024 Statistical Mechanics +1109.4824 +1110.0254 Strongly Correlated Electrons +1110.0447 Strongly Correlated Electrons +1110.0617 Other Condensed Matter +1110.0806 Strongly Correlated Electrons +1110.2020 General Physics +1110.2123 Phenomenology +1110.2505 Algebraic Geometry +1110.2639 Statistical Mechanics +1110.3147 Computational Complexity +1110.3287 General Physics +1110.3315 Physics and Society +1110.3937 Solar and Stellar Astrophysics +1110.4836 Number Theory +1110.5125 Superconductivity +1110.6747 Materials Science +1110.6906 +1111.1024 Combinatorics +1111.1130 Solar and Stellar Astrophysics +1111.1154 +1111.1628 Networking and Internet Architecture +1111.1758 Instrumentation and Methods for Astrophysics +1111.1784 Machine Learning +1111.1799 Combinatorics +1111.2203 Analysis of PDEs +1111.2473 Analysis of PDEs +1111.2504 Probability +1111.2515 +1111.2868 Representation Theory +1111.2870 Combinatorics +1111.2871 +1111.2874 Complex Variables +1111.2887 Cosmology and Nongalactic Astrophysics +1111.2889 Cosmology and Nongalactic Astrophysics +1111.2890 Mesoscale and Nanoscale Physics +1111.2891 Strongly Correlated Electrons +1111.2893 Computer Science and Game Theory +1111.2895 Combinatorics +1111.2896 Combinatorics +1111.2898 Combinatorics +1111.2901 Rings and Algebras +1111.2908 Fluid Dynamics +1111.2923 Statistics Theory +1111.2926 Analysis of PDEs +1111.2927 Statistical Mechanics +1111.2928 Operator Algebras +1111.2930 Statistical Mechanics +1111.2933 Networking and Internet Architecture +1111.2937 Materials Science +1111.2941 Superconductivity +1111.2943 Metric Geometry +1111.2945 Combinatorics +1111.2951 Theory +1111.2953 Astrophysics of Galaxies +1111.2955 Lattice +1111.2957 Neurons and Cognition +1111.2959 High Energy Astrophysical Phenomena +1111.2960 Materials Science +1111.2964 Algebraic Geometry +1111.2965 +1111.2967 Pattern Formation and Solitons +1111.2969 High Energy Astrophysical Phenomena +1111.2971 Differential Geometry +1111.2974 Numerical Analysis +1111.2979 Fluid Dynamics +1111.2981 Phenomenology +1111.2985 Dynamical Systems +1111.2986 Algebraic Geometry +1111.2991 Information Theory +1111.2993 Multimedia +1111.2994 Classical Analysis and ODEs +1111.2996 Networking and Internet Architecture +1111.2998 Biomolecules +1111.3000 Computer Vision and Pattern Recognition +1111.3001 Software Engineering +1111.3002 +1111.3005 Phenomenology +1111.3007 Chemical Physics +1111.3008 Statistical Mechanics +1111.3010 Cryptography and Security +1111.3011 Spectral Theory +1111.3012 Lattice +1111.3014 Statistical Mechanics +1111.3015 Experiment +1111.3018 Statistical Mechanics +1111.3022 Distributed, Parallel, and Cluster Computing +1111.3023 Lattice +1111.3025 Systems and Control +1111.3030 Statistical Mechanics +1111.3034 Statistical Mechanics +1111.3038 Statistical Mechanics +1111.3041 Networking and Internet Architecture +1111.3043 Numerical Analysis +1111.3052 Chemical Physics +1111.3056 Hardware Architecture +1111.3058 Numerical Analysis +1111.3059 Instrumentation and Methods for Astrophysics +1111.3060 Statistical Mechanics +1111.3061 Probability +1111.3062 Neurons and Cognition +1111.3064 Classical Physics +1111.3065 Neurons and Cognition +1111.3067 Probability +1111.3069 Databases +1111.3070 Materials Science +1111.3073 Probability +1111.3076 Group Theory +1111.3077 Representation Theory +1111.3085 Mesoscale and Nanoscale Physics +1111.3091 Operator Algebras +1111.3094 Combinatorics +1111.3096 Software Engineering +1111.3101 Dynamical Systems +1111.3102 Classical Physics +1111.3103 Adaptation and Self-Organizing Systems +1111.3104 Number Theory +1111.3106 Logic in Computer Science +1111.3107 Logic in Computer Science +1111.3108 Logic in Computer Science +1111.3109 Logic in Computer Science +1111.3110 Software Engineering +1111.3111 Logic in Computer Science +1111.3116 Experiment +1111.3122 Computation and Language +1111.3126 Neurons and Cognition +1111.3133 +1111.3139 General Mathematics +1111.3141 Phenomenology +1111.3142 Combinatorics +1111.3146 Solar and Stellar Astrophysics +1111.3148 Differential Geometry +1111.3152 Computation and Language +1111.3153 Computation and Language +1111.3157 Functional Analysis +1111.3165 Distributed, Parallel, and Cluster Computing +1111.3166 Information Theory +1111.3175 Phenomenology +1111.3182 Information Theory +1111.3187 Dynamical Systems +1111.3188 Analysis of PDEs +1111.3189 Solar and Stellar Astrophysics +1111.3191 High Energy Astrophysical Phenomena +1111.3192 Statistical Mechanics +1111.3203 Exactly Solvable and Integrable Systems +1111.3206 Atomic Physics +1111.3211 Superconductivity +1111.3214 Chaotic Dynamics +1111.3217 Combinatorics +1111.3220 History and Overview +1111.3226 Instrumentation and Methods for Astrophysics +1111.3230 Superconductivity +1111.3231 Soft Condensed Matter +1111.3233 Materials Science +1111.3234 Solar and Stellar Astrophysics +1111.3239 Statistical Mechanics +1111.3240 Information Theory +1111.3241 Medical Physics +1111.3242 +1111.3247 Phenomenology +1111.3252 Combinatorics +1111.3256 Chemical Physics +1111.3262 Phenomenology +1111.3263 Pricing of Securities +1111.3270 Data Structures and Algorithms +1111.3271 Optimization and Control +1111.3274 Information Theory +1111.3279 Combinatorics +1111.3282 Discrete Mathematics +1111.3283 Statistical Mechanics +1111.3284 Experiment +1111.3288 Discrete Mathematics +1111.3297 Data Structures and Algorithms +1111.3301 +1111.3303 High Energy Astrophysical Phenomena +1111.3305 Number Theory +1111.3312 Combinatorics +1111.3315 High Energy Astrophysical Phenomena +1111.3318 Soft Condensed Matter +1111.3325 Combinatorics +1111.3332 Instrumentation and Detectors +1111.3333 Geometric Topology +1111.3334 Distributed, Parallel, and Cluster Computing +1111.3335 K-Theory and Homology +1111.3339 Phenomenology +1111.3340 Algebraic Geometry +1111.3343 Probability +1111.3346 Experiment +1111.3356 Functional Analysis +1111.3358 High Energy Astrophysical Phenomena +cond-mat/0204129 Quantum Gases +cond-mat/0206041 Quantum Gases +cond-mat/0605362 Materials Science +cs/0401030 Cryptography and Security +cs/0402060 Cryptography and Security +cs/0602012 Cryptography and Security +hep-lat/9503028 Lattice +math/0604457 Dynamical Systems +0705.2867 General Topology +0705.3592 Differential Geometry +0706.1559 Strongly Correlated Electrons +0707.4223 +0803.0319 Theory +0803.4130 General Topology +0804.2762 Statistical Mechanics +0806.2632 Differential Geometry +0806.2964 General Finance +0806.3169 Differential Geometry +0806.4774 Statistical Mechanics +0809.1581 Differential Geometry +0809.3602 Differential Geometry +0811.0116 Mesoscale and Nanoscale Physics +0811.1678 Geometric Topology +0901.4603 Theory +0902.1067 Cosmology and Nongalactic Astrophysics +0904.0535 Differential Geometry +0904.2968 Plasma Physics +0905.0262 Differential Geometry +0905.4186 Geometric Topology +0906.2410 Differential Geometry +0909.2171 Experiment +0909.4373 Mesoscale and Nanoscale Physics +0910.2734 Strongly Correlated Electrons +0911.5145 Statistical Mechanics +0911.5154 Statistical Mechanics +1002.1934 Group Theory +1002.4215 Phenomenology +1004.2295 Superconductivity +1004.3035 +1005.0790 +1005.5282 Other Condensed Matter +1006.1942 +1006.2071 +1006.2364 Algebraic Geometry +1006.3349 Theory +1006.5058 Group Theory +1007.2162 Soft Condensed Matter +1007.5119 Exactly Solvable and Integrable Systems +1007.5249 Dynamical Systems +1008.1340 +1008.3918 Dynamical Systems +1008.5231 Optimization and Control +1009.0661 Combinatorics +1009.4351 Functional Analysis +1010.0709 Mesoscale and Nanoscale Physics +1010.4231 +1010.5106 Differential Geometry +1011.1349 Phenomenology +1011.1856 Analysis of PDEs +1011.2518 +1011.3620 Materials Science +1011.5185 Statistical Mechanics +1011.5981 Theory +1012.0846 Theory +1012.1301 Algebraic Geometry +1012.2921 +1012.3737 Phenomenology +1012.4178 Lattice +1101.0003 Phenomenology +1101.0498 Phenomenology +1101.1172 Combinatorics +1101.2934 Metric Geometry +1101.3088 Commutative Algebra +1101.3476 Theory +1101.3790 +1101.4121 Materials Science +1101.4167 +1101.4798 Theory +1101.5047 +1101.5251 Theory +1101.5713 Phenomenology +1102.2718 +1102.3449 +1102.3790 +1102.3797 Materials Science +1102.4466 Phenomenology +1102.4574 +1102.5153 +1102.5490 Other Condensed Matter +1103.1095 Phenomenology +1103.1883 Phenomenology +1103.2220 Theory +1103.2426 +1103.3826 +1103.3971 Experiment +1103.4995 Mesoscale and Nanoscale Physics +1103.5741 Theory +1103.5853 Theory +1103.6019 Discrete Mathematics +1103.6041 +1103.6127 Phenomenology +1103.6186 Phenomenology +1103.6217 Phenomenology +1104.0056 Probability +1104.0059 Probability +1104.0123 +1104.0498 Strongly Correlated Electrons +1104.0625 Cosmology and Nongalactic Astrophysics +1104.0652 Cosmology and Nongalactic Astrophysics +1104.0674 Theory +1104.0686 Phenomenology +1104.0760 Cosmology and Nongalactic Astrophysics +1104.1003 High Energy Astrophysical Phenomena +1104.1215 Statistical Mechanics +1104.1456 +1104.1704 +1104.1800 +1104.2200 +1104.2814 +1104.3490 +1104.3692 +1104.4347 Theory +1104.4365 Phenomenology +1104.4472 Experiment +1104.4505 Phenomenology +1104.4578 Data Analysis, Statistics and Probability +1104.4739 Phenomenology +1104.4782 Phenomenology +1104.5453 +1104.5624 Phenomenology +1105.0585 +1105.0617 Instrumentation and Detectors +1105.1168 Theory +1105.1303 Other Condensed Matter +1105.2035 Theory +1105.2138 Phenomenology +1105.2400 +1105.2745 Theory +1105.2821 High Energy Astrophysical Phenomena +1105.2867 General Topology +1105.2875 Representation Theory +1105.3062 Earth and Planetary Astrophysics +1105.3950 +1105.4084 +1105.4155 Phenomenology +1105.5162 Phenomenology +1105.5167 Phenomenology +1105.5431 Phenomenology +1105.6048 Superconductivity +1106.0139 Phenomenology +1106.0173 Theory +1106.0450 Mesoscale and Nanoscale Physics +1106.0531 Statistical Mechanics +1106.0799 +1106.0890 Theory +1106.0976 Phenomenology +1106.1325 Functional Analysis +1106.1528 Cosmology and Nongalactic Astrophysics +1106.1687 Soft Condensed Matter +1106.1693 +1106.3036 Phenomenology +1106.4427 +1106.4756 Phenomenology +1106.4807 +1106.4889 +1106.5222 Theory +1107.1213 Phenomenology +1107.2493 Dynamical Systems +1107.3922 Statistical Mechanics +1107.3951 Functional Analysis +1107.4103 Cosmology and Nongalactic Astrophysics +1107.4263 Instrumentation and Methods for Astrophysics +1107.4655 +1107.5346 Differential Geometry +1107.5511 Category Theory +1108.0389 Solar and Stellar Astrophysics +1108.0824 Statistical Mechanics +1108.1063 Category Theory +1108.1069 Category Theory +1108.1121 Systems and Control +1108.1152 Computers and Society +1108.1187 General Physics +1108.1188 Probability +1108.1193 Cosmology and Nongalactic Astrophysics +1108.1217 +1108.1218 Phenomenology +1108.1223 Methodology +1108.1224 Materials Science +1108.1226 Solar and Stellar Astrophysics +1108.1231 Classical Physics +1108.1236 Phenomenology +1108.1247 Combinatorics +1108.1260 Methodology +1108.1262 Social and Information Networks +1108.1263 Phenomenology +1108.1264 Combinatorics +1108.1265 Geometric Topology +1108.1270 Geometric Topology +1108.1272 Other Condensed Matter +1108.1273 Pricing of Securities +1108.1276 Algebraic Geometry +1108.1281 Astrophysics of Galaxies +1108.1292 Number Theory +1108.1301 Symbolic Computation +1108.1302 Cryptography and Security +1108.1307 Solar and Stellar Astrophysics +1108.1308 Solar and Stellar Astrophysics +1108.1311 Atomic and Molecular Clusters +1108.1312 Analysis of PDEs +1108.1314 Software Engineering +1108.1315 History and Overview +1108.1321 Distributed, Parallel, and Cluster Computing +1108.1324 Metric Geometry +1108.1329 Quantum Gases +1108.1332 Analysis of PDEs +1108.1333 Materials Science +1108.1334 Networking and Internet Architecture +1108.1341 Networking and Internet Architecture +1108.1343 Networking and Internet Architecture +1108.1344 Cryptography and Security +1108.1346 High Energy Astrophysical Phenomena +1108.1350 Networking and Internet Architecture +1108.1351 Data Structures and Algorithms +1108.1352 Software Engineering +1108.1353 Computer Vision and Pattern Recognition +1108.1360 Biological Physics +1108.1361 Social and Information Networks +1108.1369 Cosmology and Nongalactic Astrophysics +1108.1370 Analysis of PDEs +1108.1374 Instrumentation and Methods for Astrophysics +1108.1378 Databases +1108.1386 Statistics Theory +1108.1387 Functional Analysis +cond-mat/0104196 Statistical Mechanics +cond-mat/0207221 Superconductivity +cond-mat/0306537 Strongly Correlated Electrons +cond-mat/0308260 Strongly Correlated Electrons +cond-mat/0508545 Statistical Mechanics +cond-mat/0508546 Statistical Mechanics +cond-mat/0508710 Statistical Mechanics +cond-mat/0509266 Statistical Mechanics +cond-mat/0509741 Statistical Mechanics +cond-mat/0612644 Statistical Mechanics +cond-mat/0612645 Statistical Mechanics +cond-mat/0703001 Mesoscale and Nanoscale Physics +hep-th/0110245 Theory +hep-th/9804207 Theory +math/0209361 Geometric Topology +math/0407337 Differential Geometry +math/0410498 Differential Geometry +math/0608654 Algebraic Topology +math/0612148 General Topology +math/9911054 Differential Geometry +quant-ph/9907027 +0706.3082 Number Theory +0710.1959 Optimization and Control +0710.5799 Number Theory +0801.0481 Number Theory +0801.1948 Number Theory +0803.1148 Representation Theory +0804.3878 Differential Geometry +0806.1019 Theory +0809.3135 +0902.3160 Statistical Mechanics +0905.0771 Theory +0905.2306 Mesoscale and Nanoscale Physics +0911.0816 Operator Algebras +0911.5460 Machine Learning +1001.4731 Cosmology and Nongalactic Astrophysics +1001.4758 Cosmology and Nongalactic Astrophysics +1001.4904 Differential Geometry +1002.0780 Probability +1002.1546 Geometric Topology +1002.4795 Optimization and Control +1004.0927 Functional Analysis +1004.1071 Probability +1004.4189 Group Theory +1005.0406 Mesoscale and Nanoscale Physics +1006.5472 Materials Science +1006.5704 Combinatorics +1007.1769 Popular Physics +1007.1997 Analysis of PDEs +1008.0563 Group Theory +1008.3004 Quantum Gases +1008.3462 Optimization and Control +1010.0125 High Energy Astrophysical Phenomena +1010.0926 Mesoscale and Nanoscale Physics +1010.0951 Lattice +1010.3557 Disordered Systems and Neural Networks +1011.0084 +1011.5513 +1011.5549 Data Structures and Algorithms +1012.1994 +1012.4391 Analysis of PDEs +1101.0351 +1101.2932 Optimization and Control +1101.3653 Optimization and Control +1101.4076 Materials Science +1101.6037 Statistics Theory +1102.0092 Analysis of PDEs +1102.3360 Optimization and Control +1103.0892 Mesoscale and Nanoscale Physics +1103.4136 Differential Geometry +1103.4614 Machine Learning +1104.2318 Superconductivity +1104.4474 +1104.4721 Number Theory +1104.5045 Theory +1104.5122 Mesoscale and Nanoscale Physics +1104.5214 Data Structures and Algorithms +1105.0007 Strongly Correlated Electrons +1105.2924 Optimization and Control +1105.4800 Experiment +1105.4836 Statistical Mechanics +1105.4850 Mesoscale and Nanoscale Physics +1106.1099 +1106.3832 Materials Science +1106.4536 Mesoscale and Nanoscale Physics +1106.5868 Theory +1106.6175 Phenomenology +1107.0924 Materials Science +1107.0936 Strongly Correlated Electrons +1107.2462 Machine Learning +1107.2652 Phenomenology +1107.3753 Experiment +1107.5704 +1108.1737 Commutative Algebra +1108.3527 Theory +1108.3559 Statistical Mechanics +1108.3782 Geometric Topology +1108.6033 Computer Science and Game Theory +1108.6163 Phenomenology +1109.0920 Materials Science +1109.1793 Mesoscale and Nanoscale Physics +1109.3050 Strongly Correlated Electrons +1109.4442 Plasma Physics +1109.4486 Soft Condensed Matter +1109.4572 Mesoscale and Nanoscale Physics +1109.4968 Differential Geometry +1109.6585 Materials Science +1110.0311 Quantum Gases +1110.2700 High Energy Astrophysical Phenomena +1110.4134 Materials Science +1110.4459 Statistical Mechanics +1110.4741 +1110.4813 Strongly Correlated Electrons +1110.6615 High Energy Astrophysical Phenomena +1111.0268 Metric Geometry +1111.1113 Risk Management +1111.1811 Mesoscale and Nanoscale Physics +1111.2077 Discrete Mathematics +1111.2109 Metric Geometry +1111.2271 General Physics +1111.2335 Solar and Stellar Astrophysics +1111.2339 Solar and Stellar Astrophysics +1111.2343 Representation Theory +1111.2344 Numerical Analysis +1111.2345 Analysis of PDEs +1111.2352 Instrumentation and Methods for Astrophysics +1111.2359 Phenomenology +1111.2360 Experiment +1111.2364 Dynamical Systems +1111.2368 Probability +1111.2369 Logic +1111.2374 Algebraic Topology +1111.2377 Geophysics +1111.2390 High Energy Astrophysical Phenomena +1111.2391 Computer Vision and Pattern Recognition +1111.2392 Number Theory +1111.2394 Commutative Algebra +1111.2395 Medical Physics +1111.2397 Experiment +1111.2402 Classical Physics +1111.2403 Operator Algebras +1111.2408 Solar and Stellar Astrophysics +1111.2409 Functional Analysis +1111.2411 Populations and Evolution +1111.2412 Distributed, Parallel, and Cluster Computing +1111.2414 Classical Analysis and ODEs +1111.2416 Optics +1111.2417 Differential Geometry +1111.2418 Distributed, Parallel, and Cluster Computing +1111.2422 Computational Geometry +1111.2428 Experiment +1111.2430 Information Theory +1111.2435 Functional Analysis +1111.2436 Analysis of PDEs +1111.2438 History and Overview +1111.2441 History and Overview +1111.2442 Mesoscale and Nanoscale Physics +1111.2445 Probability +1111.2449 Probability +1111.2453 Solar and Stellar Astrophysics +1111.2455 Solar and Stellar Astrophysics +1111.2456 Information Theory +1111.2457 Mesoscale and Nanoscale Physics +1111.2458 Classical Physics +1111.2459 Materials Science +1111.2464 Analysis of PDEs +1111.2467 Optimization and Control +1111.2471 Differential Geometry +1111.2472 High Energy Astrophysical Phenomena +1111.2475 Number Theory +1111.2478 +1111.2479 Algebraic Geometry +1111.2480 Logic +1111.2484 Experiment +1111.2485 Soft Condensed Matter +1111.2490 Analysis of PDEs +1111.2495 Phenomenology +1111.2498 General Topology +1111.2500 Classical Physics +1111.2502 Representation Theory +1111.2503 Cryptography and Security +1111.2505 Mesoscale and Nanoscale Physics +1111.2506 Materials Science +1111.2507 High Energy Astrophysical Phenomena +1111.2508 Algebraic Geometry +1111.2512 Solar and Stellar Astrophysics +1111.2513 Analysis of PDEs +1111.2514 Computational Engineering, Finance, and Science +1111.2517 Analysis of PDEs +1111.2518 Mesoscale and Nanoscale Physics +1111.2520 Cryptography and Security +1111.2522 Experiment +1111.2524 Classical Physics +1111.2525 Soft Condensed Matter +1111.2528 Earth and Planetary Astrophysics +1111.2530 Databases +1111.2534 +1111.2535 Probability +1111.2540 Materials Science +1111.2541 Numerical Analysis +1111.2542 Cryptography and Security +1111.2543 Solar and Stellar Astrophysics +1111.2545 Algebraic Geometry +1111.2559 Quantum Algebra +1111.2560 Superconductivity +1111.2563 +1111.2567 Number Theory +1111.2575 Materials Science +1111.2576 Instrumentation and Methods for Astrophysics +1111.2584 Computational Finance +1111.2586 Mesoscale and Nanoscale Physics +1111.2590 Lattice +1111.2591 High Energy Astrophysical Phenomena +1111.2594 +math/0509661 Rings and Algebras +math/0606663 Probability +math/0607331 Probability +quant-ph/0609108 +0704.0752 Theory +0706.3079 Phenomenology +0707.1829 +0708.3538 Phenomenology +0709.1004 Optics +0709.1021 +0709.1232 +0709.1754 Theory +0709.2492 +0709.4313 Theory +0710.0714 Phenomenology +0710.1620 Representation Theory +0710.3182 Algebraic Geometry +0710.4243 +0711.3868 Computational Physics +0712.0655 +0801.1882 +0801.3581 Computational Geometry +0801.4531 +0801.4852 +0802.0511 Materials Science +0802.1118 +0802.2054 Optics +0802.2796 +0802.3731 +0802.3802 Theory +0802.3804 +0803.0082 Experiment +0803.1381 +0803.2435 +0803.3116 Phenomenology +0804.0286 Other Condensed Matter +0804.0516 Combinatorics +0804.0733 Combinatorics +0804.1938 Atmospheric and Oceanic Physics +0804.2283 Phenomenology +0804.2350 +0804.4783 Phenomenology +0805.0344 +0805.0768 Phenomenology +0805.1421 +0805.2367 +0805.2395 Phenomenology +0805.2832 +0805.4427 Disordered Systems and Neural Networks +0807.1735 +0807.3417 +0807.3638 Populations and Evolution +0807.3841 +0808.0788 Phenomenology +0808.0846 +0808.1050 +0808.1539 +0808.1696 +0808.2612 +0809.0161 +0809.0575 +0809.1783 +0809.2266 +0809.2470 +0809.2755 +0809.3917 +0810.0077 +0810.0212 +0810.0217 +0810.0938 +0810.1118 +0810.1523 +0810.2189 +0810.3304 +0810.3344 Theory +0810.3413 +0810.4303 Phenomenology +0810.4313 Phenomenology +0811.0202 +0811.0593 +0811.0698 +0812.3067 +0812.4007 +0812.4888 +0901.1094 Algebraic Geometry +0902.1936 Instrumentation and Methods for Astrophysics +0902.2108 Formal Languages and Automata Theory +0903.0496 Solar and Stellar Astrophysics +0903.1336 Solar and Stellar Astrophysics +0903.4226 Dynamical Systems +0903.4280 Astrophysics of Galaxies +0904.1068 Cosmology and Nongalactic Astrophysics +0904.2048 +0905.0898 Astrophysics of Galaxies +0906.1468 Optics +0906.3007 Solar and Stellar Astrophysics +0906.3028 Solar and Stellar Astrophysics +0906.3702 Number Theory +0907.0001 Combinatorics +0908.0149 Number Theory +0908.3257 Geometric Topology +0908.3666 Probability +0908.4352 Functional Analysis +0909.0194 Solar and Stellar Astrophysics +0909.4130 Dynamical Systems +0910.0083 Quantum Algebra +0910.4924 Soft Condensed Matter +0911.1361 Logic +0911.1485 Number Theory +0911.4277 Number Theory +0912.3940 High Energy Astrophysical Phenomena +1001.0909 +1002.0593 High Energy Astrophysical Phenomena +1002.5022 +1003.2064 Number Theory +1004.5465 Populations and Evolution +1005.1136 Probability +1005.1334 Statistical Mechanics +1005.3933 Cosmology and Nongalactic Astrophysics +1005.4155 Computational Geometry +1006.2476 Representation Theory +1006.4411 +1006.4998 Phenomenology +1007.1106 Mesoscale and Nanoscale Physics +1007.2167 Phenomenology +1007.3950 Representation Theory +1007.4818 Quantum Gases +1007.5359 Materials Science +1008.0029 Instrumentation and Detectors +1008.0173 Materials Science +1008.3478 Biological Physics +1008.5278 Solar and Stellar Astrophysics +1009.0286 Analysis of PDEs +1009.1127 Phenomenology +1009.1843 Dynamical Systems +1009.3790 Theory +1010.1013 High Energy Astrophysical Phenomena +1010.1120 +1010.2039 Instrumentation and Detectors +1010.2873 +1010.3389 Statistical Mechanics +1010.3539 Populations and Evolution +1010.3666 Theory +1010.5373 Phenomenology +1011.1237 Dynamical Systems +1011.2798 Disordered Systems and Neural Networks +1011.3505 Group Theory +1011.3813 Solar and Stellar Astrophysics +1011.5534 Cryptography and Security +1011.5812 Probability +1011.5938 Mesoscale and Nanoscale Physics +1011.6354 Theory +1011.6464 Theory +1011.6631 Phenomenology +1012.0560 Quantum Algebra +1012.2659 Probability +1012.4040 +1012.4304 Materials Science +1012.5893 Quantum Algebra +1101.0632 Quantitative Methods +1101.1141 Mesoscale and Nanoscale Physics +1101.1401 +1101.1989 Instrumentation and Detectors +1101.2852 +1101.4046 +1101.4747 Representation Theory +1101.4861 Populations and Evolution +1101.4889 +1101.5970 Phenomenology +1102.0463 Strongly Correlated Electrons +1102.0980 Combinatorics +1102.1110 Analysis of PDEs +1102.1286 +1102.1385 Phenomenology +1102.3246 Lattice +1102.3933 Theory +1102.4099 Information Theory +1102.4452 Mesoscale and Nanoscale Physics +1102.4866 Computational Geometry +1102.5564 +1102.5607 Materials Science +1103.0480 +1103.0654 Algebraic Geometry +1103.4248 Mesoscale and Nanoscale Physics +1103.5892 Optics +1103.5926 Mesoscale and Nanoscale Physics +1104.1564 Phenomenology +1104.2062 Phenomenology +1104.2331 Phenomenology +1104.2500 Statistical Mechanics +1104.3031 History and Philosophy of Physics +1104.3227 Phenomenology +1104.3474 +1104.4121 Theory +1104.4436 Phenomenology +1104.5263 +1104.5294 Experiment +1105.0193 Instrumentation and Detectors +1105.2109 +1105.2934 Digital Libraries +1105.2997 Theory +1105.3122 Theory +1105.3742 Phenomenology +1105.3761 +1105.4643 Geometric Topology +1105.5142 Mesoscale and Nanoscale Physics +1105.5925 Theory +1105.6022 Functional Analysis +1105.6144 Statistical Mechanics +1105.6216 Phenomenology +1106.2225 +1106.2651 Instrumentation and Methods for Astrophysics +1106.2943 +1106.3497 Pattern Formation and Solitons +1106.4214 Theory +1106.4398 +1106.4473 +1106.4884 +1106.5658 Cosmology and Nongalactic Astrophysics +1107.4244 Cosmology and Nongalactic Astrophysics +1107.4928 Mesoscale and Nanoscale Physics +1107.5064 High Energy Astrophysical Phenomena +1108.0268 Superconductivity +1108.1006 +1108.1234 Instrumentation and Methods for Astrophysics +1108.1701 Mesoscale and Nanoscale Physics +1108.1920 Number Theory +1108.2918 Differential Geometry +1108.3258 Mesoscale and Nanoscale Physics +1108.3933 Number Theory +1108.4114 Optimization and Control +1108.4698 Robotics +1108.4823 +1108.5083 Instrumentation and Methods for Astrophysics +1108.5266 Probability +1108.5277 Probability +1108.5372 Solar and Stellar Astrophysics +1108.5560 Probability +1108.5625 Complex Variables +1108.5667 Artificial Intelligence +1108.5730 +1108.5735 Theory +1108.5736 Cosmology and Nongalactic Astrophysics +1108.5737 Dynamical Systems +1108.5738 +1108.5760 +1108.5766 Logic in Computer Science +1108.5767 +1108.5771 +1108.5772 Cosmology and Nongalactic Astrophysics +1108.5774 +1108.5780 Earth and Planetary Astrophysics +1108.5784 Information Retrieval +1108.5785 Atomic Physics +1108.5786 Chaotic Dynamics +1108.5789 Experiment +1108.5791 Fluid Dynamics +1108.5793 Cryptography and Security +1108.5794 Artificial Intelligence +1108.5797 Rings and Algebras +1108.5801 Data Analysis, Statistics and Probability +1108.5802 Number Theory +1108.5803 Superconductivity +1108.5804 +1108.5806 Materials Science +1108.5810 Analysis of PDEs +1108.5811 Materials Science +1108.5812 Materials Science +1108.5814 Materials Science +1108.5819 Materials Science +1108.5820 Materials Science +1108.5825 Artificial Intelligence +1108.5826 Operator Algebras +1108.5828 Phenomenology +1108.5829 Theory +1108.5832 Number Theory +1108.5837 Artificial Intelligence +1108.5842 Earth and Planetary Astrophysics +1108.5845 Digital Libraries +1108.5847 Phenomenology +1108.5848 +1108.5849 Differential Geometry +1108.5850 Solar and Stellar Astrophysics +1108.5854 Analysis of PDEs +1108.5855 Analysis of PDEs +1108.5856 +1108.5858 +1108.5859 Differential Geometry +1108.5862 Commutative Algebra +1108.5864 Cryptography and Security +1108.5868 +1108.5872 Phenomenology +1108.5873 Instrumentation and Detectors +1108.5877 Experiment +1108.5878 Applications +1108.5880 Instrumentation and Methods for Astrophysics +1108.5882 Data Analysis, Statistics and Probability +1108.5884 +1108.5887 Phenomenology +1108.5891 Chemical Physics +1108.5892 Algebraic Geometry +1108.5893 Distributed, Parallel, and Cluster Computing +1108.5900 K-Theory and Homology +1108.5904 Distributed, Parallel, and Cluster Computing +1108.5911 Materials Science +1108.5920 Classical Analysis and ODEs +1108.5926 General Physics +1108.5929 General Physics +1108.5946 Statistical Finance +1108.5949 Combinatorics +1108.5950 Rings and Algebras +1108.5952 Category Theory +1108.5955 Mesoscale and Nanoscale Physics +1108.5958 Astrophysics of Galaxies +1108.5959 Experiment +1108.5961 Soft Condensed Matter +1108.5965 Phenomenology +1108.5967 Optics +1108.5969 Experiment +1108.5971 Data Analysis, Statistics and Probability +1108.5972 Superconductivity +1108.5977 Physics Education +1108.5980 Phenomenology +1108.5984 Algebraic Geometry +1108.5986 Accelerator Physics +1108.5992 +1108.5995 Cosmology and Nongalactic Astrophysics +1108.5997 General Physics +1108.6001 Representation Theory +1108.6004 Differential Geometry +1108.6007 Artificial Intelligence +1108.6010 Cryptography and Security +1108.6013 Differential Geometry +1108.6015 Combinatorics +1108.6016 Databases +1108.6022 Computational Geometry +1108.6025 Experiment +1108.6026 Functional Analysis +1108.6037 Quantum Algebra +1108.6038 Combinatorics +1108.6039 Experiment +1108.6043 Data Analysis, Statistics and Probability +1108.6044 Astrophysics of Galaxies +1108.6046 Information Theory +astro-ph/0206487 +astro-ph/0702265 +astro-ph/0702542 +astro-ph/9509107 +cond-mat/0410300 Superconductivity +cs/0701102 Information Theory +gr-qc/0702137 +hep-ph/0405227 Phenomenology +hep-ph/0512076 Phenomenology +hep-ph/0602038 Phenomenology +hep-ph/0605104 Phenomenology +hep-ph/0701148 Phenomenology +hep-th/0602104 Theory +hep-th/0611021 Theory +hep-th/0701181 Theory +math-ph/0003034 +math-ph/0003035 +math-ph/0003036 +math-ph/9806015 +math/0512166 Algebraic Geometry +math/0603553 Dynamical Systems +math/0606259 Quantum Algebra +math/0612255 Quantum Algebra +math/0703586 Operator Algebras +nucl-ex/9903006 +nucl-ex/9909018 +physics/0512121 General Physics +physics/0701311 Physics and Society +0706.2792 +0803.4409 +0806.3539 Combinatorics +0807.2613 Theory +0810.1339 Representation Theory +0810.2233 Algebraic Geometry +0904.1412 Differential Geometry +0906.2853 Classical Analysis and ODEs +0909.0846 K-Theory and Homology +0910.0363 Theory +0910.1794 Algebraic Geometry +0910.2532 Mesoscale and Nanoscale Physics +0911.0193 Dynamical Systems +0911.0432 Analysis of PDEs +0912.2102 Mesoscale and Nanoscale Physics +1001.3355 Machine Learning +1005.0598 Combinatorics +1005.4947 Operator Algebras +1006.3364 Optics +1006.3807 Metric Geometry +1008.0618 Mesoscale and Nanoscale Physics +1008.2172 Astrophysics of Galaxies +1008.4666 General Physics +1008.4699 Commutative Algebra +1008.4794 Statistical Mechanics +1009.0171 Differential Geometry +1009.0210 Strongly Correlated Electrons +1009.1531 Optics +1009.1550 Chaotic Dynamics +1009.2913 Physics and Society +1010.2406 Populations and Evolution +1010.3597 Algebraic Geometry +1010.3628 Category Theory +1010.4032 Mesoscale and Nanoscale Physics +1010.5333 Quantum Gases +1010.5727 Number Theory +1010.5982 Theory +1011.1461 High Energy Astrophysical Phenomena +1011.4129 High Energy Astrophysical Phenomena +1011.6519 Superconductivity +1011.6547 Phenomenology +1012.1968 Mesoscale and Nanoscale Physics +1012.3421 Materials Science +1012.5278 Statistics Theory +1012.5316 Combinatorics +1012.5547 Molecular Networks +1101.0867 Phenomenology +1101.1004 Plasma Physics +1101.5415 Rings and Algebras +1101.5447 Mesoscale and Nanoscale Physics +1102.0485 Information Theory +1102.1919 Other Condensed Matter +1102.2645 Combinatorics +1102.2759 Experiment +1102.4305 Mesoscale and Nanoscale Physics +1102.5708 Differential Geometry +1103.0182 Neurons and Cognition +1103.0871 Solar and Stellar Astrophysics +1103.4803 Atomic Physics +1103.5599 Data Structures and Algorithms +1103.6089 Analysis of PDEs +1104.0768 +1104.2405 Phenomenology +1104.2406 Algebraic Geometry +1104.2677 Statistics Theory +1104.2685 Atmospheric and Oceanic Physics +1104.2708 Mesoscale and Nanoscale Physics +1104.2842 Artificial Intelligence +1104.2844 Logic in Computer Science +1104.2909 Computer Science and Game Theory +1104.2914 Experiment +1104.2921 General Physics +1104.2922 Discrete Mathematics +1104.2925 Digital Libraries +1104.2926 Experiment +1104.2936 Logic in Computer Science +1104.2939 Multiagent Systems +1104.2944 Discrete Mathematics +1104.2946 Strongly Correlated Electrons +1104.2962 Experiment +1104.2963 Functional Analysis +1104.2964 Computer Science and Game Theory +1104.2966 Materials Science +1104.2968 +1104.2974 Applications +1104.2975 Methodology +1104.2981 Dynamical Systems +1104.2982 Information Retrieval +1104.2993 Analysis of PDEs +1104.2994 Mesoscale and Nanoscale Physics +1104.2995 Quantitative Methods +1104.2998 +1104.3003 +1104.3005 Applications +1104.3016 Applications +1104.3017 Phenomenology +1104.3020 Statistical Mechanics +1104.3025 Computational Complexity +1104.3035 Analysis of PDEs +1104.3044 Solar and Stellar Astrophysics +1104.3045 Data Structures and Algorithms +1104.3049 Computer Science and Game Theory +1104.3053 Phenomenology +1104.3054 Formal Languages and Automata Theory +1104.3056 Computational Complexity +1104.3057 Data Structures and Algorithms +1104.3062 Group Theory +1104.3065 Group Theory +1104.3069 Information Theory +1104.3076 Computational Geometry +1104.3077 Logic +1104.3082 +1104.3085 Probability +1104.3100 Data Structures and Algorithms +cond-mat/0010057 Strongly Correlated Electrons +gr-qc/9404036 +math-ph/0108016 +math/0009087 Logic +math/0402346 Optimization and Control +0710.5362 +0710.5648 Complex Variables +0711.2117 Classical Physics +0802.2433 Phenomenology +0803.0119 General Mathematics +0803.4358 Strongly Correlated Electrons +0805.2030 Phenomenology +0805.2253 +0805.2280 +0805.4115 +0805.4594 Phenomenology +0805.4771 +0806.0322 Phenomenology +0806.4166 +0807.4303 Instrumentation and Detectors +0810.4859 Algebraic Geometry +0810.5641 Logic +0811.0047 Materials Science +0901.1866 Information Theory +0901.2120 Information Theory +0902.0672 Differential Geometry +0902.0775 Cosmology and Nongalactic Astrophysics +0903.3674 Numerical Analysis +0904.1686 Symplectic Geometry +0904.2102 Theory +0904.3488 Fluid Dynamics +0904.4331 Logic in Computer Science +0905.4011 Materials Science +0906.4313 Commutative Algebra +0907.3509 Physics and Society +0908.2321 General Physics +0908.3497 Physics and Society +0909.1819 Physics and Society +0909.3324 Number Theory +0910.2766 Combinatorics +0910.3693 Cosmology and Nongalactic Astrophysics +0910.4366 Mesoscale and Nanoscale Physics +0910.4681 Combinatorics +0911.0756 +0911.2398 +0912.2034 Materials Science +1001.1445 Discrete Mathematics +1002.1417 Computational Physics +1003.2278 Operator Algebras +1003.4025 Operator Algebras +1003.5404 Mesoscale and Nanoscale Physics +1003.5412 Strongly Correlated Electrons +1004.2083 General Topology +1004.2240 +1004.2935 Lattice +1004.4792 Physics and Society +1005.1601 +1005.5274 Theory +1005.5535 Phenomenology +1006.0316 Group Theory +1006.0912 Quantum Algebra +1006.1098 Plasma Physics +1006.3865 Statistical Mechanics +1006.4678 Theory +1007.0110 Optics +1007.0153 +1007.2935 Mesoscale and Nanoscale Physics +1007.3795 Exactly Solvable and Integrable Systems +1007.4353 Algebraic Geometry +1007.4700 Plasma Physics +1008.0043 Classical Analysis and ODEs +1008.0072 Optics +1008.0115 +1008.2603 Operator Algebras +1008.3078 Strongly Correlated Electrons +1008.3594 Metric Geometry +1008.3794 +1008.4317 Combinatorics +1008.5149 Cosmology and Nongalactic Astrophysics +1009.1180 Optics +1009.1930 Soft Condensed Matter +1009.2539 Phenomenology +1009.2546 Analysis of PDEs +1009.2694 +1009.2831 +1009.3094 Theory +1009.3182 Cosmology and Nongalactic Astrophysics +1009.4354 Phenomenology +1009.5096 Strongly Correlated Electrons +1009.6083 Strongly Correlated Electrons +1009.6179 Theory +1010.0625 Experiment +1010.1237 Strongly Correlated Electrons +1010.2793 +1010.4512 +1010.4551 Materials Science +1010.4612 Information Theory +1010.4746 Experiment +1010.5873 Mesoscale and Nanoscale Physics +1011.0287 Phenomenology +1011.0544 +1011.0980 Superconductivity +1011.1420 Phenomenology +1011.2415 +1011.2611 Phenomenology +1011.3209 Phenomenology +1011.3591 Phenomenology +1011.4005 Theory +1011.4170 Phenomenology +1011.4177 Phenomenology +1011.4496 Populations and Evolution +1011.4605 Atomic Physics +1011.4672 Experiment +1011.4690 Mesoscale and Nanoscale Physics +1011.4847 +1011.5801 Plasma Physics +1011.5821 Experiment +1011.6157 Phenomenology +1011.6444 Quantum Gases +1012.1380 +1012.4669 Cosmology and Nongalactic Astrophysics +1012.5126 +1012.5814 Phenomenology +1101.0063 Instrumentation and Methods for Astrophysics +1101.0385 Complex Variables +1101.0524 Materials Science +1101.0895 Statistical Mechanics +1101.1404 Phenomenology +1101.1832 Phenomenology +1101.2649 +1101.3937 Phenomenology +1101.4020 Theory +1101.5006 Quantum Gases +1101.5228 Phenomenology +1101.5525 Phenomenology +1101.5670 Superconductivity +1102.0212 +1102.0549 Atomic Physics +1102.0575 Phenomenology +1102.0685 Phenomenology +1102.0725 Theory +1102.0742 Experiment +1102.0754 +1102.0875 Phenomenology +1102.1981 Differential Geometry +1102.2563 +1102.3611 Theory +1102.4433 Theory +1102.4440 Theory +1102.4540 Populations and Evolution +1102.4572 +1102.5042 Theory +1102.5303 Mesoscale and Nanoscale Physics +1103.1104 +1103.1197 Phenomenology +1103.1668 Experiment +1103.1762 +1103.1871 Experiment +1103.2355 Theory +1103.2365 +1103.2572 Combinatorics +1103.3359 Statistical Mechanics +1103.3474 Experiment +1103.4020 Superconductivity +1103.4426 Instrumentation and Detectors +1103.4582 Mesoscale and Nanoscale Physics +1103.5525 Solar and Stellar Astrophysics +1103.5586 Networking and Internet Architecture +1103.6178 Phenomenology +1104.0275 +1104.0938 Mesoscale and Nanoscale Physics +1104.1373 Theory +1104.2264 Phenomenology +1104.3238 +1104.3239 +1104.3496 Phenomenology +1104.3627 Theory +1104.3850 Theory +1104.4162 Phenomenology +1105.0109 Physics Education +1105.1514 Cosmology and Nongalactic Astrophysics +1105.1691 Strongly Correlated Electrons +1105.2346 +1105.2534 Mesoscale and Nanoscale Physics +1105.2550 Learning +1105.3220 Combinatorics +1105.3862 Probability +1105.4546 Phenomenology +1105.4807 Phenomenology +1105.5342 Mesoscale and Nanoscale Physics +1105.6350 Optics +1106.0354 Statistical Mechanics +1106.0855 Computational Geometry +1106.1615 Algebraic Geometry +1106.2460 +1106.2838 +1106.3183 Cosmology and Nongalactic Astrophysics +1106.3761 Statistical Mechanics +1106.3767 Artificial Intelligence +1106.4426 Numerical Analysis +1106.4597 Combinatorics +1107.0632 Combinatorics +1107.1126 +1107.1275 +1107.1598 +1107.1989 Phenomenology +1107.2370 Theory +1107.2623 Geometric Topology +1107.3119 Computation and Language +1107.3731 Data Structures and Algorithms +1107.4132 Optimization and Control +1107.4138 Logic in Computer Science +1107.4376 Computers and Society +1107.4434 Probability +1107.4494 Combinatorics +1107.4506 Machine Learning +1107.4603 Pattern Formation and Solitons +1107.4622 Chemical Physics +1107.4628 Computers and Society +1107.4636 Differential Geometry +1107.4641 Logic +1107.4651 Logic in Computer Science +1107.4654 Combinatorics +1107.4656 Mesoscale and Nanoscale Physics +1107.4661 Multimedia +1107.4663 Analysis of PDEs +1107.4668 Materials Science +1107.4669 +1107.4670 +1107.4675 +1107.4677 Differential Geometry +1107.4679 Number Theory +1107.4683 Phenomenology +1107.4684 Software Engineering +1107.4688 General Physics +1107.4690 Optics +1107.4692 Geometric Topology +1107.4694 Strongly Correlated Electrons +1107.4709 Discrete Mathematics +1107.4711 Discrete Mathematics +1107.4716 Probability +1107.4717 Algebraic Topology +1107.4720 Earth and Planetary Astrophysics +1107.4724 Programming Languages +1107.4731 Classical Analysis and ODEs +1107.4732 Numerical Analysis +1107.4734 Computation and Language +1107.4744 Algebraic Geometry +1107.4745 Dynamical Systems +1107.4747 Artificial Intelligence +1107.4748 History and Philosophy of Physics +1107.4749 Probability +1107.4750 Strongly Correlated Electrons +1107.4753 Geophysics +1107.4756 Mesoscale and Nanoscale Physics +1107.4762 Theory +1107.4763 Computer Vision and Pattern Recognition +1107.4769 Materials Science +1107.4770 Phenomenology +1107.4778 Logic +1107.4781 Logic +1107.4785 Cryptography and Security +1107.4786 Operating Systems +1107.4791 Spectral Theory +1107.4793 Solar and Stellar Astrophysics +1107.4794 Combinatorics +1107.4796 Computation and Language +1107.4799 Physics and Society +1107.4804 High Energy Astrophysical Phenomena +1107.4805 High Energy Astrophysical Phenomena +1107.4806 Instrumentation and Methods for Astrophysics +1107.4809 High Energy Astrophysical Phenomena +1107.4811 K-Theory and Homology +1107.4815 Representation Theory +1107.4817 Rings and Algebras +1107.4818 Rings and Algebras +1107.4820 Soft Condensed Matter +1107.4821 Rings and Algebras +1107.4822 Information Theory +1107.4828 Geometric Topology +1107.4829 Combinatorics +1107.4836 Dynamical Systems +1107.4838 Systems and Control +1107.4842 Differential Geometry +1107.4843 Applications +1107.4849 Algebraic Geometry +1107.4850 Networking and Internet Architecture +1107.4851 Performance +1107.4852 Applications +1107.4853 Soft Condensed Matter +1107.4855 Applications +1107.4858 Superconductivity +1107.4859 Soft Condensed Matter +1107.4861 Methodology +1107.4865 Artificial Intelligence +1107.4867 Cosmology and Nongalactic Astrophysics +1107.4868 Applications +1107.4869 Symplectic Geometry +1107.4874 Materials Science +1107.4876 Dynamical Systems +1107.4881 Pricing of Securities +1107.4884 +1107.4886 Theory +1107.4889 Medical Physics +1107.4890 Number Theory +1107.4892 Instrumentation and Methods for Astrophysics +1107.4893 Data Structures and Algorithms +1107.4894 High Energy Astrophysical Phenomena +1107.4900 Information Theory +1107.4902 Combinatorics +1107.4905 Applications +1107.4907 Differential Geometry +1107.4910 Probability +1107.4913 Classical Analysis and ODEs +1107.4919 Applications +1107.4920 Chaotic Dynamics +1107.4925 Computational Physics +1107.4926 Functional Analysis +1107.4929 Computer Science and Game Theory +1107.4931 Computer Science and Game Theory +1107.4933 Number Theory +1107.4936 Chemical Physics +1107.4937 Artificial Intelligence +1107.4940 Networking and Internet Architecture +1107.4944 Combinatorics +1107.4946 Popular Physics +1107.4950 Networking and Internet Architecture +1107.4951 Phenomenology +1107.4955 Mesoscale and Nanoscale Physics +1107.4958 Computer Vision and Pattern Recognition +1107.4963 Statistical Mechanics +1107.4967 Logic in Computer Science +1107.4969 Sound +1107.4970 Data Structures and Algorithms +1107.4980 Commutative Algebra +1107.4981 Networking and Internet Architecture +1107.4982 Statistical Mechanics +1107.4985 Machine Learning +1107.4988 High Energy Astrophysical Phenomena +1107.4994 Optics +1107.4998 Algebraic Geometry +1107.5000 Computer Vision and Pattern Recognition +1107.5001 Astrophysics of Galaxies +1107.5005 +1107.5009 +1107.5010 +1107.5014 Analysis of PDEs +1107.5016 Geometric Topology +1107.5017 Algebraic Geometry +1107.5022 Logic +1107.5024 Superconductivity +1107.5026 Probability +1107.5034 Complex Variables +cond-mat/0204571 Superconductivity +cond-mat/0305594 Materials Science +cond-mat/0312602 Superconductivity +cond-mat/0412588 Superconductivity +cond-mat/0511229 Statistical Mechanics +cond-mat/0512044 Mesoscale and Nanoscale Physics +cond-mat/0512110 Mesoscale and Nanoscale Physics +cond-mat/0512122 Superconductivity +cond-mat/0512682 Superconductivity +gr-qc/0407053 +math/0511312 Algebraic Geometry +math/0511364 Algebraic Geometry +math/0511451 General Mathematics +math/9201280 Dynamical Systems +math/9201293 Dynamical Systems +math/9806154 Metric Geometry +math/9901019 Quantum Algebra +q-alg/9702026 Quantum Algebra +quant-ph/0306085 +quant-ph/0310057 +quant-ph/0310083 +quant-ph/0407020 +quant-ph/0412185 +quant-ph/0412186 +quant-ph/0512148 +quant-ph/0606158 +0709.2781 Biological Physics +0710.1430 +0712.0844 Probability +0803.1449 Phenomenology +0805.2945 +0805.4201 Phenomenology +0808.0513 Probability +0811.0994 Soft Condensed Matter +0812.1090 Representation Theory +0812.1504 Probability +0902.3531 Theory +0903.0516 Soft Condensed Matter +0903.2732 Theory +0906.1716 Probability +0910.0131 Algebraic Topology +0910.2114 Differential Geometry +0911.0042 +0911.0388 Spectral Theory +0912.4125 Superconductivity +1002.0093 Optimization and Control +1004.1805 +1005.4619 Differential Geometry +1005.5514 Databases +1006.0494 Theory +1006.3028 Probability +1007.2809 +1007.3161 Materials Science +1007.4910 Mesoscale and Nanoscale Physics +1008.2589 Theory +1009.2075 Atomic Physics +1009.3145 Information Theory +1010.3161 Phenomenology +1010.3434 Phenomenology +1010.3808 Theory +1011.0851 Optimization and Control +1011.3177 Computer Vision and Pattern Recognition +1012.0229 High Energy Astrophysical Phenomena +1012.1473 Molecular Networks +1012.1809 Pattern Formation and Solitons +1012.2291 +1012.2696 Soft Condensed Matter +1101.0944 Classical Analysis and ODEs +1101.3153 Differential Geometry +1101.5505 Theory +1101.5819 +1102.3455 Phenomenology +1102.3536 Phenomenology +1102.3789 +1102.5035 Theory +1102.5342 Strongly Correlated Electrons +1102.5446 Strongly Correlated Electrons +1103.1578 Phenomenology +1103.4034 Chaotic Dynamics +1103.4105 +1103.6246 Data Structures and Algorithms +1104.0333 Phenomenology +1104.2813 Rings and Algebras +1104.2847 Complex Variables +1105.0385 Lattice +1105.1519 Representation Theory +1105.2403 Superconductivity +1105.5041 Statistics Theory +1106.2365 Group Theory +1106.2675 +1107.0677 Statistics Theory +1107.1246 Mesoscale and Nanoscale Physics +1107.1868 Optics +1107.2292 Phenomenology +1107.2782 Computer Vision and Pattern Recognition +1107.2798 Statistics Theory +1107.2943 Solar and Stellar Astrophysics +1107.2954 Combinatorics +1107.2957 Computer Science and Game Theory +1107.2958 +1107.2970 Probability +1107.2974 +1107.2978 +1107.2981 +1107.2997 Artificial Intelligence +1107.2998 Algebraic Geometry +1107.2999 Superconductivity +1107.3000 Commutative Algebra +1107.3002 Geometric Topology +1107.3007 K-Theory and Homology +1107.3019 Data Structures and Algorithms +1107.3022 Data Structures and Algorithms +1107.3025 Statistical Mechanics +1107.3026 Experiment +1107.3029 Dynamical Systems +1107.3032 Phenomenology +1107.3033 Combinatorics +1107.3040 Soft Condensed Matter +1107.3046 Statistics Theory +1107.3056 Rings and Algebras +1107.3062 Disordered Systems and Neural Networks +1107.3065 Phenomenology +1107.3066 Solar and Stellar Astrophysics +1107.3067 Analysis of PDEs +1107.3069 Computational Physics +1107.3070 Functional Analysis +1107.3081 Fluid Dynamics +1107.3085 Adaptation and Self-Organizing Systems +1107.3088 Solar and Stellar Astrophysics +1107.3089 +1107.3091 Cosmology and Nongalactic Astrophysics +1107.3093 Numerical Analysis +1107.3094 Algebraic Geometry +1107.3095 General Finance +1107.3098 Numerical Analysis +1107.3099 Systems and Control +1107.3104 Applications +1107.3112 Quantitative Methods +1107.3121 Mesoscale and Nanoscale Physics +1107.3124 Superconductivity +1107.3135 +astro-ph/0006134 +astro-ph/0008146 +astro-ph/0101193 +astro-ph/0104292 +astro-ph/0106420 +astro-ph/0107507 +astro-ph/0110665 +astro-ph/0111084 +astro-ph/0111544 +astro-ph/0201430 +astro-ph/0205149 +astro-ph/0207668 +astro-ph/0209479 +astro-ph/0210147 +astro-ph/0210202 +astro-ph/0210354 +astro-ph/0210378 +astro-ph/0211027 +astro-ph/0212531 +astro-ph/0301232 +astro-ph/0302301 +astro-ph/0302401 +astro-ph/0302560 +astro-ph/0303384 +astro-ph/0306263 +astro-ph/0307208 +astro-ph/0311487 +astro-ph/0312641 +astro-ph/0312654 +astro-ph/0401087 +astro-ph/0401225 +astro-ph/0405364 +astro-ph/0406577 +astro-ph/0408244 +astro-ph/0408246 +astro-ph/0409579 +astro-ph/0409698 +astro-ph/0410243 +astro-ph/0411343 +astro-ph/0411546 +astro-ph/0502153 +astro-ph/0505244 +astro-ph/0506344 +astro-ph/0506401 +astro-ph/0506705 +astro-ph/0507413 +astro-ph/0509765 +astro-ph/0603313 +astro-ph/0701828 +astro-ph/9401027 +astro-ph/9506063 +astro-ph/9507062 +astro-ph/9611163 +astro-ph/9612239 +astro-ph/9807028 +astro-ph/9809368 +astro-ph/9903049 +astro-ph/9908272 +cond-mat/0405709 Statistical Mechanics +gr-qc/0301003 +gr-qc/0305080 +gr-qc/0402040 +gr-qc/0405045 +gr-qc/0407097 +gr-qc/0504113 +gr-qc/9211017 +gr-qc/9811068 +hep-lat/0412005 Lattice +hep-lat/9710068 Lattice +hep-ph/0006211 Phenomenology +hep-ph/0110341 Phenomenology +hep-ph/0201195 Phenomenology +hep-ph/0203248 Phenomenology +hep-ph/0205014 Phenomenology +hep-ph/0210170 Phenomenology +hep-ph/0211368 Phenomenology +hep-ph/0304190 Phenomenology +hep-ph/0307239 Phenomenology +hep-ph/0601135 Phenomenology +hep-ph/0602081 Phenomenology +hep-ph/9207214 Phenomenology +hep-ph/9402341 Phenomenology +hep-ph/9409315 Phenomenology +hep-ph/9602235 Phenomenology +hep-ph/9604341 Phenomenology +hep-ph/9707259 Phenomenology +hep-ph/9711486 Phenomenology +hep-ph/9909406 Phenomenology +hep-th/0002193 Theory +hep-th/0005029 Theory +hep-th/0006028 Theory +hep-th/0101134 Theory +hep-th/0103186 Theory +hep-th/0106041 Theory +hep-th/0106149 Theory +hep-th/0106184 Theory +hep-th/0207115 Theory +hep-th/0301132 Theory +hep-th/0302026 Theory +hep-th/0305056 Theory +hep-th/0310206 Theory +hep-th/0310265 Theory +hep-th/0311175 Theory +hep-th/0506137 Theory +hep-th/0508002 Theory +hep-th/0608098 Theory +hep-th/9203069 Theory +hep-th/9401059 Theory +hep-th/9402039 Theory +hep-th/9409014 Theory +hep-th/9412059 Theory +hep-th/9612077 Theory +hep-th/9802033 Theory +math/0610654 Statistics Theory +math/0701190 Commutative Algebra +nucl-ex/0108029 +nucl-ex/9908001 +nucl-th/0103001 +nucl-th/0207089 +nucl-th/0212026 +nucl-th/0301032 +nucl-th/0404040 +nucl-th/0407111 +nucl-th/9806025 +nucl-th/9811077 +nucl-th/9910033 +physics/0008183 Accelerator Physics +0707.3229 Operator Algebras +0711.4811 +0804.1021 Symbolic Computation +0808.0535 Logic +0810.0792 Optics +0812.2914 Other Condensed Matter +0903.1281 Algebraic Geometry +0904.1592 Algebraic Geometry +0905.0947 Optics +0905.2212 Algebraic Geometry +0907.1757 Quantum Gases +0908.0708 +0909.2933 Combinatorics +0910.0946 Combinatorics +0910.1797 +0910.1968 Operator Algebras +0912.2564 High Energy Astrophysical Phenomena +1002.2599 Algebraic Geometry +1003.2446 Cosmology and Nongalactic Astrophysics +1004.3299 Probability +1005.1723 Differential Geometry +1005.2973 Commutative Algebra +1006.0174 +1006.2544 Instrumentation and Detectors +1006.5037 Astrophysics of Galaxies +1007.2694 Computer Science and Game Theory +1008.3013 High Energy Astrophysical Phenomena +1008.3339 Phenomenology +1008.3733 Operator Algebras +1008.4046 Analysis of PDEs +1008.5188 Artificial Intelligence +1009.1944 +1010.2574 Mesoscale and Nanoscale Physics +1011.0906 Analysis of PDEs +1011.5835 Optimization and Control +1012.2585 Representation Theory +1012.3550 Cosmology and Nongalactic Astrophysics +1012.5690 Cosmology and Nongalactic Astrophysics +1012.5737 Theory +1101.5781 Theory +1102.0579 Algebraic Geometry +1102.2724 Differential Geometry +1103.4123 Strongly Correlated Electrons +1103.5356 Operator Algebras +1104.2241 Biological Physics +1104.2303 Formal Languages and Automata Theory +1104.4081 Data Structures and Algorithms +1105.0147 +1105.2142 Differential Geometry +1105.2464 Cosmology and Nongalactic Astrophysics +1105.2752 Algebraic Geometry +1105.2768 +1105.2973 Probability +1105.2993 +1105.3531 Information Theory +1106.0342 Formal Languages and Automata Theory +1106.1025 General Physics +1106.2151 +1106.2617 Instrumentation and Detectors +1106.3649 Disordered Systems and Neural Networks +1106.5330 +1106.5455 Statistical Mechanics +1106.6275 Atomic Physics +1107.0115 Mesoscale and Nanoscale Physics +1107.0995 Superconductivity +1107.2991 Pattern Formation and Solitons +1107.3428 +1107.5692 +1108.0052 Analysis of PDEs +1108.0215 Optics +1108.1205 Theory +1108.1816 +1108.2009 +1108.2648 +1108.3077 Theory +1108.4347 Earth and Planetary Astrophysics +1108.4409 Quantum Gases +1108.4421 +1108.5115 Instrumentation and Detectors +1109.0821 Statistical Mechanics +1109.1179 High Energy Astrophysical Phenomena +1109.2902 Cosmology and Nongalactic Astrophysics +1109.3023 Optics +1109.3701 Learning +1109.4507 Superconductivity +1109.5800 Mesoscale and Nanoscale Physics +1109.6176 Statistics Theory +1109.6859 Quantum Gases +1110.0717 Materials Science +1110.0816 Mesoscale and Nanoscale Physics +1110.1087 Theory +1110.2105 Numerical Analysis +1110.2508 Mesoscale and Nanoscale Physics +1110.2532 +1110.2855 Learning +1110.3479 Quantum Gases +1110.3540 Phenomenology +1110.3815 Phenomenology +1110.4528 History and Philosophy of Physics +1110.4534 Statistical Mechanics +1110.4732 Classical Physics +1110.5000 Information Theory +1110.6644 High Energy Astrophysical Phenomena +1111.0233 Other Computer Science +1111.0803 Metric Geometry +1111.4614 Materials Science +1111.5515 Solar and Stellar Astrophysics +1111.6200 Quantitative Methods +1111.6263 +1111.6481 +1111.6776 Functional Analysis +1111.6811 Medical Physics +1112.0392 Strongly Correlated Electrons +1112.0896 Information Theory +1112.1090 Phenomenology +1112.1694 Instrumentation and Methods for Astrophysics +1112.1706 Theory +1112.1771 Group Theory +1112.1926 Solar and Stellar Astrophysics +1112.2155 Databases +1112.2169 Statistical Mechanics +1112.2215 Strongly Correlated Electrons +1112.2219 Algebraic Geometry +1112.2223 +1112.2226 Data Analysis, Statistics and Probability +1112.2230 Cryptography and Security +1112.2234 Cryptography and Security +1112.2243 Superconductivity +1112.2244 Quantum Algebra +1112.2245 Cryptography and Security +1112.2248 Networking and Internet Architecture +1112.2251 Information Retrieval +1112.2254 Distributed, Parallel, and Cluster Computing +1112.2255 Solar and Stellar Astrophysics +1112.2256 Superconductivity +1112.2257 Cryptography and Security +1112.2258 Instrumentation and Detectors +1112.2261 Multimedia +1112.2265 Cryptography and Security +1112.2266 History and Philosophy of Physics +1112.2268 +1112.2271 Probability +1112.2277 Chemical Physics +1112.2282 Classical Analysis and ODEs +1112.2284 Materials Science +1112.2288 Machine Learning +1112.2289 Machine Learning +1112.2292 Networking and Internet Architecture +1112.2293 +1112.2294 Algebraic Geometry +1112.2295 Optimization and Control +1112.2302 Human-Computer Interaction +1112.2303 Combinatorics +1112.2306 Information Theory +1112.2311 +1112.2315 Machine Learning +1112.2319 Machine Learning +1112.2323 Combinatorics +1112.2326 Combinatorics +1112.2329 Functional Analysis +1112.2330 Probability +1112.2334 Algebraic Topology +1112.2335 Representation Theory +1112.2336 Databases +1112.2337 +1112.2339 History and Philosophy of Physics +1112.2343 +1112.2344 +1112.2346 +1112.2351 Spectral Theory +1112.2354 Mesoscale and Nanoscale Physics +1112.2356 Solar and Stellar Astrophysics +1112.2359 Superconductivity +1112.2361 Combinatorics +1112.2362 Materials Science +1112.2364 Superconductivity +1112.2367 Group Theory +1112.2369 Logic +1112.2372 Networking and Internet Architecture +1112.2374 Networking and Internet Architecture +1112.2375 High Energy Astrophysical Phenomena +1112.2376 Group Theory +1112.2379 Computational Finance +1112.2380 Metric Geometry +1112.2384 Earth and Planetary Astrophysics +1112.2386 Computer Vision and Pattern Recognition +1112.2388 Data Analysis, Statistics and Probability +1112.2393 High Energy Astrophysical Phenomena +1112.2401 Databases +1112.2404 Networking and Internet Architecture +1112.2407 Mesoscale and Nanoscale Physics +1112.2408 Networking and Internet Architecture +1112.2410 Networking and Internet Architecture +1112.2416 Materials Science +1112.2417 +1112.2423 Commutative Algebra +1112.2425 Commutative Algebra +1112.2427 Commutative Algebra +1112.2433 Methodology +1112.2434 Number Theory +1112.2435 Lattice +1112.2439 Optics +1112.2440 Category Theory +1112.2444 Distributed, Parallel, and Cluster Computing +1112.2447 Operator Algebras +1112.2449 Geometric Topology +1112.2453 Differential Geometry +1112.2454 Number Theory +1112.2460 Social and Information Networks +1112.2461 Number Theory +1112.2465 Analysis of PDEs +1112.2466 Combinatorics +1112.2467 Combinatorics +1112.2472 Analysis of PDEs +1112.2473 Mesoscale and Nanoscale Physics +1112.2475 Chaotic Dynamics +1112.2480 Differential Geometry +1112.2484 Geometric Topology +1112.2485 Phenomenology +1112.2486 Accelerator Physics +1112.2488 Mesoscale and Nanoscale Physics +1112.2491 Chaotic Dynamics +1112.2494 Algebraic Topology +1112.2496 Materials Science +1112.2498 Physics and Society +1112.2499 History and Philosophy of Physics +1112.2500 Materials Science +1112.2501 Cosmology and Nongalactic Astrophysics +1112.2502 Statistics Theory +1112.2504 Complex Variables +1112.2508 Astrophysics of Galaxies +1112.2511 +1112.2519 Computational Complexity +1112.2524 Optics +1112.2528 Numerical Analysis +1112.2531 Plasma Physics +1112.2532 Materials Science +1112.2535 Instrumentation and Detectors +1112.2540 Numerical Analysis +1112.2543 Probability +1112.2545 Functional Analysis +1112.2550 +1112.2553 Phenomenology +1112.2563 Genomics +1112.2564 +1112.2568 Classical Physics +1112.2570 Classical Physics +1112.2571 Phenomenology +1112.2572 Solar and Stellar Astrophysics +1112.2579 High Energy Astrophysical Phenomena +1112.2581 +1112.2584 Distributed, Parallel, and Cluster Computing +1112.2587 Theory +1112.2588 Dynamical Systems +1112.2592 Differential Geometry +1112.2597 Phenomenology +1112.2600 Instrumentation and Methods for Astrophysics +1112.2605 Cryptography and Security +1112.2606 Rings and Algebras +1112.2610 Databases +1112.2614 +1112.2616 Statistical Mechanics +1112.2618 Atomic Physics +1112.2619 Digital Libraries +1112.2625 Statistical Mechanics +1112.2627 Systems and Control +1112.2634 Number Theory +1112.2638 Computational Finance +1112.2639 High Energy Astrophysical Phenomena +1112.2642 Group Theory +1112.2649 Cryptography and Security +1112.2650 Probability +1112.2652 Logic +1112.2656 Theory +1112.2657 Cosmology and Nongalactic Astrophysics +1112.2661 Cryptography and Security +1112.2662 Populations and Evolution +1112.2663 Databases +1112.2665 +1112.2671 Instrumentation and Methods for Astrophysics +1112.2677 Mesoscale and Nanoscale Physics +1112.2679 Machine Learning +1112.2680 Methodology +1112.2683 Cosmology and Nongalactic Astrophysics +1112.2686 Astrophysics of Galaxies +astro-ph/0410327 +cond-mat/0204509 +cond-mat/9503133 +hep-ph/0607036 Phenomenology +physics/0604019 Optics +0805.3266 General Mathematics +0806.2265 Algebraic Geometry +0810.0484 Quantum Algebra +0810.1372 Algebraic Geometry +0903.2739 Analysis of PDEs +0904.4848 +0906.5019 +0907.2028 Group Theory +0907.2582 Theory +0910.1821 Soft Condensed Matter +1002.1991 Group Theory +1002.4163 Algebraic Geometry +1003.3508 Commutative Algebra +1004.2395 +1004.3721 Operator Algebras +1004.4613 Phenomenology +1004.4704 Applications +1004.5086 +1005.0541 Theory +1005.1276 Quantum Gases +1005.3310 +1005.3766 Probability +1005.3800 Probability +1005.3801 Probability +1005.3802 Probability +1005.3804 Analysis of PDEs +1005.3825 Probability +1006.1730 Quantitative Methods +1006.1792 Soft Condensed Matter +1006.4202 +1006.5034 Superconductivity +1006.5576 Classical Physics +1007.1259 Data Structures and Algorithms +1007.1593 Data Structures and Algorithms +1007.4133 Soft Condensed Matter +1007.4299 Analysis of PDEs +1007.4843 Strongly Correlated Electrons +1007.5446 Soft Condensed Matter +1008.1803 +1008.1948 +1008.3259 Strongly Correlated Electrons +1008.3604 Rings and Algebras +1008.5191 Mesoscale and Nanoscale Physics +1009.3581 +1009.5555 Geophysics +1010.3403 Probability +1010.3658 Instrumentation and Methods for Astrophysics +1011.1135 Computer Science and Game Theory +1011.1966 Analysis of PDEs +1011.2882 Statistical Finance +1011.5633 +1012.2152 Cryptography and Security +1012.4399 Statistical Mechanics +1012.4557 Statistical Mechanics +1101.0531 Mesoscale and Nanoscale Physics +1101.5666 Materials Science +1102.0945 Phenomenology +1102.2642 Materials Science +1102.4490 Materials Science +1102.4537 +1103.1515 +1103.4168 Databases +1103.4576 Dynamical Systems +1103.5070 Theory +1103.6074 Quantum Gases +1103.6095 Combinatorics +1104.0514 High Energy Astrophysical Phenomena +1104.1524 Data Analysis, Statistics and Probability +1104.2167 Rings and Algebras +1104.2533 Functional Analysis +1104.4554 Instrumentation and Methods for Astrophysics +1104.5374 General Physics +1104.5675 Cosmology and Nongalactic Astrophysics +1105.0022 Information Theory +1105.0087 Algebraic Geometry +1105.0102 Phenomenology +1105.0152 +1105.0204 Statistics Theory +1105.0205 Statistics Theory +1105.0283 Networking and Internet Architecture +1105.0348 Instrumentation and Detectors +1105.0384 Analysis of PDEs +1105.0417 Networking and Internet Architecture +1105.0431 Theory +1105.0433 Computational Complexity +1105.0437 Numerical Analysis +1105.0438 Distributed, Parallel, and Cluster Computing +1105.0442 Information Theory +1105.0443 Representation Theory +1105.0448 Populations and Evolution +1105.0451 Atomic Physics +1105.0454 Group Theory +1105.0455 Numerical Analysis +1105.0458 Materials Science +1105.0461 Strongly Correlated Electrons +1105.0467 Functional Analysis +1105.0470 Fluid Dynamics +1105.0471 Learning +1105.0473 Information Theory +1105.0474 Combinatorics +1105.0476 Information Theory +1105.0479 Distributed, Parallel, and Cluster Computing +1105.0489 Numerical Analysis +1105.0491 Human-Computer Interaction +1105.0497 Dynamical Systems +1105.0503 Differential Geometry +1105.0505 General Physics +1105.0507 Geometric Topology +1105.0518 +1105.0519 Applications +1105.0522 Applications +1105.0524 Applications +1105.0527 Cosmology and Nongalactic Astrophysics +1105.0529 Analysis of PDEs +1105.0535 Theory +1105.0536 Materials Science +1105.0539 Algebraic Topology +1105.0543 Applications +1105.0548 Logic in Computer Science +1105.0551 Differential Geometry +1105.0552 Optics +1105.0557 General Topology +1105.0558 Computer Science and Game Theory +1105.0564 +1105.0569 Information Theory +1105.0570 Statistical Mechanics +1105.0574 Number Theory +1105.0597 +1105.0600 Commutative Algebra +1105.0603 Solar and Stellar Astrophysics +1105.0605 Dynamical Systems +1105.0609 High Energy Astrophysical Phenomena +1105.0611 Optimization and Control +1105.0613 Algebraic Topology +1105.0615 Solar and Stellar Astrophysics +1105.0616 Materials Science +1105.0619 Chemical Physics +1105.0621 Classical Analysis and ODEs +1105.0634 Instrumentation and Methods for Astrophysics +1105.0635 Probability +1105.0638 Computational Complexity +1105.0642 Strongly Correlated Electrons +1105.0643 Differential Geometry +1105.0645 Instrumentation and Detectors +1105.0653 Logic in Computer Science +1105.0660 Complex Variables +1105.0661 Distributed, Parallel, and Cluster Computing +1105.0666 Solar and Stellar Astrophysics +math/0309406 Algebraic Geometry +0704.3238 Logic in Computer Science +0805.4059 Information Theory +0806.0780 Plasma Physics +0806.4687 Algebraic Topology +0806.4698 Plasma Physics +0810.0726 Mesoscale and Nanoscale Physics +0810.2203 Number Theory +0810.4316 Physics and Society +0812.4322 Discrete Mathematics +0903.4569 Numerical Analysis +0905.1096 Superconductivity +0905.2423 Combinatorics +0906.2889 Differential Geometry +0906.3132 Numerical Analysis +0906.4143 +0909.1399 Differential Geometry +0909.5465 +0910.1692 Lattice +0910.5173 Plasma Physics +1003.0948 Atomic Physics +1004.0018 Differential Geometry +1004.3632 Differential Geometry +1006.2713 Dynamical Systems +1007.0725 +1007.4671 Strongly Correlated Electrons +1007.5032 Data Structures and Algorithms +1008.2241 Materials Science +1008.2328 +1008.2700 Data Analysis, Statistics and Probability +1009.3008 Soft Condensed Matter +1009.3387 Information Theory +1009.4085 Classical Analysis and ODEs +1009.4860 Biological Physics +1010.0071 Mesoscale and Nanoscale Physics +1010.1207 Biological Physics +1010.2195 Materials Science +1010.3634 Theory +1011.0708 +1011.1008 Soft Condensed Matter +1011.1628 Dynamical Systems +1011.6303 Soft Condensed Matter +1012.0714 Mesoscale and Nanoscale Physics +1012.1810 Experiment +1012.1917 Materials Science +1012.3167 Phenomenology +1012.4473 Phenomenology +1012.4511 Mesoscale and Nanoscale Physics +1101.1653 Number Theory +1101.4455 Theory +1102.0317 Operator Algebras +1102.2133 Geometric Topology +1102.2880 Computational Complexity +1102.2971 Number Theory +1102.3341 Multiagent Systems +1102.4497 +1102.4805 Mesoscale and Nanoscale Physics +1102.5696 Materials Science +1103.0928 +1103.2961 Superconductivity +1103.4313 Mesoscale and Nanoscale Physics +1104.0709 Mesoscale and Nanoscale Physics +1104.2528 High Energy Astrophysical Phenomena +1104.2632 Strongly Correlated Electrons +1104.2664 Differential Geometry +1104.3075 Physics and Society +1104.4601 Digital Libraries +1104.5131 Pricing of Securities +1104.5235 Number Theory +1104.5255 Solar and Stellar Astrophysics +1104.5258 Materials Science +1104.5261 Combinatorics +1104.5266 Materials Science +1104.5270 General Physics +1104.5274 +1104.5278 Biomolecules +1104.5280 Machine Learning +1104.5281 Statistics Theory +1104.5284 Computer Vision and Pattern Recognition +1104.5287 High Energy Astrophysical Phenomena +1104.5291 Plasma Physics +1104.5293 Numerical Analysis +1104.5299 +1104.5300 Commutative Algebra +1104.5302 Optics +1104.5304 Computer Vision and Pattern Recognition +1104.5306 Statistical Mechanics +1104.5310 Probability +1104.5311 Logic +1104.5315 +1104.5317 Dynamical Systems +1104.5319 General Physics +1104.5320 +1104.5322 High Energy Astrophysical Phenomena +1104.5327 Information Theory +1104.5332 Differential Geometry +1104.5335 Logic in Computer Science +1104.5337 Differential Geometry +1104.5340 Superconductivity +1104.5342 Differential Geometry +1104.5343 Differential Geometry +1104.5347 Classical Analysis and ODEs +1104.5349 Differential Geometry +1104.5358 Functional Analysis +1104.5359 High Energy Astrophysical Phenomena +1104.5360 Probability +1104.5368 Distributed, Parallel, and Cluster Computing +1104.5370 Complex Variables +1104.5377 Human-Computer Interaction +1104.5379 General Physics +1104.5386 Soft Condensed Matter +1104.5387 Software Engineering +1104.5388 Functional Analysis +1104.5389 Phenomenology +1104.5390 Probability +1104.5391 Learning +1104.5393 Portfolio Management +1104.5401 Combinatorics +1104.5402 Theory +1104.5404 Analysis of PDEs +1104.5408 Analysis of PDEs +1104.5409 Probability +1104.5416 Probability +1104.5419 Algebraic Geometry +1104.5420 Number Theory +1104.5428 Dynamical Systems +1104.5429 Methodology +1104.5430 Number Theory +1104.5434 +1104.5439 Spectral Theory +1104.5449 Cell Behavior +1104.5466 Learning +1104.5470 Cosmology and Nongalactic Astrophysics +1104.5472 Algebraic Geometry +1104.5473 Solar and Stellar Astrophysics +1104.5478 Atomic Physics +math/0506528 Geometric Topology +math/0602573 Combinatorics +math/0701940 Combinatorics +nlin/0206034 Exactly Solvable and Integrable Systems +quant-ph/0103030 +quant-ph/0212023 +quant-ph/0308043 +1111.2290 General Physics +0804.0041 Information Theory +0807.0619 Number Theory +0808.0236 General Physics +0810.2394 +0811.4500 Dynamical Systems +0901.2269 Optimization and Control +0904.2144 Computation +0906.2582 Information Theory +0908.1495 General Physics +0909.3452 Superconductivity +0912.2916 Combinatorics +1001.1157 Phenomenology +1003.0576 Phenomenology +1003.1350 Differential Geometry +1003.3254 High Energy Astrophysical Phenomena +1003.4488 Quantum Gases +1003.4533 Phenomenology +1005.5306 Quantum Gases +1006.2643 Data Analysis, Statistics and Probability +1006.3958 Superconductivity +1006.4576 Statistical Mechanics +1006.5300 Probability +1007.1103 Probability +1007.1605 +1007.2622 Theory +1007.2801 Soft Condensed Matter +1007.3118 Differential Geometry +1007.3791 +1007.4211 Mesoscale and Nanoscale Physics +1007.5311 Cosmology and Nongalactic Astrophysics +1008.1628 Networking and Internet Architecture +1008.2554 +1008.2989 Probability +1008.3528 Mesoscale and Nanoscale Physics +1008.4452 Solar and Stellar Astrophysics +1009.0821 Algebraic Geometry +1009.1156 Statistical Mechanics +1009.5942 Classical Physics +1010.0106 +1010.1763 Learning +1010.2538 Populations and Evolution +1010.4462 Theory +1010.4842 Quantum Gases +1010.5080 +1011.0376 Commutative Algebra +1011.0648 Quantum Algebra +1011.0995 Mesoscale and Nanoscale Physics +1011.1680 Soft Condensed Matter +1011.4764 Materials Science +1012.1395 High Energy Astrophysical Phenomena +1012.3601 +1012.4916 Probability +1012.5399 Metric Geometry +1012.5784 Group Theory +1101.0602 Phenomenology +1102.2560 Fluid Dynamics +1102.2596 Chemical Physics +1102.5002 General Physics +1102.5203 +1103.0258 +1103.0832 Analysis of PDEs +1103.0864 Analysis of PDEs +1103.1000 +1103.1030 Functional Analysis +1103.1273 Superconductivity +1103.1288 Materials Science +1103.1360 Hardware Architecture +1103.1386 +1103.1390 Solar and Stellar Astrophysics +1103.1394 Instrumentation and Methods for Astrophysics +1103.1399 +1103.1403 Information Theory +1103.1407 General Topology +1103.1408 General Mathematics +1103.1409 Functional Analysis +1103.1418 Analysis of PDEs +1103.1420 Cosmology and Nongalactic Astrophysics +1103.1421 Analysis of PDEs +1103.1431 Computational Geometry +1103.1445 Combinatorics +1103.1446 +1103.1447 Chaotic Dynamics +1103.1451 +1103.1455 +1103.1457 Statistics Theory +1103.1462 Complex Variables +1103.1472 Statistics Theory +1103.1473 +1103.1475 Computer Vision and Pattern Recognition +1103.1479 Probability +1103.1480 Statistics Theory +1103.1489 Statistics Theory +1103.1492 Statistics Theory +1103.1493 Number Theory +1103.1497 Software Engineering +1103.1505 Plasma Physics +1103.1506 +1103.1507 +1103.1511 Optimization and Control +1103.1513 +1103.1516 Robotics +1103.1518 Networking and Internet Architecture +1103.1521 Combinatorics +1103.1523 Lattice +1103.1525 Statistics Theory +1103.1531 Cosmology and Nongalactic Astrophysics +1103.1544 Networking and Internet Architecture +1103.1547 Pattern Formation and Solitons +1103.1552 Cryptography and Security +1103.1555 Algebraic Topology +1103.1563 Analysis of PDEs +1103.1564 Statistical Mechanics +1103.1573 Accelerator Physics +1103.1574 +1103.1575 Accelerator Physics +1103.1576 Differential Geometry +1103.1583 Accelerator Physics +1103.1586 +1103.1592 Statistics Theory +1103.1597 +1103.1598 Information Theory +1103.1601 Geometric Topology +1103.1602 +1103.1612 Populations and Evolution +1103.1616 Strongly Correlated Electrons +1103.1621 Plasma Physics +cond-mat/0109472 Statistical Mechanics +cond-mat/0611160 Statistical Mechanics +cs/0211001 Data Structures and Algorithms +hep-ph/0506139 Phenomenology +math/0611551 Combinatorics +0705.2354 Statistical Mechanics +0708.4233 Phenomenology +0904.1628 +0906.0325 Complex Variables +0908.4177 Metric Geometry +0909.5408 Dynamical Systems +0912.0449 Computational Physics +1004.0196 +1004.1787 Operator Algebras +1004.3031 Phenomenology +1004.4228 +1004.4483 Theory +1008.1179 Differential Geometry +1008.3633 +1008.4711 Number Theory +1009.4686 +1009.5434 Group Theory +1009.5467 Mesoscale and Nanoscale Physics +1010.6056 Methodology +1011.2276 Quantum Gases +1012.5310 Phenomenology +1012.5568 Optimization and Control +1012.5920 Combinatorics +1101.2276 Materials Science +1101.3182 Data Structures and Algorithms +1101.3918 Classical Analysis and ODEs +1101.5636 Mesoscale and Nanoscale Physics +1102.0057 +1102.2872 Statistics Theory +1102.3934 Quantum Gases +1102.5592 Materials Science +1103.0222 Optics +1103.0278 Cosmology and Nongalactic Astrophysics +1103.1361 Materials Science +1103.2602 Materials Science +1103.3415 +1103.4871 Solar and Stellar Astrophysics +1103.4968 Combinatorics +1104.3470 Probability +1104.3885 +1104.5400 Data Structures and Algorithms +1104.5557 Data Structures and Algorithms +1105.0889 Statistics Theory +1105.1728 Optimization and Control +1105.2286 Rings and Algebras +1105.3098 Soft Condensed Matter +1105.3935 +1106.0960 Quantum Gases +1106.1064 Theory +1106.1145 Phenomenology +1106.1271 Number Theory +1106.1970 Probability +1106.4126 Complex Variables +1106.4193 Mesoscale and Nanoscale Physics +1106.5953 +1107.0937 +1107.1431 Statistical Mechanics +1107.2020 +1107.2360 Quantum Gases +1107.3519 History and Overview +1107.3722 High Energy Astrophysical Phenomena +1107.4305 +1107.4713 Rings and Algebras +1107.5440 Statistical Mechanics +1108.1101 Superconductivity +1108.1383 +1108.1567 Atomic Physics +1108.2705 Superconductivity +1108.2834 Phenomenology +1108.3743 Materials Science +1108.3905 Differential Geometry +1108.4764 Phenomenology +1108.4828 Digital Libraries +1108.5588 Cosmology and Nongalactic Astrophysics +1108.6235 Materials Science +1109.1309 Instrumentation and Methods for Astrophysics +1109.3394 Mesoscale and Nanoscale Physics +1109.4307 Strongly Correlated Electrons +1109.5529 Statistical Mechanics +1109.5825 Fluid Dynamics +1110.0423 Commutative Algebra +1110.1134 Statistical Mechanics +1110.3676 Experiment +1110.4035 +1110.4646 Solar and Stellar Astrophysics +1110.4886 Complex Variables +1110.5787 Statistical Mechanics +1110.5865 Molecular Networks +1110.6772 Popular Physics +1111.0532 Plasma Physics +1111.1136 Learning +1111.1574 Phenomenology +1111.2740 +1111.2904 Social and Information Networks +1111.2947 Combinatorics +1111.2948 Learning +1111.3120 Differential Geometry +1111.3336 Materials Science +1111.3360 Solar and Stellar Astrophysics +1111.3364 Instrumentation and Methods for Astrophysics +1111.3372 Cosmology and Nongalactic Astrophysics +1111.3376 Information Theory +1111.3377 High Energy Astrophysical Phenomena +1111.3378 High Energy Astrophysical Phenomena +1111.3388 Complex Variables +1111.3393 Information Theory +1111.3395 Information Theory +1111.3396 Information Theory +1111.3399 Combinatorics +1111.3402 Theory +1111.3403 Combinatorics +1111.3404 Machine Learning +1111.3412 Information Theory +1111.3418 Functional Analysis +1111.3429 +1111.3431 Superconductivity +1111.3438 +1111.3447 Classical Analysis and ODEs +1111.3453 Classical Analysis and ODEs +1111.3455 Phenomenology +1111.3462 Computation and Language +1111.3465 Probability +1111.3467 Algebraic Geometry +1111.3469 Group Theory +1111.3475 Algebraic Geometry +1111.3477 Information Theory +1111.3479 Accelerator Physics +1111.3481 Materials Science +1111.3482 Dynamical Systems +1111.3483 Optics +1111.3484 High Energy Astrophysical Phenomena +1111.3489 Category Theory +1111.3502 Lattice +1111.3504 History and Overview +1111.3507 Number Theory +1111.3508 Representation Theory +1111.3515 Geometric Topology +1111.3518 Biomolecules +1111.3524 Lattice +1111.3527 +1111.3530 Social and Information Networks +1111.3531 +1111.3532 Mesoscale and Nanoscale Physics +1111.3533 Phenomenology +1111.3538 Algebraic Geometry +1111.3540 Analysis of PDEs +1111.3543 Soft Condensed Matter +1111.3571 Instrumentation and Methods for Astrophysics +1111.3577 Phenomenology +1111.3578 Experiment +1111.3581 Adaptation and Self-Organizing Systems +1111.3585 K-Theory and Homology +1111.3587 Probability +1111.3592 High Energy Astrophysical Phenomena +1111.3596 Lattice +1111.3604 Functional Analysis +1111.3610 Neurons and Cognition +1111.3614 Cosmology and Nongalactic Astrophysics +1111.3617 +1111.3629 Cosmology and Nongalactic Astrophysics +1111.3635 Geometric Topology +math/0503397 Metric Geometry +math/0509512 Metric Geometry +math/0511171 Metric Geometry +math/0603372 Metric Geometry +math/0610945 Algebraic Geometry +0712.0922 Representation Theory +0801.1596 Mesoscale and Nanoscale Physics +0801.1613 Disordered Systems and Neural Networks +0802.2051 Optics +0802.2191 Differential Geometry +0804.3289 Representation Theory +0804.4576 Functional Analysis +0804.4811 Algebraic Geometry +0807.4000 Theory +0807.4991 Differential Geometry +0808.4107 Optics +0809.1949 Cryptography and Security +0810.0477 Theory +0810.3601 Statistical Mechanics +0812.2844 Computational Physics +0812.4738 Theory +0902.0038 Rings and Algebras +0902.1765 Algebraic Geometry +0903.2439 Differential Geometry +0906.3374 Group Theory +0907.4564 Strongly Correlated Electrons +0908.1378 Mesoscale and Nanoscale Physics +0909.2190 Logic +0909.5311 Combinatorics +0910.2045 +0910.5587 +0911.1164 Probability +0912.2219 Algebraic Topology +0912.3335 +0912.3909 Algebraic Geometry +1003.2040 Differential Geometry +1003.3136 Materials Science +1003.3952 Exactly Solvable and Integrable Systems +1003.4972 Information Theory +1004.0514 Neural and Evolutionary Computing +1004.0866 Soft Condensed Matter +1004.1603 +1004.2274 Analysis of PDEs +1004.4852 Superconductivity +1005.2581 Performance +1005.2966 Superconductivity +1005.3218 Analysis of PDEs +1005.3889 Information Theory +1005.4707 Strongly Correlated Electrons +1005.5154 Strongly Correlated Electrons +1005.5602 Combinatorics +1006.1483 Superconductivity +1006.1788 Physics and Society +1006.2628 Combinatorics +1007.0744 Number Theory +1007.3957 +1007.5281 +1007.5327 Probability +1008.1273 Molecular Networks +1008.1772 Materials Science +1008.3766 Group Theory +1008.4050 Materials Science +1008.4057 Materials Science +1008.4649 Classical Physics +1008.5156 Optics +1009.2118 Information Theory +1009.2330 +1009.5511 Probability +1009.6191 Algebraic Geometry +1010.1452 Materials Science +1010.1927 Materials Science +1010.4759 Combinatorics +1010.5907 Instrumentation and Methods for Astrophysics +1011.2987 Group Theory +1011.4569 Operator Algebras +1011.4651 Metric Geometry +1011.4808 Superconductivity +1011.5220 Number Theory +1012.0304 Atomic Physics +1012.0396 Solar and Stellar Astrophysics +1012.1451 Combinatorics +1012.2123 Differential Geometry +1012.2487 Phenomenology +1012.4544 +1012.4915 Analysis of PDEs +1012.5774 Information Theory +1101.0362 Neural and Evolutionary Computing +1101.2455 Theory +1101.3159 Superconductivity +1101.3170 Superconductivity +1101.3702 Representation Theory +1101.5591 Disordered Systems and Neural Networks +1102.0692 +1102.1661 Disordered Systems and Neural Networks +1102.5301 +1103.1044 Disordered Systems and Neural Networks +1103.1221 Mesoscale and Nanoscale Physics +1103.1372 Quantum Gases +1103.3841 Complex Variables +1103.4648 Cosmology and Nongalactic Astrophysics +1103.5148 Group Theory +1104.1135 Data Structures and Algorithms +1104.2588 Theory +1104.2932 Instrumentation and Methods for Astrophysics +1104.3119 Data Structures and Algorithms +1104.3880 Strongly Correlated Electrons +1104.4415 Combinatorics +1104.4508 Strongly Correlated Electrons +1104.4534 Analysis of PDEs +1104.4642 Phenomenology +1104.5465 Solar and Stellar Astrophysics +1105.0170 Complex Variables +1105.0937 +1105.1689 Cosmology and Nongalactic Astrophysics +1105.1985 Programming Languages +1105.2763 Complex Variables +1105.2831 Differential Geometry +1105.2832 General Physics +1105.2835 +1105.2839 Solar and Stellar Astrophysics +1105.2841 Geophysics +1105.2846 Functional Analysis +1105.2847 Number Theory +1105.2849 Formal Languages and Automata Theory +1105.2850 Analysis of PDEs +1105.2855 Materials Science +1105.2858 Functional Analysis +1105.2861 Superconductivity +1105.2863 Classical Analysis and ODEs +1105.2865 Information Theory +1105.2868 Learning +1105.2873 Accelerator Physics +1105.2874 Discrete Mathematics +1105.2877 Complex Variables +1105.2880 General Topology +1105.2881 Complex Variables +1105.2888 Functional Analysis +1105.2890 Human-Computer Interaction +1105.2891 Statistics Theory +1105.2897 Number Theory +1105.2900 General Finance +1105.2902 Artificial Intelligence +1105.2904 Computational Physics +1105.2909 Combinatorics +1105.2911 Statistics Theory +1105.2914 Functional Analysis +1105.2915 Chemical Physics +1105.2917 Methodology +1105.2918 Classical Physics +1105.2920 Differential Geometry +1105.2921 Logic +1105.2925 Digital Libraries +1105.2927 Quantum Algebra +1105.2939 Optics +1105.2944 Logic +1105.2950 Algebraic Geometry +1105.2951 Adaptation and Self-Organizing Systems +1105.2953 Analysis of PDEs +1105.2956 Portfolio Management +1105.2957 Representation Theory +1105.2958 Probability +1105.2960 Hardware Architecture +1105.2966 Metric Geometry +1105.2968 Risk Management +1105.2972 Metric Geometry +1105.2978 Networking and Internet Architecture +1105.2979 Experiment +1105.2980 Geometric Topology +1105.2981 Algebraic Geometry +1105.2982 Computation +1105.2987 Soft Condensed Matter +1105.2991 +1105.2994 Representation Theory +1105.3002 +1105.3006 Information Theory +1105.3008 Strongly Correlated Electrons +1105.3011 Mesoscale and Nanoscale Physics +1105.3014 Statistical Mechanics +1105.3016 Statistical Mechanics +1105.3018 Statistics Theory +1105.3022 Numerical Analysis +1105.3023 Networking and Internet Architecture +1105.3029 +1105.3032 Dynamical Systems +1105.3035 Numerical Analysis +1105.3039 Statistics Theory +1105.3040 Optimization and Control +1105.3043 Combinatorics +1105.3044 Combinatorics +1105.3045 Optics +1105.3046 Numerical Analysis +1105.3048 Functional Analysis +1105.3052 Statistical Mechanics +1105.3053 Optimization and Control +1105.3056 Probability +1105.3058 Analysis of PDEs +1105.3063 +1105.3066 Solar and Stellar Astrophysics +1105.3068 Information Theory +1105.3078 Computational Geometry +1105.3079 Materials Science +1105.3082 Probability +1105.3091 Commutative Algebra +1105.3094 Atomic Physics +1105.3102 Algebraic Geometry +1105.3106 Neurons and Cognition +1105.3112 +1105.3114 Algebraic Geometry +1105.3116 Formal Languages and Automata Theory +1105.3117 +1105.3118 Atmospheric and Oceanic Physics +1105.3126 Classical Analysis and ODEs +1105.3128 Analysis of PDEs +1105.3132 +1105.3133 Phenomenology +1105.3136 Geophysics +1105.3143 General Physics +1105.3151 Astrophysics of Galaxies +1105.3166 Data Analysis, Statistics and Probability +1105.3169 Methodology +1105.3174 Analysis of PDEs +1105.3178 Phenomenology +1105.3183 General Physics +1105.3187 Complex Variables +cond-mat/0309463 Mesoscale and Nanoscale Physics +math/0412552 Algebraic Topology +nlin/0611009 Exactly Solvable and Integrable Systems +0712.1069 Geometric Topology +0803.3628 Strongly Correlated Electrons +0901.1587 Number Theory +0904.1980 Statistics Theory +0905.0567 Discrete Mathematics +0905.3407 Information Theory +0906.2717 Probability +0909.4816 Probability +0911.1682 Probability +0911.2169 Statistical Mechanics +1002.0238 Rings and Algebras +1002.2737 +1003.0126 Complex Variables +1003.3018 Disordered Systems and Neural Networks +1003.3637 Atomic Physics +1003.5408 Geometric Topology +1004.0034 Geometric Topology +1004.4743 Dynamical Systems +1007.4614 Algebraic Geometry +1008.0185 Solar and Stellar Astrophysics +1008.0918 +1008.4937 Number Theory +1009.3278 Superconductivity +1011.1685 Probability +1011.1777 Adaptation and Self-Organizing Systems +1012.1077 +1012.5045 General Physics +1101.0486 Dynamical Systems +1101.0697 K-Theory and Homology +1101.2633 Group Theory +1101.3404 Probability +1101.4233 Strongly Correlated Electrons +1101.4421 Fluid Dynamics +1101.4506 K-Theory and Homology +1101.4657 Statistics Theory +1102.4598 +1102.5689 Numerical Analysis +1103.0303 Experiment +1103.2861 Theory +1103.4783 +1104.0472 Number Theory +1104.1514 Strongly Correlated Electrons +1104.4277 Atomic Physics +1105.0764 +1105.2262 +1105.3221 High Energy Astrophysical Phenomena +1105.3394 +1105.5780 Materials Science +1105.6278 Mesoscale and Nanoscale Physics +1106.0204 Mesoscale and Nanoscale Physics +1106.1602 Theory +1106.2425 +1106.2806 Cosmology and Nongalactic Astrophysics +1106.3062 Cosmology and Nongalactic Astrophysics +1106.4506 Superconductivity +1106.5514 Mesoscale and Nanoscale Physics +1107.0143 Strongly Correlated Electrons +1107.0618 Fluid Dynamics +1107.1267 +1107.1464 +1107.1557 Mesoscale and Nanoscale Physics +1107.1909 Materials Science +1107.3203 Phenomenology +1107.3676 Strongly Correlated Electrons +1107.4292 Mesoscale and Nanoscale Physics +1107.4489 Optics +1107.5316 Theory +1107.5889 Phenomenology +1107.5954 Superconductivity +1108.0331 Phenomenology +1108.0717 +1108.2842 Cosmology and Nongalactic Astrophysics +1108.3877 Combinatorics +1108.4282 +1109.0587 Strongly Correlated Electrons +1109.1163 Soft Condensed Matter +1109.1208 Other Condensed Matter +1109.2340 Number Theory +1109.3658 Superconductivity +1109.4270 Instrumentation and Methods for Astrophysics +1109.5028 Experiment +1109.5299 Materials Science +1109.5721 Phenomenology +1109.5914 Statistical Mechanics +1110.1009 Strongly Correlated Electrons +1110.1196 Phenomenology +1110.1416 Information Theory +1110.2746 General Physics +1110.2910 Phenomenology +1110.3376 Hardware Architecture +1110.3798 Phenomenology +1110.3898 Information Theory +1110.4010 Differential Geometry +1110.4074 Phenomenology +1110.4103 Astrophysics of Galaxies +1110.4111 Earth and Planetary Astrophysics +1110.4115 Cosmology and Nongalactic Astrophysics +1110.4119 General Finance +1110.4126 Information Theory +1110.4127 Fluid Dynamics +1110.4131 Analysis of PDEs +1110.4133 Numerical Analysis +1110.4136 Formal Languages and Automata Theory +1110.4140 Optics +1110.4145 Combinatorics +1110.4147 Superconductivity +1110.4149 Operator Algebras +1110.4150 Data Structures and Algorithms +1110.4153 Logic +1110.4154 Logic +1110.4155 Representation Theory +1110.4156 Distributed, Parallel, and Cluster Computing +1110.4157 Programming Languages +1110.4159 Programming Languages +1110.4160 Programming Languages +1110.4161 Logic in Computer Science +1110.4162 Rings and Algebras +1110.4163 Programming Languages +1110.4164 Distributed, Parallel, and Cluster Computing +1110.4165 Programming Languages +1110.4175 Networking and Internet Architecture +1110.4176 +1110.4177 Representation Theory +1110.4179 Chemical Physics +1110.4180 Astrophysics of Galaxies +1110.4181 Learning +1110.4200 +1110.4205 Combinatorics +1110.4207 +1110.4209 High Energy Astrophysical Phenomena +1110.4211 Analysis of PDEs +1110.4214 High Energy Astrophysical Phenomena +1110.4221 +1110.4234 Materials Science +1110.4237 Phenomenology +1110.4238 Soft Condensed Matter +1110.4239 Lattice +1110.4242 Mesoscale and Nanoscale Physics +1110.4243 Classical Analysis and ODEs +1110.4245 Performance +1110.4247 Superconductivity +1110.4248 Computation and Language +1110.4251 +1110.4261 Representation Theory +1110.4263 General Physics +1110.4273 Complex Variables +1110.4274 Logic +1110.4278 Networking and Internet Architecture +1110.4282 Metric Geometry +1110.4283 Combinatorics +1110.4285 Social and Information Networks +1110.4291 Analysis of PDEs +1110.4296 Computers and Society +1110.4297 Differential Geometry +1110.4300 Machine Learning +1110.4303 Strongly Correlated Electrons +1110.4307 Numerical Analysis +1110.4310 Combinatorics +1110.4312 General Finance +1110.4316 Metric Geometry +1110.4321 Chemical Physics +1110.4324 Metric Geometry +1110.4325 Experiment +1110.4326 Instrumentation and Detectors +1110.4327 Instrumentation and Detectors +1110.4329 Metric Geometry +1110.4334 Metric Geometry +1110.4339 Analysis of PDEs +1110.4341 Representation Theory +1110.4342 Differential Geometry +1110.4345 +1110.4350 Data Structures and Algorithms +1110.4356 Mesoscale and Nanoscale Physics +1110.4361 Mesoscale and Nanoscale Physics +1110.4362 Strongly Correlated Electrons +1110.4365 Number Theory +hep-th/0504037 Theory +math/0411603 Probability +math/0506200 Metric Geometry +math/0507528 Metric Geometry +math/0611451 Metric Geometry +math/0611724 Functional Analysis +math/0702239 Metric Geometry +math/9904077 History and Overview +quant-ph/0312164 +quant-ph/9910059 +0704.3253 +0705.4362 Classical Analysis and ODEs +0708.3111 Commutative Algebra +0712.0657 +0801.1478 Commutative Algebra +0802.3375 Commutative Algebra +0803.1208 Commutative Algebra +0804.0146 Superconductivity +0804.2135 +0804.3230 Functional Analysis +0804.3231 Functional Analysis +0804.4310 General Mathematics +0805.0179 Phenomenology +0805.2662 Analysis of PDEs +0805.3838 Commutative Algebra +0806.4160 Differential Geometry +0807.0613 Materials Science +0807.0981 Phenomenology +0808.3916 +0811.0517 Algebraic Geometry +0901.1200 Spectral Theory +0901.4914 Pricing of Securities +0902.1354 Commutative Algebra +0902.2032 General Physics +0902.2259 Category Theory +0903.4778 Classical Analysis and ODEs +0905.4319 Geometric Topology +0907.1373 Functional Analysis +0907.3391 +0907.3929 Mesoscale and Nanoscale Physics +0908.0101 +0908.3804 Mesoscale and Nanoscale Physics +0909.0855 General Mathematics +0909.1537 Classical Analysis and ODEs +0909.3740 +0909.5626 Classical Analysis and ODEs +0910.0042 Combinatorics +0910.0099 Phenomenology +0910.0287 +0910.4928 Algebraic Geometry +0912.1742 Analysis of PDEs +0912.4444 Classical Analysis and ODEs +1001.0448 Algebraic Geometry +1001.2219 Classical Analysis and ODEs +1001.5077 Combinatorics +1002.0660 Algebraic Topology +1002.1083 Cosmology and Nongalactic Astrophysics +1002.4703 Cosmology and Nongalactic Astrophysics +1002.5028 Combinatorics +1003.0251 Numerical Analysis +1003.4893 Analysis of PDEs +1004.0266 Theory +1004.0382 Numerical Analysis +1004.2013 Probability +1004.4049 Differential Geometry +1004.4074 Phenomenology +1004.4398 Information Theory +1005.0579 Phenomenology +1005.1321 Phenomenology +1005.2374 +1005.2809 Phenomenology +1005.3044 Theory +1005.5543 Databases +1006.0570 Phenomenology +1006.2051 +1006.4762 Commutative Algebra +1006.5338 Probability +1007.0970 Cosmology and Nongalactic Astrophysics +1007.1241 Mesoscale and Nanoscale Physics +1007.1891 Phenomenology +1007.1921 +1007.3359 High Energy Astrophysical Phenomena +1007.4601 +1007.5493 Superconductivity +1008.0978 Algebraic Geometry +1008.1783 Phenomenology +1008.1946 Probability +1008.3133 +1008.3162 Phenomenology +1008.4235 Mesoscale and Nanoscale Physics +1008.4895 Optimization and Control +1009.0437 +1009.0557 Statistical Mechanics +1009.1481 Soft Condensed Matter +1009.1881 Phenomenology +1009.1957 Solar and Stellar Astrophysics +1009.2655 +1009.2762 Phenomenology +1009.2965 Phenomenology +1009.3298 Theory +1009.3942 +1009.4736 Combinatorics +1009.5033 Analysis of PDEs +1009.5415 Phenomenology +1009.5963 Experiment +1009.6126 +1010.0026 Probability +1010.0516 Differential Geometry +1010.1794 Mesoscale and Nanoscale Physics +1010.1822 +1010.2076 Theory +1010.2674 Phenomenology +1010.2693 Experiment +1010.3212 Superconductivity +1010.3830 +1010.4121 +1010.4372 +1010.5053 +1010.5217 Phenomenology +1010.5326 Phenomenology +1011.0023 Theory +1011.0128 Quantum Gases +1011.0155 Strongly Correlated Electrons +1011.0920 Phenomenology +1011.1923 Phenomenology +1011.3491 Data Structures and Algorithms +1011.4124 Combinatorics +1011.4225 Phenomenology +1011.4258 Theory +1011.5093 Analysis of PDEs +1011.5317 Networking and Internet Architecture +1011.5393 Strongly Correlated Electrons +1011.5441 Analysis of PDEs +1011.5638 Statistical Mechanics +1011.6183 Phenomenology +1011.6192 Rings and Algebras +1011.6469 Theory +1011.6606 Earth and Planetary Astrophysics +1012.0006 Data Structures and Algorithms +1012.0121 Populations and Evolution +1012.0177 Phenomenology +1012.0339 +1012.1484 Superconductivity +1012.1516 Earth and Planetary Astrophysics +1012.3138 Experiment +1101.0939 +1101.1051 +1101.2016 +1101.2440 Analysis of PDEs +1101.2466 Statistical Mechanics +1101.3682 Symbolic Computation +1101.3934 Lattice +1101.3975 Phenomenology +1101.4054 Theory +1101.4539 Strongly Correlated Electrons +1101.4804 +1101.4908 Theory +1101.5331 Theory +1101.5516 +1101.5771 +1101.5851 Classical Analysis and ODEs +1101.6027 Superconductivity +1102.0035 Mesoscale and Nanoscale Physics +1102.0163 +1102.0239 Theory +1102.0499 Earth and Planetary Astrophysics +1102.0500 Earth and Planetary Astrophysics +1102.0503 Earth and Planetary Astrophysics +1102.0505 Earth and Planetary Astrophysics +1102.0506 Earth and Planetary Astrophysics +1102.0507 Earth and Planetary Astrophysics +1102.0510 Earth and Planetary Astrophysics +1102.0511 Earth and Planetary Astrophysics +1102.0512 Earth and Planetary Astrophysics +1102.0513 Earth and Planetary Astrophysics +1102.0514 Earth and Planetary Astrophysics +1102.0515 Earth and Planetary Astrophysics +1102.1337 Optimization and Control +1102.1356 Lattice +1102.1599 Phenomenology +1102.2344 Functional Analysis +1102.2491 +1102.2502 +1102.3286 Superconductivity +1102.4700 Phenomenology +1102.4948 Theory +1102.5544 Lattice +1103.0070 Materials Science +1103.0120 Computer Vision and Pattern Recognition +1103.0535 +1103.1633 +1103.2388 +1103.3152 Combinatorics +1103.3620 Differential Geometry +1103.4357 Representation Theory +1103.4435 Information Theory +1103.4785 Cellular Automata and Lattice Gases +1103.4947 Pricing of Securities +1103.4954 Soft Condensed Matter +1103.5507 Strongly Correlated Electrons +1103.5554 Robotics +1103.5580 Robotics +1103.5985 Information Theory +1103.6180 +1104.0032 Classical Physics +1104.0081 Combinatorics +1104.0247 Algebraic Geometry +1104.0253 Probability +1104.0254 Theory +1104.0262 Optimization and Control +1104.0266 Number Theory +1104.0272 Numerical Analysis +1104.0277 +1104.0279 Combinatorics +1104.0280 Algebraic Geometry +1104.0283 Neural and Evolutionary Computing +1104.0285 +1104.0286 Number Theory +1104.0287 Logic +1104.0288 Logic +1104.0293 Number Theory +1104.0295 Quantum Gases +1104.0298 Hardware Architecture +1104.0299 +1104.0306 Analysis of PDEs +1104.0308 General Finance +1104.0311 Numerical Analysis +1104.0318 Soft Condensed Matter +1104.0319 Social and Information Networks +1104.0321 Number Theory +1104.0323 Computation +1104.0334 Theory +1104.0335 History and Overview +1104.0339 +1104.0343 Populations and Evolution +1104.0346 +1104.0351 Combinatorics +1104.0352 Algebraic Geometry +1104.0355 Networking and Internet Architecture +1104.0358 Analysis of PDEs +1104.0366 Statistical Mechanics +1104.0368 Physics and Society +1104.0370 Differential Geometry +1104.0372 Probability +1104.0384 Information Theory +1104.0388 Formal Languages and Automata Theory +1104.0392 Number Theory +1104.0396 Number Theory +1104.0397 Group Theory +1104.0398 Group Theory +1104.0399 +1104.0400 Group Theory +1104.0402 Group Theory +1104.0403 General Topology +1104.0414 Cosmology and Nongalactic Astrophysics +1104.0420 Representation Theory +1104.0422 Cryptography and Security +1104.0423 Rings and Algebras +1104.0424 Algebraic Geometry +1104.0426 Combinatorics +1104.0428 Differential Geometry +1104.0434 Probability +1104.0436 Combinatorics +1104.0447 Analysis of PDEs +1104.0450 Differential Geometry +1104.0466 Theory +1104.0469 Phenomenology +1104.0470 Complex Variables +1104.0478 Cryptography and Security +1104.0480 Geophysics +1104.0481 Geophysics +1104.0500 Representation Theory +1104.0505 Differential Geometry +1104.0507 Cosmology and Nongalactic Astrophysics +1104.0508 Risk Management +1104.0517 Operator Algebras +1104.0518 Rings and Algebras +1104.0523 Experiment +1104.0538 Phenomenology +1104.0539 Cosmology and Nongalactic Astrophysics +1104.0541 Quantitative Methods +1104.0543 Quantitative Methods +1104.0548 Earth and Planetary Astrophysics +1104.0557 High Energy Astrophysical Phenomena +1104.0559 Chaotic Dynamics +1104.0563 Category Theory +1104.0565 Optics +1104.0568 Combinatorics +1104.0578 Soft Condensed Matter +1104.0579 Computer Vision and Pattern Recognition +1104.0582 Computer Vision and Pattern Recognition +1104.0590 +1104.0594 Cryptography and Security +1104.0596 +1104.0598 Solar and Stellar Astrophysics +1104.0607 Logic in Computer Science +1104.0612 Theory +1104.0616 Phenomenology +1104.0618 Functional Analysis +1104.0624 Popular Physics +1104.0628 Mathematical Software +1104.0631 Solar and Stellar Astrophysics +1104.0638 Optics +1104.0644 Software Engineering +1104.0648 +1104.0649 Statistical Mechanics +1104.0653 Functional Analysis +1104.0658 Chaotic Dynamics +1104.0661 Analysis of PDEs +astro-ph/0304050 +astro-ph/0701372 +cond-mat/0002292 Statistical Mechanics +cond-mat/0107503 Soft Condensed Matter +cond-mat/0204184 Soft Condensed Matter +cond-mat/0703781 Mesoscale and Nanoscale Physics +cond-mat/9801066 Statistical Mechanics +cond-mat/9801153 Statistical Mechanics +hep-th/9111035 Theory +hep-th/9809113 Theory +math/0409424 Spectral Theory +math/0505159 Commutative Algebra +math/0506281 Combinatorics +math/0511307 Commutative Algebra +math/0601520 Commutative Algebra +math/0603718 Commutative Algebra +math/0606479 Combinatorics +math/0607329 Commutative Algebra +math/0607555 Classical Analysis and ODEs +math/0701199 Combinatorics +math/0702378 Probability +math/0703369 Classical Analysis and ODEs +0705.0881 +0707.3628 Differential Geometry +0804.4895 +0807.4414 +0809.1611 +0810.5093 Superconductivity +0812.4835 +0907.2694 Theory +0910.1687 Differential Geometry +0910.5217 Algebraic Geometry +0911.0222 Representation Theory +0912.2379 Dynamical Systems +1002.4553 Classical Physics +1003.0075 General Physics +1003.0585 Rings and Algebras +1003.1180 Quantum Algebra +1003.5786 Complex Variables +1005.1319 Theory +1005.2061 Information Theory +1005.3256 Representation Theory +1006.1367 Phenomenology +1006.2240 Rings and Algebras +1006.5054 +1007.0231 Analysis of PDEs +1008.2450 General Physics +1008.4394 Biological Physics +1009.0860 Mesoscale and Nanoscale Physics +1009.3059 Strongly Correlated Electrons +1010.1510 Probability +1010.4107 Combinatorics +1011.4335 Materials Science +1011.4404 Probability +1012.2973 Soft Condensed Matter +1101.0130 Optics +1101.2724 +1101.3068 Information Theory +1101.4227 Data Analysis, Statistics and Probability +1101.4555 Computational Complexity +1101.5413 Phenomenology +1102.0025 Dynamical Systems +1102.4412 Chemical Physics +1103.0710 +1103.3866 Information Theory +1103.5248 +1103.5755 Strongly Correlated Electrons +1104.0053 Materials Science +1104.0068 Quantum Algebra +1104.0614 Superconductivity +1104.1384 +1104.1478 Theory +1104.1701 Strongly Correlated Electrons +1104.3456 Quantum Gases +1104.4781 +1104.5485 Strongly Correlated Electrons +1104.5626 Strongly Correlated Electrons +1105.0088 +1105.0413 Phenomenology +1105.0891 Mesoscale and Nanoscale Physics +1105.1092 Phenomenology +1105.2431 Spectral Theory +1105.2662 +1105.2906 +1105.4543 Solar and Stellar Astrophysics +1105.4973 +1105.5377 Strongly Correlated Electrons +1105.6130 Materials Science +1106.0055 Differential Geometry +1106.0068 Theory +1106.0743 Cosmology and Nongalactic Astrophysics +1106.2298 Functional Analysis +1106.2457 +1106.4172 Materials Science +1106.5091 Mesoscale and Nanoscale Physics +1107.0220 Instrumentation and Detectors +1107.0849 Geometric Topology +1107.1304 Classical Physics +1107.1600 Information Theory +1107.2126 Numerical Analysis +1107.2175 Algebraic Geometry +1107.3150 Phenomenology +1107.3350 Data Structures and Algorithms +1107.3932 Superconductivity +1107.5067 Theory +1108.0987 Dynamical Systems +1108.1032 Plasma Physics +1108.1271 Earth and Planetary Astrophysics +1108.1499 Solar and Stellar Astrophysics +1108.1882 Classical Analysis and ODEs +1108.2560 Cosmology and Nongalactic Astrophysics +1108.2770 Materials Science +1108.2972 Astrophysics of Galaxies +1108.2973 Statistical Mechanics +1108.4158 Theory +1108.4428 Phenomenology +1108.5831 Statistical Mechanics +1109.0174 Mesoscale and Nanoscale Physics +1109.0822 Solar and Stellar Astrophysics +1109.1508 Phenomenology +1109.1623 Theory +1109.2239 Neurons and Cognition +1109.2641 Data Structures and Algorithms +1109.2862 +1109.3234 Fluid Dynamics +1109.3641 Combinatorics +1109.3855 Number Theory +1109.3931 Combinatorics +1109.5779 Information Theory +1109.6461 Phenomenology +1109.6804 Machine Learning +1110.0748 Information Theory +1110.0781 Metric Geometry +1110.0882 General Physics +1110.0907 Representation Theory +1110.1314 +1110.1471 Experiment +1110.1887 Probability +1110.2540 Complex Variables +1110.4013 Number Theory +1110.4452 Materials Science +1110.4550 General Physics +1110.4805 General Physics +1110.5208 Statistics Theory +1110.5410 Materials Science +1110.5743 Numerical Analysis +1110.5892 +1110.6024 Classical Analysis and ODEs +1110.6247 Analysis of PDEs +1110.6387 Data Structures and Algorithms +1110.6453 Geometric Topology +1110.6456 Mesoscale and Nanoscale Physics +1110.6457 Lattice +1110.6458 +1110.6460 Geophysics +1110.6463 High Energy Astrophysical Phenomena +1110.6464 Phenomenology +1110.6468 Classical Physics +1110.6470 High Energy Astrophysical Phenomena +1110.6471 Mesoscale and Nanoscale Physics +1110.6479 Cosmology and Nongalactic Astrophysics +1110.6481 Combinatorics +1110.6482 Combinatorics +1110.6484 High Energy Astrophysical Phenomena +1110.6485 Differential Geometry +1110.6486 Mesoscale and Nanoscale Physics +1110.6488 Mesoscale and Nanoscale Physics +1110.6490 Superconductivity +1110.6492 Classical Physics +1110.6495 Analysis of PDEs +1110.6497 Computation +1110.6500 Operator Algebras +1110.6503 Astrophysics of Galaxies +1110.6513 Analysis of PDEs +1110.6517 Statistics Theory +1110.6519 Digital Libraries +1110.6523 Algebraic Geometry +1110.6525 Algebraic Geometry +1110.6527 Astrophysics of Galaxies +1110.6528 Algebraic Geometry +1110.6533 +1110.6536 Analysis of PDEs +1110.6538 Molecular Networks +1110.6539 Plasma Physics +1110.6540 Analysis of PDEs +1110.6545 History and Philosophy of Physics +1110.6546 Machine Learning +1110.6551 Differential Geometry +1110.6553 Statistical Finance +1110.6555 Logic +1110.6557 Mesoscale and Nanoscale Physics +1110.6558 Algebraic Geometry +1110.6565 Biological Physics +1110.6568 Biological Physics +1110.6570 Group Theory +1110.6571 Phenomenology +1110.6576 +1110.6577 Phenomenology +1110.6581 Logic +1110.6585 K-Theory and Homology +1110.6589 Artificial Intelligence +1110.6590 Information Theory +1110.6591 Group Theory +1110.6596 Representation Theory +1110.6599 Dynamical Systems +1110.6602 Analysis of PDEs +1110.6607 +1110.6608 Algebraic Topology +1110.6614 Operator Algebras +1110.6619 Classical Analysis and ODEs +1110.6621 Representation Theory +1110.6623 Statistics Theory +1110.6624 Number Theory +1110.6627 +1110.6634 Optimization and Control +1110.6636 Probability +1110.6639 Data Analysis, Statistics and Probability +1110.6643 Mesoscale and Nanoscale Physics +1110.6645 Combinatorics +1110.6647 Databases +1110.6648 Databases +1110.6649 Databases +1110.6650 Databases +1110.6651 Databases +1110.6652 Databases +1110.6658 Theory +1110.6664 Probability +1110.6665 Phenomenology +1110.6667 Superconductivity +1110.6668 Combinatorics +1110.6675 Classical Analysis and ODEs +1110.6679 Statistical Finance +1110.6680 Number Theory +1110.6685 Logic in Computer Science +1110.6687 +1110.6690 Logic +1110.6693 High Energy Astrophysical Phenomena +1110.6696 Spectral Theory +1110.6698 Information Theory +1110.6703 +1110.6706 +1110.6709 Spectral Theory +1110.6710 Number Theory +1110.6715 Strongly Correlated Electrons +1110.6717 High Energy Astrophysical Phenomena +1110.6719 Superconductivity +1110.6724 Quantum Algebra +1110.6728 Symplectic Geometry +1110.6729 Optics +1110.6740 Complex Variables +1110.6743 Soft Condensed Matter +1110.6746 Functional Analysis +1110.6750 Experiment +1110.6754 Soft Condensed Matter +1110.6757 +1110.6761 Instrumentation and Detectors +1110.6762 Phenomenology +1110.6775 High Energy Astrophysical Phenomena +1110.6778 Information Theory +1110.6780 High Energy Astrophysical Phenomena +1110.6785 Numerical Analysis +1110.6786 High Energy Astrophysical Phenomena +1110.6787 Information Theory +1110.6790 Classical Analysis and ODEs +1110.6792 Classical Analysis and ODEs +1110.6795 High Energy Astrophysical Phenomena +1110.6796 Statistics Theory +1110.6799 Statistical Mechanics +1110.6802 Metric Geometry +1110.6803 Symplectic Geometry +1110.6805 Classical Analysis and ODEs +1110.6812 Theory +1110.6824 Algebraic Geometry +1110.6826 Differential Geometry +1110.6830 Differential Geometry +1110.6831 Group Theory +1110.6832 Data Structures and Algorithms +1110.6834 Numerical Analysis +1110.6835 Combinatorics +1110.6836 K-Theory and Homology +1110.6840 High Energy Astrophysical Phenomena +1110.6841 +1110.6847 Dynamical Systems +1110.6848 High Energy Astrophysical Phenomena +1110.6851 Rings and Algebras +1110.6853 Probability +1110.6855 High Energy Astrophysical Phenomena +1110.6856 Functional Analysis +1110.6858 Operator Algebras +1110.6865 Hardware Architecture +1110.6867 Optics +1110.6868 High Energy Astrophysical Phenomena +1110.6869 Spectral Theory +1110.6874 Materials Science +1110.6879 Software Engineering +1110.6881 Representation Theory +1110.6883 Mesoscale and Nanoscale Physics +1110.6888 Group Theory +1110.6889 High Energy Astrophysical Phenomena +1110.6892 General Physics +1110.6896 Methodology +1110.6899 Symplectic Geometry +1110.6902 Mesoscale and Nanoscale Physics +1110.6903 Geometric Topology +1110.6907 Analysis of PDEs +1110.6912 Atomic Physics +1110.6915 Dynamical Systems +1110.6916 Information Theory +1110.6927 Biological Physics +1110.6928 +astro-ph/9807320 +hep-th/0309027 Theory +hep-th/0407024 Theory +math/0511741 Geometric Topology +math/0702714 Differential Geometry +physics/0411244 Classical Physics +0704.0341 Phenomenology +0704.0548 +0705.0615 Experiment +0705.1223 Accelerator Physics +0705.2314 Phenomenology +0706.3551 Phenomenology +0707.3894 Differential Geometry +0708.2632 Commutative Algebra +0708.4274 +0709.0138 +0710.3039 General Physics +0710.3380 Phenomenology +0711.0150 +0711.0788 +0711.1799 Theory +0712.0868 +0801.1252 Instrumentation and Detectors +0801.3903 +0801.4157 +0802.3741 +0804.3232 Theory +0804.3726 +0805.1486 +0806.1471 +0806.3888 +0806.4045 Representation Theory +0806.4114 +0806.4124 +0807.0657 +0811.3427 Numerical Analysis +0811.4525 Quantum Algebra +0902.0053 Cosmology and Nongalactic Astrophysics +0902.0115 Probability +0904.1014 +0904.1265 Algebraic Geometry +0904.1867 +0904.2943 High Energy Astrophysical Phenomena +0904.3861 Cosmology and Nongalactic Astrophysics +0904.4531 Superconductivity +0905.0232 Algebraic Geometry +0905.0599 Algebraic Geometry +0905.1171 Number Theory +0905.4643 +0906.1515 Theory +0906.2253 Functional Analysis +0908.1217 Physics and Society +0908.3613 Materials Science +0909.5241 Representation Theory +0910.0594 +0912.2740 +0912.3952 Quantitative Methods +1001.0991 Probability +1002.1450 Soft Condensed Matter +1003.1543 Phenomenology +1003.6018 Mesoscale and Nanoscale Physics +1004.2424 +1005.1858 Group Theory +1005.2558 Algebraic Geometry +1006.1569 +1006.1931 +1007.0442 Strongly Correlated Electrons +1007.2867 Superconductivity +1007.3503 Theory +1008.2975 +1008.5233 Mesoscale and Nanoscale Physics +1009.0059 Mesoscale and Nanoscale Physics +1009.0620 Differential Geometry +1009.1513 Neural and Evolutionary Computing +1009.1810 +1009.3416 Mesoscale and Nanoscale Physics +1009.4364 Group Theory +1009.4955 Operator Algebras +1010.0024 Phenomenology +1010.0165 Quantum Gases +1010.2535 +1010.3892 +1010.4295 Quantum Gases +1010.4701 Phenomenology +1010.4787 +1011.0183 Theory +1011.1004 Quantum Gases +1011.4208 Algebraic Geometry +1011.4331 +1011.5689 Disordered Systems and Neural Networks +1012.0801 Optics +1012.1080 Strongly Correlated Electrons +1012.4332 Statistical Mechanics +1012.4649 Mesoscale and Nanoscale Physics +1012.4968 Representation Theory +1101.1349 Geometric Topology +1101.5802 Mesoscale and Nanoscale Physics +1101.5884 Differential Geometry +1102.0483 Statistical Mechanics +1102.2362 Spectral Theory +1102.2997 Fluid Dynamics +1102.3292 Rings and Algebras +1103.1280 +1104.0135 Phenomenology +1104.0715 Applications +1104.0847 Phenomenology +1104.0997 Theory +1104.1436 Learning +1104.1442 Dynamical Systems +1104.1443 Cosmology and Nongalactic Astrophysics +1104.1448 Information Theory +1104.1449 +1104.1451 Functional Analysis +1104.1453 Operator Algebras +1104.1454 Analysis of PDEs +1104.1455 Operator Algebras +1104.1457 Information Theory +1104.1460 Earth and Planetary Astrophysics +1104.1466 Logic in Computer Science +1104.1470 Algebraic Geometry +1104.1477 Human-Computer Interaction +1104.1481 Combinatorics +1104.1483 +1104.1485 Computer Vision and Pattern Recognition +1104.1487 Algebraic Topology +1104.1495 Superconductivity +1104.1496 Probability +1104.1503 Biological Physics +1104.1504 Differential Geometry +1104.1506 Robotics +1104.1508 Probability +1104.1509 Differential Geometry +1104.1518 Phenomenology +1104.1522 Mesoscale and Nanoscale Physics +1104.1523 Mesoscale and Nanoscale Physics +1104.1528 Information Theory +1104.1532 Solar and Stellar Astrophysics +1104.1533 Mathematical Software +1104.1534 Phenomenology +1104.1544 Instrumentation and Methods for Astrophysics +1104.1548 Probability +1104.1551 Biological Physics +1104.1555 Probability +1104.1557 History and Philosophy of Physics +1104.1560 Probability +1104.1575 Phenomenology +1104.1579 Number Theory +1104.1582 Systems and Control +1104.1584 Strongly Correlated Electrons +1104.1587 Analysis of PDEs +1104.1588 Medical Physics +1104.1592 Rings and Algebras +1104.1603 Functional Analysis +1104.1604 Operator Algebras +1104.1612 Differential Geometry +1104.1616 Number Theory +1104.1620 Probability +1104.1622 Soft Condensed Matter +astro-ph/0310367 +astro-ph/0407313 +astro-ph/0412404 +astro-ph/0505623 +astro-ph/0601157 +astro-ph/0603284 +astro-ph/0603593 +astro-ph/0604011 +astro-ph/0604131 +astro-ph/0604159 +astro-ph/0604235 +astro-ph/0604397 +astro-ph/0606376 +astro-ph/0606706 +astro-ph/0607209 +astro-ph/0608199 +astro-ph/0608318 +astro-ph/0608505 +astro-ph/0608549 +astro-ph/0608662 +astro-ph/0609565 +astro-ph/0610440 +astro-ph/0703431 +cond-mat/0512098 Strongly Correlated Electrons +cond-mat/0703086 Materials Science +gr-qc/0609095 +hep-ex/0312031 Experiment +hep-ex/0501005 Experiment +hep-ex/0503031 Experiment +hep-ex/0503042 Experiment +hep-ex/0609041 Experiment +hep-ex/0610005 Experiment +hep-ex/0611038 Experiment +hep-lat/0409084 Lattice +hep-lat/0409118 Lattice +hep-lat/0409132 Lattice +hep-lat/0409133 Lattice +hep-lat/0409134 Lattice +hep-lat/0409153 Lattice +hep-lat/0412043 Lattice +hep-lat/0508016 Lattice +hep-lat/0509023 Lattice +hep-lat/0509058 Lattice +hep-lat/0509072 Lattice +hep-lat/0510028 Lattice +hep-lat/0510082 Lattice +hep-ph/0310057 Phenomenology +hep-ph/0310061 Phenomenology +hep-ph/0310074 Phenomenology +hep-ph/0406001 Phenomenology +hep-ph/0408300 Phenomenology +hep-ph/0409236 Phenomenology +hep-ph/0411051 Phenomenology +hep-ph/0411195 Phenomenology +hep-ph/0504257 Phenomenology +hep-ph/0509368 Phenomenology +hep-ph/0511228 Phenomenology +hep-ph/0511274 Phenomenology +hep-ph/0512116 Phenomenology +hep-ph/0607268 Phenomenology +hep-ph/0608217 Phenomenology +hep-ph/0608307 Phenomenology +hep-ph/0609221 Phenomenology +hep-ph/0609292 Phenomenology +hep-ph/0611023 Phenomenology +hep-ph/0611350 Phenomenology +hep-ph/0612026 Phenomenology +hep-ph/0612115 Phenomenology +hep-ph/0703287 Phenomenology +hep-ph/9606475 Phenomenology +hep-ph/9612229 Phenomenology +hep-th/0310095 Theory +hep-th/0411039 Theory +hep-th/0506120 Theory +hep-th/0507157 Theory +hep-th/0509208 Theory +hep-th/0512108 Theory +hep-th/0602199 Theory +hep-th/0604203 Theory +hep-th/0606268 Theory +hep-th/0610198 Theory +hep-th/0703137 Theory +math-ph/0602018 +math/0311108 Probability +math/0504298 Optimization and Control +math/0603065 Quantum Algebra +nucl-ex/0310016 +nucl-ex/0403051 +nucl-ex/0412006 +nucl-ex/0701024 +nucl-th/0303044 +nucl-th/0309068 +nucl-th/0309076 +nucl-th/0405061 +nucl-th/0406045 +nucl-th/0411064 +nucl-th/0611073 +physics/0502131 Instrumentation and Detectors +physics/0502132 Instrumentation and Detectors +physics/0503206 General Physics +physics/0506168 Classical Physics +physics/0604101 Instrumentation and Detectors +physics/0612236 Accelerator Physics +physics/0703039 Data Analysis, Statistics and Probability +quant-ph/9609013 +0704.0724 Mesoscale and Nanoscale Physics +0705.0776 Logic +0708.2322 General Physics +0709.0116 Artificial Intelligence +0801.1584 Combinatorics +0804.1244 Artificial Intelligence +0804.4671 Differential Geometry +0805.0005 Logic +0806.0176 Rings and Algebras +0807.4308 Algebraic Geometry +0809.2267 Logic +0810.3946 Statistics Theory +0810.4235 Algebraic Topology +0811.0058 Operator Algebras +0901.1135 General Physics +0902.2663 +0902.4329 Mesoscale and Nanoscale Physics +0903.2198 Theory +0903.5244 Geometric Topology +0904.0667 +0905.0373 Optimization and Control +0905.3830 Artificial Intelligence +0906.4466 Numerical Analysis +0908.1992 Rings and Algebras +0908.2119 Information Theory +0909.1097 Combinatorics +0909.3061 Theory +0911.1836 Classical Analysis and ODEs +0911.3983 Probability +0911.5086 Computational Geometry +0911.5572 General Mathematics +0912.0659 Differential Geometry +0912.1262 Computers and Society +0912.3310 Computational Complexity +0912.4835 Mesoscale and Nanoscale Physics +1001.1527 Probability +1001.1528 Probability +1001.4705 Strongly Correlated Electrons +1001.5331 Numerical Analysis +1002.1679 Number Theory +1002.2382 Cosmology and Nongalactic Astrophysics +1002.2436 +1004.4106 Solar and Stellar Astrophysics +1005.0287 Algebraic Geometry +1005.1640 Solar and Stellar Astrophysics +1005.3397 Spectral Theory +1006.1132 Operator Algebras +1006.3360 Information Theory +1006.4246 Phenomenology +1007.0473 Combinatorics +1007.0934 Algebraic Geometry +1007.3213 Differential Geometry +1007.4387 Strongly Correlated Electrons +1007.4501 Quantum Algebra +1008.0272 Complex Variables +1008.0384 Solar and Stellar Astrophysics +1008.1008 Operator Algebras +1008.1832 Mesoscale and Nanoscale Physics +1008.3552 Cosmology and Nongalactic Astrophysics +1008.3567 +1008.3942 +1009.0186 Quantum Algebra +1009.0220 Algebraic Geometry +1009.1339 Optics +1009.2272 +1009.2847 Optics +1009.3639 +1009.4170 Combinatorics +1009.4346 +1009.5517 Statistical Mechanics +1010.3253 +1010.3358 +1010.3616 Probability +1010.5649 Phenomenology +1011.3596 +1011.4299 Solar and Stellar Astrophysics +1011.4317 Superconductivity +1011.4536 Quantum Gases +1011.5666 Data Structures and Algorithms +1012.2058 Strongly Correlated Electrons +1012.3783 Strongly Correlated Electrons +1012.4180 +1012.4772 Astrophysics of Galaxies +1012.5078 Cosmology and Nongalactic Astrophysics +1012.5079 Solar and Stellar Astrophysics +1101.0528 Chemical Physics +1101.3589 Commutative Algebra +1101.4553 Functional Analysis +1101.4738 Number Theory +1101.5286 +1102.1902 Analysis of PDEs +1102.2459 Materials Science +1102.4629 Mesoscale and Nanoscale Physics +1102.5243 Strongly Correlated Electrons +1102.5282 Superconductivity +1103.1133 Number Theory +1103.1854 Classical Physics +1103.2024 Theory +1103.2896 Quantum Gases +1103.3407 Superconductivity +1103.4466 Materials Science +1103.4830 Theory +1103.5131 Computer Science and Game Theory +1103.5241 Digital Libraries +1103.5619 Number Theory +1104.0551 Representation Theory +1104.3802 Computer Science and Game Theory +1104.4149 Materials Science +1104.4603 Analysis of PDEs +1104.5339 Strongly Correlated Electrons +1104.5523 High Energy Astrophysical Phenomena +1105.0553 Differential Geometry +1105.4112 Computational Physics +1105.5128 Analysis of PDEs +1105.5168 Superconductivity +1105.5179 Commutative Algebra +1105.5399 Mesoscale and Nanoscale Physics +1105.5676 Information Theory +1105.6026 Phenomenology +1106.0518 Learning +1106.0593 +1106.0906 Functional Analysis +1106.1058 Dynamical Systems +1106.1134 Algebraic Topology +1106.1323 Logic +1106.1998 Artificial Intelligence +1106.2022 +1106.2117 Materials Science +1106.2167 Probability +1106.2173 Instrumentation and Methods for Astrophysics +1106.2180 Solar and Stellar Astrophysics +1106.2183 +1106.2184 Phenomenology +1106.2189 Cosmology and Nongalactic Astrophysics +1106.2193 Phenomenology +1106.2195 Combinatorics +1106.2206 Materials Science +1106.2207 Other Computer Science +1106.2208 Numerical Analysis +1106.2210 General Physics +1106.2217 Discrete Mathematics +1106.2220 Solar and Stellar Astrophysics +1106.2223 Differential Geometry +1106.2224 +1106.2228 Materials Science +1106.2232 Materials Science +1106.2239 Atomic Physics +1106.2244 Plasma Physics +1106.2247 Classical Physics +1106.2249 Atomic Physics +1106.2255 Classical Physics +1106.2256 Probability +1106.2257 General Physics +1106.2258 General Physics +1106.2259 Representation Theory +1106.2260 Probability +1106.2262 Cosmology and Nongalactic Astrophysics +1106.2263 Data Structures and Algorithms +1106.2265 Adaptation and Self-Organizing Systems +1106.2272 Logic in Computer Science +1106.2275 Distributed, Parallel, and Cluster Computing +1106.2278 +1106.2284 Phenomenology +1106.2288 Differential Geometry +1106.2289 Information Retrieval +1106.2290 Discrete Mathematics +1106.2294 Data Structures and Algorithms +1106.2295 Rings and Algebras +1106.2297 +1106.2299 Dynamical Systems +1106.2300 Solar and Stellar Astrophysics +1106.2303 Complex Variables +1106.2304 Operator Algebras +1106.2309 Strongly Correlated Electrons +1106.2312 Neural and Evolutionary Computing +1106.2313 Materials Science +1106.2315 Combinatorics +1106.2320 Logic in Computer Science +1106.2321 Algebraic Geometry +1106.2323 Algebraic Geometry +1106.2324 Theory +1106.2325 Networking and Internet Architecture +1106.2329 +1106.2332 History and Philosophy of Physics +1106.2333 Statistics Theory +1106.2334 History and Philosophy of Physics +1106.2344 Mesoscale and Nanoscale Physics +1106.2345 Optimization and Control +1106.2346 Mesoscale and Nanoscale Physics +1106.2351 Data Structures and Algorithms +1106.2353 Number Theory +1106.2354 Differential Geometry +1106.2355 Commutative Algebra +1106.2357 Computer Vision and Pattern Recognition +1106.2360 Strongly Correlated Electrons +1106.2364 Number Theory +1106.2366 Mesoscale and Nanoscale Physics +1106.2372 Mesoscale and Nanoscale Physics +1106.2373 Differential Geometry +1106.2376 Superconductivity +1106.2378 Computer Science and Game Theory +1106.2394 Complex Variables +1106.2395 Differential Geometry +1106.2401 Phenomenology +1106.2402 Networking and Internet Architecture +1106.2418 Atomic Physics +1106.2420 Solar and Stellar Astrophysics +1106.2424 Quantum Algebra +1106.2430 Mesoscale and Nanoscale Physics +1106.2445 Differential Geometry +1106.2447 Rings and Algebras +1106.2448 Theory +1106.2451 Solar and Stellar Astrophysics +1106.2454 High Energy Astrophysical Phenomena +1106.2455 Materials Science +1106.2458 Combinatorics +1106.2464 Information Theory +1106.2468 Spectral Theory +1106.2473 Digital Libraries +1106.2474 Machine Learning +1106.2478 Pricing of Securities +1106.2482 Number Theory +1106.2484 Theory +1106.2489 Computer Science and Game Theory +1106.2491 Materials Science +1106.2495 +1106.2496 Experiment +1106.2497 +1106.2500 +1106.2501 Computational Physics +1106.2506 Algebraic Geometry +1106.2507 Instrumentation and Methods for Astrophysics +1106.2512 General Topology +1106.2513 History and Philosophy of Physics +1106.2516 Experiment +1106.2517 History and Philosophy of Physics +1106.2519 Phenomenology +1106.2522 Information Theory +1106.2525 Statistics Theory +1106.2526 +1106.2527 Cosmology and Nongalactic Astrophysics +1106.2528 Experiment +1106.2533 Discrete Mathematics +1106.2537 Solar and Stellar Astrophysics +1106.2539 Instrumentation and Methods for Astrophysics +cs/0209018 Computational Complexity +cs/0304016 Other Computer Science +cs/0608107 Information Retrieval +quant-ph/0102054 +quant-ph/0308157 +quant-ph/0509099 +quant-ph/9905026 +0710.2402 Statistical Finance +0801.0930 Optics +0904.4717 Learning +0904.4898 Chaotic Dynamics +0906.4456 Pricing of Securities +0907.3987 Theory +0911.1815 Classical Analysis and ODEs +0911.4304 Operator Algebras +0912.0540 +1004.2519 Optimization and Control +1004.5103 Plasma Physics +1005.3332 Cosmology and Nongalactic Astrophysics +1006.0046 Theory +1006.0275 Cosmology and Nongalactic Astrophysics +1007.1967 Cosmology and Nongalactic Astrophysics +1007.2315 Information Theory +1007.4537 +1008.0124 Geometric Topology +1008.2901 Combinatorics +1009.0723 Cosmology and Nongalactic Astrophysics +1010.0426 Statistics Theory +1010.5240 Theory +1011.2199 Instrumentation and Methods for Astrophysics +1011.3343 +1011.3686 Chaotic Dynamics +1011.4223 +1012.0287 Combinatorics +1012.2538 Commutative Algebra +1012.3450 Soft Condensed Matter +1012.4804 Astrophysics of Galaxies +1012.5500 +1101.3839 Number Theory +1101.4018 Cosmology and Nongalactic Astrophysics +1102.2138 Statistical Finance +1102.5685 +1103.0263 Materials Science +1103.1823 Cryptography and Security +1103.4829 Cosmology and Nongalactic Astrophysics +1103.5274 Dynamical Systems +1103.5389 Theory +1104.0664 Solar and Stellar Astrophysics +1104.1765 Materials Science +1104.2523 Theory +1104.4712 Materials Science +1104.4875 +1105.0275 Physics and Society +1105.2005 Strongly Correlated Electrons +1105.2757 Materials Science +1105.3659 +1105.3915 Statistical Mechanics +1105.5152 Phenomenology +1105.5326 +1106.0517 Materials Science +1106.0742 Commutative Algebra +1106.1258 Combinatorics +1106.5898 Chaotic Dynamics +1107.1160 Disordered Systems and Neural Networks +1107.1623 Statistical Mechanics +1107.1709 Information Theory +1107.1961 General Physics +1107.2204 General Physics +1107.2241 General Physics +1107.2756 Theory +1107.3182 High Energy Astrophysical Phenomena +1107.3827 Mesoscale and Nanoscale Physics +1107.3929 Mesoscale and Nanoscale Physics +1107.3982 Mesoscale and Nanoscale Physics +1108.3399 Atomic Physics +1108.3404 Geophysics +1108.3493 +1108.3497 Mesoscale and Nanoscale Physics +1108.4023 Strongly Correlated Electrons +1108.4153 +1108.4219 Representation Theory +1108.4252 +1108.5005 +1108.5526 General Physics +1108.5568 Probability +1109.2178 Experiment +1109.2674 Fluid Dynamics +1109.3940 Learning +1109.4697 Number Theory +1109.4699 Statistics Theory +1109.4946 +1109.4949 Classical Analysis and ODEs +1109.4951 Classical Analysis and ODEs +1109.4959 Classical Analysis and ODEs +1109.4963 Phenomenology +1109.4965 Molecular Networks +1109.4973 Functional Analysis +1109.4978 Solar and Stellar Astrophysics +1109.4996 Optics +1109.4998 Numerical Analysis +1109.5000 Statistics Theory +1109.5001 Analysis of PDEs +1109.5005 Information Theory +1109.5006 Numerical Analysis +1109.5007 Group Theory +1109.5019 Atmospheric and Oceanic Physics +1109.5020 Analysis of PDEs +1109.5021 Analysis of PDEs +1109.5027 Phenomenology +1109.5031 Operator Algebras +1109.5047 Optics +1109.5048 Optics +1109.5050 Phenomenology +1109.5052 Algebraic Topology +1109.5053 Information Retrieval +1109.5055 Commutative Algebra +1109.5058 Commutative Algebra +1109.5062 Rings and Algebras +1109.5065 +1109.5069 Metric Geometry +1109.5072 Artificial Intelligence +1109.5073 Atmospheric and Oceanic Physics +1109.5075 +1109.5077 Soft Condensed Matter +1109.5078 Learning +1109.5079 Analysis of PDEs +1109.5085 Differential Geometry +1109.5090 Superconductivity +1109.5091 +1109.5095 Solar and Stellar Astrophysics +1109.5096 Differential Geometry +1109.5097 Mesoscale and Nanoscale Physics +1109.5098 Exactly Solvable and Integrable Systems +1109.5100 Numerical Analysis +1109.5101 Optics +1109.5103 Strongly Correlated Electrons +1109.5112 Accelerator Physics +1109.5113 Experiment +1109.5124 Probability +1109.5133 Optics +1109.5134 History and Philosophy of Physics +1109.5144 Portfolio Management +1109.5145 Mesoscale and Nanoscale Physics +1109.5152 Number Theory +1109.5153 Distributed, Parallel, and Cluster Computing +1109.5159 Molecular Networks +1109.5168 +1109.5170 +cond-mat/9212012 +physics/0701224 Instrumentation and Detectors +0707.1381 Combinatorics +0711.3603 +0806.4864 Statistics Theory +0807.2153 Statistics Theory +0810.2513 Networking and Internet Architecture +0810.5108 +0810.5109 +0904.1681 Probability +0905.4317 Metric Geometry +0906.3700 Operator Algebras +0907.1413 Cryptography and Security +0908.3952 +0909.2308 Strongly Correlated Electrons +0909.5518 +0910.1944 Number Theory +0910.4476 +0912.3699 Mesoscale and Nanoscale Physics +1001.0381 +1003.1696 Other Condensed Matter +1003.2674 Dynamical Systems +1003.5848 Analysis of PDEs +1004.0411 +1004.4255 Differential Geometry +1006.1637 +1006.1805 +1006.5248 Algebraic Geometry +1007.0006 High Energy Astrophysical Phenomena +1007.0566 Data Analysis, Statistics and Probability +1008.1180 Representation Theory +1009.0139 Optics +1009.1204 Cellular Automata and Lattice Gases +1010.2932 Differential Geometry +1010.4465 Number Theory +1010.6297 Representation Theory +1011.2578 Statistical Mechanics +1011.2955 Disordered Systems and Neural Networks +1011.5071 Fluid Dynamics +1011.5601 Phenomenology +1012.0297 +1012.2730 Quantitative Methods +1012.3572 Superconductivity +1012.3975 Phenomenology +1012.4749 Analysis of PDEs +1101.3888 +1101.4500 Quantum Gases +1101.5576 Lattice +1102.3542 Statistical Mechanics +1102.4526 Optics +1102.4870 High Energy Astrophysical Phenomena +1103.0635 Superconductivity +1103.0930 +1103.1136 +1103.1428 +1103.1727 Differential Geometry +1103.2669 Lattice +1103.3377 +1104.0702 Cell Behavior +1104.1675 +1104.3037 Materials Science +1104.5272 Risk Management +1104.5301 +1105.0195 Instrumentation and Detectors +1105.0199 Instrumentation and Detectors +1105.1350 Strongly Correlated Electrons +1105.2171 Discrete Mathematics +1105.2808 Strongly Correlated Electrons +1105.2853 Materials Science +1105.5553 Networking and Internet Architecture +1105.6076 +1106.1284 Algebraic Geometry +1106.1658 Quantum Algebra +1106.2069 Functional Analysis +1106.2981 Group Theory +1106.3586 Discrete Mathematics +1106.3709 Cosmology and Nongalactic Astrophysics +1106.3731 +1106.3770 +1106.4046 Experiment +1106.4049 Populations and Evolution +1106.4052 Cosmology and Nongalactic Astrophysics +1106.4063 Logic in Computer Science +1106.4066 Materials Science +1106.4075 Functional Analysis +1106.4076 Instrumentation and Methods for Astrophysics +1106.4079 Numerical Analysis +1106.4080 Algebraic Topology +1106.4082 +1106.4083 Artificial Intelligence +1106.4084 Earth and Planetary Astrophysics +1106.4090 Logic in Computer Science +1106.4091 Software Engineering +1106.4092 Software Engineering +1106.4093 Logic in Computer Science +1106.4094 Logic in Computer Science +1106.4095 Software Engineering +1106.4096 Logic in Computer Science +1106.4097 Software Engineering +1106.4098 Logic in Computer Science +1106.4099 Software Engineering +1106.4100 Logic in Computer Science +1106.4104 Dynamical Systems +1106.4109 Classical Analysis and ODEs +1106.4110 Theory +1106.4111 Materials Science +1106.4112 Quantum Algebra +1106.4114 Earth and Planetary Astrophysics +1106.4117 Representation Theory +1106.4124 Phenomenology +1106.4125 Analysis of PDEs +1106.4127 General Physics +1106.4130 Algebraic Geometry +1106.4131 Classical Physics +1106.4133 General Topology +1106.4134 Probability +1106.4135 General Topology +1106.4136 General Topology +1106.4150 Solar and Stellar Astrophysics +1106.4152 Plasma Physics +1106.4154 Theory +1106.4155 Atomic Physics +1106.4159 Cosmology and Nongalactic Astrophysics +1106.4160 Methodology +1106.4161 Phenomenology +1106.4170 Mesoscale and Nanoscale Physics +1106.4174 Analysis of PDEs +1106.4176 Digital Libraries +1106.4178 Phenomenology +1106.4180 Solar and Stellar Astrophysics +1106.4184 Cryptography and Security +1106.4188 Probability +1106.4198 Machine Learning +1106.4200 Programming Languages +1106.4203 +1106.4213 Distributed, Parallel, and Cluster Computing +1106.4218 Artificial Intelligence +1106.4219 Number Theory +1106.4221 Artificial Intelligence +1106.4222 Statistics Theory +1106.4226 Medical Physics +1106.4228 Statistics Theory +1106.4229 Analysis of PDEs +1106.4232 Analysis of PDEs +1106.4234 +1106.4235 Geometric Topology +1106.4241 Algebraic Geometry +1106.4247 Discrete Mathematics +1106.4258 Solar and Stellar Astrophysics +1106.4259 Mesoscale and Nanoscale Physics +1106.4266 Numerical Analysis +1106.4267 +1106.4273 Logic +1106.4281 Probability +1106.4282 Soft Condensed Matter +1106.4286 Information Theory +1106.4288 Networking and Internet Architecture +1106.4289 Materials Science +1106.4290 Materials Science +1106.4291 Materials Science +1106.4300 Social and Information Networks +1106.4302 Rings and Algebras +cond-mat/0402401 Superconductivity +math/0111083 Representation Theory +math/0111085 Representation Theory +math/0111086 Representation Theory +math/0304326 Representation Theory +math/0509543 Differential Geometry +math/0608146 Differential Geometry +0707.4496 Logic +0803.0170 Optimization and Control +0805.1085 Genomics +0806.0530 Data Analysis, Statistics and Probability +0806.3769 Methodology +0807.0500 Phenomenology +0810.4285 Logic +0810.4457 Number Theory +0811.0331 +0905.2789 Optimization and Control +0905.3378 Artificial Intelligence +0906.0889 +0908.2979 Strongly Correlated Electrons +0908.2986 Mesoscale and Nanoscale Physics +0909.2854 Theory +0909.4515 Mesoscale and Nanoscale Physics +0909.4519 Mesoscale and Nanoscale Physics +1001.4677 Theory +1002.4529 Combinatorics +1002.4929 Theory +1003.1063 Mesoscale and Nanoscale Physics +1003.4993 Cosmology and Nongalactic Astrophysics +1004.0813 Materials Science +1004.2689 Mesoscale and Nanoscale Physics +1004.3422 Phenomenology +1006.3380 Exactly Solvable and Integrable Systems +1006.5232 Geometric Topology +1006.5352 Computer Science and Game Theory +1007.1831 Mesoscale and Nanoscale Physics +1007.3944 Rings and Algebras +1007.4624 Materials Science +1007.4714 Mesoscale and Nanoscale Physics +1007.5422 +1008.0088 High Energy Astrophysical Phenomena +1008.3341 Superconductivity +1009.1420 Strongly Correlated Electrons +1009.4451 Lattice +1009.4826 Number Theory +1011.0986 Numerical Analysis +1011.2239 Cosmology and Nongalactic Astrophysics +1011.5306 Phenomenology +1011.5587 Phenomenology +1011.6151 +1012.1522 Phenomenology +1012.4491 Strongly Correlated Electrons +1101.0576 +1101.0716 Cosmology and Nongalactic Astrophysics +1101.2161 Phenomenology +1101.2668 +1101.3628 +1102.0350 Strongly Correlated Electrons +1102.4942 Phenomenology +1103.4584 Logic in Computer Science +1103.5428 +1103.5503 Superconductivity +1103.6139 Statistical Mechanics +1104.1160 Theory +1104.1645 Mesoscale and Nanoscale Physics +1104.1777 Phenomenology +1104.3040 Phenomenology +1105.0610 Quantum Gases +1105.1842 Data Structures and Algorithms +1105.2300 Theory +1105.2307 Dynamical Systems +1105.2785 Superconductivity +1105.3678 Experiment +1105.3707 Theory +1105.3976 Phenomenology +1105.4482 Theory +1106.0907 Theory +1106.1174 Theory +1106.2697 Machine Learning +1106.3186 Cosmology and Nongalactic Astrophysics +1106.5706 Pricing of Securities +1107.0086 Biological Physics +1107.0944 Theory +1107.1281 Cosmology and Nongalactic Astrophysics +1107.2508 Strongly Correlated Electrons +1107.3328 Soft Condensed Matter +1107.4430 Geophysics +1107.4648 Number Theory +1107.5474 Artificial Intelligence +1108.0167 Classical Physics +1108.0302 Theory +1108.0589 Phenomenology +1108.0758 Theory +1108.0764 Classical Physics +1108.0832 +1108.0939 Analysis of PDEs +1108.0940 Superconductivity +1108.0953 Rings and Algebras +1108.0957 Number Theory +1108.0959 Experiment +1108.0968 Experiment +1108.0971 Optics +1108.0972 Distributed, Parallel, and Cluster Computing +1108.0982 Information Theory +1108.0984 +1108.0986 Optimization and Control +1108.0989 Combinatorics +1108.0992 Logic +1108.0996 Applications +1108.1000 Geometric Topology +1108.1003 +1108.1011 Superconductivity +1108.1019 Statistics Theory +1108.1022 Information Theory +1108.1026 +1108.1036 Combinatorics +1108.1039 Mesoscale and Nanoscale Physics +1108.1041 Combinatorics +1108.1044 Group Theory +1108.1045 Artificial Intelligence +1108.1046 Theory +1108.1049 High Energy Astrophysical Phenomena +1108.1050 Plasma Physics +1108.1051 Plasma Physics +1108.1052 +1108.1054 High Energy Astrophysical Phenomena +1108.1059 Analysis of PDEs +1108.1060 Data Structures and Algorithms +1108.1074 Applications +1108.1077 High Energy Astrophysical Phenomena +1108.1079 Computation +1108.1080 Solar and Stellar Astrophysics +1108.1084 High Energy Astrophysical Phenomena +1108.1085 Accelerator Physics +1108.1088 Optics +1108.1089 Experiment +1108.1093 Dynamical Systems +1108.1096 Plasma Physics +1108.1098 Statistics Theory +1108.1103 +1108.1108 Symbolic Computation +1108.1109 Physics Education +1108.1115 Accelerator Physics +1108.1123 Functional Analysis +1108.1124 Combinatorics +1108.1127 Materials Science +1108.1134 Experiment +1108.1138 Materials Science +1108.1146 Metric Geometry +1108.1149 Optics +1108.1153 Other Computer Science +1108.1154 Cryptography and Security +1108.1159 Superconductivity +1108.1161 Information Theory +1108.1166 Mesoscale and Nanoscale Physics +1108.1169 Computer Vision and Pattern Recognition +1108.1174 Number Theory +1108.1177 +1108.1179 Probability +cond-mat/0005151 Mesoscale and Nanoscale Physics +cond-mat/0106023 Disordered Systems and Neural Networks +cond-mat/0109326 Mesoscale and Nanoscale Physics +cond-mat/0201137 Statistical Mechanics +cond-mat/0208024 Mesoscale and Nanoscale Physics +cond-mat/9311050 +cond-mat/9401049 +cond-mat/9510164 +cond-mat/9605073 +cond-mat/9704198 Disordered Systems and Neural Networks +cond-mat/9809286 Mesoscale and Nanoscale Physics +cond-mat/9906299 Disordered Systems and Neural Networks +gr-qc/0506032 +hep-lat/9201003 Lattice +hep-ph/0605126 Phenomenology +hep-ph/9908518 Phenomenology +hep-ph/9912535 Phenomenology +hep-ph/9912536 Phenomenology +math-ph/0004005 +quant-ph/9911096 +0708.1993 Other Quantitative Biology +0711.4356 +0806.4768 Differential Geometry +0808.1279 +0809.4742 +0811.1780 +0812.0810 +0812.1047 Mesoscale and Nanoscale Physics +0901.1821 Optimization and Control +0903.4447 Cosmology and Nongalactic Astrophysics +0904.2396 Mesoscale and Nanoscale Physics +0911.2487 Quantum Gases +0911.3108 Artificial Intelligence +0911.4225 Materials Science +0911.4227 Materials Science +1001.5277 Solar and Stellar Astrophysics +1002.0524 +1003.5952 Theory +1005.4286 +1006.2877 Materials Science +1006.4147 +1006.4656 Cosmology and Nongalactic Astrophysics +1006.5585 Chaotic Dynamics +1007.1864 Materials Science +1007.4436 Soft Condensed Matter +1008.4105 Strongly Correlated Electrons +1009.5362 Lattice +1010.0086 Representation Theory +1011.1354 Strongly Correlated Electrons +1011.4014 Statistical Mechanics +1011.5226 Instrumentation and Methods for Astrophysics +1012.1927 Mesoscale and Nanoscale Physics +1012.3016 Phenomenology +1012.5338 Materials Science +1012.5971 Lattice +1101.1117 +1101.1348 Dynamical Systems +1101.2444 Theory +1101.2487 Materials Science +1101.4962 Rings and Algebras +1101.5260 Digital Libraries +1101.5402 Pattern Formation and Solitons +1101.5403 Materials Science +1101.5406 Quantum Gases +1101.5407 Data Structures and Algorithms +1101.5411 Discrete Mathematics +1101.5426 Spectral Theory +1101.5428 Distributed, Parallel, and Cluster Computing +1101.5432 +1101.5433 Mesoscale and Nanoscale Physics +1101.5435 Machine Learning +1101.5436 Analysis of PDEs +1101.5438 Data Analysis, Statistics and Probability +1101.5441 Logic in Computer Science +1101.5442 Logic in Computer Science +1101.5443 Logic in Computer Science +1101.5444 Logic in Computer Science +1101.5445 Logic in Computer Science +1101.5446 Logic in Computer Science +1101.5449 Cryptography and Security +1101.5457 Strongly Correlated Electrons +1101.5460 Artificial Intelligence +1101.5470 Rings and Algebras +1101.5472 Analysis of PDEs +1101.5475 Computational Finance +1101.5477 Number Theory +1101.5482 Probability +1101.5483 Analysis of PDEs +1101.5484 +1101.5489 Algebraic Geometry +1101.5490 Graphics +1101.5494 Computation and Language +1101.5495 Neurons and Cognition +1101.5498 Mesoscale and Nanoscale Physics +1101.5506 Data Structures and Algorithms +1101.5507 Astrophysics of Galaxies +1101.5509 Networking and Internet Architecture +1101.5512 +1101.5513 Strongly Correlated Electrons +1101.5522 +1101.5539 Probability +1101.5546 Geophysics +1101.5549 Differential Geometry +1101.5550 High Energy Astrophysical Phenomena +1101.5554 Solar and Stellar Astrophysics +1101.5561 Functional Analysis +1101.5568 Solar and Stellar Astrophysics +1101.5570 Operator Algebras +1101.5573 Algebraic Topology +1101.5574 Optimization and Control +1101.5577 Soft Condensed Matter +1101.5583 High Energy Astrophysical Phenomena +1101.5586 Data Structures and Algorithms +1101.5588 Soft Condensed Matter +1101.5592 +1101.5599 Materials Science +1101.5601 Solar and Stellar Astrophysics +1101.5608 Combinatorics +1101.5613 Cryptography and Security +1101.5614 Geometric Topology +1101.5617 Computer Science and Game Theory +1101.5621 Combinatorics +astro-ph/0507072 +astro-ph/0609385 +cond-mat/0602648 Mesoscale and Nanoscale Physics +hep-ph/0207080 Phenomenology +hep-ph/0209131 Phenomenology +hep-ph/0210359 Phenomenology +hep-ph/0306001 Phenomenology +hep-ph/0505125 Phenomenology +0706.1536 Functional Analysis +0706.1540 Functional Analysis +0710.2898 Functional Analysis +0712.1001 Data Analysis, Statistics and Probability +0802.4392 Materials Science +0803.0810 Materials Science +0807.0540 Number Theory +0807.1191 Symplectic Geometry +0810.4678 General Physics +0902.4869 Functional Analysis +0904.1331 Combinatorics +0904.1608 Number Theory +0904.4099 Risk Management +0907.1404 Dynamical Systems +0908.1047 General Physics +0912.0239 Combinatorics +1001.3038 Other Computer Science +1002.2675 +1003.0655 General Physics +1003.0932 Superconductivity +1003.1876 Probability +1003.2399 Mesoscale and Nanoscale Physics +1003.2538 +1003.3692 Dynamical Systems +1004.1931 +1005.1560 Information Theory +1005.5371 History and Overview +1006.0093 +1006.1601 +1007.0694 +1007.1793 Strongly Correlated Electrons +1007.2601 Phenomenology +1007.4205 Cosmology and Nongalactic Astrophysics +1008.0790 Combinatorics +1008.1801 High Energy Astrophysical Phenomena +1008.1922 Pattern Formation and Solitons +1008.2343 Optics +1008.3580 +1008.3937 Strongly Correlated Electrons +1009.0911 Other Condensed Matter +1009.2513 Atomic Physics +1009.3888 Systems and Control +1009.4147 +1009.4348 Optics +1009.4494 Quantum Algebra +1009.5213 +1009.5783 Group Theory +1009.5786 Materials Science +1009.6189 +1010.1865 Probability +1010.1907 Exactly Solvable and Integrable Systems +1010.2274 +1010.4441 Mesoscale and Nanoscale Physics +1010.5892 Mesoscale and Nanoscale Physics +1011.1760 Combinatorics +1011.2161 Other Condensed Matter +1012.3436 Superconductivity +1012.4820 Complex Variables +1012.5631 Number Theory +1102.0016 +1102.0263 Algebraic Geometry +1102.0747 Group Theory +1102.0885 +1102.1138 Discrete Mathematics +1102.1536 Artificial Intelligence +1102.1650 Group Theory +1102.1736 Complex Variables +1102.1739 Functional Analysis +1102.1742 Cosmology and Nongalactic Astrophysics +1102.1745 Data Structures and Algorithms +1102.1747 Data Structures and Algorithms +1102.1754 Distributed, Parallel, and Cluster Computing +1102.1756 Commutative Algebra +1102.1760 Digital Libraries +1102.1761 Medical Physics +1102.1764 Combinatorics +1102.1768 Rings and Algebras +1102.1771 +1102.1784 Mesoscale and Nanoscale Physics +1102.1790 Geometric Topology +1102.1799 Phenomenology +1102.1800 Metric Geometry +1102.1803 Information Retrieval +1102.1811 Atomic Physics +1102.1812 Dynamical Systems +1102.1822 Statistics Theory +1102.1827 Cosmology and Nongalactic Astrophysics +1102.1830 Statistics Theory +1102.1833 Complex Variables +1102.1834 Algebraic Geometry +1102.1839 Physics Education +1102.1845 Numerical Analysis +1102.1847 Algebraic Geometry +1102.1851 General Finance +1102.1857 Statistics Theory +1102.1859 Discrete Mathematics +1102.1861 Representation Theory +1102.1862 Soft Condensed Matter +1102.1864 Number Theory +1102.1865 Soft Condensed Matter +1102.1871 Probability +1102.1875 Statistics Theory +1102.1878 General Physics +1102.1884 Solar and Stellar Astrophysics +1102.1887 Optimization and Control +1102.1893 Physics Education +1102.1897 Populations and Evolution +1102.1899 Materials Science +1102.1901 Cosmology and Nongalactic Astrophysics +1102.1924 Functional Analysis +1102.1925 Experiment +1102.1928 Populations and Evolution +1102.1930 Superconductivity +1102.1935 Logic in Computer Science +1102.1939 Materials Science +1102.1941 +1102.1955 Soft Condensed Matter +1102.1956 Algebraic Geometry +1102.1962 Quantum Algebra +1102.1966 Differential Geometry +astro-ph/0609509 +cond-mat/0702682 Materials Science +gr-qc/0701168 +hep-ph/0109031 Phenomenology +math/0409338 Representation Theory +math/0701800 Combinatorics +physics/0411087 Data Analysis, Statistics and Probability +1104.4295 Computer Vision and Pattern Recognition +0710.3722 Algebraic Topology +0802.1800 Commutative Algebra +0812.1180 Biomolecules +0901.3088 Commutative Algebra +0901.3897 Commutative Algebra +0905.4652 +0906.0821 Differential Geometry +0906.5462 Statistics Theory +0907.2100 Probability +0907.2663 Computational Complexity +0907.5215 Algebraic Geometry +0908.3617 Materials Science +0909.5634 Statistical Mechanics +1001.3880 Theory +1003.0291 High Energy Astrophysical Phenomena +1003.2912 Commutative Algebra +1003.5710 Functional Analysis +1004.0170 Commutative Algebra +1006.3684 Probability +1006.4105 Theory +1006.5145 Theory +1007.2076 Phenomenology +1008.0679 Superconductivity +1009.4411 Statistical Mechanics +1009.5284 Theory +1010.2728 Biological Physics +1010.4416 +1010.4730 Materials Science +1011.2695 +1011.2715 Strongly Correlated Electrons +1012.3974 Materials Science +1101.2972 Materials Science +1101.3177 Phenomenology +1102.0584 +1102.3504 Cryptography and Security +1102.4624 Theory +1103.2096 Quantum Gases +1103.2327 +1103.3350 Quantum Gases +1104.0182 +1104.0244 Cosmology and Nongalactic Astrophysics +1104.2127 +1104.3107 +1104.3458 Phenomenology +1104.3459 Lattice +1104.3907 Materials Science +1104.5533 Data Structures and Algorithms +1105.0868 Metric Geometry +1105.1007 Algebraic Geometry +1105.2884 +1105.3379 Number Theory +1105.4209 Phenomenology +1105.4364 Theory +1106.0177 +1106.0553 +1106.0944 Instrumentation and Methods for Astrophysics +1106.1655 Quantum Gases +1106.2119 +1106.2899 Soft Condensed Matter +1106.3426 Strongly Correlated Electrons +1106.3543 Optimization and Control +1106.3650 Quantum Gases +1106.5668 Materials Science +1107.0304 Classical Physics +1107.0734 +1107.2814 Dynamical Systems +1107.4331 High Energy Astrophysical Phenomena +1107.4698 Mesoscale and Nanoscale Physics +1107.5069 Geometric Topology +1107.5634 Analysis of PDEs +1108.1683 Classical Analysis and ODEs +1108.1788 Biomolecules +1108.2218 Materials Science +1108.2225 Materials Science +1108.2226 Materials Science +1108.2324 Quantum Gases +1108.3025 Optimization and Control +1108.4599 Mesoscale and Nanoscale Physics +1109.0509 +1109.0707 Combinatorics +1109.2466 Phenomenology +1109.2696 Networking and Internet Architecture +1109.2777 Optimization and Control +1109.2857 Differential Geometry +1109.2866 Functional Analysis +1109.2984 Systems and Control +1109.3151 Systems and Control +1109.3187 Cosmology and Nongalactic Astrophysics +1109.3320 Optimization and Control +1109.3448 History and Philosophy of Physics +1109.3462 Algebraic Geometry +1109.3472 Phenomenology +1109.3476 Cosmology and Nongalactic Astrophysics +1109.3481 Numerical Analysis +1109.3482 Group Theory +1109.3484 Complex Variables +1109.3497 Solar and Stellar Astrophysics +1109.3499 +1109.3500 Experiment +1109.3502 Geometric Topology +1109.3503 Experiment +1109.3504 Differential Geometry +1109.3507 +1109.3517 Probability +1109.3519 Theory +1109.3525 Populations and Evolution +1109.3527 Analysis of PDEs +1109.3532 Artificial Intelligence +1109.3535 Cosmology and Nongalactic Astrophysics +1109.3541 Analysis of PDEs +1109.3549 +1109.3554 Differential Geometry +1109.3555 Cryptography and Security +1109.3557 Analysis of PDEs +1109.3558 Instrumentation and Methods for Astrophysics +1109.3561 Distributed, Parallel, and Cluster Computing +1109.3566 Algebraic Geometry +1109.3575 +1109.3580 Number Theory +1109.3582 Biomolecules +1109.3592 Optimization and Control +1109.3596 Number Theory +1109.3597 General Physics +1109.3602 Mesoscale and Nanoscale Physics +1109.3606 Computer Science and Game Theory +1109.3607 Statistics Theory +1109.3610 Commutative Algebra +1109.3614 Biological Physics +1109.3616 Combinatorics +1109.3617 Robotics +1109.3618 Analysis of PDEs +1109.3623 Number Theory +1109.3624 General Physics +1109.3629 Cosmology and Nongalactic Astrophysics +1109.3635 Geophysics +1109.3636 Dynamical Systems +1109.3640 Differential Geometry +1109.3646 Representation Theory +1109.3650 Social and Information Networks +1109.3651 Computational Complexity +1109.3652 Functional Analysis +1109.3662 Geophysics +1109.3677 Statistical Mechanics +1109.3680 Materials Science +1109.3683 Spectral Theory +1109.3685 Logic in Computer Science +1109.3688 Medical Physics +1109.3691 Experiment +1109.3695 Cell Behavior +1109.3697 Phenomenology +1109.3700 Artificial Intelligence +1109.3702 Subcellular Processes +cond-mat/0205474 Soft Condensed Matter +cond-mat/0612254 Strongly Correlated Electrons +quant-ph/0608024 +0705.2933 Operator Algebras +0706.4168 Theory +0806.1631 Applications +0806.2520 Operator Algebras +0810.4890 Superconductivity +0811.4488 +0812.1937 +0906.3870 Differential Geometry +0907.0664 +0909.0448 Solar and Stellar Astrophysics +0911.2977 +0912.2609 Numerical Analysis +1001.0552 +1001.2517 Number Theory +1001.2815 Algebraic Geometry +1001.2941 Complex Variables +1002.1110 Analysis of PDEs +1003.0535 Functional Analysis +1003.4115 +1003.5331 Fluid Dynamics +1004.1810 Logic +1004.2096 +1004.3813 Number Theory +1006.3627 Molecular Networks +1006.4252 +1006.5873 Solar and Stellar Astrophysics +1007.1576 Differential Geometry +1008.5365 Quantum Gases +1009.0069 Disordered Systems and Neural Networks +1009.1111 Strongly Correlated Electrons +1010.0066 Optimization and Control +1010.4862 Representation Theory +1011.0607 Lattice +1011.2847 Algebraic Geometry +1011.4003 +1011.4562 Solar and Stellar Astrophysics +1012.0578 Fluid Dynamics +1012.2276 Adaptation and Self-Organizing Systems +1101.3760 +1101.4300 +1102.0399 Materials Science +1102.2870 +1103.0319 Combinatorics +1103.1311 +1103.2017 +1103.2544 Information Theory +1103.4735 Phenomenology +1104.1232 Superconductivity +1104.3733 Data Analysis, Statistics and Probability +1104.4301 Lattice +1104.4884 Geometric Topology +1104.5354 Strongly Correlated Electrons +1104.5583 Populations and Evolution +1105.0565 Statistical Mechanics +1105.0596 Rings and Algebras +1105.1214 Numerical Analysis +1105.1288 Data Analysis, Statistics and Probability +1105.1651 Disordered Systems and Neural Networks +1105.2488 Quantum Gases +1105.2749 +1105.6367 Numerical Analysis +1106.2450 Theory +1106.2487 Optics +1106.4505 Mesoscale and Nanoscale Physics +1106.4796 Theory +1106.5346 Information Theory +1107.0125 Materials Science +1107.0881 Theory +1107.0980 Functional Analysis +1107.2477 Superconductivity +1107.3220 Differential Geometry +1107.3954 Symplectic Geometry +1107.3979 Optimization and Control +1107.4100 Mesoscale and Nanoscale Physics +1107.5282 Number Theory +1107.5810 Astrophysics of Galaxies +1108.0393 Phenomenology +1108.0912 Superconductivity +1108.1608 +1108.2442 Phenomenology +1108.3111 Algebraic Geometry +1108.3826 Mesoscale and Nanoscale Physics +1108.4462 Phenomenology +1108.4965 +1108.5152 Theory +1108.5194 Superconductivity +1109.0377 Numerical Analysis +1109.0754 Group Theory +1109.2960 Differential Geometry +1110.0703 Metric Geometry +1110.0707 Metric Geometry +1110.1404 Mesoscale and Nanoscale Physics +1110.2787 Cosmology and Nongalactic Astrophysics +1110.3652 Atomic Physics +1110.6044 Statistical Mechanics +1111.0354 +1111.0629 Strongly Correlated Electrons +1111.3267 +1111.3342 Quantum Algebra +1111.3641 Phenomenology +1111.3778 Group Theory +1111.3845 Rings and Algebras +1111.3951 Phenomenology +1111.3971 Numerical Analysis +1111.3972 Lattice +1111.3973 Representation Theory +1111.3976 Cosmology and Nongalactic Astrophysics +1111.3984 Probability +1111.3986 Earth and Planetary Astrophysics +1111.3999 Solar and Stellar Astrophysics +1111.4000 Solar and Stellar Astrophysics +1111.4018 +1111.4019 Spectral Theory +1111.4023 Number Theory +1111.4028 Differential Geometry +1111.4036 Networking and Internet Architecture +1111.4038 +1111.4048 Pattern Formation and Solitons +1111.4050 History and Overview +1111.4052 Computer Vision and Pattern Recognition +1111.4056 Physics Education +1111.4057 Number Theory +1111.4058 Physics Education +1111.4065 Number Theory +1111.4066 Number Theory +1111.4067 Number Theory +1111.4071 Number Theory +1111.4074 Differential Geometry +1111.4075 Instrumentation and Detectors +1111.4077 +1111.4079 Geometric Topology +1111.4082 Number Theory +1111.4085 Quantum Algebra +1111.4089 Number Theory +1111.4090 Networking and Internet Architecture +1111.4094 Functional Analysis +1111.4101 Optics +1111.4103 +1111.4106 Subcellular Processes +1111.4108 Operator Algebras +1111.4114 Analysis of PDEs +1111.4115 Theory +1111.4117 Algebraic Geometry +1111.4118 Optimization and Control +1111.4119 +1111.4126 Optics +1111.4129 High Energy Astrophysical Phenomena +1111.4130 Probability +1111.4133 Plasma Physics +1111.4136 Computer Science and Game Theory +1111.4140 General Physics +1111.4146 Algebraic Topology +1111.4148 Statistics Theory +1111.4152 Number Theory +1111.4153 Phenomenology +1111.4154 Phenomenology +1111.4160 Operator Algebras +1111.4163 +1111.4166 Operator Algebras +1111.4168 Strongly Correlated Electrons +1111.4184 Algebraic Geometry +1111.4185 Theory +1111.4189 Combinatorics +1111.4190 Experiment +1111.4194 Superconductivity +1111.4196 Statistics Theory +1111.4198 +1111.4200 Algebraic Geometry +1111.4201 Quantum Algebra +gr-qc/0005084 +gr-qc/9810030 +gr-qc/9909081 +gr-qc/9912014 +math/0101099 Operator Algebras +math/0404166 Operator Algebras +math/0610429 Geometric Topology +math/0611520 Operator Algebras +math/0702775 Operator Algebras +physics/9909019 Classical Physics +quant-ph/0612209 +0704.2297 +0707.0267 Theory +0707.3204 Phenomenology +0708.2865 Theory +0709.3019 +0710.2328 Representation Theory +0710.3230 Theory +0710.5884 +0712.3062 +0805.3676 Analysis of PDEs +0805.3756 Differential Geometry +0805.4093 Differential Geometry +0806.0481 Phenomenology +0807.3919 Theory +0807.4508 +0808.1919 Theory +0809.5219 +0902.0146 Cosmology and Nongalactic Astrophysics +0902.4505 Materials Science +0903.0380 Theory +0903.0784 Strongly Correlated Electrons +0903.2592 +0903.3927 Differential Geometry +0903.3932 Differential Geometry +0904.4713 Algebraic Geometry +0904.4804 +0904.4894 Phenomenology +0905.2942 +0905.4141 Algebraic Geometry +0906.4652 Classical Analysis and ODEs +0907.2050 Data Structures and Algorithms +0908.2519 Physics and Society +0909.3986 +0909.5257 Phenomenology +0910.0545 Probability +0910.2777 Theory +0910.4428 Theory +0911.0522 Probability +0911.2260 Cosmology and Nongalactic Astrophysics +0911.3429 Phenomenology +0911.4647 Phenomenology +0911.5351 Instrumentation and Methods for Astrophysics +0912.3396 +0912.4094 Phenomenology +0912.5042 Solar and Stellar Astrophysics +1001.0183 Chaotic Dynamics +1001.0574 Phenomenology +1001.0846 Quantum Gases +1001.1082 +1001.3147 Phenomenology +1001.3436 Theory +1001.4675 Phenomenology +1001.5321 Phenomenology +1002.0988 Exactly Solvable and Integrable Systems +1002.2531 Phenomenology +1002.2785 Lattice +1003.1223 Phenomenology +1003.1303 Theory +1003.2073 Lattice +1003.3945 Phenomenology +1003.4163 Quantum Gases +1003.4807 Phenomenology +1003.6078 Phenomenology +1004.0886 Lattice +1004.1174 Theory +1004.5399 Phenomenology +1004.5405 +1005.1075 Phenomenology +1005.1822 Theory +1005.2891 +1005.3433 Physics and Society +1005.4864 Phenomenology +1005.4988 +1005.5107 Theory +1005.5146 Space Physics +1006.1545 Representation Theory +1006.2124 Theory +1006.2466 Theory +1006.3260 +1006.3264 Soft Condensed Matter +1006.3327 +1006.3387 Theory +1006.3413 K-Theory and Homology +1006.3871 Theory +1006.4180 Superconductivity +1006.4964 Phenomenology +1006.5239 Dynamical Systems +1006.5331 Phenomenology +1006.5373 Phenomenology +1006.5395 Combinatorics +1007.0993 Theory +1007.1671 Algebraic Geometry +1007.2625 Quantum Gases +1007.3670 +1007.4078 Theory +1007.4950 +1008.0144 Probability +1008.1305 Theory +1008.2243 Theory +1008.4193 +1008.4449 Phenomenology +1009.0089 Strongly Correlated Electrons +1009.0660 +1009.1251 Phenomenology +1009.1476 +1009.1781 Experiment +1009.2328 Phenomenology +1009.2585 +1009.3265 Cosmology and Nongalactic Astrophysics +1009.3333 General Physics +1009.4257 Theory +1009.5039 Theory +1009.5458 +1009.5666 Phenomenology +1009.6087 Theory +1009.6196 Quantum Gases +1010.0007 Astrophysics of Galaxies +1010.0405 Phenomenology +1010.1104 Theory +1010.1274 +1010.2720 Theory +1010.3377 Algebraic Geometry +1010.3839 Phenomenology +1010.3870 Lattice +1010.4255 Phenomenology +1010.5098 Solar and Stellar Astrophysics +1010.5848 Experiment +1011.0004 Cosmology and Nongalactic Astrophysics +1011.1727 Differential Geometry +1011.2862 +1011.3929 Experiment +1011.4823 Statistical Mechanics +1011.5297 Strongly Correlated Electrons +1012.0383 Theory +1012.4548 Cosmology and Nongalactic Astrophysics +1101.0008 Materials Science +1101.0563 +1101.1102 +1101.1588 Materials Science +1101.2114 Operator Algebras +1101.3522 Phenomenology +1101.4839 Phenomenology +1101.5563 Solar and Stellar Astrophysics +1102.0363 Number Theory +1102.0626 Materials Science +1102.0836 Learning +1102.1263 Solar and Stellar Astrophysics +1102.1310 Number Theory +1102.1396 +1102.1423 Cosmology and Nongalactic Astrophysics +1102.1436 High Energy Astrophysical Phenomena +1102.1456 Discrete Mathematics +1102.1457 Mesoscale and Nanoscale Physics +1102.1458 Combinatorics +1102.1464 Number Theory +1102.1467 Superconductivity +1102.1470 Geometric Topology +1102.1472 Data Structures and Algorithms +1102.1475 Information Theory +1102.1478 Functional Analysis +1102.1488 Combinatorics +1102.1491 Combinatorics +1102.1499 General Physics +1102.1502 Systems and Control +1102.1503 Multimedia +1102.1506 Physics Education +1102.1507 Data Analysis, Statistics and Probability +1102.1508 Medical Physics +1102.1510 Functional Analysis +1102.1511 Functional Analysis +1102.1514 Instrumentation and Methods for Astrophysics +1102.1520 Commutative Algebra +1102.1525 Group Theory +1102.1533 +1102.1534 Cryptography and Security +1102.1540 +1102.1541 Combinatorics +1102.1543 Combinatorics +1102.1544 Data Structures and Algorithms +1102.1560 +1102.1563 +1102.1565 Differential Geometry +1102.1567 Rings and Algebras +1102.1574 Experiment +1102.1577 Algebraic Topology +1102.1578 Classical Analysis and ODEs +1102.1579 +1102.1580 Computer Science and Game Theory +1102.1582 Phenomenology +1102.1585 Dynamical Systems +1102.1603 Optics +1102.1606 Number Theory +1102.1611 Combinatorics +1102.1612 +1102.1613 Other Condensed Matter +1102.1614 Medical Physics +1102.1627 Combinatorics +1102.1635 Popular Physics +1102.1637 Rings and Algebras +1102.1639 Probability +1102.1642 Medical Physics +1102.1644 Popular Physics +1102.1645 Algebraic Topology +1102.1648 Mesoscale and Nanoscale Physics +1102.1654 +1102.1659 Algebraic Geometry +1102.1663 Solar and Stellar Astrophysics +1102.1671 Lattice +1102.1672 Phenomenology +1102.1673 Analysis of PDEs +1102.1678 +1102.1681 General Topology +1102.1687 Algebraic Geometry +1102.1693 Classical Analysis and ODEs +1102.1695 Analysis of PDEs +1102.1697 Instrumentation and Methods for Astrophysics +1102.1698 Differential Geometry +1102.1711 Probability +astro-ph/0205544 +astro-ph/0601514 +astro-ph/9811349 +cond-mat/0604278 Statistical Mechanics +hep-ex/0111043 Experiment +hep-ex/0509038 Experiment +hep-ph/0004031 Phenomenology +hep-ph/0110410 Phenomenology +hep-ph/0204097 Phenomenology +hep-ph/0306242 Phenomenology +hep-ph/0405074 Phenomenology +hep-ph/0411036 Phenomenology +hep-ph/0411063 Phenomenology +hep-ph/0503066 Phenomenology +hep-ph/0509159 Phenomenology +hep-ph/0512224 Phenomenology +hep-ph/9507361 Phenomenology +hep-ph/9508399 Phenomenology +hep-ph/9703434 Phenomenology +hep-ph/9707256 Phenomenology +hep-ph/9712551 Phenomenology +hep-ph/9807435 Phenomenology +hep-ph/9809425 Phenomenology +hep-ph/9902409 Phenomenology +hep-ph/9903309 Phenomenology +hep-ph/9904352 Phenomenology +hep-th/0004117 Theory +hep-th/0106161 Theory +hep-th/0109005 Theory +hep-th/0203057 Theory +hep-th/0304109 Theory +hep-th/0409263 Theory +hep-th/0409272 Theory +hep-th/0411281 Theory +hep-th/0502235 Theory +hep-th/0507227 Theory +hep-th/0511025 Theory +hep-th/0512296 Theory +hep-th/0604077 Theory +hep-th/0607200 Theory +hep-th/9204066 Theory +hep-th/9205019 Theory +hep-th/9206104 Theory +hep-th/9301049 Theory +hep-th/9303060 Theory +hep-th/9502009 Theory +hep-th/9601072 Theory +hep-th/9703021 Theory +hep-th/9703084 Theory +hep-th/9703188 Theory +hep-th/9802047 Theory +hep-th/9803138 Theory +hep-th/9905112 Theory +hep-th/9910110 Theory +hep-th/9912027 Theory +nucl-ex/0211016 +nucl-th/0004030 +nucl-th/0006029 +nucl-th/0011037 +nucl-th/0012065 +nucl-th/0201054 +nucl-th/0205075 +nucl-th/0209018 +nucl-th/0211097 +nucl-th/0307005 +nucl-th/0307034 +nucl-th/0310054 +nucl-th/0401051 +nucl-th/0402086 +nucl-th/0403017 +nucl-th/0404023 +nucl-th/0408002 +nucl-th/0501027 +nucl-th/0501034 +nucl-th/0501059 +nucl-th/0503014 +nucl-th/0504033 +nucl-th/0506031 +nucl-th/0506087 +nucl-th/0510010 +nucl-th/0512073 +nucl-th/0512092 +nucl-th/9411029 +nucl-th/9501022 +nucl-th/9712058 +nucl-th/9804007 +nucl-th/9902001 +nucl-th/9907008 +nucl-th/9907109 +0705.1942 Algebraic Geometry +0705.3586 +0707.1872 +0709.3334 Cryptography and Security +0709.4303 Cryptography and Security +0709.4420 Cryptography and Security +0711.2928 Geometric Topology +0807.2455 Algebraic Geometry +0809.1272 +0811.3881 Statistical Mechanics +0812.0716 Phenomenology +0812.4066 Combinatorics +0812.4319 Combinatorics +0901.0155 Combinatorics +0901.0772 Quantum Algebra +0903.2575 Combinatorics +0904.1981 +0905.3466 Solar and Stellar Astrophysics +0905.3614 Instrumentation and Methods for Astrophysics +0906.2550 +0906.2967 Commutative Algebra +0907.1421 Combinatorics +0910.0078 Geometric Topology +0910.0218 Group Theory +0910.5093 Functional Analysis +0911.0020 Phenomenology +0911.2391 +0912.2368 Group Theory +0912.4397 Quantum Algebra +1001.2876 Logic +1002.4884 Algebraic Geometry +1003.0292 Numerical Analysis +1004.2729 Atomic Physics +1004.4155 Probability +1004.5203 Classical Analysis and ODEs +1005.1107 +1005.3551 Theory +1006.2979 Operator Algebras +1006.3944 Theory +1006.5262 Geometric Topology +1006.5329 Materials Science +1006.5887 Phenomenology +1007.2803 Phenomenology +1007.3861 Analysis of PDEs +1007.4882 +1008.0021 Strongly Correlated Electrons +1008.0829 Theory +1008.1118 +1008.2418 +1008.4570 Phenomenology +1009.0415 +1009.1161 Phenomenology +1009.3919 Combinatorics +1009.4219 Learning +1009.4456 Phenomenology +1010.0912 Phenomenology +1010.1160 Phenomenology +1010.1701 Fluid Dynamics +1010.1780 Theory +1010.4276 Cosmology and Nongalactic Astrophysics +1010.4413 Statistical Mechanics +1010.4489 Cosmology and Nongalactic Astrophysics +1010.5648 General Finance +1011.1555 Phenomenology +1011.2225 Disordered Systems and Neural Networks +1011.4261 Theory +1011.5324 +1011.5337 Quantum Gases +1012.0268 Theory +1012.1480 Theory +1012.3165 +1012.4083 Phenomenology +1012.4390 +1012.4687 Phenomenology +1101.0648 Experiment +1101.1054 +1101.1549 Probability +1101.3875 Phenomenology +1101.3994 +1101.5557 +1101.5758 Phenomenology +1101.5895 Strongly Correlated Electrons +1102.0474 Optics +1102.0488 Superconductivity +1102.1010 Superconductivity +1102.1293 +1102.1318 Quantum Gases +1102.1433 Number Theory +1102.1774 Lattice +1102.1778 Phenomenology +1102.2396 Analysis of PDEs +1102.2594 Differential Geometry +1102.2885 Theory +1102.3628 +1102.5267 Phenomenology +1103.0648 Theory +1103.1171 Theory +1103.2401 Cosmology and Nongalactic Astrophysics +1103.2941 Quantum Gases +1103.2993 Phenomenology +1103.3927 Cosmology and Nongalactic Astrophysics +1103.4281 Algebraic Geometry +1103.4554 +1104.0460 Analysis of PDEs +1104.2980 Cosmology and Nongalactic Astrophysics +1105.0654 Combinatorics +1105.0713 Phenomenology +1105.1539 Cosmology and Nongalactic Astrophysics +1105.2066 Cosmology and Nongalactic Astrophysics +1105.2114 Information Theory +1105.2919 +1105.2941 Fluid Dynamics +1105.3051 +1105.3297 Computational Finance +1105.3330 Solar and Stellar Astrophysics +1105.3447 Atomic Physics +1105.3481 Phenomenology +1105.3487 Theory +1105.3494 Differential Geometry +1105.3510 Statistics Theory +1105.3511 Exactly Solvable and Integrable Systems +1105.3513 Number Theory +1105.3519 Geometric Topology +1105.3521 Representation Theory +1105.3523 Optics +1105.3536 Biological Physics +1105.3538 Neural and Evolutionary Computing +1105.3542 Combinatorics +1105.3545 +1105.3551 Solar and Stellar Astrophysics +1105.3552 Statistics Theory +1105.3556 Solar and Stellar Astrophysics +1105.3561 Statistics Theory +1105.3563 +1105.3564 Commutative Algebra +1105.3569 Information Theory +1105.3571 +1105.3575 Statistics Theory +1105.3576 Chemical Physics +1105.3584 Dynamical Systems +1105.3585 Astrophysics of Galaxies +1105.3591 Instrumentation and Detectors +1105.3594 Portfolio Management +1105.3603 +1105.3605 Computation +1105.3613 Probability +1105.3614 Probability +1105.3615 +1105.3616 Logic +1105.3617 Computer Vision and Pattern Recognition +1105.3623 Representation Theory +1105.3627 Rings and Algebras +1105.3632 Dynamical Systems +1105.3633 Dynamical Systems +1105.3634 Mesoscale and Nanoscale Physics +1105.3635 Artificial Intelligence +1105.3641 Functional Analysis +1105.3643 Algebraic Geometry +1105.3645 Materials Science +1105.3649 Group Theory +1105.3655 Statistics Theory +1105.3656 Analysis of PDEs +1105.3658 Theory +1105.3661 Experiment +1105.3663 Group Theory +1105.3667 +1105.3668 Optimization and Control +1105.3669 Cell Behavior +1105.3674 Logic +1105.3682 Social and Information Networks +1105.3685 Computer Vision and Pattern Recognition +1105.3686 Information Theory +1105.3695 Geometric Topology +1105.3712 Combinatorics +1105.3713 Combinatorics +1105.3714 Group Theory +1105.3717 +1105.3721 Number Theory +1105.3722 Differential Geometry +1105.3723 Numerical Analysis +gr-qc/9606050 +hep-ph/9808468 Phenomenology +hep-th/0005095 Theory +hep-th/0406164 Theory +math/0110314 Algebraic Topology +math/0110331 Algebraic Topology +math/0110332 Algebraic Topology +math/0605333 Rings and Algebras +math/0606234 Group Theory +math/0607167 Group Theory +math/0607184 Group Theory +physics/0510226 Optics +physics/0511231 Optics +0704.1080 +0704.1880 Statistical Mechanics +0704.3495 Lattice +0705.2856 Statistical Mechanics +0707.1300 Theory +0710.4213 Theory +0710.5904 Statistical Mechanics +0711.2131 Lattice +0802.4209 Dynamical Systems +0803.0879 Statistics Theory +0804.1426 Dynamical Systems +0806.1813 Lattice +0806.3457 +0811.1809 Dynamical Systems +0812.3526 Statistical Mechanics +0903.5197 Optimization and Control +0904.4805 +0907.3273 Statistical Finance +0908.2359 Computation +0909.1999 Statistical Mechanics +0909.3667 Probability +0910.1955 Statistical Mechanics +0910.3173 Theory +0911.0667 +0911.0693 Theory +0911.0717 Dynamical Systems +0911.3933 Probability +0912.0445 Theory +0912.2044 Probability +0912.3331 Statistical Mechanics +1001.1121 Quantum Gases +1001.3065 Analysis of PDEs +1001.3796 Lattice +1002.4279 Statistical Mechanics +1002.4353 Statistical Mechanics +1003.1944 +1003.4160 Analysis of PDEs +1003.5137 Physics and Society +1003.5242 Strongly Correlated Electrons +1004.2051 Cosmology and Nongalactic Astrophysics +1004.2757 Information Theory +1004.2965 +1004.4818 Cosmology and Nongalactic Astrophysics +1004.5139 Earth and Planetary Astrophysics +1004.5143 Mesoscale and Nanoscale Physics +1004.5145 Soft Condensed Matter +1005.4038 Superconductivity +1006.1233 +1006.1312 Combinatorics +1006.3155 Information Theory +1006.3641 Cosmology and Nongalactic Astrophysics +1006.3692 Combinatorics +1006.3766 Phenomenology +1006.5930 Disordered Systems and Neural Networks +1007.0504 Experiment +1007.0881 Statistical Mechanics +1007.2072 Phenomenology +1007.4718 +1007.5355 Phenomenology +1008.0361 Disordered Systems and Neural Networks +1008.0868 Statistical Mechanics +1008.1412 Theory +1008.3110 Theory +1008.3755 +1008.4387 Mesoscale and Nanoscale Physics +1009.0063 Phenomenology +1009.0326 Experiment +1009.0942 Data Analysis, Statistics and Probability +1009.0950 Cosmology and Nongalactic Astrophysics +1009.0955 Quantum Algebra +1009.2420 Commutative Algebra +1009.4885 Theory +1009.4952 Theory +1009.5429 Theory +1010.3940 Experiment +1010.3985 Soft Condensed Matter +1010.4105 Theory +1010.5512 General Physics +1010.5613 Theory +1010.5691 Information Theory +1010.5818 K-Theory and Homology +1010.6075 Theory +1011.0182 Statistical Mechanics +1011.0225 Superconductivity +1011.0728 Phenomenology +1011.0742 +1011.0999 Theory +1011.1074 Phenomenology +1011.1554 Phenomenology +1011.2095 Phenomenology +1011.2214 Phenomenology +1011.2630 Phenomenology +1011.2930 Superconductivity +1011.3765 Theory +1011.4101 Theory +1011.4179 Phenomenology +1011.4287 Theory +1011.5276 Phenomenology +1011.5533 Astrophysics of Galaxies +1011.5911 +1011.6144 Theory +1011.6379 Phenomenology +1011.6654 Theory +1012.1055 Theory +1012.1165 Phenomenology +1012.1812 Theory +1012.1832 Theory +1012.2747 Theory +1012.2760 Theory +1012.2880 Theory +1012.3884 Theory +1012.4187 Cosmology and Nongalactic Astrophysics +1012.4532 Logic +1012.5048 Theory +1012.5567 Mesoscale and Nanoscale Physics +1101.0402 Lattice +1101.2278 +1101.2702 Phenomenology +1101.3035 Phenomenology +1101.3166 Phenomenology +1101.3372 +1102.0605 Earth and Planetary Astrophysics +1102.0867 Earth and Planetary Astrophysics +1102.1070 Instrumentation and Methods for Astrophysics +1102.1568 Soft Condensed Matter +1102.2143 Lattice +1102.2178 Chaotic Dynamics +1102.2432 Accelerator Physics +1102.2540 Optics +1102.2569 Digital Libraries +1102.2649 Analysis of PDEs +1102.2700 Information Theory +1102.2799 Information Theory +1102.2831 Computation and Language +1102.2901 +1102.2904 Information Theory +1102.2914 Number Theory +1102.2915 Data Structures and Algorithms +1102.2919 History and Overview +1102.2924 Algebraic Geometry +1102.2925 Statistics Theory +1102.2926 Probability +1102.2937 Astrophysics of Galaxies +1102.2946 Information Theory +1102.2950 Combinatorics +1102.2954 Materials Science +1102.2957 Algebraic Geometry +1102.2959 Soft Condensed Matter +1102.2961 Combinatorics +1102.2962 Mesoscale and Nanoscale Physics +1102.2964 Rings and Algebras +1102.2965 Rings and Algebras +1102.2968 Plasma Physics +1102.2969 Databases +1102.2974 General Physics +1102.2975 Optimization and Control +1102.2979 Solar and Stellar Astrophysics +1102.2981 Methodology +1102.2982 Methodology +1102.2984 Artificial Intelligence +1102.2986 Information Theory +1102.2987 Methodology +1102.2988 +1102.2993 Methodology +1102.2998 Analysis of PDEs +1102.3005 Methodology +1102.3007 General Physics +1102.3008 Metric Geometry +1102.3009 General Finance +1102.3011 Materials Science +1102.3013 Networking and Internet Architecture +1102.3021 Group Theory +1102.3023 Soft Condensed Matter +1102.3025 Computer Science and Game Theory +1102.3029 Data Structures and Algorithms +1102.3035 Soft Condensed Matter +1102.3036 Dynamical Systems +1102.3047 Digital Libraries +1102.3054 Mesoscale and Nanoscale Physics +1102.3055 Group Theory +1102.3058 Distributed, Parallel, and Cluster Computing +1102.3059 Performance +1102.3060 Instrumentation and Methods for Astrophysics +1102.3063 Optimization and Control +1102.3066 Astrophysics of Galaxies +1102.3075 Number Theory +1102.3079 Discrete Mathematics +1102.3080 Information Theory +1102.3090 Solar and Stellar Astrophysics +1102.3095 General Physics +1102.3099 Earth and Planetary Astrophysics +1102.3104 Complex Variables +1102.3110 Mesoscale and Nanoscale Physics +1102.3111 Analysis of PDEs +1102.3112 Other Computer Science +1102.3115 Soft Condensed Matter +1102.3120 Information Theory +1102.3121 +1102.3127 Information Theory +1102.3140 Information Theory +1102.3144 Probability +1102.3145 Combinatorics +1102.3146 Materials Science +1102.3147 Combinatorics +1102.3154 General Physics +1102.3156 Algebraic Geometry +1102.3157 Cosmology and Nongalactic Astrophysics +1102.3161 Combinatorics +1102.3165 Computational Geometry +1102.3169 +1102.3171 General Physics +1102.3172 Probability +1102.3181 Information Theory +astro-ph/0012284 +astro-ph/0103085 +astro-ph/0208276 +astro-ph/0212533 +astro-ph/0304237 +astro-ph/0312227 +astro-ph/0403527 +astro-ph/0404205 +astro-ph/0407618 +astro-ph/0408138 +astro-ph/9605055 +astro-ph/9805108 +astro-ph/9906456 +cond-mat/0406289 Statistical Mechanics +cond-mat/0408478 Superconductivity +cond-mat/0409311 Statistical Mechanics +cond-mat/0409576 Statistical Mechanics +cond-mat/0411512 Statistical Mechanics +cond-mat/0412157 Other Condensed Matter +cond-mat/0412327 Statistical Mechanics +cond-mat/0412446 Statistical Mechanics +cond-mat/0503014 Superconductivity +cond-mat/0503393 Statistical Mechanics +cond-mat/0503555 Strongly Correlated Electrons +cond-mat/0505563 Other Condensed Matter +cond-mat/0505698 Statistical Mechanics +cond-mat/0506733 Mesoscale and Nanoscale Physics +cond-mat/0508353 Strongly Correlated Electrons +cond-mat/0509401 Statistical Mechanics +cond-mat/0509675 Strongly Correlated Electrons +cond-mat/0509682 Statistical Mechanics +cond-mat/0509765 Statistical Mechanics +cond-mat/0511014 Other Condensed Matter +cond-mat/0511272 Strongly Correlated Electrons +cond-mat/0511439 Disordered Systems and Neural Networks +cond-mat/0512222 Statistical Mechanics +cond-mat/0512529 Statistical Mechanics +cond-mat/0512586 Mesoscale and Nanoscale Physics +cond-mat/0603038 Statistical Mechanics +cond-mat/0604412 Statistical Mechanics +cond-mat/0606453 Mesoscale and Nanoscale Physics +cond-mat/0607189 Statistical Mechanics +cond-mat/0608496 Statistical Mechanics +cond-mat/0609284 Statistical Mechanics +cond-mat/0610254 Statistical Mechanics +cond-mat/0610260 Statistical Mechanics +cond-mat/0610266 Statistical Mechanics +cond-mat/0610559 Statistical Mechanics +cond-mat/0610833 Statistical Mechanics +cond-mat/0611321 Statistical Mechanics +cond-mat/0611652 Statistical Mechanics +cond-mat/0611707 Disordered Systems and Neural Networks +cond-mat/0612270 Statistical Mechanics +cond-mat/0701207 Statistical Mechanics +cond-mat/0702044 Statistical Mechanics +cond-mat/0703226 Statistical Mechanics +cond-mat/9509128 +gr-qc/0106091 +gr-qc/0702142 +hep-ex/0110059 Experiment +hep-lat/0010070 Lattice +hep-lat/0106012 Lattice +hep-lat/0109016 Lattice +hep-lat/0110083 Lattice +hep-lat/0204009 Lattice +hep-lat/0206007 Lattice +hep-lat/0208039 Lattice +hep-lat/0208066 Lattice +hep-lat/0209153 Lattice +hep-lat/0210053 Lattice +hep-lat/0306025 Lattice +hep-lat/0310043 Lattice +hep-lat/0408044 Lattice +hep-lat/0501021 Lattice +hep-lat/0509172 Lattice +hep-lat/0509175 Lattice +hep-lat/0612025 Lattice +hep-lat/9609001 Lattice +hep-lat/9804016 Lattice +hep-lat/9806019 Lattice +hep-lat/9806031 Lattice +hep-lat/9809013 Lattice +hep-lat/9810002 Lattice +hep-lat/9810052 Lattice +hep-lat/9908023 Lattice +hep-lat/9910029 Lattice +hep-lat/9912005 Lattice +hep-lat/9912058 Lattice +hep-ph/0103243 Phenomenology +hep-ph/0106272 Phenomenology +hep-ph/0302175 Phenomenology +hep-ph/0312223 Phenomenology +hep-ph/0403020 Phenomenology +hep-ph/0503271 Phenomenology +hep-ph/0506168 Phenomenology +hep-ph/0506266 Phenomenology +hep-ph/0507249 Phenomenology +hep-ph/9209236 Phenomenology +hep-ph/9209292 Phenomenology +hep-ph/9409350 Phenomenology +hep-ph/9506283 Phenomenology +hep-ph/9511357 Phenomenology +hep-ph/9602260 Phenomenology +hep-ph/9603408 Phenomenology +hep-ph/9608319 Phenomenology +hep-ph/9704286 Phenomenology +hep-ph/9705331 Phenomenology +hep-ph/9710273 Phenomenology +hep-ph/9804285 Phenomenology +hep-ph/9812276 Phenomenology +hep-ph/9908380 Phenomenology +hep-ph/9911365 Phenomenology +hep-th/0306188 Theory +hep-th/0307050 Theory +hep-th/0312201 Theory +hep-th/0312235 Theory +hep-th/0403178 Theory +hep-th/0404136 Theory +hep-th/0405152 Theory +hep-th/0405264 Theory +hep-th/0407143 Theory +hep-th/0410004 Theory +hep-th/0410151 Theory +hep-th/0501173 Theory +hep-th/0504124 Theory +hep-th/0505085 Theory +hep-th/0506105 Theory +hep-th/0506114 Theory +hep-th/0507053 Theory +hep-th/0507110 Theory +hep-th/0507139 Theory +hep-th/0507209 Theory +hep-th/0507211 Theory +hep-th/0509069 Theory +hep-th/0510096 Theory +hep-th/0510124 Theory +hep-th/0510238 Theory +hep-th/0511168 Theory +hep-th/0512273 Theory +hep-th/0601107 Theory +hep-th/0603039 Theory +hep-th/0603064 Theory +hep-th/0603157 Theory +hep-th/0605223 Theory +hep-th/0606170 Theory +hep-th/0607014 Theory +hep-th/0607232 Theory +hep-th/0609224 Theory +hep-th/0610251 Theory +hep-th/0610332 Theory +hep-th/0611057 Theory +hep-th/0611127 Theory +hep-th/0611142 Theory +hep-th/0611186 Theory +hep-th/0612200 Theory +hep-th/0612256 Theory +hep-th/0703124 Theory +math-ph/0211003 +math-ph/0405047 +math-ph/0406021 +math-ph/0408011 +math-ph/0411021 +math-ph/0411038 +math-ph/0411076 +math-ph/0504002 +math-ph/0601038 +math-ph/0601061 +math-ph/0604006 +math-ph/0702012 +math/0510572 Number Theory +math/0701925 Group Theory +nlin/0412058 Exactly Solvable and Integrable Systems +nlin/0502050 Exactly Solvable and Integrable Systems +nlin/0602003 Exactly Solvable and Integrable Systems +nlin/0610017 Exactly Solvable and Integrable Systems +nlin/0610054 Exactly Solvable and Integrable Systems +physics/0508149 Data Analysis, Statistics and Probability +quant-ph/0608026 +0705.0344 Algebraic Geometry +0705.4570 Statistical Mechanics +0707.3994 Strongly Correlated Electrons +0804.0766 Atomic Physics +0804.2937 Statistics Theory +0805.1751 Statistical Mechanics +0810.1889 Superconductivity +0811.3771 +0903.0626 Statistical Mechanics +0906.0487 Combinatorics +0907.3704 +0910.1316 Dynamical Systems +0911.2302 +0912.2058 Theory +0912.5176 Information Theory +1001.4358 Quantum Gases +1003.0716 +1003.3007 Soft Condensed Matter +1006.1571 General Topology +1006.4243 +1007.3470 Numerical Analysis +1008.0212 Computer Science and Game Theory +1008.3159 Cosmology and Nongalactic Astrophysics +1009.3034 Theory +1009.4537 Rings and Algebras +1010.1722 Solar and Stellar Astrophysics +1010.3922 Algebraic Geometry +1010.3929 K-Theory and Homology +1010.5650 Cosmology and Nongalactic Astrophysics +1011.2259 Materials Science +1011.3565 Analysis of PDEs +1011.5493 Phenomenology +1012.0543 Classical Analysis and ODEs +1012.3014 Theory +1012.4985 General Physics +1012.5177 Strongly Correlated Electrons +1012.5759 General Topology +1101.0135 General Physics +1101.0601 General Physics +1101.2008 Algebraic Topology +1101.2128 +1101.2551 Differential Geometry +1102.1130 +1102.2442 Differential Geometry +1102.2590 Statistical Mechanics +1102.3726 Strongly Correlated Electrons +1102.3727 Optimization and Control +1102.4884 Data Structures and Algorithms +1102.5130 Superconductivity +1102.5591 Optics +1103.0589 Lattice +1103.0923 Differential Geometry +1103.1810 Lattice +1103.3178 Functional Analysis +1103.5227 Number Theory +1104.1581 General Physics +1104.1776 Algebraic Geometry +1104.2789 Number Theory +1104.3642 General Physics +1104.4560 Phenomenology +1104.4670 Optimization and Control +1104.4974 Differential Geometry +1104.5309 Instrumentation and Detectors +1104.5362 Formal Languages and Automata Theory +1104.5508 Complex Variables +1104.5510 Quantitative Methods +1104.5513 Instrumentation and Methods for Astrophysics +1104.5516 Instrumentation and Methods for Astrophysics +1104.5520 Statistical Mechanics +1104.5525 Optimization and Control +1104.5529 Quantum Algebra +1104.5532 Molecular Networks +1104.5534 Information Theory +1104.5536 +1104.5539 Information Theory +1104.5544 Combinatorics +1104.5546 Information Theory +1104.5549 Materials Science +1104.5558 Algebraic Geometry +1104.5559 Group Theory +1104.5562 +1104.5563 Phenomenology +1104.5567 Probability +1104.5568 Mesoscale and Nanoscale Physics +1104.5573 Algebraic Geometry +1104.5576 Quantum Algebra +1104.5584 Differential Geometry +1104.5594 Phenomenology +1104.5595 Group Theory +1104.5599 Algebraic Geometry +1104.5601 Learning +1104.5605 Dynamical Systems +1104.5606 +1104.5607 Statistical Mechanics +1104.5608 Information Theory +1104.5629 Algebraic Geometry +1104.5634 Computational Geometry +1104.5636 Networking and Internet Architecture +1104.5639 Numerical Analysis +1104.5641 Algebraic Geometry +1104.5642 Computer Science and Game Theory +1104.5647 Chemical Physics +1104.5652 Statistical Mechanics +1104.5653 Soft Condensed Matter +1104.5654 Solar and Stellar Astrophysics +1104.5655 Soft Condensed Matter +1104.5656 Optimization and Control +1104.5657 Optics +1104.5658 Analysis of PDEs +1104.5660 Distributed, Parallel, and Cluster Computing +1104.5662 Differential Geometry +1104.5672 Solar and Stellar Astrophysics +1104.5682 Phenomenology +1104.5690 Group Theory +1104.5698 Algebraic Geometry +1104.5700 Information Theory +1104.5705 Discrete Mathematics +1104.5706 Theory +cond-mat/0508103 Statistical Mechanics +cond-mat/0606300 Strongly Correlated Electrons +cond-mat/0610748 Strongly Correlated Electrons +cond-mat/9911229 Statistical Mechanics +physics/0702120 Physics and Society +1105.1078 Theory +1106.5907 Statistical Mechanics +1107.0682 Cosmology and Nongalactic Astrophysics +1108.1519 Phenomenology +1108.1976 Theory +0709.2087 K-Theory and Homology +0710.5745 Probability +0805.0377 +0806.2794 +0807.1811 K-Theory and Homology +0807.2456 Theory +0807.2559 Theory +0807.3134 Theory +0807.3216 Theory +0807.3981 Theory +0807.4001 Theory +0807.4527 Theory +0810.0587 Functional Analysis +0811.1026 Group Theory +0812.3362 Theory +0903.0056 K-Theory and Homology +0903.3983 K-Theory and Homology +0905.0699 Complex Variables +0905.1632 Theory +0905.3848 Theory +0907.0677 Theory +0907.3053 Theory +0908.1930 Cosmology and Nongalactic Astrophysics +0909.2465 Mesoscale and Nanoscale Physics +0910.0710 Materials Science +0910.1116 +0911.1901 Theory +0911.2415 Number Theory +0911.4834 Algebraic Geometry +0912.5349 +1001.0483 Plasma Physics +1001.3995 Rings and Algebras +1005.2255 Theory +1006.0730 Cosmology and Nongalactic Astrophysics +1006.0886 Mesoscale and Nanoscale Physics +1006.4278 Networking and Internet Architecture +1006.4423 Materials Science +1007.1673 Data Structures and Algorithms +1008.0999 Number Theory +1008.1857 Phenomenology +1008.2499 Statistical Mechanics +1008.5319 Statistics Theory +1009.0722 Analysis of PDEs +1010.3607 Phenomenology +1010.5460 Complex Variables +1011.0156 Phenomenology +1011.0934 Theory +1012.0031 Biological Physics +1012.0580 Geometric Topology +1101.0081 High Energy Astrophysical Phenomena +1101.0193 Strongly Correlated Electrons +1101.0196 Earth and Planetary Astrophysics +1101.0787 Phenomenology +1101.2154 Dynamical Systems +1101.5468 +1101.5754 +1102.3087 Phenomenology +1102.3974 Theory +1102.5293 Theory +1103.0573 Mesoscale and Nanoscale Physics +1103.0786 Theory +1103.1056 Superconductivity +1103.1442 +1103.3327 Cosmology and Nongalactic Astrophysics +1103.3976 +1103.4062 +1103.4559 Plasma Physics +1103.5220 Statistics Theory +1103.5461 Phenomenology +1103.6252 Phenomenology +1104.1340 Theory +1104.1367 Cosmology and Nongalactic Astrophysics +1104.1685 +1104.2774 +1104.3232 +1104.3438 Materials Science +1104.4816 Geometric Topology +1104.5312 Theory +1104.5363 Number Theory +1104.5414 Methodology +1105.0180 Phenomenology +1105.0648 Group Theory +1105.2889 Materials Science +1105.3123 Mesoscale and Nanoscale Physics +1105.3138 +1105.4200 +1106.0041 Social and Information Networks +1106.1362 Materials Science +1106.2755 Logic +1106.3826 Social and Information Networks +1106.4631 Theory +1107.0131 +1107.0245 Phenomenology +1107.0319 +1107.0931 Phenomenology +1107.2186 +1107.3157 Theory +1107.3674 Multiagent Systems +1107.3934 Experiment +1107.4023 +1107.4171 Emerging Technologies +1107.5368 Dynamical Systems +1107.5896 Logic +1108.0427 Software Engineering +1108.0436 Materials Science +1108.0438 Theory +1108.0439 Number Theory +1108.0443 Information Theory +1108.0444 Logic +1108.0445 Computation +1108.0446 Solar and Stellar Astrophysics +1108.0447 Operator Algebras +1108.0451 Functional Analysis +1108.0452 Differential Geometry +1108.0453 Machine Learning +1108.0462 Number Theory +1108.0463 Logic in Computer Science +1108.0464 Programming Languages +1108.0465 Logic in Computer Science +1108.0466 Programming Languages +1108.0467 Software Engineering +1108.0468 Programming Languages +1108.0469 Logic in Computer Science +1108.0470 Distributed, Parallel, and Cluster Computing +1108.0471 Programming Languages +1108.0472 Experiment +1108.0484 Methodology +1108.0490 Earth and Planetary Astrophysics +1108.0492 Computational Geometry +1108.0499 Functional Analysis +1108.0503 Chemical Physics +1108.0514 Data Analysis, Statistics and Probability +1108.0519 Commutative Algebra +1108.0523 Data Analysis, Statistics and Probability +1108.0529 Group Theory +1108.0535 Information Theory +1108.0539 Dynamical Systems +1108.0543 Differential Geometry +1108.0546 Algebraic Geometry +1108.0547 Group Theory +1108.0551 Theory +1108.0553 Materials Science +1108.0555 +1108.0567 Materials Science +1108.0568 Dynamical Systems +1108.0572 Combinatorics +1108.0573 Logic +1108.0575 Fluid Dynamics +1108.0576 Materials Science +1108.0579 Materials Science +1108.0586 Rings and Algebras +1108.0592 +1108.0599 Distributed, Parallel, and Cluster Computing +1108.0609 Materials Science +1108.0610 Cosmology and Nongalactic Astrophysics +1108.0613 General Physics +1108.0621 Classical Analysis and ODEs +1108.0624 Cosmology and Nongalactic Astrophysics +1108.0632 Algebraic Geometry +1108.0636 Symplectic Geometry +1108.0637 Analysis of PDEs +1108.0641 +1108.0647 Materials Science +1108.0648 Accelerator Physics +1108.0652 Representation Theory +1108.0653 Phenomenology +1108.0655 Group Theory +astro-ph/0208552 +astro-ph/0501129 +cond-mat/0401120 Superconductivity +gr-qc/0304068 +hep-ph/0501178 Phenomenology +hep-ph/0608147 Phenomenology +hep-ph/9609374 Phenomenology +hep-th/0205190 Theory +hep-th/0206024 Theory +hep-th/0407110 Theory +hep-th/9806236 Theory +math/0001127 Quantum Algebra +math/0002177 Rings and Algebras +math/0111096 K-Theory and Homology +math/0207178 K-Theory and Homology +math/0306289 K-Theory and Homology +math/0502255 K-Theory and Homology +math/0510328 Analysis of PDEs +math/0603531 K-Theory and Homology +math/0605367 K-Theory and Homology +math/0607222 K-Theory and Homology +math/0703133 K-Theory and Homology +math/9503210 Commutative Algebra +math/9810144 K-Theory and Homology +nucl-th/0307008 +nucl-th/9811076 +nucl-th/9901090 +0708.2554 Theory +0804.1959 +0806.0297 +0901.1979 +0901.4006 Soft Condensed Matter +0902.3097 Theory +0903.0696 Combinatorics +0904.4650 Functional Analysis +0905.0359 Instrumentation and Methods for Astrophysics +0906.1722 Analysis of PDEs +0906.5285 Analysis of PDEs +0907.3908 Strongly Correlated Electrons +0908.0372 Phenomenology +0909.1034 Spectral Theory +0910.0059 Cosmology and Nongalactic Astrophysics +0910.2301 Superconductivity +0912.1096 Mesoscale and Nanoscale Physics +0912.4635 Operator Algebras +1001.1038 Astrophysics of Galaxies +1001.1673 +1002.0996 Geometric Topology +1002.3816 General Mathematics +1003.2084 Distributed, Parallel, and Cluster Computing +1003.3314 Superconductivity +1004.2454 Phenomenology +1004.2455 +1004.4173 Probability +1005.0942 Strongly Correlated Electrons +1005.1353 Theory +1006.1891 Strongly Correlated Electrons +1008.0840 Atomic Physics +1008.1890 Chaotic Dynamics +1008.2738 Classical Analysis and ODEs +1008.4917 Optimization and Control +1009.2124 Cosmology and Nongalactic Astrophysics +1009.2497 Theory +1009.3450 Mesoscale and Nanoscale Physics +1009.3513 Probability +1009.4628 Superconductivity +1009.5241 +1010.0070 Geometric Topology +1010.0748 Phenomenology +1010.2006 Symbolic Computation +1010.4532 Group Theory +1010.5987 General Topology +1011.0320 Fluid Dynamics +1011.0718 Astrophysics of Galaxies +1011.2734 +1011.3682 Numerical Analysis +1011.3832 Phenomenology +1011.3859 +1011.5903 Phenomenology +1012.3173 +1012.3847 Combinatorics +1012.5084 +1101.0108 Theory +1101.0744 Cosmology and Nongalactic Astrophysics +1101.4174 Theory +1101.4828 +1101.5694 +1102.0011 Theory +1102.1084 Disordered Systems and Neural Networks +1102.1900 Lattice +1102.2910 Theory +1102.3263 Phenomenology +1102.3317 Strongly Correlated Electrons +1102.4418 Theory +1102.4593 Quantum Gases +1102.4964 +1103.0096 Fluid Dynamics +1103.1323 Lattice +1103.2250 Statistical Mechanics +1103.2749 Soft Condensed Matter +1103.3042 Biomolecules +1103.4430 Phenomenology +1103.5330 Accelerator Physics +1103.6121 Cosmology and Nongalactic Astrophysics +1103.6144 Quantum Gases +1104.0349 Mesoscale and Nanoscale Physics +1104.1846 +1104.2093 High Energy Astrophysical Phenomena +1104.2227 Differential Geometry +1104.2742 Accelerator Physics +1104.3691 Mesoscale and Nanoscale Physics +1104.3790 Phenomenology +1104.3961 Experiment +1104.4914 Statistical Mechanics +1104.5444 Experiment +1105.1119 Astrophysics of Galaxies +1105.1702 Computation and Language +1105.3137 Dynamical Systems +1105.3285 Cosmology and Nongalactic Astrophysics +1105.3430 Methodology +1105.3825 Materials Science +1105.4471 Classical Analysis and ODEs +1105.5547 Theory +1105.6036 +1106.0130 +1106.0367 Astrophysics of Galaxies +1106.0610 Phenomenology +1106.1051 Phenomenology +1106.1056 Statistics Theory +1106.1139 Number Theory +1106.1187 Phenomenology +1106.1189 Number Theory +1106.1191 Algebraic Geometry +1106.1195 History and Philosophy of Physics +1106.1197 Experiment +1106.1199 Sound +1106.1202 Materials Science +1106.1219 Lattice +1106.1222 +1106.1225 Fluid Dynamics +1106.1229 Logic in Computer Science +1106.1230 Logic in Computer Science +1106.1231 Logic in Computer Science +1106.1232 Computer Science and Game Theory +1106.1233 Computer Science and Game Theory +1106.1234 Logic in Computer Science +1106.1235 Formal Languages and Automata Theory +1106.1236 Computer Science and Game Theory +1106.1237 Computer Science and Game Theory +1106.1239 Logic in Computer Science +1106.1240 Formal Languages and Automata Theory +1106.1241 Logic in Computer Science +1106.1242 Logic in Computer Science +1106.1243 Logic in Computer Science +1106.1244 Formal Languages and Automata Theory +1106.1245 Logic in Computer Science +1106.1246 Logic in Computer Science +1106.1247 +1106.1250 Information Theory +1106.1254 +1106.1255 Combinatorics +1106.1262 Materials Science +1106.1265 History and Philosophy of Physics +1106.1266 Methodology +1106.1268 Geophysics +1106.1269 Materials Science +1106.1270 General Physics +1106.1272 Quantum Gases +1106.1275 Biological Physics +1106.1278 Algebraic Topology +1106.1281 Soft Condensed Matter +1106.1282 Networking and Internet Architecture +1106.1285 Chaotic Dynamics +1106.1286 Distributed, Parallel, and Cluster Computing +1106.1287 Cryptography and Security +1106.1289 Statistical Mechanics +1106.1292 Functional Analysis +1106.1296 Statistical Mechanics +1106.1300 Algebraic Geometry +1106.1302 Theory +1106.1303 Plasma Physics +1106.1304 Number Theory +1106.1308 Superconductivity +1106.1310 Algebraic Geometry +1106.1312 Algebraic Geometry +1106.1316 +1106.1319 Numerical Analysis +1106.1322 Instrumentation and Methods for Astrophysics +1106.1324 Combinatorics +1106.1336 Combinatorics +1106.1341 +1106.1347 Mathematical Software +1106.1351 Information Theory +1106.1359 +1106.1369 General Physics +1106.1370 Logic in Computer Science +1106.1372 Logic in Computer Science +1106.1381 Tissues and Organs +1106.1382 Tissues and Organs +1106.1384 Solar and Stellar Astrophysics +1106.1385 Number Theory +1106.1386 Strongly Correlated Electrons +1106.1398 Number Theory +1106.1399 Algebraic Geometry +1106.1401 Systems and Control +1106.1403 Mesoscale and Nanoscale Physics +1106.1406 +1106.1407 Mesoscale and Nanoscale Physics +1106.1408 Representation Theory +1106.1410 Mesoscale and Nanoscale Physics +1106.1412 Analysis of PDEs +1106.1420 Phenomenology +1106.1427 Number Theory +astro-ph/0504045 +cond-mat/0503317 Superconductivity +cond-mat/0604353 Soft Condensed Matter +cond-mat/0605112 Soft Condensed Matter +cond-mat/0703416 Soft Condensed Matter +hep-ph/9209220 Phenomenology +math/0508295 Geometric Topology +physics/0509033 Space Physics +0704.1322 General Physics +0704.2584 Soft Condensed Matter +0705.2317 +0705.2948 Phenomenology +0705.4147 +0705.4624 Phenomenology +0706.1042 Phenomenology +0706.2572 +0706.3439 Phenomenology +0706.3932 Phenomenology +0706.4119 Phenomenology +0708.1989 Lattice +0709.1434 Phenomenology +0709.2596 +0709.3136 +0709.3157 Phenomenology +0709.4446 Theory +0710.0799 +0710.3395 Theory +0711.2983 +0711.3024 Experiment +0712.0464 +0712.0646 Theory +0712.2473 +0801.0905 +0801.4406 +0802.3386 Other Condensed Matter +0804.1360 +0804.1683 +0805.0758 +0805.4820 +0806.0316 +0806.2733 +0806.3104 +0807.1476 Representation Theory +0807.1671 Statistical Mechanics +0807.1998 Phenomenology +0807.2343 +0807.3270 Theory +0807.4777 Phenomenology +0808.1110 Lattice +0808.3237 +0809.0994 +0809.1431 Probability +0809.1674 Theory +0809.1871 +0809.3462 +0809.3997 Phenomenology +0809.5106 Theory +0811.1360 Number Theory +0811.1446 +0811.2991 Strongly Correlated Electrons +0811.3501 +0811.4562 General Physics +0812.1312 +0812.4180 +0812.4256 Differential Geometry +0901.2882 Instrumentation and Detectors +0901.3358 Phenomenology +0901.4680 Combinatorics +0901.4748 Theory +0902.1363 Phenomenology +0902.1487 +0902.2513 Classical Analysis and ODEs +0902.4185 Statistical Mechanics +0903.1203 Classical Analysis and ODEs +0903.3532 +0903.4651 +0904.0974 High Energy Astrophysical Phenomena +0904.3774 +0904.4647 Analysis of PDEs +0905.2786 +0905.3994 Cosmology and Nongalactic Astrophysics +0905.4077 Theory +0906.1436 Algebraic Geometry +0906.1473 Mesoscale and Nanoscale Physics +0906.3636 +0907.0905 Theory +0907.3897 Phenomenology +0907.5552 +0908.2553 Accelerator Physics +0908.3858 Experiment +0909.1304 Experiment +0909.2968 +0909.4895 Optics +0910.0544 Probability +0910.2840 +0910.3813 Representation Theory +0911.2396 Theory +0911.3202 +0911.4269 Analysis of PDEs +0911.4314 Phenomenology +0911.4730 Differential Geometry +0911.5125 Theory +0911.5411 Dynamical Systems +0911.5721 Theory +0912.1558 Theory +0912.3390 Statistical Finance +1001.0010 Theory +1001.0263 Metric Geometry +1001.0864 +1001.3029 General Physics +1001.3863 Algebraic Geometry +1001.4567 General Physics +1001.4857 +1001.5085 General Physics +1002.3464 Theory +1002.4776 +1002.4872 Cosmology and Nongalactic Astrophysics +1003.5776 Differential Geometry +1003.5780 Differential Geometry +1003.6035 Differential Geometry +1004.3646 Quantum Algebra +1005.4723 Phenomenology +1005.5715 Theory +1006.0731 Theory +1006.1859 Phenomenology +1006.2065 Theory +1006.3143 Probability +1006.5485 Combinatorics +1007.0565 +1007.0992 Theory +1007.1851 +1007.4275 Dynamical Systems +1008.0606 Probability +1008.2997 Atomic Physics +1008.3359 Algebraic Geometry +1008.4409 Phenomenology +1009.3787 Superconductivity +1009.4077 Strongly Correlated Electrons +1009.5509 Strongly Correlated Electrons +1010.0254 Materials Science +1010.1131 +1010.1167 Theory +1010.2471 Numerical Analysis +1010.2713 Computer Science and Game Theory +1011.0060 Mesoscale and Nanoscale Physics +1011.0290 +1011.1056 +1011.1216 Theory +1011.1258 Theory +1011.1474 Theory +1011.1732 +1011.2456 Group Theory +1011.3063 High Energy Astrophysical Phenomena +1011.3525 Algebraic Geometry +1011.4756 Other Condensed Matter +1011.4851 Strongly Correlated Electrons +1011.4943 Statistical Mechanics +1011.4948 +1011.4963 Data Analysis, Statistics and Probability +1011.4978 +1011.6022 Neural and Evolutionary Computing +1012.0222 Quantum Algebra +1012.1024 Exactly Solvable and Integrable Systems +1012.1448 Strongly Correlated Electrons +1012.2712 Atomic Physics +1012.4318 Mesoscale and Nanoscale Physics +1012.4382 +1012.4648 Phenomenology +1012.5529 Phenomenology +1101.1297 Theory +1101.1527 Probability +1101.4291 Mesoscale and Nanoscale Physics +1101.4457 Materials Science +1101.4953 Phenomenology +1101.5508 Statistical Mechanics +1101.5746 Phenomenology +1102.0017 Phenomenology +1102.0245 Strongly Correlated Electrons +1102.0680 +1102.1835 Materials Science +1102.2153 General Physics +1102.3118 Physics and Society +1102.4558 Phenomenology +1102.4758 Probability +1102.5369 +1103.0069 Phenomenology +1103.0077 Combinatorics +1103.1086 Theory +1103.2450 Strongly Correlated Electrons +1103.5061 Phenomenology +1103.5112 Neurons and Cognition +1103.5634 Astrophysics of Galaxies +1104.0162 Differential Geometry +1104.0325 Algebraic Geometry +1104.0785 Analysis of PDEs +1104.1784 Materials Science +1104.2279 Strongly Correlated Electrons +1104.3097 Combinatorics +1104.3743 +1104.3822 Rings and Algebras +1104.4070 Representation Theory +1104.4525 Classical Analysis and ODEs +1104.5029 Mesoscale and Nanoscale Physics +1104.5175 Mesoscale and Nanoscale Physics +1104.5202 +1104.5479 Materials Science +1105.0038 Theory +1105.0357 Theory +1105.0838 Mesoscale and Nanoscale Physics +1105.2235 Earth and Planetary Astrophysics +1105.2303 Cosmology and Nongalactic Astrophysics +1105.5761 Phenomenology +1105.6061 Applications +1106.3293 Populations and Evolution +1106.3552 Computer Science and Game Theory +1106.5017 +1106.5497 Solar and Stellar Astrophysics +1106.5639 +1106.5832 Materials Science +1107.1575 +1107.1999 Software Engineering +1107.2206 Quantum Gases +1107.2353 Methodology +1107.2575 Dynamical Systems +1107.3168 +1107.3177 Information Theory +1107.3178 Combinatorics +1107.3184 Probability +1107.3185 Dynamical Systems +1107.3187 Combinatorics +1107.3190 Operator Algebras +1107.3194 Computer Vision and Pattern Recognition +1107.3195 Computer Vision and Pattern Recognition +1107.3196 +1107.3197 Computer Science and Game Theory +1107.3199 Information Theory +1107.3200 Statistics Theory +1107.3201 Software Engineering +1107.3204 +1107.3205 Algebraic Geometry +1107.3210 +1107.3211 Commutative Algebra +1107.3216 Dynamical Systems +1107.3217 Other Computer Science +1107.3218 +1107.3219 Materials Science +1107.3221 Algebraic Topology +1107.3225 Multiagent Systems +1107.3229 Other Computer Science +1107.3231 Social and Information Networks +1107.3233 Materials Science +1107.3234 Phenomenology +1107.3240 Statistical Mechanics +1107.3249 Superconductivity +1107.3254 Functional Analysis +1107.3255 Theory +1107.3266 Classical Analysis and ODEs +1107.3267 Classical Analysis and ODEs +1107.3270 Differential Geometry +1107.3271 Computational Complexity +1107.3272 Instrumentation and Methods for Astrophysics +1107.3275 Physics and Society +1107.3277 Materials Science +1107.3281 Analysis of PDEs +1107.3286 Mesoscale and Nanoscale Physics +1107.3287 General Finance +1107.3292 Superconductivity +1107.3293 General Finance +1107.3294 Networking and Internet Architecture +1107.3297 Software Engineering +1107.3298 Artificial Intelligence +1107.3299 Representation Theory +1107.3302 Artificial Intelligence +1107.3303 Group Theory +1107.3307 Theory +1107.3309 Statistical Mechanics +1107.3315 Probability +1107.3319 Populations and Evolution +1107.3323 General Topology +1107.3326 Artificial Intelligence +1107.3331 Geophysics +1107.3335 Soft Condensed Matter +1107.3340 Algebraic Geometry +1107.3341 Group Theory +1107.3346 +1107.3360 Information Retrieval +1107.3363 Networking and Internet Architecture +1107.3364 Trading and Market Microstructure +1107.3365 Statistics Theory +1107.3366 +1107.3371 Probability +1107.3372 Information Theory +1107.3381 Soft Condensed Matter +1107.3382 Applications +1107.3383 +1107.3385 Probability +1107.3390 Phenomenology +1107.3393 Phenomenology +1107.3404 High Energy Astrophysical Phenomena +1107.3407 Learning +1107.3409 Mesoscale and Nanoscale Physics +1107.3417 High Energy Astrophysical Phenomena +1107.3423 Phenomenology +1107.3425 +1107.3431 Number Theory +1107.3439 Functional Analysis +1107.3442 Methodology +1107.3443 Neurons and Cognition +1107.3444 Algebraic Geometry +1107.3450 Neurons and Cognition +1107.3453 Materials Science +1107.3454 Solar and Stellar Astrophysics +1107.3458 Theory +1107.3459 Populations and Evolution +1107.3465 Theory +1107.3466 Earth and Planetary Astrophysics +1107.3473 Combinatorics +1107.3474 Information Theory +1107.3480 Mesoscale and Nanoscale Physics +1107.3485 Analysis of PDEs +1107.3491 Combinatorics +1107.3493 Optimization and Control +1107.3494 Combinatorics +1107.3499 Geophysics +1107.3501 Mesoscale and Nanoscale Physics +1107.3505 High Energy Astrophysical Phenomena +1107.3508 Combinatorics +1107.3521 Number Theory +1107.3522 Computers and Society +1107.3525 Materials Science +1107.3531 Molecular Networks +1107.3537 Chemical Physics +1107.3539 Programming Languages +1107.3540 Spectral Theory +1107.3541 Other Computer Science +1107.3543 Analysis of PDEs +acc-phys/9510003 Accelerator Physics +alg-geom/9510003 Algebraic Geometry +astro-ph/0002303 +astro-ph/0003253 +astro-ph/0003455 +astro-ph/0005395 +astro-ph/0006041 +astro-ph/0006108 +astro-ph/0007053 +astro-ph/0007125 +astro-ph/0008043 +astro-ph/0008260 +astro-ph/0008297 +astro-ph/0008309 +astro-ph/0008436 +astro-ph/0009057 +astro-ph/0010190 +astro-ph/0010242 +astro-ph/0010381 +astro-ph/0012122 +astro-ph/0101559 +astro-ph/0102005 +astro-ph/0102264 +astro-ph/0102423 +astro-ph/0103378 +astro-ph/0106549 +astro-ph/0107226 +astro-ph/0108244 +astro-ph/0109007 +astro-ph/0109288 +astro-ph/0110348 +astro-ph/0110414 +astro-ph/0201400 +astro-ph/0201498 +astro-ph/0202221 +astro-ph/0203348 +astro-ph/0203418 +astro-ph/0204334 +astro-ph/0205187 +astro-ph/0205217 +astro-ph/0205342 +astro-ph/0206340 +astro-ph/0206508 +astro-ph/0208504 +astro-ph/0210288 +astro-ph/0210630 +astro-ph/0212190 +astro-ph/0301438 +astro-ph/0301643 +astro-ph/0302261 +astro-ph/0303622 +astro-ph/0304180 +astro-ph/0307403 +astro-ph/0307528 +astro-ph/0310636 +astro-ph/0401086 +astro-ph/0401345 +astro-ph/0402608 +astro-ph/0406085 +astro-ph/0406404 +astro-ph/0409032 +astro-ph/0409071 +astro-ph/0409341 +astro-ph/0409694 +astro-ph/0410208 +astro-ph/0412181 +astro-ph/0501130 +astro-ph/0502116 +astro-ph/0503436 +astro-ph/0503476 +astro-ph/0504163 +astro-ph/0504272 +astro-ph/0504361 +astro-ph/0504563 +astro-ph/0504644 +astro-ph/0505136 +astro-ph/0505555 +astro-ph/0506255 +astro-ph/0506371 +astro-ph/0510190 +astro-ph/0601645 +astro-ph/0604024 +astro-ph/0604389 +astro-ph/0604498 +astro-ph/0605440 +astro-ph/0610248 +astro-ph/0611077 +astro-ph/0701874 +astro-ph/9205001 +astro-ph/9208003 +astro-ph/9311037 +astro-ph/9405008 +astro-ph/9508114 +astro-ph/9702027 +astro-ph/9803275 +astro-ph/9804144 +astro-ph/9902039 +astro-ph/9902097 +astro-ph/9902162 +astro-ph/9902239 +astro-ph/9910154 +cond-mat/0001440 Statistical Mechanics +cond-mat/0003124 Statistical Mechanics +cond-mat/0008157 Strongly Correlated Electrons +cond-mat/0008443 +cond-mat/0009084 Statistical Mechanics +cond-mat/0009279 Statistical Mechanics +cond-mat/0010359 Statistical Mechanics +cond-mat/0104556 Mesoscale and Nanoscale Physics +cond-mat/0105537 Superconductivity +cond-mat/0107363 +cond-mat/0108048 Strongly Correlated Electrons +cond-mat/0108127 Superconductivity +cond-mat/0109103 Strongly Correlated Electrons +cond-mat/0110290 Materials Science +cond-mat/0111437 Mesoscale and Nanoscale Physics +cond-mat/0112248 +cond-mat/0112498 Superconductivity +cond-mat/0202070 Superconductivity +cond-mat/0202506 Statistical Mechanics +cond-mat/0204428 Strongly Correlated Electrons +cond-mat/0205043 Statistical Mechanics +cond-mat/0206527 +cond-mat/0207372 +cond-mat/0207452 Statistical Mechanics +cond-mat/0207487 Statistical Mechanics +cond-mat/0210140 Statistical Mechanics +cond-mat/0301417 Superconductivity +cond-mat/0301590 Statistical Mechanics +cond-mat/0307088 Soft Condensed Matter +cond-mat/0309109 +cond-mat/0309504 Statistical Mechanics +cond-mat/0310232 Strongly Correlated Electrons +cond-mat/0311576 Statistical Mechanics +cond-mat/0312433 +cond-mat/0402628 Statistical Mechanics +cond-mat/0404687 Statistical Mechanics +cond-mat/0406255 Superconductivity +cond-mat/0407469 Materials Science +cond-mat/0407758 Other Condensed Matter +cond-mat/0407776 Mesoscale and Nanoscale Physics +cond-mat/0409120 Statistical Mechanics +cond-mat/0409355 Statistical Mechanics +cond-mat/0409536 Statistical Mechanics +cond-mat/0410357 Statistical Mechanics +cond-mat/0502009 Soft Condensed Matter +cond-mat/0502275 Statistical Mechanics +cond-mat/0503620 Other Condensed Matter +cond-mat/0504243 Statistical Mechanics +cond-mat/0507632 Other Condensed Matter +cond-mat/0509155 Strongly Correlated Electrons +cond-mat/0509511 Statistical Mechanics +cond-mat/0602152 Statistical Mechanics +cond-mat/0603525 Mesoscale and Nanoscale Physics +cond-mat/0606330 Statistical Mechanics +cond-mat/0607258 Statistical Mechanics +cond-mat/0609106 Superconductivity +cond-mat/0611454 Statistical Mechanics +cond-mat/9410084 +cond-mat/9501035 +cond-mat/9509026 +cond-mat/9602113 +cond-mat/9606137 +cond-mat/9804198 Mesoscale and Nanoscale Physics +cond-mat/9805026 Statistical Mechanics +cond-mat/9901316 Materials Science +dg-ga/9612009 Differential Geometry +gr-qc/0001044 +gr-qc/0002045 +gr-qc/0003003 +gr-qc/0003006 +gr-qc/0003107 +gr-qc/0004012 +gr-qc/0005007 +gr-qc/0005127 +gr-qc/0009029 +gr-qc/0010006 +gr-qc/0010014 +gr-qc/0011047 +gr-qc/0012035 +gr-qc/0102017 +gr-qc/0102039 +gr-qc/0102079 +gr-qc/0102088 +gr-qc/0104017 +gr-qc/0105022 +gr-qc/0105037 +gr-qc/0106014 +gr-qc/0106064 +gr-qc/0108028 +gr-qc/0109011 +gr-qc/0109059 +gr-qc/0110077 +gr-qc/0110120 +gr-qc/0111067 +gr-qc/0111104 +gr-qc/0202045 +gr-qc/0203060 +gr-qc/0203078 +gr-qc/0204066 +gr-qc/0207053 +gr-qc/0208023 +gr-qc/0209013 +gr-qc/0209077 +gr-qc/0210043 +gr-qc/0211011 +gr-qc/0211034 +gr-qc/0211085 +gr-qc/0212073 +gr-qc/0212130 +gr-qc/0302032 +gr-qc/0302094 +gr-qc/0302095 +gr-qc/0303012 +gr-qc/0303104 +gr-qc/0305025 +gr-qc/0306102 +gr-qc/0307006 +gr-qc/0307033 +gr-qc/0307103 +gr-qc/0309049 +gr-qc/0311052 +gr-qc/0311054 +gr-qc/0401039 +gr-qc/0403006 +gr-qc/0405079 +gr-qc/0405116 +gr-qc/0406057 +gr-qc/0407066 +gr-qc/0407072 +gr-qc/0407091 +gr-qc/0410082 +gr-qc/0410083 +gr-qc/0411046 +gr-qc/0411111 +gr-qc/0412133 +gr-qc/0501048 +gr-qc/0502069 +gr-qc/0503004 +gr-qc/0504014 +gr-qc/0504086 +gr-qc/0504087 +gr-qc/0504139 +gr-qc/0504146 +gr-qc/0506017 +gr-qc/0506077 +gr-qc/0506091 +gr-qc/0507001 +gr-qc/0507023 +gr-qc/0507104 +gr-qc/0508033 +gr-qc/0508067 +gr-qc/0509006 +gr-qc/0509046 +gr-qc/0509055 +gr-qc/0509086 +gr-qc/0510088 +gr-qc/0511090 +gr-qc/0512022 +gr-qc/0512068 +gr-qc/0512117 +gr-qc/0601056 +gr-qc/0601107 +gr-qc/0602087 +gr-qc/0603074 +gr-qc/0604104 +gr-qc/0604127 +gr-qc/0605132 +gr-qc/0606133 +gr-qc/0607065 +gr-qc/0607142 +gr-qc/0608020 +gr-qc/0608029 +gr-qc/9212011 +gr-qc/9302007 +gr-qc/9311022 +gr-qc/9402032 +gr-qc/9404002 +gr-qc/9405004 +gr-qc/9405015 +gr-qc/9405016 +gr-qc/9405048 +gr-qc/9406017 +gr-qc/9406030 +gr-qc/9407042 +gr-qc/9501027 +gr-qc/9504042 +gr-qc/9505017 +gr-qc/9505035 +gr-qc/9507012 +gr-qc/9511038 +gr-qc/9602042 +gr-qc/9606012 +gr-qc/9606075 +gr-qc/9610046 +gr-qc/9611066 +gr-qc/9611067 +gr-qc/9612051 +gr-qc/9703059 +gr-qc/9705044 +gr-qc/9706064 +gr-qc/9707047 +gr-qc/9708066 +gr-qc/9709009 +gr-qc/9709031 +gr-qc/9709055 +gr-qc/9710017 +gr-qc/9711051 +gr-qc/9712090 +gr-qc/9802044 +gr-qc/9803020 +gr-qc/9803093 +gr-qc/9805044 +gr-qc/9806029 +gr-qc/9811083 +gr-qc/9901026 +gr-qc/9903018 +gr-qc/9903026 +gr-qc/9904064 +gr-qc/9905081 +gr-qc/9906003 +gr-qc/9906073 +gr-qc/9906123 +gr-qc/9907088 +gr-qc/9908072 +gr-qc/9910098 +hep-ex/0001053 Experiment +hep-ex/0002005 Experiment +hep-ex/0005031 Experiment +hep-ex/0008002 Experiment +hep-ex/0009063 Experiment +hep-ex/0010010 Experiment +hep-ex/0012007 Experiment +hep-ex/0012008 Experiment +hep-ex/0101023 Experiment +hep-ex/0105006 Experiment +hep-ex/0106041 Experiment +hep-ex/0111090 Experiment +hep-ex/0201036 Experiment +hep-ex/0203002 Experiment +hep-ex/0204005 Experiment +hep-ex/0208004 Experiment +hep-ex/0208036 Experiment +hep-ex/0210007 Experiment +hep-ex/0211014 Experiment +hep-ex/0212001 Experiment +hep-ex/0301014 Experiment +hep-ex/0302020 Experiment +hep-ex/0310001 Experiment +hep-ex/0310064 Experiment +hep-ex/0311007 Experiment +hep-ex/0311013 Experiment +hep-ex/0311052 Experiment +hep-ex/0312015 Experiment +hep-ex/0403010 Experiment +hep-ex/0412048 Experiment +hep-ex/0412055 Experiment +hep-ex/0505028 Experiment +hep-ex/0507070 Experiment +hep-ex/0601039 Experiment +hep-ex/0603016 Experiment +hep-ex/9609014 Experiment +hep-ex/9612007 Experiment +hep-ex/9703004 Experiment +hep-ex/9706022 Experiment +hep-ex/9710015 Experiment +hep-ex/9805005 Experiment +hep-ex/9901015 Experiment +hep-ex/9904025 Experiment +hep-ex/9906040 Experiment +hep-ex/9909037 Experiment +hep-lat/0011017 Lattice +hep-lat/0011036 Lattice +hep-lat/0107022 Lattice +hep-lat/0111043 Lattice +hep-lat/0203028 Lattice +hep-lat/0205010 Lattice +hep-lat/0208022 Lattice +hep-lat/0211017 Lattice +hep-lat/0212012 Lattice +hep-lat/0303020 Lattice +hep-lat/0407021 Lattice +hep-lat/0408035 Lattice +hep-lat/0503018 Lattice +hep-lat/0505018 Lattice +hep-lat/0507019 Lattice +hep-lat/0509009 Lattice +hep-lat/0509114 Lattice +hep-lat/0511015 Lattice +hep-lat/0602012 Lattice +hep-lat/0605010 Lattice +hep-lat/0609012 Lattice +hep-lat/9206006 Lattice +hep-lat/9206013 Lattice +hep-lat/9207002 Lattice +hep-lat/9212032 Lattice +hep-lat/9307004 Lattice +hep-lat/9310004 Lattice +hep-lat/9310008 Lattice +hep-lat/9311029 Lattice +hep-lat/9311054 Lattice +hep-lat/9312019 Lattice +hep-lat/9312021 Lattice +hep-lat/9312028 Lattice +hep-lat/9406011 Lattice +hep-lat/9406012 Lattice +hep-lat/9407026 Lattice +hep-lat/9410005 Lattice +hep-lat/9411077 Lattice +hep-lat/9512019 Lattice +hep-lat/9604015 Lattice +hep-lat/9706022 Lattice +hep-lat/9708008 Lattice +hep-lat/9801036 Lattice +hep-lat/9803013 Lattice +hep-lat/9807017 Lattice +hep-lat/9808010 Lattice +hep-lat/9809183 Lattice +hep-lat/9810026 Lattice +hep-lat/9810064 Lattice +hep-lat/9812014 Lattice +hep-lat/9903013 Lattice +hep-lat/9910045 Lattice +hep-ph/0001025 Phenomenology +hep-ph/0001060 Phenomenology +hep-ph/0001300 Phenomenology +hep-ph/0002233 Phenomenology +hep-ph/0002292 Phenomenology +hep-ph/0003201 Phenomenology +hep-ph/0003254 Phenomenology +hep-ph/0004027 Phenomenology +hep-ph/0004162 Phenomenology +hep-ph/0005006 Phenomenology +hep-ph/0005020 Phenomenology +hep-ph/0005177 Phenomenology +hep-ph/0005245 Phenomenology +hep-ph/0005257 Phenomenology +hep-ph/0005292 Phenomenology +hep-ph/0005297 Phenomenology +hep-ph/0006051 Phenomenology +hep-ph/0007069 Phenomenology +hep-ph/0007091 Phenomenology +hep-ph/0007134 Phenomenology +hep-ph/0007226 Phenomenology +hep-ph/0008157 Phenomenology +hep-ph/0008220 Phenomenology +hep-ph/0009052 Phenomenology +hep-ph/0009061 Phenomenology +hep-ph/0010019 Phenomenology +hep-ph/0010141 Phenomenology +hep-ph/0011278 Phenomenology +hep-ph/0012102 Phenomenology +hep-ph/0012177 Phenomenology +hep-ph/0012236 Phenomenology +hep-ph/0101029 Phenomenology +hep-ph/0101078 Phenomenology +hep-ph/0101160 Phenomenology +hep-ph/0101170 Phenomenology +hep-ph/0101224 Phenomenology +hep-ph/0102039 Phenomenology +hep-ph/0102173 Phenomenology +hep-ph/0103003 Phenomenology +hep-ph/0103102 Phenomenology +hep-ph/0103122 Phenomenology +hep-ph/0103265 Phenomenology +hep-ph/0103325 Phenomenology +hep-ph/0104029 Phenomenology +hep-ph/0104117 Phenomenology +hep-ph/0104134 Phenomenology +hep-ph/0104180 Phenomenology +hep-ph/0104274 Phenomenology +hep-ph/0104315 Phenomenology +hep-ph/0105037 Phenomenology +hep-ph/0105136 Phenomenology +hep-ph/0105166 Phenomenology +hep-ph/0105264 Phenomenology +hep-ph/0106033 Phenomenology +hep-ph/0106041 Phenomenology +hep-ph/0106135 Phenomenology +hep-ph/0106197 Phenomenology +hep-ph/0107233 Phenomenology +hep-ph/0107323 Phenomenology +hep-ph/0108025 Phenomenology +hep-ph/0108133 Phenomenology +hep-ph/0108178 Phenomenology +hep-ph/0109081 Phenomenology +hep-ph/0109159 Phenomenology +hep-ph/0109162 Phenomenology +hep-ph/0109176 Phenomenology +hep-ph/0110005 Phenomenology +hep-ph/0110091 Phenomenology +hep-ph/0110241 Phenomenology +hep-ph/0110314 Phenomenology +hep-ph/0110316 Phenomenology +hep-ph/0111033 Phenomenology +hep-ph/0111090 Phenomenology +hep-ph/0111106 Phenomenology +hep-ph/0111125 Phenomenology +hep-ph/0111261 Phenomenology +hep-ph/0111468 Phenomenology +hep-ph/0112087 Phenomenology +hep-ph/0112139 Phenomenology +hep-ph/0112150 Phenomenology +hep-ph/0112242 Phenomenology +hep-ph/0112334 Phenomenology +hep-ph/0112343 Phenomenology +hep-ph/0202020 Phenomenology +hep-ph/0202030 Phenomenology +hep-ph/0202037 Phenomenology +hep-ph/0202155 Phenomenology +hep-ph/0202264 Phenomenology +hep-ph/0203074 Phenomenology +hep-ph/0203276 Phenomenology +hep-ph/0204146 Phenomenology +hep-ph/0204325 Phenomenology +hep-ph/0205244 Phenomenology +hep-ph/0205304 Phenomenology +hep-ph/0206061 Phenomenology +hep-ph/0206156 Phenomenology +hep-ph/0206228 Phenomenology +hep-ph/0207025 Phenomenology +hep-ph/0207048 Phenomenology +hep-ph/0207147 Phenomenology +hep-ph/0207240 Phenomenology +hep-ph/0207261 Phenomenology +hep-ph/0208055 Phenomenology +hep-ph/0209244 Phenomenology +hep-ph/0210015 Phenomenology +hep-ph/0210194 Phenomenology +hep-ph/0210303 Phenomenology +hep-ph/0211029 Phenomenology +hep-ph/0211100 Phenomenology +hep-ph/0211280 Phenomenology +hep-ph/0211299 Phenomenology +hep-ph/0211349 Phenomenology +hep-ph/0211460 Phenomenology +hep-ph/0212015 Phenomenology +hep-ph/0212246 Phenomenology +hep-ph/0301271 Phenomenology +hep-ph/0302124 Phenomenology +hep-ph/0303022 Phenomenology +hep-ph/0303093 Phenomenology +hep-ph/0303194 Phenomenology +hep-ph/0303215 Phenomenology +hep-ph/0304007 Phenomenology +hep-ph/0304034 Phenomenology +hep-ph/0304073 Phenomenology +hep-ph/0304102 Phenomenology +hep-ph/0304166 Phenomenology +hep-ph/0304263 Phenomenology +hep-ph/0305071 Phenomenology +hep-ph/0305254 Phenomenology +hep-ph/0305323 Phenomenology +hep-ph/0305325 Phenomenology +hep-ph/0306045 Phenomenology +hep-ph/0306121 Phenomenology +hep-ph/0306126 Phenomenology +hep-ph/0307114 Phenomenology +hep-ph/0307116 Phenomenology +hep-ph/0307234 Phenomenology +hep-ph/0307313 Phenomenology +hep-ph/0308104 Phenomenology +hep-ph/0308114 Phenomenology +hep-ph/0309032 Phenomenology +hep-ph/0309088 Phenomenology +hep-ph/0309133 Phenomenology +hep-ph/0309223 Phenomenology +hep-ph/0309241 Phenomenology +hep-ph/0310124 Phenomenology +hep-ph/0310127 Phenomenology +hep-ph/0310165 Phenomenology +hep-ph/0311117 Phenomenology +hep-ph/0311142 Phenomenology +hep-ph/0311156 Phenomenology +hep-ph/0311300 Phenomenology +hep-ph/0311331 Phenomenology +hep-ph/0311351 Phenomenology +hep-ph/0311366 Phenomenology +hep-ph/0312187 Phenomenology +hep-ph/0312232 Phenomenology +hep-ph/0312314 Phenomenology +hep-ph/0312344 Phenomenology +hep-ph/0402025 Phenomenology +hep-ph/0402026 Phenomenology +hep-ph/0402027 Phenomenology +hep-ph/0402192 Phenomenology +hep-ph/0402263 Phenomenology +hep-ph/0402284 Phenomenology +hep-ph/0402286 Phenomenology +hep-ph/0403034 Phenomenology +hep-ph/0403146 Phenomenology +hep-ph/0403197 Phenomenology +hep-ph/0403214 Phenomenology +hep-ph/0403264 Phenomenology +hep-ph/0403290 Phenomenology +hep-ph/0404082 Phenomenology +hep-ph/0405004 Phenomenology +hep-ph/0405083 Phenomenology +hep-ph/0405145 Phenomenology +hep-ph/0405210 Phenomenology +hep-ph/0405243 Phenomenology +hep-ph/0405264 Phenomenology +hep-ph/0406091 Phenomenology +hep-ph/0406134 Phenomenology +hep-ph/0406176 Phenomenology +hep-ph/0407039 Phenomenology +hep-ph/0407170 Phenomenology +hep-ph/0407198 Phenomenology +hep-ph/0407205 Phenomenology +hep-ph/0407286 Phenomenology +hep-ph/0407293 Phenomenology +hep-ph/0407352 Phenomenology +hep-ph/0408011 Phenomenology +hep-ph/0408086 Phenomenology +hep-ph/0408152 Phenomenology +hep-ph/0408341 Phenomenology +hep-ph/0409179 Phenomenology +hep-ph/0409231 Phenomenology +hep-ph/0410029 Phenomenology +hep-ph/0410279 Phenomenology +hep-ph/0410301 Phenomenology +hep-ph/0410313 Phenomenology +hep-ph/0410388 Phenomenology +hep-ph/0410400 Phenomenology +hep-ph/0411047 Phenomenology +hep-ph/0411075 Phenomenology +hep-ph/0411146 Phenomenology +hep-ph/0411232 Phenomenology +hep-ph/0411243 Phenomenology +hep-ph/0411263 Phenomenology +hep-ph/0411291 Phenomenology +hep-ph/0411350 Phenomenology +hep-ph/0412090 Phenomenology +hep-ph/0412130 Phenomenology +hep-ph/0412151 Phenomenology +hep-ph/0412167 Phenomenology +hep-ph/0412188 Phenomenology +hep-ph/0412283 Phenomenology +hep-ph/0412315 Phenomenology +hep-ph/0501161 Phenomenology +hep-ph/0501273 Phenomenology +hep-ph/0502032 Phenomenology +hep-ph/0502060 Phenomenology +hep-ph/0502082 Phenomenology +hep-ph/0502135 Phenomenology +hep-ph/0502218 Phenomenology +hep-ph/0503020 Phenomenology +hep-ph/0503029 Phenomenology +hep-ph/0503042 Phenomenology +hep-ph/0503080 Phenomenology +hep-ph/0503084 Phenomenology +hep-ph/0503145 Phenomenology +hep-ph/0504020 Phenomenology +hep-ph/0504057 Phenomenology +hep-ph/0504219 Phenomenology +hep-ph/0505020 Phenomenology +hep-ph/0505027 Phenomenology +hep-ph/0505259 Phenomenology +hep-ph/0506059 Phenomenology +hep-ph/0506238 Phenomenology +hep-ph/0506310 Phenomenology +hep-ph/0507090 Phenomenology +hep-ph/0507127 Phenomenology +hep-ph/0507164 Phenomenology +hep-ph/0507323 Phenomenology +hep-ph/0507328 Phenomenology +hep-ph/0508080 Phenomenology +hep-ph/0508156 Phenomenology +hep-ph/0508166 Phenomenology +hep-ph/0509010 Phenomenology +hep-ph/0509038 Phenomenology +hep-ph/0509198 Phenomenology +hep-ph/0510056 Phenomenology +hep-ph/0510150 Phenomenology +hep-ph/0511299 Phenomenology +hep-ph/0512102 Phenomenology +hep-ph/0512120 Phenomenology +hep-ph/0512123 Phenomenology +hep-ph/0601093 Phenomenology +hep-ph/0601257 Phenomenology +hep-ph/0602089 Phenomenology +hep-ph/0602160 Phenomenology +hep-ph/0603061 Phenomenology +hep-ph/0603107 Phenomenology +hep-ph/0603126 Phenomenology +hep-ph/0603159 Phenomenology +hep-ph/0604010 Phenomenology +hep-ph/0604089 Phenomenology +hep-ph/0604209 Phenomenology +hep-ph/0607176 Phenomenology +hep-ph/0607231 Phenomenology +hep-ph/0608202 Phenomenology +hep-ph/0608204 Phenomenology +hep-ph/0612228 Phenomenology +hep-ph/0612234 Phenomenology +hep-ph/9206212 Phenomenology +hep-ph/9206229 Phenomenology +hep-ph/9206236 Phenomenology +hep-ph/9208214 Phenomenology +hep-ph/9208233 Phenomenology +hep-ph/9208244 Phenomenology +hep-ph/9208245 Phenomenology +hep-ph/9208252 Phenomenology +hep-ph/9210218 Phenomenology +hep-ph/9210247 Phenomenology +hep-ph/9210249 Phenomenology +hep-ph/9211243 Phenomenology +hep-ph/9212284 Phenomenology +hep-ph/9212288 Phenomenology +hep-ph/9212312 Phenomenology +hep-ph/9301204 Phenomenology +hep-ph/9302203 Phenomenology +hep-ph/9303232 Phenomenology +hep-ph/9303266 Phenomenology +hep-ph/9303308 Phenomenology +hep-ph/9304204 Phenomenology +hep-ph/9304206 Phenomenology +hep-ph/9304254 Phenomenology +hep-ph/9304276 Phenomenology +hep-ph/9304294 Phenomenology +hep-ph/9304312 Phenomenology +hep-ph/9305222 Phenomenology +hep-ph/9305262 Phenomenology +hep-ph/9305309 Phenomenology +hep-ph/9305334 Phenomenology +hep-ph/9305335 Phenomenology +hep-ph/9307203 Phenomenology +hep-ph/9307284 Phenomenology +hep-ph/9307340 Phenomenology +hep-ph/9307377 Phenomenology +hep-ph/9309301 Phenomenology +hep-ph/9309305 Phenomenology +hep-ph/9309327 Phenomenology +hep-ph/9310212 Phenomenology +hep-ph/9311234 Phenomenology +hep-ph/9311254 Phenomenology +hep-ph/9311345 Phenomenology +hep-ph/9311358 Phenomenology +hep-ph/9312202 Phenomenology +hep-ph/9312217 Phenomenology +hep-ph/9312251 Phenomenology +hep-ph/9312283 Phenomenology +hep-ph/9312307 Phenomenology +hep-ph/9401206 Phenomenology +hep-ph/9401211 Phenomenology +hep-ph/9401221 Phenomenology +hep-ph/9401224 Phenomenology +hep-ph/9401225 Phenomenology +hep-ph/9401269 Phenomenology +hep-ph/9401273 Phenomenology +hep-ph/9401291 Phenomenology +hep-ph/9401339 Phenomenology +hep-ph/9402217 Phenomenology +hep-ph/9402248 Phenomenology +hep-ph/9402288 Phenomenology +hep-ph/9402306 Phenomenology +hep-ph/9402335 Phenomenology +hep-ph/9403229 Phenomenology +hep-ph/9403307 Phenomenology +hep-ph/9403338 Phenomenology +hep-ph/9403368 Phenomenology +hep-ph/9403409 Phenomenology +hep-ph/9404243 Phenomenology +hep-ph/9404246 Phenomenology +hep-ph/9404263 Phenomenology +hep-ph/9404285 Phenomenology +hep-ph/9404348 Phenomenology +hep-ph/9405223 Phenomenology +hep-ph/9405233 Phenomenology +hep-ph/9405252 Phenomenology +hep-ph/9405256 Phenomenology +hep-ph/9405300 Phenomenology +hep-ph/9405407 Phenomenology +hep-ph/9405419 Phenomenology +hep-ph/9405420 Phenomenology +hep-ph/9405430 Phenomenology +hep-ph/9406217 Phenomenology +hep-ph/9406224 Phenomenology +hep-ph/9406285 Phenomenology +hep-ph/9406300 Phenomenology +hep-ph/9406366 Phenomenology +hep-ph/9406398 Phenomenology +hep-ph/9407225 Phenomenology +hep-ph/9407263 Phenomenology +hep-ph/9407303 Phenomenology +hep-ph/9407326 Phenomenology +hep-ph/9407330 Phenomenology +hep-ph/9407346 Phenomenology +hep-ph/9407382 Phenomenology +hep-ph/9407399 Phenomenology +hep-ph/9408242 Phenomenology +hep-ph/9408244 Phenomenology +hep-ph/9408255 Phenomenology +hep-ph/9408303 Phenomenology +hep-ph/9408340 Phenomenology +hep-ph/9409283 Phenomenology +hep-ph/9409299 Phenomenology +hep-ph/9409364 Phenomenology +hep-ph/9409369 Phenomenology +hep-ph/9409375 Phenomenology +hep-ph/9409432 Phenomenology +hep-ph/9409454 Phenomenology +hep-ph/9410206 Phenomenology +hep-ph/9411237 Phenomenology +hep-ph/9411319 Phenomenology +hep-ph/9411341 Phenomenology +hep-ph/9411382 Phenomenology +hep-ph/9411418 Phenomenology +hep-ph/9411431 Phenomenology +hep-ph/9412225 Phenomenology +hep-ph/9412251 Phenomenology +hep-ph/9412378 Phenomenology +hep-ph/9501202 Phenomenology +hep-ph/9501292 Phenomenology +hep-ph/9501342 Phenomenology +hep-ph/9501356 Phenomenology +hep-ph/9501380 Phenomenology +hep-ph/9501395 Phenomenology +hep-ph/9502243 Phenomenology +hep-ph/9502375 Phenomenology +hep-ph/9503260 Phenomenology +hep-ph/9503276 Phenomenology +hep-ph/9504362 Phenomenology +hep-ph/9504397 Phenomenology +hep-ph/9504425 Phenomenology +hep-ph/9505209 Phenomenology +hep-ph/9505422 Phenomenology +hep-ph/9506222 Phenomenology +hep-ph/9506290 Phenomenology +hep-ph/9506292 Phenomenology +hep-ph/9507204 Phenomenology +hep-ph/9507255 Phenomenology +hep-ph/9507264 Phenomenology +hep-ph/9507401 Phenomenology +hep-ph/9509284 Phenomenology +hep-ph/9509286 Phenomenology +hep-ph/9509428 Phenomenology +hep-ph/9510231 Phenomenology +hep-ph/9510268 Phenomenology +hep-ph/9510313 Phenomenology +hep-ph/9510363 Phenomenology +hep-ph/9511252 Phenomenology +hep-ph/9511269 Phenomenology +hep-ph/9511273 Phenomenology +hep-ph/9512240 Phenomenology +hep-ph/9512348 Phenomenology +hep-ph/9512414 Phenomenology +hep-ph/9601206 Phenomenology +hep-ph/9601344 Phenomenology +hep-ph/9602421 Phenomenology +hep-ph/9602429 Phenomenology +hep-ph/9602434 Phenomenology +hep-ph/9603238 Phenomenology +hep-ph/9603251 Phenomenology +hep-ph/9603275 Phenomenology +hep-ph/9603402 Phenomenology +hep-ph/9604362 Phenomenology +hep-ph/9605209 Phenomenology +hep-ph/9605328 Phenomenology +hep-ph/9605330 Phenomenology +hep-ph/9606280 Phenomenology +hep-ph/9606390 Phenomenology +hep-ph/9607214 Phenomenology +hep-ph/9607370 Phenomenology +hep-ph/9607402 Phenomenology +hep-ph/9607464 Phenomenology +hep-ph/9608359 Phenomenology +hep-ph/9608453 Phenomenology +hep-ph/9608491 Phenomenology +hep-ph/9609424 Phenomenology +hep-ph/9610424 Phenomenology +hep-ph/9610430 Phenomenology +hep-ph/9610490 Phenomenology +hep-ph/9611239 Phenomenology +hep-ph/9611362 Phenomenology +hep-ph/9611418 Phenomenology +hep-ph/9612212 Phenomenology +hep-ph/9702201 Phenomenology +hep-ph/9702367 Phenomenology +hep-ph/9703239 Phenomenology +hep-ph/9703372 Phenomenology +hep-ph/9704324 Phenomenology +hep-ph/9705449 Phenomenology +hep-ph/9706441 Phenomenology +hep-ph/9707345 Phenomenology +hep-ph/9707401 Phenomenology +hep-ph/9707466 Phenomenology +hep-ph/9708259 Phenomenology +hep-ph/9708262 Phenomenology +hep-ph/9708310 Phenomenology +hep-ph/9708339 Phenomenology +hep-ph/9708348 Phenomenology +hep-ph/9708349 Phenomenology +hep-ph/9708477 Phenomenology +hep-ph/9708495 Phenomenology +hep-ph/9709338 Phenomenology +hep-ph/9709412 Phenomenology +hep-ph/9709439 Phenomenology +hep-ph/9710259 Phenomenology +hep-ph/9710260 Phenomenology +hep-ph/9710343 Phenomenology +hep-ph/9710396 Phenomenology +hep-ph/9711295 Phenomenology +hep-ph/9711370 Phenomenology +hep-ph/9711444 Phenomenology +hep-ph/9712273 Phenomenology +hep-ph/9712368 Phenomenology +hep-ph/9712425 Phenomenology +hep-ph/9712493 Phenomenology +hep-ph/9801206 Phenomenology +hep-ph/9801420 Phenomenology +hep-ph/9801421 Phenomenology +hep-ph/9803384 Phenomenology +hep-ph/9803490 Phenomenology +hep-ph/9804302 Phenomenology +hep-ph/9804352 Phenomenology +hep-ph/9805247 Phenomenology +hep-ph/9805259 Phenomenology +hep-ph/9805311 Phenomenology +hep-ph/9805366 Phenomenology +hep-ph/9805429 Phenomenology +hep-ph/9806225 Phenomenology +hep-ph/9806264 Phenomenology +hep-ph/9806376 Phenomenology +hep-ph/9806403 Phenomenology +hep-ph/9806524 Phenomenology +hep-ph/9807223 Phenomenology +hep-ph/9807533 Phenomenology +hep-ph/9807544 Phenomenology +hep-ph/9808240 Phenomenology +hep-ph/9808364 Phenomenology +hep-ph/9808409 Phenomenology +hep-ph/9809251 Phenomenology +hep-ph/9809496 Phenomenology +hep-ph/9809565 Phenomenology +hep-ph/9810434 Phenomenology +hep-ph/9811256 Phenomenology +hep-ph/9811436 Phenomenology +hep-ph/9812202 Phenomenology +hep-ph/9812206 Phenomenology +hep-ph/9812465 Phenomenology +hep-ph/9901283 Phenomenology +hep-ph/9901341 Phenomenology +hep-ph/9902259 Phenomenology +hep-ph/9902284 Phenomenology +hep-ph/9902362 Phenomenology +hep-ph/9902462 Phenomenology +hep-ph/9903240 Phenomenology +hep-ph/9903265 Phenomenology +hep-ph/9903406 Phenomenology +hep-ph/9904297 Phenomenology +hep-ph/9904337 Phenomenology +hep-ph/9904342 Phenomenology +hep-ph/9904380 Phenomenology +hep-ph/9904457 Phenomenology +hep-ph/9905255 Phenomenology +hep-ph/9905537 Phenomenology +hep-ph/9906361 Phenomenology +hep-ph/9906393 Phenomenology +hep-ph/9906520 Phenomenology +hep-ph/9907299 Phenomenology +hep-ph/9907487 Phenomenology +hep-ph/9908221 Phenomenology +hep-ph/9908359 Phenomenology +hep-ph/9909489 Phenomenology +hep-ph/9909495 Phenomenology +hep-ph/9910244 Phenomenology +hep-ph/9910375 Phenomenology +hep-ph/9911298 Phenomenology +hep-ph/9911330 Phenomenology +hep-ph/9911398 Phenomenology +hep-ph/9911532 Phenomenology +hep-ph/9912490 Phenomenology +hep-th/0003081 Theory +hep-th/0003128 Theory +hep-th/0004130 Theory +hep-th/0004183 Theory +hep-th/0005054 Theory +hep-th/0005069 Theory +hep-th/0006078 Theory +hep-th/0006116 Theory +hep-th/0006167 Theory +hep-th/0007165 Theory +hep-th/0008209 Theory +hep-th/0009099 Theory +hep-th/0009121 Theory +hep-th/0010095 Theory +hep-th/0010103 Theory +hep-th/0010168 Theory +hep-th/0010187 Theory +hep-th/0011103 Theory +hep-th/0011152 Theory +hep-th/0011278 Theory +hep-th/0012176 Theory +hep-th/0012181 Theory +hep-th/0012264 Theory +hep-th/0101005 Theory +hep-th/0101110 Theory +hep-th/0101158 Theory +hep-th/0101190 Theory +hep-th/0102051 Theory +hep-th/0102078 Theory +hep-th/0102182 Theory +hep-th/0102187 Theory +hep-th/0103063 Theory +hep-th/0103092 Theory +hep-th/0103101 Theory +hep-th/0103243 Theory +hep-th/0103246 Theory +hep-th/0104018 Theory +hep-th/0104021 Theory +hep-th/0104027 Theory +hep-th/0104061 Theory +hep-th/0104255 Theory +hep-th/0105001 Theory +hep-th/0105087 Theory +hep-th/0105116 Theory +hep-th/0105282 Theory +hep-th/0105285 Theory +hep-th/0106066 Theory +hep-th/0106173 Theory +hep-th/0106210 Theory +hep-th/0106238 Theory +hep-th/0107089 Theory +hep-th/0107257 Theory +hep-th/0108055 Theory +hep-th/0108058 Theory +hep-th/0108105 Theory +hep-th/0108121 Theory +hep-th/0108194 Theory +hep-th/0108204 Theory +hep-th/0108234 Theory +hep-th/0109022 Theory +hep-th/0109167 Theory +hep-th/0109187 Theory +hep-th/0109218 Theory +hep-th/0110026 Theory +hep-th/0110060 Theory +hep-th/0110167 Theory +hep-th/0111246 Theory +hep-th/0111253 Theory +hep-th/0112210 Theory +hep-th/0201045 Theory +hep-th/0201168 Theory +hep-th/0201182 Theory +hep-th/0201218 Theory +hep-th/0201233 Theory +hep-th/0202066 Theory +hep-th/0202105 Theory +hep-th/0203053 Theory +hep-th/0203079 Theory +hep-th/0203085 Theory +hep-th/0203090 Theory +hep-th/0203127 Theory +hep-th/0203128 Theory +hep-th/0203165 Theory +hep-th/0203176 Theory +hep-th/0204080 Theory +hep-th/0204103 Theory +hep-th/0204201 Theory +hep-th/0205079 Theory +hep-th/0205154 Theory +hep-th/0206132 Theory +hep-th/0206176 Theory +hep-th/0206214 Theory +hep-th/0207035 Theory +hep-th/0207040 Theory +hep-th/0207062 Theory +hep-th/0207073 Theory +hep-th/0207169 Theory +hep-th/0208044 Theory +hep-th/0208084 Theory +hep-th/0208132 Theory +hep-th/0208147 Theory +hep-th/0208163 Theory +hep-th/0209214 Theory +hep-th/0210050 Theory +hep-th/0210133 Theory +hep-th/0210294 Theory +hep-th/0210309 Theory +hep-th/0211061 Theory +hep-th/0211164 Theory +hep-th/0211179 Theory +hep-th/0211232 Theory +hep-th/0212007 Theory +hep-th/0212348 Theory +hep-th/0301254 Theory +hep-th/0302006 Theory +hep-th/0302110 Theory +hep-th/0302228 Theory +hep-th/0303095 Theory +hep-th/0303120 Theory +hep-th/0303149 Theory +hep-th/0303204 Theory +hep-th/0304032 Theory +hep-th/0304095 Theory +hep-th/0304116 Theory +hep-th/0304230 Theory +hep-th/0304245 Theory +hep-th/0305118 Theory +hep-th/0306075 Theory +hep-th/0306118 Theory +hep-th/0306289 Theory +hep-th/0307007 Theory +hep-th/0307119 Theory +hep-th/0307217 Theory +hep-th/0308179 Theory +hep-th/0309107 Theory +hep-th/0309185 Theory +hep-th/0309232 Theory +hep-th/0310048 Theory +hep-th/0311001 Theory +hep-th/0311070 Theory +hep-th/0312053 Theory +hep-th/0312074 Theory +hep-th/0312309 Theory +hep-th/0401013 Theory +hep-th/0401089 Theory +hep-th/0401093 Theory +hep-th/0401230 Theory +hep-th/0403027 Theory +hep-th/0403033 Theory +hep-th/0403230 Theory +hep-th/0403267 Theory +hep-th/0403293 Theory +hep-th/0405234 Theory +hep-th/0405261 Theory +hep-th/0406020 Theory +hep-th/0406024 Theory +hep-th/0406059 Theory +hep-th/0406127 Theory +hep-th/0407085 Theory +hep-th/0407086 Theory +hep-th/0407090 Theory +hep-th/0407128 Theory +hep-th/0407206 Theory +hep-th/0407237 Theory +hep-th/0408056 Theory +hep-th/0408152 Theory +hep-th/0408211 Theory +hep-th/0409237 Theory +hep-th/0410068 Theory +hep-th/0410266 Theory +hep-th/0411064 Theory +hep-th/0412013 Theory +hep-th/0412035 Theory +hep-th/0412087 Theory +hep-th/0412158 Theory +hep-th/0412173 Theory +hep-th/0412184 Theory +hep-th/0412257 Theory +hep-th/0412312 Theory +hep-th/0412332 Theory +hep-th/0501115 Theory +hep-th/0501180 Theory +hep-th/0501198 Theory +hep-th/0501232 Theory +hep-th/0502052 Theory +hep-th/0503105 Theory +hep-th/0503115 Theory +hep-th/0503156 Theory +hep-th/0503182 Theory +hep-th/0503188 Theory +hep-th/0503191 Theory +hep-th/0504016 Theory +hep-th/0504113 Theory +hep-th/0504150 Theory +hep-th/0504162 Theory +hep-th/0504165 Theory +hep-th/0505060 Theory +hep-th/0505117 Theory +hep-th/0505199 Theory +hep-th/0505216 Theory +hep-th/0505224 Theory +hep-th/0505245 Theory +hep-th/0506047 Theory +hep-th/0506086 Theory +hep-th/0506131 Theory +hep-th/0506158 Theory +hep-th/0506197 Theory +hep-th/0506262 Theory +hep-th/0507017 Theory +hep-th/0507020 Theory +hep-th/0507150 Theory +hep-th/0507193 Theory +hep-th/0507229 Theory +hep-th/0508226 Theory +hep-th/0509058 Theory +hep-th/0509197 Theory +hep-th/0510263 Theory +hep-th/0511009 Theory +hep-th/0511161 Theory +hep-th/0512142 Theory +hep-th/0512144 Theory +hep-th/0602149 Theory +hep-th/0604037 Theory +hep-th/0604093 Theory +hep-th/0606255 Theory +hep-th/0607072 Theory +hep-th/0608018 Theory +hep-th/0608072 Theory +hep-th/0610311 Theory +hep-th/0612011 Theory +hep-th/0612245 Theory +hep-th/0701037 Theory +hep-th/0703125 Theory +hep-th/9109046 Theory +hep-th/9111038 Theory +hep-th/9202025 Theory +hep-th/9202028 Theory +hep-th/9202069 Theory +hep-th/9203057 Theory +hep-th/9205056 Theory +hep-th/9205071 Theory +hep-th/9206001 Theory +hep-th/9206071 Theory +hep-th/9207060 Theory +hep-th/9208028 Theory +hep-th/9208045 Theory +hep-th/9208076 Theory +hep-th/9209035 Theory +hep-th/9209075 Theory +hep-th/9210024 Theory +hep-th/9210114 Theory +hep-th/9210122 Theory +hep-th/9211016 Theory +hep-th/9211025 Theory +hep-th/9211028 Theory +hep-th/9211076 Theory +hep-th/9211105 Theory +hep-th/9301036 Theory +hep-th/9301065 Theory +hep-th/9301080 Theory +hep-th/9301107 Theory +hep-th/9301126 Theory +hep-th/9303025 Theory +hep-th/9303052 Theory +hep-th/9303058 Theory +hep-th/9303072 Theory +hep-th/9303118 Theory +hep-th/9303142 Theory +hep-th/9304036 Theory +hep-th/9304116 Theory +hep-th/9304135 Theory +hep-th/9305021 Theory +hep-th/9305077 Theory +hep-th/9305109 Theory +hep-th/9305168 Theory +hep-th/9305174 Theory +hep-th/9305175 Theory +hep-th/9305176 Theory +hep-th/9306050 Theory +hep-th/9306138 Theory +hep-th/9306139 Theory +hep-th/9307007 Theory +hep-th/9307021 Theory +hep-th/9307082 Theory +hep-th/9307096 Theory +hep-th/9307193 Theory +hep-th/9309025 Theory +hep-th/9309033 Theory +hep-th/9309068 Theory +hep-th/9309074 Theory +hep-th/9309083 Theory +hep-th/9309120 Theory +hep-th/9309160 Theory +hep-th/9310004 Theory +hep-th/9310102 Theory +hep-th/9310132 Theory +hep-th/9310135 Theory +hep-th/9310192 Theory +hep-th/9310197 Theory +hep-th/9311001 Theory +hep-th/9311042 Theory +hep-th/9311053 Theory +hep-th/9311057 Theory +hep-th/9311064 Theory +hep-th/9311115 Theory +hep-th/9311120 Theory +hep-th/9311185 Theory +hep-th/9312016 Theory +hep-th/9312179 Theory +hep-th/9312209 Theory +hep-th/9401065 Theory +hep-th/9401075 Theory +hep-th/9401093 Theory +hep-th/9402020 Theory +hep-th/9402093 Theory +hep-th/9402105 Theory +hep-th/9402124 Theory +hep-th/9403047 Theory +hep-th/9403183 Theory +hep-th/9404039 Theory +hep-th/9404053 Theory +hep-th/9404145 Theory +hep-th/9404192 Theory +hep-th/9405034 Theory +hep-th/9405120 Theory +hep-th/9405191 Theory +hep-th/9406049 Theory +hep-th/9406089 Theory +hep-th/9406128 Theory +hep-th/9406144 Theory +hep-th/9406154 Theory +hep-th/9406171 Theory +hep-th/9406187 Theory +hep-th/9406189 Theory +hep-th/9406201 Theory +hep-th/9407046 Theory +hep-th/9407106 Theory +hep-th/9407109 Theory +hep-th/9407128 Theory +hep-th/9407130 Theory +hep-th/9407170 Theory +hep-th/9407175 Theory +hep-th/9407194 Theory +hep-th/9408079 Theory +hep-th/9408087 Theory +hep-th/9408105 Theory +hep-th/9408122 Theory +hep-th/9408130 Theory +hep-th/9408147 Theory +hep-th/9409006 Theory +hep-th/9409179 Theory +hep-th/9410032 Theory +hep-th/9410078 Theory +hep-th/9410136 Theory +hep-th/9410193 Theory +hep-th/9410233 Theory +hep-th/9411210 Theory +hep-th/9411239 Theory +hep-th/9412093 Theory +hep-th/9501083 Theory +hep-th/9501113 Theory +hep-th/9502082 Theory +hep-th/9503061 Theory +hep-th/9503194 Theory +hep-th/9504056 Theory +hep-th/9504153 Theory +hep-th/9504154 Theory +hep-th/9506043 Theory +hep-th/9506082 Theory +hep-th/9506083 Theory +hep-th/9506136 Theory +hep-th/9506190 Theory +hep-th/9507116 Theory +hep-th/9508098 Theory +hep-th/9509045 Theory +hep-th/9509142 Theory +hep-th/9509143 Theory +hep-th/9510006 Theory +hep-th/9510201 Theory +hep-th/9510231 Theory +hep-th/9511068 Theory +hep-th/9512036 Theory +hep-th/9512057 Theory +hep-th/9512092 Theory +hep-th/9512183 Theory +hep-th/9512226 Theory +hep-th/9602038 Theory +hep-th/9603081 Theory +hep-th/9606177 Theory +hep-th/9607126 Theory +hep-th/9610038 Theory +hep-th/9610088 Theory +hep-th/9610177 Theory +hep-th/9611064 Theory +hep-th/9612208 Theory +hep-th/9702088 Theory +hep-th/9702100 Theory +hep-th/9704049 Theory +hep-th/9705075 Theory +hep-th/9705114 Theory +hep-th/9705187 Theory +hep-th/9705222 Theory +hep-th/9706027 Theory +hep-th/9706081 Theory +hep-th/9707063 Theory +hep-th/9707136 Theory +hep-th/9708052 Theory +hep-th/9708062 Theory +hep-th/9709154 Theory +hep-th/9710046 Theory +hep-th/9710236 Theory +hep-th/9711056 Theory +hep-th/9711144 Theory +hep-th/9801197 Theory +hep-th/9803052 Theory +hep-th/9806097 Theory +hep-th/9806240 Theory +hep-th/9810055 Theory +hep-th/9810147 Theory +hep-th/9811046 Theory +hep-th/9811143 Theory +hep-th/9811236 Theory +hep-th/9812125 Theory +hep-th/9812148 Theory +hep-th/9902054 Theory +hep-th/9904032 Theory +hep-th/9904047 Theory +hep-th/9904117 Theory +hep-th/9904118 Theory +hep-th/9905119 Theory +hep-th/9905144 Theory +hep-th/9905152 Theory +hep-th/9905155 Theory +hep-th/9905162 Theory +hep-th/9906005 Theory +hep-th/9906134 Theory +hep-th/9908036 Theory +hep-th/9908051 Theory +hep-th/9909117 Theory +hep-th/9910189 Theory +hep-th/9910218 Theory +hep-th/9911019 Theory +math-ph/0006011 +math-ph/0010049 +math-ph/0110008 +math-ph/0205002 +math-ph/0205005 +math-ph/0207029 +math-ph/0312029 +math-ph/0312071 +math-ph/0402037 +math-ph/0404068 +math-ph/0405005 +math-ph/0407025 +math-ph/0410004 +math-ph/0410029 +math-ph/0410059 +math-ph/0411054 +math-ph/0502009 +math-ph/0504058 +math-ph/0507017 +math-ph/0601049 +math-ph/0602010 +math-ph/0602013 +math-ph/0603003 +math-ph/0609068 +math-ph/0609085 +math-ph/0610003 +math-ph/0610040 +math-ph/0611036 +math-ph/9807006 +math/0011194 Quantum Algebra +math/0102065 Quantum Algebra +math/0307178 Quantum Algebra +nlin/0006026 Exactly Solvable and Integrable Systems +nlin/0102021 Exactly Solvable and Integrable Systems +nlin/0506041 Exactly Solvable and Integrable Systems +nucl-ex/0001004 +nucl-ex/0003004 +nucl-ex/0004010 +nucl-ex/0007011 +nucl-ex/0009008 +nucl-ex/0108024 +nucl-ex/0110003 +nucl-ex/0110004 +nucl-ex/0205002 +nucl-ex/0210028 +nucl-ex/0212019 +nucl-ex/0301011 +nucl-ex/0302006 +nucl-ex/0304001 +nucl-ex/0304025 +nucl-ex/0307006 +nucl-ex/0308016 +nucl-ex/0308026 +nucl-ex/0308027 +nucl-ex/0310003 +nucl-ex/0312007 +nucl-ex/0402009 +nucl-ex/0405025 +nucl-ex/0406007 +nucl-ex/0407002 +nucl-ex/0409014 +nucl-ex/0503005 +nucl-ex/0503015 +nucl-ex/0505026 +nucl-ex/0508036 +nucl-ex/0511001 +nucl-ex/0605009 +nucl-ex/0607015 +nucl-ex/0608044 +nucl-ex/9706001 +nucl-ex/9806003 +nucl-ex/9909006 +nucl-th/0002038 +nucl-th/0004006 +nucl-th/0005030 +nucl-th/0005050 +nucl-th/0006053 +nucl-th/0006065 +nucl-th/0006074 +nucl-th/0007055 +nucl-th/0008030 +nucl-th/0008046 +nucl-th/0009038 +nucl-th/0009051 +nucl-th/0010015 +nucl-th/0011065 +nucl-th/0011071 +nucl-th/0101036 +nucl-th/0101043 +nucl-th/0101067 +nucl-th/0103029 +nucl-th/0103039 +nucl-th/0104012 +nucl-th/0104059 +nucl-th/0104081 +nucl-th/0104084 +nucl-th/0106007 +nucl-th/0106009 +nucl-th/0106038 +nucl-th/0107034 +nucl-th/0107035 +nucl-th/0107053 +nucl-th/0109060 +nucl-th/0110002 +nucl-th/0202021 +nucl-th/0202055 +nucl-th/0203069 +nucl-th/0203070 +nucl-th/0205025 +nucl-th/0205064 +nucl-th/0205065 +nucl-th/0207039 +nucl-th/0210025 +nucl-th/0301027 +nucl-th/0302011 +nucl-th/0302016 +nucl-th/0302062 +nucl-th/0304041 +nucl-th/0306025 +nucl-th/0306029 +nucl-th/0310007 +nucl-th/0311047 +nucl-th/0312075 +nucl-th/0402062 +nucl-th/0403063 +nucl-th/0404055 +nucl-th/0406065 +nucl-th/0406073 +nucl-th/0407096 +nucl-th/0408040 +nucl-th/0411003 +nucl-th/0411007 +nucl-th/0411102 +nucl-th/0502002 +nucl-th/0502082 +nucl-th/0503064 +nucl-th/0505059 +nucl-th/0505069 +nucl-th/0507029 +nucl-th/0507039 +nucl-th/0511077 +nucl-th/0512047 +nucl-th/0601022 +nucl-th/0602035 +nucl-th/0602059 +nucl-th/0603016 +nucl-th/0605015 +nucl-th/0607038 +nucl-th/0610115 +nucl-th/9306006 +nucl-th/9307027 +nucl-th/9308020 +nucl-th/9402012 +nucl-th/9404006 +nucl-th/9406010 +nucl-th/9407006 +nucl-th/9407018 +nucl-th/9407033 +nucl-th/9408011 +nucl-th/9508042 +nucl-th/9603023 +nucl-th/9605042 +nucl-th/9608040 +nucl-th/9609050 +nucl-th/9610014 +nucl-th/9611042 +nucl-th/9702016 +nucl-th/9703024 +nucl-th/9712014 +nucl-th/9712057 +nucl-th/9802015 +nucl-th/9804022 +nucl-th/9804029 +nucl-th/9809040 +nucl-th/9810074 +nucl-th/9811022 +nucl-th/9812067 +nucl-th/9903071 +nucl-th/9905028 +nucl-th/9906019 +nucl-th/9906022 +nucl-th/9906037 +nucl-th/9906061 +nucl-th/9907015 +nucl-th/9907043 +nucl-th/9908030 +nucl-th/9910025 +nucl-th/9911014 +physics/0008026 Accelerator Physics +physics/0008027 Accelerator Physics +physics/0008061 Accelerator Physics +physics/0009021 General Physics +physics/0110040 General Physics +physics/0303059 Instrumentation and Detectors +physics/0307006 Instrumentation and Detectors +physics/0307054 General Physics +physics/0307152 Instrumentation and Detectors +physics/0310147 Optics +physics/0311070 Optics +physics/0402054 Instrumentation and Detectors +physics/0407022 Classical Physics +physics/0409054 Accelerator Physics +physics/0411042 History and Philosophy of Physics +physics/0506022 Atomic Physics +physics/0512048 Accelerator Physics +physics/9704028 History and Philosophy of Physics +physics/9706003 Accelerator Physics +physics/9708006 General Physics +physics/9902040 Instrumentation and Detectors +q-alg/9502002 Quantum Algebra +q-alg/9509007 Quantum Algebra +quant-ph/0002087 +quant-ph/0006118 +quant-ph/0101069 +quant-ph/0110042 +quant-ph/0110141 +quant-ph/0202128 +quant-ph/0203080 +quant-ph/0203106 +quant-ph/0205004 +quant-ph/0205046 +quant-ph/0208067 +quant-ph/0209098 +quant-ph/0307069 +quant-ph/0308028 +quant-ph/0310043 +quant-ph/0401188 +quant-ph/0402111 +quant-ph/0404025 +quant-ph/0406188 +quant-ph/0407116 +quant-ph/0408132 +quant-ph/0410023 +quant-ph/0411137 +quant-ph/0412154 +quant-ph/0502018 +quant-ph/0502041 +quant-ph/0502051 +quant-ph/0502147 +quant-ph/0506026 +quant-ph/0604118 +quant-ph/0610181 +quant-ph/9503008 +quant-ph/9702029 +quant-ph/9705045 +quant-ph/9707023 +quant-ph/9707035 +quant-ph/9708022 +quant-ph/9710001 +quant-ph/9710048 +quant-ph/9711032 +quant-ph/9711049 +quant-ph/9712040 +quant-ph/9804057 +quant-ph/9806007 +quant-ph/9806095 +quant-ph/9807009 +quant-ph/9807087 +quant-ph/9905011 +0706.2757 +0711.0699 Lattice +0801.4248 Symplectic Geometry +0802.4085 Phenomenology +0804.0123 Probability +0805.1456 +0805.2934 Number Theory +0807.0907 +0808.3038 Algebraic Geometry +0810.5207 Theory +0811.1788 +0902.3899 +0902.3976 +0903.3419 Number Theory +0903.4586 Pattern Formation and Solitons +0904.1614 Dynamical Systems +0904.2795 Number Theory +0907.1350 Group Theory +0907.4285 Mesoscale and Nanoscale Physics +0909.4251 Dynamical Systems +0911.0257 Computer Science and Game Theory +0912.3916 +1001.0318 Dynamical Systems +1001.4420 Data Structures and Algorithms +1002.2265 Computational Finance +1002.3149 Superconductivity +1003.0040 Combinatorics +1003.0703 +1003.2470 Analysis of PDEs +1004.0608 +1004.1784 Differential Geometry +1004.4328 Superconductivity +1004.5218 Soft Condensed Matter +1005.3373 Theory +1005.5702 Group Theory +1006.0881 +1006.5178 Cosmology and Nongalactic Astrophysics +1007.2058 Strongly Correlated Electrons +1007.3365 +1007.3613 Strongly Correlated Electrons +1007.3900 Probability +1007.3970 Theory +1007.4069 Probability +1007.4635 Theory +1008.0359 Strongly Correlated Electrons +1008.2889 +1009.1761 +1010.0593 Complex Variables +1010.0930 Theory +1010.1128 Computational Complexity +1010.2351 Strongly Correlated Electrons +1010.3116 +1011.3667 +1011.3670 Phenomenology +1011.3690 Theory +1011.3691 +1011.4407 +1011.4987 +1011.5279 Rings and Algebras +1011.5832 Solar and Stellar Astrophysics +1012.0329 Algebraic Geometry +1012.2227 Probability +1012.4594 +1012.4655 Solar and Stellar Astrophysics +1012.4723 Strongly Correlated Electrons +1012.5509 +1012.5584 +1012.5950 Strongly Correlated Electrons +1101.2693 Atmospheric and Oceanic Physics +1101.5086 +1101.5139 Statistical Mechanics +1102.1377 Soft Condensed Matter +1102.1390 Theory +1102.2321 Differential Geometry +1102.2393 +1102.3134 Phenomenology +1102.5253 Information Theory +1102.5465 Number Theory +1103.0268 +1103.1065 Computer Science and Game Theory +1103.1321 Instrumentation and Methods for Astrophysics +1103.1743 +1103.3459 Mesoscale and Nanoscale Physics +1103.4103 Cosmology and Nongalactic Astrophysics +1103.4424 Dynamical Systems +1103.4603 Materials Science +1104.0176 +1104.2366 General Physics +1104.3271 +1104.3635 Mesoscale and Nanoscale Physics +1104.4517 Algebraic Geometry +1104.5259 Social and Information Networks +1104.5267 +1105.1192 +1105.1467 Soft Condensed Matter +1105.2234 Group Theory +1105.2327 Mesoscale and Nanoscale Physics +1105.3978 Statistical Mechanics +1105.5632 Theory +1105.6032 Mesoscale and Nanoscale Physics +1105.6054 Differential Geometry +1105.6322 Methodology +1106.1500 Computers and Society +1106.1531 Programming Languages +1106.1542 Probability +1106.1627 Number Theory +1106.1651 Information Theory +1106.1652 Information Theory +1106.1663 Combinatorics +1106.1669 Experiment +1106.1674 Machine Learning +1106.1678 +1106.1679 +1106.1684 Learning +1106.1696 Combinatorics +1106.1697 Optimization and Control +1106.1698 Popular Physics +1106.1699 Analysis of PDEs +1106.1700 Numerical Analysis +1106.1701 Mesoscale and Nanoscale Physics +1106.1705 Algebraic Geometry +1106.1706 Instrumentation and Methods for Astrophysics +1106.1708 +1106.1716 Artificial Intelligence +1106.1717 Fluid Dynamics +1106.1719 Phenomenology +1106.1723 Populations and Evolution +1106.1725 Materials Science +1106.1730 Representation Theory +1106.1733 Computation +1106.1735 Theory +1106.1739 Statistical Mechanics +1106.1747 Differential Geometry +1106.1748 +1106.1752 Quantitative Methods +1106.1753 Materials Science +1106.1756 Rings and Algebras +1106.1757 Pattern Formation and Solitons +1106.1759 Combinatorics +1106.1772 Soft Condensed Matter +1106.1776 Accelerator Physics +1106.1779 Atmospheric and Oceanic Physics +1106.1796 Artificial Intelligence +1106.1799 Artificial Intelligence +1106.1800 Artificial Intelligence +1106.1802 Artificial Intelligence +1106.1803 Artificial Intelligence +1106.1804 Artificial Intelligence +1106.1805 +1106.1807 Classical Analysis and ODEs +1106.1808 History and Overview +1106.1814 Artificial Intelligence +1106.1815 Functional Analysis +1106.1816 Artificial Intelligence +1106.1817 Artificial Intelligence +1106.1818 Artificial Intelligence +1106.1819 Artificial Intelligence +1106.1820 Artificial Intelligence +1106.1821 Artificial Intelligence +1106.1822 Artificial Intelligence +1106.1826 Algebraic Geometry +1106.1828 Algebraic Geometry +1106.1834 Geometric Topology +1106.1840 Combinatorics +1106.1843 Statistical Mechanics +1106.1844 Number Theory +1106.1846 Distributed, Parallel, and Cluster Computing +1106.1848 +1106.1849 Differential Geometry +1106.1854 +1106.1856 Quantum Algebra +1106.1862 Mathematical Software +1106.1881 Classical Physics +1106.1883 Combinatorics +1106.1890 Theory +gr-qc/0405001 +hep-ph/0004098 Phenomenology +hep-ph/9312247 Phenomenology +hep-th/9304129 Theory +hep-th/9711170 Theory +math/0310246 Differential Geometry +math/0603596 Differential Geometry +math/0701614 Number Theory +math/0702104 Differential Geometry +nucl-ex/9610009 +nucl-th/9805025 +0704.2743 Representation Theory +0711.0025 K-Theory and Homology +0712.3031 Algebraic Geometry +0801.0195 Portfolio Management +0802.0584 Group Theory +0804.2486 +0810.0820 Differential Geometry +0811.2384 Group Theory +0812.2262 +0812.4712 +0901.4610 Strongly Correlated Electrons +0904.1994 +0904.2256 Materials Science +0905.0814 Medical Physics +0907.5337 Number Theory +0908.1100 Astrophysics of Galaxies +0909.4793 Classical Analysis and ODEs +0911.0373 Pricing of Securities +0912.3820 Representation Theory +0912.4000 Group Theory +1001.0797 Combinatorics +1001.3094 Symplectic Geometry +1001.4181 Information Theory +1002.2984 Algebraic Geometry +1002.4834 Materials Science +1003.0995 Materials Science +1003.3248 Materials Science +1003.4982 +1003.5025 Logic +1004.5334 Mesoscale and Nanoscale Physics +1005.1585 Functional Analysis +1005.1665 +1005.3259 Statistical Mechanics +1005.4277 Geometric Topology +1005.4318 Functional Analysis +1006.0112 Mesoscale and Nanoscale Physics +1006.1800 Mesoscale and Nanoscale Physics +1006.4273 Symplectic Geometry +1007.3710 Atomic Physics +1007.5501 Number Theory +1008.2331 Statistical Mechanics +1008.3996 Experiment +1008.4258 Probability +1008.4724 +1008.4813 Phenomenology +1008.4905 Superconductivity +1009.2701 Cosmology and Nongalactic Astrophysics +1009.3407 Group Theory +1009.5472 Quantum Algebra +1009.5504 Phenomenology +1009.5921 Cosmology and Nongalactic Astrophysics +1010.0733 Analysis of PDEs +1010.1316 Data Structures and Algorithms +1010.1491 Experiment +1010.2507 Solar and Stellar Astrophysics +1010.2853 Strongly Correlated Electrons +1010.5093 +1010.5379 High Energy Astrophysical Phenomena +1011.0186 Earth and Planetary Astrophysics +1011.0988 High Energy Astrophysical Phenomena +1011.2120 +1011.2584 Metric Geometry +1011.2789 Representation Theory +1011.4002 Statistical Mechanics +1011.4923 Algebraic Geometry +1012.0631 Mesoscale and Nanoscale Physics +1012.0789 Algebraic Geometry +1012.0856 Algebraic Geometry +1012.1185 Materials Science +1012.2219 Theory +1012.2462 Physics and Society +1012.3676 Experiment +1012.4903 +1012.5116 Statistical Mechanics +1012.5320 Number Theory +1012.5735 Digital Libraries +1101.0730 Plasma Physics +1101.0762 Statistical Mechanics +1101.2382 Quantum Gases +1101.3307 Superconductivity +1102.0722 Mesoscale and Nanoscale Physics +1102.2415 +1102.2420 Geometric Topology +1102.2471 Commutative Algebra +1102.2641 Information Theory +1102.2678 Information Theory +1102.4036 Representation Theory +1103.1929 Classical Physics +1103.2628 Mesoscale and Nanoscale Physics +1103.2646 Algebraic Geometry +1103.5368 Lattice +1103.5553 Soft Condensed Matter +1103.5644 Geometric Topology +1103.5875 +1104.0196 Representation Theory +1104.0477 Superconductivity +1104.3222 Differential Geometry +1104.3293 Logic +1104.3410 Soft Condensed Matter +1104.3601 Strongly Correlated Electrons +1104.3666 Analysis of PDEs +1104.3686 Analysis of PDEs +1104.4972 +1104.5361 Discrete Mathematics +1104.5486 +1104.5627 Earth and Planetary Astrophysics +1105.0008 Solar and Stellar Astrophysics +1105.0011 Multimedia +1105.0013 Other Condensed Matter +1105.0019 Statistics Theory +1105.0023 Multimedia +1105.0025 Statistical Mechanics +1105.0029 Functional Analysis +1105.0032 Information Theory +1105.0033 Rings and Algebras +1105.0034 Information Theory +1105.0035 Information Theory +1105.0036 Combinatorics +1105.0037 Atomic Physics +1105.0043 Networking and Internet Architecture +1105.0049 Databases +1105.0058 Networking and Internet Architecture +1105.0061 Networking and Internet Architecture +1105.0063 Phenomenology +1105.0065 Formal Languages and Automata Theory +1105.0066 Networking and Internet Architecture +1105.0075 Materials Science +1105.0078 Cosmology and Nongalactic Astrophysics +1105.0079 Computer Vision and Pattern Recognition +1105.0085 Algebraic Topology +1105.0091 Representation Theory +1105.0093 Number Theory +1105.0096 Phenomenology +1105.0097 +1105.0099 Information Theory +1105.0101 Information Theory +1105.0104 Complex Variables +1105.0106 Programming Languages +1105.0114 Cosmology and Nongalactic Astrophysics +1105.0116 Information Theory +1105.0121 Information Retrieval +1105.0123 Solar and Stellar Astrophysics +1105.0126 Biomolecules +1105.0135 Probability +1105.0141 Other Computer Science +1105.0142 Commutative Algebra +1105.0151 Representation Theory +1105.0153 Software Engineering +1105.0169 Combinatorics +1105.0173 Mesoscale and Nanoscale Physics +1105.0178 Classical Analysis and ODEs +1105.0181 Cellular Automata and Lattice Gases +1105.0182 Optics +1105.0183 +1105.0184 Biomolecules +1105.0187 Data Structures and Algorithms +1105.0190 Information Theory +1105.0194 Theory +1105.0200 Other Computer Science +1105.0202 Geometric Topology +1105.0206 Statistical Mechanics +1105.0208 Information Theory +1105.0212 Analysis of PDEs +1105.0215 Networking and Internet Architecture +1105.0217 Fluid Dynamics +1105.0220 +1105.0224 +1105.0227 Algebraic Geometry +1105.0228 Analysis of PDEs +1105.0231 Analysis of PDEs +1105.0232 Distributed, Parallel, and Cluster Computing +1105.0233 Computational Complexity +1105.0234 Networking and Internet Architecture +1105.0243 Earth and Planetary Astrophysics +1105.0245 Classical Analysis and ODEs +1105.0249 Soft Condensed Matter +1105.0251 Networking and Internet Architecture +1105.0258 Algebraic Geometry +1105.0263 Mesoscale and Nanoscale Physics +1105.0264 Materials Science +1105.0265 +1105.0267 Mesoscale and Nanoscale Physics +1105.0269 Computation +1105.0271 Quantum Gases +1105.0274 Mesoscale and Nanoscale Physics +1105.0276 Optimization and Control +1105.0277 General Physics +1105.0282 Instrumentation and Methods for Astrophysics +1105.0284 Pricing of Securities +1105.0292 Number Theory +1105.0293 Quantum Gases +1105.0294 Number Theory +1105.0296 Distributed, Parallel, and Cluster Computing +1105.0303 +1105.0307 Combinatorics +1105.0312 Classical Physics +1105.0314 +1105.0323 Solar and Stellar Astrophysics +1105.0332 Neural and Evolutionary Computing +1105.0335 Analysis of PDEs +1105.0339 Cosmology and Nongalactic Astrophysics +1105.0342 Instrumentation and Detectors +1105.0343 Statistics Theory +1105.0350 Databases +1105.0351 Optics +1105.0361 Number Theory +1105.0362 Other Computer Science +1105.0375 Soft Condensed Matter +1105.0377 Information Theory +1105.0378 Optics +1105.0379 Distributed, Parallel, and Cluster Computing +1105.0382 Learning +1105.0387 Solar and Stellar Astrophysics +1105.0390 Software Engineering +1105.0392 Computational Geometry +1105.0396 Mesoscale and Nanoscale Physics +1105.0397 General Mathematics +1105.0400 Metric Geometry +1105.0401 Information Theory +1105.0404 +1105.0406 Strongly Correlated Electrons +1105.0414 Analysis of PDEs +math/0103108 Group Theory +math/0103110 Group Theory +math/0311410 Group Theory +math/0401269 Group Theory +math/0604435 Group Theory +math/0610833 Group Theory +physics/0607270 Fluid Dynamics +q-bio/0611093 Quantitative Methods +0704.0677 +0704.0727 Superconductivity +0704.1117 Theory +0704.1919 +0704.1930 +0704.2843 Phenomenology +0704.3245 +0705.0771 +0705.2558 General Physics +0706.4325 +0708.1217 Theory +0708.1380 Experiment +0708.3566 +0708.3700 +0709.0991 +0709.1187 Strongly Correlated Electrons +0711.1332 +0711.2721 +0802.2116 +0802.3155 +0803.3066 +0805.3214 Algebraic Geometry +0806.0763 +0806.1664 +0807.1349 Theory +0807.1478 Theory +0807.2144 Theory +0807.2864 Theory +0807.2897 Theory +0807.2917 Theory +0807.3012 Theory +0807.3344 Theory +0807.3368 Theory +0807.3453 Theory +0807.3717 +0810.5125 +0811.0773 Theory +0811.1163 Theory +0811.1890 Mesoscale and Nanoscale Physics +0811.3207 Theory +0811.3343 Theory +0811.3386 Theory +0811.3646 Theory +0812.1181 Phenomenology +0812.3846 Theory +0812.3932 Theory +0902.3833 +0904.4164 Classical Analysis and ODEs +0905.0837 Classical Analysis and ODEs +0905.2581 Astrophysics of Galaxies +0906.2563 Dynamical Systems +0907.2277 +0907.3195 Theory +0908.0756 Theory +0909.2703 Mesoscale and Nanoscale Physics +0910.1815 Solar and Stellar Astrophysics +0912.2501 Cosmology and Nongalactic Astrophysics +1001.5024 Differential Geometry +1002.1373 Theory +1002.3602 Distributed, Parallel, and Cluster Computing +1002.4994 Exactly Solvable and Integrable Systems +1003.0080 +1003.2000 Mesoscale and Nanoscale Physics +1003.5570 Phenomenology +1004.3897 Probability +1005.0537 +1005.2389 Theory +1006.0984 Theory +1007.1537 Phenomenology +1007.2118 Theory +1007.4716 Phenomenology +1007.5287 Statistical Mechanics +1008.0035 Mesoscale and Nanoscale Physics +1008.0423 Quantum Gases +1008.0803 Phenomenology +1008.3270 Strongly Correlated Electrons +1008.4383 Quantum Gases +1008.4962 +1008.4987 Phenomenology +1009.1506 +1009.5879 Superconductivity +1010.1220 +1010.1400 Combinatorics +1010.2031 +1010.3054 +1010.4852 Quantum Gases +1011.1687 High Energy Astrophysical Phenomena +1011.3030 Probability +1011.3060 Probability +1011.3071 Probability +1011.3218 Probability +1011.3220 Probability +1011.3540 Phenomenology +1011.3934 Strongly Correlated Electrons +1011.5475 +1011.5510 Phenomenology +1011.5516 +1011.5543 +1011.5548 Experiment +1011.5572 Lattice +1011.5588 +1011.5592 Atmospheric and Oceanic Physics +1011.5646 Phenomenology +1011.5721 Superconductivity +1011.5750 Phenomenology +1011.5753 Phenomenology +1011.5758 Phenomenology +1011.5852 Quantum Gases +1011.6170 Probability +1012.0293 +1012.2111 Operator Algebras +1012.3955 +1012.4014 Cosmology and Nongalactic Astrophysics +1012.4703 +1012.4850 Probability +1012.5001 Classical Physics +1101.1965 Phenomenology +1101.5019 Networking and Internet Architecture +1102.0807 Materials Science +1102.1182 Statistical Mechanics +1102.1192 Analysis of PDEs +1102.1755 Statistical Mechanics +1102.2151 +1102.3660 +1102.3772 Theory +1102.4079 Phenomenology +1102.4467 +1102.4799 +1102.4935 Fluid Dynamics +1102.5196 +1102.5679 Phenomenology +1103.0433 Chaotic Dynamics +1103.2098 Theory +1103.2492 +1103.2530 Analysis of PDEs +1103.2788 Mesoscale and Nanoscale Physics +1103.3155 Phenomenology +1103.5979 Phenomenology +1103.6230 Phenomenology +1104.0965 Differential Geometry +1104.1586 Phenomenology +1104.3851 Phenomenology +1104.4667 +1104.4948 Phenomenology +1104.5424 Strongly Correlated Electrons +1105.0403 Group Theory +1105.0909 Cosmology and Nongalactic Astrophysics +1105.1130 Phenomenology +1105.1561 Multimedia +1105.1780 Phenomenology +1105.1834 +1105.3141 Quantum Gases +1105.3202 Theory +1105.4061 +1105.4207 Representation Theory +1105.5159 Experiment +1105.5995 Experiment +1106.1539 Theory +1106.2417 Networking and Internet Architecture +1106.3060 High Energy Astrophysical Phenomena +1106.3104 Mesoscale and Nanoscale Physics +1107.0664 Soft Condensed Matter +1107.0732 Theory +1107.2310 Lattice +1107.2451 Numerical Analysis +1107.4113 Probability +1107.4592 Theory +1107.5559 Networking and Internet Architecture +1107.5992 Classical Analysis and ODEs +1108.0218 Algebraic Topology +1108.0479 Geometric Topology +1108.0481 Combinatorics +1108.0495 Superconductivity +1108.0507 +1108.0532 +1108.0662 Solar and Stellar Astrophysics +1108.0665 Theory +1108.0681 Solar and Stellar Astrophysics +1108.0685 Phenomenology +1108.0686 Populations and Evolution +1108.0690 Number Theory +1108.0692 Group Theory +1108.0698 Group Theory +1108.0703 +1108.0716 Networking and Internet Architecture +1108.0729 Databases +1108.0731 Superconductivity +1108.0739 Combinatorics +1108.0740 Networking and Internet Architecture +1108.0741 Cryptography and Security +1108.0743 Networking and Internet Architecture +1108.0744 +1108.0750 +1108.0754 Applications +1108.0755 Applications +1108.0760 Optimization and Control +1108.0766 Applications +1108.0771 Materials Science +1108.0777 +1108.0781 Rings and Algebras +1108.0784 Optics +1108.0790 Operator Algebras +1108.0792 Experiment +1108.0793 Applications +1108.0794 Earth and Planetary Astrophysics +1108.0801 Mesoscale and Nanoscale Physics +1108.0808 Number Theory +1108.0813 +1108.0819 +1108.0822 Applications +1108.0828 Solar and Stellar Astrophysics +1108.0836 Probability +1108.0837 Portfolio Management +1108.0846 Materials Science +1108.0858 Metric Geometry +1108.0860 Operator Algebras +1108.0863 Analysis of PDEs +1108.0865 Instrumentation and Methods for Astrophysics +1108.0880 Experiment +1108.0883 +1108.0894 Social and Information Networks +1108.0895 Machine Learning +1108.0897 Algebraic Geometry +1108.0904 Networking and Internet Architecture +1108.0907 Instrumentation and Methods for Astrophysics +1108.0911 Experiment +1108.0915 Statistical Mechanics +astro-ph/0512612 +astro-ph/0602461 +astro-ph/0603796 +astro-ph/0606404 +astro-ph/0612067 +cs/0607114 Logic in Computer Science +cs/0610080 Logic in Computer Science +gr-qc/0103037 +gr-qc/0410117 +gr-qc/0505114 +gr-qc/0507073 +gr-qc/0510114 +gr-qc/0605097 +gr-qc/0605151 +gr-qc/0611023 +gr-qc/0702054 +gr-qc/9402006 +gr-qc/9406041 +gr-qc/9408016 +gr-qc/9408017 +gr-qc/9411073 +gr-qc/9605071 +gr-qc/9610028 +gr-qc/9705065 +hep-lat/0609035 Lattice +hep-lat/9805030 Lattice +hep-ph/0008193 Phenomenology +hep-ph/0106091 Phenomenology +hep-ph/0508023 Phenomenology +hep-ph/0512166 Phenomenology +hep-ph/0604097 Phenomenology +hep-ph/0604123 Phenomenology +hep-ph/0604155 Phenomenology +hep-ph/0604210 Phenomenology +hep-ph/0605224 Phenomenology +hep-ph/0605311 Phenomenology +hep-ph/0609149 Phenomenology +hep-ph/0609184 Phenomenology +hep-ph/0610256 Phenomenology +hep-ph/0610292 Phenomenology +hep-ph/0611217 Phenomenology +hep-ph/0611339 Phenomenology +hep-ph/0611349 Phenomenology +hep-ph/0612240 Phenomenology +hep-ph/0612364 Phenomenology +hep-ph/0701102 Phenomenology +hep-ph/0702017 Phenomenology +hep-ph/0702032 Phenomenology +hep-ph/0702094 Phenomenology +hep-ph/0703194 Phenomenology +hep-ph/9404215 Phenomenology +hep-ph/9407377 Phenomenology +hep-th/0005260 Theory +hep-th/0208035 Theory +hep-th/0501227 Theory +hep-th/0511199 Theory +hep-th/0603087 Theory +hep-th/0603167 Theory +hep-th/0604028 Theory +hep-th/0604091 Theory +hep-th/0609096 Theory +hep-th/0609160 Theory +hep-th/0609223 Theory +hep-th/0612084 Theory +hep-th/9406085 Theory +hep-th/9711167 Theory +math/0508402 Symplectic Geometry +nucl-ex/0611002 +nucl-ex/0701026 +nucl-ex/0702015 +nucl-th/0204005 +nucl-th/0611093 +nucl-th/0611105 +nucl-th/0612002 +nucl-th/0612006 +nucl-th/0612033 +nucl-th/0612052 +nucl-th/0612061 +nucl-th/0612080 +nucl-th/0701058 +nucl-th/0702043 +nucl-th/0703089 +physics/0410063 Atomic Physics +physics/0505042 Popular Physics +physics/0604225 General Physics +quant-ph/0004057 +quant-ph/0102127 +quant-ph/0106082 +quant-ph/0112095 +quant-ph/0201040 +quant-ph/0211163 +quant-ph/0212064 +quant-ph/0212119 +quant-ph/0503163 +quant-ph/0602116 +quant-ph/0603047 +quant-ph/0607214 +quant-ph/9507011 +quant-ph/9706027 +quant-ph/9707045 +quant-ph/9708024 +quant-ph/9708042 +quant-ph/9711005 +quant-ph/9712017 +quant-ph/9802054 +quant-ph/9802065 +quant-ph/9803041 +quant-ph/9805046 +quant-ph/9805065 +quant-ph/9806092 +quant-ph/9807021 +quant-ph/9808041 +quant-ph/9809071 +quant-ph/9809084 +quant-ph/9811026 +quant-ph/9901078 +quant-ph/9910027 +0706.0799 Algebraic Geometry +0708.2793 +0709.0947 +0709.1762 Rings and Algebras +0711.1527 Statistical Mechanics +0711.3444 Phenomenology +0712.3265 Phenomenology +0712.4253 Classical Analysis and ODEs +0801.0912 Commutative Algebra +0802.2731 Group Theory +0809.1882 +0809.2408 Group Theory +0811.0654 Number Theory +0901.3059 Theory +0903.0409 Representation Theory +0903.0411 Representation Theory +0903.0846 Spectral Theory +0903.3292 Algebraic Geometry +0903.3538 Astrophysics of Galaxies +0904.4227 Theory +0906.0135 General Mathematics +0907.0173 Differential Geometry +0907.0245 Combinatorics +0907.5565 Complex Variables +0908.1795 Soft Condensed Matter +0909.1036 +0909.1733 Algebraic Geometry +0910.1066 Cosmology and Nongalactic Astrophysics +0911.1292 Strongly Correlated Electrons +0911.1987 Representation Theory +0911.3174 Analysis of PDEs +0911.5516 Cosmology and Nongalactic Astrophysics +0912.2090 Theory +0912.3051 Theory +0912.4710 Soft Condensed Matter +1001.0251 Formal Languages and Automata Theory +1001.3052 Optimization and Control +1001.3569 +1002.0263 Dynamical Systems +1003.1367 Quantum Gases +1003.2293 Phenomenology +1003.2755 Cosmology and Nongalactic Astrophysics +1003.3762 Soft Condensed Matter +1003.4004 Algebraic Geometry +1003.4189 Analysis of PDEs +1003.6109 Theory +1004.0453 +1004.1513 Theory +1004.1567 Phenomenology +1004.1711 Cosmology and Nongalactic Astrophysics +1005.0766 Information Theory +1005.1180 Cosmology and Nongalactic Astrophysics +1006.0884 Algebraic Topology +1006.2103 +1006.3043 Phenomenology +1006.4012 +1006.5317 Theory +1006.5377 +1006.5747 +1007.0090 Pattern Formation and Solitons +1007.1121 Phenomenology +1007.1767 +1007.2220 +1007.2616 Operator Algebras +1007.3472 Strongly Correlated Electrons +1007.3797 Materials Science +1007.3853 Soft Condensed Matter +1007.4575 Phenomenology +1007.4720 Lattice +1007.4958 Programming Languages +1008.0076 Chaotic Dynamics +1008.0655 Experiment +1008.1621 Phenomenology +1008.1880 Cosmology and Nongalactic Astrophysics +1008.1991 Theory +1008.3516 Phenomenology +1008.3701 Representation Theory +1008.3877 Theory +1008.4397 Numerical Analysis +1008.4457 Phenomenology +1008.4533 Number Theory +1008.5095 Phenomenology +1009.0113 +1009.0621 Phenomenology +1009.0819 Experiment +1009.0978 Experiment +1009.0989 Experiment +1009.1009 Phenomenology +1009.1046 Experiment +1009.1169 Phenomenology +1009.1860 Phenomenology +1009.1947 Phenomenology +1009.1969 Phenomenology +1009.2428 Phenomenology +1009.3277 Theory +1009.3446 Phenomenology +1009.3590 Phenomenology +1009.3757 Lattice +1009.3763 Experiment +1009.4001 Superconductivity +1009.4237 Phenomenology +1009.4336 Superconductivity +1009.4632 +1009.4637 Theory +1009.4797 Data Analysis, Statistics and Probability +1009.4842 Mesoscale and Nanoscale Physics +1009.4855 Mesoscale and Nanoscale Physics +1009.5265 Experiment +1009.5493 Phenomenology +1009.5667 Molecular Networks +1009.5685 Phenomenology +1009.5822 Phenomenology +1009.5928 Phenomenology +1009.6145 Phenomenology +1010.0224 Phenomenology +1010.0752 Theory +1010.1219 Phenomenology +1010.1230 Strongly Correlated Electrons +1010.1853 Soft Condensed Matter +1010.1959 Phenomenology +1010.2712 General Mathematics +1010.2743 Phenomenology +1010.2879 +1010.2898 +1010.3229 Theory +1010.3393 Number Theory +1010.4090 Quantum Gases +1010.4117 +1010.4165 +1010.4625 Superconductivity +1010.4916 Materials Science +1010.5531 Theory +1010.5740 +1011.0484 Mesoscale and Nanoscale Physics +1011.0730 Phenomenology +1011.0768 Cosmology and Nongalactic Astrophysics +1011.0856 Mesoscale and Nanoscale Physics +1011.0871 Materials Science +1011.1090 Solar and Stellar Astrophysics +1011.1262 Number Theory +1011.3917 Experiment +1011.4403 Experiment +1011.5908 Solar and Stellar Astrophysics +1011.6028 Theory +1011.6145 Phenomenology +1012.0151 +1012.2003 Physics and Society +1012.2259 Fluid Dynamics +1012.3482 +1012.3638 Information Theory +1012.3787 Soft Condensed Matter +1012.5579 Cryptography and Security +1012.5725 Theory +1101.2119 Functional Analysis +1101.2199 Other Condensed Matter +1101.3878 Differential Geometry +1101.4318 Discrete Mathematics +1101.4366 +1101.5255 Cosmology and Nongalactic Astrophysics +1101.5464 Number Theory +1101.5765 Lattice +1102.0055 Numerical Analysis +1102.0823 Discrete Mathematics +1102.1196 Differential Geometry +1102.1869 Phenomenology +1102.2180 Computation and Language +1102.2335 Complex Variables +1102.2394 History and Overview +1102.2445 Cryptography and Security +1102.2452 Statistical Mechanics +1102.2455 Mesoscale and Nanoscale Physics +1102.2457 Number Theory +1102.2458 Number Theory +1102.2461 Dynamical Systems +1102.2462 Analysis of PDEs +1102.2465 +1102.2466 Mesoscale and Nanoscale Physics +1102.2472 Instrumentation and Methods for Astrophysics +1102.2473 Numerical Analysis +1102.2474 Physics and Society +1102.2479 Computers and Society +1102.2480 Combinatorics +1102.2481 Group Theory +1102.2482 Statistical Mechanics +1102.2486 +1102.2489 Logic in Computer Science +1102.2500 Fluid Dynamics +1102.2504 Information Theory +1102.2506 Information Theory +1102.2509 Functional Analysis +1102.2510 Complex Variables +1102.2514 Phenomenology +1102.2515 General Finance +1102.2517 Quantum Algebra +1102.2518 Phenomenology +1102.2519 +1102.2524 Data Structures and Algorithms +1102.2529 Formal Languages and Automata Theory +1102.2530 Complex Variables +1102.2531 Phenomenology +1102.2532 Optimization and Control +1102.2534 Probability +1102.2536 Information Theory +1102.2537 Atomic Physics +1102.2546 Differential Geometry +1102.2549 +1102.2553 Networking and Internet Architecture +1102.2558 Logic +1102.2559 Neural and Evolutionary Computing +1102.2562 Cosmology and Nongalactic Astrophysics +1102.2568 Systems and Control +1102.2571 Superconductivity +1102.2576 Superconductivity +1102.2577 Representation Theory +1102.2580 Complex Variables +1102.2581 Physics Education +1102.2584 Analysis of PDEs +1102.2588 Exactly Solvable and Integrable Systems +1102.2589 Statistical Mechanics +1102.2598 Information Theory +1102.2600 Systems and Control +1102.2602 Information Theory +1102.2605 General Topology +1102.2607 Statistical Mechanics +1102.2608 Distributed, Parallel, and Cluster Computing +1102.2616 Distributed, Parallel, and Cluster Computing +1102.2620 Statistical Finance +1102.2621 Representation Theory +1102.2625 +1102.2632 Genomics +1102.2633 Probability +1102.2635 Classical Analysis and ODEs +1102.2639 Optics +1102.2643 Combinatorics +1102.2644 Dynamical Systems +1102.2647 Analysis of PDEs +1102.2648 Analysis of PDEs +1102.2651 Logic in Computer Science +1102.2652 Graphics +1102.2653 Logic in Computer Science +1102.2654 Computational Engineering, Finance, and Science +1102.2655 Logic in Computer Science +1102.2656 Programming Languages +1102.2657 Representation Theory +1102.2664 Popular Physics +1102.2666 Populations and Evolution +1102.2667 Functional Analysis +1102.2668 Spectral Theory +1102.2670 Artificial Intelligence +1102.2672 Differential Geometry +1102.2673 Systems and Control +1102.2680 Number Theory +1102.2681 Mesoscale and Nanoscale Physics +1102.2682 Probability +1102.2683 Geometric Topology +1102.2684 Information Theory +1102.2685 Numerical Analysis +1102.2691 Analysis of PDEs +1102.2692 Optics +1102.2706 Information Theory +1102.2708 Combinatorics +1102.2709 Statistics Theory +1102.2710 Optimization and Control +1102.2711 Accelerator Physics +1102.2712 Analysis of PDEs +1102.2713 Statistics Theory +1102.2714 Soft Condensed Matter +1102.2716 Optimization and Control +1102.2729 Statistics Theory +1102.2730 Instrumentation and Methods for Astrophysics +1102.2739 Computer Vision and Pattern Recognition +1102.2742 Solar and Stellar Astrophysics +1102.2745 Experiment +1102.2747 Instrumentation and Detectors +1102.2748 Computer Vision and Pattern Recognition +1102.2750 Cosmology and Nongalactic Astrophysics +1102.2754 +1102.2760 Phenomenology +1102.2762 Algebraic Geometry +1102.2764 Differential Geometry +1102.2765 Cosmology and Nongalactic Astrophysics +1102.2767 Complex Variables +1102.2768 Information Theory +1102.2769 Dynamical Systems +1102.2771 Theory +1102.2773 Methodology +1102.2774 Methodology +1102.2778 Theory +1102.2779 Phenomenology +1102.2782 Formal Languages and Automata Theory +1102.2787 Information Theory +1102.2789 Computational Complexity +1102.2790 Representation Theory +1102.2794 Systems and Control +1102.2797 Information Theory +1102.2798 Mesoscale and Nanoscale Physics +1102.2801 Operator Algebras +1102.2803 +1102.2809 Solar and Stellar Astrophysics +1102.2811 Phenomenology +1102.2815 General Physics +1102.2817 Probability +1102.2819 Quantitative Methods +1102.2820 Representation Theory +1102.2821 Representation Theory +1102.2838 Geometric Topology +1102.2839 Soft Condensed Matter +1102.2841 Combinatorics +1102.2845 High Energy Astrophysical Phenomena +1102.2846 Atmospheric and Oceanic Physics +1102.2851 +1102.2855 +1102.2856 Information Theory +1102.2857 +1102.2861 +1102.2864 Soft Condensed Matter +1102.2867 Experiment +1102.2868 Information Theory +1102.2873 Analysis of PDEs +1102.2876 Differential Geometry +1102.2878 Computation +1102.2881 Information Theory +1102.2883 Combinatorics +1102.2887 Astrophysics of Galaxies +1102.2888 General Physics +cond-mat/0111151 Disordered Systems and Neural Networks +cs/0703136 Information Theory +gr-qc/0012082 +gr-qc/0602080 +hep-ex/0404015 Experiment +hep-ex/0410066 Experiment +hep-ph/0006152 Phenomenology +hep-ph/0009003 Phenomenology +hep-ph/0011282 Phenomenology +hep-ph/9306215 Phenomenology +hep-ph/9310242 Phenomenology +hep-ph/9310276 Phenomenology +hep-ph/9403394 Phenomenology +hep-ph/9508332 Phenomenology +hep-ph/9601282 Phenomenology +hep-ph/9605240 Phenomenology +hep-ph/9711460 Phenomenology +hep-ph/9804202 Phenomenology +hep-ph/9907245 Phenomenology +hep-ph/9912297 Phenomenology +hep-th/9210097 Theory +hep-th/9803135 Theory +math/0312226 Classical Analysis and ODEs +math/0312502 Classical Analysis and ODEs +math/0408366 Classical Analysis and ODEs +math/0408369 Classical Analysis and ODEs +math/0604607 Probability +math/0609823 Complex Variables +math/0610258 Representation Theory +0706.1459 Experiment +0706.4346 Phenomenology +0707.0030 Phenomenology +0707.0212 Phenomenology +0707.3088 Phenomenology +0707.4402 Phenomenology +0711.3150 Phenomenology +0712.3909 Representation Theory +0802.1189 Phenomenology +0802.3301 Mesoscale and Nanoscale Physics +0803.0891 Mesoscale and Nanoscale Physics +0803.3820 Phenomenology +0807.5021 Experiment +0809.2473 Experiment +0810.5352 Functional Analysis +0811.2898 Other Condensed Matter +0902.1554 Geophysics +0905.4882 Quantum Gases +0907.4514 +0907.5526 Commutative Algebra +0908.0690 General Topology +0909.4812 Phenomenology +0909.5287 Experiment +0910.3527 Dynamical Systems +0910.3542 Theory +0910.5485 Theory +0911.0231 Multiagent Systems +0912.1492 +0912.5321 Materials Science +1001.0198 +1001.2560 Theory +1001.2637 K-Theory and Homology +1001.3275 Theory +1002.4341 Mesoscale and Nanoscale Physics +1003.0028 Atmospheric and Oceanic Physics +1003.0253 Atmospheric and Oceanic Physics +1003.1664 +1003.4956 Quantum Gases +1004.0254 +1004.1733 Probability +1005.4417 Pricing of Securities +1005.4658 Instrumentation and Methods for Astrophysics +1006.0858 Atomic Physics +1006.1674 Performance +1006.2540 +1006.4164 +1006.5552 General Physics +1007.0366 Group Theory +1007.0836 Algebraic Geometry +1007.1082 Complex Variables +1007.1781 General Physics +1007.2705 Theory +1007.2907 Probability +1007.3606 Geometric Topology +1007.4453 Biological Physics +1007.4854 Theory +1008.1123 Theory +1008.1142 +1008.2023 Experiment +1008.3398 +1008.3621 Theory +1008.5145 Solar and Stellar Astrophysics +1008.5320 Mesoscale and Nanoscale Physics +1008.5366 High Energy Astrophysical Phenomena +1008.5377 Statistical Mechanics +1009.0408 +1009.1282 +1009.2415 Quantum Gases +1009.4744 +1009.4926 Statistics Theory +1009.5084 +1010.0760 +1010.0805 Phenomenology +1010.1021 Phenomenology +1010.1033 Lattice +1010.1097 +1010.1106 Theory +1010.1109 Theory +1010.1123 +1010.1125 Theory +1010.1145 Phenomenology +1010.1973 Networking and Internet Architecture +1010.4143 Materials Science +1010.4402 +1011.0998 Statistical Mechanics +1011.3287 Theory +1011.3944 Data Structures and Algorithms +1011.4757 Computational Complexity +1011.5511 Lattice +1011.6271 Analysis of PDEs +1012.1408 Materials Science +1012.2464 Networking and Internet Architecture +1012.2565 Pattern Formation and Solitons +1012.2838 Materials Science +1012.4306 Group Theory +1012.4367 +1012.4739 Other Computer Science +1012.4989 Algebraic Geometry +1012.5010 Complex Variables +1101.1958 +1101.1998 Rings and Algebras +1101.2121 Statistics Theory +1101.2177 Cosmology and Nongalactic Astrophysics +1101.2218 Functional Analysis +1101.2219 Multimedia +1101.2230 Differential Geometry +1101.2233 +1101.2236 Algebraic Geometry +1101.2237 Mesoscale and Nanoscale Physics +1101.2242 Information Theory +1101.2243 Computer Vision and Pattern Recognition +1101.2257 Combinatorics +1101.2259 Data Analysis, Statistics and Probability +1101.2264 General Mathematics +1101.2268 Robotics +1101.2270 Robotics +1101.2272 Robotics +1101.2273 Robotics +1101.2275 Robotics +1101.2280 Commutative Algebra +1101.2281 Commutative Algebra +1101.2305 Differential Geometry +1101.2309 Soft Condensed Matter +1101.2311 High Energy Astrophysical Phenomena +1101.2312 Computer Vision and Pattern Recognition +1101.2318 +1101.2321 Materials Science +1101.2330 Combinatorics +1101.2337 Probability +1101.2340 Instrumentation and Methods for Astrophysics +1101.2341 Instrumentation and Methods for Astrophysics +1101.2342 Numerical Analysis +1101.2353 Instrumentation and Methods for Astrophysics +1101.2355 Differential Geometry +1101.2357 Combinatorics +1101.2362 Instrumentation and Methods for Astrophysics +1101.2367 Cosmology and Nongalactic Astrophysics +1101.2378 Artificial Intelligence +1101.2395 Numerical Analysis +1101.2398 Analysis of PDEs +1101.2400 Soft Condensed Matter +1101.2405 Information Theory +1101.2408 Phenomenology +1101.2410 Dynamical Systems +1101.2413 Commutative Algebra +1101.2426 +1101.2427 Computer Vision and Pattern Recognition +1101.2430 Functional Analysis +1101.2433 High Energy Astrophysical Phenomena +1101.2441 Pattern Formation and Solitons +cond-mat/0703674 Mesoscale and Nanoscale Physics +gr-qc/9909014 +hep-ex/0005007 Experiment +hep-ex/0203025 Experiment +hep-ex/9908005 Experiment +hep-ph/0003065 Phenomenology +hep-ph/0003246 Phenomenology +hep-ph/0006258 Phenomenology +hep-ph/0007046 Phenomenology +hep-ph/0009179 Phenomenology +hep-ph/0010012 Phenomenology +hep-ph/0101316 Phenomenology +hep-ph/0101351 Phenomenology +hep-ph/0103341 Phenomenology +hep-ph/0110214 Phenomenology +hep-ph/0201177 Phenomenology +hep-ph/0202001 Phenomenology +hep-ph/0202082 Phenomenology +hep-ph/0202089 Phenomenology +hep-ph/0203091 Phenomenology +hep-ph/0204067 Phenomenology +hep-ph/0205303 Phenomenology +hep-ph/0206020 Phenomenology +hep-ph/0206021 Phenomenology +hep-ph/0206023 Phenomenology +hep-ph/0206182 Phenomenology +hep-ph/0206208 Phenomenology +hep-ph/0207156 Phenomenology +hep-ph/0208096 Phenomenology +hep-ph/0210299 Phenomenology +hep-ph/0302141 Phenomenology +hep-ph/0303001 Phenomenology +hep-ph/0307324 Phenomenology +hep-ph/0309128 Phenomenology +hep-ph/0309212 Phenomenology +hep-ph/0312341 Phenomenology +hep-ph/0404108 Phenomenology +hep-ph/0407102 Phenomenology +hep-ph/0407249 Phenomenology +hep-ph/0408240 Phenomenology +hep-ph/0411161 Phenomenology +hep-ph/0504009 Phenomenology +hep-ph/0508138 Phenomenology +hep-ph/0510225 Phenomenology +hep-ph/0510375 Phenomenology +hep-ph/0512099 Phenomenology +hep-ph/0602211 Phenomenology +hep-ph/0604091 Phenomenology +hep-ph/0605106 Phenomenology +hep-ph/0608057 Phenomenology +hep-ph/0611252 Phenomenology +hep-ph/9212265 Phenomenology +hep-ph/9305279 Phenomenology +hep-ph/9305344 Phenomenology +hep-ph/9307322 Phenomenology +hep-ph/9308309 Phenomenology +hep-ph/9312322 Phenomenology +hep-ph/9402278 Phenomenology +hep-ph/9403294 Phenomenology +hep-ph/9403373 Phenomenology +hep-ph/9404208 Phenomenology +hep-ph/9406363 Phenomenology +hep-ph/9406432 Phenomenology +hep-ph/9409330 Phenomenology +hep-ph/9410369 Phenomenology +hep-ph/9505314 Phenomenology +hep-ph/9505435 Phenomenology +hep-ph/9506288 Phenomenology +hep-ph/9507265 Phenomenology +hep-ph/9509262 Phenomenology +hep-ph/9509350 Phenomenology +hep-ph/9509407 Phenomenology +hep-ph/9510266 Phenomenology +hep-ph/9511224 Phenomenology +hep-ph/9511385 Phenomenology +hep-ph/9512226 Phenomenology +hep-ph/9601391 Phenomenology +hep-ph/9602335 Phenomenology +hep-ph/9605433 Phenomenology +hep-ph/9606233 Phenomenology +hep-ph/9609395 Phenomenology +hep-ph/9704214 Phenomenology +hep-ph/9704217 Phenomenology +hep-ph/9704455 Phenomenology +hep-ph/9706335 Phenomenology +hep-ph/9706462 Phenomenology +hep-ph/9706482 Phenomenology +hep-ph/9707290 Phenomenology +hep-ph/9708390 Phenomenology +hep-ph/9710426 Phenomenology +hep-ph/9801390 Phenomenology +hep-ph/9803350 Phenomenology +hep-ph/9803477 Phenomenology +hep-ph/9805244 Phenomenology +hep-ph/9807241 Phenomenology +hep-ph/9807411 Phenomenology +hep-ph/9809266 Phenomenology +hep-ph/9809467 Phenomenology +hep-ph/9810458 Phenomenology +hep-ph/9904311 Phenomenology +hep-ph/9906356 Phenomenology +hep-ph/9909472 Phenomenology +hep-ph/9910430 Phenomenology +hep-th/0412275 Theory +math/0309013 Differential Geometry +math/0505115 Algebraic Geometry +math/0611840 Algebraic Geometry +physics/0608038 General Physics +0710.5468 Rings and Algebras +0711.2830 Phenomenology +0803.0981 Theory +0806.2003 Theory +0806.2514 Geometric Topology +0806.3057 Theory +0806.3219 Theory +0806.3242 Theory +0806.3253 Theory +0806.3255 Theory +0806.3316 Theory +0806.3330 Theory +0806.3370 Theory +0806.3389 Theory +0806.3704 Theory +0806.3814 +0809.1354 Theory +0809.1610 +0809.1771 Theory +0809.2263 Theory +0812.0792 Theory +0812.1840 Theory +0812.1919 Theory +0812.1929 Theory +0812.2638 Theory +0812.2690 Theory +0812.2732 Theory +0812.2861 Theory +0812.2918 Theory +0812.2942 Theory +0812.3289 Theory +0901.0017 Computation +0903.2801 Geometric Topology +0904.4246 Theory +0908.3797 +0909.2673 +0909.5075 +0909.5205 Cosmology and Nongalactic Astrophysics +0909.5347 +1001.3949 +1001.4821 +1002.1118 +1002.2928 Instrumentation and Methods for Astrophysics +1003.4617 Pattern Formation and Solitons +1003.5008 +1004.1720 +1004.2561 Computational Physics +1004.3796 +1004.5330 +1005.1437 Phenomenology +1006.5698 Phenomenology +1007.0986 Quantitative Methods +1007.2233 Numerical Analysis +1007.3032 Mesoscale and Nanoscale Physics +1008.0286 Rings and Algebras +1008.0292 Rings and Algebras +1008.0348 Cosmology and Nongalactic Astrophysics +1008.5275 Combinatorics +1009.0203 Mesoscale and Nanoscale Physics +1009.1979 Cosmology and Nongalactic Astrophysics +1009.2702 Atomic Physics +1009.6059 Cosmology and Nongalactic Astrophysics +1009.6067 Theory +1010.2951 Statistical Mechanics +1010.3653 Solar and Stellar Astrophysics +1010.4603 Information Theory +1010.4923 Number Theory +1011.0154 Theory +1011.0840 Phenomenology +1011.1264 Cryptography and Security +1011.2289 Mesoscale and Nanoscale Physics +1011.2352 +1011.3122 Phenomenology +1011.3149 +1011.3203 Phenomenology +1011.3204 Phenomenology +1011.3299 Theory +1011.4100 Optics +1011.5159 Rings and Algebras +1012.1690 Phenomenology +1012.2359 Theory +1012.2818 Commutative Algebra +1012.2915 Commutative Algebra +1012.4518 Strongly Correlated Electrons +1012.4794 Cosmology and Nongalactic Astrophysics +1012.5645 Strongly Correlated Electrons +1012.5819 Strongly Correlated Electrons +1101.1209 +1101.1748 Theory +1101.1897 Cosmology and Nongalactic Astrophysics +1101.2229 Molecular Networks +1101.2570 Probability +1101.3403 +1101.3646 Number Theory +1101.4470 Probability +1101.5486 +1101.5976 Theory +1102.0282 Phenomenology +1102.0446 Earth and Planetary Astrophysics +1102.1521 +1102.1944 Analysis of PDEs +1102.2031 Phenomenology +1102.2259 Theory +1102.2484 Representation Theory +1102.2928 Information Theory +1102.2953 Soft Condensed Matter +1102.3129 Logic in Computer Science +1102.3288 Information Theory +1102.3521 Phenomenology +1102.3526 Information Theory +1102.3903 Quantum Algebra +1102.4091 Theory +1102.4352 +1102.5071 Numerical Analysis +1103.0281 Cosmology and Nongalactic Astrophysics +1103.0300 +1103.0559 Theory +1103.0689 Phenomenology +1103.0742 Theory +1103.0887 Mesoscale and Nanoscale Physics +1103.1892 Algebraic Geometry +1103.1911 Theory +1103.3194 Experiment +1103.4379 Theory +1103.4846 Lattice +1103.4897 +1103.5995 Solar and Stellar Astrophysics +1103.6192 Theory +1104.0888 Information Theory +1104.1319 Lattice +1104.3761 Statistical Mechanics +1104.5611 Chaotic Dynamics +1105.1727 Statistical Mechanics +1105.2760 Information Theory +1105.2996 Cosmology and Nongalactic Astrophysics +1105.4526 Operator Algebras +1105.5799 Astrophysics of Galaxies +1105.6202 +1105.6277 Computer Vision and Pattern Recognition +1106.0008 Adaptation and Self-Organizing Systems +1106.0010 Adaptation and Self-Organizing Systems +1106.0019 +1106.0020 Computational Finance +1106.0021 Instrumentation and Methods for Astrophysics +1106.0027 Information Theory +1106.0032 Information Theory +1106.0033 Theory +1106.0048 Probability +1106.0050 Materials Science +1106.0052 +1106.0053 Dynamical Systems +1106.0057 Information Theory +1106.0058 Phenomenology +1106.0059 Dynamical Systems +1106.0061 Information Theory +1106.0070 Information Theory +1106.0072 Commutative Algebra +1106.0074 Probability +1106.0076 Representation Theory +1106.0078 Phenomenology +1106.0086 Information Theory +1106.0088 Optimization and Control +1106.0092 +1106.0093 +1106.0098 +1106.0105 Probability +1106.0106 Cosmology and Nongalactic Astrophysics +1106.0107 Computer Vision and Pattern Recognition +1106.0111 Dynamical Systems +1106.0113 Distributed, Parallel, and Cluster Computing +1106.0114 Physics and Society +1106.0117 Information Theory +1106.0125 +1106.0137 Numerical Analysis +1106.0142 Mesoscale and Nanoscale Physics +1106.0143 Molecular Networks +1106.0144 Optimization and Control +1106.0154 +1106.0160 Phenomenology +1106.0169 Complex Variables +1106.0171 Artificial Intelligence +1106.0183 Optics +1106.0190 Neural and Evolutionary Computing +1106.0196 Logic +1106.0207 Algebraic Geometry +1106.0211 Differential Geometry +1106.0217 Information Retrieval +1106.0218 Artificial Intelligence +1106.0219 Artificial Intelligence +1106.0220 Artificial Intelligence +1106.0221 Learning +1106.0222 Artificial Intelligence +1106.0223 Multiagent Systems +1106.0224 Artificial Intelligence +1106.0225 Artificial Intelligence +1106.0228 Cosmology and Nongalactic Astrophysics +1106.0229 Artificial Intelligence +1106.0230 Artificial Intelligence +1106.0233 Artificial Intelligence +1106.0234 Artificial Intelligence +1106.0235 Multiagent Systems +1106.0236 Quantitative Methods +1106.0237 Artificial Intelligence +1106.0238 Artificial Intelligence +1106.0239 Artificial Intelligence +1106.0240 Artificial Intelligence +1106.0241 Artificial Intelligence +1106.0242 Artificial Intelligence +1106.0243 Artificial Intelligence +1106.0244 Artificial Intelligence +1106.0245 Artificial Intelligence +1106.0246 Artificial Intelligence +1106.0247 Artificial Intelligence +1106.0248 Information Retrieval +1106.0249 Artificial Intelligence +1106.0250 Artificial Intelligence +1106.0251 Artificial Intelligence +1106.0252 Artificial Intelligence +1106.0253 Artificial Intelligence +1106.0254 Artificial Intelligence +1106.0256 Artificial Intelligence +1106.0257 Artificial Intelligence +1106.0258 Mesoscale and Nanoscale Physics +1106.0259 Group Theory +1106.0260 Astrophysics of Galaxies +1106.0264 Information Theory +1106.0268 Number Theory +1106.0269 Quantitative Methods +1106.0280 +1106.0282 Combinatorics +1106.0283 Astrophysics of Galaxies +1106.0284 Artificial Intelligence +1106.0285 Artificial Intelligence +1106.0291 Instrumentation and Methods for Astrophysics +astro-ph/0303588 +astro-ph/0605647 +astro-ph/9808182 +gr-qc/0607027 +hep-ph/0508022 Phenomenology +hep-ph/9411339 Phenomenology +hep-ph/9501325 Phenomenology +hep-ph/9512415 Phenomenology +hep-ph/9602337 Phenomenology +hep-ph/9702442 Phenomenology +hep-th/9404047 Theory +quant-ph/0006034 +0706.2716 Theory +0710.3231 +0712.2178 Theory +0803.2131 Functional Analysis +0806.4324 +0807.1052 Functional Analysis +0807.3297 +0812.4224 Complex Variables +0901.1620 Classical Analysis and ODEs +0903.0107 Probability +0904.3101 Theory +0906.2303 Theory +0906.3513 Strongly Correlated Electrons +0907.1264 +0907.1579 +0907.3303 Phenomenology +0908.2895 +0909.2130 Phenomenology +0909.2867 +0910.3487 +0911.1132 Strongly Correlated Electrons +0911.4500 Algebraic Geometry +0912.5323 Functional Analysis +1001.1423 Theory +1001.1628 Experiment +1001.3078 Statistical Mechanics +1001.3296 Number Theory +1001.4782 Phenomenology +1002.0866 Analysis of PDEs +1003.5189 Theory +1004.1949 Phenomenology +1004.5329 Computational Complexity +1005.1313 Theory +1005.3707 Theory +1006.0055 Theory +1006.0416 Classical Analysis and ODEs +1006.0761 Experiment +1006.2270 +1006.2596 Phenomenology +1006.2928 Experiment +1006.5958 Theory +1007.0854 Lattice +1007.1614 Phenomenology +1007.2581 Phenomenology +1007.3060 Phenomenology +1007.4323 Theory +1007.4739 Phenomenology +1007.4929 Theory +1007.5033 Spectral Theory +1007.5251 Strongly Correlated Electrons +1007.5291 Phenomenology +1008.0262 Analysis of PDEs +1008.0562 Numerical Analysis +1008.0765 Phenomenology +1008.0828 Combinatorics +1008.1232 Phenomenology +1008.1936 Phenomenology +1008.2150 Phenomenology +1008.2768 +1008.2884 Atomic Physics +1008.4924 Theory +1009.0573 +1009.0986 Theory +1009.1692 Phenomenology +1009.2463 Probability +1009.5727 Phenomenology +1010.1366 Phenomenology +1010.1431 +1010.1844 +1010.3656 Fluid Dynamics +1010.4095 Strongly Correlated Electrons +1010.4908 Strongly Correlated Electrons +1010.5693 Phenomenology +1010.6069 Phenomenology +1010.6215 Theory +1011.0550 +1011.0565 Mesoscale and Nanoscale Physics +1011.0606 Chaotic Dynamics +1011.0852 +1011.1502 Quantum Gases +1011.2149 +1011.2197 Quantum Gases +1011.2591 Combinatorics +1011.3784 +1011.4862 +1011.5217 Strongly Correlated Electrons +1012.0106 +1012.0157 Materials Science +1012.2555 +1012.4958 +1012.5474 Statistical Mechanics +1012.5576 Astrophysics of Galaxies +1101.2442 +1101.3358 Strongly Correlated Electrons +1101.5066 +1102.0466 Mesoscale and Nanoscale Physics +1102.1912 Strongly Correlated Electrons +1102.1913 +1102.2659 +1102.3155 Accelerator Physics +1102.3585 +1102.5309 Data Structures and Algorithms +1103.0355 Materials Science +1103.0453 +1103.2949 +1103.3013 Theory +1103.3229 Theory +1103.3274 Phenomenology +1103.3849 +1103.4075 Theory +1103.4334 Combinatorics +1103.5065 +1103.6029 Theory +1103.6194 Adaptation and Self-Organizing Systems +1104.0197 Other Condensed Matter +1104.0586 Disordered Systems and Neural Networks +1104.1379 Quantum Gases +1104.2087 Theory +1104.2102 Quantum Gases +1104.2307 +1104.4020 +1105.0743 +1105.1308 Analysis of PDEs +1105.3096 +1105.3110 +1105.5819 Number Theory +1105.6168 +1106.4106 Combinatorics +1106.4316 Group Theory +1106.4660 General Physics +1106.4720 Differential Geometry +1106.4822 Functional Analysis +1106.4838 Mesoscale and Nanoscale Physics +1106.4843 Phenomenology +1106.4845 Materials Science +1106.4846 Algebraic Geometry +1106.4847 Instrumentation and Methods for Astrophysics +1106.4854 Symplectic Geometry +1106.4860 Strongly Correlated Electrons +1106.4862 Computation and Language +1106.4863 Artificial Intelligence +1106.4864 Artificial Intelligence +1106.4865 Artificial Intelligence +1106.4866 Artificial Intelligence +1106.4867 Artificial Intelligence +1106.4868 Artificial Intelligence +1106.4869 Artificial Intelligence +1106.4870 Combinatorics +1106.4871 Artificial Intelligence +1106.4872 Artificial Intelligence +1106.4878 +1106.4880 Quantitative Methods +1106.4882 Symplectic Geometry +1106.4895 Number Theory +1106.4898 Cosmology and Nongalactic Astrophysics +1106.4900 Mesoscale and Nanoscale Physics +1106.4907 Computer Vision and Pattern Recognition +1106.4910 Functional Analysis +1106.4912 Logic +1106.4918 Symbolic Computation +1106.4921 Quantum Gases +1106.4926 Representation Theory +1106.4933 Solar and Stellar Astrophysics +1106.4935 Solar and Stellar Astrophysics +1106.4937 Atmospheric and Oceanic Physics +1106.4942 Geophysics +1106.4952 Geometric Topology +1106.4960 Analysis of PDEs +1106.4962 Phenomenology +1106.4964 Lattice +1106.4970 Number Theory +1106.4972 Commutative Algebra +1106.4974 Cosmology and Nongalactic Astrophysics +1106.4979 Differential Geometry +1106.4982 Geometric Topology +1106.4985 Distributed, Parallel, and Cluster Computing +1106.4988 Optimization and Control +1106.4997 Combinatorics +1106.5003 Adaptation and Self-Organizing Systems +1106.5014 Group Theory +1106.5020 Functional Analysis +1106.5024 Solar and Stellar Astrophysics +1106.5027 +1106.5029 Combinatorics +1106.5033 Rings and Algebras +1106.5034 Number Theory +1106.5038 Soft Condensed Matter +1106.5041 Solar and Stellar Astrophysics +1106.5045 Phenomenology +1106.5047 Superconductivity +1106.5049 Symplectic Geometry +cond-mat/0703768 Strongly Correlated Electrons +hep-ph/0001001 Phenomenology +hep-ph/0009307 Phenomenology +hep-th/0404226 Theory +hep-th/0409026 Theory +math/0610550 Probability +math/0703489 Statistics Theory +0708.3991 Algebraic Geometry +0801.4022 Geometric Topology +0805.4586 +0808.2077 +0907.2132 Classical Physics +0910.3788 Instrumentation and Detectors +0910.3914 Geometric Topology +0911.2521 Algebraic Geometry +0911.2784 Information Theory +0912.2708 Statistical Mechanics +0912.4014 Optics +1001.0378 Analysis of PDEs +1005.3691 +1006.2602 Analysis of PDEs +1006.2710 Materials Science +1006.2827 Theory +1007.2236 Representation Theory +1007.2467 Analysis of PDEs +1007.3437 Commutative Algebra +1007.5081 Soft Condensed Matter +1007.5420 Atomic Physics +1008.3815 Group Theory +1010.0067 Materials Science +1010.5477 Combinatorics +1011.0938 +1011.1109 Populations and Evolution +1011.5352 +1012.1358 Physics and Society +1012.2022 Phenomenology +1012.2181 Combinatorics +1101.0159 Superconductivity +1102.0564 Theory +1102.5167 High Energy Astrophysical Phenomena +1103.0062 Combinatorics +1103.2391 +1103.4355 +1103.5398 +1104.0132 +1104.0207 Functional Analysis +1104.3280 +1104.3520 Mesoscale and Nanoscale Physics +1104.4349 Cosmology and Nongalactic Astrophysics +1104.4558 Physics and Society +1105.0500 Mesoscale and Nanoscale Physics +1105.0825 Geometric Topology +1105.1385 Strongly Correlated Electrons +1105.1630 High Energy Astrophysical Phenomena +1105.3672 Cosmology and Nongalactic Astrophysics +1105.4159 +1105.4312 Number Theory +1105.6100 Theory +1106.0231 Superconductivity +1106.1464 Strongly Correlated Electrons +1106.2477 Superconductivity +1106.2641 Superconductivity +1106.3139 Theory +1106.5398 +1106.5808 Materials Science +1107.2906 Statistical Mechanics +1107.3336 Statistical Mechanics +1107.3414 Algebraic Geometry +1107.3591 +1107.4236 Mesoscale and Nanoscale Physics +1107.4297 +1108.1277 +1108.3221 Systems and Control +1108.3322 +1108.5057 +1109.1449 Combinatorics +1109.2481 Differential Geometry +1109.3267 Strongly Correlated Electrons +1109.3372 Instrumentation and Detectors +1109.3409 Methodology +1109.3573 Algebraic Geometry +1109.4564 Information Theory +1109.4789 Symplectic Geometry +1109.5749 Phenomenology +1109.6055 Phenomenology +1109.6209 Probability +1110.0139 Functional Analysis +1110.0623 Computational Complexity +1110.0774 Experiment +1110.0957 Learning +1110.0970 Experiment +1110.1090 Instrumentation and Methods for Astrophysics +1110.1094 Experiment +1110.1096 High Energy Astrophysical Phenomena +1110.1097 Combinatorics +1110.1098 Cosmology and Nongalactic Astrophysics +1110.1100 Representation Theory +1110.1102 Geometric Topology +1110.1103 Chemical Physics +1110.1104 Solar and Stellar Astrophysics +1110.1107 Fluid Dynamics +1110.1109 Differential Geometry +1110.1112 Information Retrieval +1110.1114 Populations and Evolution +1110.1116 Algebraic Geometry +1110.1120 Algebraic Geometry +1110.1124 Data Structures and Algorithms +1110.1125 Accelerator Physics +1110.1126 Algebraic Geometry +1110.1131 Distributed, Parallel, and Cluster Computing +1110.1136 Solar and Stellar Astrophysics +1110.1137 Combinatorics +1110.1151 Optimization and Control +1110.1152 Optimization and Control +1110.1156 High Energy Astrophysical Phenomena +1110.1157 Analysis of PDEs +1110.1161 Discrete Mathematics +1110.1163 Chemical Physics +1110.1164 Algebraic Topology +1110.1169 Solar and Stellar Astrophysics +1110.1170 +1110.1173 Instrumentation and Detectors +1110.1174 Phenomenology +1110.1189 Statistical Mechanics +1110.1194 Data Structures and Algorithms +1110.1206 Theory +1110.1207 Accelerator Physics +1110.1208 Computer Vision and Pattern Recognition +1110.1209 Cryptography and Security +1110.1210 High Energy Astrophysical Phenomena +1110.1211 Phenomenology +1110.1213 Accelerator Physics +1110.1215 Solar and Stellar Astrophysics +1110.1216 Accelerator Physics +1110.1220 +1110.1225 +1110.1230 Optics +1110.1234 Mesoscale and Nanoscale Physics +1110.1235 Biological Physics +1110.1237 Information Theory +1110.1238 Phenomenology +1110.1240 Combinatorics +1110.1244 Biological Physics +1110.1245 Networking and Internet Architecture +1110.1249 Combinatorics +1110.1250 Phenomenology +1110.1252 High Energy Astrophysical Phenomena +1110.1261 +1110.1263 Formal Languages and Automata Theory +1110.1266 High Energy Astrophysical Phenomena +1110.1268 Combinatorics +1110.1273 Optimization and Control +1110.1277 Software Engineering +1110.1281 High Energy Astrophysical Phenomena +1110.1283 Analysis of PDEs +1110.1292 Materials Science +1110.1295 Differential Geometry +1110.1298 Operator Algebras +1110.1299 History and Overview +1110.1301 Software Engineering +1110.1303 Software Engineering +1110.1306 Mesoscale and Nanoscale Physics +1110.1308 Group Theory +1110.1311 Fluid Dynamics +1110.1329 Classical Analysis and ODEs +1110.1334 Metric Geometry +1110.1335 Phenomenology +1110.1338 Commutative Algebra +1110.1347 Information Theory +1110.1349 Social and Information Networks +1110.1350 Geometric Topology +1110.1351 Optimization and Control +1110.1353 Algebraic Geometry +1110.1354 Software Engineering +1110.1356 +1110.1360 Data Structures and Algorithms +1110.1368 Phenomenology +1110.1372 General Physics +hep-th/0304084 Theory +math/0609233 Algebraic Geometry +quant-ph/0402026 +0711.4491 Probability +0807.1510 Analysis of PDEs +0807.2394 Statistical Mechanics +0808.0507 +0808.3697 Probability +0808.4050 Geometric Topology +0810.2815 Fluid Dynamics +0812.0744 Atomic and Molecular Clusters +0901.0869 Logic in Computer Science +0902.2120 Biomolecules +0903.0175 Statistical Mechanics +0904.1478 Statistical Mechanics +0904.1503 Atomic Physics +0904.2346 Atomic Physics +0905.0304 Number Theory +0906.2911 Mesoscale and Nanoscale Physics +0906.4068 Mesoscale and Nanoscale Physics +0907.5034 +0909.0725 Probability +0909.2530 +0909.2695 +0909.5188 Cosmology and Nongalactic Astrophysics +0911.0564 Statistical Mechanics +0911.2590 Operator Algebras +0912.0551 Probability +0912.2787 Mesoscale and Nanoscale Physics +0912.3891 Methodology +0912.4046 Geometric Topology +1001.1955 Atomic Physics +1002.2129 Operator Algebras +1002.3319 Functional Analysis +1002.4743 Atomic Physics +1003.1865 Atomic Physics +1004.0286 Accelerator Physics +1004.3159 Mesoscale and Nanoscale Physics +1005.1507 Numerical Analysis +1006.1662 Phenomenology +1006.4594 Fluid Dynamics +1006.4598 Fluid Dynamics +1006.4922 Atomic Physics +1006.5136 Probability +1007.3026 Algebraic Geometry +1008.1444 Complex Variables +1008.1445 Complex Variables +1008.1609 Differential Geometry +1009.1410 Analysis of PDEs +1009.2367 +1009.4350 Analysis of PDEs +1010.2372 Analysis of PDEs +1010.4059 Hardware Architecture +1011.1506 Group Theory +1011.2446 Algebraic Geometry +1011.2978 +1011.4897 Algebraic Geometry +1011.5824 Superconductivity +1012.2214 Complex Variables +1012.4632 Phenomenology +1012.5413 Earth and Planetary Astrophysics +1101.3370 Mesoscale and Nanoscale Physics +1101.3626 Probability +1101.3668 Phenomenology +1101.4658 Dynamical Systems +1103.0210 Statistical Mechanics +1103.0282 Cosmology and Nongalactic Astrophysics +1103.1051 Soft Condensed Matter +1103.1176 Combinatorics +1103.5083 Cosmology and Nongalactic Astrophysics +1103.5504 Phenomenology +1103.6240 +1104.1083 Combinatorics +1104.4963 Optics +1105.0168 +1105.1123 Representation Theory +1105.1142 Mesoscale and Nanoscale Physics +1105.1170 Materials Science +1105.1339 Materials Science +1105.1593 Chaotic Dynamics +1105.1907 High Energy Astrophysical Phenomena +1105.2070 Probability +1105.2425 +1105.2976 Applications +1105.3111 Theory +1105.5313 Group Theory +1105.5671 Strongly Correlated Electrons +1106.1142 Mesoscale and Nanoscale Physics +1106.1435 Cosmology and Nongalactic Astrophysics +1106.2815 Cosmology and Nongalactic Astrophysics +1106.2979 Statistical Mechanics +1106.3555 Theory +1106.3831 Optimization and Control +1106.4744 Number Theory +1106.5121 Statistical Mechanics +1106.5910 +1107.0737 +1107.1405 Lattice +1107.4848 Mesoscale and Nanoscale Physics +1108.1394 Theory +1108.2654 +1108.2672 Quantum Gases +1108.2904 +1108.3439 Soft Condensed Matter +1108.4436 Computational Complexity +1108.4664 Computational Complexity +1108.5939 Statistics Theory +1109.0559 +1109.0658 Optimization and Control +1109.0962 Solar and Stellar Astrophysics +1109.3059 +1109.4713 Theory +1109.5015 +1109.5550 +1110.0969 General Physics +1110.1411 Astrophysics of Galaxies +1110.1842 Distributed, Parallel, and Cluster Computing +1110.1852 Number Theory +1110.2293 Phenomenology +1110.2470 Strongly Correlated Electrons +1110.3296 General Physics +1110.3592 Information Theory +1110.4109 High Energy Astrophysical Phenomena +1110.4495 +1110.5580 Algebraic Geometry +1110.5856 Statistical Mechanics +1110.6038 Lattice +1110.6751 Superconductivity +1111.0569 Group Theory +1111.2569 Materials Science +1111.2843 Logic +1111.4839 Analysis of PDEs +1111.4972 Differential Geometry +1111.5038 Formal Languages and Automata Theory +1111.5239 Distributed, Parallel, and Cluster Computing +1111.5379 Computation +1111.5542 Solar and Stellar Astrophysics +1111.6072 Instrumentation and Methods for Astrophysics +1111.6111 Astrophysics of Galaxies +1111.6113 Rings and Algebras +1111.6114 Probability +1111.6116 Instrumentation and Methods for Astrophysics +1111.6118 Disordered Systems and Neural Networks +1111.6120 Representation Theory +1111.6121 Computers and Society +1111.6122 +1111.6130 Materials Science +1111.6131 Popular Physics +1111.6132 Instrumentation and Methods for Astrophysics +1111.6139 Classical Analysis and ODEs +1111.6140 Strongly Correlated Electrons +1111.6141 Rings and Algebras +1111.6145 History and Overview +1111.6149 Networking and Internet Architecture +1111.6153 Geometric Topology +1111.6158 Lattice +1111.6160 Machine Learning +1111.6161 Metric Geometry +1111.6163 History and Philosophy of Physics +1111.6167 Instrumentation and Detectors +1111.6176 Earth and Planetary Astrophysics +1111.6183 Operator Algebras +1111.6191 Artificial Intelligence +1111.6194 Classical Analysis and ODEs +1111.6196 Quantum Gases +1111.6203 Experiment +1111.6204 Materials Science +1111.6205 Strongly Correlated Electrons +1111.6210 Materials Science +1111.6211 Group Theory +1111.6212 Analysis of PDEs +1111.6214 Computational Engineering, Finance, and Science +1111.6215 Combinatorics +1111.6216 Combinatorics +1111.6218 Networking and Internet Architecture +1111.6221 Phenomenology +1111.6223 Information Theory +1111.6224 Data Structures and Algorithms +1111.6230 Statistics Theory +1111.6234 Probability +1111.6235 Representation Theory +1111.6240 Materials Science +1111.6244 Information Theory +1111.6251 Instrumentation and Methods for Astrophysics +1111.6253 Commutative Algebra +1111.6265 Multimedia +1111.6268 Analysis of PDEs +1111.6271 Statistical Mechanics +1111.6274 Experiment +1111.6282 High Energy Astrophysical Phenomena +1111.6283 Applications +1111.6286 +1111.6288 Lattice +1111.6294 Algebraic Geometry +1111.6297 Combinatorics +1111.6298 Computation +1111.6303 Algebraic Geometry +1111.6304 +1111.6310 Geometric Topology +1111.6316 Rings and Algebras +1111.6321 Graphics +1111.6322 Mesoscale and Nanoscale Physics +1111.6324 Distributed, Parallel, and Cluster Computing +1111.6333 Mesoscale and Nanoscale Physics +1111.6334 Information Theory +1111.6336 Materials Science +1111.6344 Theory +1111.6345 Applications +1111.6349 Information Retrieval +1111.6352 Mesoscale and Nanoscale Physics +1111.6357 Numerical Analysis +1111.6358 Probability +1111.6359 Solar and Stellar Astrophysics +1111.6367 Strongly Correlated Electrons +1111.6376 Phenomenology +1111.6380 Lattice +1111.6381 Cosmology and Nongalactic Astrophysics +1111.6387 Information Retrieval +1111.6388 Dynamical Systems +1111.6390 +1111.6393 High Energy Astrophysical Phenomena +1111.6399 Instrumentation and Methods for Astrophysics +1111.6401 Artificial Intelligence +1111.6408 Geometric Topology +1111.6412 Geometric Topology +1111.6414 Information Theory +1111.6416 Dynamical Systems +1111.6418 Complex Variables +1111.6421 Phenomenology +1111.6423 Soft Condensed Matter +1111.6425 Theory +1111.6427 Solar and Stellar Astrophysics +1111.6428 Statistics Theory +1111.6431 Formal Languages and Automata Theory +1111.6437 Theory +1111.6441 Fluid Dynamics +1111.6443 Instrumentation and Methods for Astrophysics +1111.6444 Functional Analysis +1111.6455 Materials Science +1111.6457 Algebraic Geometry +1111.6459 Materials Science +1111.6460 Dynamical Systems +1111.6463 General Physics +1111.6464 Solar and Stellar Astrophysics +1111.6465 Instrumentation and Methods for Astrophysics +1111.6468 +1111.6471 +1111.6476 Strongly Correlated Electrons +1111.6480 Phenomenology +1111.6482 Geophysics +1111.6486 Solar and Stellar Astrophysics +1111.6494 Neurons and Cognition +1111.6495 Neurons and Cognition +1111.6497 General Physics +1111.6502 Information Theory +1111.6505 Differential Geometry +1111.6516 Popular Physics +1111.6518 Combinatorics +1111.6520 Statistical Mechanics +1111.6522 Commutative Algebra +1111.6525 Instrumentation and Methods for Astrophysics +1111.6528 +1111.6539 Networking and Internet Architecture +1111.6541 Chaotic Dynamics +1111.6546 Operator Algebras +1111.6548 Algebraic Geometry +1111.6549 Mathematical Software +1111.6550 Phenomenology +1111.6551 High Energy Astrophysical Phenomena +1111.6553 Computation and Language +1111.6554 Probability +1111.6561 Discrete Mathematics +1111.6563 Neurons and Cognition +1111.6573 Neurons and Cognition +1111.6576 Phenomenology +astro-ph/0003464 +cond-mat/0309194 Statistical Mechanics +cond-mat/0412547 Statistical Mechanics +cond-mat/0606211 Statistical Mechanics +cond-mat/0611265 Statistical Mechanics +cond-mat/0702377 Strongly Correlated Electrons +cond-mat/9705209 Statistical Mechanics +cond-mat/9812223 Statistical Mechanics +math-ph/0110011 +math/0507103 Symplectic Geometry +math/0509605 Probability +math/0510273 Probability +math/0604584 Geometric Topology +math/0605037 Category Theory +math/0701755 Combinatorics +solv-int/9602002 Exactly Solvable and Integrable Systems +0707.2577 +0710.5068 Statistical Mechanics +0808.3777 +0812.4487 Information Theory +0903.3654 Algebraic Geometry +0905.0391 Other Condensed Matter +0907.5227 Analysis of PDEs +0911.4863 Learning +0912.1099 Solar and Stellar Astrophysics +0912.5338 Statistics Theory +1003.1146 Statistics Theory +1003.4927 +1006.4495 Theory +1007.3802 Mesoscale and Nanoscale Physics +1008.3574 Materials Science +1008.4293 Statistical Mechanics +1009.0878 Biological Physics +1010.1519 Cosmology and Nongalactic Astrophysics +1010.4805 Solar and Stellar Astrophysics +1010.5261 Mesoscale and Nanoscale Physics +1011.0408 Theory +1011.0452 Theory +1011.2925 Differential Geometry +1011.3683 Rings and Algebras +1011.4471 Mesoscale and Nanoscale Physics +1011.5429 +1011.5738 General Physics +1012.1669 Instrumentation and Detectors +1012.5180 Cosmology and Nongalactic Astrophysics +1101.1675 Differential Geometry +1101.2910 Theory +1101.2946 +1102.3849 +1102.4535 Disordered Systems and Neural Networks +1102.4817 Cosmology and Nongalactic Astrophysics +1102.5697 General Physics +1103.0893 Statistical Finance +1103.3648 Digital Libraries +1103.3806 Materials Science +1103.4958 Solar and Stellar Astrophysics +1103.5718 Soft Condensed Matter +1104.1672 Probability +1104.1703 Computational Physics +1104.3889 Genomics +1104.4010 Pricing of Securities +1104.4290 Artificial Intelligence +1104.4337 Quantitative Methods +1105.0655 Algebraic Geometry +1105.1880 Functional Analysis +1105.2106 Quantum Gases +1105.2236 Complex Variables +1105.2348 Geometric Topology +1105.2481 +1105.2578 Fluid Dynamics +1105.2579 Numerical Analysis +1105.2582 Other Statistics +1105.2584 Distributed, Parallel, and Cluster Computing +1105.2585 Fluid Dynamics +1105.2590 Geometric Topology +1105.2592 Differential Geometry +1105.2597 Differential Geometry +1105.2603 Number Theory +1105.2609 General Physics +1105.2612 Cosmology and Nongalactic Astrophysics +1105.2614 Disordered Systems and Neural Networks +1105.2619 Functional Analysis +1105.2622 Complex Variables +1105.2624 Hardware Architecture +1105.2629 Functional Analysis +1105.2632 Optimization and Control +1105.2635 History and Philosophy of Physics +1105.2639 Representation Theory +1105.2640 Statistics Theory +1105.2641 Analysis of PDEs +1105.2650 Functional Analysis +1105.2651 Combinatorics +1105.2652 Analysis of PDEs +1105.2654 Networking and Internet Architecture +1105.2655 Numerical Analysis +1105.2657 Functional Analysis +1105.2660 Algebraic Geometry +1105.2663 Materials Science +1105.2666 General Physics +1105.2667 Instrumentation and Methods for Astrophysics +1105.2668 Mesoscale and Nanoscale Physics +1105.2669 Combinatorics +1105.2671 Combinatorics +1105.2672 Combinatorics +1105.2673 Combinatorics +1105.2676 Materials Science +1105.2677 Combinatorics +1105.2678 Disordered Systems and Neural Networks +1105.2685 Operator Algebras +1105.2687 Plasma Physics +1105.2691 Plasma Physics +1105.2692 +1105.2694 Classical Analysis and ODEs +1105.2696 +1105.2698 Statistics Theory +1105.2700 Materials Science +1105.2705 General Physics +1105.2706 Probability +1105.2707 Information Theory +1105.2708 Other Condensed Matter +1105.2710 Materials Science +1105.2718 Other Condensed Matter +1105.2723 Combinatorics +1105.2724 Experiment +1105.2726 Analysis of PDEs +1105.2732 Functional Analysis +1105.2736 Analysis of PDEs +1105.2740 Instrumentation and Methods for Astrophysics +1105.2748 Analysis of PDEs +1105.2750 +1105.2754 Accelerator Physics +1105.2771 General Physics +1105.2772 Analysis of PDEs +1105.2777 Materials Science +1105.2783 Information Theory +1105.2786 Information Theory +1105.2792 Logic +1105.2794 Algebraic Geometry +1105.2795 Computer Vision and Pattern Recognition +1105.2796 Computer Vision and Pattern Recognition +1105.2797 Computer Vision and Pattern Recognition +1105.2800 Computer Vision and Pattern Recognition +1105.2803 Dynamical Systems +1105.2809 Theory +1105.2819 General Physics +cond-mat/9809188 Mesoscale and Nanoscale Physics +gr-qc/0509064 +math/0612314 Differential Geometry +physics/0503033 Accelerator Physics +0704.3706 Data Analysis, Statistics and Probability +0705.3654 Strongly Correlated Electrons +0706.3384 Theory +0707.0865 Spectral Theory +0708.2510 Spectral Theory +0708.3539 Combinatorics +0709.2687 Differential Geometry +0710.2229 Lattice +0710.3770 Differential Geometry +0710.4400 +0712.3829 +0803.1613 Differential Geometry +0803.2552 Analysis of PDEs +0804.1027 Probability +0804.3472 +0806.1880 +0807.1694 Symplectic Geometry +0807.2219 +0808.1592 Symplectic Geometry +0808.2193 +0809.1529 +0809.4687 Phenomenology +0810.3535 Number Theory +0810.3580 +0811.0810 +0812.3936 +0901.1088 Lattice +0901.1120 Phenomenology +0901.2676 Theory +0903.1562 Phenomenology +0903.4135 Phenomenology +0904.0230 Phenomenology +0904.1716 Theory +0904.2406 Experiment +0905.0038 Analysis of PDEs +0907.1217 Experiment +0907.2567 Differential Geometry +0908.0918 +0908.4095 Superconductivity +0909.3172 Disordered Systems and Neural Networks +0911.1968 +0911.5577 Differential Geometry +0911.5631 Computational Physics +0912.2539 Symplectic Geometry +0912.5499 +1001.0134 High Energy Astrophysical Phenomena +1001.0313 Combinatorics +1001.3105 Phenomenology +1001.4089 Theory +1002.0003 Theory +1002.0840 Phenomenology +1002.2079 Theory +1002.2626 Phenomenology +1002.3039 Cosmology and Nongalactic Astrophysics +1002.3542 Phenomenology +1002.4120 +1002.4278 Theory +1002.4456 Logic +1003.0299 Cosmology and Nongalactic Astrophysics +1003.1898 Lattice +1003.1982 Theory +1003.2926 +1003.3014 Phenomenology +1003.4175 Cosmology and Nongalactic Astrophysics +1003.4241 Algebraic Geometry +1003.4694 Theory +1003.4773 +1003.4913 Phenomenology +1003.4971 +1003.5885 Experiment +1004.1118 High Energy Astrophysical Phenomena +1004.2066 Cosmology and Nongalactic Astrophysics +1004.2732 Phenomenology +1004.2954 Theory +1004.3360 Cosmology and Nongalactic Astrophysics +1004.3417 Theory +1004.3471 Spectral Theory +1004.3983 Theory +1004.4287 Functional Analysis +1004.4496 General Physics +1004.4877 +1004.4916 High Energy Astrophysical Phenomena +1004.4945 Theory +1004.5385 Theory +1004.5435 +1004.5509 Cosmology and Nongalactic Astrophysics +1004.5579 High Energy Astrophysical Phenomena +1005.1056 Theory +1005.3923 Cosmology and Nongalactic Astrophysics +1005.4598 Phenomenology +1006.0196 Cosmology and Nongalactic Astrophysics +1006.1035 High Energy Astrophysical Phenomena +1006.1200 +1006.2221 Numerical Analysis +1006.2514 Cosmology and Nongalactic Astrophysics +1006.2879 Cosmology and Nongalactic Astrophysics +1006.3353 Cosmology and Nongalactic Astrophysics +1006.3875 Solar and Stellar Astrophysics +1006.5411 Cosmology and Nongalactic Astrophysics +1006.5859 Number Theory +1007.0018 High Energy Astrophysical Phenomena +1007.0326 Number Theory +1007.0405 +1007.0657 Cosmology and Nongalactic Astrophysics +1007.0955 Cosmology and Nongalactic Astrophysics +1007.1011 Cosmology and Nongalactic Astrophysics +1007.2396 Cosmology and Nongalactic Astrophysics +1007.3549 Instrumentation and Methods for Astrophysics +1007.3742 High Energy Astrophysical Phenomena +1007.5148 Cosmology and Nongalactic Astrophysics +1007.5297 Cosmology and Nongalactic Astrophysics +1008.0232 +1008.0260 Cosmology and Nongalactic Astrophysics +1008.0653 Lattice +1008.1432 Cosmology and Nongalactic Astrophysics +1008.1467 Mesoscale and Nanoscale Physics +1008.1530 Lattice +1008.1538 Lattice +1008.2011 Lattice +1008.2143 Lattice +1008.2224 Lattice +1008.2385 Cosmology and Nongalactic Astrophysics +1008.2468 Lattice +1008.2561 High Energy Astrophysical Phenomena +1008.3188 Cosmology and Nongalactic Astrophysics +1008.3506 Cosmology and Nongalactic Astrophysics +1009.0019 Cosmology and Nongalactic Astrophysics +1009.0657 Lattice +1009.0916 Cosmology and Nongalactic Astrophysics +1009.1293 Cosmology and Nongalactic Astrophysics +1009.1382 High Energy Astrophysical Phenomena +1009.1615 Theory +1009.2173 High Energy Astrophysical Phenomena +1009.2321 Cosmology and Nongalactic Astrophysics +1009.2700 Quantum Gases +1009.3154 Lattice +1009.3204 Cosmology and Nongalactic Astrophysics +1009.3326 Cosmology and Nongalactic Astrophysics +1009.3672 Cosmology and Nongalactic Astrophysics +1009.3758 Lattice +1009.3915 Lattice +1009.5169 Lattice +1009.5779 Mesoscale and Nanoscale Physics +1009.5838 Lattice +1010.0110 Lattice +1010.0153 High Energy Astrophysical Phenomena +1010.1339 Cosmology and Nongalactic Astrophysics +1010.1360 Lattice +1010.1486 Lattice +1010.1905 Superconductivity +1010.1975 Lattice +1010.2199 Molecular Networks +1010.2390 Lattice +1010.2477 Cosmology and Nongalactic Astrophysics +1010.2592 Lattice +1010.2786 Lattice +1010.2944 Phenomenology +1010.3065 Phenomenology +1010.3101 Theory +1010.3406 Phenomenology +1010.3461 Phenomenology +1010.3505 +1010.3794 Theory +1010.3883 Phenomenology +1010.3933 Theory +1010.3943 +1010.3953 Soft Condensed Matter +1010.3993 Cosmology and Nongalactic Astrophysics +1010.4029 Theory +1010.4078 Phenomenology +1010.4198 Phenomenology +1010.4354 +1010.4357 Phenomenology +1010.4379 Phenomenology +1010.4388 Phenomenology +1010.4438 Theory +1010.4481 Phenomenology +1010.4549 Theory +1010.4564 Theory +1010.4623 Phenomenology +1010.4667 Theory +1010.4737 Phenomenology +1010.4803 Theory +1010.4878 Experiment +1010.4950 Theory +1010.5121 Theory +1010.5236 High Energy Astrophysical Phenomena +1010.5375 +1010.5629 Lattice +1010.5652 High Energy Astrophysical Phenomena +1010.5655 Theory +1010.5789 Theory +1010.5843 Theory +1010.5958 Statistical Mechanics +1010.5991 Instrumentation and Detectors +1010.6018 Lattice +1010.6117 Phenomenology +1011.0099 Phenomenology +1011.0112 Theory +1011.0163 Instrumentation and Detectors +1011.0339 Theory +1011.0348 Phenomenology +1011.0382 Phenomenology +1011.0410 Phenomenology +1011.0788 Lattice +1011.1038 Phenomenology +1011.1073 Quantum Algebra +1011.1099 Phenomenology +1011.1440 Theory +1011.1469 Phenomenology +1011.1664 Phenomenology +1011.1779 Phenomenology +1011.1953 Theory +1011.2487 Theory +1011.2677 Phenomenology +1011.2825 Experiment +1011.2954 Phenomenology +1011.3450 Phenomenology +1011.3497 Phenomenology +1011.3573 Theory +1011.3746 Theory +1011.3767 +1011.3772 High Energy Astrophysical Phenomena +1011.3918 Phenomenology +1011.4439 Phenomenology +1011.4552 Theory +1011.4568 Theory +1011.4719 Theory +1011.5518 Phenomenology +1011.5599 Data Structures and Algorithms +1011.5647 Phenomenology +1011.5847 Phenomenology +1011.6412 Phenomenology +1011.6536 +1012.0241 +1012.1041 +1012.2201 Phenomenology +1012.2267 Theory +1012.2610 Classical Analysis and ODEs +1012.2942 Experiment +1012.2954 Phenomenology +1012.4090 Theory +1012.4384 Chaotic Dynamics +1012.4484 Lattice +1012.4568 Theory +1012.5406 +1012.5531 +1101.1183 +1101.3424 Phenomenology +1101.3578 Logic +1101.4087 Phenomenology +1101.4311 +1101.4689 Discrete Mathematics +1101.4813 Logic in Computer Science +1101.4949 Earth and Planetary Astrophysics +1101.4960 Atomic Physics +1101.4974 Probability +1101.4975 Dynamical Systems +1101.4977 Earth and Planetary Astrophysics +1101.4980 +1101.4983 +1101.4984 Other Quantitative Biology +1101.4990 Algebraic Geometry +1101.4994 Mesoscale and Nanoscale Physics +1101.4999 Information Theory +1101.5004 Solar and Stellar Astrophysics +1101.5007 Cosmology and Nongalactic Astrophysics +1101.5010 Cosmology and Nongalactic Astrophysics +1101.5012 Algebraic Geometry +1101.5016 Experiment +1101.5021 Combinatorics +1101.5024 Phenomenology +1101.5025 Information Theory +1101.5027 Optimization and Control +1101.5030 Probability +1101.5031 Experiment +1101.5035 Probability +1101.5039 Learning +1101.5041 Probability +1101.5042 Algebraic Geometry +1101.5046 Formal Languages and Automata Theory +1101.5060 General Physics +1101.5062 Geophysics +1101.5068 Theory +1101.5070 Algebraic Geometry +1101.5072 Probability +1101.5073 Probability +1101.5084 Applications +1101.5085 Geophysics +1101.5087 Biological Physics +1101.5088 Social and Information Networks +1101.5093 +1101.5094 Analysis of PDEs +1101.5099 Solar and Stellar Astrophysics +1101.5105 Functional Analysis +1101.5107 Rings and Algebras +1101.5108 Information Theory +1101.5109 Phenomenology +1101.5110 Combinatorics +1101.5116 Algebraic Geometry +1101.5119 Functional Analysis +1101.5125 +1101.5127 Multimedia +1101.5129 Soft Condensed Matter +1101.5131 Lattice +1101.5133 Analysis of PDEs +1101.5140 Algebraic Geometry +1101.5141 Data Analysis, Statistics and Probability +1101.5144 Probability +astro-ph/0109547 +astro-ph/0604590 +astro-ph/0701683 +cond-mat/0405469 Statistical Mechanics +gr-qc/0207111 +gr-qc/0207112 +gr-qc/0304064 +gr-qc/0401046 +gr-qc/0605145 +gr-qc/0607114 +hep-ex/0011101 Experiment +hep-ex/0309062 Experiment +hep-ex/0312034 Experiment +hep-ex/0406047 Experiment +hep-ex/0406058 Experiment +hep-ex/0407046 Experiment +hep-ex/9609004 Experiment +hep-ex/9708030 Experiment +hep-ex/9803012 Experiment +hep-ex/9805007 Experiment +hep-lat/0002007 Lattice +hep-lat/0009007 Lattice +hep-lat/0010048 Lattice +hep-lat/0011053 Lattice +hep-lat/0109026 Lattice +hep-lat/0110016 Lattice +hep-lat/0209162 Lattice +hep-lat/0309080 Lattice +hep-lat/0310035 Lattice +hep-lat/0402023 Lattice +hep-lat/0609065 Lattice +hep-lat/0610115 Lattice +hep-lat/9406017 Lattice +hep-lat/9705037 Lattice +hep-lat/9710095 Lattice +hep-lat/9711010 Lattice +hep-lat/9711043 Lattice +hep-lat/9809156 Lattice +hep-ph/0001055 Phenomenology +hep-ph/0001266 Phenomenology +hep-ph/0002115 Phenomenology +hep-ph/0007024 Phenomenology +hep-ph/0007200 Phenomenology +hep-ph/0007327 Phenomenology +hep-ph/0008007 Phenomenology +hep-ph/0008073 Phenomenology +hep-ph/0009088 Phenomenology +hep-ph/0011135 Phenomenology +hep-ph/0011364 Phenomenology +hep-ph/0012021 Phenomenology +hep-ph/0101086 Phenomenology +hep-ph/0101276 Phenomenology +hep-ph/0101291 Phenomenology +hep-ph/0103005 Phenomenology +hep-ph/0103094 Phenomenology +hep-ph/0105147 Phenomenology +hep-ph/0106253 Phenomenology +hep-ph/0108110 Phenomenology +hep-ph/0108201 Phenomenology +hep-ph/0108250 Phenomenology +hep-ph/0109088 Phenomenology +hep-ph/0110022 Phenomenology +hep-ph/0110375 Phenomenology +hep-ph/0111144 Phenomenology +hep-ph/0202056 Phenomenology +hep-ph/0202070 Phenomenology +hep-ph/0202259 Phenomenology +hep-ph/0203092 Phenomenology +hep-ph/0206101 Phenomenology +hep-ph/0207126 Phenomenology +hep-ph/0209211 Phenomenology +hep-ph/0210085 Phenomenology +hep-ph/0210118 Phenomenology +hep-ph/0210248 Phenomenology +hep-ph/0210378 Phenomenology +hep-ph/0211346 Phenomenology +hep-ph/0211360 Phenomenology +hep-ph/0211441 Phenomenology +hep-ph/0301070 Phenomenology +hep-ph/0302161 Phenomenology +hep-ph/0303110 Phenomenology +hep-ph/0303235 Phenomenology +hep-ph/0304165 Phenomenology +hep-ph/0304214 Phenomenology +hep-ph/0305193 Phenomenology +hep-ph/0306183 Phenomenology +hep-ph/0307317 Phenomenology +hep-ph/0308029 Phenomenology +hep-ph/0308176 Phenomenology +hep-ph/0308298 Phenomenology +hep-ph/0309047 Phenomenology +hep-ph/0309053 Phenomenology +hep-ph/0310130 Phenomenology +hep-ph/0311045 Phenomenology +hep-ph/0311107 Phenomenology +hep-ph/0311130 Phenomenology +hep-ph/0311338 Phenomenology +hep-ph/0401191 Phenomenology +hep-ph/0403191 Phenomenology +hep-ph/0403218 Phenomenology +hep-ph/0403228 Phenomenology +hep-ph/0404001 Phenomenology +hep-ph/0404025 Phenomenology +hep-ph/0404041 Phenomenology +hep-ph/0404149 Phenomenology +hep-ph/0404220 Phenomenology +hep-ph/0404236 Phenomenology +hep-ph/0405086 Phenomenology +hep-ph/0406088 Phenomenology +hep-ph/0407109 Phenomenology +hep-ph/0407314 Phenomenology +hep-ph/0407315 Phenomenology +hep-ph/0408145 Phenomenology +hep-ph/0408193 Phenomenology +hep-ph/0409045 Phenomenology +hep-ph/0409094 Phenomenology +hep-ph/0409197 Phenomenology +hep-ph/0410128 Phenomenology +hep-ph/0410160 Phenomenology +hep-ph/0410220 Phenomenology +hep-ph/0410328 Phenomenology +hep-ph/0410368 Phenomenology +hep-ph/0411114 Phenomenology +hep-ph/0411395 Phenomenology +hep-ph/0412209 Phenomenology +hep-ph/0505097 Phenomenology +hep-ph/0506101 Phenomenology +hep-ph/0506142 Phenomenology +hep-ph/0507073 Phenomenology +hep-ph/0508200 Phenomenology +hep-ph/0601016 Phenomenology +hep-ph/0603149 Phenomenology +hep-ph/0603259 Phenomenology +hep-ph/0604096 Phenomenology +hep-ph/0607244 Phenomenology +hep-ph/9210266 Phenomenology +hep-ph/9301249 Phenomenology +hep-ph/9312220 Phenomenology +hep-ph/9312224 Phenomenology +hep-ph/9401226 Phenomenology +hep-ph/9401348 Phenomenology +hep-ph/9403254 Phenomenology +hep-ph/9404253 Phenomenology +hep-ph/9405261 Phenomenology +hep-ph/9407229 Phenomenology +hep-ph/9407404 Phenomenology +hep-ph/9408202 Phenomenology +hep-ph/9408376 Phenomenology +hep-ph/9411241 Phenomenology +hep-ph/9411426 Phenomenology +hep-ph/9412311 Phenomenology +hep-ph/9412379 Phenomenology +hep-ph/9502210 Phenomenology +hep-ph/9502318 Phenomenology +hep-ph/9503201 Phenomenology +hep-ph/9503455 Phenomenology +hep-ph/9505321 Phenomenology +hep-ph/9505428 Phenomenology +hep-ph/9507248 Phenomenology +hep-ph/9507323 Phenomenology +hep-ph/9507402 Phenomenology +hep-ph/9507460 Phenomenology +hep-ph/9508262 Phenomenology +hep-ph/9508283 Phenomenology +hep-ph/9510238 Phenomenology +hep-ph/9510249 Phenomenology +hep-ph/9511234 Phenomenology +hep-ph/9511267 Phenomenology +hep-ph/9511304 Phenomenology +hep-ph/9511369 Phenomenology +hep-ph/9511410 Phenomenology +hep-ph/9512258 Phenomenology +hep-ph/9512435 Phenomenology +hep-ph/9601332 Phenomenology +hep-ph/9603262 Phenomenology +hep-ph/9603350 Phenomenology +hep-ph/9603410 Phenomenology +hep-ph/9603448 Phenomenology +hep-ph/9604224 Phenomenology +hep-ph/9604425 Phenomenology +hep-ph/9605412 Phenomenology +hep-ph/9607274 Phenomenology +hep-ph/9607307 Phenomenology +hep-ph/9607317 Phenomenology +hep-ph/9608277 Phenomenology +hep-ph/9608326 Phenomenology +hep-ph/9609419 Phenomenology +hep-ph/9610224 Phenomenology +hep-ph/9611406 Phenomenology +hep-ph/9612406 Phenomenology +hep-ph/9701238 Phenomenology +hep-ph/9701336 Phenomenology +hep-ph/9701398 Phenomenology +hep-ph/9702426 Phenomenology +hep-ph/9703213 Phenomenology +hep-ph/9705219 Phenomenology +hep-ph/9705350 Phenomenology +hep-ph/9706214 Phenomenology +hep-ph/9706245 Phenomenology +hep-ph/9706479 Phenomenology +hep-ph/9706495 Phenomenology +hep-ph/9707355 Phenomenology +hep-ph/9707462 Phenomenology +hep-ph/9708316 Phenomenology +hep-ph/9709201 Phenomenology +hep-ph/9709313 Phenomenology +hep-ph/9709386 Phenomenology +hep-ph/9710286 Phenomenology +hep-ph/9710336 Phenomenology +hep-ph/9710432 Phenomenology +hep-ph/9710471 Phenomenology +hep-ph/9711239 Phenomenology +hep-ph/9711280 Phenomenology +hep-ph/9711284 Phenomenology +hep-ph/9711287 Phenomenology +hep-ph/9711445 Phenomenology +hep-ph/9711458 Phenomenology +hep-ph/9712257 Phenomenology +hep-ph/9802231 Phenomenology +hep-ph/9802329 Phenomenology +hep-ph/9802441 Phenomenology +hep-ph/9803428 Phenomenology +hep-ph/9803489 Phenomenology +hep-ph/9804265 Phenomenology +hep-ph/9805248 Phenomenology +hep-ph/9805336 Phenomenology +hep-ph/9805373 Phenomenology +hep-ph/9806299 Phenomenology +hep-ph/9806315 Phenomenology +hep-ph/9809240 Phenomenology +hep-ph/9810204 Phenomenology +hep-ph/9811464 Phenomenology +hep-ph/9811475 Phenomenology +hep-ph/9901427 Phenomenology +hep-ph/9904386 Phenomenology +hep-ph/9904491 Phenomenology +hep-ph/9907517 Phenomenology +hep-ph/9912504 Phenomenology +math-ph/0701039 +math/0306346 Group Theory +math/0407494 Symplectic Geometry +math/0411321 Operator Algebras +math/0601540 Symplectic Geometry +math/0703562 Differential Geometry +nucl-th/0207036 +nucl-th/0209040 +nucl-th/0409010 +0705.0207 Differential Geometry +0706.4044 Logic in Computer Science +0706.4368 Geometric Topology +0708.3244 Physics and Society +0709.0150 Geometric Topology +0709.2026 Geometric Topology +0803.2211 Optimization and Control +0804.3651 Algebraic Geometry +0805.1329 +0805.3587 Numerical Analysis +0807.0241 +0808.1532 +0810.0975 Differential Geometry +0810.1221 Geometric Topology +0810.4031 +0811.0935 Information Theory +0811.0966 Number Theory +0811.3726 Geometric Topology +0812.1695 Algebraic Geometry +0901.3198 Quantitative Methods +0901.3215 Quantitative Methods +0901.4373 Complex Variables +0903.1478 Commutative Algebra +0903.2991 Mesoscale and Nanoscale Physics +0904.0960 General Physics +0904.2766 Theory +0904.2782 +0904.4143 Optimization and Control +0905.3617 Mesoscale and Nanoscale Physics +0906.2359 Numerical Analysis +0906.2421 Complex Variables +0906.2424 Complex Variables +0906.5106 Combinatorics +0906.5178 +0906.5195 Algebraic Geometry +0907.2371 Other Condensed Matter +0908.1253 Complex Variables +0909.1252 Physics and Society +0909.1408 +0909.5014 Algebraic Geometry +0910.0496 Fluid Dynamics +0910.0846 Superconductivity +0910.4750 Atmospheric and Oceanic Physics +0911.0963 Phenomenology +0911.3439 Complex Variables +0912.2494 Strongly Correlated Electrons +0912.5259 Algebraic Geometry +1001.3101 Populations and Evolution +1001.4603 Quantitative Methods +1003.2696 Superconductivity +1003.3278 Theory +1003.3726 Probability +1003.5110 Statistical Mechanics +1004.0175 Experiment +1004.0497 +1004.0592 Phenomenology +1004.0873 Populations and Evolution +1004.1965 +1004.3414 +1004.3943 Representation Theory +1004.3967 Combinatorics +1004.5011 Probability +1005.0464 Theory +1005.2478 Algebraic Geometry +1005.3064 Mesoscale and Nanoscale Physics +1005.4625 Quantum Gases +1006.0999 Representation Theory +1006.2625 Quantitative Methods +1006.4192 +1006.4667 Theory +1006.5318 +1007.2312 Number Theory +1007.3204 Cosmology and Nongalactic Astrophysics +1008.0248 +1008.1102 Geometric Topology +1008.2576 Theory +1008.4088 +1008.4638 Phenomenology +1009.0605 Learning +1009.0607 +1009.1800 Geometric Topology +1009.1975 Algebraic Geometry +1009.2264 Phenomenology +1009.2675 +1009.3315 Superconductivity +1009.3627 Quantitative Methods +1009.3861 History and Philosophy of Physics +1009.4189 Cosmology and Nongalactic Astrophysics +1009.4207 +1009.4796 +1009.5210 Astrophysics of Galaxies +1009.6143 +1010.2215 Cosmology and Nongalactic Astrophysics +1010.3747 Mesoscale and Nanoscale Physics +1010.5048 Mesoscale and Nanoscale Physics +1010.5802 Phenomenology +1011.0514 Mesoscale and Nanoscale Physics +1011.1658 Superconductivity +1011.2045 Solar and Stellar Astrophysics +1011.2512 Artificial Intelligence +1011.5232 High Energy Astrophysical Phenomena +1012.0142 Data Analysis, Statistics and Probability +1012.0275 Dynamical Systems +1012.2303 +1012.2390 Phenomenology +1012.2778 Differential Geometry +1012.5020 Algebraic Topology +1101.0671 Geometric Topology +1101.0760 Statistical Mechanics +1101.0890 +1101.1123 Rings and Algebras +1101.1338 Materials Science +1101.1659 Phenomenology +1101.1708 Analysis of PDEs +1101.2418 +1101.2434 Neurons and Cognition +1101.2667 +1101.2740 High Energy Astrophysical Phenomena +1101.2772 Algebraic Geometry +1101.2773 Chemical Physics +1101.2834 Information Retrieval +1101.2905 Phenomenology +1101.2912 Plasma Physics +1101.2913 Discrete Mathematics +1101.2914 Representation Theory +1101.2917 Metric Geometry +1101.2920 Metric Geometry +1101.2923 Soft Condensed Matter +1101.2940 Data Structures and Algorithms +1101.2941 General Physics +1101.2943 Superconductivity +1101.2947 Probability +1101.2950 Experiment +1101.2954 Materials Science +1101.2957 Combinatorics +1101.2962 Functional Analysis +1101.2964 Discrete Mathematics +1101.2969 General Physics +1101.2970 Combinatorics +1101.2976 K-Theory and Homology +1101.2979 Functional Analysis +1101.2981 Geometric Topology +1101.2987 Computer Vision and Pattern Recognition +1101.2998 Complex Variables +1101.2999 Logic in Computer Science +1101.3001 Number Theory +1101.3010 +1101.3014 Metric Geometry +1101.3024 Representation Theory +1101.3026 Number Theory +1101.3034 Functional Analysis +1101.3048 Statistical Mechanics +1101.3056 Numerical Analysis +1101.3058 Analysis of PDEs +1101.3062 Number Theory +1101.3067 Networking and Internet Architecture +1101.3071 Computational Finance +1101.3076 Cryptography and Security +1101.3094 Classical Analysis and ODEs +1101.3096 High Energy Astrophysical Phenomena +1101.3100 High Energy Astrophysical Phenomena +1101.3114 Representation Theory +1101.3118 Materials Science +1101.3119 Combinatorics +1101.3126 Combinatorics +1101.3129 Spectral Theory +1101.3132 Logic in Computer Science +1101.3133 Spectral Theory +1101.3135 Complex Variables +1101.3140 Symbolic Computation +1101.3142 Materials Science +1101.3144 Metric Geometry +1101.3146 Phenomenology +1101.3147 Theory +1101.3150 Superconductivity +1101.3154 Astrophysics of Galaxies +1101.3161 Software Engineering +1101.3167 +1101.3168 +1101.3172 Superconductivity +1101.3178 Representation Theory +1101.3190 Number Theory +1101.3204 Classical Analysis and ODEs +1101.3210 Instrumentation and Methods for Astrophysics +1101.3213 Instrumentation and Methods for Astrophysics +1101.3219 Functional Analysis +1101.3220 Information Theory +1101.3226 General Topology +1101.3230 Experiment +1101.3232 General Topology +1101.3236 Soft Condensed Matter +1101.3237 +1101.3240 +1101.3249 +1101.3251 Cell Behavior +1101.3252 Dynamical Systems +1101.3258 Experiment +1101.3271 Solar and Stellar Astrophysics +1101.3278 Classical Analysis and ODEs +1101.3284 Cosmology and Nongalactic Astrophysics +1101.3302 Geometric Topology +1101.3303 Space Physics +1101.3304 Astrophysics of Galaxies +cond-mat/0506739 Mesoscale and Nanoscale Physics +cs/0404015 Distributed, Parallel, and Cluster Computing +cs/0603105 Other Computer Science +cs/0603106 Other Computer Science +gr-qc/0703130 +hep-th/0610189 Theory +math/0410433 Geometric Topology +math/0411114 Geometric Topology +math/0412187 Geometric Topology +math/0503027 Geometric Topology +math/0505290 Algebraic Geometry +math/0509599 Algebraic Geometry +math/0612553 Metric Geometry +math/0612830 Geometric Topology +math/0701906 Geometric Topology +math/9809169 Geometric Topology +math/9907184 Geometric Topology +physics/0701227 General Physics +quant-ph/0405142 +quant-ph/0607001 +0705.2165 Dynamical Systems +0711.2238 Algebraic Geometry +0711.3064 Optics +0803.0524 Optimization and Control +0804.1391 Group Theory +0809.0467 Group Theory +0810.0559 Differential Geometry +0904.1464 High Energy Astrophysical Phenomena +0905.0434 Combinatorics +0907.4109 Cosmology and Nongalactic Astrophysics +0908.0293 Cosmology and Nongalactic Astrophysics +1003.1388 Algebraic Geometry +1004.1699 Combinatorics +1004.2518 Cosmology and Nongalactic Astrophysics +1005.4095 Probability +1011.4484 Phenomenology +1011.5322 +1011.5980 Soft Condensed Matter +1012.0320 +1012.2834 High Energy Astrophysical Phenomena +1101.1055 Strongly Correlated Electrons +1102.1150 Algebraic Geometry +1103.2340 Quantum Algebra +1104.2852 Applications +1104.3948 Data Analysis, Statistics and Probability +1104.5364 Superconductivity +1105.1285 Analysis of PDEs +1105.2041 Superconductivity +1105.3451 +1105.3646 Theory +1105.4709 +1105.4750 Theory +1105.5266 +1105.6233 Superconductivity +1106.0596 Physics and Society +1106.0980 Mesoscale and Nanoscale Physics +1106.1010 Phenomenology +1106.1692 +1106.2982 Mesoscale and Nanoscale Physics +1106.3798 Phenomenology +1106.4983 Statistics Theory +1106.5612 Numerical Analysis +1106.6345 History and Philosophy of Physics +1107.0798 Data Structures and Algorithms +1107.1361 Mesoscale and Nanoscale Physics +1107.2879 Quantitative Methods +1107.5167 Mesoscale and Nanoscale Physics +1107.5482 Strongly Correlated Electrons +1108.0791 Mesoscale and Nanoscale Physics +1108.1095 Mesoscale and Nanoscale Physics +1108.1805 Cosmology and Nongalactic Astrophysics +1108.2679 Mesoscale and Nanoscale Physics +1108.2699 +1109.2024 Materials Science +1109.4606 Representation Theory +1109.5899 General Physics +1110.2519 Populations and Evolution +1110.3942 Functional Analysis +1110.4446 High Energy Astrophysical Phenomena +1110.5406 Computational Physics +1110.5448 Probability +1110.6200 Human-Computer Interaction +1110.6720 Theory +1110.6773 Algebraic Geometry +1110.6920 Superconductivity +1111.0650 Combinatorics +1111.0656 +1111.0718 Lattice +1111.0827 +1111.0861 +1111.0867 Combinatorics +1111.0971 Cosmology and Nongalactic Astrophysics +1111.0974 Complex Variables +1111.0975 Solar and Stellar Astrophysics +1111.0977 Populations and Evolution +1111.0983 Numerical Analysis +1111.0984 High Energy Astrophysical Phenomena +1111.0986 Combinatorics +1111.0988 Lattice +1111.0991 Theory +1111.0995 Logic +1111.0998 Operator Algebras +1111.1000 Theory +1111.1002 Statistical Mechanics +1111.1013 Numerical Analysis +1111.1014 Computer Vision and Pattern Recognition +1111.1015 Combinatorics +1111.1019 High Energy Astrophysical Phenomena +1111.1021 Combinatorics +1111.1022 Software Engineering +1111.1028 Lattice +1111.1029 Optimization and Control +1111.1030 Materials Science +1111.1032 Materials Science +1111.1033 Representation Theory +1111.1035 +1111.1036 Exactly Solvable and Integrable Systems +1111.1039 High Energy Astrophysical Phenomena +1111.1042 Analysis of PDEs +1111.1043 Group Theory +1111.1045 High Energy Astrophysical Phenomena +1111.1053 Social and Information Networks +1111.1059 Lattice +1111.1064 Logic +1111.1065 Other Condensed Matter +1111.1066 Earth and Planetary Astrophysics +1111.1070 Cosmology and Nongalactic Astrophysics +1111.1073 Number Theory +1111.1074 Algebraic Geometry +1111.1080 Superconductivity +1111.1081 Dynamical Systems +1111.1087 Optics +1111.1090 Computer Vision and Pattern Recognition +1111.1092 Numerical Analysis +1111.1093 Computer Vision and Pattern Recognition +1111.1094 Robotics +1111.1096 Solar and Stellar Astrophysics +1111.1097 Algebraic Geometry +1111.1098 Lattice +1111.1102 Atmospheric and Oceanic Physics +1111.1106 Theory +1111.1111 Strongly Correlated Electrons +1111.1114 Differential Geometry +1111.1117 Cosmology and Nongalactic Astrophysics +1111.1118 Analysis of PDEs +1111.1119 Strongly Correlated Electrons +1111.1121 Geophysics +1111.1123 Theory +1111.1124 Learning +1111.1128 Number Theory +1111.1131 Phenomenology +1111.1132 Number Theory +1111.1139 +1111.1140 Analysis of PDEs +1111.1142 Instrumentation and Methods for Astrophysics +1111.1145 Phenomenology +1111.1146 Phenomenology +1111.1150 Combinatorics +1111.1167 Numerical Analysis +1111.1174 +1111.1179 Algebraic Geometry +1111.1183 Instrumentation and Methods for Astrophysics +1111.1185 High Energy Astrophysical Phenomena +1111.1187 Geometric Topology +1111.1190 High Energy Astrophysical Phenomena +1111.1191 Information Theory +1111.1192 Analysis of PDEs +1111.1199 General Physics +1111.1200 Combinatorics +1111.1201 Strongly Correlated Electrons +1111.1203 Algebraic Geometry +1111.1205 Logic +1111.1209 High Energy Astrophysical Phenomena +1111.1213 +1111.1217 Instrumentation and Methods for Astrophysics +1111.1218 Classical Analysis and ODEs +1111.1219 Mesoscale and Nanoscale Physics +1111.1224 Number Theory +1111.1225 High Energy Astrophysical Phenomena +1111.1226 Probability +1111.1227 Social and Information Networks +1111.1228 Biological Physics +1111.1229 Probability +cond-mat/0208485 Soft Condensed Matter +hep-th/0603051 Theory +0710.5338 Discrete Mathematics +0710.5737 +0711.1713 Probability +0712.2629 Data Structures and Algorithms +0802.1085 Rings and Algebras +0803.2679 Applications +0805.3912 Probability +0810.4576 Computational Complexity +0902.2758 Representation Theory +0903.4830 Metric Geometry +0903.4842 Metric Geometry +0903.4846 Metric Geometry +0905.3563 Theory +0906.2499 Instrumentation and Detectors +0908.1226 +0909.1091 Probability +1001.3619 Probability +1003.0704 Differential Geometry +1005.0277 Materials Science +1005.2734 +1005.4832 Theory +1006.1884 Quantum Gases +1006.2373 Probability +1006.2374 Probability +1006.3487 Metric Geometry +1006.3598 Mesoscale and Nanoscale Physics +1007.0549 Machine Learning +1007.0945 Data Analysis, Statistics and Probability +1007.1672 Phenomenology +1007.5331 Statistical Mechanics +1008.1075 Cosmology and Nongalactic Astrophysics +1008.3386 Cosmology and Nongalactic Astrophysics +1009.1280 Symplectic Geometry +1009.4833 Mesoscale and Nanoscale Physics +1009.5663 Optics +1009.5736 Machine Learning +1009.5760 Information Theory +1010.5213 Earth and Planetary Astrophysics +1010.5260 +1011.0165 Theory +1012.0561 Mesoscale and Nanoscale Physics +1012.1490 Experiment +1012.1509 Lattice +1012.2895 Mesoscale and Nanoscale Physics +1012.4279 Phenomenology +1012.5093 History and Philosophy of Physics +1101.1168 Fluid Dynamics +1101.1674 Optics +1101.4618 Mesoscale and Nanoscale Physics +1101.5531 Statistical Mechanics +1102.4014 +1103.0286 +1103.0910 Mesoscale and Nanoscale Physics +1103.3231 Mesoscale and Nanoscale Physics +1103.4570 Phenomenology +1103.5371 Statistical Mechanics +1104.1602 Mesoscale and Nanoscale Physics +1104.1925 +1104.2319 Phenomenology +1104.3121 Cosmology and Nongalactic Astrophysics +1104.3766 Quantum Gases +1105.0177 Experiment +1105.0465 Optics +1105.0484 Statistical Mechanics +1105.0853 +1105.2484 Phenomenology +1105.2843 +1105.3190 Phenomenology +1105.3444 +1105.3624 Phenomenology +1105.4399 Rings and Algebras +1105.5375 Strongly Correlated Electrons +1105.5697 Quantum Gases +1105.6299 Phenomenology +1105.6369 Atomic Physics +1106.0028 Strongly Correlated Electrons +1106.0295 Theory +1106.1438 Cosmology and Nongalactic Astrophysics +1106.2009 Optics +1106.2170 Mesoscale and Nanoscale Physics +1106.2411 +1106.2412 Lattice +1106.2954 +1106.2989 Mesoscale and Nanoscale Physics +1106.3514 Phenomenology +1106.3970 Experiment +1106.4851 Instrumentation and Detectors +1106.4885 Experiment +1106.5332 Superconductivity +1106.5436 Experiment +1106.5520 Phenomenology +1106.6200 Statistical Mechanics +1106.6308 Experiment +1107.4015 Experiment +1107.4045 Cosmology and Nongalactic Astrophysics +1107.4306 Phenomenology +1107.5213 Algebraic Topology +1107.5305 Fluid Dynamics +1107.6026 Phenomenology +1108.1839 Materials Science +1108.3828 +1108.6005 +1108.6029 +1108.6183 +1108.6293 Multimedia +1109.0661 Phenomenology +1109.2227 Information Theory +1109.4289 Combinatorics +1109.4756 Strongly Correlated Electrons +1109.4953 Number Theory +1109.5156 High Energy Astrophysical Phenomena +1109.5202 Representation Theory +1109.5283 Logic +1109.5817 Experiment +1109.5868 General Topology +1109.5975 Probability +1109.6009 Phenomenology +1109.6016 Combinatorics +1109.6018 Computation and Language +1109.6028 Numerical Analysis +1109.6029 Artificial Intelligence +1109.6030 Artificial Intelligence +1109.6033 Artificial Intelligence +1109.6037 Systems and Control +1109.6038 Instrumentation and Methods for Astrophysics +1109.6046 Cryptography and Security +1109.6049 +1109.6051 Artificial Intelligence +1109.6052 Artificial Intelligence +1109.6053 Group Theory +1109.6054 Commutative Algebra +1109.6058 Optimization and Control +1109.6059 High Energy Astrophysical Phenomena +1109.6064 Computer Science and Game Theory +1109.6066 Phenomenology +1109.6067 Phenomenology +1109.6071 Solar and Stellar Astrophysics +1109.6076 Number Theory +1109.6079 Computational Physics +1109.6084 Exactly Solvable and Integrable Systems +1109.6085 Classical Analysis and ODEs +1109.6087 High Energy Astrophysical Phenomena +1109.6088 Analysis of PDEs +1109.6089 Analysis of PDEs +1109.6091 Analysis of PDEs +1109.6095 K-Theory and Homology +1109.6100 High Energy Astrophysical Phenomena +1109.6103 Rings and Algebras +1109.6104 Strongly Correlated Electrons +1109.6110 +1109.6111 Computational Physics +1109.6113 Computational Physics +1109.6115 Pattern Formation and Solitons +1109.6118 Commutative Algebra +1109.6122 Biological Physics +1109.6126 Information Theory +1109.6128 Logic +1109.6130 +1109.6131 Discrete Mathematics +1109.6138 Differential Geometry +1109.6144 Strongly Correlated Electrons +1109.6146 +1109.6149 Strongly Correlated Electrons +1109.6171 Solar and Stellar Astrophysics +1109.6172 Combinatorics +1109.6175 Solar and Stellar Astrophysics +1109.6182 Computer Science and Game Theory +1109.6185 Medical Physics +1109.6188 Fluid Dynamics +1109.6191 Applications +1109.6197 Phenomenology +1109.6199 Other Computer Science +1109.6201 +1109.6202 Information Theory +1109.6203 Atomic Physics +1109.6204 +1109.6206 Information Retrieval +1109.6211 Data Analysis, Statistics and Probability +1109.6220 Computer Science and Game Theory +1109.6221 Physics and Society +1109.6224 Statistical Mechanics +1109.6226 Representation Theory +1109.6231 Molecular Networks +1109.6235 Solar and Stellar Astrophysics +1109.6240 Materials Science +1109.6242 +1109.6245 Phenomenology +1109.6246 Experiment +1109.6259 Optimization and Control +1109.6261 Quantum Algebra +1109.6263 Computer Science and Game Theory +1109.6264 Formal Languages and Automata Theory +1109.6268 Materials Science +1109.6270 Sound +1109.6271 Phenomenology +1109.6276 Information Theory +1109.6279 Symbolic Computation +1109.6283 Functional Analysis +1109.6288 Human-Computer Interaction +1109.6291 Cosmology and Nongalactic Astrophysics +1109.6294 High Energy Astrophysical Phenomena +1109.6297 Information Theory +1109.6299 Databases +1109.6302 Algebraic Geometry +1109.6304 Solar and Stellar Astrophysics +1109.6308 General Physics +1109.6313 Sound +1109.6314 Sound +astro-ph/0009005 +astro-ph/0109535 +astro-ph/0307136 +astro-ph/0401555 +astro-ph/0403657 +astro-ph/0407060 +astro-ph/0410351 +astro-ph/0411672 +astro-ph/0412192 +astro-ph/0412597 +astro-ph/0502316 +astro-ph/0504332 +astro-ph/0504337 +astro-ph/0612306 +astro-ph/0701318 +astro-ph/0701594 +astro-ph/9505039 +astro-ph/9505060 +astro-ph/9510056 +astro-ph/9601136 +astro-ph/9712083 +astro-ph/9910474 +gr-qc/0509075 +gr-qc/9610005 +hep-lat/0406012 Lattice +hep-ph/0003081 Phenomenology +hep-ph/0006035 Phenomenology +hep-ph/0101124 Phenomenology +hep-ph/0104211 Phenomenology +hep-ph/0205083 Phenomenology +hep-ph/0404071 Phenomenology +hep-ph/0409038 Phenomenology +hep-ph/0509109 Phenomenology +hep-ph/0511201 Phenomenology +hep-ph/0605242 Phenomenology +hep-ph/0606103 Phenomenology +hep-ph/9209261 Phenomenology +hep-ph/9510410 Phenomenology +hep-ph/9512230 Phenomenology +hep-ph/9608245 Phenomenology +hep-ph/9702349 Phenomenology +hep-th/0004142 Theory +hep-th/0105136 Theory +hep-th/0206072 Theory +hep-th/0410226 Theory +hep-th/0411247 Theory +hep-th/0503102 Theory +hep-th/0505166 Theory +hep-th/0702165 Theory +hep-th/9109045 Theory +hep-th/9307001 Theory +hep-th/9807091 Theory +nucl-th/9811070 +physics/0612177 Geophysics +0705.0595 General Physics +0709.0958 Phenomenology +0709.3247 Experiment +0709.4628 Lattice +0710.0138 Experiment +0710.0151 Phenomenology +0710.0314 Experiment +0710.0336 Phenomenology +0710.0420 Experiment +0710.1051 +0710.1884 Experiment +0710.5664 Experiment +0710.5929 Experiment +0711.0785 Experiment +0711.1509 Phenomenology +0711.1564 Phenomenology +0711.1571 Experiment +0711.1636 Experiment +0711.1661 Experiment +0711.1689 Phenomenology +0711.1927 Experiment +0711.2660 Experiment +0711.3044 Experiment +0711.3671 Experiment +0711.4199 Experiment +0711.4769 Experiment +0712.0016 Phenomenology +0712.1589 Experiment +0712.1605 Experiment +0712.1691 Phenomenology +0712.3183 Experiment +0801.4797 +0807.0952 Phenomenology +0810.0659 +0810.0662 +0902.2048 +0902.3137 Statistics Theory +0904.0690 Mesoscale and Nanoscale Physics +0908.0062 +0908.0427 +0908.0554 Number Theory +0911.3328 +0911.4359 +0911.4447 Phenomenology +0911.4476 +0912.4068 General Physics +1001.3139 Phenomenology +1003.0860 Functional Analysis +1004.3525 Portfolio Management +1004.4569 Strongly Correlated Electrons +1005.0027 Learning +1005.1232 +1005.2492 Analysis of PDEs +1005.3542 Mesoscale and Nanoscale Physics +1005.4165 Superconductivity +1006.2421 +1006.5067 Phenomenology +1006.5313 Experiment +1006.5566 +1007.0928 Representation Theory +1007.2483 +1007.3388 +1009.0314 Algebraic Geometry +1009.2317 +1009.3932 Cosmology and Nongalactic Astrophysics +1009.4043 General Physics +1010.0866 Phenomenology +1010.1158 Phenomenology +1010.1479 Phenomenology +1010.1530 Theory +1010.2506 Experiment +1010.2851 Theory +1010.3223 +1010.3844 Phenomenology +1010.4448 Theory +1010.4802 Theory +1010.4975 Differential Geometry +1010.5067 Optics +1010.5728 Differential Geometry +1011.0441 Cosmology and Nongalactic Astrophysics +1011.0908 Lattice +1011.1111 Phenomenology +1011.1249 Theory +1011.1304 +1011.1369 Lattice +1011.1870 Phenomenology +1011.2137 Phenomenology +1011.2148 Theory +1011.2151 Phenomenology +1011.2658 Phenomenology +1011.2664 Lattice +1011.2952 Optimization and Control +1011.3086 Phenomenology +1011.3372 Phenomenology +1011.3462 Theory +1011.3531 Experiment +1011.4181 +1011.4414 Strongly Correlated Electrons +1011.5427 Theory +1011.5901 +1011.6164 Phenomenology +1011.6316 Mesoscale and Nanoscale Physics +1012.0194 +1012.0213 Representation Theory +1012.4821 Theory +1012.5004 Lattice +1012.5075 Phenomenology +1012.5417 Popular Physics +1101.1631 Theory +1101.4779 Lattice +1101.4860 Theory +1101.5875 Lattice +1102.0489 Phenomenology +1102.2463 +1102.3844 Phenomenology +1102.3989 Physics and Society +1102.4063 Materials Science +1102.5494 +1103.0467 Mesoscale and Nanoscale Physics +1103.0472 Mesoscale and Nanoscale Physics +1103.0851 Number Theory +1103.1706 Phenomenology +1103.2226 Materials Science +1103.2684 Quantum Gases +1103.2971 +1103.5157 Quantum Gases +1103.5167 Programming Languages +1103.5221 Phenomenology +1103.5774 Chemical Physics +1104.1830 +1104.1910 Information Theory +1104.2482 Statistical Mechanics +1104.3587 Theory +1104.4327 +1104.4736 Classical Analysis and ODEs +1105.2631 Information Theory +1105.3759 Superconductivity +1105.4820 Combinatorics +1106.0653 Cosmology and Nongalactic Astrophysics +1106.0779 Differential Geometry +1106.1641 Cosmology and Nongalactic Astrophysics +1106.1925 Machine Learning +1106.2541 Popular Physics +1106.2554 Astrophysics of Galaxies +1106.2559 Methodology +1106.2560 Cosmology and Nongalactic Astrophysics +1106.2561 Classical Analysis and ODEs +1106.2562 Molecular Networks +1106.2563 Dynamical Systems +1106.2566 Soft Condensed Matter +1106.2567 Superconductivity +1106.2568 Hardware Architecture +1106.2575 Programming Languages +1106.2576 Combinatorics +1106.2578 Programming Languages +1106.2583 Number Theory +1106.2585 Algebraic Geometry +1106.2588 Materials Science +1106.2589 Mesoscale and Nanoscale Physics +1106.2592 Materials Science +1106.2593 Distributed, Parallel, and Cluster Computing +1106.2594 Materials Science +1106.2597 +1106.2601 Social and Information Networks +1106.2627 Statistics Theory +1106.2629 Probability +1106.2631 Operator Algebras +1106.2632 Statistical Mechanics +1106.2637 Programming Languages +1106.2639 Commutative Algebra +1106.2640 Exactly Solvable and Integrable Systems +1106.2644 Operator Algebras +1106.2645 Theory +1106.2646 Theory +1106.2650 Computer Science and Game Theory +1106.2652 Artificial Intelligence +1106.2653 +1106.2657 Computer Science and Game Theory +1106.2661 Pattern Formation and Solitons +1106.2663 Metric Geometry +1106.2665 High Energy Astrophysical Phenomena +1106.2668 Number Theory +1106.2671 Statistical Mechanics +1106.2673 Distributed, Parallel, and Cluster Computing +1106.2677 Distributed, Parallel, and Cluster Computing +1106.2678 Probability +1106.2679 Neurons and Cognition +1106.2680 Rings and Algebras +1106.2684 Software Engineering +1106.2686 Software Engineering +1106.2691 Number Theory +1106.2693 Geometric Topology +1106.2694 Data Structures and Algorithms +1106.2695 Computer Vision and Pattern Recognition +1106.2698 Analysis of PDEs +1106.2702 Solar and Stellar Astrophysics +1106.2708 High Energy Astrophysical Phenomena +1106.2709 +1106.2718 Superconductivity +1106.2723 Geometric Topology +1106.2724 Differential Geometry +1106.2730 Atomic Physics +1106.2735 Combinatorics +1106.2739 Mesoscale and Nanoscale Physics +1106.2740 Optics +1106.2743 Probability +1106.2744 Chemical Physics +1106.2746 Plasma Physics +1106.2752 High Energy Astrophysical Phenomena +1106.2758 Differential Geometry +1106.2762 Commutative Algebra +1106.2766 Distributed, Parallel, and Cluster Computing +1106.2772 Discrete Mathematics +1106.2774 Information Theory +1106.2778 Analysis of PDEs +1106.2779 Differential Geometry +1106.2782 Instrumentation and Methods for Astrophysics +1106.2786 Dynamical Systems +1106.2788 Social and Information Networks +1106.2789 Mesoscale and Nanoscale Physics +1106.2792 Information Theory +1106.2793 Populations and Evolution +1106.2795 Complex Variables +astro-ph/0112088 +astro-ph/0304173 +astro-ph/9704107 +astro-ph/9709112 +astro-ph/9811399 +astro-ph/9909018 +cond-mat/0011376 Strongly Correlated Electrons +cond-mat/0108038 Soft Condensed Matter +cond-mat/0311341 Materials Science +cond-mat/0311343 Materials Science +cond-mat/0603213 Other Condensed Matter +cond-mat/9912404 Strongly Correlated Electrons +cs/0609001 Numerical Analysis +gr-qc/0205067 +hep-ph/0011363 Phenomenology +math/0403104 Rings and Algebras +q-alg/9709040 Quantum Algebra +0704.0389 +0709.3199 +0711.2699 Representation Theory +0711.4914 Classical Analysis and ODEs +0711.4921 Classical Analysis and ODEs +0805.1447 Geometric Topology +0805.2230 Mesoscale and Nanoscale Physics +0806.1262 Mesoscale and Nanoscale Physics +0810.0130 +0811.4148 Algebraic Geometry +0901.2196 Geometric Topology +0902.0833 Group Theory +0902.1313 Cosmology and Nongalactic Astrophysics +0902.2446 Optimization and Control +0903.1259 High Energy Astrophysical Phenomena +0903.1337 Optimization and Control +0903.1412 Cosmology and Nongalactic Astrophysics +0903.5020 Astrophysics of Galaxies +0906.1044 Cosmology and Nongalactic Astrophysics +0907.0748 Optimization and Control +0908.1708 Quantitative Methods +0908.3734 Group Theory +0911.2102 Theory +0912.4908 Number Theory +1001.4280 +1001.4622 Classical Analysis and ODEs +1001.4631 Classical Analysis and ODEs +1002.0898 Geometric Topology +1003.1710 Probability +1004.3447 +1005.1292 Optimization and Control +1005.2040 Functional Analysis +1005.4229 Strongly Correlated Electrons +1005.4566 Group Theory +1006.2600 +1007.0270 Analysis of PDEs +1007.4790 Chaotic Dynamics +1008.0407 Phenomenology +1008.3407 Optimization and Control +1009.0813 +1009.2532 Representation Theory +1009.4397 +1009.4548 Strongly Correlated Electrons +1009.5967 Phenomenology +1010.5371 Materials Science +1011.1232 Theory +1011.2162 +1011.4900 +1012.2272 Cosmology and Nongalactic Astrophysics +1012.3310 Optimization and Control +1012.3432 Probability +1012.5640 +1101.0790 Operator Algebras +1101.1416 Combinatorics +1101.2373 Number Theory +1101.5536 +1102.0461 +1102.0469 Strongly Correlated Electrons +1102.1992 Cosmology and Nongalactic Astrophysics +1102.2281 Classical Physics +1102.3039 Cosmology and Nongalactic Astrophysics +1102.3310 Disordered Systems and Neural Networks +1102.3484 Mesoscale and Nanoscale Physics +1102.4190 Mesoscale and Nanoscale Physics +1102.4617 Cosmology and Nongalactic Astrophysics +1102.5179 +1103.0395 Mesoscale and Nanoscale Physics +1103.2819 Theory +1103.3574 High Energy Astrophysical Phenomena +1103.3899 +1103.4441 Geometric Topology +1103.5292 Classical Physics +1103.5951 Experiment +1104.0052 Social and Information Networks +1104.0220 Mesoscale and Nanoscale Physics +1104.0374 +1104.1858 Instrumentation and Detectors +1104.2979 Dynamical Systems +1104.4190 Combinatorics +1104.4567 Materials Science +1105.0341 Strongly Correlated Electrons +1105.2829 Phenomenology +1105.3924 Cosmology and Nongalactic Astrophysics +1106.2863 General Physics +1106.3257 Materials Science +1106.3610 Materials Science +1106.5147 +1106.5927 Phenomenology +1107.1149 Information Theory +1107.2286 +1107.2635 Combinatorics +1107.2769 Mesoscale and Nanoscale Physics +1107.3832 Algebraic Geometry +1107.4378 Data Structures and Algorithms +1107.4380 Combinatorics +1107.4381 Methodology +1107.4382 Computer Science and Game Theory +1107.4386 Computer Science and Game Theory +1107.4387 Number Theory +1107.4393 Mesoscale and Nanoscale Physics +1107.4411 Materials Science +1107.4413 Probability +1107.4414 Neural and Evolutionary Computing +1107.4415 Probability +1107.4416 Exactly Solvable and Integrable Systems +1107.4417 Emerging Technologies +1107.4420 Rings and Algebras +1107.4429 Neural and Evolutionary Computing +1107.4432 Instrumentation and Detectors +1107.4436 Phenomenology +1107.4437 Quantum Algebra +1107.4438 +1107.4439 Space Physics +1107.4444 Mesoscale and Nanoscale Physics +1107.4457 +1107.4459 General Physics +1107.4463 Discrete Mathematics +1107.4464 Methodology +1107.4470 Neural and Evolutionary Computing +1107.4473 Phenomenology +1107.4485 Cosmology and Nongalactic Astrophysics +1107.4495 Cosmology and Nongalactic Astrophysics +1107.4496 Robotics +1107.4498 Robotics +1107.4500 Information Theory +1107.4502 Artificial Intelligence +1107.4504 Cosmology and Nongalactic Astrophysics +1107.4510 Biological Physics +1107.4515 Dynamical Systems +1107.4518 Analysis of PDEs +1107.4520 +1107.4527 Functional Analysis +1107.4528 Phenomenology +1107.4529 +1107.4534 Popular Physics +1107.4536 General Physics +1107.4539 Experiment +1107.4540 Information Theory +1107.4541 Astrophysics of Galaxies +1107.4542 Spectral Theory +1107.4543 Computational Physics +1107.4546 Phenomenology +1107.4553 Artificial Intelligence +1107.4557 Computation and Language +1107.4559 Group Theory +1107.4561 Astrophysics of Galaxies +1107.4563 Number Theory +1107.4566 Computer Science and Game Theory +1107.4567 Astrophysics of Galaxies +1107.4571 Solar and Stellar Astrophysics +1107.4572 Neurons and Cognition +1107.4573 Artificial Intelligence +1107.4574 Soft Condensed Matter +1107.4576 Functional Analysis +1107.4578 Functional Analysis +1107.4586 Analysis of PDEs +1107.4597 Analysis of PDEs +1107.4600 Information Theory +cond-mat/0406487 Strongly Correlated Electrons +math-ph/0604056 +math/0307263 Quantum Algebra +0708.1560 Group Theory +0708.1583 Geometric Topology +0801.4014 +0807.4715 Dynamical Systems +0812.4706 Commutative Algebra +0908.0985 Superconductivity +0908.1748 Algebraic Geometry +0908.4531 Group Theory +1002.3029 Fluid Dynamics +1002.4955 Materials Science +1003.3130 Analysis of PDEs +1003.3879 Computational Complexity +1005.5351 +1005.5405 Computational Physics +1006.0447 Superconductivity +1006.3456 Strongly Correlated Electrons +1008.3734 Differential Geometry +1009.0527 Mesoscale and Nanoscale Physics +1009.1436 Methodology +1009.2139 Machine Learning +1009.2945 +1009.4241 Methodology +1009.5580 Probability +1009.6063 Quantum Algebra +1010.3011 Strongly Correlated Electrons +1010.4185 Phenomenology +1010.5971 Soft Condensed Matter +1011.0366 Combinatorics +1011.1228 Adaptation and Self-Organizing Systems +1011.1513 Cosmology and Nongalactic Astrophysics +1011.3222 Theory +1011.4595 Astrophysics of Galaxies +1101.4577 Methodology +1101.4785 Quantum Gases +1102.3265 Cosmology and Nongalactic Astrophysics +1102.3634 Probability +1102.3949 Machine Learning +1102.4395 Strongly Correlated Electrons +1103.3133 Theory +1103.3412 Dynamical Systems +1103.4145 Theory +1103.6161 Functional Analysis +1104.0410 Geometric Topology +1104.0697 Statistical Mechanics +1104.1144 +1104.2096 +1104.2153 Theory +1104.2163 Strongly Correlated Electrons +1104.2945 Optics +1104.4462 Popular Physics +1105.0682 +1105.0924 Strongly Correlated Electrons +1105.2499 +1105.4451 Mesoscale and Nanoscale Physics +1105.4467 Cosmology and Nongalactic Astrophysics +1105.5644 Phenomenology +1105.6044 General Physics +1106.3685 Artificial Intelligence +1106.3723 Phenomenology +1106.4902 +1106.6161 Soft Condensed Matter +1107.0298 Experiment +1107.0511 Computational Geometry +1107.2153 Analysis of PDEs +1107.2482 Data Structures and Algorithms +1107.5133 Materials Science +1107.5226 Solar and Stellar Astrophysics +1108.0815 Superconductivity +1108.1091 Classical Analysis and ODEs +1108.1299 Theory +1108.2580 Learning +1108.2709 Theory +1108.2849 Probability +1108.2911 +1108.2931 Mesoscale and Nanoscale Physics +1108.3154 Learning +1108.3230 Plasma Physics +1108.3274 Earth and Planetary Astrophysics +1108.3318 +1108.3332 Cosmology and Nongalactic Astrophysics +1108.3341 Phenomenology +1108.3342 Software Engineering +1108.3352 Computational Physics +1108.3353 Phenomenology +1108.3355 Rings and Algebras +1108.3358 Analysis of PDEs +1108.3360 Mesoscale and Nanoscale Physics +1108.3361 Solar and Stellar Astrophysics +1108.3362 Phenomenology +1108.3366 Solar and Stellar Astrophysics +1108.3368 Algebraic Geometry +1108.3372 Machine Learning +1108.3381 Rings and Algebras +1108.3382 Combinatorics +1108.3385 Numerical Analysis +1108.3387 Physics and Society +1108.3389 Quantum Algebra +1108.3390 Phenomenology +1108.3391 Theory +1108.3392 Functional Analysis +1108.3396 Materials Science +1108.3398 Functional Analysis +1108.3402 Geophysics +1108.3403 Geophysics +1108.3408 Group Theory +1108.3410 Statistics Theory +1108.3412 Formal Languages and Automata Theory +1108.3415 Information Theory +1108.3417 Information Theory +1108.3418 Distributed, Parallel, and Cluster Computing +1108.3419 Distributed, Parallel, and Cluster Computing +1108.3420 Materials Science +1108.3422 Distributed, Parallel, and Cluster Computing +1108.3424 Logic in Computer Science +1108.3425 Geometric Topology +1108.3426 Logic in Computer Science +1108.3427 Soft Condensed Matter +1108.3429 Logic in Computer Science +1108.3430 Distributed, Parallel, and Cluster Computing +1108.3431 Distributed, Parallel, and Cluster Computing +1108.3432 Distributed, Parallel, and Cluster Computing +1108.3433 Distributed, Parallel, and Cluster Computing +1108.3434 Formal Languages and Automata Theory +1108.3435 +1108.3436 Logic in Computer Science +1108.3437 Phenomenology +1108.3444 Combinatorics +1108.3445 Popular Physics +1108.3448 Differential Geometry +1108.3449 Soft Condensed Matter +1108.3450 Phenomenology +1108.3454 Materials Science +1108.3457 Methodology +1108.3461 Methodology +1108.3462 Multiagent Systems +1108.3464 Populations and Evolution +1108.3466 Methodology +1108.3467 Methodology +1108.3469 Superconductivity +1108.3470 Optics +1108.3472 Quantum Algebra +1108.3473 Methodology +1108.3474 Methodology +1108.3478 Classical Analysis and ODEs +1108.3481 Logic +1108.3482 Phenomenology +1108.3485 Cosmology and Nongalactic Astrophysics +1108.3488 General Physics +1108.3489 Neural and Evolutionary Computing +1108.3490 Solar and Stellar Astrophysics +1108.3494 Computational Complexity +1108.3496 Optics +1108.3500 +1108.3506 Atomic and Molecular Clusters +1108.3514 Phenomenology +1108.3518 +1108.3522 Dynamical Systems +1108.3525 Computer Vision and Pattern Recognition +1108.3529 Differential Geometry +1108.3533 +1108.3536 General Topology +1108.3541 Solar and Stellar Astrophysics +1108.3544 Information Theory +1108.3545 Computational Geometry +1108.3547 Combinatorics +1108.3548 Rings and Algebras +1108.3560 Classical Physics +1108.3561 Earth and Planetary Astrophysics +1108.3562 Superconductivity +cond-mat/0503264 Other Condensed Matter +cond-mat/0512255 Soft Condensed Matter +math/0508513 Rings and Algebras +nlin/0302019 Pattern Formation and Solitons +0705.1106 Differential Geometry +0708.2575 Information Theory +0710.2096 Functional Analysis +0710.4051 Probability +0712.2800 Classical Analysis and ODEs +0802.0163 Differential Geometry +0803.0762 Number Theory +0803.0965 Superconductivity +0806.2230 +0806.3530 Atomic and Molecular Clusters +0809.0855 Differential Geometry +0810.5587 Logic +0811.0035 Algebraic Geometry +0811.1376 +0812.1064 Combinatorics +0812.2491 +0901.0817 Classical Analysis and ODEs +0902.0600 Machine Learning +0902.3242 Strongly Correlated Electrons +0902.4266 Representation Theory +0903.2046 Mesoscale and Nanoscale Physics +0903.2126 +0903.2132 +0903.2136 +0904.1273 +0904.2517 Cosmology and Nongalactic Astrophysics +0904.2562 Number Theory +0904.4497 Analysis of PDEs +0905.0087 Numerical Analysis +0905.0254 Probability +0905.0753 Instrumentation and Methods for Astrophysics +0905.1930 Differential Geometry +0907.0602 General Topology +0907.2173 Programming Languages +0908.0084 +0909.1182 High Energy Astrophysical Phenomena +0909.1280 +0911.4046 Machine Learning +0912.0291 Quantum Algebra +0912.0464 +0912.2026 Statistics Theory +0912.2425 Dynamical Systems +1001.0910 Analysis of PDEs +1002.0333 Phenomenology +1002.0658 Optics +1002.0733 +1002.1116 +1002.1978 +1002.2390 Soft Condensed Matter +1003.4925 +1004.1483 +1005.0369 Exactly Solvable and Integrable Systems +1006.1442 Theory +1006.3269 Differential Geometry +1006.3340 Computational Finance +1006.4774 +1006.5007 Mesoscale and Nanoscale Physics +1006.5807 Statistical Mechanics +1006.5890 Phenomenology +1007.0883 Theory +1007.0904 Information Theory +1007.5256 Cosmology and Nongalactic Astrophysics +1007.5483 Phenomenology +1008.1298 Statistics Theory +1008.4286 Theory +1008.4829 Commutative Algebra +1008.5223 Phenomenology +1009.0441 +1009.2753 Cosmology and Nongalactic Astrophysics +1009.2845 Phenomenology +1009.3292 +1009.3293 +1009.3294 +1009.3483 General Mathematics +1009.4308 Phenomenology +1009.4867 +1009.4881 Phenomenology +1010.0380 Operator Algebras +1010.0468 Phenomenology +1010.1094 Phenomenology +1010.1407 Theory +1010.1682 Theory +1010.1744 Other Condensed Matter +1010.1757 +1010.1957 Cosmology and Nongalactic Astrophysics +1010.2455 Theory +1010.3751 Algebraic Geometry +1010.4536 Theory +1010.5133 Materials Science +1010.5161 Strongly Correlated Electrons +1011.0065 +1011.1314 Representation Theory +1011.2176 Theory +1011.2218 Theory +1011.3001 Lattice +1011.3315 Data Analysis, Statistics and Probability +1011.4660 Quantum Gases +1011.5413 Differential Geometry +1011.5477 Experiment +1011.5524 Differential Geometry +1011.5884 Phenomenology +1011.6150 Classical Physics +1012.0057 Superconductivity +1012.0740 Mesoscale and Nanoscale Physics +1012.1627 Solar and Stellar Astrophysics +1012.1836 Materials Science +1012.1958 Theory +1012.2128 Cosmology and Nongalactic Astrophysics +1012.2819 Lattice +1012.2930 Strongly Correlated Electrons +1012.3712 Classical Analysis and ODEs +1012.3758 Theory +1012.4805 Theory +1012.5864 Strongly Correlated Electrons +1101.0006 +1101.0335 Strongly Correlated Electrons +1101.0365 Phenomenology +1101.1081 Theory +1101.1145 Strongly Correlated Electrons +1101.1268 Strongly Correlated Electrons +1101.1341 Mesoscale and Nanoscale Physics +1101.2110 Theory +1101.3469 Atomic Physics +1101.3830 Experiment +1101.4071 Phenomenology +1101.4723 Cosmology and Nongalactic Astrophysics +1101.4775 +1101.5352 Phenomenology +1101.5479 +1101.5956 Phenomenology +1102.0397 +1102.0434 +1102.0557 Phenomenology +1102.0789 Theory +1102.1705 Astrophysics of Galaxies +1102.2016 Strongly Correlated Electrons +1102.2098 +1102.2171 Probability +1102.2202 Theory +1102.2401 Superconductivity +1102.2454 Logic +1102.2792 Classical Analysis and ODEs +1102.4033 Phenomenology +1102.5124 Phenomenology +1102.5600 Materials Science +1103.0432 Statistical Mechanics +1103.0583 Cosmology and Nongalactic Astrophysics +1103.0976 +1103.1590 Phenomenology +1103.1593 Theory +1103.1740 Theory +1103.1843 Phenomenology +1103.1975 Mesoscale and Nanoscale Physics +1103.2564 Materials Science +1103.2655 Phenomenology +1103.2743 +1103.2800 Theory +1103.2891 Phenomenology +1103.3400 +1103.3471 Theory +1103.4179 Theory +1103.4758 +1103.5007 Other Condensed Matter +1103.5127 Combinatorics +1103.5617 +1103.5810 Phenomenology +1103.6081 Theory +1104.0243 Phenomenology +1104.0467 Statistical Mechanics +1104.0572 Phenomenology +1104.1178 Cosmology and Nongalactic Astrophysics +1104.1199 Soft Condensed Matter +1104.1808 Analysis of PDEs +1104.2259 Phenomenology +1104.2429 Theory +1104.2972 Optics +1104.3578 Cosmology and Nongalactic Astrophysics +1104.4340 Phenomenology +1104.4516 Atomic Physics +1104.4846 Spectral Theory +1104.5085 Probability +1104.5231 Theory +1104.5350 Mesoscale and Nanoscale Physics +1105.0209 Geometric Topology +1105.0365 Theory +1105.2611 General Mathematics +1105.2613 General Mathematics +1105.2665 Logic in Computer Science +1105.4040 Solar and Stellar Astrophysics +1105.5239 Experiment +1105.5487 Logic in Computer Science +1105.5598 Dynamical Systems +1105.6010 Software Engineering +1105.6192 +1105.6235 +1105.6249 +1106.0018 Phenomenology +1106.0103 Phenomenology +1106.0162 Group Theory +1106.0164 High Energy Astrophysical Phenomena +1106.0255 Algebraic Geometry +1106.0290 Combinatorics +1106.0368 Phenomenology +1106.0740 Phenomenology +1106.0741 Commutative Algebra +1106.0750 Disordered Systems and Neural Networks +1106.0752 Materials Science +1106.0769 Combinatorics +1106.0772 Category Theory +1106.0773 Methodology +1106.0774 Representation Theory +1106.0783 Probability +1106.0787 Networking and Internet Architecture +1106.0791 Optimization and Control +1106.0804 Algebraic Geometry +1106.0806 Materials Science +1106.0811 Combinatorics +1106.0813 Probability +1106.0814 Logic in Computer Science +1106.0816 +1106.0817 +1106.0818 Geophysics +1106.0819 Classical Physics +1106.0825 +1106.0826 Functional Analysis +1106.0839 Commutative Algebra +1106.0843 Information Theory +1106.0844 Sound +1106.0846 Sound +1106.0849 +1106.0850 Astrophysics of Galaxies +1106.0851 Computational Complexity +1106.0853 Cryptography and Security +1106.0860 Physics and Society +1106.0864 Spectral Theory +1106.0867 Group Theory +1106.0868 Human-Computer Interaction +1106.0869 Information Theory +1106.0870 Optimization and Control +1106.0872 Physics and Society +1106.0874 Data Structures and Algorithms +1106.0875 Combinatorics +1106.0876 Fluid Dynamics +1106.0884 Quantum Gases +1106.0888 Materials Science +1106.0889 Combinatorics +1106.0893 Differential Geometry +1106.0894 Differential Geometry +1106.0895 Information Theory +1106.0898 Optimization and Control +1106.0903 Plasma Physics +1106.0905 Algebraic Geometry +1106.0908 Logic +1106.0910 General Physics +1106.0911 +1106.0912 Analysis of PDEs +1106.0913 Rings and Algebras +1106.0914 Analysis of PDEs +1106.0915 Phenomenology +1106.0918 Analysis of PDEs +1106.0919 Analysis of PDEs +1106.0921 Functional Analysis +1106.0924 Differential Geometry +1106.0926 Differential Geometry +1106.0928 Differential Geometry +1106.0940 Distributed, Parallel, and Cluster Computing +1106.0953 History and Overview +1106.0955 Probability +1106.0962 Computer Vision and Pattern Recognition +1106.0966 Materials Science +1106.0967 Machine Learning +1106.0968 Mesoscale and Nanoscale Physics +1106.0969 Networking and Internet Architecture +1106.0970 +1106.0973 General Physics +1106.0977 Accelerator Physics +1106.0981 Earth and Planetary Astrophysics +1106.0982 Optics +1106.0985 Fluid Dynamics +1106.0986 Geophysics +1106.0989 Robotics +1106.0990 Spectral Theory +1106.0991 Strongly Correlated Electrons +1106.0992 Combinatorics +1106.0994 Numerical Analysis +1106.0995 Mesoscale and Nanoscale Physics +1106.0996 Numerical Analysis +1106.0998 Phenomenology +1106.1000 Group Theory +1106.1002 Phenomenology +1106.1004 Cosmology and Nongalactic Astrophysics +1106.1009 Experiment +1106.1011 Experiment +1106.1012 High Energy Astrophysical Phenomena +1106.1014 Strongly Correlated Electrons +1106.1019 Strongly Correlated Electrons +1106.1020 Numerical Analysis +1106.1023 High Energy Astrophysical Phenomena +1106.1024 Strongly Correlated Electrons +1106.1026 Strongly Correlated Electrons +1106.1029 Strongly Correlated Electrons +1106.1031 Statistics Theory +1106.1032 Experiment +1106.1034 Strongly Correlated Electrons +1106.1038 Combinatorics +1106.1039 Cosmology and Nongalactic Astrophysics +1106.1041 Cosmology and Nongalactic Astrophysics +1106.1042 Number Theory +1106.1043 Optics +1106.1057 +1106.1061 Mesoscale and Nanoscale Physics +1106.1063 Category Theory +1106.1065 Plasma Physics +1106.1075 Cosmology and Nongalactic Astrophysics +1106.1081 Geophysics +1106.1085 Combinatorics +1106.1086 Strongly Correlated Electrons +1106.1089 Strongly Correlated Electrons +1106.1091 Strongly Correlated Electrons +1106.1092 Category Theory +1106.1098 Group Theory +1106.1107 Mesoscale and Nanoscale Physics +1106.1108 Cosmology and Nongalactic Astrophysics +1106.1109 Solar and Stellar Astrophysics +1106.1110 Combinatorics +1106.1113 Learning +1106.1115 Algebraic Geometry +1106.1117 Cosmology and Nongalactic Astrophysics +1106.1123 Solar and Stellar Astrophysics +1106.1124 History and Philosophy of Physics +1106.1128 Materials Science +1106.1135 Classical Physics +1106.1136 Group Theory +1106.1138 +1106.1148 Combinatorics +1106.1151 Statistics Theory +1106.1153 Mesoscale and Nanoscale Physics +1106.1160 Number Theory +1106.1161 Representation Theory +astro-ph/0208099 +cond-mat/0010242 Strongly Correlated Electrons +cond-mat/0105357 Strongly Correlated Electrons +cond-mat/0307511 Strongly Correlated Electrons +cond-mat/0405123 Statistical Mechanics +gr-qc/0405056 +hep-ph/9710416 Phenomenology +hep-ph/9806310 Phenomenology +hep-ph/9811330 Phenomenology +math-ph/0407067 +math/0411630 Differential Geometry +math/0503129 Differential Geometry +math/0503258 Differential Geometry +math/0512651 Representation Theory +nlin/0101011 Chaotic Dynamics +quant-ph/0401124 +0704.1506 +0709.3818 +0712.1197 +0712.1408 Superconductivity +0802.0058 Analysis of PDEs +0804.0715 Number Theory +0804.4669 +0805.3015 Phenomenology +0806.2447 +0809.2994 Algebraic Geometry +0811.1604 Representation Theory +0811.2717 +0812.0112 Number Theory +0812.0478 +0812.3894 +0901.0319 Differential Geometry +0901.0322 Differential Geometry +0901.4051 +0901.4276 Algebraic Geometry +0902.2905 +0902.3464 Algebraic Geometry +0904.3090 Complex Variables +0904.3469 Logic in Computer Science +0905.0778 +0905.3085 Number Theory +0907.0507 Neural and Evolutionary Computing +0908.4340 Statistical Mechanics +0909.3331 Materials Science +0910.5630 Algebraic Geometry +0911.1110 Algebraic Geometry +0911.4683 Probability +0912.0465 Statistical Mechanics +0912.3786 K-Theory and Homology +0912.4187 Analysis of PDEs +1001.4692 Lattice +1002.1665 Lattice +1002.3131 Logic in Computer Science +1002.3532 Algebraic Topology +1003.5264 Theory +1004.0155 Dynamical Systems +1004.0301 Probability +1004.0451 General Mathematics +1004.0756 Astrophysics of Galaxies +1004.1160 Combinatorics +1004.2209 Instrumentation and Methods for Astrophysics +1004.3120 Statistical Mechanics +1005.1390 High Energy Astrophysical Phenomena +1006.0898 +1006.1265 Formal Languages and Automata Theory +1006.2300 Applications +1006.2487 Space Physics +1007.1279 +1007.1701 Operator Algebras +1007.3318 Phenomenology +1007.4589 Statistical Mechanics +1007.4602 Instrumentation and Methods for Astrophysics +1008.0824 Solar and Stellar Astrophysics +1008.1421 Statistical Mechanics +1008.2522 Materials Science +1008.2904 History and Philosophy of Physics +1008.2935 Functional Analysis +1008.3588 Complex Variables +1008.4120 Metric Geometry +1008.4769 Phenomenology +1008.5070 Applications +1009.0394 Combinatorics +1009.0729 History and Philosophy of Physics +1009.2424 Mesoscale and Nanoscale Physics +1009.3506 Algebraic Geometry +1009.4667 Theory +1009.5569 Classical Analysis and ODEs +1010.0950 Phenomenology +1010.1432 Operator Algebras +1010.1776 Quantum Gases +1010.2225 Solar and Stellar Astrophysics +1010.4154 Optics +1010.4561 Artificial Intelligence +1010.5255 +1010.5401 Analysis of PDEs +1010.5417 Phenomenology +1010.5850 Mesoscale and Nanoscale Physics +1011.1656 Astrophysics of Galaxies +1011.1979 Digital Libraries +1011.2024 Group Theory +1011.3274 Solar and Stellar Astrophysics +1011.3298 Number Theory +1011.3578 Logic +1011.3632 Distributed, Parallel, and Cluster Computing +1011.3722 Disordered Systems and Neural Networks +1011.4334 +1011.6488 Quantum Algebra +1012.0380 Algebraic Topology +1012.0393 Probability +1012.1564 +1012.3569 Number Theory +1012.5171 Functional Analysis +1012.5602 High Energy Astrophysical Phenomena +1101.1920 Information Theory +1101.2310 Phenomenology +1101.2513 Fluid Dynamics +1101.3054 Quantum Algebra +1101.3266 Data Analysis, Statistics and Probability +1101.4627 High Energy Astrophysical Phenomena +1101.4950 Algebraic Geometry +1101.5787 Experiment +1102.0358 Differential Geometry +1102.0401 Discrete Mathematics +1102.0443 General Physics +1102.0526 Astrophysics of Galaxies +1102.0803 Quantum Gases +1102.0869 Materials Science +1102.1022 Cosmology and Nongalactic Astrophysics +1102.1023 Combinatorics +1102.1030 +1102.1034 Solar and Stellar Astrophysics +1102.1038 Social and Information Networks +1102.1041 Astrophysics of Galaxies +1102.1045 Experiment +1102.1048 Representation Theory +1102.1051 Materials Science +1102.1053 Number Theory +1102.1055 Quantum Algebra +1102.1056 Materials Science +1102.1058 Quantum Algebra +1102.1063 General Physics +1102.1068 +1102.1072 Dynamical Systems +1102.1076 Representation Theory +1102.1083 Other Condensed Matter +1102.1085 General Physics +1102.1086 Disordered Systems and Neural Networks +1102.1088 Commutative Algebra +1102.1090 Fluid Dynamics +1102.1092 Fluid Dynamics +1102.1095 Probability +1102.1100 Representation Theory +1102.1104 Probability +1102.1112 Analysis of PDEs +1102.1115 Computer Science and Game Theory +1102.1118 Geometric Topology +1102.1119 +1102.1120 General Physics +1102.1135 Dynamical Systems +1102.1141 Discrete Mathematics +1102.1142 Discrete Mathematics +1102.1144 Combinatorics +1102.1146 Probability +1102.1147 Solar and Stellar Astrophysics +1102.1152 Human-Computer Interaction +1102.1155 Number Theory +1102.1156 Complex Variables +1102.1161 Computer Science and Game Theory +1102.1162 Probability +1102.1165 Information Theory +1102.1168 Digital Libraries +1102.1169 Combinatorics +1102.1172 Number Theory +1102.1177 High Energy Astrophysical Phenomena +1102.1178 Programming Languages +1102.1181 +1102.1184 Cosmology and Nongalactic Astrophysics +1102.1187 +1102.1188 Representation Theory +1102.1200 +1102.1201 Number Theory +1102.1206 Solar and Stellar Astrophysics +1102.1208 Computational Complexity +1102.1210 Instrumentation and Methods for Astrophysics +1102.1211 Materials Science +1102.1217 Classical Analysis and ODEs +1102.1223 Algebraic Topology +1102.1226 Cryptography and Security +1102.1231 Information Theory +1102.1235 Discrete Mathematics +1102.1237 Programming Languages +1102.1250 +1102.1254 Phenomenology +1102.1255 Algebraic Geometry +1102.1258 +1102.1259 +1102.1260 +1102.1264 Dynamical Systems +1102.1265 Information Theory +1102.1267 Experiment +1102.1271 Solar and Stellar Astrophysics +1102.1273 Data Structures and Algorithms +1102.1276 Space Physics +1102.1278 Algebraic Geometry +1102.1280 Soft Condensed Matter +1102.1281 Classical Physics +1102.1282 Optics +1102.1284 Optics +1102.1285 Optics +1102.1289 Space Physics +1102.1292 Computer Vision and Pattern Recognition +1102.1296 Statistical Mechanics +1102.1306 Phenomenology +1102.1307 +1102.1312 Algebraic Geometry +1102.1323 Logic in Computer Science +1102.1324 Learning +1102.1328 Analysis of PDEs +1102.1330 Soft Condensed Matter +1102.1331 Phenomenology +1102.1332 Combinatorics +1102.1334 Phenomenology +1102.1340 Discrete Mathematics +1102.1341 Computer Science and Game Theory +1102.1342 Computer Science and Game Theory +1102.1345 Information Retrieval +1102.1347 Optimization and Control +1102.1348 Computational Finance +1102.1357 Theory +1102.1363 Instrumentation and Detectors +1102.1366 Materials Science +1102.1367 Rings and Algebras +1102.1378 Functional Analysis +1102.1380 Analysis of PDEs +1102.1386 Differential Geometry +1102.1398 Social and Information Networks +1102.1400 Analysis of PDEs +1102.1409 Numerical Analysis +1102.1413 Analysis of PDEs +1102.1416 Rings and Algebras +1102.1419 General Topology +cond-mat/0208280 Disordered Systems and Neural Networks +cond-mat/9907156 Materials Science +hep-ex/0205106 Experiment +hep-ex/0612024 Experiment +hep-ph/0411380 Phenomenology +math/0409556 Dynamical Systems +math/0602373 Algebraic Geometry +physics/0004022 Plasma Physics +0802.3017 Experiment +0808.3677 Experiment +0811.2813 Theory +0901.0022 Analysis of PDEs +0901.3666 Populations and Evolution +0903.0442 Disordered Systems and Neural Networks +0903.4542 Pricing of Securities +0904.1234 Physics and Society +0906.2159 Theory +0907.2856 Representation Theory +0907.4433 High Energy Astrophysical Phenomena +0908.3019 Instrumentation and Detectors +0908.3732 Geophysics +0909.4333 +0910.1140 Statistical Mechanics +0910.4570 Number Theory +0911.0476 Disordered Systems and Neural Networks +0912.1955 Quantum Gases +0912.3645 Group Theory +1001.0325 Group Theory +1001.1543 Theory +1001.2600 Theory +1001.3958 Theory +1002.1257 +1002.2708 +1002.3157 Functional Analysis +1002.3562 Algebraic Geometry +1002.4256 Symplectic Geometry +1002.4655 Phenomenology +1003.0543 +1003.0904 Cosmology and Nongalactic Astrophysics +1003.2300 High Energy Astrophysical Phenomena +1003.2590 High Energy Astrophysical Phenomena +1003.5985 Theory +1004.3666 High Energy Astrophysical Phenomena +1004.3715 Operating Systems +1004.4348 Algebraic Topology +1004.4351 Theory +1005.1251 +1005.1628 Superconductivity +1005.2584 Cosmology and Nongalactic Astrophysics +1005.3324 Discrete Mathematics +1005.3951 Instrumentation and Methods for Astrophysics +1005.4436 Geometric Topology +1005.5302 Theory +1006.0700 +1006.2741 Phenomenology +1006.3646 +1006.3829 +1006.4128 Computational Physics +1006.4856 +1006.4911 Biomolecules +1007.2259 Phenomenology +1007.2294 +1007.3625 Strongly Correlated Electrons +1007.5156 Theory +1007.5250 Cosmology and Nongalactic Astrophysics +1007.5441 Strongly Correlated Electrons +1008.0183 General Mathematics +1008.0329 Instrumentation and Methods for Astrophysics +1008.1031 +1008.1450 Cosmology and Nongalactic Astrophysics +1008.1618 +1008.2319 Phenomenology +1008.3399 Cosmology and Nongalactic Astrophysics +1008.3611 Chemical Physics +1008.4134 Strongly Correlated Electrons +1008.4505 Theory +1009.0218 Cosmology and Nongalactic Astrophysics +1009.0946 +1009.1072 Quantum Gases +1009.1098 Differential Geometry +1009.1575 Computational Geometry +1009.2088 Phenomenology +1009.3149 +1009.3529 Optics +1009.4223 Quantum Gases +1009.5226 +1009.5606 Lattice +1009.5754 +1009.5763 Theory +1009.5820 +1009.6100 +1010.0013 Phenomenology +1010.0251 Cosmology and Nongalactic Astrophysics +1010.0500 Phenomenology +1010.0939 Phenomenology +1010.1423 +1010.1627 Disordered Systems and Neural Networks +1010.1734 Theory +1010.1934 Phenomenology +1010.2266 Theory +1010.3270 Theory +1010.3360 Phenomenology +1010.3373 Theory +1010.3617 Superconductivity +1010.3793 Instrumentation and Methods for Astrophysics +1010.4015 Other Condensed Matter +1010.4178 Theory +1010.4304 Cosmology and Nongalactic Astrophysics +1010.4396 Theory +1010.4467 Phenomenology +1010.4806 Theory +1010.4967 Theory +1010.5103 +1010.5130 Differential Geometry +1010.5540 Theory +1010.5784 Theory +1010.5874 Theory +1011.0820 Theory +1011.0931 Phenomenology +1011.1305 +1011.1648 Lattice +1011.1861 +1011.1899 Theory +1011.2206 Phenomenology +1011.2344 Theory +1011.2519 Theory +1011.3835 Theory +1011.4917 Number Theory +1011.6661 Phenomenology +1012.0113 Theory +1012.0666 Phenomenology +1012.1320 Theory +1012.2087 Differential Geometry +1012.2502 Theory +1012.4831 Theory +1012.5037 Astrophysics of Galaxies +1012.5264 General Physics +1012.5321 +1012.5633 General Physics +1101.0028 Cosmology and Nongalactic Astrophysics +1101.0708 Soft Condensed Matter +1101.2816 Theory +1101.5033 Theory +1101.5174 Accelerator Physics +1101.5767 Algebraic Topology +1101.5864 Analysis of PDEs +1101.6031 +1102.0219 Differential Geometry +1102.0285 Theory +1102.0299 Methodology +1102.0304 Operator Algebras +1102.0312 General Finance +1102.0325 +1102.0337 Complex Variables +1102.0338 Complex Variables +1102.0347 Astrophysics of Galaxies +1102.0362 Rings and Algebras +1102.0366 Rings and Algebras +1102.0371 Formal Languages and Automata Theory +1102.0378 Computational Complexity +1102.0379 Solar and Stellar Astrophysics +1102.0392 Phenomenology +1102.0393 Optics +1102.0394 Mesoscale and Nanoscale Physics +1102.0395 Data Structures and Algorithms +1102.0396 Earth and Planetary Astrophysics +1102.0402 +1102.0406 Information Theory +1102.0418 History and Overview +1102.0420 Phenomenology +1102.0436 Experiment +1102.0438 Representation Theory +1102.0441 Classical Physics +1102.0445 Cryptography and Security +1102.0451 Cryptography and Security +1102.0462 General Physics +1102.0465 Cosmology and Nongalactic Astrophysics +1102.0480 Analysis of PDEs +1102.0484 +1102.0486 Cryptography and Security +1102.0490 Algebraic Geometry +1102.0494 Analysis of PDEs +1102.0495 General Physics +1102.0498 Materials Science +1102.0518 Algebraic Geometry +1102.0523 Operator Algebras +1102.0532 Probability +1102.0533 Solar and Stellar Astrophysics +1102.0542 Combinatorics +1102.0548 Differential Geometry +1102.0550 Cosmology and Nongalactic Astrophysics +1102.0552 Combinatorics +1102.0553 Materials Science +cond-mat/0501593 Mesoscale and Nanoscale Physics +cond-mat/0703772 Strongly Correlated Electrons +hep-ex/0512017 Experiment +hep-ph/0206143 Phenomenology +hep-th/0703166 Theory +physics/0612123 Atomic Physics +0708.3357 Spectral Theory +0709.0684 Mesoscale and Nanoscale Physics +0801.3117 Logic in Computer Science +0806.1293 Optimization and Control +0808.2137 Other Condensed Matter +0809.3106 Dynamical Systems +0809.3116 Dynamical Systems +0810.1504 Algebraic Geometry +0811.4095 Computation +0902.4272 Analysis of PDEs +0903.5262 +0906.0253 Theory +0906.3443 Strongly Correlated Electrons +0907.1254 Computation +0909.2109 Dynamical Systems +0909.3771 Algebraic Geometry +0909.5129 Algebraic Geometry +0909.5304 Statistical Mechanics +0910.3485 Artificial Intelligence +0910.5298 Theory +0911.5124 Logic +0912.0457 Combinatorics +0912.2022 Analysis of PDEs +0912.2717 Statistical Mechanics +0912.3069 History and Philosophy of Physics +1001.1231 Data Structures and Algorithms +1001.3911 Information Theory +1002.0230 +1002.4679 Commutative Algebra +1003.0545 Geometric Topology +1003.4688 Superconductivity +1003.5501 Spectral Theory +1003.5520 Spectral Theory +1006.0778 Information Theory +1006.5139 Logic +1007.3521 Atomic Physics +1007.3734 Cosmology and Nongalactic Astrophysics +1008.2808 Exactly Solvable and Integrable Systems +1008.3317 +1008.5104 Algebraic Topology +1009.3046 Plasma Physics +1009.4967 Probability +1010.1282 General Mathematics +1010.3147 Geometric Topology +1010.3816 +1011.1218 Solar and Stellar Astrophysics +1011.1637 +1011.2373 Theory +1011.3184 +1011.4348 +1011.5293 +1012.0332 +1012.4386 Chaotic Dynamics +1101.0286 Operator Algebras +1101.0379 Complex Variables +1101.1575 Probability +1101.1724 Probability +1101.2005 Numerical Analysis +1101.5829 Rings and Algebras +1102.0707 General Physics +1102.1154 Mesoscale and Nanoscale Physics +1102.1179 +1102.2475 Numerical Analysis +1102.3152 +1102.5010 +1103.0344 Strongly Correlated Electrons +1103.1582 General Physics +1103.2578 Combinatorics +1103.3464 Algebraic Geometry +1103.3559 General Physics +1103.4635 +1103.4861 Cosmology and Nongalactic Astrophysics +1103.5682 Phenomenology +1103.6238 Instrumentation and Detectors +1104.0619 +1104.2737 Phenomenology +1104.4285 Information Theory +1104.5268 Probability +1104.5344 Physics and Society +1104.5551 Cosmology and Nongalactic Astrophysics +1104.5577 Phenomenology +1105.0095 +1105.0321 General Mathematics +1105.2110 Materials Science +1105.2212 +1105.4186 Phenomenology +1105.5037 General Physics +1106.1077 +1106.1203 Materials Science +1106.1984 Cosmology and Nongalactic Astrophysics +1106.2039 Cosmology and Nongalactic Astrophysics +1106.4513 Applications +1106.4630 Materials Science +1106.4808 Phenomenology +1106.6254 Computational Geometry +1107.0057 Mesoscale and Nanoscale Physics +1107.2728 +1107.2743 +1107.3017 Quantum Gases +1107.3246 Analysis of PDEs +1107.5126 Soft Condensed Matter +1107.5713 Algebraic Geometry +1108.0259 Phenomenology +1108.0785 Earth and Planetary Astrophysics +1108.0891 Mesoscale and Nanoscale Physics +1108.1960 Differential Geometry +1108.2021 Mesoscale and Nanoscale Physics +1108.2411 Group Theory +1108.3781 Atmospheric and Oceanic Physics +1108.4860 General Physics +1108.5065 +1108.5865 Phenomenology +1108.5885 Differential Geometry +1108.6131 Physics and Society +1109.1026 Cosmology and Nongalactic Astrophysics +1109.3486 Theory +1109.3958 Other Condensed Matter +1109.4344 Combinatorics +1109.4519 +1109.4779 Solar and Stellar Astrophysics +1109.5012 Tissues and Organs +1109.5071 Probability +1109.5329 Solar and Stellar Astrophysics +1109.5355 History and Philosophy of Physics +1109.5422 Superconductivity +1109.5423 Populations and Evolution +1109.5506 Logic in Computer Science +1109.5569 Algebraic Geometry +1109.5671 Phenomenology +1109.5674 History and Philosophy of Physics +1109.5679 Performance +1109.5957 Number Theory +1109.6121 General Physics +1109.6173 Experiment +1109.6282 Phenomenology +1109.6332 Mesoscale and Nanoscale Physics +1109.6467 Differential Geometry +1109.6539 Combinatorics +1109.6823 Functional Analysis +1109.6915 Instrumentation and Detectors +1109.6922 Solar and Stellar Astrophysics +1110.0008 Cosmology and Nongalactic Astrophysics +1110.0009 Combinatorics +1110.0010 Numerical Analysis +1110.0012 Experiment +1110.0014 Phenomenology +1110.0017 Cosmology and Nongalactic Astrophysics +1110.0023 Artificial Intelligence +1110.0024 Artificial Intelligence +1110.0025 Computer Science and Game Theory +1110.0026 Artificial Intelligence +1110.0028 Artificial Intelligence +1110.0031 Analysis of PDEs +1110.0032 Analysis of PDEs +1110.0035 Cosmology and Nongalactic Astrophysics +1110.0037 Combinatorics +1110.0039 +1110.0042 Analysis of PDEs +1110.0044 Experiment +1110.0048 Experiment +1110.0055 Solar and Stellar Astrophysics +1110.0056 Solar and Stellar Astrophysics +1110.0062 Applications +1110.0068 Number Theory +1110.0087 Instrumentation and Detectors +1110.0088 Optimization and Control +1110.0090 Probability +1110.0093 Strongly Correlated Electrons +1110.0102 Mesoscale and Nanoscale Physics +1110.0105 Multiagent Systems +1110.0106 Algebraic Geometry +1110.0113 Materials Science +1110.0122 K-Theory and Homology +1110.0127 K-Theory and Homology +1110.0130 Populations and Evolution +1110.0134 +1110.0137 Solar and Stellar Astrophysics +1110.0141 Differential Geometry +1110.0142 General Physics +1110.0143 Experiment +1110.0148 Instrumentation and Detectors +1110.0150 Cryptography and Security +1110.0152 Experiment +1110.0154 Atomic Physics +1110.0159 Risk Management +1110.0164 Algebraic Geometry +1110.0167 Spectral Theory +1110.0168 Numerical Analysis +1110.0171 Representation Theory +1110.0174 Group Theory +1110.0178 Discrete Mathematics +1110.0179 Analysis of PDEs +1110.0180 Data Structures and Algorithms +1110.0192 +1110.0202 Geophysics +1110.0203 Group Theory +1110.0204 Discrete Mathematics +1110.0205 Applications +1110.0209 Databases +1110.0213 Experiment +1110.0214 Learning +1110.0215 Information Theory +1110.0216 Probability +1110.0217 General Mathematics +1110.0218 +1110.0224 Combinatorics +1110.0230 Algebraic Geometry +1110.0232 Algebraic Geometry +1110.0233 Number Theory +1110.0235 Biomolecules +1110.0238 +1110.0239 Phenomenology +1110.0242 Differential Geometry +1110.0246 Number Theory +1110.0252 Information Theory +1110.0269 Differential Geometry +1110.0272 Physics and Society +1110.0273 Combinatorics +1110.0274 Optimization and Control +1110.0281 Complex Variables +1110.0282 Experiment +1110.0285 +1110.0287 Numerical Analysis +1110.0289 Information Retrieval +1110.0293 Optimization and Control +1110.0297 Functional Analysis +1110.0299 Classical Analysis and ODEs +1110.0304 Logic +1110.0307 Solar and Stellar Astrophysics +1110.0308 Number Theory +1110.0310 Networking and Internet Architecture +1110.0312 History and Philosophy of Physics +1110.0321 Rings and Algebras +1110.0322 Astrophysics of Galaxies +1110.0328 Experiment +1110.0329 Optics +1110.0331 +1110.0332 Materials Science +1110.0334 Distributed, Parallel, and Cluster Computing +1110.0338 Analysis of PDEs +1110.0340 +1110.0341 Discrete Mathematics +1110.0344 Mesoscale and Nanoscale Physics +1110.0346 General Physics +1110.0349 Other Statistics +1110.0355 Popular Physics +1110.0360 Cryptography and Security +1110.0363 Representation Theory +1110.0368 Plasma Physics +1110.0369 Mesoscale and Nanoscale Physics +1110.0376 Physics and Society +1110.0378 Information Theory +1110.0381 Physics and Society +1110.0385 Analysis of PDEs +1110.0389 Phenomenology +1110.0390 Algebraic Geometry +1110.0393 Experiment +1110.0396 Solar and Stellar Astrophysics +1110.0399 Combinatorics +1110.0400 Functional Analysis +1110.0404 Distributed, Parallel, and Cluster Computing +1110.0405 Algebraic Topology +1110.0414 Dynamical Systems +1110.0415 Algebraic Geometry +1110.0425 Information Theory +1110.0428 Information Theory +1110.0429 Number Theory +1110.0430 Phenomenology +1110.0432 Superconductivity +1110.0433 Neurons and Cognition +1110.0435 Experiment +1110.0436 Human-Computer Interaction +1110.0443 Instrumentation and Detectors +1110.0448 Geometric Topology +1110.0450 Differential Geometry +1110.0452 Neurons and Cognition +cond-mat/0307051 Strongly Correlated Electrons +cond-mat/0401485 Statistical Mechanics +cond-mat/9903075 Superconductivity +cond-mat/9908380 Strongly Correlated Electrons +cs/0009023 Discrete Mathematics +cs/0009028 Discrete Mathematics +hep-ph/0408314 Phenomenology +hep-th/0510129 Theory +math/0505446 Dynamical Systems +0705.1609 Dynamical Systems +0807.0512 Dynamical Systems +0807.2781 Group Theory +0903.3516 Biological Physics +0905.2999 Fluid Dynamics +0906.4363 Dynamical Systems +0906.5532 +0907.1679 +0908.0364 Optimization and Control +0909.3519 Phenomenology +0910.2147 Differential Geometry +0911.0713 Classical Analysis and ODEs +0911.3920 Classical Analysis and ODEs +0911.4071 Statistical Mechanics +0912.3778 Materials Science +1001.0943 Physics and Society +1001.2224 Strongly Correlated Electrons +1001.5007 Learning +1002.2177 Differential Geometry +1002.3866 Data Structures and Algorithms +1003.4154 Theory +1003.4586 Phenomenology +1004.1459 Cosmology and Nongalactic Astrophysics +1005.3843 Superconductivity +1006.1094 Algebraic Geometry +1006.2252 Lattice +1006.2530 Classical Analysis and ODEs +1006.3152 +1006.4145 Instrumentation and Methods for Astrophysics +1006.4420 Operator Algebras +1007.1312 +1007.2125 +1007.2931 Statistical Mechanics +1007.5084 Quantum Algebra +1008.1893 Other Condensed Matter +1009.1056 Algebraic Geometry +1009.4810 Number Theory +1009.5170 Functional Analysis +1009.5897 Mesoscale and Nanoscale Physics +1010.0068 Algebraic Geometry +1010.1242 Solar and Stellar Astrophysics +1010.1373 Lattice +1010.2150 Theory +1010.2172 Phenomenology +1010.2481 +1010.3684 Differential Geometry +1010.5047 +1010.5989 Quantum Gases +1011.0919 General Mathematics +1011.1450 Other Condensed Matter +1011.3481 Theory +1011.4599 Superconductivity +1012.0861 Mesoscale and Nanoscale Physics +1012.1578 General Topology +1012.2422 Genomics +1012.2862 High Energy Astrophysical Phenomena +1012.2951 +1012.3349 Geometric Topology +1012.4057 Theory +1101.0889 Accelerator Physics +1101.0951 Group Theory +1101.2393 Mesoscale and Nanoscale Physics +1102.1096 Computer Science and Game Theory +1102.2429 Cosmology and Nongalactic Astrophysics +1102.4414 Strongly Correlated Electrons +1102.4844 Combinatorics +1103.0038 Information Theory +1103.1502 +1103.1538 Analysis of PDEs +1103.1561 Solar and Stellar Astrophysics +1103.2411 Information Theory +1103.2791 Earth and Planetary Astrophysics +1103.3615 Chemical Physics +1103.3842 Combinatorics +1103.4190 Analysis of PDEs +1103.5158 Statistics Theory +1103.5163 Optimization and Control +1103.5318 Functional Analysis +1103.5320 Other Computer Science +1103.5410 Social and Information Networks +1103.5478 Information Theory +1103.5482 Algebraic Geometry +1103.5483 Biological Physics +1103.5486 Rings and Algebras +1103.5490 Quantitative Methods +1103.5491 Medical Physics +1103.5493 Medical Physics +1103.5494 Medical Physics +1103.5498 +1103.5502 Biological Physics +1103.5509 Differential Geometry +1103.5510 Computational Geometry +1103.5513 Number Theory +1103.5517 Combinatorics +1103.5524 Group Theory +1103.5529 Atomic Physics +1103.5531 Data Structures and Algorithms +1103.5533 +1103.5535 Information Theory +1103.5536 Probability +1103.5539 Category Theory +1103.5544 K-Theory and Homology +1103.5546 Solar and Stellar Astrophysics +1103.5547 Functional Analysis +1103.5561 Statistical Mechanics +1103.5562 Classical Analysis and ODEs +1103.5567 Differential Geometry +1103.5569 Physics and Society +1103.5571 Geometric Topology +1103.5573 Differential Geometry +1103.5582 Physics and Society +1103.5584 Theory +1103.5589 Cryptography and Security +1103.5591 Probability +1103.5598 Fluid Dynamics +1103.5600 History and Philosophy of Physics +1103.5601 Statistical Mechanics +1103.5608 Dynamical Systems +1103.5609 Data Structures and Algorithms +1103.5616 Software Engineering +1103.5621 Computer Vision and Pattern Recognition +1103.5622 Group Theory +1103.5626 Theory +1103.5630 Algebraic Geometry +1103.5638 Cosmology and Nongalactic Astrophysics +1103.5640 Complex Variables +1103.5647 Dynamical Systems +1103.5649 Risk Management +1103.5651 Statistical Finance +1103.5653 Risk Management +1103.5655 Risk Management +1103.5656 Risk Management +1103.5659 Statistical Finance +1103.5660 Statistical Finance +1103.5661 Statistical Finance +1103.5662 Quantum Gases +1103.5664 Trading and Market Microstructure +1103.5665 Risk Management +1103.5666 Risk Management +1103.5668 Risk Management +1103.5669 Computational Complexity +1103.5672 General Finance +1103.5673 Group Theory +1103.5674 Risk Management +1103.5676 Computation and Language +1103.5680 Experiment +1103.5683 Chaotic Dynamics +1103.5687 Differential Geometry +1103.5689 Discrete Mathematics +1103.5695 Networking and Internet Architecture +1103.5698 Statistical Mechanics +1103.5708 Artificial Intelligence +1103.5712 Cryptography and Security +1103.5716 General Topology +1103.5717 Probability +1103.5721 Analysis of PDEs +1103.5736 Distributed, Parallel, and Cluster Computing +cond-mat/0511670 Mesoscale and Nanoscale Physics +math/0111235 Algebraic Geometry +math/0512068 Statistics Theory +math/0512069 Statistics Theory +math/0701255 Algebraic Geometry +math/0703550 Statistics Theory +math/0703551 Statistics Theory +math/9906095 Classical Analysis and ODEs +0705.0736 Category Theory +0711.2672 Dynamical Systems +0801.3837 Information Theory +0802.3492 Programming Languages +0802.3771 Differential Geometry +0808.3974 Symplectic Geometry +0812.1344 +0902.1065 Dynamical Systems +0902.3255 Materials Science +0903.4216 Statistical Finance +0908.3121 Statistics Theory +0910.5650 Algebraic Topology +0911.2410 +0911.2811 Algebraic Topology +0912.1135 Numerical Analysis +0912.2530 Theory +0912.4871 Theory +0912.5300 Theory +1001.4311 +1004.2006 Data Analysis, Statistics and Probability +1006.0741 Multiagent Systems +1006.4951 Mesoscale and Nanoscale Physics +1007.3728 General Physics +1008.0446 Statistics Theory +1008.1307 Theory +1008.2965 Theory +1008.4079 +1009.0023 Theory +1009.4536 Tissues and Organs +1009.5094 Optimization and Control +1009.5527 Materials Science +1009.6101 +1010.0282 Algebraic Geometry +1010.3280 High Energy Astrophysical Phenomena +1011.0390 Discrete Mathematics +1011.0509 Representation Theory +1011.0949 Analysis of PDEs +1011.0985 Theory +1011.1145 Theory +1011.1245 Theory +1011.2659 Theory +1011.3841 Soft Condensed Matter +1011.4905 Phenomenology +1011.5709 +1011.5855 Phenomenology +1011.6199 Phenomenology +1011.6259 Phenomenology +1011.6530 Strongly Correlated Electrons +1012.0026 Theory +1012.0404 Lattice +1012.1299 Materials Science +1012.4412 Lattice +1012.4638 Phenomenology +1012.4722 Theory +1012.5021 +1101.0232 Superconductivity +1101.1605 +1101.1690 +1101.1722 +1101.2793 Theory +1101.4890 +1101.4936 Phenomenology +1101.5980 General Physics +1102.0599 Quantum Gases +1102.1399 Quantum Gases +1102.2674 Optics +1102.3233 +1102.4267 Representation Theory +1102.4603 High Energy Astrophysical Phenomena +1102.4804 Combinatorics +1103.0611 Phenomenology +1103.1645 Strongly Correlated Electrons +1103.1853 Phenomenology +1103.2343 +1103.5557 Theory +1103.6179 Strongly Correlated Electrons +1104.0217 +1104.1565 Cosmology and Nongalactic Astrophysics +1104.2012 High Energy Astrophysical Phenomena +1104.4181 High Energy Astrophysical Phenomena +1104.4686 Theory +1104.4849 Theory +1105.0074 Social and Information Networks +1105.1082 Instrumentation and Methods for Astrophysics +1105.1797 Combinatorics +1105.4151 Networking and Internet Architecture +1105.4396 Statistics Theory +1105.4600 Commutative Algebra +1105.4838 +1105.4890 Dynamical Systems +1105.4891 Combinatorics +1105.4898 Soft Condensed Matter +1105.4904 Differential Geometry +1105.4909 +1105.4911 +1105.4926 Representation Theory +1105.4934 Optics +1105.4935 Representation Theory +1105.4936 Data Analysis, Statistics and Probability +1105.4940 Combinatorics +1105.4941 Mesoscale and Nanoscale Physics +1105.4945 Classical Analysis and ODEs +1105.4953 Data Structures and Algorithms +1105.4958 Other Computer Science +1105.4961 Quantitative Methods +1105.4962 Differential Geometry +1105.4963 Instrumentation and Detectors +1105.4964 Soft Condensed Matter +1105.4965 Physics and Society +1105.4971 Neural and Evolutionary Computing +1105.4972 Functional Analysis +1105.4977 Representation Theory +1105.4978 Neural and Evolutionary Computing +1105.4986 Combinatorics +1105.4989 Information Theory +1105.4993 Algebraic Geometry +1105.4997 General Physics +1105.5010 Astrophysics of Galaxies +1105.5016 Probability +1105.5017 Mesoscale and Nanoscale Physics +1105.5027 Combinatorics +1105.5033 Molecular Networks +1105.5034 Instrumentation and Detectors +1105.5045 Analysis of PDEs +1105.5047 Statistical Mechanics +1105.5048 Quantum Algebra +1105.5053 Physics and Society +1105.5054 +1105.5060 Differential Geometry +1105.5063 Molecular Networks +1105.5065 Methodology +1105.5066 Differential Geometry +1105.5067 Differential Geometry +1105.5069 Accelerator Physics +1105.5075 Analysis of PDEs +1105.5094 Dynamical Systems +1105.5097 Accelerator Physics +1105.5099 Atomic Physics +1105.5101 Experiment +1105.5106 Algebraic Geometry +1105.5114 High Energy Astrophysical Phenomena +1105.5116 Astrophysics of Galaxies +1105.5129 Combinatorics +cond-mat/0106360 Superconductivity +gr-qc/0312111 +hep-th/0303129 Theory +math/0608634 Probability +math/0609117 Probability +nucl-ex/0301009 +physics/0512060 Atomic and Molecular Clusters +physics/0606102 Atomic and Molecular Clusters +quant-ph/0312174 +0707.0941 Materials Science +0708.2094 Experiment +0708.3933 Theory +0712.1341 Phenomenology +0712.1641 Theory +0712.2601 Group Theory +0802.2531 Materials Science +0804.1589 K-Theory and Homology +0807.1887 Superconductivity +0807.5100 Classical Analysis and ODEs +0807.5106 Combinatorics +0812.0778 Algebraic Geometry +0901.3283 +0902.1771 Analysis of PDEs +0904.3748 Mesoscale and Nanoscale Physics +0904.3853 Algebraic Geometry +0905.1364 Group Theory +0905.3109 Information Theory +0905.3521 Statistical Mechanics +0906.3472 Theory +0907.2453 +0907.2702 Information Theory +0908.0353 +0908.1625 Materials Science +0908.3139 +0908.4006 +0910.0319 +0910.0380 +0910.1548 +0910.5488 +0912.0384 Solar and Stellar Astrophysics +0912.2855 Phenomenology +0912.3249 Theory +0912.4074 +1001.0338 Algebraic Topology +1001.3898 +1001.3977 Quantum Algebra +1002.4051 Phenomenology +1002.4251 Theory +1002.4710 Lattice +1003.3827 Phenomenology +1003.4864 +1004.0003 Cosmology and Nongalactic Astrophysics +1004.1088 Probability +1004.1103 Strongly Correlated Electrons +1004.1964 +1004.3307 Phenomenology +1004.4674 Plasma Physics +1004.5264 Theory +1005.2912 +1006.0812 +1006.2327 Biological Physics +1006.2365 Soft Condensed Matter +1006.3482 Analysis of PDEs +1006.3913 Data Structures and Algorithms +1006.4394 Materials Science +1006.5335 Instrumentation and Detectors +1006.5665 +1006.5760 Mesoscale and Nanoscale Physics +1006.5788 +1007.1108 High Energy Astrophysical Phenomena +1007.1141 Phenomenology +1007.1177 +1007.2317 Number Theory +1007.3923 Phenomenology +1007.4125 +1007.4313 Phenomenology +1007.4577 Analysis of PDEs +1008.0298 Biological Physics +1008.0458 Materials Science +1008.0633 Theory +1008.1074 Phenomenology +1008.1738 +1008.2942 Theory +1008.3308 High Energy Astrophysical Phenomena +1008.3334 Theory +1008.3499 Phenomenology +1008.3861 Phenomenology +1008.4807 Phenomenology +1008.4916 Discrete Mathematics +1008.5159 +1008.5243 Phenomenology +1008.5302 Phenomenology +1008.5328 Phenomenology +1008.5388 Quantum Gases +1009.1093 Phenomenology +1009.1747 +1009.2049 Phenomenology +1009.2081 Cosmology and Nongalactic Astrophysics +1009.2256 +1009.2635 Phenomenology +1009.2933 Phenomenology +1009.3931 Theory +1009.4138 Instrumentation and Detectors +1009.5239 Phenomenology +1009.5250 Phenomenology +1009.6041 High Energy Astrophysical Phenomena +1010.0089 Phenomenology +1010.0288 Phenomenology +1010.0988 Cosmology and Nongalactic Astrophysics +1010.1068 Theory +1010.1089 +1010.1363 Theory +1010.1417 Phenomenology +1010.1427 Theory +1010.1565 Cosmology and Nongalactic Astrophysics +1010.1874 Quantum Gases +1010.2179 Materials Science +1010.2724 Cosmology and Nongalactic Astrophysics +1010.2927 +1010.3814 +1010.3973 +1010.4640 Phenomenology +1010.4992 Computational Physics +1010.5267 Theory +1010.5315 Theory +1010.5354 Theory +1010.5447 +1010.5558 Theory +1010.5561 +1010.5793 Disordered Systems and Neural Networks +1010.6250 +1011.0875 +1011.2076 High Energy Astrophysical Phenomena +1011.3294 Phenomenology +1011.3679 Theory +1011.6179 +1011.6196 Phenomenology +1011.6495 Optimization and Control +1012.3519 +1012.3794 +1012.4055 Theory +1012.4646 +1012.5394 Phenomenology +1012.5619 +1012.5865 +1101.0372 Cosmology and Nongalactic Astrophysics +1101.0717 Cosmology and Nongalactic Astrophysics +1101.1074 +1101.1434 Astrophysics of Galaxies +1101.4380 Number Theory +1101.4439 Machine Learning +1101.4486 Information Theory +1101.5123 Algebraic Geometry +1101.5170 Analysis of PDEs +1101.5180 Quantum Gases +1101.5188 Cryptography and Security +1101.5193 Cell Behavior +1101.5198 +1101.5200 Logic in Computer Science +1101.5201 Algebraic Topology +1101.5205 Cosmology and Nongalactic Astrophysics +1101.5208 Theory +1101.5209 Mesoscale and Nanoscale Physics +1101.5211 Combinatorics +1101.5212 Rings and Algebras +1101.5213 Geometric Topology +1101.5219 Probability +1101.5224 Analysis of PDEs +1101.5232 Solar and Stellar Astrophysics +1101.5241 Experiment +1101.5242 Algebraic Geometry +1101.5248 Statistics Theory +1101.5249 Optimization and Control +1101.5250 Combinatorics +1101.5253 Superconductivity +1101.5254 Theory +1101.5259 Differential Geometry +1101.5264 Quantum Gases +1101.5267 +1101.5269 Solar and Stellar Astrophysics +1101.5271 Astrophysics of Galaxies +1101.5278 Combinatorics +1101.5279 Probability +1101.5283 Soft Condensed Matter +1101.5285 Mesoscale and Nanoscale Physics +1101.5288 Combinatorics +1101.5291 High Energy Astrophysical Phenomena +1101.5302 Combinatorics +1101.5308 Social and Information Networks +1101.5313 Other Computer Science +1101.5314 +1101.5316 Quantum Gases +1101.5317 Information Theory +1101.5319 Complex Variables +1101.5322 Physics and Society +1101.5329 Materials Science +1101.5332 Dynamical Systems +1101.5335 Performance +1101.5336 Combinatorics +1101.5345 Data Structures and Algorithms +1101.5348 Combinatorics +1101.5355 +1101.5357 High Energy Astrophysical Phenomena +1101.5367 Group Theory +1101.5369 +1101.5371 Genomics +1101.5376 Data Structures and Algorithms +1101.5378 +1101.5381 Functional Analysis +1101.5382 Representation Theory +1101.5388 Theory +1101.5389 Analysis of PDEs +astro-ph/0404022 +astro-ph/0507456 +cond-mat/0611777 Materials Science +cs/0501092 Robotics +hep-lat/0609057 Lattice +hep-ph/0102176 Phenomenology +hep-ph/0703058 Phenomenology +hep-th/0311173 Theory +hep-th/9210025 Theory +math-ph/0511044 +math/0502041 Quantum Algebra +math/0502161 Algebraic Geometry +math/0505636 Combinatorics +math/0512022 Algebraic Geometry +math/0603160 Quantum Algebra +nlin/0603029 Exactly Solvable and Integrable Systems +nucl-th/0507041 +q-alg/9711009 Quantum Algebra +quant-ph/0210148 +quant-ph/0403179 +0706.4262 +0807.4940 Theory +0808.0467 Number Theory +0810.0613 +0811.0106 Analysis of PDEs +0812.2749 Statistics Theory +0903.1464 Solar and Stellar Astrophysics +0906.1202 Neurons and Cognition +0906.2926 Solar and Stellar Astrophysics +0907.4524 Cosmology and Nongalactic Astrophysics +0907.5310 Phenomenology +0909.0283 Differential Geometry +0909.0726 Rings and Algebras +0909.4549 Phenomenology +0910.2965 Representation Theory +0912.3428 Cosmology and Nongalactic Astrophysics +1002.1073 Differential Geometry +1003.0611 Combinatorics +1003.0707 Analysis of PDEs +1004.0784 Computation +1004.1780 +1004.3264 Differential Geometry +1005.0525 +1005.0873 Mesoscale and Nanoscale Physics +1005.2084 Geometric Topology +1005.5046 Fluid Dynamics +1005.5220 Mesoscale and Nanoscale Physics +1005.5247 Probability +1005.5558 Algebraic Geometry +1006.0126 Superconductivity +1006.2910 +1007.0015 +1007.0127 Strongly Correlated Electrons +1007.1641 Phenomenology +1007.2117 Numerical Analysis +1007.2562 Functional Analysis +1007.5122 Number Theory +1008.0585 Theory +1008.1734 Superconductivity +1008.3109 Cosmology and Nongalactic Astrophysics +1008.4171 Instrumentation and Detectors +1008.5068 Instrumentation and Detectors +1008.5097 +1009.0052 Instrumentation and Detectors +1009.0589 +1009.0774 +1009.0809 Theory +1009.0876 Instrumentation and Detectors +1009.1267 +1009.2656 Atomic and Molecular Clusters +1009.2751 Phenomenology +1009.3030 +1009.3793 Instrumentation and Detectors +1009.3817 +1009.3874 Theory +1009.3884 Cosmology and Nongalactic Astrophysics +1009.3891 Information Theory +1009.3934 Phenomenology +1009.4029 +1009.4418 Theory +1009.5883 Instrumentation and Detectors +1010.0743 Information Theory +1010.1570 +1010.1644 Theory +1010.2784 +1010.2832 Computational Physics +1010.3426 Differential Geometry +1010.3604 Probability +1010.4164 +1010.4885 +1010.5837 +1010.6170 Probability +1011.1217 +1011.1483 Combinatorics +1011.2062 +1011.2768 +1011.2775 Lattice +1011.2853 Phenomenology +1011.3428 Theory +1011.3433 +1011.3467 +1011.3477 +1011.5387 Quantum Gases +1011.6299 Phenomenology +1011.6650 Phenomenology +1012.0831 Spectral Theory +1012.1029 Phenomenology +1012.1739 +1012.1911 Category Theory +1012.4039 +1012.4411 +1012.5496 Genomics +1101.0118 Theory +1101.1139 +1101.1417 General Physics +1101.2658 Commutative Algebra +1101.3552 Theory +1101.3816 Theory +1101.4004 Experiment +1101.4316 Statistics Theory +1101.4362 Phenomenology +1101.4403 Theory +1101.5373 Accelerator Physics +1101.5408 Instrumentation and Methods for Astrophysics +1101.5422 Exactly Solvable and Integrable Systems +1102.0114 Differential Geometry +1102.0416 Phenomenology +1102.1321 +1102.1422 Superconductivity +1102.2187 Strongly Correlated Electrons +1102.2727 Instrumentation and Detectors +1102.3706 +1102.3794 Materials Science +1102.3859 Quantum Gases +1102.4357 +1102.4615 Phenomenology +1103.0252 Phenomenology +1103.1388 Phenomenology +1103.1585 Number Theory +1103.1664 Phenomenology +1103.2738 Theory +1103.2792 Phenomenology +1103.2978 Strongly Correlated Electrons +1103.3150 Theory +1103.3593 +1103.4237 High Energy Astrophysical Phenomena +1103.4495 Theory +1103.4567 Materials Science +1103.4980 Data Analysis, Statistics and Probability +1103.5090 High Energy Astrophysical Phenomena +1103.5477 High Energy Astrophysical Phenomena +1103.5727 High Energy Astrophysical Phenomena +1103.6057 Phenomenology +1103.6086 Instrumentation and Detectors +1103.6222 Discrete Mathematics +1104.0962 Quantum Gases +1104.1727 Mesoscale and Nanoscale Physics +1104.2419 Strongly Correlated Electrons +1104.3396 Theory +1104.4254 +1104.5161 Quantum Gases +1104.5437 Analysis of PDEs +1105.0328 +1105.1234 Cryptography and Security +1105.1827 Distributed, Parallel, and Cluster Computing +1105.2448 High Energy Astrophysical Phenomena +1105.3610 Functional Analysis +1105.4219 Classical Physics +1105.4282 Algebraic Geometry +1105.4349 Numerical Analysis +1105.4350 +1105.4405 Representation Theory +1105.4604 Theory +1105.4613 Cosmology and Nongalactic Astrophysics +1105.4618 Learning +1105.4623 Phenomenology +1105.4632 Differential Geometry +1105.4633 General Physics +1105.4636 Probability +1105.4641 Metric Geometry +1105.4644 Instrumentation and Detectors +1105.4657 +1105.4662 Number Theory +1105.4667 Statistics Theory +1105.4668 +1105.4678 +1105.4683 Information Theory +1105.4687 Spectral Theory +1105.4690 Analysis of PDEs +1105.4702 Information Retrieval +1105.4703 Optics +1105.4710 Category Theory +1105.4712 Computer Vision and Pattern Recognition +1105.4732 Differential Geometry +1105.4734 Statistical Mechanics +1105.4735 Classical Analysis and ODEs +1105.4736 Digital Libraries +1105.4738 Medical Physics +1105.4739 Theory +1105.4745 Instrumentation and Detectors +1105.4746 Spectral Theory +1105.4748 Rings and Algebras +1105.4758 Mesoscale and Nanoscale Physics +1105.4759 Cosmology and Nongalactic Astrophysics +1105.4760 Experiment +1105.4766 Solar and Stellar Astrophysics +1105.4768 General Physics +1105.4769 +1105.4770 Discrete Mathematics +1105.4772 Algebraic Topology +1105.4774 Differential Geometry +1105.4775 Differential Geometry +1105.4783 Accelerator Physics +1105.4785 Group Theory +1105.4794 Mesoscale and Nanoscale Physics +1105.4799 General Physics +1105.4801 Analysis of PDEs +1105.4812 Dynamical Systems +1105.4815 +1105.4819 +1105.4823 Computation +1105.4833 Number Theory +1105.4839 Functional Analysis +1105.4843 Operator Algebras +1105.4848 Classical Analysis and ODEs +1105.4851 Geometric Topology +1105.4860 +1105.4868 Information Retrieval +1105.4871 Machine Learning +1105.4873 Experiment +astro-ph/0412619 +astro-ph/9609061 +hep-ex/0612047 Experiment +hep-lat/0505020 Lattice +hep-ph/0306256 Phenomenology +hep-th/0512283 Theory +math-ph/0012001 +quant-ph/0005031 +quant-ph/0202149 +quant-ph/0205058 +1108.0027 Social and Information Networks +1108.0064 Combinatorics +1108.0097 +1108.0146 High Energy Astrophysical Phenomena +1108.0251 Applications +1108.0354 Statistical Mechanics +1108.0442 Social and Information Networks +1108.0560 Popular Physics +1108.0706 +1108.0782 Medical Physics +1108.0786 Computational Engineering, Finance, and Science +1108.0983 Chaotic Dynamics +1108.1018 +1108.1066 Systems and Control +1108.1104 Other Condensed Matter +0704.2403 +0704.2411 Rings and Algebras +0710.3142 Atomic Physics +0710.4316 +0711.2418 +0711.2549 Differential Geometry +0804.1061 +0804.4697 Atomic Physics +0805.1565 Classical Analysis and ODEs +0805.2255 +0805.2518 Probability +0805.2548 +0805.4225 +0805.4265 +0806.0557 +0806.3692 +0806.4481 +0806.4594 +0807.1020 +0807.1101 +0807.1328 +0807.1346 +0807.2790 +0807.3069 +0807.3429 +0807.4210 Atomic Physics +0807.4421 +0807.4914 +0807.4930 +0807.4965 +0808.0261 +0808.1122 +0808.1465 +0809.0097 +0809.0528 Strongly Correlated Electrons +0809.2769 +0810.1757 Mesoscale and Nanoscale Physics +0810.2967 +0810.3830 +0810.4208 Atomic Physics +0811.0566 +0811.0784 +0811.1493 +0811.2161 Theory +0811.3759 +0901.0549 Cosmology and Nongalactic Astrophysics +0901.4366 Other Condensed Matter +0902.2739 Fluid Dynamics +0902.4270 Representation Theory +0903.2367 Cosmology and Nongalactic Astrophysics +0903.2986 Cosmology and Nongalactic Astrophysics +0905.4467 Superconductivity +0906.3546 Cosmology and Nongalactic Astrophysics +0906.4944 Cosmology and Nongalactic Astrophysics +0907.1526 Cosmology and Nongalactic Astrophysics +0908.3448 Algebraic Topology +0908.3772 Rings and Algebras +0910.1323 +0912.5207 Phenomenology +1003.5200 Algebraic Geometry +1004.3083 Representation Theory +1004.3576 Superconductivity +1004.4315 Representation Theory +1004.5147 Strongly Correlated Electrons +1004.5586 Strongly Correlated Electrons +1005.2560 Group Theory +1005.4753 Statistics Theory +1006.3019 Experiment +1006.3668 Chaotic Dynamics +1006.5482 Dynamical Systems +1007.0492 Soft Condensed Matter +1007.1979 Geometric Topology +1007.2916 Functional Analysis +1007.3648 Commutative Algebra +1008.1201 Numerical Analysis +1008.3562 Phenomenology +1008.3722 Pricing of Securities +1008.3908 Superconductivity +1008.4173 Strongly Correlated Electrons +1008.5005 Atomic Physics +1009.5782 +1010.4188 +1010.5780 Theory +1011.2154 Number Theory +1011.2824 Atomic Physics +1011.4150 Solar and Stellar Astrophysics +1011.4252 +1011.4524 Lattice +1011.4553 Instrumentation and Detectors +1011.4574 Phenomenology +1011.4620 Instrumentation and Detectors +1011.4659 +1011.4661 Phenomenology +1011.4679 Experiment +1011.4716 Mesoscale and Nanoscale Physics +1011.4754 +1011.4806 +1011.4863 Phenomenology +1011.6507 Phenomenology +1012.1352 Theory +1012.3923 High Energy Astrophysical Phenomena +1012.4462 Theory +1012.4476 +1012.4743 Representation Theory +1012.5249 +1101.2647 Rings and Algebras +1101.4069 Algebraic Geometry +1101.5515 Probability +1102.0153 Theory +1102.1590 Dynamical Systems +1102.2658 Strongly Correlated Electrons +1102.4183 Mesoscale and Nanoscale Physics +1102.4254 +1102.4637 Theory +1103.0579 Optimization and Control +1103.0586 Superconductivity +1103.1148 Combinatorics +1103.2104 Strongly Correlated Electrons +1103.2458 Statistical Mechanics +1103.2915 Phenomenology +1103.3134 +1103.3499 Astrophysics of Galaxies +1103.3692 +1103.4488 +1103.4699 Theory +1103.5140 Phenomenology +1103.6286 Theory +1104.0231 Phenomenology +1104.0957 Phenomenology +1104.2461 Theory +1104.3771 +1104.4040 Theory +1104.4061 Theory +1105.2370 Phenomenology +1105.3687 Theory +1105.5790 Geometric Topology +1106.2292 +1106.2380 Performance +1106.2699 Computational Physics +1106.6207 Experiment +1107.0219 Experiment +1107.0467 General Physics +1107.0804 +1107.0807 Phenomenology +1107.1184 Algebraic Geometry +1107.1858 Representation Theory +1107.1948 Numerical Analysis +1107.2003 Programming Languages +1107.2056 Solar and Stellar Astrophysics +1107.2105 Data Structures and Algorithms +1107.2110 Geometric Topology +1107.2114 Astrophysics of Galaxies +1107.2125 Statistical Mechanics +1107.2127 Geometric Topology +1107.2132 Computer Science and Game Theory +1107.2139 Functional Analysis +1107.2140 Cosmology and Nongalactic Astrophysics +1107.2141 Computer Science and Game Theory +1107.2144 Differential Geometry +1107.2149 General Physics +1107.2156 Data Analysis, Statistics and Probability +1107.2157 Programming Languages +1107.2159 Number Theory +1107.2160 Numerical Analysis +1107.2161 Combinatorics +1107.2164 Risk Management +1107.2170 Combinatorics +1107.2171 Combinatorics +1107.2172 Spectral Theory +1107.2173 Functional Analysis +1107.2176 Biological Physics +1107.2179 Theory +1107.2192 Algebraic Geometry +1107.2193 Probability +1107.2194 Analysis of PDEs +1107.2198 Cosmology and Nongalactic Astrophysics +1107.2199 Pattern Formation and Solitons +1107.2201 Combinatorics +1107.2219 Probability +1107.2222 Multimedia +1107.2229 Information Theory +1107.2231 Probability +1107.2236 Classical Analysis and ODEs +1107.2238 Materials Science +1107.2240 Representation Theory +1107.2243 Symplectic Geometry +1107.2244 Astrophysics of Galaxies +1107.2245 Quantum Gases +1107.2249 Earth and Planetary Astrophysics +1107.2253 Probability +1107.2257 Experiment +1107.2258 Cosmology and Nongalactic Astrophysics +1107.2264 Functional Analysis +1107.2267 Functional Analysis +1107.2277 Probability +1107.2278 Rings and Algebras +1107.2288 Algebraic Geometry +1107.2297 Geometric Topology +1107.2299 Data Structures and Algorithms +1107.2306 Analysis of PDEs +1107.2309 Probability +1107.2314 Combinatorics +1107.2317 Phenomenology +1107.2328 Experiment +1107.2330 Molecular Networks +1107.2331 Group Theory +1107.2332 Analysis of PDEs +1107.2336 Computer Vision and Pattern Recognition +1107.2347 Machine Learning +1107.2350 Classical Analysis and ODEs +1107.2351 Differential Geometry +1107.2352 Classical Analysis and ODEs +1107.2356 High Energy Astrophysical Phenomena +1107.2359 High Energy Astrophysical Phenomena +1107.2374 Analysis of PDEs +1107.2391 High Energy Astrophysical Phenomena +astro-ph/0103069 +astro-ph/9709113 +cond-mat/0106216 Statistical Mechanics +cond-mat/0402118 Statistical Mechanics +cond-mat/0409697 Statistical Mechanics +cs/0703088 Computer Vision and Pattern Recognition +hep-th/0201228 Theory +hep-th/0204248 Theory +hep-th/0508020 Theory +math-ph/0611056 +math/0508438 Representation Theory +nlin/0603021 Chaotic Dynamics +q-alg/9604024 Quantum Algebra +q-bio/0403028 Biomolecules +quant-ph/0404026 +quant-ph/0506209 +quant-ph/0609107 +quant-ph/0609161 +quant-ph/0703230 +1008.2371 General Physics +0704.1778 Probability +0706.0136 Probability +0802.0984 Statistical Finance +0808.3187 Commutative Algebra +0808.3189 Commutative Algebra +0809.0230 +0809.4684 Phenomenology +0811.1684 +0812.0569 Probability +0812.1121 Combinatorics +0812.1645 +0812.4259 Atomic Physics +0903.2498 Theory +0904.2324 Disordered Systems and Neural Networks +0904.2711 Mesoscale and Nanoscale Physics +0907.0256 Quantum Algebra +0909.3650 Solar and Stellar Astrophysics +0911.1840 Dynamical Systems +0911.4098 Analysis of PDEs +0911.5602 Materials Science +0912.0699 +0912.0873 Group Theory +1001.4912 Algebraic Geometry +1002.3126 Cosmology and Nongalactic Astrophysics +1004.2588 Probability +1005.0398 Cosmology and Nongalactic Astrophysics +1005.5580 Strongly Correlated Electrons +1006.1909 Combinatorics +1006.1915 Algebraic Geometry +1006.4053 +1007.1062 Materials Science +1007.1922 Disordered Systems and Neural Networks +1007.4499 Accelerator Physics +1008.0448 +1008.2008 Information Theory +1008.2524 +1008.3090 Algebraic Geometry +1008.3322 Plasma Physics +1008.3602 Analysis of PDEs +1008.5061 Phenomenology +1008.5069 Probability +1008.5224 Materials Science +1009.4820 Formal Languages and Automata Theory +1009.5175 Solar and Stellar Astrophysics +1009.5380 Phenomenology +1010.0820 Algebraic Geometry +1010.1723 Soft Condensed Matter +1010.2033 Atomic Physics +1010.4332 Phenomenology +1010.4482 Phenomenology +1010.4754 Experiment +1010.4779 Lattice +1010.4780 Lattice +1010.4781 Lattice +1010.5407 Soft Condensed Matter +1010.5754 Materials Science +1010.5914 Statistical Mechanics +1010.5915 Dynamical Systems +1011.5179 Analysis of PDEs +1011.6142 High Energy Astrophysical Phenomena +1012.3106 Combinatorics +1012.3227 Phenomenology +1101.0194 Differential Geometry +1101.0344 Statistics Theory +1101.4317 Optics +1101.4436 Statistical Mechanics +1101.5417 +1102.1302 Algebraic Geometry +1102.4109 +1102.4502 Experiment +1102.4582 Number Theory +1102.4614 Astrophysics of Galaxies +1102.4634 Combinatorics +1102.4635 Dynamical Systems +1102.4636 Logic in Computer Science +1102.4640 Quantum Algebra +1102.4641 Classical Analysis and ODEs +1102.4642 Quantum Gases +1102.4643 Theory +1102.4645 Strongly Correlated Electrons +1102.4646 Information Theory +1102.4656 Number Theory +1102.4657 Algebraic Geometry +1102.4671 Phenomenology +1102.4672 Phenomenology +1102.4673 Differential Geometry +1102.4676 +1102.4680 Optics +1102.4681 Symbolic Computation +1102.4683 Analysis of PDEs +1102.4684 Other Computer Science +1102.4685 +1102.4689 Probability +1102.4692 Geophysics +1102.4694 Soft Condensed Matter +1102.4697 +1102.4699 Computational Complexity +1102.4707 Probability +1102.4708 Lattice +1102.4710 +1102.4712 Information Theory +1102.4715 Probability +1102.4719 Dynamical Systems +1102.4722 Portfolio Management +1102.4723 Symplectic Geometry +1102.4727 Discrete Mathematics +1102.4729 Probability +1102.4730 Algebraic Geometry +1102.4731 +1102.4732 Phenomenology +1102.4734 Chaotic Dynamics +1102.4741 Probability +1102.4744 Probability +1102.4761 Combinatorics +1102.4765 Mesoscale and Nanoscale Physics +1102.4768 Algebraic Geometry +1102.4769 Databases +1102.4770 Biological Physics +1102.4771 Information Theory +1102.4775 Materials Science +1102.4777 History and Philosophy of Physics +1102.4781 Algebraic Topology +1102.4782 Complex Variables +1102.4789 Materials Science +1102.4790 Earth and Planetary Astrophysics +1102.4793 Populations and Evolution +1102.4797 Quantum Gases +1102.4798 Differential Geometry +1102.4802 Combinatorics +1102.4803 Statistics Theory +1102.4809 Algebraic Topology +1102.4816 Computation +1102.4820 Statistics Theory +1102.4821 Numerical Analysis +1102.4825 Information Theory +1102.4831 Atomic Physics +1102.4833 Number Theory +1102.4834 Number Theory +1102.4835 Commutative Algebra +1102.4836 Differential Geometry +1102.4838 Dynamical Systems +cond-mat/0703393 Statistical Mechanics +hep-ph/9509327 Phenomenology +hep-ph/9603309 Phenomenology +hep-ph/9706281 Phenomenology +hep-ph/9707282 Phenomenology +hep-th/0407088 Theory +math/0602179 Numerical Analysis +math/0607162 Probability +physics/0506007 Atomic Physics +physics/0508021 Atomic Physics +0706.1805 +0708.3597 +0802.0535 Statistical Mechanics +0806.2419 +0806.2454 +0809.3899 Exactly Solvable and Integrable Systems +0811.3443 +0901.0733 Logic in Computer Science +0901.4030 Combinatorics +0903.3208 Analysis of PDEs +0904.3055 Theory +0905.1887 +0905.3119 +0906.0315 +0906.5430 +0908.1295 +0909.1458 Algebraic Geometry +0909.2740 Superconductivity +0909.3653 General Mathematics +0910.5534 Algebraic Geometry +0911.0363 Theory +0911.0418 Cosmology and Nongalactic Astrophysics +0912.4261 Theory +1001.0064 Functional Analysis +1001.0858 Theory +1002.2742 Instrumentation and Detectors +1002.2791 Instrumentation and Detectors +1003.1453 Exactly Solvable and Integrable Systems +1003.3682 Neurons and Cognition +1004.0848 Strongly Correlated Electrons +1004.1355 +1004.2687 Differential Geometry +1004.4309 +1004.4456 Theory +1005.1199 Theory +1005.1371 Quantum Algebra +1005.1483 General Physics +1005.2102 Theory +1005.2357 +1005.4291 Materials Science +1006.0080 Cosmology and Nongalactic Astrophysics +1006.0887 Physics and Society +1006.1472 +1006.2094 Theory +1006.2519 +1006.4943 Logic in Computer Science +1007.1972 Phenomenology +1007.2202 Theory +1007.4573 Phenomenology +1007.4861 Theory +1007.4972 +1007.5052 +1008.0872 Theory +1008.2482 +1008.3132 Mesoscale and Nanoscale Physics +1008.4641 Phenomenology +1008.4655 Theory +1008.5154 +1009.0902 +1009.1681 +1009.2087 Theory +1009.2169 +1009.2319 +1010.2963 +1010.3690 Strongly Correlated Electrons +1010.4542 Theory +1010.4653 Superconductivity +1010.4729 Theory +1010.4861 Theory +1010.6088 Soft Condensed Matter +1011.0166 Theory +1011.0173 Number Theory +1011.1807 +1011.1818 Theory +1011.2088 Theory +1011.2195 Theory +1011.2876 +1011.4830 Probability +1011.4875 Superconductivity +1011.6374 Cosmology and Nongalactic Astrophysics +1012.0046 Strongly Correlated Electrons +1012.0792 Mesoscale and Nanoscale Physics +1012.0853 Phenomenology +1012.1853 High Energy Astrophysical Phenomena +1012.3812 Lattice +1012.4474 Strongly Correlated Electrons +1012.5760 Statistical Mechanics +1101.0897 Numerical Analysis +1101.1752 +1101.2120 Theory +1101.2991 +1101.3273 Phenomenology +1101.3864 +1101.4244 +1101.4433 Accelerator Physics +1101.4746 Theory +1101.4886 +1101.5197 Materials Science +1102.0081 Phenomenology +1102.1175 +1102.1589 Phenomenology +1102.2409 +1102.2743 Computer Vision and Pattern Recognition +1102.2749 Computer Vision and Pattern Recognition +1102.3277 Theory +1102.3652 Lattice +1102.3752 +1102.3929 Theory +1102.5452 Formal Languages and Automata Theory +1103.0340 Experiment +1103.0346 +1103.0958 +1103.0999 Information Theory +1103.1393 Superconductivity +1103.1494 Lattice +1103.2529 Soft Condensed Matter +1103.3200 Cosmology and Nongalactic Astrophysics +1103.3338 Classical Physics +1103.4366 Theory +1103.4601 Learning +1103.5022 Theory +1103.5492 Cosmology and Nongalactic Astrophysics +1103.5797 Neural and Evolutionary Computing +1104.0379 Logic in Computer Science +1104.0604 +1104.1169 +1104.1313 +1104.2130 Soft Condensed Matter +1104.3011 Differential Geometry +1104.3450 Phenomenology +1104.4372 Quantum Algebra +1105.0146 Materials Science +1105.0761 Atomic Physics +1105.1021 Dynamical Systems +1105.1061 Experiment +1105.1072 Computation and Language +1105.1161 +1105.1164 Solar and Stellar Astrophysics +1105.1167 Mesoscale and Nanoscale Physics +1105.1173 Numerical Analysis +1105.1174 Probability +1105.1176 Number Theory +1105.1177 Number Theory +1105.1185 Numerical Analysis +1105.1186 Robotics +1105.1187 Information Theory +1105.1191 Software Engineering +1105.1196 Analysis of PDEs +1105.1200 Differential Geometry +1105.1204 +1105.1210 Computational Physics +1105.1217 Quantitative Methods +1105.1223 Number Theory +1105.1226 Computation and Language +1105.1228 Numerical Analysis +1105.1230 Number Theory +1105.1235 Mesoscale and Nanoscale Physics +1105.1238 +1105.1240 Functional Analysis +1105.1242 Information Theory +1105.1245 Instrumentation and Methods for Astrophysics +1105.1246 Information Theory +1105.1247 Artificial Intelligence +1105.1248 Distributed, Parallel, and Cluster Computing +1105.1250 Logic +1105.1254 Representation Theory +1105.1257 Probability +1105.1260 Chemical Physics +1105.1261 Computational Engineering, Finance, and Science +1105.1266 Popular Physics +1105.1267 Pricing of Securities +1105.1274 +1105.1279 Information Theory +1105.1297 Group Theory +1105.1301 Group Theory +1105.1302 Quantitative Methods +1105.1304 Statistics Theory +1105.1305 Number Theory +1105.1307 Number Theory +1105.1313 Number Theory +1105.1316 Statistical Mechanics +1105.1320 Statistics Theory +1105.1328 Networking and Internet Architecture +1105.1329 Functional Analysis +1105.1347 Networking and Internet Architecture +1105.1356 Computational Physics +1105.1368 Strongly Correlated Electrons +astro-ph/0003399 +astro-ph/9807197 +math-ph/0404060 +math/0601338 Dynamical Systems +0810.3400 +1102.0838 General Physics +1102.1526 General Physics +1102.1527 General Physics +1107.0509 Number Theory +1107.1115 Quantum Algebra +1107.2667 +1107.2689 Spectral Theory +1107.2706 Dynamical Systems +1107.2742 +1107.2784 High Energy Astrophysical Phenomena +1107.2817 Metric Geometry +1107.2823 Metric Geometry +cond-mat/9807207 Statistical Mechanics +0704.3804 Superconductivity +0711.2833 Algebraic Geometry +0805.0538 Mesoscale and Nanoscale Physics +0812.0609 Rings and Algebras +0904.1322 +0906.2158 Complex Variables +0906.2943 Complex Variables +0906.3645 Group Theory +0907.5588 +0909.2725 Algebraic Geometry +0911.0984 Other Condensed Matter +1005.1197 Complex Variables +1005.4151 Representation Theory +1008.1485 Algebraic Geometry +1009.5123 Functional Analysis +1010.2055 +1011.3610 +1011.5573 Adaptation and Self-Organizing Systems +1101.0306 Information Theory +1102.0942 Dynamical Systems +1102.1269 Mesoscale and Nanoscale Physics +1102.3305 Disordered Systems and Neural Networks +1103.1395 Superconductivity +1104.2931 Strongly Correlated Electrons +1105.4859 Exactly Solvable and Integrable Systems +1106.4122 +1106.4269 Phenomenology +1106.5412 +1107.2642 Cosmology and Nongalactic Astrophysics +1108.0361 Phenomenology +1108.1556 Materials Science +1108.2487 Optics +1108.4188 Spectral Theory +1109.1532 +1109.2865 Materials Science +1109.3299 Instrumentation and Detectors +1109.4990 Mesoscale and Nanoscale Physics +1109.5044 Theory +1109.6125 Cosmology and Nongalactic Astrophysics +1109.6906 +1110.0727 +1110.0742 +1110.1259 Disordered Systems and Neural Networks +1110.3679 Quantum Gases +1110.6635 Geophysics +1111.0526 Analysis of PDEs +1111.5595 Physics and Society +1111.5878 +1111.6466 Probability +1112.0208 Number Theory +1112.1628 Probability +1112.2487 Spectral Theory +1112.2609 Cosmology and Nongalactic Astrophysics +1112.3188 Phenomenology +1112.3786 Programming Languages +1112.3798 +1112.4183 +1112.4263 Numerical Analysis +1112.4930 Operator Algebras +1112.5027 Phenomenology +1112.5234 Differential Geometry +1112.5463 Neurons and Cognition +1112.5465 Superconductivity +1112.5477 Phenomenology +1112.5478 Classical Analysis and ODEs +1112.5480 Numerical Analysis +1112.5486 Number Theory +1112.5488 +1112.5493 Information Theory +1112.5496 Quantum Gases +1112.5500 Numerical Analysis +1112.5504 Analysis of PDEs +1112.5509 +1112.5510 Methodology +1112.5513 +1112.5515 Analysis of PDEs +1112.5519 General Physics +1112.5525 General Physics +1112.5526 Biological Physics +1112.5532 Probability +1112.5538 Spectral Theory +1112.5539 Solar and Stellar Astrophysics +1112.5540 Phenomenology +1112.5549 Physics and Society +1112.5555 Optimization and Control +1112.5562 Mesoscale and Nanoscale Physics +1112.5563 Category Theory +1112.5566 Statistical Mechanics +1112.5567 +1112.5569 Operator Algebras +1112.5572 Geophysics +1112.5573 Complex Variables +1112.5576 Phenomenology +1112.5578 Algebraic Geometry +1112.5582 Methodology +1112.5587 Strongly Correlated Electrons +1112.5590 Operator Algebras +1112.5592 Geophysics +1112.5593 Physics Education +1112.5594 Emerging Technologies +1112.5602 Chaotic Dynamics +1112.5605 Cryptography and Security +1112.5608 Cryptography and Security +1112.5612 Materials Science +1112.5615 Analysis of PDEs +1112.5621 Cryptography and Security +1112.5627 Machine Learning +1112.5630 Information Theory +1112.5633 Chaotic Dynamics +1112.5635 Statistics Theory +1112.5637 Theory +1112.5638 Computer Vision and Pattern Recognition +1112.5644 Chemical Physics +1112.5645 Number Theory +1112.5648 Phenomenology +1112.5650 Astrophysics of Galaxies +1112.5655 Optics +1112.5656 Probability +1112.5657 Functional Analysis +1112.5658 Solar and Stellar Astrophysics +1112.5659 Data Structures and Algorithms +1112.5661 Superconductivity +hep-th/0112001 Theory +math/0609699 Representation Theory +0708.2525 Quantum Algebra +0804.0686 +0805.4092 +0806.1091 +0806.2224 Probability +0807.0103 +0809.1214 +0810.1879 +0811.1415 +0811.1633 Mesoscale and Nanoscale Physics +0811.1766 Combinatorics +0811.2819 Differential Geometry +0811.4334 Theory +0812.0008 Theory +0812.0185 Theory +0812.0188 Theory +0812.3341 Theory +0812.3617 Theory +0812.3655 Theory +0902.1274 Algebraic Topology +0903.2731 Chaotic Dynamics +0903.4848 Numerical Analysis +0904.0307 +0904.3263 +0905.0946 Algebraic Geometry +0906.4187 +0907.3396 Chaotic Dynamics +0908.2338 Soft Condensed Matter +0909.2924 Theory +0911.1147 +1001.1935 Phenomenology +1003.4575 +1003.4735 Strongly Correlated Electrons +1004.1346 Classical Physics +1004.3737 +1004.4876 +1004.5265 Machine Learning +1005.1018 Category Theory +1005.4719 Theory +1006.0192 +1006.2845 Phenomenology +1007.2096 Statistics Theory +1007.2696 Theory +1007.4044 +1007.4214 Strongly Correlated Electrons +1008.0426 Cosmology and Nongalactic Astrophysics +1008.2761 +1008.3410 Theory +1008.4189 Theory +1008.4334 Fluid Dynamics +1008.4866 Cosmology and Nongalactic Astrophysics +1009.0504 +1009.3839 Phenomenology +1009.5165 Statistics Theory +1010.0587 Phenomenology +1010.3121 Phenomenology +1010.4157 Theory +1010.5357 Mesoscale and Nanoscale Physics +1011.1385 +1011.2210 +1011.2546 +1011.2694 Soft Condensed Matter +1011.3199 Phenomenology +1011.3533 Theory +1011.3732 +1011.4185 Strongly Correlated Electrons +1011.4665 Strongly Correlated Electrons +1012.2427 Algebraic Geometry +1012.2567 Theory +1012.2607 Cosmology and Nongalactic Astrophysics +1012.3293 Theory +1012.3772 High Energy Astrophysical Phenomena +1012.3870 Category Theory +1012.4020 Theory +1012.4464 +1012.5172 +1101.0034 Experiment +1101.0698 Cryptography and Security +1101.1711 +1101.3598 Phenomenology +1102.0053 +1102.0138 Theory +1102.0185 Strongly Correlated Electrons +1102.0227 Cosmology and Nongalactic Astrophysics +1102.0934 Theory +1102.1828 Mesoscale and Nanoscale Physics +1102.2555 +1102.3423 Theory +1102.4299 Lattice +1102.4548 Machine Learning +1103.0188 +1103.1235 Algebraic Geometry +1103.1842 Strongly Correlated Electrons +1103.1900 +1103.2434 Phenomenology +1103.2871 Soft Condensed Matter +1103.4605 +1103.5543 +1104.0117 Phenomenology +1104.0255 +1104.0468 Theory +1104.0798 Phenomenology +1104.1408 Information Theory +1104.1569 +1104.1865 +1104.2199 Classical Analysis and ODEs +1104.2920 Phenomenology +1104.3327 Phenomenology +1104.3421 Computational Complexity +1104.3512 Phenomenology +1104.4177 Theory +1104.4538 Solar and Stellar Astrophysics +1104.5329 Phenomenology +1105.1064 Phenomenology +1105.1617 Materials Science +1105.1637 Phenomenology +1105.2491 Computer Vision and Pattern Recognition +1105.3191 +1105.3590 +1105.3934 Phenomenology +1105.4952 Statistical Mechanics +1106.0181 Disordered Systems and Neural Networks +1106.0794 Strongly Correlated Electrons +1106.1489 Solar and Stellar Astrophysics +1106.3931 Analysis of PDEs +1106.3977 Computational Engineering, Finance, and Science +1106.4304 +1106.4313 Cosmology and Nongalactic Astrophysics +1106.4402 Chemical Physics +1106.4547 Astrophysics of Galaxies +1106.4550 Theory +1106.4557 Artificial Intelligence +1106.4561 Artificial Intelligence +1106.4565 Solar and Stellar Astrophysics +1106.4567 Solar and Stellar Astrophysics +1106.4569 Artificial Intelligence +1106.4570 Computer Science and Game Theory +1106.4571 Computation and Language +1106.4572 Artificial Intelligence +1106.4573 Artificial Intelligence +1106.4574 Learning +1106.4575 Artificial Intelligence +1106.4576 Artificial Intelligence +1106.4577 Multiagent Systems +1106.4578 Artificial Intelligence +1106.4579 Discrete Mathematics +1106.4584 Superconductivity +1106.4587 Data Structures and Algorithms +1106.4591 Analysis of PDEs +1106.4593 Algebraic Topology +1106.4596 Differential Geometry +1106.4600 Quantitative Methods +1106.4602 Group Theory +1106.4603 +1106.4618 Mesoscale and Nanoscale Physics +1106.4622 Analysis of PDEs +1106.4623 Differential Geometry +1106.4624 Phenomenology +1106.4625 High Energy Astrophysical Phenomena +1106.4626 +1106.4632 Robotics +1106.4635 Logic +1106.4637 Group Theory +1106.4643 Fluid Dynamics +1106.4644 Materials Science +1106.4646 Metric Geometry +1106.4650 Representation Theory +1106.4653 Materials Science +1106.4654 +1106.4655 Dynamical Systems +1106.4664 Statistical Mechanics +1106.4665 Geophysics +1106.4673 Functional Analysis +1106.4676 General Topology +1106.4677 Data Structures and Algorithms +1106.4679 Geophysics +1106.4680 Geophysics +1106.4687 Statistical Mechanics +1106.4688 +1106.4691 Phenomenology +1106.4692 Cryptography and Security +1106.4693 Combinatorics +1106.4696 Analysis of PDEs +1106.4697 Phenomenology +1106.4700 Software Engineering +1106.4701 Cellular Automata and Lattice Gases +1106.4703 Differential Geometry +1106.4715 Statistical Mechanics +1106.4716 Soft Condensed Matter +1106.4719 Computational Complexity +1106.4723 Networking and Internet Architecture +1106.4726 Instrumentation and Methods for Astrophysics +1106.4728 Information Theory +1106.4729 Machine Learning +1106.4730 Computational Finance +1106.4732 Number Theory +1106.4733 Algebraic Geometry +1106.4742 Strongly Correlated Electrons +1106.4745 Combinatorics +1106.4747 Classical Analysis and ODEs +1106.4748 Disordered Systems and Neural Networks +1106.4759 +1106.4760 Earth and Planetary Astrophysics +1106.4763 Statistics Theory +1106.4766 Rings and Algebras +1106.4770 Commutative Algebra +1106.4776 Analysis of PDEs +1106.4780 Astrophysics of Galaxies +1106.4783 Populations and Evolution +1106.4787 Algebraic Topology +1106.4797 Classical Analysis and ODEs +1106.4805 +1106.4809 Solar and Stellar Astrophysics +1106.4811 Analysis of PDEs +chao-dyn/9909018 Chaotic Dynamics +cond-mat/0211044 Statistical Mechanics +cond-mat/9701076 Statistical Mechanics +cond-mat/9908253 Statistical Mechanics +gr-qc/0209090 +gr-qc/0612182 +hep-ph/0205255 Phenomenology +hep-ph/0208149 Phenomenology +hep-ph/0305288 Phenomenology +hep-ph/0602064 Phenomenology +hep-ph/0603111 Phenomenology +hep-th/0702125 Theory +physics/0509150 Physics and Society +quant-ph/0203033 +0704.0400 Exactly Solvable and Integrable Systems +0704.1645 +0706.0919 Phenomenology +0706.4263 Experiment +0707.0636 Phenomenology +0707.0841 Phenomenology +0707.1007 Experiment +0707.1115 Experiment +0707.2046 Phenomenology +0708.0855 Phenomenology +0708.4390 Phenomenology +0709.1368 Phenomenology +0709.3035 Phenomenology +0709.3213 Experiment +0710.0646 Lattice +0710.1121 Lattice +0710.1782 +0711.3069 Phenomenology +0712.0493 +0712.2212 Phenomenology +0801.3844 +0802.3251 Phenomenology +0802.3858 Phenomenology +0803.0154 Phenomenology +0804.2975 Phenomenology +0805.2525 Phenomenology +0806.4001 Phenomenology +0809.2153 Phenomenology +0811.0486 Phenomenology +0812.2196 Phenomenology +0901.0876 Computation +0901.0885 Combinatorics +0901.1272 Phenomenology +0902.3645 Phenomenology +0902.4271 +0903.0799 Analysis of PDEs +0904.1225 Operator Algebras +0905.0925 Biological Physics +0905.1639 Earth and Planetary Astrophysics +0907.4287 +0908.0194 Phenomenology +0908.1921 +0908.2962 Astrophysics of Galaxies +0908.3742 Astrophysics of Galaxies +0910.0180 Theory +0910.3803 +0911.1461 Superconductivity +0911.1526 Materials Science +1001.1769 Cosmology and Nongalactic Astrophysics +1001.2364 Theory +1002.1527 Number Theory +1002.3139 +1003.0720 +1003.1937 Lattice +1004.0579 Rings and Algebras +1004.0752 Theory +1004.1880 Phenomenology +1005.1564 Combinatorics +1005.2913 Molecular Networks +1006.3604 Theory +1006.5187 Soft Condensed Matter +1007.0467 Discrete Mathematics +1007.1512 Mesoscale and Nanoscale Physics +1007.2648 +1007.4170 Phenomenology +1007.4865 Phenomenology +1007.5272 Phenomenology +1008.0992 Cosmology and Nongalactic Astrophysics +1008.1016 Theory +1008.1313 Phenomenology +1008.1862 +1008.2126 Probability +1008.2621 +1008.3106 Phenomenology +1008.3116 Phenomenology +1008.3298 +1008.3385 Phenomenology +1008.4415 +1008.4793 +1008.4926 +1009.2313 Phenomenology +1009.2338 Phenomenology +1009.2551 Strongly Correlated Electrons +1009.2725 Theory +1009.3402 +1009.3528 Theory +1009.4118 Theory +1009.4603 Theory +1009.4854 +1009.4932 High Energy Astrophysical Phenomena +1009.5130 Phenomenology +1009.5353 Phenomenology +1009.5660 Theory +1009.6013 +1009.6136 Phenomenology +1010.0091 Cosmology and Nongalactic Astrophysics +1010.0629 Probability +1010.0894 Phenomenology +1010.1662 Theory +1010.2023 Phenomenology +1010.2400 Experiment +1010.3238 Theory +1010.3552 +1010.4099 Theory +1010.4172 Phenomenology +1010.4485 Phenomenology +1010.4874 Phenomenology +1010.5043 Probability +1010.5108 Phenomenology +1010.5718 Lattice +1010.5733 Earth and Planetary Astrophysics +1010.6140 Lattice +1010.6150 Lattice +1011.0001 Phenomenology +1011.0008 Theory +1011.0076 Number Theory +1011.0292 Theory +1011.0312 Quantum Gases +1011.0345 Lattice +1011.0714 Theory +1011.0884 Superconductivity +1011.0958 Plasma Physics +1011.1253 Methodology +1011.1857 Theory +1011.1918 Theory +1011.2010 Representation Theory +1011.2293 +1011.2636 Theory +1011.2915 Cosmology and Nongalactic Astrophysics +1011.3604 Cosmology and Nongalactic Astrophysics +1011.4219 +1011.4326 Mesoscale and Nanoscale Physics +1011.4514 Phenomenology +1011.4810 Numerical Analysis +1011.5673 Theory +1011.5797 +1011.5878 Statistical Mechanics +1011.5893 Cosmology and Nongalactic Astrophysics +1011.5950 Physics and Society +1011.6257 +1012.0077 +1012.0119 +1012.1520 Statistical Mechanics +1012.1833 Cosmology and Nongalactic Astrophysics +1012.1998 Theory +1012.2028 +1012.2072 Phenomenology +1012.2387 Theory +1012.3021 Instrumentation and Methods for Astrophysics +1012.3093 Experiment +1012.3288 Phenomenology +1012.3751 Theory +1012.4637 +1012.5098 Phenomenology +1012.5111 +1012.5182 Theory +1012.5273 Theory +1012.5761 Quantum Gases +1101.3894 Functional Analysis +1101.4729 Phenomenology +1101.5034 +1102.0407 Soft Condensed Matter +1102.0907 +1102.1496 Group Theory +1102.1777 Cosmology and Nongalactic Astrophysics +1102.1818 Cosmology and Nongalactic Astrophysics +1102.3019 +1102.3434 +1102.3913 Cosmology and Nongalactic Astrophysics +1102.3921 +1102.3962 +1102.4287 Plasma Physics +1102.4402 Phenomenology +1102.5481 Theory +1103.1017 +1103.3055 Mesoscale and Nanoscale Physics +1103.3504 Phenomenology +1103.3795 Statistics Theory +1103.3868 +1103.3990 Cosmology and Nongalactic Astrophysics +1103.4005 +1103.4029 Statistics Theory +1103.4093 Cryptography and Security +1103.4135 Analysis of PDEs +1103.4142 Distributed, Parallel, and Cluster Computing +1103.4147 Astrophysics of Galaxies +1103.4157 Geometric Topology +1103.4161 +1103.4162 Materials Science +1103.4165 Differential Geometry +1103.4178 Superconductivity +1103.4189 +1103.4191 Cosmology and Nongalactic Astrophysics +1103.4193 Group Theory +1103.4194 Phenomenology +1103.4195 Data Structures and Algorithms +1103.4196 Computer Science and Game Theory +1103.4198 Optimization and Control +1103.4200 Rings and Algebras +1103.4204 Learning +1103.4206 Statistical Mechanics +1103.4207 Representation Theory +1103.4208 Probability +1103.4210 Exactly Solvable and Integrable Systems +1103.4216 Combinatorics +1103.4218 Digital Libraries +1103.4219 General Physics +1103.4223 Information Theory +1103.4232 Quantum Gases +1103.4234 Soft Condensed Matter +1103.4242 +1103.4243 Optics +1103.4244 Number Theory +1103.4251 Probability +1103.4254 Algebraic Geometry +1103.4259 Functional Analysis +1103.4260 Materials Science +1103.4267 +1103.4284 Cosmology and Nongalactic Astrophysics +1103.4288 History and Overview +1103.4289 General Mathematics +1103.4290 Optics +1103.4298 Classical Analysis and ODEs +1103.4303 Mesoscale and Nanoscale Physics +1103.4306 Probability +1103.4312 High Energy Astrophysical Phenomena +1103.4317 Combinatorics +1103.4319 Strongly Correlated Electrons +1103.4326 Spectral Theory +1103.4327 Solar and Stellar Astrophysics +1103.4336 Soft Condensed Matter +1103.4337 Differential Geometry +1103.4338 Soft Condensed Matter +1103.4341 Combinatorics +1103.4343 Computational Geometry +1103.4345 Mesoscale and Nanoscale Physics +1103.4351 Group Theory +1103.4352 Algebraic Geometry +1103.4354 Number Theory +1103.4359 General Physics +cond-mat/0010143 Disordered Systems and Neural Networks +cond-mat/9810369 +hep-ex/0004021 Experiment +hep-ex/0007033 Experiment +hep-ex/0010071 Experiment +hep-ex/0011003 Experiment +hep-ex/0011078 Experiment +hep-ex/0211012 Experiment +hep-ex/0211048 Experiment +hep-ex/0302037 Experiment +hep-ex/0304010 Experiment +hep-ex/0407021 Experiment +hep-ex/0501017 Experiment +hep-ex/0501043 Experiment +hep-ex/0506027 Experiment +hep-ex/0511043 Experiment +hep-ex/9901035 Experiment +hep-ex/9901036 Experiment +hep-ex/9910022 Experiment +hep-ex/9912026 Experiment +hep-lat/0409090 Lattice +hep-lat/0509115 Lattice +hep-lat/0511028 Lattice +hep-lat/0610065 Lattice +hep-lat/9902025 Lattice +hep-ph/0001083 Phenomenology +hep-ph/0001252 Phenomenology +hep-ph/0001290 Phenomenology +hep-ph/0002127 Phenomenology +hep-ph/0002176 Phenomenology +hep-ph/0002243 Phenomenology +hep-ph/0003178 Phenomenology +hep-ph/0003225 Phenomenology +hep-ph/0004022 Phenomenology +hep-ph/0004139 Phenomenology +hep-ph/0004203 Phenomenology +hep-ph/0004262 Phenomenology +hep-ph/0004263 Phenomenology +hep-ph/0004265 Phenomenology +hep-ph/0005018 Phenomenology +hep-ph/0005019 Phenomenology +hep-ph/0005082 Phenomenology +hep-ph/0005240 Phenomenology +hep-ph/0005269 Phenomenology +hep-ph/0006109 Phenomenology +hep-ph/0006132 Phenomenology +hep-ph/0007006 Phenomenology +hep-ph/0007083 Phenomenology +hep-ph/0007126 Phenomenology +hep-ph/0007162 Phenomenology +hep-ph/0007169 Phenomenology +hep-ph/0007190 Phenomenology +hep-ph/0007220 Phenomenology +hep-ph/0007286 Phenomenology +hep-ph/0007287 Phenomenology +hep-ph/0007292 Phenomenology +hep-ph/0008009 Phenomenology +hep-ph/0008017 Phenomenology +hep-ph/0008018 Phenomenology +hep-ph/0008092 Phenomenology +hep-ph/0008097 Phenomenology +hep-ph/0008156 Phenomenology +hep-ph/0008198 Phenomenology +hep-ph/0008210 Phenomenology +hep-ph/0008302 Phenomenology +hep-ph/0008316 Phenomenology +hep-ph/0009224 Phenomenology +hep-ph/0009252 Phenomenology +hep-ph/0009279 Phenomenology +hep-ph/0010326 Phenomenology +hep-ph/0011051 Phenomenology +hep-ph/0011077 Phenomenology +hep-ph/0011173 Phenomenology +hep-ph/0011183 Phenomenology +hep-ph/0011321 Phenomenology +hep-ph/0011388 Phenomenology +hep-ph/0012027 Phenomenology +hep-ph/0012092 Phenomenology +hep-ph/0012096 Phenomenology +hep-ph/0012110 Phenomenology +hep-ph/0012166 Phenomenology +hep-ph/0012197 Phenomenology +hep-ph/0101322 Phenomenology +hep-ph/0101333 Phenomenology +hep-ph/0102150 Phenomenology +hep-ph/0102160 Phenomenology +hep-ph/0102198 Phenomenology +hep-ph/0103036 Phenomenology +hep-ph/0103081 Phenomenology +hep-ph/0103134 Phenomenology +hep-ph/0103194 Phenomenology +hep-ph/0103244 Phenomenology +hep-ph/0104044 Phenomenology +hep-ph/0104284 Phenomenology +hep-ph/0104303 Phenomenology +hep-ph/0105005 Phenomenology +hep-ph/0105058 Phenomenology +hep-ph/0105097 Phenomenology +hep-ph/0105210 Phenomenology +hep-ph/0106001 Phenomenology +hep-ph/0106138 Phenomenology +hep-ph/0106156 Phenomenology +hep-ph/0106354 Phenomenology +hep-ph/0107026 Phenomenology +hep-ph/0107175 Phenomenology +hep-ph/0108037 Phenomenology +hep-ph/0109096 Phenomenology +hep-ph/0109149 Phenomenology +hep-ph/0109189 Phenomenology +hep-ph/0109250 Phenomenology +hep-ph/0110215 Phenomenology +hep-ph/0110246 Phenomenology +hep-ph/0110376 Phenomenology +hep-ph/0111014 Phenomenology +hep-ph/0111094 Phenomenology +hep-ph/0111246 Phenomenology +hep-ph/0111463 Phenomenology +hep-ph/0112199 Phenomenology +hep-ph/0112305 Phenomenology +hep-ph/0112330 Phenomenology +hep-ph/0112361 Phenomenology +hep-ph/0201027 Phenomenology +hep-ph/0201062 Phenomenology +hep-ph/0201112 Phenomenology +hep-ph/0201234 Phenomenology +hep-ph/0201289 Phenomenology +hep-ph/0202120 Phenomenology +hep-ph/0202241 Phenomenology +hep-ph/0203045 Phenomenology +hep-ph/0203054 Phenomenology +hep-ph/0204101 Phenomenology +hep-ph/0204210 Phenomenology +hep-ph/0204222 Phenomenology +hep-ph/0204225 Phenomenology +hep-ph/0204303 Phenomenology +hep-ph/0204332 Phenomenology +hep-ph/0205155 Phenomenology +hep-ph/0205176 Phenomenology +hep-ph/0205254 Phenomenology +hep-ph/0205287 Phenomenology +hep-ph/0205297 Phenomenology +hep-ph/0206014 Phenomenology +hep-ph/0206035 Phenomenology +hep-ph/0206049 Phenomenology +hep-ph/0206058 Phenomenology +hep-ph/0206093 Phenomenology +hep-ph/0206140 Phenomenology +hep-ph/0206191 Phenomenology +hep-ph/0206226 Phenomenology +hep-ph/0206242 Phenomenology +hep-ph/0207290 Phenomenology +hep-ph/0207318 Phenomenology +hep-ph/0208078 Phenomenology +hep-ph/0208112 Phenomenology +hep-ph/0208147 Phenomenology +hep-ph/0208159 Phenomenology +hep-ph/0208205 Phenomenology +hep-ph/0208212 Phenomenology +hep-ph/0209125 Phenomenology +hep-ph/0209133 Phenomenology +hep-ph/0209185 Phenomenology +hep-ph/0209189 Phenomenology +hep-ph/0209331 Phenomenology +hep-ph/0210264 Phenomenology +hep-ph/0210351 Phenomenology +hep-ph/0210368 Phenomenology +hep-ph/0210375 Phenomenology +hep-ph/0210381 Phenomenology +hep-ph/0211077 Phenomenology +hep-ph/0211295 Phenomenology +hep-ph/0211343 Phenomenology +hep-ph/0211432 Phenomenology +hep-ph/0212008 Phenomenology +hep-ph/0212091 Phenomenology +hep-ph/0212291 Phenomenology +hep-ph/0301058 Phenomenology +hep-ph/0301115 Phenomenology +hep-ph/0301218 Phenomenology +hep-ph/0301246 Phenomenology +hep-ph/0302009 Phenomenology +hep-ph/0302062 Phenomenology +hep-ph/0302095 Phenomenology +hep-ph/0302140 Phenomenology +hep-ph/0302171 Phenomenology +hep-ph/0303060 Phenomenology +hep-ph/0304017 Phenomenology +hep-ph/0304053 Phenomenology +hep-ph/0304101 Phenomenology +hep-ph/0304114 Phenomenology +hep-ph/0304235 Phenomenology +hep-ph/0304239 Phenomenology +hep-ph/0304303 Phenomenology +hep-ph/0305289 Phenomenology +hep-ph/0306086 Phenomenology +hep-ph/0306181 Phenomenology +hep-ph/0306278 Phenomenology +hep-ph/0306306 Phenomenology +hep-ph/0307184 Phenomenology +hep-ph/0307318 Phenomenology +hep-ph/0307355 Phenomenology +hep-ph/0308032 Phenomenology +hep-ph/0308121 Phenomenology +hep-ph/0308132 Phenomenology +hep-ph/0308149 Phenomenology +hep-ph/0308161 Phenomenology +hep-ph/0308164 Phenomenology +hep-ph/0308198 Phenomenology +hep-ph/0309007 Phenomenology +hep-ph/0309120 Phenomenology +hep-ph/0309121 Phenomenology +hep-ph/0310243 Phenomenology +hep-ph/0310295 Phenomenology +hep-ph/0310343 Phenomenology +hep-ph/0311074 Phenomenology +hep-ph/0311149 Phenomenology +hep-ph/0312118 Phenomenology +hep-ph/0312143 Phenomenology +hep-ph/0401026 Phenomenology +hep-ph/0402156 Phenomenology +hep-ph/0402219 Phenomenology +hep-ph/0402270 Phenomenology +hep-ph/0403280 Phenomenology +hep-ph/0404005 Phenomenology +hep-ph/0404057 Phenomenology +hep-ph/0404158 Phenomenology +hep-ph/0405119 Phenomenology +hep-ph/0405130 Phenomenology +hep-ph/0405191 Phenomenology +hep-ph/0405208 Phenomenology +hep-ph/0406013 Phenomenology +hep-ph/0406121 Phenomenology +hep-ph/0406228 Phenomenology +hep-ph/0407014 Phenomenology +hep-ph/0407028 Phenomenology +hep-ph/0408196 Phenomenology +hep-ph/0408280 Phenomenology +hep-ph/0409040 Phenomenology +hep-ph/0409106 Phenomenology +hep-ph/0409280 Phenomenology +hep-ph/0409298 Phenomenology +hep-ph/0410020 Phenomenology +hep-ph/0410181 Phenomenology +hep-ph/0410185 Phenomenology +hep-ph/0410186 Phenomenology +hep-ph/0410230 Phenomenology +hep-ph/0411020 Phenomenology +hep-ph/0411034 Phenomenology +hep-ph/0411053 Phenomenology +hep-ph/0411109 Phenomenology +hep-ph/0411188 Phenomenology +hep-ph/0412088 Phenomenology +hep-ph/0412146 Phenomenology +hep-ph/0412190 Phenomenology +hep-ph/0412349 Phenomenology +hep-ph/0501048 Phenomenology +hep-ph/0501145 Phenomenology +hep-ph/0501154 Phenomenology +hep-ph/0502120 Phenomenology +hep-ph/0504032 Phenomenology +hep-ph/0504230 Phenomenology +hep-ph/0506003 Phenomenology +hep-ph/0506172 Phenomenology +hep-ph/0506197 Phenomenology +hep-ph/0507052 Phenomenology +hep-ph/0507135 Phenomenology +hep-ph/0507243 Phenomenology +hep-ph/0508159 Phenomenology +hep-ph/0508205 Phenomenology +hep-ph/0509211 Phenomenology +hep-ph/0509256 Phenomenology +hep-ph/0509335 Phenomenology +hep-ph/0510058 Phenomenology +hep-ph/0510305 Phenomenology +hep-ph/0511073 Phenomenology +hep-ph/0511100 Phenomenology +hep-ph/0511129 Phenomenology +hep-ph/0511199 Phenomenology +hep-ph/0512135 Phenomenology +hep-ph/0603017 Phenomenology +hep-ph/0603232 Phenomenology +hep-ph/0605028 Phenomenology +hep-ph/0605152 Phenomenology +hep-ph/0605277 Phenomenology +hep-ph/0606122 Phenomenology +hep-ph/0606194 Phenomenology +hep-ph/0606294 Phenomenology +hep-ph/0607189 Phenomenology +hep-ph/0607241 Phenomenology +hep-ph/0607251 Phenomenology +hep-ph/0607282 Phenomenology +hep-ph/0607347 Phenomenology +hep-ph/0608225 Phenomenology +hep-ph/0608245 Phenomenology +hep-ph/0609124 Phenomenology +hep-ph/0609128 Phenomenology +hep-ph/0609276 Phenomenology +hep-ph/0610109 Phenomenology +hep-ph/0611174 Phenomenology +hep-ph/0702044 Phenomenology +hep-ph/0702152 Phenomenology +hep-ph/0703112 Phenomenology +hep-ph/0703117 Phenomenology +hep-ph/9811496 Phenomenology +hep-ph/9812435 Phenomenology +hep-ph/9812514 Phenomenology +hep-ph/9901205 Phenomenology +hep-ph/9901265 Phenomenology +hep-ph/9901328 Phenomenology +hep-ph/9901348 Phenomenology +hep-ph/9901387 Phenomenology +hep-ph/9901411 Phenomenology +hep-ph/9901420 Phenomenology +hep-ph/9903202 Phenomenology +hep-ph/9903280 Phenomenology +hep-ph/9903346 Phenomenology +hep-ph/9903394 Phenomenology +hep-ph/9903403 Phenomenology +hep-ph/9904324 Phenomenology +hep-ph/9904363 Phenomenology +hep-ph/9904401 Phenomenology +hep-ph/9904417 Phenomenology +hep-ph/9904471 Phenomenology +hep-ph/9905203 Phenomenology +hep-ph/9905209 Phenomenology +hep-ph/9905353 Phenomenology +hep-ph/9905359 Phenomenology +hep-ph/9905403 Phenomenology +hep-ph/9905515 Phenomenology +hep-ph/9905542 Phenomenology +hep-ph/9906203 Phenomenology +hep-ph/9906208 Phenomenology +hep-ph/9906502 Phenomenology +hep-ph/9907231 Phenomenology +hep-ph/9907376 Phenomenology +hep-ph/9907444 Phenomenology +hep-ph/9908203 Phenomenology +hep-ph/9908238 Phenomenology +hep-ph/9908336 Phenomenology +hep-ph/9908340 Phenomenology +hep-ph/9908387 Phenomenology +hep-ph/9908447 Phenomenology +hep-ph/9908493 Phenomenology +hep-ph/9908520 Phenomenology +hep-ph/9909221 Phenomenology +hep-ph/9909423 Phenomenology +hep-ph/9910206 Phenomenology +hep-ph/9910221 Phenomenology +hep-ph/9910395 Phenomenology +hep-ph/9910501 Phenomenology +hep-ph/9911313 Phenomenology +hep-ph/9911404 Phenomenology +hep-ph/9911419 Phenomenology +hep-ph/9911436 Phenomenology +hep-ph/9912232 Phenomenology +hep-ph/9912319 Phenomenology +hep-ph/9912320 Phenomenology +hep-ph/9912411 Phenomenology +hep-ph/9912430 Phenomenology +hep-ph/9912525 Phenomenology +hep-th/0208178 Theory +hep-th/0211032 Theory +hep-th/0212269 Theory +hep-th/0303060 Theory +hep-th/0306139 Theory +hep-th/0308074 Theory +hep-th/0310252 Theory +hep-th/0310292 Theory +hep-th/0405001 Theory +hep-th/0405057 Theory +hep-th/0407277 Theory +hep-th/0409054 Theory +hep-th/0409147 Theory +hep-th/0410253 Theory +hep-th/0412029 Theory +hep-th/0502226 Theory +hep-th/0503200 Theory +hep-th/0505187 Theory +hep-th/0506243 Theory +hep-th/0510209 Theory +hep-th/0511013 Theory +hep-th/0609044 Theory +math/0606299 Differential Geometry +nucl-ex/0006006 +nucl-ex/0306005 +nucl-ex/0506009 +nucl-ex/0512044 +nucl-ex/0601012 +nucl-th/0106040 +nucl-th/0203075 +nucl-th/0206006 +nucl-th/0406074 +nucl-th/0608038 +nucl-th/0703045 +0706.2919 +0806.1731 +0809.2041 +0809.2045 +0809.2873 +0809.4231 +0810.0881 Number Theory +0811.0009 Phenomenology +0812.3857 General Physics +0901.2963 Theory +0903.5202 Theory +0905.4220 Theory +0906.3879 Combinatorics +0906.5284 Number Theory +0907.2149 Theory +0907.5375 Classical Physics +0910.1735 +0910.2591 Analysis of PDEs +0910.3653 Phenomenology +0910.4951 Theory +0910.5401 Theory +0911.2727 Theory +0911.3461 Theory +0911.4053 Mesoscale and Nanoscale Physics +0912.2653 Phenomenology +0912.4326 Theory +0912.4856 Optics +1001.0673 +1002.0372 Number Theory +1002.2762 Representation Theory +1002.4886 Theory +1003.0271 +1003.4684 Symplectic Geometry +1003.5607 Mesoscale and Nanoscale Physics +1004.0440 Geometric Topology +1004.0480 Computational Physics +1004.3558 Theory +1005.5022 Phenomenology +1005.5447 +1006.0640 +1006.2279 Solar and Stellar Astrophysics +1007.2354 Information Theory +1007.2802 Analysis of PDEs +1007.3778 Astrophysics of Galaxies +1007.4632 +1008.0355 Instrumentation and Detectors +1008.3865 Materials Science +1008.4585 Astrophysics of Galaxies +1009.1701 Quantum Gases +1009.3603 Probability +1009.5643 Phenomenology +1009.6134 Networking and Internet Architecture +1010.3273 +1010.4449 Theory +1010.5594 Mesoscale and Nanoscale Physics +1011.0261 Theory +1011.1897 Theory +1011.1925 Astrophysics of Galaxies +1011.3577 Materials Science +1011.3801 Applications +1011.5068 Phenomenology +1011.5902 Optics +1011.6107 Lattice +1011.6128 +1011.6172 Lattice +1011.6178 Theory +1011.6203 Phenomenology +1011.6221 Theory +1011.6339 Theory +1012.1461 +1012.1831 Mesoscale and Nanoscale Physics +1012.3842 Phenomenology +1101.0527 Strongly Correlated Electrons +1102.0691 Phenomenology +1102.0940 +1102.3133 Phenomenology +1102.3686 Phenomenology +1102.4737 Probability +1103.0042 Theory +1103.0360 Materials Science +1103.0481 Phenomenology +1103.0824 +1103.1300 Superconductivity +1103.1307 Phenomenology +1103.3233 Experiment +1103.3307 Instrumentation and Detectors +1103.3409 Theory +1103.4414 Plasma Physics +1103.5152 Phenomenology +1104.0344 Experiment +1104.0451 +1104.0788 Other Condensed Matter +1104.1353 +1104.2343 Mesoscale and Nanoscale Physics +1104.3133 Mesoscale and Nanoscale Physics +1104.3272 Materials Science +1104.3337 Cosmology and Nongalactic Astrophysics +1104.3533 Combinatorics +1104.3974 Phenomenology +1104.4730 Theory +1104.5017 Strongly Correlated Electrons +1104.5305 Phenomenology +1104.5384 Systems and Control +1105.0922 Cosmology and Nongalactic Astrophysics +1105.1281 Superconductivity +1105.1359 Cosmology and Nongalactic Astrophysics +1105.1676 Phenomenology +1105.1916 Superconductivity +1105.2495 Theory +1105.5846 Atomic Physics +1106.0363 +1106.0370 Solar and Stellar Astrophysics +1106.0682 Quantum Gases +1106.1787 Phenomenology +1106.1863 +1106.3271 +1106.5498 Cosmology and Nongalactic Astrophysics +1106.5926 Phenomenology +1106.6341 Computer Vision and Pattern Recognition +1107.0825 Instrumentation and Detectors +1107.1942 Materials Science +1107.2133 Operator Algebras +1107.2568 Theory +1107.3018 Experiment +1107.3273 Materials Science +1107.3321 Phenomenology +1107.3643 Earth and Planetary Astrophysics +1107.4968 Mesoscale and Nanoscale Physics +1108.1742 Mesoscale and Nanoscale Physics +1108.2475 Computer Vision and Pattern Recognition +1108.2766 Fluid Dynamics +1108.3063 Geophysics +1108.3095 Earth and Planetary Astrophysics +1108.3097 Information Theory +1108.3098 +1108.3104 Astrophysics of Galaxies +1108.3107 Cosmology and Nongalactic Astrophysics +1108.3113 Number Theory +1108.3118 Analysis of PDEs +1108.3124 Logic in Computer Science +1108.3125 Logic in Computer Science +1108.3126 Logic in Computer Science +1108.3127 Logic in Computer Science +1108.3128 Representation Theory +1108.3131 Number Theory +1108.3133 Differential Geometry +1108.3135 +1108.3136 Statistics Theory +1108.3137 Applications +1108.3148 Mesoscale and Nanoscale Physics +1108.3157 Instrumentation and Methods for Astrophysics +1108.3158 Analysis of PDEs +1108.3161 Analysis of PDEs +1108.3165 Metric Geometry +1108.3168 Methodology +1108.3170 Representation Theory +1108.3173 Combinatorics +1108.3177 Applications +1108.3178 +1108.3187 Applications +1108.3188 Soft Condensed Matter +1108.3194 Instrumentation and Methods for Astrophysics +1108.3195 Optics +1108.3196 Other Condensed Matter +1108.3202 Group Theory +1108.3203 Commutative Algebra +1108.3207 Combinatorics +1108.3210 Differential Geometry +1108.3212 Number Theory +1108.3222 Symplectic Geometry +1108.3232 +1108.3234 Methodology +1108.3236 Instrumentation and Detectors +1108.3238 Mesoscale and Nanoscale Physics +1108.3239 Networking and Internet Architecture +1108.3240 Robotics +1108.3241 Geometric Topology +1108.3245 Quantitative Methods +1108.3246 Probability +1108.3247 Number Theory +1108.3248 Materials Science +1108.3250 Computer Vision and Pattern Recognition +1108.3251 Computer Vision and Pattern Recognition +1108.3253 General Topology +1108.3259 Machine Learning +1108.3261 Rings and Algebras +1108.3265 Programming Languages +1108.3267 Operator Algebras +1108.3268 Distributed, Parallel, and Cluster Computing +1108.3269 Theory +1108.3272 Solar and Stellar Astrophysics +1108.3278 Artificial Intelligence +1108.3279 Artificial Intelligence +1108.3281 Artificial Intelligence +1108.3284 Materials Science +1108.3285 Information Theory +1108.3287 Soft Condensed Matter +1108.3289 Earth and Planetary Astrophysics +1108.3293 Atomic Physics +1108.3294 Materials Science +1108.3295 Cosmology and Nongalactic Astrophysics +1108.3298 Learning +1108.3299 Systems and Control +1108.3310 Representation Theory +1108.3311 Rings and Algebras +1108.3312 Statistical Mechanics +1108.3313 Symplectic Geometry +1108.3316 Classical Physics +1108.3325 Statistics Theory +1108.3327 +astro-ph/0111094 +astro-ph/0205441 +astro-ph/0301240 +astro-ph/0303574 +astro-ph/0411353 +astro-ph/0701310 +astro-ph/9505059 +astro-ph/9510154 +astro-ph/9705246 +astro-ph/9809326 +cond-mat/0009080 Superconductivity +cond-mat/0104102 +cond-mat/0604624 Materials Science +cond-mat/9612069 Statistical Mechanics +cond-mat/9706166 Statistical Mechanics +cond-mat/9805223 Statistical Mechanics +gr-qc/0001030 +gr-qc/0007055 +gr-qc/0009066 +gr-qc/0012102 +gr-qc/0104030 +gr-qc/0201015 +gr-qc/0206079 +gr-qc/0210053 +gr-qc/0210060 +gr-qc/0312053 +gr-qc/0405047 +gr-qc/0505121 +gr-qc/0511124 +gr-qc/0512009 +gr-qc/9310001 +gr-qc/9407033 +gr-qc/9605042 +gr-qc/9605052 +gr-qc/9609009 +gr-qc/9610022 +gr-qc/9610053 +gr-qc/9612004 +gr-qc/9803021 +gr-qc/9807061 +gr-qc/9811013 +gr-qc/9902083 +gr-qc/9905052 +hep-ex/0206044 Experiment +hep-ex/0412033 Experiment +hep-lat/9901008 Lattice +hep-ph/0001288 Phenomenology +hep-ph/0002235 Phenomenology +hep-ph/0004104 Phenomenology +hep-ph/0006063 Phenomenology +hep-ph/0010190 Phenomenology +hep-ph/0011292 Phenomenology +hep-ph/0101093 Phenomenology +hep-ph/0101157 Phenomenology +hep-ph/0107315 Phenomenology +hep-ph/0202183 Phenomenology +hep-ph/0204205 Phenomenology +hep-ph/0205312 Phenomenology +hep-ph/0303021 Phenomenology +hep-ph/0303203 Phenomenology +hep-ph/0307036 Phenomenology +hep-ph/0308286 Phenomenology +hep-ph/0309211 Phenomenology +hep-ph/0310129 Phenomenology +hep-ph/0406014 Phenomenology +hep-ph/0408106 Phenomenology +hep-ph/0410064 Phenomenology +hep-ph/0410314 Phenomenology +hep-ph/0501220 Phenomenology +hep-ph/0502040 Phenomenology +hep-ph/0503052 Phenomenology +hep-ph/0505191 Phenomenology +hep-ph/0507124 Phenomenology +hep-ph/0510316 Phenomenology +hep-ph/9304303 Phenomenology +hep-ph/9308210 Phenomenology +hep-ph/9311299 Phenomenology +hep-ph/9403230 Phenomenology +hep-ph/9405295 Phenomenology +hep-ph/9406248 Phenomenology +hep-ph/9407336 Phenomenology +hep-ph/9408388 Phenomenology +hep-ph/9409225 Phenomenology +hep-ph/9409272 Phenomenology +hep-ph/9501273 Phenomenology +hep-ph/9505305 Phenomenology +hep-ph/9505387 Phenomenology +hep-ph/9507246 Phenomenology +hep-ph/9507413 Phenomenology +hep-ph/9605385 Phenomenology +hep-ph/9609326 Phenomenology +hep-ph/9701218 Phenomenology +hep-ph/9707542 Phenomenology +hep-ph/9710209 Phenomenology +hep-ph/9804438 Phenomenology +hep-ph/9805329 Phenomenology +hep-ph/9805368 Phenomenology +hep-ph/9807408 Phenomenology +hep-ph/9810272 Phenomenology +hep-ph/9812256 Phenomenology +hep-ph/9812357 Phenomenology +hep-ph/9812419 Phenomenology +hep-ph/9903270 Phenomenology +hep-ph/9904259 Phenomenology +hep-ph/9904404 Phenomenology +hep-ph/9906220 Phenomenology +hep-ph/9906456 Phenomenology +hep-ph/9909284 Phenomenology +hep-ph/9910489 Phenomenology +hep-ph/9911465 Phenomenology +hep-th/0005028 Theory +hep-th/0005083 Theory +hep-th/0007054 Theory +hep-th/0008163 Theory +hep-th/0011004 Theory +hep-th/0011014 Theory +hep-th/0104116 Theory +hep-th/0107187 Theory +hep-th/0110244 Theory +hep-th/0111019 Theory +hep-th/0201147 Theory +hep-th/0207198 Theory +hep-th/0304028 Theory +hep-th/0305123 Theory +hep-th/0306155 Theory +hep-th/0307168 Theory +hep-th/0404036 Theory +hep-th/0412213 Theory +hep-th/0412249 Theory +hep-th/0503212 Theory +hep-th/9308048 Theory +hep-th/9310141 Theory +hep-th/9312038 Theory +hep-th/9403179 Theory +hep-th/9404171 Theory +hep-th/9406061 Theory +hep-th/9407157 Theory +hep-th/9409023 Theory +hep-th/9409024 Theory +hep-th/9409189 Theory +hep-th/9502095 Theory +hep-th/9502141 Theory +hep-th/9505061 Theory +hep-th/9507119 Theory +hep-th/9508147 Theory +hep-th/9608083 Theory +hep-th/9805036 Theory +hep-th/9806101 Theory +hep-th/9810113 Theory +hep-th/9811012 Theory +hep-th/9907010 Theory +hep-th/9911059 Theory +hep-th/9911222 Theory +math-ph/0201016 +math-ph/0211026 +math-ph/0310051 +math/0611769 Differential Geometry +math/0611771 Algebraic Geometry +nucl-ex/0209024 +nucl-ex/0303014 +nucl-ex/0304014 +nucl-ex/0310022 +nucl-ex/0311024 +nucl-ex/0409004 +nucl-ex/0508027 +nucl-ex/0512007 +nucl-ex/9806004 +nucl-ex/9901009 +nucl-th/0007047 +nucl-th/0101038 +nucl-th/0105003 +nucl-th/0109040 +nucl-th/0110066 +nucl-th/0112019 +nucl-th/0305011 +nucl-th/0306040 +nucl-th/0312074 +nucl-th/0412086 +nucl-th/0412114 +nucl-th/0512062 +nucl-th/0512077 +nucl-th/9306012 +nucl-th/9411019 +nucl-th/9603031 +nucl-th/9607041 +nucl-th/9608004 +nucl-th/9705055 +nucl-th/9709003 +physics/0512053 Computational Physics +q-alg/9508012 Quantum Algebra +quant-ph/0403062 +quant-ph/0508213 +quant-ph/0609037 +quant-ph/9704032 +quant-ph/9801043 +quant-ph/9805030 +quant-ph/9912111 +0706.2878 +0708.3343 +0708.4190 Geometric Topology +0709.4316 Statistics Theory +0710.3744 Combinatorics +0711.0993 Statistics Theory +0711.1841 Theory +0711.3236 Methodology +0801.0256 +0802.1105 Pattern Formation and Solitons +0803.2755 Combinatorics +0806.1572 Geometric Topology +0807.0692 Analysis of PDEs +0807.1574 Methodology +0810.5008 Theory +0901.1911 Statistics Theory +0905.4930 Data Structures and Algorithms +0906.4808 +0907.4036 Distributed, Parallel, and Cluster Computing +0909.1390 General Topology +0909.4043 Populations and Evolution +0910.1262 Phenomenology +0910.2475 Phenomenology +0911.0940 Theory +0912.2201 General Physics +1001.0224 Representation Theory +1001.2939 Statistics Theory +1001.3453 +1001.4065 Geometric Topology +1002.1054 Molecular Networks +1003.3813 +1004.2577 Dynamical Systems +1004.3865 Astrophysics of Galaxies +1005.3431 General Physics +1006.2529 Optimization and Control +1006.5189 Functional Analysis +1007.1501 Computer Science and Game Theory +1007.1679 Optimization and Control +1007.3507 Probability +1008.1479 Superconductivity +1008.2236 Chemical Physics +1008.3050 Fluid Dynamics +1008.4396 Analysis of PDEs +1009.0150 +1009.1372 General Physics +1009.2584 Phenomenology +1009.5035 Computational Physics +1010.0339 Quantitative Methods +1010.0412 Information Theory +1010.1811 +1010.3748 Cosmology and Nongalactic Astrophysics +1011.1146 Phenomenology +1011.1592 Superconductivity +1011.3235 Mesoscale and Nanoscale Physics +1011.6273 Atomic Physics +1011.6291 Rings and Algebras +1012.1434 Functional Analysis +1012.1453 Number Theory +1012.4270 +1012.5664 Discrete Mathematics +1101.0217 Strongly Correlated Electrons +1101.0801 Analysis of PDEs +1101.1490 Combinatorics +1101.1598 Number Theory +1101.3191 Phenomenology +1102.1911 Strongly Correlated Electrons +1102.4379 Theory +1102.4687 Exactly Solvable and Integrable Systems +1102.4878 Physics and Society +1103.0238 Mesoscale and Nanoscale Physics +1103.0714 Quantum Gases +1103.1992 General Finance +1103.2545 Information Theory +1103.2726 Quantum Algebra +1103.4311 Systems and Control +1103.5497 Astrophysics of Galaxies +1104.1174 Cosmology and Nongalactic Astrophysics +1104.1819 Materials Science +1104.2112 Chaotic Dynamics +1104.2755 Algebraic Topology +1104.3440 Instrumentation and Detectors +1104.3720 Data Structures and Algorithms +1104.4783 Theory +1104.4937 Methodology +1104.5257 Computational Complexity +1104.5422 Systems and Control +1104.5550 +1104.5704 Cosmology and Nongalactic Astrophysics +1105.0112 Algebraic Geometry +1105.3080 Classical Analysis and ODEs +1105.3268 Optimization and Control +1105.3768 High Energy Astrophysical Phenomena +1105.4615 Astrophysics of Galaxies +1105.5145 Classical Analysis and ODEs +1105.5336 Lattice +1105.5374 Atomic and Molecular Clusters +1106.0011 Cosmology and Nongalactic Astrophysics +1106.0029 +1106.0206 Strongly Correlated Electrons +1106.0308 Phenomenology +1106.2347 Algebraic Geometry +1106.3179 +1106.3785 Theory +1106.4028 Disordered Systems and Neural Networks +1106.4132 +1106.4137 Phenomenology +1106.4147 Phenomenology +1106.4998 Theory +1106.5025 Phenomenology +1107.1168 Algebraic Geometry +1107.1191 Solar and Stellar Astrophysics +1107.2322 Quantum Gases +1107.2519 Optics +1107.2737 Discrete Mathematics +1107.2762 Materials Science +1107.3600 Machine Learning +1107.4085 Mesoscale and Nanoscale Physics +1107.5320 Superconductivity +1108.0257 Chemical Physics +1108.0847 Quantum Gases +1108.1132 Quantum Gases +1108.1951 Data Analysis, Statistics and Probability +1108.3167 Numerical Analysis +1108.3684 Materials Science +1108.4519 +1108.5493 Networking and Internet Architecture +1109.0153 +1109.1454 Human-Computer Interaction +1109.1603 Accelerator Physics +1109.2294 Differential Geometry +1109.2766 Information Theory +1109.2792 Theory +1109.3139 Statistics Theory +1109.3836 Phenomenology +1109.3918 Algebraic Geometry +1109.4407 Differential Geometry +1109.5004 Combinatorics +1109.5051 Accelerator Physics +1109.5111 Distributed, Parallel, and Cluster Computing +1109.5173 Instrumentation and Methods for Astrophysics +1109.5183 Earth and Planetary Astrophysics +1109.5187 Materials Science +1109.5197 Classical Analysis and ODEs +1109.5201 Distributed, Parallel, and Cluster Computing +1109.5204 Dynamical Systems +1109.5205 +1109.5206 Analysis of PDEs +1109.5207 Solar and Stellar Astrophysics +1109.5208 Combinatorics +1109.5210 Superconductivity +1109.5211 Rings and Algebras +1109.5213 Algebraic Geometry +1109.5214 Computational Complexity +1109.5217 Analysis of PDEs +1109.5222 Information Theory +1109.5229 Optimization and Control +1109.5234 +1109.5239 Symplectic Geometry +1109.5240 Optimization and Control +1109.5243 Analysis of PDEs +1109.5245 Differential Geometry +1109.5249 Differential Geometry +1109.5250 Functional Analysis +1109.5255 Geometric Topology +1109.5258 Analysis of PDEs +1109.5263 Number Theory +1109.5265 Number Theory +1109.5266 General Physics +1109.5268 General Physics +1109.5273 Probability +1109.5275 Functional Analysis +1109.5276 Phenomenology +1109.5277 Group Theory +1109.5281 Classical Analysis and ODEs +1109.5282 Computational Complexity +1109.5284 Logic +1109.5285 +1109.5286 Computational Physics +1109.5296 Combinatorics +1109.5300 Functional Analysis +1109.5303 Classical Analysis and ODEs +1109.5305 Classical Analysis and ODEs +1109.5306 Classical Analysis and ODEs +1109.5307 Logic +1109.5308 Logic +1109.5309 Classical Analysis and ODEs +1109.5310 Classical Analysis and ODEs +1109.5311 Learning +1109.5313 +1109.5318 Popular Physics +1109.5321 Algebraic Geometry +1109.5323 Human-Computer Interaction +1109.5326 Commutative Algebra +1109.5330 Commutative Algebra +1109.5332 Earth and Planetary Astrophysics +1109.5336 Information Theory +1109.5341 Combinatorics +1109.5342 Representation Theory +1109.5348 Optimization and Control +1109.5351 Information Theory +1109.5362 Astrophysics of Galaxies +1109.5363 Plasma Physics +1109.5364 Atmospheric and Oceanic Physics +1109.5370 Computer Vision and Pattern Recognition +1109.5371 Rings and Algebras +1109.5372 Experiment +1109.5374 Soft Condensed Matter +1109.5376 Experiment +1109.5377 Differential Geometry +1109.5380 Functional Analysis +1109.5382 Information Theory +1109.5385 Superconductivity +1109.5387 Soft Condensed Matter +1109.5389 Biological Physics +1109.5395 Data Analysis, Statistics and Probability +1109.5397 Solar and Stellar Astrophysics +1109.5401 Theory +1109.5402 Subcellular Processes +1109.5403 General Physics +1109.5404 Machine Learning +1109.5411 General Physics +1109.5413 Instrumentation and Detectors +1109.5418 Dynamical Systems +1109.5424 +1109.5426 Information Theory +1109.5430 Information Theory +1109.5435 +1109.5438 Logic +1109.5439 Group Theory +1109.5452 +1109.5454 Adaptation and Self-Organizing Systems +1109.5457 Chemical Physics +1109.5458 +1109.5462 Strongly Correlated Electrons +1109.5465 Theory +1109.5466 Systems and Control +1109.5467 Algebraic Geometry +1109.5468 Logic in Computer Science +1109.5469 Optics +1109.5472 Representation Theory +1109.5474 Soft Condensed Matter +1109.5479 Superconductivity +1109.5483 Differential Geometry +1109.5484 Information Theory +1109.5485 Applications +1109.5487 Group Theory +1109.5488 Quantitative Methods +1109.5492 Numerical Analysis +1109.5497 +1109.5503 Rings and Algebras +1109.5505 Software Engineering +1109.5508 +1109.5509 Numerical Analysis +1109.5510 Analysis of PDEs +1109.5513 Phenomenology +1109.5520 Physics and Society +1109.5522 Logic in Computer Science +1109.5532 Statistical Mechanics +1109.5533 Representation Theory +1109.5535 +1109.5536 Solar and Stellar Astrophysics +1109.5548 Geometric Topology +1109.5551 Cosmology and Nongalactic Astrophysics +1109.5554 Differential Geometry +1109.5559 Distributed, Parallel, and Cluster Computing +1109.5565 Functional Analysis +1109.5572 Chaotic Dynamics +1109.5575 Cosmology and Nongalactic Astrophysics +1109.5579 Probability +1109.5580 Cosmology and Nongalactic Astrophysics +1109.5584 Exactly Solvable and Integrable Systems +1109.5586 General Mathematics +1109.5589 Information Theory +1109.5596 Discrete Mathematics +1109.5598 Superconductivity +1109.5599 Experiment +1109.5608 Atomic Physics +1109.5610 Solar and Stellar Astrophysics +1109.5611 High Energy Astrophysical Phenomena +1109.5612 +1109.5615 Formal Languages and Automata Theory +1109.5618 +1109.5624 Combinatorics +1109.5625 Pattern Formation and Solitons +1109.5626 Functional Analysis +1109.5635 Data Structures and Algorithms +1109.5641 Networking and Internet Architecture +1109.5643 Experiment +1109.5655 Pattern Formation and Solitons +1109.5663 Artificial Intelligence +1109.5665 Artificial Intelligence +1109.5666 Artificial Intelligence +1109.5676 Analysis of PDEs +1109.5677 Analysis of PDEs +1109.5680 High Energy Astrophysical Phenomena +1109.5683 Formal Languages and Automata Theory +1109.5686 Dynamical Systems +cond-mat/0202467 Superconductivity +hep-th/0210062 Theory +hep-th/0304269 Theory +hep-th/0409208 Theory +hep-th/0411122 Theory +hep-th/0501220 Theory +hep-th/0703114 Theory +math/0111030 Group Theory +math/0210354 Group Theory +math/0402236 General Topology +math/0502223 General Topology +math/0504003 General Topology +math/0509213 Algebraic Topology +math/0511068 Category Theory +math/0603318 Differential Geometry +math/0603513 Group Theory +math/0702005 Algebraic Geometry +physics/0609209 Physics and Society +quant-ph/0002018 +quant-ph/9911015 +quant-ph/9911085 +quant-ph/9911122 +0811.0695 +0901.0570 Astrophysics of Galaxies +0904.3523 Machine Learning +0908.1472 Group Theory +0910.4156 Number Theory +0911.1783 Algebraic Geometry +0911.3792 Rings and Algebras +0912.4834 Algebraic Geometry +1001.2816 Adaptation and Self-Organizing Systems +1003.3410 Phenomenology +1004.2614 Algebraic Geometry +1006.2711 Risk Management +1006.2733 +1006.3524 Phenomenology +1006.3863 Physics and Society +1007.0335 +1007.1661 Theory +1007.3645 Solar and Stellar Astrophysics +1008.1674 Functional Analysis +1008.2173 Number Theory +1008.3833 +1009.2150 Chaotic Dynamics +1009.2444 Experiment +1009.3847 Materials Science +1011.1773 Probability +1011.2938 Theory +1011.4902 Neurons and Cognition +1012.0131 +1012.1200 Plasma Physics +1012.1895 Information Theory +1012.3810 Atomic Physics +1101.3680 Statistical Mechanics +1102.0315 Analysis of PDEs +1102.4783 Algebraic Geometry +1102.5334 Phenomenology +1103.1426 Probability +1103.3952 Information Theory +1104.0681 Cosmology and Nongalactic Astrophysics +1104.2498 Materials Science +1104.2911 +1105.0295 +1105.0423 Phenomenology +1105.0629 Analysis of PDEs +1105.1361 Statistics Theory +1105.1670 Materials Science +1105.3402 Popular Physics +1105.3573 +1105.4733 Theory +1105.6372 Functional Analysis +1106.1094 Other Condensed Matter +1106.1360 +1106.1608 Lattice +1106.3161 Computational Complexity +1106.5012 Algebraic Geometry +1106.5541 Strongly Correlated Electrons +1106.5602 Representation Theory +1106.5783 Atomic Physics +1107.0553 Experiment +1107.1195 +1107.1354 Strongly Correlated Electrons +1107.1803 +1107.2112 Cosmology and Nongalactic Astrophysics +1107.2181 Probability +1107.2232 Strongly Correlated Electrons +1107.2497 +1107.4003 +1108.0485 +1108.1478 Cryptography and Security +1108.1857 Quantum Gases +1108.1942 Superconductivity +1108.2933 Materials Science +1108.3678 Cosmology and Nongalactic Astrophysics +1108.3755 Statistics Theory +1108.4269 High Energy Astrophysical Phenomena +1108.4560 High Energy Astrophysical Phenomena +1108.5257 Strongly Correlated Electrons +1108.5381 Phenomenology +1109.1189 Algebraic Geometry +1109.1635 Algebraic Geometry +1109.2115 Cosmology and Nongalactic Astrophysics +1109.5138 Analysis of PDEs +1109.6456 Atomic Physics +1109.6754 Atomic Physics +1110.0182 Algebraic Geometry +1110.0374 Solar and Stellar Astrophysics +1110.1949 Solar and Stellar Astrophysics +1110.2544 Statistics Theory +1110.2978 +1110.3332 Theory +1110.4839 Superconductivity +1111.1449 Dynamical Systems +1111.1533 Algebraic Geometry +1111.2913 +1111.3893 Theory +1111.4493 Combinatorics +1111.4546 Materials Science +1111.4559 Probability +1111.4560 Probability +1111.4615 Solar and Stellar Astrophysics +1111.4815 Strongly Correlated Electrons +1111.4841 Data Structures and Algorithms +1111.4937 Data Structures and Algorithms +1111.4978 Phenomenology +1111.5029 Analysis of PDEs +1111.5035 Computational Physics +1111.5036 Phenomenology +1111.5040 Lattice +1111.5047 Materials Science +1111.5049 Theory +1111.5051 Analysis of PDEs +1111.5056 +1111.5058 Superconductivity +1111.5060 Number Theory +1111.5064 Representation Theory +1111.5071 Dynamical Systems +1111.5072 Materials Science +1111.5076 Theory +1111.5081 Instrumentation and Methods for Astrophysics +1111.5086 +1111.5087 Mesoscale and Nanoscale Physics +1111.5088 Superconductivity +1111.5097 Classical Analysis and ODEs +1111.5098 Lattice +1111.5099 Instrumentation and Methods for Astrophysics +1111.5101 Functional Analysis +1111.5103 General Topology +1111.5108 Computer Vision and Pattern Recognition +1111.5109 Functional Analysis +1111.5111 Instrumentation and Methods for Astrophysics +1111.5113 Theory +1111.5119 Metric Geometry +1111.5121 +1111.5125 Complex Variables +1111.5126 Complex Variables +1111.5135 Computer Vision and Pattern Recognition +1111.5138 Lattice +1111.5139 Optics +1111.5140 Numerical Analysis +1111.5145 Applications +1111.5146 Algebraic Geometry +1111.5148 Dynamical Systems +1111.5150 Functional Analysis +1111.5152 Phenomenology +1111.5155 Lattice +1111.5157 Analysis of PDEs +1111.5159 Combinatorics +1111.5160 Functional Analysis +1111.5165 Biomolecules +1111.5170 Software Engineering +1111.5172 Software Engineering +1111.5175 Analysis of PDEs +1111.5180 Logic +1111.5181 +1111.5182 +1111.5189 Networking and Internet Architecture +1111.5199 Instrumentation and Detectors +1111.5207 Robotics +1111.5213 Dynamical Systems +1111.5214 Classical Analysis and ODEs +1111.5219 Robotics +1111.5221 Materials Science +1111.5224 Experiment +1111.5226 Exactly Solvable and Integrable Systems +1111.5227 General Physics +1111.5230 Materials Science +1111.5232 Strongly Correlated Electrons +1111.5235 Phenomenology +1111.5240 Experiment +1111.5241 Information Theory +1111.5245 +1111.5246 Quantum Algebra +1111.5252 Lattice +1111.5254 Statistical Finance +1111.5255 +1111.5256 Statistical Mechanics +1111.5265 Statistical Finance +1111.5269 Lattice +1111.5270 +1111.5271 Optics +1111.5279 Networking and Internet Architecture +1111.5281 Cosmology and Nongalactic Astrophysics +1111.5282 Functional Analysis +1111.5283 Earth and Planetary Astrophysics +1111.5285 Other Computer Science +1111.5287 Information Theory +1111.5288 Other Computer Science +1111.5293 Computation and Language +1111.5294 Mesoscale and Nanoscale Physics +1111.5297 Biomolecules +1111.5298 +1111.5307 Mesoscale and Nanoscale Physics +1111.5308 Solar and Stellar Astrophysics +1111.5311 Mesoscale and Nanoscale Physics +1111.5312 Artificial Intelligence +1111.5316 Quantum Algebra +1111.5321 Numerical Analysis +1111.5322 Metric Geometry +1111.5324 Algebraic Geometry +1111.5327 Symplectic Geometry +math/0703234 Differential Geometry +physics/0604188 Atomic Physics +0706.1175 Probability +0709.1098 Materials Science +0807.1847 Statistical Mechanics +0811.0072 Statistics Theory +0811.4230 Dynamical Systems +0812.1070 Theory +0812.4339 +0901.1501 Differential Geometry +0901.3031 Other Condensed Matter +0902.1769 Disordered Systems and Neural Networks +0902.2254 Logic +0903.3541 Number Theory +0905.0273 Numerical Analysis +0905.0555 Algebraic Topology +0905.1761 Algebraic Topology +0905.2047 Algebraic Topology +0905.2747 Combinatorics +0907.2902 Other Condensed Matter +0908.2356 +0908.3097 Metric Geometry +0909.4915 Combinatorics +0911.1920 Mesoscale and Nanoscale Physics +0911.5062 +0912.5200 Methodology +0912.5317 Cosmology and Nongalactic Astrophysics +1002.0152 Methodology +1002.2920 Theory +1002.2965 Soft Condensed Matter +1003.0006 Probability +1005.1140 Metric Geometry +1005.1335 Dynamical Systems +1006.0104 Combinatorics +1007.2655 Phenomenology +1007.3072 Combinatorics +1007.4362 Theory +1008.1487 Number Theory +1008.1744 Information Theory +1008.3494 +1009.0392 Metric Geometry +1009.0928 Analysis of PDEs +1009.1308 Classical Analysis and ODEs +1009.4028 +1009.4284 Symplectic Geometry +1010.1058 Geometric Topology +1010.1134 Mesoscale and Nanoscale Physics +1010.1497 Differential Geometry +1011.0892 Lattice +1011.0989 Astrophysics of Galaxies +1011.3061 Quantum Gases +1011.3616 Mesoscale and Nanoscale Physics +1011.3827 +1011.3845 Quantum Gases +1011.3921 General Physics +1011.3943 Mesoscale and Nanoscale Physics +1011.4090 Theory +1011.4120 Theory +1011.4231 Lattice +1011.4656 Other Condensed Matter +1011.4750 +1012.3057 Computational Geometry +1012.3289 Soft Condensed Matter +1012.3524 Combinatorics +1012.4667 Analysis of PDEs +1012.4769 Applications +1101.2559 +1101.2760 Theory +1101.2977 +1101.4338 Chaotic Dynamics +1101.4514 +1101.5112 +1102.0323 General Physics +1102.0536 General Physics +1102.0801 General Physics +1102.1553 Materials Science +1102.2051 Operator Algebras +1102.2379 Materials Science +1102.2495 +1102.3271 Algebraic Topology +1102.5029 +1103.0018 Phenomenology +1103.1194 Phenomenology +1103.1636 Strongly Correlated Electrons +1103.2174 Theory +1103.3987 Theory +1103.4813 Theory +1103.4941 Materials Science +1103.5455 Solar and Stellar Astrophysics +1103.5469 Theory +1103.5642 Phenomenology +1104.0738 Theory +1104.1091 High Energy Astrophysical Phenomena +1104.1281 Theory +1104.2494 Soft Condensed Matter +1104.2924 Quantum Gases +1104.3018 Phenomenology +1104.3112 Representation Theory +1104.3624 Phenomenology +1104.4725 Probability +1104.5542 Differential Geometry +1104.5613 Phenomenology +1105.1505 Information Theory +1105.2355 +1105.2471 Group Theory +1105.3061 Computational Physics +1105.3148 Combinatorics +1106.0579 Instrumentation and Methods for Astrophysics +1106.4181 Probability +1106.4376 +1106.5285 Soft Condensed Matter +1106.5649 Instrumentation and Detectors +1107.0067 Software Engineering +1107.0147 Statistics Theory +1107.0187 Cosmology and Nongalactic Astrophysics +1107.0244 Materials Science +1107.0540 Statistics Theory +1107.0565 High Energy Astrophysical Phenomena +1107.0575 Analysis of PDEs +1107.0584 Materials Science +1107.0593 Materials Science +1107.0735 Mesoscale and Nanoscale Physics +1107.0736 Earth and Planetary Astrophysics +1107.0738 Phenomenology +1107.0743 Disordered Systems and Neural Networks +1107.0746 Programming Languages +1107.0748 Superconductivity +1107.0752 Experiment +1107.0756 Theory +1107.0770 Quantum Algebra +1107.0773 Complex Variables +1107.0776 Exactly Solvable and Integrable Systems +1107.0777 Biological Physics +1107.0782 Strongly Correlated Electrons +1107.0783 Rings and Algebras +1107.0785 Probability +1107.0787 Analysis of PDEs +1107.0792 Phenomenology +1107.0794 +1107.0796 Statistical Mechanics +1107.0799 Soft Condensed Matter +1107.0800 Astrophysics of Galaxies +1107.0810 Mesoscale and Nanoscale Physics +1107.0811 Materials Science +1107.0817 Dynamical Systems +1107.0820 Instrumentation and Methods for Astrophysics +1107.0826 High Energy Astrophysical Phenomena +1107.0829 Differential Geometry +1107.0832 Classical Analysis and ODEs +1107.0836 Instrumentation and Methods for Astrophysics +1107.0838 General Finance +1107.0839 Trading and Market Microstructure +1107.0846 Materials Science +1107.0848 History and Overview +1107.0851 Phenomenology +1107.0853 Theory +1107.0855 Differential Geometry +1107.0857 Algebraic Geometry +1107.0868 Optics +1107.0871 Discrete Mathematics +1107.0885 Applications +1107.0886 Astrophysics of Galaxies +1107.0890 +1107.0894 Numerical Analysis +1107.0896 Analysis of PDEs +1107.0898 +1107.0900 Quantitative Methods +1107.0903 Adaptation and Self-Organizing Systems +1107.0920 Quantum Algebra +1107.0922 Learning +1107.0925 Instrumentation and Methods for Astrophysics +1107.0927 Applications +1107.0930 Geophysics +1107.0935 Methodology +1107.0938 Rings and Algebras +1107.0951 K-Theory and Homology +1107.0957 Classical Analysis and ODEs +1107.0958 Phenomenology +1107.0959 Statistical Mechanics +1107.0964 General Physics +math/0605370 Probability +math/0606659 Probability +quant-ph/0504163 +0710.0926 Metric Geometry +0710.1218 Atomic and Molecular Clusters +0807.2826 Differential Geometry +0809.4522 Statistical Mechanics +0904.0436 Functional Analysis +0906.5128 Functional Analysis +0906.5527 Differential Geometry +0912.0188 Atomic and Molecular Clusters +0912.2024 Optics +0912.4646 General Mathematics +1002.3146 Quantum Algebra +1002.4320 Group Theory +1003.4347 Phenomenology +1004.3673 Phenomenology +1004.3961 Superconductivity +1004.4265 Strongly Correlated Electrons +1004.4342 Artificial Intelligence +1005.4178 Information Theory +1005.4506 Mesoscale and Nanoscale Physics +1005.4552 Digital Libraries +1005.4592 Artificial Intelligence +1006.2087 Superconductivity +1006.5595 +1007.0453 Metric Geometry +1007.0677 Probability +1007.1007 Astrophysics of Galaxies +1008.1204 Superconductivity +1008.4603 Quantum Gases +1008.5010 Cosmology and Nongalactic Astrophysics +1009.4733 Performance +1010.0662 Probability +1010.3914 Materials Science +1011.6613 +1012.2873 Statistical Mechanics +1012.3202 +1012.4973 Biological Physics +1012.5412 Phenomenology +1101.2424 Combinatorics +1101.4355 Exactly Solvable and Integrable Systems +1102.0051 +1102.1369 Probability +1102.1415 Mesoscale and Nanoscale Physics +1102.2435 Materials Science +1102.2735 Quantum Gases +1102.4028 Other Condensed Matter +1102.4293 Computational Engineering, Finance, and Science +1103.1081 +1103.2779 +1103.2895 Mesoscale and Nanoscale Physics +1103.4211 Statistical Mechanics +1103.4935 Materials Science +1103.5001 Statistical Mechanics +1103.6050 +1104.2399 Materials Science +1104.4611 Chaotic Dynamics +1104.5633 Quantum Gases +1105.0288 Artificial Intelligence +1105.0992 Mesoscale and Nanoscale Physics +1105.2565 Theory +1105.3119 Solar and Stellar Astrophysics +1105.5903 Information Theory +1106.0038 Theory +1106.1430 Astrophysics of Galaxies +1106.1598 Materials Science +1106.4967 Strongly Correlated Electrons +1106.5070 Data Analysis, Statistics and Probability +1106.5276 Group Theory +1106.5385 Statistical Mechanics +1107.0350 Software Engineering +1107.0485 Statistical Mechanics +1107.3057 Atomic and Molecular Clusters +1107.3209 Digital Libraries +1107.3212 Digital Libraries +1107.3696 Materials Science +1107.4729 Fluid Dynamics +1107.5030 Logic in Computer Science +1107.5046 Cosmology and Nongalactic Astrophysics +1107.5054 Geometric Topology +1107.5057 Mesoscale and Nanoscale Physics +1107.5058 Group Theory +1107.5062 Functional Analysis +1107.5066 Probability +1107.5068 Optimization and Control +1107.5077 +1107.5080 +1107.5082 Fluid Dynamics +1107.5083 Dynamical Systems +1107.5089 Solar and Stellar Astrophysics +1107.5092 Combinatorics +1107.5095 Populations and Evolution +1107.5103 Statistical Mechanics +1107.5104 Mesoscale and Nanoscale Physics +1107.5107 Differential Geometry +1107.5119 Solar and Stellar Astrophysics +1107.5121 Applications +1107.5125 Group Theory +1107.5130 High Energy Astrophysical Phenomena +1107.5135 Probability +1107.5141 Other Statistics +1107.5142 Logic in Computer Science +1107.5149 Cosmology and Nongalactic Astrophysics +1107.5150 Materials Science +1107.5151 Analysis of PDEs +1107.5152 Logic in Computer Science +1107.5153 Operator Algebras +1107.5154 Networking and Internet Architecture +1107.5165 Cosmology and Nongalactic Astrophysics +1107.5170 Phenomenology +1107.5173 Materials Science +1107.5174 +1107.5177 Combinatorics +1107.5178 Materials Science +1107.5180 Atmospheric and Oceanic Physics +1107.5181 Theory +1107.5182 Atmospheric and Oceanic Physics +1107.5186 Computer Vision and Pattern Recognition +1107.5188 Materials Science +1107.5191 Number Theory +1107.5196 Materials Science +1107.5200 Classical Analysis and ODEs +1107.5204 Computational Geometry +1107.5205 Operator Algebras +1107.5206 Biological Physics +1107.5208 Functional Analysis +1107.5209 Classical Analysis and ODEs +1107.5210 Materials Science +1107.5219 Probability +1107.5221 Computer Science and Game Theory +1107.5227 Experiment +1107.5228 Formal Languages and Automata Theory +1107.5230 Commutative Algebra +1107.5232 Geometric Topology +1107.5235 High Energy Astrophysical Phenomena +1107.5237 Differential Geometry +1107.5239 Methodology +1107.5240 High Energy Astrophysical Phenomena +1107.5242 Logic in Computer Science +1107.5247 Mesoscale and Nanoscale Physics +1107.5251 Analysis of PDEs +1107.5269 Optimization and Control +1107.5280 Optimization and Control +1107.5283 Analysis of PDEs +1107.5284 Optics +1107.5292 Phenomenology +1107.5297 Solar and Stellar Astrophysics +1107.5299 Mesoscale and Nanoscale Physics +cond-mat/0605050 Strongly Correlated Electrons +cond-mat/0610597 Statistical Mechanics +cond-mat/0702407 Statistical Mechanics +math/0606637 Quantum Algebra +math/0611389 Differential Geometry +physics/0511201 Physics and Society +0712.3026 Algebraic Geometry +0801.4723 Logic +0902.3278 Strongly Correlated Electrons +0905.3131 Cosmology and Nongalactic Astrophysics +0906.0568 Popular Physics +0909.2741 +0910.3347 +0910.4633 Theory +0912.5008 Mesoscale and Nanoscale Physics +1001.2834 Instrumentation and Methods for Astrophysics +1002.0101 Quantum Gases +1002.1806 Theory +1003.4779 Phenomenology +1004.0053 Group Theory +1004.0253 Combinatorics +1004.4879 Soft Condensed Matter +1005.1303 Probability +1006.2727 Phenomenology +1006.3978 +1006.4815 Superconductivity +1006.5402 Mesoscale and Nanoscale Physics +1007.2009 Materials Science +1007.2657 Materials Science +1008.0141 Mesoscale and Nanoscale Physics +1008.2264 Functional Analysis +1008.3055 Quantum Gases +1008.3680 Commutative Algebra +1008.4071 Artificial Intelligence +1009.0671 +1009.0969 Fluid Dynamics +1009.4700 Strongly Correlated Electrons +1009.5388 Number Theory +1010.0447 Quantum Algebra +1011.0763 Instrumentation and Methods for Astrophysics +1011.2014 +1011.5939 Classical Analysis and ODEs +1011.6051 History and Philosophy of Physics +1012.0381 Theory +1012.0735 Learning +1012.1157 +1012.1901 Solar and Stellar Astrophysics +1012.3317 Mesoscale and Nanoscale Physics +1012.5070 Materials Science +1101.0852 Statistical Mechanics +1101.1273 Molecular Networks +1101.1962 +1101.3696 Representation Theory +1101.4547 +1102.1473 Geometric Topology +1102.3259 Fluid Dynamics +1103.2001 Physics and Society +1103.4090 Quantitative Methods +1103.4838 Classical Physics +1104.1017 +1104.1705 Materials Science +1104.2053 Optics +1104.2186 Plasma Physics +1104.2243 Plasma Physics +1104.2983 General Topology +1104.4346 +1104.4353 Data Structures and Algorithms +1104.4360 Probability +1104.4362 General Physics +1104.4364 Algebraic Geometry +1104.4367 Combinatorics +1104.4375 Information Theory +1104.4376 Methodology +1104.4379 Distributed, Parallel, and Cluster Computing +1104.4381 Physics and Society +1104.4384 Databases +1104.4386 Theory +1104.4389 Statistics Theory +1104.4396 Statistics Theory +1104.4401 Number Theory +1104.4402 Dynamical Systems +1104.4403 Solar and Stellar Astrophysics +1104.4404 Phenomenology +1104.4405 +1104.4409 Differential Geometry +1104.4410 Statistics Theory +1104.4411 Combinatorics +1104.4413 Solar and Stellar Astrophysics +1104.4419 Discrete Mathematics +1104.4424 Discrete Mathematics +1104.4425 Discrete Mathematics +1104.4427 Formal Languages and Automata Theory +1104.4429 Statistics Theory +1104.4431 Earth and Planetary Astrophysics +1104.4433 Computational Complexity +1104.4435 Geometric Topology +1104.4437 High Energy Astrophysical Phenomena +1104.4448 Logic +1104.4450 Logic +1104.4451 Functional Analysis +1104.4466 +1104.4471 Data Structures and Algorithms +1104.4479 Functional Analysis +1104.4488 +1104.4493 Classical Physics +math/0701347 Statistics Theory +0710.4365 Phenomenology +0710.5367 Mesoscale and Nanoscale Physics +0711.3986 Theory +0712.0045 Theory +0805.4772 +0806.1224 Popular Physics +0806.4759 Strongly Correlated Electrons +0807.4827 Phenomenology +0901.0532 Earth and Planetary Astrophysics +0901.1234 Theory +0901.2744 Commutative Algebra +0901.3536 Instrumentation and Methods for Astrophysics +0902.3883 Combinatorics +0903.5317 Cosmology and Nongalactic Astrophysics +0906.5245 Phenomenology +0907.2968 Theory +0907.4911 +0909.3012 Astrophysics of Galaxies +0909.3201 Metric Geometry +0909.4525 Theory +0910.0396 +0910.1608 High Energy Astrophysical Phenomena +0910.2338 Solar and Stellar Astrophysics +0910.2364 Phenomenology +0910.2448 Phenomenology +0910.3323 Number Theory +0911.0358 Theory +0911.2069 Cosmology and Nongalactic Astrophysics +0911.2392 +0912.0808 +0912.1781 Phenomenology +0912.4233 Phenomenology +0912.5265 Theory +1001.0409 History and Overview +1002.1887 Discrete Mathematics +1002.2982 Differential Geometry +1003.0134 Physics and Society +1004.4534 Statistical Mechanics +1005.1570 +1005.2841 Phenomenology +1005.5159 Phenomenology +1006.0239 Theory +1006.0949 Theory +1006.1747 Software Engineering +1006.2028 Theory +1006.3595 +1006.4146 +1006.5666 +1007.0194 Phenomenology +1007.0617 Experiment +1007.1991 Probability +1007.2451 Theory +1007.3610 Phenomenology +1007.4592 Theory +1007.5021 Phenomenology +1007.5189 Theory +1008.0122 General Physics +1008.0139 Phenomenology +1008.0302 Theory +1008.1089 Earth and Planetary Astrophysics +1008.3439 Theory +1008.3496 +1008.3910 +1008.3989 +1008.5162 +1009.0093 Phenomenology +1009.0224 Phenomenology +1009.1612 Phenomenology +1009.1684 Theory +1009.1998 Phenomenology +1009.2366 Combinatorics +1009.3215 Phenomenology +1009.3236 Theory +1009.3338 High Energy Astrophysical Phenomena +1009.4645 +1009.5209 Theory +1010.1767 Mesoscale and Nanoscale Physics +1010.2124 Soft Condensed Matter +1010.2236 Information Theory +1010.2443 +1010.4470 General Physics +1010.4800 Theory +1010.5290 Learning +1010.5748 Theory +1010.5940 Astrophysics of Galaxies +1010.5984 Phenomenology +1010.5999 Phenomenology +1010.6062 Phenomenology +1011.0684 +1011.1858 Statistical Mechanics +1011.3080 Mesoscale and Nanoscale Physics +1011.5058 Mesoscale and Nanoscale Physics +1011.6069 Solar and Stellar Astrophysics +1012.3127 Combinatorics +1101.0010 Chemical Physics +1101.0299 Mesoscale and Nanoscale Physics +1101.0619 Strongly Correlated Electrons +1101.2076 Quantum Gases +1101.2212 Materials Science +1101.3205 Solar and Stellar Astrophysics +1101.5368 Theory +1102.1769 +1102.3244 Strongly Correlated Electrons +1103.2137 Theory +1103.2268 Computational Complexity +1103.2443 Dynamical Systems +1103.2500 +1103.2811 Logic in Computer Science +1103.2812 Logic in Computer Science +1103.2849 +1103.2852 Methodology +1103.2904 Superconductivity +1103.3020 Mathematical Software +1103.3021 Software Engineering +1103.3023 Analysis of PDEs +1103.3025 Instrumentation and Methods for Astrophysics +1103.3026 Numerical Analysis +1103.3030 Analysis of PDEs +1103.3031 +1103.3032 Biomolecules +1103.3033 Geophysics +1103.3035 Classical Analysis and ODEs +1103.3036 Mesoscale and Nanoscale Physics +1103.3037 Astrophysics of Galaxies +1103.3043 +1103.3049 High Energy Astrophysical Phenomena +1103.3052 Mesoscale and Nanoscale Physics +1103.3066 Number Theory +1103.3069 Number Theory +1103.3070 Solar and Stellar Astrophysics +1103.3071 Solar and Stellar Astrophysics +1103.3074 Solar and Stellar Astrophysics +1103.3075 Digital Libraries +1103.3077 Dynamical Systems +1103.3090 Optics +1103.3092 +1103.3093 Information Theory +1103.3094 Analysis of PDEs +1103.3098 +1103.3100 +1103.3102 Databases +1103.3103 Databases +1103.3105 Databases +1103.3109 General Topology +1103.3110 Logic +1103.3111 Logic in Computer Science +1103.3113 Information Theory +1103.3115 Superconductivity +1103.3127 Functional Analysis +1103.3132 Functional Analysis +1103.3141 Differential Geometry +1103.3143 +1103.3144 General Physics +1103.3153 Functional Analysis +1103.3159 Cryptography and Security +1103.3161 General Physics +1103.3163 Combinatorics +1103.3169 Combinatorics +1103.3171 Representation Theory +1103.3174 Social and Information Networks +1103.3176 Numerical Analysis +1103.3181 Statistical Mechanics +1103.3193 +1103.3195 Complex Variables +1103.3206 General Finance +1103.3210 Dynamical Systems +1103.3215 Earth and Planetary Astrophysics +1103.3218 Rings and Algebras +1103.3221 Mesoscale and Nanoscale Physics +1103.3223 Artificial Intelligence +1103.3224 Optimization and Control +1103.3227 +1103.3235 Differential Geometry +1103.3236 Algebraic Geometry +1103.3237 General Physics +1103.3239 Logic in Computer Science +1103.3241 Probability +1103.3246 Group Theory +1103.3248 +1103.3253 Analysis of PDEs +1103.3258 Number Theory +astro-ph/0209595 +astro-ph/0209615 +astro-ph/0402300 +astro-ph/0404011 +astro-ph/0512053 +astro-ph/0602281 +astro-ph/0603342 +astro-ph/0606762 +astro-ph/0612689 +astro-ph/9312034 +astro-ph/9501078 +astro-ph/9502022 +astro-ph/9705229 +astro-ph/9706084 +astro-ph/9709199 +astro-ph/9806192 +astro-ph/9807111 +astro-ph/9808188 +astro-ph/9906312 +astro-ph/9908249 +cond-mat/0112023 +cond-mat/0308423 +gr-qc/9801030 +gr-qc/9806035 +hep-ph/0004105 Phenomenology +hep-ph/0107032 Phenomenology +hep-ph/0110228 Phenomenology +hep-ph/0110351 Phenomenology +hep-ph/0306118 Phenomenology +hep-ph/0412005 Phenomenology +hep-ph/0503074 Phenomenology +hep-ph/0605221 Phenomenology +hep-ph/9311248 Phenomenology +hep-ph/9407230 Phenomenology +hep-ph/9706422 Phenomenology +hep-ph/9708321 Phenomenology +hep-ph/9711409 Phenomenology +hep-ph/9712550 Phenomenology +hep-ph/9806204 Phenomenology +hep-ph/9808437 Phenomenology +hep-ph/9812250 Phenomenology +hep-ph/9902379 Phenomenology +hep-ph/9902402 Phenomenology +hep-ph/9902403 Phenomenology +hep-th/9806248 Theory +math-ph/0605077 +math/0106227 Functional Analysis +math/0107132 Functional Analysis +math/0201144 Functional Analysis +math/0210287 Functional Analysis +math/0301182 Functional Analysis +math/0311324 Functional Analysis +math/0412027 Analysis of PDEs +math/0509373 Functional Analysis +math/0510311 Statistics Theory +math/0609741 Algebraic Geometry +math/9412212 Functional Analysis +math/9507215 Functional Analysis +math/9702213 Functional Analysis +math/9709216 Functional Analysis +math/9911021 Functional Analysis +nucl-th/0308018 +nucl-th/0605005 +nucl-th/9806059 +nucl-th/9806060 +nucl-th/9810009 +nucl-th/9811036 +nucl-th/9905005 +1106.1813 Artificial Intelligence +0704.1495 Dynamical Systems +0709.3476 Algebraic Geometry +0711.3654 +0711.3818 Dynamical Systems +0711.3834 Statistics Theory +0802.2377 Methodology +0806.3220 +0811.0548 Logic +0811.2098 Optics +0811.2774 Logic +0811.4659 Superconductivity +0812.1868 Number Theory +0812.2087 +0812.5028 Quantum Gases +0901.0509 Algebraic Geometry +0901.1875 Dynamical Systems +0901.3062 Differential Geometry +0902.4111 Methodology +0903.2790 Materials Science +0903.3192 Commutative Algebra +0904.2088 Accelerator Physics +0904.3083 +0906.1373 Geometric Topology +0906.4294 Theory +0906.4826 Geometric Topology +0908.0027 Dynamical Systems +0909.0038 Disordered Systems and Neural Networks +0910.0360 K-Theory and Homology +0910.1270 Superconductivity +0910.2260 Analysis of PDEs +0910.5182 Number Theory +0911.0766 Differential Geometry +0911.3097 +0912.1107 Rings and Algebras +0912.1415 Category Theory +0912.4223 +1001.5191 Optimization and Control +1002.1070 Risk Management +1002.1847 Optics +1003.3196 Number Theory +1003.3218 Probability +1003.3978 Probability +1003.4224 Algebraic Topology +1004.0019 Dynamical Systems +1004.2664 Spectral Theory +1004.2995 Statistics Theory +1004.3457 Fluid Dynamics +1005.0358 Symplectic Geometry +1005.4352 Phenomenology +1006.1857 Quantum Algebra +1006.2243 Cosmology and Nongalactic Astrophysics +1006.2322 Artificial Intelligence +1006.2592 Methodology +1007.4698 Exactly Solvable and Integrable Systems +1007.5003 Complex Variables +1007.5419 Theory +1008.1213 Logic in Computer Science +1008.1755 Theory +1008.4896 Optimization and Control +1009.1084 +1009.4592 Optics +1009.4724 Algebraic Geometry +1009.5874 Mesoscale and Nanoscale Physics +1010.0233 +1010.1433 +1010.1798 Cosmology and Nongalactic Astrophysics +1010.2585 +1010.2701 +1010.2897 Analysis of PDEs +1011.0066 +1011.0209 Differential Geometry +1011.0357 Number Theory +1011.1171 Superconductivity +1011.2567 Instrumentation and Detectors +1011.3049 Distributed, Parallel, and Cluster Computing +1011.4705 +1011.5712 Disordered Systems and Neural Networks +1012.0755 High Energy Astrophysical Phenomena +1012.5423 Materials Science +1101.0826 Algebraic Geometry +1101.1733 Materials Science +1101.2078 Materials Science +1101.4932 Atomic Physics +1101.6012 Phenomenology +1102.1171 Theory +1102.1209 Theory +1102.2906 Distributed, Parallel, and Cluster Computing +1102.3411 Quantum Algebra +1102.4331 Phenomenology +1102.4358 High Energy Astrophysical Phenomena +1102.4695 Optics +1102.5359 Biological Physics +1102.5702 Phenomenology +1102.5722 Materials Science +1103.2120 Materials Science +1103.4984 Computational Complexity +1103.5200 Superconductivity +1104.0902 Materials Science +1104.0907 Representation Theory +1104.1223 +1104.3012 Cosmology and Nongalactic Astrophysics +1104.3039 +1104.5590 Experiment +1105.0331 +1105.0411 Statistical Mechanics +1105.1817 Mesoscale and Nanoscale Physics +1105.2120 Space Physics +1105.4462 +1105.5209 Mesoscale and Nanoscale Physics +1105.5423 Materials Science +1105.5560 Strongly Correlated Electrons +1105.5610 Accelerator Physics +1105.5883 Strongly Correlated Electrons +1105.6110 Materials Science +1106.0292 Cosmology and Nongalactic Astrophysics +1106.1334 Phenomenology +1106.2028 +1106.2246 Statistics Theory +1106.2655 Strongly Correlated Electrons +1106.4012 Superconductivity +1106.4552 Superconductivity +1106.5065 Instrumentation and Methods for Astrophysics +1106.5333 Strongly Correlated Electrons +1106.6178 Earth and Planetary Astrophysics +1107.0254 Phenomenology +1107.0322 +1107.0696 Phenomenology +1107.0887 Materials Science +1107.1511 Chaotic Dynamics +1107.1817 +1107.1873 +1107.1875 +1107.2305 Exactly Solvable and Integrable Systems +1107.2384 Instrumentation and Methods for Astrophysics +1107.2911 Strongly Correlated Electrons +1107.3027 Strongly Correlated Electrons +1107.3186 Cosmology and Nongalactic Astrophysics +1107.3891 Mesoscale and Nanoscale Physics +1107.4360 Data Analysis, Statistics and Probability +1107.4743 +1107.5123 Information Theory +1108.0516 Quantum Gases +1108.0643 Probability +1108.0657 Superconductivity +1108.1249 +1108.1647 Statistics Theory +1108.1666 Mesoscale and Nanoscale Physics +1108.2588 Molecular Networks +1108.2690 +1108.3208 Operator Algebras +1108.3317 Quantum Gases +1108.3671 Geometric Topology +1108.3716 Materials Science +1108.3925 Probability +1108.4201 History and Overview +1109.0715 Quantum Algebra +1109.1148 Optics +1109.1329 Algebraic Geometry +1109.2445 Combinatorics +1109.3173 Populations and Evolution +1109.4039 Networking and Internet Architecture +1109.5526 Logic +1109.5727 Data Analysis, Statistics and Probability +1109.5848 Mesoscale and Nanoscale Physics +1109.5928 Superconductivity +1110.0303 Combinatorics +1110.0365 Physics and Society +1110.0568 Combinatorics +1110.0599 +1110.1205 Statistical Mechanics +1110.1304 Discrete Mathematics +1110.2054 Experiment +1110.2092 Experiment +1110.2411 Experiment +1110.2560 Experiment +1110.2601 Strongly Correlated Electrons +1110.2637 Medical Physics +1110.2661 Algebraic Topology +1110.2696 Complex Variables +1110.2797 Number Theory +1110.2992 Materials Science +1110.2993 Quantitative Methods +1110.3034 Numerical Analysis +1110.3259 Cosmology and Nongalactic Astrophysics +1110.3316 Other Computer Science +1110.3320 Fluid Dynamics +1110.3334 Materials Science +1110.3343 Spectral Theory +1110.3347 Learning +1110.3349 Numerical Analysis +1110.3350 History and Overview +1110.3352 +1110.3355 Fluid Dynamics +1110.3356 Fluid Dynamics +1110.3357 Fluid Dynamics +1110.3358 +1110.3360 Numerical Analysis +1110.3365 Information Theory +1110.3366 Information Theory +1110.3369 Fluid Dynamics +1110.3371 Dynamical Systems +1110.3372 Fluid Dynamics +1110.3373 Fluid Dynamics +1110.3374 Fluid Dynamics +1110.3375 Classical Analysis and ODEs +1110.3377 Fluid Dynamics +1110.3378 Accelerator Physics +1110.3379 Software Engineering +1110.3380 Networking and Internet Architecture +1110.3381 Data Structures and Algorithms +1110.3382 Computational Engineering, Finance, and Science +1110.3383 Portfolio Management +1110.3384 Software Engineering +1110.3385 Artificial Intelligence +1110.3386 Networking and Internet Architecture +1110.3390 Computation +1110.3393 Phenomenology +1110.3397 Mathematical Software +1110.3398 Optimization and Control +1110.3402 Fluid Dynamics +1110.3407 Representation Theory +1110.3408 Statistical Mechanics +1110.3413 Statistical Mechanics +1110.3414 Earth and Planetary Astrophysics +1110.3416 +1110.3417 Quantum Gases +1110.3425 Networking and Internet Architecture +1110.3426 +1110.3427 Commutative Algebra +1110.3430 Numerical Analysis +1110.3434 Rings and Algebras +1110.3435 Fluid Dynamics +1110.3436 Statistics Theory +1110.3437 Statistics Theory +1110.3438 Numerical Analysis +1110.3443 Fluid Dynamics +1110.3445 Combinatorics +1110.3448 +1110.3449 +1110.3455 Experiment +1110.3456 +1110.3457 Algebraic Geometry +1110.3458 Exactly Solvable and Integrable Systems +1110.3459 Information Theory +1110.3461 Logic +1110.3463 Combinatorics +1110.3464 Probability +1110.3466 Cryptography and Security +1110.3467 +1110.3470 Programming Languages +1110.3471 Classical Analysis and ODEs +1110.3474 Mesoscale and Nanoscale Physics +1110.3475 Mesoscale and Nanoscale Physics +1110.3481 Materials Science +1110.3487 Mesoscale and Nanoscale Physics +1110.3496 Number Theory +1110.3499 +1110.3501 +1110.3503 Chemical Physics +1110.3505 Algebraic Geometry +1110.3506 Group Theory +1110.3508 Operator Algebras +1110.3511 Quantum Algebra +1110.3515 Fluid Dynamics +1110.3520 Number Theory +1110.3522 Lattice +1110.3525 Analysis of PDEs +1110.3531 Optimization and Control +1110.3535 Hardware Architecture +1110.3539 Geometric Topology +1110.3553 Metric Geometry +1110.3558 Materials Science +1110.3560 Mesoscale and Nanoscale Physics +1110.3561 Information Theory +1110.3563 Social and Information Networks +1110.3569 Databases +1110.3570 Functional Analysis +1110.3576 Materials Science +1110.3577 Lattice +1110.3578 Complex Variables +1110.3579 Networking and Internet Architecture +1110.3580 Accelerator Physics +1110.3581 General Physics +1110.3584 Hardware Architecture +1110.3587 Phenomenology +1110.3591 Cosmology and Nongalactic Astrophysics +1110.3593 Optics +1110.3595 Number Theory +1110.3596 Analysis of PDEs +1110.3597 Networking and Internet Architecture +1110.3600 Group Theory +1110.3601 Geometric Topology +1110.3602 Algebraic Geometry +1110.3609 Geometric Topology +1110.3614 Analysis of PDEs +1110.3615 Phenomenology +1110.3626 Spectral Theory +1110.3630 +1110.3631 Analysis of PDEs +1110.3634 Metric Geometry +1110.3638 Complex Variables +1110.3640 Phenomenology +1110.3651 Materials Science +1110.3657 Group Theory +1110.3659 Number Theory +1110.3664 Algebraic Geometry +1110.3666 Algebraic Geometry +1110.3669 Complex Variables +1110.3672 Artificial Intelligence +1110.3674 Optimization and Control +1110.3681 Phenomenology +1110.3687 Digital Libraries +1110.3691 Fluid Dynamics +1110.3693 Experiment +1110.3695 Optimization and Control +1110.3699 Rings and Algebras +1110.3700 Fluid Dynamics +1110.3703 Fluid Dynamics +1110.3706 Cryptography and Security +1110.3707 Fluid Dynamics +1110.3712 Solar and Stellar Astrophysics +1110.3714 Differential Geometry +1110.3715 Classical Analysis and ODEs +1110.3720 Dynamical Systems +1110.3723 Dynamical Systems +1110.3724 Combinatorics +1110.3727 Experiment +1110.3735 Phenomenology +1110.3743 Geometric Topology +1110.3750 Mesoscale and Nanoscale Physics +1110.3765 Differential Geometry +1110.3773 Classical Physics +1110.3779 Number Theory +astro-ph/0409016 +cond-mat/0106255 +cond-mat/0111463 Materials Science +cond-mat/0507686 Strongly Correlated Electrons +cond-mat/0605754 Soft Condensed Matter +hep-ph/0312090 Phenomenology +hep-ph/0411344 Phenomenology +math-ph/0703084 +math/0101192 Classical Analysis and ODEs +math/0403511 K-Theory and Homology +math/0511330 Logic +math/0608696 Probability +math/0611531 Optimization and Control +0704.1896 +0704.3132 Phenomenology +0707.1767 Differential Geometry +0707.4665 +0710.0179 +0711.1791 Disordered Systems and Neural Networks +0711.5002 Number Theory +0711.5005 Number Theory +0712.0919 Materials Science +0801.0862 Materials Science +0802.1023 +0803.3899 Algebraic Geometry +0804.1163 Algebraic Geometry +0805.2628 Quantitative Methods +0805.2847 +0806.2515 +0807.1984 Physics and Society +0808.3796 Complex Variables +0810.0190 +0811.3476 Statistical Mechanics +0811.3645 Biomolecules +0812.0309 Mesoscale and Nanoscale Physics +0812.2473 Probability +0901.3304 Probability +0903.0225 Strongly Correlated Electrons +0904.3386 Phenomenology +0904.4742 Logic +0905.2155 Probability +0905.2606 Materials Science +0906.3154 Probability +0906.5525 Rings and Algebras +0907.0006 Cosmology and Nongalactic Astrophysics +0907.2009 Probability +0907.4789 Geometric Topology +0908.0185 +0908.2052 +0909.3545 +0910.3376 +0910.5672 Analysis of PDEs +0911.0854 Mesoscale and Nanoscale Physics +0911.1315 Cosmology and Nongalactic Astrophysics +0911.4170 Algebraic Geometry +1001.0591 Computational Geometry +1001.1823 Quantum Gases +1002.0875 Probability +1002.0962 Materials Science +1002.4164 General Topology +1002.4656 Theory +1002.4753 Probability +1003.2140 Mesoscale and Nanoscale Physics +1003.4389 Mesoscale and Nanoscale Physics +1004.0264 +1005.3448 Number Theory +1005.4997 Computation and Language +1006.1127 Phenomenology +1006.2876 Theory +1007.0416 Mesoscale and Nanoscale Physics +1007.1184 Superconductivity +1007.1333 Formal Languages and Automata Theory +1007.2337 Commutative Algebra +1007.2418 +1007.3494 Cosmology and Nongalactic Astrophysics +1007.4513 Phenomenology +1007.5405 Phenomenology +1008.1513 +1008.1599 +1008.2142 Other Condensed Matter +1008.3842 Theory +1008.3911 Physics and Society +1008.4142 Theory +1008.5089 Algebraic Topology +1008.5221 +1009.0044 +1009.2188 Classical Analysis and ODEs +1009.2707 Statistics Theory +1009.2736 Cosmology and Nongalactic Astrophysics +1009.2969 Mesoscale and Nanoscale Physics +1009.3341 Commutative Algebra +1009.3359 Digital Libraries +1009.3413 Phenomenology +1009.4692 Strongly Correlated Electrons +1009.5620 Algebraic Geometry +1010.0053 Disordered Systems and Neural Networks +1010.0225 Logic in Computer Science +1010.1184 Representation Theory +1010.1736 Chemical Physics +1010.1802 Materials Science +1010.1903 +1010.2013 Differential Geometry +1010.2218 +1010.2554 +1010.3094 +1010.3429 Theory +1010.4979 Atomic Physics +1010.4993 Mesoscale and Nanoscale Physics +1010.6053 Lattice +1011.0130 Analysis of PDEs +1011.3134 Mesoscale and Nanoscale Physics +1011.5150 Chemical Physics +1011.5233 Mesoscale and Nanoscale Physics +1011.5594 +1011.5916 Strongly Correlated Electrons +1011.6231 Phenomenology +1011.6356 Mesoscale and Nanoscale Physics +1011.6578 General Physics +1012.1510 Soft Condensed Matter +1012.2556 Optics +1012.2801 Group Theory +1012.4026 Materials Science +1012.4078 Methodology +1012.5742 Theory +1101.1263 Quantum Gases +1101.1861 Analysis of PDEs +1101.4141 Geophysics +1101.5698 +1101.5775 Materials Science +1101.5932 Superconductivity +1102.0389 Probability +1102.0975 High Energy Astrophysical Phenomena +1102.1636 Number Theory +1102.1805 Materials Science +1102.1998 +1102.2288 Theory +1102.2346 Lattice +1102.2853 Combinatorics +1102.3908 Theory +1102.4702 Astrophysics of Galaxies +1102.4726 Cosmology and Nongalactic Astrophysics +1103.0705 Spectral Theory +1103.1067 General Physics +1103.1210 +1103.1620 General Physics +1103.1651 General Physics +1103.1670 Classical Analysis and ODEs +1103.1873 Logic +1103.2070 Neurons and Cognition +1103.2317 Probability +1103.2321 Classical Analysis and ODEs +1103.2371 Dynamical Systems +1103.2373 Neurons and Cognition +1103.2376 Artificial Intelligence +1103.2382 Neurons and Cognition +1103.2383 Differential Geometry +1103.2385 Geophysics +1103.2393 Mesoscale and Nanoscale Physics +1103.2395 +1103.2399 +1103.2406 Databases +1103.2408 Databases +1103.2409 Databases +1103.2410 Databases +1103.2415 Combinatorics +1103.2423 Exactly Solvable and Integrable Systems +1103.2439 Group Theory +1103.2444 Representation Theory +1103.2446 Superconductivity +1103.2447 Computational Engineering, Finance, and Science +1103.2449 Geometric Topology +1103.2462 Algebraic Topology +1103.2463 +1103.2466 +1103.2467 Physics and Society +1103.2470 Dynamical Systems +1103.2471 +1103.2472 Number Theory +1103.2476 Theory +1103.2483 Other Condensed Matter +1103.2485 Differential Geometry +1103.2487 Combinatorics +1103.2488 Differential Geometry +1103.2491 Learning +1103.2493 Computer Science and Game Theory +1103.2494 Group Theory +1103.2498 Analysis of PDEs +1103.2501 Information Theory +1103.2503 Information Theory +1103.2507 Soft Condensed Matter +1103.2508 Phenomenology +1103.2509 +1103.2510 Geometric Topology +1103.2513 Combinatorics +1103.2517 Fluid Dynamics +1103.2520 Computer Science and Game Theory +1103.2526 +1103.2534 Probability +1103.2549 +1103.2552 Metric Geometry +1103.2555 Group Theory +1103.2557 +1103.2560 Information Theory +1103.2561 Classical Physics +1103.2576 Geometric Topology +1103.2580 Information Theory +1103.2581 Data Structures and Algorithms +1103.2590 Distributed, Parallel, and Cluster Computing +1103.2600 Group Theory +1103.2601 Optimization and Control +1103.2605 Neurons and Cognition +1103.2609 +1103.2610 Combinatorics +1103.2614 Optics +1103.2619 Mesoscale and Nanoscale Physics +1103.2626 Cryptography and Security +1103.2629 Complex Variables +1103.2630 +1103.2650 Combinatorics +1103.2657 Optimization and Control +1103.2663 Instrumentation and Methods for Astrophysics +1103.2670 Machine Learning +1103.2672 Optics +1103.2673 Algebraic Geometry +1103.2678 Statistical Mechanics +1103.2687 Materials Science +1103.2690 Information Theory +1103.2691 Information Theory +1103.2694 Quantum Algebra +1103.2695 Optimization and Control +1103.2696 Algebraic Geometry +1103.2702 +1103.2707 Dynamical Systems +1103.2724 Combinatorics +1103.2725 Rings and Algebras +1103.2728 +1103.2733 Solar and Stellar Astrophysics +1103.2741 Neural and Evolutionary Computing +1103.2747 Functional Analysis +1103.2760 Soft Condensed Matter +math/0503632 Algebraic Geometry +math/0605286 Analysis of PDEs +math/0611913 Probability +math/0702839 Algebraic Geometry +nucl-th/9805029 +physics/0506074 Physics and Society +quant-ph/0504093 +quant-ph/0511234 +quant-ph/0609175 +quant-ph/9805087 +0708.0977 Statistical Mechanics +0708.2960 Classical Analysis and ODEs +0709.3796 Differential Geometry +0709.4332 Classical Analysis and ODEs +0710.0958 Statistical Mechanics +0711.0446 Differential Geometry +0711.1664 Differential Geometry +0712.0331 Number Theory +0801.2131 Geometric Topology +0801.3551 Algebraic Geometry +0802.1853 General Topology +0802.1856 General Topology +0802.2134 Networking and Internet Architecture +0804.2843 Algebraic Geometry +0804.3645 Differential Geometry +0805.1583 General Topology +0805.2705 Statistical Mechanics +0805.4755 +0809.0101 Statistical Mechanics +0809.4430 Theory +0810.3021 General Topology +0811.0796 Group Theory +0811.1371 General Topology +0811.4272 General Topology +0811.4276 General Topology +0811.4384 Chaotic Dynamics +0812.1311 Theory +0901.0236 General Topology +0901.1993 Atmospheric and Oceanic Physics +0902.1556 Combinatorics +0905.3669 Atmospheric and Oceanic Physics +0906.0483 Algebraic Geometry +0906.3138 Astrophysics of Galaxies +0906.3344 Atomic Physics +0906.5546 Methodology +0907.1623 +0908.2229 General Topology +0908.2439 +0908.3687 Metric Geometry +0909.1085 Atmospheric and Oceanic Physics +0909.4711 Materials Science +0910.2214 Analysis of PDEs +0910.5380 Combinatorics +0911.5168 Theory +1001.3499 Classical Analysis and ODEs +1002.0822 Optimization and Control +1002.2314 Classical Analysis and ODEs +1002.2900 Optimization and Control +1002.3357 Number Theory +1002.3926 Category Theory +1003.2137 Earth and Planetary Astrophysics +1003.6020 Classical Analysis and ODEs +1006.0283 Analysis of PDEs +1006.3092 Functional Analysis +1006.4114 Genomics +1007.2412 Theory +1008.0340 Statistical Mechanics +1008.3189 Strongly Correlated Electrons +1008.5100 Phenomenology +1008.5299 Combinatorics +1009.0674 Theory +1009.2462 Fluid Dynamics +1009.3080 Classical Analysis and ODEs +1010.3730 High Energy Astrophysical Phenomena +1010.5229 +1011.2928 +1011.4162 +1012.0518 Earth and Planetary Astrophysics +1012.2212 Logic +1012.3981 Theory +1012.4093 Genomics +1101.2077 Algebraic Geometry +1101.2171 Phenomenology +1101.4100 Information Theory +1101.4148 Phenomenology +1101.4194 Theory +1102.0970 Analysis of PDEs +1102.2869 High Energy Astrophysical Phenomena +1102.5726 Phenomenology +1103.0091 +1103.0492 Statistical Mechanics +1103.1159 Strongly Correlated Electrons +1103.1234 Phenomenology +1103.2305 Cosmology and Nongalactic Astrophysics +1103.4628 Cosmology and Nongalactic Astrophysics +1103.5118 Metric Geometry +1103.5338 Numerical Analysis +1103.5729 Mesoscale and Nanoscale Physics +1104.0376 Theory +1104.0695 Superconductivity +1104.1667 Cosmology and Nongalactic Astrophysics +1104.1775 Applications +1104.3486 Materials Science +1104.5522 Materials Science +1104.5667 Methodology +1105.1239 Classical Analysis and ODEs +1105.1542 Differential Geometry +1105.3904 Theory +1105.4384 Algebraic Geometry +1105.4555 Information Theory +1105.4954 Analysis of PDEs +1105.5149 +1105.5472 Phenomenology +1105.5690 Differential Geometry +1106.0266 Phenomenology +1106.0827 Fluid Dynamics +1106.0842 Atomic Physics +1106.0948 Strongly Correlated Electrons +1106.1078 Statistical Mechanics +1106.1249 Differential Geometry +1106.2293 Experiment +1106.3989 Strongly Correlated Electrons +1106.4365 Phenomenology +1106.4372 Theory +1106.5114 Phenomenology +1106.5336 Phenomenology +1106.5684 Theory +1106.5765 Quantum Gases +1107.0573 Number Theory +1107.0761 Strongly Correlated Electrons +1107.1744 Optimization and Control +1107.2008 Phenomenology +1107.2017 Theory +1107.2274 +1107.2285 Data Analysis, Statistics and Probability +1107.3354 Theory +1107.3468 +1107.3609 Atomic Physics +1107.3829 Phenomenology +1107.3917 +1107.4262 Differential Geometry +1107.4315 Optics +1107.4326 Mesoscale and Nanoscale Physics +1107.4582 Theory +1107.5238 Phenomenology +1107.5498 Strongly Correlated Electrons +1107.5580 Theory +1107.5620 Physics and Society +1107.5629 Superconductivity +1107.5844 +1108.0886 Quantum Gases +1108.1298 Statistical Mechanics +1108.1440 Physics and Society +1108.2558 Probability +1108.2733 Phenomenology +1108.2807 Quantum Gases +1108.4574 Quantum Gases +1108.4786 Quantum Gases +1109.0137 Systems and Control +1109.0504 Superconductivity +1109.0711 History and Philosophy of Physics +1109.1159 Cosmology and Nongalactic Astrophysics +1109.1328 Strongly Correlated Electrons +1109.1994 Networking and Internet Architecture +1109.2782 Information Theory +1109.4943 Solar and Stellar Astrophysics +1109.5254 Group Theory +1109.5357 General Physics +1109.5502 Solar and Stellar Astrophysics +1109.5739 +1109.5863 Functional Analysis +1109.6650 Materials Science +1109.6930 Phenomenology +1110.0073 Information Theory +1110.0412 Differential Geometry +1110.0564 Information Theory +1110.0773 Astrophysics of Galaxies +1110.1146 Theory +1110.1325 Experiment +1110.1477 Strongly Correlated Electrons +1110.1526 Soft Condensed Matter +1110.1573 Mesoscale and Nanoscale Physics +1110.1627 Other Computer Science +1110.1642 Experiment +1110.1652 Experiment +1110.1654 General Physics +1110.1660 Phenomenology +1110.1667 Combinatorics +1110.1671 Classical Analysis and ODEs +1110.1672 Probability +1110.1673 Experiment +1110.1676 Numerical Analysis +1110.1677 Materials Science +1110.1685 Distributed, Parallel, and Cluster Computing +1110.1689 Representation Theory +1110.1690 Numerical Analysis +1110.1692 Solar and Stellar Astrophysics +1110.1693 Data Structures and Algorithms +1110.1697 Optimization and Control +1110.1698 Classical Analysis and ODEs +1110.1700 Databases +1110.1701 Cryptography and Security +1110.1702 Optics +1110.1703 Chemical Physics +1110.1706 Biomolecules +1110.1708 Computational Engineering, Finance, and Science +1110.1709 Analysis of PDEs +1110.1712 Analysis of PDEs +1110.1713 Classical Analysis and ODEs +1110.1714 Complex Variables +1110.1723 +1110.1724 Populations and Evolution +1110.1727 Statistical Finance +1110.1729 Databases +1110.1730 Distributed, Parallel, and Cluster Computing +1110.1734 Networking and Internet Architecture +1110.1735 Representation Theory +1110.1738 Number Theory +1110.1741 Dynamical Systems +1110.1747 Experiment +1110.1749 Differential Geometry +1110.1753 Cryptography and Security +1110.1756 Combinatorics +1110.1760 Optimization and Control +1110.1766 Logic +1110.1767 Networking and Internet Architecture +1110.1768 +1110.1769 Machine Learning +1110.1771 Classical Analysis and ODEs +1110.1775 Analysis of PDEs +1110.1781 Learning +1110.1790 Phenomenology +1110.1792 Geometric Topology +1110.1796 Robotics +1110.1797 Materials Science +1110.1798 Algebraic Topology +1110.1803 Quantitative Methods +1110.1805 Solar and Stellar Astrophysics +1110.1806 +1110.1810 Number Theory +1110.1811 Rings and Algebras +1110.1834 Analysis of PDEs +1110.1836 Algebraic Geometry +1110.1837 Analysis of PDEs +1110.1838 Computational Physics +1110.1839 Atmospheric and Oceanic Physics +1110.1841 General Physics +1110.1846 Statistics Theory +1110.1849 Group Theory +1110.1851 Cryptography and Security +1110.1854 +1110.1855 High Energy Astrophysical Phenomena +1110.1861 Algebraic Geometry +1110.1862 Computer Science and Game Theory +1110.1863 Phenomenology +1110.1866 Programming Languages +1110.1867 Algebraic Geometry +1110.1869 Phenomenology +1110.1872 Materials Science +1110.1873 Instrumentation and Methods for Astrophysics +1110.1876 Number Theory +1110.1877 Cosmology and Nongalactic Astrophysics +1110.1878 +1110.1880 Computation +1110.1881 Soft Condensed Matter +1110.1882 Quantum Algebra +1110.1889 Probability +1110.1891 Information Theory +1110.1894 Data Structures and Algorithms +1110.1895 +1110.1896 Computational Complexity +1110.1898 Commutative Algebra +1110.1900 Experiment +1110.1904 Statistics Theory +1110.1905 Experiment +1110.1907 Logic +1110.1908 Number Theory +1110.1909 Experiment +1110.1910 Experiment +1110.1911 Dynamical Systems +1110.1914 Physics and Society +1110.1915 Combinatorics +1110.1917 +1110.1920 Experiment +1110.1923 General Topology +1110.1925 Cosmology and Nongalactic Astrophysics +1110.1926 Solar and Stellar Astrophysics +1110.1930 Information Theory +1110.1932 Rings and Algebras +1110.1935 Experiment +1110.1936 Astrophysics of Galaxies +1110.1938 Experiment +1110.1947 Strongly Correlated Electrons +1110.1953 Mesoscale and Nanoscale Physics +1110.1957 Software Engineering +1110.1960 Algebraic Geometry +1110.1964 Data Structures and Algorithms +1110.1965 Accelerator Physics +1110.1972 Applications +1110.1973 Phenomenology +1110.1977 Number Theory +1110.1981 Differential Geometry +1110.1982 +1110.1988 Algebraic Geometry +1110.1991 Distributed, Parallel, and Cluster Computing +1110.1992 Software Engineering +1110.1995 Experiment +1110.2001 Dynamical Systems +1110.2003 Differential Geometry +1110.2008 Solar and Stellar Astrophysics +1110.2010 Solar and Stellar Astrophysics +1110.2012 Instrumentation and Detectors +1110.2016 Accelerator Physics +1110.2022 Accelerator Physics +1110.2024 Accelerator Physics +1110.2025 +1110.2027 Accelerator Physics +1110.2033 Mesoscale and Nanoscale Physics +1110.2035 Materials Science +1110.2045 Other Condensed Matter +1110.2047 Classical Analysis and ODEs +1110.2048 Algebraic Geometry +1110.2051 Cosmology and Nongalactic Astrophysics +1110.2052 Algebraic Geometry +1110.2055 Computational Engineering, Finance, and Science +1110.2062 Experiment +1110.2066 Mesoscale and Nanoscale Physics +1110.2074 Emerging Technologies +1110.2078 Rings and Algebras +1110.2081 +1110.2083 Experiment +1110.2084 Materials Science +1110.2089 Numerical Analysis +1110.2090 Number Theory +1110.2097 Superconductivity +1110.2099 Experiment +1110.2101 Cosmology and Nongalactic Astrophysics +1110.2102 Optimization and Control +1110.2106 Representation Theory +1110.2108 Experiment +1110.2110 Experiment +1110.2115 Theory +1110.2120 Solar and Stellar Astrophysics +1110.2121 Instrumentation and Detectors +1110.2125 Instrumentation and Detectors +1110.2126 Phenomenology +1110.2130 Experiment +1110.2141 Experiment +1110.2142 Geometric Topology +1110.2145 +1110.2149 Atmospheric and Oceanic Physics +1110.2151 Operator Algebras +1110.2153 Physics and Society +1110.2155 Probability +1110.2161 Phenomenology +astro-ph/0512321 +cond-mat/0504383 Strongly Correlated Electrons +cond-mat/9803206 Statistical Mechanics +cond-mat/9803279 +cond-mat/9804163 Statistical Mechanics +cond-mat/9805307 +cond-mat/9808035 Disordered Systems and Neural Networks +cond-mat/9902041 Statistical Mechanics +cond-mat/9903102 Statistical Mechanics +cond-mat/9903413 Statistical Mechanics +cs/0607093 Computational Complexity +hep-ex/9908061 Experiment +hep-ph/0107272 Phenomenology +hep-ph/0107311 Phenomenology +hep-ph/0209257 Phenomenology +hep-ph/0212292 Phenomenology +hep-ph/0302138 Phenomenology +hep-ph/0305010 Phenomenology +hep-ph/0311099 Phenomenology +hep-ph/0404271 Phenomenology +hep-ph/0505029 Phenomenology +hep-ph/0511109 Phenomenology +hep-ph/9906437 Phenomenology +hep-th/0008097 Theory +hep-th/0108185 Theory +hep-th/0109053 Theory +hep-th/0211168 Theory +hep-th/0302135 Theory +hep-th/0305139 Theory +hep-th/0306230 Theory +hep-th/0307283 Theory +hep-th/0308076 Theory +hep-th/0404094 Theory +hep-th/0406039 Theory +hep-th/0411142 Theory +hep-th/0411184 Theory +hep-th/0501238 Theory +hep-th/0503153 Theory +hep-th/0511004 Theory +hep-th/0609061 Theory +hep-th/9203060 Theory +hep-th/9208031 Theory +hep-th/9402119 Theory +hep-th/9405081 Theory +hep-th/9412236 Theory +hep-th/9505100 Theory +hep-th/9508107 Theory +hep-th/9601108 Theory +hep-th/9608129 Theory +hep-th/9808147 Theory +hep-th/9903006 Theory +hep-th/9910075 Theory +hep-th/9910248 Theory +math/0103063 Algebraic Geometry +math/0204160 Algebraic Geometry +math/0211456 Algebraic Geometry +math/0407021 Algebraic Topology +math/0410589 Algebraic Topology +math/0509395 Geometric Topology +math/0602171 Optimization and Control +math/0602510 K-Theory and Homology +math/0608358 Analysis of PDEs +math/0608370 Algebraic Geometry +math/0610025 Dynamical Systems +math/9804050 Algebraic Geometry +nucl-ex/9912010 +nucl-th/0005028 +nucl-th/0006061 +nucl-th/0211036 +nucl-th/0305063 +nucl-th/0312055 +nucl-th/9806012 +physics/0601117 Atmospheric and Oceanic Physics +physics/0612222 Atmospheric and Oceanic Physics +quant-ph/0202066 +quant-ph/9902074 +0705.0561 Data Structures and Algorithms +0705.3649 +0709.0506 +0709.2912 +0710.0036 Mesoscale and Nanoscale Physics +0710.3300 Mesoscale and Nanoscale Physics +0802.1219 +0803.1853 +0806.0411 +0808.1303 +0809.3978 Trading and Market Microstructure +0810.2188 Complex Variables +0810.2259 Phenomenology +0811.2343 Experiment +0811.4169 Phenomenology +0902.3863 Algebraic Geometry +0902.4184 Mesoscale and Nanoscale Physics +0903.1811 Analysis of PDEs +0903.2793 Phenomenology +0903.3766 Rings and Algebras +0904.1965 +0906.0511 Cosmology and Nongalactic Astrophysics +0907.4242 +0908.0731 Phenomenology +0908.0779 +0908.1408 Cosmology and Nongalactic Astrophysics +0909.1044 General Physics +0909.5254 Cosmology and Nongalactic Astrophysics +0910.0235 Cosmology and Nongalactic Astrophysics +0910.0911 Phenomenology +0911.0034 Phenomenology +0912.0935 General Physics +0912.4789 Theory +0912.4895 K-Theory and Homology +1002.3784 Methodology +1003.1380 Theory +1003.2330 General Physics +1004.0791 High Energy Astrophysical Phenomena +1005.0191 Algebraic Geometry +1005.0409 Instrumentation and Detectors +1005.1170 Strongly Correlated Electrons +1005.5389 Cosmology and Nongalactic Astrophysics +1006.1495 Quantum Gases +1006.3080 Phenomenology +1006.4198 Cosmology and Nongalactic Astrophysics +1006.5506 Atomic Physics +1007.3309 Mesoscale and Nanoscale Physics +1007.4953 Quantum Gases +1008.0319 +1008.1157 Instrumentation and Detectors +1008.1193 Numerical Analysis +1008.1430 Statistical Mechanics +1008.2318 Instrumentation and Detectors +1008.2392 Instrumentation and Detectors +1008.2466 Instrumentation and Detectors +1008.3665 Theory +1008.5049 Phenomenology +1008.5258 Cosmology and Nongalactic Astrophysics +1009.0719 Instrumentation and Detectors +1009.1878 Phenomenology +1009.2307 Combinatorics +1009.5682 Phenomenology +1009.5858 Cosmology and Nongalactic Astrophysics +1009.5868 Quantum Gases +1010.0061 Statistical Mechanics +1010.0236 Solar and Stellar Astrophysics +1010.0527 Quantum Gases +1010.2740 Theory +1010.3888 +1010.5835 Algebraic Geometry +1011.0569 +1011.1357 +1011.1500 Phenomenology +1011.2217 Cosmology and Nongalactic Astrophysics +1011.2422 Phenomenology +1011.2423 Lattice +1011.2468 High Energy Astrophysical Phenomena +1011.2577 Lattice +1011.2634 Phenomenology +1011.2749 Theory +1011.3418 +1011.3606 Phenomenology +1011.3972 Probability +1011.4148 Cosmology and Nongalactic Astrophysics +1011.4249 +1011.4820 Phenomenology +1011.4926 Theory +1011.5000 Cosmology and Nongalactic Astrophysics +1011.5748 Phenomenology +1011.6352 Phenomenology +1012.0341 Phenomenology +1012.2077 Phenomenology +1012.2324 +1012.2374 +1012.2554 Theory +1012.2595 Theory +1012.3004 Mesoscale and Nanoscale Physics +1012.3082 Classical Physics +1012.4728 +1012.5596 Cosmology and Nongalactic Astrophysics +1012.5815 Artificial Intelligence +1101.0584 Data Analysis, Statistics and Probability +1101.0835 Phenomenology +1101.1120 Phenomenology +1101.1673 +1101.2542 Mesoscale and Nanoscale Physics +1101.2755 Experiment +1101.2921 +1101.3116 +1101.3346 Theory +1101.3497 +1101.3601 Phenomenology +1101.4361 Theory +1101.4375 +1101.4956 +1101.5538 Phenomenology +1101.5548 Phenomenology +1101.5575 Phenomenology +1101.5598 Group Theory +1101.5804 +1101.5891 Theory +1101.6026 Materials Science +1102.0440 Theory +1102.0616 +1102.0640 Quantum Gases +1102.0879 Phenomenology +1102.0935 Experiment +1102.1360 +1102.2499 Phenomenology +1102.2898 Phenomenology +1102.3113 Quantum Gases +1102.3175 Phenomenology +1102.3361 Phenomenology +1102.3412 Phenomenology +1102.3786 Instrumentation and Detectors +1102.3886 +1102.4067 +1102.4090 Solar and Stellar Astrophysics +1102.4465 Lattice +1102.4704 Phenomenology +1102.4780 Theory +1102.5148 Phenomenology +1102.5284 +1102.5695 Theory +1103.0493 Phenomenology +1103.1591 Phenomenology +1103.2334 Phenomenology +1103.4743 +1103.4746 +1103.4882 Phenomenology +1103.4987 General Topology +1103.5135 +1103.5752 Cosmology and Nongalactic Astrophysics +1103.5829 Materials Science +1104.0390 +1104.0757 Strongly Correlated Electrons +1104.1438 Instrumentation and Detectors +1104.1718 Classical Physics +1104.1969 Phenomenology +1104.2253 Theory +1104.2521 Cosmology and Nongalactic Astrophysics +1104.2532 Neurons and Cognition +1104.3846 Solar and Stellar Astrophysics +1104.4421 Atomic Physics +1105.0309 +1105.0337 Materials Science +1105.1212 Statistics Theory +1105.1498 +1105.1529 Representation Theory +1105.1634 Phenomenology +1105.1759 Adaptation and Self-Organizing Systems +1105.1870 Cosmology and Nongalactic Astrophysics +1105.2000 Phenomenology +1105.2040 Data Structures and Algorithms +1105.2048 Data Structures and Algorithms +1105.2049 Combinatorics +1105.2059 General Physics +1105.2064 Spectral Theory +1105.2072 Methodology +1105.2076 Algebraic Geometry +1105.2080 Phenomenology +1105.2094 Plasma Physics +1105.2104 Instrumentation and Detectors +1105.2108 Probability +1105.2113 Accelerator Physics +1105.2121 Statistical Mechanics +1105.2123 General Finance +1105.2127 Mesoscale and Nanoscale Physics +1105.2128 Statistics Theory +1105.2130 Classical Analysis and ODEs +1105.2131 Soft Condensed Matter +1105.2132 Optimization and Control +1105.2134 Solar and Stellar Astrophysics +1105.2136 Algebraic Geometry +1105.2139 Phenomenology +1105.2143 Number Theory +1105.2145 Applications +1105.2147 Number Theory +1105.2149 Functional Analysis +1105.2153 Metric Geometry +1105.2156 Classical Analysis and ODEs +1105.2158 Plasma Physics +1105.2159 +1105.2165 Statistics Theory +1105.2166 Functional Analysis +1105.2169 Optimization and Control +1105.2170 Combinatorics +1105.2177 Mesoscale and Nanoscale Physics +1105.2182 Classical Analysis and ODEs +1105.2183 Probability +1105.2187 Classical Analysis and ODEs +1105.2188 Complex Variables +1105.2190 Chemical Physics +1105.2195 Plasma Physics +1105.2196 Strongly Correlated Electrons +1105.2199 Strongly Correlated Electrons +1105.2202 Discrete Mathematics +1105.2211 Optimization and Control +1105.2213 Distributed, Parallel, and Cluster Computing +1105.2214 Physics and Society +1105.2215 Rings and Algebras +1105.2218 Cosmology and Nongalactic Astrophysics +1105.2220 Methodology +1105.2228 Discrete Mathematics +1105.2237 Rings and Algebras +1105.2238 Geometric Topology +1105.2240 Number Theory +1105.2242 Number Theory +1105.2243 Networking and Internet Architecture +1105.2245 Instrumentation and Detectors +1105.2252 Classical Analysis and ODEs +1105.2254 Optimization and Control +1105.2257 Data Analysis, Statistics and Probability +1105.2260 Commutative Algebra +1105.2265 Superconductivity +1105.2266 Computational Physics +1105.2269 Classical Analysis and ODEs +1105.2271 Dynamical Systems +1105.2274 Learning +1105.2276 Statistical Mechanics +1105.2279 Lattice +1105.2283 Information Theory +astro-ph/0003484 +astro-ph/0007004 +astro-ph/0008063 +astro-ph/0011524 +astro-ph/0011525 +astro-ph/0102173 +astro-ph/0103300 +astro-ph/0103369 +astro-ph/0104327 +astro-ph/0106035 +astro-ph/0108338 +astro-ph/0110209 +astro-ph/0112227 +astro-ph/0112505 +astro-ph/0202159 +astro-ph/0202388 +astro-ph/0202411 +astro-ph/0205302 +astro-ph/0205408 +astro-ph/0206040 +astro-ph/0206043 +astro-ph/0206155 +astro-ph/0206371 +astro-ph/0207248 +astro-ph/0208100 +astro-ph/0208308 +astro-ph/0209117 +astro-ph/0210096 +astro-ph/0210379 +astro-ph/0210512 +astro-ph/0210696 +astro-ph/0211550 +astro-ph/0212313 +astro-ph/0212357 +astro-ph/0301031 +astro-ph/0301273 +astro-ph/0301416 +astro-ph/0302208 +astro-ph/0302215 +astro-ph/0302217 +astro-ph/0302218 +astro-ph/0302220 +astro-ph/0302222 +astro-ph/0302224 +astro-ph/0302225 +astro-ph/0302504 +astro-ph/0303026 +astro-ph/0303240 +astro-ph/0303400 +astro-ph/0305097 +astro-ph/0306291 +astro-ph/0306561 +astro-ph/0311002 +astro-ph/0311102 +astro-ph/0311268 +astro-ph/0312036 +astro-ph/0312113 +astro-ph/0312176 +astro-ph/0312275 +astro-ph/0312284 +astro-ph/0401138 +astro-ph/0401383 +astro-ph/0401578 +astro-ph/0402057 +astro-ph/0402092 +astro-ph/0402345 +astro-ph/0402442 +astro-ph/0402487 +astro-ph/0402588 +astro-ph/0402663 +astro-ph/0403188 +astro-ph/0404168 +astro-ph/0404535 +astro-ph/0406496 +astro-ph/0407158 +astro-ph/0407437 +astro-ph/0408456 +astro-ph/0408488 +astro-ph/0408565 +astro-ph/0409380 +astro-ph/0409573 +astro-ph/0410467 +astro-ph/0410680 +astro-ph/0410685 +astro-ph/0411007 +astro-ph/0411074 +astro-ph/0411122 +astro-ph/0412142 +astro-ph/0412161 +astro-ph/0412173 +astro-ph/0412395 +astro-ph/0412613 +astro-ph/0412626 +astro-ph/0501046 +astro-ph/0501637 +astro-ph/0502244 +astro-ph/0502253 +astro-ph/0502380 +astro-ph/0502493 +astro-ph/0503192 +astro-ph/0503304 +astro-ph/0503363 +astro-ph/0503398 +astro-ph/0503437 +astro-ph/0503668 +astro-ph/0504132 +astro-ph/0504191 +astro-ph/0504296 +astro-ph/0504557 +astro-ph/0504610 +astro-ph/0504616 +astro-ph/0505330 +astro-ph/0505390 +astro-ph/0505426 +astro-ph/0505566 +astro-ph/0506036 +astro-ph/0506318 +astro-ph/0508002 +astro-ph/0509581 +astro-ph/0511629 +astro-ph/0512345 +astro-ph/0512479 +astro-ph/0601193 +astro-ph/0601226 +astro-ph/0602137 +astro-ph/0602147 +astro-ph/0602381 +astro-ph/0603587 +astro-ph/0603808 +astro-ph/0604214 +astro-ph/0605327 +astro-ph/0607458 +astro-ph/0609003 +astro-ph/0612274 +astro-ph/0701052 +astro-ph/0701276 +astro-ph/0701692 +astro-ph/0702495 +astro-ph/9302005 +astro-ph/9312019 +astro-ph/9403034 +astro-ph/9407089 +astro-ph/9409004 +astro-ph/9501001 +astro-ph/9502087 +astro-ph/9507003 +astro-ph/9603044 +astro-ph/9605036 +astro-ph/9608201 +astro-ph/9609044 +astro-ph/9704061 +astro-ph/9708146 +astro-ph/9801126 +astro-ph/9803093 +astro-ph/9808129 +astro-ph/9906203 +astro-ph/9907018 +cond-mat/0104448 Mesoscale and Nanoscale Physics +cond-mat/0404212 Mesoscale and Nanoscale Physics +cond-mat/0406190 Soft Condensed Matter +cond-mat/0409417 Superconductivity +cond-mat/9803026 Statistical Mechanics +gr-qc/0004032 +gr-qc/0406065 +gr-qc/0505037 +gr-qc/9701026 +gr-qc/9809002 +hep-ex/0212034 Experiment +hep-ex/0304013 Experiment +hep-ex/9804007 Experiment +hep-ex/9809025 Experiment +hep-ph/0001027 Phenomenology +hep-ph/0002155 Phenomenology +hep-ph/0003122 Phenomenology +hep-ph/0003251 Phenomenology +hep-ph/0004118 Phenomenology +hep-ph/0004232 Phenomenology +hep-ph/0005286 Phenomenology +hep-ph/0009183 Phenomenology +hep-ph/0103075 Phenomenology +hep-ph/0104293 Phenomenology +hep-ph/0104294 Phenomenology +hep-ph/0105140 Phenomenology +hep-ph/0105237 Phenomenology +hep-ph/0106239 Phenomenology +hep-ph/0106241 Phenomenology +hep-ph/0107057 Phenomenology +hep-ph/0108168 Phenomenology +hep-ph/0111101 Phenomenology +hep-ph/0111215 Phenomenology +hep-ph/0111465 Phenomenology +hep-ph/0201130 Phenomenology +hep-ph/0201207 Phenomenology +hep-ph/0202081 Phenomenology +hep-ph/0202178 Phenomenology +hep-ph/0203272 Phenomenology +hep-ph/0204030 Phenomenology +hep-ph/0204041 Phenomenology +hep-ph/0205088 Phenomenology +hep-ph/0205327 Phenomenology +hep-ph/0206258 Phenomenology +hep-ph/0208162 Phenomenology +hep-ph/0209173 Phenomenology +hep-ph/0209195 Phenomenology +hep-ph/0210181 Phenomenology +hep-ph/0211059 Phenomenology +hep-ph/0305090 Phenomenology +hep-ph/0306008 Phenomenology +hep-ph/0306189 Phenomenology +hep-ph/0309152 Phenomenology +hep-ph/0309252 Phenomenology +hep-ph/0312224 Phenomenology +hep-ph/0312249 Phenomenology +hep-ph/0401235 Phenomenology +hep-ph/0404095 Phenomenology +hep-ph/0404168 Phenomenology +hep-ph/0407154 Phenomenology +hep-ph/0408237 Phenomenology +hep-ph/0502129 Phenomenology +hep-ph/0503186 Phenomenology +hep-ph/0507067 Phenomenology +hep-ph/0508037 Phenomenology +hep-ph/0509237 Phenomenology +hep-ph/0510081 Phenomenology +hep-ph/0510083 Phenomenology +hep-ph/0510105 Phenomenology +hep-ph/0510300 Phenomenology +hep-ph/0511159 Phenomenology +hep-ph/0511301 Phenomenology +hep-ph/0601053 Phenomenology +hep-ph/0602040 Phenomenology +hep-ph/0607054 Phenomenology +hep-ph/0607129 Phenomenology +hep-ph/9207247 Phenomenology +hep-ph/9301213 Phenomenology +hep-ph/9303275 Phenomenology +hep-ph/9306242 Phenomenology +hep-ph/9306253 Phenomenology +hep-ph/9311225 Phenomenology +hep-ph/9312315 Phenomenology +hep-ph/9401337 Phenomenology +hep-ph/9402284 Phenomenology +hep-ph/9404334 Phenomenology +hep-ph/9405372 Phenomenology +hep-ph/9406308 Phenomenology +hep-ph/9406319 Phenomenology +hep-ph/9409285 Phenomenology +hep-ph/9409381 Phenomenology +hep-ph/9410326 Phenomenology +hep-ph/9503215 Phenomenology +hep-ph/9505334 Phenomenology +hep-ph/9506261 Phenomenology +hep-ph/9506354 Phenomenology +hep-ph/9511446 Phenomenology +hep-ph/9512345 Phenomenology +hep-ph/9606384 Phenomenology +hep-ph/9607359 Phenomenology +hep-ph/9607419 Phenomenology +hep-ph/9611280 Phenomenology +hep-ph/9611352 Phenomenology +hep-ph/9612396 Phenomenology +hep-ph/9705265 Phenomenology +hep-ph/9705266 Phenomenology +hep-ph/9707380 Phenomenology +hep-ph/9709290 Phenomenology +hep-ph/9710533 Phenomenology +hep-ph/9711288 Phenomenology +hep-ph/9711482 Phenomenology +hep-ph/9801253 Phenomenology +hep-ph/9802314 Phenomenology +hep-ph/9802384 Phenomenology +hep-ph/9805266 Phenomenology +hep-ph/9806217 Phenomenology +hep-ph/9807268 Phenomenology +hep-ph/9807502 Phenomenology +hep-ph/9811282 Phenomenology +hep-ph/9811315 Phenomenology +hep-ph/9811463 Phenomenology +hep-ph/9901243 Phenomenology +hep-ph/9901318 Phenomenology +hep-ph/9902254 Phenomenology +hep-ph/9903425 Phenomenology +hep-ph/9904249 Phenomenology +hep-ph/9904448 Phenomenology +hep-ph/9905202 Phenomenology +hep-ph/9906297 Phenomenology +hep-ph/9906374 Phenomenology +hep-ph/9906397 Phenomenology +hep-ph/9908222 Phenomenology +hep-ph/9911264 Phenomenology +hep-ph/9911394 Phenomenology +hep-th/0110103 Theory +hep-th/0303103 Theory +hep-th/0305239 Theory +hep-th/0312161 Theory +hep-th/0409241 Theory +hep-th/9302051 Theory +hep-th/9805144 Theory +math/0702071 Probability +nucl-ex/0412011 +nucl-ex/0701012 +nucl-th/0101048 +nucl-th/0102034 +nucl-th/0108052 +nucl-th/0112030 +nucl-th/0202048 +nucl-th/0206042 +nucl-th/0302005 +nucl-th/0306022 +nucl-th/0307049 +nucl-th/0509094 +nucl-th/0601044 +nucl-th/0605011 +nucl-th/9312002 +nucl-th/9509028 +nucl-th/9703045 +nucl-th/9909006 +nucl-th/9910038 +physics/0003073 Accelerator Physics +physics/0205070 General Physics +physics/0306094 General Physics +physics/0306196 General Physics +physics/0307003 General Physics +quant-ph/0503026 +quant-ph/0611230 +quant-ph/9804021 +0707.2092 Classical Analysis and ODEs +0804.4644 Algebraic Geometry +0805.2277 Algebraic Geometry +0807.4619 +0809.4093 Graphics +0901.0030 Algebraic Geometry +0904.3332 General Physics +0904.4039 Algebraic Geometry +0905.4312 Algebraic Geometry +0905.4757 Optimization and Control +0906.2496 Group Theory +0906.4519 Group Theory +0907.1647 Classical Analysis and ODEs +0907.4714 Algebraic Geometry +0908.4356 Probability +0909.1348 Algebraic Geometry +0910.0100 Algebraic Geometry +0910.3235 Cosmology and Nongalactic Astrophysics +0912.4084 Data Structures and Algorithms +0912.5115 Algebraic Geometry +1001.1324 Dynamical Systems +1001.3662 Commutative Algebra +1001.4278 Information Theory +1002.0166 Statistical Mechanics +1002.3969 +1003.6013 Discrete Mathematics +1004.4114 Algebraic Topology +1005.0729 +1005.3611 Dynamical Systems +1005.3786 +1006.3689 Operator Algebras +1007.0436 Information Theory +1007.4646 Experiment +1009.2131 +1009.2487 Soft Condensed Matter +1009.2533 +1009.5129 Pricing of Securities +1010.1016 Information Theory +1010.1384 Phenomenology +1010.2599 Category Theory +1010.4350 +1010.6027 Phenomenology +1011.0586 Strongly Correlated Electrons +1011.2649 Applications +1011.2668 Experiment +1011.3755 +1011.4529 Algebraic Geometry +1011.5379 +1011.6293 Applications +1012.2112 +1012.3736 Theory +1101.0309 Computation and Language +1101.5558 +1101.6060 +1102.0009 Phenomenology +1102.2113 Phenomenology +1102.2966 Statistical Mechanics +1102.3267 Materials Science +1102.5615 Statistical Mechanics +1103.0413 +1103.0671 Materials Science +1103.0765 Statistical Mechanics +1103.1916 Phenomenology +1103.5051 Mesoscale and Nanoscale Physics +1103.5201 Machine Learning +1103.5350 Mesoscale and Nanoscale Physics +1104.4087 Phenomenology +1105.1343 Phenomenology +1105.1351 Mesoscale and Nanoscale Physics +1105.2267 Computational Physics +1105.4216 +1105.4835 Mesoscale and Nanoscale Physics +1106.1100 Mesoscale and Nanoscale Physics +1106.1540 Algebraic Geometry +1106.3984 Probability +1106.5009 Statistical Mechanics +1106.5809 Mesoscale and Nanoscale Physics +1106.5810 General Physics +1106.5853 Theory +1106.5878 Space Physics +1106.6037 Data Structures and Algorithms +1106.6224 Information Theory +1107.1251 Cosmology and Nongalactic Astrophysics +1107.2647 Physics and Society +1107.3042 Probability +1107.4250 Theory +1107.4447 Optics +1107.5342 History and Overview +1107.5534 Algebraic Geometry +1107.5556 Programming Languages +1107.5592 Methodology +1107.5605 Systems and Control +1107.5607 Systems and Control +1107.5609 +1107.5612 Analysis of PDEs +1107.5618 +1107.5619 Accelerator Physics +1107.5622 Soft Condensed Matter +1107.5624 Complex Variables +1107.5628 Chaotic Dynamics +1107.5632 Strongly Correlated Electrons +1107.5635 +1107.5643 +1107.5645 Information Theory +1107.5647 Classical Analysis and ODEs +1107.5653 Materials Science +1107.5654 Social and Information Networks +1107.5661 Information Retrieval +1107.5664 Classical Physics +1107.5667 Dynamical Systems +1107.5670 +1107.5671 Learning +1107.5674 +1107.5682 Classical Physics +1107.5695 Cosmology and Nongalactic Astrophysics +1107.5698 Classical Analysis and ODEs +1107.5700 Materials Science +1107.5709 Number Theory +1107.5710 Algebraic Geometry +1107.5712 Applications +1107.5717 Theory +1107.5718 Analysis of PDEs +1107.5723 General Physics +1107.5730 Information Theory +1107.5735 Methodology +1107.5739 Materials Science +1107.5742 Logic in Computer Science +1107.5743 Computation and Language +1107.5744 Computation and Language +1107.5759 History and Philosophy of Physics +1107.5760 Experiment +1107.5764 Dynamical Systems +1107.5766 Artificial Intelligence +1107.5767 Atomic Physics +1107.5768 +1107.5775 Optics +1107.5780 Theory +1107.5782 Information Theory +1107.5783 Analysis of PDEs +1107.5786 Probability +1107.5791 +1107.5794 General Physics +1107.5797 +1107.5803 Optics +cond-mat/0404422 Statistical Mechanics +hep-ph/0301066 Phenomenology +math/0401090 Representation Theory +math/0509488 Classical Analysis and ODEs +physics/0411045 Classical Physics +physics/0601090 Classical Physics +physics/0605069 Classical Physics +q-bio/0509022 Neurons and Cognition +q-bio/0510016 Populations and Evolution +q-bio/0510017 Populations and Evolution +q-bio/0510031 Quantitative Methods +0706.2700 Algebraic Geometry +0707.3291 +0710.1172 Combinatorics +0806.2772 General Physics +0807.1011 +0811.4162 Information Theory +0907.3183 Databases +0909.1273 Number Theory +0910.4723 Complex Variables +0911.1536 Optimization and Control +0912.3883 Strongly Correlated Electrons +1001.2229 Logic +1001.5205 +1002.0601 +1002.2053 Number Theory +1002.2302 +1002.4842 Representation Theory +1004.5088 Quantitative Methods +1006.1581 Superconductivity +1006.2414 Combinatorics +1006.4026 Number Theory +1007.3873 Algebraic Geometry +1008.3660 Combinatorics +1009.0073 Superconductivity +1009.0637 +1009.1571 General Physics +1009.3175 Solar and Stellar Astrophysics +1009.5728 Quantum Gases +1010.4338 Mesoscale and Nanoscale Physics +1011.0045 Combinatorics +1011.4431 Biological Physics +1011.5822 Probability +1011.5935 Phenomenology +1012.4216 +1012.5387 Phenomenology +1101.1975 +1101.2796 Algebraic Geometry +1101.4173 Analysis of PDEs +1101.4365 Functional Analysis +1102.0417 Combinatorics +1102.0972 Cosmology and Nongalactic Astrophysics +1102.1176 Space Physics +1102.2177 Soft Condensed Matter +1102.2477 Theory +1102.3598 Solar and Stellar Astrophysics +1103.1299 Algebraic Geometry +1103.1402 Molecular Networks +1103.4408 Differential Geometry +1103.5154 Algebraic Geometry +1103.5423 Dynamical Systems +1104.1365 +1104.4622 Plasma Physics +1104.4928 Symplectic Geometry +1104.4945 Phenomenology +1105.0009 High Energy Astrophysical Phenomena +1105.0223 Strongly Correlated Electrons +1105.1729 Materials Science +1105.2093 Optics +1105.3497 +1105.4573 Mesoscale and Nanoscale Physics +1105.5283 +1105.5338 Experiment +1105.6013 Theory +1106.0514 Phenomenology +1106.0709 Functional Analysis +1106.0801 Strongly Correlated Electrons +1106.1044 Soft Condensed Matter +1106.3224 +1106.4713 Materials Science +1106.5777 Solar and Stellar Astrophysics +1107.1425 Chaotic Dynamics +1107.1977 Materials Science +1107.2048 Phenomenology +1107.2123 Phenomenology +1107.2587 Superconductivity +1107.3935 Experiment +1107.4069 Earth and Planetary Astrophysics +1107.4147 Group Theory +1107.4311 +1108.0219 High Energy Astrophysical Phenomena +1108.0603 +1108.1017 Optics +1108.1038 Soft Condensed Matter +1108.2519 +1108.2524 +1108.3515 Superconductivity +1108.3839 Cosmology and Nongalactic Astrophysics +1108.4458 Phenomenology +1108.5417 Mesoscale and Nanoscale Physics +1109.1914 Graphics +1109.3122 +1109.3407 Quantum Gases +1109.3591 Mesoscale and Nanoscale Physics +1109.3785 History and Philosophy of Physics +1109.4617 Number Theory +1109.4791 Materials Science +1109.5592 +1109.6380 Combinatorics +1109.6513 Earth and Planetary Astrophysics +1110.0077 Disordered Systems and Neural Networks +1110.0210 +1110.0351 Phenomenology +1110.0714 Biological Physics +1110.1305 Disordered Systems and Neural Networks +1110.1323 Quantum Gases +1110.2359 Solar and Stellar Astrophysics +1110.2841 Commutative Algebra +1110.3269 Algebraic Geometry +1110.4087 Differential Geometry +1110.4088 Statistics Theory +1110.4302 Tissues and Organs +1110.4317 Commutative Algebra +1110.4506 Chaotic Dynamics +1110.4686 Fluid Dynamics +1110.4704 Fluid Dynamics +1110.4782 Statistical Mechanics +1110.4843 High Energy Astrophysical Phenomena +1110.4895 Phenomenology +1110.4896 Combinatorics +1110.4898 Combinatorics +1110.4900 Combinatorics +1110.4903 Fluid Dynamics +1110.4906 Data Analysis, Statistics and Probability +1110.4907 Phenomenology +1110.4908 Mesoscale and Nanoscale Physics +1110.4911 Geometric Topology +1110.4920 Functional Analysis +1110.4924 Solar and Stellar Astrophysics +1110.4930 Algebraic Geometry +1110.4933 Functional Analysis +1110.4946 Optimization and Control +1110.4951 Atomic Physics +1110.4953 Number Theory +1110.4954 Number Theory +1110.4957 Solar and Stellar Astrophysics +1110.4959 +1110.4970 Computer Vision and Pattern Recognition +1110.4987 Solar and Stellar Astrophysics +1110.4996 Geometric Topology +1110.4999 Information Theory +1110.5001 Algebraic Geometry +1110.5002 Experiment +1110.5003 Atmospheric and Oceanic Physics +1110.5005 Geometric Topology +1110.5009 Rings and Algebras +1110.5012 Solar and Stellar Astrophysics +1110.5015 Computer Vision and Pattern Recognition +1110.5017 Combinatorics +1110.5018 Materials Science +1110.5021 Exactly Solvable and Integrable Systems +1110.5024 Experiment +1110.5025 Differential Geometry +1110.5028 Logic +1110.5032 High Energy Astrophysical Phenomena +1110.5034 +1110.5041 Group Theory +1110.5043 Plasma Physics +1110.5045 Combinatorics +1110.5051 Learning +1110.5053 Optics +1110.5056 Optics +1110.5057 Social and Information Networks +1110.5059 Probability +1110.5063 Information Theory +1110.5068 Networking and Internet Architecture +1110.5070 +1110.5071 Analysis of PDEs +1110.5072 Physics Education +1110.5073 Chaotic Dynamics +1110.5080 Number Theory +1110.5084 Combinatorics +1110.5087 Phenomenology +1110.5088 +1110.5092 Information Theory +1110.5095 Phenomenology +1110.5101 +1110.5102 Computer Vision and Pattern Recognition +1110.5103 Combinatorics +1110.5104 Superconductivity +1110.5105 Mesoscale and Nanoscale Physics +1110.5115 Differential Geometry +1110.5119 Fluid Dynamics +1110.5120 Fluid Dynamics +1110.5121 +1110.5122 +1110.5123 Genomics +1110.5127 Operator Algebras +1110.5128 Differential Geometry +1110.5129 Operator Algebras +1110.5130 Mesoscale and Nanoscale Physics +1110.5135 +1110.5140 Combinatorics +1110.5143 Theory +1110.5145 Analysis of PDEs +1110.5150 Probability +1110.5152 Strongly Correlated Electrons +1110.5154 Analysis of PDEs +1110.5156 Systems and Control +1110.5159 Numerical Analysis +1110.5160 Phenomenology +1110.5161 Mesoscale and Nanoscale Physics +1110.5169 Algebraic Geometry +1110.5170 +1110.5172 Artificial Intelligence +1110.5173 Social and Information Networks +1110.5174 History and Overview +1110.5177 Classical Physics +1110.5178 Classical Physics +1110.5179 General Physics +1110.5180 Other Condensed Matter +1110.5181 Systems and Control +1110.5183 Robotics +1110.5188 Lattice +1110.5189 Analysis of PDEs +1110.5190 Combinatorics +1110.5197 Statistical Finance +1110.5201 Dynamical Systems +1110.5206 Analysis of PDEs +1110.5207 Adaptation and Self-Organizing Systems +1110.5209 Earth and Planetary Astrophysics +1110.5212 Adaptation and Self-Organizing Systems +1110.5213 +1110.5217 Numerical Analysis +1110.5230 Popular Physics +1110.5231 Accelerator Physics +1110.5238 Machine Learning +1110.5239 Algebraic Geometry +1110.5244 Numerical Analysis +1110.5252 Cryptography and Security +1110.5258 Solar and Stellar Astrophysics +1110.5260 Mesoscale and Nanoscale Physics +1110.5265 Other Quantitative Biology +1110.5267 High Energy Astrophysical Phenomena +1110.5269 Probability +1110.5270 Number Theory +1110.5273 High Energy Astrophysical Phenomena +1110.5274 Fluid Dynamics +1110.5275 Phenomenology +1110.5277 Number Theory +1110.5282 Algebraic Geometry +1110.5283 General Physics +1110.5285 Classical Analysis and ODEs +1110.5286 Geometric Topology +1110.5288 General Physics +1110.5290 Strongly Correlated Electrons +1110.5294 Experiment +1110.5295 Phenomenology +1110.5296 Data Structures and Algorithms +1110.5300 Representation Theory +1110.5305 Numerical Analysis +1110.5315 Geophysics +1110.5316 Superconductivity +cond-mat/0306728 Statistical Mechanics +cond-mat/0306730 Statistical Mechanics +cond-mat/0401024 Statistical Mechanics +cond-mat/0402600 Statistical Mechanics +cond-mat/0403591 Statistical Mechanics +cond-mat/0404741 Statistical Mechanics +cond-mat/0412428 Statistical Mechanics +cond-mat/0502330 Statistical Mechanics +cond-mat/0506012 Soft Condensed Matter +cond-mat/0511247 Statistical Mechanics +cond-mat/0511343 Statistical Mechanics +cond-mat/0601250 Soft Condensed Matter +cond-mat/0603764 Materials Science +cond-mat/0605492 Soft Condensed Matter +cond-mat/0703032 Soft Condensed Matter +cond-mat/9511118 +cs/0501043 Logic in Computer Science +cs/0508031 Information Theory +hep-ph/0411001 Phenomenology +hep-th/0605082 Theory +math/0408372 Probability +math/0701055 Classical Analysis and ODEs +physics/0605201 Instrumentation and Detectors +quant-ph/0501045 +quant-ph/0603098 +0707.2433 Atomic and Molecular Clusters +0710.0954 Representation Theory +0712.1726 Atomic Physics +0806.0606 Differential Geometry +0808.0008 Strongly Correlated Electrons +0809.3530 Analysis of PDEs +0810.4281 +0810.5033 Atomic and Molecular Clusters +0901.2448 Atomic and Molecular Clusters +0902.0645 Statistics Theory +0902.4713 Atomic and Molecular Clusters +0903.1094 Geometric Topology +0904.1166 Algebraic Geometry +0906.1692 Differential Geometry +0907.2774 Atomic and Molecular Clusters +0910.3278 Atomic Physics +0911.4497 Statistical Mechanics +1001.0157 Rings and Algebras +1003.6099 Mesoscale and Nanoscale Physics +1004.1008 High Energy Astrophysical Phenomena +1004.3696 +1005.3212 Group Theory +1006.1133 Differential Geometry +1008.0631 Geometric Topology +1008.3844 Spectral Theory +1009.0354 Group Theory +1009.2946 Soft Condensed Matter +1010.2235 Algebraic Geometry +1011.3055 Differential Geometry +1012.5817 Number Theory +1101.0543 Quantum Gases +1103.1146 +1103.4589 Materials Science +1103.5646 +1104.4128 Superconductivity +1104.4330 +1104.5497 Statistical Mechanics +1105.0374 Chemical Physics +1105.0409 Plasma Physics +1105.1037 Chemical Physics +1105.1998 Classical Analysis and ODEs +1105.2591 Biological Physics +1105.3718 Theory +1105.4527 Algebraic Topology +1105.6295 Materials Science +1106.1494 Strongly Correlated Electrons +1106.1913 Commutative Algebra +1106.1930 Strongly Correlated Electrons +1106.3031 +1106.3123 Representation Theory +1106.5854 Chemical Physics +1107.3252 Probability +1107.3291 Data Analysis, Statistics and Probability +1107.4154 Phenomenology +1107.4482 Atomic and Molecular Clusters +1107.4645 Cosmology and Nongalactic Astrophysics +1107.5961 Superconductivity +1108.0482 Phenomenology +1108.1355 Strongly Correlated Electrons +1108.1843 Theory +1108.2136 Atomic and Molecular Clusters +1108.2203 Optics +1108.6124 Theory +1109.0540 +1109.2211 Strongly Correlated Electrons +1109.3712 Phenomenology +1109.3881 Soft Condensed Matter +1109.5597 Strongly Correlated Electrons +1109.5709 Quantum Gases +1109.6402 Logic +1110.1586 +1110.2917 Instrumentation and Methods for Astrophysics +1110.4055 +1110.4218 Optics +1110.4857 Statistical Mechanics +1111.0097 Neurons and Cognition +1111.1470 Materials Science +1111.2725 Phenomenology +1111.3128 Group Theory +1111.3428 Mesoscale and Nanoscale Physics +1111.3909 Cosmology and Nongalactic Astrophysics +1111.4432 Materials Science +1111.5377 Cryptography and Security +1111.7027 +1112.0816 Quantum Algebra +1112.1259 Mesoscale and Nanoscale Physics +1112.1527 Instrumentation and Methods for Astrophysics +1112.1851 Distributed, Parallel, and Cluster Computing +1112.2947 Spectral Theory +1112.3244 Data Structures and Algorithms +1112.3402 Probability +1112.3410 +1112.3503 Atmospheric and Oceanic Physics +1112.3555 Systems and Control +1112.3597 Instrumentation and Detectors +1112.3652 Instrumentation and Methods for Astrophysics +1112.3663 Populations and Evolution +1112.3673 Spectral Theory +1112.3674 +1112.3675 Mesoscale and Nanoscale Physics +1112.3677 Optimization and Control +1112.3682 Representation Theory +1112.3683 Cosmology and Nongalactic Astrophysics +1112.3684 Mesoscale and Nanoscale Physics +1112.3686 +1112.3687 Probability +1112.3689 Probability +1112.3691 Networking and Internet Architecture +1112.3692 Probability +1112.3694 +1112.3703 Differential Geometry +1112.3705 Numerical Analysis +1112.3707 +1112.3712 Learning +1112.3714 Learning +1112.3715 Classical Analysis and ODEs +1112.3716 Classical Analysis and ODEs +1112.3725 Distributed, Parallel, and Cluster Computing +1112.3726 Computers and Society +1112.3729 Statistics Theory +1112.3730 Information Theory +1112.3731 +1112.3735 Methodology +1112.3736 Solar and Stellar Astrophysics +1112.3737 Theory +1112.3739 Group Theory +1112.3740 Networking and Internet Architecture +1112.3742 Superconductivity +1112.3745 Statistics Theory +1112.3746 Complex Variables +1112.3750 Cosmology and Nongalactic Astrophysics +1112.3756 Programming Languages +1112.3757 Experiment +1112.3764 Cosmology and Nongalactic Astrophysics +1112.3765 Distributed, Parallel, and Cluster Computing +1112.3767 +1112.3774 History and Philosophy of Physics +1112.3776 Probability +1112.3777 Computation +1112.3779 Programming Languages +1112.3780 Programming Languages +1112.3781 Earth and Planetary Astrophysics +1112.3782 Programming Languages +1112.3783 Programming Languages +1112.3784 Programming Languages +1112.3785 Programming Languages +1112.3787 Programming Languages +1112.3788 Programming Languages +1112.3789 Programming Languages +1112.3792 Representation Theory +1112.3794 Analysis of PDEs +1112.3796 +1112.3797 Probability +1112.3809 Cosmology and Nongalactic Astrophysics +1112.3812 Superconductivity +1112.3815 Experiment +1112.3818 Probability +1112.3819 Group Theory +1112.3827 Machine Learning +1112.3833 Programming Languages +1112.3834 Phenomenology +1112.3835 Rings and Algebras +1112.3843 Adaptation and Self-Organizing Systems +1112.3844 Distributed, Parallel, and Cluster Computing +1112.3852 Experiment +1112.3856 Mesoscale and Nanoscale Physics +1112.3857 Classical Physics +1112.3861 General Mathematics +1112.3862 General Mathematics +1112.3863 General Mathematics +1112.3864 Rings and Algebras +1112.3866 Classical Analysis and ODEs +1112.3870 Representation Theory +1112.3873 Cryptography and Security +1112.3874 Cryptography and Security +1112.3877 Software Engineering +1112.3881 +1112.3886 Fluid Dynamics +1112.3888 Fluid Dynamics +1112.3893 High Energy Astrophysical Phenomena +1112.3894 Materials Science +1112.3902 High Energy Astrophysical Phenomena +1112.3906 Experiment +1112.3909 Superconductivity +1112.3914 Statistics Theory +1112.3916 Group Theory +1112.3918 Solar and Stellar Astrophysics +1112.3924 Plasma Physics +1112.3929 Classical Physics +1112.3933 High Energy Astrophysical Phenomena +1112.3934 Phenomenology +1112.3937 Cosmology and Nongalactic Astrophysics +1112.3938 Rings and Algebras +1112.3944 Applications +1112.3947 Plasma Physics +1112.3951 Materials Science +0707.0932 Operator Algebras +0711.3568 K-Theory and Homology +0805.3313 Materials Science +0812.3632 Probability +0901.3795 Probability +0903.4061 Probability +0905.2776 Statistics Theory +0906.2511 Information Theory +0911.5410 Representation Theory +1002.4604 Category Theory +1006.1089 Analysis of PDEs +1007.0548 Learning +1007.1397 Phenomenology +1008.1381 Mesoscale and Nanoscale Physics +1008.1869 Experiment +1009.1294 Disordered Systems and Neural Networks +1010.4267 Representation Theory +1010.5071 Cosmology and Nongalactic Astrophysics +1010.5467 Statistical Mechanics +1010.5763 Materials Science +1011.1444 K-Theory and Homology +1011.5225 Phenomenology +1012.5251 +1101.0506 Mesoscale and Nanoscale Physics +1101.3675 Representation Theory +1102.0784 Phenomenology +1102.4149 Statistical Mechanics +1102.4166 Differential Geometry +1103.2986 Formal Languages and Automata Theory +1103.4937 +1104.4659 Algebraic Topology +1104.5152 Phenomenology +1105.0710 Statistical Mechanics +1105.1159 Mesoscale and Nanoscale Physics +1105.2731 +1105.5985 Strongly Correlated Electrons +1106.0419 Physics and Society +1106.0449 Metric Geometry +1106.0526 Number Theory +1106.1030 Combinatorics +1106.1130 Superconductivity +1106.1209 +1106.1915 Popular Physics +1106.4674 Soft Condensed Matter +1107.0126 Metric Geometry +1107.3134 Theory +1107.3786 +1107.4206 Materials Science +1107.4280 Theory +1107.4446 Phenomenology +1108.0745 Mesoscale and Nanoscale Physics +1108.4186 Strongly Correlated Electrons +1109.0782 Data Structures and Algorithms +1109.3222 Optics +1109.3449 Quantum Gases +1109.4121 Probability +1109.4504 Mesoscale and Nanoscale Physics +1109.5729 Solar and Stellar Astrophysics +1110.0020 Artificial Intelligence +1110.0606 Disordered Systems and Neural Networks +1110.3711 Performance +1110.4720 Group Theory +1110.5340 Solar and Stellar Astrophysics +1110.6222 Instrumentation and Detectors +1111.1484 Quantum Gases +1111.2911 Strongly Correlated Electrons +1111.3273 Algebraic Geometry +1111.3357 Cosmology and Nongalactic Astrophysics +1111.3385 Analysis of PDEs +1111.3446 Phenomenology +1111.3969 Computer Vision and Pattern Recognition +1111.4040 Solar and Stellar Astrophysics +1111.4223 Solar and Stellar Astrophysics +1111.4226 Methodology +1111.4228 +1111.4230 Representation Theory +1111.4231 Analysis of PDEs +1111.4233 Probability +1111.4238 Mesoscale and Nanoscale Physics +1111.4244 Information Theory +1111.4259 Machine Learning +1111.4260 +1111.4265 Solar and Stellar Astrophysics +1111.4267 Artificial Intelligence +1111.4274 +1111.4276 General Topology +1111.4280 Computational Physics +1111.4282 Operator Algebras +1111.4283 +1111.4284 +1111.4287 Performance +1111.4288 Combinatorics +1111.4290 Computer Vision and Pattern Recognition +1111.4291 Computer Vision and Pattern Recognition +1111.4301 Cryptography and Security +1111.4304 Numerical Analysis +1111.4309 History and Philosophy of Physics +1111.4314 Lattice +1111.4316 Networking and Internet Architecture +1111.4317 Geometric Topology +1111.4325 Quantum Algebra +1111.4329 Experiment +1111.4331 Statistical Mechanics +1111.4335 Networking and Internet Architecture +1111.4338 Geometric Topology +1111.4341 +1111.4343 Computation and Language +1111.4358 Classical Analysis and ODEs +1111.4359 Optics +1111.4361 Optics +1111.4363 Computational Physics +1111.4374 Analysis of PDEs +1111.4377 Spectral Theory +1111.4378 Numerical Analysis +1111.4381 Analysis of PDEs +1111.4382 Computational Complexity +1111.4384 Analysis of PDEs +1111.4395 Data Structures and Algorithms +1111.4399 Operator Algebras +1111.4404 Algebraic Topology +1111.4407 Software Engineering +1111.4416 Methodology +1111.4421 Risk Management +1111.4423 Classical Physics +1111.4441 Phenomenology +1111.4442 Combinatorics +1111.4456 Solar and Stellar Astrophysics +1111.4458 Mesoscale and Nanoscale Physics +1111.4459 Materials Science +1111.4460 Learning +1111.4461 Materials Science +1111.4467 Phenomenology +1111.4469 Methodology +math/0301124 Operator Algebras +math/0301214 Operator Algebras +math/0412451 Operator Algebras +math/0510594 Category Theory +0705.3506 +0706.4205 Representation Theory +0806.1532 Representation Theory +0807.4168 Fluid Dynamics +0807.4494 +0808.3231 Learning +0809.3555 Strongly Correlated Electrons +0812.3681 Mesoscale and Nanoscale Physics +0901.0218 Representation Theory +0901.1788 Fluid Dynamics +0902.3480 Number Theory +0902.3952 Fluid Dynamics +0906.0813 Materials Science +0907.1997 Computation +0907.2679 Fluid Dynamics +0908.1256 Algebraic Geometry +0909.5063 Materials Science +0911.1989 Rings and Algebras +0911.2045 Superconductivity +0911.2229 Probability +0911.2757 Probability +0911.4589 Optics +1001.5302 Number Theory +1002.4058 Learning +1002.4502 Strongly Correlated Electrons +1003.0281 Differential Geometry +1003.5115 General Topology +1004.2259 Analysis of PDEs +1008.1128 +1008.1737 Commutative Algebra +1010.0113 +1010.2295 Algebraic Geometry +1010.3875 Probability +1010.5082 Statistical Mechanics +1011.1296 Data Structures and Algorithms +1011.2277 +1011.2624 Methodology +1012.0536 Mesoscale and Nanoscale Physics +1012.2408 Strongly Correlated Electrons +1012.3265 Representation Theory +1012.5487 Machine Learning +1101.6011 Mesoscale and Nanoscale Physics +1102.1180 Phenomenology +1103.2308 Mesoscale and Nanoscale Physics +1103.4840 Disordered Systems and Neural Networks +1103.4986 +1103.5147 Lattice +1103.5339 Methodology +1104.2351 Statistical Mechanics +1104.2992 +1104.4418 Social and Information Networks +1105.0542 Statistical Mechanics +1105.2336 +1106.0430 Quantum Gases +1106.2157 Superconductivity +1106.3197 +1106.3383 Superconductivity +1107.1151 Plasma Physics +1107.2583 Soft Condensed Matter +1107.3239 Materials Science +1107.4493 Superconductivity +1107.4666 Disordered Systems and Neural Networks +1107.5728 General Finance +1108.2212 Statistical Mechanics +1108.3604 Materials Science +1108.4520 Cosmology and Nongalactic Astrophysics +1109.1277 Phenomenology +1109.4360 Physics and Society +1109.5390 Strongly Correlated Electrons +1109.6903 Biomolecules +1110.0422 Probability +1110.1029 Programming Languages +1110.1043 Phenomenology +1110.2402 Phenomenology +1110.3151 Methodology +1110.5688 Instrumentation and Methods for Astrophysics +1110.5920 Cosmology and Nongalactic Astrophysics +1110.5921 +1110.5922 High Energy Astrophysical Phenomena +1110.5928 Other Condensed Matter +1110.5930 Other Condensed Matter +1110.5936 Theory +1110.5945 Computer Vision and Pattern Recognition +1110.5953 +1110.5954 Differential Geometry +1110.5957 Statistical Mechanics +1110.5958 Statistical Mechanics +1110.5960 Algebraic Geometry +1110.5962 Social and Information Networks +1110.5963 Mesoscale and Nanoscale Physics +1110.5969 Distributed, Parallel, and Cluster Computing +1110.5973 Solar and Stellar Astrophysics +1110.5977 Combinatorics +1110.5984 +1110.5987 +1110.5989 Numerical Analysis +1110.6004 Phenomenology +1110.6008 +1110.6010 Discrete Mathematics +1110.6014 Complex Variables +1110.6018 Pattern Formation and Solitons +1110.6019 Applications +1110.6020 Classical Physics +1110.6021 Representation Theory +1110.6023 Analysis of PDEs +1110.6026 Differential Geometry +1110.6029 Analysis of PDEs +1110.6031 Classical Analysis and ODEs +1110.6032 Statistical Mechanics +1110.6036 Statistical Mechanics +1110.6040 High Energy Astrophysical Phenomena +1110.6046 Lattice +1110.6048 Accelerator Physics +1110.6051 Molecular Networks +1110.6054 Computation +1110.6057 Analysis of PDEs +1110.6060 Materials Science +1110.6064 +1110.6066 +1110.6070 Optimization and Control +1110.6073 Analysis of PDEs +1110.6075 Cosmology and Nongalactic Astrophysics +1110.6076 Number Theory +1110.6080 Geometric Topology +1110.6082 Complex Variables +1110.6083 Number Theory +1110.6087 Analysis of PDEs +1110.6094 High Energy Astrophysical Phenomena +1110.6095 +1110.6098 Mesoscale and Nanoscale Physics +1110.6099 Phenomenology +1110.6100 Analysis of PDEs +1110.6101 General Physics +1110.6102 Phenomenology +1110.6105 Other Computer Science +1110.6107 General Mathematics +1110.6108 Rings and Algebras +1110.6109 Classical Analysis and ODEs +1110.6110 General Mathematics +1110.6112 Lattice +1110.6116 Probability +1110.6126 Computational Complexity +1110.6127 Networking and Internet Architecture +1110.6129 Computational Physics +1110.6132 Fluid Dynamics +1110.6139 Probability +1110.6140 Logic +1110.6142 Chemical Physics +1110.6143 Discrete Mathematics +1110.6144 Dynamical Systems +1110.6147 +1110.6148 Probability +1110.6152 Statistical Mechanics +1110.6160 Rings and Algebras +1110.6167 Dynamical Systems +astro-ph/0506308 +astro-ph/0609159 +astro-ph/0612688 +cond-mat/0408298 Superconductivity +0803.4467 Superconductivity +0806.0562 Information Theory +0812.2350 Classical Analysis and ODEs +0901.2781 Geophysics +0903.3199 Phenomenology +0903.4018 Strongly Correlated Electrons +0903.4112 Algebraic Geometry +0903.5444 Optimization and Control +0905.3029 General Topology +0905.3447 Optimization and Control +0908.0380 Dynamical Systems +0908.3190 Fluid Dynamics +0909.3302 Algebraic Geometry +0910.3578 Differential Geometry +0910.3592 Complex Variables +1001.2793 Dynamical Systems +1002.3449 Information Theory +1003.0900 Solar and Stellar Astrophysics +1003.2838 Phenomenology +1004.4188 Algebraic Geometry +1005.2899 General Physics +1005.5676 Superconductivity +1006.1840 Classical Analysis and ODEs +1006.3614 +1007.0182 Superconductivity +1007.2283 Strongly Correlated Electrons +1007.3215 +1008.0156 Commutative Algebra +1008.2645 +1008.2981 Superconductivity +1009.0725 Chaotic Dynamics +1009.2619 Materials Science +1009.4690 Combinatorics +1010.1250 Solar and Stellar Astrophysics +1010.2050 +1010.4039 Differential Geometry +1010.4994 Differential Geometry +1011.3241 Artificial Intelligence +1011.5108 Quantitative Methods +1012.0754 Pricing of Securities +1012.0973 Mesoscale and Nanoscale Physics +1012.3194 Solar and Stellar Astrophysics +1012.4007 Phenomenology +1012.5552 Superconductivity +1101.0478 Classical Analysis and ODEs +1101.0767 Combinatorics +1101.3445 Dynamical Systems +1101.4740 Metric Geometry +1102.0330 +1102.3644 +1102.4347 Phenomenology +1103.0979 Phenomenology +1103.2550 Theory +1103.2900 Plasma Physics +1103.5867 High Energy Astrophysical Phenomena +1103.5872 +1104.2214 Strongly Correlated Electrons +1104.2257 Superconductivity +1104.2474 Theory +1105.0873 Analysis of PDEs +1105.2008 K-Theory and Homology +1105.4756 Statistical Mechanics +1105.5994 +1106.2935 Earth and Planetary Astrophysics +1106.4718 Numerical Analysis +1106.5894 Phenomenology +1106.5945 Mesoscale and Nanoscale Physics +1107.0191 Soft Condensed Matter +1107.0360 +1107.0866 Materials Science +1107.0921 Solar and Stellar Astrophysics +1107.0956 Theory +1107.0974 Cosmology and Nongalactic Astrophysics +1107.0986 Differential Geometry +1107.0988 Representation Theory +1107.0992 Functional Analysis +1107.0994 +1107.1001 Combinatorics +1107.1003 Analysis of PDEs +1107.1005 +1107.1012 Computational Geometry +1107.1014 Analysis of PDEs +1107.1016 Analysis of PDEs +1107.1017 Cryptography and Security +1107.1019 Operator Algebras +1107.1020 Artificial Intelligence +1107.1024 Earth and Planetary Astrophysics +1107.1025 Statistics Theory +1107.1027 Tissues and Organs +1107.1029 Computational Physics +1107.1030 Geometric Topology +1107.1031 Discrete Mathematics +1107.1038 Networking and Internet Architecture +1107.1041 Representation Theory +1107.1042 Commutative Algebra +1107.1045 Phenomenology +1107.1048 Combinatorics +1107.1052 Data Structures and Algorithms +1107.1056 High Energy Astrophysical Phenomena +1107.1058 Computer Vision and Pattern Recognition +1107.1061 Experiment +1107.1063 Combinatorics +1107.1068 Rings and Algebras +1107.1069 Cosmology and Nongalactic Astrophysics +1107.1076 Data Structures and Algorithms +1107.1077 Combinatorics +1107.1078 General Finance +1107.1079 Superconductivity +1107.1081 Computer Vision and Pattern Recognition +1107.1086 Cryptography and Security +1107.1088 Statistical Mechanics +1107.1091 Dynamical Systems +1107.1094 Spectral Theory +1107.1095 Phenomenology +1107.1096 Cosmology and Nongalactic Astrophysics +1107.1099 Cryptography and Security +1107.1100 Populations and Evolution +1107.1101 Cryptography and Security +1107.1104 Databases +1107.1107 Solar and Stellar Astrophysics +1107.1114 Disordered Systems and Neural Networks +1107.1119 Robotics +1107.1120 Number Theory +1107.1121 Combinatorics +1107.1123 Phenomenology +1107.1127 Numerical Analysis +1107.1128 Computational Engineering, Finance, and Science +1107.1129 Classical Analysis and ODEs +1107.1132 Analysis of PDEs +1107.1134 Analysis of PDEs +1107.1135 Analysis of PDEs +1107.1136 Representation Theory +1107.1142 Phenomenology +1107.1144 Probability +1107.1152 Metric Geometry +1107.1153 Combinatorics +1107.1157 Instrumentation and Methods for Astrophysics +1107.1162 Algebraic Geometry +1107.1166 Software Engineering +1107.1170 Combinatorics +1107.1173 Algebraic Geometry +1107.1175 Soft Condensed Matter +1107.1182 Number Theory +1107.1192 Strongly Correlated Electrons +1107.1197 Instrumentation and Detectors +1107.1198 Software Engineering +1107.1199 Computer Science and Game Theory +1107.1200 Distributed, Parallel, and Cluster Computing +1107.1201 Logic in Computer Science +1107.1202 Performance +1107.1203 Programming Languages +1107.1204 Logic in Computer Science +1107.1205 Logic in Computer Science +1107.1206 Formal Languages and Automata Theory +1107.1208 Mesoscale and Nanoscale Physics +1107.1218 General Topology +1107.1227 Category Theory +1107.1229 Applications +gr-qc/9510060 +math/0701921 General Mathematics +1103.2818 Symplectic Geometry +1106.0685 Numerical Analysis +0711.2157 Data Structures and Algorithms +0805.1061 +0809.5002 Analysis of PDEs +0810.3374 Number Theory +0811.0257 +0901.3951 Phenomenology +0902.4284 Number Theory +0904.2842 Solar and Stellar Astrophysics +0904.3907 Experiment +0904.4830 +0905.1650 Classical Physics +0905.2854 Cosmology and Nongalactic Astrophysics +0905.3686 +0906.0175 Cosmology and Nongalactic Astrophysics +0906.2098 Methodology +0906.4946 +0907.0903 Differential Geometry +0907.3716 Quantum Gases +0908.0376 Soft Condensed Matter +0908.1194 Theory +0909.1797 +0909.5101 Phenomenology +0910.2653 Theory +0910.3252 Theory +0910.4855 Phenomenology +0910.5552 +0910.5689 Phenomenology +0911.0024 Phenomenology +0911.0082 Theory +0911.0223 Risk Management +0911.0275 Phenomenology +0911.0468 Phenomenology +0911.0613 Theory +0911.1381 Lattice +0911.1453 Lattice +0911.1513 Classical Analysis and ODEs +0911.1643 Lattice +0911.2880 Theory +0911.3217 +0911.3595 Phenomenology +0911.3912 Phenomenology +0912.0437 Lattice +0912.1039 Number Theory +0912.1274 Lattice +0912.3896 Phenomenology +1001.2002 Lattice +1001.5367 Mesoscale and Nanoscale Physics +1002.0359 Accelerator Physics +1002.1298 Cell Behavior +1002.2206 Phenomenology +1002.3446 Phenomenology +1002.3493 Performance +1003.3630 +1004.1379 Information Theory +1004.5367 Information Theory +1005.1911 Theory +1006.0924 Superconductivity +1006.4046 Information Theory +1006.4467 +1006.5916 Phenomenology +1007.1309 +1007.3756 Theory +1008.2972 Information Theory +1008.4969 Classical Analysis and ODEs +1010.3639 Lattice +1011.0184 Lattice +1011.2150 Lattice +1011.2166 Lattice +1011.3070 Analysis of PDEs +1011.3510 Theory +1011.4297 Phenomenology +1011.4629 Phenomenology +1011.4921 +1011.5191 +1011.5198 Theory +1011.5212 Experiment +1012.1432 Superconductivity +1012.2257 +1101.0094 Strongly Correlated Electrons +1101.1578 Superconductivity +1101.5401 +1102.0015 Theory +1102.0298 Theory +1102.2897 Cosmology and Nongalactic Astrophysics +1102.2990 Superconductivity +1102.3856 Theory +1102.4728 Distributed, Parallel, and Cluster Computing +1102.4808 Statistical Mechanics +1103.0431 Machine Learning +1103.0538 Probability +1103.1484 Adaptation and Self-Organizing Systems +1103.2765 Phenomenology +1103.3114 Data Structures and Algorithms +1103.4429 Strongly Correlated Electrons +1103.5202 Machine Learning +1103.6229 Analysis of PDEs +1104.1346 Superconductivity +1104.2669 +1104.2690 Computer Science and Game Theory +1104.3549 Populations and Evolution +1104.3773 Classical Analysis and ODEs +1105.1742 Soft Condensed Matter +1105.3559 Computer Vision and Pattern Recognition +1106.2521 Operator Algebras +1106.3094 Physics and Society +1106.3246 Fluid Dynamics +1106.3259 Other Statistics +1106.4116 Cosmology and Nongalactic Astrophysics +1106.5743 +1106.5822 Materials Science +1106.5923 Mesoscale and Nanoscale Physics +1107.0092 Analysis of PDEs +1107.0135 Strongly Correlated Electrons +1107.1139 Rings and Algebras +1107.1271 Other Condensed Matter +1107.2036 Earth and Planetary Astrophysics +1107.2057 Algebraic Geometry +1107.2200 Experiment +1107.2312 Computational Geometry +1107.2392 Numerical Analysis +1107.2407 Solar and Stellar Astrophysics +1107.2411 Symplectic Geometry +1107.2413 Probability +1107.2421 High Energy Astrophysical Phenomena +1107.2422 Data Structures and Algorithms +1107.2424 High Energy Astrophysical Phenomena +1107.2429 Rings and Algebras +1107.2438 +1107.2439 Differential Geometry +1107.2444 Computational Complexity +1107.2446 Methodology +1107.2450 Combinatorics +1107.2457 Mesoscale and Nanoscale Physics +1107.2464 Physics and Society +1107.2469 Mesoscale and Nanoscale Physics +1107.2471 Optimization and Control +1107.2474 +1107.2476 Probability +1107.2481 Geophysics +1107.2488 Materials Science +1107.2489 Statistical Mechanics +1107.2491 Statistical Mechanics +1107.2495 Classical Analysis and ODEs +1107.2500 +1107.2502 Statistics Theory +1107.2512 Operator Algebras +1107.2513 Logic in Computer Science +1107.2515 Probability +1107.2518 Classical Analysis and ODEs +1107.2520 +1107.2533 +1107.2536 Earth and Planetary Astrophysics +1107.2539 Chaotic Dynamics +1107.2540 Mesoscale and Nanoscale Physics +1107.2553 Computer Vision and Pattern Recognition +1107.2554 Data Structures and Algorithms +1107.2563 Differential Geometry +1107.2586 Solar and Stellar Astrophysics +1107.2589 Analysis of PDEs +1107.2596 Earth and Planetary Astrophysics +1107.2598 Cosmology and Nongalactic Astrophysics +1107.2601 High Energy Astrophysical Phenomena +1107.2603 Logic +1107.2609 Dynamical Systems +1107.2611 Biomolecules +1107.2612 Probability +1107.2615 Networking and Internet Architecture +1107.2620 Analysis of PDEs +1107.2625 Atomic Physics +1107.2630 Combinatorics +1107.2631 Representation Theory +1107.2639 Combinatorics +1107.2640 Geometric Topology +1107.2641 Experiment +1107.2644 Algebraic Geometry +cond-mat/0412283 Strongly Correlated Electrons +cond-mat/0501013 Strongly Correlated Electrons +cond-mat/0505534 Strongly Correlated Electrons +cs/0703089 Databases +gr-qc/0701067 +0710.2911 Differential Geometry +0806.4048 Rings and Algebras +0806.4214 +0808.1167 Rings and Algebras +0811.0856 Number Theory +0903.1315 +0909.0494 +0910.0995 +0910.4106 General Topology +1001.2718 Theory +1001.4706 Probability +1004.3387 Differential Geometry +1004.5576 Cosmology and Nongalactic Astrophysics +1005.1254 Phenomenology +1005.1300 Algebraic Topology +1005.5496 Other Condensed Matter +1005.5582 Optimization and Control +1006.2108 +1006.2818 Superconductivity +1007.0497 Mesoscale and Nanoscale Physics +1007.2436 Mesoscale and Nanoscale Physics +1008.1112 +1009.2036 Quantum Gases +1010.0627 Portfolio Management +1010.2213 Superconductivity +1010.3724 Strongly Correlated Electrons +1010.5327 +1010.5884 Strongly Correlated Electrons +1011.6474 Experiment +1011.6490 +1012.0138 Solar and Stellar Astrophysics +1012.0369 Soft Condensed Matter +1012.4777 Algebraic Geometry +1012.5285 Operator Algebras +1101.1863 Spectral Theory +1101.4386 Superconductivity +1102.4957 Theory +1102.5459 Mesoscale and Nanoscale Physics +1103.0322 Theory +1103.1527 Phenomenology +1103.2888 Quantum Gases +1103.2901 Number Theory +1103.2944 +1103.3220 Materials Science +1103.4627 Disordered Systems and Neural Networks +1103.4858 Theory +1104.0659 Superconductivity +1104.1079 +1104.1666 +1104.2353 Mesoscale and Nanoscale Physics +1104.3387 Statistical Mechanics +1105.0127 Theory +1105.1043 Strongly Correlated Electrons +1105.1865 Differential Geometry +1105.2309 Cosmology and Nongalactic Astrophysics +1105.2753 Phenomenology +1105.3611 Quantum Gases +1105.3982 Theory +1105.4731 Group Theory +1105.6339 Astrophysics of Galaxies +1106.0015 Strongly Correlated Electrons +1106.3966 Strongly Correlated Electrons +1106.4164 +1106.4227 Statistical Mechanics +1106.4537 +1106.5471 Superconductivity +1106.5479 Lattice +1106.5887 Materials Science +1106.6054 Astrophysics of Galaxies +1107.0320 Theory +1107.1098 Combinatorics +1107.1679 Differential Geometry +1107.2096 Statistical Mechanics +1107.3950 Analysis of PDEs +1107.3956 Atomic Physics +1107.4765 Representation Theory +1107.4966 Artificial Intelligence +1107.5722 Logic in Computer Science +1108.3349 Quantum Algebra +1108.3440 Strongly Correlated Electrons +1108.4398 Logic +1108.4753 Cryptography and Security +1108.4953 Combinatorics +1108.4980 Classical Analysis and ODEs +1108.5084 Logic +1108.5128 Optimization and Control +1108.5170 Materials Science +1108.5171 Logic +1108.5179 Theory +1108.5185 Methodology +1108.5195 Theory +1108.5197 +1108.5198 +1108.5199 +1108.5201 Solar and Stellar Astrophysics +1108.5209 Number Theory +1108.5212 Information Theory +1108.5215 Quantum Algebra +1108.5217 Quantitative Methods +1108.5219 Operator Algebras +1108.5221 Numerical Analysis +1108.5226 Physics Education +1108.5228 Phenomenology +1108.5233 Instrumentation and Methods for Astrophysics +1108.5234 High Energy Astrophysical Phenomena +1108.5237 Functional Analysis +1108.5239 Materials Science +1108.5249 Functional Analysis +1108.5251 Classical Analysis and ODEs +1108.5253 Databases +1108.5262 Methodology +1108.5265 Mesoscale and Nanoscale Physics +1108.5269 Optics +1108.5271 Soft Condensed Matter +1108.5272 Superconductivity +1108.5273 Combinatorics +1108.5274 Solar and Stellar Astrophysics +1108.5276 Algebraic Geometry +1108.5280 Instrumentation and Detectors +1108.5281 Logic in Computer Science +1108.5282 Instrumentation and Methods for Astrophysics +1108.5284 Differential Geometry +1108.5287 Phenomenology +1108.5294 Classical Analysis and ODEs +1108.5295 Software Engineering +1108.5297 Atomic Physics +1108.5303 +1108.5307 Solar and Stellar Astrophysics +1108.5308 Applications +1108.5309 Number Theory +1108.5314 Statistics Theory +1108.5318 Solar and Stellar Astrophysics +1108.5321 Superconductivity +1108.5322 Phenomenology +1108.5325 Analysis of PDEs +1108.5326 +1108.5334 Atomic Physics +1108.5338 Methodology +1108.5339 +1108.5346 Probability +1108.5356 Probability +1108.5360 Optics +1108.5374 Mesoscale and Nanoscale Physics +1108.5375 Representation Theory +cond-mat/0512046 Superconductivity +cond-mat/0610015 Statistical Mechanics +cond-mat/0701724 Superconductivity +math/0001138 K-Theory and Homology +math/0001145 K-Theory and Homology +math/0001146 Algebraic Topology +math/0001147 Algebraic Geometry +math/0001179 K-Theory and Homology +math/0102133 Algebraic Geometry +q-alg/9707025 Quantum Algebra +0705.0263 Strongly Correlated Electrons +0707.2265 Information Theory +0803.0640 Group Theory +0803.2964 Materials Science +0803.4367 General Physics +0804.0830 General Physics +0804.1998 General Physics +0807.0576 Experiment +0810.2060 Group Theory +0902.1196 Differential Geometry +0903.2153 Other Condensed Matter +0907.5418 Theory +0908.4446 Algebraic Geometry +0912.4216 Materials Science +1001.3545 Representation Theory +1003.1160 Software Engineering +1003.2911 Cosmology and Nongalactic Astrophysics +1005.1070 Phenomenology +1005.5458 Theory +1005.5497 Superconductivity +1007.0346 General Topology +1007.2405 +1007.5217 Phenomenology +1008.2206 Phenomenology +1008.4191 Superconductivity +1008.4332 Theory +1008.4992 Statistical Mechanics +1009.0426 Mesoscale and Nanoscale Physics +1009.2989 General Mathematics +1009.5508 Experiment +1010.0503 Mesoscale and Nanoscale Physics +1010.2160 Physics and Society +1010.3060 +1010.3455 Representation Theory +1010.5625 Strongly Correlated Electrons +1011.2861 Neurons and Cognition +1011.5076 Data Analysis, Statistics and Probability +1011.5236 Experiment +1011.5271 Lattice +1011.5277 Lattice +1011.5307 Experiment +1011.5341 Lattice +1011.5355 Theory +1011.5362 Theory +1011.5409 Phenomenology +1011.5417 Theory +1011.5423 Phenomenology +1011.6460 Phenomenology +1012.1044 Mesoscale and Nanoscale Physics +1012.3162 Materials Science +1012.5115 Algebraic Geometry +1012.5476 Theory +1101.3903 Analysis of PDEs +1101.4505 Physics and Society +1101.5289 +1101.5467 Quantum Gases +1102.0439 +1102.0455 Materials Science +1102.0705 Symbolic Computation +1102.3861 Theory +1103.0298 Computational Physics +1103.1476 Superconductivity +1103.1588 Strongly Correlated Electrons +1103.1990 Mesoscale and Nanoscale Physics +1103.2069 Theory +1103.2144 +1103.2454 Theory +1103.2715 Probability +1103.3149 +1103.3778 Phenomenology +1103.4461 +1103.6231 Strongly Correlated Electrons +1104.4513 Probability +1104.5631 Quantum Gases +1105.3601 Analysis of PDEs +1105.3911 Phenomenology +1105.4268 +1105.4382 Theory +1106.0066 Soft Condensed Matter +1106.2074 Algebraic Geometry +1106.2143 Atmospheric and Oceanic Physics +1106.2919 Soft Condensed Matter +1106.3724 Algebraic Geometry +1106.5642 Materials Science +1107.0842 Solar and Stellar Astrophysics +1107.3594 Theory +1107.4035 Artificial Intelligence +1107.4088 Experiment +1107.4110 Networking and Internet Architecture +1107.4112 +1107.4114 Number Theory +1107.4117 Algebraic Topology +1107.4130 Group Theory +1107.4133 Cosmology and Nongalactic Astrophysics +1107.4137 Number Theory +1107.4140 Combinatorics +1107.4145 Differential Geometry +1107.4157 Numerical Analysis +1107.4158 Differential Geometry +1107.4160 Logic in Computer Science +1107.4161 Artificial Intelligence +1107.4162 Artificial Intelligence +1107.4163 Artificial Intelligence +1107.4164 Artificial Intelligence +1107.4168 +1107.4170 Superconductivity +1107.4172 High Energy Astrophysical Phenomena +1107.4181 Applications +1107.4182 Group Theory +1107.4185 Sound +1107.4189 Numerical Analysis +1107.4192 Applications +1107.4193 Experiment +1107.4199 Information Theory +1107.4203 Mesoscale and Nanoscale Physics +1107.4204 Mesoscale and Nanoscale Physics +1107.4215 Soft Condensed Matter +1107.4217 Human-Computer Interaction +1107.4219 Statistics Theory +1107.4220 Quantitative Methods +1107.4222 Data Structures and Algorithms +1107.4223 Data Structures and Algorithms +1107.4224 Discrete Mathematics +1107.4226 Phenomenology +1107.4227 Experiment +1107.4228 Applications +1107.4229 Earth and Planetary Astrophysics +1107.4230 Cryptography and Security +1107.4231 Dynamical Systems +1107.4235 High Energy Astrophysical Phenomena +1107.4238 Cosmology and Nongalactic Astrophysics +1107.4246 Information Theory +1107.4251 Networking and Internet Architecture +1107.4252 Phenomenology +1107.4253 Instrumentation and Methods for Astrophysics +1107.4258 Computer Science and Game Theory +1107.4261 Materials Science +1107.4283 +1107.4286 Dynamical Systems +1107.4298 Other Condensed Matter +1107.4299 Classical Physics +1107.4301 Combinatorics +1107.4308 Strongly Correlated Electrons +1107.4312 Algebraic Topology +1107.4328 Phenomenology +1107.4329 Mesoscale and Nanoscale Physics +1107.4336 Group Theory +1107.4340 Machine Learning +1107.4345 Complex Variables +1107.4346 Information Theory +1107.4347 Functional Analysis +1107.4348 Functional Analysis +1107.4355 Superconductivity +cond-mat/0102381 Strongly Correlated Electrons +cond-mat/0105564 Strongly Correlated Electrons +cond-mat/0110516 +cond-mat/9703010 +cond-mat/9811003 +cond-mat/9811004 +cond-mat/9901027 Strongly Correlated Electrons +cond-mat/9904251 +cond-mat/9909257 +math/0201195 Differential Geometry +math/0204200 Differential Geometry +math/0305277 Differential Geometry +physics/0309126 Optics +physics/0701163 General Physics +quant-ph/0703209 +0710.0881 +0710.4113 +0801.1774 Functional Analysis +0809.4042 +0812.3882 Superconductivity +0906.3558 Physics and Society +0909.2682 Genomics +0911.0672 High Energy Astrophysical Phenomena +0911.2810 Mesoscale and Nanoscale Physics +0912.3560 +1001.0801 Strongly Correlated Electrons +1001.2620 Optimization and Control +1001.4195 +1003.0559 Number Theory +1003.1869 Number Theory +1004.0888 +1004.1902 Astrophysics of Galaxies +1004.4327 Biological Physics +1004.4368 Phenomenology +1005.5023 Probability +1005.5728 Theory +1006.5325 High Energy Astrophysical Phenomena +1007.1338 Representation Theory +1007.4426 History and Overview +1008.0614 Cosmology and Nongalactic Astrophysics +1008.0934 Geometric Topology +1008.2099 Functional Analysis +1008.3456 Computational Physics +1008.4254 Classical Analysis and ODEs +1008.4395 Mesoscale and Nanoscale Physics +1009.1818 Superconductivity +1009.2151 Algebraic Topology +1009.5155 Quantum Gases +1010.0119 Astrophysics of Galaxies +1010.1875 +1010.1968 Numerical Analysis +1010.2022 Differential Geometry +1010.5443 Theory +1011.0311 +1011.1327 Quantum Gases +1011.1333 Quantum Gases +1011.3067 +1011.3631 Quantum Gases +1012.1298 Fluid Dynamics +1012.5362 Phenomenology +1012.5688 Probability +1012.5745 Rings and Algebras +1012.5828 +1012.5849 +1101.1948 Cosmology and Nongalactic Astrophysics +1101.5256 Numerical Analysis +1101.5425 Number Theory +1101.5904 Classical Analysis and ODEs +1101.6045 Superconductivity +1101.6066 Number Theory +1102.3486 Materials Science +1102.3968 +1102.4993 Optics +1103.0368 Social and Information Networks +1103.1179 Algebraic Geometry +1103.2086 Materials Science +1103.2272 +1103.2278 Optics +1103.2481 General Physics +1103.2787 Software Engineering +1103.2795 Optimization and Control +1103.2799 Differential Geometry +1103.2806 Number Theory +1103.2809 Computational Complexity +1103.2810 Combinatorics +1103.2815 Probability +1103.2825 Geometric Topology +1103.2827 Popular Physics +1103.2832 Learning +1103.2837 Information Theory +1103.2838 Logic +1103.2845 Probability +1103.2847 Optics +1103.2850 Algebraic Geometry +1103.2856 General Mathematics +1103.2864 Optics +1103.2865 Computational Geometry +1103.2868 Analysis of PDEs +1103.2874 Functional Analysis +1103.2877 Number Theory +1103.2881 Pattern Formation and Solitons +1103.2882 Information Theory +1103.2886 Information Retrieval +1103.2889 General Physics +1103.2897 Information Theory +1103.2902 Algebraic Geometry +1103.2913 Discrete Mathematics +1103.2914 Trading and Market Microstructure +1103.2916 Differential Geometry +1103.2918 Functional Analysis +1103.2921 +1103.2922 Algebraic Geometry +1103.2933 Quantum Algebra +1103.2934 +1103.2936 High Energy Astrophysical Phenomena +1103.2939 Strongly Correlated Electrons +1103.2942 Other Condensed Matter +1103.2945 Phenomenology +1103.2946 Superconductivity +1103.2947 Superconductivity +1103.2952 Mathematical Software +1103.2964 Dynamical Systems +1103.2969 +1103.2974 Biological Physics +1103.2979 Probability +1103.2985 Functional Analysis +1103.2989 Astrophysics of Galaxies +astro-ph/0504497 +astro-ph/0511241 +astro-ph/0606733 +astro-ph/0609398 +cond-mat/0606167 Soft Condensed Matter +math/0204228 Geometric Topology +physics/0104079 Fluid Dynamics +physics/0603068 General Physics +0801.3976 Analysis of PDEs +0805.4679 History and Overview +0808.2324 Analysis of PDEs +0809.2560 Analysis of PDEs +0909.3043 Analysis of PDEs +0910.1945 History and Overview +0910.2209 Atomic Physics +0912.1506 Group Theory +1001.1323 Machine Learning +1001.2307 Information Theory +1001.2826 Probability +1001.2938 Information Theory +1005.4471 Probability +1006.3647 +1007.0806 Plasma Physics +1008.0807 Cryptography and Security +1009.1791 +1009.3638 Risk Management +1009.4578 Quantum Gases +1010.2971 Phenomenology +1011.1375 Computer Science and Game Theory +1011.4421 Statistical Mechanics +1011.6302 Functional Analysis +1012.2250 Theory +1012.2670 Cosmology and Nongalactic Astrophysics +1012.3563 Algebraic Geometry +1012.4200 Differential Geometry +1012.5150 Statistics Theory +1012.5326 Strongly Correlated Electrons +1101.2449 Cosmology and Nongalactic Astrophysics +1101.2809 +1101.5044 +1101.5639 Quantum Gases +1102.0264 +1102.5483 Phenomenology +1102.5698 Algebraic Topology +1103.3140 Analysis of PDEs +1103.5236 Algebraic Geometry +1103.5391 Strongly Correlated Electrons +1104.2161 Plasma Physics +1104.2467 Soft Condensed Matter +1104.2544 Strongly Correlated Electrons +1104.2754 Soft Condensed Matter +1104.3106 Cosmology and Nongalactic Astrophysics +1104.3913 Computational Complexity +1105.0278 Phenomenology +1105.6340 Strongly Correlated Electrons +1106.0401 Analysis of PDEs +1106.1001 Probability +1106.1791 Information Theory +1106.2950 +1106.4916 +1106.5773 Quantum Gases +1106.6133 Atomic Physics +1107.0250 Strongly Correlated Electrons +1107.0926 Phenomenology +1107.2346 +1107.2390 Cosmology and Nongalactic Astrophysics +1107.2410 Methodology +1107.3230 Probability +1107.3455 Classical Physics +1107.4588 Computers and Society +1107.5648 Statistical Mechanics +1108.0379 Probability +1108.0524 Accelerator Physics +1108.0811 Phenomenology +1108.0988 Plasma Physics +1108.2091 Molecular Networks +1108.2533 General Topology +1108.2603 Algebraic Geometry +1108.3134 Instrumentation and Methods for Astrophysics +1108.3383 Computational Complexity +1108.4591 +1108.6128 Mesoscale and Nanoscale Physics +1109.2112 Discrete Mathematics +1109.5279 Quantum Gases +1110.2590 Atomic Physics +1110.3994 Statistical Mechanics +1110.5343 Fluid Dynamics +1110.6318 Differential Geometry +1111.0762 Data Structures and Algorithms +1111.1611 Cosmology and Nongalactic Astrophysics +1111.1960 Mesoscale and Nanoscale Physics +1111.3430 Strongly Correlated Electrons +1111.3655 Optics +1111.3740 Mesoscale and Nanoscale Physics +1111.5005 Differential Geometry +1111.5489 Popular Physics +1111.5613 Astrophysics of Galaxies +1111.5719 Soft Condensed Matter +1111.6092 Strongly Correlated Electrons +1111.6115 Physics and Society +1111.6276 Computer Vision and Pattern Recognition +1111.6391 Instrumentation and Methods for Astrophysics +1111.6501 +1111.6584 +1111.6611 Subcellular Processes +1111.6616 Computational Complexity +1111.6626 Solar and Stellar Astrophysics +1111.6630 +1111.6640 Information Retrieval +1111.6642 Phenomenology +1111.6645 High Energy Astrophysical Phenomena +1111.6648 Representation Theory +1111.6652 Solar and Stellar Astrophysics +1111.6654 Fluid Dynamics +1111.6657 Exactly Solvable and Integrable Systems +1111.6658 Analysis of PDEs +1111.6659 Probability +1111.6660 Theory +1111.6661 Instrumentation and Methods for Astrophysics +1111.6662 Algebraic Geometry +1111.6663 Probability +1111.6672 Quantum Gases +1111.6674 Materials Science +1111.6677 Cryptography and Security +1111.6678 Solar and Stellar Astrophysics +1111.6679 Phenomenology +1111.6685 Combinatorics +1111.6686 +1111.6689 Computational Geometry +1111.6692 Number Theory +1111.6694 Representation Theory +1111.6695 Information Theory +1111.6700 Instrumentation and Methods for Astrophysics +1111.6703 Optimization and Control +1111.6713 Artificial Intelligence +1111.6715 Plasma Physics +1111.6716 Number Theory +1111.6717 Number Theory +1111.6718 Number Theory +1111.6721 Statistical Mechanics +1111.6725 Dynamical Systems +1111.6726 Dynamical Systems +1111.6727 Multimedia +1111.6730 Software Engineering +1111.6734 Strongly Correlated Electrons +1111.6735 Networking and Internet Architecture +1111.6755 Optimization and Control +1111.6756 Distributed, Parallel, and Cluster Computing +1111.6757 Other Computer Science +1111.6758 General Physics +1111.6760 Analysis of PDEs +1111.6763 Probability +1111.6766 Combinatorics +1111.6770 Quantum Gases +1111.6771 Multiagent Systems +1111.6780 Instrumentation and Detectors +1111.6786 Commutative Algebra +1111.6790 Artificial Intelligence +1111.6808 Networking and Internet Architecture +1111.6810 Probability +1111.6813 Phenomenology +1111.6814 Algebraic Geometry +1111.6820 Group Theory +1111.6823 Algebraic Topology +1111.6825 Artificial Intelligence +1111.6826 Trading and Market Microstructure +1111.6829 Experiment +1111.6839 History and Overview +1111.6842 Data Structures and Algorithms +1111.6846 Operator Algebras +1111.6847 Other Condensed Matter +1111.6856 Theory +1111.6858 Software Engineering +1111.6861 Differential Geometry +1111.6866 Software Engineering +1111.6868 Probability +1111.6870 Software Engineering +1111.6872 Software Engineering +1111.6874 Exactly Solvable and Integrable Systems +1111.6875 +1111.6877 Geometric Topology +1111.6878 Software Engineering +1111.6881 Fluid Dynamics +1111.6883 Artificial Intelligence +1111.6884 Software Engineering +1111.6886 Experiment +1111.6887 Computers and Society +1111.6891 Statistical Mechanics +1111.6892 K-Theory and Homology +1111.6895 Software Engineering +1111.6896 Theory +1111.6900 Mathematical Software +1111.6902 Software Engineering +1111.6903 Numerical Analysis +1111.6906 Biological Physics +1111.6907 Software Engineering +1111.6909 Software Engineering +1111.6911 Other Computer Science +1111.6916 Tissues and Organs +1111.6917 Software Engineering +1111.6923 Machine Learning +1111.6925 Machine Learning +1111.6933 Experiment +1111.6938 Theory +1111.6959 Representation Theory +1111.6962 Analysis of PDEs +1111.6964 Statistical Mechanics +1111.6968 Theory +cond-mat/0505189 Strongly Correlated Electrons +gr-qc/0212059 +hep-th/0103153 Theory +math-ph/0511003 +math-ph/0608020 +math/0505456 Analysis of PDEs +0704.0215 Probability +0708.0206 K-Theory and Homology +0805.4579 Phenomenology +0808.2207 Statistical Mechanics +0809.0391 Populations and Evolution +0809.3286 Group Theory +0811.1758 Theory +0901.3697 Combinatorics +0902.2643 Phenomenology +0903.0903 Symplectic Geometry +0904.0422 +0906.2175 Algebraic Geometry +0906.2220 Optimization and Control +0906.4151 Cosmology and Nongalactic Astrophysics +0908.1173 Functional Analysis +0909.0694 Combinatorics +0909.1152 Theory +0909.1931 Combinatorics +0911.2912 Plasma Physics +0912.0868 Information Theory +0912.1672 Other Quantitative Biology +0912.2259 Phenomenology +0912.2743 Statistical Mechanics +0912.4869 Differential Geometry +1001.0464 Computational Complexity +1001.0718 Functional Analysis +1001.1149 +1003.6086 Disordered Systems and Neural Networks +1004.1116 Group Theory +1005.0229 Mesoscale and Nanoscale Physics +1005.3587 Cosmology and Nongalactic Astrophysics +1005.3914 +1006.0271 Statistical Mechanics +1006.2239 Mesoscale and Nanoscale Physics +1006.2883 Information Theory +1006.2884 Functional Analysis +1006.4025 Theory +1006.4456 Quantum Gases +1006.5670 Commutative Algebra +1007.0519 Classical Analysis and ODEs +1007.1157 Theory +1007.3100 Statistical Mechanics +1007.3975 Mesoscale and Nanoscale Physics +1008.0744 +1008.1223 Phenomenology +1008.2123 +1008.3292 Representation Theory +1008.3509 +1008.3691 Combinatorics +1008.4883 Theory +1008.5134 Group Theory +1009.1207 Combinatorics +1009.1561 Atmospheric and Oceanic Physics +1009.1884 +1009.2761 Quantum Gases +1009.4921 Experiment +1009.5085 Cosmology and Nongalactic Astrophysics +1009.5457 Group Theory +1010.0512 Numerical Analysis +1010.0765 Data Structures and Algorithms +1010.1457 Theory +1010.3348 Classical Analysis and ODEs +1010.4189 Functional Analysis +1010.5050 +1010.5251 Quantum Gases +1010.5487 Theory +1010.6031 +1011.0757 Phenomenology +1011.1499 Phenomenology +1011.1975 Lattice +1011.3888 Theory +1011.6289 Quantum Gases +1011.6364 Phenomenology +1011.6365 Instrumentation and Detectors +1011.6368 Phenomenology +1011.6371 Mesoscale and Nanoscale Physics +1012.2113 Phenomenology +1012.2888 Theory +1012.5381 Algebraic Geometry +1101.0592 Phenomenology +1101.1615 +1101.4788 Theory +1101.5063 Soft Condensed Matter +1102.0926 Mesoscale and Nanoscale Physics +1102.1021 Combinatorics +1102.1391 Phenomenology +1102.1576 Atomic Physics +1102.2189 Cosmology and Nongalactic Astrophysics +1102.2858 Strongly Correlated Electrons +1102.3771 Mesoscale and Nanoscale Physics +1102.3784 Cosmology and Nongalactic Astrophysics +1102.3980 Combinatorics +1102.4501 Theory +1102.4693 Phenomenology +1102.4786 Phenomenology +1102.5352 Phenomenology +1102.5392 Group Theory +1102.5725 Theory +1103.0240 Phenomenology +1103.0390 Optics +1103.1365 Optimization and Control +1103.1565 Atomic and Molecular Clusters +1103.1926 Quantum Gases +1103.2129 Superconductivity +1103.2706 Optimization and Control +1103.2717 Combinatorics +1103.4470 Phenomenology +1103.4632 Cosmology and Nongalactic Astrophysics +1103.4710 Statistical Mechanics +1103.5068 Phenomenology +1103.5912 +1104.0188 Lattice +1104.0601 Theory +1104.0779 Networking and Internet Architecture +1104.1572 High Energy Astrophysical Phenomena +1104.1676 Phenomenology +1104.1753 Combinatorics +1104.1901 Phenomenology +1104.2046 Phenomenology +1104.2113 +1104.2631 Strongly Correlated Electrons +1104.2760 +1104.3145 Phenomenology +1104.3746 Theory +1104.3943 Phenomenology +1104.4500 Cosmology and Nongalactic Astrophysics +1104.4857 Theory +1104.4902 Algebraic Geometry +1104.5115 Theory +1104.5174 Theory +1104.5405 Phenomenology +1104.5487 Phenomenology +1105.0436 Lattice +1105.0583 Phenomenology +1105.0822 Optics +1105.1112 Theory +1105.1306 Information Theory +1105.1335 Solar and Stellar Astrophysics +1105.1667 Theory +1105.1776 Theory +1105.1898 +1105.2101 Optics +1105.2308 Theory +1105.2543 Phenomenology +1105.2905 Statistical Mechanics +1105.3084 Theory +1105.3219 Phenomenology +1105.3333 Phenomenology +1105.3595 Phenomenology +1105.3679 Phenomenology +1105.3818 Probability +1105.3967 Theory +1105.4571 Theory +1105.5319 +1105.6209 +1106.1253 Theory +1106.1371 Statistical Mechanics +1106.1901 Theory +1106.1966 Phenomenology +1106.2251 Earth and Planetary Astrophysics +1106.2374 Solar and Stellar Astrophysics +1106.2415 +1106.3587 Phenomenology +1106.4543 Cosmology and Nongalactic Astrophysics +1106.4686 Quantum Gases +1106.5082 Phenomenology +1106.5397 Theory +1107.0081 Optimization and Control +1107.0380 Theory +1107.0751 Materials Science +1107.1377 Number Theory +1107.1558 General Physics +1107.1993 Solar and Stellar Astrophysics +1107.3262 Combinatorics +1107.4025 +1107.4423 Strongly Correlated Electrons +1107.4657 Mesoscale and Nanoscale Physics +1107.4887 High Energy Astrophysical Phenomena +1107.4947 Combinatorics +1108.0211 +1108.0511 +1108.0549 Commutative Algebra +1108.0651 Strongly Correlated Electrons +1108.0826 +1108.1010 +1108.1094 Materials Science +1108.1256 Atmospheric and Oceanic Physics +1108.1401 Representation Theory +1108.1409 Adaptation and Self-Organizing Systems +1108.1413 Representation Theory +1108.1416 Superconductivity +1108.1417 Cryptography and Security +1108.1419 Formal Languages and Automata Theory +1108.1421 Information Theory +1108.1422 Group Theory +1108.1425 Networking and Internet Architecture +1108.1426 Networking and Internet Architecture +1108.1428 Operator Algebras +1108.1432 Astrophysics of Galaxies +1108.1436 +1108.1439 Data Structures and Algorithms +1108.1441 Information Theory +1108.1443 Differential Geometry +1108.1444 Algebraic Geometry +1108.1446 Superconductivity +1108.1447 Software Engineering +1108.1450 Analysis of PDEs +1108.1452 Logic in Computer Science +1108.1454 +1108.1456 Networking and Internet Architecture +1108.1458 +1108.1462 Distributed, Parallel, and Cluster Computing +1108.1463 Functional Analysis +1108.1468 Differential Geometry +1108.1470 Functional Analysis +1108.1472 Other Computer Science +1108.1482 Logic in Computer Science +1108.1485 Numerical Analysis +1108.1486 Symbolic Computation +1108.1487 Number Theory +1108.1488 Artificial Intelligence +1108.1489 Statistical Mechanics +1108.1490 Other Computer Science +1108.1491 Theory +1108.1492 Phenomenology +1108.1497 Applications +1108.1498 Statistics Theory +1108.1500 Artificial Intelligence +1108.1505 Probability +1108.1512 Representation Theory +1108.1513 Statistics Theory +1108.1525 Differential Geometry +1108.1526 Analysis of PDEs +1108.1527 Probability +1108.1528 Algebraic Geometry +1108.1530 Neural and Evolutionary Computing +1108.1532 Cosmology and Nongalactic Astrophysics +1108.1544 Superconductivity +1108.1545 Materials Science +1108.1546 Number Theory +1108.1552 Quantum Algebra +1108.1554 Performance +1108.1559 Cellular Automata and Lattice Gases +1108.1561 Computer Science and Game Theory +1108.1570 Earth and Planetary Astrophysics +1108.1577 Analysis of PDEs +1108.1584 Spectral Theory +1108.1585 +1108.1586 Algebraic Geometry +1108.1589 Neural and Evolutionary Computing +1108.1591 Physics Education +1108.1592 Theory +1108.1593 Cryptography and Security +1108.1597 Physics and Society +1108.1598 +1108.1602 Differential Geometry +1108.1606 Combinatorics +1108.1610 Number Theory +1108.1611 Symplectic Geometry +1108.1613 Analysis of PDEs +1108.1614 Applications +1108.1616 Combinatorics +1108.1617 Accelerator Physics +1108.1619 Accelerator Physics +1108.1621 Accelerator Physics +1108.1623 Experiment +1108.1625 Accelerator Physics +1108.1626 Accelerator Physics +1108.1627 Accelerator Physics +1108.1628 Populations and Evolution +1108.1634 Accelerator Physics +1108.1635 Populations and Evolution +1108.1636 Computer Vision and Pattern Recognition +1108.1640 Accelerator Physics +1108.1642 Accelerator Physics +1108.1643 Accelerator Physics +1108.1644 Accelerator Physics +1108.1652 Accelerator Physics +1108.1653 Accelerator Physics +1108.1654 Accelerator Physics +1108.1655 Accelerator Physics +1108.1658 Combinatorics +1108.1660 Commutative Algebra +1108.1662 Optics +1108.1663 Accelerator Physics +1108.1664 Accelerator Physics +1108.1665 +1108.1669 Accelerator Physics +1108.1671 Logic +1108.1675 Statistics Theory +1108.1679 Combinatorics +1108.1680 Applications +1108.1682 +1108.1686 +1108.1689 Optimization and Control +1108.1700 Complex Variables +1108.1707 Statistical Mechanics +1108.1711 Materials Science +1108.1715 Instrumentation and Methods for Astrophysics +1108.1717 +1108.1718 +1108.1729 Analysis of PDEs +1108.1740 Statistical Mechanics +1108.1746 Combinatorics +1108.1751 Data Structures and Algorithms +1108.1753 High Energy Astrophysical Phenomena +1108.1760 Number Theory +1108.1766 Machine Learning +1108.1775 Biomolecules +1108.1782 +1108.1785 Networking and Internet Architecture +1108.1790 Populations and Evolution +astro-ph/0506007 +astro-ph/0512065 +astro-ph/0603217 +astro-ph/0603840 +astro-ph/0703095 +astro-ph/9601092 +astro-ph/9905122 +cond-mat/0203558 +cond-mat/0207555 +cond-mat/0207750 +cond-mat/0305038 +hep-th/0610252 Theory +hep-th/9810122 Theory +math/0410566 Metric Geometry +math/0609775 Number Theory +physics/0606071 Physics and Society +0802.2560 Disordered Systems and Neural Networks +0803.4401 Mesoscale and Nanoscale Physics +0808.0319 Algebraic Geometry +0904.2831 Representation Theory +0906.3357 +0906.3723 Combinatorics +0910.0524 History and Overview +0911.0108 Computation +0911.2258 Optimization and Control +0912.0065 +0912.1924 General Mathematics +1002.2580 Computational Geometry +1004.0179 +1004.0896 Statistical Mechanics +1005.4530 +1006.3756 Phenomenology +1008.4260 Solar and Stellar Astrophysics +1009.2048 Statistics Theory +1009.3898 Probability +1009.5232 General Physics +1011.0740 +1011.2459 Spectral Theory +1012.0877 +1101.2682 Probability +1101.3494 Combinatorics +1102.2117 Strongly Correlated Electrons +1102.3897 Optics +1102.4361 +1102.4594 Biological Physics +1103.0180 Materials Science +1103.0239 Combinatorics +1103.1761 Machine Learning +1103.3492 Analysis of PDEs +1103.3664 Quantum Gases +1103.4473 Mesoscale and Nanoscale Physics +1103.4501 Superconductivity +1103.5442 Solar and Stellar Astrophysics +1104.0210 Atomic Physics +1104.0473 +1104.1545 Solar and Stellar Astrophysics +1104.1547 Solar and Stellar Astrophysics +1104.2425 Experiment +1104.3499 Superconductivity +1104.3669 Cosmology and Nongalactic Astrophysics +1104.4361 Strongly Correlated Electrons +1104.5194 Experiment +1104.5378 Biological Physics +1105.0257 Physics and Society +1105.0914 Probability +1105.1558 Probability +1106.0294 Phenomenology +1106.1206 Mesoscale and Nanoscale Physics +1106.2687 Probability +1106.2878 Cosmology and Nongalactic Astrophysics +1106.3154 Cosmology and Nongalactic Astrophysics +1106.4007 Astrophysics of Galaxies +1107.1470 Computer Vision and Pattern Recognition +1107.2049 Astrophysics of Galaxies +1107.4624 Computational Geometry +1107.5037 General Mathematics +1108.2514 Networking and Internet Architecture +1108.2516 +1108.2521 Combinatorics +1108.2526 Number Theory +1108.2530 +1108.2536 Analysis of PDEs +1108.2538 Molecular Networks +1108.2540 Analysis of PDEs +1108.2541 Atomic Physics +1108.2545 Mesoscale and Nanoscale Physics +1108.2546 +1108.2548 Mesoscale and Nanoscale Physics +1108.2555 Combinatorics +1108.2559 Instrumentation and Methods for Astrophysics +1108.2573 Cosmology and Nongalactic Astrophysics +1108.2578 Functional Analysis +1108.2589 Mesoscale and Nanoscale Physics +1108.2598 Operator Algebras +1108.2602 Geometric Topology +1108.2610 Classical Analysis and ODEs +1108.2618 Soft Condensed Matter +1108.2624 History and Overview +1108.2627 Materials Science +1108.2628 General Physics +1108.2631 Metric Geometry +1108.2634 Other Computer Science +1108.2640 Fluid Dynamics +1108.2644 Networking and Internet Architecture +1108.2656 Cryptography and Security +1108.2661 +1108.2663 Statistical Mechanics +1108.2670 Experiment +1108.2673 Solar and Stellar Astrophysics +1108.2678 Analysis of PDEs +1108.2684 Information Theory +1108.2685 Information Retrieval +1108.2688 Classical Analysis and ODEs +1108.2697 Superconductivity +1108.2698 Representation Theory +astro-ph/0609387 +math/0411560 Probability +math/0411583 Probability +math/0510605 Probability +math/0602041 Probability +math/0603382 Probability +math/0702128 Quantum Algebra +math/0702208 Category Theory +0806.0916 +0809.0021 Numerical Analysis +0812.0828 Phenomenology +0901.3737 +0906.3886 Probability +0907.1270 Numerical Analysis +0909.2351 Materials Science +0909.3607 Numerical Analysis +0910.2949 +0910.4125 Cosmology and Nongalactic Astrophysics +0912.2080 Number Theory +0912.4988 Information Theory +1002.0687 Materials Science +1002.3020 Mesoscale and Nanoscale Physics +1003.2290 Number Theory +1003.5346 Dynamical Systems +1004.2517 Analysis of PDEs +1004.2778 Combinatorics +1005.1434 Statistical Mechanics +1006.0653 Phenomenology +1007.1120 Numerical Analysis +1007.4005 Phenomenology +1007.4511 +1008.0682 Strongly Correlated Electrons +1008.1242 Theory +1008.1377 Theory +1008.1763 Theory +1008.2565 Networking and Internet Architecture +1009.3243 Applications +1009.3382 Strongly Correlated Electrons +1009.4895 Theory +1010.4581 Theory +1010.4978 Phenomenology +1010.6002 Theory +1011.1235 Theory +1011.2337 Algebraic Geometry +1011.3375 Materials Science +1011.4887 Solar and Stellar Astrophysics +1011.6585 Fluid Dynamics +1012.0123 Superconductivity +1101.1304 High Energy Astrophysical Phenomena +1101.1713 Statistical Mechanics +1101.2882 +1102.0029 Theory +1102.1445 Superconductivity +1102.1486 +1102.1641 +1102.2023 Solar and Stellar Astrophysics +1102.2688 High Energy Astrophysical Phenomena +1102.5001 Theory +1103.0489 Mesoscale and Nanoscale Physics +1103.0943 Phenomenology +1103.4563 +1103.4680 Geometric Topology +1103.5439 Strongly Correlated Electrons +1103.5756 Theory +1104.0055 Phenomenology +1104.0556 Optics +1104.2661 +1104.2665 Combinatorics +1104.4439 Algebraic Geometry +1104.4574 Cosmology and Nongalactic Astrophysics +1104.4992 Dynamical Systems +1104.5480 Theory +1104.5490 Theory +1105.0129 Combinatorics +1105.0192 Experiment +1105.3468 Numerical Analysis +1105.3577 Theory +1105.4357 Phenomenology +1105.5928 Strongly Correlated Electrons +1106.0952 Combinatorics +1106.2619 Data Structures and Algorithms +1106.2887 Methodology +1106.2902 Data Analysis, Statistics and Probability +1106.3168 +1106.3326 Other Computer Science +1106.3337 Cosmology and Nongalactic Astrophysics +1106.3338 Numerical Analysis +1106.3342 Functional Analysis +1106.3343 Solar and Stellar Astrophysics +1106.3347 Statistical Mechanics +1106.3361 Artificial Intelligence +1106.3369 Human-Computer Interaction +1106.3370 Complex Variables +1106.3381 Information Theory +1106.3382 Mesoscale and Nanoscale Physics +1106.3385 +1106.3386 Neurons and Cognition +1106.3393 Methodology +1106.3395 Learning +1106.3396 Learning +1106.3397 Learning +1106.3399 Algebraic Topology +1106.3400 Methodology +1106.3403 Mesoscale and Nanoscale Physics +1106.3406 Methodology +1106.3408 Functional Analysis +1106.3410 Methodology +1106.3416 High Energy Astrophysical Phenomena +1106.3421 Combinatorics +1106.3422 Strongly Correlated Electrons +1106.3423 Materials Science +1106.3431 Chaotic Dynamics +1106.3432 Differential Geometry +1106.3436 Cosmology and Nongalactic Astrophysics +1106.3442 Logic +1106.3452 Medical Physics +1106.3454 Mesoscale and Nanoscale Physics +1106.3456 Discrete Mathematics +1106.3457 Programming Languages +1106.3459 Geometric Topology +1106.3460 +1106.3466 Computer Vision and Pattern Recognition +1106.3467 Computer Vision and Pattern Recognition +1106.3468 Differential Geometry +1106.3476 Complex Variables +1106.3478 Programming Languages +1106.3480 Numerical Analysis +1106.3486 Instrumentation and Methods for Astrophysics +1106.3488 Software Engineering +1106.3491 Phenomenology +1106.3496 Pricing of Securities +1106.3498 Artificial Intelligence +1106.3501 Atomic Physics +1106.3505 Algebraic Geometry +1106.3507 Cosmology and Nongalactic Astrophysics +1106.3508 Social and Information Networks +1106.3511 Mesoscale and Nanoscale Physics +1106.3516 Instrumentation and Methods for Astrophysics +1106.3517 Computer Vision and Pattern Recognition +1106.3519 Materials Science +1106.3522 Materials Science +1106.3531 Materials Science +1106.3532 Materials Science +1106.3533 Biomolecules +1106.3534 Chemical Physics +1106.3542 +1106.3545 Geometric Topology +1106.3549 +1106.3556 Theory +1106.3559 Cosmology and Nongalactic Astrophysics +1106.3560 Differential Geometry +cond-mat/0202282 Statistical Mechanics +cs/0306017 Logic in Computer Science +gr-qc/9807082 +hep-ph/9509287 Phenomenology +hep-ph/9612348 Phenomenology +hep-ph/9707319 Phenomenology +hep-th/9510170 Theory +physics/0401070 Classical Physics +q-alg/9607022 Quantum Algebra +0706.0796 Atomic Physics +0710.3003 Optimization and Control +0711.0949 Materials Science +0804.2305 Number Theory +0804.3351 Logic in Computer Science +0807.0051 Genomics +0808.0737 Mesoscale and Nanoscale Physics +0809.3650 Data Analysis, Statistics and Probability +0809.5056 +0810.0336 +0901.3407 Mesoscale and Nanoscale Physics +0902.1491 Materials Science +0902.4667 +0904.1891 Quantum Algebra +0905.1858 Probability +0908.3577 Functional Analysis +0909.4732 Combinatorics +0910.2559 Biomolecules +0912.1345 Cosmology and Nongalactic Astrophysics +0912.2695 Methodology +0912.2986 Algebraic Geometry +0912.5153 Theory +1001.3367 Probability +1001.3373 Functional Analysis +1001.5159 +1001.5215 Phenomenology +1002.1910 High Energy Astrophysical Phenomena +1002.1959 +1003.1225 Astrophysics of Galaxies +1003.1738 Information Theory +1003.5612 Phenomenology +1003.5652 +1003.6046 Metric Geometry +1004.3750 Functional Analysis +1005.2352 Cosmology and Nongalactic Astrophysics +1005.3236 +1006.0509 Quantum Gases +1007.2825 Functional Analysis +1007.2862 Materials Science +1007.5366 +1008.2261 Group Theory +1008.4146 Solar and Stellar Astrophysics +1008.4451 Algebraic Geometry +1008.5237 +1009.1529 Experiment +1009.4130 Probability +1009.5402 Number Theory +1010.0542 Classical Analysis and ODEs +1010.2502 Astrophysics of Galaxies +1010.3782 Probability +1010.4147 Quantum Gases +1010.6101 Lattice +1011.0579 Mesoscale and Nanoscale Physics +1011.0732 Cosmology and Nongalactic Astrophysics +1011.2980 Statistical Mechanics +1011.3791 Mesoscale and Nanoscale Physics +1011.4826 Differential Geometry +1011.6445 +1012.3893 Phenomenology +1012.5495 Quantum Algebra +1101.0136 Complex Variables +1101.1974 Rings and Algebras +1101.2670 Complex Variables +1101.2955 Materials Science +1101.2958 Materials Science +1101.2959 Materials Science +1101.2965 Materials Science +1101.3124 Cryptography and Security +1101.3134 Representation Theory +1101.3141 Logic +1101.3228 Computational Finance +1101.3310 Phenomenology +1101.3344 Number Theory +1101.3354 Computer Vision and Pattern Recognition +1101.3364 Classical Analysis and ODEs +1101.3368 Commutative Algebra +1101.3369 Dynamical Systems +1101.3376 Group Theory +1101.3377 Number Theory +1101.3391 Computer Vision and Pattern Recognition +1101.3392 +1101.3395 General Physics +1101.3398 Information Theory +1101.3400 Information Retrieval +1101.3405 +1101.3412 Statistics Theory +1101.3425 Phenomenology +1101.3427 Combinatorics +1101.3439 Phenomenology +1101.3442 History and Philosophy of Physics +1101.3446 Theory +1101.3448 Data Structures and Algorithms +1101.3453 Information Theory +1101.3463 Representation Theory +1101.3467 Number Theory +1101.3468 Metric Geometry +1101.3470 Popular Physics +1101.3471 Plasma Physics +1101.3474 Genomics +1101.3475 Classical Analysis and ODEs +1101.3491 Instrumentation and Detectors +1101.3502 Instrumentation and Methods for Astrophysics +1101.3508 +1101.3520 Distributed, Parallel, and Cluster Computing +1101.3537 Analysis of PDEs +1101.3544 Rings and Algebras +cs/0608124 Data Structures and Algorithms +math/0612809 Representation Theory +physics/0508136 General Physics +0803.3984 Theory +0804.1677 Differential Geometry +0805.1152 Dynamical Systems +0805.2695 Dynamical Systems +0807.4461 Phenomenology +0808.0306 Differential Geometry +0810.3906 Operator Algebras +0812.0610 Dynamical Systems +0901.2267 Differential Geometry +0902.2754 Differential Geometry +0903.2514 Number Theory +0905.0345 Differential Geometry +0906.0721 Statistical Mechanics +0906.1678 Populations and Evolution +0907.1076 Statistical Mechanics +0908.4131 Superconductivity +0909.1126 Quantum Algebra +0909.3011 Plasma Physics +0910.1669 Phenomenology +0910.2350 +0910.3936 Computational Finance +1002.3439 Commutative Algebra +1002.3481 Materials Science +1003.0775 Commutative Algebra +1003.2033 Quantum Algebra +1003.2310 Optics +1003.5313 K-Theory and Homology +1004.0115 Instrumentation and Methods for Astrophysics +1004.2325 Cosmology and Nongalactic Astrophysics +1004.2886 Instrumentation and Detectors +1005.0562 Statistical Mechanics +1005.1520 Category Theory +1006.1488 Mesoscale and Nanoscale Physics +1006.1686 Spectral Theory +1006.2791 Computational Physics +1006.5372 Algebraic Geometry +1006.5882 +1007.0623 +1008.1306 Statistical Mechanics +1008.1698 Strongly Correlated Electrons +1008.2421 Statistical Finance +1009.2354 Differential Geometry +1009.2571 +1009.3120 Mesoscale and Nanoscale Physics +1010.0707 Numerical Analysis +1010.3542 Superconductivity +1010.3907 Soft Condensed Matter +1010.4601 High Energy Astrophysical Phenomena +1011.1112 Strongly Correlated Electrons +1011.2859 Strongly Correlated Electrons +1011.2957 Statistical Mechanics +1011.3046 Phenomenology +1011.5603 Phenomenology +1011.6645 Strongly Correlated Electrons +1012.1756 Number Theory +1012.2354 Commutative Algebra +1012.5112 Solar and Stellar Astrophysics +1012.5911 Data Structures and Algorithms +1101.0614 Cosmology and Nongalactic Astrophysics +1101.0731 K-Theory and Homology +1101.1252 Information Theory +1101.1501 Phenomenology +1101.1651 Soft Condensed Matter +1101.1798 Classical Analysis and ODEs +1101.1809 +1101.1978 Probability +1101.1981 Materials Science +1101.1985 Phenomenology +1101.1986 Plasma Physics +1101.1988 Algebraic Geometry +1101.2004 Differential Geometry +1101.2006 +1101.2053 Analysis of PDEs +1101.2056 K-Theory and Homology +1101.2061 Discrete Mathematics +1101.2063 Instrumentation and Detectors +1101.2067 Strongly Correlated Electrons +1101.2081 Populations and Evolution +1101.2085 Functional Analysis +1101.2087 Earth and Planetary Astrophysics +1101.2088 Mesoscale and Nanoscale Physics +1101.2094 Theory +1101.2095 Phenomenology +1101.2096 Networking and Internet Architecture +1101.2097 Number Theory +1101.2098 Networking and Internet Architecture +1101.2103 Quantitative Methods +1101.2104 Phenomenology +1101.2117 Metric Geometry +1101.2123 Optimization and Control +1101.2129 Strongly Correlated Electrons +1101.2130 Mesoscale and Nanoscale Physics +1101.2139 +1101.2142 Algebraic Topology +1101.2143 Differential Geometry +1101.2146 Programming Languages +1101.2148 Analysis of PDEs +1101.2173 Numerical Analysis +1101.2183 Probability +1101.2198 +cond-mat/0202342 Superconductivity +cond-mat/0302251 Superconductivity +cond-mat/0302354 Strongly Correlated Electrons +cond-mat/9902182 +cond-mat/9904175 +math/0209410 Number Theory +math/0309224 Number Theory +math/0506312 Differential Geometry +math/0612611 Number Theory +quant-ph/0610155 +0706.4370 Materials Science +0710.0262 Populations and Evolution +0711.2625 Phenomenology +0801.4190 Populations and Evolution +0805.4404 Statistical Mechanics +0810.0066 Differential Geometry +0810.3181 Experiment +0811.2378 Mesoscale and Nanoscale Physics +0907.5025 Differential Geometry +0908.2061 Probability +0909.1422 Other Condensed Matter +0912.4564 Discrete Mathematics +1001.0674 +1001.1306 +1001.3480 Probability +1002.0617 +1003.3216 Superconductivity +1003.5490 +1005.2810 +1006.1902 Theory +1006.4298 Experiment +1006.4307 Geophysics +1007.4979 +1007.5031 +1007.5403 Lattice +1008.0214 +1008.0543 +1008.1390 +1008.1929 Phenomenology +1008.3323 +1008.3675 Number Theory +1008.3753 Phenomenology +1008.3885 Superconductivity +1008.4145 Lattice +1008.4371 Analysis of PDEs +1008.4492 +1009.0799 +1009.0899 +1009.1198 +1009.2416 +1009.2515 Experiment +1009.2728 Analysis of PDEs +1009.2935 Geometric Topology +1009.2950 +1009.3339 +1009.3503 Instrumentation and Detectors +1009.3965 +1009.5807 Probability +1009.6080 +1010.0652 Numerical Analysis +1010.1596 Phenomenology +1010.1804 +1010.3321 +1010.4033 Superconductivity +1010.5279 +1011.0367 +1011.1565 Disordered Systems and Neural Networks +1011.3993 +1011.5196 +1011.5424 +1012.1377 Experiment +1012.1400 +1012.1443 +1012.1456 Phenomenology +1012.1514 +1012.4254 Statistical Mechanics +1101.0195 +1101.1381 High Energy Astrophysical Phenomena +1102.0669 Atomic Physics +1102.1222 Statistical Mechanics +1102.3624 +1102.3762 Strongly Correlated Electrons +1102.3805 Quantum Gases +1102.3806 Phenomenology +1102.3981 +1103.0158 Spectral Theory +1103.1441 Materials Science +1103.2412 Mesoscale and Nanoscale Physics +1103.4400 Theory +1103.4652 +1103.5602 Optimization and Control +1104.2248 Geophysics +1104.3089 Differential Geometry +1104.4235 Molecular Networks +1104.5234 Quantum Gases +1105.0869 Instrumentation and Detectors +1105.1319 +1105.1773 Cosmology and Nongalactic Astrophysics +1105.2363 Analysis of PDEs +1105.2455 Statistical Mechanics +1105.3397 Spectral Theory +1105.3832 +1106.0379 Theory +1106.1675 Superconductivity +1106.1866 Number Theory +1106.1991 Analysis of PDEs +1106.2175 Mesoscale and Nanoscale Physics +1106.2681 Mesoscale and Nanoscale Physics +1106.3314 Distributed, Parallel, and Cluster Computing +1106.3597 Optimization and Control +1106.3729 Mesoscale and Nanoscale Physics +1106.4559 Quantum Gases +1107.0153 Mesoscale and Nanoscale Physics +1107.0862 High Energy Astrophysical Phenomena +1107.0996 +1107.2622 Theory +1107.3779 Theory +1107.4201 +1107.5291 Strongly Correlated Electrons +1107.5476 Atomic Physics +1108.0129 Probability +1108.5335 High Energy Astrophysical Phenomena +1108.5428 Networking and Internet Architecture +1108.5781 Probability +1109.0931 Networking and Internet Architecture +1109.1790 Functional Analysis +1109.3284 History and Philosophy of Physics +1109.4015 Commutative Algebra +1109.4745 Strongly Correlated Electrons +1109.4988 +1109.5221 +1109.5339 Analysis of PDEs +1109.5604 Analysis of PDEs +1109.5787 +1109.5796 Applications +1109.5834 Commutative Algebra +1109.5872 +1109.5989 Algebraic Topology +1109.6160 Phenomenology +1109.6316 +1109.6340 Multiagent Systems +1109.6341 Learning +1109.6344 Artificial Intelligence +1109.6345 Artificial Intelligence +1109.6346 Artificial Intelligence +1109.6347 Networking and Internet Architecture +1109.6348 Artificial Intelligence +1109.6359 Fluid Dynamics +1109.6361 Artificial Intelligence +1109.6363 Atmospheric and Oceanic Physics +1109.6369 Networking and Internet Architecture +1109.6370 Numerical Analysis +1109.6371 Information Theory +1109.6373 Phenomenology +1109.6382 Algebraic Topology +1109.6385 Geometric Topology +1109.6390 Information Theory +1109.6391 Systems and Control +1109.6392 Systems and Control +1109.6394 Differential Geometry +1109.6395 Classical Analysis and ODEs +1109.6403 Numerical Analysis +1109.6404 Optics +1109.6405 Methodology +1109.6410 Dynamical Systems +1109.6414 Optics +1109.6418 +1109.6422 +1109.6425 Mesoscale and Nanoscale Physics +1109.6427 Group Theory +1109.6428 Number Theory +1109.6429 Group Theory +1109.6430 Number Theory +1109.6432 Number Theory +1109.6434 Mesoscale and Nanoscale Physics +1109.6438 Algebraic Geometry +1109.6446 High Energy Astrophysical Phenomena +1109.6447 Mesoscale and Nanoscale Physics +1109.6450 Mesoscale and Nanoscale Physics +1109.6460 Instrumentation and Detectors +1109.6466 Algebraic Geometry +1109.6470 Classical Analysis and ODEs +1109.6473 Classical Analysis and ODEs +1109.6476 Classical Analysis and ODEs +1109.6485 Functional Analysis +1109.6488 Solar and Stellar Astrophysics +1109.6491 Soft Condensed Matter +1109.6494 Graphics +1109.6495 Astrophysics of Galaxies +1109.6496 Solar and Stellar Astrophysics +1109.6497 Astrophysics of Galaxies +1109.6500 Solar and Stellar Astrophysics +1109.6501 Statistics Theory +1109.6502 Networking and Internet Architecture +1109.6505 Optimization and Control +1109.6512 Complex Variables +1109.6521 Combinatorics +1109.6523 Differential Geometry +1109.6524 Neurons and Cognition +1109.6531 Other Statistics +1109.6536 Other Computer Science +1109.6542 Atmospheric and Oceanic Physics +1109.6545 Medical Physics +1109.6549 Lattice +1109.6557 General Mathematics +1109.6560 Number Theory +1109.6565 Other Statistics +1109.6570 Functional Analysis +1109.6571 Cosmology and Nongalactic Astrophysics +1109.6574 Cosmology and Nongalactic Astrophysics +1109.6578 Experiment +1109.6580 Numerical Analysis +1109.6582 Experiment +1109.6583 +1109.6589 Biomolecules +1109.6594 +1109.6596 Representation Theory +1109.6604 +1109.6610 Experiment +1109.6621 Artificial Intelligence +1109.6625 Combinatorics +1109.6626 Other Computer Science +1109.6630 General Physics +1109.6637 Representation Theory +astro-ph/0012336 +astro-ph/0204135 +astro-ph/0205400 +astro-ph/0208519 +astro-ph/0209540 +astro-ph/0209623 +astro-ph/0310160 +astro-ph/0408248 +astro-ph/0408293 +astro-ph/0411104 +astro-ph/0412070 +astro-ph/0503004 +astro-ph/0503193 +astro-ph/0510488 +astro-ph/0601190 +astro-ph/0603721 +astro-ph/9311071 +astro-ph/9509047 +astro-ph/9705241 +astro-ph/9707087 +cond-mat/0402193 Other Condensed Matter +gr-qc/0206053 +gr-qc/0403029 +gr-qc/9308002 +gr-qc/9605024 +gr-qc/9704082 +hep-ph/0309312 Phenomenology +hep-ph/0312392 Phenomenology +hep-ph/0405143 Phenomenology +hep-ph/0605045 Phenomenology +hep-ph/0612029 Phenomenology +hep-ph/9409388 Phenomenology +hep-th/0002040 Theory +hep-th/0508023 Theory +math/0312033 Operator Algebras +math/0504378 Probability +math/0509575 Probability +quant-ph/0505128 +0705.0104 Soft Condensed Matter +0708.2920 Materials Science +0710.3157 Statistical Mechanics +0710.5257 +0710.5439 Soft Condensed Matter +0807.0727 Soft Condensed Matter +0807.4089 Soft Condensed Matter +0809.4955 Soft Condensed Matter +0810.2945 Algebraic Geometry +0811.1802 Statistical Mechanics +0901.0137 Algebraic Topology +0901.2935 Statistical Mechanics +0903.4575 +0904.1185 Mesoscale and Nanoscale Physics +0905.2341 Algebraic Geometry +0905.3236 Differential Geometry +0905.4348 Number Theory +0906.2482 +0906.3153 +0909.0701 Instrumentation and Methods for Astrophysics +0909.0711 Instrumentation and Methods for Astrophysics +0911.2853 Quantum Gases +0911.4309 Theory +0912.2884 High Energy Astrophysical Phenomena +0912.3538 Classical Analysis and ODEs +0912.5400 Strongly Correlated Electrons +1001.1270 Differential Geometry +1001.3295 Instrumentation and Methods for Astrophysics +1002.1676 Algebraic Geometry +1002.3447 Combinatorics +1003.4435 Differential Geometry +1004.0281 Theory +1004.0921 Metric Geometry +1004.2781 Representation Theory +1005.0296 Functional Analysis +1005.3961 Soft Condensed Matter +1006.0440 Algebraic Geometry +1006.2090 Materials Science +1007.2223 Functional Analysis +1007.3218 Operator Algebras +1008.0381 Classical Analysis and ODEs +1009.3290 Statistical Mechanics +1009.4701 Cosmology and Nongalactic Astrophysics +1010.0072 Statistics Theory +1010.0983 Probability +1010.4791 Mesoscale and Nanoscale Physics +1011.0377 Cosmology and Nongalactic Astrophysics +1012.0327 Theory +1012.0333 Theory +1012.0362 +1012.0410 Lattice +1012.0440 Phenomenology +1012.0441 Theory +1012.0473 Theory +1012.0480 Theory +1012.4013 Superconductivity +1012.4878 Logic +1012.5216 Operator Algebras +1101.3851 Materials Science +1102.0450 Materials Science +1102.1490 +1102.2210 +1102.2753 Theory +1102.5096 +1102.5289 Theory +1103.1432 Information Theory +1103.2193 Spectral Theory +1103.5175 Chaotic Dynamics +1104.0257 Strongly Correlated Electrons +1104.0908 Quantum Gases +1104.1244 Statistics Theory +1104.2655 Lattice +1104.2800 Mesoscale and Nanoscale Physics +1104.4850 Atomic Physics +1105.0188 +1105.1399 Phenomenology +1105.1893 Strongly Correlated Electrons +1105.3554 Other Condensed Matter +1105.4588 Strongly Correlated Electrons +1105.4642 Mesoscale and Nanoscale Physics +1106.1172 Theory +1106.1486 Theory +1106.2089 Statistical Mechanics +1106.3108 Strongly Correlated Electrons +1106.3558 Experiment +1106.4225 +1106.4911 +1106.6177 Phenomenology +1107.0056 Discrete Mathematics +1107.0087 Soft Condensed Matter +1107.0649 Phenomenology +1107.0672 Group Theory +1107.0741 Phenomenology +1107.1599 Optics +1107.2792 +1107.2845 Phenomenology +1107.3107 Disordered Systems and Neural Networks +1107.4530 Information Theory +1107.4736 Dynamical Systems +1107.5549 Optics +1107.5960 Materials Science +1108.1057 Cosmology and Nongalactic Astrophysics +1108.2700 Digital Libraries +1108.3598 Complex Variables +1108.4163 +1108.4550 Analysis of PDEs +1109.0757 Differential Geometry +1109.0812 High Energy Astrophysical Phenomena +1109.0945 Experiment +1109.1422 Solar and Stellar Astrophysics +1109.1608 Complex Variables +1109.1742 Phenomenology +1109.1990 Learning +1109.2100 Astrophysics of Galaxies +1109.2220 Functional Analysis +1109.2287 Experiment +1109.2483 Algebraic Geometry +1109.2503 Rings and Algebras +1109.2602 Solar and Stellar Astrophysics +1109.2619 Astrophysics of Galaxies +1109.2622 Astrophysics of Galaxies +1109.2630 Phenomenology +1109.2631 Trading and Market Microstructure +1109.2634 Solar and Stellar Astrophysics +1109.2637 Cryptography and Security +1109.2638 Operating Systems +1109.2639 Astrophysics of Galaxies +1109.2640 Quantum Algebra +1109.2645 Complex Variables +1109.2647 Optics +1109.2653 Analysis of PDEs +1109.2654 Logic in Computer Science +1109.2655 Logic in Computer Science +1109.2656 Logic in Computer Science +1109.2657 Computation and Language +1109.2658 Computers and Society +1109.2661 Combinatorics +1109.2665 Solar and Stellar Astrophysics +1109.2669 Numerical Analysis +1109.2673 Differential Geometry +1109.2681 Classical Physics +1109.2683 Biomolecules +1109.2684 Social and Information Networks +1109.2685 Materials Science +1109.2686 Algebraic Topology +1109.2693 +1109.2697 Cryptography and Security +1109.2701 Solar and Stellar Astrophysics +1109.2711 Solar and Stellar Astrophysics +1109.2714 Fluid Dynamics +1109.2720 Information Theory +1109.2722 Phenomenology +1109.2723 Analysis of PDEs +1109.2726 Analysis of PDEs +1109.2731 Spectral Theory +1109.2733 Statistical Mechanics +1109.2737 Phenomenology +1109.2745 Differential Geometry +1109.2752 Artificial Intelligence +1109.2757 Superconductivity +1109.2759 Superconductivity +1109.2761 Phenomenology +1109.2763 Combinatorics +1109.2771 Materials Science +1109.2772 Optics +1109.2773 +1109.2779 +1109.2784 Number Theory +1109.2785 Symbolic Computation +1109.2788 Neural and Evolutionary Computing +1109.2791 Complex Variables +1109.2796 Cosmology and Nongalactic Astrophysics +1109.2800 Optimization and Control +1109.2807 Programming Languages +1109.2811 Instrumentation and Detectors +1109.2812 Number Theory +1109.2813 Representation Theory +1109.2816 Optimization and Control +1109.2817 Phenomenology +1109.2819 Accelerator Physics +1109.2822 Experiment +1109.2823 Dynamical Systems +1109.2826 Experiment +1109.2827 +1109.2829 Phenomenology +1109.2837 Differential Geometry +1109.2839 Popular Physics +1109.2843 Networking and Internet Architecture +1109.2845 Experiment +1109.2849 Combinatorics +1109.2855 Instrumentation and Detectors +1109.2860 Number Theory +1109.2863 High Energy Astrophysical Phenomena +1109.2872 Materials Science +1109.2873 Software Engineering +1109.2874 General Topology +1109.2875 +1109.2878 General Physics +1109.2891 Information Theory +astro-ph/0104075 +cond-mat/0310716 Soft Condensed Matter +cond-mat/0506307 Other Condensed Matter +cond-mat/0507117 Other Condensed Matter +cond-mat/0606301 Statistical Mechanics +cond-mat/0607321 Soft Condensed Matter +cond-mat/9407106 +gr-qc/0106066 +hep-ex/0401012 Experiment +hep-th/0112090 Theory +hep-th/0203060 Theory +math-ph/0405011 +math-ph/0606027 +math-ph/0606028 +math-ph/0606046 +math-ph/0606053 +math/0401150 Complex Variables +math/0611154 Quantum Algebra +q-alg/9609003 Quantum Algebra +quant-ph/0205157 +0706.0163 Neurons and Cognition +0710.1087 Phenomenology +0712.2075 Combinatorics +0712.3550 Statistical Mechanics +0712.3556 Statistical Mechanics +0801.1993 Metric Geometry +0802.0663 Differential Geometry +0803.0713 Mesoscale and Nanoscale Physics +0805.3994 Phenomenology +0806.3952 Dynamical Systems +0808.1568 Number Theory +0901.3565 Combinatorics +0905.3163 Analysis of PDEs +0907.0153 Phenomenology +0907.3217 Classical Analysis and ODEs +0909.4037 Probability +0910.1848 Number Theory +0911.0061 Differential Geometry +0912.0906 Theory +0912.2754 Algebraic Geometry +0912.2929 Combinatorics +1002.0373 Analysis of PDEs +1004.3949 Analysis of PDEs +1004.4785 Number Theory +1004.5047 Logic +1005.2386 +1006.4668 Materials Science +1006.5569 Dynamical Systems +1006.5571 Dynamical Systems +1007.0587 Cosmology and Nongalactic Astrophysics +1007.1424 Phenomenology +1007.2989 Logic in Computer Science +1007.3362 Computational Finance +1007.4431 Representation Theory +1007.5516 Methodology +1008.4188 Programming Languages +1008.4459 Cosmology and Nongalactic Astrophysics +1009.0954 Superconductivity +1009.0995 +1009.1661 Theory +1009.5953 +1009.6023 Combinatorics +1010.1669 Information Theory +1010.5722 Group Theory +1010.5896 Rings and Algebras +1011.1382 +1011.2434 Soft Condensed Matter +1011.3040 +1012.1142 Astrophysics of Galaxies +1012.3709 Other Condensed Matter +1101.1352 Strongly Correlated Electrons +1101.5392 Phenomenology +1101.5654 Mesoscale and Nanoscale Physics +1101.5913 Physics and Society +1102.2795 Phenomenology +1102.2958 Phenomenology +1102.3044 Information Theory +1102.5136 Dynamical Systems +1102.5147 Phenomenology +1103.0142 Fluid Dynamics +1103.1177 Superconductivity +1103.1667 Mesoscale and Nanoscale Physics +1103.2977 Statistical Mechanics +1103.4297 Complex Variables +1103.4399 Logic in Computer Science +1103.4843 +1103.5745 Theory +1104.0651 Learning +1104.1289 +1104.2601 Phenomenology +1104.2653 +1104.3599 +1104.4067 Phenomenology +1104.4094 Phenomenology +1104.4962 Phenomenology +1104.5129 Phenomenology +1104.5279 Theory +1104.5680 +1105.1036 Phenomenology +1105.3341 Optics +1106.2999 Probability +1106.3333 Superconductivity +1106.4323 Strongly Correlated Electrons +1106.4830 Soft Condensed Matter +1107.0401 Superconductivity +1107.1311 Solar and Stellar Astrophysics +1107.1998 Other Quantitative Biology +1107.2675 Atmospheric and Oceanic Physics +1107.3030 Phenomenology +1107.3243 Phenomenology +1107.3245 Computer Science and Game Theory +1107.3498 Neural and Evolutionary Computing +1107.3558 Astrophysics of Galaxies +1107.3560 Instrumentation and Methods for Astrophysics +1107.3567 Instrumentation and Methods for Astrophysics +1107.3579 Phenomenology +1107.3580 Cosmology and Nongalactic Astrophysics +1107.3584 Symbolic Computation +1107.3592 Analysis of PDEs +1107.3593 Cryptography and Security +1107.3598 Dynamical Systems +1107.3599 General Physics +1107.3611 Fluid Dynamics +1107.3613 Combinatorics +1107.3614 Information Theory +1107.3615 Soft Condensed Matter +1107.3617 Materials Science +1107.3622 Data Structures and Algorithms +1107.3625 +1107.3626 Superconductivity +1107.3629 Analysis of PDEs +1107.3630 Networking and Internet Architecture +1107.3631 Cryptography and Security +1107.3634 +1107.3636 Information Theory +1107.3637 Optics +1107.3641 Plasma Physics +1107.3649 Quantum Algebra +1107.3656 Networking and Internet Architecture +1107.3658 Data Structures and Algorithms +1107.3663 Artificial Intelligence +1107.3665 Solar and Stellar Astrophysics +1107.3666 Group Theory +1107.3667 Numerical Analysis +1107.3671 Networking and Internet Architecture +1107.3672 Algebraic Geometry +1107.3678 Mesoscale and Nanoscale Physics +1107.3680 Graphics +1107.3682 Distributed, Parallel, and Cluster Computing +1107.3683 Functional Analysis +1107.3684 Phenomenology +1107.3685 +1107.3692 Other Condensed Matter +1107.3695 Networking and Internet Architecture +1107.3699 +1107.3701 History and Philosophy of Physics +1107.3703 +1107.3706 Logic in Computer Science +1107.3708 Optics +1107.3710 Plasma Physics +1107.3711 Dynamical Systems +1107.3723 Cosmology and Nongalactic Astrophysics +1107.3727 Statistical Mechanics +1107.3729 Numerical Analysis +1107.3733 Classical Analysis and ODEs +1107.3734 Distributed, Parallel, and Cluster Computing +1107.3736 +1107.3740 Materials Science +1107.3741 +1107.3746 Logic +1107.3751 +1107.3755 Metric Geometry +1107.3757 Materials Science +1107.3758 Astrophysics of Galaxies +1107.3759 Computers and Society +1107.3760 Probability +1107.3765 Artificial Intelligence +1107.3767 Computational Complexity +1107.3769 Differential Geometry +1107.3780 Medical Physics +1107.3782 Experiment +1107.3783 Logic +1107.3784 Cryptography and Security +1107.3785 Computers and Society +1107.3787 Solar and Stellar Astrophysics +1107.3790 Probability +1107.3794 Cryptography and Security +1107.3795 +1107.3796 Optimization and Control +1107.3798 Representation Theory +1107.3806 Statistics Theory +1107.3811 Statistics Theory +1107.3817 Medical Physics +1107.3818 Discrete Mathematics +1107.3823 Learning +1107.3824 Algebraic Geometry +1107.3826 Classical Analysis and ODEs +1107.3831 Popular Physics +math/0209229 Dynamical Systems +math/0406375 Classical Analysis and ODEs +math/0406503 Dynamical Systems +math/0510014 Dynamical Systems +math/0510342 Classical Analysis and ODEs +math/0510389 Dynamical Systems +math/0512602 Dynamical Systems +math/0608271 Probability +0705.3748 Discrete Mathematics +0705.3769 Phenomenology +0705.3986 Materials Science +0705.3994 Strongly Correlated Electrons +0705.4024 Computational Physics +0705.4204 Mesoscale and Nanoscale Physics +0705.4247 +0705.4279 Functional Analysis +0705.4315 General Physics +0705.4647 +0706.0099 Data Analysis, Statistics and Probability +0706.0158 Phenomenology +0706.0475 Soft Condensed Matter +0706.0507 Human-Computer Interaction +0706.0559 Statistical Mechanics +0706.0573 General Physics +0706.0601 Statistical Mechanics +0706.0608 +0706.0615 Analysis of PDEs +0706.0681 Combinatorics +0706.0710 +0706.0917 Theory +0706.0946 Differential Geometry +0706.0975 Chemical Physics +0706.0994 Strongly Correlated Electrons +0706.1017 Biomolecules +0706.1029 +0706.1035 Plasma Physics +0706.1070 +0706.1120 Differential Geometry +0706.1391 Mesoscale and Nanoscale Physics +0706.1484 Functional Analysis +0706.1518 +0706.1723 Other Condensed Matter +0706.1727 Theory +0706.1742 Statistical Mechanics +0706.1817 Quantum Algebra +0706.1860 Multiagent Systems +0706.1867 Experiment +0706.1888 Mesoscale and Nanoscale Physics +0706.1949 Disordered Systems and Neural Networks +0706.1984 Experiment +0706.2037 Statistical Mechanics +0706.2107 Combinatorics +0706.2148 Atomic Physics +0706.2199 Materials Science +0706.2265 Materials Science +0706.2371 Chemical Physics +0706.2445 +0706.2660 Superconductivity +0706.2684 Statistical Mechanics +0706.2778 Combinatorics +0706.2798 Soft Condensed Matter +0706.2913 Mesoscale and Nanoscale Physics +0706.2978 +0706.3021 Logic +0706.3038 +0706.3100 Mesoscale and Nanoscale Physics +0706.3105 Phenomenology +0706.3133 +0706.3186 +0706.3191 +0706.3197 +0706.3225 Physics and Society +0706.3342 History and Overview +0706.3379 +0706.3389 Functional Analysis +0706.3458 Statistical Mechanics +0706.3479 Other Computer Science +0706.3542 Superconductivity +0706.3546 Distributed, Parallel, and Cluster Computing +0706.3566 Symplectic Geometry +0706.3590 Strongly Correlated Electrons +0706.3805 Statistical Mechanics +0706.3808 +0706.3812 Cryptography and Security +0706.3828 Algebraic Geometry +0706.3832 Mesoscale and Nanoscale Physics +0706.3869 +0706.3997 Mesoscale and Nanoscale Physics +0706.4021 Statistical Mechanics +0706.4031 Theory +0706.4147 General Physics +0706.4190 Methodology +0706.4354 K-Theory and Homology +0706.4364 Phenomenology +0706.4408 Disordered Systems and Neural Networks +0707.0011 Popular Physics +0707.0035 Differential Geometry +0707.0038 Representation Theory +0707.0091 General Physics +0707.0156 General Physics +0707.0175 Experiment +0707.0443 Theory +0707.0488 +0707.0512 Theory +0707.0540 Physics and Society +0707.0565 Disordered Systems and Neural Networks +0707.0629 Strongly Correlated Electrons +0707.0660 Statistics Theory +0707.0687 +0707.0705 Artificial Intelligence +0707.0765 Materials Science +0707.0971 Optics +0707.1053 Computer Science and Game Theory +0707.1069 Combinatorics +0707.1076 Rings and Algebras +0707.1086 +0707.1126 Optics +0707.1144 Group Theory +0707.1176 Computational Complexity +0707.1184 Complex Variables +0707.1199 +0707.1206 Populations and Evolution +0707.1259 Phenomenology +0707.1503 Quantitative Methods +0707.1509 Experiment +0707.1514 Mesoscale and Nanoscale Physics +0707.1529 Superconductivity +0707.1571 General Physics +0707.1641 +0707.1646 Physics and Society +0707.1660 +0707.1703 Atomic Physics +0707.1746 Probability +0707.1749 Experiment +0707.1761 Number Theory +0707.1775 Fluid Dynamics +0707.1833 Probability +0707.1939 Lattice +0707.2026 Rings and Algebras +0707.2043 +0707.2060 +0707.2220 Operator Algebras +0707.2223 +0707.2363 Representation Theory +0707.2555 Statistical Mechanics +0707.2573 Quantitative Methods +0707.3139 Commutative Algebra +0707.3236 Other Computer Science +0707.3252 +0707.3323 Number Theory +0707.3346 Materials Science +0707.3349 Superconductivity +0707.3352 +0707.3407 Data Structures and Algorithms +0707.3584 Information Theory +0707.3606 Biomolecules +0707.3729 Probability +0707.3733 Disordered Systems and Neural Networks +0707.3746 Probability +0707.3767 Soft Condensed Matter +0707.3770 Populations and Evolution +0707.3792 +0707.3796 Chemical Physics +0707.3886 Probability +0707.4066 Statistical Mechanics +0707.4111 Materials Science +0707.4114 Soft Condensed Matter +0707.4144 Medical Physics +0707.4154 +0707.4208 Popular Physics +0707.4224 Phenomenology +0707.4269 Combinatorics +0707.4272 General Physics +0707.4280 Materials Science +0707.4355 Probability +0707.4449 Commutative Algebra +0707.4535 Strongly Correlated Electrons +0707.4536 Probability +0707.4546 Probability +0707.4547 Chaotic Dynamics +0707.4553 Probability +0707.4586 Phenomenology +0707.4588 Probability +0707.4653 Superconductivity +0708.0079 Statistics Theory +0708.0080 Number Theory +0708.0083 Statistics Theory +0708.0094 Statistics Theory +0708.0110 Soft Condensed Matter +0708.0127 Materials Science +0708.0143 Statistics Theory +0708.0156 Biomolecules +0708.0165 Methodology +0708.0167 Statistics Theory +0708.0185 Statistics Theory +0708.0197 Statistics Theory +0708.0235 +0708.0247 +0708.0360 +0708.0440 Biomolecules +0708.0452 Spectral Theory +0708.0492 Data Analysis, Statistics and Probability +0708.0515 Mesoscale and Nanoscale Physics +0708.0528 Subcellular Processes +0708.0533 +0708.0606 Disordered Systems and Neural Networks +0708.0614 Probability +0708.0676 Strongly Correlated Electrons +0708.0760 Statistical Mechanics +0708.0776 Physics and Society +0708.0813 +0708.0933 +0708.1000 +0708.1043 Statistical Mechanics +0708.1062 Mesoscale and Nanoscale Physics +0708.1165 Analysis of PDEs +0708.1200 Mesoscale and Nanoscale Physics +0708.1520 Mesoscale and Nanoscale Physics +0708.1556 Functional Analysis +0708.1634 K-Theory and Homology +0708.1684 Mesoscale and Nanoscale Physics +0708.1727 Algebraic Geometry +0708.1749 Strongly Correlated Electrons +0708.1764 +0708.1802 Statistical Mechanics +0708.1866 Chaotic Dynamics +0708.2008 Differential Geometry +0708.2050 Exactly Solvable and Integrable Systems +0708.2129 +0708.2288 Theory +0708.2582 Materials Science +0708.2677 Statistical Mechanics +0708.2843 +0708.2904 +0708.3053 Algebraic Geometry +0708.3390 Algebraic Geometry +0708.3423 Functional Analysis +0708.3425 +0708.3443 Metric Geometry +0708.3446 Distributed, Parallel, and Cluster Computing +0708.3451 Number Theory +0708.3507 +0708.3524 Materials Science +0708.3556 Statistics Theory +0708.3631 Probability +0708.3643 Exactly Solvable and Integrable Systems +0708.3869 Biomolecules +0708.3919 Exactly Solvable and Integrable Systems +0708.3946 Exactly Solvable and Integrable Systems +0708.4104 Statistics Theory +0708.4177 Statistics Theory +0708.4182 Computational Physics +0708.4315 Materials Science +0708.4407 Information Theory +0709.0099 Discrete Mathematics +0709.0318 Materials Science +0709.0362 Other Condensed Matter +0709.0491 Other Condensed Matter +0709.0608 +0709.0611 +0709.0726 +0709.0843 +0709.0848 Materials Science +0709.0993 Information Theory +0709.1126 Classical Analysis and ODEs +0709.1238 +0709.1274 Materials Science +0709.1302 Strongly Correlated Electrons +0709.1311 Statistical Mechanics +0709.1322 Statistical Mechanics +0709.1422 +0709.1567 Mesoscale and Nanoscale Physics +0709.1573 Mesoscale and Nanoscale Physics +0709.1595 Dynamical Systems +0709.1614 +0709.1733 +0709.1755 Chemical Physics +0709.1920 Computer Vision and Pattern Recognition +0709.2014 Superconductivity +0709.2097 Symplectic Geometry +0709.2202 Group Theory +0709.2205 Optimization and Control +0709.2333 Statistical Mechanics +0709.2494 +0709.2512 Computational Geometry +0709.2689 Discrete Mathematics +0709.2747 +0709.2790 +0709.2831 Computational Geometry +0709.2931 Atomic Physics +0709.2934 Mesoscale and Nanoscale Physics +0709.3055 Statistical Mechanics +0709.3062 Phenomenology +0709.3133 +0709.3283 Algebraic Geometry +0709.3310 +0709.3395 Symplectic Geometry +0709.3396 Accelerator Physics +0709.3398 Phenomenology +0709.3412 Commutative Algebra +0709.3531 Analysis of PDEs +0709.3540 Soft Condensed Matter +0709.3570 Combinatorics +0709.3676 Operator Algebras +0709.3821 Number Theory +0709.3850 Chemical Physics +0709.3986 Functional Analysis +0709.4024 Popular Physics +0709.4540 +0710.0048 Soft Condensed Matter +0710.0093 Differential Geometry +0710.0110 +0710.0111 Superconductivity +0710.0144 Number Theory +0710.0178 Methodology +0710.0276 Soft Condensed Matter +0710.0395 +0710.0531 Discrete Mathematics +0710.0534 Phenomenology +0710.0556 +0710.0603 Atmospheric and Oceanic Physics +0710.0724 Statistical Mechanics +0710.1025 Biomolecules +0710.1033 Other Condensed Matter +0710.1140 +0710.1250 Materials Science +0710.1269 Strongly Correlated Electrons +0710.1399 Disordered Systems and Neural Networks +0710.1440 +0710.2087 Phenomenology +0710.2198 Disordered Systems and Neural Networks +0710.2265 Chaotic Dynamics +0710.2396 Probability +0710.2482 Phenomenology +0710.2536 Differential Geometry +0710.2891 Phenomenology +0710.2977 Probability +0710.2998 Probability +0710.3044 Combinatorics +0710.3144 +0710.3193 +0710.3262 Probability +0710.3316 Chemical Physics +0710.3800 Physics and Society +0710.3894 Spectral Theory +0710.3973 Statistical Mechanics +0710.3976 Plasma Physics +0710.3979 Cryptography and Security +0710.4053 Combinatorics +0710.4180 Multimedia +0710.4200 +0710.4235 Other Quantitative Biology +0710.4296 Phenomenology +0710.4380 Experiment +0710.4438 +0710.4453 Metric Geometry +0710.4873 General Physics +0710.5537 Strongly Correlated Electrons +0710.5632 +0710.5834 Soft Condensed Matter +0710.5840 Fluid Dynamics +0710.5857 Phenomenology +0710.5917 Statistical Mechanics +0711.0004 Phenomenology +0711.0149 Quantum Algebra +0711.0197 Experiment +0711.0522 Algebraic Geometry +0711.0533 Strongly Correlated Electrons +0711.0572 Metric Geometry +0711.0622 Lattice +0711.0688 Strongly Correlated Electrons +0711.0764 +0711.0952 Strongly Correlated Electrons +0711.1077 Phenomenology +0711.1149 Complex Variables +0711.1197 General Physics +0711.1246 Mesoscale and Nanoscale Physics +0711.1409 Chaotic Dynamics +0711.1437 +0711.1547 Mesoscale and Nanoscale Physics +0711.1582 Phenomenology +0711.1632 +0711.1656 Theory +0711.2608 Quantum Algebra +0711.2693 General Physics +0711.2804 +0711.2838 Combinatorics +0711.2941 Complex Variables +0711.2949 Optimization and Control +0711.3123 +0711.3131 +0711.3136 Probability +0711.3354 +0711.3432 Statistical Mechanics +0711.3597 Probability +0711.3616 +0711.3674 Probability +0711.3731 +0711.3816 General Physics +0711.3902 Phenomenology +0711.3955 Statistics Theory +0711.3957 Statistics Theory +0711.4142 Digital Libraries +0711.4146 Phenomenology +0711.4394 Combinatorics +0711.4457 Statistics Theory +0711.4493 Statistics Theory +0711.4603 +0711.4708 +0711.4786 Chaotic Dynamics +0711.4971 Statistical Mechanics +0712.0279 Quantum Algebra +0712.0518 +0712.0547 +0712.0651 Lattice +0712.0752 +0712.0905 Strongly Correlated Electrons +0712.0917 Rings and Algebras +0712.1049 Phenomenology +0712.1183 Quantum Algebra +0712.1358 Theory +0712.1416 Theory +0712.1540 +0712.1896 Functional Analysis +0712.2000 Probability +0712.2381 General Mathematics +0712.2495 Other Condensed Matter +0712.2585 Discrete Mathematics +0712.2777 Theory +0712.2908 Combinatorics +0712.3018 Probability +0712.3090 Analysis of PDEs +0712.3155 Discrete Mathematics +0712.3174 Space Physics +0712.3251 +0712.3775 +0712.3925 Software Engineering +0712.3973 Neural and Evolutionary Computing +0712.4081 Strongly Correlated Electrons +0712.4402 Probability +0801.0249 Multiagent Systems +0801.0254 Molecular Networks +0801.0291 Theory +0801.0416 +0801.0427 +0801.1339 +0801.1361 +0801.1432 Mesoscale and Nanoscale Physics +0801.1989 Soft Condensed Matter +0801.2168 +0801.3149 Optics +0801.3393 +0801.3446 Symplectic Geometry +0804.2647 +0804.4814 Probability +0806.2947 Logic in Computer Science +0806.4184 +0808.3081 Classical Analysis and ODEs +0809.5169 Superconductivity +0810.1232 Differential Geometry +0810.1408 Probability +0811.1174 +0812.0909 +0902.0757 Theory +0903.0191 Dynamical Systems +0904.0049 +0904.0940 Cosmology and Nongalactic Astrophysics +0904.1316 Differential Geometry +0904.1624 +0904.2061 Computer Science and Game Theory +0906.2851 Theory +0907.0659 Statistical Mechanics +0907.1981 Analysis of PDEs +0907.4281 Instrumentation and Methods for Astrophysics +0908.2271 Theory +0909.1307 Probability +0909.2699 Soft Condensed Matter +0909.4001 Analysis of PDEs +0910.0403 Rings and Algebras +0911.1125 Cosmology and Nongalactic Astrophysics +0911.1226 Networking and Internet Architecture +0911.5220 Phenomenology +1001.2241 Mesoscale and Nanoscale Physics +1001.4898 Logic in Computer Science +1003.2581 +1004.2530 +1004.2825 Phenomenology +1005.3320 Classical Physics +1006.5389 Group Theory +1007.3571 +1007.3650 +1007.4947 Quantum Gases +1007.5370 +1008.0103 Theory +1008.0457 +1008.0753 +1008.1117 Representation Theory +1008.1475 +1008.1640 +1008.1866 +1008.2035 Theory +1008.2049 Theory +1008.2051 +1008.2063 +1008.2689 Theory +1008.4023 Theory +1008.4978 +1008.5002 +1008.5368 K-Theory and Homology +1009.0153 Experiment +1009.0247 Algebraic Geometry +1009.0922 +1009.0982 +1009.1013 Computer Vision and Pattern Recognition +1009.1038 Cryptography and Security +1009.1069 Mesoscale and Nanoscale Physics +1009.1121 Networking and Internet Architecture +1009.1122 Networking and Internet Architecture +1009.1309 Soft Condensed Matter +1009.1332 Physics Education +1009.1347 Quantum Algebra +1009.1379 Cosmology and Nongalactic Astrophysics +1009.1560 Programming Languages +1009.2742 Soft Condensed Matter +1009.4523 +1009.4763 +1009.5518 Combinatorics +1009.5926 Superconductivity +1009.6117 +1010.0111 +1010.0793 Theory +1010.1028 Social and Information Networks +1010.1390 Lattice +1010.1730 +1010.1782 Atomic Physics +1010.1803 +1010.2442 Analysis of PDEs +1010.5342 +1011.0715 Distributed, Parallel, and Cluster Computing +1011.3332 Materials Science +1011.6095 Machine Learning +1012.0125 Strongly Correlated Electrons +1012.2140 Chaotic Dynamics +1101.0466 Geometric Topology +1101.0674 Strongly Correlated Electrons +1101.4441 Combinatorics +1102.0478 Theory +1102.1700 Statistical Mechanics +1102.1860 Theory +1102.2522 Strongly Correlated Electrons +1102.2693 General Physics +1102.2944 Mesoscale and Nanoscale Physics +1102.3027 Theory +1102.3192 +1102.3429 Phenomenology +1102.3917 Phenomenology +1102.4011 Phenomenology +1102.4194 +1102.4274 Phenomenology +1102.4908 Cosmology and Nongalactic Astrophysics +1103.0128 Instrumentation and Detectors +1103.0882 Phenomenology +1103.0993 Phenomenology +1103.1169 Theory +1103.1178 Optimization and Control +1103.2456 Theory +1103.3491 Phenomenology +1103.4055 High Energy Astrophysical Phenomena +1103.4308 Disordered Systems and Neural Networks +1103.4412 Algebraic Geometry +1103.4808 Theory +1104.0294 +1104.1474 Number Theory +1104.3332 +1104.3891 Phenomenology +1104.4056 Information Theory +1105.1143 Algebraic Topology +1105.1659 +1105.1668 Systems and Control +1105.2176 Optimization and Control +1105.2746 Quantum Gases +1105.5965 Dynamical Systems +1106.0491 Functional Analysis +1106.1228 Logic in Computer Science +1106.1264 +1106.1637 Theory +1106.1743 +1106.2269 High Energy Astrophysical Phenomena +1106.2285 Phenomenology +1106.2705 +1106.2715 Phenomenology +1106.2763 Logic +1106.2948 Phenomenology +1106.3230 Lattice +1106.3253 Phenomenology +1106.3883 Theory +1106.4027 +1106.4064 Learning +1106.4908 +1106.4994 Statistical Mechanics +1106.5662 Phenomenology +1106.6229 Phenomenology +1107.0694 +1107.0797 +1107.1997 Phenomenology +1107.2165 Mesoscale and Nanoscale Physics +1107.2458 +1107.2664 Theory +1107.3389 Theory +1107.3484 +1107.5088 Phenomenology +1107.5192 Populations and Evolution +1107.5927 +1107.5967 Analysis of PDEs +1107.6018 Atomic Physics +1108.0387 Phenomenology +1108.0419 Mesoscale and Nanoscale Physics +1108.0483 Phenomenology +1108.0995 +1108.1111 +1108.1728 +1108.2789 Cosmology and Nongalactic Astrophysics +1108.2813 +1108.2901 Strongly Correlated Electrons +1108.3542 Solar and Stellar Astrophysics +1108.4514 Experiment +1108.4534 Phenomenology +1108.5461 +1108.6134 Theory +1108.6257 Experiment +1109.0037 Number Theory +1109.1141 Statistical Mechanics +1109.1214 Optimization and Control +1109.1251 Robotics +1109.1275 Systems and Control +1109.1368 Logic in Computer Science +1109.1465 Data Structures and Algorithms +1109.1552 Learning +1109.2675 +1109.3007 +1109.4513 Probability +1109.4901 Statistical Mechanics +1109.4908 Quantum Gases +1109.5567 General Mathematics +1110.2143 Lattice +1110.2481 Probability +1110.3495 Analysis of PDEs +1110.4937 Atomic Physics +1110.5318 Theory +1110.6483 Neural and Evolutionary Computing +1111.0019 Strongly Correlated Electrons +1111.0307 Social and Information Networks +1111.0375 Software Engineering +1111.1075 Combinatorics +1111.1426 Genomics +1111.1554 Group Theory +1111.1816 Probability +1111.1821 +1111.1848 Probability +1111.1857 Pattern Formation and Solitons +1111.2053 Solar and Stellar Astrophysics +1111.2061 Earth and Planetary Astrophysics +1111.2067 Cosmology and Nongalactic Astrophysics +1111.2071 +1111.2082 Analysis of PDEs +1111.2084 Combinatorics +1111.2089 General Physics +1111.2092 Social and Information Networks +1111.2094 Solar and Stellar Astrophysics +1111.2095 Solar and Stellar Astrophysics +1111.2096 Solar and Stellar Astrophysics +1111.2097 Networking and Internet Architecture +1111.2099 Differential Geometry +1111.2100 Solar and Stellar Astrophysics +1111.2101 Solar and Stellar Astrophysics +1111.2106 High Energy Astrophysical Phenomena +1111.2108 Systems and Control +1111.2114 Analysis of PDEs +1111.2115 Theory +1111.2118 Statistical Mechanics +1111.2127 Computational Complexity +1111.2130 Mesoscale and Nanoscale Physics +1111.2131 Algebraic Geometry +1111.2134 Materials Science +1111.2140 Probability +1111.2141 Representation Theory +1111.2145 History and Overview +1111.2153 Differential Geometry +1111.2154 K-Theory and Homology +1111.2158 Mesoscale and Nanoscale Physics +1111.2160 Networking and Internet Architecture +1111.2164 Fluid Dynamics +1111.2167 Strongly Correlated Electrons +1111.2171 Analysis of PDEs +1111.2178 Theory +1111.2179 Computational Physics +1111.2180 Lattice +1111.2181 History and Philosophy of Physics +1111.2183 Instrumentation and Methods for Astrophysics +1111.2184 Differential Geometry +1111.2188 High Energy Astrophysical Phenomena +1111.2189 History and Philosophy of Physics +1111.2191 Statistics Theory +1111.2193 Lattice +1111.2194 History and Philosophy of Physics +1111.2199 +1111.2202 Probability +1111.2208 Distributed, Parallel, and Cluster Computing +1111.2209 Complex Variables +1111.2211 Robotics +1111.2212 Number Theory +1111.2221 Neural and Evolutionary Computing +1111.2222 Lattice +1111.2223 Experiment +1111.2225 High Energy Astrophysical Phenomena +1111.2227 Lattice +1111.2230 High Energy Astrophysical Phenomena +1111.2233 General Physics +1111.2235 High Energy Astrophysical Phenomena +1111.2237 Distributed, Parallel, and Cluster Computing +1111.2240 Geometric Topology +1111.2241 Chaotic Dynamics +1111.2242 Experiment +1111.2246 Networking and Internet Architecture +1111.2247 Statistics Theory +1111.2249 Artificial Intelligence +1111.2251 Networking and Internet Architecture +1111.2252 Mesoscale and Nanoscale Physics +1111.2255 Methodology +1111.2256 Experiment +1111.2257 Statistical Mechanics +1111.2258 Robotics +1111.2259 Robotics +1111.2260 Applications +1111.2261 Theory +1111.2263 High Energy Astrophysical Phenomena +1111.2264 Quantum Algebra +1111.2265 Numerical Analysis +1111.2268 General Physics +1111.2278 Mesoscale and Nanoscale Physics +1111.2280 Solar and Stellar Astrophysics +1111.2281 Instrumentation and Methods for Astrophysics +1111.2282 Solar and Stellar Astrophysics +1111.2286 Materials Science +1111.2294 Mesoscale and Nanoscale Physics +1111.2298 Statistics Theory +1111.2299 Geometric Topology +1111.2304 Chaotic Dynamics +1111.2306 Representation Theory +1111.2308 +1111.2309 Solar and Stellar Astrophysics +1111.2311 +1111.2314 Lattice +1111.2315 Networking and Internet Architecture +1111.2318 +1111.2319 Lattice +1111.2328 Statistics Theory +cs/0602040 Logic in Computer Science +cs/0602047 Computational Complexity +cs/0602066 Other Computer Science +cs/0610045 Information Theory +cs/0610134 Networking and Internet Architecture +cs/0610135 Networking and Internet Architecture +cs/0610136 Symbolic Computation +cs/0612030 Artificial Intelligence +cs/0612109 Artificial Intelligence +gr-qc/0703110 +hep-ph/0606043 Phenomenology +hep-ph/0609190 Phenomenology +hep-ph/0612084 Phenomenology +hep-ph/0703126 Phenomenology +hep-ph/0703293 Phenomenology +hep-th/0207088 Theory +hep-th/0602190 Theory +hep-th/0606035 Theory +hep-th/0611049 Theory +hep-th/0612105 Theory +hep-th/0612214 Theory +hep-th/0703155 Theory +math-ph/0109023 +math-ph/0301035 +math-ph/0310053 +math-ph/0501028 +math-ph/0503074 +math-ph/0505038 +math-ph/0506007 +math-ph/0506053 +math-ph/0509017 +math-ph/0509046 +math-ph/0606031 +math-ph/0608009 +math-ph/0610019 +math-ph/0612005 +math-ph/0612006 +math-ph/0612022 +math-ph/0702028 +math-ph/0702041 +math-ph/0702058 +math/0001073 Probability +math/0001113 Algebraic Geometry +math/0002179 Representation Theory +math/0003029 Differential Geometry +math/0009204 Probability +math/0012112 Symplectic Geometry +math/0102199 Probability +math/0102200 Probability +math/0103049 Probability +math/0103104 Probability +math/0103233 Probability +math/0104043 Probability +math/0105097 Functional Analysis +math/0105142 Spectral Theory +math/0109189 Probability +math/0202091 Quantum Algebra +math/0208199 Quantum Algebra +math/0209106 Number Theory +math/0209146 Probability +math/0209194 Differential Geometry +math/0209346 Representation Theory +math/0209347 Representation Theory +math/0209395 Probability +math/0210218 Probability +math/0212191 Group Theory +math/0212254 Classical Analysis and ODEs +math/0301203 Combinatorics +math/0301242 Analysis of PDEs +math/0303201 Analysis of PDEs +math/0304021 Number Theory +math/0304247 Probability +math/0305128 Algebraic Geometry +math/0305163 Probability +math/0305174 Probability +math/0305251 Representation Theory +math/0305262 Group Theory +math/0307175 Quantum Algebra +math/0310297 Probability +math/0310472 Geometric Topology +math/0312402 Probability +math/0312434 Number Theory +math/0312443 Number Theory +math/0401121 Operator Algebras +math/0402356 Spectral Theory +math/0403346 Quantum Algebra +math/0404160 Dynamical Systems +math/0404314 Algebraic Geometry +math/0404455 Differential Geometry +math/0404540 Quantum Algebra +math/0405357 Probability +math/0405358 Probability +math/0405359 Probability +math/0406291 Quantum Algebra +math/0410150 Quantum Algebra +math/0410194 Quantum Algebra +math/0410379 Algebraic Geometry +math/0410504 Dynamical Systems +math/0410505 Dynamical Systems +math/0411377 Combinatorics +math/0411381 Differential Geometry +math/0411440 Quantum Algebra +math/0411474 Operator Algebras +math/0411478 Category Theory +math/0412051 Probability +math/0412198 Probability +math/0412251 Combinatorics +math/0412431 Functional Analysis +math/0412463 Probability +math/0412544 Rings and Algebras +math/0501067 Differential Geometry +math/0501282 Number Theory +math/0501291 Probability +math/0501304 Algebraic Topology +math/0501321 Group Theory +math/0501388 Algebraic Geometry +math/0501537 Complex Variables +math/0502175 Operator Algebras +math/0502253 Algebraic Geometry +math/0502321 Logic +math/0502328 Geometric Topology +math/0502346 Functional Analysis +math/0502442 Algebraic Geometry +math/0502562 Geometric Topology +math/0504114 Differential Geometry +math/0504117 Differential Geometry +math/0504428 Numerical Analysis +math/0504461 Numerical Analysis +math/0504466 Numerical Analysis +math/0504490 Dynamical Systems +math/0504589 Probability +math/0506112 Differential Geometry +math/0506255 Probability +math/0506526 Algebraic Topology +math/0507063 Optimization and Control +math/0507311 Algebraic Geometry +math/0508027 Functional Analysis +math/0508089 Probability +math/0512037 Symplectic Geometry +math/0512088 Geometric Topology +math/0512191 Probability +math/0512201 Probability +math/0512239 Number Theory +math/0512336 Probability +math/0512502 Probability +math/0512537 Probability +math/0512559 General Mathematics +math/0512653 Combinatorics +math/0604074 Classical Analysis and ODEs +math/0604217 Dynamical Systems +math/0604498 Quantum Algebra +math/0608785 Probability +math/0609538 Probability +math/0701403 Classical Analysis and ODEs +math/9806131 Probability +math/9811103 Probability +math/9906159 Geometric Topology +math/9911162 Probability +math/9911237 Probability +math/9912135 Probability +math/9912136 Probability +nlin/0208032 Chaotic Dynamics +nlin/0402006 Adaptation and Self-Organizing Systems +nlin/0409024 Adaptation and Self-Organizing Systems +nlin/0507010 Chaotic Dynamics +nlin/0507038 Chaotic Dynamics +nlin/0603070 Chaotic Dynamics +nlin/0604001 Exactly Solvable and Integrable Systems +nlin/0605030 Chaotic Dynamics +nlin/0608049 Chaotic Dynamics +nlin/0608053 Pattern Formation and Solitons +nlin/0610075 Exactly Solvable and Integrable Systems +nucl-th/0006085 +nucl-th/0410109 +nucl-th/0605009 +physics/0007070 Data Analysis, Statistics and Probability +physics/0007099 Geophysics +physics/0411003 Geophysics +physics/0501042 Chemical Physics +physics/0501043 General Physics +physics/0512262 History and Philosophy of Physics +physics/0603190 General Physics +physics/0701150 Computational Physics +physics/0701151 Data Analysis, Statistics and Probability +physics/0701200 Physics Education +physics/0701225 Biological Physics +physics/0701241 Classical Physics +physics/0703055 General Physics +physics/0703063 Optics +physics/0703074 Biological Physics +physics/0703082 Biological Physics +physics/0703086 Biological Physics +physics/0703271 General Physics +physics/9812033 Biological Physics +q-bio/0405001 Quantitative Methods +q-bio/0406048 Populations and Evolution +q-bio/0505053 Quantitative Methods +q-bio/0508025 Populations and Evolution +q-bio/0603007 Quantitative Methods +q-bio/0603038 Molecular Networks +q-bio/0605008 Biomolecules +q-bio/0606024 Other Quantitative Biology +q-bio/0611032 Populations and Evolution +q-bio/0612011 Molecular Networks +q-bio/0702050 Populations and Evolution +q-bio/0702054 Quantitative Methods +q-bio/0703011 Other Quantitative Biology +0705.1750 Data Structures and Algorithms +0706.0845 Complex Variables +0708.1693 Strongly Correlated Electrons +0711.4872 Probability +0712.1249 Commutative Algebra +0712.1848 Representation Theory +0804.3749 Differential Geometry +0805.1829 Algebraic Geometry +0808.0711 Machine Learning +0809.4453 Quantum Algebra +0810.5654 Symplectic Geometry +0903.2539 Differential Geometry +0903.4517 K-Theory and Homology +0904.2607 Representation Theory +0904.3418 Fluid Dynamics +0906.3062 +0906.5016 Experiment +0907.0432 Spectral Theory +0907.3188 Combinatorics +0907.4502 Probability +0908.1231 +0908.3865 Commutative Algebra +0909.4798 Soft Condensed Matter +0912.2340 Functional Analysis +0912.3296 Analysis of PDEs +1001.3047 Quantum Algebra +1001.3705 Information Theory +1001.3855 +1001.4261 Dynamical Systems +1002.4598 Combinatorics +1002.4606 Combinatorics +1003.2803 +1004.2919 Cosmology and Nongalactic Astrophysics +1005.1705 Numerical Analysis +1005.2375 Algebraic Geometry +1005.5506 Rings and Algebras +1007.4877 Quantum Gases +1008.3518 Cosmology and Nongalactic Astrophysics +1008.3659 Group Theory +1008.3707 Theory +1009.0086 Dynamical Systems +1009.0370 Fluid Dynamics +1009.0574 Physics and Society +1009.1109 +1009.1337 Soft Condensed Matter +1009.1584 +1009.1784 Mesoscale and Nanoscale Physics +1009.3337 Data Analysis, Statistics and Probability +1009.4330 Materials Science +1009.4407 Metric Geometry +1009.5419 Learning +1010.1154 High Energy Astrophysical Phenomena +1010.1199 Metric Geometry +1010.1216 Lattice +1010.1319 Strongly Correlated Electrons +1010.1664 +1010.2025 Instrumentation and Methods for Astrophysics +1010.2816 Solar and Stellar Astrophysics +1010.3136 Probability +1010.4795 Materials Science +1011.2879 Networking and Internet Architecture +1011.3157 Cosmology and Nongalactic Astrophysics +1011.3330 Mesoscale and Nanoscale Physics +1011.6395 Earth and Planetary Astrophysics +1011.6398 Adaptation and Self-Organizing Systems +1012.1189 Number Theory +1012.1385 Materials Science +1012.2940 Differential Geometry +1012.3501 Theory +1012.4154 Operator Algebras +1012.4416 +1012.4983 Soft Condensed Matter +1101.0066 Algebraic Topology +1101.0220 Physics and Society +1101.0272 Social and Information Networks +1101.1729 Classical Physics +1101.1800 Classical Analysis and ODEs +1101.1805 Number Theory +1101.1987 Phenomenology +1101.2879 Strongly Correlated Electrons +1101.2988 +1101.3030 Mesoscale and Nanoscale Physics +1101.3176 Populations and Evolution +1101.3886 Phenomenology +1101.4408 Fluid Dynamics +1101.4467 Disordered Systems and Neural Networks +1102.0624 Physics and Society +1102.0651 Physics and Society +1102.1125 Experiment +1102.1183 Earth and Planetary Astrophysics +1102.3177 Combinatorics +1102.3603 Information Theory +1102.4226 Combinatorics +1102.4480 Data Structures and Algorithms +1102.4611 Phenomenology +1102.4628 Strongly Correlated Electrons +1102.4630 +1102.5068 Data Analysis, Statistics and Probability +1102.5441 Data Structures and Algorithms +1102.5462 Information Theory +1102.5746 Number Theory +1103.0253 Algebraic Geometry +1103.0529 Algebraic Geometry +1103.0628 Instrumentation and Methods for Astrophysics +1103.0746 Differential Geometry +1103.0808 General Physics +1103.0862 Cosmology and Nongalactic Astrophysics +1103.0985 Data Structures and Algorithms +1103.0986 Instrumentation and Detectors +1103.0989 Solar and Stellar Astrophysics +1103.0991 Functional Analysis +1103.1001 Systems and Control +1103.1006 General Finance +1103.1010 Geometric Topology +1103.1018 Dynamical Systems +1103.1021 Quantum Gases +1103.1022 Quantum Gases +1103.1023 Quantum Gases +1103.1027 Number Theory +1103.1029 Mesoscale and Nanoscale Physics +1103.1031 Combinatorics +1103.1032 Functional Analysis +1103.1034 Numerical Analysis +1103.1038 Probability +1103.1043 Geophysics +1103.1052 Theory +1103.1053 Algebraic Geometry +1103.1057 Combinatorics +1103.1060 Logic +1103.1061 Logic in Computer Science +1103.1062 Accelerator Physics +1103.1069 Accelerator Physics +1103.1075 Classical Analysis and ODEs +1103.1078 Optics +1103.1096 Pattern Formation and Solitons +1103.1097 Analysis of PDEs +1103.1098 Spectral Theory +1103.1103 Numerical Analysis +1103.1108 Analysis of PDEs +1103.1110 Methodology +1103.1111 Numerical Analysis +1103.1112 Combinatorics +1103.1114 Astrophysics of Galaxies +1103.1115 Dynamical Systems +1103.1119 Accelerator Physics +1103.1123 +1103.1124 Fluid Dynamics +1103.1127 +1103.1131 Analysis of PDEs +1103.1134 Human-Computer Interaction +1103.1137 Theory +1103.1139 General Physics +1103.1140 Fluid Dynamics +1103.1152 Differential Geometry +1103.1153 General Physics +1103.1156 Artificial Intelligence +1103.1161 Functional Analysis +1103.1175 Classical Analysis and ODEs +1103.1182 Algebraic Geometry +1103.1190 Algebraic Geometry +1103.1191 Algebraic Geometry +1103.1196 Analysis of PDEs +1103.1200 Quantitative Methods +1103.1204 Strongly Correlated Electrons +1103.1205 Artificial Intelligence +1103.1207 Distributed, Parallel, and Cluster Computing +1103.1209 Experiment +1103.1214 Instrumentation and Methods for Astrophysics +1103.1220 +1103.1227 Chaotic Dynamics +1103.1229 Numerical Analysis +1103.1230 Functional Analysis +1103.1232 Group Theory +1103.1237 Analysis of PDEs +1103.1242 Cosmology and Nongalactic Astrophysics +1103.1247 Strongly Correlated Electrons +1103.1255 Databases +1103.1259 +1103.1264 Computational Geometry +1103.1270 Classical Analysis and ODEs +1103.1271 Accelerator Physics +1103.1275 Combinatorics +1103.1283 Chaotic Dynamics +1103.1285 Materials Science +1103.1290 Symplectic Geometry +1103.1292 Analysis of PDEs +1103.1294 Number Theory +1103.1295 Group Theory +1103.1305 Information Theory +1103.1306 Information Theory +1103.1309 Physics Education +1103.1310 Functional Analysis +1103.1318 Phenomenology +1103.1325 Earth and Planetary Astrophysics +1103.1326 Quantum Gases +1103.1330 Classical Analysis and ODEs +1103.1332 Rings and Algebras +1103.1334 Logic in Computer Science +1103.1341 Instrumentation and Methods for Astrophysics +1103.1346 Strongly Correlated Electrons +1103.1349 Optimization and Control +1103.1356 Differential Geometry +1103.1357 Number Theory +1103.1363 Lattice +1103.1367 Databases +1103.1369 Functional Analysis +1103.1374 Probability +1103.1377 Cosmology and Nongalactic Astrophysics +cond-mat/0411257 Soft Condensed Matter +cs/0009005 Data Structures and Algorithms +cs/0204001 Discrete Mathematics +math/0511444 Geometric Topology +math/0511637 Functional Analysis +0708.0838 General Topology +0710.5579 Differential Geometry +0712.2330 +0803.3576 +0805.3528 Information Theory +0808.2881 General Topology +0901.0366 Complex Variables +0902.0552 Statistics Theory +0903.3875 Statistical Mechanics +0903.4699 Materials Science +0905.1490 Geophysics +0906.2908 Statistical Mechanics +0907.3284 Statistical Mechanics +0907.3589 Superconductivity +0911.3168 Phenomenology +1003.1881 Quantum Gases +1003.3534 Probability +1003.5061 Dynamical Systems +1004.2027 Learning +1005.4679 Optics +1007.0870 +1007.3313 Numerical Analysis +1009.0109 Probability +1009.1722 Operator Algebras +1009.3777 Algebraic Geometry +1009.5716 Geometric Topology +1010.2536 Number Theory +1010.3521 +1010.4573 Theory +1010.5831 Theory +1011.1786 Fluid Dynamics +1012.3341 Quantum Gases +1012.5884 Combinatorics +1101.1469 Combinatorics +1101.1572 Functional Analysis +1102.4048 Materials Science +1103.0536 High Energy Astrophysical Phenomena +1103.0546 Mesoscale and Nanoscale Physics +1103.1144 K-Theory and Homology +1103.2307 Theory +1103.2681 Data Analysis, Statistics and Probability +1103.3534 Quantum Gases +1103.3743 Superconductivity +1103.6243 K-Theory and Homology +1104.1252 Theory +1104.1743 Mesoscale and Nanoscale Physics +1104.4371 +1104.4714 Theory +1104.4722 Theory +1104.5065 Combinatorics +1104.5073 +1105.0304 Soft Condensed Matter +1105.0369 Strongly Correlated Electrons +1105.0939 Theory +1105.1058 Physics and Society +1105.4541 Materials Science +1105.4874 Soft Condensed Matter +1105.4924 Metric Geometry +1105.5511 Phenomenology +1106.0820 Quantum Gases +1106.1929 Solar and Stellar Astrophysics +1106.2403 Mesoscale and Nanoscale Physics +1106.4043 +1106.4156 Mesoscale and Nanoscale Physics +1106.5659 Instrumentation and Methods for Astrophysics +1107.1113 Phenomenology +1107.1223 Mesoscale and Nanoscale Physics +1107.2180 Cosmology and Nongalactic Astrophysics +1107.3586 Solar and Stellar Astrophysics +1107.5255 Experiment +1107.5623 Soft Condensed Matter +1108.0765 Materials Science +1108.2267 Cosmology and Nongalactic Astrophysics +1108.2549 Combinatorics +1108.5367 Algebraic Geometry +1108.5420 Plasma Physics +1108.5509 Mesoscale and Nanoscale Physics +1109.0401 Phenomenology +1109.0620 Exactly Solvable and Integrable Systems +1109.1044 Computational Engineering, Finance, and Science +1109.1439 Dynamical Systems +1109.1554 High Energy Astrophysical Phenomena +1109.1578 Phenomenology +1109.1579 Distributed, Parallel, and Cluster Computing +1109.1580 Rings and Algebras +1109.1583 Distributed, Parallel, and Cluster Computing +1109.1584 +1109.1585 Materials Science +1109.1587 Programming Languages +1109.1595 Instrumentation and Methods for Astrophysics +1109.1598 Algebraic Topology +1109.1599 Cosmology and Nongalactic Astrophysics +1109.1605 Social and Information Networks +1109.1606 Learning +1109.1607 Astrophysics of Galaxies +1109.1613 Spectral Theory +1109.1614 Earth and Planetary Astrophysics +1109.1616 Complex Variables +1109.1624 Strongly Correlated Electrons +1109.1625 Mesoscale and Nanoscale Physics +1109.1631 Fluid Dynamics +1109.1633 Number Theory +1109.1638 +1109.1641 Biological Physics +1109.1644 Mesoscale and Nanoscale Physics +1109.1645 +1109.1649 Systems and Control +1109.1650 Distributed, Parallel, and Cluster Computing +1109.1651 Software Engineering +1109.1652 Fluid Dynamics +1109.1653 Emerging Technologies +1109.1654 +1109.1655 Algebraic Geometry +1109.1657 Combinatorics +1109.1659 Fluid Dynamics +1109.1662 Analysis of PDEs +1109.1664 Physics and Society +1109.1669 Astrophysics of Galaxies +1109.1670 Information Theory +1109.1672 High Energy Astrophysical Phenomena +1109.1676 Solar and Stellar Astrophysics +1109.1678 Chemical Physics +1109.1679 +1109.1681 Information Theory +1109.1690 Probability +1109.1698 Instrumentation and Methods for Astrophysics +1109.1705 Computational Geometry +1109.1706 Distributed, Parallel, and Cluster Computing +1109.1713 Instrumentation and Methods for Astrophysics +1109.1715 +1109.1716 General Physics +1109.1725 Theory +1109.1728 +1109.1729 Learning +1109.1734 High Energy Astrophysical Phenomena +1109.1738 Algebraic Geometry +1109.1740 Phenomenology +1109.1743 Cosmology and Nongalactic Astrophysics +1109.1748 Combinatorics +1109.1751 Pricing of Securities +1109.1755 Quantitative Methods +1109.1756 Statistical Mechanics +1109.1760 Fluid Dynamics +1109.1765 Rings and Algebras +1109.1768 Solar and Stellar Astrophysics +1109.1770 Solar and Stellar Astrophysics +1109.1775 Solar and Stellar Astrophysics +1109.1776 Functional Analysis +1109.1791 Solar and Stellar Astrophysics +1109.1795 Experiment +1109.1799 Cosmology and Nongalactic Astrophysics +1109.1800 Dynamical Systems +1109.1801 Optimization and Control +1109.1803 General Mathematics +1109.1804 Representation Theory +1109.1805 Geometric Topology +1109.1812 Computational Physics +1109.1815 Quantum Gases +astro-ph/9405015 +astro-ph/9507078 +astro-ph/9510140 +astro-ph/9601056 +astro-ph/9603117 +astro-ph/9605171 +astro-ph/9607166 +cond-mat/0603250 Statistical Mechanics +gr-qc/9404009 +gr-qc/9404027 +gr-qc/9406005 +gr-qc/9406032 +gr-qc/9411029 +gr-qc/9501020 +gr-qc/9506032 +gr-qc/9506035 +gr-qc/9506063 +gr-qc/9507034 +gr-qc/9510008 +gr-qc/9510012 +gr-qc/9510051 +gr-qc/9511004 +gr-qc/9511052 +gr-qc/9511061 +gr-qc/9511062 +gr-qc/9512017 +gr-qc/9512045 +gr-qc/9512050 +gr-qc/9601009 +gr-qc/9601026 +gr-qc/9601047 +gr-qc/9602019 +gr-qc/9602023 +gr-qc/9602041 +gr-qc/9603029 +gr-qc/9603034 +gr-qc/9604007 +gr-qc/9604008 +gr-qc/9604009 +gr-qc/9604052 +gr-qc/9604058 +gr-qc/9605072 +gr-qc/9606048 +gr-qc/9606076 +gr-qc/9606078 +gr-qc/9607028 +gr-qc/9607053 +gr-qc/9608004 +gr-qc/9608011 +gr-qc/9608039 +gr-qc/9609023 +gr-qc/9609048 +gr-qc/9609049 +gr-qc/9609052 +gr-qc/9610039 +gr-qc/9610057 +gr-qc/9610074 +gr-qc/9611009 +gr-qc/9611031 +gr-qc/9611035 +gr-qc/9611044 +gr-qc/9611046 +gr-qc/9612008 +gr-qc/9612063 +gr-qc/9701013 +gr-qc/9701014 +gr-qc/9701025 +gr-qc/9701030 +gr-qc/9702040 +gr-qc/9702058 +gr-qc/9703086 +gr-qc/9704006 +gr-qc/9704040 +gr-qc/9706017 +gr-qc/9706022 +gr-qc/9706035 +gr-qc/9706050 +gr-qc/9707040 +gr-qc/9708052 +gr-qc/9709040 +gr-qc/9709044 +hep-lat/9405007 Lattice +hep-lat/9605036 Lattice +hep-ph/0510059 Phenomenology +hep-th/9403121 Theory +hep-th/9406188 Theory +hep-th/9408178 Theory +hep-th/9507099 Theory +hep-th/9507126 Theory +hep-th/9509055 Theory +hep-th/9509147 Theory +hep-th/9510024 Theory +hep-th/9510109 Theory +hep-th/9511148 Theory +hep-th/9601160 Theory +hep-th/9602103 Theory +hep-th/9603013 Theory +hep-th/9604084 Theory +hep-th/9604150 Theory +hep-th/9605043 Theory +hep-th/9607117 Theory +hep-th/9611028 Theory +hep-th/9611031 Theory +hep-th/9611171 Theory +hep-th/9611223 Theory +hep-th/9703178 Theory +hep-th/9708014 Theory +math/0406348 Category Theory +0707.2831 +0709.1665 Number Theory +0710.0723 +0710.2166 Geometric Topology +0806.3746 Phenomenology +0807.4688 +0809.1561 Representation Theory +0809.3565 Discrete Mathematics +0902.4017 Group Theory +0902.4263 Group Theory +0906.2508 +0906.4348 Cosmology and Nongalactic Astrophysics +0908.0021 Symplectic Geometry +0909.0513 Cosmology and Nongalactic Astrophysics +0910.1903 +0912.4787 Other Condensed Matter +1002.0308 +1002.0830 Phenomenology +1002.1111 Applications +1003.2173 Algebraic Geometry +1003.5834 Mesoscale and Nanoscale Physics +1005.3102 Materials Science +1006.1903 Cosmology and Nongalactic Astrophysics +1006.3472 Theory +1007.1734 Combinatorics +1007.2866 +1007.3301 Theory +1007.4544 +1008.0044 Information Theory +1008.1024 Cosmology and Nongalactic Astrophysics +1008.1320 Numerical Analysis +1008.3559 Cosmology and Nongalactic Astrophysics +1008.4798 Strongly Correlated Electrons +1008.4815 Information Retrieval +1008.5318 Cosmology and Nongalactic Astrophysics +1009.1115 +1009.3736 Strongly Correlated Electrons +1009.4394 Cosmology and Nongalactic Astrophysics +1009.5674 Astrophysics of Galaxies +1010.0713 Genomics +1010.1827 Differential Geometry +1010.1854 Optics +1010.3037 Cosmology and Nongalactic Astrophysics +1011.0480 Lattice +1011.0943 Functional Analysis +1011.0987 +1011.1726 Spectral Theory +1011.2622 +1011.3019 Computer Vision and Pattern Recognition +1011.5168 Social and Information Networks +1011.6166 Dynamical Systems +1012.0166 Quantum Gases +1012.3857 +1012.4550 Algebraic Geometry +1012.4660 Atomic Physics +1012.4837 Lattice +1012.5694 Phenomenology +1101.1021 Superconductivity +1101.3799 Instrumentation and Methods for Astrophysics +1101.3927 Theory +1101.4285 Networking and Internet Architecture +1102.1791 Adaptation and Self-Organizing Systems +1102.2400 Phenomenology +1102.3034 +1102.4035 Theory +1102.4318 +1102.5348 Statistical Mechanics +1103.3054 Information Theory +1103.3352 Theory +1103.4094 Strongly Correlated Electrons +1103.4413 Statistical Mechanics +1103.4558 Artificial Intelligence +1103.4739 Atomic Physics +1103.5429 Analysis of PDEs +1103.5835 Complex Variables +1104.0154 Strongly Correlated Electrons +1104.0901 Cosmology and Nongalactic Astrophysics +1104.3301 Analysis of PDEs +1104.3524 Statistical Mechanics +1104.4336 Analysis of PDEs +1105.2426 Algebraic Geometry +1105.5638 Commutative Algebra +1105.6315 Geophysics +1106.0062 +1106.0077 Logic +1106.0118 Neural and Evolutionary Computing +1106.0134 Quantitative Methods +1106.0297 Physics and Society +1106.0304 Databases +1106.0312 Soft Condensed Matter +1106.0320 Probability +1106.0325 Statistical Mechanics +1106.0336 Geometric Topology +1106.0346 Social and Information Networks +1106.0349 Optimization and Control +1106.0350 Rings and Algebras +1106.0356 +1106.0357 Learning +1106.0358 Differential Geometry +1106.0360 Dynamical Systems +1106.0361 Dynamical Systems +1106.0369 Combinatorics +1106.0371 Computer Vision and Pattern Recognition +1106.0372 Differential Geometry +1106.0377 Materials Science +1106.0378 Superconductivity +1106.0380 Information Theory +1106.0383 Materials Science +1106.0384 Theory +1106.0385 Materials Science +1106.0386 Materials Science +1106.0388 Materials Science +1106.0390 Data Analysis, Statistics and Probability +1106.0395 +1106.0397 High Energy Astrophysical Phenomena +1106.0399 Logic in Computer Science +1106.0403 +1106.0404 General Topology +1106.0411 Computation and Language +1106.0420 Combinatorics +1106.0424 Numerical Analysis +1106.0432 Geometric Topology +1106.0439 Physics and Society +1106.0442 Chaotic Dynamics +1106.0445 Networking and Internet Architecture +1106.0446 Cosmology and Nongalactic Astrophysics +1106.0447 Programming Languages +1106.0448 Biological Physics +1106.0455 Functional Analysis +1106.0457 Lattice +1106.0460 Analysis of PDEs +1106.0461 Computational Geometry +1106.0462 Analysis of PDEs +1106.0463 Numerical Analysis +1106.0464 Materials Science +1106.0465 Phenomenology +1106.0471 Strongly Correlated Electrons +1106.0472 Functional Analysis +1106.0474 Machine Learning +1106.0478 Programming Languages +1106.0479 Phenomenology +1106.0482 Differential Geometry +1106.0483 Artificial Intelligence +1106.0485 +1106.0488 Information Theory +math-ph/0601044 +math/0604343 Group Theory +quant-ph/0703036 +0712.1769 Representation Theory +0804.3876 +0808.2162 Commutative Algebra +0809.3919 Complex Variables +0810.1959 +0810.2027 Group Theory +0812.0274 Operator Algebras +0905.1302 Geometric Topology +0906.2874 Classical Analysis and ODEs +0908.3914 Experiment +0909.0354 Algebraic Geometry +0909.0890 +0910.0063 Applications +0910.4180 Algebraic Geometry +0911.0545 Algebraic Topology +1002.0915 Theory +1002.3006 Representation Theory +1003.3651 Symplectic Geometry +1004.1843 +1004.2452 +1004.2468 +1004.3840 Mesoscale and Nanoscale Physics +1004.4686 Statistics Theory +1004.4921 Numerical Analysis +1005.1517 Symplectic Geometry +1005.3395 Dynamical Systems +1005.5387 Soft Condensed Matter +1005.5622 Combinatorics +1006.2776 Number Theory +1006.4003 Mesoscale and Nanoscale Physics +1006.4092 Theory +1006.4097 Theory +1007.0434 +1007.0855 +1007.2513 Quantitative Methods +1007.4578 Materials Science +1008.1116 +1008.3262 Analysis of PDEs +1009.4616 Soft Condensed Matter +1009.5479 Algebraic Topology +1010.0183 Symplectic Geometry +1010.0198 Quantum Gases +1010.0396 Dynamical Systems +1010.3698 Phenomenology +1010.5402 Rings and Algebras +1011.0294 Soft Condensed Matter +1011.6133 Combinatorics +1011.6396 Theory +1012.3029 Strongly Correlated Electrons +1012.3081 Theory +1012.5723 Networking and Internet Architecture +1101.0426 History and Overview +1102.0336 Functional Analysis +1102.4662 Algebraic Geometry +1102.5163 Mesoscale and Nanoscale Physics +1102.5403 Theory +1102.5735 Solar and Stellar Astrophysics +1103.2249 Strongly Correlated Electrons +1103.5270 +1103.5785 Phenomenology +1103.6022 Number Theory +1104.0717 Superconductivity +1104.1119 Materials Science +1104.3987 Earth and Planetary Astrophysics +1104.4305 Complex Variables +1105.1094 Cosmology and Nongalactic Astrophysics +1105.1391 +1105.2192 +1105.2626 Spectral Theory +1105.4976 +1106.0493 General Physics +1106.0507 +1106.0572 +1106.1922 +1106.2544 Theory +1106.2895 Other Statistics +1106.2910 +1106.3441 High Energy Astrophysical Phenomena +1106.3844 Experiment +1106.3952 Number Theory +1106.3978 Group Theory +1106.4068 +1106.4199 Quantitative Methods +1106.4216 Algebraic Topology +1106.4251 Learning +1106.4312 Solar and Stellar Astrophysics +1106.4325 Probability +1106.4333 Machine Learning +1106.4340 Pattern Formation and Solitons +1106.4344 Dynamical Systems +1106.4346 Distributed, Parallel, and Cluster Computing +1106.4350 Probability +1106.4354 Representation Theory +1106.4358 Dynamical Systems +1106.4361 Rings and Algebras +1106.4367 Analysis of PDEs +1106.4368 Analysis of PDEs +1106.4371 Functional Analysis +1106.4378 Mesoscale and Nanoscale Physics +1106.4380 Experiment +1106.4383 Materials Science +1106.4384 Cosmology and Nongalactic Astrophysics +1106.4390 Mesoscale and Nanoscale Physics +1106.4392 Soft Condensed Matter +1106.4395 Numerical Analysis +1106.4396 Mesoscale and Nanoscale Physics +1106.4399 +1106.4401 Plasma Physics +1106.4411 Combinatorics +1106.4412 Data Structures and Algorithms +1106.4415 Differential Geometry +1106.4416 Complex Variables +1106.4419 Mesoscale and Nanoscale Physics +1106.4420 Chaotic Dynamics +1106.4421 Strongly Correlated Electrons +1106.4423 Group Theory +1106.4429 +1106.4433 Algebraic Geometry +1106.4442 Biological Physics +1106.4443 Combinatorics +1106.4447 Complex Variables +1106.4449 Symplectic Geometry +1106.4450 Quantitative Methods +1106.4455 Strongly Correlated Electrons +1106.4459 Rings and Algebras +1106.4462 Phenomenology +1106.4463 Group Theory +1106.4464 Chemical Physics +1106.4466 +1106.4469 Cryptography and Security +1106.4472 Number Theory +1106.4474 Representation Theory +1106.4478 +1106.4479 Phenomenology +1106.4481 +1106.4482 Fluid Dynamics +1106.4484 Plasma Physics +1106.4487 Machine Learning +1106.4489 Data Structures and Algorithms +1106.4492 Mesoscale and Nanoscale Physics +1106.4500 Methodology +1106.4518 Optics +1106.4521 Biological Physics +1106.4524 Materials Science +1106.4529 Algebraic Geometry +1106.4531 Analysis of PDEs +1106.4534 Materials Science +1106.4535 Operator Algebras +1106.4541 Differential Geometry +cs/0308043 Emerging Technologies +math-ph/0007005 +math-ph/0011028 +math-ph/0603069 +math/0504058 Statistics Theory +math/0603319 Differential Geometry +math/0607002 Representation Theory +math/0607005 Differential Geometry +math/0607006 Representation Theory +math/0607007 Representation Theory +math/0611117 Statistics Theory +quant-ph/0309205 +quant-ph/0512075 +quant-ph/0605161 +quant-ph/0608074 +0705.0552 Data Structures and Algorithms +0705.2908 General Physics +0805.2065 Algebraic Geometry +0808.3913 Classical Physics +0809.3532 Superconductivity +0904.0562 Combinatorics +0907.0077 Probability +0910.5695 Representation Theory +0911.5709 Other Condensed Matter +1001.1926 +1001.3897 +1002.3576 Plasma Physics +1003.1122 Functional Analysis +1003.3620 +1004.1997 Neural and Evolutionary Computing +1005.0777 +1005.3848 Theory +1005.5173 +1006.2670 +1006.3169 Superconductivity +1006.5017 Functional Analysis +1006.5584 Strongly Correlated Electrons +1007.1946 Data Structures and Algorithms +1008.2074 Commutative Algebra +1008.3251 Superconductivity +1008.4549 Phenomenology +1009.0973 Populations and Evolution +1009.3103 +1009.3669 Methodology +1009.4497 Phenomenology +1009.6131 Analysis of PDEs +1011.0674 Statistics Theory +1011.3861 Soft Condensed Matter +1011.3896 +1101.0119 +1101.0126 +1101.1152 Number Theory +1101.2621 Other Condensed Matter +1101.2880 Other Condensed Matter +1101.4250 +1102.1615 Statistics Theory +1102.2449 Materials Science +1102.5083 Phenomenology +1102.5260 Strongly Correlated Electrons +1102.5540 Data Structures and Algorithms +1103.0135 Information Theory +1103.0388 Theory +1103.0784 Social and Information Networks +1103.4484 Plasma Physics +1104.0265 Geophysics +1104.1390 Phenomenology +1104.1596 +1104.2704 +1104.2726 Phenomenology +1104.5101 Quantum Algebra +1105.3630 Cosmology and Nongalactic Astrophysics +1105.4074 Materials Science +1105.5170 Physics and Society +1106.0311 Superconductivity +1106.0648 Analysis of PDEs +1106.1330 Theory +1106.2913 Symplectic Geometry +1106.5470 Logic in Computer Science +1106.5698 Theory +1107.0386 +1107.0539 Physics and Society +1107.0997 Populations and Evolution +1107.3479 General Mathematics +1108.1225 Statistical Mechanics +1108.1239 Combinatorics +1108.1581 Numerical Analysis +1108.1674 +1108.1716 Adaptation and Self-Organizing Systems +1108.1748 Strongly Correlated Electrons +1108.1804 Classical Physics +1108.1817 Strongly Correlated Electrons +1108.1819 +1108.1820 Number Theory +1108.1823 Quantum Algebra +1108.1831 Earth and Planetary Astrophysics +1108.1838 High Energy Astrophysical Phenomena +1108.1841 Physics and Society +1108.1842 Strongly Correlated Electrons +1108.1846 Classical Analysis and ODEs +1108.1852 Number Theory +1108.1853 Strongly Correlated Electrons +1108.1854 +1108.1855 +1108.1860 Data Analysis, Statistics and Probability +1108.1861 Logic in Computer Science +1108.1862 Software Engineering +1108.1863 Logic in Computer Science +1108.1864 Logic in Computer Science +1108.1865 Distributed, Parallel, and Cluster Computing +1108.1868 Accelerator Physics +1108.1869 Accelerator Physics +1108.1870 Accelerator Physics +1108.1871 Accelerator Physics +1108.1877 +1108.1879 Other Statistics +1108.1880 Commutative Algebra +1108.1883 Quantum Gases +1108.1885 Applications +1108.1887 Superconductivity +1108.1889 Disordered Systems and Neural Networks +1108.1890 Analysis of PDEs +1108.1891 Numerical Analysis +1108.1894 Group Theory +1108.1903 Plasma Physics +1108.1905 Combinatorics +1108.1913 Combinatorics +1108.1915 +1108.1917 Methodology +1108.1925 Databases +1108.1926 Distributed, Parallel, and Cluster Computing +1108.1928 Distributed, Parallel, and Cluster Computing +1108.1937 Statistical Mechanics +1108.1940 Systems and Control +1108.1943 +1108.1950 Lattice +1108.1952 Mesoscale and Nanoscale Physics +1108.1954 Computational Physics +1108.1963 +1108.1965 Differential Geometry +1108.1966 Computation and Language +1108.1967 +1108.1969 Functional Analysis +1108.1972 Statistics Theory +1108.1977 Information Theory +1108.1978 +1108.1982 Analysis of PDEs +1108.1983 Data Structures and Algorithms +1108.1984 Dynamical Systems +1108.1986 Artificial Intelligence +1108.1987 Cellular Automata and Lattice Gases +1108.2001 Algebraic Topology +1108.2003 +1108.2006 Physics Education +1108.2012 Mesoscale and Nanoscale Physics +1108.2026 Algebraic Geometry +1108.2027 General Physics +gr-qc/0206056 +0709.4253 Representation Theory +0710.3377 Probability +0801.2781 Plasma Physics +0801.3985 Combinatorics +0802.2163 Differential Geometry +0802.2812 Analysis of PDEs +0802.3819 Differential Geometry +0803.3279 Plasma Physics +0803.3281 Plasma Physics +0804.1057 Superconductivity +0804.1480 Other Condensed Matter +0805.0670 Classical Analysis and ODEs +0805.2744 Machine Learning +0805.2756 Methodology +0805.3799 Artificial Intelligence +0806.0792 Plasma Physics +0807.0908 Artificial Intelligence +0807.2555 Mesoscale and Nanoscale Physics +0809.0492 Machine Learning +0809.3132 Differential Geometry +0809.3199 +0809.4086 Learning +0809.5043 Phenomenology +0810.4081 Strongly Correlated Electrons +0811.0438 Probability +0901.2455 Superconductivity +0901.3704 +0902.2365 Quantum Algebra +0902.2808 Machine Learning +0903.2320 +0905.0163 Number Theory +0905.1426 Classical Analysis and ODEs +0905.3601 Optimization and Control +0905.4190 Differential Geometry +0906.2234 Methodology +0907.0625 Quantum Gases +0907.2505 Superconductivity +0908.1257 Analysis of PDEs +0909.0481 Computer Vision and Pattern Recognition +0909.0887 Algebraic Topology +0910.2829 Formal Languages and Automata Theory +0911.3193 Materials Science +0911.5440 Analysis of PDEs +0911.5655 Differential Geometry +0912.1510 Superconductivity +1001.3600 Spectral Theory +1002.0924 Soft Condensed Matter +1002.3252 Mesoscale and Nanoscale Physics +1002.3659 Theory +1002.3938 Classical Analysis and ODEs +1003.0996 Applications +1003.1565 Commutative Algebra +1004.0915 Materials Science +1004.3586 Optics +1005.3313 +1005.4383 +1005.4640 Number Theory +1006.0266 Superconductivity +1006.1584 +1006.1603 Theory +1006.2525 +1006.2697 +1006.3437 Geometric Topology +1006.3763 High Energy Astrophysical Phenomena +1006.3824 High Energy Astrophysical Phenomena +1006.4268 Mesoscale and Nanoscale Physics +1007.1821 General Physics +1007.2033 +1007.2289 Dynamical Systems +1007.3573 Phenomenology +1007.4429 Strongly Correlated Electrons +1008.2511 Atomic Physics +1008.2804 Classical Analysis and ODEs +1008.3024 Algebraic Geometry +1008.4604 Mesoscale and Nanoscale Physics +1008.4732 Quantum Gases +1008.4772 Solar and Stellar Astrophysics +1008.4907 Statistical Mechanics +1008.5051 High Energy Astrophysical Phenomena +1009.0675 Quantum Gases +1009.0684 Operator Algebras +1009.2963 Atomic Physics +1009.3232 Statistical Mechanics +1009.3691 Superconductivity +1009.5240 Mesoscale and Nanoscale Physics +1010.2002 Algebraic Geometry +1010.2084 Instrumentation and Methods for Astrophysics +1010.3268 Genomics +1010.4358 Strongly Correlated Electrons +1010.4744 Optimization and Control +1011.2543 Statistical Mechanics +1011.2697 Mesoscale and Nanoscale Physics +1011.2936 Astrophysics of Galaxies +1011.3412 Solar and Stellar Astrophysics +1011.3855 High Energy Astrophysical Phenomena +1011.5096 Populations and Evolution +1011.5131 Phenomenology +1011.6538 Materials Science +1011.6565 Mesoscale and Nanoscale Physics +1012.0274 Theory +1012.0966 Medical Physics +1012.1023 Quantum Gases +1012.1855 Cosmology and Nongalactic Astrophysics +1012.1924 Combinatorics +1012.2074 Representation Theory +1012.2611 Quantum Algebra +1012.3547 Group Theory +1012.4640 Logic +1012.5789 Commutative Algebra +1101.0490 Materials Science +1101.0622 Algebraic Geometry +1101.0845 Experiment +1101.0921 General Mathematics +1101.1270 Theory +1101.1504 Solar and Stellar Astrophysics +1101.1530 Number Theory +1101.1532 Functional Analysis +1101.1533 Analysis of PDEs +1101.1535 +1101.1537 Optimization and Control +1101.1548 Algebraic Geometry +1101.1557 K-Theory and Homology +1101.1561 Experiment +1101.1562 Atmospheric and Oceanic Physics +1101.1565 Cosmology and Nongalactic Astrophysics +1101.1568 Rings and Algebras +1101.1599 Symplectic Geometry +1101.1602 Computer Vision and Pattern Recognition +1101.1603 Cryptography and Security +1101.1606 Human-Computer Interaction +1101.1608 Human-Computer Interaction +1101.1609 +1101.1613 Category Theory +1101.1616 Analysis of PDEs +1101.1625 Analysis of PDEs +1101.1629 Materials Science +1101.1637 Information Retrieval +1101.1639 Information Retrieval +1101.1644 Soft Condensed Matter +1101.1662 Strongly Correlated Electrons +1101.1665 Differential Geometry +1101.1668 Superconductivity +1101.1677 History and Philosophy of Physics +1101.1680 Distributed, Parallel, and Cluster Computing +1101.1681 Dynamical Systems +1101.1682 Sound +1101.1684 Algebraic Geometry +1101.1685 General Physics +1101.1693 Materials Science +1101.1705 Rings and Algebras +1101.1712 Networking and Internet Architecture +1101.1718 Software Engineering +1101.1728 Classical Physics +1101.1730 Algebraic Geometry +1101.1731 Logic in Computer Science +1101.1743 Algebraic Geometry +1101.1747 Populations and Evolution +1101.1750 Dynamical Systems +1101.1754 Materials Science +1101.1758 Physics Education +1101.1767 Strongly Correlated Electrons +1101.1793 Classical Analysis and ODEs +1101.1794 +1101.1795 Differential Geometry +1101.1796 Chaotic Dynamics +1101.1799 Solar and Stellar Astrophysics +1101.1804 Materials Science +1101.1814 Cryptography and Security +1101.1815 Cryptography and Security +1101.1816 Probability +1101.1819 +1101.1827 Analysis of PDEs +1101.1828 Dynamical Systems +1101.1835 General Physics +1101.1836 Quantitative Methods +1101.1846 Distributed, Parallel, and Cluster Computing +1101.1847 Trading and Market Microstructure +1101.1850 Number Theory +1101.1854 Mesoscale and Nanoscale Physics +1101.1857 High Energy Astrophysical Phenomena +1101.1858 Neurons and Cognition +1101.1869 Analysis of PDEs +1101.1885 Cosmology and Nongalactic Astrophysics +1101.1888 +1101.1889 Instrumentation and Methods for Astrophysics +1101.1892 Tissues and Organs +1101.1900 High Energy Astrophysical Phenomena +1101.1902 Distributed, Parallel, and Cluster Computing +1101.1905 Popular Physics +1101.1914 Superconductivity +1101.1927 +1101.1928 Differential Geometry +1101.1929 Instrumentation and Methods for Astrophysics +1101.1932 Distributed, Parallel, and Cluster Computing +1101.1933 Representation Theory +1101.1938 Commutative Algebra +1101.1939 Number Theory +1101.1940 Instrumentation and Detectors +1101.1941 Data Structures and Algorithms +1101.1945 General Physics +cond-mat/0405331 Mesoscale and Nanoscale Physics +cond-mat/0410556 Superconductivity +cond-mat/0511271 Mesoscale and Nanoscale Physics +cond-mat/0602521 Superconductivity +cond-mat/0701174 Superconductivity +gr-qc/0703087 +math/0603062 Probability +math/0605555 Statistics Theory +math/0609522 Numerical Analysis +math/0701137 Rings and Algebras +physics/0210005 Classical Physics +quant-ph/0211177 +quant-ph/0304061 +quant-ph/0509185 +0808.1370 Disordered Systems and Neural Networks +0907.2015 Complex Variables +0907.3920 +0910.4547 +0911.5728 Algebraic Geometry +1001.1793 +1002.1423 Algebraic Geometry +1002.2168 Methodology +1005.2311 Soft Condensed Matter +1005.4854 Optimization and Control +1006.0783 Optics +1007.0406 K-Theory and Homology +1009.0779 Cosmology and Nongalactic Astrophysics +1009.6064 +1010.1825 Algebraic Geometry +1010.3025 Materials Science +1010.5696 Classical Physics +1011.2871 Plasma Physics +1012.2321 Formal Languages and Automata Theory +1012.2889 Adaptation and Self-Organizing Systems +1101.1189 Plasma Physics +1101.2731 Group Theory +1101.5881 Phenomenology +1101.5979 Quantum Gases +1102.1287 Plasma Physics +1102.1518 Differential Geometry +1102.1735 Statistical Mechanics +1102.3309 Mesoscale and Nanoscale Physics +1103.0564 Strongly Correlated Electrons +1103.0889 Dynamical Systems +1103.0980 Materials Science +1103.1398 Superconductivity +1103.3045 Phenomenology +1103.5067 Quantum Algebra +1104.3705 General Physics +1104.4266 Optimization and Control +1104.5341 Machine Learning +1105.1851 Superconductivity +1105.2741 Phenomenology +1105.2833 Superconductivity +1105.3059 Strongly Correlated Electrons +1105.4917 Superconductivity +1105.5427 Optimization and Control +1106.1873 Theory +1106.5322 Superconductivity +1107.0181 +1107.0248 Representation Theory +1107.0675 Superconductivity +1107.0711 Superconductivity +1107.1190 +1107.1250 +1107.2904 +1107.2949 Computational Geometry +1107.3800 History and Philosophy of Physics +1107.4248 Phenomenology +1107.4710 Mesoscale and Nanoscale Physics +1108.0195 Theory +1108.2779 +1108.3487 Soft Condensed Matter +1108.3836 Cosmology and Nongalactic Astrophysics +1108.3932 Theory +1108.4334 Dynamical Systems +1108.5380 Quantum Gases +1108.5598 Representation Theory +1109.0143 Experiment +1109.0270 Theory +1109.0384 Strongly Correlated Electrons +1109.1680 Information Theory +1109.3531 Materials Science +1109.3593 +1109.5950 Quantum Algebra +1109.6178 Data Structures and Algorithms +1110.2579 Phenomenology +1111.0708 Machine Learning +1111.4552 Discrete Mathematics +1111.4927 +1111.5276 Lattice +1111.6044 Rings and Algebras +1111.6105 Superconductivity +1111.6157 Commutative Algebra +1111.6295 Algebraic Geometry +1111.6296 Algebraic Geometry +1111.6568 Soft Condensed Matter +1111.6582 Phenomenology +1111.6759 Combinatorics +1111.6821 +1111.6926 Applications +1111.6934 Digital Libraries +1111.6944 +1111.6945 Phenomenology +1111.6970 Solar and Stellar Astrophysics +1111.6971 Cosmology and Nongalactic Astrophysics +1111.6981 Cosmology and Nongalactic Astrophysics +1111.6983 Software Engineering +1111.6992 High Energy Astrophysical Phenomena +1111.6995 +1111.6996 Numerical Analysis +1111.7002 Differential Geometry +1111.7006 +1111.7008 Mesoscale and Nanoscale Physics +1111.7009 Mesoscale and Nanoscale Physics +1111.7016 Group Theory +1111.7025 Artificial Intelligence +1111.7028 Combinatorics +1111.7029 Combinatorics +1111.7033 Multiagent Systems +1111.7036 Combinatorics +1111.7051 Cryptography and Security +1111.7054 Lattice +1111.7058 Optics +1111.7059 Statistical Mechanics +1111.7060 Instrumentation and Detectors +1111.7061 Statistics Theory +1111.7066 Analysis of PDEs +1111.7069 Information Theory +1111.7074 Statistical Mechanics +1111.7078 Information Theory +1111.7089 Applications +1111.7091 Applications +1111.7098 Applications +1111.7104 Information Theory +1111.7105 Applications +1111.7107 Functional Analysis +1111.7108 Information Theory +1111.7116 +1111.7120 Applications +1111.7121 Dynamical Systems +1111.7122 Instrumentation and Methods for Astrophysics +1111.7125 Applications +1111.7133 Mesoscale and Nanoscale Physics +1111.7134 Algebraic Topology +1111.7140 +1111.7141 Theory +1111.7142 Theory +1111.7143 Functional Analysis +1111.7151 +1111.7154 Logic in Computer Science +1111.7155 Materials Science +1111.7157 Combinatorics +1111.7159 Logic in Computer Science +1111.7161 +1111.7162 +1111.7164 Databases +1111.7165 Databases +1111.7166 Databases +1111.7167 Databases +1111.7168 Databases +1111.7169 Databases +1111.7170 Databases +1111.7171 Databases +1111.7176 Accelerator Physics +1111.7181 General Physics +1111.7182 Atomic and Molecular Clusters +1111.7187 Group Theory +1111.7189 Probability +1111.7191 Group Theory +1111.7193 General Physics +1111.7197 Logic +1111.7198 Rings and Algebras +1111.7201 Materials Science +1111.7203 Atomic and Molecular Clusters +1111.7208 Analysis of PDEs +1111.7209 Cryptography and Security +1111.7210 Strongly Correlated Electrons +1111.7217 Discrete Mathematics +1111.7220 Algebraic Topology +1111.7222 Cryptography and Security +1111.7224 Databases +1111.7226 Networking and Internet Architecture +1111.7229 Instrumentation and Detectors +1111.7231 +1111.7232 Phenomenology +1111.7235 Physics and Society +1111.7240 Operator Algebras +1111.7244 Other Condensed Matter +1111.7246 Combinatorics +1111.7248 Statistics Theory +1111.7251 Combinatorics +1111.7256 Group Theory +1111.7258 Hardware Architecture +1111.7265 Information Theory +1111.7271 Computer Vision and Pattern Recognition +1111.7273 Algebraic Topology +1111.7276 Representation Theory +1111.7277 Cryptography and Security +1111.7279 Phenomenology +1111.7287 Symplectic Geometry +1111.7294 Functional Analysis +1111.7297 Probability +1111.7300 Materials Science +1111.7301 Functional Analysis +1111.7306 Optics +1111.7308 Analysis of PDEs +1111.7310 Analysis of PDEs +astro-ph/9603116 +cs/0701187 Other Computer Science +math/0611813 Algebraic Geometry +0709.0205 Symplectic Geometry +0801.2474 Soft Condensed Matter +0803.3113 +0805.0053 Information Theory +0805.3973 Algebraic Geometry +0807.2341 Strongly Correlated Electrons +0808.3647 Algebraic Geometry +0809.4518 Category Theory +0812.2643 Algebraic Geometry +0812.4628 Quantum Algebra +0902.4114 Strongly Correlated Electrons +0907.4450 Probability +0909.0788 Other Condensed Matter +0910.0507 Superconductivity +0910.0603 Quantum Gases +0910.2694 Dynamical Systems +0910.3986 Dynamical Systems +0911.5008 +0911.5353 Strongly Correlated Electrons +0912.3535 Differential Geometry +0912.4595 Information Theory +1001.0262 Theory +1001.5008 Number Theory +1002.3586 Phenomenology +1003.0332 Information Theory +1003.3498 Probability +1004.3187 Strongly Correlated Electrons +1005.0270 Representation Theory +1005.0302 Quantum Gases +1006.1516 Soft Condensed Matter +1006.2440 High Energy Astrophysical Phenomena +1007.0875 Information Theory +1007.2885 Programming Languages +1007.3878 Computational Complexity +1007.5177 Other Condensed Matter +1008.0522 Strongly Correlated Electrons +1008.1409 Dynamical Systems +1008.1762 Statistical Mechanics +1008.2778 Mesoscale and Nanoscale Physics +1009.1088 Mesoscale and Nanoscale Physics +1009.1313 Quantum Gases +1009.3662 Algebraic Geometry +1009.3698 Cosmology and Nongalactic Astrophysics +1009.4798 Physics and Society +1009.6110 Cosmology and Nongalactic Astrophysics +1010.0050 Statistical Mechanics +1010.0173 Methodology +1010.0535 Machine Learning +1010.3924 Mesoscale and Nanoscale Physics +1010.4071 Algebraic Geometry +1011.0963 Representation Theory +1011.2091 Mesoscale and Nanoscale Physics +1011.5095 High Energy Astrophysical Phenomena +1011.5433 +1011.5777 Probability +1011.6212 Theory +1011.6348 Disordered Systems and Neural Networks +1012.1702 Strongly Correlated Electrons +1101.0974 General Mathematics +1101.3225 Superconductivity +1101.4572 Superconductivity +1101.5770 Combinatorics +1102.2464 Superconductivity +1102.2840 Information Theory +1102.3862 Digital Libraries +1102.4030 Group Theory +1102.4400 Number Theory +1102.4750 Statistical Mechanics +1102.5262 K-Theory and Homology +1103.0064 Mesoscale and Nanoscale Physics +1103.2114 Rings and Algebras +1103.4537 History and Philosophy of Physics +1103.4714 Optics +1104.0858 +1104.1085 Operator Algebras +1104.1657 +1104.1688 Probability +1104.1810 Operator Algebras +1104.1824 Distributed, Parallel, and Cluster Computing +1104.1970 Cryptography and Security +1104.2054 Dynamical Systems +1104.2059 Computer Vision and Pattern Recognition +1104.2069 Computer Vision and Pattern Recognition +1104.2072 Commutative Algebra +1104.2074 Computational Complexity +1104.2075 +1104.2076 Data Structures and Algorithms +1104.2092 Cosmology and Nongalactic Astrophysics +1104.2100 Theory +1104.2103 Cosmology and Nongalactic Astrophysics +1104.2109 +1104.2110 Operating Systems +1104.2122 Combinatorics +1104.2123 Methodology +1104.2133 +1104.2134 Networking and Internet Architecture +1104.2135 Materials Science +1104.2136 Materials Science +1104.2145 Algebraic Geometry +1104.2159 Classical Analysis and ODEs +1104.2160 Analysis of PDEs +1104.2162 +1104.2164 Classical Analysis and ODEs +1104.2172 Classical Analysis and ODEs +1104.2175 Computer Vision and Pattern Recognition +1104.2178 Analysis of PDEs +1104.2180 Methodology +1104.2181 Instrumentation and Methods for Astrophysics +1104.2194 Quantum Algebra +1104.2196 Information Retrieval +1104.2197 Analysis of PDEs +1104.2201 +1104.2203 Methodology +1104.2210 Methodology +1104.2213 Differential Geometry +1104.2216 Biological Physics +1104.2218 +1104.2221 Spectral Theory +1104.2222 Number Theory +1104.2223 Differential Geometry +1104.2230 Data Structures and Algorithms +1104.2239 Information Theory +1104.2246 Solar and Stellar Astrophysics +1104.2251 Discrete Mathematics +1104.2252 Biomolecules +1104.2261 Biomolecules +1104.2263 Algebraic Geometry +1104.2266 +1104.2273 +1104.2277 Optics +1104.2284 Databases +1104.2288 Dynamical Systems +1104.2293 Programming Languages +1104.2296 Differential Geometry +1104.2297 +1104.2301 Group Theory +1104.2306 Instrumentation and Methods for Astrophysics +1104.2308 General Finance +1104.2312 Computational Complexity +1104.2316 Solar and Stellar Astrophysics +1104.2317 +cond-mat/0307594 Superconductivity +cond-mat/0611092 Materials Science +gr-qc/0205127 +nlin/0402052 Exactly Solvable and Integrable Systems +nlin/0507024 Exactly Solvable and Integrable Systems +nlin/0607028 Chaotic Dynamics +nlin/0701046 Exactly Solvable and Integrable Systems +quant-ph/0701098 +0710.4339 Lattice +0711.2977 Experiment +0711.4275 Accelerator Physics +0711.4375 Experiment +0712.3817 Phenomenology +0712.4389 Phenomenology +0801.2360 +0802.3911 Accelerator Physics +0803.0060 Analysis of PDEs +0806.3272 +0811.1221 +0811.3633 Theory +0903.4056 Dynamical Systems +0903.4389 Mesoscale and Nanoscale Physics +0904.0793 Phenomenology +0905.2432 Lattice +0907.1783 Astrophysics of Galaxies +0907.2289 +0907.4448 Analysis of PDEs +0907.5238 +0907.5554 Geometric Topology +0909.0188 Operator Algebras +0909.4474 Numerical Analysis +0909.4899 Complex Variables +0910.5879 Analysis of PDEs +0911.2833 Number Theory +0911.5218 +0912.3680 Geometric Topology +1001.0720 Mesoscale and Nanoscale Physics +1001.4043 Classical Analysis and ODEs +1002.2601 +1002.3473 Differential Geometry +1003.0523 Theory +1003.2410 Mesoscale and Nanoscale Physics +1003.2862 Theory +1003.3575 Cosmology and Nongalactic Astrophysics +1003.4034 +1003.4214 Theory +1003.4273 +1004.0342 Lattice +1004.1803 Algebraic Geometry +1004.2799 Theory +1004.3378 High Energy Astrophysical Phenomena +1004.3498 Theory +1004.4032 Phenomenology +1004.4096 Astrophysics of Galaxies +1004.5444 Phenomenology +1005.1218 Functional Analysis +1006.0025 Cosmology and Nongalactic Astrophysics +1006.0483 Theory +1006.0578 +1006.0697 Risk Management +1006.5150 +1007.0678 Group Theory +1007.3748 Cosmology and Nongalactic Astrophysics +1007.4034 Logic +1008.1495 Cosmology and Nongalactic Astrophysics +1008.3192 Cosmology and Nongalactic Astrophysics +1009.0440 Mesoscale and Nanoscale Physics +1009.1567 +1009.1647 Group Theory +1009.2284 High Energy Astrophysical Phenomena +1009.2441 +1009.2781 Phenomenology +1009.3453 Mesoscale and Nanoscale Physics +1009.4476 Quantum Gases +1009.6026 Strongly Correlated Electrons +1010.1376 +1010.1747 Symplectic Geometry +1010.3722 Cosmology and Nongalactic Astrophysics +1010.5025 +1010.5796 Statistical Mechanics +1010.5844 +1010.5861 Lattice +1010.5865 Phenomenology +1010.5876 Strongly Correlated Electrons +1010.5887 Materials Science +1010.5909 Phenomenology +1010.6203 Experiment +1010.6224 Lattice +1010.6274 Phenomenology +1011.0682 Phenomenology +1011.1167 Phenomenology +1011.1485 Theory +1011.1759 Phenomenology +1011.1771 Theory +1011.1859 Cosmology and Nongalactic Astrophysics +1011.2126 Cosmology and Nongalactic Astrophysics +1011.2212 Theory +1011.2226 Cosmology and Nongalactic Astrophysics +1011.2398 Phenomenology +1011.2440 Theory +1011.2918 Optimization and Control +1011.3300 Phenomenology +1011.3416 Theory +1011.3502 Theory +1011.3735 Phenomenology +1011.3763 Theory +1011.3927 Theory +1011.4187 Strongly Correlated Electrons +1011.4357 Cosmology and Nongalactic Astrophysics +1011.4500 Theory +1011.4867 Phenomenology +1011.4936 Phenomenology +1011.4951 Solar and Stellar Astrophysics +1011.5107 Theory +1011.5129 Theory +1011.5218 Theory +1011.5278 Theory +1011.5319 High Energy Astrophysical Phenomena +1011.5363 Phenomenology +1011.5679 Theory +1011.5820 Theory +1011.5895 Theory +1011.5989 Theory +1011.6109 Theory +1011.6386 Statistical Mechanics +1011.6553 Functional Analysis +1011.6614 Algebraic Geometry +1011.6647 Phenomenology +1011.6662 Phenomenology +1012.0713 Theory +1012.1328 +1012.1355 Theory +1012.1379 +1012.1607 Quantum Gases +1012.1706 +1012.1760 Phenomenology +1012.1991 +1012.2119 Theory +1012.2638 Theory +1012.2646 Cosmology and Nongalactic Astrophysics +1012.2867 +1012.2875 Phenomenology +1012.3137 Theory +1012.3275 High Energy Astrophysical Phenomena +1012.3316 Theory +1012.3352 Phenomenology +1012.3668 Phenomenology +1012.3740 Theory +1012.3756 Theory +1012.3961 Theory +1012.3972 Theory +1012.4230 Phenomenology +1012.4284 Lattice +1012.4344 Theory +1012.4348 Instrumentation and Detectors +1012.4467 +1012.4471 Theory +1012.4472 +1012.4541 Theory +1012.4629 +1012.4713 Theory +1012.4785 Theory +1012.4803 Theory +1012.4885 Cosmology and Nongalactic Astrophysics +1101.0009 Theory +1101.0026 Theory +1101.0088 +1101.1619 Cosmology and Nongalactic Astrophysics +1101.1903 High Energy Astrophysical Phenomena +1101.2543 High Energy Astrophysical Phenomena +1101.3180 Cosmology and Nongalactic Astrophysics +1101.3360 Theory +1101.4633 Phenomenology +1101.4741 +1101.5846 Algebraic Geometry +1102.0734 Statistical Mechanics +1102.1476 Combinatorics +1102.2205 Strongly Correlated Electrons +1102.2298 Statistics Theory +1102.2786 Cosmology and Nongalactic Astrophysics +1102.3877 Cosmology and Nongalactic Astrophysics +1102.4955 Instrumentation and Methods for Astrophysics +1103.0123 Superconductivity +1103.0271 +1103.0524 Fluid Dynamics +1103.3186 +1103.3264 Mesoscale and Nanoscale Physics +1103.3282 Symplectic Geometry +1103.3286 Analysis of PDEs +1103.3292 Information Theory +1103.3308 Cryptography and Security +1103.3317 Classical Analysis and ODEs +1103.3319 Logic in Computer Science +1103.3320 Logic in Computer Science +1103.3321 Logic in Computer Science +1103.3322 Logic in Computer Science +1103.3328 Plasma Physics +1103.3332 Cryptography and Security +1103.3333 Cryptography and Security +1103.3335 Representation Theory +1103.3336 Combinatorics +1103.3337 Mesoscale and Nanoscale Physics +1103.3339 Other Computer Science +1103.3340 Networking and Internet Architecture +1103.3343 Differential Geometry +1103.3344 Pattern Formation and Solitons +1103.3349 Materials Science +1103.3355 Materials Science +1103.3361 Formal Languages and Automata Theory +1103.3363 Algebraic Geometry +1103.3365 Analysis of PDEs +1103.3366 Probability +1103.3369 Combinatorics +1103.3371 Numerical Analysis +1103.3372 Dynamical Systems +1103.3374 Materials Science +1103.3381 Number Theory +1103.3382 Networking and Internet Architecture +1103.3386 +1103.3391 Computational Engineering, Finance, and Science +1103.3401 Dynamical Systems +1103.3402 General Physics +1103.3413 Mesoscale and Nanoscale Physics +1103.3416 Functional Analysis +1103.3417 Artificial Intelligence +1103.3420 Artificial Intelligence +1103.3423 Geometric Topology +1103.3426 Earth and Planetary Astrophysics +1103.3428 Number Theory +1103.3440 Computer Vision and Pattern Recognition +1103.3443 Statistical Mechanics +1103.3449 Mesoscale and Nanoscale Physics +1103.3455 Commutative Algebra +1103.3456 +1103.3457 Social and Information Networks +1103.3458 Dynamical Systems +1103.3460 Analysis of PDEs +1103.3462 Algebraic Geometry +1103.3479 Geometric Topology +1103.3481 Cosmology and Nongalactic Astrophysics +1103.3483 Number Theory +1103.3487 Symplectic Geometry +1103.3489 Probability +1103.3494 Probability +1103.3498 Astrophysics of Galaxies +hep-th/9912112 Theory +0706.3212 +0706.3305 Cryptography and Security +0707.3254 Analysis of PDEs +0707.3968 General Physics +0708.0985 Algebraic Geometry +0803.1452 +0806.0542 Classical Analysis and ODEs +0808.0308 Geometric Topology +0812.3089 Number Theory +0812.4670 Superconductivity +0901.1607 Algebraic Geometry +0903.3680 Theory +0904.2385 Logic in Computer Science +0905.2986 Phenomenology +0906.5018 High Energy Astrophysical Phenomena +0907.1697 +0908.4560 Probability +0909.0805 +0909.1038 Theory +0909.2160 Experiment +0911.0567 +0911.2951 Algebraic Geometry +0912.0689 Representation Theory +0912.5058 Astrophysics of Galaxies +1003.0389 Exactly Solvable and Integrable Systems +1003.3683 +1003.3991 Lattice +1003.4397 Numerical Analysis +1003.4686 General Physics +1005.0301 Statistical Mechanics +1005.3756 Group Theory +1005.3965 Superconductivity +1006.0469 Computational Finance +1006.1929 Phenomenology +1006.2882 Cosmology and Nongalactic Astrophysics +1006.3867 Functional Analysis +1006.4143 Superconductivity +1006.4812 Strongly Correlated Electrons +1007.0840 Quantum Gases +1007.1604 Discrete Mathematics +1007.1732 Mesoscale and Nanoscale Physics +1007.3474 Probability +1007.5424 Theory +1008.0082 Theory +1008.0566 Earth and Planetary Astrophysics +1008.1644 Strongly Correlated Electrons +1008.2690 Phenomenology +1009.1389 Quantum Gases +1009.2518 Classical Analysis and ODEs +1009.3267 +1009.3394 +1009.4516 Neurons and Cognition +1009.4954 Information Theory +1010.0442 +1010.2994 Phenomenology +1010.2999 Experiment +1010.4718 +1010.4936 Chemical Physics +1010.5114 Atomic and Molecular Clusters +1010.5505 Phenomenology +1011.0236 Analysis of PDEs +1011.6672 Materials Science +1012.0708 Theory +1012.4217 Materials Science +1012.4509 Atomic Physics +1101.1119 Representation Theory +1101.1299 Cosmology and Nongalactic Astrophysics +1101.2814 Optics +1101.3046 Rings and Algebras +1101.3963 Dynamical Systems +1101.4238 Theory +1101.4352 Statistics Theory +1101.4353 Statistics Theory +1101.4648 High Energy Astrophysical Phenomena +1101.4655 Combinatorics +1101.4660 Phenomenology +1101.4674 General Finance +1101.4675 General Finance +1101.4678 General Physics +1101.4680 General Finance +1101.4682 Number Theory +1101.4683 Combinatorics +1101.4688 Functional Analysis +1101.4691 Combinatorics +1101.4694 +1101.4695 Functional Analysis +1101.4703 +1101.4706 +1101.4708 Functional Analysis +1101.4711 Information Theory +1101.4713 Operator Algebras +1101.4719 Mesoscale and Nanoscale Physics +1101.4725 Functional Analysis +1101.4728 Phenomenology +1101.4731 Software Engineering +1101.4732 Programming Languages +1101.4733 Logic in Computer Science +1101.4734 Logic in Computer Science +1101.4735 Mesoscale and Nanoscale Physics +1101.4739 Operator Algebras +1101.4748 Materials Science +1101.4750 Digital Libraries +1101.4760 Phenomenology +1101.4774 Chaotic Dynamics +1101.4776 Operator Algebras +1101.4790 Combinatorics +1101.4801 Probability +1101.4812 Symplectic Geometry +1101.4814 Combinatorics +1101.4824 Formal Languages and Automata Theory +1101.4826 Classical Analysis and ODEs +1101.4827 General Physics +1101.4830 Differential Geometry +1101.4836 Analysis of PDEs +1101.4843 High Energy Astrophysical Phenomena +1101.4855 Experiment +1101.4858 +1101.4871 Geophysics +1101.4877 Astrophysics of Galaxies +1101.4879 Algebraic Topology +1101.4888 Theory +1101.4894 Classical Analysis and ODEs +1101.4896 Experiment +1101.4897 Experiment +1101.4898 Genomics +1101.4901 Astrophysics of Galaxies +1101.4903 Statistics Theory +1101.4905 Cosmology and Nongalactic Astrophysics +1101.4906 Number Theory +1101.4914 Analysis of PDEs +1101.4918 Learning +1101.4920 Astrophysics of Galaxies +1101.4922 Combinatorics +1101.4924 Learning +1101.4927 Combinatorics +1101.4931 Number Theory +hep-th/9504082 Theory +math/0611591 Number Theory +0708.0774 +0708.2074 +0708.3355 Combinatorics +0710.5562 Dynamical Systems +0801.4713 +0803.2719 +0803.4044 Dynamical Systems +0804.1513 Differential Geometry +0809.0490 Learning +0811.0839 +0811.1548 +0901.0214 Strongly Correlated Electrons +0901.2445 Probability +0902.1937 +0903.0137 Genomics +0903.0461 +0903.2477 Theory +0903.3735 Materials Science +0904.2918 Algebraic Geometry +0905.3913 Logic +0908.0581 Other Condensed Matter +0908.1800 Exactly Solvable and Integrable Systems +0908.3755 +0909.5026 Machine Learning +0910.1538 Differential Geometry +0910.3134 +0911.2290 Exactly Solvable and Integrable Systems +0911.3371 Group Theory +0911.5302 Rings and Algebras +0912.0777 Algebraic Topology +0912.1914 Exactly Solvable and Integrable Systems +0912.2089 Molecular Networks +1001.1620 Solar and Stellar Astrophysics +1001.5392 Theory +1002.1211 Combinatorics +1002.2819 +1002.3649 Exactly Solvable and Integrable Systems +1002.3680 Probability +1002.3715 Quantum Algebra +1002.5008 Populations and Evolution +1003.3527 Differential Geometry +1003.4672 Phenomenology +1003.5123 Superconductivity +1004.1631 Algebraic Geometry +1004.2016 Cosmology and Nongalactic Astrophysics +1004.2085 Geometric Topology +1005.1545 Learning +1005.1815 +1005.3425 Optics +1005.5228 Solar and Stellar Astrophysics +1006.0036 +1006.2989 Complex Variables +1007.2268 Theory +1007.2546 +1007.2832 Mesoscale and Nanoscale Physics +1007.3425 Differential Geometry +1007.5100 Phenomenology +1008.0112 Materials Science +1008.0334 +1008.1071 Instrumentation and Methods for Astrophysics +1008.3114 Astrophysics of Galaxies +1008.4785 Analysis of PDEs +1008.5113 Strongly Correlated Electrons +1009.0726 Materials Science +1009.2128 +1009.2392 Phenomenology +1009.2482 Mesoscale and Nanoscale Physics +1009.4010 High Energy Astrophysical Phenomena +1009.4157 Cosmology and Nongalactic Astrophysics +1009.5168 Data Structures and Algorithms +1010.2405 Optics +1010.2779 Phenomenology +1010.3036 Exactly Solvable and Integrable Systems +1010.3200 Combinatorics +1010.3657 Phenomenology +1010.4773 Theory +1010.4857 Cosmology and Nongalactic Astrophysics +1010.5120 Lattice +1011.0438 Cosmology and Nongalactic Astrophysics +1011.0542 Optics +1011.0664 Phenomenology +1011.0722 Cosmology and Nongalactic Astrophysics +1011.0765 Biomolecules +1011.1114 +1011.1265 Strongly Correlated Electrons +1011.1610 General Physics +1011.1909 Phenomenology +1011.2036 +1011.2040 Quantum Gases +1011.2057 Lattice +1011.2090 Theory +1011.2138 +1011.2475 +1011.3501 Cosmology and Nongalactic Astrophysics +1011.3572 Experiment +1011.3973 +1011.3984 +1011.4511 Phenomenology +1011.4522 High Energy Astrophysical Phenomena +1011.4585 Cosmology and Nongalactic Astrophysics +1011.4646 Algebraic Geometry +1011.4999 Theory +1011.5200 Data Structures and Algorithms +1011.5381 Phenomenology +1011.5576 Mesoscale and Nanoscale Physics +1011.6188 Phenomenology +1012.0215 Lattice +1012.0309 Cosmology and Nongalactic Astrophysics +1012.1035 Phenomenology +1012.2874 Phenomenology +1012.2894 Chemical Physics +1012.3101 Phenomenology +1012.3144 +1012.3171 +1012.3283 Theory +1012.3518 Phenomenology +1012.3920 Theory +1012.4385 Phenomenology +1012.4478 Theory +1012.5192 Number Theory +1012.5213 Optics +1012.5296 Phenomenology +1101.0085 Information Theory +1101.0491 Theory +1101.0871 +1101.1522 Theory +1101.2060 Numerical Analysis +1101.4134 Phenomenology +1101.4369 Symbolic Computation +1102.1638 Solar and Stellar Astrophysics +1102.1810 +1102.1988 Phenomenology +1102.2843 Lattice +1102.2884 Algebraic Geometry +1102.2899 Theory +1102.3093 Computational Complexity +1102.3316 +1102.3474 +1102.3572 Cosmology and Nongalactic Astrophysics +1102.3648 Number Theory +1102.4463 Astrophysics of Galaxies +1102.4477 Theory +1102.4906 Phenomenology +1102.5569 Superconductivity +1103.0285 Theory +1103.1202 +1103.1927 High Energy Astrophysical Phenomena +1103.2015 Superconductivity +1103.2018 Strongly Correlated Electrons +1103.2699 Atomic Physics +1103.2801 Probability +1103.3890 History and Overview +1103.4791 Cosmology and Nongalactic Astrophysics +1103.5406 Optimization and Control +1103.5473 Number Theory +1103.5583 Dynamical Systems +1103.5701 +1104.0230 Information Theory +1104.0234 Analysis of PDEs +1104.0724 Superconductivity +1104.1486 Theory +1104.1556 Computer Vision and Pattern Recognition +1104.3312 Molecular Networks +1104.3349 Numerical Analysis +1104.3728 Theory +1104.4655 Solar and Stellar Astrophysics +1104.5117 Information Theory +1104.5435 Combinatorics +1105.0354 Logic +1105.0562 Methodology +1105.0882 +1105.0947 Solar and Stellar Astrophysics +1105.1362 Algebraic Geometry +1105.1369 Logic in Computer Science +1105.1370 Logic in Computer Science +1105.1372 Probability +1105.1373 Classical Analysis and ODEs +1105.1376 Logic in Computer Science +1105.1381 Solar and Stellar Astrophysics +1105.1382 Solar and Stellar Astrophysics +1105.1383 Sound +1105.1384 +1105.1386 Disordered Systems and Neural Networks +1105.1388 Mesoscale and Nanoscale Physics +1105.1390 Mesoscale and Nanoscale Physics +1105.1393 Numerical Analysis +1105.1394 Algebraic Topology +1105.1395 Probability +1105.1404 Statistics Theory +1105.1406 Information Retrieval +1105.1408 Medical Physics +1105.1413 +1105.1414 Materials Science +1105.1416 Functional Analysis +1105.1423 Phenomenology +1105.1424 Emerging Technologies +1105.1428 Probability +1105.1436 Artificial Intelligence +1105.1439 Geometric Topology +1105.1440 Number Theory +1105.1445 Physics and Society +1105.1446 Theory +1105.1450 +1105.1451 Number Theory +1105.1452 Number Theory +1105.1453 Group Theory +1105.1456 Number Theory +1105.1457 Number Theory +1105.1458 Numerical Analysis +1105.1460 +1105.1469 Differential Geometry +1105.1470 Combinatorics +1105.1471 Probability +1105.1472 Instrumentation and Detectors +1105.1479 Mesoscale and Nanoscale Physics +1105.1480 Probability +1105.1482 Information Theory +1105.1483 Populations and Evolution +1105.1487 Analysis of PDEs +1105.1489 Analysis of PDEs +1105.1506 Metric Geometry +1105.1509 Materials Science +1105.1510 Theory +1105.1512 Chaotic Dynamics +1105.1515 Networking and Internet Architecture +1105.1516 Networking and Internet Architecture +1105.1518 Networking and Internet Architecture +1105.1520 Information Theory +1105.1521 Solar and Stellar Astrophysics +1105.1522 General Topology +1105.1524 Functional Analysis +1105.1526 Analysis of PDEs +1105.1528 Analysis of PDEs +1105.1531 +1105.1532 Physics and Society +1105.1534 Neural and Evolutionary Computing +1105.1535 Group Theory +1105.1538 Disordered Systems and Neural Networks +1105.1544 Differential Geometry +1105.1549 General Physics +1105.1552 +1105.1553 Combinatorics +1105.1554 Number Theory +1105.1563 Numerical Analysis +1105.1564 Multiagent Systems +1105.1567 Combinatorics +1105.1568 Mesoscale and Nanoscale Physics +1105.1569 Data Structures and Algorithms +1105.1575 Methodology +1105.1581 +1105.1582 +1105.1583 Exactly Solvable and Integrable Systems +1105.1592 Representation Theory +1105.1597 Analysis of PDEs +1105.1602 Number Theory +1105.1604 Instrumentation and Methods for Astrophysics +1105.1607 Classical Analysis and ODEs +1105.1608 Probability +1105.1609 Differential Geometry +1105.1610 Group Theory +1105.1615 Operator Algebras +1105.1616 Number Theory +1105.1619 Number Theory +1105.1621 Number Theory +1105.1622 Data Structures and Algorithms +1105.1623 Number Theory +1105.1624 Complex Variables +1105.1625 Cosmology and Nongalactic Astrophysics +1105.1627 Quantum Algebra +1105.1628 Number Theory +1105.1629 Dynamical Systems +1105.1631 Group Theory +1105.1638 Phenomenology +1105.1639 Combinatorics +1105.1640 +1105.1641 Neural and Evolutionary Computing +1105.1642 Functional Analysis +1105.1646 Statistics Theory +1105.1660 Experiment +1105.1662 Probability +1105.1675 Geometric Topology +1105.1678 +1105.1680 +1105.1686 Operator Algebras +1105.1692 Geometric Topology +1105.1693 Computers and Society +1105.1696 Number Theory +1105.1698 Experiment +1105.1706 Number Theory +1105.1707 +1105.1708 Fluid Dynamics +1105.1709 General Physics +1105.1713 Analysis of PDEs +1105.1720 Networking and Internet Architecture +1105.1724 General Mathematics +1105.1726 Representation Theory +1105.1731 Cosmology and Nongalactic Astrophysics +1105.1732 Number Theory +1105.1736 Operating Systems +1105.1740 Exactly Solvable and Integrable Systems +1105.1743 Programming Languages +1105.1754 Differential Geometry +1105.1758 Machine Learning +1105.1762 Analysis of PDEs +1105.1763 Dynamical Systems +1105.1764 Combinatorics +astro-ph/0001009 +astro-ph/0003154 +astro-ph/0006097 +astro-ph/0006187 +astro-ph/0008219 +astro-ph/0008353 +astro-ph/0009294 +astro-ph/0009365 +astro-ph/0010126 +astro-ph/0010330 +astro-ph/0104300 +astro-ph/0105111 +astro-ph/0105235 +astro-ph/0107004 +astro-ph/0107319 +astro-ph/0201133 +astro-ph/0202135 +astro-ph/0204254 +astro-ph/0205152 +astro-ph/0205286 +astro-ph/0205418 +astro-ph/0206501 +astro-ph/0211099 +astro-ph/0303020 +astro-ph/0304421 +astro-ph/0310266 +astro-ph/0401173 +astro-ph/0401307 +astro-ph/0403541 +astro-ph/0405099 +astro-ph/0405337 +astro-ph/0407470 +astro-ph/0409018 +astro-ph/0411339 +astro-ph/0411431 +astro-ph/0510093 +astro-ph/0511500 +astro-ph/0608048 +astro-ph/0609645 +astro-ph/0611219 +astro-ph/9307040 +astro-ph/9310001 +astro-ph/9402024 +astro-ph/9408034 +astro-ph/9408070 +astro-ph/9503115 +astro-ph/9508143 +astro-ph/9610152 +astro-ph/9610174 +astro-ph/9704261 +astro-ph/9708113 +astro-ph/9710164 +astro-ph/9803292 +astro-ph/9806134 +astro-ph/9809238 +astro-ph/9810378 +astro-ph/9901065 +astro-ph/9906397 +astro-ph/9907094 +astro-ph/9908275 +astro-ph/9912455 +cond-mat/0702568 Other Condensed Matter +gr-qc/0506078 +gr-qc/9805048 +math-ph/0303045 +math/0603584 Probability +math/0612480 Dynamical Systems +math/0701899 Dynamical Systems +physics/0608245 Atomic Physics +quant-ph/0105009 +quant-ph/0310114 +quant-ph/0511004 +0706.1250 Chaotic Dynamics +0708.1609 +0708.3266 Geometric Topology +0709.1616 Methodology +0808.3483 Mesoscale and Nanoscale Physics +0809.0591 +0812.3694 +0902.0664 Other Quantitative Biology +0903.1344 Number Theory +0903.2757 Algebraic Geometry +0904.0528 Phenomenology +0904.2743 Cosmology and Nongalactic Astrophysics +0904.4462 +0905.1746 Algebraic Geometry +0906.2075 General Mathematics +0906.2136 Mesoscale and Nanoscale Physics +0908.1651 Algebraic Geometry +0910.1516 Numerical Analysis +0910.3547 Phenomenology +0911.3115 Materials Science +0912.4278 Strongly Correlated Electrons +0912.5175 Genomics +0912.5209 Differential Geometry +0912.5447 +1001.2847 +1001.5426 Differential Geometry +1002.0162 Symplectic Geometry +1002.3907 Molecular Networks +1003.6106 Differential Geometry +1004.4190 Theory +1006.1781 High Energy Astrophysical Phenomena +1006.2621 Chaotic Dynamics +1006.2912 Mesoscale and Nanoscale Physics +1006.4310 Applications +1006.4374 Biological Physics +1008.0201 Numerical Analysis +1008.1303 +1008.1371 Numerical Analysis +1008.1405 +1008.2182 Cosmology and Nongalactic Astrophysics +1008.4076 Rings and Algebras +1008.4166 Numerical Analysis +1008.4851 +1009.1523 +1009.2291 Chemical Physics +1010.1542 +1010.3246 +1010.4495 Combinatorics +1010.6012 +1011.0277 +1011.3992 Dynamical Systems +1012.0492 Differential Geometry +1012.1381 Fluid Dynamics +1012.2242 Quantitative Methods +1012.5256 +1101.0123 Cosmology and Nongalactic Astrophysics +1101.0902 Representation Theory +1101.4625 Optics +1102.0121 Quantum Gases +1102.0546 +1102.1954 General Topology +1102.3503 Formal Languages and Automata Theory +1102.3700 +1103.0541 +1103.0620 Soft Condensed Matter +1103.3612 +1103.5214 Analysis of PDEs +1103.6276 Quantitative Methods +1104.0169 Mesoscale and Nanoscale Physics +1104.1227 Information Theory +1104.1939 Theory +1104.2738 Theory +1104.5451 Group Theory +1104.5710 Statistical Mechanics +1105.1020 Lattice +1105.2548 +1105.4220 +1105.5804 Computational Physics +1106.0135 Algebraic Geometry +1106.0431 General Physics +1106.2070 Materials Science +1106.2261 Combinatorics +1106.2926 +1106.4223 Statistics Theory +1106.5083 +1106.5380 +1106.5781 Combinatorics +1107.1008 General Physics +1107.1582 Theory +1107.1637 Statistical Mechanics +1107.1652 Chemical Physics +1107.2027 Combinatorics +1107.2581 Materials Science +1107.4254 Probability +1107.4863 +1108.0635 Cosmology and Nongalactic Astrophysics +1108.0667 Theory +1108.0845 Metric Geometry +1108.1058 Phenomenology +1108.1358 Cosmology and Nongalactic Astrophysics +1108.2586 +1108.3004 +1108.4276 High Energy Astrophysical Phenomena +1108.4717 +1108.4787 Strongly Correlated Electrons +1108.5439 Algebraic Geometry +1108.6064 Strongly Correlated Electrons +1108.6331 Theory +1109.0443 Solar and Stellar Astrophysics +1109.0692 Atomic Physics +1109.1709 Materials Science +1109.1926 Superconductivity +1109.4390 Phenomenology +1109.5493 Optics +1110.0314 Materials Science +1110.1733 Soft Condensed Matter +1110.2279 +1110.2523 Cosmology and Nongalactic Astrophysics +1110.2577 Probability +1110.4775 Statistical Mechanics +1110.5264 Classical Physics +1110.5385 Populations and Evolution +1110.5636 Instrumentation and Methods for Astrophysics +1110.6544 Performance +1110.6776 Materials Science +1111.0487 Geometric Topology +1111.0820 Superconductivity +1111.1195 Phenomenology +1111.1455 Instrumentation and Methods for Astrophysics +1111.1776 Cosmology and Nongalactic Astrophysics +1111.1777 Cosmology and Nongalactic Astrophysics +1111.2482 Probability +1111.3198 +1111.3696 Information Theory +1111.3844 Chaotic Dynamics +1111.4804 Probability +1111.4886 Social and Information Networks +1111.4935 +1111.5116 Experiment +1111.5228 Risk Management +1111.5531 +1111.5627 +1111.5631 Materials Science +1111.5634 Combinatorics +1111.5639 Databases +1111.5640 Software Engineering +1111.5641 Cryptography and Security +1111.5644 Medical Physics +1111.5645 Biological Physics +1111.5646 History and Philosophy of Physics +1111.5648 Machine Learning +1111.5649 Plasma Physics +1111.5655 Mesoscale and Nanoscale Physics +1111.5656 Combinatorics +1111.5659 Category Theory +1111.5665 Dynamical Systems +1111.5669 Analysis of PDEs +1111.5675 Plasma Physics +1111.5677 Superconductivity +1111.5679 Data Analysis, Statistics and Probability +1111.5681 Differential Geometry +1111.5685 +1111.5687 Databases +1111.5688 Optics +1111.5689 Artificial Intelligence +1111.5690 Databases +1111.5692 Analysis of PDEs +1111.5696 Dynamical Systems +1111.5701 Strongly Correlated Electrons +1111.5703 Algebraic Geometry +1111.5705 Phenomenology +1111.5709 Materials Science +1111.5716 Probability +1111.5721 Software Engineering +1111.5722 Algebraic Geometry +1111.5723 Differential Geometry +1111.5725 Algebraic Geometry +1111.5726 Portfolio Management +1111.5727 Lattice +1111.5732 Materials Science +1111.5733 Software Engineering +1111.5735 Information Theory +1111.5737 Computers and Society +1111.5739 Probability +1111.5740 Solar and Stellar Astrophysics +1111.5741 Other Computer Science +1111.5743 Combinatorics +1111.5745 Algebraic Topology +1111.5746 +1111.5747 High Energy Astrophysical Phenomena +1111.5749 Adaptation and Self-Organizing Systems +1111.5752 Geometric Topology +1111.5753 Operator Algebras +1111.5754 Operator Algebras +1111.5755 +1111.5756 Combinatorics +1111.5765 Other Computer Science +1111.5766 Accelerator Physics +1111.5767 Cryptography and Security +1111.5773 Social and Information Networks +1111.5774 +1111.5778 Other Computer Science +1111.5781 High Energy Astrophysical Phenomena +1111.5783 High Energy Astrophysical Phenomena +1111.5793 Cosmology and Nongalactic Astrophysics +1111.5797 Instrumentation and Methods for Astrophysics +1111.5801 Superconductivity +1111.5804 Lattice +1111.5807 Formal Languages and Automata Theory +1111.5810 Networking and Internet Architecture +1111.5812 Numerical Analysis +1111.5814 Biological Physics +1111.5820 Instrumentation and Methods for Astrophysics +1111.5823 +1111.5824 Analysis of PDEs +1111.5825 +1111.5826 Algebraic Geometry +1111.5827 Methodology +1111.5832 Phenomenology +1111.5839 Chaotic Dynamics +1111.5841 +1111.5844 Numerical Analysis +1111.5846 Dynamical Systems +1111.5848 Machine Learning +1111.5849 Mesoscale and Nanoscale Physics +1111.5851 Experiment +1111.5853 Superconductivity +1111.5855 Instrumentation and Methods for Astrophysics +1111.5861 Cosmology and Nongalactic Astrophysics +1111.5862 K-Theory and Homology +1111.5863 Algebraic Topology +1111.5865 Probability +1111.5867 Statistics Theory +1111.5868 Mesoscale and Nanoscale Physics +1111.5871 Dynamical Systems +1111.5872 Discrete Mathematics +1111.5879 Analysis of PDEs +1111.5880 Emerging Technologies +1111.5881 Mesoscale and Nanoscale Physics +1111.5883 Mesoscale and Nanoscale Physics +1111.5884 Computational Complexity +1111.5890 Atomic Physics +1111.5896 Spectral Theory +1111.5897 Information Theory +1111.5899 Information Theory +1111.5902 Soft Condensed Matter +1111.5903 Optimization and Control +1111.5905 Materials Science +1111.5913 Phenomenology +1111.5920 Logic +1111.5925 Functional Analysis +1111.5929 Algebraic Geometry +1111.5930 Multiagent Systems +1111.5940 Analysis of PDEs +1111.5945 +1111.5947 Numerical Analysis +1111.5948 Machine Learning +1111.5952 Phenomenology +1111.5959 Combinatorics +1111.5961 +1111.5964 +1111.5967 +1111.5968 Classical Analysis and ODEs +1111.5972 Applications +1111.5973 Dynamical Systems +1111.5976 Dynamical Systems +1111.5979 Computational Geometry +1111.5985 Symplectic Geometry +1111.5986 Computational Geometry +1111.5988 Lattice +1111.5995 Phenomenology +1111.6007 Combinatorics +1111.6009 +1111.6010 +1111.6024 Combinatorics +1111.6029 +1111.6034 Statistical Mechanics +1111.6035 Rings and Algebras +1111.6037 Group Theory +1111.6040 General Physics +1111.6042 Lattice +1111.6048 Astrophysics of Galaxies +1111.6051 +1111.6053 Physics and Society +1111.6054 +1111.6055 Combinatorics +1111.6057 Cosmology and Nongalactic Astrophysics +1111.6059 +1111.6060 Analysis of PDEs +1111.6061 Theory +1111.6066 +1111.6067 Computational Finance +1111.6071 Cosmology and Nongalactic Astrophysics +1111.6074 Physics and Society +1111.6079 +1111.6081 Phenomenology +1111.6084 Databases +1111.6086 Probability +1111.6088 History and Overview +1111.6091 Numerical Analysis +1111.6095 Algebraic Geometry +1111.6096 Phenomenology +hep-ph/0702038 Phenomenology +nlin/0609028 Chaotic Dynamics +quant-ph/0206071 +quant-ph/0503138 +0707.2427 Geometric Topology +0710.4571 Soft Condensed Matter +0711.1072 Lattice +0802.3624 +0804.2536 Fluid Dynamics +0804.2637 +0806.3568 +0808.3280 Materials Science +0904.1513 +0905.1371 +0906.0165 Numerical Analysis +0907.4959 +0908.4451 Superconductivity +0910.4040 Superconductivity +1001.4316 Other Condensed Matter +1002.0646 Optics +1003.4380 Phenomenology +1007.1489 Group Theory +1007.3096 +1007.3708 Physics and Society +1008.3643 +1008.3774 Theory +1008.4421 Cosmology and Nongalactic Astrophysics +1008.5274 Information Theory +1009.0292 +1009.2904 Quantum Gases +1010.4557 +1010.6226 Phenomenology +1011.0303 +1011.0308 +1011.2397 Phenomenology +1011.2804 Lattice +1011.4523 Phenomenology +1011.5842 Phenomenology +1011.6091 Phenomenology +1012.1724 +1012.2053 Mesoscale and Nanoscale Physics +1012.2511 Cosmology and Nongalactic Astrophysics +1012.4336 Statistical Mechanics +1012.4369 Cosmology and Nongalactic Astrophysics +1012.4935 Quantum Algebra +1101.3250 +1101.3435 +1101.3844 Phenomenology +1101.4212 Mesoscale and Nanoscale Physics +1101.5196 Phenomenology +1102.1477 +1102.1566 Quantum Gases +1102.2006 Popular Physics +1102.2070 Phenomenology +1102.2195 Rings and Algebras +1102.2448 +1102.2451 +1102.3935 Materials Science +1102.3941 Lattice +1102.4260 Differential Geometry +1102.4562 Phenomenology +1102.5499 Data Analysis, Statistics and Probability +1103.0274 Earth and Planetary Astrophysics +1103.0501 Cosmology and Nongalactic Astrophysics +1103.0908 Phenomenology +1103.2080 Lattice +1103.2994 Quantum Gases +1103.3754 +1103.3813 Solar and Stellar Astrophysics +1103.4434 +1103.4786 Phenomenology +1103.5293 Combinatorics +1104.0264 +1104.0437 +1104.0755 Classical Analysis and ODEs +1104.1494 Popular Physics +1104.2142 Lattice +1104.2236 +1104.3051 +1104.3188 Theory +1104.3298 Strongly Correlated Electrons +1104.3714 Cosmology and Nongalactic Astrophysics +1104.4028 Theory +1104.4216 Soft Condensed Matter +1104.5262 +1105.0125 Experiment +1105.0526 +1105.1091 +1105.1584 +1105.2009 Superconductivity +1105.2445 Solar and Stellar Astrophysics +1105.4297 +1105.4782 +1105.5666 +1106.0180 +1106.1975 Computer Vision and Pattern Recognition +1106.2043 +1106.2520 Instrumentation and Methods for Astrophysics +1106.3242 Networking and Internet Architecture +1106.3388 +1106.3548 Theory +1106.3851 Analysis of PDEs +1106.6062 Emerging Technologies +1106.6106 Phenomenology +1106.6130 Experiment +1106.6148 Computational Geometry +1106.6194 Logic +1106.6220 Superconductivity +1106.6281 Computation +1106.6289 Analysis of PDEs +1106.6294 Phenomenology +1107.0011 Networking and Internet Architecture +1107.0013 Data Analysis, Statistics and Probability +1107.0015 Computational Engineering, Finance, and Science +1107.0018 Artificial Intelligence +1107.0019 Artificial Intelligence +1107.0020 Artificial Intelligence +1107.0021 Artificial Intelligence +1107.0022 Computer Science and Game Theory +1107.0023 Artificial Intelligence +1107.0024 Artificial Intelligence +1107.0025 Artificial Intelligence +1107.0026 Artificial Intelligence +1107.0027 Artificial Intelligence +1107.0028 Computer Science and Game Theory +1107.0029 Information Retrieval +1107.0030 Artificial Intelligence +1107.0031 Artificial Intelligence +1107.0033 Multiagent Systems +1107.0034 Artificial Intelligence +1107.0035 Artificial Intelligence +1107.0036 Artificial Intelligence +1107.0037 Artificial Intelligence +1107.0038 Artificial Intelligence +1107.0040 Artificial Intelligence +1107.0041 Artificial Intelligence +1107.0042 Artificial Intelligence +1107.0043 Artificial Intelligence +1107.0044 Artificial Intelligence +1107.0045 Artificial Intelligence +1107.0046 Artificial Intelligence +1107.0047 Artificial Intelligence +1107.0048 Artificial Intelligence +1107.0050 Artificial Intelligence +1107.0051 Artificial Intelligence +1107.0052 Artificial Intelligence +1107.0054 Artificial Intelligence +1107.0055 Artificial Intelligence +1107.0061 Superconductivity +1107.0063 Logic in Computer Science +1107.0064 Programming Languages +1107.0065 Logic in Computer Science +1107.0066 Software Engineering +1107.0068 Software Engineering +1107.0073 Superconductivity +1107.0074 Instrumentation and Detectors +1107.0075 Mesoscale and Nanoscale Physics +1107.0079 Probability +1107.0082 Probability +1107.0085 Materials Science +1107.0089 Systems and Control +1107.0093 +1107.0102 Complex Variables +1107.0105 Quantum Gases +1107.0111 Materials Science +1107.0112 Dynamical Systems +1107.0117 High Energy Astrophysical Phenomena +1107.0123 Dynamical Systems +1107.0124 Optimization and Control +1107.0128 Experiment +1107.0139 Fluid Dynamics +1107.0140 Metric Geometry +1107.0145 Probability +1107.0148 Astrophysics of Galaxies +1107.0152 Analysis of PDEs +1107.0156 Phenomenology +1107.0160 Materials Science +1107.0170 General Finance +1107.0176 Discrete Mathematics +1107.0188 Number Theory +1107.0189 Methodology +1107.0190 Optimization and Control +1107.0192 Systems and Control +1107.0194 Artificial Intelligence +1107.0196 Mesoscale and Nanoscale Physics +1107.0202 Other Statistics +1107.0205 Earth and Planetary Astrophysics +1107.0208 Probability +1107.0210 Instrumentation and Methods for Astrophysics +1107.0218 Probability +1107.0223 Numerical Analysis +1107.0225 +1107.0227 Phenomenology +1107.0231 High Energy Astrophysical Phenomena +1107.0232 Algebraic Topology +1107.0234 Distributed, Parallel, and Cluster Computing +1107.0235 Algebraic Topology +1107.0239 Experiment +1107.0240 Geometric Topology +1107.0241 Phenomenology +1107.0249 +1107.0253 Optics +1107.0261 Molecular Networks +1107.0266 Phenomenology +1107.0270 Quantitative Methods +1107.0272 Theory +1107.0277 Solar and Stellar Astrophysics +1107.0278 Logic in Computer Science +1107.0281 Phenomenology +1107.0287 Accelerator Physics +1107.0289 Statistical Mechanics +1107.0293 Experiment +1107.0296 Representation Theory +1107.0297 Solar and Stellar Astrophysics +1107.0300 Information Theory +1107.0301 Soft Condensed Matter +1107.0302 +1107.0308 Statistical Mechanics +1107.0313 Biomolecules +cond-mat/0601330 Statistical Mechanics +cond-mat/9705027 Statistical Mechanics +gr-qc/9801062 +hep-ph/9605259 Phenomenology +math/0411133 Geometric Topology +math/0603074 Geometric Topology +math/0701342 Geometric Topology +quant-ph/0205028 +quant-ph/0409086 +0704.0771 +0704.2633 Probability +0705.0477 Phenomenology +0810.1203 Theory +0810.4898 Combinatorics +0812.4186 Differential Geometry +0902.1011 Differential Geometry +0904.0272 Strongly Correlated Electrons +0907.3366 Mesoscale and Nanoscale Physics +0907.5013 Dynamical Systems +0911.2291 Disordered Systems and Neural Networks +1001.1515 Spectral Theory +1002.4910 Rings and Algebras +1003.1673 Fluid Dynamics +1004.2058 Differential Geometry +1004.5111 Phenomenology +1007.3015 Quantum Algebra +1007.4556 High Energy Astrophysical Phenomena +1007.5067 Superconductivity +1008.0797 Differential Geometry +1008.4223 Cosmology and Nongalactic Astrophysics +1009.1668 +1009.1819 Soft Condensed Matter +1009.3425 Superconductivity +1009.3594 Data Structures and Algorithms +1010.2118 Algebraic Geometry +1010.3061 Materials Science +1010.4624 Lattice +1010.5118 +1011.1617 Mesoscale and Nanoscale Physics +1011.2765 Superconductivity +1011.2828 Phenomenology +1011.2990 Cosmology and Nongalactic Astrophysics +1011.4209 Lattice +1011.4355 Soft Condensed Matter +1011.5625 Materials Science +1011.6399 Materials Science +1012.0191 Number Theory +1012.0895 Materials Science +1012.1995 Cosmology and Nongalactic Astrophysics +1012.2618 +1012.2879 +1012.3776 Phenomenology +1012.4448 Mesoscale and Nanoscale Physics +1012.5239 Cosmology and Nongalactic Astrophysics +1101.0634 Phenomenology +1101.0724 Theory +1101.3216 Theory +1101.3870 Phenomenology +1101.4979 Analysis of PDEs +1101.5421 Combinatorics +1102.1073 Theory +1102.2238 Theory +1102.3841 Mesoscale and Nanoscale Physics +1102.5037 Superconductivity +1102.5107 Phenomenology +1103.1316 Lattice +1103.1703 +1103.1708 Strongly Correlated Electrons +1103.3383 Phenomenology +1103.4799 Phenomenology +1103.5077 +1103.5235 Dynamical Systems +1103.5329 +1103.5737 Phenomenology +1104.0144 Theory +1104.1392 Theory +1104.1465 Phenomenology +1104.1834 Statistical Mechanics +1104.1918 Phenomenology +1104.1961 Dynamical Systems +1104.2281 Analysis of PDEs +1104.3058 Strongly Correlated Electrons +1104.3180 +1104.3204 Differential Geometry +1104.3364 Phenomenology +1104.3485 Chemical Physics +1104.4751 +1104.4802 +1104.4989 Computer Vision and Pattern Recognition +1104.5463 Strongly Correlated Electrons +1104.5512 Phenomenology +1104.5566 Artificial Intelligence +1105.0690 Experiment +1105.1132 Phenomenology +1105.1249 Phenomenology +1105.1379 Phenomenology +1105.1800 Theory +1105.2068 Solar and Stellar Astrophysics +1105.2281 Experiment +1105.2304 +1105.3361 Machine Learning +1105.3724 +1105.3861 +1105.4194 +1105.4205 Theory +1105.4635 Phenomenology +1105.5007 Cosmology and Nongalactic Astrophysics +1105.5111 Theory +1105.5837 Phenomenology +1105.6180 Experiment +1105.6281 Superconductivity +1105.6373 Phenomenology +1106.0024 Theory +1106.0031 Theory +1106.0331 +1106.0803 Physics and Society +1106.1210 High Energy Astrophysical Phenomena +1106.1251 +1106.1643 Cosmology and Nongalactic Astrophysics +1106.2618 Operator Algebras +1106.2736 Solar and Stellar Astrophysics +1106.2852 +1106.3101 Phenomenology +1106.3818 Rings and Algebras +1106.4191 Theory +1106.4329 Theory +1106.5211 Phenomenology +1107.0113 Mesoscale and Nanoscale Physics +1107.2339 Strongly Correlated Electrons +1107.2467 Strongly Correlated Electrons +1107.2765 Superconductivity +1107.3050 Combinatorics +1107.3645 Group Theory +1107.5356 Statistics Theory +1108.1921 +1108.1933 Information Theory +1108.2166 Solar and Stellar Astrophysics +1108.2268 Cosmology and Nongalactic Astrophysics +1108.2285 +1108.2286 Complex Variables +1108.2288 Data Analysis, Statistics and Probability +1108.2289 Group Theory +1108.2296 +1108.2299 Algebraic Geometry +1108.2300 +1108.2301 +1108.2312 Superconductivity +1108.2313 General Physics +1108.2314 Exactly Solvable and Integrable Systems +1108.2317 Strongly Correlated Electrons +1108.2319 Classical Analysis and ODEs +1108.2329 Materials Science +1108.2330 Quantum Gases +1108.2331 Materials Science +1108.2334 Applications +1108.2337 Optics +1108.2338 Systems and Control +1108.2348 Logic in Computer Science +1108.2349 Software Engineering +1108.2350 Software Engineering +1108.2351 Atmospheric and Oceanic Physics +1108.2356 Methodology +1108.2357 Software Engineering +1108.2358 Logic in Computer Science +1108.2359 Logic in Computer Science +1108.2360 Programming Languages +1108.2361 Number Theory +1108.2363 Differential Geometry +1108.2365 Numerical Analysis +1108.2367 Materials Science +1108.2368 +1108.2376 Adaptation and Self-Organizing Systems +1108.2379 Statistical Mechanics +1108.2383 Complex Variables +1108.2385 Computational Complexity +1108.2386 Materials Science +1108.2389 Other Computer Science +1108.2395 Materials Science +1108.2397 Group Theory +1108.2399 Materials Science +1108.2403 Group Theory +1108.2415 Rings and Algebras +1108.2418 Metric Geometry +1108.2427 Formal Languages and Automata Theory +1108.2429 History and Overview +1108.2437 Representation Theory +1108.2438 Materials Science +1108.2451 Rings and Algebras +1108.2454 Spectral Theory +1108.2455 Physics and Society +1108.2461 Strongly Correlated Electrons +1108.2464 Data Structures and Algorithms +1108.2479 +1108.2480 General Mathematics +1108.2482 Cryptography and Security +1108.2484 Combinatorics +1108.2489 Information Theory +1108.2499 Logic +1108.2500 Solar and Stellar Astrophysics +astro-ph/0507231 +cond-mat/0006214 Statistical Mechanics +cond-mat/0106340 +cond-mat/0202238 Soft Condensed Matter +cond-mat/0209204 Statistical Mechanics +cond-mat/0209205 Statistical Mechanics +cond-mat/0402579 Statistical Mechanics +cond-mat/0407381 Statistical Mechanics +cond-mat/9606214 +cond-mat/9807017 Disordered Systems and Neural Networks +cond-mat/9902131 Statistical Mechanics +gr-qc/0312032 +gr-qc/0405102 +hep-lat/9408021 Lattice +hep-ph/0302058 Phenomenology +hep-ph/0608256 Phenomenology +hep-ph/9803226 Phenomenology +hep-th/0107108 Theory +hep-th/0111057 Theory +hep-th/9301037 Theory +hep-th/9407078 Theory +hep-th/9407152 Theory +hep-th/9506015 Theory +hep-th/9508030 Theory +hep-th/9509135 Theory +hep-th/9509138 Theory +hep-th/9701084 Theory +hep-th/9702017 Theory +hep-th/9707147 Theory +hep-th/9907064 Theory +math-ph/0406011 +math/0001101 Geometric Topology +math/0107049 Geometric Topology +math/9807032 Geometric Topology +nucl-th/0004039 +nucl-th/0102044 +nucl-th/0306020 +nucl-th/9310015 +nucl-th/9906097 +0710.3244 Commutative Algebra +0710.3271 Commutative Algebra +0802.2772 Commutative Algebra +0804.1601 Statistical Mechanics +0805.0721 Optimization and Control +0809.3756 Mesoscale and Nanoscale Physics +0810.1299 +0910.5873 Plasma Physics +0911.1497 Statistics Theory +0912.1068 Combinatorics +0912.1265 Superconductivity +1001.1783 Number Theory +1002.3833 Functional Analysis +1003.3783 Number Theory +1005.3513 Soft Condensed Matter +1006.0446 Combinatorics +1007.1684 Machine Learning +1008.0427 Quantitative Methods +1009.2412 Probability +1009.6081 +1010.4866 Probability +1010.6115 Differential Geometry +1011.1675 Lattice +1012.0290 +1012.1069 Other Statistics +1101.0526 Number Theory +1101.0590 Theory +1101.1964 Cosmology and Nongalactic Astrophysics +1102.1362 Cosmology and Nongalactic Astrophysics +1102.3397 Strongly Correlated Electrons +1102.3476 Atomic and Molecular Clusters +1103.2101 Superconductivity +1103.6015 Analysis of PDEs +1103.6069 Group Theory +1104.1836 +1104.1839 +1104.1840 +1104.1841 +1104.5553 Information Theory +1105.1454 +1105.2014 Atomic Physics +1105.2379 Mesoscale and Nanoscale Physics +1105.2589 Strongly Correlated Electrons +1105.5175 Probability +1105.5258 +1106.0984 Algebraic Geometry +1106.1067 Geometric Topology +1106.1618 Superconductivity +1106.2432 Solar and Stellar Astrophysics +1106.4834 Phenomenology +1107.0268 Artificial Intelligence +1107.0535 Strongly Correlated Electrons +1107.3012 Strongly Correlated Electrons +1107.3412 Phenomenology +1107.4399 Strongly Correlated Electrons +1107.5874 +1107.5875 +1108.0319 Strongly Correlated Electrons +1108.1379 Atomic Physics +1108.2525 Phenomenology +1108.3314 Phenomenology +1108.4391 Combinatorics +1109.0412 Strongly Correlated Electrons +1109.1671 Superconductivity +1109.1980 Strongly Correlated Electrons +1109.3112 Superconductivity +1109.3942 Differential Geometry +1109.4166 Computation +1109.5516 +1109.6134 +1109.6136 +1109.6139 +1109.6143 +1109.6417 Quantum Gases +1109.6771 +1109.6784 +1109.6785 +1110.0537 Optics +1110.0541 Computation +1110.5375 Populations and Evolution +1110.5633 Quantum Gases +1110.6427 Statistics Theory +1110.6844 Solar and Stellar Astrophysics +1111.1006 Cosmology and Nongalactic Astrophysics +1111.1588 Phenomenology +1111.1914 Strongly Correlated Electrons +1111.2201 Quantum Gases +1111.6510 General Physics +1111.7007 Instrumentation and Methods for Astrophysics +1112.0057 Information Theory +1112.1125 Learning +1112.1940 Analysis of PDEs +1112.2348 Number Theory +1112.2394 Logic in Computer Science +1112.2426 Quantum Algebra +1112.2558 Physics and Society +1112.2689 Phenomenology +1112.2699 Other Computer Science +1112.2720 Quantitative Methods +1112.2723 Information Theory +1112.2733 Chemical Physics +1112.2735 Geometric Topology +1112.2742 Probability +1112.2749 Portfolio Management +1112.2750 Solar and Stellar Astrophysics +1112.2755 Social and Information Networks +1112.2758 Cosmology and Nongalactic Astrophysics +1112.2763 Statistical Mechanics +1112.2765 Fluid Dynamics +1112.2768 Probability +1112.2769 Operator Algebras +1112.2774 Social and Information Networks +1112.2775 Instrumentation and Methods for Astrophysics +1112.2777 Mesoscale and Nanoscale Physics +1112.2778 Probability +1112.2779 Instrumentation and Methods for Astrophysics +1112.2780 Differential Geometry +1112.2781 Differential Geometry +1112.2787 Instrumentation and Methods for Astrophysics +1112.2788 Instrumentation and Methods for Astrophysics +1112.2789 Instrumentation and Methods for Astrophysics +1112.2791 Information Theory +1112.2792 Distributed, Parallel, and Cluster Computing +1112.2796 Fluid Dynamics +1112.2797 Optimization and Control +1112.2800 Phenomenology +1112.2804 +1112.2809 Multimedia +1112.2810 Information Theory +1112.2815 Statistics Theory +1112.2820 Number Theory +1112.2822 Performance +1112.2829 +1112.2831 Theory +1112.2836 +1112.2838 Logic +1112.2841 Superconductivity +1112.2844 +1112.2847 Superconductivity +1112.2850 +1112.2853 Experiment +1112.2855 Statistics Theory +1112.2856 +1112.2867 General Finance +1112.2868 Populations and Evolution +1112.2870 Adaptation and Self-Organizing Systems +1112.2875 Commutative Algebra +1112.2880 Superconductivity +1112.2881 Differential Geometry +1112.2887 Classical Analysis and ODEs +1112.2888 Probability +1112.2889 Risk Management +1112.2900 +1112.2902 Instrumentation and Methods for Astrophysics +1112.2903 Computer Vision and Pattern Recognition +1112.2907 Phenomenology +1112.2914 General Physics +1112.2916 Algebraic Geometry +1112.2918 Solar and Stellar Astrophysics +1112.2920 Analysis of PDEs +1112.2921 Solar and Stellar Astrophysics +1112.2922 Solar and Stellar Astrophysics +1112.2925 Solar and Stellar Astrophysics +1112.2928 Instrumentation and Detectors +1112.2929 Solar and Stellar Astrophysics +1112.2931 Lattice +1112.2933 Populations and Evolution +1112.2934 Theory +1112.2937 Complex Variables +1112.2950 Logic in Computer Science +1112.2951 Differential Geometry +1112.2952 Pricing of Securities +1112.2953 Phenomenology +1112.2959 Number Theory +1112.2974 Computational Complexity +1112.2979 Lattice +1112.2989 Statistical Mechanics +1112.2991 Number Theory +1112.2992 Rings and Algebras +1112.2998 Analysis of PDEs +1112.3000 Group Theory +1112.3001 Spectral Theory +1112.3004 Instrumentation and Methods for Astrophysics +1112.3005 General Physics +1112.3012 Pricing of Securities +1112.3015 Combinatorics +1112.3018 Databases +1112.3023 +1112.3025 Physics and Society +1112.3027 Differential Geometry +1112.3031 Analysis of PDEs +alg-geom/9708020 Algebraic Geometry +cond-mat/0601001 Strongly Correlated Electrons +hep-ph/9711498 Phenomenology +math/0012264 Rings and Algebras +math/0104203 Algebraic Geometry +math/0110015 Algebraic Geometry +math/0209061 Algebraic Geometry +math/0411570 Combinatorics +math/0502541 Combinatorics +math/0505443 Optimization and Control +math/0505570 Rings and Algebras +math/0607524 Optimization and Control +math/0703462 Algebraic Geometry +math/9806147 Algebraic Geometry +physics/0308048 Plasma Physics +physics/0511071 Optics +0705.1408 Strongly Correlated Electrons +0706.2248 Superconductivity +0804.4118 +0807.0714 Geometric Topology +0807.2751 Mesoscale and Nanoscale Physics +0808.1617 Classical Analysis and ODEs +0809.4030 Functional Analysis +0812.0282 Mesoscale and Nanoscale Physics +0907.2367 Algebraic Topology +0908.3662 Quantum Algebra +0912.1429 Probability +1001.3873 Strongly Correlated Electrons +1001.5117 Earth and Planetary Astrophysics +1002.1855 Soft Condensed Matter +1003.1185 Mesoscale and Nanoscale Physics +1004.0674 Differential Geometry +1004.2701 Soft Condensed Matter +1005.0681 Group Theory +1006.3984 Number Theory +1007.3581 Cosmology and Nongalactic Astrophysics +1007.3787 Cosmology and Nongalactic Astrophysics +1007.4038 +1008.0514 Quantum Gases +1008.1790 Algebraic Geometry +1009.4375 Combinatorics +1009.4845 Operator Algebras +1010.0220 Superconductivity +1010.3667 Complex Variables +1010.5339 Soft Condensed Matter +1011.2594 Exactly Solvable and Integrable Systems +1011.5959 Optics +1012.2356 Soft Condensed Matter +1012.2943 Analysis of PDEs +1012.5655 Mesoscale and Nanoscale Physics +1101.1181 Strongly Correlated Electrons +1101.2332 +1101.2423 Cosmology and Nongalactic Astrophysics +1101.2669 Soft Condensed Matter +1102.0412 Astrophysics of Galaxies +1102.2382 Computer Vision and Pattern Recognition +1103.0471 +1103.1404 Mesoscale and Nanoscale Physics +1103.1625 Computational Geometry +1103.1886 High Energy Astrophysical Phenomena +1103.1893 History and Overview +1103.1898 Computation and Language +1103.1904 +1103.1906 Numerical Analysis +1103.1908 Soft Condensed Matter +1103.1910 Combinatorics +1103.1920 Numerical Analysis +1103.1925 Fluid Dynamics +1103.1928 History and Philosophy of Physics +1103.1933 Quantum Gases +1103.1934 Combinatorics +1103.1935 Functional Analysis +1103.1937 Classical Analysis and ODEs +1103.1947 Logic +1103.1949 Numerical Analysis +1103.1952 Computer Vision and Pattern Recognition +1103.1959 Dynamical Systems +1103.1963 Applications +1103.1965 Classical Analysis and ODEs +1103.1966 Statistics Theory +1103.1968 Classical Analysis and ODEs +1103.1970 Dynamical Systems +1103.1971 Biological Physics +1103.1974 History and Philosophy of Physics +1103.1977 Digital Libraries +1103.1981 Instrumentation and Detectors +1103.1982 Instrumentation and Methods for Astrophysics +1103.1988 Probability +1103.1996 Commutative Algebra +1103.1998 Probability +1103.2000 Probability +1103.2002 Probability +1103.2004 Solar and Stellar Astrophysics +1103.2010 Solar and Stellar Astrophysics +1103.2011 Probability +1103.2022 Instrumentation and Methods for Astrophysics +1103.2027 Programming Languages +1103.2028 Number Theory +1103.2038 Differential Geometry +1103.2040 Algebraic Geometry +1103.2043 Number Theory +1103.2048 +1103.2051 Group Theory +1103.2062 Geometric Topology +1103.2063 Human-Computer Interaction +1103.2073 Complex Variables +1103.2074 Strongly Correlated Electrons +1103.2076 Number Theory +1103.2078 Probability +1103.2079 Probability +1103.2087 Combinatorics +1103.2090 Functional Analysis +1103.2091 Artificial Intelligence +1103.2093 Algebraic Geometry +1103.2106 Number Theory +1103.2110 Neural and Evolutionary Computing +1103.2113 Dynamical Systems +1103.2119 Chaotic Dynamics +cond-mat/0206572 +cond-mat/0303132 +cond-mat/0303134 +cond-mat/0602518 Mesoscale and Nanoscale Physics +math/0107182 Algebraic Geometry +math/0506379 General Topology +math/0604609 Commutative Algebra +physics/0511080 Computational Physics +0708.3572 Phenomenology +0712.1351 Physics and Society +0802.3891 Cellular Automata and Lattice Gases +0803.0959 Biological Physics +0807.4042 Populations and Evolution +0809.3041 Fluid Dynamics +0902.0105 +0904.0066 +0906.0213 +0906.3531 Solar and Stellar Astrophysics +0909.4662 Phenomenology +0910.2266 Data Analysis, Statistics and Probability +0911.2622 +1002.3450 Mesoscale and Nanoscale Physics +1002.4008 Combinatorics +1002.4892 Superconductivity +1003.0805 Instrumentation and Methods for Astrophysics +1003.2453 Exactly Solvable and Integrable Systems +1003.2661 Phenomenology +1003.5494 Phenomenology +1004.2343 +1005.0784 High Energy Astrophysical Phenomena +1005.1146 Analysis of PDEs +1006.2512 Strongly Correlated Electrons +1006.2647 Phenomenology +1006.5430 +1007.3879 Lattice +1007.4687 Theory +1007.5352 Theory +1009.0155 Experiment +1009.0591 Cosmology and Nongalactic Astrophysics +1009.0883 Atomic Physics +1009.1836 Phenomenology +1009.3789 Strongly Correlated Electrons +1009.4041 Theory +1009.5539 High Energy Astrophysical Phenomena +1010.1201 +1010.1693 Strongly Correlated Electrons +1010.1831 +1010.2458 Soft Condensed Matter +1010.3923 Theory +1011.3173 Rings and Algebras +1011.3733 Strongly Correlated Electrons +1011.4169 Geometric Topology +1012.1267 Soft Condensed Matter +1012.5834 Distributed, Parallel, and Cluster Computing +1101.0027 Mesoscale and Nanoscale Physics +1101.0055 +1101.2495 Theory +1101.3523 Dynamical Systems +1101.3966 Theory +1101.5587 Symplectic Geometry +1102.0039 Mesoscale and Nanoscale Physics +1102.0065 +1102.0797 Instrumentation and Detectors +1102.3010 +1102.3477 Lattice +1102.3551 Mesoscale and Nanoscale Physics +1102.3586 Theory +1102.4508 Biological Physics +1102.5173 Geophysics +1103.0107 Classical Analysis and ODEs +1103.0324 Complex Variables +1103.1467 Optics +1103.3542 Cosmology and Nongalactic Astrophysics +1103.3647 High Energy Astrophysical Phenomena +1103.4170 Phenomenology +1103.4658 High Energy Astrophysical Phenomena +1103.4912 Phenomenology +1103.5955 Group Theory +1104.0723 +1104.0986 Mesoscale and Nanoscale Physics +1104.4274 Instrumentation and Detectors +1105.0488 Cosmology and Nongalactic Astrophysics +1105.1555 Phenomenology +1105.4152 Earth and Planetary Astrophysics +1105.4236 Optics +1105.4281 Materials Science +1105.4831 +1105.5976 Operator Algebras +1106.0892 Combinatorics +1106.1216 Learning +1106.2020 Instrumentation and Methods for Astrophysics +1106.2348 Commutative Algebra +1106.2524 Statistical Mechanics +1106.2787 Soft Condensed Matter +1106.2802 Materials Science +1106.2817 Other Condensed Matter +1106.2825 Commutative Algebra +1106.2830 Instrumentation and Methods for Astrophysics +1106.2831 +1106.2833 Mesoscale and Nanoscale Physics +1106.2840 Solar and Stellar Astrophysics +1106.2842 Algebraic Geometry +1106.2846 Theory +1106.2859 Algebraic Geometry +1106.2862 Strongly Correlated Electrons +1106.2866 Statistical Mechanics +1106.2868 Mesoscale and Nanoscale Physics +1106.2874 +1106.2877 Graphics +1106.2881 Methodology +1106.2882 General Finance +1106.2884 Rings and Algebras +1106.2889 Experiment +1106.2900 Algebraic Geometry +1106.2903 Dynamical Systems +1106.2904 Mesoscale and Nanoscale Physics +1106.2906 +1106.2912 Probability +1106.2915 Combinatorics +1106.2917 Functional Analysis +1106.2918 Chemical Physics +1106.2920 Statistics Theory +1106.2924 Differential Geometry +1106.2929 Strongly Correlated Electrons +1106.2932 Number Theory +1106.2934 Geometric Topology +1106.2937 Number Theory +1106.2938 Geophysics +1106.2941 Solar and Stellar Astrophysics +1106.2958 Mesoscale and Nanoscale Physics +1106.2965 Differential Geometry +1106.2976 Instrumentation and Methods for Astrophysics +1106.2977 Disordered Systems and Neural Networks +1106.2984 Cosmology and Nongalactic Astrophysics +1106.2985 Analysis of PDEs +1106.2987 Combinatorics +1106.2988 Representation Theory +1106.2998 Theory +1106.3001 Algebraic Geometry +1106.3002 Optics +1106.3013 Combinatorics +1106.3019 +1106.3029 Theory +1106.3037 Data Structures and Algorithms +1106.3041 Combinatorics +1106.3046 Pattern Formation and Solitons +1106.3049 +1106.3053 Biological Physics +1106.3055 Experiment +1106.3057 Functional Analysis +1106.3058 Functional Analysis +1106.3063 Combinatorics +cond-mat/0310309 Strongly Correlated Electrons +cond-mat/0403239 Disordered Systems and Neural Networks +cs/0005031 Artificial Intelligence +gr-qc/9903074 +hep-ph/0010046 Phenomenology +hep-th/0412080 Theory +hep-th/9812041 Theory +math/0610832 Rings and Algebras +0704.2114 General Physics +0710.5177 General Physics +0711.0681 Plasma Physics +0801.0495 Combinatorics +0806.4405 Algebraic Topology +0806.4437 +0810.2178 +0812.0320 Data Structures and Algorithms +0812.1502 +0901.2690 Complex Variables +0905.4868 Phenomenology +0907.4528 +0908.3490 Theory +0909.0088 +0909.3875 Earth and Planetary Astrophysics +0910.4213 Probability +0912.1525 Mesoscale and Nanoscale Physics +0912.2135 +0912.2411 Phenomenology +1002.2029 General Physics +1002.5003 Analysis of PDEs +1003.1423 Dynamical Systems +1003.1579 General Physics +1003.2431 General Physics +1003.2899 General Physics +1003.2956 Differential Geometry +1003.5760 +1004.1820 General Physics +1004.1922 Complex Variables +1004.1961 Optics +1004.2555 High Energy Astrophysical Phenomena +1004.2893 Dynamical Systems +1005.4993 Cryptography and Security +1006.2751 Mesoscale and Nanoscale Physics +1006.5553 Phenomenology +1007.0195 Theory +1007.0469 Atomic Physics +1007.0479 +1007.1301 Earth and Planetary Astrophysics +1007.1560 Phenomenology +1007.1644 Theory +1007.1971 Strongly Correlated Electrons +1007.2591 Quantum Gases +1007.2720 Theory +1007.2767 Astrophysics of Galaxies +1007.3150 +1007.4025 Analysis of PDEs +1007.4546 +1007.5073 +1007.5502 Lattice +1007.5520 Phenomenology +1008.0107 +1008.0244 +1008.0654 Theory +1008.1231 +1008.1543 Statistical Mechanics +1008.2135 +1008.2198 Theory +1008.2636 Theory +1008.3550 Phenomenology +1008.4350 Theory +1008.4593 +1008.4710 Phenomenology +1008.4951 Plasma Physics +1008.5135 Theory +1008.5146 Lattice +1008.5157 Phenomenology +1008.5214 Phenomenology +1008.5215 +1009.0776 +1009.1081 Statistical Mechanics +1009.1494 Fluid Dynamics +1009.2262 Instrumentation and Detectors +1009.2629 Theory +1009.2970 Metric Geometry +1009.3159 Phenomenology +1009.3256 +1009.3549 Fluid Dynamics +1009.3903 Theory +1009.4016 +1009.4119 Statistical Mechanics +1009.4413 Phenomenology +1009.4639 Theory +1009.4644 Phenomenology +1009.4997 Theory +1009.5269 Theory +1009.5295 Phenomenology +1009.5340 Phenomenology +1009.5391 Phenomenology +1009.5906 Theory +1009.5915 Superconductivity +1009.6048 Phenomenology +1009.6074 +1009.6098 Networking and Internet Architecture +1009.6176 Theory +1010.0207 Differential Geometry +1010.0317 Theory +1010.0518 +1010.1017 Theory +1010.1149 Optimization and Control +1010.1306 Instrumentation and Detectors +1010.1716 Quantum Gases +1010.1791 Dynamical Systems +1010.2209 Phenomenology +1010.2329 Phenomenology +1010.2348 +1010.2462 Theory +1010.2567 Atomic Physics +1010.2699 Data Analysis, Statistics and Probability +1010.3019 High Energy Astrophysical Phenomena +1010.3318 Mesoscale and Nanoscale Physics +1010.3512 +1010.3872 Phenomenology +1010.3942 Theory +1010.4798 Phenomenology +1010.4954 Mesoscale and Nanoscale Physics +1010.5101 Number Theory +1010.5158 Theory +1010.5328 Theory +1010.5451 +1010.6091 Physics and Society +1011.0463 Theory +1011.1281 Strongly Correlated Electrons +1011.1342 Statistical Mechanics +1011.2540 Mesoscale and Nanoscale Physics +1011.5080 Disordered Systems and Neural Networks +1011.6426 Exactly Solvable and Integrable Systems +1011.6466 +1012.0405 +1012.2339 Statistical Mechanics +1012.3261 Materials Science +1012.3353 +1012.3630 Superconductivity +1012.4138 Disordered Systems and Neural Networks +1012.4352 Differential Geometry +1101.0374 +1101.0450 Theory +1101.0773 Theory +1101.0807 Disordered Systems and Neural Networks +1101.1471 Classical Physics +1101.2187 +1101.2993 Phenomenology +1101.3473 Superconductivity +1101.4645 High Energy Astrophysical Phenomena +1102.0097 +1102.0238 +1102.0920 Lattice +1102.2738 +1102.4812 Combinatorics +1103.0288 Materials Science +1103.0452 Phenomenology +1103.0490 Databases +1103.0777 Mesoscale and Nanoscale Physics +1103.0788 Classical Physics +1103.0790 Machine Learning +1103.0795 Information Theory +1103.0796 Analysis of PDEs +1103.0798 Analysis of PDEs +1103.0803 Astrophysics of Galaxies +1103.0804 General Topology +1103.0806 History and Philosophy of Physics +1103.0812 Programming Languages +1103.0817 Differential Geometry +1103.0818 Applications +1103.0821 Number Theory +1103.0822 Solar and Stellar Astrophysics +1103.0825 Databases +1103.0829 Multimedia +1103.0830 Probability +1103.0834 +1103.0837 Multimedia +1103.0839 Mesoscale and Nanoscale Physics +1103.0841 Adaptation and Self-Organizing Systems +1103.0842 +1103.0847 Differential Geometry +1103.0849 Differential Geometry +1103.0850 Superconductivity +1103.0853 Logic in Computer Science +1103.0854 Earth and Planetary Astrophysics +1103.0869 Dynamical Systems +1103.0870 Algebraic Geometry +1103.0877 Algebraic Geometry +1103.0879 History and Philosophy of Physics +1103.0888 Statistical Mechanics +1103.0891 +1103.0894 Trading and Market Microstructure +1103.0895 Discrete Mathematics +1103.0896 Experiment +1103.0907 Molecular Networks +1103.0916 +1103.0920 Logic in Computer Science +1103.0921 Databases +1103.0922 Disordered Systems and Neural Networks +1103.0925 Soft Condensed Matter +1103.0927 +1103.0932 Complex Variables +1103.0934 +1103.0937 Spectral Theory +1103.0941 Machine Learning +1103.0944 Group Theory +1103.0952 Phenomenology +1103.0954 Phenomenology +1103.0964 Classical Analysis and ODEs +1103.0966 Networking and Internet Architecture +1103.0967 Logic in Computer Science +1103.0971 +1103.0972 Statistical Mechanics +1103.0973 Physics and Society +1103.0974 Theory +cond-mat/0004099 Disordered Systems and Neural Networks +cond-mat/0004101 Soft Condensed Matter +cond-mat/0402391 Disordered Systems and Neural Networks +cond-mat/9911165 Mesoscale and Nanoscale Physics +cs/0703019 Computer Science and Game Theory +hep-th/0601225 Theory +math/0007185 Geometric Topology +quant-ph/0703159 +0705.3062 Exactly Solvable and Integrable Systems +0711.2777 +0712.2766 +0806.1117 Differential Geometry +0806.1434 +0807.2940 Operator Algebras +0807.3849 Strongly Correlated Electrons +0808.2890 Mesoscale and Nanoscale Physics +0809.1404 Differential Geometry +0810.1160 +0810.2158 Algebraic Geometry +0811.3805 Materials Science +0812.2660 Group Theory +0904.2095 Differential Geometry +0904.4139 Methodology +0904.4589 +0905.0668 Methodology +0905.1642 Number Theory +0905.1841 Group Theory +0905.2008 Mesoscale and Nanoscale Physics +0905.2154 Mesoscale and Nanoscale Physics +0905.2194 Materials Science +0907.1881 Mesoscale and Nanoscale Physics +0907.3736 Strongly Correlated Electrons +0907.4296 Formal Languages and Automata Theory +0908.1224 Materials Science +0909.0356 Group Theory +0909.4390 Phenomenology +0910.2800 +0910.4820 Strongly Correlated Electrons +0911.4310 +0912.4986 Instrumentation and Methods for Astrophysics +1001.1436 +1001.3770 General Physics +1003.0930 Metric Geometry +1003.3529 Classical Analysis and ODEs +1004.3938 Statistics Theory +1005.3325 Methodology +1006.0083 Materials Science +1006.0691 Number Theory +1007.2680 Geometric Topology +1007.3114 +1007.4112 Information Theory +1008.2592 Differential Geometry +1008.3097 Differential Geometry +1008.5387 Artificial Intelligence +1009.0571 Machine Learning +1009.0888 Methodology +1009.2031 Methodology +1009.4966 Commutative Algebra +1010.1074 +1010.1972 Geometric Topology +1011.1991 Analysis of PDEs +1011.6338 +1012.1410 Mesoscale and Nanoscale Physics +1101.0848 Mesoscale and Nanoscale Physics +1101.3029 Number Theory +1102.1371 Mesoscale and Nanoscale Physics +1102.2812 Strongly Correlated Electrons +1102.2932 Computational Complexity +1102.3239 Strongly Correlated Electrons +1102.4788 Number Theory +1103.2201 +1103.2840 Cosmology and Nongalactic Astrophysics +1103.3467 Lattice +1104.4345 Functional Analysis +1104.4944 Materials Science +1105.1117 Quantitative Methods +1105.5979 Data Structures and Algorithms +1105.6153 +1106.0006 Quantum Gases +1106.0276 Mesoscale and Nanoscale Physics +1106.2227 Functional Analysis +1106.2382 Cosmology and Nongalactic Astrophysics +1106.4113 Mesoscale and Nanoscale Physics +1106.4257 +1106.5215 Soft Condensed Matter +1106.5353 Combinatorics +1106.5676 +1107.0309 Mesoscale and Nanoscale Physics +1107.1090 +1107.2485 General Physics +1107.2889 +1107.2989 +1107.3814 Phenomenology +1107.4338 Mesoscale and Nanoscale Physics +1107.4779 Mesoscale and Nanoscale Physics +1107.4845 Quantum Gases +1107.5094 Commutative Algebra +1107.5509 +1108.0116 +1108.0614 Phenomenology +1108.0937 Lattice +1108.1769 Phenomenology +1108.1818 Logic +1108.2277 +1108.2483 Optics +1108.3036 Strongly Correlated Electrons +1108.3064 +1108.4337 Phenomenology +1108.4553 Soft Condensed Matter +1108.4780 Materials Science +1108.4800 Soft Condensed Matter +1108.5444 Statistical Mechanics +1109.0263 K-Theory and Homology +1109.0956 Number Theory +1109.1445 Mesoscale and Nanoscale Physics +1109.2215 Social and Information Networks +1109.2607 Statistical Mechanics +1109.2680 Theory +1109.4001 Phenomenology +1109.4266 Theory +1109.5163 Molecular Networks +1109.5354 Theory +1109.6165 High Energy Astrophysical Phenomena +1109.6170 Theory +1109.6317 +1110.0200 Computational Complexity +1110.0600 Dynamical Systems +1110.0877 Strongly Correlated Electrons +1110.1095 Commutative Algebra +1110.1924 Solar and Stellar Astrophysics +1110.2100 Solar and Stellar Astrophysics +1110.2160 Phenomenology +1110.2333 Commutative Algebra +1110.2685 General Physics +1110.3686 Strongly Correlated Electrons +1110.3823 Fluid Dynamics +1110.4151 Phenomenology +1110.4579 Instrumentation and Methods for Astrophysics +1110.4963 Optics +1110.5494 Lattice +1110.5622 Biomolecules +1110.6149 Lattice +1110.6437 Data Analysis, Statistics and Probability +1110.6549 Analysis of PDEs +1110.6779 Combinatorics +1110.6814 Superconductivity +1111.0118 Analysis of PDEs +1111.0467 +1111.1900 Geometric Topology +1111.1922 General Physics +1111.2358 +1111.2450 Probability +1111.2647 +1111.3218 Classical Analysis and ODEs +1111.4053 Lattice +1111.4279 Hardware Architecture +1111.4289 Computational Physics +1111.4491 +1111.4494 Methodology +1111.4497 Experiment +1111.4498 Experiment +1111.4499 Distributed, Parallel, and Cluster Computing +1111.4501 +1111.4502 Optics +1111.4503 Social and Information Networks +1111.4504 Computer Science and Game Theory +1111.4511 Networking and Internet Architecture +1111.4512 Group Theory +1111.4528 Experiment +1111.4531 Optics +1111.4537 Functional Analysis +1111.4542 Statistics Theory +1111.4543 Representation Theory +1111.4545 Cryptography and Security +1111.4549 +1111.4551 Statistical Mechanics +1111.4553 Theory +1111.4557 +1111.4558 Materials Science +1111.4561 Materials Science +1111.4562 History and Philosophy of Physics +1111.4564 Methodology +1111.4567 Algebraic Geometry +1111.4573 Spectral Theory +1111.4574 Mesoscale and Nanoscale Physics +1111.4579 Populations and Evolution +1111.4580 Information Theory +1111.4582 Probability +1111.4584 +1111.4591 Probability +1111.4592 Complex Variables +1111.4593 Probability +1111.4600 Discrete Mathematics +1111.4607 +1111.4608 Statistical Mechanics +1111.4610 Atmospheric and Oceanic Physics +1111.4616 Differential Geometry +1111.4623 History and Philosophy of Physics +1111.4625 Mesoscale and Nanoscale Physics +1111.4628 +1111.4631 Rings and Algebras +1111.4635 Cryptography and Security +1111.4638 Plasma Physics +1111.4645 Social and Information Networks +1111.4648 Number Theory +1111.4650 Social and Information Networks +1111.4653 Analysis of PDEs +1111.4654 Computer Vision and Pattern Recognition +1111.4655 Optimization and Control +1111.4658 Classical Analysis and ODEs +1111.4659 Cosmology and Nongalactic Astrophysics +1111.4660 Classical Analysis and ODEs +1111.4665 Group Theory +1111.4672 Lattice +1111.4673 Quantum Algebra +1111.4685 K-Theory and Homology +1111.4692 Computers and Society +1111.4693 +1111.4694 Cosmology and Nongalactic Astrophysics +1111.4697 Rings and Algebras +1111.4698 +1111.4699 Materials Science +1111.4707 Algebraic Geometry +1111.4709 Algebraic Topology +1111.4711 High Energy Astrophysical Phenomena +1111.4712 Probability +1111.4713 +1111.4714 Functional Analysis +1111.4715 Differential Geometry +1111.4720 Theory +1111.4723 Combinatorics +1111.4727 Representation Theory +1111.4728 Probability +1111.4733 Exactly Solvable and Integrable Systems +1111.4734 +1111.4736 Software Engineering +1111.4737 Programming Languages +1111.4738 Software Engineering +1111.4739 Software Engineering +1111.4740 Software Engineering +1111.4741 Software Engineering +1111.4742 Programming Languages +1111.4743 Software Engineering +1111.4744 Software Engineering +1111.4745 Software Engineering +1111.4746 Software Engineering +1111.4747 Software Engineering +1111.4748 Software Engineering +1111.4749 Software Engineering +1111.4750 Programming Languages +1111.4751 Programming Languages +1111.4752 Software Engineering +1111.4753 Software Engineering +1111.4754 Software Engineering +1111.4755 Programming Languages +1111.4756 Software Engineering +1111.4757 Programming Languages +1111.4758 Software Engineering +1111.4761 Software Engineering +1111.4762 Software Engineering +1111.4763 Software Engineering +1111.4764 Software Engineering +1111.4767 Optimization and Control +1111.4768 Information Theory +1111.4779 Biomolecules +1111.4780 Materials Science +1111.4785 Molecular Networks +1111.4790 +1111.4791 Quantum Algebra +1111.4799 Number Theory +1111.4800 Computer Vision and Pattern Recognition +1111.4802 Optimization and Control +1111.4805 Quantum Algebra +1111.4810 Phenomenology +1111.4816 +1111.4819 Networking and Internet Architecture +1111.4820 Phenomenology +1111.4821 Statistics Theory +1111.4824 +1111.4826 Statistical Mechanics +1111.4831 Information Theory +1111.4832 Lattice +1111.4838 Algebraic Geometry +1111.4850 Strongly Correlated Electrons +1111.4855 Strongly Correlated Electrons +1111.4859 Solar and Stellar Astrophysics +1111.4860 Optics +1111.4869 Probability +1111.4872 Computer Science and Game Theory +1111.4874 Strongly Correlated Electrons +1111.4876 Lattice +1111.4877 Symbolic Computation +1111.4880 Classical Analysis and ODEs +1111.4887 Mesoscale and Nanoscale Physics +1111.4888 Statistical Mechanics +1111.4889 Lattice +1111.4890 Instrumentation and Methods for Astrophysics +1111.4894 Mesoscale and Nanoscale Physics +1111.4897 Accelerator Physics +1111.4898 Social and Information Networks +1111.4900 Numerical Analysis +1111.4904 Phenomenology +1111.4914 Algebraic Geometry +1111.4919 Earth and Planetary Astrophysics +1111.4924 Geophysics +1111.4932 Optics +1111.4936 Astrophysics of Galaxies +1111.4939 Mesoscale and Nanoscale Physics +1111.4941 Solar and Stellar Astrophysics +1111.4942 Computation +1111.4943 +1111.4945 Dynamical Systems +1111.4954 Methodology +1111.4959 Strongly Correlated Electrons +1111.4960 High Energy Astrophysical Phenomena +1111.4961 Astrophysics of Galaxies +1111.4967 Analysis of PDEs +1111.4969 Networking and Internet Architecture +1111.4971 Accelerator Physics +1111.4974 Algebraic Geometry +1111.4977 Combinatorics +1111.4981 Differential Geometry +1111.4982 +1111.4989 Combinatorics +1111.4995 Dynamical Systems +1111.4998 +1111.5002 Software Engineering +1111.5004 Differential Geometry +1111.5007 Software Engineering +astro-ph/0511183 +cond-mat/0508118 Materials Science +cond-mat/0604158 Materials Science +cond-mat/9802046 +cs/0611011 Learning +gr-qc/9911111 +math-ph/0603048 +math/0510031 Differential Geometry +math/0511522 Statistics Theory +math/0604130 Differential Geometry +physics/0512244 Atomic Physics +quant-ph/0605131 +0709.1218 Phenomenology +0710.5071 +0712.2858 Phenomenology +0804.1985 Instrumentation and Detectors +0806.4349 Theory +0810.1096 Theory +0810.5216 Strongly Correlated Electrons +0810.5765 Phenomenology +0812.2010 Rings and Algebras +0812.3215 Phenomenology +0812.3811 Soft Condensed Matter +0901.2910 Classical Analysis and ODEs +0901.4409 Materials Science +0905.0547 +0905.3623 Disordered Systems and Neural Networks +0906.0582 Theory +0906.1253 Rings and Algebras +0906.3353 Astrophysics of Galaxies +0907.0859 Phenomenology +0909.2849 Data Structures and Algorithms +0909.5289 Statistics Theory +0909.5593 Phenomenology +0910.0936 Statistics Theory +0910.1017 Functional Analysis +0910.1488 Theory +0910.2362 Plasma Physics +0910.4068 Phenomenology +0910.5429 +0910.5928 Earth and Planetary Astrophysics +0911.0557 Theory +0911.0590 Number Theory +0911.2645 +0911.4891 Astrophysics of Galaxies +0912.0158 Phenomenology +0912.0616 Theory +0912.4912 Theory +1001.0359 +1001.0509 Numerical Analysis +1001.0541 +1001.1155 Theory +1001.4963 Materials Science +1002.0171 Strongly Correlated Electrons +1002.1302 Materials Science +1002.4147 Functional Analysis +1002.5017 Theory +1003.0231 Phenomenology +1003.2575 High Energy Astrophysical Phenomena +1003.2663 Superconductivity +1003.4223 +1003.5630 Statistical Mechanics +1004.1092 Phenomenology +1004.1201 Theory +1004.1335 Statistical Mechanics +1004.2591 Phenomenology +1004.4018 +1004.5018 +1005.0433 Cosmology and Nongalactic Astrophysics +1005.0628 Phenomenology +1005.1176 Phenomenology +1005.1291 Theory +1005.1402 Differential Geometry +1005.1727 Analysis of PDEs +1005.2953 +1005.3254 +1005.3778 +1005.4000 +1005.5027 Mesoscale and Nanoscale Physics +1005.5030 +1005.5203 General Physics +1006.0643 Phenomenology +1006.0751 Differential Geometry +1006.1623 Experiment +1006.1899 Theory +1006.2916 +1006.3127 +1006.3694 +1006.4714 Theory +1006.4967 +1006.5149 Theory +1006.5633 Computational Physics +1006.5649 Strongly Correlated Electrons +1006.5703 Theory +1007.0851 +1007.0991 Phenomenology +1007.1170 +1007.1521 Theory +1007.1824 Theory +1007.1861 +1007.2067 +1007.2174 +1007.2781 Theory +1007.2786 +1007.2852 +1007.2854 +1007.3464 Cosmology and Nongalactic Astrophysics +1007.4151 Theory +1007.4208 Phenomenology +1007.4627 +1007.5176 Phenomenology +1007.5356 Strongly Correlated Electrons +1007.5505 Theory +1008.0181 Phenomenology +1008.0453 Phenomenology +1008.0462 Theory +1008.1271 Theory +1008.1389 Phenomenology +1008.1428 +1008.1540 Theory +1008.1958 +1008.2054 Phenomenology +1008.2189 Theory +1008.2829 Experiment +1008.2958 Theory +1008.2961 +1008.3184 Phenomenology +1008.3295 Information Theory +1008.3319 +1008.5012 Theory +1008.5179 Lattice +1008.5180 Lattice +1008.5295 Theory +1009.0175 Theory +1009.0545 Phenomenology +1009.0743 Theory +1009.0879 Theory +1009.1004 Mesoscale and Nanoscale Physics +1009.1295 Atomic and Molecular Clusters +1009.1468 Phenomenology +1009.1815 Mesoscale and Nanoscale Physics +1009.1912 Astrophysics of Galaxies +1009.1962 Theory +1009.1977 Logic in Computer Science +1009.2012 Phenomenology +1009.2042 Theory +1009.2153 Theory +1009.2484 Theory +1009.2684 Solar and Stellar Astrophysics +1009.2724 Cosmology and Nongalactic Astrophysics +1009.2763 Theory +1009.2880 Theory +1009.2941 +1009.3017 Theory +1009.3169 +1009.3658 Phenomenology +1009.3801 Phenomenology +1009.3964 Theory +1009.4302 Phenomenology +1009.4363 Phenomenology +1009.4875 Phenomenology +1009.5243 Cosmology and Nongalactic Astrophysics +1009.5553 Theory +1009.5681 Theory +1009.5971 +1009.6223 Theory +1010.0029 Experiment +1010.0407 Cosmology and Nongalactic Astrophysics +1010.0502 +1010.0545 +1010.1302 +1010.1477 +1010.1774 Phenomenology +1010.2120 Soft Condensed Matter +1010.2361 +1010.2676 Earth and Planetary Astrophysics +1010.2806 Theory +1010.3082 Instrumentation and Methods for Astrophysics +1010.3245 Atomic Physics +1010.3495 Strongly Correlated Electrons +1010.3736 Phenomenology +1010.4211 +1011.1811 Cosmology and Nongalactic Astrophysics +1011.4127 +1011.4854 Solar and Stellar Astrophysics +1011.5600 Probability +1011.5909 Cosmology and Nongalactic Astrophysics +1011.5928 +1011.6015 High Energy Astrophysical Phenomena +1012.0028 High Energy Astrophysical Phenomena +1012.0127 Mesoscale and Nanoscale Physics +1012.2013 +1012.2531 Phenomenology +1012.2919 +1012.5220 Probability +1101.0107 Operator Algebras +1101.0111 Operator Algebras +1101.0820 Multiagent Systems +1101.1347 Mesoscale and Nanoscale Physics +1101.1546 Number Theory +1101.1898 Algebraic Geometry +1101.2425 +1101.2477 +1101.2478 Optimization and Control +1101.2676 Instrumentation and Detectors +1101.2679 Probability +1101.2681 Experiment +1101.2683 +1101.2684 Popular Physics +1101.2686 Biological Physics +1101.2695 Geometric Topology +1101.2696 Numerical Analysis +1101.2703 Algebraic Geometry +1101.2705 Computational Complexity +1101.2707 Metric Geometry +1101.2715 Networking and Internet Architecture +1101.2728 Information Theory +1101.2729 Combinatorics +1101.2730 Experiment +1101.2732 +1101.2734 Accelerator Physics +1101.2735 Other Condensed Matter +1101.2752 Numerical Analysis +1101.2756 Group Theory +1101.2766 +1101.2767 +1101.2768 Mesoscale and Nanoscale Physics +1101.2775 Classical Analysis and ODEs +1101.2776 Instrumentation and Detectors +1101.2779 Chaotic Dynamics +1101.2781 Analysis of PDEs +1101.2782 Instrumentation and Methods for Astrophysics +1101.2784 Cosmology and Nongalactic Astrophysics +1101.2798 Logic in Computer Science +1101.2803 Symbolic Computation +1101.2805 Materials Science +1101.2811 Materials Science +1101.2819 Cryptography and Security +1101.2821 Astrophysics of Galaxies +1101.2830 Instrumentation and Methods for Astrophysics +1101.2831 +1101.2833 Analysis of PDEs +1101.2837 Solar and Stellar Astrophysics +1101.2839 Soft Condensed Matter +1101.2846 Quantum Gases +1101.2851 Quantitative Methods +1101.2856 Mesoscale and Nanoscale Physics +1101.2873 Complex Variables +1101.2883 Computer Science and Game Theory +1101.2884 Materials Science +1101.2887 Phenomenology +1101.2888 Group Theory +astro-ph/0404311 +cond-mat/9411072 +cond-mat/9705170 Soft Condensed Matter +gr-qc/0302040 +hep-ex/0010053 Experiment +hep-ex/9911028 Experiment +hep-th/0001113 Theory +hep-th/0307070 Theory +hep-th/0507226 Theory +nucl-ex/0011016 +nucl-th/9308021 +0705.4552 Mesoscale and Nanoscale Physics +0707.1013 Materials Science +0708.0117 Superconductivity +0711.1399 Other Condensed Matter +0805.3600 Soft Condensed Matter +0809.4173 Representation Theory +0902.2719 Quantum Algebra +0904.3785 Materials Science +0905.2870 Algebraic Geometry +0906.1310 Statistics Theory +0906.3588 Optimization and Control +0906.3909 Differential Geometry +0906.5483 Strongly Correlated Electrons +0907.2924 Solar and Stellar Astrophysics +0910.3040 Mesoscale and Nanoscale Physics +0910.3723 Differential Geometry +0911.2029 Materials Science +0912.5324 Networking and Internet Architecture +1001.0937 Algebraic Geometry +1001.2393 General Physics +1002.1889 Functional Analysis +1002.4259 Phenomenology +1003.3808 Number Theory +1003.5559 Superconductivity +1004.0477 Optimization and Control +1004.2651 Soft Condensed Matter +1005.1260 Functional Analysis +1005.3596 Representation Theory +1005.4142 Biomolecules +1006.0349 Mesoscale and Nanoscale Physics +1006.1263 Theory +1006.1468 +1007.2070 Subcellular Processes +1007.2753 Strongly Correlated Electrons +1007.4643 Mesoscale and Nanoscale Physics +1008.1953 +1008.4164 Rings and Algebras +1009.0610 Optics +1009.2668 Commutative Algebra +1009.3222 Chaotic Dynamics +1009.3307 +1009.5253 Optimization and Control +1009.5632 +1010.0761 Analysis of PDEs +1010.2679 High Energy Astrophysical Phenomena +1010.3618 Mesoscale and Nanoscale Physics +1010.5607 Statistical Mechanics +1011.1462 Functional Analysis +1011.4780 Statistical Mechanics +1011.4787 Soft Condensed Matter +1012.0411 Theory +1101.0743 Atomic Physics +1101.0808 Statistical Mechanics +1101.2314 Atomic Physics +1101.5161 Cosmology and Nongalactic Astrophysics +1101.5186 Combinatorics +1101.5537 Combinatorics +1101.5776 Theory +1102.0058 Distributed, Parallel, and Cluster Computing +1102.0391 Materials Science +1102.0471 Data Structures and Algorithms +1102.0516 Distributed, Parallel, and Cluster Computing +1102.0562 Solar and Stellar Astrophysics +1102.0568 Number Theory +1102.0583 Software Engineering +1102.0586 Geometric Topology +1102.0606 Algebraic Geometry +1102.0609 Geophysics +1102.0611 Cosmology and Nongalactic Astrophysics +1102.0612 Dynamical Systems +1102.0620 +1102.0623 Superconductivity +1102.0629 Social and Information Networks +1102.0630 Applications +1102.0634 Graphics +1102.0638 Earth and Planetary Astrophysics +1102.0639 High Energy Astrophysical Phenomena +1102.0642 Numerical Analysis +1102.0649 +1102.0650 Experiment +1102.0655 Geophysics +1102.0656 Geophysics +1102.0660 Group Theory +1102.0661 Geophysics +1102.0664 Materials Science +1102.0665 Geophysics +1102.0666 Computational Complexity +1102.0668 Geophysics +1102.0672 Functional Analysis +1102.0676 Information Retrieval +1102.0682 Networking and Internet Architecture +1102.0684 Networking and Internet Architecture +1102.0690 Information Theory +1102.0694 Information Retrieval +1102.0695 Information Retrieval +1102.0701 Geometric Topology +1102.0706 Computers and Society +1102.0708 Experiment +1102.0711 Soft Condensed Matter +1102.0714 Artificial Intelligence +1102.0716 Phenomenology +1102.0717 Algebraic Geometry +1102.0719 Soft Condensed Matter +1102.0728 Probability +1102.0735 Information Retrieval +1102.0736 Phenomenology +1102.0740 +1102.0748 +1102.0757 +1102.0765 Number Theory +1102.0771 Statistics Theory +math/0702802 Quantum Algebra +0708.0666 +0710.4441 Differential Geometry +0806.3523 General Physics +0809.1040 Statistical Finance +0810.1898 Statistical Mechanics +0901.2140 Information Theory +0903.1175 Differential Geometry +0906.1086 Discrete Mathematics +0906.3698 +0906.3823 Metric Geometry +0907.0382 Probability +0907.5054 Phenomenology +0912.0574 Representation Theory +0912.1983 Strongly Correlated Electrons +0912.2281 Lattice +0912.2362 Probability +0912.4809 Category Theory +0912.5081 Differential Geometry +1001.0044 Probability +1001.3581 Algebraic Topology +1002.0626 Mesoscale and Nanoscale Physics +1002.2507 Chaotic Dynamics +1002.3226 +1002.3672 Operator Algebras +1003.0978 Differential Geometry +1004.4206 General Physics +1005.0708 Phenomenology +1005.2464 Functional Analysis +1005.4411 Combinatorics +1005.5132 +1006.1920 Lattice +1006.2660 Information Theory +1006.4484 Information Theory +1006.5586 Mesoscale and Nanoscale Physics +1007.0793 +1007.3851 +1007.4805 +1007.5285 Number Theory +1007.5508 Number Theory +1008.0085 +1008.0160 Statistical Finance +1008.2294 Fluid Dynamics +1008.4597 +1009.0907 Biological Physics +1009.3754 Combinatorics +1010.1873 Numerical Analysis +1010.2566 +1010.5645 Mesoscale and Nanoscale Physics +1010.5862 Mesoscale and Nanoscale Physics +1011.0748 Trading and Market Microstructure +1011.0813 Mesoscale and Nanoscale Physics +1011.1066 Analysis of PDEs +1011.1138 +1011.2849 +1011.2854 Dynamical Systems +1011.2863 Disordered Systems and Neural Networks +1011.3627 +1011.3933 Materials Science +1011.5258 +1011.5557 +1011.5657 Solar and Stellar Astrophysics +1011.5905 Materials Science +1011.6499 +1012.0313 Statistical Mechanics +1012.3632 Computational Physics +1012.4737 General Topology +1012.5195 Theory +1012.5378 Representation Theory +1101.0430 Strongly Correlated Electrons +1101.3460 +1101.4800 Materials Science +1101.5299 Mesoscale and Nanoscale Physics +1101.6076 +1102.0686 Information Theory +1102.2074 Theory +1102.3032 Mesoscale and Nanoscale Physics +1103.3230 +1103.3550 Earth and Planetary Astrophysics +1103.5042 Solar and Stellar Astrophysics +1103.5218 Information Theory +1103.5352 Instrumentation and Methods for Astrophysics +1103.5488 Populations and Evolution +1103.5732 Number Theory +1103.5817 Algebraic Topology +1103.5897 Optimization and Control +1103.5960 Differential Geometry +1103.5998 Lattice +1103.6036 High Energy Astrophysical Phenomena +1103.6037 Solar and Stellar Astrophysics +1103.6044 Popular Physics +1103.6051 Materials Science +1103.6052 Computer Vision and Pattern Recognition +1103.6059 Probability +1103.6070 Statistical Mechanics +1103.6071 +1103.6072 Superconductivity +1103.6073 Data Structures and Algorithms +1103.6077 Exactly Solvable and Integrable Systems +1103.6079 +1103.6080 +1103.6082 Computational Physics +1103.6084 Geophysics +1103.6087 Distributed, Parallel, and Cluster Computing +1103.6096 Computation +1103.6100 Analysis of PDEs +1103.6101 Analysis of PDEs +1103.6102 Analysis of PDEs +1103.6103 Physics and Society +1103.6106 Soft Condensed Matter +1103.6112 Methodology +1103.6113 +1103.6118 Statistics Theory +1103.6119 Machine Learning +1103.6124 Mesoscale and Nanoscale Physics +1103.6134 Combinatorics +1103.6136 Statistics Theory +1103.6138 Group Theory +1103.6158 Differential Geometry +1103.6159 Functional Analysis +1103.6163 Classical Analysis and ODEs +1103.6165 Classical Analysis and ODEs +1103.6167 Instrumentation and Methods for Astrophysics +1103.6168 +1103.6170 Analysis of PDEs +1103.6171 Metric Geometry +1103.6172 Statistics Theory +1103.6174 High Energy Astrophysical Phenomena +1103.6176 General Mathematics +1103.6177 Materials Science +1103.6183 Quantum Gases +1103.6184 Functional Analysis +1103.6187 Computers and Society +1103.6191 Lattice +1103.6198 Algebraic Topology +1103.6200 Analysis of PDEs +1103.6201 Experiment +1103.6204 Methodology +1103.6205 Analysis of PDEs +1103.6206 Combinatorics +1103.6207 Fluid Dynamics +1103.6210 Materials Science +1103.6211 Analysis of PDEs +1103.6212 Computational Complexity +1103.6216 Methodology +1103.6226 Number Theory +1103.6233 Algebraic Geometry +1103.6236 Fluid Dynamics +1103.6239 Functional Analysis +1103.6241 Information Theory +1103.6244 K-Theory and Homology +1103.6245 K-Theory and Homology +1103.6247 Phenomenology +1103.6249 Geometric Topology +1103.6254 Differential Geometry +1103.6255 Logic +1103.6259 Group Theory +1103.6260 Analysis of PDEs +1103.6262 Cosmology and Nongalactic Astrophysics +1103.6264 +1103.6270 Cosmology and Nongalactic Astrophysics +1103.6271 Dynamical Systems +1103.6272 +1103.6275 Algebraic Topology +1103.6283 Materials Science +1103.6284 Cosmology and Nongalactic Astrophysics +0705.1922 Information Theory +0712.2731 +0802.0480 Statistical Mechanics +0809.1198 +0811.3921 +0901.2593 Statistics Theory +0901.3876 Logic +0906.2843 +0908.4126 Dynamical Systems +0910.1252 +0910.5024 Atomic Physics +0911.0421 Cosmology and Nongalactic Astrophysics +0911.4139 Probability +0912.0725 Cosmology and Nongalactic Astrophysics +0912.1763 Soft Condensed Matter +0912.2084 +0912.3081 Phenomenology +0912.3091 Probability +0912.4971 Theory +1003.3259 Methodology +1003.5895 General Physics +1004.4059 General Physics +1006.1385 +1006.2460 +1006.4345 +1006.4425 Probability +1007.1850 Atmospheric and Oceanic Physics +1007.2524 Theory +1007.2615 +1007.5218 Networking and Internet Architecture +1009.2349 Disordered Systems and Neural Networks +1009.3365 Phenomenology +1009.4956 Mesoscale and Nanoscale Physics +1010.0481 Group Theory +1010.0729 Operator Algebras +1010.1072 Materials Science +1010.1121 General Physics +1010.1919 Mesoscale and Nanoscale Physics +1010.3335 Algebraic Geometry +1011.0541 Probability +1011.1683 Materials Science +1011.2425 Cosmology and Nongalactic Astrophysics +1011.2963 Theory +1011.3341 Phenomenology +1011.5023 Phenomenology +1011.5026 +1011.5037 Phenomenology +1011.5074 Theory +1011.5078 Phenomenology +1011.5097 +1011.5103 +1011.5112 +1011.5118 Lattice +1011.5121 Lattice +1011.5151 Lattice +1011.5176 Phenomenology +1011.5189 Lattice +1011.5562 Analysis of PDEs +1012.1164 High Energy Astrophysical Phenomena +1012.1886 Data Structures and Algorithms +1012.2344 Cosmology and Nongalactic Astrophysics +1012.5727 Materials Science +1101.0817 Superconductivity +1101.1409 Quantum Gases +1101.1697 General Physics +1101.2221 Earth and Planetary Astrophysics +1101.2515 +1101.3505 +1101.3916 Soft Condensed Matter +1101.4513 +1101.4707 Superconductivity +1101.5229 Materials Science +1101.5786 Algebraic Geometry +1102.0309 Populations and Evolution +1102.1060 Astrophysics of Galaxies +1102.2523 Numerical Analysis +1102.5712 Phenomenology +1103.0393 Cosmology and Nongalactic Astrophysics +1103.1997 Materials Science +1103.2664 Analysis of PDEs +1103.5400 +1104.5493 Superconductivity +1105.2856 +1106.0128 +1106.0451 Optics +1106.2827 Superconductivity +1106.4342 Analysis of PDEs +1107.0943 Group Theory +1107.1437 Other Computer Science +1107.2007 Classical Analysis and ODEs +1107.2030 Theory +1107.2437 Programming Languages +1107.2503 Dynamical Systems +1107.2504 Quantitative Methods +1107.2574 Statistics Theory +1107.2634 Combinatorics +1107.2655 Spectral Theory +1107.2666 Phenomenology +1107.2668 Cosmology and Nongalactic Astrophysics +1107.2669 +1107.2671 +1107.2674 High Energy Astrophysical Phenomena +1107.2676 Algebraic Geometry +1107.2682 Analysis of PDEs +1107.2683 Software Engineering +1107.2687 Spectral Theory +1107.2691 Computation +1107.2692 Spectral Theory +1107.2693 Computer Vision and Pattern Recognition +1107.2695 Soft Condensed Matter +1107.2696 Computer Vision and Pattern Recognition +1107.2699 Machine Learning +1107.2703 +1107.2705 Analysis of PDEs +1107.2714 +1107.2717 Algebraic Geometry +1107.2718 Number Theory +1107.2719 Number Theory +1107.2723 Computer Vision and Pattern Recognition +1107.2727 Information Retrieval +1107.2729 Data Structures and Algorithms +1107.2734 Methodology +1107.2735 Analysis of PDEs +1107.2739 +1107.2740 Quantum Gases +1107.2747 +1107.2753 Statistics Theory +1107.2761 Cosmology and Nongalactic Astrophysics +1107.2767 Theory +1107.2768 Soft Condensed Matter +1107.2776 Number Theory +1107.2777 Solar and Stellar Astrophysics +1107.2778 Mesoscale and Nanoscale Physics +1107.2781 Computer Vision and Pattern Recognition +1107.2795 Accelerator Physics +1107.2797 Accelerator Physics +1107.2800 +1107.2802 Statistics Theory +1107.2807 Computer Vision and Pattern Recognition +1107.2810 Functional Analysis +1107.2811 Atomic and Molecular Clusters +1107.2816 Algebraic Geometry +1107.2822 Logic in Computer Science +1107.2827 Astrophysics of Galaxies +1107.2831 Numerical Analysis +1107.2834 Neurons and Cognition +1107.2843 Group Theory +1107.2848 Optimization and Control +1107.2852 Plasma Physics +1107.2859 Multimedia +1107.2861 +1107.2864 Algebraic Geometry +1107.2867 Information Theory +1107.2870 High Energy Astrophysical Phenomena +1107.2875 Algebraic Geometry +1107.2877 Phenomenology +1107.2880 Combinatorics +1107.2881 Optimization and Control +1107.2882 +1107.2888 Combinatorics +1107.2890 Solar and Stellar Astrophysics +1107.2899 Experiment +1107.2909 Theory +1107.2912 +cond-mat/0411253 Other Condensed Matter +hep-ph/0612021 Phenomenology +math/0609714 Algebraic Geometry +physics/9810002 Biological Physics +quant-ph/0409041 +0708.2522 Combinatorics +0710.2836 Dynamical Systems +0806.3060 Dynamical Systems +0808.0723 Dynamical Systems +0812.0747 +0901.2778 Symbolic Computation +0902.3382 Astrophysics of Galaxies +0905.0611 Mesoscale and Nanoscale Physics +0909.3474 General Physics +0910.3111 Astrophysics of Galaxies +0910.5711 +1001.3623 Number Theory +1002.3013 Classical Analysis and ODEs +1003.2186 Combinatorics +1004.1292 Probability +1004.2477 +1004.5271 Instrumentation and Methods for Astrophysics +1005.2109 +1006.0180 Algebraic Geometry +1006.1723 Number Theory +1006.3167 Discrete Mathematics +1007.3445 +1008.0524 +1008.5378 Quantum Gases +1009.1463 Methodology +1009.2886 +1009.4518 +1009.6204 Phenomenology +1010.1871 Materials Science +1012.0336 Analysis of PDEs +1012.2835 Computational Geometry +1101.4526 Operator Algebras +1102.3950 Differential Geometry +1102.5110 Differential Geometry +1102.5675 Instrumentation and Methods for Astrophysics +1104.2469 Theory +1105.2150 Applications +1105.4925 Probability +1106.0188 Quantum Gases +1106.0626 Differential Geometry +1106.0763 +1106.1758 +1106.3463 +1106.3853 Atomic and Molecular Clusters +1106.4424 Numerical Analysis +1106.4611 Differential Geometry +1106.4794 Mesoscale and Nanoscale Physics +1106.5459 Superconductivity +1106.5712 +1107.0549 Mesoscale and Nanoscale Physics +1107.2866 Optics +1107.3375 +1107.5416 Quantum Gases +1108.0152 Cosmology and Nongalactic Astrophysics +1108.0712 Earth and Planetary Astrophysics +1108.3613 Phenomenology +1108.4001 +1108.4251 Phenomenology +1108.4307 Superconductivity +1108.5376 Quantum Algebra +1109.2415 Learning +1109.2922 Dynamical Systems +1109.4078 Strongly Correlated Electrons +1109.4702 Atomic Physics +1109.4838 +1109.5701 Mesoscale and Nanoscale Physics +1109.5994 Strongly Correlated Electrons +1109.6388 Cosmology and Nongalactic Astrophysics +1110.0576 Atomic Physics +1110.2292 Atomic Physics +1110.2418 Quantum Gases +1110.3314 Combinatorics +1110.3550 Superconductivity +1110.4722 Representation Theory +1111.1953 Materials Science +1111.2333 Solar and Stellar Astrophysics +1111.3405 Numerical Analysis +1111.3410 Numerical Analysis +1111.3437 Combinatorics +1111.4883 Instrumentation and Detectors +1111.5042 Superconductivity +1111.5100 Metric Geometry +1111.5491 Astrophysics of Galaxies +1111.5980 Strongly Correlated Electrons +1111.6172 Genomics +1111.6410 Statistics Theory +1111.6818 Dynamical Systems +1111.6932 Optics +1111.6991 General Topology +1111.7148 Logic in Computer Science +1112.0010 Cosmology and Nongalactic Astrophysics +1112.0014 Solar and Stellar Astrophysics +1112.0031 Social and Information Networks +1112.0033 Differential Geometry +1112.0038 Cryptography and Security +1112.0042 +1112.0047 Astrophysics of Galaxies +1112.0048 Lattice +1112.0055 Commutative Algebra +1112.0058 Commutative Algebra +1112.0059 Computer Vision and Pattern Recognition +1112.0061 Information Theory +1112.0065 Instrumentation and Methods for Astrophysics +1112.0070 Optics +1112.0081 Experiment +1112.0082 Solar and Stellar Astrophysics +1112.0092 Number Theory +1112.0096 Analysis of PDEs +1112.0097 Networking and Internet Architecture +1112.0101 Systems and Control +1112.0118 Number Theory +1112.0119 Lattice +1112.0120 Geometric Topology +1112.0122 Analysis of PDEs +1112.0126 Discrete Mathematics +1112.0128 Number Theory +1112.0129 Functional Analysis +1112.0130 Algebraic Topology +1112.0132 Commutative Algebra +1112.0133 Complex Variables +1112.0134 Phenomenology +1112.0135 Representation Theory +1112.0138 Astrophysics of Galaxies +1112.0139 Materials Science +1112.0146 Probability +1112.0147 +1112.0152 Methodology +1112.0153 +1112.0158 Functional Analysis +1112.0159 +1112.0161 Functional Analysis +1112.0163 Optics +1112.0164 Analysis of PDEs +1112.0166 Functional Analysis +1112.0167 +1112.0168 Computation and Language +1112.0174 Phenomenology +1112.0175 Optics +1112.0177 Dynamical Systems +1112.0181 Phenomenology +1112.0182 +1112.0192 Biological Physics +1112.0193 Phenomenology +1112.0195 Information Theory +1112.0196 Optics +1112.0199 Functional Analysis +1112.0201 Number Theory +1112.0203 Functional Analysis +1112.0204 Networking and Internet Architecture +1112.0209 Statistical Mechanics +1112.0211 General Physics +1112.0215 Software Engineering +1112.0217 Optimization and Control +1112.0227 Geometric Topology +1112.0231 Superconductivity +1112.0233 Physics and Society +1112.0238 Experiment +1112.0242 Experiment +1112.0243 History and Philosophy of Physics +1112.0245 Data Structures and Algorithms +1112.0248 High Energy Astrophysical Phenomena +1112.0256 Probability +1112.0259 Optics +1112.0262 Physics and Society +1112.0269 Dynamical Systems +1112.0273 Experiment +1112.0276 +1112.0283 Combinatorics +1112.0286 Functional Analysis +1112.0292 +1112.0297 Statistical Finance +1112.0298 Combinatorics +1112.0300 Phenomenology +1112.0304 Phenomenology +math/0105249 Dynamical Systems +0710.5356 Exactly Solvable and Integrable Systems +0710.5515 Strongly Correlated Electrons +0711.4379 K-Theory and Homology +0711.4385 Operator Algebras +0802.2314 Geometric Topology +0804.1620 Metric Geometry +0804.4246 Representation Theory +0805.0151 Algebraic Topology +0805.0440 +0806.2635 Atomic Physics +0806.3671 General Physics +0809.3408 +0811.3150 Mesoscale and Nanoscale Physics +0812.2055 Analysis of PDEs +0901.3222 Complex Variables +0901.3230 Dynamical Systems +0903.2461 Other Condensed Matter +0905.4327 +0906.3504 +0906.4303 Chaotic Dynamics +0906.4861 Biological Physics +0908.1801 Physics and Society +0908.3247 +0909.4233 Information Theory +0909.4737 Theory +0910.0945 Differential Geometry +0911.5034 +0912.0322 Data Structures and Algorithms +0912.0434 Computational Finance +0912.4111 Accelerator Physics +1001.3170 Mesoscale and Nanoscale Physics +1001.3437 Algebraic Geometry +1002.0908 Artificial Intelligence +1002.1182 Superconductivity +1002.4688 Exactly Solvable and Integrable Systems +1003.1129 Probability +1003.2404 Operator Algebras +1003.3621 +1004.3424 Number Theory +1004.5285 Symbolic Computation +1005.2081 Mesoscale and Nanoscale Physics +1005.3464 Classical Physics +1006.0577 Numerical Analysis +1006.1538 Spectral Theory +1006.2849 Spectral Theory +1006.3031 Theory +1006.4176 Geometric Topology +1006.5509 Algebraic Geometry +1006.5854 +1007.3439 Mesoscale and Nanoscale Physics +1007.3743 Cosmology and Nongalactic Astrophysics +1008.1484 Artificial Intelligence +1008.2005 Discrete Mathematics +1009.0901 Lattice +1009.2375 Combinatorics +1009.2600 Analysis of PDEs +1009.2876 Classical Analysis and ODEs +1009.3578 Theory +1009.3767 Numerical Analysis +1010.2166 Mesoscale and Nanoscale Physics +1010.2511 Cryptography and Security +1010.3057 Strongly Correlated Electrons +1010.3430 Statistics Theory +1011.0118 Group Theory +1011.2984 +1011.4278 +1011.6528 Numerical Analysis +1012.0758 +1012.2016 Mesoscale and Nanoscale Physics +1012.2184 Methodology +1012.3821 Mesoscale and Nanoscale Physics +1012.4097 Combinatorics +1012.5492 Metric Geometry +1101.0571 Statistical Mechanics +1101.1241 +1101.2497 +1101.3525 Cosmology and Nongalactic Astrophysics +1101.4558 Phenomenology +1101.5738 Number Theory +1102.0421 Optimization and Control +1102.2948 +1102.5078 Portfolio Management +1103.1791 Populations and Evolution +1103.2636 Theory +1103.3530 Chaotic Dynamics +1103.5633 Materials Science +1104.0025 Quantitative Methods +1104.0636 Combinatorics +1104.0895 Statistical Mechanics +1104.1845 Complex Variables +1104.1905 Multiagent Systems +1104.2119 Strongly Correlated Electrons +1104.2583 Dynamical Systems +1104.2988 Strongly Correlated Electrons +1104.4255 Analysis of PDEs +1105.1796 Quantum Gases +1105.3959 Phenomenology +1105.5284 Lattice +1105.5402 +1105.5766 Optimization and Control +1105.6071 +1106.0099 +1106.1628 Quantum Gases +1106.2056 +1106.2317 Phenomenology +1106.4995 Mesoscale and Nanoscale Physics +1106.5315 Superconductivity +1106.5372 Mesoscale and Nanoscale Physics +1106.5447 +1106.6087 Phenomenology +1106.6107 Populations and Evolution +1106.6295 Quantum Gases +1107.0203 Optimization and Control +1107.1531 Astrophysics of Galaxies +1107.1774 Materials Science +1107.2221 Data Structures and Algorithms +1107.3374 Complex Variables +1107.3401 +1107.4111 Number Theory +1107.4552 Quantum Gases +1107.5271 Superconductivity +1107.5792 Theory +1107.6036 Spectral Theory +1108.0522 Mesoscale and Nanoscale Physics +1108.0585 Superconductivity +1108.0850 Optics +1108.1007 +1108.1158 +1108.1520 +1108.1703 +1108.1953 Disordered Systems and Neural Networks +1108.2897 Strongly Correlated Electrons +1108.4363 Classical Analysis and ODEs +1108.4997 Materials Science +1108.5061 +1109.1012 Quantum Gases +1109.1395 Geometric Topology +1109.1974 Theory +1109.2519 +1109.3485 Mesoscale and Nanoscale Physics +1109.3875 +1109.4283 Theory +1109.4868 Mesoscale and Nanoscale Physics +1109.4869 Algebraic Geometry +1109.5230 History and Overview +1109.5252 Mesoscale and Nanoscale Physics +1109.5260 Materials Science +1109.5630 Populations and Evolution +1109.5633 Populations and Evolution +1109.6645 Optimization and Control +1110.1716 Formal Languages and Automata Theory +1110.1856 High Energy Astrophysical Phenomena +1110.2691 Operator Algebras +1110.3061 Numerical Analysis +1110.4425 Classical Analysis and ODEs +1110.4710 Fluid Dynamics +1110.5577 Rings and Algebras +1110.6291 Experiment +1111.0259 Experiment +1111.0469 Phenomenology +1111.0531 Dynamical Systems +1111.0637 Soft Condensed Matter +1111.0702 Algebraic Geometry +1111.1047 Biological Physics +1111.1086 Hardware Architecture +1111.1155 +1111.1189 Number Theory +1111.1237 Theory +1111.1238 Solar and Stellar Astrophysics +1111.1241 Biological Physics +1111.1245 +1111.1248 High Energy Astrophysical Phenomena +1111.1250 Cryptography and Security +1111.1253 Probability +1111.1254 Probability +1111.1258 +1111.1259 Instrumentation and Methods for Astrophysics +1111.1260 Atomic Physics +1111.1262 Lattice +1111.1264 Group Theory +1111.1273 +1111.1274 Discrete Mathematics +1111.1275 Classical Physics +1111.1278 Cryptography and Security +1111.1286 Earth and Planetary Astrophysics +1111.1289 High Energy Astrophysical Phenomena +1111.1293 Classical Analysis and ODEs +1111.1301 Networking and Internet Architecture +1111.1321 Artificial Intelligence +1111.1328 Cryptography and Security +1111.1330 Combinatorics +1111.1334 Dynamical Systems +1111.1337 Solar and Stellar Astrophysics +1111.1345 Dynamical Systems +1111.1347 Information Theory +1111.1353 Neural and Evolutionary Computing +1111.1354 Algebraic Geometry +1111.1355 Data Structures and Algorithms +1111.1357 Classical Analysis and ODEs +1111.1360 Quantitative Methods +1111.1362 Operator Algebras +1111.1368 Combinatorics +1111.1369 Combinatorics +1111.1371 Dynamical Systems +1111.1373 Distributed, Parallel, and Cluster Computing +1111.1376 Combinatorics +1111.1377 +1111.1379 Complex Variables +1111.1382 High Energy Astrophysical Phenomena +1111.1384 Classical Analysis and ODEs +1111.1386 Learning +1111.1389 Functional Analysis +1111.1390 Functional Analysis +1111.1392 Cosmology and Nongalactic Astrophysics +1111.1393 Cosmology and Nongalactic Astrophysics +1111.1396 Information Theory +1111.1398 Instrumentation and Methods for Astrophysics +1111.1400 Computation +1111.1405 Soft Condensed Matter +1111.1406 High Energy Astrophysical Phenomena +1111.1408 Instrumentation and Detectors +1111.1409 +1111.1410 Cryptography and Security +1111.1416 Superconductivity +1111.1417 +1111.1418 Statistics Theory +1111.1420 Chaotic Dynamics +1111.1422 Learning +1111.1427 Phenomenology +1111.1429 Computers and Society +1111.1432 Information Theory +1111.1433 Commutative Algebra +1111.1434 Lattice +1111.1439 +1111.1443 Experiment +1111.1446 Phenomenology +1111.1450 Functional Analysis +1111.1452 Optics +1111.1458 Group Theory +1111.1459 Combinatorics +1111.1461 Computer Vision and Pattern Recognition +1111.1467 Chaotic Dynamics +1111.1469 Spectral Theory +1111.1471 Combinatorics +1111.1473 Number Theory +1111.1478 +1111.1479 +1111.1480 +1111.1481 +1111.1482 +1111.1486 Artificial Intelligence +1111.1491 Data Structures and Algorithms +1111.1492 Distributed, Parallel, and Cluster Computing +1111.1493 Adaptation and Self-Organizing Systems +1111.1495 Number Theory +1111.1496 Tissues and Organs +1111.1501 High Energy Astrophysical Phenomena +1111.1503 Solar and Stellar Astrophysics +1111.1505 +1111.1508 Number Theory +1111.1509 Applications +1111.1514 Networking and Internet Architecture +1111.1517 Group Theory +1111.1521 Probability +1111.1524 Numerical Analysis +1111.1525 Analysis of PDEs +1111.1529 Mesoscale and Nanoscale Physics +1111.1530 Chemical Physics +1111.1532 Cosmology and Nongalactic Astrophysics +1111.1535 Analysis of PDEs +1111.1536 Cosmology and Nongalactic Astrophysics +1111.1542 Superconductivity +1111.1545 Experiment +1111.1548 Algebraic Geometry +1111.1549 Optimization and Control +1111.1559 Dynamical Systems +1111.1561 +1111.1562 Computer Vision and Pattern Recognition +1111.1564 Neural and Evolutionary Computing +1111.1566 Instrumentation and Methods for Astrophysics +1111.1570 Information Retrieval +1111.1571 Analysis of PDEs +1111.1585 Group Theory +1111.1590 Algebraic Geometry +1111.1594 Algebraic Geometry +1111.1598 Software Engineering +1111.1599 Computer Vision and Pattern Recognition +1111.1604 Analysis of PDEs +1111.1605 Other Computer Science +1111.1606 History and Overview +1111.1607 High Energy Astrophysical Phenomena +1111.1609 Combinatorics +1111.1615 Accelerator Physics +1111.1618 Materials Science +1111.1621 Mesoscale and Nanoscale Physics +1111.1626 Spectral Theory +1111.1629 Differential Geometry +1111.1634 High Energy Astrophysical Phenomena +1111.1635 Experiment +1111.1637 Operator Algebras +1111.1640 Differential Geometry +1111.1644 Cryptography and Security +1111.1647 Networking and Internet Architecture +1111.1648 Information Retrieval +1111.1660 Probability +1111.1665 Data Structures and Algorithms +1111.1666 Networking and Internet Architecture +1111.1667 Solar and Stellar Astrophysics +1111.1673 Computation and Language +1111.1676 Superconductivity +1111.1681 Analysis of PDEs +1111.1684 Robotics +1111.1688 History and Overview +1111.1698 Mesoscale and Nanoscale Physics +1111.1702 High Energy Astrophysical Phenomena +math/0211177 K-Theory and Homology +math/0503267 Analysis of PDEs +math/0512025 Analysis of PDEs +math/0608332 K-Theory and Homology +quant-ph/0509012 +1102.4992 Graphics +0706.0455 Quantum Algebra +0806.0253 Computational Geometry +0807.0158 General Physics +0810.1422 Combinatorics +0905.4371 Combinatorics +0906.0077 Combinatorics +0906.0465 Number Theory +0907.4922 Quantum Algebra +0910.1561 +0910.2152 Category Theory +0910.4376 Combinatorics +0910.5849 +1001.3907 Computation +1004.1474 Rings and Algebras +1006.0413 Classical Analysis and ODEs +1007.1267 Numerical Analysis +1008.2368 Algebraic Geometry +1008.3265 Superconductivity +1009.3963 Phenomenology +1010.2950 Disordered Systems and Neural Networks +1010.4384 Pricing of Securities +1011.3630 Mesoscale and Nanoscale Physics +1011.5800 K-Theory and Homology +1012.1614 Computational Complexity +1012.5330 Data Structures and Algorithms +1102.5736 Cosmology and Nongalactic Astrophysics +1103.1028 Combinatorics +1103.4800 Phenomenology +1104.0416 Quantum Gases +1105.0176 Lattice +1105.0581 Strongly Correlated Electrons +1105.0913 Algebraic Geometry +1105.4099 Cosmology and Nongalactic Astrophysics +1106.0414 +1106.3651 Learning +1106.4303 Experiment +1106.4835 Mesoscale and Nanoscale Physics +1106.5697 General Physics +1106.5730 Optimization and Control +1107.0211 Mesoscale and Nanoscale Physics +1107.0513 Algebraic Geometry +1107.0526 +1107.0592 +1107.1348 Optics +1107.2248 Computer Science and Game Theory +1107.4521 Solar and Stellar Astrophysics +1107.4939 Logic in Computer Science +1107.4956 +1107.5183 +1107.5466 Cosmology and Nongalactic Astrophysics +1108.0255 Biological Physics +1108.4759 +1108.5043 Phenomenology +1109.0493 Quantum Gases +1109.0669 Other Condensed Matter +1109.1047 Theory +1109.1466 Phenomenology +1109.1536 Phenomenology +1109.1696 +1109.3118 Probability +1109.3800 Information Theory +1110.1434 Symplectic Geometry +1110.1449 +1110.4348 Instrumentation and Methods for Astrophysics +1110.5634 History and Philosophy of Physics +1110.6383 Logic +1110.6494 Theory +1111.0026 +1111.0241 Number Theory +1111.0765 Dynamical Systems +1111.0981 Lattice +1111.0996 Combinatorics +1111.1502 Analysis of PDEs +1111.1520 Chemical Physics +1111.2381 Lattice +1111.2386 Quantitative Methods +1111.2609 Methodology +1111.2616 Medical Physics +1111.2619 Networking and Internet Architecture +1111.2620 Experiment +1111.2624 Algebraic Geometry +1111.2625 Analysis of PDEs +1111.2627 Rings and Algebras +1111.2629 Mesoscale and Nanoscale Physics +1111.2631 +1111.2635 Representation Theory +1111.2638 Lattice +1111.2640 Information Theory +1111.2643 Functional Analysis +1111.2651 Systems and Control +1111.2656 Instrumentation and Detectors +1111.2658 Optimization and Control +1111.2660 Neurons and Cognition +1111.2661 High Energy Astrophysical Phenomena +1111.2664 Learning +1111.2665 Other Condensed Matter +1111.2669 Databases +1111.2671 +1111.2676 Mesoscale and Nanoscale Physics +1111.2678 Logic in Computer Science +1111.2680 Instrumentation and Methods for Astrophysics +1111.2683 Pricing of Securities +1111.2689 Statistics Theory +1111.2695 Combinatorics +1111.2699 Functional Analysis +1111.2700 Analysis of PDEs +1111.2707 Biological Physics +1111.2708 Phenomenology +1111.2711 Solar and Stellar Astrophysics +1111.2712 Analysis of PDEs +1111.2713 Discrete Mathematics +1111.2718 Experiment +1111.2720 Materials Science +1111.2724 Solar and Stellar Astrophysics +1111.2730 Optimization and Control +1111.2733 Experiment +1111.2743 Spectral Theory +1111.2744 Cryptography and Security +1111.2745 Astrophysics of Galaxies +1111.2753 Cosmology and Nongalactic Astrophysics +1111.2760 Cryptography and Security +1111.2763 Artificial Intelligence +1111.2768 Logic in Computer Science +1111.2771 History and Overview +1111.2773 Dynamical Systems +1111.2774 Complex Variables +1111.2777 Algebraic Geometry +1111.2778 Statistics Theory +1111.2779 Combinatorics +1111.2785 Materials Science +1111.2786 Materials Science +1111.2792 Lattice +1111.2797 Quantum Algebra +1111.2798 +1111.2799 Algebraic Geometry +1111.2801 Analysis of PDEs +1111.2805 General Physics +1111.2809 Mesoscale and Nanoscale Physics +1111.2814 Mesoscale and Nanoscale Physics +1111.2816 +1111.2818 Experiment +1111.2819 Differential Geometry +1111.2820 Dynamical Systems +1111.2824 Logic in Computer Science +1111.2825 Logic in Computer Science +1111.2826 Software Engineering +1111.2832 +1111.2837 Information Theory +1111.2840 Experiment +1111.2845 Popular Physics +1111.2846 Portfolio Management +1111.2848 Combinatorics +1111.2850 Analysis of PDEs +1111.2852 Databases +1111.2855 +1111.2857 Solar and Stellar Astrophysics +cond-mat/0206164 +cond-mat/0607807 Strongly Correlated Electrons +physics/0701049 Instrumentation and Detectors +0704.1922 Geometric Topology +0705.2086 Algebraic Geometry +0707.3226 Geometric Topology +0708.3578 Group Theory +0709.2924 Atomic Physics +0802.0417 Combinatorics +0803.2204 Algebraic Geometry +0804.0695 Geometric Topology +0808.3776 Theory +0810.3518 +0902.1956 Statistical Mechanics +0902.3630 Strongly Correlated Electrons +0904.4778 Combinatorics +0905.3949 Combinatorics +0907.3532 +0908.2773 Solar and Stellar Astrophysics +0909.0366 Group Theory +0909.2305 Phenomenology +0909.4006 Number Theory +0910.4316 Superconductivity +0911.2349 Mesoscale and Nanoscale Physics +0912.0584 Algebraic Geometry +1001.1220 Commutative Algebra +1001.1678 Superconductivity +1001.5386 Superconductivity +1002.1528 Number Theory +1003.0059 Number Theory +1003.3521 +1004.1565 +1004.4942 Discrete Mathematics +1005.0341 Rings and Algebras +1005.3388 Mesoscale and Nanoscale Physics +1005.3782 +1007.0135 Disordered Systems and Neural Networks +1007.2351 Phenomenology +1007.3284 Solar and Stellar Astrophysics +1007.5500 +1008.2658 Astrophysics of Galaxies +1008.2858 Phenomenology +1009.2247 Operator Algebras +1009.3287 Strongly Correlated Electrons +1009.3955 Statistical Mechanics +1009.5120 Quantum Gases +1010.4201 Atmospheric and Oceanic Physics +1010.4868 Probability +1010.4869 Probability +1011.0584 Rings and Algebras +1011.2737 Number Theory +1011.3995 Probability +1011.4196 Geometric Topology +1011.4394 Data Analysis, Statistics and Probability +1011.6243 +1012.3030 Computational Geometry +1101.1027 Atomic Physics +1101.3492 Theory +1101.4172 General Physics +1101.4461 Quantum Gases +1101.4799 Materials Science +1102.0859 Materials Science +1102.3826 Statistical Mechanics +1102.4519 Software Engineering +1102.5256 Statistical Mechanics +1103.1803 +1103.2453 Cosmology and Nongalactic Astrophysics +1103.3784 Materials Science +1103.3862 Optimization and Control +1103.4008 Materials Science +1103.4038 Phenomenology +1103.4097 Spectral Theory +1103.4192 Cosmology and Nongalactic Astrophysics +1103.4342 Robotics +1103.4371 Probability +1103.4378 Cosmology and Nongalactic Astrophysics +1103.4384 Cosmology and Nongalactic Astrophysics +1103.4390 Materials Science +1103.4395 Social and Information Networks +1103.4396 +1103.4397 Geometric Topology +1103.4401 Cryptography and Security +1103.4403 Materials Science +1103.4406 Information Theory +1103.4410 Databases +1103.4415 Probability +1103.4416 Probability +1103.4417 Probability +1103.4418 Materials Science +1103.4420 Probability +1103.4421 +1103.4428 +1103.4438 Systems and Control +1103.4443 Plasma Physics +1103.4444 Chemical Physics +1103.4447 Rings and Algebras +1103.4448 Statistical Mechanics +1103.4453 Probability +1103.4455 Experiment +1103.4456 Optimization and Control +1103.4458 Number Theory +1103.4459 Number Theory +1103.4460 Differential Geometry +1103.4462 Materials Science +1103.4463 Materials Science +1103.4464 Statistics Theory +1103.4469 Quantum Algebra +1103.4471 Quantum Algebra +1103.4472 Phenomenology +1103.4476 Dynamical Systems +1103.4479 Dynamical Systems +1103.4480 Learning +1103.4482 +1103.4485 Category Theory +1103.4487 Learning +1103.4489 Combinatorics +1103.4496 Cryptography and Security +1103.4502 Discrete Mathematics +1103.4503 Computational Geometry +1103.4505 Rings and Algebras +1103.4507 Combinatorics +1103.4508 Number Theory +1103.4512 +1103.4513 Formal Languages and Automata Theory +1103.4514 Differential Geometry +1103.4515 Logic in Computer Science +1103.4518 Metric Geometry +1103.4521 Data Structures and Algorithms +1103.4524 General Physics +1103.4528 K-Theory and Homology +1103.4529 Probability +1103.4532 Cellular Automata and Lattice Gases +1103.4534 Cosmology and Nongalactic Astrophysics +1103.4539 Materials Science +1103.4541 Computational Finance +1103.4551 Materials Science +1103.4552 Solar and Stellar Astrophysics +1103.4557 Representation Theory +1103.4565 General Topology +1103.4577 Logic in Computer Science +1103.4579 Number Theory +1103.4585 Analysis of PDEs +1103.4586 Statistical Mechanics +1103.4594 Dynamical Systems +1103.4595 Solar and Stellar Astrophysics +1103.4596 +1103.4598 Complex Variables +1103.4600 Complex Variables +1103.4604 Geometric Topology +cond-mat/0204109 Soft Condensed Matter +cond-mat/0311585 +cond-mat/0401053 +cond-mat/0407687 Other Condensed Matter +math/0301219 Geometric Topology +math/0603729 Geometric Topology +math/0608174 Group Theory +math/0609367 Algebraic Geometry +math/0609370 Quantum Algebra +math/9609209 Geometric Topology +math/9902153 Differential Geometry +quant-ph/0701100 +hep-th/0004152 Theory +1101.1103 Earth and Planetary Astrophysics +0803.0502 Differential Geometry +0809.4044 Classical Analysis and ODEs +0809.4049 Classical Analysis and ODEs +0809.4050 Classical Analysis and ODEs +0809.4053 Classical Analysis and ODEs +0809.4054 Analysis of PDEs +0812.3168 Analysis of PDEs +0812.4279 Computer Science and Game Theory +0902.4514 Optimization and Control +0905.3894 Strongly Correlated Electrons +0906.4004 Dynamical Systems +0907.1471 Dynamical Systems +0908.3469 Number Theory +0910.5441 Theory +0910.5442 Logic +0911.4401 Strongly Correlated Electrons +0911.4919 Theory +1002.1097 +1002.1781 Information Theory +1002.3917 +1004.2695 Differential Geometry +1004.3807 Information Theory +1004.4503 Number Theory +1004.5094 Information Theory +1005.0378 Statistical Finance +1005.2249 Information Theory +1005.2784 Experiment +1005.3023 Accelerator Physics +1006.3317 General Physics +1006.3893 Quantum Gases +1006.4674 Quantum Gases +1007.0765 Numerical Analysis +1007.3315 Information Theory +1007.4705 Phenomenology +1007.4814 Strongly Correlated Electrons +1008.0294 +1008.2018 Algebraic Geometry +1008.4823 Accelerator Physics +1008.4970 Number Theory +1008.4981 +1008.5314 Commutative Algebra +1008.5394 Solar and Stellar Astrophysics +1009.1243 Statistical Mechanics +1009.1528 Logic +1009.2376 Combinatorics +1009.2664 +1009.3321 Computation and Language +1009.3971 Number Theory +1009.4612 Phenomenology +1009.5288 Soft Condensed Matter +1010.2099 Plasma Physics +1010.2227 +1010.2545 Mesoscale and Nanoscale Physics +1010.4877 Combinatorics +1010.5331 Cosmology and Nongalactic Astrophysics +1011.0557 +1011.5459 Human-Computer Interaction +1011.5830 Classical Analysis and ODEs +1011.6542 Rings and Algebras +1012.0292 Strongly Correlated Electrons +1012.2409 Dynamical Systems +1012.5471 Materials Science +1012.5605 +1101.1424 +1101.3970 Computational Complexity +1101.5298 Instrumentation and Methods for Astrophysics +1102.1537 +1102.2733 +1102.4277 Phenomenology +1103.0682 +1103.0942 Machine Learning +1103.2887 +1103.4032 +1103.4621 Populations and Evolution +1103.5087 Phenomenology +1103.5097 Phenomenology +1103.5991 Statistics Theory +1104.0843 Artificial Intelligence +1104.1015 +1104.2104 +1104.4449 Mesoscale and Nanoscale Physics +1104.5502 Theory +1105.0070 +1105.0407 Functional Analysis +1105.1367 Cosmology and Nongalactic Astrophysics +1105.3153 Differential Geometry +1105.4190 Superconductivity +1105.5653 +1105.5687 +1105.5734 Complex Variables +1105.5921 Representation Theory +1105.5964 Soft Condensed Matter +1105.6327 +1106.0149 Metric Geometry +1106.0359 Social and Information Networks +1106.0365 Data Structures and Algorithms +1106.0422 Geometric Topology +1106.0443 Networking and Internet Architecture +1106.0497 Fluid Dynamics +1106.0500 Materials Science +1106.0504 Geometric Topology +1106.0506 Populations and Evolution +1106.0513 Number Theory +1106.0521 Solar and Stellar Astrophysics +1106.0523 Phenomenology +1106.0528 Solar and Stellar Astrophysics +1106.0530 Solar and Stellar Astrophysics +1106.0533 Superconductivity +1106.0538 Cosmology and Nongalactic Astrophysics +1106.0547 Numerical Analysis +1106.0548 +1106.0555 Disordered Systems and Neural Networks +1106.0557 Computational Physics +1106.0559 +1106.0560 Physics and Society +1106.0562 Differential Geometry +1106.0566 Artificial Intelligence +1106.0576 Classical Analysis and ODEs +1106.0577 Dynamical Systems +1106.0584 +1106.0589 Statistical Mechanics +1106.0594 Chemical Physics +1106.0595 Earth and Planetary Astrophysics +1106.0597 Soft Condensed Matter +1106.0607 Probability +1106.0608 Optics +1106.0617 Statistics Theory +1106.0629 Complex Variables +1106.0632 Analysis of PDEs +1106.0640 Strongly Correlated Electrons +1106.0641 General Mathematics +1106.0642 General Mathematics +1106.0643 Materials Science +1106.0644 Materials Science +1106.0656 Physics Education +1106.0661 Number Theory +1106.0664 Artificial Intelligence +1106.0665 Artificial Intelligence +1106.0666 Artificial Intelligence +1106.0667 Artificial Intelligence +1106.0668 Artificial Intelligence +1106.0669 Artificial Intelligence +1106.0671 Artificial Intelligence +1106.0672 Artificial Intelligence +1106.0673 Computation and Language +1106.0675 Artificial Intelligence +1106.0676 Learning +1106.0677 Materials Science +1106.0678 Artificial Intelligence +1106.0679 Artificial Intelligence +1106.0680 Artificial Intelligence +1106.0681 Learning +1106.0686 Analysis of PDEs +1106.0691 Phenomenology +1106.0693 Differential Geometry +1106.0702 History and Philosophy of Physics +1106.0704 History and Philosophy of Physics +1106.0707 Learning +1106.0708 Optimization and Control +1106.0719 Classical Analysis and ODEs +1106.0721 Methodology +1106.0722 Classical Analysis and ODEs +1106.0728 Classical Analysis and ODEs +1106.0730 Machine Learning +1106.0735 Networking and Internet Architecture +cond-mat/0507161 Disordered Systems and Neural Networks +cond-mat/0610588 Disordered Systems and Neural Networks +math-ph/0408053 +math/0402430 Dynamical Systems +physics/0509213 General Physics +physics/0510267 Atomic Physics +quant-ph/0509044 +0708.0052 General Physics +0803.2938 +0810.0634 +0810.4204 Differential Geometry +0811.3589 +0811.4067 Representation Theory +0907.4165 +0909.3944 Phenomenology +0909.4018 +0909.5438 Applications +0909.5567 Superconductivity +0910.2257 Differential Geometry +0910.3940 Mesoscale and Nanoscale Physics +0911.4105 +0912.0511 Cosmology and Nongalactic Astrophysics +1002.5041 Pricing of Securities +1003.2510 Theory +1005.1293 Theory +1005.1460 +1007.1827 Cosmology and Nongalactic Astrophysics +1007.4074 Phenomenology +1007.4326 +1007.4335 +1008.2934 Theory +1009.0372 +1009.2021 Databases +1009.2709 +1009.4200 Theory +1010.2523 Mesoscale and Nanoscale Physics +1010.2790 Representation Theory +1010.3414 Algebraic Geometry +1010.5076 Theory +1011.0900 Optics +1011.5816 Atomic Physics +1011.6492 Spectral Theory +1012.0984 Number Theory +1012.1318 Phenomenology +1012.1341 Phenomenology +1012.3229 Combinatorics +1012.5772 +1101.0608 Physics Education +1101.2641 Disordered Systems and Neural Networks +1101.2691 Phenomenology +1101.5594 Quantum Gases +1102.2804 Superconductivity +1102.3352 Cosmology and Nongalactic Astrophysics +1102.5666 Strongly Correlated Electrons +1103.0783 +1103.1686 Strongly Correlated Electrons +1103.2804 Dynamical Systems +1103.3024 High Energy Astrophysical Phenomena +1103.3209 Earth and Planetary Astrophysics +1103.3997 Materials Science +1103.5048 Mesoscale and Nanoscale Physics +1104.1814 Superconductivity +1104.2586 Space Physics +1105.4456 Symbolic Computation +1105.5407 Materials Science +1106.1419 Strongly Correlated Electrons +1106.1555 Disordered Systems and Neural Networks +1106.2571 Phenomenology +1106.2759 +1106.3330 Strongly Correlated Electrons +1106.3855 Phenomenology +1106.4001 Theory +1106.4467 Soft Condensed Matter +1106.4645 Soft Condensed Matter +1106.5667 Quantum Gases +1106.5982 Phenomenology +1106.6340 +1107.2896 Strongly Correlated Electrons +1107.3725 Mesoscale and Nanoscale Physics +1107.3774 Superconductivity +1107.3959 Mesoscale and Nanoscale Physics +1107.4357 Astrophysics of Galaxies +1107.6022 Statistical Mechanics +1108.0748 Information Retrieval +1108.1189 High Energy Astrophysical Phenomena +1108.1744 Number Theory +1108.3199 Differential Geometry +1108.4822 High Energy Astrophysical Phenomena +1108.5966 Soft Condensed Matter +1109.0135 +1109.0230 Experiment +1109.1008 Chemical Physics +1109.2075 Software Engineering +1109.2477 Data Structures and Algorithms +1109.3887 Information Theory +1109.4032 Computational Finance +1109.5409 Representation Theory +1109.5518 +1109.5718 Commutative Algebra +1109.5951 Artificial Intelligence +1109.6364 Optimization and Control +1109.6401 Logic in Computer Science +1109.6493 Statistics Theory +1109.6550 Emerging Technologies +1109.6617 Geophysics +1109.6632 +1109.6646 Information Theory +1109.6648 +1109.6651 Sound +1109.6654 Solar and Stellar Astrophysics +1109.6655 Astrophysics of Galaxies +1109.6675 Combinatorics +1109.6679 Instrumentation and Detectors +1109.6684 Phenomenology +1109.6689 Experiment +1109.6693 Combinatorics +1109.6699 Analysis of PDEs +1109.6700 Quantum Algebra +1109.6712 Combinatorics +1109.6714 Information Theory +1109.6717 Optimization and Control +1109.6719 Physics and Society +1109.6724 Instrumentation and Methods for Astrophysics +1109.6726 Information Retrieval +1109.6727 Phenomenology +1109.6730 Biological Physics +1109.6734 Experiment +1109.6739 Fluid Dynamics +1109.6740 Software Engineering +1109.6741 Instrumentation and Methods for Astrophysics +1109.6743 Astrophysics of Galaxies +1109.6749 Logic +1109.6751 Analysis of PDEs +1109.6752 Logic +1109.6757 +1109.6763 Cosmology and Nongalactic Astrophysics +1109.6767 Optics +1109.6776 Metric Geometry +1109.6777 Representation Theory +1109.6798 +1109.6802 Software Engineering +1109.6805 Experiment +1109.6812 Analysis of PDEs +1109.6820 General Mathematics +1109.6826 Numerical Analysis +1109.6827 Experiment +1109.6835 Differential Geometry +1109.6838 Multiagent Systems +1109.6840 Computer Vision and Pattern Recognition +1109.6841 Artificial Intelligence +1109.6842 Instrumentation and Detectors +1109.6844 +1109.6848 +1109.6849 Solar and Stellar Astrophysics +1109.6850 High Energy Astrophysical Phenomena +1109.6852 Accelerator Physics +1109.6860 Phenomenology +1109.6861 Experiment +1109.6868 Fluid Dynamics +1109.6869 Fluid Dynamics +1109.6874 Cryptography and Security +1109.6876 Phenomenology +1109.6878 Differential Geometry +1109.6879 Number Theory +1109.6880 Databases +1109.6881 Databases +1109.6882 Databases +1109.6883 Databases +1109.6884 Databases +1109.6886 Databases +1109.6889 Fluid Dynamics +1109.6894 Rings and Algebras +1109.6897 Instrumentation and Detectors +1109.6899 Dynamical Systems +1109.6900 Lattice +1109.6901 Experiment +1109.6905 Solar and Stellar Astrophysics +1109.6913 +1109.6914 Cryptography and Security +1109.6917 +1109.6923 Mesoscale and Nanoscale Physics +1109.6925 Distributed, Parallel, and Cluster Computing +1109.6927 Experiment +1109.6928 Popular Physics +1109.6929 Mesoscale and Nanoscale Physics +1109.6933 Instrumentation and Detectors +1109.6935 Materials Science +0706.3787 +0712.0068 Commutative Algebra +0802.2776 +0803.4081 Group Theory +0812.3516 Differential Geometry +0902.0868 Differential Geometry +0902.1304 Optimization and Control +0903.1029 Algebraic Geometry +0903.4092 +0905.1907 Solar and Stellar Astrophysics +0907.0332 Neural and Evolutionary Computing +0907.1502 Differential Geometry +0907.1507 Differential Geometry +0907.2811 Algebraic Geometry +0908.0684 Theory +0908.3998 Representation Theory +0910.0802 +0910.1115 Classical Analysis and ODEs +0910.3780 Numerical Analysis +0910.4042 Computational Complexity +0911.0360 Differential Geometry +0912.0638 Commutative Algebra +1001.1919 Statistics Theory +1001.3655 +1001.4458 Theory +1001.4776 Computation +1001.5045 +1002.0558 Quantum Algebra +1002.1300 Information Theory +1002.1702 +1002.3529 Instrumentation and Methods for Astrophysics +1002.3652 Algebraic Geometry +1003.4539 Information Theory +1004.0954 Algebraic Topology +1004.2605 Geometric Topology +1005.0639 Cosmology and Nongalactic Astrophysics +1005.1234 Number Theory +1005.4863 +1006.0108 Strongly Correlated Electrons +1006.0328 +1006.0694 +1006.0698 Geometric Topology +1007.0827 +1007.2780 +1007.3278 Geometric Topology +1007.5193 Rings and Algebras +1008.0977 Cosmology and Nongalactic Astrophysics +1009.1814 +1009.2164 +1009.2422 Phenomenology +1009.2881 Statistical Mechanics +1009.3106 Analysis of PDEs +1009.4851 Mesoscale and Nanoscale Physics +1010.0088 Analysis of PDEs +1010.1232 Mesoscale and Nanoscale Physics +1010.1258 +1010.1735 Experiment +1010.1769 +1010.1773 Theory +1010.2063 Accelerator Physics +1010.2503 Differential Geometry +1010.2913 Mesoscale and Nanoscale Physics +1010.3991 Phenomenology +1010.4616 Astrophysics of Galaxies +1010.6065 Theory +1011.0826 Numerical Analysis +1012.1526 Instrumentation and Methods for Astrophysics +1012.1826 Theory +1012.3824 +1012.4278 Analysis of PDEs +1012.4329 Complex Variables +1101.2223 +1101.2419 General Physics +1101.3440 Geometric Topology +1101.4022 Cosmology and Nongalactic Astrophysics +1101.4031 Materials Science +1101.4034 Networking and Internet Architecture +1101.4040 Mesoscale and Nanoscale Physics +1101.4041 Probability +1101.4050 Cosmology and Nongalactic Astrophysics +1101.4057 Materials Science +1101.4058 Commutative Algebra +1101.4059 Materials Science +1101.4060 Combinatorics +1101.4063 Computer Science and Game Theory +1101.4065 Data Structures and Algorithms +1101.4068 Data Structures and Algorithms +1101.4070 Analysis of PDEs +1101.4079 Mesoscale and Nanoscale Physics +1101.4080 Mesoscale and Nanoscale Physics +1101.4082 Mesoscale and Nanoscale Physics +1101.4084 Exactly Solvable and Integrable Systems +1101.4085 Accelerator Physics +1101.4093 Statistical Finance +1101.4101 Software Engineering +1101.4103 Adaptation and Self-Organizing Systems +1101.4104 Logic in Computer Science +1101.4112 Optimization and Control +1101.4113 Representation Theory +1101.4122 Optimization and Control +1101.4142 Numerical Analysis +1101.4144 Algebraic Topology +1101.4147 Strongly Correlated Electrons +1101.4151 Combinatorics +1101.4153 High Energy Astrophysical Phenomena +1101.4162 Accelerator Physics +1101.4168 Experiment +1101.4169 Analysis of PDEs +1101.4170 Learning +1101.4176 Optimization and Control +1101.4178 Optimization and Control +1101.4183 Cosmology and Nongalactic Astrophysics +1101.4185 Methodology +1101.4186 Superconductivity +1101.4189 Physics and Society +1101.4197 Complex Variables +1101.4201 Complex Variables +1101.4213 Probability +1101.4221 Operator Algebras +1101.4222 Hardware Architecture +cond-mat/0110521 Statistical Mechanics +math/0702728 Commutative Algebra +nlin/0703061 Chaotic Dynamics +0707.3172 Symplectic Geometry +0709.0315 +0710.2772 Strongly Correlated Electrons +0803.0821 Strongly Correlated Electrons +0803.3626 +0804.3631 Algebraic Geometry +0805.0556 Differential Geometry +0806.4403 Complex Variables +0808.0849 Mesoscale and Nanoscale Physics +0808.1754 Algebraic Geometry +0809.1319 Differential Geometry +0809.4133 Mesoscale and Nanoscale Physics +0809.5122 Representation Theory +0811.3664 Dynamical Systems +0811.4536 Dynamical Systems +0812.0553 Rings and Algebras +0812.3792 Theory +0902.4549 Phenomenology +0904.1061 Cosmology and Nongalactic Astrophysics +0904.3159 Experiment +0904.3516 Dynamical Systems +0904.3560 Phenomenology +0905.4928 Theory +0906.2714 Dynamical Systems +0906.4425 +0907.0424 Mesoscale and Nanoscale Physics +0907.1631 Mesoscale and Nanoscale Physics +0907.3187 +0907.3903 Algebraic Geometry +0908.3591 Mesoscale and Nanoscale Physics +0908.3741 Phenomenology +0909.1850 High Energy Astrophysical Phenomena +0909.3097 Cosmology and Nongalactic Astrophysics +0910.1805 Superconductivity +0910.1887 Algebraic Geometry +0911.1813 Cryptography and Security +0911.3504 Phenomenology +0911.3976 Instrumentation and Methods for Astrophysics +0911.5207 +0912.1279 Combinatorics +0912.2165 Experiment +0912.3893 Phenomenology +0912.4108 Cosmology and Nongalactic Astrophysics +0912.5411 Phenomenology +1002.0671 High Energy Astrophysical Phenomena +1002.4748 Mesoscale and Nanoscale Physics +1002.5044 Phenomenology +1003.2350 +1003.6049 Theory +1004.1425 Theory +1004.2953 Phenomenology +1004.3205 Data Structures and Algorithms +1004.3670 Statistical Mechanics +1004.3979 +1005.0642 +1005.0896 Artificial Intelligence +1005.1395 Computational Engineering, Finance, and Science +1005.1882 Phenomenology +1005.2881 +1005.3116 Phenomenology +1006.0362 +1006.0454 +1006.0571 Phenomenology +1006.0804 Statistical Mechanics +1006.3058 Mesoscale and Nanoscale Physics +1006.3214 Theory +1006.3550 Quantum Gases +1006.3837 +1006.3848 Cryptography and Security +1006.3931 Phenomenology +1006.5032 Theory +1007.1961 Theory +1007.2820 Theory +1007.3632 Phenomenology +1007.4189 +1008.1813 Phenomenology +1008.2355 Phenomenology +1008.2885 Theory +1008.3128 Theory +1008.4438 Soft Condensed Matter +1009.1010 Theory +1009.1301 Theory +1009.3423 Phenomenology +1009.3899 Combinatorics +1009.4662 Theory +1009.4696 Theory +1009.4822 Quantum Gases +1009.5263 Cosmology and Nongalactic Astrophysics +1009.5433 Cosmology and Nongalactic Astrophysics +1009.5923 Phenomenology +1010.0073 Plasma Physics +1010.0676 Phenomenology +1010.0816 Soft Condensed Matter +1010.0878 +1010.1259 Theory +1010.1471 Phenomenology +1010.1587 +1010.1619 +1010.1628 Theory +1010.1661 +1010.1708 +1010.1727 Theory +1010.2122 +1010.2129 Phenomenology +1010.2147 Phenomenology +1010.2271 Materials Science +1010.2760 Theory +1010.4315 Phenomenology +1010.4326 Theory +1010.5723 +1010.5795 Differential Geometry +1010.5985 Optics +1010.6135 Phenomenology +1010.6173 Materials Science +1011.0588 Mesoscale and Nanoscale Physics +1011.2881 +1011.2971 Phenomenology +1012.0806 Computer Science and Game Theory +1012.1485 Statistical Mechanics +1012.5049 Theory +1012.5076 Solar and Stellar Astrophysics +1012.5701 High Energy Astrophysical Phenomena +1012.5748 High Energy Astrophysical Phenomena +1012.5749 +1012.5818 Atmospheric and Oceanic Physics +1101.0869 Combinatorics +1101.1248 Spectral Theory +1101.1446 High Energy Astrophysical Phenomena +1101.2416 Optimization and Control +1101.2421 Optimization and Control +1101.2949 Number Theory +1101.3356 Programming Languages +1101.3443 Logic in Computer Science +1101.3455 Combinatorics +1101.3465 Artificial Intelligence +1101.3556 Probability +1101.3558 +1101.3563 Differential Geometry +1101.3564 +1101.3570 Neurons and Cognition +1101.3585 Optics +1101.3586 Cosmology and Nongalactic Astrophysics +1101.3587 Numerical Analysis +1101.3596 Metric Geometry +1101.3600 Metric Geometry +1101.3603 Symbolic Computation +1101.3608 Superconductivity +1101.3611 Superconductivity +1101.3613 Dynamical Systems +1101.3621 Quantum Algebra +1101.3627 Combinatorics +1101.3632 Combinatorics +1101.3642 Algebraic Geometry +1101.3643 Quantum Gases +1101.3644 Geometric Topology +1101.3647 Algebraic Geometry +1101.3649 Accelerator Physics +1101.3656 Probability +1101.3661 Fluid Dynamics +1101.3667 Functional Analysis +1101.3671 Functional Analysis +1101.3676 Combinatorics +1101.3677 Functional Analysis +1101.3683 Number Theory +1101.3684 Digital Libraries +1101.3689 Differential Geometry +1101.3704 Materials Science +1101.3705 Optics +1101.3717 Mesoscale and Nanoscale Physics +1101.3719 Data Analysis, Statistics and Probability +1101.3726 Medical Physics +1101.3727 Instrumentation and Detectors +1101.3731 Mesoscale and Nanoscale Physics +1101.3741 Solar and Stellar Astrophysics +1101.3742 Pattern Formation and Solitons +1101.3764 +1101.3770 Symplectic Geometry +1101.3771 Complex Variables +1101.3772 Dynamical Systems +1101.3774 Information Theory +astro-ph/0009114 +astro-ph/0010084 +astro-ph/0010634 +astro-ph/0101157 +astro-ph/0108512 +astro-ph/0203303 +astro-ph/0511233 +astro-ph/0602276 +astro-ph/0603053 +astro-ph/9902051 +cond-mat/0306200 Mesoscale and Nanoscale Physics +cond-mat/0308222 Mesoscale and Nanoscale Physics +cond-mat/0703092 Other Condensed Matter +gr-qc/9804081 +hep-ex/0111048 Experiment +hep-ex/0211049 Experiment +hep-ph/0205240 Phenomenology +hep-ph/0310194 Phenomenology +hep-ph/0410280 Phenomenology +hep-ph/0602144 Phenomenology +hep-th/0610130 Theory +math/0605700 Differential Geometry +math/0701283 Representation Theory +math/0702457 Representation Theory +nucl-th/0602066 +physics/0111038 Accelerator Physics +0802.2160 Experiment +0803.1316 Theory +0803.2316 +0805.2694 Analysis of PDEs +0807.1218 +0808.3027 +0810.4057 +0810.4531 Algebraic Topology +0901.0425 +0904.4092 Strongly Correlated Electrons +0905.1306 Strongly Correlated Electrons +0905.4899 Theory +0907.3338 Optimization and Control +0907.3411 +0910.1355 Cosmology and Nongalactic Astrophysics +0910.2187 Optimization and Control +0910.4049 Numerical Analysis +0910.4307 Numerical Analysis +0912.3126 Analysis of PDEs +1001.0578 Mesoscale and Nanoscale Physics +1001.2200 +1003.0032 Analysis of PDEs +1005.1368 Theory +1005.4217 +1006.1762 +1006.4064 Algebraic Geometry +1006.5919 Strongly Correlated Electrons +1008.1859 Phenomenology +1009.2471 Classical Analysis and ODEs +1010.2300 Algebraic Geometry +1010.3210 +1010.3732 Strongly Correlated Electrons +1011.2967 Statistical Mechanics +1011.3014 +1011.3489 +1012.2667 Phenomenology +1012.4609 Earth and Planetary Astrophysics +1012.5363 Astrophysics of Galaxies +1101.1228 Theory +1101.4332 Combinatorics +1101.5889 Mesoscale and Nanoscale Physics +1102.2592 Statistical Mechanics +1103.5130 Theory +1103.5705 Phenomenology +1104.1222 +1104.1450 Statistics Theory +1104.2008 Superconductivity +1104.2688 Mesoscale and Nanoscale Physics +1104.5632 Mesoscale and Nanoscale Physics +1105.2087 Theory +1105.2189 Optics +1105.3013 Phenomenology +1105.4148 Materials Science +1105.4358 Combinatorics +1105.4856 +1105.5723 Theory +1105.5952 Theory +1105.5955 Differential Geometry +1105.6172 Group Theory +1106.1179 Theory +1106.1485 Superconductivity +1106.1596 Probability +1106.2371 Quantum Gases +1106.2614 Strongly Correlated Electrons +1106.4206 Chaotic Dynamics +1106.4318 +1106.4955 +1106.5450 Strongly Correlated Electrons +1107.0197 Number Theory +1107.1035 +1107.1729 Materials Science +1107.2592 Strongly Correlated Electrons +1107.2650 Theory +1107.4241 Astrophysics of Galaxies +1107.5485 +1107.5815 Theory +1107.5918 +1108.0753 Statistical Mechanics +1108.1034 Disordered Systems and Neural Networks +1108.1160 Mesoscale and Nanoscale Physics +1108.2653 Instrumentation and Detectors +1108.3035 +1108.3815 +1108.3851 Theory +1108.4170 +1108.4235 Theory +1108.4921 Phenomenology +1108.5136 +1108.5408 Quantum Gases +1108.5934 Physics and Society +1109.2570 +1109.3920 Complex Variables +1109.4446 Materials Science +1110.0790 Quantum Gases +1110.1441 Quantum Gases +1110.2002 +1110.2576 Lattice +1110.2672 Analysis of PDEs +1110.4573 Computational Geometry +1110.4604 Data Structures and Algorithms +1110.4752 Combinatorics +1110.5192 Quantum Gases +1110.5233 Algebraic Topology +1110.5972 Distributed, Parallel, and Cluster Computing +1110.6007 Commutative Algebra +1110.6642 Phenomenology +1110.6842 Lattice +1110.6880 +1110.6884 Combinatorics +1111.0119 Lattice +1111.0189 Instrumentation and Methods for Astrophysics +1111.0246 Phenomenology +1111.0294 Astrophysics of Galaxies +1111.0303 Lattice +1111.0304 Algebraic Geometry +1111.0305 Computational Complexity +1111.0308 High Energy Astrophysical Phenomena +1111.0311 Numerical Analysis +1111.0313 Instrumentation and Methods for Astrophysics +1111.0315 Phenomenology +1111.0316 Combinatorics +1111.0318 High Energy Astrophysical Phenomena +1111.0319 Rings and Algebras +1111.0320 High Energy Astrophysical Phenomena +1111.0322 Theory +1111.0323 High Energy Astrophysical Phenomena +1111.0325 High Energy Astrophysical Phenomena +1111.0329 Analysis of PDEs +1111.0330 Category Theory +1111.0331 Optics +1111.0335 High Energy Astrophysical Phenomena +1111.0337 Networking and Internet Architecture +1111.0340 Analysis of PDEs +1111.0343 Optics +1111.0345 High Energy Astrophysical Phenomena +1111.0361 Statistical Mechanics +1111.0364 Statistical Mechanics +1111.0365 High Energy Astrophysical Phenomena +1111.0367 High Energy Astrophysical Phenomena +1111.0368 Software Engineering +1111.0369 Logic in Computer Science +1111.0370 Software Engineering +1111.0371 Logic in Computer Science +1111.0372 Logic in Computer Science +1111.0373 Software Engineering +1111.0374 Software Engineering +1111.0377 Lattice +1111.0378 High Energy Astrophysical Phenomena +1111.0381 Operator Algebras +1111.0382 Cryptography and Security +1111.0383 Geometric Topology +1111.0385 Cryptography and Security +1111.0386 Cryptography and Security +1111.0387 Cryptography and Security +1111.0388 Neurons and Cognition +1111.0389 Portfolio Management +1111.0392 +1111.0393 Analysis of PDEs +1111.0404 Fluid Dynamics +1111.0406 Combinatorics +1111.0408 Analysis of PDEs +1111.0409 Lattice +1111.0412 Algebraic Geometry +1111.0413 Soft Condensed Matter +1111.0414 Optimization and Control +1111.0416 Applications +1111.0417 Lattice +1111.0419 Differential Geometry +1111.0421 Differential Geometry +1111.0422 Computational Complexity +1111.0424 Differential Geometry +1111.0426 Instrumentation and Detectors +1111.0430 High Energy Astrophysical Phenomena +1111.0433 Statistics Theory +1111.0439 Astrophysics of Galaxies +1111.0447 Solar and Stellar Astrophysics +1111.0449 Lattice +1111.0450 Representation Theory +1111.0455 Phenomenology +1111.0457 +1111.0466 Computer Vision and Pattern Recognition +1111.0471 Strongly Correlated Electrons +1111.0476 Formal Languages and Automata Theory +1111.0477 Phenomenology +1111.0479 Lattice +1111.0480 Phenomenology +1111.0481 Soft Condensed Matter +1111.0486 Probability +1111.0489 Dynamical Systems +1111.0494 +1111.0496 Lattice +1111.0497 +1111.0499 Data Structures and Algorithms +1111.0500 Robotics +1111.0501 +1111.0505 +1111.0506 Dynamical Systems +1111.0510 Dynamical Systems +1111.0514 Solar and Stellar Astrophysics +1111.0516 Phenomenology +1111.0530 +1111.0534 Materials Science +1111.0536 Probability +1111.0540 Solar and Stellar Astrophysics +1111.0542 Popular Physics +1111.0543 +1111.0544 Theory +1111.0546 Solar and Stellar Astrophysics +1111.0553 +1111.0555 Solar and Stellar Astrophysics +1111.0556 Phenomenology +1111.0557 Cosmology and Nongalactic Astrophysics +1111.0559 Other Statistics +1111.0562 Software Engineering +1111.0566 Dynamical Systems +1111.0570 Data Structures and Algorithms +1111.0572 Number Theory +1111.0582 Computational Complexity +1111.0587 Combinatorics +1111.0593 Cosmology and Nongalactic Astrophysics +1111.0594 Databases +1111.0595 Information Theory +1111.0604 Analysis of PDEs +1111.0612 Accelerator Physics +1111.0614 Algebraic Geometry +1111.0617 Applications +1111.0621 Probability +1111.0622 K-Theory and Homology +1111.0624 Number Theory +1111.0625 High Energy Astrophysical Phenomena +1111.0626 +cond-mat/0601540 Mesoscale and Nanoscale Physics +hep-th/0605203 Theory +0707.0198 Algebraic Topology +0802.3556 +0806.3686 Probability +0807.0584 Quantum Algebra +0807.1894 Mesoscale and Nanoscale Physics +0903.1409 Representation Theory +0903.1411 Representation Theory +0903.1418 Representation Theory +0904.0291 Classical Physics +0905.1110 Statistical Mechanics +0906.2774 Theory +0908.1728 Representation Theory +0909.2805 Algebraic Geometry +0909.3240 Phenomenology +0910.1507 Numerical Analysis +0910.3478 +0910.4060 Classical Physics +0912.2062 Statistical Mechanics +0912.2505 Algebraic Topology +0912.4123 +1001.5238 Theory +1003.3384 Probability +1005.1280 Materials Science +1005.3703 +1006.1120 +1006.1632 +1006.4032 Instrumentation and Detectors +1007.0053 Algebraic Geometry +1007.3123 General Topology +1007.3231 +1008.0460 Quantum Algebra +1008.0691 +1008.5151 Phenomenology +1009.0713 Differential Geometry +1009.3849 +1009.4555 Strongly Correlated Electrons +1010.1038 Dynamical Systems +1011.1681 Cosmology and Nongalactic Astrophysics +1011.3336 +1011.3759 Statistical Mechanics +1011.5754 +1011.6124 Phenomenology +1012.0511 Experiment +1012.1072 +1012.1114 Phenomenology +1012.1592 Fluid Dynamics +1012.5521 Phenomenology +1012.5930 Theory +1101.2823 Phenomenology +1101.3006 Accelerator Physics +1102.0985 Differential Geometry +1102.1303 +1102.2728 +1102.3838 Optics +1102.4113 Mesoscale and Nanoscale Physics +1102.5003 Differential Geometry +1102.5116 Earth and Planetary Astrophysics +1103.1836 Strongly Correlated Electrons +1103.3018 Phenomenology +1103.3217 Statistical Mechanics +1103.5279 Neurons and Cognition +1103.5990 Theory +1104.5251 +1104.5462 +1105.0018 Analysis of PDEs +1105.0158 Information Theory +1105.0533 Strongly Correlated Electrons +1105.1626 Phenomenology +1105.2084 Quantum Gases +1105.2985 Exactly Solvable and Integrable Systems +1105.3485 Phenomenology +1105.3527 Strongly Correlated Electrons +1105.5155 Materials Science +1105.5492 Phenomenology +1105.5899 Plasma Physics +1105.6346 Statistical Mechanics +1106.0030 Phenomenology +1106.0232 +1106.0406 Statistical Mechanics +1106.0512 Theory +1106.1046 Fluid Dynamics +1106.1321 +1106.1554 Lattice +1106.1778 Theory +1106.1891 Cosmology and Nongalactic Astrophysics +1106.2391 Medical Physics +1106.3323 Biological Physics +1106.4067 +1106.5871 +1107.0359 Materials Science +1107.0450 Phenomenology +1107.0598 Phenomenology +1107.1503 Cosmology and Nongalactic Astrophysics +1107.1718 Theory +1107.2184 +1107.3280 Cosmology and Nongalactic Astrophysics +1107.3295 Theory +1107.4281 +1108.0812 Astrophysics of Galaxies +1108.0893 +1108.1840 Algebraic Geometry +1108.3115 High Energy Astrophysical Phenomena +1108.4019 Materials Science +1108.4655 Statistical Mechanics +1108.5943 Artificial Intelligence +1109.0991 High Energy Astrophysical Phenomena +1109.1559 Cosmology and Nongalactic Astrophysics +1109.2605 General Physics +1109.2775 Mesoscale and Nanoscale Physics +1109.3154 Theory +1109.3253 Instrumentation and Detectors +1109.3361 Phenomenology +1109.4058 Analysis of PDEs +1109.4104 Instrumentation and Methods for Astrophysics +1109.4208 Combinatorics +1109.4220 Optics +1109.4315 +1109.4556 +1109.4630 Physics Education +1109.4645 Space Physics +1109.4648 Spectral Theory +1109.4649 Spectral Theory +1109.4652 Solar and Stellar Astrophysics +1109.4654 Information Theory +1109.4657 Biological Physics +1109.4659 +1109.4660 Classical Analysis and ODEs +1109.4662 Instrumentation and Detectors +1109.4663 Mesoscale and Nanoscale Physics +1109.4664 Optimization and Control +1109.4667 Soft Condensed Matter +1109.4668 Probability +1109.4673 Combinatorics +1109.4674 Group Theory +1109.4675 Combinatorics +1109.4677 Cryptography and Security +1109.4679 Theory +1109.4680 Social and Information Networks +1109.4683 Computer Vision and Pattern Recognition +1109.4691 Classical Analysis and ODEs +1109.4692 +1109.4693 Number Theory +1109.4694 Number Theory +1109.4695 Geophysics +1109.4696 +1109.4701 Biological Physics +1109.4707 Experiment +1109.4709 Cryptography and Security +1109.4712 Symplectic Geometry +1109.4716 +1109.4718 Experiment +1109.4723 Solar and Stellar Astrophysics +1109.4727 Probability +1109.4729 Discrete Mathematics +1109.4730 Solar and Stellar Astrophysics +1109.4731 +1109.4733 High Energy Astrophysical Phenomena +1109.4737 Materials Science +1109.4741 Theory +1109.4742 Materials Science +1109.4744 Computer Vision and Pattern Recognition +1109.4751 Materials Science +1109.4759 Statistical Mechanics +1109.4762 Number Theory +1109.4764 Methodology +1109.4765 Algebraic Geometry +1109.4766 +1109.4767 Soft Condensed Matter +1109.4777 Statistics Theory +1109.4780 Experiment +1109.4783 Adaptation and Self-Organizing Systems +1109.4786 Solar and Stellar Astrophysics +1109.4793 Functional Analysis +1109.4795 Classical Physics +1109.4798 Analysis of PDEs +1109.4799 Classical Physics +1109.4802 +1109.4810 Solar and Stellar Astrophysics +1109.4811 Materials Science +1109.4813 +1109.4817 Logic in Computer Science +1109.4821 +1109.4823 +1109.4825 Materials Science +1109.4831 Functional Analysis +1109.4832 +1109.4842 Solar and Stellar Astrophysics +1109.4843 Logic in Computer Science +1109.4849 General Physics +1109.4850 Geometric Topology +1109.4858 Logic +1109.4859 General Finance +1109.4862 Classical Analysis and ODEs +1109.4870 Geometric Topology +1109.4874 Classical Analysis and ODEs +1109.4877 Superconductivity +1109.4879 Number Theory +1109.4880 History and Philosophy of Physics +1109.4882 Algebraic Topology +1109.4885 Superconductivity +1109.4902 Strongly Correlated Electrons +1109.4905 Materials Science +1109.4906 Computation and Language +1109.4909 Computer Vision and Pattern Recognition +1109.4910 Computational Complexity +1109.4912 Rings and Algebras +1109.4913 Group Theory +1109.4916 Rings and Algebras +1109.4918 Analysis of PDEs +1109.4919 Data Structures and Algorithms +1109.4921 Commutative Algebra +1109.4924 Functional Analysis +1109.4925 Distributed, Parallel, and Cluster Computing +1109.4926 Analysis of PDEs +1109.4930 Metric Geometry +1109.4931 Theory +1109.4933 Classical Analysis and ODEs +astro-ph/0612377 +hep-th/9512005 Theory +math-ph/0503008 +math/0608535 Group Theory +math/9908061 Quantum Algebra +0901.3112 Symplectic Geometry +0905.0938 Commutative Algebra +0905.2918 Data Analysis, Statistics and Probability +0908.3390 Algebraic Geometry +0910.5632 Symplectic Geometry +0911.0063 Probability +0911.3039 Symplectic Geometry +0912.0681 Data Structures and Algorithms +0912.1577 Algebraic Geometry +1002.1400 Commutative Algebra +1003.0690 Symplectic Geometry +1004.0589 General Physics +1005.5119 +1008.1196 +1011.5799 Differential Geometry +1102.0361 +1102.3689 Cosmology and Nongalactic Astrophysics +1103.2384 Combinatorics +1103.3410 Mesoscale and Nanoscale Physics +1103.5381 Statistics Theory +1103.5541 Materials Science +1104.0642 Combinatorics +1104.0690 Quantum Gases +1104.2010 +1104.4633 Mesoscale and Nanoscale Physics +1104.5192 +1105.1962 +1105.2779 Probability +1105.2886 Plasma Physics +1105.4394 Software Engineering +1105.4803 Strongly Correlated Electrons +1105.5532 Statistical Mechanics +1105.5831 +1106.1572 Materials Science +1106.3898 Cryptography and Security +1106.4382 Mesoscale and Nanoscale Physics +1106.5430 Mesoscale and Nanoscale Physics +1107.0002 Cosmology and Nongalactic Astrophysics +1107.1269 Phenomenology +1107.3990 +1107.4001 Phenomenology +1107.4128 Algebraic Geometry +1107.4317 Phenomenology +1107.5997 Statistical Mechanics +1108.1685 Computational Physics +1108.3721 Plasma Physics +1108.3797 High Energy Astrophysical Phenomena +1108.5076 +1109.2013 +1109.2037 Strongly Correlated Electrons +1109.4890 Phenomenology +1109.6442 Computer Vision and Pattern Recognition +1110.2981 Astrophysics of Galaxies +1110.3729 Phenomenology +1110.3746 Geometric Topology +1110.3978 Fluid Dynamics +1110.4039 Mesoscale and Nanoscale Physics +1110.4366 +1110.4379 Combinatorics +1110.4500 Software Engineering +1110.4520 Phenomenology +1110.4620 Probability +1110.4641 +1110.4648 Statistical Finance +1110.4654 Number Theory +1110.4655 Instrumentation and Methods for Astrophysics +1110.4657 Artificial Intelligence +1110.4659 Cosmology and Nongalactic Astrophysics +1110.4660 Metric Geometry +1110.4661 Metric Geometry +1110.4662 Metric Geometry +1110.4666 Statistical Mechanics +1110.4669 Pricing of Securities +1110.4671 Discrete Mathematics +1110.4672 Logic in Computer Science +1110.4673 Mathematical Software +1110.4674 Symbolic Computation +1110.4675 Logic in Computer Science +1110.4676 Logic in Computer Science +1110.4677 Logic in Computer Science +1110.4678 Optimization and Control +1110.4680 Dynamical Systems +1110.4684 Theory +1110.4693 Number Theory +1110.4696 Quantitative Methods +1110.4698 Astrophysics of Galaxies +1110.4702 Instrumentation and Methods for Astrophysics +1110.4703 Information Theory +1110.4705 Applications +1110.4711 Algebraic Geometry +1110.4713 Learning +1110.4716 Spectral Theory +1110.4717 Number Theory +1110.4719 Artificial Intelligence +1110.4723 Social and Information Networks +1110.4727 Materials Science +1110.4730 General Physics +1110.4733 Analysis of PDEs +1110.4735 Probability +1110.4736 Differential Geometry +1110.4739 +1110.4744 High Energy Astrophysical Phenomena +1110.4745 Differential Geometry +1110.4751 Experiment +1110.4754 +1110.4756 General Mathematics +1110.4760 Optics +1110.4764 Earth and Planetary Astrophysics +1110.4767 Analysis of PDEs +1110.4779 Operator Algebras +1110.4781 Experiment +1110.4785 Representation Theory +1110.4789 +1110.4794 Analysis of PDEs +1110.4801 Symbolic Computation +1110.4802 Programming Languages +1110.4811 Trading and Market Microstructure +1110.4814 Number Theory +1110.4820 Cryptography and Security +1110.4829 Phenomenology +1110.4830 Number Theory +1110.4834 Dynamical Systems +1110.4838 Computer Science and Game Theory +1110.4842 Quantum Gases +1110.4844 Social and Information Networks +1110.4851 Information Retrieval +1110.4853 Other Condensed Matter +1110.4854 Distributed, Parallel, and Cluster Computing +1110.4867 +1110.4875 Number Theory +1110.4877 Optimization and Control +1110.4880 Functional Analysis +1110.4881 Combinatorics +1110.4885 Combinatorics +hep-ph/9907450 Phenomenology +physics/0206025 Physics Education +physics/0206076 History and Philosophy of Physics +0706.0609 Strongly Correlated Electrons +0809.3121 Chaotic Dynamics +0810.0467 Number Theory +0812.1141 Superconductivity +0812.2513 Fluid Dynamics +0812.2953 Optics +0812.4683 Optics +0901.2788 Atomic Physics +0903.4237 Combinatorics +0903.4696 Computational Geometry +0905.3863 Classical Analysis and ODEs +0906.1236 Optics +0906.1342 Commutative Algebra +0906.3345 Optics +0907.2730 Group Theory +0908.0025 Optics +0908.1880 Algebraic Topology +0908.3565 Optimization and Control +0910.2097 Statistical Mechanics +0912.4196 Genomics +0912.4521 Strongly Correlated Electrons +0912.4858 Superconductivity +1002.3201 Combinatorics +1005.1124 Algebraic Geometry +1005.4274 Optimization and Control +1005.4343 +1005.4817 Phenomenology +1006.4349 Computational Complexity +1006.5531 Materials Science +1007.0290 Instrumentation and Methods for Astrophysics +1007.1214 Probability +1009.0549 Phenomenology +1009.1572 Superconductivity +1009.2119 Combinatorics +1010.1956 Logic +1011.1447 Logic +1011.5667 Materials Science +1012.2731 Superconductivity +1101.1982 Soft Condensed Matter +1102.2041 Computer Science and Game Theory +1102.2637 +1102.3895 Superconductivity +1102.4916 Analysis of PDEs +1103.3874 +1103.5501 Cosmology and Nongalactic Astrophysics +1104.2582 Disordered Systems and Neural Networks +1105.0704 Soft Condensed Matter +1105.1322 Strongly Correlated Electrons +1105.5050 +1105.5193 Phenomenology +1105.5556 Materials Science +1105.5574 +1106.0423 Data Structures and Algorithms +1106.1008 Strongly Correlated Electrons +1106.1611 Cosmology and Nongalactic Astrophysics +1106.2147 Chaotic Dynamics +1106.3173 +1106.3614 +1106.4615 +1106.4922 Quantum Gases +1106.6010 Materials Science +1107.0171 Quantum Gases +1107.0299 Statistical Mechanics +1107.1523 Dynamical Systems +1107.1554 Materials Science +1107.3527 Disordered Systems and Neural Networks +1107.4213 Quantum Gases +1107.5434 Statistical Mechanics +1108.0619 Materials Science +1108.0979 Optics +1108.1758 Phenomenology +1108.2930 Mesoscale and Nanoscale Physics +1108.5042 Combinatorics +1108.5979 Theory +1108.6271 Neurons and Cognition +1108.6295 Combinatorics +1109.0374 +1109.1814 Atmospheric and Oceanic Physics +1109.4633 Cosmology and Nongalactic Astrophysics +1109.5743 General Physics +1110.0075 Other Condensed Matter +1110.0343 Statistical Mechanics +1110.0724 Discrete Mathematics +1110.1223 +1110.1253 Phenomenology +1110.1330 Phenomenology +1110.1402 Phenomenology +1110.1678 Instrumentation and Detectors +1110.1757 Data Structures and Algorithms +1110.1979 Solar and Stellar Astrophysics +1110.2069 Differential Geometry +1110.2170 Experiment +1110.2264 Phenomenology +1110.2482 Lattice +1110.2487 Cosmology and Nongalactic Astrophysics +1110.2499 Superconductivity +1110.2500 Instrumentation and Detectors +1110.2502 Statistical Mechanics +1110.2507 Combinatorics +1110.2511 Category Theory +1110.2520 Human-Computer Interaction +1110.2521 Experiment +1110.2522 Fluid Dynamics +1110.2526 Optimization and Control +1110.2527 Optimization and Control +1110.2528 Probability +1110.2534 +1110.2539 Analysis of PDEs +1110.2551 Strongly Correlated Electrons +1110.2552 Experiment +1110.2553 +1110.2554 Algebraic Geometry +1110.2557 Information Theory +1110.2562 Instrumentation and Methods for Astrophysics +1110.2567 Algebraic Geometry +1110.2570 Commutative Algebra +1110.2572 Rings and Algebras +1110.2575 Lattice +1110.2591 High Energy Astrophysical Phenomena +1110.2595 Computers and Society +1110.2597 Probability +1110.2599 Soft Condensed Matter +1110.2602 Complex Variables +1110.2603 Statistical Finance +1110.2605 Optimization and Control +1110.2610 Information Retrieval +1110.2616 Molecular Networks +1110.2622 High Energy Astrophysical Phenomena +1110.2626 Learning +1110.2627 Computers and Society +1110.2628 Materials Science +1110.2634 Functional Analysis +1110.2640 Experiment +1110.2641 Instrumentation and Detectors +1110.2642 Probability +1110.2643 Instrumentation and Detectors +1110.2645 Superconductivity +1110.2646 Digital Libraries +1110.2647 Optics +1110.2650 Combinatorics +1110.2654 Cryptography and Security +1110.2659 Social and Information Networks +1110.2668 Geometric Topology +1110.2669 Atomic and Molecular Clusters +1110.2674 Dynamical Systems +1110.2675 Phenomenology +1110.2677 Distributed, Parallel, and Cluster Computing +1110.2692 +1110.2695 Algebraic Topology +1110.2702 Analysis of PDEs +1110.2704 Databases +1110.2706 Representation Theory +1110.2707 Analysis of PDEs +1110.2711 Physics and Society +1110.2713 Probability +1110.2715 Lattice +1110.2723 Analysis of PDEs +1110.2724 Social and Information Networks +1110.2726 Artificial Intelligence +1110.2727 Tissues and Organs +1110.2728 Artificial Intelligence +1110.2729 Artificial Intelligence +1110.2730 Artificial Intelligence +1110.2731 Artificial Intelligence +1110.2732 Artificial Intelligence +1110.2733 Computer Science and Game Theory +1110.2734 Artificial Intelligence +1110.2735 Artificial Intelligence +1110.2736 Artificial Intelligence +1110.2737 Artificial Intelligence +1110.2738 Artificial Intelligence +1110.2739 Artificial Intelligence +1110.2740 Artificial Intelligence +1110.2741 Artificial Intelligence +1110.2742 Artificial Intelligence +1110.2743 Artificial Intelligence +1110.2765 Multiagent Systems +1110.2766 Computer Science and Game Theory +1110.2767 Multiagent Systems +gr-qc/0209052 +gr-qc/0307013 +gr-qc/0401121 +hep-ph/0512066 Phenomenology +math/0503024 Analysis of PDEs +math/9803096 Algebraic Geometry +quant-ph/0606076 +0812.4275 Representation Theory +0901.2808 Methodology +0903.4513 Computer Vision and Pattern Recognition +0904.2827 Artificial Intelligence +0907.2421 Combinatorics +0912.2521 Probability +0912.4334 Algebraic Geometry +1006.1099 Symplectic Geometry +1007.4279 Cosmology and Nongalactic Astrophysics +1007.5051 Probability +1009.3863 Networking and Internet Architecture +1009.5756 Differential Geometry +1010.0232 Combinatorics +1010.3938 Number Theory +1011.4579 +1012.1033 +1101.0709 Fluid Dynamics +1102.3698 Formal Languages and Automata Theory +1102.4148 Representation Theory +1103.0229 Analysis of PDEs +1103.2223 Mesoscale and Nanoscale Physics +1104.0062 +1104.1210 Mesoscale and Nanoscale Physics +1104.3996 Phenomenology +1104.5062 Mesoscale and Nanoscale Physics +1105.0159 +1105.0657 Probability +1105.0765 +1105.1570 Quantum Gases +1105.1868 Cosmology and Nongalactic Astrophysics +1106.0121 Dynamical Systems +1106.1974 +1106.2023 Solar and Stellar Astrophysics +1106.5167 Complex Variables +1107.0282 Quantum Gases +1107.0688 Differential Geometry +1107.0809 Optics +1107.2459 +1107.2818 Mesoscale and Nanoscale Physics +1107.3010 Algebraic Topology +1107.3162 Quantum Gases +1107.3693 Strongly Correlated Electrons +1107.3961 Mesoscale and Nanoscale Physics +1107.4703 Soft Condensed Matter +1107.4898 Chemical Physics +1107.5040 Instrumentation and Methods for Astrophysics +1108.0084 Mesoscale and Nanoscale Physics +1108.2303 Atomic Physics +1108.2760 Experiment +1108.2902 Phenomenology +1108.4274 Strongly Correlated Electrons +1108.5430 Instrumentation and Methods for Astrophysics +1109.0858 Quantum Algebra +1109.1180 Phenomenology +1109.2769 Combinatorics +1109.3807 Analysis of PDEs +1109.4340 +1109.4387 Rings and Algebras +1109.4643 Strongly Correlated Electrons +1109.5651 General Physics +1109.6312 Phenomenology +1109.6387 Theory +1110.1015 Programming Languages +1110.1482 Phenomenology +1110.1725 Tissues and Organs +1110.1885 Experiment +1110.2076 Geometric Topology +1110.2162 Artificial Intelligence +1110.2196 Databases +1110.2392 Learning +1110.2472 Analysis of PDEs +1110.2582 High Energy Astrophysical Phenomena +1110.2752 Representation Theory +1110.2757 Cosmology and Nongalactic Astrophysics +1110.2773 Logic in Computer Science +1110.2785 Astrophysics of Galaxies +1110.2789 High Energy Astrophysical Phenomena +1110.2790 Analysis of PDEs +1110.2794 Analysis of PDEs +1110.2795 +1110.2796 Fluid Dynamics +1110.2798 Earth and Planetary Astrophysics +1110.2806 Combinatorics +1110.2807 Numerical Analysis +1110.2812 Fluid Dynamics +1110.2814 Popular Physics +1110.2816 Superconductivity +1110.2817 Dynamical Systems +1110.2822 Commutative Algebra +1110.2824 Computation +1110.2828 Combinatorics +1110.2835 Fluid Dynamics +1110.2837 Fluid Dynamics +1110.2839 Classical Analysis and ODEs +1110.2840 Plasma Physics +1110.2842 Probability +1110.2845 Experiment +1110.2846 Exactly Solvable and Integrable Systems +1110.2848 Cellular Automata and Lattice Gases +1110.2849 Cryptography and Security +1110.2859 Computers and Society +1110.2861 +1110.2863 Phenomenology +1110.2864 Instrumentation and Methods for Astrophysics +1110.2868 +1110.2875 Strongly Correlated Electrons +1110.2877 Experiment +1110.2880 Cosmology and Nongalactic Astrophysics +1110.2881 +1110.2885 Solar and Stellar Astrophysics +1110.2887 Differential Geometry +1110.2890 Databases +1110.2892 Solar and Stellar Astrophysics +1110.2893 Data Structures and Algorithms +1110.2896 Astrophysics of Galaxies +1110.2899 Machine Learning +1110.2913 Materials Science +1110.2914 Instrumentation and Methods for Astrophysics +1110.2915 +1110.2916 Instrumentation and Methods for Astrophysics +1110.2923 Fluid Dynamics +1110.2926 Phenomenology +1110.2928 Commutative Algebra +1110.2929 Probability +1110.2935 Combinatorics +1110.2939 Populations and Evolution +1110.2948 Statistical Mechanics +1110.2949 +1110.2953 Computational Complexity +1110.2954 Experiment +1110.2958 Biological Physics +1110.2959 Phenomenology +1110.2960 Analysis of PDEs +1110.2966 Other Quantitative Biology +1110.2970 Group Theory +1110.2971 Solar and Stellar Astrophysics +1110.2972 Phenomenology +1110.2973 Dynamical Systems +1110.2975 Fluid Dynamics +1110.2976 Algebraic Geometry +1110.2982 Populations and Evolution +1110.2983 Instrumentation and Detectors +1110.2989 Algebraic Topology +1110.2991 Experiment +1110.2996 Instrumentation and Methods for Astrophysics +1110.2998 +1110.3000 Differential Geometry +1110.3001 Optimization and Control +1110.3002 Artificial Intelligence +1110.3007 Rings and Algebras +1110.3012 Probability +1110.3017 Databases +1110.3018 Networking and Internet Architecture +1110.3022 +1110.3031 Space Physics +1110.3036 Probability +1110.3040 Representation Theory +1110.3041 Molecular Networks +cond-mat/0309041 +cond-mat/0607345 Superconductivity +0705.3281 Theory +0709.1976 Statistical Mechanics +0710.3500 Statistical Mechanics +0710.3673 Statistical Mechanics +0802.4066 Statistical Mechanics +0803.3692 Differential Geometry +0805.2116 Phenomenology +0805.2507 Mesoscale and Nanoscale Physics +0809.0453 Statistical Mechanics +0809.4643 Statistical Mechanics +0810.4464 Statistical Mechanics +0812.0704 Phenomenology +0901.1662 Theory +0901.3755 Statistical Mechanics +0903.2370 +0903.4385 Optics +0904.1847 Theory +0906.0478 Geometric Topology +0906.1766 Soft Condensed Matter +0907.0222 Soft Condensed Matter +0908.3232 General Physics +0909.4720 Materials Science +0910.1785 Phenomenology +0912.4511 Phenomenology +1001.1507 Exactly Solvable and Integrable Systems +1001.2258 Computers and Society +1001.2633 Representation Theory +1001.3482 Functional Analysis +1004.0094 Representation Theory +1006.5214 +1007.3664 Phenomenology +1007.3732 +1008.1792 Materials Science +1008.2081 Combinatorics +1008.4760 Analysis of PDEs +1009.0103 Phenomenology +1009.1232 Cosmology and Nongalactic Astrophysics +1009.1319 +1009.2117 Quantum Algebra +1009.2630 High Energy Astrophysical Phenomena +1009.3523 Phenomenology +1009.3935 +1010.1087 +1010.2656 Data Structures and Algorithms +1010.2684 Soft Condensed Matter +1011.0144 Representation Theory +1011.1885 +1011.4877 Theory +1011.5746 Logic +1011.6404 +1012.0013 +1012.0015 Phenomenology +1012.0019 +1012.0050 Theory +1012.0054 Phenomenology +1012.0074 Experiment +1012.0078 Phenomenology +1012.0086 +1012.0087 +1012.0102 Phenomenology +1012.0136 +1012.2037 Statistical Mechanics +1012.3667 Cosmology and Nongalactic Astrophysics +1012.5138 Soft Condensed Matter +1101.0246 Optimization and Control +1101.0588 +1101.5989 Phenomenology +1102.0984 Superconductivity +1102.2220 Phenomenology +1102.2720 +1102.3293 Functional Analysis +1102.3671 Numerical Analysis +1102.4639 Social and Information Networks +1103.0184 Phenomenology +1103.1637 Strongly Correlated Electrons +1103.2127 Phenomenology +1103.2145 Phenomenology +1103.3156 Theory +1103.3358 Theory +1103.5458 Quantitative Methods +1103.5688 Theory +1103.5859 Classical Analysis and ODEs +1103.6027 Theory +1104.0183 Systems and Control +1104.1187 Theory +1104.1973 Phenomenology +1104.2219 Phenomenology +1104.2757 Mesoscale and Nanoscale Physics +1104.2812 Materials Science +1104.2884 Theory +1104.3357 High Energy Astrophysical Phenomena +1104.3591 Phenomenology +1104.3688 +1104.4019 Theory +1104.4101 Lattice +1104.4200 Theory +1104.5398 Phenomenology +1104.5410 Phenomenology +1104.5446 +1104.5475 Phenomenology +1104.5491 Mesoscale and Nanoscale Physics +1105.0252 Phenomenology +1105.0554 Mesoscale and Nanoscale Physics +1105.0773 Phenomenology +1105.1431 Phenomenology +1105.1654 Phenomenology +1105.1770 Phenomenology +1105.1806 Experiment +1105.2209 Phenomenology +1105.2533 Phenomenology +1105.2540 Theory +1105.2674 Theory +1105.2848 Phenomenology +1105.2885 Theory +1105.2959 +1105.4114 Phenomenology +1105.4356 Phenomenology +1105.5055 Operating Systems +1105.5212 +1105.5292 Cosmology and Nongalactic Astrophysics +1105.5308 Theory +1105.5629 +1105.5729 Complex Variables +1105.6025 Phenomenology +1105.6335 Theory +1106.1168 Theory +1106.1375 Phenomenology +1106.1599 Phenomenology +1106.3593 +1106.3880 Phenomenology +1106.4041 Phenomenology +1106.4437 +1106.4562 Cosmology and Nongalactic Astrophysics +1106.5023 Phenomenology +1106.5118 Experiment +1106.5674 +1106.6222 +1107.0570 Phenomenology +1107.0713 Theory +1107.2646 Phenomenology +1107.2959 +1107.4398 Strongly Correlated Electrons +1107.4610 Cosmology and Nongalactic Astrophysics +1108.0403 Cosmology and Nongalactic Astrophysics +1108.1235 Numerical Analysis +1108.1531 Optics +1108.1979 Quantitative Methods +1108.3892 Theory +1109.0618 High Energy Astrophysical Phenomena +1109.0670 Other Condensed Matter +1109.0766 Cryptography and Security +1109.0846 Optics +1109.1025 Experiment +1109.1151 Information Theory +1109.1183 Numerical Analysis +1109.1287 Analysis of PDEs +1109.1294 +1109.1295 Physics Education +1109.1296 Tissues and Organs +1109.1298 Analysis of PDEs +1109.1307 Instrumentation and Methods for Astrophysics +1109.1310 Phenomenology +1109.1311 Mesoscale and Nanoscale Physics +1109.1313 Instrumentation and Methods for Astrophysics +1109.1314 Artificial Intelligence +1109.1317 Logic in Computer Science +1109.1319 Geometric Topology +1109.1321 Genomics +1109.1324 Solar and Stellar Astrophysics +1109.1330 Cosmology and Nongalactic Astrophysics +1109.1332 Analysis of PDEs +1109.1336 Differential Geometry +1109.1342 Numerical Analysis +1109.1345 Differential Geometry +1109.1348 Number Theory +1109.1351 Solar and Stellar Astrophysics +1109.1352 Group Theory +1109.1353 Space Physics +1109.1355 Discrete Mathematics +1109.1359 Databases +1109.1362 Experiment +1109.1363 Logic in Computer Science +1109.1364 Computational Engineering, Finance, and Science +1109.1365 Computational Engineering, Finance, and Science +1109.1366 Computational Engineering, Finance, and Science +1109.1367 Computational Engineering, Finance, and Science +1109.1373 Optics +1109.1375 Phenomenology +1109.1376 Biological Physics +1109.1382 +1109.1391 Commutative Algebra +1109.1394 Experiment +1109.1397 +1109.1398 History and Philosophy of Physics +1109.1402 Applications +1109.1414 Materials Science +1109.1416 Logic +1109.1420 Programming Languages +1109.1421 Programming Languages +1109.1423 Algebraic Geometry +1109.1425 Biological Physics +1109.1432 Functional Analysis +1109.1436 Cosmology and Nongalactic Astrophysics +1109.1438 Experiment +1109.1440 Algebraic Topology +1109.1446 Numerical Analysis +1109.1447 +1109.1451 Combinatorics +1109.1455 Number Theory +1109.1457 Cosmology and Nongalactic Astrophysics +1109.1458 Chemical Physics +1109.1461 Physics and Society +1109.1462 Quantitative Methods +1109.1471 General Physics +1109.1472 Differential Geometry +1109.1474 Solar and Stellar Astrophysics +1109.1477 Statistics Theory +1109.1478 Earth and Planetary Astrophysics +1109.1480 Computer Vision and Pattern Recognition +1109.1483 Mesoscale and Nanoscale Physics +1109.1486 Materials Science +1109.1489 Representation Theory +1109.1492 Solar and Stellar Astrophysics +1109.1493 Materials Science +1109.1495 Subcellular Processes +1109.1498 Artificial Intelligence +1109.1500 Phenomenology +1109.1505 Dynamical Systems +1109.1511 Materials Science +1109.1513 Algebraic Geometry +1109.1517 Computational Geometry +1109.1525 Digital Libraries +1109.1529 Quantum Algebra +1109.1538 Representation Theory +1109.1539 Phenomenology +1109.1543 Analysis of PDEs +1109.1546 Probability +cond-mat/0510137 Materials Science +cond-mat/0608576 Superconductivity +hep-ph/0611246 Phenomenology +math/0304350 Logic +math/0306066 Algebraic Geometry +quant-ph/0412011 +0707.4091 Other Condensed Matter +0802.0555 Phenomenology +0804.3439 Information Theory +0904.1906 Number Theory +0904.2309 Analysis of PDEs +0905.1343 Number Theory +0907.0566 Analysis of PDEs +0910.3517 Strongly Correlated Electrons +0911.2161 Chaotic Dynamics +0912.3506 Analysis of PDEs +0912.4190 Operator Algebras +1001.0534 Differential Geometry +1004.3172 Symplectic Geometry +1009.2517 Algebraic Geometry +1009.3867 +1009.5964 +1010.0114 Quantum Gases +1010.2431 Number Theory +1010.3334 Number Theory +1011.3923 Statistical Mechanics +1011.4876 Strongly Correlated Electrons +1012.5188 Superconductivity +1102.1029 Disordered Systems and Neural Networks +1103.0313 Group Theory +1103.0315 Group Theory +1103.2756 Information Retrieval +1103.5794 Distributed, Parallel, and Cluster Computing +1104.1947 Metric Geometry +1104.2129 +1104.3483 Mesoscale and Nanoscale Physics +1104.5369 Optimization and Control +1105.2520 Atomic and Molecular Clusters +1105.3363 Statistical Mechanics +1106.0771 Superconductivity +1106.2408 +1106.2552 Quantum Gases +1106.2689 Superconductivity +1106.4119 Algebraic Geometry +1106.5152 +1106.6191 Rings and Algebras +1107.0505 +1107.0888 +1107.3072 +1107.4107 Chaotic Dynamics +1107.4612 Cosmology and Nongalactic Astrophysics +1107.5028 Theory +1108.0169 Functional Analysis +1108.1002 Spectral Theory +1108.1283 Metric Geometry +1108.1599 Strongly Correlated Electrons +1108.2046 Superconductivity +1108.2607 Mesoscale and Nanoscale Physics +1108.2608 Theory +1108.3661 Numerical Analysis +1109.0979 Superconductivity +1109.1205 Strongly Correlated Electrons +1109.2642 Phenomenology +1109.3456 +1109.3678 Probability +1109.4631 Statistical Mechanics +1109.4844 Probability +1109.5228 Differential Geometry +1109.5549 +1109.6559 Group Theory +1110.0391 Algebraic Geometry +1110.0878 Mesoscale and Nanoscale Physics +1110.1369 Cosmology and Nongalactic Astrophysics +1110.2874 Phenomenology +1110.3719 Phenomenology +1110.3799 Astrophysics of Galaxies +1110.3829 Strongly Correlated Electrons +1110.3991 Theory +1111.0523 High Energy Astrophysical Phenomena +1111.1025 Phenomenology +1111.1568 Statistical Mechanics +1111.1711 Instrumentation and Detectors +1111.2224 Theory +1111.6152 Materials Science +1112.0220 Probability +1112.2290 Number Theory +1112.2555 Functional Analysis +1112.3259 Number Theory +1112.4008 Algebraic Geometry +1112.4108 Mesoscale and Nanoscale Physics +1112.4131 Probability +1112.4281 Instrumentation and Detectors +1112.4379 Rings and Algebras +1112.4604 Distributed, Parallel, and Cluster Computing +1112.4628 Neural and Evolutionary Computing +1112.4735 Statistics Theory +1112.4739 Optics +1112.4820 Theory +1112.4840 Materials Science +1112.4844 Theory +1112.4853 Strongly Correlated Electrons +1112.4856 +1112.4857 K-Theory and Homology +1112.4861 Lattice +1112.4867 Optics +1112.4873 Earth and Planetary Astrophysics +1112.4874 Dynamical Systems +1112.4875 Classical Analysis and ODEs +1112.4883 Information Theory +1112.4888 Phenomenology +1112.4889 Number Theory +1112.4899 Representation Theory +1112.4902 Analysis of PDEs +1112.4906 Neural and Evolutionary Computing +1112.4907 Tissues and Organs +1112.4908 Populations and Evolution +1112.4912 Mesoscale and Nanoscale Physics +1112.4914 Materials Science +1112.4915 Social and Information Networks +1112.4918 +1112.4921 Numerical Analysis +1112.4922 Cosmology and Nongalactic Astrophysics +1112.4923 Functional Analysis +1112.4926 Solar and Stellar Astrophysics +1112.4927 Cosmology and Nongalactic Astrophysics +1112.4936 Materials Science +1112.4938 Materials Science +1112.4939 Solar and Stellar Astrophysics +1112.4941 Cryptography and Security +1112.4942 Representation Theory +1112.4947 Combinatorics +1112.4948 Plasma Physics +1112.4949 Representation Theory +1112.4950 Classical Analysis and ODEs +1112.4952 Molecular Networks +1112.4953 Materials Science +1112.4954 Representation Theory +1112.4958 +1112.4964 Theory +1112.4968 Probability +1112.4972 +1112.4973 +1112.4977 Materials Science +1112.4979 Number Theory +1112.4980 Distributed, Parallel, and Cluster Computing +1112.4981 Analysis of PDEs +1112.4984 Materials Science +1112.4987 Neurons and Cognition +1112.4988 Probability +1112.4990 Logic +1112.4992 Cosmology and Nongalactic Astrophysics +1112.4993 Programming Languages +1112.4994 Phenomenology +1112.4996 Differential Geometry +1112.4997 +1112.5000 Programming Languages +1112.5001 Superconductivity +1112.5006 Populations and Evolution +1112.5010 Superconductivity +1112.5011 Geometric Topology +1112.5015 Combinatorics +1112.5017 Accelerator Physics +1112.5029 Number Theory +1112.5030 Number Theory +1112.5033 +1112.5034 Symplectic Geometry +1112.5037 Differential Geometry +1112.5044 High Energy Astrophysical Phenomena +1112.5048 General Physics +1112.5050 Optimization and Control +1112.5054 Plasma Physics +1112.5057 Phenomenology +1112.5061 Phenomenology +1112.5062 Strongly Correlated Electrons +1112.5069 Physics Education +1112.5072 Number Theory +1112.5076 Phenomenology +1112.5080 Optics +1112.5081 Phenomenology +1112.5084 Instrumentation and Detectors +1112.5085 Optics +1112.5087 Probability +1112.5090 Number Theory +1112.5092 Numerical Analysis +1112.5093 Cosmology and Nongalactic Astrophysics +1112.5094 Instrumentation and Methods for Astrophysics +1112.5098 Superconductivity +1112.5103 Dynamical Systems +1112.5110 +1112.5113 Phenomenology +1112.5116 Neural and Evolutionary Computing +1112.5123 Statistics Theory +1112.5125 Differential Geometry +1112.5130 Methodology +1112.5131 Number Theory +1112.5132 Chemical Physics +1112.5135 Analysis of PDEs +1112.5136 Operating Systems +1112.5144 Exactly Solvable and Integrable Systems +1112.5152 Networking and Internet Architecture +1112.5157 Combinatorics +1112.5160 Lattice +quant-ph/0405187 +0708.1867 Differential Geometry +0802.0831 Superconductivity +0804.0138 Superconductivity +0807.1810 Probability +0808.1714 Differential Geometry +0809.2124 Classical Analysis and ODEs +0809.4993 Strongly Correlated Electrons +0810.2225 +0810.5711 +0902.4055 Strongly Correlated Electrons +0903.3996 Combinatorics +0905.3040 Probability +0907.0510 Adaptation and Self-Organizing Systems +0907.1284 Strongly Correlated Electrons +0909.4512 Differential Geometry +0910.0265 Combinatorics +0910.2586 Adaptation and Self-Organizing Systems +0911.0169 +0911.1725 Superconductivity +0911.2435 Operator Algebras +0912.1961 Adaptation and Self-Organizing Systems +0912.5132 Representation Theory +1001.3404 Information Theory +1001.4851 Earth and Planetary Astrophysics +1002.3989 Networking and Internet Architecture +1003.1580 Numerical Analysis +1004.3772 Theory +1004.5131 Atomic Physics +1005.4160 +1007.3599 +1009.5299 Strongly Correlated Electrons +1010.4500 Materials Science +1011.3373 Combinatorics +1101.3104 Strongly Correlated Electrons +1101.4124 Mesoscale and Nanoscale Physics +1102.5477 Optics +1103.2400 +1104.1847 Fluid Dynamics +1104.3110 Probability +1105.2129 Instrumentation and Methods for Astrophysics +1105.2680 Quantum Algebra +1105.3180 Pricing of Securities +1105.3432 Other Condensed Matter +1105.5496 Statistical Mechanics +1105.5580 Phenomenology +1105.5626 Strongly Correlated Electrons +1106.0458 Statistical Mechanics +1106.2144 Theory +1106.3918 Mesoscale and Nanoscale Physics +1106.3941 Mesoscale and Nanoscale Physics +1106.4658 Phenomenology +1106.5475 Theory +1106.6314 Experiment +1107.3705 +1107.5353 Differential Geometry +1107.5388 +1107.5391 +1107.5683 +1107.5684 +1107.5685 +1107.5686 +1107.5689 +1107.5691 +1107.5876 +1108.1201 Theory +1108.1676 Information Theory +1108.3001 High Energy Astrophysical Phenomena +1108.3333 Phenomenology +1108.3644 +1108.3879 Statistical Mechanics +1108.4342 +1108.4500 Number Theory +1108.4684 Phenomenology +1108.5268 Strongly Correlated Electrons +1108.5993 Quantum Gases +1109.0600 Fluid Dynamics +1109.1131 Materials Science +1109.1858 Mesoscale and Nanoscale Physics +1109.3168 Operator Algebras +1109.4153 Theory +1109.4578 Representation Theory +1109.4971 +1109.5261 Statistics Theory +1109.5658 Statistical Mechanics +1110.0263 Representation Theory +1110.3682 Theory +1110.5730 Materials Science +1110.5735 Materials Science +1110.5858 Phenomenology +1110.6266 Strongly Correlated Electrons +1110.6736 Logic +1111.1519 Superconductivity +1111.2728 Analysis of PDEs +1111.5167 Numerical Analysis +1111.5643 Phenomenology +1111.6142 Mesoscale and Nanoscale Physics +1111.6524 Number Theory +1111.7280 Discrete Mathematics +1112.1300 Cosmology and Nongalactic Astrophysics +1112.2117 Probability +1112.2313 Logic in Computer Science +1112.2877 Differential Geometry +1112.2930 Data Structures and Algorithms +1112.3040 Cosmology and Nongalactic Astrophysics +1112.3046 Populations and Evolution +1112.3047 Rings and Algebras +1112.3050 Phenomenology +1112.3052 Computer Science and Game Theory +1112.3053 Logic in Computer Science +1112.3062 Distributed, Parallel, and Cluster Computing +1112.3064 Commutative Algebra +1112.3065 Dynamical Systems +1112.3066 Combinatorics +1112.3073 Metric Geometry +1112.3074 Cellular Automata and Lattice Gases +1112.3076 Category Theory +1112.3078 +1112.3079 Lattice +1112.3084 Analysis of PDEs +1112.3089 Algebraic Geometry +1112.3092 Instrumentation and Methods for Astrophysics +1112.3097 Number Theory +1112.3104 Solar and Stellar Astrophysics +1112.3106 Geometric Topology +1112.3107 Earth and Planetary Astrophysics +1112.3109 Differential Geometry +1112.3110 Graphics +1112.3113 Earth and Planetary Astrophysics +1112.3115 Adaptation and Self-Organizing Systems +1112.3116 Cosmology and Nongalactic Astrophysics +1112.3117 Adaptation and Self-Organizing Systems +1112.3127 Representation Theory +1112.3128 Rings and Algebras +1112.3129 Phenomenology +1112.3131 Instrumentation and Methods for Astrophysics +1112.3134 Databases +1112.3135 Quantum Algebra +1112.3139 Probability +1112.3140 Functional Analysis +1112.3143 Cosmology and Nongalactic Astrophysics +1112.3145 Dynamical Systems +1112.3148 Probability +1112.3149 Statistics Theory +1112.3150 Analysis of PDEs +1112.3152 Analysis of PDEs +1112.3156 Functional Analysis +1112.3159 Analysis of PDEs +1112.3165 High Energy Astrophysical Phenomena +1112.3168 Formal Languages and Automata Theory +1112.3175 History and Philosophy of Physics +1112.3176 Analysis of PDEs +1112.3177 Accelerator Physics +1112.3180 +1112.3185 +1112.3195 Number Theory +1112.3198 Logic in Computer Science +1112.3199 Analysis of PDEs +1112.3200 Analysis of PDEs +1112.3201 Accelerator Physics +1112.3203 Accelerator Physics +1112.3209 Accelerator Physics +1112.3216 Analysis of PDEs +1112.3219 Spectral Theory +1112.3221 Accelerator Physics +1112.3222 +1112.3226 Accelerator Physics +1112.3228 Statistics Theory +1112.3231 Dynamical Systems +1112.3232 Accelerator Physics +1112.3233 Computational Physics +1112.3235 Atmospheric and Oceanic Physics +1112.3247 +1112.3248 Solar and Stellar Astrophysics +1112.3253 Statistical Mechanics +1112.3254 Combinatorics +1112.3255 Combinatorics +1112.3256 Earth and Planetary Astrophysics +1112.3261 Analysis of PDEs +1112.3263 Differential Geometry +1112.3267 Analysis of PDEs +1112.3268 Soft Condensed Matter +1112.3272 Quantum Gases +1112.3278 Materials Science +1112.3290 Optimization and Control +1112.3293 Disordered Systems and Neural Networks +1112.3294 Instrumentation and Methods for Astrophysics +1112.3297 +1112.3300 Cosmology and Nongalactic Astrophysics +1112.3302 Combinatorics +1112.3307 Information Theory +1112.3317 +1112.3318 Theory +1112.3320 Combinatorics +1112.3321 Number Theory +1112.3323 Data Structures and Algorithms +1112.3325 Quantum Gases +1112.3328 Functional Analysis +1112.3330 +1112.3333 +1112.3337 +gr-qc/0404020 +hep-th/9206075 Theory +math/0304059 Representation Theory +math/0405516 Symplectic Geometry +math/0509442 Differential Geometry +math/0608282 Differential Geometry +math/0703450 Differential Geometry +0811.0186 +0812.2221 +0902.4724 Theory +0907.4249 +0908.1968 Phenomenology +1005.1024 Phenomenology +1005.5480 High Energy Astrophysical Phenomena +1006.0655 Phenomenology +1006.3762 Theory +1006.4142 Lattice +1009.6095 Phenomenology +1012.2848 Portfolio Management +0705.1559 Soft Condensed Matter +0706.0939 Strongly Correlated Electrons +0706.2868 Category Theory +0707.1980 Other Condensed Matter +0709.0641 Optics +0710.4626 Materials Science +0711.0104 Materials Science +0802.0036 General Physics +0802.1361 Computational Geometry +0803.2566 +0804.2080 Quantum Algebra +0810.3335 Algebraic Geometry +0812.0975 Soft Condensed Matter +0902.0390 Analysis of PDEs +0902.1148 Probability +0903.1687 Strongly Correlated Electrons +0903.2792 Information Theory +0903.4383 Number Theory +0904.0383 General Physics +0904.3691 +0905.0663 Analysis of PDEs +0905.2993 Probability +0906.4431 Computational Complexity +0907.1356 Number Theory +0907.2460 Category Theory +0907.4712 Number Theory +0908.3816 Statistical Mechanics +0909.2526 Information Theory +0910.4858 Pattern Formation and Solitons +0910.5018 Rings and Algebras +0911.1405 Materials Science +0911.2301 Algebraic Geometry +0911.2533 Superconductivity +0911.3524 Representation Theory +0911.4572 Probability +0911.5510 Rings and Algebras +0912.3757 Differential Geometry +0912.5461 Algebraic Geometry +1001.0737 Classical Analysis and ODEs +1002.0565 Chemical Physics +1002.0605 Operator Algebras +1002.1413 Instrumentation and Methods for Astrophysics +1002.4356 Cosmology and Nongalactic Astrophysics +1002.4427 Combinatorics +1003.0443 Probability +1003.1866 Algebraic Geometry +1003.1999 Number Theory +1003.2152 Commutative Algebra +1003.4561 Classical Analysis and ODEs +1003.5117 Group Theory +1003.5326 Computer Science and Game Theory +1004.2975 +1005.0711 Strongly Correlated Electrons +1005.3354 Strongly Correlated Electrons +1005.4684 Phenomenology +1006.0771 Disordered Systems and Neural Networks +1006.0776 Disordered Systems and Neural Networks +1006.1048 Mesoscale and Nanoscale Physics +1006.3105 Complex Variables +1006.5122 Group Theory +1007.0951 +1007.3694 Quantum Gases +1007.4607 Quantum Gases +1008.0143 Networking and Internet Architecture +1008.1385 +1008.1526 Spectral Theory +1008.1913 Mesoscale and Nanoscale Physics +1008.2495 Mesoscale and Nanoscale Physics +1008.2583 Combinatorics +1008.2659 Phenomenology +1008.2675 +1008.3420 Cosmology and Nongalactic Astrophysics +1008.4853 +1008.4888 Analysis of PDEs +1009.1149 Cosmology and Nongalactic Astrophysics +1009.3872 Analysis of PDEs +1009.4163 Differential Geometry +1009.6128 Statistical Mechanics +1010.0621 Machine Learning +1010.3087 Probability +1010.3319 Information Theory +1010.3767 +1010.5072 Cosmology and Nongalactic Astrophysics +1010.5313 +1011.0415 Statistics Theory +1011.1297 Atomic Physics +1011.1457 Classical Analysis and ODEs +1011.1498 Cosmology and Nongalactic Astrophysics +1011.4087 +1011.4741 Chemical Physics +1011.5654 Statistical Mechanics +1011.5663 Instrumentation and Methods for Astrophysics +1011.6446 Superconductivity +1012.0875 +1012.3874 Quantum Gases +1012.4106 Algebraic Geometry +1012.4539 Combinatorics +1012.5091 Theory +1012.5617 Combinatorics +1101.0637 Differential Geometry +1101.0705 Geometric Topology +1101.2594 Quantum Gases +1101.2850 Statistical Mechanics +1101.2860 Optics +1101.3654 Statistical Mechanics +1101.3981 Combinatorics +1101.4289 History and Overview +1101.4290 History and Philosophy of Physics +1101.5664 Materials Science +1102.1301 +1102.1780 Representation Theory +1102.2216 Information Theory +1102.2775 Optics +1102.3540 Functional Analysis +1102.3767 +1102.4133 Mesoscale and Nanoscale Physics +1102.4518 Software Engineering +1102.5339 +1102.5347 Combinatorics +1102.5355 Number Theory +1102.5357 Information Theory +1102.5361 Combinatorics +1102.5362 Soft Condensed Matter +1102.5373 Materials Science +1102.5380 +1102.5381 Information Theory +1102.5386 Information Theory +1102.5387 Materials Science +1102.5388 Information Theory +1102.5391 Combinatorics +1102.5394 General Physics +1102.5395 +1102.5396 Statistical Mechanics +1102.5400 Information Theory +1102.5401 Optimization and Control +1102.5404 Group Theory +1102.5405 General Finance +1102.5406 Optics +1102.5408 Lattice +1102.5409 Combinatorics +1102.5410 Instrumentation and Methods for Astrophysics +1102.5413 Experiment +1102.5418 Information Theory +1102.5422 Mesoscale and Nanoscale Physics +1102.5424 Commutative Algebra +1102.5425 Computational Complexity +1102.5428 Neurons and Cognition +1102.5432 Analysis of PDEs +1102.5436 Analysis of PDEs +1102.5442 Information Theory +1102.5447 General Physics +1102.5449 Formal Languages and Automata Theory +1102.5450 Data Structures and Algorithms +1102.5451 Formal Languages and Automata Theory +1102.5453 Phenomenology +1102.5455 Differential Geometry +1102.5456 Combinatorics +1102.5463 Computational Geometry +1102.5464 Rings and Algebras +1102.5467 Classical Analysis and ODEs +1102.5476 Superconductivity +1102.5478 Data Structures and Algorithms +1102.5479 Group Theory +1102.5480 +1102.5491 Probability +1102.5497 Programming Languages +1102.5498 Statistical Mechanics +1102.5501 Probability +1102.5502 Solar and Stellar Astrophysics +1102.5503 Statistical Mechanics +1102.5507 Materials Science +1102.5509 Machine Learning +1102.5511 Physics and Society +1102.5513 Instrumentation and Methods for Astrophysics +1102.5514 Experiment +1102.5515 Group Theory +1102.5516 Superconductivity +1102.5517 Group Theory +1102.5520 Phenomenology +1102.5521 Other Condensed Matter +1102.5523 Discrete Mathematics +1102.5525 Pricing of Securities +1102.5527 Combinatorics +1102.5531 Lattice +1102.5533 Algebraic Topology +1102.5535 Information Theory +1102.5537 Analysis of PDEs +1102.5539 Cosmology and Nongalactic Astrophysics +1102.5542 Analysis of PDEs +1102.5543 Combinatorics +1102.5545 +1102.5546 +1102.5547 Number Theory +1102.5548 Experiment +1102.5551 Group Theory +1102.5554 Dynamical Systems +1102.5557 Classical Analysis and ODEs +1102.5563 Dynamical Systems +1102.5568 Combinatorics +1102.5570 +1102.5577 Metric Geometry +1102.5579 Analysis of PDEs +1102.5582 Phenomenology +1102.5583 Analysis of PDEs +1102.5584 Logic in Computer Science +1102.5585 Cryptography and Security +1102.5586 Cryptography and Security +1102.5588 Classical Analysis and ODEs +1102.5590 Classical Analysis and ODEs +1102.5596 Classical Analysis and ODEs +1102.5601 Combinatorics +1102.5604 Populations and Evolution +1102.5606 Probability +1102.5617 Materials Science +1102.5619 Probability +1102.5629 Phenomenology +1102.5630 Symplectic Geometry +1102.5632 Materials Science +1102.5635 Artificial Intelligence +1102.5639 Statistical Mechanics +1102.5641 Information Theory +1102.5642 Differential Geometry +1102.5643 Information Theory +1102.5647 Physics and Society +1102.5651 +1102.5654 Materials Science +1102.5655 Materials Science +1102.5656 Materials Science +1102.5660 Mesoscale and Nanoscale Physics +1102.5661 Analysis of PDEs +1102.5664 Geometric Topology +1102.5665 Portfolio Management +1102.5668 General Mathematics +1102.5670 Other Computer Science +1102.5671 Operator Algebras +1102.5680 Probability +1102.5681 Superconductivity +1102.5682 Formal Languages and Automata Theory +1102.5684 Dynamical Systems +1102.5688 Computer Vision and Pattern Recognition +1102.5691 Probability +1102.5692 Classical Analysis and ODEs +1102.5699 Multimedia +1102.5701 High Energy Astrophysical Phenomena +1102.5703 Fluid Dynamics +1102.5704 Cellular Automata and Lattice Gases +1102.5705 High Energy Astrophysical Phenomena +1102.5711 Mathematical Software +1102.5715 +1102.5718 Combinatorics +1102.5720 History and Overview +1102.5721 Methodology +1102.5723 +1102.5724 Information Theory +1102.5727 Combinatorics +1102.5728 Information Retrieval +1102.5729 Cosmology and Nongalactic Astrophysics +1102.5732 Differential Geometry +1102.5741 Algebraic Geometry +1102.5744 Materials Science +1102.5747 General Finance +1102.5748 +1102.5750 Machine Learning +1102.5752 General Finance +1102.5757 Neural and Evolutionary Computing +1102.5758 Materials Science +1102.5762 Combinatorics +1102.5764 Number Theory +1102.5769 Multimedia +1102.5771 Analysis of PDEs +1102.5774 Analysis of PDEs +astro-ph/9505118 +cond-mat/0702073 Materials Science +cond-mat/0702259 Materials Science +hep-th/0209143 Theory +0705.2332 Rings and Algebras +0708.2584 +0711.4268 Rings and Algebras +0712.2816 Probability +0803.0378 Logic in Computer Science +0804.3348 +0901.1717 Rings and Algebras +0905.4198 Disordered Systems and Neural Networks +0907.3529 Quantitative Methods +0908.1831 Algebraic Geometry +0910.2530 +0910.4584 Phenomenology +0912.4269 Statistics Theory +1001.4524 Phenomenology +1002.4690 Numerical Analysis +1005.3906 Geometric Topology +1006.2294 Pricing of Securities +1006.3795 Phenomenology +1007.0180 High Energy Astrophysical Phenomena +1007.2333 Astrophysics of Galaxies +1007.5458 Quantum Algebra +1008.1426 Combinatorics +1008.1568 Superconductivity +1008.2825 General Physics +1010.1179 Mesoscale and Nanoscale Physics +1010.1622 +1010.1720 Astrophysics of Galaxies +1010.4672 Systems and Control +1011.2178 Combinatorics +1011.2767 +1011.3831 Strongly Correlated Electrons +1011.4934 Cosmology and Nongalactic Astrophysics +1011.5885 +1011.6295 +1101.0215 Theory +1101.1821 Astrophysics of Galaxies +1101.3197 Number Theory +1102.2215 Superconductivity +1102.2404 +1102.2476 High Energy Astrophysical Phenomena +1102.2622 Earth and Planetary Astrophysics +1102.2835 Differential Geometry +1102.4229 +1102.4448 +1102.5067 Probability +1102.5238 Probability +1103.1317 Phenomenology +1103.1376 Earth and Planetary Astrophysics +1103.4002 Optics +1103.4294 +1104.0050 Differential Geometry +1104.0159 +1104.0203 Strongly Correlated Electrons +1104.0775 Neural and Evolutionary Computing +1104.2683 Complex Variables +1105.3581 +1105.6195 Differential Geometry +1106.0655 Analysis of PDEs +1106.1035 High Energy Astrophysical Phenomena +1106.1218 High Energy Astrophysical Phenomena +1106.1364 Logic in Computer Science +1106.1366 Symplectic Geometry +1106.1409 Earth and Planetary Astrophysics +1106.1451 Methodology +1106.1973 Combinatorics +1106.2369 Learning +1106.2494 Machine Learning +1106.2753 Number Theory +1106.2791 Methodology +1106.2796 Instrumentation and Methods for Astrophysics +1106.2992 Performance +1106.3077 Computation and Language +1106.3090 Strongly Correlated Electrons +1106.3091 General Physics +1106.3092 Algebraic Geometry +1106.3096 Number Theory +1106.3098 Combinatorics +1106.3099 Number Theory +1106.3112 Representation Theory +1106.3113 High Energy Astrophysical Phenomena +1106.3114 Strongly Correlated Electrons +1106.3117 Experiment +1106.3119 Experiment +1106.3120 Algebraic Geometry +1106.3126 Data Structures and Algorithms +1106.3134 Multiagent Systems +1106.3136 Algebraic Geometry +1106.3140 Commutative Algebra +1106.3141 Instrumentation and Methods for Astrophysics +1106.3143 Operator Algebras +1106.3146 Materials Science +1106.3151 Complex Variables +1106.3155 Disordered Systems and Neural Networks +1106.3162 Instrumentation and Detectors +1106.3166 Tissues and Organs +1106.3176 Other Computer Science +1106.3181 Methodology +1106.3189 Phenomenology +1106.3190 Algebraic Geometry +1106.3191 Materials Science +1106.3192 Disordered Systems and Neural Networks +1106.3193 Number Theory +1106.3201 Mesoscale and Nanoscale Physics +1106.3203 Methodology +1106.3204 Analysis of PDEs +1106.3211 Methodology +1106.3212 Experiment +1106.3213 Mesoscale and Nanoscale Physics +1106.3214 Functional Analysis +1106.3215 Strongly Correlated Electrons +1106.3218 Atomic Physics +1106.3220 Methodology +1106.3223 Rings and Algebras +1106.3227 Mesoscale and Nanoscale Physics +1106.3231 Soft Condensed Matter +1106.3236 Soft Condensed Matter +1106.3241 Quantum Algebra +1106.3245 Instrumentation and Methods for Astrophysics +1106.3248 Dynamical Systems +1106.3254 +1106.3258 +1106.3262 Phenomenology +1106.3269 Numerical Analysis +1106.3274 Statistical Mechanics +1106.3276 Information Theory +1106.3277 Statistical Mechanics +1106.3280 Number Theory +1106.3286 Information Theory +1106.3292 Probability +1106.3296 Combinatorics +1106.3304 Dynamical Systems +1106.3306 Probability +1106.3308 Phenomenology +1106.3309 Dynamical Systems +1106.3310 Logic +1106.3315 Geophysics +1106.3319 Phenomenology +1106.3324 Astrophysics of Galaxies +1106.3325 Distributed, Parallel, and Cluster Computing +cond-mat/0210173 +cs/0312007 Computational Complexity +0711.4407 Combinatorics +0803.3885 Differential Geometry +0803.4479 General Physics +0902.1901 Algebraic Geometry +0903.3969 Dynamical Systems +0903.5156 +0904.2975 Algebraic Geometry +0906.1867 Algebraic Geometry +0907.1714 +0907.4017 Logic +0907.4858 Differential Geometry +0908.0440 +0909.3614 Probability +0909.5670 Representation Theory +0910.3386 Instrumentation and Methods for Astrophysics +0910.5479 Theory +0910.5550 Number Theory +0911.2245 Superconductivity +0912.1398 Commutative Algebra +1003.1607 Differential Geometry +1003.3267 Phenomenology +1004.1377 Commutative Algebra +1004.4338 Category Theory +1004.5048 Biomolecules +1005.2901 Probability +1005.3641 Disordered Systems and Neural Networks +1005.5621 Algebraic Geometry +1006.0091 Functional Analysis +1006.3523 Probability +1006.4048 Analysis of PDEs +1006.4804 Classical Analysis and ODEs +1007.0750 Mesoscale and Nanoscale Physics +1007.1712 Combinatorics +1007.4432 Instrumentation and Detectors +1008.1418 Mesoscale and Nanoscale Physics +1008.1784 Phenomenology +1008.2072 Theory +1008.2936 Combinatorics +1008.3768 Differential Geometry +1008.5371 General Topology +1009.0541 +1009.2467 +1009.2506 Mesoscale and Nanoscale Physics +1009.3870 Symplectic Geometry +1009.4677 Probability +1009.5225 Classical Analysis and ODEs +1009.6010 Superconductivity +1010.2016 +1010.3545 Superconductivity +1011.1272 History and Philosophy of Physics +1011.2039 Rings and Algebras +1011.2699 Quantitative Methods +1011.3548 Solar and Stellar Astrophysics +1012.2109 Mesoscale and Nanoscale Physics +1012.2294 Programming Languages +1012.3435 Materials Science +1012.3965 Instrumentation and Detectors +1012.5517 Mesoscale and Nanoscale Physics +1101.5680 Strongly Correlated Electrons +1102.1275 Combinatorics +1102.1418 Statistical Mechanics +1102.2294 Theory +1102.4243 Operator Algebras +1102.4840 +1102.5170 +1103.0612 Methodology +1103.1835 Strongly Correlated Electrons +1103.3822 Theory +1103.3996 Quantum Gases +1103.4213 Instrumentation and Detectors +1103.4768 Combinatorics +1103.5555 Statistical Finance +1104.2496 Mesoscale and Nanoscale Physics +1104.2580 Computer Vision and Pattern Recognition +1104.2951 Probability +1104.3131 Optimization and Control +1104.3633 Strongly Correlated Electrons +1104.4051 Combinatorics +1104.5151 Functional Analysis +1105.3134 Mesoscale and Nanoscale Physics +1105.4390 Theory +1106.1338 Mesoscale and Nanoscale Physics +1106.2946 Information Retrieval +1106.6285 Mesoscale and Nanoscale Physics +1107.1763 Analysis of PDEs +1107.4188 Soft Condensed Matter +1107.4555 Mesoscale and Nanoscale Physics +1107.4682 Materials Science +1107.5536 Strongly Correlated Electrons +1107.5801 Materials Science +1108.0095 Number Theory +1108.0156 Mesoscale and Nanoscale Physics +1108.0956 +1108.1228 Databases +1108.1233 Computer Science and Game Theory +1108.1651 General Physics +1108.1772 Dynamical Systems +1108.1791 Computational Complexity +1108.2020 Number Theory +1108.2061 Rings and Algebras +1108.2107 Number Theory +1108.2393 Information Theory +1108.2562 Optimization and Control +1108.2704 Cryptography and Security +1108.2710 Fluid Dynamics +1108.2716 Computer Science and Game Theory +1108.2718 Cryptography and Security +1108.2721 Materials Science +1108.2722 Statistics Theory +1108.2723 Phenomenology +1108.2736 Earth and Planetary Astrophysics +1108.2737 Dynamical Systems +1108.2741 Information Theory +1108.2742 Analysis of PDEs +1108.2743 Probability +1108.2744 Representation Theory +1108.2758 Formal Languages and Automata Theory +1108.2759 Group Theory +1108.2774 Atomic Physics +1108.2776 Networking and Internet Architecture +1108.2777 Networking and Internet Architecture +1108.2782 Phenomenology +1108.2787 Dynamical Systems +1108.2788 Probability +1108.2793 Number Theory +1108.2794 Chemical Physics +1108.2796 Logic in Computer Science +1108.2804 Geophysics +1108.2805 Applications +1108.2806 Quantum Algebra +1108.2810 Probability +1108.2812 Probability +1108.2817 Complex Variables +1108.2827 Earth and Planetary Astrophysics +1108.2831 Algebraic Geometry +1108.2832 Strongly Correlated Electrons +1108.2835 Statistics Theory +1108.2840 Neurons and Cognition +1108.2846 Information Theory +1108.2848 General Topology +1108.2852 Combinatorics +1108.2865 Artificial Intelligence +1108.2866 Number Theory +1108.2872 Phenomenology +1108.2877 Materials Science +1108.2878 Differential Geometry +1108.2880 Geometric Topology +1108.2881 Information Theory +1108.2886 Differential Geometry +1108.2887 +1108.2889 Portfolio Management +1108.2890 Classical Analysis and ODEs +1108.2896 Group Theory +1108.2905 Information Theory +1108.2916 +1108.2924 Cosmology and Nongalactic Astrophysics +1108.2927 Statistical Mechanics +1108.2935 Earth and Planetary Astrophysics +1108.2936 Geometric Topology +1108.2942 Differential Geometry +1108.2943 Differential Geometry +1108.2953 Materials Science +1108.2959 Chemical Physics +1108.2960 Information Theory +1108.2964 Optics +1108.2970 Lattice +1108.2976 Earth and Planetary Astrophysics +1108.2978 Accelerator Physics +1108.2983 Complex Variables +1108.2988 Materials Science +1108.2989 Machine Learning +1108.2992 Algebraic Geometry +1108.2996 Information Theory +1108.2999 Computation +1108.3000 Combinatorics +1108.3006 Superconductivity +1108.3008 Probability +1108.3009 Functional Analysis +1108.3012 Biological Physics +1108.3016 Medical Physics +1108.3019 Artificial Intelligence +1108.3020 Operator Algebras +1108.3022 +1108.3037 +1108.3038 Cosmology and Nongalactic Astrophysics +1108.3041 Cosmology and Nongalactic Astrophysics +1108.3043 Complex Variables +1108.3055 Algebraic Topology +1108.3060 Representation Theory +1108.3072 Learning +0709.0093 +0710.0601 Statistical Mechanics +0807.4218 Strongly Correlated Electrons +0807.4513 Other Condensed Matter +0808.2234 Combinatorics +0812.3333 Dynamical Systems +0902.1987 Cosmology and Nongalactic Astrophysics +0902.2223 Theory +0904.0710 Optics +0904.1638 Strongly Correlated Electrons +0905.0298 Combinatorics +0905.0389 Statistical Mechanics +0905.0836 Theory +0905.2575 +0907.4199 +0908.2316 Phenomenology +0909.3247 +0909.4338 Strongly Correlated Electrons +0909.4713 +0910.1397 Theory +0910.4091 Disordered Systems and Neural Networks +0911.1866 Theory +0911.3535 High Energy Astrophysical Phenomena +0911.4763 General Finance +0911.4974 +0912.0040 Strongly Correlated Electrons +0912.0697 +0912.0867 +0912.1383 Lattice +0912.1419 Numerical Analysis +0912.1556 Theory +0912.2469 Logic +0912.4244 Theory +0912.4280 Theory +0912.4427 Cosmology and Nongalactic Astrophysics +0912.5289 Phenomenology +1001.0004 +1001.1691 Phenomenology +1001.3790 Information Theory +1001.4091 +1001.4965 Theory +1002.2842 Statistical Mechanics +1002.3050 Phenomenology +1002.3678 Atomic and Molecular Clusters +1002.4093 Theory +1002.4342 +1002.4351 +1003.3828 +1003.4286 Theory +1003.4701 Theory +1003.4876 +1003.5564 +1003.5915 Cosmology and Nongalactic Astrophysics +1004.0359 Quantum Gases +1004.1366 +1004.1606 Theory +1004.2011 Phenomenology +1004.2110 Strongly Correlated Electrons +1004.2309 +1004.2978 Theory +1004.3815 Phenomenology +1004.4345 Optics +1004.4666 Biological Physics +1004.4855 Experiment +1004.5004 Phenomenology +1005.0664 Strongly Correlated Electrons +1005.1821 Theory +1005.3087 +1005.3290 Optimization and Control +1005.3340 Phenomenology +1005.4056 Cosmology and Nongalactic Astrophysics +1005.4489 Cosmology and Nongalactic Astrophysics +1005.5626 Strongly Correlated Electrons +1006.0360 Lattice +1006.0557 +1006.0690 Mesoscale and Nanoscale Physics +1006.0928 Physics and Society +1006.0975 Mesoscale and Nanoscale Physics +1006.1905 +1006.2034 +1006.3714 +1006.3973 Other Condensed Matter +1006.4006 Cosmology and Nongalactic Astrophysics +1007.1592 +1007.2020 Phenomenology +1007.2868 Phenomenology +1007.4260 Strongly Correlated Electrons +1007.4359 Instrumentation and Methods for Astrophysics +1008.1415 Atomic Physics +1008.2140 Quantum Gases +1008.2992 Phenomenology +1008.4255 +1008.4345 Phenomenology +1009.0686 +1009.0949 Rings and Algebras +1009.1097 Theory +1009.1290 Mesoscale and Nanoscale Physics +1009.1518 Lattice +1009.1738 Earth and Planetary Astrophysics +1009.3195 +1009.3409 +1009.4033 Lattice +1009.4698 Theory +1009.5266 +1009.5624 +1009.5980 Strongly Correlated Electrons +1010.0285 Phenomenology +1010.0637 Disordered Systems and Neural Networks +1010.0917 +1010.1635 Phenomenology +1010.2169 Phenomenology +1010.2267 Probability +1010.3395 +1010.4213 +1010.4446 Statistical Mechanics +1010.4594 Theory +1010.4657 Theory +1010.4876 Information Theory +1010.5045 Probability +1010.5845 Mesoscale and Nanoscale Physics +1011.0025 Populations and Evolution +1011.1108 Strongly Correlated Electrons +1011.1746 Superconductivity +1011.2007 +1011.2419 Theory +1011.2517 Phenomenology +1011.2760 Mesoscale and Nanoscale Physics +1011.3281 +1011.3641 +1011.5388 Populations and Evolution +1011.5736 Instrumentation and Detectors +1012.0174 Theory +1012.1406 +1012.1513 +1012.2302 Atomic Physics +1012.2431 +1012.2433 +1012.3465 Phenomenology +1012.4177 Group Theory +1012.4237 Strongly Correlated Electrons +1012.5452 Analysis of PDEs +1101.2804 Physics and Society +1101.4880 Optics +1101.5233 Disordered Systems and Neural Networks +1102.1224 General Physics +1102.3637 Algebraic Geometry +1102.3975 Machine Learning +1102.4157 Representation Theory +1102.4778 Geophysics +1102.4974 Cosmology and Nongalactic Astrophysics +1102.5088 Methodology +1102.5105 Data Structures and Algorithms +1102.5109 Combinatorics +1102.5111 Combinatorics +1102.5117 +1102.5131 Representation Theory +1102.5132 +1102.5135 Mesoscale and Nanoscale Physics +1102.5137 Earth and Planetary Astrophysics +1102.5138 Information Theory +1102.5143 Combinatorics +1102.5146 Data Structures and Algorithms +1102.5159 Combinatorics +1102.5161 Cryptography and Security +1102.5168 Rings and Algebras +1102.5171 Machine Learning +1102.5178 Phenomenology +1102.5181 Combinatorics +1102.5183 Rings and Algebras +1102.5185 Computation and Language +1102.5186 Combinatorics +1102.5187 Representation Theory +1102.5189 Networking and Internet Architecture +1102.5190 Databases +1102.5191 Cryptography and Security +1102.5193 Software Engineering +1102.5194 Cryptography and Security +1102.5197 Networking and Internet Architecture +1102.5198 Solar and Stellar Astrophysics +1102.5199 +1102.5202 +1102.5204 Information Theory +1102.5207 Spectral Theory +1102.5208 Representation Theory +1102.5210 Solar and Stellar Astrophysics +1102.5211 Solar and Stellar Astrophysics +1102.5212 Statistics Theory +1102.5213 Spectral Theory +1102.5214 Phenomenology +1102.5217 Statistics Theory +1102.5221 Theory +1102.5224 Statistics Theory +1102.5228 Statistics Theory +1102.5229 Combinatorics +1102.5231 High Energy Astrophysical Phenomena +1102.5233 Lattice +1102.5241 Statistics Theory +1102.5242 +1102.5245 Statistics Theory +1102.5250 Mesoscale and Nanoscale Physics +1102.5258 Mesoscale and Nanoscale Physics +1102.5259 +1102.5266 Data Structures and Algorithms +1102.5268 Solar and Stellar Astrophysics +1102.5277 Solar and Stellar Astrophysics +1102.5280 Representation Theory +1102.5287 Probability +1102.5296 Solar and Stellar Astrophysics +1102.5304 Optimization and Control +1102.5308 Representation Theory +1102.5315 Analysis of PDEs +1102.5321 Materials Science +1102.5322 Cryptography and Security +1102.5328 Distributed, Parallel, and Cluster Computing +1102.5332 +1102.5337 Information Theory +astro-ph/0510554 +cond-mat/0606619 Superconductivity +cond-mat/9509043 +hep-ph/0104265 Phenomenology +hep-ph/0408313 Phenomenology +physics/0609163 Optics +physics/0703206 Optics +0806.2081 Lattice +0812.1157 Algebraic Topology +0903.0171 +0906.2100 General Finance +0910.2750 +0910.3070 Statistics Theory +0911.2089 Differential Geometry +1001.0012 Earth and Planetary Astrophysics +1001.1981 +1002.3738 Mesoscale and Nanoscale Physics +1003.2102 Fluid Dynamics +1003.3147 Statistical Mechanics +1003.4061 Algebraic Geometry +1004.1636 Mesoscale and Nanoscale Physics +1004.5504 +1005.0493 Statistical Mechanics +1005.1186 Group Theory +1006.0371 Probability +1006.0905 +1006.1820 Cosmology and Nongalactic Astrophysics +1007.0289 Chemical Physics +1007.0318 Representation Theory +1008.1366 Computational Engineering, Finance, and Science +1008.1524 Strongly Correlated Electrons +1008.3538 Materials Science +1008.3632 Phenomenology +1009.0167 Superconductivity +1009.0744 Information Theory +1009.3206 Strongly Correlated Electrons +1010.0560 Statistical Mechanics +1010.1857 Analysis of PDEs +1010.3075 Statistical Mechanics +1010.3962 Phenomenology +1010.4333 Quantum Algebra +1010.4427 Differential Geometry +1010.5747 Physics and Society +1011.1831 Soft Condensed Matter +1011.2340 Algebraic Geometry +1011.2547 Superconductivity +1011.3702 Differential Geometry +1012.0051 Analysis of PDEs +1012.3254 Strongly Correlated Electrons +1101.2536 Atomic Physics +1101.4028 Physics and Society +1101.4679 Phenomenology +1101.5032 Number Theory +1102.0448 Other Quantitative Biology +1102.1753 Social and Information Networks +1102.1808 Artificial Intelligence +1102.2003 Programming Languages +1102.2060 Geophysics +1102.2161 Analysis of PDEs +1102.2186 Cosmology and Nongalactic Astrophysics +1102.2233 Methodology +1102.2236 Dynamical Systems +1102.2237 Methodology +1102.2243 Commutative Algebra +1102.2245 Analysis of PDEs +1102.2256 Emerging Technologies +1102.2262 Programming Languages +1102.2263 Portfolio Management +1102.2267 +1102.2268 Logic in Computer Science +1102.2269 +1102.2272 +1102.2275 Logic +1102.2278 Algebraic Geometry +1102.2279 Dynamical Systems +1102.2280 Computer Science and Game Theory +1102.2283 Dynamical Systems +1102.2286 Dynamical Systems +1102.2291 Networking and Internet Architecture +1102.2292 General Physics +1102.2293 Networking and Internet Architecture +1102.2295 Number Theory +1102.2296 Dynamical Systems +1102.2297 Statistics Theory +1102.2300 Computational Complexity +1102.2315 Computational Geometry +1102.2316 Number Theory +1102.2320 Mesoscale and Nanoscale Physics +1102.2322 Methodology +1102.2323 +1102.2327 +1102.2328 Mesoscale and Nanoscale Physics +1102.2331 Genomics +1102.2332 Databases +1102.2333 Rings and Algebras +1102.2336 Social and Information Networks +1102.2337 Rings and Algebras +1102.2339 Programming Languages +1102.2343 Mesoscale and Nanoscale Physics +1102.2348 Mesoscale and Nanoscale Physics +1102.2350 Information Theory +1102.2353 Functional Analysis +1102.2356 +1102.2358 Group Theory +1102.2363 Fluid Dynamics +1102.2364 Spectral Theory +1102.2366 Logic in Computer Science +1102.2369 Experiment +1102.2373 Other Condensed Matter +1102.2375 Functional Analysis +1102.2376 +1102.2390 Algebraic Geometry +1102.2395 Databases +1102.2398 +1102.2406 Strongly Correlated Electrons +1102.2407 Applications +1102.2410 Experiment +1102.2412 Statistical Finance +1102.2424 Differential Geometry +1102.2433 Soft Condensed Matter +astro-ph/0207134 +hep-th/0610273 Theory +math-ph/0611026 +math/0512107 Group Theory +0705.2527 Operator Algebras +0705.4140 Superconductivity +0707.2814 Statistics Theory +0710.0088 Differential Geometry +0711.2584 +0806.0503 Quantum Algebra +0806.0571 Algebraic Geometry +0806.0966 Group Theory +0807.3930 +0808.0346 Strongly Correlated Electrons +0808.2341 Disordered Systems and Neural Networks +0808.2843 Operator Algebras +0809.4867 Statistical Mechanics +0810.0398 Operator Algebras +0810.0596 Operator Algebras +0811.2901 Phenomenology +0812.0948 Other Condensed Matter +0901.0787 Materials Science +0901.2761 Statistical Mechanics +0902.1655 Accelerator Physics +0902.2220 Differential Geometry +0902.3317 +0903.1416 History and Philosophy of Physics +0903.3589 Probability +0904.0721 Logic in Computer Science +0904.3019 Operator Algebras +0905.2213 Data Structures and Algorithms +0905.2843 Neurons and Cognition +0905.2933 +0906.0157 Representation Theory +0906.2182 +0906.4139 Cosmology and Nongalactic Astrophysics +0907.4237 Logic +0907.4534 Number Theory +0908.0557 Mesoscale and Nanoscale Physics +0908.0954 Superconductivity +0908.1586 Optimization and Control +0910.0033 Cosmology and Nongalactic Astrophysics +0910.0137 Probability +0910.1520 Disordered Systems and Neural Networks +0910.3504 General Physics +0910.4775 Quantum Gases +0911.1152 Disordered Systems and Neural Networks +0911.3512 Combinatorics +0912.0155 Strongly Correlated Electrons +0912.5098 Fluid Dynamics +1001.0520 Operator Algebras +1001.0521 Operator Algebras +1001.1334 Geometric Topology +1001.3681 Solar and Stellar Astrophysics +1001.4241 Differential Geometry +1002.0336 Theory +1002.1214 Phenomenology +1002.1381 Logic +1002.1418 Algebraic Geometry +1002.3117 Information Theory +1002.3769 Computational Complexity +1003.1815 Operator Algebras +1003.3345 Superconductivity +1003.5351 +1004.0665 Number Theory +1004.2910 Computation +1004.4185 Superconductivity +1004.4671 Probability +1004.5423 Theory +1006.1169 +1006.1519 Statistical Mechanics +1006.3177 Soft Condensed Matter +1006.4440 Statistical Mechanics +1006.5646 Atomic Physics +1007.0080 Mesoscale and Nanoscale Physics +1007.0164 Fluid Dynamics +1007.1520 +1007.1588 Theory +1007.3477 Mesoscale and Nanoscale Physics +1007.4032 Optics +1008.1055 Phenomenology +1008.1630 +1009.1587 Differential Geometry +1009.2265 Materials Science +1009.2290 Disordered Systems and Neural Networks +1009.3280 Number Theory +1009.3701 +1010.0431 Physics and Society +1010.1387 Strongly Correlated Electrons +1010.2202 Cosmology and Nongalactic Astrophysics +1010.2632 Theory +1010.2990 Statistical Mechanics +1010.4291 Theory +1011.0665 Strongly Correlated Electrons +1011.3240 Phenomenology +1011.3308 Strongly Correlated Electrons +1011.3519 Phenomenology +1011.3818 Cosmology and Nongalactic Astrophysics +1011.4866 Phenomenology +1012.1732 Mesoscale and Nanoscale Physics +1012.4366 +1101.0641 Solar and Stellar Astrophysics +1101.1672 Theory +1101.2490 Materials Science +1101.4538 Biomolecules +1102.0790 Disordered Systems and Neural Networks +1102.1352 Mesoscale and Nanoscale Physics +1102.2694 +1102.3062 Mesoscale and Nanoscale Physics +1102.3708 General Physics +1102.4819 Statistical Finance +1102.5567 Analysis of PDEs +1103.0381 Solar and Stellar Astrophysics +1103.0718 Cosmology and Nongalactic Astrophysics +1103.1401 Optimization and Control +1103.3543 Statistics Theory +1103.3688 General Physics +1103.3767 +1103.4159 Analysis of PDEs +1103.4302 Mesoscale and Nanoscale Physics +1103.4307 Mesoscale and Nanoscale Physics +1103.4393 Materials Science +1103.4611 Solar and Stellar Astrophysics +1103.5237 Complex Variables +1103.5328 Group Theory +1103.5495 Algebraic Geometry +1103.5629 Optimization and Control +1103.5692 +1103.5847 Fluid Dynamics +1104.0527 Rings and Algebras +1104.0838 Functional Analysis +1104.1166 Exactly Solvable and Integrable Systems +1104.1640 Solar and Stellar Astrophysics +1104.1644 Category Theory +1104.1648 +1104.1650 Probability +1104.1651 Materials Science +1104.1653 Cryptography and Security +1104.1654 Materials Science +1104.1661 +1104.1665 +1104.1668 Representation Theory +1104.1670 Classical Analysis and ODEs +1104.1674 Algebraic Geometry +1104.1681 Logic +1104.1686 Logic +1104.1690 Symbolic Computation +1104.1691 Analysis of PDEs +1104.1695 +1104.1696 Symbolic Computation +1104.1697 Symbolic Computation +1104.1698 Symbolic Computation +1104.1699 Logic +1104.1702 Differential Geometry +1104.1708 +1104.1709 Functional Analysis +1104.1710 Functional Analysis +1104.1711 Functional Analysis +1104.1713 Rings and Algebras +1104.1714 Statistical Mechanics +1104.1717 Computational Engineering, Finance, and Science +1104.1723 Solar and Stellar Astrophysics +1104.1724 Group Theory +1104.1735 +1104.1747 Strongly Correlated Electrons +1104.1748 +1104.1759 General Topology +1104.1766 Algebraic Topology +1104.1770 Computer Science and Game Theory +1104.1772 Algebraic Geometry +1104.1774 Numerical Analysis +1104.1788 Popular Physics +1104.1794 Geometric Topology +1104.1805 Algebraic Topology +1104.1809 Number Theory +1104.1811 +1104.1815 +1104.1820 General Topology +1104.1822 Data Structures and Algorithms +1104.1823 Discrete Mathematics +1104.1825 Discrete Mathematics +1104.1827 Functional Analysis +1104.1842 Logic +1104.1843 +1104.1852 Data Structures and Algorithms +1104.1855 Pricing of Securities +1104.1859 Networking and Internet Architecture +1104.1860 Materials Science +1104.1862 Materials Science +1104.1866 Materials Science +1104.1868 Materials Science +1104.1874 Dynamical Systems +1104.1877 Quantum Algebra +1104.1880 Optimization and Control +1104.1883 Differential Geometry +1104.1887 +1104.1889 Differential Geometry +1104.1892 Information Retrieval +1104.1895 High Energy Astrophysical Phenomena +1104.1898 Dynamical Systems +1104.1903 Spectral Theory +1104.1909 Symplectic Geometry +1104.1911 Classical Analysis and ODEs +1104.1912 Materials Science +1104.1913 Mesoscale and Nanoscale Physics +1104.1915 Classical Analysis and ODEs +1104.1922 Theory +1104.1923 Methodology +1104.1924 Artificial Intelligence +1104.1926 +1104.1930 Biological Physics +1104.1945 Computer Vision and Pattern Recognition +1104.1949 Superconductivity +1104.1956 Optics +1104.1957 Solar and Stellar Astrophysics +1104.1958 Disordered Systems and Neural Networks +1104.1962 Other Computer Science +1104.1967 Analysis of PDEs +1104.1979 Statistical Mechanics +1104.1982 Materials Science +1104.2003 Cosmology and Nongalactic Astrophysics +1104.2015 Dynamical Systems +1104.2021 Theory +1104.2032 Mesoscale and Nanoscale Physics +1104.2034 Computation and Language +astro-ph/0211618 +astro-ph/0501580 +astro-ph/0601007 +astro-ph/9509044 +astro-ph/9510012 +cond-mat/0005318 Statistical Mechanics +cond-mat/0009287 Statistical Mechanics +cond-mat/0701244 Strongly Correlated Electrons +cond-mat/9811094 Statistical Mechanics +gr-qc/0101067 +gr-qc/0103043 +gr-qc/0105039 +gr-qc/0203035 +gr-qc/9611021 +hep-ex/0207021 Experiment +hep-lat/0610008 Lattice +hep-ph/0101293 Phenomenology +hep-ph/0105079 Phenomenology +hep-ph/0204232 Phenomenology +hep-ph/0303077 Phenomenology +hep-ph/0306043 Phenomenology +hep-ph/0308257 Phenomenology +hep-ph/0501226 Phenomenology +hep-ph/0507091 Phenomenology +hep-ph/0510312 Phenomenology +hep-ph/9209273 Phenomenology +hep-ph/9405229 Phenomenology +hep-ph/9605215 Phenomenology +hep-ph/9605292 Phenomenology +hep-ph/9607203 Phenomenology +hep-ph/9610218 Phenomenology +hep-ph/9612214 Phenomenology +hep-ph/9708366 Phenomenology +hep-ph/9712361 Phenomenology +hep-ph/9803499 Phenomenology +hep-th/9305148 Theory +hep-th/9312087 Theory +hep-th/9410190 Theory +hep-th/9504036 Theory +hep-th/9604088 Theory +hep-th/9806023 Theory +hep-th/9906118 Theory +math-ph/0102019 +math-ph/0105015 +math-ph/0503054 +math/0701186 Operator Algebras +math/0702060 Representation Theory +nucl-ex/9911006 +nucl-th/0212080 +nucl-th/0402004 +nucl-th/0507005 +nucl-th/9901075 +physics/0602138 Classical Physics +quant-ph/0202067 +0705.1445 Subcellular Processes +0803.1462 +0805.3846 Statistical Mechanics +0903.5035 Materials Science +0907.3901 Analysis of PDEs +0908.0903 Symplectic Geometry +0908.3915 Phenomenology +0908.4310 Applications +0911.2804 Discrete Mathematics +1003.1193 Earth and Planetary Astrophysics +1005.1875 Combinatorics +1005.4214 Methodology +1007.0197 Soft Condensed Matter +1008.1941 Chaotic Dynamics +1008.4913 Differential Geometry +1009.6227 Analysis of PDEs +1010.2189 Differential Geometry +1010.3662 Quantum Gases +1010.5461 Analysis of PDEs +1010.6033 Operator Algebras +1011.1446 +1011.3619 Algebraic Geometry +1012.1926 Earth and Planetary Astrophysics +1012.2608 +1101.2590 Strongly Correlated Electrons +1103.0293 Superconductivity +1103.3048 Theory +1103.5681 Geometric Topology +1105.3015 High Energy Astrophysical Phenomena +1105.5649 Cosmology and Nongalactic Astrophysics +1106.4360 Probability +1106.4764 +1107.3819 Soft Condensed Matter +1107.4091 Instrumentation and Methods for Astrophysics +1107.4127 Statistical Mechanics +1107.5402 +1107.5557 +1108.0512 Strongly Correlated Electrons +1108.1131 Earth and Planetary Astrophysics +1108.1720 High Energy Astrophysical Phenomena +1108.1778 Materials Science +1108.2638 Cosmology and Nongalactic Astrophysics +1108.3005 Materials Science +1108.4738 Experiment +1109.0554 Superconductivity +1109.0865 Biological Physics +1109.1970 Computational Physics +1109.3450 Theory +1109.4339 Strongly Correlated Electrons +1109.6520 Phenomenology +1110.2021 Rings and Algebras +1110.3175 Rings and Algebras +1110.3899 Differential Geometry +1111.0140 Atomic Physics +1111.1083 Analysis of PDEs +1111.4948 Theory +1111.5264 Instrumentation and Methods for Astrophysics +1111.5775 Distributed, Parallel, and Cluster Computing +1111.6030 Computer Vision and Pattern Recognition +1111.6281 Mesoscale and Nanoscale Physics +1111.7035 +1112.0111 Statistical Mechanics +1112.0212 Lattice +1112.0341 Logic +1112.0612 Complex Variables +1112.0769 Algebraic Geometry +1112.0949 History and Philosophy of Physics +1112.1070 Mesoscale and Nanoscale Physics +1112.1071 Instrumentation and Methods for Astrophysics +1112.1073 Cosmology and Nongalactic Astrophysics +1112.1078 Cosmology and Nongalactic Astrophysics +1112.1083 Cosmology and Nongalactic Astrophysics +1112.1094 Complex Variables +1112.1096 Cosmology and Nongalactic Astrophysics +1112.1102 Analysis of PDEs +1112.1103 Strongly Correlated Electrons +1112.1106 Cosmology and Nongalactic Astrophysics +1112.1108 Soft Condensed Matter +1112.1110 +1112.1113 Probability +1112.1114 Portfolio Management +1112.1120 Computer Vision and Pattern Recognition +1112.1121 Analysis of PDEs +1112.1130 Numerical Analysis +1112.1135 Atmospheric and Oceanic Physics +1112.1136 Data Structures and Algorithms +1112.1138 Optics +1112.1139 +1112.1141 Data Structures and Algorithms +1112.1142 +1112.1143 Physics and Society +1112.1146 Number Theory +1112.1147 Computer Science and Game Theory +1112.1151 Algebraic Geometry +1112.1152 Number Theory +1112.1156 Risk Management +1112.1159 +1112.1164 Mesoscale and Nanoscale Physics +1112.1167 Cosmology and Nongalactic Astrophysics +1112.1173 Solar and Stellar Astrophysics +1112.1176 Analysis of PDEs +1112.1179 General Physics +1112.1184 Medical Physics +1112.1187 Computer Vision and Pattern Recognition +1112.1190 Numerical Analysis +1112.1195 Cosmology and Nongalactic Astrophysics +1112.1196 Functional Analysis +1112.1198 Lattice +1112.1200 Computer Vision and Pattern Recognition +1112.1204 Quantum Gases +1112.1208 Earth and Planetary Astrophysics +1112.1210 Data Structures and Algorithms +1112.1217 Machine Learning +1112.1218 Mesoscale and Nanoscale Physics +1112.1219 Group Theory +1112.1223 Group Theory +1112.1232 +1112.1233 Probability +1112.1236 Commutative Algebra +1112.1248 Experiment +1112.1250 Probability +1112.1251 Algebraic Topology +1112.1252 Plasma Physics +1112.1254 Strongly Correlated Electrons +1112.1262 +1112.1268 Computational Physics +1112.1269 Chaotic Dynamics +1112.1270 Chaotic Dynamics +1112.1273 +1112.1274 Optimization and Control +1112.1275 Optimization and Control +1112.1283 +1112.1286 Strongly Correlated Electrons +1112.1289 Functional Analysis +1112.1291 Mesoscale and Nanoscale Physics +1112.1294 Numerical Analysis +1112.1296 General Topology +1112.1297 Phenomenology +1112.1307 Category Theory +1112.1316 Logic in Computer Science +1112.1320 Cosmology and Nongalactic Astrophysics +1112.1324 General Physics +1112.1327 Instrumentation and Methods for Astrophysics +1112.1328 General Physics +1112.1329 Theory +1112.1330 Neurons and Cognition +1112.1343 Algebraic Geometry +1112.1353 Algebraic Geometry +1112.1354 Analysis of PDEs +1112.1357 Atomic Physics +1112.1362 Chemical Physics +1112.1363 Statistical Finance +1112.1370 Optimization and Control +1112.1372 Optimization and Control +1112.1378 Mesoscale and Nanoscale Physics +1112.1381 Solar and Stellar Astrophysics +1112.1387 Statistical Mechanics +1112.1389 Group Theory +1112.1390 Learning +1112.1394 Experiment +1112.1396 Discrete Mathematics +cond-mat/9607109 +gr-qc/0010008 +nlin/0404027 Chaotic Dynamics +0710.1074 Operator Algebras +0711.1350 Functional Analysis +0711.1351 Logic +0711.1362 Logic +0712.4025 Algebraic Geometry +0712.4110 Commutative Algebra +0801.0711 Differential Geometry +0801.3176 Number Theory +0802.4319 Rings and Algebras +0803.3566 Computational Physics +0803.3773 Information Theory +0806.0879 Analysis of PDEs +0807.0097 Soft Condensed Matter +0808.0326 +0809.3063 Algebraic Topology +0809.4874 Operator Algebras +0810.1774 Rings and Algebras +0810.1823 Discrete Mathematics +0810.2930 Probability +0812.2674 +0901.1765 Functional Analysis +0902.1280 Soft Condensed Matter +0904.1555 +0904.2960 Dynamical Systems +0906.4298 +0907.2260 Operator Algebras +0908.0742 Operator Algebras +0908.3905 Number Theory +0909.2640 Operator Algebras +0909.5655 Strongly Correlated Electrons +0910.5466 Differential Geometry +0910.5498 +0910.5916 Quantum Gases +0911.1800 Complex Variables +0911.4784 Superconductivity +1001.0436 Computer Science and Game Theory +1001.2969 Plasma Physics +1002.0827 Mesoscale and Nanoscale Physics +1002.1041 Number Theory +1003.0428 Computation +1003.0586 +1003.2543 +1003.5814 Statistical Mechanics +1004.0222 Group Theory +1004.1381 Functional Analysis +1004.2547 Category Theory +1004.3550 Number Theory +1005.3410 Statistical Mechanics +1005.5031 Group Theory +1005.5340 Other Condensed Matter +1006.0520 Mesoscale and Nanoscale Physics +1006.0573 +1006.1235 Computational Physics +1006.3530 +1006.3798 Probability +1006.4605 +1006.4914 Statistical Mechanics +1007.0972 Analysis of PDEs +1007.1017 Materials Science +1007.2738 Optimization and Control +1007.3838 +1008.0779 Cosmology and Nongalactic Astrophysics +1008.1740 Phenomenology +1008.2260 Quantum Gases +1008.2564 Dynamical Systems +1008.3061 Number Theory +1008.4210 Combinatorics +1008.4719 Other Condensed Matter +1009.0330 Mesoscale and Nanoscale Physics +1009.0438 Other Condensed Matter +1009.1623 Theory +1009.2472 Analysis of PDEs +1009.3105 +1010.1328 Computational Complexity +1010.2176 Number Theory +1010.3027 Cosmology and Nongalactic Astrophysics +1010.3137 Quantum Gases +1010.3171 Disordered Systems and Neural Networks +1010.3427 Networking and Internet Architecture +1010.3733 +1010.4246 Differential Geometry +1010.4517 Neurons and Cognition +1010.4722 Neurons and Cognition +1010.5169 Mesoscale and Nanoscale Physics +1011.3112 Materials Science +1011.3329 Probability +1011.5464 +1011.5616 +1011.5845 Optics +1012.0845 Quantum Gases +1012.1130 Dynamical Systems +1012.1600 Cosmology and Nongalactic Astrophysics +1012.1716 Other Condensed Matter +1012.2345 Plasma Physics +1012.2856 +1012.2900 Phenomenology +1012.3661 +1012.3804 Mesoscale and Nanoscale Physics +1012.4362 +1012.4902 Probability +1101.0399 Solar and Stellar Astrophysics +1101.1601 Mesoscale and Nanoscale Physics +1101.2404 Statistical Mechanics +1101.3050 Combinatorics +1101.3911 Classical Analysis and ODEs +1101.4700 Spectral Theory +1101.5354 Pattern Formation and Solitons +1101.5612 High Energy Astrophysical Phenomena +1101.5774 +1102.0042 Superconductivity +1102.0479 +1102.2822 Classical Physics +1102.5756 K-Theory and Homology +1103.0040 Computer Science and Game Theory +1103.0041 Computer Science and Game Theory +1103.0099 Differential Geometry +1103.0304 Strongly Correlated Electrons +1103.0446 Spectral Theory +1103.1466 Cosmology and Nongalactic Astrophysics +1103.2531 Complex Variables +1103.2542 Exactly Solvable and Integrable Systems +1103.3107 Databases +1103.5454 Differential Geometry +1103.5518 Commutative Algebra +1103.5787 Superconductivity +1103.5952 Biological Physics +1104.2091 Phenomenology +1104.2267 Quantum Algebra +1104.2413 +1104.2453 +1104.2489 Algebraic Geometry +1104.2794 General Topology +1104.2795 General Topology +1104.2796 Logic +1104.2940 Functional Analysis +1104.2967 +1104.3047 Number Theory +1104.3148 Logic in Computer Science +1104.3153 Data Structures and Algorithms +1104.3163 Plasma Physics +1104.3165 Networking and Internet Architecture +1104.3170 Combinatorics +1104.3172 Superconductivity +1104.3174 Mesoscale and Nanoscale Physics +1104.3176 Materials Science +1104.3191 Probability +1104.3198 Classical Analysis and ODEs +1104.3202 Cosmology and Nongalactic Astrophysics +1104.3206 Combinatorics +1104.3208 Discrete Mathematics +1104.3211 Computer Science and Game Theory +1104.3212 Databases +1104.3213 Information Retrieval +1104.3214 Databases +1104.3216 Databases +1104.3217 Databases +1104.3218 Classical Analysis and ODEs +1104.3219 Social and Information Networks +1104.3221 +1104.3225 Theory +1104.3226 Group Theory +1104.3228 Cryptography and Security +1104.3229 Cryptography and Security +1104.3237 Classical Analysis and ODEs +1104.3244 +1104.3245 Complex Variables +1104.3248 Instrumentation and Methods for Astrophysics +1104.3250 Artificial Intelligence +1104.3252 Differential Geometry +1104.3256 Solar and Stellar Astrophysics +1104.3258 Statistics Theory +1104.3266 +1104.3269 Phenomenology +1104.3273 Dynamical Systems +1104.3276 Differential Geometry +1104.3289 Soft Condensed Matter +1104.3295 +1104.3302 Materials Science +1104.3310 Hardware Architecture +1104.3313 Optics +1104.3317 Complex Variables +1104.3324 Functional Analysis +1104.3326 Phenomenology +1104.3328 Statistics Theory +1104.3329 +1104.3333 Cryptography and Security +1104.3338 Number Theory +1104.3341 Logic +1104.3343 Logic +1104.3351 High Energy Astrophysical Phenomena +1104.3354 Differential Geometry +1104.3355 Differential Geometry +1104.3358 +1104.3362 Symplectic Geometry +1104.3372 Functional Analysis +1104.3373 Rings and Algebras +1104.3377 +1104.3378 +1104.3379 Materials Science +1104.3380 Functional Analysis +1104.3386 Algebraic Geometry +1104.3390 Applications +1104.3392 Probability +1104.3395 Applications +1104.3398 Applications +1104.3403 Strongly Correlated Electrons +1104.3405 Biomolecules +1104.3412 Applications +1104.3418 Representation Theory +1104.3431 Probability +1104.3434 Materials Science +1104.3435 Algebraic Geometry +1104.3436 Applications +1104.3437 Geometric Topology +1104.3439 Differential Geometry +1104.3441 K-Theory and Homology +1104.3444 Combinatorics +1104.3455 Spectral Theory +1104.3461 Representation Theory +1104.3464 Applications +1104.3466 Information Theory +1104.3467 Mesoscale and Nanoscale Physics +1104.3468 General Topology +1104.3469 Software Engineering +1104.3471 General Topology +1104.3472 Applications +1104.3484 +1104.3487 +1104.3501 Superconductivity +1104.3503 Applications +1104.3506 General Physics +1104.3507 Operator Algebras +1104.3508 Representation Theory +1104.3513 Computer Vision and Pattern Recognition +1104.3514 Commutative Algebra +1104.3518 Materials Science +1104.3519 Materials Science +1104.3523 Operating Systems +1104.3525 Other Computer Science +1104.3536 Space Physics +1104.3539 Algebraic Geometry +1104.3542 Category Theory +1104.3543 Functional Analysis +1104.3551 Phenomenology +1104.3553 Functional Analysis +1104.3556 Information Theory +1104.3569 Mesoscale and Nanoscale Physics +1104.3570 Physics and Society +astro-ph/0307491 +astro-ph/0309457 +astro-ph/0404366 +astro-ph/0703706 +cond-mat/0407344 Soft Condensed Matter +cond-mat/0703469 Mesoscale and Nanoscale Physics +gr-qc/0104034 +math/0302242 Differential Geometry +math/0606386 Combinatorics +math/0607337 Combinatorics +math/0607615 Operator Algebras +math/0609376 Combinatorics +0709.4054 Phenomenology +0711.2485 Atomic Physics +0711.2662 Atomic Physics +0711.2663 Atomic Physics +0804.1153 +0806.1027 +0807.0560 Algebraic Geometry +0810.2497 Functional Analysis +0811.3131 Data Analysis, Statistics and Probability +0812.4745 Differential Geometry +0902.2842 Representation Theory +0903.3009 Theory +0903.4868 Statistical Mechanics +0907.5561 Number Theory +0908.1955 Superconductivity +0908.2350 Dynamical Systems +0908.4182 Phenomenology +0909.4123 Cosmology and Nongalactic Astrophysics +0910.0435 Numerical Analysis +0910.1928 +0911.0427 Theory +0911.4250 Group Theory +0911.4902 +0912.0520 Phenomenology +0912.1752 +1001.0819 Materials Science +1001.0822 Mesoscale and Nanoscale Physics +1001.3893 +1001.4456 Solar and Stellar Astrophysics +1002.0697 Data Analysis, Statistics and Probability +1002.4270 Mesoscale and Nanoscale Physics +1005.0859 Complex Variables +1006.1063 Mesoscale and Nanoscale Physics +1006.1908 High Energy Astrophysical Phenomena +1006.2654 Mesoscale and Nanoscale Physics +1006.3348 Cosmology and Nongalactic Astrophysics +1006.4148 Theory +1007.0943 Mesoscale and Nanoscale Physics +1007.2356 Theory +1008.3363 Mesoscale and Nanoscale Physics +1008.4512 Atomic Physics +1008.4968 +1009.1517 Statistical Mechanics +1009.4470 Mesoscale and Nanoscale Physics +1009.5312 Mesoscale and Nanoscale Physics +1010.2117 Mesoscale and Nanoscale Physics +1010.3354 Classical Analysis and ODEs +1010.5516 Theory +1011.1949 +1011.3664 Statistical Mechanics +1011.3956 Analysis of PDEs +1011.5698 Rings and Algebras +1012.0751 Differential Geometry +1012.1475 Quantum Algebra +1012.1940 Superconductivity +1012.4439 Differential Geometry +1101.0247 Superconductivity +1101.2271 Analysis of PDEs +1101.2527 Phenomenology +1101.3117 Materials Science +1101.3782 Solar and Stellar Astrophysics +1101.3792 Logic +1101.3793 Functional Analysis +1101.3804 Data Structures and Algorithms +1101.3805 Mesoscale and Nanoscale Physics +1101.3822 Phenomenology +1101.3825 Logic +1101.3831 Complex Variables +1101.3832 Complex Variables +1101.3835 Networking and Internet Architecture +1101.3836 Human-Computer Interaction +1101.3838 Information Theory +1101.3842 Earth and Planetary Astrophysics +1101.3845 Phenomenology +1101.3846 Superconductivity +1101.3850 Functional Analysis +1101.3857 Dynamical Systems +1101.3859 Networking and Internet Architecture +1101.3862 +1101.3871 Representation Theory +1101.3872 Representation Theory +1101.3879 Analysis of PDEs +1101.3881 Instrumentation and Detectors +1101.3882 Instrumentation and Methods for Astrophysics +1101.3885 Information Theory +1101.3890 Instrumentation and Methods for Astrophysics +1101.3895 Functional Analysis +1101.3901 Functional Analysis +1101.3904 Analysis of PDEs +1101.3908 +1101.3919 General Mathematics +1101.3926 Risk Management +1101.3929 Information Theory +1101.3930 Mesoscale and Nanoscale Physics +1101.3933 +1101.3941 Dynamical Systems +1101.3945 Dynamical Systems +1101.3947 Soft Condensed Matter +1101.3949 Combinatorics +1101.3953 Data Structures and Algorithms +1101.3959 Algebraic Geometry +1101.3960 Data Structures and Algorithms +1101.3962 Algebraic Geometry +1101.3965 Probability +1101.3967 Classical Analysis and ODEs +1101.3971 Group Theory +1101.3974 Risk Management +1101.3977 Commutative Algebra +1101.3978 Analysis of PDEs +1101.3985 Mesoscale and Nanoscale Physics +1101.3988 Differential Geometry +1101.3995 Chemical Physics +1101.4000 Instrumentation and Detectors +1101.4001 General Physics +1101.4008 Accelerator Physics +1101.4015 Probability +cond-mat/0310288 Statistical Mechanics +cond-mat/0410471 Mesoscale and Nanoscale Physics +cond-mat/0610810 Mesoscale and Nanoscale Physics +quant-ph/0504033 +0704.1793 Materials Science +0707.2804 Mesoscale and Nanoscale Physics +0711.2483 +0803.2585 Materials Science +0804.0792 Materials Science +0804.3263 Combinatorics +0806.0891 Mesoscale and Nanoscale Physics +0806.4487 Combinatorics +0806.4973 Functional Analysis +0808.2996 Differential Geometry +0809.0867 +0809.3515 Materials Science +0906.3452 Analysis of PDEs +0907.0491 Geometric Topology +0907.1591 Combinatorics +0907.1599 Combinatorics +0908.0710 Strongly Correlated Electrons +0908.1701 Statistics Theory +0908.1933 Combinatorics +0908.3719 +0909.4764 +0910.0906 Information Theory +0910.2635 Other Condensed Matter +0911.1030 Differential Geometry +0911.3799 Logic in Computer Science +1001.1633 Functional Analysis +1001.1675 Disordered Systems and Neural Networks +1002.1084 Combinatorics +1002.3588 +1003.4410 Disordered Systems and Neural Networks +1003.4919 Discrete Mathematics +1004.3524 Optimization and Control +1004.3641 Other Condensed Matter +1004.4639 Solar and Stellar Astrophysics +1005.0306 Phenomenology +1005.3407 Mesoscale and Nanoscale Physics +1005.3623 Number Theory +1006.5160 Group Theory +1007.1379 Disordered Systems and Neural Networks +1007.1553 Combinatorics +1007.3200 Quantum Gases +1007.3686 Soft Condensed Matter +1008.1988 Phenomenology +1008.2252 Chemical Physics +1008.3167 Cosmology and Nongalactic Astrophysics +1009.0804 Algebraic Topology +1009.1887 Superconductivity +1009.3493 Superconductivity +1009.4236 Superconductivity +1009.6155 +1010.1197 Combinatorics +1010.2528 Phenomenology +1010.5100 Mesoscale and Nanoscale Physics +1011.1747 Classical Analysis and ODEs +1011.1898 Mesoscale and Nanoscale Physics +1011.2628 +1011.5327 High Energy Astrophysical Phenomena +1011.6181 Data Structures and Algorithms +1012.0466 +1012.3710 Materials Science +1101.0405 Lattice +1101.2205 Cosmology and Nongalactic Astrophysics +1101.2459 Representation Theory +1101.2462 Rings and Algebras +1101.2464 Fluid Dynamics +1101.2470 +1101.2481 Methodology +1101.2484 Combinatorics +1101.2491 Computer Vision and Pattern Recognition +1101.2493 Optics +1101.2496 Numerical Analysis +1101.2504 Superconductivity +1101.2505 +1101.2508 +1101.2510 Probability +1101.2517 Mesoscale and Nanoscale Physics +1101.2521 Dynamical Systems +1101.2534 Solar and Stellar Astrophysics +1101.2537 +1101.2538 Algebraic Topology +1101.2550 +1101.2552 Group Theory +1101.2553 Probability +1101.2554 Solar and Stellar Astrophysics +1101.2555 +1101.2558 Group Theory +1101.2571 Experiment +1101.2573 Distributed, Parallel, and Cluster Computing +1101.2576 Statistics Theory +1101.2577 Cryptography and Security +1101.2580 Logic +1101.2591 Adaptation and Self-Organizing Systems +1101.2595 Number Theory +1101.2596 Superconductivity +1101.2605 Combinatorics +1101.2609 Number Theory +1101.2615 Algebraic Geometry +1101.2617 Quantum Gases +1101.2619 Probability +1101.2620 +1101.2625 Number Theory +1101.2628 Numerical Analysis +1101.2630 Combinatorics +1101.2639 Lattice +1101.2640 Analysis of PDEs +1101.2661 Theory +cond-mat/0512201 Soft Condensed Matter +cond-mat/0605531 Materials Science +cond-mat/0605599 Materials Science +math/0611833 Operator Algebras +math/0702626 Dynamical Systems +nlin/0109009 Exactly Solvable and Integrable Systems +quant-ph/0607175 +0706.1530 Probability +0706.4203 Algebraic Geometry +0801.0365 Biomolecules +0805.1841 +0807.4970 +0810.3434 Numerical Analysis +0901.1193 Cosmology and Nongalactic Astrophysics +0902.0452 Superconductivity +0905.4775 Geometric Topology +0907.1722 Logic in Computer Science +0908.1690 Geometric Topology +0912.1636 Theory +1002.4262 Complex Variables +1003.0224 Experiment +1003.0334 Probability +1003.5857 Algebraic Geometry +1003.5859 Algebraic Geometry +1004.2171 Theory +1004.3012 Algebraic Geometry +1006.2757 Atomic Physics +1006.3156 Information Theory +1007.3434 +1007.5290 Cosmology and Nongalactic Astrophysics +1008.1460 High Energy Astrophysical Phenomena +1010.3818 Phenomenology +1012.2205 Mesoscale and Nanoscale Physics +1012.3634 +1012.3911 Computational Physics +1101.3678 Algebraic Geometry +1101.5485 Probability +1101.5987 Theory +1102.0971 Materials Science +1102.1078 Classical Analysis and ODEs +1102.3332 Instrumentation and Methods for Astrophysics +1102.4943 Statistical Mechanics +1103.2437 Quantum Gases +1103.3087 Quantum Gases +1103.3720 Mesoscale and Nanoscale Physics +1103.4875 Data Structures and Algorithms +1103.4898 Dynamical Systems +1104.0303 +1104.1167 Cosmology and Nongalactic Astrophysics +1104.1633 Phenomenology +1104.2025 Experiment +1104.2600 Phenomenology +1104.3433 Disordered Systems and Neural Networks +1104.5157 Quantum Gases +1105.0463 Mesoscale and Nanoscale Physics +1105.0541 Phenomenology +1105.1650 Dynamical Systems +1105.1679 Quantum Algebra +1105.1859 Combinatorics +1105.2610 General Physics +1105.3782 +1105.5916 Cosmology and Nongalactic Astrophysics +1106.3902 Instrumentation and Detectors +1107.0049 Solar and Stellar Astrophysics +1107.2614 Soft Condensed Matter +1107.2842 +1107.3343 Symplectic Geometry +1107.5389 Solar and Stellar Astrophysics +1108.0198 Chemical Physics +1108.0358 Combinatorics +1108.1927 Mesoscale and Nanoscale Physics +1108.2145 Materials Science +1108.4055 Statistical Mechanics +1108.5002 Artificial Intelligence +1108.5167 Analysis of PDEs +1108.5387 Computational Complexity +1108.5553 +1108.5621 Probability +1108.5626 Artificial Intelligence +1108.5739 Disordered Systems and Neural Networks +1108.6021 Experiment +1108.6051 Mesoscale and Nanoscale Physics +1108.6055 Earth and Planetary Astrophysics +1108.6057 Strongly Correlated Electrons +1108.6065 +1108.6066 Number Theory +1108.6069 Number Theory +1108.6082 Accelerator Physics +1108.6087 Networking and Internet Architecture +1108.6088 Learning +1108.6092 Representation Theory +1108.6093 Lattice +1108.6094 Machine Learning +1108.6097 Logic in Computer Science +1108.6105 +1108.6110 +1108.6112 Experiment +1108.6119 Data Analysis, Statistics and Probability +1108.6121 Information Theory +1108.6127 Differential Geometry +1108.6141 Materials Science +1108.6146 Fluid Dynamics +1108.6147 Lattice +1108.6153 Solar and Stellar Astrophysics +1108.6156 +1108.6158 Disordered Systems and Neural Networks +1108.6167 Algebraic Topology +1108.6168 Solar and Stellar Astrophysics +1108.6170 Mesoscale and Nanoscale Physics +1108.6173 Mesoscale and Nanoscale Physics +1108.6174 Experiment +1108.6175 Robotics +1108.6176 +1108.6177 Differential Geometry +1108.6185 Information Theory +1108.6186 Soft Condensed Matter +1108.6189 Group Theory +1108.6195 Networking and Internet Architecture +1108.6198 Databases +1108.6201 Materials Science +1108.6203 Solar and Stellar Astrophysics +1108.6208 Artificial Intelligence +1108.6209 Algebraic Geometry +1108.6212 Differential Geometry +1108.6213 Number Theory +1108.6215 Number Theory +1108.6219 Number Theory +1108.6220 Analysis of PDEs +1108.6226 Astrophysics of Galaxies +1108.6227 Analysis of PDEs +1108.6229 Combinatorics +1108.6231 Materials Science +1108.6233 Fluid Dynamics +1108.6237 Algebraic Geometry +1108.6238 Rings and Algebras +1108.6241 +1108.6242 +1108.6246 Number Theory +1108.6248 Solar and Stellar Astrophysics +1108.6249 +1108.6252 Differential Geometry +1108.6254 Networking and Internet Architecture +1108.6256 Materials Science +1108.6264 Group Theory +1108.6273 Experiment +1108.6274 Logic in Computer Science +1108.6275 Accelerator Physics +1108.6279 Algebraic Topology +1108.6284 Experiment +1108.6285 Solar and Stellar Astrophysics +1108.6289 Phenomenology +1108.6291 Disordered Systems and Neural Networks +1108.6292 +1108.6294 Computer Vision and Pattern Recognition +1108.6299 Phenomenology +1108.6302 Cryptography and Security +1108.6305 Number Theory +1108.6307 Plasma Physics +1108.6310 Number Theory +1108.6313 +1108.6317 Operator Algebras +1108.6318 Phenomenology +astro-ph/0303285 +astro-ph/0308047 +astro-ph/0408187 +astro-ph/0411737 +astro-ph/0412028 +astro-ph/0506386 +cond-mat/0507192 Strongly Correlated Electrons +cond-mat/0702293 Strongly Correlated Electrons +gr-qc/0003058 +gr-qc/0106004 +gr-qc/0201022 +gr-qc/0210038 +hep-lat/0401014 Lattice +hep-lat/0401026 Lattice +hep-lat/0409016 Lattice +hep-lat/0508011 Lattice +hep-ph/0503218 Phenomenology +hep-ph/0601258 Phenomenology +hep-th/0103227 Theory +math-ph/0212047 +math/0409559 Differential Geometry +math/9906094 Quantum Algebra +nucl-ex/0502017 +nucl-ex/0508016 +nucl-ex/0603015 +nucl-ex/0605033 +nucl-th/0606060 +nucl-th/0608002 +0704.2362 Classical Analysis and ODEs +0704.3103 Plasma Physics +0705.2106 Digital Libraries +0705.2838 Atmospheric and Oceanic Physics +0706.3526 +0706.3570 Algebraic Geometry +0707.3082 Complex Variables +0708.2792 Mesoscale and Nanoscale Physics +0708.4340 Number Theory +0710.2117 General Physics +0710.2837 Mesoscale and Nanoscale Physics +0711.0365 Superconductivity +0802.1259 Algebraic Geometry +0803.0150 History and Overview +0803.0287 Algebraic Geometry +0804.3868 Computational Physics +0804.4328 Algebraic Geometry +0804.4333 +0804.4336 Multiagent Systems +0805.0445 Fluid Dynamics +0805.1386 Logic in Computer Science +0805.3550 Strongly Correlated Electrons +0806.3585 History and Overview +0806.4177 +0807.0331 Phenomenology +0809.0474 +0810.2389 Group Theory +0810.3823 Analysis of PDEs +0810.5115 Mesoscale and Nanoscale Physics +0810.5741 Superconductivity +0811.1847 Probability +0811.3375 Theory +0812.0204 Algebraic Topology +0812.0954 Phenomenology +0812.1518 Phenomenology +0812.2740 +0812.4464 Phenomenology +0812.4781 Symplectic Geometry +0901.0508 +0901.1507 Differential Geometry +0901.2281 +0901.2283 +0901.2418 Phenomenology +0902.1942 Number Theory +0903.3667 Learning +0904.0189 +0904.0262 Combinatorics +0904.1154 History and Overview +0904.3719 Number Theory +0904.4271 Probability +0905.0287 Differential Geometry +0905.1138 Mesoscale and Nanoscale Physics +0905.3222 +0905.3746 Cosmology and Nongalactic Astrophysics +0905.4306 Number Theory +0905.4672 Phenomenology +0906.3499 Optimization and Control +0906.4198 +0907.0197 Cosmology and Nongalactic Astrophysics +0907.0571 Algebraic Geometry +0907.1710 Strongly Correlated Electrons +0907.5439 Optimization and Control +0908.4537 +0909.3874 Cosmology and Nongalactic Astrophysics +0909.4681 Differential Geometry +0910.1478 Astrophysics of Galaxies +0910.1491 Geometric Topology +0910.1820 Probability +0910.2683 Mesoscale and Nanoscale Physics +0910.2759 Combinatorics +0910.3017 Earth and Planetary Astrophysics +0910.3619 Optimization and Control +0910.5003 Atomic Physics +0911.0027 Functional Analysis +0911.0741 Computational Physics +0911.0769 +0911.2253 Rings and Algebras +0911.2287 Algebraic Geometry +0911.3583 Phenomenology +0911.3830 Representation Theory +0911.4312 Analysis of PDEs +0911.4674 Disordered Systems and Neural Networks +0911.4791 Phenomenology +0912.0367 Superconductivity +0912.1346 Theory +0912.1362 Statistical Mechanics +0912.1403 Data Structures and Algorithms +0912.2431 Mesoscale and Nanoscale Physics +0912.4825 Theory +1001.0513 Probability +1001.0565 Theory +1001.0838 Algebraic Geometry +1001.0993 Phenomenology +1001.1583 Analysis of PDEs +1002.0030 Differential Geometry +1002.0202 Theory +1002.1598 Algebraic Geometry +1002.1942 Theory +1002.2561 Quantum Algebra +1002.2590 Group Theory +1002.4255 Networking and Internet Architecture +1002.4439 Differential Geometry +1003.2383 +1003.3931 Optimization and Control +1003.4705 Complex Variables +1003.5504 +1003.5944 Category Theory +1004.0261 History and Overview +1004.1602 Probability +1004.2359 Phenomenology +1004.2884 Programming Languages +1004.2985 +1004.3218 +1004.3607 Theory +1004.5380 Solar and Stellar Astrophysics +1005.0604 +1005.0743 +1005.1050 Functional Analysis +1005.1212 +1005.1920 Theory +1005.1936 Theory +1005.2294 General Physics +1005.2336 K-Theory and Homology +1005.2794 Quantum Gases +1005.3269 Theory +1005.3521 Superconductivity +1005.5052 Cosmology and Nongalactic Astrophysics +1006.1300 Combinatorics +1006.2092 Cosmology and Nongalactic Astrophysics +1006.2288 Classical Physics +1006.2304 Phenomenology +1006.2452 Populations and Evolution +1006.2707 +1006.3005 Theory +1006.3211 Physics and Society +1006.3261 Theory +1006.3322 Phenomenology +1006.3549 Solar and Stellar Astrophysics +1006.4903 Graphics +1006.5563 Geometric Topology +1007.0116 +1007.0263 Theory +1007.0615 Mesoscale and Nanoscale Physics +1007.0974 Mesoscale and Nanoscale Physics +1007.1109 Materials Science +1007.2607 Exactly Solvable and Integrable Systems +1007.2629 +1007.2668 Biomolecules +1007.2904 Probability +1007.4206 Phenomenology +1007.4935 Discrete Mathematics +1007.5048 Experiment +1007.5305 Phenomenology +1008.0081 Phenomenology +1008.1500 Phenomenology +1008.2338 +1008.2376 Phenomenology +1008.2442 Atmospheric and Oceanic Physics +1008.3141 Phenomenology +1008.3465 +1008.3477 Strongly Correlated Electrons +1008.3832 Theory +1008.3856 +1008.4133 Theory +1008.4483 Theory +1008.4548 Logic +1008.4763 +1008.4777 Phenomenology +1008.4876 Quantum Gases +1008.5000 Discrete Mathematics +1009.0340 Theory +1009.0575 General Topology +1009.0638 Physics and Society +1009.1566 Phenomenology +1009.1632 Phenomenology +1009.1877 Theory +1009.2320 Phenomenology +1009.2773 Phenomenology +1009.2776 Phenomenology +1009.2957 +1009.3214 Symbolic Computation +1009.3225 +1009.3751 Information Theory +1009.3782 +1009.4074 Theory +1009.4577 Phenomenology +1009.4872 Chemical Physics +1009.4925 +1009.5071 Theory +1009.5228 Lattice +1009.5379 Phenomenology +1009.5413 Phenomenology +1009.5459 +1009.5865 Phenomenology +1009.6051 Mesoscale and Nanoscale Physics +1009.6151 Cosmology and Nongalactic Astrophysics +1009.6221 Disordered Systems and Neural Networks +1010.2858 Mesoscale and Nanoscale Physics +1010.2909 Optics +1010.3761 Theory +1010.3898 Information Retrieval +1010.3983 Information Theory +1010.4014 Cosmology and Nongalactic Astrophysics +1010.4237 Learning +1010.4302 Theory +1010.5318 Formal Languages and Automata Theory +1010.6107 Number Theory +1011.0168 +1011.1524 General Topology +1011.1604 Theory +1011.1706 Quantum Gases +1011.1782 Strongly Correlated Electrons +1011.2185 Phenomenology +1011.2230 Analysis of PDEs +1011.2412 Analysis of PDEs +1011.2691 Optics +1011.3136 Other Condensed Matter +1011.3208 Metric Geometry +1011.4428 Other Condensed Matter +1011.4814 +1011.4839 Phenomenology +1012.0005 Cosmology and Nongalactic Astrophysics +1012.0429 Differential Geometry +1012.0950 Logic +1012.1913 Probability +1012.1930 Experiment +1012.2090 Quantitative Methods +1012.2416 Representation Theory +1012.3169 Cosmology and Nongalactic Astrophysics +1012.3427 Logic +1012.3516 Accelerator Physics +1012.4483 Optics +1012.4810 Earth and Planetary Astrophysics +1012.5159 Physics and Society +1012.5275 Phenomenology +1012.5540 Statistical Mechanics +1012.5646 Statistical Mechanics +1012.5666 +1012.5674 +1012.5730 Materials Science +1012.5847 Artificial Intelligence +1012.5957 Algebraic Topology +1012.5962 Computation and Language +1012.5978 Mesoscale and Nanoscale Physics +1012.5981 Mesoscale and Nanoscale Physics +1012.6037 Phenomenology +1101.0011 Networking and Internet Architecture +1101.0017 Complex Variables +1101.0020 Populations and Evolution +1101.0021 Data Structures and Algorithms +1101.0030 +1101.0036 Formal Languages and Automata Theory +1101.0039 Computational Physics +1101.0043 Lattice +1101.0045 Instrumentation and Detectors +1101.0046 Functional Analysis +1101.0047 Methodology +1101.0049 Group Theory +1101.0056 Data Structures and Algorithms +1101.0060 Probability +1101.0061 Materials Science +1101.0068 Probability +1101.0077 Astrophysics of Galaxies +1101.0079 Pricing of Securities +1101.0083 +1101.0093 Distributed, Parallel, and Cluster Computing +1101.0095 Algebraic Geometry +1101.0096 Numerical Analysis +1101.0099 Analysis of PDEs +1101.0100 Genomics +1101.0104 Cryptography and Security +1101.0105 Software Engineering +1101.0109 Lattice +1101.0116 Phenomenology +1101.0125 Solar and Stellar Astrophysics +1101.0127 Materials Science +1101.0128 Geometric Topology +1101.0129 Combinatorics +1101.0138 Numerical Analysis +1101.0139 Chaotic Dynamics +1101.0143 Category Theory +1101.0145 Other Statistics +1101.0147 Functional Analysis +1101.0148 Phenomenology +1101.0150 Fluid Dynamics +1101.0156 Solar and Stellar Astrophysics +1101.0157 Classical Physics +1101.0160 Data Structures and Algorithms +1101.0162 Functional Analysis +1101.0166 Functional Analysis +1101.0169 Analysis of PDEs +1101.0170 +1101.0171 Solar and Stellar Astrophysics +1101.0172 Optimization and Control +1101.0173 Cryptography and Security +1101.0175 Operator Algebras +1101.0176 Solar and Stellar Astrophysics +1101.0177 Operator Algebras +1101.0178 Number Theory +1101.0182 Combinatorics +1101.0184 Statistical Finance +1101.0188 Fluid Dynamics +1101.0198 Information Retrieval +1101.0203 Networking and Internet Architecture +1101.0208 Lattice +1101.0209 Networking and Internet Architecture +1101.0213 +1101.0218 +1101.0221 Rings and Algebras +1101.0222 Theory +1101.0223 Combinatorics +1101.0227 Algebraic Topology +1101.0228 Logic +1101.0229 Exactly Solvable and Integrable Systems +1101.0230 Analysis of PDEs +1101.0233 Group Theory +1101.0234 Human-Computer Interaction +1101.0235 Human-Computer Interaction +1101.0236 Solar and Stellar Astrophysics +1101.0237 Computer Vision and Pattern Recognition +1101.0240 Methodology +1101.0241 Cryptography and Security +1101.0242 Computer Vision and Pattern Recognition +1101.0243 Graphics +1101.0244 Cryptography and Security +1101.0248 Cryptography and Security +1101.0254 Representation Theory +1101.0255 Statistics Theory +1101.0257 Mesoscale and Nanoscale Physics +1101.0259 Number Theory +1101.0261 Experiment +1101.0262 Graphics +1101.0266 Optimization and Control +1101.0267 Rings and Algebras +1101.0268 +1101.0270 Symbolic Computation +1101.0277 Superconductivity +1101.0289 Number Theory +1101.0293 Quantum Algebra +1101.0296 Neurons and Cognition +1101.0303 +1101.0307 Phenomenology +1101.0308 +1101.0310 +1101.0311 Number Theory +1101.0315 General Physics +1101.0316 Machine Learning +1101.0317 Machine Learning +1101.0318 Instrumentation and Detectors +1101.0327 Information Theory +1101.0331 Analysis of PDEs +1101.0333 Probability +1101.0341 Statistical Mechanics +1101.0342 Disordered Systems and Neural Networks +1101.0346 Statistical Mechanics +1101.0347 Solar and Stellar Astrophysics +1101.0348 General Physics +1101.0350 Networking and Internet Architecture +1101.0357 Distributed, Parallel, and Cluster Computing +1101.0359 Phenomenology +1101.0360 +1101.0366 +1101.0375 +1101.0376 Networking and Internet Architecture +1101.0383 Functional Analysis +1101.0384 Computer Vision and Pattern Recognition +1101.0387 Computation +1101.0388 Combinatorics +1101.0392 +1101.0395 Graphics +1101.0401 Differential Geometry +1101.0403 +1101.0410 Combinatorics +1101.0415 Biological Physics +1101.0418 Analysis of PDEs +1101.0423 Lattice +1101.0427 Cryptography and Security +1101.0428 Learning +1101.0435 Rings and Algebras +1101.0439 Mesoscale and Nanoscale Physics +1101.0440 Combinatorics +1101.0443 +1101.0447 Probability +1101.0456 Differential Geometry +1101.0457 Computer Vision and Pattern Recognition +1101.0460 Differential Geometry +1101.0470 Experiment +1101.0472 Representation Theory +1101.0480 Probability +1101.0482 Optics +1101.0485 Rings and Algebras +1101.0492 History and Overview +1101.0494 Strongly Correlated Electrons +1101.0496 Analysis of PDEs +1101.0503 +1101.0505 Chaotic Dynamics +1101.0508 Superconductivity +1101.0511 Phenomenology +1101.0512 Lattice +1101.0518 Lattice +1101.0522 Probability +1101.0523 Computational Complexity +1101.0525 Theory +1101.0530 Formal Languages and Automata Theory +1101.0532 Geometric Topology +1101.0536 Phenomenology +1101.0538 Phenomenology +1101.0541 Quantum Gases +1101.0544 Differential Geometry +1101.0548 Logic +1101.0551 Numerical Analysis +1101.0552 Cryptography and Security +1101.0558 Operator Algebras +1101.0561 Phenomenology +1101.0566 Biological Physics +1101.0577 Algebraic Geometry +1101.0579 Populations and Evolution +1101.0589 Lattice +1101.0595 Instrumentation and Methods for Astrophysics +astro-ph/9509116 +astro-ph/9602045 +astro-ph/9606180 +astro-ph/9808010 +astro-ph/9904072 +cond-mat/0009255 +cond-mat/0402418 Statistical Mechanics +cond-mat/0409615 Superconductivity +cond-mat/0412730 Statistical Mechanics +cond-mat/0511736 Statistical Mechanics +hep-ph/0108108 Phenomenology +hep-ph/0208111 Phenomenology +hep-ph/0309013 Phenomenology +hep-ph/0409152 Phenomenology +hep-ph/0501111 Phenomenology +hep-ph/0508048 Phenomenology +hep-ph/9404275 Phenomenology +hep-ph/9408386 Phenomenology +hep-ph/9412246 Phenomenology +hep-ph/9507352 Phenomenology +hep-ph/9509360 Phenomenology +hep-ph/9511286 Phenomenology +hep-ph/9511383 Phenomenology +hep-ph/9904225 Phenomenology +math-ph/0104031 +math-ph/0505049 +math-ph/9804005 +math-ph/9910016 +math/0211352 Algebraic Geometry +math/0211353 Algebraic Geometry +math/0302244 Differential Geometry +math/0503038 Algebraic Geometry +math/0507181 Algebraic Topology +math/0508551 Algebraic Geometry +math/0509612 Probability +math/0605405 Optimization and Control +math/0610265 Algebraic Geometry +math/0610380 Differential Geometry +math/0610936 Geometric Topology +math/0611475 Algebraic Geometry +math/9805077 Algebraic Geometry +math/9805086 Algebraic Geometry +math/9910156 Algebraic Geometry +nlin/0702049 Pattern Formation and Solitons +nucl-ex/9612007 +nucl-th/0401043 +nucl-th/9811081 +physics/0110009 Geophysics +physics/0112018 Plasma Physics +physics/0508019 Geophysics +physics/0702145 Fluid Dynamics +quant-ph/0010115 +quant-ph/0103139 +quant-ph/0105049 +quant-ph/0110023 +quant-ph/0209090 +quant-ph/0312006 +quant-ph/0401027 +quant-ph/0406132 +quant-ph/0406139 +quant-ph/9909073 +0802.3536 Differential Geometry +0807.1513 Neurons and Cognition +0910.2369 Symplectic Geometry +0912.4489 Statistics Theory +1006.3035 Artificial Intelligence +1007.1535 Data Structures and Algorithms +1009.4889 Algebraic Geometry +1010.4084 Multimedia +1010.5141 Information Theory +1010.5846 Combinatorics +1011.1769 Representation Theory +1012.0370 Analysis of PDEs +1012.4409 Phenomenology +1101.5585 +1102.4360 +1102.5113 Cosmology and Nongalactic Astrophysics +1103.2723 +1104.1729 Performance +1105.0439 +1105.1922 Numerical Analysis +1105.5334 Mesoscale and Nanoscale Physics +1106.0347 Representation Theory +1106.1481 Differential Geometry +1106.5481 Complex Variables +1107.0122 Strongly Correlated Electrons +1107.4173 Combinatorics +1107.4613 Probability +1108.0047 Genomics +1108.2409 Group Theory +1108.5373 Theory +1109.4103 Combinatorics +1109.4646 Complex Variables +1109.5845 Probability +1110.1691 Classical Analysis and ODEs +1110.4063 +1110.4279 Metric Geometry +1111.3296 Mesoscale and Nanoscale Physics +1111.4646 Statistics Theory +1111.5198 Exactly Solvable and Integrable Systems +1112.0087 +1112.1825 +1112.3552 Mesoscale and Nanoscale Physics +1112.4298 Medical Physics +1112.5253 +1201.0249 Mesoscale and Nanoscale Physics +1201.0590 Statistics Theory +1201.3325 Commutative Algebra +1202.1147 +1202.2251 Information Theory +1202.2293 Social and Information Networks +1202.3430 +1202.4943 Multimedia +1202.5344 +1202.5568 Statistical Mechanics +1202.6063 Cosmology and Nongalactic Astrophysics +1203.0338 Superconductivity +1203.1028 Strongly Correlated Electrons +1203.1117 Soft Condensed Matter +1203.1854 Information Theory +1203.1929 Mesoscale and Nanoscale Physics +1203.4741 Strongly Correlated Electrons +1204.0702 +1204.1231 Artificial Intelligence +1204.4275 +1204.5064 Phenomenology +1205.0014 Mesoscale and Nanoscale Physics +1205.1915 Strongly Correlated Electrons +1205.2836 Strongly Correlated Electrons +1205.4858 Strongly Correlated Electrons +1205.6714 Dynamical Systems +1205.6862 Networking and Internet Architecture +1205.7076 Mesoscale and Nanoscale Physics +1206.0193 Mesoscale and Nanoscale Physics +1206.0304 Machine Learning +1206.1222 Materials Science +1206.1910 Fluid Dynamics +1206.2281 Cosmology and Nongalactic Astrophysics +1206.2582 Phenomenology +1207.0875 Astrophysics of Galaxies +1207.0908 Strongly Correlated Electrons +1207.3065 Accelerator Physics +1207.4279 Phenomenology +1208.1343 Phenomenology +1208.1583 +1208.2292 Numerical Analysis +1208.2385 Rings and Algebras +1208.2686 Digital Libraries +1208.2687 Materials Science +1208.2693 Number Theory +1208.2698 Combinatorics +1208.2704 Functional Analysis +1208.2714 Representation Theory +1208.2716 Applications +1208.2719 Information Theory +1208.2720 Neurons and Cognition +1208.2726 Analysis of PDEs +1208.2737 Information Theory +1208.2738 Classical Physics +1208.2744 +1208.2746 Logic in Computer Science +1208.2747 Formal Languages and Automata Theory +1208.2748 Logic in Computer Science +1208.2749 Programming Languages +1208.2750 Logic in Computer Science +1208.2751 Formal Languages and Automata Theory +1208.2752 Programming Languages +1208.2753 Logic in Computer Science +1208.2754 Programming Languages +1208.2755 Formal Languages and Automata Theory +1208.2756 Computational Complexity +1208.2757 Formal Languages and Automata Theory +1208.2758 Formal Languages and Automata Theory +1208.2760 Formal Languages and Automata Theory +1208.2761 Formal Languages and Automata Theory +1208.2762 Formal Languages and Automata Theory +1208.2763 Formal Languages and Automata Theory +1208.2764 Formal Languages and Automata Theory +1208.2765 Formal Languages and Automata Theory +1208.2766 Formal Languages and Automata Theory +1208.2767 Formal Languages and Automata Theory +1208.2768 Formal Languages and Automata Theory +1208.2769 Formal Languages and Automata Theory +1208.2770 Formal Languages and Automata Theory +1208.2771 Formal Languages and Automata Theory +1208.2773 Databases +1208.2783 Cellular Automata and Lattice Gases +1208.2785 Computational Geometry +1208.2786 Information Theory +1208.2791 Mesoscale and Nanoscale Physics +1208.2792 Number Theory +1208.2797 Biological Physics +1208.2799 Astrophysics of Galaxies +1208.2805 +1208.2808 Learning +1208.2811 Mesoscale and Nanoscale Physics +1208.2814 +1208.2820 Soft Condensed Matter +1208.2827 Accelerator Physics +1208.2828 Analysis of PDEs +1208.2832 Data Structures and Algorithms +1208.2837 Biological Physics +1208.2839 Classical Analysis and ODEs +1208.2840 Dynamical Systems +1208.2849 Distributed, Parallel, and Cluster Computing +1208.2850 Materials Science +1208.2856 Combinatorics +1208.2859 Combinatorics +1208.2860 Probability +1208.2861 Cryptography and Security +1208.2866 Mesoscale and Nanoscale Physics +1208.2868 +1208.2869 Metric Geometry +1208.2870 Networking and Internet Architecture +1208.2872 Statistical Mechanics +1208.2873 Learning +1208.2876 Other Condensed Matter +1208.2877 Cryptography and Security +1208.2878 Statistical Finance +1208.2885 Experiment +1208.2896 Cryptography and Security +1208.2898 Algebraic Geometry +1208.2903 Strongly Correlated Electrons +1208.2905 +1208.2917 Functional Analysis +1208.2918 Functional Analysis +1208.2925 Learning +1208.2929 Statistics Theory +1208.2933 Operator Algebras +1208.2935 Exactly Solvable and Integrable Systems +1208.2936 Distributed, Parallel, and Cluster Computing +1208.2938 Probability +1208.2942 Combinatorics +1208.2949 Superconductivity +math/0701058 Probability +0704.2931 History and Overview +0802.1620 Physics and Society +0803.0233 +0804.0676 Statistics Theory +0807.4203 Algebraic Geometry +0808.0297 Metric Geometry +0808.1391 +0809.4442 Dynamical Systems +0810.1756 Data Structures and Algorithms +0812.4906 Algebraic Topology +0901.1515 Representation Theory +0902.0196 Group Theory +0903.0944 Mesoscale and Nanoscale Physics +0905.1527 Complex Variables +0909.4790 Probability +0909.5344 Differential Geometry +0910.5366 Superconductivity +0912.1490 Quantum Gases +0912.3389 Probability +1001.1524 Quantum Algebra +1001.2744 Dynamical Systems +1002.4180 Robotics +1003.1675 Group Theory +1003.5330 Data Structures and Algorithms +1005.5525 Data Structures and Algorithms +1006.3286 Complex Variables +1006.4492 Algebraic Geometry +1007.4225 Algebraic Geometry +1008.0762 Phenomenology +1009.0777 Cosmology and Nongalactic Astrophysics +1010.5353 Lattice +1011.6417 +1012.0992 +1012.1821 +1101.0953 Soft Condensed Matter +1102.3003 Numerical Analysis +1102.3736 Geometric Topology +1103.1969 +1103.3643 Optics +1103.3693 Discrete Mathematics +1103.5282 Algebraic Geometry +1104.0923 Physics and Society +1104.3816 Mesoscale and Nanoscale Physics +1104.4623 +1105.0426 Quantum Gases +1105.2054 Learning +1106.0956 Strongly Correlated Electrons +1106.1578 Dynamical Systems +1106.2253 Mesoscale and Nanoscale Physics +1106.2726 +1106.3153 Information Theory +1106.4980 Computational Physics +1107.1920 Combinatorics +1107.2385 Theory +1107.4649 Data Analysis, Statistics and Probability +1107.5333 Geometric Topology +1107.5675 +1108.0225 Theory +1109.0859 +1109.5102 Materials Science +1109.6050 Classical Analysis and ODEs +1109.6086 Cosmology and Nongalactic Astrophysics +1110.0292 Number Theory +1110.1121 +1110.1276 Statistical Mechanics +1110.1463 Mesoscale and Nanoscale Physics +1110.2183 Quantum Gases +1110.2901 +1110.4169 Cosmology and Nongalactic Astrophysics +1110.4322 Learning +1110.4728 Theory +1110.4755 Statistical Mechanics +1110.5569 Dynamical Systems +1110.6300 Theory +1111.1181 Mesoscale and Nanoscale Physics +1111.1656 Lattice +1111.1944 +1111.4158 High Energy Astrophysical Phenomena +1111.5704 Materials Science +1111.5829 Quantum Gases +1112.1170 Mesoscale and Nanoscale Physics +1112.2846 Quantum Gases +1112.3169 Superconductivity +1112.3592 High Energy Astrophysical Phenomena +1112.4503 +1112.4733 +1112.4754 Quantum Gases +1112.4934 Atomic Physics +1112.5323 Strongly Correlated Electrons +1112.6072 Numerical Analysis +1201.0082 General Physics +1201.0775 +1201.1470 +1201.1729 Solar and Stellar Astrophysics +1201.1790 Phenomenology +1201.4134 Probability +1201.5502 Soft Condensed Matter +1201.6289 Instrumentation and Detectors +1201.6417 Astrophysics of Galaxies +1202.1329 Mesoscale and Nanoscale Physics +1202.1353 Geometric Topology +1202.2230 Quantum Algebra +1202.2348 Phenomenology +1202.2703 Learning +1202.2714 +1202.2739 Differential Geometry +1202.2808 Algebraic Geometry +1202.2853 Astrophysics of Galaxies +1202.2868 Graphics +1202.2885 General Physics +1202.2888 Social and Information Networks +1202.2891 Algebraic Geometry +1202.2912 Differential Geometry +1202.2914 Networking and Internet Architecture +1202.2915 +1202.2917 Programming Languages +1202.2918 Programming Languages +1202.2919 Programming Languages +1202.2920 Programming Languages +1202.2921 Programming Languages +1202.2922 Programming Languages +1202.2923 Programming Languages +1202.2924 Programming Languages +1202.2926 Databases +1202.2932 Cosmology and Nongalactic Astrophysics +1202.2933 Cosmology and Nongalactic Astrophysics +1202.2934 Probability +1202.2935 Algebraic Geometry +1202.2941 Quantum Gases +1202.2944 Information Theory +1202.2945 Probability +1202.2951 Biological Physics +1202.2960 Classical Analysis and ODEs +1202.2961 Algebraic Geometry +1202.2963 Information Theory +1202.2966 History and Overview +1202.2976 +1202.2979 Dynamical Systems +1202.2980 Probability +1202.2981 Distributed, Parallel, and Cluster Computing +1202.2983 +1202.2995 General Physics +1202.2999 Probability +1202.3000 Numerical Analysis +1202.3005 High Energy Astrophysical Phenomena +1202.3006 Combinatorics +1202.3009 Representation Theory +1202.3010 Superconductivity +1202.3011 Cosmology and Nongalactic Astrophysics +1202.3016 Mesoscale and Nanoscale Physics +1202.3017 Instrumentation and Detectors +1202.3018 Networking and Internet Architecture +1202.3023 Statistical Mechanics +1202.3027 Combinatorics +1202.3028 +1202.3029 Analysis of PDEs +1202.3031 Statistical Mechanics +1202.3034 +1202.3039 High Energy Astrophysical Phenomena +1202.3041 Probability +1202.3045 +1202.3046 Computer Vision and Pattern Recognition +1202.3047 Statistical Mechanics +1202.3048 Other Computer Science +1202.3052 Cryptography and Security +1202.3053 Statistical Mechanics +1202.3056 Phenomenology +1202.3057 +1202.3059 Physics and Society +1202.3061 Number Theory +1202.3063 Complex Variables +1202.3064 Spectral Theory +1202.3066 Algebraic Geometry +1202.3070 +1202.3079 Learning +1202.3087 Computational Physics +1202.3090 Algebraic Geometry +1202.3092 Combinatorics +1202.3103 Combinatorics +1202.3106 Dynamical Systems +1202.3108 Distributed, Parallel, and Cluster Computing +1202.3112 Soft Condensed Matter +1202.3113 Dynamical Systems +1202.3117 Medical Physics +1202.3123 Probability +1202.3126 Rings and Algebras +1202.3128 Combinatorics +1202.3130 Probability +cond-mat/0102444 Superconductivity +gr-qc/0601128 +math/0106084 Algebraic Geometry +math/0202086 Algebraic Geometry +math/0210374 Algebraic Geometry +math/0610921 Rings and Algebras +math/9809060 Algebraic Geometry +0707.4668 Other Condensed Matter +0803.1463 +0812.0065 General Physics +0901.2815 +0907.1532 +0908.3235 Quantum Gases +0911.2005 Quantum Gases +0912.5312 +1003.4873 Algebraic Geometry +1005.1519 Probability +1006.3443 Mesoscale and Nanoscale Physics +1006.4742 Computational Physics +1007.3578 Probability +1008.0772 +1009.5314 Probability +1011.0620 Combinatorics +1011.3542 Logic in Computer Science +1102.5126 Portfolio Management +1103.1460 Probability +1103.2703 +1105.0968 Atmospheric and Oceanic Physics +1105.1140 Atmospheric and Oceanic Physics +1105.2193 +1105.4634 Classical Analysis and ODEs +1105.5978 Classical Analysis and ODEs +1106.0881 Superconductivity +1106.4280 Dynamical Systems +1106.5284 Solar and Stellar Astrophysics +1107.2325 Group Theory +1107.3532 Cosmology and Nongalactic Astrophysics +1108.0375 K-Theory and Homology +1108.5137 Atomic Physics +1108.5404 Representation Theory +1109.5146 Analysis of PDEs +1109.5726 Functional Analysis +1109.6072 Representation Theory +1110.0315 General Physics +1110.0660 +1110.6691 +1111.0560 Mesoscale and Nanoscale Physics +1111.0651 Optics +1111.3914 Strongly Correlated Electrons +1111.5089 Plasma Physics +1112.1249 Chaotic Dynamics +1112.1755 Superconductivity +1112.2397 Trading and Market Microstructure +1112.2437 Networking and Internet Architecture +1112.3727 Analysis of PDEs +1201.1487 Solar and Stellar Astrophysics +1201.1505 Strongly Correlated Electrons +1201.1991 Solar and Stellar Astrophysics +1201.4007 Analysis of PDEs +1201.6485 Phenomenology +1202.1333 Operator Algebras +1202.1956 Theory +1202.4151 Quantum Gases +1202.4634 Strongly Correlated Electrons +1203.0635 Strongly Correlated Electrons +1203.2058 +1203.2209 Combinatorics +1203.3392 Statistical Mechanics +1203.4523 Learning +1204.1286 Atmospheric and Oceanic Physics +1204.1484 Differential Geometry +1204.2583 Physics and Society +1204.3208 Probability +1204.4531 Strongly Correlated Electrons +1204.4936 Functional Analysis +1204.5919 Earth and Planetary Astrophysics +1205.0593 Representation Theory +1205.2252 Mesoscale and Nanoscale Physics +1205.2526 Solar and Stellar Astrophysics +1205.3517 +1205.4804 +1205.5796 Cosmology and Nongalactic Astrophysics +1205.6333 Computational Physics +1205.6348 +1206.3555 Artificial Intelligence +1206.3809 +1206.6086 +1207.0635 Chemical Physics +1207.1296 Commutative Algebra +1207.4305 Optimization and Control +1207.4801 +1208.1112 Cosmology and Nongalactic Astrophysics +1208.3457 Physics and Society +1208.3934 Disordered Systems and Neural Networks +1208.4935 Atomic and Molecular Clusters +1209.1384 Functional Analysis +1209.1607 Algebraic Topology +1209.2088 Combinatorics +1209.2114 Astrophysics of Galaxies +1209.2131 Computer Science and Game Theory +1209.2138 Information Theory +1209.2144 +1209.2153 High Energy Astrophysical Phenomena +1209.2154 Networking and Internet Architecture +1209.2163 Physics and Society +1209.2170 Dynamical Systems +1209.2171 Computational Geometry +1209.2181 Dynamical Systems +1209.2182 Popular Physics +1209.2183 Dynamical Systems +1209.2188 Combinatorics +1209.2189 Networking and Internet Architecture +1209.2191 Distributed, Parallel, and Cluster Computing +1209.2195 Complex Variables +1209.2197 Classical Physics +1209.2198 Differential Geometry +1209.2202 Combinatorics +1209.2204 General Finance +1209.2211 Optics +1209.2212 +1209.2218 Combinatorics +1209.2233 Cosmology and Nongalactic Astrophysics +1209.2234 Networking and Internet Architecture +1209.2237 Formal Languages and Automata Theory +1209.2238 Logic in Computer Science +1209.2239 Logic in Computer Science +1209.2244 Human-Computer Interaction +1209.2246 Numerical Analysis +1209.2247 Strongly Correlated Electrons +1209.2248 Solar and Stellar Astrophysics +1209.2252 +1209.2254 Soft Condensed Matter +1209.2259 Numerical Analysis +1209.2264 Optics +1209.2266 Instrumentation and Methods for Astrophysics +1209.2267 Soft Condensed Matter +1209.2274 Information Retrieval +1209.2276 +1209.2278 Genomics +1209.2280 Optics +1209.2283 Rings and Algebras +1209.2284 Statistical Mechanics +1209.2290 Soft Condensed Matter +1209.2291 High Energy Astrophysical Phenomena +1209.2292 Cosmology and Nongalactic Astrophysics +1209.2294 Statistical Mechanics +1209.2297 Plasma Physics +1209.2298 Risk Management +1209.2299 Phenomenology +1209.2303 Probability +1209.2309 Combinatorics +1209.2311 Numerical Analysis +1209.2318 Differential Geometry +1209.2322 Artificial Intelligence +1209.2324 Mesoscale and Nanoscale Physics +1209.2326 Mesoscale and Nanoscale Physics +1209.2333 Computational Complexity +1209.2334 Theory +1209.2348 History and Overview +1209.2349 Optics +1209.2353 Combinatorics +1209.2354 Number Theory +1209.2366 Probability +1209.2368 Computers and Society +1209.2377 General Physics +1209.2378 Theory +1209.2383 Probability +1209.2385 Optimization and Control +1209.2391 Combinatorics +1209.2400 Computation and Language +1209.2402 +1209.2404 Combinatorics +1209.2407 General Physics +cond-mat/0601164 Strongly Correlated Electrons +0708.3799 Strongly Correlated Electrons +0711.4836 Algebraic Geometry +0801.3679 +0802.0257 Algebraic Geometry +0804.0489 Theory +0804.2938 General Mathematics +0804.2939 General Mathematics +0804.4810 Strongly Correlated Electrons +0812.2255 K-Theory and Homology +0812.2369 Metric Geometry +0901.3804 Differential Geometry +0902.4636 Instrumentation and Methods for Astrophysics +0904.0529 Algebraic Geometry +0904.4845 Soft Condensed Matter +0906.3569 Probability +0908.1197 Algebraic Geometry +0911.2218 Earth and Planetary Astrophysics +0911.3305 Group Theory +1001.0085 Functional Analysis +1001.2751 Numerical Analysis +1002.0954 Biological Physics +1002.2843 Chemical Physics +1006.3543 Theory +1009.3505 Mesoscale and Nanoscale Physics +1010.3603 Probability +1011.3803 +1011.3856 Probability +1012.3581 Mesoscale and Nanoscale Physics +1101.0377 Physics and Society +1101.1528 Computation +1101.2141 +1102.3158 History and Philosophy of Physics +1102.4105 Phenomenology +1103.0752 Solar and Stellar Astrophysics +1103.1088 Geometric Topology +1103.1478 Strongly Correlated Electrons +1103.3908 Analysis of PDEs +1103.4516 Quantum Gases +1104.1034 Logic in Computer Science +1104.2798 Theory +1104.4373 Theory +1105.0247 Trading and Market Microstructure +1105.0696 Lattice +1105.1008 +1105.2258 Instrumentation and Detectors +1105.5278 Mesoscale and Nanoscale Physics +1105.6365 Probability +1106.3233 Analysis of PDEs +1106.3613 Quantum Gases +1106.5579 Statistical Mechanics +1107.0514 +1107.0852 Classical Physics +1107.1702 Biological Physics +1107.3875 Experiment +1107.5793 Physics and Society +1107.5838 Chaotic Dynamics +1108.5165 +1109.0599 Lattice +1109.0949 Logic +1109.3047 Instrumentation and Detectors +1109.3206 General Physics +1109.3207 Instrumentation and Methods for Astrophysics +1109.6579 +1110.0386 Strongly Correlated Electrons +1110.1231 Lattice +1110.1348 Quantum Gases +1110.1570 Mesoscale and Nanoscale Physics +1110.1893 Superconductivity +1110.2229 +1110.2395 Probability +1110.5565 +1110.5874 Statistical Mechanics +1110.6542 Statistical Mechanics +1110.6783 +1111.1560 Data Analysis, Statistics and Probability +1111.5625 Solar and Stellar Astrophysics +1111.7152 +1112.1783 Logic in Computer Science +1112.2395 Quantum Gases +1112.2799 Quantum Gases +1112.3157 Quantum Gases +1112.3488 Materials Science +1112.4904 Optimization and Control +1112.4913 Classical Physics +1112.5903 +1201.0032 Combinatorics +1201.0578 Statistical Mechanics +1201.1555 Commutative Algebra +1201.2226 Phenomenology +1201.2783 Number Theory +1201.2785 Mesoscale and Nanoscale Physics +1201.3267 +1201.4476 Statistical Mechanics +1201.4953 Fluid Dynamics +1201.5196 Optics +1201.5486 Instrumentation and Methods for Astrophysics +1201.5510 Dynamical Systems +1201.5645 Solar and Stellar Astrophysics +1201.5648 Numerical Analysis +1201.5655 Group Theory +1201.5658 Representation Theory +1201.5671 Dynamical Systems +1201.5676 Materials Science +1201.5681 Digital Libraries +1201.5682 Number Theory +1201.5684 Numerical Analysis +1201.5687 Methodology +1201.5688 Networking and Internet Architecture +1201.5689 Information Theory +1201.5691 Commutative Algebra +1201.5696 Differential Geometry +1201.5697 Cosmology and Nongalactic Astrophysics +1201.5704 Optics +1201.5705 Statistics Theory +1201.5706 +1201.5710 Lattice +1201.5712 Theory +1201.5713 Classical Analysis and ODEs +1201.5717 Algebraic Geometry +1201.5718 Algebraic Geometry +1201.5720 +1201.5723 +1201.5728 Cryptography and Security +1201.5729 Discrete Mathematics +1201.5731 Number Theory +1201.5735 Software Engineering +1201.5744 Rings and Algebras +1201.5745 Methodology +1201.5746 Cosmology and Nongalactic Astrophysics +1201.5751 Chaotic Dynamics +1201.5756 +1201.5757 Dynamical Systems +1201.5761 +1201.5763 Astrophysics of Galaxies +1201.5764 Optimization and Control +1201.5773 Experiment +1201.5780 Probability +1201.5783 Functional Analysis +1201.5788 Computational Geometry +1201.5790 Metric Geometry +1201.5795 Optimization and Control +1201.5801 Analysis of PDEs +1201.5802 Instrumentation and Detectors +1201.5807 Instrumentation and Detectors +1201.5810 Symbolic Computation +1201.5811 Logic +1201.5812 Differential Geometry +1201.5813 Disordered Systems and Neural Networks +1201.5817 Number Theory +1201.5820 Quantum Algebra +1201.5824 Data Structures and Algorithms +1201.5831 General Physics +1201.5838 Information Theory +1201.5839 Phenomenology +1201.5847 General Physics +1201.5850 General Physics +1201.5853 Logic in Computer Science +1201.5854 Data Analysis, Statistics and Probability +1201.5856 Complex Variables +1201.5859 Geometric Topology +1201.5866 Probability +1201.5867 Probability +1201.5869 Commutative Algebra +1201.5870 Probability +1201.5877 Solar and Stellar Astrophysics +1201.5878 Complex Variables +1201.5883 Accelerator Physics +1201.5885 Data Analysis, Statistics and Probability +astro-ph/0309356 +astro-ph/0502152 +astro-ph/0601606 +astro-ph/0602077 +astro-ph/0702413 +cond-mat/0604600 Mesoscale and Nanoscale Physics +math/0609190 General Mathematics +math/0702832 Differential Geometry +0705.2956 Symplectic Geometry +0710.5399 Biological Physics +0902.3130 Machine Learning +0903.1223 Applications +0906.2238 Numerical Analysis +0909.2060 Instrumentation and Detectors +1001.4575 +1001.4674 Probability +1005.5698 Computer Science and Game Theory +1006.5209 History and Philosophy of Physics +1008.0798 Solar and Stellar Astrophysics +1008.1476 +1008.2277 Machine Learning +1009.5341 Formal Languages and Automata Theory +1010.1465 Geometric Topology +1010.4364 Number Theory +1010.4504 Machine Learning +1012.2146 Symplectic Geometry +1012.4241 Cryptography and Security +1103.4619 Cosmology and Nongalactic Astrophysics +1105.0768 Software Engineering +1105.2372 Geometric Topology +1105.5688 Quantum Gases +1106.2800 Earth and Planetary Astrophysics +1107.1163 Optimization and Control +1107.2015 Combinatorics +1108.0757 Statistics Theory +1108.2687 Quantum Gases +1108.4614 Cosmology and Nongalactic Astrophysics +1108.4778 Superconductivity +1108.5998 Biological Physics +1109.5568 Mesoscale and Nanoscale Physics +1110.1227 Rings and Algebras +1110.1961 Combinatorics +1110.3760 Combinatorics +1110.5505 Mesoscale and Nanoscale Physics +1111.1194 Probability +1111.1724 Astrophysics of Galaxies +1111.6018 Commutative Algebra +1111.7128 Chaotic Dynamics +1112.0734 Numerical Analysis +1112.3517 +1112.4800 Functional Analysis +1112.4900 Combinatorics +1201.5035 Operator Algebras +1201.5605 Theory +1201.6124 Algebraic Geometry +1202.0291 Strongly Correlated Electrons +1202.0698 Cosmology and Nongalactic Astrophysics +1202.1312 Lattice +1202.2117 Solar and Stellar Astrophysics +1202.2303 Soft Condensed Matter +1202.2310 Biological Physics +1202.2312 Quantum Algebra +1202.3348 Quantum Gases +1202.3643 Physics and Society +1202.4420 +1202.5071 Dynamical Systems +1202.5916 Materials Science +1202.6595 Materials Science +1203.1252 Cosmology and Nongalactic Astrophysics +1203.2857 Soft Condensed Matter +1203.3042 Optics +1203.3386 Strongly Correlated Electrons +1203.3409 +1203.3456 Phenomenology +1203.5351 Physics and Society +1204.0487 Phenomenology +1204.0518 Theory +1204.2771 Strongly Correlated Electrons +1204.5398 Soft Condensed Matter +1204.5665 Soft Condensed Matter +1204.5918 Mesoscale and Nanoscale Physics +1204.6288 Theory +1204.6456 Geometric Topology +1205.1825 Formal Languages and Automata Theory +1205.2203 Geometric Topology +1205.2575 Phenomenology +1205.4099 Strongly Correlated Electrons +1205.4973 Computer Science and Game Theory +1205.5621 Earth and Planetary Astrophysics +1205.6838 Materials Science +1206.1683 Materials Science +1206.1764 Functional Analysis +1206.2160 Materials Science +1206.2465 Information Retrieval +1206.2868 Soft Condensed Matter +1206.2928 Statistical Mechanics +1206.4212 Phenomenology +1206.4400 Cell Behavior +1206.4881 Methodology +1206.4957 Accelerator Physics +1206.4961 Algebraic Geometry +1206.5300 Solar and Stellar Astrophysics +1206.5438 Cosmology and Nongalactic Astrophysics +1206.5448 Chemical Physics +1206.5470 Quantum Gases +1206.5471 Quantum Gases +1206.5472 Quantum Gases +1206.5497 Instrumentation and Methods for Astrophysics +1206.5706 Group Theory +1206.5756 Computational Finance +1206.5791 Solar and Stellar Astrophysics +1206.5793 Solar and Stellar Astrophysics +1206.5794 Solar and Stellar Astrophysics +1206.5828 Atmospheric and Oceanic Physics +1206.5835 Atmospheric and Oceanic Physics +1206.5837 Phenomenology +1206.5843 Materials Science +1206.5845 Geophysics +1206.5846 Quantitative Methods +1206.5847 Materials Science +1206.5849 Physics and Society +1206.5852 Cosmology and Nongalactic Astrophysics +1206.5856 Chaotic Dynamics +1206.5860 Computational Physics +1206.5863 Combinatorics +1206.5864 Algebraic Geometry +1206.5865 Optimization and Control +1206.5868 Group Theory +1206.5870 +1206.5873 Differential Geometry +1206.5876 Rings and Algebras +1206.5882 Learning +1206.5884 Multiagent Systems +1206.5889 Probability +1206.5890 Mesoscale and Nanoscale Physics +1206.5896 Algebraic Geometry +1206.5901 Numerical Analysis +1206.5902 Instrumentation and Detectors +1206.5903 Algebraic Geometry +1206.5904 Populations and Evolution +1206.5907 Number Theory +1206.5912 Plasma Physics +1206.5913 Probability +1206.5914 Probability +1206.5915 Learning +1206.5922 Geophysics +1206.5924 Dynamical Systems +1206.5927 High Energy Astrophysical Phenomena +1206.5928 Artificial Intelligence +1206.5929 Number Theory +1206.5931 Probability +1206.5935 Dynamical Systems +1206.5937 Optimization and Control +1206.5938 Distributed, Parallel, and Cluster Computing +1206.5940 Artificial Intelligence +1206.5945 Genomics +1206.5947 Phenomenology +1206.5951 Atomic Physics +1206.5952 Algebraic Geometry +1206.5953 Optimization and Control +1206.5954 Theory +1206.5957 High Energy Astrophysical Phenomena +1206.5958 High Energy Astrophysical Phenomena +1206.5959 Data Structures and Algorithms +1206.5970 Theory +1206.5975 Category Theory +1206.5977 Differential Geometry +1206.5978 +1206.5979 +1206.5983 Computational Finance +1206.5987 Analysis of PDEs +1206.5990 Analysis of PDEs +1206.5992 General Physics +1206.5996 +1206.5997 Differential Geometry +1206.6002 Functional Analysis +1206.6005 Dynamical Systems +1206.6009 +1206.6015 Learning +1206.6016 Distributed, Parallel, and Cluster Computing +1206.6019 Algebraic Geometry +1206.6030 Learning +1206.6038 Learning +1206.6040 +1206.6041 Functional Analysis +1206.6047 Plasma Physics +1206.6053 Methodology +1206.6057 Phenomenology +1206.6058 Phenomenology +1206.6065 Classical Analysis and ODEs +1206.6066 Dynamical Systems +1206.6068 Computational Complexity +1206.6070 Methodology +1206.6073 +1206.6077 Differential Geometry +1206.6080 Artificial Intelligence +1206.6083 +1206.6089 Analysis of PDEs +1206.6092 Experiment +1206.6097 Solar and Stellar Astrophysics +astro-ph/0608492 +cond-mat/0206458 Soft Condensed Matter +math-ph/0512022 +math/9912108 K-Theory and Homology +0804.0510 Information Theory +0804.3640 Combinatorics +0805.0286 Geometric Topology +0809.0775 Materials Science +0810.2657 +0810.5059 +0811.0129 Quantum Algebra +0902.0690 Operator Algebras +0904.1538 Information Theory +0907.3654 Information Theory +0910.2344 Combinatorics +0912.2207 Soft Condensed Matter +0912.5523 Probability +1002.0113 Quantum Algebra +1002.1674 Quantum Gases +1003.4675 Probability +1006.3175 Differential Geometry +1006.5784 +1007.0611 Geometric Topology +1007.1371 Dynamical Systems +1008.2504 Quantum Algebra +1008.2505 Quantum Algebra +1009.4415 Formal Languages and Automata Theory +1010.5617 Theory +1011.5933 Probability +1012.2566 Superconductivity +1012.6006 Dynamical Systems +1101.0279 Analysis of PDEs +1102.0468 History and Philosophy of Physics +1102.0962 Combinatorics +1103.3430 Artificial Intelligence +1103.4599 Strongly Correlated Electrons +1103.5943 Logic +1104.5060 Astrophysics of Galaxies +1105.1712 Disordered Systems and Neural Networks +1105.5468 Strongly Correlated Electrons +1106.5169 Superconductivity +1107.2613 Quantum Gases +1107.5266 Physics and Society +1108.0346 Phenomenology +1108.1542 Lattice +1108.2217 Chaotic Dynamics +1108.3510 Quantum Gases +1109.1881 Algebraic Geometry +1109.4229 Superconductivity +1109.6063 +1110.2415 +1110.3298 +1110.3725 +1110.4062 Mesoscale and Nanoscale Physics +1110.6613 Strongly Correlated Electrons +1110.6919 Phenomenology +1111.0423 Analysis of PDEs +1111.1317 Lattice +1111.7088 Information Theory +1112.0661 +1112.1708 Theory +1112.1962 Lattice +1112.3897 Cosmology and Nongalactic Astrophysics +1112.4105 Computational Geometry +1112.5768 Quantum Gases +1112.5913 Biological Physics +1112.5974 Superconductivity +1112.6316 High Energy Astrophysical Phenomena +1201.2864 Lattice +1201.3302 Machine Learning +1201.3382 Machine Learning +1201.4160 +1201.5125 Optics +1201.6043 Information Theory +1201.6256 Chemical Physics +1202.0969 Computer Science and Game Theory +1202.1335 Number Theory +1203.0149 Experiment +1203.0866 Probability +1203.2923 Phenomenology +1203.3328 Methodology +1203.4526 Number Theory +1203.4629 +1203.4864 +1203.5211 Probability +1203.5281 Solar and Stellar Astrophysics +1203.6170 Theory +1203.6333 Optimization and Control +1204.0037 Dynamical Systems +1204.0489 Earth and Planetary Astrophysics +1204.0612 +1204.0718 Probability +1204.0767 Computer Vision and Pattern Recognition +1204.0779 +1204.0783 +1204.0786 Cosmology and Nongalactic Astrophysics +1204.0789 +1204.0797 Combinatorics +1204.0798 Methodology +1204.0799 Dynamical Systems +1204.0803 Information Theory +1204.0808 Materials Science +1204.0809 Instrumentation and Methods for Astrophysics +1204.0811 History and Philosophy of Physics +1204.0813 Classical Analysis and ODEs +1204.0815 Numerical Analysis +1204.0816 Computational Complexity +1204.0822 Computational Physics +1204.0827 Mesoscale and Nanoscale Physics +1204.0834 Algebraic Geometry +1204.0841 Differential Geometry +1204.0842 Analysis of PDEs +1204.0844 Information Theory +1204.0846 Analysis of PDEs +1204.0855 Probability +1204.0861 Differential Geometry +1204.0868 Soft Condensed Matter +1204.0870 Learning +1204.0873 Strongly Correlated Electrons +1204.0878 Statistical Mechanics +1204.0879 Differential Geometry +1204.0882 Analysis of PDEs +1204.0883 Strongly Correlated Electrons +1204.0885 Systems and Control +1204.0886 Theory +1204.0890 Spectral Theory +1204.0892 Materials Science +1204.0894 Rings and Algebras +1204.0896 General Physics +1204.0898 Classical Analysis and ODEs +1204.0899 Earth and Planetary Astrophysics +1204.0900 Instrumentation and Methods for Astrophysics +1204.0905 Computational Geometry +1204.0908 Other Computer Science +1204.0912 Theory +1204.0917 Fluid Dynamics +1204.0919 Experiment +1204.0927 Number Theory +1204.0928 Solar and Stellar Astrophysics +1204.0929 Metric Geometry +1204.0938 Number Theory +1204.0940 High Energy Astrophysical Phenomena +1204.0942 Group Theory +1204.0948 Instrumentation and Methods for Astrophysics +1204.0949 Computational Complexity +1204.0952 Experiment +1204.0958 Robotics +1204.0963 +1204.0976 Earth and Planetary Astrophysics +1204.0986 Networking and Internet Architecture +1204.0987 Cryptography and Security +1204.0998 +1204.1010 Mesoscale and Nanoscale Physics +1204.1014 Materials Science +1204.1019 History and Overview +1204.1035 Statistics Theory +1204.1038 Analysis of PDEs +1204.1039 Number Theory +1204.1044 Mesoscale and Nanoscale Physics +1204.1045 Representation Theory +astro-ph/0110107 +cond-mat/0001342 +cond-mat/0301412 +cond-mat/0305578 Soft Condensed Matter +cond-mat/0306191 +cond-mat/0410407 Strongly Correlated Electrons +cond-mat/9806239 +cond-mat/9904423 +math-ph/0205034 +0710.5007 +0902.0377 Phenomenology +0903.0900 Experiment +0906.4470 Experiment +1008.0047 Information Theory +1108.1434 Cryptography and Security +astro-ph/0010497 +astro-ph/0107535 +astro-ph/0603576 +astro-ph/0609619 +astro-ph/9711144 +cond-mat/9402035 +cond-mat/9406084 +cond-mat/9411050 +hep-th/0608024 Theory +nucl-ex/0511015 +nucl-ex/9707003 +1208.1114 Soft Condensed Matter +1208.1566 Differential Geometry +0808.1161 +0812.2506 Probability +0902.0310 Soft Condensed Matter +0907.3639 Superconductivity +0909.1479 Cosmology and Nongalactic Astrophysics +0910.0457 History and Philosophy of Physics +0910.1297 Superconductivity +0910.5759 Information Theory +0911.2368 Cosmology and Nongalactic Astrophysics +1004.5602 Cosmology and Nongalactic Astrophysics +1009.3100 High Energy Astrophysical Phenomena +1012.3287 Disordered Systems and Neural Networks +1101.4447 Soft Condensed Matter +1102.0696 Geometric Topology +1103.1648 Combinatorics +1104.0736 Materials Science +1104.1331 Statistical Mechanics +1106.1127 Number Theory +1106.3500 Dynamical Systems +1106.3571 Machine Learning +1106.4336 Probability +1107.2558 Theory +1109.3518 Optics +1111.0893 Theory +1112.4117 Strongly Correlated Electrons +1112.4755 Methodology +1112.5390 Chaotic Dynamics +1201.4787 Physics and Society +1202.2870 Mesoscale and Nanoscale Physics +1203.6653 Quantum Gases +1205.0941 Chemical Physics +1205.3044 Differential Geometry +1205.4141 +1205.6270 Theory +1205.6476 Cosmology and Nongalactic Astrophysics +1206.0155 Phenomenology +1206.4207 Differential Geometry +1206.4261 Physics Education +1206.5930 Cryptography and Security +1206.6727 +1207.1992 Operator Algebras +1207.2315 Cosmology and Nongalactic Astrophysics +1207.2645 Quantum Gases +1207.4781 Cosmology and Nongalactic Astrophysics +1207.6749 Cosmology and Nongalactic Astrophysics +1208.0123 +1208.2151 Mesoscale and Nanoscale Physics +1208.3368 Cosmology and Nongalactic Astrophysics +1208.3658 Instrumentation and Methods for Astrophysics +1208.4426 Superconductivity +1208.4470 +1208.4948 Differential Geometry +1208.5459 +1208.5724 Soft Condensed Matter +1208.6526 Materials Science +1209.0761 Cosmology and Nongalactic Astrophysics +1209.2122 Theory +1209.2981 Combinatorics +1209.3642 +1209.4001 Statistical Mechanics +1209.4101 Dynamical Systems +1209.4219 Phenomenology +1209.4668 Superconductivity +1209.4930 +1210.0380 Methodology +1210.1587 Mesoscale and Nanoscale Physics +1210.1673 Materials Science +1210.5880 Solar and Stellar Astrophysics +1210.6700 Strongly Correlated Electrons +1210.7152 Superconductivity +1210.7613 Materials Science +1210.7680 High Energy Astrophysical Phenomena +1211.0980 Optics +1211.3205 Optics +1211.4543 Genomics +1211.4713 +1211.5457 Combinatorics +1211.6464 Superconductivity +1211.6795 Lattice +1211.6883 +1212.0499 Analysis of PDEs +1212.1020 Commutative Algebra +1212.1175 Experiment +1212.1192 Computation and Language +1212.1463 Cosmology and Nongalactic Astrophysics +1212.1464 Social and Information Networks +1212.1469 Databases +1212.1471 Computer Science and Game Theory +1212.1476 Analysis of PDEs +1212.1478 Computation and Language +1212.1479 Computation +1212.1485 Logic in Computer Science +1212.1490 Earth and Planetary Astrophysics +1212.1507 Medical Physics +1212.1509 Group Theory +1212.1510 Solar and Stellar Astrophysics +1212.1526 Complex Variables +1212.1533 Lattice +1212.1535 Combinatorics +1212.1541 Astrophysics of Galaxies +1212.1542 Logic +1212.1545 Category Theory +1212.1548 Logic in Computer Science +1212.1555 Astrophysics of Galaxies +1212.1558 Earth and Planetary Astrophysics +1212.1560 Astrophysics of Galaxies +1212.1565 +1212.1568 Lattice +1212.1570 Artificial Intelligence +1212.1572 Lattice +1212.1573 Analysis of PDEs +1212.1576 Cosmology and Nongalactic Astrophysics +1212.1578 Analysis of PDEs +1212.1579 Number Theory +1212.1580 Materials Science +1212.1581 Number Theory +1212.1582 Analysis of PDEs +1212.1584 Functional Analysis +1212.1592 History and Philosophy of Physics +1212.1595 Optics +1212.1598 Phenomenology +1212.1601 Biological Physics +1212.1602 Analysis of PDEs +1212.1603 Systems and Control +1212.1604 Functional Analysis +1212.1607 Combinatorics +1212.1609 Data Structures and Algorithms +1212.1612 Materials Science +1212.1621 Networking and Internet Architecture +1212.1625 Information Retrieval +1212.1628 +1212.1629 Systems and Control +1212.1633 Social and Information Networks +1212.1636 Phenomenology +1212.1637 +1212.1641 Cell Behavior +1212.1644 General Mathematics +1212.1646 Combinatorics +1212.1649 +1212.1650 Representation Theory +1212.1651 Other Computer Science +1212.1659 Materials Science +1212.1661 General Finance +1212.1664 Astrophysics of Galaxies +1212.1668 Fluid Dynamics +1212.1669 Differential Geometry +1212.1671 Cosmology and Nongalactic Astrophysics +1212.1677 Adaptation and Self-Organizing Systems +1212.1678 K-Theory and Homology +1212.1679 Data Analysis, Statistics and Probability +1212.1680 Analysis of PDEs +1212.1682 Combinatorics +1212.1684 Physics and Society +1212.1690 Materials Science +1212.1695 Classical Analysis and ODEs +1212.1697 Functional Analysis +1212.1698 Metric Geometry +1212.1699 Geometric Topology +1212.1703 Information Theory +1212.1706 Numerical Analysis +1212.1709 Physics and Society +cond-mat/0411404 Superconductivity +math-ph/0212034 +math/0511232 Algebraic Topology +0707.2834 Probability +0712.1674 +0812.1314 Combinatorics +0812.4373 Adaptation and Self-Organizing Systems +0903.0213 Mesoscale and Nanoscale Physics +0905.0746 Mesoscale and Nanoscale Physics +0906.3433 Logic +0909.4729 Strongly Correlated Electrons +0912.2791 Mesoscale and Nanoscale Physics +1001.2952 Optimization and Control +1002.0260 Theory +1003.0146 Learning +1003.0666 Analysis of PDEs +1003.2289 Probability +1003.5097 Information Theory +1004.4381 Representation Theory +1005.1608 Probability +1005.4107 Statistics Theory +1007.0571 Computer Science and Game Theory +1008.1926 Differential Geometry +1008.2627 Materials Science +1008.3683 History and Overview +1009.1370 Statistics Theory +1009.3381 Materials Science +1010.0976 Materials Science +1010.2301 +1010.6174 Phenomenology +1012.3680 Combinatorics +1012.3817 Algebraic Geometry +1101.4743 Methodology +1101.5865 Molecular Networks +1102.0072 Computational Complexity +1102.2380 Phenomenology +1102.3280 Analysis of PDEs +1102.5580 Algebraic Geometry +1103.0088 Algebraic Geometry +1103.3794 Information Theory +1104.1154 Dynamical Systems +1105.0434 Quantum Algebra +1105.2493 Machine Learning +1105.3020 Probability +1105.5705 Classical Physics +1106.1549 Algebraic Topology +1106.3842 Instrumentation and Methods for Astrophysics +1106.4017 +1106.4317 Quantitative Methods +1107.2025 +1107.2290 +1107.5012 Mesoscale and Nanoscale Physics +1107.6023 +1108.0922 +1108.4510 Fluid Dynamics +1109.0344 Quantum Gases +1109.1503 +1109.1913 Information Theory +1109.2426 +1109.3373 +1109.3768 General Physics +1109.5289 General Physics +1109.5685 Phenomenology +1109.6569 Chaotic Dynamics +1110.0442 +1110.1056 Cosmology and Nongalactic Astrophysics +1110.3392 Methodology +1110.4797 Numerical Analysis +1110.5185 +1110.5693 +1111.0215 Fluid Dynamics +1111.0223 Cosmology and Nongalactic Astrophysics +1111.0565 Materials Science +1111.0600 Theory +1111.1694 Quantum Gases +1111.2012 +1111.2703 Statistical Mechanics +1111.2714 General Physics +1111.4455 +1111.5923 +1112.0722 Functional Analysis +1112.0968 Theory +1112.2415 Phenomenology +1112.2551 Strongly Correlated Electrons +1112.3565 Classical Analysis and ODEs +1112.4325 Phenomenology +1112.4390 Instrumentation and Methods for Astrophysics +1112.5158 Phenomenology +1112.5244 Statistical Mechanics +1112.5900 Differential Geometry +1201.2223 High Energy Astrophysical Phenomena +1201.2319 Statistical Mechanics +1201.2772 +1201.2822 Earth and Planetary Astrophysics +1201.2981 High Energy Astrophysical Phenomena +1201.3380 Applications +1201.3415 Lattice +1201.4426 Mesoscale and Nanoscale Physics +1201.5571 Cosmology and Nongalactic Astrophysics +1202.0184 Atomic Physics +1202.1334 Learning +1202.2214 Networking and Internet Architecture +1202.3156 Astrophysics of Galaxies +1202.3540 Dynamical Systems +1202.3608 Materials Science +1202.5222 Lattice +1202.6160 Plasma Physics +1203.0045 Accelerator Physics +1203.0058 Databases +1203.0107 Statistics Theory +1203.0124 Superconductivity +1203.0148 Soft Condensed Matter +1203.0160 Databases +1203.0269 Mesoscale and Nanoscale Physics +1203.0300 Physics and Society +1203.0316 Algebraic Geometry +1203.0321 Distributed, Parallel, and Cluster Computing +1203.0326 Probability +1203.0327 Materials Science +1203.0332 Social and Information Networks +1203.0333 Cryptography and Security +1203.0334 Logic +1203.0337 Fluid Dynamics +1203.0339 Numerical Analysis +1203.0346 Instrumentation and Detectors +1203.0349 Statistical Mechanics +1203.0353 Computer Science and Game Theory +1203.0355 +1203.0356 +1203.0359 Number Theory +1203.0360 Differential Geometry +1203.0361 Materials Science +1203.0365 Analysis of PDEs +1203.0370 Phenomenology +1203.0375 Functional Analysis +1203.0376 +1203.0378 Differential Geometry +1203.0379 Combinatorics +1203.0381 Statistics Theory +1203.0383 Operator Algebras +1203.0384 Differential Geometry +1203.0390 +1203.0392 Statistics Theory +1203.0400 Software Engineering +1203.0403 Statistics Theory +1203.0404 Materials Science +1203.0405 Probability +1203.0406 Materials Science +1203.0408 Optimization and Control +1203.0409 Phenomenology +1203.0410 Soft Condensed Matter +1203.0416 Phenomenology +1203.0417 Probability +1203.0420 Mesoscale and Nanoscale Physics +1203.0424 Algebraic Topology +1203.0429 Distributed, Parallel, and Cluster Computing +1203.0430 Phenomenology +1203.0431 Statistics Theory +1203.0432 Distributed, Parallel, and Cluster Computing +1203.0434 Computers and Society +1203.0435 Distributed, Parallel, and Cluster Computing +1203.0438 Commutative Algebra +1203.0439 Cryptography and Security +1203.0440 Cryptography and Security +1203.0441 +1203.0442 Computational Geometry +1203.0443 Distributed, Parallel, and Cluster Computing +1203.0446 Probability +1203.0448 Neurons and Cognition +1203.0450 Statistics Theory +1203.0456 Other Condensed Matter +1203.0457 Materials Science +1203.0460 Materials Science +1203.0461 Materials Science +1203.0464 Statistics Theory +1203.0466 Materials Science +1203.0472 Materials Science +1203.0474 Information Theory +1203.0476 History and Philosophy of Physics +1203.0478 Computational Geometry +1203.0480 Complex Variables +1203.0483 Materials Science +1203.0489 Molecular Networks +1203.0497 Differential Geometry +1203.0500 Computers and Society +1203.0507 Instrumentation and Methods for Astrophysics +1203.0510 Combinatorics +1203.0511 Networking and Internet Architecture +1203.0512 Computation and Language +1203.0518 Information Retrieval +1203.0519 Strongly Correlated Electrons +1203.0521 Representation Theory +1203.0522 Rings and Algebras +1203.0524 Earth and Planetary Astrophysics +1203.0528 Data Analysis, Statistics and Probability +1203.0532 Digital Libraries +1203.0541 Networking and Internet Architecture +1203.0544 Differential Geometry +1203.0549 Differential Geometry +1203.0551 +1203.0554 Solar and Stellar Astrophysics +cond-mat/0305296 Strongly Correlated Electrons +gr-qc/0501055 +quant-ph/0604216 +0707.0948 +0712.3771 Other Condensed Matter +0806.2926 Functional Analysis +0812.0060 Probability +0902.4502 Dynamical Systems +0905.0378 +0905.1164 Group Theory +0907.4529 Representation Theory +0907.4851 +0912.2805 Superconductivity +0912.3580 Algebraic Geometry +0912.3901 +1001.2531 Materials Science +1006.0647 +1006.3541 Data Structures and Algorithms +1007.4634 +1008.3703 Instrumentation and Methods for Astrophysics +1008.3936 Complex Variables +1008.5105 Data Structures and Algorithms +1009.0031 Superconductivity +1009.3541 Rings and Algebras +1009.4764 +1010.1947 General Physics +1011.3167 Geometric Topology +1012.2149 Dynamical Systems +1101.2157 Statistical Mechanics +1102.0365 Information Theory +1102.0960 Biological Physics +1103.1026 Networking and Internet Architecture +1103.1397 Materials Science +1103.5967 Statistical Mechanics +1104.3689 Differential Geometry +1104.3736 High Energy Astrophysical Phenomena +1104.5625 Differential Geometry +1105.2807 Number Theory +1105.4612 Phenomenology +1105.4670 Medical Physics +1105.6161 Strongly Correlated Electrons +1105.6362 Cosmology and Nongalactic Astrophysics +1106.4468 Probability +1106.5371 Cosmology and Nongalactic Astrophysics +1107.0094 Algebraic Geometry +1107.1813 Geometric Topology +1107.3720 Cosmology and Nongalactic Astrophysics +1107.5604 Commutative Algebra +1108.0204 Strongly Correlated Electrons +1108.0936 +1108.1719 Theory +1108.1995 +1108.2781 Cosmology and Nongalactic Astrophysics +1108.3608 Quantum Gases +1109.2464 Quantum Gases +1109.3428 Social and Information Networks +1109.3841 Optimization and Control +1109.4408 Methodology +1109.5110 +1109.6233 High Energy Astrophysical Phenomena +1109.6463 Probability +1110.0097 Theory +1110.0475 Cosmology and Nongalactic Astrophysics +1110.3119 Cosmology and Nongalactic Astrophysics +1110.3605 Classical Physics +1110.4822 Strongly Correlated Electrons +1110.5760 +1110.6081 Superconductivity +1111.1107 +1111.1230 Strongly Correlated Electrons +1111.1649 +1111.2062 Data Analysis, Statistics and Probability +1111.5383 Strongly Correlated Electrons +1111.6928 Phenomenology +1112.1860 Theory +1112.2069 Mesoscale and Nanoscale Physics +1112.2752 Cosmology and Nongalactic Astrophysics +1112.3582 Algebraic Geometry +1112.4069 Probability +1112.4710 Mesoscale and Nanoscale Physics +1112.5091 Soft Condensed Matter +1112.5151 Cosmology and Nongalactic Astrophysics +1112.5204 Materials Science +1112.5395 Instrumentation and Detectors +1112.5836 +1112.6112 +1201.1916 Cosmology and Nongalactic Astrophysics +1201.2234 +1201.2940 Solar and Stellar Astrophysics +1201.4641 Mesoscale and Nanoscale Physics +1201.4879 Materials Science +1201.4885 +1201.5040 Phenomenology +1201.5230 Software Engineering +1201.6269 Strongly Correlated Electrons +1202.1905 +1202.3986 +1202.5157 +1202.5584 Phenomenology +1202.6656 Materials Science +1203.1744 Astrophysics of Galaxies +1203.2117 Astrophysics of Galaxies +1203.4013 Cosmology and Nongalactic Astrophysics +1203.4190 Superconductivity +1203.4195 Soft Condensed Matter +1203.6203 Theory +1204.0075 Information Theory +1204.0471 Metric Geometry +1204.0475 Algebraic Geometry +1204.1832 Information Retrieval +1204.1956 Learning +1204.2269 +1204.2412 Quantum Algebra +1204.2540 Number Theory +1204.2541 Sound +1204.2561 Number Theory +1204.2564 High Energy Astrophysical Phenomena +1204.2566 Programming Languages +1204.2571 Functional Analysis +1204.2572 Solar and Stellar Astrophysics +1204.2575 Optimization and Control +1204.2577 Information Theory +1204.2579 Statistics Theory +1204.2580 High Energy Astrophysical Phenomena +1204.2581 Data Structures and Algorithms +1204.2582 Representation Theory +1204.2586 Numerical Analysis +1204.2588 Social and Information Networks +1204.2593 Algebraic Geometry +1204.2596 +1204.2598 Mesoscale and Nanoscale Physics +1204.2601 Neural and Evolutionary Computing +1204.2604 Combinatorics +1204.2610 Databases +1204.2613 Other Computer Science +1204.2616 Multimedia +1204.2618 Combinatorics +1204.2619 +1204.2621 Numerical Analysis +1204.2622 Networking and Internet Architecture +1204.2623 Functional Analysis +1204.2627 +1204.2629 Differential Geometry +1204.2633 Fluid Dynamics +1204.2634 Computational Geometry +1204.2636 Classical Physics +1204.2637 Robotics +1204.2639 Analysis of PDEs +1204.2640 Solar and Stellar Astrophysics +1204.2641 Mesoscale and Nanoscale Physics +1204.2643 Materials Science +1204.2647 +1204.2656 Strongly Correlated Electrons +1204.2657 +1204.2660 Information Theory +1204.2661 Populations and Evolution +1204.2665 Phenomenology +1204.2667 Portfolio Management +1204.2668 +1204.2670 Mesoscale and Nanoscale Physics +1204.2672 Optics +1204.2677 Social and Information Networks +1204.2678 Mesoscale and Nanoscale Physics +1204.2680 +1204.2681 +1204.2690 Representation Theory +1204.2692 Information Theory +1204.2698 Cosmology and Nongalactic Astrophysics +1204.2699 Computational Physics +1204.2702 Group Theory +1204.2712 Artificial Intelligence +1204.2715 Information Retrieval +1204.2718 Artificial Intelligence +1204.2719 Superconductivity +1204.2725 Biomolecules +1204.2728 Materials Science +1204.2730 Classical Analysis and ODEs +1204.2731 Databases +1204.2737 +1204.2742 Computer Vision and Pattern Recognition +1204.2755 Probability +1204.2756 Quantitative Methods +1204.2757 Mesoscale and Nanoscale Physics +1204.2758 Mesoscale and Nanoscale Physics +1204.2763 Statistics Theory +1204.2767 Complex Variables +1204.2768 Logic in Computer Science +1204.2769 Quantum Algebra +1204.2772 Hardware Architecture +1204.2774 Cryptography and Security +1204.2777 Differential Geometry +1204.2784 Dynamical Systems +1204.2792 Mesoscale and Nanoscale Physics +1204.2794 +1204.2796 Differential Geometry +1204.2800 +1204.2802 Algebraic Topology +1204.2806 Lattice +1204.2809 Hardware Architecture +1204.2810 Geometric Topology +1204.2811 Materials Science +1204.2814 Chemical Physics +1204.2818 +1204.2820 Experiment +cs/0312013 Logic in Computer Science +cs/0407019 Hardware Architecture +math-ph/0701058 +0708.3198 Trading and Market Microstructure +0708.4396 Algebraic Geometry +0801.0792 Fluid Dynamics +0805.1425 Classical Analysis and ODEs +0811.4740 Algebraic Geometry +0904.4017 Astrophysics of Galaxies +0905.3626 Geometric Topology +0908.0442 Probability +0909.1605 Computer Vision and Pattern Recognition +0909.1608 Computer Vision and Pattern Recognition +0912.2236 Number Theory +1002.3399 +1005.0858 Computer Vision and Pattern Recognition +1005.3124 Physics and Society +1008.2041 Functional Analysis +1009.0274 Superconductivity +1010.3460 Computer Vision and Pattern Recognition +1011.6184 +1103.1991 Information Theory +1103.1994 Information Theory +1103.3884 Superconductivity +1103.5033 Statistics Theory +1103.5850 Differential Geometry +1104.1605 Information Retrieval +1105.2804 +1105.3226 +1106.3160 Materials Science +1106.5503 Theory +1106.6350 +1107.2279 Strongly Correlated Electrons +1108.1888 Differential Geometry +1108.4594 Space Physics +1108.5379 +1109.2927 Materials Science +1109.4065 Quantum Algebra +1109.5257 Theory +1110.3033 +1110.3289 Phenomenology +1110.4264 Algebraic Geometry +1110.5522 +1110.6215 +1111.3186 Adaptation and Self-Organizing Systems +1111.5672 +1111.6085 Machine Learning +1112.0226 Probability +1112.4291 Instrumentation and Detectors +1112.5473 Instrumentation and Methods for Astrophysics +1201.0414 Artificial Intelligence +1201.0433 Statistical Finance +1201.3691 Experiment +1201.4148 Complex Variables +1201.4853 +1201.5872 Theory +1201.6506 Group Theory +1202.1640 Phenomenology +1202.4014 Phenomenology +1202.5682 Methodology +1202.6620 +1203.0166 +1203.1049 Theory +1203.2106 Theory +1203.2323 Combinatorics +1203.2415 Optimization and Control +1203.4002 Probability +1203.4341 Quantum Gases +1203.5793 Mesoscale and Nanoscale Physics +1203.5862 Phenomenology +1203.6613 Phenomenology +1204.0578 Materials Science +1204.2004 Mesoscale and Nanoscale Physics +1204.2276 Analysis of PDEs +1204.2324 Biological Physics +1204.3065 +1204.3195 Strongly Correlated Electrons +1204.5449 Superconductivity +1204.6476 Quantum Gases +1205.1269 Analysis of PDEs +1205.1924 Data Structures and Algorithms +1205.2172 Machine Learning +1205.2557 Phenomenology +1205.2682 Probability +1205.3515 Phenomenology +1205.6280 Probability +1206.0569 Strongly Correlated Electrons +1206.0614 +1206.2421 Theory +1206.4250 +1206.4779 Phenomenology +1206.6330 Statistical Mechanics +1206.6577 Accelerator Physics +1206.6601 Optics +1207.0714 Algebraic Geometry +1207.1087 Analysis of PDEs +1207.1442 Strongly Correlated Electrons +1207.2733 +1207.3043 +1207.3185 Phenomenology +1207.3267 Strongly Correlated Electrons +1207.5401 Phenomenology +1207.6531 Dynamical Systems +1207.7187 +1208.2798 +1208.3089 Soft Condensed Matter +1209.1015 High Energy Astrophysical Phenomena +1209.1811 Performance +1209.1848 Differential Geometry +1209.2024 Cosmology and Nongalactic Astrophysics +1209.2609 Complex Variables +1209.2667 Probability +1209.2821 Mesoscale and Nanoscale Physics +1209.3951 Optics +1209.4020 Algebraic Geometry +1209.6469 Analysis of PDEs +1210.0152 Metric Geometry +1210.0227 Phenomenology +1210.0715 Theory +1210.0892 General Physics +1210.0951 Probability +1210.0970 +1210.1568 Artificial Intelligence +1210.1572 Computational Complexity +1210.1581 Pattern Formation and Solitons +1210.1584 Instrumentation and Methods for Astrophysics +1210.1588 Computational Finance +1210.1593 Networking and Internet Architecture +1210.1598 Portfolio Management +1210.1601 Analysis of PDEs +1210.1603 +1210.1608 Combinatorics +1210.1610 Statistical Mechanics +1210.1611 Programming Languages +1210.1618 Optimization and Control +1210.1619 Complex Variables +1210.1620 Quantum Gases +1210.1622 Commutative Algebra +1210.1626 Information Retrieval +1210.1627 Rings and Algebras +1210.1628 Mesoscale and Nanoscale Physics +1210.1630 Robotics +1210.1636 +1210.1642 Group Theory +1210.1643 Algebraic Geometry +1210.1645 Cryptography and Security +1210.1646 Social and Information Networks +1210.1647 Cryptography and Security +1210.1649 Artificial Intelligence +1210.1652 Combinatorics +1210.1653 Logic in Computer Science +1210.1654 Differential Geometry +1210.1655 Superconductivity +1210.1656 Complex Variables +1210.1660 Number Theory +1210.1665 Programming Languages +1210.1667 Soft Condensed Matter +1210.1668 High Energy Astrophysical Phenomena +1210.1671 Pattern Formation and Solitons +1210.1675 Strongly Correlated Electrons +1210.1682 Numerical Analysis +1210.1684 Algebraic Geometry +1210.1685 Symbolic Computation +1210.1686 Distributed, Parallel, and Cluster Computing +1210.1690 Probability +1210.1693 Rings and Algebras +1210.1695 Space Physics +1210.1697 Algebraic Geometry +1210.1698 Atmospheric and Oceanic Physics +1210.1705 Functional Analysis +1210.1709 Computers and Society +1210.1710 Analysis of PDEs +1210.1711 Earth and Planetary Astrophysics +1210.1714 Digital Libraries +1210.1723 Probability +1210.1726 Soft Condensed Matter +1210.1730 Astrophysics of Galaxies +1210.1732 Quantum Algebra +1210.1733 High Energy Astrophysical Phenomena +1210.1739 High Energy Astrophysical Phenomena +1210.1745 Databases +1210.1747 History and Philosophy of Physics +1210.1751 Cosmology and Nongalactic Astrophysics +1210.1752 Information Theory +1210.1753 Artificial Intelligence +1210.1756 Experiment +1210.1757 Computer Science and Game Theory +1210.1758 Experiment +1210.1762 Information Theory +1210.1768 Space Physics +1210.1771 Data Structures and Algorithms +1210.1773 Computation +1210.1777 Classical Physics +1210.1780 +1210.1781 Astrophysics of Galaxies +1210.1785 Artificial Intelligence +1210.1791 Artificial Intelligence +1210.1793 Number Theory +1210.1803 Mesoscale and Nanoscale Physics +1210.1805 Combinatorics +1210.1809 Probability +1210.1821 Rings and Algebras +1210.1823 Materials Science +1210.1827 Materials Science +1210.1828 Differential Geometry +1210.1834 Atmospheric and Oceanic Physics +1210.1835 Superconductivity +1210.1839 +1210.1841 Dynamical Systems +1210.1843 +1210.1844 Populations and Evolution +1210.1845 Differential Geometry +math/0108015 Quantum Algebra +math/0303019 Quantum Algebra +math/0404408 Representation Theory +math/0701720 Algebraic Geometry +0707.2891 Superconductivity +0802.0082 Probability +0808.2902 Computation +0811.2195 Strongly Correlated Electrons +0901.4490 Astrophysics of Galaxies +0902.1492 Other Condensed Matter +0904.0293 Software Engineering +0904.4685 Statistical Mechanics +0906.1261 Numerical Analysis +0910.1098 Cosmology and Nongalactic Astrophysics +0910.5397 +0911.0031 +0911.0808 Mesoscale and Nanoscale Physics +0911.1576 Soft Condensed Matter +0912.3161 Disordered Systems and Neural Networks +0912.3169 Disordered Systems and Neural Networks +1001.0401 Probability +1001.4967 Phenomenology +1002.1703 Cosmology and Nongalactic Astrophysics +1002.2426 Applications +1002.4866 Cosmology and Nongalactic Astrophysics +1003.0208 Mesoscale and Nanoscale Physics +1003.3443 Statistical Mechanics +1003.5314 Statistical Mechanics +1004.0821 Disordered Systems and Neural Networks +1004.3956 Analysis of PDEs +1004.5108 Information Theory +1005.4789 Superconductivity +1005.5349 Instrumentation and Detectors +1006.3878 Combinatorics +1006.4709 Group Theory +1007.0520 Soft Condensed Matter +1007.1519 +1007.2062 Mesoscale and Nanoscale Physics +1007.2232 Differential Geometry +1007.4358 +1008.0974 Phenomenology +1008.2057 Astrophysics of Galaxies +1008.3656 Soft Condensed Matter +1009.2418 Probability +1009.4565 Probability +1010.5337 Complex Variables +1011.4481 Superconductivity +1011.5210 +1012.0936 Probability +1101.0994 Mesoscale and Nanoscale Physics +1101.1410 Probability +1101.2523 Classical Analysis and ODEs +1101.4475 Formal Languages and Automata Theory +1102.1802 +1102.1804 +1102.2908 +1102.3323 Mesoscale and Nanoscale Physics +1102.5589 Soft Condensed Matter +1103.1550 Superconductivity +1103.4776 Quantum Gases +1104.0413 Commutative Algebra +1104.0975 Materials Science +1104.1170 Mesoscale and Nanoscale Physics +1104.1411 Classical Analysis and ODEs +1104.1502 Theory +1104.3629 Cosmology and Nongalactic Astrophysics +1104.4208 Numerical Analysis +1104.5137 Materials Science +1105.1934 +1105.2775 Quantum Gases +1105.3895 Number Theory +1105.4449 Algebraic Geometry +1105.6077 Methodology +1106.3512 Classical Analysis and ODEs +1106.5657 Fluid Dynamics +1106.6055 Cosmology and Nongalactic Astrophysics +1107.0476 Geometric Topology +1107.0516 Cosmology and Nongalactic Astrophysics +1107.0897 Lattice +1107.4755 +1107.5963 Superconductivity +1108.0130 +1108.0569 Phenomenology +1108.1337 +1108.1395 Astrophysics of Galaxies +1108.1517 +1108.2208 Mesoscale and Nanoscale Physics +1108.3162 +1108.4472 Chaotic Dynamics +1108.5035 Strongly Correlated Electrons +1108.6300 Phenomenology +1109.0395 Materials Science +1109.0963 Experiment +1109.1001 Mesoscale and Nanoscale Physics +1109.1593 Cosmology and Nongalactic Astrophysics +1109.2412 +1109.2517 Statistical Mechanics +1109.2867 +1109.3537 Plasma Physics +1109.3627 Neural and Evolutionary Computing +1109.5826 Phenomenology +1109.5843 Experiment +1109.6506 Quantum Gases +1110.0757 Materials Science +1110.0899 Computational Physics +1110.0900 Theory +1110.1474 High Energy Astrophysical Phenomena +1110.1688 Phenomenology +1110.1927 Quantum Gases +1110.3029 Solar and Stellar Astrophysics +1110.3726 Phenomenology +1110.4033 Optics +1110.4072 Strongly Correlated Electrons +1110.5235 Mesoscale and Nanoscale Physics +1110.5802 +1110.6096 Chemical Physics +1111.0190 Dynamical Systems +1111.0551 Theory +1111.0936 High Energy Astrophysical Phenomena +1111.0966 High Energy Astrophysical Phenomena +1111.1095 Phenomenology +1111.1551 Phenomenology +1111.1795 Classical Analysis and ODEs +1111.1879 +1111.2104 Materials Science +1111.2437 Lattice +1111.4410 +1111.4523 Phenomenology +1111.4636 Combinatorics +1111.5435 Soft Condensed Matter +1111.6261 Combinatorics +1111.6767 Superconductivity +1112.2262 Information Theory +1112.2270 +1112.2612 High Energy Astrophysical Phenomena +1112.2976 Exactly Solvable and Integrable Systems +1112.3227 Strongly Correlated Electrons +1112.3490 Physics and Society +1112.5396 Data Structures and Algorithms +1112.5642 Lattice +1112.5717 Mathematical Software +1112.5839 Statistical Mechanics +1112.6128 Instrumentation and Methods for Astrophysics +1201.0116 Statistical Mechanics +1201.0297 Functional Analysis +1201.0487 +1201.0502 +1201.0507 +1201.0508 +1201.0517 +1201.0531 Accelerator Physics +1201.1129 +1201.1475 Adaptation and Self-Organizing Systems +1201.1512 Social and Information Networks +1201.1513 Numerical Analysis +1201.1530 Optimization and Control +1201.1541 Combinatorics +1201.1543 Phenomenology +1201.1544 Solar and Stellar Astrophysics +1201.1551 Combinatorics +1201.1566 Complex Variables +1201.1567 Computational Physics +1201.1568 General Topology +1201.1570 Algebraic Geometry +1201.1576 General Topology +1201.1583 Operator Algebras +1201.1596 +1201.1597 +1201.1598 Materials Science +1201.1599 +1201.1602 +1201.1603 Numerical Analysis +1201.1604 General Finance +1201.1608 +1201.1611 Software Engineering +1201.1613 Neural and Evolutionary Computing +1201.1618 Materials Science +1201.1621 Theory +1201.1622 Dynamical Systems +1201.1628 Theory +1201.1632 Numerical Analysis +1201.1633 Information Theory +1201.1645 Representation Theory +1201.1647 Combinatorics +1201.1657 Machine Learning +1201.1659 Geophysics +1201.1663 Number Theory +1201.1666 Computational Complexity +1201.1668 Multimedia +1201.1670 Learning +1201.1674 Hardware Architecture +1201.1675 Differential Geometry +1201.1682 Functional Analysis +1201.1683 Statistical Mechanics +1201.1685 Number Theory +1201.1693 +1201.1697 +1201.1700 Cosmology and Nongalactic Astrophysics +1201.1701 Probability +1201.1704 Complex Variables +1201.1707 +1201.1708 Astrophysics of Galaxies +1201.1712 Software Engineering +1201.1719 Soft Condensed Matter +1201.1723 High Energy Astrophysical Phenomena +1201.1725 Logic +1201.1736 +1201.1742 Experiment +1201.1743 Spectral Theory +1201.1744 Solar and Stellar Astrophysics +1201.1745 Optimization and Control +1201.1747 Materials Science +1201.1754 Systems and Control +1201.1755 Data Analysis, Statistics and Probability +1201.1759 Functional Analysis +1201.1760 Chemical Physics +1201.1766 Methodology +1201.1773 Complex Variables +1201.1774 Analysis of PDEs +1201.1781 Soft Condensed Matter +1201.1784 Data Structures and Algorithms +1201.1789 Adaptation and Self-Organizing Systems +1201.1795 General Topology +1201.1796 General Topology +1201.1799 +1201.1800 Cosmology and Nongalactic Astrophysics +1201.1812 Information Theory +1201.1815 Algebraic Geometry +1201.1816 +1201.1817 +1201.1820 General Mathematics +1201.1822 Representation Theory +1201.1825 Classical Analysis and ODEs +1201.1826 +1201.1828 General Physics +1201.1829 Instrumentation and Methods for Astrophysics +1201.1830 Combinatorics +1201.1831 Combinatorics +1201.1832 Number Theory +1201.1834 History and Overview +1201.1837 Mesoscale and Nanoscale Physics +1201.1838 High Energy Astrophysical Phenomena +1201.1841 Differential Geometry +1201.1846 Experiment +1201.1847 Numerical Analysis +1201.1851 Number Theory +1201.1852 Disordered Systems and Neural Networks +1201.1854 Functional Analysis +1201.1857 Optimization and Control +1201.1863 Lattice +1201.1869 Data Structures and Algorithms +1201.1890 Phenomenology +1201.1891 Dynamical Systems +1201.1893 Computation +cond-mat/0606451 Strongly Correlated Electrons +gr-qc/0508052 +gr-qc/0610157 +math/0306194 Geometric Topology +math/0310428 Rings and Algebras +math/0402188 Rings and Algebras +math/0501061 Group Theory +0704.1736 +0801.3830 General Physics +0805.0391 Statistical Mechanics +0807.4154 +0809.4781 Computational Finance +0810.0259 +0810.5317 +0812.2242 +0903.4694 Physics and Society +0904.2760 Analysis of PDEs +0905.4048 Group Theory +0905.4693 General Physics +0906.0413 Geometric Topology +0907.1034 +0908.2128 +0908.2616 Methodology +0908.2914 +0909.2927 Learning +0909.4072 Quantum Gases +0910.4738 Optimization and Control +0912.4751 Number Theory +1001.0087 +1002.3963 Differential Geometry +1006.0722 Algebraic Geometry +1006.4651 +1007.1004 Probability +1007.2245 Quantum Gases +1007.4665 Symplectic Geometry +1009.0046 Quantum Algebra +1009.1646 Quantum Gases +1009.4006 Analysis of PDEs +1010.0213 Theory +1010.4902 Spectral Theory +1010.5990 Disordered Systems and Neural Networks +1011.3517 Quantum Gases +1011.5622 Operator Algebras +1012.1770 +1101.5064 Representation Theory +1101.5609 Theory +1102.0373 Analysis of PDEs +1102.1158 Analysis of PDEs +1102.2930 +1102.3448 Theory +1103.5767 High Energy Astrophysical Phenomena +1104.0502 Theory +1104.2602 High Energy Astrophysical Phenomena +1104.4172 Mesoscale and Nanoscale Physics +1105.5814 Symplectic Geometry +1105.5825 Theory +1105.6136 Quantum Gases +1106.0192 Statistics Theory +1106.0296 Physics and Society +1106.0712 +1106.0828 Quantum Gases +1106.2042 Soft Condensed Matter +1106.3318 Logic +1106.4803 Complex Variables +1106.5097 +1106.5198 Category Theory +1106.5913 Statistical Finance +1107.2806 Phenomenology +1107.4517 Quantum Gases +1107.5049 Cosmology and Nongalactic Astrophysics +1107.5582 Instrumentation and Methods for Astrophysics +1108.0236 Optics +1108.3844 +1108.5689 Classical Analysis and ODEs +1109.0081 +1109.0209 +1109.0528 General Physics +1109.0723 Mesoscale and Nanoscale Physics +1109.2320 Phenomenology +1109.2635 Quantum Gases +1109.4945 Quantum Gases +1109.5583 Quantum Gases +1109.5587 Statistics Theory +1109.5924 Phenomenology +1109.6916 Materials Science +1110.1241 Statistical Mechanics +1110.2139 +1110.3045 Cosmology and Nongalactic Astrophysics +1110.4718 +1110.5031 Combinatorics +1110.6384 Data Structures and Algorithms +1111.0117 Phenomenology +1111.3294 Phenomenology +1111.5524 Solar and Stellar Astrophysics +1111.6535 +1111.7188 Accelerator Physics +1112.0443 Mesoscale and Nanoscale Physics +1112.1055 Dynamical Systems +1112.1808 Mesoscale and Nanoscale Physics +1112.2761 +1112.2945 Dynamical Systems +1112.3747 Materials Science +1201.1170 Systems and Control +1201.2852 Combinatorics +1201.6078 Software Engineering +1202.0863 Information Theory +1202.2102 Theory +1202.2219 Populations and Evolution +1202.2897 Cosmology and Nongalactic Astrophysics +1202.3484 Logic in Computer Science +1202.4283 Statistics Theory +1202.4361 Number Theory +1202.4385 Information Theory +1202.4410 Analysis of PDEs +1202.4451 Networking and Internet Architecture +1202.4452 Mesoscale and Nanoscale Physics +1202.4454 Cosmology and Nongalactic Astrophysics +1202.4459 Cosmology and Nongalactic Astrophysics +1202.4465 Robotics +1202.4473 Learning +1202.4480 General Topology +1202.4486 Distributed, Parallel, and Cluster Computing +1202.4491 Chemical Physics +1202.4493 Combinatorics +1202.4494 Solar and Stellar Astrophysics +1202.4495 Computer Vision and Pattern Recognition +1202.4498 Astrophysics of Galaxies +1202.4503 Computers and Society +1202.4504 Data Structures and Algorithms +1202.4505 Combinatorics +1202.4506 Computer Science and Game Theory +1202.4507 Computer Science and Game Theory +1202.4508 Distributed, Parallel, and Cluster Computing +1202.4509 Logic in Computer Science +1202.4514 Differential Geometry +1202.4524 Pattern Formation and Solitons +1202.4527 Software Engineering +1202.4530 Networking and Internet Architecture +1202.4532 Software Engineering +1202.4535 Systems and Control +1202.4536 Cosmology and Nongalactic Astrophysics +1202.4548 Soft Condensed Matter +1202.4549 Solar and Stellar Astrophysics +1202.4557 Soft Condensed Matter +1202.4565 Strongly Correlated Electrons +1202.4566 Statistical Mechanics +1202.4569 Statistical Mechanics +1202.4570 Materials Science +1202.4571 Quantum Gases +1202.4582 Probability +1202.4584 Materials Science +1202.4589 Differential Geometry +1202.4592 Phenomenology +1202.4595 Soft Condensed Matter +1202.4596 Information Theory +1202.4597 Combinatorics +1202.4598 Superconductivity +1202.4599 Phenomenology +1202.4600 Mesoscale and Nanoscale Physics +1202.4604 Plasma Physics +1202.4606 Analysis of PDEs +1202.4611 Fluid Dynamics +1202.4612 +1202.4623 Spectral Theory +1202.4624 Differential Geometry +1202.4625 Probability +1202.4628 Networking and Internet Architecture +1202.4630 Phenomenology +1202.4631 Discrete Mathematics +1202.4633 Algebraic Geometry +1202.4635 Astrophysics of Galaxies +1202.4636 Rings and Algebras +1202.4640 Dynamical Systems +1202.4641 Number Theory +1202.4645 Soft Condensed Matter +1202.4646 Digital Libraries +1202.4647 Populations and Evolution +1202.4649 General Mathematics +1202.4650 Materials Science +1202.4652 Combinatorics +1202.4656 Combinatorics +1202.4659 Complex Variables +1202.4661 Information Theory +1202.4663 Cryptography and Security +1202.4671 Chemical Physics +1202.4675 Networking and Internet Architecture +1202.4686 Dynamical Systems +1202.4691 Subcellular Processes +1202.4700 Materials Science +1202.4702 Spectral Theory +1202.4709 Spectral Theory +1202.4710 Biological Physics +1202.4712 Lattice +1202.4715 Probability +1202.4722 Instrumentation and Detectors +1202.4723 Chemical Physics +1202.4724 Cell Behavior +1202.4738 Algebraic Geometry +1202.4742 Quantitative Methods +1202.4743 Multimedia +1202.4744 +1202.4746 Other Statistics +1202.4747 Instrumentation and Methods for Astrophysics +1202.4751 Neurons and Cognition +1202.4753 Materials Science +gr-qc/0701150 +math/9904089 Geometric Topology +q-alg/9709017 Quantum Algebra +quant-ph/0504136 +quant-ph/0511047 +quant-ph/0512201 +0704.3450 Rings and Algebras +0705.0975 General Physics +0804.1897 +0807.0184 Algebraic Geometry +0905.3960 Group Theory +0908.3393 Algebraic Topology +0910.3345 Pattern Formation and Solitons +0910.5262 Geometric Topology +0911.1271 Number Theory +0911.3997 +0912.4497 Group Theory +1004.1054 Solar and Stellar Astrophysics +1004.2525 Physics and Society +1005.0208 Machine Learning +1006.0882 Dynamical Systems +1006.1786 Artificial Intelligence +1006.4849 +1007.1749 +1007.3508 Materials Science +1010.4875 +1011.2641 +1011.6070 Algebraic Topology +1012.3829 Strongly Correlated Electrons +1101.0197 Commutative Algebra +1101.2295 Geophysics +1102.0954 +1102.2009 Analysis of PDEs +1102.3141 Chaotic Dynamics +1102.3673 Computational Geometry +1103.3516 Strongly Correlated Electrons +1104.0260 +1104.1459 Physics and Society +1105.0624 Molecular Networks +1105.5228 Chaotic Dynamics +1107.0129 Symplectic Geometry +1107.0833 +1107.5488 High Energy Astrophysical Phenomena +1107.5772 Disordered Systems and Neural Networks +1108.1912 Strongly Correlated Electrons +1109.0521 High Energy Astrophysical Phenomena +1109.2815 Commutative Algebra +1109.4704 +1109.4962 Applications +1109.5184 High Energy Astrophysical Phenomena +1109.5793 +1110.0372 Superconductivity +1110.0763 Neurons and Cognition +1110.3300 +1110.3516 +1110.5789 Statistical Finance +1110.6271 Computational Complexity +1111.0251 Optics +1111.1543 Number Theory +1111.1695 Optics +1111.1906 Disordered Systems and Neural Networks +1111.2091 Portfolio Management +1111.2649 Theory +1111.3006 Statistical Mechanics +1111.3443 Theory +1111.4828 Chaotic Dynamics +1111.5784 Soft Condensed Matter +1111.7095 Theory +1111.7223 Mesoscale and Nanoscale Physics +1112.3838 Disordered Systems and Neural Networks +1112.4721 +1112.5551 Complex Variables +1201.0534 Exactly Solvable and Integrable Systems +1202.0531 Phenomenology +1202.2435 Complex Variables +1202.2756 Quantum Algebra +1202.4851 Solar and Stellar Astrophysics +1202.5357 Other Condensed Matter +1203.0322 Strongly Correlated Electrons +1203.0345 Theory +1203.0351 Quantum Gases +1203.1830 Data Structures and Algorithms +1203.2786 Probability +1203.5238 Theory +1203.5289 Optimization and Control +1203.5364 Quantum Algebra +1203.5632 +1203.5665 Dynamical Systems +1203.5778 Other Computer Science +1203.5780 +1203.5800 Group Theory +1203.5802 Theory +1203.5806 Complex Variables +1203.5818 Instrumentation and Methods for Astrophysics +1203.5819 Fluid Dynamics +1203.5821 Complex Variables +1203.5823 +1203.5824 General Topology +1203.5826 Soft Condensed Matter +1203.5830 Cryptography and Security +1203.5831 Optics +1203.5835 Populations and Evolution +1203.5840 Classical Analysis and ODEs +1203.5841 Functional Analysis +1203.5848 Number Theory +1203.5854 Numerical Analysis +1203.5855 Lattice +1203.5858 Optics +1203.5863 Populations and Evolution +1203.5866 Biological Physics +1203.5867 +1203.5869 +1203.5876 Materials Science +1203.5877 Materials Science +1203.5878 Algebraic Geometry +1203.5880 Mesoscale and Nanoscale Physics +1203.5882 Algebraic Topology +1203.5884 Number Theory +1203.5889 Instrumentation and Methods for Astrophysics +1203.5892 Astrophysics of Galaxies +1203.5895 +1203.5899 Soft Condensed Matter +1203.5902 Phenomenology +1203.5904 Experiment +1203.5905 Category Theory +1203.5906 Classical Analysis and ODEs +1203.5908 Mesoscale and Nanoscale Physics +1203.5909 Mesoscale and Nanoscale Physics +1203.5913 Phenomenology +1203.5914 Quantitative Methods +1203.5915 Information Theory +1203.5916 Chemical Physics +1203.5921 Theory +1203.5922 Geometric Topology +1203.5923 Chemical Physics +1203.5932 Molecular Networks +1203.5933 Quantum Algebra +1203.5934 +1203.5935 Other Condensed Matter +1203.5939 Rings and Algebras +1203.5941 Combinatorics +1203.5942 Chemical Physics +1203.5944 Computational Geometry +1203.5946 Algebraic Geometry +1203.5948 Combinatorics +1203.5949 Quantum Gases +1203.5951 Chaotic Dynamics +1203.5953 Cosmology and Nongalactic Astrophysics +1203.5955 Statistics Theory +1203.5956 High Energy Astrophysical Phenomena +1203.5957 Portfolio Management +1203.5961 +1203.5964 Algebraic Geometry +1203.5965 Quantum Algebra +1203.5967 Materials Science +1203.5974 Probability +1203.5975 Differential Geometry +1203.5981 Geometric Topology +1203.5983 Mesoscale and Nanoscale Physics +1203.5985 Applications +1203.5986 Applications +1203.5988 Analysis of PDEs +1203.5989 Analysis of PDEs +1203.5990 Algebraic Geometry +1203.5991 Analysis of PDEs +1203.6000 Dynamical Systems +1203.6007 Superconductivity +1203.6008 Geometric Topology +1203.6009 Complex Variables +1203.6010 Chemical Physics +1203.6015 Combinatorics +1203.6018 Group Theory +1203.6021 General Finance +1203.6023 Numerical Analysis +1203.6024 Metric Geometry +1203.6028 Information Theory +1203.6030 Numerical Analysis +1203.6035 Multiagent Systems +1203.6036 Cryptography and Security +1203.6037 +1203.6042 Logic +1203.6047 Functional Analysis +1203.6049 Databases +1203.6055 Combinatorics +1203.6056 Logic +1203.6058 Algebraic Geometry +1203.6059 Logic +cond-mat/9906099 Materials Science +math/0312357 Number Theory +math/0312359 Number Theory +math/0408287 Functional Analysis +math/0503371 Algebraic Topology +math/0506521 Category Theory +math/0611810 Algebraic Geometry +quant-ph/0503082 +quant-ph/0607018 +quant-ph/9904021 +0807.4278 Probability +1004.0378 Computer Vision and Pattern Recognition +1008.2834 Solar and Stellar Astrophysics +1009.1627 Cosmology and Nongalactic Astrophysics +1009.2157 +1009.5020 +1010.1750 +1010.4951 Computer Vision and Pattern Recognition +1012.3191 Cosmology and Nongalactic Astrophysics +1101.1942 Optimization and Control +1102.1759 Differential Geometry +1103.0391 Soft Condensed Matter +1103.1577 Group Theory +1103.4981 Solar and Stellar Astrophysics +1104.1437 Plasma Physics +1104.1573 Phenomenology +1104.3009 Applications +1104.4105 Cosmology and Nongalactic Astrophysics +1104.4468 +1105.2721 +1106.3615 +1106.4081 Dynamical Systems +1106.4087 Chaotic Dynamics +1107.0791 Fluid Dynamics +1107.2466 Algebraic Geometry +1107.3435 Fluid Dynamics +1107.4450 +1108.0498 Complex Variables +1108.1037 Mesoscale and Nanoscale Physics +1109.1369 Strongly Correlated Electrons +1109.2727 Differential Geometry +1109.2754 Differential Geometry +1109.3259 Numerical Analysis +1109.3648 Quantum Gases +1110.2364 +1110.3678 Quantum Gases +1110.4846 Phenomenology +1110.4910 +1110.5827 Theory +1110.5833 Operator Algebras +1111.2468 +1111.5926 Numerical Analysis +1111.7190 Artificial Intelligence +1112.1811 +1112.4592 Experiment +1201.2306 Optics +1201.4495 Classical Analysis and ODEs +1201.4504 Logic +1201.5627 Strongly Correlated Electrons +1201.5636 Strongly Correlated Electrons +1201.5700 Superconductivity +1202.1362 Strongly Correlated Electrons +1202.3421 Pattern Formation and Solitons +1202.3474 Plasma Physics +1203.3255 Optimization and Control +1203.3390 Chaotic Dynamics +1203.3656 Dynamical Systems +1203.3767 Algebraic Geometry +1203.4109 Materials Science +1203.4258 +1204.1017 Optics +1204.5773 Optics +1205.3209 Soft Condensed Matter +1205.6879 Quantum Gases +1205.6897 Algebraic Geometry +1206.0031 Cosmology and Nongalactic Astrophysics +1206.0790 General Physics +1206.1912 +1206.3619 Computational Physics +1206.4201 Phenomenology +1206.6762 High Energy Astrophysical Phenomena +1206.6941 Mesoscale and Nanoscale Physics +1207.2105 +1207.2504 +1207.2807 Systems and Control +1207.3031 Distributed, Parallel, and Cluster Computing +1207.3305 Mesoscale and Nanoscale Physics +1207.3445 Formal Languages and Automata Theory +1207.3710 +1207.3837 Computers and Society +1207.4634 +1207.4799 Materials Science +1207.4800 Information Theory +1207.4808 Adaptation and Self-Organizing Systems +1207.4810 Algebraic Geometry +1207.4812 +1207.4813 Artificial Intelligence +1207.4815 +1207.4821 Databases +1207.4823 High Energy Astrophysical Phenomena +1207.4825 Data Structures and Algorithms +1207.4833 Accelerator Physics +1207.4834 Analysis of PDEs +1207.4836 Geophysics +1207.4840 Physics Education +1207.4843 Classical Analysis and ODEs +1207.4847 Strongly Correlated Electrons +1207.4849 Numerical Analysis +1207.4850 Exactly Solvable and Integrable Systems +1207.4859 Analysis of PDEs +1207.4861 Phenomenology +1207.4865 Probability +1207.4869 +1207.4871 Cryptography and Security +1207.4874 Mesoscale and Nanoscale Physics +1207.4875 Phenomenology +1207.4885 Phenomenology +1207.4888 Chaotic Dynamics +1207.4893 Complex Variables +1207.4897 Dynamical Systems +1207.4907 Probability +1207.4918 Geometric Topology +1207.4920 Probability +1207.4921 Group Theory +1207.4929 Analysis of PDEs +1207.4931 Robotics +1207.4933 Adaptation and Self-Organizing Systems +1207.4934 Dynamical Systems +1207.4935 Mesoscale and Nanoscale Physics +1207.4936 Logic +1207.4937 Dynamical Systems +1207.4939 +1207.4940 Software Engineering +1207.4945 Exactly Solvable and Integrable Systems +1207.4946 Strongly Correlated Electrons +1207.4950 Chemical Physics +1207.4954 Theory +1207.4958 Databases +1207.4959 Methodology +1207.4966 Software Engineering +1207.4967 Optimization and Control +1207.4973 Information Theory +1207.4975 Phenomenology +1207.4982 Astrophysics of Galaxies +1207.4984 Logic in Computer Science +1207.4991 Accelerator Physics +1207.4994 Accelerator Physics +1207.4995 Accelerator Physics +1207.4999 Optimization and Control +1207.5002 +1207.5008 +1207.5014 Logic in Computer Science +1207.5022 Combinatorics +1207.5024 Materials Science +1207.5029 Logic +1207.5032 Populations and Evolution +1207.5033 Functional Analysis +1207.5039 Classical Analysis and ODEs +astro-ph/0311602 +cond-mat/0010261 Soft Condensed Matter +cond-mat/9306061 +cond-mat/9806317 Statistical Mechanics +0708.0590 Mesoscale and Nanoscale Physics +0801.1580 Atomic Physics +0801.1591 Number Theory +0802.0704 Superconductivity +0809.3635 Classical Physics +0912.2152 Commutative Algebra +1001.2539 Disordered Systems and Neural Networks +1004.4151 Fluid Dynamics +1004.5158 Soft Condensed Matter +1006.3746 Disordered Systems and Neural Networks +1007.2915 Analysis of PDEs +1009.0746 Theory +1010.2741 Information Theory +1012.5225 Theory +1101.0874 Algebraic Geometry +1101.5076 Computation and Language +1101.5274 Functional Analysis +1102.1676 Differential Geometry +1103.2937 Statistical Mechanics +1104.1045 Artificial Intelligence +1104.3659 Number Theory +1104.4043 +1106.3857 Fluid Dynamics +1106.5253 Information Theory +1107.5959 Computation +1108.0023 Materials Science +1109.0342 Quantum Algebra +1109.1293 Information Theory +1109.4139 Physics Education +1109.5463 Strongly Correlated Electrons +1109.6649 +1110.0730 Experiment +1110.4780 Combinatorics +1110.5381 Probability +1110.5739 Instrumentation and Detectors +1111.1999 Combinatorics +1111.2375 Quantum Gases +1111.6600 Superconductivity +1111.7102 Fluid Dynamics +1112.0996 Superconductivity +1112.1192 Dynamical Systems +1112.2273 Data Structures and Algorithms +1112.3229 Physics Education +1112.3817 Statistical Mechanics +1112.5262 Functional Analysis +1112.5447 Cosmology and Nongalactic Astrophysics +1112.5545 Dynamical Systems +1112.6333 +1201.0054 Phenomenology +1201.3132 Theory +1201.4639 Digital Libraries +1201.6235 Quantum Gases +1202.0044 Commutative Algebra +1202.1067 Dynamical Systems +1202.1230 +1202.2344 Mesoscale and Nanoscale Physics +1202.2576 Information Theory +1202.3280 Cosmology and Nongalactic Astrophysics +1203.0285 Phenomenology +1203.5064 Superconductivity +1203.6649 +1203.6690 Quantum Gases +1204.0866 +1204.1008 Statistical Mechanics +1204.1150 Atomic Physics +1204.1817 Theory +1204.3258 Logic +1204.3612 +1204.4016 Strongly Correlated Electrons +1204.4064 Quantum Gases +1204.4149 Quantum Gases +1204.4709 Theory +1204.5450 +1204.5462 Formal Languages and Automata Theory +1204.6097 Biological Physics +1205.0366 +1205.0459 Atomic Physics +1205.1157 Plasma Physics +1205.2524 Statistical Mechanics +1205.2564 Superconductivity +1205.2964 Differential Geometry +1205.3278 Disordered Systems and Neural Networks +1205.3869 Theory +1205.3947 Superconductivity +1205.5197 Representation Theory +1205.5871 Distributed, Parallel, and Cluster Computing +1205.6991 Analysis of PDEs +1206.0736 Cosmology and Nongalactic Astrophysics +1206.1110 Disordered Systems and Neural Networks +1206.1176 Optics +1206.1259 Mesoscale and Nanoscale Physics +1206.1399 Superconductivity +1206.3064 Phenomenology +1206.3227 Disordered Systems and Neural Networks +1206.4667 Learning +1206.5193 Mesoscale and Nanoscale Physics +1206.6370 Theory +1207.0713 Logic +1207.1911 +1207.3009 Analysis of PDEs +1207.3150 Analysis of PDEs +1207.3287 +1207.3327 +1207.3468 Computational Geometry +1207.3521 Geometric Topology +1207.3960 High Energy Astrophysical Phenomena +1207.4076 +1207.4107 Artificial Intelligence +1207.4108 Computer Science and Game Theory +1207.4109 Data Structures and Algorithms +1207.4110 Learning +1207.4112 Learning +1207.4113 Learning +1207.4114 Artificial Intelligence +1207.4115 Artificial Intelligence +1207.4116 Artificial Intelligence +1207.4118 Methodology +1207.4119 Artificial Intelligence +1207.4120 Artificial Intelligence +1207.4121 Artificial Intelligence +1207.4122 Applications +1207.4123 Artificial Intelligence +1207.4124 Artificial Intelligence +1207.4125 Learning +1207.4126 Artificial Intelligence +1207.4127 Data Structures and Algorithms +1207.4128 Computer Science and Game Theory +1207.4129 Computer Vision and Pattern Recognition +1207.4130 Artificial Intelligence +1207.4131 Learning +1207.4132 Learning +1207.4133 Learning +1207.4134 Learning +1207.4135 Artificial Intelligence +1207.4136 Artificial Intelligence +1207.4137 Artificial Intelligence +1207.4138 Learning +1207.4139 Learning +1207.4140 Methodology +1207.4141 Artificial Intelligence +1207.4142 Learning +1207.4143 Applications +1207.4144 Learning +1207.4145 Genomics +1207.4146 Learning +1207.4147 Computer Science and Game Theory +1207.4148 Learning +1207.4149 Computation +1207.4150 Artificial Intelligence +1207.4151 Learning +1207.4152 Information Retrieval +1207.4153 Artificial Intelligence +1207.4154 Artificial Intelligence +1207.4155 Learning +1207.4156 Learning +1207.4157 Learning +1207.4158 Artificial Intelligence +1207.4159 Statistics Theory +1207.4160 Artificial Intelligence +1207.4161 Artificial Intelligence +1207.4163 Computer Science and Game Theory +1207.4164 Learning +1207.4165 Computer Science and Game Theory +1207.4166 Artificial Intelligence +1207.4167 Artificial Intelligence +1207.4168 Artificial Intelligence +1207.4169 Information Retrieval +1207.4170 Artificial Intelligence +1207.4171 Computer Science and Game Theory +1207.4172 Learning +1207.4173 Artificial Intelligence +1207.4174 Artificial Intelligence +1207.4175 Artificial Intelligence +1207.4176 Artificial Intelligence +1207.4177 Artificial Intelligence +1207.4178 Methodology +1207.4179 Computer Vision and Pattern Recognition +1207.4180 Learning +1207.4183 +1207.4184 Soft Condensed Matter +1207.4208 Theory +1207.4211 Instrumentation and Detectors +1207.4212 Complex Variables +1207.4217 Functional Analysis +1207.4224 Number Theory +1207.4230 Group Theory +1207.4232 Optimization and Control +1207.4239 Superconductivity +1207.4240 Probability +1207.4241 Instrumentation and Methods for Astrophysics +1207.4242 Probability +1207.4243 Functional Analysis +1207.4247 Other Computer Science +1207.4248 Solar and Stellar Astrophysics +1207.4251 Mesoscale and Nanoscale Physics +1207.4252 Information Theory +1207.4258 Computer Science and Game Theory +1207.4259 Information Retrieval +1207.4260 +1207.4265 Networking and Internet Architecture +1207.4266 Discrete Mathematics +1207.4268 Logic in Computer Science +1207.4269 Software Engineering +1207.4270 Logic in Computer Science +1207.4271 Logic in Computer Science +1207.4274 Probability +1207.4278 Networking and Internet Architecture +1207.4292 Cryptography and Security +1207.4293 Social and Information Networks +1207.4295 Superconductivity +1207.4296 Category Theory +1207.4300 Methodology +1207.4302 Complex Variables +1207.4307 Computation and Language +1207.4308 Computer Vision and Pattern Recognition +1207.4312 Superconductivity +1207.4314 Phenomenology +1207.4318 Neural and Evolutionary Computing +1207.4320 Statistical Mechanics +1207.4323 Experiment +1207.4325 Theory +1207.4326 Optimization and Control +1207.4327 Experiment +1207.4328 Information Retrieval +1207.4335 Algebraic Geometry +1207.4336 Number Theory +1207.4339 +1207.4343 Information Theory +1207.4345 Experiment +1207.4349 Functional Analysis +1207.4354 Statistical Mechanics +1207.4358 Phenomenology +1207.4365 Mesoscale and Nanoscale Physics +1207.4366 Data Structures and Algorithms +1207.4371 Information Retrieval +1207.4373 Combinatorics +1207.4383 Data Structures and Algorithms +1207.4387 General Physics +1207.4390 General Physics +1207.4391 Statistics Theory +1207.4394 Algebraic Topology +1207.4404 Learning +1207.4412 Analysis of PDEs +1207.4413 Solar and Stellar Astrophysics +1207.4419 Plasma Physics +1207.4421 Machine Learning +1207.4422 Differential Geometry +1207.4423 Differential Geometry +1207.4425 Number Theory +1207.4426 Chaotic Dynamics +1207.4428 Strongly Correlated Electrons +1207.4429 +1207.4432 Artificial Intelligence +1207.4436 Quantitative Methods +1207.4437 Combinatorics +1207.4441 +1207.4443 Mesoscale and Nanoscale Physics +1207.4445 Neural and Evolutionary Computing +1207.4446 Number Theory +1207.4448 Neural and Evolutionary Computing +1207.4449 Probability +1207.4450 Neural and Evolutionary Computing +1207.4451 Neural and Evolutionary Computing +1207.4452 Neural and Evolutionary Computing +1207.4453 Analysis of PDEs +1207.4454 Accelerator Physics +1207.4455 Neural and Evolutionary Computing +1207.4457 Accelerator Physics +1207.4460 Accelerator Physics +1207.4463 Quantitative Methods +1207.4471 Data Analysis, Statistics and Probability +cond-mat/0302184 Soft Condensed Matter +cond-mat/0404450 Mesoscale and Nanoscale Physics +cond-mat/0605501 Soft Condensed Matter +cond-mat/9803366 Soft Condensed Matter +gr-qc/0604003 +hep-ph/9611381 Phenomenology +0704.2428 Quantum Algebra +0706.2266 +0709.0368 Other Condensed Matter +0710.5176 Number Theory +0801.0702 +0810.0282 Optics +0810.3287 Analysis of PDEs +0903.4641 +0904.1295 Dynamical Systems +0905.2555 Quantum Algebra +0905.4655 Spectral Theory +0905.4717 Digital Libraries +0906.3968 Risk Management +0908.0252 Number Theory +0912.2513 Number Theory +0912.5067 Symplectic Geometry +0912.5398 Probability +1001.0951 Applications +1001.1057 +1003.2916 Adaptation and Self-Organizing Systems +1003.4023 Phenomenology +1003.4407 Algebraic Geometry +1005.5192 Spectral Theory +1005.5326 Number Theory +1006.1798 Computational Physics +1006.4409 Geometric Topology +1006.4711 Probability +1007.0026 Risk Management +1007.0122 Differential Geometry +1007.4375 +1008.4537 General Physics +1008.4596 General Physics +1008.4605 +1008.4606 +1011.2266 Symplectic Geometry +1012.1279 Dynamical Systems +1012.3366 +1012.5277 +1012.5832 General Finance +1101.2743 Representation Theory +1101.4413 +1102.0047 Algebraic Topology +1102.1601 Phenomenology +1102.5225 Information Theory +1103.1945 Spectral Theory +1103.5027 General Finance +1104.0637 Combinatorics +1104.5381 Statistical Mechanics +1105.3156 Algebraic Geometry +1105.3443 Phenomenology +1105.6084 Networking and Internet Architecture +1105.6308 +1106.2128 Quantum Algebra +1106.6011 Algebraic Geometry +1107.1155 Physics and Society +1107.1331 Numerical Analysis +1107.2610 +1107.5070 Combinatorics +1108.0175 Cosmology and Nongalactic Astrophysics +1108.1735 Lattice +1108.3442 +1108.3898 Theory +1108.3988 Computation +1108.4948 Other Condensed Matter +1108.4988 Machine Learning +1108.5264 Probability +1108.5425 Phenomenology +1108.5968 Strongly Correlated Electrons +1109.0307 Mesoscale and Nanoscale Physics +1109.1506 General Physics +1109.3645 Algebraic Geometry +1109.5256 Probability +1109.5514 Materials Science +1109.6558 Biomolecules +1110.0434 Strongly Correlated Electrons +1110.1424 Materials Science +1110.1974 Dynamical Systems +1110.2245 Cosmology and Nongalactic Astrophysics +1110.3146 Lattice +1110.4196 Cryptography and Security +1110.4471 High Energy Astrophysical Phenomena +1110.4549 +1110.5184 Experiment +1110.6269 Metric Geometry +1110.6904 Phenomenology +1111.0015 Theory +1111.0199 Theory +1111.0817 Materials Science +1111.3013 Cryptography and Security +1111.3960 Cosmology and Nongalactic Astrophysics +1111.4021 Analysis of PDEs +1111.4266 Phenomenology +1111.4271 Classical Analysis and ODEs +1111.5171 Algebraic Geometry +1111.5173 Phenomenology +1111.5519 Statistical Mechanics +1111.5843 +1111.5943 Strongly Correlated Electrons +1111.6038 Computational Finance +1111.6623 Strongly Correlated Electrons +1111.7075 Superconductivity +1112.0524 Cosmology and Nongalactic Astrophysics +1112.0693 Classical Analysis and ODEs +1112.1123 High Energy Astrophysical Phenomena +1112.1246 Lattice +1112.1376 Instrumentation and Detectors +1112.1744 Classical Analysis and ODEs +1112.2188 Social and Information Networks +1112.2349 Earth and Planetary Astrophysics +1112.3368 Statistical Mechanics +1112.4272 Dynamical Systems +1112.5514 Statistical Mechanics +1201.0174 Superconductivity +1201.0457 Geometric Topology +1201.3728 Differential Geometry +1201.4199 +1201.4493 Representation Theory +1201.4796 Classical Analysis and ODEs +1201.5593 Representation Theory +1201.5664 Materials Science +1201.5749 +1201.5862 Soft Condensed Matter +1201.5969 +1201.6084 Logic +1201.6330 Combinatorics +1201.6588 General Physics +1202.0159 Complex Variables +1202.0194 General Topology +1202.0571 Group Theory +1202.0579 Fluid Dynamics +1202.0661 Fluid Dynamics +1202.0942 Functional Analysis +1202.1237 Number Theory +1202.1400 Fluid Dynamics +1202.1401 Rings and Algebras +1202.1742 Systems and Control +1202.2172 Phenomenology +1202.2353 Other Quantitative Biology +1202.2368 Computer Vision and Pattern Recognition +1202.2370 Methodology +1202.2371 Methodology +1202.2372 Cosmology and Nongalactic Astrophysics +1202.2381 High Energy Astrophysical Phenomena +1202.2382 Phenomenology +1202.2383 Accelerator Physics +1202.2393 Information Retrieval +1202.2394 Materials Science +1202.2401 Classical Physics +1202.2405 Analysis of PDEs +1202.2407 Logic in Computer Science +1202.2410 Combinatorics +1202.2414 Information Theory +1202.2420 Cryptography and Security +1202.2425 Software Engineering +1202.2426 Phenomenology +1202.2427 Software Engineering +1202.2429 Software Engineering +1202.2438 Phenomenology +1202.2441 Rings and Algebras +1202.2443 Dynamical Systems +1202.2445 Adaptation and Self-Organizing Systems +1202.2446 Analysis of PDEs +1202.2448 Populations and Evolution +1202.2449 Computer Vision and Pattern Recognition +1202.2451 Commutative Algebra +1202.2457 +1202.2459 High Energy Astrophysical Phenomena +1202.2462 Lattice +1202.2470 Phenomenology +1202.2473 Instrumentation and Methods for Astrophysics +1202.2476 Machine Learning +1202.2482 Geometric Topology +1202.2485 General Topology +1202.2489 Theory +1202.2492 Functional Analysis +1202.2498 Software Engineering +1202.2499 Software Engineering +1202.2501 Software Engineering +1202.2503 Social and Information Networks +1202.2504 Software Engineering +1202.2506 Software Engineering +1202.2508 Software Engineering +1202.2509 Distributed, Parallel, and Cluster Computing +1202.2510 Software Engineering +1202.2511 Software Engineering +1202.2513 Software Engineering +1202.2514 Software Engineering +1202.2515 Software Engineering +1202.2516 Software Engineering +1202.2517 Algebraic Topology +1202.2519 Algebraic Topology +1202.2521 Optics +1202.2522 +1202.2527 Rings and Algebras +1202.2528 Computer Vision and Pattern Recognition +1202.2529 Instrumentation and Methods for Astrophysics +1202.2532 Risk Management +1202.2534 +1202.2538 Optics +1202.2544 Atomic and Molecular Clusters +1202.2548 Number Theory +1202.2550 Probability +1202.2551 Distributed, Parallel, and Cluster Computing +1202.2553 Disordered Systems and Neural Networks +1202.2560 Logic +1202.2562 Classical Physics +1202.2565 Dynamical Systems +1202.2567 Functional Analysis +1202.2568 Complex Variables +1202.2573 Networking and Internet Architecture +1202.2577 Instrumentation and Methods for Astrophysics +1202.2580 Analysis of PDEs +1202.2581 Combinatorics +1202.2585 Computational Finance +1202.2592 High Energy Astrophysical Phenomena +1202.2595 Probability +1202.2602 Combinatorics +1202.2604 Algebraic Geometry +1202.2610 Mesoscale and Nanoscale Physics +1202.2613 Mesoscale and Nanoscale Physics +1202.2614 Information Retrieval +1202.2615 Information Retrieval +1202.2616 +1202.2617 Information Retrieval +1202.2619 Information Retrieval +1202.2633 Complex Variables +1202.2634 Networking and Internet Architecture +1202.2635 Mesoscale and Nanoscale Physics +1202.2640 Probability +1202.2641 Experiment +1202.2642 Experiment +1202.2647 +1202.2648 Group Theory +1202.2650 Logic +1202.2654 Optimization and Control +1202.2659 Operator Algebras +1202.2664 Representation Theory +1202.2667 Analysis of PDEs +1202.2668 Representation Theory +1202.2669 Phenomenology +1202.2670 Quantitative Methods +1202.2671 Number Theory +1202.2680 Analysis of PDEs +1202.2686 Number Theory +1202.2693 +1202.2695 Space Physics +1202.2696 Algebraic Geometry +1202.2700 Phenomenology +1202.2702 Biomolecules +1202.2704 Rings and Algebras +1202.2706 Numerical Analysis +1202.2707 Numerical Analysis +1202.2708 Numerical Analysis +1202.2717 Quantum Algebra +1202.2719 Algebraic Topology +1202.2724 Geometric Topology +1202.2731 Software Engineering +1202.2732 +1202.2736 Programming Languages +1202.2738 Instrumentation and Methods for Astrophysics +1202.2740 Operator Algebras +1202.2742 Geometric Topology +1202.2755 +1202.2757 Phenomenology +1202.2760 Differential Geometry +1202.2761 Data Analysis, Statistics and Probability +1202.2764 Physics Education +1202.2765 Numerical Analysis +1202.2766 Probability +1202.2773 Artificial Intelligence +1202.2774 Information Theory +1202.2775 +1202.2778 Information Theory +1202.2781 Algebraic Geometry +1202.2785 Classical Analysis and ODEs +1202.2786 Classical Analysis and ODEs +1202.2790 High Energy Astrophysical Phenomena +1202.2791 History and Philosophy of Physics +1202.2794 Discrete Mathematics +1202.2803 Information Theory +1202.2804 Mesoscale and Nanoscale Physics +1202.2814 High Energy Astrophysical Phenomena +1202.2815 Analysis of PDEs +1202.2820 Data Structures and Algorithms +1202.2828 Experiment +1202.2832 Biological Physics +1202.2834 Lattice +hep-ph/0603260 Phenomenology +math/0002246 Quantum Algebra +math/0311291 Quantum Algebra +math/0504300 Metric Geometry +math/0608208 Number Theory +math/0609771 Combinatorics +math/0703473 Algebraic Geometry +quant-ph/0607176 +1101.0337 General Physics +1207.2593 +0705.0016 Theory +0705.3989 Data Analysis, Statistics and Probability +0807.4709 +0904.1096 Combinatorics +0904.4371 Materials Science +0905.2263 +0906.5307 Physics and Society +0909.3520 Group Theory +0911.2783 Functional Analysis +1002.1672 Physics and Society +1003.1908 Functional Analysis +1004.3363 Data Structures and Algorithms +1006.3735 Optimization and Control +1007.1190 Differential Geometry +1009.5993 Cosmology and Nongalactic Astrophysics +1010.0927 Classical Analysis and ODEs +1010.1031 +1010.4914 Probability +1011.3039 General Physics +1101.0839 Combinatorics +1101.0840 Combinatorics +1102.3650 Other Condensed Matter +1103.0747 +1103.1837 Mesoscale and Nanoscale Physics +1103.4675 Mesoscale and Nanoscale Physics +1105.4659 Statistical Mechanics +1106.0484 Combinatorics +1106.5838 Mesoscale and Nanoscale Physics +1107.0392 Physics and Society +1107.2505 Probability +1107.3179 Mesoscale and Nanoscale Physics +1108.3275 Analysis of PDEs +1108.3338 Representation Theory +1108.3985 Analysis of PDEs +1109.3829 Computation +1109.5368 High Energy Astrophysical Phenomena +1110.1942 Phenomenology +1110.3758 Combinatorics +1110.5541 Strongly Correlated Electrons +1111.0352 Learning +1111.0744 Cosmology and Nongalactic Astrophysics +1111.3946 Phenomenology +1111.6337 Learning +1111.6347 Strongly Correlated Electrons +1112.1077 Cosmology and Nongalactic Astrophysics +1112.1220 Physics and Society +1112.3547 Optics +1112.5487 Theory +1201.0501 Optics +1201.3250 Formal Languages and Automata Theory +1201.3592 Social and Information Networks +1201.3725 +1201.3909 Mesoscale and Nanoscale Physics +1201.4121 Statistical Mechanics +1201.4221 Mesoscale and Nanoscale Physics +1201.4340 Phenomenology +1201.4902 +1201.6355 Mesoscale and Nanoscale Physics +1202.1485 +1202.1961 Quantum Gases +1202.2184 +1202.5676 Number Theory +1202.6015 +1203.1169 Accelerator Physics +1203.1258 Quantum Algebra +1203.1520 Atomic Physics +1203.1596 Machine Learning +1203.1602 Statistical Mechanics +1203.2742 Optimization and Control +1203.3223 +1203.3360 Lattice +1203.3786 Combinatorics +1203.4260 Cosmology and Nongalactic Astrophysics +1203.4261 Cosmology and Nongalactic Astrophysics +1203.5137 Phenomenology +1203.5450 Disordered Systems and Neural Networks +1203.5997 Computational Physics +1203.6522 Theory +1204.0889 +1204.1720 Strongly Correlated Electrons +1204.2054 Theory +1204.2254 Strongly Correlated Electrons +1204.4058 +1204.4128 Phenomenology +1204.4398 Mesoscale and Nanoscale Physics +1204.4550 Networking and Internet Architecture +1204.5835 High Energy Astrophysical Phenomena +1204.6068 Solar and Stellar Astrophysics +1204.6215 Instrumentation and Methods for Astrophysics +1205.0004 Solar and Stellar Astrophysics +1205.0806 Earth and Planetary Astrophysics +1205.4882 High Energy Astrophysical Phenomena +1205.6777 Statistical Mechanics +1205.6878 +1206.0098 Differential Geometry +1206.0622 Methodology +1206.0858 Quantitative Methods +1206.1616 High Energy Astrophysical Phenomena +1206.2461 Experiment +1206.2659 High Energy Astrophysical Phenomena +1206.2918 +1206.2931 Chemical Physics +1206.2948 Numerical Analysis +1206.2953 Materials Science +1206.2957 Computer Science and Game Theory +1206.2960 Physics and Society +1206.2963 Number Theory +1206.2967 Experiment +1206.2973 Rings and Algebras +1206.2974 Information Theory +1206.2975 Combinatorics +1206.2976 Chaotic Dynamics +1206.2979 Experiment +1206.2980 History and Philosophy of Physics +1206.2981 Materials Science +1206.2982 Instrumentation and Methods for Astrophysics +1206.2984 Optics +1206.2985 Superconductivity +1206.2997 Analysis of PDEs +1206.2998 General Physics +1206.3001 Human-Computer Interaction +1206.3002 Robotics +1206.3003 Genomics +1206.3004 Genomics +1206.3005 Dynamical Systems +1206.3006 Superconductivity +1206.3009 Mesoscale and Nanoscale Physics +1206.3014 Information Theory +1206.3016 Algebraic Geometry +1206.3019 Phenomenology +1206.3020 Differential Geometry +1206.3021 Algebraic Geometry +1206.3022 +1206.3024 Solar and Stellar Astrophysics +1206.3027 Computers and Society +1206.3029 Information Theory +1206.3032 Optics +1206.3034 Optimization and Control +1206.3036 Chemical Physics +1206.3037 Physics and Society +1206.3042 Earth and Planetary Astrophysics +1206.3044 Probability +1206.3045 Fluid Dynamics +1206.3046 Superconductivity +1206.3052 +1206.3055 Atmospheric and Oceanic Physics +1206.3062 Phenomenology +1206.3066 Probability +1206.3069 Commutative Algebra +1206.3072 Learning +1206.3074 +1206.3078 Information Retrieval +1206.3082 Differential Geometry +1206.3083 Plasma Physics +1206.3090 Algebraic Geometry +1206.3093 Metric Geometry +1206.3094 Probability +1206.3095 Group Theory +1206.3100 Analysis of PDEs +1206.3104 Pricing of Securities +1206.3105 Metric Geometry +1206.3106 General Physics +1206.3107 Classical Physics +1206.3109 General Physics +1206.3110 General Physics +1206.3113 Lattice +1206.3116 +1206.3120 Networking and Internet Architecture +1206.3124 High Energy Astrophysical Phenomena +1206.3125 Methodology +1206.3133 Information Theory +1206.3135 Combinatorics +1206.3137 Machine Learning +1206.3138 Information Theory +1206.3141 Classical Analysis and ODEs +1206.3143 Phenomenology +1206.3144 Combinatorics +1206.3145 Strongly Correlated Electrons +1206.3146 Instrumentation and Detectors +1206.3149 +1206.3150 +1206.3152 Combinatorics +1206.3158 Materials Science +1206.3160 Combinatorics +1206.3162 Materials Science +1206.3163 Superconductivity +1206.3165 Combinatorics +1206.3170 Differential Geometry +1206.3172 Classical Analysis and ODEs +1206.3174 Combinatorics +1206.3177 Numerical Analysis +1206.3180 Logic in Computer Science +1206.3183 Combinatorics +1206.3185 Astrophysics of Galaxies +1206.3188 Experiment +1206.3193 Combinatorics +1206.3194 Experiment +1206.3195 Symplectic Geometry +1206.3198 Experiment +1206.3200 Combinatorics +1206.3202 Combinatorics +1206.3205 Mesoscale and Nanoscale Physics +1206.3206 Combinatorics +1206.3207 Optics +1206.3209 Optimization and Control +1206.3211 Combinatorics +1206.3214 Dynamical Systems +1206.3216 Strongly Correlated Electrons +1206.3225 Differential Geometry +math/0305195 Quantum Algebra +physics/0603002 Data Analysis, Statistics and Probability +0704.0638 Experiment +0704.0802 Information Theory +0704.0943 +0704.1500 Experiment +0704.1937 Lattice +0704.3575 Experiment +0704.3594 Experiment +0705.1122 +0705.1186 +0705.1605 +0705.2247 Experiment +0705.2276 Experiment +0705.2946 +0705.3108 Experiment +0705.3119 +0705.3207 Theory +0705.3251 Phenomenology +0705.3322 Lattice +0705.3815 Experiment +0705.4408 Experiment +0706.0020 +0706.0563 +0706.0926 Experiment +0706.2231 Experiment +0706.2283 +0706.2456 Experiment +0706.3150 Experiment +0706.3722 Experiment +0706.4126 Mesoscale and Nanoscale Physics +0707.0037 Optics +0707.0304 +0707.0662 Biological Physics +0707.1303 +0707.1586 Experiment +0707.2374 Experiment +0707.2532 Experiment +0707.2654 Experiment +0707.2687 Experiment +0707.3005 Experiment +0707.3679 +0707.3933 Experiment +0707.4078 Experiment +0707.4148 Experiment +0707.4415 +0707.4609 Experiment +0707.4616 Experiment +0707.4623 Experiment +0707.4631 Experiment +0707.4634 Experiment +0708.1341 Quantitative Methods +0708.1495 Experiment +0708.1668 Experiment +0708.2251 +0708.2820 Experiment +0708.3217 Experiment +0708.3705 Lattice +0708.3944 +0709.0451 Experiment +0709.0766 +0709.0984 +0709.1000 Experiment +0709.1132 +0709.1823 +0709.2806 Instrumentation and Detectors +0709.3125 +0709.3458 Experiment +0709.3464 Experiment +0709.3763 +0709.4114 Experiment +0709.4139 +0709.4184 Experiment +0709.4380 +0709.4428 +0709.4507 +0709.4566 Phenomenology +0709.4621 +0709.4670 Experiment +0710.0118 +0710.0422 Lattice +0710.0497 +0710.0536 Lattice +0710.0786 Experiment +0710.0890 +0710.0963 Lattice +0710.1534 Lattice +0710.1761 Phenomenology +0710.1767 +0710.1895 Experiment +0710.2011 Lattice +0710.2017 +0710.2048 Experiment +0710.2176 Experiment +0710.2247 +0710.2324 Experiment +0710.2344 Experiment +0710.2418 +0710.2493 +0710.2979 Experiment +0710.3091 Experiment +0710.3361 Experiment +0710.3462 Lattice +0710.3467 Lattice +0710.3712 +0710.3897 Experiment +0710.3991 Analysis of PDEs +0710.3993 Experiment +0710.4203 +0710.4470 Experiment +0710.4947 Phenomenology +0710.5245 Theory +0710.5369 Experiment +0711.0353 +0711.0547 +0711.0728 Experiment +0711.1663 Optics +0711.2256 +0711.2683 +0711.3682 +0711.4209 +0711.4313 Experiment +0711.4578 Experiment +0712.0929 Experiment +0712.1147 +0712.1411 Experiment +0712.1664 Experiment +0712.1744 Experiment +0712.1909 +0712.2534 Experiment +0712.2843 +0712.2864 Experiment +0712.3094 +0712.3178 +0712.3524 +0712.3841 Experiment +0801.1817 Phenomenology +0801.2439 Experiment +0801.3801 +0801.3885 Experiment +0801.4589 Experiment +0802.1071 +0802.1443 +0802.1858 Experiment +0802.2959 Methodology +0802.2988 Experiment +0802.3530 +0802.3776 Chaotic Dynamics +0802.3887 Experiment +0802.4023 Accelerator Physics +0802.4320 +0803.0376 +0803.0739 Experiment +0803.0911 +0803.1154 Phenomenology +0803.2146 +0803.3313 Experiment +0803.3375 Experiment +0803.3434 Theory +0803.3629 +0803.3878 Experiment +0803.3941 +0804.0178 Experiment +0804.1043 Experiment +0804.1157 Superconductivity +0804.1580 Experiment +0804.1869 Experiment +0804.3423 Experiment +0804.3770 +0804.3957 +0804.4304 +0804.4494 Experiment +0805.0837 Optics +0805.1764 Experiment +0805.1969 Experiment +0805.2245 +0805.2809 Experiment +0805.2871 Experiment +0805.2908 Materials Science +0805.3088 +0805.3319 +0805.3843 +0805.4530 Experiment +0806.0050 Theory +0806.0315 Experiment +0806.0989 +0806.2237 Experiment +0806.2375 Representation Theory +0806.3473 +0806.3987 Experiment +0806.4201 Experiment +0806.4302 +0806.4546 Fluid Dynamics +0807.0494 Experiment +0807.0589 Experiment +0807.1025 Experiment +0807.1290 Experiment +0807.1661 Lattice +0807.1773 Information Theory +0807.2281 +0807.2469 +0807.3834 Experiment +0808.0147 Experiment +0808.1003 Experiment +0808.1237 +0808.1970 Experiment +0808.2161 Experiment +0808.2459 Experiment +0809.1224 Experiment +0809.1646 +0809.3950 Experiment +0809.4903 Experiment +0809.5279 Theory +0810.0283 +0810.0351 Lattice +0810.0563 Lattice +0810.1896 Experiment +0810.2125 +0810.2364 Lattice +0810.2590 Lattice +0810.2993 Lattice +0810.3096 Experiment +0810.3213 Experiment +0810.3303 +0810.3475 +0810.3522 Experiment +0810.3562 +0810.3568 +0810.4036 Experiment +0810.4930 Instrumentation and Detectors +0810.4979 +0810.5357 Experiment +0810.5608 Experiment +0810.5611 Experiment +0811.1921 +0811.1929 Experiment +0811.2354 Instrumentation and Detectors +0811.2750 +0811.3894 +0811.4682 Experiment +0812.0917 +0812.1500 +0812.1971 +0812.2003 Experiment +0812.2243 Experiment +0812.2416 Experiment +0812.2517 Experiment +0812.4187 +0812.4620 Experiment +0901.0477 Experiment +0901.0488 Experiment +0901.0507 Experiment +0901.0971 History and Overview +0901.1321 Superconductivity +0901.2226 Experiment +0901.2385 Experiment +0901.4025 Applications +0901.4316 Instrumentation and Detectors +0901.4650 High Energy Astrophysical Phenomena +0901.4970 Theory +0902.0610 Astrophysics of Galaxies +0902.0675 High Energy Astrophysical Phenomena +0902.1089 Instrumentation and Methods for Astrophysics +0902.1781 Astrophysics of Galaxies +0902.1860 Instrumentation and Detectors +0902.2105 Experiment +0902.2776 Experiment +0902.3004 +0902.4666 Instrumentation and Methods for Astrophysics +0902.4681 Instrumentation and Methods for Astrophysics +0902.4688 Instrumentation and Methods for Astrophysics +0902.4693 Experiment +0903.0119 High Energy Astrophysical Phenomena +0903.0412 Astrophysics of Galaxies +0903.0441 Instrumentation and Detectors +0903.0624 High Energy Astrophysical Phenomena +0903.0676 Experiment +0903.1713 High Energy Astrophysical Phenomena +0903.2145 Experiment +0903.2403 Experiment +0903.2465 Experiment +0903.2469 Instrumentation and Methods for Astrophysics +0903.2503 Experiment +0903.3385 High Energy Astrophysical Phenomena +0903.4205 Experiment +0903.4592 Instrumentation and Methods for Astrophysics +0904.1092 Experiment +0904.1619 Experiment +0904.1904 High Energy Astrophysical Phenomena +0904.2973 +0904.3392 Experiment +0904.3466 Experiment +0904.3513 Experiment +0904.3870 Experiment +0904.3876 Experiment +0904.3950 Computational Physics +0904.4280 High Energy Astrophysical Phenomena +0904.4719 Theory +0905.0005 High Energy Astrophysical Phenomena +0905.0105 High Energy Astrophysical Phenomena +0905.0231 Experiment +0905.1058 Cosmology and Nongalactic Astrophysics +0905.1189 High Energy Astrophysical Phenomena +0905.1562 Experiment +0905.1705 +0905.2374 +0905.2427 High Energy Astrophysical Phenomena +0905.2465 Lattice +0905.3132 Solar and Stellar Astrophysics +0905.3198 Genomics +0905.3710 +0905.4185 Experiment +0905.4267 Experiment +0905.4558 High Energy Astrophysical Phenomena +0905.4846 Experiment +0906.0469 +0906.0471 Experiment +0906.1014 Experiment +0906.1224 Cosmology and Nongalactic Astrophysics +0906.1247 Astrophysics of Galaxies +0906.1424 Experiment +0906.1504 Experiment +0906.2720 High Energy Astrophysical Phenomena +0906.3653 Experiment +0906.3918 Experiment +0906.4007 High Energy Astrophysical Phenomena +0906.5497 Instrumentation and Methods for Astrophysics +0907.0379 Experiment +0907.0515 Instrumentation and Detectors +0907.1269 Experiment +0907.2596 Experiment +0907.2643 Experiment +0907.2658 Experiment +0907.2666 Experiment +0907.2799 +0907.3594 Experiment +0907.3627 Experiment +0907.3857 Experiment +0907.5026 Mesoscale and Nanoscale Physics +0907.5028 Materials Science +0907.5029 Mesoscale and Nanoscale Physics +0907.5031 Materials Science +0907.5289 Experiment +0908.0150 High Energy Astrophysical Phenomena +0908.0203 Cosmology and Nongalactic Astrophysics +0908.0511 High Energy Astrophysical Phenomena +0908.0969 Phenomenology +0908.1374 Experiment +0908.2171 Experiment +0908.3786 Statistical Mechanics +0908.4584 Experiment +0909.0466 Biomolecules +0909.0566 +0909.1248 +0909.1262 High Energy Astrophysical Phenomena +0909.2368 Cryptography and Security +0909.2629 Instrumentation and Methods for Astrophysics +0909.2745 Instrumentation and Detectors +0909.3032 Experiment +0909.3583 High Energy Astrophysical Phenomena +0909.4012 Experiment +0909.4223 Experiment +0909.4996 Experiment +0909.5107 +0909.5469 Experiment +0910.0442 Instrumentation and Methods for Astrophysics +0910.0908 High Energy Astrophysical Phenomena +0910.0969 Experiment +0910.1029 Experiment +0910.2433 Solar and Stellar Astrophysics +0910.2505 Instrumentation and Detectors +0910.3182 High Energy Astrophysical Phenomena +0910.3328 +0910.3423 Instrumentation and Detectors +0910.3534 Experiment +0910.3602 Experiment +0910.3606 Experiment +0910.4598 +0910.4648 Lattice +0910.4843 High Energy Astrophysical Phenomena +0910.4881 High Energy Astrophysical Phenomena +0910.5170 Experiment +0910.5520 High Energy Astrophysical Phenomena +0910.5530 Instrumentation and Detectors +0910.5532 Lattice +0910.5631 Experiment +0910.5772 Cosmology and Nongalactic Astrophysics +0910.5831 Experiment +0911.0425 Experiment +0911.0548 Experiment +0911.2412 High Energy Astrophysical Phenomena +0911.2561 Lattice +0911.2604 Experiment +0911.2972 Experiment +0911.3930 Experiment +0911.3989 Experiment +0911.4022 Instrumentation and Detectors +0911.4044 Instrumentation and Detectors +0911.4045 Instrumentation and Detectors +0911.4119 Experiment +0911.4286 Experiment +0911.4445 Materials Science +0911.4449 Experiment +0911.4770 Instrumentation and Detectors +0911.4842 Instrumentation and Detectors +0911.4845 Instrumentation and Detectors +0911.4855 Instrumentation and Detectors +0911.4877 Instrumentation and Detectors +0911.4881 Instrumentation and Detectors +0911.4889 Instrumentation and Detectors +0911.4893 Instrumentation and Detectors +0911.4895 Instrumentation and Detectors +0911.4904 Instrumentation and Detectors +0911.4960 Instrumentation and Detectors +0911.4991 Instrumentation and Detectors +0911.4992 Instrumentation and Detectors +0911.4994 Instrumentation and Detectors +0911.4996 Instrumentation and Detectors +0911.5397 Instrumentation and Detectors +0911.5422 Instrumentation and Detectors +0911.5434 Instrumentation and Detectors +0911.5678 Experiment +0912.0201 Instrumentation and Methods for Astrophysics +0912.0255 Experiment +0912.1057 Experiment +0912.1066 Experiment +0912.1171 Earth and Planetary Astrophysics +0912.1308 Experiment +0912.1434 Experiment +0912.2005 Instrumentation and Detectors +0912.2594 Experiment +0912.2642 Instrumentation and Detectors +0912.3453 Experiment +0912.4029 High Energy Astrophysical Phenomena +0912.4232 Experiment +0912.5104 Experiment +0912.5116 Experiment +0912.5285 Experiment +1001.0165 High Energy Astrophysical Phenomena +1001.0336 Experiment +1001.0502 Instrumentation and Detectors +1001.0532 Experiment +1001.0709 Instrumentation and Methods for Astrophysics +1001.3043 +1001.3679 Functional Analysis +1001.4026 Experiment +1001.4162 Experiment +1001.4481 Experiment +1001.4531 Cosmology and Nongalactic Astrophysics +1001.5328 Experiment +1001.5360 Experiment +1002.0201 +1002.0366 Instrumentation and Methods for Astrophysics +1002.0501 Experiment +1002.0621 Experiment +1002.0699 High Energy Astrophysical Phenomena +1002.0701 High Energy Astrophysical Phenomena +1002.1036 +1002.1077 +1002.1641 +1002.1975 High Energy Astrophysical Phenomena +1002.2572 Instrumentation and Detectors +1002.3471 Experiment +1002.3965 Materials Science +1003.0284 Experiment +1003.0603 +1003.1241 Phenomenology +1003.2826 Experiment +1003.3124 Experiment +1003.3609 Experiment +1003.4961 +1004.0338 +1004.1694 Instrumentation and Methods for Astrophysics +1004.1732 Experiment +1004.2377 +1004.2743 +1004.2864 +1004.4959 +1004.5293 Instrumentation and Detectors +1005.1478 +1005.1868 Soft Condensed Matter +1005.2615 Cosmology and Nongalactic Astrophysics +1005.3216 Experiment +1005.3294 Experiment +1005.3299 Experiment +1005.3670 Quantum Gases +1005.3674 Experiment +1005.4211 Experiment +1005.4568 Instrumentation and Detectors +1005.4655 +1005.4916 +1005.5254 Experiment +1005.5332 Experiment +1005.5694 +1006.0618 Experiment +1006.0946 Experiment +1006.0996 Experiment +1006.1349 Geometric Topology +1006.2083 Experiment +1006.3396 Experiment +1006.3740 +1006.3818 Chemical Physics +1006.4010 Experiment +1006.4384 Instrumentation and Detectors +1006.4597 Experiment +1006.5088 +1006.5162 Number Theory +1006.5432 Experiment +1006.5637 Strongly Correlated Electrons +1007.0317 Instrumentation and Detectors +1007.1150 Experiment +1007.1562 Experiment +1007.1777 High Energy Astrophysical Phenomena +1007.1945 Experiment +1007.1988 Instrumentation and Detectors +1007.2549 Instrumentation and Methods for Astrophysics +1007.2585 Materials Science +1007.2613 +1007.2951 Experiment +1007.3461 Phenomenology +1007.3473 +1007.4061 Experiment +1007.4423 Experiment +1007.4587 Experiment +1007.4730 Experiment +1007.4835 Experiment +1007.4836 Astrophysics of Galaxies +1007.5064 Materials Science +1007.5141 Instrumentation and Methods for Astrophysics +1007.5329 +1007.5423 Instrumentation and Detectors +1008.0413 Instrumentation and Detectors +1008.1420 +1008.1541 Experiment +1008.1719 Experiment +1008.1731 Experiment +1008.1956 Materials Science +1008.2325 Experiment +1008.2880 Superconductivity +1008.3235 High Energy Astrophysical Phenomena +1008.3493 Experiment +1008.3999 High Energy Astrophysical Phenomena +1008.4287 +1008.4967 Experiment +1008.5038 Medical Physics +1008.5119 High Energy Astrophysical Phenomena +1009.0266 Experiment +1009.1035 +1009.1160 Differential Geometry +1009.1795 Mesoscale and Nanoscale Physics +1009.3060 +1009.4122 Experiment +1009.4771 Experiment +1009.5069 Experiment +1009.5908 Experiment +1009.6222 Instrumentation and Detectors +1009.6224 Experiment +1010.0203 Experiment +1010.1476 Experiment +1010.2130 Experiment +1010.2252 Accelerator Physics +1010.3470 Experiment +1010.3581 Superconductivity +1010.4144 Instrumentation and Methods for Astrophysics +1010.4439 Experiment +1010.5947 Instrumentation and Methods for Astrophysics +1010.5994 Experiment +1010.6162 High Energy Astrophysical Phenomena +1010.6167 Experiment +1010.6291 Experiment +1011.0634 Experiment +1011.0816 High Energy Astrophysical Phenomena +1011.0885 Experiment +1011.1063 Lattice +1011.1208 Lattice +1011.1477 +1011.1848 Classical Analysis and ODEs +1011.1879 High Energy Astrophysical Phenomena +1011.2528 Cosmology and Nongalactic Astrophysics +1011.2618 Materials Science +1011.3914 +1011.4193 Experiment +1011.4760 Instrumentation and Detectors +1011.5254 +1011.5436 Experiment +1011.5531 Experiment +1011.5861 Experiment +1011.6182 Experiment +1011.6359 Experiment +1011.6556 Experiment +1011.6615 Experiment +1011.6665 Instrumentation and Detectors +1012.0791 Experiment +1012.1117 Experiment +1012.2200 High Energy Astrophysical Phenomena +1012.2590 +1012.3257 Experiment +1012.3375 Experiment +1012.3391 Experiment +1012.3510 Experiment +1012.3599 Instrumentation and Methods for Astrophysics +1012.4031 Experiment +1012.4033 Experiment +1012.4355 Experiment +1012.4389 Experiment +1012.5008 +1012.5131 Experiment +1012.5244 Statistical Mechanics +1012.5382 Experiment +1012.5400 Experiment +1012.5419 Experiment +1012.5545 Experiment +1012.5548 Representation Theory +1101.0070 Experiment +1101.2188 Group Theory +1101.2802 Experiment +1101.3753 Representation Theory +1101.4578 Experiment +1101.5223 +1101.6058 Experiment +1102.0316 Information Theory +1102.0459 Experiment +1102.1882 Experiment +1102.1957 +1102.2357 Experiment +1102.2669 +1102.2696 Experiment +1102.3194 Experiment +1102.3781 +1102.4282 Experiment +1102.4746 Experiment +1102.5290 Experiment +1102.5429 Experiment +1102.5435 +1103.0477 High Energy Astrophysical Phenomena +1103.0953 Experiment +1103.1348 Experiment +1103.1391 Experiment +1103.1816 Experiment +1103.3266 High Energy Astrophysical Phenomena +1103.3395 +1103.3470 Experiment +1103.3564 Theory +1103.3565 Theory +1103.4344 Experiment +1103.5559 Experiment +1103.5564 Experiment +1103.6053 +1103.6214 Experiment +1103.6218 Experiment +1104.0015 Cosmology and Nongalactic Astrophysics +1104.0046 +1104.0326 Experiment +1104.1693 Experiment +1104.1816 Experiment +1104.2150 Experiment +1104.2736 General Mathematics +1104.2892 Experiment +1104.3041 Instrumentation and Methods for Astrophysics +1104.3095 Mesoscale and Nanoscale Physics +1104.3673 Experiment +1104.4398 Experiment +1104.4481 Experiment +1104.5225 Experiment +1104.5701 Experiment +1105.0511 Instrumentation and Detectors +1105.1730 +1105.2436 Instrumentation and Detectors +1105.2438 +1105.2758 Experiment +1105.3152 Experiment +1105.3865 +1105.4234 Experiment +1105.4788 Experiment +1105.5365 Materials Science +1105.5661 Experiment +1105.5787 Experiment +1105.6242 High Energy Astrophysical Phenomena +1106.0208 Experiment +1106.0933 Experiment +1106.1238 Instrumentation and Detectors +1106.1563 Experiment +1106.1592 Experiment +1106.2063 Experiment +1106.2375 Experiment +1106.2748 Experiment +1106.3052 Experiment +1106.3272 Experiment +1106.4048 Experiment +1106.4495 Experiment +1106.4503 Experiment +1106.4775 Experiment +1106.5048 Instrumentation and Detectors +1106.5325 Experiment +1106.5327 Experiment +1106.5365 Lattice +1106.5685 Experiment +1106.6112 +1107.0330 Experiment +1107.0561 Experiment +1107.0581 Experiment +1107.0917 Experiment +1107.1279 Experiment +1107.1515 Cosmology and Nongalactic Astrophysics +1107.1579 +1107.2151 +1107.2304 Experiment +1107.2550 Experiment +1107.2594 Experiment +1107.2895 +1107.3716 Experiment +1107.4277 Instrumentation and Detectors +1107.4587 Experiment +1107.4659 Algebraic Geometry +1107.4771 Experiment +1107.4789 Experiment +1107.4800 +1107.4960 Experiment +1107.4995 Experiment +1107.4999 Experiment +1107.5003 Experiment +1107.5234 Differential Geometry +1107.5310 Cosmology and Nongalactic Astrophysics +1107.5733 Experiment +1107.5751 Experiment +1107.5834 Experiment +1107.5915 Experiment +1108.0320 +1108.0366 Experiment +1108.0566 Experiment +1108.1316 Experiment +1108.1366 Materials Science +1108.1582 Experiment +1108.2016 Experiment +1108.2044 Experiment +1108.3047 Experiment +1108.3331 Experiment +1108.3546 High Energy Astrophysical Phenomena +1108.3699 Experiment +1108.3773 Experiment +1108.4101 Experiment +1108.4908 Experiment +1108.5064 Experiment +1108.5467 +1108.5602 Experiment +1108.5895 Experiment +1108.6018 Experiment +1108.6027 Experiment +1108.6243 Superconductivity +1108.6269 Theory +1108.6308 Experiment +1108.6311 Experiment +1109.0066 Mesoscale and Nanoscale Physics +1109.0262 Methodology +1109.0330 +1109.0525 Experiment +1109.0927 Instrumentation and Detectors +1109.1403 Experiment +1109.1470 Experiment +1109.2085 Experiment +1109.2242 Experiment +1109.2295 +1109.2352 Experiment +1109.2911 Theory +1109.3089 Experiment +1109.3136 Experiment +1109.3357 Experiment +1109.3615 Experiment +1109.4725 Experiment +1109.4790 +1109.4985 Experiment +1109.5141 Experiment +1109.5816 Experiment +1109.5945 Experiment +1109.6034 Instrumentation and Detectors +1109.6096 Instrumentation and Methods for Astrophysics +1109.6572 Experiment +1109.6606 Experiment +1109.6833 Experiment +1109.6843 Experiment +1110.0121 +1110.0579 +1110.0664 Soft Condensed Matter +1110.0949 Experiment +1110.1324 Probability +1110.1530 Experiment +1110.1553 Distributed, Parallel, and Cluster Computing +1110.1610 Experiment +1110.1711 Category Theory +1110.1742 Experiment +1110.1985 Cosmology and Nongalactic Astrophysics +1110.2299 Experiment +1110.2682 Experiment +1110.2693 Experiment +1110.2802 Solar and Stellar Astrophysics +1110.3174 Experiment +1110.3226 Experiment +1110.3272 +1110.3934 Experiment +1110.4592 Experiment +1110.4747 High Energy Astrophysical Phenomena +1110.4973 Experiment +1110.6123 High Energy Astrophysical Phenomena +1110.6189 Experiment +1110.6191 Experiment +1110.6461 Experiment +1110.6462 Experiment +1110.6887 Lattice +1111.0080 Experiment +1111.1034 High Energy Astrophysical Phenomena +1111.1297 Experiment +1111.1460 +1111.1557 Experiment +1111.2663 Lattice +1111.2685 +1111.2690 Experiment +1111.2731 Instrumentation and Methods for Astrophysics +1111.2735 High Energy Astrophysical Phenomena +1111.2736 High Energy Astrophysical Phenomena +1111.2738 High Energy Astrophysical Phenomena +1111.2741 High Energy Astrophysical Phenomena +1111.2742 Instrumentation and Methods for Astrophysics +1111.3331 High Energy Astrophysical Phenomena +1111.3962 +1111.4506 +1111.5031 Experiment +1111.5188 High Energy Astrophysical Phenomena +1111.5341 Cosmology and Nongalactic Astrophysics +1111.5536 Experiment +1111.5570 Experiment +1111.5668 Information Theory +1111.5993 Applications +1111.7030 High Energy Astrophysical Phenomena +1111.7314 +1112.0511 Experiment +1112.1415 High Energy Astrophysical Phenomena +1112.2082 Experiment +1112.2098 +1112.2194 Experiment +1112.2577 Experiment +1112.3832 Experiment +1112.4092 Experiment +1112.4432 Experiment +1112.4462 Experiment +1112.4828 Experiment +1112.5100 Experiment +1112.5755 Experiment +1112.6297 Experiment +1201.0130 Experiment +1201.0871 Mesoscale and Nanoscale Physics +1201.1276 Experiment +1201.1889 Experiment +1201.2181 Strongly Correlated Electrons +1201.2808 Experiment +1201.3293 Experiment +1201.4188 Numerical Analysis +1201.4996 +1201.5441 Statistical Mechanics +1201.5595 Experiment +1201.5897 Experiment +1202.0621 Information Theory +1202.0704 Experiment +1202.1313 Experiment +1202.1336 Information Theory +1202.1408 Experiment +1202.1414 Experiment +1202.1415 Experiment +1202.1416 Experiment +1202.1487 Experiment +1202.1488 Experiment +1202.1489 Experiment +1202.1997 Experiment +1202.2099 Strongly Correlated Electrons +1202.2554 +1202.3076 Experiment +1202.3478 Experiment +1202.3617 Experiment +1202.3637 Theory +1202.3650 Experiment +1202.3996 Strongly Correlated Electrons +1202.4669 Other Statistics +1202.4847 Experiment +1202.4914 Lattice +1202.5022 +1202.5520 Experiment +1202.5653 Experiment +1202.5822 +1202.6205 Atomic and Molecular Clusters +1202.6540 Experiment +1203.0293 Experiment +1203.0368 Experiment +1203.0433 Optics +1203.0471 Earth and Planetary Astrophysics +1203.0529 Experiment +1203.0542 +1203.0718 Experiment +1203.1303 Experiment +1203.1803 +1203.2434 Other Computer Science +1203.2674 +1203.3100 Experiment +1203.3147 +1203.3161 Experiment +1203.3458 Experiment +1203.3549 Experiment +1203.3894 Experiment +1203.4030 Experiment +1203.4051 Experiment +1203.4211 Experiment +1203.4606 Experiment +1203.5420 Experiment +1203.5574 Statistical Mechanics +1203.5602 Information Theory +1203.5755 Experiment +1203.5763 Experiment +1203.5814 Superconductivity +1203.6193 Experiment +1203.6232 Experiment +1203.6258 Experiment +1203.6580 Experiment +1203.6642 Experiment +1204.0042 Experiment +1204.0282 +1204.0361 Biological Physics +1204.0685 Lattice +1204.0735 Experiment +1204.1648 Experiment +1204.2295 Instrumentation and Detectors +1204.2408 Functional Analysis +1204.2679 Phenomenology +1204.2685 Chemical Physics +1204.2760 Experiment +1204.2852 Experiment +1204.3664 K-Theory and Homology +1204.3852 Experiment +1204.4496 Experiment +1204.4655 Classical Physics +1204.4711 Strongly Correlated Electrons +1204.5065 Instrumentation and Methods for Astrophysics +1204.5217 Cosmology and Nongalactic Astrophysics +1204.5638 Experiment +1204.5671 Statistical Mechanics +1204.5689 Experiment +1204.5764 Accelerator Physics +1204.5873 High Energy Astrophysical Phenomena +1204.5955 Experiment +1204.6334 Accelerator Physics +1204.6720 Experiment +1204.6736 Experiment +1205.0153 Combinatorics +1205.0725 Experiment +1205.0857 +1205.1016 Experiment +1205.1655 Experiment +1205.2484 Experiment +1205.2735 +1205.4738 Computational Geometry +1205.6083 Operator Algebras +1205.6372 Experiment +1205.6642 Materials Science +1206.1181 Instrumentation and Detectors +1206.1314 Cosmology and Nongalactic Astrophysics +1206.1760 Experiment +1206.2099 Optics +1206.3122 Experiment +1206.3429 Statistical Mechanics +1206.3834 High Energy Astrophysical Phenomena +1206.3955 Experiment +1206.4552 Astrophysics of Galaxies +1206.4619 Learning +1206.5419 Experiment +1206.7007 Experiment +1207.0319 Experiment +1207.0422 Experiment +1207.0449 Experiment +1207.1228 Quantitative Methods +1207.2784 Materials Science +1207.2804 Solar and Stellar Astrophysics +1207.2865 Experiment +1207.3078 Astrophysics of Galaxies +1207.3283 Cosmology and Nongalactic Astrophysics +1207.3631 +1207.4790 Cosmology and Nongalactic Astrophysics +1207.6730 Accelerator Physics +1208.0344 Cosmology and Nongalactic Astrophysics +1208.0939 Instrumentation and Detectors +1208.1432 Earth and Planetary Astrophysics +1208.1520 Experiment +1208.2900 Information Theory +1208.3165 +1208.3809 Artificial Intelligence +1208.4697 Classical Analysis and ODEs +1208.4722 Cryptography and Security +1208.4828 +1208.4842 Computer Vision and Pattern Recognition +1208.4850 Phenomenology +1208.4854 Probability +1208.4857 Combinatorics +1208.4864 Populations and Evolution +1208.4867 Distributed, Parallel, and Cluster Computing +1208.4869 Mathematical Software +1208.4870 Numerical Analysis +1208.4872 Neurons and Cognition +1208.4876 Geometric Topology +1208.4892 Statistics Theory +1208.4900 Geometric Topology +1208.4903 Statistical Mechanics +1208.4904 Analysis of PDEs +1208.4905 Biological Physics +1208.4907 +1208.4912 Functional Analysis +1208.4914 Strongly Correlated Electrons +1208.4928 Analysis of PDEs +1208.4930 Logic +1208.4934 Materials Science +1208.4936 Classical Analysis and ODEs +1208.4937 Fluid Dynamics +1208.4938 Probability +1208.4939 Chemical Physics +1208.4952 Phenomenology +1208.4955 Classical Analysis and ODEs +1208.4957 Algebraic Geometry +1208.4967 Atomic Physics +1208.4970 General Physics +1208.4974 Probability +1208.4975 Mesoscale and Nanoscale Physics +1208.4977 Analysis of PDEs +1208.4980 Experiment +1208.4981 Phenomenology +1208.4984 Quantum Gases +1208.4986 History and Philosophy of Physics +1208.4995 Combinatorics +1208.4996 Rings and Algebras +1208.4997 Algebraic Topology +1208.5002 Formal Languages and Automata Theory +1208.5013 Dynamical Systems +1208.5029 Probability +1208.5031 High Energy Astrophysical Phenomena +1208.5032 Representation Theory +1208.5034 Analysis of PDEs +1208.5037 Networking and Internet Architecture +1208.5040 Phenomenology +1208.5041 Group Theory +1208.5043 +1208.5045 Computational Geometry +astro-ph/0001083 +astro-ph/0002471 +astro-ph/0003081 +astro-ph/0003152 +astro-ph/0005258 +astro-ph/0006398 +astro-ph/0007308 +astro-ph/0008254 +astro-ph/0010046 +astro-ph/0010077 +astro-ph/0010604 +astro-ph/0011249 +astro-ph/0011379 +astro-ph/0011381 +astro-ph/0012376 +astro-ph/0012456 +astro-ph/0103181 +astro-ph/0104316 +astro-ph/0105460 +astro-ph/0110513 +astro-ph/0110683 +astro-ph/0112172 +astro-ph/0203181 +astro-ph/0203188 +astro-ph/0203356 +astro-ph/0203500 +astro-ph/0204422 +astro-ph/0206454 +astro-ph/0209338 +astro-ph/0211606 +astro-ph/0212176 +astro-ph/0302482 +astro-ph/0302586 +astro-ph/0304377 +astro-ph/0305162 +astro-ph/0305184 +astro-ph/0305308 +astro-ph/0305437 +astro-ph/0307284 +astro-ph/0307334 +astro-ph/0307511 +astro-ph/0308283 +astro-ph/0308492 +astro-ph/0308493 +astro-ph/0310383 +astro-ph/0310457 +astro-ph/0403097 +astro-ph/0405033 +astro-ph/0405566 +astro-ph/0405580 +astro-ph/0405626 +astro-ph/0406064 +astro-ph/0406658 +astro-ph/0407103 +astro-ph/0408145 +astro-ph/0408490 +astro-ph/0410136 +astro-ph/0411533 +astro-ph/0411582 +astro-ph/0411680 +astro-ph/0412126 +astro-ph/0501261 +astro-ph/0501265 +astro-ph/0501512 +astro-ph/0501617 +astro-ph/0502303 +astro-ph/0502435 +astro-ph/0503552 +astro-ph/0504120 +astro-ph/0504139 +astro-ph/0504520 +astro-ph/0505195 +astro-ph/0505219 +astro-ph/0505334 +astro-ph/0505380 +astro-ph/0505409 +astro-ph/0506319 +astro-ph/0506593 +astro-ph/0507029 +astro-ph/0507150 +astro-ph/0507190 +astro-ph/0507288 +astro-ph/0507331 +astro-ph/0507402 +astro-ph/0507458 +astro-ph/0507459 +astro-ph/0507460 +astro-ph/0507516 +astro-ph/0507517 +astro-ph/0507600 +astro-ph/0508025 +astro-ph/0508073 +astro-ph/0508298 +astro-ph/0508389 +astro-ph/0508466 +astro-ph/0509259 +astro-ph/0509269 +astro-ph/0509296 +astro-ph/0509330 +astro-ph/0509622 +astro-ph/0510029 +astro-ph/0510346 +astro-ph/0510520 +astro-ph/0511730 +astro-ph/0512080 +astro-ph/0512239 +astro-ph/0512249 +astro-ph/0512407 +astro-ph/0512423 +astro-ph/0512441 +astro-ph/0512623 +astro-ph/0601264 +astro-ph/0601599 +astro-ph/0603021 +astro-ph/0603160 +astro-ph/0603431 +astro-ph/0604069 +astro-ph/0604114 +astro-ph/0604436 +astro-ph/0604442 +astro-ph/0604444 +astro-ph/0604450 +astro-ph/0604558 +astro-ph/0604604 +astro-ph/0606126 +astro-ph/0606132 +astro-ph/0606311 +astro-ph/0606397 +astro-ph/0606413 +astro-ph/0606619 +astro-ph/0606671 +astro-ph/0607094 +astro-ph/0607192 +astro-ph/0607233 +astro-ph/0607382 +astro-ph/0607669 +astro-ph/0608162 +astro-ph/0608525 +astro-ph/0608575 +astro-ph/0608606 +astro-ph/0609206 +astro-ph/0609501 +astro-ph/0609724 +astro-ph/0610509 +astro-ph/0610815 +astro-ph/0610913 +astro-ph/0611225 +astro-ph/0611356 +astro-ph/0612261 +astro-ph/0612723 +astro-ph/0701154 +astro-ph/0703099 +astro-ph/0703132 +astro-ph/0703419 +astro-ph/9311032 +astro-ph/9412028 +astro-ph/9501072 +astro-ph/9502106 +astro-ph/9503047 +astro-ph/9504056 +astro-ph/9505141 +astro-ph/9506052 +astro-ph/9508145 +astro-ph/9511118 +astro-ph/9601160 +astro-ph/9601161 +astro-ph/9603056 +astro-ph/9607094 +astro-ph/9610111 +astro-ph/9610162 +astro-ph/9610206 +astro-ph/9612068 +astro-ph/9701188 +astro-ph/9702059 +astro-ph/9702123 +astro-ph/9703078 +astro-ph/9705017 +astro-ph/9705173 +astro-ph/9705244 +astro-ph/9705245 +astro-ph/9706019 +astro-ph/9706183 +astro-ph/9707018 +astro-ph/9707028 +astro-ph/9707029 +astro-ph/9707136 +astro-ph/9707232 +astro-ph/9708185 +astro-ph/9709010 +astro-ph/9709070 +astro-ph/9712149 +astro-ph/9712180 +astro-ph/9712213 +astro-ph/9712339 +astro-ph/9712344 +astro-ph/9801194 +astro-ph/9801257 +astro-ph/9803082 +astro-ph/9804311 +astro-ph/9805199 +astro-ph/9805365 +astro-ph/9806017 +astro-ph/9806371 +astro-ph/9806380 +astro-ph/9807187 +astro-ph/9810003 +astro-ph/9810119 +astro-ph/9810504 +astro-ph/9812173 +astro-ph/9812174 +astro-ph/9812235 +astro-ph/9812454 +astro-ph/9902164 +astro-ph/9902332 +astro-ph/9903213 +astro-ph/9904063 +astro-ph/9904176 +astro-ph/9904205 +astro-ph/9904285 +astro-ph/9905162 +astro-ph/9906054 +astro-ph/9906055 +astro-ph/9906087 +astro-ph/9906185 +astro-ph/9906201 +astro-ph/9906205 +astro-ph/9906486 +astro-ph/9907113 +astro-ph/9907131 +astro-ph/9907162 +astro-ph/9907369 +astro-ph/9907432 +astro-ph/9908149 +astro-ph/9908192 +astro-ph/9909222 +astro-ph/9909245 +astro-ph/9910170 +astro-ph/9910501 +astro-ph/9911041 +astro-ph/9911193 +astro-ph/9911486 +astro-ph/9912077 +chao-dyn/9311011 Chaotic Dynamics +chao-dyn/9712017 Chaotic Dynamics +cmp-lg/9506008 Computation and Language +cmp-lg/9712010 Computation and Language +cond-mat/0011198 Materials Science +cond-mat/0105409 Strongly Correlated Electrons +cond-mat/0110571 Strongly Correlated Electrons +cond-mat/0112405 Strongly Correlated Electrons +cond-mat/0202104 Superconductivity +cond-mat/0203151 Strongly Correlated Electrons +cond-mat/0206281 Statistical Mechanics +cond-mat/0206474 +cond-mat/0208501 Superconductivity +cond-mat/0209178 Strongly Correlated Electrons +cond-mat/0209468 Superconductivity +cond-mat/0210044 Statistical Mechanics +cond-mat/0210585 Statistical Mechanics +cond-mat/0211560 Statistical Mechanics +cond-mat/0212302 Statistical Mechanics +cond-mat/0302245 Superconductivity +cond-mat/0305587 Disordered Systems and Neural Networks +cond-mat/0307002 Superconductivity +cond-mat/0308471 Materials Science +cond-mat/0310557 +cond-mat/0310591 +cond-mat/0311102 Mesoscale and Nanoscale Physics +cond-mat/0402392 Strongly Correlated Electrons +cond-mat/0409056 Superconductivity +cond-mat/0411524 Mesoscale and Nanoscale Physics +cond-mat/0412331 Superconductivity +cond-mat/0501622 Mesoscale and Nanoscale Physics +cond-mat/0504186 Soft Condensed Matter +cond-mat/0506570 Strongly Correlated Electrons +cond-mat/0509313 Superconductivity +cond-mat/0512184 Strongly Correlated Electrons +cond-mat/0512365 Soft Condensed Matter +cond-mat/0602158 Soft Condensed Matter +cond-mat/0602515 Materials Science +cond-mat/0604324 Superconductivity +cond-mat/0604402 Other Condensed Matter +cond-mat/0608545 Superconductivity +cond-mat/0701750 Strongly Correlated Electrons +cond-mat/9209026 +cond-mat/9708171 Statistical Mechanics +cond-mat/9801174 Mesoscale and Nanoscale Physics +cond-mat/9804001 Superconductivity +cond-mat/9810283 Mesoscale and Nanoscale Physics +cond-mat/9810322 +cond-mat/9811103 Superconductivity +cond-mat/9812350 +cond-mat/9904154 Superconductivity +cond-mat/9904274 Mesoscale and Nanoscale Physics +cond-mat/9905097 Materials Science +cond-mat/9905176 Strongly Correlated Electrons +cond-mat/9909329 Strongly Correlated Electrons +cs/0605042 Networking and Internet Architecture +cs/0609030 Information Theory +cs/9809024 Computation and Language +gr-qc/0012039 +gr-qc/0104031 +gr-qc/0112055 +gr-qc/0202021 +gr-qc/0205024 +gr-qc/0305001 +gr-qc/0401090 +gr-qc/0501068 +gr-qc/0505029 +gr-qc/0506104 +gr-qc/0507081 +gr-qc/0511146 +gr-qc/0512078 +gr-qc/0603069 +gr-qc/0604019 +gr-qc/0604109 +gr-qc/0605028 +gr-qc/0703068 +gr-qc/9307022 +gr-qc/9307037 +gr-qc/9506016 +gr-qc/9506071 +gr-qc/9506072 +gr-qc/9508037 +gr-qc/9510030 +gr-qc/9601030 +gr-qc/9601031 +gr-qc/9605054 +gr-qc/9606001 +gr-qc/9607006 +gr-qc/9612054 +gr-qc/9703010 +gr-qc/9709012 +gr-qc/9709082 +gr-qc/9710041 +gr-qc/9711074 +gr-qc/9711078 +gr-qc/9801069 +gr-qc/9802027 +gr-qc/9807041 +gr-qc/9807062 +gr-qc/9810051 +gr-qc/9810068 +gr-qc/9901021 +gr-qc/9903108 +gr-qc/9906095 +hep-ex/0001001 Experiment +hep-ex/0001002 Experiment +hep-ex/0001009 Experiment +hep-ex/0001010 Experiment +hep-ex/0001016 Experiment +hep-ex/0001040 Experiment +hep-ex/0001044 Experiment +hep-ex/0002010 Experiment +hep-ex/0002015 Experiment +hep-ex/0002029 Experiment +hep-ex/0002034 Experiment +hep-ex/0002035 Experiment +hep-ex/0002036 Experiment +hep-ex/0002037 Experiment +hep-ex/0002038 Experiment +hep-ex/0002043 Experiment +hep-ex/0002046 Experiment +hep-ex/0002048 Experiment +hep-ex/0002049 Experiment +hep-ex/0002054 Experiment +hep-ex/0002065 Experiment +hep-ex/0002066 Experiment +hep-ex/0003012 Experiment +hep-ex/0003017 Experiment +hep-ex/0003018 Experiment +hep-ex/0003019 Experiment +hep-ex/0003023 Experiment +hep-ex/0004003 Experiment +hep-ex/0004005 Experiment +hep-ex/0004006 Experiment +hep-ex/0004026 Experiment +hep-ex/0004034 Experiment +hep-ex/0005011 Experiment +hep-ex/0005014 Experiment +hep-ex/0005018 Experiment +hep-ex/0005023 Experiment +hep-ex/0005024 Experiment +hep-ex/0005028 Experiment +hep-ex/0005034 Experiment +hep-ex/0005037 Experiment +hep-ex/0005043 Experiment +hep-ex/0005045 Experiment +hep-ex/0006011 Experiment +hep-ex/0006013 Experiment +hep-ex/0006019 Experiment +hep-ex/0006028 Experiment +hep-ex/0006031 Experiment +hep-ex/0006035 Experiment +hep-ex/0006036 Experiment +hep-ex/0006037 Experiment +hep-ex/0006039 Experiment +hep-ex/0007005 Experiment +hep-ex/0007006 Experiment +hep-ex/0007021 Experiment +hep-ex/0007027 Experiment +hep-ex/0007028 Experiment +hep-ex/0007046 Experiment +hep-ex/0007047 Experiment +hep-ex/0007049 Experiment +hep-ex/0007050 Experiment +hep-ex/0007052 Experiment +hep-ex/0008004 Experiment +hep-ex/0008005 Experiment +hep-ex/0008013 Experiment +hep-ex/0008016 Experiment +hep-ex/0008020 Experiment +hep-ex/0008022 Experiment +hep-ex/0008023 Experiment +hep-ex/0008025 Experiment +hep-ex/0008026 Experiment +hep-ex/0008029 Experiment +hep-ex/0008065 Experiment +hep-ex/0008072 Experiment +hep-ex/0009010 Experiment +hep-ex/0009041 Experiment +hep-ex/0009055 Experiment +hep-ex/0009058 Experiment +hep-ex/0009064 Experiment +hep-ex/0010004 Experiment +hep-ex/0010022 Experiment +hep-ex/0010041 Experiment +hep-ex/0010052 Experiment +hep-ex/0010062 Experiment +hep-ex/0011004 Experiment +hep-ex/0011008 Experiment +hep-ex/0011035 Experiment +hep-ex/0011037 Experiment +hep-ex/0011041 Experiment +hep-ex/0011043 Experiment +hep-ex/0011045 Experiment +hep-ex/0011047 Experiment +hep-ex/0011067 Experiment +hep-ex/0011068 Experiment +hep-ex/0011070 Experiment +hep-ex/0011071 Experiment +hep-ex/0011087 Experiment +hep-ex/0011093 Experiment +hep-ex/0011094 Experiment +hep-ex/0012013 Experiment +hep-ex/0012017 Experiment +hep-ex/0012019 Experiment +hep-ex/0012029 Experiment +hep-ex/0012035 Experiment +hep-ex/0101025 Experiment +hep-ex/0101027 Experiment +hep-ex/0101036 Experiment +hep-ex/0101052 Experiment +hep-ex/0102023 Experiment +hep-ex/0102024 Experiment +hep-ex/0102025 Experiment +hep-ex/0102026 Experiment +hep-ex/0102042 Experiment +hep-ex/0103030 Experiment +hep-ex/0103048 Experiment +hep-ex/0104001 Experiment +hep-ex/0104002 Experiment +hep-ex/0104008 Experiment +hep-ex/0104021 Experiment +hep-ex/0104034 Experiment +hep-ex/0104036 Experiment +hep-ex/0104038 Experiment +hep-ex/0105016 Experiment +hep-ex/0105044 Experiment +hep-ex/0105075 Experiment +hep-ex/0105089 Experiment +hep-ex/0105090 Experiment +hep-ex/0106001 Experiment +hep-ex/0106012 Experiment +hep-ex/0106039 Experiment +hep-ex/0106040 Experiment +hep-ex/0106049 Experiment +hep-ex/0106051 Experiment +hep-ex/0106061 Experiment +hep-ex/0106075 Experiment +hep-ex/0106101 Experiment +hep-ex/0107004 Experiment +hep-ex/0107014 Experiment +hep-ex/0107015 Experiment +hep-ex/0107020 Experiment +hep-ex/0107022 Experiment +hep-ex/0107023 Experiment +hep-ex/0107024 Experiment +hep-ex/0107029 Experiment +hep-ex/0107030 Experiment +hep-ex/0107031 Experiment +hep-ex/0107032 Experiment +hep-ex/0107033 Experiment +hep-ex/0107034 Experiment +hep-ex/0107035 Experiment +hep-ex/0107052 Experiment +hep-ex/0107054 Experiment +hep-ex/0107055 Experiment +hep-ex/0108004 Experiment +hep-ex/0108006 Experiment +hep-ex/0108007 Experiment +hep-ex/0108011 Experiment +hep-ex/0108022 Experiment +hep-ex/0108049 Experiment +hep-ex/0109003 Experiment +hep-ex/0109012 Experiment +hep-ex/0109022 Experiment +hep-ex/0109028 Experiment +hep-ex/0109029 Experiment +hep-ex/0109033 Experiment +hep-ex/0109036 Experiment +hep-ex/0109037 Experiment +hep-ex/0109040 Experiment +hep-ex/0110002 Experiment +hep-ex/0110015 Experiment +hep-ex/0110019 Experiment +hep-ex/0110057 Experiment +hep-ex/0110072 Experiment +hep-ex/0110073 Experiment +hep-ex/0110083 Experiment +hep-ex/0111012 Experiment +hep-ex/0111027 Experiment +hep-ex/0111029 Experiment +hep-ex/0111057 Experiment +hep-ex/0111091 Experiment +hep-ex/0112010 Experiment +hep-ex/0112011 Experiment +hep-ex/0112021 Experiment +hep-ex/0112029 Experiment +hep-ex/0112030 Experiment +hep-ex/0201003 Experiment +hep-ex/0201012 Experiment +hep-ex/0201013 Experiment +hep-ex/0201014 Experiment +hep-ex/0201024 Experiment +hep-ex/0201037 Experiment +hep-ex/0201043 Experiment +hep-ex/0202011 Experiment +hep-ex/0202025 Experiment +hep-ex/0202028 Experiment +hep-ex/0202034 Experiment +hep-ex/0203006 Experiment +hep-ex/0203016 Experiment +hep-ex/0203020 Experiment +hep-ex/0203024 Experiment +hep-ex/0203031 Experiment +hep-ex/0203037 Experiment +hep-ex/0203041 Experiment +hep-ex/0204009 Experiment +hep-ex/0204012 Experiment +hep-ex/0204013 Experiment +hep-ex/0204018 Experiment +hep-ex/0204023 Experiment +hep-ex/0204024 Experiment +hep-ex/0204025 Experiment +hep-ex/0204027 Experiment +hep-ex/0204036 Experiment +hep-ex/0205008 Experiment +hep-ex/0205019 Experiment +hep-ex/0205055 Experiment +hep-ex/0205057 Experiment +hep-ex/0205058 Experiment +hep-ex/0205072 Experiment +hep-ex/0205081 Experiment +hep-ex/0205083 Experiment +hep-ex/0205085 Experiment +hep-ex/0205091 Experiment +hep-ex/0205099 Experiment +hep-ex/0206010 Experiment +hep-ex/0206019 Experiment +hep-ex/0206020 Experiment +hep-ex/0206049 Experiment +hep-ex/0206050 Experiment +hep-ex/0206051 Experiment +hep-ex/0206052 Experiment +hep-ex/0206056 Experiment +hep-ex/0206061 Experiment +hep-ex/0206070 Experiment +hep-ex/0207020 Experiment +hep-ex/0207024 Experiment +hep-ex/0207048 Experiment +hep-ex/0207049 Experiment +hep-ex/0207054 Experiment +hep-ex/0207056 Experiment +hep-ex/0208023 Experiment +hep-ex/0208027 Experiment +hep-ex/0208033 Experiment +hep-ex/0208035 Experiment +hep-ex/0208037 Experiment +hep-ex/0208040 Experiment +hep-ex/0208042 Experiment +hep-ex/0209015 Experiment +hep-ex/0209016 Experiment +hep-ex/0209066 Experiment +hep-ex/0210014 Experiment +hep-ex/0210026 Experiment +hep-ex/0210029 Experiment +hep-ex/0210031 Experiment +hep-ex/0210041 Experiment +hep-ex/0210043 Experiment +hep-ex/0210064 Experiment +hep-ex/0211011 Experiment +hep-ex/0211025 Experiment +hep-ex/0211040 Experiment +hep-ex/0211047 Experiment +hep-ex/0212002 Experiment +hep-ex/0212021 Experiment +hep-ex/0212030 Experiment +hep-ex/0212036 Experiment +hep-ex/0212058 Experiment +hep-ex/0212064 Experiment +hep-ex/0212067 Experiment +hep-ex/0301001 Experiment +hep-ex/0301025 Experiment +hep-ex/0301027 Experiment +hep-ex/0301030 Experiment +hep-ex/0302001 Experiment +hep-ex/0302010 Experiment +hep-ex/0302014 Experiment +hep-ex/0302019 Experiment +hep-ex/0302021 Experiment +hep-ex/0302025 Experiment +hep-ex/0302034 Experiment +hep-ex/0303016 Experiment +hep-ex/0303035 Experiment +hep-ex/0303041 Experiment +hep-ex/0303042 Experiment +hep-ex/0304003 Experiment +hep-ex/0304008 Experiment +hep-ex/0304037 Experiment +hep-ex/0305010 Experiment +hep-ex/0305015 Experiment +hep-ex/0305022 Experiment +hep-ex/0305028 Experiment +hep-ex/0305031 Experiment +hep-ex/0305035 Experiment +hep-ex/0305082 Experiment +hep-ex/0305108 Experiment +hep-ex/0306001 Experiment +hep-ex/0306013 Experiment +hep-ex/0306016 Experiment +hep-ex/0306017 Experiment +hep-ex/0306018 Experiment +hep-ex/0306049 Experiment +hep-ex/0307010 Experiment +hep-ex/0307015 Experiment +hep-ex/0307016 Experiment +hep-ex/0307021 Experiment +hep-ex/0307028 Experiment +hep-ex/0307041 Experiment +hep-ex/0307043 Experiment +hep-ex/0307069 Experiment +hep-ex/0307075 Experiment +hep-ex/0308006 Experiment +hep-ex/0308013 Experiment +hep-ex/0308043 Experiment +hep-ex/0308055 Experiment +hep-ex/0308068 Experiment +hep-ex/0309022 Experiment +hep-ex/0309056 Experiment +hep-ex/0309076 Experiment +hep-ex/0310003 Experiment +hep-ex/0310007 Experiment +hep-ex/0310012 Experiment +hep-ex/0310014 Experiment +hep-ex/0310017 Experiment +hep-ex/0310019 Experiment +hep-ex/0310030 Experiment +hep-ex/0310031 Experiment +hep-ex/0310032 Experiment +hep-ex/0310043 Experiment +hep-ex/0310047 Experiment +hep-ex/0311015 Experiment +hep-ex/0311022 Experiment +hep-ex/0311028 Experiment +hep-ex/0311030 Experiment +hep-ex/0311040 Experiment +hep-ex/0312023 Experiment +hep-ex/0312026 Experiment +hep-ex/0312032 Experiment +hep-ex/0312040 Experiment +hep-ex/0312048 Experiment +hep-ex/0312057 Experiment +hep-ex/0401001 Experiment +hep-ex/0401003 Experiment +hep-ex/0401009 Experiment +hep-ex/0401010 Experiment +hep-ex/0401017 Experiment +hep-ex/0401019 Experiment +hep-ex/0401024 Experiment +hep-ex/0402001 Experiment +hep-ex/0402002 Experiment +hep-ex/0402003 Experiment +hep-ex/0402006 Experiment +hep-ex/0402015 Experiment +hep-ex/0402019 Experiment +hep-ex/0402023 Experiment +hep-ex/0402030 Experiment +hep-ex/0402035 Experiment +hep-ex/0402036 Experiment +hep-ex/0402037 Experiment +hep-ex/0403003 Experiment +hep-ex/0403008 Experiment +hep-ex/0403017 Experiment +hep-ex/0403023 Experiment +hep-ex/0403027 Experiment +hep-ex/0403034 Experiment +hep-ex/0403037 Experiment +hep-ex/0403051 Experiment +hep-ex/0403056 Experiment +hep-ex/0404004 Experiment +hep-ex/0404008 Experiment +hep-ex/0404009 Experiment +hep-ex/0404010 Experiment +hep-ex/0404016 Experiment +hep-ex/0404022 Experiment +hep-ex/0404025 Experiment +hep-ex/0404033 Experiment +hep-ex/0404034 Experiment +hep-ex/0404036 Experiment +hep-ex/0404040 Experiment +hep-ex/0405002 Experiment +hep-ex/0405030 Experiment +hep-ex/0405042 Experiment +hep-ex/0405059 Experiment +hep-ex/0405063 Experiment +hep-ex/0405069 Experiment +hep-ex/0405070 Experiment +hep-ex/0406004 Experiment +hep-ex/0406018 Experiment +hep-ex/0406028 Experiment +hep-ex/0406029 Experiment +hep-ex/0406031 Experiment +hep-ex/0406035 Experiment +hep-ex/0406038 Experiment +hep-ex/0406049 Experiment +hep-ex/0406060 Experiment +hep-ex/0406067 Experiment +hep-ex/0406078 Experiment +hep-ex/0407012 Experiment +hep-ex/0407014 Experiment +hep-ex/0407017 Experiment +hep-ex/0407018 Experiment +hep-ex/0407020 Experiment +hep-ex/0407029 Experiment +hep-ex/0408009 Experiment +hep-ex/0408013 Experiment +hep-ex/0408018 Experiment +hep-ex/0408044 Experiment +hep-ex/0408053 Experiment +hep-ex/0408114 Experiment +hep-ex/0408118 Experiment +hep-ex/0408119 Experiment +hep-ex/0408139 Experiment +hep-ex/0408149 Experiment +hep-ex/0409016 Experiment +hep-ex/0409029 Experiment +hep-ex/0409030 Experiment +hep-ex/0409031 Experiment +hep-ex/0409033 Experiment +hep-ex/0409037 Experiment +hep-ex/0409053 Experiment +hep-ex/0410008 Experiment +hep-ex/0410012 Experiment +hep-ex/0410030 Experiment +hep-ex/0410037 Experiment +hep-ex/0410041 Experiment +hep-ex/0410050 Experiment +hep-ex/0410053 Experiment +hep-ex/0410059 Experiment +hep-ex/0410065 Experiment +hep-ex/0410068 Experiment +hep-ex/0410073 Experiment +hep-ex/0410077 Experiment +hep-ex/0410091 Experiment +hep-ex/0411013 Experiment +hep-ex/0411030 Experiment +hep-ex/0411033 Experiment +hep-ex/0411046 Experiment +hep-ex/0411059 Experiment +hep-ex/0411069 Experiment +hep-ex/0411070 Experiment +hep-ex/0412006 Experiment +hep-ex/0412015 Experiment +hep-ex/0412036 Experiment +hep-ex/0412073 Experiment +hep-ex/0501021 Experiment +hep-ex/0501030 Experiment +hep-ex/0501033 Experiment +hep-ex/0501036 Experiment +hep-ex/0501039 Experiment +hep-ex/0501060 Experiment +hep-ex/0501069 Experiment +hep-ex/0501070 Experiment +hep-ex/0501074 Experiment +hep-ex/0502007 Experiment +hep-ex/0502010 Experiment +hep-ex/0502029 Experiment +hep-ex/0502045 Experiment +hep-ex/0503002 Experiment +hep-ex/0503023 Experiment +hep-ex/0503038 Experiment +hep-ex/0503039 Experiment +hep-ex/0503051 Experiment +hep-ex/0504006 Experiment +hep-ex/0504012 Experiment +hep-ex/0504015 Experiment +hep-ex/0504016 Experiment +hep-ex/0504031 Experiment +hep-ex/0504044 Experiment +hep-ex/0504054 Experiment +hep-ex/0505008 Experiment +hep-ex/0505012 Experiment +hep-ex/0505042 Experiment +hep-ex/0505061 Experiment +hep-ex/0505074 Experiment +hep-ex/0505077 Experiment +hep-ex/0505089 Experiment +hep-ex/0506012 Experiment +hep-ex/0506013 Experiment +hep-ex/0506044 Experiment +hep-ex/0506072 Experiment +hep-ex/0507001 Experiment +hep-ex/0507006 Experiment +hep-ex/0507041 Experiment +hep-ex/0507042 Experiment +hep-ex/0507077 Experiment +hep-ex/0507078 Experiment +hep-ex/0507079 Experiment +hep-ex/0507080 Experiment +hep-ex/0507081 Experiment +hep-ex/0507088 Experiment +hep-ex/0507089 Experiment +hep-ex/0507091 Experiment +hep-ex/0507096 Experiment +hep-ex/0508005 Experiment +hep-ex/0508007 Experiment +hep-ex/0508010 Experiment +hep-ex/0508014 Experiment +hep-ex/0508019 Experiment +hep-ex/0508022 Experiment +hep-ex/0508027 Experiment +hep-ex/0508029 Experiment +hep-ex/0508036 Experiment +hep-ex/0508051 Experiment +hep-ex/0508052 Experiment +hep-ex/0508055 Experiment +hep-ex/0508056 Experiment +hep-ex/0509008 Experiment +hep-ex/0509013 Experiment +hep-ex/0509015 Experiment +hep-ex/0509027 Experiment +hep-ex/0509033 Experiment +hep-ex/0509045 Experiment +hep-ex/0510003 Experiment +hep-ex/0510008 Experiment +hep-ex/0510016 Experiment +hep-ex/0510039 Experiment +hep-ex/0510045 Experiment +hep-ex/0510048 Experiment +hep-ex/0510049 Experiment +hep-ex/0510063 Experiment +hep-ex/0510065 Experiment +hep-ex/0510077 Experiment +hep-ex/0511027 Experiment +hep-ex/0511031 Experiment +hep-ex/0511038 Experiment +hep-ex/0511049 Experiment +hep-ex/0511054 Experiment +hep-ex/0512009 Experiment +hep-ex/0512014 Experiment +hep-ex/0512020 Experiment +hep-ex/0512034 Experiment +hep-ex/0512036 Experiment +hep-ex/0512055 Experiment +hep-ex/0512059 Experiment +hep-ex/0512060 Experiment +hep-ex/0512062 Experiment +hep-ex/0512065 Experiment +hep-ex/0512068 Experiment +hep-ex/0512069 Experiment +hep-ex/0512070 Experiment +hep-ex/0512072 Experiment +hep-ex/0601003 Experiment +hep-ex/0601004 Experiment +hep-ex/0601022 Experiment +hep-ex/0601025 Experiment +hep-ex/0601026 Experiment +hep-ex/0601035 Experiment +hep-ex/0602014 Experiment +hep-ex/0602023 Experiment +hep-ex/0602026 Experiment +hep-ex/0602031 Experiment +hep-ex/0602035 Experiment +hep-ex/0602045 Experiment +hep-ex/0603002 Experiment +hep-ex/0603003 Experiment +hep-ex/0603006 Experiment +hep-ex/0603012 Experiment +hep-ex/0603014 Experiment +hep-ex/0603021 Experiment +hep-ex/0603022 Experiment +hep-ex/0603038 Experiment +hep-ex/0603039 Experiment +hep-ex/0603041 Experiment +hep-ex/0603043 Experiment +hep-ex/0603049 Experiment +hep-ex/0604003 Experiment +hep-ex/0604005 Experiment +hep-ex/0604022 Experiment +hep-ex/0604027 Experiment +hep-ex/0604032 Experiment +hep-ex/0604035 Experiment +hep-ex/0604042 Experiment +hep-ex/0604045 Experiment +hep-ex/0604048 Experiment +hep-ex/0604050 Experiment +hep-ex/0604053 Experiment +hep-ex/0604056 Experiment +hep-ex/0605009 Experiment +hep-ex/0605011 Experiment +hep-ex/0605015 Experiment +hep-ex/0605016 Experiment +hep-ex/0605021 Experiment +hep-ex/0605079 Experiment +hep-ex/0605097 Experiment +hep-ex/0605099 Experiment +hep-ex/0605101 Experiment +hep-ex/0605124 Experiment +hep-ex/0606003 Experiment +hep-ex/0606004 Experiment +hep-ex/0606017 Experiment +hep-ex/0606027 Experiment +hep-ex/0606049 Experiment +hep-ex/0607006 Experiment +hep-ex/0607010 Experiment +hep-ex/0607025 Experiment +hep-ex/0607027 Experiment +hep-ex/0607032 Experiment +hep-ex/0607088 Experiment +hep-ex/0608007 Experiment +hep-ex/0608014 Experiment +hep-ex/0608018 Experiment +hep-ex/0608028 Experiment +hep-ex/0608032 Experiment +hep-ex/0608042 Experiment +hep-ex/0608048 Experiment +hep-ex/0608053 Experiment +hep-ex/0608057 Experiment +hep-ex/0609006 Experiment +hep-ex/0609007 Experiment +hep-ex/0609009 Experiment +hep-ex/0609016 Experiment +hep-ex/0609040 Experiment +hep-ex/0609051 Experiment +hep-ex/0609054 Experiment +hep-ex/0609057 Experiment +hep-ex/0610021 Experiment +hep-ex/0610022 Experiment +hep-ex/0610045 Experiment +hep-ex/0610065 Experiment +hep-ex/0610068 Experiment +hep-ex/0610076 Experiment +hep-ex/0611023 Experiment +hep-ex/0611026 Experiment +hep-ex/0611029 Experiment +hep-ex/0611040 Experiment +hep-ex/0611052 Experiment +hep-ex/0612006 Experiment +hep-ex/0612011 Experiment +hep-ex/0612015 Experiment +hep-ex/0612032 Experiment +hep-ex/0612034 Experiment +hep-ex/0612044 Experiment +hep-ex/0612053 Experiment +hep-ex/0612060 Experiment +hep-ex/0612063 Experiment +hep-ex/0612066 Experiment +hep-ex/0701001 Experiment +hep-ex/0701008 Experiment +hep-ex/0701023 Experiment +hep-ex/0701029 Experiment +hep-ex/0701045 Experiment +hep-ex/0701053 Experiment +hep-ex/0702006 Experiment +hep-ex/0702024 Experiment +hep-ex/0702027 Experiment +hep-ex/0702037 Experiment +hep-ex/0702045 Experiment +hep-ex/0702051 Experiment +hep-ex/0703002 Experiment +hep-ex/0703004 Experiment +hep-ex/0703022 Experiment +hep-ex/0703023 Experiment +hep-ex/0703034 Experiment +hep-ex/9404001 Experiment +hep-ex/9405004 Experiment +hep-ex/9405011 Experiment +hep-ex/9406004 Experiment +hep-ex/9406005 Experiment +hep-ex/9408001 Experiment +hep-ex/9410009 Experiment +hep-ex/9412013 Experiment +hep-ex/9412017 Experiment +hep-ex/9501011 Experiment +hep-ex/9501012 Experiment +hep-ex/9502002 Experiment +hep-ex/9502003 Experiment +hep-ex/9502008 Experiment +hep-ex/9503001 Experiment +hep-ex/9503002 Experiment +hep-ex/9503007 Experiment +hep-ex/9503009 Experiment +hep-ex/9503014 Experiment +hep-ex/9503015 Experiment +hep-ex/9503016 Experiment +hep-ex/9504004 Experiment +hep-ex/9504008 Experiment +hep-ex/9505001 Experiment +hep-ex/9505003 Experiment +hep-ex/9505006 Experiment +hep-ex/9505010 Experiment +hep-ex/9505011 Experiment +hep-ex/9505013 Experiment +hep-ex/9505014 Experiment +hep-ex/9506001 Experiment +hep-ex/9506002 Experiment +hep-ex/9506004 Experiment +hep-ex/9506006 Experiment +hep-ex/9506009 Experiment +hep-ex/9506012 Experiment +hep-ex/9507001 Experiment +hep-ex/9507003 Experiment +hep-ex/9507004 Experiment +hep-ex/9507011 Experiment +hep-ex/9509014 Experiment +hep-ex/9510001 Experiment +hep-ex/9510005 Experiment +hep-ex/9510009 Experiment +hep-ex/9510012 Experiment +hep-ex/9511005 Experiment +hep-ex/9511010 Experiment +hep-ex/9511014 Experiment +hep-ex/9601009 Experiment +hep-ex/9601010 Experiment +hep-ex/9602010 Experiment +hep-ex/9604008 Experiment +hep-ex/9605009 Experiment +hep-ex/9605011 Experiment +hep-ex/9606014 Experiment +hep-ex/9607002 Experiment +hep-ex/9607008 Experiment +hep-ex/9607009 Experiment +hep-ex/9608018 Experiment +hep-ex/9609003 Experiment +hep-ex/9611013 Experiment +hep-ex/9611021 Experiment +hep-ex/9612015 Experiment +hep-ex/9701004 Experiment +hep-ex/9703010 Experiment +hep-ex/9703015 Experiment +hep-ex/9703016 Experiment +hep-ex/9704003 Experiment +hep-ex/9704004 Experiment +hep-ex/9704011 Experiment +hep-ex/9704013 Experiment +hep-ex/9705011 Experiment +hep-ex/9706006 Experiment +hep-ex/9706009 Experiment +hep-ex/9706013 Experiment +hep-ex/9706023 Experiment +hep-ex/9706025 Experiment +hep-ex/9707011 Experiment +hep-ex/9707025 Experiment +hep-ex/9708007 Experiment +hep-ex/9708010 Experiment +hep-ex/9708013 Experiment +hep-ex/9708015 Experiment +hep-ex/9708031 Experiment +hep-ex/9708038 Experiment +hep-ex/9708040 Experiment +hep-ex/9709016 Experiment +hep-ex/9709018 Experiment +hep-ex/9709021 Experiment +hep-ex/9710002 Experiment +hep-ex/9710009 Experiment +hep-ex/9710011 Experiment +hep-ex/9710012 Experiment +hep-ex/9710018 Experiment +hep-ex/9710026 Experiment +hep-ex/9710027 Experiment +hep-ex/9710031 Experiment +hep-ex/9711002 Experiment +hep-ex/9711018 Experiment +hep-ex/9711022 Experiment +hep-ex/9711024 Experiment +hep-ex/9712005 Experiment +hep-ex/9712006 Experiment +hep-ex/9712019 Experiment +hep-ex/9712020 Experiment +hep-ex/9802012 Experiment +hep-ex/9802017 Experiment +hep-ex/9803030 Experiment +hep-ex/9804001 Experiment +hep-ex/9804011 Experiment +hep-ex/9804013 Experiment +hep-ex/9805016 Experiment +hep-ex/9806014 Experiment +hep-ex/9806019 Experiment +hep-ex/9806023 Experiment +hep-ex/9807008 Experiment +hep-ex/9807010 Experiment +hep-ex/9807020 Experiment +hep-ex/9807024 Experiment +hep-ex/9808020 Experiment +hep-ex/9808028 Experiment +hep-ex/9809005 Experiment +hep-ex/9809023 Experiment +hep-ex/9810013 Experiment +hep-ex/9810015 Experiment +hep-ex/9810028 Experiment +hep-ex/9810046 Experiment +hep-ex/9810047 Experiment +hep-ex/9811015 Experiment +hep-ex/9811018 Experiment +hep-ex/9811021 Experiment +hep-ex/9811032 Experiment +hep-ex/9811033 Experiment +hep-ex/9812006 Experiment +hep-ex/9812009 Experiment +hep-ex/9812021 Experiment +hep-ex/9901002 Experiment +hep-ex/9902001 Experiment +hep-ex/9902007 Experiment +hep-ex/9902028 Experiment +hep-ex/9903012 Experiment +hep-ex/9903053 Experiment +hep-ex/9903056 Experiment +hep-ex/9904002 Experiment +hep-ex/9904005 Experiment +hep-ex/9904020 Experiment +hep-ex/9904024 Experiment +hep-ex/9904031 Experiment +hep-ex/9904032 Experiment +hep-ex/9905004 Experiment +hep-ex/9905005 Experiment +hep-ex/9905022 Experiment +hep-ex/9905032 Experiment +hep-ex/9905039 Experiment +hep-ex/9905043 Experiment +hep-ex/9905044 Experiment +hep-ex/9905045 Experiment +hep-ex/9905047 Experiment +hep-ex/9905048 Experiment +hep-ex/9905050 Experiment +hep-ex/9905060 Experiment +hep-ex/9906017 Experiment +hep-ex/9906025 Experiment +hep-ex/9907003 Experiment +hep-ex/9907009 Experiment +hep-ex/9907010 Experiment +hep-ex/9907015 Experiment +hep-ex/9907021 Experiment +hep-ex/9907023 Experiment +hep-ex/9907043 Experiment +hep-ex/9908010 Experiment +hep-ex/9908012 Experiment +hep-ex/9908020 Experiment +hep-ex/9908026 Experiment +hep-ex/9908032 Experiment +hep-ex/9908033 Experiment +hep-ex/9908035 Experiment +hep-ex/9908039 Experiment +hep-ex/9908040 Experiment +hep-ex/9909003 Experiment +hep-ex/9909004 Experiment +hep-ex/9909005 Experiment +hep-ex/9909006 Experiment +hep-ex/9909007 Experiment +hep-ex/9909008 Experiment +hep-ex/9909009 Experiment +hep-ex/9909010 Experiment +hep-ex/9909018 Experiment +hep-ex/9909019 Experiment +hep-ex/9909020 Experiment +hep-ex/9909032 Experiment +hep-ex/9909043 Experiment +hep-ex/9909044 Experiment +hep-ex/9909045 Experiment +hep-ex/9910006 Experiment +hep-ex/9910007 Experiment +hep-ex/9910008 Experiment +hep-ex/9910009 Experiment +hep-ex/9910016 Experiment +hep-ex/9910020 Experiment +hep-ex/9910021 Experiment +hep-ex/9910029 Experiment +hep-ex/9910030 Experiment +hep-ex/9910038 Experiment +hep-ex/9910043 Experiment +hep-ex/9910045 Experiment +hep-ex/9910049 Experiment +hep-ex/9910050 Experiment +hep-ex/9910053 Experiment +hep-ex/9910056 Experiment +hep-ex/9911003 Experiment +hep-ex/9911016 Experiment +hep-ex/9911022 Experiment +hep-ex/9911036 Experiment +hep-ex/9912018 Experiment +hep-ex/9912057 Experiment +hep-lat/0004010 Lattice +hep-lat/0005022 Lattice +hep-lat/0008011 Lattice +hep-lat/0010009 Lattice +hep-lat/0010078 Lattice +hep-lat/0010079 Lattice +hep-lat/0011005 Lattice +hep-lat/0011007 Lattice +hep-lat/0011013 Lattice +hep-lat/0011025 Lattice +hep-lat/0011032 Lattice +hep-lat/0102011 Lattice +hep-lat/0103015 Lattice +hep-lat/0105015 Lattice +hep-lat/0105020 Lattice +hep-lat/0105030 Lattice +hep-lat/0106010 Lattice +hep-lat/0106022 Lattice +hep-lat/0108013 Lattice +hep-lat/0110095 Lattice +hep-lat/0110126 Lattice +hep-lat/0110127 Lattice +hep-lat/0110128 Lattice +hep-lat/0110129 Lattice +hep-lat/0110151 Lattice +hep-lat/0110153 Lattice +hep-lat/0110169 Lattice +hep-lat/0112010 Lattice +hep-lat/0112020 Lattice +hep-lat/0112031 Lattice +hep-lat/0201021 Lattice +hep-lat/0206009 Lattice +hep-lat/0209026 Lattice +hep-lat/0209056 Lattice +hep-lat/0209073 Lattice +hep-lat/0211019 Lattice +hep-lat/0211021 Lattice +hep-lat/0211034 Lattice +hep-lat/0211040 Lattice +hep-lat/0302024 Lattice +hep-lat/0309060 Lattice +hep-lat/0309137 Lattice +hep-lat/0309141 Lattice +hep-lat/0309155 Lattice +hep-lat/0309185 Lattice +hep-lat/0312011 Lattice +hep-lat/0312014 Lattice +hep-lat/0402025 Lattice +hep-lat/0404014 Lattice +hep-lat/0404021 Lattice +hep-lat/0405022 Lattice +hep-lat/0406028 Lattice +hep-lat/0409043 Lattice +hep-lat/0409063 Lattice +hep-lat/0409117 Lattice +hep-lat/0410024 Lattice +hep-lat/0410030 Lattice +hep-lat/0503025 Lattice +hep-lat/0508031 Lattice +hep-lat/0509142 Lattice +hep-lat/0510010 Lattice +hep-lat/0609072 Lattice +hep-lat/0610020 Lattice +hep-lat/0610021 Lattice +hep-lat/0610037 Lattice +hep-lat/0610063 Lattice +hep-lat/0610075 Lattice +hep-lat/0702004 Lattice +hep-lat/9211001 Lattice +hep-lat/9211002 Lattice +hep-lat/9211007 Lattice +hep-lat/9211039 Lattice +hep-lat/9303009 Lattice +hep-lat/9307009 Lattice +hep-lat/9308019 Lattice +hep-lat/9308020 Lattice +hep-lat/9309002 Lattice +hep-lat/9312015 Lattice +hep-lat/9312020 Lattice +hep-lat/9312070 Lattice +hep-lat/9410012 Lattice +hep-lat/9410013 Lattice +hep-lat/9412050 Lattice +hep-lat/9412082 Lattice +hep-lat/9505020 Lattice +hep-lat/9510001 Lattice +hep-lat/9510033 Lattice +hep-lat/9601022 Lattice +hep-lat/9609028 Lattice +hep-lat/9703003 Lattice +hep-lat/9705035 Lattice +hep-lat/9709137 Lattice +hep-lat/9709139 Lattice +hep-lat/9710059 Lattice +hep-lat/9712020 Lattice +hep-lat/9802006 Lattice +hep-lat/9804028 Lattice +hep-lat/9808047 Lattice +hep-lat/9809066 Lattice +hep-lat/9809120 Lattice +hep-lat/9809146 Lattice +hep-lat/9809173 Lattice +hep-lat/9809177 Lattice +hep-lat/9810057 Lattice +hep-lat/9812017 Lattice +hep-lat/9901017 Lattice +hep-lat/9902018 Lattice +hep-lat/9904012 Lattice +hep-lat/9905005 Lattice +hep-lat/9909073 Lattice +hep-lat/9911039 Lattice +hep-ph/0006095 Phenomenology +hep-ph/0006342 Phenomenology +hep-ph/0007086 Phenomenology +hep-ph/0010337 Phenomenology +hep-ph/0011299 Phenomenology +hep-ph/0012301 Phenomenology +hep-ph/0109166 Phenomenology +hep-ph/0110021 Phenomenology +hep-ph/0111359 Phenomenology +hep-ph/0203232 Phenomenology +hep-ph/0204115 Phenomenology +hep-ph/0210186 Phenomenology +hep-ph/0307245 Phenomenology +hep-ph/0308168 Phenomenology +hep-ph/0404015 Phenomenology +hep-ph/0407255 Phenomenology +hep-ph/0410364 Phenomenology +hep-ph/0503274 Phenomenology +hep-ph/0603214 Phenomenology +hep-ph/9307374 Phenomenology +hep-ph/9308344 Phenomenology +hep-ph/9311237 Phenomenology +hep-ph/9403295 Phenomenology +hep-ph/9403325 Phenomenology +hep-ph/9403326 Phenomenology +hep-ph/9403327 Phenomenology +hep-ph/9403328 Phenomenology +hep-ph/9403329 Phenomenology +hep-ph/9403359 Phenomenology +hep-ph/9403379 Phenomenology +hep-ph/9403382 Phenomenology +hep-ph/9404211 Phenomenology +hep-ph/9404310 Phenomenology +hep-ph/9409240 Phenomenology +hep-ph/9412241 Phenomenology +hep-ph/9412270 Phenomenology +hep-ph/9501252 Phenomenology +hep-ph/9502370 Phenomenology +hep-ph/9503218 Phenomenology +hep-ph/9503268 Phenomenology +hep-ph/9509406 Phenomenology +hep-ph/9512438 Phenomenology +hep-ph/9601260 Phenomenology +hep-ph/9606479 Phenomenology +hep-ph/9609375 Phenomenology +hep-ph/9611464 Phenomenology +hep-ph/9706403 Phenomenology +hep-ph/9706424 Phenomenology +hep-ph/9711246 Phenomenology +hep-ph/9802357 Phenomenology +hep-ph/9906262 Phenomenology +hep-ph/9907482 Phenomenology +hep-ph/9909398 Phenomenology +hep-ph/9912362 Phenomenology +hep-th/0002045 Theory +hep-th/0005120 Theory +hep-th/0008206 Theory +hep-th/0009192 Theory +hep-th/0101037 Theory +hep-th/0104223 Theory +hep-th/0201096 Theory +hep-th/0204024 Theory +hep-th/0208105 Theory +hep-th/0212285 Theory +hep-th/0301194 Theory +hep-th/0301219 Theory +hep-th/0307032 Theory +hep-th/0311153 Theory +hep-th/0312040 Theory +hep-th/0404007 Theory +hep-th/0405153 Theory +hep-th/0407096 Theory +hep-th/0501199 Theory +hep-th/0505125 Theory +hep-th/0602259 Theory +hep-th/0604042 Theory +hep-th/0605269 Theory +hep-th/0610333 Theory +hep-th/0611060 Theory +hep-th/9109052 Theory +hep-th/9110046 Theory +hep-th/9203078 Theory +hep-th/9203080 Theory +hep-th/9203081 Theory +hep-th/9207042 Theory +hep-th/9210163 Theory +hep-th/9308109 Theory +hep-th/9411091 Theory +hep-th/9412190 Theory +hep-th/9412222 Theory +hep-th/9504025 Theory +hep-th/9508153 Theory +hep-th/9509021 Theory +hep-th/9510134 Theory +hep-th/9510151 Theory +hep-th/9510152 Theory +hep-th/9511173 Theory +hep-th/9511181 Theory +hep-th/9511182 Theory +hep-th/9602011 Theory +hep-th/9602072 Theory +hep-th/9606090 Theory +hep-th/9701024 Theory +hep-th/9704101 Theory +hep-th/9706189 Theory +hep-th/9708032 Theory +hep-th/9708143 Theory +hep-th/9708147 Theory +hep-th/9709104 Theory +hep-th/9802139 Theory +hep-th/9806038 Theory +hep-th/9806057 Theory +hep-th/9806058 Theory +hep-th/9809056 Theory +hep-th/9809064 Theory +hep-th/9810137 Theory +hep-th/9902211 Theory +hep-th/9908136 Theory +math-ph/0210002 +math-ph/0212005 +math-ph/0512016 +math-ph/0603012 +math-ph/0603050 +math-ph/0603053 +math/0002195 Complex Variables +math/0006076 Probability +math/0006118 Probability +math/0006119 Probability +math/0101268 Differential Geometry +math/0208181 Analysis of PDEs +math/0212019 Probability +math/0306326 Probability +math/0401267 Differential Geometry +math/0402446 General Topology +math/0506098 Dynamical Systems +math/0510544 Representation Theory +math/0512251 Differential Geometry +math/0601484 Complex Variables +math/0605175 Combinatorics +math/0610034 Statistics Theory +math/0611482 Complex Variables +math/9803021 Differential Geometry +math/9902072 Combinatorics +math/9906162 General Topology +math/9907079 Combinatorics +math/9912154 Algebraic Topology +nucl-ex/0003009 +nucl-ex/0005001 +nucl-ex/0007007 +nucl-ex/0103011 +nucl-ex/0104002 +nucl-ex/0106015 +nucl-ex/0107003 +nucl-ex/0108008 +nucl-ex/0108016 +nucl-ex/0110007 +nucl-ex/0110009 +nucl-ex/0112011 +nucl-ex/0202019 +nucl-ex/0203011 +nucl-ex/0204008 +nucl-ex/0204009 +nucl-ex/0205015 +nucl-ex/0206001 +nucl-ex/0206006 +nucl-ex/0206008 +nucl-ex/0206017 +nucl-ex/0207008 +nucl-ex/0211010 +nucl-ex/0211019 +nucl-ex/0211028 +nucl-ex/0301014 +nucl-ex/0305002 +nucl-ex/0306007 +nucl-ex/0306028 +nucl-ex/0308007 +nucl-ex/0308018 +nucl-ex/0309004 +nucl-ex/0309012 +nucl-ex/0311013 +nucl-ex/0311017 +nucl-ex/0312009 +nucl-ex/0312023 +nucl-ex/0401005 +nucl-ex/0401008 +nucl-ex/0402004 +nucl-ex/0403022 +nucl-ex/0403040 +nucl-ex/0404020 +nucl-ex/0406005 +nucl-ex/0406013 +nucl-ex/0406021 +nucl-ex/0407007 +nucl-ex/0407012 +nucl-ex/0408016 +nucl-ex/0409018 +nucl-ex/0409027 +nucl-ex/0409033 +nucl-ex/0409034 +nucl-ex/0411036 +nucl-ex/0411038 +nucl-ex/0501016 +nucl-ex/0502008 +nucl-ex/0502021 +nucl-ex/0504021 +nucl-ex/0504025 +nucl-ex/0504031 +nucl-ex/0506010 +nucl-ex/0506011 +nucl-ex/0506021 +nucl-ex/0507002 +nucl-ex/0507012 +nucl-ex/0507031 +nucl-ex/0508002 +nucl-ex/0510045 +nucl-ex/0511025 +nucl-ex/0511026 +nucl-ex/0511047 +nucl-ex/0512033 +nucl-ex/0601033 +nucl-ex/0602006 +nucl-ex/0606003 +nucl-ex/0607004 +nucl-ex/0607007 +nucl-ex/0607029 +nucl-ex/0609002 +nucl-ex/0609021 +nucl-ex/0609045 +nucl-ex/0610020 +nucl-ex/0612012 +nucl-ex/0612013 +nucl-ex/0701002 +nucl-ex/0701010 +nucl-ex/0701020 +nucl-ex/0701022 +nucl-ex/0703016 +nucl-ex/0703040 +nucl-ex/9610001 +nucl-ex/9610004 +nucl-ex/9707001 +nucl-ex/9708002 +nucl-ex/9808001 +nucl-ex/9810014 +nucl-ex/9901004 +nucl-ex/9905003 +nucl-ex/9907002 +nucl-ex/9910016 +nucl-th/0002053 +nucl-th/0004061 +nucl-th/0203009 +nucl-th/0204068 +nucl-th/0206049 +nucl-th/0307038 +nucl-th/0308032 +nucl-th/0401016 +nucl-th/0410026 +nucl-th/0410030 +nucl-th/0703023 +nucl-th/9609058 +nucl-th/9702014 +nucl-th/9710009 +nucl-th/9803002 +nucl-th/9807057 +nucl-th/9901077 +physics/0006069 Chemical Physics +physics/0008071 Accelerator Physics +physics/0008170 Accelerator Physics +physics/0104048 Atmospheric and Oceanic Physics +physics/0104053 Atomic Physics +physics/0104068 Atmospheric and Oceanic Physics +physics/0104076 Atmospheric and Oceanic Physics +physics/0110061 Optics +physics/0111151 Accelerator Physics +physics/0203018 Instrumentation and Detectors +physics/0210063 Biological Physics +physics/0306169 Instrumentation and Detectors +physics/0308005 Data Analysis, Statistics and Probability +physics/0308006 Data Analysis, Statistics and Probability +physics/0401058 Chemical Physics +physics/0401059 Chemical Physics +physics/0405014 Chemical Physics +physics/0408032 Instrumentation and Detectors +physics/0408137 Instrumentation and Detectors +physics/0408138 Atomic Physics +physics/0506202 Instrumentation and Detectors +physics/0507191 Instrumentation and Detectors +physics/0509106 Atomic Physics +physics/0510031 Instrumentation and Detectors +physics/0606138 General Physics +physics/0606194 Accelerator Physics +physics/0607154 Instrumentation and Detectors +physics/0702241 Biological Physics +physics/9805027 Atomic Physics +physics/9806006 Biological Physics +physics/9808018 Atomic Physics +physics/9812022 Atomic Physics +q-bio/0312008 Subcellular Processes +q-bio/0401003 Cell Behavior +q-bio/0401004 Subcellular Processes +q-bio/0601027 Biomolecules +quant-ph/0002033 +quant-ph/0004070 +quant-ph/0010034 +quant-ph/0110085 +quant-ph/0112118 +quant-ph/0201095 +quant-ph/0202088 +quant-ph/0205169 +quant-ph/0210141 +quant-ph/0302154 +quant-ph/0406167 +quant-ph/0511016 +quant-ph/0603140 +quant-ph/0605004 +quant-ph/0605229 +quant-ph/0612018 +quant-ph/9503009 +quant-ph/9503015 +quant-ph/9804074 +quant-ph/9812080 +quant-ph/9901006 +quant-ph/9901007 +quant-ph/9906055 +quant-ph/9908087 +solv-int/9506002 Exactly Solvable and Integrable Systems +solv-int/9512004 Exactly Solvable and Integrable Systems +supr-con/9505002 Superconductivity +0706.2840 Number Theory +0711.2798 Differential Geometry +0711.4050 History and Philosophy of Physics +0806.4707 +0810.0441 +0910.5936 Differential Geometry +0911.1605 Plasma Physics +0911.5146 Differential Geometry +1003.2806 Functional Analysis +1006.0280 Materials Science +1007.2983 Group Theory +1007.3958 Probability +1007.3992 +1009.1083 Differential Geometry +1009.2553 Functional Analysis +1009.4589 Medical Physics +1010.3251 Phenomenology +1010.4217 Superconductivity +1011.0538 Soft Condensed Matter +1011.2986 Theory +1011.3284 Representation Theory +1012.2326 Representation Theory +1012.4044 Experiment +1012.5352 Theory +1102.3722 Spectral Theory +1102.5220 Physics and Society +1103.1091 Data Structures and Algorithms +1103.2433 Theory +1103.2820 Theory +1103.3411 Mesoscale and Nanoscale Physics +1105.0130 High Energy Astrophysical Phenomena +1105.0131 High Energy Astrophysical Phenomena +1105.0534 Chemical Physics +1105.0718 Operator Algebras +1105.2367 +1105.3387 Quantum Gases +1106.2835 +1106.5179 +1108.2178 Experiment +1108.2934 Category Theory +1108.5975 Dynamical Systems +1109.0053 Theory +1109.0229 Superconductivity +1109.5356 Phenomenology +1110.1246 Chemical Physics +1110.1986 Methodology +1110.2354 Probability +1110.3234 +1111.0826 Mesoscale and Nanoscale Physics +1111.1627 Metric Geometry +1111.3310 Popular Physics +1111.3537 +1111.4970 Materials Science +1111.5079 Quantum Gases +1111.5176 Superconductivity +1111.5179 Chaotic Dynamics +1111.6625 Rings and Algebras +1112.0205 Mesoscale and Nanoscale Physics +1112.1174 Materials Science +1112.2463 Superconductivity +1112.2576 Soft Condensed Matter +1112.2623 +1112.3144 Mesoscale and Nanoscale Physics +1112.3220 Quantum Gases +1112.4095 Statistical Mechanics +1112.5382 +1201.0485 Phenomenology +1201.1259 Social and Information Networks +1201.2425 Strongly Correlated Electrons +1201.3833 Dynamical Systems +1201.3920 Cosmology and Nongalactic Astrophysics +1201.4166 Statistical Mechanics +1201.4811 Fluid Dynamics +1201.5879 +1201.5997 Mesoscale and Nanoscale Physics +1202.0841 +1202.1098 Discrete Mathematics +1202.2077 +1202.3367 Data Structures and Algorithms +1202.3847 Instrumentation and Detectors +1202.3995 Strongly Correlated Electrons +1202.4271 +1203.0335 Applications +1203.0552 Quantum Gases +1203.1197 +1203.1804 Information Theory +1203.2296 Programming Languages +1203.3020 Phenomenology +1203.3738 Soft Condensed Matter +1203.5219 Number Theory +1204.0725 Astrophysics of Galaxies +1204.1219 Statistical Mechanics +1204.1463 Solar and Stellar Astrophysics +1204.1879 +1204.3211 Group Theory +1204.3746 +1204.4788 Materials Science +1204.6108 Cosmology and Nongalactic Astrophysics +1205.0325 Networking and Internet Architecture +1205.0655 Theory +1205.1080 Classical Physics +1205.1098 Mathematical Software +1205.1262 Data Structures and Algorithms +1205.1305 Materials Science +1205.1334 Combinatorics +1205.1417 Statistics Theory +1205.1425 Cell Behavior +1205.1478 Discrete Mathematics +1205.1481 Statistics Theory +1205.1496 Machine Learning +1205.1504 Representation Theory +1205.1505 Information Retrieval +1205.1513 Solar and Stellar Astrophysics +1205.1518 Number Theory +1205.1527 Accelerator Physics +1205.1531 Accelerator Physics +1205.1533 Risk Management +1205.1538 +1205.1546 Materials Science +1205.1556 Computational Geometry +1205.1559 Exactly Solvable and Integrable Systems +1205.1561 Analysis of PDEs +1205.1562 Materials Science +1205.1571 Statistical Mechanics +1205.1581 Analysis of PDEs +1205.1585 Algebraic Geometry +1205.1587 Data Structures and Algorithms +1205.1589 Superconductivity +1205.1593 Optics +1205.1595 Statistics Theory +1205.1596 Group Theory +1205.1597 Algebraic Geometry +1205.1600 Networking and Internet Architecture +1205.1601 Dynamical Systems +1205.1602 Information Retrieval +1205.1603 Computation and Language +1205.1604 Networking and Internet Architecture +1205.1606 Algebraic Topology +1205.1608 Lattice +1205.1609 Databases +1205.1615 Cosmology and Nongalactic Astrophysics +1205.1617 Statistics Theory +1205.1618 Other Computer Science +1205.1619 +1205.1621 Robotics +1205.1622 Networking and Internet Architecture +1205.1624 Representation Theory +1205.1630 Information Theory +1205.1632 Other Computer Science +1205.1633 Networking and Internet Architecture +1205.1634 Statistical Mechanics +1205.1636 +1205.1638 Information Retrieval +1205.1639 Computation and Language +1205.1641 Multimedia +1205.1642 Other Computer Science +1205.1643 Other Computer Science +1205.1644 Computer Vision and Pattern Recognition +1205.1645 Artificial Intelligence +1205.1648 Computer Vision and Pattern Recognition +1205.1649 Other Computer Science +1205.1650 Information Theory +1205.1654 Statistics Theory +1205.1657 Networking and Internet Architecture +1205.1658 Optics +1205.1660 Strongly Correlated Electrons +1205.1662 Symplectic Geometry +1205.1663 Theory +1205.1664 Combinatorics +1205.1666 Analysis of PDEs +1205.1668 Networking and Internet Architecture +1205.1669 Cosmology and Nongalactic Astrophysics +1205.1670 Discrete Mathematics +1205.1671 Social and Information Networks +1205.1673 Networking and Internet Architecture +1205.1676 +1205.1679 Operator Algebras +1205.1682 Social and Information Networks +1205.1683 Phenomenology +1205.1684 Superconductivity +1205.1686 High Energy Astrophysical Phenomena +1205.1687 Operating Systems +1205.1691 High Energy Astrophysical Phenomena +1205.1692 Quantum Algebra +1205.1694 Quantum Algebra +1205.1696 Quantum Algebra +1205.1700 Materials Science +1205.1701 Networking and Internet Architecture +1205.1707 General Physics +1205.1708 Strongly Correlated Electrons +1205.1710 Statistical Finance +1205.1715 History and Philosophy of Physics +1205.1718 Plasma Physics +1205.1726 Commutative Algebra +1205.1727 Combinatorics +1205.1730 Symplectic Geometry +1205.1731 Information Theory +1205.1745 Systems and Control +1205.1746 Applications +1205.1748 High Energy Astrophysical Phenomena +1205.1752 Combinatorics +1205.1753 Algebraic Geometry +1205.1755 Analysis of PDEs +1205.1757 Experiment +1205.1768 Numerical Analysis +1205.1773 Algebraic Geometry +1205.1774 Numerical Analysis +1205.1777 Accelerator Physics +1205.1778 Combinatorics +1205.1779 Information Retrieval +1205.1786 Discrete Mathematics +1205.1788 +1205.1793 Medical Physics +1205.1794 Artificial Intelligence +1205.1795 Theory +1205.1796 Databases +cond-mat/0111287 Mesoscale and Nanoscale Physics +math-ph/0701023 +0705.3772 Combinatorics +0706.0113 Adaptation and Self-Organizing Systems +0706.1198 Quantitative Methods +0707.4160 Quantum Algebra +0711.0894 +0712.2924 +0712.4016 Differential Geometry +0801.3015 Complex Variables +0802.3595 Chaotic Dynamics +0802.3681 Theory +0803.1541 Complex Variables +0807.3185 Quantitative Methods +0810.1700 Classical Analysis and ODEs +0810.4933 Symplectic Geometry +0811.3083 Symplectic Geometry +0901.3675 +0902.0742 Category Theory +0903.3626 Exactly Solvable and Integrable Systems +1002.3109 Plasma Physics +1002.3506 High Energy Astrophysical Phenomena +1003.2905 Number Theory +1004.2959 Differential Geometry +1004.3188 Differential Geometry +1006.4701 Analysis of PDEs +1007.2824 Complex Variables +1009.0404 Differential Geometry +1010.2346 Optics +1102.2402 Biomolecules +1103.5970 Group Theory +1104.1228 Solar and Stellar Astrophysics +1105.1253 Algebraic Geometry +1105.1323 High Energy Astrophysical Phenomena +1105.4003 Geometric Topology +1106.2326 +1106.3411 Plasma Physics +1107.1308 Plasma Physics +1107.3770 High Energy Astrophysical Phenomena +1108.0203 Cosmology and Nongalactic Astrophysics +1108.5036 +1109.1997 Plasma Physics +1109.2443 Differential Geometry +1109.3600 Plasma Physics +1109.3764 General Physics +1109.4480 Numerical Analysis +1109.5029 Plasma Physics +1110.1290 Geometric Topology +1112.0069 Theory +1112.1776 +1112.2373 General Topology +1112.4013 Materials Science +1112.4722 Learning +1203.1166 High Energy Astrophysical Phenomena +1203.1341 Phenomenology +1203.3142 Differential Geometry +1203.6385 Mesoscale and Nanoscale Physics +1204.0113 Strongly Correlated Electrons +1204.3283 Computer Science and Game Theory +1204.4742 Theory +1204.5149 Theory +1204.5554 Rings and Algebras +1204.5645 Instrumentation and Detectors +1204.6366 +1205.0222 +1205.0381 Quantitative Methods +1205.0654 Numerical Analysis +1205.2223 Analysis of PDEs +1205.3070 Cosmology and Nongalactic Astrophysics +1205.4512 Disordered Systems and Neural Networks +1205.5549 Theory +1205.6767 Mesoscale and Nanoscale Physics +1206.0575 Strongly Correlated Electrons +1206.0584 Plasma Physics +1206.2612 Representation Theory +1206.3829 Superconductivity +1207.1297 +1207.3044 Statistical Mechanics +1207.3090 Solar and Stellar Astrophysics +1207.3954 Phenomenology +1207.4889 Superconductivity +1207.5056 +1207.6032 Solar and Stellar Astrophysics +1207.6790 Statistical Mechanics +1207.7255 Logic in Computer Science +1208.2724 Data Structures and Algorithms +1208.4474 General Physics +1209.0989 Theory +1209.1215 Analysis of PDEs +1209.2863 Optics +1209.3421 Plasma Physics +1209.3719 Solar and Stellar Astrophysics +1209.3736 Cryptography and Security +1209.4010 Mesoscale and Nanoscale Physics +1209.5013 Adaptation and Self-Organizing Systems +1209.5589 High Energy Astrophysical Phenomena +1209.5831 Solar and Stellar Astrophysics +1209.6324 +1210.0451 Discrete Mathematics +1210.2683 +1210.2702 +1210.3422 Differential Geometry +1210.4210 Solar and Stellar Astrophysics +1210.4321 Computational Complexity +1210.4700 Information Theory +1210.4710 Combinatorics +1210.4837 Computer Science and Game Theory +1210.4838 Computer Science and Game Theory +1210.4839 Learning +1210.4840 Artificial Intelligence +1210.4841 Artificial Intelligence +1210.4842 Artificial Intelligence +1210.4843 Computer Science and Game Theory +1210.4844 Methodology +1210.4845 Artificial Intelligence +1210.4846 Learning +1210.4847 Computer Science and Game Theory +1210.4848 Computer Science and Game Theory +1210.4849 Multiagent Systems +1210.4850 Learning +1210.4851 Learning +1210.4852 Artificial Intelligence +1210.4854 Computation and Language +1210.4855 Learning +1210.4856 Learning +1210.4857 Artificial Intelligence +1210.4858 Computer Science and Game Theory +1210.4859 Learning +1210.4860 Social and Information Networks +1210.4861 Artificial Intelligence +1210.4862 Learning +1210.4863 Computer Vision and Pattern Recognition +1210.4864 Social and Information Networks +1210.4865 Artificial Intelligence +1210.4866 Artificial Intelligence +1210.4867 Learning +1210.4868 Methodology +1210.4869 Learning +1210.4870 Artificial Intelligence +1210.4871 Learning +1210.4872 Learning +1210.4873 Computer Science and Game Theory +1210.4874 Artificial Intelligence +1210.4875 Artificial Intelligence +1210.4876 Learning +1210.4877 Computer Science and Game Theory +1210.4878 Artificial Intelligence +1210.4879 Methodology +1210.4880 Artificial Intelligence +1210.4881 Learning +1210.4882 Artificial Intelligence +1210.4883 Learning +1210.4884 Learning +1210.4885 Artificial Intelligence +1210.4886 Computer Science and Game Theory +1210.4887 Learning +1210.4888 Learning +1210.4889 Learning +1210.4890 Artificial Intelligence +1210.4891 Databases +1210.4892 Learning +1210.4893 Learning +1210.4894 Artificial Intelligence +1210.4895 Computer Science and Game Theory +1210.4896 Learning +1210.4897 Artificial Intelligence +1210.4898 Learning +1210.4899 Learning +1210.4900 Artificial Intelligence +1210.4901 Portfolio Management +1210.4902 Data Structures and Algorithms +1210.4903 Methodology +1210.4904 Computational Engineering, Finance, and Science +1210.4905 Machine Learning +1210.4906 Artificial Intelligence +1210.4907 Artificial Intelligence +1210.4908 Applications +1210.4909 Learning +1210.4910 Artificial Intelligence +1210.4911 Artificial Intelligence +1210.4912 Artificial Intelligence +1210.4913 Artificial Intelligence +1210.4914 Learning +1210.4915 Computer Science and Game Theory +1210.4916 Artificial Intelligence +1210.4917 Learning +1210.4918 Learning +1210.4919 Learning +1210.4920 Learning +1210.4923 Strongly Correlated Electrons +1210.4938 Genomics +1210.4944 Plasma Physics +1210.4948 Populations and Evolution +1210.4952 Optics +1210.4953 +1210.4955 Atomic Physics +1210.4958 Geophysics +1210.4959 Combinatorics +1210.4962 Cryptography and Security +1210.4965 Group Theory +1210.4966 Instrumentation and Methods for Astrophysics +1210.4967 Instrumentation and Methods for Astrophysics +1210.4968 Instrumentation and Methods for Astrophysics +1210.4969 Instrumentation and Methods for Astrophysics +1210.4970 Instrumentation and Methods for Astrophysics +1210.4971 Instrumentation and Methods for Astrophysics +1210.4972 Instrumentation and Methods for Astrophysics +1210.4974 Cosmology and Nongalactic Astrophysics +1210.4977 Materials Science +1210.4980 Logic in Computer Science +1210.4981 Software Engineering +1210.4985 Lattice +1210.4986 General Topology +1210.4991 Number Theory +1210.4994 +1210.4998 Algebraic Geometry +1210.4999 Materials Science +1210.5001 Number Theory +1210.5002 Physics Education +1210.5004 +1210.5009 Solar and Stellar Astrophysics +1210.5015 Differential Geometry +1210.5019 Superconductivity +1210.5020 Medical Physics +1210.5023 Solar and Stellar Astrophysics +1210.5031 Information Theory +1210.5032 Probability +1210.5037 Symplectic Geometry +1210.5038 Exactly Solvable and Integrable Systems +1210.5039 Superconductivity +1210.5042 Spectral Theory +1210.5043 Combinatorics +1210.5044 Differential Geometry +1210.5046 Risk Management +1210.5047 Materials Science +1210.5051 Phenomenology +1210.5058 +1210.5062 Analysis of PDEs +1210.5063 Analysis of PDEs +1210.5064 Solar and Stellar Astrophysics +1210.5067 History and Overview +1210.5069 Solar and Stellar Astrophysics +1210.5071 Statistical Mechanics +1210.5073 Methodology +1210.5075 Solar and Stellar Astrophysics +1210.5079 Atomic Physics +1210.5083 Computational Complexity +1210.5084 Analysis of PDEs +1210.5088 Numerical Analysis +1210.5090 Probability +1210.5095 Applications +1210.5096 Materials Science +1210.5097 Metric Geometry +1210.5098 Analysis of PDEs +1210.5108 Statistical Mechanics +1210.5109 Classical Physics +1210.5112 Differential Geometry +1210.5118 Data Structures and Algorithms +1210.5122 Instrumentation and Methods for Astrophysics +1210.5124 Cosmology and Nongalactic Astrophysics +1210.5128 Distributed, Parallel, and Cluster Computing +1210.5133 Metric Geometry +1210.5135 Learning +1210.5137 Strongly Correlated Electrons +1210.5138 Optics +1210.5141 Phenomenology +1210.5143 Analysis of PDEs +1210.5146 Complex Variables +1210.5152 Number Theory +1210.5156 Networking and Internet Architecture +1210.5161 Social and Information Networks +1210.5164 Analysis of PDEs +1210.5165 Statistics Theory +1210.5167 Social and Information Networks +1210.5171 Social and Information Networks +1210.5176 Combinatorics +1210.5178 Algebraic Geometry +1210.5180 Social and Information Networks +1210.5182 +1210.5184 Social and Information Networks +1210.5194 Fluid Dynamics +1210.5196 Machine Learning +1210.5198 Information Theory +1210.5204 Optics +1210.5205 Portfolio Management +1210.5207 Materials Science +1210.5211 Plasma Physics +1210.5212 +1210.5216 Strongly Correlated Electrons +1210.5218 +1210.5219 Information Theory +1210.5222 Artificial Intelligence +1210.5225 Optimization and Control +1210.5227 Data Structures and Algorithms +1210.5229 Phenomenology +1210.5232 Algebraic Topology +1210.5234 Quantitative Methods +1210.5235 Statistics Theory +cond-mat/0106452 Mesoscale and Nanoscale Physics +cond-mat/0408190 Statistical Mechanics +cond-mat/0602470 Mesoscale and Nanoscale Physics +math/0409555 Symplectic Geometry +math/0502026 Symplectic Geometry +math/0608599 Complex Variables +math/0609359 Quantum Algebra +math/0610005 Symplectic Geometry +math/0612150 Complex Variables +math/0612151 Complex Variables +math/9903082 General Mathematics +0710.1857 Physics and Society +0801.3868 Superconductivity +0806.3238 Superconductivity +0809.5155 Superconductivity +0810.0880 Superconductivity +0811.2043 Superconductivity +0812.4740 Probability +0901.4607 Superconductivity +0904.4301 Superconductivity +0905.3509 Operator Algebras +0905.4067 Functional Analysis +0906.2109 +0906.2117 +0907.1501 Differential Geometry +0909.4059 Strongly Correlated Electrons +0909.4068 Mesoscale and Nanoscale Physics +0910.5773 Combinatorics +0911.0289 Materials Science +0911.2751 Functional Analysis +0911.2753 Operator Algebras +1002.0703 Quantum Algebra +1002.3111 Strongly Correlated Electrons +1006.1021 Operator Algebras +1006.1022 Functional Analysis +1006.1940 Functional Analysis +1006.1941 Operator Algebras +1006.2973 +1006.4770 Theory +1007.2514 Superconductivity +1007.2707 Optimization and Control +1009.0079 Functional Analysis +1009.0697 Strongly Correlated Electrons +1009.2062 Superconductivity +1009.2125 Quantum Gases +1009.5202 Number Theory +1010.4405 Theory +1011.2285 History and Philosophy of Physics +1011.2566 Materials Science +1011.5992 Geometric Topology +1011.6605 Operator Algebras +1011.6607 Functional Analysis +1012.2253 Theory +1012.4167 Quantum Gases +1101.0016 Mesoscale and Nanoscale Physics +1101.1053 +1101.4745 Theory +1102.5492 Functional Analysis +1103.1660 Quantum Algebra +1104.1019 Statistics Theory +1104.3200 +1104.4370 Data Structures and Algorithms +1105.0599 Other Condensed Matter +1105.0608 Data Structures and Algorithms +1105.1012 Materials Science +1105.1074 Distributed, Parallel, and Cluster Computing +1105.3937 Strongly Correlated Electrons +1105.5778 Classical Analysis and ODEs +1106.0016 Optimization and Control +1106.4033 +1106.4453 Theory +1107.0985 Superconductivity +1107.1648 Biomolecules +1107.2118 Phenomenology +1107.2975 Materials Science +1107.3132 Quantum Gases +1108.0297 Combinatorics +1108.1092 Mesoscale and Nanoscale Physics +1108.2115 Artificial Intelligence +1108.3752 Mesoscale and Nanoscale Physics +1108.4376 Cosmology and Nongalactic Astrophysics +1109.0394 +1109.0568 Quantum Gases +1109.4037 Quantum Gases +1109.5955 Strongly Correlated Electrons +1109.6320 Astrophysics of Galaxies +1109.6375 Strongly Correlated Electrons +1110.1293 +1110.2390 Optics +1110.3538 +1110.4391 Cosmology and Nongalactic Astrophysics +1110.5677 Materials Science +1110.5757 Fluid Dynamics +1110.6532 General Physics +1111.0742 Mesoscale and Nanoscale Physics +1111.0973 +1111.1515 Statistical Mechanics +1111.2006 Phenomenology +1111.2159 +1111.5782 Soft Condensed Matter +1111.6547 Phenomenology +1111.6565 Operator Algebras +1112.0424 Differential Geometry +1112.1100 Strongly Correlated Electrons +1112.2863 +1112.3803 Statistical Mechanics +1112.4000 Mesoscale and Nanoscale Physics +1201.0681 Theory +1201.1558 Superconductivity +1201.1587 Learning +1201.2846 Differential Geometry +1201.3556 +1202.3525 +1202.3609 Number Theory +1202.4706 Mesoscale and Nanoscale Physics +1202.5173 Mesoscale and Nanoscale Physics +1202.5978 Theory +1203.1472 +1203.1838 Chaotic Dynamics +1203.2311 Optics +1203.2751 Statistical Mechanics +1203.2853 Optics +1203.2862 Instrumentation and Methods for Astrophysics +1203.2888 Computational Complexity +1203.3136 Systems and Control +1203.3562 Cosmology and Nongalactic Astrophysics +1203.4267 Functional Analysis +1203.4572 Statistics Theory +1203.4577 Solar and Stellar Astrophysics +1203.4580 Information Theory +1203.4583 Information Theory +1203.4596 Probability +1203.4597 Learning +1203.4604 Differential Geometry +1203.4605 Computation and Language +1203.4607 Instrumentation and Detectors +1203.4614 Cryptography and Security +1203.4615 Theory +1203.4616 High Energy Astrophysical Phenomena +1203.4617 Numerical Analysis +1203.4619 Data Structures and Algorithms +1203.4624 History and Philosophy of Physics +1203.4633 Statistical Mechanics +1203.4638 +1203.4640 Optimization and Control +1203.4648 Statistical Mechanics +1203.4649 Cryptography and Security +1203.4651 Analysis of PDEs +1203.4653 Combinatorics +1203.4655 Symplectic Geometry +1203.4661 Applications +1203.4664 Methodology +1203.4669 +1203.4673 Probability +1203.4675 +1203.4676 Differential Geometry +1203.4680 Representation Theory +1203.4682 Differential Geometry +1203.4686 Algebraic Geometry +1203.4690 Methodology +1203.4691 Probability +1203.4694 Cryptography and Security +1203.4697 Cryptography and Security +1203.4698 Cryptography and Security +1203.4705 Combinatorics +1203.4707 Soft Condensed Matter +1203.4717 Numerical Analysis +1203.4721 Molecular Networks +1203.4724 Methodology +1203.4729 Combinatorics +1203.4731 Complex Variables +1203.4732 Databases +1203.4733 Biological Physics +1203.4736 Classical Analysis and ODEs +1203.4737 Methodology +1203.4743 Phenomenology +1203.4745 Digital Libraries +1203.4749 Exactly Solvable and Integrable Systems +1203.4752 Theory +1203.4756 Optics +1203.4757 Optics +1203.4759 Functional Analysis +1203.4761 Algebraic Geometry +1203.4766 Soft Condensed Matter +1203.4767 Differential Geometry +1203.4768 Atomic Physics +1203.4771 Neurons and Cognition +1203.4772 Rings and Algebras +1203.4780 Probability +1203.4783 Theory +1203.4786 Pricing of Securities +1203.4788 Learning +1203.4791 Number Theory +1203.4792 +1203.4793 Representation Theory +1203.4794 Differential Geometry +1203.4796 +1203.4800 Algebraic Geometry +1203.4805 Materials Science +1203.4810 Information Theory +cond-mat/0601450 Superconductivity +cond-mat/0607677 Strongly Correlated Electrons +cond-mat/0610134 Superconductivity +cond-mat/9603093 +math/0701488 Combinatorics +nucl-ex/0608031 +0710.0012 +0710.1822 Superconductivity +0712.4375 Theory +0802.2950 Physics Education +0808.1463 Representation Theory +0809.3188 Soft Condensed Matter +0810.1532 Representation Theory +0812.0233 Materials Science +0902.3029 Materials Science +0903.3820 Representation Theory +0904.0596 Mesoscale and Nanoscale Physics +0905.0071 K-Theory and Homology +0909.0768 Mesoscale and Nanoscale Physics +0910.3128 Number Theory +1002.1059 Methodology +1002.3947 Mesoscale and Nanoscale Physics +1007.4357 Quantum Algebra +1009.1075 Materials Science +1010.0314 Spectral Theory +1011.1157 Data Structures and Algorithms +1011.5919 +1101.4995 Cosmology and Nongalactic Astrophysics +1103.2421 Theory +1103.3325 Physics Education +1103.4380 Functional Analysis +1103.4706 Differential Geometry +1104.1746 Materials Science +1104.4987 Combinatorics +1105.1023 Combinatorics +1107.0740 +1107.4257 Numerical Analysis +1108.1726 Atmospheric and Oceanic Physics +1108.1750 Cosmology and Nongalactic Astrophysics +1108.2985 +1108.3896 +1109.1703 Cosmology and Nongalactic Astrophysics +1109.3528 Analysis of PDEs +1109.4983 Physics Education +1110.0978 Mesoscale and Nanoscale Physics +1110.1780 Mesoscale and Nanoscale Physics +1110.3288 +1110.6336 Strongly Correlated Electrons +1111.0434 Computational Complexity +1111.2169 Pricing of Securities +1111.3051 Algebraic Geometry +1112.0287 +1112.1306 Theory +1112.3292 Logic +1112.5830 +1201.1940 Cosmology and Nongalactic Astrophysics +1201.1985 Atomic Physics +1201.3555 Probability +1201.4267 Theory +1201.5089 +1202.0666 Optimization and Control +1202.1430 Materials Science +1202.1730 +1202.1982 +1202.4285 Number Theory +1202.4372 Computational Engineering, Finance, and Science +1202.5129 Exactly Solvable and Integrable Systems +1202.5511 Group Theory +1202.5842 Fluid Dynamics +1202.6332 +1203.1692 Numerical Analysis +1203.3179 General Physics +1203.4161 Algebraic Topology +1203.5160 Distributed, Parallel, and Cluster Computing +1203.6012 Phenomenology +1204.0490 Superconductivity +1204.3404 +1204.4732 Mesoscale and Nanoscale Physics +1205.1169 Mesoscale and Nanoscale Physics +1205.6648 Phenomenology +1206.2675 +1206.3445 Atomic Physics +1206.6443 Learning +1206.6464 Learning +1206.6475 Learning +1207.2391 Quantum Gases +1207.3157 Optics +1207.3231 Optimization and Control +1207.4403 Mesoscale and Nanoscale Physics +1207.6664 Functional Analysis +1207.6863 Quantum Algebra +1207.7332 Geometric Topology +1208.0943 Soft Condensed Matter +1208.1545 Statistical Mechanics +1208.1636 High Energy Astrophysical Phenomena +1208.3715 Cosmology and Nongalactic Astrophysics +1208.4439 Networking and Internet Architecture +1208.4911 +1208.6499 +1208.6530 Phenomenology +1209.0046 Number Theory +1209.0120 +1209.0190 Solar and Stellar Astrophysics +1209.0253 Methodology +1209.0317 Numerical Analysis +1209.0320 Systems and Control +1209.0341 Optimization and Control +1209.0444 Optimization and Control +1209.0463 Cosmology and Nongalactic Astrophysics +1209.0469 Algebraic Geometry +1209.0475 Algebraic Geometry +1209.0481 Fluid Dynamics +1209.0482 Instrumentation and Detectors +1209.0487 Numerical Analysis +1209.0488 Robotics +1209.0492 Algebraic Geometry +1209.0501 Functional Analysis +1209.0502 Algebraic Geometry +1209.0508 +1209.0509 +1209.0514 Populations and Evolution +1209.0517 Materials Science +1209.0518 Logic in Computer Science +1209.0521 Learning +1209.0522 +1209.0526 Algebraic Geometry +1209.0527 +1209.0537 Information Theory +1209.0538 +1209.0541 Mesoscale and Nanoscale Physics +1209.0544 Analysis of PDEs +1209.0547 Phenomenology +1209.0549 Computational Physics +1209.0550 Networking and Internet Architecture +1209.0551 Solar and Stellar Astrophysics +1209.0552 +1209.0554 Geophysics +1209.0555 Materials Science +1209.0562 Representation Theory +1209.0566 Instrumentation and Detectors +1209.0573 Number Theory +1209.0574 High Energy Astrophysical Phenomena +1209.0575 High Energy Astrophysical Phenomena +1209.0578 Human-Computer Interaction +1209.0580 Phenomenology +1209.0587 Group Theory +1209.0590 Experiment +1209.0592 General Physics +1209.0598 Data Structures and Algorithms +1209.0603 +1209.0606 Cosmology and Nongalactic Astrophysics +1209.0612 Representation Theory +1209.0614 Analysis of PDEs +1209.0616 Computational Engineering, Finance, and Science +1209.0617 Optimization and Control +1209.0619 Materials Science +1209.0621 Strongly Correlated Electrons +1209.0622 Systems and Control +1209.0623 Probability +1209.0624 Data Analysis, Statistics and Probability +1209.0626 Phenomenology +1209.0627 Solar and Stellar Astrophysics +1209.0630 Experiment +1209.0635 +1209.0646 Risk Management +1209.0651 Probability +1209.0661 Methodology +1209.0663 Computational Complexity +1209.0664 Functional Analysis +1209.0665 Analysis of PDEs +1209.0674 Quantitative Methods +1209.0676 Networking and Internet Architecture +1209.0679 Computational Geometry +1209.0684 Networking and Internet Architecture +1209.0686 Optimization and Control +1209.0687 Cryptography and Security +1209.0691 Representation Theory +1209.0692 Instrumentation and Methods for Astrophysics +1209.0693 Combinatorics +1209.0694 Functional Analysis +1209.0698 Experiment +1209.0700 Data Structures and Algorithms +1209.0715 Information Theory +1209.0723 Number Theory +1209.0724 Information Theory +1209.0726 Information Theory +1209.0730 Information Theory +1209.0732 Information Theory +1209.0733 Mesoscale and Nanoscale Physics +1209.0734 Information Theory +1209.0735 Mathematical Software +1209.0740 Information Theory +1209.0741 Information Theory +1209.0744 Information Theory +1209.0748 Computational Geometry +1209.0751 Numerical Analysis +1209.0754 Solar and Stellar Astrophysics +1209.0755 Phenomenology +1209.0756 Data Structures and Algorithms +cond-mat/0108020 Mesoscale and Nanoscale Physics +cond-mat/0506275 Mesoscale and Nanoscale Physics +math/0309016 Quantum Algebra +math/0502409 Representation Theory +physics/0207069 Physics Education +quant-ph/0202121 +0707.3195 Differential Geometry +0709.1529 Commutative Algebra +0710.2662 Differential Geometry +0711.0511 Differential Geometry +0711.2775 Representation Theory +0711.2779 +0803.0387 +0803.2697 +0805.2797 Computer Science and Game Theory +0809.0325 Functional Analysis +0811.3139 +0908.2075 Theory +0908.3581 Phenomenology +0910.3759 Algebraic Geometry +0911.1038 Combinatorics +0912.4699 Theory +0912.4883 Learning +1002.3670 Operator Algebras +1003.1570 Theory +1004.1024 Dynamical Systems +1004.1357 Algebraic Geometry +1004.2867 Accelerator Physics +1004.4229 Strongly Correlated Electrons +1005.5117 Geometric Topology +1006.2409 Theory +1007.0168 Mesoscale and Nanoscale Physics +1007.2240 Operator Algebras +1007.2800 General Physics +1007.4004 Number Theory +1008.0360 +1008.0363 +1008.5126 +1009.2095 Subcellular Processes +1009.2122 Quantum Gases +1009.5401 Risk Management +1010.0102 Phenomenology +1010.1229 Dynamical Systems +1010.1813 +1010.4139 Phenomenology +1011.0330 Artificial Intelligence +1011.0850 Disordered Systems and Neural Networks +1011.5016 Differential Geometry +1011.5530 Metric Geometry +1012.0053 +1012.2108 +1012.3533 General Physics +1012.5622 +1101.0670 Phenomenology +1102.0842 +1102.2389 +1102.4165 Algebraic Topology +1103.0698 Analysis of PDEs +1103.0936 Strongly Correlated Electrons +1103.1012 +1103.1122 +1103.2338 Numerical Analysis +1103.2817 Probability +1104.0966 Strongly Correlated Electrons +1104.1440 Space Physics +1104.3638 Dynamical Systems +1104.4166 Differential Geometry +1104.5589 Combinatorics +1105.1894 Information Theory +1105.2653 Phenomenology +1105.3047 Numerical Analysis +1105.4057 +1105.4847 Statistics Theory +1106.3679 Computer Science and Game Theory +1106.6038 Dynamical Systems +1106.6068 Biological Physics +1107.0096 Probability +1107.2283 Differential Geometry +1107.2577 Analysis of PDEs +1107.3130 Soft Condensed Matter +1108.0070 Phenomenology +1108.0283 Mesoscale and Nanoscale Physics +1108.0294 Artificial Intelligence +1108.0608 Numerical Analysis +1108.4460 Mesoscale and Nanoscale Physics +1108.4983 Data Structures and Algorithms +1108.5366 Soft Condensed Matter +1108.5983 +1109.2260 Analysis of PDEs +1109.2461 Phenomenology +1109.2716 Optics +1109.3420 +1109.4894 Chaotic Dynamics +1109.5650 Mesoscale and Nanoscale Physics +1109.6234 Cosmology and Nongalactic Astrophysics +1110.0571 Astrophysics of Galaxies +1110.0648 Strongly Correlated Electrons +1110.0743 Strongly Correlated Electrons +1110.1219 Combinatorics +1110.1400 Quantum Gases +1110.1759 Numerical Analysis +1110.2825 Physics and Society +1110.2834 Populations and Evolution +1110.5786 Complex Variables +1110.5870 Information Theory +1111.0687 +1111.1677 +1111.1757 Cosmology and Nongalactic Astrophysics +1111.2102 Information Theory +1111.3810 Cosmology and Nongalactic Astrophysics +1111.4446 +1111.5345 Theory +1111.5859 Phenomenology +1111.6601 Theory +1112.0235 Plasma Physics +1112.1352 Theory +1112.2338 Theory +1112.2759 Statistics Theory +1112.2770 Instrumentation and Methods for Astrophysics +1112.3183 Experiment +1112.3266 Computational Physics +1112.4501 Phenomenology +1112.4719 Phenomenology +1201.2526 Classical Analysis and ODEs +1201.3695 Statistical Mechanics +1201.5049 Plasma Physics +1201.5068 Theory +1201.5611 +1202.0778 Probability +1202.2388 Phenomenology +1202.2622 Information Retrieval +1202.3037 Biological Physics +1202.3185 Information Retrieval +1202.4268 +1202.5626 Group Theory +1202.5738 Algebraic Geometry +1202.5759 Algebraic Topology +1202.5787 Quantum Gases +1202.6144 Optimization and Control +1202.6601 Social and Information Networks +1202.6675 Lattice +1203.0161 Mesoscale and Nanoscale Physics +1203.0188 Algebraic Geometry +1203.0348 Mesoscale and Nanoscale Physics +1203.0881 +1203.0976 +1203.1355 Group Theory +1203.1416 Dynamical Systems +1203.1584 Combinatorics +1203.1715 Distributed, Parallel, and Cluster Computing +1203.1747 +1203.2102 Optimization and Control +1203.2128 +1203.2185 Solar and Stellar Astrophysics +1203.2191 Phenomenology +1203.2192 Combinatorics +1203.2193 +1203.2194 Optimization and Control +1203.2195 Networking and Internet Architecture +1203.2197 Lattice +1203.2198 +1203.2200 Social and Information Networks +1203.2205 Other Computer Science +1203.2207 Optimization and Control +1203.2213 Information Theory +1203.2214 Algebraic Geometry +1203.2216 Mesoscale and Nanoscale Physics +1203.2223 Materials Science +1203.2225 Differential Geometry +1203.2229 Chaotic Dynamics +1203.2231 Networking and Internet Architecture +1203.2232 Phenomenology +1203.2234 Networking and Internet Architecture +1203.2236 Formal Languages and Automata Theory +1203.2245 Information Theory +1203.2246 Algebraic Geometry +1203.2247 Other Computer Science +1203.2254 +1203.2258 Materials Science +1203.2260 Combinatorics +1203.2267 Solar and Stellar Astrophysics +1203.2272 Other Computer Science +1203.2275 Analysis of PDEs +1203.2276 Geometric Topology +1203.2277 Instrumentation and Detectors +1203.2278 Classical Analysis and ODEs +1203.2281 Classical Analysis and ODEs +1203.2283 Classical Analysis and ODEs +1203.2288 History and Overview +1203.2289 Other Computer Science +1203.2291 Classical Analysis and ODEs +1203.2292 History and Philosophy of Physics +1203.2294 General Physics +1203.2298 Information Theory +1203.2299 Computation and Language +1203.2302 Plasma Physics +1203.2305 Algebraic Geometry +1203.2310 Differential Geometry +1203.2320 Geometric Topology +1203.2322 Classical Analysis and ODEs +1203.2331 Spectral Theory +1203.2333 Other Condensed Matter +1203.2337 +1203.2339 Combinatorics +1203.2340 Networking and Internet Architecture +1203.2343 Methodology +1203.2344 Analysis of PDEs +1203.2345 Combinatorics +1203.2346 Combinatorics +1203.2350 Analysis of PDEs +1203.2351 Analysis of PDEs +1203.2352 Dynamical Systems +1203.2356 Algebraic Geometry +1203.2360 Optimization and Control +1203.2366 Distributed, Parallel, and Cluster Computing +1203.2369 Computational Finance +1203.2373 +1203.2374 Combinatorics +1203.2376 Methodology +1203.2377 Numerical Analysis +1203.2379 Functional Analysis +1203.2381 +1203.2383 Combinatorics +1203.2384 Information Theory +1203.2386 Computer Vision and Pattern Recognition +1203.2390 Numerical Analysis +1203.2394 Machine Learning +1203.2397 Strongly Correlated Electrons +1203.2399 Cryptography and Security +1203.2400 Cryptography and Security +1203.2401 Complex Variables +1203.2403 Methodology +1203.2404 Computer Vision and Pattern Recognition +1203.2408 Representation Theory +1203.2414 Data Structures and Algorithms +1203.2422 Group Theory +1203.2423 +1203.2424 Optics +1203.2425 Soft Condensed Matter +1203.2430 Populations and Evolution +1203.2432 Group Theory +1203.2433 Statistics Theory +1203.2435 Astrophysics of Galaxies +1203.2437 Combinatorics +1203.2441 Optics +1203.2446 Probability +1203.2448 Dynamical Systems +1203.2449 Group Theory +1203.2458 +1203.2464 Metric Geometry +1203.2465 Cosmology and Nongalactic Astrophysics +1203.2466 Dynamical Systems +1203.2470 Statistics Theory +1203.2471 +1203.2473 Combinatorics +1203.2474 Quantum Algebra +1203.2478 Algebraic Geometry +1203.2480 Rings and Algebras +1203.2481 Operator Algebras +1203.2485 Multimedia +1203.2490 Classical Physics +1203.2496 Statistics Theory +1203.2497 Operator Algebras +1203.2503 Populations and Evolution +1203.2506 Systems and Control +1203.2508 Systems and Control +1203.2509 Operator Algebras +1203.2511 Learning +1203.2512 Popular Physics +1203.2514 Computer Vision and Pattern Recognition +1203.2522 Statistical Mechanics +1203.2528 Computational Engineering, Finance, and Science +1203.2546 Solar and Stellar Astrophysics +1203.2556 Artificial Intelligence +1203.2559 General Mathematics +1203.2563 Systems and Control +1203.2566 Instrumentation and Detectors +1203.2567 Number Theory +1203.2569 Information Retrieval +1203.2570 Machine Learning +1203.2571 Differential Geometry +1203.2572 +1203.2576 Number Theory +1203.2577 Instrumentation and Detectors +1203.2582 Solar and Stellar Astrophysics +1203.2584 Functional Analysis +1203.2594 Operator Algebras +1203.2602 Probability +hep-ph/0108126 Phenomenology +hep-ph/0109042 Phenomenology +math/0612500 Group Theory +nlin/0602013 Chaotic Dynamics +q-bio/0403009 Populations and Evolution +0707.3151 Commutative Algebra +0809.4449 Geometric Topology +0901.0287 Molecular Networks +0905.0632 +0905.3859 +0909.2773 +0910.0844 Cosmology and Nongalactic Astrophysics +0911.1493 +1001.5094 Geometric Topology +1002.1994 Machine Learning +1003.0581 Phenomenology +1003.3146 Experiment +1003.5074 Representation Theory +1004.0628 +1004.1268 +1004.1836 Computational Complexity +1005.4159 Artificial Intelligence +1005.4998 Number Theory +1006.0155 Statistical Finance +1006.0825 Populations and Evolution +1006.5172 Combinatorics +1007.2815 +1009.2132 Complex Variables +1009.3957 Commutative Algebra +1010.2749 Cosmology and Nongalactic Astrophysics +1012.1237 Computational Complexity +1101.1792 Analysis of PDEs +1101.3045 Number Theory +1101.4378 Physics and Society +1103.4292 Algebraic Geometry +1103.4807 Combinatorics +1104.4634 Physics and Society +1105.1032 Materials Science +1105.1157 Populations and Evolution +1105.1852 Mesoscale and Nanoscale Physics +1105.2470 Computer Science and Game Theory +1105.4714 +1106.0146 Phenomenology +1106.1343 Operator Algebras +1106.2633 Materials Science +1107.0878 Physics and Society +1107.1180 Adaptation and Self-Organizing Systems +1107.5122 General Finance +1107.5336 Probability +1108.0295 Data Structures and Algorithms +1108.2088 Mesoscale and Nanoscale Physics +1108.4099 Probability +1108.5123 General Topology +1109.0119 Trading and Market Microstructure +1109.0343 Statistics Theory +1109.1410 +1109.2941 Mesoscale and Nanoscale Physics +1109.4853 Adaptation and Self-Organizing Systems +1109.5169 Phenomenology +1109.5302 Learning +1110.1737 Rings and Algebras +1110.1778 Geometric Topology +1110.2589 Mesoscale and Nanoscale Physics +1110.5006 Quantitative Methods +1110.6159 +1111.0586 Physics and Society +1111.0716 Materials Science +1111.2272 Quantum Gases +1111.6426 Superconductivity +1111.6655 Complex Variables +1111.6910 Differential Geometry +1112.0604 Superconductivity +1112.0873 Statistical Mechanics +1112.1559 Phenomenology +1112.1633 +1112.3038 Solar and Stellar Astrophysics +1112.3437 +1112.4042 Differential Geometry +1112.4986 Analysis of PDEs +1201.0549 +1201.1549 High Energy Astrophysical Phenomena +1201.2225 +1201.2900 Cell Behavior +1201.3660 +1201.4664 Experiment +1201.5252 Mesoscale and Nanoscale Physics +1201.5432 Classical Analysis and ODEs +1201.6372 Cosmology and Nongalactic Astrophysics +1202.0816 Superconductivity +1202.0872 Phenomenology +1202.2768 Statistical Mechanics +1202.3158 Strongly Correlated Electrons +1202.3300 Phenomenology +1202.4304 Computer Science and Game Theory +1202.5428 Space Physics +1202.5660 Superconductivity +1202.5801 Analysis of PDEs +1203.0589 +1203.2076 Materials Science +1203.2518 Statistics Theory +1203.2747 Materials Science +1203.3791 General Physics +1203.5285 Cosmology and Nongalactic Astrophysics +1203.5879 Materials Science +1203.5977 Number Theory +1203.6867 Metric Geometry +1204.2152 Superconductivity +1204.2279 +1204.2931 Probability +1204.3387 Dynamical Systems +1204.3678 Social and Information Networks +1204.4094 Fluid Dynamics +1204.4113 Cosmology and Nongalactic Astrophysics +1204.4141 Artificial Intelligence +1204.4188 Strongly Correlated Electrons +1204.4201 Solar and Stellar Astrophysics +1204.4215 Atomic Physics +1204.4221 +1204.4232 Functional Analysis +1204.4242 Group Theory +1204.4243 Machine Learning +1204.4245 Phenomenology +1204.4248 Computation +1204.4250 Combinatorics +1204.4251 Combinatorics +1204.4252 Combinatorics +1204.4257 Computer Vision and Pattern Recognition +1204.4262 Computer Science and Game Theory +1204.4264 Functional Analysis +1204.4268 Probability +1204.4271 Group Theory +1204.4273 Materials Science +1204.4277 Rings and Algebras +1204.4279 Group Theory +1204.4280 +1204.4282 Functional Analysis +1204.4284 Functional Analysis +1204.4285 Complex Variables +1204.4286 Computer Science and Game Theory +1204.4288 +1204.4292 Group Theory +1204.4294 Learning +1204.4299 +1204.4300 Networking and Internet Architecture +1204.4301 Networking and Internet Architecture +1204.4306 Earth and Planetary Astrophysics +1204.4307 Artificial Intelligence +1204.4309 Earth and Planetary Astrophysics +1204.4310 Algebraic Topology +1204.4311 Artificial Intelligence +1204.4316 +1204.4320 Solar and Stellar Astrophysics +1204.4329 Learning +1204.4331 Materials Science +1204.4332 Human-Computer Interaction +1204.4334 Solar and Stellar Astrophysics +1204.4335 Materials Science +1204.4342 Phenomenology +1204.4344 +1204.4346 Digital Libraries +1204.4347 Symbolic Computation +1204.4351 +1204.4357 Probability +1204.4364 Phenomenology +1204.4365 Logic +1204.4366 Computational Engineering, Finance, and Science +1204.4368 Computational Complexity +1204.4371 Materials Science +1204.4374 Computational Geometry +1204.4375 Strongly Correlated Electrons +1204.4376 Phenomenology +1204.4382 Materials Science +1204.4386 +1204.4397 Analysis of PDEs +1204.4403 +1204.4404 Operator Algebras +1204.4412 Statistical Mechanics +1204.4413 Populations and Evolution +1204.4418 Algebraic Geometry +1204.4428 Software Engineering +1204.4431 Data Structures and Algorithms +math-ph/0611083 +math/0512545 Spectral Theory +math/0606265 Representation Theory +quant-ph/9911042 +0705.1137 Materials Science +0803.2647 Dynamical Systems +0809.0401 Complex Variables +0809.3087 Complex Variables +0812.3101 Algebraic Geometry +0902.0760 Algebraic Geometry +0902.2538 Phenomenology +0903.1137 Artificial Intelligence +0903.1147 Computational Complexity +0904.0363 Combinatorics +0906.1071 Combinatorics +0907.0648 Classical Analysis and ODEs +0909.1927 Combinatorics +0909.2137 Strongly Correlated Electrons +0909.4441 Artificial Intelligence +0910.4926 +0911.1582 Artificial Intelligence +0911.2017 Medical Physics +0911.3708 Artificial Intelligence +1003.1037 +1003.4221 +1004.1382 Rings and Algebras +1004.5073 +1004.5327 Physics and Society +1005.1009 Computational Complexity +1005.3202 +1005.5268 Artificial Intelligence +1005.5293 Classical Analysis and ODEs +1006.3445 +1007.0602 Artificial Intelligence +1007.0776 Artificial Intelligence +1007.3037 Combinatorics +1007.5114 Artificial Intelligence +1008.0342 Instrumentation and Methods for Astrophysics +1008.0569 Phenomenology +1008.2759 Phenomenology +1010.0881 Dynamical Systems +1010.1484 Superconductivity +1010.1518 +1010.2373 Materials Science +1010.4022 +1010.4749 Strongly Correlated Electrons +1011.0011 Astrophysics of Galaxies +1011.5025 +1012.1844 Combinatorics +1012.5902 Cellular Automata and Lattice Gases +1101.0098 Cellular Automata and Lattice Gases +1101.0693 Combinatorics +1101.4495 Symplectic Geometry +1102.0301 Probability +1102.3136 Numerical Analysis +1104.2654 Phenomenology +1104.3531 Rings and Algebras +1105.5557 Information Theory +1106.0334 Atmospheric and Oceanic Physics +1106.2508 Applications +1106.3392 +1106.3424 Statistical Mechanics +1106.5316 Artificial Intelligence +1107.3445 +1107.5447 +1108.5012 Phenomenology +1108.5348 Number Theory +1109.0631 Cryptography and Security +1109.2398 Combinatorics +1109.2774 Strongly Correlated Electrons +1109.5431 Phenomenology +1109.6716 Lattice +1110.0584 Tissues and Organs +1110.2925 Strongly Correlated Electrons +1110.4888 Cosmology and Nongalactic Astrophysics +1111.0897 Data Structures and Algorithms +1111.1476 Materials Science +1111.3221 +1111.3879 Discrete Mathematics +1111.5045 Cosmology and Nongalactic Astrophysics +1112.0263 Geometric Topology +1112.2064 Cosmology and Nongalactic Astrophysics +1112.2451 Pattern Formation and Solitons +1112.2766 Atomic Physics +1112.3474 Commutative Algebra +1112.5018 Quantum Algebra +1112.5051 Probability +1201.1444 Cosmology and Nongalactic Astrophysics +1201.1951 Phenomenology +1201.2018 Instrumentation and Detectors +1201.2713 Strongly Correlated Electrons +1201.3591 Atomic Physics +1201.6443 Theory +1202.0920 Discrete Mathematics +1202.2019 Phenomenology +1202.2094 Algebraic Geometry +1202.2477 Optics +1202.4525 Functional Analysis +1202.4558 Strongly Correlated Electrons +1202.5047 Strongly Correlated Electrons +1202.6052 Materials Science +1203.0028 Materials Science +1203.1600 Statistical Mechanics +1203.1886 Optics +1203.2210 Computer Vision and Pattern Recognition +1203.5151 Analysis of PDEs +1203.5183 +1203.6566 Information Theory +1203.6900 Physics and Society +1204.0970 Mesoscale and Nanoscale Physics +1204.1950 Optics +1204.2210 Optics +1204.2713 Artificial Intelligence +1204.3123 Cell Behavior +1204.3126 Cell Behavior +1204.3213 Statistics Theory +1204.3266 +1204.3348 Artificial Intelligence +1204.3498 Social and Information Networks +1204.3621 Atomic Physics +1204.3652 +1204.3653 +1204.3656 Geometric Topology +1204.3658 Information Theory +1204.3661 Information Theory +1204.3663 Social and Information Networks +1204.3665 Phenomenology +1204.3670 Biomolecules +1204.3673 Social and Information Networks +1204.3676 Analysis of PDEs +1204.3677 Databases +1204.3679 Pricing of Securities +1204.3680 Geometric Topology +1204.3682 Social and Information Networks +1204.3683 Neurons and Cognition +1204.3685 Other Computer Science +1204.3689 Software Engineering +1204.3691 Other Computer Science +1204.3693 Functional Analysis +1204.3696 +1204.3698 Social and Information Networks +1204.3702 Probability +1204.3705 Numerical Analysis +1204.3708 Materials Science +1204.3711 Information Theory +1204.3713 Soft Condensed Matter +1204.3716 Information Theory +1204.3718 Pattern Formation and Solitons +1204.3720 Mesoscale and Nanoscale Physics +1204.3724 Social and Information Networks +1204.3728 Strongly Correlated Electrons +1204.3731 Information Retrieval +1204.3736 +1204.3742 Information Theory +1204.3744 Mesoscale and Nanoscale Physics +1204.3751 Optics +1204.3752 Information Theory +1204.3761 +1204.3764 Mesoscale and Nanoscale Physics +1204.3766 +1204.3767 Solar and Stellar Astrophysics +1204.3769 Digital Libraries +1204.3771 Rings and Algebras +1204.3773 Symbolic Computation +1204.3777 +1204.3784 +1204.3786 Statistical Finance +1204.3791 Cosmology and Nongalactic Astrophysics +1204.3794 Analysis of PDEs +1204.3797 Phenomenology +1204.3804 Strongly Correlated Electrons +1204.3808 Astrophysics of Galaxies +1204.3809 Quantitative Methods +1204.3813 Solar and Stellar Astrophysics +1204.3815 Mesoscale and Nanoscale Physics +1204.3817 Mesoscale and Nanoscale Physics +1204.3822 Chaotic Dynamics +1204.3825 Solar and Stellar Astrophysics +1204.3827 Complex Variables +1204.3831 Cryptography and Security +1204.3833 Theory +1204.3836 Instrumentation and Methods for Astrophysics +1204.3837 Superconductivity +1204.3842 Combinatorics +1204.3844 Artificial Intelligence +1204.3850 Computational Geometry +1204.3855 Optimization and Control +1204.3857 High Energy Astrophysical Phenomena +1204.3860 Social and Information Networks +1204.3865 Symplectic Geometry +1204.3870 Cosmology and Nongalactic Astrophysics +1204.3874 Networking and Internet Architecture +1204.3876 Optimization and Control +1204.3878 Number Theory +1204.3881 Other Computer Science +1204.3884 Numerical Analysis +1204.3888 Physics and Society +1204.3889 Statistical Mechanics +cond-mat/0505380 Superconductivity +cond-mat/0703561 Strongly Correlated Electrons +math/0211318 Combinatorics +math/0303147 Combinatorics +math/0303149 Combinatorics +math/0403364 Combinatorics +math/0406019 Combinatorics +math/0408312 Combinatorics +math/0605678 Combinatorics +math/0606360 Classical Analysis and ODEs +math/0607416 Complex Variables +math/0610185 Combinatorics +quant-ph/0412039 +1002.3713 Theory +1112.4399 Probability +hep-ph/0612120 Phenomenology +1102.1906 Algebraic Geometry +1112.1715 Information Theory +1208.1192 Cosmology and Nongalactic Astrophysics +1208.1239 Functional Analysis +1208.1290 Networking and Internet Architecture +1208.1336 Cryptography and Security +1208.1781 Numerical Analysis +0806.4034 Logic in Computer Science +1003.2518 +1004.0796 +1012.4157 Phenomenology +1105.3274 Adaptation and Self-Organizing Systems +1112.0760 Phenomenology +0705.3278 +0807.2094 Strongly Correlated Electrons +0810.4174 Symplectic Geometry +0902.2530 Strongly Correlated Electrons +0906.4011 Analysis of PDEs +0907.4761 Combinatorics +0908.3307 General Mathematics +1002.1463 Analysis of PDEs +1002.3391 Combinatorics +1003.1544 Rings and Algebras +1003.4374 Geophysics +1005.0554 Populations and Evolution +1008.0967 +1008.2117 Strongly Correlated Electrons +1009.3004 Analysis of PDEs +1009.3526 Probability +1009.4502 Analysis of PDEs +1010.1372 Computational Finance +1010.2340 +1011.2500 Combinatorics +1101.3299 Complex Variables +1103.0029 Theory +1103.1604 Artificial Intelligence +1103.1821 Classical Analysis and ODEs +1104.4824 Machine Learning +1105.1151 Algebraic Geometry +1105.1442 Strongly Correlated Electrons +1105.1957 Mesoscale and Nanoscale Physics +1105.4274 Information Theory +1106.4883 Cosmology and Nongalactic Astrophysics +1107.2463 Cosmology and Nongalactic Astrophysics +1108.0460 Functional Analysis +1108.3711 Artificial Intelligence +1110.1032 Strongly Correlated Electrons +1110.1675 +1110.4855 Probability +1110.4944 Quantitative Methods +1110.5165 Mesoscale and Nanoscale Physics +1110.5878 Astrophysics of Galaxies +1111.0267 Strongly Correlated Electrons +1111.1387 Classical Analysis and ODEs +1111.1466 Analysis of PDEs +1112.3363 Strongly Correlated Electrons +1112.3493 Lattice +1112.4838 Phenomenology +1201.3032 Cosmology and Nongalactic Astrophysics +1201.4636 Quantum Gases +1201.5740 +1201.6016 Number Theory +1201.6186 Mesoscale and Nanoscale Physics +1201.6562 Soft Condensed Matter +1202.0077 Statistical Mechanics +1202.0222 Algebraic Geometry +1202.0228 Combinatorics +1202.0692 Phenomenology +1202.1410 Materials Science +1202.2851 Solar and Stellar Astrophysics +1202.3859 Theory +1202.4021 Quantum Gases +1202.4167 Phenomenology +1202.5699 +1202.6346 Lattice +1203.0752 Probability +1203.0753 Probability +1203.3066 Materials Science +1203.3266 Mesoscale and Nanoscale Physics +1203.3331 +1203.5875 +1203.6003 Statistical Mechanics +1204.0494 Combinatorics +1204.1918 Analysis of PDEs +1204.2388 +1204.3717 Digital Libraries +1204.4568 Statistical Mechanics +1204.5161 Mesoscale and Nanoscale Physics +1204.5623 Statistics Theory +1204.6597 Phenomenology +1204.6599 Phenomenology +1205.1521 Quantum Gases +1205.1799 Cosmology and Nongalactic Astrophysics +1205.2258 Statistical Mechanics +1205.2592 Mesoscale and Nanoscale Physics +1205.2822 Information Retrieval +1205.2972 Cosmology and Nongalactic Astrophysics +1205.3746 Plasma Physics +1205.4179 Soft Condensed Matter +1205.4403 +1205.4913 Mesoscale and Nanoscale Physics +1205.6165 General Topology +1205.6759 Strongly Correlated Electrons +1206.2196 Quantum Gases +1206.2747 +1206.2843 Geometric Topology +1206.3463 Symbolic Computation +1206.3716 Statistical Mechanics +1206.4576 Representation Theory +1206.5622 Quantum Gases +1206.5974 Phenomenology +1206.6181 Instrumentation and Methods for Astrophysics +1206.6593 Materials Science +1207.0276 Logic +1207.0567 Phenomenology +1207.1864 Statistical Mechanics +1207.3201 Numerical Analysis +1207.3668 Metric Geometry +1207.3826 Superconductivity +1207.4870 High Energy Astrophysical Phenomena +1207.5015 Algebraic Geometry +1207.5622 Instrumentation and Detectors +1207.5803 Solar and Stellar Astrophysics +1207.5804 Earth and Planetary Astrophysics +1207.5811 Number Theory +1207.5821 Accelerator Physics +1207.5826 Accelerator Physics +1207.5827 Sound +1207.5828 Superconductivity +1207.5836 Strongly Correlated Electrons +1207.5839 Distributed, Parallel, and Cluster Computing +1207.5841 Logic +1207.5844 Social and Information Networks +1207.5848 Quantitative Methods +1207.5850 Information Theory +1207.5856 Cryptography and Security +1207.5862 Commutative Algebra +1207.5866 +1207.5867 Algebraic Geometry +1207.5871 Information Theory +1207.5874 Analysis of PDEs +1207.5876 Representation Theory +1207.5878 +1207.5879 Artificial Intelligence +1207.5881 Spectral Theory +1207.5884 Computational Complexity +1207.5889 Group Theory +1207.5890 Dynamical Systems +1207.5895 Statistics Theory +1207.5896 Solar and Stellar Astrophysics +1207.5899 Statistics Theory +1207.5901 Probability +1207.5902 Statistics Theory +1207.5906 Materials Science +1207.5912 Phenomenology +1207.5917 Probability +1207.5918 Materials Science +1207.5920 Differential Geometry +1207.5924 Geophysics +1207.5925 Probability +1207.5929 Physics and Society +1207.5933 Neurons and Cognition +1207.5944 Representation Theory +1207.5949 Distributed, Parallel, and Cluster Computing +1207.5954 Solar and Stellar Astrophysics +1207.5956 Subcellular Processes +1207.5958 Classical Analysis and ODEs +1207.5960 Statistics Theory +1207.5963 Commutative Algebra +1207.5964 Differential Geometry +1207.5966 Solar and Stellar Astrophysics +1207.5967 Statistics Theory +1207.5968 +1207.5969 Differential Geometry +1207.5972 Solar and Stellar Astrophysics +1207.5980 Functional Analysis +1207.5985 Analysis of PDEs +1207.5990 Distributed, Parallel, and Cluster Computing +1207.5994 Differential Geometry +1207.5995 Physics Education +1207.6002 Data Analysis, Statistics and Probability +1207.6011 Distributed, Parallel, and Cluster Computing +1207.6013 Biomolecules +1207.6025 Cryptography and Security +1207.6027 General Mathematics +1207.6033 Information Retrieval +1207.6037 Information Retrieval +1207.6045 Computer Science and Game Theory +1207.6049 Pricing of Securities +1207.6050 +1207.6051 Systems and Control +1207.6052 Information Theory +1207.6064 Solar and Stellar Astrophysics +1207.6069 Instrumentation and Methods for Astrophysics +1207.6078 Probability +1207.6084 Information Theory +1207.6089 Materials Science +1207.6090 Quantitative Methods +1207.6096 Databases +1207.6098 Strongly Correlated Electrons +1207.6099 Number Theory +cond-mat/0701400 Strongly Correlated Electrons +math/0509610 Operator Algebras +physics/0702125 Atmospheric and Oceanic Physics +0704.0095 Group Theory +0706.1301 Algebraic Geometry +0706.1304 Algebraic Geometry +0710.2544 Theory +0802.2006 Materials Science +0807.0760 Differential Geometry +0807.1690 Theory +0809.2425 Algebraic Geometry +0901.2107 Algebraic Geometry +0906.5189 Representation Theory +0907.1657 +0907.3225 +0907.4334 +0907.4626 Representation Theory +0910.1636 Probability +1002.0137 Commutative Algebra +1002.4289 Probability +1005.2900 Phenomenology +1005.5430 Disordered Systems and Neural Networks +1006.5474 +1007.0849 Probability +1008.4526 Soft Condensed Matter +1011.1096 Phenomenology +1011.5476 Representation Theory +1012.5926 +1102.3554 Cosmology and Nongalactic Astrophysics +1102.5766 Mesoscale and Nanoscale Physics +1103.3917 Combinatorics +1103.5450 +1104.3336 Optics +1104.4941 Superconductivity +1104.5024 Disordered Systems and Neural Networks +1105.2219 Chaotic Dynamics +1106.0081 Astrophysics of Galaxies +1106.1597 +1106.1900 Instrumentation and Methods for Astrophysics +1106.2058 Probability +1106.4060 Theory +1106.4409 Complex Variables +1107.2663 Quantum Gases +1107.2779 Phenomenology +1107.4333 +1108.0954 Differential Geometry +1108.1779 Quantum Gases +1108.4341 Disordered Systems and Neural Networks +1109.1003 +1109.1112 Phenomenology +1109.1156 Mesoscale and Nanoscale Physics +1109.2705 Mesoscale and Nanoscale Physics +1109.4812 Theory +1109.5115 Phenomenology +1109.5314 High Energy Astrophysical Phenomena +1109.5315 High Energy Astrophysical Phenomena +1109.6043 Mesoscale and Nanoscale Physics +1109.6468 High Energy Astrophysical Phenomena +1110.0138 Superconductivity +1110.1523 Probability +1110.1646 Quantum Gases +1110.1745 Combinatorics +1110.1870 +1110.2776 Formal Languages and Automata Theory +1110.3548 Functional Analysis +1110.4193 Numerical Analysis +1110.5584 +1110.5705 Quantum Gases +1110.6671 Data Analysis, Statistics and Probability +1110.6718 +1111.0997 Superconductivity +1111.1003 Superconductivity +1111.1700 Optics +1111.2173 Theory +1111.2239 Representation Theory +1111.2287 Theory +1111.4254 Cosmology and Nongalactic Astrophysics +1111.5895 Phenomenology +1111.6047 +1111.6865 Instrumentation and Methods for Astrophysics +1111.7114 Quantum Gases +1112.0016 Astrophysics of Galaxies +1112.1661 Software Engineering +1112.1662 Software Engineering +1112.1967 Theory +1201.3305 Strongly Correlated Electrons +1201.5389 Phenomenology +1202.2523 Artificial Intelligence +1202.2526 Statistical Mechanics +1202.4048 Superconductivity +1202.4065 +1202.5002 Complex Variables +1202.6068 Analysis of PDEs +1203.0537 Phenomenology +1203.0748 +1203.2524 Numerical Analysis +1203.4071 +1203.4104 +1203.4639 Superconductivity +1203.5304 Combinatorics +1203.5402 Other Statistics +1203.6194 Superconductivity +1203.6391 Functional Analysis +1204.1798 +1204.1967 Software Engineering +1204.1983 Biological Physics +1204.1984 Phenomenology +1204.1985 Geometric Topology +1204.1989 Combinatorics +1204.1991 Algebraic Geometry +1204.1992 Statistics Theory +1204.1993 Mesoscale and Nanoscale Physics +1204.1995 Molecular Networks +1204.2012 Numerical Analysis +1204.2018 Artificial Intelligence +1204.2024 Representation Theory +1204.2025 Geometric Topology +1204.2030 Mesoscale and Nanoscale Physics +1204.2031 Optimization and Control +1204.2034 Computational Geometry +1204.2037 Soft Condensed Matter +1204.2039 Strongly Correlated Electrons +1204.2040 Computational Complexity +1204.2042 Rings and Algebras +1204.2044 Functional Analysis +1204.2045 High Energy Astrophysical Phenomena +1204.2046 Functional Analysis +1204.2047 Functional Analysis +1204.2049 Machine Learning +1204.2051 Rings and Algebras +1204.2055 Soft Condensed Matter +1204.2058 Information Retrieval +1204.2061 Information Retrieval +1204.2062 Computer Vision and Pattern Recognition +1204.2063 Optics +1204.2067 Methodology +1204.2068 Chemical Physics +1204.2071 History and Overview +1204.2073 Computer Vision and Pattern Recognition +1204.2077 +1204.2079 Information Retrieval +1204.2081 Probability +1204.2083 Information Theory +1204.2084 Chemical Physics +1204.2085 Biological Physics +1204.2088 Soft Condensed Matter +1204.2092 +1204.2095 Representation Theory +1204.2096 Mesoscale and Nanoscale Physics +1204.2097 Computers and Society +1204.2101 Computers and Society +1204.2102 Data Analysis, Statistics and Probability +1204.2104 Differential Geometry +1204.2106 Functional Analysis +1204.2107 +1204.2109 Statistics Theory +1204.2111 Phenomenology +1204.2114 Computer Vision and Pattern Recognition +1204.2120 Astrophysics of Galaxies +1204.2128 +1204.2131 Data Structures and Algorithms +1204.2134 Computer Vision and Pattern Recognition +1204.2138 Human-Computer Interaction +1204.2139 Neural and Evolutionary Computing +1204.2144 Instrumentation and Detectors +1204.2146 Cosmology and Nongalactic Astrophysics +1204.2147 Logic +1204.2148 +1204.2156 Theory +1204.2159 General Physics +1204.2160 +1204.2162 Mesoscale and Nanoscale Physics +1204.2174 Classical Analysis and ODEs +1204.2177 +1204.2180 Combinatorics +1204.2184 General Physics +1204.2187 Atomic Physics +1204.2190 Probability +1204.2199 High Energy Astrophysical Phenomena +1204.2201 Computational Complexity +1204.2202 Computational Complexity +1204.2205 Instrumentation and Methods for Astrophysics +1204.2208 Functional Analysis +1204.2218 Information Theory +1204.2219 General Mathematics +1204.2223 Statistical Mechanics +1204.2225 Other Computer Science +1204.2228 Rings and Algebras +1204.2230 Differential Geometry +1204.2231 Digital Libraries +1204.2235 Robotics +1204.2240 Physics and Society +1204.2242 Networking and Internet Architecture +1204.2244 Geophysics +1204.2245 Information Retrieval +1204.2248 Artificial Intelligence +1204.2250 Networking and Internet Architecture +1204.2251 Pricing of Securities +1204.2252 Systems and Control +1204.2255 Molecular Networks +1204.2256 Materials Science +1204.2260 Computational Geometry +cond-mat/0511064 Strongly Correlated Electrons +math-ph/9901002 +math/0107185 Algebraic Geometry +math/0305276 Quantum Algebra +math/0506608 Algebraic Geometry +math/0507029 Algebraic Geometry +math/0601453 Algebraic Geometry +math/0607128 Algebraic Geometry +math/0607752 Algebraic Geometry +1103.5109 Phenomenology +1105.0242 +1107.0837 +1111.0092 +1112.6286 Computation and Language +0710.3582 +0712.2311 Differential Geometry +0803.0633 Differential Geometry +0803.0716 Differential Geometry +0806.3827 Data Structures and Algorithms +0810.1238 Differential Geometry +0811.3245 Combinatorics +0904.2475 Differential Geometry +0905.2162 Differential Geometry +0905.3788 General Mathematics +0912.1885 Portfolio Management +0912.1934 Computer Science and Game Theory +1002.2815 Combinatorics +1004.3817 Combinatorics +1005.4049 Classical Analysis and ODEs +1008.3882 Materials Science +1011.1720 Algebraic Geometry +1012.4420 Rings and Algebras +1103.1723 Algebraic Geometry +1104.0978 Materials Science +1105.0745 Optimization and Control +1105.1175 Strongly Correlated Electrons +1105.4025 Theory +1106.0938 Probability +1106.2660 +1107.0524 Numerical Analysis +1107.2011 Probability +1107.4945 Algebraic Geometry +1108.4940 +1109.1379 Mesoscale and Nanoscale Physics +1109.2608 Theory +1109.3224 Theory +1109.3289 Dynamical Systems +1110.3653 Commutative Algebra +1110.5545 Superconductivity +1111.1569 Data Analysis, Statistics and Probability +1111.2064 Combinatorics +1111.5027 Cosmology and Nongalactic Astrophysics +1112.0945 Information Theory +1112.2615 Methodology +1112.2740 Cosmology and Nongalactic Astrophysics +1112.6200 Mesoscale and Nanoscale Physics +1201.3394 Group Theory +1201.4643 Experiment +1201.6174 +1201.6342 Theory +1202.0793 Dynamical Systems +1202.4314 +1202.4542 Differential Geometry +1202.5757 Theory +1203.1914 Strongly Correlated Electrons +1203.3794 Strongly Correlated Electrons +1203.5697 Theory +1204.2753 Medical Physics +1204.2909 Probability +1204.3296 +1204.3741 +1204.6395 +1205.1184 Number Theory +1205.1314 Chemical Physics +1205.4994 Combinatorics +1205.6637 +1205.6955 Mesoscale and Nanoscale Physics +1206.0023 Strongly Correlated Electrons +1206.0401 Superconductivity +1206.0586 Optics +1206.1950 Numerical Analysis +1206.2589 +1206.4787 Disordered Systems and Neural Networks +1206.6424 Artificial Intelligence +1207.0297 Information Theory +1207.0367 Statistical Mechanics +1207.0400 Phenomenology +1207.0812 Phenomenology +1207.1367 Artificial Intelligence +1207.2100 Mesoscale and Nanoscale Physics +1207.2400 Mesoscale and Nanoscale Physics +1207.3207 Mesoscale and Nanoscale Physics +1207.6169 Other Condensed Matter +1208.0028 Statistics Theory +1208.0490 Theory +1208.2126 Symplectic Geometry +1208.2364 Theory +1208.2575 +1208.2853 Networking and Internet Architecture +1208.3879 Differential Geometry +1208.4121 Atomic Physics +1208.6131 Strongly Correlated Electrons +1209.0486 Strongly Correlated Electrons +1209.1198 Information Theory +1209.1911 Information Theory +1209.3163 Probability +1209.3173 High Energy Astrophysical Phenomena +1209.3739 Analysis of PDEs +1209.4281 +1209.4414 Information Theory +1209.4431 Analysis of PDEs +1209.5883 Theory +1210.0547 Earth and Planetary Astrophysics +1210.3423 Functional Analysis +1210.3475 Probability +1210.5799 +1210.5954 Lattice +1210.6357 Lattice +1210.6433 Phenomenology +1210.7124 Statistical Mechanics +1211.0782 Mesoscale and Nanoscale Physics +1211.1042 Astrophysics of Galaxies +1211.3123 Strongly Correlated Electrons +1211.3213 Chemical Physics +1211.3381 +1211.3595 Solar and Stellar Astrophysics +1211.4542 Theory +1211.4595 Mesoscale and Nanoscale Physics +1211.6544 Theory +1211.6946 Experiment +1211.6999 Lattice +1212.1295 +1212.2002 Learning +1212.2028 Combinatorics +1212.2306 Combinatorics +1212.2458 Artificial Intelligence +1212.2794 Phenomenology +1212.2884 +1212.3153 Information Theory +1212.3685 Mesoscale and Nanoscale Physics +1212.4011 Classical Analysis and ODEs +1212.4230 Lattice +1212.4324 +1212.4400 Medical Physics +1212.4458 Instrumentation and Methods for Astrophysics +1212.4507 Machine Learning +1212.4565 Social and Information Networks +1212.4590 Analysis of PDEs +1212.4596 Differential Geometry +1212.4612 Strongly Correlated Electrons +1212.4734 Soft Condensed Matter +1212.4832 Cosmology and Nongalactic Astrophysics +1212.4843 Instrumentation and Methods for Astrophysics +1212.4846 Performance +1212.4847 +1212.4850 Instrumentation and Methods for Astrophysics +1212.4852 +1212.4861 Solar and Stellar Astrophysics +1212.4862 Algebraic Geometry +1212.4867 Instrumentation and Methods for Astrophysics +1212.4868 Soft Condensed Matter +1212.4870 Solar and Stellar Astrophysics +1212.4871 Machine Learning +1212.4877 General Physics +1212.4880 Statistical Mechanics +1212.4889 Lattice +1212.4892 Combinatorics +1212.4895 Combinatorics +1212.4899 Information Theory +1212.4901 Classical Physics +1212.4903 Mesoscale and Nanoscale Physics +1212.4904 Mesoscale and Nanoscale Physics +1212.4906 Information Theory +1212.4909 General Physics +1212.4911 Statistics Theory +1212.4912 Algebraic Geometry +1212.4914 Physics and Society +1212.4918 Lattice +1212.4919 Lattice +1212.4920 Computer Vision and Pattern Recognition +1212.4922 Number Theory +1212.4924 Optimization and Control +1212.4931 Cryptography and Security +1212.4935 Digital Libraries +1212.4937 Superconductivity +1212.4938 Materials Science +1212.4940 Information Theory +1212.4941 +1212.4945 +1212.4948 Algebraic Geometry +1212.4955 +1212.4959 Software Engineering +1212.4964 Phenomenology +1212.4965 +1212.4967 Phenomenology +1212.4969 Data Structures and Algorithms +1212.4971 +1212.4974 Superconductivity +1212.4977 Algebraic Geometry +1212.4997 Strongly Correlated Electrons +1212.4998 Experiment +1212.4999 Systems and Control +1212.5003 Formal Languages and Automata Theory +1212.5008 Combinatorics +1212.5010 Molecular Networks +1212.5014 Optics +1212.5020 Earth and Planetary Astrophysics +1212.5022 Differential Geometry +1212.5025 Populations and Evolution +1212.5031 Medical Physics +1212.5035 Social and Information Networks +1212.5040 Optics +1212.5042 Optimization and Control +1212.5047 Differential Geometry +1212.5049 Methodology +1212.5056 Combinatorics +1212.5060 Instrumentation and Methods for Astrophysics +1212.5061 Geophysics +1212.5068 Soft Condensed Matter +1212.5070 Data Analysis, Statistics and Probability +1212.5071 Solar and Stellar Astrophysics +1212.5077 Solar and Stellar Astrophysics +1212.5078 Phenomenology +1212.5084 Solar and Stellar Astrophysics +1212.5086 Cryptography and Security +1212.5089 Software Engineering +1212.5090 Methodology +1212.5091 Learning +1212.5094 Logic in Computer Science +1212.5095 Computational Engineering, Finance, and Science +1212.5097 Computational Complexity +1212.5099 Analysis of PDEs +1212.5100 Cryptography and Security +1212.5101 Learning +1212.5108 Logic in Computer Science +1212.5111 Analysis of PDEs +1212.5112 Probability +1212.5116 Logic in Computer Science +1212.5126 Probability +1212.5128 Probability +1212.5129 Networking and Internet Architecture +1212.5130 Analysis of PDEs +1212.5132 Computer Science and Game Theory +1212.5133 Instrumentation and Methods for Astrophysics +1212.5134 Mesoscale and Nanoscale Physics +1212.5135 Dynamical Systems +1212.5137 Analysis of PDEs +1212.5139 Logic in Computer Science +1212.5140 Quantum Gases +1212.5143 Mesoscale and Nanoscale Physics +1212.5145 Analysis of PDEs +1212.5148 Computational Physics +1212.5149 Quantum Algebra +1212.5155 Rings and Algebras +1212.5158 Rings and Algebras +1212.5163 +1212.5166 +1212.5170 Other Computer Science +1212.5181 Theory +1212.5183 Theory +1212.5187 Analysis of PDEs +1212.5190 +1212.5191 Strongly Correlated Electrons +1212.5193 Algebraic Geometry +1212.5195 Number Theory +1212.5200 Statistical Mechanics +1212.5201 Fluid Dynamics +1212.5203 Statistics Theory +1212.5204 Software Engineering +1212.5207 Spectral Theory +1212.5208 Group Theory +1212.5209 Experiment +1212.5211 Digital Libraries +1212.5217 Computational Engineering, Finance, and Science +1209.1298 +0705.1773 Probability +0712.1975 Strongly Correlated Electrons +0807.5002 Other Condensed Matter +0809.4647 Functional Analysis +0811.2165 Other Condensed Matter +0902.3602 Functional Analysis +0903.0945 Group Theory +0904.3728 Exactly Solvable and Integrable Systems +0904.3937 Materials Science +0908.2202 Experiment +0909.4063 Algebraic Geometry +0910.3934 +1002.2800 Logic +1003.0370 Mesoscale and Nanoscale Physics +1003.0622 Atomic Physics +1004.2321 Quantum Algebra +1006.2785 Superconductivity +1008.1836 Algebraic Geometry +1008.1915 Theory +1008.4954 Differential Geometry +1010.0982 Category Theory +1010.4134 Materials Science +1010.5867 Combinatorics +1011.6658 Algebraic Geometry +1101.0993 Differential Geometry +1103.6099 Analysis of PDEs +1104.0573 Phenomenology +1104.3026 Mesoscale and Nanoscale Physics +1104.4740 +1104.5638 Strongly Correlated Electrons +1105.0145 Materials Science +1105.6256 Statistical Mechanics +1106.0961 Computer Science and Game Theory +1106.4187 General Physics +1106.4589 Phenomenology +1106.4634 Strongly Correlated Electrons +1106.4940 +1107.2211 Superconductivity +1107.3181 Analysis of PDEs +1107.4053 Optics +1107.4934 Optics +1108.0638 High Energy Astrophysical Phenomena +1108.2172 General Physics +1108.5659 +1109.2035 Theory +1109.5662 Analysis of PDEs +1110.2408 +1111.2207 Analysis of PDEs +1111.2324 Combinatorics +1111.3017 Theory +1111.4387 Experiment +1111.4398 +1111.4532 General Physics +1111.4863 Theory +1111.5445 +1111.5852 Theory +1111.7285 Representation Theory +1112.0740 Statistical Mechanics +1112.0935 +1112.1621 +1112.4104 +1112.6180 Phenomenology +1201.0629 Soft Condensed Matter +1201.1539 Metric Geometry +1201.2953 Probability +1201.3083 Statistical Finance +1201.5314 Strongly Correlated Electrons +1202.0538 Superconductivity +1202.1521 Theory +1202.2349 Optics +1202.2839 +1202.3947 Theory +1202.4390 Superconductivity +1202.5090 Cosmology and Nongalactic Astrophysics +1203.1443 Theory +1203.1705 Phenomenology +1203.1920 +1203.2255 Materials Science +1203.4647 Number Theory +1203.5110 Cosmology and Nongalactic Astrophysics +1203.5579 Phenomenology +1203.5629 Quantum Gases +1203.6019 Geometric Topology +1203.6026 General Physics +1203.6109 Mesoscale and Nanoscale Physics +1203.6830 Algebraic Topology +1204.0305 Portfolio Management +1204.0932 +1204.1469 Mesoscale and Nanoscale Physics +1204.2607 Disordered Systems and Neural Networks +1204.3500 Instrumentation and Detectors +1204.4021 Methodology +1204.4986 Disordered Systems and Neural Networks +1204.4994 Materials Science +1205.0387 Cosmology and Nongalactic Astrophysics +1205.1541 Soft Condensed Matter +1205.2200 Other Computer Science +1205.2443 Theory +1205.6389 +1205.6901 +1206.0181 Symbolic Computation +1206.0184 Other Computer Science +1206.0568 Quantum Gases +1206.1924 Superconductivity +1206.1930 Accelerator Physics +1206.2145 Chaotic Dynamics +1206.2728 Physics and Society +1206.3061 Networking and Internet Architecture +1206.3115 Phenomenology +1206.3204 Learning +1206.3230 Number Theory +1206.3231 Learning +1206.3232 Artificial Intelligence +1206.3233 Artificial Intelligence +1206.3234 Data Structures and Algorithms +1206.3235 Computer Science and Game Theory +1206.3236 Learning +1206.3237 Discrete Mathematics +1206.3238 Learning +1206.3239 Methodology +1206.3241 Learning +1206.3242 Learning +1206.3243 Learning +1206.3244 Artificial Intelligence +1206.3245 Artificial Intelligence +1206.3246 Artificial Intelligence +1206.3247 Learning +1206.3248 Artificial Intelligence +1206.3249 Learning +1206.3250 Artificial Intelligence +1206.3251 Artificial Intelligence +1206.3252 Learning +1206.3253 Computer Science and Game Theory +1206.3254 Information Retrieval +1206.3256 Learning +1206.3257 Learning +1206.3258 Artificial Intelligence +1206.3259 Learning +1206.3260 Machine Learning +1206.3261 Computer Science and Game Theory +1206.3262 Learning +1206.3263 Artificial Intelligence +1206.3264 Artificial Intelligence +1206.3265 Artificial Intelligence +1206.3266 Artificial Intelligence +1206.3267 Methodology +1206.3268 Methodology +1206.3269 Learning +1206.3270 Learning +1206.3271 Artificial Intelligence +1206.3272 Artificial Intelligence +1206.3273 Artificial Intelligence +1206.3274 Learning +1206.3275 Learning +1206.3276 Artificial Intelligence +1206.3277 Computer Science and Game Theory +1206.3278 Information Retrieval +1206.3279 Learning +1206.3280 Artificial Intelligence +1206.3281 Artificial Intelligence +1206.3282 Artificial Intelligence +1206.3283 Artificial Intelligence +1206.3284 Artificial Intelligence +1206.3285 Artificial Intelligence +1206.3286 Artificial Intelligence +1206.3287 Learning +1206.3288 Data Structures and Algorithms +1206.3289 Artificial Intelligence +1206.3290 Learning +1206.3291 Artificial Intelligence +1206.3292 Artificial Intelligence +1206.3293 Artificial Intelligence +1206.3294 Learning +1206.3295 Artificial Intelligence +1206.3296 Artificial Intelligence +1206.3297 Learning +1206.3302 +1206.3318 Artificial Intelligence +1206.3320 Information Retrieval +1206.3321 Phenomenology +1206.3322 Astrophysics of Galaxies +1206.3323 +1206.3324 High Energy Astrophysical Phenomena +1206.3325 Spectral Theory +1206.3328 Probability +1206.3334 Data Structures and Algorithms +1206.3337 Functional Analysis +1206.3338 Adaptation and Self-Organizing Systems +1206.3340 Genomics +1206.3344 Phenomenology +1206.3347 Analysis of PDEs +1206.3348 +1206.3354 Combinatorics +1206.3355 General Topology +1206.3362 Information Theory +1206.3368 Algebraic Topology +1206.3369 Number Theory +1206.3374 +1206.3375 Networking and Internet Architecture +1206.3376 Representation Theory +1206.3377 Applications +1206.3380 Quantum Algebra +1206.3381 Statistics Theory +1206.3384 General Finance +1206.3385 General Finance +1206.3387 General Finance +1206.3393 Differential Geometry +1206.3396 Rings and Algebras +1206.3398 Phenomenology +1206.3402 Phenomenology +1206.3403 Adaptation and Self-Organizing Systems +1206.3406 Computational Physics +1206.3408 Computational Complexity +1206.3417 Networking and Internet Architecture +1206.3420 Phenomenology +1206.3425 +1206.3426 Analysis of PDEs +1206.3434 Phenomenology +1206.3437 Discrete Mathematics +1206.3439 Category Theory +1206.3440 Statistical Mechanics +1206.3441 General Physics +1206.3443 General Physics +1206.3444 Phenomenology +1206.3446 Computational Physics +1206.3447 Phenomenology +1206.3451 Chemical Physics +1206.3455 Analysis of PDEs +1206.3457 Theory +1206.3459 +1206.3468 Strongly Correlated Electrons +1206.3470 Soft Condensed Matter +1206.3471 Analysis of PDEs +1206.3472 Populations and Evolution +1206.3475 Dynamical Systems +1206.3476 Number Theory +1206.3485 Experiment +1206.3490 Instrumentation and Detectors +1206.3494 Astrophysics of Galaxies +1206.3495 +1206.3499 Differential Geometry +1206.3502 Pattern Formation and Solitons +1206.3503 Theory +1206.3504 Dynamical Systems +1206.3508 +1206.3509 Learning +1206.3510 Combinatorics +1206.3511 Data Structures and Algorithms +1206.3515 Probability +1206.3517 Phenomenology +1206.3520 Probability +1206.3521 Commutative Algebra +1206.3522 Neural and Evolutionary Computing +1206.3527 Materials Science +1206.3540 High Energy Astrophysical Phenomena +1206.3548 +1206.3549 Materials Science +1206.3551 Artificial Intelligence +1206.3552 Social and Information Networks +1206.3554 History and Philosophy of Physics +1206.3559 Computer Vision and Pattern Recognition +1206.3561 Instrumentation and Detectors +math-ph/0611084 +math/0310050 Algebraic Geometry +math/0604290 Algebraic Geometry +1005.5718 Physics and Society +1008.3049 Probability +1101.4864 Mesoscale and Nanoscale Physics +1102.5319 Cosmology and Nongalactic Astrophysics +1106.5508 High Energy Astrophysical Phenomena +1201.5937 Probability +1202.5940 Instrumentation and Detectors +1204.0851 +0706.1180 Disordered Systems and Neural Networks +0712.3905 Analysis of PDEs +0811.1524 Disordered Systems and Neural Networks +0901.1100 Disordered Systems and Neural Networks +0901.1347 Algebraic Geometry +0903.4817 Learning +0910.4553 Disordered Systems and Neural Networks +0910.5283 Analysis of PDEs +0911.3448 Cosmology and Nongalactic Astrophysics +1002.1369 Disordered Systems and Neural Networks +1003.4752 Strongly Correlated Electrons +1011.4452 +1012.6010 Quantum Algebra +1101.4157 Differential Geometry +1101.6059 Fluid Dynamics +1103.1819 Differential Geometry +1105.5992 Algebraic Geometry +1106.4749 Number Theory +1107.1138 Multimedia +1107.2941 Analysis of PDEs +1107.3097 Differential Geometry +1108.5464 Probability +1109.0773 Analysis of PDEs +1109.1199 +1109.3401 Data Structures and Algorithms +1109.5116 High Energy Astrophysical Phenomena +1111.1366 Theory +1111.1580 Analysis of PDEs +1111.3235 Probability +1112.0336 Atomic Physics +1201.0033 Strongly Correlated Electrons +1201.4897 Optimization and Control +1202.3437 High Energy Astrophysical Phenomena +1202.5107 +1202.5298 Systems and Control +1202.5566 Analysis of PDEs +1203.0904 Dynamical Systems +1203.1756 +1203.2094 +1203.2371 Differential Geometry +1203.2986 Differential Geometry +1203.4950 Populations and Evolution +1203.6562 Theory +1204.0228 Phenomenology +1204.3063 Analysis of PDEs +1204.4327 Plasma Physics +1204.4379 Computational Complexity +1205.1045 Phenomenology +1205.1402 Analysis of PDEs +1205.2213 Mesoscale and Nanoscale Physics +1205.3111 Physics and Society +1205.3465 +1205.3596 Number Theory +1205.4986 General Physics +1205.5552 General Physics +1205.6030 Differential Geometry +1206.1236 +1206.1651 Phenomenology +1206.3592 Mesoscale and Nanoscale Physics +1206.3711 Probability +1206.4959 Theory +1206.6548 Cosmology and Nongalactic Astrophysics +1207.0801 Cosmology and Nongalactic Astrophysics +1207.1051 Phenomenology +1207.1552 Differential Geometry +1207.2529 Phenomenology +1207.3619 Differential Geometry +1207.3818 Functional Analysis +1207.4356 Plasma Physics +1207.5066 Theory +1208.0373 +1208.4601 Mesoscale and Nanoscale Physics +1208.5540 Analysis of PDEs +1208.6101 +1209.1746 Fluid Dynamics +1209.1965 Statistical Mechanics +1209.2740 Number Theory +1209.5101 Solar and Stellar Astrophysics +1209.5286 Solar and Stellar Astrophysics +1209.5869 Experiment +1210.0303 Optics +1210.0570 Pricing of Securities +1210.2325 Dynamical Systems +1210.4063 Theory +1210.4242 Analysis of PDEs +1210.5802 Social and Information Networks +1210.6165 Analysis of PDEs +1210.6187 Statistics Theory +1210.6825 Representation Theory +1210.6854 Cosmology and Nongalactic Astrophysics +1210.6872 Differential Geometry +1210.6999 Astrophysics of Galaxies +1210.7075 Superconductivity +1210.7312 Instrumentation and Methods for Astrophysics +1210.7363 Analysis of PDEs +1210.7410 Systems and Control +1210.7445 Numerical Analysis +1210.7479 Space Physics +1210.7568 Phenomenology +1210.7686 Formal Languages and Automata Theory +1210.7717 Probability +1210.7777 Lattice +1210.7780 Classical Analysis and ODEs +1210.7796 Classical Physics +1210.7815 Cosmology and Nongalactic Astrophysics +1210.7816 Cosmology and Nongalactic Astrophysics +1210.7824 Geometric Topology +1210.7825 Mesoscale and Nanoscale Physics +1210.7833 Theory +1210.7835 Algebraic Geometry +1210.7838 Strongly Correlated Electrons +1210.7840 Number Theory +1210.7848 Experiment +1210.7850 Statistics Theory +1210.7851 Materials Science +1210.7858 Numerical Analysis +1210.7859 Systems and Control +1210.7861 Representation Theory +1210.7862 Numerical Analysis +1210.7863 Phenomenology +1210.7865 Theory +1210.7869 Combinatorics +1210.7870 Networking and Internet Architecture +1210.7871 Cosmology and Nongalactic Astrophysics +1210.7872 Popular Physics +1210.7873 Lattice +1210.7880 Cosmology and Nongalactic Astrophysics +1210.7881 Lattice +1210.7882 Logic +1210.7883 Logic +1210.7884 Number Theory +1210.7885 Number Theory +1210.7886 Astrophysics of Galaxies +1210.7887 Number Theory +1210.7888 Number Theory +1210.7889 Other Computer Science +1210.7893 Solar and Stellar Astrophysics +1210.7896 Soft Condensed Matter +1210.7897 Biological Physics +1210.7902 +1210.7906 Information Theory +1210.7909 Algebraic Topology +1210.7911 Statistics Theory +1210.7912 Optics +1210.7913 Algebraic Topology +1210.7914 Lattice +1210.7917 Computation and Language +1210.7918 +1210.7924 +1210.7925 Theory +1210.7926 Number Theory +1210.7927 +1210.7931 Information Theory +1210.7932 Lattice +1210.7938 Numerical Analysis +1210.7940 Information Theory +1210.7944 Combinatorics +1210.7952 Instrumentation and Methods for Astrophysics +1210.7955 Materials Science +1210.7956 Neural and Evolutionary Computing +1210.7958 Group Theory +1210.7959 Artificial Intelligence +1210.7962 Functional Analysis +1210.7968 +1210.7970 Computer Science and Game Theory +1210.7972 +1210.7979 Analysis of PDEs +1210.7980 Analysis of PDEs +1210.7985 Combinatorics +1210.7986 Phenomenology +1210.7989 Probability +1210.7990 Phenomenology +1210.7991 Accelerator Physics +1210.7999 Solar and Stellar Astrophysics +1210.8000 Strongly Correlated Electrons +1210.8005 Number Theory +1210.8010 General Topology +1210.8015 Probability +1210.8018 Lattice +1210.8019 Analysis of PDEs +1210.8025 Multimedia +1210.8029 Astrophysics of Galaxies +1210.8030 Instrumentation and Methods for Astrophysics +1210.8031 Other Computer Science +1210.8033 Lattice +1210.8041 Fluid Dynamics +1210.8046 History and Overview +1210.8047 History and Overview +1210.8048 Chemical Physics +1210.8050 Statistics Theory +1210.8051 Probability +1210.8052 Quantum Algebra +1210.8053 Analysis of PDEs +1210.8054 Differential Geometry +1210.8055 Other Computer Science +1210.8061 Phenomenology +1210.8066 +1210.8067 +1210.8072 Numerical Analysis +1210.8073 Phenomenology +1210.8076 Differential Geometry +1210.8077 Optics +1210.8081 Group Theory +1210.8082 Materials Science +1210.8083 Systems and Control +1210.8092 Cryptography and Security +1210.8099 Computational Complexity +1210.8104 Rings and Algebras +1210.8105 Plasma Physics +1210.8108 Statistical Mechanics +1210.8109 Combinatorics +1210.8110 +1210.8113 Discrete Mathematics +1210.8119 Number Theory +1210.8123 Computational Geometry +1210.8124 Neural and Evolutionary Computing +1210.8131 Analysis of PDEs +1210.8137 Strongly Correlated Electrons +1210.8139 Computational Geometry +cond-mat/0207071 Disordered Systems and Neural Networks +cond-mat/0209333 Disordered Systems and Neural Networks +cond-mat/0401509 Disordered Systems and Neural Networks +cond-mat/0403261 Disordered Systems and Neural Networks +cond-mat/0508592 Disordered Systems and Neural Networks +cond-mat/0609777 Disordered Systems and Neural Networks +hep-th/9909118 Theory +math/0106221 Differential Geometry +0704.3431 +0804.2785 Complex Variables +0806.1568 Mesoscale and Nanoscale Physics +0807.1747 Dynamical Systems +0807.3715 +0811.1279 Probability +0902.1183 Algebraic Topology +0902.1963 Algebraic Topology +0903.2247 Statistical Mechanics +0903.3551 Quantum Algebra +0903.3553 Quantum Algebra +0907.0154 Quantum Algebra +0907.2676 Dynamical Systems +0909.4961 Applications +0909.5277 Number Theory +0910.3675 +0910.4950 Complex Variables +0910.5543 Commutative Algebra +0911.5016 Phenomenology +0911.5611 Number Theory +0912.1424 Discrete Mathematics +1001.4160 Functional Analysis +1002.2786 Group Theory +1002.3257 Cosmology and Nongalactic Astrophysics +1002.3818 General Mathematics +1003.0183 K-Theory and Homology +1003.0230 Theory +1003.2100 Theory +1003.2740 Complex Variables +1003.4529 Statistical Mechanics +1005.5258 Mesoscale and Nanoscale Physics +1006.0562 Analysis of PDEs +1006.1887 Combinatorics +1006.4095 +1006.4366 +1007.0515 Trading and Market Microstructure +1007.0813 +1007.2331 Operator Algebras +1008.2888 Fluid Dynamics +1008.2923 Spectral Theory +1009.1133 Analysis of PDEs +1009.1228 Strongly Correlated Electrons +1009.2522 Methodology +1009.3692 Theory +1009.5287 Statistical Mechanics +1010.2296 Combinatorics +1010.3837 Physics and Society +1010.4905 Complex Variables +1011.0358 Analysis of PDEs +1011.3012 Complex Variables +1011.4320 Statistical Mechanics +1011.5194 Numerical Analysis +1012.0698 Differential Geometry +1012.2490 Dynamical Systems +1012.3096 Quantum Algebra +1101.0856 Differential Geometry +1101.2135 Physics and Society +1101.5702 Operator Algebras +1102.4756 Differential Geometry +1102.5125 +1103.1085 Representation Theory +1103.5449 +1104.2289 +1104.2417 Fluid Dynamics +1104.2970 Optimization and Control +1105.1282 +1105.2695 Analysis of PDEs +1105.4538 +1105.4658 Mesoscale and Nanoscale Physics +1106.1144 Probability +1106.2962 Differential Geometry +1106.3275 Functional Analysis +1106.4852 +1106.5778 Quantitative Methods +1107.1291 Phenomenology +1107.1908 Chemical Physics +1107.1938 Physics and Society +1107.1949 Fluid Dynamics +1107.2607 +1107.2752 Solar and Stellar Astrophysics +1107.3415 Operator Algebras +1107.4320 Theory +1107.4714 +1108.0119 Theory +1108.0422 +1108.0559 Solar and Stellar Astrophysics +1108.2065 +1108.3264 Number Theory +1108.4865 +1108.5919 Complex Variables +1109.1544 Mesoscale and Nanoscale Physics +1109.1617 Probability +1109.2187 +1109.2652 Dynamical Systems +1109.3703 Theory +1109.3873 Numerical Analysis +1109.4142 Cosmology and Nongalactic Astrophysics +1109.4498 Molecular Networks +1109.5198 Commutative Algebra +1109.5979 Other Quantitative Biology +1109.5981 Data Structures and Algorithms +1110.0572 Geometric Topology +1110.0788 Strongly Correlated Electrons +1110.1315 Probability +1110.1875 Phenomenology +1110.2561 Distributed, Parallel, and Cluster Computing +1110.2748 Geometric Topology +1110.2830 Algebraic Geometry +1110.3127 +1110.3308 Number Theory +1110.3329 +1110.5355 Data Structures and Algorithms +1110.5420 Cosmology and Nongalactic Astrophysics +1110.5691 +1110.5695 Materials Science +1111.0147 +1111.0608 Classical Analysis and ODEs +1111.0840 Mesoscale and Nanoscale Physics +1111.1054 Phenomenology +1111.1173 Quantum Gases +1111.1939 Lattice +1111.2587 High Energy Astrophysical Phenomena +1111.2917 Differential Geometry +1111.4113 Atomic Physics +1111.4879 +1111.6070 +1111.6073 Theory +1111.7179 Solar and Stellar Astrophysics +1112.0186 Biological Physics +1112.0254 +1112.0627 Theory +1112.2235 Rings and Algebras +1112.2746 Mesoscale and Nanoscale Physics +1112.4566 Analysis of PDEs +1112.5202 +1112.6304 Phenomenology +1201.0692 Algebraic Geometry +1201.1574 Optimization and Control +1201.1709 Strongly Correlated Electrons +1201.2626 Mesoscale and Nanoscale Physics +1201.3009 +1201.3133 Data Analysis, Statistics and Probability +1201.4144 Phenomenology +1201.4292 Networking and Internet Architecture +1201.4537 Theory +1201.4578 Quantum Gases +1201.4600 Astrophysics of Galaxies +1201.5685 +1201.5796 Superconductivity +1201.6593 Category Theory +1202.0551 Solar and Stellar Astrophysics +1202.0869 Algebraic Geometry +1202.0931 Phenomenology +1202.1287 Solar and Stellar Astrophysics +1202.1584 Networking and Internet Architecture +1202.1589 Mesoscale and Nanoscale Physics +1202.1860 Classical Analysis and ODEs +1202.1951 Physics and Society +1202.2181 High Energy Astrophysical Phenomena +1202.2662 Experiment +1202.2711 Phenomenology +1202.3183 Algebraic Geometry +1202.3232 +1202.3277 Materials Science +1202.3310 Instrumentation and Methods for Astrophysics +1202.3486 Instrumentation and Methods for Astrophysics +1202.3668 Cosmology and Nongalactic Astrophysics +1202.4000 Classical Analysis and ODEs +1202.4025 +1202.4032 Combinatorics +1202.4033 Networking and Internet Architecture +1202.4040 Solar and Stellar Astrophysics +1202.4052 Analysis of PDEs +1202.4054 +1202.4063 Artificial Intelligence +1202.4068 Number Theory +1202.4070 Soft Condensed Matter +1202.4073 Algebraic Geometry +1202.4074 Statistics Theory +1202.4078 Differential Geometry +1202.4079 Strongly Correlated Electrons +1202.4084 Computational Physics +1202.4089 +1202.4093 Computational Physics +1202.4094 Computation +1202.4097 +1202.4099 Software Engineering +1202.4106 Commutative Algebra +1202.4107 Computer Vision and Pattern Recognition +1202.4112 Superconductivity +1202.4117 +1202.4120 Spectral Theory +1202.4122 Optimization and Control +1202.4128 Networking and Internet Architecture +1202.4137 Networking and Internet Architecture +1202.4142 Algebraic Topology +1202.4143 Combinatorics +1202.4144 Logic in Computer Science +1202.4146 Computational Geometry +1202.4147 Phenomenology +1202.4149 Discrete Mathematics +1202.4150 Combinatorics +1202.4153 History and Overview +1202.4155 Materials Science +1202.4157 Representation Theory +1202.4162 Theory +1202.4166 +1202.4170 Neural and Evolutionary Computing +1202.4173 Lattice +1202.4174 Neurons and Cognition +1202.4180 Information Theory +1202.4184 Optimization and Control +1202.4185 Digital Libraries +1202.4188 Dynamical Systems +1202.4190 Artificial Intelligence +1202.4196 Combinatorics +1202.4198 Probability +1202.4204 Combinatorics +1202.4211 Geometric Topology +1202.4216 Phenomenology +1202.4218 Materials Science +1202.4220 Computational Physics +1202.4223 +1202.4226 Phenomenology +1202.4229 Computer Science and Game Theory +1202.4236 Numerical Analysis +1202.4237 Computer Vision and Pattern Recognition +1202.4238 Computers and Society +1202.4241 Chemical Physics +1202.4243 Fluid Dynamics +1202.4244 Classical Analysis and ODEs +1202.4245 Cryptography and Security +1202.4247 Soft Condensed Matter +1202.4249 Soft Condensed Matter +1202.4252 Statistical Mechanics +1202.4253 Astrophysics of Galaxies +1202.4257 Statistical Mechanics +1202.4259 Soft Condensed Matter +1202.4260 Soft Condensed Matter +1202.4261 Robotics +1202.4262 Soft Condensed Matter +1202.4269 Programming Languages +1202.4273 Mesoscale and Nanoscale Physics +1202.4276 Soft Condensed Matter +1202.4278 Populations and Evolution +1202.4282 Soft Condensed Matter +1202.4284 Soft Condensed Matter +1202.4286 Statistical Mechanics +1202.4299 Phenomenology +1202.4301 Computational Complexity +1202.4302 Computer Science and Game Theory +1202.4305 History and Philosophy of Physics +1202.4306 Theory +1202.4307 Computer Science and Game Theory +1202.4311 Statistical Finance +1202.4313 Optics +1202.4315 Quantum Algebra +1202.4317 +1202.4318 Statistical Mechanics +1202.4325 Differential Geometry +1202.4329 Physics and Society +1202.4332 Pricing of Securities +1202.4334 Chaotic Dynamics +1202.4336 Representation Theory +1202.4337 Numerical Analysis +1202.4341 Rings and Algebras +1202.4344 Analysis of PDEs +1202.4345 Popular Physics +1202.4346 Analysis of PDEs +1202.4347 Distributed, Parallel, and Cluster Computing +1202.4349 Solar and Stellar Astrophysics +1202.4350 Functional Analysis +1202.4351 Number Theory +1202.4352 Probability +1202.4354 Solar and Stellar Astrophysics +1202.4358 General Mathematics +1202.4359 Popular Physics +1202.4360 Solar and Stellar Astrophysics +1202.4366 Cryptography and Security +1202.4371 Complex Variables +1202.4382 Rings and Algebras +1202.4384 Algebraic Geometry +1202.4387 Geometric Topology +1202.4393 Physics and Society +1202.4408 Algebraic Geometry +1202.4423 Performance +1202.4427 Combinatorics +1202.4429 Statistical Mechanics +1202.4432 Strongly Correlated Electrons +1202.4439 Mesoscale and Nanoscale Physics +1202.4441 Numerical Analysis +1202.4443 Functional Analysis +1202.4446 Systems and Control +1202.4447 Optics +cond-mat/0204492 +cond-mat/0703235 Statistical Mechanics +hep-th/0110259 Theory +math/0310304 Geometric Topology +math/0401427 Geometric Topology +math/0403495 General Topology +math/0509449 Group Theory +math/0607258 Geometric Topology +math/0609098 General Topology +math/0610946 Group Theory +math/0611712 Group Theory +quant-ph/0203100 +quant-ph/0212128 +quant-ph/0509214 +quant-ph/0611250 +0705.1934 Strongly Correlated Electrons +0802.4185 Logic +0802.4215 Physics and Society +0805.2587 Differential Geometry +0808.0785 Rings and Algebras +0808.2740 Operator Algebras +0810.1784 Algebraic Topology +0811.3715 Symplectic Geometry +0901.1454 +0902.2511 Classical Analysis and ODEs +0903.1208 Classical Analysis and ODEs +0903.4497 Classical Physics +0905.2616 General Topology +0906.2379 Data Analysis, Statistics and Probability +0910.3695 Data Analysis, Statistics and Probability +0910.3956 Analysis of PDEs +0911.1100 Representation Theory +1001.2632 Commutative Algebra +1003.1628 Mathematical Software +1004.1697 +1004.4320 +1004.4848 Computation and Language +1004.5020 Chaotic Dynamics +1004.5245 Physics and Society +1005.5197 Learning +1006.0063 Differential Geometry +1006.0464 Rings and Algebras +1006.5841 Disordered Systems and Neural Networks +1009.0563 Mesoscale and Nanoscale Physics +1011.0700 Dynamical Systems +1011.2159 +1011.2392 Theory +1011.4640 Geometric Topology +1011.5957 Representation Theory +1012.0043 Mesoscale and Nanoscale Physics +1012.5885 Algebraic Topology +1101.0920 Differential Geometry +1102.1616 Classical Analysis and ODEs +1102.2170 General Physics +1103.3508 Computation +1103.5362 Physics and Society +1104.3579 Theory +1104.4960 Functional Analysis +1105.2140 +1105.4729 Symplectic Geometry +1105.5756 Commutative Algebra +1106.0567 Classical Analysis and ODEs +1106.2461 Spectral Theory +1106.2546 Cosmology and Nongalactic Astrophysics +1106.3655 Machine Learning +1106.4168 Rings and Algebras +1106.5384 Cosmology and Nongalactic Astrophysics +1107.0947 +1107.1156 Combinatorics +1107.4782 +1108.1633 Number Theory +1108.2332 +1108.2340 Materials Science +1109.2420 Phenomenology +1109.5135 +1109.5985 Probability +1110.2388 Data Analysis, Statistics and Probability +1110.3353 Geometric Topology +1110.3832 Physics and Society +1110.5652 Mesoscale and Nanoscale Physics +1110.6217 Algebraic Geometry +1110.6499 Optics +1111.1540 Solar and Stellar Astrophysics +1111.2915 Mesoscale and Nanoscale Physics +1111.3650 Mesoscale and Nanoscale Physics +1111.6555 Functional Analysis +1112.2075 Strongly Correlated Electrons +1112.2468 Computation and Language +1112.3602 Functional Analysis +1112.5421 Combinatorics +1201.0011 +1201.0025 Theory +1201.1824 Mesoscale and Nanoscale Physics +1201.2503 Differential Geometry +1201.2906 +1201.2910 Differential Geometry +1201.4989 +1201.5919 Cosmology and Nongalactic Astrophysics +1201.6441 Probability +1202.0533 Information Theory +1202.0700 Phenomenology +1202.0824 Cosmology and Nongalactic Astrophysics +1202.1352 Combinatorics +1202.3325 Optimization and Control +1202.4130 Lattice +1202.5290 Fluid Dynamics +1202.5786 Materials Science +1202.5856 Cryptography and Security +1202.5874 Materials Science +1203.1489 Phenomenology +1203.2395 Symplectic Geometry +1203.2680 Group Theory +1203.2708 Mesoscale and Nanoscale Physics +1204.0819 Numerical Analysis +1204.1497 Cosmology and Nongalactic Astrophysics +1204.2437 +1204.2555 Earth and Planetary Astrophysics +1204.3530 Instrumentation and Detectors +1204.3999 Cellular Automata and Lattice Gases +1204.4283 Complex Variables +1204.4646 Experiment +1204.5002 Fluid Dynamics +1204.6489 Cosmology and Nongalactic Astrophysics +1205.0867 +1205.1550 Mesoscale and Nanoscale Physics +1205.3499 Phenomenology +1205.4511 +1205.5407 Computation and Language +1205.6159 Materials Science +1205.6172 Cosmology and Nongalactic Astrophysics +1205.6522 Category Theory +1205.6549 Atomic Physics +1205.6756 Quantum Gases +1205.6758 Chaotic Dynamics +1205.6817 Phenomenology +1206.0288 Strongly Correlated Electrons +1206.0500 Algebraic Geometry +1206.0756 Experiment +1206.0927 +1206.2315 Strongly Correlated Electrons +1206.2768 Statistical Mechanics +1206.4277 Materials Science +1206.4439 Superconductivity +1206.5231 Theory +1206.5688 Quantum Gases +1206.6705 Statistical Mechanics +1206.6766 +1206.7041 Astrophysics of Galaxies +1207.0200 Theory +1207.0356 Trading and Market Microstructure +1207.0548 Cosmology and Nongalactic Astrophysics +1207.0685 Phenomenology +1207.0688 Phenomenology +1207.0692 Solar and Stellar Astrophysics +1207.0828 Functional Analysis +1207.1451 Phenomenology +1207.2631 Strongly Correlated Electrons +1207.3290 Analysis of PDEs +1207.6206 +1207.7214 Experiment +1208.0104 +1208.0295 Statistical Mechanics +1208.0296 Computer Science and Game Theory +1208.1675 Instrumentation and Methods for Astrophysics +1208.2147 Quantum Gases +1208.2733 Statistics Theory +1208.2759 Formal Languages and Automata Theory +1208.4358 Earth and Planetary Astrophysics +1208.4374 Optimization and Control +1208.4684 Commutative Algebra +1208.5409 Combinatorics +1208.5415 K-Theory and Homology +1208.6423 Dynamical Systems +1208.6537 Methodology +1208.6545 Geometric Topology +1209.0001 Learning +1209.0003 Materials Science +1209.0004 Materials Science +1209.0012 Methodology +1209.0018 Representation Theory +1209.0021 Computation +1209.0023 +1209.0027 Differential Geometry +1209.0030 Phenomenology +1209.0031 Soft Condensed Matter +1209.0032 Soft Condensed Matter +1209.0036 Digital Libraries +1209.0040 Phenomenology +1209.0048 Geometric Topology +1209.0053 Computer Vision and Pattern Recognition +1209.0054 Cryptography and Security +1209.0055 Functional Analysis +1209.0056 Artificial Intelligence +1209.0066 Classical Analysis and ODEs +1209.0068 Optimization and Control +1209.0070 Analysis of PDEs +1209.0075 Complex Variables +1209.0077 Phenomenology +1209.0078 Combinatorics +1209.0083 Plasma Physics +1209.0085 Experiment +1209.0090 Analysis of PDEs +1209.0092 Mesoscale and Nanoscale Physics +1209.0093 Rings and Algebras +1209.0099 Strongly Correlated Electrons +1209.0102 Combinatorics +1209.0103 Geometric Topology +1209.0110 Materials Science +1209.0111 Materials Science +1209.0117 Phenomenology +1209.0118 Experiment +1209.0124 Category Theory +1209.0126 Information Retrieval +1209.0129 Combinatorics +1209.0130 Numerical Analysis +1209.0135 Cryptography and Security +1209.0137 Probability +1209.0141 +1209.0146 History and Philosophy of Physics +1209.0153 Rings and Algebras +1209.0157 Analysis of PDEs +1209.0173 Strongly Correlated Electrons +1209.0177 Logic +1209.0184 Combinatorics +1209.0185 Methodology +1209.0188 Representation Theory +1209.0193 Algebraic Geometry +1209.0194 Computational Geometry +1209.0198 +1209.0200 Combinatorics +1209.0201 Geophysics +1209.0227 Theory +1209.0234 Materials Science +1209.0248 Numerical Analysis +1209.0249 Computation and Language +1209.0250 Materials Science +1209.0251 High Energy Astrophysical Phenomena +1209.0257 Adaptation and Self-Organizing Systems +1209.0261 +1209.0267 Functional Analysis +1209.0273 Combinatorics +1209.0275 Combinatorics +1209.0277 Rings and Algebras +1209.0284 Astrophysics of Galaxies +1209.0290 Solar and Stellar Astrophysics +1209.0294 Astrophysics of Galaxies +1209.0295 Algebraic Geometry +1209.0297 Phenomenology +1209.0299 +1209.0308 Multiagent Systems +1209.0312 Genomics +1209.0314 Operator Algebras +1209.0321 +1209.0322 Solar and Stellar Astrophysics +1209.0323 Materials Science +1209.0332 +1209.0333 General Physics +1209.0336 Phenomenology +1209.0340 Differential Geometry +1209.0342 Solar and Stellar Astrophysics +1209.0344 Experiment +1209.0351 Probability +1209.0354 Materials Science +1209.0358 Functional Analysis +1209.0363 History and Overview +1209.0364 Populations and Evolution +1209.0367 Machine Learning +1209.0368 Optimization and Control +1209.0369 +1209.0371 Cosmology and Nongalactic Astrophysics +1209.0372 +1209.0387 Analysis of PDEs +1209.0388 Cosmology and Nongalactic Astrophysics +1209.0390 Computational Finance +1209.0392 Classical Analysis and ODEs +1209.0395 Mesoscale and Nanoscale Physics +1209.0396 +1209.0397 Experiment +1209.0398 Plasma Physics +1209.0407 Solar and Stellar Astrophysics +1209.0410 Multimedia +1209.0412 Number Theory +1209.0419 Fluid Dynamics +1209.0421 Physics Education +1209.0423 Probability +1209.0425 Combinatorics +1209.0429 Representation Theory +1209.0432 Materials Science +1209.0433 Phenomenology +1209.0434 Algebraic Geometry +1209.0442 Instrumentation and Methods for Astrophysics +1209.0443 Algebraic Geometry +1209.0446 Algebraic Geometry +1209.0448 +1209.0449 +cond-mat/0105619 +cond-mat/0112459 +math-ph/0511013 +math-ph/0512019 +math/0611768 Symplectic Geometry +physics/0605179 Physics and Society +0704.2768 Analysis of PDEs +0708.0563 Probability +0709.2361 +0711.4117 Analysis of PDEs +0801.3438 +0810.5536 +0812.4426 Symplectic Geometry +0901.3014 Dynamical Systems +0902.1060 Optimization and Control +0902.1156 Probability +0907.0148 Complex Variables +0907.2046 Quantum Gases +0910.3192 Group Theory +0910.4668 Symbolic Computation +0911.0109 Probability +0911.1762 +1001.2203 Dynamical Systems +1001.2345 Combinatorics +1001.3386 Symplectic Geometry +1003.3582 Portfolio Management +1004.0625 Differential Geometry +1009.0881 Optimization and Control +1009.1940 Geometric Topology +1009.2628 Combinatorics +1010.2140 Symplectic Geometry +1011.1492 Classical Analysis and ODEs +1011.1541 Classical Analysis and ODEs +1012.0197 Optimization and Control +1012.3105 +1101.0574 Number Theory +1101.5082 Combinatorics +1103.1130 Optimization and Control +1103.3881 Symplectic Geometry +1103.4593 Quantum Algebra +1103.5671 Statistical Mechanics +1104.3260 Combinatorics +1106.5537 Phenomenology +1107.4086 Phenomenology +1107.5194 Optimization and Control +1110.4137 Algebraic Topology +1111.2521 High Energy Astrophysical Phenomena +1111.6701 Optimization and Control +1112.1856 +1112.2220 Cosmology and Nongalactic Astrophysics +1112.5302 +1112.5556 Plasma Physics +1112.5990 Rings and Algebras +1112.6171 +1201.1169 Group Theory +1201.2424 Mesoscale and Nanoscale Physics +1201.4149 +1201.4869 Mesoscale and Nanoscale Physics +1201.5843 +1202.0483 High Energy Astrophysical Phenomena +1202.0558 Phenomenology +1202.0681 Combinatorics +1202.2879 Mesoscale and Nanoscale Physics +1202.5058 +1202.5153 Materials Science +1202.6567 Atmospheric and Oceanic Physics +1203.1116 Phenomenology +1203.3185 Probability +1203.4345 Systems and Control +1204.0747 Computational Geometry +1204.1620 Experiment +1204.2738 +1204.3578 Geometric Topology +1204.3622 Phenomenology +1204.4652 Other Condensed Matter +1204.5011 Geometric Topology +1204.5298 Earth and Planetary Astrophysics +1204.5375 Disordered Systems and Neural Networks +1205.0924 Mesoscale and Nanoscale Physics +1205.1081 Strongly Correlated Electrons +1205.1299 Physics and Society +1205.1432 Cosmology and Nongalactic Astrophysics +1205.2005 Distributed, Parallel, and Cluster Computing +1205.3061 Theory +1205.3098 Accelerator Physics +1205.3850 Statistical Mechanics +1205.4024 Phenomenology +1205.4475 Theory +1206.0601 Earth and Planetary Astrophysics +1206.1608 Strongly Correlated Electrons +1206.2902 Theory +1206.3488 Chaotic Dynamics +1206.3660 High Energy Astrophysical Phenomena +1206.5811 Neurons and Cognition +1206.6528 +1207.1114 Computer Vision and Pattern Recognition +1207.1715 Earth and Planetary Astrophysics +1207.4488 Atmospheric and Oceanic Physics +1207.5359 +1207.5773 Phenomenology +1207.6043 Strongly Correlated Electrons +1207.6581 Instrumentation and Detectors +1208.0049 Chaotic Dynamics +1208.0388 Materials Science +1208.1066 +1208.1190 Cosmology and Nongalactic Astrophysics +1208.1519 Functional Analysis +1208.1934 Computational Engineering, Finance, and Science +1208.2032 Category Theory +1208.2033 High Energy Astrophysical Phenomena +1208.2034 Accelerator Physics +1208.2035 High Energy Astrophysical Phenomena +1208.2046 +1208.2048 Instrumentation and Methods for Astrophysics +1208.2054 Phenomenology +1208.2058 Earth and Planetary Astrophysics +1208.2060 Networking and Internet Architecture +1208.2062 General Mathematics +1208.2064 Probability +1208.2068 Portfolio Management +1208.2071 Solar and Stellar Astrophysics +1208.2073 Networking and Internet Architecture +1208.2078 Information Theory +1208.2079 Networking and Internet Architecture +1208.2082 +1208.2085 High Energy Astrophysical Phenomena +1208.2087 Geometric Topology +1208.2092 Neural and Evolutionary Computing +1208.2098 Commutative Algebra +1208.2100 Neurons and Cognition +1208.2102 Artificial Intelligence +1208.2110 +1208.2113 Methodology +1208.2115 Distributed, Parallel, and Cluster Computing +1208.2117 Analysis of PDEs +1208.2119 Materials Science +1208.2122 Accelerator Physics +1208.2124 Operator Algebras +1208.2125 Formal Languages and Automata Theory +1208.2127 Geometric Topology +1208.2128 Computer Vision and Pattern Recognition +1208.2134 Phenomenology +1208.2136 Analysis of PDEs +1208.2137 Number Theory +1208.2138 Representation Theory +1208.2139 Combinatorics +1208.2140 Logic +1208.2141 Data Analysis, Statistics and Probability +1208.2149 Number Theory +1208.2154 Instrumentation and Methods for Astrophysics +1208.2155 Analysis of PDEs +1208.2158 Analysis of PDEs +1208.2164 Combinatorics +1208.2166 Theory +1208.2169 Cryptography and Security +1208.2171 Probability +1208.2174 Strongly Correlated Electrons +1208.2176 Number Theory +1208.2177 Biomolecules +1208.2178 History and Overview +1208.2199 Artificial Intelligence +1208.2202 Rings and Algebras +1208.2205 Information Theory +1208.2210 Combinatorics +1208.2213 Dynamical Systems +1208.2214 Neural and Evolutionary Computing +1208.2217 Computational Complexity +1208.2221 Probability +1208.2224 Complex Variables +1208.2226 Commutative Algebra +1208.2230 Representation Theory +1208.2232 Algebraic Topology +1208.2234 Strongly Correlated Electrons +1208.2236 General Mathematics +1208.2238 Populations and Evolution +1208.2239 Social and Information Networks +1208.2243 History and Overview +1208.2250 Cell Behavior +1208.2252 +1208.2255 Quantum Gases +1208.2258 Combinatorics +1208.2259 +astro-ph/0402012 +astro-ph/0402013 +gr-qc/0703149 +math-ph/0509021 +math-ph/0509039 +math-ph/0604027 +math-ph/0608052 +math/0312309 General Mathematics +math/0509408 Combinatorics +math/0510153 Probability +0708.0221 +0710.5329 Algebraic Geometry +0712.1056 +0806.3412 Number Theory +0808.0816 Statistical Mechanics +0904.2068 Representation Theory +0907.1611 +0909.5232 Algebraic Geometry +0910.0155 Functional Analysis +0910.2120 Probability +0910.5000 Optics +0911.3821 Functional Analysis +1001.5047 Formal Languages and Automata Theory +1002.2559 Theory +1003.3528 Algebraic Geometry +1005.1765 Dynamical Systems +1006.0531 Metric Geometry +1007.0333 Populations and Evolution +1007.4285 General Topology +1008.0013 Algebraic Geometry +1009.2637 Differential Geometry +1009.3459 Theory +1009.3616 Differential Geometry +1009.3846 +1009.5710 +1010.2637 Classical Analysis and ODEs +1010.4063 Probability +1012.3036 Number Theory +1012.4291 General Finance +1012.4711 Probability +1102.0236 Analysis of PDEs +1102.0678 Differential Geometry +1102.4047 +1104.1549 Functional Analysis +1104.5063 Dynamical Systems +1105.1464 +1105.2479 Numerical Analysis +1105.3838 Cosmology and Nongalactic Astrophysics +1105.5917 Dynamical Systems +1106.1504 +1106.1702 Portfolio Management +1106.2112 Quantum Algebra +1106.3485 Superconductivity +1106.5623 Strongly Correlated Electrons +1106.6041 Representation Theory +1107.0336 Computational Complexity +1107.0556 +1107.3511 Rings and Algebras +1107.3544 Quantum Algebra +1107.4943 Probability +1109.0534 Superconductivity +1109.1697 +1109.2894 Atomic Physics +1109.4090 +1109.4131 Strongly Correlated Electrons +1109.4454 Probability +1109.5347 Operator Algebras +1109.5669 Algebraic Geometry +1110.0080 Dynamical Systems +1110.0249 Functional Analysis +1110.0719 Strongly Correlated Electrons +1110.1918 +1110.4383 Mesoscale and Nanoscale Physics +1110.4800 Combinatorics +1110.5263 Analysis of PDEs +1110.5335 Astrophysics of Galaxies +1111.2083 +1111.2400 Cosmology and Nongalactic Astrophysics +1111.2810 Mesoscale and Nanoscale Physics +1111.3150 Optics +1111.3611 Quantum Gases +1111.3872 Phenomenology +1112.0395 Statistical Mechanics +1112.0586 Strongly Correlated Electrons +1112.0835 Optimization and Control +1112.0938 Experiment +1112.1774 Cosmology and Nongalactic Astrophysics +1112.3309 Theory +1112.3359 Theory +1112.5219 Materials Science +1112.5233 +1112.6349 +1201.0470 Statistics Theory +1201.1761 Theory +1201.1871 Optimization and Control +1201.2383 Social and Information Networks +1201.5194 Phenomenology +1201.5356 Mesoscale and Nanoscale Physics +1201.5386 Superconductivity +1202.0233 Optics +1202.1250 Differential Geometry +1202.2329 Solar and Stellar Astrophysics +1202.3154 Optics +1202.3397 Cosmology and Nongalactic Astrophysics +1202.5588 Classical Analysis and ODEs +1202.5812 Algebraic Geometry +1202.5923 Analysis of PDEs +1202.5933 Applications +1202.6094 Distributed, Parallel, and Cluster Computing +1202.6112 Combinatorics +1202.6320 Differential Geometry +1202.6458 Differential Geometry +1202.6556 Combinatorics +1202.6586 Computer Vision and Pattern Recognition +1203.0076 Computer Vision and Pattern Recognition +1203.0179 History and Philosophy of Physics +1203.0369 Cryptography and Security +1203.0407 Commutative Algebra +1203.1816 Classical Physics +1203.2699 Analysis of PDEs +1203.2764 Phenomenology +1203.2987 Learning +1203.3140 Earth and Planetary Astrophysics +1203.3272 Quantum Algebra +1203.3297 Statistical Mechanics +1203.3461 Learning +1203.3462 Learning +1203.3463 Information Retrieval +1203.3464 Artificial Intelligence +1203.3465 Artificial Intelligence +1203.3466 Artificial Intelligence +1203.3467 Artificial Intelligence +1203.3468 Learning +1203.3469 Artificial Intelligence +1203.3470 Artificial Intelligence +1203.3471 Learning +1203.3472 Learning +1203.3473 Artificial Intelligence +1203.3474 Artificial Intelligence +1203.3475 Learning +1203.3476 Learning +1203.3477 Artificial Intelligence +1203.3478 Artificial Intelligence +1203.3479 Methodology +1203.3480 Computer Science and Game Theory +1203.3481 Learning +1203.3482 Artificial Intelligence +1203.3483 Learning +1203.3484 Computation +1203.3485 Learning +1203.3486 Learning +1203.3487 Artificial Intelligence +1203.3488 Learning +1203.3489 Learning +1203.3490 Artificial Intelligence +1203.3491 Learning +1203.3492 Learning +1203.3493 Artificial Intelligence +1203.3494 Learning +1203.3495 Learning +1203.3496 Learning +1203.3497 Learning +1203.3498 Computer Science and Game Theory +1203.3499 Artificial Intelligence +1203.3500 Artificial Intelligence +1203.3501 Learning +1203.3502 Artificial Intelligence +1203.3503 Methodology +1203.3504 Methodology +1203.3505 Methodology +1203.3506 Learning +1203.3507 Learning +1203.3508 Artificial Intelligence +1203.3509 Artificial Intelligence +1203.3510 Artificial Intelligence +1203.3511 Learning +1203.3512 Artificial Intelligence +1203.3513 Artificial Intelligence +1203.3514 Social and Information Networks +1203.3515 Methodology +1203.3516 Learning +1203.3517 Learning +1203.3518 Learning +1203.3519 Learning +1203.3520 Learning +1203.3521 Learning +1203.3522 Learning +1203.3523 Systems and Control +1203.3524 Machine Learning +1203.3525 Artificial Intelligence +1203.3526 Learning +1203.3527 Computer Science and Game Theory +1203.3528 Artificial Intelligence +1203.3529 Learning +1203.3530 Learning +1203.3531 Artificial Intelligence +1203.3532 Learning +1203.3533 Learning +1203.3534 Learning +1203.3535 Information Retrieval +1203.3536 Learning +1203.3537 Learning +1203.3538 Artificial Intelligence +1203.3551 Cosmology and Nongalactic Astrophysics +1203.3553 Materials Science +1203.3559 Other Statistics +1203.3560 Number Theory +1203.3564 Instrumentation and Detectors +1203.3565 Analysis of PDEs +1203.3569 Dynamical Systems +1203.3573 Analysis of PDEs +1203.3574 Human-Computer Interaction +1203.3575 Distributed, Parallel, and Cluster Computing +1203.3584 Computation and Language +1203.3589 Databases +1203.3590 Solar and Stellar Astrophysics +1203.3593 Data Structures and Algorithms +1203.3595 Networking and Internet Architecture +1203.3597 Cryptography and Security +1203.3600 Lattice +1203.3601 Computational Geometry +1203.3603 Functional Analysis +1203.3605 +1203.3607 Functional Analysis +1203.3611 Digital Libraries +1203.3612 Analysis of PDEs +1203.3613 Human-Computer Interaction +1203.3616 Materials Science +1203.3619 Data Structures and Algorithms +1203.3620 Cryptography and Security +1203.3622 Cryptography and Security +1203.3624 Analysis of PDEs +1203.3626 Accelerator Physics +1203.3636 Data Structures and Algorithms +1203.3638 Applications +1203.3643 Numerical Analysis +1203.3644 Cryptography and Security +1203.3646 +1203.3648 Phenomenology +1203.3652 +1203.3653 Applications +1203.3654 Networking and Internet Architecture +1203.3657 Quantum Gases +1203.3660 Human-Computer Interaction +1203.3663 Methodology +1203.3665 Probability +1203.3667 Combinatorics +1203.3672 Applications +1203.3674 Computational Complexity +1203.3678 +1203.3680 Applications +1203.3682 Differential Geometry +1203.3683 Strongly Correlated Electrons +1203.3684 Differential Geometry +1203.3688 Computers and Society +1203.3698 Classical Analysis and ODEs +1203.3699 Combinatorics +1203.3700 Quantum Algebra +1203.3704 Networking and Internet Architecture +1203.3707 Atomic Physics +1203.3712 Applications +1203.3713 Functional Analysis +1203.3714 Fluid Dynamics +1203.3715 Differential Geometry +1203.3719 Analysis of PDEs +1203.3720 Analysis of PDEs +1203.3722 Other Computer Science +1203.3725 Computation +1203.3726 +1203.3732 High Energy Astrophysical Phenomena +1203.3734 Medical Physics +1203.3740 Group Theory +1203.3743 Group Theory +1203.3747 Other Statistics +1203.3749 Probability +1203.3750 Instrumentation and Detectors +1203.3755 +1203.3761 +1203.3764 Information Retrieval +1203.3768 Differential Geometry +1203.3771 Atmospheric and Oceanic Physics +1203.3772 Networking and Internet Architecture +1203.3774 Experiment +1203.3775 Algebraic Geometry +1203.3781 Differential Geometry +1203.3782 Experiment +1203.3788 Functional Analysis +1203.3789 Functional Analysis +1203.3793 Lattice +cond-mat/0401078 +cs/0511023 Logic in Computer Science +cs/0606091 Symbolic Computation +math/0401124 Number Theory +math/0402134 Representation Theory +math/0506381 Classical Analysis and ODEs +physics/0511141 Physics and Society +0805.4352 Superconductivity +0806.3460 +0811.0627 Complex Variables +0812.2972 +0904.1669 Probability +0904.4469 Optics +0905.1724 Cosmology and Nongalactic Astrophysics +0906.0464 Optics +0906.2481 Rings and Algebras +0907.5180 Probability +0908.2774 Mesoscale and Nanoscale Physics +0910.4124 Differential Geometry +0911.3780 Statistical Mechanics +0912.1808 Differential Geometry +0912.4782 Statistical Finance +1001.3525 Cosmology and Nongalactic Astrophysics +1002.0315 Strongly Correlated Electrons +1002.3346 Cosmology and Nongalactic Astrophysics +1003.0401 Mesoscale and Nanoscale Physics +1003.3422 Analysis of PDEs +1005.3698 Number Theory +1006.4861 Solar and Stellar Astrophysics +1006.5033 Cosmology and Nongalactic Astrophysics +1006.5345 Cosmology and Nongalactic Astrophysics +1008.4569 Dynamical Systems +1009.1199 Algebraic Geometry +1009.2030 Quantum Gases +1010.0986 Solar and Stellar Astrophysics +1010.3178 Optics +1010.4140 +1010.6294 Cosmology and Nongalactic Astrophysics +1011.2873 Theory +1012.1483 Phenomenology +1012.1518 Spectral Theory +1012.4599 Analysis of PDEs +1101.1260 Analysis of PDEs +1101.5656 Cosmology and Nongalactic Astrophysics +1102.0571 Combinatorics +1102.1605 Quantum Gases +1102.3925 Cosmology and Nongalactic Astrophysics +1103.0772 Strongly Correlated Electrons +1103.0835 +1103.2013 Pricing of Securities +1103.4382 Quantum Gases +1103.6067 +1105.4675 Superconductivity +1105.5127 Number Theory +1106.1995 Combinatorics +1106.3626 Numerical Analysis +1106.3819 Phenomenology +1107.0437 Chaotic Dynamics +1107.0491 Cosmology and Nongalactic Astrophysics +1107.3888 Strongly Correlated Electrons +1108.3018 Phenomenology +1108.3780 Information Theory +1108.4290 Cosmology and Nongalactic Astrophysics +1108.5192 Physics and Society +1109.0917 Combinatorics +1109.1600 +1109.3101 Soft Condensed Matter +1109.5797 Superconductivity +1110.3120 +1110.3970 Experiment +1110.4208 Mesoscale and Nanoscale Physics +1110.4275 Algebraic Geometry +1110.4568 Mesoscale and Nanoscale Physics +1110.5694 +1110.6258 Atomic Physics +1110.6566 +1111.0136 Number Theory +1111.1207 Superconductivity +1111.2218 Phenomenology +1111.2570 Group Theory +1111.3765 Materials Science +1111.5250 Quantum Gases +1112.0115 Solar and Stellar Astrophysics +1112.3627 Popular Physics +1112.4187 General Physics +1112.4636 Superconductivity +1112.4804 Exactly Solvable and Integrable Systems +1112.5771 Functional Analysis +1201.0063 Functional Analysis +1201.0137 +1201.0325 Operator Algebras +1201.0576 Phenomenology +1201.1548 Computational Geometry +1201.1936 Combinatorics +1201.2268 Materials Science +1201.2291 Chaotic Dynamics +1201.2416 Learning +1201.2428 Instrumentation and Methods for Astrophysics +1201.2429 Experiment +1201.2435 Materials Science +1201.2437 Computational Physics +1201.2439 Computational Physics +1201.2441 Classical Analysis and ODEs +1201.2444 Classical Physics +1201.2448 Theory +1201.2452 Computational Physics +1201.2454 Superconductivity +1201.2459 Cosmology and Nongalactic Astrophysics +1201.2462 Statistics Theory +1201.2466 +1201.2469 Materials Science +1201.2472 Phenomenology +1201.2473 Other Computer Science +1201.2474 Networking and Internet Architecture +1201.2475 +1201.2476 Computational Physics +1201.2478 Optimization and Control +1201.2480 Materials Science +1201.2481 Networking and Internet Architecture +1201.2482 Representation Theory +1201.2487 Methodology +1201.2493 Chaotic Dynamics +1201.2495 Statistical Mechanics +1201.2507 Statistical Mechanics +1201.2509 Logic +1201.2515 Digital Libraries +1201.2516 Mesoscale and Nanoscale Physics +1201.2520 Algebraic Geometry +1201.2521 Theory +1201.2522 Numerical Analysis +1201.2527 Materials Science +1201.2528 Rings and Algebras +1201.2529 Fluid Dynamics +1201.2531 Cryptography and Security +1201.2534 Cosmology and Nongalactic Astrophysics +1201.2540 Differential Geometry +1201.2542 Hardware Architecture +1201.2547 Theory +1201.2548 Superconductivity +1201.2549 Materials Science +1201.2551 Discrete Mathematics +1201.2554 Algebraic Geometry +1201.2560 Combinatorics +1201.2561 Materials Science +1201.2564 Databases +1201.2565 Phenomenology +1201.2566 Soft Condensed Matter +1201.2567 Number Theory +1201.2571 Logic +1201.2578 Cryptography and Security +1201.2581 General Mathematics +1201.2582 Metric Geometry +1201.2586 Algebraic Topology +1201.2589 Analysis of PDEs +1201.2590 Other Statistics +1201.2593 Accelerator Physics +1201.2595 Cosmology and Nongalactic Astrophysics +1201.2597 Accelerator Physics +1201.2598 Accelerator Physics +1201.2599 Probability +1201.2600 Accelerator Physics +1201.2604 Analysis of PDEs +1201.2606 Functional Analysis +1201.2609 Commutative Algebra +1201.2619 Classical Analysis and ODEs +1201.2623 Other Condensed Matter +1201.2630 Systems and Control +1201.2632 Theory +1201.2640 Accelerator Physics +1201.2645 Optics +1201.2651 Number Theory +1201.2652 Optics +1201.2654 Combinatorics +1201.2660 Experiment +1201.2670 Differential Geometry +1201.2673 Phenomenology +1201.2676 High Energy Astrophysical Phenomena +cond-mat/0510330 Materials Science +math-ph/0506051 +0803.1697 Metric Geometry +0901.2692 Algebraic Geometry +0905.0493 Dynamical Systems +0907.5424 Theory +0912.0179 Optimization and Control +1001.1014 Methodology +1001.1376 Materials Science +1002.0347 Combinatorics +1002.2317 Mesoscale and Nanoscale Physics +1003.1548 Dynamical Systems +1003.2825 Dynamical Systems +1007.2960 Differential Geometry +1008.0136 Dynamical Systems +1008.2400 Dynamical Systems +1008.4830 Probability +1008.4862 Strongly Correlated Electrons +1009.1398 Strongly Correlated Electrons +1009.2090 Differential Geometry +1009.2653 Social and Information Networks +1009.3630 Strongly Correlated Electrons +1010.3565 Strongly Correlated Electrons +1010.6188 Logic +1012.2448 Differential Geometry +1012.3158 Theory +1101.2356 Strongly Correlated Electrons +1102.1558 Optimization and Control +1102.1795 Optimization and Control +1102.2097 Lattice +1103.0552 Cosmology and Nongalactic Astrophysics +1103.3205 Mesoscale and Nanoscale Physics +1104.2471 General Finance +1104.2818 Discrete Mathematics +1104.3290 High Energy Astrophysical Phenomena +1104.4741 Probability +1105.0501 Materials Science +1105.2604 Probability +1105.3936 Earth and Planetary Astrophysics +1105.5663 Geometric Topology +1106.0075 Information Theory +1106.6063 Logic +1107.3009 Rings and Algebras +1107.3111 Neurons and Cognition +1109.1212 +1110.2237 Combinatorics +1110.3251 Functional Analysis +1110.3310 Geometric Topology +1110.5776 +1111.0663 Computational Complexity +1111.4055 Phenomenology +1112.0665 Information Theory +1112.1450 Statistics Theory +1112.1491 +1112.2199 Representation Theory +1112.2756 Lattice +1112.4266 Representation Theory +1201.1969 Algebraic Geometry +1202.0630 Disordered Systems and Neural Networks +1202.2744 Disordered Systems and Neural Networks +1202.4389 Functional Analysis +1202.5233 Data Structures and Algorithms +1203.1544 Theory +1203.1894 Phenomenology +1203.5239 Strongly Correlated Electrons +1204.0339 Superconductivity +1204.0737 Materials Science +1204.5070 Classical Analysis and ODEs +1204.5412 Mesoscale and Nanoscale Physics +1205.0633 Atomic Physics +1205.2512 Theory +1205.4926 +1206.0320 Combinatorics +1206.1421 Other Condensed Matter +1206.6017 Experiment +1206.6225 Distributed, Parallel, and Cluster Computing +1207.0628 Lattice +1207.1118 Functional Analysis +1207.1675 Chaotic Dynamics +1207.2449 Strongly Correlated Electrons +1207.2545 Phenomenology +1207.3641 Statistical Mechanics +1207.4694 Data Structures and Algorithms +1207.5382 Superconductivity +1207.6867 Theory +1208.0128 Algebraic Geometry +1208.0926 Classical Analysis and ODEs +1208.2665 Phenomenology +1208.4278 Optics +1208.4778 +1208.5457 Phenomenology +1208.5494 +1208.5976 Quantum Gases +1209.0494 Phenomenology +1209.1400 Statistical Mechanics +1209.2782 Phenomenology +1209.3270 +1209.3301 Cosmology and Nongalactic Astrophysics +1209.4240 Statistical Mechanics +1209.4978 Artificial Intelligence +1209.5676 Soft Condensed Matter +1209.6097 Materials Science +1209.6100 Dynamical Systems +1210.0942 Mesoscale and Nanoscale Physics +1210.1079 Quantum Gases +1210.3081 Optics +1210.4038 Complex Variables +1210.7499 +1210.7509 Analysis of PDEs +1211.1494 Instrumentation and Detectors +1211.1606 Combinatorics +1211.2544 Plasma Physics +1211.3077 +1211.3228 Analysis of PDEs +1211.3253 History and Philosophy of Physics +1211.3375 Databases +1211.4254 Information Theory +1211.4574 Instrumentation and Methods for Astrophysics +1211.4746 High Energy Astrophysical Phenomena +1211.6072 General Physics +1211.6520 Materials Science +1211.6724 Computational Complexity +1211.6901 Solar and Stellar Astrophysics +1211.6914 Soft Condensed Matter +1211.6997 Computational Complexity +1211.7057 Combinatorics +1211.7059 Cosmology and Nongalactic Astrophysics +1211.7061 Phenomenology +1211.7064 Solar and Stellar Astrophysics +1211.7066 Phenomenology +1211.7071 Theory +1211.7075 Networking and Internet Architecture +1211.7097 +1211.7100 Software Engineering +1211.7102 Computer Vision and Pattern Recognition +1211.7103 +1211.7104 Software Engineering +1211.7106 Phenomenology +1211.7110 Combinatorics +1211.7113 Networking and Internet Architecture +1211.7115 Quantum Algebra +1211.7117 Combinatorics +1211.7120 Machine Learning +1211.7122 +1211.7128 Combinatorics +1211.7129 Phenomenology +1211.7131 Commutative Algebra +1211.7135 +1211.7136 Solar and Stellar Astrophysics +1211.7140 Analysis of PDEs +1211.7146 Phenomenology +1211.7151 Numerical Analysis +1211.7152 Logic in Computer Science +1211.7153 Physics Education +1211.7155 Logic +1211.7158 Numerical Analysis +1211.7159 Operator Algebras +1211.7161 Computational Complexity +1211.7169 Lattice +1211.7172 General Finance +1211.7173 Phenomenology +1211.7174 Fluid Dynamics +1211.7175 Phenomenology +1211.7181 Probability +1211.7182 Phenomenology +1211.7183 +1211.7184 Neural and Evolutionary Computing +1211.7186 Algebraic Geometry +1211.7188 History and Overview +1211.7191 Probability +1211.7192 Molecular Networks +1211.7194 Physics Education +1211.7196 Molecular Networks +1211.7197 Functional Analysis +1211.7199 Number Theory +1211.7201 Phenomenology +1211.7202 Optimization and Control +1211.7206 Number Theory +1211.7207 Phenomenology +1211.7209 Phenomenology +1211.7213 Fluid Dynamics +1211.7216 Probability +1211.7219 Computer Vision and Pattern Recognition +1211.7221 Probability +1211.7227 Geophysics +1211.7228 Statistical Mechanics +1211.7230 Computers and Society +1211.7231 Optics +1211.7236 Analysis of PDEs +1211.7239 Information Theory +1211.7242 Experiment +1211.7244 Combinatorics +1211.7245 Analysis of PDEs +1211.7249 Soft Condensed Matter +1211.7250 Mesoscale and Nanoscale Physics +1211.7267 Phenomenology +1211.7270 Dynamical Systems +1211.7272 Quantum Gases +1211.7274 Phenomenology +1211.7276 Information Theory +1211.7277 Optimization and Control +1211.7279 Analysis of PDEs +1211.7283 Information Theory +1211.7284 Instrumentation and Methods for Astrophysics +1211.7288 Phenomenology +1211.7294 Instrumentation and Detectors +1211.7299 +1211.7302 Data Structures and Algorithms +1211.7303 Analysis of PDEs +1211.7304 Solar and Stellar Astrophysics +1211.7307 Populations and Evolution +1211.7309 Distributed, Parallel, and Cluster Computing +1211.7322 Lattice +1211.7326 Information Theory +1211.7329 Combinatorics +1211.7332 Methodology +1211.7336 Methodology +1211.7337 +1211.7339 Group Theory +1211.7341 Combinatorics +1211.7343 Data Analysis, Statistics and Probability +1211.7345 Software Engineering +1211.7346 Computational Complexity +1211.7348 Geometric Topology +1211.7356 Networking and Internet Architecture +1211.7362 Dynamical Systems +1211.7363 Superconductivity +1211.7369 Machine Learning +cond-mat/0309066 Superconductivity +math/0412335 Dynamical Systems +math/0508355 Dynamical Systems +0803.0139 General Physics +0804.0433 Representation Theory +0804.0881 General Physics +0806.1766 General Physics +0811.2348 +0811.4668 Superconductivity +0812.2855 Phenomenology +0910.1306 Category Theory +0910.5115 Probability +1005.2422 Representation Theory +1008.0171 +1009.1876 Theory +1010.2663 Commutative Algebra +1012.2310 Statistical Mechanics +1102.2618 Functional Analysis +1104.1857 Superconductivity +1104.5142 Theory +1105.1734 Exactly Solvable and Integrable Systems +1106.2130 Phenomenology +1106.6149 Quantum Algebra +1107.0217 Soft Condensed Matter +1107.5272 Strongly Correlated Electrons +1108.0627 Optimization and Control +1108.1935 +1108.4370 Theory +1108.5329 +1109.4300 Complex Variables +1110.1956 Quantum Gases +1110.3230 Experiment +1110.3536 High Energy Astrophysical Phenomena +1110.6531 Lattice +1110.6820 Cosmology and Nongalactic Astrophysics +1111.3723 Theory +1111.6269 +1201.2948 +1202.0190 Probability +1202.1495 +1202.4653 Combinatorics +1202.5110 Information Theory +1202.6273 Analysis of PDEs +1203.2697 Mesoscale and Nanoscale Physics +1203.4225 +1203.5850 Materials Science +1203.6201 Group Theory +1203.6368 Cosmology and Nongalactic Astrophysics +1204.0337 +1204.1190 Mesoscale and Nanoscale Physics +1204.2929 Phenomenology +1205.1965 Quantum Gases +1205.2667 +1205.5560 Cosmology and Nongalactic Astrophysics +1205.5860 +1205.6233 Social and Information Networks +1205.7008 +1206.0105 +1206.0132 Fluid Dynamics +1206.1977 Lattice +1206.4780 +1207.0512 High Energy Astrophysical Phenomena +1207.1584 Phenomenology +1207.1685 Materials Science +1207.2126 +1207.2624 Optics +1207.2713 Classical Analysis and ODEs +1207.3501 +1207.3566 Mesoscale and Nanoscale Physics +1207.5124 Formal Languages and Automata Theory +1208.0027 Strongly Correlated Electrons +1208.0117 Differential Geometry +1208.1253 Experiment +1208.2448 Databases +1208.2893 Cosmology and Nongalactic Astrophysics +1208.3327 Theory +1208.4792 Phenomenology +1208.5942 +1209.0086 +1209.0167 Neural and Evolutionary Computing +1209.1251 Theory +1209.1487 Optics +1209.5236 Statistical Mechanics +1209.5755 Theory +1209.6218 +1209.6401 Phenomenology +1210.0124 Analysis of PDEs +1210.0806 Cosmology and Nongalactic Astrophysics +1210.4412 +1210.7679 Solar and Stellar Astrophysics +1210.8395 +1211.0113 Analysis of PDEs +1211.0383 Functional Analysis +1211.0392 Atomic Physics +1211.0609 +1211.0928 Populations and Evolution +1211.0950 Lattice +1211.1130 Dynamical Systems +1211.1297 Soft Condensed Matter +1211.1378 Solar and Stellar Astrophysics +1211.1401 Superconductivity +1211.1405 Applications +1211.1407 +1211.1408 Solar and Stellar Astrophysics +1211.1410 Discrete Mathematics +1211.1418 Strongly Correlated Electrons +1211.1424 Numerical Analysis +1211.1431 Numerical Analysis +1211.1432 Combinatorics +1211.1437 Plasma Physics +1211.1438 Optimization and Control +1211.1439 Statistics Theory +1211.1441 Systems and Control +1211.1444 Algebraic Topology +1211.1445 Operator Algebras +1211.1453 Optimization and Control +1211.1457 Cryptography and Security +1211.1463 Quantum Gases +1211.1465 Functional Analysis +1211.1466 +1211.1472 Algebraic Geometry +1211.1473 Theory +1211.1477 Commutative Algebra +1211.1479 Solar and Stellar Astrophysics +1211.1480 Number Theory +1211.1481 Solar and Stellar Astrophysics +1211.1483 Solar and Stellar Astrophysics +1211.1484 Solar and Stellar Astrophysics +1211.1485 +1211.1499 Adaptation and Self-Organizing Systems +1211.1500 Cosmology and Nongalactic Astrophysics +1211.1502 Solar and Stellar Astrophysics +1211.1504 Strongly Correlated Electrons +1211.1505 Data Structures and Algorithms +1211.1506 Data Structures and Algorithms +1211.1508 Mesoscale and Nanoscale Physics +1211.1510 Materials Science +1211.1515 +1211.1518 Analysis of PDEs +1211.1527 Cosmology and Nongalactic Astrophysics +1211.1528 Numerical Analysis +1211.1532 +1211.1545 Lattice +1211.1548 Operator Algebras +1211.1551 Soft Condensed Matter +1211.1552 Computer Vision and Pattern Recognition +1211.1555 Category Theory +1211.1560 +1211.1561 Superconductivity +1211.1563 Solar and Stellar Astrophysics +1211.1564 Pricing of Securities +1211.1565 Databases +1211.1573 Lattice +1211.1574 +1211.1577 High Energy Astrophysical Phenomena +1211.1580 Algebraic Geometry +1211.1581 Performance +1211.1582 Number Theory +1211.1586 +1211.1589 Fluid Dynamics +1211.1590 High Energy Astrophysical Phenomena +1211.1592 Methodology +1211.1599 Materials Science +1211.1604 Geometric Topology +1211.1610 +1211.1611 General Physics +1211.1613 Analysis of PDEs +1211.1615 Strongly Correlated Electrons +1211.1622 Information Theory +1211.1636 Computational Complexity +1211.1639 Functional Analysis +1211.1640 Algebraic Geometry +1211.1647 Quantum Algebra +1211.1651 K-Theory and Homology +1211.1652 Instrumentation and Methods for Astrophysics +1211.1654 Cryptography and Security +1211.1658 Distributed, Parallel, and Cluster Computing +1211.1660 Information Theory +1211.1661 Data Structures and Algorithms +1211.1665 Materials Science +cond-mat/0610817 Statistical Mechanics +math/0209048 Quantum Algebra +math/0610578 Statistics Theory +0804.3016 Numerical Analysis +0806.4533 Numerical Analysis +1203.4094 Materials Science +1203.6488 Solar and Stellar Astrophysics +1206.1644 +1206.1645 +1209.2920 Classical Analysis and ODEs +1209.3350 Classical Analysis and ODEs +1209.3351 Classical Analysis and ODEs +1209.5825 Classical Analysis and ODEs +1210.4219 Classical Analysis and ODEs +1210.6126 Classical Analysis and ODEs +1207.0962 Materials Science +0704.0323 +0807.0373 Geometric Topology +0912.2029 Other Condensed Matter +1001.0672 Materials Science +1001.3213 Computational Engineering, Finance, and Science +1002.2116 Algebraic Geometry +1003.5125 Theory +1004.3023 General Physics +1008.0595 Combinatorics +1009.1023 Theory +1009.5428 Optics +1012.0562 Lattice +1012.5329 Commutative Algebra +1102.3049 Geometric Topology +1104.3532 Strongly Correlated Electrons +1104.4650 Theory +1105.0632 Probability +1105.2358 +1105.4692 Category Theory +1106.0468 Systems and Control +1106.0891 Quantum Gases +1106.1869 Earth and Planetary Astrophysics +1106.3722 Mesoscale and Nanoscale Physics +1106.4211 Numerical Analysis +1107.2854 Algebraic Geometry +1107.4149 Algebraic Geometry +1107.5248 +1107.5543 Social and Information Networks +1108.0324 +1108.4145 Mesoscale and Nanoscale Physics +1108.4649 +1108.6116 Optics +1109.2663 Group Theory +1109.2794 Theory +1109.3611 +1109.4223 Cosmology and Nongalactic Astrophysics +1109.6005 +1110.0291 +1110.2442 Commutative Algebra +1110.3278 +1110.6449 Probability +1111.0274 General Mathematics +1111.0437 Optics +1111.3775 Mesoscale and Nanoscale Physics +1111.4667 Materials Science +1111.5351 Physics and Society +1111.5906 Statistical Mechanics +1111.5951 Chaotic Dynamics +1111.6019 +1112.2390 +1112.3426 Information Theory +1112.3645 Phenomenology +1112.3810 Information Theory +1112.4320 Mesoscale and Nanoscale Physics +1112.4585 Mesoscale and Nanoscale Physics +1112.5169 Phenomenology +1201.0586 Statistics Theory +1201.1998 Statistical Mechanics +1201.2196 +1201.2484 Solar and Stellar Astrophysics +1201.2890 Probability +1201.4201 Classical Physics +1201.4554 +1201.6297 +1201.6329 Mesoscale and Nanoscale Physics +1202.0422 Cosmology and Nongalactic Astrophysics +1202.1532 Phenomenology +1202.1614 Statistical Mechanics +1202.2296 Logic in Computer Science +1202.2299 Phenomenology +1202.2636 Mesoscale and Nanoscale Physics +1202.3400 +1202.3429 +1202.4098 Information Theory +1202.4730 +1202.6230 Populations and Evolution +1202.6568 Optics +1203.0745 Mesoscale and Nanoscale Physics +1203.1452 Solar and Stellar Astrophysics +1203.3348 Fluid Dynamics +1203.3594 Mesoscale and Nanoscale Physics +1203.3645 Group Theory +1203.3889 Mesoscale and Nanoscale Physics +1203.4565 Theory +1203.4712 Mesoscale and Nanoscale Physics +1203.4713 Mesoscale and Nanoscale Physics +1203.6039 +1203.6207 Statistical Mechanics +1203.6497 Instrumentation and Methods for Astrophysics +1204.0115 Geometric Topology +1204.0761 Mesoscale and Nanoscale Physics +1204.2339 Mesoscale and Nanoscale Physics +1204.2861 Materials Science +1204.4761 Statistics Theory +1204.5907 Differential Geometry +1204.6021 +1205.0967 Solar and Stellar Astrophysics +1205.2295 Risk Management +1205.2309 Earth and Planetary Astrophysics +1205.2419 Instrumentation and Methods for Astrophysics +1205.3415 Exactly Solvable and Integrable Systems +1205.3942 Theory +1205.4094 Statistics Theory +1205.4095 Statistics Theory +1205.4119 Algebraic Geometry +1205.4558 Plasma Physics +1205.4691 Logic in Computer Science +1205.4729 Superconductivity +1205.4734 Solar and Stellar Astrophysics +1205.4735 Functional Analysis +1205.4739 Analysis of PDEs +1205.4748 Portfolio Management +1205.4750 Applications +1205.4751 Phenomenology +1205.4753 Probability +1205.4754 Exactly Solvable and Integrable Systems +1205.4763 Numerical Analysis +1205.4765 Differential Geometry +1205.4766 Atomic Physics +1205.4769 Combinatorics +1205.4770 Machine Learning +1205.4771 +1205.4774 Quantum Gases +1205.4775 Atomic Physics +1205.4779 Differential Geometry +1205.4786 Statistical Mechanics +1205.4788 Logic in Computer Science +1205.4793 Differential Geometry +1205.4794 Instrumentation and Methods for Astrophysics +1205.4797 Geometric Topology +1205.4798 Geometric Topology +1205.4799 Analysis of PDEs +1205.4802 Logic in Computer Science +1205.4807 Other Statistics +1205.4809 Distributed, Parallel, and Cluster Computing +1205.4812 Analysis of PDEs +1205.4813 Cryptography and Security +1205.4814 Analysis of PDEs +1205.4820 Optics +1205.4821 Computational Complexity +1205.4823 Chemical Physics +1205.4829 Cryptography and Security +1205.4831 Computer Vision and Pattern Recognition +1205.4832 Cryptography and Security +1205.4836 Experiment +1205.4837 Functional Analysis +1205.4841 Computation +1205.4842 Other Condensed Matter +1205.4844 Methodology +1205.4848 Mesoscale and Nanoscale Physics +1205.4856 Information Theory +1205.4860 Instrumentation and Detectors +1205.4866 Classical Analysis and ODEs +1205.4867 Mesoscale and Nanoscale Physics +1205.4869 Superconductivity +1205.4870 Group Theory +1205.4871 Algebraic Geometry +1205.4874 Cryptography and Security +1205.4876 Information Theory +1205.4883 Distributed, Parallel, and Cluster Computing +1205.4886 Chaotic Dynamics +1205.4889 Computer Science and Game Theory +1205.4891 Learning +1205.4892 Algebraic Geometry +1205.4893 Computational Complexity +1205.4894 Social and Information Networks +1205.4899 +1205.4900 Other Computer Science +1205.4902 Phenomenology +1205.4906 Dynamical Systems +1205.4917 Probability +1205.4921 Mesoscale and Nanoscale Physics +1205.4923 Differential Geometry +1205.4924 Optics +1205.4925 Materials Science +1205.4928 Software Engineering +1205.4930 Dynamical Systems +1205.4931 Experiment +1205.4944 Human-Computer Interaction +1205.4954 Disordered Systems and Neural Networks +1205.4955 Applications +1205.4959 Networking and Internet Architecture +1205.4966 Solar and Stellar Astrophysics +1205.4967 Hardware Architecture +1205.4968 Data Structures and Algorithms +1205.4971 Information Theory +1205.4976 Theory +1205.4983 Information Theory +1205.4984 Other Computer Science +1205.4988 Information Theory +1205.4990 Chaotic Dynamics +1205.4993 Materials Science +1205.4995 Analysis of PDEs +1205.4996 Information Theory +1205.4997 Statistical Mechanics +1205.5003 Multiagent Systems +1205.5004 Information Theory +1205.5007 High Energy Astrophysical Phenomena +1205.5009 Dynamical Systems +cond-mat/9801186 Superconductivity +cond-mat/9801222 Superconductivity +math/0611506 Functional Analysis +0708.3681 +0710.5405 Strongly Correlated Electrons +0712.2424 Combinatorics +0802.1266 Number Theory +0802.1874 +0803.0422 Strongly Correlated Electrons +0804.3049 Number Theory +0805.3176 Number Theory +0808.1065 Combinatorics +0809.4747 Discrete Mathematics +0903.2232 Information Theory +0905.3533 Strongly Correlated Electrons +0907.4947 Analysis of PDEs +0908.0345 Combinatorics +0910.0692 Differential Geometry +0910.3907 Analysis of PDEs +0912.4863 +1001.1766 Number Theory +1001.2047 Instrumentation and Detectors +1001.3381 Number Theory +1001.5091 +1004.1347 Exactly Solvable and Integrable Systems +1004.2149 Statistical Mechanics +1004.2422 Dynamical Systems +1004.4366 Materials Science +1004.5179 +1006.2935 Mesoscale and Nanoscale Physics +1007.3450 Classical Analysis and ODEs +1008.2422 Computational Complexity +1009.0107 Theory +1011.3374 +1011.5997 +1012.0887 Networking and Internet Architecture +1012.1367 Learning +1012.1585 Algebraic Geometry +1012.2426 Theory +1012.4534 Theory +1101.3148 Differential Geometry +1101.3152 Differential Geometry +1101.4866 Materials Science +1101.5455 Computational Complexity +1102.2095 Computational Complexity +1102.2265 Probability +1103.2333 Number Theory +1104.0250 Dynamical Systems +1104.1087 Numerical Analysis +1104.1214 +1105.1334 +1105.1978 Solar and Stellar Astrophysics +1105.2518 Materials Science +1105.2587 +1105.3259 Information Theory +1105.4444 Geometric Topology +1105.6008 Phenomenology +1106.0871 Classical Analysis and ODEs +1106.5314 Theory +1106.6042 Cosmology and Nongalactic Astrophysics +1107.1219 Combinatorics +1107.1453 Materials Science +1107.2005 +1107.2113 Earth and Planetary Astrophysics +1107.3728 Phenomenology +1107.4440 Complex Variables +1107.4847 Combinatorics +1107.5596 Cosmology and Nongalactic Astrophysics +1108.1198 Cosmology and Nongalactic Astrophysics +1108.1473 Combinatorics +1108.2293 +1108.2372 Plasma Physics +1108.3643 Cosmology and Nongalactic Astrophysics +1108.4508 Symbolic Computation +1108.5440 Soft Condensed Matter +1108.6236 Theory +1109.0640 Theory +1109.2698 Theory +1109.3142 Statistics Theory +1109.3466 High Energy Astrophysical Phenomena +1109.5896 Phenomenology +1110.0417 Experiment +1110.0474 Phenomenology +1110.1631 Cosmology and Nongalactic Astrophysics +1110.2850 High Energy Astrophysical Phenomena +1110.3161 Disordered Systems and Neural Networks +1110.3872 +1110.4335 Phenomenology +1110.5309 Soft Condensed Matter +1110.6166 Disordered Systems and Neural Networks +1110.6382 Phenomenology +1110.6699 Soft Condensed Matter +1111.2216 +1111.2474 Phenomenology +1111.2646 +1111.3783 Theory +1111.4164 +1111.5225 Statistical Mechanics +1111.5582 Superconductivity +1111.5815 Soft Condensed Matter +1112.0197 Mesoscale and Nanoscale Physics +1112.0408 +1112.0915 Phenomenology +1112.1454 Algebraic Geometry +1112.2578 Superconductivity +1112.3281 Strongly Correlated Electrons +1112.3986 +1112.4082 History and Overview +1112.6256 Data Structures and Algorithms +1201.1031 Cosmology and Nongalactic Astrophysics +1201.1862 Probability +1201.2322 Number Theory +1201.4222 Exactly Solvable and Integrable Systems +1201.5776 +1201.6046 Information Theory +1201.6052 Statistics Theory +1201.6098 Instrumentation and Detectors +1201.6358 Data Structures and Algorithms +1201.6362 Phenomenology +1201.6373 Probability +1201.6374 Materials Science +1201.6376 Combinatorics +1201.6381 Statistical Mechanics +1201.6385 Applications +1201.6387 Statistics Theory +1201.6392 +1201.6394 Mesoscale and Nanoscale Physics +1201.6396 Statistical Mechanics +1201.6398 Information Theory +1201.6399 Analysis of PDEs +1201.6400 Quantum Gases +1201.6402 Performance +1201.6406 Cosmology and Nongalactic Astrophysics +1201.6411 Popular Physics +1201.6412 Fluid Dynamics +1201.6413 +1201.6414 +1201.6421 Data Structures and Algorithms +1201.6423 Computational Physics +1201.6425 Information Theory +1201.6428 +1201.6433 Classical Analysis and ODEs +1201.6444 Probability +1201.6445 Probability +1201.6446 Superconductivity +1201.6450 Other Statistics +1201.6451 Quantum Gases +1201.6455 Differential Geometry +1201.6458 Strongly Correlated Electrons +1201.6462 Learning +1201.6464 Quantum Algebra +1201.6469 Instrumentation and Detectors +1201.6476 Methodology +1201.6481 Commutative Algebra +1201.6483 Combinatorics +1201.6489 Phenomenology +1201.6495 Instrumentation and Detectors +1201.6496 Phenomenology +1201.6499 Information Theory +1201.6500 Group Theory +1201.6503 Classical Analysis and ODEs +1201.6504 +1201.6507 Representation Theory +1201.6508 Instrumentation and Methods for Astrophysics +1201.6511 Artificial Intelligence +1201.6512 Probability +1201.6513 Group Theory +1201.6515 Group Theory +1201.6516 Probability +1201.6524 Differential Geometry +1201.6525 Analysis of PDEs +1201.6528 Differential Geometry +1201.6532 Optimization and Control +1201.6533 Information Theory +1201.6534 Classical Physics +1201.6536 Representation Theory +1201.6538 Number Theory +1201.6540 Materials Science +1201.6545 Number Theory +1201.6553 Mesoscale and Nanoscale Physics +1201.6555 +1201.6557 Mesoscale and Nanoscale Physics +1201.6563 Databases +1201.6564 Databases +1201.6565 Databases +1201.6566 Databases +1201.6567 Databases +1201.6568 Databases +1201.6569 Databases +1201.6578 Computational Complexity +1201.6580 Combinatorics +1201.6583 Artificial Intelligence +1201.6584 Functional Analysis +1201.6585 General Physics +1201.6590 Mesoscale and Nanoscale Physics +1201.6591 High Energy Astrophysical Phenomena +1201.6595 Dynamical Systems +1201.6604 Artificial Intelligence +1201.6605 Cosmology and Nongalactic Astrophysics +1201.6607 +1201.6614 Probability +1201.6615 Artificial Intelligence +1201.6621 Chaotic Dynamics +1201.6622 Phenomenology +1201.6625 +1201.6626 Artificial Intelligence +1201.6633 Classical Analysis and ODEs +1201.6635 K-Theory and Homology +1201.6640 Optimization and Control +1201.6645 Probability +1201.6646 Algebraic Geometry +1201.6651 High Energy Astrophysical Phenomena +1201.6654 Combinatorics +1201.6655 Artificial Intelligence +1201.6659 Number Theory +1201.6666 Complex Variables +1201.6680 Discrete Mathematics +1201.6682 History and Overview +1201.6685 Information Theory +1201.6686 Optics +1201.6687 History and Overview +math-ph/0111017 +math-ph/0303063 +math-ph/0403031 +math/0608446 Combinatorics +quant-ph/0603079 +0705.0098 Algebraic Geometry +0801.1758 Statistics Theory +0801.4172 Numerical Analysis +0811.3405 Theory +0902.2805 Differential Geometry +0903.4044 Computational Physics +0906.4994 +0907.1768 Statistical Mechanics +0910.1280 Quantum Algebra +0912.2126 Category Theory +1003.6112 Algebraic Geometry +1004.1828 Exactly Solvable and Integrable Systems +1004.3871 Computation +1005.0889 Quantum Gases +1006.0016 General Physics +1008.1140 Information Theory +1008.3408 Information Theory +1009.4985 Geometric Topology +1101.4043 Probability +1102.2247 Dynamical Systems +1102.2354 Statistics Theory +1104.2465 Phenomenology +1104.5097 Group Theory +1105.2634 +1105.2943 Learning +1105.5960 Commutative Algebra +1106.0748 +1106.1845 Distributed, Parallel, and Cluster Computing +1107.1176 Cosmology and Nongalactic Astrophysics +1107.3421 Computational Geometry +1107.3897 Probability +1107.4179 Analysis of PDEs +1109.0173 Mesoscale and Nanoscale Physics +1109.2952 Geometric Topology +1110.5133 +1110.5245 Strongly Correlated Electrons +1110.5593 Analysis of PDEs +1110.6663 Physics Education +1111.0741 Statistical Mechanics +1111.0980 Geometric Topology +1111.1565 Quantum Gases +1111.4264 +1111.7053 Quantum Gases +1112.0849 Mesoscale and Nanoscale Physics +1112.4818 Statistical Mechanics +1112.4998 Atomic Physics +1112.5733 Mesoscale and Nanoscale Physics +1201.0125 Theory +1201.0699 +1201.1724 Plasma Physics +1201.1827 +1201.2796 Mesoscale and Nanoscale Physics +1201.2935 Mesoscale and Nanoscale Physics +1201.3320 +1201.3439 Phenomenology +1201.3440 Phenomenology +1201.3696 Phenomenology +1201.3898 Logic +1201.5339 Mesoscale and Nanoscale Physics +1201.5911 Geometric Topology +1201.5923 Phenomenology +1201.6460 Numerical Analysis +1202.1022 Differential Geometry +1202.2827 Superconductivity +1202.3096 Mesoscale and Nanoscale Physics +1202.4758 Cosmology and Nongalactic Astrophysics +1203.0698 Disordered Systems and Neural Networks +1203.0850 Materials Science +1203.6756 Solar and Stellar Astrophysics +1204.4027 +1204.4174 Fluid Dynamics +1204.4984 Optics +1204.5367 Mesoscale and Nanoscale Physics +1204.6024 Instrumentation and Methods for Astrophysics +1204.6061 Instrumentation and Methods for Astrophysics +1204.6385 Computer Vision and Pattern Recognition +1204.6425 +1204.6563 Computer Vision and Pattern Recognition +1204.6662 Distributed, Parallel, and Cluster Computing +1205.0252 Cosmology and Nongalactic Astrophysics +1205.0262 Accelerator Physics +1205.0265 Accelerator Physics +1205.0266 Algebraic Geometry +1205.0267 Solar and Stellar Astrophysics +1205.0268 Optics +1205.0273 Computational Geometry +1205.0275 Soft Condensed Matter +1205.0276 High Energy Astrophysical Phenomena +1205.0284 Complex Variables +1205.0294 Biological Physics +1205.0298 Combinatorics +1205.0300 +1205.0305 Combinatorics +1205.0306 Differential Geometry +1205.0312 Information Retrieval +1205.0313 General Physics +1205.0314 Computational Complexity +1205.0315 +1205.0316 Atomic Physics +1205.0318 Functional Analysis +1205.0320 Optimization and Control +1205.0323 Differential Geometry +1205.0327 Combinatorics +1205.0331 Functional Analysis +1205.0335 Neurons and Cognition +1205.0336 Statistical Finance +1205.0337 Networking and Internet Architecture +1205.0340 Experiment +1205.0343 Discrete Mathematics +1205.0344 Combinatorics +1205.0349 Quantitative Methods +1205.0355 Phenomenology +1205.0358 Fluid Dynamics +1205.0359 Lattice +1205.0361 Astrophysics of Galaxies +1205.0371 Number Theory +1205.0377 Classical Analysis and ODEs +1205.0380 Differential Geometry +1205.0384 Mesoscale and Nanoscale Physics +1205.0385 +1205.0386 Logic +1205.0388 Probability +1205.0390 Commutative Algebra +1205.0393 Numerical Analysis +1205.0397 Plasma Physics +1205.0398 Algebraic Geometry +1205.0400 +1205.0402 High Energy Astrophysical Phenomena +1205.0405 Mesoscale and Nanoscale Physics +1205.0406 Learning +1205.0414 Functional Analysis +1205.0415 Geophysics +1205.0418 High Energy Astrophysical Phenomena +1205.0419 Geophysics +1205.0421 Strongly Correlated Electrons +1205.0424 High Energy Astrophysical Phenomena +1205.0426 Representation Theory +1205.0430 Astrophysics of Galaxies +1205.0439 Data Structures and Algorithms +1205.0441 Differential Geometry +1205.0446 Rings and Algebras +1205.0447 Medical Physics +1205.0454 Superconductivity +1205.0456 Symbolic Computation +1205.0463 Cosmology and Nongalactic Astrophysics +1205.0464 Representation Theory +1205.0468 +1205.0469 +1205.0470 Differential Geometry +1205.0473 Solar and Stellar Astrophysics +1205.0475 Commutative Algebra +1205.0478 Commutative Algebra +1205.0480 Networking and Internet Architecture +1205.0483 Systems and Control +1205.0488 Mesoscale and Nanoscale Physics +1205.0490 High Energy Astrophysical Phenomena +1205.0494 Analysis of PDEs +1205.0499 Computation +1205.0502 Optics +1205.0510 Analysis of PDEs +1205.0512 +1205.0518 General Physics +1205.0519 Atomic Physics +1205.0520 High Energy Astrophysical Phenomena +1205.0534 Methodology +1205.0535 Symplectic Geometry +1205.0536 Accelerator Physics +1205.0539 Cosmology and Nongalactic Astrophysics +1205.0540 Applications +1205.0541 Physics and Society +math-ph/0604019 +quant-ph/0505158 +0704.0178 Plasma Physics +0710.1006 Plasma Physics +0811.0674 Differential Geometry +0902.0381 +0904.1486 Strongly Correlated Electrons +0908.2469 Theory +0910.2682 Logic +0912.2967 +1002.4159 Dynamical Systems +1002.4964 Soft Condensed Matter +1003.0269 +1003.2325 Differential Geometry +1005.1221 Dynamical Systems +1005.1540 Disordered Systems and Neural Networks +1006.2055 Information Theory +1006.2956 Probability +1006.3231 Phenomenology +1008.1101 Soft Condensed Matter +1008.4809 Optics +1009.2008 Statistical Mechanics +1009.2993 +1009.4106 Differential Geometry +1010.1034 Differential Geometry +1011.0804 Algebraic Geometry +1011.3907 Complex Variables +1102.2179 Strongly Correlated Electrons +1103.2066 Strongly Correlated Electrons +1104.5448 +1105.0852 Statistics Theory +1106.5769 +1107.2948 +1108.2773 Materials Science +1108.3723 Quantum Gases +1108.4478 Information Theory +1109.1450 Statistical Mechanics +1109.3511 +1109.3813 Materials Science +1109.6219 Mesoscale and Nanoscale Physics +1109.6701 Theory +1110.0940 +1110.2312 +1110.2768 +1110.3611 Solar and Stellar Astrophysics +1110.5083 +1110.6877 Cosmology and Nongalactic Astrophysics +1111.1909 Phenomenology +1111.2275 Cosmology and Nongalactic Astrophysics +1111.2856 Cosmology and Nongalactic Astrophysics +1111.3900 Mesoscale and Nanoscale Physics +1111.4004 Numerical Analysis +1111.4433 +1111.5671 +1111.6006 +1111.6012 Materials Science +1111.6597 +1111.6684 Materials Science +1111.6860 Networking and Internet Architecture +1112.0218 Phenomenology +1112.1857 Mesoscale and Nanoscale Physics +1112.2097 Experiment +1112.2724 Strongly Correlated Electrons +1112.3670 Social and Information Networks +1112.4081 +1112.4760 Phenomenology +1112.5347 Strongly Correlated Electrons +1201.1486 +1201.3002 Materials Science +1201.3146 Optics +1201.5927 +1202.0424 +1202.3589 Superconductivity +1202.3848 Cosmology and Nongalactic Astrophysics +1202.3897 +1202.3970 Analysis of PDEs +1202.4729 Strongly Correlated Electrons +1202.5598 Learning +1202.6106 Human-Computer Interaction +1203.1736 +1203.3945 Materials Science +1203.4039 Instrumentation and Detectors +1203.4535 Metric Geometry +1203.5470 Strongly Correlated Electrons +1203.5971 Solar and Stellar Astrophysics +1204.0901 Logic +1204.1897 High Energy Astrophysical Phenomena +1204.2303 Experiment +1204.2393 General Physics +1204.2602 +1204.2691 Soft Condensed Matter +1204.2736 Trading and Market Microstructure +1204.2822 Populations and Evolution +1204.2837 Computer Vision and Pattern Recognition +1204.2841 Data Analysis, Statistics and Probability +1204.2844 Data Structures and Algorithms +1204.2848 Spectral Theory +1204.2850 Materials Science +1204.2853 Theory +1204.2854 Cryptography and Security +1204.2857 Systems and Control +1204.2863 Materials Science +1204.2867 Adaptation and Self-Organizing Systems +1204.2872 Combinatorics +1204.2873 General Topology +1204.2874 Instrumentation and Methods for Astrophysics +1204.2875 Materials Science +1204.2878 Chemical Physics +1204.2879 Networking and Internet Architecture +1204.2880 Networking and Internet Architecture +1204.2882 Networking and Internet Architecture +1204.2883 Differential Geometry +1204.2884 Materials Science +1204.2886 Materials Science +1204.2890 Complex Variables +1204.2895 Materials Science +1204.2898 Materials Science +1204.2906 Optimization and Control +1204.2907 Disordered Systems and Neural Networks +1204.2911 Representation Theory +1204.2912 Computer Vision and Pattern Recognition +1204.2915 Discrete Mathematics +1204.2922 Information Theory +1204.2928 Exactly Solvable and Integrable Systems +1204.2932 Logic in Computer Science +1204.2933 Data Structures and Algorithms +1204.2937 +1204.2938 Classical Analysis and ODEs +1204.2944 Probability +1204.2950 +1204.2953 Classical Analysis and ODEs +1204.2964 Statistics Theory +1204.2967 Functional Analysis +1204.2968 Optics +1204.2973 Materials Science +1204.2974 Software Engineering +1204.2975 Statistics Theory +1204.2976 Phenomenology +1204.2980 Information Theory +1204.2981 Combinatorics +1204.2983 Logic in Computer Science +1204.2984 History and Philosophy of Physics +1204.2985 Cosmology and Nongalactic Astrophysics +1204.2987 Mesoscale and Nanoscale Physics +1204.2989 Cryptography and Security +1204.2990 Logic in Computer Science +1204.2994 Computer Vision and Pattern Recognition +1204.2995 Social and Information Networks +1204.2998 +1204.2999 Probability +1204.3002 Mesoscale and Nanoscale Physics +1204.3005 Applications +1204.3008 Theory +1204.3011 Atomic Physics +1204.3013 Atomic Physics +1204.3015 Algebraic Geometry +1204.3017 Statistical Mechanics +1204.3020 Mathematical Software +1204.3021 Populations and Evolution +1204.3025 Algebraic Topology +1204.3027 Algebraic Geometry +1204.3030 Solar and Stellar Astrophysics +1204.3031 Differential Geometry +1204.3045 Analysis of PDEs +1204.3048 Logic in Computer Science +1204.3050 Operator Algebras +1204.3052 Distributed, Parallel, and Cluster Computing +1204.3055 Instrumentation and Methods for Astrophysics +1204.3058 Distributed, Parallel, and Cluster Computing +1204.3059 Mesoscale and Nanoscale Physics +1204.3060 Combinatorics +1204.3069 Information Theory +1204.3072 Optimization and Control +1204.3080 Probability +1204.3081 Complex Variables +1204.3082 Cosmology and Nongalactic Astrophysics +math/0506611 Algebraic Geometry +0801.0261 Algebraic Geometry +0808.1033 +0810.0109 Mesoscale and Nanoscale Physics +0906.1021 +1002.1821 Statistical Mechanics +1005.5486 Strongly Correlated Electrons +1008.0608 Other Condensed Matter +1008.2083 Materials Science +1008.3590 Superconductivity +1008.3672 Data Structures and Algorithms +1010.1726 Probability +1010.4777 +1010.6278 Combinatorics +1011.1832 Spectral Theory +1012.3726 Probability +1101.3752 +1103.1537 Disordered Systems and Neural Networks +1103.1545 Analysis of PDEs +1104.1196 +1104.3933 Group Theory +1105.4881 Algebraic Geometry +1106.1402 Disordered Systems and Neural Networks +1106.2534 Instrumentation and Methods for Astrophysics +1106.3817 +1106.3863 Disordered Systems and Neural Networks +1106.4616 Algebraic Geometry +1106.5283 +1106.6031 Numerical Analysis +1108.1851 Statistics Theory +1108.2093 Theory +1108.3040 Cosmology and Nongalactic Astrophysics +1108.3169 Solar and Stellar Astrophysics +1108.4318 +1108.6143 Combinatorics +1110.0706 Superconductivity +1110.5176 Information Theory +1111.4814 Algebraic Geometry +1111.5454 Social and Information Networks +1111.6385 Theory +1111.6631 Quantitative Methods +1111.6644 Populations and Evolution +1112.2113 Artificial Intelligence +1112.2874 Superconductivity +1112.3285 +1201.1021 Functional Analysis +1201.1734 Strongly Correlated Electrons +1201.2758 Analysis of PDEs +1201.3709 Soft Condensed Matter +1201.6470 Mesoscale and Nanoscale Physics +1202.0768 Functional Analysis +1202.2415 +1202.2841 Phenomenology +1202.3523 +1202.3651 Combinatorics +1202.3772 Learning +1203.2319 Mesoscale and Nanoscale Physics +1203.3233 Analysis of PDEs +1203.3901 Analysis of PDEs +1203.4569 Strongly Correlated Electrons +1203.4784 Representation Theory +1203.5980 Mesoscale and Nanoscale Physics +1204.1064 Theory +1204.1103 Quantum Gases +1204.1295 Analysis of PDEs +1204.1654 Representation Theory +1204.2239 Instrumentation and Detectors +1204.2424 Phenomenology +1204.3806 Physics and Society +1204.5047 Mesoscale and Nanoscale Physics +1204.6381 Strongly Correlated Electrons +1204.6724 Accelerator Physics +1205.2373 Cosmology and Nongalactic Astrophysics +1205.2374 Cosmology and Nongalactic Astrophysics +1205.2902 +1205.3530 Strongly Correlated Electrons +1205.3640 Strongly Correlated Electrons +1205.5591 Mesoscale and Nanoscale Physics +1205.6090 Soft Condensed Matter +1205.6922 Strongly Correlated Electrons +1206.1154 +1206.2224 Mesoscale and Nanoscale Physics +1206.2964 Superconductivity +1206.4706 Superconductivity +1206.4944 Phenomenology +1206.5100 +1206.6801 High Energy Astrophysical Phenomena +1206.6983 Materials Science +1207.0756 +1207.0878 Experiment +1207.1525 Strongly Correlated Electrons +1207.1688 +1207.2310 Materials Science +1207.2314 Strongly Correlated Electrons +1207.2898 +1207.2909 +1207.4008 Disordered Systems and Neural Networks +1207.4214 Dynamical Systems +1207.4988 Statistics Theory +1207.5424 Phenomenology +1207.6044 Statistical Mechanics +1207.6462 +1207.7095 Theory +1207.7168 Optics +1207.7297 Phenomenology +1208.0613 Biomolecules +1208.5618 Quantum Gases +1208.5863 Optics +1208.6576 High Energy Astrophysical Phenomena +1209.2617 Programming Languages +1209.2754 +1209.3599 Mesoscale and Nanoscale Physics +1209.5197 Number Theory +1209.5294 Strongly Correlated Electrons +1209.6247 Materials Science +1209.6397 Superconductivity +1209.6480 Experiment +1210.1144 Statistics Theory +1210.1524 Computers and Society +1210.2265 Plasma Physics +1210.2282 Programming Languages +1210.2471 Earth and Planetary Astrophysics +1210.2559 Theory +1210.2592 Information Theory +1210.2675 Analysis of PDEs +1210.2715 Artificial Intelligence +1210.2716 Cosmology and Nongalactic Astrophysics +1210.2719 Instrumentation and Methods for Astrophysics +1210.2726 Algebraic Geometry +1210.2728 Instrumentation and Methods for Astrophysics +1210.2729 Instrumentation and Methods for Astrophysics +1210.2730 Instrumentation and Methods for Astrophysics +1210.2733 Theory +1210.2734 Instrumentation and Methods for Astrophysics +1210.2737 Operator Algebras +1210.2742 +1210.2744 +1210.2751 Instrumentation and Methods for Astrophysics +1210.2752 Physics and Society +1210.2763 Mesoscale and Nanoscale Physics +1210.2767 Solar and Stellar Astrophysics +1210.2769 Strongly Correlated Electrons +1210.2770 Fluid Dynamics +1210.2775 Geometric Topology +1210.2790 Analysis of PDEs +1210.2795 Algebraic Topology +1210.2797 Geometric Topology +1210.2801 Combinatorics +1210.2806 Optimization and Control +1210.2809 Statistics Theory +1210.2816 Probability +1210.2826 Computer Vision and Pattern Recognition +1210.2828 +1210.2832 Rings and Algebras +1210.2833 Phenomenology +1210.2838 Computer Vision and Pattern Recognition +1210.2844 Rings and Algebras +1210.2847 Mesoscale and Nanoscale Physics +1210.2849 Analysis of PDEs +1210.2850 Genomics +1210.2856 +1210.2857 Distributed, Parallel, and Cluster Computing +1210.2864 Programming Languages +1210.2867 Optics +1210.2871 Combinatorics +1210.2872 Databases +1210.2875 Mesoscale and Nanoscale Physics +1210.2877 Computer Vision and Pattern Recognition +1210.2880 Earth and Planetary Astrophysics +1210.2881 Analysis of PDEs +1210.2882 Systems and Control +1210.2884 +1210.2885 Combinatorics +1210.2889 Superconductivity +1210.2890 Logic in Computer Science +1210.2892 Solar and Stellar Astrophysics +1210.2897 Systems and Control +1210.2899 High Energy Astrophysical Phenomena +1210.2900 Optics +1210.2905 Geometric Topology +1210.2906 Data Structures and Algorithms +1210.2907 Instrumentation and Detectors +1210.2911 Computer Science and Game Theory +1210.2912 Number Theory +1210.2914 Functional Analysis +1210.2929 History and Overview +1210.2930 General Mathematics +1210.2932 +1210.2934 Cryptography and Security +1210.2935 Systems and Control +1210.2938 +1210.2940 Networking and Internet Architecture +1210.2941 Disordered Systems and Neural Networks +1210.2943 Human-Computer Interaction +1210.2944 Neurons and Cognition +1210.2945 Human-Computer Interaction +1210.2950 Symbolic Computation +1210.2951 Symbolic Computation +1210.2952 High Energy Astrophysical Phenomena +1210.2953 Methodology +1210.2954 Methodology +1210.2957 Differential Geometry +1210.2958 +1210.2959 Human-Computer Interaction +1210.2962 Differential Geometry +1210.2963 Solar and Stellar Astrophysics +1210.2964 Operator Algebras +1210.2968 Phenomenology +1210.2970 Fluid Dynamics +1210.2971 Cryptography and Security +1210.2973 +1210.2977 Cryptography and Security +1210.2981 Soft Condensed Matter +1210.2985 Fluid Dynamics +1210.2989 +1210.2991 Number Theory +1210.2992 Superconductivity +1210.2993 Molecular Networks +1210.2999 Mesoscale and Nanoscale Physics +1210.3008 Phenomenology +1210.3009 Rings and Algebras +1210.3010 Classical Analysis and ODEs +1210.3011 Phenomenology +1210.3012 Information Theory +quant-ph/0612155 +0705.3190 K-Theory and Homology +0706.2384 Number Theory +0708.0017 Theory +0710.1017 Rings and Algebras +0710.3473 Applications +0801.0033 K-Theory and Homology +0804.1460 Rings and Algebras +0806.1212 Rings and Algebras +0806.2829 +0806.4643 Functional Analysis +0808.0158 Algebraic Geometry +0808.3328 Disordered Systems and Neural Networks +0902.4192 Category Theory +0903.1055 Materials Science +0906.4416 Materials Science +0912.1891 Theory +1001.0195 Functional Analysis +1003.1270 Phenomenology +1004.3019 Number Theory +1006.0892 Mesoscale and Nanoscale Physics +1006.1691 +1006.5009 Cosmology and Nongalactic Astrophysics +1007.0311 +1007.2805 Algebraic Topology +1007.5140 Group Theory +1008.0129 +1008.1715 Databases +1008.3646 Combinatorics +1009.0081 Strongly Correlated Electrons +1009.3454 Category Theory +1009.4329 Algebraic Topology +1010.1783 Cosmology and Nongalactic Astrophysics +1010.2167 Combinatorics +1010.2485 Cosmology and Nongalactic Astrophysics +1010.3717 Theory +1010.4299 Cosmology and Nongalactic Astrophysics +1011.0991 Cosmology and Nongalactic Astrophysics +1011.4141 Commutative Algebra +1011.5717 Algebraic Topology +1011.6116 Atomic Physics +1012.3764 General Physics +1012.5801 Number Theory +1012.5991 Number Theory +1101.2598 +1103.2221 Probability +1103.2627 High Energy Astrophysical Phenomena +1103.4240 +1103.5472 Phenomenology +1104.1542 Statistical Mechanics +1104.3055 Formal Languages and Automata Theory +1104.3934 Phenomenology +1104.4116 Cosmology and Nongalactic Astrophysics +1104.4348 Cosmology and Nongalactic Astrophysics +1104.5484 Lattice +1105.0587 +1105.1612 Exactly Solvable and Integrable Systems +1105.4177 Cosmology and Nongalactic Astrophysics +1106.2439 Strongly Correlated Electrons +1106.2553 Cosmology and Nongalactic Astrophysics +1106.3986 Strongly Correlated Electrons +1106.4581 Dynamical Systems +1106.6193 Quantum Gases +1107.1507 Subcellular Processes +1107.1930 Lattice +1107.2694 Classical Analysis and ODEs +1107.2813 Differential Geometry +1107.4385 +1108.4115 Optimization and Control +1108.5292 Probability +1108.5551 Theory +1109.1331 Materials Science +1109.1335 Materials Science +1109.1337 Combinatorics +1109.1591 Quantum Gases +1109.4108 Superconductivity +1109.4772 Differential Geometry +1109.5594 Number Theory +1109.5702 Mesoscale and Nanoscale Physics +1110.3081 +1110.4289 Soft Condensed Matter +1110.4305 +1110.6134 +1110.6511 Optics +1110.6707 +1111.1447 Mesoscale and Nanoscale Physics +1111.3564 Statistical Mechanics +1111.4773 Experiment +1111.4953 Lattice +1111.5465 High Energy Astrophysical Phenomena +1111.5729 +1111.6021 Mesoscale and Nanoscale Physics +1111.6490 High Energy Astrophysical Phenomena +1111.7050 Phenomenology +1112.1692 Cosmology and Nongalactic Astrophysics +1112.3721 Commutative Algebra +1112.4512 Algebraic Geometry +1112.5811 Algebraic Topology +1201.0781 Differential Geometry +1201.1431 Methodology +1201.3386 Materials Science +1201.4657 Instrumentation and Detectors +1201.5222 Theory +1201.5385 Classical Analysis and ODEs +1201.5388 Materials Science +1201.5399 Astrophysics of Galaxies +1201.5402 High Energy Astrophysical Phenomena +1201.5403 Classical Analysis and ODEs +1201.5413 Instrumentation and Methods for Astrophysics +1201.5414 Operator Algebras +1201.5417 Superconductivity +1201.5418 Logic in Computer Science +1201.5433 +1201.5436 Geometric Topology +1201.5439 Dynamical Systems +1201.5440 Soft Condensed Matter +1201.5443 Cryptography and Security +1201.5445 Exactly Solvable and Integrable Systems +1201.5450 Robotics +1201.5451 Symplectic Geometry +1201.5453 Instrumentation and Detectors +1201.5456 Analysis of PDEs +1201.5459 History and Philosophy of Physics +1201.5461 +1201.5462 High Energy Astrophysical Phenomena +1201.5463 Differential Geometry +1201.5464 Algebraic Geometry +1201.5467 Materials Science +1201.5468 Superconductivity +1201.5471 Functional Analysis +1201.5472 Artificial Intelligence +1201.5473 Representation Theory +1201.5474 Solar and Stellar Astrophysics +1201.5475 Dynamical Systems +1201.5482 Solar and Stellar Astrophysics +1201.5487 Representation Theory +1201.5488 Phenomenology +1201.5493 Soft Condensed Matter +1201.5500 Functional Analysis +1201.5505 Group Theory +1201.5507 Statistics Theory +1201.5511 Phenomenology +1201.5513 Data Structures and Algorithms +1201.5514 Materials Science +1201.5515 Statistics Theory +1201.5516 Statistics Theory +1201.5517 Statistics Theory +1201.5518 Adaptation and Self-Organizing Systems +1201.5520 Statistics Theory +1201.5521 Statistics Theory +1201.5523 Probability +1201.5525 Phenomenology +1201.5528 Statistics Theory +1201.5529 Discrete Mathematics +1201.5533 +1201.5535 General Mathematics +1201.5536 History and Philosophy of Physics +1201.5538 Probability +1201.5543 Popular Physics +1201.5549 Mesoscale and Nanoscale Physics +1201.5550 Theory +1201.5553 Chaotic Dynamics +1201.5558 Classical Analysis and ODEs +1201.5559 Rings and Algebras +1201.5561 Classical Physics +1201.5562 Fluid Dynamics +1201.5568 Methodology +1201.5570 Complex Variables +1201.5577 Experiment +1201.5585 +1201.5587 Analysis of PDEs +1201.5589 +1201.5592 Functional Analysis +1201.5602 +1201.5603 Information Theory +1201.5625 +1201.5631 History and Overview +1201.5633 History and Overview +1201.5635 Probability +astro-ph/0703576 +cond-mat/0007093 +cond-mat/0603335 Other Condensed Matter +math/0410577 Spectral Theory +math/0507124 Geometric Topology +math/0607529 Quantum Algebra +math/0612633 Quantum Algebra +0710.4957 Statistical Mechanics +0803.0925 Optimization and Control +0804.3146 History and Philosophy of Physics +0805.0278 Optimization and Control +0806.4709 Classical Analysis and ODEs +0903.4006 Number Theory +0903.4007 Number Theory +0903.5176 Theory +0903.5445 Differential Geometry +0907.1200 Quantum Gases +0910.2051 Number Theory +0910.2052 Number Theory +0910.3417 Number Theory +0911.1330 Mesoscale and Nanoscale Physics +0911.1540 General Physics +0912.3056 Functional Analysis +1001.3661 Discrete Mathematics +1003.3632 Probability +1003.3994 Number Theory +1004.2962 Superconductivity +1005.1515 Analysis of PDEs +1005.1789 Geometric Topology +1005.2674 Phenomenology +1005.4668 High Energy Astrophysical Phenomena +1006.0930 Number Theory +1007.2361 Group Theory +1007.2758 Statistics Theory +1009.3485 Algebraic Geometry +1009.5351 +1010.1848 Functional Analysis +1010.5945 +1011.4627 General Physics +1012.4615 Commutative Algebra +1101.0434 Statistics Theory +1102.1493 Number Theory +1102.2470 +1102.4920 +1103.0939 History and Philosophy of Physics +1103.4848 Probability +1105.4049 Optimization and Control +1106.0466 Molecular Networks +1106.2341 Geometric Topology +1106.2854 Logic +1106.3158 Probability +1107.0504 Representation Theory +1107.2340 Combinatorics +1108.1073 Atomic Physics +1108.2735 Analysis of PDEs +1108.5045 Theory +1109.0463 Superconductivity +1109.1571 Algebraic Geometry +1109.4860 Probability +1109.6647 Disordered Systems and Neural Networks +1110.2749 Analysis of PDEs +1110.3021 Quantum Gases +1111.0623 Data Structures and Algorithms +1111.1506 Functional Analysis +1111.5215 General Physics +1111.5762 Materials Science +1111.6365 Superconductivity +1111.6699 Algebraic Topology +1111.6952 Analysis of PDEs +1112.0012 Solar and Stellar Astrophysics +1112.0282 Experiment +1112.4500 Plasma Physics +1112.5197 Plasma Physics +1112.5309 Artificial Intelligence +1112.6402 Phenomenology +1201.0755 Cosmology and Nongalactic Astrophysics +1201.2057 Group Theory +1201.3273 Discrete Mathematics +1201.6652 Distributed, Parallel, and Cluster Computing +1202.0729 Number Theory +1202.3255 Databases +1202.3968 Atomic Physics +1202.4246 Probability +1203.4171 Experiment +1203.4469 Lattice +1203.4770 +1203.5537 Earth and Planetary Astrophysics +1203.5950 Applications +1203.6329 Computer Vision and Pattern Recognition +1204.3564 Quantum Gases +1204.4124 Theory +1204.4186 Phenomenology +1204.4336 Phenomenology +1204.4406 Theory +1204.5170 +1204.5721 Learning +1204.5765 Mesoscale and Nanoscale Physics +1204.5931 +1204.6685 Theory +1205.0069 Theory +1205.3164 Phenomenology +1205.3463 Algebraic Geometry +1205.4154 +1205.4186 Atomic Physics +1205.5430 Group Theory +1205.6326 Machine Learning +1206.0313 Statistics Theory +1206.0741 Mesoscale and Nanoscale Physics +1206.1528 Theory +1206.1538 Theory +1206.2210 Cosmology and Nongalactic Astrophysics +1206.2882 Instrumentation and Detectors +1206.2933 +1206.3726 Rings and Algebras +1206.3759 Strongly Correlated Electrons +1206.4348 +1206.4937 Methodology +1206.5965 Mesoscale and Nanoscale Physics +1206.5994 Mesoscale and Nanoscale Physics +1207.0438 Phenomenology +1207.0739 Physics and Society +1207.0981 Data Analysis, Statistics and Probability +1207.1259 Mesoscale and Nanoscale Physics +1207.1967 Phenomenology +1207.3480 Number Theory +1207.3697 Materials Science +1207.6949 Fluid Dynamics +1207.7193 Information Theory +1208.0322 Experiment +1208.0937 Materials Science +1208.1104 Mesoscale and Nanoscale Physics +1208.1664 Strongly Correlated Electrons +1208.1858 Lattice +1208.2206 Quantum Gases +1208.2374 Hardware Architecture +1208.3888 +1208.4163 Cosmology and Nongalactic Astrophysics +1208.4445 Analysis of PDEs +1208.5010 Numerical Analysis +1208.5011 Numerical Analysis +1208.5058 Number Theory +1208.6179 Physics and Society +1209.0101 Earth and Planetary Astrophysics +1209.0172 Experiment +1209.0292 Mesoscale and Nanoscale Physics +1209.0813 Populations and Evolution +1209.0944 Atomic Physics +1209.1313 Phenomenology +1209.1475 Phenomenology +1209.2108 Atomic Physics +1209.3233 Number Theory +1209.5415 +1209.6103 Combinatorics +1209.6249 Materials Science +1209.6559 General Physics +1210.1154 Astrophysics of Galaxies +1210.1440 Strongly Correlated Electrons +1210.1830 Operator Algebras +1210.2184 Group Theory +1210.2355 Cosmology and Nongalactic Astrophysics +1210.2438 Lattice +1210.2956 Combinatorics +1210.3073 +1210.3399 Phenomenology +1210.3560 Computer Science and Game Theory +1210.4320 Mesoscale and Nanoscale Physics +1210.4386 Materials Science +1210.5987 General Finance +1210.6002 Solar and Stellar Astrophysics +1210.6467 +1210.6771 Superconductivity +1210.6800 Computers and Society +1210.7253 Combinatorics +1210.7369 Algebraic Geometry +1210.7376 Geophysics +1210.7381 Probability +1210.7737 Lattice +1210.7764 Differential Geometry +1210.8080 Atomic and Molecular Clusters +1210.8144 Popular Physics +1210.8174 Digital Libraries +1210.8206 Representation Theory +1210.8230 Probability +1210.8257 Experiment +1211.0141 Combinatorics +1211.0517 Statistics Theory +1211.0540 Numerical Analysis +1211.0541 Mesoscale and Nanoscale Physics +1211.0551 Materials Science +1211.0553 Materials Science +1211.0555 Materials Science +1211.0556 Solar and Stellar Astrophysics +1211.0557 Performance +1211.0561 Number Theory +1211.0565 Lattice +1211.0567 Numerical Analysis +1211.0568 Lattice +1211.0569 Analysis of PDEs +1211.0570 Experiment +1211.0575 Networking and Internet Architecture +1211.0579 Representation Theory +1211.0582 Mathematical Software +1211.0583 Cosmology and Nongalactic Astrophysics +1211.0595 Instrumentation and Methods for Astrophysics +1211.0596 Combinatorics +1211.0601 +1211.0602 Computer Vision and Pattern Recognition +1211.0605 +1211.0620 Networking and Internet Architecture +1211.0623 Analysis of PDEs +1211.0628 Pattern Formation and Solitons +1211.0629 +1211.0631 Dynamical Systems +1211.0633 Rings and Algebras +1211.0635 Differential Geometry +1211.0639 Number Theory +1211.0642 Functional Analysis +1211.0645 Other Computer Science +1211.0647 Phenomenology +1211.0648 Dynamical Systems +1211.0651 Cryptography and Security +1211.0652 Combinatorics +1211.0653 Optics +1211.0655 Fluid Dynamics +1211.0656 Physics and Society +1211.0658 Information Theory +1211.0659 Fluid Dynamics +1211.0660 Neural and Evolutionary Computing +1211.0662 Soft Condensed Matter +1211.0663 Representation Theory +1211.0664 Lattice +1211.0665 Computational Complexity +1211.0666 Optimization and Control +1211.0669 Chemical Physics +1211.0671 Quantum Algebra +1211.0675 Soft Condensed Matter +1211.0678 Analysis of PDEs +1211.0679 Cosmology and Nongalactic Astrophysics +1211.0685 Solar and Stellar Astrophysics +1211.0687 Algebraic Geometry +1211.0689 Information Retrieval +1211.0690 +1211.0691 High Energy Astrophysical Phenomena +1211.0693 Solar and Stellar Astrophysics +1211.0694 Cosmology and Nongalactic Astrophysics +1211.0695 Cosmology and Nongalactic Astrophysics +1211.0702 Materials Science +1211.0704 Networking and Internet Architecture +1211.0705 +1211.0707 Numerical Analysis +1211.0709 Social and Information Networks +1211.0712 Lattice +1211.0715 Plasma Physics +1211.0716 Other Computer Science +1211.0720 Logic +1211.0724 Number Theory +1211.0727 Methodology +1211.0728 Physics and Society +1211.0730 Neural and Evolutionary Computing +1211.0732 Combinatorics +1211.0734 Commutative Algebra +1211.0736 Social and Information Networks +1211.0738 Commutative Algebra +1211.0743 Lattice +1211.0744 Algebraic Geometry +1211.0749 Artificial Intelligence +1211.0757 Machine Learning +1211.0761 Logic +1211.0764 Differential Geometry +1211.0768 Numerical Analysis +1211.0773 +1211.0780 Statistical Mechanics +1211.0781 Classical Physics +1211.0783 Functional Analysis +1211.0785 Lattice +1211.0787 Complex Variables +1211.0788 Number Theory +1211.0789 Superconductivity +1211.0792 Lattice +1211.0793 Combinatorics +1211.0794 History and Overview +1211.0795 Analysis of PDEs +1211.0801 Statistics Theory +1211.0806 Statistics Theory +1211.0808 Statistics Theory +1211.0809 Solar and Stellar Astrophysics +1211.0811 Statistics Theory +1211.0813 Statistics Theory +1211.0815 Computation +1211.0817 Statistics Theory +1211.0827 Operator Algebras +1211.0831 High Energy Astrophysical Phenomena +1211.0835 Statistics Theory +1211.0842 Commutative Algebra +1211.0850 Chaotic Dynamics +1211.0851 Soft Condensed Matter +1211.0858 Materials Science +1211.0868 Phenomenology +1211.0872 Information Theory +1211.0879 Machine Learning +1211.0886 Human-Computer Interaction +1211.0888 +1211.0894 Analysis of PDEs +1211.0895 Number Theory +1211.0896 Statistical Mechanics +1211.0897 Systems and Control +1211.0902 General Physics +1211.0907 Numerical Analysis +1211.0915 History and Philosophy of Physics +1211.0924 General Physics +1211.0932 Machine Learning +1211.0934 Instrumentation and Methods for Astrophysics +1211.0935 Analysis of PDEs +1211.0941 Rings and Algebras +1211.0945 Rings and Algebras +1211.0947 Neurons and Cognition +1211.0954 Networking and Internet Architecture +1211.0956 Lattice +1211.0957 Computational Engineering, Finance, and Science +1211.0962 General Physics +1211.0963 Cryptography and Security +1211.0973 Differential Geometry +1211.0974 Populations and Evolution +1211.0975 Data Structures and Algorithms +1211.0981 Rings and Algebras +1211.0984 Mesoscale and Nanoscale Physics +1211.0990 Biological Physics +1211.0998 Representation Theory +math/0201314 Representation Theory +math/0207285 Classical Analysis and ODEs +math/0304253 Functional Analysis +math/0411173 Optimization and Control +math/0509140 Optimization and Control +math/0607196 Number Theory +math/0607199 Number Theory +math/0612348 Number Theory +nlin/0407062 Exactly Solvable and Integrable Systems +0705.1727 Algebraic Geometry +0705.1966 Theory +0706.1674 +0706.2303 +0707.4630 Other Condensed Matter +0710.1717 +0710.4126 Strongly Correlated Electrons +0711.3244 +0803.2809 Number Theory +0812.4822 Metric Geometry +0901.0055 Information Theory +0902.0089 Cell Behavior +0908.0349 Quantum Algebra +0910.4548 Theory +0911.0236 Algebraic Geometry +0912.4412 Number Theory +1001.2096 Dynamical Systems +1003.2359 General Physics +1003.3688 Mesoscale and Nanoscale Physics +1003.5289 Number Theory +1004.0241 Rings and Algebras +1004.0777 Networking and Internet Architecture +1007.0142 Plasma Physics +1007.1234 Optimization and Control +1007.5124 Number Theory +1008.4544 Representation Theory +1009.1100 Statistical Finance +1011.0833 Phenomenology +1011.1424 Probability +1011.3172 Analysis of PDEs +1011.4364 Symplectic Geometry +1101.0736 Statistics Theory +1101.1774 Theory +1101.2754 Group Theory +1101.2815 Optimization and Control +1101.3657 Analysis of PDEs +1101.4325 +1101.4693 Algebraic Geometry +1102.0903 Number Theory +1102.1185 +1102.3031 Number Theory +1102.4705 Number Theory +1102.5519 Functional Analysis +1103.0902 Number Theory +1103.0926 Number Theory +1103.2879 Number Theory +1104.1358 Number Theory +1104.3916 +1104.4079 Computation +1105.0827 Number Theory +1105.0866 Neurons and Cognition +1105.1402 Differential Geometry +1105.1410 Mesoscale and Nanoscale Physics +1105.2801 Pattern Formation and Solitons +1105.3767 General Physics +1105.3988 Phenomenology +1105.5049 +1105.5264 +1105.6329 Molecular Networks +1106.1332 Superconductivity +1106.1713 Strongly Correlated Electrons +1106.1886 +1106.4661 +1107.0585 Mesoscale and Nanoscale Physics +1107.1945 Networking and Internet Architecture +1107.3310 +1107.3868 Materials Science +1107.5124 Neurons and Cognition +1107.6007 Other Condensed Matter +1108.1286 Mesoscale and Nanoscale Physics +1108.1423 +1108.2604 Populations and Evolution +1108.2874 Quantum Algebra +1108.4695 Quantum Gases +1108.6059 +1109.0474 Strongly Correlated Electrons +1109.0925 Complex Variables +1109.2581 Strongly Correlated Electrons +1109.2613 Networking and Internet Architecture +1109.4650 +1109.5241 Optimization and Control +1109.5990 Physics and Society +1109.5993 Functional Analysis +1109.6166 Computer Science and Game Theory +1109.6546 +1110.0605 Category Theory +1110.0818 Representation Theory +1110.0888 Lattice +1110.1440 +1110.2541 Algebraic Geometry +1110.3024 Disordered Systems and Neural Networks +1110.3067 +1110.4893 Mesoscale and Nanoscale Physics +1110.4925 Social and Information Networks +1110.5046 Phenomenology +1110.5322 General Physics +1110.5587 Phenomenology +1110.5591 Strongly Correlated Electrons +1111.0541 Strongly Correlated Electrons +1111.0642 Adaptation and Self-Organizing Systems +1111.0734 +1111.0760 +1111.0935 +1111.2906 Quantum Gases +1111.3853 General Physics +1111.5415 Superconductivity +1111.5428 Differential Geometry +1111.5882 Materials Science +1111.6472 Superconductivity +1111.6799 Phenomenology +1112.0005 Cosmology and Nongalactic Astrophysics +1112.2633 Superconductivity +1112.3723 Statistical Mechanics +1112.4199 Quantum Gases +1112.4469 Disordered Systems and Neural Networks +1112.4676 Soft Condensed Matter +1112.4745 Biological Physics +1112.4898 Experiment +1112.5252 Social and Information Networks +1112.5820 Metric Geometry +1112.6383 Quantum Algebra +1112.6392 Quantum Gases +1201.0171 Combinatorics +1201.0186 Statistical Mechanics +1201.0860 +1201.1435 Strongly Correlated Electrons +1201.2656 Mesoscale and Nanoscale Physics +1201.3334 Disordered Systems and Neural Networks +1201.3895 +1201.4817 General Physics +1201.5259 Other Condensed Matter +1201.5963 Number Theory +1201.6279 Mesoscale and Nanoscale Physics +1202.1015 +1202.1190 Theory +1202.1380 Chemical Physics +1202.3214 Statistical Mechanics +1202.3935 Quantum Gases +1202.4178 Mesoscale and Nanoscale Physics +1202.4453 Cosmology and Nongalactic Astrophysics +1202.4861 Phenomenology +1202.5282 Cryptography and Security +1202.5367 Superconductivity +1202.5468 Differential Geometry +1202.5881 Superconductivity +1202.6388 Neurons and Cognition +1203.0303 Theory +1203.0582 Theory +1203.1251 Systems and Control +1203.1305 Quantum Gases +1203.2554 Complex Variables +1203.2974 +1203.3365 Phenomenology +1203.6025 Systems and Control +1203.6262 +1204.0417 Other Condensed Matter +1204.0577 Materials Science +1204.2100 Strongly Correlated Electrons +1204.2500 +1204.3162 Cosmology and Nongalactic Astrophysics +1204.3318 General Physics +1204.3470 High Energy Astrophysical Phenomena +1204.3554 Systems and Control +1204.6269 Statistical Mechanics +1204.6325 Human-Computer Interaction +1204.6379 +1205.0213 Optimization and Control +1205.2204 History and Overview +1205.3004 Metric Geometry +1205.3992 Superconductivity +1205.4189 Experiment +1205.4271 Optimization and Control +1205.4360 Geophysics +1205.4806 Differential Geometry +1205.4960 Group Theory +1205.5145 Quantum Gases +1205.5217 Number Theory +1205.5264 Probability +1205.5575 Probability +1205.5613 Group Theory +1205.5997 Analysis of PDEs +1205.6235 Group Theory +1205.6242 Combinatorics +1205.6255 Number Theory +1205.6304 Cosmology and Nongalactic Astrophysics +1205.6357 High Energy Astrophysical Phenomena +1205.6690 Classical Analysis and ODEs +1205.6707 Dynamical Systems +1205.6764 Soft Condensed Matter +1206.0207 +1206.0259 Artificial Intelligence +1206.0294 Experiment +1206.0305 Networking and Internet Architecture +1206.0306 +1206.0309 Rings and Algebras +1206.0311 Neurons and Cognition +1206.0312 Quantitative Methods +1206.0317 Combinatorics +1206.0321 Exactly Solvable and Integrable Systems +1206.0322 +1206.0323 Networking and Internet Architecture +1206.0324 Quantitative Methods +1206.0331 +1206.0333 Learning +1206.0335 Information Retrieval +1206.0340 Number Theory +1206.0348 Statistical Mechanics +1206.0350 Complex Variables +1206.0351 Instrumentation and Methods for Astrophysics +1206.0354 Classical Physics +1206.0358 Representation Theory +1206.0359 Adaptation and Self-Organizing Systems +1206.0361 Software Engineering +1206.0362 Quantitative Methods +1206.0363 Solar and Stellar Astrophysics +1206.0367 Combinatorics +1206.0369 Metric Geometry +1206.0371 Probability +1206.0373 Software Engineering +1206.0375 Computational Complexity +1206.0376 Information Theory +1206.0377 Computation and Language +1206.0381 Computation and Language +1206.0383 Functional Analysis +1206.0386 Mesoscale and Nanoscale Physics +1206.0389 Fluid Dynamics +1206.0390 +1206.0391 +1206.0392 Machine Learning +1206.0393 Machine Learning +1206.0396 Operating Systems +1206.0397 Computational Physics +1206.0400 Superconductivity +1206.0405 General Physics +1206.0410 Quantum Algebra +1206.0415 Materials Science +1206.0418 Information Theory +1206.0419 Distributed, Parallel, and Cluster Computing +1206.0420 Networking and Internet Architecture +1206.0423 Functional Analysis +1206.0425 Other Computer Science +1206.0430 Networking and Internet Architecture +1206.0431 High Energy Astrophysical Phenomena +1206.0443 Representation Theory +1206.0447 Other Computer Science +1206.0450 General Finance +1206.0454 Algebraic Geometry +1206.0455 Quantum Algebra +1206.0456 Cell Behavior +1206.0457 Statistics Theory +1206.0459 Statistics Theory +1206.0462 +1206.0463 Functional Analysis +1206.0469 Computer Science and Game Theory +1206.0473 General Topology +1206.0479 Functional Analysis +1206.0481 Cosmology and Nongalactic Astrophysics +1206.0490 Group Theory +1206.0492 Functional Analysis +1206.0494 Optics +1206.0495 Analysis of PDEs +1206.0496 Statistical Finance +1206.0501 Chemical Physics +1206.0503 Combinatorics +1206.0510 Soft Condensed Matter +1206.0511 Combinatorics +1206.0513 Numerical Analysis +1206.0514 Computational Geometry +1206.0517 Differential Geometry +1206.0520 Phenomenology +1206.0522 Representation Theory +1206.0529 Cell Behavior +1206.0531 Combinatorics +1206.0536 Quantitative Methods +1206.0541 Strongly Correlated Electrons +1206.0544 Phenomenology +1206.0553 Number Theory +1206.0555 Robotics +1206.0556 Robotics +1206.0557 Earth and Planetary Astrophysics +1206.0560 Neurons and Cognition +1206.0561 Statistical Mechanics +1206.0566 Metric Geometry +1206.0567 +1206.0570 Digital Libraries +1206.0571 +1206.0572 Fluid Dynamics +1206.0573 Accelerator Physics +1206.0578 Cosmology and Nongalactic Astrophysics +1206.0579 Superconductivity +1206.0580 Data Structures and Algorithms +1206.0582 +1206.0583 Probability +1206.0585 Dynamical Systems +1206.0587 Group Theory +1206.0588 Instrumentation and Methods for Astrophysics +1206.0591 Mesoscale and Nanoscale Physics +1206.0595 Instrumentation and Methods for Astrophysics +1206.0596 General Physics +1206.0599 High Energy Astrophysical Phenomena +1206.0602 Solar and Stellar Astrophysics +1206.0604 Computers and Society +1206.0605 Probability +1206.0606 Number Theory +1206.0609 Distributed, Parallel, and Cluster Computing +1206.0613 Statistics Theory +1206.0616 Molecular Networks +1206.0627 Phenomenology +1206.0629 Data Structures and Algorithms +1206.0631 Analysis of PDEs +1206.0632 Soft Condensed Matter +1206.0633 Probability +1206.0636 Phenomenology +1206.0642 Complex Variables +1206.0651 Functional Analysis +1206.0659 Experiment +1206.0663 Information Theory +1206.0666 Optics +1206.0669 Geometric Topology +1206.0670 Representation Theory +1206.0681 Other Computer Science +1206.0686 General Mathematics +1206.0693 Algebraic Topology +1206.0698 +1206.0702 Chemical Physics +1206.0707 Probability +1206.0712 Solar and Stellar Astrophysics +1206.0715 Portfolio Management +cond-mat/0603376 Strongly Correlated Electrons +math/0410337 Operator Algebras +math/0510323 Operator Algebras +quant-ph/0609025 +0705.3390 Differential Geometry +0710.2627 Representation Theory +0712.4159 Neural and Evolutionary Computing +0908.2665 Probability +0910.1559 Geometric Topology +1001.0311 +1005.0443 Mesoscale and Nanoscale Physics +1008.3964 Analysis of PDEs +1009.0256 Classical Analysis and ODEs +1009.3231 Geometric Topology +1009.4192 Cosmology and Nongalactic Astrophysics +1011.2977 Probability +1011.5292 Group Theory +1012.5420 Operator Algebras +1012.5852 Differential Geometry +1101.0013 Analysis of PDEs +1101.4188 Solar and Stellar Astrophysics +1103.0517 Fluid Dynamics +1103.3029 Analysis of PDEs +1105.1965 Group Theory +1106.3334 Geophysics +1106.4050 Probability +1106.4968 Phenomenology +1107.2868 Optics +1107.4964 +1108.1464 Robotics +1109.5154 +1109.6708 Numerical Analysis +1110.2356 Quantum Algebra +1110.5664 Analysis of PDEs +1111.2148 Materials Science +1111.3374 Social and Information Networks +1112.3155 +1112.3738 Complex Variables +1112.4213 Methodology +1112.5411 Materials Science +1201.2235 Mesoscale and Nanoscale Physics +1201.3023 Analysis of PDEs +1201.3257 Earth and Planetary Astrophysics +1201.4130 Phenomenology +1201.4679 Chaotic Dynamics +1201.5077 Symplectic Geometry +1201.6623 Statistical Mechanics +1202.3077 Symplectic Geometry +1202.5701 +1203.1003 Analysis of PDEs +1203.2109 +1203.3710 Combinatorics +1203.3947 Algebraic Geometry +1203.4554 Superconductivity +1203.5705 +1203.5881 Phenomenology +1204.0415 Phenomenology +1204.4968 Geometric Topology +1204.4980 Chemical Physics +1204.5006 Mesoscale and Nanoscale Physics +1204.5413 Optics +1204.6540 Analysis of PDEs +1205.1056 +1205.5484 Solar and Stellar Astrophysics +1205.6492 Earth and Planetary Astrophysics +1205.6976 Probability +1206.1191 Medical Physics +1206.1237 General Physics +1206.1452 +1206.4293 Commutative Algebra +1206.5322 Classical Physics +1206.6265 +1207.0181 Phenomenology +1207.0721 Chaotic Dynamics +1207.1618 Strongly Correlated Electrons +1207.1831 Data Structures and Algorithms +1207.2053 Quantum Gases +1207.4289 Theory +1207.5354 +1207.5521 Phenomenology +1207.5961 Theory +1207.6014 Mesoscale and Nanoscale Physics +1207.6029 Strongly Correlated Electrons +1207.6875 Materials Science +1207.7132 Classical Physics +1208.0046 Atomic Physics +1208.0678 Strongly Correlated Electrons +1208.1226 High Energy Astrophysical Phenomena +1208.1576 Plasma Physics +1208.3955 Combinatorics +1208.4420 Atomic Physics +1208.5379 Strongly Correlated Electrons +1208.5536 Theory +1209.2225 Chemical Physics +1209.2387 Strongly Correlated Electrons +1209.3587 Phenomenology +1209.3821 Phenomenology +1209.3839 Quantum Gases +1209.4183 Instrumentation and Detectors +1209.4300 Commutative Algebra +1209.4328 Classical Analysis and ODEs +1209.6191 +1210.0753 +1210.0798 Algebraic Geometry +1210.3574 High Energy Astrophysical Phenomena +1210.7016 Lattice +1210.8149 Astrophysics of Galaxies +1210.8169 Algebraic Geometry +1211.0860 Statistical Mechanics +1211.1376 Solar and Stellar Astrophysics +1211.1937 Phenomenology +1211.2532 Computation +1211.3612 +1211.4073 Strongly Correlated Electrons +1211.4331 Phenomenology +1211.4484 Solar and Stellar Astrophysics +1211.4864 Distributed, Parallel, and Cluster Computing +1211.5441 Logic +1211.5699 Mesoscale and Nanoscale Physics +1211.5789 Algebraic Topology +1211.5875 Number Theory +1211.5908 Computer Science and Game Theory +1211.6039 Multiagent Systems +1211.6053 Phenomenology +1211.6057 History and Overview +1211.6097 Artificial Intelligence +1211.6098 General Physics +1211.6101 Robotics +1211.6133 High Energy Astrophysical Phenomena +1211.6137 Group Theory +1211.6143 Applications +1211.6145 Solar and Stellar Astrophysics +1211.6146 Combinatorics +1211.6149 Representation Theory +1211.6150 High Energy Astrophysical Phenomena +1211.6152 General Physics +1211.6158 Learning +1211.6159 Information Retrieval +1211.6163 Lattice +1211.6164 Lattice +1211.6166 Information Retrieval +1211.6169 Probability +1211.6170 Category Theory +1211.6173 Analysis of PDEs +1211.6175 Strongly Correlated Electrons +1211.6176 Databases +1211.6178 +1211.6180 Lattice +1211.6185 Operating Systems +1211.6186 Software Engineering +1211.6187 Logic in Computer Science +1211.6188 Logic in Computer Science +1211.6189 Systems and Control +1211.6190 Logic in Computer Science +1211.6191 Software Engineering +1211.6192 Programming Languages +1211.6193 Programming Languages +1211.6194 Logic in Computer Science +1211.6195 Data Structures and Algorithms +1211.6196 Logic in Computer Science +1211.6197 Logic in Computer Science +1211.6199 Number Theory +1211.6202 Materials Science +1211.6206 Combinatorics +1211.6208 Cosmology and Nongalactic Astrophysics +1211.6210 Differential Geometry +1211.6217 Analysis of PDEs +1211.6218 Information Theory +1211.6219 Solar and Stellar Astrophysics +1211.6227 Analysis of PDEs +1211.6229 Algebraic Geometry +1211.6231 Optimization and Control +1211.6233 Algebraic Geometry +1211.6235 Algebraic Geometry +1211.6237 Solar and Stellar Astrophysics +1211.6238 Neurons and Cognition +1211.6240 Functional Analysis +1211.6243 Functional Analysis +1211.6251 Networking and Internet Architecture +1211.6252 Phenomenology +1211.6257 +1211.6261 Combinatorics +1211.6264 +1211.6265 Theory +1211.6266 Probability +1211.6270 Materials Science +1211.6273 Databases +1211.6275 Earth and Planetary Astrophysics +1211.6276 Differential Geometry +1211.6277 Lattice +1211.6279 Information Theory +1211.6282 +1211.6283 Algebraic Geometry +1211.6284 Group Theory +1211.6287 Combinatorics +1211.6289 Phenomenology +1211.6290 Instrumentation and Detectors +1211.6295 Chaotic Dynamics +1211.6299 +1211.6321 Digital Libraries +1211.6327 Lattice +1211.6330 Instrumentation and Detectors +1211.6338 History and Philosophy of Physics +1211.6340 Learning +1211.6341 Logic in Computer Science +1211.6346 Phenomenology +1211.6353 Optimization and Control +1211.6364 Atomic Physics +1211.6366 +1211.6368 Complex Variables +1211.6370 Software Engineering +1211.6374 +1211.6379 Soft Condensed Matter +1211.6380 Algebraic Geometry +1211.6388 Geometric Topology +1211.6392 Plasma Physics +1211.6399 Functional Analysis +1211.6403 Statistics Theory +1211.6408 High Energy Astrophysical Phenomena +1211.6410 Neural and Evolutionary Computing +1211.6411 Human-Computer Interaction +1211.6415 Functional Analysis +1211.6418 Programming Languages +1211.6419 Probability +1211.6422 Differential Geometry +math/0311080 Classical Analysis and ODEs +nlin/0610040 Adaptation and Self-Organizing Systems +0705.3841 Phenomenology +0708.0394 Mesoscale and Nanoscale Physics +0712.0785 Classical Analysis and ODEs +0812.2683 Optimization and Control +0812.3700 Combinatorics +0901.0332 +0906.2027 Learning +0906.4508 Number Theory +0909.5371 Geometric Topology +0911.1667 Functional Analysis +0911.3014 Algebraic Topology +0912.2468 Statistical Mechanics +1002.3752 Algebraic Topology +1002.4965 Solar and Stellar Astrophysics +1002.4970 Solar and Stellar Astrophysics +1003.2175 Cosmology and Nongalactic Astrophysics +1003.2568 Solar and Stellar Astrophysics +1003.3032 Solar and Stellar Astrophysics +1003.4375 Classical Analysis and ODEs +1004.0536 Number Theory +1005.5072 Functional Analysis +1005.5532 +1006.3842 +1007.0980 General Physics +1007.5074 Statistical Finance +1008.1469 Combinatorics +1008.3316 Number Theory +1008.3934 +1009.3372 Cosmology and Nongalactic Astrophysics +1011.1522 Functional Analysis +1011.4653 K-Theory and Homology +1011.5318 Dynamical Systems +1101.1632 +1101.3143 Number Theory +1101.3986 +1101.4442 Number Theory +1101.4709 Mesoscale and Nanoscale Physics +1103.0506 Numerical Analysis +1103.1019 Number Theory +1103.2425 Mesoscale and Nanoscale Physics +1103.2547 Complex Variables +1103.4296 Optimization and Control +1104.0361 Algebraic Geometry +1104.0629 Cosmology and Nongalactic Astrophysics +1104.0823 Combinatorics +1104.2656 Disordered Systems and Neural Networks +1104.3697 Numerical Analysis +1105.0325 Theory +1105.0478 Probability +1106.3982 General Physics +1107.1169 Soft Condensed Matter +1107.2375 Phenomenology +1107.2985 Representation Theory +1107.3356 +1107.3820 Theory +1107.5396 Algebraic Topology +1108.0216 Differential Geometry +1108.0672 +1108.2024 +1108.3486 Solar and Stellar Astrophysics +1108.4907 Materials Science +1108.6210 Numerical Analysis +1109.2306 Digital Libraries +1109.3192 Theory +1109.4981 +1109.5495 Mesoscale and Nanoscale Physics +1109.5915 +1110.0881 Statistical Mechanics +1110.1023 Algebraic Geometry +1110.1232 Complex Variables +1110.3586 Neural and Evolutionary Computing +1110.5378 Differential Geometry +1110.5624 Astrophysics of Galaxies +1111.1587 General Physics +1111.1797 Learning +1111.2693 Distributed, Parallel, and Cluster Computing +1111.2873 Quantum Gases +1111.3097 Data Structures and Algorithms +1111.3407 Geometric Topology +1111.6249 Cosmology and Nongalactic Astrophysics +1111.7204 Lattice +1112.0489 +1112.1994 Information Theory +1112.2350 Cosmology and Nongalactic Astrophysics +1112.2646 Dynamical Systems +1112.3178 +1112.4620 Networking and Internet Architecture +1112.4631 Discrete Mathematics +1112.4695 Experiment +1112.5647 Statistical Mechanics +1201.0057 Numerical Analysis +1201.0291 Analysis of PDEs +1201.1362 Atomic Physics +1201.3391 +1201.4112 +1201.4377 General Physics +1201.4564 Physics and Society +1201.6558 +1202.0672 Soft Condensed Matter +1202.1358 Biomolecules +1202.3169 +1202.3390 Geometric Topology +1202.5009 +1202.6413 Operator Algebras +1202.6519 Mesoscale and Nanoscale Physics +1203.0100 Computer Science and Game Theory +1203.0283 Classical Analysis and ODEs +1203.1006 Digital Libraries +1203.2203 K-Theory and Homology +1203.2847 Experiment +1203.3586 Information Retrieval +1203.4092 Differential Geometry +1203.4470 +1203.4995 +1203.5039 +1203.5101 Classical Physics +1203.5307 Differential Geometry +1203.5566 Analysis of PDEs +1203.5774 +1203.5960 Cryptography and Security +1203.6440 Theory +1204.0276 Representation Theory +1204.0526 Popular Physics +1204.0930 Commutative Algebra +1204.1304 Analysis of PDEs +1204.1324 Biomolecules +1204.1550 +1204.1554 Functional Analysis +1204.1557 Phenomenology +1204.1558 Neurons and Cognition +1204.1559 Information Theory +1204.1560 Geophysics +1204.1561 Computers and Society +1204.1566 Other Computer Science +1204.1573 Number Theory +1204.1575 Number Theory +1204.1576 Artificial Intelligence +1204.1581 Multiagent Systems +1204.1582 Other Condensed Matter +1204.1583 General Finance +1204.1585 General Mathematics +1204.1587 Functional Analysis +1204.1594 Computers and Society +1204.1595 Networking and Internet Architecture +1204.1596 Networking and Internet Architecture +1204.1597 Networking and Internet Architecture +1204.1598 Databases +1204.1599 Instrumentation and Methods for Astrophysics +1204.1600 Differential Geometry +1204.1601 Cryptography and Security +1204.1602 Materials Science +1204.1603 Cryptography and Security +1204.1604 Differential Geometry +1204.1606 Representation Theory +1204.1611 Computer Vision and Pattern Recognition +1204.1614 Networking and Internet Architecture +1204.1615 Computer Vision and Pattern Recognition +1204.1624 Machine Learning +1204.1627 Statistics Theory +1204.1629 Computer Vision and Pattern Recognition +1204.1631 Computer Vision and Pattern Recognition +1204.1635 Complex Variables +1204.1638 Exactly Solvable and Integrable Systems +1204.1639 Dynamical Systems +1204.1640 Exactly Solvable and Integrable Systems +1204.1644 Cryptography and Security +1204.1645 +1204.1646 Cryptography and Security +1204.1647 Numerical Analysis +1204.1649 Robotics +1204.1650 Robotics +1204.1651 Cryptography and Security +1204.1653 Artificial Intelligence +1204.1655 High Energy Astrophysical Phenomena +1204.1656 Computational Complexity +1204.1658 Networking and Internet Architecture +1204.1660 Optimization and Control +1204.1662 Geophysics +1204.1667 Classical Analysis and ODEs +1204.1668 Group Theory +1204.1673 Statistics Theory +1204.1676 Probability +1204.1678 Computer Vision and Pattern Recognition +1204.1686 Metric Geometry +1204.1687 Functional Analysis +1204.1689 Group Theory +1204.1690 Group Theory +1204.1693 Representation Theory +1204.1694 Optics +1204.1696 Functional Analysis +1204.1701 Geometric Topology +1204.1703 Dynamical Systems +1204.1705 Earth and Planetary Astrophysics +1204.1707 Dynamical Systems +1204.1709 Numerical Analysis +1204.1710 Databases +1204.1712 +1204.1715 Optimization and Control +1204.1718 Numerical Analysis +1204.1719 Earth and Planetary Astrophysics +1204.1721 Rings and Algebras +1204.1723 K-Theory and Homology +1204.1726 Numerical Analysis +1204.1730 Optimization and Control +1204.1731 +1204.1732 +1204.1733 Numerical Analysis +1204.1738 Mesoscale and Nanoscale Physics +1204.1739 Information Theory +1204.1745 Number Theory +1204.1747 +1204.1748 Networking and Internet Architecture +1204.1749 Emerging Technologies +1204.1750 Phenomenology +1204.1752 Biological Physics +1204.1754 Databases +1204.1756 Robotics +1204.1757 Robotics +1204.1762 Cosmology and Nongalactic Astrophysics +1204.1764 Computational Complexity +1204.1768 Analysis of PDEs +1204.1769 Analysis of PDEs +1204.1770 Analysis of PDEs +1204.1771 Analysis of PDEs +1204.1779 Numerical Analysis +1204.1781 Materials Science +1204.1782 Analysis of PDEs +1204.1788 Analysis of PDEs +1204.1790 Networking and Internet Architecture +1204.1794 +1204.1795 Machine Learning +1204.1796 Algebraic Geometry +1204.1797 Cryptography and Security +1204.1802 Other Computer Science +1204.1806 Solar and Stellar Astrophysics +1204.1807 General Physics +1204.1808 Networking and Internet Architecture +1204.1809 Dynamical Systems +1204.1810 Logic +1204.1811 Computer Vision and Pattern Recognition +1204.1814 Dynamical Systems +1204.1820 Networking and Internet Architecture +1204.1823 Number Theory +1204.1824 Cryptography and Security +1204.1826 Differential Geometry +1204.1830 Classical Analysis and ODEs +1204.1833 History and Philosophy of Physics +1204.1834 Phenomenology +1204.1835 Astrophysics of Galaxies +1204.1839 Computers and Society +1204.1854 Representation Theory +1204.1855 Representation Theory +1204.1856 Optimization and Control +1204.1859 +1204.1861 Probability +1204.1863 +1204.1864 Cosmology and Nongalactic Astrophysics +1204.1866 Probability +1204.1868 Multimedia +1204.1869 Optimization and Control +1204.1872 Solar and Stellar Astrophysics +1204.1874 Numerical Analysis +1204.1881 Software Engineering +1204.1894 Digital Libraries +1204.1898 Superconductivity +1204.1899 Numerical Analysis +1204.1901 Materials Science +1204.1904 Analysis of PDEs +1204.1905 Statistics Theory +1204.1906 Group Theory +1204.1907 Dynamical Systems +1204.1909 Artificial Intelligence +1204.1911 Algebraic Geometry +1204.1914 Phenomenology +1204.1916 +1204.1921 Probability +1204.1924 Information Theory +1204.1925 Computational Physics +1204.1930 Theory +1204.1931 Probability +1204.1933 Information Theory +1204.1934 Chaotic Dynamics +1204.1935 Applications +1204.1937 Applications +1204.1941 Molecular Networks +1204.1943 Cosmology and Nongalactic Astrophysics +1204.1947 Combinatorics +1204.1948 Astrophysics of Galaxies +1204.1949 Information Retrieval +1204.1952 General Physics +1204.1953 Biological Physics +1204.1954 Functional Analysis +1204.1961 Combinatorics +alg-geom/9205005 Algebraic Geometry +alg-geom/9206001 Algebraic Geometry +alg-geom/9401007 Algebraic Geometry +alg-geom/9607011 Algebraic Geometry +astro-ph/0408378 +hep-th/0609171 Theory +math/0201228 Algebraic Geometry +math/0203122 Algebraic Geometry +math/0203284 Algebraic Geometry +math/0204230 Algebraic Geometry +math/0401167 Algebraic Geometry +math/0406345 Complex Variables +math/0406347 Complex Variables +math/0406368 Analysis of PDEs +math/0407150 Algebraic Geometry +math/0412332 Optimization and Control +math/9512211 Functional Analysis +math/9805020 Algebraic Geometry +math/9812098 Algebraic Geometry +math/9906131 Algebraic Geometry +math/9907163 Geometric Topology +math/9912092 Algebraic Geometry +0704.0367 +0704.3002 Group Theory +0704.3595 +0705.0235 +0706.2702 +0711.1985 +0712.0160 Algebraic Topology +0712.1002 Statistical Mechanics +0712.2390 Representation Theory +0803.2914 Combinatorics +0804.0793 +0805.1214 +0806.1774 Representation Theory +0806.4180 +0808.1679 Combinatorics +0811.0898 +0812.1728 General Mathematics +0901.3041 +0901.4888 Rings and Algebras +0902.1178 Algebraic Topology +0902.1368 General Physics +0902.1520 +0903.0085 Group Theory +0905.2960 Astrophysics of Galaxies +0906.4129 Combinatorics +0907.5499 Probability +0908.1749 Quantum Algebra +0909.0062 Group Theory +0911.0342 Representation Theory +0911.1624 +0911.1973 Probability +0912.4743 Probability +1003.1043 Cosmology and Nongalactic Astrophysics +1003.2165 Number Theory +1003.4358 Representation Theory +1005.5660 Representation Theory +1006.1282 Numerical Analysis +1006.1848 Functional Analysis +1006.2005 Symplectic Geometry +1006.2126 +1007.1071 Combinatorics +1007.2728 Biological Physics +1007.5240 Networking and Internet Architecture +1008.0274 Commutative Algebra +1009.1418 Computational Physics +1009.4623 Dynamical Systems +1011.0131 +1011.3193 Dynamical Systems +1011.6160 Number Theory +1012.0009 Distributed, Parallel, and Cluster Computing +1012.0926 Differential Geometry +1012.1059 Rings and Algebras +1012.3411 Earth and Planetary Astrophysics +1101.3504 Probability +1102.5454 Complex Variables +1104.2111 Category Theory +1105.2931 Symplectic Geometry +1105.5408 Complex Variables +1106.0535 Combinatorics +1106.1852 Computers and Society +1106.3721 +1106.5331 Category Theory +1107.0778 Category Theory +1107.1011 Optimization and Control +1107.2722 Computational Complexity +1107.5410 +1108.0269 +1108.3276 Quantum Gases +1108.5193 Cosmology and Nongalactic Astrophysics +1108.5352 Number Theory +1108.6000 Complex Variables +1108.6303 Quantum Gases +1109.1943 +1109.2002 Instrumentation and Methods for Astrophysics +1109.3508 Combinatorics +1109.3559 Solar and Stellar Astrophysics +1109.4595 +1109.5172 Phenomenology +1109.6368 Algebraic Geometry +1110.1258 Data Analysis, Statistics and Probability +1110.1388 +1110.2980 Physics and Society +1110.3128 Combinatorics +1110.3145 Disordered Systems and Neural Networks +1110.4628 Mesoscale and Nanoscale Physics +1111.1037 Functional Analysis +1111.2989 Astrophysics of Galaxies +1111.3383 Phenomenology +1111.3554 Quantum Gases +1111.3915 Representation Theory +1111.5975 Differential Geometry +1111.6014 Mesoscale and Nanoscale Physics +1111.6738 +1112.0772 Statistical Mechanics +1112.1613 +1112.3355 Strongly Correlated Electrons +1112.3461 Phenomenology +1112.4451 Operating Systems +1112.4460 Combinatorics +1112.5625 Data Analysis, Statistics and Probability +1201.0441 Representation Theory +1201.0456 Strongly Correlated Electrons +1201.1075 Strongly Correlated Electrons +1201.2784 Space Physics +1201.3532 Strongly Correlated Electrons +1201.5702 Phenomenology +1201.5787 Algebraic Geometry +1201.6561 Statistical Mechanics +1202.0123 Representation Theory +1202.0617 Social and Information Networks +1202.1422 Solar and Stellar Astrophysics +1202.2198 Geometric Topology +1202.2277 Statistics Theory +1202.2955 Experiment +1202.3595 +1202.3635 History and Philosophy of Physics +1202.3671 Analysis of PDEs +1202.3698 Artificial Intelligence +1202.3699 Artificial Intelligence +1202.3700 Computer Science and Game Theory +1202.3701 Learning +1202.3702 Learning +1202.3703 Systems and Control +1202.3704 Learning +1202.3705 Computer Science and Game Theory +1202.3706 Information Retrieval +1202.3707 Artificial Intelligence +1202.3708 Learning +1202.3709 Artificial Intelligence +1202.3710 Computer Science and Game Theory +1202.3711 Artificial Intelligence +1202.3712 Learning +1202.3713 Artificial Intelligence +1202.3714 Learning +1202.3715 Systems and Control +1202.3716 Learning +1202.3717 Learning +1202.3718 Artificial Intelligence +1202.3719 Artificial Intelligence +1202.3720 Systems and Control +1202.3721 Artificial Intelligence +1202.3722 Learning +1202.3723 Artificial Intelligence +1202.3724 Artificial Intelligence +1202.3725 Learning +1202.3726 Learning +1202.3727 Learning +1202.3728 Artificial Intelligence +1202.3729 Artificial Intelligence +1202.3730 Learning +1202.3731 Learning +1202.3732 Learning +1202.3733 Learning +1202.3734 Learning +1202.3735 Learning +1202.3736 Learning +1202.3737 Learning +1202.3738 Learning +1202.3739 Artificial Intelligence +1202.3740 Artificial Intelligence +1202.3741 Artificial Intelligence +1202.3743 Artificial Intelligence +1202.3744 Artificial Intelligence +1202.3745 Artificial Intelligence +1202.3746 Learning +1202.3747 Learning +1202.3748 Learning +1202.3749 Artificial Intelligence +1202.3750 Learning +1202.3751 Computer Science and Game Theory +1202.3752 Information Retrieval +1202.3753 Learning +1202.3754 Artificial Intelligence +1202.3755 Computer Science and Game Theory +1202.3756 Computer Science and Game Theory +1202.3757 Learning +1202.3758 Learning +1202.3759 Artificial Intelligence +1202.3760 Methodology +1202.3761 Learning +1202.3762 Artificial Intelligence +1202.3763 Learning +1202.3764 Artificial Intelligence +1202.3765 Methodology +1202.3766 Learning +1202.3767 Artificial Intelligence +1202.3768 Computer Science and Game Theory +1202.3769 Learning +1202.3770 Learning +1202.3771 Learning +1202.3773 Artificial Intelligence +1202.3774 Machine Learning +1202.3775 Learning +1202.3776 Learning +1202.3777 Artificial Intelligence +1202.3778 Learning +1202.3779 Learning +1202.3782 Learning +1202.3789 Theory +1202.3791 Cosmology and Nongalactic Astrophysics +1202.3799 Accelerator Physics +1202.3802 Atmospheric and Oceanic Physics +1202.3805 Strongly Correlated Electrons +1202.3807 Databases +1202.3808 History and Overview +1202.3811 Accelerator Physics +1202.3812 Phenomenology +1202.3815 Cosmology and Nongalactic Astrophysics +1202.3816 Accelerator Physics +1202.3818 Fluid Dynamics +1202.3820 Analysis of PDEs +1202.3823 Medical Physics +1202.3826 Combinatorics +1202.3828 Plasma Physics +1202.3843 Combinatorics +1202.3849 +1202.3850 Geometric Topology +1202.3867 Analysis of PDEs +1202.3870 Functional Analysis +1202.3872 Human-Computer Interaction +1202.3875 Analysis of PDEs +1202.3877 Representation Theory +1202.3879 Plasma Physics +1202.3880 Analysis of PDEs +1202.3887 Artificial Intelligence +1202.3888 +1202.3889 Theory +1202.3893 Materials Science +1202.3898 Computer Science and Game Theory +1202.3899 Atomic Physics +1202.3909 Superconductivity +1202.3910 Information Theory +1202.3919 Human-Computer Interaction +1202.3926 Human-Computer Interaction +1202.3928 Functional Analysis +1202.3931 Numerical Analysis +1202.3933 History and Overview +1202.3941 Digital Libraries +1202.3943 Distributed, Parallel, and Cluster Computing +1202.3945 Geometric Topology +1202.3946 Accelerator Physics +1202.3950 Accelerator Physics +1202.3952 Quantitative Methods +1202.3953 Accelerator Physics +1202.3955 +1202.3961 Accelerator Physics +1202.3962 Functional Analysis +1202.3963 Functional Analysis +1202.3964 Differential Geometry +1202.3965 Number Theory +1202.3971 Spectral Theory +1202.3974 Networking and Internet Architecture +1202.3976 Accelerator Physics +1202.3979 Accelerator Physics +1202.3987 Cryptography and Security +1202.3993 Networking and Internet Architecture +1202.3994 Materials Science +1202.3999 Earth and Planetary Astrophysics +1202.4002 Computer Vision and Pattern Recognition +1202.4003 Materials Science +1202.4004 Materials Science +1202.4005 Solar and Stellar Astrophysics +1202.4006 Probability +1202.4008 Networking and Internet Architecture +1202.4010 +1202.4015 Combinatorics +1202.4017 Combinatorics +astro-ph/0703573 +gr-qc/0703057 +math/0309325 Geometric Topology +math/0309339 Group Theory +math/0310303 Geometric Topology +math/0511179 Group Theory +math/0611717 Geometric Topology +0804.3545 Phenomenology +0806.2775 Theory +0806.4077 Algebraic Geometry +0807.1832 +0807.2044 Algebraic Geometry +0808.0991 Statistical Mechanics +0810.2150 Distributed, Parallel, and Cluster Computing +0811.2364 +0812.3429 +0906.1953 Data Structures and Algorithms +0907.1809 Algebraic Geometry +0908.2741 Data Analysis, Statistics and Probability +0910.0210 Phenomenology +0910.0633 Group Theory +0912.4061 General Mathematics +1001.3084 Statistics Theory +1004.0994 Number Theory +1004.2243 Strongly Correlated Electrons +1004.2593 Optimization and Control +1004.3650 Rings and Algebras +1004.5224 Optimization and Control +1005.1127 Rings and Algebras +1005.5239 Rings and Algebras +1006.0075 +1006.0264 Cosmology and Nongalactic Astrophysics +1006.0503 Functional Analysis +1007.0583 Dynamical Systems +1007.1147 Strongly Correlated Electrons +1007.2224 Probability +1007.3604 Data Structures and Algorithms +1007.4292 Atmospheric and Oceanic Physics +1008.0371 Phenomenology +1008.1575 Exactly Solvable and Integrable Systems +1009.5186 Rings and Algebras +1010.0136 Complex Variables +1010.2035 Number Theory +1010.3004 Theory +1010.5578 Analysis of PDEs +1011.4571 +1012.5305 Algebraic Geometry +1012.5604 Theory +1012.5746 Commutative Algebra +1102.4956 Instrumentation and Methods for Astrophysics +1102.5053 +1103.0929 +1103.1429 Analysis of PDEs +1103.4329 Cosmology and Nongalactic Astrophysics +1104.0483 Combinatorics +1104.0641 Materials Science +1104.2286 Spectral Theory +1104.5212 Superconductivity +1105.1466 Numerical Analysis +1105.2926 Combinatorics +1106.0409 Analysis of PDEs +1106.3732 +1106.4932 +1106.5239 Algebraic Geometry +1107.0462 Differential Geometry +1107.4269 Analysis of PDEs +1107.4752 Probability +1108.0392 Strongly Correlated Electrons +1108.0736 Molecular Networks +1108.1397 Theory +1108.1595 Strongly Correlated Electrons +1108.2941 Phenomenology +1108.3023 High Energy Astrophysical Phenomena +1108.3423 Methodology +1108.4791 +1109.0266 +1109.2480 Lattice +1109.3160 Applications +1109.3782 Optimization and Control +1109.3825 Algebraic Geometry +1109.4520 Mesoscale and Nanoscale Physics +1109.6338 Geometric Topology +1110.0045 Superconductivity +1110.0965 +1110.2611 Algebraic Geometry +1110.6263 +1110.6673 Phenomenology +1110.6714 +1111.0202 Materials Science +1111.1534 Mesoscale and Nanoscale Physics +1111.2033 Statistical Mechanics +1111.4105 +1111.4371 Combinatorics +1111.4483 Solar and Stellar Astrophysics +1111.5001 Analysis of PDEs +1111.5686 Quantum Gases +1111.6435 Materials Science +1111.6798 Analysis of PDEs +1111.7109 Logic +1111.7296 Strongly Correlated Electrons +1112.0093 Physics and Society +1112.0216 +1112.0995 Theory +1112.1471 Differential Geometry +1112.2116 Optimization and Control +1112.4360 Phenomenology +1112.5414 Mesoscale and Nanoscale Physics +1112.5533 Chemical Physics +1112.6065 Phenomenology +1201.0965 General Physics +1201.1927 Methodology +1201.2167 Combinatorics +1201.3897 Geometric Topology +1201.3974 Strongly Correlated Electrons +1201.3975 Strongly Correlated Electrons +1201.4532 Cryptography and Security +1201.4651 Numerical Analysis +1201.5048 Superconductivity +1201.5365 Symbolic Computation +1201.6341 Superconductivity +1202.0171 Mesoscale and Nanoscale Physics +1202.2201 Statistical Mechanics +1202.2735 Theory +1202.2985 Mesoscale and Nanoscale Physics +1202.3539 Neurons and Cognition +1202.4208 +1202.4379 Mesoscale and Nanoscale Physics +1202.6424 Cosmology and Nongalactic Astrophysics +1203.0455 Mesoscale and Nanoscale Physics +1203.0546 Astrophysics of Galaxies +1203.1740 Systems and Control +1203.3375 Classical Physics +1203.3443 Complex Variables +1203.4547 Discrete Mathematics +1203.5180 Algebraic Topology +1203.5805 Strongly Correlated Electrons +1203.6145 Combinatorics +1204.0503 Combinatorics +1204.1458 Cryptography and Security +1204.1962 Symplectic Geometry +1204.2090 Probability +1204.2132 Group Theory +1204.2523 Machine Learning +1204.2955 Data Structures and Algorithms +1204.3046 Information Theory +1204.3175 Group Theory +1204.3376 Combinatorics +1204.4470 Medical Physics +1204.4567 +1204.4916 Numerical Analysis +1204.4948 Databases +1204.5082 Classical Analysis and ODEs +1204.5591 Biological Physics +1204.5974 Phenomenology +1204.6313 Populations and Evolution +1204.6314 +1204.6321 Multimedia +1204.6328 Populations and Evolution +1204.6336 Number Theory +1204.6339 Fluid Dynamics +1204.6344 Analysis of PDEs +1204.6345 Optimization and Control +1204.6346 Artificial Intelligence +1204.6352 Materials Science +1204.6361 Number Theory +1204.6362 Information Retrieval +1204.6364 Computation and Language +1204.6373 Rings and Algebras +1204.6374 Number Theory +1204.6376 Methodology +1204.6378 Probability +1204.6386 Group Theory +1204.6387 Strongly Correlated Electrons +1204.6391 Data Structures and Algorithms +1204.6396 Software Engineering +1204.6398 Materials Science +1204.6399 Functional Analysis +1204.6404 Functional Analysis +1204.6407 Differential Geometry +1204.6408 Computers and Society +1204.6411 Programming Languages +1204.6415 Artificial Intelligence +1204.6416 Cryptography and Security +1204.6419 Analysis of PDEs +1204.6422 Combinatorics +1204.6427 Phenomenology +1204.6431 Operator Algebras +1204.6433 Experiment +1204.6434 Analysis of PDEs +1204.6437 +1204.6438 +1204.6447 Discrete Mathematics +1204.6450 Analysis of PDEs +1204.6451 General Mathematics +1204.6453 Robotics +1204.6455 Networking and Internet Architecture +1204.6458 Computer Vision and Pattern Recognition +1204.6459 Cryptography and Security +1204.6460 +1204.6468 Theory +1204.6472 Solar and Stellar Astrophysics +1204.6473 Materials Science +1204.6480 Lattice +1204.6483 Statistical Finance +1204.6484 Computational Complexity +1204.6488 Trading and Market Microstructure +1204.6492 Software Engineering +1204.6494 Theory +1204.6497 Popular Physics +1204.6498 Theory +1204.6505 Methodology +1204.6507 Group Theory +1204.6515 Combinatorics +1204.6516 Methodology +1204.6518 Strongly Correlated Electrons +1204.6521 Digital Libraries +1204.6522 Operator Algebras +1204.6525 Classical Analysis and ODEs +1204.6536 Statistical Mechanics +1204.6545 Optimization and Control +1204.6554 Combinatorics +1204.6555 Combinatorics +1204.6556 Dynamical Systems +1204.6559 Classical Analysis and ODEs +1204.6560 Algebraic Geometry +1204.6562 +1204.6565 Pattern Formation and Solitons +1204.6567 Analysis of PDEs +1204.6568 Algebraic Topology +1204.6569 Classical Analysis and ODEs +1204.6571 Probability +1204.6575 History and Philosophy of Physics +1204.6576 History and Philosophy of Physics +1204.6578 Analysis of PDEs +1204.6583 Machine Learning +1204.6584 Cell Behavior +1204.6588 Computational Complexity +1204.6590 General Finance +1204.6593 Commutative Algebra +1204.6594 Solar and Stellar Astrophysics +1204.6606 Algebraic Geometry +1204.6609 Theory +1204.6614 Cosmology and Nongalactic Astrophysics +1204.6619 Cosmology and Nongalactic Astrophysics +1204.6623 Cryptography and Security +1204.6628 Distributed, Parallel, and Cluster Computing +1204.6629 Cryptography and Security +1204.6630 Instrumentation and Methods for Astrophysics +1204.6631 Distributed, Parallel, and Cluster Computing +1204.6636 General Physics +1204.6638 Multiagent Systems +1204.6639 +1204.6640 Analysis of PDEs +1204.6641 Statistics Theory +1204.6643 Numerical Analysis +1204.6646 +1204.6648 +1204.6650 Probability +1204.6651 Representation Theory +1204.6654 Soft Condensed Matter +1204.6661 Algebraic Geometry +1204.6665 Operator Algebras +1204.6670 Biological Physics +1204.6671 Logic in Computer Science +1204.6673 +1204.6675 Distributed, Parallel, and Cluster Computing +1204.6678 Medical Physics +1204.6681 Combinatorics +1204.6687 Combinatorics +1204.6688 Materials Science +1204.6690 Complex Variables +1204.6696 Computational Complexity +1204.6698 +1204.6700 Accelerator Physics +1204.6705 Number Theory +1204.6706 Materials Science +1204.6707 High Energy Astrophysical Phenomena +1204.6712 Classical Analysis and ODEs +1204.6713 Astrophysics of Galaxies +1204.6714 Combinatorics +1204.6715 Number Theory +1204.6719 Software Engineering +1204.6721 Instrumentation and Detectors +1204.6726 Accelerator Physics +1204.6727 Analysis of PDEs +1204.6731 Probability +1204.6733 Differential Geometry +math/0606223 Differential Geometry +math/0703527 Representation Theory +quant-ph/0511186 +0705.0821 Algebraic Geometry +0803.2205 Group Theory +0806.4431 Statistical Mechanics +0807.2409 Exactly Solvable and Integrable Systems +0808.1235 Optics +0811.1117 Soft Condensed Matter +0903.3586 Exactly Solvable and Integrable Systems +0903.4949 Classical Physics +0903.5436 Group Theory +0909.1373 Machine Learning +0911.2506 Atomic Physics +0911.2507 Atomic Physics +1002.1596 Theory +1003.4028 Group Theory +1004.0007 Group Theory +1007.3120 Combinatorics +1009.1768 Algebraic Geometry +1010.4229 Computational Geometry +1010.4543 Cosmology and Nongalactic Astrophysics +1011.0982 Group Theory +1103.2797 Probability +1104.1219 Probability +1104.3738 Probability +1104.5047 Strongly Correlated Electrons +1105.0395 Spectral Theory +1105.1911 General Physics +1105.5694 Probability +1106.3182 Superconductivity +1106.3640 +1106.4370 +1106.4374 +1106.4375 +1106.5090 Algebraic Topology +1106.5296 +1107.0394 Exactly Solvable and Integrable Systems +1107.4650 Computational Physics +1107.5611 Analysis of PDEs +1108.1873 Information Theory +1108.3656 Combinatorics +1108.3658 History and Overview +1108.3786 Theory +1108.5533 Statistics Theory +1109.0496 Theory +1109.0701 Methodology +1109.2802 Algebraic Geometry +1109.3209 General Physics +1109.6750 General Physics +1110.2888 Functional Analysis +1110.5138 Statistics Theory +1111.2885 Computer Science and Game Theory +1111.4670 Analysis of PDEs +1111.6082 Learning +1111.6487 +1111.7138 Group Theory +1112.1043 Chemical Physics +1112.4230 Classical Analysis and ODEs +1201.4087 Atomic Physics +1201.4623 Differential Geometry +1201.4731 +1201.4780 +1201.5294 High Energy Astrophysical Phenomena +1201.5296 Astrophysics of Galaxies +1202.0033 Analysis of PDEs +1202.1561 Methodology +1202.2661 Superconductivity +1202.6202 Differential Geometry +1203.0169 Theory +1203.0451 +1203.1322 Quantum Gases +1203.2098 +1203.2410 +1203.2585 Phenomenology +1203.3860 Differential Geometry +1203.5044 Mesoscale and Nanoscale Physics +1204.0190 Superconductivity +1204.0532 Phenomenology +1204.1043 +1204.2746 +1204.3747 Algebraic Geometry +1204.3971 Mesoscale and Nanoscale Physics +1204.5301 +1204.6625 Theory +1205.1308 Cosmology and Nongalactic Astrophysics +1205.1994 Materials Science +1205.2776 Disordered Systems and Neural Networks +1205.3826 Dynamical Systems +1205.6004 +1205.6785 Formal Languages and Automata Theory +1205.7035 +1206.0266 Mesoscale and Nanoscale Physics +1206.0876 Instrumentation and Methods for Astrophysics +1206.1025 Plasma Physics +1206.3460 Systems and Control +1206.5960 +1206.6997 Disordered Systems and Neural Networks +1207.1571 Distributed, Parallel, and Cluster Computing +1207.2057 High Energy Astrophysical Phenomena +1207.2483 Strongly Correlated Electrons +1207.3173 Analysis of PDEs +1207.3586 Data Structures and Algorithms +1207.4304 +1207.4742 Phenomenology +1207.5343 Physics and Society +1207.6506 Optics +1208.0349 Chemical Physics +1208.0862 Instrumentation and Detectors +1208.1422 +1208.1553 +1208.1743 Artificial Intelligence +1208.3610 Superconductivity +1208.5480 Earth and Planetary Astrophysics +1208.5532 Phenomenology +1208.6220 Number Theory +1209.0476 Cosmology and Nongalactic Astrophysics +1209.1111 Solar and Stellar Astrophysics +1209.3039 +1209.4464 Optics +1209.4835 Geometric Topology +1209.5080 Mesoscale and Nanoscale Physics +1209.5375 Machine Learning +1209.5412 Representation Theory +1209.5875 Differential Geometry +1209.5911 Methodology +1209.6135 Solar and Stellar Astrophysics +1209.6312 Combinatorics +1209.6361 Materials Science +1209.6363 Rings and Algebras +1209.6369 General Finance +1209.6374 Cosmology and Nongalactic Astrophysics +1209.6376 Physics and Society +1209.6377 Group Theory +1209.6385 Portfolio Management +1209.6388 Solar and Stellar Astrophysics +1209.6390 Solar and Stellar Astrophysics +1209.6393 Learning +1209.6395 Artificial Intelligence +1209.6398 Networking and Internet Architecture +1209.6400 Differential Geometry +1209.6405 Information Theory +1209.6406 +1209.6408 Strongly Correlated Electrons +1209.6409 Learning +1209.6417 Quantitative Methods +1209.6419 Learning +1209.6423 Combinatorics +1209.6426 Phenomenology +1209.6428 +1209.6429 Probability +1209.6431 +1209.6432 Chemical Physics +1209.6437 Fluid Dynamics +1209.6441 Atomic Physics +1209.6443 Applications +1209.6448 Computer Science and Game Theory +1209.6449 Information Retrieval +1209.6453 Applications +1209.6457 Applications +1209.6462 Discrete Mathematics +1209.6464 Superconductivity +1209.6466 Software Engineering +1209.6467 Atmospheric and Oceanic Physics +1209.6470 Distributed, Parallel, and Cluster Computing +1209.6473 Probability +1209.6474 Phenomenology +1209.6476 Distributed, Parallel, and Cluster Computing +1209.6485 Plasma Physics +1209.6486 Data Structures and Algorithms +1209.6487 Methodology +1209.6490 Databases +1209.6492 Information Retrieval +1209.6493 Applications +1209.6498 Number Theory +1209.6502 Applications +1209.6506 Combinatorics +1209.6509 Information Theory +1209.6510 Phenomenology +1209.6513 Genomics +1209.6517 +1209.6521 Classical Physics +1209.6523 Biological Physics +1209.6524 Phenomenology +1209.6525 Computer Vision and Pattern Recognition +1209.6530 +1209.6532 Geometric Topology +1209.6534 Statistics Theory +1209.6537 Classical Analysis and ODEs +1209.6538 Mesoscale and Nanoscale Physics +1209.6539 Information Theory +1209.6540 Combinatorics +1209.6546 Accelerator Physics +1209.6560 Graphics +1209.6564 Space Physics +1209.6570 Combinatorics +1209.6578 Logic in Computer Science +1209.6579 Chaotic Dynamics +1209.6583 Atmospheric and Oceanic Physics +1209.6586 Experiment +1209.6587 Materials Science +1209.6589 Dynamical Systems +1209.6595 Instrumentation and Detectors +1209.6598 Materials Science +1209.6599 General Physics +1209.6600 Social and Information Networks +1209.6603 +1209.6605 Probability +1209.6607 Neurons and Cognition +1209.6608 General Physics +1209.6610 Accelerator Physics +1209.6613 Analysis of PDEs +1209.6616 Geometric Topology +1209.6619 Combinatorics +1209.6623 Materials Science +1209.6629 Chemical Physics +math/0603275 General Mathematics +nlin/0403051 Exactly Solvable and Integrable Systems +nlin/0406023 Exactly Solvable and Integrable Systems +nlin/0506012 Exactly Solvable and Integrable Systems +0709.1774 Algebraic Topology +0710.5500 Spectral Theory +0805.1459 Algebraic Topology +0811.1155 +0811.3196 Differential Geometry +0902.0641 K-Theory and Homology +0902.3887 Differential Geometry +0903.4743 Differential Geometry +0903.5290 Algebraic Topology +0906.3133 Probability +0907.2066 K-Theory and Homology +0908.3762 Algebraic Topology +1001.1345 Probability +1001.1741 Probability +1001.4755 Differential Geometry +1003.3964 Theory +1004.2260 +1004.2499 Quantum Gases +1007.0815 Mesoscale and Nanoscale Physics +1008.3873 Analysis of PDEs +1010.0606 Geometric Topology +1102.0276 Algebraic Geometry +1103.1319 +1104.0273 Algebraic Geometry +1104.4674 Data Structures and Algorithms +1104.5432 Lattice +1105.4466 Quantum Gases +1106.0660 Probability +1106.1037 Phenomenology +1106.3859 +1107.3373 Superconductivity +1107.4862 Combinatorics +1107.5706 Combinatorics +1108.2035 +1108.2836 Methodology +1109.0111 Differential Geometry +1109.1152 Data Structures and Algorithms +1109.1383 Mesoscale and Nanoscale Physics +1109.1708 Superconductivity +1109.2407 Analysis of PDEs +1109.6352 Numerical Analysis +1109.6554 +1110.1099 Theory +1110.1628 Computational Engineering, Finance, and Science +1110.2573 Portfolio Management +1110.4128 Methodology +1111.0023 Materials Science +1111.0050 Superconductivity +1111.0336 Lattice +1111.0342 Lattice +1111.1246 Dynamical Systems +1111.1822 Superconductivity +1111.4319 Combinatorics +1201.0005 +1201.2059 Probability +1201.2615 Quantum Gases +1201.3706 Superconductivity +1201.6267 Lattice +1202.0908 Theory +1202.1259 Probability +1202.1397 +1202.2871 Atomic Physics +1202.3467 +1202.5039 +1202.6564 Quantum Gases +1203.0428 +1203.0506 +1203.0509 Rings and Algebras +1203.0515 Rings and Algebras +1203.0925 Quantum Gases +1203.1181 Superconductivity +1203.3200 Optimization and Control +1203.4438 Solar and Stellar Astrophysics +1203.4861 Analysis of PDEs +1203.4909 +1204.0326 Superconductivity +1204.0843 Mesoscale and Nanoscale Physics +1204.2754 Superconductivity +1204.3412 +1204.5131 Lattice +1204.6232 Theory +1204.6273 +1205.0437 +1205.0715 Cosmology and Nongalactic Astrophysics +1205.1797 Theory +1205.1858 Mesoscale and Nanoscale Physics +1205.3123 Instrumentation and Methods for Astrophysics +1205.3256 Theory +1205.3618 Superconductivity +1205.3968 Instrumentation and Methods for Astrophysics +1205.4386 Statistical Mechanics +1205.5195 +1206.0675 Lattice +1206.0888 Superconductivity +1206.1341 Theory +1206.1785 Mesoscale and Nanoscale Physics +1206.2687 Superconductivity +1206.3550 Superconductivity +1206.4411 Mesoscale and Nanoscale Physics +1206.5057 Learning +1206.6805 Phenomenology +1207.3588 Phenomenology +1207.4610 Solar and Stellar Astrophysics +1207.4718 Analysis of PDEs +1207.4903 Molecular Networks +1207.5720 Human-Computer Interaction +1207.5913 Strongly Correlated Electrons +1207.5936 Quantum Gases +1207.6583 Number Theory +1207.7308 Applications +1208.1658 Theory +1208.1782 +1208.2551 Materials Science +1208.3007 Analysis of PDEs +1208.3110 Combinatorics +1208.3520 Materials Science +1208.3664 Materials Science +1208.4065 Genomics +1208.4389 Superconductivity +1208.5090 +1208.5411 +1208.5640 Quantum Gases +1209.2265 Statistical Mechanics +1209.3366 Information Theory +1209.3840 Instrumentation and Methods for Astrophysics +1209.3889 Mesoscale and Nanoscale Physics +1209.4893 Computational Geometry +1209.5348 Computer Science and Game Theory +1209.5764 Combinatorics +1209.5833 Learning +1210.0211 Phenomenology +1210.1666 +1210.1967 Phenomenology +1210.2842 Classical Analysis and ODEs +1210.2922 Functional Analysis +1210.2942 Human-Computer Interaction +1210.3022 +1210.3030 Solar and Stellar Astrophysics +1210.3040 +1210.3046 Atomic Physics +1210.3047 Networking and Internet Architecture +1210.3048 Dynamical Systems +1210.3050 Networking and Internet Architecture +1210.3052 Earth and Planetary Astrophysics +1210.3060 Statistics Theory +1210.3062 Populations and Evolution +1210.3066 Number Theory +1210.3068 Geometric Topology +1210.3075 Information Theory +1210.3086 Materials Science +1210.3090 Instrumentation and Methods for Astrophysics +1210.3091 Other Computer Science +1210.3096 Quantum Algebra +1210.3097 Number Theory +1210.3106 Fluid Dynamics +1210.3107 Commutative Algebra +1210.3108 Materials Science +1210.3109 Algebraic Geometry +1210.3110 Software Engineering +1210.3113 Analysis of PDEs +1210.3114 Logic in Computer Science +1210.3115 Logic in Computer Science +1210.3116 Logic in Computer Science +1210.3117 Logic in Computer Science +1210.3120 Quantum Algebra +1210.3126 +1210.3128 Differential Geometry +1210.3131 Information Retrieval +1210.3132 Instrumentation and Detectors +1210.3138 Probability +1210.3139 Databases +1210.3140 Differential Geometry +1210.3142 Optimization and Control +1210.3143 High Energy Astrophysical Phenomena +1210.3144 Combinatorics +1210.3147 Networking and Internet Architecture +1210.3154 Biomolecules +1210.3160 Strongly Correlated Electrons +1210.3161 +1210.3164 Pricing of Securities +1210.3165 Computer Vision and Pattern Recognition +1210.3167 Instrumentation and Methods for Astrophysics +1210.3168 Optics +1210.3171 Networking and Internet Architecture +1210.3172 Superconductivity +1210.3173 Fluid Dynamics +1210.3176 Mesoscale and Nanoscale Physics +1210.3177 Soft Condensed Matter +1210.3179 +1210.3183 Optimization and Control +1210.3184 Optimization and Control +1210.3186 Classical Analysis and ODEs +1210.3188 Optics +1210.3190 Methodology +1210.3191 Functional Analysis +1210.3192 Solar and Stellar Astrophysics +1210.3193 Metric Geometry +1210.3194 Analysis of PDEs +1210.3196 Phenomenology +1210.3197 Data Structures and Algorithms +1210.3200 Mesoscale and Nanoscale Physics +1210.3205 Combinatorics +1210.3206 +1210.3217 Materials Science +1210.3218 Representation Theory +1210.3221 Solar and Stellar Astrophysics +1210.3223 Fluid Dynamics +1210.3226 Solar and Stellar Astrophysics +1210.3231 Combinatorics +1210.3232 Strongly Correlated Electrons +1210.3233 Solar and Stellar Astrophysics +1210.3241 Artificial Intelligence +1210.3244 Materials Science +1210.3248 Probability +1210.3249 Algebraic Geometry +1210.3251 Operator Algebras +1210.3258 Logic +1210.3259 Probability +1210.3265 Logic in Computer Science +1210.3266 Social and Information Networks +1210.3268 Number Theory +1210.3270 +1210.3271 Distributed, Parallel, and Cluster Computing +1210.3278 Plasma Physics +1210.3285 Group Theory +1210.3288 Machine Learning +1210.3295 Chaotic Dynamics +1210.3296 Computation +1210.3297 Phenomenology +1210.3307 Databases +1210.3308 Materials Science +1210.3309 Materials Science +1210.3311 Complex Variables +1210.3312 Information Retrieval +1210.3319 Data Structures and Algorithms +1210.3320 Software Engineering +1210.3326 Optics +1210.3327 +1210.3328 Optics +1210.3332 Functional Analysis +1210.3344 Logic in Computer Science +1210.3349 Combinatorics +1210.3351 Solar and Stellar Astrophysics +1210.3352 +1210.3353 Rings and Algebras +1210.3355 Strongly Correlated Electrons +cond-mat/0604144 Disordered Systems and Neural Networks +0710.1530 Representation Theory +0902.1168 Dynamical Systems +0905.3600 Analysis of PDEs +0912.1910 +1001.0190 Earth and Planetary Astrophysics +1004.2554 Dynamical Systems +1004.3584 Representation Theory +1006.4407 General Physics +1009.3807 Strongly Correlated Electrons +1010.5027 Strongly Correlated Electrons +1012.3882 Probability +1012.4226 Algebraic Geometry +1101.1162 Geometric Topology +1103.0301 Geometric Topology +1103.5800 Mesoscale and Nanoscale Physics +1105.4048 Analysis of PDEs +1105.5725 Analysis of PDEs +1106.1320 Optics +1106.1721 Biological Physics +1107.1603 Differential Geometry +1108.5758 Mesoscale and Nanoscale Physics +1109.0325 +1109.2289 Optimization and Control +1109.6538 +1110.4073 Representation Theory +1110.5917 Strongly Correlated Electrons +1110.6689 Strongly Correlated Electrons +1111.3278 Materials Science +1111.4689 Probability +1112.4667 Number Theory +1201.2869 Populations and Evolution +1201.3777 Analysis of PDEs +1202.6587 Classical Analysis and ODEs +1203.4670 Spectral Theory +1203.4918 Probability +1203.6264 Combinatorics +1204.1777 Optimization and Control +1205.2834 Analysis of PDEs +1205.5388 Theory +1206.2090 Mesoscale and Nanoscale Physics +1206.4056 Classical Analysis and ODEs +1206.4869 General Topology +1206.5457 +1207.0350 Systems and Control +1207.0417 Theory +1207.1009 +1207.1853 Cosmology and Nongalactic Astrophysics +1207.2897 Differential Geometry +1207.4964 Atomic Physics +1207.7119 Mesoscale and Nanoscale Physics +1208.0822 Mesoscale and Nanoscale Physics +1208.0860 +1208.0988 Materials Science +1208.1102 Superconductivity +1208.2800 Statistical Mechanics +1208.3493 Mesoscale and Nanoscale Physics +1208.3602 Disordered Systems and Neural Networks +1208.6463 Phenomenology +1209.0891 Cosmology and Nongalactic Astrophysics +1209.1850 +1209.2037 Mesoscale and Nanoscale Physics +1209.2842 Theory +1209.3174 Strongly Correlated Electrons +1209.4080 Cosmology and Nongalactic Astrophysics +1209.4743 Superconductivity +1209.6046 Populations and Evolution +1210.1278 Combinatorics +1210.1385 Phenomenology +1210.1485 +1210.2385 Phenomenology +1210.4103 Phenomenology +1210.4557 Phenomenology +1210.5151 Mesoscale and Nanoscale Physics +1210.5502 Quantitative Methods +1210.6992 Lattice +1210.8157 Lattice +1211.2593 Algebraic Geometry +1211.2940 Symplectic Geometry +1211.3349 Combinatorics +1211.3363 Theory +1211.3586 Theory +1211.6774 +1211.7366 Functional Analysis +1212.0697 Materials Science +1212.1809 General Physics +1212.1911 Mesoscale and Nanoscale Physics +1212.2072 Cosmology and Nongalactic Astrophysics +1212.2145 Information Retrieval +1212.2695 +1212.2709 +1212.2828 Instrumentation and Methods for Astrophysics +1212.2830 Plasma Physics +1212.2963 Emerging Technologies +1212.2968 Cosmology and Nongalactic Astrophysics +1212.2981 Geophysics +1212.2984 Geophysics +1212.2988 Representation Theory +1212.2991 Software Engineering +1212.2995 Methodology +1212.2997 Materials Science +1212.3001 Materials Science +1212.3006 Combinatorics +1212.3007 Plasma Physics +1212.3009 Complex Variables +1212.3010 Optics +1212.3013 Information Retrieval +1212.3014 Differential Geometry +1212.3015 Number Theory +1212.3018 Solar and Stellar Astrophysics +1212.3021 Combinatorics +1212.3023 Information Retrieval +1212.3026 Numerical Analysis +1212.3029 +1212.3033 Mesoscale and Nanoscale Physics +1212.3034 Computer Vision and Pattern Recognition +1212.3036 Discrete Mathematics +1212.3040 Plasma Physics +1212.3041 Physics and Society +1212.3044 Theory +1212.3060 Software Engineering +1212.3067 Software Engineering +1212.3068 Classical Physics +1212.3069 Cellular Automata and Lattice Gases +1212.3070 Rings and Algebras +1212.3074 Distributed, Parallel, and Cluster Computing +1212.3076 Genomics +1212.3093 Combinatorics +1212.3094 Probability +1212.3101 Cosmology and Nongalactic Astrophysics +1212.3106 Disordered Systems and Neural Networks +1212.3107 Logic +1212.3112 Biological Physics +1212.3113 Rings and Algebras +1212.3115 Number Theory +1212.3119 Sound +1212.3120 Genomics +1212.3126 +1212.3129 Solar and Stellar Astrophysics +1212.3132 Operator Algebras +1212.3137 Portfolio Management +1212.3138 Computation and Language +1212.3149 Number Theory +1212.3152 Atmospheric and Oceanic Physics +1212.3162 Computation and Language +1212.3170 Computer Science and Game Theory +1212.3175 Chaotic Dynamics +1212.3176 Logic +1212.3177 Information Theory +1212.3179 Combinatorics +1212.3180 Solar and Stellar Astrophysics +1212.3182 Rings and Algebras +1212.3188 Lattice +1212.3189 Lattice +1212.3193 Metric Geometry +1212.3199 Operator Algebras +1212.3204 Phenomenology +1212.3206 Phenomenology +1212.3208 Combinatorics +1212.3211 +1212.3216 Networking and Internet Architecture +1212.3217 Logic in Computer Science +1212.3220 Networking and Internet Architecture +1212.3221 Phenomenology +1212.3228 Computation and Language +1212.3229 Populations and Evolution +1212.3234 +1212.3235 Lattice +1212.3236 +1212.3239 General Physics +1212.3242 Optics +1212.3248 Software Engineering +1212.3255 Physics Education +1212.3257 Cryptography and Security +1212.3258 Numerical Analysis +1212.3259 Instrumentation and Detectors +1212.3269 Astrophysics of Galaxies +1212.3279 Analysis of PDEs +1212.3284 Probability +1212.3287 Geophysics +1212.3289 Information Theory +1212.3294 +1212.3304 +1212.3308 Robotics +1212.3309 Chemical Physics +1212.3311 Instrumentation and Methods for Astrophysics +1212.3315 Algebraic Geometry +1212.3320 Physics and Society +1212.3322 Theory +1212.3325 +math/0506216 Group Theory +0710.0035 Classical Analysis and ODEs +0710.5464 Algebraic Geometry +0801.0554 +0805.0697 Neural and Evolutionary Computing +0807.2888 Quantum Algebra +0905.0693 Strongly Correlated Electrons +0907.5170 Symplectic Geometry +0910.1861 Algebraic Topology +0911.3786 Logic in Computer Science +0912.0698 Strongly Correlated Electrons +1003.5391 Differential Geometry +1006.3704 Soft Condensed Matter +1006.4477 Mesoscale and Nanoscale Physics +1006.5062 Representation Theory +1007.1139 Mesoscale and Nanoscale Physics +1008.3329 Theory +1009.1733 Soft Condensed Matter +1009.2930 Algebraic Topology +1011.0717 Functional Analysis +1011.3191 Superconductivity +1012.0454 Algebraic Topology +1012.0626 Phenomenology +1012.1683 +1101.1291 Discrete Mathematics +1102.1404 Superconductivity +1102.4648 Mesoscale and Nanoscale Physics +1103.1020 +1103.1654 Classical Physics +1103.2478 Quantum Gases +1103.3943 Strongly Correlated Electrons +1104.1312 Superconductivity +1104.1441 Mesoscale and Nanoscale Physics +1104.4981 Algebraic Geometry +1105.1010 Probability +1105.1595 Discrete Mathematics +1105.2697 Geometric Topology +1105.4518 Analysis of PDEs +1106.1926 +1106.2841 +1106.4138 High Energy Astrophysical Phenomena +1106.4434 Theory +1106.5035 Phenomenology +1108.1767 Phenomenology +1108.2932 Rings and Algebras +1108.3320 Theory +1108.4300 Soft Condensed Matter +1108.5734 Cosmology and Nongalactic Astrophysics +1109.0454 Optics +1109.1192 +1109.1225 Strongly Correlated Electrons +1109.3105 Phenomenology +1109.3998 Atomic Physics +1109.4625 Solar and Stellar Astrophysics +1110.0902 Statistics Theory +1110.1561 Mesoscale and Nanoscale Physics +1110.2512 Analysis of PDEs +1110.5216 Statistical Mechanics +1110.5643 Superconductivity +1111.0126 Superconductivity +1111.1171 Superconductivity +1111.1531 +1111.2110 Optics +1111.4013 Differential Geometry +1111.5912 Soft Condensed Matter +1111.6888 Atomic and Molecular Clusters +1112.0350 Logic +1112.1317 Category Theory +1112.3241 Atomic Physics +1112.3662 Superconductivity +1112.4474 Strongly Correlated Electrons +1112.4699 Phenomenology +1112.4962 Atomic Physics +1112.5337 Cosmology and Nongalactic Astrophysics +1201.0044 Superconductivity +1201.0523 Quantum Gases +1201.3935 Applications +1201.4478 Number Theory +1201.5086 Software Engineering +1201.5310 Group Theory +1201.6187 Phenomenology +1201.6638 Pattern Formation and Solitons +1202.0072 Optics +1202.1528 Theory +1202.1675 Classical Analysis and ODEs +1202.4061 Combinatorics +1202.4731 +1202.5234 +1202.5586 Mesoscale and Nanoscale Physics +1202.5969 Superconductivity +1202.6294 Data Analysis, Statistics and Probability +1203.1753 Number Theory +1203.2580 Mesoscale and Nanoscale Physics +1203.3730 Logic in Computer Science +1203.5703 Pricing of Securities +1203.6761 Strongly Correlated Electrons +1203.6795 Dynamical Systems +1204.0791 Phenomenology +1204.0880 Analysis of PDEs +1204.1235 Soft Condensed Matter +1204.2041 Networking and Internet Architecture +1204.2608 Optics +1204.2739 Strongly Correlated Electrons +1204.2865 +1204.3547 Methodology +1204.3590 Representation Theory +1204.3795 Number Theory +1204.4699 Statistics Theory +1204.5001 Neurons and Cognition +1204.5168 Data Analysis, Statistics and Probability +1204.5171 General Finance +1204.5172 +1204.5197 Logic +1204.5198 Logic +1204.5202 Theory +1204.5208 Materials Science +1204.5214 Rings and Algebras +1204.5215 Rings and Algebras +1204.5216 Rings and Algebras +1204.5218 Number Theory +1204.5219 Mesoscale and Nanoscale Physics +1204.5222 Differential Geometry +1204.5223 Atomic Physics +1204.5225 Differential Geometry +1204.5231 +1204.5232 Differential Geometry +1204.5233 Differential Geometry +1204.5241 Experiment +1204.5244 Logic +1204.5248 Algebraic Geometry +1204.5249 Physics and Society +1204.5253 Information Theory +1204.5257 Superconductivity +1204.5258 Rings and Algebras +1204.5259 Accelerator Physics +1204.5260 Materials Science +1204.5263 Strongly Correlated Electrons +1204.5266 Representation Theory +1204.5267 Human-Computer Interaction +1204.5269 Geometric Topology +1204.5274 Combinatorics +1204.5279 Phenomenology +1204.5280 Programming Languages +1204.5281 Networking and Internet Architecture +1204.5283 +1204.5284 Discrete Mathematics +1204.5287 Commutative Algebra +1204.5288 Number Theory +1204.5296 Theory +1204.5306 Discrete Mathematics +1204.5310 Differential Geometry +1204.5316 Computation and Language +1204.5318 Logic in Computer Science +1204.5321 Atomic Physics +1204.5323 Analysis of PDEs +1204.5324 Differential Geometry +1204.5330 +1204.5333 Computational Geometry +1204.5335 Data Structures and Algorithms +1204.5339 Materials Science +1204.5350 Analysis of PDEs +1204.5355 Combinatorics +1204.5357 Machine Learning +1204.5366 Cosmology and Nongalactic Astrophysics +1204.5370 Materials Science +1204.5371 Dynamical Systems +1204.5373 Information Retrieval +1204.5378 Quantum Algebra +1204.5379 Phenomenology +1204.5384 Algebraic Topology +1204.5385 Theory +1204.5386 History and Overview +1204.5387 +1204.5388 Information Theory +1204.5389 Superconductivity +1204.5390 Algebraic Topology +1204.5395 Representation Theory +1204.5400 Statistical Mechanics +1204.5402 Distributed, Parallel, and Cluster Computing +1204.5407 Hardware Architecture +1204.5410 Other Condensed Matter +1204.5416 Computer Vision and Pattern Recognition +1204.5417 Combinatorics +1204.5421 Populations and Evolution +1204.5424 Lattice +1204.5429 Numerical Analysis +1204.5436 Software Engineering +1204.5437 Soft Condensed Matter +1204.5439 +1204.5442 Data Structures and Algorithms +1204.5443 Networking and Internet Architecture +1204.5452 Number Theory +1204.5458 Analysis of PDEs +1204.5461 Differential Geometry +1204.5463 Lattice +1204.5468 Materials Science +math-ph/0504046 +math/0203136 Quantum Algebra +math/0206089 Classical Analysis and ODEs +math/0508039 Classical Analysis and ODEs +math/0510618 Differential Geometry +quant-ph/0602094 +0802.2969 Theory +0905.4707 Group Theory +0906.3750 Group Theory +0912.4653 Complex Variables +1001.5183 Logic in Computer Science +1004.2812 Mesoscale and Nanoscale Physics +1004.3349 Analysis of PDEs +1005.0376 Probability +1006.0082 Mesoscale and Nanoscale Physics +1006.2370 Accelerator Physics +1007.0067 +1007.4230 Data Structures and Algorithms +1008.0970 Computational Physics +1008.3801 Theory +1009.0111 Optics +1010.4552 Metric Geometry +1010.5304 Category Theory +1012.2902 Statistics Theory +1101.4752 Learning +1103.0396 Logic +1103.3022 Theory +1103.3581 Group Theory +1103.4220 Statistics Theory +1105.0464 Data Structures and Algorithms +1105.0911 +1105.1892 Lattice +1106.2267 Combinatorics +1106.3067 Cosmology and Nongalactic Astrophysics +1106.3444 Materials Science +1106.3744 +1106.4299 Optics +1107.0059 Materials Science +1107.1794 Probability +1108.0773 Complex Variables +1108.1615 Combinatorics +1108.4117 Strongly Correlated Electrons +1108.4362 Theory +1108.5549 Theory +1109.1615 Phenomenology +1109.5577 Quantum Gases +1110.0240 Theory +1110.1422 Lattice +1110.1946 Representation Theory +1110.2096 Human-Computer Interaction +1110.2530 +1110.5409 Superconductivity +1110.6866 +1111.1108 +1111.1310 Optics +1111.3512 Combinatorics +1111.6325 +1111.7146 Probability +1112.0785 Strongly Correlated Electrons +1112.1991 Instrumentation and Methods for Astrophysics +1112.5720 Strongly Correlated Electrons +1112.5960 Combinatorics +1201.0310 Rings and Algebras +1201.0563 +1201.2678 Theory +1201.2845 Neurons and Cognition +1201.3050 Materials Science +1201.4242 Strongly Correlated Electrons +1201.6488 Data Structures and Algorithms +1201.6560 Phenomenology +1202.0098 Materials Science +1202.0472 Classical Analysis and ODEs +1202.0487 Strongly Correlated Electrons +1202.1740 Information Theory +1202.2479 Representation Theory +1202.3291 +1202.4291 Strongly Correlated Electrons +1202.4658 Combinatorics +1202.5509 Programming Languages +1203.3379 Mesoscale and Nanoscale Physics +1203.3855 Computational Physics +1203.5741 Geometric Topology +1203.6559 Computational Complexity +1203.6648 Geometric Topology +1203.6695 Data Structures and Algorithms +1203.6903 Cosmology and Nongalactic Astrophysics +1204.0142 Neurons and Cognition +1204.0258 Computation and Language +1204.0263 Phenomenology +1204.0453 Pricing of Securities +1204.0529 Analysis of PDEs +1204.0535 Computer Science and Game Theory +1204.0537 Algebraic Geometry +1204.0540 Probability +1204.0541 Differential Geometry +1204.0542 Theory +1204.0547 Computational Geometry +1204.0548 Earth and Planetary Astrophysics +1204.0557 Mesoscale and Nanoscale Physics +1204.0560 Mesoscale and Nanoscale Physics +1204.0568 Optimization and Control +1204.0573 Combinatorics +1204.0576 Analysis of PDEs +1204.0581 Strongly Correlated Electrons +1204.0584 Superconductivity +1204.0590 Optimization and Control +1204.0596 Cosmology and Nongalactic Astrophysics +1204.0602 Algebraic Geometry +1204.0605 Logic +1204.0606 Functional Analysis +1204.0607 Logic +1204.0609 Number Theory +1204.0613 Superconductivity +1204.0618 Optics +1204.0620 Functional Analysis +1204.0623 Analysis of PDEs +1204.0630 Soft Condensed Matter +1204.0633 Pricing of Securities +1204.0634 Multiagent Systems +1204.0635 Soft Condensed Matter +1204.0636 Combinatorics +1204.0637 Probability +1204.0639 Probability +1204.0640 Probability +1204.0642 Symplectic Geometry +1204.0647 Combinatorics +1204.0648 Spectral Theory +1204.0650 Physics and Society +1204.0653 General Physics +1204.0656 Machine Learning +1204.0657 Astrophysics of Galaxies +1204.0660 Computational Geometry +1204.0661 +1204.0662 Soft Condensed Matter +1204.0663 Differential Geometry +1204.0666 Optics +1204.0669 +1204.0670 +1204.0676 Theory +1204.0677 Instrumentation and Detectors +1204.0678 +1204.0682 Geometric Topology +1204.0683 +1204.0684 Learning +1204.0689 Mesoscale and Nanoscale Physics +1204.0691 Complex Variables +1204.0695 Representation Theory +1204.0697 Earth and Planetary Astrophysics +1204.0709 Astrophysics of Galaxies +1204.0710 Neurons and Cognition +1204.0712 Functional Analysis +1204.0713 Representation Theory +1204.0719 Differential Geometry +1204.0722 +1204.0724 Differential Geometry +1204.0728 Functional Analysis +1204.0730 Strongly Correlated Electrons +1204.0731 Artificial Intelligence +1204.0734 Optimization and Control +1204.0744 Theory +1204.0746 Information Theory +1204.0752 Physics and Society +1204.0760 +1204.0765 +1204.0772 Disordered Systems and Neural Networks +1204.0776 Information Theory +cond-mat/0609142 Strongly Correlated Electrons +math/0312503 Algebraic Geometry +math/0503736 Dynamical Systems +math/0510490 Category Theory +physics/0406141 Atomic Physics +0705.4684 Materials Science +0809.4771 Differential Geometry +0901.0896 Materials Science +0901.1689 Operator Algebras +0903.4348 Other Condensed Matter +0906.2237 Cosmology and Nongalactic Astrophysics +0908.0086 Probability +0909.1033 Dynamical Systems +0910.1250 Chemical Physics +0910.1287 +1003.1641 Strongly Correlated Electrons +1003.2628 Biological Physics +1004.3619 Geometric Topology +1004.5118 +1005.0368 Spectral Theory +1005.2230 Differential Geometry +1005.4541 General Physics +1006.3509 Chaotic Dynamics +1008.2413 +1009.3262 Symplectic Geometry +1009.5108 Computational Complexity +1010.1500 Differential Geometry +1011.0599 Atomic Physics +1012.4786 Combinatorics +1101.0876 Statistical Mechanics +1102.0354 Soft Condensed Matter +1102.2012 Operator Algebras +1103.0080 Combinatorics +1103.1165 Portfolio Management +1103.2252 Physics and Society +1103.4777 Combinatorics +1103.4916 Databases +1104.4585 Algebraic Topology +1105.2078 Optimization and Control +1105.5333 Combinatorics +1106.1590 Networking and Internet Architecture +1106.1948 Earth and Planetary Astrophysics +1106.2837 Probability +1106.5614 Soft Condensed Matter +1107.0468 +1107.5652 Analysis of PDEs +1108.5393 Algebraic Geometry +1109.1481 +1109.1520 Phenomenology +1109.3384 Quantum Gases +1109.4329 +1109.4491 Optics +1110.0962 Strongly Correlated Electrons +1110.2028 Combinatorics +1110.2997 Instrumentation and Methods for Astrophysics +1110.3153 +1110.3874 +1110.3999 Statistical Mechanics +1110.4228 Combinatorics +1111.3176 Physics and Society +1111.3227 Cosmology and Nongalactic Astrophysics +1111.4272 Optics +1111.4411 +1111.4535 Materials Science +1111.5606 Theory +1111.5962 Phenomenology +1111.6198 +1111.6209 Statistical Mechanics +1112.0063 Cosmology and Nongalactic Astrophysics +1112.1951 Superconductivity +1112.2360 K-Theory and Homology +1112.3346 Theory +1112.3887 Theory +1112.5306 Phenomenology +1112.5641 +1201.0043 Discrete Mathematics +1201.0208 +1201.2107 Hardware Architecture +1201.3943 Combinatorics +1201.5781 Earth and Planetary Astrophysics +1201.6179 Digital Libraries +1202.0592 Information Theory +1202.3161 Mesoscale and Nanoscale Physics +1202.3186 Combinatorics +1202.5897 Differential Geometry +1202.5977 Operator Algebras +1202.6154 +1202.6631 Quantum Gases +1203.0877 Disordered Systems and Neural Networks +1203.1438 Superconductivity +1203.1454 +1203.1673 Cryptography and Security +1203.1743 Logic +1203.1784 Cosmology and Nongalactic Astrophysics +1203.1789 Soft Condensed Matter +1203.1796 Earth and Planetary Astrophysics +1203.1897 Human-Computer Interaction +1203.1935 Spectral Theory +1203.1936 Accelerator Physics +1203.1941 Solar and Stellar Astrophysics +1203.1944 High Energy Astrophysical Phenomena +1203.1945 Biological Physics +1203.1947 Optics +1203.1951 Space Physics +1203.1952 Databases +1203.1957 Cell Behavior +1203.1964 Computers and Society +1203.1967 Commutative Algebra +1203.1969 Commutative Algebra +1203.1970 Materials Science +1203.1971 Emerging Technologies +1203.1980 +1203.1981 Other Computer Science +1203.1985 Computer Vision and Pattern Recognition +1203.1988 High Energy Astrophysical Phenomena +1203.1993 History and Overview +1203.1995 Social and Information Networks +1203.1996 Astrophysics of Galaxies +1203.1997 Networking and Internet Architecture +1203.2000 Databases +1203.2002 Learning +1203.2003 General Mathematics +1203.2004 Statistics Theory +1203.2006 Biological Physics +1203.2007 Probability +1203.2009 Quantum Algebra +1203.2014 Solar and Stellar Astrophysics +1203.2015 Combinatorics +1203.2017 Pricing of Securities +1203.2021 Information Retrieval +1203.2024 Networking and Internet Architecture +1203.2027 Statistics Theory +1203.2031 Software Engineering +1203.2032 Materials Science +1203.2040 Commutative Algebra +1203.2041 Networking and Internet Architecture +1203.2043 Statistics Theory +1203.2044 Networking and Internet Architecture +1203.2045 Algebraic Topology +1203.2049 Other Condensed Matter +1203.2050 Materials Science +1203.2051 Combinatorics +1203.2059 Differential Geometry +1203.2062 Methodology +1203.2063 Quantum Gases +1203.2070 Optimization and Control +1203.2074 Instrumentation and Detectors +1203.2075 Analysis of PDEs +1203.2078 Probability +1203.2079 Materials Science +1203.2080 Biological Physics +1203.2087 Statistics Theory +1203.2093 Spectral Theory +1203.2095 Strongly Correlated Electrons +1203.2101 Analysis of PDEs +1203.2112 Quantum Algebra +1203.2114 Solar and Stellar Astrophysics +1203.2123 Group Theory +1203.2124 Differential Geometry +1203.2125 Group Theory +1203.2141 Algebraic Geometry +1203.2143 High Energy Astrophysical Phenomena +1203.2147 Multimedia +1203.2148 Mesoscale and Nanoscale Physics +1203.2159 Superconductivity +1203.2161 Theory +1203.2162 Cosmology and Nongalactic Astrophysics +1203.2163 Networking and Internet Architecture +1203.2167 Networking and Internet Architecture +1203.2168 Computational Complexity +1203.2169 Information Theory +1203.2174 Instrumentation and Methods for Astrophysics +1203.2177 Learning +1203.2178 Genomics +cond-mat/0410377 Materials Science +math/0611431 Differential Geometry +0705.0949 Algebraic Geometry +0712.3291 Algebraic Geometry +0803.4046 General Finance +0803.4050 General Finance +0806.0918 Probability +0806.2923 Computer Science and Game Theory +0808.3298 +0811.2420 +0812.4269 Probability +0902.0943 Classical Analysis and ODEs +0902.3619 Machine Learning +0904.4493 Representation Theory +0905.4341 Artificial Intelligence +0906.1084 Computational Complexity +0909.0695 Mesoscale and Nanoscale Physics +0909.4469 Algebraic Geometry +0910.2401 +0912.0017 Probability +0912.2723 Commutative Algebra +1001.2789 Classical Analysis and ODEs +1002.3171 Cryptography and Security +1002.3174 Learning +1002.3175 Cryptography and Security +1002.3176 Cryptography and Security +1002.3299 Cryptography and Security +1002.3303 Cryptography and Security +1002.3316 Cryptography and Security +1002.3567 Cryptography and Security +1005.0827 Classical Analysis and ODEs +1005.1664 Cosmology and Nongalactic Astrophysics +1005.5487 Quantum Gases +1005.5495 Optimization and Control +1006.5600 Analysis of PDEs +1007.4731 Classical Analysis and ODEs +1008.4143 +1008.4346 Strongly Correlated Electrons +1009.1901 Quantum Gases +1009.4405 Differential Geometry +1010.0617 Biological Physics +1010.1842 Classical Analysis and ODEs +1010.4072 Combinatorics +1011.0105 +1011.4456 +1012.2300 Superconductivity +1012.4796 Dynamical Systems +1101.5544 Quantum Algebra +1102.2909 +1102.4034 Emerging Technologies +1104.2607 Cosmology and Nongalactic Astrophysics +1105.4771 Instrumentation and Detectors +1106.0201 Statistical Mechanics +1106.2068 Statistics Theory +1106.3135 Mesoscale and Nanoscale Physics +1106.3363 Dynamical Systems +1106.4215 Physics and Society +1106.4813 High Energy Astrophysical Phenomena +1106.5028 Algebraic Geometry +1106.5994 +1107.0355 +1107.0418 Operator Algebras +1107.2363 Combinatorics +1107.3938 Theory +1107.5215 Statistical Mechanics +1107.5287 Statistical Mechanics +1108.0227 +1108.1620 Optics +1108.2914 Cosmology and Nongalactic Astrophysics +1108.5495 Analysis of PDEs +1108.6180 Phenomenology +1109.2070 +1109.3459 +1109.3533 +1109.3567 Representation Theory +1109.4678 High Energy Astrophysical Phenomena +1109.6936 Cosmology and Nongalactic Astrophysics +1110.1158 Algebraic Topology +1110.2463 Phenomenology +1110.2653 Cryptography and Security +1110.2760 +1110.2862 Phenomenology +1110.3266 Phenomenology +1110.3557 Differential Geometry +1110.5348 Statistical Mechanics +1110.5653 Strongly Correlated Electrons +1111.0145 Representation Theory +1111.0181 Phenomenology +1111.0611 Superconductivity +1111.0731 Algebraic Topology +1111.1048 Information Theory +1111.2079 Complex Variables +1111.2310 Pattern Formation and Solitons +1111.3105 Statistical Mechanics +1111.3243 +1111.3394 Instrumentation and Detectors +1111.3637 Analysis of PDEs +1111.4795 Social and Information Networks +1111.5074 +1111.5552 +1111.5581 Chaotic Dynamics +1111.6063 Differential Geometry +1111.6415 Instrumentation and Methods for Astrophysics +1112.0044 Statistical Mechanics +1112.1027 +1112.1453 Analysis of PDEs +1112.2142 Differential Geometry +1112.2269 Statistical Mechanics +1112.3024 Phenomenology +1112.3114 High Energy Astrophysical Phenomena +1112.3430 Mesoscale and Nanoscale Physics +1112.3650 Quantum Gases +1112.4292 Classical Analysis and ODEs +1112.5119 Materials Science +1112.5148 Functional Analysis +1112.5231 Materials Science +1112.5270 Optics +1112.5417 Theory +1112.5516 Quantum Gases +1201.0036 Soft Condensed Matter +1201.2204 Solar and Stellar Astrophysics +1201.2504 Cryptography and Security +1201.2855 Statistical Mechanics +1201.3507 Representation Theory +1201.4473 High Energy Astrophysical Phenomena +1201.4806 Dynamical Systems +1201.5151 +1201.5188 +1201.5552 Mesoscale and Nanoscale Physics +1201.5703 Combinatorics +1201.6466 Mesoscale and Nanoscale Physics +1202.0708 Mesoscale and Nanoscale Physics +1202.0767 Statistical Mechanics +1202.0864 Information Theory +1202.1704 Atomic Physics +1202.1738 Computation +1202.1896 Discrete Mathematics +1202.2685 +1202.3081 Materials Science +1202.5064 Methodology +1202.5385 Representation Theory +1202.5846 Methodology +1203.0088 Artificial Intelligence +1203.0462 Materials Science +1203.1137 Other Condensed Matter +1203.1573 Phenomenology +1203.1991 Commutative Algebra +1203.2262 +1203.2354 Cosmology and Nongalactic Astrophysics +1203.2510 General Physics +1203.3132 General Mathematics +1203.3640 Commutative Algebra +1203.3681 High Energy Astrophysical Phenomena +1203.3798 Classical Physics +1203.3811 Computational Geometry +1203.3817 Statistical Mechanics +1203.3819 +1203.3824 Cosmology and Nongalactic Astrophysics +1203.3827 Cosmology and Nongalactic Astrophysics +1203.3830 Cosmology and Nongalactic Astrophysics +1203.3832 Learning +1203.3833 Analysis of PDEs +1203.3834 Algebraic Geometry +1203.3837 +1203.3838 Neural and Evolutionary Computing +1203.3840 Materials Science +1203.3841 Plasma Physics +1203.3842 History and Philosophy of Physics +1203.3844 Chemical Physics +1203.3847 Neural and Evolutionary Computing +1203.3853 Analysis of PDEs +1203.3854 Optimization and Control +1203.3857 Probability +1203.3861 Statistical Mechanics +1203.3862 Lattice +1203.3869 Optimization and Control +1203.3870 Cryptography and Security +1203.3871 Analysis of PDEs +1203.3872 Numerical Analysis +1203.3873 Mesoscale and Nanoscale Physics +1203.3875 Operator Algebras +1203.3879 Information Theory +1203.3880 Computation +1203.3882 Applications +1203.3883 Data Structures and Algorithms +1203.3885 Distributed, Parallel, and Cluster Computing +1203.3895 Theory +1203.3897 Atomic Physics +1203.3898 Atomic Physics +1203.3900 +1203.3902 +1203.3904 Optimization and Control +1203.3906 +1203.3914 +1203.3918 Complex Variables +1203.3920 Networking and Internet Architecture +1203.3921 Probability +1203.3923 Other Computer Science +1203.3924 Materials Science +1203.3926 +1203.3928 Classical Analysis and ODEs +1203.3929 Genomics +1203.3933 +1203.3935 Learning +1203.3938 Optics +1203.3939 Cellular Automata and Lattice Gases +1203.3940 Soft Condensed Matter +1203.3943 Dynamical Systems +1203.3951 Robotics +1203.3952 Mesoscale and Nanoscale Physics +1203.3953 Numerical Analysis +1203.3957 +1203.3962 Networking and Internet Architecture +1203.3964 Combinatorics +1203.3966 Neurons and Cognition +1203.3973 Mesoscale and Nanoscale Physics +1203.3975 Algebraic Geometry +1203.3981 Disordered Systems and Neural Networks +1203.3987 General Physics +1203.3988 Phenomenology +1203.3992 Dynamical Systems +1203.3997 Distributed, Parallel, and Cluster Computing +1203.3999 Combinatorics +1203.4003 Chaotic Dynamics +1203.4005 Spectral Theory +1203.4009 Mathematical Software +1203.4011 Artificial Intelligence +1203.4021 Spectral Theory +1203.4025 Phenomenology +1203.4035 Multimedia +1203.4041 Discrete Mathematics +1203.4042 Networking and Internet Architecture +1203.4043 Social and Information Networks +1203.4044 Numerical Analysis +1203.4045 Combinatorics +1203.4046 +1203.4047 Algebraic Geometry +1203.4052 Phenomenology +1203.4057 +1203.4058 Analysis of PDEs +1203.4063 Computational Complexity +1203.4065 Applications +1203.4066 Number Theory +1203.4067 Populations and Evolution +1203.4069 Combinatorics +1203.4070 Systems and Control +1203.4078 Probability +1203.4084 Logic +1203.4088 Solar and Stellar Astrophysics +1203.4090 Experiment +1203.4093 Algebraic Geometry +1203.4098 Instrumentation and Detectors +1203.4099 Instrumentation and Detectors +1203.4101 Differential Geometry +1203.4103 Popular Physics +1203.4110 K-Theory and Homology +1203.4112 Differential Geometry +1203.4115 Pattern Formation and Solitons +1203.4117 Data Structures and Algorithms +1203.4119 Applications +1203.4122 Applications +1203.4123 Analysis of PDEs +1203.4133 General Topology +1203.4134 Chaotic Dynamics +1203.4135 Digital Libraries +1203.4140 General Mathematics +1203.4141 General Mathematics +1203.4142 General Mathematics +1203.4143 Solar and Stellar Astrophysics +1203.4144 Fluid Dynamics +1203.4150 Hardware Architecture +1203.4154 Networking and Internet Architecture +1203.4157 Databases +1203.4159 +1203.4160 Systems and Control +1203.4163 Databases +1203.4167 General Mathematics +1203.4168 Systems and Control +1203.4173 +1203.4175 Optimization and Control +1203.4176 Computation and Language +1203.4178 Instrumentation and Detectors +1203.4183 Functional Analysis +1203.4194 Digital Libraries +1203.4200 Combinatorics +1203.4204 Computer Vision and Pattern Recognition +1203.4205 History and Philosophy of Physics +1203.4207 Theory +1203.4209 Systems and Control +1203.4210 +1203.4212 Probability +1203.4214 Chaotic Dynamics +1203.4215 +1203.4218 Phenomenology +cond-mat/0309560 Statistical Mechanics +hep-ph/0110087 Phenomenology +math/0302319 Number Theory +math/0608386 Dynamical Systems +math/0701371 Optimization and Control +0711.0687 Group Theory +0810.0706 Operator Algebras +0810.3630 Operator Algebras +0903.2693 Cryptography and Security +0905.1031 Chemical Physics +0907.0578 Combinatorics +0908.1502 Phenomenology +0911.2809 Combinatorics +1001.2429 Theory +1002.3991 Group Theory +1003.1315 Methodology +1004.1995 Probability +1005.2846 Theory +1005.4349 Probability +1005.4912 Strongly Correlated Electrons +1006.5361 Strongly Correlated Electrons +1009.3547 Symplectic Geometry +1009.5799 Solar and Stellar Astrophysics +1010.4407 Cosmology and Nongalactic Astrophysics +1011.1468 +1012.2478 Combinatorics +1101.0067 Spectral Theory +1102.2478 Algebraic Geometry +1102.3037 Group Theory +1102.4385 +1103.0938 Superconductivity +1103.2211 Superconductivity +1103.2455 Cosmology and Nongalactic Astrophysics +1103.3287 Theory +1103.3641 Information Theory +1103.4358 Physics and Society +1103.4526 Quantum Algebra +1103.5480 Phenomenology +1103.5792 Spectral Theory +1103.6224 Physics and Society +1104.5038 Quantum Algebra +1104.5538 Neural and Evolutionary Computing +1105.3296 Probability +1105.3914 Mesoscale and Nanoscale Physics +1105.4108 Algebraic Geometry +1105.5137 +1106.0453 Other Condensed Matter +1106.1472 Geometric Topology +1106.1727 Number Theory +1106.3026 Superconductivity +1106.3461 Physics and Society +1106.4608 Mesoscale and Nanoscale Physics +1106.6260 +1107.1314 Quantum Gases +1107.1929 Disordered Systems and Neural Networks +1107.2282 Probability +1107.2672 Quantum Gases +1108.0385 Mesoscale and Nanoscale Physics +1109.0198 +1109.1948 Mesoscale and Nanoscale Physics +1109.2858 Superconductivity +1109.4056 Strongly Correlated Electrons +1109.4183 +1109.5076 Chemical Physics +1109.6324 +1109.6612 +1110.0394 Mesoscale and Nanoscale Physics +1110.1634 Theory +1110.2171 Phenomenology +1110.3632 Statistical Mechanics +1110.3807 High Energy Astrophysical Phenomena +1110.3921 Materials Science +1110.4097 Materials Science +1110.4577 Analysis of PDEs +1110.5377 Statistical Mechanics +1110.5603 Materials Science +1111.2288 Analysis of PDEs +1111.3436 Mesoscale and Nanoscale Physics +1111.3702 Mesoscale and Nanoscale Physics +1111.4107 Theory +1111.4122 Accelerator Physics +1111.4349 Other Condensed Matter +1111.5142 Superconductivity +1111.6348 Spectral Theory +1111.6360 Phenomenology +1111.7266 Mesoscale and Nanoscale Physics +1112.0387 Physics and Society +1112.1810 Strongly Correlated Electrons +1112.2529 Mesoscale and Nanoscale Physics +1112.3385 Theory +1112.4999 Mesoscale and Nanoscale Physics +1112.5606 Theory +1112.6370 +1201.0185 Phenomenology +1201.2055 +1201.4926 Strongly Correlated Electrons +1201.4955 Physics and Society +1201.5203 Combinatorics +1201.5929 Materials Science +1201.6237 Chemical Physics +1201.6291 Earth and Planetary Astrophysics +1202.0182 Statistical Mechanics +1202.1601 Number Theory +1202.1627 Mesoscale and Nanoscale Physics +1202.2276 Earth and Planetary Astrophysics +1202.2652 Combinatorics +1202.3426 Analysis of PDEs +1202.4303 +1202.4331 Data Structures and Algorithms +1202.5570 Algebraic Topology +1202.5861 Accelerator Physics +1203.0197 Neural and Evolutionary Computing +1203.0200 Software Engineering +1203.0298 Learning +1203.0516 Networking and Internet Architecture +1203.0656 Artificial Intelligence +1203.0723 Earth and Planetary Astrophysics +1203.1021 Artificial Intelligence +1203.1034 Earth and Planetary Astrophysics +1203.1042 Computational Geometry +1203.1062 Biological Physics +1203.1064 Quantitative Methods +1203.1065 Machine Learning +1203.1067 Adaptation and Self-Organizing Systems +1203.1076 Neurons and Cognition +1203.1084 Combinatorics +1203.1095 Artificial Intelligence +1203.1096 Differential Geometry +1203.1097 Networking and Internet Architecture +1203.1098 Classical Analysis and ODEs +1203.1099 +1203.1101 Functional Analysis +1203.1103 +1203.1105 Physics and Society +1203.1107 Computer Science and Game Theory +1203.1108 Algebraic Geometry +1203.1111 Number Theory +1203.1118 Number Theory +1203.1121 +1203.1125 Statistics Theory +1203.1128 Classical Physics +1203.1133 Combinatorics +1203.1136 +1203.1145 Optimization and Control +1203.1147 +1203.1150 Social and Information Networks +1203.1152 Optimization and Control +1203.1153 Computational Complexity +1203.1154 Functional Analysis +1203.1156 Spectral Theory +1203.1158 Combinatorics +1203.1160 Fluid Dynamics +1203.1163 Chemical Physics +1203.1175 Cryptography and Security +1203.1177 Logic in Computer Science +1203.1178 Solar and Stellar Astrophysics +1203.1180 Robotics +1203.1183 Probability +1203.1191 Probability +1203.1196 Classical Physics +1203.1210 Analysis of PDEs +1203.1211 Analysis of PDEs +1203.1212 Information Theory +1203.1213 Number Theory +1203.1214 Optimization and Control +1203.1217 Mesoscale and Nanoscale Physics +1203.1218 Analysis of PDEs +1203.1219 General Physics +1203.1221 Astrophysics of Galaxies +1203.1222 Number Theory +1203.1223 Mesoscale and Nanoscale Physics +1203.1225 Astrophysics of Galaxies +1203.1226 Networking and Internet Architecture +1203.1229 General Physics +1203.1230 Analysis of PDEs +1203.1234 Materials Science +1203.1250 Data Structures and Algorithms +1203.1253 +1203.1256 Probability +1203.1257 Combinatorics +1203.1260 Atomic Physics +1203.1265 Solar and Stellar Astrophysics +1203.1270 Statistical Mechanics +1203.1273 Number Theory +1203.1274 Dynamical Systems +1203.1275 Probability +1203.1277 Solar and Stellar Astrophysics +1203.1278 Numerical Analysis +1203.1280 Analysis of PDEs +1203.1281 Disordered Systems and Neural Networks +1203.1282 General Mathematics +1203.1283 General Mathematics +1203.1285 +1203.1286 History and Overview +1203.1287 Populations and Evolution +1203.1288 Phenomenology +1203.1292 Functional Analysis +1203.1294 Commutative Algebra +1203.1295 Symbolic Computation +1203.1296 Combinatorics +1203.1297 Solar and Stellar Astrophysics +1203.1300 Number Theory +1203.1301 Information Theory +1203.1311 General Finance +cond-mat/0611530 Statistical Mechanics +hep-th/0411214 Theory +math/0404313 Differential Geometry +math/0509071 Differential Geometry +0704.2586 Probability +0705.0507 Complex Variables +0710.2929 Algebraic Geometry +0801.0298 +0804.4150 Computational Complexity +0808.0024 Geometric Topology +0810.1855 Dynamical Systems +0812.4354 Dynamical Systems +0902.0347 Statistics Theory +0906.3287 Physics and Society +0907.0899 +0909.1472 Probability +0910.4739 Superconductivity +0911.4796 +0912.5337 Probability +1003.5611 Quantum Algebra +1004.4314 Statistics Theory +1005.0891 Methodology +1006.1749 Optimization and Control +1007.0220 Probability +1008.3450 Neural and Evolutionary Computing +1009.1016 Statistics Theory +1010.5666 Strongly Correlated Electrons +1011.0260 Phenomenology +1011.1890 Algebraic Geometry +1011.2549 Algebraic Topology +1011.2646 Cosmology and Nongalactic Astrophysics +1011.5265 Geometric Topology +1012.1709 Number Theory +1101.3164 +1101.5384 Differential Geometry +1102.3270 Networking and Internet Architecture +1104.3036 Mesoscale and Nanoscale Physics +1104.3564 Mesoscale and Nanoscale Physics +1105.3574 Physics and Society +1105.4637 Theory +1105.5609 Dynamical Systems +1106.0633 Statistical Mechanics +1106.0838 Materials Science +1106.1605 Quantum Gases +1107.0371 Discrete Mathematics +1107.0934 +1107.1110 Number Theory +1107.5530 Algebraic Geometry +1108.0848 High Energy Astrophysical Phenomena +1108.2590 Physics and Society +1108.4327 Optimization and Control +1109.2314 Cosmology and Nongalactic Astrophysics +1109.3900 Differential Geometry +1109.4045 +1109.6871 Fluid Dynamics +1110.0457 Chemical Physics +1110.0805 Quantum Gases +1110.2291 Algebraic Geometry +1110.3502 Number Theory +1110.3868 +1110.5674 +1111.0927 Cosmology and Nongalactic Astrophysics +1111.4111 Algebraic Geometry +1111.4484 Soft Condensed Matter +1111.7216 Statistical Mechanics +1112.0411 Fluid Dynamics +1112.3087 Phenomenology +1112.3697 Computer Vision and Pattern Recognition +1112.4545 +1112.5878 Instrumentation and Methods for Astrophysics +1112.5958 Phenomenology +1202.1080 Experiment +1202.1420 +1202.2002 Methodology +1202.2705 Dynamical Systems +1203.1432 Functional Analysis +1203.2544 Differential Geometry +1203.2548 Materials Science +1203.2709 Mesoscale and Nanoscale Physics +1204.1462 Experiment +1204.3009 Quantum Gases +1204.3067 +1204.3203 Rings and Algebras +1204.5147 Instrumentation and Methods for Astrophysics +1204.6465 Fluid Dynamics +1205.1003 Dynamical Systems +1205.1124 High Energy Astrophysical Phenomena +1205.3861 Soft Condensed Matter +1205.5176 Quantum Gases +1205.5828 Theory +1205.6016 +1205.6730 Superconductivity +1205.6969 Exactly Solvable and Integrable Systems +1206.0409 Phenomenology +1206.1322 Phenomenology +1206.1425 Methodology +1206.1887 Materials Science +1206.3043 Social and Information Networks +1206.3823 Fluid Dynamics +1206.4849 Mesoscale and Nanoscale Physics +1206.5833 Artificial Intelligence +1206.6020 Statistical Mechanics +1206.6955 Soft Condensed Matter +1207.1554 Solar and Stellar Astrophysics +1207.2633 +1207.3993 Earth and Planetary Astrophysics +1207.4097 Strongly Correlated Electrons +1207.4364 Optics +1207.4767 Theory +1207.5364 Classical Physics +1207.5455 Statistical Mechanics +1207.5503 Theory +1208.1030 Phenomenology +1208.1067 Probability +1208.1405 Algebraic Geometry +1208.1965 +1208.2225 Strongly Correlated Electrons +1208.2370 Optics +1208.2496 Phenomenology +1208.4281 Phenomenology +1208.5407 Optics +1208.6541 Phenomenology +1209.0045 Quantum Algebra +1209.0293 High Energy Astrophysical Phenomena +1209.0681 +1209.2119 Phenomenology +1209.2313 Mesoscale and Nanoscale Physics +1209.2830 Fluid Dynamics +1209.3076 +1209.3622 Phenomenology +1209.4481 Soft Condensed Matter +1209.4753 Superconductivity +1209.5635 Geometric Topology +1209.6481 Data Structures and Algorithms +1210.0341 Instrumentation and Detectors +1210.0560 Astrophysics of Galaxies +1210.0966 Theory +1210.1546 Plasma Physics +1210.3727 Physics and Society +1210.4053 Data Structures and Algorithms +1210.4443 Differential Geometry +1210.4779 Quantum Algebra +1210.5334 Theory +1210.5808 Materials Science +1210.5884 Solar and Stellar Astrophysics +1210.6910 Networking and Internet Architecture +1210.8293 Systems and Control +1211.0004 Popular Physics +1211.0191 Computer Vision and Pattern Recognition +1211.2562 +1211.2827 Algebraic Geometry +1211.3216 +1211.3384 Information Theory +1211.3707 Physics Education +1211.4482 Mesoscale and Nanoscale Physics +1211.4486 Mesoscale and Nanoscale Physics +1211.4887 Theory +1211.4929 Information Retrieval +1211.4957 Artificial Intelligence +1211.5138 Superconductivity +1211.5152 Plasma Physics +1211.5157 Networking and Internet Architecture +1211.5158 Mesoscale and Nanoscale Physics +1211.5160 Phenomenology +1211.5165 Mesoscale and Nanoscale Physics +1211.5170 Logic +1211.5171 Numerical Analysis +1211.5173 Other Computer Science +1211.5175 Physics Education +1211.5176 +1211.5178 Combinatorics +1211.5184 Social and Information Networks +1211.5187 Materials Science +1211.5188 Complex Variables +1211.5194 Machine Learning +1211.5197 Phenomenology +1211.5199 Experiment +1211.5202 Quantum Gases +1211.5207 Information Theory +1211.5210 Phenomenology +1211.5217 Analysis of PDEs +1211.5219 Statistics Theory +1211.5220 Statistics Theory +1211.5221 Networking and Internet Architecture +1211.5222 Mesoscale and Nanoscale Physics +1211.5223 Probability +1211.5226 Number Theory +1211.5230 Mesoscale and Nanoscale Physics +1211.5231 Information Theory +1211.5233 Number Theory +1211.5237 Theory +1211.5239 Statistics Theory +1211.5240 Optics +1211.5245 Atmospheric and Oceanic Physics +1211.5247 Solar and Stellar Astrophysics +1211.5248 Hardware Architecture +1211.5250 Cosmology and Nongalactic Astrophysics +1211.5251 Information Theory +1211.5252 Information Theory +1211.5258 Plasma Physics +1211.5260 Optics +1211.5268 Commutative Algebra +1211.5269 Materials Science +1211.5270 +1211.5271 Differential Geometry +1211.5272 Statistics Theory +1211.5277 Functional Analysis +1211.5280 Superconductivity +1211.5281 Statistics Theory +1211.5282 Chemical Physics +1211.5287 Superconductivity +1211.5293 Experiment +1211.5296 Theory +1211.5298 Numerical Analysis +1211.5299 Analysis of PDEs +1211.5304 Mesoscale and Nanoscale Physics +1211.5306 General Physics +1211.5307 Combinatorics +1211.5311 Combinatorics +1211.5313 +1211.5316 Geophysics +1211.5318 Commutative Algebra +1211.5322 Logic in Computer Science +1211.5325 Differential Geometry +1211.5329 Computer Science and Game Theory +1211.5333 Mesoscale and Nanoscale Physics +1211.5334 Differential Geometry +1211.5341 Mesoscale and Nanoscale Physics +1211.5342 Group Theory +1211.5344 Differential Geometry +1211.5345 Group Theory +1211.5346 Group Theory +1211.5350 Data Structures and Algorithms +1211.5352 Numerical Analysis +1211.5353 Data Structures and Algorithms +1211.5355 Computer Vision and Pattern Recognition +1211.5357 Disordered Systems and Neural Networks +1211.5359 Experiment +1211.5365 Plasma Physics +1211.5371 Networking and Internet Architecture +1211.5383 Rings and Algebras +1211.5385 Cosmology and Nongalactic Astrophysics +1211.5386 Commutative Algebra +1211.5400 Neural and Evolutionary Computing +1211.5402 Other Computer Science +1211.5406 Optimization and Control +1211.5407 Other Computer Science +1211.5414 Data Structures and Algorithms +1211.5415 +1211.5416 Phenomenology +1211.5418 Databases +1211.5420 Statistics Theory +1211.5421 Strongly Correlated Electrons +1211.5422 Statistics Theory +1211.5424 Classical Analysis and ODEs +1211.5426 Number Theory +1211.5434 Computational Physics +1211.5437 Atomic Physics +1211.5439 Instrumentation and Methods for Astrophysics +1211.5442 Statistics Theory +1211.5449 Rings and Algebras +1211.5450 Operator Algebras +1211.5451 Software Engineering +1211.5456 Probability +1211.5463 Solar and Stellar Astrophysics +1211.5465 Solar and Stellar Astrophysics +1211.5468 Statistics Theory +1211.5470 Phenomenology +1211.5473 Solar and Stellar Astrophysics +1211.5478 Dynamical Systems +1211.5479 Statistics Theory +1211.5484 Social and Information Networks +1211.5487 Instrumentation and Methods for Astrophysics +1211.5489 Probability +1211.5491 Probability +1211.5494 Systems and Control +1211.5496 Combinatorics +1211.5506 Quantum Algebra +1211.5507 Statistics Theory +1211.5508 General Literature +1211.5510 +1211.5513 Statistics Theory +1211.5514 Physics Education +1211.5515 Strongly Correlated Electrons +1211.5518 Strongly Correlated Electrons +1211.5520 Computational Engineering, Finance, and Science +1211.5524 Numerical Analysis +1211.5527 Solar and Stellar Astrophysics +1211.5530 Distributed, Parallel, and Cluster Computing +1211.5535 +1211.5542 Instrumentation and Methods for Astrophysics +1211.5544 Computational Complexity +1211.5545 Group Theory +1211.5549 Strongly Correlated Electrons +1211.5550 Phenomenology +1211.5551 +1211.5553 Analysis of PDEs +1211.5555 Materials Science +1211.5556 Computer Vision and Pattern Recognition +1211.5561 Group Theory +1211.5564 Soft Condensed Matter +1211.5566 Information Theory +1211.5570 Lattice +1211.5573 Classical Analysis and ODEs +1211.5575 General Finance +1211.5576 Materials Science +1211.5588 Group Theory +1211.5590 Symbolic Computation +1211.5591 Number Theory +cond-mat/0106065 Soft Condensed Matter +cond-mat/0106573 Soft Condensed Matter +cond-mat/9806091 Soft Condensed Matter +cond-mat/9911249 Soft Condensed Matter +hep-ph/9808247 Phenomenology +0704.2087 +0706.0272 Number Theory +0710.3425 +0802.0165 Number Theory +0805.2472 +0806.3175 Combinatorics +0808.3112 Discrete Mathematics +0809.3778 Optimization and Control +0811.3613 +0812.2888 General Topology +0812.3776 +0812.3780 +0901.2899 Probability +0902.0511 Computational Physics +0902.0944 Algebraic Geometry +0902.2516 Trading and Market Microstructure +0902.3729 +0904.0740 Optimization and Control +0907.2099 Computational Physics +0907.3586 Number Theory +0909.3129 Genomics +0909.3132 Genomics +0910.4276 +0910.5564 Logic in Computer Science +0912.0812 +0912.1458 Probability +1001.2180 Representation Theory +1002.4081 Strongly Correlated Electrons +1006.2504 History and Overview +1007.0459 Combinatorics +1008.3278 Combinatorics +1009.5373 Combinatorics +1010.5821 Functional Analysis +1011.1823 Probability +1012.3405 Logic +1012.5916 Genomics +1101.3630 Algebraic Geometry +1102.1679 +1103.0133 Networking and Internet Architecture +1103.2950 Computation and Language +1103.4475 +1104.3308 Mesoscale and Nanoscale Physics +1105.0273 Complex Variables +1105.1484 Optimization and Control +1105.4840 Computational Physics +1106.2234 +1106.6105 +1107.2529 General Physics +1108.1099 Probability +1108.4078 Classical Analysis and ODEs +1108.4887 Number Theory +1109.0236 Rings and Algebras +1109.5099 Soft Condensed Matter +1110.0530 +1110.2584 Mesoscale and Nanoscale Physics +1110.2617 Soft Condensed Matter +1110.3747 Quantum Gases +1110.4216 +1111.1794 Cosmology and Nongalactic Astrophysics +1111.4873 Strongly Correlated Electrons +1111.5275 Algebraic Geometry +1111.5715 Phenomenology +1112.0916 Chemical Physics +1112.1277 Theory +1201.0278 Mesoscale and Nanoscale Physics +1201.0352 Biological Physics +1201.1436 Materials Science +1201.1771 Analysis of PDEs +1201.2019 Quantum Gases +1201.3401 Symbolic Computation +1201.5360 Information Theory +1201.6346 Materials Science +1202.0561 Materials Science +1202.0626 Mesoscale and Nanoscale Physics +1202.1241 Lattice +1202.1500 Physics Education +1202.2464 Theory +1202.2718 Phenomenology +1202.5449 Formal Languages and Automata Theory +1203.0320 +1203.1491 Mesoscale and Nanoscale Physics +1203.1775 Earth and Planetary Astrophysics +1203.2118 Phenomenology +1203.3998 Superconductivity +1204.1783 Strongly Correlated Electrons +1204.5174 Computational Engineering, Finance, and Science +1204.5934 Superconductivity +1204.6179 Logic in Computer Science +1204.6388 Theory +1204.6729 Other Computer Science +1205.0142 Metric Geometry +1205.0584 Molecular Networks +1205.0609 Number Theory +1205.0803 History and Philosophy of Physics +1205.0804 History and Philosophy of Physics +1205.0817 Adaptation and Self-Organizing Systems +1205.0819 Geophysics +1205.0820 Networking and Internet Architecture +1205.0828 +1205.0831 Artificial Intelligence +1205.0834 Statistics Theory +1205.0837 Databases +1205.0839 Software Engineering +1205.0845 Discrete Mathematics +1205.0846 Classical Analysis and ODEs +1205.0848 Algebraic Geometry +1205.0849 Analysis of PDEs +1205.0856 Optimization and Control +1205.0860 K-Theory and Homology +1205.0861 Analysis of PDEs +1205.0863 +1205.0864 General Topology +1205.0869 Numerical Analysis +1205.0873 Metric Geometry +1205.0882 Numerical Analysis +1205.0883 Biological Physics +1205.0893 Quantum Algebra +1205.0895 History and Philosophy of Physics +1205.0896 Solar and Stellar Astrophysics +1205.0900 Cryptography and Security +1205.0902 Statistical Mechanics +1205.0903 Computational Complexity +1205.0908 Disordered Systems and Neural Networks +1205.0911 +1205.0912 Theory +1205.0914 Combinatorics +1205.0917 Information Retrieval +1205.0919 Information Retrieval +1205.0922 History and Philosophy of Physics +1205.0925 Probability +1205.0926 Statistical Mechanics +1205.0927 Information Theory +1205.0928 Materials Science +1205.0930 +1205.0933 Networking and Internet Architecture +1205.0936 General Physics +1205.0940 Combinatorics +1205.0943 Differential Geometry +1205.0951 Algebraic Geometry +1205.0955 Chemical Physics +1205.0957 Physics Education +1205.0960 Physics and Society +1205.0961 Number Theory +1205.0963 Computational Geometry +1205.0968 Computational Complexity +1205.0969 Earth and Planetary Astrophysics +1205.0970 Probability +1205.0974 Data Structures and Algorithms +1205.0978 +1205.0981 +1205.0986 Artificial Intelligence +1205.0987 Software Engineering +1205.1000 Optics +1205.1002 Adaptation and Self-Organizing Systems +1205.1005 Statistics Theory +1205.1011 Phenomenology +1205.1012 Risk Management +1205.1014 Combinatorics +1205.1018 Metric Geometry +1205.1027 Differential Geometry +1205.1032 Differential Geometry +1205.1033 Superconductivity +1205.1039 Differential Geometry +1205.1040 Earth and Planetary Astrophysics +1205.1043 High Energy Astrophysical Phenomena +1205.1049 Astrophysics of Galaxies +adap-org/9709007 Adaptation and Self-Organizing Systems +math/0511674 Number Theory +math/0511677 Number Theory +math/0511678 Number Theory +math/0511680 Number Theory +math/0511681 Number Theory +math/0511682 Number Theory +math/0512014 Number Theory +math/0601604 Number Theory +0705.3802 Phenomenology +0709.1828 Theory +0802.3308 Analysis of PDEs +0802.4411 Computational Finance +0803.0396 Analysis of PDEs +0806.4168 Physics and Society +0807.1550 Physics and Society +0809.1236 Logic in Computer Science +0809.2768 Physics and Society +0810.1777 Mesoscale and Nanoscale Physics +0812.0287 Category Theory +0812.1627 Analysis of PDEs +0812.3233 Combinatorics +0903.0428 Probability +0903.0430 Probability +0903.3623 Physics and Society +0904.2498 Analysis of PDEs +0904.4863 Physics and Society +0907.1786 Analysis of PDEs +0907.2626 Geometric Topology +0907.3661 Mesoscale and Nanoscale Physics +0911.3280 Computation and Language +1001.3910 +1003.3804 Algebraic Geometry +1004.0130 Chemical Physics +1004.4204 Atomic Physics +1005.3159 Rings and Algebras +1005.4247 +1006.0115 +1006.3825 Formal Languages and Automata Theory +1007.1116 Strongly Correlated Electrons +1009.0048 Probability +1011.4289 +1011.5275 Phenomenology +1011.5453 Phenomenology +1101.2746 Algebraic Geometry +1101.3616 Optics +1101.4930 Dynamical Systems +1102.0442 Mesoscale and Nanoscale Physics +1102.0949 Analysis of PDEs +1102.5156 Combinatorics +1103.6025 Logic +1103.6133 Cosmology and Nongalactic Astrophysics +1103.6256 Differential Geometry +1104.3529 Materials Science +1105.1420 +1105.6196 Strongly Correlated Electrons +1106.1349 Strongly Correlated Electrons +1106.1806 Statistical Mechanics +1106.2630 Probability +1106.3200 Phenomenology +1106.3562 Statistical Mechanics +1106.4894 Numerical Analysis +1107.2971 Classical Analysis and ODEs +1107.3534 Cryptography and Security +1107.5953 Information Theory +1108.0260 Symplectic Geometry +1108.5600 Cosmology and Nongalactic Astrophysics +1108.5732 Theory +1109.0011 Theory +1109.3434 Mesoscale and Nanoscale Physics +1109.5272 +1109.6480 +1109.6581 Probability +1110.0849 Phenomenology +1110.0895 Computational Engineering, Finance, and Science +1110.1180 Computational Geometry +1110.1954 Strongly Correlated Electrons +1110.2301 Strongly Correlated Electrons +1110.2559 Complex Variables +1110.2870 Superconductivity +1110.4304 Machine Learning +1110.5035 Theory +1110.6564 +1111.1202 Mesoscale and Nanoscale Physics +1111.1614 Optics +1111.3858 +1111.6394 Statistical Mechanics +1112.0556 Atomic Physics +1112.1462 Complex Variables +1112.2383 Algebraic Geometry +1112.2399 Representation Theory +1112.2806 +1112.3956 Phenomenology +1112.5368 Mesoscale and Nanoscale Physics +1201.1139 Number Theory +1201.1905 Theory +1201.2834 Computer Science and Game Theory +1201.3358 Strongly Correlated Electrons +1201.3816 Probability +1201.5197 High Energy Astrophysical Phenomena +1201.5512 Classical Analysis and ODEs +1201.6559 History and Overview +1202.0170 Theory +1202.0697 Pattern Formation and Solitons +1202.1010 Strongly Correlated Electrons +1202.2224 Statistical Mechanics +1202.2260 Phenomenology +1202.2480 Superconductivity +1202.2982 +1202.3198 Metric Geometry +1202.3537 Strongly Correlated Electrons +1202.3845 +1202.4140 Computer Science and Game Theory +1202.4437 Methodology +1202.4748 Computational Physics +1202.4821 Computational Geometry +1203.0697 Machine Learning +1203.1078 Methodology +1203.1371 Instrumentation and Methods for Astrophysics +1203.1943 Representation Theory +1203.2402 Commutative Algebra +1203.2515 +1203.3691 Algebraic Geometry +1203.4725 Digital Libraries +1203.5746 Superconductivity +1204.0745 +1204.0991 Machine Learning +1204.1061 Phenomenology +1204.1135 +1204.1358 Category Theory +1204.3024 Atomic Physics +1204.3229 +1204.3437 +1204.5752 Phenomenology +1205.0433 Superconductivity +1205.0438 Superconductivity +1205.0457 Mesoscale and Nanoscale Physics +1205.0734 Number Theory +1205.0745 Mesoscale and Nanoscale Physics +1205.1164 Optics +1205.1219 Classical Analysis and ODEs +1205.1444 Phenomenology +1205.2703 General Physics +1205.2874 Learning +1205.3550 Pricing of Securities +1205.4772 Phenomenology +1205.5065 +1205.5402 Number Theory +1205.5964 Quantum Gases +1205.6525 Phenomenology +1206.0808 Phenomenology +1206.1347 Materials Science +1206.1728 Social and Information Networks +1206.1837 Data Structures and Algorithms +1206.1951 Algebraic Topology +1206.2600 +1206.2987 Astrophysics of Galaxies +1206.3433 Probability +1206.3851 Analysis of PDEs +1206.5381 Strongly Correlated Electrons +1206.5495 Optimization and Control +1206.5723 Mesoscale and Nanoscale Physics +1206.5784 Algebraic Topology +1206.6235 Solar and Stellar Astrophysics +1206.6380 Learning +1206.6382 Learning +1206.6383 Learning +1206.6384 Learning +1206.6385 Learning +1206.6386 Learning +1206.6387 Learning +1206.6388 Learning +1206.6390 Artificial Intelligence +1206.6391 Methodology +1206.6392 Learning +1206.6393 Learning +1206.6394 Learning +1206.6395 Learning +1206.6396 Learning +1206.6397 Learning +1206.6399 Learning +1206.6400 Learning +1206.6401 Learning +1206.6402 Learning +1206.6403 Computation and Language +1206.6404 Learning +1206.6405 Learning +1206.6407 Learning +1206.6408 Methodology +1206.6410 Learning +1206.6411 Learning +1206.6412 Learning +1206.6413 Learning +1206.6414 Learning +1206.6415 Learning +1206.6416 Learning +1206.6417 Learning +1206.6418 Learning +1206.6419 Learning +1206.6420 Learning +1206.6421 Learning +1206.6422 Learning +1206.6423 Computation and Language +1206.6425 Learning +1206.6427 Learning +1206.6428 Learning +1206.6429 Learning +1206.6430 Learning +1206.6431 Learning +1206.6432 Learning +1206.6433 Methodology +1206.6434 Learning +1206.6435 Learning +1206.6436 Learning +1206.6437 Computer Vision and Pattern Recognition +1206.6438 Learning +1206.6439 Computational Engineering, Finance, and Science +1206.6440 Learning +1206.6441 Learning +1206.6442 Learning +1206.6444 Learning +1206.6445 Computer Vision and Pattern Recognition +1206.6446 Learning +1206.6447 Learning +1206.6448 Learning +1206.6449 Learning +1206.6450 Learning +1206.6451 Learning +1206.6452 Learning +1206.6453 Learning +1206.6454 Learning +1206.6455 Learning +1206.6456 Applications +1206.6457 Learning +1206.6458 Learning +1206.6459 Computational Engineering, Finance, and Science +1206.6460 Learning +1206.6461 Learning +1206.6462 Learning +1206.6463 Learning +1206.6465 Learning +1206.6466 Neural and Evolutionary Computing +1206.6467 Learning +1206.6468 Learning +1206.6469 Learning +1206.6470 Learning +1206.6471 Learning +1206.6472 Learning +1206.6473 Artificial Intelligence +1206.6474 Data Structures and Algorithms +1206.6476 Learning +1206.6477 Learning +1206.6478 Learning +1206.6479 Learning +1206.6480 Learning +1206.6481 Computation and Language +1206.6482 Computer Vision and Pattern Recognition +1206.6483 Learning +1206.6484 Learning +1206.6485 Learning +1206.6486 Learning +1206.6487 Learning +1206.6488 Methodology +1206.6560 +1206.6594 Cosmology and Nongalactic Astrophysics +1206.6599 Phenomenology +1206.6749 +1207.0013 Instrumentation and Detectors +1207.0017 Social and Information Networks +1207.0018 Information Theory +1207.0029 Physics and Society +1207.0030 Optimization and Control +1207.0032 Information Theory +1207.0034 Physics and Society +1207.0035 Superconductivity +1207.0037 Computer Science and Game Theory +1207.0045 High Energy Astrophysical Phenomena +1207.0049 Strongly Correlated Electrons +1207.0050 Strongly Correlated Electrons +1207.0051 Logic in Computer Science +1207.0055 Strongly Correlated Electrons +1207.0057 Learning +1207.0058 Statistical Mechanics +1207.0063 Number Theory +1207.0070 +1207.0073 Strongly Correlated Electrons +1207.0074 Functional Analysis +1207.0076 Representation Theory +1207.0078 Physics and Society +1207.0083 Combinatorics +1207.0087 Quantum Algebra +1207.0097 Systems and Control +1207.0099 Learning +1207.0100 Theory +1207.0103 Materials Science +1207.0104 Materials Science +1207.0105 Methodology +1207.0112 Materials Science +1207.0115 +1207.0116 Representation Theory +1207.0117 Artificial Intelligence +1207.0118 Logic +1207.0119 General Topology +1207.0122 Cryptography and Security +1207.0126 +1207.0129 Numerical Analysis +1207.0134 Databases +1207.0135 Databases +1207.0136 Databases +1207.0137 Databases +1207.0138 Databases +1207.0140 Databases +1207.0142 Databases +1207.0143 Databases +1207.0144 Databases +1207.0145 Databases +1207.0147 Databases +1207.0148 +1207.0151 Computer Vision and Pattern Recognition +1207.0152 Dynamical Systems +1207.0154 Geometric Topology +1207.0155 Earth and Planetary Astrophysics +1207.0157 Networking and Internet Architecture +1207.0158 Logic in Computer Science +1207.0159 Networking and Internet Architecture +1207.0160 Networking and Internet Architecture +1207.0161 Geometric Topology +1207.0162 Networking and Internet Architecture +1207.0165 Cosmology and Nongalactic Astrophysics +1207.0176 Solar and Stellar Astrophysics +1207.0191 Combinatorics +1207.0193 Differential Geometry +1207.0194 Solar and Stellar Astrophysics +1207.0195 Probability +1207.0202 Probability +1207.0203 Distributed, Parallel, and Cluster Computing +1207.0206 Artificial Intelligence +1207.0209 Number Theory +1207.0211 Theory +1207.0216 Computer Science and Game Theory +1207.0218 Atomic Physics +1207.0219 Physics Education +1207.0220 Physics Education +1207.0226 Distributed, Parallel, and Cluster Computing +1207.0229 Information Theory +1207.0237 Combinatorics +1207.0240 Computational Geometry +1207.0242 Statistics Theory +1207.0250 Cosmology and Nongalactic Astrophysics +1207.0251 Mesoscale and Nanoscale Physics +1207.0252 Distributed, Parallel, and Cluster Computing +1207.0258 Statistical Mechanics +1207.0270 Superconductivity +1207.0272 Optics +1207.0273 Information Theory +1207.0282 Statistics Theory +1207.0284 Mesoscale and Nanoscale Physics +1207.0287 Number Theory +1207.0288 Other Computer Science +1207.0293 Soft Condensed Matter +1207.0308 Solar and Stellar Astrophysics +1207.0310 Materials Science +1207.0313 Computational Engineering, Finance, and Science +1207.0314 Materials Science +1207.0316 Data Structures and Algorithms +1207.0318 Optimization and Control +1207.0324 Classical Physics +1207.0326 Quantum Gases +1207.0331 Phenomenology +1207.0332 Logic in Computer Science +1207.0333 Phenomenology +1207.0334 Information Theory +1207.0335 Information Theory +1207.0337 Information Theory +1207.0338 Differential Geometry +1207.0340 +1207.0342 Combinatorics +1207.0343 Optimization and Control +1207.0352 +1207.0353 Phenomenology +1207.0354 Instrumentation and Methods for Astrophysics +1207.0360 Applications +1207.0362 Information Theory +1207.0365 Geophysics +1207.0370 Data Structures and Algorithms +1207.0371 Complex Variables +1207.0373 Probability +1207.0379 Materials Science +1207.0384 Solar and Stellar Astrophysics +1207.0389 Probability +1207.0390 Dynamical Systems +1207.0395 +1207.0396 Computation and Language +1207.0397 Dynamical Systems +1207.0398 Combinatorics +1207.0403 Artificial Intelligence +1207.0405 Multiagent Systems +1207.0406 Physics and Society +1207.0407 Data Analysis, Statistics and Probability +1207.0408 Symplectic Geometry +1207.0410 Functional Analysis +1207.0418 Cryptography and Security +1207.0430 Combinatorics +1207.0435 Phenomenology +1207.0439 Computers and Society +1207.0446 Information Retrieval +1207.0454 Data Analysis, Statistics and Probability +1207.0456 Atmospheric and Oceanic Physics +1207.0462 Phenomenology +1207.0463 Classical Analysis and ODEs +1207.0464 +1207.0468 Analysis of PDEs +1207.0472 K-Theory and Homology +1207.0473 Statistics Theory +1207.0483 Cosmology and Nongalactic Astrophysics +1207.0486 Numerical Analysis +cs/0703087 Computers and Society +hep-ph/0312150 Phenomenology +math/0608240 Dynamical Systems +0709.2720 Differential Geometry +0803.1895 Computational Physics +0807.3304 Differential Geometry +0811.0062 Group Theory +0901.2036 +0903.1439 Number Theory +0903.5065 Differential Geometry +0904.4062 Differential Geometry +0904.4065 Algebraic Geometry +0911.5467 +1001.2509 Instrumentation and Methods for Astrophysics +1004.1876 Methodology +1004.3552 Functional Analysis +1004.4186 Other Quantitative Biology +1004.5361 Other Quantitative Biology +1006.0450 +1006.1325 Probability +1006.5392 Instrumentation and Methods for Astrophysics +1007.4372 Pricing of Securities +1009.2061 Rings and Algebras +1009.4030 +1010.2498 Solar and Stellar Astrophysics +1011.5670 Differential Geometry +1012.4360 Solar and Stellar Astrophysics +1101.1426 Classical Analysis and ODEs +1101.3194 +1101.4190 Probability +1103.1833 Other Quantitative Biology +1104.4454 Analysis of PDEs +1105.0712 Symplectic Geometry +1105.3851 Theory +1106.0408 Mesoscale and Nanoscale Physics +1106.1390 Probability +1106.1612 Populations and Evolution +1107.4337 +1107.5608 Logic +1107.5753 Materials Science +1108.0480 +1108.0616 Materials Science +1108.4740 +1109.0253 Mesoscale and Nanoscale Physics +1109.0738 Computational Finance +1109.4199 Strongly Correlated Electrons +1109.4256 +1109.4527 Cosmology and Nongalactic Astrophysics +1109.6207 Differential Geometry +1110.0107 Computer Vision and Pattern Recognition +1110.0687 +1110.1386 Biological Physics +1110.2607 Mesoscale and Nanoscale Physics +1111.0574 Computation +1111.0576 Methodology +1111.1610 Quantum Algebra +1111.1962 +1111.4588 Cosmology and Nongalactic Astrophysics +1111.6705 Logic +1112.0782 Cosmology and Nongalactic Astrophysics +1112.0895 +1112.1304 Earth and Planetary Astrophysics +1112.3744 Probability +1112.3890 Statistical Mechanics +1112.4472 General Physics +1112.4582 +1112.4663 +1112.4935 Classical Analysis and ODEs +1112.5737 Metric Geometry +1112.5822 Superconductivity +1201.1055 Quantum Gases +1201.1552 High Energy Astrophysical Phenomena +1201.1629 Mesoscale and Nanoscale Physics +1201.2501 Data Structures and Algorithms +1201.2628 Geometric Topology +1201.3916 Strongly Correlated Electrons +1202.3101 Dynamical Systems +1202.3237 Mesoscale and Nanoscale Physics +1202.3858 Analysis of PDEs +1202.6238 Quantum Algebra +1202.6501 Networking and Internet Architecture +1203.0184 Statistical Mechanics +1203.1553 Materials Science +1203.1569 Databases +1203.2026 Astrophysics of Galaxies +1203.4102 Earth and Planetary Astrophysics +1203.4451 Geophysics +1203.4462 Chaotic Dynamics +1203.6304 Mesoscale and Nanoscale Physics +1204.0456 Superconductivity +1204.0984 Phenomenology +1204.1336 Cryptography and Security +1204.1349 Combinatorics +1204.1350 +1204.1352 Theory +1204.1357 Representation Theory +1204.1359 Functional Analysis +1204.1363 +1204.1365 Cosmology and Nongalactic Astrophysics +1204.1370 Phenomenology +1204.1373 Distributed, Parallel, and Cluster Computing +1204.1381 Trading and Market Microstructure +1204.1383 Networking and Internet Architecture +1204.1385 Cryptography and Security +1204.1390 Commutative Algebra +1204.1393 Computer Vision and Pattern Recognition +1204.1395 Neurons and Cognition +1204.1398 Information Theory +1204.1399 Astrophysics of Galaxies +1204.1402 Combinatorics +1204.1404 Complex Variables +1204.1406 Information Retrieval +1204.1407 Information Theory +1204.1413 Social and Information Networks +1204.1414 Systems and Control +1204.1417 Data Structures and Algorithms +1204.1420 Emerging Technologies +1204.1421 Superconductivity +1204.1423 Numerical Analysis +1204.1424 Mesoscale and Nanoscale Physics +1204.1425 Software Engineering +1204.1427 Statistical Mechanics +1204.1428 Networking and Internet Architecture +1204.1429 Medical Physics +1204.1433 Information Theory +1204.1437 Machine Learning +1204.1438 Combinatorics +1204.1440 Combinatorics +1204.1441 Optics +1204.1442 Numerical Analysis +1204.1443 Superconductivity +1204.1453 Operator Algebras +1204.1454 Statistics Theory +1204.1464 Combinatorics +1204.1465 Fluid Dynamics +1204.1466 Materials Science +1204.1467 Data Structures and Algorithms +1204.1470 Statistics Theory +1204.1471 +1204.1477 Analysis of PDEs +1204.1479 Spectral Theory +1204.1481 Logic +1204.1482 Disordered Systems and Neural Networks +1204.1492 +1204.1494 Optics +1204.1495 Networking and Internet Architecture +1204.1498 Atmospheric and Oceanic Physics +1204.1499 Geophysics +1204.1500 Geophysics +1204.1502 Dynamical Systems +1204.1503 Dynamical Systems +1204.1507 Dynamical Systems +1204.1513 Phenomenology +1204.1516 Distributed, Parallel, and Cluster Computing +1204.1527 +1204.1528 Information Retrieval +1204.1529 Networking and Internet Architecture +1204.1532 +1204.1536 Analysis of PDEs +1204.1537 Theory +1204.1541 Combinatorics +1204.1545 Algebraic Geometry +1204.1546 +1204.1548 Information Theory +1204.1549 Superconductivity +math/0204321 Algebraic Geometry +math/0509393 Differential Geometry +math/0610962 Number Theory +math/0702545 Number Theory +math/0702876 Representation Theory +0710.0102 Geometric Topology +0802.1135 Functional Analysis +0805.0104 +0807.4392 Functional Analysis +0809.2739 Probability +0810.1796 Superconductivity +0902.4552 Neurons and Cognition +0904.2087 High Energy Astrophysical Phenomena +0904.2719 Dynamical Systems +0905.0127 Representation Theory +0906.3253 Functional Analysis +0908.4254 Quantum Gases +0909.2500 Statistical Mechanics +0910.3888 Functional Analysis +1001.1440 Rings and Algebras +1001.2335 Strongly Correlated Electrons +1002.3944 Rings and Algebras +1002.3950 Functional Analysis +1002.4993 Disordered Systems and Neural Networks +1003.2877 Theory +1005.2683 Functional Analysis +1005.3228 Algebraic Geometry +1005.3616 Combinatorics +1006.0944 Rings and Algebras +1006.2511 General Mathematics +1007.2507 Strongly Correlated Electrons +1007.3455 +1007.4414 Cryptography and Security +1008.3043 Numerical Analysis +1008.4308 Dynamical Systems +1008.5296 Cryptography and Security +1009.2994 Dynamical Systems +1012.1019 Mesoscale and Nanoscale Physics +1012.2885 Quantum Gases +1012.3571 Differential Geometry +1012.3681 +1012.4537 Soft Condensed Matter +1101.0458 +1101.5237 Rings and Algebras +1102.3026 Rings and Algebras +1103.0119 Dynamical Systems +1103.1187 Numerical Analysis +1103.4052 Group Theory +1103.6094 +1104.1853 Differential Geometry +1104.2833 Cosmology and Nongalactic Astrophysics +1104.5464 Dynamical Systems +1105.0640 Symplectic Geometry +1105.2496 Quantum Gases +1105.3746 Functional Analysis +1106.2916 Functional Analysis +1106.4006 Phenomenology +1106.4245 Quantum Gases +1106.4711 Theory +1107.0628 Theory +1107.0705 Superconductivity +1107.1569 +1107.2294 Chaotic Dynamics +1107.3047 Cryptography and Security +1107.4443 Complex Variables +1108.1206 Phenomenology +1108.3975 Functional Analysis +1109.1677 Differential Geometry +1109.1737 Complex Variables +1109.2036 Neurons and Cognition +1109.2093 Number Theory +1109.2471 Astrophysics of Galaxies +1109.2476 Mesoscale and Nanoscale Physics +1109.4884 Dynamical Systems +1109.5242 Probability +1109.5353 +1109.5578 Functional Analysis +1110.0650 Quantum Gases +1110.1088 Mesoscale and Nanoscale Physics +1110.1510 Computational Complexity +1110.2810 Phenomenology +1110.3141 Strongly Correlated Electrons +1110.3294 Category Theory +1110.4479 Atomic Physics +1110.4943 High Energy Astrophysical Phenomena +1110.5306 Cosmology and Nongalactic Astrophysics +1110.6002 Optimization and Control +1110.6072 Optics +1110.6298 Information Theory +1111.0298 +1111.1018 Classical Analysis and ODEs +1111.2425 Networking and Internet Architecture +1111.3197 Statistical Mechanics +1111.3468 Disordered Systems and Neural Networks +1111.3739 Systems and Control +1111.4797 +1112.0007 Superconductivity +1112.4407 Analysis of PDEs +1112.4734 Optics +1112.5696 Number Theory +1112.5770 +1201.0725 Networking and Internet Architecture +1201.1473 Mathematical Software +1201.2638 General Physics +1201.3003 +1201.3091 Data Structures and Algorithms +1201.3122 Statistical Mechanics +1201.3233 Computer Vision and Pattern Recognition +1201.3368 Theory +1201.3379 Rings and Algebras +1201.3393 +1201.3395 +1201.3396 Materials Science +1201.3405 +1201.3406 Algebraic Geometry +1201.3408 Artificial Intelligence +1201.3409 +1201.3410 Data Analysis, Statistics and Probability +1201.3411 Representation Theory +1201.3414 Algebraic Topology +1201.3416 Software Engineering +1201.3417 Information Retrieval +1201.3418 Information Retrieval +1201.3419 Probability +1201.3422 Probability +1201.3424 Spectral Theory +1201.3425 Statistical Mechanics +1201.3431 Analysis of PDEs +1201.3433 Analysis of PDEs +1201.3438 Geometric Topology +1201.3441 Rings and Algebras +1201.3444 Analysis of PDEs +1201.3445 Analysis of PDEs +1201.3448 Theory +1201.3449 History and Philosophy of Physics +1201.3450 Differential Geometry +1201.3452 +1201.3456 Other Computer Science +1201.3457 Other Computer Science +1201.3458 Databases +1201.3463 Algebraic Geometry +1201.3467 Optimization and Control +1201.3472 Instrumentation and Detectors +1201.3475 Mesoscale and Nanoscale Physics +1201.3476 Quantum Algebra +1201.3477 Mesoscale and Nanoscale Physics +1201.3479 Computational Engineering, Finance, and Science +1201.3484 Earth and Planetary Astrophysics +1201.3486 Analysis of PDEs +1201.3487 Mesoscale and Nanoscale Physics +1201.3489 Classical Physics +1201.3490 Probability +1201.3491 Dynamical Systems +1201.3493 Functional Analysis +1201.3494 Quantum Algebra +1201.3495 Probability +1201.3500 Dynamical Systems +1201.3508 Statistical Mechanics +1201.3516 +1201.3520 Cosmology and Nongalactic Astrophysics +1201.3525 Cosmology and Nongalactic Astrophysics +1201.3528 Computation +1201.3536 Astrophysics of Galaxies +1201.3537 Earth and Planetary Astrophysics +1201.3540 Astrophysics of Galaxies +1201.3541 Other Condensed Matter +1201.3545 Computational Engineering, Finance, and Science +1201.3546 History and Overview +1201.3547 Combinatorics +1201.3550 +1201.3553 Mesoscale and Nanoscale Physics +1201.3557 Combinatorics +1201.3567 Probability +1201.3570 Rings and Algebras +1201.3571 Computation +1201.3578 Earth and Planetary Astrophysics +1201.3579 Probability +1201.3583 Dynamical Systems +1201.3586 Analysis of PDEs +1201.3588 Solar and Stellar Astrophysics +1201.3589 Quantum Algebra +1201.3593 Numerical Analysis +1201.3602 Data Structures and Algorithms +1201.3603 +1201.3606 Cosmology and Nongalactic Astrophysics +1201.3610 Functional Analysis +1201.3611 Statistics Theory +1201.3612 Computer Vision and Pattern Recognition +1201.3615 +hep-ph/0605103 Phenomenology +hep-th/0601070 Theory +math/0603017 Classical Analysis and ODEs +math/0603667 Group Theory +1001.3762 Optimization and Control +1003.4772 Classical Analysis and ODEs +1007.3027 +1007.4658 Algebraic Geometry +1008.1290 Statistics Theory +1010.6225 Probability +1011.0272 Differential Geometry +1102.2541 Probability +1105.2375 Information Theory +1106.2014 Statistics Theory +1106.6214 Computational Geometry +1108.0339 +1108.0642 +1108.3475 Chemical Physics +1110.2563 Methodology +1110.4922 Analysis of PDEs +1111.0491 Theory +1112.4714 Phenomenology +1112.5841 Dynamical Systems +1201.0375 Social and Information Networks +1201.2998 Differential Geometry +1203.0940 Experiment +1203.3911 Differential Geometry +1203.4148 Combinatorics +1204.4121 High Energy Astrophysical Phenomena +1204.4490 +1204.4530 Cosmology and Nongalactic Astrophysics +1205.0356 Quantum Algebra +1205.0712 +1205.1004 High Energy Astrophysical Phenomena +1205.2405 +1205.2684 Probability +1205.4285 High Energy Astrophysical Phenomena +1205.6064 Strongly Correlated Electrons +1206.2839 Cosmology and Nongalactic Astrophysics +1206.6149 Number Theory +1206.6228 Other Condensed Matter +1207.0796 Strongly Correlated Electrons +1207.1708 Computation +1207.3786 Cosmology and Nongalactic Astrophysics +1207.4887 Statistical Mechanics +1207.7209 Probability +1208.1134 Phenomenology +1208.3592 Phenomenology +1208.4371 Theory +1208.5684 Mesoscale and Nanoscale Physics +1208.5994 Theory +1209.5645 Solar and Stellar Astrophysics +1210.0190 Algebraic Geometry +1210.5660 Information Theory +1210.5774 Distributed, Parallel, and Cluster Computing +1210.6100 K-Theory and Homology +1210.6990 Cosmology and Nongalactic Astrophysics +1210.7070 Computer Vision and Pattern Recognition +1210.7329 Pricing of Securities +1210.7809 Instrumentation and Methods for Astrophysics +1210.7836 Rings and Algebras +1210.8438 Fluid Dynamics +1211.0056 Optimization and Control +1211.0277 Instrumentation and Methods for Astrophysics +1211.0285 Cosmology and Nongalactic Astrophysics +1211.0288 Superconductivity +1211.0292 +1211.0298 Mesoscale and Nanoscale Physics +1211.0301 Cell Behavior +1211.0302 Mesoscale and Nanoscale Physics +1211.0303 Formal Languages and Automata Theory +1211.0310 Cosmology and Nongalactic Astrophysics +1211.0314 Differential Geometry +1211.0315 Instrumentation and Methods for Astrophysics +1211.0320 Information Retrieval +1211.0327 Numerical Analysis +1211.0330 Combinatorics +1211.0331 Combinatorics +1211.0334 Analysis of PDEs +1211.0335 Atomic Physics +1211.0336 Optics +1211.0337 Functional Analysis +1211.0339 Materials Science +1211.0342 Statistical Mechanics +1211.0343 Theory +1211.0346 Numerical Analysis +1211.0350 Other Condensed Matter +1211.0351 +1211.0356 General Physics +1211.0357 Phenomenology +1211.0359 Quantum Algebra +1211.0360 Mesoscale and Nanoscale Physics +1211.0361 Information Theory +1211.0362 Solar and Stellar Astrophysics +1211.0365 Phenomenology +1211.0371 Phenomenology +1211.0374 Applications +1211.0375 Materials Science +1211.0376 Materials Science +1211.0377 Cryptography and Security +1211.0378 Materials Science +1211.0381 Digital Libraries +1211.0382 Other Condensed Matter +1211.0393 Numerical Analysis +1211.0394 Superconductivity +1211.0401 +1211.0402 +1211.0403 Geometric Topology +1211.0408 Analysis of PDEs +1211.0409 Atomic Physics +1211.0411 Lattice +1211.0421 Biological Physics +1211.0425 Complex Variables +1211.0426 +1211.0427 High Energy Astrophysical Phenomena +1211.0430 Analysis of PDEs +1211.0433 +1211.0436 +1211.0438 History and Philosophy of Physics +1211.0439 Learning +1211.0443 Pricing of Securities +1211.0447 Networking and Internet Architecture +1211.0448 History and Philosophy of Physics +1211.0449 Adaptation and Self-Organizing Systems +1211.0454 Dynamical Systems +1211.0456 Mesoscale and Nanoscale Physics +1211.0457 Statistics Theory +1211.0459 Statistics Theory +1211.0460 Instrumentation and Detectors +1211.0462 Populations and Evolution +1211.0464 +1211.0466 Probability +1211.0468 Analysis of PDEs +1211.0473 Soft Condensed Matter +1211.0475 Functional Analysis +1211.0480 Differential Geometry +1211.0483 Atomic Physics +1211.0492 Mesoscale and Nanoscale Physics +1211.0496 Experiment +1211.0498 Computation and Language +1211.0502 Phenomenology +1211.0511 Lattice +1211.0515 Combinatorics +1211.0518 Physics and Society +1211.0521 Materials Science +1211.0524 Discrete Mathematics +1211.0527 Mesoscale and Nanoscale Physics +1211.0528 Cosmology and Nongalactic Astrophysics +1211.0535 Numerical Analysis +1211.0537 Popular Physics +math/0212203 Commutative Algebra +math/0701922 Statistics Theory +0711.0191 Geometric Topology +0809.3629 +0810.4908 Probability +0904.2611 Differential Geometry +0904.2636 Differential Geometry +0904.4175 Probability +0909.4882 Strongly Correlated Electrons +0910.2483 Strongly Correlated Electrons +0910.4151 +0911.3857 Differential Geometry +0912.1205 +1001.4866 Analysis of PDEs +1002.4739 Combinatorics +1006.1217 +1009.1349 Geometric Topology +1009.3165 Numerical Analysis +1011.1295 Information Theory +1011.2078 Information Theory +1012.1213 Adaptation and Self-Organizing Systems +1101.1127 Chaotic Dynamics +1103.0897 Machine Learning +1103.1145 Analysis of PDEs +1103.5467 Cosmology and Nongalactic Astrophysics +1104.2455 Optics +1105.0985 Analysis of PDEs +1105.2440 Mesoscale and Nanoscale Physics +1105.6058 +1106.0598 Numerical Analysis +1107.1726 Strongly Correlated Electrons +1107.2679 Strongly Correlated Electrons +1107.3967 Theory +1107.3995 Information Theory +1107.5523 Information Theory +1107.5748 +1108.0383 Cosmology and Nongalactic Astrophysics +1108.0591 +1108.2200 Number Theory +1108.3713 Symplectic Geometry +1108.4260 Probability +1109.2644 Populations and Evolution +1109.4887 +1109.5648 Strongly Correlated Electrons +1110.1191 +1110.2529 Machine Learning +1110.3060 +1110.3781 Phenomenology +1110.6633 +1110.6656 Mesoscale and Nanoscale Physics +1111.0214 +1111.1343 +1111.1518 Analysis of PDEs +1111.3035 General Finance +1111.3232 +1111.5965 Differential Geometry +1111.6785 Combinatorics +1112.0496 +1112.0713 Computer Science and Game Theory +1112.1097 Theory +1112.1386 +1112.6364 Phenomenology +1201.0814 Differential Geometry +1201.2746 Optics +1201.3505 Mesoscale and Nanoscale Physics +1201.4433 Mesoscale and Nanoscale Physics +1201.5337 +1201.5612 +1202.0197 +1202.1465 Optics +1202.3207 Mesoscale and Nanoscale Physics +1203.0254 +1203.0484 Disordered Systems and Neural Networks +1203.2341 Soft Condensed Matter +1203.2858 Optics +1203.3101 Mesoscale and Nanoscale Physics +1203.3130 Atomic Physics +1203.3965 Strongly Correlated Electrons +1203.4136 +1203.4486 Mesoscale and Nanoscale Physics +1203.4776 Theory +1203.5611 Number Theory +1203.6508 Statistical Mechanics +1204.0064 Methodology +1204.1016 Phenomenology +1204.1175 Quantum Gases +1204.1278 +1204.1412 Lattice +1204.1942 Mesoscale and Nanoscale Physics +1204.2847 Computation and Language +1204.3091 Cosmology and Nongalactic Astrophysics +1204.3650 Materials Science +1204.3753 Materials Science +1204.3782 +1204.4139 +1204.4697 Superconductivity +1205.0729 Analysis of PDEs +1205.0810 Cosmology and Nongalactic Astrophysics +1205.1201 +1205.2898 +1205.3667 Algebraic Geometry +1205.4312 Superconductivity +1205.4920 Strongly Correlated Electrons +1205.4991 Phenomenology +1205.6338 Phenomenology +1206.0223 +1206.1135 Popular Physics +1206.1160 Experiment +1206.1216 Combinatorics +1206.1294 +1206.1320 +1206.1321 Fluid Dynamics +1206.1325 Cosmology and Nongalactic Astrophysics +1206.1331 Social and Information Networks +1206.1332 Strongly Correlated Electrons +1206.1337 Cryptography and Security +1206.1339 Digital Libraries +1206.1342 Differential Geometry +1206.1343 Earth and Planetary Astrophysics +1206.1349 Analysis of PDEs +1206.1350 Quantum Gases +1206.1354 Mesoscale and Nanoscale Physics +1206.1355 Networking and Internet Architecture +1206.1357 Algebraic Geometry +1206.1358 Networking and Internet Architecture +1206.1361 Quantum Gases +1206.1362 Spectral Theory +1206.1365 Algebraic Topology +1206.1368 Theory +1206.1369 Probability +1206.1370 Solar and Stellar Astrophysics +1206.1372 +1206.1379 Statistics Theory +1206.1380 Risk Management +1206.1385 Optics +1206.1387 Number Theory +1206.1390 Numerical Analysis +1206.1392 Mesoscale and Nanoscale Physics +1206.1393 Applications +1206.1398 Fluid Dynamics +1206.1400 Pricing of Securities +1206.1402 Machine Learning +1206.1404 Differential Geometry +1206.1405 Information Theory +1206.1406 Cryptography and Security +1206.1408 +1206.1409 Networking and Internet Architecture +1206.1410 +1206.1414 Artificial Intelligence +1206.1417 Theory +1206.1418 Artificial Intelligence +1206.1419 Networking and Internet Architecture +1206.1426 Networking and Internet Architecture +1206.1427 Combinatorics +1206.1429 Statistical Mechanics +1206.1430 Databases +1206.1433 Cosmology and Nongalactic Astrophysics +1206.1437 Earth and Planetary Astrophysics +1206.1438 Information Theory +1206.1443 Neural and Evolutionary Computing +1206.1444 Solar and Stellar Astrophysics +1206.1447 Other Computer Science +1206.1450 Sound +1206.1458 Artificial Intelligence +1206.1463 Optics +1206.1465 Statistics Theory +1206.1469 Robotics +1206.1471 Robotics +1206.1475 Optics +1206.1476 Phenomenology +1206.1477 Optics +1206.1479 Numerical Analysis +1206.1480 Geometric Topology +1206.1481 Instrumentation and Methods for Astrophysics +1206.1482 Cryptography and Security +1206.1483 Analysis of PDEs +1206.1487 +1206.1491 Fluid Dynamics +1206.1493 Applications +1206.1507 Phenomenology +1206.1511 +1206.1523 +1206.1527 Materials Science +1206.1531 Information Theory +1206.1534 Artificial Intelligence +1206.1537 +1206.1545 Combinatorics +1206.1552 Computer Vision and Pattern Recognition +1206.1553 Computer Science and Game Theory +1206.1557 Artificial Intelligence +1206.1558 Solar and Stellar Astrophysics +1206.1560 Probability +1206.1561 Materials Science +1206.1565 Analysis of PDEs +1206.1566 +1206.1567 Hardware Architecture +1206.1569 Quantum Gases +1206.1576 +1206.1580 Rings and Algebras +1206.1583 Analysis of PDEs +1206.1587 Networking and Internet Architecture +1206.1589 Geophysics +cs/0607062 Computation and Language +0707.2992 Mesoscale and Nanoscale Physics +0712.3626 Statistical Mechanics +0807.3203 Experiment +0811.0682 Statistical Mechanics +0812.4445 Materials Science +0904.3524 Differential Geometry +0907.0226 +0907.3623 Complex Variables +0909.2428 Theory +1001.5345 Probability +1009.3188 Algebraic Geometry +1010.3499 Algebraic Geometry +1010.4774 Algebraic Geometry +1010.6238 Lattice +1101.4863 Geometric Topology +1102.5226 Quantum Algebra +1102.5613 Quantum Algebra +1103.3257 Physics and Society +1103.3850 Representation Theory +1104.4706 +1106.0459 Phenomenology +1106.0511 Differential Geometry +1106.3752 Mesoscale and Nanoscale Physics +1106.4461 Methodology +1107.4431 Complex Variables +1108.1484 Populations and Evolution +1108.1781 Combinatorics +1108.5351 Algebraic Geometry +1109.0043 Probability +1109.3083 Algebraic Geometry +1110.5472 Quantum Algebra +1112.0986 +1112.3615 Probability +1112.5002 Probability +1112.5273 Optics +1112.6217 Phenomenology +1201.3515 Number Theory +1201.3984 Combinatorics +1201.4565 Physics and Society +1201.5224 Classical Analysis and ODEs +1201.5672 +1201.5747 Classical Analysis and ODEs +1201.6271 Information Theory +1202.0642 Mesoscale and Nanoscale Physics +1202.1088 Materials Science +1202.1164 Algebraic Geometry +1202.4573 Disordered Systems and Neural Networks +1202.6181 Instrumentation and Detectors +1202.6494 Category Theory +1203.1669 Experiment +1204.2688 +1204.3424 Combinatorics +1204.4441 Spectral Theory +1204.5820 Operator Algebras +1204.6358 +1205.0374 Mesoscale and Nanoscale Physics +1205.4631 Geometric Topology +1205.4700 High Energy Astrophysical Phenomena +1205.5747 Geometric Topology +1205.6484 Quantum Gases +1205.6825 Cosmology and Nongalactic Astrophysics +1206.0429 Group Theory +1206.0783 Disordered Systems and Neural Networks +1206.1766 Optics +1206.3356 +1206.4447 Pattern Formation and Solitons +1206.6774 Other Quantitative Biology +1206.6947 Cosmology and Nongalactic Astrophysics +1207.0859 Probability +1207.1295 +1207.2432 Solar and Stellar Astrophysics +1207.3544 Algebraic Geometry +1207.3580 Probability +1207.5238 +1207.5368 +1207.5658 Theory +1208.0393 Combinatorics +1208.1010 Phenomenology +1208.1542 Phenomenology +1208.1763 Cosmology and Nongalactic Astrophysics +1208.2290 Algebraic Topology +1208.2573 Functional Analysis +1208.2603 Other Condensed Matter +1208.5101 +1208.6021 Mesoscale and Nanoscale Physics +1208.6165 +1209.1813 +1209.1990 Solar and Stellar Astrophysics +1209.2125 Cosmology and Nongalactic Astrophysics +1209.3674 Soft Condensed Matter +1209.4193 Cosmology and Nongalactic Astrophysics +1209.5091 Combinatorics +1209.5189 Physics and Society +1209.5274 Mesoscale and Nanoscale Physics +1209.5745 Cosmology and Nongalactic Astrophysics +1210.0718 Mesoscale and Nanoscale Physics +1210.1981 +1210.3137 Strongly Correlated Electrons +1210.3303 Analysis of PDEs +1210.3336 Solar and Stellar Astrophysics +1210.3512 Information Theory +1210.3620 Fluid Dynamics +1210.4714 Classical Analysis and ODEs +1210.4982 Mesoscale and Nanoscale Physics +1210.5563 Materials Science +1210.6287 Data Structures and Algorithms +1210.6424 Representation Theory +1210.6779 Solar and Stellar Astrophysics +1210.6815 Software Engineering +1210.6912 Molecular Networks +1210.6977 +1210.6979 Neurons and Cognition +1210.6989 Neurons and Cognition +1210.7000 History and Philosophy of Physics +1210.7002 Artificial Intelligence +1210.7003 Chemical Physics +1210.7004 Combinatorics +1210.7006 Medical Physics +1210.7009 Numerical Analysis +1210.7018 Mesoscale and Nanoscale Physics +1210.7022 Chemical Physics +1210.7024 Instrumentation and Detectors +1210.7025 Classical Analysis and ODEs +1210.7026 Plasma Physics +1210.7028 Plasma Physics +1210.7030 Software Engineering +1210.7032 Software Engineering +1210.7034 Software Engineering +1210.7035 Software Engineering +1210.7036 Software Engineering +1210.7037 Mesoscale and Nanoscale Physics +1210.7038 Computer Vision and Pattern Recognition +1210.7039 Software Engineering +1210.7043 Combinatorics +1210.7044 Information Theory +1210.7047 Social and Information Networks +1210.7054 Machine Learning +1210.7056 Learning +1210.7057 Distributed, Parallel, and Cluster Computing +1210.7058 Geometric Topology +1210.7059 Earth and Planetary Astrophysics +1210.7064 Combinatorics +1210.7065 Classical Physics +1210.7069 +1210.7071 Instrumentation and Methods for Astrophysics +1210.7074 Phenomenology +1210.7076 Numerical Analysis +1210.7077 +1210.7078 Statistics Theory +1210.7082 Solar and Stellar Astrophysics +1210.7084 Numerical Analysis +1210.7085 Physics and Society +1210.7088 Solar and Stellar Astrophysics +1210.7089 Exactly Solvable and Integrable Systems +1210.7091 Other Quantitative Biology +1210.7093 Plasma Physics +1210.7102 Computer Vision and Pattern Recognition +1210.7104 Superconductivity +1210.7105 Complex Variables +1210.7109 Combinatorics +1210.7110 Differential Geometry +1210.7115 +1210.7123 Computational Geometry +1210.7125 Applications +1210.7126 Computational Geometry +1210.7127 +1210.7128 Quantum Algebra +1210.7129 Solar and Stellar Astrophysics +1210.7132 Representation Theory +1210.7138 Software Engineering +1210.7139 Optimization and Control +1210.7141 Data Analysis, Statistics and Probability +1210.7142 Geophysics +1210.7148 Quantum Algebra +1210.7153 Phenomenology +1210.7154 Artificial Intelligence +1210.7159 Astrophysics of Galaxies +1210.7162 Strongly Correlated Electrons +1210.7165 Neurons and Cognition +1210.7167 Materials Science +1210.7168 Probability +1210.7171 Computational Complexity +1210.7174 +1210.7186 Cosmology and Nongalactic Astrophysics +1210.7188 Experiment +1210.7189 Experiment +1210.7191 Atmospheric and Oceanic Physics +1210.7198 Medical Physics +1210.7200 Astrophysics of Galaxies +1210.7208 Probability +1210.7213 Materials Science +1210.7219 Mesoscale and Nanoscale Physics +1210.7220 Analysis of PDEs +1210.7225 Other Statistics +1210.7230 Trading and Market Microstructure +1210.7232 Superconductivity +cond-mat/0212462 Statistical Mechanics +cond-mat/0312157 Statistical Mechanics +cond-mat/0609116 Materials Science +cond-mat/0609117 Materials Science +cond-mat/9506038 +cond-mat/9509114 +hep-ex/0604034 Experiment +math/0509112 Functional Analysis +nucl-th/0104033 +0708.2185 Category Theory +0708.3937 Category Theory +0901.0381 Differential Geometry +0905.0595 Category Theory +0907.0139 Statistics Theory +0911.2452 Mesoscale and Nanoscale Physics +1003.0494 Mesoscale and Nanoscale Physics +1004.2726 Probability +1004.4489 Information Retrieval +1005.1636 Analysis of PDEs +1005.4752 Information Retrieval +1008.0756 Probability +1008.1023 Differential Geometry +1009.3084 Analysis of PDEs +1010.0694 Statistics Theory +1011.0477 Instrumentation and Methods for Astrophysics +1012.3339 Mesoscale and Nanoscale Physics +1012.3557 Superconductivity +1012.3577 Superconductivity +1012.3780 Analysis of PDEs +1012.4437 Quantum Gases +1012.6033 Methodology +1102.4219 Statistical Mechanics +1103.0399 Soft Condensed Matter +1103.6115 Mesoscale and Nanoscale Physics +1103.6253 Classical Physics +1104.0440 Classical Analysis and ODEs +1104.0587 Trading and Market Microstructure +1104.3182 Instrumentation and Methods for Astrophysics +1105.0477 Data Structures and Algorithms +1106.1887 Learning +1106.3040 Disordered Systems and Neural Networks +1108.0541 Phenomenology +1108.4872 Quantum Gases +1109.5278 Statistics Theory +1110.1593 Superconductivity +1110.1608 Instrumentation and Methods for Astrophysics +1110.2652 Soft Condensed Matter +1110.3164 +1110.4019 Analysis of PDEs +1110.5700 Differential Geometry +1110.6654 Information Theory +1111.1499 Mesoscale and Nanoscale Physics +1111.3171 Logic +1111.6127 Quantum Gases +1111.6237 Information Theory +1112.1683 Mesoscale and Nanoscale Physics +1112.2648 +1112.2854 Instrumentation and Detectors +1112.4009 Probability +1112.4287 +1201.3958 Quantum Gases +1201.4151 +1201.5232 Functional Analysis +1202.0763 Number Theory +1202.4844 Optics +1202.5597 Artificial Intelligence +1203.6360 Computation and Language +1204.0119 Neurons and Cognition +1204.1552 Materials Science +1204.2726 Cosmology and Nongalactic Astrophysics +1204.4005 +1204.4731 Strongly Correlated Electrons +1204.4896 Populations and Evolution +1204.5679 Theory +1204.5732 Materials Science +1204.6124 +1204.6143 Quantum Gases +1204.6402 General Mathematics +1204.6509 Machine Learning +1204.6615 Logic in Computer Science +1204.6718 Strongly Correlated Electrons +1205.0003 Digital Libraries +1205.0020 Theory +1205.0023 Statistics Theory +1205.0025 Algebraic Geometry +1205.0030 Computers and Society +1205.0037 Number Theory +1205.0038 Social and Information Networks +1205.0044 Data Structures and Algorithms +1205.0051 Strongly Correlated Electrons +1205.0054 Theory +1205.0065 Differential Geometry +1205.0068 High Energy Astrophysical Phenomena +1205.0070 Computation +1205.0073 +1205.0076 Systems and Control +1205.0085 Information Theory +1205.0087 Combinatorics +1205.0090 Number Theory +1205.0097 Number Theory +1205.0102 Combinatorics +1205.0103 Cryptography and Security +1205.0104 Software Engineering +1205.0106 Distributed, Parallel, and Cluster Computing +1205.0107 Combinatorics +1205.0110 Multiagent Systems +1205.0111 Optimization and Control +1205.0113 Strongly Correlated Electrons +1205.0124 Operating Systems +1205.0125 Discrete Mathematics +1205.0128 Discrete Mathematics +1205.0130 Discrete Mathematics +1205.0131 Discrete Mathematics +1205.0136 Algebraic Geometry +1205.0143 Group Theory +1205.0144 Data Structures and Algorithms +1205.0147 Soft Condensed Matter +1205.0148 Rings and Algebras +1205.0150 +1205.0157 Cryptography and Security +1205.0162 Information Theory +1205.0163 Classical Analysis and ODEs +1205.0164 Materials Science +1205.0168 +1205.0174 History and Overview +1205.0175 Data Structures and Algorithms +1205.0177 General Physics +1205.0179 History and Philosophy of Physics +1205.0184 Group Theory +1205.0185 Representation Theory +1205.0191 Dynamical Systems +1205.0193 Discrete Mathematics +1205.0195 Adaptation and Self-Organizing Systems +1205.0196 Theory +1205.0208 Classical Analysis and ODEs +1205.0216 Algebraic Topology +1205.0221 History and Philosophy of Physics +1205.0225 Quantitative Methods +1205.0226 Theory +1205.0228 Metric Geometry +math/0208216 Algebraic Geometry +math/0602554 Operator Algebras +0802.2671 Analysis of PDEs +0803.2484 Group Theory +0911.1923 Representation Theory +0911.5177 Algebraic Geometry +0912.5528 Combinatorics +1003.1646 Number Theory +1003.3867 Quantum Gases +1004.0923 Strongly Correlated Electrons +1004.1755 +1004.2679 Theory +1004.3790 Dynamical Systems +1004.5349 Cosmology and Nongalactic Astrophysics +1006.2047 Functional Analysis +1006.5620 Representation Theory +1009.0396 Information Theory +1009.0569 Networking and Internet Architecture +1011.1225 Information Theory +1012.0366 Optimization and Control +1012.2268 Statistical Mechanics +1012.3088 Geometric Topology +1101.0367 Theory +1103.0350 Logic +1104.1985 Complex Variables +1104.2198 Probability +1104.2682 Differential Geometry +1105.0239 Dynamical Systems +1106.1072 Rings and Algebras +1107.0252 +1107.3076 Representation Theory +1107.5884 Symplectic Geometry +1109.4706 Methodology +1110.1155 Theory +1110.4823 Metric Geometry +1110.6412 +1111.3685 Materials Science +1111.4292 Combinatorics +1111.5358 Robotics +1111.5664 Number Theory +1111.5971 Dynamical Systems +1111.6612 Algebraic Geometry +1111.7233 Theory +1112.0548 +1112.1719 +1112.2377 Numerical Analysis +1112.2431 Distributed, Parallel, and Cluster Computing +1112.2954 Computational Engineering, Finance, and Science +1112.3208 Information Theory +1112.3667 Solar and Stellar Astrophysics +1201.1788 Risk Management +1201.2555 Learning +1202.2320 Number Theory +1202.3219 K-Theory and Homology +1202.4034 Information Theory +1202.5324 Superconductivity +1203.4318 Category Theory +1203.5466 Mesoscale and Nanoscale Physics +1203.6184 Phenomenology +1204.2924 Classical Analysis and ODEs +1204.3570 +1205.0074 Category Theory +1205.0714 Geometric Topology +1205.1338 Disordered Systems and Neural Networks +1205.1693 Superconductivity +1205.1733 Distributed, Parallel, and Cluster Computing +1205.2166 +1205.2445 Statistical Mechanics +1205.3097 +1205.3891 Classical Analysis and ODEs +1205.3933 Experiment +1205.3946 Materials Science +1205.4723 Phenomenology +1206.0119 History and Overview +1206.2014 Solar and Stellar Astrophysics +1206.5588 Cosmology and Nongalactic Astrophysics +1206.6200 Materials Science +1206.6698 Mesoscale and Nanoscale Physics +1207.0056 Atomic Physics +1207.0786 Combinatorics +1207.1099 Mesoscale and Nanoscale Physics +1207.1128 Phenomenology +1207.2093 Quantum Gases +1207.3278 Earth and Planetary Astrophysics +1207.3341 Materials Science +1207.3873 +1207.6100 +1208.0681 +1208.1813 Algebraic Geometry +1208.2906 Soft Condensed Matter +1208.2932 Analysis of PDEs +1208.3192 Networking and Internet Architecture +1208.3957 Statistical Mechanics +1208.5362 Differential Geometry +1208.6046 Optics +1208.6146 General Finance +1209.0136 Robotics +1209.0254 Geometric Topology +1209.0347 Analysis of PDEs +1209.0649 +1209.0677 Strongly Correlated Electrons +1209.0757 Accelerator Physics +1209.0784 Optimization and Control +1209.0785 Digital Libraries +1209.0787 Optics +1209.0790 Applications +1209.0797 High Energy Astrophysical Phenomena +1209.0801 High Energy Astrophysical Phenomena +1209.0802 Computational Complexity +1209.0805 Fluid Dynamics +1209.0806 Number Theory +1209.0807 +1209.0811 Systems and Control +1209.0814 Systems and Control +1209.0815 Group Theory +1209.0818 +1209.0823 Cosmology and Nongalactic Astrophysics +1209.0824 Combinatorics +1209.0830 Computational Geometry +1209.0832 Computer Science and Game Theory +1209.0833 Methodology +1209.0843 Analysis of PDEs +1209.0849 +1209.0850 Operator Algebras +1209.0851 Distributed, Parallel, and Cluster Computing +1209.0852 Artificial Intelligence +1209.0853 Learning +1209.0856 Dynamical Systems +1209.0857 Differential Geometry +1209.0859 Atomic Physics +1209.0861 Experiment +1209.0866 Theory +1209.0868 Combinatorics +1209.0871 Discrete Mathematics +1209.0872 Number Theory +1209.0873 Classical Analysis and ODEs +1209.0880 Artificial Intelligence +1209.0884 Superconductivity +1209.0886 Experiment +1209.0889 Optimization and Control +1209.0895 Differential Geometry +1209.0901 Methodology +1209.0902 Soft Condensed Matter +1209.0907 Phenomenology +1209.0913 Learning +1209.0919 Soft Condensed Matter +1209.0927 +1209.0932 Spectral Theory +1209.0933 Number Theory +1209.0935 Multiagent Systems +1209.0943 Networking and Internet Architecture +1209.0947 Number Theory +1209.0948 Distributed, Parallel, and Cluster Computing +1209.0953 Materials Science +1209.0956 Probability +1209.0962 Materials Science +1209.0967 Cryptography and Security +1209.0970 Functional Analysis +1209.0973 Functional Analysis +1209.0974 Functional Analysis +1209.0976 Functional Analysis +1209.0978 Solar and Stellar Astrophysics +1209.0979 Functional Analysis +1209.0982 Analysis of PDEs +1209.0984 Functional Analysis +1209.0985 Biomolecules +1209.0988 Rings and Algebras +1209.0990 Astrophysics of Galaxies +1209.0991 Mesoscale and Nanoscale Physics +1209.0997 Artificial Intelligence +1209.0999 Graphics +1209.1011 Databases +1209.1022 Phenomenology +1209.1025 History and Philosophy of Physics +1209.1026 +1209.1038 Analysis of PDEs +1209.1040 Discrete Mathematics +1209.1041 Cosmology and Nongalactic Astrophysics +1209.1045 Data Structures and Algorithms +1209.1047 Phenomenology +1209.1048 Neural and Evolutionary Computing +1209.1050 Combinatorics +1209.1063 Materials Science +1209.1066 Complex Variables +1209.1067 Representation Theory +1209.1073 Information Theory +1209.1075 Cryptography and Security +1209.1076 Distributed, Parallel, and Cluster Computing +1209.1077 Learning +1209.1081 +1209.1088 Geometric Topology +astro-ph/0310368 +cond-mat/9806185 Mesoscale and Nanoscale Physics +math/0110220 Algebraic Geometry +0802.3279 Differential Geometry +0802.3346 General Physics +0802.3930 Classical Analysis and ODEs +0805.3559 Classical Analysis and ODEs +0810.1961 +0811.3463 Combinatorics +0811.4184 Differential Geometry +0902.1141 Superconductivity +0903.4901 Superconductivity +0905.1865 Number Theory +0906.1500 Geometric Topology +0906.2249 +0907.3552 General Physics +0907.4246 +0908.0854 +0908.1581 Materials Science +0908.4137 Analysis of PDEs +0909.2023 Symplectic Geometry +0910.0290 Materials Science +0910.5384 Algebraic Geometry +0911.0321 Probability +0911.3607 Algebraic Geometry +1001.3323 Statistical Mechanics +1001.4891 Differential Geometry +1004.1566 Mesoscale and Nanoscale Physics +1004.3880 +1005.3197 Operator Algebras +1006.2313 Probability +1006.2533 Numerical Analysis +1007.0198 Numerical Analysis +1007.1760 Combinatorics +1007.2460 Computational Geometry +1007.2594 +1007.5134 Complex Variables +1008.3655 Algebraic Geometry +1008.4351 Theory +1008.4458 Rings and Algebras +1009.2230 Networking and Internet Architecture +1009.5788 Statistical Mechanics +1010.0392 +1010.3890 Soft Condensed Matter +1010.4129 Algebraic Geometry +1011.0736 +1011.4721 Materials Science +1012.1677 Probability +1012.1989 Cosmology and Nongalactic Astrophysics +1012.2191 Representation Theory +1012.5601 Lattice +1012.5862 Networking and Internet Architecture +1101.0627 +1101.4116 Distributed, Parallel, and Cluster Computing +1101.4263 Differential Geometry +1101.4458 Information Theory +1101.4755 +1101.4809 Cosmology and Nongalactic Astrophysics +1101.5831 Differential Geometry +1102.0345 +1102.1197 Fluid Dynamics +1103.0811 Strongly Correlated Electrons +1103.3305 Mesoscale and Nanoscale Physics +1103.4624 Phenomenology +1103.4642 Differential Geometry +1103.4967 +1103.5980 Phenomenology +1104.0300 Cosmology and Nongalactic Astrophysics +1104.3781 General Physics +1104.4082 Algebraic Topology +1104.4126 +1105.0486 Classical Analysis and ODEs +1105.0961 +1105.1003 Combinatorics +1105.3693 Phenomenology +1105.4136 Mathematical Software +1105.4454 Phenomenology +1105.5830 +1105.6268 +1105.6283 Statistics Theory +1106.0274 Space Physics +1106.0321 Statistics Theory +1106.0416 General Physics +1106.1968 Symplectic Geometry +1106.2131 Theory +1106.3025 Portfolio Management +1106.3762 Algebraic Geometry +1106.4724 Classical Analysis and ODEs +1106.5340 Quantum Gases +1106.5604 Quantum Gases +1106.6123 +1107.0243 Number Theory +1107.0344 Optimization and Control +1107.1640 Information Theory +1107.2078 +1107.2281 History and Philosophy of Physics +1107.2557 Theory +1107.2809 Number Theory +1107.3288 Mesoscale and Nanoscale Physics +1107.3290 Mesoscale and Nanoscale Physics +1107.3426 General Physics +1108.0938 Cosmology and Nongalactic Astrophysics +1108.1773 Mesoscale and Nanoscale Physics +1108.2342 Optics +1108.2642 Combinatorics +1108.4116 Algebraic Geometry +1108.4344 Phenomenology +1108.4741 +1108.6197 Information Theory +1108.6296 Learning +1109.0018 High Energy Astrophysical Phenomena +1109.2094 Strongly Correlated Electrons +1109.3864 Materials Science +1110.0604 Mesoscale and Nanoscale Physics +1110.1197 Cosmology and Nongalactic Astrophysics +1110.1406 Strongly Correlated Electrons +1110.3072 Strongly Correlated Electrons +1110.3399 General Physics +1110.4286 Space Physics +1110.4690 +1110.5255 Theory +1110.5444 Quantum Gases +1110.5619 Algebraic Geometry +1111.0339 Mesoscale and Nanoscale Physics +1111.0402 Lattice +1111.0558 Mesoscale and Nanoscale Physics +1111.0657 Theory +1111.0701 Combinatorics +1111.0800 Differential Geometry +1111.1017 General Physics +1111.1312 Combinatorics +1111.1760 Phenomenology +1111.2341 Phenomenology +1111.2454 Theory +1111.2463 Differential Geometry +1111.3435 Optics +1111.3749 Strongly Correlated Electrons +1111.4847 Solar and Stellar Astrophysics +1111.6180 Phenomenology +1112.0527 Phenomenology +1112.1042 Functional Analysis +1112.1766 Theory +1112.2446 +1112.2741 Populations and Evolution +1112.5614 Rings and Algebras +1112.5744 Optimization and Control +1112.5871 Instrumentation and Methods for Astrophysics +1112.6232 History and Overview +1112.6257 Probability +1201.0831 Materials Science +1201.1072 Algebraic Geometry +1201.1308 Functional Analysis +1201.1424 Tissues and Organs +1201.1540 +1201.1655 +1201.1819 Popular Physics +1201.1989 Cosmology and Nongalactic Astrophysics +1201.2141 +1201.2553 Computational Complexity +1201.2791 Space Physics +1201.2795 Materials Science +1201.2905 Computer Vision and Pattern Recognition +1201.2938 Functional Analysis +1201.2939 General Physics +1201.2950 Functional Analysis +1201.2951 Chemical Physics +1201.2958 Rings and Algebras +1201.2969 Databases +1201.2970 Category Theory +1201.2974 Theory +1201.2976 Analysis of PDEs +1201.2980 Information Theory +1201.2982 Mesoscale and Nanoscale Physics +1201.2983 Combinatorics +1201.2984 Information Theory +1201.2986 Combinatorics +1201.2993 Analysis of PDEs +1201.2994 Astrophysics of Galaxies +1201.2995 Computer Vision and Pattern Recognition +1201.2999 Information Theory +1201.3000 Atomic Physics +1201.3001 Networking and Internet Architecture +1201.3005 Phenomenology +1201.3007 Dynamical Systems +1201.3011 Computational Geometry +1201.3013 Metric Geometry +1201.3016 Group Theory +1201.3018 Multimedia +1201.3020 Strongly Correlated Electrons +1201.3026 Functional Analysis +1201.3027 +1201.3034 Materials Science +1201.3037 Commutative Algebra +1201.3043 Materials Science +1201.3044 +1201.3046 Materials Science +1201.3048 Superconductivity +1201.3049 Materials Science +1201.3056 Information Theory +1201.3057 Combinatorics +1201.3059 Systems and Control +1201.3066 Networking and Internet Architecture +1201.3067 Commutative Algebra +1201.3069 +1201.3071 Optics +1201.3074 Spectral Theory +1201.3075 Solar and Stellar Astrophysics +1201.3077 Data Structures and Algorithms +1201.3078 Software Engineering +1201.3082 Formal Languages and Automata Theory +1201.3088 Information Theory +1201.3090 Pattern Formation and Solitons +1201.3092 Popular Physics +1201.3097 Data Analysis, Statistics and Probability +1201.3103 Phenomenology +1201.3107 Artificial Intelligence +1201.3109 Computer Vision and Pattern Recognition +1201.3112 Representation Theory +1201.3114 Cryptography and Security +1201.3116 Computer Vision and Pattern Recognition +1201.3117 Neural and Evolutionary Computing +1201.3119 Discrete Mathematics +1201.3121 Statistical Mechanics +1201.3124 Phenomenology +1201.3127 Algebraic Topology +1201.3128 Information Theory +1201.3130 Instrumentation and Methods for Astrophysics +1201.3134 Number Theory +1201.3139 Number Theory +1201.3141 Commutative Algebra +1201.3143 High Energy Astrophysical Phenomena +1201.3147 Instrumentation and Detectors +1201.3148 Optimization and Control +1201.3153 Computer Vision and Pattern Recognition +1201.3159 Atomic Physics +1201.3162 Materials Science +1201.3166 +1201.3167 Probability +1201.3168 Number Theory +1201.3169 Statistical Mechanics +1201.3174 Group Theory +1201.3176 Instrumentation and Methods for Astrophysics +1201.3178 Astrophysics of Galaxies +1201.3179 Mathematical Software +1201.3181 Computational Complexity +1201.3182 Probability +1201.3184 Computational Complexity +1201.3186 Probability +1201.3189 Popular Physics +1201.3192 Optics +1201.3197 Algebraic Geometry +1201.3201 Functional Analysis +1201.3202 Accelerator Physics +1201.3211 Classical Analysis and ODEs +1201.3212 Optimization and Control +1201.3214 Differential Geometry +1201.3215 Optimization and Control +1201.3216 Molecular Networks +1201.3218 Optimization and Control +1201.3222 Statistical Mechanics +1201.3226 Optics +1201.3227 Optimization and Control +1201.3229 Group Theory +1201.3235 Theory +1201.3240 Atomic Physics +1201.3247 Accelerator Physics +1201.3249 Neural and Evolutionary Computing +1201.3252 +1201.3255 Number Theory +1201.3256 Probability +1201.3261 Probability +1201.3263 Statistical Mechanics +1201.3276 High Energy Astrophysical Phenomena +1201.3278 Information Theory +1201.3286 Functional Analysis +1201.3288 Complex Variables +1201.3289 Optimization and Control +1201.3290 Combinatorics +1201.3291 Combinatorics +1201.3292 Physics and Society +1201.3294 Combinatorics +1201.3296 Combinatorics +1201.3297 Combinatorics +1201.3299 Combinatorics +1201.3300 Combinatorics +1201.3303 Strongly Correlated Electrons +1201.3312 Statistical Mechanics +1201.3313 General Physics +1201.3315 Information Theory +1201.3318 Data Structures and Algorithms +1201.3322 Probability +1201.3330 Materials Science +1201.3331 Plasma Physics +1201.3335 Number Theory +1201.3337 Computer Vision and Pattern Recognition +1201.3338 Data Analysis, Statistics and Probability +1201.3342 Analysis of PDEs +1201.3346 Soft Condensed Matter +1201.3347 Optics +1201.3349 Phenomenology +cs/0305035 Computational Complexity +hep-th/9404002 Theory +math-ph/0210044 +math-ph/0304014 +math-ph/0404056 +math/0405303 Algebraic Geometry +math/0506460 Probability +math/0607011 Probability +quant-ph/9806067 +0704.3129 Theory +0808.2510 +0912.3576 Phenomenology +1004.5306 Discrete Mathematics +1005.4523 Number Theory +1006.5193 Group Theory +1010.4066 +1012.5750 Mesoscale and Nanoscale Physics +1101.4133 +1101.6035 Statistical Mechanics +1103.3611 Symplectic Geometry +1104.3453 Classical Analysis and ODEs +1106.0857 Dynamical Systems +1107.2716 Portfolio Management +1109.4356 Logic in Computer Science +1109.5420 Information Theory +1110.5314 Quantum Gases +1111.0443 Mesoscale and Nanoscale Physics +1112.2320 Materials Science +1201.0385 Digital Libraries +1201.1384 Learning +1202.0964 Spectral Theory +1202.4749 Operator Algebras +1202.5934 +1203.2507 Statistics Theory +1203.2682 Physics Education +1203.3267 Cosmology and Nongalactic Astrophysics +1203.3881 High Energy Astrophysical Phenomena +1204.2522 Mesoscale and Nanoscale Physics +1204.4130 Mesoscale and Nanoscale Physics +1204.5868 +1205.0878 +1205.1155 +1205.1362 +1205.2819 Group Theory +1205.4559 Probability +1205.7073 Mesoscale and Nanoscale Physics +1206.1333 Phenomenology +1206.1544 Mesoscale and Nanoscale Physics +1206.3108 Populations and Evolution +1206.3223 +1206.5443 Solar and Stellar Astrophysics +1207.1294 Mesoscale and Nanoscale Physics +1207.2403 Mesoscale and Nanoscale Physics +1207.2478 Cosmology and Nongalactic Astrophysics +1207.3286 Geometric Topology +1207.3539 Mesoscale and Nanoscale Physics +1207.3976 Data Structures and Algorithms +1207.6373 Strongly Correlated Electrons +1207.6439 Atomic Physics +1208.0948 General Physics +1208.1369 Plasma Physics +1208.1462 Strongly Correlated Electrons +1208.3244 Phenomenology +1208.3365 Computational Physics +1208.5820 Number Theory +1208.5975 Theory +1208.5989 Statistical Mechanics +1209.0414 Category Theory +1209.1044 Theory +1209.2555 Pricing of Securities +1209.3519 Cosmology and Nongalactic Astrophysics +1209.4630 Phenomenology +1209.6138 +1209.6257 Phenomenology +1210.0076 Materials Science +1210.1727 Mesoscale and Nanoscale Physics +1210.2160 Quantum Gases +1210.3811 Pricing of Securities +1210.4294 Phenomenology +1210.6874 Theory +1210.6880 Cosmology and Nongalactic Astrophysics +1210.8289 Superconductivity +1210.8446 Theory +1211.1487 Theory +1211.2197 Social and Information Networks +1211.2214 Analysis of PDEs +1211.3148 Computers and Society +1211.5440 Mesoscale and Nanoscale Physics +1211.5596 Software Engineering +1211.7025 Dynamical Systems +1212.0190 Databases +1212.0215 Neural and Evolutionary Computing +1212.0752 Computational Complexity +1212.0833 Differential Geometry +1212.1396 Phenomenology +1212.1968 Functional Analysis +1212.2339 Experiment +1212.2413 Operator Algebras +1212.2602 Dynamical Systems +1212.2627 Geophysics +1212.2628 Geophysics +1212.2640 Cosmology and Nongalactic Astrophysics +1212.2645 Numerical Analysis +1212.2652 Methodology +1212.2653 Commutative Algebra +1212.2654 Networking and Internet Architecture +1212.2657 Artificial Intelligence +1212.2659 Pattern Formation and Solitons +1212.2660 Dynamical Systems +1212.2661 Functional Analysis +1212.2663 Chaotic Dynamics +1212.2666 History and Overview +1212.2667 +1212.2668 Information Theory +1212.2669 Cryptography and Security +1212.2671 Artificial Intelligence +1212.2672 Dynamical Systems +1212.2676 Computation and Language +1212.2681 Number Theory +1212.2682 Strongly Correlated Electrons +1212.2685 Phenomenology +1212.2686 Machine Learning +1212.2687 +1212.2690 Combinatorics +1212.2692 Computer Vision and Pattern Recognition +1212.2697 Combinatorics +1212.2701 Discrete Mathematics +1212.2707 Functional Analysis +1212.2713 Dynamical Systems +1212.2714 Probability +1212.2716 Computational Physics +1212.2718 Cosmology and Nongalactic Astrophysics +1212.2720 Cryptography and Security +1212.2722 Instrumentation and Methods for Astrophysics +1212.2723 Analysis of PDEs +1212.2724 Chaotic Dynamics +1212.2727 Strongly Correlated Electrons +1212.2728 Optics +1212.2731 Theory +1212.2732 Combinatorics +1212.2735 Theory +1212.2740 Materials Science +1212.2744 Networking and Internet Architecture +1212.2746 +1212.2749 Phenomenology +1212.2751 Strongly Correlated Electrons +1212.2757 +1212.2758 Chaotic Dynamics +1212.2759 Solar and Stellar Astrophysics +1212.2761 +1212.2762 Emerging Technologies +1212.2763 Geophysics +1212.2764 Dynamical Systems +1212.2765 Probability +1212.2766 Atmospheric and Oceanic Physics +1212.2767 Machine Learning +1212.2770 Phenomenology +1212.2771 +1212.2775 Representation Theory +1212.2778 Data Structures and Algorithms +1212.2784 Methodology +1212.2791 Artificial Intelligence +1212.2792 Phenomenology +1212.2795 Combinatorics +1212.2798 Materials Science +1212.2799 Materials Science +1212.2800 Probability +1212.2802 Geometric Topology +1212.2812 Methodology +1212.2813 +1212.2814 Lattice +1212.2817 Functional Analysis +1212.2818 Number Theory +1212.2820 Geometric Topology +1212.2821 Cellular Automata and Lattice Gases +1212.2822 Biomolecules +1212.2823 Computer Vision and Pattern Recognition +1212.2825 Computer Science and Game Theory +1212.2826 Analysis of PDEs +1212.2835 Lattice +1212.2837 Phenomenology +1212.2838 Computational Physics +1212.2840 Analysis of PDEs +1212.2841 High Energy Astrophysical Phenomena +1212.2842 Representation Theory +1212.2844 Phenomenology +1212.2845 Graphics +1212.2849 Lattice +1212.2860 Computer Vision and Pattern Recognition +1212.2863 General Topology +1212.2864 Information Theory +1212.2866 Computers and Society +1212.2868 Optics +1212.2869 General Topology +1212.2871 Lattice +1212.2874 Emerging Technologies +1212.2876 Combinatorics +1212.2879 Superconductivity +1212.2882 Statistics Theory +1212.2887 Logic +1212.2889 Complex Variables +1212.2890 Chaotic Dynamics +1212.2893 Social and Information Networks +1212.2894 Information Theory +1212.2898 +1212.2905 Disordered Systems and Neural Networks +1212.2906 Theory +1212.2908 Cryptography and Security +1212.2910 Combinatorics +1212.2912 Commutative Algebra +1212.2913 Disordered Systems and Neural Networks +1212.2917 Combinatorics +1212.2923 Symplectic Geometry +1212.2924 Geometric Topology +1212.2925 General Physics +1212.2928 Soft Condensed Matter +1212.2930 Number Theory +1212.2931 Spectral Theory +1212.2932 Phenomenology +1212.2938 Earth and Planetary Astrophysics +1212.2939 Representation Theory +1212.2944 Strongly Correlated Electrons +1212.2948 Number Theory +1212.2952 Data Structures and Algorithms +1212.2953 Combinatorics +1212.2955 Complex Variables +1212.0064 Discrete Mathematics +1212.6060 General Physics +0705.3942 +0712.3196 Mesoscale and Nanoscale Physics +0801.1897 +0801.1902 +0810.1011 Probability +0811.1033 +0903.1417 Representation Theory +0906.4243 Geometric Topology +0910.1616 Group Theory +0910.5293 Astrophysics of Galaxies +0911.5472 Number Theory +1004.1499 Soft Condensed Matter +1004.3410 Dynamical Systems +1004.4589 Analysis of PDEs +1006.1084 Probability +1008.1443 Group Theory +1009.5984 +1011.4373 Computational Physics +1011.4749 Combinatorics +1011.5953 Group Theory +1012.0117 Probability +1012.5549 Fluid Dynamics +1012.5777 Representation Theory +1102.2740 Phenomenology +1102.3707 Functional Analysis +1103.4696 Dynamical Systems +1104.2820 Mesoscale and Nanoscale Physics +1105.1063 Probability +1105.2937 Statistical Mechanics +1105.3406 Operator Algebras +1106.2966 +1107.2416 Algebraic Geometry +1107.2423 Classical Analysis and ODEs +1107.3114 Rings and Algebras +1107.3265 Classical Analysis and ODEs +1107.3269 Functional Analysis +1108.2826 Materials Science +1108.4210 Mesoscale and Nanoscale Physics +1109.2063 Solar and Stellar Astrophysics +1110.0562 Theory +1110.2755 Learning +1110.3069 Information Theory +1110.4742 Mesoscale and Nanoscale Physics +1110.5175 Analysis of PDEs +1111.0324 Methodology +1111.1126 Materials Science +1111.1877 +1111.3825 Differential Geometry +1111.4216 High Energy Astrophysical Phenomena +1111.5057 +1111.5779 Theory +1111.6134 Superconductivity +1111.6822 Information Theory +1111.7129 +1112.0342 Trading and Market Microstructure +1112.0660 Quantum Gases +1112.1549 Mesoscale and Nanoscale Physics +1112.2079 +1112.2559 General Physics +1112.4878 Functional Analysis +1112.4884 Functional Analysis +1201.0015 Theory +1201.4337 Analysis of PDEs +1201.6115 Statistics Theory +1202.1986 Theory +1202.2212 Statistics Theory +1202.2558 +1202.3104 +1202.3273 +1202.5038 Phenomenology +1203.1624 Quantum Gases +1203.2547 +1203.2773 Algebraic Geometry +1203.4006 +1203.4125 +1203.5681 Mesoscale and Nanoscale Physics +1203.6367 Quantum Gases +1203.6689 Number Theory +1204.0538 Superconductivity +1204.1415 Instrumentation and Methods for Astrophysics +1204.1540 +1204.1896 +1204.2510 Cosmology and Nongalactic Astrophysics +1204.5094 Mathematical Software +1204.5748 Theory +1204.6722 Theory +1205.0640 +1205.2284 Theory +1205.3761 Cosmology and Nongalactic Astrophysics +1205.3794 Materials Science +1205.6232 Phenomenology +1205.6239 +1205.6259 High Energy Astrophysical Phenomena +1206.0083 High Energy Astrophysical Phenomena +1206.0594 Data Structures and Algorithms +1206.0653 Superconductivity +1206.3087 Number Theory +1206.5602 Geometric Topology +1206.6900 +1206.6965 Dynamical Systems +1207.0758 Networking and Internet Architecture +1207.0877 Information Theory +1207.1501 Artificial Intelligence +1207.1534 Artificial Intelligence +1207.1837 Geometric Topology +1207.1867 Optimization and Control +1207.2031 Analysis of PDEs +1207.2032 Analysis of PDEs +1207.2116 Differential Geometry +1207.2228 Symplectic Geometry +1207.2231 Statistics Theory +1207.2233 +1207.2301 Phenomenology +1207.2461 Logic in Computer Science +1207.2462 Logic in Computer Science +1207.2463 Materials Science +1207.2465 Phenomenology +1207.2475 Probability +1207.2484 Quantitative Methods +1207.2487 Materials Science +1207.2491 Learning +1207.2493 Fluid Dynamics +1207.2495 Probability +1207.2496 Analysis of PDEs +1207.2499 +1207.2500 Analysis of PDEs +1207.2502 Strongly Correlated Electrons +1207.2503 Phenomenology +1207.2508 Dynamical Systems +1207.2511 Computational Geometry +1207.2515 Optimization and Control +1207.2518 +1207.2523 Probability +1207.2531 Logic in Computer Science +1207.2534 Logic in Computer Science +1207.2535 Optics +1207.2536 Classical Analysis and ODEs +1207.2537 Computer Vision and Pattern Recognition +1207.2540 Operator Algebras +1207.2543 Mesoscale and Nanoscale Physics +1207.2551 Chemical Physics +1207.2552 Cosmology and Nongalactic Astrophysics +1207.2556 Formal Languages and Automata Theory +1207.2561 Pattern Formation and Solitons +1207.2563 Chaotic Dynamics +1207.2564 Networking and Internet Architecture +1207.2566 Physics and Society +1207.2567 Networking and Internet Architecture +1207.2571 Information Theory +1207.2577 Networking and Internet Architecture +1207.2584 Networking and Internet Architecture +1207.2592 Artificial Intelligence +1207.2595 Theory +1207.2596 Software Engineering +1207.2597 Computer Vision and Pattern Recognition +1207.2598 Data Structures and Algorithms +1207.2600 Computer Vision and Pattern Recognition +1207.2602 Computer Vision and Pattern Recognition +1207.2604 Networking and Internet Architecture +1207.2605 Quantum Algebra +1207.2606 Software Engineering +1207.2607 Networking and Internet Architecture +1207.2609 Networking and Internet Architecture +1207.2611 Computation +1207.2617 Cryptography and Security +1207.2618 Soft Condensed Matter +1207.2620 Soft Condensed Matter +1207.2625 Soft Condensed Matter +1207.2629 K-Theory and Homology +1207.2630 Neural and Evolutionary Computing +1207.2634 Probability +1207.2639 Cryptography and Security +1207.2642 Differential Geometry +1207.2643 Analysis of PDEs +1207.2646 Combinatorics +1207.2648 Number Theory +1207.2649 Group Theory +1207.2653 Probability +1207.2655 +1207.2662 Functional Analysis +1207.2674 Applications +1207.2675 Cryptography and Security +1207.2676 Mesoscale and Nanoscale Physics +1207.2680 Lattice +1207.2681 Information Theory +1207.2687 Cryptography and Security +1207.2688 +1207.2689 Astrophysics of Galaxies +1207.2694 Discrete Mathematics +1207.2699 Cryptography and Security +1207.2700 Classical Analysis and ODEs +1207.2701 Cryptography and Security +1207.2702 Dynamical Systems +1207.2704 Distributed, Parallel, and Cluster Computing +1207.2706 Distributed, Parallel, and Cluster Computing +1207.2708 Distributed, Parallel, and Cluster Computing +1207.2714 Computation and Language +1207.2716 Mesoscale and Nanoscale Physics +1207.2718 Software Engineering +1207.2721 Complex Variables +1207.2723 Soft Condensed Matter +1207.2736 Software Engineering +1207.2738 Computers and Society +1207.2739 Hardware Architecture +1207.2741 Computers and Society +1207.2745 High Energy Astrophysical Phenomena +1207.2748 Combinatorics +1207.2749 Astrophysics of Galaxies +1207.2752 Combinatorics +1207.2754 Software Engineering +math/0702426 Dynamical Systems +nucl-ex/0209012 +1207.3389 Computer Vision and Pattern Recognition +0704.3758 Probability +0706.2713 Group Theory +0712.1934 Probability +0810.4237 Probability +0812.1249 Combinatorics +0902.3644 Number Theory +0906.2996 Theory +0907.3264 Group Theory +0908.3309 Group Theory +0908.4440 Number Theory +1005.1035 Probability +1005.5586 Combinatorics +1006.0208 Number Theory +1007.4428 Optics +1008.4662 Quantitative Methods +1009.3738 Quantum Algebra +1010.0043 Algebraic Geometry +1011.0975 Combinatorics +1011.5732 +1103.1253 Number Theory +1103.5604 Fluid Dynamics +1104.2782 Algebraic Geometry +1105.0874 Symplectic Geometry +1105.1365 Complex Variables +1107.3256 Materials Science +1107.5552 Statistics Theory +1108.1220 Phenomenology +1108.2614 Differential Geometry +1108.4679 Statistical Mechanics +1109.1618 Social and Information Networks +1109.2568 Mesoscale and Nanoscale Physics +1109.3530 Number Theory +1110.2615 Optimization and Control +1111.1247 History and Philosophy of Physics +1111.1653 Mesoscale and Nanoscale Physics +1111.2076 Strongly Correlated Electrons +1111.2830 Phenomenology +1111.3871 Strongly Correlated Electrons +1111.5787 Quantum Gases +1111.6777 Solar and Stellar Astrophysics +1112.0580 Optics +1112.1482 Optics +1112.3981 Geometric Topology +1201.5769 Probability +1201.6300 Phenomenology +1202.0495 +1202.1393 Number Theory +1202.2830 +1202.3290 +1202.6313 Number Theory +1203.2969 Analysis of PDEs +1203.6103 Probability +1203.6375 Analysis of PDEs +1203.6608 Spectral Theory +1204.0755 Phenomenology +1204.2493 Dynamical Systems +1204.4501 Numerical Analysis +1204.4887 +1205.0859 Phenomenology +1205.1093 Statistical Mechanics +1205.5744 +1206.0154 Data Structures and Algorithms +1206.3097 Theory +1206.3774 Metric Geometry +1206.6582 Phenomenology +1207.0945 Mesoscale and Nanoscale Physics +1207.2241 Solar and Stellar Astrophysics +1207.2589 Statistical Mechanics +1207.3938 Statistical Mechanics +1207.5476 +1207.5823 Superconductivity +1207.6074 Statistical Mechanics +1207.6408 Cosmology and Nongalactic Astrophysics +1207.6710 Optimization and Control +1208.0141 Superconductivity +1208.3082 Atomic Physics +1208.4307 +1208.5632 +1208.6041 Neurons and Cognition +1208.6364 Astrophysics of Galaxies +1208.6408 Software Engineering +1209.0044 +1209.0447 Experiment +1209.1679 Information Theory +1209.3362 Data Analysis, Statistics and Probability +1209.4496 Solar and Stellar Astrophysics +1210.0051 +1210.0386 Computer Vision and Pattern Recognition +1210.0393 Instrumentation and Methods for Astrophysics +1210.0403 Spectral Theory +1210.0447 Spectral Theory +1210.0762 Learning +1210.0897 +1210.0917 +1210.0918 Solar and Stellar Astrophysics +1210.0924 Differential Geometry +1210.0927 High Energy Astrophysical Phenomena +1210.0929 Differential Geometry +1210.0931 Analysis of PDEs +1210.0933 Numerical Analysis +1210.0934 Mesoscale and Nanoscale Physics +1210.0941 Materials Science +1210.0946 Medical Physics +1210.0954 Social and Information Networks +1210.0958 Rings and Algebras +1210.0961 +1210.0963 Materials Science +1210.0965 Networking and Internet Architecture +1210.0968 Computational Finance +1210.0975 Materials Science +1210.0976 Instrumentation and Methods for Astrophysics +1210.0977 Instrumentation and Methods for Astrophysics +1210.0978 Instrumentation and Methods for Astrophysics +1210.0979 Instrumentation and Methods for Astrophysics +1210.0980 Instrumentation and Methods for Astrophysics +1210.0982 Instrumentation and Methods for Astrophysics +1210.0983 Astrophysics of Galaxies +1210.0984 Instrumentation and Methods for Astrophysics +1210.0985 Instrumentation and Methods for Astrophysics +1210.0986 Instrumentation and Methods for Astrophysics +1210.0988 Instrumentation and Methods for Astrophysics +1210.0993 Materials Science +1210.0994 +1210.0995 Algebraic Topology +1210.0997 Materials Science +1210.0999 Information Retrieval +1210.1002 Combinatorics +1210.1003 Combinatorics +1210.1005 Differential Geometry +1210.1008 General Topology +1210.1013 Information Theory +1210.1014 +1210.1016 Methodology +1210.1017 Computational Physics +1210.1021 +1210.1027 Materials Science +1210.1031 Methodology +1210.1032 High Energy Astrophysical Phenomena +1210.1033 Computer Vision and Pattern Recognition +1210.1034 Cosmology and Nongalactic Astrophysics +1210.1037 Information Theory +1210.1038 Phenomenology +1210.1039 Operating Systems +1210.1040 Databases +1210.1041 High Energy Astrophysical Phenomena +1210.1046 Phenomenology +1210.1051 Representation Theory +1210.1054 +1210.1057 Algebraic Geometry +1210.1058 Statistics Theory +1210.1059 Probability +1210.1060 Quantitative Methods +1210.1063 Cosmology and Nongalactic Astrophysics +1210.1068 Dynamical Systems +1210.1069 +1210.1071 Optimization and Control +1210.1078 Combinatorics +1210.1080 Mesoscale and Nanoscale Physics +1210.1082 Materials Science +1210.1083 Representation Theory +1210.1084 Biological Physics +1210.1092 Statistics Theory +1210.1094 Analysis of PDEs +1210.1097 Logic in Computer Science +1210.1099 Differential Geometry +1210.1102 Classical Analysis and ODEs +1210.1104 Robotics +1210.1105 +1210.1108 Classical Analysis and ODEs +1210.1112 Probability +1210.1114 Solar and Stellar Astrophysics +1210.1115 +1210.1121 Machine Learning +1210.1131 High Energy Astrophysical Phenomena +1210.1134 Spectral Theory +1210.1142 Quantum Algebra +1210.1143 Quantum Algebra +1210.1145 Probability +1210.1156 Probability +1210.1157 Programming Languages +1210.1159 Astrophysics of Galaxies +1210.1161 Software Engineering +1210.1163 Theory +1210.1168 Functional Analysis +1210.1178 Computers and Society +1210.1179 Software Engineering +1210.1181 Mesoscale and Nanoscale Physics +1210.1184 Software Engineering +1210.1190 Machine Learning +1210.1204 Populations and Evolution +math/0208075 Numerical Analysis +math/0607664 Group Theory +math/0702673 Number Theory +0711.0717 Classical Analysis and ODEs +0712.3135 Functional Analysis +0801.3694 Mesoscale and Nanoscale Physics +0804.1399 Statistics Theory +0805.0867 Functional Analysis +0904.0099 +0905.1187 Optimization and Control +0905.1860 Combinatorics +0905.3375 Probability +0908.4178 +0910.4263 Operator Algebras +1001.0597 Methodology +1001.1754 +1001.2923 Mesoscale and Nanoscale Physics +1003.1690 Phenomenology +1007.0309 Analysis of PDEs +1007.0862 Probability +1007.1937 Statistical Mechanics +1008.2912 Theory +1009.4423 Theory +1009.4671 Materials Science +1009.4680 Materials Science +1009.5148 Quantum Algebra +1010.5953 Quantum Algebra +1011.1067 Probability +1011.5934 Complex Variables +1012.3862 Theory +1012.4282 +1012.5586 Operator Algebras +1101.0794 Complex Variables +1102.1634 Combinatorics +1105.0394 Quantum Algebra +1105.4511 Analysis of PDEs +1105.5343 Materials Science +1106.2203 Rings and Algebras +1106.2204 Rings and Algebras +1107.0999 Representation Theory +1107.5278 Numerical Analysis +1107.5574 Strongly Correlated Electrons +1108.1763 Number Theory +1108.2187 Information Theory +1109.3843 Data Structures and Algorithms +1109.4661 Number Theory +1110.0968 Dynamical Systems +1110.5527 Statistical Mechanics +1111.0279 Commutative Algebra +1111.1516 Analysis of PDEs +1111.6442 Materials Science +1111.7267 Adaptation and Self-Organizing Systems +1112.2515 Theory +1201.0286 +1201.2162 Analysis of PDEs +1201.3644 Materials Science +1201.6091 +1202.0302 Learning +1202.3282 Strongly Correlated Electrons +1202.3543 Analysis of PDEs +1202.5155 +1202.5255 Theory +1203.0029 Physics and Society +1203.1172 Instrumentation and Detectors +1203.1883 Phenomenology +1203.1891 Networking and Internet Architecture +1203.3184 +1203.5643 Instrumentation and Methods for Astrophysics +1204.0478 Phenomenology +1204.2142 Chemical Physics +1204.3315 Commutative Algebra +1204.5635 Information Theory +1204.5770 Cosmology and Nongalactic Astrophysics +1204.6672 Space Physics +1205.0251 +1205.1037 +1205.2158 +1205.4981 Quantitative Methods +1205.5168 High Energy Astrophysical Phenomena +1205.5241 Phenomenology +1205.5545 Cosmology and Nongalactic Astrophysics +1205.6039 Materials Science +1205.6518 Optics +1206.0395 Differential Geometry +1206.1539 Quantum Gases +1206.1614 Quantum Algebra +1206.2000 Analysis of PDEs +1206.3814 +1206.4033 High Energy Astrophysical Phenomena +1206.4529 Materials Science +1206.4720 +1206.6637 Statistical Mechanics +1206.7091 Atomic Physics +1207.1728 Quantum Gases +1207.2731 Strongly Correlated Electrons +1207.3426 Strongly Correlated Electrons +1207.3888 Superconductivity +1207.4028 Probability +1207.5361 Theory +1208.0552 Atomic Physics +1208.0659 Formal Languages and Automata Theory +1208.2706 +1208.3178 Optics +1208.3569 +1208.4309 Atomic Physics +1208.5297 +1208.5964 +1209.1948 Atomic Physics +1209.2021 +1209.2698 +1209.3030 Theory +1209.3284 Strongly Correlated Electrons +1209.3436 Number Theory +1209.4159 Combinatorics +1209.4504 Networking and Internet Architecture +1209.5785 Information Theory +1210.0079 Materials Science +1210.0328 Earth and Planetary Astrophysics +1210.1015 Group Theory +1210.1609 Analysis of PDEs +1210.1853 Analysis of PDEs +1210.3624 Phenomenology +1210.3792 Superconductivity +1210.5168 Strongly Correlated Electrons +1211.0323 Solar and Stellar Astrophysics +1211.2634 Strongly Correlated Electrons +1211.3195 General Physics +1211.5020 Superconductivity +1211.5192 Materials Science +1211.5505 Phenomenology +1211.5711 Classical Analysis and ODEs +1211.6100 Classical Analysis and ODEs +1211.6222 Analysis of PDEs +1211.6550 Earth and Planetary Astrophysics +1211.6652 Quantum Algebra +1211.7019 Instrumentation and Detectors +1212.0025 +1212.0575 Medical Physics +1212.0613 Lattice +1212.0628 +1212.0644 Phenomenology +1212.0663 Astrophysics of Galaxies +1212.0757 Statistics Theory +1212.0785 Lattice +1212.0852 Classical Physics +1212.0853 Cosmology and Nongalactic Astrophysics +1212.0865 Number Theory +1212.0874 Classical Analysis and ODEs +1212.0875 Optimization and Control +1212.0877 Information Theory +1212.0880 Phenomenology +1212.0881 Classical Analysis and ODEs +1212.0882 Classical Analysis and ODEs +1212.0883 Geophysics +1212.0887 Classical Analysis and ODEs +1212.0888 Computer Vision and Pattern Recognition +1212.0890 Lattice +1212.0891 Rings and Algebras +1212.0893 Phenomenology +1212.0895 Optimization and Control +1212.0897 Solar and Stellar Astrophysics +1212.0907 Mesoscale and Nanoscale Physics +1212.0911 Fluid Dynamics +1212.0912 Optimization and Control +1212.0915 Number Theory +1212.0916 Fluid Dynamics +1212.0919 Differential Geometry +1212.0920 Fluid Dynamics +1212.0925 Networking and Internet Architecture +1212.0934 Analysis of PDEs +1212.0938 +1212.0943 Optics +1212.0945 Machine Learning +1212.0954 Combinatorics +1212.0957 Combinatorics +1212.0960 Learning +1212.0961 Biomolecules +1212.0962 Materials Science +1212.0966 Category Theory +1212.0969 Functional Analysis +1212.0974 +1212.0982 Lattice +1212.0985 Soft Condensed Matter +1212.0991 Algebraic Geometry +1212.0992 Other Computer Science +1212.0993 Solar and Stellar Astrophysics +1212.0995 +1212.0998 Materials Science +1212.0999 Chemical Physics +1212.1000 Solar and Stellar Astrophysics +1212.1002 Social and Information Networks +1212.1004 Methodology +1212.1005 Mesoscale and Nanoscale Physics +1212.1009 Earth and Planetary Astrophysics +1212.1013 High Energy Astrophysical Phenomena +1212.1015 Soft Condensed Matter +1212.1016 General Physics +1212.1021 Optics +1212.1023 Representation Theory +1212.1027 History and Overview +1212.1035 Mesoscale and Nanoscale Physics +1212.1037 Computational Engineering, Finance, and Science +1212.1040 Theory +1212.1044 Soft Condensed Matter +1212.1046 Databases +1212.1047 Soft Condensed Matter +1212.1051 Lattice +1212.1052 Soft Condensed Matter +1212.1056 Combinatorics +1212.1058 Phenomenology +1212.1059 Classical Analysis and ODEs +1212.1060 Adaptation and Self-Organizing Systems +1212.1064 Soft Condensed Matter +1212.1069 Atmospheric and Oceanic Physics +1212.1074 General Topology +1212.1077 Statistical Mechanics +1212.1080 Other Computer Science +1212.1082 Representation Theory +1212.1084 Fluid Dynamics +1212.1091 Dynamical Systems +1212.1096 Neurons and Cognition +1212.1097 Theory +1212.1098 Information Theory +1212.1100 Learning +1212.1104 Fluid Dynamics +1212.1106 Chaotic Dynamics +1212.1107 Computational Engineering, Finance, and Science +1212.1113 Complex Variables +1212.1115 Information Theory +1212.1118 Algebraic Geometry +1212.1121 Data Structures and Algorithms +1212.1123 Algebraic Geometry +1212.1124 High Energy Astrophysical Phenomena +1212.1125 History and Overview +1212.1129 Functional Analysis +1212.1131 Learning +1212.1134 Classical Analysis and ODEs +1212.1135 Neurons and Cognition +1212.1137 Numerical Analysis +1212.1143 Artificial Intelligence +1212.1145 Phenomenology +1212.1147 Geometric Topology +1212.1148 Analysis of PDEs +1212.1152 Spectral Theory +cond-mat/0611067 Strongly Correlated Electrons +gr-qc/0608090 +math/0210442 Combinatorics +math/0210444 Combinatorics +physics/0510236 Computational Physics +0710.5150 Theory +0802.1986 Soft Condensed Matter +0811.1094 Dynamical Systems +0901.0633 Optimization and Control +0907.2299 Dynamical Systems +0908.0966 Symplectic Geometry +0912.1488 +0912.2049 Superconductivity +0912.2891 Dynamical Systems +1002.0220 Group Theory +1002.2545 +1002.2876 Functional Analysis +1004.3455 Dynamical Systems +1005.1198 Soft Condensed Matter +1005.2832 Analysis of PDEs +1005.4046 Combinatorics +1006.0792 Probability +1006.4211 Superconductivity +1007.2752 Solar and Stellar Astrophysics +1008.3723 Mesoscale and Nanoscale Physics +1009.2200 Computational Physics +1010.2370 Theory +1010.5201 Analysis of PDEs +1011.5361 +1102.3983 General Mathematics +1103.4158 Analysis of PDEs +1104.1041 Information Theory +1104.1404 Mesoscale and Nanoscale Physics +1104.5207 Soft Condensed Matter +1105.0110 Lattice +1105.1237 Disordered Systems and Neural Networks +1105.3323 Strongly Correlated Electrons +1105.5030 Strongly Correlated Electrons +1106.0157 Mesoscale and Nanoscale Physics +1106.2421 +1106.5679 +1107.1986 Mesoscale and Nanoscale Physics +1107.2499 Information Theory +1107.2995 Soft Condensed Matter +1107.3547 Geometric Topology +1107.5041 Theory +1107.5395 +1108.2004 Quantum Algebra +1108.2947 Analysis of PDEs +1109.0145 Other Condensed Matter +1109.1201 +1109.1501 Lattice +1109.1746 Physics and Society +1109.1824 Strongly Correlated Electrons +1109.2628 Statistics Theory +1109.3350 Cosmology and Nongalactic Astrophysics +1109.4290 Strongly Correlated Electrons +1109.4735 Instrumentation and Detectors +1109.5634 Materials Science +1109.5748 Phenomenology +1109.6343 Theory +1109.6482 Soft Condensed Matter +1109.6635 Quantum Gases +1110.3095 +1110.4405 Phenomenology +1110.4464 Quantum Gases +1110.4725 Optics +1110.5279 Mesoscale and Nanoscale Physics +1110.6343 +1111.0218 Soft Condensed Matter +1111.0921 Chaotic Dynamics +1111.2043 High Energy Astrophysical Phenomena +1111.3594 +1111.3975 Rings and Algebras +1111.4306 Dynamical Systems +1111.4380 +1111.5917 Earth and Planetary Astrophysics +1111.6353 Neurons and Cognition +1111.6782 Analysis of PDEs +1111.7103 Trading and Market Microstructure +1112.0523 +1112.0723 +1112.1767 Astrophysics of Galaxies +1112.2175 Statistical Mechanics +1112.3850 Solar and Stellar Astrophysics +1112.4568 Phenomenology +1112.4882 +1112.5282 Robotics +1112.6400 Algebraic Geometry +1201.0627 Exactly Solvable and Integrable Systems +1201.1389 +1201.1437 Pricing of Securities +1201.1876 Phenomenology +1201.2620 Subcellular Processes +1201.2782 Phenomenology +1201.3434 Optics +1201.3435 Other Condensed Matter +1201.3524 Statistical Mechanics +1201.3620 +1201.3621 Cosmology and Nongalactic Astrophysics +1201.3636 Cosmology and Nongalactic Astrophysics +1201.3638 Theory +1201.3641 Statistical Mechanics +1201.3645 Experiment +1201.3661 Functional Analysis +1201.3665 Astrophysics of Galaxies +1201.3674 Computer Vision and Pattern Recognition +1201.3675 +1201.3682 Mesoscale and Nanoscale Physics +1201.3688 Number Theory +1201.3694 Algebraic Geometry +1201.3697 Information Theory +1201.3698 Information Theory +1201.3701 Number Theory +1201.3704 Optimization and Control +1201.3710 Phenomenology +1201.3711 Analysis of PDEs +1201.3712 +1201.3714 Differential Geometry +1201.3716 Differential Geometry +1201.3720 Computer Vision and Pattern Recognition +1201.3722 Data Structures and Algorithms +1201.3723 Networking and Internet Architecture +1201.3727 Discrete Mathematics +1201.3735 Analysis of PDEs +1201.3736 Analysis of PDEs +1201.3743 Classical Physics +1201.3745 Social and Information Networks +1201.3763 +1201.3767 Computation +1201.3768 Dynamical Systems +1201.3773 Algebraic Geometry +1201.3775 Numerical Analysis +1201.3776 Classical Analysis and ODEs +1201.3782 Networking and Internet Architecture +1201.3783 Social and Information Networks +1201.3787 +1201.3788 Quantum Gases +1201.3789 Category Theory +1201.3793 Combinatorics +1201.3795 Probability +1201.3799 +1201.3802 Other Computer Science +1201.3803 Computer Vision and Pattern Recognition +1201.3808 Geometric Topology +1201.3809 Analysis of PDEs +1201.3812 Astrophysics of Galaxies +1201.3814 Group Theory +1201.3818 Combinatorics +1201.3819 +1201.3821 Computer Vision and Pattern Recognition +1201.3828 Probability +1201.3829 Representation Theory +1201.3831 Optics +1201.3835 Social and Information Networks +1201.3836 Instrumentation and Detectors +1201.3840 +1201.3841 Strongly Correlated Electrons +1201.3843 +1201.3844 High Energy Astrophysical Phenomena +1201.3845 Classical Analysis and ODEs +1201.3847 Number Theory +1201.3849 Experiment +1201.3851 Artificial Intelligence +1201.3852 Materials Science +1201.3853 Materials Science +1201.3855 Classical Analysis and ODEs +1201.3859 Mesoscale and Nanoscale Physics +1201.3864 Complex Variables +1201.3865 Optics +1201.3868 Artificial Intelligence +1201.3880 Multiagent Systems +1201.3881 Human-Computer Interaction +1201.3882 Superconductivity +1201.3883 Human-Computer Interaction +1201.3884 Populations and Evolution +1201.3886 Combinatorics +1201.3887 Functional Analysis +1201.3888 Statistical Mechanics +1201.3889 Cosmology and Nongalactic Astrophysics +1201.3893 Plasma Physics +1201.3894 High Energy Astrophysical Phenomena +1201.3896 General Physics +1201.3900 Digital Libraries +1201.3907 Programming Languages +1201.3908 Mesoscale and Nanoscale Physics +1201.3910 Mesoscale and Nanoscale Physics +1201.3912 Cosmology and Nongalactic Astrophysics +cs/0001013 Computational Complexity +hep-th/0202138 Theory +hep-th/0301145 Theory +math/0005107 Complex Variables +math/0110263 History and Overview +math/0110309 History and Overview +math/0203152 Combinatorics +math/0211150 Algebraic Geometry +math/0504141 Algebraic Geometry +math/0511361 Number Theory +nlin/0511030 Exactly Solvable and Integrable Systems +quant-ph/9908080 +0706.3121 Combinatorics +0709.4131 Mesoscale and Nanoscale Physics +0803.2320 Dynamical Systems +0809.5146 Algebraic Geometry +0906.4329 Methodology +0912.0592 Mesoscale and Nanoscale Physics +1001.0419 Dynamical Systems +1003.5276 Probability +1003.6085 Probability +1004.1018 K-Theory and Homology +1004.2852 Probability +1009.3643 Mesoscale and Nanoscale Physics +1009.3940 Earth and Planetary Astrophysics +1009.5344 Combinatorics +1009.5867 Mesoscale and Nanoscale Physics +1010.0936 Strongly Correlated Electrons +1011.4696 Analysis of PDEs +1012.5462 Mesoscale and Nanoscale Physics +1101.4211 Networking and Internet Architecture +1102.0364 Optics +1102.4491 Mesoscale and Nanoscale Physics +1103.3238 Phenomenology +1104.1393 Statistical Mechanics +1104.2126 Probability +1104.4313 Representation Theory +1104.5489 Representation Theory +1106.1906 Probability +1106.3327 Cosmology and Nongalactic Astrophysics +1107.1043 Mesoscale and Nanoscale Physics +1107.4830 Numerical Analysis +1108.2017 Quantum Gases +1108.4239 Strongly Correlated Electrons +1108.5399 Molecular Networks +1109.0350 Differential Geometry +1109.1637 Probability +1109.4686 Cosmology and Nongalactic Astrophysics +1109.5155 Cosmology and Nongalactic Astrophysics +1110.4984 Probability +1110.5458 Superconductivity +1110.5819 Mesoscale and Nanoscale Physics +1111.2056 Mesoscale and Nanoscale Physics +1111.4775 +1111.5591 Phenomenology +1111.6186 Astrophysics of Galaxies +1111.6326 +1111.7097 Mesoscale and Nanoscale Physics +1112.1465 Group Theory +1112.3296 Soft Condensed Matter +1201.0850 Cosmology and Nongalactic Astrophysics +1201.1634 Information Theory +1201.1636 +1201.1706 Superconductivity +1201.2730 Strongly Correlated Electrons +1201.3259 Soft Condensed Matter +1202.0459 Statistical Mechanics +1202.2997 +1202.3007 Strongly Correlated Electrons +1202.3906 Number Theory +1202.5624 Theory +1203.2759 Superconductivity +1203.3931 Mesoscale and Nanoscale Physics +1203.4722 Analysis of PDEs +1203.4913 Networking and Internet Architecture +1203.5536 Materials Science +1203.5791 Astrophysics of Galaxies +1203.6267 +1204.0017 Strongly Correlated Electrons +1204.0589 +1204.0969 Disordered Systems and Neural Networks +1204.1812 Cosmology and Nongalactic Astrophysics +1204.2193 General Mathematics +1204.2372 +1204.3071 Dynamical Systems +1204.3391 Information Theory +1204.3783 Strongly Correlated Electrons +1204.5285 Fluid Dynamics +1204.5383 Optimization and Control +1204.5654 Functional Analysis +1204.6007 Phenomenology +1205.4662 Logic +1205.5115 Quantum Gases +1205.5857 Quantitative Methods +1205.6508 Exactly Solvable and Integrable Systems +1206.0292 Materials Science +1206.0339 Strongly Correlated Electrons +1206.0803 Combinatorics +1206.2292 Information Theory +1206.2369 Physics and Society +1206.2614 Astrophysics of Galaxies +1206.2624 Analysis of PDEs +1206.2637 General Physics +1206.2638 Statistical Mechanics +1206.2648 Theory +1206.2651 Experiment +1206.2661 Cosmology and Nongalactic Astrophysics +1206.2667 Theory +1206.2671 Mesoscale and Nanoscale Physics +1206.2673 Analysis of PDEs +1206.2674 Mesoscale and Nanoscale Physics +1206.2676 Symplectic Geometry +1206.2678 Differential Geometry +1206.2681 Classical Analysis and ODEs +1206.2682 Logic +1206.2683 Applications +1206.2690 Classical Analysis and ODEs +1206.2691 Learning +1206.2692 Group Theory +1206.2695 +1206.2696 Methodology +1206.2697 Biological Physics +1206.2699 Other Condensed Matter +1206.2700 Statistics Theory +1206.2701 +1206.2709 Analysis of PDEs +1206.2712 Logic +1206.2714 Logic +1206.2715 Methodology +1206.2716 Methodology +1206.2721 Category Theory +1206.2725 +1206.2730 Computational Physics +1206.2733 Physics and Society +1206.2734 Theory +1206.2736 +1206.2742 Digital Libraries +1206.2746 Mesoscale and Nanoscale Physics +1206.2749 Biological Physics +1206.2756 Statistical Mechanics +1206.2759 Solar and Stellar Astrophysics +1206.2760 Chemical Physics +1206.2762 Astrophysics of Galaxies +1206.2764 Algebraic Geometry +1206.2766 Differential Geometry +1206.2778 General Finance +1206.2780 Dynamical Systems +1206.2782 Accelerator Physics +1206.2785 Differential Geometry +1206.2788 Chemical Physics +1206.2789 Other Condensed Matter +1206.2791 General Mathematics +1206.2800 Analysis of PDEs +1206.2803 Differential Geometry +1206.2804 Algebraic Geometry +1206.2805 Materials Science +1206.2806 Operator Algebras +1206.2807 Computer Vision and Pattern Recognition +1206.2811 Algebraic Geometry +1206.2812 Numerical Analysis +1206.2816 +1206.2819 High Energy Astrophysical Phenomena +1206.2820 General Topology +1206.2823 Materials Science +1206.2831 Soft Condensed Matter +1206.2835 Soft Condensed Matter +1206.2838 Cosmology and Nongalactic Astrophysics +1206.2846 Quantum Algebra +1206.2854 Mesoscale and Nanoscale Physics +1206.2859 Analysis of PDEs +1206.2866 Physics and Society +1206.2867 Earth and Planetary Astrophysics +1206.2870 Phenomenology +1206.2874 Materials Science +1206.2875 Mesoscale and Nanoscale Physics +1206.2878 Computer Science and Game Theory +1206.2880 Numerical Analysis +1206.2883 Materials Science +1206.2888 General Physics +1206.2892 Phenomenology +1206.2893 Computational Complexity +1206.2894 Soft Condensed Matter +1206.2906 Quantum Gases +1206.2909 Analysis of PDEs +1206.2911 Numerical Analysis +1206.2914 Cryptography and Security +cond-mat/0111449 Statistical Mechanics +cond-mat/0411620 Mesoscale and Nanoscale Physics +gr-qc/0404029 +math/0305046 Number Theory +physics/0609114 Physics and Society +0711.3503 Populations and Evolution +0803.4159 +0809.3070 Quantitative Methods +0812.2597 Disordered Systems and Neural Networks +0902.3946 Statistical Mechanics +0907.0176 +0909.2492 +0911.3534 Probability +0912.4086 Differential Geometry +1001.0596 General Topology +1003.5908 Mesoscale and Nanoscale Physics +1006.0058 Analysis of PDEs +1007.0136 Spectral Theory +1007.1986 Information Theory +1008.1076 Instrumentation and Methods for Astrophysics +1008.2154 General Topology +1009.5111 +1011.0284 Combinatorics +1011.2381 +1012.0361 +1012.2513 Popular Physics +1012.3729 Geometric Topology +1012.5165 Populations and Evolution +1012.5651 Statistical Mechanics +1101.0474 Phenomenology +1101.1302 Superconductivity +1102.5151 Group Theory +1103.2615 +1103.6285 Strongly Correlated Electrons +1104.3381 +1104.3882 Number Theory +1104.4299 +1104.4926 Other Condensed Matter +1105.2031 Operator Algebras +1105.2555 +1105.2716 Strongly Correlated Electrons +1105.2895 Rings and Algebras +1105.4680 Populations and Evolution +1105.5526 Superconductivity +1105.6074 Operator Algebras +1105.6267 Metric Geometry +1106.1428 Theory +1106.1460 Theory +1106.1933 Computer Science and Game Theory +1106.2035 Theory +1106.3506 Populations and Evolution +1106.3725 Databases +1106.4277 Analysis of PDEs +1106.4938 Strongly Correlated Electrons +1107.0069 Superconductivity +1107.0475 Combinatorics +1107.1574 Phenomenology +1107.3472 Combinatorics +1107.5260 Differential Geometry +1107.6040 Theory +1108.0527 Phenomenology +1108.0533 Phenomenology +1108.2814 Algebraic Geometry +1108.2871 Combinatorics +1108.2873 Statistical Mechanics +1108.2926 Phenomenology +1108.3054 Number Theory +1108.3521 Materials Science +1108.4379 Representation Theory +1109.0052 +1109.0619 Mesoscale and Nanoscale Physics +1109.2718 Phenomenology +1109.3851 Number Theory +1109.4364 Strongly Correlated Electrons +1109.4599 Information Theory +1110.0227 Superconductivity +1110.0347 Physics and Society +1110.1327 +1110.1687 Networking and Internet Architecture +1110.2852 Algebraic Geometry +1110.3170 Superconductivity +1110.3660 Phenomenology +1110.3663 Phenomenology +1110.3834 Superconductivity +1110.4249 +1110.5469 Differential Geometry +1110.5857 Superconductivity +1110.6314 Statistical Mechanics +1110.6372 Computer Science and Game Theory +1111.0723 Populations and Evolution +1111.1896 Social and Information Networks +1111.2849 +1111.6255 Theory +1111.6750 Operator Algebras +1112.0189 Statistical Mechanics +1112.0884 +1112.1150 Biological Physics +1112.1577 Experiment +1112.1636 Superconductivity +1112.2353 Commutative Algebra +1112.2438 High Energy Astrophysical Phenomena +1112.3377 Atomic Physics +1112.3900 Populations and Evolution +1112.4520 Mesoscale and Nanoscale Physics +1112.6414 Physics and Society +1201.0347 Chaotic Dynamics +1201.1620 Chaotic Dynamics +1201.2403 +1201.2924 Theory +1201.3100 Strongly Correlated Electrons +1201.3260 Strongly Correlated Electrons +1201.3637 Superconductivity +1201.3996 Phenomenology +1201.5030 Data Structures and Algorithms +1201.6349 +1201.6523 Strongly Correlated Electrons +1202.0225 Probability +1202.0552 Astrophysics of Galaxies +1202.1244 Dynamical Systems +1202.1753 Mesoscale and Nanoscale Physics +1202.2390 Analysis of PDEs +1202.2391 Analysis of PDEs +1202.3118 Strongly Correlated Electrons +1202.3454 Materials Science +1202.3681 Differential Geometry +1202.4139 Phenomenology +1202.4251 +1202.4521 +1202.6249 Strongly Correlated Electrons +1203.0027 Astrophysics of Galaxies +1203.1798 Mesoscale and Nanoscale Physics +1203.2297 Information Theory +1203.2313 Populations and Evolution +1203.4130 Analysis of PDEs +1203.4425 Operator Algebras +1203.4579 Optimization and Control +1203.4832 Solar and Stellar Astrophysics +1203.5332 Chemical Physics +1203.5692 Applications +1203.6114 Analysis of PDEs +1203.6481 Computational Geometry +1203.6591 Mesoscale and Nanoscale Physics +1204.0356 Materials Science +1204.1202 Metric Geometry +1204.1902 Earth and Planetary Astrophysics +1204.1957 Data Structures and Algorithms +1204.2150 Information Theory +1204.2443 Materials Science +1204.2630 Probability +1204.2638 Computational Finance +1204.2971 Mesoscale and Nanoscale Physics +1204.3108 General Topology +1204.3407 Metric Geometry +1204.3559 Cosmology and Nongalactic Astrophysics +1204.4159 Data Structures and Algorithms +1204.4389 Phenomenology +1204.4411 Combinatorics +1204.4443 Formal Languages and Automata Theory +1204.4576 Rings and Algebras +1204.4625 Analysis of PDEs +1204.4668 +1204.4690 Superconductivity +1204.4692 Group Theory +1204.4729 Mesoscale and Nanoscale Physics +1204.4736 Logic in Computer Science +1204.4738 Number Theory +1204.4746 Representation Theory +1204.4747 Algebraic Geometry +1204.4759 Mesoscale and Nanoscale Physics +1204.4762 Quantitative Methods +1204.4763 Methodology +1204.4768 Statistical Mechanics +1204.4770 Functional Analysis +1204.4776 Combinatorics +1204.4777 Strongly Correlated Electrons +1204.4781 Materials Science +1204.4783 Networking and Internet Architecture +1204.4784 Soft Condensed Matter +1204.4786 +1204.4787 Rings and Algebras +1204.4790 Numerical Analysis +1204.4792 Mesoscale and Nanoscale Physics +1204.4794 Differential Geometry +1204.4801 Applications +1204.4804 Logic in Computer Science +1204.4805 Artificial Intelligence +1204.4807 Atmospheric and Oceanic Physics +1204.4808 Algebraic Topology +1204.4809 Computers and Society +1204.4811 Phenomenology +1204.4826 Algebraic Geometry +1204.4827 Discrete Mathematics +1204.4828 Quantum Algebra +1204.4829 Data Structures and Algorithms +1204.4835 Data Structures and Algorithms +1204.4837 Logic +1204.4847 Networking and Internet Architecture +1204.4854 Probability +1204.4860 Numerical Analysis +1204.4862 +1204.4864 Information Theory +1204.4867 Computer Vision and Pattern Recognition +1204.4869 Mesoscale and Nanoscale Physics +1204.4872 +1204.4874 Systems and Control +1204.4877 Probability +1204.4883 Complex Variables +1204.4888 +1204.4889 General Physics +1204.4891 Mesoscale and Nanoscale Physics +1204.4892 Geometric Topology +1204.4893 Mesoscale and Nanoscale Physics +1204.4894 Strongly Correlated Electrons +1204.4895 Classical Physics +1204.4904 Functional Analysis +1204.4905 Information Theory +1204.4909 Software Engineering +1204.4925 Operator Algebras +1204.4926 +1204.4930 Statistical Mechanics +1204.4938 Number Theory +1204.4942 Operator Algebras +1204.4949 Optics +1204.4951 Networking and Internet Architecture +1204.4953 Combinatorics +1204.4956 +1204.4959 Analysis of PDEs +1204.4960 +1204.4962 Analysis of PDEs +1204.4966 Analysis of PDEs +1204.4969 Probability +1204.4972 Atomic Physics +1204.4982 Formal Languages and Automata Theory +1204.4988 Discrete Mathematics +1204.4989 Artificial Intelligence +1204.4990 Learning +1204.4991 Artificial Intelligence +1204.4992 Algebraic Geometry +1204.4995 Statistics Theory +1204.4996 Metric Geometry +1204.4997 Data Structures and Algorithms +1204.5003 Optics +1204.5010 Differential Geometry +1204.5013 Strongly Correlated Electrons +1204.5016 Accelerator Physics +1204.5023 Data Structures and Algorithms +1204.5024 Fluid Dynamics +1204.5030 Phenomenology +1204.5037 Solar and Stellar Astrophysics +1204.5056 Networking and Internet Architecture +1204.5060 +1204.5061 Numerical Analysis +1204.5062 Functional Analysis +1204.5071 +1204.5074 +1204.5075 Logic +1204.5083 Data Structures and Algorithms +1204.5086 Digital Libraries +1204.5089 Mesoscale and Nanoscale Physics +1204.5092 Fluid Dynamics +1204.5093 Logic in Computer Science +1204.5099 Phenomenology +1204.5104 Instrumentation and Methods for Astrophysics +1204.5108 Optics +1204.5109 Numerical Analysis +1204.5113 Data Structures and Algorithms +1204.5115 Probability +1204.5116 Spectral Theory +1204.5119 Solar and Stellar Astrophysics +1204.5122 +1204.5126 General Physics +1204.5127 +1204.5134 Functional Analysis +1204.5136 Information Theory +1204.5139 General Physics +1204.5140 Chaotic Dynamics +1204.5141 History and Overview +1204.5142 Probability +1204.5145 Number Theory +1204.5151 Instrumentation and Methods for Astrophysics +1204.5153 Instrumentation and Detectors +1204.5155 Rings and Algebras +1204.5156 Logic in Computer Science +1204.5157 Classical Analysis and ODEs +1204.5158 Dynamical Systems +1204.5159 Logic in Computer Science +1204.5160 Combinatorics +1204.5164 Combinatorics +1204.5166 Combinatorics +1204.5167 Geometric Topology +hep-th/0605051 Theory +math/0607436 Dynamical Systems +math/0608635 Geometric Topology +math/0609096 Group Theory +0704.0273 +0711.3199 Physics and Society +0804.4772 +0807.2524 Other Condensed Matter +0812.2940 Optics +0905.1118 Group Theory +0905.1190 Algebraic Geometry +0905.1195 Algebraic Geometry +0905.1200 Combinatorics +0908.0989 +0908.3064 Optics +0909.5339 +0911.0037 Materials Science +0911.3861 Logic +0912.2149 +0912.3048 Analysis of PDEs +1001.4292 Differential Geometry +1003.5157 Algebraic Geometry +1008.4087 Number Theory +1009.3595 Algebraic Geometry +1009.4488 Commutative Algebra +1009.5659 Number Theory +1010.3546 Algebraic Geometry +1011.2450 Combinatorics +1011.4351 Probability +1012.2170 Representation Theory +1012.4955 Mesoscale and Nanoscale Physics +1012.5718 +1101.0618 Theory +1101.2315 Probability +1101.3580 Number Theory +1102.4807 Machine Learning +1103.4779 Analysis of PDEs +1105.1129 Mesoscale and Nanoscale Physics +1105.1585 Theory +1106.3335 Cosmology and Nongalactic Astrophysics +1106.5906 Physics and Society +1106.5992 Networking and Internet Architecture +1106.6354 Phenomenology +1107.1910 Dynamical Systems +1107.4681 Representation Theory +1107.5636 General Physics +1107.5738 Theory +1108.1514 High Energy Astrophysical Phenomena +1108.3185 +1108.5886 +1109.0221 +1110.5029 Dynamical Systems +1111.2470 Computer Science and Game Theory +1111.3300 Optics +1111.5406 Strongly Correlated Electrons +1111.5479 Machine Learning +1111.6787 Representation Theory +1112.1496 Computer Vision and Pattern Recognition +1112.1939 Phenomenology +1112.5332 Chemical Physics +1112.6220 Systems and Control +1201.0020 Number Theory +1201.0108 Functional Analysis +1201.1563 Chemical Physics +1201.5765 Plasma Physics +1201.5821 Computational Complexity +1202.0011 Phenomenology +1202.1921 High Energy Astrophysical Phenomena +1202.3939 Group Theory +1202.5541 +1203.1375 Superconductivity +1203.3753 +1203.4333 Biological Physics +1203.4564 Statistical Mechanics +1203.5294 Materials Science +1203.5684 +1203.6245 Mesoscale and Nanoscale Physics +1204.0667 Probability +1204.1062 Theory +1204.1289 +1204.2612 Dynamical Systems +1204.2797 Phenomenology +1204.4023 Chemical Physics +1204.4181 Solar and Stellar Astrophysics +1204.4582 Strongly Correlated Electrons +1205.0132 Mesoscale and Nanoscale Physics +1205.1146 Strongly Correlated Electrons +1205.1253 +1205.3392 Phenomenology +1205.3427 Superconductivity +1205.5013 Phenomenology +1205.5702 Statistical Mechanics +1205.6104 +1205.6186 Information Theory +1205.6545 Lattice +1205.6653 Methodology +1205.6984 Mesoscale and Nanoscale Physics +1206.0660 +1206.1961 Data Analysis, Statistics and Probability +1206.2454 Phenomenology +1206.5346 +1206.5599 Materials Science +1206.6348 Chaotic Dynamics +1207.1325 Superconductivity +1207.2482 Instrumentation and Methods for Astrophysics +1207.3101 Earth and Planetary Astrophysics +1207.6205 Pricing of Securities +1207.6332 Statistical Mechanics +1207.7160 Optimization and Control +1208.0316 Optimization and Control +1208.0454 History and Philosophy of Physics +1208.0816 Combinatorics +1208.1090 Superconductivity +1208.1296 Geophysics +1208.1331 Optimization and Control +1208.1420 Combinatorics +1208.1429 Other Computer Science +1208.1439 Combinatorics +1208.1468 Experiment +1208.1503 +1208.1507 Phenomenology +1208.1516 Atomic Physics +1208.1521 Phenomenology +1208.1522 Atomic Physics +1208.1526 Geometric Topology +1208.1529 Solar and Stellar Astrophysics +1208.1535 Materials Science +1208.1541 Exactly Solvable and Integrable Systems +1208.1543 +1208.1544 Learning +1208.1546 +1208.1548 +1208.1549 +1208.1550 +1208.1554 +1208.1555 +1208.1556 Strongly Correlated Electrons +1208.1557 +1208.1558 Probability +1208.1560 Populations and Evolution +1208.1564 Operator Algebras +1208.1565 Data Structures and Algorithms +1208.1567 Superconductivity +1208.1569 Other Computer Science +1208.1570 +1208.1573 Plasma Physics +1208.1574 Networking and Internet Architecture +1208.1591 Logic in Computer Science +1208.1594 Logic in Computer Science +1208.1595 Logic in Computer Science +1208.1597 Logic in Computer Science +1208.1599 K-Theory and Homology +1208.1605 Instrumentation and Detectors +1208.1607 Spectral Theory +1208.1609 Logic in Computer Science +1208.1610 Metric Geometry +1208.1611 Probability +1208.1613 Logic in Computer Science +1208.1615 +1208.1625 High Energy Astrophysical Phenomena +1208.1626 +1208.1633 Superconductivity +1208.1639 Computer Science and Game Theory +1208.1641 Classical Analysis and ODEs +1208.1642 Differential Geometry +1208.1645 Theory +1208.1652 Neurons and Cognition +1208.1654 Chaotic Dynamics +1208.1657 Analysis of PDEs +1208.1665 Probability +1208.1667 Solar and Stellar Astrophysics +1208.1670 Computer Vision and Pattern Recognition +1208.1672 Computer Vision and Pattern Recognition +1208.1676 Computer Science and Game Theory +1208.1677 Superconductivity +1208.1685 Numerical Analysis +1208.1690 Differential Geometry +1208.1691 Chaotic Dynamics +1208.1695 Commutative Algebra +1208.1701 Mesoscale and Nanoscale Physics +1208.1712 Cryptography and Security +1208.1715 Materials Science +1208.1717 Methodology +1208.1722 Optics +1208.1723 Distributed, Parallel, and Cluster Computing +1208.1744 Experiment +1208.1745 +1208.1750 Software Engineering +1208.1753 Geophysics +cond-mat/0411005 Mesoscale and Nanoscale Physics +math/0406150 Geometric Topology +math/0406269 Geometric Topology +math/0407130 Geometric Topology +math/0412262 Number Theory +math/0505185 Geometric Topology +math/0605529 Geometric Topology +math/0607721 Differential Geometry +0707.1978 Quantum Algebra +0708.3882 Superconductivity +0708.3883 Superconductivity +0710.0831 Statistical Mechanics +0710.4385 Functional Analysis +0801.2629 Strongly Correlated Electrons +0802.0351 Information Theory +0804.4204 Information Theory +0810.2432 +0811.4223 Superconductivity +0812.3166 Differential Geometry +0903.4374 Representation Theory +0903.5185 Algebraic Topology +0904.0035 Soft Condensed Matter +0904.1266 Algebraic Geometry +0904.3214 Superconductivity +0904.4070 Operator Algebras +0905.1231 Algebraic Geometry +0906.3502 Materials Science +0909.4071 Probability +0910.2135 Differential Geometry +0910.3897 +0911.4377 Quantum Algebra +0912.0043 Algebraic Geometry +0912.0991 Superconductivity +1001.1790 Cosmology and Nongalactic Astrophysics +1001.4415 Theory +1003.3703 +1004.0746 Algebraic Topology +1004.2103 Functional Analysis +1004.2474 Cosmology and Nongalactic Astrophysics +1004.3623 +1004.3889 Differential Geometry +1006.3119 Geometric Topology +1007.0419 Combinatorics +1007.1994 Cosmology and Nongalactic Astrophysics +1007.2698 Strongly Correlated Electrons +1008.0283 +1008.2080 Superconductivity +1009.0285 Spectral Theory +1009.0291 Materials Science +1009.3172 Statistical Mechanics +1009.4134 Combinatorics +1010.4666 +1011.2256 +1011.2410 +1011.2969 Quantitative Methods +1012.3851 Statistics Theory +1012.5939 General Physics +1101.0442 Superconductivity +1101.0900 +1101.5752 Probability +1102.1240 Algebraic Geometry +1102.2287 Superconductivity +1102.2610 Other Condensed Matter +1102.3493 Information Theory +1102.4045 Quantum Gases +1102.4595 Group Theory +1103.4649 Populations and Evolution +1103.5811 Differential Geometry +1104.0330 Analysis of PDEs +1104.0906 Information Theory +1104.1521 Quantum Gases +1104.1624 Superconductivity +1104.1745 Information Theory +1104.4916 Theory +1105.2105 Strongly Correlated Electrons +1105.2203 General Topology +1105.2394 Mesoscale and Nanoscale Physics +1105.4042 Machine Learning +1105.4439 Theory +1106.3027 +1106.3144 Superconductivity +1106.3673 Differential Geometry +1106.3873 Phenomenology +1106.4850 +1106.5110 Number Theory +1107.3109 Plasma Physics +1107.3282 General Physics +1107.3810 Mesoscale and Nanoscale Physics +1107.4792 Quantum Gases +1107.4801 Solar and Stellar Astrophysics +1107.5470 General Physics +1108.3044 Symplectic Geometry +1108.5047 Quantum Algebra +1108.5833 +1108.6052 +1109.1435 +1109.1456 Algebraic Geometry +1109.2589 Cosmology and Nongalactic Astrophysics +1109.2842 Phenomenology +1109.3333 Mesoscale and Nanoscale Physics +1110.0129 Networking and Internet Architecture +1110.0853 High Energy Astrophysical Phenomena +1110.2146 Phenomenology +1110.2185 Strongly Correlated Electrons +1110.2326 Superconductivity +1110.3200 Logic +1110.3998 Theory +1110.4053 General Physics +1110.4876 Earth and Planetary Astrophysics +1110.5327 Theory +1110.5775 +1110.5995 Experiment +1110.6514 Strongly Correlated Electrons +1110.6756 +1111.0435 Fluid Dynamics +1111.2238 +1111.2406 Phenomenology +1111.3811 Analysis of PDEs +1111.4340 Materials Science +1111.4355 Materials Science +1111.4884 General Physics +1111.6512 Fluid Dynamics +1111.6841 Quantum Gases +1112.0296 Information Theory +1112.0520 Data Structures and Algorithms +1112.0828 Differential Geometry +1112.2111 Superconductivity +1112.2357 Combinatorics +1112.2575 +1112.3502 Theory +1112.4467 Analysis of PDEs +1112.4629 Phenomenology +1201.0193 Phenomenology +1201.0303 Representation Theory +1201.1111 +1201.1224 Combinatorics +1201.1430 Superconductivity +1201.1805 Representation Theory +1201.2216 Number Theory +1201.2643 Phenomenology +1201.3051 Theory +1201.3332 Emerging Technologies +1201.3574 Quantitative Methods +1201.3598 Cosmology and Nongalactic Astrophysics +1201.3858 Classical Analysis and ODEs +1201.3951 Theory +1201.4235 Soft Condensed Matter +1201.4260 Probability +1201.4272 High Energy Astrophysical Phenomena +1201.4396 Phenomenology +1201.4403 Methodology +1201.4406 +1201.4411 Materials Science +1201.4418 Number Theory +1201.4422 Probability +1201.4424 Analysis of PDEs +1201.4425 Superconductivity +1201.4428 Information Theory +1201.4429 +1201.4432 +1201.4440 Probability +1201.4442 Other Computer Science +1201.4443 Robotics +1201.4444 General Physics +1201.4445 Robotics +1201.4446 Other Computer Science +1201.4448 Rings and Algebras +1201.4450 Quantum Algebra +1201.4452 Mesoscale and Nanoscale Physics +1201.4453 Solar and Stellar Astrophysics +1201.4459 Data Structures and Algorithms +1201.4461 General Physics +1201.4462 Logic in Computer Science +1201.4464 Combinatorics +1201.4465 Functional Analysis +1201.4468 Discrete Mathematics +1201.4475 Complex Variables +1201.4479 Information Theory +1201.4480 Information Theory +1201.4482 Probability +1201.4485 Probability +1201.4490 Statistical Finance +1201.4494 Representation Theory +1201.4496 Analysis of PDEs +1201.4499 Computational Engineering, Finance, and Science +1201.4500 Software Engineering +1201.4501 Quantum Algebra +1201.4502 Combinatorics +1201.4506 Experiment +1201.4508 Algebraic Geometry +1201.4510 Probability +1201.4511 Phenomenology +1201.4513 +1201.4515 Optics +1201.4517 Optics +1201.4518 +1201.4523 Combinatorics +1201.4524 Networking and Internet Architecture +1201.4529 Methodology +1201.4535 Soft Condensed Matter +1201.4536 Cryptography and Security +1201.4538 Functional Analysis +1201.4539 Geometric Topology +1201.4541 Differential Geometry +1201.4547 Exactly Solvable and Integrable Systems +1201.4550 Rings and Algebras +1201.4553 Other Computer Science +1201.4555 Networking and Internet Architecture +1201.4557 Solar and Stellar Astrophysics +1201.4561 Solar and Stellar Astrophysics +1201.4562 Differential Geometry +1201.4570 Algebraic Geometry +1201.4573 Analysis of PDEs +1201.4576 Experiment +1201.4577 General Physics +1201.4583 Pattern Formation and Solitons +1201.4585 Statistical Mechanics +1201.4594 General Physics +1201.4597 Data Analysis, Statistics and Probability +1201.4599 Operator Algebras +1201.4604 Data Analysis, Statistics and Probability +1201.4607 Solar and Stellar Astrophysics +1201.4609 Phenomenology +1201.4617 Neurons and Cognition +1201.4621 Numerical Analysis +1201.4622 Instrumentation and Methods for Astrophysics +1201.4628 Algebraic Geometry +1201.4631 +1201.4632 Methodology +1201.4634 Functional Analysis +1201.4635 +1201.4637 Earth and Planetary Astrophysics +1201.4645 Probability +1201.4646 Solar and Stellar Astrophysics +1201.4647 Probability +1201.4649 +1201.4652 Materials Science +1201.4653 Operator Algebras +1201.4655 Performance +1201.4666 Functional Analysis +1201.4667 Methodology +1201.4671 +1201.4673 +1201.4676 Optics +1201.4677 Optimization and Control +1201.4678 Experiment +1201.4686 Group Theory +1201.4687 Geometric Topology +1201.4688 General Physics +1201.4693 Solar and Stellar Astrophysics +1201.4696 Biological Physics +1201.4698 General Physics +1201.4705 Complex Variables +1201.4707 Materials Science +1201.4708 Analysis of PDEs +1201.4713 Classical Physics +1201.4714 Learning +1201.4719 Programming Languages +1201.4724 Probability +1201.4725 Cryptography and Security +1201.4727 Cosmology and Nongalactic Astrophysics +1201.4728 High Energy Astrophysical Phenomena +1201.4730 Medical Physics +1201.4733 Computation and Language +1201.4735 Materials Science +1201.4737 Neural and Evolutionary Computing +1201.4738 Classical Physics +1201.4739 Mesoscale and Nanoscale Physics +1201.4743 Statistics Theory +1201.4746 Materials Science +1201.4749 Complex Variables +1201.4750 Complex Variables +1201.4754 Computer Science and Game Theory +1201.4761 Experiment +1201.4762 +1201.4763 K-Theory and Homology +1201.4764 Data Structures and Algorithms +1201.4766 Pattern Formation and Solitons +1201.4768 Networking and Internet Architecture +1201.4770 Phenomenology +1201.4774 Lattice +1201.4776 Statistical Finance +1201.4781 Computational Finance +1201.4782 Combinatorics +1201.4786 Statistical Finance +1201.4788 Instrumentation and Methods for Astrophysics +1201.4809 Solar and Stellar Astrophysics +1201.4810 Experiment +1201.4819 Operator Algebras +1201.4824 Rings and Algebras +1201.4826 Functional Analysis +1201.4830 Classical Analysis and ODEs +1201.4836 Analysis of PDEs +1201.4837 Operator Algebras +1201.4844 Operator Algebras +1201.4845 Adaptation and Self-Organizing Systems +1201.4854 Rings and Algebras +1201.4855 Algebraic Geometry +math/0202158 Algebraic Geometry +math/0310368 Algebraic Geometry +math/0404242 Representation Theory +math/0404252 Algebraic Topology +1208.1969 Computers and Society +1012.0070 Cosmology and Nongalactic Astrophysics +1109.0004 Theory +1109.5448 Phenomenology +1110.3555 Theory +1111.4912 Theory +1112.1458 +1112.4127 Strongly Correlated Electrons +1201.2126 High Energy Astrophysical Phenomena +0812.4643 Number Theory +0812.4949 K-Theory and Homology +0902.4856 Representation Theory +0904.1179 Lattice +0905.0913 Group Theory +0907.0339 Operator Algebras +0908.0574 Dynamical Systems +0908.1465 K-Theory and Homology +0908.3185 Combinatorics +0908.4294 Theory +0910.4207 Combinatorics +0912.1659 Combinatorics +1003.0278 K-Theory and Homology +1003.1919 Strongly Correlated Electrons +1003.2362 Number Theory +1003.5066 Functional Analysis +1004.2594 Mesoscale and Nanoscale Physics +1005.1547 Analysis of PDEs +1006.1806 Theory +1009.2852 Differential Geometry +1009.3241 Differential Geometry +1010.4725 Superconductivity +1012.0639 Phenomenology +1012.4029 Atomic Physics +1101.1206 Accelerator Physics +1102.3837 Phenomenology +1103.0527 Strongly Correlated Electrons +1103.2407 Strongly Correlated Electrons +1103.4852 Atomic Physics +1103.5667 Functional Analysis +1105.1169 Algebraic Geometry +1107.0174 Algebraic Geometry +1107.0528 Adaptation and Self-Organizing Systems +1107.1379 Combinatorics +1107.1737 Atomic Physics +1107.1884 Medical Physics +1107.2527 Information Theory +1107.3452 Mesoscale and Nanoscale Physics +1107.4483 High Energy Astrophysical Phenomena +1107.5097 Classical Analysis and ODEs +1107.5971 Group Theory +1108.0281 Strongly Correlated Electrons +1108.0664 High Energy Astrophysical Phenomena +1108.1373 Cosmology and Nongalactic Astrophysics +1108.4437 Mesoscale and Nanoscale Physics +1109.0107 Soft Condensed Matter +1109.0789 Classical Analysis and ODEs +1109.2226 Combinatorics +1109.2790 Cosmology and Nongalactic Astrophysics +1109.4126 Cosmology and Nongalactic Astrophysics +1109.4164 Algebraic Geometry +1109.4505 Functional Analysis +1109.6292 Strongly Correlated Electrons +1110.2202 Soft Condensed Matter +1110.4199 Cosmology and Nongalactic Astrophysics +1110.4989 Phenomenology +1110.5219 +1110.5441 Mathematical Software +1110.6739 Data Structures and Algorithms +1111.1046 Statistical Mechanics +1111.2973 Number Theory +1111.3380 Number Theory +1111.3588 Combinatorics +1111.4899 Disordered Systems and Neural Networks +1111.6192 Cosmology and Nongalactic Astrophysics +1111.6475 Mesoscale and Nanoscale Physics +1112.0467 Information Theory +1112.2886 +1112.5016 Methodology +1201.0290 +1201.0359 Phenomenology +1201.1102 Representation Theory +1201.2378 Cosmology and Nongalactic Astrophysics +1201.2707 Mesoscale and Nanoscale Physics +1201.3746 Strongly Correlated Electrons +1201.4036 Populations and Evolution +1201.4367 Combinatorics +1201.6535 Statistical Finance +1202.6056 Theory +1202.6062 Theory +1202.6608 Superconductivity +1203.0330 Instrumentation and Methods for Astrophysics +1203.1739 Materials Science +1203.2850 Quantum Gases +1203.3166 Statistical Mechanics +1203.3888 Chemical Physics +1203.4147 Probability +1203.4779 +1203.5082 Theory +1203.6485 Mesoscale and Nanoscale Physics +1204.0213 Theory +1204.1271 High Energy Astrophysical Phenomena +1204.3128 Commutative Algebra +1204.3251 Learning +1204.3796 Superconductivity +1204.5876 Differential Geometry +1204.5905 Materials Science +1204.5964 Strongly Correlated Electrons +1204.6133 Dynamical Systems +1205.1579 Data Structures and Algorithms +1205.1717 +1205.1847 Classical Physics +1205.1848 Probability +1205.2063 +1205.2315 Mesoscale and Nanoscale Physics +1205.2737 Metric Geometry +1205.2950 Strongly Correlated Electrons +1205.3903 +1205.4824 Materials Science +1205.6322 Analysis of PDEs +1205.6359 Data Structures and Algorithms +1206.0227 Solar and Stellar Astrophysics +1206.2863 Phenomenology +1206.3432 Optimization and Control +1206.3916 Category Theory +1206.5396 Artificial Intelligence +1206.5739 Functional Analysis +1206.6230 Learning +1206.6503 Mesoscale and Nanoscale Physics +1206.6507 Theory +1206.6511 Theory +1206.6513 Geophysics +1206.6514 Computer Vision and Pattern Recognition +1206.6517 Algebraic Geometry +1206.6519 Machine Learning +1206.6522 Numerical Analysis +1206.6526 Superconductivity +1206.6534 Statistical Mechanics +1206.6546 Soft Condensed Matter +1206.6549 Strongly Correlated Electrons +1206.6553 Functional Analysis +1206.6561 Information Theory +1206.6562 Biological Physics +1206.6563 Classical Analysis and ODEs +1206.6565 Formal Languages and Automata Theory +1206.6571 Analysis of PDEs +1206.6574 Commutative Algebra +1206.6576 Instrumentation and Methods for Astrophysics +1206.6579 Commutative Algebra +1206.6584 Information Theory +1206.6588 Physics and Society +1206.6596 Representation Theory +1206.6600 Materials Science +1206.6605 Combinatorics +1206.6606 Computers and Society +1206.6607 Quantum Algebra +1206.6608 Metric Geometry +1206.6612 Computers and Society +1206.6613 Computers and Society +1206.6615 +1206.6617 Applications +1206.6618 Phenomenology +1206.6624 Applications +1206.6627 Applications +1206.6633 Symplectic Geometry +1206.6636 Applications +1206.6642 Combinatorics +1206.6645 Optimization and Control +1206.6646 Databases +1206.6647 Applications +1206.6650 Applications +1206.6653 Applications +1206.6654 Accelerator Physics +1206.6655 Applications +1206.6658 Statistics Theory +1206.6659 Analysis of PDEs +1206.6664 Applications +1206.6666 Applications +1206.6670 Optimization and Control +1206.6674 Applications +1206.6676 Differential Geometry +1206.6683 Chemical Physics +1206.6694 +1206.6695 Instrumentation and Methods for Astrophysics +1206.6696 Dynamical Systems +1206.6708 Algebraic Geometry +1206.6711 Fluid Dynamics +1206.6712 Probability +1206.6714 Phenomenology +1206.6722 Neural and Evolutionary Computing +1206.6723 Chaotic Dynamics +1206.6725 Functional Analysis +1206.6731 Commutative Algebra +1206.6733 Instrumentation and Methods for Astrophysics +1206.6735 Computation and Language +1206.6738 Analysis of PDEs +1206.6741 Information Theory +1206.6743 Rings and Algebras +1206.6747 Number Theory +1206.6748 Differential Geometry +1206.6752 History and Philosophy of Physics +1206.6753 +1206.6756 Experiment +1206.6758 Theory +1206.6761 Experiment +1206.6765 Dynamical Systems +1206.6768 Populations and Evolution +1206.6769 Number Theory +1206.6770 High Energy Astrophysical Phenomena +1206.6771 Optics +1206.6782 Populations and Evolution +1206.6787 Pricing of Securities +1206.6791 Optimization and Control +1206.6793 Instrumentation and Detectors +1206.6796 Accelerator Physics +1206.6800 Accelerator Physics +1206.6804 Accelerator Physics +1206.6807 High Energy Astrophysical Phenomena +1206.6812 Probability +chao-dyn/9905033 Chaotic Dynamics +math/0604142 Differential Geometry +nlin/0007031 Chaotic Dynamics +nlin/0111005 Chaotic Dynamics +1202.3536 Dynamical Systems +hep-ph/0503261 Phenomenology +math-ph/9911003 +math/9909155 Differential Geometry +math/9910125 Differential Geometry +cond-mat/0610070 Strongly Correlated Electrons +0801.1876 Probability +0802.0810 Geometric Topology +0802.2691 Combinatorics +0805.1672 Combinatorics +0806.1007 Probability +0807.2955 Number Theory +0808.1309 Combinatorics +0903.3501 Differential Geometry +0905.4517 Probability +0911.0470 Geometric Topology +0911.1203 Probability +0911.3719 Quantum Algebra +0911.3886 Probability +0911.4835 Geometric Topology +0912.1938 +1004.1309 Probability +1004.1749 Information Theory +1006.4358 Information Theory +1007.2778 +1009.0578 Probability +1009.3180 Quantum Algebra +1009.5038 Algebraic Geometry +1009.5236 High Energy Astrophysical Phenomena +1011.1078 Quantum Gases +1101.5195 Probability +1101.5526 +1102.0139 Mesoscale and Nanoscale Physics +1102.0712 Probability +1102.0969 Physics and Society +1103.3154 Analysis of PDEs +1103.4802 Pattern Formation and Solitons +1103.5910 Analysis of PDEs +1104.1173 Earth and Planetary Astrophysics +1104.2441 Analysis of PDEs +1104.3995 Mesoscale and Nanoscale Physics +1106.0049 Materials Science +1106.4929 Statistical Mechanics +1106.6265 Strongly Correlated Electrons +1107.0473 +1107.3994 Analysis of PDEs +1107.5250 +1107.5404 Analysis of PDEs +1107.5649 Materials Science +1108.1197 Strongly Correlated Electrons +1108.1553 Analysis of PDEs +1108.4304 +1108.4964 Optics +1109.2549 Solar and Stellar Astrophysics +1109.4846 Phenomenology +1110.0850 +1110.0864 Human-Computer Interaction +1110.1062 Probability +1110.2466 Materials Science +1110.3858 Quantum Gases +1110.5118 Algebraic Geometry +1110.6079 Cosmology and Nongalactic Astrophysics +1110.6301 +1111.0607 Dynamical Systems +1111.2706 Quantum Gases +1111.4356 +1111.4840 Computer Vision and Pattern Recognition +1111.6002 Optics +1111.7064 Data Structures and Algorithms +1112.0137 Chemical Physics +1112.3405 Phenomenology +1112.4032 Materials Science +1112.4391 Phenomenology +1112.4570 Populations and Evolution +1112.5530 Group Theory +1112.5616 Quantum Gases +1112.5952 +1201.0051 +1201.1023 Earth and Planetary Astrophysics +1201.2511 +1201.2710 Instrumentation and Methods for Astrophysics +1201.3903 +1201.6150 Phenomenology +1201.6456 Quantum Gases +1202.0382 Superconductivity +1202.0774 Statistical Mechanics +1202.1995 +1202.2726 Atomic Physics +1202.3372 Instrumentation and Methods for Astrophysics +1202.3932 +1202.5943 Mesoscale and Nanoscale Physics +1202.5955 +1202.6669 Information Theory +1203.0801 Probability +1203.1470 Atomic Physics +1203.2018 Representation Theory +1203.4008 Systems and Control +1203.4701 Data Analysis, Statistics and Probability +1203.4789 Lattice +1203.5836 Strongly Correlated Electrons +1203.5945 Computer Science and Game Theory +1204.0392 Combinatorics +1204.0980 Earth and Planetary Astrophysics +1204.1617 Differential Geometry +1204.1634 Computer Vision and Pattern Recognition +1204.1637 Artificial Intelligence +1204.1679 Computer Vision and Pattern Recognition +1204.1681 Artificial Intelligence +1204.2086 +1204.2127 Algebraic Topology +1204.2191 +1204.2271 Quantum Gases +1204.2278 Analysis of PDEs +1204.2280 Instrumentation and Methods for Astrophysics +1204.2288 Numerical Analysis +1204.2290 Functional Analysis +1204.2294 Computer Vision and Pattern Recognition +1204.2299 +1204.2301 +1204.2306 Combinatorics +1204.2311 Learning +1204.2312 Materials Science +1204.2315 Probability +1204.2320 Networking and Internet Architecture +1204.2325 Analysis of PDEs +1204.2326 +1204.2328 Classical Analysis and ODEs +1204.2331 Information Theory +1204.2334 +1204.2336 Computer Vision and Pattern Recognition +1204.2343 Rings and Algebras +1204.2344 Complex Variables +1204.2348 Other Computer Science +1204.2349 Experiment +1204.2350 Other Computer Science +1204.2352 Other Computer Science +1204.2354 +1204.2355 Probability +1204.2356 Neural and Evolutionary Computing +1204.2359 Multimedia +1204.2360 Functional Analysis +1204.2362 Soft Condensed Matter +1204.2364 Atomic Physics +1204.2371 Theory +1204.2373 Phenomenology +1204.2376 Networking and Internet Architecture +1204.2378 Computational Physics +1204.2381 Instrumentation and Methods for Astrophysics +1204.2382 Probability +1204.2384 Group Theory +1204.2385 Systems and Control +1204.2391 Atomic Physics +1204.2398 +1204.2402 +1204.2403 Mesoscale and Nanoscale Physics +1204.2404 Software Engineering +1204.2406 Experiment +1204.2413 Logic in Computer Science +1204.2417 Astrophysics of Galaxies +1204.2421 Rings and Algebras +1204.2423 Other Condensed Matter +1204.2433 Information Theory +1204.2439 +1204.2440 Differential Geometry +1204.2441 Algebraic Geometry +1204.2445 General Mathematics +1204.2449 Phenomenology +1204.2452 Geometric Topology +1204.2456 Commutative Algebra +1204.2457 Mesoscale and Nanoscale Physics +1204.2460 Logic +1204.2462 Physics Education +1204.2465 Networking and Internet Architecture +1204.2472 +1204.2477 Methodology +1204.2480 Combinatorics +1204.2482 Statistical Mechanics +1204.2486 Applications +1204.2490 Fluid Dynamics +1204.2491 Plasma Physics +1204.2503 Phenomenology +1204.2505 Chemical Physics +1204.2512 Experiment +1204.2513 Combinatorics +1204.2514 Exactly Solvable and Integrable Systems +1204.2515 Applications +1204.2516 Cryptography and Security +1204.2517 Optimization and Control +1204.2534 Materials Science +1204.2536 Cryptography and Security +cond-mat/0405677 Strongly Correlated Electrons +cond-mat/0411355 Strongly Correlated Electrons +cond-mat/0510244 Materials Science +cs/0605073 Information Theory +math/0509259 Combinatorics +math/0509382 Combinatorics +math/0510045 Combinatorics +math/0512139 Combinatorics +math/9802130 Probability +math/9802131 Probability +physics/0205015 Data Analysis, Statistics and Probability +physics/0510035 Data Analysis, Statistics and Probability +0706.1141 Multimedia +0809.1819 +0809.4296 Neurons and Cognition +0811.3301 Databases +0909.2189 Logic +0912.3365 Complex Variables +1002.4231 Combinatorics +1002.4235 Metric Geometry +1003.0355 Differential Geometry +1003.3754 Information Theory +1005.5723 +1006.0221 Theory +1006.4195 +1007.0743 Optimization and Control +1007.1747 Superconductivity +1008.1382 Soft Condensed Matter +1008.2082 +1009.4164 Phenomenology +1010.1271 +1010.1272 +1010.3327 Statistical Mechanics +1010.4937 Dynamical Systems +1011.1642 Classical Analysis and ODEs +1011.5724 Lattice +1012.0504 Classical Analysis and ODEs +1101.1015 +1101.1060 Plasma Physics +1101.3136 +1101.4851 +1103.2029 Plasma Physics +1103.3761 Mesoscale and Nanoscale Physics +1103.4001 +1103.5826 Algebraic Geometry +1104.0762 Probability +1104.3102 Atomic Physics +1104.5598 Phenomenology +1105.6353 Mesoscale and Nanoscale Physics +1106.0007 Cosmology and Nongalactic Astrophysics +1106.0202 +1107.3542 Analysis of PDEs +1107.3738 +1107.4123 Phenomenology +1107.4353 Probability +1107.4377 Strongly Correlated Electrons +1107.5211 General Physics +1107.5430 Soft Condensed Matter +1108.0264 Strongly Correlated Electrons +1108.0367 +1108.1961 Statistics Theory +1108.2060 Experiment +1108.2502 Combinatorics +1108.3456 Mesoscale and Nanoscale Physics +1108.3591 Atomic Physics +1108.4270 Data Analysis, Statistics and Probability +1108.4854 +1108.5054 Superconductivity +1108.5246 +1109.0605 +1109.3363 Phenomenology +1109.4382 Algebraic Geometry +1109.5177 High Energy Astrophysical Phenomena +1109.6025 Superconductivity +1110.0070 Software Engineering +1110.0397 Accelerator Physics +1110.0844 Combinatorics +1110.2663 Instrumentation and Methods for Astrophysics +1110.4633 High Energy Astrophysical Phenomena +1110.5078 Number Theory +1110.6005 Experiment +1111.0717 Mesoscale and Nanoscale Physics +1111.2313 Discrete Mathematics +1111.4958 Superconductivity +1111.4997 Theory +1111.5949 Phenomenology +1111.6213 +1111.6859 General Finance +1111.7096 Mesoscale and Nanoscale Physics +1112.1428 +1112.2327 Theory +1112.3161 +1112.3458 Representation Theory +1201.0245 Strongly Correlated Electrons +1201.0435 Information Theory +1201.0656 Phenomenology +1201.2033 Molecular Networks +1201.2341 Other Condensed Matter +1201.2579 Biological Physics +1201.2657 Networking and Internet Architecture +1201.2663 Theory +1201.2680 Soft Condensed Matter +1201.2683 Cosmology and Nongalactic Astrophysics +1201.2692 Solar and Stellar Astrophysics +1201.2693 Analysis of PDEs +1201.2694 Adaptation and Self-Organizing Systems +1201.2702 Data Structures and Algorithms +1201.2703 Data Structures and Algorithms +1201.2712 Combinatorics +1201.2718 Probability +1201.2724 Classical Analysis and ODEs +1201.2725 +1201.2726 Superconductivity +1201.2728 Mesoscale and Nanoscale Physics +1201.2732 Differential Geometry +1201.2733 Information Theory +1201.2738 Quantum Algebra +1201.2739 Combinatorics +1201.2744 Computational Physics +1201.2748 Strongly Correlated Electrons +1201.2752 Mesoscale and Nanoscale Physics +1201.2757 Algebraic Geometry +1201.2760 Networking and Internet Architecture +1201.2764 General Physics +1201.2766 Databases +1201.2769 Lattice +1201.2774 +1201.2776 Atomic Physics +1201.2779 Tissues and Organs +1201.2781 Statistical Mechanics +1201.2787 Lattice +1201.2788 Social and Information Networks +1201.2798 Tissues and Organs +1201.2807 Fluid Dynamics +1201.2811 Materials Science +1201.2816 Analysis of PDEs +1201.2818 Astrophysics of Galaxies +1201.2819 Classical Analysis and ODEs +1201.2823 Software Engineering +1201.2826 Exactly Solvable and Integrable Systems +1201.2828 Functional Analysis +1201.2835 Algebraic Geometry +1201.2840 High Energy Astrophysical Phenomena +1201.2841 Phenomenology +1201.2842 Materials Science +1201.2843 Computer Vision and Pattern Recognition +1201.2848 +1201.2849 Instrumentation and Methods for Astrophysics +1201.2851 Commutative Algebra +1201.2856 Quantum Gases +1201.2863 Pattern Formation and Solitons +1201.2877 Probability +1201.2884 Solar and Stellar Astrophysics +1201.2885 Chaotic Dynamics +1201.2891 Probability +1201.2892 Optimization and Control +1201.2894 Instrumentation and Detectors +1201.2895 Cosmology and Nongalactic Astrophysics +1201.2899 Methodology +1201.2902 Learning +1201.2904 Complex Variables +1201.2909 High Energy Astrophysical Phenomena +1201.2911 Materials Science +1201.2912 +1201.2916 Cosmology and Nongalactic Astrophysics +1201.2920 Phenomenology +1201.2923 Geometric Topology +1201.2932 Logic +1201.2933 Molecular Networks +1201.2934 Optimization and Control +cs/0610046 Data Structures and Algorithms +cs/0610128 Data Structures and Algorithms +cs/0702143 Databases +hep-ph/0212035 Phenomenology +0710.3286 Soft Condensed Matter +0802.3932 Soft Condensed Matter +0810.1227 Representation Theory +0903.0453 Statistical Mechanics +0907.0130 Mesoscale and Nanoscale Physics +0907.0201 Mesoscale and Nanoscale Physics +0912.4770 Combinatorics +1003.1760 Operator Algebras +1003.2944 Metric Geometry +1004.3243 Phenomenology +1004.3735 Rings and Algebras +1009.0783 Data Structures and Algorithms +1011.4734 Combinatorics +1011.5414 Strongly Correlated Electrons +1101.1077 Logic +1101.1196 Differential Geometry +1101.6078 Theory +1102.2225 Geometric Topology +1103.2314 Commutative Algebra +1104.1906 Number Theory +1104.2768 Probability +1104.3932 Dynamical Systems +1104.5134 Analysis of PDEs +1105.2854 Instrumentation and Methods for Astrophysics +1105.3129 Spectral Theory +1105.5774 +1106.2226 Probability +1107.0185 Dynamical Systems +1107.2812 Operator Algebras +1107.3901 Disordered Systems and Neural Networks +1107.4068 +1107.4695 Mesoscale and Nanoscale Physics +1107.5357 Differential Geometry +1107.5614 Classical Analysis and ODEs +1108.1291 Strongly Correlated Electrons +1109.0186 Materials Science +1110.1390 Operator Algebras +1110.2754 Strongly Correlated Electrons +1110.3275 Statistical Mechanics +1110.4197 Optimization and Control +1110.4373 Strongly Correlated Electrons +1110.4809 +1110.5676 Phenomenology +1110.6138 Superconductivity +1111.1494 Soft Condensed Matter +1111.2921 Phenomenology +1111.2972 Exactly Solvable and Integrable Systems +1111.5910 +1111.6031 Mesoscale and Nanoscale Physics +1111.6491 Mesoscale and Nanoscale Physics +1112.1213 Geometric Topology +1112.4337 Cosmology and Nongalactic Astrophysics +1112.4657 Analysis of PDEs +1112.5013 Quantum Gases +1112.5102 Materials Science +1201.0666 Differential Geometry +1201.1272 Logic in Computer Science +1201.2431 Theory +1201.2433 Instrumentation and Detectors +1201.2886 +1201.3554 Probability +1201.4420 Mesoscale and Nanoscale Physics +1202.0896 Phenomenology +1202.2609 Probability +1202.3450 Mesoscale and Nanoscale Physics +1202.4594 Operator Algebras +1202.6103 Data Analysis, Statistics and Probability +1202.6679 Phenomenology +1203.1324 Phenomenology +1203.1722 +1203.1982 Strongly Correlated Electrons +1203.2698 Mesoscale and Nanoscale Physics +1203.4153 Portfolio Management +1203.4573 Theory +1204.0406 +1204.0708 Number Theory +1204.1084 Statistical Mechanics +1204.1214 Disordered Systems and Neural Networks +1204.1297 Materials Science +1204.1343 High Energy Astrophysical Phenomena +1204.1553 General Physics +1204.2237 +1204.3579 +1204.3694 Superconductivity +1204.6137 Soft Condensed Matter +1205.0353 Solar and Stellar Astrophysics +1205.1928 Functional Analysis +1205.3334 Materials Science +1205.4382 Combinatorics +1205.6403 Theory +1205.6712 Solar and Stellar Astrophysics +1206.0526 Superconductivity +1206.0643 Networking and Internet Architecture +1206.3031 Quantitative Methods +1206.4104 Cosmology and Nongalactic Astrophysics +1206.4501 Statistical Mechanics +1206.5148 Cosmology and Nongalactic Astrophysics +1207.2238 Probability +1207.2477 Theory +1207.2925 Earth and Planetary Astrophysics +1207.2987 Rings and Algebras +1207.3112 Theory +1207.3161 Complex Variables +1207.3177 Analysis of PDEs +1207.3228 Fluid Dynamics +1207.3348 Analysis of PDEs +1207.3738 Pattern Formation and Solitons +1207.3742 Social and Information Networks +1207.3751 +1207.3785 Medical Physics +1207.3790 Learning +1207.3808 Atomic Physics +1207.3809 Computer Vision and Pattern Recognition +1207.3812 Instrumentation and Methods for Astrophysics +1207.3813 Accelerator Physics +1207.3819 Accelerator Physics +1207.3822 Accelerator Physics +1207.3827 Phenomenology +1207.3828 +1207.3832 Lattice +1207.3840 Statistics Theory +1207.3848 +1207.3855 Artificial Intelligence +1207.3857 Analysis of PDEs +1207.3861 Functional Analysis +1207.3866 Formal Languages and Automata Theory +1207.3867 Networking and Internet Architecture +1207.3868 Information Theory +1207.3869 Networking and Internet Architecture +1207.3871 Information Theory +1207.3872 Software Engineering +1207.3875 Information Theory +1207.3876 Networking and Internet Architecture +1207.3877 Information Theory +1207.3878 Combinatorics +1207.3880 Computational Complexity +1207.3882 Information Theory +1207.3884 Information Theory +1207.3889 Geometric Topology +1207.3890 Algebraic Geometry +1207.3893 Materials Science +1207.3894 Probability +1207.3895 +1207.3896 Optimization and Control +1207.3899 Graphics +1207.3901 Optimization and Control +1207.3902 Optics +1207.3904 Strongly Correlated Electrons +1207.3905 Strongly Correlated Electrons +1207.3909 Quantum Algebra +1207.3914 Computational Physics +1207.3916 Solar and Stellar Astrophysics +1207.3921 Graphics +1207.3923 Instrumentation and Methods for Astrophysics +1207.3925 Representation Theory +1207.3926 Instrumentation and Detectors +1207.3927 +1207.3931 Combinatorics +1207.3932 Computation and Language +1207.3933 Combinatorics +1207.3936 Number Theory +1207.3937 Programming Languages +1207.3940 Theory +1207.3943 Networking and Internet Architecture +1207.3944 Computer Vision and Pattern Recognition +1207.3946 Complex Variables +1207.3949 Metric Geometry +1207.3950 Complex Variables +1207.3951 Optimization and Control +1207.3962 Computational Geometry +1207.3964 Digital Libraries +1207.3968 Solar and Stellar Astrophysics +1207.3972 Combinatorics +1207.3978 Statistical Mechanics +1207.3980 Phenomenology +1207.3987 Superconductivity +1207.3989 High Energy Astrophysical Phenomena +1207.3991 Mesoscale and Nanoscale Physics +1207.3997 Adaptation and Self-Organizing Systems +1207.4000 Probability +1207.4003 Strongly Correlated Electrons +1207.4005 Differential Geometry +1207.4010 Complex Variables +1207.4015 Soft Condensed Matter +1207.4020 +1207.4022 Solar and Stellar Astrophysics +1207.4026 Optimization and Control +1207.4027 Combinatorics +1207.4031 Probability +1207.4040 Solar and Stellar Astrophysics +1207.4044 Computer Science and Game Theory +1207.4046 Algebraic Geometry +1207.4048 Quantitative Methods +1207.4049 Pattern Formation and Solitons +1207.4052 Accelerator Physics +1207.4056 Accelerator Physics +1207.4059 Theory +1207.4060 Spectral Theory +1207.4069 Statistical Finance +1207.4070 Algebraic Geometry +1207.4074 Probability +1207.4081 Number Theory +1207.4082 Computational Geometry +1207.4086 Differential Geometry +1207.4091 Accelerator Physics +1207.4094 Solar and Stellar Astrophysics +1207.4098 Systems and Control +1207.4099 Soft Condensed Matter +1207.4100 Soft Condensed Matter +1207.4101 Analysis of PDEs +1207.4105 Algebraic Geometry +math/0703272 Analysis of PDEs +0712.0762 +0712.3222 +0712.3456 +0712.3462 +0803.2123 Cryptography and Security +0804.3753 Dynamical Systems +0808.2038 Optics +0809.1685 Number Theory +0902.3140 Dynamical Systems +0905.4638 +0906.0276 Optics +0909.3798 Solar and Stellar Astrophysics +0910.1732 Astrophysics of Galaxies +0911.3197 Analysis of PDEs +1003.1906 Number Theory +1007.3542 +1011.3793 Astrophysics of Galaxies +1102.1562 Classical Analysis and ODEs +1102.5127 Earth and Planetary Astrophysics +1103.1291 Probability +1103.2344 Group Theory +1104.0891 Optics +1104.4889 +1105.0069 Programming Languages +1105.5245 Accelerator Physics +1106.1059 Mesoscale and Nanoscale Physics +1106.2102 Quantum Gases +1106.6059 Phenomenology +1107.3347 +1107.5439 Populations and Evolution +1107.5920 Strongly Correlated Electrons +1108.0833 Physics and Society +1108.0867 Optics +1108.1359 Commutative Algebra +1109.0122 +1109.0440 +1109.3655 +1109.4856 Information Theory +1109.5287 Functional Analysis +1109.5419 Statistical Mechanics +1109.5995 Algebraic Geometry +1109.6533 Theory +1109.6669 Algebraic Geometry +1109.6898 Mesoscale and Nanoscale Physics +1110.1636 Theory +1110.2504 General Physics +1110.3155 General Physics +1110.3318 General Physics +1110.4130 Strongly Correlated Electrons +1110.5582 Phenomenology +1110.6347 Differential Geometry +1111.1016 Representation Theory +1111.2997 +1111.5516 Theory +1112.3758 Formal Languages and Automata Theory +1112.4422 Physics and Society +1112.5850 General Finance +1201.0376 Cosmology and Nongalactic Astrophysics +1201.0682 Formal Languages and Automata Theory +1201.1737 Strongly Correlated Electrons +1201.2831 Mesoscale and Nanoscale Physics +1201.4620 Operator Algebras +1201.4941 Combinatorics +1201.5458 Materials Science +1201.5564 Instrumentation and Methods for Astrophysics +1202.0173 +1202.0353 Cosmology and Nongalactic Astrophysics +1203.1556 Earth and Planetary Astrophysics +1203.2172 Theory +1203.2467 Instrumentation and Methods for Astrophysics +1203.3031 Risk Management +1203.3946 Social and Information Networks +1203.4778 Differential Geometry +1203.4795 Numerical Analysis +1203.5532 Artificial Intelligence +1203.5771 Superconductivity +1203.6005 Mathematical Software +1203.6142 Strongly Correlated Electrons +1203.6660 Probability +1203.6661 Probability +1203.6663 Cosmology and Nongalactic Astrophysics +1203.6666 Materials Science +1203.6667 Number Theory +1203.6670 +1203.6672 Superconductivity +1203.6683 +1203.6686 Cryptography and Security +1203.6688 +1203.6693 Operator Algebras +1203.6694 Atomic Physics +1203.6696 Soft Condensed Matter +1203.6699 Algebraic Topology +1203.6701 Earth and Planetary Astrophysics +1203.6702 +1203.6704 Differential Geometry +1203.6708 Instrumentation and Methods for Astrophysics +1203.6709 Numerical Analysis +1203.6710 Optics +1203.6713 Networking and Internet Architecture +1203.6714 Differential Geometry +1203.6716 Artificial Intelligence +1203.6719 Other Computer Science +1203.6721 Biomolecules +1203.6722 Computer Vision and Pattern Recognition +1203.6723 Pricing of Securities +1203.6727 Instrumentation and Methods for Astrophysics +1203.6728 Computational Engineering, Finance, and Science +1203.6729 Materials Science +1203.6730 Materials Science +1203.6736 Combinatorics +1203.6738 Analysis of PDEs +1203.6739 Numerical Analysis +1203.6741 Systems and Control +1203.6742 Physics and Society +1203.6749 Adaptation and Self-Organizing Systems +1203.6750 Systems and Control +1203.6751 Commutative Algebra +1203.6752 General Physics +1203.6754 Applications +1203.6758 Spectral Theory +1203.6765 Solar and Stellar Astrophysics +1203.6766 Functional Analysis +1203.6769 +1203.6771 Strongly Correlated Electrons +1203.6772 +1203.6773 Popular Physics +1203.6774 +1203.6775 Fluid Dynamics +1203.6778 Risk Management +1203.6779 +1203.6782 Optimization and Control +1203.6783 Optimization and Control +1203.6788 Representation Theory +1203.6791 Information Theory +1203.6792 Combinatorics +1203.6794 Commutative Algebra +1203.6799 Analysis of PDEs +1203.6800 Experiment +1203.6801 Quantum Algebra +1203.6802 Experiment +1203.6806 Software Engineering +1203.6807 Combinatorics +1203.6811 General Physics +1203.6814 Statistical Mechanics +1203.6816 Solar and Stellar Astrophysics +1203.6818 Probability +1203.6821 Probability +1203.6825 Phenomenology +1203.6826 Phenomenology +1203.6831 Probability +1203.6832 Neurons and Cognition +1203.6843 Lattice +1203.6845 Computation and Language +1203.6846 Solar and Stellar Astrophysics +1203.6848 Probability +1203.6856 Chemical Physics +1203.6864 Information Theory +1203.6870 Algebraic Geometry +1203.6871 Complex Variables +1203.6872 Plasma Physics +1203.6874 Logic +1203.6878 Computational Complexity +1203.6882 +1203.6890 Applications +1203.6893 Phenomenology +1203.6899 Computational Finance +1203.6902 Popular Physics +quant-ph/0603090 +0809.0962 General Mathematics +0906.1099 General Mathematics +1003.2854 General Mathematics +1212.2318 General Physics +1212.2705 General Physics +0708.2324 +0801.3637 +0803.3579 Mesoscale and Nanoscale Physics +0804.0629 Group Theory +0806.3066 +0808.1580 +0902.1678 Phenomenology +0902.2815 General Physics +0902.2924 Methodology +0902.3041 +0902.3666 +0903.0143 +0904.2730 History and Overview +0904.2935 Cosmology and Nongalactic Astrophysics +0904.3661 Statistical Mechanics +0905.0284 Theory +0906.0303 Theory +0906.3880 Cosmology and Nongalactic Astrophysics +0907.0237 General Mathematics +0908.2372 Methodology +0908.3287 Phenomenology +0908.3967 +0909.0052 General Physics +0909.5244 Classical Analysis and ODEs +0910.0440 +0910.5857 Earth and Planetary Astrophysics +0911.0100 General Physics +0912.0070 +1001.0146 General Physics +1001.3152 Cosmology and Nongalactic Astrophysics +1002.0165 +1003.0048 General Physics +1003.2199 Theory +1003.3558 Networking and Internet Architecture +1004.1272 Chemical Physics +1004.2903 General Physics +1005.3574 Earth and Planetary Astrophysics +1005.4231 Cosmology and Nongalactic Astrophysics +1006.0969 Quantum Gases +1008.3168 Classical Analysis and ODEs +1009.1396 Cosmology and Nongalactic Astrophysics +1009.1400 Cosmology and Nongalactic Astrophysics +1009.1406 Cosmology and Nongalactic Astrophysics +1009.6025 Mesoscale and Nanoscale Physics +1010.1041 +1010.4268 Differential Geometry +1011.4032 Cosmology and Nongalactic Astrophysics +1011.4283 Dynamical Systems +1012.3897 Number Theory +1012.5284 Solar and Stellar Astrophysics +1101.0796 +1101.1923 Probability +1101.2763 Analysis of PDEs +1101.3720 Number Theory +1102.3159 +1102.3692 Cosmology and Nongalactic Astrophysics +1103.1208 Discrete Mathematics +1103.3556 Classical Analysis and ODEs +1104.1419 Theory +1105.0310 Algebraic Geometry +1105.0719 Group Theory +1105.4351 Materials Science +1106.5298 Chaotic Dynamics +1108.3052 Classical Analysis and ODEs +1108.3082 Cosmology and Nongalactic Astrophysics +1108.3740 Earth and Planetary Astrophysics +1108.4549 +1108.5474 Differential Geometry +1108.5670 Rings and Algebras +1109.0825 Discrete Mathematics +1109.1806 Combinatorics +1109.2951 Theory +1110.0713 Phenomenology +1110.0752 Analysis of PDEs +1110.1379 Cosmology and Nongalactic Astrophysics +1110.1506 Experiment +1110.1853 Phenomenology +1110.3949 Theory +1110.4897 Number Theory +1110.5033 Strongly Correlated Electrons +1110.5061 Algebraic Geometry +1110.5681 +1110.5782 +1110.6401 Functional Analysis +1110.6440 Cosmology and Nongalactic Astrophysics +1111.2342 Strongly Correlated Electrons +1111.2602 Cosmology and Nongalactic Astrophysics +1111.2903 Instrumentation and Detectors +1111.3409 +1111.3640 Strongly Correlated Electrons +1111.5303 Phenomenology +1112.0803 Theory +1112.3172 Mesoscale and Nanoscale Physics +1112.5427 Instrumentation and Detectors +1112.5866 +1201.0713 Number Theory +1201.5036 Mesoscale and Nanoscale Physics +1201.6478 Exactly Solvable and Integrable Systems +1202.0296 Information Theory +1202.0298 Information Theory +1202.1894 Superconductivity +1202.2478 Optics +1202.4013 Solar and Stellar Astrophysics +1202.4057 +1202.5679 Quantum Gases +1203.1007 Learning +1203.2722 Superconductivity +1203.2975 Theory +1203.3990 Statistical Mechanics +1203.5416 Phenomenology +1203.6897 Phenomenology +1204.1784 Cosmology and Nongalactic Astrophysics +1204.2011 Algebraic Topology +1204.2817 +1204.3520 +1204.3550 Phenomenology +1204.4458 Phenomenology +1204.4932 Superconductivity +1204.5080 +1204.5337 Phenomenology +1204.6047 High Energy Astrophysical Phenomena +1204.6182 Lattice +1205.4002 +1205.4740 +1205.5069 Superconductivity +1205.6062 Exactly Solvable and Integrable Systems +1206.1075 Theory +1206.1754 Information Retrieval +1206.1957 Cryptography and Security +1206.3718 Data Structures and Algorithms +1206.4124 Cryptography and Security +1206.6409 Learning +1206.6591 +1206.6951 Statistics Theory +1206.7104 Number Theory +1207.0239 +1207.0280 Applications +1207.0304 Probability +1207.0315 Information Theory +1207.0361 Databases +1207.0394 Instrumentation and Detectors +1207.0496 Theory +1207.0506 Cosmology and Nongalactic Astrophysics +1207.0514 Earth and Planetary Astrophysics +1207.0527 Mesoscale and Nanoscale Physics +1207.0532 Plasma Physics +1207.0535 Formal Languages and Automata Theory +1207.0537 High Energy Astrophysical Phenomena +1207.0538 Methodology +1207.0541 Chemical Physics +1207.0543 Information Theory +1207.0546 Software Engineering +1207.0552 Discrete Mathematics +1207.0554 Logic in Computer Science +1207.0555 Dynamical Systems +1207.0556 Biological Physics +1207.0557 Information Theory +1207.0559 Programming Languages +1207.0562 Rings and Algebras +1207.0564 Numerical Analysis +1207.0565 Analysis of PDEs +1207.0566 Numerical Analysis +1207.0572 Geometric Topology +1207.0574 Exactly Solvable and Integrable Systems +1207.0580 Neural and Evolutionary Computing +1207.0592 Software Engineering +1207.0597 Probability +1207.0598 Algebraic Geometry +1207.0603 Number Theory +1207.0604 Classical Analysis and ODEs +1207.0608 Statistical Mechanics +1207.0614 Dynamical Systems +1207.0620 Complex Variables +1207.0625 Probability +1207.0629 +1207.0632 Functional Analysis +1207.0634 Computational Complexity +1207.0637 +1207.0639 Information Theory +1207.0640 Combinatorics +1207.0644 Accelerator Physics +1207.0651 Solar and Stellar Astrophysics +1207.0653 Statistical Mechanics +1207.0654 Discrete Mathematics +1207.0657 Human-Computer Interaction +1207.0659 Statistical Mechanics +1207.0672 Combinatorics +1207.0677 Learning +1207.0681 +1207.0695 Combinatorics +1207.0696 General Mathematics +1207.0700 Other Statistics +1207.0701 Classical Analysis and ODEs +1207.0702 Neural and Evolutionary Computing +1207.0704 Information Theory +1207.0708 +1207.0715 Analysis of PDEs +1207.0732 +1207.0742 Artificial Intelligence +1207.0743 Optimization and Control +1207.0753 Distributed, Parallel, and Cluster Computing +1207.0757 Information Theory +1207.0759 History and Philosophy of Physics +1207.0760 Group Theory +1207.0762 High Energy Astrophysical Phenomena +1207.0763 Number Theory +1207.0765 Combinatorics +1207.0771 Information Theory +1207.0774 Solar and Stellar Astrophysics +1207.0775 Optimization and Control +1207.0780 Distributed, Parallel, and Cluster Computing +1207.0783 Learning +1207.0784 Learning +1207.0789 Dynamical Systems +1207.0792 Classical Physics +1207.0794 Materials Science +1207.0797 Methodology +astro-ph/0511133 +astro-ph/0701377 +hep-ph/0310159 Phenomenology +hep-ph/0508183 Phenomenology +hep-ph/0602130 Phenomenology +0707.3404 Algebraic Geometry +0710.0275 +0802.2430 Accelerator Physics +0803.3485 Functional Analysis +0806.2974 +0809.4859 +0810.5054 +0901.1552 Algebraic Geometry +0906.5513 Other Condensed Matter +0907.2465 +0910.5412 Dynamical Systems +0911.0811 Phenomenology +0912.2064 Symplectic Geometry +1002.3516 Quantum Gases +1005.4733 Optimization and Control +1006.2562 Commutative Algebra +1007.4338 +1009.5715 Combinatorics +1010.2096 Quantum Algebra +1010.3995 +1010.4223 Other Condensed Matter +1011.3727 Earth and Planetary Astrophysics +1012.2134 +1012.2540 Rings and Algebras +1101.1247 Theory +1101.1683 Representation Theory +1101.2582 Probability +1101.4480 Combinatorics +1103.0124 Plasma Physics +1104.3572 Phenomenology +1104.5052 History and Overview +1105.1664 Plasma Physics +1105.2756 Superconductivity +1105.4916 Phenomenology +1105.5295 Statistical Mechanics +1105.5386 Strongly Correlated Electrons +1106.2855 Plasma Physics +1106.3838 Combinatorics +1106.5925 Quantum Gases +1107.1172 Differential Geometry +1107.2487 Optimization and Control +1107.4664 History and Philosophy of Physics +1107.5934 Superconductivity +1108.2940 Representation Theory +1108.3970 Hardware Architecture +1109.0260 Strongly Correlated Electrons +1109.4377 +1109.4629 +1109.4960 Optimization and Control +1109.5960 Strongly Correlated Electrons +1109.6587 Soft Condensed Matter +1110.2098 Learning +1110.2844 Mesoscale and Nanoscale Physics +1110.3589 Algebraic Geometry +1110.6359 Mesoscale and Nanoscale Physics +1110.6584 Metric Geometry +1110.6862 Lattice +1111.0585 +1111.0916 Lattice +1111.1912 Probability +1111.1959 Theory +1111.3748 +1111.3994 Statistics Theory +1111.5050 Representation Theory +1111.6195 Quantum Algebra +1111.7117 Phenomenology +1112.1543 Superconductivity +1112.3351 +1112.4227 Theory +1112.4414 +1112.4591 +1201.1047 Operator Algebras +1201.1639 Probability +1201.3392 Quantum Algebra +1201.3670 Combinatorics +1201.6130 Trading and Market Microstructure +1201.6333 Mesoscale and Nanoscale Physics +1202.1848 Cosmology and Nongalactic Astrophysics +1202.2845 Phenomenology +1202.4655 Combinatorics +1202.4930 Statistical Mechanics +1203.0394 Algebraic Geometry +1203.2230 Atmospheric and Oceanic Physics +1203.3884 Populations and Evolution +1203.4699 Superconductivity +1203.5052 Other Condensed Matter +1203.5759 Quantum Algebra +1203.5903 Pricing of Securities +1203.6054 Quantum Gases +1203.6625 Theory +1203.6862 Mesoscale and Nanoscale Physics +1204.0773 Theory +1204.1361 Theory +1204.2479 Mesoscale and Nanoscale Physics +1204.2487 Quantum Gases +1204.3603 Optics +1204.5207 Classical Analysis and ODEs +1205.0427 High Energy Astrophysical Phenomena +1205.1441 Mesoscale and Nanoscale Physics +1205.1446 Phenomenology +1205.2368 Cosmology and Nongalactic Astrophysics +1205.2753 Dynamical Systems +1205.2997 Representation Theory +1205.3078 Optimization and Control +1205.5968 +1206.1676 High Energy Astrophysical Phenomena +1206.2364 General Mathematics +1206.2398 Methodology +1206.4774 Number Theory +1206.5895 Superconductivity +1206.5948 Experiment +1206.7093 +1207.0447 Mesoscale and Nanoscale Physics +1207.1153 Optimization and Control +1207.1609 Number Theory +1207.2147 High Energy Astrophysical Phenomena +1207.2526 Cosmology and Nongalactic Astrophysics +1207.3147 Strongly Correlated Electrons +1207.3732 Distributed, Parallel, and Cluster Computing +1207.4117 Artificial Intelligence +1207.5456 Physics Education +1207.6390 Phenomenology +1207.6517 Phenomenology +1207.6527 Materials Science +1207.6873 Cryptography and Security +1207.6985 +1208.0262 +1208.0529 Optimization and Control +1208.0564 Cryptography and Security +1208.0581 Networking and Internet Architecture +1208.0591 Networking and Internet Architecture +1208.0611 Fluid Dynamics +1208.0824 General Physics +1208.0831 Strongly Correlated Electrons +1208.0840 Quantum Algebra +1208.0845 +1208.0846 High Energy Astrophysical Phenomena +1208.0847 Accelerator Physics +1208.0853 Strongly Correlated Electrons +1208.0854 Optics +1208.0856 Operator Algebras +1208.0864 Optimization and Control +1208.0870 Combinatorics +1208.0872 Optics +1208.0873 Optics +1208.0875 Combinatorics +1208.0885 Materials Science +1208.0887 Computers and Society +1208.0891 Computers and Society +1208.0892 Other Computer Science +1208.0893 Phenomenology +1208.0895 Classical Analysis and ODEs +1208.0900 Experiment +1208.0903 Mesoscale and Nanoscale Physics +1208.0904 +1208.0905 Functional Analysis +1208.0907 +1208.0908 +1208.0911 Probability +1208.0913 Algebraic Geometry +1208.0920 Combinatorics +1208.0922 Combinatorics +1208.0923 Analysis of PDEs +1208.0924 Applications +1208.0929 Superconductivity +1208.0931 K-Theory and Homology +1208.0932 Materials Science +1208.0936 Functional Analysis +1208.0941 +1208.0944 Other Computer Science +1208.0945 Computation +1208.0946 Systems and Control +1208.0947 Complex Variables +1208.0960 Superconductivity +1208.0967 Computer Vision and Pattern Recognition +1208.0971 Combinatorics +1208.0972 Medical Physics +1208.0973 History and Overview +1208.0974 Number Theory +1208.0975 History and Overview +1208.0977 Commutative Algebra +1208.0979 Functional Analysis +1208.0984 Learning +1208.0985 Dynamical Systems +1208.0986 Neurons and Cognition +1208.0989 Geometric Topology +1208.0990 +1208.0992 Representation Theory +1208.0995 Hardware Architecture +1208.0996 Networking and Internet Architecture +1208.0997 Networking and Internet Architecture +1208.0998 Plasma Physics +1208.0999 Cryptography and Security +1208.1001 Probability +1208.1003 Analysis of PDEs +1208.1004 Social and Information Networks +1208.1008 Group Theory +1208.1009 Computational Physics +1208.1011 Information Retrieval +1208.1019 +1208.1021 Differential Geometry +1208.1023 Dynamical Systems +1208.1029 +1208.1032 Optimization and Control +1208.1033 Classical Analysis and ODEs +1208.1042 Cosmology and Nongalactic Astrophysics +1208.1044 Commutative Algebra +1208.1046 Cosmology and Nongalactic Astrophysics +1208.1049 Numerical Analysis +1208.1050 Experiment +1208.1052 Combinatorics +1208.1055 Phenomenology +1208.1069 Soft Condensed Matter +1208.1074 Geometric Topology +1208.1075 Combinatorics +1208.1076 +1208.1077 Geometric Topology +1208.1079 Superconductivity +1208.1083 Group Theory +1208.1085 Materials Science +1208.1086 Strongly Correlated Electrons +1208.1087 Applications +1208.1096 Materials Science +1208.1100 Probability +1208.1103 Artificial Intelligence +1208.1111 Information Theory +1208.1119 Optics +1208.1122 +1208.1127 Spectral Theory +1208.1128 Materials Science +1208.1130 High Energy Astrophysical Phenomena +1208.1131 Number Theory +1208.1136 Artificial Intelligence +1208.1137 Optimization and Control +1208.1140 +1208.1143 Fluid Dynamics +1208.1148 Phenomenology +1208.1149 Networking and Internet Architecture +1208.1154 Statistics Theory +1208.1158 Superconductivity +1208.1167 Astrophysics of Galaxies +1208.1170 Experiment +1208.1173 Combinatorics +1208.1184 Computer Science and Game Theory +1208.1185 Cosmology and Nongalactic Astrophysics +1208.1189 Risk Management +1208.1201 Functional Analysis +1208.1203 Functional Analysis +1208.1206 Differential Geometry +1208.1207 Networking and Internet Architecture +1208.1210 +1208.1213 Quantum Gases +1208.1216 High Energy Astrophysical Phenomena +1208.1217 Cryptography and Security +1208.1219 Superconductivity +1208.1221 Chemical Physics +1208.1225 Information Theory +1208.1227 Number Theory +1208.1230 Networking and Internet Architecture +1208.1233 Geophysics +1208.1235 Materials Science +1208.1243 +1208.1245 Materials Science +1208.1246 Materials Science +1208.1248 Data Structures and Algorithms +1208.1249 Instrumentation and Detectors +1208.1256 +quant-ph/0503027 +quant-ph/9703030 +0707.1253 +0707.2751 Phenomenology +0808.1047 Theory +0811.4539 Category Theory +0812.1318 Theory +0901.4379 Information Theory +0902.0446 +0908.0727 Differential Geometry +1001.4959 Mesoscale and Nanoscale Physics +1001.5057 +1002.0906 +1002.2792 Classical Physics +1003.1404 Probability +1003.5478 Mesoscale and Nanoscale Physics +1003.5621 Metric Geometry +1004.0694 Cosmology and Nongalactic Astrophysics +1006.0496 Information Theory +1008.0370 Quantum Algebra +1008.4228 Other Condensed Matter +1009.0739 Lattice +1009.4848 Analysis of PDEs +1010.5005 Numerical Analysis +1011.2244 Dynamical Systems +1011.3314 Strongly Correlated Electrons +1011.4049 +1011.5474 Atomic Physics +1012.4976 Computational Finance +1012.5636 Differential Geometry +1102.2201 Statistical Mechanics +1102.4202 Symplectic Geometry +1103.2360 Theory +1103.4203 Rings and Algebras +1104.0872 Computational Complexity +1104.2314 Quantum Gases +1104.3207 Information Theory +1104.4666 Logic +1104.4773 Rings and Algebras +1105.0984 Disordered Systems and Neural Networks +1106.0115 Superconductivity +1106.0746 Cosmology and Nongalactic Astrophysics +1106.3606 Number Theory +1106.6215 Information Retrieval +1107.1236 High Energy Astrophysical Phenomena +1107.2440 Probability +1107.3652 Cosmology and Nongalactic Astrophysics +1108.0011 Combinatorics +1108.2305 General Finance +1108.3516 Data Structures and Algorithms +1108.3992 Probability +1108.4129 Networking and Internet Architecture +1108.4412 Functional Analysis +1108.4931 Theory +1109.0985 +1109.1685 Theory +1109.2808 Analysis of PDEs +1109.3327 Dynamical Systems +1109.3819 Statistical Mechanics +1109.4539 Disordered Systems and Neural Networks +1109.6357 Mesoscale and Nanoscale Physics +1109.6568 +1109.6678 Cosmology and Nongalactic Astrophysics +1110.0120 Representation Theory +1110.0632 Algebraic Geometry +1110.0691 Symplectic Geometry +1110.0722 Algebraic Geometry +1110.1024 +1110.2329 Materials Science +1110.5511 General Physics +1110.6078 Optimization and Control +1110.6195 Strongly Correlated Electrons +1110.6406 Strongly Correlated Electrons +1111.1084 Symbolic Computation +1111.1331 Pricing of Securities +1111.2862 Cosmology and Nongalactic Astrophysics +1111.3850 Superconductivity +1111.5333 +1111.5403 Number Theory +1111.6374 Performance +1111.7043 +1111.7272 Superconductivity +1112.0234 High Energy Astrophysical Phenomena +1112.0641 Soft Condensed Matter +1112.2621 Mesoscale and Nanoscale Physics +1112.3056 Experiment +1112.4100 Numerical Analysis +1112.5235 Analysis of PDEs +1112.6288 Mesoscale and Nanoscale Physics +1201.2430 Programming Languages +1201.3183 Complex Variables +1201.4814 Phenomenology +1201.5198 Physics and Society +1201.5478 Optimization and Control +1202.1057 Strongly Correlated Electrons +1202.1125 Statistics Theory +1202.2014 Phenomenology +1202.2463 Complex Variables +1202.3263 Mesoscale and Nanoscale Physics +1202.3839 +1202.3966 Statistical Mechanics +1202.4134 Computer Science and Game Theory +1202.5946 Statistical Mechanics +1202.6453 +1203.1264 +1203.1459 Superconductivity +1203.1769 Spectral Theory +1203.2081 Distributed, Parallel, and Cluster Computing +1203.2348 Symplectic Geometry +1203.3378 Lattice +1203.3903 Phenomenology +1203.4456 Strongly Correlated Electrons +1203.5120 Quantum Gases +1203.6837 Superconductivity +1204.0312 Statistical Mechanics +1204.1004 Statistical Mechanics +1204.1867 Biological Physics +1204.2204 Distributed, Parallel, and Cluster Computing +1204.2978 Mesoscale and Nanoscale Physics +1204.3150 Materials Science +1204.5344 Other Condensed Matter +1204.6265 Statistics Theory +1204.6350 Information Theory +1204.6581 Mesoscale and Nanoscale Physics +1205.0121 Optimization and Control +1205.0572 Probability +1205.0668 Digital Libraries +1205.1237 Complex Variables +1205.3135 Number Theory +1205.4378 Artificial Intelligence +1205.4388 Mesoscale and Nanoscale Physics +1205.4397 Combinatorics +1205.5342 Analysis of PDEs +1205.5654 Soft Condensed Matter +1205.6427 Instrumentation and Detectors +1205.6903 Information Theory +1206.0612 Representation Theory +1206.0864 +1206.0946 Popular Physics +1206.1464 +1206.1514 Analysis of PDEs +1206.1943 Distributed, Parallel, and Cluster Computing +1206.2101 Cosmology and Nongalactic Astrophysics +1206.2758 Mesoscale and Nanoscale Physics +1206.2861 Classical Analysis and ODEs +1206.2994 Information Theory +1206.3065 Optimization and Control +1206.3562 Other Computer Science +1206.3563 Differential Geometry +1206.3565 Spectral Theory +1206.3569 Instrumentation and Methods for Astrophysics +1206.3588 Functional Analysis +1206.3591 Combinatorics +1206.3594 Computer Vision and Pattern Recognition +1206.3596 Combinatorics +1206.3598 Number Theory +1206.3601 Applications +1206.3602 Information Theory +1206.3603 Data Structures and Algorithms +1206.3609 Strongly Correlated Electrons +1206.3610 Functional Analysis +1206.3612 Information Theory +1206.3618 Information Theory +1206.3628 Computational Geometry +1206.3629 Analysis of PDEs +1206.3631 Materials Science +1206.3633 Computer Vision and Pattern Recognition +1206.3634 Data Structures and Algorithms +1206.3638 +1206.3639 Representation Theory +1206.3640 Earth and Planetary Astrophysics +1206.3641 +1206.3642 Statistical Mechanics +1206.3644 +1206.3655 Complex Variables +1206.3657 Phenomenology +1206.3658 Artificial Intelligence +1206.3659 Analysis of PDEs +1206.3661 History and Overview +1206.3664 Digital Libraries +1206.3666 Learning +1206.3667 Information Retrieval +1206.3672 Probability +1206.3673 +1206.3676 Other Condensed Matter +1206.3678 Other Condensed Matter +1206.3679 Rings and Algebras +1206.3680 +1206.3682 +1206.3683 +1206.3685 Differential Geometry +1206.3686 +1206.3689 +1206.3691 Probability +1206.3692 Dynamical Systems +1206.3694 Analysis of PDEs +1206.3696 Analysis of PDEs +1206.3698 Optics +1206.3702 Complex Variables +1206.3703 Logic +1206.3704 Category Theory +1206.3706 Numerical Analysis +1206.3714 Computer Vision and Pattern Recognition +1206.3717 Cryptography and Security +1206.3719 Information Theory +1206.3720 Quantitative Methods +1206.3721 Learning +1206.3722 Computers and Society +1206.3724 Analysis of PDEs +1206.3725 Cosmology and Nongalactic Astrophysics +1206.3727 Fluid Dynamics +1206.3732 Computation +1206.3733 Classical Physics +1206.3734 Statistical Mechanics +1206.3736 Statistical Mechanics +1206.3739 Statistical Mechanics +1206.3743 Mesoscale and Nanoscale Physics +1206.3745 +1206.3748 Materials Science +1206.3756 Analysis of PDEs +1206.3761 Solar and Stellar Astrophysics +1206.3764 Networking and Internet Architecture +1206.3765 +1206.3766 Differential Geometry +1206.3769 High Energy Astrophysical Phenomena +1206.3771 Quantum Algebra +1206.3777 Neural and Evolutionary Computing +1206.3778 Analysis of PDEs +1206.3781 Differential Geometry +1206.3790 Solar and Stellar Astrophysics +1206.3793 Multiagent Systems +1206.3796 Phenomenology +1206.3799 High Energy Astrophysical Phenomena +1206.3815 Phenomenology +1206.3821 Dynamical Systems +1206.3822 Adaptation and Self-Organizing Systems +1206.3828 Optics +1206.3838 Networking and Internet Architecture +1206.3849 Statistical Mechanics +1206.3855 Probability +1206.3857 Classical Physics +1206.3860 Plasma Physics +1206.3866 Mesoscale and Nanoscale Physics +1206.3875 +1206.3877 Data Structures and Algorithms +1206.3879 Algebraic Geometry +1206.3880 Cryptography and Security +1206.3881 Learning +1206.3882 Differential Geometry +1206.3883 Logic in Computer Science +1206.3885 Phenomenology +1206.3889 Operator Algebras +1206.3891 Networking and Internet Architecture +1206.3892 Chemical Physics +1206.3893 Fluid Dynamics +1206.3898 Analysis of PDEs +1206.3906 High Energy Astrophysical Phenomena +1206.3908 Biological Physics +1206.3915 Disordered Systems and Neural Networks +1206.3918 Atomic and Molecular Clusters +1206.3920 Logic +1206.3931 Number Theory +1206.3932 Numerical Analysis +1206.3934 Phenomenology +1206.3937 Theory +1206.3942 General Physics +1206.3944 Optics +1206.3948 Accelerator Physics +1206.3950 Accelerator Physics +1206.3951 Logic +1206.3952 Analysis of PDEs +1206.3954 Accelerator Physics +1206.3962 Differential Geometry +1206.3970 Probability +1206.3972 Earth and Planetary Astrophysics +1206.3975 Graphics +1206.3977 Commutative Algebra +1206.3978 High Energy Astrophysical Phenomena +1206.3988 Networking and Internet Architecture +1206.3991 Data Analysis, Statistics and Probability +1206.3997 Solar and Stellar Astrophysics +1206.3999 Discrete Mathematics +1206.4001 Combinatorics +1206.4004 Numerical Analysis +1206.4007 Statistics Theory +1206.4010 Differential Geometry +1206.4016 Superconductivity +1206.4025 Operator Algebras +1206.4027 Theory +1206.4030 Materials Science +1206.4038 Phenomenology +astro-ph/0607342 +hep-th/9810231 Theory +math/0005136 Probability +math/0102193 Probability +math/0409137 Differential Geometry +math/0611772 Differential Geometry +math/9809145 Probability +math/9909031 Combinatorics +math/9910050 Probability +0706.1918 Metric Geometry +0901.1896 Cosmology and Nongalactic Astrophysics +0903.3436 Statistical Mechanics +0905.1732 Operator Algebras +0907.4754 High Energy Astrophysical Phenomena +0909.0063 +0909.0819 High Energy Astrophysical Phenomena +0909.2897 +0910.4448 Number Theory +0910.5197 Instrumentation and Detectors +0910.5840 Strongly Correlated Electrons +1001.1348 Populations and Evolution +1001.2831 General Finance +1001.3195 Algebraic Geometry +1002.4209 +1003.2139 Dynamical Systems +1004.1236 Optimization and Control +1006.1297 Geometric Topology +1006.1384 Algebraic Geometry +1006.3277 Numerical Analysis +1006.4963 Materials Science +1007.1332 +1008.2930 Analysis of PDEs +1008.3115 Phenomenology +1008.4689 +1008.4749 Algebraic Geometry +1009.2005 Analysis of PDEs +1010.5395 +1011.2484 +1011.5090 Phenomenology +1011.5245 Differential Geometry +1011.6663 K-Theory and Homology +1102.0108 +1102.1351 +1102.1353 +1102.1674 Representation Theory +1102.3564 Instrumentation and Methods for Astrophysics +1103.1035 Quantum Algebra +1103.2256 +1103.2618 Phenomenology +1103.2770 Superconductivity +1104.0175 Statistical Mechanics +1104.1059 Theory +1104.2821 Probability +1104.3113 General Physics +1104.5158 Theory +1105.0430 Theory +1105.0667 +1105.1218 +1105.1835 Phenomenology +1105.3104 Category Theory +1105.3991 Commutative Algebra +1105.6245 Methodology +1106.0398 Strongly Correlated Electrons +1106.1417 +1106.1512 Differential Geometry +1106.3967 Artificial Intelligence +1106.5206 Statistical Mechanics +1106.6286 Instrumentation and Detectors +1107.0242 +1107.1971 Statistics Theory +1107.2377 Strongly Correlated Electrons +1107.2528 Statistical Mechanics +1107.3278 Biomolecules +1107.3689 Machine Learning +1107.4081 Strongly Correlated Electrons +1107.6010 Operator Algebras +1108.0489 +1108.1502 Social and Information Networks +1108.1699 Statistical Mechanics +1108.5127 Statistical Mechanics +1109.1744 +1109.2266 +1109.2847 High Energy Astrophysical Phenomena +1109.3777 +1109.4602 Quantum Gases +1109.5244 Networking and Internet Architecture +1109.6439 Strongly Correlated Electrons +1109.6698 Social and Information Networks +1110.0279 Information Theory +1110.1468 Physics and Society +1110.2138 Materials Science +1110.4634 Cosmology and Nongalactic Astrophysics +1111.1168 Earth and Planetary Astrophysics +1111.1804 Solar and Stellar Astrophysics +1111.2161 Materials Science +1111.2737 Materials Science +1111.4962 +1111.6863 +1112.0225 Theory +1112.1074 Solar and Stellar Astrophysics +1112.1239 Mesoscale and Nanoscale Physics +1112.2285 +1112.2424 Commutative Algebra +1112.2459 Physics and Society +1112.2948 High Energy Astrophysical Phenomena +1112.3618 Materials Science +1112.3826 Mesoscale and Nanoscale Physics +1112.4420 +1112.4896 Experiment +1201.1390 +1201.1900 Physics and Society +1201.5408 Number Theory +1201.5871 Statistics Theory +1201.5984 Methodology +1201.6531 Complex Variables +1202.0623 Popular Physics +1202.0813 Information Theory +1202.1170 Cosmology and Nongalactic Astrophysics +1202.1522 Strongly Correlated Electrons +1202.1739 Phenomenology +1202.1759 Cosmology and Nongalactic Astrophysics +1202.2035 Statistics Theory +1202.2120 Astrophysics of Galaxies +1202.2131 Software Engineering +1202.2133 Analysis of PDEs +1202.2134 Accelerator Physics +1202.2135 Accelerator Physics +1202.2136 Analysis of PDEs +1202.2139 Analysis of PDEs +1202.2140 Accelerator Physics +1202.2143 Methodology +1202.2146 Quantum Gases +1202.2153 Networking and Internet Architecture +1202.2155 Accelerator Physics +1202.2164 +1202.2166 Algebraic Geometry +1202.2167 Artificial Intelligence +1202.2168 Cryptography and Security +1202.2170 Superconductivity +1202.2171 Cryptography and Security +1202.2177 Soft Condensed Matter +1202.2180 Geometric Topology +1202.2182 Atomic Physics +1202.2187 Information Retrieval +1202.2189 +1202.2193 Cosmology and Nongalactic Astrophysics +1202.2195 Phenomenology +1202.2196 Solar and Stellar Astrophysics +1202.2202 Strongly Correlated Electrons +1202.2203 Combinatorics +1202.2204 Classical Analysis and ODEs +1202.2207 Classical Analysis and ODEs +1202.2208 Theory +1202.2215 Social and Information Networks +1202.2217 Analysis of PDEs +1202.2226 Functional Analysis +1202.2235 Classical Analysis and ODEs +1202.2238 +1202.2243 High Energy Astrophysical Phenomena +1202.2246 Earth and Planetary Astrophysics +1202.2252 Solar and Stellar Astrophysics +1202.2261 Robotics +1202.2264 Quantum Algebra +1202.2265 Quantum Algebra +1202.2267 Number Theory +1202.2271 Analysis of PDEs +1202.2275 Commutative Algebra +1202.2286 Strongly Correlated Electrons +1202.2292 Algebraic Topology +1202.2295 Number Theory +1202.2300 Combinatorics +1202.2304 Combinatorics +1202.2305 Dynamical Systems +1202.2306 Optimization and Control +1202.2313 Phenomenology +1202.2314 Biological Physics +1202.2318 Fluid Dynamics +1202.2321 Strongly Correlated Electrons +1202.2322 Mesoscale and Nanoscale Physics +1202.2325 Representation Theory +1202.2327 Logic +1202.2333 +1202.2335 Databases +1202.2340 Algebraic Geometry +1202.2341 Probability +1202.2342 Analysis of PDEs +1202.2345 Phenomenology +1202.2347 History and Philosophy of Physics +math/0202064 Number Theory +math/0303066 Number Theory +math/0403147 Metric Geometry +math/0501420 Combinatorics +math/0503279 Metric Geometry +math/0509508 Number Theory +math/0605494 Combinatorics +math/0607368 Combinatorics +math/0609799 Number Theory +0704.2882 +0712.2239 +0803.0474 +0803.4518 +0810.5697 Differential Geometry +0812.3523 Populations and Evolution +0902.0092 Space Physics +0902.0272 Plasma Physics +0902.1698 Differential Geometry +0902.2812 Astrophysics of Galaxies +0909.0737 Quantitative Methods +0909.3799 Other Condensed Matter +0912.3330 Applications +1002.2103 +1004.2688 Mesoscale and Nanoscale Physics +1005.3133 Representation Theory +1009.0478 Algebraic Geometry +1009.2015 +1011.0517 Combinatorics +1011.6140 Classical Analysis and ODEs +1012.4255 Methodology +1101.6036 Geometric Topology +1103.4130 +1104.0584 Algebraic Topology +1104.3839 +1104.4854 Mesoscale and Nanoscale Physics +1105.5886 Analysis of PDEs +1106.1215 Mesoscale and Nanoscale Physics +1106.4400 +1108.2765 Geometric Topology +1108.3968 Statistics Theory +1108.4130 Statistics Theory +1109.1023 Group Theory +1109.2042 Cosmology and Nongalactic Astrophysics +1109.2948 Probability +1110.6578 Classical Analysis and ODEs +1111.2383 Numerical Analysis +1111.2987 +1111.5195 +1111.5941 Quantum Gases +1112.3898 Operator Algebras +1112.4048 Computation +1112.4232 Adaptation and Self-Organizing Systems +1112.4668 Algebraic Topology +1201.0307 Representation Theory +1201.3033 Rings and Algebras +1201.4618 Quantitative Methods +1201.4871 Logic in Computer Science +1202.2843 Phenomenology +1202.4665 Data Structures and Algorithms +1202.5410 Plasma Physics +1202.5983 Pricing of Securities +1202.6602 Mesoscale and Nanoscale Physics +1203.2683 Dynamical Systems +1203.2827 Algebraic Topology +1203.4750 +1203.5237 Superconductivity +1204.0862 Algebraic Geometry +1204.1680 +1204.2455 Cosmology and Nongalactic Astrophysics +1204.4360 High Energy Astrophysical Phenomena +1204.4780 Superconductivity +1204.4973 Atomic Physics +1204.5655 Subcellular Processes +1205.2300 +1205.3983 Combinatorics +1205.5435 Analysis of PDEs +1205.6210 Machine Learning +1205.6609 Mesoscale and Nanoscale Physics +1206.5378 Mesoscale and Nanoscale Physics +1206.5732 General Physics +1206.5968 Plasma Physics +1206.6559 +1207.0751 Cosmology and Nongalactic Astrophysics +1207.0777 Soft Condensed Matter +1207.0830 Phenomenology +1207.1049 +1207.1836 Networking and Internet Architecture +1207.2659 Atomic Physics +1207.4473 Theory +1207.4529 Complex Variables +1207.5344 Cosmology and Nongalactic Astrophysics +1208.0421 Statistical Mechanics +1208.0877 Theory +1208.1480 Superconductivity +1208.1662 Experiment +1208.2449 Soft Condensed Matter +1208.3478 Theory +1208.3780 Soft Condensed Matter +1208.4956 Accelerator Physics +1208.6039 +1209.1032 Information Theory +1209.3231 Plasma Physics +1209.4503 +1209.5020 Theory +1209.5139 Superconductivity +1209.5945 Superconductivity +1209.6109 Differential Geometry +1209.6535 +1210.0809 Strongly Correlated Electrons +1210.1954 Cosmology and Nongalactic Astrophysics +1210.3054 Materials Science +1210.3392 +1210.3573 Fluid Dynamics +1210.3733 Algebraic Topology +1210.3910 Algebraic Geometry +1210.3913 Fluid Dynamics +1210.3975 +1210.4189 Fluid Dynamics +1210.4263 Programming Languages +1210.4446 Networking and Internet Architecture +1210.4498 Analysis of PDEs +1210.4539 Mathematical Software +1210.4545 Analysis of PDEs +1210.4564 +1210.4565 Representation Theory +1210.4572 Probability +1210.4573 Geometric Topology +1210.4574 Geometric Topology +1210.4578 Probability +1210.4585 Mesoscale and Nanoscale Physics +1210.4595 Combinatorics +1210.4598 Probability +1210.4599 Instrumentation and Detectors +1210.4600 Fluid Dynamics +1210.4601 Learning +1210.4603 Number Theory +1210.4605 Combinatorics +1210.4609 +1210.4611 Accelerator Physics +1210.4613 Accelerator Physics +1210.4615 Theory +1210.4632 +1210.4638 Mesoscale and Nanoscale Physics +1210.4640 Distributed, Parallel, and Cluster Computing +1210.4641 Probability +1210.4644 Other Computer Science +1210.4648 +1210.4651 Dynamical Systems +1210.4654 Statistics Theory +1210.4657 Learning +1210.4659 Number Theory +1210.4661 Logic in Computer Science +1210.4662 Symbolic Computation +1210.4665 Geometric Topology +1210.4666 Statistics Theory +1210.4670 Operator Algebras +1210.4673 Data Structures and Algorithms +1210.4675 Rings and Algebras +1210.4679 Molecular Networks +1210.4681 Combinatorics +1210.4683 Computation +1210.4685 +1210.4686 Software Engineering +1210.4688 Differential Geometry +1210.4689 Experiment +1210.4692 Logic +1210.4695 Neurons and Cognition +1210.4697 Commutative Algebra +1210.4699 +1210.4701 Experiment +1210.4706 +1210.4708 Exactly Solvable and Integrable Systems +1210.4711 Statistics Theory +1210.4715 Functional Analysis +1210.4723 Experiment +1210.4729 Analysis of PDEs +1210.4735 Differential Geometry +1210.4744 Phenomenology +1210.4745 Probability +1210.4751 +1210.4753 Combinatorics +1210.4756 Operator Algebras +1210.4758 Probability +1210.4761 Analysis of PDEs +1210.4762 Statistics Theory +1210.4765 Optimization and Control +1210.4768 Physics and Society +1210.4770 Optimization and Control +1210.4771 Operator Algebras +1210.4775 Group Theory +1210.4784 Dynamical Systems +1210.4788 Classical Analysis and ODEs +1210.4791 Computational Engineering, Finance, and Science +1210.4793 Functional Analysis +1210.4808 Information Theory +1210.4809 Logic +1210.4811 Discrete Mathematics +1210.4815 Theory +1210.4819 Adaptation and Self-Organizing Systems +1210.4821 Number Theory +1210.4823 Analysis of PDEs +1210.4824 Biomolecules +1210.4831 Information Theory +1210.4832 Functional Analysis +hep-th/0107122 Theory +0711.4969 Phenomenology +0803.2508 +0803.3064 +0805.2106 +0807.2289 +0807.2612 Computational Physics +0810.3742 Geometric Topology +0812.4924 +0901.0960 +0903.4601 Combinatorics +0906.3277 +0907.2813 Other Condensed Matter +0909.1637 Materials Science +0909.4277 Operator Algebras +0910.2054 +0911.0828 +0911.2504 +0912.1517 +1001.0118 Theory +1003.3595 Algebraic Geometry +1006.2237 Group Theory +1007.4872 Information Theory +1010.4520 Analysis of PDEs +1011.0133 Earth and Planetary Astrophysics +1011.3863 Instrumentation and Methods for Astrophysics +1012.1397 +1102.4965 +1103.3284 Optimization and Control +1104.0060 +1104.1595 Probability +1104.5438 Theory +1105.3181 Theory +1105.4368 Theory +1106.5335 Theory +1107.4512 Statistics Theory +1107.5603 Algebraic Geometry +1109.3071 Physics and Society +1109.4449 Number Theory +1109.4551 Geometric Topology +1109.4553 Geometric Topology +1109.4785 Functional Analysis +1109.5297 +1109.5530 Analysis of PDEs +1110.0823 Astrophysics of Galaxies +1110.4413 Astrophysics of Galaxies +1110.6897 Analysis of PDEs +1111.1617 +1111.5461 High Energy Astrophysical Phenomena +1112.1101 Statistical Mechanics +1112.3581 +1112.4860 +1112.5335 Cosmology and Nongalactic Astrophysics +1112.6368 Superconductivity +1201.2790 Cosmology and Nongalactic Astrophysics +1201.2881 Superconductivity +1201.3765 General Physics +1201.4965 Classical Physics +1201.6521 Materials Science +1202.0203 Number Theory +1202.2880 Information Retrieval +1202.3295 Materials Science +1202.4109 Number Theory +1202.6111 +1203.0502 Biological Physics +1203.2099 +1203.2767 Theory +1203.4073 Statistical Mechanics +1203.4220 Phenomenology +1203.5363 +1204.5685 Disordered Systems and Neural Networks +1204.5957 Materials Science +1204.6156 Algebraic Geometry +1205.0993 Probability +1205.1030 Lattice +1205.1792 +1205.3311 Phenomenology +1205.3435 Populations and Evolution +1205.4018 Phenomenology +1205.5253 Materials Science +1205.6330 Mesoscale and Nanoscale Physics +1206.0062 Statistical Mechanics +1206.1955 Methodology +1206.2595 Phenomenology +1206.2927 Strongly Correlated Electrons +1206.6702 +1206.7081 Statistical Mechanics +1207.0075 Superconductivity +1207.2198 Mesoscale and Nanoscale Physics +1207.2996 Materials Science +1207.4901 Atomic Physics +1207.5502 +1207.5704 Tissues and Organs +1207.6477 Soft Condensed Matter +1207.7318 Superconductivity +1208.0498 Phenomenology +1208.0738 Experiment +1208.1238 Rings and Algebras +1208.2289 Phenomenology +1208.3931 Astrophysics of Galaxies +1208.4521 Phenomenology +1208.6258 +1209.0329 Optics +1209.0860 Phenomenology +1209.0892 Materials Science +1209.1377 Phenomenology +1209.3254 +1209.4432 Analysis of PDEs +1209.4909 Classical Analysis and ODEs +1209.6307 Commutative Algebra +1210.1162 Mesoscale and Nanoscale Physics +1210.3105 Exactly Solvable and Integrable Systems +1210.3382 Theory +1210.3494 Other Computer Science +1210.3658 Optimization and Control +1210.4405 Databases +1210.5896 Lattice +1210.5914 Superconductivity +1210.5978 +1210.6179 Combinatorics +1210.6223 Mesoscale and Nanoscale Physics +1210.6259 Probability +1210.6364 Metric Geometry +1210.6365 Information Theory +1210.6366 Combinatorics +1210.6370 Computer Science and Game Theory +1210.6378 Numerical Analysis +1210.6380 Combinatorics +1210.6384 Distributed, Parallel, and Cluster Computing +1210.6385 Cryptography and Security +1210.6395 Information Theory +1210.6398 Computer Science and Game Theory +1210.6400 Number Theory +1210.6401 +1210.6403 Optimization and Control +1210.6406 Rings and Algebras +1210.6411 Distributed, Parallel, and Cluster Computing +1210.6412 Distributed, Parallel, and Cluster Computing +1210.6413 Logic in Computer Science +1210.6414 Logic in Computer Science +1210.6415 Artificial Intelligence +1210.6416 Probability +1210.6420 K-Theory and Homology +1210.6426 Superconductivity +1210.6427 General Physics +1210.6429 Number Theory +1210.6435 Fluid Dynamics +1210.6441 Cryptography and Security +1210.6447 Operating Systems +1210.6450 Computer Science and Game Theory +1210.6453 History and Philosophy of Physics +1210.6455 Combinatorics +1210.6457 Analysis of PDEs +1210.6458 Theory +1210.6460 Combinatorics +1210.6464 Representation Theory +1210.6465 Data Structures and Algorithms +1210.6466 Instrumentation and Methods for Astrophysics +1210.6468 Dynamical Systems +1210.6471 +1210.6472 Analysis of PDEs +1210.6474 +1210.6478 Classical Analysis and ODEs +1210.6481 Adaptation and Self-Organizing Systems +1210.6482 Molecular Networks +1210.6484 Probability +1210.6487 +1210.6491 +1210.6492 Dynamical Systems +1210.6497 Social and Information Networks +1210.6499 Solar and Stellar Astrophysics +1210.6500 Theory +1210.6502 Discrete Mathematics +1210.6505 Statistical Mechanics +1210.6508 Optimization and Control +1210.6510 Digital Libraries +1210.6512 +1210.6515 Operator Algebras +1210.6517 Logic +1210.6518 Logic +1210.6525 Cosmology and Nongalactic Astrophysics +1210.6537 Differential Geometry +1210.6540 Geometric Topology +1210.6541 Logic +1210.6546 Phenomenology +1210.6552 +1210.6557 Probability +1210.6565 Analysis of PDEs +1210.6566 Analysis of PDEs +1210.6568 Discrete Mathematics +1210.6573 +1210.6581 Combinatorics +1210.6584 Geometric Topology +1210.6585 Group Theory +1210.6588 High Energy Astrophysical Phenomena +1210.6589 Probability +1210.6591 Group Theory +1210.6601 Optics +1210.6605 Biomolecules +1210.6608 Operator Algebras +1210.6616 Commutative Algebra +1210.6619 +1210.6624 Formal Languages and Automata Theory +1210.6625 Operator Algebras +1210.6629 Number Theory +1210.6631 Physics and Society +1210.6636 Software Engineering +1210.6641 Exactly Solvable and Integrable Systems +math/0304128 Number Theory +math/0307205 Number Theory +math/0703035 Commutative Algebra +0707.0009 Functional Analysis +0710.0266 +0710.3267 Representation Theory +0802.1402 K-Theory and Homology +0805.0283 Functional Analysis +0902.1634 Information Theory +0903.0386 Theory +0907.4841 Dynamical Systems +0911.5589 Representation Theory +1001.1314 +1002.2627 Earth and Planetary Astrophysics +1003.1741 Software Engineering +1006.2066 Phenomenology +1007.0370 Probability +1008.2097 Classical Physics +1009.3410 General Topology +1009.4674 Biomolecules +1011.2462 Algebraic Geometry +1012.0503 Probability +1012.0654 Classical Analysis and ODEs +1101.0723 Molecular Networks +1101.1826 +1103.0159 Strongly Correlated Electrons +1103.4230 Algebraic Geometry +1103.5010 Algebraic Geometry +1104.0449 +1105.1478 Mesoscale and Nanoscale Physics +1105.5759 Number Theory +1106.1317 +1106.3879 +1106.4431 Machine Learning +1106.6070 Analysis of PDEs +1107.4722 Computer Science and Game Theory +1107.4860 Commutative Algebra +1107.5241 Social and Information Networks +1108.5301 Analysis of PDEs +1109.0022 Cosmology and Nongalactic Astrophysics +1109.0492 Cosmology and Nongalactic Astrophysics +1109.1411 +1110.0054 Analysis of PDEs +1110.1670 Optimization and Control +1110.3255 Strongly Correlated Electrons +1111.0777 +1111.6711 Probability +1112.0258 Chemical Physics +1112.2190 Phenomenology +1112.2858 Mesoscale and Nanoscale Physics +1112.3352 Theory +1112.4794 Probability +1112.4892 Classical Analysis and ODEs +1112.5402 Theory +1201.0475 +1201.1728 Combinatorics +1201.1957 Mesoscale and Nanoscale Physics +1201.2269 +1201.3560 Quantum Gases +1201.3778 Programming Languages +1201.4818 Dynamical Systems +1201.5323 Strongly Correlated Electrons +1201.5748 Superconductivity +1201.6182 Strongly Correlated Electrons +1201.6251 Human-Computer Interaction +1202.1174 Information Theory +1202.1871 Mesoscale and Nanoscale Physics +1202.4499 High Energy Astrophysical Phenomena +1202.4694 Phenomenology +1202.6047 Strongly Correlated Electrons +1203.0040 +1203.1782 Data Analysis, Statistics and Probability +1203.2601 Cosmology and Nongalactic Astrophysics +1203.2982 Physics and Society +1203.3117 Phenomenology +1203.3807 Quantum Gases +1203.4018 Earth and Planetary Astrophysics +1203.5553 Theory +1203.6043 Materials Science +1203.6513 +1203.6675 Optimization and Control +1204.0058 +1204.0141 Strongly Correlated Electrons +1204.0254 Quantum Algebra +1204.0881 Mesoscale and Nanoscale Physics +1204.2770 Chemical Physics +1204.2943 Solar and Stellar Astrophysics +1204.3864 High Energy Astrophysical Phenomena +1204.5007 Differential Geometry +1205.5280 Superconductivity +1205.6313 Materials Science +1205.6621 Statistical Mechanics +1206.0482 Probability +1206.1630 Combinatorics +1206.1633 Combinatorics +1206.3171 Phenomenology +1206.5335 Data Structures and Algorithms +1206.5449 Statistics Theory +1206.5802 Solar and Stellar Astrophysics +1206.5879 Commutative Algebra +1206.5925 Dynamical Systems +1206.6031 Atomic Physics +1206.6076 Theory +1206.6093 Dynamical Systems +1206.6111 Symplectic Geometry +1206.6114 Probability +1206.6119 Combinatorics +1206.6122 Solar and Stellar Astrophysics +1206.6126 +1206.6136 Fluid Dynamics +1206.6142 Computational Geometry +1206.6146 Functional Analysis +1206.6147 High Energy Astrophysical Phenomena +1206.6148 Computer Science and Game Theory +1206.6150 +1206.6153 Information Theory +1206.6155 Quantum Gases +1206.6168 Operator Algebras +1206.6171 Functional Analysis +1206.6173 Differential Geometry +1206.6174 Combinatorics +1206.6175 Theory +1206.6177 Systems and Control +1206.6178 Superconductivity +1206.6180 Phenomenology +1206.6185 Data Structures and Algorithms +1206.6186 Probability +1206.6187 Data Structures and Algorithms +1206.6188 Classical Analysis and ODEs +1206.6194 Algebraic Geometry +1206.6196 Learning +1206.6197 Earth and Planetary Astrophysics +1206.6202 Data Structures and Algorithms +1206.6206 Optimization and Control +1206.6207 Distributed, Parallel, and Cluster Computing +1206.6210 High Energy Astrophysical Phenomena +1206.6211 Theory +1206.6212 Representation Theory +1206.6213 Hardware Architecture +1206.6215 Phenomenology +1206.6220 Solar and Stellar Astrophysics +1206.6226 +1206.6231 Cosmology and Nongalactic Astrophysics +1206.6232 Dynamical Systems +1206.6233 Analysis of PDEs +1206.6239 Space Physics +1206.6240 Differential Geometry +1206.6242 Materials Science +1206.6243 Geometric Topology +1206.6250 Soft Condensed Matter +1206.6257 Computational Geometry +1206.6258 Combinatorics +1206.6262 Artificial Intelligence +1206.6268 Portfolio Management +1206.6269 +1206.6271 Statistical Mechanics +1206.6273 Instrumentation and Methods for Astrophysics +1206.6279 Discrete Mathematics +1206.6283 Optimization and Control +1206.6284 General Physics +1206.6285 Networking and Internet Architecture +1206.6287 Materials Science +1206.6288 Instrumentation and Methods for Astrophysics +1206.6291 Astrophysics of Galaxies +1206.6292 General Physics +1206.6293 Databases +1206.6294 Physics and Society +1206.6301 Astrophysics of Galaxies +1206.6307 Classical Analysis and ODEs +1206.6308 Algebraic Topology +1206.6311 Phenomenology +1206.6313 Phenomenology +1206.6315 Analysis of PDEs +1206.6317 Optimization and Control +1206.6318 Computational Complexity +1206.6319 Dynamical Systems +1206.6320 Materials Science +1206.6322 Information Retrieval +1206.6327 Combinatorics +1206.6331 Accelerator Physics +1206.6340 Group Theory +1206.6345 Dynamical Systems +1206.6347 Artificial Intelligence +1206.6351 Numerical Analysis +1206.6354 Combinatorics +1206.6358 Solar and Stellar Astrophysics +1206.6360 Computational Complexity +1206.6361 Machine Learning +1206.6364 Classical Analysis and ODEs +1206.6365 Accelerator Physics +1206.6366 Cell Behavior +1206.6367 Methodology +1206.6373 Accelerator Physics +1206.6378 Computation +cs/0505029 Software Engineering +cs/0505043 Graphics +cs/0702134 Computers and Society +0705.4448 Algebraic Geometry +0801.3929 Quantum Algebra +0906.2224 Symplectic Geometry +1002.3577 Logic +1003.1269 Statistical Mechanics +1003.1446 General Physics +1007.1784 Mesoscale and Nanoscale Physics +1007.4647 +1009.6061 Optimization and Control +1010.3812 Data Structures and Algorithms +1010.4122 Geometric Topology +1011.0503 Atomic Physics +1012.0294 Probability +1101.3202 Algebraic Geometry +1102.1205 Complex Variables +1103.5317 Algebraic Geometry +1103.5331 Cosmology and Nongalactic Astrophysics +1104.3283 Data Structures and Algorithms +1104.3284 Data Structures and Algorithms +1104.5597 Computational Geometry +1106.1943 Complex Variables +1106.6060 Strongly Correlated Electrons +1107.1272 +1107.2760 Quantum Algebra +1107.4020 Probability +1108.4694 Superconductivity +1108.5354 Cosmology and Nongalactic Astrophysics +1109.0351 Information Theory +1109.2930 Data Structures and Algorithms +1109.3656 Symbolic Computation +1109.4577 Lattice +1109.5137 Theory +1109.5944 Instrumentation and Detectors +1110.5415 Methodology +1111.3535 +1111.4400 Phenomenology +1111.5838 Cosmology and Nongalactic Astrophysics +1111.5845 Fluid Dynamics +1111.7192 +1112.0651 Populations and Evolution +1112.3901 Cosmology and Nongalactic Astrophysics +1112.5825 Atomic Physics +1201.0284 Mesoscale and Nanoscale Physics +1201.4372 +1201.6319 +1202.3231 Statistical Mechanics +1202.3871 Combinatorics +1203.0222 Populations and Evolution +1204.0897 Data Structures and Algorithms +1204.2035 Information Theory +1204.3275 Optimization and Control +1205.0556 Mesoscale and Nanoscale Physics +1205.0915 Materials Science +1205.2427 Mesoscale and Nanoscale Physics +1205.3922 Combinatorics +1205.3972 +1205.4162 Combinatorics +1205.5803 Phenomenology +1205.6613 Statistical Mechanics +1205.6938 +1205.6975 Optics +1206.2633 Phenomenology +1206.3630 Rings and Algebras +1206.6736 +1206.6981 Cosmology and Nongalactic Astrophysics +1206.6999 +1207.0010 High Energy Astrophysical Phenomena +1207.0011 Strongly Correlated Electrons +1207.1629 Mesoscale and Nanoscale Physics +1207.2538 Commutative Algebra +1207.3970 Statistical Mechanics +1207.4057 +1207.4225 Atomic Physics +1207.6156 Statistical Mechanics +1207.6825 Superconductivity +1208.0473 Differential Geometry +1208.1028 +1208.1161 Mesoscale and Nanoscale Physics +1208.1631 Theory +1208.2506 Statistical Mechanics +1208.2851 +1208.5951 Optics +1209.0918 Phenomenology +1209.2941 Theory +1209.3333 Materials Science +1210.0672 Superconductivity +1210.0996 Algebraic Topology +1210.2498 Materials Science +1210.2663 Theory +1210.2986 Optimization and Control +1210.3926 Computation and Language +1210.5081 Phenomenology +1210.5224 Digital Libraries +1210.5667 Solar and Stellar Astrophysics +1210.5709 Spectral Theory +1210.6390 Programming Languages +1210.6849 Phenomenology +1210.7081 Fluid Dynamics +1210.7826 Fluid Dynamics +1210.8011 Software Engineering +1210.8086 Materials Science +1210.8128 Cosmology and Nongalactic Astrophysics +1210.8162 Statistics Theory +1210.8172 Fluid Dynamics +1210.8180 High Energy Astrophysical Phenomena +1210.8184 Social and Information Networks +1210.8187 Strongly Correlated Electrons +1210.8193 Physics and Society +1210.8198 Commutative Algebra +1210.8200 Astrophysics of Galaxies +1210.8202 Dynamical Systems +1210.8207 Rings and Algebras +1210.8209 Analysis of PDEs +1210.8211 Strongly Correlated Electrons +1210.8213 Probability +1210.8214 Analysis of PDEs +1210.8215 Materials Science +1210.8216 Numerical Analysis +1210.8222 Materials Science +1210.8229 Databases +1210.8231 Number Theory +1210.8233 Materials Science +1210.8237 Analysis of PDEs +1210.8242 Databases +1210.8249 Lattice +1210.8251 +1210.8253 Combinatorics +1210.8256 Instrumentation and Methods for Astrophysics +1210.8261 Solar and Stellar Astrophysics +1210.8262 Computer Vision and Pattern Recognition +1210.8265 Phenomenology +1210.8267 Information Theory +1210.8268 Statistics Theory +1210.8270 Cryptography and Security +1210.8272 Soft Condensed Matter +1210.8281 Lattice +1210.8284 Optimization and Control +1210.8285 Dynamical Systems +1210.8291 Learning +1210.8292 Phenomenology +1210.8297 Mesoscale and Nanoscale Physics +1210.8305 Analysis of PDEs +1210.8310 +1210.8313 +1210.8318 Computer Vision and Pattern Recognition +1210.8320 Probability +1210.8340 Functional Analysis +1210.8341 Strongly Correlated Electrons +1210.8346 Astrophysics of Galaxies +1210.8348 +1210.8351 Commutative Algebra +1210.8352 +1210.8353 Machine Learning +1210.8356 Group Theory +1210.8362 Logic +1210.8365 Combinatorics +1210.8374 Differential Geometry +1210.8384 History and Philosophy of Physics +1210.8385 Artificial Intelligence +1210.8390 Combinatorics +1210.8392 Analysis of PDEs +1210.8393 Quantum Algebra +1210.8394 Geometric Topology +1210.8397 Dynamical Systems +1210.8398 Information Theory +1210.8404 Soft Condensed Matter +1210.8406 Neurons and Cognition +1210.8409 Chaotic Dynamics +1210.8410 Optics +1210.8412 +1210.8414 Probability +1210.8415 Neurons and Cognition +1210.8416 Physics and Society +1210.8428 Phenomenology +1210.8431 Lattice +1210.8433 Networking and Internet Architecture +1210.8436 Computation and Language +1210.8437 Combinatorics +1210.8440 Computation and Language +1210.8441 Information Theory +1210.8447 +1210.8448 Differential Geometry +cond-mat/0410604 Strongly Correlated Electrons +math/0612627 Statistics Theory +math/0701308 Group Theory +math/0702147 Combinatorics +0706.0257 Chaotic Dynamics +0708.3661 Combinatorics +0710.0050 Combinatorics +0710.2162 Metric Geometry +0712.1665 Number Theory +0801.4432 Combinatorics +0805.3449 Algebraic Geometry +0807.2712 Materials Science +0807.3296 Algebraic Geometry +0809.3527 Data Structures and Algorithms +0906.2132 Number Theory +0906.2920 Algebraic Geometry +0906.2932 Algebraic Geometry +0907.0845 Combinatorics +0907.1405 Analysis of PDEs +0907.2542 High Energy Astrophysical Phenomena +0908.2411 Materials Science +0910.4200 Metric Geometry +0911.5090 Algebraic Geometry +1001.1982 Algebraic Geometry +1002.4422 Algebraic Geometry +1003.0191 Spectral Theory +1003.1004 Symplectic Geometry +1004.4016 General Physics +1006.1733 +1006.2603 Analysis of PDEs +1007.1685 +1009.1546 +1011.0869 Algebraic Topology +1011.5020 Statistical Finance +1012.5877 Fluid Dynamics +1012.5890 Combinatorics +1101.0477 +1101.3079 Materials Science +1101.3489 Number Theory +1102.0367 Number Theory +1102.2008 Computational Geometry +1102.4493 +1103.1985 Number Theory +1104.2424 Methodology +1104.5051 K-Theory and Homology +1105.4824 Number Theory +1105.5542 Information Theory +1106.2828 Classical Analysis and ODEs +1106.5635 Combinatorics +1106.5664 +1107.1347 +1107.3043 Group Theory +1108.1918 Phenomenology +1109.0130 Chaotic Dynamics +1109.3446 Strongly Correlated Electrons +1109.3630 General Physics +1109.6277 Combinatorics +1109.6762 Analysis of PDEs +1110.0165 Classical Analysis and ODEs +1110.6646 +1111.3826 Optics +1111.3928 Algebraic Geometry +1111.5583 Probability +1112.1350 General Topology +1112.2561 +1112.2813 Phenomenology +1112.3438 Earth and Planetary Astrophysics +1112.3719 Probability +1112.4245 Complex Variables +1112.4696 Geophysics +1112.5400 Mesoscale and Nanoscale Physics +1112.5942 Metric Geometry +1112.6002 +1112.6119 +1201.1148 Strongly Correlated Electrons +1201.3693 Superconductivity +1201.4399 Solar and Stellar Astrophysics +1202.2089 Information Theory +1202.3444 Strongly Correlated Electrons +1202.3641 Systems and Control +1202.4224 Dynamical Systems +1202.4231 High Energy Astrophysical Phenomena +1202.4539 Number Theory +1202.5334 Applications +1203.0725 Phenomenology +1203.1321 Phenomenology +1203.1581 Phenomenology +1203.2427 Classical Analysis and ODEs +1203.2866 Combinatorics +1203.3123 Superconductivity +1203.3739 Probability +1203.3917 Pattern Formation and Solitons +1203.6793 Superconductivity +1204.0162 Popular Physics +1204.1260 Algebraic Geometry +1204.3422 General Finance +1204.3600 +1204.4274 Analysis of PDEs +1204.6271 +1205.1702 Differential Geometry +1205.2306 +1205.2437 Analysis of PDEs +1205.2574 Statistical Mechanics +1205.4086 Populations and Evolution +1205.5829 Populations and Evolution +1205.5930 Analysis of PDEs +1205.7077 Differential Geometry +1206.0246 Number Theory +1206.0416 Theory +1206.0727 +1206.1092 +1206.1772 Materials Science +1206.2404 Data Analysis, Statistics and Probability +1206.2605 +1206.2921 Theory +1206.2951 Instrumentation and Methods for Astrophysics +1206.3853 Statistical Mechanics +1206.5826 +1206.6170 Networking and Internet Architecture +1206.6656 Statistical Mechanics +1207.0114 Algebraic Geometry +1207.0764 Materials Science +1207.1610 +1207.1727 Methodology +1207.3659 Computational Physics +1207.3727 Group Theory +1207.4868 Phenomenology +1207.5294 History and Philosophy of Physics +1207.6975 Quantum Gases +1207.7322 Mesoscale and Nanoscale Physics +1208.0418 Phenomenology +1208.1204 Data Analysis, Statistics and Probability +1208.2156 Mesoscale and Nanoscale Physics +1208.2172 +1208.2601 Mesoscale and Nanoscale Physics +1208.3231 Strongly Correlated Electrons +1208.3716 Computer Vision and Pattern Recognition +1208.3908 Theory +1208.4590 Number Theory +1208.5004 Solar and Stellar Astrophysics +1209.0081 Algebraic Geometry +1209.0318 Mesoscale and Nanoscale Physics +1209.0353 High Energy Astrophysical Phenomena +1209.2751 Theory +1209.3013 Cosmology and Nongalactic Astrophysics +1209.3402 Phenomenology +1209.5647 Data Structures and Algorithms +1210.0182 +1210.0226 Quantum Algebra +1210.0690 Quantitative Methods +1210.1010 +1210.1026 Distributed, Parallel, and Cluster Computing +1210.1795 Algebraic Geometry +1210.2075 +1210.3104 Lattice +1210.3211 Combinatorics +1210.3341 Statistical Mechanics +1210.3820 Superconductivity +1210.4602 Astrophysics of Galaxies +1210.5887 Phenomenology +1210.7569 Commutative Algebra +1211.0184 Cosmology and Nongalactic Astrophysics +1211.0197 Phenomenology +1211.1006 Cosmology and Nongalactic Astrophysics +1211.2585 Cosmology and Nongalactic Astrophysics +1211.4125 Information Theory +1211.4899 Cosmology and Nongalactic Astrophysics +1211.5565 Atomic Physics +1211.5694 Probability +1211.5734 Cosmology and Nongalactic Astrophysics +1211.6303 Representation Theory +1211.6395 Group Theory +1211.6673 Geometric Topology +1211.7109 High Energy Astrophysical Phenomena +1212.0091 Phenomenology +1212.0989 Algebraic Geometry +1212.1519 Symplectic Geometry +1212.3555 Distributed, Parallel, and Cluster Computing +1212.3576 Logic +1212.4398 Combinatorics +1212.4560 Numerical Analysis +1212.4966 Statistics Theory +1212.5173 Group Theory +1212.5229 Analysis of PDEs +1212.5311 Statistics Theory +1212.5515 Differential Geometry +1212.5589 Computational Engineering, Finance, and Science +1212.5590 Information Retrieval +1212.5592 Computational Engineering, Finance, and Science +1212.5593 Computational Engineering, Finance, and Science +1212.5594 Neural and Evolutionary Computing +1212.5595 General Physics +1212.5596 Digital Libraries +1212.5597 General Topology +1212.5599 Computational Engineering, Finance, and Science +1212.5608 General Physics +1212.5613 Methodology +1212.5614 Probability +1212.5615 Methodology +1212.5617 Analysis of PDEs +1212.5619 Neurons and Cognition +1212.5620 Physics and Society +1212.5627 Statistics Theory +1212.5631 Rings and Algebras +1212.5632 Superconductivity +1212.5633 Information Retrieval +1212.5635 Probability +1212.5636 Databases +1212.5637 Learning +1212.5640 Cosmology and Nongalactic Astrophysics +1212.5641 Cosmology and Nongalactic Astrophysics +1212.5643 Numerical Analysis +1212.5645 Data Structures and Algorithms +1212.5646 Combinatorics +1212.5648 Optics +1212.5650 Information Retrieval +1212.5656 Computer Vision and Pattern Recognition +1212.5664 Computational Engineering, Finance, and Science +1212.5665 Computational Engineering, Finance, and Science +1212.5668 Logic +1212.5675 +1212.5679 Information Theory +1212.5681 Mesoscale and Nanoscale Physics +1212.5682 Numerical Analysis +1212.5683 Probability +1212.5685 Analysis of PDEs +1212.5690 Functional Analysis +1212.5692 Programming Languages +1212.5693 High Energy Astrophysical Phenomena +1212.5694 Combinatorics +1212.5701 Learning +1212.5705 Combinatorics +1212.5706 Differential Geometry +1212.5710 Analysis of PDEs +1212.5715 Statistics Theory +1212.5722 +1212.5725 General Topology +1212.5726 General Topology +1212.5727 Mesoscale and Nanoscale Physics +1212.5732 Operator Algebras +1212.5734 Geometric Topology +1212.5739 Soft Condensed Matter +1212.5740 Logic +1212.5743 Representation Theory +1212.5745 General Physics +1212.5748 Analysis of PDEs +1212.5750 Populations and Evolution +1212.5751 +1212.5752 Combinatorics +1212.5753 Theory +1212.5754 Representation Theory +1212.5756 Operator Algebras +1212.5758 +1212.5759 Functional Analysis +1212.5764 Computer Science and Game Theory +1212.5765 Systems and Control +1212.5766 Computer Science and Game Theory +1212.5767 +1212.5769 General Physics +1212.5771 Combinatorics +1212.5773 Analysis of PDEs +1212.5777 Neural and Evolutionary Computing +1212.5782 Information Theory +1212.5784 Numerical Analysis +1212.5789 Information Theory +1212.5793 Complex Variables +1212.5795 Chemical Physics +1212.5799 Astrophysics of Galaxies +1212.5800 Phenomenology +1212.5801 Cryptography and Security +1212.5804 Probability +1212.5805 Phenomenology +1212.5808 Statistical Mechanics +1212.5810 Mesoscale and Nanoscale Physics +1212.5811 Analysis of PDEs +1212.5814 General Physics +1212.5823 +1212.5827 Numerical Analysis +1212.5839 Differential Geometry +1212.5845 Probability +1212.5847 Probability +1212.5849 Solar and Stellar Astrophysics +1212.5854 History and Philosophy of Physics +1212.5855 Information Theory +1212.5856 Instrumentation and Methods for Astrophysics +1212.5858 Mesoscale and Nanoscale Physics +1212.5859 Phenomenology +1212.5860 Statistics Theory +1212.5861 Representation Theory +1212.5863 Social and Information Networks +1212.5866 High Energy Astrophysical Phenomena +1212.5872 Plasma Physics +1212.5874 General Physics +1212.5876 Optics +1212.5878 Analysis of PDEs +1212.5881 Number Theory +1212.5882 Systems and Control +1212.5884 Algebraic Geometry +1212.5885 Differential Geometry +1212.5887 Cosmology and Nongalactic Astrophysics +1212.5898 Phenomenology +1212.5920 Quantum Algebra +1212.5921 Learning +1212.5923 Chemical Physics +1212.5926 Analysis of PDEs +1212.5929 Optimization and Control +1212.5934 Combinatorics +1212.5941 General Physics +1212.5942 Optimization and Control +1212.5945 Functional Analysis +1212.5954 Disordered Systems and Neural Networks +1212.5956 Distributed, Parallel, and Cluster Computing +1212.5959 Computers and Society +1212.5967 Theory +1212.5971 Quantum Algebra +1212.5974 Phenomenology +1212.5976 Fluid Dynamics +1212.5980 Analysis of PDEs +1212.5982 Mesoscale and Nanoscale Physics +1212.5983 Cryptography and Security +1212.5985 Analysis of PDEs +1212.5990 Instrumentation and Detectors +1212.5995 Phenomenology +1212.6002 History and Philosophy of Physics +1212.6004 Representation Theory +1212.6006 Methodology +1212.6015 Representation Theory +1212.6018 Machine Learning +1212.6023 Accelerator Physics +1212.6025 Representation Theory +1212.6028 Differential Geometry +1212.6030 Optimization and Control +1212.6031 Learning +1212.6032 Statistical Mechanics +1212.6034 Differential Geometry +1212.6039 Computational Geometry +1212.6040 Computers and Society +1212.6041 Software Engineering +1212.6044 Soft Condensed Matter +1212.6046 Other Computer Science +1212.6047 Theory +1212.6050 Social and Information Networks +1212.6051 Databases +1212.6054 Robotics +1212.6055 Data Structures and Algorithms +1212.6056 Other Computer Science +1212.6057 Solar and Stellar Astrophysics +1212.6059 Cryptography and Security +1212.6061 Analysis of PDEs +1212.6062 Combinatorics +1212.6064 Differential Geometry +1212.6068 +1212.6069 Optimization and Control +1212.6070 Probability +1212.6079 Optimization and Control +1212.6080 Other Computer Science +1212.6081 Strongly Correlated Electrons +1212.6085 Optimization and Control +1212.6086 Information Theory +1212.6088 Statistics Theory +1212.6089 Optimization and Control +1212.6091 Combinatorics +1212.6092 Combinatorics +1212.6094 Computer Vision and Pattern Recognition +1212.6098 Optimization and Control +1212.6105 +1212.6106 Optimization and Control +1212.6107 Optimization and Control +1212.6110 Learning +1212.6115 Combinatorics +1212.6119 History and Overview +1212.6121 History and Overview +1212.6122 General Topology +1212.6123 +1212.6126 Exactly Solvable and Integrable Systems +1212.6130 +1212.6135 +1212.6137 Statistical Mechanics +1212.6139 Statistical Mechanics +1212.6140 Statistical Mechanics +1212.6144 Soft Condensed Matter +1212.6147 Social and Information Networks +1212.6152 Number Theory +1212.6154 Phenomenology +1212.6159 Mesoscale and Nanoscale Physics +1212.6161 Quantum Gases +1212.6162 +1212.6167 Learning +1212.6169 Algebraic Topology +1212.6170 Algebraic Geometry +1212.6173 Theory +1212.6176 Data Structures and Algorithms +1212.6183 Logic in Computer Science +1212.6185 Lattice +1212.6186 Algebraic Geometry +1212.6188 Superconductivity +1212.6193 Information Retrieval +1212.6195 Analysis of PDEs +1212.6196 Other Computer Science +1212.6198 Analysis of PDEs +1212.6199 Dynamical Systems +1212.6200 Analysis of PDEs +1212.6201 Functional Analysis +1212.6202 Analysis of PDEs +1212.6204 Analysis of PDEs +1212.6206 Differential Geometry +1212.6207 Artificial Intelligence +1212.6210 Geometric Topology +1212.6211 +1212.6219 +1212.6221 Number Theory +1212.6229 Theory +1212.6230 Theory +1212.6234 Methodology +1212.6236 Analysis of PDEs +1212.6241 Other Computer Science +1212.6243 Functional Analysis +1212.6245 Theory +1212.6246 Machine Learning +1212.6250 Multimedia +1212.6254 Probability +math/0702717 Combinatorics +math/9903081 General Mathematics +physics/0511248 Optics +0910.2008 Populations and Evolution +0912.2536 Populations and Evolution +1002.1316 Representation Theory +1005.4455 Numerical Analysis +1008.0574 Theory +1008.0887 Operator Algebras +1009.0235 Probability +1009.3587 General Physics +1009.4225 Combinatorics +1010.6127 Numerical Analysis +1011.4246 Superconductivity +1012.3978 Optimization and Control +1012.4032 Logic in Computer Science +1101.1359 Methodology +1101.4106 High Energy Astrophysical Phenomena +1103.0872 +1103.3129 High Energy Astrophysical Phenomena +1103.4856 +1103.5325 Theory +1104.3687 +1105.2893 Molecular Networks +1106.5886 Solar and Stellar Astrophysics +1107.0498 Numerical Analysis +1107.1222 Information Theory +1108.0034 Differential Geometry +1108.0931 +1108.1630 Populations and Evolution +1108.2040 Phenomenology +1109.3769 +1109.5821 +1109.6471 Solar and Stellar Astrophysics +1110.1214 Portfolio Management +1110.6239 Commutative Algebra +1111.6961 Quantum Gases +1111.7200 Data Analysis, Statistics and Probability +1111.7260 Data Analysis, Statistics and Probability +1112.0020 Quantum Gases +1112.2133 +1112.4294 Optimization and Control +1112.5881 +1201.3911 Dynamical Systems +1201.4258 Mesoscale and Nanoscale Physics +1201.4907 Symplectic Geometry +1201.4925 Algebraic Geometry +1201.5599 +1202.0690 Information Theory +1202.1003 Materials Science +1202.3212 Mesoscale and Nanoscale Physics +1202.3911 Mesoscale and Nanoscale Physics +1202.6315 +1203.0009 Cosmology and Nongalactic Astrophysics +1203.0491 Commutative Algebra +1203.1036 Theory +1203.1621 Strongly Correlated Electrons +1203.2487 Classical Physics +1203.3723 +1203.3919 Other Computer Science +1203.4309 Other Computer Science +1203.4429 Cosmology and Nongalactic Astrophysics +1203.5412 +1203.5978 Theory +1203.6256 +1203.6469 +1204.0066 Instrumentation and Methods for Astrophysics +1204.1384 +1204.4162 Combinatorics +1204.4945 Lattice +1204.5952 Data Structures and Algorithms +1204.6561 Experiment +1205.2195 +1205.3807 Theory +1205.3896 Superconductivity +1205.4239 Cosmology and Nongalactic Astrophysics +1205.4394 Functional Analysis +1205.4987 Phenomenology +1205.5401 +1206.0709 Phenomenology +1206.1026 Theory +1206.3946 High Energy Astrophysical Phenomena +1206.6704 Classical Physics +1207.0591 Instrumentation and Detectors +1207.2146 Popular Physics +1207.3733 Probability +1207.4111 Artificial Intelligence +1207.4915 +1207.6175 Combinatorics +1207.6465 Data Structures and Algorithms +1207.6771 Strongly Correlated Electrons +1207.7064 +1207.7067 Digital Libraries +1207.7069 +1207.7085 Networking and Internet Architecture +1207.7091 High Energy Astrophysical Phenomena +1207.7093 Accelerator Physics +1207.7096 Fluid Dynamics +1207.7098 Statistics Theory +1207.7103 Networking and Internet Architecture +1207.7105 +1207.7106 +1207.7107 Differential Geometry +1207.7109 Cryptography and Security +1207.7110 Algebraic Geometry +1207.7111 +1207.7114 Classical Analysis and ODEs +1207.7118 Functional Analysis +1207.7121 Software Engineering +1207.7123 Symplectic Geometry +1207.7126 Symplectic Geometry +1207.7130 Theory +1207.7134 Data Structures and Algorithms +1207.7135 Materials Science +1207.7140 Probability +1207.7144 Information Theory +1207.7146 Logic in Computer Science +1207.7147 Computational Engineering, Finance, and Science +1207.7148 Logic in Computer Science +1207.7149 Formal Languages and Automata Theory +1207.7150 Programming Languages +1207.7161 Classical Analysis and ODEs +1207.7165 Number Theory +1207.7170 Theory +1207.7172 Materials Science +1207.7175 Algebraic Geometry +1207.7179 Information Theory +1207.7185 Astrophysics of Galaxies +1207.7190 +1207.7192 +1207.7196 Neurons and Cognition +1207.7199 Social and Information Networks +1207.7201 Differential Geometry +1207.7215 Cosmology and Nongalactic Astrophysics +1207.7217 Astrophysics of Galaxies +1207.7221 Earth and Planetary Astrophysics +1207.7222 Information Theory +1207.7238 Materials Science +1207.7241 Distributed, Parallel, and Cluster Computing +1207.7242 Cryptography and Security +1207.7244 Computer Vision and Pattern Recognition +1207.7246 Metric Geometry +1207.7252 Metric Geometry +1207.7254 Metric Geometry +1207.7256 Metric Geometry +1207.7258 Probability +1207.7264 Logic in Computer Science +1207.7266 Metric Geometry +1207.7268 Theory +1207.7274 Social and Information Networks +1207.7275 Phenomenology +1207.7276 Metric Geometry +1207.7279 Metric Geometry +1207.7281 +1207.7286 Metric Geometry +1207.7290 Metric Geometry +1207.7291 Number Theory +1207.7295 Combinatorics +1207.7298 Networking and Internet Architecture +1207.7302 +1207.7306 Methodology +1207.7311 Computation +1207.7316 Statistical Mechanics +1207.7317 Soft Condensed Matter +1207.7319 Mesoscale and Nanoscale Physics +1207.7324 Lattice +1207.7329 Atmospheric and Oceanic Physics +1207.7330 Portfolio Management +1207.7334 Pattern Formation and Solitons +1207.7342 Analysis of PDEs +1207.7347 Information Theory +1207.7350 +1207.7351 Soft Condensed Matter +math/0212068 Analysis of PDEs +0806.0983 Data Structures and Algorithms +0903.5412 Functional Analysis +0905.1915 Combinatorics +0905.3217 Methodology +0908.4287 General Mathematics +0909.0972 Operator Algebras +0909.1338 Information Theory +0910.5306 Probability +0911.1809 Probability +1001.0439 Probability +1003.3174 Differential Geometry +1007.1893 Probability +1011.5152 Materials Science +1011.5165 Mesoscale and Nanoscale Physics +1011.6262 Soft Condensed Matter +1012.4961 Spectral Theory +1101.4847 Mesoscale and Nanoscale Physics +1101.5930 Analysis of PDEs +1102.2306 Mesoscale and Nanoscale Physics +1102.3952 Representation Theory +1105.2042 Number Theory +1106.2848 Applications +1107.0076 Applications +1107.1421 +1107.2486 Mesoscale and Nanoscale Physics +1107.2790 Analysis of PDEs +1107.3045 Analysis of PDEs +1108.2129 +1108.3696 Analysis of PDEs +1108.4771 Probability +1108.5905 Biological Physics +1109.0447 +1109.0844 Soft Condensed Matter +1109.5016 Mesoscale and Nanoscale Physics +1110.3639 Computational Complexity +1110.4110 Superconductivity +1110.6241 +1111.2538 Commutative Algebra +1111.6592 Mesoscale and Nanoscale Physics +1112.4895 Computational Engineering, Finance, and Science +1112.5705 Metric Geometry +1203.2016 +1203.4539 +1203.5747 Data Structures and Algorithms +1203.6626 Probability +1204.1342 Strongly Correlated Electrons +1204.2478 Phenomenology +1204.4479 Solar and Stellar Astrophysics +1204.5295 Phenomenology +1204.5737 Strongly Correlated Electrons +1204.6289 High Energy Astrophysical Phenomena +1205.0948 Spectral Theory +1205.0959 +1205.2782 Mesoscale and Nanoscale Physics +1205.5161 +1206.0179 +1206.0523 +1206.1015 Commutative Algebra +1206.1221 Soft Condensed Matter +1206.2408 Mesoscale and Nanoscale Physics +1206.2496 Statistics Theory +1206.3091 Mesoscale and Nanoscale Physics +1206.4082 Neurons and Cognition +1206.4738 Theory +1206.4879 Soft Condensed Matter +1206.6745 Phenomenology +1206.6946 Mesoscale and Nanoscale Physics +1207.1106 Strongly Correlated Electrons +1207.6904 Chemical Physics +1208.0218 Optimization and Control +1208.0228 Optimization and Control +1208.0430 Mesoscale and Nanoscale Physics +1208.1681 Chemical Physics +1208.2237 Mesoscale and Nanoscale Physics +1208.2897 Strongly Correlated Electrons +1208.3019 Theory +1208.3517 Rings and Algebras +1208.3970 Computational Physics +1208.5945 Strongly Correlated Electrons +1209.1653 Instrumentation and Methods for Astrophysics +1209.1657 High Energy Astrophysical Phenomena +1209.3574 Phenomenology +1209.5723 Earth and Planetary Astrophysics +1209.5960 General Physics +1210.0157 Metric Geometry +1210.0202 Experiment +1210.1172 Biological Physics +1210.1368 Mesoscale and Nanoscale Physics +1210.1624 Information Theory +1210.1692 +1210.2819 Exactly Solvable and Integrable Systems +1210.3069 Cosmology and Nongalactic Astrophysics +1210.3199 Mesoscale and Nanoscale Physics +1210.3329 Soft Condensed Matter +1210.3364 Plasma Physics +1210.3368 Distributed, Parallel, and Cluster Computing +1210.3369 Solar and Stellar Astrophysics +1210.3370 Group Theory +1210.3375 Artificial Intelligence +1210.3377 Phenomenology +1210.3380 Fluid Dynamics +1210.3385 Physics Education +1210.3386 Physics Education +1210.3389 Rings and Algebras +1210.3394 Differential Geometry +1210.3396 Strongly Correlated Electrons +1210.3397 Operator Algebras +1210.3398 Operator Algebras +1210.3400 Complex Variables +1210.3406 Earth and Planetary Astrophysics +1210.3412 Physics Education +1210.3415 Combinatorics +1210.3418 +1210.3420 Social and Information Networks +1210.3424 +1210.3427 Information Theory +1210.3429 Analysis of PDEs +1210.3434 Probability +1210.3435 Networking and Internet Architecture +1210.3437 Networking and Internet Architecture +1210.3438 Robotics +1210.3440 Probability +1210.3444 Optics +1210.3448 Computer Vision and Pattern Recognition +1210.3453 Astrophysics of Galaxies +1210.3459 Cosmology and Nongalactic Astrophysics +1210.3460 Spectral Theory +1210.3462 Dynamical Systems +1210.3468 Materials Science +1210.3477 Applications +1210.3478 Lattice +1210.3480 Tissues and Organs +1210.3482 Optics +1210.3483 Solar and Stellar Astrophysics +1210.3488 Rings and Algebras +1210.3489 Instrumentation and Methods for Astrophysics +1210.3490 Phenomenology +1210.3491 Other Computer Science +1210.3495 Solar and Stellar Astrophysics +1210.3497 Instrumentation and Detectors +1210.3499 Solar and Stellar Astrophysics +1210.3502 Plasma Physics +1210.3505 Solar and Stellar Astrophysics +1210.3506 Fluid Dynamics +1210.3508 Quantum Gases +1210.3511 Analysis of PDEs +1210.3513 Analysis of PDEs +1210.3515 High Energy Astrophysical Phenomena +1210.3520 Rings and Algebras +1210.3525 Probability +1210.3526 Number Theory +1210.3527 Quantitative Methods +1210.3528 Chaotic Dynamics +1210.3535 Fluid Dynamics +1210.3538 Fluid Dynamics +1210.3540 Soft Condensed Matter +1210.3545 Theory +1210.3554 +1210.3556 Dynamical Systems +1210.3558 Fluid Dynamics +1210.3559 Computational Physics +1210.3561 Quantitative Methods +1210.3563 Information Theory +1210.3566 Strongly Correlated Electrons +1210.3572 Analysis of PDEs +1210.3575 History and Philosophy of Physics +1210.3581 Combinatorics +1210.3583 Information Theory +1210.3585 Representation Theory +1210.3587 Social and Information Networks +1210.3588 Fluid Dynamics +1210.3592 Cosmology and Nongalactic Astrophysics +1210.3593 Programming Languages +1210.3594 Phenomenology +1210.3595 Computational Geometry +1210.3597 General Literature +1210.3598 Networking and Internet Architecture +1210.3599 Logic in Computer Science +1210.3602 High Energy Astrophysical Phenomena +1210.3604 Software Engineering +1210.3606 Mesoscale and Nanoscale Physics +1210.3608 Geometric Topology +1210.3609 Information Theory +astro-ph/0110412 +math/0506099 Classical Analysis and ODEs +0704.2149 Representation Theory +0711.3423 Classical Analysis and ODEs +0804.0182 Phenomenology +0804.1990 Representation Theory +0810.4654 Classical Analysis and ODEs +0811.0975 +0811.1213 Classical Analysis and ODEs +0811.2097 Probability +0812.3160 Materials Science +0901.4076 History and Overview +0901.4283 Representation Theory +0903.2634 Probability +0903.4767 Representation Theory +0905.3922 Phenomenology +0908.4408 Populations and Evolution +0909.4739 Representation Theory +0910.0606 Algebraic Geometry +0911.0777 Probability +0911.4073 +0912.2635 Theory +1001.1540 Combinatorics +1002.0326 Analysis of PDEs +1002.4853 Combinatorics +1003.4325 Symplectic Geometry +1003.6058 General Topology +1004.4937 Group Theory +1004.5591 Strongly Correlated Electrons +1005.0307 General Topology +1005.0857 High Energy Astrophysical Phenomena +1005.1217 Cosmology and Nongalactic Astrophysics +1005.3327 Strongly Correlated Electrons +1005.4987 Combinatorics +1006.2275 Functional Analysis +1006.5135 Probability +1008.1006 Probability +1008.2664 Chaotic Dynamics +1008.5310 Materials Science +1008.5311 Materials Science +1009.3896 Learning +1010.0773 Probability +1010.1069 Information Theory +1010.1071 Information Theory +1010.2275 Number Theory +1011.4217 Rings and Algebras +1012.1110 Number Theory +1012.2104 Differential Geometry +1012.3653 Phenomenology +1012.4170 General Literature +1012.6012 Information Theory +1101.4759 Representation Theory +1102.5375 Classical Analysis and ODEs +1103.1072 +1103.2637 High Energy Astrophysical Phenomena +1103.2674 Dynamical Systems +1104.1480 Atomic Physics +1105.0047 +1105.4342 General Topology +1105.4494 Algebraic Geometry +1106.2107 Operator Algebras +1106.5217 Algebraic Geometry +1107.0929 Data Analysis, Statistics and Probability +1107.1381 Combinatorics +1108.0076 Quantum Gases +1108.0242 Theory +1108.1164 +1108.1974 +1108.6080 Cosmology and Nongalactic Astrophysics +1109.3322 Logic in Computer Science +1110.0110 Computation +1110.2782 Strongly Correlated Electrons +1110.4519 Classical Analysis and ODEs +1110.4865 Probability +1110.5588 Algebraic Geometry +1110.5689 Functional Analysis +1111.3474 Representation Theory +1111.5193 +1111.5718 Algebraic Geometry +1111.7255 Exactly Solvable and Integrable Systems +1112.0947 +1112.1942 Group Theory +1112.2080 +1112.3218 +1112.3236 Solar and Stellar Astrophysics +1112.3425 Experiment +1112.3558 +1201.0382 Logic +1201.2753 Chemical Physics +1201.3111 +1201.3739 Analysis of PDEs +1201.4236 Complex Variables +1202.0660 Phenomenology +1202.6578 +1203.0948 Quantum Gases +1203.1625 Cosmology and Nongalactic Astrophysics +1203.1885 +1203.2693 Functional Analysis +1203.2791 Number Theory +1203.4108 Symplectic Geometry +1204.1773 +1204.2043 Physics and Society +1204.2140 Exactly Solvable and Integrable Systems +1204.2664 Methodology +1204.5362 Theory +1204.5454 Chaotic Dynamics +1204.5733 Mesoscale and Nanoscale Physics +1204.6105 Information Theory +1205.0146 +1205.0890 Theory +1205.2690 General Physics +1205.3065 Statistical Mechanics +1205.3383 Chemical Physics +1205.3528 Strongly Correlated Electrons +1205.4614 +1205.4934 +1205.6940 Cosmology and Nongalactic Astrophysics +1206.0088 Probability +1206.0646 +1206.2274 Quantum Gases +1206.3026 Pattern Formation and Solitons +1206.4032 +1206.5972 Solar and Stellar Astrophysics +1206.6717 Dynamical Systems +1207.0048 Optimization and Control +1207.1669 +1207.1808 Phenomenology +1207.1857 Solar and Stellar Astrophysics +1207.3700 +1207.4641 Number Theory +1207.6287 Quantum Algebra +1207.6615 Lattice +1207.6699 General Topology +1208.0501 Combinatorics +1208.1220 Lattice +1208.1581 Strongly Correlated Electrons +1208.1608 Theory +1208.2796 Superconductivity +1208.3594 Number Theory +1208.3665 Computer Vision and Pattern Recognition +1208.3901 Computer Vision and Pattern Recognition +1208.4331 Atomic Physics +1208.6161 Optics +1209.0906 +1209.1316 Plasma Physics +1209.1992 Atomic Physics +1209.2019 +1209.2447 Quantum Gases +1209.5258 +1209.5382 Phenomenology +1209.6030 Phenomenology +1210.0253 +1210.0526 Solar and Stellar Astrophysics +1210.2691 Group Theory +1210.3672 Chemical Physics +1210.4014 Other Computer Science +1210.4198 Physics and Society +1210.4713 Risk Management +1210.4732 Combinatorics +1210.5820 Materials Science +1210.6548 Strongly Correlated Electrons +1210.7421 General Physics +1211.0592 Software Engineering +1211.1345 Computational Geometry +1211.1385 High Energy Astrophysical Phenomena +1211.1663 Mesoscale and Nanoscale Physics +1211.1978 Cosmology and Nongalactic Astrophysics +1211.4420 Combinatorics +1211.4600 Classical Analysis and ODEs +1211.4886 Theory +1211.5054 Representation Theory +1211.5179 Superconductivity +1211.5458 Algebraic Geometry +1211.5593 Other Condensed Matter +1211.5594 General Physics +1211.5595 Computational Geometry +1211.5598 Instrumentation and Detectors +1211.5610 Probability +1211.5612 Strongly Correlated Electrons +1211.5613 Cryptography and Security +1211.5617 Optimization and Control +1211.5620 Methodology +1211.5625 Computational Engineering, Finance, and Science +1211.5627 +1211.5628 Risk Management +1211.5629 Databases +1211.5633 Molecular Networks +1211.5635 Group Theory +1211.5640 Combinatorics +1211.5642 Spectral Theory +1211.5643 Artificial Intelligence +1211.5644 Artificial Intelligence +1211.5648 Computers and Society +1211.5651 Differential Geometry +1211.5655 Optimization and Control +1211.5656 Combinatorics +1211.5657 Analysis of PDEs +1211.5667 Optics +1211.5670 Geometric Topology +1211.5678 Algebraic Topology +1211.5682 Analysis of PDEs +1211.5687 Learning +1211.5689 Combinatorics +1211.5692 Differential Geometry +1211.5693 Materials Science +1211.5697 Materials Science +1211.5706 Methodology +1211.5708 Physics and Society +1211.5710 Fluid Dynamics +1211.5714 Theory +1211.5715 Geometric Topology +1211.5716 Classical Physics +1211.5718 Information Theory +1211.5719 +1211.5720 Networking and Internet Architecture +1211.5722 Theory +1211.5723 Databases +1211.5724 Databases +1211.5726 Computational Finance +1211.5732 Symplectic Geometry +1211.5733 Statistics Theory +1211.5736 Performance +1211.5738 Performance +1211.5739 Robotics +1211.5740 Robotics +1211.5742 Combinatorics +1211.5744 Mesoscale and Nanoscale Physics +1211.5745 Classical Analysis and ODEs +1211.5747 Distributed, Parallel, and Cluster Computing +1211.5750 Lattice +1211.5752 Dynamical Systems +1211.5753 Functional Analysis +1211.5754 Mesoscale and Nanoscale Physics +1211.5758 Systems and Control +1211.5759 Systems and Control +1211.5761 Systems and Control +1211.5763 Rings and Algebras +1211.5766 Artificial Intelligence +1211.5769 Analysis of PDEs +1211.5773 Computational Complexity +1211.5774 Differential Geometry +1211.5783 Theory +1211.5791 Mesoscale and Nanoscale Physics +1211.5793 Robotics +1211.5795 Robotics +1211.5796 Analysis of PDEs +1211.5800 Combinatorics +1211.5802 Probability +1211.5808 Solar and Stellar Astrophysics +1211.5811 Numerical Analysis +1211.5812 Analysis of PDEs +1211.5817 Databases +1211.5819 Portfolio Management +1211.5820 Digital Libraries +1211.5822 Numerical Analysis +1211.5823 Combinatorics +1211.5826 +1211.5827 Fluid Dynamics +1211.5829 Artificial Intelligence +1211.5831 Representation Theory +1211.5839 Theory +1211.5840 Theory +1211.5841 Phenomenology +1211.5842 Graphics +1211.5843 Cosmology and Nongalactic Astrophysics +1211.5845 Lattice +1211.5849 Differential Geometry +1211.5852 Networking and Internet Architecture +1211.5857 Computer Science and Game Theory +1211.5861 Dynamical Systems +1211.5867 Computational Finance +1211.5870 Information Theory +1211.5873 Software Engineering +1211.5874 Combinatorics +1211.5877 Social and Information Networks +1211.5879 Representation Theory +1211.5882 Information Theory +1211.5884 Information Theory +1211.5888 Information Theory +1211.5890 Computational Engineering, Finance, and Science +1211.5893 Numerical Analysis +1211.5894 Optics +1211.5895 Superconductivity +1211.5896 Probability +1211.5897 +1211.5898 Functional Analysis +1211.5899 Earth and Planetary Astrophysics +1211.5900 Solar and Stellar Astrophysics +1211.5901 Machine Learning +1211.5903 Information Theory +1211.5904 Mathematical Software +1211.5910 Differential Geometry +1211.5911 Number Theory +1211.5916 Fluid Dynamics +1211.5920 Plasma Physics +1211.5923 Soft Condensed Matter +1211.5924 Exactly Solvable and Integrable Systems +1211.5925 Plasma Physics +1211.5929 Superconductivity +1211.5940 Instrumentation and Detectors +1211.5941 Geometric Topology +1211.5944 +1211.5946 Optics +1211.5947 Functional Analysis +1211.5953 Neurons and Cognition +1211.5955 Probability +1211.5958 +1211.5959 Logic +1211.5964 Geometric Topology +1211.5973 Analysis of PDEs +1211.5974 Probability +1211.5978 Materials Science +1211.5980 Theory +1211.5984 Plasma Physics +1211.5988 Optics +1211.5989 General Physics +1211.5991 Experiment +1211.5998 Strongly Correlated Electrons +1211.5999 Representation Theory +1211.6009 K-Theory and Homology +1211.6010 Phenomenology +1211.6022 +1211.6025 Materials Science +1211.6027 Neurons and Cognition +1211.6028 Experiment +1211.6031 +1211.6034 Analysis of PDEs +1211.6040 Algebraic Geometry +1211.6041 Theory +1211.6044 Number Theory +1211.6047 Strongly Correlated Electrons +1211.6054 Commutative Algebra +1211.6059 Differential Geometry +1211.6061 Functional Analysis +1211.6064 Complex Variables +1211.6068 Theory +1211.6074 Numerical Analysis +1211.6076 Numerical Analysis +1211.6083 Analysis of PDEs +1211.6087 Analysis of PDEs +1211.6089 Computational Geometry +math-ph/0112046 +math-ph/0306077 +math-ph/0403037 +math-ph/0505041 +math-ph/9908008 +math/0202018 Representation Theory +math/0202190 Representation Theory +math/0206199 Classical Analysis and ODEs +math/0301070 Classical Analysis and ODEs +math/0304172 Representation Theory +math/0309445 Classical Analysis and ODEs +math/0410242 Representation Theory +math/0411420 Representation Theory +math/0505188 Classical Analysis and ODEs +math/0505693 Functional Analysis +math/0602370 Representation Theory +math/0605125 Algebraic Geometry +physics/0411085 General Physics +quant-ph/0606213 +1106.3588 Complex Variables +1211.0550 Atomic Physics +0705.4072 Mesoscale and Nanoscale Physics +0801.4426 Materials Science +0803.3299 +0805.2196 Differential Geometry +0805.3260 Theory +0807.5081 Theory +0809.0736 Materials Science +0809.2218 Algebraic Topology +0810.3256 Mesoscale and Nanoscale Physics +0812.0117 Probability +0812.2241 Combinatorics +0812.4178 Number Theory +0903.4627 Group Theory +0903.4634 Group Theory +0904.1540 Commutative Algebra +0906.1420 +0907.5396 Mesoscale and Nanoscale Physics +0908.0093 Number Theory +0908.0130 Data Analysis, Statistics and Probability +0908.2590 Combinatorics +0908.3436 Combinatorics +0910.2684 Number Theory +0910.5004 Number Theory +1001.3265 Information Theory +1002.1359 Group Theory +1003.0265 Commutative Algebra +1004.1359 Commutative Algebra +1004.1668 Number Theory +1007.1964 Operator Algebras +1007.3753 Computer Vision and Pattern Recognition +1008.4535 Number Theory +1008.4721 Statistical Mechanics +1008.4747 Information Theory +1009.1454 Commutative Algebra +1009.4549 Representation Theory +1011.3527 Exactly Solvable and Integrable Systems +1012.1262 Combinatorics +1101.0381 General Physics +1101.1666 Combinatorics +1101.5184 Machine Learning +1102.4623 Other Quantitative Biology +1103.0256 General Topology +1103.2824 Geometric Topology +1104.1919 Strongly Correlated Electrons +1104.2679 Optimization and Control +1104.3752 Statistical Mechanics +1104.5615 +1105.2512 Disordered Systems and Neural Networks +1105.3213 General Physics +1105.4469 Cosmology and Nongalactic Astrophysics +1105.5933 Data Structures and Algorithms +1105.6086 Earth and Planetary Astrophysics +1106.0327 Mesoscale and Nanoscale Physics +1106.3743 +1107.0383 Theory +1107.0615 Phenomenology +1107.2218 Functional Analysis +1107.5303 Dynamical Systems +1108.1708 Probability +1108.4353 Cosmology and Nongalactic Astrophysics +1108.5368 Analysis of PDEs +1109.0712 +1109.4462 +1110.1454 Astrophysics of Galaxies +1110.2015 Theory +1110.2564 Combinatorics +1111.0207 Physics and Society +1111.3124 Mathematical Software +1111.4300 Formal Languages and Automata Theory +1111.5043 +1111.5442 Computational Complexity +1111.5607 +1111.5984 Phenomenology +1111.6173 History and Philosophy of Physics +1111.6197 Computational Physics +1112.2001 +1112.3002 Strongly Correlated Electrons +1112.3891 Methodology +1112.4402 Phenomenology +1112.4484 Mesoscale and Nanoscale Physics +1112.4814 Disordered Systems and Neural Networks +1112.6224 Instrumentation and Detectors +1201.0948 Differential Geometry +1201.2708 Number Theory +1201.3194 Formal Languages and Automata Theory +1201.3904 Analysis of PDEs +1201.5300 Theory +1202.0468 Plasma Physics +1202.1383 Experiment +1202.1536 +1202.3284 Strongly Correlated Electrons +1202.4045 Combinatorics +1202.4737 Statistics Theory +1202.6520 +1203.1134 Functional Analysis +1203.2183 Phenomenology +1203.3208 Mesoscale and Nanoscale Physics +1203.5463 Mesoscale and Nanoscale Physics +1203.5847 Strongly Correlated Electrons +1203.6388 Phenomenology +1204.0520 Strongly Correlated Electrons +1204.0922 General Finance +1204.1048 Solar and Stellar Astrophysics +1204.1081 Strongly Correlated Electrons +1204.2544 Solar and Stellar Astrophysics +1204.2991 Social and Information Networks +1204.3301 Analysis of PDEs +1204.3322 Classical Analysis and ODEs +1204.3715 Chemical Physics +1204.3749 Materials Science +1204.3872 Phenomenology +1204.4095 Quantum Gases +1204.4263 Atomic Physics +1204.5051 Strongly Correlated Electrons +1204.6478 Algebraic Geometry +1205.0807 Astrophysics of Galaxies +1205.1168 +1205.1424 +1205.1957 Strongly Correlated Electrons +1205.2110 Quantum Gases +1205.2242 Strongly Correlated Electrons +1205.3170 Cosmology and Nongalactic Astrophysics +1205.3666 Materials Science +1205.3720 Physics and Society +1205.4343 Learning +1205.4429 Analysis of PDEs +1205.5125 +1205.5372 +1206.0015 Astrophysics of Galaxies +1206.1271 +1206.1570 Phenomenology +1206.2330 Strongly Correlated Electrons +1206.2386 Theory +1206.4202 Phenomenology +1206.4292 Superconductivity +1206.4547 Logic in Computer Science +1206.4690 Strongly Correlated Electrons +1206.5130 Cosmology and Nongalactic Astrophysics +1206.5605 High Energy Astrophysical Phenomena +1206.5693 +1206.5812 Chemical Physics +1206.6263 High Energy Astrophysical Phenomena +1207.0346 Strongly Correlated Electrons +1207.4476 Cosmology and Nongalactic Astrophysics +1207.4491 +1207.4644 Materials Science +1207.5217 Performance +1207.5630 Mesoscale and Nanoscale Physics +1207.5709 Mesoscale and Nanoscale Physics +1207.5859 Phenomenology +1207.7092 Functional Analysis +1208.0851 Combinatorics +1208.1051 Lattice +1208.1059 Atmospheric and Oceanic Physics +1208.2106 +1208.2611 +1208.3069 Mesoscale and Nanoscale Physics +1208.3262 +1208.3332 Representation Theory +1208.3624 Numerical Analysis +1208.4437 Phenomenology +1208.4639 Populations and Evolution +1208.4686 +1208.4744 Experiment +1208.5012 Networking and Internet Architecture +1208.5061 Logic +1208.5064 Materials Science +1208.5065 Classical Physics +1208.5067 Classical Analysis and ODEs +1208.5068 Quantum Algebra +1208.5071 Information Theory +1208.5076 Computer Science and Game Theory +1208.5078 Materials Science +1208.5081 Statistical Mechanics +1208.5084 Algebraic Geometry +1208.5094 Probability +1208.5095 Populations and Evolution +1208.5097 Analysis of PDEs +1208.5099 Theory +1208.5105 Statistical Mechanics +1208.5111 Instrumentation and Detectors +1208.5113 Optimization and Control +1208.5116 Physics and Society +1208.5122 Materials Science +1208.5124 Cryptography and Security +1208.5134 Analysis of PDEs +1208.5137 History and Philosophy of Physics +1208.5139 Representation Theory +1208.5150 Optimization and Control +1208.5151 Combinatorics +1208.5163 Mesoscale and Nanoscale Physics +1208.5164 General Physics +1208.5167 Logic +1208.5178 Astrophysics of Galaxies +1208.5190 Cryptography and Security +1208.5193 Quantum Algebra +1208.5195 Software Engineering +1208.5197 Operator Algebras +1208.5202 Mesoscale and Nanoscale Physics +1208.5206 History and Philosophy of Physics +1208.5207 Combinatorics +1208.5208 History and Philosophy of Physics +1208.5211 Optimization and Control +1208.5215 History and Philosophy of Physics +1208.5217 Functional Analysis +1208.5218 +1208.5219 History and Philosophy of Physics +1208.5221 Commutative Algebra +1208.5225 Probability +1208.5226 Differential Geometry +1208.5228 Analysis of PDEs +1208.5230 Complex Variables +1208.5242 Classical Analysis and ODEs +1208.5243 Social and Information Networks +1208.5245 Analysis of PDEs +1208.5247 Data Structures and Algorithms +1208.5249 +1208.5251 +1208.5252 Statistical Mechanics +1208.5254 Geophysics +1208.5257 Mesoscale and Nanoscale Physics +1208.5263 +1208.5264 Optics +1208.5268 Logic in Computer Science +1208.5280 Information Theory +1208.5281 Information Theory +1208.5283 Group Theory +1208.5285 Combinatorics +1208.5291 Materials Science +1208.5296 Classical Physics +1208.5298 Rings and Algebras +1208.5303 Risk Management +1208.5305 Statistical Mechanics +1208.5308 Optimization and Control +1208.5309 Materials Science +1208.5312 Analysis of PDEs +1208.5313 Instrumentation and Methods for Astrophysics +1208.5316 Computational Engineering, Finance, and Science +1208.5322 High Energy Astrophysical Phenomena +1208.5324 Formal Languages and Automata Theory +1208.5330 +1208.5331 +1208.5335 Mesoscale and Nanoscale Physics +1208.5336 Mesoscale and Nanoscale Physics +1208.5340 Artificial Intelligence +1208.5341 Artificial Intelligence +1208.5347 Soft Condensed Matter +1208.5351 Mesoscale and Nanoscale Physics +1208.5361 Differential Geometry +1208.5364 Cosmology and Nongalactic Astrophysics +1208.5365 Computer Vision and Pattern Recognition +1208.5368 +1208.5373 Artificial Intelligence +1208.5375 K-Theory and Homology +1208.5376 Methodology +1208.5381 +1208.5382 Pricing of Securities +1208.5383 Mesoscale and Nanoscale Physics +1208.5386 Astrophysics of Galaxies +1208.5387 +1208.5388 General Physics +1208.5394 Systems and Control +1208.5397 Phenomenology +1208.5398 Pricing of Securities +1208.5399 +1208.5402 Classical Physics +1208.5404 Algebraic Geometry +1208.5406 General Physics +1208.5417 Instrumentation and Methods for Astrophysics +1208.5423 Fluid Dynamics +1208.5429 Information Theory +1208.5432 Functional Analysis +1208.5436 Earth and Planetary Astrophysics +1208.5438 Social and Information Networks +1208.5441 Number Theory +1208.5443 Databases +1208.5447 +1208.5451 Computer Vision and Pattern Recognition +1208.5452 Solar and Stellar Astrophysics +1208.5460 Number Theory +1208.5465 Exactly Solvable and Integrable Systems +1208.5466 Statistical Mechanics +1208.5471 Dynamical Systems +1208.5472 High Energy Astrophysical Phenomena +1208.5474 Numerical Analysis +1208.5475 Computational Physics +1208.5476 Quantitative Methods +astro-ph/0605521 +cond-mat/0401521 Mesoscale and Nanoscale Physics +gr-qc/9904045 +hep-ph/0111342 Phenomenology +hep-ph/0611344 Phenomenology +math/0610612 Number Theory +physics/0612117 Physics Education +quant-ph/0611060 +1205.2733 Functional Analysis +1205.2878 General Finance +1205.3344 Materials Science +0712.2180 Materials Science +0712.4224 Populations and Evolution +0801.1609 Populations and Evolution +0804.0610 Group Theory +0807.4976 Algebraic Geometry +0808.0338 Symplectic Geometry +0811.1479 Physics and Society +0901.2576 Superconductivity +0903.2721 Operator Algebras +0906.2759 General Physics +0907.1487 +0910.0661 Instrumentation and Methods for Astrophysics +0910.1932 Combinatorics +0910.2424 Algebraic Geometry +0910.2955 Theory +0910.4512 Group Theory +1002.1652 Metric Geometry +1002.1960 Combinatorics +1002.4210 Combinatorics +1003.0699 +1003.2111 Neurons and Cognition +1003.4288 Physics Education +1004.1552 Dynamical Systems +1004.2818 Distributed, Parallel, and Cluster Computing +1004.3342 Logic +1004.4681 +1005.0453 Classical Analysis and ODEs +1005.2994 Phenomenology +1006.1990 Data Structures and Algorithms +1006.5366 Statistics Theory +1006.5658 Theory +1007.0356 Number Theory +1007.3427 Chaotic Dynamics +1007.3617 Superconductivity +1008.0330 Chaotic Dynamics +1008.4469 Phenomenology +1009.0187 Classical Analysis and ODEs +1009.3825 Dynamical Systems +1010.0181 Dynamical Systems +1011.1029 Fluid Dynamics +1011.1916 +1012.3319 Computational Complexity +1101.1614 Dynamical Systems +1102.0175 Symplectic Geometry +1102.4863 +1102.5414 Rings and Algebras +1103.3331 Mesoscale and Nanoscale Physics +1103.5239 Combinatorics +1103.5628 Geometric Topology +1104.0258 Exactly Solvable and Integrable Systems +1105.0136 Mesoscale and Nanoscale Physics +1105.0794 +1105.2923 General Mathematics +1105.5352 Operator Algebras +1105.5482 Number Theory +1106.3415 Statistics Theory +1106.4542 Algebraic Topology +1107.5222 General Mathematics +1107.5424 +1108.0435 +1109.1308 Theory +1109.5331 Commutative Algebra +1109.5581 +1109.6686 Analysis of PDEs +1110.0319 Lattice +1110.1643 +1110.1939 Strongly Correlated Electrons +1110.3233 Computational Physics +1110.4546 Materials Science +1110.5022 Differential Geometry +1110.5292 +1110.5611 Soft Condensed Matter +1110.6405 Number Theory +1111.0740 Combinatorics +1111.0969 Cosmology and Nongalactic Astrophysics +1111.1728 Theory +1111.2579 Superconductivity +1111.2970 +1111.5992 Symplectic Geometry +1111.6181 Group Theory +1112.0157 Symplectic Geometry +1112.0483 Classical Analysis and ODEs +1112.0601 +1112.1272 +1112.2452 +1112.3693 Geometric Topology +1112.4110 Algebraic Geometry +1112.5281 Soft Condensed Matter +1201.0708 Statistics Theory +1201.1749 Functional Analysis +1201.2844 Strongly Correlated Electrons +1201.3080 Mesoscale and Nanoscale Physics +1201.3890 Classical Physics +1201.4110 Biological Physics +1201.5935 Optics +1201.5961 Cosmology and Nongalactic Astrophysics +1201.6067 +1201.6356 Dynamical Systems +1202.0772 +1202.1540 Cellular Automata and Lattice Gases +1202.1952 Theory +1202.1974 Combinatorics +1202.2536 Artificial Intelligence +1202.2847 Cosmology and Nongalactic Astrophysics +1202.3392 Differential Geometry +1202.3510 Information Theory +1202.3568 +1202.3664 Soft Condensed Matter +1202.4362 Statistical Mechanics +1202.5044 +1202.5085 Algebraic Geometry +1202.5927 Quantum Algebra +1202.6016 Theory +1202.6021 General Mathematics +1202.6618 +1203.0282 Phenomenology +1203.0286 Superconductivity +1203.1100 Phenomenology +1203.2557 Learning +1203.2643 Mesoscale and Nanoscale Physics +1203.3011 Cosmology and Nongalactic Astrophysics +1203.3027 Cosmology and Nongalactic Astrophysics +1203.3191 Theory +1203.3221 Soft Condensed Matter +1203.3695 Cosmology and Nongalactic Astrophysics +1203.3729 Cryptography and Security +1203.3776 +1203.4106 Phenomenology +1203.4549 Instrumentation and Methods for Astrophysics +1203.4844 Information Theory +1203.5074 Statistical Mechanics +1203.5509 Materials Science +1203.5756 +1203.6506 Optics +1204.1246 Theory +1204.1775 Mesoscale and Nanoscale Physics +1204.2091 Phenomenology +1204.2188 Materials Science +1204.3986 Computational Complexity +1204.4278 Soft Condensed Matter +1204.6725 Computer Vision and Pattern Recognition +1205.1961 High Energy Astrophysical Phenomena +1205.2301 Strongly Correlated Electrons +1205.3337 Populations and Evolution +1205.4158 Classical Analysis and ODEs +1205.4942 Quantum Algebra +1205.6864 Astrophysics of Galaxies +1205.6865 Astrophysics of Galaxies +1205.7020 Quantum Algebra +1206.0667 Symplectic Geometry +1206.0966 Combinatorics +1206.0990 Soft Condensed Matter +1206.1103 Chaotic Dynamics +1206.1252 Geometric Topology +1206.1366 History and Overview +1206.1457 Analysis of PDEs +1206.1751 Discrete Mathematics +1206.1852 Information Retrieval +1206.1853 Geophysics +1206.1856 Theory +1206.1860 Functional Analysis +1206.1863 Materials Science +1206.1866 Multimedia +1206.1871 Populations and Evolution +1206.1877 Computational Complexity +1206.1880 Computer Science and Game Theory +1206.1883 Chemical Physics +1206.1889 Algebraic Geometry +1206.1891 Social and Information Networks +1206.1894 Geometric Topology +1206.1900 Optics +1206.1901 Computation +1206.1903 Computer Science and Game Theory +1206.1908 +1206.1909 Experiment +1206.1914 +1206.1915 Superconductivity +1206.1918 Networking and Internet Architecture +1206.1921 Optics +1206.1922 +1206.1925 Algebraic Geometry +1206.1926 Logic +1206.1927 Logic +1206.1933 Numerical Analysis +1206.1935 Logic in Computer Science +1206.1936 Logic in Computer Science +1206.1937 Geometric Topology +1206.1939 Fluid Dynamics +1206.1942 Optics +1206.1944 Instrumentation and Detectors +1206.1949 General Topology +1206.1952 +1206.1953 Systems and Control +1206.1956 Probability +1206.1958 Functional Analysis +1206.1964 Differential Geometry +1206.1969 Programming Languages +1206.1972 Materials Science +1206.1974 Metric Geometry +1206.1981 Differential Geometry +1206.1982 Computational Geometry +1206.1984 Distributed, Parallel, and Cluster Computing +1206.1987 Combinatorics +1206.1993 Combinatorics +1206.1995 Algebraic Topology +1206.1998 Statistics Theory +1206.2005 Networking and Internet Architecture +1206.2007 Mesoscale and Nanoscale Physics +1206.2009 Computation and Language +1206.2010 Computation and Language +1206.2017 Analysis of PDEs +1206.2021 +1206.2022 General Finance +1206.2026 Chaotic Dynamics +1206.2027 Adaptation and Self-Organizing Systems +1206.2032 Multiagent Systems +1206.2033 Combinatorics +1206.2040 Number Theory +1206.2046 Fluid Dynamics +1206.2054 Methodology +1206.2058 Computer Vision and Pattern Recognition +1206.2059 Optimization and Control +1206.2060 Cellular Automata and Lattice Gases +1206.2061 Numerical Analysis +1206.2070 Other Quantitative Biology +1206.2071 +1206.2074 Analysis of PDEs +1206.2076 +1206.2084 Number Theory +1206.2088 Mesoscale and Nanoscale Physics +1206.2092 Probability +1206.2100 K-Theory and Homology +1206.2105 Theory +1206.2110 Numerical Analysis +1206.2112 Pricing of Securities +1206.2113 Dynamical Systems +1206.2116 Analysis of PDEs +1206.2119 Optimization and Control +1206.2121 Dynamical Systems +1206.2124 Phenomenology +1206.2127 Physics and Society +1206.2129 Networking and Internet Architecture +1206.2132 Hardware Architecture +1206.2136 Chemical Physics +1206.2137 Chemical Physics +1206.2138 Information Theory +1206.2139 Astrophysics of Galaxies +1206.2142 Differential Geometry +1206.2146 Phenomenology +1206.2147 Solar and Stellar Astrophysics +1206.2149 +1206.2151 Theory +1206.2161 Numerical Analysis +1206.2162 +1206.2166 Materials Science +1206.2168 Phenomenology +1206.2169 Instrumentation and Methods for Astrophysics +1206.2171 Other Condensed Matter +1206.2173 Algebraic Topology +1206.2175 Phenomenology +1206.2177 Dynamical Systems +1206.2178 Phenomenology +1206.2181 Experiment +1206.2187 Distributed, Parallel, and Cluster Computing +1206.2189 +1206.2190 Learning +1206.2193 Number Theory +1206.2195 Superconductivity +1206.2197 Information Theory +1206.2201 Quantum Gases +1206.2202 Quantum Gases +1206.2205 Phenomenology +1206.2206 Statistics Theory +1206.2208 Analysis of PDEs +1206.2215 Solar and Stellar Astrophysics +1206.2216 Physics and Society +1206.2217 Superconductivity +1206.2219 Dynamical Systems +1206.2220 Information Theory +1206.2221 Analysis of PDEs +1206.2222 Group Theory +1206.2228 Metric Geometry +1206.2229 Metric Geometry +1206.2230 Metric Geometry +1206.2231 Metric Geometry +1206.2236 Theory +1206.2238 High Energy Astrophysical Phenomena +1206.2239 Solar and Stellar Astrophysics +1206.2240 Phenomenology +1206.2243 Materials Science +1206.2247 Chemical Physics +1206.2249 Theory +1206.2250 Statistical Mechanics +1206.2253 Phenomenology +1206.2262 Cellular Automata and Lattice Gases +1206.2264 Chemical Physics +1206.2265 +1206.2276 Information Theory +1206.2289 +1206.2297 Other Computer Science +1206.2300 Superconductivity +1206.2301 Dynamical Systems +1206.2307 Cryptography and Security +1206.2308 Quantum Algebra +1206.2310 Phenomenology +1206.2311 Molecular Networks +1206.2314 Materials Science +1206.2317 Theory +1206.2318 Phenomenology +1206.2320 Multimedia +1206.2322 Information Theory +1206.2325 Phenomenology +1206.2331 K-Theory and Homology +1206.2334 Symplectic Geometry +gr-qc/9903076 +math/0212322 Probability +math/0602602 Dynamical Systems +math/0605131 Operator Algebras +math/9411238 Dynamical Systems +math/9807156 Geometric Topology +math/9808113 Geometric Topology +nlin/0602060 Pattern Formation and Solitons +0705.2830 Algebraic Topology +0706.0612 +0802.0710 Theory +0904.3772 Rings and Algebras +0907.5338 +0909.5418 Symplectic Geometry +0911.0479 Statistical Mechanics +0911.3887 Combinatorics +0912.0203 +1004.3706 Geometric Topology +1005.0029 Solar and Stellar Astrophysics +1005.5494 Methodology +1006.1090 Algebraic Geometry +1008.1283 Optics +1008.3986 Algebraic Geometry +1010.4846 Number Theory +1011.1150 Quantum Gases +1011.1250 Symplectic Geometry +1011.2471 Algebraic Topology +1012.3042 Space Physics +1012.4134 Combinatorics +1012.4303 Dynamical Systems +1012.4911 Algebraic Geometry +1012.5480 Representation Theory +1101.1579 Combinatorics +1102.2989 +1103.1093 Algebraic Geometry +1103.1314 Quantum Gases +1103.2064 Theory +1103.3710 Algebraic Topology +1104.0216 Representation Theory +1104.4356 Cryptography and Security +1105.0810 Algebraic Geometry +1105.1872 Rings and Algebras +1105.2233 Statistical Mechanics +1105.3288 Statistics Theory +1105.3793 Combinatorics +1106.3303 Theory +1106.4657 Theory +1106.6096 +1107.0557 Rings and Algebras +1107.1366 Functional Analysis +1108.3796 +1108.5790 +1109.0771 +1109.1122 Quantum Gases +1109.2450 Representation Theory +1110.0963 Probability +1110.3078 Discrete Mathematics +1110.4622 Probability +1110.6821 Combinatorics +1111.1755 Probability +1111.2302 Probability +1111.2841 Atomic Physics +1111.2938 Analysis of PDEs +1111.5978 Solar and Stellar Astrophysics +1112.0749 Functional Analysis +1112.0810 Mesoscale and Nanoscale Physics +1112.2170 Analysis of PDEs +1112.5295 +1112.5442 Differential Geometry +1201.0029 Theory +1201.0799 Differential Geometry +1201.2646 Optics +1201.2736 +1201.3113 Materials Science +1201.3355 Mesoscale and Nanoscale Physics +1201.4014 Chemical Physics +1201.5053 Phenomenology +1201.6457 Differential Geometry +1202.0168 Information Theory +1202.0721 Instrumentation and Detectors +1202.1693 Algebraic Geometry +1202.2259 +1202.2507 Combinatorics +1202.2612 Mesoscale and Nanoscale Physics +1202.3036 Quantum Gases +1202.3085 +1202.3339 Phenomenology +1202.5419 +1202.5630 Number Theory +1203.2919 Solar and Stellar Astrophysics +1203.3197 High Energy Astrophysical Phenomena +1203.3232 Mesoscale and Nanoscale Physics +1203.3922 Atomic Physics +1203.5407 +1203.5776 Strongly Correlated Electrons +1203.5798 Earth and Planetary Astrophysics +1203.6595 +1203.6887 +1204.3727 Phenomenology +1204.6038 Phenomenology +1204.6587 Phenomenology +1205.0045 Number Theory +1205.0664 Disordered Systems and Neural Networks +1205.0876 Mesoscale and Nanoscale Physics +1205.1722 Theory +1205.2178 +1205.2973 Mesoscale and Nanoscale Physics +1205.3318 Superconductivity +1205.3410 Theory +1205.4481 Learning +1205.4569 Disordered Systems and Neural Networks +1205.5355 Probability +1205.6340 Phenomenology +1206.0099 Mesoscale and Nanoscale Physics +1206.0146 Statistical Mechanics +1206.0301 Mesoscale and Nanoscale Physics +1206.0308 Mesoscale and Nanoscale Physics +1206.0428 Astrophysics of Galaxies +1206.0691 High Energy Astrophysical Phenomena +1206.0747 Theory +1206.0986 Cosmology and Nongalactic Astrophysics +1206.1934 Combinatorics +1206.4021 +1206.5030 Theory +1206.5340 Optics +1206.5750 Commutative Algebra +1206.6096 Theory +1206.6151 Phenomenology +1206.6692 Probability +1207.0902 Number Theory +1207.1002 +1207.1105 Cosmology and Nongalactic Astrophysics +1207.1348 Phenomenology +1207.2548 Physics and Society +1207.2941 Adaptation and Self-Organizing Systems +1207.2966 Group Theory +1207.3598 Learning +1207.3639 Materials Science +1207.3887 Symbolic Computation +1207.4294 Phenomenology +1207.4544 Materials Science +1207.5075 Plasma Physics +1207.5373 +1207.6020 Phenomenology +1207.6532 Materials Science +1208.0017 Analysis of PDEs +1208.1270 +1208.1795 Instrumentation and Methods for Astrophysics +1208.2646 +1208.4085 Phenomenology +1208.4089 Statistical Mechanics +1208.4490 Networking and Internet Architecture +1208.5196 Probability +1208.5743 Probability +1208.6191 Phenomenology +1208.6227 Quantum Gases +1208.6396 Fluid Dynamics +1208.6468 +1209.0010 +1209.0088 +1209.0710 Number Theory +1209.2063 Group Theory +1209.2203 Differential Geometry +1209.2390 Dynamical Systems +1209.2530 Theory +1209.3646 Combinatorics +1209.4025 Numerical Analysis +1209.4223 Neurons and Cognition +1209.4417 Materials Science +1209.4674 Experiment +1209.4812 Materials Science +1209.5082 +1209.5414 Superconductivity +1209.5639 Atomic Physics +1209.5804 Group Theory +1209.6282 +1209.6450 Experiment +1209.6630 Performance +1210.0001 General Physics +1210.0016 Materials Science +1210.0026 Computer Vision and Pattern Recognition +1210.0027 Materials Science +1210.0035 Materials Science +1210.0036 High Energy Astrophysical Phenomena +1210.0037 Medical Physics +1210.0038 Materials Science +1210.0040 Cosmology and Nongalactic Astrophysics +1210.0042 Number Theory +1210.0045 Cosmology and Nongalactic Astrophysics +1210.0048 Biomolecules +1210.0049 Computational Complexity +1210.0050 Populations and Evolution +1210.0052 Computer Vision and Pattern Recognition +1210.0057 Statistical Finance +1210.0058 Statistical Mechanics +1210.0059 Biological Physics +1210.0066 Optimization and Control +1210.0067 Commutative Algebra +1210.0069 Materials Science +1210.0071 Networking and Internet Architecture +1210.0072 Superconductivity +1210.0074 Artificial Intelligence +1210.0075 Artificial Intelligence +1210.0078 General Mathematics +1210.0083 Information Theory +1210.0087 Mesoscale and Nanoscale Physics +1210.0095 Combinatorics +1210.0097 +1210.0098 +1210.0099 Materials Science +1210.0100 Information Theory +1210.0103 Statistics Theory +1210.0109 Dynamical Systems +1210.0114 Optics +1210.0116 Phenomenology +1210.0118 Neural and Evolutionary Computing +1210.0125 Materials Science +1210.0129 Representation Theory +1210.0130 Materials Science +1210.0132 Materials Science +1210.0135 Dynamical Systems +1210.0138 +1210.0139 Functional Analysis +1210.0140 Rings and Algebras +1210.0145 Classical Analysis and ODEs +1210.0147 Differential Geometry +1210.0149 Information Theory +1210.0150 Group Theory +1210.0151 Cryptography and Security +1210.0153 Computer Vision and Pattern Recognition +1210.0154 General Physics +1210.0155 Computer Science and Game Theory +1210.0156 +1210.0162 Analysis of PDEs +1210.0163 Materials Science +1210.0167 Artificial Intelligence +1210.0168 Subcellular Processes +1210.0171 Sound +1210.0173 +1210.0177 +1210.0179 Dynamical Systems +1210.0181 Classical Analysis and ODEs +1210.0187 Databases +1210.0188 Combinatorics +1210.0189 Algebraic Geometry +1210.0192 Algebraic Geometry +1210.0193 Optimization and Control +1210.0204 +1210.0205 Phenomenology +1210.0210 Information Theory +1210.0214 +1210.0219 Geometric Topology +1210.0222 Group Theory +1210.0228 Dynamical Systems +1210.0229 Algebraic Topology +1210.0230 Computer Science and Game Theory +1210.0237 Representation Theory +1210.0238 Geometric Topology +1210.0239 +1210.0243 Representation Theory +1210.0255 Theory +1210.0258 Probability +1210.0259 Probability +1210.0260 Data Structures and Algorithms +1210.0261 Plasma Physics +1210.0263 Phenomenology +1210.0264 Solar and Stellar Astrophysics +1210.0266 Mesoscale and Nanoscale Physics +1210.0268 Computer Science and Game Theory +1210.0270 Earth and Planetary Astrophysics +1210.0279 Disordered Systems and Neural Networks +1210.0281 Exactly Solvable and Integrable Systems +1210.0288 Phenomenology +1210.0291 Statistics Theory +1210.0292 Phenomenology +1210.0293 Information Theory +1210.0295 Number Theory +1210.0298 +1210.0300 Applications +1210.0304 Number Theory +1210.0307 Applications +1210.0312 Statistics Theory +1210.0314 Probability +1210.0316 Instrumentation and Detectors +1210.0318 High Energy Astrophysical Phenomena +1210.0320 Molecular Networks +1210.0321 Earth and Planetary Astrophysics +1210.0322 Analysis of PDEs +1210.0324 Algebraic Geometry +1210.0329 Optics +1210.0339 Theory +1210.0340 Distributed, Parallel, and Cluster Computing +1210.0342 Algebraic Geometry +1210.0343 Algebraic Geometry +1210.0344 Mesoscale and Nanoscale Physics +1210.0345 Applications +1210.0347 Computer Vision and Pattern Recognition +1210.0348 Group Theory +1210.0351 Lattice +1210.0355 History and Philosophy of Physics +1210.0359 +1210.0360 +1210.0362 Populations and Evolution +1210.0363 Astrophysics of Galaxies +1210.0364 Statistical Mechanics +1210.0370 Solar and Stellar Astrophysics +1210.0372 History and Overview +1210.0373 Statistical Mechanics +1210.0374 Data Structures and Algorithms +1210.0379 +1210.0381 Quantum Gases +1210.0385 Methodology +1210.0390 Combinatorics +1210.0395 Differential Geometry +1210.0397 Strongly Correlated Electrons +1210.0399 Commutative Algebra +1210.0401 Differential Geometry +1210.0405 Combinatorics +1210.0407 Strongly Correlated Electrons +1210.0408 Formal Languages and Automata Theory +1210.0411 Phenomenology +1210.0413 High Energy Astrophysical Phenomena +1210.0423 Solar and Stellar Astrophysics +1210.0428 Instrumentation and Detectors +1210.0431 Algebraic Geometry +1210.0437 Multiagent Systems +1210.0445 Dynamical Systems +1210.0450 Number Theory +1210.0453 Geometric Topology +1210.0460 Social and Information Networks +1210.0462 Mesoscale and Nanoscale Physics +1210.0466 Algebraic Geometry +1210.0471 Phenomenology +1210.0473 Learning +1210.0474 Phenomenology +1210.0476 +1210.0477 Data Structures and Algorithms +1210.0485 Solar and Stellar Astrophysics +1210.0487 Analysis of PDEs +1210.0503 General Physics +1210.0504 General Physics +1210.0511 Networking and Internet Architecture +1210.0515 General Physics +1210.0527 Differential Geometry +hep-th/0508112 Theory +math/0509702 Analysis of PDEs +math/0606695 Commutative Algebra +0905.3996 Functional Analysis +0907.3724 +0911.0639 Disordered Systems and Neural Networks +0912.2697 Group Theory +0912.5514 +1003.0975 Probability +1008.2159 Data Structures and Algorithms +1009.5063 Algebraic Geometry +1010.4824 Information Theory +1011.0558 Category Theory +1011.0655 Algebraic Geometry +1011.2525 Cosmology and Nongalactic Astrophysics +1012.0409 Geometric Topology +1102.4859 Rings and Algebras +1102.5700 +1103.4831 Quantum Gases +1103.6143 Statistical Finance +1104.3883 +1106.0178 Information Theory +1106.0950 Rings and Algebras +1106.3124 Mesoscale and Nanoscale Physics +1106.4272 Complex Variables +1106.5375 Materials Science +1107.0600 Materials Science +1107.0893 Representation Theory +1107.1424 +1107.3802 Atomic Physics +1107.3833 Algebraic Geometry +1108.4943 Theory +1108.5227 Strongly Correlated Electrons +1108.5515 Data Analysis, Statistics and Probability +1110.3690 +1111.1385 Group Theory +1111.5505 Instrumentation and Detectors +1111.6618 Probability +1111.6843 Artificial Intelligence +1112.1369 Algebraic Geometry +1112.1580 Number Theory +1112.1829 Optics +1201.4120 +1201.6436 Mesoscale and Nanoscale Physics +1202.0789 Networking and Internet Architecture +1202.2222 +1202.2628 Instrumentation and Detectors +1202.3324 +1202.4545 History and Philosophy of Physics +1203.1268 +1203.2920 High Energy Astrophysical Phenomena +1203.5122 Superconductivity +1203.6148 Phenomenology +1203.6617 Astrophysics of Galaxies +1204.0366 +1204.0694 Phenomenology +1204.0888 +1204.2934 Chemical Physics +1204.3649 Statistical Mechanics +1204.4179 Biological Physics +1204.4702 Phenomenology +1204.4774 Mesoscale and Nanoscale Physics +1204.4939 Dynamical Systems +1204.5278 +1204.6582 Analysis of PDEs +1205.3721 Mesoscale and Nanoscale Physics +1205.4565 Mesoscale and Nanoscale Physics +1205.4760 Phenomenology +1205.5498 Number Theory +1205.6171 Mesoscale and Nanoscale Physics +1206.0204 Optics +1206.1601 Mesoscale and Nanoscale Physics +1206.1692 Differential Geometry +1206.1787 Theory +1206.1988 Optics +1206.2036 Cosmology and Nongalactic Astrophysics +1206.2167 Cosmology and Nongalactic Astrophysics +1206.3217 +1206.3483 Data Structures and Algorithms +1206.4350 Probability +1206.4818 Theory +1206.5168 +1206.6222 Human-Computer Interaction +1206.6368 Disordered Systems and Neural Networks +1206.6880 +1206.6929 Superconductivity +1207.1621 Cosmology and Nongalactic Astrophysics +1207.1999 Quantum Gases +1207.2140 High Energy Astrophysical Phenomena +1207.4976 Superconductivity +1207.5645 High Energy Astrophysical Phenomena +1207.6144 Space Physics +1207.7155 History and Overview +1207.7340 +1208.0955 Mesoscale and Nanoscale Physics +1208.2730 Algebraic Geometry +1208.2780 +1208.3264 Mesoscale and Nanoscale Physics +1208.4520 Category Theory +1208.4609 Functional Analysis +1208.4610 General Topology +1208.4628 +1208.4630 Programming Languages +1208.4632 Programming Languages +1208.4634 Distributed, Parallel, and Cluster Computing +1208.4640 Group Theory +1208.4645 +1208.4649 +1208.4651 Information Theory +1208.4653 Atomic Physics +1208.4664 Representation Theory +1208.4666 +1208.4674 Theory +1208.4675 Phenomenology +1208.4679 Dynamical Systems +1208.4689 Astrophysics of Galaxies +1208.4690 Superconductivity +1208.4694 Earth and Planetary Astrophysics +1208.4701 Atmospheric and Oceanic Physics +1208.4702 Probability +1208.4704 Number Theory +1208.4707 Other Condensed Matter +1208.4713 Algebraic Geometry +1208.4715 Atomic Physics +1208.4725 Phenomenology +1208.4734 Combinatorics +1208.4736 Differential Geometry +1208.4739 History and Philosophy of Physics +1208.4742 Optimization and Control +1208.4745 Mesoscale and Nanoscale Physics +1208.4747 Theory +1208.4751 Number Theory +1208.4756 Symplectic Geometry +1208.4765 Numerical Analysis +1208.4769 Number Theory +1208.4771 Dynamical Systems +1208.4775 Earth and Planetary Astrophysics +1208.4777 Information Theory +1208.4780 Materials Science +1208.4788 Functional Analysis +1208.4791 Physics Education +1208.4795 Superconductivity +1208.4803 Logic +1208.4804 +1208.4807 +1208.4812 +1208.4814 Theory +1208.4816 Numerical Analysis +1208.4822 Materials Science +1208.4826 Classical Physics +1208.4827 Functional Analysis +1208.4832 +1208.4833 Rings and Algebras +1208.4841 +0708.2772 Geometric Topology +0803.0451 Number Theory +0803.2443 Populations and Evolution +0805.1013 Theory +0806.3851 Number Theory +0806.4495 Lattice +0808.3267 Algebraic Geometry +0812.2429 Theory +0901.2867 Populations and Evolution +0901.3077 Chaotic Dynamics +0901.3233 Populations and Evolution +0901.4493 Algebraic Topology +0901.4671 Geometric Topology +0905.0986 Geometric Topology +0905.3498 +0906.2240 Dynamical Systems +0906.3497 +0907.1203 +0910.5330 Fluid Dynamics +0910.5825 Mesoscale and Nanoscale Physics +0911.0371 Soft Condensed Matter +0911.3881 Number Theory +0911.5672 Populations and Evolution +1001.2154 Probability +1003.0475 Representation Theory +1005.2024 Mesoscale and Nanoscale Physics +1005.2385 Geometric Topology +1005.2388 Geometric Topology +1007.1292 Combinatorics +1007.3376 Methodology +1007.4870 Combinatorics +1008.3315 Symplectic Geometry +1011.3880 Group Theory +1011.6599 Distributed, Parallel, and Cluster Computing +1012.1789 Fluid Dynamics +1012.3966 General Topology +1101.0062 +1101.0072 +1101.0371 Fluid Dynamics +1101.5453 Number Theory +1102.3619 Combinatorics +1103.3072 Instrumentation and Methods for Astrophysics +1103.3452 Theory +1103.5144 Symplectic Geometry +1103.5195 Logic +1103.5437 Mesoscale and Nanoscale Physics +1105.0627 Populations and Evolution +1105.2588 Mesoscale and Nanoscale Physics +1106.1103 +1107.4097 Cosmology and Nongalactic Astrophysics +1107.4325 Phenomenology +1108.0002 Theory +1108.1279 Spectral Theory +1108.5317 Theory +1109.2996 Mesoscale and Nanoscale Physics +1109.3796 +1109.5875 Optics +1110.1011 +1110.3240 Probability +1110.5916 Theory +1111.0473 Superconductivity +1111.1348 +1111.2756 Biological Physics +1111.2769 Biomolecules +1111.2861 Theory +1111.3249 Mesoscale and Nanoscale Physics +1111.4657 Representation Theory +1111.5473 Data Structures and Algorithms +1111.6741 Statistical Mechanics +1111.6974 Cosmology and Nongalactic Astrophysics +1112.2000 Computational Complexity +1112.3950 Strongly Correlated Electrons +1112.4801 +1112.4955 Networking and Internet Architecture +1201.2176 Mesoscale and Nanoscale Physics +1201.4974 Quantum Gases +1201.5600 Experiment +1201.5650 Mesoscale and Nanoscale Physics +1202.0135 Information Theory +1202.2432 Fluid Dynamics +1202.5005 Materials Science +1202.5908 Numerical Analysis +1202.5945 Computational Geometry +1202.5994 Soft Condensed Matter +1203.0252 +1203.0570 High Energy Astrophysical Phenomena +1203.0755 Theory +1203.1928 Cosmology and Nongalactic Astrophysics +1203.2184 High Energy Astrophysical Phenomena +1203.2363 Number Theory +1203.2859 Statistical Mechanics +1203.3367 Populations and Evolution +1203.4720 Cosmology and Nongalactic Astrophysics +1203.4758 Phenomenology +1203.5999 Quantum Gases +1204.0733 Soft Condensed Matter +1204.1196 Computational Complexity +1204.2194 Statistics Theory +1204.2507 +1204.2538 Statistical Mechanics +1204.2992 Strongly Correlated Electrons +1204.3597 Strongly Correlated Electrons +1204.4950 Optics +1204.5043 Machine Learning +1204.6135 Cosmology and Nongalactic Astrophysics +1204.6251 Phenomenology +1205.0080 History and Overview +1205.0372 Strongly Correlated Electrons +1205.1405 Optics +1205.1665 Optics +1205.3271 Optics +1205.4909 History and Philosophy of Physics +1205.4965 High Energy Astrophysical Phenomena +1205.5971 Dynamical Systems +1205.6808 Phenomenology +1206.0045 +1206.0142 Other Computer Science +1206.0280 Mesoscale and Nanoscale Physics +1206.0549 Systems and Control +1206.1040 General Physics +1206.2057 Networking and Internet Architecture +1206.2198 Other Condensed Matter +1206.2343 Materials Science +1206.2344 Materials Science +1206.2347 Artificial Intelligence +1206.2358 Representation Theory +1206.2362 Information Theory +1206.2363 High Energy Astrophysical Phenomena +1206.2376 Dynamical Systems +1206.2378 Instrumentation and Detectors +1206.2388 Molecular Networks +1206.2390 Classical Analysis and ODEs +1206.2393 Atomic Physics +1206.2394 Mesoscale and Nanoscale Physics +1206.2399 Optics +1206.2405 Pattern Formation and Solitons +1206.2409 Dynamical Systems +1206.2414 Chaotic Dynamics +1206.2415 Chaotic Dynamics +1206.2416 Chaotic Dynamics +1206.2422 +1206.2424 Number Theory +1206.2425 Applications +1206.2426 +1206.2440 Phenomenology +1206.2442 Numerical Analysis +1206.2444 Astrophysics of Galaxies +1206.2445 Cryptography and Security +1206.2447 Chaotic Dynamics +1206.2449 +1206.2453 +1206.2457 Analysis of PDEs +1206.2469 Chemical Physics +1206.2470 Superconductivity +1206.2471 Number Theory +1206.2475 Algebraic Geometry +1206.2477 Solar and Stellar Astrophysics +1206.2484 Information Retrieval +1206.2488 Experiment +1206.2489 Classical Analysis and ODEs +1206.2493 Statistics Theory +1206.2494 General Finance +1206.2497 Computational Complexity +1206.2500 Networking and Internet Architecture +1206.2508 +1206.2509 +1206.2510 Multimedia +1206.2514 Algebraic Geometry +1206.2516 +1206.2520 Other Computer Science +1206.2521 Geometric Topology +1206.2528 Information Retrieval +1206.2541 Geometric Topology +1206.2542 Programming Languages +1206.2544 Computers and Society +1206.2546 High Energy Astrophysical Phenomena +1206.2547 Classical Physics +1206.2551 Materials Science +1206.2556 Cellular Automata and Lattice Gases +1206.2568 Information Theory +1206.2570 Chaotic Dynamics +1206.2571 High Energy Astrophysical Phenomena +1206.2576 Algebraic Geometry +1206.2577 Statistical Mechanics +1206.2578 Analysis of PDEs +1206.2581 Experiment +1206.2583 Cryptography and Security +1206.2586 Cryptography and Security +1206.2587 Neural and Evolutionary Computing +1206.2588 Metric Geometry +1206.2597 Other Computer Science +1206.2602 +1206.2604 Representation Theory +1206.2607 Chaotic Dynamics +1206.2615 Mesoscale and Nanoscale Physics +1206.2617 Soft Condensed Matter +1206.2625 Multimedia +1206.2635 Differential Geometry +math/0503214 Algebraic Geometry +math/0610104 Geometric Topology +0704.0891 +0705.2585 General Physics +0708.2771 Number Theory +0710.0528 Programming Languages +0809.3762 Physics and Society +0903.4697 Probability +0906.1040 Algebraic Geometry +0907.0880 Number Theory +0907.4470 Differential Geometry +0909.5661 K-Theory and Homology +0910.1409 Metric Geometry +0910.3519 Commutative Algebra +1002.2526 Quantum Algebra +1004.5302 Optimization and Control +1005.0812 Probability +1005.2121 Superconductivity +1006.0146 Theory +1007.4891 Algebraic Geometry +1009.2136 Probability +1010.3664 Pattern Formation and Solitons +1010.4909 Combinatorics +1011.5467 Mesoscale and Nanoscale Physics +1011.6087 General Physics +1012.2606 Physics and Society +1012.4826 Representation Theory +1102.1462 Information Theory +1102.4740 +1102.4743 +1102.5169 Disordered Systems and Neural Networks +1103.4465 High Energy Astrophysical Phenomena +1104.0836 History and Philosophy of Physics +1104.1263 +1104.1779 Methodology +1104.2499 Computational Physics +1104.3794 Analysis of PDEs +1104.3942 Classical Analysis and ODEs +1104.5112 Populations and Evolution +1105.3555 Phenomenology +1105.6112 +1106.4601 Theory +1106.5281 +1106.5628 Theory +1107.0874 Classical Analysis and ODEs +1107.4565 Number Theory +1108.1798 Theory +1108.5869 +1108.6126 Algebraic Geometry +1109.0878 Chaotic Dynamics +1109.1859 Strongly Correlated Electrons +1109.2558 Space Physics +1109.2841 Atomic Physics +1109.2931 Theory +1109.5274 +1109.5429 Operator Algebras +1110.3654 Superconductivity +1110.5308 Number Theory +1111.0285 Optics +1111.4174 Information Theory +1111.7099 Probability +1111.7106 Probability +1112.0855 Optics +1112.2681 Artificial Intelligence +1112.4756 Probability +1112.4919 +1112.5042 Analysis of PDEs +1112.5208 +1112.5609 +1112.6357 Algebraic Geometry +1201.0251 Pattern Formation and Solitons +1201.0330 Computational Complexity +1201.0635 Disordered Systems and Neural Networks +1201.1137 Commutative Algebra +1201.5309 Theory +1201.5554 Cosmology and Nongalactic Astrophysics +1201.6248 Information Theory +1202.1424 Information Theory +1202.1700 Mesoscale and Nanoscale Physics +1202.2524 Lattice +1202.4050 Learning +1202.4141 Superconductivity +1202.6584 Dynamical Systems +1203.0746 Complex Variables +1203.1071 Cosmology and Nongalactic Astrophysics +1203.2107 Optimization and Control +1203.2447 Disordered Systems and Neural Networks +1203.2450 Cell Behavior +1203.2533 Phenomenology +1203.3271 Statistical Mechanics +1203.3557 +1203.3581 +1203.3813 Strongly Correlated Electrons +1203.5048 Phenomenology +1203.5984 Chemical Physics +1203.6176 Materials Science +1203.6355 Mesoscale and Nanoscale Physics +1203.6477 Probability +1204.1331 Algebraic Geometry +1204.1574 Number Theory +1204.1626 Functional Analysis +1204.3549 Combinatorics +1204.3604 Phenomenology +1204.3657 +1204.3803 +1204.4017 Mesoscale and Nanoscale Physics +1204.4504 Phenomenology +1204.5576 Computational Complexity +1204.6323 Strongly Correlated Electrons +1204.6372 +1204.6601 +1205.2319 Quantum Gases +1205.3634 Dynamical Systems +1205.5296 +1205.5330 Phenomenology +1205.5884 Statistical Mechanics +1205.6788 Strongly Correlated Electrons +1206.0662 +1206.0824 +1206.1617 Fluid Dynamics +1206.1948 Information Theory +1206.1971 Neural and Evolutionary Computing +1206.2055 +1206.2873 Optimization and Control +1206.3526 +1206.4446 +1206.4753 Hardware Architecture +1206.5232 Computation +1206.5305 Theory +1206.5476 Atomic Physics +1206.5855 Plasma Physics +1207.0033 Neurons and Cognition +1207.0782 Information Theory +1207.2258 Mesoscale and Nanoscale Physics +1207.2447 Materials Science +1207.2755 Statistical Mechanics +1207.2881 Soft Condensed Matter +1207.3314 +1207.3554 Computer Vision and Pattern Recognition +1207.4759 +1207.5011 Differential Geometry +1207.5293 Artificial Intelligence +1207.5395 Superconductivity +1207.6222 Mesoscale and Nanoscale Physics +1207.6436 Experiment +1207.7195 +1207.7224 +1207.7239 +1208.0355 +1208.0663 +1208.1045 Systems and Control +1208.1879 Atomic Physics +1208.1887 +1208.2116 Information Theory +1208.2655 Computer Vision and Pattern Recognition +1208.2694 History and Overview +1208.4159 Superconductivity +1208.4618 Number Theory +1208.5852 Popular Physics +1208.5963 Dynamical Systems +1208.6156 Experiment +1209.0140 Superconductivity +1209.0219 Data Analysis, Statistics and Probability +1209.0348 Cosmology and Nongalactic Astrophysics +1209.0382 Experiment +1209.1013 Computer Science and Game Theory +1209.1134 Theory +1209.1162 Geometric Topology +1209.1742 Experiment +1209.1866 Phenomenology +1209.2344 Experiment +1209.2433 Applications +1209.2494 +1209.2792 +1209.3038 Materials Science +1209.3842 Mesoscale and Nanoscale Physics +1209.4735 Materials Science +1209.4876 Theory +1209.4953 +1209.5291 Soft Condensed Matter +1209.5533 +1209.5617 Materials Science +1209.6424 Instrumentation and Methods for Astrophysics +1210.0297 Multimedia +1210.0310 Computer Vision and Pattern Recognition +1210.0648 Representation Theory +1210.0888 Robotics +1210.0987 Instrumentation and Methods for Astrophysics +1210.1019 Instrumentation and Detectors +1210.1399 Medical Physics +1210.1492 Cosmology and Nongalactic Astrophysics +1210.1549 Information Theory +1210.1857 Fluid Dynamics +1210.1858 Instrumentation and Detectors +1210.1869 Exactly Solvable and Integrable Systems +1210.1872 Chemical Physics +1210.1878 Numerical Analysis +1210.1879 Group Theory +1210.1882 Geometric Topology +1210.1885 Numerical Analysis +1210.1892 Information Theory +1210.1898 Instrumentation and Methods for Astrophysics +1210.1899 Instrumentation and Methods for Astrophysics +1210.1904 Information Theory +1210.1909 Rings and Algebras +1210.1912 +1210.1915 Information Theory +1210.1916 Computer Vision and Pattern Recognition +1210.1922 Algebraic Geometry +1210.1923 Algebraic Geometry +1210.1924 Lattice +1210.1925 Cryptography and Security +1210.1926 Combinatorics +1210.1931 Artificial Intelligence +1210.1936 +1210.1937 Differential Geometry +1210.1940 Cryptography and Security +1210.1944 Functional Analysis +1210.1948 Astrophysics of Galaxies +1210.1951 Mesoscale and Nanoscale Physics +1210.1952 Classical Analysis and ODEs +1210.1955 Probability +1210.1956 Classical Analysis and ODEs +1210.1958 Representation Theory +1210.1959 Systems and Control +1210.1962 Algebraic Geometry +1210.1963 Analysis of PDEs +1210.1964 Analysis of PDEs +1210.1966 Risk Management +1210.1974 Strongly Correlated Electrons +1210.1975 Physics and Society +1210.1977 +1210.1983 Neural and Evolutionary Computing +1210.1984 Mesoscale and Nanoscale Physics +1210.1985 Functional Analysis +1210.1989 Lattice +1210.1994 Phenomenology +1210.1995 Materials Science +1210.1998 Astrophysics of Galaxies +1210.2000 Symplectic Geometry +1210.2005 Networking and Internet Architecture +1210.2013 Computers and Society +1210.2017 Differential Geometry +1210.2021 Risk Management +1210.2023 Computers and Society +1210.2025 Networking and Internet Architecture +1210.2026 Commutative Algebra +1210.2028 Logic in Computer Science +1210.2030 Cryptography and Security +1210.2035 Systems and Control +1210.2038 +1210.2040 Phenomenology +1210.2041 Optimization and Control +1210.2043 Risk Management +1210.2044 Classical Analysis and ODEs +1210.2048 Theory +1210.2049 Superconductivity +1210.2050 Algebraic Geometry +1210.2053 Algebraic Geometry +1210.2054 Algebraic Geometry +1210.2055 Combinatorics +1210.2056 Analysis of PDEs +1210.2059 Cosmology and Nongalactic Astrophysics +1210.2061 Combinatorics +1210.2064 Combinatorics +1210.2066 Algebraic Geometry +1210.2071 Statistics Theory +1210.2076 Numerical Analysis +1210.2077 Machine Learning +1210.2079 Analysis of PDEs +1210.2081 Functional Analysis +1210.2082 Algebraic Geometry +1210.2084 Differential Geometry +1210.2086 Analysis of PDEs +1210.2088 General Finance +1210.2089 Other Computer Science +1210.2090 Other Computer Science +1210.2091 Other Computer Science +1210.2093 Materials Science +1210.2096 +1210.2098 Theory +1210.2101 Group Theory +1210.2103 Operator Algebras +1210.2108 High Energy Astrophysical Phenomena +1210.2109 +1210.2122 Networking and Internet Architecture +1210.2123 Information Theory +1210.2124 Analysis of PDEs +1210.2125 Programming Languages +1210.2126 Information Theory +1210.2127 Cosmology and Nongalactic Astrophysics +1210.2133 Materials Science +1210.2138 Instrumentation and Methods for Astrophysics +1210.2139 Astrophysics of Galaxies +1210.2140 Neurons and Cognition +1210.2141 Numerical Analysis +1210.2144 Information Theory +1210.2146 Information Theory +1210.2147 Neurons and Cognition +1210.2148 Numerical Analysis +1210.2149 Cryptography and Security +1210.2158 Quantum Gases +1210.2159 Information Theory +1210.2161 Cosmology and Nongalactic Astrophysics +1210.2162 Learning +1210.2163 +1210.2172 +1210.2174 Networking and Internet Architecture +1210.2175 Solar and Stellar Astrophysics +1210.2183 Chemical Physics +1210.2185 Materials Science +1210.2189 Mesoscale and Nanoscale Physics +1210.2190 Differential Geometry +1210.2193 Mesoscale and Nanoscale Physics +1210.2195 Software Engineering +1210.2196 Geophysics +1210.2199 +1210.2200 Astrophysics of Galaxies +1210.2201 +1210.2202 Metric Geometry +1210.2207 Mesoscale and Nanoscale Physics +1210.2208 History and Philosophy of Physics +1210.2209 Probability +1210.2210 +1210.2212 +1210.2213 Probability +1210.2225 Representation Theory +1210.2226 Materials Science +1210.2228 +1210.2229 Soft Condensed Matter +1210.2230 Materials Science +1210.2234 High Energy Astrophysical Phenomena +1210.2241 Mesoscale and Nanoscale Physics +1210.2244 Analysis of PDEs +1210.2247 Computational Physics +1210.2248 Analysis of PDEs +1210.2252 +1210.2260 Computational Complexity +1210.2261 Materials Science +1210.2266 Symplectic Geometry +1210.2270 General Physics +1210.2271 Dynamical Systems +1210.2272 Information Theory +1210.2273 Formal Languages and Automata Theory +1210.2274 Analysis of PDEs +1210.2277 Differential Geometry +1210.2281 +1210.2283 Physics and Society +1210.2284 Number Theory +1210.2287 Logic in Computer Science +1210.2288 Populations and Evolution +1210.2289 Distributed, Parallel, and Cluster Computing +1210.2294 Methodology +1210.2295 Astrophysics of Galaxies +1210.2296 Experiment +1210.2301 Theory +1210.2303 K-Theory and Homology +1210.2307 Materials Science +1210.2310 Mesoscale and Nanoscale Physics +1210.2312 +1210.2316 Artificial Intelligence +1210.2320 Populations and Evolution +1210.2323 Solar and Stellar Astrophysics +1210.2330 Complex Variables +1210.2333 Atmospheric and Oceanic Physics +1210.2335 Cosmology and Nongalactic Astrophysics +1210.2336 Molecular Networks +1210.2339 +1210.2343 Formal Languages and Automata Theory +1210.2348 +1210.2356 Atomic Physics +1210.2357 Instrumentation and Methods for Astrophysics +1210.2358 Number Theory +1210.2359 Classical Analysis and ODEs +1210.2361 Probability +1210.2372 Complex Variables +1210.2379 Functional Analysis +1210.2381 Data Structures and Algorithms +1210.2382 Analysis of PDEs +1210.2388 Computer Vision and Pattern Recognition +cond-mat/0304195 Materials Science +gr-qc/9905009 +gr-qc/9905036 +gr-qc/9906039 +gr-qc/9906079 +hep-th/9809170 Theory +hep-th/9810247 Theory +hep-th/9812254 Theory +hep-th/9901013 Theory +0708.2620 Mesoscale and Nanoscale Physics +0804.3527 Theory +0904.0846 Algebraic Geometry +0904.2544 +0908.4027 Theory +0910.0960 Analysis of PDEs +1002.2595 Molecular Networks +1003.0856 Soft Condensed Matter +1005.4990 +1007.1710 Logic in Computer Science +1007.4680 Representation Theory +1008.0576 Molecular Networks +1009.3205 Algebraic Geometry +1009.5711 Numerical Analysis +1011.4786 Dynamical Systems +1011.6483 Quantum Algebra +1012.0154 Solar and Stellar Astrophysics +1102.5031 Statistics Theory +1103.2023 Chemical Physics +1104.1491 Logic +1104.1937 Commutative Algebra +1104.2000 Algebraic Geometry +1104.2224 Statistics Theory +1104.4062 +1104.4905 Optimization and Control +1105.1077 Strongly Correlated Electrons +1106.5212 +1106.6053 General Physics +1107.0166 Experiment +1107.1762 +1107.4059 Algebraic Geometry +1107.5306 Cosmology and Nongalactic Astrophysics +1107.5770 Analysis of PDEs +1108.0408 Computational Complexity +1108.0787 +1108.1165 Analysis of PDEs +1108.1368 Phenomenology +1108.1936 Strongly Correlated Electrons +1108.2322 +1108.5331 Strongly Correlated Electrons +1108.5383 Phenomenology +1108.5571 +1108.5620 Phenomenology +1108.5807 Superconductivity +1108.6181 Strongly Correlated Electrons +1108.6188 Quantum Gases +1109.2620 Strongly Correlated Electrons +1109.4944 Cosmology and Nongalactic Astrophysics +1110.0787 +1110.1950 Number Theory +1110.4185 +1111.0379 Populations and Evolution +1111.1307 Statistics Theory +1111.3228 Theory +1111.4436 Soft Condensed Matter +1111.5888 Analysis of PDEs +1111.7195 +1112.0326 Cosmology and Nongalactic Astrophysics +1112.1591 Experiment +1112.1622 Quantum Gases +1112.1642 Number Theory +1112.1780 Fluid Dynamics +1112.2186 Statistical Mechanics +1112.2538 Disordered Systems and Neural Networks +1112.2585 Mesoscale and Nanoscale Physics +1112.3308 Physics and Society +1112.3354 Lattice +1112.3372 +1112.3462 High Energy Astrophysical Phenomena +1112.3560 +1112.3922 +1112.4161 Statistical Mechanics +1201.0159 Mesoscale and Nanoscale Physics +1201.1971 Atomic Physics +1201.2028 Mesoscale and Nanoscale Physics +1201.2184 +1201.2873 Fluid Dynamics +1201.4612 Data Analysis, Statistics and Probability +1201.5161 Combinatorics +1201.6468 Information Theory +1202.0796 Computer Science and Game Theory +1202.0937 Information Theory +1202.1160 Statistical Mechanics +1202.2191 Analysis of PDEs +1202.2315 Mesoscale and Nanoscale Physics +1202.5372 +1202.5872 +1202.6500 Solar and Stellar Astrophysics +1203.0196 Phenomenology +1203.0555 Materials Science +1203.0556 Materials Science +1203.0985 Statistical Mechanics +1203.3295 Solar and Stellar Astrophysics +1203.3393 Mesoscale and Nanoscale Physics +1203.4527 Optics +1203.4896 Quantum Gases +1203.5042 Fluid Dynamics +1203.5398 Phenomenology +1203.6677 Strongly Correlated Electrons +1203.6869 +1204.1212 +1204.2535 Cosmology and Nongalactic Astrophysics +1204.3326 Mesoscale and Nanoscale Physics +1204.5556 Materials Science +1204.6170 Distributed, Parallel, and Cluster Computing +1204.6392 Statistical Mechanics +1205.1216 +1205.1591 Strongly Correlated Electrons +1205.4123 Statistics Theory +1205.4332 Information Theory +1205.4819 Materials Science +1205.5056 Lattice +1205.5266 General Physics +1205.6098 Astrophysics of Galaxies +1205.6109 Differential Geometry +1205.6178 Chaotic Dynamics +1205.6179 Optimization and Control +1205.6349 Cryptography and Security +1205.6687 Statistics Theory +1205.6794 Optics +1205.6816 Theory +1205.6824 General Topology +1205.6827 Rings and Algebras +1205.6828 Analysis of PDEs +1205.6831 Analysis of PDEs +1205.6832 Computation and Language +1205.6835 Cosmology and Nongalactic Astrophysics +1205.6837 Representation Theory +1205.6839 Optics +1205.6845 Information Theory +1205.6846 Information Theory +1205.6847 Combinatorics +1205.6849 Information Theory +1205.6851 Statistical Mechanics +1205.6855 Information Retrieval +1205.6857 Computation +1205.6869 Combinatorics +1205.6870 Lattice +1205.6886 +1205.6888 General Topology +1205.6891 Rings and Algebras +1205.6893 Commutative Algebra +1205.6895 Statistical Mechanics +1205.6899 Plasma Physics +1205.6904 Software Engineering +1205.6907 Information Theory +1205.6910 Networking and Internet Architecture +1205.6917 Systems and Control +1205.6918 Phenomenology +1205.6919 Systems and Control +1205.6925 Information Theory +1205.6927 Optics +1205.6928 Logic in Computer Science +1205.6929 Phenomenology +1205.6939 Solar and Stellar Astrophysics +1205.6948 Combinatorics +1205.6956 +1205.6961 Data Structures and Algorithms +1205.6964 Classical Analysis and ODEs +1205.6966 General Topology +1205.6967 Phenomenology +1205.6973 Solar and Stellar Astrophysics +1205.6974 Information Theory +1205.6977 Accelerator Physics +1205.6979 Accelerator Physics +1205.6980 Representation Theory +1205.6982 Differential Geometry +1205.6983 Phenomenology +1205.6990 Algebraic Geometry +1205.6992 Analysis of PDEs +1205.6996 Plasma Physics +1205.7000 Phenomenology +1205.7003 Dynamical Systems +1205.7004 +1205.7005 Soft Condensed Matter +1205.7009 Social and Information Networks +1205.7011 Adaptation and Self-Organizing Systems +1205.7022 Probability +1205.7023 Differential Geometry +1205.7025 Multiagent Systems +1205.7026 Soft Condensed Matter +1205.7030 Optimization and Control +1205.7033 Superconductivity +1205.7042 Algebraic Geometry +1205.7043 Algebraic Geometry +1205.7044 Information Theory +1205.7058 Classical Analysis and ODEs +1205.7066 Analysis of PDEs +1205.7069 Statistical Mechanics +1205.7070 Mesoscale and Nanoscale Physics +1205.7081 Dynamical Systems +1205.7082 Analysis of PDEs +1205.7084 Combinatorics +1205.7085 Neurons and Cognition +1205.7090 +astro-ph/0001003 +math/0203107 Representation Theory +0704.2167 Statistics Theory +0809.4345 Algebraic Geometry +0911.0952 Numerical Analysis +1001.2874 General Mathematics +1001.3433 Fluid Dynamics +1001.4224 General Mathematics +1002.2649 Phenomenology +1003.0155 Mesoscale and Nanoscale Physics +1004.4461 General Mathematics +1005.1531 Combinatorics +1008.0526 Statistics Theory +1008.1294 Superconductivity +1008.3233 Exactly Solvable and Integrable Systems +1010.2896 K-Theory and Homology +1011.1439 Phenomenology +1011.2557 Analysis of PDEs +1011.3386 Solar and Stellar Astrophysics +1011.5462 Strongly Correlated Electrons +1101.5893 Group Theory +1101.6017 Solar and Stellar Astrophysics +1102.3543 Algebraic Geometry +1103.3442 Statistics Theory +1104.0057 Networking and Internet Architecture +1104.2421 Analysis of PDEs +1104.2637 Statistics Theory +1106.0289 +1106.0930 Algebraic Geometry +1106.1559 Strongly Correlated Electrons +1106.5032 Materials Science +1106.5673 Lattice +1107.0521 Machine Learning +1107.0950 Materials Science +1108.0531 +1108.0595 Phenomenology +1108.3801 Mesoscale and Nanoscale Physics +1108.4621 Geometric Topology +1109.1968 Classical Physics +1109.2046 Mesoscale and Nanoscale Physics +1109.2585 Theory +1109.2853 Analysis of PDEs +1109.6329 Cosmology and Nongalactic Astrophysics +1109.6330 Strongly Correlated Electrons +1110.0096 Phenomenology +1110.1296 Strongly Correlated Electrons +1110.3421 +1110.3656 +1110.5331 Cosmology and Nongalactic Astrophysics +1110.5746 +1111.0239 Mesoscale and Nanoscale Physics +1111.1381 +1111.2050 Phenomenology +1111.2312 Phenomenology +1111.2999 Chaotic Dynamics +1111.3496 Superconductivity +1111.4063 Mesoscale and Nanoscale Physics +1112.0892 Functional Analysis +1112.1582 Analysis of PDEs +1112.3028 Phenomenology +1112.5129 Metric Geometry +1201.1132 Materials Science +1201.1136 +1201.1818 Analysis of PDEs +1201.2401 Experiment +1201.2491 +1201.4276 Theory +1201.4514 Optics +1201.4528 Number Theory +1201.5007 Functional Analysis +1201.5028 Solar and Stellar Astrophysics +1201.5039 Combinatorics +1201.5129 Classical Analysis and ODEs +1201.5132 Risk Management +1201.5133 Methodology +1201.5137 Cell Behavior +1201.5146 Analysis of PDEs +1201.5147 Geometric Topology +1201.5150 Algebraic Topology +1201.5152 Dynamical Systems +1201.5154 Information Theory +1201.5156 Classical Analysis and ODEs +1201.5157 Analysis of PDEs +1201.5162 Logic +1201.5169 Applications +1201.5177 Earth and Planetary Astrophysics +1201.5182 Information Retrieval +1201.5185 Probability +1201.5186 Dynamical Systems +1201.5187 Biological Physics +1201.5189 Functional Analysis +1201.5190 Physics Education +1201.5193 Materials Science +1201.5195 Operator Algebras +1201.5199 Analysis of PDEs +1201.5200 Chemical Physics +1201.5205 +1201.5206 Analysis of PDEs +1201.5208 Instrumentation and Detectors +1201.5211 Populations and Evolution +1201.5215 Differential Geometry +1201.5217 Learning +1201.5220 Analysis of PDEs +1201.5223 Astrophysics of Galaxies +1201.5226 Statistical Mechanics +1201.5227 Computer Vision and Pattern Recognition +1201.5229 Performance +1201.5239 Category Theory +1201.5241 Information Theory +1201.5242 Instrumentation and Detectors +1201.5244 +1201.5245 Combinatorics +1201.5246 Solar and Stellar Astrophysics +1201.5247 Materials Science +1201.5248 Materials Science +1201.5249 Materials Science +1201.5255 Materials Science +1201.5264 Instrumentation and Detectors +1201.5266 Classical Analysis and ODEs +1201.5267 Experiment +1201.5269 +1201.5270 Accelerator Physics +1201.5271 Fluid Dynamics +1201.5272 Phenomenology +1201.5273 Combinatorics +1201.5276 Strongly Correlated Electrons +1201.5285 Multimedia +1201.5288 Phenomenology +1201.5292 Experiment +1201.5293 Cosmology and Nongalactic Astrophysics +1201.5297 Mesoscale and Nanoscale Physics +1201.5298 Computational Complexity +1201.5304 General Physics +1201.5306 Statistical Mechanics +1201.5316 Algebraic Geometry +1201.5317 Combinatorics +1201.5322 Group Theory +1201.5324 Analysis of PDEs +1201.5330 Analysis of PDEs +1201.5335 Probability +1201.5340 Discrete Mathematics +1201.5342 Category Theory +1201.5344 Biomolecules +1201.5345 Lattice +1201.5349 Plasma Physics +1201.5350 Representation Theory +1201.5352 History and Philosophy of Physics +1201.5353 History and Philosophy of Physics +1201.5358 History and Philosophy of Physics +1201.5361 Combinatorics +1201.5362 +astro-ph/0311033 +cond-mat/0107513 Soft Condensed Matter +gr-qc/0605152 +0805.4000 Group Theory +0807.3682 Probability +0810.1906 Phenomenology +0901.4965 Mesoscale and Nanoscale Physics +0902.3894 Superconductivity +0909.1853 Geometric Topology +0909.2027 +0909.2954 Representation Theory +0909.3841 Theory +0910.1721 Phenomenology +0911.3482 Information Theory +0911.4766 +0912.0830 Geometric Topology +0912.2847 Differential Geometry +0912.3675 Mesoscale and Nanoscale Physics +1001.3223 Pricing of Securities +1002.3762 Logic +1003.1703 Chaotic Dynamics +1004.1006 Mesoscale and Nanoscale Physics +1005.0436 Strongly Correlated Electrons +1006.4660 Differential Geometry +1008.0931 +1008.1291 Instrumentation and Methods for Astrophysics +1008.1518 Strongly Correlated Electrons +1008.4199 Complex Variables +1009.0583 Functional Analysis +1010.2791 Analysis of PDEs +1011.3108 Materials Science +1012.3895 Mesoscale and Nanoscale Physics +1103.6088 Mesoscale and Nanoscale Physics +1105.0523 Physics and Society +1105.0742 Atomic Physics +1105.3033 Cosmology and Nongalactic Astrophysics +1105.5910 Representation Theory +1106.0123 Computational Finance +1106.0780 Statistical Mechanics +1106.1326 Superconductivity +1106.5347 Strongly Correlated Electrons +1106.6318 Spectral Theory +1107.0892 Strongly Correlated Electrons +1107.3051 Atomic Physics +1107.4046 Analysis of PDEs +1107.5090 +1107.5867 Mesoscale and Nanoscale Physics +1108.2767 Probability +1108.3159 Mesoscale and Nanoscale Physics +1108.4680 +1108.6074 +1109.0087 Phenomenology +1109.1835 Phenomenology +1109.2097 Mesoscale and Nanoscale Physics +1109.3352 +1109.4669 Functional Analysis +1109.5973 Materials Science +1109.6039 Materials Science +1109.6163 Strongly Correlated Electrons +1109.6551 +1110.1251 Phenomenology +1110.2309 Optics +1110.5734 Soft Condensed Matter +1110.5883 +1110.6045 Materials Science +1110.6307 Chaotic Dynamics +1110.6612 Phenomenology +1111.0746 Strongly Correlated Electrons +1111.0839 Astrophysics of Galaxies +1111.1786 Probability +1111.4454 Phenomenology +1111.4765 Phenomenology +1111.5697 Strongly Correlated Electrons +1111.5958 Differential Geometry +1111.7317 Atomic Physics +1112.0405 Algebraic Geometry +1112.0775 Superconductivity +1112.2843 Algebraic Geometry +1112.4798 Phenomenology +1201.0202 Soft Condensed Matter +1201.1248 Experiment +1201.2343 Statistics Theory +1201.3246 Instrumentation and Detectors +1201.3311 Optimization and Control +1201.3669 Number Theory +1201.3774 Popular Physics +1201.3969 +1201.4171 Cosmology and Nongalactic Astrophysics +1201.4176 Materials Science +1201.4179 Numerical Analysis +1201.4182 Representation Theory +1201.4190 Astrophysics of Galaxies +1201.4192 +1201.4194 +1201.4196 Functional Analysis +1201.4204 Solar and Stellar Astrophysics +1201.4206 Data Structures and Algorithms +1201.4210 Information Retrieval +1201.4212 Optics +1201.4214 Information Theory +1201.4216 Combinatorics +1201.4217 Classical Analysis and ODEs +1201.4220 Functional Analysis +1201.4225 Group Theory +1201.4230 +1201.4250 +1201.4259 Algebraic Geometry +1201.4262 Programming Languages +1201.4265 Phenomenology +1201.4266 Cosmology and Nongalactic Astrophysics +1201.4274 Geometric Topology +1201.4279 Human-Computer Interaction +1201.4290 Analysis of PDEs +1201.4291 Metric Geometry +1201.4293 Materials Science +1201.4295 +1201.4297 Combinatorics +1201.4298 Materials Science +1201.4301 Networking and Internet Architecture +1201.4304 Cryptography and Security +1201.4311 Representation Theory +1201.4317 Combinatorics +1201.4320 Instrumentation and Detectors +1201.4325 Optics +1201.4327 Phenomenology +1201.4328 Theory +1201.4329 Discrete Mathematics +1201.4330 Phenomenology +1201.4332 Combinatorics +1201.4334 Information Theory +1201.4335 Disordered Systems and Neural Networks +1201.4336 Materials Science +1201.4343 Chaotic Dynamics +1201.4347 Solar and Stellar Astrophysics +1201.4349 Quantum Gases +1201.4352 Solar and Stellar Astrophysics +1201.4354 Combinatorics +1201.4358 Differential Geometry +1201.4362 +1201.4365 +1201.4375 Combinatorics +1201.4382 Phenomenology +astro-ph/0504597 +cs/0410065 Logic in Computer Science +math/0301139 Differential Geometry +math/0301223 Differential Geometry +math/0404499 Group Theory +quant-ph/0401168 +quant-ph/0509166 +0707.1921 Materials Science +0707.3063 Differential Geometry +0708.2315 Rings and Algebras +0803.2249 Algebraic Topology +0806.2586 Differential Geometry +0807.1750 Cell Behavior +0811.3431 +0901.0811 +0904.0186 Differential Geometry +0906.4097 Algebraic Topology +0908.0850 Pattern Formation and Solitons +0908.4585 Probability +0910.5193 Probability +1005.2301 Pattern Formation and Solitons +1008.3044 Probability +1009.0485 Dynamical Systems +1009.2085 Differential Geometry +1009.3566 Logic +1010.0033 +1010.1482 Computational Physics +1010.5042 Combinatorics +1011.5998 Differential Geometry +1101.0984 History and Overview +1101.4786 Number Theory +1101.5936 Combinatorics +1102.0151 Computational Geometry +1102.3892 Quantum Algebra +1102.4380 Classical Analysis and ODEs +1103.0206 Logic +1103.0234 Cosmology and Nongalactic Astrophysics +1104.1920 +1104.4669 Data Structures and Algorithms +1105.1152 Differential Geometry +1106.2138 +1106.3339 +1106.3707 Superconductivity +1107.3424 Dynamical Systems +1107.4183 Quantum Algebra +1107.4702 Geometric Topology +1108.1072 Mesoscale and Nanoscale Physics +1108.3309 +1108.5815 Numerical Analysis +1109.3219 Strongly Correlated Electrons +1109.4084 Algebraic Topology +1109.6694 Quantum Algebra +1110.2403 +1110.4977 Combinatorics +1110.5656 Probability +1111.1222 Theory +1111.3260 +1111.6994 Strongly Correlated Electrons +1112.4573 Classical Analysis and ODEs +1112.4715 Biological Physics +1112.4807 Theory +1112.4963 Phenomenology +1112.5188 +1112.5848 Materials Science +1112.6025 Cosmology and Nongalactic Astrophysics +1201.0838 Learning +1201.1394 Solar and Stellar Astrophysics +1201.2138 Quantum Gases +1201.2532 Plasma Physics +1201.3206 +1201.4822 +1201.5368 Algebraic Geometry +1202.2132 Materials Science +1203.1187 Number Theory +1203.1593 Phenomenology +1203.2753 Mesoscale and Nanoscale Physics +1203.4658 Quantum Gases +1203.4915 Logic +1203.4939 High Energy Astrophysical Phenomena +1204.0108 Differential Geometry +1204.2972 Differential Geometry +1204.3580 +1204.3949 Statistics Theory +1204.5394 +1204.5969 Mesoscale and Nanoscale Physics +1204.6243 Phenomenology +1204.6479 +1205.1149 +1205.1545 Statistical Mechanics +1205.2487 Analysis of PDEs +1205.3106 Mesoscale and Nanoscale Physics +1205.4137 Differential Geometry +1205.4660 Soft Condensed Matter +1205.5301 Number Theory +1205.5543 Dynamical Systems +1205.6158 Applications +1206.0216 Disordered Systems and Neural Networks +1206.0673 +1206.0743 Mesoscale and Nanoscale Physics +1206.0815 Optics +1206.0910 Phenomenology +1206.0969 Lattice +1206.2268 Chemical Physics +1206.2324 Strongly Correlated Electrons +1206.2336 +1206.3215 Computational Physics +1206.3924 Physics and Society +1206.4456 +1206.5053 Cosmology and Nongalactic Astrophysics +1206.5908 Optics +1206.5910 Probability +1206.6100 General Physics +1206.7068 Optics +1207.0423 +1207.1632 Fluid Dynamics +1207.2260 Mesoscale and Nanoscale Physics +1207.2582 Strongly Correlated Electrons +1207.2817 +1207.3133 Information Theory +1207.3211 Neurons and Cognition +1207.3345 Superconductivity +1207.4743 Optimization and Control +1207.4978 Distributed, Parallel, and Cluster Computing +1207.5043 Superconductivity +1207.6498 Strongly Correlated Electrons +1207.7019 Formal Languages and Automata Theory +1207.7309 Geometric Topology +1207.7357 Chaotic Dynamics +1208.0153 Information Retrieval +1208.0914 Representation Theory +1208.1026 Number Theory +1208.1367 Combinatorics +1208.1425 +1208.1710 Atomic Physics +1208.1940 Artificial Intelligence +1208.2261 Information Retrieval +1208.2264 Earth and Planetary Astrophysics +1208.2265 Software Engineering +1208.2267 Combinatorics +1208.2268 Dynamical Systems +1208.2269 History and Overview +1208.2270 Solar and Stellar Astrophysics +1208.2278 Networking and Internet Architecture +1208.2284 Cosmology and Nongalactic Astrophysics +1208.2288 Functional Analysis +1208.2293 Theory +1208.2294 Learning +1208.2295 Cosmology and Nongalactic Astrophysics +1208.2299 +1208.2303 Analysis of PDEs +1208.2305 Cryptography and Security +1208.2309 Mesoscale and Nanoscale Physics +1208.2314 Networking and Internet Architecture +1208.2315 Combinatorics +1208.2318 Data Structures and Algorithms +1208.2321 Networking and Internet Architecture +1208.2327 Spectral Theory +1208.2329 Data Structures and Algorithms +1208.2332 Systems and Control +1208.2333 Cryptography and Security +1208.2334 Cryptography and Security +1208.2339 Phenomenology +1208.2345 Neural and Evolutionary Computing +1208.2352 Analysis of PDEs +1208.2355 Social and Information Networks +1208.2357 Cryptography and Security +1208.2358 Fluid Dynamics +1208.2359 Theory +1208.2365 +1208.2375 Optics +1208.2377 Instrumentation and Detectors +1208.2384 Logic +1208.2386 Number Theory +1208.2389 Dynamical Systems +1208.2390 Group Theory +1208.2392 Functional Analysis +1208.2393 Functional Analysis +1208.2394 Information Theory +1208.2395 Mesoscale and Nanoscale Physics +1208.2396 Adaptation and Self-Organizing Systems +1208.2401 Networking and Internet Architecture +1208.2403 Networking and Internet Architecture +1208.2413 Solar and Stellar Astrophysics +1208.2414 Exactly Solvable and Integrable Systems +1208.2415 Commutative Algebra +1208.2417 Machine Learning +1208.2418 Soft Condensed Matter +1208.2422 High Energy Astrophysical Phenomena +1208.2423 Functional Analysis +1208.2428 Distributed, Parallel, and Cluster Computing +1208.2429 Systems and Control +1208.2437 Neural and Evolutionary Computing +1208.2438 Algebraic Geometry +1208.2439 Materials Science +1208.2440 Logic in Computer Science +1208.2442 Rings and Algebras +1208.2447 Computational Geometry +1208.2450 Analysis of PDEs +1208.2451 Numerical Analysis +1208.2452 Number Theory +1208.2455 Dynamical Systems +1208.2457 Logic in Computer Science +1208.2459 Solar and Stellar Astrophysics +1208.2460 Software Engineering +1208.2466 Commutative Algebra +1208.2469 Logic in Computer Science +1208.2474 +1208.2476 Materials Science +1208.2478 Information Retrieval +1208.2480 Instrumentation and Methods for Astrophysics +1208.2483 Complex Variables +1208.2486 Other Computer Science +1208.2487 Mesoscale and Nanoscale Physics +1208.2488 Information Theory +1208.2492 Superconductivity +1208.2497 Phenomenology +1208.2498 Formal Languages and Automata Theory +1208.2508 Accelerator Physics +1208.2510 Solar and Stellar Astrophysics +1208.2511 Representation Theory +1208.2512 Plasma Physics +1208.2516 Solar and Stellar Astrophysics +1208.2521 Classical Analysis and ODEs +1208.2523 Learning +1208.2527 Probability +1208.2528 Astrophysics of Galaxies +1208.2529 Strongly Correlated Electrons +1208.2531 Fluid Dynamics +1208.2537 Phenomenology +1208.2538 Group Theory +1208.2542 Cosmology and Nongalactic Astrophysics +1208.2543 Data Structures and Algorithms +1208.2554 Phenomenology +1208.2561 Computational Complexity +1208.2566 Artificial Intelligence +1208.2568 Phenomenology +1208.2569 Complex Variables +1208.2570 Number Theory +1208.2571 Analysis of PDEs +1208.2572 Machine Learning +1208.2574 Chemical Physics +1208.2577 Dynamical Systems +1208.2579 Logic +1208.2580 Fluid Dynamics +1208.2585 Logic in Computer Science +1208.2587 Number Theory +1208.2589 Physics and Society +1208.2605 Superconductivity +1208.2610 Chaotic Dynamics +1208.2613 Phenomenology +1208.2617 Geometric Topology +1208.2620 Other Computer Science +1208.2622 Numerical Analysis +1208.2631 Logic in Computer Science +1208.2633 Number Theory +1208.2634 Differential Geometry +1208.2641 Representation Theory +1208.2644 Analysis of PDEs +1208.2645 Phenomenology +1208.2649 Distributed, Parallel, and Cluster Computing +1208.2656 Numerical Analysis +1208.2657 +1208.2661 Analysis of PDEs +1208.2668 Accelerator Physics +1208.2670 Accelerator Physics +1208.2673 Phenomenology +1208.2676 Analysis of PDEs +1208.2677 Accelerator Physics +1208.2681 Accelerator Physics +1208.2684 Number Theory +cond-mat/0409728 Other Condensed Matter +math/0305139 Differential Geometry +math/0309274 Differential Geometry +math/0507047 Differential Geometry +math/0507048 Differential Geometry +math/0606410 Differential Geometry +math/0610610 Differential Geometry +physics/0410051 Atomic Physics +0705.3774 Differential Geometry +0712.3237 Analysis of PDEs +0804.0395 Analysis of PDEs +0806.1141 Statistics Theory +0809.5125 +0901.2580 Geometric Topology +0903.3325 Optimization and Control +0904.0834 Analysis of PDEs +0906.3292 Solar and Stellar Astrophysics +0909.4736 Phenomenology +0910.1246 Analysis of PDEs +0911.2919 Machine Learning +1001.4102 Theory +1001.5025 Earth and Planetary Astrophysics +1003.2092 Biological Physics +1005.1375 Metric Geometry +1008.0638 Cosmology and Nongalactic Astrophysics +1008.2545 Solar and Stellar Astrophysics +1008.3557 Mesoscale and Nanoscale Physics +1009.2896 Risk Management +1010.3093 Quantum Gases +1010.6030 Mesoscale and Nanoscale Physics +1010.6067 Earth and Planetary Astrophysics +1101.0158 Earth and Planetary Astrophysics +1101.0587 Numerical Analysis +1101.0612 Numerical Analysis +1101.1452 Numerical Analysis +1101.1845 Numerical Analysis +1103.0269 Probability +1103.1128 Mesoscale and Nanoscale Physics +1104.0925 Solar and Stellar Astrophysics +1104.4523 Algebraic Topology +1104.5269 History and Philosophy of Physics +1105.0338 Theory +1105.0793 Probability +1105.1417 +1105.2259 Strongly Correlated Electrons +1105.5575 Atomic Physics +1106.2555 Analysis of PDEs +1107.0960 Analysis of PDEs +1108.5608 Probability +1109.0482 Classical Analysis and ODEs +1109.0585 Geometric Topology +1109.1612 Statistics Theory +1109.3128 +1109.4540 Statistics Theory +1110.3231 Optics +1110.5440 Strongly Correlated Electrons +1111.0907 Neural and Evolutionary Computing +1111.1979 +1111.2593 +1111.3055 High Energy Astrophysical Phenomena +1111.4081 +1111.5626 Disordered Systems and Neural Networks +1111.5785 +1111.7052 Atomic Physics +1112.2052 Mesoscale and Nanoscale Physics +1112.3094 +1112.4061 Geometric Topology +1112.4280 +1112.5088 Materials Science +1112.5163 Solar and Stellar Astrophysics +1112.5664 High Energy Astrophysical Phenomena +1112.6381 +1201.0861 +1201.2594 Algebraic Geometry +1201.3200 Theory +1201.3871 Materials Science +1201.4392 Theory +1201.5115 Theory +1201.5665 Superconductivity +1202.0530 Fluid Dynamics +1202.0669 Mesoscale and Nanoscale Physics +1202.1804 +1202.3313 Combinatorics +1202.3670 History and Overview +1202.5325 Methodology +1202.6178 Algebraic Geometry +1203.0004 Mesoscale and Nanoscale Physics +1203.1531 +1203.2030 Quantum Gases +1203.3752 Strongly Correlated Electrons +1203.4576 Statistics Theory +1203.5870 Phenomenology +1203.5911 Materials Science +1203.6022 Phenomenology +1204.0742 Superconductivity +1204.1746 Logic in Computer Science +1204.3482 Group Theory +1204.4727 Cosmology and Nongalactic Astrophysics +1204.5105 Theory +1204.5272 +1204.5687 Astrophysics of Galaxies +1204.6000 Phenomenology +1205.0665 Populations and Evolution +1205.1322 Cell Behavior +1205.1802 Mesoscale and Nanoscale Physics +1205.5008 Mesoscale and Nanoscale Physics +1205.5995 Probability +1205.6015 Dynamical Systems +1205.6200 Analysis of PDEs +1205.6511 Theory +1205.6711 Statistics Theory +1206.0706 Statistical Mechanics +1206.0729 Information Theory +1206.0730 Neural and Evolutionary Computing +1206.0750 Solar and Stellar Astrophysics +1206.0753 Experiment +1206.0755 +1206.0762 +1206.0766 Molecular Networks +1206.0767 Materials Science +1206.0771 Geometric Topology +1206.0773 Statistics Theory +1206.0779 Combinatorics +1206.0782 Dynamical Systems +1206.0786 Algebraic Topology +1206.0787 Analysis of PDEs +1206.0788 Software Engineering +1206.0799 Combinatorics +1206.0805 Computational Geometry +1206.0807 Mesoscale and Nanoscale Physics +1206.0810 Functional Analysis +1206.0812 Phenomenology +1206.0816 Adaptation and Self-Organizing Systems +1206.0825 Statistics Theory +1206.0827 Statistics Theory +1206.0832 +1206.0836 Statistical Mechanics +1206.0838 Analysis of PDEs +1206.0840 Geophysics +1206.0841 +1206.0847 Statistics Theory +1206.0848 Cryptography and Security +1206.0849 +1206.0851 Cosmology and Nongalactic Astrophysics +1206.0853 Analysis of PDEs +1206.0855 Artificial Intelligence +1206.0857 Disordered Systems and Neural Networks +1206.0859 Atomic Physics +1206.0860 Combinatorics +1206.0867 Methodology +1206.0870 Analysis of PDEs +1206.0871 Statistics Theory +1206.0874 Experiment +1206.0875 Experiment +1206.0878 +1206.0881 +1206.0886 Cryptography and Security +1206.0890 Fluid Dynamics +1206.0893 Networking and Internet Architecture +1206.0897 Statistics Theory +1206.0900 +1206.0905 Information Retrieval +1206.0906 Earth and Planetary Astrophysics +1206.0907 Classical Analysis and ODEs +1206.0908 Other Computer Science +1206.0911 Logic in Computer Science +1206.0912 Differential Geometry +1206.0915 +1206.0917 Statistics Theory +1206.0918 Artificial Intelligence +1206.0922 Theory +1206.0925 Artificial Intelligence +1206.0940 Accelerator Physics +1206.0942 Mesoscale and Nanoscale Physics +1206.0949 Probability +1206.0951 Networking and Internet Architecture +1206.0959 Molecular Networks +1206.0962 Group Theory +1206.0967 Functional Analysis +1206.0968 Information Retrieval +1206.0971 Adaptation and Self-Organizing Systems +1206.0972 Optics +1206.0974 Neural and Evolutionary Computing +1206.0975 Classical Physics +1206.0976 Artificial Intelligence +1206.0978 Cryptography and Security +1206.0980 Methodology +1206.0981 Social and Information Networks +1206.0982 Probability +1206.0985 Computational Complexity +1206.0988 Distributed, Parallel, and Cluster Computing +1206.0993 Analysis of PDEs +1206.0994 Learning +1206.0995 Formal Languages and Automata Theory +1206.0996 Rings and Algebras +1206.1004 Other Computer Science +1206.1010 Analysis of PDEs +1206.1011 Information Retrieval +1206.1012 Neural and Evolutionary Computing +1206.1016 Probability +1206.1017 Molecular Networks +1206.1018 Fluid Dynamics +1206.1029 Other Quantitative Biology +1206.1032 Databases +1206.1038 Algebraic Geometry +1206.1039 Dynamical Systems +1206.1041 High Energy Astrophysical Phenomena +hep-ph/0412112 Phenomenology +0712.1639 Number Theory +0712.2738 Classical Analysis and ODEs +0903.4459 Algebraic Geometry +0904.3188 General Physics +0909.4925 Number Theory +0911.0212 Mesoscale and Nanoscale Physics +0912.3910 Mesoscale and Nanoscale Physics +0912.5224 Classical Analysis and ODEs +1001.3133 Classical Analysis and ODEs +1010.1073 Number Theory +1010.4387 +1011.3093 Number Theory +1012.2091 Phenomenology +1012.3836 Number Theory +1101.5519 Populations and Evolution +1103.3519 Quantum Algebra +1103.3605 Classical Analysis and ODEs +1103.4098 Classical Analysis and ODEs +1103.4748 +1103.5873 Quantum Algebra +1104.0141 Classical Analysis and ODEs +1104.3094 Quantum Algebra +1104.5643 Distributed, Parallel, and Cluster Computing +1106.4923 +1107.1082 Commutative Algebra +1107.1741 Operator Algebras +1108.0615 Classical Analysis and ODEs +1108.3681 +1108.5155 Classical Analysis and ODEs +1109.1758 Representation Theory +1109.1995 +1109.4318 +1109.6129 Dynamical Systems +1109.6200 Fluid Dynamics +1109.6275 Combinatorics +1110.0123 Quantum Gases +1110.1022 Numerical Analysis +1110.6204 +1111.5458 Combinatorics +1111.6545 Strongly Correlated Electrons +1111.6598 Cosmology and Nongalactic Astrophysics +1111.7174 Strongly Correlated Electrons +1112.2272 Theory +1112.4159 Mesoscale and Nanoscale Physics +1112.4626 Computational Geometry +1112.5807 Mesoscale and Nanoscale Physics +1112.5844 Dynamical Systems +1201.2006 Analysis of PDEs +1201.3834 Phenomenology +1201.3959 +1201.4942 +1201.6100 Commutative Algebra +1202.3460 Numerical Analysis +1202.3829 Earth and Planetary Astrophysics +1202.5328 +1202.6210 +1203.1061 Metric Geometry +1203.2228 Physics and Society +1203.4504 Classical Analysis and ODEs +1203.4511 Classical Analysis and ODEs +1204.1922 Probability +1204.2436 Machine Learning +1204.3167 Information Theory +1204.3846 Numerical Analysis +1205.2008 Functional Analysis +1205.2870 Cosmology and Nongalactic Astrophysics +1205.3500 Theory +1205.3511 Quantum Gases +1205.4259 Statistics Theory +1205.5809 Cosmology and Nongalactic Astrophysics +1206.0022 +1206.2106 Solar and Stellar Astrophysics +1206.2321 Chaotic Dynamics +1206.2864 Strongly Correlated Electrons +1206.2908 Materials Science +1206.5579 Earth and Planetary Astrophysics +1206.6123 Phenomenology +1207.0047 +1207.1086 +1207.2381 Spectral Theory +1207.3175 +1207.3891 Number Theory +1208.0671 Strongly Correlated Electrons +1208.1286 Phenomenology +1208.3788 Biological Physics +1208.4071 Materials Science +1208.5765 Mesoscale and Nanoscale Physics +1208.5955 Number Theory +1208.6094 Information Theory +1208.6340 Atomic Physics +1209.0454 Strongly Correlated Electrons +1209.0839 +1209.1987 Phenomenology +1209.2304 Mesoscale and Nanoscale Physics +1209.2562 Neurons and Cognition +1209.2586 Strongly Correlated Electrons +1209.4008 Lattice +1209.4184 Classical Physics +1209.4327 +1209.4787 General Finance +1209.5174 +1209.5413 Differential Geometry +1209.5421 Numerical Analysis +1210.0326 Strongly Correlated Electrons +1210.0548 +1210.1832 High Energy Astrophysical Phenomena +1210.2136 Cosmology and Nongalactic Astrophysics +1210.2557 Representation Theory +1210.4260 Numerical Analysis +1210.4766 Dynamical Systems +1210.5679 +1210.6043 +1210.6112 Software Engineering +1210.6665 Chemical Physics +1211.0042 Representation Theory +1211.0400 Optics +1211.0407 +1211.2831 +1211.2838 Physics and Society +1211.3220 Materials Science +1211.3222 Classical Analysis and ODEs +1211.3352 Phenomenology +1211.3841 Plasma Physics +1211.4083 Statistical Mechanics +1211.6086 Social and Information Networks +1211.6928 Analysis of PDEs +1212.0707 Methodology +1212.0950 Classical Physics +1212.0967 Artificial Intelligence +1212.1014 +1212.1076 Statistics Theory +1212.1083 Fluid Dynamics +1212.1154 Materials Science +1212.1155 +1212.1165 Phenomenology +1212.1167 Phenomenology +1212.1170 Algebraic Geometry +1212.1179 +1212.1180 Machine Learning +1212.1183 Soft Condensed Matter +1212.1187 Information Theory +1212.1196 Mesoscale and Nanoscale Physics +1212.1200 Populations and Evolution +1212.1204 Superconductivity +1212.1214 Quantum Gases +1212.1215 Lattice +1212.1216 Adaptation and Self-Organizing Systems +1212.1220 Instrumentation and Detectors +1212.1224 Physics and Society +1212.1226 Earth and Planetary Astrophysics +1212.1232 +1212.1242 Mesoscale and Nanoscale Physics +1212.1252 Number Theory +1212.1254 Probability +1212.1255 Analysis of PDEs +1212.1256 Astrophysics of Galaxies +1212.1257 Probability +1212.1258 Materials Science +1212.1263 Machine Learning +1212.1268 Classical Analysis and ODEs +1212.1269 Optimization and Control +1212.1270 +1212.1279 Representation Theory +1212.1282 General Finance +1212.1284 Distributed, Parallel, and Cluster Computing +1212.1286 General Finance +1212.1287 Quantum Gases +1212.1289 Soft Condensed Matter +1212.1291 Geometric Topology +1212.1293 Numerical Analysis +1212.1294 Number Theory +1212.1296 Optimization and Control +1212.1297 Solar and Stellar Astrophysics +1212.1304 Phenomenology +1212.1307 Solar and Stellar Astrophysics +1212.1310 Solar and Stellar Astrophysics +1212.1312 General Topology +1212.1313 Computer Vision and Pattern Recognition +1212.1314 Representation Theory +1212.1317 Differential Geometry +1212.1322 Classical Physics +1212.1324 +1212.1327 Instrumentation and Methods for Astrophysics +1212.1329 Computer Vision and Pattern Recognition +1212.1333 Numerical Analysis +1212.1339 Applications +1212.1341 Functional Analysis +1212.1342 +1212.1344 Emerging Technologies +1212.1350 Geophysics +1212.1354 Materials Science +1212.1356 Cosmology and Nongalactic Astrophysics +1212.1359 History and Philosophy of Physics +1212.1360 Computational Engineering, Finance, and Science +1212.1365 +1212.1370 Analysis of PDEs +1212.1372 Probability +1212.1374 Materials Science +1212.1376 Lattice +1212.1383 Complex Variables +1212.1387 Spectral Theory +1212.1391 Probability +1212.1392 Number Theory +1212.1395 Dynamical Systems +1212.1397 Numerical Analysis +1212.1400 Analysis of PDEs +1212.1401 Classical Analysis and ODEs +1212.1406 Combinatorics +1212.1407 Combinatorics +1212.1408 Materials Science +1212.1412 History and Overview +1212.1414 Probability +1212.1420 Functional Analysis +1212.1421 +1212.1423 Classical Analysis and ODEs +1212.1427 Spectral Theory +1212.1428 Classical Analysis and ODEs +1212.1431 General Mathematics +1212.1436 Statistical Mechanics +1212.1444 Probability +1212.1446 Theory +cond-mat/0405004 Materials Science +math-ph/9902011 +math/0402135 Number Theory +math/0412067 Number Theory +math/0503120 Number Theory +math/0510450 Differential Geometry +math/0606651 Geometric Topology +math/0701528 Number Theory +math/0702209 Number Theory +math/9808028 Differential Geometry +quant-ph/9910011 +0712.2900 Exactly Solvable and Integrable Systems +0804.3474 Fluid Dynamics +0806.3185 +0808.0101 Exactly Solvable and Integrable Systems +0901.1155 Data Structures and Algorithms +0901.2590 Representation Theory +0906.1425 Exactly Solvable and Integrable Systems +0907.3849 High Energy Astrophysical Phenomena +0908.4055 High Energy Astrophysical Phenomena +0909.0173 Artificial Intelligence +0909.2017 Computer Vision and Pattern Recognition +1001.4379 Rings and Algebras +1002.0470 Populations and Evolution +1008.3857 General Physics +1009.0130 General Physics +1010.3756 Numerical Analysis +1010.4335 Strongly Correlated Electrons +1101.2608 Cosmology and Nongalactic Astrophysics +1101.2844 Geometric Topology +1101.4459 Analysis of PDEs +1102.0593 +1103.1746 Mesoscale and Nanoscale Physics +1103.2326 Combinatorics +1103.5361 Representation Theory +1104.0537 Materials Science +1104.2905 Cosmology and Nongalactic Astrophysics +1105.4029 +1105.4536 +1105.5812 +1106.1954 Dynamical Systems +1106.2742 +1106.3998 Solar and Stellar Astrophysics +1106.4735 Combinatorics +1106.5723 Numerical Analysis +1107.0260 Materials Science +1107.2560 Plasma Physics +1107.5562 Theory +1108.0018 Differential Geometry +1109.2122 +1109.3438 +1109.6056 +1110.3775 Differential Geometry +1111.0058 Metric Geometry +1111.0578 Quantum Gases +1111.0709 Soft Condensed Matter +1111.1593 +1111.2982 Superconductivity +1111.4478 Cosmology and Nongalactic Astrophysics +1111.5658 Complex Variables +1111.6893 Strongly Correlated Electrons +1112.1936 Theory +1112.1982 Instrumentation and Methods for Astrophysics +1112.3853 +1112.4589 Subcellular Processes +1112.5066 +1112.5483 Cosmology and Nongalactic Astrophysics +1201.0471 Statistical Mechanics +1201.5609 Materials Science +1201.6160 Strongly Correlated Electrons +1202.0935 +1203.1790 Populations and Evolution +1203.2579 Mesoscale and Nanoscale Physics +1203.3259 Probability +1203.4428 +1203.4560 Earth and Planetary Astrophysics +1204.5588 +1204.6699 Computational Geometry +1205.0027 Theory +1205.4337 +1205.6060 Theory +1205.6428 High Energy Astrophysical Phenomena +1206.1020 Mesoscale and Nanoscale Physics +1206.4170 Exactly Solvable and Integrable Systems +1206.4546 Theory +1206.4980 Differential Geometry +1206.5023 Quantum Gases +1206.5330 Superconductivity +1206.7022 Superconductivity +1207.0727 Superconductivity +1207.1318 Superconductivity +1207.2151 Solar and Stellar Astrophysics +1207.2698 Analysis of PDEs +1207.3584 Superconductivity +1207.3702 Materials Science +1208.1775 Solar and Stellar Astrophysics +1208.2069 Statistical Mechanics +1208.4406 Materials Science +1208.5808 +1208.6182 Strongly Correlated Electrons +1208.6285 Optics +1209.0296 Computational Physics +1209.1709 Solar and Stellar Astrophysics +1209.2091 Populations and Evolution +1209.2241 Mesoscale and Nanoscale Physics +1209.2281 Materials Science +1209.2295 Computer Vision and Pattern Recognition +1209.2411 Probability +1209.2422 Phenomenology +1209.2423 +1209.2425 Theory +1209.2430 +1209.2434 Machine Learning +1209.2437 Methodology +1209.2440 Representation Theory +1209.2441 Accelerator Physics +1209.2443 Accelerator Physics +1209.2446 Quantum Gases +1209.2448 Number Theory +1209.2450 Differential Geometry +1209.2451 Cosmology and Nongalactic Astrophysics +1209.2455 Genomics +1209.2457 Cryptography and Security +1209.2460 Number Theory +1209.2464 +1209.2465 Atomic Physics +1209.2471 Combinatorics +1209.2474 Optics +1209.2475 +1209.2480 Numerical Analysis +1209.2481 Mesoscale and Nanoscale Physics +1209.2484 Group Theory +1209.2485 High Energy Astrophysical Phenomena +1209.2499 +1209.2500 Mesoscale and Nanoscale Physics +1209.2505 Networking and Internet Architecture +1209.2507 Networking and Internet Architecture +1209.2508 Networking and Internet Architecture +1209.2510 Analysis of PDEs +1209.2512 Discrete Mathematics +1209.2515 Computer Vision and Pattern Recognition +1209.2516 Software Engineering +1209.2517 Analysis of PDEs +1209.2526 Atmospheric and Oceanic Physics +1209.2528 Combinatorics +1209.2529 Genomics +1209.2534 +1209.2538 History and Philosophy of Physics +1209.2539 +1209.2541 Physics and Society +1209.2542 Information Theory +1209.2543 Instrumentation and Detectors +1209.2548 Neural and Evolutionary Computing +1209.2550 Networking and Internet Architecture +1209.2551 Optimization and Control +1209.2553 Software Engineering +1209.2560 Astrophysics of Galaxies +1209.2564 Materials Science +1209.2565 +1209.2566 Methodology +1209.2567 Solar and Stellar Astrophysics +1209.2574 Functional Analysis +1209.2577 Commutative Algebra +1209.2581 Combinatorics +1209.2582 Cryptography and Security +1209.2598 Cosmology and Nongalactic Astrophysics +1209.2599 +1209.2600 Soft Condensed Matter +1209.2602 Robotics +1209.2608 Soft Condensed Matter +1209.2614 Distributed, Parallel, and Cluster Computing +1209.2620 Logic in Computer Science +1209.2622 Solar and Stellar Astrophysics +1209.2625 Mesoscale and Nanoscale Physics +1209.2626 Mesoscale and Nanoscale Physics +1209.2627 Rings and Algebras +1209.2630 Classical Analysis and ODEs +1209.2632 General Physics +1209.2635 Networking and Internet Architecture +1209.2638 Populations and Evolution +1209.2641 Computational Engineering, Finance, and Science +1209.2645 Rings and Algebras +1209.2647 Databases +1209.2649 Differential Geometry +1209.2650 Other Computer Science +1209.2651 Accelerator Physics +1209.2655 Machine Learning +1209.2659 Software Engineering +1209.2660 Computational Engineering, Finance, and Science +1209.2664 Digital Libraries +1209.2665 +1209.2670 Algebraic Topology +1209.2672 Information Theory +1209.2674 Combinatorics +1209.2681 Software Engineering +1209.2684 Social and Information Networks +1209.2685 Instrumentation and Methods for Astrophysics +1209.2686 Theory +1209.2687 Combinatorics +1209.2688 Information Theory +1209.2690 Data Analysis, Statistics and Probability +1209.2696 Computer Vision and Pattern Recognition +1209.2699 Combinatorics +1209.2700 Accelerator Physics +1209.2701 Mesoscale and Nanoscale Physics +1209.2702 Materials Science +gr-qc/9610043 +gr-qc/9704054 +physics/0605218 General Physics +physics/0612249 General Physics +0802.3369 Fluid Dynamics +0806.4928 Statistical Mechanics +0807.2077 Algebraic Geometry +0905.0463 Probability +0909.1098 Geometric Topology +0912.3247 Soft Condensed Matter +0912.3904 Probability +1001.4288 Instrumentation and Detectors +1001.4482 Group Theory +1003.4302 Information Theory +1003.4547 Classical Analysis and ODEs +1004.1854 Computer Science and Game Theory +1006.0982 Probability +1006.1873 Statistical Mechanics +1007.0828 Probability +1009.3234 Analysis of PDEs +1009.4078 Statistical Mechanics +1010.3063 Neurons and Cognition +1012.4405 Quantum Gases +1012.4449 Fluid Dynamics +1012.5615 Strongly Correlated Electrons +1101.1146 Physics and Society +1101.2166 Strongly Correlated Electrons +1102.0357 Superconductivity +1102.1249 Statistics Theory +1103.0194 Dynamical Systems +1103.1362 Programming Languages +1103.5053 Theory +1103.5512 +1103.5575 Portfolio Management +1103.5871 Classical Analysis and ODEs +1104.1837 Probability +1104.2359 Quantum Algebra +1104.4929 Dynamical Systems +1104.5240 Information Theory +1105.1392 Materials Science +1105.3809 Probability +1106.0575 Quantum Gases +1106.1345 Statistical Mechanics +1106.2836 Materials Science +1106.3908 Quantum Gases +1107.0814 Superconductivity +1107.1430 Theory +1107.1448 Materials Science +1107.4508 Statistical Mechanics +1107.5805 Instrumentation and Methods for Astrophysics +1108.0020 Instrumentation and Methods for Astrophysics +1108.0788 Probability +1108.1238 Quantum Gases +1108.2990 Statistical Mechanics +1108.3984 Dynamical Systems +1108.4710 Dynamical Systems +1109.0036 Theory +1109.0225 +1109.0438 Fluid Dynamics +1109.0556 Statistical Mechanics +1109.2096 Cosmology and Nongalactic Astrophysics +1109.2379 Operator Algebras +1109.3277 Soft Condensed Matter +1109.3644 Strongly Correlated Electrons +1109.4306 Networking and Internet Architecture +1109.4768 Analysis of PDEs +1109.5350 Disordered Systems and Neural Networks +1109.6116 Superconductivity +1110.0573 +1110.0665 Atomic Physics +1110.3364 Quantum Gases +1110.5766 Classical Analysis and ODEs +1111.0173 Materials Science +1111.1127 Earth and Planetary Astrophysics +1111.1319 +1111.1674 Populations and Evolution +1111.1828 Theory +1111.3523 Superconductivity +1111.4070 +1111.4487 Functional Analysis +1111.4515 Materials Science +1111.5137 Probability +1111.7299 Computer Science and Game Theory +1112.1741 Numerical Analysis +1112.3483 Superconductivity +1112.4141 Cosmology and Nongalactic Astrophysics +1112.4434 Statistics Theory +1112.4560 Optics +1112.4674 Mesoscale and Nanoscale Physics +1112.5023 Strongly Correlated Electrons +1112.5297 Physics and Society +1201.0300 Optics +1201.0888 Theory +1201.0895 General Physics +1201.3262 Phenomenology +1201.3344 Quantum Gases +1201.3707 Mesoscale and Nanoscale Physics +1201.4784 Quantum Gases +1202.3305 Theory +1202.4887 Earth and Planetary Astrophysics +1202.5116 Statistical Mechanics +1202.5225 Strongly Correlated Electrons +1202.5593 Disordered Systems and Neural Networks +1203.0165 Statistical Mechanics +1203.0675 +1203.0799 Phenomenology +1203.1242 Cosmology and Nongalactic Astrophysics +1203.1646 Astrophysics of Galaxies +1203.3012 Superconductivity +1203.3784 Strongly Correlated Electrons +1203.4556 +1203.4559 Soft Condensed Matter +1204.2338 Commutative Algebra +1204.2430 Geometric Topology +1204.2530 Metric Geometry +1204.4753 Combinatorics +1204.5382 Theory +1204.5392 Numerical Analysis +1204.5674 Quantum Gases +1204.5744 Differential Geometry +1204.5755 Combinatorics +1204.5756 Theory +1204.5757 +1204.5758 +1204.5763 Analysis of PDEs +1204.5767 +1204.5778 Geometric Topology +1204.5779 Algebraic Geometry +1204.5780 Computer Science and Game Theory +1204.5790 Quantum Gases +1204.5791 Networking and Internet Architecture +1204.5792 Dynamical Systems +1204.5793 Phenomenology +1204.5794 Optimization and Control +1204.5795 Chemical Physics +1204.5796 Multiagent Systems +1204.5799 Complex Variables +1204.5802 Learning +1204.5804 Classical Analysis and ODEs +1204.5805 Networking and Internet Architecture +1204.5806 Metric Geometry +1204.5807 Quantum Algebra +1204.5810 Data Structures and Algorithms +1204.5813 Numerical Analysis +1204.5818 Optics +1204.5819 Materials Science +1204.5821 Materials Science +1204.5823 Data Structures and Algorithms +1204.5824 Materials Science +1204.5825 Materials Science +1204.5826 Mesoscale and Nanoscale Physics +1204.5828 Computational Geometry +1204.5831 Algebraic Geometry +1204.5838 Differential Geometry +1204.5839 Networking and Internet Architecture +1204.5841 Medical Physics +1204.5842 +1204.5844 Materials Science +1204.5849 Instrumentation and Methods for Astrophysics +1204.5851 Mesoscale and Nanoscale Physics +1204.5852 Computation and Language +1204.5864 Analysis of PDEs +1204.5866 Optics +1204.5869 High Energy Astrophysical Phenomena +1204.5871 Atmospheric and Oceanic Physics +1204.5872 Atomic Physics +1204.5874 Geometric Topology +1204.5879 Combinatorics +1204.5887 Formal Languages and Automata Theory +1204.5891 Classical Analysis and ODEs +1204.5893 Dynamical Systems +1204.5898 +1204.5906 Analysis of PDEs +1204.5911 Atomic Physics +1204.5912 Statistical Mechanics +1204.5913 +1204.5915 Differential Geometry +1204.5920 Artificial Intelligence +1204.5921 Probability +1204.5922 Combinatorics +1204.5929 Data Structures and Algorithms +1204.5930 Number Theory +1204.5932 Commutative Algebra +1204.5935 +1204.5942 Materials Science +1204.5943 Functional Analysis +1204.5945 Optimization and Control +1204.5947 Earth and Planetary Astrophysics +1204.5949 Quantum Gases +1204.5953 +1204.5956 Commutative Algebra +1204.5958 Functional Analysis +1204.5967 Differential Geometry +1204.5972 Soft Condensed Matter +1204.5976 Superconductivity +1204.5981 Logic in Computer Science +1204.5983 Analysis of PDEs +1204.5987 Probability +1204.5988 Analysis of PDEs +1204.5992 General Mathematics +1204.5996 Materials Science +1204.5997 Strongly Correlated Electrons +1204.5998 Plasma Physics +1204.6006 Analysis of PDEs +1204.6008 Classical Analysis and ODEs +1204.6010 Soft Condensed Matter +1204.6018 Analysis of PDEs +1204.6020 Populations and Evolution +1204.6025 Functional Analysis +1204.6026 Accelerator Physics +1204.6027 Statistical Mechanics +1204.6028 Plasma Physics +chao-dyn/9807018 Chaotic Dynamics +cond-mat/0509180 Statistical Mechanics +cond-mat/0511269 Strongly Correlated Electrons +cond-mat/0601590 Statistical Mechanics +cond-mat/9807172 Mesoscale and Nanoscale Physics +math/0410266 Number Theory +nlin/0206003 Chaotic Dynamics +nlin/0208037 Chaotic Dynamics +0707.2147 +0709.0773 Probability +0712.2012 Materials Science +0801.0143 Phenomenology +0809.0665 Probability +0809.2880 Algebraic Geometry +0809.3656 Number Theory +0901.1608 Combinatorics +0902.4322 Mesoscale and Nanoscale Physics +0904.2050 Algebraic Geometry +0904.3358 Algebraic Geometry +0905.2487 Pattern Formation and Solitons +0908.0967 +0910.2109 Mesoscale and Nanoscale Physics +1001.1592 Combinatorics +1002.3908 +1002.4152 Probability +1004.0847 +1004.4680 K-Theory and Homology +1005.3932 Number Theory +1007.0124 Mesoscale and Nanoscale Physics +1007.2484 Combinatorics +1007.2618 Data Structures and Algorithms +1007.3190 +1008.1827 Computer Science and Game Theory +1009.2606 Quantum Gases +1009.3974 +1009.4072 +1009.5463 +1010.3612 Operator Algebras +1011.2311 Combinatorics +1011.4763 Probability +1012.0036 Molecular Networks +1012.1275 Operator Algebras +1101.0264 +1101.2479 Spectral Theory +1101.3517 Space Physics +1102.1349 Classical Analysis and ODEs +1102.2582 Phenomenology +1102.3074 Methodology +1102.3105 Algebraic Geometry +1102.4152 Computation +1102.5754 Dynamical Systems +1103.0629 Metric Geometry +1103.5126 Representation Theory +1103.5170 Databases +1104.0301 +1104.0302 +1104.0693 Statistical Mechanics +1104.4760 Plasma Physics +1104.4895 Differential Geometry +1104.5575 Differential Geometry +1105.2256 +1105.2859 +1105.3085 Differential Geometry +1105.5305 Probability +1106.2409 +1106.3800 Mesoscale and Nanoscale Physics +1107.0939 Theory +1107.1389 Mesoscale and Nanoscale Physics +1107.3870 Combinatorics +1107.4078 Phenomenology +1107.4321 Theory +1107.4352 Superconductivity +1107.4773 +1107.4783 +1107.5776 Probability +1108.1118 Differential Geometry +1108.2745 Probability +1108.5729 General Physics +1109.0103 Optics +1109.2324 Geophysics +1109.3343 Probability +1109.4042 Theory +1109.5232 Strongly Correlated Electrons +1109.5235 Social and Information Networks +1109.5490 Information Theory +1110.1361 +1110.2594 +1110.2873 Computation +1110.5492 +1110.5651 Phenomenology +1110.5660 Molecular Networks +1110.5788 Atomic Physics +1110.6012 Information Theory +1110.6361 +1110.6521 Analysis of PDEs +1110.6676 Functional Analysis +1110.6782 Algebraic Geometry +1111.0176 Phenomenology +1111.0713 Spectral Theory +1111.1151 Phenomenology +1111.1216 Mesoscale and Nanoscale Physics +1111.1279 Optics +1111.1620 Superconductivity +1111.2350 Soft Condensed Matter +1111.2791 +1111.3849 +1111.4080 Mesoscale and Nanoscale Physics +1111.5413 Mesoscale and Nanoscale Physics +1111.6802 Strongly Correlated Electrons +1112.0409 Theory +1112.1605 Statistical Mechanics +1112.1788 Statistics Theory +1112.1978 Cryptography and Security +1112.2489 Algebraic Geometry +1112.3011 Statistical Mechanics +1112.3332 Theory +1112.3501 Disordered Systems and Neural Networks +1112.3884 Mesoscale and Nanoscale Physics +1112.4931 Mesoscale and Nanoscale Physics +1112.5471 +1112.5481 +1112.6017 Dynamical Systems +1112.6052 Phenomenology +1201.2925 Learning +1201.4041 Functional Analysis +1201.4066 Algebraic Geometry +1202.4161 Representation Theory +1202.5974 +1203.0413 Instrumentation and Methods for Astrophysics +1203.0564 Classical Analysis and ODEs +1203.0833 Data Structures and Algorithms +1203.1712 Superconductivity +1203.1759 Number Theory +1203.2488 +1203.2612 Astrophysics of Galaxies +1203.2631 Phenomenology +1203.2634 Accelerator Physics +1203.2639 Materials Science +1203.2640 Algebraic Geometry +1203.2641 +1203.2648 Solar and Stellar Astrophysics +1203.2651 Algebraic Geometry +1203.2653 Solar and Stellar Astrophysics +1203.2658 Metric Geometry +1203.2662 Metric Geometry +1203.2664 Metric Geometry +1203.2665 Differential Geometry +1203.2666 Optimization and Control +1203.2668 Cryptography and Security +1203.2670 Combinatorics +1203.2672 Databases +1203.2675 +1203.2679 +1203.2684 Quantum Algebra +1203.2686 Quantum Algebra +1203.2688 Differential Geometry +1203.2689 Strongly Correlated Electrons +1203.2690 Information Theory +1203.2696 Analysis of PDEs +1203.2700 Analysis of PDEs +1203.2701 Popular Physics +1203.2702 Materials Science +1203.2704 Software Engineering +1203.2711 Complex Variables +1203.2713 Complex Variables +1203.2717 Optimization and Control +1203.2720 Commutative Algebra +1203.2721 Information Theory +1203.2723 Combinatorics +1203.2725 Networking and Internet Architecture +1203.2728 Group Theory +1203.2731 Strongly Correlated Electrons +1203.2734 General Physics +1203.2740 Representation Theory +1203.2748 Soft Condensed Matter +1203.2750 Statistics Theory +1203.2755 Number Theory +1203.2757 Mesoscale and Nanoscale Physics +1203.2761 Instrumentation and Methods for Astrophysics +1203.2766 Cosmology and Nongalactic Astrophysics +1203.2768 Information Theory +1203.2769 Information Theory +1203.2770 Biological Physics +1203.2774 Mesoscale and Nanoscale Physics +1203.2778 Information Theory +1203.2781 Phenomenology +1203.2783 Probability +1203.2784 Materials Science +1203.2785 Rings and Algebras +1203.2787 Fluid Dynamics +1203.2790 Statistics Theory +1203.2800 Category Theory +1203.2801 Computational Complexity +1203.2808 Optimization and Control +1203.2809 Logic in Computer Science +1203.2811 +1203.2812 Other Condensed Matter +1203.2813 Classical Analysis and ODEs +1203.2814 Cosmology and Nongalactic Astrophysics +1203.2816 Systems and Control +1203.2817 Mesoscale and Nanoscale Physics +1203.2818 Strongly Correlated Electrons +1203.2821 Methodology +1203.2823 Number Theory +1203.2830 Atomic Physics +1203.2835 Information Theory +1203.2836 Solar and Stellar Astrophysics +1203.2839 Computer Vision and Pattern Recognition +1203.2840 Phenomenology +1203.2844 Experiment +1203.2845 Instrumentation and Methods for Astrophysics +1203.2846 Optimization and Control +1203.2848 Numerical Analysis +1203.2854 Operator Algebras +1203.2860 Optimization and Control +1203.2863 Combinatorics +1203.2865 Superconductivity +1203.2868 Combinatorics +1203.2879 Applications +1203.2886 Databases +1203.2890 Information Theory +1203.2893 Dynamical Systems +1203.2894 Analysis of PDEs +1203.2895 Dynamical Systems +1203.2896 Materials Science +1203.2897 Probability +1203.2898 Analysis of PDEs +1203.2905 Analysis of PDEs +1203.2912 Numerical Analysis +hep-th/0210105 Theory +math/0511745 Probability +math/0609290 Probability +math/0611867 Algebraic Geometry +math/0702708 Probability +0708.4042 Number Theory +0711.0598 Analysis of PDEs +0801.2239 Quantum Algebra +0809.0690 Physics and Society +0907.4745 +0912.0615 Probability +0912.4447 Strongly Correlated Electrons +1001.0386 Analysis of PDEs +1002.4706 General Physics +1002.4709 General Physics +1004.3521 Cryptography and Security +1005.1856 Cryptography and Security +1006.4037 Optics +1007.3754 Statistical Mechanics +1008.3933 Quantum Gases +1010.2998 Mesoscale and Nanoscale Physics +1010.4643 Dynamical Systems +1011.1615 Geometric Topology +1011.3661 Geometric Topology +1012.3474 +1012.3914 Materials Science +1101.3898 Functional Analysis +1101.4345 Exactly Solvable and Integrable Systems +1102.1018 Differential Geometry +1102.1359 Algebraic Topology +1102.2952 Statistics Theory +1102.5496 Methodology +1103.0603 Dynamical Systems +1103.3063 Probability +1103.3980 +1105.0083 +1105.0871 Computation +1105.5271 Quantum Algebra +1105.6344 Applications +1106.2245 Probability +1106.4217 Superconductivity +1106.4975 Theory +1107.0712 Classical Analysis and ODEs +1107.2311 Materials Science +1107.4108 Mesoscale and Nanoscale Physics +1107.5405 +1108.0606 Applications +1108.2036 Phenomenology +1108.6258 Solar and Stellar Astrophysics +1109.0151 +1109.1773 Functional Analysis +1109.1778 Functional Analysis +1109.1810 Geophysics +1109.3399 Disordered Systems and Neural Networks +1109.3435 Strongly Correlated Electrons +1109.4866 Mesoscale and Nanoscale Physics +1109.5878 Computational Physics +1110.0658 Materials Science +1110.0973 +1110.3044 Phenomenology +1110.5893 Mesoscale and Nanoscale Physics +1110.6594 Functional Analysis +1111.1091 Statistical Mechanics +1111.1311 Computer Vision and Pattern Recognition +1111.1575 Lattice +1111.2175 Quantum Gases +1111.2553 Theory +1111.3391 Lattice +1111.4544 Lattice +1111.5891 Lattice +1112.0045 Quantitative Methods +1112.0691 Solar and Stellar Astrophysics +1112.2418 +1112.3003 Functional Analysis +1112.3026 Phenomenology +1112.3207 Solar and Stellar Astrophysics +1112.4025 Mesoscale and Nanoscale Physics +1112.4333 Strongly Correlated Electrons +1112.4701 Strongly Correlated Electrons +1112.5255 Computer Science and Game Theory +1112.5927 Statistical Mechanics +1201.2608 Phenomenology +1201.5524 Adaptation and Self-Organizing Systems +1202.0438 Mesoscale and Nanoscale Physics +1202.0735 Mesoscale and Nanoscale Physics +1202.1203 Number Theory +1202.1877 Networking and Internet Architecture +1202.2285 +1202.2715 Algebraic Geometry +1202.4011 Probability +1202.5072 Phenomenology +1202.6180 General Topology +1202.6577 Solar and Stellar Astrophysics +1203.0634 General Mathematics +1203.2375 +1203.2799 +1203.2966 Computational Physics +1203.4151 Geometric Topology +1203.4238 Social and Information Networks +1203.4240 Cosmology and Nongalactic Astrophysics +1203.4245 Statistical Mechanics +1203.4249 Analysis of PDEs +1203.4255 Analysis of PDEs +1203.4257 Distributed, Parallel, and Cluster Computing +1203.4272 Solar and Stellar Astrophysics +1203.4274 Geometric Topology +1203.4279 General Topology +1203.4287 Artificial Intelligence +1203.4288 +1203.4291 High Energy Astrophysical Phenomena +1203.4297 +1203.4302 Combinatorics +1203.4304 Astrophysics of Galaxies +1203.4308 Mesoscale and Nanoscale Physics +1203.4311 Information Theory +1203.4315 Analysis of PDEs +1203.4317 Algebraic Topology +1203.4319 Cryptography and Security +1203.4320 Phenomenology +1203.4321 +1203.4322 Numerical Analysis +1203.4323 +1203.4327 Classical Analysis and ODEs +1203.4337 Functional Analysis +1203.4338 +1203.4339 Networking and Internet Architecture +1203.4342 Commutative Algebra +1203.4344 +1203.4354 Machine Learning +1203.4359 Applications +1203.4363 Number Theory +1203.4366 Materials Science +1203.4367 Distributed, Parallel, and Cluster Computing +1203.4370 Geometric Topology +1203.4375 Optics +1203.4378 Spectral Theory +1203.4384 +1203.4385 Information Theory +1203.4387 Probability +1203.4388 Differential Geometry +1203.4391 Analysis of PDEs +1203.4400 Optics +1203.4414 +1203.4416 Neural and Evolutionary Computing +1203.4418 +1203.4422 Machine Learning +1203.4424 Statistical Mechanics +1203.4426 Analysis of PDEs +1203.4427 Statistics Theory +1203.4434 Networking and Internet Architecture +1203.4435 Phenomenology +1203.4442 Superconductivity +1203.4444 +1203.4445 Applications +1203.4448 Commutative Algebra +1203.4450 Commutative Algebra +1203.4454 Classical Analysis and ODEs +1203.4458 Quantum Gases +1203.4465 Combinatorics +1203.4468 Computation +1203.4472 Networking and Internet Architecture +1203.4473 Networking and Internet Architecture +1203.4474 Networking and Internet Architecture +1203.4476 Instrumentation and Methods for Astrophysics +1203.4478 Optics +1203.4480 Methodology +1203.4482 Populations and Evolution +1203.4483 Combinatorics +1203.4485 Algebraic Geometry +1203.4494 Information Retrieval +1203.4496 Fluid Dynamics +1203.4499 Programming Languages +1203.4500 Statistical Mechanics +1203.4502 Probability +1203.4519 Networking and Internet Architecture +1203.4528 Probability +1203.4531 Combinatorics +1203.4532 Computational Complexity +1203.4533 Optimization and Control +1203.4536 Strongly Correlated Electrons +1203.4551 +1203.4555 Geometric Topology +cs/0306121 Logic in Computer Science +math/0408359 Number Theory +math/0412464 Number Theory +physics/0310148 Popular Physics +0704.0337 Analysis of PDEs +0704.2029 Representation Theory +0706.3480 Information Theory +0712.4021 Algebraic Geometry +0812.0195 Commutative Algebra +0905.0028 Representation Theory +0905.2541 +0910.5836 +1003.1012 Quantum Algebra +1006.0323 Number Theory +1007.3880 Statistics Theory +1008.1166 Representation Theory +1010.3605 Combinatorics +1010.3992 Differential Geometry +1011.3457 Quantum Algebra +1012.4939 +1102.3195 Computer Science and Game Theory +1104.4549 Quantitative Methods +1105.2418 Mesoscale and Nanoscale Physics +1105.4583 Experiment +1106.0278 Mesoscale and Nanoscale Physics +1106.3061 Phenomenology +1107.1116 Superconductivity +1107.1413 Group Theory +1108.1117 Disordered Systems and Neural Networks +1109.0840 +1109.4212 Number Theory +1109.6457 +1110.5365 Logic +1111.4128 +1111.6177 Statistical Mechanics +1112.1442 Soft Condensed Matter +1112.5299 Physics and Society +1201.4579 Probability +1201.6430 +1202.2494 Theory +1202.2495 Molecular Networks +1202.4213 Phenomenology +1202.4546 +1202.4978 Mesoscale and Nanoscale Physics +1202.5834 Lattice +1202.6307 Physics and Society +1203.0993 +1203.3065 Physics and Society +1203.3442 Information Theory +1203.4540 +1203.6118 Strongly Correlated Electrons +1203.6275 Optics +1204.0252 Phenomenology +1204.0643 Networking and Internet Architecture +1204.2594 Phenomenology +1204.3839 Phenomenology +1205.0877 Statistical Finance +1205.1335 Theory +1205.3975 Disordered Systems and Neural Networks +1205.5383 Combinatorics +1205.6288 Dynamical Systems +1205.6674 Theory +1205.6997 Strongly Correlated Electrons +1206.0036 +1206.0502 Optics +1206.2269 Data Structures and Algorithms +1206.2561 Materials Science +1206.4796 +1207.0014 Phenomenology +1207.0420 Fluid Dynamics +1207.2742 Software Engineering +1207.3491 Plasma Physics +1207.3922 +1207.4735 +1207.5274 +1207.5753 Astrophysics of Galaxies +1207.6112 Theory +1207.6125 Solar and Stellar Astrophysics +1207.6126 Combinatorics +1207.6128 Differential Geometry +1207.6130 Number Theory +1207.6133 Applications +1207.6141 Combinatorics +1207.6150 Astrophysics of Galaxies +1207.6152 Optics +1207.6155 Optics +1207.6157 Metric Geometry +1207.6160 Rings and Algebras +1207.6161 Representation Theory +1207.6170 Algebraic Topology +1207.6173 Differential Geometry +1207.6174 Information Theory +1207.6179 Computers and Society +1207.6180 Robotics +1207.6183 Phenomenology +1207.6185 Networking and Internet Architecture +1207.6186 Risk Management +1207.6187 Analysis of PDEs +1207.6188 Computational Complexity +1207.6193 Algebraic Geometry +1207.6194 Analysis of PDEs +1207.6200 Optimization and Control +1207.6202 Information Theory +1207.6203 Probability +1207.6207 General Topology +1207.6213 Materials Science +1207.6215 +1207.6217 Cosmology and Nongalactic Astrophysics +1207.6221 +1207.6224 Artificial Intelligence +1207.6226 Optimization and Control +1207.6227 Phenomenology +1207.6228 Statistics Theory +1207.6229 Functional Analysis +1207.6233 Phenomenology +1207.6237 Metric Geometry +1207.6241 Phenomenology +1207.6242 +1207.6246 Data Structures and Algorithms +1207.6247 Cosmology and Nongalactic Astrophysics +1207.6253 Artificial Intelligence +1207.6260 Computational Complexity +1207.6265 Combinatorics +1207.6268 Experiment +1207.6269 Social and Information Networks +1207.6271 Differential Geometry +1207.6272 Superconductivity +1207.6276 Instrumentation and Methods for Astrophysics +1207.6278 General Finance +1207.6279 Numerical Analysis +1207.6281 Probability +1207.6289 Phenomenology +1207.6292 Numerical Analysis +1207.6298 Superconductivity +1207.6300 Representation Theory +1207.6302 Group Theory +1207.6306 +1207.6307 Cryptography and Security +1207.6318 Networking and Internet Architecture +1207.6320 Solar and Stellar Astrophysics +1207.6323 Methodology +1207.6324 Digital Libraries +1207.6329 Databases +1207.6343 Dynamical Systems +1207.6347 Metric Geometry +1207.6351 Phenomenology +1207.6354 Optimization and Control +1207.6363 Statistics Theory +1207.6368 Numerical Analysis +1207.6371 Data Structures and Algorithms +1207.6374 Discrete Mathematics +1207.6376 Optics +1207.6379 Information Retrieval +1207.6380 Information Theory +1207.6381 Discrete Mathematics +1207.6382 Quantum Gases +1207.6383 Discrete Mathematics +1207.6384 Discrete Mathematics +1207.6387 Mesoscale and Nanoscale Physics +1207.6389 Probability +astro-ph/0305492 +astro-ph/0507486 +astro-ph/0612523 +cond-mat/0005532 +cond-mat/0504356 Strongly Correlated Electrons +cond-mat/9908037 Statistical Mechanics +math/0301175 Analysis of PDEs +math/0301300 Dynamical Systems +math/0601671 Algebraic Geometry +math/0702705 Analysis of PDEs +math/0703125 Analysis of PDEs +q-alg/9512022 Quantum Algebra +quant-ph/0604115 +0706.0205 +0710.2391 Materials Science +0803.1020 +0808.0383 Statistics Theory +0905.3683 Metric Geometry +0910.0414 +1001.1913 Number Theory +1002.4694 Number Theory +1003.6055 Quantum Algebra +1004.4668 Quantitative Methods +1007.5010 K-Theory and Homology +1008.0061 Numerical Analysis +1008.3920 +1009.4551 Optimization and Control +1011.0110 Algebraic Topology +1011.2382 Chaotic Dynamics +1103.4454 Optimization and Control +1104.4147 Combinatorics +1107.1801 High Energy Astrophysical Phenomena +1110.1066 Algebraic Topology +1110.3162 Strongly Correlated Electrons +1111.1650 +1111.7286 Phenomenology +1112.0251 Analysis of PDEs +1112.2839 +1112.3871 Algebraic Geometry +1112.4533 Lattice +1201.0311 Probability +1201.0668 Earth and Planetary Astrophysics +1201.3324 Probability +1201.3443 Numerical Analysis +1201.3719 +1201.6328 +1202.1301 Phenomenology +1202.1790 Combinatorics +1202.1807 Cosmology and Nongalactic Astrophysics +1202.2059 Quantum Gases +1202.3159 +1203.4625 Biomolecules +1203.6726 Mesoscale and Nanoscale Physics +1204.1623 Optics +1204.1675 Optics +1204.3814 Theory +1204.4584 Molecular Networks +1204.4852 Probability +1204.6600 Classical Analysis and ODEs +1205.0081 Optics +1205.0717 Quantum Gases +1205.2945 Mesoscale and Nanoscale Physics +1205.3834 Optimization and Control +1205.3957 Classical Analysis and ODEs +1205.4093 +1205.4164 Earth and Planetary Astrophysics +1206.1114 Mesoscale and Nanoscale Physics +1206.1151 +1206.3382 Artificial Intelligence +1206.4247 +1206.4409 Algebraic Geometry +1206.6628 Materials Science +1206.6902 Theory +1207.0769 +1207.1483 Quantum Gases +1207.1783 Strongly Correlated Electrons +1207.1946 +1207.2588 Materials Science +1207.3510 Computer Vision and Pattern Recognition +1207.4803 Adaptation and Self-Organizing Systems +1207.4912 +1208.1328 +1208.2702 High Energy Astrophysical Phenomena +1208.2743 Analysis of PDEs +1208.3040 Differential Geometry +1208.3926 Mesoscale and Nanoscale Physics +1208.4978 Theory +1208.6119 Physics and Society +1209.0231 Phenomenology +1209.0896 Complex Variables +1209.1857 Chemical Physics +1209.2056 Theory +1209.3097 Strongly Correlated Electrons +1209.3522 Applications +1209.5862 +1210.0930 Information Theory +1210.4112 Experiment +1210.5347 Phenomenology +1210.5665 Populations and Evolution +1210.6793 Phenomenology +1210.7942 Group Theory +1210.8044 +1211.1171 Methodology +1211.2113 Cosmology and Nongalactic Astrophysics +1211.5127 Lattice +1211.6352 Solar and Stellar Astrophysics +1212.0089 Number Theory +1212.0242 Theory +1212.0281 Theory +1212.0810 Atomic Physics +1212.1521 Optimization and Control +1212.1752 Neural and Evolutionary Computing +1212.3852 Physics and Society +1212.4010 Quantum Algebra +1212.4058 Solar and Stellar Astrophysics +1212.4108 Quantum Gases +1212.4274 Theory +1212.4489 Networking and Internet Architecture +1212.4490 Graphics +1212.4496 Solar and Stellar Astrophysics +1212.4505 Theory +1212.4509 Instrumentation and Methods for Astrophysics +1212.4510 Theory +1212.4515 +1212.4520 Phenomenology +1212.4523 Mesoscale and Nanoscale Physics +1212.4527 Computer Vision and Pattern Recognition +1212.4528 Metric Geometry +1212.4533 Experiment +1212.4545 Number Theory +1212.4546 Phenomenology +1212.4547 Mesoscale and Nanoscale Physics +1212.4551 Numerical Analysis +1212.4555 Biological Physics +1212.4559 Dynamical Systems +1212.4562 Machine Learning +1212.4564 Mesoscale and Nanoscale Physics +1212.4567 Atomic and Molecular Clusters +1212.4568 Dynamical Systems +1212.4571 Phenomenology +1212.4572 +1212.4573 Lattice +1212.4574 Classical Analysis and ODEs +1212.4579 Astrophysics of Galaxies +1212.4580 Differential Geometry +1212.4583 Populations and Evolution +1212.4585 Instrumentation and Methods for Astrophysics +1212.4586 Materials Science +1212.4587 Operator Algebras +1212.4591 Materials Science +1212.4594 Accelerator Physics +1212.4602 Statistical Mechanics +1212.4604 Algebraic Geometry +1212.4606 Experiment +1212.4608 Computer Vision and Pattern Recognition +1212.4609 Experiment +1212.4614 Combinatorics +1212.4615 +1212.4623 Analysis of PDEs +1212.4629 Mesoscale and Nanoscale Physics +1212.4642 Lattice +1212.4646 Operator Algebras +1212.4657 Cosmology and Nongalactic Astrophysics +1212.4658 Distributed, Parallel, and Cluster Computing +1212.4659 Soft Condensed Matter +1212.4665 History and Overview +1212.4669 Logic in Computer Science +1212.4670 Combinatorics +1212.4674 Computation and Language +1212.4675 Learning +1212.4678 Populations and Evolution +1212.4681 Classical Analysis and ODEs +1212.4685 Atomic Physics +1212.4689 Rings and Algebras +1212.4692 Distributed, Parallel, and Cluster Computing +1212.4695 Numerical Analysis +1212.4699 Numerical Analysis +1212.4702 Information Retrieval +1212.4708 Materials Science +1212.4714 Differential Geometry +1212.4718 Analysis of PDEs +1212.4726 Cosmology and Nongalactic Astrophysics +1212.4730 +1212.4736 Analysis of PDEs +1212.4737 Probability +1212.4746 +1212.4748 +1212.4750 Astrophysics of Galaxies +1212.4751 Physics and Society +1212.4752 +1212.4753 Logic +1212.4754 Solar and Stellar Astrophysics +1212.4756 Data Structures and Algorithms +1212.4770 Trading and Market Microstructure +1212.4771 Data Structures and Algorithms +1212.4772 Mesoscale and Nanoscale Physics +1212.4777 Learning +1212.4782 Physics and Society +1212.4788 Genomics +1212.4789 Phenomenology +1212.4790 Rings and Algebras +1212.4798 Solar and Stellar Astrophysics +1212.4800 Number Theory +1212.4804 Robotics +1212.4814 Phenomenology +1212.4816 Combinatorics +hep-th/0505070 Theory +math/9802002 Quantum Algebra +nlin/0605028 Chaotic Dynamics +q-alg/9712029 Quantum Algebra +0811.3151 Number Theory +0812.2167 Number Theory +1008.1620 Networking and Internet Architecture +cond-mat/9706280 Disordered Systems and Neural Networks +gr-qc/0005135 +hep-ex/0009054 Experiment +hep-ph/0102277 Phenomenology +hep-ph/9405293 Phenomenology +math/0010313 Commutative Algebra +math/0210452 Optimization and Control +math/0701176 Dynamical Systems +quant-ph/0412215 +quant-ph/0606248 +quant-ph/0607022 +quant-ph/0611213 +0710.0413 Lattice +0809.5264 +0903.3907 +0906.5248 Superconductivity +0907.5290 Programming Languages +0911.5238 Algebraic Topology +1001.2630 Theory +1002.4796 Probability +1005.1134 Combinatorics +1006.0478 Quantum Algebra +1007.1065 +1007.1118 Geometric Topology +1007.4403 Optics +1007.5241 Theory +1010.5223 Methodology +1010.6032 Chaotic Dynamics +1011.1311 Materials Science +1011.1315 Materials Science +1011.1755 Number Theory +1012.2337 Number Theory +1012.2851 Algebraic Geometry +1101.1098 High Energy Astrophysical Phenomena +1101.1859 K-Theory and Homology +1101.3483 Astrophysics of Galaxies +1101.5896 Logic +1102.1482 +1102.1853 Chaotic Dynamics +1102.3067 Data Analysis, Statistics and Probability +1102.5240 Differential Geometry +1102.5640 +1103.1192 Optics +1103.1312 Theory +1103.2656 Dynamical Systems +1103.4386 Theory +1103.5796 Biological Physics +1103.5842 Superconductivity +1104.3664 Statistics Theory +1104.4540 Analysis of PDEs +1105.1004 Biological Physics +1105.1540 +1106.1391 Algebraic Geometry +1106.3936 Classical Analysis and ODEs +1106.4205 Materials Science +1106.5015 +1106.6040 Complex Variables +1107.2754 +1107.2994 Computer Science and Game Theory +1107.3118 +1107.3653 Differential Geometry +1107.5101 Medical Physics +1108.0598 Optics +1108.1609 Mesoscale and Nanoscale Physics +1108.3306 Algebraic Geometry +1108.3517 Mesoscale and Nanoscale Physics +1108.3942 Statistical Mechanics +1109.1019 +1109.1555 Solar and Stellar Astrophysics +1109.2525 Superconductivity +1109.3649 Information Theory +1109.3735 Phenomenology +1109.4274 Differential Geometry +1110.2867 Information Theory +1110.3337 +1110.3766 Plasma Physics +1110.4980 Strongly Correlated Electrons +1111.0255 Lattice +1111.0451 +1111.0778 Quantum Gases +1111.0809 Spectral Theory +1111.1088 +1111.2357 Experiment +1111.2385 +1111.3824 Computational Geometry +1111.4639 Computational Engineering, Finance, and Science +1111.4987 Phenomenology +1112.0043 Materials Science +1112.0162 +1112.4406 Dynamical Systems +1112.4502 +1112.6202 Analysis of PDEs +1201.4076 Materials Science +1201.4316 Accelerator Physics +1202.0243 Statistical Mechanics +1202.1762 Phenomenology +1202.2988 +1202.3288 +1202.6169 Strongly Correlated Electrons +1202.6271 High Energy Astrophysical Phenomena +1202.6426 Optics +1202.6480 +1202.6483 Probability +1202.6651 Astrophysics of Galaxies +1203.0202 Category Theory +1203.0983 Algebraic Geometry +1203.1070 +1203.1543 Superconductivity +1203.2396 Analysis of PDEs +1203.2797 Functional Analysis +1203.3877 Computational Physics +1203.4407 Functional Analysis +1203.4754 Logic in Computer Science +1203.4820 Earth and Planetary Astrophysics +1203.4823 Biological Physics +1203.4825 Probability +1203.4827 Networking and Internet Architecture +1203.4829 Earth and Planetary Astrophysics +1203.4831 Spectral Theory +1203.4835 Chaotic Dynamics +1203.4836 Data Structures and Algorithms +1203.4837 Cosmology and Nongalactic Astrophysics +1203.4838 Strongly Correlated Electrons +1203.4841 Networking and Internet Architecture +1203.4842 +1203.4846 Cosmology and Nongalactic Astrophysics +1203.4850 Strongly Correlated Electrons +1203.4855 Computer Vision and Pattern Recognition +1203.4856 +1203.4857 Algebraic Geometry +1203.4859 Solar and Stellar Astrophysics +1203.4862 Cosmology and Nongalactic Astrophysics +1203.4863 Differential Geometry +1203.4867 Information Theory +1203.4874 Computer Vision and Pattern Recognition +1203.4876 Analysis of PDEs +1203.4879 +1203.4881 Neural and Evolutionary Computing +1203.4885 +1203.4886 Analysis of PDEs +1203.4897 +1203.4900 Data Structures and Algorithms +1203.4902 Number Theory +1203.4904 Complex Variables +1203.4905 Cosmology and Nongalactic Astrophysics +1203.4911 Methodology +1203.4912 Logic in Computer Science +1203.4920 Data Structures and Algorithms +1203.4921 Geophysics +1203.4923 Fluid Dynamics +1203.4925 Rings and Algebras +1203.4928 Applications +1203.4933 Computation and Language +1203.4935 Methodology +1203.4940 +1203.4941 Statistical Mechanics +1203.4952 +1203.4954 History and Philosophy of Physics +1203.4957 Solar and Stellar Astrophysics +1203.4960 Theory +1203.4966 Other Computer Science +1203.4967 Combinatorics +1203.4972 Algebraic Geometry +1203.4976 Number Theory +1203.4980 Optimization and Control +1203.4981 Data Analysis, Statistics and Probability +1203.4985 Mesoscale and Nanoscale Physics +1203.4989 Methodology +1203.4993 Cell Behavior +1203.4997 Logic +1203.4998 +1203.5000 Number Theory +1203.5003 +1203.5005 Cosmology and Nongalactic Astrophysics +1203.5006 Phenomenology +1203.5009 Category Theory +1203.5013 +1203.5019 Optics +1203.5020 Pricing of Securities +1203.5026 Distributed, Parallel, and Cluster Computing +1203.5028 Neural and Evolutionary Computing +1203.5036 Earth and Planetary Astrophysics +1203.5040 Performance +1203.5045 Analysis of PDEs +1203.5051 Computation and Language +1203.5054 Rings and Algebras +1203.5055 Computation and Language +1203.5060 Computation and Language +1203.5062 Computation and Language +1203.5065 Representation Theory +1203.5069 Metric Geometry +1203.5071 Algebraic Topology +1203.5073 Computation and Language +1203.5078 Computer Vision and Pattern Recognition +1203.5079 Combinatorics +1203.5081 Instrumentation and Methods for Astrophysics +1203.5084 Computation and Language +1203.5085 Accelerator Physics +1203.5086 Physics and Society +1203.5090 Theory +1203.5099 Computer Science and Game Theory +cond-mat/0112321 Superconductivity +cond-mat/0207504 Superconductivity +cond-mat/0503707 Superconductivity +hep-ph/9912322 Phenomenology +quant-ph/0307170 +1104.4832 Probability +1201.0791 Differential Geometry +1205.2237 Theory +0707.1301 Disordered Systems and Neural Networks +0707.2898 Classical Analysis and ODEs +0707.3754 Rings and Algebras +0709.2360 Complex Variables +0710.5894 Complex Variables +0801.4830 Other Condensed Matter +0802.1461 +0804.3326 Complex Variables +0806.2493 Quantum Algebra +0807.0199 Information Theory +0807.2054 Complex Variables +0808.3828 +0809.2875 +0809.4837 Algebraic Geometry +0810.2260 Dynamical Systems +0810.2827 +0810.5254 Rings and Algebras +0812.2673 Complex Variables +0902.4246 Information Theory +0906.3027 Classical Analysis and ODEs +0906.4452 Astrophysics of Galaxies +0908.4037 Algebraic Geometry +0910.3703 Algebraic Geometry +0912.2027 Numerical Analysis +0912.3558 Analysis of PDEs +0912.3562 Functional Analysis +1001.1106 Information Theory +1001.1279 Differential Geometry +1001.2540 Functional Analysis +1002.0128 Group Theory +1002.1998 Number Theory +1003.5718 Number Theory +1004.4919 Numerical Analysis +1005.0136 Geometric Topology +1005.1267 Quantum Algebra +1005.1435 +1005.1696 +1005.2232 Analysis of PDEs +1005.5002 Operator Algebras +1006.1658 Information Theory +1006.2348 Information Theory +1006.2597 Rings and Algebras +1007.0746 Dynamical Systems +1007.2745 +1008.0433 +1008.3765 Complex Variables +1009.5015 Dynamical Systems +1009.5581 Analysis of PDEs +1010.0546 Optimization and Control +1010.3170 Symplectic Geometry +1010.4031 Theory +1010.4369 +1010.4595 Probability +1011.1802 Algebraic Topology +1011.2273 Mesoscale and Nanoscale Physics +1011.2672 High Energy Astrophysical Phenomena +1011.2687 Atomic Physics +1011.4589 Classical Physics +1011.4819 Soft Condensed Matter +1012.1393 High Energy Astrophysical Phenomena +1012.4784 +1101.0972 +1101.5146 Analysis of PDEs +1102.0657 Quantum Algebra +1102.1317 Other Condensed Matter +1102.4280 Analysis of PDEs +1102.4464 Combinatorics +1103.2569 +1104.1093 Fluid Dynamics +1104.1742 Information Theory +1104.3162 Physics and Society +1104.3832 Analysis of PDEs +1104.4363 Materials Science +1104.5190 Statistical Mechanics +1105.0015 Statistics Theory +1105.2450 Algebraic Topology +1105.5635 +1106.1003 Combinatorics +1106.1867 +1106.1992 +1106.2071 Classical Physics +1106.3320 +1106.5145 Soft Condensed Matter +1106.5259 +1106.5617 Fluid Dynamics +1106.5742 Information Theory +1106.5785 Strongly Correlated Electrons +1107.0488 Analysis of PDEs +1107.0578 Quantum Gases +1107.2415 Astrophysics of Galaxies +1107.2928 Theory +1107.3841 Cosmology and Nongalactic Astrophysics +1107.5575 High Energy Astrophysical Phenomena +1107.5731 Theory +1108.2064 Theory +1108.3452 +1108.5401 Materials Science +1109.0131 +1109.0502 Lattice +1109.1941 +1109.2366 Strongly Correlated Electrons +1109.2516 Statistical Mechanics +1109.3948 Multiagent Systems +1109.4770 Information Theory +1109.4808 +1109.5270 Superconductivity +1109.6672 Computational Physics +1109.6696 +1110.0300 Solar and Stellar Astrophysics +1110.0336 Information Retrieval +1110.1381 +1110.1651 Mesoscale and Nanoscale Physics +1110.2427 Mesoscale and Nanoscale Physics +1110.2586 Theory +1110.3306 Mesoscale and Nanoscale Physics +1110.4601 Theory +1110.5171 Mesoscale and Nanoscale Physics +1110.5629 Materials Science +1110.5935 Mesoscale and Nanoscale Physics +1110.6198 Rings and Algebras +1110.6235 Phenomenology +1110.6749 Numerical Analysis +1111.0694 Astrophysics of Galaxies +1111.0776 Quantum Gases +1111.2121 Cryptography and Security +1111.2641 Number Theory +1111.4583 Optics +1111.4851 Analysis of PDEs +1111.5490 +1111.5769 Statistical Mechanics +1111.6190 Number Theory +1112.0032 Digital Libraries +1112.0404 Multiagent Systems +1112.0450 Soft Condensed Matter +1112.3605 Machine Learning +1112.3829 +1112.3880 Distributed, Parallel, and Cluster Computing +1201.0308 Combinatorics +1201.1188 Cryptography and Security +1201.2209 Representation Theory +1201.2347 Strongly Correlated Electrons +1201.4364 Phenomenology +1201.4574 Digital Libraries +1201.4638 Digital Libraries +1201.4934 Group Theory +1201.4962 Optimization and Control +1201.5679 Mesoscale and Nanoscale Physics +1201.6420 Phenomenology +1202.0155 Operator Algebras +1202.0332 Computers and Society +1202.0356 Exactly Solvable and Integrable Systems +1202.0387 Analysis of PDEs +1202.0521 Combinatorics +1202.0529 Combinatorics +1202.0667 Combinatorics +1202.0786 Machine Learning +1202.0818 Superconductivity +1202.0825 Machine Learning +1202.0828 Accelerator Physics +1202.0829 Mesoscale and Nanoscale Physics +1202.0834 Biological Physics +1202.0835 Information Theory +1202.0836 Applications +1202.0842 Probability +1202.0850 Methodology +1202.0851 Phenomenology +1202.0853 +1202.0855 Learning +1202.0858 Atomic Physics +1202.0861 Dynamical Systems +1202.0866 Information Theory +1202.0870 Algebraic Geometry +1202.0876 Information Theory +1202.0877 Disordered Systems and Neural Networks +1202.0880 Statistical Mechanics +1202.0881 Mesoscale and Nanoscale Physics +1202.0884 Cryptography and Security +1202.0885 Cryptography and Security +1202.0887 Fluid Dynamics +1202.0888 Representation Theory +1202.0889 Methodology +1202.0895 Information Theory +1202.0898 Information Theory +1202.0901 Phenomenology +1202.0903 Earth and Planetary Astrophysics +1202.0910 Analysis of PDEs +1202.0912 Geophysics +1202.0915 Logic +1202.0919 Information Theory +1202.0925 Information Theory +1202.0934 Information Theory +1202.0938 Instrumentation and Methods for Astrophysics +1202.0940 Artificial Intelligence +1202.0944 Applications +1202.0945 Experiment +1202.0948 Combinatorics +1202.0949 Methodology +1202.0950 Popular Physics +1202.0951 Probability +1202.0954 History and Philosophy of Physics +1202.0955 Quantum Gases +1202.0957 Statistics Theory +1202.0961 Information Theory +1202.0965 Functional Analysis +1202.0967 +1202.0970 Distributed, Parallel, and Cluster Computing +1202.0972 Classical Analysis and ODEs +1202.0973 Analysis of PDEs +1202.0975 Analysis of PDEs +1202.0977 Information Theory +1202.0978 Group Theory +1202.0982 Differential Geometry +1202.0989 Dynamical Systems +1202.0991 Dynamical Systems +1202.0992 Information Theory +1202.0993 Complex Variables +1202.0994 Complex Variables +1202.0996 General Finance +1202.0998 +1202.1001 Probability +1202.1004 Category Theory +1202.1006 Materials Science +1202.1008 Materials Science +1202.1011 Analysis of PDEs +1202.1021 +1202.1024 Phenomenology +1202.1026 Instrumentation and Methods for Astrophysics +1202.1027 +1202.1028 Instrumentation and Methods for Astrophysics +1202.1029 Combinatorics +1202.1030 Instrumentation and Methods for Astrophysics +1202.1032 Dynamical Systems +1202.1034 Instrumentation and Methods for Astrophysics +1202.1040 Materials Science +1202.1041 Data Structures and Algorithms +1202.1046 Combinatorics +1202.1054 Computation and Language +1202.1055 Discrete Mathematics +1202.1056 Mathematical Software +1202.1060 Information Theory +1202.1061 Combinatorics +1202.1062 Distributed, Parallel, and Cluster Computing +1202.1068 Numerical Analysis +1202.1075 Phenomenology +1202.1078 Materials Science +1202.1079 +1202.1081 Information Theory +1202.1083 Probability +1202.1084 Analysis of PDEs +1202.1085 Analysis of PDEs +1202.1087 Differential Geometry +1202.1089 Computer Science and Game Theory +1202.1092 Chemical Physics +1202.1094 Astrophysics of Galaxies +1202.1095 Networking and Internet Architecture +1202.1099 Optimization and Control +1202.1100 Networking and Internet Architecture +1202.1103 Optics +1202.1107 Strongly Correlated Electrons +1202.1108 Optimization and Control +1202.1110 Algebraic Geometry +1202.1113 Solar and Stellar Astrophysics +1202.1115 Mesoscale and Nanoscale Physics +1202.1117 +1202.1120 Information Theory +1202.1124 Symplectic Geometry +1202.1126 +1202.1129 Functional Analysis +1202.1131 Mesoscale and Nanoscale Physics +1202.1134 Analysis of PDEs +1202.1136 Probability +1202.1137 Materials Science +1202.1140 Experiment +1202.1141 Experiment +1202.1146 Combinatorics +1202.1148 Formal Languages and Automata Theory +1202.1152 Classical Analysis and ODEs +1202.1156 Combinatorics +1202.1157 Number Theory +1202.1158 +1202.1166 Numerical Analysis +1202.1178 Information Theory +1202.1180 Complex Variables +1202.1185 Number Theory +1202.1188 Combinatorics +1202.1189 Soft Condensed Matter +1202.1191 High Energy Astrophysical Phenomena +1202.1193 Superconductivity +1202.1206 +1202.1211 Number Theory +1202.1215 Populations and Evolution +1202.1217 Analysis of PDEs +1202.1218 +1202.1219 Combinatorics +1202.1220 Analysis of PDEs +1202.1228 Statistical Mechanics +1202.1232 Numerical Analysis +1202.1233 Numerical Analysis +1202.1235 Analysis of PDEs +1202.1236 Analysis of PDEs +1202.1242 Statistics Theory +1202.1245 Differential Geometry +1202.1266 Quantitative Methods +1202.1267 Algebraic Geometry +1202.1269 Theory +1202.1270 Solar and Stellar Astrophysics +math-ph/0110041 +math/0512370 Algebraic Geometry +math/0611627 Spectral Theory +0706.0711 +0706.1115 +0803.3333 General Physics +0805.0432 +0807.2276 Theory +0807.2927 Category Theory +0906.3765 Computational Complexity +1003.5332 Theory +1006.2556 Quantum Gases +1008.0091 Combinatorics +1009.1380 Optics +1009.2840 +1011.3072 Optics +1012.1457 +1012.3598 +1102.2285 Pricing of Securities +1102.4893 Theory +1103.3756 Discrete Mathematics +1103.4616 Earth and Planetary Astrophysics +1105.5628 Optics +1105.6311 Statistical Mechanics +1106.4059 Theory +1106.5696 Number Theory +1108.2161 +1108.3027 Number Theory +1109.3725 High Energy Astrophysical Phenomena +1110.2986 Combinatorics +1111.0334 Lattice +1111.0872 Theory +1111.1284 Phenomenology +1111.4496 Combinatorics +1112.0361 Statistical Mechanics +1112.1861 +1112.3465 Mesoscale and Nanoscale Physics +1112.6298 Probability +1112.6388 High Energy Astrophysical Phenomena +1201.2202 Combinatorics +1201.4015 Phenomenology +1201.4059 Mesoscale and Nanoscale Physics +1201.5128 Mesoscale and Nanoscale Physics +1201.5338 Learning +1201.5573 +1202.0618 Probability +1202.2599 Probability +1202.3270 Statistical Mechanics +1202.4872 Mesoscale and Nanoscale Physics +1203.3703 +1204.1145 Statistical Mechanics +1204.4551 Statistical Mechanics +1204.4598 Mesoscale and Nanoscale Physics +1204.5482 Cosmology and Nongalactic Astrophysics +1204.5600 Solar and Stellar Astrophysics +1204.6208 Mesoscale and Nanoscale Physics +1204.6723 Category Theory +1205.1317 Cosmology and Nongalactic Astrophysics +1205.1399 +1205.1466 Phenomenology +1205.3737 Mesoscale and Nanoscale Physics +1205.3958 +1205.4460 Theory +1205.4787 Geometric Topology +1206.2610 Cryptography and Security +1206.5132 Other Computer Science +1206.5587 Networking and Internet Architecture +1206.6099 Networking and Internet Architecture +1206.6321 +1206.6566 Instrumentation and Detectors +1207.2860 Computers and Society +1207.2862 Computers and Society +1207.3326 Cosmology and Nongalactic Astrophysics +1207.5312 Mesoscale and Nanoscale Physics +1208.5401 +1208.6345 General Topology +1208.6501 Computer Science and Game Theory +1209.0783 High Energy Astrophysical Phenomena +1209.1449 +1209.2288 Phenomenology +1209.3795 Applications +1209.3950 +1209.4067 Optimization and Control +1209.4120 Machine Learning +1209.4228 +1209.4499 Logic in Computer Science +1209.4633 Software Engineering +1209.4634 Software Engineering +1209.4635 Software Engineering +1209.4660 Cosmology and Nongalactic Astrophysics +1209.4666 Materials Science +1209.4669 Differential Geometry +1209.4670 Dynamical Systems +1209.4671 Cosmology and Nongalactic Astrophysics +1209.4675 Probability +1209.4677 Quantum Algebra +1209.4678 Applications +1209.4687 Information Theory +1209.4691 Combinatorics +1209.4697 Geometric Topology +1209.4700 Combinatorics +1209.4703 Computer Science and Game Theory +1209.4704 Optics +1209.4708 Algebraic Geometry +1209.4709 +1209.4714 Data Structures and Algorithms +1209.4716 +1209.4717 Probability +1209.4719 Classical Analysis and ODEs +1209.4722 Neurons and Cognition +1209.4725 Atomic Physics +1209.4729 Experiment +1209.4731 Differential Geometry +1209.4732 +1209.4733 Phenomenology +1209.4734 General Physics +1209.4740 Solar and Stellar Astrophysics +1209.4741 Analysis of PDEs +1209.4742 Plasma Physics +1209.4750 Materials Science +1209.4751 Distributed, Parallel, and Cluster Computing +1209.4756 Algebraic Topology +1209.4759 Cosmology and Nongalactic Astrophysics +1209.4761 Data Structures and Algorithms +1209.4763 Networking and Internet Architecture +1209.4764 Statistical Mechanics +1209.4765 Fluid Dynamics +1209.4768 Earth and Planetary Astrophysics +1209.4771 Data Structures and Algorithms +1209.4773 Phenomenology +1209.4774 +1209.4775 Chemical Physics +1209.4777 Cryptography and Security +1209.4778 Networking and Internet Architecture +1209.4780 Instrumentation and Detectors +1209.4783 Cosmology and Nongalactic Astrophysics +1209.4785 Information Theory +1209.4789 Networking and Internet Architecture +1209.4791 K-Theory and Homology +1209.4793 Optics +1209.4796 General Topology +1209.4800 Representation Theory +1209.4805 Phenomenology +1209.4807 +1209.4809 Analysis of PDEs +1209.4811 Information Theory +1209.4813 Experiment +1209.4820 Cryptography and Security +1209.4821 Probability +1209.4822 Mesoscale and Nanoscale Physics +1209.4829 Discrete Mathematics +1209.4838 Artificial Intelligence +1209.4842 +1209.4846 Algebraic Topology +1209.4847 Rings and Algebras +1209.4851 Functional Analysis +1209.4852 Analysis of PDEs +1209.4855 Neural and Evolutionary Computing +1209.4857 Mesoscale and Nanoscale Physics +1209.4865 Computational Complexity +1209.4870 Algebraic Geometry +1209.4877 Solar and Stellar Astrophysics +1209.4878 Mesoscale and Nanoscale Physics +1209.4880 Mesoscale and Nanoscale Physics +1209.4886 Accelerator Physics +1209.4889 Information Theory +1209.4890 Neurons and Cognition +1209.4891 Phenomenology +1209.4894 Other Computer Science +1209.4895 Neural and Evolutionary Computing +cond-mat/0307458 +0805.4637 +0808.1166 Analysis of PDEs +0810.2346 Geometric Topology +0811.3703 Dynamical Systems +0812.4049 Other Condensed Matter +0902.1328 Probability +0903.1642 Dynamical Systems +0908.1509 Probability +0909.1242 Probability +0911.0764 Quantum Gases +1003.3122 +1003.3950 Probability +1003.4206 Differential Geometry +1005.3445 Group Theory +1007.5181 Analysis of PDEs +1008.1152 Cosmology and Nongalactic Astrophysics +1008.4525 Combinatorics +1009.0452 Algebraic Geometry +1011.3405 Soft Condensed Matter +1012.4839 Geometric Topology +1012.5260 Quantum Gases +1101.1664 Statistical Mechanics +1102.4086 Computational Engineering, Finance, and Science +1103.1491 Algebraic Geometry +1103.4780 Commutative Algebra +1104.2808 Methodology +1107.1051 Commutative Algebra +1107.2064 Instrumentation and Detectors +1108.5131 Theory +1109.6615 Algebraic Geometry +1111.0332 Geometric Topology +1111.1651 Computational Geometry +1111.6405 Statistical Mechanics +1112.0013 Quantum Gases +1201.1798 Numerical Analysis +1201.2734 Representation Theory +1201.4300 Biological Physics +1201.4685 Data Analysis, Statistics and Probability +1202.0714 Classical Physics +1202.0795 Soft Condensed Matter +1202.3547 Materials Science +1202.4082 +1202.4937 Phenomenology +1202.5533 +1203.0499 Atomic Physics +1203.1695 Cosmology and Nongalactic Astrophysics +1203.1754 Data Structures and Algorithms +1203.2772 Phenomenology +1203.4663 Cosmology and Nongalactic Astrophysics +1203.5357 Quantum Gases +1203.6001 Information Theory +1203.6361 Differential Geometry +1203.6630 Information Theory +1204.0427 Cosmology and Nongalactic Astrophysics +1204.2721 Mesoscale and Nanoscale Physics +1204.2845 +1204.4350 Materials Science +1204.5460 Optics +1205.0341 +1205.1291 Mesoscale and Nanoscale Physics +1205.1525 Quantum Gases +1205.2107 Mathematical Software +1205.3668 Robotics +1205.3883 Theory +1205.3945 +1205.5804 Theory +1205.6223 Classical Physics +1205.6228 Social and Information Networks +1205.6689 Solar and Stellar Astrophysics +1205.6826 +1206.0097 Phenomenology +1206.0314 Cosmology and Nongalactic Astrophysics +1206.0498 Computational Physics +1206.0558 Earth and Planetary Astrophysics +1206.0837 Statistical Mechanics +1206.1109 +1206.1275 Optimization and Control +1206.1296 +1206.1416 Statistical Mechanics +1206.1868 Mesoscale and Nanoscale Physics +1206.3089 Theory +1206.3370 Disordered Systems and Neural Networks +1206.4399 Materials Science +1206.4887 Cosmology and Nongalactic Astrophysics +1206.4986 Numerical Analysis +1206.6585 Soft Condensed Matter +1207.0550 +1207.1556 Strongly Correlated Electrons +1207.2399 Mesoscale and Nanoscale Physics +1207.3821 +1207.4558 Mesoscale and Nanoscale Physics +1207.4627 Quantum Gases +1207.7335 Theory +1208.3112 Analysis of PDEs +1208.3195 Phenomenology +1208.3829 Experiment +1208.4585 Cosmology and Nongalactic Astrophysics +1209.0309 Number Theory +1209.1287 Mesoscale and Nanoscale Physics +1209.2113 General Physics +1209.2497 +1209.2513 Strongly Correlated Electrons +1209.3524 Solar and Stellar Astrophysics +1209.3884 Experiment +1209.5165 +1209.5176 +1209.5252 Solar and Stellar Astrophysics +1209.5379 Phenomenology +1209.5406 Mesoscale and Nanoscale Physics +1209.5477 Machine Learning +1209.5496 High Energy Astrophysical Phenomena +1209.5739 Classical Analysis and ODEs +1209.5751 Cosmology and Nongalactic Astrophysics +1209.5753 Astrophysics of Galaxies +1209.5754 General Physics +1209.5756 Computer Vision and Pattern Recognition +1209.5761 Optics +1209.5765 Data Structures and Algorithms +1209.5766 Data Structures and Algorithms +1209.5770 Computer Science and Game Theory +1209.5772 Theory +1209.5773 Formal Languages and Automata Theory +1209.5775 Classical Analysis and ODEs +1209.5777 Optics +1209.5780 Materials Science +1209.5783 Operator Algebras +1209.5787 Complex Variables +1209.5788 Instrumentation and Methods for Astrophysics +1209.5790 Lattice +1209.5791 Data Structures and Algorithms +1209.5792 +1209.5800 Software Engineering +1209.5801 Genomics +1209.5802 Probability +1209.5806 Experiment +1209.5809 Information Retrieval +1209.5813 Group Theory +1209.5814 Algebraic Geometry +1209.5816 +1209.5826 Numerical Analysis +1209.5829 Information Theory +1209.5835 General Topology +1209.5836 Cryptography and Security +1209.5837 Physics and Society +1209.5838 Operator Algebras +1209.5839 Numerical Analysis +1209.5840 Classical Analysis and ODEs +1209.5841 Cosmology and Nongalactic Astrophysics +1209.5850 Digital Libraries +1209.5851 Programming Languages +1209.5853 Artificial Intelligence +1209.5856 Instrumentation and Detectors +1209.5863 Analysis of PDEs +1209.5865 Materials Science +1209.5868 Materials Science +1209.5877 Optics +1209.5878 Experiment +1209.5879 Theory +1209.5884 +1209.5885 Dynamical Systems +1209.5887 Rings and Algebras +1209.5888 Probability +1209.5890 Commutative Algebra +1209.5891 Algebraic Geometry +1209.5896 Mesoscale and Nanoscale Physics +1209.5901 Computers and Society +1209.5904 Probability +1209.5907 Information Theory +1209.5917 Mesoscale and Nanoscale Physics +1209.5918 Optics +1209.5919 Physics and Society +1209.5920 Logic in Computer Science +1209.5923 Statistics Theory +1209.5924 Analysis of PDEs +1209.5925 +1209.5926 +1209.5927 Optimization and Control +1209.5928 Solar and Stellar Astrophysics +1209.5937 Solar and Stellar Astrophysics +1209.5939 Solar and Stellar Astrophysics +1209.5947 Probability +1209.5953 Pricing of Securities +1209.5955 Classical Analysis and ODEs +1209.5967 Accelerator Physics +1209.5968 Strongly Correlated Electrons +1209.5972 Accelerator Physics +1209.5977 Applications +1209.5978 Information Theory +1209.5979 Logic +1209.5981 +1209.5982 Cryptography and Security +1209.5983 Accelerator Physics +1209.5990 Differential Geometry +1209.5991 Learning +1209.6001 Learning +1209.6004 Machine Learning +1209.6006 Number Theory +1209.6007 Data Structures and Algorithms +1209.6011 Phenomenology +1209.6012 Social and Information Networks +1209.6014 General Physics +1209.6023 Algebraic Geometry +1209.6024 Strongly Correlated Electrons +1209.6026 Number Theory +1209.6027 Probability +1209.6028 Superconductivity +1209.6036 Solar and Stellar Astrophysics +1209.6043 Metric Geometry +1209.6045 Representation Theory +1209.6048 Methodology +1209.6050 Social and Information Networks +cond-mat/0012235 Strongly Correlated Electrons +cond-mat/0109161 Strongly Correlated Electrons +cond-mat/0305388 Strongly Correlated Electrons +cond-mat/9505027 +cond-mat/9505113 +cond-mat/9707022 +cond-mat/9903112 Statistical Mechanics +math/0702632 History and Overview +math/9911073 Category Theory +0708.1291 Strongly Correlated Electrons +0803.3201 +0803.4276 Atomic Physics +0808.1082 Strongly Correlated Electrons +0906.4967 High Energy Astrophysical Phenomena +0909.1069 High Energy Astrophysical Phenomena +0909.1292 Superconductivity +0909.2084 Strongly Correlated Electrons +0910.2393 +0911.1961 Soft Condensed Matter +1001.0232 Spectral Theory +1002.3755 Fluid Dynamics +1003.2971 Theory +1005.0979 +1006.2854 Strongly Correlated Electrons +1010.3564 K-Theory and Homology +1011.5705 Other Computer Science +1101.3367 Strongly Correlated Electrons +1102.3000 Mesoscale and Nanoscale Physics +1102.4131 +1105.0133 +1105.1325 Data Structures and Algorithms +1105.2948 Probability +1105.5235 +1106.4707 General Physics +1106.5282 +1107.0877 Algebraic Geometry +1107.4492 General Physics +1107.4768 Disordered Systems and Neural Networks +1108.2031 Solar and Stellar Astrophysics +1108.4249 Physics and Society +1109.3395 Superconductivity +1109.5986 Strongly Correlated Electrons +1109.6657 Functional Analysis +1110.3032 Classical Analysis and ODEs +1110.3680 Theory +1110.5768 Fluid Dynamics +1111.0676 +1111.2126 +1111.4793 Materials Science +1112.3690 Probability +1112.5683 Physics and Society +1112.5885 Phenomenology +1201.0466 Mesoscale and Nanoscale Physics +1201.1063 Strongly Correlated Electrons +1201.2780 Data Structures and Algorithms +1201.5974 Functional Analysis +1201.5976 Functional Analysis +1201.6671 Strongly Correlated Electrons +1202.4899 Numerical Analysis +1202.5024 High Energy Astrophysical Phenomena +1203.1402 +1203.3058 Physics and Society +1203.3790 Differential Geometry +1203.5107 Theory +1203.6272 +1203.6305 +1204.0270 Quantum Gases +1204.0355 Solar and Stellar Astrophysics +1204.1980 Quantum Gases +1204.5693 Strongly Correlated Electrons +1204.6183 Quantum Gases +1205.1747 Medical Physics +1205.2262 +1205.2376 Quantum Gases +1205.2861 Statistical Mechanics +1205.3088 +1206.0040 Superconductivity +1206.1277 Algebraic Topology +1206.3210 Exactly Solvable and Integrable Systems +1206.3486 Superconductivity +1207.1199 Group Theory +1207.1220 Astrophysics of Galaxies +1207.1546 Statistical Mechanics +1207.2173 Classical Physics +1207.2218 Statistical Mechanics +1207.2419 +1207.2637 Group Theory +1207.2977 Combinatorics +1207.3089 Analysis of PDEs +1207.3099 Distributed, Parallel, and Cluster Computing +1207.3111 Mesoscale and Nanoscale Physics +1207.3116 Dynamical Systems +1207.3118 Portfolio Management +1207.3119 Number Theory +1207.3120 Optimization and Control +1207.3121 Algebraic Geometry +1207.3122 Combinatorics +1207.3127 Computer Vision and Pattern Recognition +1207.3128 Classical Analysis and ODEs +1207.3130 +1207.3132 Information Theory +1207.3135 Strongly Correlated Electrons +1207.3139 Number Theory +1207.3140 Networking and Internet Architecture +1207.3144 Materials Science +1207.3158 Optics +1207.3159 Algebraic Geometry +1207.3162 Functional Analysis +1207.3164 +1207.3168 Probability +1207.3170 Phenomenology +1207.3176 +1207.3181 Soft Condensed Matter +1207.3183 Materials Science +1207.3187 Soft Condensed Matter +1207.3191 +1207.3193 Phenomenology +1207.3194 Materials Science +1207.3195 Computation +1207.3208 Logic in Computer Science +1207.3209 Combinatorics +1207.3213 Software Engineering +1207.3214 Metric Geometry +1207.3216 Materials Science +1207.3217 Geometric Topology +1207.3222 Mesoscale and Nanoscale Physics +1207.3226 High Energy Astrophysical Phenomena +1207.3229 Materials Science +1207.3232 Probability +1207.3233 Probability +1207.3236 Materials Science +1207.3237 Probability +1207.3239 Materials Science +1207.3241 Probability +1207.3242 Materials Science +1207.3247 High Energy Astrophysical Phenomena +1207.3249 Soft Condensed Matter +1207.3251 Combinatorics +1207.3254 Optimization and Control +1207.3258 Soft Condensed Matter +1207.3259 Statistical Mechanics +1207.3263 Soft Condensed Matter +1207.3264 Soft Condensed Matter +1207.3265 Information Theory +1207.3266 Combinatorics +1207.3268 Mesoscale and Nanoscale Physics +1207.3271 Disordered Systems and Neural Networks +1207.3274 Soft Condensed Matter +1207.3275 Instrumentation and Detectors +1207.3277 Software Engineering +1207.3280 Soft Condensed Matter +1207.3281 Mesoscale and Nanoscale Physics +1207.3282 Soft Condensed Matter +1207.3288 Quantitative Methods +1207.3289 Tissues and Organs +1207.3291 Combinatorics +1207.3292 Information Theory +1207.3300 Statistical Finance +1207.3302 Other Computer Science +1207.3304 Optimization and Control +1207.3312 Complex Variables +1207.3315 Artificial Intelligence +1207.3317 Combinatorics +1207.3319 Combinatorics +1207.3320 Materials Science +1207.3321 Tissues and Organs +1207.3322 Information Theory +1207.3330 Materials Science +1207.3339 Mesoscale and Nanoscale Physics +astro-ph/0601707 +astro-ph/0703238 +gr-qc/0108061 +1104.0729 Learning +1105.1178 Learning +1108.5710 Computer Vision and Pattern Recognition +0704.0544 Soft Condensed Matter +0704.3889 Statistical Mechanics +0707.0192 Soft Condensed Matter +0807.0911 Phenomenology +0811.3677 Strongly Correlated Electrons +0907.2808 Statistical Mechanics +0910.1950 Mesoscale and Nanoscale Physics +0911.3489 Statistical Mechanics +0911.4498 Numerical Analysis +0911.5275 Statistical Mechanics +0912.5306 Probability +1005.4717 Machine Learning +1008.0933 General Physics +1009.0695 +1009.3460 Computational Complexity +1010.1499 Information Theory +1010.5975 Discrete Mathematics +1011.1865 Algebraic Geometry +1011.2539 Mesoscale and Nanoscale Physics +1011.5099 +1101.5908 +1102.2785 Computational Geometry +1103.1615 Differential Geometry +1103.6203 +1104.3397 Probability +1105.1190 Analysis of PDEs +1106.2459 +1106.4243 Combinatorics +1106.5404 Soft Condensed Matter +1107.0779 Instrumentation and Detectors +1107.1671 Phenomenology +1107.4032 Chaotic Dynamics +1108.0810 Data Structures and Algorithms +1108.2859 +1109.0149 Other Condensed Matter +1109.2574 Combinatorics +1109.3763 Mesoscale and Nanoscale Physics +1110.3818 Theory +1111.2491 Data Analysis, Statistics and Probability +1111.2597 Superconductivity +1111.3786 Soft Condensed Matter +1112.0870 Biological Physics +1112.1643 +1201.2747 Phenomenology +1201.3234 Statistical Mechanics +1201.3460 Algebraic Geometry +1201.4872 Mesoscale and Nanoscale Physics +1201.5716 Experiment +1202.2043 Statistical Mechanics +1202.2108 Disordered Systems and Neural Networks +1202.2637 Algebraic Geometry +1202.2869 Phenomenology +1202.2875 Information Theory +1202.4077 +1202.5196 +1202.6575 Distributed, Parallel, and Cluster Computing +1203.1239 +1203.1510 Popular Physics +1203.2632 Phenomenology +1203.4608 Strongly Correlated Electrons +1203.5919 Systems and Control +1204.4478 General Physics +1204.4683 Theory +1204.5196 Statistical Mechanics +1204.6355 Strongly Correlated Electrons +1205.0648 Phenomenology +1206.1208 Learning +1206.1440 Numerical Analysis +1206.3449 Classical Physics +1206.6141 Learning +1206.6570 Methodology +1206.6686 Strongly Correlated Electrons +1206.6700 High Energy Astrophysical Phenomena +1206.6772 Dynamical Systems +1206.6808 Other Computer Science +1206.6813 Learning +1206.6814 Artificial Intelligence +1206.6815 Learning +1206.6816 Artificial Intelligence +1206.6817 Artificial Intelligence +1206.6818 Artificial Intelligence +1206.6819 Artificial Intelligence +1206.6820 Computer Science and Game Theory +1206.6821 Artificial Intelligence +1206.6822 Artificial Intelligence +1206.6823 Artificial Intelligence +1206.6824 Learning +1206.6825 Artificial Intelligence +1206.6826 Computer Science and Game Theory +1206.6827 Artificial Intelligence +1206.6828 Learning +1206.6829 Artificial Intelligence +1206.6830 Methodology +1206.6831 Artificial Intelligence +1206.6832 Learning +1206.6833 Learning +1206.6834 Artificial Intelligence +1206.6835 Artificial Intelligence +1206.6836 Artificial Intelligence +1206.6837 Artificial Intelligence +1206.6838 Artificial Intelligence +1206.6839 Methodology +1206.6840 Methodology +1206.6841 Artificial Intelligence +1206.6842 Learning +1206.6843 Artificial Intelligence +1206.6844 Artificial Intelligence +1206.6845 Methodology +1206.6846 Learning +1206.6847 Learning +1206.6848 Computation +1206.6849 Artificial Intelligence +1206.6850 Graphics +1206.6851 Learning +1206.6852 Learning +1206.6853 Artificial Intelligence +1206.6854 Artificial Intelligence +1206.6855 Computer Science and Game Theory +1206.6856 Artificial Intelligence +1206.6857 Learning +1206.6858 Information Retrieval +1206.6859 Artificial Intelligence +1206.6860 Learning +1206.6861 Methodology +1206.6862 Learning +1206.6863 Learning +1206.6864 Artificial Intelligence +1206.6865 Learning +1206.6866 Multiagent Systems +1206.6867 Artificial Intelligence +1206.6868 Learning +1206.6869 Artificial Intelligence +1206.6870 Learning +1206.6871 Learning +1206.6872 Computer Vision and Pattern Recognition +1206.6873 Learning +1206.6874 Methodology +1206.6875 Artificial Intelligence +1206.6876 Artificial Intelligence +1206.6877 Artificial Intelligence +1206.6878 Computer Vision and Pattern Recognition +1206.6879 Artificial Intelligence +1206.6883 Learning +1206.6891 +1206.6892 High Energy Astrophysical Phenomena +1206.6896 Theory +1206.6905 Astrophysics of Galaxies +1206.6908 Representation Theory +1206.6912 Phenomenology +1206.6918 Information Theory +1206.6920 Chemical Physics +1206.6921 Physics and Society +1206.6922 High Energy Astrophysical Phenomena +1206.6926 High Energy Astrophysical Phenomena +1206.6938 Information Theory +1206.6940 Symbolic Computation +1206.6943 Computational Geometry +1206.6950 Differential Geometry +1206.6952 Applications +1206.6953 Probability +1206.6961 Statistics Theory +1206.6962 Applications +1206.6963 Classical Analysis and ODEs +1206.6966 Algebraic Geometry +1206.6969 Mesoscale and Nanoscale Physics +1206.6973 Complex Variables +1206.6976 Geometric Topology +1206.6979 High Energy Astrophysical Phenomena +1206.6980 Applications +1206.6989 +1206.6998 Risk Management +1206.7001 Algebraic Geometry +1206.7003 Probability +1206.7005 Commutative Algebra +1206.7008 Solar and Stellar Astrophysics +1206.7013 Rings and Algebras +1206.7016 Phenomenology +1206.7018 Geometric Topology +1206.7019 +1206.7023 Analysis of PDEs +1206.7024 Experiment +1206.7031 Mesoscale and Nanoscale Physics +1206.7032 Statistical Mechanics +1206.7039 Phenomenology +1206.7044 Phenomenology +1206.7047 Number Theory +1206.7063 Probability +1206.7064 Artificial Intelligence +1206.7070 Optics +1206.7074 Optimization and Control +1206.7075 Phenomenology +1206.7077 Number Theory +1206.7078 Analysis of PDEs +1206.7086 Differential Geometry +1206.7090 Phenomenology +1206.7094 Commutative Algebra +1206.7097 Analysis of PDEs +1206.7102 Differential Geometry +1206.7112 Learning +1206.7113 High Energy Astrophysical Phenomena +1206.7119 Physics and Society +astro-ph/9601159 +cond-mat/0310039 +cond-mat/0602205 Statistical Mechanics +cond-mat/0606714 Materials Science +math/0204046 Differential Geometry +quant-ph/9911075 +0706.0792 Mesoscale and Nanoscale Physics +0708.3389 Differential Geometry +0802.2734 Dynamical Systems +0803.0386 Materials Science +0811.0220 Group Theory +0908.0518 Strongly Correlated Electrons +0909.0512 Earth and Planetary Astrophysics +0911.0619 Strongly Correlated Electrons +1003.4969 Theory +1006.0026 Differential Geometry +1006.3672 +1008.0347 Mesoscale and Nanoscale Physics +1009.1219 Differential Geometry +1010.4175 Differential Geometry +1010.4968 Geometric Topology +1102.2368 +1102.4632 +1102.5382 Spectral Theory +1103.1868 +1103.4851 Theory +1103.5335 Dynamical Systems +1106.3449 Strongly Correlated Electrons +1106.3904 Analysis of PDEs +1106.3907 Analysis of PDEs +1106.5486 Phenomenology +1107.0731 Theory +1107.5139 +1108.6041 Optics +1109.0039 Quantum Gases +1109.0128 Differential Geometry +1109.2019 Materials Science +1109.2332 +1109.3285 Functional Analysis +1110.3866 Algebraic Geometry +1110.4250 +1111.1489 Combinatorics +1111.1601 Phenomenology +1111.4999 Strongly Correlated Electrons +1112.0732 Differential Geometry +1112.3527 Strongly Correlated Electrons +1112.4526 Numerical Analysis +1112.5858 Superconductivity +1201.1765 Mesoscale and Nanoscale Physics +1201.1930 Earth and Planetary Astrophysics +1201.2777 Mesoscale and Nanoscale Physics +1201.3068 Digital Libraries +1201.3076 Digital Libraries +1201.3529 Combinatorics +1201.3561 Disordered Systems and Neural Networks +1202.0728 Cosmology and Nongalactic Astrophysics +1202.1499 Probability +1202.2952 Mesoscale and Nanoscale Physics +1202.4519 Chemical Physics +1203.0037 Quantum Algebra +1203.0371 Theory +1203.1434 Optics +1203.2652 +1203.6105 Soft Condensed Matter +1204.0714 High Energy Astrophysical Phenomena +1204.2525 Other Quantitative Biology +1204.4047 Data Structures and Algorithms +1204.6493 +1204.6612 Phenomenology +1205.0309 Methodology +1205.4103 Superconductivity +1205.4167 Materials Science +1205.4235 Atomic Physics +1206.1484 Optics +1206.1573 Materials Science +1206.4194 Statistical Mechanics +1206.4332 Strongly Correlated Electrons +1206.5654 Superconductivity +1206.5804 +1207.2405 Optics +1207.3046 Mesoscale and Nanoscale Physics +1207.3787 Materials Science +1207.5535 Astrophysics of Galaxies +1207.6352 +1207.7234 Optics +1208.0405 Atomic Physics +1208.1632 Optics +1208.1840 Optics +1208.2789 Probability +1208.3076 Complex Variables +1208.3652 Group Theory +1208.4014 Probability +1208.4095 Instrumentation and Methods for Astrophysics +1208.4269 Social and Information Networks +1208.4298 Analysis of PDEs +1208.4311 Phenomenology +1208.4340 Algebraic Geometry +1208.4357 +1208.4368 Cryptography and Security +1208.4373 Analysis of PDEs +1208.4375 General Physics +1208.4379 Statistics Theory +1208.4385 +1208.4386 Networking and Internet Architecture +1208.4387 Metric Geometry +1208.4392 Networking and Internet Architecture +1208.4393 Astrophysics of Galaxies +1208.4395 Probability +1208.4400 Quantitative Methods +1208.4407 Probability +1208.4410 Representation Theory +1208.4418 Instrumentation and Methods for Astrophysics +1208.4427 Differential Geometry +1208.4429 Applications +1208.4436 Software Engineering +1208.4442 +1208.4447 Commutative Algebra +1208.4449 Data Structures and Algorithms +1208.4456 Superconductivity +1208.4458 Commutative Algebra +1208.4463 Fluid Dynamics +1208.4466 +1208.4469 Information Theory +1208.4471 Cosmology and Nongalactic Astrophysics +1208.4477 Phenomenology +1208.4485 Analysis of PDEs +1208.4488 Operator Algebras +1208.4496 Probability +1208.4497 +1208.4499 Strongly Correlated Electrons +1208.4501 Cryptography and Security +1208.4503 Computation and Language +1208.4524 High Energy Astrophysical Phenomena +1208.4528 Computer Science and Game Theory +1208.4530 Theory +1208.4543 K-Theory and Homology +1208.4552 Social and Information Networks +1208.4560 Mesoscale and Nanoscale Physics +1208.4565 Astrophysics of Galaxies +1208.4567 General Mathematics +1208.4568 Computers and Society +1208.4571 Computers and Society +1208.4573 Functional Analysis +1208.4576 Functional Analysis +1208.4589 Computer Science and Game Theory +1208.4592 Functional Analysis +1208.4594 Functional Analysis +0705.1091 Physics and Society +0711.4401 Category Theory +0802.0534 Information Theory +0804.4489 Information Theory +0805.0529 +0807.3916 General Topology +0902.3917 Spectral Theory +0904.0011 Exactly Solvable and Integrable Systems +0904.0274 Information Theory +0904.4202 Networking and Internet Architecture +0905.3929 Phenomenology +0906.1264 Algebraic Geometry +0908.3240 Algebraic Topology +0909.1576 Exactly Solvable and Integrable Systems +0909.3253 Differential Geometry +0910.4455 Networking and Internet Architecture +0910.4831 +0911.0492 Optimization and Control +0911.0735 Representation Theory +0911.4981 Data Structures and Algorithms +0912.3976 High Energy Astrophysical Phenomena +0912.4085 +1001.5273 Phenomenology +1002.0451 Number Theory +1002.2720 Information Theory +1002.2827 Networking and Internet Architecture +1003.1113 High Energy Astrophysical Phenomena +1003.3323 Statistics Theory +1004.0944 Programming Languages +1004.2041 Cosmology and Nongalactic Astrophysics +1004.3110 +1005.1700 Theory +1006.0001 Astrophysics of Galaxies +1006.0333 Mesoscale and Nanoscale Physics +1007.4055 Rings and Algebras +1008.3230 Mesoscale and Nanoscale Physics +1008.5345 Algebraic Geometry +1009.0447 Number Theory +1009.4297 +1009.5665 Earth and Planetary Astrophysics +1010.3637 Differential Geometry +1010.4807 Quantum Algebra +1011.1533 Physics and Society +1011.1620 +1011.1840 +1011.2474 Classical Analysis and ODEs +1011.6083 Number Theory +1012.1040 Theory +1012.2401 Analysis of PDEs +1012.3685 Theory +1012.4094 Phenomenology +1012.4495 Theory +1012.5313 High Energy Astrophysical Phenomena +1101.1058 Biological Physics +1101.1116 Rings and Algebras +1101.2106 Atomic and Molecular Clusters +1101.3852 +1102.0120 Number Theory +1102.0679 Number Theory +1102.1994 +1102.4283 Geometric Topology +1103.0098 Superconductivity +1103.1113 Cosmology and Nongalactic Astrophysics +1103.2567 Pricing of Securities +1103.5312 Algebraic Geometry +1103.5740 Information Theory +1104.0542 Numerical Analysis +1104.0936 Combinatorics +1104.5609 Chaotic Dynamics +1105.4784 Phenomenology +1105.5954 Computational Finance +1106.1889 Numerical Analysis +1106.4649 Data Structures and Algorithms +1106.5358 Probability +1107.0164 Risk Management +1107.0307 Number Theory +1107.0379 Geometric Topology +1107.0961 Theory +1107.1277 Mesoscale and Nanoscale Physics +1107.1479 Chemical Physics +1107.3268 Information Theory +1107.3828 +1107.4558 Phenomenology +1107.5201 Plasma Physics +1107.5202 Plasma Physics +1107.5761 Differential Geometry +1107.5868 Phenomenology +1108.0554 Data Structures and Algorithms +1108.1919 Symplectic Geometry +1108.5022 Physics Education +1108.6023 Atomic Physics +1109.1186 Digital Libraries +1109.1315 Chemical Physics +1109.2179 Chemical Physics +1109.4876 Statistical Mechanics +1109.5471 +1109.6937 Fluid Dynamics +1110.0255 Number Theory +1110.0768 Combinatorics +1110.0942 Disordered Systems and Neural Networks +1110.1057 Functional Analysis +1110.1162 Phenomenology +1110.2057 Mesoscale and Nanoscale Physics +1110.4236 Representation Theory +1110.5194 Phenomenology +1110.6229 Strongly Correlated Electrons +1110.6819 Statistical Mechanics +1111.0149 Mesoscale and Nanoscale Physics +1111.1383 +1111.1438 Cellular Automata and Lattice Gases +1111.1664 Functional Analysis +1111.2011 Strongly Correlated Electrons +1111.2694 +1111.2817 Combinatorics +1111.3134 Dynamical Systems +1111.5014 Phenomenology +1111.6075 Theory +1111.6838 Phenomenology +1112.0003 Phenomenology +1112.0109 Algebraic Topology +1112.1017 +1112.1206 Analysis of PDEs +1112.1267 Theory +1112.1786 Solar and Stellar Astrophysics +1112.2312 Algebraic Topology +1112.2345 Theory +1112.2368 Strongly Correlated Electrons +1112.2455 Differential Geometry +1112.2990 Phenomenology +1112.3791 Cryptography and Security +1112.3821 Number Theory +1112.5943 Quantum Gases +1201.0333 Plasma Physics +1201.0410 Computer Science and Game Theory +1201.0546 Cosmology and Nongalactic Astrophysics +1201.0702 Combinatorics +1201.0837 High Energy Astrophysical Phenomena +1201.2183 Instrumentation and Methods for Astrophysics +1201.4185 Phenomenology +1201.4791 +1201.5619 Probability +1202.0683 Statistical Mechanics +1202.0687 Soft Condensed Matter +1202.1611 Mesoscale and Nanoscale Physics +1202.2095 General Physics +1202.2948 Phenomenology +1202.3693 Analysis of PDEs +1202.3967 Optics +1202.4471 Phenomenology +1202.4769 Phenomenology +1202.5284 Neural and Evolutionary Computing +1202.5489 Experiment +1202.6237 Solar and Stellar Astrophysics +1202.6383 Differential Geometry +1202.6683 Statistical Mechanics +1203.0588 Superconductivity +1203.0713 Materials Science +1203.1298 Analysis of PDEs +1203.1313 Physics and Society +1203.1737 Solar and Stellar Astrophysics +1203.1916 Phenomenology +1203.2023 +1203.4726 Probability +1203.4728 Superconductivity +1203.4892 Materials Science +1203.5241 Phenomenology +1203.5729 Computational Finance +1203.5853 Number Theory +1203.6020 Computational Complexity +1203.6122 Social and Information Networks +1203.6438 Other Computer Science +1203.6445 Software Engineering +1203.6527 Analysis of PDEs +1204.0002 General Physics +1204.0011 Information Theory +1204.0023 Dynamical Systems +1204.0027 Dynamical Systems +1204.0029 Information Theory +1204.0031 Analysis of PDEs +1204.0032 Combinatorics +1204.0033 Machine Learning +1204.0045 Chaotic Dynamics +1204.0046 Number Theory +1204.0050 Data Analysis, Statistics and Probability +1204.0056 Multimedia +1204.0060 Algebraic Geometry +1204.0065 Information Theory +1204.0067 Robotics +1204.0070 Classical Physics +1204.0074 General Topology +1204.0078 Information Theory +1204.0082 Computational Physics +1204.0084 Chaotic Dynamics +1204.0087 Number Theory +1204.0094 Networking and Internet Architecture +1204.0095 Geometric Topology +1204.0096 Functional Analysis +1204.0098 Analysis of PDEs +1204.0100 Physics and Society +1204.0101 +1204.0104 Mesoscale and Nanoscale Physics +1204.0106 Differential Geometry +1204.0107 Differential Geometry +1204.0109 Analysis of PDEs +1204.0112 Classical Analysis and ODEs +1204.0114 General Physics +1204.0117 Analysis of PDEs +1204.0118 Soft Condensed Matter +1204.0127 Physics and Society +1204.0128 Computers and Society +1204.0129 Cosmology and Nongalactic Astrophysics +1204.0130 Analysis of PDEs +1204.0133 Systems and Control +1204.0136 Learning +1204.0140 Computation and Language +1204.0146 Atmospheric and Oceanic Physics +1204.0147 Information Theory +1204.0149 Number Theory +1204.0153 Cryptography and Security +1204.0156 Social and Information Networks +1204.0157 Classical Analysis and ODEs +1204.0160 Soft Condensed Matter +1204.0161 Social and Information Networks +1204.0167 Functional Analysis +1204.0169 Materials Science +1204.0173 Information Theory +1204.0175 Differential Geometry +1204.0176 Databases +1204.0179 Robotics +1204.0181 Artificial Intelligence +1204.0182 Information Retrieval +1204.0183 Neural and Evolutionary Computing +1204.0184 Computation and Language +1204.0185 Robotics +1204.0186 Information Retrieval +1204.0188 Computation and Language +1204.0191 Computation and Language +1204.0193 Software Engineering +1204.0194 +1204.0195 Software Engineering +1204.0197 Operating Systems +1204.0200 Other Condensed Matter +1204.0201 Logic +1204.0204 Statistical Mechanics +1204.0207 Number Theory +1204.0208 Algebraic Topology +1204.0210 Combinatorics +1204.0217 Other Condensed Matter +1204.0218 Astrophysics of Galaxies +1204.0219 Data Structures and Algorithms +1204.0220 Data Structures and Algorithms +1204.0221 Programming Languages +1204.0224 Operator Algebras +1204.0225 Other Computer Science +1204.0227 Category Theory +1204.0231 Materials Science +1204.0232 Data Structures and Algorithms +1204.0233 General Physics +1204.0234 General Physics +1204.0235 Optimization and Control +1204.0238 General Physics +1204.0240 Cryptography and Security +1204.0244 Differential Geometry +1204.0245 Computation and Language +1204.0247 Instrumentation and Methods for Astrophysics +1204.0250 Dynamical Systems +1204.0255 Computation and Language +1204.0257 Computation and Language +1204.0260 Phenomenology +1204.0271 Probability +1204.0274 Robotics +1204.0275 Earth and Planetary Astrophysics +1204.0279 Numerical Analysis +1204.0280 Robotics +1204.0281 Information Theory +1204.0287 Group Theory +1204.0291 +1204.0293 +1204.0298 Popular Physics +1204.0301 Optimization and Control +1204.0307 Applications +1204.0309 Information Retrieval +1204.0314 Probability +1204.0317 Analysis of PDEs +1204.0318 Astrophysics of Galaxies +1204.0320 Medical Physics +1204.0323 Probability +1204.0324 Astrophysics of Galaxies +1204.0332 Probability +1204.0335 Materials Science +1204.0340 Phenomenology +1204.0341 +1204.0344 +1204.0345 +1204.0346 Analysis of PDEs +1204.0349 Dynamical Systems +1204.0357 Computer Vision and Pattern Recognition +1204.0359 Astrophysics of Galaxies +1204.0362 Combinatorics +1204.0368 Software Engineering +1204.0369 Cosmology and Nongalactic Astrophysics +1204.0371 Statistical Mechanics +1204.0372 Cosmology and Nongalactic Astrophysics +1204.0374 Number Theory +1204.0375 Networking and Internet Architecture +1204.0379 Algebraic Geometry +1204.0380 Numerical Analysis +1204.0382 Instrumentation and Methods for Astrophysics +1204.0385 Disordered Systems and Neural Networks +1204.0391 Accelerator Physics +1204.0398 Optics +1204.0402 Biological Physics +1204.0405 Statistics Theory +1204.0410 Earth and Planetary Astrophysics +1204.0414 Distributed, Parallel, and Cluster Computing +1204.0416 Networking and Internet Architecture +1204.0419 +1204.0422 Chemical Physics +1204.0424 Phenomenology +1204.0426 Statistical Finance +1204.0428 Algebraic Geometry +1204.0433 Data Analysis, Statistics and Probability +1204.0436 +1204.0442 Data Analysis, Statistics and Probability +1204.0447 Cryptography and Security +1204.0450 Complex Variables +1204.0451 Phenomenology +1204.0457 Functional Analysis +1204.0459 Cryptography and Security +1204.0460 Analysis of PDEs +1204.0462 Cryptography and Security +1204.0467 Classical Analysis and ODEs +1204.0472 Phenomenology +1204.0477 Representation Theory +1204.0486 Operator Algebras +1204.0496 Number Theory +astro-ph/0102285 +cond-mat/0104313 Statistical Mechanics +cs/0611079 Networking and Internet Architecture +math/0409412 Algebraic Topology +math/0506324 Algebraic Topology +math/0509462 Algebraic Topology +math/0606654 Algebraic Topology +math/0606655 Algebraic Geometry +math/0702380 Algebraic Topology +quant-ph/0502162 +1009.2051 Analysis of PDEs +1011.1960 Computers and Society +1012.2177 Cryptography and Security +1104.0991 Cryptography and Security +1105.1541 Cryptography and Security +1105.1572 Cryptography and Security +1110.0146 Cryptography and Security +1110.0147 Networking and Internet Architecture +1111.0380 Cryptography and Security +1208.5198 Other Condensed Matter +0704.1370 +0709.3418 Physics and Society +0711.2893 Computation +0803.0644 Superconductivity +0805.4189 Soft Condensed Matter +0809.3918 Applications +0903.0042 Dynamical Systems +0903.1881 Dynamical Systems +0905.2436 Atomic Physics +0907.3453 Soft Condensed Matter +1008.2850 Probability +1008.5023 +1010.0118 Experiment +1012.5813 Artificial Intelligence +1103.2405 Numerical Analysis +1104.1484 Number Theory +1104.3497 Information Theory +1105.2459 Molecular Networks +1105.4983 Algebraic Geometry +1106.3841 Geophysics +1106.4919 Soft Condensed Matter +1109.4700 Number Theory +1110.6487 Information Theory +1111.6816 Strongly Correlated Electrons +1112.0310 High Energy Astrophysical Phenomena +1112.5529 Optimization and Control +1112.5928 Theory +1112.6250 Number Theory +1202.1715 Computers and Society +1202.1924 Instrumentation and Methods for Astrophysics +1202.3351 Optimization and Control +1203.2287 Risk Management +1203.3044 Materials Science +1203.3577 Soft Condensed Matter +1204.0852 Optimization and Control +1204.0911 Mesoscale and Nanoscale Physics +1204.4542 Superconductivity +1204.4863 Superconductivity +1204.5211 Mesoscale and Nanoscale Physics +1204.6092 Probability +1205.1046 +1205.2181 Fluid Dynamics +1206.0742 Strongly Correlated Electrons +1206.1658 Strongly Correlated Electrons +1206.2512 Commutative Algebra +1207.0301 Strongly Correlated Electrons +1207.1097 Analysis of PDEs +1207.1749 Theory +1207.2657 Quantum Gases +1207.4586 Neurons and Cognition +1207.5565 Superconductivity +1208.0622 +1208.0696 Disordered Systems and Neural Networks +1208.0894 Phenomenology +1208.2111 +1208.2705 +1208.4203 Mesoscale and Nanoscale Physics +1208.5773 Theory +1208.5983 Other Condensed Matter +1209.0610 Theory +1209.1220 Analysis of PDEs +1209.1471 Soft Condensed Matter +1209.3025 Theory +1209.3121 +1209.5683 Physics and Society +1210.2164 Learning +1210.3334 +1210.4757 Solar and Stellar Astrophysics +1210.7251 Superconductivity +1210.7939 Phenomenology +1211.0828 Lattice +1211.3089 Social and Information Networks +1211.4299 Analysis of PDEs +1211.4961 Materials Science +1211.6823 Phenomenology +1211.7256 Mesoscale and Nanoscale Physics +1212.1110 Cosmology and Nongalactic Astrophysics +1212.2710 Group Theory +1212.2721 Theory +1212.2785 Number Theory +1212.3011 Materials Science +1212.3499 Combinatorics +1212.3900 Machine Learning +1212.4915 Networking and Internet Architecture +1212.5005 +1212.5248 Data Analysis, Statistics and Probability +1212.5249 General Physics +1212.5250 Neural and Evolutionary Computing +1212.5251 Chemical Physics +1212.5254 General Physics +1212.5257 Fluid Dynamics +1212.5259 Atmospheric and Oceanic Physics +1212.5261 Combinatorics +1212.5264 Computational Engineering, Finance, and Science +1212.5265 Computational Engineering, Finance, and Science +1212.5273 Optics +1212.5276 Artificial Intelligence +1212.5278 Cosmology and Nongalactic Astrophysics +1212.5282 Complex Variables +1212.5283 Mesoscale and Nanoscale Physics +1212.5288 Information Theory +1212.5289 Cryptography and Security +1212.5291 Optimization and Control +1212.5298 Analysis of PDEs +1212.5299 Exactly Solvable and Integrable Systems +1212.5309 Optimization and Control +1212.5310 Solar and Stellar Astrophysics +1212.5313 Representation Theory +1212.5320 Experiment +1212.5327 Physics and Society +1212.5333 +1212.5334 Mesoscale and Nanoscale Physics +1212.5342 Experiment +1212.5347 Analysis of PDEs +1212.5352 Computer Vision and Pattern Recognition +1212.5353 Computational Geometry +1212.5354 General Physics +1212.5355 +1212.5357 Phenomenology +1212.5359 Learning +1212.5361 Metric Geometry +1212.5365 Theory +1212.5370 Phenomenology +1212.5376 Analysis of PDEs +1212.5377 Analysis of PDEs +1212.5382 Solar and Stellar Astrophysics +1212.5384 Cosmology and Nongalactic Astrophysics +1212.5389 Databases +1212.5391 Learning +1212.5397 Statistics Theory +1212.5401 Probability +1212.5403 Probability +1212.5408 Optics +1212.5412 Solar and Stellar Astrophysics +1212.5418 +1212.5419 +1212.5420 Dynamical Systems +1212.5421 Systems and Control +1212.5428 Statistical Mechanics +1212.5430 Classical Physics +1212.5432 Rings and Algebras +1212.5433 Representation Theory +1212.5434 Probability +1212.5437 Statistical Mechanics +1212.5439 Molecular Networks +1212.5440 Systems and Control +1212.5441 Statistical Mechanics +1212.5442 Information Retrieval +1212.5445 Instrumentation and Methods for Astrophysics +1212.5448 Rings and Algebras +1212.5449 Information Theory +1212.5451 Statistical Mechanics +1212.5455 Statistical Mechanics +1212.5466 Analysis of PDEs +1212.5470 Lattice +1212.5471 Statistical Mechanics +1212.5473 Information Theory +1212.5481 Dynamical Systems +1212.5483 Statistical Mechanics +1212.5484 Algebraic Geometry +1212.5490 Statistics Theory +1212.5493 Probability +1212.5502 +1212.5507 Lattice +1212.5516 Number Theory +1212.5518 Computer Science and Game Theory +1212.5519 Solar and Stellar Astrophysics +1212.5523 Classical Analysis and ODEs +1212.5525 Systems and Control +1212.5526 Chaotic Dynamics +1212.5527 Solar and Stellar Astrophysics +1212.5533 Atmospheric and Oceanic Physics +1212.5535 +1212.5536 +1212.5541 Classical Physics +1212.5542 Lattice +1212.5543 Networking and Internet Architecture +1212.5546 Solar and Stellar Astrophysics +1212.5550 Neurons and Cognition +1212.5552 Strongly Correlated Electrons +1212.5555 Analysis of PDEs +1212.5556 Phenomenology +1212.5558 Networking and Internet Architecture +1212.5566 +1212.5570 +1212.5572 +1212.5578 Experiment +1212.5579 Medical Physics +1212.5582 Analysis of PDEs +1212.5583 Materials Science +1212.5586 Methodology +cond-mat/0002387 Mesoscale and Nanoscale Physics +cond-mat/0509079 Other Condensed Matter +cond-mat/0606216 Other Condensed Matter +gr-qc/9407002 +math/0407013 Classical Analysis and ODEs +0710.0078 General Physics +0805.1186 General Physics +0807.0068 General Physics +0810.5145 +0810.5370 +0906.1687 General Physics +0906.5608 Information Retrieval +0908.3125 General Physics +0911.0603 Computational Physics +0911.3270 Statistics Theory +0912.1653 Experiment +1002.3775 Instrumentation and Methods for Astrophysics +1005.0508 Materials Science +1005.0593 Materials Science +1006.3158 General Physics +1008.5372 Optimization and Control +1009.3444 Instrumentation and Methods for Astrophysics +1010.1993 Group Theory +1010.3644 +1010.5537 Software Engineering +1011.1751 +1012.4196 Quantum Algebra +1012.4197 Quantum Algebra +1012.4198 Quantum Algebra +1012.4199 Quantum Algebra +1012.4202 Quantum Algebra +1102.0432 Materials Science +1103.2839 General Physics +1103.4180 Superconductivity +1104.3571 Computational Engineering, Finance, and Science +1105.0783 Differential Geometry +1106.2046 Cosmology and Nongalactic Astrophysics +1106.2406 General Physics +1106.2444 Classical Physics +1107.3690 Group Theory +1107.4270 Optics +1109.1164 +1109.2814 Commutative Algebra +1109.2890 Numerical Analysis +1109.3834 Superconductivity +1109.3872 Theory +1110.1929 Quantum Algebra +1110.1931 Quantum Algebra +1110.2473 Probability +1110.2918 Algebraic Geometry +1110.4968 Strongly Correlated Electrons +1110.5007 Combinatorics +1111.1592 Operator Algebras +1111.6424 +1111.7062 General Physics +1111.7282 Soft Condensed Matter +1112.1010 Social and Information Networks +1112.1529 +1201.2227 Statistical Mechanics +1201.2577 Statistics Theory +1201.6071 High Energy Astrophysical Phenomena +1202.0196 Mesoscale and Nanoscale Physics +1202.0443 Mesoscale and Nanoscale Physics +1202.1441 Mesoscale and Nanoscale Physics +1202.2440 Materials Science +1202.3109 Strongly Correlated Electrons +1202.3448 +1202.3541 +1202.5965 Mesoscale and Nanoscale Physics +1203.0021 Operator Algebras +1203.0827 +1203.1413 Earth and Planetary Astrophysics +1203.2418 +1203.3971 Instrumentation and Methods for Astrophysics +1203.6673 Physics and Society +1204.2888 Representation Theory +1204.4110 Cosmology and Nongalactic Astrophysics +1204.4370 Instrumentation and Detectors +1204.4912 General Physics +1204.5165 Optimization and Control +1204.6132 Instrumentation and Methods for Astrophysics +1205.0699 Information Theory +1205.0753 Phenomenology +1205.2282 Machine Learning +1205.2328 Quantum Gases +1205.2367 Programming Languages +1205.2379 Differential Geometry +1205.2381 Superconductivity +1205.2385 Functional Analysis +1205.2386 Geometric Topology +1205.2389 Solar and Stellar Astrophysics +1205.2390 +1205.2393 Solar and Stellar Astrophysics +1205.2394 Quantum Algebra +1205.2399 High Energy Astrophysical Phenomena +1205.2403 High Energy Astrophysical Phenomena +1205.2404 Cosmology and Nongalactic Astrophysics +1205.2407 Superconductivity +1205.2408 Algebraic Geometry +1205.2412 Analysis of PDEs +1205.2417 Methodology +1205.2424 Digital Libraries +1205.2425 Computational Geometry +1205.2426 Mesoscale and Nanoscale Physics +1205.2428 Hardware Architecture +1205.2430 Analysis of PDEs +1205.2432 Cryptography and Security +1205.2433 Statistical Mechanics +1205.2438 Materials Science +1205.2441 Geometric Topology +1205.2446 Statistics Theory +1205.2449 +1205.2450 Information Theory +1205.2451 Experiment +1205.2454 Cell Behavior +1205.2455 Mesoscale and Nanoscale Physics +1205.2458 Complex Variables +1205.2464 Algebraic Geometry +1205.2465 Databases +1205.2466 Physics and Society +1205.2467 Digital Libraries +1205.2469 Populations and Evolution +1205.2470 Statistical Finance +1205.2473 Fluid Dynamics +1205.2475 Statistical Mechanics +1205.2476 Human-Computer Interaction +1205.2478 Theory +1205.2483 Discrete Mathematics +1205.2489 Rings and Algebras +1205.2491 Number Theory +1205.2493 +1205.2496 Group Theory +1205.2497 Quantitative Methods +1205.2501 Applications +1205.2502 Chemical Physics +1205.2505 Probability +1205.2506 Phenomenology +1205.2508 Statistics Theory +1205.2510 Chemical Physics +1205.2513 Risk Management +1205.2516 Algebraic Topology +1205.2522 Earth and Planetary Astrophysics +1205.2527 Mesoscale and Nanoscale Physics +1205.2539 Solar and Stellar Astrophysics +1205.2541 Artificial Intelligence +1205.2543 Statistical Mechanics +1205.2547 Category Theory +1205.2552 Commutative Algebra +1205.2554 Logic +1205.2556 Materials Science +1205.2558 General Mathematics +1205.2560 Experiment +1205.2562 Instrumentation and Methods for Astrophysics +1205.2563 +1205.2565 Combinatorics +1205.2570 Superconductivity +1205.2581 High Energy Astrophysical Phenomena +1205.2588 Experiment +1205.2595 Theory +1205.2599 Machine Learning +1205.2600 Learning +1205.2601 Artificial Intelligence +1205.2602 Learning +1205.2603 Social and Information Networks +1205.2604 Machine Learning +1205.2605 Learning +1205.2606 Learning +1205.2607 Computer Science and Game Theory +1205.2608 Learning +1205.2609 Machine Learning +1205.2610 Learning +1205.2611 Information Retrieval +1205.2612 Learning +1205.2613 Artificial Intelligence +1205.2614 Learning +1205.2615 Methodology +1205.2616 Artificial Intelligence +1205.2617 Machine Learning +1205.2618 Information Retrieval +1205.2619 Artificial Intelligence +1205.2620 Artificial Intelligence +1205.2621 Artificial Intelligence +1205.2622 Learning +1205.2623 Learning +1205.2624 Artificial Intelligence +1205.2625 Artificial Intelligence +1205.2626 Machine Learning +1205.2627 Learning +1205.2628 Learning +1205.2629 Learning +1205.2630 Computer Science and Game Theory +1205.2631 Learning +1205.2632 Data Structures and Algorithms +1205.2633 Artificial Intelligence +1205.2634 Artificial Intelligence +1205.2635 Artificial Intelligence +1205.2636 Programming Languages +1205.2637 Artificial Intelligence +1205.2638 Computer Science and Game Theory +1205.2639 Artificial Intelligence +1205.2640 Machine Learning +1205.2641 Machine Learning +1205.2642 Artificial Intelligence +1205.2643 Learning +1205.2644 Logic in Computer Science +1205.2645 Artificial Intelligence +1205.2646 Learning +1205.2647 Artificial Intelligence +1205.2648 Social and Information Networks +1205.2649 Computer Science and Game Theory +1205.2650 Learning +1205.2651 Artificial Intelligence +1205.2652 Artificial Intelligence +1205.2653 Learning +1205.2654 Computer Science and Game Theory +1205.2655 Artificial Intelligence +1205.2656 Learning +1205.2657 Computation and Language +1205.2658 Machine Learning +1205.2659 Artificial Intelligence +1205.2660 Learning +1205.2661 Learning +1205.2662 Learning +1205.2664 Learning +1205.2665 Artificial Intelligence +1205.2668 Dynamical Systems +1205.2669 Strongly Correlated Electrons +1205.2670 Computers and Society +1205.2671 Experiment +1205.2673 Superconductivity +1205.2676 Algebraic Geometry +1205.2677 Rings and Algebras +1205.2678 Performance +1205.2687 Physics and Society +astro-ph/0607016 +physics/0512266 Physics and Society +physics/0607214 General Physics +0706.0593 Algebraic Geometry +0709.0885 Number Theory +0710.5911 Algebraic Geometry +0712.0708 Representation Theory +0801.0090 Optimization and Control +0801.3597 Operator Algebras +0802.2046 Mesoscale and Nanoscale Physics +0805.3445 Superconductivity +0807.1740 Materials Science +0810.0866 Combinatorics +0901.1859 Algebraic Geometry +0908.4187 Algebraic Geometry +0909.0434 Other Condensed Matter +0911.0945 Strongly Correlated Electrons +0911.4545 Number Theory +0911.4664 Solar and Stellar Astrophysics +0912.4258 Theory +0912.5416 +1001.2562 Representation Theory +1001.4530 Strongly Correlated Electrons +1003.0073 General Physics +1003.3720 Atomic Physics +1004.1010 Theory +1004.2234 Complex Variables +1006.0903 Theory +1007.1172 +1008.0615 Soft Condensed Matter +1009.4398 Algebraic Geometry +1011.1220 Strongly Correlated Electrons +1011.3580 Computer Science and Game Theory +1101.1242 +1101.2636 Strongly Correlated Electrons +1101.4051 Algebraic Geometry +1101.5810 Quantum Algebra +1102.0196 Algebraic Geometry +1102.0825 +1102.1212 Dynamical Systems +1102.5755 Information Theory +1103.4221 Analysis of PDEs +1103.4757 +1103.6046 Dynamical Systems +1104.2445 Analysis of PDEs +1104.4175 Complex Variables +1105.3163 Differential Geometry +1106.0064 Phenomenology +1106.0167 Instrumentation and Detectors +1106.2818 Superconductivity +1106.2856 Phenomenology +1106.5342 +1107.3348 Computer Vision and Pattern Recognition +1107.4396 Computer Vision and Pattern Recognition +1107.5244 Operator Algebras +1108.1172 Combinatorics +1108.4098 Computer Vision and Pattern Recognition +1108.4919 Computational Engineering, Finance, and Science +1108.4978 Mesoscale and Nanoscale Physics +1109.0258 Optimization and Control +1109.5983 Mesoscale and Nanoscale Physics +1110.0811 Numerical Analysis +1110.1374 Strongly Correlated Electrons +1110.1684 Materials Science +1110.2363 High Energy Astrophysical Phenomena +1110.3582 +1110.4490 Rings and Algebras +1110.5052 Probability +1111.0102 Atomic Physics +1111.2532 Statistics Theory +1111.5299 Number Theory +1111.5731 Instrumentation and Detectors +1111.6023 General Mathematics +1112.2195 Dynamical Systems +1112.3883 Representation Theory +1112.5419 +1112.5470 Strongly Correlated Electrons +1201.1360 Lattice +1201.1870 Discrete Mathematics +1201.5019 Optimization and Control +1201.6105 Solar and Stellar Astrophysics +1202.0779 Dynamical Systems +1202.1172 Cosmology and Nongalactic Astrophysics +1202.1289 Theory +1202.1913 Superconductivity +1202.2291 Computational Physics +1202.4768 +1202.5631 +1203.0419 Experiment +1203.0561 Theory +1203.1094 Mesoscale and Nanoscale Physics +1203.1857 +1203.2887 Strongly Correlated Electrons +1203.3762 +1203.4740 +1203.4942 Adaptation and Self-Organizing Systems +1204.3513 Logic in Computer Science +1204.3898 Phenomenology +1204.5558 Phenomenology +1204.6528 Biological Physics +1205.0768 Optimization and Control +1205.0996 Superconductivity +1205.1119 +1205.1491 Symplectic Geometry +1205.2126 Quantum Gases +1205.3600 Strongly Correlated Electrons +1205.3752 Information Theory +1205.3941 Instrumentation and Methods for Astrophysics +1205.4505 Quantum Gases +1205.5230 Phenomenology +1205.6173 Mesoscale and Nanoscale Physics +1205.6599 Algebraic Geometry +1205.7013 Lattice +1206.0461 Soft Condensed Matter +1206.1919 Combinatorics +1206.2744 Biological Physics +1206.2905 Atomic Physics +1206.3919 Plasma Physics +1206.4149 +1206.4719 Theory +1206.5137 Phenomenology +1206.5352 Formal Languages and Automata Theory +1206.5533 Learning +1206.5670 Mesoscale and Nanoscale Physics +1206.5875 Mesoscale and Nanoscale Physics +1207.1481 Dynamical Systems +1207.1922 Computer Vision and Pattern Recognition +1207.2066 K-Theory and Homology +1207.2992 High Energy Astrophysical Phenomena +1207.3612 Theory +1207.4676 Learning +1207.6990 Astrophysics of Galaxies +1208.0170 Quantum Gases +1208.1687 Complex Variables +1208.2434 Optimization and Control +1208.2635 Statistics Theory +1208.3435 Superconductivity +1208.3443 Combinatorics +1208.4233 Geometric Topology +1208.5333 Artificial Intelligence +1208.5357 +1208.5463 Combinatorics +1208.6054 Materials Science +1208.6228 Probability +1208.6247 Information Theory +1209.0189 Probability +1209.0747 General Physics +1209.1027 Solar and Stellar Astrophysics +1209.1837 +1209.1942 Data Structures and Algorithms +1209.2449 Algebraic Geometry +1209.2901 +1209.3088 Representation Theory +1209.3286 Information Retrieval +1209.3304 Theory +1209.3314 Distributed, Parallel, and Cluster Computing +1209.3315 Performance +1209.3316 Combinatorics +1209.3320 Cosmology and Nongalactic Astrophysics +1209.3321 +1209.3323 Instrumentation and Methods for Astrophysics +1209.3328 Phenomenology +1209.3332 Distributed, Parallel, and Cluster Computing +1209.3337 Mesoscale and Nanoscale Physics +1209.3342 Discrete Mathematics +1209.3343 +1209.3344 Information Theory +1209.3345 Group Theory +1209.3347 Representation Theory +1209.3353 Learning +1209.3354 Quantum Gases +1209.3355 +1209.3357 Combinatorics +1209.3361 Optics +1209.3363 Phenomenology +1209.3369 Phenomenology +1209.3387 Data Structures and Algorithms +1209.3390 Optics +1209.3396 Lattice +1209.3400 Optics +1209.3403 +1209.3404 Materials Science +1209.3407 +1209.3411 Neurons and Cognition +1209.3416 Information Theory +1209.3417 Commutative Algebra +1209.3418 Computer Science and Game Theory +1209.3419 Artificial Intelligence +1209.3423 Category Theory +1209.3425 High Energy Astrophysical Phenomena +1209.3428 Materials Science +1209.3432 Optimization and Control +1209.3433 Computer Vision and Pattern Recognition +1209.3434 Functional Analysis +1209.3435 Functional Analysis +1209.3438 Number Theory +1209.3439 Algebraic Geometry +1209.3441 +1209.3443 General Topology +1209.3445 +1209.3446 +1209.3455 Combinatorics +1209.3460 Information Theory +1209.3462 +1209.3467 Group Theory +1209.3470 Instrumentation and Methods for Astrophysics +1209.3474 Adaptation and Self-Organizing Systems +1209.3476 Geometric Topology +1209.3479 Instrumentation and Methods for Astrophysics +1209.3482 Materials Science +1209.3483 History and Philosophy of Physics +1209.3484 High Energy Astrophysical Phenomena +1209.3486 Operator Algebras +1209.3487 Distributed, Parallel, and Cluster Computing +1209.3491 Number Theory +1209.3494 +1209.3499 +1209.3502 Superconductivity +1209.3503 Pricing of Securities +1209.3505 Information Theory +1209.3507 Phenomenology +1209.3508 Operator Algebras +1209.3512 Chemical Physics +1209.3514 Statistical Mechanics +1209.3515 Soft Condensed Matter +1209.3517 Software Engineering +1209.3518 Software Engineering +1209.3525 Networking and Internet Architecture +1209.3530 Functional Analysis +1209.3531 Functional Analysis +1209.3534 Atmospheric and Oceanic Physics +1209.3535 +1209.3543 Analysis of PDEs +1209.3544 +1209.3545 +1209.3548 Algebraic Geometry +1209.3549 Computer Science and Game Theory +1209.3553 Experiment +1209.3555 Symbolic Computation +1209.3557 Cryptography and Security +1209.3560 Theory +1209.3562 Logic +1209.3564 Hardware Architecture +1209.3565 +1209.3569 Materials Science +1209.3570 Statistics Theory +1209.3572 Combinatorics +1209.3573 Cryptography and Security +1209.3577 Number Theory +1209.3578 Probability +1209.3579 Metric Geometry +1209.3580 Materials Science +1209.3581 Analysis of PDEs +1209.3582 Spectral Theory +1209.3585 Number Theory +1209.3588 Probability +1209.3589 Algebraic Geometry +1209.3590 Cryptography and Security +1209.3591 Populations and Evolution +1209.3597 Dynamical Systems +1209.3600 Systems and Control +1209.3601 Analysis of PDEs +1209.3602 Analysis of PDEs +1209.3604 +1209.3607 Information Theory +1209.3608 Digital Libraries +1209.3617 Computer Science and Game Theory +1209.3618 Soft Condensed Matter +1209.3624 Functional Analysis +1209.3625 Group Theory +1209.3627 Number Theory +1209.3631 Solar and Stellar Astrophysics +1209.3633 Astrophysics of Galaxies +1209.3644 Networking and Internet Architecture +1209.3650 Human-Computer Interaction +1209.3651 Differential Geometry +1209.3656 Rings and Algebras +1209.3663 Number Theory +1209.3666 Analysis of PDEs +1209.3668 Data Structures and Algorithms +1209.3677 Probability +1209.3678 Analysis of PDEs +1209.3683 +1209.3685 +1209.3687 Classical Analysis and ODEs +1209.3689 Algebraic Geometry +1209.3690 Classical Analysis and ODEs +1209.3692 Statistical Mechanics +1209.3694 Learning +1209.3696 Analysis of PDEs +1209.3701 Analysis of PDEs +1209.3706 +1209.3708 +1209.3709 Metric Geometry +1209.3714 Phenomenology +1209.3717 +1209.3718 Analysis of PDEs +1209.3722 Solar and Stellar Astrophysics +1209.3734 Artificial Intelligence +1209.3737 Physics and Society +1209.3740 Theory +1209.3743 +1209.3753 Materials Science +1209.3755 +1209.3761 Machine Learning +cond-mat/0408089 Mesoscale and Nanoscale Physics +math/0312284 Algebraic Geometry +math/0702840 Algebraic Geometry +quant-ph/0403171 +0705.0360 Mesoscale and Nanoscale Physics +0807.0647 +0812.3415 Dynamical Systems +0903.1622 +0904.2384 Functional Analysis +0905.3243 +0905.3657 +0906.4128 +0910.2634 +0910.3963 Functional Analysis +0912.2560 Lattice +1002.3472 +1004.1990 +1004.3485 Probability +1005.3761 Probability +1005.5641 Superconductivity +1007.3276 Mesoscale and Nanoscale Physics +1007.4630 Mesoscale and Nanoscale Physics +1007.5121 Superconductivity +1009.1064 Functional Analysis +1009.2202 Mesoscale and Nanoscale Physics +1009.3860 Mesoscale and Nanoscale Physics +1009.5059 +1011.1867 Materials Science +1012.0271 Mesoscale and Nanoscale Physics +1012.2552 Optimization and Control +1012.2601 Commutative Algebra +1012.4181 +1101.1951 Cosmology and Nongalactic Astrophysics +1102.1512 Optics +1103.3180 Algebraic Geometry +1103.3789 Fluid Dynamics +1104.0588 Group Theory +1104.0643 Mesoscale and Nanoscale Physics +1104.5160 Classical Analysis and ODEs +1105.0469 Physics and Society +1105.1163 Strongly Correlated Electrons +1105.1338 Mesoscale and Nanoscale Physics +1105.1682 Quantum Gases +1105.3322 Strongly Correlated Electrons +1105.5351 Computational Physics +1105.5597 Mesoscale and Nanoscale Physics +1106.1868 Number Theory +1106.4040 Phenomenology +1106.6034 +1107.0155 Phenomenology +1107.1715 Phenomenology +1107.3202 +1107.3332 Instrumentation and Detectors +1107.4074 Solar and Stellar Astrophysics +1107.4240 Mesoscale and Nanoscale Physics +1107.4332 Mesoscale and Nanoscale Physics +1108.0650 Strongly Correlated Electrons +1108.3351 Combinatorics +1108.5333 Mesoscale and Nanoscale Physics +1108.5337 Mesoscale and Nanoscale Physics +1108.5749 Mesoscale and Nanoscale Physics +1109.0211 Phenomenology +1109.1444 Phenomenology +1109.2095 Strongly Correlated Electrons +1109.2121 Instrumentation and Methods for Astrophysics +1109.2385 Mesoscale and Nanoscale Physics +1109.4097 Superconductivity +1109.5892 Statistical Mechanics +1110.3732 Materials Science +1110.4194 Experiment +1110.4682 +1110.4695 +1111.1740 Phenomenology +1111.1866 Mesoscale and Nanoscale Physics +1111.3236 Algebraic Geometry +1111.5200 Data Structures and Algorithms +1111.5512 +1111.6749 Cosmology and Nongalactic Astrophysics +1112.0852 Representation Theory +1112.2630 Neurons and Cognition +1112.3058 Algebraic Geometry +1112.3225 Materials Science +1112.3335 Optics +1112.4985 Functional Analysis +1112.5759 Fluid Dynamics +1201.1251 General Physics +1201.2002 Superconductivity +1201.2742 Analysis of PDEs +1201.3521 Astrophysics of Galaxies +1201.3617 Experiment +1201.3842 Combinatorics +1201.3914 Numerical Analysis +1201.3918 +1201.3922 High Energy Astrophysical Phenomena +1201.3923 Optics +1201.3929 Software Engineering +1201.3932 Number Theory +1201.3934 Phenomenology +1201.3936 Cosmology and Nongalactic Astrophysics +1201.3937 Methodology +1201.3938 Soft Condensed Matter +1201.3941 Differential Geometry +1201.3942 Cosmology and Nongalactic Astrophysics +1201.3945 +1201.3950 Networking and Internet Architecture +1201.3953 Probability +1201.3960 Networking and Internet Architecture +1201.3962 Instrumentation and Detectors +1201.3963 Materials Science +1201.3967 Optimization and Control +1201.3976 Other Computer Science +1201.3978 Other Computer Science +1201.3980 Metric Geometry +1201.3981 Other Computer Science +1201.3982 Cryptography and Security +1201.3983 Probability +1201.3985 Software Engineering +1201.3987 Algebraic Topology +1201.3991 Number Theory +1201.3992 Atomic Physics +1201.3999 Differential Geometry +1201.4000 Astrophysics of Galaxies +1201.4002 Machine Learning +1201.4008 Dynamical Systems +1201.4009 Algebraic Geometry +1201.4013 Networking and Internet Architecture +1201.4016 Mesoscale and Nanoscale Physics +1201.4021 Combinatorics +1201.4023 Number Theory +1201.4024 Probability +1201.4028 High Energy Astrophysical Phenomena +1201.4032 Classical Analysis and ODEs +1201.4043 Solar and Stellar Astrophysics +1201.4044 Statistical Mechanics +1201.4051 Cosmology and Nongalactic Astrophysics +1201.4054 Information Theory +1201.4060 Computational Physics +1201.4068 Accelerator Physics +1201.4073 Analysis of PDEs +1201.4077 +1201.4080 Artificial Intelligence +1201.4082 Dynamical Systems +1201.4084 Materials Science +1201.4088 General Physics +1201.4092 +1201.4093 Combinatorics +1201.4094 Instrumentation and Detectors +1201.4096 Phenomenology +1201.4098 Probability +1201.4101 Phenomenology +1201.4105 Commutative Algebra +1201.4109 Information Theory +1201.4113 +1201.4115 Astrophysics of Galaxies +1201.4116 Information Theory +1201.4118 Applications +1201.4138 Combinatorics +1201.4139 Computer Vision and Pattern Recognition +1201.4140 Representation Theory +1201.4141 Dynamical Systems +1201.4142 Software Engineering +1201.4143 Theory +1201.4146 Materials Science +1201.4150 Networking and Internet Architecture +1201.4153 Combinatorics +1201.4155 Phenomenology +1201.4158 Differential Geometry +1201.4161 Number Theory +1201.4168 Accelerator Physics +alg-geom/9212002 Algebraic Geometry +alg-geom/9409006 Algebraic Geometry +cond-mat/0308034 Superconductivity +cond-mat/0601594 Mesoscale and Nanoscale Physics +cond-mat/9907417 Statistical Mechanics +hep-th/0703196 Theory +math/9804090 Operator Algebras +math/9804095 Differential Geometry +math/9906136 Differential Geometry +math/9908043 Number Theory +math/9912011 Classical Analysis and ODEs +quant-ph/9801039 +0705.1248 General Physics +0708.3743 General Physics +0712.4213 +0803.0924 Learning +0805.2692 Chemical Physics +0906.5506 Statistical Mechanics +0907.3199 Combinatorics +0912.3481 Optimization and Control +1001.2244 Optimization and Control +1002.0698 Algebraic Geometry +1002.3558 Astrophysics of Galaxies +1003.3164 Algebraic Geometry +1003.4797 Pricing of Securities +1006.2577 Differential Geometry +1006.2793 Complex Variables +1006.4234 Pattern Formation and Solitons +1009.4179 Instrumentation and Methods for Astrophysics +1009.5262 Algebraic Geometry +1009.5966 Adaptation and Self-Organizing Systems +1009.6109 Combinatorics +1010.0154 Analysis of PDEs +1010.2732 Optimization and Control +1010.3896 General Physics +1011.3928 Populations and Evolution +1011.4173 General Physics +1012.4256 Molecular Networks +1102.1079 Combinatorics +1102.1081 Algebraic Topology +1102.1886 Mesoscale and Nanoscale Physics +1102.2308 Mesoscale and Nanoscale Physics +1102.3273 Mesoscale and Nanoscale Physics +1103.2282 Representation Theory +1103.4974 +1105.4981 Algebraic Geometry +1105.6152 Classical Analysis and ODEs +1106.3718 Materials Science +1106.4515 Mesoscale and Nanoscale Physics +1106.5930 Combinatorics +1106.5936 Combinatorics +1107.3028 Cosmology and Nongalactic Astrophysics +1108.0181 Commutative Algebra +1108.1048 Representation Theory +1108.1780 Adaptation and Self-Organizing Systems +1109.0616 Digital Libraries +1109.0863 Genomics +1110.4288 Disordered Systems and Neural Networks +1110.4928 Materials Science +1110.5942 Logic in Computer Science +1111.1997 +1111.4950 Optics +1111.5123 Distributed, Parallel, and Cluster Computing +1111.6362 +1111.7005 Algebraic Geometry +1112.1733 Populations and Evolution +1112.3257 Information Theory +1112.3685 Geometric Topology +1112.5364 Quantum Gases +1201.1083 Adaptation and Self-Organizing Systems +1201.1455 Classical Analysis and ODEs +1201.2836 Mesoscale and Nanoscale Physics +1201.3064 Mesoscale and Nanoscale Physics +1201.3173 +1201.3287 +1201.3705 Algebraic Geometry +1201.6332 Analysis of PDEs +1201.6347 Strongly Correlated Electrons +1202.0860 +1202.2837 Mesoscale and Nanoscale Physics +1202.4111 Quantum Gases +1203.1808 Earth and Planetary Astrophysics +1203.2587 Probability +1203.2977 Superconductivity +1203.3077 Astrophysics of Galaxies +1203.3376 Artificial Intelligence +1203.3629 Mesoscale and Nanoscale Physics +1203.3835 Optics +1203.4984 K-Theory and Homology +1204.0277 Numerical Analysis +1204.0509 Materials Science +1204.2135 Analysis of PDEs +1204.2815 +1204.2849 Disordered Systems and Neural Networks +1204.2859 +1204.3541 Theory +1204.5154 Probability +1204.5777 Mesoscale and Nanoscale Physics +1204.6148 Probability +1205.0155 Materials Science +1205.4325 Phenomenology +1205.4850 Strongly Correlated Electrons +1205.6291 Soft Condensed Matter +1206.0939 Disordered Systems and Neural Networks +1206.1756 Superconductivity +1206.2572 Phenomenology +1206.2886 Dynamical Systems +1206.3700 Phenomenology +1206.3792 Classical Physics +1206.5189 +1206.5508 Dynamical Systems +1207.0578 Neural and Evolutionary Computing +1207.1080 Disordered Systems and Neural Networks +1207.1503 Cosmology and Nongalactic Astrophysics +1207.1655 +1207.1846 Phenomenology +1207.1877 Statistical Mechanics +1207.2670 +1207.4942 Mesoscale and Nanoscale Physics +1207.5498 Geometric Topology +1207.6046 Plasma Physics +1207.6459 +1207.6649 +1207.6835 Strongly Correlated Electrons +1207.6935 Superconductivity +1207.6936 Distributed, Parallel, and Cluster Computing +1208.0390 Phenomenology +1208.1792 +1208.2313 Materials Science +1208.2564 Mesoscale and Nanoscale Physics +1208.2927 Superconductivity +1208.3455 High Energy Astrophysical Phenomena +1208.4155 Optics +1208.4483 Spectral Theory +1208.4680 Strongly Correlated Electrons +1208.5172 Optimization and Control +1208.5678 Mesoscale and Nanoscale Physics +1208.6362 +1209.0385 +1209.0532 Information Theory +1209.0668 Geometric Topology +1209.0711 +1209.1110 Theory +1209.1383 Analysis of PDEs +1209.1632 High Energy Astrophysical Phenomena +1209.1773 Atomic Physics +1209.1964 Materials Science +1209.2107 Cosmology and Nongalactic Astrophysics +1209.2321 Materials Science +1209.4255 Cryptography and Security +1209.4411 Optics +1209.5196 +1209.5636 Experiment +1210.1393 Experiment +1210.1788 Analysis of PDEs +1210.1914 Solar and Stellar Astrophysics +1210.2258 Instrumentation and Methods for Astrophysics +1210.2297 Programming Languages +1210.2389 Classical Analysis and ODEs +1210.2401 Distributed, Parallel, and Cluster Computing +1210.2406 Information Theory +1210.2411 Probability +1210.2415 Probability +1210.2421 Robotics +1210.2424 Optics +1210.2425 Optics +1210.2426 Physics and Society +1210.2427 General Physics +1210.2428 Complex Variables +1210.2429 Cryptography and Security +1210.2431 Representation Theory +1210.2436 Mesoscale and Nanoscale Physics +1210.2439 +1210.2440 Statistics Theory +1210.2443 Probability +1210.2448 Formal Languages and Automata Theory +1210.2449 Systems and Control +1210.2450 Software Engineering +1210.2451 Logic in Computer Science +1210.2452 Formal Languages and Automata Theory +1210.2453 Databases +1210.2454 Formal Languages and Automata Theory +1210.2455 Logic in Computer Science +1210.2456 Formal Languages and Automata Theory +1210.2457 Logic in Computer Science +1210.2458 Computer Science and Game Theory +1210.2459 Computational Complexity +1210.2460 Formal Languages and Automata Theory +1210.2461 Logic in Computer Science +1210.2462 Formal Languages and Automata Theory +1210.2463 Formal Languages and Automata Theory +1210.2474 Computer Vision and Pattern Recognition +1210.2479 Logic in Computer Science +1210.2481 Logic in Computer Science +1210.2485 Other Computer Science +1210.2487 Group Theory +1210.2496 High Energy Astrophysical Phenomena +1210.2501 Exactly Solvable and Integrable Systems +1210.2502 Information Theory +1210.2503 Machine Learning +1210.2507 Solar and Stellar Astrophysics +1210.2510 Materials Science +1210.2511 Analysis of PDEs +1210.2513 Theory +1210.2514 Other Computer Science +1210.2515 Computational Engineering, Finance, and Science +1210.2529 Information Theory +1210.2532 Cosmology and Nongalactic Astrophysics +1210.2534 Fluid Dynamics +1210.2536 Mathematical Software +1210.2540 Combinatorics +1210.2541 Functional Analysis +1210.2543 Combinatorics +1210.2550 +1210.2553 Solar and Stellar Astrophysics +1210.2572 Phenomenology +1210.2575 Methodology +1210.2577 +1210.2580 Distributed, Parallel, and Cluster Computing +1210.2582 Information Theory +1210.2584 Data Structures and Algorithms +1210.2585 Theory +1210.2587 Data Structures and Algorithms +1210.2591 Fluid Dynamics +1210.2593 Superconductivity +1210.2597 Probability +1210.2600 Combinatorics +1210.2605 Logic in Computer Science +1210.2606 Materials Science +1210.2611 Probability +1210.2612 Soft Condensed Matter +1210.2615 Differential Geometry +1210.2617 Computational Finance +1210.2618 Combinatorics +1210.2621 Combinatorics +1210.2622 Mesoscale and Nanoscale Physics +1210.2623 Dynamical Systems +1210.2625 Statistical Mechanics +1210.2628 Phenomenology +1210.2635 High Energy Astrophysical Phenomena +1210.2638 +1210.2646 Computer Vision and Pattern Recognition +1210.2649 Cosmology and Nongalactic Astrophysics +1210.2653 Analysis of PDEs +1210.2657 Probability +1210.2658 Algebraic Geometry +1210.2660 Rings and Algebras +1210.2665 Data Structures and Algorithms +1210.2669 Analysis of PDEs +1210.2670 Algebraic Geometry +1210.2673 History and Overview +1210.2674 Probability +1210.2676 Geometric Topology +1210.2678 +1210.2680 Algebraic Geometry +1210.2682 Solar and Stellar Astrophysics +1210.2686 Geometric Topology +1210.2693 Phenomenology +1210.2694 Numerical Analysis +1210.2695 Geophysics +1210.2697 Dynamical Systems +1210.2698 Computational Complexity +1210.2699 Functional Analysis +1210.2700 Commutative Algebra +1210.2701 Combinatorics +1210.2703 Phenomenology +1210.2704 Information Theory +1210.2705 Combinatorics +1210.2707 Classical Physics +1210.2708 Instrumentation and Methods for Astrophysics +1210.2711 Strongly Correlated Electrons +cs/0605029 Computational Geometry +math/0605310 Number Theory +0704.3505 Mesoscale and Nanoscale Physics +0706.1663 +0711.0880 Geometric Topology +0712.1667 +0807.0400 Numerical Analysis +0807.2325 +0902.1494 Cosmology and Nongalactic Astrophysics +0907.1511 Theory +0912.2889 Probability +0912.3257 Cosmology and Nongalactic Astrophysics +0912.3929 Metric Geometry +1001.0969 Cosmology and Nongalactic Astrophysics +1002.2816 +1003.3053 Metric Geometry +1004.2708 Cosmology and Nongalactic Astrophysics +1005.0672 Number Theory +1006.0488 Cosmology and Nongalactic Astrophysics +1007.2647 Cosmology and Nongalactic Astrophysics +1008.4831 Probability +1010.1815 Algebraic Geometry +1011.0521 Soft Condensed Matter +1011.3020 +1011.3045 Cosmology and Nongalactic Astrophysics +1012.3615 Lattice +1012.4758 +1101.3562 Probability +1101.4230 Cosmology and Nongalactic Astrophysics +1101.4940 Cosmology and Nongalactic Astrophysics +1102.2874 Analysis of PDEs +1102.3426 Discrete Mathematics +1103.0711 Software Engineering +1103.6277 Materials Science +1104.3797 Cosmology and Nongalactic Astrophysics +1104.4595 Machine Learning +1105.2566 Phenomenology +1105.5424 +1105.6212 +1107.2758 Disordered Systems and Neural Networks +1107.5300 Computational Physics +1108.3039 Fluid Dynamics +1108.3086 Cosmology and Nongalactic Astrophysics +1108.5296 Superconductivity +1108.5455 Statistical Mechanics +1108.5902 +1109.1549 Probability +1109.2171 +1109.2713 Astrophysics of Galaxies +1109.5118 Biological Physics +1110.0461 Computational Complexity +1110.4636 Cosmology and Nongalactic Astrophysics +1110.4638 Cosmology and Nongalactic Astrophysics +1110.4721 Statistical Mechanics +1110.4879 Probability +1110.6516 Phenomenology +1110.6777 Optics +1111.0138 Quantum Gases +1111.1079 Quantum Gases +1111.2024 Optics +1111.2030 Cosmology and Nongalactic Astrophysics +1111.2668 Geometric Topology +1111.2800 +1111.4263 Algebraic Geometry +1111.4938 Phenomenology +1111.5597 Theory +1112.0887 Theory +1112.2693 Mesoscale and Nanoscale Physics +1112.3356 Theory +1112.3718 Quantum Gases +1112.4153 +1112.4837 Cosmology and Nongalactic Astrophysics +1201.0204 Statistical Mechanics +1201.3385 Atomic Physics +1201.3655 Superconductivity +1201.4126 Number Theory +1201.4449 Logic in Computer Science +1201.4892 Operator Algebras +1201.6308 Mesoscale and Nanoscale Physics +1202.2011 Phenomenology +1202.2770 Neural and Evolutionary Computing +1202.4060 Cosmology and Nongalactic Astrophysics +1202.4368 Algebraic Topology +1202.4662 +1202.5069 Theory +1202.5083 Quantum Gases +1202.5388 Statistical Mechanics +1203.1791 Chaotic Dynamics +1203.2873 Formal Languages and Automata Theory +1203.2906 Phenomenology +1203.3823 Cosmology and Nongalactic Astrophysics +1203.3864 Information Theory +1203.3941 Theory +1203.4746 Information Theory +1203.4753 Statistics Theory +1203.5443 Neural and Evolutionary Computing +1203.6314 Complex Variables +1204.0566 Learning +1204.2624 +1204.2704 Quantum Gases +1204.3034 Optimization and Control +1204.3179 Combinatorics +1204.3521 Representation Theory +1204.3583 Phenomenology +1204.3643 Cosmology and Nongalactic Astrophysics +1204.4885 Plasma Physics +1204.5210 Mesoscale and Nanoscale Physics +1205.0897 Experiment +1205.1019 Phenomenology +1205.2039 Dynamical Systems +1205.6335 Materials Science +1206.0330 +1206.0432 Theory +1206.1397 Dynamical Systems +1206.2507 +1206.2849 Combinatorics +1206.3073 Experiment +1206.3604 +1206.3979 Phenomenology +1206.4415 Representation Theory +1206.4560 Learning +1206.4599 Learning +1206.4600 Learning +1206.4601 Learning +1206.4602 Numerical Analysis +1206.4603 Information Retrieval +1206.4604 Learning +1206.4605 Data Structures and Algorithms +1206.4607 Learning +1206.4608 Learning +1206.4609 Computer Vision and Pattern Recognition +1206.4610 Learning +1206.4611 Learning +1206.4612 Learning +1206.4613 Artificial Intelligence +1206.4614 Learning +1206.4615 Methodology +1206.4616 Applications +1206.4617 Learning +1206.4618 Learning +1206.4620 Learning +1206.4621 Learning +1206.4622 Learning +1206.4623 Learning +1206.4624 Learning +1206.4625 Learning +1206.4626 Computational Engineering, Finance, and Science +1206.4627 Learning +1206.4628 Learning +1206.4629 Learning +1206.4630 Learning +1206.4632 Learning +1206.4633 Learning +1206.4635 Learning +1206.4636 Learning +1206.4637 Learning +1206.4638 Learning +1206.4639 Learning +1206.4640 Numerical Analysis +1206.4641 Learning +1206.4642 Data Structures and Algorithms +1206.4643 Learning +1206.4644 Learning +1206.4645 Learning +1206.4646 Learning +1206.4647 Learning +1206.4648 Learning +1206.4649 Learning +1206.4650 Learning +1206.4651 Learning +1206.4652 Learning +1206.4653 Learning +1206.4654 Artificial Intelligence +1206.4655 Learning +1206.4656 Learning +1206.4657 Learning +1206.4658 Learning +1206.4659 Learning +1206.4660 Learning +1206.4661 Learning +1206.4662 Cryptography and Security +1206.4663 Learning +1206.4664 Learning +1206.4665 Learning +1206.4666 Computation +1206.4668 Learning +1206.4669 Learning +1206.4670 Information Theory +1206.4671 Learning +1206.4672 Learning +1206.4673 Learning +1206.4674 Learning +1206.4675 Cryptography and Security +1206.4676 Learning +1206.4677 Learning +1206.4678 Learning +1206.4679 Learning +1206.4680 Learning +1206.4681 Learning +1206.4682 Learning +1206.4683 Learning +1206.4684 Information Retrieval +1206.4685 Methodology +1206.4686 Learning +1206.4687 Information Theory +1206.4691 Metric Geometry +1206.4708 General Literature +1206.4711 Phenomenology +1206.4712 Classical Analysis and ODEs +1206.4717 Other Computer Science +1206.4726 Analysis of PDEs +1206.4731 Combinatorics +1206.4737 Classical Analysis and ODEs +1206.4741 Geometric Topology +1206.4742 Dynamical Systems +1206.4744 Geometric Topology +1206.4749 Functional Analysis +1206.4750 Geometric Topology +1206.4752 Functional Analysis +1206.4761 Mesoscale and Nanoscale Physics +1206.4764 +1206.4765 Statistics Theory +1206.4768 Statistics Theory +1206.4769 Statistics Theory +1206.4770 Statistics Theory +1206.4771 Computer Science and Game Theory +1206.4776 Mesoscale and Nanoscale Physics +1206.4781 Physics and Society +1206.4782 Mesoscale and Nanoscale Physics +1206.4784 Optimization and Control +1206.4790 Geometric Topology +1206.4791 Superconductivity +1206.4794 Theory +1206.4799 Probability +1206.4802 Information Retrieval +1206.4804 Computational Finance +1206.4805 Data Analysis, Statistics and Probability +1206.4810 Trading and Market Microstructure +1206.4811 Statistical Mechanics +1206.4814 Classical Analysis and ODEs +1206.4815 Biological Physics +1206.4816 Biological Physics +1206.4817 Strongly Correlated Electrons +1206.4820 Statistical Mechanics +1206.4823 +1206.4825 Combinatorics +1206.4827 Combinatorics +1206.4830 Strongly Correlated Electrons +1206.4831 Analysis of PDEs +1206.4833 Logic in Computer Science +1206.4839 Functional Analysis +1206.4847 +1206.4848 Functional Analysis +1206.4862 Neurons and Cognition +1206.4863 Digital Libraries +1206.4864 Combinatorics +1206.4866 Computer Vision and Pattern Recognition +1206.4868 Functional Analysis +1206.4871 Phenomenology +1206.4872 +1206.4873 Phenomenology +1206.4874 Accelerator Physics +1206.4876 Accelerator Physics +1206.4880 Computer Vision and Pattern Recognition +1206.4883 Information Retrieval +1206.4885 Combinatorics +1206.4886 +1206.4889 Solar and Stellar Astrophysics +1206.4894 +1206.4897 Optimization and Control +1206.4898 Data Structures and Algorithms +1206.4899 Classical Analysis and ODEs +1206.4900 Applications +1206.4903 Probability +1206.4914 Information Theory +1206.4916 Theory +1206.4917 Pricing of Securities +1206.4919 Cosmology and Nongalactic Astrophysics +1206.4923 Algebraic Geometry +1206.4929 Differential Geometry +1206.4932 +1206.4947 Number Theory +1206.4951 Number Theory +1206.4952 Social and Information Networks +1206.4953 Geometric Topology +1206.4954 Dynamical Systems +1206.4955 Computer Science and Game Theory +1206.4958 Information Retrieval +1206.4960 Optics +1206.4964 Probability +1206.4967 Materials Science +1206.4970 Operator Algebras +1206.4973 Distributed, Parallel, and Cluster Computing +1206.4975 Probability +1206.4978 Disordered Systems and Neural Networks +1206.4979 Number Theory +1206.4982 Group Theory +1206.4983 Probability +1206.4984 Quantum Gases +1206.4989 Disordered Systems and Neural Networks +1206.4990 Dynamical Systems +1206.4996 High Energy Astrophysical Phenomena +astro-ph/0407111 +cond-mat/0106484 Mesoscale and Nanoscale Physics +math/0412275 Geometric Topology +math/0604605 Geometric Topology +quant-ph/0608018 +1104.0866 Fluid Dynamics +1106.2276 Lattice +1110.2303 Theory +1203.1456 +1205.4992 +hep-th/9111052 Theory +0706.0700 Superconductivity +0710.1262 Geometric Topology +0712.3748 Rings and Algebras +0808.1001 Applications +0904.0513 Soft Condensed Matter +0905.3215 Superconductivity +0906.0993 Cosmology and Nongalactic Astrophysics +0906.2112 Algebraic Geometry +0910.0069 Probability +0912.0817 Solar and Stellar Astrophysics +1001.1611 Differential Geometry +1004.1135 Soft Condensed Matter +1004.2657 Differential Geometry +1005.4492 Combinatorics +1005.4876 +1009.5132 Theory +1009.6054 Differential Geometry +1011.0266 Probability +1012.4458 Cosmology and Nongalactic Astrophysics +1102.0749 Logic in Computer Science +1102.3495 Information Theory +1103.5605 Probability +1104.1786 Differential Geometry +1105.0388 Probability +1105.1826 +1106.0013 Strongly Correlated Electrons +1106.3494 Theory +1107.0009 High Energy Astrophysical Phenomena +1107.0351 Superconductivity +1108.2619 Theory +1108.3076 Mesoscale and Nanoscale Physics +1108.4390 Theory +1108.5718 Phenomenology +1109.0272 Experiment +1109.0398 Plasma Physics +1109.0740 +1109.4820 Cosmology and Nongalactic Astrophysics +1109.5022 Statistical Mechanics +1109.5132 Probability +1110.1328 Databases +1110.3542 Astrophysics of Galaxies +1110.3843 Social and Information Networks +1110.4270 Mesoscale and Nanoscale Physics +1111.0107 Physics and Society +1111.0538 Symplectic Geometry +1111.1578 Combinatorics +1111.2564 Strongly Correlated Electrons +1111.3322 Lattice +1111.3417 Geometric Topology +1111.5786 Classical Analysis and ODEs +1112.1216 Strongly Correlated Electrons +1112.2743 Mesoscale and Nanoscale Physics +1112.6021 Phenomenology +1201.0543 Materials Science +1201.1983 Strongly Correlated Electrons +1201.3175 Mesoscale and Nanoscale Physics +1201.5318 +1201.5390 High Energy Astrophysical Phenomena +1201.6378 Mesoscale and Nanoscale Physics +1202.0673 Soft Condensed Matter +1202.1035 Astrophysics of Galaxies +1202.2748 +1202.2758 Chaotic Dynamics +1202.2763 Quantum Gases +1202.3043 Soft Condensed Matter +1202.4727 Mesoscale and Nanoscale Physics +1202.5592 Phenomenology +1202.6075 Phenomenology +1202.6422 Phenomenology +1203.0026 Cosmology and Nongalactic Astrophysics +1203.0336 Optics +1203.0676 Analysis of PDEs +1203.1010 Chaotic Dynamics +1203.2130 Soft Condensed Matter +1203.2505 Data Structures and Algorithms +1203.5787 Solar and Stellar Astrophysics +1203.6074 Cellular Automata and Lattice Gases +1203.6078 Earth and Planetary Astrophysics +1203.6079 Astrophysics of Galaxies +1203.6080 General Topology +1203.6086 Logic +1203.6093 Physics and Society +1203.6095 Dynamical Systems +1203.6096 Distributed, Parallel, and Cluster Computing +1203.6098 Social and Information Networks +1203.6101 Cosmology and Nongalactic Astrophysics +1203.6102 Programming Languages +1203.6111 Combinatorics +1203.6112 High Energy Astrophysical Phenomena +1203.6113 Differential Geometry +1203.6116 Mesoscale and Nanoscale Physics +1203.6123 +1203.6130 Machine Learning +1203.6131 Networking and Internet Architecture +1203.6136 Computation and Language +1203.6140 Applications +1203.6143 Combinatorics +1203.6147 Functional Analysis +1203.6152 Logic in Computer Science +1203.6154 Medical Physics +1203.6155 Medical Physics +1203.6157 Logic in Computer Science +1203.6158 Logic in Computer Science +1203.6159 Logic in Computer Science +1203.6160 Logic in Computer Science +1203.6161 Computational Complexity +1203.6164 +1203.6165 Phenomenology +1203.6169 Metric Geometry +1203.6172 Combinatorics +1203.6173 +1203.6177 Discrete Mathematics +1203.6183 Numerical Analysis +1203.6189 Solar and Stellar Astrophysics +1203.6192 Phenomenology +1203.6197 +1203.6199 Astrophysics of Galaxies +1203.6200 +1203.6204 +1203.6206 Analysis of PDEs +1203.6210 Group Theory +1203.6214 Cryptography and Security +1203.6217 Differential Geometry +1203.6218 Phenomenology +1203.6220 Materials Science +1203.6242 +1203.6244 Complex Variables +1203.6248 Cosmology and Nongalactic Astrophysics +1203.6249 Other Statistics +1203.6253 Combinatorics +1203.6257 Soft Condensed Matter +1203.6259 +1203.6266 Computational Geometry +1203.6269 Cosmology and Nongalactic Astrophysics +1203.6270 Solar and Stellar Astrophysics +1203.6271 Instrumentation and Methods for Astrophysics +1203.6273 Materials Science +1203.6274 Data Structures and Algorithms +1203.6277 Theory +1203.6278 Logic in Computer Science +1203.6279 Functional Analysis +1203.6280 +1203.6288 Number Theory +1203.6292 Quantum Gases +1203.6293 Mesoscale and Nanoscale Physics +1203.6296 Mesoscale and Nanoscale Physics +1203.6303 Analysis of PDEs +1203.6311 Analysis of PDEs +1203.6318 Information Theory +1203.6320 Information Theory +1203.6324 Logic in Computer Science +1203.6327 Number Theory +1203.6328 Number Theory +1203.6339 Human-Computer Interaction +1203.6344 Number Theory +astro-ph/0612759 +cond-mat/0607021 Superconductivity +nlin/0302064 Exactly Solvable and Integrable Systems +0709.3609 +0806.3056 Algebraic Geometry +0806.3463 Number Theory +0808.1177 Probability +0809.2135 General Mathematics +0811.2646 Superconductivity +0812.3039 Superconductivity +0903.2388 Probability +0905.0936 Differential Geometry +0910.0989 Algebraic Geometry +0910.2930 +0911.5468 Algebraic Geometry +0912.2945 Mesoscale and Nanoscale Physics +0912.4613 Networking and Internet Architecture +1001.3706 Cosmology and Nongalactic Astrophysics +1002.2852 Classical Analysis and ODEs +1002.3179 Materials Science +1002.3957 Dynamical Systems +1002.4669 Differential Geometry +1003.3358 Phenomenology +1004.4039 Lattice +1004.4161 Operator Algebras +1004.5333 Phenomenology +1005.0142 Classical Analysis and ODEs +1005.1131 Lattice +1005.2622 Phenomenology +1005.2676 Phenomenology +1006.0758 Mathematical Software +1007.2413 Strongly Correlated Electrons +1008.1736 Combinatorics +1008.2742 Atmospheric and Oceanic Physics +1008.3662 Number Theory +1010.0665 Algebraic Geometry +1010.5165 Logic +1011.1089 Superconductivity +1011.1709 Materials Science +1011.4697 Classical Analysis and ODEs +1011.6626 Logic +1012.0143 Strongly Correlated Electrons +1012.0301 Theory +1012.1738 +1101.4129 +1102.0915 +1102.1501 Analysis of PDEs +1103.1217 Algebraic Geometry +1103.3262 Number Theory +1104.1401 Space Physics +1104.2378 General Physics +1104.4374 Solar and Stellar Astrophysics +1105.4455 Theory +1105.5019 High Energy Astrophysical Phenomena +1106.0287 Operator Algebras +1106.1960 Statistical Mechanics +1106.2470 Logic +1106.4792 Materials Science +1106.5713 +1106.6128 Strongly Correlated Electrons +1107.0550 Computer Vision and Pattern Recognition +1107.0759 General Physics +1107.2525 +1107.3110 Theory +1107.3447 +1107.4116 Strongly Correlated Electrons +1107.4125 Strongly Correlated Electrons +1107.4965 Information Theory +1107.5075 Functional Analysis +1108.0873 Probability +1108.1222 Strongly Correlated Electrons +1108.2630 Phenomenology +1109.0042 Theory +1109.1017 Experiment +1109.1223 Lattice +1109.1323 Soft Condensed Matter +1109.3378 Logic +1109.3393 Phenomenology +1109.3676 Probability +1109.4543 Exactly Solvable and Integrable Systems +1109.6167 Probability +1109.6298 Theory +1110.1575 +1110.2186 Physics and Society +1110.3253 Mesoscale and Nanoscale Physics +1110.4529 Mesoscale and Nanoscale Physics +1110.5036 Functional Analysis +1110.6659 Materials Science +1111.0888 Cosmology and Nongalactic Astrophysics +1111.1147 Materials Science +1111.3598 +1112.4415 +1201.1441 Theory +1201.2074 Cryptography and Security +1201.2326 Atomic Physics +1201.2618 Astrophysics of Galaxies +1201.2714 +1201.3873 Functional Analysis +1201.3905 Phenomenology +1201.4556 +1201.4642 Computers and Society +1201.4644 Spectral Theory +1201.4648 Accelerator Physics +1201.4755 Optics +1201.4797 Geometric Topology +1201.4867 +1201.4870 +1201.4874 +1201.4881 Algebraic Geometry +1201.4882 Cosmology and Nongalactic Astrophysics +1201.4886 Numerical Analysis +1201.4896 Adaptation and Self-Organizing Systems +1201.4900 Materials Science +1201.4903 Numerical Analysis +1201.4905 Group Theory +1201.4906 Networking and Internet Architecture +1201.4908 Neural and Evolutionary Computing +1201.4911 Algebraic Geometry +1201.4912 Combinatorics +1201.4914 Computational Engineering, Finance, and Science +1201.4915 Classical Analysis and ODEs +1201.4917 Algebraic Topology +1201.4923 Chaotic Dynamics +1201.4939 Materials Science +1201.4940 Materials Science +1201.4943 Networking and Internet Architecture +1201.4944 Complex Variables +1201.4945 +1201.4946 Networking and Internet Architecture +1201.4958 K-Theory and Homology +1201.4963 +1201.4968 Algebraic Geometry +1201.4969 Statistical Mechanics +1201.4971 Analysis of PDEs +1201.4973 Solar and Stellar Astrophysics +1201.4976 Experiment +1201.4979 +1201.4985 +1201.4987 Neurons and Cognition +1201.4991 Differential Geometry +1201.5002 Analysis of PDEs +1201.5004 +1201.5006 +1201.5009 Other Computer Science +1201.5011 Statistical Mechanics +1201.5016 Complex Variables +1201.5018 Cosmology and Nongalactic Astrophysics +1201.5022 Strongly Correlated Electrons +1201.5024 +1201.5037 Combinatorics +1201.5043 Rings and Algebras +1201.5046 Applications +1201.5055 Numerical Analysis +1201.5057 Theory +1201.5059 Number Theory +1201.5065 Numerical Analysis +1201.5070 Logic in Computer Science +1201.5072 Mesoscale and Nanoscale Physics +1201.5074 Differential Geometry +1201.5080 +1201.5081 Rings and Algebras +1201.5082 Quantitative Methods +1201.5083 Rings and Algebras +1201.5088 Number Theory +1201.5094 Atomic Physics +1201.5095 Materials Science +1201.5102 Digital Libraries +1201.5104 Atomic and Molecular Clusters +1201.5110 Accelerator Physics +cond-mat/0006164 Strongly Correlated Electrons +cond-mat/0201465 Mesoscale and Nanoscale Physics +cond-mat/0203122 Superconductivity +cond-mat/0205193 Strongly Correlated Electrons +cond-mat/0206383 Disordered Systems and Neural Networks +cond-mat/0210460 Statistical Mechanics +cond-mat/0210674 Statistical Mechanics +cond-mat/0211479 Statistical Mechanics +cond-mat/0504111 Other Condensed Matter +cond-mat/9803113 Superconductivity +cond-mat/9807362 Statistical Mechanics +cond-mat/9904245 Mesoscale and Nanoscale Physics +gr-qc/0703018 +hep-th/0201129 Theory +hep-th/0606194 Theory +math/0211279 Commutative Algebra +math/0307280 Combinatorics +math/0308202 Number Theory +math/0401373 Combinatorics +math/0402418 Commutative Algebra +math/0405247 Commutative Algebra +math/0502344 Algebraic Geometry +0707.2405 Differential Geometry +0707.3062 Number Theory +0709.1570 Number Theory +0710.2424 Number Theory +0711.4898 Number Theory +0712.2365 Number Theory +0801.1451 Number Theory +0802.0430 Strongly Correlated Electrons +0803.2483 Number Theory +0805.4008 Strongly Correlated Electrons +0807.2660 Materials Science +0810.5496 Number Theory +0812.0355 General Physics +0812.0939 Statistical Mechanics +0904.0941 Instrumentation and Methods for Astrophysics +0906.5191 Differential Geometry +0907.5323 Number Theory +0908.3780 +0911.2958 Differential Geometry +1002.0790 Operator Algebras +1002.1379 High Energy Astrophysical Phenomena +1002.3760 Theory +1003.4767 +1004.1866 Analysis of PDEs +1004.3892 +1004.4543 Symplectic Geometry +1005.1786 Theory +1006.4997 Theory +1007.2520 Metric Geometry +1008.3105 Experiment +1009.5797 Classical Analysis and ODEs +1010.2149 Analysis of PDEs +1011.2696 Lattice +1011.2956 Number Theory +1011.3236 Algebraic Geometry +1012.1978 Chaotic Dynamics +1012.4953 Theory +1101.5818 Mesoscale and Nanoscale Physics +1102.2849 Probability +1105.2117 Strongly Correlated Electrons +1105.5042 Theory +1107.3351 Applications +1108.3922 Theory +1109.0079 +1109.1125 Combinatorics +1110.0555 +1110.0708 Number Theory +1110.1159 Strongly Correlated Electrons +1110.3009 Differential Geometry +1110.4590 Number Theory +1110.6093 +1110.6873 +1111.0932 Cosmology and Nongalactic Astrophysics +1111.2804 Number Theory +1111.3559 +1111.6094 Functional Analysis +1111.6800 Number Theory +1112.0422 Theory +1112.1992 Disordered Systems and Neural Networks +1112.2808 Experiment +1112.4724 Analysis of PDEs +1112.5195 Atomic Physics +1112.5310 Experiment +1201.0084 Theory +1201.0350 Biological Physics +1201.2793 Chaotic Dynamics +1201.4633 Mesoscale and Nanoscale Physics +1201.5369 Strongly Correlated Electrons +1201.6244 Mesoscale and Nanoscale Physics +1202.1635 Dynamical Systems +1202.2169 Machine Learning +1202.4820 Strongly Correlated Electrons +1202.5775 Quantum Gases +1203.1216 Materials Science +1203.1498 +1203.4054 Distributed, Parallel, and Cluster Computing +1203.4498 +1203.5331 Phenomenology +1204.0334 Information Theory +1204.1735 Phenomenology +1204.1737 Phenomenology +1204.1968 Theory +1204.2197 +1204.2528 Optics +1204.2554 Cosmology and Nongalactic Astrophysics +1204.2682 Superconductivity +1204.3719 Information Theory +1204.3863 Populations and Evolution +1204.4604 +1204.4713 +1204.5425 Phenomenology +1205.1737 Hardware Architecture +1205.2462 Mesoscale and Nanoscale Physics +1205.2825 Physics and Society +1205.4956 Theory +1205.6285 Symbolic Computation +1205.6763 +1205.6866 Rings and Algebras +1206.0565 Phenomenology +1206.1543 Mesoscale and Nanoscale Physics +1206.2436 Computational Complexity +1207.0169 Logic +1207.0190 Differential Geometry +1207.0551 Optics +1207.0761 Phenomenology +1207.2142 Combinatorics +1207.2924 +1207.3870 Materials Science +1207.4388 Materials Science +1207.5145 Biological Physics +1207.5721 Physics and Society +1207.5774 Computer Vision and Pattern Recognition +1207.6003 History and Philosophy of Physics +1207.6164 Computers and Society +1207.6378 +1207.6397 Solar and Stellar Astrophysics +1207.6403 Cosmology and Nongalactic Astrophysics +1207.6413 Accelerator Physics +1207.6417 Solar and Stellar Astrophysics +1207.6418 Solar and Stellar Astrophysics +1207.6420 Phenomenology +1207.6423 Trading and Market Microstructure +1207.6428 Physics and Society +1207.6433 Statistical Mechanics +1207.6438 Information Theory +1207.6445 Computational Engineering, Finance, and Science +1207.6448 Databases +1207.6450 Differential Geometry +1207.6452 Computational Geometry +1207.6455 Astrophysics of Galaxies +1207.6456 Strongly Correlated Electrons +1207.6458 Complex Variables +1207.6463 Algebraic Geometry +1207.6464 Probability +1207.6467 +1207.6468 Differential Geometry +1207.6471 Phenomenology +1207.6473 Functional Analysis +1207.6474 Computational Geometry +1207.6482 Optics +1207.6483 Probability +1207.6486 Superconductivity +1207.6490 Optimization and Control +1207.6494 +1207.6495 Complex Variables +1207.6496 Mesoscale and Nanoscale Physics +1207.6497 +1207.6504 Applications +1207.6510 Differential Geometry +1207.6514 Artificial Intelligence +1207.6516 +1207.6521 Phenomenology +1207.6533 Phenomenology +1207.6535 Analysis of PDEs +1207.6540 Information Theory +1207.6541 Programming Languages +1207.6555 +1207.6560 Databases +1207.6565 Materials Science +1207.6570 Space Physics +1207.6574 Theory +1207.6575 Computational Physics +1207.6576 Fluid Dynamics +1207.6585 Materials Science +1207.6593 Mesoscale and Nanoscale Physics +1207.6603 Networking and Internet Architecture +1207.6606 Methodology +1207.6610 Classical Analysis and ODEs +1207.6612 Combinatorics +1207.6617 Optimization and Control +1207.6621 Accelerator Physics +1207.6622 Logic +1207.6623 Analysis of PDEs +1207.6624 +1207.6628 Optimization and Control +1207.6629 +1207.6630 Networking and Internet Architecture +astro-ph/0010221 +astro-ph/9608097 +astro-ph/9904406 +chao-dyn/9903006 Chaotic Dynamics +chao-dyn/9905034 Chaotic Dynamics +cond-mat/9906223 Materials Science +hep-ex/0103041 Experiment +hep-ex/0103047 Experiment +hep-ph/0509021 Phenomenology +hep-ph/0603193 Phenomenology +math/0610286 Number Theory +math/0703925 Number Theory +nlin/0007030 Chaotic Dynamics +nucl-th/0009088 +physics/0012025 General Physics +physics/9805028 General Physics +physics/9906059 General Physics +0705.2160 Algebraic Geometry +0708.3136 Atmospheric and Oceanic Physics +0709.1730 Mesoscale and Nanoscale Physics +0802.0453 +0901.0716 Cosmology and Nongalactic Astrophysics +0902.3220 Group Theory +0907.4465 +1002.4361 Combinatorics +1004.0880 Theory +1005.2083 +1006.2299 Theory +1006.2575 Geometric Topology +1008.3686 Theory +1009.2013 +1009.5348 Mesoscale and Nanoscale Physics +1009.5561 Theory +1011.4687 Computational Physics +1012.3219 Representation Theory +1101.1790 Chemical Physics +1101.5227 Computational Complexity +1102.4608 Theory +1103.1704 Algebraic Geometry +1103.4951 Statistics Theory +1105.3890 Phenomenology +1105.4398 Rings and Algebras +1106.3180 Geometric Topology +1106.5858 Probability +1107.1924 Superconductivity +1107.2321 Number Theory +1107.2494 Commutative Algebra +1107.2509 Data Structures and Algorithms +1107.3023 Theory +1107.3446 Classical Physics +1108.3217 Mesoscale and Nanoscale Physics +1109.1158 Materials Science +1109.1537 Superconductivity +1109.3719 Strongly Correlated Electrons +1109.3893 Data Structures and Algorithms +1110.1339 +1110.2775 +1110.4919 Logic +1111.2034 Phenomenology +1111.2037 +1111.3657 Strongly Correlated Electrons +1111.6302 Superconductivity +1111.6417 Astrophysics of Galaxies +1111.6949 Phenomenology +1112.1617 Geometric Topology +1112.2250 Other Computer Science +1112.2301 General Physics +1112.2422 Theory +1112.5698 Materials Science +1112.6086 Phenomenology +1112.6097 Geometric Topology +1201.1115 Atomic Physics +1201.3614 Cosmology and Nongalactic Astrophysics +1201.4103 Theory +1201.4288 Chaotic Dynamics +1201.4759 +1201.5917 Materials Science +1202.0177 Strongly Correlated Electrons +1202.0706 Probability +1202.1186 Distributed, Parallel, and Cluster Computing +1202.2158 Human-Computer Interaction +1202.3814 Instrumentation and Methods for Astrophysics +1202.4258 Phenomenology +1202.5885 Data Structures and Algorithms +1203.1720 Combinatorics +1203.4379 +1203.4937 Strongly Correlated Electrons +1203.5027 Solar and Stellar Astrophysics +1204.0321 Probability +1204.0593 Data Analysis, Statistics and Probability +1204.0914 Popular Physics +1204.0982 Data Structures and Algorithms +1204.1023 Solar and Stellar Astrophysics +1204.1050 +1204.1069 Systems and Control +1204.1071 +1204.1074 Cosmology and Nongalactic Astrophysics +1204.1078 Classical Analysis and ODEs +1204.1080 Systems and Control +1204.1089 Instrumentation and Methods for Astrophysics +1204.1090 Functional Analysis +1204.1094 Neurons and Cognition +1204.1095 Analysis of PDEs +1204.1096 Information Theory +1204.1097 Analysis of PDEs +1204.1104 Probability +1204.1105 Experiment +1204.1106 Optimization and Control +1204.1112 Spectral Theory +1204.1114 Statistical Mechanics +1204.1116 Earth and Planetary Astrophysics +1204.1118 Representation Theory +1204.1122 +1204.1123 Exactly Solvable and Integrable Systems +1204.1126 Numerical Analysis +1204.1127 Functional Analysis +1204.1134 Logic +1204.1137 Medical Physics +1204.1138 Materials Science +1204.1140 Cryptography and Security +1204.1141 Combinatorics +1204.1143 Differential Geometry +1204.1146 Number Theory +1204.1147 Programming Languages +1204.1148 Solar and Stellar Astrophysics +1204.1149 Probability +1204.1156 Systems and Control +1204.1157 Statistical Mechanics +1204.1160 Physics and Society +1204.1162 Information Retrieval +1204.1169 Other Computer Science +1204.1172 Information Theory +1204.1176 Astrophysics of Galaxies +1204.1177 Computer Vision and Pattern Recognition +1204.1178 Networking and Internet Architecture +1204.1179 Hardware Architecture +1204.1181 Theory +1204.1184 Combinatorics +1204.1185 Databases +1204.1186 Algebraic Geometry +1204.1187 Numerical Analysis +1204.1195 Theory +1204.1198 Computer Vision and Pattern Recognition +1204.1201 Networking and Internet Architecture +1204.1203 Astrophysics of Galaxies +1204.1206 Networking and Internet Architecture +1204.1207 Networking and Internet Architecture +1204.1215 Data Structures and Algorithms +1204.1221 Theory +1204.1222 High Energy Astrophysical Phenomena +1204.1224 +1204.1225 Distributed, Parallel, and Cluster Computing +1204.1232 Software Engineering +1204.1234 Probability +1204.1241 Networking and Internet Architecture +1204.1242 Functional Analysis +1204.1243 Networking and Internet Architecture +1204.1245 Networking and Internet Architecture +1204.1248 Probability +1204.1249 Phenomenology +1204.1256 Quantum Gases +1204.1267 High Energy Astrophysical Phenomena +1204.1268 Differential Geometry +1204.1277 Artificial Intelligence +1204.1282 Dynamical Systems +1204.1283 Combinatorics +1204.1288 +1204.1292 Number Theory +1204.1294 Number Theory +1204.1296 Cryptography and Security +1204.1298 Symbolic Computation +1204.1300 Number Theory +1204.1303 Methodology +1204.1308 Differential Geometry +1204.1315 Number Theory +1204.1328 Number Theory +math-ph/0511033 +math/0103164 Algebraic Geometry +math/0403260 Algebraic Geometry +math/0607580 Algebraic Geometry +physics/9706033 General Physics +0705.4299 Number Theory +0706.2225 +0707.4610 Classical Analysis and ODEs +0803.4334 Spectral Theory +0804.1217 +0903.5287 Geometric Topology +0907.0580 Phenomenology +0910.5074 Phenomenology +0912.4213 Combinatorics +1001.3630 Number Theory +1002.4393 Phenomenology +1004.2182 Probability +1004.2737 Symplectic Geometry +1008.3201 Complex Variables +1009.4239 Probability +1010.0075 +1010.1312 High Energy Astrophysical Phenomena +1011.3634 Spectral Theory +1011.3790 Classical Analysis and ODEs +1101.0866 High Energy Astrophysical Phenomena +1101.2225 Subcellular Processes +1101.4837 Analysis of PDEs +1102.5141 Biomolecules +1103.1715 Classical Analysis and ODEs +1103.2021 Statistics Theory +1104.2036 General Physics +1104.4556 Commutative Algebra +1104.5109 Probability +1105.1463 Cosmology and Nongalactic Astrophysics +1106.2254 +1106.2986 Combinatorics +1107.3860 Atomic Physics +1107.4373 Combinatorics +1108.0424 Theory +1109.0460 Phenomenology +1109.1634 Combinatorics +1109.5661 +1109.6510 Information Theory +1110.0118 Strongly Correlated Electrons +1111.0853 +1111.4931 Phenomenology +1111.5907 Theory +1111.5969 Mesoscale and Nanoscale Physics +1111.6033 Atomic Physics +1112.0644 Instrumentation and Methods for Astrophysics +1112.0911 Mesoscale and Nanoscale Physics +1112.0913 Mesoscale and Nanoscale Physics +1112.1525 +1112.4327 Numerical Analysis +1112.4762 Cosmology and Nongalactic Astrophysics +1112.6054 +1201.0930 Algebraic Geometry +1201.1752 Statistical Mechanics +1201.1895 High Energy Astrophysical Phenomena +1201.2533 Mesoscale and Nanoscale Physics +1201.4243 Cryptography and Security +1201.4357 Commutative Algebra +1201.4670 +1201.5852 Cosmology and Nongalactic Astrophysics +1201.6295 Mesoscale and Nanoscale Physics +1202.0802 Complex Variables +1202.1043 Theory +1202.1423 Strongly Correlated Electrons +1202.1932 Strongly Correlated Electrons +1202.1942 Classical Physics +1202.2141 +1202.3060 Theory +1202.3069 Astrophysics of Galaxies +1202.3591 Mesoscale and Nanoscale Physics +1202.3793 +1202.4529 Statistical Mechanics +1202.5532 Strongly Correlated Electrons +1202.5616 Chaotic Dynamics +1203.1109 Phenomenology +1203.1463 Cryptography and Security +1203.2803 Materials Science +1203.4447 Statistical Mechanics +1203.5968 Statistical Mechanics +1204.0209 Differential Geometry +1204.1136 Data Structures and Algorithms +1204.1204 Computational Physics +1204.1205 Computational Physics +1204.1261 Phenomenology +1204.1605 Statistics Theory +1204.2272 Cosmology and Nongalactic Astrophysics +1204.2694 Fluid Dynamics +1204.2902 Phenomenology +1204.3453 Computers and Society +1204.3948 High Energy Astrophysical Phenomena +1204.4407 Theory +1204.5527 +1204.6149 +1204.6348 Superconductivity +1204.6627 Theory +1205.0389 Theory +1205.1102 Software Engineering +1205.2871 Cosmology and Nongalactic Astrophysics +1205.3693 Mesoscale and Nanoscale Physics +1205.4300 Statistical Mechanics +1205.4422 Differential Geometry +1205.6268 +1206.0947 +1206.3662 Theory +1206.4756 Quantum Gases +1206.5017 Probability +1206.6509 Earth and Planetary Astrophysics +1207.0283 Materials Science +1207.0455 Strongly Correlated Electrons +1207.1024 Probability +1207.1257 Logic in Computer Science +1207.1507 +1207.1832 Artificial Intelligence +1207.1863 Materials Science +1207.1964 Analysis of PDEs +1207.1966 Statistical Mechanics +1207.2149 Cosmology and Nongalactic Astrophysics +1207.2162 Chaotic Dynamics +1207.2165 Solar and Stellar Astrophysics +1207.2170 History and Overview +1207.2178 Combinatorics +1207.2185 Materials Science +1207.2188 +1207.2190 +1207.2191 +1207.2193 Phenomenology +1207.2208 +1207.2209 Statistical Mechanics +1207.2211 Information Theory +1207.2212 Classical Analysis and ODEs +1207.2220 Analysis of PDEs +1207.2222 Biological Physics +1207.2223 Lattice +1207.2224 Biological Physics +1207.2234 Software Engineering +1207.2235 Multiagent Systems +1207.2236 Software Engineering +1207.2237 Software Engineering +1207.2240 Networking and Internet Architecture +1207.2242 Quantitative Methods +1207.2243 Symbolic Computation +1207.2244 Quantum Algebra +1207.2245 Strongly Correlated Electrons +1207.2248 Functional Analysis +1207.2250 Quantum Algebra +1207.2253 Optimization and Control +1207.2254 Computational Engineering, Finance, and Science +1207.2255 Adaptation and Self-Organizing Systems +1207.2257 Differential Geometry +1207.2264 Populations and Evolution +1207.2265 Computation and Language +1207.2268 Multimedia +1207.2269 Optics +1207.2270 Probability +1207.2278 +1207.2279 Atmospheric and Oceanic Physics +1207.2280 Computers and Society +1207.2281 Probability +1207.2282 Algebraic Geometry +1207.2283 Numerical Analysis +1207.2287 Analysis of PDEs +1207.2291 Mathematical Software +1207.2300 Mathematical Software +1207.2303 Analysis of PDEs +1207.2306 Geophysics +1207.2313 Quantum Algebra +1207.2317 Data Structures and Algorithms +1207.2320 Optimization and Control +1207.2322 Rings and Algebras +1207.2323 +1207.2324 Other Condensed Matter +1207.2327 Functional Analysis +1207.2330 Phenomenology +1207.2331 Mesoscale and Nanoscale Physics +1207.2332 Geophysics +1207.2336 Formal Languages and Automata Theory +1207.2337 +1207.2341 Data Structures and Algorithms +1207.2345 Discrete Mathematics +1207.2347 Functional Analysis +1207.2348 Dynamical Systems +1207.2350 Solar and Stellar Astrophysics +1207.2354 Computational Complexity +1207.2355 Analysis of PDEs +1207.2359 Optics +1207.2360 Superconductivity +1207.2368 Number Theory +1207.2369 Classical Analysis and ODEs +1207.2372 +1207.2373 Artificial Intelligence +1207.2378 Computation +1207.2387 Mesoscale and Nanoscale Physics +1207.2397 Phenomenology +1207.2401 Probability +1207.2402 Materials Science +1207.2406 Information Theory +1207.2407 Classical Analysis and ODEs +1207.2417 Analysis of PDEs +1207.2422 Machine Learning +1207.2424 Quantitative Methods +1207.2426 Computer Vision and Pattern Recognition +1207.2430 Combinatorics +1207.2434 Numerical Analysis +1207.2435 Classical Analysis and ODEs +1207.2437 Soft Condensed Matter +1207.2440 Machine Learning +1207.2444 Phenomenology +1207.2446 Representation Theory +1207.2450 Statistics Theory +1207.2452 Computational Finance +1207.2459 Artificial Intelligence +cond-mat/0611688 Mesoscale and Nanoscale Physics +nlin/0302017 Pattern Formation and Solitons +0711.4225 General Finance +0809.1719 Functional Analysis +0812.3631 Algebraic Geometry +0904.1048 Classical Analysis and ODEs +0906.3660 Algebraic Topology +0908.4334 Statistics Theory +0910.1015 Optics +0912.0834 +0912.3222 Numerical Analysis +0912.3954 Genomics +1003.0922 Chaotic Dynamics +1003.4709 Other Condensed Matter +1004.0977 Probability +1004.1360 Differential Geometry +1004.5422 Statistical Mechanics +1007.0968 +1008.3035 Information Theory +1009.1527 Genomics +1010.0429 Number Theory +1010.1761 Analysis of PDEs +1010.4538 Numerical Analysis +1011.1922 Combinatorics +1012.0509 Algebraic Topology +1101.1842 +1102.0080 Algebraic Geometry +1103.1855 Geometric Topology +1103.4879 +1104.4187 +1105.5640 Systems and Control +1106.2844 Combinatorics +1106.4905 +1107.1674 Mesoscale and Nanoscale Physics +1107.3369 Phenomenology +1108.2981 Probability +1109.1031 Classical Analysis and ODEs +1110.2019 +1110.2136 Learning +1110.2805 Numerical Analysis +1110.5399 Geometric Topology +1111.3521 +1111.3887 Chaotic Dynamics +1111.5924 Algebraic Geometry +1112.0416 Distributed, Parallel, and Cluster Computing +1112.0679 Cosmology and Nongalactic Astrophysics +1112.0798 Statistical Mechanics +1112.1155 Materials Science +1112.1828 Computational Geometry +1112.6319 Mesoscale and Nanoscale Physics +1201.0621 Algebraic Geometry +1201.2190 Cosmology and Nongalactic Astrophysics +1201.3096 Strongly Correlated Electrons +1201.4277 +1201.4747 +1201.4820 Cosmology and Nongalactic Astrophysics +1201.6619 Mesoscale and Nanoscale Physics +1202.0193 Statistics Theory +1202.4076 Data Structures and Algorithms +1202.4965 Theory +1202.5082 Superconductivity +1202.5389 Strongly Correlated Electrons +1202.6008 Theory +1203.0795 Combinatorics +1203.1009 Quantum Gases +1203.1130 Chaotic Dynamics +1203.1310 Optics +1203.1352 +1203.1755 Optics +1203.1950 Superconductivity +1203.1977 +1203.2525 +1203.4493 Experiment +1203.5779 Mesoscale and Nanoscale Physics +1203.5910 Mesoscale and Nanoscale Physics +1204.0016 Quantum Gases +1204.0971 Phenomenology +1204.1461 Graphics +1204.1608 Dynamical Systems +1204.2485 Physics and Society +1204.3522 Superconductivity +1204.3566 +1204.4246 High Energy Astrophysical Phenomena +1204.4670 +1204.5817 Phenomenology +1205.2266 Mesoscale and Nanoscale Physics +1205.2672 Strongly Correlated Electrons +1205.3676 Distributed, Parallel, and Cluster Computing +1205.3910 Cosmology and Nongalactic Astrophysics +1205.5635 +1205.6368 Solar and Stellar Astrophysics +1205.6590 Number Theory +1206.0899 +1206.1068 +1206.2662 Risk Management +1206.2665 Risk Management +1206.2844 Theory +1206.3648 +1206.3789 Quantitative Methods +1206.3996 Classical Analysis and ODEs +1206.4103 Optimization and Control +1206.4110 Learning +1206.4129 Dynamical Systems +1206.4241 Networking and Internet Architecture +1206.4323 Mesoscale and Nanoscale Physics +1206.4327 Social and Information Networks +1206.4328 Chaotic Dynamics +1206.4329 Artificial Intelligence +1206.4335 Quantum Algebra +1206.4336 Dynamical Systems +1206.4337 Theory +1206.4345 Algebraic Topology +1206.4347 Solar and Stellar Astrophysics +1206.4349 History and Overview +1206.4353 Group Theory +1206.4355 Number Theory +1206.4356 +1206.4357 Classical Analysis and ODEs +1206.4361 Quantitative Methods +1206.4364 Complex Variables +1206.4368 Numerical Analysis +1206.4369 Phenomenology +1206.4372 Strongly Correlated Electrons +1206.4377 Distributed, Parallel, and Cluster Computing +1206.4379 Numerical Analysis +1206.4381 Dynamical Systems +1206.4384 Phenomenology +1206.4391 Computer Vision and Pattern Recognition +1206.4392 Strongly Correlated Electrons +1206.4393 Combinatorics +1206.4394 Fluid Dynamics +1206.4395 Representation Theory +1206.4398 Combinatorics +1206.4402 Superconductivity +1206.4403 Differential Geometry +1206.4418 Phenomenology +1206.4427 Phenomenology +1206.4433 Soft Condensed Matter +1206.4437 Cosmology and Nongalactic Astrophysics +1206.4438 Computational Engineering, Finance, and Science +1206.4443 Algebraic Topology +1206.4453 Analysis of PDEs +1206.4457 Materials Science +1206.4458 Logic in Computer Science +1206.4463 Theory +1206.4467 Algebraic Geometry +1206.4480 Algebraic Geometry +1206.4482 Strongly Correlated Electrons +1206.4483 Differential Geometry +1206.4485 Combinatorics +1206.4488 General Physics +1206.4489 Probability +1206.4495 Geometric Topology +1206.4498 Information Theory +1206.4499 Mesoscale and Nanoscale Physics +1206.4502 Analysis of PDEs +1206.4503 Algebraic Geometry +1206.4504 Software Engineering +1206.4506 Computational Finance +1206.4509 Systems and Control +1206.4511 Phenomenology +1206.4512 Phenomenology +1206.4513 Cryptography and Security +1206.4516 Mesoscale and Nanoscale Physics +1206.4517 Combinatorics +1206.4518 Phenomenology +1206.4520 Cryptography and Security +1206.4522 Computation and Language +1206.4523 Commutative Algebra +1206.4528 Classical Physics +1206.4531 Networking and Internet Architecture +1206.4535 Algebraic Geometry +1206.4536 Instrumentation and Methods for Astrophysics +1206.4538 Soft Condensed Matter +1206.4540 Functional Analysis +1206.4541 Functional Analysis +1206.4543 Materials Science +1206.4554 Phenomenology +1206.4556 Logic in Computer Science +1206.4558 Algebraic Geometry +1206.4559 Statistical Mechanics +1206.4562 Portfolio Management +1206.4564 Logic in Computer Science +1206.4568 Optimization and Control +1206.4580 Classical Analysis and ODEs +1206.4582 Cryptography and Security +1206.4587 Mesoscale and Nanoscale Physics +1206.4589 General Physics +1206.4590 General Physics +1206.4594 Statistical Mechanics +1206.4595 Superconductivity +1206.4596 Mesoscale and Nanoscale Physics +math/0410282 Probability +math/0604516 Geometric Topology +0801.2589 +0810.1640 Symplectic Geometry +0812.3725 General Physics +0901.2792 General Physics +0903.1178 General Physics +0904.0869 Phenomenology +0905.1317 Strongly Correlated Electrons +0905.4427 Superconductivity +0906.2858 Phenomenology +0907.1724 Computational Complexity +0908.0244 Astrophysics of Galaxies +0908.1724 Strongly Correlated Electrons +0909.1426 Information Theory +0911.3207 Materials Science +0912.3793 Other Condensed Matter +1002.1213 Astrophysics of Galaxies +1002.4635 Strongly Correlated Electrons +1004.4774 Statistical Mechanics +1006.3483 Populations and Evolution +1007.4825 Strongly Correlated Electrons +1009.4869 Phenomenology +1009.5086 +1009.5573 Instrumentation and Methods for Astrophysics +1010.2766 Materials Science +1011.5457 Theory +1012.0400 Optics +1101.1336 Representation Theory +1101.5924 Rings and Algebras +1102.3466 +1102.5646 Astrophysics of Galaxies +1103.2310 Pricing of Securities +1104.3451 Complex Variables +1104.3555 Phenomenology +1105.0057 Networking and Internet Architecture +1105.3253 Theory +1105.4303 +1105.6001 Databases +1105.6122 +1106.0004 Theory +1106.3971 Geometric Topology +1106.5754 Optics +1107.1617 Portfolio Management +1108.3103 Geometric Topology +1109.0480 Differential Geometry +1109.1283 Strongly Correlated Electrons +1109.1569 Strongly Correlated Electrons +1109.1753 Complex Variables +1109.6222 Information Theory +1109.6393 Combinatorics +1110.0250 Materials Science +1110.2613 Category Theory +1110.4114 Superconductivity +1110.5894 Probability +1111.0264 Differential Geometry +1111.0985 +1111.3620 +1111.3855 Fluid Dynamics +1111.4302 Materials Science +1111.7130 Mesoscale and Nanoscale Physics +1112.1231 +1112.1698 Cosmology and Nongalactic Astrophysics +1112.3805 Category Theory +1201.1118 Probability +1201.4603 Combinatorics +1201.6624 +1202.2336 Discrete Mathematics +1202.3916 +1202.4418 Theory +1202.4460 Strongly Correlated Electrons +1202.5625 Symplectic Geometry +1203.0571 Cosmology and Nongalactic Astrophysics +1203.0598 +1203.2149 +1203.2493 Statistical Mechanics +1203.2880 Mesoscale and Nanoscale Physics +1203.3041 Theory +1203.3733 +1203.4060 Instrumentation and Detectors +1203.4303 Statistical Mechanics +1203.5973 Differential Geometry +1203.6720 +1204.3268 Atomic Physics +1204.4468 Analysis of PDEs +1204.5966 Physics Education +1204.5973 Theory +1204.6204 Populations and Evolution +1205.0057 Popular Physics +1205.0378 +1205.0455 +1205.0786 Cosmology and Nongalactic Astrophysics +1205.2383 Materials Science +1205.2409 +1205.3307 Optics +1205.3421 +1205.3683 Phenomenology +1205.4808 Physics and Society +1205.5328 Phenomenology +1205.5785 High Energy Astrophysical Phenomena +1205.6520 Algebraic Geometry +1206.1177 Earth and Planetary Astrophysics +1206.1968 Human-Computer Interaction +1206.2366 Phenomenology +1206.2632 Phenomenology +1206.3416 Strongly Correlated Electrons +1206.4508 Theory +1206.4778 Quantum Gases +1206.5115 +1206.5854 Atomic Physics +1206.6004 Algebraic Geometry +1206.6037 Astrophysics of Galaxies +1206.6253 +1206.6592 Statistical Mechanics +1207.0266 Dynamical Systems +1207.0984 Phenomenology +1207.1027 Theory +1207.1192 Quantum Gases +1207.2196 Cosmology and Nongalactic Astrophysics +1207.4401 Adaptation and Self-Organizing Systems +1208.1674 Solar and Stellar Astrophysics +1208.3865 Algebraic Geometry +1209.1318 Information Retrieval +1209.1610 +1209.3114 High Energy Astrophysical Phenomena +1209.4275 Artificial Intelligence +1209.4786 Theory +1209.4806 Networking and Internet Architecture +1209.4883 Analysis of PDEs +1209.5158 Networking and Internet Architecture +1209.5547 +1209.6240 Geometric Topology +1209.6250 Analysis of PDEs +1209.6264 Solar and Stellar Astrophysics +1209.6447 Algebraic Geometry +1210.0200 Methodology +1210.0456 Number Theory +1210.0465 Mesoscale and Nanoscale Physics +1210.0472 Number Theory +1210.0528 Computer Vision and Pattern Recognition +1210.0532 Instrumentation and Methods for Astrophysics +1210.0544 Cosmology and Nongalactic Astrophysics +1210.0562 Solar and Stellar Astrophysics +1210.0563 Information Theory +1210.0564 Computer Vision and Pattern Recognition +1210.0568 Information Theory +1210.0571 Metric Geometry +1210.0579 Accelerator Physics +1210.0583 Classical Analysis and ODEs +1210.0585 Classical Analysis and ODEs +1210.0590 Functional Analysis +1210.0592 Functional Analysis +1210.0593 +1210.0595 Information Retrieval +1210.0599 Complex Variables +1210.0600 Probability +1210.0602 Analysis of PDEs +1210.0603 Instrumentation and Methods for Astrophysics +1210.0605 Analysis of PDEs +1210.0606 Analysis of PDEs +1210.0607 Computational Geometry +1210.0611 +1210.0612 +1210.0613 Logic in Computer Science +1210.0614 Logic in Computer Science +1210.0615 Category Theory +1210.0616 +1210.0617 +1210.0618 +1210.0619 +1210.0620 +1210.0621 Emerging Technologies +1210.0622 +1210.0625 Instrumentation and Methods for Astrophysics +1210.0626 Combinatorics +1210.0628 Probability +1210.0629 Differential Geometry +1210.0630 Plasma Physics +1210.0635 Combinatorics +1210.0637 +1210.0638 Medical Physics +1210.0639 Algebraic Topology +1210.0640 Materials Science +1210.0641 Materials Science +1210.0650 +1210.0651 Exactly Solvable and Integrable Systems +1210.0655 Methodology +1210.0656 Metric Geometry +1210.0658 Methodology +1210.0660 Cryptography and Security +1210.0661 Materials Science +1210.0663 Methodology +1210.0664 Computer Science and Game Theory +1210.0666 Materials Science +1210.0669 Methodology +1210.0675 Probability +1210.0677 Materials Science +1210.0679 Logic +1210.0681 Numerical Analysis +1210.0683 Earth and Planetary Astrophysics +1210.0684 Earth and Planetary Astrophysics +1210.0685 Machine Learning +1210.0688 Analysis of PDEs +1210.0692 Populations and Evolution +1210.0693 Information Theory +1210.0696 Combinatorics +1210.0698 Phenomenology +1210.0699 Learning +1210.0701 Methodology +1210.0702 Applications +1210.0706 Optimization and Control +1210.0707 Solar and Stellar Astrophysics +1210.0709 Instrumentation and Methods for Astrophysics +1210.0711 Mesoscale and Nanoscale Physics +1210.0713 Instrumentation and Methods for Astrophysics +1210.0716 Earth and Planetary Astrophysics +1210.0717 Plasma Physics +1210.0724 Mesoscale and Nanoscale Physics +1210.0725 Probability +1210.0727 Differential Geometry +1210.0733 Phenomenology +1210.0736 Methodology +1210.0737 Solar and Stellar Astrophysics +1210.0738 Optics +1210.0747 Fluid Dynamics +1210.0757 Mesoscale and Nanoscale Physics +1210.0758 Machine Learning +1210.0759 Theory +1210.0761 Optimization and Control +1210.0764 +1210.0766 Rings and Algebras +1210.0767 Methodology +1210.0769 Soft Condensed Matter +1210.0772 Artificial Intelligence +1210.0773 Methodology +1210.0775 Mesoscale and Nanoscale Physics +1210.0776 Numerical Analysis +1210.0786 Phenomenology +1210.0788 Geophysics +1210.0790 K-Theory and Homology +1210.0792 Functional Analysis +1210.0794 Artificial Intelligence +1210.0795 Functional Analysis +1210.0810 Tissues and Organs +1210.0815 History and Philosophy of Physics +1210.0817 High Energy Astrophysical Phenomena +1210.0818 Computer Vision and Pattern Recognition +1210.0820 Solar and Stellar Astrophysics +1210.0822 Numerical Analysis +1210.0824 Information Theory +1210.0831 +1210.0832 Solar and Stellar Astrophysics +1210.0835 Spectral Theory +1210.0837 +1210.0839 Theory +1210.0840 Instrumentation and Methods for Astrophysics +1210.0841 Solar and Stellar Astrophysics +1210.0843 Soft Condensed Matter +1210.0845 Combinatorics +1210.0849 +1210.0850 General Physics +1210.0852 Computation and Language +1210.0856 +1210.0859 Combinatorics +1210.0860 Materials Science +1210.0863 Theory +1210.0864 Learning +1210.0865 +1210.0866 Computer Vision and Pattern Recognition +1210.0871 Classical Analysis and ODEs +1210.0877 Phenomenology +1210.0880 Computer Vision and Pattern Recognition +1210.0881 Number Theory +1210.0887 Artificial Intelligence +cond-mat/0401147 Statistical Mechanics +cond-mat/0403170 Soft Condensed Matter +cond-mat/0404709 Materials Science +cond-mat/0411703 Statistical Mechanics +cond-mat/0412282 Soft Condensed Matter +cond-mat/0412408 Soft Condensed Matter +cond-mat/0412765 Statistical Mechanics +cond-mat/0501163 Materials Science +cond-mat/0501256 Soft Condensed Matter +math/0703464 Representation Theory +physics/0504099 Physics and Society +physics/0504131 Physics and Society +physics/0505136 Physics and Society +physics/0505170 Physics and Society +physics/0509165 Data Analysis, Statistics and Probability +0706.0620 +0709.2722 Group Theory +0710.2630 +0710.3451 Number Theory +0710.5361 Group Theory +0711.0987 Probability +0711.1759 General Mathematics +0806.0156 Group Theory +0806.0582 Methodology +0806.4569 Strongly Correlated Electrons +0807.3266 Theory +0811.4101 Group Theory +0811.4413 Learning +0812.3085 Mesoscale and Nanoscale Physics +0904.0616 Number Theory +0905.1731 Algebraic Geometry +0907.1387 Differential Geometry +0908.3692 Combinatorics +0911.0835 Analysis of PDEs +0911.0850 Superconductivity +0912.0493 Other Condensed Matter +1001.2972 History and Overview +1004.0199 Group Theory +1006.1752 Quantum Algebra +1006.2899 Learning +1006.3522 Statistical Mechanics +1006.3568 Category Theory +1007.1729 Number Theory +1007.3651 Mesoscale and Nanoscale Physics +1007.4977 Rings and Algebras +1008.3689 Algebraic Geometry +1009.2046 Mesoscale and Nanoscale Physics +1009.2316 Geometric Topology +1009.5700 Probability +1010.1202 Experiment +1011.0032 Quantum Gases +1011.0789 Differential Geometry +1011.5002 Quantum Gases +1011.6582 Differential Geometry +1012.1488 Functional Analysis +1012.2209 Statistical Mechanics +1012.3059 Information Theory +1012.4566 +1101.3938 Algebraic Geometry +1102.2387 +1102.2634 Populations and Evolution +1102.4023 Combinatorics +1104.2334 Cosmology and Nongalactic Astrophysics +1105.1278 Probability +1105.2938 Mesoscale and Nanoscale Physics +1105.3060 +1105.4211 +1105.5639 Information Theory +1106.4343 Representation Theory +1106.6179 Quantum Gases +1107.0430 Rings and Algebras +1107.1059 Operator Algebras +1107.2850 Mesoscale and Nanoscale Physics +1107.5422 Superconductivity +1108.1192 Quantum Gases +1108.1806 Strongly Correlated Electrons +1108.4455 Commutative Algebra +1108.5238 Dynamical Systems +1109.0193 Theory +1109.4170 Cosmology and Nongalactic Astrophysics +1109.4228 Phenomenology +1110.1554 Classical Analysis and ODEs +1110.2565 Fluid Dynamics +1110.3927 Optics +1110.4023 Mesoscale and Nanoscale Physics +1110.4045 Strongly Correlated Electrons +1110.4541 Cosmology and Nongalactic Astrophysics +1110.4793 Soft Condensed Matter +1110.6480 Experiment +1111.0444 Combinatorics +1111.0602 Combinatorics +1111.0606 Combinatorics +1111.1176 Mesoscale and Nanoscale Physics +1111.1435 +1111.1902 Phenomenology +1111.2387 Representation Theory +1111.3760 Rings and Algebras +1111.3822 Mesoscale and Nanoscale Physics +1111.4192 +1111.4534 Algebraic Geometry +1111.6834 Probability +1111.7100 Metric Geometry +1112.0327 Cosmology and Nongalactic Astrophysics +1112.0876 Biological Physics +1112.2876 Theory +1112.5124 Strongly Correlated Electrons +1112.6422 Statistical Mechanics +1201.1866 Soft Condensed Matter +1201.1950 Materials Science +1201.2467 Optimization and Control +1201.3749 Quantitative Methods +1201.4324 Solar and Stellar Astrophysics +1201.4339 Neurons and Cognition +1201.4606 Strongly Correlated Electrons +1201.6131 Superconductivity +1202.0024 Physics and Society +1202.0304 Cosmology and Nongalactic Astrophysics +1202.0693 Programming Languages +1202.0947 Strongly Correlated Electrons +1202.2811 Statistical Mechanics +1202.2860 Cosmology and Nongalactic Astrophysics +1202.3032 Cosmology and Nongalactic Astrophysics +1202.3596 Functional Analysis +1202.3618 Strongly Correlated Electrons +1202.4055 Strongly Correlated Electrons +1202.4760 Strongly Correlated Electrons +1202.5418 +1202.5491 Phenomenology +1202.5546 Mesoscale and Nanoscale Physics +1202.5825 Superconductivity +1202.6534 Solar and Stellar Astrophysics +1202.6612 Number Theory +1203.0792 +1203.0825 Soft Condensed Matter +1203.0906 Theory +1203.1106 Materials Science +1203.1157 Phenomenology +1203.1773 Materials Science +1203.4627 Computer Science and Game Theory +1203.5419 Statistical Mechanics +1203.5757 Theory +1203.6175 Mesoscale and Nanoscale Physics +1203.6195 Solar and Stellar Astrophysics +1203.6639 +1203.6703 Classical Analysis and ODEs +1204.0083 Strongly Correlated Electrons +1204.0378 Optics +1204.1007 Superconductivity +1204.1426 +1204.2226 +1204.3637 Mesoscale and Nanoscale Physics +1204.4147 Atomic Physics +1204.4795 +1204.5629 Probability +1204.5870 +1204.6227 Spectral Theory +1204.6360 Earth and Planetary Astrophysics +1205.0870 Representation Theory +1205.0982 Quantum Gases +1205.1151 Analysis of PDEs +1205.1468 Theory +1205.1959 Theory +1205.3002 Instrumentation and Methods for Astrophysics +1205.3147 Numerical Analysis +1205.3868 Superconductivity +1205.4810 Learning +1205.5198 Geometric Topology +1205.6047 Combinatorics +1205.6657 Functional Analysis +1205.6912 Plasma Physics +1206.0638 Computational Engineering, Finance, and Science +1206.1962 Earth and Planetary Astrophysics +1206.2396 Astrophysics of Galaxies +1206.2564 Representation Theory +1206.3300 Biological Physics +1206.3589 Representation Theory +1206.4376 +1206.4555 Information Theory +1206.4727 Analysis of PDEs +1206.5534 Group Theory +1206.5790 Dynamical Systems +1206.6223 Strongly Correlated Electrons +1206.6255 +1206.6375 Theory +1206.6381 Learning +1206.6716 +1206.6917 Biological Physics +1207.0016 Information Theory +1207.0661 Theory +1207.0778 Theory +1207.0790 Distributed, Parallel, and Cluster Computing +1207.0932 Discrete Mathematics +1207.1141 Data Structures and Algorithms +1207.1512 Information Theory +1207.1572 Mesoscale and Nanoscale Physics +1207.1683 Hardware Architecture +1207.1720 General Physics +1207.1730 Complex Variables +1207.1732 Rings and Algebras +1207.1734 Differential Geometry +1207.1735 Number Theory +1207.1738 Quantum Gases +1207.1741 Fluid Dynamics +1207.1742 Probability +1207.1743 Theory +1207.1744 +1207.1746 Mathematical Software +1207.1748 Physics and Society +1207.1751 Soft Condensed Matter +1207.1756 Number Theory +1207.1765 Computer Vision and Pattern Recognition +1207.1771 General Finance +1207.1773 Numerical Analysis +1207.1774 High Energy Astrophysical Phenomena +1207.1775 Representation Theory +1207.1776 Numerical Analysis +1207.1786 Differential Geometry +1207.1794 Data Structures and Algorithms +1207.1801 +1207.1803 General Physics +1207.1805 Information Theory +1207.1807 Mesoscale and Nanoscale Physics +1207.1813 Programming Languages +1207.1814 Superconductivity +1207.1818 Human-Computer Interaction +1207.1820 Human-Computer Interaction +1207.1821 Human-Computer Interaction +1207.1822 Dynamical Systems +1207.1824 Combinatorics +1207.1830 Group Theory +1207.1834 Number Theory +1207.1841 Software Engineering +1207.1844 Fluid Dynamics +1207.1845 Cryptography and Security +1207.1847 Computation and Language +1207.1850 Solar and Stellar Astrophysics +1207.1855 Information Theory +1207.1859 Statistical Mechanics +1207.1871 +1207.1875 Discrete Mathematics +1207.1878 Networking and Internet Architecture +1207.1884 Mesoscale and Nanoscale Physics +1207.1888 Applications +1207.1890 Algebraic Geometry +1207.1891 Tissues and Organs +1207.1893 Optimization and Control +1207.1894 Human-Computer Interaction +1207.1897 Theory +1207.1899 Statistics Theory +1207.1903 Lattice +1207.1908 Probability +1207.1912 Phenomenology +1207.1916 Mathematical Software +1207.1918 Algebraic Geometry +1207.1921 Computers and Society +1207.1923 Category Theory +1207.1925 Algebraic Geometry +1207.1926 Analysis of PDEs +1207.1931 Optimization and Control +1207.1932 Optimization and Control +1207.1933 Computational Engineering, Finance, and Science +1207.1937 Differential Geometry +1207.1938 Instrumentation and Methods for Astrophysics +1207.1941 Soft Condensed Matter +1207.1944 Differential Geometry +1207.1947 Functional Analysis +1207.1949 Optimization and Control +1207.1951 Group Theory +1207.1953 +1207.1955 Dynamical Systems +1207.1957 Genomics +1207.1959 Rings and Algebras +1207.1961 Combinatorics +1207.1963 Computation +1207.1965 Machine Learning +1207.1969 Combinatorics +1207.1973 Geometric Topology +1207.1974 Numerical Analysis +1207.1977 Machine Learning +1207.1981 Accelerator Physics +1207.1982 Formal Languages and Automata Theory +1207.1985 Combinatorics +1207.1986 Information Theory +1207.1993 Statistics Theory +1207.1995 Mesoscale and Nanoscale Physics +1207.2000 Systems and Control +1207.2003 Analysis of PDEs +1207.2008 Combinatorics +1207.2009 Number Theory +1207.2010 General Finance +1207.2011 Classical Analysis and ODEs +1207.2013 +1207.2015 +1207.2016 History and Philosophy of Physics +1207.2017 Programming Languages +1207.2019 +1207.2021 +1207.2026 Solar and Stellar Astrophysics +1207.2033 Analysis of PDEs +1207.2034 Analysis of PDEs +1207.2037 Networking and Internet Architecture +1207.2040 Strongly Correlated Electrons +1207.2046 Differential Geometry +1207.2058 Mesoscale and Nanoscale Physics +1207.2060 Hardware Architecture +1207.2062 Numerical Analysis +1207.2065 Mesoscale and Nanoscale Physics +1207.2067 Statistics Theory +1207.2070 Theory +1207.2081 Representation Theory +1207.2082 +1207.2092 Information Theory +1207.2097 Solar and Stellar Astrophysics +1207.2102 Number Theory +1207.2103 Information Theory +1207.2104 Computers and Society +1207.2110 Classical Analysis and ODEs +1207.2111 General Mathematics +1207.2115 Astrophysics of Galaxies +1207.2117 Combinatorics +1207.2125 Probability +1207.2129 Rings and Algebras +1207.2141 +1207.2143 Classical Analysis and ODEs +gr-qc/0207060 +hep-ph/0602094 Phenomenology +math/0109190 Analysis of PDEs +math/0304278 Group Theory +math/0404530 Group Theory +math/0407083 Group Theory +quant-ph/0309178 +quant-ph/0411174 +quant-ph/0503214 +quant-ph/0507200 +quant-ph/0507205 +quant-ph/0605200 +quant-ph/9806074 +quant-ph/9908075 +quant-ph/9908076 +0708.0569 Atomic Physics +0710.1800 Physics and Society +0710.5705 Materials Science +0801.0981 Adaptation and Self-Organizing Systems +0812.1018 Data Analysis, Statistics and Probability +0812.2617 Physics and Society +0906.1695 Probability +0909.5121 Algebraic Geometry +0911.3727 Dynamical Systems +1002.2337 +1006.0278 +1006.5397 Operator Algebras +1007.0133 Quantum Algebra +1007.1391 +1008.1557 +1009.2351 Mesoscale and Nanoscale Physics +1010.5988 General Physics +1011.5528 Instrumentation and Detectors +1011.5529 Instrumentation and Detectors +1101.3004 Representation Theory +1101.5593 Quantum Gases +1103.1198 Phenomenology +1103.5814 Earth and Planetary Astrophysics +1104.3128 Data Structures and Algorithms +1105.5692 Optics +1106.1048 Other Condensed Matter +1106.2823 +1106.3249 Geometric Topology +1107.1670 Functional Analysis +1107.2043 Algebraic Geometry +1107.2131 Experiment +1107.4126 +1107.5352 Mesoscale and Nanoscale Physics +1107.5572 +1108.0859 +1108.1477 Instrumentation and Methods for Astrophysics +1109.0346 Geometric Topology +1109.1516 Computation +1109.2515 Superconductivity +1109.5288 Algebraic Geometry +1109.5523 Theory +1109.5933 Classical Analysis and ODEs +1109.6756 Soft Condensed Matter +1110.2744 Superconductivity +1110.5111 Discrete Mathematics +1110.5997 Biological Physics +1110.6275 Symbolic Computation +1110.6393 Pattern Formation and Solitons +1110.6637 Phenomenology +1111.2353 Symplectic Geometry +1111.2752 Strongly Correlated Electrons +1111.3998 Atomic Physics +1111.4150 Instrumentation and Detectors +1111.4449 +1111.5485 Social and Information Networks +1111.6809 Solar and Stellar Astrophysics +1112.0056 Mesoscale and Nanoscale Physics +1112.0967 Classical Analysis and ODEs +1112.2074 Soft Condensed Matter +1112.2506 Probability +1112.4224 Superconductivity +1112.4897 Formal Languages and Automata Theory +1201.0676 Physics and Society +1201.1452 Strongly Correlated Electrons +1201.4481 Medical Physics +1201.4841 Statistical Finance +1202.0577 Probability +1202.1207 Functional Analysis +1202.2297 Mesoscale and Nanoscale Physics +1203.0602 Probability +1203.0603 Probability +1203.1921 Earth and Planetary Astrophysics +1203.3073 Neurons and Cognition +1203.3115 Information Theory +1203.5468 Probability +1204.1244 Strongly Correlated Electrons +1204.1556 Strongly Correlated Electrons +1204.1778 +1204.2723 Classical Analysis and ODEs +1204.3536 Risk Management +1204.4032 +1204.5456 Group Theory +1205.3026 Phenomenology +1205.3363 Optics +1205.3391 General Topology +1205.3955 Optics +1205.4057 Statistical Mechanics +1205.4715 Astrophysics of Galaxies +1205.5066 Tissues and Organs +1205.6325 Mesoscale and Nanoscale Physics +1205.6726 +1206.3754 Analysis of PDEs +1206.4099 Physics and Society +1206.5103 Quantum Gases +1206.7076 Optics +1207.0173 Strongly Correlated Electrons +1207.0568 Statistical Mechanics +1207.2153 +1207.2658 Materials Science +1207.3180 +1207.4395 +1207.4648 High Energy Astrophysical Phenomena +1207.4737 Other Quantitative Biology +1207.5054 Materials Science +1207.6492 Pattern Formation and Solitons +1208.0172 Materials Science +1208.0410 Strongly Correlated Electrons +1208.0644 +1208.1040 Differential Geometry +1208.1223 Probability +1208.1571 Mesoscale and Nanoscale Physics +1208.2456 Cellular Automata and Lattice Gases +1208.2621 Dynamical Systems +1208.3136 Strongly Correlated Electrons +1208.3832 Computer Science and Game Theory +1208.4272 Probability +1208.5377 Numerical Analysis +1208.5384 Statistics Theory +1208.5809 Applications +1208.5812 Mesoscale and Nanoscale Physics +1208.5894 Numerical Analysis +1208.5977 +1208.6023 Phenomenology +1208.6024 Group Theory +1208.6025 Neural and Evolutionary Computing +1208.6028 Neural and Evolutionary Computing +1208.6029 Analysis of PDEs +1208.6032 Commutative Algebra +1208.6034 +1208.6037 Computers and Society +1208.6038 Rings and Algebras +1208.6040 Functional Analysis +1208.6045 Analysis of PDEs +1208.6047 Theory +1208.6050 Molecular Networks +1208.6051 Data Structures and Algorithms +1208.6053 +1208.6057 Human-Computer Interaction +1208.6059 Dynamical Systems +1208.6060 Number Theory +1208.6061 +1208.6079 Classical Analysis and ODEs +1208.6083 Commutative Algebra +1208.6086 Number Theory +1208.6096 Networking and Internet Architecture +1208.6100 Cosmology and Nongalactic Astrophysics +1208.6103 Chemical Physics +1208.6105 +1208.6110 Materials Science +1208.6111 Phenomenology +1208.6123 Classical Analysis and ODEs +1208.6124 Number Theory +1208.6125 Networking and Internet Architecture +1208.6126 Phenomenology +1208.6137 Computer Vision and Pattern Recognition +1208.6140 Numerical Analysis +1208.6142 Materials Science +1208.6144 Optimization and Control +1208.6147 Materials Science +1208.6149 Solar and Stellar Astrophysics +1208.6150 Statistical Mechanics +1208.6154 Solar and Stellar Astrophysics +1208.6155 +1208.6162 Operator Algebras +1208.6167 Optimization and Control +1208.6170 Soft Condensed Matter +1208.6173 Rings and Algebras +1208.6177 Strongly Correlated Electrons +1208.6183 Plasma Physics +1208.6185 +1208.6186 +1208.6188 Computational Geometry +1208.6189 Cryptography and Security +1208.6193 +1208.6198 Cryptography and Security +1208.6202 Phenomenology +1208.6203 Combinatorics +1208.6204 Astrophysics of Galaxies +1208.6205 Chaotic Dynamics +1208.6213 Analysis of PDEs +1208.6217 +1208.6218 +1208.6226 Solar and Stellar Astrophysics +1208.6230 Materials Science +1208.6231 Learning +1208.6237 Fluid Dynamics +1208.6238 Functional Analysis +1208.6240 Number Theory +1208.6242 Lattice +1208.6246 Phenomenology +1208.6259 +1208.6260 +1208.6264 Software Engineering +1208.6265 Quantum Algebra +1208.6269 Data Structures and Algorithms +1208.6275 Instrumentation and Methods for Astrophysics +1208.6278 Spectral Theory +1208.6281 Probability +1208.6282 Algebraic Geometry +1208.6286 Optimization and Control +1208.6288 Cosmology and Nongalactic Astrophysics +cond-mat/0108367 Statistical Mechanics +math-ph/0612061 +nlin/0210041 Adaptation and Self-Organizing Systems +physics/0508148 Atomic Physics +physics/0612148 Physics and Society +physics/0703266 Physics and Society +0712.1398 Differential Geometry +0803.3261 Fluid Dynamics +0806.2431 Algebraic Geometry +0807.3727 Group Theory +0901.4083 Adaptation and Self-Organizing Systems +0902.2501 Data Structures and Algorithms +0905.3957 Fluid Dynamics +0907.0123 Computational Physics +0910.2116 Materials Science +1004.3157 Algebraic Topology +1005.1152 Strongly Correlated Electrons +1006.4502 Operator Algebras +1007.0109 Probability +1008.2864 Strongly Correlated Electrons +1012.3235 Algebraic Topology +1012.4343 Instrumentation and Detectors +1101.3996 Differential Geometry +1104.3389 Quantum Gases +1106.2301 Data Structures and Algorithms +1106.2384 Optimization and Control +1106.4966 Strongly Correlated Electrons +1107.2393 General Mathematics +1108.0590 Analysis of PDEs +1109.4515 Differential Geometry +1109.5963 Phenomenology +1109.6124 High Energy Astrophysical Phenomena +1110.6186 Theory +1110.6370 Instrumentation and Detectors +1111.0478 +1111.4031 Representation Theory +1111.4046 +1111.5561 Dynamical Systems +1112.0786 Instrumentation and Methods for Astrophysics +1112.1203 +1112.1492 Theory +1112.4284 Cosmology and Nongalactic Astrophysics +1112.4813 Metric Geometry +1201.2543 Phenomenology +1201.3309 Strongly Correlated Electrons +1201.5015 Quantum Gases +1201.5771 Differential Geometry +1201.6019 Quantum Gases +1202.2218 Earth and Planetary Astrophysics +1202.2677 +1202.5869 Quantum Gases +1203.0705 Mesoscale and Nanoscale Physics +1203.3148 Strongly Correlated Electrons +1203.4029 Phenomenology +1203.5584 K-Theory and Homology +1203.6669 Strongly Correlated Electrons +1204.0611 Materials Science +1204.1262 High Energy Astrophysical Phenomena +1204.1960 Mesoscale and Nanoscale Physics +1204.5265 +1204.5761 Cosmology and Nongalactic Astrophysics +1205.0064 Logic +1205.2361 Strongly Correlated Electrons +1205.3304 Theory +1205.5810 Strongly Correlated Electrons +1205.6129 General Physics +1206.0297 +1206.0539 Numerical Analysis +1206.1148 Graphics +1206.1428 Graphics +1206.3018 Analysis of PDEs +1206.3585 Earth and Planetary Astrophysics +1206.4472 Strongly Correlated Electrons +1206.4915 High Energy Astrophysical Phenomena +1206.5016 Cosmology and Nongalactic Astrophysics +1207.3100 Methodology +1207.3153 Quantum Gases +1207.6148 Phenomenology +1208.0478 +1208.0952 Networking and Internet Architecture +1208.0978 Materials Science +1208.1088 Superconductivity +1208.1257 Phenomenology +1208.1259 Learning +1208.1269 Solar and Stellar Astrophysics +1208.1272 Data Structures and Algorithms +1208.1291 Representation Theory +1208.1301 Logic +1208.1302 Logic +1208.1304 Complex Variables +1208.1309 General Physics +1208.1312 Materials Science +1208.1315 Learning +1208.1321 Numerical Analysis +1208.1322 Differential Geometry +1208.1326 Information Theory +1208.1338 Dynamical Systems +1208.1355 Materials Science +1208.1357 +1208.1366 Logic in Computer Science +1208.1372 Algebraic Geometry +1208.1377 Solar and Stellar Astrophysics +1208.1379 Optics +1208.1387 Algebraic Geometry +1208.1394 +1208.1397 Mesoscale and Nanoscale Physics +1208.1407 Mesoscale and Nanoscale Physics +1208.1410 Other Computer Science +1208.1413 Number Theory +1208.1418 Sound +1208.1423 Optics +1208.1431 Disordered Systems and Neural Networks +1208.1435 Solar and Stellar Astrophysics +1208.1436 Algebraic Geometry +1208.1442 Mesoscale and Nanoscale Physics +1208.1444 Phenomenology +1208.1446 Mesoscale and Nanoscale Physics +1208.1452 Soft Condensed Matter +1208.1454 Distributed, Parallel, and Cluster Computing +1208.1464 Mesoscale and Nanoscale Physics +1208.1465 Mesoscale and Nanoscale Physics +1208.1469 Numerical Analysis +1208.1474 Dynamical Systems +1208.1479 General Finance +1208.1483 Instrumentation and Methods for Astrophysics +1208.1485 Strongly Correlated Electrons +1208.1489 Quantum Gases +1208.1500 Quantum Algebra +hep-ph/0401122 Phenomenology +hep-ph/0608278 Phenomenology +physics/0604013 Accelerator Physics +0709.3219 Strongly Correlated Electrons +0801.2550 Algebraic Geometry +0807.1311 Geometric Topology +0812.3989 Differential Geometry +0903.3763 Classical Analysis and ODEs +0903.5125 Classical Analysis and ODEs +0912.4791 Algebraic Topology +0912.5000 Algebraic Topology +1002.0994 Analysis of PDEs +1004.3163 Symplectic Geometry +1005.5431 Algebraic Topology +1006.2325 Complex Variables +1006.2340 Algebraic Geometry +1006.5000 Classical Analysis and ODEs +1008.3279 Analysis of PDEs +1008.3968 Chemical Physics +1011.4925 +1101.5488 Probability +1101.6061 +1102.0493 Analysis of PDEs +1102.4484 Superconductivity +1103.2951 Superconductivity +1105.5350 Soft Condensed Matter +1106.0452 Disordered Systems and Neural Networks +1106.0509 +1106.2178 Optics +1106.2737 Theory +1106.5746 Functional Analysis +1106.6197 Combinatorics +1107.2670 Phenomenology +1107.3334 Theory +1108.0884 Statistical Mechanics +1108.1985 Cosmology and Nongalactic Astrophysics +1108.2501 Superconductivity +1108.4125 +1109.1349 +1109.5391 Phenomenology +1109.5442 Phenomenology +1110.0711 Phenomenology +1111.0993 Phenomenology +1111.5361 Analysis of PDEs +1111.6250 Strongly Correlated Electrons +1111.6456 Algebraic Geometry +1111.6889 +1111.6990 Computational Geometry +1112.1373 Superconductivity +1112.2729 Mesoscale and Nanoscale Physics +1112.4544 Quantum Gases +1112.6430 +1201.0309 Phenomenology +1201.0779 Mesoscale and Nanoscale Physics +1201.1011 Dynamical Systems +1201.1783 Risk Management +1201.1948 Dynamical Systems +1201.5481 Superconductivity +1201.5830 Algebraic Geometry +1202.1182 Cosmology and Nongalactic Astrophysics +1202.3318 Optics +1202.3940 Combinatorics +1202.5277 Statistical Mechanics +1202.6597 Information Theory +1203.1149 +1203.1485 Biological Physics +1203.2190 Optics +1203.2870 Information Theory +1203.6041 Phenomenology +1204.1223 Phenomenology +1204.3207 Strongly Correlated Electrons +1204.3385 Mesoscale and Nanoscale Physics +1204.4820 Phenomenology +1204.5008 Mesoscale and Nanoscale Physics +1205.0339 Analysis of PDEs +1205.3267 Theory +1205.3948 +1205.4927 Mesoscale and Nanoscale Physics +1205.5019 +1205.5025 Computational Engineering, Finance, and Science +1205.6914 Theory +1206.0530 Optics +1206.3519 Mesoscale and Nanoscale Physics +1206.4963 Mesoscale and Nanoscale Physics +1206.5196 Cosmology and Nongalactic Astrophysics +1206.5933 Representation Theory +1206.6886 Phenomenology +1207.0302 Probability +1207.2825 Information Theory +1207.5457 High Energy Astrophysical Phenomena +1207.5802 Strongly Correlated Electrons +1207.6707 Number Theory +1207.6752 Statistical Mechanics +1207.6766 General Topology +1207.6926 +1207.7240 Cosmology and Nongalactic Astrophysics +1208.0311 Superconductivity +1208.4757 Theory +1208.5485 Solar and Stellar Astrophysics +1208.5602 Strongly Correlated Electrons +1208.6482 +1209.0534 High Energy Astrophysical Phenomena +1209.0835 Social and Information Networks +1209.1229 Quantum Algebra +1209.1284 Cosmology and Nongalactic Astrophysics +1209.1518 Analysis of PDEs +1209.1767 Numerical Analysis +1209.1882 Geometric Topology +1209.2374 Number Theory +1209.2501 Learning +1209.2644 Geometric Topology +1209.2788 Representation Theory +1209.2919 Materials Science +1209.3408 Instrumentation and Detectors +1209.3464 Number Theory +1209.3516 Numerical Analysis +1209.3521 Classical Physics +1209.3613 Atmospheric and Oceanic Physics +1209.3729 Number Theory +1209.4065 Information Theory +1209.4091 Lattice +1209.4092 Operator Algebras +1209.4099 +1209.4104 Commutative Algebra +1209.4105 Phenomenology +1209.4109 Differential Geometry +1209.4110 Number Theory +1209.4133 Networking and Internet Architecture +1209.4135 Theory +1209.4136 Operator Algebras +1209.4141 Cosmology and Nongalactic Astrophysics +1209.4145 Information Theory +1209.4151 +1209.4153 Mesoscale and Nanoscale Physics +1209.4155 Theory +1209.4157 Other Computer Science +1209.4158 Differential Geometry +1209.4160 Geometric Topology +1209.4162 Experiment +1209.4165 Geometric Topology +1209.4169 Databases +1209.4170 Astrophysics of Galaxies +1209.4178 Experiment +1209.4187 Distributed, Parallel, and Cluster Computing +1209.4188 Statistics Theory +1209.4190 +1209.4196 Quantum Gases +1209.4197 +1209.4200 Materials Science +1209.4202 Dynamical Systems +1209.4205 Materials Science +1209.4206 Data Structures and Algorithms +1209.4207 Information Theory +1209.4210 Materials Science +1209.4212 Optics +1209.4218 Networking and Internet Architecture +1209.4221 Phenomenology +1209.4225 Fluid Dynamics +1209.4226 Materials Science +1209.4227 Computational Geometry +1209.4233 Mathematical Software +1209.4241 +1209.4246 Information Theory +1209.4248 Mesoscale and Nanoscale Physics +1209.4250 Exactly Solvable and Integrable Systems +1209.4257 Databases +1209.4258 Chemical Physics +1209.4261 Other Condensed Matter +1209.4270 Functional Analysis +1209.4280 Machine Learning +1209.4287 Number Theory +1209.4288 Optics +1209.4289 Statistical Mechanics +1209.4290 Artificial Intelligence +1209.4292 Statistical Mechanics +1209.4294 Functional Analysis +1209.4297 Distributed, Parallel, and Cluster Computing +1209.4299 Accelerator Physics +1209.4301 History and Philosophy of Physics +1209.4303 Accelerator Physics +1209.4306 Biomolecules +1209.4307 Algebraic Geometry +1209.4308 Optimization and Control +1209.4312 Phenomenology +1209.4314 Probability +1209.4315 Combinatorics +1209.4316 Numerical Analysis +1209.4317 Computer Vision and Pattern Recognition +1209.4324 Accelerator Physics +1209.4325 Soft Condensed Matter +1209.4330 Artificial Intelligence +1209.4332 Functional Analysis +1209.4337 Analysis of PDEs +1209.4341 Dynamical Systems +1209.4344 Theory +hep-ph/0508165 Phenomenology +hep-ph/0605203 Phenomenology +math/0612489 Classical Analysis and ODEs +quant-ph/0611239 +0708.2611 Complex Variables +0708.2635 Complex Variables +0802.2611 Analysis of PDEs +0806.0261 +0806.4593 Experiment +0809.1577 Group Theory +0901.0189 Cosmology and Nongalactic Astrophysics +0903.5255 Methodology +0906.2223 Group Theory +0908.1805 Networking and Internet Architecture +0910.3199 Representation Theory +0910.3659 Representation Theory +0912.0506 Algebraic Geometry +0912.1620 Fluid Dynamics +0912.3717 Phenomenology +1001.2181 Optimization and Control +1005.3750 Combinatorics +1006.1564 Strongly Correlated Electrons +1006.5496 General Physics +1007.3369 Probability +1009.1298 Combinatorics +1009.1806 Fluid Dynamics +1009.5937 Theory +1010.4562 Dynamical Systems +1011.0159 Strongly Correlated Electrons +1011.3976 Differential Geometry +1012.3867 Mesoscale and Nanoscale Physics +1012.4999 Materials Science +1012.5018 Materials Science +1101.0273 High Energy Astrophysical Phenomena +1101.1150 Strongly Correlated Electrons +1102.0251 Physics and Society +1103.0375 Populations and Evolution +1104.0331 Analysis of PDEs +1104.2561 Strongly Correlated Electrons +1104.2897 Numerical Analysis +1105.4765 Statistics Theory +1105.5959 Spectral Theory +1106.1331 Representation Theory +1106.2331 Group Theory +1106.5605 Mesoscale and Nanoscale Physics +1107.2966 Metric Geometry +1108.0990 Physics and Society +1108.1380 Lattice +1108.3830 Number Theory +1109.2832 +1111.0618 Numerical Analysis +1111.1144 Information Theory +1111.2132 Analysis of PDEs +1111.2289 Rings and Algebras +1111.3567 Information Theory +1111.5472 Computer Science and Game Theory +1111.5711 Superconductivity +1112.1873 Lattice +1112.2658 Lattice +1201.3587 Combinatorics +1202.0564 Atmospheric and Oceanic Physics +1202.1339 Cosmology and Nongalactic Astrophysics +1202.3696 Theory +1202.4043 Optimization and Control +1202.4674 Cosmology and Nongalactic Astrophysics +1202.5482 Distributed, Parallel, and Cluster Computing +1203.2954 High Energy Astrophysical Phenomena +1203.4079 +1203.4420 Quantum Gases +1203.4488 Mesoscale and Nanoscale Physics +1203.5387 Data Structures and Algorithms +1204.5114 Statistical Mechanics +1204.5491 Functional Analysis +1205.0408 Mesoscale and Nanoscale Physics +1205.1509 Phenomenology +1205.3270 Superconductivity +1205.3769 Phenomenology +1205.4494 Instrumentation and Detectors +1205.4522 Chemical Physics +1205.4609 Strongly Correlated Electrons +1205.5890 Phenomenology +1205.6906 Cosmology and Nongalactic Astrophysics +1206.0233 Discrete Mathematics +1206.0623 Strongly Correlated Electrons +1206.1979 Classical Analysis and ODEs +1206.2278 Superconductivity +1206.2373 Plasma Physics +1206.3175 History and Philosophy of Physics +1206.4431 Group Theory +1207.0706 Quantum Gases +1207.2476 High Energy Astrophysical Phenomena +1207.3053 +1207.3097 Functional Analysis +1207.3276 +1207.3743 Instrumentation and Detectors +1207.3865 History and Philosophy of Physics +1207.4424 Mesoscale and Nanoscale Physics +1208.0178 Optics +1208.0420 Metric Geometry +1208.0486 Phenomenology +1208.1316 Strongly Correlated Electrons +1208.2074 Materials Science +1208.4731 Atomic Physics +1208.6181 Adaptation and Self-Organizing Systems +1209.1232 Analysis of PDEs +1209.2032 Materials Science +1209.2572 +1210.1343 Strongly Correlated Electrons +1210.2579 Operator Algebras +1210.3317 Cosmology and Nongalactic Astrophysics +1210.3929 +1210.5188 +1210.6504 Quantum Gases +1210.6974 Superconductivity +1211.0160 Computation +1211.0927 Dynamical Systems +1211.0931 Quantum Algebra +1211.1326 Strongly Correlated Electrons +1211.1634 Human-Computer Interaction +1211.1993 Group Theory +1211.2258 Experiment +1211.2322 Data Structures and Algorithms +1211.2365 Discrete Mathematics +1211.2392 +1211.2430 Symbolic Computation +1211.2719 Artificial Intelligence +1211.2765 +1211.2799 Computers and Society +1211.2800 Differential Geometry +1211.2814 Earth and Planetary Astrophysics +1211.2818 Phenomenology +1211.2823 Cosmology and Nongalactic Astrophysics +1211.2830 Differential Geometry +1211.2836 Dynamical Systems +1211.2846 Soft Condensed Matter +1211.2850 Materials Science +1211.2852 High Energy Astrophysical Phenomena +1211.2854 Information Retrieval +1211.2855 Superconductivity +1211.2858 Software Engineering +1211.2864 Combinatorics +1211.2865 Disordered Systems and Neural Networks +1211.2873 Optics +1211.2875 Cryptography and Security +1211.2878 Populations and Evolution +1211.2880 +1211.2883 Plasma Physics +1211.2885 +1211.2891 Information Retrieval +1211.2896 Commutative Algebra +1211.2903 Group Theory +1211.2904 Instrumentation and Detectors +1211.2914 Solar and Stellar Astrophysics +1211.2917 Statistics Theory +1211.2920 Solar and Stellar Astrophysics +1211.2922 Algebraic Geometry +1211.2924 Phenomenology +1211.2926 Data Structures and Algorithms +1211.2927 Probability +1211.2930 +1211.2932 Lattice +1211.2934 Solar and Stellar Astrophysics +1211.2938 +1211.2941 Number Theory +1211.2945 Applications +1211.2954 Differential Geometry +1211.2955 Mesoscale and Nanoscale Physics +1211.2960 Information Theory +1211.2967 Fluid Dynamics +1211.2969 Analysis of PDEs +1211.2970 Statistics Theory +1211.2979 Statistics Theory +1211.2980 Combinatorics +1211.2982 Metric Geometry +1211.2985 Information Theory +1211.2998 Statistics Theory +1211.3003 Probability +1211.3005 Probability +1211.3007 Mesoscale and Nanoscale Physics +1211.3010 Machine Learning +1211.3016 Databases +1211.3017 +1211.3019 Dynamical Systems +1211.3020 Systems and Control +1211.3022 Dynamical Systems +1211.3023 Soft Condensed Matter +1211.3024 Disordered Systems and Neural Networks +1211.3027 Lattice +1211.3029 Analysis of PDEs +1211.3033 Mesoscale and Nanoscale Physics +1211.3034 Mesoscale and Nanoscale Physics +1211.3041 Metric Geometry +1211.3042 Earth and Planetary Astrophysics +1211.3047 +1211.3053 Populations and Evolution +1211.3060 Statistical Finance +1211.3061 Instrumentation and Methods for Astrophysics +1211.3063 Robotics +1211.3085 Emerging Technologies +1211.3087 Applications +1211.3091 Theory +1211.3101 Differential Geometry +1211.3102 General Finance +1211.3103 Complex Variables +1211.3104 Materials Science +1211.3107 Number Theory +1211.3110 Number Theory +hep-ex/0411079 Experiment +math/0310132 Combinatorics +math/0408219 Differential Geometry +1110.1601 Phenomenology +0707.2792 +0710.0999 +0712.0975 +0807.4253 +0807.4753 +0903.1381 Combinatorics +0912.4703 Classical Analysis and ODEs +1001.3913 Atomic Physics +1003.4822 Strongly Correlated Electrons +1003.4994 +1005.2047 Strongly Correlated Electrons +1006.2932 Optics +1007.4469 Quantum Algebra +1007.5308 Mesoscale and Nanoscale Physics +1008.0664 Theory +1008.4821 Superconductivity +1011.1974 +1012.2133 Statistics Theory +1103.0177 Dynamical Systems +1103.1347 Superconductivity +1103.1863 +1103.2016 +1103.3006 Cosmology and Nongalactic Astrophysics +1103.5802 Atomic Physics +1104.3811 Rings and Algebras +1104.4999 Classical Analysis and ODEs +1105.1437 Analysis of PDEs +1105.2636 Cosmology and Nongalactic Astrophysics +1106.0945 +1106.1875 Logic in Computer Science +1107.2158 Materials Science +1107.5383 Logic +1109.0006 Phenomenology +1109.0891 General Finance +1109.3632 Theory +1109.6416 Cryptography and Security +1110.0196 Networking and Internet Architecture +1110.1516 Molecular Networks +1110.4038 Cosmology and Nongalactic Astrophysics +1110.5117 Algebraic Geometry +1111.2531 Materials Science +1111.4489 Algebraic Geometry +1111.4595 +1111.6571 Superconductivity +1111.7219 Emerging Technologies +1112.2637 Combinatorics +1112.4799 High Energy Astrophysical Phenomena +1112.5052 Dynamical Systems +1112.5251 Strongly Correlated Electrons +1112.5304 Methodology +1112.5870 Geometric Topology +1201.0494 Analysis of PDEs +1201.1138 +1201.3348 Superconductivity +1201.5777 Chemical Physics +1201.6081 Soft Condensed Matter +1202.1851 Superconductivity +1202.2366 Theory +1202.2439 Probability +1202.2793 Soft Condensed Matter +1202.4979 Experiment +1202.5669 +1202.5695 Learning +1202.6657 Combinatorics +1203.0170 Strongly Correlated Electrons +1203.1597 Probability +1203.3196 Phenomenology +1203.3651 Quantum Gases +1203.5232 Rings and Algebras +1204.2549 Astrophysics of Galaxies +1204.3423 Other Condensed Matter +1204.3620 General Physics +1204.3885 Physics and Society +1204.6739 Cosmology and Nongalactic Astrophysics +1205.1063 +1205.1275 Solar and Stellar Astrophysics +1205.2766 Data Structures and Algorithms +1205.4305 Mesoscale and Nanoscale Physics +1205.5157 +1205.6778 Theory +1205.6840 Earth and Planetary Astrophysics +1206.1579 Artificial Intelligence +1206.2191 Superconductivity +1206.3049 Complex Variables +1206.4365 Phenomenology +1206.4428 Materials Science +1206.4762 Statistics Theory +1206.4766 Pricing of Securities +1206.5985 Strongly Correlated Electrons +1206.6113 +1206.6490 Other Quantitative Biology +1206.6543 Phenomenology +1206.6913 Statistics Theory +1206.7038 Systems and Control +1207.0457 Phenomenology +1207.0823 Phenomenology +1207.0905 Quantum Algebra +1207.0949 Experiment +1207.0952 Experiment +1207.1018 Statistical Mechanics +1207.1098 Networking and Internet Architecture +1207.1112 Optics +1207.1115 Machine Learning +1207.1124 Adaptation and Self-Organizing Systems +1207.1126 Number Theory +1207.1134 Functional Analysis +1207.1135 Data Structures and Algorithms +1207.1136 Astrophysics of Galaxies +1207.1137 Networking and Internet Architecture +1207.1140 Information Theory +1207.1144 Chemical Physics +1207.1145 Optimization and Control +1207.1148 Chemical Physics +1207.1154 Materials Science +1207.1155 Complex Variables +1207.1156 Instrumentation and Detectors +1207.1161 Emerging Technologies +1207.1166 Networking and Internet Architecture +1207.1169 Statistical Mechanics +1207.1171 Experiment +1207.1173 Software Engineering +1207.1174 Functional Analysis +1207.1188 Logic in Computer Science +1207.1189 Physics and Society +1207.1190 Materials Science +1207.1191 Instrumentation and Methods for Astrophysics +1207.1204 Algebraic Geometry +1207.1207 Phenomenology +1207.1211 Algebraic Geometry +1207.1216 Quantum Gases +1207.1217 Cell Behavior +1207.1221 Methodology +1207.1223 Probability +1207.1232 Functional Analysis +1207.1233 Combinatorics +1207.1234 Earth and Planetary Astrophysics +1207.1235 Analysis of PDEs +1207.1236 Populations and Evolution +1207.1240 Quantitative Methods +1207.1241 Theory +1207.1242 Classical Analysis and ODEs +1207.1248 +1207.1256 Statistics Theory +1207.1264 Logic in Computer Science +1207.1268 Logic in Computer Science +1207.1271 Logic in Computer Science +1207.1272 Logic in Computer Science +1207.1276 Systems and Control +1207.1280 Robotics +1207.1284 Soft Condensed Matter +1207.1290 Probability +1207.1292 Complex Variables +1207.1293 Analysis of PDEs +1207.1300 Operator Algebras +1207.1302 Symplectic Geometry +1207.1312 Biomolecules +1207.1315 Neural and Evolutionary Computing +1207.1316 Theory +1207.1319 Chaotic Dynamics +1207.1322 Soft Condensed Matter +1207.1323 Rings and Algebras +1207.1326 Geometric Topology +1207.1327 Materials Science +1207.1328 Accelerator Physics +1207.1334 Accelerator Physics +1207.1335 Symplectic Geometry +1207.1336 Combinatorics +1207.1337 Distributed, Parallel, and Cluster Computing +1207.1339 Accelerator Physics +1207.1343 Analysis of PDEs +cond-mat/0511124 Soft Condensed Matter +math/0509692 Geometric Topology +gr-qc/0210036 +0707.4398 +0709.4592 K-Theory and Homology +0903.2027 +0904.2426 Statistics Theory +0909.3017 +0910.1315 +1003.3373 Probability +1004.5568 Solar and Stellar Astrophysics +1006.0689 Cosmology and Nongalactic Astrophysics +1007.2390 Algebraic Topology +1008.2218 Methodology +1008.4653 Mesoscale and Nanoscale Physics +1008.4764 Complex Variables +1009.0764 Phenomenology +1009.1216 Computation +1009.1959 Mesoscale and Nanoscale Physics +1010.1690 Dynamical Systems +1010.4341 Analysis of PDEs +1011.5400 Operator Algebras +1012.2327 +1012.4183 Statistics Theory +1012.5564 Theory +1101.3834 Algebraic Topology +1102.0470 Methodology +1103.1141 +1104.2696 Algebraic Topology +1104.2913 Operator Algebras +1105.5109 Superconductivity +1107.0901 Computational Geometry +1107.0906 Number Theory +1107.1002 Strongly Correlated Electrons +1107.1334 Superconductivity +1107.4349 Quantum Gases +1107.5807 General Physics +1108.0272 Superconductivity +1108.1898 Mesoscale and Nanoscale Physics +1108.2228 Machine Learning +1108.3017 Phenomenology +1108.3021 Algebraic Topology +1109.1409 Multiagent Systems +1109.3359 Phenomenology +1109.4196 Fluid Dynamics +1109.4205 Experiment +1109.4215 Experiment +1109.5904 Statistical Mechanics +1109.6887 +1110.2371 +1110.3418 +1110.5058 +1111.1809 +1111.5112 +1111.6049 High Energy Astrophysical Phenomena +1112.0362 Quantum Gases +1112.4433 Phenomenology +1112.4743 Statistical Mechanics +1112.4870 Solar and Stellar Astrophysics +1201.1432 Disordered Systems and Neural Networks +1201.2296 +1201.4369 Statistical Mechanics +1201.5782 Strongly Correlated Electrons +1202.1199 Quantum Gases +1202.1676 Medical Physics +1202.1713 +1202.4319 Materials Science +1202.6214 +1203.0263 Computational Physics +1203.0658 +1203.1319 Astrophysics of Galaxies +1203.1506 Discrete Mathematics +1203.2815 Operator Algebras +1203.4437 Fluid Dynamics +1203.5522 +1203.5799 High Energy Astrophysical Phenomena +1204.0262 Neural and Evolutionary Computing +1204.1301 Dynamical Systems +1204.1401 +1204.1704 Computer Vision and Pattern Recognition +1204.1744 Astrophysics of Galaxies +1204.2793 Exactly Solvable and Integrable Systems +1204.3270 Neurons and Cognition +1204.3979 Phenomenology +1204.4315 Materials Science +1204.4435 Geometric Topology +1204.4445 Probability +1204.4853 Phenomenology +1204.5331 +1204.5419 Differential Geometry +1204.5772 Theory +1204.6034 Materials Science +1204.6035 General Physics +1204.6048 Cosmology and Nongalactic Astrophysics +1204.6053 Other Condensed Matter +1204.6054 Statistics Theory +1204.6060 Biomolecules +1204.6062 General Physics +1204.6072 Physics Education +1204.6075 Group Theory +1204.6076 Databases +1204.6077 Databases +1204.6078 Databases +1204.6079 Databases +1204.6080 Databases +1204.6081 Databases +1204.6082 Databases +1204.6083 Materials Science +1204.6089 Multiagent Systems +1204.6090 Multiagent Systems +1204.6091 Multiagent Systems +1204.6095 Mesoscale and Nanoscale Physics +1204.6098 Information Theory +1204.6099 Plasma Physics +1204.6101 Solar and Stellar Astrophysics +1204.6102 Materials Science +1204.6104 Solar and Stellar Astrophysics +1204.6106 Information Theory +1204.6107 Statistical Mechanics +1204.6116 Differential Geometry +1204.6119 Analysis of PDEs +1204.6120 Functional Analysis +1204.6123 Functional Analysis +1204.6125 Differential Geometry +1204.6127 Differential Geometry +1204.6128 Numerical Analysis +1204.6130 Statistical Mechanics +1204.6131 Representation Theory +1204.6138 Materials Science +1204.6142 Metric Geometry +1204.6145 Phenomenology +1204.6147 Classical Analysis and ODEs +1204.6152 Combinatorics +1204.6158 +1204.6161 +1204.6165 Theory +1204.6166 Exactly Solvable and Integrable Systems +1204.6171 Optimization and Control +1204.6176 Neurons and Cognition +1204.6186 Biomolecules +1204.6189 Neurons and Cognition +1204.6195 Materials Science +1204.6196 Solar and Stellar Astrophysics +1204.6198 Geometric Topology +1204.6207 Combinatorics +1204.6211 Probability +1204.6225 Materials Science +1204.6226 Populations and Evolution +1204.6228 Category Theory +1204.6231 Other Quantitative Biology +1204.6233 Data Structures and Algorithms +1204.6234 Accelerator Physics +1204.6236 Logic in Computer Science +1204.6241 History and Philosophy of Physics +1204.6244 Rings and Algebras +1204.6249 Numerical Analysis +1204.6250 Systems and Control +1204.6252 Materials Science +1204.6255 Numerical Analysis +1204.6257 Algebraic Geometry +1204.6258 Dynamical Systems +1204.6264 Phenomenology +1204.6267 Fluid Dynamics +1204.6270 Numerical Analysis +1204.6272 Differential Geometry +1204.6276 Algebraic Topology +1204.6277 Algebraic Geometry +1204.6280 Statistical Mechanics +1204.6284 Artificial Intelligence +1204.6286 Methodology +1204.6287 Complex Variables +1204.6293 Operator Algebras +1204.6294 Combinatorics +1204.6295 Medical Physics +1204.6297 Number Theory +1204.6304 Performance +1204.6311 Dynamical Systems +physics/0102014 General Physics +quant-ph/0405047 +quant-ph/0502010 +quant-ph/0703144 +0806.1500 Combinatorics +0905.2224 Analysis of PDEs +0909.5243 Representation Theory +0911.2483 Algebraic Topology +0912.2909 Atomic Physics +0912.4808 +1003.4091 Algebraic Geometry +1004.1495 Algebraic Geometry +1004.1670 Risk Management +1005.4232 Instrumentation and Methods for Astrophysics +1006.5235 Data Structures and Algorithms +1007.1272 Networking and Internet Architecture +1007.4344 Functional Analysis +1008.5367 Computer Science and Game Theory +1010.1642 Theory +1010.5030 Dynamical Systems +1101.0502 Analysis of PDEs +1102.1361 +1102.2349 Number Theory +1102.2626 +1105.0897 Superconductivity +1105.3671 Cryptography and Security +1105.5337 Superconductivity +1105.5345 Superconductivity +1105.5525 Superconductivity +1106.0345 Algebraic Geometry +1106.4502 General Finance +1106.5904 Combinatorics +1107.2785 High Energy Astrophysical Phenomena +1107.3797 Statistics Theory +1107.4448 Materials Science +1108.1303 Group Theory +1108.1574 Superconductivity +1108.1661 Group Theory +1108.4834 Chemical Physics +1108.5685 Dynamical Systems +1108.6328 Databases +1109.0226 Strongly Correlated Electrons +1109.1431 +1109.2397 Learning +1109.3123 Optics +1109.3367 Computational Complexity +1109.4310 Quantum Gases +1110.3004 Statistical Mechanics +1110.3404 Superconductivity +1110.3411 Operator Algebras +1110.4027 Soft Condensed Matter +1110.5386 +1110.6448 Phenomenology +1111.0874 Algebraic Geometry +1111.1444 Phenomenology +1111.2009 Strongly Correlated Electrons +1111.2813 Accelerator Physics +1111.7112 Mesoscale and Nanoscale Physics +1112.4225 +1112.6243 Strongly Correlated Electrons +1201.2749 Statistical Mechanics +1201.3654 Cosmology and Nongalactic Astrophysics +1201.4228 Statistical Mechanics +1201.4720 Theory +1201.4884 +1201.6382 +1202.0939 +1202.1204 +1202.1315 Mesoscale and Nanoscale Physics +1202.2178 Phenomenology +1202.3574 Quantum Gases +1202.5291 Combinatorics +1202.5303 Strongly Correlated Electrons +1202.5564 Superconductivity +1203.1488 Phenomenology +1203.1978 Atomic Physics +1203.5947 +1203.5970 +1203.6424 Risk Management +1204.1030 General Physics +1204.1534 Quantum Algebra +1204.1699 +1204.2548 Superconductivity +1204.3584 Solar and Stellar Astrophysics +1204.3904 Dynamical Systems +1204.4119 Numerical Analysis +1204.4297 Operator Algebras +1204.4326 Atomic Physics +1204.4392 Classical Analysis and ODEs +1204.4448 Solar and Stellar Astrophysics +1204.4459 Networking and Internet Architecture +1204.4460 Methodology +1204.4461 Mesoscale and Nanoscale Physics +1204.4463 Strongly Correlated Electrons +1204.4464 Dynamical Systems +1204.4465 Networking and Internet Architecture +1204.4467 Networking and Internet Architecture +1204.4475 Distributed, Parallel, and Cluster Computing +1204.4476 Computer Vision and Pattern Recognition +1204.4488 Logic +1204.4493 Analysis of PDEs +1204.4498 Information Theory +1204.4499 +1204.4506 +1204.4510 Instrumentation and Methods for Astrophysics +1204.4512 Materials Science +1204.4513 Commutative Algebra +1204.4514 Combinatorics +1204.4515 Combinatorics +1204.4516 Combinatorics +1204.4517 Fluid Dynamics +1204.4519 Lattice +1204.4521 Learning +1204.4525 Probability +1204.4528 Social and Information Networks +1204.4529 High Energy Astrophysical Phenomena +1204.4532 Mesoscale and Nanoscale Physics +1204.4534 +1204.4541 Artificial Intelligence +1204.4544 Methodology +1204.4549 Symplectic Geometry +1204.4557 Fluid Dynamics +1204.4558 Neurons and Cognition +1204.4560 Neural and Evolutionary Computing +1204.4562 Data Structures and Algorithms +1204.4565 Distributed, Parallel, and Cluster Computing +1204.4569 Exactly Solvable and Integrable Systems +1204.4575 High Energy Astrophysical Phenomena +1204.4577 Geometric Topology +1204.4578 Computational Complexity +1204.4579 Phenomenology +1204.4580 Combinatorics +1204.4583 Combinatorics +1204.4586 +1204.4587 +1204.4591 Phenomenology +1204.4596 +1204.4597 Adaptation and Self-Organizing Systems +1204.4600 Adaptation and Self-Organizing Systems +1204.4603 Theory +1204.4605 Number Theory +1204.4606 Pattern Formation and Solitons +1204.4607 Materials Science +1204.4608 Materials Science +1204.4611 Statistics Theory +1204.4613 Analysis of PDEs +1204.4618 Mesoscale and Nanoscale Physics +1204.4620 Classical Analysis and ODEs +1204.4621 Functional Analysis +1204.4626 Systems and Control +1204.4631 Computational Finance +1204.4638 +1204.4639 Formal Languages and Automata Theory +1204.4649 Astrophysics of Galaxies +1204.4651 +1204.4658 Theory +1204.4659 Computational Complexity +1204.4662 Mesoscale and Nanoscale Physics +1204.4666 Data Structures and Algorithms +1204.4667 Geometric Topology +1204.4671 Number Theory +1204.4677 Statistics Theory +1204.4681 Probability +1204.4685 Logic in Computer Science +1204.4686 Information Theory +1204.4689 Analysis of PDEs +1204.4693 Algebraic Geometry +1204.4694 Dynamical Systems +1204.4696 Instrumentation and Methods for Astrophysics +1204.4700 Astrophysics of Galaxies +1204.4705 +1204.4708 Machine Learning +1204.4717 Optimization and Control +cond-mat/0607326 Statistical Mechanics +math/0504607 Combinatorics +nucl-th/0402015 +physics/0503156 Classical Physics +0710.1976 Discrete Mathematics +0812.3403 Other Condensed Matter +0903.1863 Other Condensed Matter +0910.1713 Quantum Algebra +0912.4456 Cosmology and Nongalactic Astrophysics +0912.5144 Algebraic Geometry +1001.0154 Rings and Algebras +1004.2130 Dynamical Systems +1006.3345 Number Theory +1006.5581 Complex Variables +1007.0998 Geometric Topology +1009.0432 Instrumentation and Detectors +1009.4211 Pricing of Securities +1010.6191 Metric Geometry +1011.2865 Dynamical Systems +1012.5840 Strongly Correlated Electrons +1101.4014 +1103.3914 +1104.2249 Materials Science +1104.2599 Formal Languages and Automata Theory +1104.3278 Instrumentation and Detectors +1105.1511 +1105.1990 Cosmology and Nongalactic Astrophysics +1105.2261 Cosmology and Nongalactic Astrophysics +1105.4260 Group Theory +1105.5539 Operator Algebras +1106.2041 Cosmology and Nongalactic Astrophysics +1106.3419 Strongly Correlated Electrons +1106.3946 Superconductivity +1106.4943 Algebraic Topology +1106.5010 Category Theory +1107.2582 Atomic Physics +1107.3238 Functional Analysis +1107.4906 Commutative Algebra +1107.4918 Computational Engineering, Finance, and Science +1107.4954 Analysis of PDEs +1108.0565 Cosmology and Nongalactic Astrophysics +1108.0896 +1108.0950 +1108.1578 Combinatorics +1108.2264 Solar and Stellar Astrophysics +1108.2768 +1108.2791 Strongly Correlated Electrons +1108.3068 Cosmology and Nongalactic Astrophysics +1108.5130 Group Theory +1108.5490 +1108.5936 Optics +1109.1104 Mesoscale and Nanoscale Physics +1109.1430 Superconductivity +1109.1711 Mesoscale and Nanoscale Physics +1109.3013 Statistical Mechanics +1109.3666 Atomic Physics +1109.5988 Algebraic Geometry +1109.6229 Strongly Correlated Electrons +1109.6528 Commutative Algebra +1110.1256 Atomic Physics +1110.2080 Phenomenology +1110.2182 Cosmology and Nongalactic Astrophysics +1110.2957 Disordered Systems and Neural Networks +1110.3309 Quantum Gases +1110.3322 Strongly Correlated Electrons +1110.4927 Mesoscale and Nanoscale Physics +1110.5435 Dynamical Systems +1111.0670 Formal Languages and Automata Theory +1111.2052 Strongly Correlated Electrons +1111.2807 Statistics Theory +1111.3208 Quantum Gases +1111.3223 Strongly Correlated Electrons +1111.4095 +1111.4321 Atomic Physics +1111.5248 Quantum Gases +1111.5532 General Physics +1111.5957 Soft Condensed Matter +1111.6046 Cosmology and Nongalactic Astrophysics +1112.1400 Cosmology and Nongalactic Astrophysics +1112.1845 Earth and Planetary Astrophysics +1112.3628 Phenomenology +1112.3751 Mesoscale and Nanoscale Physics +1112.3913 +1112.4768 Populations and Evolution +1112.4792 Mesoscale and Nanoscale Physics +1112.5875 Strongly Correlated Electrons +1112.6113 Phenomenology +1201.2363 Group Theory +1201.3010 +1201.4232 Number Theory +1201.6408 Phenomenology +1201.6418 General Finance +1202.0070 +1202.0882 Cosmology and Nongalactic Astrophysics +1202.1350 Distributed, Parallel, and Cluster Computing +1202.2061 Classical Analysis and ODEs +1202.2228 Optics +1202.3667 Databases +1202.3951 Optimization and Control +1202.3981 Number Theory +1202.4114 Superconductivity +1202.4227 Representation Theory +1202.4279 Soft Condensed Matter +1202.4440 +1202.4448 Phenomenology +1202.4478 Computer Science and Game Theory +1202.4567 +1202.4610 Probability +1202.4622 Number Theory +1202.4708 +1202.4766 Representation Theory +1202.4771 Probability +1202.4775 Phenomenology +1202.4776 +1202.4777 Probability +1202.4781 +1202.4784 Dynamical Systems +1202.4792 History and Philosophy of Physics +1202.4793 Superconductivity +1202.4794 Biomolecules +1202.4797 Probability +1202.4801 Atomic Physics +1202.4803 Category Theory +1202.4805 Social and Information Networks +1202.4809 Phenomenology +1202.4813 Lattice +1202.4814 Rings and Algebras +1202.4818 Databases +1202.4819 Solar and Stellar Astrophysics +1202.4823 Chaotic Dynamics +1202.4824 Logic in Computer Science +1202.4826 Geophysics +1202.4828 Artificial Intelligence +1202.4829 Logic in Computer Science +1202.4830 Mathematical Software +1202.4831 Symbolic Computation +1202.4832 Logic in Computer Science +1202.4833 Computational Geometry +1202.4834 Logic in Computer Science +1202.4835 Logic in Computer Science +1202.4836 Software Engineering +1202.4837 Mathematical Software +1202.4838 Phenomenology +1202.4843 Soft Condensed Matter +1202.4845 Probability +1202.4846 Mesoscale and Nanoscale Physics +1202.4856 Information Theory +1202.4862 Combinatorics +1202.4865 Networking and Internet Architecture +1202.4868 Genomics +1202.4871 Cryptography and Security +1202.4875 Probability +1202.4886 +1202.4897 Differential Geometry +1202.4906 Phenomenology +1202.4907 Strongly Correlated Electrons +1202.4908 Cosmology and Nongalactic Astrophysics +1202.4912 Formal Languages and Automata Theory +1202.4916 Lattice +1202.4923 Populations and Evolution +1202.4932 Phenomenology +1202.4939 Biomolecules +1202.4941 Other Computer Science +1202.4945 Data Structures and Algorithms +1202.4951 +1202.4954 Algebraic Topology +1202.4955 Experiment +1202.4959 Information Theory +1202.4960 Group Theory +1202.4966 Phenomenology +1202.4969 Analysis of PDEs +1202.4972 Combinatorics +1202.4974 Probability +1202.4975 +1202.4988 Combinatorics +1202.4989 High Energy Astrophysical Phenomena +1202.4991 +1202.4994 Superconductivity +1202.4995 +1202.5003 Data Structures and Algorithms +1202.5006 +1202.5007 Group Theory +1202.5008 Number Theory +1202.5025 Computer Science and Game Theory +cond-mat/0702057 Other Condensed Matter +math/0503648 Geometric Topology +math/0608624 Differential Geometry +0707.0240 Algebraic Topology +0803.3118 Algebraic Geometry +0804.2948 Algebraic Geometry +0909.3233 Optics +1002.2165 Spectral Theory +1002.2318 Rings and Algebras +1003.0311 Soft Condensed Matter +1003.0916 Algebraic Geometry +1005.3454 Portfolio Management +1006.3224 Computational Finance +1006.3496 Fluid Dynamics +1006.4778 Materials Science +1009.0795 Analysis of PDEs +1009.2782 Pricing of Securities +1011.3996 Probability +1101.0002 Cosmology and Nongalactic Astrophysics +1101.1822 Probability +1101.1890 Data Analysis, Statistics and Probability +1101.2248 Lattice +1101.2861 Soft Condensed Matter +1102.2450 Statistics Theory +1102.5306 Probability +1103.5008 Optics +1103.6017 Phenomenology +1104.2141 Complex Variables +1104.4073 Optics +1104.5105 Optics +1105.0612 Theory +1105.6046 Functional Analysis +1106.1497 Probability +1106.3222 Differential Geometry +1106.5915 Probability +1109.5407 Optics +1110.3519 Rings and Algebras +1110.4786 Functional Analysis +1110.5752 Fluid Dynamics +1111.2761 +1111.5609 +1112.2093 Machine Learning +1112.2607 +1112.6022 Quantum Gases +1112.6309 Mesoscale and Nanoscale Physics +1201.0388 Statistical Mechanics +1201.1117 Chemical Physics +1201.2036 Data Analysis, Statistics and Probability +1201.3797 +1201.4359 +1201.6263 Materials Science +1202.0790 +1202.3316 Other Condensed Matter +1202.3925 +1202.6304 Materials Science +1203.1022 Phenomenology +1203.1318 Cosmology and Nongalactic Astrophysics +1203.1859 +1203.1881 Plasma Physics +1203.6409 Experiment +1204.0137 Solar and Stellar Astrophysics +1204.5041 Cosmology and Nongalactic Astrophysics +1205.1667 Biomolecules +1205.3722 Theory +1205.6076 Lattice +1205.6085 Cosmology and Nongalactic Astrophysics +1206.2532 Cosmology and Nongalactic Astrophysics +1206.3884 +1206.4204 +1206.4941 +1206.6025 Optics +1206.6160 Combinatorics +1206.6530 Strongly Correlated Electrons +1207.4842 Phenomenology +1208.1098 Statistical Mechanics +1208.1276 Chaotic Dynamics +1208.1915 Combinatorics +1208.2653 Number Theory +1208.2824 Complex Variables +1208.3848 Computational Engineering, Finance, and Science +1208.3851 Computational Engineering, Finance, and Science +1208.3866 Chemical Physics +1208.3979 Astrophysics of Galaxies +1208.4013 Functional Analysis +1208.4021 Differential Geometry +1208.4094 Materials Science +1208.4096 Mesoscale and Nanoscale Physics +1208.4117 Atomic Physics +1208.4120 Strongly Correlated Electrons +1208.4126 Programming Languages +1208.4138 Learning +1208.4141 Rings and Algebras +1208.4150 Algebraic Geometry +1208.4152 Probability +1208.4153 Rings and Algebras +1208.4166 Databases +1208.4167 Databases +1208.4168 Databases +1208.4169 Databases +1208.4170 Databases +1208.4171 Databases +1208.4172 Databases +1208.4174 Databases +1208.4175 Databases +1208.4176 Databases +1208.4177 Analysis of PDEs +1208.4178 Databases +1208.4179 Databases +1208.4182 Materials Science +1208.4183 Machine Learning +1208.4188 +1208.4189 Classical Physics +1208.4192 Networking and Internet Architecture +1208.4196 Combinatorics +1208.4202 Group Theory +1208.4206 Phenomenology +1208.4207 Fluid Dynamics +1208.4209 Numerical Analysis +1208.4213 Numerical Analysis +1208.4214 Analysis of PDEs +1208.4215 +1208.4216 Materials Science +1208.4217 Tissues and Organs +1208.4218 Combinatorics +1208.4221 Group Theory +1208.4222 Numerical Analysis +1208.4225 Data Structures and Algorithms +1208.4229 Mesoscale and Nanoscale Physics +1208.4230 Spectral Theory +1208.4238 Data Structures and Algorithms +1208.4243 +1208.4251 Solar and Stellar Astrophysics +1208.4254 Optimization and Control +1208.4257 Accelerator Physics +1208.4259 Atomic Physics +1208.4264 Analysis of PDEs +1208.4266 Functional Analysis +1208.4270 Databases +1208.4275 Computation +1208.4282 Probability +1208.4292 Experiment +1208.4293 Cosmology and Nongalactic Astrophysics +1208.4294 Dynamical Systems +1208.4301 Logic in Computer Science +1208.4316 Computer Vision and Pattern Recognition +1208.4321 Logic in Computer Science +1208.4325 Physics and Society +1208.4326 Number Theory +1208.4327 Distributed, Parallel, and Cluster Computing +1208.4328 Metric Geometry +1208.4332 Combinatorics +1208.4335 Dynamical Systems +1208.4336 +1208.4338 Accelerator Physics +1208.4343 Algebraic Geometry +1208.4344 Accelerator Physics +1208.4346 Functional Analysis +1208.4350 Analysis of PDEs +1208.4351 Accelerator Physics +1208.4353 Accelerator Physics +math/0502368 Algebraic Geometry +math/0604173 Algebraic Topology +math/0606521 Algebraic Geometry +math/0701374 Algebraic Geometry +q-bio/0404014 Biomolecules +0712.4231 Strongly Correlated Electrons +0804.1319 Chemical Physics +0805.1633 Mesoscale and Nanoscale Physics +0805.3372 Complex Variables +0904.3877 Complex Variables +0905.1471 Geometric Topology +0906.1363 Algebraic Topology +0908.3249 Complex Variables +0908.3373 Statistical Mechanics +1003.5053 Combinatorics +1006.3235 Theory +1007.1915 Complex Variables +1008.2508 Atomic and Molecular Clusters +1010.4092 Software Engineering +1011.2485 Complex Variables +1012.0030 Phenomenology +1012.2609 Learning +1101.2105 Materials Science +1101.5476 Cosmology and Nongalactic Astrophysics +1102.1947 Probability +1103.0543 +1103.1424 Information Theory +1104.0167 Probability +1104.0488 Cosmology and Nongalactic Astrophysics +1104.0862 Information Theory +1104.3783 Quantitative Methods +1104.3814 Mesoscale and Nanoscale Physics +1105.1697 Statistics Theory +1105.2221 Accelerator Physics +1105.5091 Representation Theory +1106.0793 Combinatorics +1106.3043 Theory +1106.4512 +1106.4520 Combinatorics +1106.5016 Phenomenology +1107.3438 Information Theory +1107.3972 Differential Geometry +1107.4997 Theory +1107.5583 High Energy Astrophysical Phenomena +1107.6013 Statistical Mechanics +1108.1990 Mesoscale and Nanoscale Physics +1108.2430 Phenomenology +1108.2870 Phenomenology +1108.3270 +1108.4670 +1108.4827 High Energy Astrophysical Phenomena +1108.5089 +1109.1396 Learning +1109.1577 Strongly Correlated Electrons +1109.3130 Phenomenology +1109.4424 Statistical Mechanics +1110.0169 Optimization and Control +1110.3367 Probability +1110.3598 Cosmology and Nongalactic Astrophysics +1110.3612 +1110.4037 Strongly Correlated Electrons +1110.4367 Cryptography and Security +1110.5515 Algebraic Geometry +1110.5561 +1111.3568 +1111.4825 Systems and Control +1112.0739 Functional Analysis +1112.1076 High Energy Astrophysical Phenomena +1112.1778 +1112.2982 Lattice +1112.3192 +1112.4047 Accelerator Physics +1112.5349 Plasma Physics +1201.0071 +1201.1860 Materials Science +1201.3052 Physics and Society +1201.5392 Differential Geometry +1201.6325 Biological Physics +1202.0241 Information Theory +1202.1582 Cosmology and Nongalactic Astrophysics +1202.2074 Pattern Formation and Solitons +1202.2317 Strongly Correlated Electrons +1202.2466 Distributed, Parallel, and Cluster Computing +1202.3391 Mesoscale and Nanoscale Physics +1202.5793 Complex Variables +1202.6253 Disordered Systems and Neural Networks +1203.1284 Statistical Mechanics +1203.2120 Analysis of PDEs +1203.2501 Phenomenology +1203.4324 Distributed, Parallel, and Cluster Computing +1203.5784 Theory +1204.0052 Information Theory +1204.1448 Phenomenology +1204.2920 Instrumentation and Detectors +1204.3138 +1204.3900 Mesoscale and Nanoscale Physics +1204.4434 Complex Variables +1204.5596 Mesoscale and Nanoscale Physics +1205.3282 Materials Science +1205.4380 Category Theory +1205.4528 Algebraic Geometry +1205.4746 Soft Condensed Matter +1205.5162 Computational Geometry +1205.5814 Solar and Stellar Astrophysics +1205.6246 Optics +1205.6877 +1206.0414 Other Computer Science +1206.0538 Materials Science +1206.1047 Theory +1206.1061 Artificial Intelligence +1206.1065 Robotics +1206.1066 Computation and Language +1206.1073 +1206.1078 Cryptography and Security +1206.1079 Plasma Physics +1206.1080 Probability +1206.1087 Materials Science +1206.1090 Logic in Computer Science +1206.1094 Materials Science +1206.1095 Number Theory +1206.1099 Systems and Control +1206.1108 Neurons and Cognition +1206.1112 Space Physics +1206.1113 Distributed, Parallel, and Cluster Computing +1206.1116 Information Theory +1206.1117 Probability +1206.1118 Distributed, Parallel, and Cluster Computing +1206.1119 +1206.1122 Mesoscale and Nanoscale Physics +1206.1123 +1206.1127 Number Theory +1206.1128 +1206.1134 Social and Information Networks +1206.1140 Phenomenology +1206.1145 Computer Science and Game Theory +1206.1152 Representation Theory +1206.1153 Biological Physics +1206.1155 Solar and Stellar Astrophysics +1206.1158 Atomic Physics +1206.1162 Analysis of PDEs +1206.1163 Optics +1206.1165 History and Philosophy of Physics +1206.1166 Classical Analysis and ODEs +1206.1168 Classical Analysis and ODEs +1206.1174 Experiment +1206.1175 Algebraic Geometry +1206.1178 Functional Analysis +1206.1179 Functional Analysis +1206.1182 Superconductivity +1206.1186 Plasma Physics +1206.1188 Computer Science and Game Theory +1206.1190 Dynamical Systems +1206.1192 +1206.1198 Materials Science +1206.1199 Instrumentation and Methods for Astrophysics +1206.1204 Performance +1206.1205 High Energy Astrophysical Phenomena +1206.1206 Group Theory +1206.1209 Algebraic Geometry +1206.1210 Probability +1206.1212 Earth and Planetary Astrophysics +1206.1217 Exactly Solvable and Integrable Systems +1206.1223 Phenomenology +1206.1228 Statistics Theory +1206.1241 Probability +1206.1242 Theory +1206.1244 Functional Analysis +1206.1247 Other Computer Science +1206.1250 Number Theory +1206.1253 Biomolecules +1206.1264 Performance +1206.1267 Phenomenology +1206.1292 Functional Analysis +1206.1297 Fluid Dynamics +1206.1298 Solar and Stellar Astrophysics +1206.1300 Combinatorics +1206.1301 Combinatorics +1206.1305 Computational Engineering, Finance, and Science +1206.1307 +1206.1308 Algebraic Geometry +1206.1309 Computational Engineering, Finance, and Science +1206.1310 Classical Analysis and ODEs +1206.1312 Computational Geometry +1206.1317 Logic in Computer Science +1206.1319 Artificial Intelligence +cond-mat/0606787 Mesoscale and Nanoscale Physics +hep-th/0701097 Theory +math/0602004 Algebraic Geometry +1106.3054 Logic in Computer Science +1107.5591 Probability +1205.0979 +1205.2498 Group Theory +0704.0213 Computational Complexity +0705.1120 Theory +0801.3018 General Physics +0801.3019 General Physics +0801.3020 Classical Physics +0801.3033 General Physics +0801.3034 General Physics +0801.3352 Statistics Theory +0801.3573 Classical Physics +0801.3588 Chaotic Dynamics +0801.3775 Classical Physics +0802.0923 Classical Physics +0803.0499 Algebraic Geometry +0807.5107 +0809.3227 Operator Algebras +0809.4507 Theory +0905.4047 Symplectic Geometry +0905.4602 Computation +0907.1265 Operator Algebras +0907.2188 +0907.3314 Operator Algebras +0907.4771 +0908.0480 +0908.1259 Differential Geometry +0908.1916 Information Theory +0910.5422 Dynamical Systems +1001.2245 +1004.2033 Data Structures and Algorithms +1004.3087 Algebraic Geometry +1005.1064 Mesoscale and Nanoscale Physics +1007.0885 Theory +1008.0912 +1009.2268 +1010.3758 Quantum Gases +1010.3978 +1011.4271 Soft Condensed Matter +1011.4427 Instrumentation and Detectors +1012.0060 Mesoscale and Nanoscale Physics +1012.1454 Theory +1012.2348 Quantum Gases +1012.4704 +1012.4969 Algebraic Geometry +1012.5027 Probability +1101.4686 Materials Science +1103.2780 Cosmology and Nongalactic Astrophysics +1105.2501 Classical Analysis and ODEs +1105.3860 Disordered Systems and Neural Networks +1105.6310 +1106.1729 Symplectic Geometry +1106.2125 Methodology +1106.3355 Learning +1106.6317 Differential Geometry +1107.0647 Biological Physics +1107.1089 Distributed, Parallel, and Cluster Computing +1108.3811 +1109.1252 +1109.3954 Data Structures and Algorithms +1109.4200 Dynamical Systems +1109.5829 +1109.5908 Combinatorics +1110.0284 Complex Variables +1110.0366 Algebraic Geometry +1110.1710 Statistical Mechanics +1111.2721 Cosmology and Nongalactic Astrophysics +1111.4422 Numerical Analysis +1111.6714 Quantum Gases +1111.6873 Mesoscale and Nanoscale Physics +1112.4821 +1112.5521 Statistical Mechanics +1112.5785 Theory +1112.5929 +1112.6355 +1201.0128 Cosmology and Nongalactic Astrophysics +1201.6154 Strongly Correlated Electrons +1202.0637 Probability +1202.2063 Classical Analysis and ODEs +1202.3323 Learning +1202.3425 Optics +1202.4603 Differential Geometry +1203.0145 Computation and Language +1203.0401 +1203.0422 Theory +1203.2005 Quantum Gases +1203.2286 Cosmology and Nongalactic Astrophysics +1203.3086 +1203.4107 Metric Geometry +1203.4164 Quantum Algebra +1203.5907 Quantum Gases +1204.0370 Disordered Systems and Neural Networks +1204.2790 Phenomenology +1205.1105 Numerical Analysis +1205.1429 +1205.1819 Applications +1205.2402 +1205.3048 +1205.3700 Optics +1205.5731 Superconductivity +1205.5753 Cosmology and Nongalactic Astrophysics +1205.6454 Differential Geometry +1206.0112 Biological Physics +1206.0615 Materials Science +1206.0904 Superconductivity +1206.0919 Phenomenology +1206.1682 Mesoscale and Nanoscale Physics +1206.2920 Theory +1206.3306 Cosmology and Nongalactic Astrophysics +1206.3405 +1206.3478 Theory +1206.3812 +1206.4507 Atomic Physics +1206.4974 Quantum Gases +1206.5380 Quantum Gases +1206.6324 +1207.0897 Materials Science +1207.1183 Cosmology and Nongalactic Astrophysics +1207.1494 Mesoscale and Nanoscale Physics +1207.1815 Cosmology and Nongalactic Astrophysics +1207.2186 Cosmology and Nongalactic Astrophysics +1207.4210 Instrumentation and Detectors +1207.4943 Mesoscale and Nanoscale Physics +1207.5873 Materials Science +1207.5991 Experiment +1207.7138 Experiment +1208.0101 Superconductivity +1208.3304 Quantum Gases +1208.3479 Materials Science +1208.3752 Exactly Solvable and Integrable Systems +1208.4888 Statistical Mechanics +1208.6566 Experiment +1209.0279 +1209.0569 Superconductivity +1209.0721 Strongly Correlated Electrons +1209.0758 Soft Condensed Matter +1209.1247 Differential Geometry +1209.2217 Biological Physics +1209.2340 Cryptography and Security +1209.3331 Information Theory +1209.3468 History and Philosophy of Physics +1209.4043 Theory +1209.4059 History and Philosophy of Physics +1209.4370 Astrophysics of Galaxies +1209.4972 Commutative Algebra +1209.5018 Number Theory +1209.5284 Theory +1209.5354 Phenomenology +1209.5760 Genomics +1209.5866 Symplectic Geometry +1209.5898 Statistical Mechanics +1209.6064 Classical Analysis and ODEs +1209.6066 Analysis of PDEs +1209.6070 Learning +1209.6074 +1209.6075 +1209.6089 Analysis of PDEs +1209.6098 +1209.6108 Soft Condensed Matter +1209.6112 Materials Science +1209.6113 +1209.6118 +1209.6125 Computers and Society +1209.6129 Data Structures and Algorithms +1209.6133 Classical Analysis and ODEs +1209.6140 Human-Computer Interaction +1209.6141 Applications +1209.6143 Optimization and Control +1209.6144 Cryptography and Security +1209.6149 Combinatorics +1209.6151 Computer Vision and Pattern Recognition +1209.6153 Strongly Correlated Electrons +1209.6157 Solar and Stellar Astrophysics +1209.6161 Differential Geometry +1209.6163 Software Engineering +1209.6165 Statistical Mechanics +1209.6167 Applications +1209.6172 Applications +1209.6173 Mesoscale and Nanoscale Physics +1209.6176 Materials Science +1209.6182 Networking and Internet Architecture +1209.6189 Computer Vision and Pattern Recognition +1209.6190 Computer Vision and Pattern Recognition +1209.6195 Artificial Intelligence +1209.6196 Solar and Stellar Astrophysics +1209.6198 +1209.6200 Optics +1209.6201 Fluid Dynamics +1209.6202 Differential Geometry +1209.6204 Computer Vision and Pattern Recognition +1209.6209 Functional Analysis +1209.6210 Applications +1209.6214 Phenomenology +1209.6216 Experiment +1209.6219 Representation Theory +1209.6221 Applications +1209.6225 Solar and Stellar Astrophysics +1209.6227 Operator Algebras +1209.6228 Cryptography and Security +1209.6230 Mesoscale and Nanoscale Physics +1209.6231 Cosmology and Nongalactic Astrophysics +1209.6232 Solar and Stellar Astrophysics +1209.6234 Mesoscale and Nanoscale Physics +1209.6236 Functional Analysis +1209.6237 +1209.6238 Computation and Language +1209.6241 Methodology +1209.6242 +1209.6243 Algebraic Geometry +1209.6245 Numerical Analysis +1209.6251 Popular Physics +1209.6254 Methodology +1209.6262 Networking and Internet Architecture +1209.6266 Rings and Algebras +1209.6267 Statistics Theory +1209.6270 Combinatorics +1209.6273 Combinatorics +1209.6275 Analysis of PDEs +1209.6276 Number Theory +1209.6278 Algebraic Geometry +1209.6279 Algebraic Geometry +1209.6280 Astrophysics of Galaxies +1209.6281 Functional Analysis +1209.6290 General Physics +1209.6292 Fluid Dynamics +1209.6293 Number Theory +1209.6294 Operator Algebras +1209.6295 Phenomenology +1209.6297 Databases +1209.6300 General Physics +1209.6301 General Physics +1209.6303 Fluid Dynamics +1209.6305 Phenomenology +1209.6308 Distributed, Parallel, and Cluster Computing +1209.6310 Solar and Stellar Astrophysics +1209.6313 +1209.6316 Biological Physics +1209.6322 +1209.6323 Operator Algebras +1209.6327 Representation Theory +1209.6328 +1209.6329 Learning +1209.6335 Geophysics +1209.6336 Logic in Computer Science +1209.6337 Cryptography and Security +1209.6338 +1209.6340 Spectral Theory +1209.6342 Machine Learning +1209.6344 Methodology +1209.6345 Phenomenology +1209.6353 Chemical Physics +cond-mat/9312067 +hep-th/0604032 Theory +hep-th/9611144 Theory +math-ph/0103007 +math-ph/0311009 +math-ph/0507005 +math-ph/0702030 +math/0002191 Quantum Algebra +math/0101218 Quantum Algebra +math/0112248 Quantum Algebra +math/0212320 Quantum Algebra +math/0405096 Quantum Algebra +math/0410322 Quantum Algebra +math/9812140 Quantum Algebra +math/9812141 Quantum Algebra +math/9904027 Quantum Algebra +q-alg/9501023 Quantum Algebra +q-alg/9506028 Quantum Algebra +q-alg/9710024 Quantum Algebra +0806.1336 Dynamical Systems +0908.4381 Functional Analysis +1001.1672 Probability +1001.2071 Algebraic Topology +1001.2221 Cosmology and Nongalactic Astrophysics +1009.0037 Strongly Correlated Electrons +1011.1464 Algebraic Geometry +1012.2629 Theory +1102.3640 Theory +1103.1090 Number Theory +1105.0410 Functional Analysis +1105.0774 Mesoscale and Nanoscale Physics +1105.3530 Atomic Physics +1106.2153 Cosmology and Nongalactic Astrophysics +1106.4678 Algebraic Geometry +1107.1084 Number Theory +1107.2006 Optimization and Control +1107.2270 Cosmology and Nongalactic Astrophysics +1108.5365 Quantum Algebra +1109.0336 Combinatorics +1109.1998 +1109.3612 Mesoscale and Nanoscale Physics +1109.4687 +1109.6156 Analysis of PDEs +1110.5236 Data Structures and Algorithms +1110.5697 +1111.3049 Atomic Physics +1112.2192 Classical Analysis and ODEs +1201.1134 Cryptography and Security +1201.2257 Risk Management +1201.4833 Representation Theory +1201.5798 +1202.0264 Functional Analysis +1202.0608 Computational Finance +1202.1960 Mesoscale and Nanoscale Physics +1202.3471 +1202.4657 Combinatorics +1203.0445 +1203.0683 Learning +1203.0842 Soft Condensed Matter +1203.1716 Differential Geometry +1203.2086 Mesoscale and Nanoscale Physics +1203.2907 Probability +1203.3446 Phenomenology +1203.3558 Cosmology and Nongalactic Astrophysics +1203.3984 Probability +1203.4880 Mesoscale and Nanoscale Physics +1203.6487 Superconductivity +1203.6628 Mesoscale and Nanoscale Physics +1204.1928 Mesoscale and Nanoscale Physics +1204.2948 Quantum Gases +1204.4008 Mesoscale and Nanoscale Physics +1205.0727 Strongly Correlated Electrons +1205.0885 Chemical Physics +1205.2120 Solar and Stellar Astrophysics +1205.5185 +1205.5250 Mesoscale and Nanoscale Physics +1205.5480 Representation Theory +1205.6181 Chemical Physics +1206.2257 Functional Analysis +1206.3887 Theory +1206.5036 Machine Learning +1206.5527 Solar and Stellar Astrophysics +1206.6278 Phenomenology +1207.0825 Experiment +1207.1714 Strongly Correlated Electrons +1207.1980 Geophysics +1207.2239 Quantum Gases +1207.3080 Cosmology and Nongalactic Astrophysics +1207.3154 Combinatorics +1207.4282 General Physics +1207.4578 Mesoscale and Nanoscale Physics +1208.0146 Optics +1208.0416 Representation Theory +1208.0558 Atomic Physics +1208.3168 +1208.3844 Phenomenology +1208.4239 Soft Condensed Matter +1208.5223 +1208.5785 Rings and Algebras +1208.6122 Digital Libraries +1208.6187 Biological Physics +1209.0029 Learning +1209.0439 Algebraic Geometry +1209.0647 +1209.1065 Representation Theory +1209.1068 Theory +1209.1109 Dynamical Systems +1209.1114 Systems and Control +1209.1120 Instrumentation and Detectors +1209.1122 Computer Science and Game Theory +1209.1123 Systems and Control +1209.1125 Information Retrieval +1209.1128 Information Theory +1209.1129 Numerical Analysis +1209.1131 Combinatorics +1209.1133 Logic +1209.1135 Quantum Algebra +1209.1136 Logic +1209.1142 Numerical Analysis +1209.1143 Experiment +1209.1145 Methodology +1209.1147 Probability +1209.1149 Phenomenology +1209.1151 Symplectic Geometry +1209.1152 Operator Algebras +1209.1156 Statistics Theory +1209.1158 Geometric Topology +1209.1159 +1209.1165 Differential Geometry +1209.1167 Combinatorics +1209.1173 Combinatorics +1209.1176 Discrete Mathematics +1209.1181 Computer Vision and Pattern Recognition +1209.1182 +1209.1184 Atmospheric and Oceanic Physics +1209.1192 Numerical Analysis +1209.1193 Solar and Stellar Astrophysics +1209.1194 Algebraic Geometry +1209.1199 Combinatorics +1209.1200 Instrumentation and Methods for Astrophysics +1209.1205 Instrumentation and Methods for Astrophysics +1209.1206 Operator Algebras +1209.1209 Superconductivity +1209.1211 Superconductivity +1209.1212 Functional Analysis +1209.1213 Functional Analysis +1209.1216 Functional Analysis +1209.1218 Functional Analysis +1209.1221 Functional Analysis +1209.1222 Functional Analysis +1209.1227 Phenomenology +1209.1230 Phenomenology +1209.1231 Materials Science +1209.1233 Combinatorics +1209.1236 Networking and Internet Architecture +1209.1238 +1209.1239 Algebraic Geometry +1209.1241 Phenomenology +1209.1242 Rings and Algebras +1209.1246 Networking and Internet Architecture +1209.1248 Logic in Computer Science +1209.1249 Metric Geometry +1209.1255 Superconductivity +1209.1257 +1209.1262 Combinatorics +1209.1270 Applications +1209.1271 Classical Analysis and ODEs +1209.1273 Functional Analysis +1209.1274 Probability +1209.1277 Instrumentation and Methods for Astrophysics +1209.1281 Statistical Mechanics +1209.1286 Algebraic Geometry +1209.1288 Phenomenology +1209.1289 Representation Theory +1209.1291 Information Theory +1209.1295 Information Theory +1209.1297 Dynamical Systems +1209.1300 Computation and Language +1209.1301 Computation and Language +1209.1302 Statistics Theory +1209.1304 +1209.1309 Fluid Dynamics +1209.1310 Rings and Algebras +1209.1322 Cryptography and Security +1209.1323 Social and Information Networks +1209.1326 Accelerator Physics +1209.1327 Software Engineering +1209.1334 Accelerator Physics +1209.1335 Optimization and Control +1209.1336 Quantum Gases +1209.1338 Accelerator Physics +1209.1343 Fluid Dynamics +1209.1346 Theory +1209.1359 Networking and Internet Architecture +1209.1361 Networking and Internet Architecture +1209.1363 Quantum Algebra +1209.1364 Numerical Analysis +1209.1368 Symplectic Geometry +1209.1371 Populations and Evolution +1209.1372 Physics Education +1209.1373 +1209.1378 Functional Analysis +1107.0399 Computer Vision and Pattern Recognition +1204.0418 Operator Algebras +1205.1255 Analysis of PDEs +1207.4911 Physics and Society +0704.0840 Phenomenology +0710.5583 Analysis of PDEs +0807.3992 +0809.2495 Category Theory +0810.2376 Chaotic Dynamics +0903.3236 Complex Variables +0905.2104 Plasma Physics +0909.2961 Materials Science +0911.3017 Probability +1001.0645 Algebraic Geometry +1002.0683 K-Theory and Homology +1003.1359 +1004.3131 Probability +1005.5643 Theory +1006.3276 Dynamical Systems +1007.2472 Combinatorics +1007.3771 Dynamical Systems +1008.2310 Probability +1008.2523 Materials Science +1009.3555 Quantum Gases +1009.3784 Materials Science +1011.4247 Commutative Algebra +1101.0809 Plasma Physics +1101.1596 Materials Science +1101.5053 Materials Science +1102.4500 Theory +1103.0906 Algebraic Geometry +1103.2802 Probability +1103.3640 +1103.5844 Combinatorics +1104.3718 Mesoscale and Nanoscale Physics +1104.5709 Materials Science +1105.0048 Quantum Gases +1105.4684 Complex Variables +1106.5843 Quantum Gases +1109.0972 Symplectic Geometry +1109.2267 Representation Theory +1109.4941 Theory +1110.3924 Solar and Stellar Astrophysics +1110.5261 Quantum Gases +1111.1322 Materials Science +1111.2348 +1111.5334 Molecular Networks +1112.1361 Operator Algebras +1112.2072 Neurons and Cognition +1112.2229 Theory +1112.4178 Functional Analysis +1112.4229 Cosmology and Nongalactic Astrophysics +1112.6253 Representation Theory +1201.1932 +1202.0413 Soft Condensed Matter +1202.0680 Computational Physics +1202.1795 +1202.2927 Optics +1202.4526 Mesoscale and Nanoscale Physics +1202.4993 Materials Science +1202.5706 Strongly Correlated Electrons +1202.6222 Mesoscale and Nanoscale Physics +1202.6537 Numerical Analysis +1203.1205 Fluid Dynamics +1203.4165 Phenomenology +1203.4702 Medical Physics +1204.5618 Superconductivity +1204.5970 Theory +1205.1100 Representation Theory +1205.1555 Solar and Stellar Astrophysics +1205.1742 +1205.2561 +1205.3577 Statistical Mechanics +1205.3909 +1205.4383 Atomic Physics +1205.5081 Phenomenology +1205.5317 Phenomenology +1205.5512 Quantum Algebra +1206.2961 +1206.3467 Instrumentation and Methods for Astrophysics +1206.4425 Cosmology and Nongalactic Astrophysics +1207.1059 Strongly Correlated Electrons +1207.1627 Mesoscale and Nanoscale Physics +1207.3974 Soft Condensed Matter +1207.6654 Cosmology and Nongalactic Astrophysics +1208.0592 Software Engineering +1208.0791 Experiment +1208.6159 Number Theory +1209.0831 Molecular Networks +1209.0885 Mesoscale and Nanoscale Physics +1209.1509 Materials Science +1209.2033 Combinatorics +1209.2531 Computers and Society +1209.2568 Statistical Mechanics +1209.2612 Computer Science and Game Theory +1209.2616 Biomolecules +1209.2714 Accelerator Physics +1209.2715 Accelerator Physics +1209.2717 Neural and Evolutionary Computing +1209.2721 Analysis of PDEs +1209.2724 Networking and Internet Architecture +1209.2726 Theory +1209.2727 Theory +1209.2732 Quantum Algebra +1209.2735 General Topology +1209.2738 Cryptography and Security +1209.2739 +1209.2742 Probability +1209.2748 +1209.2749 Algebraic Geometry +1209.2755 Information Theory +1209.2756 Mesoscale and Nanoscale Physics +1209.2759 Learning +1209.2760 Number Theory +1209.2765 Superconductivity +1209.2768 Instrumentation and Methods for Astrophysics +1209.2769 Combinatorics +1209.2778 Physics and Society +1209.2779 Analysis of PDEs +1209.2784 Learning +1209.2786 +1209.2790 Learning +1209.2793 Biomolecules +1209.2799 Mesoscale and Nanoscale Physics +1209.2806 Networking and Internet Architecture +1209.2807 Digital Libraries +1209.2808 Mesoscale and Nanoscale Physics +1209.2810 Networking and Internet Architecture +1209.2811 Numerical Analysis +1209.2812 +1209.2813 General Finance +1209.2816 Computer Vision and Pattern Recognition +1209.2818 Geometric Topology +1209.2823 Accelerator Physics +1209.2824 Analysis of PDEs +1209.2825 Phenomenology +1209.2827 Chemical Physics +1209.2832 Solar and Stellar Astrophysics +1209.2833 Optics +1209.2835 Fluid Dynamics +1209.2839 Geometric Topology +1209.2846 Phenomenology +1209.2848 Data Structures and Algorithms +1209.2852 Functional Analysis +1209.2855 Multimedia +1209.2859 Probability +1209.2862 +1209.2865 Optimization and Control +1209.2868 Social and Information Networks +1209.2869 Phenomenology +1209.2872 Mesoscale and Nanoscale Physics +1209.2873 Data Analysis, Statistics and Probability +1209.2874 Phenomenology +1209.2875 Computational Complexity +1209.2876 +1209.2881 Probability +1209.2884 Dynamical Systems +1209.2886 Group Theory +1209.2887 Information Theory +1209.2889 Geophysics +1209.2894 Information Theory +1209.2896 Group Theory +1209.2900 Phenomenology +1209.2903 Computer Vision and Pattern Recognition +1209.2904 Soft Condensed Matter +1209.2905 Multimedia +1209.2908 Rings and Algebras +1209.2910 Social and Information Networks +1209.2912 General Topology +1209.2924 Symplectic Geometry +1209.2932 Optimization and Control +1209.2935 Chemical Physics +1209.2937 Cell Behavior +1209.2938 Algebraic Geometry +1209.2947 Mesoscale and Nanoscale Physics +1209.2948 Neural and Evolutionary Computing +1209.2951 Computational Geometry +1209.2954 Statistical Mechanics +1209.2956 Dynamical Systems +1209.2958 +1209.2959 Superconductivity +1209.2960 Theory +1209.2964 +1209.2967 Geometric Topology +1209.2973 Subcellular Processes +1209.2974 Adaptation and Self-Organizing Systems +1209.2978 Statistics Theory +1209.2982 +1209.2984 Number Theory +1209.2988 Analysis of PDEs +1209.2989 Probability +1209.2991 Commutative Algebra +1209.2996 Accelerator Physics +1209.3000 Operator Algebras +1209.3002 Representation Theory +1209.3007 Accelerator Physics +1209.3008 Commutative Algebra +1209.3009 +1209.3012 +cs/0607105 Numerical Analysis +hep-lat/0303008 Lattice +math/0004038 Differential Geometry +math/0507287 Algebraic Geometry +math/0702265 Commutative Algebra +physics/0601046 Optics +0712.2637 Probability +0807.4267 Statistical Mechanics +0906.2745 Functional Analysis +0910.1958 Dynamical Systems +1002.2539 Space Physics +1004.1341 Machine Learning +1005.4250 Cosmology and Nongalactic Astrophysics +1008.2908 Machine Learning +1009.0662 Space Physics +1009.4824 Molecular Networks +1009.5480 Optics +1011.0520 Optimization and Control +1011.1427 Exactly Solvable and Integrable Systems +1012.2417 Strongly Correlated Electrons +1012.4436 Number Theory +1102.0896 Quantum Gases +1102.3006 Algebraic Geometry +1102.5040 Phenomenology +1104.1734 Optics +1104.4445 Exactly Solvable and Integrable Systems +1105.0211 K-Theory and Homology +1105.2357 Combinatorics +1105.2390 Space Physics +1106.1050 Optics +1106.1157 Learning +1106.5227 +1107.1356 Operator Algebras +1107.2247 Combinatorics +1107.4774 +1107.4875 Complex Variables +1108.2458 Numerical Analysis +1108.4889 +1108.5535 +1110.0316 Theory +1110.0323 Algebraic Geometry +1110.1113 Dynamical Systems +1110.1476 Plasma Physics +1110.3683 +1110.6829 Quantum Gases +1111.0236 Phenomenology +1111.1315 Learning +1111.3886 Phenomenology +1111.6558 Numerical Analysis +1112.1761 Algebraic Geometry +1112.4374 Theory +1112.4505 +1112.4769 Rings and Algebras +1112.5038 Strongly Correlated Electrons +1112.5945 Physics and Society +1202.1671 +1202.3913 Information Theory +1202.5484 Group Theory +1203.0738 Neurons and Cognition +1203.1238 Logic +1203.1576 Instrumentation and Methods for Astrophysics +1203.2121 Optics +1203.2838 Instrumentation and Detectors +1203.4402 Quantum Gases +1204.0408 Operator Algebras +1204.0582 Phenomenology +1204.0679 Statistical Mechanics +1204.0807 Theory +1204.1121 Computational Physics +1204.1616 Data Structures and Algorithms +1204.3655 Numerical Analysis +1204.3710 +1204.4432 Lattice +1204.4927 Artificial Intelligence +1204.5069 +1204.5252 Exactly Solvable and Integrable Systems +1204.6237 Combinatorics +1205.0435 Databases +1205.3750 Strongly Correlated Electrons +1205.5999 Solar and Stellar Astrophysics +1206.0092 General Physics +1206.1470 Phenomenology +1206.2904 Classical Physics +1206.3953 Statistical Mechanics +1206.5943 Probability +1207.0586 +1207.0645 +1207.4786 Physics and Society +1207.4985 +1207.6015 Phenomenology +1207.6426 Chaotic Dynamics +1208.0680 Atomic Physics +1208.1688 Data Structures and Algorithms +1208.1966 Instrumentation and Methods for Astrophysics +1208.1987 +1208.2924 Theory +1208.3127 General Physics +1208.3340 Software Engineering +1208.3407 Genomics +1208.3458 Classical Physics +1208.3459 Data Analysis, Statistics and Probability +1208.3460 General Finance +1208.3471 Cosmology and Nongalactic Astrophysics +1208.3486 Cryptography and Security +1208.3488 Theory +1208.3489 Dynamical Systems +1208.3490 Functional Analysis +1208.3492 Solar and Stellar Astrophysics +1208.3495 Functional Analysis +1208.3496 +1208.3497 Fluid Dynamics +1208.3498 Functional Analysis +1208.3502 General Physics +1208.3506 Commutative Algebra +1208.3512 Computer Vision and Pattern Recognition +1208.3516 Optimization and Control +1208.3518 Numerical Analysis +1208.3530 Information Retrieval +1208.3531 Analysis of PDEs +1208.3535 Solar and Stellar Astrophysics +1208.3538 Dynamical Systems +1208.3540 Combinatorics +1208.3541 Chemical Physics +1208.3545 Combinatorics +1208.3548 Phenomenology +1208.3552 Statistics Theory +1208.3553 Methodology +1208.3555 Statistics Theory +1208.3557 Cryptography and Security +1208.3559 Methodology +1208.3566 Group Theory +1208.3567 Materials Science +1208.3571 Methodology +1208.3573 Numerical Analysis +1208.3574 Methodology +1208.3575 Methodology +1208.3576 Cryptography and Security +1208.3577 Methodology +1208.3580 History and Philosophy of Physics +1208.3581 Combinatorics +1208.3582 Functional Analysis +1208.3585 Dynamical Systems +1208.3587 Materials Science +1208.3600 Artificial Intelligence +1208.3604 Dynamical Systems +1208.3605 Analysis of PDEs +1208.3606 Populations and Evolution +1208.3623 Information Retrieval +1208.3626 Accelerator Physics +1208.3628 Instrumentation and Detectors +1208.3630 Accelerator Physics +1208.3631 Cosmology and Nongalactic Astrophysics +1208.3633 Accelerator Physics +1208.3635 General Topology +1208.3640 Analysis of PDEs +1208.3641 Phenomenology +1208.3648 Fluid Dynamics +1208.3651 Quantum Gases +1208.3659 Applications +1208.3661 Materials Science +1208.3669 Optics +1208.3670 Computer Vision and Pattern Recognition +math/0505053 Statistics Theory +0708.3863 +0709.3526 Statistics Theory +0801.1752 +0805.1161 Algebraic Geometry +0807.1716 Algebraic Geometry +0811.4231 +0903.1805 Phenomenology +0904.4790 Strongly Correlated Electrons +0907.1154 Differential Geometry +0908.3347 Category Theory +0909.0564 Combinatorics +0912.1033 Mesoscale and Nanoscale Physics +1001.0849 Phenomenology +1001.1697 +1001.2365 High Energy Astrophysical Phenomena +1002.3327 Solar and Stellar Astrophysics +1004.3116 Statistical Mechanics +1004.4171 Quantum Algebra +1005.2432 +1006.5934 Probability +1007.2213 Number Theory +1008.1408 Differential Geometry +1009.3949 Probability +1009.5645 +1011.0966 Probability +1011.2552 Superconductivity +1011.3069 Probability +1011.4701 Solar and Stellar Astrophysics +1011.6064 Commutative Algebra +1101.5676 Phenomenology +1102.2150 +1102.4456 General Physics +1102.4660 High Energy Astrophysical Phenomena +1103.1896 Quantum Algebra +1103.3384 Number Theory +1103.5961 Statistical Mechanics +1104.1025 Statistical Mechanics +1104.1096 Algebraic Geometry +1104.4897 Phenomenology +1105.1208 Operator Algebras +1105.2638 Probability +1106.3356 Complex Variables +1107.1313 Combinatorics +1107.3172 Information Theory +1107.3608 Category Theory +1107.4606 Learning +1107.5102 Combinatorics +1108.2246 Functional Analysis +1108.3573 High Energy Astrophysical Phenomena +1109.2967 Complex Variables +1110.0131 +1110.0698 Commutative Algebra +1110.0886 Information Theory +1110.5418 Astrophysics of Galaxies +1110.5924 Mesoscale and Nanoscale Physics +1110.6886 Learning +1111.2424 Numerical Analysis +1111.2431 Number Theory +1111.5331 Phenomenology +1111.5776 Mesoscale and Nanoscale Physics +1112.0355 High Energy Astrophysical Phenomena +1112.3408 Classical Analysis and ODEs +1112.4220 +1112.5046 Quantum Gases +1112.5312 High Energy Astrophysical Phenomena +1112.5979 Statistical Mechanics +1112.6213 Spectral Theory +1201.0327 Statistics Theory +1201.4563 Mesoscale and Nanoscale Physics +1201.5827 Other Quantitative Biology +1201.5881 Phenomenology +1202.0043 Mesoscale and Nanoscale Physics +1202.0524 Combinatorics +1202.1920 Materials Science +1202.2176 Algebraic Topology +1202.2729 Mesoscale and Nanoscale Physics +1202.3240 Superconductivity +1202.3489 Quantum Gases +1202.3533 General Finance +1202.3798 Theory +1202.3836 Dynamical Systems +1202.3863 Mesoscale and Nanoscale Physics +1202.5139 +1202.6039 Soft Condensed Matter +1202.6350 Functional Analysis +1202.6553 Theory +1203.0385 +1203.0414 Strongly Correlated Electrons +1203.0525 Theory +1203.0563 Combinatorics +1203.0679 Probability +1203.0737 Statistical Mechanics +1203.1306 Materials Science +1203.1607 Phenomenology +1203.3038 Statistical Mechanics +1203.3207 Phenomenology +1203.5966 Optics +1203.6310 Combinatorics +1203.6585 Statistical Mechanics +1203.6755 +1204.0875 Superconductivity +1204.1108 Strongly Correlated Electrons +1204.2181 General Physics +1204.2628 Algebraic Geometry +1204.2945 Neurons and Cognition +1204.3361 Phenomenology +1204.6229 +1205.0167 Earth and Planetary Astrophysics +1205.0853 Theory +1205.1387 High Energy Astrophysical Phenomena +1205.1776 Phenomenology +1205.1977 Geometric Topology +1205.2675 Theory +1205.2901 Chaotic Dynamics +1205.3310 Combinatorics +1205.3894 Disordered Systems and Neural Networks +1205.3929 +1205.4664 Algebraic Geometry +1205.5428 Differential Geometry +1205.5650 Mesoscale and Nanoscale Physics +1205.6375 +1205.6705 Theory +1206.1033 Phenomenology +1206.2051 Disordered Systems and Neural Networks +1206.2052 Theory +1206.2148 Number Theory +1206.2194 Soft Condensed Matter +1206.2829 Differential Geometry +1206.2916 +1206.3783 Algebraic Geometry +1206.4058 Solar and Stellar Astrophysics +1206.4850 Atomic Physics +1206.5153 Algebraic Geometry +1206.5477 Combinatorics +1206.5718 Mesoscale and Nanoscale Physics +1206.7060 +1207.0309 Data Analysis, Statistics and Probability +1207.0504 +1207.1472 Complex Variables +1207.1766 Probability +1207.1828 Classical Analysis and ODEs +1207.3047 Statistical Mechanics +1207.3077 +1207.3205 Probability +1207.4025 General Topology +1207.4246 Symplectic Geometry +1207.4462 +1207.4464 +1207.4467 +1207.5215 Data Structures and Algorithms +1207.5303 +1207.5306 Analysis of PDEs +1207.5333 High Energy Astrophysical Phenomena +1207.5459 Theory +1207.5822 Logic +1207.5946 History and Philosophy of Physics +1207.6147 General Topology +1207.6355 Information Theory +1207.6375 Analysis of PDEs +1207.6392 Phenomenology +1207.6636 Theory +1207.6642 Phenomenology +1207.6643 Other Condensed Matter +1207.6647 Other Condensed Matter +1207.6650 Information Theory +1207.6657 Materials Science +1207.6668 +1207.6669 Analysis of PDEs +1207.6670 Classical Analysis and ODEs +1207.6671 Analysis of PDEs +1207.6672 Classical Analysis and ODEs +1207.6674 Metric Geometry +1207.6675 Optics +1207.6676 Optics +1207.6682 Neural and Evolutionary Computing +1207.6683 Computer Science and Game Theory +1207.6685 Logic in Computer Science +1207.6690 Rings and Algebras +1207.6695 Functional Analysis +1207.6698 Logic +1207.6705 Superconductivity +1207.6712 Combinatorics +1207.6713 Artificial Intelligence +1207.6715 Operator Algebras +1207.6716 Instrumentation and Detectors +1207.6717 Probability +1207.6721 Populations and Evolution +1207.6727 Experiment +1207.6728 Experiment +1207.6733 Geophysics +1207.6735 Classical Analysis and ODEs +1207.6738 Analysis of PDEs +1207.6741 Operator Algebras +1207.6742 Information Theory +1207.6743 Optimization and Control +1207.6745 Machine Learning +1207.6746 Optics +1207.6747 Geometric Topology +1207.6750 Category Theory +1207.6753 Theory +1207.6759 Risk Management +1207.6763 Statistics Theory +1207.6764 Number Theory +1207.6767 Classical Physics +1207.6769 Representation Theory +1207.6774 Computer Vision and Pattern Recognition +1207.6777 Functional Analysis +1207.6778 Computational Geometry +1207.6780 Optics +1207.6782 Analysis of PDEs +1207.6788 Information Theory +1207.6789 Superconductivity +1207.6792 K-Theory and Homology +1207.6796 Applications +1207.6801 Materials Science +1207.6802 General Topology +1207.6806 Theory +1207.6808 Information Theory +1207.6811 +1207.6812 Phenomenology +1207.6814 Physics and Society +1207.6815 Algebraic Geometry +1207.6817 Methodology +1207.6821 Computational Engineering, Finance, and Science +1207.6822 Computational Physics +1207.6824 Combinatorics +1207.6827 Atmospheric and Oceanic Physics +1207.6830 Computers and Society +1207.6831 Software Engineering +1207.6832 Other Computer Science +1207.6837 Phenomenology +1207.6840 +1207.6844 Computational Physics +1207.6846 +1207.6851 Classical Analysis and ODEs +1207.6853 Plasma Physics +1207.6854 Functional Analysis +1207.6862 Information Theory +1207.6866 Phenomenology +1207.6868 Statistics Theory +1207.6870 Solar and Stellar Astrophysics +1207.6874 Probability +1207.6877 Classical Analysis and ODEs +1207.6882 Analysis of PDEs +1207.6889 Information Theory +1207.6893 Atomic Physics +1207.6894 Dynamical Systems +1207.6897 Subcellular Processes +1207.6907 Complex Variables +1207.6911 Superconductivity +1207.6916 Populations and Evolution +1207.6917 +1207.6918 Algebraic Geometry +1207.6919 Commutative Algebra +1207.6922 Differential Geometry +1207.6928 Materials Science +1207.6933 Materials Science +1207.6939 Number Theory +1207.6946 Exactly Solvable and Integrable Systems +1207.6952 Mesoscale and Nanoscale Physics +1207.6953 Chemical Physics +1207.6956 +1207.6962 Optimization and Control +1207.6964 Genomics +1207.6965 Biological Physics +1207.6979 +1207.6983 Number Theory +1207.6991 Probability +1207.6992 +1207.7003 Materials Science +1207.7004 General Topology +1207.7008 Mesoscale and Nanoscale Physics +1207.7015 Statistics Theory +1207.7017 Genomics +1207.7020 General Physics +1207.7022 +1207.7025 Classical Analysis and ODEs +1207.7027 Fluid Dynamics +1207.7028 +1207.7035 Learning +1207.7036 Networking and Internet Architecture +1207.7041 +1207.7042 Accelerator Physics +1207.7044 Representation Theory +1207.7049 Accelerator Physics +1207.7053 Superconductivity +1207.7055 Distributed, Parallel, and Cluster Computing +1207.7057 Algebraic Geometry +1207.7058 Accelerator Physics +1207.7060 High Energy Astrophysical Phenomena +1207.7063 Analysis of PDEs +astro-ph/9904320 +cond-mat/0407593 Strongly Correlated Electrons +gr-qc/0011022 +gr-qc/0211046 +gr-qc/0412044 +gr-qc/0502020 +gr-qc/0605150 +gr-qc/0608105 +gr-qc/0612160 +hep-ph/0104145 Phenomenology +math/0703822 Algebraic Geometry +quant-ph/0404170 +0709.4222 Differential Geometry +0801.4702 +0803.3240 Pattern Formation and Solitons +0912.0782 Probability +1002.2685 Quantum Algebra +1006.0372 Symplectic Geometry +1006.3160 Strongly Correlated Electrons +1007.0179 Statistics Theory +1007.2873 +1008.5373 Optimization and Control +1009.2370 Information Theory +1010.1737 High Energy Astrophysical Phenomena +1011.0624 +1011.4379 Differential Geometry +1012.2643 Statistics Theory +1101.1195 Category Theory +1102.0453 Numerical Analysis +1102.1107 Systems and Control +1102.5761 Probability +1104.1976 Probability +1104.2915 +1104.5617 Methodology +1105.0756 Phenomenology +1105.3370 Differential Geometry +1105.5208 +1107.3763 Mesoscale and Nanoscale Physics +1107.4293 Numerical Analysis +1107.5680 Superconductivity +1108.0581 Materials Science +1108.3754 Information Theory +1109.0188 Fluid Dynamics +1109.1473 +1109.2207 Number Theory +1110.0125 Superconductivity +1110.0379 Superconductivity +1110.0699 Dynamical Systems +1110.1934 Dynamical Systems +1110.4445 Number Theory +1110.4790 Soft Condensed Matter +1110.6009 Materials Science +1110.6466 Quantum Gases +1111.0470 Superconductivity +1111.1162 Statistics Theory +1111.2020 Cosmology and Nongalactic Astrophysics +1111.5033 Superconductivity +1111.5431 Strongly Correlated Electrons +1111.6710 Number Theory +1112.0131 Statistical Mechanics +1112.3606 Experiment +1112.3616 Strongly Correlated Electrons +1112.5794 Applications +1201.0221 Mesoscale and Nanoscale Physics +1201.1128 Algebraic Geometry +1201.2471 Information Theory +1201.2805 +1201.3031 Phenomenology +1201.3856 Atomic Physics +1201.3913 Mesoscale and Nanoscale Physics +1202.1070 Strongly Correlated Electrons +1202.1852 +1202.3661 High Energy Astrophysical Phenomena +1202.4340 Superconductivity +1202.4780 Astrophysics of Galaxies +1202.5723 Strongly Correlated Electrons +1203.0012 Cosmology and Nongalactic Astrophysics +1203.0323 Phenomenology +1203.2628 Strongly Correlated Electrons +1203.3876 Mesoscale and Nanoscale Physics +1203.4316 Chaotic Dynamics +1203.4524 Chemical Physics +1203.5376 Theory +1203.6108 High Energy Astrophysical Phenomena +1203.6227 Phenomenology +1203.6317 Complex Variables +1204.0920 +1204.0997 Molecular Networks +1204.1893 +1204.2105 Superconductivity +1204.2401 Physics and Society +1204.2789 +1204.3941 Applications +1204.5725 Subcellular Processes +1205.0524 Instrumentation and Detectors +1205.2045 Cosmology and Nongalactic Astrophysics +1205.4612 Materials Science +1205.5936 Statistics Theory +1205.6132 Analysis of PDEs +1205.6219 Subcellular Processes +1205.6220 +1205.6229 Cryptography and Security +1205.6236 Combinatorics +1205.6237 Superconductivity +1205.6243 Dynamical Systems +1205.6250 Rings and Algebras +1205.6266 Strongly Correlated Electrons +1205.6273 Instrumentation and Methods for Astrophysics +1205.6274 Fluid Dynamics +1205.6275 Statistics Theory +1205.6276 Instrumentation and Methods for Astrophysics +1205.6278 Physics and Society +1205.6283 Statistics Theory +1205.6290 Complex Variables +1205.6294 Combinatorics +1205.6295 Superconductivity +1205.6309 Information Theory +1205.6315 Optimization and Control +1205.6317 Numerical Analysis +1205.6318 Optics +1205.6331 Number Theory +1205.6345 Accelerator Physics +1205.6356 Phenomenology +1205.6358 Phenomenology +1205.6360 Numerical Analysis +1205.6363 Software Engineering +1205.6364 +1205.6367 Statistics Theory +1205.6371 Classical Analysis and ODEs +1205.6373 Digital Libraries +1205.6376 Information Theory +1205.6382 Phenomenology +1205.6383 Other Condensed Matter +1205.6384 Solar and Stellar Astrophysics +1205.6387 Geometric Topology +1205.6390 +1205.6396 Information Retrieval +1205.6399 Software Engineering +1205.6400 Phenomenology +1205.6402 Logic in Computer Science +1205.6405 High Energy Astrophysical Phenomena +1205.6412 Neural and Evolutionary Computing +1205.6413 Operator Algebras +1205.6414 Complex Variables +1205.6415 Functional Analysis +1205.6417 Number Theory +1205.6418 Materials Science +1205.6420 Discrete Mathematics +1205.6421 Chemical Physics +1205.6423 Operating Systems +1205.6430 Phenomenology +1205.6439 Applications +1205.6440 Software Engineering +1205.6442 Optimization and Control +1205.6445 Networking and Internet Architecture +1205.6449 +1205.6450 Category Theory +1205.6451 +1205.6453 Soft Condensed Matter +1205.6459 Optimization and Control +1205.6463 Strongly Correlated Electrons +1205.6465 Cryptography and Security +math/9210212 Differential Geometry +physics/0602035 General Physics +1209.6229 History and Philosophy of Physics +0705.1824 General Topology +0706.3772 General Topology +0710.1402 Logic +0712.0786 General Topology +0802.1109 Functional Analysis +0811.4144 General Topology +0901.0323 +0904.2550 Computational Geometry +0907.1095 Differential Geometry +0910.0799 Logic +0910.1360 General Topology +0910.2003 Complex Variables +0910.5504 Materials Science +0910.5923 Analysis of PDEs +0912.1515 Probability +1001.1191 +1002.3970 Probability +1004.0458 +1005.0247 Complex Variables +1005.3818 +1006.2929 Complex Variables +1007.2959 History and Overview +1008.1397 Group Theory +1010.3329 General Topology +1010.6180 Differential Geometry +1011.4389 Chaotic Dynamics +1102.0592 Strongly Correlated Electrons +1103.1850 Dynamical Systems +1103.4561 Algebraic Geometry +1104.1501 Number Theory +1104.4311 Algebraic Geometry +1104.4765 +1104.4886 +1105.4262 Functional Analysis +1105.4273 Differential Geometry +1106.3796 K-Theory and Homology +1106.3877 +1106.5244 Complex Variables +1107.3799 Functional Analysis +1107.4180 Strongly Correlated Electrons +1107.4358 +1107.4735 +1107.5950 Number Theory +1108.0628 Quantum Gases +1108.1203 +1108.5558 Combinatorics +1109.0813 Combinatorics +1109.1807 Dynamical Systems +1109.5789 Computational Complexity +1109.6479 Geometric Topology +1110.1715 Metric Geometry +1110.2513 Theory +1110.3433 +1110.6331 Number Theory +1111.0084 Information Theory +1111.1078 Probability +1111.1120 Statistics Theory +1111.3031 Phenomenology +1111.3398 Data Structures and Algorithms +1112.0112 +1112.1234 +1112.1930 Experiment +1112.2904 Analysis of PDEs +1112.5543 Materials Science +1201.1429 Materials Science +1201.1840 General Finance +1201.3504 +1201.4018 +1201.5407 Number Theory +1202.0671 Combinatorics +1202.1019 +1202.2245 Fluid Dynamics +1202.2436 Complex Variables +1202.5326 +1203.0914 Strongly Correlated Electrons +1203.1002 Cosmology and Nongalactic Astrophysics +1203.1527 Information Theory +1203.2334 Data Analysis, Statistics and Probability +1203.2367 Numerical Analysis +1203.3383 Theory +1203.5244 Number Theory +1203.5564 +1203.6032 +1203.6679 Phenomenology +1204.0139 Combinatorics +1204.0253 Superconductivity +1204.0750 Analysis of PDEs +1204.1508 Phenomenology +1204.2387 Mesoscale and Nanoscale Physics +1204.3856 Quantum Gases +1204.4108 Fluid Dynamics +1204.5609 +1205.0024 Cosmology and Nongalactic Astrophysics +1205.0151 Disordered Systems and Neural Networks +1205.1069 Number Theory +1205.3468 Phenomenology +1205.3518 Data Structures and Algorithms +1205.3690 Probability +1205.4118 Commutative Algebra +1205.4128 Mesoscale and Nanoscale Physics +1205.4520 Atomic Physics +1205.4826 Strongly Correlated Electrons +1205.4945 Phenomenology +1205.5031 Cosmology and Nongalactic Astrophysics +1205.6388 Theory +1205.6534 Classical Analysis and ODEs +1205.6582 Materials Science +1206.0168 +1206.1067 Quantum Gases +1206.1201 Mesoscale and Nanoscale Physics +1206.1947 +1206.2562 Mesoscale and Nanoscale Physics +1206.3047 Probability +1206.3545 Cosmology and Nongalactic Astrophysics +1206.3760 Phenomenology +1206.5063 Experiment +1206.5573 Statistical Mechanics +1206.6502 Instrumentation and Methods for Astrophysics +1206.6661 Classical Analysis and ODEs +1207.0269 Cryptography and Security +1207.0510 Phenomenology +1207.1703 Experiment +1207.1707 Experiment +1207.1795 Plasma Physics +1207.2956 Phenomenology +1207.3188 Biological Physics +1207.4597 Machine Learning +1207.4764 +1207.5107 Number Theory +1207.5872 Instrumentation and Methods for Astrophysics +1207.6758 Experiment +1207.7162 Lattice +1207.7164 Lattice +1208.1901 Logic +1208.1990 Soft Condensed Matter +1208.2022 Complex Variables +1208.2160 Solar and Stellar Astrophysics +1208.2165 Phenomenology +1208.4448 Theory +1208.4919 Superconductivity +1208.5692 Strongly Correlated Electrons +1208.6030 Materials Science +1209.0313 Experiment +1209.0637 +1209.2693 Learning +1209.3082 Combinatorics +1209.3134 Strongly Correlated Electrons +1209.3961 Statistical Mechanics +1209.5033 Chemical Physics +1209.5479 Differential Geometry +1209.5705 Number Theory +1209.5730 Information Theory +1209.5845 Computational Physics +1209.6213 Phenomenology +1210.0346 +1210.0889 Statistical Mechanics +1210.1988 Combinatorics +1210.2218 Probability +1210.2696 Cosmology and Nongalactic Astrophysics +1210.2757 Statistics Theory +1210.3235 Phenomenology +1210.3626 Analysis of PDEs +1210.3865 Computation and Language +1210.3967 Dynamical Systems +1210.4120 Computational Complexity +1210.4332 Biological Physics +1210.4738 Representation Theory +1210.4739 Statistics Theory +1210.5007 Instrumentation and Methods for Astrophysics +1210.5008 Theory +1210.5034 Learning +1210.5374 Software Engineering +1210.5461 Analysis of PDEs +1210.5515 Software Engineering +1210.5516 Software Engineering +1210.5517 Computation and Language +1210.5529 Fluid Dynamics +1210.5536 Strongly Correlated Electrons +1210.5541 Computer Science and Game Theory +1210.5543 Symbolic Computation +1210.5544 Learning +1210.5545 Differential Geometry +1210.5551 Analysis of PDEs +1210.5553 Physics and Society +1210.5554 Physics and Society +1210.5557 Operator Algebras +1210.5558 High Energy Astrophysical Phenomena +1210.5560 Information Retrieval +1210.5561 Discrete Mathematics +1210.5565 Geometric Topology +1210.5569 Geometric Topology +1210.5577 Algebraic Topology +1210.5578 Methodology +1210.5581 Computation and Language +1210.5582 Rings and Algebras +1210.5583 +1210.5587 Combinatorics +1210.5590 Probability +1210.5591 Analysis of PDEs +1210.5600 Theory +1210.5603 Logic +1210.5608 Number Theory +1210.5612 Analysis of PDEs +1210.5620 Materials Science +1210.5624 Instrumentation and Detectors +1210.5630 Operator Algebras +1210.5636 Materials Science +1210.5637 Instrumentation and Methods for Astrophysics +1210.5639 Phenomenology +1210.5641 Functional Analysis +1210.5642 Combinatorics +1210.5643 Solar and Stellar Astrophysics +1210.5644 Computer Vision and Pattern Recognition +1210.5645 +1210.5649 Combinatorics +1210.5650 Algebraic Topology +1210.5652 Number Theory +1210.5653 Computer Vision and Pattern Recognition +1210.5658 Logic +1210.5659 Logic in Computer Science +1210.5662 Dynamical Systems +1210.5663 Statistics Theory +1210.5664 Data Structures and Algorithms +1210.5670 Artificial Intelligence +1210.5671 Materials Science +1210.5675 Logic +1210.5676 Analysis of PDEs +1210.5677 Computational Complexity +1210.5678 Category Theory +1210.5683 Combinatorics +1210.5688 Classical Physics +1210.5689 Differential Geometry +1210.5690 Differential Geometry +1210.5693 Applications +1210.5694 Applications +1210.5695 Soft Condensed Matter +1210.5696 Soft Condensed Matter +1210.5699 Differential Geometry +1210.5701 Discrete Mathematics +1210.5702 History and Philosophy of Physics +1210.5703 Exactly Solvable and Integrable Systems +1210.5705 Functional Analysis +1210.5711 Differential Geometry +1210.5716 Operator Algebras +1210.5717 +1210.5720 Analysis of PDEs +1210.5724 Combinatorics +1210.5728 Functional Analysis +1210.5729 Data Structures and Algorithms +1210.5731 Numerical Analysis +1210.5733 Quantum Algebra +1210.5736 Combinatorics +1210.5738 Cosmology and Nongalactic Astrophysics +1210.5751 Computation and Language +1210.5759 Logic +1210.5760 Solar and Stellar Astrophysics +1210.5762 Group Theory +1210.5771 Probability +1210.5773 Pricing of Securities +1210.5776 Probability +1210.5777 Probability +1210.5780 Probability +1210.5781 Trading and Market Microstructure +1210.5783 Software Engineering +1210.5786 Data Structures and Algorithms +1210.5788 +1210.5795 Classical Analysis and ODEs +1210.5798 Statistical Mechanics +1210.5806 Machine Learning +1210.5807 Materials Science +1210.5812 Geometric Topology +1210.5813 Information Theory +1210.5814 Information Theory +1210.5821 Statistical Mechanics +1210.5824 Quantum Algebra +1210.5825 Quantum Algebra +1210.5829 Differential Geometry +1210.5832 +1210.5834 Solar and Stellar Astrophysics +1210.5835 Probability +1210.5840 Learning +1210.5842 Analysis of PDEs +1210.5843 Soft Condensed Matter +1210.5845 Accelerator Physics +1210.5849 Instrumentation and Detectors +1210.5854 Logic +1210.5858 +1210.5859 Portfolio Management +1210.5860 Probability +1210.5862 Probability +1210.5865 Probability +1210.5869 Combinatorics +1210.5870 +1210.5873 Machine Learning +1210.5875 Instrumentation and Detectors +1210.5876 Probability +1210.5877 Populations and Evolution +1210.5881 Statistics Theory +1210.5886 +1210.5888 Cryptography and Security +1210.5889 Superconductivity +1210.5891 +1210.5893 Analysis of PDEs +1210.5894 +1210.5898 Computation and Language +1210.5910 Complex Variables +1210.5913 Cryptography and Security +1210.5916 Algebraic Geometry +1210.5917 Networking and Internet Architecture +1210.5918 Statistics Theory +1210.5921 Optimization and Control +1210.5935 Programming Languages +1210.5936 Multiagent Systems +1210.5937 Chemical Physics +1210.5939 +1210.5941 Cryptography and Security +1210.5946 Logic in Computer Science +1210.5957 Logic +1210.5961 Instrumentation and Methods for Astrophysics +1210.5964 Lattice +1210.5965 Computation and Language +1210.5966 Spectral Theory +1210.5969 K-Theory and Homology +1210.5971 Differential Geometry +1210.5973 Cryptography and Security +1210.5975 Performance +1210.5980 Databases +1210.5984 Databases +1210.5988 Spectral Theory +1210.5998 Instrumentation and Methods for Astrophysics +1210.6005 Analysis of PDEs +1210.6007 Differential Geometry +1210.6012 Optimization and Control +1210.6017 +1210.6019 Optimization and Control +1210.6023 +astro-ph/0010408 +astro-ph/9702116 +astro-ph/9806015 +astro-ph/9905183 +cond-mat/0209560 Statistical Mechanics +cond-mat/0302620 Superconductivity +cs/0605011 Discrete Mathematics +gr-qc/0205035 +gr-qc/9912081 +hep-ph/0003112 Phenomenology +hep-th/0102144 Theory +hep-th/0402039 Theory +math/0311015 General Topology +math/0312013 Functional Analysis +math/0312289 Quantum Algebra +math/0407222 General Topology +math/0504357 Metric Geometry +math/0507062 General Topology +math/0511567 General Topology +math/0511606 General Topology +math/0602628 Functional Analysis +math/0702585 General Topology +nlin/0612001 Chaotic Dynamics +nlin/0703019 Chaotic Dynamics +quant-ph/0505014 +quant-ph/0611066 +0709.0095 Theory +0810.4360 Soft Condensed Matter +0811.4105 +0812.0158 Mesoscale and Nanoscale Physics +0902.3889 +0905.0130 Soft Condensed Matter +0906.3875 Analysis of PDEs +0908.4505 Soft Condensed Matter +0912.0421 Differential Geometry +1002.3501 Statistics Theory +1006.0338 +1006.0600 Algebraic Geometry +1006.4807 Superconductivity +1007.3174 Phenomenology +1008.5396 Geometric Topology +1009.2438 +1012.3120 Statistical Mechanics +1103.1417 Statistics Theory +1104.2689 Optimization and Control +1105.1690 Probability +1105.2033 Numerical Analysis +1106.3354 +1107.3394 Cosmology and Nongalactic Astrophysics +1107.6025 Classical Physics +1108.2995 K-Theory and Homology +1108.4572 Computational Geometry +1108.5942 K-Theory and Homology +1109.3723 Number Theory +1109.3883 Computational Physics +1109.4388 +1110.2221 Atomic Physics +1110.2636 Phenomenology +1110.3035 Statistical Mechanics +1110.5248 Phenomenology +1110.5986 Phenomenology +1111.6526 +1112.0963 Phenomenology +1112.5557 Information Theory +1112.6262 Numerical Analysis +1201.1208 Differential Geometry +1201.2242 Algebraic Geometry +1201.3832 Theory +1202.1132 Theory +1202.2525 Information Theory +1202.3015 Molecular Networks +1202.3320 Statistical Mechanics +1202.5366 Strongly Correlated Electrons +1203.2066 Materials Science +1203.4226 +1203.6557 +1203.6569 Phenomenology +1204.3654 +1204.3729 Phenomenology +1204.4255 Computational Physics +1205.1108 +1205.1398 Quantum Gases +1205.1979 +1205.2970 Chemical Physics +1205.3547 Populations and Evolution +1205.4241 Theory +1205.5002 Number Theory +1205.6066 Category Theory +1206.0077 Instrumentation and Detectors +1206.0877 Combinatorics +1206.1265 +1206.2879 Materials Science +1206.2898 Statistical Mechanics +1206.6663 Phenomenology +1207.0674 Phenomenology +1207.1102 Cosmology and Nongalactic Astrophysics +1207.2352 +1207.2575 Soft Condensed Matter +1207.4369 Cosmology and Nongalactic Astrophysics +1207.4392 +1207.4399 Theory +1207.4405 Theory +1207.6142 +1207.6545 Mesoscale and Nanoscale Physics +1207.7084 Mesoscale and Nanoscale Physics +1208.0191 Phenomenology +1208.0615 Distributed, Parallel, and Cluster Computing +1208.2131 +1208.2240 Superconductivity +1208.2902 Phenomenology +1208.3954 Strongly Correlated Electrons +1208.4158 Data Analysis, Statistics and Probability +1208.4226 Superconductivity +1208.4579 Quantum Gases +1208.4951 Phenomenology +1208.5327 +1208.6033 Statistical Mechanics +1209.3412 Functional Analysis +1209.3667 Statistical Mechanics +1209.5059 Operator Algebras +1209.5848 Mesoscale and Nanoscale Physics +1209.5988 Astrophysics of Galaxies +1209.6567 +1210.3887 Analysis of PDEs +1210.4086 Algebraic Topology +1210.4614 Cryptography and Security +1210.6062 Cosmology and Nongalactic Astrophysics +1210.6166 Category Theory +1210.7558 Chemical Physics +1210.7904 Materials Science +1210.8217 Chemical Physics +1211.0291 Statistical Mechanics +1211.0463 Combinatorics +1211.0587 Information Theory +1211.0667 Phenomenology +1211.0834 Information Theory +1211.1421 Cosmology and Nongalactic Astrophysics +1211.1596 Representation Theory +1211.3354 Numerical Analysis +1211.3633 Statistical Mechanics +1211.3770 Differential Geometry +1211.3882 Artificial Intelligence +1211.4212 Combinatorics +1211.4320 Probability +1211.4584 Solar and Stellar Astrophysics +1211.4682 Experiment +1211.4777 Cosmology and Nongalactic Astrophysics +1211.4847 Cosmology and Nongalactic Astrophysics +1211.4866 Databases +1211.4882 Analysis of PDEs +1211.4888 Learning +1211.4892 Symbolic Computation +1211.4894 Analysis of PDEs +1211.4895 Earth and Planetary Astrophysics +1211.4900 General Topology +1211.4904 Phenomenology +1211.4908 +1211.4918 Computational Complexity +1211.4924 Combinatorics +1211.4926 +1211.4930 Optics +1211.4931 Algebraic Geometry +1211.4935 Logic in Computer Science +1211.4936 Strongly Correlated Electrons +1211.4938 Soft Condensed Matter +1211.4939 Geometric Topology +1211.4943 Numerical Analysis +1211.4944 Phenomenology +1211.4949 Computational Complexity +1211.4955 +1211.4956 Commutative Algebra +1211.4960 Differential Geometry +1211.4962 Statistics Theory +1211.4964 Lattice +1211.4970 Solar and Stellar Astrophysics +1211.4971 Neural and Evolutionary Computing +1211.4974 Numerical Analysis +1211.4978 Pricing of Securities +1211.4986 Human-Computer Interaction +1211.4988 Solar and Stellar Astrophysics +1211.4990 Operator Algebras +1211.4991 Analysis of PDEs +1211.4993 +1211.4998 Combinatorics +1211.5002 Lattice +1211.5004 Materials Science +1211.5005 Materials Science +1211.5006 K-Theory and Homology +1211.5009 Databases +1211.5018 Statistics Theory +1211.5019 Statistical Mechanics +1211.5023 Dynamical Systems +1211.5027 Information Theory +1211.5029 History and Philosophy of Physics +1211.5030 History and Philosophy of Physics +1211.5033 Number Theory +1211.5034 Analysis of PDEs +1211.5035 Pricing of Securities +1211.5036 Materials Science +1211.5038 Materials Science +1211.5044 Dynamical Systems +1211.5046 Differential Geometry +1211.5048 Phenomenology +1211.5052 Numerical Analysis +1211.5058 Information Theory +1211.5062 Physics and Society +1211.5066 Number Theory +1211.5067 Information Theory +1211.5069 Lattice +1211.5072 Probability +1211.5073 Molecular Networks +1211.5076 Functional Analysis +1211.5079 Atomic and Molecular Clusters +1211.5080 Cryptography and Security +1211.5082 Numerical Analysis +1211.5086 Systems and Control +1211.5096 Complex Variables +1211.5098 Neural and Evolutionary Computing +1211.5101 Operator Algebras +1211.5103 Geometric Topology +1211.5107 Computational Geometry +1211.5108 Data Structures and Algorithms +1211.5111 Numerical Analysis +1211.5113 Geophysics +1211.5115 Classical Analysis and ODEs +1211.5121 +1211.5122 Combinatorics +1211.5123 Soft Condensed Matter +1211.5125 Metric Geometry +1211.5126 Classical Analysis and ODEs +1211.5132 Strongly Correlated Electrons +1211.5133 Quantum Gases +physics/9906031 General Physics +0705.3383 Dynamical Systems +0706.0688 Quantum Algebra +0801.1394 +0804.0637 Combinatorics +0808.1478 +0808.2592 Algebraic Geometry +0808.2599 Mesoscale and Nanoscale Physics +0809.0733 Combinatorics +0903.3458 Number Theory +0903.4122 +0906.5023 Combinatorics +0909.1970 Combinatorics +0912.0966 Spectral Theory +1005.4129 Optimization and Control +1007.1842 Optics +1007.2555 Combinatorics +1007.4146 Classical Physics +1008.0311 Representation Theory +1008.2894 Number Theory +1009.3258 Functional Analysis +1009.3723 Probability +1010.5233 Statistics Theory +1010.5742 Optimization and Control +1011.2370 Quantum Algebra +1011.5382 Combinatorics +1012.0898 Combinatorics +1101.1755 Optics +1101.4275 Combinatorics +1102.2624 +1102.4001 +1102.5257 Probability +1103.5324 +1103.5519 Combinatorics +1104.3925 Combinatorics +1104.4422 Computation +1105.1918 Number Theory +1105.4863 +1106.4332 Rings and Algebras +1106.4551 Theory +1107.4394 +1108.1053 Mesoscale and Nanoscale Physics +1108.2819 Neurons and Cognition +1108.4262 Combinatorics +1108.5449 Cosmology and Nongalactic Astrophysics +1109.1260 Strongly Correlated Electrons +1109.5842 Mesoscale and Nanoscale Physics +1110.0747 Plasma Physics +1110.2716 Commutative Algebra +1110.5195 Spectral Theory +1110.5529 Superconductivity +1111.1020 Information Theory +1111.2317 Lattice +1111.2686 +1111.3420 Combinatorics +1111.3509 +1112.1067 Cosmology and Nongalactic Astrophysics +1112.1975 +1112.2795 Computational Complexity +1112.3245 Biological Physics +1112.3695 +1112.4077 Mesoscale and Nanoscale Physics +1112.4312 Physics and Society +1112.5451 Phenomenology +1201.1195 High Energy Astrophysical Phenomena +1201.1564 Phenomenology +1201.4389 High Energy Astrophysical Phenomena +1201.5097 Probability +1201.5370 High Energy Astrophysical Phenomena +1201.6050 Rings and Algebras +1201.6234 +1201.6613 Mesoscale and Nanoscale Physics +1202.6000 Optics +1202.6142 Functional Analysis +1202.6262 Mesoscale and Nanoscale Physics +1203.2586 +1203.3080 Quantum Gases +1203.3893 Soft Condensed Matter +1203.4196 Materials Science +1203.5077 K-Theory and Homology +1203.5340 Phenomenology +1203.5979 Numerical Analysis +1204.0350 General Finance +1204.1801 Exactly Solvable and Integrable Systems +1204.2057 Functional Analysis +1204.3514 Learning +1204.4362 Solar and Stellar Astrophysics +1204.4449 Earth and Planetary Astrophysics +1204.4485 Cosmology and Nongalactic Astrophysics +1205.0100 Theory +1205.1035 Classical Physics +1205.1951 +1205.2044 Chaotic Dynamics +1205.2731 Fluid Dynamics +1205.3510 High Energy Astrophysical Phenomena +1205.3672 Classical Physics +1205.4159 Learning +1205.4234 Learning +1205.5036 Theory +1205.5406 +1205.5565 Pricing of Securities +1205.5571 Logic in Computer Science +1205.5572 Astrophysics of Galaxies +1205.5574 Group Theory +1205.5578 Statistics Theory +1205.5579 Theory +1205.5582 Dynamical Systems +1205.5585 Instrumentation and Methods for Astrophysics +1205.5589 Information Theory +1205.5590 Atomic Physics +1205.5592 Materials Science +1205.5597 Earth and Planetary Astrophysics +1205.5598 Earth and Planetary Astrophysics +1205.5599 Earth and Planetary Astrophysics +1205.5609 Strongly Correlated Electrons +1205.5611 Digital Libraries +1205.5615 Software Engineering +1205.5625 Commutative Algebra +1205.5627 Probability +1205.5630 Mesoscale and Nanoscale Physics +1205.5632 Information Retrieval +1205.5633 Functional Analysis +1205.5643 +1205.5663 Number Theory +1205.5666 Analysis of PDEs +1205.5671 General Finance +1205.5672 Numerical Analysis +1205.5673 Number Theory +1205.5675 Computational Finance +1205.5678 Experiment +1205.5680 Classical Analysis and ODEs +1205.5682 Probability +1205.5687 Combinatorics +1205.5691 Computational Geometry +1205.5697 Category Theory +1205.5699 Information Theory +1205.5703 Phenomenology +1205.5706 Differential Geometry +1205.5708 Geophysics +1205.5709 Probability +1205.5712 Plasma Physics +1205.5714 Algebraic Geometry +1205.5720 Social and Information Networks +1205.5723 Combinatorics +1205.5735 Populations and Evolution +1205.5742 Robotics +1205.5748 Exactly Solvable and Integrable Systems +1205.5758 Dynamical Systems +1205.5763 +1205.5768 Theory +1205.5772 Plasma Physics +1205.5773 Classical Analysis and ODEs +1205.5774 Classical Analysis and ODEs +1205.5779 Combinatorics +1205.5783 Software Engineering +1205.5786 Functional Analysis +1205.5789 Phenomenology +cond-mat/0112326 Soft Condensed Matter +cond-mat/0207565 Soft Condensed Matter +cond-mat/0407190 Mesoscale and Nanoscale Physics +hep-ph/0604152 Phenomenology +0711.0830 Number Theory +0711.1866 Phenomenology +0805.2853 +0902.0661 Dynamical Systems +0904.3482 Logic +0906.2960 Data Structures and Algorithms +0910.3992 Probability +0911.5702 Probability +1004.0208 Information Theory +1005.0321 +1005.2463 Soft Condensed Matter +1009.1676 General Topology +1011.0787 Logic +1011.2018 Dynamical Systems +1011.2997 Rings and Algebras +1011.3798 Theory +1012.5335 Cosmology and Nongalactic Astrophysics +1102.4144 Plasma Physics +1102.4541 Superconductivity +1103.0551 Cosmology and Nongalactic Astrophysics +1103.6237 Instrumentation and Detectors +1104.0781 Analysis of PDEs +1104.4648 +1105.2984 Algebraic Geometry +1105.5341 Geometric Topology +1106.0042 Theory +1106.1745 Cosmology and Nongalactic Astrophysics +1106.5338 Strongly Correlated Electrons +1107.1161 Discrete Mathematics +1107.2938 Number Theory +1107.4605 +1108.1168 Strongly Correlated Electrons +1108.2707 Analysis of PDEs +1108.2928 Superconductivity +1108.4106 Strongly Correlated Electrons +1108.5693 Algebraic Topology +1109.2410 Strongly Correlated Electrons +1109.3247 Analysis of PDEs +1109.4271 +1109.4805 Earth and Planetary Astrophysics +1109.4809 Strongly Correlated Electrons +1110.0953 Algebraic Topology +1110.1337 Quantum Gases +1110.6861 +1111.5557 Mesoscale and Nanoscale Physics +1112.1805 Numerical Analysis +1112.3016 Instrumentation and Methods for Astrophysics +1112.3515 Experiment +1112.3859 Mesoscale and Nanoscale Physics +1112.4682 Strongly Correlated Electrons +1112.5250 Materials Science +1201.0919 Group Theory +1201.1230 Mesoscale and Nanoscale Physics +1201.1808 Soft Condensed Matter +1201.3353 Geometric Topology +1201.3760 Mesoscale and Nanoscale Physics +1201.4200 +1201.4992 Mesoscale and Nanoscale Physics +1201.5253 Combinatorics +1201.5597 Logic +1202.1102 High Energy Astrophysical Phenomena +1202.1257 Materials Science +1202.2149 Theory +1202.2762 Lattice +1202.3378 +1202.3676 Superconductivity +1202.4101 Probability +1202.4324 +1202.5503 Statistical Mechanics +1203.1748 Materials Science +1203.1954 +1203.1989 Mesoscale and Nanoscale Physics +1203.2048 Phenomenology +1203.2055 High Energy Astrophysical Phenomena +1203.2443 Instrumentation and Detectors +1203.3308 Quantum Gases +1203.4799 Soft Condensed Matter +1203.5707 +1203.6732 Solar and Stellar Astrophysics +1204.2700 +1204.2925 Materials Science +1204.4372 Strongly Correlated Electrons +1204.4868 Mesoscale and Nanoscale Physics +1204.5348 Fluid Dynamics +1204.5815 Metric Geometry +1205.0263 Computational Complexity +1205.0740 Strongly Correlated Electrons +1205.0790 Mathematical Software +1205.1616 +1205.2281 General Physics +1205.2400 +1205.2823 Classical Physics +1205.2835 Mesoscale and Nanoscale Physics +1205.2954 Cosmology and Nongalactic Astrophysics +1205.3090 Group Theory +1205.3492 Theory +1205.3504 Computational Engineering, Finance, and Science +1205.3507 Pricing of Securities +1205.3508 Phenomenology +1205.3519 General Finance +1205.3526 Lattice +1205.3527 Mesoscale and Nanoscale Physics +1205.3529 Combinatorics +1205.3533 Group Theory +1205.3534 Computational Complexity +1205.3538 Solar and Stellar Astrophysics +1205.3539 Analysis of PDEs +1205.3544 +1205.3553 Operator Algebras +1205.3554 Cryptography and Security +1205.3557 Differential Geometry +1205.3560 Mesoscale and Nanoscale Physics +1205.3561 Differential Geometry +1205.3562 Differential Geometry +1205.3564 Methodology +1205.3565 +1205.3569 Computational Physics +1205.3570 Networking and Internet Architecture +1205.3573 Algebraic Geometry +1205.3581 Probability +1205.3583 Theory +1205.3586 Optics +1205.3587 Rings and Algebras +1205.3588 Other Statistics +1205.3589 Accelerator Physics +1205.3590 Accelerator Physics +1205.3591 Accelerator Physics +1205.3593 Accelerator Physics +1205.3599 Commutative Algebra +1205.3601 Data Analysis, Statistics and Probability +1205.3603 Solar and Stellar Astrophysics +1205.3604 Representation Theory +1205.3605 Data Structures and Algorithms +1205.3610 Mesoscale and Nanoscale Physics +1205.3611 Cosmology and Nongalactic Astrophysics +1205.3625 Phenomenology +1205.3626 Analysis of PDEs +1205.3641 Applications +1205.3642 Other Computer Science +1205.3645 Methodology +1205.3647 Information Theory +1205.3648 +1205.3650 Complex Variables +1205.3654 Mesoscale and Nanoscale Physics +1205.3663 Artificial Intelligence +1205.3664 Combinatorics +1205.3673 Rings and Algebras +1205.3674 General Mathematics +1205.3675 Phenomenology +1205.3686 Pricing of Securities +1205.3691 Instrumentation and Methods for Astrophysics +1205.3698 High Energy Astrophysical Phenomena +1205.3702 Mesoscale and Nanoscale Physics +1205.3703 Statistics Theory +1205.3704 Cosmology and Nongalactic Astrophysics +1205.3707 +1205.3708 Mesoscale and Nanoscale Physics +1205.3710 Optimization and Control +1205.3711 Mesoscale and Nanoscale Physics +1205.3712 Experiment +1205.3717 Combinatorics +1205.3727 Robotics +1205.3728 Data Structures and Algorithms +1205.3734 Statistical Mechanics +1205.3739 Subcellular Processes +1205.3742 +1205.3744 Dynamical Systems +1205.3747 Biological Physics +1205.3753 Information Theory +1205.3754 Data Structures and Algorithms +1205.3759 Classical Analysis and ODEs +1205.3765 Analysis of PDEs +1205.3766 Computer Vision and Pattern Recognition +1205.3771 Experiment +cond-mat/9902018 Statistical Mechanics +0705.1653 Algebraic Geometry +0706.1439 Other Condensed Matter +0710.0727 +0710.1514 Metric Geometry +0710.5553 Materials Science +0802.0040 Other Condensed Matter +0804.2830 Other Condensed Matter +0901.2610 Algebraic Topology +0902.1054 +0902.2868 Dynamical Systems +0903.1669 Materials Science +0903.1671 Materials Science +0907.5560 Differential Geometry +0910.2083 Dynamical Systems +1001.3093 +1002.0986 Computational Complexity +1003.0607 +1003.4614 Metric Geometry +1003.5460 Instrumentation and Detectors +1004.1055 Category Theory +1004.1488 Category Theory +1004.1696 Logic +1005.3511 Differential Geometry +1006.4862 Classical Analysis and ODEs +1007.0804 Combinatorics +1007.1205 Differential Geometry +1007.1491 Analysis of PDEs +1008.2052 Number Theory +1008.4486 General Physics +1009.1292 Operator Algebras +1010.2527 Optics +1011.0172 Dynamical Systems +1011.4186 Algebraic Geometry +1012.5464 Combinatorics +1012.5951 +1101.3762 Probability +1102.2970 Probability +1103.0762 Symplectic Geometry +1104.0405 Logic in Computer Science +1104.1997 Number Theory +1104.3727 Combinatorics +1105.1047 Phenomenology +1105.1401 Theory +1105.1768 Quantum Algebra +1105.2532 Combinatorics +1105.4307 Rings and Algebras +1106.2510 Differential Geometry +1106.2858 Mesoscale and Nanoscale Physics +1106.4460 Optics +1106.4936 +1107.0175 Complex Variables +1107.2435 Complex Variables +1107.4455 +1107.5136 Probability +1107.5588 Algebraic Geometry +1107.6029 +1108.0920 Probability +1108.3119 Statistical Mechanics +1108.4068 Quantum Gases +1109.0486 Methodology +1109.0505 Differential Geometry +1109.0595 Differential Geometry +1109.0877 Dynamical Systems +1110.0034 General Physics +1110.2184 Strongly Correlated Electrons +1110.2391 Combinatorics +1110.2476 +1110.2497 Classical Physics +1110.3585 Differential Geometry +1110.3716 Quantum Gases +1110.5967 Analysis of PDEs +1110.5979 +1111.2842 Dynamical Systems +1111.3352 Representation Theory +1111.3767 Strongly Correlated Electrons +1111.4507 Quantum Gases +1111.5578 +1111.7268 Phenomenology +1112.0117 Experiment +1112.0721 Information Theory +1112.1397 Number Theory +1112.2332 Probability +1112.2816 Physics and Society +1112.2819 Theory +1112.3151 Computational Physics +1112.6010 Number Theory +1201.0177 Quantum Gases +1201.0716 Operator Algebras +1201.0849 +1201.2573 Quantum Gases +1201.2918 Computer Science and Game Theory +1201.4744 Differential Geometry +1201.5327 Materials Science +1201.5725 +1201.5755 Theory +1201.6552 +1201.6611 Statistics Theory +1202.0753 Computation +1202.1093 Disordered Systems and Neural Networks +1202.1785 Analysis of PDEs +1202.4049 Cosmology and Nongalactic Astrophysics +1202.4651 Algebraic Geometry +1202.5445 Mesoscale and Nanoscale Physics +1202.5606 Mesoscale and Nanoscale Physics +1203.1204 Lattice +1203.1396 Fluid Dynamics +1203.1703 Category Theory +1203.1919 Cosmology and Nongalactic Astrophysics +1203.2531 Phenomenology +1203.4808 Cosmology and Nongalactic Astrophysics +1203.5076 Computation and Language +1203.5813 +1203.6291 Atomic Physics +1203.6473 Number Theory +1204.0135 +1204.0962 Superconductivity +1204.1255 Computer Science and Game Theory +1204.3044 Mesoscale and Nanoscale Physics +1204.3329 Optimization and Control +1204.3382 Superconductivity +1204.3544 +1204.3700 Information Theory +1204.4593 +1204.5073 Optics +1204.5557 Materials Science +1204.5610 Differential Geometry +1204.6349 +1205.0517 Numerical Analysis +1205.1128 Group Theory +1205.1286 Mesoscale and Nanoscale Physics +1205.1661 Theory +1205.4036 Cosmology and Nongalactic Astrophysics +1205.4175 Materials Science +1205.4193 Mesoscale and Nanoscale Physics +1205.4742 Algebraic Geometry +1205.4782 Differential Geometry +1205.6296 Materials Science +1205.6569 Phenomenology +1206.1043 Cosmology and Nongalactic Astrophysics +1206.1898 Machine Learning +1206.1966 Phenomenology +1206.2155 Phenomenology +1206.3191 Phenomenology +1206.3586 Quantum Algebra +1206.3747 Digital Libraries +1206.4574 +1206.4902 Fluid Dynamics +1206.5110 Analysis of PDEs +1206.5349 Learning +1206.6304 Complex Variables +1207.0585 +1207.2169 Computational Engineering, Finance, and Science +1207.2172 General Physics +1207.2199 Phenomenology +1207.2644 Phenomenology +1207.3103 Quantum Gases +1207.3515 Theory +1207.3853 Differential Geometry +1207.3984 Strongly Correlated Electrons +1207.4540 Statistical Mechanics +1207.4775 Atomic Physics +1207.4805 +1207.5202 Biological Physics +1207.5204 Biological Physics +1207.5305 +1207.7305 Statistical Mechanics +1208.0621 Analysis of PDEs +1208.1047 Phenomenology +1208.1917 Strongly Correlated Electrons +1208.2143 Mesoscale and Nanoscale Physics +1208.2425 Probability +1208.2695 Theory +1208.4432 Phenomenology +1208.5046 Cosmology and Nongalactic Astrophysics +1208.5742 Geometric Topology +1209.1005 Differential Geometry +1209.1629 General Physics +1209.3815 Theory +1209.3869 Artificial Intelligence +1209.4262 Probability +1209.4458 Solar and Stellar Astrophysics +1209.4506 Materials Science +1209.4795 Algebraic Geometry +1209.4949 Functional Analysis +1209.5485 Materials Science +1209.5874 Strongly Correlated Electrons +1209.5905 Computational Engineering, Finance, and Science +1209.6351 Theory +1210.0610 Plasma Physics +1210.0789 Solar and Stellar Astrophysics +1210.1969 Solar and Stellar Astrophysics +1210.2341 Mesoscale and Nanoscale Physics +1210.2392 Cosmology and Nongalactic Astrophysics +1210.2908 Molecular Networks +1210.5191 Classical Physics +1210.5332 Theory +1210.5486 Computation and Language +1210.6494 Discrete Mathematics +1210.6543 Number Theory +1210.6792 Analysis of PDEs +1210.7254 Algebraic Topology +1210.8089 General Physics +1211.0018 General Physics +1211.0071 Computational Complexity +1211.0765 Complex Variables +1211.0938 Applications +1211.1182 Experiment +1211.1550 Learning +1211.1879 Soft Condensed Matter +1211.1914 +1211.2027 Phenomenology +1211.2177 Discrete Mathematics +1211.2240 Theory +1211.2244 Superconductivity +1211.2245 Optimization and Control +1211.2257 Classical Physics +1211.2259 Software Engineering +1211.2260 Learning +1211.2264 Statistics Theory +1211.2265 Information Theory +1211.2266 +1211.2268 Computer Science and Game Theory +1211.2280 Information Theory +1211.2282 Lattice +1211.2286 Number Theory +1211.2287 Computer Science and Game Theory +1211.2288 Phenomenology +1211.2290 Computation and Language +1211.2292 Distributed, Parallel, and Cluster Computing +1211.2293 Distributed, Parallel, and Cluster Computing +1211.2294 Plasma Physics +1211.2295 Plasma Physics +1211.2297 Dynamical Systems +1211.2298 Plasma Physics +1211.2299 Probability +1211.2305 Phenomenology +1211.2309 Category Theory +1211.2310 K-Theory and Homology +1211.2313 Adaptation and Self-Organizing Systems +1211.2314 Category Theory +1211.2318 Other Condensed Matter +1211.2323 Classical Physics +1211.2324 Differential Geometry +1211.2327 +1211.2331 Theory +1211.2332 Optics +1211.2333 +1211.2334 Symplectic Geometry +1211.2336 Functional Analysis +1211.2341 Analysis of PDEs +1211.2344 Probability +1211.2347 Group Theory +1211.2348 Mesoscale and Nanoscale Physics +1211.2349 Molecular Networks +1211.2351 Strongly Correlated Electrons +1211.2354 Databases +1211.2356 Genomics +1211.2358 Logic +1211.2362 Statistical Mechanics +1211.2363 +1211.2367 Databases +1211.2369 Algebraic Geometry +1211.2372 Mesoscale and Nanoscale Physics +1211.2373 Materials Science +1211.2374 Combinatorics +1211.2378 Neural and Evolutionary Computing +1211.2383 Instrumentation and Methods for Astrophysics +1211.2384 Data Structures and Algorithms +1211.2385 Solar and Stellar Astrophysics +1211.2386 Networking and Internet Architecture +1211.2389 Metric Geometry +1211.2393 Combinatorics +1211.2394 Analysis of PDEs +1211.2395 Spectral Theory +1211.2396 Computers and Society +1211.2398 Computers and Society +1211.2399 Computer Science and Game Theory +1211.2402 Computers and Society +1211.2403 Materials Science +1211.2404 Computers and Society +1211.2405 Computer Science and Game Theory +1211.2406 Computers and Society +1211.2407 Computers and Society +1211.2408 +1211.2409 Combinatorics +1211.2410 Computers and Society +1211.2412 Human-Computer Interaction +1211.2418 Lattice +1211.2425 Optimization and Control +1211.2428 Group Theory +1211.2429 Phenomenology +1211.2432 Optics +1211.2436 Atomic Physics +1211.2439 Differential Geometry +1211.2442 Computation +1211.2444 +1211.2447 Group Theory +1211.2450 Algebraic Geometry +1211.2454 Complex Variables +1211.2455 Number Theory +1211.2458 Quantitative Methods +1211.2463 Analysis of PDEs +1211.2465 Analysis of PDEs +1211.2476 Multiagent Systems +1211.2478 Theory +1211.2479 +1211.2482 Combinatorics +1211.2483 Computational Geometry +1211.2485 +1211.2486 Algebraic Geometry +1211.2487 Information Theory +1211.2488 Networking and Internet Architecture +1211.2489 Classical Analysis and ODEs +1211.2492 Materials Science +1211.2495 Computers and Society +1211.2497 Information Theory +1211.2500 Computer Vision and Pattern Recognition +1211.2501 Networking and Internet Architecture +1211.2502 Computer Vision and Pattern Recognition +1211.2503 Representation Theory +1211.2504 Lattice +1211.2508 Lattice +1211.2514 Probability +1211.2515 Strongly Correlated Electrons +1211.2520 Analysis of PDEs +1211.2522 Statistics Theory +1211.2526 Algebraic Geometry +1211.2535 Physics and Society +1211.2540 Analysis of PDEs +1211.2545 High Energy Astrophysical Phenomena +1211.2546 Solar and Stellar Astrophysics +1211.2547 Networking and Internet Architecture +1211.2550 Analysis of PDEs +1211.2552 Accelerator Physics +1211.2553 Geometric Topology +1211.2554 History and Philosophy of Physics +1211.2556 Learning +1211.2560 Analysis of PDEs +1211.2566 Atomic Physics +1211.2568 Analysis of PDEs +1211.2569 Computational Geometry +1211.2574 Analysis of PDEs +1211.2575 Digital Libraries +1211.2582 Statistics Theory +1211.2583 +1211.2588 +1211.2590 Cosmology and Nongalactic Astrophysics +1211.2594 +1211.2599 Solar and Stellar Astrophysics +1211.2600 Combinatorics +1211.2601 Lattice +1211.2603 Classical Analysis and ODEs +1211.2604 Functional Analysis +1211.2605 Number Theory +1211.2607 Statistics Theory +1211.2610 Plasma Physics +1211.2611 Quantum Algebra +1211.2612 Number Theory +1211.2614 Number Theory +1211.2615 Representation Theory +1211.2625 Commutative Algebra +1211.2626 Earth and Planetary Astrophysics +1211.2630 Statistics Theory +1211.2632 Pattern Formation and Solitons +1211.2633 Functional Analysis +1211.2635 Methodology +1211.2636 Data Structures and Algorithms +1211.2640 Symplectic Geometry +1211.2642 Phenomenology +1211.2650 Classical Physics +1211.2652 Atomic Physics +1211.2653 Optics +1211.2656 High Energy Astrophysical Phenomena +1211.2657 Phenomenology +1211.2661 +1211.2668 Physics and Society +1211.2670 Data Structures and Algorithms +1211.2672 Combinatorics +1211.2675 Classical Analysis and ODEs +1211.2685 +1211.2687 Data Structures and Algorithms +1211.2699 Multimedia +1211.2700 Differential Geometry +1211.2701 Mesoscale and Nanoscale Physics +1211.2706 General Physics +1211.2708 Software Engineering +1211.2709 General Finance +1211.2714 +1211.2717 Machine Learning +1211.2720 Solar and Stellar Astrophysics +1211.2723 Information Theory +1211.2725 Differential Geometry +1211.2727 Solar and Stellar Astrophysics +1211.2730 Group Theory +1211.2734 Computational Geometry +1211.2735 Materials Science +1211.2736 Artificial Intelligence +1211.2737 Human-Computer Interaction +1211.2740 +1211.2741 Computation and Language +1211.2742 Computer Vision and Pattern Recognition +1211.2743 Computational Engineering, Finance, and Science +1211.2747 History and Philosophy of Physics +1211.2749 +1211.2750 Classical Analysis and ODEs +1211.2751 Cryptography and Security +1211.2752 Commutative Algebra +1211.2753 Populations and Evolution +1211.2754 Portfolio Management +1211.2755 Instrumentation and Methods for Astrophysics +1211.2757 Cosmology and Nongalactic Astrophysics +1211.2758 Combinatorics +1211.2759 Classical Analysis and ODEs +1211.2760 General Mathematics +1211.2762 Differential Geometry +1211.2767 Strongly Correlated Electrons +1211.2776 Programming Languages +1211.2777 History and Philosophy of Physics +1211.2779 +1211.2783 General Physics +1211.2784 +1211.2787 Adaptation and Self-Organizing Systems +1211.2791 Solar and Stellar Astrophysics +1211.2792 Differential Geometry +1211.2794 Phenomenology +1211.2795 Phenomenology +1211.2796 Phenomenology +astro-ph/0703458 +cond-mat/0208254 Materials Science +cond-mat/0210242 Materials Science +hep-ex/0303010 Experiment +math/0506403 Geometric Topology +math/0607079 Geometric Topology +math/0703902 Probability +physics/0608021 Atomic Physics +physics/0610029 Plasma Physics +0705.1487 Geometric Topology +0711.2568 Numerical Analysis +0805.1977 Strongly Correlated Electrons +0806.0871 Combinatorics +0808.2402 Mesoscale and Nanoscale Physics +0809.2544 Other Condensed Matter +0902.0492 Geometric Topology +0902.2851 Distributed, Parallel, and Cluster Computing +0905.2216 Mesoscale and Nanoscale Physics +0906.1528 +0909.3468 +0912.0640 Probability +1003.2390 Methodology +1005.0483 Probability +1005.2428 Exactly Solvable and Integrable Systems +1007.1812 Computer Science and Game Theory +1007.4502 Algebraic Geometry +1008.3577 Differential Geometry +1009.0120 Algebraic Topology +1011.0046 Computational Complexity +1012.5738 +1101.1707 General Finance +1101.4981 Numerical Analysis +1102.0074 Theory +1102.0902 Physics and Society +1102.3435 Cosmology and Nongalactic Astrophysics +1102.5061 Probability +1102.5329 Mesoscale and Nanoscale Physics +1103.0604 +1103.2185 Statistical Mechanics +1103.2218 Combinatorics +1103.4723 Computer Vision and Pattern Recognition +1104.1771 Statistics Theory +1105.1699 +1105.2474 Numerical Analysis +1105.6324 Quantum Gases +1106.0191 Algebraic Geometry +1106.1082 +1106.3312 Theory +1106.3733 Algebraic Geometry +1106.3955 Cosmology and Nongalactic Astrophysics +1106.6108 +1107.0835 Strongly Correlated Electrons +1107.1459 +1107.2425 Classical Analysis and ODEs +1107.4359 +1107.4652 Information Theory +1107.5545 +1108.0088 Strongly Correlated Electrons +1108.2561 Quantum Gases +1108.3411 +1108.5650 Strongly Correlated Electrons +1108.5668 Artificial Intelligence +1108.5930 Optimization and Control +1109.0684 Probability +1109.4393 Superconductivity +1109.4758 Mesoscale and Nanoscale Physics +1110.0253 Number Theory +1110.3050 Cosmology and Nongalactic Astrophysics +1110.4491 Phenomenology +1110.4688 Cosmology and Nongalactic Astrophysics +1110.4724 Molecular Networks +1110.5834 Mesoscale and Nanoscale Physics +1110.6085 +1111.0179 Strongly Correlated Electrons +1111.2446 Atomic Physics +1111.3004 Materials Science +1111.4393 Optics +1111.5073 +1111.6028 Strongly Correlated Electrons +1112.0440 Strongly Correlated Electrons +1112.2602 Superconductivity +1112.2617 Combinatorics +1112.4740 Pricing of Securities +1112.5948 Classical Analysis and ODEs +1112.6261 Phenomenology +1201.1386 Experiment +1201.2395 Statistics Theory +1201.3421 +1201.4031 Mesoscale and Nanoscale Physics +1201.4899 Data Structures and Algorithms +1201.5966 Solar and Stellar Astrophysics +1201.6185 Algebraic Geometry +1201.6354 Solar and Stellar Astrophysics +1201.6665 Experiment +1202.1933 Statistical Mechanics +1202.2566 Combinatorics +1202.3476 Chaotic Dynamics +1202.3921 +1202.3930 History and Overview +1202.4370 Algebraic Geometry +1202.5729 Earth and Planetary Astrophysics +1202.5797 Data Structures and Algorithms +1202.6279 +1202.6469 Statistics Theory +1202.6516 Experiment +1202.6545 Statistics Theory +1202.6548 Mathematical Software +1203.0002 Instrumentation and Methods for Astrophysics +1203.0017 Number Theory +1203.0018 General Mathematics +1203.0024 Databases +1203.0031 Accelerator Physics +1203.0033 +1203.0035 Materials Science +1203.0043 Medical Physics +1203.0044 Discrete Mathematics +1203.0048 Instrumentation and Detectors +1203.0050 Computer Science and Game Theory +1203.0055 Databases +1203.0056 Databases +1203.0060 Databases +1203.0061 Databases +1203.0064 Materials Science +1203.0068 Theory +1203.0069 Statistical Mechanics +1203.0070 Accelerator Physics +1203.0072 Quantitative Methods +1203.0077 Databases +1203.0078 Mesoscale and Nanoscale Physics +1203.0081 Biological Physics +1203.0082 Statistical Mechanics +1203.0083 Mesoscale and Nanoscale Physics +1203.0090 Combinatorics +1203.0094 Statistics Theory +1203.0095 Dynamical Systems +1203.0096 Computational Engineering, Finance, and Science +1203.0097 Statistics Theory +1203.0098 Applications +1203.0101 Instrumentation and Detectors +1203.0105 Combinatorics +1203.0106 Methodology +1203.0109 Instrumentation and Detectors +1203.0114 Materials Science +1203.0120 Data Structures and Algorithms +1203.0128 Superconductivity +1203.0129 Optimization and Control +1203.0131 Statistics Theory +1203.0133 Applications +1203.0134 Statistical Mechanics +1203.0135 Social and Information Networks +1203.0141 Statistical Mechanics +1203.0144 Strongly Correlated Electrons +1203.0146 Probability +1203.0147 Statistical Mechanics +1203.0154 Combinatorics +1203.0157 Mesoscale and Nanoscale Physics +1203.0159 Classical Analysis and ODEs +1203.0163 General Finance +1203.0164 +1203.0167 Lattice +1203.0174 +1203.0176 Probability +1203.0177 Atomic Physics +1203.0180 Molecular Networks +1203.0182 Quantum Gases +1203.0186 Statistics Theory +1203.0191 Applications +1203.0195 Group Theory +1203.0201 Spectral Theory +1203.0203 Learning +1203.0204 Populations and Evolution +1203.0206 Soft Condensed Matter +1203.0208 Algebraic Geometry +1203.0213 Algebraic Geometry +1203.0216 Number Theory +1203.0217 Instrumentation and Detectors +1203.0218 Analysis of PDEs +1203.0220 Artificial Intelligence +1203.0221 Solar and Stellar Astrophysics +1203.0225 Number Theory +1203.0226 Analysis of PDEs +1203.0231 Networking and Internet Architecture +1203.0233 Materials Science +1203.0234 Functional Analysis +1203.0236 Fluid Dynamics +1203.0240 Networking and Internet Architecture +1203.0242 Data Analysis, Statistics and Probability +1203.0244 Superconductivity +1203.0249 Instrumentation and Detectors +1203.0250 Phenomenology +1203.0251 Statistics Theory +1203.0253 Optimization and Control +1203.0257 Metric Geometry +1203.0259 Data Structures and Algorithms +1203.0265 Computer Vision and Pattern Recognition +1203.0277 Representation Theory +1203.0279 Functional Analysis +1203.0292 Optimization and Control +cond-mat/0112473 Mesoscale and Nanoscale Physics +cond-mat/0204217 Statistical Mechanics +cond-mat/0305524 +cond-mat/0508251 Strongly Correlated Electrons +cond-mat/0610225 Other Condensed Matter +math/0411633 Geometric Topology +math/0505498 Algebraic Geometry +math/0505505 Algebraic Geometry +math/0606359 Geometric Topology +0712.1839 +0905.4650 Probability +0912.3403 Computer Science and Game Theory +0912.3892 General Physics +1003.5973 Number Theory +1007.0745 Superconductivity +1007.3394 Exactly Solvable and Integrable Systems +1008.2415 Plasma Physics +1010.3590 Probability +1101.5090 Algebraic Geometry +1102.2062 Functional Analysis +1102.5324 Functional Analysis +1103.1151 Algebraic Geometry +1103.4701 Exactly Solvable and Integrable Systems +1103.5041 Plasma Physics +1104.0454 Optimization and Control +1104.4548 Pricing of Securities +1105.3099 Soft Condensed Matter +1106.1353 Theory +1106.6253 Materials Science +1108.1465 Materials Science +1108.1955 +1108.2534 Solar and Stellar Astrophysics +1108.5937 Exactly Solvable and Integrable Systems +1108.6045 Instrumentation and Detectors +1109.6611 Statistics Theory +1110.0784 +1110.5163 Exactly Solvable and Integrable Systems +1111.0217 Analysis of PDEs +1111.1314 Superconductivity +1111.3927 Mesoscale and Nanoscale Physics +1111.5651 Number Theory +1111.6931 Strongly Correlated Electrons +1112.1460 Soft Condensed Matter +1112.5763 +1201.1713 Logic +1202.3091 +1202.5500 Probability +1203.2211 Superconductivity +1203.2393 Networking and Internet Architecture +1203.2472 High Energy Astrophysical Phenomena +1203.2976 +1203.3083 Computation +1203.4455 Computer Science and Game Theory +1204.1107 Strongly Correlated Electrons +1204.1755 +1204.2711 Theory +1204.2765 Computation and Language +1204.3395 Fluid Dynamics +1204.4112 General Physics +1204.4614 General Finance +1204.4698 +1204.6159 Analysis of PDEs +1204.6432 Dynamical Systems +1205.0161 Theory +1205.3956 Mesoscale and Nanoscale Physics +1205.4696 Plasma Physics +1206.1086 Solar and Stellar Astrophysics +1206.2646 Strongly Correlated Electrons +1206.2959 Networking and Internet Architecture +1206.4969 Applications +1206.5067 Group Theory +1207.0622 +1207.1431 Phenomenology +1207.1827 +1207.2855 Quantum Gases +1207.3142 Computer Vision and Pattern Recognition +1207.3630 High Energy Astrophysical Phenomena +1207.3801 Mesoscale and Nanoscale Physics +1207.3941 Theory +1207.6122 Materials Science +1207.6720 Numerical Analysis +1208.3074 Mesoscale and Nanoscale Physics +1208.5413 Information Theory +1208.5849 Materials Science +1208.5961 Complex Variables +1208.6319 Materials Science +1208.6417 Complex Variables +1208.6580 Quantum Gases +1209.0159 Exactly Solvable and Integrable Systems +1209.0350 Lattice +1209.2208 Solar and Stellar Astrophysics +1209.2883 Systems and Control +1209.3122 Soft Condensed Matter +1209.3615 Instrumentation and Methods for Astrophysics +1209.4997 Physics and Society +1209.5805 Systems and Control +1209.5858 Solar and Stellar Astrophysics +1209.6017 Information Theory +1209.6272 Earth and Planetary Astrophysics +1210.0400 +1210.1187 Quantum Gases +1210.1250 Solar and Stellar Astrophysics +1210.1930 +1210.2031 Differential Geometry +1210.5365 Optics +1210.5934 Mesoscale and Nanoscale Physics +1210.6280 Optimization and Control +1210.6490 Phenomenology +1210.7014 Computer Vision and Pattern Recognition +1210.7362 Computer Vision and Pattern Recognition +1210.7517 Mesoscale and Nanoscale Physics +1210.8381 Chemical Physics +1211.0162 Materials Science +1211.0485 Geometric Topology +1211.0777 Dynamical Systems +1211.0878 Atmospheric and Oceanic Physics +1211.1221 Superconductivity +1211.1422 Number Theory +1211.1449 Optimization and Control +1211.1519 Dynamical Systems +1211.1526 Computational Engineering, Finance, and Science +1211.1666 Cryptography and Security +1211.1667 Strongly Correlated Electrons +1211.1671 Cosmology and Nongalactic Astrophysics +1211.1677 Cosmology and Nongalactic Astrophysics +1211.1678 Lattice +1211.1690 Robotics +1211.1694 Computational Engineering, Finance, and Science +1211.1696 Optimization and Control +1211.1698 Materials Science +1211.1704 Materials Science +1211.1706 Optimization and Control +1211.1717 Applications +1211.1721 Optics +1211.1722 Computational Complexity +1211.1725 Statistics Theory +1211.1733 Neural and Evolutionary Computing +1211.1736 Networking and Internet Architecture +1211.1737 Genomics +1211.1739 +1211.1741 History and Philosophy of Physics +1211.1744 Astrophysics of Galaxies +1211.1747 Geometric Topology +1211.1751 Solar and Stellar Astrophysics +1211.1752 Computer Vision and Pattern Recognition +1211.1754 Representation Theory +1211.1755 Differential Geometry +1211.1757 Algebraic Geometry +1211.1760 Cosmology and Nongalactic Astrophysics +1211.1762 Exactly Solvable and Integrable Systems +1211.1764 Analysis of PDEs +1211.1766 Mesoscale and Nanoscale Physics +1211.1767 Soft Condensed Matter +1211.1768 Graphics +1211.1775 Probability +1211.1780 Information Retrieval +1211.1782 Networking and Internet Architecture +1211.1783 Algebraic Geometry +1211.1785 Probability +1211.1786 Exactly Solvable and Integrable Systems +1211.1787 +1211.1788 Databases +1211.1790 Physics and Society +1211.1793 Number Theory +1211.1795 Cosmology and Nongalactic Astrophysics +1211.1799 Learning +1211.1800 Computer Vision and Pattern Recognition +1211.1803 Lattice +1211.1804 Number Theory +1211.1809 Numerical Analysis +1211.1816 Complex Variables +1211.1825 Physics and Society +1211.1830 Information Theory +1211.1833 Lattice +1211.1834 Numerical Analysis +1211.1837 Probability +1211.1841 Differential Geometry +1211.1844 Earth and Planetary Astrophysics +1211.1846 Probability +1211.1850 Logic +1211.1857 Data Structures and Algorithms +1211.1861 Information Retrieval +1211.1867 Algebraic Geometry +1211.1878 Logic in Computer Science +1211.1883 Algebraic Geometry +1211.1894 Probability +1211.1897 General Finance +1211.1899 Combinatorics +1211.1900 Analysis of PDEs +1211.1901 Mesoscale and Nanoscale Physics +1211.1904 Cryptography and Security +1211.1908 Solar and Stellar Astrophysics +1211.1909 Data Structures and Algorithms +1211.1917 History and Philosophy of Physics +1211.1919 Trading and Market Microstructure +1211.1926 Cosmology and Nongalactic Astrophysics +1211.1935 Classical Physics +1211.1939 Differential Geometry +1211.1942 Theory +1211.1945 Strongly Correlated Electrons +1211.1948 Instrumentation and Detectors +1211.1958 Computational Complexity +1211.1960 Combinatorics +1211.1961 Superconductivity +1211.1964 Physics and Society +1211.1965 Plasma Physics +1211.1967 Probability +astro-ph/0604185 +nlin/0008034 Exactly Solvable and Integrable Systems +nlin/0009043 Exactly Solvable and Integrable Systems +nlin/0404040 Exactly Solvable and Integrable Systems +nlin/0410003 Exactly Solvable and Integrable Systems +nlin/0605024 Exactly Solvable and Integrable Systems +solv-int/9812020 Exactly Solvable and Integrable Systems +solv-int/9903004 Exactly Solvable and Integrable Systems +0710.3306 Mesoscale and Nanoscale Physics +0711.1343 Group Theory +0711.4274 Mesoscale and Nanoscale Physics +0712.3877 Group Theory +0801.1513 Geometric Topology +0803.2990 Algebraic Geometry +0810.4597 Materials Science +0812.4503 Algebraic Geometry +0902.0202 Group Theory +0903.0216 Group Theory +0903.5486 Probability +0904.4373 +0905.2820 Superconductivity +0907.4631 Numerical Analysis +0909.1718 Theory +0911.2012 Chemical Physics +1002.1244 +1003.1362 Combinatorics +1004.5373 Probability +1007.0845 K-Theory and Homology +1007.0997 +1008.3507 Mesoscale and Nanoscale Physics +1009.1103 Mesoscale and Nanoscale Physics +1009.5051 Group Theory +1010.2198 Information Theory +1010.2360 Number Theory +1010.2865 Pricing of Securities +1010.6071 Materials Science +1011.2453 Quantum Gases +1012.0658 Mesoscale and Nanoscale Physics +1012.0722 Adaptation and Self-Organizing Systems +1012.1680 Number Theory +1101.0092 Superconductivity +1102.1167 Digital Libraries +1103.0863 Optics +1103.2878 Strongly Correlated Electrons +1104.3304 +1104.4342 Superconductivity +1104.5417 Differential Geometry +1104.5423 General Physics +1105.2204 Methodology +1106.1530 Statistical Mechanics +1106.4585 Superconductivity +1106.6204 Probability +1107.1601 Phenomenology +1107.1797 Commutative Algebra +1107.2544 Strongly Correlated Electrons +1107.2632 +1108.2476 Mesoscale and Nanoscale Physics +1108.3026 +1109.1372 Cosmology and Nongalactic Astrophysics +1109.2793 Information Retrieval +1109.4522 Representation Theory +1110.0695 Superconductivity +1110.1540 +1110.2132 Complex Variables +1110.5067 Commutative Algebra +1110.5519 Optics +1110.6864 Number Theory +1111.1152 Populations and Evolution +1111.1835 Lattice +1111.1897 Theory +1111.2137 +1111.2229 Complex Variables +1111.4151 Strongly Correlated Electrons +1111.4336 Superconductivity +1111.7080 Experiment +1112.2525 +1112.3230 Superconductivity +1112.3904 Phenomenology +1112.3905 Geometric Topology +1112.4257 Superconductivity +1112.4796 Phenomenology +1112.5950 Strongly Correlated Electrons +1201.0444 Quantum Gases +1201.0728 Theory +1201.1131 Phenomenology +1201.1142 Statistical Mechanics +1201.1614 Quantum Algebra +1201.2271 Materials Science +1201.2801 Optics +1201.3572 Statistical Finance +1201.3949 Phenomenology +1201.4037 Cosmology and Nongalactic Astrophysics +1201.4355 Algebraic Geometry +1201.4674 High Energy Astrophysical Phenomena +1201.6285 Theory +1201.6288 Mesoscale and Nanoscale Physics +1202.0096 Geophysics +1202.0393 Mesoscale and Nanoscale Physics +1202.1063 Superconductivity +1202.1526 Strongly Correlated Electrons +1202.1666 Mesoscale and Nanoscale Physics +1202.2836 +1202.3424 Computational Physics +1202.4576 Distributed, Parallel, and Cluster Computing +1202.4676 Statistical Mechanics +1202.5149 Quantum Gases +1202.5178 Cosmology and Nongalactic Astrophysics +1202.5181 +1203.0153 Algebraic Geometry +1203.0557 High Energy Astrophysical Phenomena +1203.1651 Cosmology and Nongalactic Astrophysics +1203.2489 Phenomenology +1203.3751 Pattern Formation and Solitons +1203.3851 Group Theory +1203.4371 Materials Science +1203.4586 Quantum Gases +1203.6006 Quantum Gases +1203.6300 Materials Science +1203.6308 Operator Algebras +1203.6819 Differential Geometry +1204.0588 Theory +1204.0621 Disordered Systems and Neural Networks +1204.1072 +1204.1120 Soft Condensed Matter +1204.3690 Instrumentation and Methods for Astrophysics +1204.4634 Chemical Physics +1204.5307 Probability +1204.6177 Soft Condensed Matter +1205.0078 +1205.0259 Solar and Stellar Astrophysics +1205.1459 Instrumentation and Methods for Astrophysics +1205.2555 Digital Libraries +1205.2681 Information Theory +1205.2691 Databases +1205.2991 Biological Physics +1205.3050 Category Theory +1205.3055 Complex Variables +1205.3095 Cosmology and Nongalactic Astrophysics +1205.3157 Numerical Analysis +1205.3158 General Physics +1205.3180 Computer Science and Game Theory +1205.3181 Learning +1205.3182 Optics +1205.3183 Computation and Language +1205.3189 Complex Variables +1205.3190 Solar and Stellar Astrophysics +1205.3193 Information Retrieval +1205.3196 Chaotic Dynamics +1205.3202 Strongly Correlated Electrons +1205.3204 Statistical Mechanics +1205.3205 Human-Computer Interaction +1205.3208 Chaotic Dynamics +1205.3212 Social and Information Networks +1205.3218 Probability +1205.3222 Probability +1205.3231 Databases +1205.3235 Metric Geometry +1205.3237 Analysis of PDEs +1205.3241 Experiment +1205.3242 Materials Science +1205.3244 Statistical Mechanics +1205.3245 Physics and Society +1205.3247 Distributed, Parallel, and Cluster Computing +1205.3252 Information Theory +1205.3257 Algebraic Geometry +1205.3258 +1205.3264 Operator Algebras +1205.3266 Combinatorics +1205.3272 Information Theory +1205.3275 Probability +1205.3277 Information Theory +1205.3281 Materials Science +1205.3283 Optics +1205.3286 Information Theory +1205.3287 Analysis of PDEs +1205.3288 Analysis of PDEs +1205.3290 Methodology +1205.3293 Theory +1205.3298 Instrumentation and Detectors +1205.3305 Networking and Internet Architecture +1205.3306 Differential Geometry +1205.3316 Computation and Language +1205.3319 Networking and Internet Architecture +1205.3320 Methodology +1205.3323 Functional Analysis +1205.3324 Statistics Theory +1205.3327 Networking and Internet Architecture +1205.3328 Networking and Internet Architecture +1205.3335 Theory +1205.3336 Neural and Evolutionary Computing +1205.3342 Commutative Algebra +1205.3343 Cosmology and Nongalactic Astrophysics +1205.3345 Representation Theory +1205.3346 Complex Variables +1205.3364 Atomic and Molecular Clusters +1205.3367 High Energy Astrophysical Phenomena +1205.3369 Functional Analysis +1205.3371 Formal Languages and Automata Theory +1205.3378 Information Theory +1205.3379 +1205.3380 Artificial Intelligence +1205.3382 Statistical Mechanics +1205.3393 +1205.3394 Other Computer Science +1205.3397 Data Structures and Algorithms +1205.3398 Fluid Dynamics +1205.3402 Data Structures and Algorithms +1205.3406 Other Condensed Matter +1205.3411 Experiment +1205.3412 Functional Analysis +1205.3419 Statistical Mechanics +1205.3420 Number Theory +1205.3423 Functional Analysis +1205.3424 Number Theory +1205.3426 Systems and Control +1205.3432 Statistical Mechanics +1205.3434 Phenomenology +1205.3437 Differential Geometry +1205.3441 Neural and Evolutionary Computing +1205.3443 +1205.3444 Computational Physics +1205.3451 Differential Geometry +1205.3453 Phenomenology +1205.3454 Group Theory +1205.3466 Optics +1205.3467 Materials Science +1205.3469 Materials Science +1205.3473 Logic +1205.3474 Information Theory +1205.3476 Accelerator Physics +1205.3478 Statistical Mechanics +1205.3485 General Mathematics +cond-mat/0703392 Materials Science +math/0301056 Geometric Topology +math/0301057 Geometric Topology +math/0402205 Group Theory +math/0409489 Number Theory +math/0410616 Group Theory +math/0411166 Group Theory +math/0411168 Group Theory +math/0502504 Combinatorics +math/0611188 Group Theory +math/0611873 Group Theory +math/0611874 Group Theory +math/0611876 Group Theory +math/0611877 Group Theory +physics/0209094 General Physics +physics/0409003 General Physics +0711.1639 Physics and Society +0803.3459 +0903.0417 Differential Geometry +0912.1523 +1001.1139 +1005.3730 +1005.4299 Theory +1006.0009 +1006.2424 +1006.4625 +1006.5663 Representation Theory +1007.0115 Algebraic Geometry +1007.3094 Number Theory +1007.3479 Representation Theory +1008.3087 +1010.0399 Algebraic Geometry +1010.2739 +1010.4820 Optimization and Control +1012.0007 +1012.3394 Astrophysics of Galaxies +1012.5167 Functional Analysis +1101.4401 Computer Science and Game Theory +1102.3001 Differential Geometry +1103.3936 Algebraic Geometry +1104.4158 +1104.5440 Symplectic Geometry +1105.5517 Number Theory +1106.5205 +1106.6095 +1107.4191 Numerical Analysis +1107.5406 Analysis of PDEs +1108.0761 Phenomenology +1108.0927 High Energy Astrophysical Phenomena +1108.3416 Analysis of PDEs +1108.4440 Physics Education +1108.5429 +1109.0305 Functional Analysis +1109.1073 Space Physics +1109.3338 Spectral Theory +1109.3354 Adaptation and Self-Organizing Systems +1109.4069 +1109.6597 Physics and Society +1110.0228 Representation Theory +1110.2722 Information Theory +1110.4901 Analysis of PDEs +1110.5044 Theory +1110.5392 Theory +1110.5614 Materials Science +1111.1477 +1111.2215 +1111.2552 Superconductivity +1111.3497 Group Theory +1111.3802 +1111.6280 Mesoscale and Nanoscale Physics +1112.1824 Functional Analysis +1112.5618 Optics +1112.6307 Disordered Systems and Neural Networks +1201.1538 Cosmology and Nongalactic Astrophysics +1201.2802 Theory +1201.3219 Materials Science +1201.4614 Phenomenology +1201.4663 Symplectic Geometry +1202.4788 Materials Science +1203.1126 Logic +1203.1979 Computers and Society +1203.3428 Cryptography and Security +1203.5212 +1203.6171 Optics +1204.0559 Astrophysics of Galaxies +1204.3829 +1204.4361 Biological Physics +1204.4952 History and Overview +1204.5728 Number Theory +1204.6326 Computer Vision and Pattern Recognition +1205.0529 +1205.0741 Physics and Society +1205.2679 Statistics Theory +1205.3139 +1205.3357 Phenomenology +1205.3525 Number Theory +1205.3541 High Energy Astrophysical Phenomena +1205.3549 Learning +1205.3694 Dynamical Systems +1205.3774 General Physics +1205.3790 +1205.3796 Solar and Stellar Astrophysics +1205.3798 Solar and Stellar Astrophysics +1205.3809 Distributed, Parallel, and Cluster Computing +1205.3811 Classical Analysis and ODEs +1205.3814 Metric Geometry +1205.3823 Experiment +1205.3824 Experiment +1205.3831 Networking and Internet Architecture +1205.3837 Phenomenology +1205.3841 Dynamical Systems +1205.3844 Statistical Mechanics +1205.3845 Methodology +1205.3846 Performance +1205.3853 Information Theory +1205.3857 Group Theory +1205.3859 +1205.3865 Probability +1205.3867 Phenomenology +1205.3870 Mesoscale and Nanoscale Physics +1205.3872 Strongly Correlated Electrons +1205.3879 +1205.3885 Experiment +1205.3887 Accelerator Physics +1205.3892 +1205.3899 Experiment +1205.3904 History and Philosophy of Physics +1205.3912 Chaotic Dynamics +1205.3914 Chaotic Dynamics +1205.3917 Dynamical Systems +1205.3918 Methodology +1205.3921 Methodology +1205.3923 Mesoscale and Nanoscale Physics +1205.3928 +1205.3930 Experiment +1205.3939 Mesoscale and Nanoscale Physics +1205.3952 Mathematical Software +1205.3953 Optics +1205.3959 Networking and Internet Architecture +1205.3960 Dynamical Systems +1205.3964 Artificial Intelligence +1205.3966 Artificial Intelligence +1205.3970 +1205.3971 Complex Variables +1205.3973 Classical Analysis and ODEs +1205.3980 Probability +1205.3985 Materials Science +1205.3986 Computers and Society +1205.3987 Algebraic Geometry +1205.3989 Methodology +1205.3990 Metric Geometry +1205.3991 Instrumentation and Methods for Astrophysics +1205.3995 General Physics +1205.3997 Machine Learning +1205.3998 Networking and Internet Architecture +1205.3999 Computer Vision and Pattern Recognition +1205.4003 Probability +1205.4005 Geometric Topology +1205.4012 Cosmology and Nongalactic Astrophysics +1205.4013 Social and Information Networks +quant-ph/0201047 +quant-ph/0510107 +quant-ph/0606125 +0704.2955 Physics and Society +0810.1106 Programming Languages +0904.4609 Representation Theory +0906.3204 Methodology +0906.3215 Computation +0907.5206 +0909.4856 Methodology +0911.1087 Cosmology and Nongalactic Astrophysics +0912.5084 Algebraic Geometry +1001.5176 Statistics Theory +1002.4326 Superconductivity +1003.1191 Dynamical Systems +1004.2461 Differential Geometry +1007.5429 Analysis of PDEs +1008.4496 Strongly Correlated Electrons +1008.4745 Group Theory +1009.0812 Algebraic Geometry +1009.1306 +1009.3952 Theory +1009.5166 Probability +1010.2444 Algebraic Geometry +1010.2841 Instrumentation and Methods for Astrophysics +1010.3278 Algebraic Geometry +1011.6023 +1012.1928 Superconductivity +1012.5294 Statistical Mechanics +1012.5903 Mesoscale and Nanoscale Physics +1101.0444 Operator Algebras +1101.1542 High Energy Astrophysical Phenomena +1101.5349 Soft Condensed Matter +1102.3256 +1103.2212 Networking and Internet Architecture +1103.2893 Algebraic Geometry +1103.3880 Spectral Theory +1104.1628 Cosmology and Nongalactic Astrophysics +1105.0796 Combinatorics +1105.3201 +1105.6174 Materials Science +1106.1750 Soft Condensed Matter +1106.4056 Soft Condensed Matter +1106.5249 Physics and Society +1107.2077 Statistical Mechanics +1107.4256 +1107.5882 Strongly Correlated Electrons +1109.0299 Lattice +1109.0588 Atomic Physics +1109.1485 Chemical Physics +1109.1540 Mesoscale and Nanoscale Physics +1109.2117 Phenomenology +1109.2677 +1109.2724 Optimization and Control +1109.5014 Mesoscale and Nanoscale Physics +1109.5238 Superconductivity +1110.0267 Instrumentation and Methods for Astrophysics +1110.0913 Cosmology and Nongalactic Astrophysics +1110.2174 Theory +1110.2866 Experiment +1110.2886 Theory +1110.2962 Phenomenology +1110.5280 Physics and Society +1110.5298 Mesoscale and Nanoscale Physics +1110.5361 Phenomenology +1110.5600 Experiment +1111.0193 Mesoscale and Nanoscale Physics +1111.0338 Cryptography and Security +1111.0465 Mesoscale and Nanoscale Physics +1111.0829 +1111.1212 Popular Physics +1111.3835 Phenomenology +1111.4845 Probability +1111.6320 Strongly Correlated Electrons +1112.1754 Cosmology and Nongalactic Astrophysics +1112.1927 Strongly Correlated Electrons +1112.2325 +1112.2736 Mesoscale and Nanoscale Physics +1112.3525 Cosmology and Nongalactic Astrophysics +1112.4373 Number Theory +1112.4876 Information Theory +1201.1329 Statistical Mechanics +1201.1363 Distributed, Parallel, and Cluster Computing +1201.1954 Symbolic Computation +1201.2092 Experiment +1201.2153 Statistical Mechanics +1201.2173 Learning +1201.2177 Cosmology and Nongalactic Astrophysics +1201.2191 Mesoscale and Nanoscale Physics +1201.2194 Differential Geometry +1201.2195 Solar and Stellar Astrophysics +1201.2207 Multiagent Systems +1201.2217 Algebraic Geometry +1201.2219 Differential Geometry +1201.2221 Number Theory +1201.2228 Geometric Topology +1201.2237 Networking and Internet Architecture +1201.2240 Information Retrieval +1201.2241 Neural and Evolutionary Computing +1201.2251 Differential Geometry +1201.2252 Cosmology and Nongalactic Astrophysics +1201.2255 Phenomenology +1201.2258 Logic in Computer Science +1201.2260 Combinatorics +1201.2266 +1201.2270 Differential Geometry +1201.2273 Chemical Physics +1201.2277 Social and Information Networks +1201.2278 Functional Analysis +1201.2279 Theory +1201.2280 Functional Analysis +1201.2282 Earth and Planetary Astrophysics +1201.2287 Complex Variables +1201.2288 Distributed, Parallel, and Cluster Computing +1201.2289 Number Theory +1201.2290 Phenomenology +1201.2292 Optimization and Control +1201.2294 Rings and Algebras +1201.2295 High Energy Astrophysical Phenomena +1201.2303 +1201.2304 Information Retrieval +1201.2307 Superconductivity +1201.2308 Numerical Analysis +1201.2312 Programming Languages +1201.2324 Number Theory +1201.2325 Soft Condensed Matter +1201.2335 Algebraic Geometry +1201.2338 Algebraic Geometry +1201.2344 Probability +1201.2345 Accelerator Physics +1201.2346 Accelerator Physics +1201.2348 +1201.2355 Solar and Stellar Astrophysics +1201.2368 Logic +1201.2371 Methodology +1201.2373 Astrophysics of Galaxies +1201.2377 Statistics Theory +1201.2387 Networking and Internet Architecture +1201.2389 Soft Condensed Matter +1201.2390 Numerical Analysis +1201.2392 Superconductivity +1201.2398 Other Condensed Matter +1201.2399 Networking and Internet Architecture +math/0409605 Differential Geometry +math/0509084 Statistics Theory +math/0612424 Number Theory +physics/0605247 Physics and Society +0709.0685 History and Philosophy of Physics +0711.3451 Functional Analysis +0801.1838 Phenomenology +0802.1859 General Topology +0802.1867 +0803.2098 Geometric Topology +0904.4335 Materials Science +0906.3836 Differential Geometry +0908.3407 Algebraic Topology +0912.3370 Cosmology and Nongalactic Astrophysics +0912.3758 Algebraic Geometry +1001.0903 Combinatorics +1002.0077 Differential Geometry +1004.0457 Category Theory +1012.0920 General Topology +1012.2488 Group Theory +1101.0373 Functional Analysis +1101.6074 Data Analysis, Statistics and Probability +1103.3296 Cryptography and Security +1104.5211 Analysis of PDEs +1105.2806 General Topology +1105.5354 Mesoscale and Nanoscale Physics +1106.1156 High Energy Astrophysical Phenomena +1106.1226 Systems and Control +1106.2235 General Topology +1107.4174 Strongly Correlated Electrons +1108.2209 General Topology +1108.4195 General Topology +1108.4197 General Topology +1108.5267 Mesoscale and Nanoscale Physics +1108.5330 Dynamical Systems +1109.0667 Representation Theory +1109.1064 Group Theory +1109.1733 Statistical Mechanics +1109.4560 Geometric Topology +1110.2518 Algebraic Topology +1110.3015 Statistics Theory +1110.3559 Information Theory +1111.0270 Phenomenology +1111.0363 Classical Analysis and ODEs +1111.2307 Theory +1111.3557 Soft Condensed Matter +1111.4457 Metric Geometry +1111.5522 Strongly Correlated Electrons +1111.6708 Functional Analysis +1112.1602 Soft Condensed Matter +1201.0826 Materials Science +1201.2569 Phenomenology +1202.0917 Algebraic Topology +1202.3375 Mesoscale and Nanoscale Physics +1202.4855 Atomic Physics +1202.5346 Functional Analysis +1202.6043 Computational Complexity +1203.0054 Dynamical Systems +1203.0803 Numerical Analysis +1203.3783 Machine Learning +1203.4062 Statistical Mechanics +1203.6247 Optics +1203.6644 Soft Condensed Matter +1204.0308 Plasma Physics +1204.3344 +1204.3759 Strongly Correlated Electrons +1204.5200 Spectral Theory +1204.5446 Cryptography and Security +1205.0644 Quantum Gases +1205.5469 Theory +1205.5749 Soft Condensed Matter +1205.6841 Mesoscale and Nanoscale Physics +1206.5614 Quantum Gases +1206.5714 Mesoscale and Nanoscale Physics +1206.6554 General Topology +1206.6555 General Topology +1206.6556 General Topology +1206.6651 Physics and Society +1206.6779 General Topology +1207.0618 Instrumentation and Detectors +1207.1624 Soft Condensed Matter +1207.2029 +1207.2374 Materials Science +1207.2453 Statistics Theory +1207.2868 Materials Science +1207.4253 +1207.4285 Mesoscale and Nanoscale Physics +1207.6290 Differential Geometry +1207.6503 Rings and Algebras +1208.1092 Populations and Evolution +1208.1222 Theory +1208.1961 Statistical Mechanics +1208.2209 Strongly Correlated Electrons +1208.2652 Strongly Correlated Electrons +1208.4898 Mesoscale and Nanoscale Physics +1209.1587 Algebraic Topology +1209.2213 Strongly Correlated Electrons +1209.2847 Category Theory +1209.3756 Databases +1209.4247 +1209.4831 Physics and Society +1209.5054 Plasma Physics +1209.5876 +1209.6596 Probability +1210.0166 Strongly Correlated Electrons +1210.1632 Superconductivity +1210.3548 Computer Science and Game Theory +1210.4413 Mesoscale and Nanoscale Physics +1210.5471 Atomic Physics +1210.6580 Strongly Correlated Electrons +1210.8276 Optics +1210.8418 Mathematical Software +1211.0166 Phenomenology +1211.0442 History and Overview +1211.0613 Computer Vision and Pattern Recognition +1211.1832 Mesoscale and Nanoscale Physics +1211.3191 Cryptography and Security +1211.6099 Functional Analysis +1211.7185 Strongly Correlated Electrons +1212.0132 Phenomenology +1212.0278 General Physics +1212.0491 Mesoscale and Nanoscale Physics +1212.0808 Phenomenology +1212.0947 Phenomenology +1212.1589 Atomic Physics +1212.1791 Computation +1212.2374 +1212.2588 +1212.3091 General Physics +1212.3557 Information Theory +1212.3754 Analysis of PDEs +1212.3767 Computer Vision and Pattern Recognition +1212.3821 Probability +1212.3837 Experiment +1212.4161 Biomolecules +1212.4163 Classical Analysis and ODEs +1212.4164 Phenomenology +1212.4168 Probability +1212.4169 Astrophysics of Galaxies +1212.4174 Machine Learning +1212.4177 +1212.4178 Number Theory +1212.4179 Logic in Computer Science +1212.4187 Combinatorics +1212.4191 Experiment +1212.4194 Physics and Society +1212.4196 High Energy Astrophysical Phenomena +1212.4198 Information Theory +1212.4199 Functional Analysis +1212.4207 Analysis of PDEs +1212.4209 Metric Geometry +1212.4214 Accelerator Physics +1212.4215 Algebraic Topology +1212.4224 Quantum Gases +1212.4225 Mesoscale and Nanoscale Physics +1212.4226 Plasma Physics +1212.4227 Mesoscale and Nanoscale Physics +1212.4234 Algebraic Geometry +1212.4236 Experiment +1212.4238 +1212.4246 Software Engineering +1212.4247 Software Engineering +1212.4248 Analysis of PDEs +1212.4258 Software Engineering +1212.4260 Solar and Stellar Astrophysics +1212.4266 Functional Analysis +1212.4268 Cosmology and Nongalactic Astrophysics +1212.4270 Cell Behavior +1212.4271 Classical Analysis and ODEs +1212.4272 Materials Science +1212.4279 Pricing of Securities +1212.4280 Number Theory +1212.4282 Number Theory +1212.4286 Plasma Physics +1212.4287 Distributed, Parallel, and Cluster Computing +1212.4289 Quantum Algebra +1212.4293 General Finance +1212.4297 Representation Theory +1212.4299 Functional Analysis +1212.4300 Solar and Stellar Astrophysics +1212.4302 Differential Geometry +1212.4304 Phenomenology +1212.4306 Group Theory +1212.4308 Number Theory +1212.4310 Algebraic Topology +1212.4313 Statistical Mechanics +1212.4315 Computation and Language +1212.4317 Cryptography and Security +1212.4318 +1212.4320 History and Philosophy of Physics +1212.4322 Instrumentation and Detectors +1212.4327 Numerical Analysis +1212.4334 Networking and Internet Architecture +1212.4335 Soft Condensed Matter +1212.4339 +1212.4346 Combinatorics +1212.4347 Learning +1212.4348 Number Theory +1212.4349 Representation Theory +1212.4350 Materials Science +1212.4352 Probability +1212.4362 High Energy Astrophysical Phenomena +1212.4363 Chemical Physics +1212.4366 Functional Analysis +1212.4369 Phenomenology +1212.4373 Cryptography and Security +1212.4379 Quantitative Methods +1212.4382 Atomic Physics +1212.4386 High Energy Astrophysical Phenomena +1212.4391 Geometric Topology +1212.4394 Complex Variables +1212.4395 Functional Analysis +1212.4397 Experiment +1212.4403 Physics Education +1212.4404 Algebraic Geometry +1212.4405 General Physics +1212.4406 Number Theory +1212.4410 Phenomenology +1212.4414 General Physics +1212.4417 Complex Variables +1212.4418 High Energy Astrophysical Phenomena +1212.4422 Mesoscale and Nanoscale Physics +1212.4424 High Energy Astrophysical Phenomena +1212.4426 Instrumentation and Detectors +1212.4431 Materials Science +1212.4432 Geometric Topology +1212.4437 Dynamical Systems +1212.4438 Cosmology and Nongalactic Astrophysics +1212.4439 Mesoscale and Nanoscale Physics +1212.4440 Dynamical Systems +1212.4441 Networking and Internet Architecture +1212.4442 Combinatorics +1212.4444 Logic in Computer Science +1212.4445 Analysis of PDEs +1212.4446 Formal Languages and Automata Theory +1212.4450 Molecular Networks +1212.4457 Statistics Theory +1212.4461 Phenomenology +1212.4463 Combinatorics +0810.0295 Combinatorics +0903.1502 Information Theory +0906.3194 Networking and Internet Architecture +0907.0046 Combinatorics +0912.0335 Probability +0912.2607 Computational Complexity +1002.1504 Atomic Physics +1002.5031 Analysis of PDEs +1003.4306 Probability +1005.2131 Algebraic Geometry +1005.4551 Disordered Systems and Neural Networks +1006.0407 Data Structures and Algorithms +1009.3772 Combinatorics +1009.4510 Combinatorics +1010.3051 Geometric Topology +1010.4168 Mesoscale and Nanoscale Physics +1011.1196 Probability +1011.2113 Information Theory +1011.4441 Number Theory +1102.5011 Complex Variables +1103.5348 Information Theory +1104.1761 +1104.2581 Information Theory +1105.4922 Rings and Algebras +1106.3919 Experiment +1107.3090 Computational Complexity +1107.4307 Materials Science +1108.2211 Exactly Solvable and Integrable Systems +1110.6559 Logic +1111.0808 Other Computer Science +1111.5713 +1112.0905 Statistics Theory +1112.2381 Probability +1201.1811 +1201.2524 +1201.2991 Category Theory +1201.3527 Algebraic Topology +1201.6517 +1202.0586 Algebraic Topology +1202.2665 Probability +1202.3602 Artificial Intelligence +1203.2317 +1203.2459 Superconductivity +1203.5608 +1203.6516 Lattice +1204.0251 Exactly Solvable and Integrable Systems +1204.0721 Strongly Correlated Electrons +1204.1258 Experiment +1204.1400 Networking and Internet Architecture +1204.1822 Quantum Gases +1204.2559 Strongly Correlated Electrons +1204.4042 Probability +1205.0450 Group Theory +1205.0938 +1205.1437 Plasma Physics +1205.1450 Astrophysics of Galaxies +1205.2265 Learning +1205.3925 +1205.5822 Superconductivity +1205.6737 Probability +1206.1996 Discrete Mathematics +1206.2658 +1206.3168 Phenomenology +1206.3542 Materials Science +1206.3930 Number Theory +1206.3964 Plasma Physics +1206.4464 Mesoscale and Nanoscale Physics +1206.4733 Mesoscale and Nanoscale Physics +1206.5737 Lattice +1206.5782 Information Theory +1206.6538 +1206.6895 Theory +1207.0675 +1207.1063 Cosmology and Nongalactic Astrophysics +1207.1314 Statistical Mechanics +1207.2361 +1207.2792 +1207.3391 Biological Physics +1207.4680 Information Theory +1207.5363 Quantum Algebra +1207.5563 Superconductivity +1207.5586 Mesoscale and Nanoscale Physics +1207.6869 Phenomenology +1207.6981 Plasma Physics +1207.6982 Superconductivity +1207.7043 +1208.0625 Materials Science +1208.1518 Experiment +1208.1621 Strongly Correlated Electrons +1208.1857 Experiment +1208.2921 Logic in Computer Science +1208.4960 +1208.5360 Cell Behavior +1208.6169 +1209.0381 Superconductivity +1209.2099 Optics +1209.2987 Instrumentation and Methods for Astrophysics +1209.4113 General Physics +1209.4908 Theory +1209.5678 Phenomenology +1209.6283 Computation +1210.0232 Classical Physics +1210.0735 Classical Analysis and ODEs +1210.1048 Physics and Society +1210.1223 Instrumentation and Detectors +1210.1226 Applications +1210.1230 Computer Vision and Pattern Recognition +1210.1233 Accelerator Physics +1210.1236 Accelerator Physics +1210.1237 Populations and Evolution +1210.1243 Number Theory +1210.1253 Cosmology and Nongalactic Astrophysics +1210.1255 +1210.1256 Analysis of PDEs +1210.1258 Learning +1210.1259 Logic +1210.1263 Number Theory +1210.1265 +1210.1269 Analysis of PDEs +1210.1275 Analysis of PDEs +1210.1280 Computational Complexity +1210.1283 Combinatorics +1210.1284 Commutative Algebra +1210.1285 Analysis of PDEs +1210.1287 Classical Analysis and ODEs +1210.1288 Applications +1210.1291 Software Engineering +1210.1292 Spectral Theory +1210.1293 Dynamical Systems +1210.1296 +1210.1297 Combinatorics +1210.1300 Social and Information Networks +1210.1301 Optimization and Control +1210.1304 Accelerator Physics +1210.1308 Representation Theory +1210.1311 Dynamical Systems +1210.1315 Analysis of PDEs +1210.1317 Learning +1210.1318 Atmospheric and Oceanic Physics +1210.1325 Superconductivity +1210.1327 Fluid Dynamics +1210.1334 Dynamical Systems +1210.1335 Probability +1210.1336 Commutative Algebra +1210.1339 Theory +1210.1341 Representation Theory +1210.1350 Functional Analysis +1210.1354 Probability +1210.1355 +1210.1361 High Energy Astrophysical Phenomena +1210.1362 Probability +1210.1363 Optics +1210.1366 Optics +1210.1367 Complex Variables +1210.1370 Quantum Gases +1210.1373 Analysis of PDEs +1210.1374 Optics +1210.1376 Materials Science +1210.1381 Rings and Algebras +1210.1384 Materials Science +1210.1390 Networking and Internet Architecture +1210.1391 Probability +1210.1392 Functional Analysis +1210.1394 Networking and Internet Architecture +1210.1395 Functional Analysis +1210.1397 Analysis of PDEs +1210.1401 Soft Condensed Matter +1210.1404 Phenomenology +1210.1407 Probability +1210.1410 Data Analysis, Statistics and Probability +1210.1414 Exactly Solvable and Integrable Systems +1210.1415 Statistical Mechanics +1210.1419 Algebraic Geometry +1210.1424 Quantum Gases +1210.1430 Mesoscale and Nanoscale Physics +1210.1431 Soft Condensed Matter +1210.1432 Analysis of PDEs +1210.1433 Logic in Computer Science +1210.1436 Phenomenology +1210.1438 Operator Algebras +1210.1444 Numerical Analysis +1210.1446 Metric Geometry +1210.1453 Analysis of PDEs +1210.1454 Analysis of PDEs +1210.1456 Computer Science and Game Theory +1210.1459 High Energy Astrophysical Phenomena +1210.1461 Learning +1210.1462 Cosmology and Nongalactic Astrophysics +1210.1463 +1210.1464 Probability +1210.1467 Mesoscale and Nanoscale Physics +1210.1468 Cosmology and Nongalactic Astrophysics +1210.1472 Quantitative Methods +1210.1475 Rings and Algebras +1210.1476 Rings and Algebras +1210.1478 History and Overview +1210.1479 Superconductivity +1210.1486 Phenomenology +1210.1487 Algebraic Geometry +1210.1490 Probability +1210.1493 Mesoscale and Nanoscale Physics +1210.1497 Combinatorics +1210.1498 Atmospheric and Oceanic Physics +1210.1499 Disordered Systems and Neural Networks +1210.1501 Materials Science +1210.1502 Rings and Algebras +1210.1511 Phenomenology +1210.1513 Analysis of PDEs +1210.1515 Analysis of PDEs +1210.1518 Geometric Topology +1210.1528 Theory +1210.1529 Instrumentation and Methods for Astrophysics +1210.1530 Neural and Evolutionary Computing +1210.1538 Mesoscale and Nanoscale Physics +1210.1539 Combinatorics +1210.1540 +1210.1544 Neurons and Cognition +1210.1552 Theory +1210.1559 Algebraic Geometry +1210.1560 Probability +math/0307122 Representation Theory +math/0412124 Combinatorics +0707.2908 Probability +0710.0364 +0802.2689 Algebraic Geometry +0803.3686 Other Condensed Matter +0807.2592 Algebraic Topology +0808.3660 Differential Geometry +0809.4673 Algebraic Geometry +0902.2408 High Energy Astrophysical Phenomena +0902.2411 High Energy Astrophysical Phenomena +0904.1752 Discrete Mathematics +0904.4564 +0906.2968 Phenomenology +0909.1969 Analysis of PDEs +0911.0068 Logic +0911.0774 Probability +1002.1431 Probability +1003.3563 Pattern Formation and Solitons +1004.2012 Differential Geometry +1004.3991 Spectral Theory +1006.4038 Materials Science +1007.0819 Complex Variables +1009.1461 Physics and Society +1009.4287 Information Theory +1010.2984 Populations and Evolution +1010.4830 Artificial Intelligence +1010.5138 Optics +1011.5629 Theory +1011.6340 High Energy Astrophysical Phenomena +1012.2002 Classical Analysis and ODEs +1012.4257 Algebraic Geometry +1101.0479 Materials Science +1101.4328 +1102.0046 Cosmology and Nongalactic Astrophysics +1102.2383 History and Philosophy of Physics +1102.2707 Rings and Algebras +1102.3868 Artificial Intelligence +1103.0130 Mesoscale and Nanoscale Physics +1103.4716 Theory +1103.4945 Mesoscale and Nanoscale Physics +1103.5984 Phenomenology +1104.1507 K-Theory and Homology +1104.4930 Materials Science +1104.5208 Astrophysics of Galaxies +1105.3165 Cosmology and Nongalactic Astrophysics +1105.4944 Phenomenology +1105.6203 Statistical Mechanics +1106.0001 Strongly Correlated Electrons +1106.1689 +1106.4352 Number Theory +1106.5542 Soft Condensed Matter +1107.2627 Quantum Gases +1107.3550 Theory +1107.5813 High Energy Astrophysical Phenomena +1107.5936 Disordered Systems and Neural Networks +1108.0823 +1108.2244 +1109.0565 High Energy Astrophysical Phenomena +1109.0966 Statistical Mechanics +1109.1996 Accelerator Physics +1109.2001 Accelerator Physics +1109.2411 Methodology +1109.2928 +1109.5585 Quantum Gases +1110.2340 +1110.3757 +1110.3770 Statistical Mechanics +1110.3995 Optics +1110.5085 +1111.0573 Biological Physics +1111.0976 +1111.1485 Materials Science +1111.2822 +1111.4439 Superconductivity +1111.6332 Probability +1112.0484 Superconductivity +1112.0576 High Energy Astrophysical Phenomena +1112.1084 Cosmology and Nongalactic Astrophysics +1112.3049 Atomic and Molecular Clusters +1112.3214 Phenomenology +1112.4483 Theory +1112.5331 General Mathematics +1112.5669 Strongly Correlated Electrons +1112.6173 Theory +1201.0066 Discrete Mathematics +1201.0212 Statistical Mechanics +1201.0241 Metric Geometry +1201.0316 Cosmology and Nongalactic Astrophysics +1201.0328 Artificial Intelligence +1201.0374 +1201.0541 +1201.0651 Adaptation and Self-Organizing Systems +1201.0705 Biological Physics +1201.0727 Analysis of PDEs +1201.0747 General Physics +1201.0760 Statistical Mechanics +1201.0773 Soft Condensed Matter +1201.0774 Number Theory +1201.0778 Number Theory +1201.0782 Robotics +1201.0783 Cosmology and Nongalactic Astrophysics +1201.0784 +1201.0786 Plasma Physics +1201.0789 Plasma Physics +1201.0792 Operator Algebras +1201.0793 Optics +1201.0797 Cosmology and Nongalactic Astrophysics +1201.0802 Solar and Stellar Astrophysics +1201.0803 Group Theory +1201.0805 Category Theory +1201.0808 +1201.0822 Number Theory +1201.0824 Computational Complexity +1201.0825 Computational Complexity +1201.0830 Information Theory +1201.0833 Solar and Stellar Astrophysics +1201.0834 Networking and Internet Architecture +1201.0840 +1201.0842 Networking and Internet Architecture +1201.0844 Strongly Correlated Electrons +1201.0845 Strongly Correlated Electrons +1201.0851 Software Engineering +1201.0853 Software Engineering +1201.0855 High Energy Astrophysical Phenomena +1201.0858 Analysis of PDEs +1201.0863 Statistical Mechanics +1201.0865 Astrophysics of Galaxies +1201.0868 Statistics Theory +1201.0869 Materials Science +1201.0870 Strongly Correlated Electrons +1201.0872 Statistics Theory +1201.0874 Programming Languages +1201.0875 Phenomenology +1201.0876 Information Theory +1201.0877 Mesoscale and Nanoscale Physics +1201.0882 Computers and Society +1201.0883 Cryptography and Security +1201.0884 Solar and Stellar Astrophysics +1201.0885 Cosmology and Nongalactic Astrophysics +1201.0886 Complex Variables +1201.0891 Logic in Computer Science +1201.0892 Solar and Stellar Astrophysics +1201.0893 Classical Analysis and ODEs +1201.0896 Commutative Algebra +1201.0897 Soft Condensed Matter +1201.0898 Mesoscale and Nanoscale Physics +1201.0900 +1201.0909 Phenomenology +1201.0912 Other Quantitative Biology +1201.0913 Quantitative Methods +1201.0914 Atmospheric and Oceanic Physics +1201.0916 Classical Physics +1201.0917 Computational Geometry +1201.0925 Differential Geometry +1201.0927 Dynamical Systems +1201.0928 Theory +1201.0932 Materials Science +1201.0933 Materials Science +1201.0940 Discrete Mathematics +1201.0945 Cryptography and Security +1201.0949 Cryptography and Security +1201.0952 Complex Variables +1201.0954 Hardware Architecture +1201.0961 Popular Physics +1201.0963 Machine Learning +1201.0968 Phenomenology +1201.0969 Differential Geometry +1201.0970 Differential Geometry +1201.0972 Analysis of PDEs +1201.0975 Analysis of PDEs +1201.0976 Materials Science +1201.0977 Theory +1201.0981 History and Philosophy of Physics +1201.0985 Phenomenology +math-ph/0109028 +0801.3552 Computation +0801.4870 +0802.1578 Programming Languages +0806.3972 Dynamical Systems +0806.4730 Statistics Theory +0807.1813 +0807.1829 Quantum Algebra +0807.3256 Quantum Algebra +0808.3821 Superconductivity +0901.4643 Computational Physics +0902.2274 Combinatorics +0903.1393 Algebraic Geometry +0904.0377 Probability +0906.2057 Representation Theory +0906.4023 Biological Physics +0908.0678 Algebraic Geometry +0908.4548 Analysis of PDEs +0909.2089 Programming Languages +0909.4117 +0910.2566 Probability +0910.5919 Algebraic Geometry +0911.0998 Differential Geometry +0911.1059 Differential Geometry +0911.1644 Probability +1002.4248 Data Structures and Algorithms +1005.3085 Optimization and Control +1007.3197 Complex Variables +1008.0688 Theory +1009.1283 Materials Science +1011.2896 Logic in Computer Science +1011.4154 Operator Algebras +1012.5457 Probability +1102.0398 Phenomenology +1102.0431 Dynamical Systems +1102.1763 +1102.4664 Algebraic Geometry +1102.5760 Algebraic Geometry +1103.1183 Atomic Physics +1103.1719 Probability +1105.0628 +1105.0983 Analysis of PDEs +1106.1162 +1106.2338 Optimization and Control +1107.0404 Chemical Physics +1107.0823 +1107.4287 Numerical Analysis +1107.5533 +1109.3869 +1110.0116 Strongly Correlated Electrons +1110.0402 Metric Geometry +1110.0920 Populations and Evolution +1110.2943 Theory +1110.3527 +1111.0733 Phenomenology +1111.0737 Information Theory +1111.1263 Phenomenology +1111.1917 Phenomenology +1111.3908 +1111.6914 Space Physics +1111.7304 Functional Analysis +1112.0970 Classical Analysis and ODEs +1112.1349 Theory +1112.2730 Analysis of PDEs +1112.2861 Combinatorics +1112.5205 Strongly Correlated Electrons +1201.0609 Operator Algebras +1201.1219 Analysis of PDEs +1201.4307 Logic in Computer Science +1201.5620 +1201.5775 Statistical Mechanics +1201.6442 Theory +1201.6554 +1202.4121 Rings and Algebras +1202.5645 Materials Science +1202.6189 +1203.1949 Commutative Algebra +1203.2022 Physics Education +1203.2091 Analysis of PDEs +1203.5943 Materials Science +1203.6016 +1203.6892 Theory +1204.0284 Analysis of PDEs +1204.0624 Statistical Mechanics +1204.1858 +1204.3007 Materials Science +1204.3451 Quantum Gases +1204.3893 Theory +1204.4171 Quantum Gases +1204.4308 Functional Analysis +1204.4654 Theory +1204.5162 Strongly Correlated Electrons +1204.5726 Accelerator Physics +1204.6222 Strongly Correlated Electrons +1205.1698 Superconductivity +1205.1743 Chemical Physics +1205.2763 Disordered Systems and Neural Networks +1205.3160 High Energy Astrophysical Phenomena +1205.3404 +1205.4201 +1205.4311 Phenomenology +1205.4943 Analysis of PDEs +1205.5144 Mesoscale and Nanoscale Physics +1205.5874 General Mathematics +1205.6003 Instrumentation and Methods for Astrophysics +1205.6444 Theory +1205.6971 Commutative Algebra +1206.0519 Phenomenology +1206.0752 +1206.2332 Populations and Evolution +1206.2372 Optimization and Control +1206.3516 Phenomenology +1206.5187 +1206.5764 Phenomenology +1206.6098 Programming Languages +1206.7116 Materials Science +1207.0222 Theory +1207.0991 Instrumentation and Methods for Astrophysics +1207.1039 +1207.1948 Strongly Correlated Electrons +1207.2305 Theory +1207.2632 Data Structures and Algorithms +1207.2889 +1207.2911 Quantum Gases +1207.3002 Quantum Gases +1207.3531 Optics +1207.3747 Strongly Correlated Electrons +1207.5311 Mesoscale and Nanoscale Physics +1207.5534 Mesoscale and Nanoscale Physics +1207.5663 Physics and Society +1207.6925 Soft Condensed Matter +1207.6931 +1208.2576 Strongly Correlated Electrons +1208.3044 Disordered Systems and Neural Networks +1208.4105 Cosmology and Nongalactic Astrophysics +1208.6274 Astrophysics of Galaxies +1209.2393 Experiment +1209.2957 Classical Physics +1209.3547 +1209.4282 Atomic Physics +1209.5854 Theory +1209.5975 Materials Science +1209.6083 Phenomenology +1209.6317 Materials Science +1209.6514 Superconductivity +1209.6553 +1210.0392 Statistical Mechanics +1210.0461 Data Structures and Algorithms +1210.1062 General Physics +1210.1644 Cosmology and Nongalactic Astrophysics +1210.2441 High Energy Astrophysical Phenomena +1210.4121 +1210.4396 Computers and Society +1210.4410 +1210.4836 Earth and Planetary Astrophysics +1210.5181 Algebraic Geometry +1210.5819 Statistical Mechanics +1210.5907 Lattice +1210.6456 Digital Libraries +1210.7562 Cellular Automata and Lattice Gases +1211.0621 Group Theory +1211.0752 Discrete Mathematics +1211.1796 Space Physics +1211.1898 General Physics +1211.1912 Statistics Theory +1211.2247 Lattice +1211.2253 Lattice +1211.2445 Other Computer Science +1211.2895 Probability +1211.3198 Phenomenology +1211.3369 Mesoscale and Nanoscale Physics +1211.3565 Classical Analysis and ODEs +1211.3930 Statistics Theory +1211.4029 Astrophysics of Galaxies +1211.4037 Populations and Evolution +1211.4038 Systems and Control +1211.4046 Combinatorics +1211.4049 Combinatorics +1211.4051 Materials Science +1211.4055 Instrumentation and Methods for Astrophysics +1211.4056 Information Theory +1211.4057 Atomic Physics +1211.4064 Dynamical Systems +1211.4066 Analysis of PDEs +1211.4080 Methodology +1211.4081 Information Theory +1211.4089 Analysis of PDEs +1211.4090 Logic in Computer Science +1211.4091 Logic in Computer Science +1211.4092 Formal Languages and Automata Theory +1211.4093 Logic in Computer Science +1211.4094 Computational Engineering, Finance, and Science +1211.4095 Logic in Computer Science +1211.4096 Earth and Planetary Astrophysics +1211.4097 Logic in Computer Science +1211.4098 Logic in Computer Science +1211.4099 Logic in Computer Science +1211.4102 Logic in Computer Science +1211.4104 Biological Physics +1211.4106 +1211.4107 +1211.4108 General Finance +1211.4109 Differential Geometry +1211.4112 Physics Education +1211.4113 Computer Science and Game Theory +1211.4114 Optics +1211.4117 Functional Analysis +1211.4120 Optics +1211.4121 Quantum Gases +1211.4122 Artificial Intelligence +1211.4123 Software Engineering +1211.4133 Artificial Intelligence +1211.4138 Probability +1211.4142 Machine Learning +1211.4148 Optimization and Control +1211.4150 Computer Science and Game Theory +1211.4153 Numerical Analysis +1211.4158 Combinatorics +1211.4159 Differential Geometry +1211.4161 Computation and Language +1211.4162 Optics +1211.4164 +1211.4166 Differential Geometry +1211.4167 Statistical Mechanics +1211.4173 Risk Management +1211.4180 Analysis of PDEs +1211.4184 Number Theory +1211.4186 Probability +1211.4189 Dynamical Systems +1211.4190 Functional Analysis +1211.4191 Cryptography and Security +1211.4193 Combinatorics +1211.4196 Mesoscale and Nanoscale Physics +1211.4197 Materials Science +1211.4201 Statistical Mechanics +1211.4204 Commutative Algebra +1211.4207 Statistics Theory +1211.4210 Genomics +1211.4214 Classical Physics +1211.4216 Solar and Stellar Astrophysics +1211.4219 Classical Analysis and ODEs +1211.4223 Populations and Evolution +1211.4226 Computers and Society +1211.4228 Chaotic Dynamics +1211.4231 +1211.4232 +1211.4235 Social and Information Networks +1211.4236 +1211.4238 Lattice +1211.4239 Algebraic Geometry +1211.4241 Operator Algebras +1211.4243 Rings and Algebras +1211.4245 Geometric Topology +1211.4247 Combinatorics +1211.4249 Exactly Solvable and Integrable Systems +1211.4252 Analysis of PDEs +1211.4256 Number Theory +1211.4257 Instrumentation and Methods for Astrophysics +1211.4259 Applications +1211.4262 Computation +1211.4263 Quantitative Methods +1211.4266 Social and Information Networks +1211.4272 Information Theory +1211.4275 Information Theory +1211.4276 Information Theory +1211.4277 Solar and Stellar Astrophysics +1211.4281 Analysis of PDEs +1211.4282 Applications +1211.4283 Combinatorics +1211.4284 Materials Science +1211.4285 Numerical Analysis +1211.4292 +1211.4294 Networking and Internet Architecture +1211.4305 Combinatorics +1211.4307 Computer Vision and Pattern Recognition +1211.4312 Optics +1211.4315 +1211.4318 Materials Science +1211.4321 Machine Learning +1211.4323 Dynamical Systems +1211.4324 Commutative Algebra +1211.4325 Superconductivity +1211.4327 Commutative Algebra +1211.4328 Cryptography and Security +1211.4329 Functional Analysis +1211.4330 +1211.4332 Numerical Analysis +1211.4333 Algebraic Geometry +1211.4334 Lattice +1211.4344 Strongly Correlated Electrons +1211.4358 Optics +1211.4359 Phenomenology +1211.4364 Statistical Mechanics +1211.4366 Biological Physics +1211.4369 Solar and Stellar Astrophysics +1211.4370 Data Structures and Algorithms +1211.4371 Databases +1211.4372 Statistics Theory +1211.4373 Group Theory +1211.4375 Phenomenology +1211.4377 +1211.4379 Analysis of PDEs +1211.4381 Information Theory +1211.4384 Information Theory +1211.4385 Computer Vision and Pattern Recognition +1211.4386 Phenomenology +1211.4389 Phenomenology +1211.4390 Functional Analysis +1211.4392 Information Theory +1211.4396 Pricing of Securities +1211.4398 Atomic Physics +1211.4400 High Energy Astrophysical Phenomena +1211.4404 Probability +1211.4409 Instrumentation and Detectors +1211.4414 Databases +1211.4415 Systems and Control +1211.4416 Methodology +1211.4418 Solar and Stellar Astrophysics +1211.4421 Numerical Analysis +1211.4422 Social and Information Networks +1211.4424 Analysis of PDEs +1211.4425 Soft Condensed Matter +1211.4426 +1211.4428 +1211.4430 Group Theory +1211.4433 Discrete Mathematics +1211.4437 Discrete Mathematics +1211.4438 Discrete Mathematics +1211.4440 Statistical Mechanics +1211.4441 Information Theory +1211.4442 Other Computer Science +1211.4445 Information Theory +1211.4446 Classical Analysis and ODEs +1211.4447 Lattice +1211.4451 Algebraic Topology +1211.4453 Differential Geometry +1211.4455 Differential Geometry +1211.4458 Geometric Topology +1211.4460 Mesoscale and Nanoscale Physics +1211.4466 +1211.4469 Functional Analysis +1211.4474 Instrumentation and Detectors +1211.4475 Logic in Computer Science +1211.4477 K-Theory and Homology +1211.4479 Geometric Topology +1211.4481 +1211.4483 Computation +1211.4488 Computation and Language +1211.4489 Analysis of PDEs +1211.4492 Cosmology and Nongalactic Astrophysics +1211.4496 +1211.4498 Theory +1211.4499 Computer Vision and Pattern Recognition +1211.4500 Human-Computer Interaction +1211.4501 Materials Science +1211.4503 Computer Vision and Pattern Recognition +1211.4504 Group Theory +1211.4509 Strongly Correlated Electrons +1211.4511 Optimization and Control +1211.4516 Numerical Analysis +1211.4517 Group Theory +1211.4521 Databases +1211.4525 Algebraic Geometry +1211.4527 History and Philosophy of Physics +1211.4534 Numerical Analysis +1211.4541 Dynamical Systems +1211.4544 K-Theory and Homology +1211.4545 Geophysics +1211.4547 Other Computer Science +1211.4549 Optimization and Control +1211.4552 Artificial Intelligence +1211.4553 Probability +1211.4554 Commutative Algebra +1211.4555 Systems and Control +1211.4559 Computational Geometry +1211.4561 +1211.4566 Differential Geometry +1211.4567 Superconductivity +1211.4568 Geometric Topology +math/0301176 Algebraic Geometry +physics/0109014 Biological Physics +q-bio/0311025 Populations and Evolution +q-bio/0411040 Populations and Evolution +q-bio/0609032 Populations and Evolution +quant-ph/0201010 +quant-ph/9907022 +quant-ph/9911090 +0710.3098 Symplectic Geometry +0711.2043 Symplectic Geometry +0812.4838 Differential Geometry +0902.2382 Mesoscale and Nanoscale Physics +0903.1773 Symplectic Geometry +0905.0855 +0905.2275 +0907.0218 Statistical Mechanics +0909.1949 Atomic Physics +0909.3410 Phenomenology +0910.4434 Algebraic Geometry +0911.0090 Group Theory +0912.5110 Differential Geometry +1003.3618 Category Theory +1003.4030 Logic +1005.2265 Probability +1006.4696 Computer Science and Game Theory +1008.1566 Learning +1009.2498 Cosmology and Nongalactic Astrophysics +1009.5696 Probability +1011.6123 +1012.3390 Number Theory +1012.3393 Number Theory +1102.1410 Differential Geometry +1104.1378 Differential Geometry +1104.5517 Data Structures and Algorithms +1104.5524 Differential Geometry +1105.0056 Strongly Correlated Electrons +1105.1153 +1105.2563 Cosmology and Nongalactic Astrophysics +1105.6240 Theory +1105.6290 Probability +1106.1395 Computational Finance +1106.2377 +1106.3217 +1106.6196 Programming Languages +1108.1210 Probability +1108.4737 Earth and Planetary Astrophysics +1109.1526 Differential Geometry +1109.5056 Plasma Physics +1109.5440 Statistical Mechanics +1110.4909 Strongly Correlated Electrons +1110.6771 +1111.6527 Superconductivity +1112.1284 Category Theory +1112.2878 +1112.4485 Theory +1112.4683 Theory +1112.4732 Probability +1201.1975 Classical Analysis and ODEs +1201.2264 Soft Condensed Matter +1201.2815 Classical Physics +1201.6304 Materials Science +1202.1154 Algebraic Geometry +1202.4086 +1202.4343 Probability +1203.0119 +1203.0171 Phenomenology +1203.0299 Physics and Society +1204.0338 Geometric Topology +1204.1389 Methodology +1204.2839 Differential Geometry +1204.5670 Number Theory +1204.5798 Numerical Analysis +1205.0099 Chemical Physics +1205.2488 +1205.2987 Representation Theory +1205.3496 Quantum Gases +1205.5880 Experiment +1205.6377 Materials Science +1206.0010 Theory +1206.0205 +1206.0797 +1206.1063 Mesoscale and Nanoscale Physics +1206.2094 Materials Science +1206.4343 Representation Theory +1206.5162 Learning +1206.6140 Phenomenology +1206.6626 Mesoscale and Nanoscale Physics +1207.0344 Phenomenology +1207.0524 Biological Physics +1207.0999 Physics and Society +1207.1072 Strongly Correlated Electrons +1207.1320 Quantum Gases +1207.1480 Probability +1207.2286 +1207.3477 Phenomenology +1207.3930 Statistical Mechanics +1207.5854 +1207.6958 Theory +1208.1057 +1208.1262 Theory +1208.1585 Rings and Algebras +1208.2548 +1208.3989 Strongly Correlated Electrons +1208.5158 Commutative Algebra +1208.5450 Quantum Gases +1208.5634 Phenomenology +1209.0128 Populations and Evolution +1209.2098 Strongly Correlated Electrons +1209.2511 Plasma Physics +1209.2892 Theory +1209.2927 Disordered Systems and Neural Networks +1209.3095 +1209.3771 Cosmology and Nongalactic Astrophysics +1209.4454 Instrumentation and Methods for Astrophysics +1209.5215 Statistical Mechanics +1209.6115 Lattice +1210.1889 +1210.2980 Instrumentation and Methods for Astrophysics +1210.3340 Phenomenology +1210.3736 High Energy Astrophysical Phenomena +1210.3818 Numerical Analysis +1210.4639 Algebraic Geometry +1210.7194 Materials Science +1211.0089 Classical Analysis and ODEs +1211.1243 +1211.1374 +1211.1991 Mesoscale and Nanoscale Physics +1211.3100 Phenomenology +1211.3963 Classical Analysis and ODEs +1211.5485 Logic +1211.6248 Learning +1211.6249 Algebraic Geometry +1211.6337 History and Philosophy of Physics +1211.6521 Materials Science +1211.7083 +1211.7121 Earth and Planetary Astrophysics +1212.0014 Strongly Correlated Electrons +1212.0073 Lattice +1212.0076 Neurons and Cognition +1212.0083 Neural and Evolutionary Computing +1212.0172 Numerical Analysis +1212.0202 Data Structures and Algorithms +1212.0308 Data Structures and Algorithms +1212.0527 Analysis of PDEs +1212.0536 Adaptation and Self-Organizing Systems +1212.0537 Numerical Analysis +1212.0547 Quantum Gases +1212.0548 Cosmology and Nongalactic Astrophysics +1212.0552 Algebraic Geometry +1212.0553 Theory +1212.0561 Theory +1212.0563 Experiment +1212.0569 Lattice +1212.0573 Fluid Dynamics +1212.0574 Mesoscale and Nanoscale Physics +1212.0578 Optimization and Control +1212.0581 Group Theory +1212.0582 Artificial Intelligence +1212.0584 +1212.0586 Lattice +1212.0588 Rings and Algebras +1212.0589 General Topology +1212.0594 Optimization and Control +1212.0595 Number Theory +1212.0602 Materials Science +1212.0604 Superconductivity +1212.0606 Representation Theory +1212.0609 Probability +1212.0614 Methodology +1212.0617 Number Theory +1212.0620 Superconductivity +1212.0623 Geometric Topology +1212.0632 Analysis of PDEs +1212.0640 Computational Geometry +1212.0645 Instrumentation and Methods for Astrophysics +1212.0647 Human-Computer Interaction +1212.0651 Medical Physics +1212.0654 Phenomenology +1212.0657 Physics and Society +1212.0662 Quantitative Methods +1212.0665 Number Theory +1212.0677 Soft Condensed Matter +1212.0678 Complex Variables +1212.0679 Functional Analysis +1212.0680 Materials Science +1212.0682 Astrophysics of Galaxies +1212.0684 Chaotic Dynamics +1212.0687 Differential Geometry +1212.0700 Metric Geometry +1212.0709 Phenomenology +1212.0714 Combinatorics +1212.0718 Algebraic Geometry +1212.0719 Numerical Analysis +1212.0724 Networking and Internet Architecture +1212.0732 Accelerator Physics +1212.0737 Complex Variables +1212.0738 Phenomenology +1212.0742 Combinatorics +1212.0747 Medical Physics +1212.0750 Artificial Intelligence +1212.0751 Combinatorics +1212.0755 Mesoscale and Nanoscale Physics +1212.0762 Lattice +1212.0763 Learning +1212.0764 Methodology +1212.0765 Theory +1212.0767 Optimization and Control +1212.0768 Artificial Intelligence +1212.0774 Rings and Algebras +1212.0780 Mesoscale and Nanoscale Physics +1212.0782 Materials Science +1212.0786 +1212.0789 Phenomenology +1212.0798 Phenomenology +1212.0799 Group Theory +1212.0800 Medical Physics +1212.0801 +1212.0804 Computational Geometry +1212.0807 Medical Physics +1212.0809 History and Philosophy of Physics +1212.0815 Superconductivity +1212.0817 Dynamical Systems +1212.0819 Computer Vision and Pattern Recognition +1212.0821 Classical Analysis and ODEs +1212.0825 Instrumentation and Methods for Astrophysics +1212.0828 Logic +1212.0829 Differential Geometry +1212.0836 Discrete Mathematics +1212.0839 +1212.0842 Chemical Physics +1212.0845 +1212.0846 Phenomenology +1212.0848 Theory +math-ph/0610035 +math/0002209 Quantum Algebra +math/0310359 Symplectic Geometry +math/0312524 Differential Geometry +math/0403320 Probability +math/0403414 Probability +math/0501440 Probability +math/0509595 Functional Analysis +math/0606046 Probability +math/0701209 Symplectic Geometry +0707.4657 General Physics +0802.2060 +0803.3176 +0808.3353 +0809.1401 Number Theory +0812.4303 +0901.0712 Astrophysics of Galaxies +0902.3143 Geometric Topology +0904.1862 General Physics +0906.3657 Probability +0909.3572 Representation Theory +0910.4120 Probability +0910.5444 Group Theory +0911.0243 Representation Theory +1001.1853 Statistics Theory +1005.5255 Probability +1006.2054 Solar and Stellar Astrophysics +1006.2917 Solar and Stellar Astrophysics +1006.4242 Cosmology and Nongalactic Astrophysics +1006.4690 Representation Theory +1007.5513 Complex Variables +1008.1039 Phenomenology +1008.5172 Materials Science +1009.6030 Probability +1010.5462 Complex Variables +1011.3008 Materials Science +1012.1915 Analysis of PDEs +1101.4013 Theory +1103.0101 Solar and Stellar Astrophysics +1103.3486 Phenomenology +1103.5058 +1103.5878 Algebraic Geometry +1104.3537 +1105.1438 +1105.5833 Probability +1106.4769 Functional Analysis +1108.0234 Algebraic Geometry +1108.1739 Probability +1108.2223 Algebraic Geometry +1109.0941 Cosmology and Nongalactic Astrophysics +1109.5927 Theory +1109.6372 Lattice +1110.3074 Probability +1110.4887 General Physics +1110.5464 Algebraic Geometry +1111.0036 Fluid Dynamics +1111.0178 Analysis of PDEs +1111.2162 +1111.3792 Atmospheric and Oceanic Physics +1111.3990 Functional Analysis +1111.5934 Statistics Theory +1111.6375 Solar and Stellar Astrophysics +1111.7186 Solar and Stellar Astrophysics +1112.0862 Solar and Stellar Astrophysics +1112.2516 Digital Libraries +1112.4516 +1201.1242 Probability +1201.2494 Cosmology and Nongalactic Astrophysics +1201.2813 +1201.4756 +1201.4850 Theory +1202.0525 Computational Physics +1202.2220 Analysis of PDEs +1202.5016 +1203.0117 Machine Learning +1203.1451 High Energy Astrophysical Phenomena +1203.2874 Superconductivity +1203.3110 Probability +1203.3321 Information Theory +1203.4128 Mesoscale and Nanoscale Physics +1203.4441 Phenomenology +1203.6425 General Physics +1204.0302 +1204.0645 Combinatorics +1204.1101 Strongly Correlated Electrons +1204.1636 Strongly Correlated Electrons +1204.2286 Strongly Correlated Electrons +1204.4267 Solar and Stellar Astrophysics +1204.4394 Quantum Gases +1204.4619 +1204.4803 Phenomenology +1204.6205 Mesoscale and Nanoscale Physics +1205.0370 Statistical Mechanics +1205.0569 Phenomenology +1205.1099 Optimization and Control +1205.1918 +1205.2094 Metric Geometry +1205.3057 +1205.3873 Differential Geometry +1205.4019 +1205.4767 Atomic Physics +1205.6053 Strongly Correlated Electrons +1206.0869 Superconductivity +1206.0955 Operator Algebras +1206.1879 Strongly Correlated Electrons +1206.2871 Mesoscale and Nanoscale Physics +1206.4412 +1206.5165 Strongly Correlated Electrons +1207.0286 Strongly Correlated Electrons +1207.0558 Applications +1207.1088 Soft Condensed Matter +1207.1298 +1207.1970 Superconductivity +1207.4537 +1207.5006 Mesoscale and Nanoscale Physics +1207.5679 Mesoscale and Nanoscale Physics +1207.6349 Statistical Mechanics +1207.6449 Theory +1207.6631 Experiment +1207.6886 Methodology +1207.7310 +1208.0018 Strongly Correlated Electrons +1208.1318 Superconductivity +1208.2541 Superconductivity +1208.2595 Superconductivity +1208.3051 Phenomenology +1208.3948 Statistical Mechanics +1208.4232 Materials Science +1208.4424 Optics +1208.5848 Cryptography and Security +1208.5991 Cryptography and Security +1208.6153 +1209.1057 Mesoscale and Nanoscale Physics +1209.1168 Quantum Algebra +1209.1901 Analysis of PDEs +1209.2496 +1209.2970 Probability +1209.4772 Statistical Mechanics +1209.4896 Computers and Society +1209.4954 Superconductivity +1209.5148 +1209.5387 Computer Science and Game Theory +1209.5388 Cryptography and Security +1209.5389 Mesoscale and Nanoscale Physics +1209.5400 Cosmology and Nongalactic Astrophysics +1209.5401 Computers and Society +1209.5402 Complex Variables +1209.5407 Programming Languages +1209.5409 Algebraic Geometry +1209.5417 Computer Vision and Pattern Recognition +1209.5420 Other Computer Science +1209.5425 Statistical Mechanics +1209.5428 Networking and Internet Architecture +1209.5430 Distributed, Parallel, and Cluster Computing +1209.5431 Other Computer Science +1209.5434 Computational Geometry +1209.5435 Other Computer Science +1209.5437 Probability +1209.5441 Data Structures and Algorithms +1209.5444 General Mathematics +1209.5448 Information Retrieval +1209.5451 General Topology +1209.5454 General Topology +1209.5458 Analysis of PDEs +1209.5464 Networking and Internet Architecture +1209.5465 Algebraic Topology +1209.5468 Analysis of PDEs +1209.5469 Mesoscale and Nanoscale Physics +1209.5473 Artificial Intelligence +1209.5480 Artificial Intelligence +1209.5481 Differential Geometry +1209.5482 Artificial Intelligence +1209.5484 Artificial Intelligence +1209.5490 Software Engineering +1209.5494 Computer Vision and Pattern Recognition +1209.5495 Functional Analysis +1209.5497 Phenomenology +1209.5498 General Physics +1209.5500 Statistical Mechanics +1209.5501 Superconductivity +1209.5507 Networking and Internet Architecture +1209.5511 Information Theory +1209.5514 Combinatorics +1209.5525 +1209.5531 Group Theory +1209.5535 +1209.5536 Mesoscale and Nanoscale Physics +1209.5541 Algebraic Geometry +1209.5542 Group Theory +1209.5543 Statistics Theory +1209.5549 Neurons and Cognition +1209.5555 Differential Geometry +1209.5556 Algebraic Geometry +1209.5558 Mesoscale and Nanoscale Physics +1209.5561 Learning +1209.5565 Data Analysis, Statistics and Probability +1209.5566 Data Structures and Algorithms +1209.5569 Artificial Intelligence +1209.5572 +1209.5573 Software Engineering +1209.5575 Combinatorics +1209.5576 Adaptation and Self-Organizing Systems +1209.5583 +1209.5584 Analysis of PDEs +1209.5586 Phenomenology +1209.5587 +1209.5593 Astrophysics of Galaxies +1209.5595 Dynamical Systems +1209.5600 Rings and Algebras +1209.5605 Fluid Dynamics +1209.5608 Data Structures and Algorithms +1209.5614 Spectral Theory +1209.5616 Algebraic Geometry +1209.5618 Algebraic Geometry +1209.5625 Databases +1209.5626 Other Computer Science +1209.5629 Medical Physics +1209.5632 Experiment +1209.5633 Plasma Physics +1209.5637 Experiment +1209.5638 Other Condensed Matter +1209.5640 Analysis of PDEs +1209.5642 Differential Geometry +1209.5648 Optics +1209.5651 Networking and Internet Architecture +1209.5652 Number Theory +1209.5655 Accelerator Physics +1209.5656 Information Theory +1209.5660 Rings and Algebras +1209.5663 Artificial Intelligence +1209.5664 Artificial Intelligence +1209.5668 Analysis of PDEs +1209.5670 Accelerator Physics +1209.5672 +1209.5674 Analysis of PDEs +1209.5679 +1209.5682 Mesoscale and Nanoscale Physics +1209.5686 Algebraic Geometry +1209.5688 Materials Science +1209.5693 Solar and Stellar Astrophysics +1209.5695 Information Theory +1209.5699 Combinatorics +1209.5704 Numerical Analysis +1209.5706 Number Theory +1209.5715 Networking and Internet Architecture +1209.5716 Mesoscale and Nanoscale Physics +1209.5717 Accelerator Physics +1209.5722 +1209.5724 Earth and Planetary Astrophysics +1209.5734 Solar and Stellar Astrophysics +astro-ph/0407122 +0704.3133 Experiment +0704.3270 Experiment +0704.3562 Experiment +0705.1931 Experiment +0705.2248 Experiment +0705.3770 Experiment +0706.1600 Experiment +0706.2538 Experiment +0904.4120 Programming Languages +0905.1044 Experiment +0906.4819 Experiment +0909.4131 +0911.3112 Experiment +0911.3130 +0912.3977 Experiment +1002.0880 General Physics +1002.3921 Experiment +1003.0425 Logic in Computer Science +1008.4489 Experiment +1011.0384 +1102.1054 Logic in Computer Science +1102.5398 Geometric Topology +1104.4932 Materials Science +1106.3764 Theory +1107.4284 Commutative Algebra +1108.0336 Theory +1109.4854 Symplectic Geometry +1109.6453 Probability +1110.1824 Algebraic Geometry +1110.4489 Differential Geometry +1111.2839 Theory +1111.3016 Mesoscale and Nanoscale Physics +1111.3213 Data Analysis, Statistics and Probability +1111.5528 Data Structures and Algorithms +1111.5802 Cosmology and Nongalactic Astrophysics +1112.1538 Data Structures and Algorithms +1112.3347 Strongly Correlated Electrons +1112.3967 +1112.4252 +1112.4492 +1112.5662 Quantum Gases +1201.3398 +1201.4658 Quantum Gases +1201.6649 Algebraic Geometry +1202.0014 Theory +1202.0129 Theory +1202.2819 Astrophysics of Galaxies +1202.4763 Instrumentation and Detectors +1203.0612 Theory +1203.0959 Solar and Stellar Astrophysics +1203.3576 Strongly Correlated Electrons +1203.3621 Physics and Society +1203.5070 +1203.5127 Theory +1204.0586 Algebraic Geometry +1204.0716 Lattice +1204.0939 Distributed, Parallel, and Cluster Computing +1204.2834 Mesoscale and Nanoscale Physics +1204.3778 Differential Geometry +1204.4089 Lattice +1204.4574 Mesoscale and Nanoscale Physics +1204.4682 Quantum Gases +1204.5112 Mesoscale and Nanoscale Physics +1204.5453 Phenomenology +1204.5534 Disordered Systems and Neural Networks +1204.6682 Strongly Correlated Electrons +1205.0210 Theory +1205.4027 Quantum Gases +1205.5079 Theory +1205.6301 Mesoscale and Nanoscale Physics +1205.6551 +1205.7072 Theory +1206.0754 Theory +1206.3632 Numerical Analysis +1206.4068 Instrumentation and Detectors +1206.5866 Probability +1207.0781 Mesoscale and Nanoscale Physics +1207.1008 +1207.1076 Experiment +1207.2985 Logic +1207.3049 Earth and Planetary Astrophysics +1207.5207 Phenomenology +1207.5637 Differential Geometry +1207.5657 Astrophysics of Galaxies +1207.5726 +1207.6805 Physics and Society +1207.7034 Populations and Evolution +1207.7243 Mesoscale and Nanoscale Physics +1208.0060 Mesoscale and Nanoscale Physics +1208.0207 Adaptation and Self-Organizing Systems +1208.0248 Quantitative Methods +1208.0326 Systems and Control +1208.0332 +1208.0346 Quantum Algebra +1208.0350 Representation Theory +1208.0359 Information Retrieval +1208.0363 Atomic Physics +1208.0364 Probability +1208.0366 Methodology +1208.0369 Solar and Stellar Astrophysics +1208.0370 Chaotic Dynamics +1208.0371 Portfolio Management +1208.0377 Earth and Planetary Astrophysics +1208.0378 Computer Vision and Pattern Recognition +1208.0384 Networking and Internet Architecture +1208.0394 Geometric Topology +1208.0397 Soft Condensed Matter +1208.0400 Computer Science and Game Theory +1208.0402 Learning +1208.0403 Cryptography and Security +1208.0406 Functional Analysis +1208.0407 Networking and Internet Architecture +1208.0408 Human-Computer Interaction +1208.0411 Numerical Analysis +1208.0414 Systems and Control +1208.0428 Phenomenology +1208.0431 Analysis of PDEs +1208.0434 Metric Geometry +1208.0440 Genomics +1208.0441 Optimization and Control +1208.0445 Probability +1208.0446 Optimization and Control +1208.0448 Phenomenology +1208.0453 +1208.0459 Superconductivity +1208.0470 Analysis of PDEs +1208.0474 Experiment +1208.0475 Numerical Analysis +1208.0482 Populations and Evolution +1208.0484 Algebraic Geometry +1208.0487 Experiment +1208.0488 General Physics +1208.0491 Number Theory +1208.0492 Number Theory +1208.0495 Number Theory +1208.0497 General Mathematics +1208.0505 Performance +1208.0508 Number Theory +1208.0512 Experiment +1208.0516 Number Theory +1208.0518 Populations and Evolution +1208.0520 Populations and Evolution +1208.0524 Geometric Topology +1208.0526 Computational Complexity +1208.0527 Optimization and Control +1208.0528 Geometric Topology +1208.0532 +1208.0533 Cosmology and Nongalactic Astrophysics +1208.0535 Programming Languages +1208.0537 Genomics +1208.0539 Functional Analysis +1208.0541 Neural and Evolutionary Computing +1208.0542 Data Structures and Algorithms +1208.0543 Cosmology and Nongalactic Astrophysics +1208.0554 Data Structures and Algorithms +1208.0561 Optimization and Control +1208.0565 Soft Condensed Matter +1208.0569 Networking and Internet Architecture +1208.0571 Algebraic Geometry +1208.0573 Algebraic Topology +1208.0574 Phenomenology +1208.0576 Physics and Society +1208.0577 Networking and Internet Architecture +1208.0578 Numerical Analysis +1208.0579 Methodology +1208.0586 Probability +astro-ph/0601397 +astro-ph/0702475 +hep-ex/0205046 Experiment +hep-ex/0304014 Experiment +hep-ex/0312044 Experiment +hep-ex/0407032 Experiment +hep-ex/0408002 Experiment +hep-ex/0408039 Experiment +hep-ex/0408040 Experiment +hep-ex/0408136 Experiment +hep-ex/0408146 Experiment +hep-ex/0412027 Experiment +hep-ex/0505093 Experiment +hep-ex/0506018 Experiment +hep-ex/0506045 Experiment +hep-ex/0510030 Experiment +hep-ex/0511022 Experiment +hep-ex/0605103 Experiment +hep-ex/0605108 Experiment +hep-ex/0606006 Experiment +hep-ex/0606047 Experiment +hep-ex/0609039 Experiment +hep-ex/0609050 Experiment +hep-ex/0610019 Experiment +hep-ex/0610023 Experiment +hep-ex/0611018 Experiment +hep-ex/0612008 Experiment +hep-ex/0612023 Experiment +hep-ex/0612059 Experiment +hep-ex/0701039 Experiment +hep-ex/0702028 Experiment +hep-ex/0702034 Experiment +hep-ex/9606013 Experiment +hep-ex/9612002 Experiment +hep-ex/9705012 Experiment +hep-ex/9807014 Experiment +hep-ex/9807018 Experiment +hep-ex/9810031 Experiment +hep-ex/9912017 Experiment +hep-th/0409170 Theory +hep-th/0703192 Theory +math/0212362 Algebraic Geometry +nucl-ex/0212021 +nucl-ex/0401006 +nucl-ex/0408012 +nucl-ex/0605007 +0707.3421 General Physics +0802.3589 Functional Analysis +0803.2290 Statistical Mechanics +0806.3752 +0808.2636 Chaotic Dynamics +0902.1865 Functional Analysis +0909.0166 +0909.0206 Information Theory +0909.4655 Algebraic Geometry +1001.2009 Astrophysics of Galaxies +1001.4397 Superconductivity +1001.4403 Superconductivity +1004.1429 Classical Analysis and ODEs +1007.1597 Numerical Analysis +1007.2006 Combinatorics +1009.1496 Functional Analysis +1009.6144 Combinatorics +1010.3562 Functional Analysis +1010.5752 Functional Analysis +1011.0795 Combinatorics +1011.1478 Artificial Intelligence +1011.1796 Applications +1011.2233 High Energy Astrophysical Phenomena +1011.2656 Symbolic Computation +1101.2859 Functional Analysis +1102.2040 Functional Analysis +1102.4019 Functional Analysis +1102.4675 Functional Analysis +1103.0547 Cosmology and Nongalactic Astrophysics +1103.1313 Materials Science +1103.2558 Functional Analysis +1103.4375 Functional Analysis +1103.5845 Functional Analysis +1103.6173 Algebraic Topology +1104.2084 Numerical Analysis +1105.2178 +1105.6085 Cosmology and Nongalactic Astrophysics +1106.4886 Strongly Correlated Electrons +1106.5423 Probability +1106.6121 Soft Condensed Matter +1106.6347 +1107.1194 Fluid Dynamics +1107.1216 Phenomenology +1107.3688 History and Overview +1107.4155 Analysis of PDEs +1107.4678 Dynamical Systems +1108.0597 Differential Geometry +1108.0844 Phenomenology +1108.5341 Statistics Theory +1108.5906 Optics +1109.1656 Chemical Physics +1109.2363 Applications +1109.3045 Quantum Gases +1109.6295 Quantum Algebra +1110.0793 Theory +1110.2703 Probability +1110.5074 Mesoscale and Nanoscale Physics +1110.5926 Quantum Gases +1110.6242 Disordered Systems and Neural Networks +1110.6817 Methodology +1111.2192 +1111.3485 Rings and Algebras +1111.4127 Soft Condensed Matter +1111.4581 Mesoscale and Nanoscale Physics +1111.6182 Statistical Mechanics +1112.1659 Strongly Correlated Electrons +1112.1965 +1112.2112 Statistical Mechanics +1112.6135 +1201.0093 Algebraic Geometry +1201.0343 Quantum Gases +1201.1779 Quantum Gases +1201.1923 +1201.1947 Mesoscale and Nanoscale Physics +1201.2049 Phenomenology +1201.2381 High Energy Astrophysical Phenomena +1201.2442 +1201.3626 Strongly Correlated Electrons +1201.4045 Phenomenology +1201.4162 Data Analysis, Statistics and Probability +1201.5251 Atomic Physics +1201.6062 Computational Physics +1201.6367 Theory +1202.1042 Statistical Mechanics +1202.1049 Materials Science +1202.1262 Group Theory +1202.2691 Strongly Correlated Electrons +1202.4365 Mesoscale and Nanoscale Physics +1202.4405 Numerical Analysis +1203.0049 Quantum Gases +1203.0271 Soft Condensed Matter +1203.1120 Quantum Gases +1203.1998 Functional Analysis +1203.2072 Cosmology and Nongalactic Astrophysics +1203.4666 Biological Physics +1204.0449 Functional Analysis +1204.0619 Quantum Gases +1204.1677 Information Theory +1204.2901 Fluid Dynamics +1204.6332 Other Condensed Matter +1204.6401 Soft Condensed Matter +1205.1057 Solar and Stellar Astrophysics +1205.1148 +1205.1285 Phenomenology +1205.2334 Learning +1205.3372 Superconductivity +1205.3490 Cosmology and Nongalactic Astrophysics +1205.3836 Pattern Formation and Solitons +1205.3961 Strongly Correlated Electrons +1205.5011 Superconductivity +1205.5451 General Physics +1205.6136 Analysis of PDEs +1205.6258 Algebraic Topology +1205.6321 Solar and Stellar Astrophysics +1205.6391 Computer Vision and Pattern Recognition +1205.6469 Strongly Correlated Electrons +1205.6479 Phenomenology +1205.6490 Probability +1205.6491 Solar and Stellar Astrophysics +1205.6496 +1205.6501 History and Philosophy of Physics +1205.6502 Dynamical Systems +1205.6503 Statistical Mechanics +1205.6505 Phenomenology +1205.6507 Differential Geometry +1205.6512 Genomics +1205.6515 Other Computer Science +1205.6519 Algebraic Geometry +1205.6523 Machine Learning +1205.6527 Programming Languages +1205.6530 Functional Analysis +1205.6531 Mesoscale and Nanoscale Physics +1205.6535 +1205.6539 Chemical Physics +1205.6542 Pricing of Securities +1205.6544 Computer Vision and Pattern Recognition +1205.6546 Statistical Mechanics +1205.6556 Statistics Theory +1205.6558 Logic in Computer Science +1205.6563 Analysis of PDEs +1205.6566 Experiment +1205.6567 Physics and Society +1205.6568 Information Theory +1205.6570 Combinatorics +1205.6571 Instrumentation and Detectors +1205.6572 Computer Vision and Pattern Recognition +1205.6573 Earth and Planetary Astrophysics +1205.6576 Soft Condensed Matter +1205.6579 Experiment +1205.6589 Superconductivity +1205.6593 Information Theory +1205.6594 Software Engineering +1205.6602 Information Theory +1205.6605 Computer Vision and Pattern Recognition +1205.6607 Statistics Theory +1205.6608 Operator Algebras +1205.6614 Data Analysis, Statistics and Probability +1205.6617 Statistics Theory +1205.6618 Cellular Automata and Lattice Gases +1205.6620 Exactly Solvable and Integrable Systems +1205.6627 Rings and Algebras +1205.6629 +1205.6633 +1205.6635 Chemical Physics +1205.6638 Chemical Physics +1205.6639 Soft Condensed Matter +1205.6640 Probability +1205.6644 Statistics Theory +1205.6645 Statistical Mechanics +1205.6649 Differential Geometry +1205.6651 High Energy Astrophysical Phenomena +1205.6659 Statistics Theory +1205.6661 Computational Physics +1205.6664 Networking and Internet Architecture +1205.6671 Symbolic Computation +1205.6675 Cryptography and Security +1205.6677 Software Engineering +1205.6678 Cryptography and Security +1205.6680 Other Computer Science +1205.6681 History and Overview +1205.6685 Experiment +1205.6686 Spectral Theory +1205.6691 Databases +1205.6692 Databases +1205.6693 Databases +1205.6694 Databases +1205.6695 Databases +1205.6696 Databases +1205.6697 Databases +1205.6698 Databases +1205.6699 Databases +1205.6700 Databases +1205.6701 Accelerator Physics +1205.6703 Instrumentation and Detectors +1205.6704 Plasma Physics +1205.6706 Number Theory +1205.6709 Functional Analysis +1205.6717 Computational Geometry +1205.6720 +1205.6727 Optimization and Control +1205.6733 Probability +1205.6736 Accelerator Physics +1205.6741 Probability +1205.6745 Computer Vision and Pattern Recognition +1205.6749 Classical Analysis and ODEs +1205.6757 Algebraic Geometry +1205.6761 Methodology +1205.6762 Analysis of PDEs +1205.6770 Commutative Algebra +1205.6775 Cryptography and Security +1205.6776 Phenomenology +1205.6780 Analysis of PDEs +1205.6786 Differential Geometry +1205.6792 Plasma Physics +cond-mat/9605008 +nlin/0207013 Exactly Solvable and Integrable Systems +0705.3991 Superconductivity +0708.3710 +0801.2142 Spectral Theory +0801.4410 Methodology +0808.2968 Spectral Theory +0810.0818 +0810.4661 Dynamical Systems +0811.2617 Spectral Theory +0902.0154 Analysis of PDEs +0902.0870 Statistical Mechanics +0908.0333 Theory +0908.3322 +0910.0803 Theory +0911.3985 General Topology +1003.4726 +1006.1006 Commutative Algebra +1007.1434 Statistics Theory +1008.5217 Networking and Internet Architecture +1009.2099 Astrophysics of Galaxies +1010.0074 Statistics Theory +1010.4844 Analysis of PDEs +1012.4765 Metric Geometry +1101.3326 Theory +1101.5268 Analysis of PDEs +1102.0289 Astrophysics of Galaxies +1103.1343 Optimization and Control +1103.2692 Statistics Theory +1103.2863 Spectral Theory +1103.2899 Probability +1103.5989 +1104.1294 Statistical Mechanics +1104.3143 Cosmology and Nongalactic Astrophysics +1104.5037 Superconductivity +1105.1989 Strongly Correlated Electrons +1105.2699 Phenomenology +1105.3926 Superconductivity +1105.5022 Number Theory +1105.5387 Strongly Correlated Electrons +1106.2241 +1106.3125 Mesoscale and Nanoscale Physics +1106.4011 Astrophysics of Galaxies +1106.4283 +1107.1105 +1107.4266 Combinatorics +1108.0048 Materials Science +1108.0449 +1108.0921 Statistics Theory +1108.0960 Physics Education +1108.4233 Quantum Gases +1108.5555 Plasma Physics +1109.0320 Methodology +1109.1245 Mesoscale and Nanoscale Physics +1109.1443 Soft Condensed Matter +1109.2629 Soft Condensed Matter +1109.3066 Mesoscale and Nanoscale Physics +1109.3405 Rings and Algebras +1109.4404 Cryptography and Security +1109.4948 +1110.0972 Superconductivity +1110.1247 Soft Condensed Matter +1110.1346 Materials Science +1110.4561 Mesoscale and Nanoscale Physics +1110.4566 Strongly Correlated Electrons +1110.5055 +1111.0805 Phenomenology +1111.0938 Mesoscale and Nanoscale Physics +1111.1798 Quantum Gases +1111.2645 +1111.4303 Strongly Correlated Electrons +1111.5257 +1111.5693 Strongly Correlated Electrons +1112.0145 Quantum Gases +1112.0250 Materials Science +1112.0265 +1112.3851 Algebraic Geometry +1112.5399 Strongly Correlated Electrons +1201.3680 Strongly Correlated Electrons +1201.4815 Strongly Correlated Electrons +1201.6479 Numerical Analysis +1202.0848 Dynamical Systems +1202.1234 Functional Analysis +1202.2185 Robotics +1202.2673 Phenomenology +1202.3241 Algebraic Geometry +1202.3278 +1202.4248 Materials Science +1202.4798 Computational Complexity +1202.4815 Information Retrieval +1202.4827 +1202.4863 Statistics Theory +1202.4913 Risk Management +1202.4929 Solar and Stellar Astrophysics +1202.4942 Combinatorics +1202.4986 Dynamical Systems +1202.5049 Discrete Mathematics +1202.5063 Superconductivity +1202.5068 Analysis of PDEs +1202.5075 Solar and Stellar Astrophysics +1202.5076 Algebraic Geometry +1202.5077 Algebraic Geometry +1202.5078 Superconductivity +1202.5080 Neurons and Cognition +1202.5084 Solar and Stellar Astrophysics +1202.5091 Quantum Gases +1202.5093 Computation +1202.5094 Networking and Internet Architecture +1202.5096 Statistics Theory +1202.5098 History and Overview +1202.5101 Statistics Theory +1202.5105 Phenomenology +1202.5118 Statistics Theory +1202.5119 Materials Science +1202.5125 Classical Physics +1202.5128 Materials Science +1202.5132 Statistics Theory +1202.5134 Statistics Theory +1202.5140 Statistics Theory +1202.5142 Astrophysics of Galaxies +1202.5145 Statistics Theory +1202.5151 Statistics Theory +1202.5159 Statistics Theory +1202.5160 Statistics Theory +1202.5165 Probability +1202.5166 Mesoscale and Nanoscale Physics +1202.5169 Dynamical Systems +1202.5179 Cosmology and Nongalactic Astrophysics +1202.5180 Risk Management +1202.5182 Algebraic Geometry +1202.5183 Statistics Theory +1202.5185 +1202.5194 Cryptography and Security +1202.5198 Geophysics +1202.5202 Information Theory +1202.5204 Spectral Theory +1202.5205 Statistics Theory +1202.5209 Accelerator Physics +1202.5210 Analysis of PDEs +1202.5211 Genomics +1202.5216 Social and Information Networks +1202.5224 Phenomenology +1202.5236 Fluid Dynamics +1202.5241 Functional Analysis +1202.5242 Cosmology and Nongalactic Astrophysics +1202.5245 Dynamical Systems +1202.5247 Logic +1202.5250 Quantum Gases +1202.5251 Computational Finance +1202.5252 Mesoscale and Nanoscale Physics +1202.5253 Combinatorics +1202.5259 Information Theory +1202.5260 Popular Physics +1202.5262 Probability +1202.5263 Optimization and Control +1202.5265 Number Theory +1202.5268 Analysis of PDEs +1202.5270 +1202.5274 Numerical Analysis +1202.5275 Rings and Algebras +1202.5276 Probability +1202.5283 Instrumentation and Methods for Astrophysics +astro-ph/0611855 +cond-mat/0106409 Statistical Mechanics +cond-mat/0703505 Superconductivity +hep-lat/0607038 Lattice +math-ph/0408008 +0709.0249 Soft Condensed Matter +0710.3111 Soft Condensed Matter +0801.1253 Logic in Computer Science +0807.4130 Functional Analysis +0807.4133 Functional Analysis +0903.5117 Optics +0903.5332 Functional Analysis +0911.3456 Distributed, Parallel, and Cluster Computing +0912.1292 Theory +0912.3716 +1003.1035 Optimization and Control +1004.2227 Soft Condensed Matter +1005.4213 Atomic Physics +1006.2655 Representation Theory +1006.2866 Quantum Algebra +1008.3172 Computers and Society +1008.5230 Mesoscale and Nanoscale Physics +1009.0281 Disordered Systems and Neural Networks +1010.1864 Physics and Society +1011.1213 Lattice +1011.6521 Superconductivity +1012.0541 Mesoscale and Nanoscale Physics +1012.4139 Differential Geometry +1101.1647 Algebraic Topology +1101.2983 Other Quantitative Biology +1102.0743 Representation Theory +1102.1547 Cryptography and Security +1102.3190 Numerical Analysis +1102.4044 Mesoscale and Nanoscale Physics +1103.2468 Functional Analysis +1103.4174 +1104.2761 K-Theory and Homology +1105.0360 Metric Geometry +1105.2595 Probability +1105.4013 +1105.5117 Theory +1106.0210 Quantum Algebra +1106.1450 Operator Algebras +1106.2305 Logic in Computer Science +1106.5941 Computation +1107.1179 Algebraic Geometry +1107.5852 Portfolio Management +1108.2192 Differential Geometry +1108.2380 Superconductivity +1108.2780 Algebraic Geometry +1108.4399 Superconductivity +1108.5289 Physics Education +1108.5702 Quantum Gases +1109.2583 Information Theory +1109.3002 Quantum Gases +1109.3804 +1109.4132 +1110.0069 +1110.0124 Information Theory +1110.0345 Cosmology and Nongalactic Astrophysics +1110.0932 Statistics Theory +1110.2410 Algebraic Geometry +1110.4083 Classical Physics +1110.4560 Exactly Solvable and Integrable Systems +1110.4799 +1111.0120 +1111.1742 Solar and Stellar Astrophysics +1111.1763 Solar and Stellar Astrophysics +1111.1982 Information Theory +1111.1992 Information Theory +1111.2023 Solar and Stellar Astrophysics +1111.3351 Solar and Stellar Astrophysics +1111.4367 Optics +1112.0023 Algebraic Geometry +1112.0228 Differential Geometry +1112.0617 Physics and Society +1112.0962 Phenomenology +1112.1414 Mesoscale and Nanoscale Physics +1112.5022 Statistical Mechanics +1112.5599 High Energy Astrophysical Phenomena +1112.5818 Metric Geometry +1112.6057 Commutative Algebra +1112.6346 Theory +1201.1665 Mesoscale and Nanoscale Physics +1201.2508 Other Computer Science +1201.3025 Experiment +1201.3367 Cosmology and Nongalactic Astrophysics +1201.3973 Computation +1201.4117 Quantum Gases +1201.4123 Theory +1201.4275 Soft Condensed Matter +1201.4285 Information Theory +1201.4527 Cosmology and Nongalactic Astrophysics +1201.5170 Strongly Correlated Electrons +1201.5738 Theory +1202.0141 +1202.0800 Information Theory +1202.1939 Solar and Stellar Astrophysics +1202.2396 Populations and Evolution +1202.3163 +1202.3640 +1202.3989 Statistical Mechanics +1202.5792 Classical Analysis and ODEs +1202.5915 Probability +1202.6541 Quantum Gases +1203.0388 Numerical Analysis +1203.0449 +1203.2103 +1203.3859 Analysis of PDEs +1203.3970 +1203.4126 Logic +1203.4285 Functional Analysis +1203.4631 +1203.6363 Quantum Gases +1203.6539 Geophysics +1204.0057 Fluid Dynamics +1204.0081 Fluid Dynamics +1204.0506 Atomic Physics +1204.0985 Soft Condensed Matter +1204.1628 Computer Science and Game Theory +1204.2087 Logic in Computer Science +1204.2215 Theory +1204.2653 Phenomenology +1204.2982 +1204.4758 Computer Vision and Pattern Recognition +1204.4861 Phenomenology +1204.5575 Solar and Stellar Astrophysics +1204.6016 Soft Condensed Matter +1205.0048 Optimization and Control +1205.0050 Optimization and Control +1205.0194 Atomic Physics +1205.0376 Formal Languages and Automata Theory +1205.1025 Solar and Stellar Astrophysics +1205.1034 Solar and Stellar Astrophysics +1205.1096 +1205.1610 Optics +1205.1680 Mesoscale and Nanoscale Physics +1205.2105 Disordered Systems and Neural Networks +1205.4114 +1205.4949 Earth and Planetary Astrophysics +1205.5063 Space Physics +1205.5787 Phenomenology +1206.0194 Quantum Gases +1206.0524 Differential Geometry +1206.0621 Phenomenology +1206.0879 +1206.1702 Formal Languages and Automata Theory +1206.3741 Complex Variables +1206.4380 Earth and Planetary Astrophysics +1206.4561 Materials Science +1206.5354 Superconductivity +1206.5523 Functional Analysis +1206.5651 Neural and Evolutionary Computing +1206.6583 Phenomenology +1207.0245 Computation and Language +1207.0602 Distributed, Parallel, and Cluster Computing +1207.0626 +1207.0834 Differential Geometry +1207.0843 Pricing of Securities +1207.1781 Combinatorics +1207.1879 Superconductivity +1207.1886 +1207.2316 Pricing of Securities +1207.2334 Computation and Language +1207.2338 Methodology +1207.2541 Discrete Mathematics +1207.2608 Information Theory +1207.3022 +1207.3036 Software Engineering +1207.3350 Materials Science +1207.3351 Graphics +1207.3353 Disordered Systems and Neural Networks +1207.3355 Theory +1207.3361 +1207.3365 Adaptation and Self-Organizing Systems +1207.3370 Computer Vision and Pattern Recognition +1207.3375 Cosmology and Nongalactic Astrophysics +1207.3380 Algebraic Geometry +1207.3381 History and Overview +1207.3383 Phenomenology +1207.3384 Information Theory +1207.3385 Information Theory +1207.3387 Information Theory +1207.3388 Physics and Society +1207.3394 Learning +1207.3397 Combinatorics +1207.3398 Analysis of PDEs +1207.3400 Combinatorics +1207.3403 Complex Variables +1207.3405 Strongly Correlated Electrons +1207.3406 Probability +1207.3410 Spectral Theory +1207.3413 Applications +1207.3416 Metric Geometry +1207.3419 Numerical Analysis +1207.3420 Computers and Society +1207.3422 Human-Computer Interaction +1207.3423 Representation Theory +1207.3425 Optimization and Control +1207.3428 Functional Analysis +1207.3433 Other Computer Science +1207.3434 Artificial Intelligence +1207.3436 General Topology +1207.3438 Machine Learning +1207.3441 Logic in Computer Science +1207.3442 Computational Engineering, Finance, and Science +1207.3447 Statistical Mechanics +1207.3451 Information Theory +1207.3453 Molecular Networks +1207.3454 Other Quantitative Biology +1207.3457 Mesoscale and Nanoscale Physics +1207.3463 Materials Science +1207.3466 Rings and Algebras +1207.3469 +1207.3470 Number Theory +1207.3476 +1207.3479 Mesoscale and Nanoscale Physics +1207.3484 Statistical Mechanics +1207.3485 Logic in Computer Science +1207.3487 Rings and Algebras +1207.3488 Rings and Algebras +1207.3493 Dynamical Systems +1207.3495 Phenomenology +1207.3498 Differential Geometry +1207.3499 Physics and Society +1207.3500 Functional Analysis +1207.3502 Computational Geometry +1207.3503 Materials Science +1207.3504 Popular Physics +1207.3507 Experiment +1207.3513 Information Theory +1207.3519 Analysis of PDEs +1207.3520 Learning +1207.3524 Operator Algebras +1207.3532 Data Structures and Algorithms +1207.3541 Materials Science +1207.3543 Artificial Intelligence +1207.3555 Mesoscale and Nanoscale Physics +1207.3556 Optics +1207.3557 +1207.3560 Networking and Internet Architecture +1207.3564 Data Structures and Algorithms +1207.3567 Superconductivity +1207.3569 Dynamical Systems +1207.3570 General Physics +1207.3578 Combinatorics +1207.3581 Geometric Topology +1207.3583 Information Retrieval +1207.3597 Logic in Computer Science +1207.3604 Discrete Mathematics +1207.3606 Combinatorics +1207.3607 Computer Vision and Pattern Recognition +1207.3609 +1207.3610 Probability +1207.3613 Rings and Algebras +1207.3618 +1207.3620 Functional Analysis +1207.3622 Data Structures and Algorithms +1207.3623 +1207.3624 Tissues and Organs +1207.3626 Atomic Physics +1207.3628 Information Retrieval +1207.3632 Spectral Theory +1207.3636 Cryptography and Security +1207.3640 Materials Science +1207.3642 Probability +1207.3643 Materials Science +1207.3646 Computational Engineering, Finance, and Science +1207.3648 Algebraic Geometry +1207.3650 Probability +1207.3651 Mesoscale and Nanoscale Physics +1207.3654 Information Theory +1207.3655 Symplectic Geometry +1207.3658 Computational Engineering, Finance, and Science +1207.3660 Differential Geometry +1207.3664 Probability +1207.3671 Optimization and Control +1207.3672 Accelerator Physics +1207.3676 Fluid Dynamics +1207.3678 Cosmology and Nongalactic Astrophysics +1207.3679 Phenomenology +1207.3680 Biological Physics +1207.3681 Accelerator Physics +1207.3682 Computer Science and Game Theory +1207.3684 Algebraic Geometry +1207.3685 Numerical Analysis +1207.3686 Mesoscale and Nanoscale Physics +1207.3688 Combinatorics +1207.3691 Cryptography and Security +1207.3692 Analysis of PDEs +1207.3693 Dynamical Systems +1207.3696 Analysis of PDEs +1207.3703 Analysis of PDEs +1207.3709 +1207.3712 Superconductivity +1207.3713 Other Computer Science +1207.3722 Functional Analysis +1207.3726 Materials Science +1207.3728 Numerical Analysis +1207.3731 Group Theory +1207.3739 Rings and Algebras +1207.3740 Networking and Internet Architecture +1207.3741 Soft Condensed Matter +1207.3748 Optics +1207.3749 Optimization and Control +1207.3753 Plasma Physics +1207.3755 Combinatorics +1207.3756 Soft Condensed Matter +1207.3760 Neural and Evolutionary Computing +1207.3761 Discrete Mathematics +1207.3764 Analysis of PDEs +1207.3765 Mesoscale and Nanoscale Physics +1207.3766 +1207.3768 Complex Variables +1207.3769 Representation Theory +1207.3771 Combinatorics +1207.3774 Soft Condensed Matter +1207.3778 Representation Theory +1207.3779 Analysis of PDEs +1207.3781 Rings and Algebras +cond-mat/0304430 Soft Condensed Matter +cond-mat/0408245 Statistical Mechanics +cond-mat/0501412 Soft Condensed Matter +cond-mat/0606738 Soft Condensed Matter +cond-mat/0703707 Soft Condensed Matter +math/0301218 Differential Geometry +math/0601440 Differential Geometry +nlin/0701042 Pattern Formation and Solitons +physics/0308035 Classical Physics +0804.0689 Mesoscale and Nanoscale Physics +0806.3051 +0811.3799 Probability +0901.0127 Mesoscale and Nanoscale Physics +0903.3528 Probability +0907.4720 Algebraic Geometry +1002.4945 Statistics Theory +1005.0960 +1005.2057 Quantum Algebra +1005.4712 Number Theory +1009.0855 Classical Analysis and ODEs +1011.4104 Learning +1011.4504 Mesoscale and Nanoscale Physics +1012.3722 Computational Engineering, Finance, and Science +1103.2041 Combinatorics +1103.4323 Complex Variables +1104.4951 Differential Geometry +1105.0846 Number Theory +1106.4381 High Energy Astrophysical Phenomena +1107.3944 Optimization and Control +1107.5589 Number Theory +1108.2938 Mesoscale and Nanoscale Physics +1109.3029 Strongly Correlated Electrons +1109.3060 Fluid Dynamics +1109.3603 Algebraic Geometry +1109.4338 Dynamical Systems +1110.2578 Chaotic Dynamics +1110.2902 Fluid Dynamics +1110.6807 Spectral Theory +1111.4147 +1112.2536 Optics +1112.2631 Superconductivity +1201.0690 Analysis of PDEs +1201.1462 Information Theory +1201.4005 Fluid Dynamics +1201.4224 Mesoscale and Nanoscale Physics +1202.2040 Mesoscale and Nanoscale Physics +1202.3184 Probability +1202.4386 Superconductivity +1202.5561 Analysis of PDEs +1203.2523 Strongly Correlated Electrons +1203.3025 Numerical Analysis +1203.4028 Geometric Topology +1203.5937 Strongly Correlated Electrons +1203.6486 Strongly Correlated Electrons +1204.1751 Programming Languages +1204.5656 History and Overview +1205.2833 Information Theory +1205.4039 +1205.5095 Strongly Correlated Electrons +1205.6199 Probability +1205.7017 Probability +1206.0041 Phenomenology +1206.0273 Phenomenology +1206.3556 Strongly Correlated Electrons +1206.3570 Statistical Mechanics +1206.5528 +1207.2023 Materials Science +1207.2039 Cosmology and Nongalactic Astrophysics +1207.3407 High Energy Astrophysical Phenomena +1207.4233 Combinatorics +1207.6543 Strongly Correlated Electrons +1207.7101 Theory +1207.7320 Materials Science +1208.0811 Distributed, Parallel, and Cluster Computing +1208.1598 +1208.2639 Representation Theory +1208.4306 Strongly Correlated Electrons +1208.4531 +1208.4606 Astrophysics of Galaxies +1209.1947 Strongly Correlated Electrons +1209.2549 Plasma Physics +1209.3556 Quantum Gases +1209.4611 Experiment +1209.4885 Theory +1209.5272 Other Statistics +1209.5819 Geometric Topology +1209.6628 Analysis of PDEs +1210.2110 Information Theory +1210.3947 Rings and Algebras +1210.4690 Distributed, Parallel, and Cluster Computing +1210.5203 Cosmology and Nongalactic Astrophysics +1210.5458 Theory +1210.5552 Statistics Theory +1210.7574 Geometric Topology +1211.0341 Mesoscale and Nanoscale Physics +1211.0434 Quantum Gases +1211.0807 Lattice +1211.1050 Optics +1211.1261 Strongly Correlated Electrons +1211.2481 Methodology +1211.2959 +1211.3620 Complex Variables +1211.3641 Solar and Stellar Astrophysics +1211.3651 Cosmology and Nongalactic Astrophysics +1211.3671 Methodology +1211.3700 Cryptography and Security +1211.3729 Statistics Theory +1211.3738 Number Theory +1211.3739 Number Theory +1211.3756 Accelerator Physics +1211.3767 Number Theory +1211.3768 Probability +1211.3775 Algebraic Geometry +1211.3776 Information Theory +1211.3777 Phenomenology +1211.3779 Quantum Gases +1211.3784 Algebraic Geometry +1211.3787 Superconductivity +1211.3790 Instrumentation and Methods for Astrophysics +1211.3792 Applications +1211.3793 Experiment +1211.3796 Numerical Analysis +1211.3799 Numerical Analysis +1211.3803 Exactly Solvable and Integrable Systems +1211.3810 Mesoscale and Nanoscale Physics +1211.3812 Computational Geometry +1211.3814 Combinatorics +1211.3820 Probability +1211.3821 Numerical Analysis +1211.3824 Trading and Market Microstructure +1211.3827 Probability +1211.3829 Soft Condensed Matter +1211.3835 Analysis of PDEs +1211.3836 Cryptography and Security +1211.3844 Differential Geometry +1211.3845 Neural and Evolutionary Computing +1211.3848 Mesoscale and Nanoscale Physics +1211.3851 Number Theory +1211.3852 Logic +1211.3853 Atmospheric and Oceanic Physics +1211.3854 Fluid Dynamics +1211.3858 Populations and Evolution +1211.3860 Materials Science +1211.3861 Optics +1211.3862 Earth and Planetary Astrophysics +1211.3864 Probability +1211.3871 Databases +1211.3874 Rings and Algebras +1211.3876 Logic +1211.3879 Superconductivity +1211.3881 Optimization and Control +1211.3884 Phenomenology +1211.3885 Instrumentation and Detectors +1211.3886 Information Theory +1211.3887 Experiment +1211.3891 +1211.3894 Functional Analysis +1211.3897 Differential Geometry +1211.3898 Probability +1211.3899 Analysis of PDEs +1211.3900 +1211.3901 Computer Vision and Pattern Recognition +1211.3904 Materials Science +1211.3908 Cryptography and Security +1211.3916 High Energy Astrophysical Phenomena +1211.3921 Phenomenology +1211.3924 Solar and Stellar Astrophysics +1211.3925 Fluid Dynamics +1211.3927 +1211.3933 Numerical Analysis +1211.3939 Instrumentation and Detectors +1211.3942 Analysis of PDEs +1211.3943 Strongly Correlated Electrons +1211.3945 Algebraic Geometry +1211.3946 Methodology +1211.3948 Combinatorics +1211.3949 Combinatorics +1211.3955 Computer Science and Game Theory +1211.3958 Probability +1211.3959 Symbolic Computation +1211.3964 +1211.3967 Applications +1211.3978 Number Theory +1211.3979 Distributed, Parallel, and Cluster Computing +1211.3982 +1211.3996 Differential Geometry +1211.3998 Cosmology and Nongalactic Astrophysics +1211.3999 Probability +1211.4000 Social and Information Networks +1211.4003 Phenomenology +1211.4010 Numerical Analysis +1211.4013 Lattice +1211.4014 Information Theory +1211.4023 Mesoscale and Nanoscale Physics +cond-mat/0008052 Mesoscale and Nanoscale Physics +cond-mat/0205536 Statistical Mechanics +cond-mat/0208470 Statistical Mechanics +cond-mat/0302492 Mesoscale and Nanoscale Physics +cond-mat/0604019 Mesoscale and Nanoscale Physics +hep-ph/0507087 Phenomenology +math/0410575 Differential Geometry +physics/0210108 Data Analysis, Statistics and Probability +0706.4390 Differential Geometry +0709.1995 +0711.1556 +0804.4681 Combinatorics +0809.3553 General Mathematics +0902.0437 Commutative Algebra +0903.3518 Probability +0904.1881 Group Theory +0905.0573 Functional Analysis +0906.3117 Differential Geometry +0908.0906 Rings and Algebras +0911.0134 Group Theory +0912.0305 Classical Analysis and ODEs +0912.0308 Classical Analysis and ODEs +0912.2715 Geometric Topology +1001.0191 Rings and Algebras +1001.3818 Chaotic Dynamics +1002.1377 Functional Analysis +1002.1640 Fluid Dynamics +1002.4930 +1003.0220 Combinatorics +1003.2811 Molecular Networks +1003.4260 Phenomenology +1003.4689 Quantum Algebra +1004.0931 Statistical Mechanics +1006.1444 Commutative Algebra +1006.4066 General Physics +1006.5479 +1007.1886 Differential Geometry +1007.5444 Number Theory +1009.1218 Rings and Algebras +1009.1462 Rings and Algebras +1009.2339 Functional Analysis +1009.6024 +1011.0104 Classical Analysis and ODEs +1011.0107 Classical Analysis and ODEs +1011.3358 Complex Variables +1012.2683 Probability +1012.4927 Analysis of PDEs +1101.2792 Category Theory +1102.0321 Phenomenology +1102.5374 Phenomenology +1104.4820 Quantum Algebra +1105.2946 Logic +1105.5346 Number Theory +1106.1049 Discrete Mathematics +1106.2638 Rings and Algebras +1107.0362 Biological Physics +1108.0254 Atomic Physics +1108.2485 Rings and Algebras +1108.3182 Statistical Mechanics +1108.4146 Machine Learning +1108.5894 Cosmology and Nongalactic Astrophysics +1109.0169 Cosmology and Nongalactic Astrophysics +1109.1553 Strongly Correlated Electrons +1109.3335 Plasma Physics +1109.3540 Rings and Algebras +1110.0276 Biomolecules +1110.1222 Fluid Dynamics +1110.1668 +1110.1791 Probability +1110.2297 Phenomenology +1110.3635 Statistical Mechanics +1110.5657 Logic +1110.5915 Computational Complexity +1111.2098 Information Theory +1111.2427 Earth and Planetary Astrophysics +1111.3033 Computational Physics +1111.3442 Quantum Gases +1111.4729 Social and Information Networks +1111.6488 Neurons and Cognition +1111.6489 Neurons and Cognition +1111.6493 Neurons and Cognition +1111.6496 Neurons and Cognition +1111.6953 Lattice +1112.0311 Statistics Theory +1112.0526 Optimization and Control +1112.0778 Neurons and Cognition +1112.1036 Fluid Dynamics +1112.3441 Geometric Topology +1112.3494 Fluid Dynamics +1112.4248 Probability +1112.4251 Probability +1112.5492 Rings and Algebras +1112.5762 Social and Information Networks +1112.6348 History and Philosophy of Physics +1112.6398 Solar and Stellar Astrophysics +1201.0017 Numerical Analysis +1201.0510 Instrumentation and Methods for Astrophysics +1201.0672 Phenomenology +1201.2570 Phenomenology +1201.3734 Group Theory +1201.6475 Number Theory +1202.2555 Differential Geometry +1202.3127 General Topology +1202.6260 Discrete Mathematics +1203.1876 Logic +1203.1959 Representation Theory +1203.2553 Algebraic Topology +1203.5490 Operator Algebras +1204.0553 +1204.0867 Information Theory +1204.1173 Phenomenology +1204.1674 Probability +1204.2803 Strongly Correlated Electrons +1204.3545 Disordered Systems and Neural Networks +1204.4077 Probability +1204.4193 Geometric Topology +1204.6389 Biological Physics +1205.0492 Mesoscale and Nanoscale Physics +1205.3149 Mesoscale and Nanoscale Physics +1205.3646 Mesoscale and Nanoscale Physics +1205.4289 Strongly Correlated Electrons +1205.4601 Quantum Gases +1205.6036 Theory +1205.6683 Discrete Mathematics +1205.7041 Formal Languages and Automata Theory +1206.0037 +1206.0800 +1206.2207 Phenomenology +1206.2267 Theory +1206.2286 Statistical Mechanics +1206.2495 Statistical Mechanics +1206.2748 Plasma Physics +1206.2845 Phenomenology +1206.3159 Statistical Mechanics +1206.3304 Phenomenology +1206.4152 Biological Physics +1206.4478 Mesoscale and Nanoscale Physics +1207.0898 Number Theory +1207.1020 Group Theory +1207.1089 Strongly Correlated Electrons +1207.2321 +1207.2436 Classical Analysis and ODEs +1207.2903 +1207.2946 Trading and Market Microstructure +1207.2981 Dynamical Systems +1207.3354 High Energy Astrophysical Phenomena +1207.3850 Information Theory +1207.3859 Information Theory +1207.3971 Phenomenology +1207.4957 Experiment +1207.4989 Atomic Physics +1207.5044 Theory +1207.5045 Other Condensed Matter +1207.5152 Artificial Intelligence +1207.6192 Strongly Correlated Electrons +1207.6457 Materials Science +1207.7323 Lattice +1208.1637 Quantum Gases +1208.2659 Biological Physics +1208.2718 Differential Geometry +1208.3062 Superconductivity +1208.3374 Number Theory +1208.3757 +1208.6118 Phenomenology +1208.6479 Strongly Correlated Electrons +1209.0186 Quantum Gases +1209.0688 Strongly Correlated Electrons +1209.0712 Cosmology and Nongalactic Astrophysics +1209.0736 Statistics Theory +1209.2164 Fluid Dynamics +1209.2242 Theory +1209.2857 Materials Science +1209.3010 Theory +1209.3673 Materials Science +1209.4872 Phenomenology +1209.4973 +1210.0952 Quantum Gases +1210.1028 Materials Science +1210.1496 +1210.2898 Quantum Gases +1210.5324 Algebraic Geometry +1210.5632 Representation Theory +1210.5805 Soft Condensed Matter +1210.6171 Optics +1210.7012 Probability +1210.7248 +1210.7527 Astrophysics of Galaxies +1211.0455 Astrophysics of Galaxies +1211.1572 Information Theory +1211.1602 Fluid Dynamics +1211.2986 Logic in Computer Science +1211.3137 Astrophysics of Galaxies +1211.3429 Number Theory +1211.3526 Analysis of PDEs +1211.3970 Cosmology and Nongalactic Astrophysics +1211.4348 Disordered Systems and Neural Networks +1211.4694 Theory +1211.4867 Software Engineering +1211.4976 Information Theory +1211.5267 +1211.5364 Commutative Algebra +1211.6016 Group Theory +1211.6102 Classical Physics +1211.6127 Analysis of PDEs +1211.6132 Analysis of PDEs +1211.6198 Quantitative Methods +1211.6624 Systems and Control +1211.6926 Functional Analysis +1211.7222 Instrumentation and Methods for Astrophysics +1211.7334 Disordered Systems and Neural Networks +1212.0002 Representation Theory +1212.0004 Soft Condensed Matter +1212.0013 Experiment +1212.0015 Phenomenology +1212.0019 Mesoscale and Nanoscale Physics +1212.0021 Representation Theory +1212.0023 Multiagent Systems +1212.0026 Solar and Stellar Astrophysics +1212.0029 Complex Variables +1212.0030 Computer Vision and Pattern Recognition +1212.0032 Phenomenology +1212.0033 +1212.0034 Solar and Stellar Astrophysics +1212.0035 Chemical Physics +1212.0038 Experiment +1212.0041 Computational Physics +1212.0044 Phenomenology +1212.0045 Functional Analysis +1212.0048 Number Theory +1212.0050 Populations and Evolution +1212.0053 Lattice +1212.0054 Functional Analysis +1212.0059 Computer Vision and Pattern Recognition +1212.0060 Experiment +1212.0065 +1212.0066 Materials Science +1212.0069 Differential Geometry +1212.0072 Lattice +1212.0074 Information Retrieval +1212.0077 Classical Analysis and ODEs +1212.0078 +1212.0082 +1212.0085 Distributed, Parallel, and Cluster Computing +1212.0087 Social and Information Networks +1212.0092 Risk Management +1212.0094 Information Theory +1212.0096 Systems and Control +1212.0099 Plasma Physics +1212.0103 Algebraic Topology +1212.0104 +1212.0105 +1212.0106 Data Structures and Algorithms +1212.0107 Biological Physics +1212.0108 Logic +1212.0110 +1212.0114 Other Computer Science +1212.0116 Other Computer Science +1212.0117 Data Structures and Algorithms +1212.0118 +1212.0119 Populations and Evolution +1212.0124 Cellular Automata and Lattice Gases +1212.0125 Algebraic Geometry +1212.0131 Commutative Algebra +1212.0134 Computer Vision and Pattern Recognition +1212.0135 +1212.0141 Social and Information Networks +1212.0143 Plasma Physics +1212.0145 Functional Analysis +1212.0146 Social and Information Networks +1212.0154 Geometric Topology +1212.0156 Distributed, Parallel, and Cluster Computing +1212.0159 Genomics +1212.0160 Systems and Control +1212.0163 Commutative Algebra +1212.0167 Social and Information Networks +1212.0168 Materials Science +1212.0169 Human-Computer Interaction +1212.0170 Cryptography and Security +1212.0178 Methodology +1212.0179 +1212.0181 Applications +1212.0183 Analysis of PDEs +1212.0187 Fluid Dynamics +1212.0188 Fluid Dynamics +1212.0192 +1212.0193 Chaotic Dynamics +1212.0194 +1212.0197 Analysis of PDEs +1212.0200 Metric Geometry +1212.0206 Algebraic Geometry +1212.0207 Social and Information Networks +1212.0214 Solar and Stellar Astrophysics +1212.0217 Physics and Society +1212.0220 Optimization and Control +1212.0224 Combinatorics +1212.0226 Optimization and Control +1212.0227 Lattice +1212.0228 K-Theory and Homology +1212.0229 Artificial Intelligence +1212.0234 Lattice +1212.0235 Functional Analysis +1212.0238 Cosmology and Nongalactic Astrophysics +1212.0239 Optimization and Control +1212.0241 K-Theory and Homology +1212.0244 +1212.0245 Commutative Algebra +1212.0247 Classical Analysis and ODEs +1212.0250 Numerical Analysis +1212.0253 Logic in Computer Science +1212.0254 Databases +1212.0257 Group Theory +1212.0259 Numerical Analysis +1212.0262 Computational Physics +1212.0263 +1212.0264 Earth and Planetary Astrophysics +1212.0265 General Physics +1212.0268 Earth and Planetary Astrophysics +1212.0272 Optimization and Control +1212.0275 Lattice +1212.0277 Information Theory +1212.0279 General Physics +1212.0280 Numerical Analysis +1212.0282 Commutative Algebra +1212.0284 +1212.0287 Cryptography and Security +1212.0288 Experiment +1212.0291 Computer Vision and Pattern Recognition +1212.0293 Strongly Correlated Electrons +1212.0295 Strongly Correlated Electrons +1212.0296 Analysis of PDEs +1212.0298 Biological Physics +1212.0301 Phenomenology +1212.0306 +1212.0309 Networking and Internet Architecture +1212.0310 Hardware Architecture +1212.0311 Networking and Internet Architecture +1212.0312 Software Engineering +1212.0315 Materials Science +1212.0317 Databases +1212.0318 Computer Vision and Pattern Recognition +1212.0325 Statistics Theory +1212.0326 Optimization and Control +1212.0329 Mesoscale and Nanoscale Physics +1212.0331 +1212.0334 Other Quantitative Biology +1212.0336 Social and Information Networks +1212.0344 Materials Science +1212.0345 +1212.0346 Functional Analysis +1212.0352 Methodology +1212.0353 Representation Theory +1212.0355 Cosmology and Nongalactic Astrophysics +1212.0360 Functional Analysis +1212.0364 Combinatorics +1212.0365 Computers and Society +1212.0369 Optimization and Control +1212.0371 +1212.0372 Methodology +1212.0374 Biological Physics +1212.0376 Biological Physics +1212.0377 Optimization and Control +1212.0378 Applications +1212.0380 General Finance +1212.0382 Information Theory +1212.0383 Computer Vision and Pattern Recognition +1212.0386 Phenomenology +1212.0387 Other Computer Science +1212.0388 Machine Learning +1212.0389 +1212.0390 Statistical Mechanics +1212.0392 Experiment +1212.0399 +1212.0402 Computer Vision and Pattern Recognition +1212.0408 Analysis of PDEs +1212.0412 Solar and Stellar Astrophysics +1212.0417 Numerical Analysis +1212.0419 +1212.0421 Distributed, Parallel, and Cluster Computing +1212.0423 Superconductivity +1212.0429 +1212.0432 +1212.0433 Computer Vision and Pattern Recognition +1212.0438 Theory +1212.0439 Plasma Physics +1212.0441 Classical Analysis and ODEs +1212.0444 Phenomenology +1212.0453 Operator Algebras +1212.0454 +1212.0455 Functional Analysis +1212.0456 Classical Analysis and ODEs +1212.0457 Classical Analysis and ODEs +1212.0458 Classical Analysis and ODEs +1212.0462 Applications +1212.0467 Machine Learning +1212.0471 Earth and Planetary Astrophysics +1212.0474 Numerical Analysis +1212.0480 Phenomenology +1212.0481 Materials Science +1212.0483 Materials Science +1212.0489 Experiment +1212.0490 Earth and Planetary Astrophysics +1212.0492 Phenomenology +1212.0497 +1212.0500 +1212.0508 Representation Theory +1212.0510 Optics +1212.0511 Robotics +1212.0520 Information Theory +1212.0521 Algebraic Geometry +1212.0522 Algebraic Geometry +1212.0524 Mesoscale and Nanoscale Physics +1212.0525 Representation Theory +1212.0526 Computer Science and Game Theory +1212.0535 Lattice +astro-ph/0307130 +hep-ph/0506209 Phenomenology +math-ph/0405031 +math-ph/0405032 +math/0110251 Differential Geometry +math/0211328 Complex Variables +math/0403108 Differential Geometry +math/0412046 Differential Geometry +math/0601637 Differential Geometry +math/0603368 Differential Geometry +math/0604436 Commutative Algebra +math/0604550 Analysis of PDEs +0710.2576 +0802.3686 Materials Science +0909.3371 Dynamical Systems +0910.1041 Phenomenology +0910.4704 Networking and Internet Architecture +0910.5402 Group Theory +0911.4917 Probability +0912.1297 Dynamical Systems +1003.3641 Numerical Analysis +1005.0292 Dynamical Systems +1007.2266 Logic +1010.6013 Metric Geometry +1011.2351 Quantum Gases +1012.5606 +1101.0759 Probability +1101.1716 +1101.3082 General Physics +1101.3255 Algebraic Geometry +1102.4220 Dynamical Systems +1104.1422 Functional Analysis +1104.4226 Dynamical Systems +1106.3601 Probability +1106.6201 Phenomenology +1107.2507 Strongly Correlated Electrons +1108.1904 +1108.3112 Probability +1108.3228 Strongly Correlated Electrons +1109.1428 +1109.4575 Quantum Algebra +1109.6331 Theory +1111.1038 Mesoscale and Nanoscale Physics +1111.3254 +1111.4777 Number Theory +1111.5093 Mesoscale and Nanoscale Physics +1111.5594 Superconductivity +1111.5942 Optics +1112.2917 General Physics +1112.3166 Computer Vision and Pattern Recognition +1201.0709 Operator Algebras +1201.1256 +1201.5041 +1201.5263 +1202.0823 Materials Science +1202.2209 Social and Information Networks +1203.2990 Learning +1203.4188 Combinatorics +1203.4603 Mesoscale and Nanoscale Physics +1204.0476 Theory +1204.1119 Phenomenology +1204.1211 Differential Geometry +1204.3165 Algebraic Geometry +1205.0871 +1205.2196 Strongly Correlated Electrons +1205.3688 +1205.3813 Computational Complexity +1205.4686 Strongly Correlated Electrons +1205.4785 Information Theory +1205.6362 Classical Analysis and ODEs +1206.1306 Differential Geometry +1206.4388 +1206.5944 Superconductivity +1206.6739 Operator Algebras +1206.7108 Phenomenology +1207.0107 Quantum Algebra +1207.0998 Classical Physics +1207.1026 Statistical Mechanics +1207.1338 Quantum Gases +1207.2735 +1207.3990 Phenomenology +1207.4598 Data Structures and Algorithms +1207.7139 Computers and Society +1208.0718 +1208.0753 +1208.1169 Lattice +1208.1666 +1208.1772 Physics Education +1208.1815 +1208.2555 Phenomenology +1208.2628 General Physics +1208.2806 Algebraic Geometry +1208.2891 +1209.1034 Instrumentation and Detectors +1209.1303 Phenomenology +1209.1305 +1209.1663 Statistical Mechanics +1209.1981 +1209.2087 Atomic Physics +1209.2184 Data Structures and Algorithms +1209.2426 +1209.2917 +1209.3800 Theory +1209.4976 Artificial Intelligence +1209.5456 Artificial Intelligence +1210.0739 Phenomenology +1210.0746 +1210.2047 Distributed, Parallel, and Cluster Computing +1210.3006 +1210.4287 Algebraic Geometry +1210.4993 Biological Physics +1210.7364 +1210.7365 Differential Geometry +1210.7943 Phenomenology +1211.0368 Materials Science +1211.2355 +1211.2893 Algebraic Geometry +1211.2966 Complex Variables +1211.3180 Lattice +1211.3975 Geometric Topology +1211.4876 Earth and Planetary Astrophysics +1211.4948 Combinatorics +1211.5696 Differential Geometry +1211.5771 Number Theory +1211.6179 Quantitative Methods +1211.6322 Software Engineering +1211.6479 Phenomenology +1211.6488 +1211.6539 Probability +1211.6735 General Physics +1211.6752 Cosmology and Nongalactic Astrophysics +1211.6757 Optics +1211.6760 Number Theory +1211.6768 Earth and Planetary Astrophysics +1211.6777 History and Philosophy of Physics +1211.6778 Numerical Analysis +1211.6779 Classical Analysis and ODEs +1211.6781 Software Engineering +1211.6785 +1211.6787 Superconductivity +1211.6789 Statistical Mechanics +1211.6790 Statistical Mechanics +1211.6793 Theory +1211.6796 Soft Condensed Matter +1211.6799 Human-Computer Interaction +1211.6800 Phenomenology +1211.6802 Number Theory +1211.6816 Quantum Algebra +1211.6820 Probability +1211.6824 +1211.6826 +1211.6830 Geometric Topology +1211.6831 Probability +1211.6834 Applications +1211.6838 Number Theory +1211.6843 +1211.6844 Lattice +1211.6851 Learning +1211.6859 Machine Learning +1211.6870 Solar and Stellar Astrophysics +1211.6876 Operator Algebras +1211.6878 Classical Analysis and ODEs +1211.6879 Superconductivity +1211.6881 Representation Theory +1211.6882 Theory +1211.6887 Computation and Language +1211.6888 Analysis of PDEs +1211.6897 Representation Theory +1211.6898 Learning +1211.6904 +1211.6906 +1211.6907 +1211.6908 +1211.6915 Statistics Theory +1211.6918 Information Theory +1211.6921 Algebraic Geometry +1211.6925 Materials Science +1211.6930 Theory +1211.6934 Algebraic Geometry +1211.6938 +1211.6939 +1211.6941 Strongly Correlated Electrons +1211.6942 Representation Theory +1211.6943 Algebraic Geometry +1211.6951 Disordered Systems and Neural Networks +1211.6955 Strongly Correlated Electrons +1211.6962 Probability +1211.6965 General Mathematics +1211.6970 Materials Science +1211.6971 Computer Vision and Pattern Recognition +1211.6974 Probability +1211.6975 Astrophysics of Galaxies +1211.6976 Cosmology and Nongalactic Astrophysics +1211.6981 Rings and Algebras +1211.6982 Phenomenology +1211.6988 Networking and Internet Architecture +1211.6990 Geometric Topology +1211.6992 Phenomenology +1211.6996 Fluid Dynamics +1211.7008 Other Statistics +1211.7009 Cosmology and Nongalactic Astrophysics +1211.7014 Algebraic Geometry +1211.7020 Computational Geometry +1211.7022 Populations and Evolution +1211.7030 Functional Analysis +1211.7032 Strongly Correlated Electrons +1211.7034 Atomic and Molecular Clusters +1211.7035 Geometric Topology +1211.7039 Optimization and Control +1211.7041 Atomic and Molecular Clusters +hep-ph/0512238 Phenomenology +physics/0010080 General Physics +0704.2115 Statistical Finance +0706.0534 Machine Learning +0708.3128 Number Theory +0708.4228 +0709.0791 Strongly Correlated Electrons +0710.2661 Differential Geometry +0712.1788 Strongly Correlated Electrons +0712.2206 Strongly Correlated Electrons +0802.0015 Combinatorics +0804.3354 +0810.1859 +0811.0342 Strongly Correlated Electrons +0811.2501 Statistics Theory +0903.1643 Pricing of Securities +0904.1727 Quantum Gases +0905.2521 Medical Physics +0909.4566 Materials Science +0910.0446 Functional Analysis +0910.1065 Spectral Theory +0910.1454 Spectral Theory +0910.1474 Optimization and Control +0910.5679 Spectral Theory +0910.5683 Analysis of PDEs +0911.0426 Earth and Planetary Astrophysics +1001.3901 Earth and Planetary Astrophysics +1002.2086 Probability +1003.0327 Earth and Planetary Astrophysics +1003.1933 Differential Geometry +1003.3204 Theory +1004.0971 Earth and Planetary Astrophysics +1004.3599 Statistics Theory +1006.0822 Number Theory +1006.5770 Commutative Algebra +1007.0457 Analysis of PDEs +1007.0966 +1007.2035 Probability +1008.1679 +1009.0530 Machine Learning +1009.1916 Disordered Systems and Neural Networks +1009.1972 Medical Physics +1009.4177 Strongly Correlated Electrons +1010.2304 Mesoscale and Nanoscale Physics +1010.5764 Combinatorics +1011.1365 Geometric Topology +1011.3277 Statistical Mechanics +1011.3824 +1101.4074 Theory +1102.5235 Cosmology and Nongalactic Astrophysics +1103.1782 +1103.2116 Quantum Gases +1104.2321 Cosmology and Nongalactic Astrophysics +1105.0625 Analysis of PDEs +1105.0912 Number Theory +1105.2790 Disordered Systems and Neural Networks +1105.5139 Cosmology and Nongalactic Astrophysics +1105.5972 Quantum Algebra +1105.6099 +1106.2980 Portfolio Management +1106.3267 Strongly Correlated Electrons +1106.5581 Probability +1106.5688 Mesoscale and Nanoscale Physics +1106.5841 Information Theory +1107.4084 Cosmology and Nongalactic Astrophysics +1107.5551 Theory +1107.5949 Instrumentation and Detectors +1108.0932 Cosmology and Nongalactic Astrophysics +1108.2825 Dynamical Systems +1108.3395 Solar and Stellar Astrophysics +1108.4329 Disordered Systems and Neural Networks +1108.4544 Differential Geometry +1108.5053 Combinatorics +1108.5211 Physics and Society +1108.6251 Materials Science +1109.1170 Quantitative Methods +1109.3842 Disordered Systems and Neural Networks +1109.4302 Statistical Mechanics +1109.4857 Solar and Stellar Astrophysics +1109.4954 Quantum Gases +1110.1968 Quantum Gases +1110.2891 Solar and Stellar Astrophysics +1110.3603 Probability +1110.3721 +1110.4067 Quantum Gases +1110.4253 Functional Analysis +1110.4315 Solar and Stellar Astrophysics +1110.4337 Astrophysics of Galaxies +1110.4607 Strongly Correlated Electrons +1110.6727 Materials Science +1110.6730 Soft Condensed Matter +1111.3287 Differential Geometry +1111.4213 Soft Condensed Matter +1111.6851 High Energy Astrophysical Phenomena +1112.0107 Instrumentation and Detectors +1112.0751 Materials Science +1112.2134 +1112.2205 Cryptography and Security +1112.6222 Information Retrieval +1112.6301 Instrumentation and Methods for Astrophysics +1201.1206 +1201.1396 Representation Theory +1201.1582 Metric Geometry +1201.1619 General Physics +1201.1641 Tissues and Organs +1201.1913 Cosmology and Nongalactic Astrophysics +1201.1924 Lattice +1201.1928 Computers and Society +1201.1929 +1201.1938 Rings and Algebras +1201.1942 Analysis of PDEs +1201.1953 Dynamical Systems +1201.1959 Optics +1201.1966 Other Computer Science +1201.1967 Software Engineering +1201.1968 Cryptography and Security +1201.1970 Other Computer Science +1201.1972 Networking and Internet Architecture +1201.1973 High Energy Astrophysical Phenomena +1201.1976 Materials Science +1201.1980 Methodology +1201.1982 Symbolic Computation +1201.1990 Systems and Control +1201.2000 Data Structures and Algorithms +1201.2004 Artificial Intelligence +1201.2005 Fluid Dynamics +1201.2007 Cryptography and Security +1201.2009 Astrophysics of Galaxies +1201.2010 Computation and Language +1201.2011 Astrophysics of Galaxies +1201.2012 Differential Geometry +1201.2013 Astrophysics of Galaxies +1201.2016 Solar and Stellar Astrophysics +1201.2017 Solar and Stellar Astrophysics +1201.2021 Solar and Stellar Astrophysics +1201.2022 Solar and Stellar Astrophysics +1201.2023 Solar and Stellar Astrophysics +1201.2025 Other Computer Science +1201.2031 Software Engineering +1201.2034 Performance +1201.2037 Lattice +1201.2038 Earth and Planetary Astrophysics +1201.2043 Emerging Technologies +1201.2045 Populations and Evolution +1201.2046 Physics and Society +1201.2047 Methodology +1201.2048 Analysis of PDEs +1201.2050 Computer Vision and Pattern Recognition +1201.2051 Differential Geometry +1201.2053 +1201.2054 +1201.2056 Information Theory +1201.2060 High Energy Astrophysical Phenomena +1201.2061 Materials Science +1201.2065 Lattice +1201.2066 Strongly Correlated Electrons +1201.2068 Strongly Correlated Electrons +1201.2069 Other Quantitative Biology +1201.2072 Molecular Networks +1201.2073 Artificial Intelligence +1201.2077 Metric Geometry +1201.2083 Other Computer Science +1201.2084 Artificial Intelligence +1201.2085 Phenomenology +1201.2087 Differential Geometry +1201.2088 Atomic and Molecular Clusters +1201.2089 Differential Geometry +1201.2099 Theory +1201.2100 Neural and Evolutionary Computing +1201.2102 Networking and Internet Architecture +1201.2103 Cryptography and Security +1201.2104 Algebraic Geometry +1201.2114 Mesoscale and Nanoscale Physics +1201.2115 Algebraic Geometry +1201.2116 Number Theory +1201.2117 Functional Analysis +1201.2118 Distributed, Parallel, and Cluster Computing +1201.2125 Distributed, Parallel, and Cluster Computing +1201.2128 Combinatorics +1201.2140 Analysis of PDEs +1201.2143 Operator Algebras +1201.2145 Number Theory +1201.2146 Logic +1201.2147 Operator Algebras +1201.2158 Number Theory +1201.2159 Quantum Algebra +1201.2163 Mesoscale and Nanoscale Physics +1201.2170 Operator Algebras +astro-ph/0610379 +cond-mat/0310330 Soft Condensed Matter +cond-mat/0404400 Strongly Correlated Electrons +cond-mat/0503375 Strongly Correlated Electrons +cond-mat/0510131 Strongly Correlated Electrons +cond-mat/0510155 Strongly Correlated Electrons +cond-mat/0510186 Strongly Correlated Electrons +cond-mat/0512518 Statistical Mechanics +cond-mat/0701386 Strongly Correlated Electrons +hep-ph/9405342 Phenomenology +math/0701233 Differential Geometry +physics/0504198 Physics and Society +0709.2626 Superconductivity +0711.4433 Physics and Society +0804.2836 Functional Analysis +0804.3069 Functional Analysis +0811.0965 Complex Variables +0812.2216 Functional Analysis +0901.1473 Information Theory +0901.2967 Complex Variables +0901.3719 Subcellular Processes +0902.4679 Complex Variables +0904.0139 Phenomenology +0904.0456 +0909.0639 Applications +0910.1265 Phenomenology +0910.4054 General Physics +0912.1072 Logic +1002.1543 Geometric Topology +1003.5126 General Physics +1005.0381 General Physics +1005.1690 Strongly Correlated Electrons +1005.3342 Combinatorics +1006.3660 Classical Physics +1006.4061 Classical Physics +1007.0509 Optimization and Control +1007.2170 Discrete Mathematics +1007.5399 Mesoscale and Nanoscale Physics +1008.4183 Classical Physics +1010.2576 Statistical Finance +1010.4463 Phenomenology +1011.5739 Information Theory +1101.0516 Differential Geometry +1101.0575 Combinatorics +1101.0676 Theory +1101.1727 Formal Languages and Automata Theory +1102.0710 Information Theory +1102.0826 Statistics Theory +1102.1737 +1102.2550 Algebraic Geometry +1102.4794 Information Theory +1103.3961 +1104.5621 Mesoscale and Nanoscale Physics +1105.0812 Physics and Society +1105.3385 +1105.3557 Phenomenology +1105.5015 Quantum Gases +1105.5479 Theory +1105.6173 +1106.0755 Dynamical Systems +1106.1040 Group Theory +1106.2404 Information Theory +1106.4939 Mesoscale and Nanoscale Physics +1106.5616 +1106.6316 Functional Analysis +1107.5448 Probability +1108.1821 Theory +1108.5816 +1108.5915 Materials Science +1109.1413 Accelerator Physics +1109.1666 +1109.2021 Soft Condensed Matter +1109.3293 Soft Condensed Matter +1109.5089 Analysis of PDEs +1109.5408 Atomic Physics +1109.5473 +1109.6658 Cosmology and Nongalactic Astrophysics +1110.0206 Solar and Stellar Astrophysics +1110.0320 +1110.0495 Theory +1110.0629 Soft Condensed Matter +1110.1470 Computation and Language +1110.2040 +1110.2044 +1110.3305 High Energy Astrophysical Phenomena +1110.3932 Chemical Physics +1110.4244 +1110.5205 Mesoscale and Nanoscale Physics +1110.6319 Mesoscale and Nanoscale Physics +1110.6798 Quantum Gases +1111.1662 Theory +1111.1968 Optics +1111.2123 +1111.2880 Combinatorics +1111.2907 Superconductivity +1111.4563 Mesoscale and Nanoscale Physics +1111.6396 Cosmology and Nongalactic Astrophysics +1111.6804 Social and Information Networks +1112.0004 Instrumentation and Methods for Astrophysics +1112.0959 Classical Physics +1112.1938 Materials Science +1112.2786 Cosmology and Nongalactic Astrophysics +1112.6102 Operator Algebras +1201.0788 Chemical Physics +1201.1995 Operator Algebras +1201.2267 Computational Geometry +1201.2603 Optimization and Control +1201.2919 Algebraic Topology +1201.4371 High Energy Astrophysical Phenomena +1201.5730 Solar and Stellar Astrophysics +1201.6083 Dynamical Systems +1201.6207 Data Structures and Algorithms +1201.6224 Computation and Language +1201.6465 Information Theory +1202.0048 Applications +1202.0275 Algebraic Topology +1202.0276 Combinatorics +1202.0292 History and Philosophy of Physics +1202.0293 Accelerator Physics +1202.0295 Materials Science +1202.0297 Accelerator Physics +1202.0301 Mesoscale and Nanoscale Physics +1202.0303 Accelerator Physics +1202.0306 Superconductivity +1202.0307 Information Theory +1202.0309 Information Theory +1202.0315 Number Theory +1202.0320 Instrumentation and Detectors +1202.0321 Operator Algebras +1202.0324 Superconductivity +1202.0327 Computers and Society +1202.0331 Social and Information Networks +1202.0337 Number Theory +1202.0338 Information Theory +1202.0342 Statistical Finance +1202.0343 Information Theory +1202.0344 Statistical Finance +1202.0346 +1202.0349 Information Theory +1202.0350 Chaotic Dynamics +1202.0351 Physics and Society +1202.0352 Chaotic Dynamics +1202.0357 Information Theory +1202.0359 Software Engineering +1202.0360 Atmospheric and Oceanic Physics +1202.0364 Data Structures and Algorithms +1202.0366 Information Theory +1202.0367 Phenomenology +1202.0371 Commutative Algebra +1202.0373 Applications +1202.0377 Commutative Algebra +1202.0378 Phenomenology +1202.0379 Representation Theory +1202.0380 Functional Analysis +1202.0381 Commutative Algebra +1202.0385 Commutative Algebra +1202.0389 Plasma Physics +1202.0390 Instrumentation and Methods for Astrophysics +1202.0391 Statistics Theory +1202.0392 Rings and Algebras +1202.0396 Instrumentation and Methods for Astrophysics +1202.0397 Instrumentation and Detectors +1202.0404 Physics and Society +1202.0405 Molecular Networks +1202.0406 Analysis of PDEs +1202.0407 Quantitative Methods +1202.0408 +1202.0414 Software Engineering +1202.0416 Algebraic Geometry +1202.0420 Probability +1202.0423 Classical Analysis and ODEs +1202.0425 +1202.0426 Category Theory +1202.0427 Logic +1202.0428 Tissues and Organs +1202.0430 +1202.0431 Category Theory +1202.0433 Quantitative Methods +1202.0440 Artificial Intelligence +1202.0444 High Energy Astrophysical Phenomena +1202.0448 General Physics +1202.0450 Pattern Formation and Solitons +1202.0452 Information Theory +1202.0453 Algebraic Geometry +1202.0455 Systems and Control +1202.0456 +1202.0457 Information Theory +1202.0466 High Energy Astrophysical Phenomena +1202.0470 Probability +1202.0471 Number Theory +1202.0473 Functional Analysis +1202.0475 Algebraic Geometry +1202.0476 +1202.0477 Networking and Internet Architecture +1202.0479 Atomic Physics +1202.0480 Physics and Society +1202.0481 High Energy Astrophysical Phenomena +1202.0484 Biological Physics +1202.0485 Solar and Stellar Astrophysics +1202.0488 Phenomenology +1202.0490 +1202.0491 Algebraic Geometry +1202.0494 Cosmology and Nongalactic Astrophysics +1202.0498 Dynamical Systems +1202.0501 Molecular Networks +1202.0502 Methodology +1202.0503 Functional Analysis +1202.0504 Classical Analysis and ODEs +1202.0507 Phenomenology +1202.0509 Phenomenology +1202.0517 Applications +1202.0519 Chaotic Dynamics +1202.0522 Materials Science +1202.0535 Information Theory +1202.0536 Information Theory +1202.0541 Mesoscale and Nanoscale Physics +1202.0548 Solar and Stellar Astrophysics +1202.0549 Computer Vision and Pattern Recognition +astro-ph/0703298 +math/0312433 Complex Variables +math/0401074 Algebraic Geometry +0704.0316 +0705.0618 +0705.4505 +0712.1515 +0801.1548 +0805.3565 +0806.3569 Geometric Topology +0807.2549 +0807.3452 Dynamical Systems +0904.1290 Cosmology and Nongalactic Astrophysics +0907.4482 Classical Physics +1004.3700 +1004.4578 Combinatorics +1006.5087 Information Theory +1008.1758 Numerical Analysis +1008.2914 Differential Geometry +1009.0558 +1009.3217 Computational Complexity +1009.5177 Computation +1009.5726 Analysis of PDEs +1010.5699 Combinatorics +1011.4288 Combinatorics +1012.5088 Analysis of PDEs +1101.0297 Algebraic Geometry +1102.3116 Phenomenology +1103.2394 +1103.4764 Classical Physics +1104.2728 Algebraic Geometry +1105.0855 Phenomenology +1105.4599 Molecular Networks +1106.4488 +1106.4987 Numerical Analysis +1106.5208 Mesoscale and Nanoscale Physics +1107.0536 +1107.4210 Portfolio Management +1108.1714 +1108.2899 Dynamical Systems +1108.3033 Logic in Computer Science +1108.5323 +1108.5697 Cosmology and Nongalactic Astrophysics +1108.6034 High Energy Astrophysical Phenomena +1109.2649 Lattice +1109.2885 Data Structures and Algorithms +1109.4804 Mesoscale and Nanoscale Physics +1109.5737 Differential Geometry +1110.0766 Chaotic Dynamics +1110.1049 +1110.1429 +1110.3030 Computational Complexity +1110.3469 Physics Education +1111.0017 Algebraic Geometry +1111.2048 Cosmology and Nongalactic Astrophysics +1111.2120 Phenomenology +1111.3136 Mesoscale and Nanoscale Physics +1111.5208 +1111.5635 Group Theory +1111.5887 Algebraic Geometry +1112.0244 High Energy Astrophysical Phenomena +1112.2441 Analysis of PDEs +1112.4382 Theory +1112.5031 Phenomenology +1112.5523 High Energy Astrophysical Phenomena +1201.1898 Mesoscale and Nanoscale Physics +1201.2721 +1201.3279 Phenomenology +1201.3361 Mesoscale and Nanoscale Physics +1201.3480 Networking and Internet Architecture +1201.4344 Computational Complexity +1201.5427 Phenomenology +1201.5591 Cosmology and Nongalactic Astrophysics +1201.5722 Physics and Society +1202.0437 Solar and Stellar Astrophysics +1202.0737 +1202.1018 Mesoscale and Nanoscale Physics +1202.1247 Cosmology and Nongalactic Astrophysics +1202.1297 Phenomenology +1202.1590 Computer Science and Game Theory +1202.3293 Mesoscale and Nanoscale Physics +1202.3308 Cosmology and Nongalactic Astrophysics +1202.3393 Mesoscale and Nanoscale Physics +1202.3470 Data Structures and Algorithms +1202.4433 Cosmology and Nongalactic Astrophysics +1202.4492 Strongly Correlated Electrons +1202.4811 Populations and Evolution +1202.5235 Mesoscale and Nanoscale Physics +1202.5398 Computational Physics +1202.5844 Numerical Analysis +1202.6108 Biological Physics +1203.0192 Materials Science +1203.0465 +1203.0930 Experiment +1203.1417 Analysis of PDEs +1203.1682 Representation Theory +1203.1810 +1203.2649 Astrophysics of Galaxies +1203.3243 Classical Physics +1203.3316 Human-Computer Interaction +1203.4312 Mesoscale and Nanoscale Physics +1203.4830 General Mathematics +1203.5170 Dynamical Systems +1203.6560 Molecular Networks +1204.2654 Theory +1204.4509 Data Structures and Algorithms +1204.4965 Geometric Topology +1204.4976 Exactly Solvable and Integrable Systems +1204.5319 +1204.5406 Cosmology and Nongalactic Astrophysics +1204.5447 Computational Complexity +1204.5485 +1204.5490 Combinatorics +1204.5497 Lattice +1204.5498 Number Theory +1204.5508 Computational Complexity +1204.5509 +1204.5514 Group Theory +1204.5515 Optics +1204.5519 Computer Science and Game Theory +1204.5525 Other Computer Science +1204.5528 Algebraic Geometry +1204.5537 Probability +1204.5539 Mesoscale and Nanoscale Physics +1204.5541 Programming Languages +1204.5542 Logic in Computer Science +1204.5543 Logic in Computer Science +1204.5544 Logic in Computer Science +1204.5545 Logic in Computer Science +1204.5549 +1204.5550 Differential Geometry +1204.5555 Materials Science +1204.5559 +1204.5560 +1204.5563 Physics and Society +1204.5565 Commutative Algebra +1204.5566 +1204.5571 Cosmology and Nongalactic Astrophysics +1204.5578 Solar and Stellar Astrophysics +1204.5580 Robotics +1204.5581 Methodology +1204.5584 Statistical Mechanics +1204.5586 Lattice +1204.5590 Cryptography and Security +1204.5592 Cryptography and Security +1204.5606 +1204.5608 Analysis of PDEs +1204.5616 Superconductivity +1204.5624 Probability +1204.5628 Analysis of PDEs +1204.5632 Instrumentation and Methods for Astrophysics +1204.5639 Logic in Computer Science +1204.5641 Networking and Internet Architecture +1204.5642 Networking and Internet Architecture +1204.5644 Phenomenology +1204.5648 Databases +1204.5652 Information Theory +1204.5653 Logic in Computer Science +1204.5658 Algebraic Topology +1204.5662 Computational Complexity +1204.5663 Information Theory +1204.5666 Computational Complexity +1204.5668 Phenomenology +1204.5672 Group Theory +1204.5673 Probability +1204.5677 Systems and Control +1204.5681 Category Theory +1204.5682 Strongly Correlated Electrons +1204.5684 Analysis of PDEs +1204.5686 Dynamical Systems +1204.5688 Analysis of PDEs +1204.5696 Solar and Stellar Astrophysics +1204.5698 Pricing of Securities +1204.5701 Dynamical Systems +1204.5707 Information Theory +1204.5708 +1204.5714 Computational Complexity +1204.5718 Computational Finance +1204.5724 Methodology +1204.5727 Cosmology and Nongalactic Astrophysics +1204.5730 Representation Theory +1204.5736 Probability +astro-ph/0011256 +astro-ph/0103405 +astro-ph/0202307 +astro-ph/0203291 +astro-ph/0203509 +astro-ph/0206248 +astro-ph/0303390 +astro-ph/0303391 +astro-ph/0303635 +astro-ph/0306023 +astro-ph/0308241 +astro-ph/0503176 +astro-ph/0503177 +astro-ph/0504287 +astro-ph/0505429 +astro-ph/0506192 +astro-ph/0509417 +astro-ph/0605699 +astro-ph/0607378 +astro-ph/0608613 +astro-ph/0608614 +astro-ph/9908131 +0712.3015 K-Theory and Homology +0802.4041 Geometric Topology +0806.3920 Optimization and Control +0808.2084 Materials Science +0810.5349 +0811.2270 +0908.2745 Geometric Topology +0910.2609 Theory +1001.1564 +1005.1013 General Physics +1005.5358 Mesoscale and Nanoscale Physics +1007.3603 +1010.0418 +1010.2417 Algebraic Geometry +1012.2225 Quantum Gases +1012.3356 Fluid Dynamics +1012.4447 +1101.0980 Mesoscale and Nanoscale Physics +1101.3038 Probability +1103.2631 Mesoscale and Nanoscale Physics +1106.1165 Phenomenology +1106.3088 Combinatorics +1107.2214 Algebraic Geometry +1107.2382 Geometric Topology +1107.4052 Soft Condensed Matter +1107.5146 Optimization and Control +1108.4140 Combinatorics +1109.1643 Information Theory +1109.1874 Information Theory +1109.3943 Optics +1110.0199 Representation Theory +1110.2924 Differential Geometry +1110.3295 Analysis of PDEs +1111.0293 Phenomenology +1112.0295 Computation +1112.0832 Differential Geometry +1112.2413 Mesoscale and Nanoscale Physics +1201.2250 +1203.0085 High Energy Astrophysical Phenomena +1203.1389 Probability +1203.2929 Theory +1203.5636 High Energy Astrophysical Phenomena +1203.6834 +1204.3730 Probability +1205.1599 Number Theory +1206.0164 Phenomenology +1206.0672 Representation Theory +1206.0801 Strongly Correlated Electrons +1206.3030 Phenomenology +1206.5025 Theory +1206.5725 Data Structures and Algorithms +1206.5899 +1206.6622 Phenomenology +1207.0041 Classical Analysis and ODEs +1207.2775 Strongly Correlated Electrons +1207.3087 +1207.3798 Theory +1207.5144 General Physics +1207.6258 +1207.6291 Atomic Physics +1207.6971 Quantum Gases +1208.0710 +1208.0752 Theory +1208.1016 Algebraic Geometry +1208.1592 Information Theory +1208.2583 Populations and Evolution +1208.4258 Superconductivity +1208.4545 Chemical Physics +1208.4559 +1208.4902 Group Theory +1208.5410 Theory +1209.1386 +1209.2166 Computers and Society +1209.4359 High Energy Astrophysical Phenomena +1210.0093 Mesoscale and Nanoscale Physics +1210.0633 Solar and Stellar Astrophysics +1210.4281 Optimization and Control +1210.4403 Theory +1210.4682 Statistical Mechanics +1210.5725 Information Theory +1210.6020 Mesoscale and Nanoscale Physics +1210.7199 Materials Science +1210.8279 Chemical Physics +1210.8350 Materials Science +1211.1612 Theory +1211.2256 +1211.3681 Cosmology and Nongalactic Astrophysics +1211.6643 Dynamical Systems +1211.6985 Classical Analysis and ODEs +1211.7203 +1212.1031 History and Philosophy of Physics +1212.1203 Pattern Formation and Solitons +1212.1230 Representation Theory +1212.1346 Formal Languages and Automata Theory +1212.1735 Optimization and Control +1212.1774 Analysis of PDEs +1212.1785 Algebraic Geometry +1212.1793 Solar and Stellar Astrophysics +1212.1825 Symplectic Geometry +1212.1884 Computer Science and Game Theory +1212.1941 Computational Complexity +1212.2005 Artificial Intelligence +1212.2207 Cryptography and Security +1212.2230 +1212.2235 Mesoscale and Nanoscale Physics +1212.2236 Computer Science and Game Theory +1212.2238 Phenomenology +1212.2243 Optimization and Control +1212.2244 Pattern Formation and Solitons +1212.2246 Number Theory +1212.2247 Dynamical Systems +1212.2251 Databases +1212.2253 +1212.2257 Logic in Computer Science +1212.2261 Differential Geometry +1212.2266 Phenomenology +1212.2268 Earth and Planetary Astrophysics +1212.2269 Biological Physics +1212.2271 General Physics +1212.2272 Materials Science +1212.2273 Plasma Physics +1212.2275 Classical Physics +1212.2281 Software Engineering +1212.2283 +1212.2285 Analysis of PDEs +1212.2295 Solar and Stellar Astrophysics +1212.2296 Dynamical Systems +1212.2297 Representation Theory +1212.2302 Metric Geometry +1212.2303 Computational Geometry +1212.2309 Databases +1212.2311 Materials Science +1212.2314 Discrete Mathematics +1212.2315 Operator Algebras +1212.2325 Probability +1212.2329 +1212.2338 Databases +1212.2340 Machine Learning +1212.2341 Programming Languages +1212.2342 Networking and Internet Architecture +1212.2343 Information Theory +1212.2345 Information Theory +1212.2346 Computational Geometry +1212.2347 Differential Geometry +1212.2349 Classical Analysis and ODEs +1212.2350 Logic in Computer Science +1212.2351 K-Theory and Homology +1212.2358 Applications +1212.2361 +1212.2366 Instrumentation and Methods for Astrophysics +1212.2370 Theory +1212.2371 Popular Physics +1212.2372 Earth and Planetary Astrophysics +1212.2373 Functional Analysis +1212.2375 Functional Analysis +1212.2376 Differential Geometry +1212.2378 +1212.2386 Discrete Mathematics +1212.2388 +1212.2389 Mesoscale and Nanoscale Physics +1212.2390 Computation and Language +1212.2391 Geophysics +1212.2393 Computation +1212.2395 Logic +1212.2396 Information Theory +1212.2404 Cryptography and Security +1212.2405 Materials Science +1212.2414 Cryptography and Security +1212.2415 Learning +1212.2420 Probability +1212.2430 Soft Condensed Matter +1212.2432 +1212.2434 +1212.2437 +1212.2438 Systems and Control +1212.2440 +1212.2442 Information Retrieval +1212.2443 Computer Science and Game Theory +1212.2444 Artificial Intelligence +1212.2445 Artificial Intelligence +1212.2446 Artificial Intelligence +1212.2447 Learning +1212.2448 Artificial Intelligence +1212.2449 Artificial Intelligence +1212.2450 Artificial Intelligence +1212.2451 Cryptography and Security +1212.2452 Artificial Intelligence +1212.2453 Information Retrieval +1212.2455 Artificial Intelligence +1212.2456 Artificial Intelligence +1212.2457 Artificial Intelligence +1212.2459 Artificial Intelligence +1212.2460 Learning +1212.2461 Artificial Intelligence +1212.2462 Methodology +1212.2463 Artificial Intelligence +1212.2464 Artificial Intelligence +1212.2465 Artificial Intelligence +1212.2466 Learning +1212.2467 Applications +1212.2468 Learning +1212.2469 Artificial Intelligence +1212.2470 Learning +1212.2471 Learning +1212.2472 Learning +1212.2473 Artificial Intelligence +1212.2474 Learning +1212.2475 Learning +1212.2476 Artificial Intelligence +1212.2477 Information Retrieval +1212.2478 Information Retrieval +1212.2479 Data Structures and Algorithms +1212.2480 Learning +1212.2481 Artificial Intelligence +1212.2482 Artificial Intelligence +1212.2483 Learning +1212.2484 Artificial Intelligence +1212.2485 Artificial Intelligence +1212.2486 Artificial Intelligence +1212.2487 Learning +1212.2488 Learning +1212.2490 Learning +1212.2491 Learning +1212.2493 Artificial Intelligence +1212.2494 Learning +1212.2495 Robotics +1212.2496 Artificial Intelligence +1212.2497 Artificial Intelligence +1212.2498 Learning +1212.2499 Artificial Intelligence +1212.2500 Learning +1212.2501 Artificial Intelligence +1212.2502 Artificial Intelligence +1212.2503 Artificial Intelligence +1212.2504 Learning +1212.2505 Artificial Intelligence +1212.2506 Artificial Intelligence +1212.2507 Artificial Intelligence +1212.2508 Learning +1212.2509 Information Retrieval +1212.2510 Learning +1212.2511 Learning +1212.2512 Learning +1212.2513 Learning +1212.2514 Learning +1212.2515 Artificial Intelligence +1212.2516 Learning +1212.2517 Learning +1212.2518 Artificial Intelligence +1212.2519 Artificial Intelligence +1212.2523 Optimization and Control +1212.2524 High Energy Astrophysical Phenomena +1212.2525 History and Overview +1212.2526 Chemical Physics +1212.2529 Neural and Evolutionary Computing +1212.2533 +1212.2535 General Mathematics +1212.2536 +1212.2542 Strongly Correlated Electrons +1212.2546 Computer Vision and Pattern Recognition +1212.2547 Physics and Society +1212.2548 Phenomenology +1212.2549 Computational Complexity +1212.2550 Materials Science +1212.2559 Lattice +1212.2561 Phenomenology +1212.2563 Cryptography and Security +1212.2564 Lattice +1212.2567 Networking and Internet Architecture +1212.2573 Learning +1212.2574 Biological Physics +1212.2580 Geophysics +1212.2582 Cryptography and Security +1212.2587 Information Retrieval +1212.2589 Number Theory +1212.2591 Information Theory +1212.2596 Representation Theory +1212.2597 General Mathematics +1212.2605 +1212.2607 Social and Information Networks +1212.2608 Algebraic Geometry +1212.2609 Representation Theory +1212.2611 Numerical Analysis +1212.2612 Plasma Physics +1212.2614 Artificial Intelligence +1212.2616 Physics and Society +1212.2617 Quantitative Methods +math/0402306 Representation Theory +0705.4221 Analysis of PDEs +0709.3705 Algebraic Geometry +0806.0538 Phenomenology +0807.1941 +0811.3368 +0812.1164 Dynamical Systems +0904.3143 General Physics +0909.0067 Functional Analysis +0910.2319 Dynamical Systems +0910.2547 Dynamical Systems +0911.3462 Applications +1001.3351 Symplectic Geometry +1002.4307 Chaotic Dynamics +1003.4508 Mesoscale and Nanoscale Physics +1003.5756 Lattice +1007.3598 Superconductivity +1008.1954 Numerical Analysis +1008.2839 Dynamical Systems +1008.4012 Soft Condensed Matter +1009.0342 Algebraic Topology +1009.1368 Number Theory +1009.4249 Metric Geometry +1010.4961 +1010.5542 Probability +1012.4160 General Physics +1101.5176 Symplectic Geometry +1102.3238 Soft Condensed Matter +1102.4953 Mesoscale and Nanoscale Physics +1103.3948 Theory +1103.4409 Superconductivity +1105.2133 Probability +1105.2755 Optimization and Control +1105.2983 +1105.3334 Metric Geometry +1105.5967 Classical Analysis and ODEs +1105.6055 Theory +1106.2514 Instrumentation and Methods for Astrophysics +1106.2515 Earth and Planetary Astrophysics +1106.5388 General Physics +1107.4764 Category Theory +1107.5495 Number Theory +1108.1445 Logic +1108.3028 Strongly Correlated Electrons +1108.5220 +1110.1084 Theory +1110.2029 Astrophysics of Galaxies +1110.3764 Theory +1110.6097 Information Retrieval +1111.1643 Mesoscale and Nanoscale Physics +1111.5463 Functional Analysis +1111.5547 Statistical Mechanics +1111.6258 Commutative Algebra +1111.7092 High Energy Astrophysical Phenomena +1112.3223 Atomic Physics +1112.3551 Phenomenology +1112.5064 +1201.1787 Number Theory +1202.0724 Phenomenology +1202.1122 Symplectic Geometry +1202.1240 Experiment +1202.1702 Biological Physics +1202.5839 Disordered Systems and Neural Networks +1202.5918 Machine Learning +1203.0782 High Energy Astrophysical Phenomena +1203.1018 Solar and Stellar Astrophysics +1204.0196 Representation Theory +1204.0347 Logic in Computer Science +1204.1422 +1204.1697 Strongly Correlated Electrons +1204.2021 Data Structures and Algorithms +1204.2169 Physics and Society +1204.2434 Superconductivity +1204.6573 +1204.6592 Phenomenology +1205.0410 Theory +1205.1482 Optimization and Control +1205.1716 Classical Analysis and ODEs +1205.3083 Other Condensed Matter +1205.3486 Solar and Stellar Astrophysics +1205.3736 +1205.4200 Disordered Systems and Neural Networks +1205.4838 Lattice +1205.5733 +1205.6628 Phenomenology +1206.0965 +1206.1330 +1206.1455 High Energy Astrophysical Phenomena +1206.2652 Phenomenology +1206.2930 Phenomenology +1206.3436 +1206.5653 Theory +1206.5993 General Physics +1207.0680 Optimization and Control +1207.1243 +1207.4315 Statistical Mechanics +1207.5018 Phenomenology +1207.5441 Differential Geometry +1207.6181 Materials Science +1208.0067 +1208.0103 +1208.2344 Combinatorics +1208.3677 High Energy Astrophysical Phenomena +1208.3911 +1208.5323 Strongly Correlated Electrons +1209.0166 Dynamical Systems +1209.0280 Phenomenology +1209.0450 Phenomenology +1209.0478 Phenomenology +1209.0911 Information Retrieval +1209.0915 Strongly Correlated Electrons +1209.2027 Statistical Mechanics +1209.2069 Probability +1209.2187 Materials Science +1209.3110 +1209.3643 Mesoscale and Nanoscale Physics +1209.4252 Phenomenology +1209.4253 Statistical Mechanics +1209.4272 Theory +1209.5140 Strongly Correlated Electrons +1209.6018 Strongly Correlated Electrons +1209.6552 Classical Analysis and ODEs +1210.1130 +1210.1939 Pattern Formation and Solitons +1210.2650 +1210.3281 Mesoscale and Nanoscale Physics +1210.5535 Mesoscale and Nanoscale Physics +1210.8159 Theory +1210.8378 Systems and Control +1211.0142 Lattice +1211.0816 Combinatorics +1211.0869 Numerical Analysis +1211.0986 Data Structures and Algorithms +1211.0995 Data Structures and Algorithms +1211.1001 Computational Complexity +1211.1002 Data Structures and Algorithms +1211.1027 Soft Condensed Matter +1211.1030 Analysis of PDEs +1211.1035 Computers and Society +1211.1036 Digital Libraries +1211.1039 Theory +1211.1043 Learning +1211.1045 Cosmology and Nongalactic Astrophysics +1211.1048 Functional Analysis +1211.1049 Optics +1211.1055 Operator Algebras +1211.1056 Data Structures and Algorithms +1211.1058 Numerical Analysis +1211.1061 Complex Variables +1211.1062 +1211.1067 +1211.1069 Numerical Analysis +1211.1070 Fluid Dynamics +1211.1074 Algebraic Geometry +1211.1075 Solar and Stellar Astrophysics +1211.1099 +1211.1102 Rings and Algebras +1211.1104 Algebraic Geometry +1211.1107 Information Retrieval +1211.1109 Computational Complexity +1211.1118 Physics Education +1211.1121 Optimization and Control +1211.1123 Optimization and Control +1211.1127 Computer Vision and Pattern Recognition +1211.1128 Algebraic Geometry +1211.1131 +1211.1136 Software Engineering +1211.1139 Optimization and Control +1211.1140 Physics and Society +1211.1145 +1211.1146 Multiagent Systems +1211.1154 Digital Libraries +1211.1157 Phenomenology +1211.1159 Lattice +1211.1168 +1211.1170 +1211.1172 Software Engineering +1211.1184 Computation +1211.1185 Phenomenology +1211.1186 Phenomenology +1211.1188 Physics and Society +1211.1190 Other Quantitative Biology +1211.1192 Analysis of PDEs +1211.1197 Statistics Theory +1211.1204 Methodology +1211.1208 Methodology +1211.1210 Classical Physics +1211.1212 Methodology +1211.1223 Astrophysics of Galaxies +1211.1227 General Physics +1211.1233 Number Theory +1211.1236 Atomic Physics +1211.1242 Other Computer Science +1211.1244 +1211.1249 Functional Analysis +1211.1250 Information Theory +1211.1252 Computer Vision and Pattern Recognition +1211.1255 Learning +1211.1259 Materials Science +1211.1262 Algebraic Geometry +1211.1264 +1211.1265 Computer Vision and Pattern Recognition +1211.1266 Solar and Stellar Astrophysics +1211.1269 Soft Condensed Matter +1211.1276 Logic in Computer Science +1211.1277 Algebraic Geometry +1211.1279 Distributed, Parallel, and Cluster Computing +1211.1280 Earth and Planetary Astrophysics +1211.1282 Lattice +1211.1284 Probability +1211.1286 Portfolio Management +1211.1288 Lattice +1211.1289 Atmospheric and Oceanic Physics +1211.1292 Superconductivity +1211.1295 Analysis of PDEs +1211.1298 Superconductivity +1211.1301 Formal Languages and Automata Theory +1211.1303 Biomolecules +1211.1307 Cosmology and Nongalactic Astrophysics +1211.1308 Computational Physics +1211.1315 Functional Analysis +1211.1316 Commutative Algebra +1211.1319 Data Structures and Algorithms +1211.1322 Theory +1211.1325 Computer Science and Game Theory +1211.1329 Solar and Stellar Astrophysics +1211.1330 Algebraic Geometry +1211.1332 Robotics +1211.1333 Astrophysics of Galaxies +1211.1334 Group Theory +1211.1335 Robotics +1211.1336 Mesoscale and Nanoscale Physics +1211.1337 Methodology +1211.1339 Robotics +1211.1340 Data Structures and Algorithms +1211.1349 Probability +1211.1351 Functional Analysis +1211.1358 Lattice +1211.1361 Physics and Society +1211.1363 Geometric Topology +1211.1365 Applications +1211.1368 Combinatorics +1211.1371 Superconductivity +cond-mat/0411077 Disordered Systems and Neural Networks +math/0410231 Dynamical Systems +math/0502235 Dynamical Systems +math/0502236 Dynamical Systems +math/0508302 Dynamical Systems +0912.2762 Algebraic Geometry +1002.5007 Algebraic Topology +1005.1424 Rings and Algebras +1009.5894 Information Theory +1012.3695 +1102.5271 Materials Science +1103.1174 Number Theory +1103.3362 Combinatorics +1106.3490 Discrete Mathematics +1109.1190 Combinatorics +1109.6311 Statistical Mechanics +1110.6334 +1111.5771 +1112.0136 Information Theory +1201.3336 +1202.1354 Information Theory +1202.2319 Information Theory +1202.2710 Theory +1202.3853 +1202.4129 Optimization and Control +1203.2046 Commutative Algebra +1203.3082 Applications +1204.0246 Experiment +1204.0732 Mesoscale and Nanoscale Physics +1204.0959 Theory +1204.1780 Theory +1204.1860 Optics +1204.2015 +1204.3532 Cosmology and Nongalactic Astrophysics +1204.4233 Materials Science +1204.5230 Differential Geometry +1204.5627 +1205.0497 +1205.3113 Theory +1205.3338 Strongly Correlated Electrons +1205.5191 Quantum Gases +1205.5381 Atomic Physics +1206.0716 +1206.1024 Statistics Theory +1206.2472 Fluid Dynamics +1206.4054 High Energy Astrophysical Phenomena +1206.6781 Theory +1206.7049 Mesoscale and Nanoscale Physics +1206.7054 Atomic Physics +1207.0421 Discrete Mathematics +1207.1615 Populations and Evolution +1207.2530 Networking and Internet Architecture +1207.7163 +1208.0665 Cosmology and Nongalactic Astrophysics +1208.1683 Phenomenology +1208.1696 Instrumentation and Methods for Astrophysics +1208.2012 Functional Analysis +1208.2526 Atomic Physics +1208.2782 Information Retrieval +1208.3702 Fluid Dynamics +1208.3765 Earth and Planetary Astrophysics +1208.4764 Theory +1208.5279 High Energy Astrophysical Phenomena +1208.5428 +1209.0572 Data Structures and Algorithms +1209.2840 Mesoscale and Nanoscale Physics +1209.3242 Phenomenology +1209.3397 Dynamical Systems +1209.3409 Differential Geometry +1209.4042 +1209.5461 Theory +1209.5508 Materials Science +1209.6392 Optics +1210.4431 +1210.4466 Quantum Gases +1210.4633 Algebraic Geometry +1210.7275 Materials Science +1210.7409 Optics +1210.7640 Statistics Theory +1210.7921 Phenomenology +1210.8036 High Energy Astrophysical Phenomena +1210.8175 Numerical Analysis +1210.8274 Accelerator Physics +1210.8424 Combinatorics +1211.0001 Mesoscale and Nanoscale Physics +1211.0007 Cosmology and Nongalactic Astrophysics +1211.0011 Cosmology and Nongalactic Astrophysics +1211.0013 Cosmology and Nongalactic Astrophysics +1211.0015 +1211.0021 +1211.0024 Classical Analysis and ODEs +1211.0026 Instrumentation and Methods for Astrophysics +1211.0028 Social and Information Networks +1211.0032 Computation +1211.0037 Theory +1211.0038 +1211.0040 Materials Science +1211.0041 Instrumentation and Methods for Astrophysics +1211.0043 General Topology +1211.0044 Number Theory +1211.0047 Functional Analysis +1211.0052 Probability +1211.0055 Computer Vision and Pattern Recognition +1211.0058 +1211.0059 Computational Geometry +1211.0063 Analysis of PDEs +1211.0065 General Mathematics +1211.0074 Computation and Language +1211.0086 Cryptography and Security +1211.0087 Methodology +1211.0090 Cryptography and Security +1211.0091 Combinatorics +1211.0093 +1211.0099 Number Theory +1211.0101 Atomic Physics +1211.0106 Complex Variables +1211.0114 Superconductivity +1211.0126 Lattice +1211.0130 Statistics Theory +1211.0136 Analysis of PDEs +1211.0137 Cosmology and Nongalactic Astrophysics +1211.0143 Astrophysics of Galaxies +1211.0144 Theory +1211.0145 +1211.0152 Methodology +1211.0154 Cosmology and Nongalactic Astrophysics +1211.0157 Distributed, Parallel, and Cluster Computing +1211.0158 Computation +1211.0159 Materials Science +1211.0167 Geometric Topology +1211.0168 Combinatorics +1211.0169 Social and Information Networks +1211.0172 +1211.0173 Superconductivity +1211.0175 Computational Geometry +1211.0176 Databases +1211.0177 Data Structures and Algorithms +1211.0178 History and Overview +1211.0179 Materials Science +1211.0182 Analysis of PDEs +1211.0193 Atmospheric and Oceanic Physics +1211.0200 +1211.0201 Symplectic Geometry +1211.0203 Algebraic Geometry +1211.0210 Learning +1211.0212 Experiment +1211.0216 Classical Analysis and ODEs +1211.0223 Solar and Stellar Astrophysics +1211.0224 Databases +1211.0225 Risk Management +1211.0227 Plasma Physics +1211.0228 Instrumentation and Methods for Astrophysics +1211.0229 Functional Analysis +1211.0230 Optics +1211.0235 Distributed, Parallel, and Cluster Computing +1211.0236 Statistical Mechanics +1211.0237 Lattice +1211.0238 Materials Science +1211.0243 Data Structures and Algorithms +1211.0244 Functional Analysis +1211.0247 +1211.0263 Fluid Dynamics +1211.0266 Statistics Theory +1211.0268 +0705.3245 +0809.4324 History and Overview +0810.3028 General Topology +0904.1950 Probability +0907.3241 Disordered Systems and Neural Networks +0908.0724 Cosmology and Nongalactic Astrophysics +0910.0472 +0910.5138 Mesoscale and Nanoscale Physics +1001.0823 Geometric Topology +1004.3957 Strongly Correlated Electrons +1006.5609 Theory +1007.0422 Probability +1007.0512 Information Theory +1008.0281 Theory +1008.3965 Strongly Correlated Electrons +1009.1341 Distributed, Parallel, and Cluster Computing +1009.2232 Functional Analysis +1009.3824 Optimization and Control +1010.3465 Algebraic Geometry +1012.2293 Quantum Gases +1012.4639 Theory +1101.0945 Portfolio Management +1101.4845 Quantum Gases +1102.0447 High Energy Astrophysical Phenomena +1102.5072 Commutative Algebra +1102.5307 Theory +1102.5555 Discrete Mathematics +1103.3892 Number Theory +1103.4531 Probability +1104.0381 Statistical Mechanics +1104.1904 +1104.2851 +1105.1644 Astrophysics of Galaxies +1105.3295 Molecular Networks +1106.1676 Cosmology and Nongalactic Astrophysics +1106.3882 Cosmology and Nongalactic Astrophysics +1106.4774 +1107.1013 Theory +1107.2155 Instrumentation and Methods for Astrophysics +1107.2268 Mesoscale and Nanoscale Physics +1107.2572 Atomic Physics +1107.4009 Physics and Society +1107.4122 +1107.5002 +1108.0853 Statistics Theory +1108.2949 Combinatorics +1108.4995 Combinatorics +1108.5222 +1109.0095 Cosmology and Nongalactic Astrophysics +1109.0656 Lattice +1109.1099 Probability +1109.1949 Information Theory +1109.4911 General Physics +1109.5171 Operator Algebras +1109.6636 +1110.1945 +1110.2038 Materials Science +1110.2690 Lattice +1110.3263 Other Condensed Matter +1110.3480 Combinatorics +1110.4069 Information Theory +1110.5214 Soft Condensed Matter +1110.5223 Quantitative Methods +1110.5389 Cosmology and Nongalactic Astrophysics +1110.5609 Adaptation and Self-Organizing Systems +1110.6151 Phenomenology +1110.6329 Fluid Dynamics +1111.0203 +1111.4186 Commutative Algebra +1111.4368 Numerical Analysis +1111.5122 Astrophysics of Galaxies +1111.5353 Materials Science +1111.6036 Atomic Physics +1112.0446 +1112.1193 Biological Physics +1112.2913 Phenomenology +1112.3138 Mesoscale and Nanoscale Physics +1112.3701 Cosmology and Nongalactic Astrophysics +1201.0139 Superconductivity +1201.0810 Soft Condensed Matter +1201.1349 Group Theory +1201.3350 Combinatorics +1201.3453 Solar and Stellar Astrophysics +1201.4255 Representation Theory +1201.5207 Superconductivity +1201.6102 +1202.0415 Astrophysics of Galaxies +1202.0678 Neural and Evolutionary Computing +1202.0723 Software Engineering +1202.1053 Differential Geometry +1202.1300 Populations and Evolution +1202.1390 Instrumentation and Methods for Astrophysics +1202.1533 Accelerator Physics +1202.1535 Solar and Stellar Astrophysics +1202.1541 Representation Theory +1202.1542 Combinatorics +1202.1544 General Topology +1202.1545 Accelerator Physics +1202.1549 General Physics +1202.1550 Accelerator Physics +1202.1551 Accelerator Physics +1202.1552 Other Computer Science +1202.1554 +1202.1555 Accelerator Physics +1202.1558 Learning +1202.1559 High Energy Astrophysical Phenomena +1202.1567 Computer Science and Game Theory +1202.1571 Chaotic Dynamics +1202.1572 Information Theory +1202.1577 General Physics +1202.1581 Populations and Evolution +1202.1585 Computer Vision and Pattern Recognition +1202.1587 Computer Vision and Pattern Recognition +1202.1591 Instrumentation and Detectors +1202.1593 High Energy Astrophysical Phenomena +1202.1594 High Energy Astrophysical Phenomena +1202.1596 Information Theory +1202.1599 Strongly Correlated Electrons +1202.1604 Superconductivity +1202.1605 Lattice +1202.1607 Superconductivity +1202.1612 Information Theory +1202.1616 Combinatorics +1202.1619 General Topology +1202.1620 Commutative Algebra +1202.1621 Mesoscale and Nanoscale Physics +1202.1623 Statistical Finance +1202.1626 Materials Science +1202.1628 Functional Analysis +1202.1629 Phenomenology +1202.1631 Quantum Algebra +1202.1638 Analysis of PDEs +1202.1641 Logic in Computer Science +1202.1643 Instrumentation and Methods for Astrophysics +1202.1644 Information Theory +1202.1647 K-Theory and Homology +1202.1649 Number Theory +1202.1651 Instrumentation and Methods for Astrophysics +1202.1656 Software Engineering +1202.1661 Methodology +1202.1663 Cryptography and Security +1202.1664 Networking and Internet Architecture +1202.1668 General Topology +1202.1669 Complex Variables +1202.1670 Number Theory +1202.1673 Representation Theory +1202.1677 Networking and Internet Architecture +1202.1679 Optimization and Control +1202.1680 Other Computer Science +1202.1681 High Energy Astrophysical Phenomena +1202.1682 +1202.1683 Robotics +1202.1684 Probability +1202.1685 Computer Vision and Pattern Recognition +1202.1691 Networking and Internet Architecture +1202.1692 Information Theory +1202.1694 Robotics +1202.1696 Neurons and Cognition +1202.1697 Accelerator Physics +1202.1698 Commutative Algebra +1202.1703 Accelerator Physics +1202.1709 Formal Languages and Automata Theory +1202.1710 +1202.1712 Computer Science and Game Theory +1202.1714 Representation Theory +1202.1717 Software Engineering +1202.1718 Software Engineering +1202.1719 +1202.1720 Networking and Internet Architecture +1202.1721 Analysis of PDEs +1202.1728 Soft Condensed Matter +1202.1732 High Energy Astrophysical Phenomena +1202.1733 Networking and Internet Architecture +1202.1735 Analysis of PDEs +1202.1737 Solar and Stellar Astrophysics +1202.1741 Algebraic Geometry +1202.1749 Optics +1202.1751 Analysis of PDEs +1202.1758 Solar and Stellar Astrophysics +1202.1761 Cryptography and Security +1202.1767 +1202.1774 Solar and Stellar Astrophysics +1202.1775 Probability +1202.1779 Social and Information Networks +1202.1787 Machine Learning +1202.1791 Classical Analysis and ODEs +1202.1792 Superconductivity +1202.1798 Probability +1202.1801 Information Theory +1202.1805 Dynamical Systems +1202.1806 Representation Theory +1202.1808 Multimedia +1202.1811 Classical Analysis and ODEs +1202.1813 Geometric Topology +1202.1816 Combinatorics +1202.1817 Number Theory +cond-mat/0610596 Other Condensed Matter +cond-mat/0703806 Strongly Correlated Electrons +physics/0103052 Optics +quant-ph/0211017 +quant-ph/0302127 +quant-ph/0701054 +0710.0460 Probability +0811.1439 Mesoscale and Nanoscale Physics +0901.1751 Analysis of PDEs +0902.1527 Cosmology and Nongalactic Astrophysics +0902.4668 Algebraic Geometry +0911.5428 Algebraic Geometry +1001.0605 Physics and Society +1003.5103 Mesoscale and Nanoscale Physics +1005.5156 Symplectic Geometry +1006.1636 Group Theory +1007.3804 Computational Complexity +1008.1837 Combinatorics +1009.1688 Analysis of PDEs +1010.0356 Analysis of PDEs +1102.4170 Mesoscale and Nanoscale Physics +1103.4775 Statistical Mechanics +1105.1038 +1107.0954 Category Theory +1107.2565 Analysis of PDEs +1108.5472 Networking and Internet Architecture +1109.4261 Optics +1109.4558 Plasma Physics +1110.2631 Experiment +1110.4171 Phenomenology +1110.4644 Optics +1110.4966 Algebraic Geometry +1110.5669 Combinatorics +1111.0108 Probability +1111.1657 Combinatorics +1111.2585 Theory +1111.4643 Populations and Evolution +1111.6020 +1111.6354 Cosmology and Nongalactic Astrophysics +1111.7156 Cosmology and Nongalactic Astrophysics +1112.2526 Mesoscale and Nanoscale Physics +1112.3925 Data Structures and Algorithms +1201.0060 Astrophysics of Galaxies +1201.0134 Logic +1201.1252 Plasma Physics +1201.2743 Materials Science +1201.3892 +1201.4245 Metric Geometry +1201.4248 Metric Geometry +1201.5809 +1201.6110 Algebraic Geometry +1202.1494 +1203.2756 +1203.3260 Phenomenology +1203.4508 Materials Science +1203.5130 Probability +1204.0360 Theory +1204.4920 Populations and Evolution +1204.5152 Algebraic Topology +1204.5530 +1204.6363 Mesoscale and Nanoscale Physics +1205.0367 Mesoscale and Nanoscale Physics +1205.0641 +1205.0701 Experiment +1205.1152 Soft Condensed Matter +1205.3843 Algebraic Geometry +1205.5554 Materials Science +1205.6583 Cosmology and Nongalactic Astrophysics +1205.7045 Theory +1206.0564 Materials Science +1206.0933 Materials Science +1206.2755 Strongly Correlated Electrons +1206.4113 +1206.4466 Mesoscale and Nanoscale Physics +1206.4806 +1206.5151 +1206.6932 Soft Condensed Matter +1207.0002 Cosmology and Nongalactic Astrophysics +1207.0005 Cosmology and Nongalactic Astrophysics +1207.1945 +1207.2978 +1207.4351 +1207.5611 Experiment +1207.6577 Functional Analysis +1208.0876 Theory +1208.1617 Cosmology and Nongalactic Astrophysics +1208.1656 Superconductivity +1208.1862 K-Theory and Homology +1208.2080 Computational Physics +1208.3504 Combinatorics +1208.3818 Complex Variables +1208.4512 Astrophysics of Galaxies +1208.5345 Data Structures and Algorithms +1208.5500 Commutative Algebra +1209.0808 Astrophysics of Galaxies +1209.1821 Statistical Mechanics +1209.2094 Classical Analysis and ODEs +1209.2438 Mesoscale and Nanoscale Physics +1209.3458 Cryptography and Security +1209.3730 Instrumentation and Methods for Astrophysics +1209.3764 Differential Geometry +1209.4239 Geometric Topology +1209.5167 Complex Variables +1210.2045 High Energy Astrophysical Phenomena +1210.3246 Soft Condensed Matter +1210.3653 Optics +1210.5255 Analysis of PDEs +1210.5317 +1210.5418 Optimization and Control +1210.5435 Materials Science +1210.5704 Combinatorics +1210.5750 Statistics Theory +1210.5755 Information Theory +1210.5866 Probability +1210.5967 Combinatorics +1210.5999 Combinatorics +1210.6000 Risk Management +1210.6026 +1210.6031 Cosmology and Nongalactic Astrophysics +1210.6050 Solar and Stellar Astrophysics +1210.6052 Social and Information Networks +1210.6053 Phenomenology +1210.6054 Superconductivity +1210.6059 Computation +1210.6060 Functional Analysis +1210.6061 Combinatorics +1210.6064 Probability +1210.6076 Software Engineering +1210.6078 Optimization and Control +1210.6079 Algebraic Geometry +1210.6080 General Finance +1210.6082 Neural and Evolutionary Computing +1210.6083 Exactly Solvable and Integrable Systems +1210.6085 Number Theory +1210.6086 Solar and Stellar Astrophysics +1210.6087 Representation Theory +1210.6088 General Mathematics +1210.6092 Optics +1210.6101 Mesoscale and Nanoscale Physics +1210.6102 Instrumentation and Detectors +1210.6110 Software Engineering +1210.6111 Logic in Computer Science +1210.6113 Information Retrieval +1210.6114 Programming Languages +1210.6115 Software Engineering +1210.6116 Statistical Mechanics +1210.6118 Data Structures and Algorithms +1210.6119 Neural and Evolutionary Computing +1210.6120 Analysis of PDEs +1210.6122 Performance +1210.6123 Cryptography and Security +1210.6128 Artificial Intelligence +1210.6132 High Energy Astrophysical Phenomena +1210.6134 Networking and Internet Architecture +1210.6137 +1210.6140 Theory +1210.6142 Physics and Society +1210.6144 Differential Geometry +1210.6146 Chaotic Dynamics +1210.6147 +1210.6148 +1210.6150 Combinatorics +1210.6151 Phenomenology +1210.6152 Representation Theory +1210.6155 Materials Science +1210.6157 Computer Vision and Pattern Recognition +1210.6160 Representation Theory +1210.6161 Combinatorics +1210.6167 +1210.6169 Astrophysics of Galaxies +1210.6170 Machine Learning +1210.6172 +1210.6175 +1210.6190 Probability +1210.6191 +1210.6192 Computer Vision and Pattern Recognition +1210.6193 Probability +1210.6194 Probability +1210.6197 Computer Science and Game Theory +1210.6199 Phenomenology +1210.6200 Strongly Correlated Electrons +1210.6201 General Finance +1210.6202 Combinatorics +1210.6203 Metric Geometry +1210.6205 Dynamical Systems +1210.6209 Artificial Intelligence +1210.6220 Quantum Gases +1210.6225 Soft Condensed Matter +1210.6226 Solar and Stellar Astrophysics +1210.6228 Metric Geometry +1210.6229 Soft Condensed Matter +1210.6231 Other Computer Science +1210.6232 Instrumentation and Methods for Astrophysics +1210.6233 Strongly Correlated Electrons +1210.6234 Fluid Dynamics +1210.6236 Classical Analysis and ODEs +1210.6240 Solar and Stellar Astrophysics +1210.6241 Information Theory +1210.6242 Databases +1210.6244 Soft Condensed Matter +1210.6254 Algebraic Geometry +1210.6257 +1210.6260 Applications +1210.6261 Theory +1210.6262 Phenomenology +1210.6266 Numerical Analysis +1210.6267 Information Theory +1210.6269 Methodology +1210.6270 Analysis of PDEs +1210.6274 Analysis of PDEs +1210.6279 Cosmology and Nongalactic Astrophysics +1210.6281 Phenomenology +1210.6286 Distributed, Parallel, and Cluster Computing +1210.6288 Logic +1210.6293 Mathematical Software +1210.6301 History and Philosophy of Physics +1210.6305 Algebraic Geometry +1210.6315 Analysis of PDEs +1210.6317 Neurons and Cognition +1210.6323 Algebraic Geometry +1210.6325 Dynamical Systems +1210.6330 Analysis of PDEs +1210.6334 Information Theory +1210.6336 Probability +1210.6338 Hardware Architecture +1210.6340 Combinatorics +1210.6341 Information Theory +1210.6342 Combinatorics +1210.6343 Combinatorics +math/0304030 Number Theory +math/0612585 Probability +0801.2826 Operator Algebras +0805.4007 Computer Science and Game Theory +0902.0916 Theory +0906.5078 +0907.2280 Operator Algebras +0908.0508 +0909.3764 Probability +1002.1799 Statistical Mechanics +1002.2890 Probability +1004.1899 Strongly Correlated Electrons +1004.5511 Dynamical Systems +1006.0727 Molecular Networks +1006.1713 Probability +1006.5365 General Physics +1007.2924 Computational Complexity +1007.4239 Optics +1008.4507 Dynamical Systems +1009.3270 Cosmology and Nongalactic Astrophysics +1009.3479 General Finance +1010.2228 Chaotic Dynamics +1010.4473 Optics +1011.0259 Materials Science +1011.0433 Cosmology and Nongalactic Astrophysics +1011.2363 Mesoscale and Nanoscale Physics +1012.0669 +1012.2821 Analysis of PDEs +1012.4206 Mesoscale and Nanoscale Physics +1102.1274 Dynamical Systems +1103.0022 Other Condensed Matter +1104.0259 Strongly Correlated Electrons +1104.1149 Phenomenology +1104.1158 +1105.2179 Materials Science +1105.2460 Statistical Mechanics +1105.2781 +1105.5869 Quantum Gases +1106.1731 Cryptography and Security +1106.2839 Combinatorics +1106.4194 Probability +1106.5092 Operator Algebras +1106.5434 Category Theory +1107.0373 Materials Science +1107.0608 Atmospheric and Oceanic Physics +1107.5668 Solar and Stellar Astrophysics +1108.0042 Quantum Gases +1108.0278 Strongly Correlated Electrons +1108.1541 Chaotic Dynamics +1108.2222 Cosmology and Nongalactic Astrophysics +1108.3121 +1108.4799 Statistical Mechanics +1108.5389 Theory +1108.5524 +1108.6164 Classical Physics +1109.3404 +1109.4005 +1109.4509 Strongly Correlated Electrons +1109.4610 +1109.5699 Solar and Stellar Astrophysics +1110.0416 +1110.0749 Materials Science +1110.0908 Lattice +1110.1748 +1110.2050 Classical Physics +1110.5157 Strongly Correlated Electrons +1111.0033 Physics and Society +1111.0148 Mesoscale and Nanoscale Physics +1111.1555 Information Theory +1111.2494 Statistical Mechanics +1111.3289 +1111.4570 Social and Information Networks +1111.5457 Theory +1111.6166 Strongly Correlated Electrons +1111.6217 Quantitative Methods +1111.6801 Probability +1112.1522 Algebraic Geometry +1112.3741 Computer Science and Game Theory +1112.3946 Information Theory +1112.4142 Quantum Gases +1112.4341 Chemical Physics +1112.5301 Strongly Correlated Electrons +1112.5632 Combinatorics +1201.0167 Applications +1201.0324 +1201.0326 +1201.0424 Networking and Internet Architecture +1201.0953 Superconductivity +1201.0959 Machine Learning +1201.1014 Chemical Physics +1201.1020 Superconductivity +1201.1022 Analysis of PDEs +1201.1024 Cosmology and Nongalactic Astrophysics +1201.1025 Classical Analysis and ODEs +1201.1026 Quantum Algebra +1201.1028 Differential Geometry +1201.1034 Materials Science +1201.1038 Networking and Internet Architecture +1201.1039 Combinatorics +1201.1046 Solar and Stellar Astrophysics +1201.1053 Materials Science +1201.1056 Operator Algebras +1201.1059 Materials Science +1201.1065 Information Theory +1201.1068 Instrumentation and Methods for Astrophysics +1201.1070 Superconductivity +1201.1071 Statistics Theory +1201.1074 Earth and Planetary Astrophysics +1201.1076 Statistics Theory +1201.1081 Computers and Society +1201.1084 Mesoscale and Nanoscale Physics +1201.1086 Functional Analysis +1201.1087 Optics +1201.1088 High Energy Astrophysical Phenomena +1201.1089 Statistics Theory +1201.1093 +1201.1094 Molecular Networks +1201.1096 Information Theory +1201.1099 Metric Geometry +1201.1100 Analysis of PDEs +1201.1101 Programming Languages +1201.1105 Mesoscale and Nanoscale Physics +1201.1106 Phenomenology +1201.1109 Analysis of PDEs +1201.1112 Instrumentation and Detectors +1201.1113 Optics +1201.1119 Computational Complexity +1201.1120 Computational Complexity +1201.1121 Logic in Computer Science +1201.1122 Computational Complexity +1201.1124 Statistics Theory +1201.1126 Soft Condensed Matter +1201.1130 Algebraic Geometry +1201.1133 Algebraic Geometry +1201.1140 Statistics Theory +1201.1141 Methodology +1201.1143 Soft Condensed Matter +1201.1145 Exactly Solvable and Integrable Systems +1201.1146 Statistics Theory +1201.1150 +1201.1151 Applications +1201.1152 Pattern Formation and Solitons +1201.1155 Statistics Theory +1201.1157 Data Structures and Algorithms +1201.1161 General Topology +1201.1162 Differential Geometry +1201.1163 +1201.1164 Mesoscale and Nanoscale Physics +1201.1166 Statistics Theory +1201.1171 Statistics Theory +1201.1172 +1201.1175 Networking and Internet Architecture +1201.1177 Symbolic Computation +1201.1180 Theory +1201.1181 Soft Condensed Matter +1201.1184 Instrumentation and Methods for Astrophysics +1201.1185 Chemical Physics +1201.1187 Phenomenology +1201.1189 Geophysics +1201.1192 Computation and Language +1201.1198 Computational Geometry +1201.1199 Probability +1201.1200 Other Computer Science +1201.1201 Geophysics +1201.1202 Discrete Mathematics +1201.1203 Exactly Solvable and Integrable Systems +1201.1204 Other Computer Science +1201.1207 Combinatorics +1201.1210 Number Theory +1201.1211 Fluid Dynamics +1201.1216 Computer Vision and Pattern Recognition +1201.1218 Classical Physics +1201.1221 Computer Vision and Pattern Recognition +1201.1226 Probability +1201.1229 Number Theory +1201.1231 Phenomenology +1201.1240 +1201.1255 +1201.1261 Instrumentation and Methods for Astrophysics +1201.1262 Social and Information Networks +1201.1277 Programming Languages +1201.1278 Information Theory +1201.1279 Cosmology and Nongalactic Astrophysics +1201.1281 Instrumentation and Methods for Astrophysics +astro-ph/0310338 +hep-ph/0111163 Phenomenology +math/0110163 K-Theory and Homology +math/0703803 Geometric Topology +physics/0603053 General Physics +0705.1793 Optics +0804.4583 Mesoscale and Nanoscale Physics +0806.3495 Atomic Physics +0808.3592 Atomic Physics +0808.4120 Mesoscale and Nanoscale Physics +0811.4018 Atomic Physics +0903.2529 Phenomenology +0903.4502 Data Analysis, Statistics and Probability +0907.2601 Information Theory +0907.3835 Solar and Stellar Astrophysics +0908.2076 +0909.4575 Cryptography and Security +0911.3179 Analysis of PDEs +0911.4546 Methodology +0912.1286 +1001.2892 Information Theory +1001.3813 Genomics +1003.2302 Fluid Dynamics +1003.3290 Mesoscale and Nanoscale Physics +1004.1986 Numerical Analysis +1007.2292 +1007.5125 Materials Science +1009.3626 Cryptography and Security +1010.2420 Computational Complexity +1011.2642 Combinatorics +1012.0593 Atomic Physics +1012.3023 Social and Information Networks +1103.2735 +1105.1354 +1105.2381 Phenomenology +1105.4716 Functional Analysis +1105.4792 Theory +1105.4929 +1106.0469 +1106.0703 Logic +1106.1344 Phenomenology +1106.1492 Atomic Physics +1106.4345 Quantum Gases +1107.1358 Computational Complexity +1107.2468 Fluid Dynamics +1108.1282 Disordered Systems and Neural Networks +1108.3296 Pattern Formation and Solitons +1108.3371 Strongly Correlated Electrons +1108.3872 Strongly Correlated Electrons +1108.4444 Soft Condensed Matter +1108.4485 +1108.5817 Materials Science +1108.6319 Combinatorics +1109.1901 Materials Science +1109.3589 Mesoscale and Nanoscale Physics +1109.3755 Quantum Gases +1109.4174 Statistics Theory +1109.4671 Combinatorics +1109.4676 Combinatorics +1110.1058 Probability +1110.1204 Quantum Gases +1110.3575 Strongly Correlated Electrons +1110.3950 Number Theory +1110.4649 Theory +1110.4734 Quantum Gases +1110.6735 +1111.0011 Mesoscale and Nanoscale Physics +1111.0484 +1111.0906 Superconductivity +1111.1165 Cosmology and Nongalactic Astrophysics +1111.1579 +1111.4121 Computational Complexity +1111.5571 History and Overview +1111.6668 Strongly Correlated Electrons +1112.0190 +1112.0200 +1112.0252 +1112.0552 Mesoscale and Nanoscale Physics +1112.1971 Cosmology and Nongalactic Astrophysics +1112.2776 Mesoscale and Nanoscale Physics +1112.6210 Information Theory +1201.0383 Combinatorics +1201.1836 Statistical Mechanics +1201.3172 Human-Computer Interaction +1201.3729 Spectral Theory +1201.4183 Distributed, Parallel, and Cluster Computing +1201.4439 Logic +1202.0042 Discrete Mathematics +1202.0185 Cosmology and Nongalactic Astrophysics +1202.0394 +1202.0421 Numerical Analysis +1202.0454 +1202.0553 Cosmology and Nongalactic Astrophysics +1202.0556 Symplectic Geometry +1202.0559 Optics +1202.0562 Accelerator Physics +1202.0563 Accelerator Physics +1202.0567 Digital Libraries +1202.0572 Materials Science +1202.0574 Materials Science +1202.0575 Materials Science +1202.0581 Cosmology and Nongalactic Astrophysics +1202.0582 Networking and Internet Architecture +1202.0585 Instrumentation and Detectors +1202.0588 Superconductivity +1202.0589 Information Theory +1202.0590 Superconductivity +1202.0591 Solar and Stellar Astrophysics +1202.0598 Cryptography and Security +1202.0602 Analysis of PDEs +1202.0609 Computer Vision and Pattern Recognition +1202.0611 Optimization and Control +1202.0612 Distributed, Parallel, and Cluster Computing +1202.0613 Hardware Architecture +1202.0615 Mesoscale and Nanoscale Physics +1202.0616 Distributed, Parallel, and Cluster Computing +1202.0619 Probability +1202.0624 Instrumentation and Detectors +1202.0625 Methodology +1202.0627 Methodology +1202.0633 Methodology +1202.0639 Lattice +1202.0643 Fluid Dynamics +1202.0647 Mesoscale and Nanoscale Physics +1202.0652 Software Engineering +1202.0655 Information Theory +1202.0657 Analysis of PDEs +1202.0662 Statistical Mechanics +1202.0663 Combinatorics +1202.0664 Computational Complexity +1202.0665 +1202.0670 Combinatorics +1202.0686 Solar and Stellar Astrophysics +1202.0689 Solar and Stellar Astrophysics +1202.0691 Accelerator Physics +1202.0696 Statistics Theory +1202.0699 +1202.0702 Information Theory +1202.0705 +1202.0710 Fluid Dynamics +1202.0715 Superconductivity +1202.0717 Cosmology and Nongalactic Astrophysics +1202.0720 History and Philosophy of Physics +1202.0730 Phenomenology +1202.0733 Experiment +1202.0734 Phenomenology +1202.0739 General Physics +1202.0745 Commutative Algebra +1202.0746 Rings and Algebras +1202.0750 Commutative Algebra +1202.0751 Accelerator Physics +1202.0752 Accelerator Physics +1202.0754 Information Theory +1202.0755 Adaptation and Self-Organizing Systems +1202.0757 Functional Analysis +1202.0758 Phenomenology +1202.0764 Accelerator Physics +1202.0773 +1202.0777 Materials Science +1202.0784 Networking and Internet Architecture +1202.0785 Optimization and Control +1202.0787 Solar and Stellar Astrophysics +1202.0788 Software Engineering +1202.0791 Astrophysics of Galaxies +1202.0805 Accelerator Physics +1202.0809 Materials Science +1202.0810 Accelerator Physics +1202.0811 Accelerator Physics +1202.0817 Analysis of PDEs +cs/0703018 Logic in Computer Science +hep-ph/0603077 Phenomenology +math/0411138 Combinatorics +math/0603651 Logic +0705.0938 Combinatorics +0707.0392 Experiment +0710.1187 Statistical Mechanics +0809.0009 Multiagent Systems +0809.0724 Combinatorics +0901.0589 Algebraic Topology +0902.3265 Combinatorics +0905.0396 Popular Physics +0909.2133 K-Theory and Homology +0910.4774 Combinatorics +0911.4162 Combinatorics +1001.1495 Classical Analysis and ODEs +1001.2638 Number Theory +1001.3800 Differential Geometry +1004.1948 Optics +1004.2794 General Physics +1006.0519 Populations and Evolution +1006.0920 Geometric Topology +1006.1619 Cosmology and Nongalactic Astrophysics +1006.5731 Data Analysis, Statistics and Probability +1010.2854 Quantum Gases +1010.3125 +1010.4650 Superconductivity +1010.5615 Commutative Algebra +1010.6190 Quantum Gases +1010.6235 Soft Condensed Matter +1012.3119 Statistical Mechanics +1012.3239 Optics +1101.2194 Group Theory +1101.4466 Theory +1103.3389 Optics +1104.0696 Representation Theory +1104.1614 Strongly Correlated Electrons +1104.4495 Optics +1105.1574 +1105.4373 Astrophysics of Galaxies +1105.4553 Algebraic Geometry +1106.0490 Analysis of PDEs +1107.4365 Representation Theory +1108.2425 Statistical Mechanics +1108.4763 Soft Condensed Matter +1109.4336 Theory +1110.2094 +1110.6386 Mesoscale and Nanoscale Physics +1110.6524 Quantum Gases +1111.0675 Mesoscale and Nanoscale Physics +1111.1983 Theory +1111.3379 Logic +1111.3743 +1111.3880 Combinatorics +1111.5830 Phenomenology +1112.0207 Differential Geometry +1112.2644 +1112.4707 Optics +1201.0404 Computer Science and Game Theory +1201.2200 Phenomenology +1201.3040 Commutative Algebra +1201.3998 Cosmology and Nongalactic Astrophysics +1201.5425 Superconductivity +1201.6673 Logic +1202.0674 Atomic Physics +1202.0897 +1202.0946 +1202.1357 Mesoscale and Nanoscale Physics +1202.1525 Solar and Stellar Astrophysics +1202.1914 Digital Libraries +1202.2930 Mesoscale and Nanoscale Physics +1202.3333 Geometric Topology +1202.3434 Plasma Physics +1202.3658 Quantum Gases +1202.4791 Optics +1202.5824 Plasma Physics +1202.6206 Statistical Mechanics +1202.6250 Statistical Mechanics +1203.0086 Phenomenology +1203.2284 Mesoscale and Nanoscale Physics +1203.2347 +1203.2477 Statistical Mechanics +1203.3391 +1203.4033 Mesoscale and Nanoscale Physics +1203.5271 Solar and Stellar Astrophysics +1203.5344 Optics +1203.6138 Optics +1203.6570 Plasma Physics +1204.0574 Neurons and Cognition +1204.1515 Populations and Evolution +1204.2222 Operator Algebras +1204.3515 Materials Science +1204.4756 Materials Science +1204.5049 Functional Analysis +1204.5502 Phenomenology +1204.6200 Soft Condensed Matter +1205.1022 Geometric Topology +1205.3054 Artificial Intelligence +1205.3269 +1205.3340 +1205.3506 Mathematical Software +1205.3566 +1205.3697 Analysis of PDEs +1205.3863 Information Theory +1205.3874 Instrumentation and Methods for Astrophysics +1205.3927 Atomic Physics +1205.4028 Cosmology and Nongalactic Astrophysics +1205.4044 Complex Variables +1205.4048 Instrumentation and Methods for Astrophysics +1205.4049 Networking and Internet Architecture +1205.4051 Superconductivity +1205.4053 Experiment +1205.4056 Functional Analysis +1205.4059 Differential Geometry +1205.4061 Solar and Stellar Astrophysics +1205.4062 Computation +1205.4063 Number Theory +1205.4064 Superconductivity +1205.4070 Information Theory +1205.4076 Phenomenology +1205.4077 Optics +1205.4087 Analysis of PDEs +1205.4088 Number Theory +1205.4089 Pricing of Securities +1205.4091 Number Theory +1205.4096 Dynamical Systems +1205.4098 +1205.4104 Computer Science and Game Theory +1205.4108 Atomic Physics +1205.4120 Computation +1205.4124 Computational Complexity +1205.4127 Chaotic Dynamics +1205.4132 Materials Science +1205.4134 Other Quantitative Biology +1205.4138 Information Retrieval +1205.4139 Information Theory +1205.4145 Number Theory +1205.4146 Statistics Theory +1205.4147 Algebraic Geometry +1205.4148 Information Theory +1205.4149 Materials Science +1205.4153 Experiment +1205.4155 Dynamical Systems +1205.4160 Dynamical Systems +1205.4165 Soft Condensed Matter +1205.4166 Number Theory +1205.4168 Information Theory +1205.4170 Logic +1205.4173 Disordered Systems and Neural Networks +1205.4177 Logic +1205.4178 Logic +1205.4180 Materials Science +1205.4183 Complex Variables +1205.4190 Algebraic Geometry +1205.4195 Materials Science +1205.4196 Geometric Topology +1205.4198 +1205.4203 +1205.4212 Mathematical Software +1205.4216 Analysis of PDEs +1205.4221 Algebraic Geometry +1205.4223 Lattice +cond-mat/0503686 Statistical Mechanics +cond-mat/0604204 Superconductivity +math/0410615 Geometric Topology +math/0608374 Algebraic Topology +0802.1304 +0809.4317 +0912.0299 Group Theory +1004.3664 Theory +1004.4073 +1006.1507 Number Theory +1008.4158 Cosmology and Nongalactic Astrophysics +1008.5093 +1010.1507 Algebraic Topology +1011.6086 Machine Learning +1101.5008 Quantitative Methods +1102.5278 Cosmology and Nongalactic Astrophysics +1103.0157 Analysis of PDEs +1103.3657 Combinatorics +1104.2744 Logic +1104.5297 Probability +1106.3138 +1106.4511 Theory +1109.0283 Theory +1109.1302 Databases +1109.2821 Group Theory +1109.4389 Machine Learning +1109.5158 Geometric Topology +1109.5394 Algebraic Topology +1110.5110 Algebraic Geometry +1111.0581 Soft Condensed Matter +1112.0375 Commutative Algebra +1112.2859 Disordered Systems and Neural Networks +1112.4348 Algebraic Geometry +1112.6270 Cosmology and Nongalactic Astrophysics +1201.0179 Analysis of PDEs +1201.0695 Phenomenology +1201.1770 Theory +1201.2380 Theory +1201.3971 Algebraic Geometry +1201.4697 Theory +1201.6223 General Mathematics +1201.6265 High Energy Astrophysical Phenomena +1202.0597 Atomic Physics +1202.1153 Disordered Systems and Neural Networks +1202.3315 Mesoscale and Nanoscale Physics +1202.4531 Chemical Physics +1203.0010 Quantum Gases +1203.0389 Logic +1203.2264 Theory +1203.3172 Experiment +1203.3325 Quantum Gases +1203.3374 Optics +1203.5035 Plasma Physics +1203.5541 Strongly Correlated Electrons +1203.5982 Materials Science +1203.6600 Statistical Mechanics +1204.0654 Soft Condensed Matter +1204.2110 Statistical Mechanics +1204.4060 Plasma Physics +1204.5329 +1205.0785 Analysis of PDEs +1205.1907 Optimization and Control +1205.4115 Statistical Mechanics +1205.4783 Algebraic Geometry +1205.4979 Analysis of PDEs +1205.5969 +1206.0826 Astrophysics of Galaxies +1206.1494 Information Retrieval +1206.2670 +1206.3615 Mesoscale and Nanoscale Physics +1206.6675 Phenomenology +1206.7034 Lattice +1207.1622 Plasma Physics +1207.1810 Atomic Physics +1207.3252 Phenomenology +1207.3374 Numerical Analysis +1207.4504 Functional Analysis +1207.5761 Number Theory +1207.6485 Earth and Planetary Astrophysics +1208.1078 Mesoscale and Nanoscale Physics +1208.1826 Dynamical Systems +1208.2328 Superconductivity +1208.3476 Theory +1209.0750 Theory +1209.0827 Analysis of PDEs +1209.2392 +1209.2573 Theory +1209.2794 Databases +1209.2877 Astrophysics of Galaxies +1209.2939 Algebraic Geometry +1209.3026 Digital Libraries +1209.3029 Populations and Evolution +1209.3032 +1209.3034 +1209.3035 Experiment +1209.3040 Theory +1209.3043 High Energy Astrophysical Phenomena +1209.3045 Symplectic Geometry +1209.3046 Solar and Stellar Astrophysics +1209.3047 Information Theory +1209.3048 Differential Geometry +1209.3050 Distributed, Parallel, and Cluster Computing +1209.3052 Computer Science and Game Theory +1209.3053 Networking and Internet Architecture +1209.3054 Databases +1209.3055 Theory +1209.3056 Learning +1209.3057 Strongly Correlated Electrons +1209.3061 Cryptography and Security +1209.3067 +1209.3071 Chemical Physics +1209.3074 Analysis of PDEs +1209.3078 +1209.3079 Machine Learning +1209.3084 Probability +1209.3089 Software Engineering +1209.3091 Mesoscale and Nanoscale Physics +1209.3093 Networking and Internet Architecture +1209.3099 Hardware Architecture +1209.3105 Information Theory +1209.3106 Phenomenology +1209.3108 Materials Science +1209.3109 +1209.3113 Computer Vision and Pattern Recognition +1209.3117 Computers and Society +1209.3119 Geometric Topology +1209.3123 Algebraic Geometry +1209.3126 Information Retrieval +1209.3130 Geometric Topology +1209.3132 Mesoscale and Nanoscale Physics +1209.3133 Atomic Physics +1209.3146 +1209.3149 Algebraic Geometry +1209.3150 Neural and Evolutionary Computing +1209.3151 Chemical Physics +1209.3152 Experiment +1209.3155 Human-Computer Interaction +1209.3156 Instrumentation and Methods for Astrophysics +1209.3157 Group Theory +1209.3159 Soft Condensed Matter +1209.3160 Algebraic Geometry +1209.3162 Materials Science +1209.3164 Rings and Algebras +1209.3166 Pattern Formation and Solitons +1209.3169 +1209.3171 Superconductivity +1209.3180 Probability +1209.3183 Phenomenology +1209.3187 Algebraic Geometry +1209.3188 Astrophysics of Galaxies +1209.3189 Tissues and Organs +1209.3190 Combinatorics +1209.3193 Solar and Stellar Astrophysics +1209.3196 Cosmology and Nongalactic Astrophysics +1209.3197 Differential Geometry +1209.3199 Solar and Stellar Astrophysics +1209.3201 Combinatorics +1209.3202 Differential Geometry +1209.3209 Dynamical Systems +1209.3211 Numerical Analysis +1209.3214 Combinatorics +1209.3216 Combinatorics +1209.3217 Dynamical Systems +1209.3220 Combinatorics +1209.3222 Optics +1209.3223 Optics +1209.3230 Machine Learning +1209.3232 Materials Science +1209.3234 Computer Science and Game Theory +1209.3235 Materials Science +1209.3236 Combinatorics +1209.3238 Spectral Theory +1209.3243 Differential Geometry +1209.3244 Quantum Gases +1209.3248 Metric Geometry +1209.3249 Dynamical Systems +1209.3252 +1209.3253 Performance +1209.3257 Classical Physics +1209.3258 Materials Science +1209.3260 General Physics +1209.3262 +1209.3263 +1209.3272 Instrumentation and Methods for Astrophysics +1209.3275 Discrete Mathematics +1209.3282 Logic +1209.3285 +1209.3291 Representation Theory +1209.3294 Representation Theory +1209.3300 Information Theory +math/0107142 Algebraic Geometry +math/0109155 Algebraic Geometry +math/0201008 Algebraic Geometry +math/0510112 Group Theory +0708.3918 Chaotic Dynamics +0804.0546 Combinatorics +0804.4779 Phenomenology +0805.0352 Combinatorics +0807.2374 Chaotic Dynamics +0809.4748 Differential Geometry +0812.0218 Mesoscale and Nanoscale Physics +0901.1227 Cosmology and Nongalactic Astrophysics +0903.5083 Phenomenology +0906.3550 Statistical Mechanics +0906.4699 Theory +0907.5237 High Energy Astrophysical Phenomena +0909.4788 +0911.1002 Cosmology and Nongalactic Astrophysics +0912.1044 Theory +1001.0047 Mesoscale and Nanoscale Physics +1001.3628 Combinatorics +1002.1556 Mesoscale and Nanoscale Physics +1002.1579 Mesoscale and Nanoscale Physics +1003.0038 +1003.1994 Category Theory +1004.2157 Functional Analysis +1004.2725 Statistical Mechanics +1004.3439 Dynamical Systems +1004.4052 Mesoscale and Nanoscale Physics +1004.4324 Mesoscale and Nanoscale Physics +1005.0922 Materials Science +1005.1279 Mesoscale and Nanoscale Physics +1006.5053 Combinatorics +1007.1212 Analysis of PDEs +1007.2408 Mesoscale and Nanoscale Physics +1007.2509 Disordered Systems and Neural Networks +1007.4593 Solar and Stellar Astrophysics +1007.5282 Data Analysis, Statistics and Probability +1008.0667 +1009.1128 Optimization and Control +1010.4249 Data Structures and Algorithms +1010.4632 Differential Geometry +1010.4826 Number Theory +1011.0380 +1011.1271 Strongly Correlated Electrons +1011.5057 +1101.1921 +1101.3736 Rings and Algebras +1102.2991 Phenomenology +1102.4552 Algebraic Geometry +1102.5219 Classical Analysis and ODEs +1105.0026 Differential Geometry +1105.1374 Strongly Correlated Electrons +1105.4292 Methodology +1106.0638 Complex Variables +1106.1105 Human-Computer Interaction +1106.1744 +1106.6143 Chemical Physics +1107.3518 Dynamical Systems +1107.4976 Methodology +1107.5431 Cosmology and Nongalactic Astrophysics +1107.6035 +1108.0928 Statistical Mechanics +1108.0985 +1108.1055 Data Structures and Algorithms +1108.2714 Number Theory +1108.3106 +1109.4594 Mesoscale and Nanoscale Physics +1109.4728 Mesoscale and Nanoscale Physics +1109.4769 +1109.4818 Theory +1109.6725 Statistical Mechanics +1110.0938 Data Structures and Algorithms +1110.2648 Cosmology and Nongalactic Astrophysics +1110.2649 Cosmology and Nongalactic Astrophysics +1110.5715 Other Condensed Matter +1110.5964 Mesoscale and Nanoscale Physics +1110.6610 Statistical Mechanics +1111.0327 +1111.1116 Rings and Algebras +1111.1419 Soft Condensed Matter +1111.1708 +1111.1860 Superconductivity +1111.2075 Complex Variables +1111.2103 High Energy Astrophysical Phenomena +1111.3993 +1111.5543 Optics +1111.6922 Computer Science and Game Theory +1112.1735 +1112.1999 Number Theory +1112.2207 Phenomenology +1112.3251 Soft Condensed Matter +1112.4144 Atomic Physics +1112.4261 Learning +1112.4567 Solar and Stellar Astrophysics +1112.4971 Strongly Correlated Electrons +1112.6195 Strongly Correlated Electrons +1112.6204 Mesoscale and Nanoscale Physics +1201.1418 +1201.3340 +1201.4477 Information Theory +1201.5504 +1202.0542 Algebraic Geometry +1202.0716 +1202.2993 +1202.4339 Methodology +1202.5560 General Physics +1202.6025 Number Theory +1203.1030 Number Theory +1203.2182 Theory +1203.2659 Combinatorics +1203.2673 Biological Physics +1203.2824 Cryptography and Security +1203.2892 +1203.2899 Statistics Theory +1203.2900 Logic in Computer Science +1203.2939 Geometric Topology +1203.2942 Analysis of PDEs +1203.2943 Representation Theory +1203.2944 Materials Science +1203.2951 +1203.2952 Instrumentation and Detectors +1203.2967 Functional Analysis +1203.2968 Functional Analysis +1203.2972 Probability +1203.2973 Computer Science and Game Theory +1203.2981 Atmospheric and Oceanic Physics +1203.2999 Other Computer Science +1203.3002 Optimization and Control +1203.3003 Materials Science +1203.3006 Optics +1203.3007 +1203.3008 Optics +1203.3009 Rings and Algebras +1203.3010 Representation Theory +1203.3013 Distributed, Parallel, and Cluster Computing +1203.3014 Statistics Theory +1203.3015 +1203.3023 Computation and Language +1203.3026 Mesoscale and Nanoscale Physics +1203.3030 Combinatorics +1203.3032 Commutative Algebra +1203.3036 Statistics Theory +1203.3040 Other Condensed Matter +1203.3051 Artificial Intelligence +1203.3053 Chaotic Dynamics +1203.3056 Astrophysics of Galaxies +1203.3059 Mathematical Software +1203.3063 Statistics Theory +1203.3067 +1203.3074 Classical Analysis and ODEs +1203.3085 Software Engineering +1203.3090 History and Philosophy of Physics +1203.3092 Distributed, Parallel, and Cluster Computing +1203.3095 Chemical Physics +1203.3097 Neural and Evolutionary Computing +1203.3098 Distributed, Parallel, and Cluster Computing +1203.3099 Neural and Evolutionary Computing +1203.3103 Cryptography and Security +1203.3106 Statistics Theory +1203.3114 Computer Vision and Pattern Recognition +1203.3121 Probability +1203.3125 Other Computer Science +1203.3133 Probability +1203.3135 Statistics Theory +1203.3137 Chaotic Dynamics +1203.3139 General Physics +1203.3145 Dynamical Systems +1203.3149 Analysis of PDEs +1203.3151 Soft Condensed Matter +1203.3152 Chaotic Dynamics +1203.3156 Theory +1203.3157 Combinatorics +1203.3163 Numerical Analysis +1203.3164 Numerical Analysis +1203.3165 Numerical Analysis +1203.3170 Computer Vision and Pattern Recognition +1203.3174 Algebraic Geometry +1203.3178 Information Theory +1203.3182 Optimization and Control +1203.3183 Quantum Gases +1203.3188 Risk Management +1203.3190 Group Theory +gr-qc/0207070 +hep-ph/0007057 Phenomenology +hep-ph/0204054 Phenomenology +hep-th/0012028 Theory +hep-th/9211106 Theory +hep-th/9301071 Theory +hep-th/9405181 Theory +hep-th/9505117 Theory +math/0008220 Combinatorics +math/0008221 Number Theory +math/0008243 Combinatorics +math/0110009 Metric Geometry +math/0110010 Metric Geometry +math/0307321 Group Theory +math/0403263 Metric Geometry +math/0408174 Metric Geometry +math/0511460 Group Theory +math/0607446 Metric Geometry +math/0607447 Metric Geometry +nlin/0609017 Chaotic Dynamics +physics/0612153 General Physics +0808.1138 Combinatorics +0808.2213 Functional Analysis +1004.0055 Theory +1004.1496 +1005.1491 +1005.1780 +1007.3034 Analysis of PDEs +1008.0509 Algebraic Geometry +1008.3469 +1008.4615 Combinatorics +1009.5612 Computational Physics +1010.1450 Solar and Stellar Astrophysics +1010.4062 Disordered Systems and Neural Networks +1010.5181 Numerical Analysis +1010.5242 Cosmology and Nongalactic Astrophysics +1012.1887 Rings and Algebras +1101.4529 Biomolecules +1102.0497 K-Theory and Homology +1102.5710 +1103.3965 Computation +1104.0446 Information Theory +1105.1537 Theory +1105.1674 Algebraic Geometry +1105.2473 Strongly Correlated Electrons +1105.3036 Mesoscale and Nanoscale Physics +1106.5506 Strongly Correlated Electrons +1107.0865 Statistics Theory +1107.1318 Optics +1107.1343 Phenomenology +1107.1749 Dynamical Systems +1108.1535 Information Theory +1108.4306 +1108.5138 +1108.5987 +1109.0406 Superconductivity +1109.3660 Phenomenology +1109.5328 Analysis of PDEs +1110.0294 +1110.0528 Instrumentation and Methods for Astrophysics +1110.3221 Differential Geometry +1110.3713 Probability +1110.4817 Phenomenology +1111.0106 Mesoscale and Nanoscale Physics +1111.2116 Lattice +1111.3258 Phenomenology +1111.3441 Phenomenology +1111.4891 Solar and Stellar Astrophysics +1111.4892 Mesoscale and Nanoscale Physics +1111.5209 Materials Science +1111.5309 Superconductivity +1111.6279 Algebraic Geometry +1111.6474 Strongly Correlated Electrons +1112.0731 +1112.1051 Statistical Finance +1112.3562 Strongly Correlated Electrons +1112.4299 Quantum Gases +1112.5149 +1201.0704 Soft Condensed Matter +1201.1955 Disordered Systems and Neural Networks +1201.2505 Mesoscale and Nanoscale Physics +1201.3213 Theory +1201.5842 Dynamical Systems +1201.6431 Strongly Correlated Electrons +1202.0004 Cosmology and Nongalactic Astrophysics +1202.3549 Discrete Mathematics +1202.4687 Number Theory +1202.5041 Data Analysis, Statistics and Probability +1202.6079 Artificial Intelligence +1202.6609 Artificial Intelligence +1203.0475 Cosmology and Nongalactic Astrophysics +1203.0652 Social and Information Networks +1203.3004 Algebraic Topology +1203.4552 Atomic Physics +1203.4882 Information Theory +1204.0012 Theory +1204.0351 Cosmology and Nongalactic Astrophysics +1204.1174 Optics +1204.1353 Optimization and Control +1204.1910 Systems and Control +1204.2368 Representation Theory +1204.2821 +1204.3000 +1204.3574 Instrumentation and Methods for Astrophysics +1204.3748 Applications +1204.3776 Commutative Algebra +1204.3838 Artificial Intelligence +1204.3890 Social and Information Networks +1204.3891 Social and Information Networks +1204.3892 History and Philosophy of Physics +1204.3895 Theory +1204.3901 Solar and Stellar Astrophysics +1204.3912 +1204.3915 Statistics Theory +1204.3918 Artificial Intelligence +1204.3919 Astrophysics of Galaxies +1204.3920 Networking and Internet Architecture +1204.3921 Computers and Society +1204.3922 Probability +1204.3926 Rings and Algebras +1204.3928 Neurons and Cognition +1204.3929 Mesoscale and Nanoscale Physics +1204.3930 Numerical Analysis +1204.3935 Mesoscale and Nanoscale Physics +1204.3936 Mesoscale and Nanoscale Physics +1204.3937 Classical Analysis and ODEs +1204.3938 Analysis of PDEs +1204.3939 Social and Information Networks +1204.3942 Machine Learning +1204.3944 Plasma Physics +1204.3955 Earth and Planetary Astrophysics +1204.3960 Quantum Gases +1204.3962 Commutative Algebra +1204.3963 Classical Analysis and ODEs +1204.3965 Machine Learning +1204.3966 Populations and Evolution +1204.3968 Computer Vision and Pattern Recognition +1204.3969 +1204.3973 Theory +1204.3974 Quantum Gases +1204.3975 Optics +1204.3982 Optimization and Control +1204.3983 Chemical Physics +1204.3984 Chemical Physics +1204.3987 Materials Science +1204.3991 General Physics +1204.3994 Numerical Analysis +1204.3996 Numerical Analysis +1204.4007 Number Theory +1204.4009 Atomic Physics +1204.4010 Combinatorics +1204.4013 Combinatorics +1204.4014 Combinatorics +1204.4015 Physics and Society +1204.4018 Combinatorics +1204.4024 Materials Science +1204.4025 Pricing of Securities +1204.4026 Complex Variables +1204.4031 Computer Science and Game Theory +1204.4033 Algebraic Topology +1204.4043 Probability +1204.4044 Distributed, Parallel, and Cluster Computing +1204.4046 Biomolecules +1204.4049 Differential Geometry +1204.4051 Artificial Intelligence +1204.4052 Operator Algebras +1204.4054 Discrete Mathematics +1204.4057 Differential Geometry +1204.4063 Materials Science +1204.4071 Social and Information Networks +1204.4072 Numerical Analysis +1204.4073 Information Theory +1204.4079 Fluid Dynamics +1204.4082 Computer Science and Game Theory +1204.4083 Commutative Algebra +1204.4084 Data Analysis, Statistics and Probability +1204.4086 Distributed, Parallel, and Cluster Computing +1204.4090 Rings and Algebras +1204.4092 Computers and Society +1204.4096 Cosmology and Nongalactic Astrophysics +1204.4099 +1204.4102 Quantum Gases +1204.4103 Algebraic Geometry +1204.4111 Computer Science and Game Theory +1204.4116 Social and Information Networks +1204.4126 Strongly Correlated Electrons +1204.4127 Materials Science +1204.4132 Statistical Mechanics +1204.4140 Methodology +1204.4144 Numerical Analysis +1204.4145 Learning +1204.4148 Computation +1204.4151 Information Theory +1204.4153 Numerical Analysis +1204.4158 Number Theory +1204.4170 Statistical Mechanics +1204.4173 Logic +math/0004092 Quantum Algebra +math/0208088 Quantum Algebra +q-alg/9610012 Quantum Algebra +q-alg/9708031 Quantum Algebra +quant-ph/0509086 +0704.1476 Theory +0707.2731 Other Condensed Matter +0708.0486 +0711.1208 Functional Analysis +0809.1590 Learning +0810.3647 +0902.2588 Classical Analysis and ODEs +0903.1174 Classical Analysis and ODEs +0903.1468 Machine Learning +0904.1101 Classical Analysis and ODEs +0904.2044 High Energy Astrophysical Phenomena +0904.4027 Classical Analysis and ODEs +0905.2787 Classical Analysis and ODEs +0910.2409 +1001.0665 Superconductivity +1001.1496 Classical Analysis and ODEs +1002.3856 Classical Analysis and ODEs +1002.4538 Phenomenology +1004.2613 Number Theory +1005.0103 Molecular Networks +1005.2236 Solar and Stellar Astrophysics +1005.2343 Differential Geometry +1005.2401 Differential Geometry +1005.3233 Statistics Theory +1007.1074 Optics +1007.1412 Operator Algebras +1007.1618 Optics +1007.1771 Statistics Theory +1007.3481 +1008.3075 Functional Analysis +1008.4942 Probability +1008.5155 Mesoscale and Nanoscale Physics +1009.0594 High Energy Astrophysical Phenomena +1009.2861 Combinatorics +1009.3500 Cosmology and Nongalactic Astrophysics +1009.3769 Chaotic Dynamics +1009.4217 Statistics Theory +1009.5238 Algebraic Geometry +1011.1505 Phenomenology +1011.1686 Geometric Topology +1011.5846 +1012.3671 Optics +1012.3939 High Energy Astrophysical Phenomena +1101.4296 Combinatorics +1101.5700 +1102.4479 Probability +1102.5064 +1102.5165 Representation Theory +1102.5560 +1103.0992 Commutative Algebra +1103.2378 Chemical Physics +1103.2686 +1103.3425 Mesoscale and Nanoscale Physics +1104.2282 History and Overview +1104.5078 Probability +1104.5561 High Energy Astrophysical Phenomena +1105.0347 Plasma Physics +1105.3470 Cosmology and Nongalactic Astrophysics +1105.4566 Probability +1105.5537 Quantum Gases +1106.3768 +1107.0120 Optics +1107.1736 Machine Learning +1107.2629 +1107.2662 +1107.3752 +1108.2706 Algebraic Geometry +1108.3476 Learning +1108.3520 Methodology +1108.4673 Solar and Stellar Astrophysics +1108.4867 Rings and Algebras +1108.5746 Tissues and Organs +1108.6120 Mesoscale and Nanoscale Physics +1109.0629 Medical Physics +1109.1846 Cosmology and Nongalactic Astrophysics +1109.4754 Probability +1109.6487 Analysis of PDEs +1109.6567 Statistical Mechanics +1110.0046 Analysis of PDEs +1110.1969 Mesoscale and Nanoscale Physics +1110.2750 +1110.3967 Optimization and Control +1110.5998 Biological Physics +1111.0748 +1111.1143 +1111.1265 +1111.1597 Materials Science +1111.2135 Cosmology and Nongalactic Astrophysics +1111.3401 Phenomenology +1111.4357 Soft Condensed Matter +1111.4569 Soft Condensed Matter +1112.0458 Representation Theory +1112.0834 Materials Science +1112.1295 Combinatorics +1112.1712 Solar and Stellar Astrophysics +1112.1961 +1112.3322 Populations and Evolution +1112.6023 Dynamical Systems +1201.0545 Fluid Dynamics +1201.2926 Symplectic Geometry +1201.2955 Optics +1201.5429 Exactly Solvable and Integrable Systems +1201.6170 Analysis of PDEs +1202.0738 Algebraic Geometry +1202.1821 Chemical Physics +1202.4333 Combinatorics +1202.4416 Computational Physics +1202.5675 Data Structures and Algorithms +1202.6018 Lattice +1202.6300 Mesoscale and Nanoscale Physics +1202.6626 Mesoscale and Nanoscale Physics +1203.0490 High Energy Astrophysical Phenomena +1203.0620 Number Theory +1203.2176 Operator Algebras +1203.5621 Theory +1203.6351 Theory +1204.1247 Complex Variables +1204.1966 Soft Condensed Matter +1204.2136 Data Structures and Algorithms +1204.2212 Mesoscale and Nanoscale Physics +1204.2314 Phenomenology +1204.2927 Information Theory +1204.2949 Quantum Gases +1204.4907 +1204.4911 +1204.5862 Phenomenology +1204.6390 Phenomenology +1204.6542 Classical Analysis and ODEs +1205.0486 +1205.0670 Solar and Stellar Astrophysics +1205.0720 +1205.0830 Statistical Mechanics +1205.1845 Phenomenology +1205.2705 Mesoscale and Nanoscale Physics +1205.3119 +1205.3137 Computer Vision and Pattern Recognition +1205.3552 General Topology +1205.4962 Theory +1205.4998 Theory +1206.0399 Information Theory +1206.1696 Theory +1206.2093 Strongly Correlated Electrons +1206.2098 Mesoscale and Nanoscale Physics +1206.2382 Theory +1206.2934 Computational Finance +1206.3753 Mesoscale and Nanoscale Physics +1206.3896 Mesoscale and Nanoscale Physics +1206.4156 Disordered Systems and Neural Networks +1206.4450 +1206.6281 Networking and Internet Architecture +1206.6949 Phenomenology +1207.0665 Networking and Internet Architecture +1207.1231 Complex Variables +1207.1686 Solar and Stellar Astrophysics +1207.2130 Fluid Dynamics +1207.2394 Classical Analysis and ODEs +1207.7045 Phenomenology +1208.0567 Mesoscale and Nanoscale Physics +1208.1194 Quantum Gases +1208.1440 General Mathematics +1208.1582 Strongly Correlated Electrons +1208.1650 Dynamical Systems +1208.1875 Complex Variables +1208.2189 Atomic Physics +1208.2263 Optimization and Control +1208.2343 Probability +1208.3104 Combinatorics +1208.3344 Instrumentation and Methods for Astrophysics +1208.3667 Social and Information Networks +1208.3672 Numerical Analysis +1208.3673 Materials Science +1208.3681 Computational Engineering, Finance, and Science +1208.3684 Superconductivity +1208.3689 Learning +1208.3690 Logic +1208.3694 Classical Analysis and ODEs +1208.3695 Spectral Theory +1208.3699 Functional Analysis +1208.3703 +1208.3704 Chemical Physics +1208.3705 Classical Analysis and ODEs +1208.3707 Classical Analysis and ODEs +1208.3709 Probability +1208.3711 Optics +1208.3714 Differential Geometry +1208.3720 Statistical Mechanics +1208.3722 Solar and Stellar Astrophysics +1208.3725 Functional Analysis +1208.3730 Cryptography and Security +1208.3735 Dynamical Systems +1208.3736 Astrophysics of Galaxies +1208.3739 Other Computer Science +1208.3743 Materials Science +1208.3745 Materials Science +1208.3746 Materials Science +1208.3747 Data Structures and Algorithms +1208.3753 Phenomenology +1208.3754 Instrumentation and Methods for Astrophysics +1208.3759 General Topology +1208.3762 Mesoscale and Nanoscale Physics +1208.3764 Accelerator Physics +1208.3766 Neurons and Cognition +1208.3769 Networking and Internet Architecture +1208.3770 Methodology +1208.3771 Cryptography and Security +1208.3772 Cryptography and Security +1208.3773 Distributed, Parallel, and Cluster Computing +1208.3774 Information Retrieval +1208.3775 +1208.3778 Algebraic Geometry +1208.3790 Cryptography and Security +1208.3792 Operator Algebras +1208.3794 Graphics +1208.3798 Data Structures and Algorithms +1208.3799 Functional Analysis +1208.3802 Artificial Intelligence +1208.3803 Strongly Correlated Electrons +1208.3807 Algebraic Geometry +1208.3808 Superconductivity +1208.3810 Operator Algebras +1208.3811 Systems and Control +1208.3812 Databases +1208.3813 Instrumentation and Detectors +1208.3815 Systems and Control +1208.3817 Spectral Theory +1208.3827 Representation Theory +1208.3830 Optimization and Control +1208.3836 Software Engineering +1208.3837 Materials Science +1208.3840 Networking and Internet Architecture +1208.3841 +1208.3847 Tissues and Organs +1208.3849 Computational Engineering, Finance, and Science +1208.3850 Computational Engineering, Finance, and Science +1208.3852 Computational Engineering, Finance, and Science +1208.3853 Computational Engineering, Finance, and Science +1208.3854 Computational Engineering, Finance, and Science +1208.3855 Computational Engineering, Finance, and Science +1208.3856 Computational Engineering, Finance, and Science +1208.3857 Systems and Control +1208.3858 Logic in Computer Science +1208.3859 Cryptography and Security +1208.3870 Solar and Stellar Astrophysics +1208.3871 Networking and Internet Architecture +1208.3874 Data Structures and Algorithms +1208.3875 Experiment +1208.3876 Databases +1208.3882 Distributed, Parallel, and Cluster Computing +1208.3884 Group Theory +1208.3886 Theory +1208.3887 Software Engineering +1208.3890 Software Engineering +1208.3892 Combinatorics +1208.3893 General Physics +1208.3905 +1208.3914 Experiment +1208.3915 Combinatorics +1208.3916 Optics +1208.3920 Statistics Theory +1208.3923 Strongly Correlated Electrons +1208.3924 Classical Analysis and ODEs +1208.3929 Numerical Analysis +1208.3932 Statistical Mechanics +1208.3933 Distributed, Parallel, and Cluster Computing +1208.3936 Geophysics +1208.3938 Algebraic Topology +1208.3939 Computer Science and Game Theory +1208.3943 Learning +1208.3945 +1208.3950 Biological Physics +1208.3952 Information Retrieval +1208.3959 Analysis of PDEs +1208.3966 Information Theory +1208.3967 Rings and Algebras +1208.3972 Materials Science +1208.3974 Mesoscale and Nanoscale Physics +1208.3975 Dynamical Systems +1208.3976 Computer Science and Game Theory +1208.3981 Optimization and Control +1208.3982 +1208.3983 Geometric Topology +1208.3984 Information Theory +1208.3992 Group Theory +1208.3993 Earth and Planetary Astrophysics +1208.3995 Statistical Mechanics +1208.4000 Earth and Planetary Astrophysics +1208.4003 Solar and Stellar Astrophysics +1208.4004 Rings and Algebras +1208.4006 Representation Theory +1208.4008 Combinatorics +1208.4009 Neural and Evolutionary Computing +1208.4012 Instrumentation and Methods for Astrophysics +1208.4016 Databases +1208.4022 Group Theory +1208.4027 Populations and Evolution +1208.4029 Combinatorics +1208.4035 Programming Languages +1208.4037 Physics and Society +1208.4044 Strongly Correlated Electrons +1208.4053 Phenomenology +1208.4061 Soft Condensed Matter +1208.4063 Cosmology and Nongalactic Astrophysics +1208.4068 Category Theory +1208.4073 Algebraic Topology +1208.4075 Lattice +1208.4078 +1208.4079 Computation and Language +1208.4081 Systems and Control +1208.4084 Numerical Analysis +1208.4091 Physics and Society +cond-mat/0506358 Other Condensed Matter +cond-mat/0512120 Other Condensed Matter +cond-mat/0512187 Other Condensed Matter +math/0306233 Classical Analysis and ODEs +math/0408395 Probability +math/0508534 Differential Geometry +math/0511289 Metric Geometry +physics/0101003 General Physics +quant-ph/0702042 +0706.2825 +0709.2990 +0709.3473 +0808.0802 Superconductivity +0808.2859 Geometric Topology +0808.3204 Commutative Algebra +0907.0079 Statistics Theory +0907.1158 Metric Geometry +0907.4188 Classical Analysis and ODEs +0910.1514 Metric Geometry +0911.2157 Adaptation and Self-Organizing Systems +0911.5253 Metric Geometry +1001.4971 Mesoscale and Nanoscale Physics +1002.2341 Probability +1002.4527 Optimization and Control +1004.1259 Differential Geometry +1004.2467 Rings and Algebras +1005.1160 Geometric Topology +1005.1165 Classical Analysis and ODEs +1007.1751 +1009.1939 Quantum Algebra +1010.5278 Information Theory +1010.6217 Number Theory +1012.5006 Probability +1101.5556 +1102.4027 Rings and Algebras +1103.0447 Number Theory +1103.5290 Information Theory +1104.2125 +1105.5105 Probability +1105.5973 Quantum Algebra +1106.0988 +1106.4812 +1107.0183 Probability +1107.2860 Number Theory +1107.4507 Dynamical Systems +1107.5259 Number Theory +1108.0683 Mesoscale and Nanoscale Physics +1108.2839 Statistical Mechanics +1108.3280 Phenomenology +1108.3668 Representation Theory +1109.2255 Rings and Algebras +1109.4915 Theory +1109.4976 Combinatorics +1110.4450 Phenomenology +1110.4630 Theory +1110.6593 Complex Variables +1111.1082 Theory +1111.1487 +1111.2232 Strongly Correlated Electrons +1111.3494 Disordered Systems and Neural Networks +1111.5885 Logic in Computer Science +1112.3436 +1112.3973 Strongly Correlated Electrons +1112.4890 +1112.5089 Formal Languages and Automata Theory +1112.5484 Group Theory +1112.6413 Theory +1201.0145 Mesoscale and Nanoscale Physics +1201.0224 Methodology +1201.0633 Statistics Theory +1201.2825 Statistical Finance +1201.3770 +1201.4758 Biological Physics +1201.5875 Complex Variables +1202.1765 Differential Geometry +1202.1972 Atomic Physics +1202.4288 +1203.1884 Materials Science +1203.2256 Theory +1203.2504 Strongly Correlated Electrons +1203.2936 Information Theory +1203.6133 Category Theory +1203.6482 Superconductivity +1203.6803 Phenomenology +1204.2646 Cosmology and Nongalactic Astrophysics +1204.3925 Solar and Stellar Astrophysics +1204.4447 Number Theory +1205.0096 General Physics +1205.0281 Information Theory +1205.1242 Information Theory +1205.1406 Machine Learning +1205.1430 Earth and Planetary Astrophysics +1205.1453 Classical Analysis and ODEs +1205.1607 Probability +1205.1807 Mesoscale and Nanoscale Physics +1205.1813 Social and Information Networks +1205.1815 Phenomenology +1205.1820 Artificial Intelligence +1205.1823 Information Theory +1205.1828 Learning +1205.1837 Superconductivity +1205.1839 Methodology +1205.1840 Differential Geometry +1205.1842 Mesoscale and Nanoscale Physics +1205.1849 Optics +1205.1852 Representation Theory +1205.1853 Networking and Internet Architecture +1205.1854 Functional Analysis +1205.1855 Geometric Topology +1205.1857 Optics +1205.1859 Multimedia +1205.1860 Hardware Architecture +1205.1862 Numerical Analysis +1205.1863 Optimization and Control +1205.1866 Hardware Architecture +1205.1867 Networking and Internet Architecture +1205.1871 Hardware Architecture +1205.1877 Formal Languages and Automata Theory +1205.1878 Lattice +1205.1880 Computation +1205.1882 Computational Geometry +1205.1884 +1205.1886 Emerging Technologies +1205.1887 Strongly Correlated Electrons +1205.1892 Statistics Theory +1205.1896 Materials Science +1205.1899 Optics +1205.1901 Analysis of PDEs +1205.1904 Other Computer Science +1205.1913 Phenomenology +1205.1920 Statistics Theory +1205.1923 Databases +1205.1925 Learning +1205.1929 Cosmology and Nongalactic Astrophysics +1205.1931 Biological Physics +1205.1935 Numerical Analysis +1205.1937 Methodology +1205.1938 Other Computer Science +1205.1939 Data Analysis, Statistics and Probability +1205.1943 Solar and Stellar Astrophysics +1205.1944 +1205.1946 Populations and Evolution +1205.1947 Numerical Analysis +1205.1950 Statistics Theory +1205.1954 Strongly Correlated Electrons +1205.1964 Statistics Theory +1205.1970 Cosmology and Nongalactic Astrophysics +1205.1972 Mesoscale and Nanoscale Physics +1205.1975 Distributed, Parallel, and Cluster Computing +1205.1978 Complex Variables +1205.1980 Numerical Analysis +1205.1983 Statistical Mechanics +1205.1986 Computational Engineering, Finance, and Science +1205.1988 Robotics +1205.1989 Machine Learning +1205.1992 Theory +1205.1993 Chemical Physics +1205.1995 Algebraic Geometry +1205.1999 Mesoscale and Nanoscale Physics +1205.2007 Networking and Internet Architecture +1205.2009 Mesoscale and Nanoscale Physics +1205.2020 Number Theory +1205.2023 Functional Analysis +1205.2025 Functional Analysis +1205.2027 Analysis of PDEs +1205.2029 Mesoscale and Nanoscale Physics +1205.2030 Quantum Algebra +1205.2031 Computer Vision and Pattern Recognition +1205.2032 Fluid Dynamics +1205.2033 Fluid Dynamics +1205.2036 Logic +1205.2043 Differential Geometry +1205.2046 Systems and Control +1205.2048 Computational Geometry +1205.2055 Rings and Algebras +1205.2064 Instrumentation and Methods for Astrophysics +1205.2071 Classical Physics +1205.2077 Networking and Internet Architecture +astro-ph/0611333 +cond-mat/0308194 Soft Condensed Matter +cond-mat/0609445 Materials Science +0804.1576 Theory +0902.3315 +0904.3350 Algebraic Geometry +0906.1724 Theory +0908.1823 Computational Physics +0908.1824 Computational Physics +0909.4582 Algebraic Geometry +0909.4766 +0910.4953 Operator Algebras +0912.4271 Statistical Mechanics +1001.2774 Algebraic Geometry +1001.4830 Algebraic Geometry +1002.3535 Quantum Algebra +1003.1409 Optimization and Control +1005.3404 +1006.1003 Probability +1007.0601 Theory +1007.5157 Theory +1009.1195 +1009.1952 Plasma Physics +1010.0009 +1011.0668 Cosmology and Nongalactic Astrophysics +1011.6134 Computer Science and Game Theory +1012.0904 Theory +1102.5098 High Energy Astrophysical Phenomena +1103.0780 Mesoscale and Nanoscale Physics +1103.2286 +1103.4235 Algebraic Geometry +1103.5037 +1103.5522 Combinatorics +1104.0819 +1104.3607 Rings and Algebras +1105.5950 Algebraic Geometry +1106.0096 Algebraic Geometry +1106.1377 +1106.2359 Mesoscale and Nanoscale Physics +1106.6017 Optics +1107.2251 Cosmology and Nongalactic Astrophysics +1108.0316 Atomic Physics +1108.0411 Theory +1108.5795 Theory +1109.0086 Databases +1109.0739 Algebraic Geometry +1109.1357 Superconductivity +1109.2014 Instrumentation and Detectors +1109.3865 Theory +1109.4904 +1110.0408 +1110.2781 Theory +1110.3152 Lattice +1110.3394 Strongly Correlated Electrons +1110.5525 Other Condensed Matter +1110.5888 Combinatorics +1111.1336 Cosmology and Nongalactic Astrophysics +1111.2399 Computation and Language +1111.2501 Materials Science +1111.3949 Strongly Correlated Electrons +1111.4327 Strongly Correlated Electrons +1111.5131 Chaotic Dynamics +1111.5708 Physics and Society +1111.6300 Probability +1111.6778 Quantum Gases +1112.0437 +1112.1736 Disordered Systems and Neural Networks +1112.5438 Phenomenology +1201.0582 Atomic Physics +1201.4543 +1201.5032 Mesoscale and Nanoscale Physics +1201.5485 Mesoscale and Nanoscale Physics +1201.6339 Physics and Society +1202.0622 Statistical Mechanics +1202.2072 Solar and Stellar Astrophysics +1202.3380 Mesoscale and Nanoscale Physics +1202.4898 Cosmology and Nongalactic Astrophysics +1203.0199 +1203.0819 Mesoscale and Nanoscale Physics +1203.1031 Geophysics +1203.1403 Phenomenology +1203.2715 Logic +1203.3332 Disordered Systems and Neural Networks +1203.3432 Instrumentation and Detectors +1203.3758 Formal Languages and Automata Theory +1203.4271 Geometric Topology +1203.4609 Geometric Topology +1203.5141 Theory +1203.6202 Chemical Physics +1203.6243 Systems and Control +1203.6346 Computer Science and Game Theory +1203.6350 Computational Physics +1203.6369 Materials Science +1203.6371 Combinatorics +1203.6374 Analysis of PDEs +1203.6376 Analysis of PDEs +1203.6379 Soft Condensed Matter +1203.6380 General Mathematics +1203.6389 Differential Geometry +1203.6392 +1203.6394 Instrumentation and Methods for Astrophysics +1203.6396 Information Theory +1203.6400 Databases +1203.6401 Databases +1203.6402 Databases +1203.6403 Databases +1203.6404 Databases +1203.6405 Databases +1203.6406 Databases +1203.6408 Systems and Control +1203.6426 Complex Variables +1203.6429 Metric Geometry +1203.6430 Dynamical Systems +1203.6431 Methodology +1203.6433 Numerical Analysis +1203.6439 Software Engineering +1203.6442 Optics +1203.6447 +1203.6452 Machine Learning +1203.6453 Formal Languages and Automata Theory +1203.6454 Databases +1203.6456 Materials Science +1203.6457 Solar and Stellar Astrophysics +1203.6459 Programming Languages +1203.6462 Number Theory +1203.6464 Computational Geometry +1203.6465 Genomics +1203.6467 History and Philosophy of Physics +1203.6468 Quantum Algebra +1203.6470 Materials Science +1203.6471 Solar and Stellar Astrophysics +1203.6479 Group Theory +1203.6480 Combinatorics +1203.6493 General Physics +1203.6496 Materials Science +1203.6500 Number Theory +1203.6501 Dynamical Systems +1203.6503 Algebraic Geometry +1203.6504 Geometric Topology +1203.6514 Solar and Stellar Astrophysics +1203.6515 Commutative Algebra +1203.6519 Analysis of PDEs +1203.6521 Analysis of PDEs +1203.6529 Analysis of PDEs +1203.6530 High Energy Astrophysical Phenomena +1203.6533 Earth and Planetary Astrophysics +1203.6534 Artificial Intelligence +1203.6537 Networking and Internet Architecture +1203.6540 Computational Physics +1203.6541 Number Theory +1203.6542 +1203.6547 Statistics Theory +1203.6549 Cosmology and Nongalactic Astrophysics +1203.6551 Geometric Topology +1203.6554 Probability +1203.6556 Algebraic Geometry +1203.6568 Materials Science +1203.6571 Optimization and Control +1203.6577 Optimization and Control +1203.6579 Lattice +1203.6581 Analysis of PDEs +1203.6586 Optimization and Control +1203.6588 +1203.6589 Complex Variables +1203.6593 Logic +1203.6599 Systems and Control +1203.6601 Atomic Physics +1203.6604 Combinatorics +1203.6607 Algebraic Geometry +1203.6610 Computer Science and Game Theory +1203.6618 Phenomenology +1203.6622 Cryptography and Security +1203.6624 Classical Analysis and ODEs +1203.6629 High Energy Astrophysical Phenomena +1203.6638 Theory +1203.6640 Representation Theory +cond-mat/0701195 Mesoscale and Nanoscale Physics +physics/9706034 General Physics +0707.1868 Materials Science +0810.3561 +0907.0941 Probability +0908.0275 +0910.1175 Geometric Topology +1001.4013 Probability +1002.4362 Probability +1003.1820 Analysis of PDEs +1003.2705 Group Theory +1003.4916 Representation Theory +1005.1157 Symplectic Geometry +1005.1297 Geometric Topology +1005.3207 Probability +1006.1529 Combinatorics +1007.0782 Quantum Gases +1007.4586 Computer Science and Game Theory +1011.6622 Phenomenology +1012.0277 Astrophysics of Galaxies +1012.1905 Materials Science +1103.0335 +1103.0703 Symplectic Geometry +1103.4737 +1104.2598 Phenomenology +1104.3004 Complex Variables +1104.3481 Mesoscale and Nanoscale Physics +1104.3568 Experiment +1104.3675 Complex Variables +1104.3791 Social and Information Networks +1104.4258 Probability +1104.5476 High Energy Astrophysical Phenomena +1105.0111 Analysis of PDEs +1105.2461 Distributed, Parallel, and Cluster Computing +1105.3944 Cosmology and Nongalactic Astrophysics +1106.1314 Quantum Gases +1106.1514 +1106.2431 Optics +1106.5414 Phenomenology +1107.0238 Solar and Stellar Astrophysics +1107.4761 Differential Geometry +1108.2445 Mesoscale and Nanoscale Physics +1108.3337 Mesoscale and Nanoscale Physics +1108.6193 Theory +1109.0303 Combinatorics +1109.1701 Strongly Correlated Electrons +1109.1796 +1109.3904 +1110.0621 Materials Science +1110.2157 +1110.2514 History and Philosophy of Physics +1110.6601 Phenomenology +1111.0135 Statistical Mechanics +1111.0659 +1111.4431 Representation Theory +1111.4477 Cosmology and Nongalactic Astrophysics +1111.5375 Solar and Stellar Astrophysics +1111.5610 +1111.5615 Phenomenology +1111.6848 Probability +1111.7139 Superconductivity +1112.0015 Strongly Correlated Electrons +1112.0050 Pattern Formation and Solitons +1112.0160 Mesoscale and Nanoscale Physics +1112.1186 Computer Science and Game Theory +1112.2814 Optics +1112.3141 +1112.4357 Algebraic Topology +1112.5344 +1112.5731 +1201.0341 Optimization and Control +1201.0401 Materials Science +1201.1438 Atomic Physics +1202.0736 High Energy Astrophysical Phenomena +1202.1127 Disordered Systems and Neural Networks +1202.3428 Number Theory +1202.5031 +1202.5189 +1202.6324 Phenomenology +1202.6603 Optics +1203.1224 Number Theory +1203.1240 Instrumentation and Detectors +1203.1332 Adaptation and Self-Organizing Systems +1203.1335 Computational Complexity +1203.1336 Combinatorics +1203.1340 General Topology +1203.1342 Cosmology and Nongalactic Astrophysics +1203.1349 Physics and Society +1203.1350 Symbolic Computation +1203.1362 Superconductivity +1203.1368 Probability +1203.1370 Geometric Topology +1203.1376 Information Theory +1203.1377 Differential Geometry +1203.1378 Social and Information Networks +1203.1379 Instrumentation and Methods for Astrophysics +1203.1380 Differential Geometry +1203.1385 Quantum Gases +1203.1387 Dynamical Systems +1203.1392 Programming Languages +1203.1393 Number Theory +1203.1394 Physics and Society +1203.1395 Distributed, Parallel, and Cluster Computing +1203.1398 Combinatorics +1203.1399 Probability +1203.1405 Rings and Algebras +1203.1406 Information Theory +1203.1409 Soft Condensed Matter +1203.1410 Information Theory +1203.1411 +1203.1421 Applications +1203.1422 Optimization and Control +1203.1431 Atomic Physics +1203.1437 +1203.1441 Classical Analysis and ODEs +1203.1445 +1203.1449 Commutative Algebra +1203.1455 +1203.1457 Optimization and Control +1203.1458 +1203.1461 Solar and Stellar Astrophysics +1203.1462 Classical Analysis and ODEs +1203.1466 Distributed, Parallel, and Cluster Computing +1203.1467 Geometric Topology +1203.1471 Populations and Evolution +1203.1474 Classical Analysis and ODEs +1203.1478 Analysis of PDEs +1203.1480 Classical Analysis and ODEs +1203.1482 Classical Analysis and ODEs +1203.1483 Computer Vision and Pattern Recognition +1203.1487 History and Philosophy of Physics +1203.1497 Tissues and Organs +1203.1499 Analysis of PDEs +1203.1502 Other Computer Science +1203.1503 Numerical Analysis +1203.1509 Functional Analysis +1203.1516 Soft Condensed Matter +1203.1517 Functional Analysis +1203.1522 Combinatorics +1203.1523 Solar and Stellar Astrophysics +1203.1525 Combinatorics +1203.1526 Optimization and Control +1203.1529 Solar and Stellar Astrophysics +1203.1536 Hardware Architecture +1203.1541 Geometric Topology +1203.1542 Experiment +1203.1547 Data Analysis, Statistics and Probability +1203.1549 Materials Science +1203.1552 +1203.1557 Number Theory +1203.1558 Algebraic Geometry +1203.1574 Mesoscale and Nanoscale Physics +1203.1585 Superconductivity +1203.1586 Rings and Algebras +1203.1589 Instrumentation and Methods for Astrophysics +1203.1590 Accelerator Physics +1203.1591 Geometric Topology +1203.1592 Differential Geometry +1203.1595 Cell Behavior +1203.1598 Complex Variables +1203.1599 Accelerator Physics +1203.1604 Combinatorics +1203.1606 Functional Analysis +cond-mat/0001458 Statistical Mechanics +cond-mat/0307445 Superconductivity +cond-mat/0308319 Superconductivity +cond-mat/0406725 Materials Science +cond-mat/9908301 Soft Condensed Matter +nlin/0005051 Chaotic Dynamics +quant-ph/0506255 +0808.2013 Metric Geometry +0705.3571 +0707.2038 +0709.1905 Quantum Algebra +0712.3780 Pattern Formation and Solitons +0806.3113 +0809.0888 Materials Science +0810.1240 +0810.3658 +0904.0760 General Physics +0905.3051 Strongly Correlated Electrons +0910.1188 Solar and Stellar Astrophysics +0911.0609 General Topology +1003.1024 Analysis of PDEs +1006.2607 Analysis of PDEs +1008.1348 Quantum Algebra +1009.6119 Artificial Intelligence +1010.4150 Space Physics +1010.6003 Materials Science +1011.1226 Logic +1011.3756 Differential Geometry +1012.0041 High Energy Astrophysical Phenomena +1102.3274 Theory +1104.1290 Materials Science +1104.1464 Probability +1105.1913 Atomic Physics +1105.3337 Biological Physics +1105.6285 Theory +1106.0880 Performance +1107.2187 Accelerator Physics +1107.2690 Chaotic Dynamics +1107.5281 Geometric Topology +1108.0337 Combinatorics +1108.0515 Solar and Stellar Astrophysics +1108.4356 Probability +1108.5896 Computational Physics +1109.0946 Cosmology and Nongalactic Astrophysics +1109.1306 Phenomenology +1109.1350 Materials Science +1109.1772 Complex Variables +1109.3048 Optics +1109.3228 Atomic Physics +1109.4362 Chemical Physics +1110.1511 Biological Physics +1110.1649 Quantum Gases +1110.2537 Superconductivity +1110.5806 Cosmology and Nongalactic Astrophysics +1111.1864 +1111.2704 +1111.3589 Statistical Mechanics +1111.3989 Dynamical Systems +1111.5653 Cryptography and Security +1111.5854 Logic +1111.6542 Theory +1111.6920 Astrophysics of Galaxies +1112.1487 +1112.1516 +1112.2030 Materials Science +1112.3612 Disordered Systems and Neural Networks +1112.5796 General Mathematics +1201.1090 Networking and Internet Architecture +1201.1434 Representation Theory +1201.1449 Cryptography and Security +1201.2492 Statistical Mechanics +1201.3566 Analysis of PDEs +1201.4254 Theory +1201.4552 Probability +1201.4834 Optics +1201.5575 Commutative Algebra +1201.5626 Physics and Society +1201.6678 K-Theory and Homology +1202.0474 Databases +1202.0569 Discrete Mathematics +1202.0713 Biological Physics +1202.0854 Information Theory +1202.0959 Information Theory +1202.0988 Numerical Analysis +1202.1187 Number Theory +1202.1255 Instrumentation and Detectors +1202.1275 General Physics +1202.1298 Operator Algebras +1202.1302 Probability +1202.1308 Group Theory +1202.1314 Earth and Planetary Astrophysics +1202.1317 Commutative Algebra +1202.1318 Optics +1202.1320 Lattice +1202.1321 +1202.1324 Functional Analysis +1202.1325 Information Theory +1202.1328 Materials Science +1202.1331 Combinatorics +1202.1338 Statistical Mechanics +1202.1340 Information Theory +1202.1343 Statistical Mechanics +1202.1349 Statistical Mechanics +1202.1355 Materials Science +1202.1359 Optimization and Control +1202.1360 Mesoscale and Nanoscale Physics +1202.1366 Networking and Internet Architecture +1202.1367 Social and Information Networks +1202.1373 Complex Variables +1202.1381 General Topology +1202.1382 Analysis of PDEs +1202.1385 High Energy Astrophysical Phenomena +1202.1391 Phenomenology +1202.1395 Artificial Intelligence +1202.1398 Information Theory +1202.1402 Disordered Systems and Neural Networks +1202.1409 Artificial Intelligence +1202.1411 Optimization and Control +1202.1421 Materials Science +1202.1425 Applications +1202.1427 Symplectic Geometry +1202.1428 +1202.1431 Materials Science +1202.1432 Probability +1202.1439 Experiment +1202.1443 Optimization and Control +1202.1446 Soft Condensed Matter +1202.1448 Physics and Society +1202.1449 Information Theory +1202.1456 Networking and Internet Architecture +1202.1457 +1202.1459 Optics +1202.1464 Networking and Internet Architecture +1202.1477 Lattice +1202.1483 Computer Science and Game Theory +1202.1486 Representation Theory +1202.1496 Rings and Algebras +1202.1497 Theory +1202.1498 Physics and Society +1202.1505 Phenomenology +1202.1506 History and Overview +1202.1507 Accelerator Physics +1202.1511 Complex Variables +1202.1513 General Physics +1202.1515 Geometric Topology +1202.1517 Algebraic Geometry +1202.1519 Accelerator Physics +math/0211337 Quantum Algebra +0807.2777 +0903.4445 Strongly Correlated Electrons +0908.3936 +0912.0105 Superconductivity +1004.1979 Geometric Topology +1011.1719 Differential Geometry +1011.4559 Mesoscale and Nanoscale Physics +1103.2484 Algebraic Geometry +1103.2764 Algebraic Topology +1105.3600 Physics and Society +1106.5718 High Energy Astrophysical Phenomena +1108.2000 K-Theory and Homology +1109.0433 Materials Science +1110.0911 Information Theory +1110.0933 Statistical Mechanics +1110.5112 Materials Science +1111.4205 +1112.1341 +1112.3311 Strongly Correlated Electrons +1112.3404 Probability +1112.4097 Strongly Correlated Electrons +1201.0836 Probability +1201.3860 Materials Science +1201.4177 Optics +1201.5659 Group Theory +1201.5736 Cosmology and Nongalactic Astrophysics +1201.6238 Mesoscale and Nanoscale Physics +1201.6401 Algebraic Geometry +1202.0239 Strongly Correlated Electrons +1202.4182 Theory +1203.1142 Materials Science +1203.1155 Cosmology and Nongalactic Astrophysics +1203.1165 High Energy Astrophysical Phenomena +1203.3815 Information Theory +1203.4180 Quantum Algebra +1203.4618 Number Theory +1203.5792 Theory +1204.1695 Differential Geometry +1204.2143 Strongly Correlated Electrons +1204.4553 Mesoscale and Nanoscale Physics +1204.4715 Quantum Gases +1204.5262 Chemical Physics +1205.0605 Phenomenology +1205.2351 Combinatorics +1205.3162 Cosmology and Nongalactic Astrophysics +1205.4299 Cosmology and Nongalactic Astrophysics +1205.5755 High Energy Astrophysical Phenomena +1206.0176 Phenomenology +1206.0724 Strongly Correlated Electrons +1206.0913 Functional Analysis +1206.2458 Theory +1206.2694 Other Condensed Matter +1206.2855 Theory +1206.2972 Strongly Correlated Electrons +1206.3201 Strongly Correlated Electrons +1206.3670 Quantum Gases +1206.3910 Phenomenology +1206.5501 Computational Complexity +1206.5759 Phenomenology +1206.6972 Statistical Mechanics +1207.1792 Optics +1207.2195 Experiment +1207.2197 Combinatorics +1207.2980 Optics +1207.3762 Dynamical Systems +1207.5010 Information Theory +1207.5790 Mesoscale and Nanoscale Physics +1207.6104 General Mathematics +1208.0714 Solar and Stellar Astrophysics +1208.3593 Experiment +1208.4401 Chemical Physics +1208.4416 Physics and Society +1208.4927 +1208.4983 Classical Physics +1208.5276 Data Analysis, Statistics and Probability +1208.5366 Combinatorics +1208.5492 Optics +1208.5496 Combinatorics +1208.5504 Phenomenology +1208.5509 +1208.5514 +1208.5517 Cosmology and Nongalactic Astrophysics +1208.5518 Cosmology and Nongalactic Astrophysics +1208.5521 Logic +1208.5522 Classical Analysis and ODEs +1208.5524 +1208.5525 Commutative Algebra +1208.5526 Networking and Internet Architecture +1208.5528 Networking and Internet Architecture +1208.5529 Optimization and Control +1208.5530 Functional Analysis +1208.5534 Commutative Algebra +1208.5537 Robotics +1208.5542 Distributed, Parallel, and Cluster Computing +1208.5546 Materials Science +1208.5549 Strongly Correlated Electrons +1208.5553 Materials Science +1208.5555 Differential Geometry +1208.5556 Information Retrieval +1208.5557 Cryptography and Security +1208.5558 Cryptography and Security +1208.5561 Functional Analysis +1208.5565 Materials Science +1208.5567 Materials Science +1208.5568 Differential Geometry +1208.5569 Networking and Internet Architecture +1208.5571 Cryptography and Security +1208.5572 Algebraic Geometry +1208.5575 Optics +1208.5576 Chaotic Dynamics +1208.5579 Rings and Algebras +1208.5584 Statistics Theory +1208.5585 Logic +1208.5586 Biological Physics +1208.5587 Earth and Planetary Astrophysics +1208.5590 Number Theory +1208.5595 Computation +1208.5597 Other Statistics +1208.5599 Algebraic Geometry +1208.5608 Mesoscale and Nanoscale Physics +1208.5612 Number Theory +1208.5614 Experiment +1208.5615 Combinatorics +1208.5616 Networking and Internet Architecture +1208.5622 Atomic Physics +1208.5624 Statistical Mechanics +1208.5626 Theory +1208.5627 History and Philosophy of Physics +1208.5630 Phenomenology +1208.5631 General Topology +1208.5643 Number Theory +1208.5649 Numerical Analysis +1208.5659 Networking and Internet Architecture +1208.5660 Dynamical Systems +1208.5663 Fluid Dynamics +1208.5664 General Physics +1208.5670 Combinatorics +1208.5673 Other Quantitative Biology +1208.5675 Probability +1208.5680 Analysis of PDEs +1208.5685 Phenomenology +1208.5686 High Energy Astrophysical Phenomena +1208.5687 Dynamical Systems +1208.5693 Quantum Algebra +1208.5694 Dynamical Systems +1208.5696 Quantum Algebra +1208.5702 Methodology +1208.5713 Information Theory +1208.5715 Theory +1208.5719 Atomic Physics +1208.5727 Optimization and Control +1208.5729 Other Quantitative Biology +1208.5731 Phenomenology +1208.5735 Representation Theory +1208.5736 +1208.5739 Analysis of PDEs +1208.5740 Cryptography and Security +1208.5744 Analysis of PDEs +1208.5745 Databases +1208.5746 Cryptography and Security +1208.5752 Optimization and Control +1208.5754 Functional Analysis +1208.5756 +1208.5759 Accelerator Physics +1208.5762 Cosmology and Nongalactic Astrophysics +acc-phys/9502001 Accelerator Physics +acc-phys/9502002 Accelerator Physics +acc-phys/9602001 Accelerator Physics +acc-phys/9604001 Accelerator Physics +adap-org/9501002 Adaptation and Self-Organizing Systems +adap-org/9505004 Adaptation and Self-Organizing Systems +adap-org/9507009 Adaptation and Self-Organizing Systems +adap-org/9507010 Adaptation and Self-Organizing Systems +cs/0610034 Logic in Computer Science +0707.1033 +0802.1249 +0905.2179 Materials Science +0906.3687 Quantum Gases +0910.1609 Instrumentation and Methods for Astrophysics +1002.1018 Materials Science +1003.0144 Algebraic Geometry +1003.5527 Probability +1006.2230 +1007.1059 Computational Complexity +1010.4523 Quantum Gases +1011.1159 Statistical Mechanics +1012.1016 Algebraic Geometry +1012.3535 Probability +1101.4511 Classical Physics +1103.4083 Mesoscale and Nanoscale Physics +1104.3611 +1104.4584 Combinatorics +1105.1286 +1105.5720 +1106.1712 Spectral Theory +1106.2911 +1107.2855 Probability +1107.5257 Phenomenology +1108.0633 Mesoscale and Nanoscale Physics +1108.2913 Category Theory +1108.3720 Quantitative Methods +1108.3991 Chemical Physics +1108.4032 Category Theory +1108.4059 Probability +1109.2062 +1109.4966 Commutative Algebra +1111.0780 Materials Science +1112.0078 Metric Geometry +1112.3644 Social and Information Networks +1112.4279 Analysis of PDEs +1201.4894 +1202.2957 +1202.3571 +1202.5057 Mesoscale and Nanoscale Physics +1202.6573 Populations and Evolution +1203.3655 Optimization and Control +1203.4668 Superconductivity +1203.4816 Strongly Correlated Electrons +1204.1000 Phenomenology +1204.3115 Number Theory +1204.3737 Statistical Mechanics +1204.5199 Functional Analysis +1204.5506 Theory +1204.6680 Number Theory +1205.1942 Theory +1205.6374 Materials Science +1205.6863 Astrophysics of Galaxies +1206.3092 Statistical Mechanics +1206.3533 Strongly Correlated Electrons +1206.4121 +1207.0125 Probability +1207.1253 Social and Information Networks +1207.3376 Optics +1207.4841 Number Theory +1207.4904 Optics +1207.5316 Strongly Correlated Electrons +1207.5780 Representation Theory +1207.6841 Mesoscale and Nanoscale Physics +1208.2550 +1208.2937 Theory +1208.3612 Theory +1208.4137 Representation Theory +1209.1124 General Physics +1209.2086 Information Theory +1209.4617 Representation Theory +1209.4688 Cosmology and Nongalactic Astrophysics +1209.6615 Social and Information Networks +1210.0041 Classical Analysis and ODEs +1210.0490 Information Theory +1210.1681 Quantum Gases +1210.2112 Differential Geometry +1210.2563 Populations and Evolution +1210.2609 Materials Science +1210.3333 Classical Physics +1210.3995 Disordered Systems and Neural Networks +1210.4243 Information Theory +1210.4544 +1210.4612 General Physics +1210.5086 Functional Analysis +1210.5115 +1210.5186 Theory +1210.5240 Social and Information Networks +1210.5248 General Physics +1210.5249 K-Theory and Homology +1210.5254 Quantum Algebra +1210.5259 Cosmology and Nongalactic Astrophysics +1210.5262 Software Engineering +1210.5263 Algebraic Geometry +1210.5267 Applications +1210.5273 Cosmology and Nongalactic Astrophysics +1210.5276 +1210.5277 Computation +1210.5281 Algebraic Geometry +1210.5283 Statistics Theory +1210.5284 Plasma Physics +1210.5285 Operator Algebras +1210.5287 Cryptography and Security +1210.5295 +1210.5300 Optimization and Control +1210.5305 Combinatorics +1210.5307 Programming Languages +1210.5308 Analysis of PDEs +1210.5311 Fluid Dynamics +1210.5312 Algebraic Geometry +1210.5318 Representation Theory +1210.5320 Symplectic Geometry +1210.5321 Computation and Language +1210.5322 Combinatorics +1210.5327 Cosmology and Nongalactic Astrophysics +1210.5329 Data Analysis, Statistics and Probability +1210.5330 High Energy Astrophysical Phenomena +1210.5335 Earth and Planetary Astrophysics +1210.5336 Cosmology and Nongalactic Astrophysics +1210.5342 Emerging Technologies +1210.5345 Machine Learning +1210.5348 Neurons and Cognition +1210.5349 Solar and Stellar Astrophysics +1210.5354 Cosmology and Nongalactic Astrophysics +1210.5361 Mesoscale and Nanoscale Physics +1210.5363 Data Structures and Algorithms +1210.5368 Cosmology and Nongalactic Astrophysics +1210.5375 Solar and Stellar Astrophysics +1210.5376 Number Theory +1210.5380 Probability +1210.5383 Analysis of PDEs +1210.5386 Other Computer Science +1210.5390 General Finance +1210.5391 Pricing of Securities +1210.5392 Numerical Analysis +1210.5393 Networking and Internet Architecture +1210.5396 +1210.5401 +1210.5403 Databases +1210.5408 Metric Geometry +1210.5414 Functional Analysis +1210.5415 Phenomenology +1210.5426 Operator Algebras +1210.5427 Phenomenology +1210.5428 Number Theory +1210.5430 Numerical Analysis +1210.5437 Rings and Algebras +1210.5438 Rings and Algebras +1210.5441 +1210.5443 Cryptography and Security +1210.5450 Instrumentation and Methods for Astrophysics +1210.5454 Networking and Internet Architecture +1210.5457 Combinatorics +1210.5460 History and Overview +1210.5465 Instrumentation and Methods for Astrophysics +1210.5470 Information Theory +1210.5474 Machine Learning +1210.5476 Differential Geometry +1210.5483 Instrumentation and Methods for Astrophysics +1210.5484 Computational Geometry +1210.5487 Numerical Analysis +1210.5488 Classical Analysis and ODEs +1210.5489 Materials Science +1210.5490 Theory +1210.5491 Solar and Stellar Astrophysics +1210.5492 +1210.5493 Optimization and Control +1210.5494 Representation Theory +1210.5497 Populations and Evolution +1210.5503 Information Theory +math/0511303 Differential Geometry +0704.0681 Soft Condensed Matter +0705.0032 +0705.0927 +0707.4314 +0802.0565 Analysis of PDEs +0805.2892 Functional Analysis +0806.2862 Statistical Mechanics +0811.3793 Strongly Correlated Electrons +0905.0266 Artificial Intelligence +0906.2836 Differential Geometry +0912.3879 Algebraic Geometry +0912.5267 +1006.1480 Algebraic Geometry +1007.3990 Phenomenology +1008.4460 Algebraic Geometry +1009.5404 Instrumentation and Methods for Astrophysics +1009.5615 Theory +1011.1192 Neurons and Cognition +1011.5700 +1011.6131 Algebraic Geometry +1103.4084 Algebraic Geometry +1104.4732 Statistics Theory +1104.5292 Combinatorics +1105.1040 +1105.2205 Mesoscale and Nanoscale Physics +1105.5306 Information Theory +1106.0299 Cosmology and Nongalactic Astrophysics +1106.1017 Information Theory +1106.1467 Phenomenology +1106.2955 Materials Science +1106.4171 +1106.4950 Differential Geometry +1107.2608 Superconductivity +1107.3263 Statistical Mechanics +1108.2339 Combinatorics +1108.3729 Atomic Physics +1108.4928 +1109.3110 Probability +1109.3275 Numerical Analysis +1109.3375 Logic +1110.1736 +1110.2717 Fluid Dynamics +1110.2911 Combinatorics +1110.5650 Phenomenology +1111.3248 Algebraic Topology +1111.4210 +1111.4870 Materials Science +1111.5261 +1111.5974 +1111.6156 Computer Science and Game Theory +1111.6245 Computation +1111.6854 +1112.1835 Mesoscale and Nanoscale Physics +1112.2225 Theory +1112.4729 Functional Analysis +1112.4872 Strongly Correlated Electrons +1112.5047 Combinatorics +1112.6420 Mesoscale and Nanoscale Physics +1201.3328 Information Theory +1201.4083 Mesoscale and Nanoscale Physics +1201.4294 Materials Science +1201.5624 Phenomenology +1201.6668 Strongly Correlated Electrons +1202.4095 Atmospheric and Oceanic Physics +1202.4287 Differential Geometry +1202.4294 Statistics Theory +1202.6421 Theory +1203.0943 +1203.1174 Plasma Physics +1203.1408 +1203.2116 Lattice +1203.3745 Quantum Gases +1203.5059 Phenomenology +1203.6717 Differential Geometry +1204.0294 +1204.1293 +1204.5190 Quantum Gases +1204.5423 Quantum Gases +1205.0141 Soft Condensed Matter +1205.1534 +1205.1675 Phenomenology +1205.1838 Phenomenology +1205.4238 Cosmology and Nongalactic Astrophysics +1205.4478 Materials Science +1205.4622 Theory +1205.5047 Cosmology and Nongalactic Astrophysics +1205.5106 Software Engineering +1206.0214 Atomic Physics +1206.2006 Solar and Stellar Astrophysics +1206.3058 Accelerator Physics +1206.3489 History and Philosophy of Physics +1206.5128 Materials Science +1206.5553 Statistical Mechanics +1206.6062 Popular Physics +1206.6506 Strongly Correlated Electrons +1207.0437 Physics and Society +1207.0616 High Energy Astrophysical Phenomena +1207.2421 Astrophysics of Galaxies +1207.3553 Complex Variables +1207.3706 High Energy Astrophysical Phenomena +1207.4162 Applications +1207.4262 Cryptography and Security +1207.6243 Theory +1207.6942 Popular Physics +1207.6944 Group Theory +1208.0636 Populations and Evolution +1208.0778 Optimization and Control +1208.1758 Computer Science and Game Theory +1208.1771 Accelerator Physics +1208.1774 Emerging Technologies +1208.1779 Solar and Stellar Astrophysics +1208.1786 Differential Geometry +1208.1794 Other Computer Science +1208.1796 Fluid Dynamics +1208.1798 Materials Science +1208.1801 Differential Geometry +1208.1818 Functional Analysis +1208.1822 Commutative Algebra +1208.1825 Dynamical Systems +1208.1829 Learning +1208.1830 Materials Science +1208.1835 Materials Science +1208.1838 +1208.1841 Experiment +1208.1846 Learning +1208.1847 Fluid Dynamics +1208.1853 Molecular Networks +1208.1854 Superconductivity +1208.1855 Theory +1208.1859 Number Theory +1208.1860 Databases +1208.1863 Functional Analysis +1208.1864 Statistics Theory +1208.1869 Complex Variables +1208.1880 Computer Vision and Pattern Recognition +1208.1885 Information Theory +1208.1886 Information Retrieval +1208.1888 Chaotic Dynamics +1208.1889 Phenomenology +1208.1892 Mesoscale and Nanoscale Physics +1208.1896 Networking and Internet Architecture +1208.1898 Differential Geometry +1208.1900 Cryptography and Security +1208.1906 Software Engineering +1208.1911 Optics +1208.1914 Atmospheric and Oceanic Physics +1208.1918 Cryptography and Security +1208.1919 Category Theory +1208.1920 Combinatorics +1208.1921 Artificial Intelligence +1208.1922 Distributed, Parallel, and Cluster Computing +1208.1923 Other Quantitative Biology +1208.1926 Information Retrieval +1208.1927 Databases +1208.1932 Databases +1208.1933 Databases +1208.1938 Classical Analysis and ODEs +1208.1942 Distributed, Parallel, and Cluster Computing +1208.1944 Combinatorics +1208.1946 +1208.1949 Operator Algebras +1208.1955 Artificial Intelligence +1208.1958 Combinatorics +1208.1959 Cryptography and Security +1208.1960 Solar and Stellar Astrophysics +1208.1963 Combinatorics +1208.1982 Distributed, Parallel, and Cluster Computing +1208.1983 Graphics +1208.1984 Cryptography and Security +1208.1988 Mesoscale and Nanoscale Physics +1208.1995 +1208.1996 High Energy Astrophysical Phenomena +1208.1998 Accelerator Physics +1208.2002 Networking and Internet Architecture +1208.2004 Accelerator Physics +1208.2018 Accelerator Physics +1208.2019 Accelerator Physics +1208.2024 +0709.3631 +0711.0401 +0803.4500 +0804.0643 Group Theory +0806.3707 Mesoscale and Nanoscale Physics +0807.0673 Populations and Evolution +0807.2974 Mesoscale and Nanoscale Physics +0904.2382 Cosmology and Nongalactic Astrophysics +0905.0953 General Physics +0908.0292 Mesoscale and Nanoscale Physics +0909.2347 Representation Theory +1005.3434 Dynamical Systems +1006.4710 +1007.4041 Functional Analysis +1008.4510 Functional Analysis +1009.2219 Geometric Topology +1009.2731 Experiment +1010.0658 Symplectic Geometry +1101.1543 Mesoscale and Nanoscale Physics +1101.1563 Rings and Algebras +1102.0449 Rings and Algebras +1103.0423 Experiment +1105.2791 Cosmology and Nongalactic Astrophysics +1105.5213 General Physics +1106.1962 Complex Variables +1106.2362 Rings and Algebras +1107.0568 +1107.2430 Dynamical Systems +1107.5463 Computational Physics +1107.5828 +1108.3186 +1108.4920 Methodology +1109.0410 +1109.3103 Logic +1109.3412 +1109.4321 Representation Theory +1109.5121 Theory +1110.2671 Materials Science +1111.0739 +1111.0786 +1111.0964 Populations and Evolution +1111.3382 Differential Geometry +1111.3965 +1111.4353 +1111.5384 Mesoscale and Nanoscale Physics +1112.2241 Strongly Correlated Electrons +1112.2263 Soft Condensed Matter +1112.2848 Statistical Mechanics +1112.4698 Experiment +1112.5988 Statistical Mechanics +1201.2071 +1201.3790 Superconductivity +1201.5044 Mesoscale and Nanoscale Physics +1202.0584 Quantum Gases +1202.1212 Information Theory +1202.1337 Information Theory +1202.2039 Theory +1202.4123 +1202.4293 Lattice +1202.4444 Quantum Gases +1202.4717 Experiment +1202.5104 +1202.5623 Statistical Mechanics +1202.5712 Chemical Physics +1202.6245 Combinatorics +1203.0526 Statistical Mechanics +1203.2036 +1203.2934 Data Analysis, Statistics and Probability +1203.5428 Numerical Analysis +1203.6377 Plasma Physics +1204.0187 Combinatorics +1204.0990 +1204.2813 Experiment +1204.5675 Experiment +1204.6172 Other Condensed Matter +1205.0934 Experiment +1205.1917 +1205.2022 Superconductivity +1205.4217 Machine Learning +1205.4634 Materials Science +1205.5150 Mesoscale and Nanoscale Physics +1205.6306 Analysis of PDEs +1205.6404 Materials Science +1205.6624 Atomic Physics +1206.1575 +1206.2603 Strongly Correlated Electrons +1206.2808 Materials Science +1206.3518 Materials Science +1206.3595 High Energy Astrophysical Phenomena +1206.3624 Analysis of PDEs +1206.4228 Solar and Stellar Astrophysics +1206.6681 +1207.1001 Medical Physics +1207.2882 +1207.2884 +1207.3587 Analysis of PDEs +1207.3975 Statistics Theory +1207.4254 Information Theory +1207.4418 Algebraic Topology +1207.4442 Statistical Mechanics +1207.4490 Strongly Correlated Electrons +1207.4497 Data Structures and Algorithms +1207.4500 +1207.4501 Cosmology and Nongalactic Astrophysics +1207.4505 Instrumentation and Detectors +1207.4506 Geophysics +1207.4511 Functional Analysis +1207.4514 Functional Analysis +1207.4517 Representation Theory +1207.4519 Cosmology and Nongalactic Astrophysics +1207.4524 Classical Analysis and ODEs +1207.4525 Artificial Intelligence +1207.4526 Information Theory +1207.4530 Information Theory +1207.4531 Functional Analysis +1207.4533 Representation Theory +1207.4538 Optimization and Control +1207.4545 Algebraic Geometry +1207.4546 Number Theory +1207.4552 Optimization and Control +1207.4553 Physics and Society +1207.4554 +1207.4561 Data Analysis, Statistics and Probability +1207.4563 Quantum Algebra +1207.4565 Atomic Physics +1207.4566 Methodology +1207.4567 Data Structures and Algorithms +1207.4572 Geometric Topology +1207.4583 Experiment +1207.4584 Phenomenology +1207.4585 Computational Physics +1207.4587 Information Theory +1207.4589 Information Theory +1207.4591 Theory +1207.4592 Optimization and Control +1207.4595 +1207.4600 Cryptography and Security +1207.4601 Instrumentation and Detectors +1207.4602 Theory +1207.4603 Theory +1207.4612 +1207.4613 General Physics +1207.4615 General Physics +1207.4616 Data Structures and Algorithms +1207.4617 Tissues and Organs +1207.4619 Phenomenology +1207.4620 High Energy Astrophysical Phenomena +1207.4622 High Energy Astrophysical Phenomena +1207.4624 Number Theory +1207.4625 Computation and Language +1207.4626 Neural and Evolutionary Computing +1207.4628 Neural and Evolutionary Computing +1207.4629 Neural and Evolutionary Computing +1207.4631 Neural and Evolutionary Computing +1207.4632 Neural and Evolutionary Computing +1207.4633 Optics +1207.4638 Classical Analysis and ODEs +1207.4639 Experiment +1207.4643 Theory +1207.4645 Mesoscale and Nanoscale Physics +1207.4649 Materials Science +1207.4652 Analysis of PDEs +1207.4654 Materials Science +1207.4655 Experiment +1207.4656 Physics and Society +1207.4657 +1207.4659 Chaotic Dynamics +1207.4660 Combinatorics +1207.4661 Information Theory +1207.4663 Optics +1207.4666 Data Structures and Algorithms +1207.4667 Optics +1207.4669 Rings and Algebras +1207.4671 General Physics +1207.4673 Mesoscale and Nanoscale Physics +1207.4674 Machine Learning +1207.4679 Analysis of PDEs +1207.4681 Data Structures and Algorithms +1207.4682 Fluid Dynamics +1207.4688 +1207.4690 Probability +1207.4691 Statistical Mechanics +1207.4693 Strongly Correlated Electrons +1207.4697 Combinatorics +1207.4701 Computer Science and Game Theory +1207.4710 Computational Complexity +1207.4711 Information Theory +1207.4714 Combinatorics +1207.4715 Computational Complexity +1207.4717 History and Philosophy of Physics +1207.4720 Differential Geometry +1207.4722 Number Theory +1207.4725 Algebraic Topology +1207.4729 Optics +1207.4746 Physics and Society +1207.4748 Machine Learning +1207.4754 Optics +1207.4757 Commutative Algebra +1207.4758 Accelerator Physics +1207.4762 Earth and Planetary Astrophysics +1207.4765 Experiment +1207.4766 Optimization and Control +1207.4768 Accelerator Physics +1207.4772 Instrumentation and Methods for Astrophysics +1207.4776 Human-Computer Interaction +1207.4778 Accelerator Physics +1207.4782 Optimization and Control +1207.4783 Data Structures and Algorithms +math/0507204 History and Overview +physics/0610022 Atomic Physics +0710.5696 +0806.2006 Computer Vision and Pattern Recognition +0806.3350 +0812.4836 Other Condensed Matter +0910.4519 Materials Science +1001.0695 Computational Geometry +1002.2529 Strongly Correlated Electrons +1003.2067 Algebraic Geometry +1003.4514 Chemical Physics +1004.3506 Atmospheric and Oceanic Physics +1004.5328 Methodology +1005.5598 Dynamical Systems +1007.0427 Algebraic Topology +1009.1130 Geometric Topology +1009.2799 Statistical Mechanics +1009.6147 High Energy Astrophysical Phenomena +1011.0275 Probability +1012.2594 Statistical Mechanics +1101.4802 General Mathematics +1103.0694 Cosmology and Nongalactic Astrophysics +1103.1745 Algebraic Geometry +1103.3301 Physics and Society +1104.0394 High Energy Astrophysical Phenomena +1104.1981 Exactly Solvable and Integrable Systems +1104.4490 Computational Complexity +1105.1193 Materials Science +1105.2744 High Energy Astrophysical Phenomena +1105.2762 High Energy Astrophysical Phenomena +1105.3100 Quantum Gases +1105.4055 Mesoscale and Nanoscale Physics +1106.0718 Databases +1106.2141 Physics Education +1106.5317 Phenomenology +1106.6282 Mesoscale and Nanoscale Physics +1107.0180 High Energy Astrophysical Phenomena +1107.1701 Mesoscale and Nanoscale Physics +1107.1716 Cosmology and Nongalactic Astrophysics +1107.3228 Analysis of PDEs +1107.3538 Probability +1107.5047 Cosmology and Nongalactic Astrophysics +1107.5438 Phenomenology +1107.5501 Strongly Correlated Electrons +1108.3244 Differential Geometry +1108.5418 Complex Variables +1108.5890 Networking and Internet Architecture +1108.6216 Mesoscale and Nanoscale Physics +1109.0955 +1109.1887 Theory +1109.3188 Mesoscale and Nanoscale Physics +1109.4447 Data Analysis, Statistics and Probability +1110.0290 +1110.0789 Statistical Mechanics +1111.2548 Mesoscale and Nanoscale Physics +1111.5374 Adaptation and Self-Organizing Systems +1111.5416 Materials Science +1111.5667 Strongly Correlated Electrons +1111.6241 Phenomenology +1111.7243 Quantitative Methods +1112.1988 History and Philosophy of Physics +1112.2242 Materials Science +1112.4644 Formal Languages and Automata Theory +1112.4660 Probability +1112.5086 Phenomenology +1112.5260 Dynamical Systems +1112.5865 Materials Science +1112.6168 Algebraic Geometry +1201.0390 +1201.1286 Cosmology and Nongalactic Astrophysics +1201.1298 +1201.1301 Geophysics +1201.1303 Cosmology and Nongalactic Astrophysics +1201.1312 Differential Geometry +1201.1314 Methodology +1201.1320 Computation +1201.1323 Combinatorics +1201.1325 Materials Science +1201.1332 Number Theory +1201.1336 Instrumentation and Methods for Astrophysics +1201.1337 Rings and Algebras +1201.1338 Rings and Algebras +1201.1339 +1201.1340 Instrumentation and Methods for Astrophysics +1201.1341 Phenomenology +1201.1342 Rings and Algebras +1201.1345 Instrumentation and Methods for Astrophysics +1201.1348 Group Theory +1201.1350 Numerical Analysis +1201.1352 Phenomenology +1201.1353 Networking and Internet Architecture +1201.1354 +1201.1355 Combinatorics +1201.1356 Methodology +1201.1367 Methodology +1201.1368 General Physics +1201.1372 Optics +1201.1373 Methodology +1201.1376 Methodology +1201.1379 Methodology +1201.1381 Group Theory +1201.1383 Multimedia +1201.1388 Solar and Stellar Astrophysics +1201.1393 Algebraic Topology +1201.1397 Experiment +1201.1404 Combinatorics +1201.1410 Logic in Computer Science +1201.1411 Combinatorics +1201.1417 Computer Vision and Pattern Recognition +1201.1421 Methodology +1201.1422 Computer Vision and Pattern Recognition +1201.1425 Computers and Society +1201.1440 Analysis of PDEs +1201.1450 Machine Learning +1201.1454 Mesoscale and Nanoscale Physics +1201.1459 Strongly Correlated Electrons +1201.1464 Dynamical Systems +1201.1465 Representation Theory +1201.1467 Metric Geometry +1201.1468 Other Computer Science +1201.1474 Probability +1201.1477 Dynamical Systems +1201.1481 Software Engineering +1201.1488 Other Condensed Matter +1201.1490 Methodology +1201.1494 Combinatorics +1201.1495 Probability +1201.1499 Algebraic Geometry +cond-mat/0002082 Materials Science +cond-mat/0009392 Statistical Mechanics +cond-mat/0103553 Mesoscale and Nanoscale Physics +math-ph/0608029 +math/0408222 Complex Variables +physics/0602069 Optics +0801.0028 Atomic Physics +0811.0799 Dynamical Systems +0901.1371 +0903.2672 Probability +0904.3849 High Energy Astrophysical Phenomena +1002.0807 Algebraic Topology +1006.4700 Computational Complexity +1007.1806 Statistical Mechanics +1009.3586 Differential Geometry +1009.6156 Strongly Correlated Electrons +1011.2725 Soft Condensed Matter +1011.4069 Analysis of PDEs +1011.4796 Cosmology and Nongalactic Astrophysics +1012.3645 Instrumentation and Methods for Astrophysics +1012.5153 Theory +1101.2697 Probability +1101.4912 Representation Theory +1102.1268 +1102.1554 Probability +1102.1842 Probability +1103.0327 Probability +1103.0861 +1103.1355 Combinatorics +1103.3318 +1104.0191 Statistics Theory +1104.0613 Probability +1104.4163 Databases +1104.4284 Mesoscale and Nanoscale Physics +1104.4318 +1105.1666 High Energy Astrophysical Phenomena +1105.2998 +1106.0429 Strongly Correlated Electrons +1106.2750 History and Overview +1106.3250 Combinatorics +1106.4143 +1106.4549 Mesoscale and Nanoscale Physics +1107.0942 Quantum Gases +1107.2130 Phenomenology +1107.3976 Phenomenology +1108.0395 Mesoscale and Nanoscale Physics +1108.2912 Soft Condensed Matter +1108.4611 Other Condensed Matter +1109.0383 +1109.5501 +1109.5541 Mesoscale and Nanoscale Physics +1110.1365 Atmospheric and Oceanic Physics +1110.1543 Analysis of PDEs +1110.3573 Strongly Correlated Electrons +1110.4173 Materials Science +1110.5531 +1110.5780 Classical Analysis and ODEs +1111.0680 Data Analysis, Statistics and Probability +1111.1346 +1111.2900 High Energy Astrophysical Phenomena +1111.4100 Solar and Stellar Astrophysics +1111.5315 Experiment +1111.5385 +1111.5788 Mesoscale and Nanoscale Physics +1111.6506 Group Theory +1111.6845 Combinatorics +1111.7283 +1112.1004 Superconductivity +1112.2596 Quantum Gases +1112.5003 Strongly Correlated Electrons +1112.5020 Phenomenology +1112.5907 Mesoscale and Nanoscale Physics +1201.1532 Atomic Physics +1201.2244 High Energy Astrophysical Phenomena +1201.2321 +1201.2422 Phenomenology +1201.2432 Theory +1201.2518 Biological Physics +1201.2799 Instrumentation and Methods for Astrophysics +1201.4662 Combinatorics +1202.3155 Probability +1202.3459 Mesoscale and Nanoscale Physics +1202.5266 Functional Analysis +1203.0781 Computer Vision and Pattern Recognition +1203.2090 Combinatorics +1203.2417 Materials Science +1203.2475 +1203.2993 Symplectic Geometry +1203.3689 Instrumentation and Detectors +1203.3706 Logic in Computer Science +1203.4229 Instrumentation and Methods for Astrophysics +1203.4475 Emerging Technologies +1203.4739 +1203.4840 Probability +1203.4914 Algebraic Geometry +1203.4917 Combinatorics +1203.4938 Distributed, Parallel, and Cluster Computing +1203.5004 Distributed, Parallel, and Cluster Computing +1203.5100 Mesoscale and Nanoscale Physics +1203.5118 Soft Condensed Matter +1203.5124 Learning +1203.5132 +1203.5133 Other Condensed Matter +1203.5135 Classical Analysis and ODEs +1203.5136 Functional Analysis +1203.5138 +1203.5142 +1203.5143 +1203.5144 General Physics +1203.5147 Complex Variables +1203.5148 Pattern Formation and Solitons +1203.5155 Computer Science and Game Theory +1203.5156 Information Theory +1203.5164 Strongly Correlated Electrons +1203.5165 Optimization and Control +1203.5172 +1203.5175 Combinatorics +1203.5182 +1203.5185 History and Overview +1203.5186 Combinatorics +1203.5188 Software Engineering +1203.5189 Analysis of PDEs +1203.5191 Classical Analysis and ODEs +1203.5194 Solar and Stellar Astrophysics +1203.5196 Distributed, Parallel, and Cluster Computing +1203.5204 Algebraic Geometry +1203.5206 Optimization and Control +1203.5218 Social and Information Networks +1203.5227 Number Theory +1203.5230 +1203.5231 Solar and Stellar Astrophysics +1203.5233 Methodology +1203.5235 Data Structures and Algorithms +1203.5242 Instrumentation and Detectors +1203.5246 General Physics +1203.5247 General Physics +1203.5253 Differential Geometry +1203.5255 Computation and Language +1203.5256 Mesoscale and Nanoscale Physics +1203.5259 Other Computer Science +1203.5261 Classical Analysis and ODEs +1203.5262 Computation and Language +1203.5263 Functional Analysis +1203.5267 Physics and Society +1203.5272 Strongly Correlated Electrons +1203.5274 Statistical Mechanics +1203.5279 Computers and Society +1203.5282 Plasma Physics +1203.5286 Geophysics +1203.5287 Mesoscale and Nanoscale Physics +1203.5288 Algebraic Topology +1203.5310 +1203.5319 Dynamical Systems +1203.5322 Functional Analysis +1203.5323 Logic in Computer Science +1203.5324 Information Retrieval +1203.5327 +1203.5329 Algebraic Geometry +1203.5330 Differential Geometry +0708.3629 Phenomenology +0710.3276 +0711.2796 Differential Geometry +0803.2199 Soft Condensed Matter +0805.1257 Distributed, Parallel, and Cluster Computing +0807.0142 Complex Variables +0808.0097 Algebraic Geometry +0808.1502 Probability +0809.0784 Differential Geometry +0811.1116 Soft Condensed Matter +0811.1714 Mathematical Software +0811.3947 Differential Geometry +0812.4197 +0812.4960 Soft Condensed Matter +0901.4916 Soft Condensed Matter +0902.1046 Number Theory +0905.0437 Probability +0907.3951 Exactly Solvable and Integrable Systems +0908.2046 Soft Condensed Matter +0908.4338 +0909.1827 Algebraic Geometry +0911.3330 +0912.0684 Combinatorics +0912.2441 Theory +1001.2702 +1003.0574 +1004.4672 +1004.5142 Soft Condensed Matter +1005.1379 Mesoscale and Nanoscale Physics +1005.4503 Algebraic Geometry +1005.5533 Genomics +1006.4347 Algebraic Topology +1006.5348 Algebraic Geometry +1008.0452 +1009.4573 Algebraic Geometry +1010.0647 +1010.1925 +1010.3392 Other Condensed Matter +1010.3626 Theory +1010.5398 Differential Geometry +1012.0240 Algebraic Geometry +1012.0896 +1012.4520 Disordered Systems and Neural Networks +1012.4814 +1012.5280 Phenomenology +1101.2384 +1102.0022 Differential Geometry +1102.1343 Atmospheric and Oceanic Physics +1103.2044 +1104.2244 Group Theory +1104.3321 Geometric Topology +1104.5213 Physics and Society +1104.5407 +1105.0885 +1105.2872 Theory +1105.3773 Quantum Gases +1105.3956 +1105.4640 Analysis of PDEs +1105.4811 Materials Science +1105.5785 Solar and Stellar Astrophysics +1105.5798 Numerical Analysis +1106.0071 +1106.0503 Cosmology and Nongalactic Astrophysics +1106.1129 Plasma Physics +1106.1795 Theory +1106.2973 Soft Condensed Matter +1106.3995 Probability +1106.4499 Physics and Society +1106.5154 Commutative Algebra +1107.0230 Strongly Correlated Electrons +1107.1183 Theory +1107.4895 Materials Science +1107.5576 High Energy Astrophysical Phenomena +1108.1171 Number Theory +1108.1475 +1108.1730 Information Theory +1108.2954 Soft Condensed Matter +1108.3013 Quantum Gases +1108.3682 Mesoscale and Nanoscale Physics +1108.4031 Number Theory +1108.4858 +1109.0080 Theory +1109.0302 Phenomenology +1109.1393 Operator Algebras +1109.3035 Materials Science +1109.3063 Chemical Physics +1109.3870 Soft Condensed Matter +1109.3878 +1109.4555 Strongly Correlated Electrons +1109.4829 Phenomenology +1109.5151 Geometric Topology +1109.6801 +1110.0444 Differential Geometry +1110.0967 Statistical Mechanics +1110.1224 Geometric Topology +1110.2853 Chemical Physics +1110.3020 +1110.3256 Dynamical Systems +1110.4443 Phenomenology +1110.4502 Phenomenology +1110.5644 Theory +1110.6272 Mesoscale and Nanoscale Physics +1110.6759 Combinatorics +1110.6922 Superconductivity +1111.0797 +1111.0883 +1111.3044 +1111.3593 Mesoscale and Nanoscale Physics +1111.3632 +1111.4124 +1111.6999 +1111.7259 Materials Science +1112.1737 Instrumentation and Detectors +1112.1935 Geometric Topology +1112.2316 Physics and Society +1112.2510 Soft Condensed Matter +1112.2936 +1112.4517 Cosmology and Nongalactic Astrophysics +1112.5128 Soft Condensed Matter +1112.5291 +1112.5652 Differential Geometry +1112.6020 Number Theory +1201.0339 Neurons and Cognition +1201.0867 Strongly Correlated Electrons +1201.2259 Materials Science +1201.2274 Atomic Physics +1201.2568 +1201.2972 Quantum Gases +1201.3079 Strongly Correlated Electrons +1201.3326 Chaotic Dynamics +1201.4629 Quantum Gases +1201.6250 Instrumentation and Detectors +1201.6472 Commutative Algebra +1202.0867 Computational Geometry +1202.1445 Superconductivity +1202.1744 Soft Condensed Matter +1202.3218 Soft Condensed Matter +1202.4400 Statistical Mechanics +1202.4785 Materials Science +1202.4786 Materials Science +1202.4866 Classical Analysis and ODEs +1202.4926 General Physics +1202.6116 Materials Science +1203.0290 Information Theory +1203.0344 Astrophysics of Galaxies +1203.1164 Cosmology and Nongalactic Astrophysics +1203.1374 Statistical Mechanics +1203.2304 Superconductivity +1203.2600 General Physics +1203.3256 Computational Geometry +1203.3263 Software Engineering +1203.3843 Functional Analysis +1203.3908 Functional Analysis +1203.3949 Phenomenology +1203.3954 Neurons and Cognition +1203.4208 Instrumentation and Methods for Astrophysics +1203.4278 +1203.4436 Differential Geometry +1203.4513 General Physics +1203.4515 General Physics +1203.4677 Theory +1203.4685 Social and Information Networks +1203.4927 Functional Analysis +1203.5334 Astrophysics of Galaxies +1203.5341 +1203.5345 Analysis of PDEs +1203.5347 Fluid Dynamics +1203.5348 Algebraic Topology +1203.5349 Hardware Architecture +1203.5350 Cryptography and Security +1203.5353 Formal Languages and Automata Theory +1203.5356 Earth and Planetary Astrophysics +1203.5368 Mesoscale and Nanoscale Physics +1203.5369 +1203.5374 Logic +1203.5377 Functional Analysis +1203.5378 Information Theory +1203.5379 Number Theory +1203.5399 Multiagent Systems +1203.5403 Software Engineering +1203.5405 Methodology +1203.5409 Dynamical Systems +1203.5411 Differential Geometry +1203.5415 Information Retrieval +1203.5422 Methodology +1203.5423 Logic in Computer Science +1203.5427 Logic +1203.5429 Accelerator Physics +1203.5431 Group Theory +1203.5433 Combinatorics +1203.5434 Soft Condensed Matter +1203.5438 Learning +1203.5439 Algebraic Topology +1203.5442 Pricing of Securities +1203.5444 Differential Geometry +1203.5446 Applications +1203.5447 Dynamical Systems +1203.5451 Systems and Control +1203.5452 Artificial Intelligence +1203.5453 Data Structures and Algorithms +1203.5454 Systems and Control +1203.5456 Complex Variables +1203.5457 Geometric Topology +1203.5458 Materials Science +1203.5464 Data Structures and Algorithms +1203.5467 Cryptography and Security +1203.5473 Mesoscale and Nanoscale Physics +1203.5474 Social and Information Networks +1203.5482 Differential Geometry +1203.5489 High Energy Astrophysical Phenomena +1203.5491 Quantum Algebra +1203.5495 Functional Analysis +1203.5501 Analysis of PDEs +1203.5505 Representation Theory +1203.5506 Astrophysics of Galaxies +1203.5510 Dynamical Systems +1203.5512 Differential Geometry +1203.5523 Networking and Internet Architecture +1203.5527 Optics +1203.5529 +1203.5533 Probability +1203.5534 +1203.5549 Complex Variables +1203.5556 Chaotic Dynamics +1203.5557 Phenomenology +1203.5559 Chaotic Dynamics +1203.5560 Chaotic Dynamics +1203.5563 Dynamical Systems +1203.5569 Phenomenology +1203.5570 Social and Information Networks +1203.5572 Information Theory +1203.5575 Soft Condensed Matter +1203.5576 Soft Condensed Matter +1203.5577 Soft Condensed Matter +1203.5578 Commutative Algebra +1203.5580 Chemical Physics +1203.5581 Statistics Theory +1203.5582 Chaotic Dynamics +1203.5583 Multiagent Systems +1203.5586 Accelerator Physics +1203.5587 Statistics Theory +1203.5595 Algebraic Geometry +1203.5596 Cosmology and Nongalactic Astrophysics +1203.5606 Analysis of PDEs +1203.5610 Methodology +1203.5617 Methodology +1203.5619 Complex Variables +1203.5622 +1203.5623 Optimization and Control +1203.5626 Methodology +1203.5627 Lattice +1203.5628 Materials Science +1203.5633 Phenomenology +1203.5640 Phenomenology +1203.5641 Combinatorics +1203.5644 Combinatorics +1203.5647 Machine Learning +1203.5648 Statistics Theory +1203.5650 Combinatorics +1203.5655 Materials Science +1203.5659 +1203.5661 Representation Theory +1203.5664 Pricing of Securities +1203.5668 Methodology +1203.5670 Mesoscale and Nanoscale Physics +1203.5671 Differential Geometry +1203.5672 Optimization and Control +1203.5675 Data Structures and Algorithms +1203.5676 Mesoscale and Nanoscale Physics +1203.5678 General Topology +1203.5682 Solar and Stellar Astrophysics +1203.5683 Systems and Control +1203.5685 Algebraic Geometry +1203.5686 Materials Science +1203.5689 Digital Libraries +1203.5691 Geophysics +1203.5695 Probability +1203.5698 Dynamical Systems +1203.5715 Computer Science and Game Theory +1203.5724 Algebraic Geometry +1203.5725 Instrumentation and Methods for Astrophysics +1203.5726 +1203.5728 Statistics Theory +1203.5734 Astrophysics of Galaxies +1203.5737 Distributed, Parallel, and Cluster Computing +1203.5739 Differential Geometry +1203.5742 Information Theory +1203.5748 Software Engineering +1203.5749 Group Theory +1203.5754 Logic in Computer Science +1203.5762 Information Theory +1203.5765 Combinatorics +1203.5767 Instrumentation and Detectors +1203.5770 Dynamical Systems +1203.5772 Multimedia +cond-mat/0511147 Soft Condensed Matter +cond-mat/9901271 Soft Condensed Matter +gr-qc/0512103 +gr-qc/0607032 +physics/0511111 Plasma Physics +0804.2990 Statistical Mechanics +0904.4404 Algebraic Geometry +0909.2683 Plasma Physics +0909.4487 Differential Geometry +0910.5186 Solar and Stellar Astrophysics +0911.0258 +1001.2072 Quantum Gases +1002.0064 +1004.3052 Algebraic Geometry +1005.4571 Soft Condensed Matter +1006.2925 Soft Condensed Matter +1006.4269 Experiment +1009.0050 Information Theory +1009.3514 Information Theory +1010.1659 Solar and Stellar Astrophysics +1010.5901 Soft Condensed Matter +1102.0324 Soft Condensed Matter +1103.1786 Commutative Algebra +1104.0067 +1105.0972 Learning +1105.4344 Dynamical Systems +1106.3150 Solar and Stellar Astrophysics +1108.2682 +1109.0553 Cosmology and Nongalactic Astrophysics +1109.1788 Number Theory +1109.3195 +1109.3227 Information Theory +1109.4797 Phenomenology +1109.5675 Probability +1110.6575 Superconductivity +1111.1972 Mesoscale and Nanoscale Physics +1111.2806 Theory +1111.4957 Materials Science +1111.6876 Phenomenology +1112.4173 Geometric Topology +1112.5544 Materials Science +1112.6001 Algebraic Geometry +1201.2151 Mesoscale and Nanoscale Physics +1201.2510 +1201.3956 Phenomenology +1201.4174 Strongly Correlated Electrons +1201.4530 Functional Analysis +1201.4549 Combinatorics +1202.0886 +1202.3934 Algebraic Geometry +1202.3982 Soft Condensed Matter +1203.0426 Strongly Correlated Electrons +1203.1550 Representation Theory +1203.2150 +1204.0543 Probability +1204.0595 Strongly Correlated Electrons +1204.1319 Phenomenology +1204.2603 +1204.5286 Geometric Topology +1204.5289 Materials Science +1204.5470 Solar and Stellar Astrophysics +1204.6175 Superconductivity +1205.1883 Mesoscale and Nanoscale Physics +1205.4495 Symplectic Geometry +1205.5202 Mesoscale and Nanoscale Physics +1205.6147 Soft Condensed Matter +1206.0108 Physics and Society +1206.0576 Methodology +1206.1598 +1206.2339 Cosmology and Nongalactic Astrophysics +1206.3762 Soft Condensed Matter +1206.4888 Analysis of PDEs +1206.6159 Instrumentation and Methods for Astrophysics +1207.0090 +1207.1278 Quantum Gases +1207.1449 Solar and Stellar Astrophysics +1207.1998 Fluid Dynamics +1207.6784 High Energy Astrophysical Phenomena +1208.0396 Data Structures and Algorithms +1208.1164 Optics +1208.1536 Dynamical Systems +1208.1704 Solar and Stellar Astrophysics +1208.2346 Combinatorics +1208.2988 Earth and Planetary Astrophysics +1208.3093 Operator Algebras +1208.3149 +1208.3153 Discrete Mathematics +1208.3177 Group Theory +1208.3193 +1208.3204 Theory +1208.3205 Cryptography and Security +1208.3207 Materials Science +1208.3209 +1208.3210 Strongly Correlated Electrons +1208.3212 Networking and Internet Architecture +1208.3218 Accelerator Physics +1208.3219 Numerical Analysis +1208.3223 Accelerator Physics +1208.3224 +1208.3226 Accelerator Physics +1208.3228 Dynamical Systems +1208.3230 Combinatorics +1208.3237 +1208.3241 Adaptation and Self-Organizing Systems +1208.3245 Functional Analysis +1208.3246 Functional Analysis +1208.3247 Complex Variables +1208.3249 Cosmology and Nongalactic Astrophysics +1208.3254 Information Theory +1208.3256 Optimization and Control +1208.3259 Exactly Solvable and Integrable Systems +1208.3261 Probability +1208.3269 Optics +1208.3270 Algebraic Geometry +1208.3272 Instrumentation and Methods for Astrophysics +1208.3274 History and Overview +1208.3275 +1208.3279 Machine Learning +1208.3280 Optics +1208.3286 Mesoscale and Nanoscale Physics +1208.3291 Optimization and Control +1208.3292 Methodology +1208.3293 Phenomenology +1208.3294 Methodology +1208.3295 Networking and Internet Architecture +1208.3296 Methodology +1208.3297 Methodology +1208.3299 Superconductivity +1208.3303 +1208.3305 High Energy Astrophysical Phenomena +1208.3306 +1208.3315 Optics +1208.3316 Optics +1208.3318 Superconductivity +1208.3319 Superconductivity +1208.3321 Statistics Theory +1208.3323 Human-Computer Interaction +1208.3328 Optimization and Control +1208.3331 +1208.3335 +1208.3342 Classical Analysis and ODEs +1208.3348 Dynamical Systems +1208.3349 Quantum Algebra +1208.3350 +1208.3354 Disordered Systems and Neural Networks +1208.3358 Probability +1208.3360 Statistics Theory +1208.3361 Analysis of PDEs +1208.3364 Astrophysics of Galaxies +1208.3371 Dynamical Systems +1208.3372 Probability +1208.3377 Soft Condensed Matter +1208.3378 Methodology +1208.3379 Phenomenology +1208.3381 Populations and Evolution +1208.3383 Disordered Systems and Neural Networks +1208.3387 Mesoscale and Nanoscale Physics +1208.3389 Mesoscale and Nanoscale Physics +1208.3394 Computers and Society +1208.3395 Combinatorics +1208.3398 Social and Information Networks +1208.3402 Number Theory +1208.3403 Cosmology and Nongalactic Astrophysics +1208.3404 Phenomenology +1208.3406 Numerical Analysis +1208.3409 Accelerator Physics +1208.3411 +1208.3414 Accelerator Physics +1208.3415 Accelerator Physics +1208.3420 Materials Science +1208.3423 Theory +1208.3433 +1208.3438 Populations and Evolution +1208.3445 Theory +1208.3446 Mesoscale and Nanoscale Physics +1208.3451 Mesoscale and Nanoscale Physics +cond-mat/0201440 Materials Science +cond-mat/0209275 Mesoscale and Nanoscale Physics +cond-mat/0605697 Materials Science +cond-mat/0702598 Materials Science +cond-mat/9310047 +cond-mat/9411014 +cond-mat/9605111 +0710.2337 +0802.3442 +0806.0016 +0808.3064 +0812.0372 Combinatorics +0901.0074 Quantum Algebra +0907.0591 +0907.0953 Algebraic Geometry +0908.1983 +0910.0264 Statistics Theory +0910.2629 General Physics +0910.4716 Group Theory +0911.5604 Group Theory +0912.0667 Group Theory +1001.0176 Rings and Algebras +1001.4856 Group Theory +1003.2297 Group Theory +1004.2393 Data Structures and Algorithms +1006.2260 Probability +1006.3769 Superconductivity +1006.5369 Algebraic Geometry +1007.3478 Spectral Theory +1008.2055 Group Theory +1008.3206 Materials Science +1008.4822 Cosmology and Nongalactic Astrophysics +1008.5248 Networking and Internet Architecture +1009.2171 Group Theory +1009.5502 Mesoscale and Nanoscale Physics +1009.6037 Mesoscale and Nanoscale Physics +1010.4269 Combinatorics +1011.1523 Statistical Mechanics +1011.5309 +1012.3172 Statistical Mechanics +1012.4244 +1102.0509 Group Theory +1102.1989 Theory +1102.2304 K-Theory and Homology +1105.0060 Information Theory +1105.3434 Phenomenology +1105.4597 Logic +1105.4960 Metric Geometry +1106.0275 +1106.4690 Number Theory +1107.1409 Information Theory +1107.2052 Probability +1107.5900 Other Condensed Matter +1109.3236 Phenomenology +1109.5428 +1110.1568 Strongly Correlated Electrons +1110.6450 +1111.0654 Information Theory +1111.2886 Theory +1111.4916 +1111.6101 Theory +1111.7090 Algebraic Topology +1112.0632 +1112.1091 Phenomenology +1112.2522 +1112.3280 +1112.3942 Mesoscale and Nanoscale Physics +1112.4270 Phenomenology +1112.5394 +1112.5983 Mesoscale and Nanoscale Physics +1201.0055 +1201.1257 Algebraic Geometry +1201.4877 +1201.6679 Analysis of PDEs +1202.0106 Phenomenology +1202.0528 Symplectic Geometry +1202.1794 Physics Education +1202.1888 Information Theory +1202.2905 Materials Science +1202.4719 Lattice +1202.5751 Disordered Systems and Neural Networks +1202.6292 Quantum Algebra +1202.6646 +1203.1518 Analysis of PDEs +1203.1834 Superconductivity +1203.2054 Strongly Correlated Electrons +1203.2539 Algebraic Geometry +1203.3944 General Physics +1203.5338 Theory +1203.5485 Databases +1203.5693 Mesoscale and Nanoscale Physics +1204.1473 +1204.1520 Optics +1204.3304 Materials Science +1204.3425 Computational Physics +1204.3605 Optics +1204.3880 Astrophysics of Galaxies +1204.4656 Applications +1204.4815 Strongly Correlated Electrons +1204.5843 Phenomenology +1204.6466 Phenomenology +1205.0269 High Energy Astrophysical Phenomena +1205.0504 Quantum Gases +1205.0757 Phenomenology +1205.0850 Analysis of PDEs +1205.1010 Social and Information Networks +1205.1678 Solar and Stellar Astrophysics +1205.3291 Theory +1205.5255 Statistical Mechanics +1206.0656 Solar and Stellar Astrophysics +1206.0804 Astrophysics of Galaxies +1206.0806 Combinatorics +1206.1189 Phenomenology +1206.1588 Optics +1206.1762 Numerical Analysis +1206.2631 Group Theory +1206.3448 Solar and Stellar Astrophysics +1206.3466 Operator Algebras +1206.3731 Group Theory +1206.3832 Probability +1206.3858 Soft Condensed Matter +1206.3873 High Energy Astrophysical Phenomena +1206.3925 Numerical Analysis +1206.4041 Statistical Mechanics +1206.4042 Computer Vision and Pattern Recognition +1206.4043 Cosmology and Nongalactic Astrophysics +1206.4065 Theory +1206.4069 Dynamical Systems +1206.4085 Probability +1206.4093 Mesoscale and Nanoscale Physics +1206.4105 Materials Science +1206.4106 Phenomenology +1206.4112 Physics and Society +1206.4116 Machine Learning +1206.4117 Phenomenology +1206.4120 Software Engineering +1206.4126 Cryptography and Security +1206.4127 Cosmology and Nongalactic Astrophysics +1206.4131 Accelerator Physics +1206.4132 Complex Variables +1206.4134 Analysis of PDEs +1206.4136 Numerical Analysis +1206.4139 Accelerator Physics +1206.4148 Optics +1206.4155 Cryptography and Security +1206.4160 Dynamical Systems +1206.4162 Probability +1206.4164 Data Structures and Algorithms +1206.4166 Computers and Society +1206.4167 Computers and Society +1206.4172 Numerical Analysis +1206.4174 Number Theory +1206.4175 Distributed, Parallel, and Cluster Computing +1206.4176 Optimization and Control +1206.4177 Rings and Algebras +1206.4184 +1206.4185 Robotics +1206.4191 Phenomenology +1206.4192 Information Theory +1206.4193 +1206.4196 Cosmology and Nongalactic Astrophysics +1206.4199 Mesoscale and Nanoscale Physics +1206.4203 +1206.4208 Other Statistics +1206.4213 Phenomenology +1206.4219 Instrumentation and Methods for Astrophysics +1206.4220 Theory +1206.4226 Information Theory +1206.4230 Statistical Mechanics +1206.4231 Materials Science +1206.4232 Optimization and Control +1206.4234 Programming Languages +1206.4236 Computational Complexity +1206.4240 Optimization and Control +1206.4242 Statistical Mechanics +1206.4243 General Physics +1206.4244 History and Philosophy of Physics +1206.4245 Information Theory +1206.4246 +1206.4251 Classical Physics +1206.4256 Cryptography and Security +1206.4257 Combinatorics +1206.4258 Geometric Topology +1206.4259 +1206.4264 Optics +1206.4266 Operator Algebras +1206.4267 Combinatorics +1206.4268 Classical Physics +1206.4273 Analysis of PDEs +1206.4274 Materials Science +1206.4278 Instrumentation and Methods for Astrophysics +1206.4279 Group Theory +1206.4282 Solar and Stellar Astrophysics +1206.4283 Other Computer Science +1206.4285 Statistics Theory +1206.4287 Mesoscale and Nanoscale Physics +1206.4288 +1206.4290 Solar and Stellar Astrophysics +1206.4291 Probability +1206.4294 Instrumentation and Detectors +1206.4295 Spectral Theory +1206.4300 Information Retrieval +hep-th/0502239 Theory +hep-th/0608040 Theory +math/0605002 Analysis of PDEs +0712.2824 Theory +0807.0244 Exactly Solvable and Integrable Systems +0907.3749 Representation Theory +1002.0066 +1003.1424 Theory +1005.3013 Phenomenology +1005.3439 Geophysics +1009.3316 High Energy Astrophysical Phenomena +1011.1308 +1011.1481 Statistical Mechanics +1011.5930 Quantum Algebra +1011.6549 Experiment +1012.0623 Optimization and Control +1012.1160 Astrophysics of Galaxies +1012.3245 Phenomenology +1102.2107 +1103.1889 Soft Condensed Matter +1104.4400 Representation Theory +1104.4537 Strongly Correlated Electrons +1105.3697 General Physics +1105.3699 General Physics +1106.1749 K-Theory and Homology +1106.3598 Algebraic Topology +1107.1509 Mesoscale and Nanoscale Physics +1107.3259 Biological Physics +1108.1097 Materials Science +1108.5384 Astrophysics of Galaxies +1109.2213 Superconductivity +1110.2004 +1110.3566 Combinatorics +1110.5690 Analysis of PDEs +1111.4678 Mesoscale and Nanoscale Physics +1111.5657 Algebraic Geometry +1111.7086 +1112.4381 Combinatorics +1112.5547 Computational Physics +1201.0157 High Energy Astrophysical Phenomena +1201.0519 Phenomenology +1201.4353 Earth and Planetary Astrophysics +1201.4587 Chaotic Dynamics +1201.4591 Chaotic Dynamics +1201.5957 Chaotic Dynamics +1201.5964 Chaotic Dynamics +1201.6151 Chaotic Dynamics +1202.0226 Chaotic Dynamics +1202.1931 +1202.5437 Differential Geometry +1202.6467 Group Theory +1203.1289 Atmospheric and Oceanic Physics +1203.2560 Lattice +1203.3122 Classical Physics +1203.3742 Optimization and Control +1203.4270 General Topology +1203.5893 Statistical Finance +1204.3094 Cosmology and Nongalactic Astrophysics +1204.3474 Strongly Correlated Electrons +1204.4003 Optics +1204.4935 Mesoscale and Nanoscale Physics +1204.5243 Methodology +1204.6274 Phenomenology +1205.1179 +1205.2974 Solar and Stellar Astrophysics +1205.5483 Earth and Planetary Astrophysics +1205.6343 Information Retrieval +1205.6716 Functional Analysis +1206.0844 Phenomenology +1206.0920 Quantum Gases +1206.1474 Analysis of PDEs +1206.1802 Phenomenology +1206.1864 Neurons and Cognition +1206.2303 Statistical Mechanics +1206.3067 +1206.3077 +1206.6909 +1207.0461 Theory +1207.2501 Superconductivity +1207.3783 Strongly Correlated Electrons +1207.4309 Other Statistics +1207.5643 Combinatorics +1207.6364 Materials Science +1207.6677 Information Theory +1207.7271 Materials Science +1208.1702 +1208.2642 Optics +1208.2709 Mesoscale and Nanoscale Physics +1208.5278 Rings and Algebras +1208.6180 Instrumentation and Methods for Astrophysics +1209.0966 Group Theory +1209.1004 Geometric Topology +1209.1324 Mesoscale and Nanoscale Physics +1209.2231 +1209.2831 Phenomenology +1209.3592 Lattice +1209.3812 +1209.3832 Representation Theory +1209.3959 +1209.4007 Algebraic Geometry +1209.4057 History and Philosophy of Physics +1209.4234 Accelerator Physics +1209.4295 +1209.4350 Phenomenology +1209.4364 Experiment +1209.4365 Optimization and Control +1209.4368 Materials Science +1209.4369 Probability +1209.4371 Cosmology and Nongalactic Astrophysics +1209.4373 Differential Geometry +1209.4379 +1209.4381 Earth and Planetary Astrophysics +1209.4383 Information Theory +1209.4384 Experiment +1209.4390 General Physics +1209.4392 Experiment +1209.4400 Materials Science +1209.4404 Algebraic Geometry +1209.4405 Information Theory +1209.4408 Distributed, Parallel, and Cluster Computing +1209.4409 High Energy Astrophysical Phenomena +1209.4410 Symplectic Geometry +1209.4412 +1209.4413 Popular Physics +1209.4419 Computer Vision and Pattern Recognition +1209.4420 Computer Vision and Pattern Recognition +1209.4424 Subcellular Processes +1209.4425 Information Theory +1209.4434 Cosmology and Nongalactic Astrophysics +1209.4438 Combinatorics +1209.4439 Optics +1209.4443 Statistical Mechanics +1209.4444 Information Theory +1209.4445 Artificial Intelligence +1209.4450 Plasma Physics +1209.4451 Physics Education +1209.4452 Combinatorics +1209.4453 Software Engineering +1209.4455 +1209.4456 Combinatorics +1209.4459 Mesoscale and Nanoscale Physics +1209.4463 Robotics +1209.4467 Optics +1209.4471 Computation and Language +1209.4472 Theory +1209.4475 Chaotic Dynamics +1209.4476 Theory +1209.4477 Experiment +1209.4479 Information Retrieval +1209.4482 Classical Analysis and ODEs +1209.4485 Distributed, Parallel, and Cluster Computing +1209.4487 Populations and Evolution +1209.4489 +1209.4492 Mesoscale and Nanoscale Physics +1209.4493 Data Structures and Algorithms +1209.4495 Methodology +1209.4497 Functional Analysis +1209.4500 Representation Theory +1209.4507 Soft Condensed Matter +1209.4508 Data Structures and Algorithms +1209.4509 Algebraic Geometry +1209.4511 Soft Condensed Matter +1209.4513 Soft Condensed Matter +1209.4515 Algebraic Geometry +1209.4516 Soft Condensed Matter +1209.4519 Materials Science +1209.4520 Dynamical Systems +1209.4525 Differential Geometry +1209.4527 Networking and Internet Architecture +1209.4529 Soft Condensed Matter +1209.4532 Artificial Intelligence +1209.4535 Artificial Intelligence +1209.4537 Probability +1209.4540 Theory +1209.4546 Materials Science +1209.4549 Atmospheric and Oceanic Physics +1209.4551 Applications +1209.4554 Data Structures and Algorithms +1209.4565 Quantum Algebra +1209.4569 Accelerator Physics +1209.4574 Accelerator Physics +1209.4577 Experiment +1209.4586 Classical Analysis and ODEs +1209.4587 Functional Analysis +1209.4589 Geometric Topology +1209.4590 Solar and Stellar Astrophysics +1209.4591 Number Theory +1209.4592 Probability +1209.4593 Mesoscale and Nanoscale Physics +1209.4597 Rings and Algebras +1209.4600 Operating Systems +1209.4601 Differential Geometry +1209.4605 Data Structures and Algorithms +1209.4609 Optimization and Control +1209.4612 Information Theory +1209.4614 Number Theory +1209.4615 Accelerator Physics +1209.4619 Functional Analysis +1209.4621 Cryptography and Security +1209.4622 +1209.4623 Data Structures and Algorithms +1209.4627 Differential Geometry +1209.4628 Combinatorics +1209.4629 Trading and Market Microstructure +1209.4631 Algebraic Geometry +cond-mat/0410515 Other Condensed Matter +gr-qc/0607070 +math/0403413 Algebraic Topology +math/0607077 Combinatorics +0706.3918 Operator Algebras +0709.0670 Data Structures and Algorithms +0709.2618 Networking and Internet Architecture +0710.0157 Logic +0711.2591 Logic +0711.3930 Operator Algebras +0712.0103 +0801.1912 Logic +0802.2059 Populations and Evolution +0802.4083 Quantum Algebra +0808.1686 Geometric Topology +0809.1593 Cryptography and Security +0809.4010 Representation Theory +0903.2197 Commutative Algebra +0903.5463 Methodology +0905.1542 +0906.5445 +0906.5557 Combinatorics +0907.1179 Fluid Dynamics +0909.4577 Combinatorics +0910.0509 Molecular Networks +0911.0604 +0911.2377 Mesoscale and Nanoscale Physics +0911.3030 Mesoscale and Nanoscale Physics +0911.3962 Classical Analysis and ODEs +0912.1126 Data Analysis, Statistics and Probability +1001.1571 Combinatorics +1001.3053 Information Theory +1001.4647 General Physics +1002.0428 Superconductivity +1002.0445 Differential Geometry +1002.0873 Materials Science +1003.4707 Logic +1003.4760 Analysis of PDEs +1004.0371 Quantum Algebra +1005.2714 Populations and Evolution +1005.2837 Theory +1006.2316 Algebraic Topology +1007.0567 Optimization and Control +1009.0240 Social and Information Networks +1009.3033 Plasma Physics +1010.2571 Information Theory +1010.5454 Dynamical Systems +1011.1344 General Physics +1011.1380 Lattice +1011.4126 Representation Theory +1011.6173 Statistical Mechanics +1012.1644 Materials Science +1012.4156 Theory +1012.4188 Statistics Theory +1012.4864 Rings and Algebras +1012.5528 Dynamical Systems +1101.2870 Mesoscale and Nanoscale Physics +1101.2971 +1101.3366 Optics +1101.4320 Functional Analysis +1102.1075 Probability +1102.5285 Optics +1102.5486 +1102.5667 +1103.3076 Numerical Analysis +1103.4770 Logic +1103.5766 Representation Theory +1104.2630 Combinatorics +1104.4215 Mesoscale and Nanoscale Physics +1104.4399 Representation Theory +1104.4778 Theory +1105.1557 Theory +1105.2007 +1105.3588 Mesoscale and Nanoscale Physics +1105.3857 General Physics +1105.4266 Analysis of PDEs +1105.6021 Strongly Correlated Electrons +1105.6266 Algebraic Geometry +1106.0227 Soft Condensed Matter +1106.2635 Representation Theory +1106.2756 Cryptography and Security +1106.5458 +1106.5826 Learning +1106.6155 Algebraic Geometry +1107.1410 Combinatorics +1107.3258 Learning +1107.3460 History and Philosophy of Physics +1107.3687 Differential Geometry +1107.5681 Optimization and Control +1108.0238 Classical Analysis and ODEs +1108.0244 Classical Analysis and ODEs +1108.0341 Theory +1108.0450 Pattern Formation and Solitons +1108.0759 Disordered Systems and Neural Networks +1108.1777 Plasma Physics +1108.2072 Materials Science +1108.2148 Algebraic Geometry +1109.0668 Combinatorics +1109.3975 Number Theory +1109.4136 Analysis of PDEs +1109.5167 Soft Condensed Matter +1109.5405 +1109.6137 Mesoscale and Nanoscale Physics +1109.6644 Theory +1110.0358 Superconductivity +1110.0581 Probability +1110.1074 Theory +1110.1501 Optics +1110.1948 Lattice +1110.2895 Phenomenology +1110.3027 +1110.3157 +1110.4081 Cosmology and Nongalactic Astrophysics +1110.4632 Strongly Correlated Electrons +1110.4861 +1110.5713 Statistical Mechanics +1110.6015 Classical Analysis and ODEs +1110.6133 Instrumentation and Detectors +1110.6910 +1111.0550 Quantum Gases +1111.1881 Statistical Mechanics +1111.2054 Superconductivity +1111.3009 +1111.3313 Disordered Systems and Neural Networks +1111.3734 Statistical Mechanics +1111.4396 Phenomenology +1111.5764 Cosmology and Nongalactic Astrophysics +1111.6364 Differential Geometry +1111.6403 +1111.6430 Superconductivity +1111.6503 Strongly Correlated Electrons +1111.6509 Statistical Mechanics +1111.7145 +1112.0442 Performance +1112.1222 General Physics +1112.1509 Combinatorics +1112.2924 Theory +1112.3536 Phenomenology +1112.4236 Information Theory +1112.5225 Phenomenology +1112.6411 Learning +1201.0041 Numerical Analysis +1201.0528 Soft Condensed Matter +1201.1284 Strongly Correlated Electrons +1201.1509 Mesoscale and Nanoscale Physics +1201.1776 Computer Science and Game Theory +1201.1880 Superconductivity +1201.4525 Statistical Mechanics +1201.5825 Operator Algebras +1201.5894 Logic +1201.5956 Materials Science +1201.6165 Dynamical Systems +1202.0375 Superconductivity +1202.0411 Category Theory +1202.1163 Numerical Analysis +1202.1534 Disordered Systems and Neural Networks +1202.2147 +1202.2334 Complex Variables +1202.2627 Group Theory +1202.3266 Chemical Physics +1202.3856 Numerical Analysis +1202.4105 Phenomenology +1202.4199 Group Theory +1202.4608 Phenomenology +1202.4672 Dynamical Systems +1202.4741 Computer Science and Game Theory +1202.4858 Functional Analysis +1202.4976 Combinatorics +1202.5100 +1202.5127 Computational Geometry +1202.5133 +1202.5286 Algebraic Topology +1202.5550 Chemical Physics +1202.5567 Instrumentation and Detectors +1202.5569 Probability +1202.5571 Experiment +1202.5572 Algebraic Geometry +1202.5573 Classical Analysis and ODEs +1202.5574 Pricing of Securities +1202.5575 Quantum Algebra +1202.5576 Materials Science +1202.5577 Optics +1202.5578 Differential Geometry +1202.5580 Optics +1202.5594 Soft Condensed Matter +1202.5596 Mesoscale and Nanoscale Physics +1202.5600 Artificial Intelligence +1202.5610 Computational Geometry +1202.5611 +1202.5613 Optics +1202.5614 Combinatorics +1202.5618 Social and Information Networks +1202.5621 Numerical Analysis +1202.5622 Analysis of PDEs +1202.5627 Combinatorics +1202.5628 Accelerator Physics +1202.5638 Probability +1202.5640 Probability +1202.5644 Phenomenology +1202.5646 Phenomenology +1202.5647 Experiment +1202.5648 Statistical Mechanics +1202.5651 Materials Science +1202.5652 Phenomenology +1202.5654 Combinatorics +1202.5655 Strongly Correlated Electrons +1202.5657 Optimization and Control +1202.5659 Atmospheric and Oceanic Physics +1202.5662 Optimization and Control +1202.5667 Systems and Control +1202.5670 Data Structures and Algorithms +1202.5674 Systems and Control +1202.5677 Systems and Control +1202.5680 Systems and Control +1202.5681 Optics +1202.5683 Systems and Control +1202.5684 Systems and Control +1202.5686 Systems and Control +1202.5688 Optimization and Control +1202.5689 Systems and Control +1202.5690 Systems and Control +1202.5691 Symplectic Geometry +1202.5692 Systems and Control +1202.5693 Systems and Control +1202.5694 Geometric Topology +1202.5696 Operator Algebras +1202.5698 Representation Theory +1202.5703 Complex Variables +1202.5713 Social and Information Networks +1202.5715 Computational Geometry +1202.5718 Combinatorics +1202.5719 Strongly Correlated Electrons +1202.5720 Combinatorics +1202.5721 Combinatorics +1202.5722 Cryptography and Security +1202.5725 Group Theory +1202.5726 +1202.5728 Classical Analysis and ODEs +1202.5731 Cosmology and Nongalactic Astrophysics +1202.5732 Number Theory +1202.5736 Group Theory +1202.5739 Algebraic Geometry +1202.5740 Classical Analysis and ODEs +1202.5741 +1202.5744 +1202.5747 Mesoscale and Nanoscale Physics +1202.5749 Data Structures and Algorithms +1202.5758 Analysis of PDEs +1202.5762 Combinatorics +1202.5765 Data Analysis, Statistics and Probability +1202.5770 Popular Physics +1202.5771 Materials Science +1202.5772 Number Theory +1202.5773 Physics Education +1202.5774 Number Theory +1202.5776 Number Theory +1202.5777 Number Theory +1202.5778 Number Theory +1202.5781 Phenomenology +1202.5782 Commutative Algebra +1202.5783 Neurons and Cognition +1202.5784 Quantum Gases +1202.5785 Number Theory +1202.5788 Metric Geometry +1202.5789 +1202.5791 High Energy Astrophysical Phenomena +1202.5794 +1202.5795 Logic +1202.5798 Mesoscale and Nanoscale Physics +1202.5804 Cosmology and Nongalactic Astrophysics +1202.5813 Logic +1202.5818 Solar and Stellar Astrophysics +1202.5819 Rings and Algebras +1202.5820 Information Retrieval +1202.5826 Software Engineering +1202.5830 Information Theory +1202.5832 Instrumentation and Detectors +1202.5835 Differential Geometry +1202.5838 Functional Analysis +1202.5840 Geophysics +1202.5843 Soft Condensed Matter +1202.5850 Logic in Computer Science +1202.5857 Information Theory +1202.5858 Methodology +1202.5860 Accelerator Physics +1202.5864 Experiment +1202.5866 Optics +1202.5867 Phenomenology +1202.5868 Disordered Systems and Neural Networks +1202.5870 Earth and Planetary Astrophysics +1202.5876 Chemical Physics +1202.5878 Dynamical Systems +1202.5880 Applications +1202.5883 Methodology +1202.5889 Algebraic Geometry +1202.5890 Optimization and Control +1202.5893 Computational Physics +1202.5901 Applications +1202.5910 Solar and Stellar Astrophysics +1202.5913 Populations and Evolution +1202.5914 Applications +1202.5919 Software Engineering +1202.5924 Complex Variables +1202.5926 General Finance +1202.5929 Phenomenology +1202.5930 Functional Analysis +1202.5931 Molecular Networks +1202.5938 Robotics +1202.5941 Networking and Internet Architecture +1202.5942 Phenomenology +1202.5947 Combinatorics +1202.5948 General Mathematics +1202.5952 Accelerator Physics +1202.5953 Neural and Evolutionary Computing +1202.5957 Computation +1202.5958 Quantum Algebra +1202.5964 Mathematical Software +1202.5967 Information Theory +1202.5968 Computation +1202.5979 Soft Condensed Matter +1202.5981 Logic +1202.5985 Data Structures and Algorithms +1202.5986 Number Theory +1202.5987 Accelerator Physics +1202.5988 Algebraic Geometry +1202.5995 Solar and Stellar Astrophysics +1202.5996 Instrumentation and Detectors +1202.5999 Methodology +1202.6006 Materials Science +1202.6009 Artificial Intelligence +1202.6013 Experiment +1202.6014 +1202.6019 Number Theory +1202.6020 Number Theory +1202.6022 Number Theory +1202.6023 Combinatorics +1202.6027 Populations and Evolution +1202.6028 Functional Analysis +1202.6038 Networking and Internet Architecture +1202.6040 Solar and Stellar Astrophysics +1202.6046 Methodology +cs/0507040 Learning +math/0110248 Algebraic Geometry +math/0205286 Quantum Algebra +math/0211452 Algebraic Geometry +math/0307018 Algebraic Geometry +math/0310314 Representation Theory +math/0409411 Representation Theory +math/0411105 Representation Theory +math/0511381 Probability +physics/0412038 Classical Physics +0712.3088 Logic in Computer Science +0803.3244 Algebraic Topology +0902.3544 Mesoscale and Nanoscale Physics +0902.4348 Logic in Computer Science +0905.2370 Dynamical Systems +0910.0676 Algebraic Geometry +0910.5438 Materials Science +0911.1103 Algebraic Geometry +1002.1516 Group Theory +1002.4852 Theory +1003.3723 Metric Geometry +1004.4522 Data Analysis, Statistics and Probability +1005.5484 Strongly Correlated Electrons +1006.4088 Information Theory +1007.1375 Combinatorics +1009.0870 Data Structures and Algorithms +1102.0785 Experiment +1102.5637 Chaotic Dynamics +1104.1402 Quantum Gases +1104.2856 Materials Science +1104.5527 Theory +1105.1476 Computation +1106.0014 Earth and Planetary Astrophysics +1106.5219 Mesoscale and Nanoscale Physics +1107.3624 Strongly Correlated Electrons +1107.4405 Strongly Correlated Electrons +1108.2011 Populations and Evolution +1108.3062 Optics +1109.2401 Quantum Gases +1110.0280 Earth and Planetary Astrophysics +1110.0283 Earth and Planetary Astrophysics +1110.0780 Dynamical Systems +1110.1358 Data Structures and Algorithms +1110.5539 Optics +1112.0291 +1112.0765 Optimization and Control +1112.2396 Programming Languages +1112.3949 Materials Science +1112.4457 Quantum Gases +1201.6323 Mesoscale and Nanoscale Physics +1201.6544 Statistical Finance +1202.0928 +1202.3535 Data Analysis, Statistics and Probability +1203.0470 +1203.2635 Cosmology and Nongalactic Astrophysics +1203.4922 Mesoscale and Nanoscale Physics +1203.5508 Algebraic Geometry +1204.0048 Quantum Gases +1204.0570 Superconductivity +1204.2565 Strongly Correlated Electrons +1204.3398 Populations and Evolution +1204.3760 Molecular Networks +1204.3824 Strongly Correlated Electrons +1204.4924 +1204.5625 Statistical Mechanics +1204.6278 Group Theory +1204.6596 +1205.0105 Optics +1205.2976 +1205.3483 Quantum Gases +1205.4536 Quantum Gases +1205.4912 Data Analysis, Statistics and Probability +1205.5602 Information Theory +1205.5603 Information Theory +1205.5941 +1205.6952 +1205.7080 Analysis of PDEs +1206.0796 High Energy Astrophysical Phenomena +1206.1311 Populations and Evolution +1206.4171 +1206.4248 Strongly Correlated Electrons +1206.6144 Analysis of PDEs +1206.6203 Strongly Correlated Electrons +1207.0752 Methodology +1207.3013 Superconductivity +1207.3572 Information Theory +1207.4287 Experiment +1207.6722 Cosmology and Nongalactic Astrophysics +1208.1395 Mesoscale and Nanoscale Physics +1208.2220 Differential Geometry +1208.4133 Strongly Correlated Electrons +1208.4333 Combinatorics +1208.5539 +1208.5825 Fluid Dynamics +1209.0131 Differential Geometry +1209.0809 Dynamical Systems +1209.1185 +1209.1390 Cosmology and Nongalactic Astrophysics +1209.1395 Cosmology and Nongalactic Astrophysics +1209.1399 Multimedia +1209.1405 Cosmology and Nongalactic Astrophysics +1209.1412 Populations and Evolution +1209.1420 Number Theory +1209.1422 Programming Languages +1209.1425 Databases +1209.1428 Multiagent Systems +1209.1431 Probability +1209.1432 Logic in Computer Science +1209.1433 Software Engineering +1209.1434 Systems and Control +1209.1435 Discrete Mathematics +1209.1436 Logic in Computer Science +1209.1437 +1209.1443 Group Theory +1209.1448 Soft Condensed Matter +1209.1450 Machine Learning +1209.1451 Statistical Mechanics +1209.1452 +1209.1454 Category Theory +1209.1456 Analysis of PDEs +1209.1457 Functional Analysis +1209.1458 Functional Analysis +1209.1459 Algebraic Geometry +1209.1460 Functional Analysis +1209.1461 Functional Analysis +1209.1462 Functional Analysis +1209.1465 Phenomenology +1209.1467 Other Quantitative Biology +1209.1474 Combinatorics +1209.1481 Information Retrieval +1209.1490 Differential Geometry +1209.1495 Analysis of PDEs +1209.1496 Combinatorics +1209.1507 Algebraic Topology +1209.1512 Solar and Stellar Astrophysics +1209.1517 Analysis of PDEs +1209.1521 Representation Theory +1209.1523 +1209.1526 Analysis of PDEs +1209.1538 Chemical Physics +1209.1539 +1209.1540 History and Philosophy of Physics +1209.1546 Phenomenology +1209.1551 Software Engineering +1209.1553 Rings and Algebras +1209.1554 Probability +1209.1556 Analysis of PDEs +1209.1558 Computer Vision and Pattern Recognition +1209.1563 Computer Vision and Pattern Recognition +1209.1566 Chaotic Dynamics +1209.1567 Functional Analysis +1209.1568 Functional Analysis +1209.1574 Solar and Stellar Astrophysics +1209.1578 Symplectic Geometry +1209.1581 +1209.1588 Methodology +1209.1591 Experiment +1209.1592 Geometric Topology +1209.1594 Superconductivity +1209.1597 Discrete Mathematics +1209.1600 Quantum Gases +1209.1605 Differential Geometry +1209.1608 Materials Science +1209.1613 +1209.1617 Populations and Evolution +1209.1619 General Topology +math/0504264 Classical Analysis and ODEs +0710.3633 Group Theory +0805.2824 +0806.2918 Statistical Mechanics +0902.4355 +0903.1184 High Energy Astrophysical Phenomena +0903.1480 Statistical Mechanics +0906.0829 Operator Algebras +0906.3682 Information Theory +0907.1431 Probability +0907.3644 +0908.2250 High Energy Astrophysical Phenomena +0909.0671 Statistical Mechanics +0909.2763 Algebraic Geometry +0911.1118 Algebraic Geometry +0912.4615 Algebraic Geometry +1002.0317 K-Theory and Homology +1004.2934 Materials Science +1005.1893 Probability +1007.0867 Complex Variables +1008.3957 Atomic Physics +1009.0704 Algebraic Geometry +1009.3637 Algebraic Geometry +1009.5134 Superconductivity +1010.0842 Computation +1010.3463 General Topology +1010.4768 +1011.1205 High Energy Astrophysical Phenomena +1011.2507 Differential Geometry +1011.3529 +1011.5267 Quantum Algebra +1012.1149 Representation Theory +1012.2857 Number Theory +1101.1839 Statistical Mechanics +1101.6052 Analysis of PDEs +1102.0473 Analysis of PDEs +1102.0880 Mesoscale and Nanoscale Physics +1102.0881 Materials Science +1102.2257 Statistical Mechanics +1102.3685 Plasma Physics +1102.3831 +1103.1541 Lattice +1103.2648 Computer Science and Game Theory +1104.1999 Representation Theory +1105.3095 Functional Analysis +1105.5180 Number Theory +1106.1104 Dynamical Systems +1106.3247 Chaotic Dynamics +1106.5442 Probability +1107.3462 Numerical Analysis +1107.5168 General Physics +1107.5571 Strongly Correlated Electrons +1108.0674 Cosmology and Nongalactic Astrophysics +1108.0696 Mesoscale and Nanoscale Physics +1108.2991 Numerical Analysis +1108.3997 Statistical Mechanics +1108.4213 Numerical Analysis +1108.4846 Statistical Mechanics +1109.0579 Differential Geometry +1109.1567 +1109.3849 Theory +1109.5215 +1110.1571 Mesoscale and Nanoscale Physics +1110.1662 Materials Science +1110.3026 +1110.4227 Complex Variables +1110.5454 Machine Learning +1110.6270 Materials Science +1110.6700 Materials Science +1111.1589 Algebraic Geometry +1111.3400 Dynamical Systems +1111.3842 +1111.4940 Strongly Correlated Electrons +1111.5559 Representation Theory +1111.6184 Mesoscale and Nanoscale Physics +1111.6275 Strongly Correlated Electrons +1112.0088 Combinatorics +1112.0239 Plasma Physics +1112.0787 Optimization and Control +1112.1194 Soft Condensed Matter +1112.2722 Superconductivity +1112.3184 Astrophysics of Galaxies +1112.3948 Solar and Stellar Astrophysics +1112.4034 Mesoscale and Nanoscale Physics +1112.5784 +1112.5957 Databases +1112.6062 Phenomenology +1112.6175 Lattice +1201.0518 Number Theory +1201.0658 Probability +1201.2862 +1201.5181 General Topology +1201.5586 Probability +1201.6294 Functional Analysis +1201.6542 Theory +1202.0518 +1202.0603 Algebraic Geometry +1202.0879 Materials Science +1202.1208 Algebraic Topology +1202.2067 Mesoscale and Nanoscale Physics +1202.2241 Metric Geometry +1202.2639 +1202.2931 Classical Analysis and ODEs +1202.3093 Number Theory +1202.4990 Computational Physics +1202.5052 +1203.0102 +1203.0264 Optimization and Control +1203.1365 Methodology +1203.3144 Mesoscale and Nanoscale Physics +1203.5273 Quantum Gases +1203.5592 +1203.5872 +1204.0021 Mesoscale and Nanoscale Physics +1204.0198 Logic +1204.0444 Disordered Systems and Neural Networks +1204.0491 Physics and Society +1204.0603 Atomic Physics +1204.1099 Materials Science +1204.1580 Functional Analysis +1204.1890 +1204.4134 Disordered Systems and Neural Networks +1204.4785 Theory +1204.5734 Combinatorics +1204.6185 Plasma Physics +1205.0098 Populations and Evolution +1205.0346 Metric Geometry +1205.1118 Mesoscale and Nanoscale Physics +1205.1123 Combinatorics +1205.2291 Theory +1205.2463 Superconductivity +1205.3400 Strongly Correlated Electrons +1205.4424 Phenomenology +1205.4685 Analysis of PDEs +1205.4707 +1205.4932 Quantitative Methods +1205.5583 Functional Analysis +1205.6435 High Energy Astrophysical Phenomena +1205.6601 +1205.6905 +1206.0060 Materials Science +1206.0534 Atomic Physics +1206.0546 Phenomenology +1206.1006 Strongly Correlated Electrons +1206.1023 Algebraic Geometry +1206.1062 Strongly Correlated Electrons +1206.1077 Cryptography and Security +1206.1105 Social and Information Networks +1206.1303 Lattice +1206.3479 Mesoscale and Nanoscale Physics +1206.4078 Materials Science +1206.4481 Numerical Analysis +1206.4792 Strongly Correlated Electrons +1206.5359 Number Theory +1206.5760 Materials Science +1206.6525 Materials Science +1206.6956 Mesoscale and Nanoscale Physics +1207.0860 Category Theory +1207.0988 Logic in Computer Science +1207.1901 +1207.2055 Classical Analysis and ODEs +1207.2590 Superconductivity +1207.2859 High Energy Astrophysical Phenomena +1207.4083 Information Theory +1207.5689 Experiment +1207.6108 Phenomenology +1208.0976 Differential Geometry +1208.1994 Combinatorics +1208.2941 Quantum Gases +1208.3015 Artificial Intelligence +1208.3158 Solar and Stellar Astrophysics +1208.4220 Optics +1208.4894 Chemical Physics +1208.4966 Superconductivity +1208.5152 Phenomenology +1208.5515 Analysis of PDEs +1208.5573 Materials Science +1208.5733 +1208.6174 Data Analysis, Statistics and Probability +1208.6354 Experiment +1208.6494 Functional Analysis +1209.0107 Phenomenology +1209.0252 +1209.0490 Human-Computer Interaction +1209.0847 General Topology +1209.0874 +1209.1144 Analysis of PDEs +1209.1224 Computer Vision and Pattern Recognition +1209.1328 +1209.1494 Populations and Evolution +1209.1514 Mesoscale and Nanoscale Physics +1209.1584 Analysis of PDEs +1209.1645 Data Structures and Algorithms +1209.1652 Information Theory +1209.1654 Molecular Networks +1209.1656 Materials Science +1209.1670 Probability +1209.1671 Cosmology and Nongalactic Astrophysics +1209.1673 Multimedia +1209.1675 Phenomenology +1209.1677 Rings and Algebras +1209.1678 Cryptography and Security +1209.1682 Discrete Mathematics +1209.1683 Complex Variables +1209.1691 Representation Theory +1209.1692 Materials Science +1209.1693 +1209.1695 Systems and Control +1209.1697 Number Theory +1209.1698 Computer Science and Game Theory +1209.1699 Software Engineering +1209.1700 Networking and Internet Architecture +1209.1705 General Finance +1209.1706 Methodology +1209.1708 Chaotic Dynamics +1209.1710 Space Physics +1209.1711 Programming Languages +1209.1713 Optimization and Control +1209.1718 Rings and Algebras +1209.1719 Information Retrieval +1209.1720 Representation Theory +1209.1721 Numerical Analysis +1209.1723 Superconductivity +1209.1727 Machine Learning +1209.1729 Optimization and Control +1209.1730 Combinatorics +1209.1732 Algebraic Geometry +1209.1733 Optimization and Control +1209.1734 Software Engineering +1209.1739 Learning +1209.1744 Optics +1209.1749 +1209.1753 Dynamical Systems +1209.1755 +1209.1756 Solar and Stellar Astrophysics +1209.1764 Dynamical Systems +1209.1765 Chaotic Dynamics +1209.1766 Numerical Analysis +1209.1771 +1209.1777 +1209.1784 Differential Geometry +1209.1786 Astrophysics of Galaxies +1209.1788 Computer Vision and Pattern Recognition +1209.1789 Combinatorics +1209.1792 Probability +1209.1793 Numerical Analysis +1209.1794 Databases +1209.1795 +1209.1799 Classical Analysis and ODEs +1209.1800 Learning +1209.1801 Differential Geometry +1209.1803 Cryptography and Security +1209.1806 Representation Theory +1209.1807 Combinatorics +1209.1808 Numerical Analysis +1209.1809 Combinatorics +1209.1817 Phenomenology +1209.1818 Statistical Mechanics +1209.1820 Metric Geometry +1209.1822 Functional Analysis +1209.1823 +1209.1824 Optimization and Control +1209.1825 +1209.1830 Data Analysis, Statistics and Probability +1209.1831 General Physics +1209.1833 Earth and Planetary Astrophysics +1209.1842 Combinatorics +1209.1847 +1209.1849 Functional Analysis +1209.1853 General Physics +1209.1854 Phenomenology +1209.1859 Human-Computer Interaction +1209.1860 Representation Theory +1209.1862 Solar and Stellar Astrophysics +1209.1864 Operator Algebras +1209.1867 Algebraic Geometry +1209.1868 Algebraic Geometry +1209.1872 Dynamical Systems +1209.1875 Phenomenology +1209.1877 Instrumentation and Methods for Astrophysics +1209.1879 Representation Theory +1209.1885 Logic in Computer Science +1209.1887 Networking and Internet Architecture +1209.1888 Atmospheric and Oceanic Physics +1209.1889 Atmospheric and Oceanic Physics +1209.1899 Artificial Intelligence +1209.1905 Logic in Computer Science +1209.1907 Space Physics +1209.1910 Numerical Analysis +1209.1912 Molecular Networks +1209.1924 Analysis of PDEs +1209.1927 Populations and Evolution +1209.1932 Category Theory +1209.1933 Differential Geometry +1209.1937 Statistical Mechanics +1209.1943 Logic in Computer Science +1209.1944 Numerical Analysis +1209.1946 Probability +1209.1949 Cryptography and Security +1209.1951 Phenomenology +1209.1952 Algebraic Topology +1209.1956 +1209.1958 High Energy Astrophysical Phenomena +1209.1960 Learning +1209.1966 +1209.1969 +1209.1970 Materials Science +1209.1971 +1209.1975 Theory +1209.1977 Discrete Mathematics +1209.1980 Algebraic Geometry +1209.1982 General Physics +1209.1988 Statistics Theory +1209.1994 Methodology +1209.1996 Machine Learning +1209.2005 Mesoscale and Nanoscale Physics +1209.2008 Dynamical Systems +1209.2010 Dynamical Systems +1209.2011 Solar and Stellar Astrophysics +1209.2012 Programming Languages +1209.2013 Statistics Theory +1209.2018 Combinatorics +1209.2026 Algebraic Geometry +1209.2038 Combinatorics +1209.2041 Mesoscale and Nanoscale Physics +1209.2046 Other Condensed Matter +1209.2048 Numerical Analysis +1209.2052 Optics +1209.2054 Plasma Physics +1209.2070 Multimedia +1209.2071 Solar and Stellar Astrophysics +1209.2076 Applications +1209.2080 Astrophysics of Galaxies +1209.2083 Plasma Physics +1209.2089 Genomics +1209.2093 Representation Theory +1209.2095 +1209.2096 Genomics +1209.2097 Digital Libraries +1209.2101 Strongly Correlated Electrons +1209.2104 Differential Geometry +math/0301213 Probability +math/0401064 Algebraic Geometry +math/0505672 Probability +math/0506444 Algebraic Geometry +math/0511415 Algebraic Geometry +math/0512594 Geometric Topology +math/0611613 Probability +math/0701885 Algebraic Geometry +math/0702718 Differential Geometry +quant-ph/0301168 +1206.4008 Methodology +0704.1962 +0705.1008 Differential Geometry +0709.3706 Materials Science +0709.4374 Materials Science +0711.1517 Combinatorics +0803.0687 Rings and Algebras +0804.1519 Materials Science +0805.2175 Experiment +0810.1837 Soft Condensed Matter +0811.1836 Other Condensed Matter +0812.3044 Quantum Algebra +0902.4506 +0903.1413 Representation Theory +0903.2808 Soft Condensed Matter +0903.2812 Soft Condensed Matter +0908.2054 Rings and Algebras +1001.0466 Algebraic Geometry +1002.0783 Discrete Mathematics +1005.3148 Networking and Internet Architecture +1006.0187 History and Philosophy of Physics +1006.0528 +1006.1137 +1006.1139 +1006.5722 History and Overview +1007.0485 Phenomenology +1007.3635 +1011.2106 Cosmology and Nongalactic Astrophysics +1011.4791 Theory +1012.3481 +1012.4234 Number Theory +1102.1346 Geometric Topology +1102.2146 Populations and Evolution +1103.4374 Rings and Algebras +1103.5500 Quantum Algebra +1105.4991 Cryptography and Security +1106.0322 Applications +1106.2636 Classical Analysis and ODEs +1106.3765 Combinatorics +1107.0338 Phenomenology +1107.5127 +1107.5472 Computational Physics +1108.1340 Atmospheric and Oceanic Physics +1108.2636 Soft Condensed Matter +1108.3401 Classical Analysis and ODEs +1108.3790 Combinatorics +1109.2893 Biological Physics +1109.4252 Plasma Physics +1110.3271 Physics and Society +1111.1745 Algebraic Geometry +1111.4241 Cosmology and Nongalactic Astrophysics +1111.5629 Combinatorics +1111.5792 Cryptography and Security +1112.0156 Combinatorics +1201.1918 Mesoscale and Nanoscale Physics +1201.4849 Probability +1202.0576 Analysis of PDEs +1202.1165 Differential Geometry +1202.6268 Geometric Topology +1203.0319 +1203.3727 Discrete Mathematics +1203.4353 Superconductivity +1203.4893 Phenomenology +1204.1022 Applications +1204.1302 +1204.2502 Atomic Physics +1204.2761 Biological Physics +1204.4038 Mesoscale and Nanoscale Physics +1204.4410 Algebraic Geometry +1204.5489 Combinatorics +1204.6310 Strongly Correlated Electrons +1204.6341 Information Theory +1205.0945 +1205.1174 Dynamical Systems +1205.3431 Cosmology and Nongalactic Astrophysics +1205.4043 +1205.4773 +1205.5693 Superconductivity +1205.5932 Combinatorics +1206.2080 Theory +1206.2234 Chemical Physics +1207.0671 +1207.5525 +1207.6729 +1208.1393 Theory +1208.2481 Number Theory +1208.5453 Algebraic Geometry +1208.6163 Probability +1208.6532 +1209.0379 Phenomenology +1209.4117 Atomic Physics +1209.4385 Statistical Mechanics +1209.4430 Complex Variables +1209.4679 Information Theory +1210.0327 +1210.1429 Algebraic Topology +1210.1840 Physics and Society +1210.3379 Strongly Correlated Electrons +1210.3681 Algebraic Geometry +1210.4206 Superconductivity +1210.4582 Numerical Analysis +1210.5100 Algebraic Topology +1210.5129 Differential Geometry +1210.5803 +1210.6129 Representation Theory +1210.6218 Earth and Planetary Astrophysics +1210.6239 Phenomenology +1210.6275 Artificial Intelligence +1210.6511 Neural and Evolutionary Computing +1210.6513 High Energy Astrophysical Phenomena +1210.6628 Algebraic Geometry +1210.6650 Cosmology and Nongalactic Astrophysics +1210.6656 Earth and Planetary Astrophysics +1210.6659 +1210.6667 Combinatorics +1210.6671 Materials Science +1210.6675 Strongly Correlated Electrons +1210.6678 Statistics Theory +1210.6682 +1210.6683 Experiment +1210.6684 Phenomenology +1210.6685 Systems and Control +1210.6688 Functional Analysis +1210.6695 Algebraic Geometry +1210.6707 Learning +1210.6709 Logic +1210.6712 Combinatorics +1210.6713 Rings and Algebras +1210.6719 Information Theory +1210.6721 Number Theory +1210.6724 Systems and Control +1210.6728 Instrumentation and Detectors +1210.6740 Information Theory +1210.6746 Databases +1210.6751 Instrumentation and Detectors +1210.6752 Probability +1210.6754 +1210.6756 Phenomenology +1210.6757 Lattice +1210.6758 Chaotic Dynamics +1210.6762 Optimization and Control +1210.6763 Statistical Mechanics +1210.6766 Learning +1210.6769 Differential Geometry +1210.6773 Optimization and Control +1210.6777 Information Theory +1210.6785 Exactly Solvable and Integrable Systems +1210.6786 Phenomenology +1210.6788 Chaotic Dynamics +1210.6789 Neurons and Cognition +1210.6790 Optics +1210.6794 Optics +1210.6802 Optics +1210.6804 Combinatorics +1210.6805 Methodology +1210.6806 Mesoscale and Nanoscale Physics +1210.6809 Experiment +1210.6810 Strongly Correlated Electrons +1210.6811 Algebraic Geometry +1210.6812 Mesoscale and Nanoscale Physics +1210.6827 Classical Physics +1210.6828 Combinatorics +1210.6831 Combinatorics +1210.6835 Solar and Stellar Astrophysics +1210.6836 General Mathematics +1210.6839 Probability +1210.6846 Probability +1210.6851 Geophysics +1210.6855 Artificial Intelligence +1210.6857 Logic in Computer Science +1210.6859 Instrumentation and Methods for Astrophysics +1210.6865 Solar and Stellar Astrophysics +1210.6868 Optimization and Control +1210.6871 Statistical Mechanics +1210.6881 Superconductivity +1210.6882 Phenomenology +1210.6890 Phenomenology +1210.6891 Computational Engineering, Finance, and Science +1210.6893 Logic in Computer Science +1210.6897 Chemical Physics +1210.6898 Cosmology and Nongalactic Astrophysics +1210.6905 General Mathematics +1210.6916 Probability +1210.6917 Discrete Mathematics +1210.6918 Discrete Mathematics +1210.6919 Representation Theory +1210.6923 Discrete Mathematics +1210.6924 Combinatorics +1210.6928 +1210.6929 History and Philosophy of Physics +1210.6932 Differential Geometry +1210.6938 Other Condensed Matter +1210.6939 Experiment +1210.6942 Superconductivity +1210.6947 Astrophysics of Galaxies +1210.6948 Data Analysis, Statistics and Probability +1210.6949 Physics and Society +1210.6950 Statistics Theory +1210.6953 Spectral Theory +1210.6957 Mesoscale and Nanoscale Physics +1210.6959 Superconductivity +1210.6964 Theory +1210.6965 Combinatorics +1210.6966 Differential Geometry +1210.6967 Biological Physics +1210.6972 Lattice +cond-mat/0402444 Soft Condensed Matter +cond-mat/0407105 Soft Condensed Matter +cond-mat/0610332 Soft Condensed Matter +cs/0309054 Networking and Internet Architecture +cs/0403042 Networking and Internet Architecture +0711.0603 Statistical Mechanics +0804.0967 Chemical Physics +0901.2352 Dynamical Systems +0903.3083 Neurons and Cognition +0904.0640 Analysis of PDEs +0904.2104 Operator Algebras +0910.0628 Algebraic Geometry +0911.5312 Statistical Mechanics +0912.2014 Functional Analysis +0912.5510 +1001.4237 Analysis of PDEs +1003.3858 Theory +1003.6034 Probability +1008.3698 Exactly Solvable and Integrable Systems +1009.0965 Combinatorics +1011.2281 Quantum Algebra +1011.3230 Algebraic Geometry +1011.3363 Differential Geometry +1012.0373 Biological Physics +1012.2526 Optics +1104.0027 Probability +1104.3067 +1104.3785 Number Theory +1104.4869 +1104.5260 Mesoscale and Nanoscale Physics +1105.0515 Populations and Evolution +1105.0864 Quantitative Methods +1106.2809 General Physics +1106.3453 Combinatorics +1107.2724 Methodology +1108.4812 Probability +1109.0093 Learning +1109.1639 Quantum Gases +1109.3715 Algebraic Topology +1109.4605 History and Overview +1110.0306 Instrumentation and Detectors +1110.0759 Strongly Correlated Electrons +1110.1801 Networking and Internet Architecture +1110.2681 Functional Analysis +1110.3405 +1110.4918 Operator Algebras +1110.5098 Networking and Internet Architecture +1111.2583 Mesoscale and Nanoscale Physics +1111.3063 Networking and Internet Architecture +1111.6247 +1112.0301 Computation +1112.1088 Strongly Correlated Electrons +1112.1777 Cosmology and Nongalactic Astrophysics +1112.3578 Combinatorics +1112.3865 Classical Analysis and ODEs +1112.5909 +1201.1232 Statistical Mechanics +1201.3451 High Energy Astrophysical Phenomena +1201.4323 Mesoscale and Nanoscale Physics +1201.4456 Strongly Correlated Electrons +1201.5282 Probability +1201.5708 Mesoscale and Nanoscale Physics +1201.5995 +1202.1872 Metric Geometry +1202.2356 Solar and Stellar Astrophysics +1202.5051 Superconductivity +1202.5837 Analysis of PDEs +1203.1415 Representation Theory +1203.2908 Phenomenology +1203.2914 Solar and Stellar Astrophysics +1203.3281 Mesoscale and Nanoscale Physics +1203.4382 Number Theory +1203.4848 Strongly Correlated Electrons +1203.5265 Mesoscale and Nanoscale Physics +1203.5372 Cosmology and Nongalactic Astrophysics +1203.6163 Cosmology and Nongalactic Astrophysics +1204.0711 +1204.0839 Information Theory +1204.1758 Algebraic Geometry +1204.4813 Statistics Theory +1204.5469 Phenomenology +1204.5511 +1205.0972 Cosmology and Nongalactic Astrophysics +1205.1888 Quantum Gases +1205.2440 Tissues and Organs +1205.3167 Cosmology and Nongalactic Astrophysics +1205.3289 Strongly Correlated Electrons +1205.4381 Strongly Correlated Electrons +1205.5285 +1205.5337 Strongly Correlated Electrons +1205.5798 Classical Physics +1206.0679 Instrumentation and Detectors +1206.0954 Mesoscale and Nanoscale Physics +1206.4159 Soft Condensed Matter +1206.4497 Probability +1206.5733 Cosmology and Nongalactic Astrophysics +1207.1132 Theory +1207.2944 Mesoscale and Nanoscale Physics +1207.3064 Earth and Planetary Astrophysics +1207.4386 +1207.4560 Phenomenology +1207.4794 Phenomenology +1207.6304 High Energy Astrophysical Phenomena +1207.6311 Mesoscale and Nanoscale Physics +1207.6475 Multiagent Systems +1207.6571 Superconductivity +1207.6605 Chaotic Dynamics +1208.0509 Combinatorics +1208.1188 Physics and Society +1208.1266 Phenomenology +1208.1999 Phenomenology +1208.2200 Probability +1208.2822 Optics +1208.4005 Atomic Physics +1208.4144 Materials Science +1208.4845 Cosmology and Nongalactic Astrophysics +1208.5256 Optics +1208.5699 Statistical Mechanics +1209.0328 Strongly Correlated Electrons +1209.0675 +1209.1282 Complex Variables +1209.1333 Optics +1209.2226 Atomic Physics +1209.2364 Mathematical Software +1209.3970 Representation Theory +1209.4581 Combinatorics +1209.4646 Theory +1209.4936 Statistical Mechanics +1209.5198 Numerical Analysis +1209.5283 Materials Science +1209.5597 Theory +1209.6154 Optics +1209.6604 Data Analysis, Statistics and Probability +1210.0357 +1210.1188 Plasma Physics +1210.1406 +1210.3383 Statistical Mechanics +1210.3849 Risk Management +1210.5532 Numerical Analysis +1210.5837 Numerical Analysis +1210.5919 Materials Science +1210.6445 Cosmology and Nongalactic Astrophysics +1210.6556 Representation Theory +1210.7950 Lattice +1210.8234 Computational Geometry +1211.1806 +1211.1943 Strongly Correlated Electrons +1211.2235 +1211.2591 Lattice +1211.2682 Dynamical Systems +1211.2732 Materials Science +1211.4423 Algebraic Geometry +1211.4490 Operator Algebras +1211.5238 Probability +1211.5308 +1211.5702 Algebraic Geometry +1211.5767 Statistics Theory +1211.6737 Superconductivity +1211.6783 +1211.6788 +1211.6948 Materials Science +1211.7003 Materials Science +1212.0022 Computers and Society +1212.0286 Networking and Internet Architecture +1212.0784 +1212.1041 Number Theory +1212.1239 Theory +1212.1298 Group Theory +1212.1432 General Mathematics +1212.1550 Fluid Dynamics +1212.1566 +1212.1574 +1212.1674 Materials Science +1212.1711 General Physics +1212.1719 Solar and Stellar Astrophysics +1212.1727 Spectral Theory +1212.1729 Cosmology and Nongalactic Astrophysics +1212.1730 Functional Analysis +1212.1733 Number Theory +1212.1734 Logic in Computer Science +1212.1738 Data Analysis, Statistics and Probability +1212.1746 Exactly Solvable and Integrable Systems +1212.1748 Analysis of PDEs +1212.1750 Optimization and Control +1212.1751 Optimization and Control +1212.1754 Data Structures and Algorithms +1212.1756 +1212.1757 Lattice +1212.1758 Soft Condensed Matter +1212.1759 Symplectic Geometry +1212.1762 Software Engineering +1212.1763 Cryptography and Security +1212.1766 Classical Analysis and ODEs +1212.1767 Strongly Correlated Electrons +1212.1775 Optimization and Control +1212.1777 Complex Variables +1212.1778 Applications +1212.1779 Applications +1212.1780 Machine Learning +1212.1787 Operating Systems +1212.1792 Populations and Evolution +1212.1794 +1212.1796 Software Engineering +1212.1800 Robotics +1212.1804 Group Theory +1212.1805 General Physics +1212.1807 Statistical Mechanics +1212.1812 Algebraic Geometry +1212.1816 Complex Variables +1212.1817 +1212.1820 +1212.1828 +1212.1830 +1212.1831 Data Structures and Algorithms +1212.1833 Rings and Algebras +1212.1836 Dynamical Systems +1212.1839 Systems and Control +1212.1842 Experiment +1212.1846 Representation Theory +1212.1848 Chaotic Dynamics +1212.1849 Human-Computer Interaction +1212.1851 Functional Analysis +1212.1853 +1212.1857 Analysis of PDEs +1212.1858 Instrumentation and Methods for Astrophysics +1212.1861 +1212.1862 +1212.1863 Cryptography and Security +1212.1865 +1212.1872 Probability +1212.1882 Other Computer Science +1212.1883 Combinatorics +1212.1885 Statistics Theory +1212.1890 Quantum Gases +1212.1892 General Physics +1212.1895 Algebraic Geometry +1212.1898 Analysis of PDEs +1212.1900 Number Theory +1212.1901 Cellular Automata and Lattice Gases +1212.1909 Populations and Evolution +1212.1914 Cryptography and Security +1212.1915 Instrumentation and Methods for Astrophysics +1212.1916 Instrumentation and Methods for Astrophysics +1212.1918 Information Retrieval +1212.1920 Quantitative Methods +1212.1922 Strongly Correlated Electrons +1212.1926 Representation Theory +1212.1927 Social and Information Networks +1212.1928 Quantitative Methods +1212.1929 Networking and Internet Architecture +1212.1931 Dynamical Systems +1212.1932 Dynamical Systems +1212.1934 Numerical Analysis +1212.1936 Learning +1212.1940 Physics and Society +1212.1945 +1212.1946 General Finance +1212.1953 Instrumentation and Methods for Astrophysics +1212.1954 Instrumentation and Methods for Astrophysics +1212.1955 Classical Physics +1212.1956 Cosmology and Nongalactic Astrophysics +1212.1961 Instrumentation and Methods for Astrophysics +1212.1963 Lattice +1212.1970 Materials Science +1212.1971 +1212.1972 +1212.1975 Experiment +1212.1977 Combinatorics +1212.1979 Biomolecules +1212.1980 Representation Theory +1212.1985 High Energy Astrophysical Phenomena +1212.1986 Human-Computer Interaction +1212.1987 Optics +1212.1988 Classical Analysis and ODEs +1212.1990 +1212.1992 Numerical Analysis +1212.1997 Probability +1212.1999 Strongly Correlated Electrons +1212.2003 Analysis of PDEs +1212.2013 Probability +1212.2017 Cosmology and Nongalactic Astrophysics +1212.2022 Algebraic Topology +1212.2026 Mesoscale and Nanoscale Physics +1212.2034 Accelerator Physics +1212.2039 Lattice +1212.2042 Plasma Physics +1212.2049 Logic +1212.2056 Artificial Intelligence +1212.2060 Biological Physics +1212.2064 Cryptography and Security +1212.2065 Information Retrieval +1212.2067 Cryptography and Security +1212.2071 Databases +1212.2076 Functional Analysis +1212.2080 Combinatorics +1212.2083 Algebraic Geometry +1212.2087 High Energy Astrophysical Phenomena +1212.2091 Algebraic Geometry +1212.2094 Networking and Internet Architecture +1212.2096 Classical Analysis and ODEs +1212.2104 +1212.2107 Metric Geometry +1212.2116 Group Theory +1212.2118 Number Theory +1212.2125 Information Theory +1212.2127 Experiment +1212.2128 Numerical Analysis +1212.2132 Theory +1212.2134 Dynamical Systems +1212.2135 Optimization and Control +1212.2138 Phenomenology +1212.2141 Lattice +1212.2143 K-Theory and Homology +1212.2144 Optimization and Control +1212.2148 Soft Condensed Matter +1212.2150 Information Retrieval +1212.2152 Solar and Stellar Astrophysics +1212.2155 +1212.2158 +1212.2162 General Physics +1212.2164 Quantum Gases +1212.2165 Classical Analysis and ODEs +1212.2168 Phenomenology +1212.2169 Experiment +1212.2171 Commutative Algebra +1212.2176 Classical Analysis and ODEs +1212.2177 +1212.2179 Earth and Planetary Astrophysics +1212.2184 Phenomenology +1212.2191 Optimization and Control +1212.2195 +1212.2198 Solar and Stellar Astrophysics +1212.2200 +alg-geom/9712012 Algebraic Geometry +math/0506476 Dynamical Systems +physics/0701261 Biological Physics +quant-ph/9811072 +quant-ph/9910012 +0806.4646 +0811.4453 +0902.4834 Differential Geometry +0903.2028 Algebraic Geometry +0903.3519 Differential Geometry +0911.4151 Statistics Theory +0911.5376 +0912.0038 Classical Analysis and ODEs +1001.1209 Complex Variables +1001.2913 Computational Geometry +1001.3110 +1001.3579 Classical Analysis and ODEs +1006.0070 Analysis of PDEs +1006.3665 Spectral Theory +1010.4199 Geometric Topology +1011.0898 Classical Analysis and ODEs +1011.3615 Classical Analysis and ODEs +1011.4558 Programming Languages +1012.5638 Classical Analysis and ODEs +1101.4139 Classical Analysis and ODEs +1102.1633 Classical Analysis and ODEs +1102.3556 +1103.5862 Differential Geometry +1104.0515 Group Theory +1104.0772 +1105.4336 +1106.1666 Optimization and Control +1107.2863 Algebraic Geometry +1107.3749 +1107.4621 Representation Theory +1108.1033 Statistics Theory +1108.1459 Probability +1108.3749 Theory +1109.0110 Mesoscale and Nanoscale Physics +1109.1875 Logic +1111.6720 Strongly Correlated Electrons +1111.7309 Mesoscale and Nanoscale Physics +1112.5852 Strongly Correlated Electrons +1201.0453 +1201.2148 Logic +1201.2375 Computation +1202.1788 Dynamical Systems +1202.2745 Computer Vision and Pattern Recognition +1202.2818 Algebraic Topology +1202.5103 +1203.3304 Differential Geometry +1203.3572 Statistics Theory +1203.5871 Information Theory +1204.0315 Optics +1204.0327 Optics +1204.1702 Mesoscale and Nanoscale Physics +1204.5173 General Physics +1205.3060 Dynamical Systems +1205.3249 Experiment +1205.3977 +1205.6457 Optics +1206.0006 Strongly Correlated Electrons +1206.1695 Theory +1206.2943 +1206.4385 +1206.5061 Exactly Solvable and Integrable Systems +1206.5530 Instrumentation and Methods for Astrophysics +1206.5721 Algebraic Geometry +1206.7085 Superconductivity +1207.0971 Superconductivity +1207.1157 Information Theory +1207.1468 Phenomenology +1207.2622 Computation +1207.4611 Exactly Solvable and Integrable Systems +1207.5767 Mesoscale and Nanoscale Physics +1208.0425 Strongly Correlated Electrons +1208.0717 Superconductivity +1208.1953 +1208.2272 Cosmology and Nongalactic Astrophysics +1208.4408 Materials Science +1208.5609 Phenomenology +1208.5621 Statistical Mechanics +1209.0705 Statistical Mechanics +1209.1240 Algebraic Topology +1209.1358 Distributed, Parallel, and Cluster Computing +1209.2314 Cosmology and Nongalactic Astrophysics +1209.2916 General Physics +1209.3586 Superconductivity +1209.4256 Commutative Algebra +1209.4706 Soft Condensed Matter +1209.5818 Data Structures and Algorithms +1210.1729 Number Theory +1210.1867 Geometric Topology +1210.3362 Astrophysics of Galaxies +1211.0750 Algebraic Topology +1211.1088 Other Condensed Matter +1211.1934 +1211.2092 Computational Physics +1211.2185 +1211.2693 +1211.2841 Algebraic Geometry +1211.2862 Statistical Finance +1211.2882 Classical Analysis and ODEs +1211.3111 Group Theory +1211.3128 Information Theory +1211.3135 Functional Analysis +1211.3142 Soft Condensed Matter +1211.3149 Combinatorics +1211.3155 Soft Condensed Matter +1211.3158 Materials Science +1211.3162 Analysis of PDEs +1211.3163 Materials Science +1211.3168 Biological Physics +1211.3172 Commutative Algebra +1211.3174 Information Theory +1211.3175 Physics and Society +1211.3176 Solar and Stellar Astrophysics +1211.3179 Combinatorics +1211.3184 Symplectic Geometry +1211.3189 Information Theory +1211.3192 Commutative Algebra +1211.3200 Information Retrieval +1211.3204 Symplectic Geometry +1211.3211 Applications +1211.3212 Learning +1211.3215 Statistics Theory +1211.3217 Phenomenology +1211.3218 Computers and Society +1211.3219 Exactly Solvable and Integrable Systems +1211.3223 Classical Analysis and ODEs +1211.3226 Group Theory +1211.3227 Classical Analysis and ODEs +1211.3229 Software Engineering +1211.3230 Statistics Theory +1211.3234 Geometric Topology +1211.3235 +1211.3237 Metric Geometry +1211.3238 Social and Information Networks +1211.3244 Combinatorics +1211.3247 Lattice +1211.3250 Networking and Internet Architecture +1211.3254 Superconductivity +1211.3261 Superconductivity +1211.3263 Combinatorics +1211.3264 Numerical Analysis +1211.3269 Combinatorics +1211.3271 Analysis of PDEs +1211.3273 High Energy Astrophysical Phenomena +1211.3274 +1211.3278 Computational Physics +1211.3280 Theory +1211.3284 Solar and Stellar Astrophysics +1211.3286 Computational Physics +1211.3293 Computer Science and Game Theory +1211.3299 Data Structures and Algorithms +1211.3305 High Energy Astrophysical Phenomena +1211.3306 Algebraic Geometry +1211.3307 Networking and Internet Architecture +1211.3308 Analysis of PDEs +1211.3309 History and Philosophy of Physics +1211.3312 +1211.3313 Statistics Theory +1211.3318 Optimization and Control +1211.3320 Analysis of PDEs +1211.3323 Number Theory +1211.3324 Probability +1211.3331 Earth and Planetary Astrophysics +1211.3335 Functional Analysis +1211.3340 Digital Libraries +1211.3342 Numerical Analysis +1211.3347 Combinatorics +1211.3355 Superconductivity +1211.3360 Functional Analysis +1211.3365 General Mathematics +1211.3371 Artificial Intelligence +1211.3373 +1211.3374 Lattice +1211.3377 Populations and Evolution +1211.3378 Group Theory +1211.3402 Information Retrieval +1211.3404 Operator Algebras +cs/0511084 Data Structures and Algorithms +cs/0606109 Data Structures and Algorithms +gr-qc/0403037 +hep-ph/0405247 Phenomenology +hep-th/0503034 Theory +math/0406353 Metric Geometry +math/0506201 Functional Analysis +0904.1071 Fluid Dynamics +0904.1270 Fluid Dynamics +0904.4230 Group Theory +0907.0619 Statistics Theory +1001.1183 Soft Condensed Matter +1001.3306 Pattern Formation and Solitons +1003.0817 Differential Geometry +1003.1366 Theory +1003.1484 Functional Analysis +1004.0499 Accelerator Physics +1004.5416 Strongly Correlated Electrons +1004.5429 Information Theory +1006.0268 Symplectic Geometry +1006.2208 Disordered Systems and Neural Networks +1006.3247 +1006.3617 Algebraic Geometry +1007.0296 Statistics Theory +1007.3547 Strongly Correlated Electrons +1009.1629 General Physics +1010.2311 Differential Geometry +1010.2805 +1012.4066 Networking and Internet Architecture +1012.4109 Category Theory +1101.4469 +1101.5221 Networking and Internet Architecture +1102.3846 Dynamical Systems +1103.0557 Statistical Mechanics +1103.2855 Phenomenology +1104.0646 Algebraic Geometry +1104.3753 Cosmology and Nongalactic Astrophysics +1105.0867 Operator Algebras +1105.4995 Statistics Theory +1105.6000 Phenomenology +1106.0809 Number Theory +1106.1083 +1106.3451 Phenomenology +1107.1125 Phenomenology +1107.1327 Logic in Computer Science +1107.1434 Computational Complexity +1107.1710 Chemical Physics +1108.4623 Dynamical Systems +1108.5976 Materials Science +1109.3201 Mesoscale and Nanoscale Physics +1109.6290 Cosmology and Nongalactic Astrophysics +1109.6555 Soft Condensed Matter +1110.0494 Quantum Gases +1110.4874 Instrumentation and Methods for Astrophysics +1110.5004 Computational Physics +1110.5075 Theory +1110.6103 Strongly Correlated Electrons +1111.0620 Geometric Topology +1111.0757 +1111.0831 +1111.1300 Phenomenology +1111.1430 Statistical Mechanics +1111.1706 Disordered Systems and Neural Networks +1111.2827 Astrophysics of Galaxies +1111.4818 Probability +1111.4857 Lattice +1111.7315 Optics +1112.1867 Complex Variables +1112.1996 Optimization and Control +1112.2146 Theory +1112.3595 Solar and Stellar Astrophysics +1112.4933 High Energy Astrophysical Phenomena +1112.6039 +1201.1366 +1201.3319 Cosmology and Nongalactic Astrophysics +1201.4233 Complex Variables +1201.4491 High Energy Astrophysical Phenomena +1201.5509 Logic +1201.6497 Dynamical Systems +1202.0146 Geometric Topology +1202.1105 Instrumentation and Detectors +1202.1842 Social and Information Networks +1202.1910 Experiment +1202.2004 Cryptography and Security +1202.2338 Dynamical Systems +1202.2488 Theory +1202.2990 Probability +1202.3160 +1202.3234 Materials Science +1202.3439 +1202.3446 Experiment +1202.3451 Information Retrieval +1202.3453 Astrophysics of Galaxies +1202.3455 Combinatorics +1202.3464 Materials Science +1202.3466 Software Engineering +1202.3468 Information Theory +1202.3469 Materials Science +1202.3473 Social and Information Networks +1202.3483 Statistics Theory +1202.3491 Algebraic Geometry +1202.3493 Combinatorics +1202.3496 Logic in Computer Science +1202.3497 Logic in Computer Science +1202.3498 Logic in Computer Science +1202.3499 Programming Languages +1202.3500 Logic in Computer Science +1202.3501 Logic in Computer Science +1202.3502 Logic in Computer Science +1202.3504 Social and Information Networks +1202.3511 +1202.3515 Optimization and Control +1202.3531 Information Theory +1202.3534 Fluid Dynamics +1202.3545 Materials Science +1202.3546 Solar and Stellar Astrophysics +1202.3548 Experiment +1202.3551 Algebraic Geometry +1202.3552 Quantum Algebra +1202.3555 Theory +1202.3557 Group Theory +1202.3559 +1202.3562 Cryptography and Security +1202.3563 Mesoscale and Nanoscale Physics +1202.3576 Networking and Internet Architecture +1202.3583 Pattern Formation and Solitons +1202.3586 Theory +1202.3592 Instrumentation and Detectors +1202.3594 High Energy Astrophysical Phenomena +1202.3597 Commutative Algebra +1202.3599 Rings and Algebras +1202.3600 Astrophysics of Galaxies +1202.3604 Representation Theory +1202.3605 Differential Geometry +1202.3606 Solar and Stellar Astrophysics +1202.3613 Rings and Algebras +1202.3619 Biological Physics +1202.3620 Materials Science +1202.3622 Materials Science +1202.3624 +1202.3627 Probability +1202.3630 Algebraic Geometry +1202.3632 Optics +1202.3673 +1202.3678 Space Physics +1202.3682 +1202.3683 Networking and Internet Architecture +1202.3684 Computer Vision and Pattern Recognition +1202.3685 Dynamical Systems +1202.3686 Databases +1202.3687 Algebraic Topology +1202.3688 +1202.3689 Dynamical Systems +1202.3690 Populations and Evolution +1202.3691 Accelerator Physics +astro-ph/9802358 +math/0702753 Combinatorics +math/9802043 Representation Theory +math/9911039 Algebraic Topology +0704.0498 Experiment +0704.3093 Geometric Topology +0705.4548 Quantum Algebra +0708.2707 Molecular Networks +0710.4152 Geometric Topology +0710.4266 Combinatorics +0805.2710 Dynamical Systems +0806.2426 Statistics Theory +0809.3014 Combinatorics +0901.1868 Combinatorics +0903.1240 Analysis of PDEs +0910.4836 Performance +0911.3379 +0912.4506 Performance +0912.4725 Analysis of PDEs +1002.1295 Analysis of PDEs +1004.1741 Performance +1004.3321 Combinatorics +1005.5470 Combinatorics +1007.1350 Representation Theory +1007.1388 Distributed, Parallel, and Cluster Computing +1008.5092 Number Theory +1008.5123 Superconductivity +1008.5176 Commutative Algebra +1009.0088 Computational Geometry +1009.2931 Quantum Algebra +1009.2936 Representation Theory +1009.4079 Differential Geometry +1009.4905 Analysis of PDEs +1010.5268 High Energy Astrophysical Phenomena +1010.5364 High Energy Astrophysical Phenomena +1011.3490 Optimization and Control +1012.3267 Group Theory +1012.5459 +1012.5558 +1101.0091 Performance +1101.1420 +1101.2865 +1102.0360 Superconductivity +1102.1229 Operator Algebras +1102.2614 Materials Science +1102.2922 Probability +1102.4749 Neurons and Cognition +1102.5051 Spectral Theory +1102.5444 Algebraic Geometry +1104.1400 Quantum Algebra +1105.1873 Astrophysics of Galaxies +1106.1474 Information Theory +1106.2964 Materials Science +1106.3042 Mesoscale and Nanoscale Physics +1106.4074 Dynamical Systems +1106.4146 Statistical Mechanics +1106.5417 Superconductivity +1106.5908 Distributed, Parallel, and Cluster Computing +1107.4159 Mesoscale and Nanoscale Physics +1107.5585 High Energy Astrophysical Phenomena +1107.5942 Mesoscale and Nanoscale Physics +1108.0629 +1108.0630 +1108.4349 Astrophysics of Galaxies +1108.4732 Strongly Correlated Electrons +1108.6194 Theory +1109.1318 Mesoscale and Nanoscale Physics +1109.3239 Mesoscale and Nanoscale Physics +1110.1286 Medical Physics +1110.2129 Theory +1110.3054 Cosmology and Nongalactic Astrophysics +1110.3537 +1110.3812 Phenomenology +1110.3822 Mesoscale and Nanoscale Physics +1110.4235 +1110.4257 +1110.4468 Instrumentation and Detectors +1110.5106 Theory +1111.0292 Phenomenology +1111.1256 Populations and Evolution +1111.2326 Superconductivity +1111.2759 Molecular Networks +1111.2854 Phenomenology +1111.4786 Phenomenology +1111.5504 Probability +1111.5650 +1111.7237 Strongly Correlated Electrons +1111.7262 +1112.1105 Accelerator Physics +1112.1610 Mesoscale and Nanoscale Physics +1112.2421 Superconductivity +1112.2801 Combinatorics +1112.2983 Phenomenology +1112.3793 Strongly Correlated Electrons +1112.6305 Materials Science +1201.1263 Commutative Algebra +1201.1910 Cosmology and Nongalactic Astrophysics +1201.3364 Instrumentation and Methods for Astrophysics +1201.3970 +1201.4237 +1201.6282 Networking and Internet Architecture +1201.6539 Number Theory +1202.0111 Analysis of PDEs +1202.0112 Analysis of PDEs +1202.1565 Combinatorics +1202.2437 Mesoscale and Nanoscale Physics +1202.2582 Combinatorics +1202.2800 General Mathematics +1202.4602 Classical Physics +1202.4878 Statistical Mechanics +1202.5162 Soft Condensed Matter +1202.6308 Number Theory +1202.6340 Number Theory +1202.6365 Cosmology and Nongalactic Astrophysics +1202.6369 Number Theory +1202.6371 Number Theory +1202.6374 Strongly Correlated Electrons +1202.6376 Probability +1202.6380 Rings and Algebras +1202.6381 Number Theory +1202.6386 Artificial Intelligence +1202.6390 Functional Analysis +1202.6394 Phenomenology +1202.6395 Computational Complexity +1202.6397 High Energy Astrophysical Phenomena +1202.6399 Analysis of PDEs +1202.6402 Analysis of PDEs +1202.6405 Instrumentation and Detectors +1202.6407 +1202.6410 Number Theory +1202.6412 Trading and Market Microstructure +1202.6414 Combinatorics +1202.6416 Combinatorics +1202.6425 Differential Geometry +1202.6428 Mesoscale and Nanoscale Physics +1202.6430 Probability +1202.6431 Numerical Analysis +1202.6436 Systems and Control +1202.6438 Discrete Mathematics +1202.6441 Group Theory +1202.6443 Analysis of PDEs +1202.6445 Information Theory +1202.6450 Mesoscale and Nanoscale Physics +1202.6451 Mesoscale and Nanoscale Physics +1202.6452 Mesoscale and Nanoscale Physics +1202.6454 Mesoscale and Nanoscale Physics +1202.6455 Number Theory +1202.6456 Distributed, Parallel, and Cluster Computing +1202.6457 Optimization and Control +1202.6459 Algebraic Topology +1202.6461 Combinatorics +1202.6464 Mesoscale and Nanoscale Physics +1202.6468 Statistical Mechanics +1202.6472 Logic in Computer Science +1202.6473 Logic in Computer Science +1202.6475 Applications +1202.6479 Representation Theory +1202.6481 Information Theory +1202.6482 Experiment +1202.6484 Materials Science +1202.6485 Applications +1202.6486 Computational Physics +1202.6487 Applications +1202.6493 Algebraic Geometry +1202.6497 Instrumentation and Detectors +1202.6503 Differential Geometry +1202.6509 Statistical Mechanics +1202.6510 Instrumentation and Detectors +1202.6511 Accelerator Physics +1202.6513 Instrumentation and Methods for Astrophysics +1202.6514 Differential Geometry +1202.6515 Applications +1202.6517 Human-Computer Interaction +1202.6518 Algebraic Geometry +1202.6521 Adaptation and Self-Organizing Systems +1202.6524 Applications +1202.6527 Accelerator Physics +1202.6530 +1202.6531 Complex Variables +1202.6532 Quantum Gases +1202.6536 Applications +1202.6546 Tissues and Organs +1202.6547 Soft Condensed Matter +1202.6557 Analysis of PDEs +1202.6558 Statistics Theory +1202.6560 +1202.6561 +1202.6570 Phenomenology +1202.6583 Computation and Language +1202.6588 +1202.6591 Cryptography and Security +1202.6592 Chaotic Dynamics +1202.6593 Programming Languages +1202.6596 Information Theory +1202.6598 Data Structures and Algorithms +1202.6599 Data Analysis, Statistics and Probability +1202.6600 Software Engineering +1202.6615 Probability +1202.6617 +1202.6619 +1202.6623 Software Engineering +1202.6624 +1202.6625 Instrumentation and Detectors +1202.6627 Data Analysis, Statistics and Probability +1202.6628 Accelerator Physics +1202.6634 Accelerator Physics +1202.6636 Dynamical Systems +1202.6639 Algebraic Geometry +1202.6642 Data Structures and Algorithms +1202.6645 Rings and Algebras +1202.6647 Chaotic Dynamics +1202.6648 Combinatorics +1202.6652 Metric Geometry +1202.6654 Information Theory +1202.6658 Information Theory +1202.6659 Experiment +1202.6665 Dynamical Systems +1202.6666 Data Analysis, Statistics and Probability +1202.6672 Geometric Topology +1202.6673 Combinatorics +1202.6680 Computational Complexity +1202.6685 Information Retrieval +math/0511435 Geometric Topology +math/0511452 Quantum Algebra +math/0511557 Combinatorics +math/0601242 Geometric Topology +math/0605466 Combinatorics +quant-ph/0001009 +1107.5369 Rings and Algebras +1108.0118 Chemical Physics +1108.0141 Networking and Internet Architecture +1108.0237 +1108.0249 Theory +1108.0311 Differential Geometry +1108.0454 Numerical Analysis +1108.0458 Rings and Algebras +1108.0747 Networking and Internet Architecture +1108.0817 Commutative Algebra +1108.0841 +1108.0890 Phenomenology +1108.0898 General Physics +1108.0901 Other Computer Science +1108.0926 +1108.0961 +1108.0977 General Physics +1108.1064 Experiment +1108.1070 Experiment +1108.1144 Phenomenology +1108.1246 High Energy Astrophysical Phenomena +1108.2762 Materials Science +1109.4490 Networking and Internet Architecture +0803.3597 Atomic Physics +0903.4833 Probability +0904.1109 Symplectic Geometry +0905.3310 Probability +0907.3837 Methodology +0907.5578 General Physics +0908.1233 Number Theory +0910.1768 +0911.5647 Probability +1005.1884 Classical Analysis and ODEs +1008.4838 +1009.1515 Probability +1009.5831 +1010.0922 Fluid Dynamics +1011.1572 Fluid Dynamics +1011.2669 Optics +1101.4862 Representation Theory +1101.5547 Probability +1102.0356 Complex Variables +1102.5090 Cosmology and Nongalactic Astrophysics +1105.0669 General Mathematics +1105.5031 Superconductivity +1106.1987 Mesoscale and Nanoscale Physics +1106.3291 Combinatorics +1106.5055 Phenomenology +1107.2239 Superconductivity +1107.2992 Optics +1108.1678 Instrumentation and Methods for Astrophysics +1108.2599 Optics +1108.5541 +1110.0655 Representation Theory +1111.0063 Fluid Dynamics +1111.5939 +1111.6301 Fluid Dynamics +1111.6536 +1111.6687 Probability +1111.6915 Fluid Dynamics +1112.0954 Phenomenology +1112.5351 Soft Condensed Matter +1201.1592 Analysis of PDEs +1201.5141 Phenomenology +1201.6139 Phenomenology +1201.6180 Phenomenology +1202.2802 Analysis of PDEs +1202.4210 +1202.4296 +1202.5188 Strongly Correlated Electrons +1203.0617 Databases +1203.2495 Phenomenology +1203.6748 Fluid Dynamics +1204.1266 Instrumentation and Detectors +1204.2302 Superconductivity +1204.3370 +1204.4426 Superconductivity +1204.5664 Phenomenology +1204.6069 +1204.6467 Analysis of PDEs +1204.6732 Statistical Mechanics +1205.3194 Mesoscale and Nanoscale Physics +1205.3312 General Physics +1205.4085 Optics +1205.6151 Lattice +1205.6194 Populations and Evolution +1205.6541 Mesoscale and Nanoscale Physics +1206.0658 +1206.1826 Phenomenology +1206.2708 +1206.3854 Mesoscale and Nanoscale Physics +1206.5377 Strongly Correlated Electrons +1206.6022 Phenomenology +1207.0750 Computational Finance +1207.2247 Statistical Mechanics +1207.3561 Phenomenology +1207.3593 Group Theory +1207.3601 Combinatorics +1207.3667 Superconductivity +1207.4216 Materials Science +1207.5556 +1207.5724 +1207.7014 Disordered Systems and Neural Networks +1208.1081 Mesoscale and Nanoscale Physics +1208.1951 Mesoscale and Nanoscale Physics +1208.2391 Rings and Algebras +1208.3925 Quantitative Methods +1208.5301 Phenomenology +1208.5984 Analysis of PDEs +1208.6084 Mesoscale and Nanoscale Physics +1209.0034 Algebraic Geometry +1209.0096 Combinatorics +1209.0609 Probability +1209.1396 Cosmology and Nongalactic Astrophysics +1209.2822 Phenomenology +1209.3778 Astrophysics of Galaxies +1209.4166 +1209.4259 Superconductivity +1209.5861 Astrophysics of Galaxies +1209.6311 Strongly Correlated Electrons +1209.6584 Superconductivity +1210.0878 Cosmology and Nongalactic Astrophysics +1210.1219 Solar and Stellar Astrophysics +1210.3202 Dynamical Systems +1210.5455 +1210.6302 Optics +1210.6654 Solar and Stellar Astrophysics +1210.7553 +1210.7754 Lattice +1211.0713 Software Engineering +1211.1084 Analysis of PDEs +1211.1540 Strongly Correlated Electrons +1211.1544 Computer Vision and Pattern Recognition +1211.1679 +1211.1714 Combinatorics +1211.1835 Pattern Formation and Solitons +1211.1847 Statistics Theory +1211.1863 Materials Science +1211.1930 Analysis of PDEs +1211.1969 Information Theory +1211.1977 +1211.1984 Earth and Planetary Astrophysics +1211.1988 Exactly Solvable and Integrable Systems +1211.1995 Geometric Topology +1211.1998 Group Theory +1211.2003 Cosmology and Nongalactic Astrophysics +1211.2007 Computer Vision and Pattern Recognition +1211.2010 Dynamical Systems +1211.2019 Phenomenology +1211.2022 Complex Variables +1211.2024 K-Theory and Homology +1211.2026 Networking and Internet Architecture +1211.2028 Computers and Society +1211.2030 Computational Geometry +1211.2032 Distributed, Parallel, and Cluster Computing +1211.2033 Computers and Society +1211.2034 Symplectic Geometry +1211.2035 High Energy Astrophysical Phenomena +1211.2037 Computer Vision and Pattern Recognition +1211.2038 Distributed, Parallel, and Cluster Computing +1211.2041 Databases +1211.2045 Probability +1211.2047 +1211.2049 Genomics +1211.2050 Phenomenology +1211.2056 Phenomenology +1211.2057 Numerical Analysis +1211.2059 Commutative Algebra +1211.2061 Optimization and Control +1211.2062 High Energy Astrophysical Phenomena +1211.2063 Networking and Internet Architecture +1211.2066 Data Structures and Algorithms +1211.2068 Dynamical Systems +1211.2070 Materials Science +1211.2072 Lattice +1211.2073 Learning +1211.2077 Lattice +1211.2078 Trading and Market Microstructure +1211.2081 Computer Science and Game Theory +1211.2082 Computer Vision and Pattern Recognition +1211.2085 Probability +1211.2087 Cryptography and Security +1211.2091 Differential Geometry +1211.2098 +1211.2100 Number Theory +1211.2107 +1211.2116 Computer Vision and Pattern Recognition +1211.2117 Statistics Theory +1211.2118 Computational Geometry +1211.2119 Solar and Stellar Astrophysics +1211.2120 Numerical Analysis +1211.2121 Statistics Theory +1211.2122 Materials Science +1211.2126 Artificial Intelligence +1211.2131 Optimization and Control +1211.2135 Functional Analysis +1211.2137 Statistics Theory +1211.2138 +1211.2145 Differential Geometry +1211.2149 Soft Condensed Matter +1211.2150 Computer Vision and Pattern Recognition +1211.2151 Combinatorics +1211.2155 Information Theory +1211.2156 Analysis of PDEs +1211.2158 Soft Condensed Matter +1211.2159 History and Overview +1211.2161 Solar and Stellar Astrophysics +1211.2165 Lattice +1211.2171 Solar and Stellar Astrophysics +1211.2174 Materials Science +1211.2179 Probability +1211.2182 Number Theory +1211.2187 Information Theory +1211.2189 Discrete Mathematics +1211.2192 Soft Condensed Matter +1211.2194 Computational Engineering, Finance, and Science +1211.2196 Soft Condensed Matter +1211.2198 Information Theory +1211.2207 Probability +1211.2210 Solar and Stellar Astrophysics +1211.2212 Solar and Stellar Astrophysics +1211.2216 Analysis of PDEs +1211.2221 Instrumentation and Detectors +cond-mat/0609754 Strongly Correlated Electrons +math/0512072 Complex Variables +math/0512073 Complex Variables +physics/0608051 Classical Physics +0704.3950 Phenomenology +0707.3888 Probability +0708.2546 Physics and Society +0708.2548 Physics and Society +0708.2744 Theory +0712.0092 Disordered Systems and Neural Networks +0802.0205 Commutative Algebra +0803.0788 Classical Analysis and ODEs +0804.0261 Fluid Dynamics +0804.1183 Information Theory +0807.0095 Functional Analysis +0807.2175 Experiment +0807.3531 Materials Science +0808.3278 Popular Physics +0809.2197 Strongly Correlated Electrons +0812.1343 Algebraic Geometry +0812.4117 Analysis of PDEs +0902.0595 Differential Geometry +0902.1382 Strongly Correlated Electrons +0903.1031 +0903.4014 Information Theory +0906.1368 Computational Physics +0906.4755 +0907.3214 Superconductivity +0907.5174 Strongly Correlated Electrons +0908.1068 Physics and Society +0908.1307 Differential Geometry +0910.5618 Strongly Correlated Electrons +0911.1026 General Physics +0911.2962 Theory +0912.1797 Analysis of PDEs +1002.1590 +1003.0130 Statistical Mechanics +1004.1484 Differential Geometry +1004.3854 Exactly Solvable and Integrable Systems +1005.3545 Quantum Gases +1005.5471 Complex Variables +1006.1616 +1006.5889 Differential Geometry +1007.2564 Optics +1007.3220 Strongly Correlated Electrons +1007.4020 Strongly Correlated Electrons +1007.4177 Physics and Society +1008.1850 Combinatorics +1008.2650 +1008.5031 Logic +1009.0333 Fluid Dynamics +1009.2222 Numerical Analysis +1009.2643 Physics and Society +1009.4051 Algebraic Geometry +1009.5534 Statistical Mechanics +1009.5893 Combinatorics +1010.1260 Distributed, Parallel, and Cluster Computing +1010.2966 Analysis of PDEs +1010.2981 Statistical Finance +1010.5530 High Energy Astrophysical Phenomena +1011.0176 Cosmology and Nongalactic Astrophysics +1011.2396 Superconductivity +1011.3249 Exactly Solvable and Integrable Systems +1011.4447 Strongly Correlated Electrons +1011.4596 +1011.4644 Statistics Theory +1011.6540 +1012.0412 Information Theory +1012.0852 Optics +1012.3544 Strongly Correlated Electrons +1012.4195 Spectral Theory +1012.4657 Spectral Theory +1101.1696 Pattern Formation and Solitons +1101.5584 +1102.1294 Algebraic Geometry +1102.2384 Statistical Mechanics +1102.5574 Combinatorics +1103.2057 History and Philosophy of Physics +1103.4950 Quantum Gases +1103.5789 Information Theory +1104.0375 History and Overview +1104.1027 Classical Analysis and ODEs +1104.5427 Mesoscale and Nanoscale Physics +1105.2061 Numerical Analysis +1105.6141 Quantum Gases +1106.2486 +1106.3238 Superconductivity +1106.3581 Soft Condensed Matter +1106.4683 Fluid Dynamics +1106.5938 Statistical Mechanics +1107.2633 +1107.3793 Computational Geometry +1107.3839 Superconductivity +1107.5626 Combinatorics +1108.4165 Phenomenology +1108.4254 +1108.4530 Theory +1108.5827 +1109.2341 Discrete Mathematics +1109.2351 Dynamical Systems +1109.3124 Strongly Correlated Electrons +1109.4642 Combinatorics +1109.5190 Distributed, Parallel, and Cluster Computing +1110.2905 +1110.4144 Phenomenology +1110.5732 Strongly Correlated Electrons +1111.1774 +1111.2577 Lattice +1111.5439 Mesoscale and Nanoscale Physics +1111.5521 Representation Theory +1111.5642 Functional Analysis +1111.5654 Social and Information Networks +1111.6351 Atomic Physics +1111.6585 Astrophysics of Galaxies +1111.7056 Atomic Physics +1112.0148 Statistical Mechanics +1112.0151 Fluid Dynamics +1112.0794 +1112.3193 Combinatorics +1112.3202 Combinatorics +1112.3205 Combinatorics +1112.3773 Phenomenology +1112.3816 Statistical Mechanics +1112.4053 Fluid Dynamics +1112.5391 Statistical Mechanics +1201.0156 Biomolecules +1201.1637 Solar and Stellar Astrophysics +1201.1777 Number Theory +1201.2614 Theory +1201.3786 Combinatorics +1201.5393 Solar and Stellar Astrophysics +1201.5733 Dynamical Systems +1202.0372 Information Theory +1202.0958 Information Theory +1202.0979 Information Theory +1202.0981 Theory +1202.1013 Analysis of PDEs +1202.1348 Information Theory +1202.1615 Strongly Correlated Electrons +1202.1973 Phenomenology +1202.2237 Statistical Mechanics +1202.2645 High Energy Astrophysical Phenomena +1202.2672 Phenomenology +1202.2887 Information Theory +1202.2929 Mesoscale and Nanoscale Physics +1202.3405 Information Theory +1202.3923 +1202.5558 Quantum Gases +1202.6242 High Energy Astrophysical Phenomena +1203.0150 Other Condensed Matter +1203.0706 Materials Science +1203.0926 Differential Geometry +1203.0968 Phenomenology +1203.1848 Superconductivity +1203.2173 Analysis of PDEs +1203.2407 Instrumentation and Methods for Astrophysics +1203.2792 Quantum Gases +1203.4479 Cosmology and Nongalactic Astrophysics +1203.4802 Genomics +1203.5406 Phenomenology +1203.5874 Networking and Internet Architecture +1204.0243 Differential Geometry +1204.0638 Exactly Solvable and Integrable Systems +1204.0840 +1204.1033 +1204.1218 Instrumentation and Detectors +1204.1567 Methodology +1204.1725 Quantum Gases +1204.1981 Solar and Stellar Astrophysics +1204.3726 Digital Libraries +1204.4602 Materials Science +1204.4615 Statistical Mechanics +1204.5979 Logic +1205.0079 Machine Learning +1205.0747 History and Overview +1205.0901 Strongly Correlated Electrons +1205.1135 Functional Analysis +1205.1142 Soft Condensed Matter +1205.1782 Machine Learning +1205.2525 Classical Analysis and ODEs +1205.2839 +1205.2913 Number Theory +1205.3129 Symplectic Geometry +1205.3141 Geometric Topology +1205.3805 +1205.3820 +1205.3935 Accelerator Physics +1205.4218 Theory +1205.4233 Networking and Internet Architecture +1205.4250 Combinatorics +1205.4252 Statistical Mechanics +1205.4256 General Mathematics +1205.4257 Materials Science +1205.4261 Software Engineering +1205.4266 Information Theory +1205.4276 Logic +1205.4279 Cryptography and Security +1205.4288 Number Theory +1205.4291 Geometric Topology +1205.4295 Learning +1205.4297 Optimization and Control +1205.4298 Computation and Language +1205.4303 Mesoscale and Nanoscale Physics +1205.4304 Other Statistics +1205.4309 +1205.4314 Numerical Analysis +1205.4316 Logic +1205.4328 Digital Libraries +1205.4335 History and Philosophy of Physics +1205.4338 Information Theory +1205.4339 Fluid Dynamics +1205.4342 Combinatorics +1205.4347 Geometric Topology +1205.4349 Learning +1205.4355 High Energy Astrophysical Phenomena +1205.4357 +1205.4361 Networking and Internet Architecture +1205.4363 Data Structures and Algorithms +1205.4366 Soft Condensed Matter +1205.4368 Rings and Algebras +1205.4370 +1205.4371 Atmospheric and Oceanic Physics +1205.4372 +1205.4375 Differential Geometry +1205.4376 Spectral Theory +1205.4379 Cosmology and Nongalactic Astrophysics +1205.4387 Computation and Language +1205.4389 Information Theory +1205.4390 Information Theory +1205.4391 Other Computer Science +1205.4392 Space Physics +1205.4401 +1205.4413 Dynamical Systems +1205.4428 Atomic Physics +1205.4432 +1205.4433 Numerical Analysis +1205.4434 Statistical Mechanics +1205.4438 +1205.4439 Algebraic Topology +1205.4440 +1205.4442 Dynamical Systems +1205.4443 +1205.4445 Statistical Mechanics +1205.4446 Data Analysis, Statistics and Probability +1205.4447 General Physics +1205.4451 +1205.4452 +1205.4454 Information Theory +1205.4455 Differential Geometry +1205.4457 Cryptography and Security +1205.4461 Atomic Physics +1205.4470 Experiment +1205.4471 Information Theory +1205.4473 Category Theory +1205.4477 Learning +1205.4482 Functional Analysis +1205.4487 Emerging Technologies +1205.4489 Cryptography and Security +1205.4491 Number Theory +1205.4492 +1205.4496 Analysis of PDEs +1205.4499 Spectral Theory +1205.4501 Experiment +1205.4503 Computation +1205.4506 +1205.4507 Analysis of PDEs +1205.4509 History and Philosophy of Physics +1205.4510 Probability +1205.4515 Dynamical Systems +1205.4517 +1205.4519 +1205.4521 +1205.4523 Analysis of PDEs +1205.4527 Experiment +1205.4538 Phenomenology +1205.4540 Algebraic Topology +1205.4541 Statistical Mechanics +1205.4544 Instrumentation and Detectors +1205.4545 Distributed, Parallel, and Cluster Computing +1205.4546 Social and Information Networks +1205.4549 Functional Analysis +1205.4552 +1205.4563 Optimization and Control +1205.4564 Networking and Internet Architecture +1205.4572 Multimedia +1205.4576 Cryptography and Security +1205.4580 Soft Condensed Matter +1205.4583 Information Theory +1205.4584 Probability +1205.4589 General Finance +1205.4590 +1205.4593 Soft Condensed Matter +1205.4600 Number Theory +1205.4603 Combinatorics +1205.4606 General Physics +1205.4610 Number Theory +1205.4615 Earth and Planetary Astrophysics +1205.4616 +1205.4620 +1205.4623 General Physics +1205.4625 Logic +1205.4626 Software Engineering +1205.4627 Cosmology and Nongalactic Astrophysics +1205.4629 Experiment +1205.4632 Molecular Networks +1205.4633 Statistical Mechanics +1205.4638 +1205.4639 Systems and Control +1205.4641 Information Theory +1205.4646 Classical Physics +1205.4650 Geometric Topology +1205.4653 Human-Computer Interaction +1205.4654 Complex Variables +1205.4655 Databases +1205.4657 General Mathematics +1205.4658 Analysis of PDEs +1205.4663 History and Philosophy of Physics +1205.4665 Differential Geometry +1205.4667 Experiment +1205.4668 Geometric Topology +1205.4672 Programming Languages +1205.4673 Information Theory +1205.4695 Instrumentation and Methods for Astrophysics +1205.4699 Software Engineering +1205.4702 Algebraic Geometry +1205.4703 Biological Physics +1205.4704 Classical Analysis and ODEs +1205.4705 Computational Physics +1205.4706 Lattice +cond-mat/0606411 Superconductivity +cs/0611059 Information Theory +cs/0701129 Information Theory +math/0502386 Combinatorics +nucl-ex/0305010 +physics/0603067 Optics +0807.2847 Representation Theory +0906.1802 Differential Geometry +0910.1117 Astrophysics of Galaxies +1001.3590 Operator Algebras +1001.5132 Spectral Theory +1005.1332 Mesoscale and Nanoscale Physics +1006.0176 Fluid Dynamics +1006.0609 Cosmology and Nongalactic Astrophysics +1007.1617 Differential Geometry +1012.2442 Differential Geometry +1102.0772 Solar and Stellar Astrophysics +1105.0250 Algebraic Geometry +1106.3313 Quantum Algebra +1109.1958 Mesoscale and Nanoscale Physics +1110.2889 +1110.5479 Computational Physics +1110.5990 Spectral Theory +1111.5044 Differential Geometry +1111.6233 Machine Learning +1112.0515 Mesoscale and Nanoscale Physics +1112.1571 Fluid Dynamics +1112.6076 Fluid Dynamics +1201.1691 Differential Geometry +1201.2867 Chaotic Dynamics +1201.4006 Quantum Gases +1201.5803 Dynamical Systems +1202.3364 Cosmology and Nongalactic Astrophysics +1202.3659 Mesoscale and Nanoscale Physics +1202.5705 +1203.4050 Quantum Gases +1203.5972 Metric Geometry +1203.6512 Mesoscale and Nanoscale Physics +1203.6620 Theory +1204.0858 Strongly Correlated Electrons +1204.1326 Cosmology and Nongalactic Astrophysics +1204.2442 Phenomenology +1204.5633 Statistics Theory +1204.5962 Theory +1205.0710 Theory +1205.3679 Differential Geometry +1205.4125 Superconductivity +1205.4878 Mesoscale and Nanoscale Physics +1205.6740 Mesoscale and Nanoscale Physics +1206.0278 Mesoscale and Nanoscale Physics +1206.0695 Mesoscale and Nanoscale Physics +1206.4829 +1207.0909 Number Theory +1207.2225 K-Theory and Homology +1207.2650 +1207.3325 +1207.3831 Probability +1207.5527 Operator Algebras +1207.6035 +1207.6557 Statistical Mechanics +1207.6905 Cosmology and Nongalactic Astrophysics +1208.0658 Theory +1208.0982 +1208.2337 Classical Analysis and ODEs +1208.2454 Optics +1208.4271 Machine Learning +1208.5481 Phenomenology +1208.5662 Materials Science +1208.6081 Strongly Correlated Electrons +1208.6386 Phenomenology +1208.6496 Optimization and Control +1209.1019 Theory +1209.3277 Statistical Mechanics +1209.4749 Statistical Mechanics +1209.5438 Superconductivity +1209.6020 Phenomenology +1209.6271 Superconductivity +1210.0778 Soft Condensed Matter +1210.2216 Pattern Formation and Solitons +1210.5478 Materials Science +1210.5635 Dynamical Systems +1210.6422 Mesoscale and Nanoscale Physics +1211.1840 High Energy Astrophysical Phenomena +1211.1887 Analysis of PDEs +1211.4679 Strongly Correlated Electrons +1211.6035 Representation Theory +1211.6766 Combinatorics +1211.7108 Theory +1211.7170 Mesoscale and Nanoscale Physics +1211.7289 +1212.0530 Strongly Correlated Electrons +1212.0901 Learning +1212.1894 Mesoscale and Nanoscale Physics +1212.2425 Social and Information Networks +1212.2897 General Physics +1212.2943 Probability +1212.2986 Geometric Topology +1212.3114 Atmospheric and Oceanic Physics +1212.3125 Group Theory +1212.3183 Soft Condensed Matter +1212.3226 Commutative Algebra +1212.3341 Networking and Internet Architecture +1212.3345 Combinatorics +1212.3347 Commutative Algebra +1212.3350 Soft Condensed Matter +1212.3353 Fluid Dynamics +1212.3359 Information Theory +1212.3363 +1212.3365 Combinatorics +1212.3368 Cryptography and Security +1212.3369 Numerical Analysis +1212.3370 Cryptography and Security +1212.3371 Cryptography and Security +1212.3373 Computer Vision and Pattern Recognition +1212.3377 Biological Physics +1212.3378 +1212.3380 Combinatorics +1212.3381 Networking and Internet Architecture +1212.3389 Spectral Theory +1212.3390 Learning +1212.3391 Dynamical Systems +1212.3392 Quantum Algebra +1212.3393 Robotics +1212.3400 Number Theory +1212.3404 Cryptography and Security +1212.3417 +1212.3418 Distributed, Parallel, and Cluster Computing +1212.3421 Combinatorics +1212.3425 Emerging Technologies +1212.3427 Differential Geometry +1212.3435 Analysis of PDEs +1212.3440 Phenomenology +1212.3441 Emerging Technologies +1212.3443 High Energy Astrophysical Phenomena +1212.3448 +1212.3450 Experiment +1212.3451 Materials Science +1212.3453 Medical Physics +1212.3454 Logic in Computer Science +1212.3455 Medical Physics +1212.3458 Programming Languages +1212.3466 Disordered Systems and Neural Networks +1212.3467 Information Theory +1212.3469 Theory +1212.3470 Neurons and Cognition +1212.3471 Data Structures and Algorithms +1212.3477 Superconductivity +1212.3478 Experiment +1212.3480 Databases +1212.3481 +1212.3487 Materials Science +1212.3491 Atmospheric and Oceanic Physics +1212.3494 Mesoscale and Nanoscale Physics +1212.3497 Instrumentation and Methods for Astrophysics +1212.3501 Databases +1212.3502 Operating Systems +1212.3504 Cosmology and Nongalactic Astrophysics +1212.3505 Combinatorics +1212.3510 Mesoscale and Nanoscale Physics +1212.3513 Phenomenology +1212.3517 Computational Complexity +1212.3519 Analysis of PDEs +1212.3525 Number Theory +1212.3529 Rings and Algebras +1212.3533 Theory +1212.3534 Discrete Mathematics +1212.3537 Superconductivity +1212.3539 Category Theory +1212.3540 Social and Information Networks +1212.3541 Optimization and Control +1212.3542 Theory +1212.3544 Numerical Analysis +1212.3546 Popular Physics +1212.3550 Information Theory +1212.3554 Phenomenology +1212.3559 Social and Information Networks +1212.3560 Instrumentation and Detectors +1212.3563 Algebraic Topology +1212.3566 Materials Science +1212.3567 Probability +1212.3569 Theory +1212.3570 Strongly Correlated Electrons +1212.3578 Mesoscale and Nanoscale Physics +1212.3582 Number Theory +1212.3584 +1212.3590 Experiment +1212.3593 Algebraic Geometry +1212.3597 +hep-ph/0108052 Phenomenology +0705.1469 Classical Analysis and ODEs +0710.0470 Commutative Algebra +0711.0873 +0712.1681 +0801.4939 Classical Analysis and ODEs +0804.2794 Differential Geometry +0804.2797 Differential Geometry +0804.2801 Differential Geometry +0804.2804 Differential Geometry +0804.2809 Differential Geometry +0804.2814 Differential Geometry +0805.4711 Complex Variables +0806.3831 Differential Geometry +0812.4743 Differential Geometry +0812.4954 Statistical Mechanics +0902.1763 Combinatorics +0904.2158 Algebraic Geometry +0904.2912 Geometric Topology +0905.1586 Mesoscale and Nanoscale Physics +0905.2259 Probability +0905.3839 Classical Analysis and ODEs +0906.0123 Combinatorics +0906.5389 Combinatorics +0907.2543 Representation Theory +0907.5339 Category Theory +0908.2181 +0909.3978 Risk Management +0910.0056 Algebraic Geometry +0910.2167 Cosmology and Nongalactic Astrophysics +0910.2294 Representation Theory +0911.3393 Theory +1001.3605 Materials Science +1001.3975 Cosmology and Nongalactic Astrophysics +1001.4946 Differential Geometry +1001.5235 Populations and Evolution +1002.5021 Theory +1003.2051 Differential Geometry +1004.0365 Probability +1005.5316 Logic +1005.5443 Algebraic Topology +1006.0368 Cosmology and Nongalactic Astrophysics +1007.1110 Differential Geometry +1007.2274 Materials Science +1008.2475 Soft Condensed Matter +1010.2671 Accelerator Physics +1010.3367 Combinatorics +1011.2252 +1011.2599 Classical Analysis and ODEs +1011.4056 Probability +1011.6504 Combinatorics +1011.6532 Computational Finance +1012.3464 Strongly Correlated Electrons +1101.4557 Number Theory +1102.5059 +1103.2599 Statistical Mechanics +1103.5426 Information Theory +1103.6014 Experiment +1104.0448 Representation Theory +1104.4933 Soft Condensed Matter +1104.5469 Theory +1105.0692 Algebraic Topology +1105.4129 +1106.0140 +1106.3273 Probability +1106.5062 Solar and Stellar Astrophysics +1106.5823 Mesoscale and Nanoscale Physics +1107.1075 Cosmology and Nongalactic Astrophysics +1107.1436 Dynamical Systems +1107.2684 Popular Physics +1107.4524 Physics and Society +1107.4598 Cosmology and Nongalactic Astrophysics +1107.5481 Probability +1108.0060 +1108.0061 +1108.5359 Numerical Analysis +1108.5941 Mesoscale and Nanoscale Physics +1109.0136 Differential Geometry +1109.2333 Mesoscale and Nanoscale Physics +1109.4182 Analysis of PDEs +1109.4986 Algebraic Geometry +1109.5916 Analysis of PDEs +1109.5921 Analysis of PDEs +1109.6857 Mesoscale and Nanoscale Physics +1110.1508 Superconductivity +1110.2753 Performance +1110.2827 Analysis of PDEs +1110.3023 Differential Geometry +1110.3331 +1110.4460 Theory +1110.4522 Mesoscale and Nanoscale Physics +1110.5220 Materials Science +1110.5909 Phenomenology +1110.6493 Statistical Mechanics +1111.1451 Analysis of PDEs +1111.1703 Mesoscale and Nanoscale Physics +1111.2961 Analysis of PDEs +1111.5024 +1111.5153 +1111.5550 Mesoscale and Nanoscale Physics +1111.6372 Information Theory +1112.0062 Information Theory +1112.0072 Numerical Analysis +1112.0294 Atmospheric and Oceanic Physics +1112.1384 Quantum Gases +1112.1607 Risk Management +1112.3561 High Energy Astrophysical Phenomena +1112.3836 Mesoscale and Nanoscale Physics +1112.4356 Phenomenology +1112.5581 Materials Science +1112.5601 Cosmology and Nongalactic Astrophysics +1112.5725 Plasma Physics +1112.6260 +1201.0004 Chaotic Dynamics +1201.0363 Superconductivity +1201.0449 Theory +1201.1399 Strongly Correlated Electrons +1201.1571 Computer Vision and Pattern Recognition +1201.1958 Quantum Gases +1201.2302 Earth and Planetary Astrophysics +1201.2839 Probability +1201.3741 Differential Geometry +1201.4990 Plasma Physics +1201.5153 Mesoscale and Nanoscale Physics +1201.6135 Theory +1202.0568 Robotics +1202.0607 Information Theory +1202.1853 Populations and Evolution +1202.2824 Classical Analysis and ODEs +1202.2909 Materials Science +1202.2987 Other Condensed Matter +1202.3097 Data Structures and Algorithms +1202.3152 Mesoscale and Nanoscale Physics +1202.3514 Information Theory +1202.4133 Digital Libraries +1202.4774 Mesoscale and Nanoscale Physics +1202.4911 Optics +1202.5620 Accelerator Physics +1202.5768 +1202.6194 Materials Science +1203.1231 +1203.2251 +1203.4253 Superconductivity +1203.4295 Number Theory +1203.4368 Mesoscale and Nanoscale Physics +1203.5336 Solar and Stellar Astrophysics +1203.5565 +1203.6097 Geometric Topology +1203.6745 Analysis of PDEs +1203.6840 Atomic Physics +1204.0934 Functional Analysis +1204.0967 Representation Theory +1204.1478 Space Physics +1204.1691 +1204.2238 Combinatorics +1204.2626 +1204.2962 Materials Science +1204.3309 Metric Geometry +1204.3467 Cosmology and Nongalactic Astrophysics +1204.4305 Group Theory +1204.5593 Statistical Mechanics +1204.6400 Materials Science +1205.0243 Artificial Intelligence +1205.0392 +1205.0472 Commutative Algebra +1205.0489 Superconductivity +1205.0779 Phenomenology +1205.0984 +1205.1053 Learning +1205.1054 Number Theory +1205.1055 Physics and Society +1205.1067 Complex Variables +1205.1068 Logic +1205.1075 Dynamical Systems +1205.1076 Computation +1205.1083 Commutative Algebra +1205.1085 Probability +1205.1087 Classical Physics +1205.1088 Analysis of PDEs +1205.1097 +1205.1101 Combinatorics +1205.1104 Number Theory +1205.1107 Applications +1205.1111 Geometric Topology +1205.1112 Classical Analysis and ODEs +1205.1114 Data Structures and Algorithms +1205.1117 Data Structures and Algorithms +1205.1120 Algebraic Topology +1205.1121 Dynamical Systems +1205.1125 Computational Engineering, Finance, and Science +1205.1126 Databases +1205.1129 Group Theory +1205.1134 +1205.1138 Numerical Analysis +1205.1139 Number Theory +1205.1140 Group Theory +1205.1141 Computers and Society +1205.1143 Information Retrieval +1205.1145 General Mathematics +1205.1147 Number Theory +1205.1154 Probability +1205.1163 Numerical Analysis +1205.1166 Chaotic Dynamics +1205.1171 Distributed, Parallel, and Cluster Computing +1205.1173 Information Theory +1205.1175 Algebraic Geometry +1205.1181 Machine Learning +1205.1186 Other Condensed Matter +1205.1189 Combinatorics +1205.1190 Robotics +1205.1193 Functional Analysis +1205.1195 Data Structures and Algorithms +1205.1196 Networking and Internet Architecture +1205.1202 Analysis of PDEs +1205.1204 Cosmology and Nongalactic Astrophysics +1205.1207 Representation Theory +1205.1208 Phenomenology +1205.1210 Statistics Theory +1205.1213 Analysis of PDEs +1205.1220 High Energy Astrophysical Phenomena +1205.1221 Rings and Algebras +1205.1224 +1205.1225 Computational Geometry +1205.1226 Analysis of PDEs +1205.1227 Digital Libraries +1205.1230 Mesoscale and Nanoscale Physics +1205.1234 +1205.1235 +1205.1240 Machine Learning +1205.1248 Algebraic Geometry +1205.1249 Probability +1205.1251 Optics +1205.1254 Discrete Mathematics +1205.1260 Cosmology and Nongalactic Astrophysics +1205.1264 Mesoscale and Nanoscale Physics +1205.1265 +1205.1267 Phenomenology +1205.1272 Representation Theory +1205.1279 Algebraic Geometry +1205.1282 Instrumentation and Detectors +1205.1290 History and Philosophy of Physics +1205.1292 Mesoscale and Nanoscale Physics +1205.1293 Numerical Analysis +1205.1294 Number Theory +1205.1301 Optics +1205.1302 Differential Geometry +1205.1303 Strongly Correlated Electrons +1205.1304 Theory +1205.1309 Materials Science +1205.1312 Data Structures and Algorithms +1205.1313 Mesoscale and Nanoscale Physics +1205.1315 Probability +1205.1318 Statistical Mechanics +1205.1319 Statistical Mechanics +1205.1320 Operator Algebras +1205.1323 +1205.1324 Representation Theory +1205.1326 Classical Analysis and ODEs +1205.1330 Number Theory +1205.1331 Networking and Internet Architecture +1205.1340 Number Theory +1205.1342 Spectral Theory +1205.1350 Mesoscale and Nanoscale Physics +1205.1354 Materials Science +1205.1356 Differential Geometry +1205.1357 Cryptography and Security +1205.1359 +1205.1365 Multimedia +1205.1368 Differential Geometry +1205.1371 High Energy Astrophysical Phenomena +1205.1374 Optics +1205.1381 Analysis of PDEs +1205.1386 Number Theory +1205.1389 Information Theory +1205.1392 Materials Science +1205.1397 Optics +1205.1400 Statistical Mechanics +1205.1403 Analysis of PDEs +1205.1404 Superconductivity +1205.1407 General Physics +1205.1409 Number Theory +1205.1419 Digital Libraries +1205.1426 Space Physics +1205.1428 Computational Engineering, Finance, and Science +1205.1433 Superconductivity +1205.1435 Superconductivity +1205.1443 Analysis of PDEs +1205.1445 Analysis of PDEs +1205.1448 Phenomenology +1205.1452 Materials Science +1205.1456 Social and Information Networks +1205.1457 Distributed, Parallel, and Cluster Computing +1205.1461 Applications +1205.1462 Information Theory +1205.1465 Cryptography and Security +1205.1470 Combinatorics +1205.1472 Analysis of PDEs +1205.1473 Formal Languages and Automata Theory +1205.1477 Data Structures and Algorithms +1205.1479 History and Philosophy of Physics +1205.1483 Information Theory +1205.1487 Symplectic Geometry +1205.1489 Functional Analysis +1205.1490 Symplectic Geometry +1205.1499 Physics and Society +cs/0703146 Computational Complexity +math-ph/0504045 +math-ph/0605079 +math/0502334 Classical Analysis and ODEs +math/0601272 Classical Analysis and ODEs +math/0601455 Dynamical Systems +math/0703329 Algebraic Geometry +quant-ph/0604062 +quant-ph/0604147 +quant-ph/0701032 +1210.0047 Analysis of PDEs +cond-mat/9712240 Strongly Correlated Electrons +0707.1561 +0712.1572 Number Theory +0803.0341 Algebraic Geometry +0806.4401 Commutative Algebra +0808.2792 Number Theory +0812.3342 Algebraic Geometry +0902.0316 Commutative Algebra +0906.2830 Plasma Physics +0908.2609 Combinatorics +0909.0936 Classical Physics +0909.0969 Algebraic Geometry +0909.2139 Statistics Theory +0910.3200 +0911.1318 Information Retrieval +0911.2474 Number Theory +0912.0751 Mesoscale and Nanoscale Physics +1001.2294 Phenomenology +1005.0758 +1005.2583 Classical Physics +1005.2625 Phenomenology +1005.4183 Phenomenology +1008.3868 Group Theory +1008.4299 Algebraic Geometry +1011.4109 Information Theory +1011.4157 Hardware Architecture +1101.2741 General Topology +1101.4856 Probability +1102.3468 Materials Science +1103.2072 Probability +1104.3350 Algebraic Geometry +1105.1113 Phenomenology +1105.3930 Theory +1106.4779 Medical Physics +1107.2551 +1107.3156 Algebraic Geometry +1107.4700 Probability +1108.4608 K-Theory and Homology +1109.1085 +1109.1736 General Topology +1109.2386 Probability +1109.3356 +1109.6148 Mesoscale and Nanoscale Physics +1110.0739 Combinatorics +1110.2401 Strongly Correlated Electrons +1110.2461 Exactly Solvable and Integrable Systems +1110.4533 Strongly Correlated Electrons +1110.4824 Combinatorics +1110.6192 Phenomenology +1111.0653 Statistics Theory +1111.2004 +1111.2667 Machine Learning +1111.3425 +1111.4125 Differential Geometry +1111.4837 +1112.1934 Dynamical Systems +1112.3867 Populations and Evolution +1112.4530 Statistics Theory +1112.4928 Phenomenology +1112.5586 Strongly Correlated Electrons +1201.0402 Optics +1201.2498 Mesoscale and Nanoscale Physics +1201.2915 Combinatorics +1201.3360 +1201.3757 +1201.4075 Complex Variables +1201.4415 +1201.4840 Spectral Theory +1201.4865 Theory +1202.1809 +1202.2840 Computer Science and Game Theory +1202.4036 Phenomenology +1202.4935 Chemical Physics +1202.5019 Atomic Physics +1202.5391 Phenomenology +1202.5399 Phenomenology +1202.5401 Phenomenology +1203.2591 Methodology +1203.4541 Phenomenology +1203.4974 Superconductivity +1203.5174 Phenomenology +1203.6651 Theory +1204.0038 Mesoscale and Nanoscale Physics +1204.0239 +1204.1786 +1204.3039 +1204.3324 Strongly Correlated Electrons +1204.3364 Phenomenology +1204.3946 Adaptation and Self-Organizing Systems +1204.4081 Quantum Gases +1204.4415 Phenomenology +1204.4983 Strongly Correlated Electrons +1204.5478 Solar and Stellar Astrophysics +1205.0007 Phenomenology +1205.0592 +1205.1408 Number Theory +1205.2191 +1205.3509 Superconductivity +1205.4656 Learning +1205.5937 Representation Theory +1205.6947 Combinatorics +1206.1239 Mesoscale and Nanoscale Physics +1206.1496 +1206.1897 Combinatorics +1206.2066 Operator Algebras +1206.3084 Physics and Society +1206.3114 Geometric Topology +1206.4514 Superconductivity +1206.4843 High Energy Astrophysical Phenomena +1206.5042 Materials Science +1206.6023 Logic +1207.0026 Biological Physics +1207.0912 +1207.2652 Analysis of PDEs +1207.3215 +1207.3472 Computational Engineering, Finance, and Science +1207.4608 Pricing of Securities +1207.4723 Materials Science +1207.4948 Combinatorics +1207.5132 Combinatorics +1207.5226 Databases +1207.5323 Networking and Internet Architecture +1207.5504 Strongly Correlated Electrons +1207.5505 +1207.5513 Mesoscale and Nanoscale Physics +1207.5516 Cosmology and Nongalactic Astrophysics +1207.5518 Computer Science and Game Theory +1207.5526 Accelerator Physics +1207.5528 Information Theory +1207.5529 Accelerator Physics +1207.5536 Artificial Intelligence +1207.5538 Superconductivity +1207.5539 Superconductivity +1207.5541 Geometric Topology +1207.5542 Information Theory +1207.5545 Software Engineering +1207.5546 Dynamical Systems +1207.5549 Strongly Correlated Electrons +1207.5550 Probability +1207.5553 Commutative Algebra +1207.5557 Representation Theory +1207.5559 Materials Science +1207.5560 Sound +1207.5569 +1207.5574 Probability +1207.5579 Dynamical Systems +1207.5589 Artificial Intelligence +1207.5590 Chaotic Dynamics +1207.5591 Analysis of PDEs +1207.5592 Logic in Computer Science +1207.5593 Combinatorics +1207.5594 Statistics Theory +1207.5596 Group Theory +1207.5597 Instrumentation and Methods for Astrophysics +1207.5602 Optics +1207.5604 History and Philosophy of Physics +1207.5613 Strongly Correlated Electrons +1207.5614 Algebraic Geometry +1207.5615 Statistics Theory +1207.5616 Differential Geometry +1207.5617 Differential Geometry +1207.5620 Differential Geometry +1207.5625 Statistics Theory +1207.5627 Cryptography and Security +1207.5633 Number Theory +1207.5635 Probability +1207.5640 Information Theory +1207.5642 Dynamical Systems +1207.5649 Methodology +1207.5650 Classical Analysis and ODEs +1207.5651 Methodology +1207.5652 Algebraic Topology +1207.5653 Methodology +1207.5654 Statistics Theory +1207.5655 Methodology +1207.5656 Methodology +1207.5659 Statistics Theory +1207.5662 Differential Geometry +1207.5667 Differential Geometry +1207.5668 Differential Geometry +1207.5671 Soft Condensed Matter +1207.5673 General Mathematics +1207.5675 Mesoscale and Nanoscale Physics +1207.5680 Probability +1207.5682 Superconductivity +1207.5691 Superconductivity +1207.5696 Data Structures and Algorithms +1207.5699 Dynamical Systems +1207.5702 Number Theory +1207.5707 Commutative Algebra +1207.5708 Networking and Internet Architecture +1207.5711 Quantitative Methods +1207.5712 Combinatorics +1207.5713 Logic +1207.5715 Superconductivity +1207.5717 Logic +1207.5718 General Physics +1207.5722 Data Structures and Algorithms +1207.5723 Discrete Mathematics +1207.5733 Accelerator Physics +1207.5734 Networking and Internet Architecture +1207.5736 Networking and Internet Architecture +1207.5743 Optimization and Control +1207.5745 Information Retrieval +1207.5746 Systems and Control +1207.5747 Computer Science and Game Theory +1207.5749 Functional Analysis +1207.5752 General Physics +1207.5758 Computation +1207.5765 Number Theory +1207.5769 Statistical Mechanics +1207.5775 +1207.5777 Databases +1207.5778 Physics and Society +1207.5784 Functional Analysis +cond-mat/0506505 Mesoscale and Nanoscale Physics +gr-qc/0412037 +gr-qc/0602049 +gr-qc/0610085 +math/0607508 Number Theory +math/0608032 Number Theory +nlin/0503015 Chaotic Dynamics +nucl-th/9301018 +physics/0607238 Data Analysis, Statistics and Probability +0707.2326 Algebraic Geometry +0710.2480 Algebraic Geometry +0711.0868 Lattice +0810.0169 Superconductivity +0810.1813 +0811.1710 Probability +0812.0124 +0904.0068 Statistics Theory +0907.1725 Number Theory +0908.2843 Algebraic Topology +0911.4037 Lattice +0912.4080 Cryptography and Security +1003.1348 Differential Geometry +1006.3282 +1010.0221 Theory +1010.1859 Differential Geometry +1011.1835 Exactly Solvable and Integrable Systems +1011.4054 Algebraic Geometry +1011.4112 Rings and Algebras +1011.4884 Complex Variables +1102.0677 Functional Analysis +1104.0289 Logic +1104.0290 Logic +1105.3651 Differential Geometry +1106.1055 Physics Education +1106.3830 Statistics Theory +1106.4038 Number Theory +1107.2349 Algebraic Geometry +1107.3198 Computer Science and Game Theory +1107.4249 Chemical Physics +1108.3101 Solar and Stellar Astrophysics +1108.3995 Probability +1108.4198 +1109.1244 Statistics Theory +1109.1258 Algebraic Geometry +1109.5291 Analysis of PDEs +1110.0145 Theory +1110.3907 Machine Learning +1111.1853 +1111.2796 Populations and Evolution +1111.2829 Physics and Society +1111.3648 High Energy Astrophysical Phenomena +1112.2512 Fluid Dynamics +1112.2710 High Energy Astrophysical Phenomena +1112.2762 Cryptography and Security +1112.3698 Theory +1112.5472 Data Structures and Algorithms +1112.6391 +1201.2979 Atomic Physics +1201.6656 Number Theory +1202.1609 Dynamical Systems +1202.2239 Phenomenology +1202.3335 Artificial Intelligence +1202.5176 Theory +1202.5299 Physics and Society +1202.5557 Number Theory +1202.5583 +1203.0538 Astrophysics of Galaxies +1203.3449 +1203.3978 Chemical Physics +1204.3745 Category Theory +1204.3799 Social and Information Networks +1204.4216 Mesoscale and Nanoscale Physics +1204.5651 Classical Physics +1204.6406 Materials Science +1205.0244 +1205.0988 Phenomenology +1205.4101 Number Theory +1205.4226 Strongly Correlated Electrons +1205.6559 Probability +1205.6789 Statistical Mechanics +1206.0998 Theory +1206.1203 Category Theory +1206.1492 Information Retrieval +1206.2565 Phenomenology +1206.2705 Quantum Algebra +1206.3407 +1206.4216 Probability +1206.4474 Strongly Correlated Electrons +1206.4852 Atomic Physics +1206.5984 +1206.6706 General Physics +1207.0156 Phenomenology +1207.0676 Optics +1207.0729 Phenomenology +1207.0809 Cosmology and Nongalactic Astrophysics +1207.0824 Exactly Solvable and Integrable Systems +1207.0826 Instrumentation and Detectors +1207.0829 Materials Science +1207.0833 Artificial Intelligence +1207.0836 Earth and Planetary Astrophysics +1207.0837 Materials Science +1207.0840 Discrete Mathematics +1207.0841 +1207.0842 Number Theory +1207.0845 Fluid Dynamics +1207.0847 Emerging Technologies +1207.0848 Soft Condensed Matter +1207.0849 Soft Condensed Matter +1207.0851 Materials Science +1207.0852 Multiagent Systems +1207.0854 Information Theory +1207.0867 Logic in Computer Science +1207.0868 Logic in Computer Science +1207.0869 Software Engineering +1207.0870 Logic in Computer Science +1207.0871 Cryptography and Security +1207.0872 Cryptography and Security +1207.0873 Systems and Control +1207.0874 Logic in Computer Science +1207.0879 Information Theory +1207.0892 Data Structures and Algorithms +1207.0894 Distributed, Parallel, and Cluster Computing +1207.0899 Strongly Correlated Electrons +1207.0907 Optimization and Control +1207.0910 Analysis of PDEs +1207.0911 Other Computer Science +1207.0913 Social and Information Networks +1207.0914 +1207.0916 Phenomenology +1207.0917 Cryptography and Security +1207.0919 Strongly Correlated Electrons +1207.0920 +1207.0922 Systems and Control +1207.0923 Analysis of PDEs +1207.0924 +1207.0928 Functional Analysis +1207.0931 Physics and Society +1207.0933 Data Structures and Algorithms +1207.0934 Cosmology and Nongalactic Astrophysics +1207.0935 Computer Science and Game Theory +1207.0938 Information Theory +1207.0939 Methodology +1207.0940 Analysis of PDEs +1207.0941 Group Theory +1207.0943 Solar and Stellar Astrophysics +1207.0946 Functional Analysis +1207.0947 Optics +1207.0948 Spectral Theory +1207.0955 General Physics +1207.0957 Analysis of PDEs +1207.0958 Strongly Correlated Electrons +1207.0959 Category Theory +1207.0960 Strongly Correlated Electrons +1207.0961 Strongly Correlated Electrons +1207.0966 Superconductivity +1207.0967 Cryptography and Security +1207.0968 Analysis of PDEs +1207.0973 Complex Variables +1207.0979 Computational Complexity +1207.0982 Physics Education +1207.0993 +1207.0997 General Physics +1207.1000 Strongly Correlated Electrons +1207.1013 Functional Analysis +1207.1015 Group Theory +1207.1016 Robotics +1207.1030 Differential Geometry +1207.1031 Computers and Society +1207.1032 General Literature +1207.1033 General Literature +1207.1034 General Literature +1207.1035 Optimization and Control +1207.1036 Materials Science +1207.1037 Portfolio Management +1207.1040 Computational Physics +1207.1042 Algebraic Geometry +1207.1045 Superconductivity +1207.1046 +1207.1052 Analysis of PDEs +1207.1058 +1207.1060 Commutative Algebra +1207.1061 Optimization and Control +1207.1066 Pattern Formation and Solitons +1207.1075 Biological Physics +1207.1077 Optimization and Control +1207.1091 Chemical Physics +1207.1094 +hep-th/0208210 Theory +math/0310026 Algebraic Geometry +0704.1409 Learning +0705.4157 Classical Analysis and ODEs +0705.4161 Classical Analysis and ODEs +0808.3972 Complex Variables +0901.3173 Earth and Planetary Astrophysics +0911.2356 Probability +0912.3542 Differential Geometry +1002.3099 Differential Geometry +1003.5026 General Mathematics +1008.0396 Materials Science +1010.0079 Fluid Dynamics +1010.5365 Theory +1011.1787 Computational Geometry +1011.4495 Number Theory +1101.0882 +1102.0933 Cell Behavior +1102.4795 +1103.1005 Functional Analysis +1103.5242 Statistical Mechanics +1103.5625 Populations and Evolution +1104.1797 +1104.4997 Probability +1106.6184 Computational Physics +1107.2865 Geometric Topology +1107.3215 Functional Analysis +1108.0273 Differential Geometry +1108.1310 Numerical Analysis +1108.2763 +1109.4705 Optics +1109.5193 Probability +1110.0558 Quantum Gases +1111.0146 Representation Theory +1111.1166 Astrophysics of Galaxies +1111.4295 Mesoscale and Nanoscale Physics +1111.4700 Chaotic Dynamics +1111.5110 Other Statistics +1111.5772 Strongly Correlated Electrons +1111.6238 Statistical Mechanics +1112.0758 General Finance +1112.3475 Physics and Society +1112.3520 +1112.4442 +1112.5933 Differential Geometry +1201.2391 Phenomenology +1201.4048 +1201.5576 Quantum Gases +1202.0224 Physics and Society +1202.0712 Experiment +1202.1047 +1202.1595 Information Theory +1202.2326 +1202.4322 Theory +1202.4510 General Mathematics +1202.5117 Quantum Gases +1202.5177 Algebraic Geometry +1202.5632 Experiment +1202.5875 Materials Science +1202.6495 Instrumentation and Detectors +1203.0354 Superconductivity +1203.1091 Lattice +1203.1734 Superconductivity +1203.2732 +1203.3046 Materials Science +1203.3302 +1203.3736 Atomic Physics +1203.4223 Combinatorics +1204.2556 Cosmology and Nongalactic Astrophysics +1204.2683 +1204.4203 Mesoscale and Nanoscale Physics +1204.6260 +1205.0238 Soft Condensed Matter +1205.0317 +1205.0942 Differential Geometry +1205.2130 Cosmology and Nongalactic Astrophysics +1205.3864 Number Theory +1205.4092 Representation Theory +1205.5594 Probability +1205.6024 Social and Information Networks +1205.6026 Classical Analysis and ODEs +1205.6768 Differential Geometry +1205.6931 Phenomenology +1205.6945 Phenomenology +1206.0095 Solar and Stellar Astrophysics +1206.0202 +1206.0471 Differential Geometry +1206.0625 High Energy Astrophysical Phenomena +1206.0637 Neurons and Cognition +1206.0935 Populations and Evolution +1206.1147 Learning +1206.1291 Artificial Intelligence +1206.1395 Statistics Theory +1206.1473 Spectral Theory +1206.1501 Operator Algebras +1206.1504 Pricing of Securities +1206.1505 Soft Condensed Matter +1206.1574 Fluid Dynamics +1206.1591 Optics +1206.1603 Logic +1206.1611 Networking and Internet Architecture +1206.1613 Functional Analysis +1206.1615 Information Retrieval +1206.1618 Networking and Internet Architecture +1206.1619 Experiment +1206.1621 Populations and Evolution +1206.1622 Phenomenology +1206.1624 Information Retrieval +1206.1625 Optimization and Control +1206.1626 Adaptation and Self-Organizing Systems +1206.1628 Numerical Analysis +1206.1632 Superconductivity +1206.1640 +1206.1642 +1206.1643 Dynamical Systems +1206.1647 Combinatorics +1206.1654 Geometric Topology +1206.1665 Networking and Internet Architecture +1206.1666 +1206.1667 Differential Geometry +1206.1669 Networking and Internet Architecture +1206.1672 Optimization and Control +1206.1674 Networking and Internet Architecture +1206.1675 Statistics Theory +1206.1677 Chemical Physics +1206.1678 Artificial Intelligence +1206.1680 +1206.1687 Programming Languages +1206.1693 Solar and Stellar Astrophysics +1206.1694 High Energy Astrophysical Phenomena +1206.1697 Phenomenology +1206.1706 Logic +1206.1708 Statistics Theory +1206.1717 Soft Condensed Matter +1206.1719 Optimization and Control +1206.1720 Algebraic Geometry +1206.1722 Other Computer Science +1206.1724 Artificial Intelligence +1206.1727 General Topology +1206.1731 Classical Analysis and ODEs +1206.1732 Phenomenology +1206.1738 Superconductivity +1206.1741 Applications +1206.1743 Numerical Analysis +1206.1745 Phenomenology +1206.1747 Chemical Physics +1206.1748 Networking and Internet Architecture +1206.1750 Phenomenology +1206.1753 Statistics Theory +1206.1757 Dynamical Systems +1206.1758 Materials Science +1206.1761 History and Overview +1206.1769 History and Overview +1206.1774 Differential Geometry +1206.1775 Computational Complexity +1206.1776 Mesoscale and Nanoscale Physics +1206.1782 High Energy Astrophysical Phenomena +1206.1783 Optimization and Control +1206.1784 Quantum Gases +1206.1786 Representation Theory +1206.1789 Classical Analysis and ODEs +1206.1790 Solar and Stellar Astrophysics +1206.1794 Artificial Intelligence +1206.1796 Phenomenology +1206.1797 Phenomenology +1206.1799 Instrumentation and Methods for Astrophysics +1206.1800 Neurons and Cognition +1206.1801 Classical Analysis and ODEs +1206.1803 Computational Geometry +1206.1804 Earth and Planetary Astrophysics +1206.1808 Analysis of PDEs +1206.1813 +1206.1815 Networking and Internet Architecture +1206.1817 Probability +1206.1818 Applications +1206.1823 Number Theory +1206.1829 Group Theory +1206.1831 Statistics Theory +1206.1832 Analysis of PDEs +1206.1833 Digital Libraries +1206.1835 K-Theory and Homology +1206.1836 Phenomenology +1206.1838 +1206.1840 Representation Theory +1206.1841 +1206.1843 Phenomenology +1206.1848 Networking and Internet Architecture +1206.1851 Systems and Control +math/0405216 Rings and Algebras +math/0502027 Complex Variables +math/0502037 General Mathematics +math/0508637 Rings and Algebras +math/0509148 Rings and Algebras +math/0606371 Metric Geometry +math/0701198 Logic +math/9912225 Probability +0802.3889 Number Theory +0811.3738 Rings and Algebras +0812.3382 Number Theory +0905.4000 Theory +0910.4001 Algebraic Topology +0910.5092 Differential Geometry +0911.0205 Classical Analysis and ODEs +0911.0930 Methodology +0912.4043 Representation Theory +1001.3247 Experiment +1003.2056 +1005.3229 Statistical Mechanics +1009.1909 Computation +1009.3604 Learning +1010.0498 +1010.3168 Fluid Dynamics +1010.4019 Fluid Dynamics +1010.5413 Differential Geometry +1010.6059 Representation Theory +1011.0925 Classical Analysis and ODEs +1012.2068 Number Theory +1012.2681 Number Theory +1102.1037 Quantum Algebra +1102.2781 Mesoscale and Nanoscale Physics +1102.3150 Risk Management +1102.4322 Algebraic Geometry +1103.3525 Symplectic Geometry +1103.3682 +1104.1994 Number Theory +1104.2662 Commutative Algebra +1104.3915 Combinatorics +1105.2244 Commutative Algebra +1105.2340 Quantum Gases +1105.2838 Phenomenology +1105.4188 +1106.4628 Biomolecules +1106.5004 Theory +1106.6280 Computation +1107.1751 Statistical Mechanics +1107.1759 +1107.2506 Theory +1107.3904 Methodology +1107.3971 Cosmology and Nongalactic Astrophysics +1109.1051 +1109.1236 Combinatorics +1109.1827 Mesoscale and Nanoscale Physics +1109.3046 Analysis of PDEs +1109.3642 Strongly Correlated Electrons +1109.4461 Theory +1109.5512 Portfolio Management +1109.6315 +1110.0030 Algebraic Geometry +1110.0529 Symplectic Geometry +1110.1818 +1110.2670 Statistical Mechanics +1110.4840 Algebraic Geometry +1110.5069 Theory +1111.0875 Distributed, Parallel, and Cluster Computing +1111.3709 +1111.6754 Theory +1111.7202 Analysis of PDEs +1112.0417 Cosmology and Nongalactic Astrophysics +1112.0505 Solar and Stellar Astrophysics +1112.0802 Algebraic Geometry +1112.2198 Instrumentation and Detectors +1201.0346 Classical Analysis and ODEs +1201.0550 Cosmology and Nongalactic Astrophysics +1201.0678 Algebraic Geometry +1201.0924 Combinatorics +1201.2544 Cosmology and Nongalactic Astrophysics +1201.5233 Number Theory +1202.0386 Rings and Algebras +1202.1194 Computational Complexity +1202.1520 Combinatorics +1202.2588 Superconductivity +1202.3603 Plasma Physics +1202.3908 Disordered Systems and Neural Networks +1202.3944 Theory +1202.4689 Cosmology and Nongalactic Astrophysics +1202.4733 Instrumentation and Detectors +1202.6298 Cosmology and Nongalactic Astrophysics +1202.6671 Analysis of PDEs +1203.1202 Atomic Physics +1203.1255 Number Theory +1203.2019 Strongly Correlated Electrons +1203.2293 Computation and Language +1203.2782 Strongly Correlated Electrons +1203.3760 Numerical Analysis +1203.4361 Soft Condensed Matter +1203.5618 Mesoscale and Nanoscale Physics +1203.6448 +1203.6474 Analysis of PDEs +1204.0328 Theory +1204.0994 Dynamical Systems +1204.1036 Number Theory +1204.3149 Strongly Correlated Electrons +1204.4489 Optics +1204.5933 Statistical Mechanics +1204.6691 Distributed, Parallel, and Cluster Computing +1205.1289 Analysis of PDEs +1205.2000 +1205.2057 Optics +1205.4350 High Energy Astrophysical Phenomena +1205.6078 Biological Physics +1205.6131 +1205.6355 Differential Geometry +1205.6676 Cosmology and Nongalactic Astrophysics +1205.7029 Quantum Algebra +1206.0830 +1206.1650 +1206.2802 Physics and Society +1206.2924 Cosmology and Nongalactic Astrophysics +1206.3008 Phenomenology +1206.3622 +1206.5073 Plasma Physics +1206.5252 Computer Science and Game Theory +1206.6026 Cosmology and Nongalactic Astrophysics +1207.1839 Phenomenology +1207.1885 Data Structures and Algorithms +1207.3807 Data Structures and Algorithms +1207.3834 Superconductivity +1207.3986 +1207.4050 +1207.5404 Mesoscale and Nanoscale Physics +1207.5825 Cosmology and Nongalactic Astrophysics +1207.6065 Mesoscale and Nanoscale Physics +1207.6406 +1207.6986 Data Structures and Algorithms +1208.0165 Quantum Gases +1208.0456 +1208.0485 Soft Condensed Matter +1208.0751 Phenomenology +1208.0843 Quantitative Methods +1208.1015 +1208.2101 Materials Science +1208.2636 Biomolecules +1208.3184 +1208.4600 Cosmology and Nongalactic Astrophysics +1208.4915 Statistical Mechanics +1208.5371 Combinatorics +1208.5710 Materials Science +1208.6521 Statistical Mechanics +1209.0408 Phenomenology +1209.0998 Analysis of PDEs +1209.2136 Solar and Stellar Astrophysics +1209.2864 Theory +1209.3415 +1209.3735 Mesoscale and Nanoscale Physics +1209.4707 High Energy Astrophysical Phenomena +1209.5426 Databases +1209.6224 Mesoscale and Nanoscale Physics +1210.0538 Earth and Planetary Astrophysics +1210.0554 Theory +1210.0712 General Physics +1210.1450 Solar and Stellar Astrophysics +1210.1562 Number Theory +1210.1817 Materials Science +1210.1907 Fluid Dynamics +1210.2782 Solar and Stellar Astrophysics +1210.2827 Algebraic Geometry +1210.2967 Information Theory +1210.3083 Differential Geometry +1210.3156 +1210.3354 Physics and Society +1210.3409 Operator Algebras +1210.3504 Number Theory +1210.3618 Number Theory +1210.3632 Neurons and Cognition +1210.3633 Medical Physics +1210.3634 Computation and Language +1210.3639 Fluid Dynamics +1210.3640 Software Engineering +1210.3644 Algebraic Geometry +1210.3645 Superconductivity +1210.3648 Accelerator Physics +1210.3650 Fluid Dynamics +1210.3652 Data Structures and Algorithms +1210.3654 +1210.3656 Differential Geometry +1210.3659 Superconductivity +1210.3667 Information Theory +1210.3671 Group Theory +1210.3673 +1210.3674 Fluid Dynamics +1210.3677 Statistical Mechanics +1210.3678 General Finance +1210.3682 Analysis of PDEs +1210.3683 +1210.3685 +1210.3687 Strongly Correlated Electrons +1210.3688 Classical Physics +1210.3691 Optics +1210.3693 Fluid Dynamics +1210.3694 Physics Education +1210.3696 Functional Analysis +1210.3697 Phenomenology +1210.3700 +1210.3702 Networking and Internet Architecture +1210.3707 Genomics +1210.3710 +1210.3714 Fluid Dynamics +1210.3715 Algebraic Geometry +1210.3717 Dynamical Systems +1210.3719 Cryptography and Security +1210.3722 Exactly Solvable and Integrable Systems +1210.3724 +1210.3728 Fluid Dynamics +1210.3729 Computation and Language +1210.3731 +1210.3735 Distributed, Parallel, and Cluster Computing +1210.3738 +1210.3741 Neurons and Cognition +1210.3747 Fluid Dynamics +1210.3752 Fluid Dynamics +1210.3756 Software Engineering +1210.3758 Software Engineering +1210.3759 Fluid Dynamics +1210.3762 Discrete Mathematics +1210.3766 Solar and Stellar Astrophysics +1210.3768 Networking and Internet Architecture +1210.3771 Applications +1210.3772 Differential Geometry +1210.3774 Differential Geometry +1210.3778 Sound +1210.3782 Fluid Dynamics +1210.3790 Group Theory +1210.3798 Geometric Topology +1210.3804 +1210.3805 Combinatorics +1210.3807 Operator Algebras +1210.3812 Systems and Control +1210.3814 Risk Management +1210.3823 Fluid Dynamics +1210.3826 Phenomenology +1210.3829 Number Theory +1210.3833 Data Structures and Algorithms +1210.3834 Accelerator Physics +1210.3835 Information Theory +1210.3836 Fluid Dynamics +1210.3837 Fluid Dynamics +1210.3839 Formal Languages and Automata Theory +1210.3845 Geometric Topology +1210.3847 Rings and Algebras +1210.3853 Information Theory +1210.3855 Commutative Algebra +1210.3857 Analysis of PDEs +1210.3858 Software Engineering +1210.3861 Fluid Dynamics +1210.3862 Number Theory +1210.3863 Number Theory +1210.3867 Fluid Dynamics +1210.3873 Fluid Dynamics +1210.3874 Classical Analysis and ODEs +1210.3875 Classical Analysis and ODEs +1210.3876 Distributed, Parallel, and Cluster Computing +1210.3877 Computational Geometry +1210.3879 +1210.3881 Fluid Dynamics +1210.3883 Astrophysics of Galaxies +1210.3885 Representation Theory +1210.3888 Fluid Dynamics +1210.3892 Fluid Dynamics +1210.3893 Fluid Dynamics +1210.3899 Mesoscale and Nanoscale Physics +1210.3907 Spectral Theory +1210.3914 Disordered Systems and Neural Networks +1210.3917 Probability +1210.3924 Classical Analysis and ODEs +1210.3925 Classical Physics +1210.3930 Combinatorics +1210.3931 Methodology +1210.3933 Quantum Gases +1210.3934 +1210.3937 Programming Languages +1210.3941 History and Philosophy of Physics +1210.3943 Computers and Society +1210.3945 History and Overview +1210.3946 Artificial Intelligence +1210.3950 Group Theory +1210.3951 Classical Analysis and ODEs +1210.3952 Numerical Analysis +1210.3953 Information Theory +1210.3954 Rings and Algebras +1210.3955 Accelerator Physics +1210.3956 Soft Condensed Matter +1210.3957 Differential Geometry +1210.3959 Classical Analysis and ODEs +1210.3962 Optimization and Control +1210.3963 Optics +1210.3970 Populations and Evolution +1210.3971 Algebraic Geometry +1210.3973 Fluid Dynamics +1210.3974 Fluid Dynamics +1210.3978 Cryptography and Security +1210.3979 Combinatorics +1210.3983 Solar and Stellar Astrophysics +1210.3985 Solar and Stellar Astrophysics +1210.3987 Solar and Stellar Astrophysics +1210.3988 Superconductivity +1210.3991 Instrumentation and Methods for Astrophysics +1210.3996 Complex Variables +1210.3997 Number Theory +1210.3999 High Energy Astrophysical Phenomena +1210.4000 Trading and Market Microstructure +1210.4003 Algebraic Geometry +1210.4006 Learning +1210.4008 Social and Information Networks +1210.4015 Solar and Stellar Astrophysics +1210.4016 Fluid Dynamics +1210.4021 Artificial Intelligence +1210.4023 Solar and Stellar Astrophysics +1210.4024 Classical Physics +1210.4025 Classical Analysis and ODEs +1210.4029 Combinatorics +1210.4032 Soft Condensed Matter +1210.4034 Symplectic Geometry +1210.4043 Logic +1210.4046 Complex Variables +1210.4049 Logic +1210.4051 Fluid Dynamics +1210.4052 Methodology +1210.4055 Experiment +1210.4060 Chemical Physics +1210.4070 Analysis of PDEs +1210.4071 Fluid Dynamics +1210.4073 Fluid Dynamics +1210.4076 Numerical Analysis +1210.4078 Fluid Dynamics +1210.4081 Numerical Analysis +1210.4084 Analysis of PDEs +1210.4095 Phenomenology +1210.4097 Geometric Topology +1210.4099 Materials Science +1210.4100 Fluid Dynamics +1210.4101 Number Theory +1210.4102 Differential Geometry +1210.4107 Functional Analysis +1210.4110 Analysis of PDEs +1210.4114 Cosmology and Nongalactic Astrophysics +1210.4122 Combinatorics +1210.4129 General Finance +1210.4130 Logic in Computer Science +1210.4135 +1210.4144 Fluid Dynamics +1210.4145 Neural and Evolutionary Computing +1210.4146 Optics +1210.4147 Mesoscale and Nanoscale Physics +cond-mat/0508145 Mesoscale and Nanoscale Physics +cond-mat/0605574 Mesoscale and Nanoscale Physics +0709.0800 Combinatorics +0805.3385 General Physics +0807.1064 General Physics +0809.1262 Dynamical Systems +0810.5701 Optics +0812.1856 Algebraic Geometry +0812.2579 Metric Geometry +0812.2871 Combinatorics +0901.0120 Number Theory +0902.4670 Number Theory +0903.3796 Applications +0904.2964 Quantum Algebra +0907.3412 Number Theory +0908.2015 Theory +0909.0865 Algebraic Geometry +0909.1314 Quantum Gases +0909.3442 Number Theory +0910.2830 Combinatorics +0910.5251 Algebraic Topology +0912.2574 Combinatorics +0912.4972 Differential Geometry +1001.5332 Functional Analysis +1002.0539 Geometric Topology +1004.1311 Algebraic Geometry +1005.2250 Combinatorics +1005.2744 Differential Geometry +1006.1900 Pattern Formation and Solitons +1006.3128 Information Theory +1007.0034 Pattern Formation and Solitons +1007.3258 +1008.1147 Statistical Mechanics +1009.4726 Operator Algebras +1009.4996 Analysis of PDEs +1010.4694 Pattern Formation and Solitons +1011.3044 Cosmology and Nongalactic Astrophysics +1012.3819 Combinatorics +1101.0134 Phenomenology +1101.0564 Number Theory +1101.4517 +1102.0242 Solar and Stellar Astrophysics +1102.2879 Algebraic Topology +1102.3374 Phenomenology +1103.1167 Neurons and Cognition +1104.1112 Optics +1105.0179 Phenomenology +1105.0722 Optics +1105.1684 Methodology +1105.3329 Exactly Solvable and Integrable Systems +1106.0305 Emerging Technologies +1106.1581 Analysis of PDEs +1106.2438 Solar and Stellar Astrophysics +1106.3470 Strongly Correlated Electrons +1106.3885 Methodology +1106.4025 Strongly Correlated Electrons +1106.5216 Theory +1106.5891 Probability +1106.6241 Phenomenology +1107.0623 Phenomenology +1107.0788 +1107.3261 Solar and Stellar Astrophysics +1107.3909 Combinatorics +1107.4625 Logic +1108.0162 Number Theory +1108.0689 Mesoscale and Nanoscale Physics +1109.0882 Computer Vision and Pattern Recognition +1109.4732 Theory +1109.5127 +1110.0197 General Physics +1111.0357 Number Theory +1111.1388 Classical Analysis and ODEs +1111.1576 Theory +1111.2561 Metric Geometry +1111.2950 Fluid Dynamics +1111.3036 Materials Science +1111.3541 Superconductivity +1111.3582 Data Analysis, Statistics and Probability +1111.3669 Geometric Topology +1111.5909 Materials Science +1111.7127 +1111.7312 Probability +1112.0788 History and Philosophy of Physics +1112.1060 Theory +1112.1380 Mesoscale and Nanoscale Physics +1112.2988 Computer Vision and Pattern Recognition +1112.3472 Chaotic Dynamics +1112.3804 Materials Science +1112.4308 Strongly Correlated Electrons +1112.5222 +1112.5467 Mesoscale and Nanoscale Physics +1112.5941 Instrumentation and Detectors +1112.5954 Phenomenology +1112.5980 Neural and Evolutionary Computing +1201.0422 Phenomenology +1201.0698 Statistical Mechanics +1201.0745 Physics and Society +1201.1268 Phenomenology +1201.1631 Fluid Dynamics +1201.1756 +1201.2897 Algebraic Geometry +1201.2962 +1201.3648 Mesoscale and Nanoscale Physics +1201.3957 Representation Theory +1201.4132 Number Theory +1201.4251 +1201.4691 Computational Physics +1201.5126 Phenomenology +1201.5835 Logic +1201.6039 +1202.0345 +1202.0899 Atomic Physics +1202.1201 Physics and Society +1202.2776 +1202.2916 Mesoscale and Nanoscale Physics +1202.3144 Phenomenology +1202.4772 Superconductivity +1202.5521 +1202.5563 Superconductivity +1202.6240 Strongly Correlated Electrons +1202.6282 Analysis of PDEs +1202.6525 Classical Analysis and ODEs +1203.0074 Solar and Stellar Astrophysics +1203.1124 Strongly Correlated Electrons +1203.1246 Quantum Gases +1203.1788 Quantum Gases +1203.2261 Complex Variables +1203.2349 Theory +1203.2420 +1203.2604 Optics +1203.3615 +1203.4977 +1203.5497 Functional Analysis +1203.6517 Mesoscale and Nanoscale Physics +1203.6573 Theory +1204.0152 Mesoscale and Nanoscale Physics +1204.0954 +1204.1542 Materials Science +1204.2322 Theory +1204.4395 Materials Science +1204.4522 Quantum Gases +1204.4675 Lattice +1204.5282 Quantum Gases +1204.5951 Differential Geometry +1204.6546 +1205.0169 Analysis of PDEs +1205.1132 Differential Geometry +1205.1276 Statistical Mechanics +1205.1709 Phenomenology +1205.1728 Materials Science +1205.3730 Superconductivity +1205.4524 Quantum Gases +1205.5139 Cosmology and Nongalactic Astrophysics +1205.6031 Machine Learning +1205.6395 Combinatorics +1206.0201 Phenomenology +1206.1088 Machine Learning +1206.1219 Probability +1206.1515 Computer Vision and Pattern Recognition +1206.1518 Computer Vision and Pattern Recognition +1206.2048 Logic +1206.3038 Information Theory +1206.3492 Theory +1206.3807 +1206.4740 Commutative Algebra +1206.4767 Information Theory +1206.4911 Classical Analysis and ODEs +1206.4926 Group Theory +1206.5112 Programming Languages +1206.5163 Solar and Stellar Astrophysics +1206.5210 Networking and Internet Architecture +1206.5239 Computation +1206.5240 Learning +1206.5241 Learning +1206.5242 Artificial Intelligence +1206.5243 Learning +1206.5244 Artificial Intelligence +1206.5245 Artificial Intelligence +1206.5246 Methodology +1206.5247 Learning +1206.5248 Learning +1206.5249 Artificial Intelligence +1206.5250 Artificial Intelligence +1206.5251 Artificial Intelligence +1206.5253 Data Structures and Algorithms +1206.5254 Methodology +1206.5255 Artificial Intelligence +1206.5256 Computational Engineering, Finance, and Science +1206.5257 Artificial Intelligence +1206.5258 Artificial Intelligence +1206.5259 Social and Information Networks +1206.5260 Artificial Intelligence +1206.5261 Learning +1206.5262 Methodology +1206.5263 Artificial Intelligence +1206.5264 Learning +1206.5265 Learning +1206.5266 Artificial Intelligence +1206.5267 Learning +1206.5268 Artificial Intelligence +1206.5269 Applications +1206.5270 Information Retrieval +1206.5271 Artificial Intelligence +1206.5272 Methodology +1206.5273 Artificial Intelligence +1206.5274 Learning +1206.5275 Artificial Intelligence +1206.5276 Artificial Intelligence +1206.5277 Artificial Intelligence +1206.5278 Methodology +1206.5279 Software Engineering +1206.5280 Artificial Intelligence +1206.5281 Learning +1206.5282 Methodology +1206.5283 Learning +1206.5284 Artificial Intelligence +1206.5285 Computation +1206.5286 Artificial Intelligence +1206.5287 Artificial Intelligence +1206.5288 Computer Science and Game Theory +1206.5289 Methodology +1206.5290 Learning +1206.5291 Learning +1206.5292 Artificial Intelligence +1206.5293 Learning +1206.5294 Artificial Intelligence +1206.5295 Artificial Intelligence +1206.5310 Phenomenology +1206.5312 +1206.5313 Networking and Internet Architecture +1206.5314 Mesoscale and Nanoscale Physics +1206.5316 Algebraic Geometry +1206.5323 +1206.5324 Trading and Market Microstructure +1206.5325 Geometric Topology +1206.5332 Analysis of PDEs +1206.5337 Optics +1206.5342 Solar and Stellar Astrophysics +1206.5343 Data Structures and Algorithms +1206.5344 Optimization and Control +1206.5355 Materials Science +1206.5356 Group Theory +1206.5357 Materials Science +1206.5360 Artificial Intelligence +1206.5361 Systems and Control +1206.5362 +1206.5364 Quantum Algebra +1206.5372 Strongly Correlated Electrons +1206.5373 Logic +1206.5374 Strongly Correlated Electrons +1206.5376 Probability +1206.5379 Materials Science +1206.5383 Combinatorics +1206.5384 Computation and Language +1206.5387 Computation +1206.5390 Algebraic Geometry +1206.5391 Phenomenology +1206.5394 Astrophysics of Galaxies +1206.5406 Numerical Analysis +1206.5409 +1206.5411 Algebraic Geometry +1206.5420 Combinatorics +1206.5423 Chaotic Dynamics +1206.5426 Information Theory +1206.5430 Software Engineering +1206.5433 Number Theory +1206.5434 Quantum Algebra +1206.5436 Rings and Algebras +1206.5437 Geometric Topology +1206.5445 Materials Science +1206.5446 Analysis of PDEs +1206.5450 Materials Science +1206.5451 Computers and Society +1206.5452 Functional Analysis +1206.5454 Analysis of PDEs +1206.5455 Classical Physics +1206.5458 Dynamical Systems +1206.5459 Networking and Internet Architecture +1206.5461 Number Theory +1206.5466 Differential Geometry +1206.5467 Combinatorics +1206.5468 Networking and Internet Architecture +1206.5469 Networking and Internet Architecture +1206.5475 Chaotic Dynamics +1206.5479 Numerical Analysis +1206.5480 Analysis of PDEs +1206.5483 Other Computer Science +1206.5484 +1206.5494 Classical Analysis and ODEs +1206.5496 Functional Analysis +1206.5499 +1206.5502 Classical Analysis and ODEs +1206.5504 +1206.5505 Networking and Internet Architecture +1206.5509 +1206.5510 Functional Analysis +1206.5511 Differential Geometry +1206.5512 Numerical Analysis +1206.5515 Analysis of PDEs +1206.5516 Algebraic Geometry +1206.5518 +1206.5520 Social and Information Networks +1206.5521 Solar and Stellar Astrophysics +1206.5524 Numerical Analysis +1206.5525 Information Theory +1206.5526 Soft Condensed Matter +1206.5535 Solar and Stellar Astrophysics +1206.5536 Solar and Stellar Astrophysics +1206.5542 High Energy Astrophysical Phenomena +1206.5543 Optimization and Control +1206.5547 Representation Theory +1206.5555 Mesoscale and Nanoscale Physics +1206.5557 Subcellular Processes +1206.5558 Cosmology and Nongalactic Astrophysics +1206.5559 Neural and Evolutionary Computing +1206.5565 Space Physics +1206.5567 Space Physics +1206.5569 Combinatorics +1206.5571 Instrumentation and Detectors +1206.5576 Dynamical Systems +1206.5582 Information Retrieval +1206.5583 Differential Geometry +1206.5584 Information Retrieval +1206.5589 Computational Physics +1206.5590 Rings and Algebras +1206.5594 Phenomenology +1206.5600 Analysis of PDEs +1206.5604 Analysis of PDEs +1206.5606 Materials Science +1206.5608 Theory +1206.5609 Phenomenology +1206.5611 Statistical Mechanics +1206.5612 Phenomenology +1206.5613 Fluid Dynamics +1206.5617 Information Theory +1206.5619 Materials Science +1206.5623 Dynamical Systems +1206.5624 Theory +1206.5625 Statistical Mechanics +1206.5630 +1206.5631 Theory +1206.5635 Superconductivity +1206.5636 High Energy Astrophysical Phenomena +1206.5638 Soft Condensed Matter +1206.5644 Theory +1206.5645 Classical Analysis and ODEs +1206.5658 +1206.5668 Materials Science +1206.5669 Combinatorics +1206.5671 Solar and Stellar Astrophysics +1206.5672 Superconductivity +1206.5673 Discrete Mathematics +1206.5674 Probability +1206.5675 Number Theory +1206.5681 Applications +1206.5684 +1206.5689 Computational Geometry +1206.5690 Dynamical Systems +1206.5691 +1206.5696 Experiment +1206.5700 High Energy Astrophysical Phenomena +1206.5709 +1206.5720 Phenomenology +1206.5722 Analysis of PDEs +1206.5736 Theory +1206.5745 Phenomenology +1206.5758 Instrumentation and Methods for Astrophysics +1206.5762 Information Theory +1206.5769 Astrophysics of Galaxies +1206.5774 Strongly Correlated Electrons +1206.5780 Neural and Evolutionary Computing +1206.5781 Theory +cs/0507008 Computational Complexity +cs/0511055 Logic in Computer Science +hep-ph/0405087 Phenomenology +math/0210469 Probability +math/0302271 Probability +math/0310271 Analysis of PDEs +math/0612205 Probability +math/0703826 Classical Analysis and ODEs +nucl-th/9301001 +nucl-th/9308006 +physics/0603226 General Physics +physics/0611043 General Physics +0805.1715 Information Theory +0806.0401 Plasma Physics +0905.0739 Dynamical Systems +0906.1941 Classical Analysis and ODEs +0909.5158 Classical Analysis and ODEs +0910.3981 Optics +0911.2728 General Physics +1003.0702 Mesoscale and Nanoscale Physics +1003.1287 Number Theory +1005.2362 Geophysics +1006.2610 Number Theory +1006.5518 Dynamical Systems +1007.4329 Category Theory +1009.3819 Hardware Architecture +1010.3958 Probability +1010.4200 High Energy Astrophysical Phenomena +1011.2723 Differential Geometry +1011.2728 Differential Geometry +1011.4200 Dynamical Systems +1011.4341 Group Theory +1101.0031 Methodology +1101.0983 Number Theory +1101.2744 +1102.4316 Astrophysics of Galaxies +1102.4415 +1102.5541 Methodology +1104.0093 +1104.2377 Statistical Mechanics +1104.4953 Probability +1105.2784 Algebraic Geometry +1105.5545 Physics and Society +1106.1333 Quantum Gases +1106.4103 Mesoscale and Nanoscale Physics +1106.4532 Number Theory +1106.5247 Number Theory +1107.3789 Group Theory +1107.5651 Combinatorics +1108.2298 Mesoscale and Nanoscale Physics +1108.2769 Combinatorics +1108.3308 +1108.4264 Algebraic Geometry +1108.5994 Fluid Dynamics +1108.6058 Cosmology and Nongalactic Astrophysics +1109.4061 Strongly Correlated Electrons +1109.4588 Earth and Planetary Astrophysics +1109.5644 Earth and Planetary Astrophysics +1109.6048 Group Theory +1109.6140 +1110.2531 Instrumentation and Detectors +1110.3010 Differential Geometry +1110.5477 Optimization and Control +1110.5553 Optimization and Control +1110.6218 Materials Science +1111.0798 Quantum Gases +1111.1138 High Energy Astrophysical Phenomena +1111.4212 Cosmology and Nongalactic Astrophysics +1112.0100 Optimization and Control +1112.0727 Hardware Architecture +1112.0978 Strongly Correlated Electrons +1112.2999 Phenomenology +1112.4905 Materials Science +1201.0421 Soft Condensed Matter +1201.1501 Phenomenology +1201.3265 Soft Condensed Matter +1201.3357 Mesoscale and Nanoscale Physics +1201.3995 Populations and Evolution +1201.4169 +1201.4360 General Physics +1201.4967 Algebraic Geometry +1201.5460 Mesoscale and Nanoscale Physics +1201.6060 Quantum Gases +1201.6136 Disordered Systems and Neural Networks +1201.6409 Statistical Mechanics +1201.6600 Solar and Stellar Astrophysics +1202.0255 Logic +1202.1575 Strongly Correlated Electrons +1202.3217 Computational Finance +1202.5035 Cosmology and Nongalactic Astrophysics +1202.5587 +1202.6143 Functional Analysis +1203.1080 Computational Complexity +1203.1363 +1203.1710 Materials Science +1203.2308 Chemical Physics +1203.3969 Number Theory +1204.0909 Cosmology and Nongalactic Astrophysics +1204.3068 Mesoscale and Nanoscale Physics +1204.3847 Spectral Theory +1204.3851 Phenomenology +1204.4535 Cryptography and Security +1204.5788 Logic +1204.6462 Optics +1204.6566 Group Theory +1204.6626 Theory +1205.0071 Differential Geometry +1205.0345 Information Theory +1205.0429 Plasma Physics +1205.0505 Statistical Finance +1205.0528 Neurons and Cognition +1205.0543 Numerical Analysis +1205.0548 Cosmology and Nongalactic Astrophysics +1205.0558 Theory +1205.0560 High Energy Astrophysical Phenomena +1205.0562 Differential Geometry +1205.0567 Optimization and Control +1205.0570 Combinatorics +1205.0573 Group Theory +1205.0577 +1205.0581 Data Structures and Algorithms +1205.0586 Information Theory +1205.0587 Algebraic Geometry +1205.0589 Theory +1205.0591 Information Retrieval +1205.0601 Numerical Analysis +1205.0610 Learning +1205.0614 Solar and Stellar Astrophysics +1205.0622 Computer Science and Game Theory +1205.0625 Materials Science +1205.0627 Computation and Language +1205.0629 Algebraic Geometry +1205.0630 Optics +1205.0635 Trading and Market Microstructure +1205.0638 Statistics Theory +1205.0643 Group Theory +1205.0647 High Energy Astrophysical Phenomena +1205.0650 Classical Analysis and ODEs +1205.0659 High Energy Astrophysical Phenomena +1205.0663 Metric Geometry +1205.0669 Rings and Algebras +1205.0672 Probability +1205.0678 Mesoscale and Nanoscale Physics +1205.0680 Digital Libraries +1205.0682 Group Theory +1205.0683 Rings and Algebras +1205.0686 Applications +1205.0687 Superconductivity +1205.0691 General Physics +1205.0693 +1205.0694 Theory +1205.0695 Soft Condensed Matter +1205.0696 Mesoscale and Nanoscale Physics +1205.0700 High Energy Astrophysical Phenomena +1205.0703 Information Theory +1205.0705 Algebraic Topology +1205.0706 History and Overview +1205.0707 Number Theory +1205.0718 Differential Geometry +1205.0719 High Energy Astrophysical Phenomena +1205.0721 Optimization and Control +1205.0722 Logic in Computer Science +1205.0723 Superconductivity +1205.0724 Databases +1205.0726 Mesoscale and Nanoscale Physics +1205.0728 Mesoscale and Nanoscale Physics +1205.0732 Neural and Evolutionary Computing +1205.0737 Probability +1205.0738 Quantum Algebra +1205.0739 Methodology +1205.0742 General Physics +1205.0743 Quantum Algebra +1205.0744 Solar and Stellar Astrophysics +1205.0750 Software Engineering +1205.0751 Human-Computer Interaction +1205.0755 Analysis of PDEs +1205.0756 Probability +1205.0761 Phenomenology +1205.0765 Superconductivity +1205.0767 Optics +1205.0769 +1205.0771 +1205.0774 History and Overview +1205.0781 Lattice +1205.0782 Phenomenology +1205.0789 General Mathematics +1205.0791 Instrumentation and Methods for Astrophysics +1205.0794 High Energy Astrophysical Phenomena +1205.0797 Algebraic Geometry +1205.0799 Representation Theory +1205.0800 Accelerator Physics +1205.0802 Populations and Evolution +cond-mat/0206425 Materials Science +hep-th/0612018 Theory +math/0408382 Algebraic Geometry +math/0606764 Group Theory +physics/0701248 Plasma Physics +0708.1918 +0712.0007 Phenomenology +0801.3153 Algebraic Geometry +0903.3743 Category Theory +0904.1397 Dynamical Systems +0905.2523 Instrumentation and Detectors +0906.4521 Logic +0908.1791 High Energy Astrophysical Phenomena +0911.1601 Probability +1006.3869 Combinatorics +1006.3920 +1006.4400 Probability +1007.5401 High Energy Astrophysical Phenomena +1009.1678 Category Theory +1009.3384 Category Theory +1011.3575 Solar and Stellar Astrophysics +1012.4015 Plasma Physics +1012.4335 Quantum Algebra +1104.1296 +1105.0904 Strongly Correlated Electrons +1105.1258 Chemical Physics +1106.1358 +1106.3317 +1106.4167 Phenomenology +1107.4719 Superconductivity +1108.1035 Portfolio Management +1108.3300 Lattice +1108.5188 Fluid Dynamics +1109.0988 Mesoscale and Nanoscale Physics +1109.3181 Metric Geometry +1109.6753 Mesoscale and Nanoscale Physics +1110.3014 Discrete Mathematics +1111.0009 Cosmology and Nongalactic Astrophysics +1111.0194 Optimization and Control +1111.1920 Algebraic Geometry +1111.3619 Disordered Systems and Neural Networks +1111.3870 Quantum Gases +1111.4219 High Energy Astrophysical Phenomena +1112.1429 Algebraic Geometry +1112.1779 Phenomenology +1112.5589 Classical Analysis and ODEs +1201.1535 Statistical Finance +1201.1565 Statistical Mechanics +1201.3442 Materials Science +1201.3764 Phenomenology +1201.4062 Classical Analysis and ODEs +1201.4584 Symplectic Geometry +1202.0361 Mesoscale and Nanoscale Physics +1202.0676 +1202.5507 Superconductivity +1202.5636 Materials Science +1202.5936 +1202.6221 Learning +1203.2491 Mesoscale and Nanoscale Physics +1203.5030 +1203.5103 +1203.5654 Instrumentation and Methods for Astrophysics +1203.5711 Strongly Correlated Electrons +1203.5998 Phenomenology +1203.6524 Soft Condensed Matter +1204.1619 Differential Geometry +1204.2676 Networking and Internet Architecture +1204.2795 Phenomenology +1204.3533 Number Theory +1204.4266 Strongly Correlated Electrons +1205.0139 Logic in Computer Science +1205.0597 +1205.1635 Analysis of PDEs +1205.3297 Rings and Algebras +1205.3628 Geophysics +1205.4320 Analysis of PDEs +1205.4326 Phenomenology +1205.4336 Computer Vision and Pattern Recognition +1205.5265 +1205.5277 Strongly Correlated Electrons +1205.5282 Computational Complexity +1205.5288 Theory +1205.5290 Number Theory +1205.5300 Numerical Analysis +1205.5302 Classical Analysis and ODEs +1205.5318 Strongly Correlated Electrons +1205.5321 +1205.5325 +1205.5326 Phenomenology +1205.5329 Differential Geometry +1205.5332 Category Theory +1205.5335 Materials Science +1205.5339 History and Overview +1205.5341 Information Theory +1205.5345 Analysis of PDEs +1205.5346 Classical Physics +1205.5347 Lattice +1205.5350 Differential Geometry +1205.5352 Complex Variables +1205.5353 Databases +1205.5357 Commutative Algebra +1205.5367 Artificial Intelligence +1205.5374 Materials Science +1205.5376 Algebraic Topology +1205.5378 +1205.5382 Mesoscale and Nanoscale Physics +1205.5392 Statistical Mechanics +1205.5395 Computational Complexity +1205.5404 Mesoscale and Nanoscale Physics +1205.5411 Phenomenology +1205.5412 Operator Algebras +1205.5415 Superconductivity +1205.5416 Group Theory +1205.5424 Combinatorics +1205.5439 Geometric Topology +1205.5448 Classical Physics +1205.5453 Classical Analysis and ODEs +1205.5454 General Mathematics +1205.5462 +1205.5470 Algebraic Geometry +1205.5471 Chemical Physics +1205.5476 Atomic Physics +1205.5481 Atomic Physics +1205.5482 +1205.5489 Representation Theory +1205.5492 Combinatorics +1205.5495 Atomic Physics +1205.5501 +1205.5509 Social and Information Networks +1205.5515 Phenomenology +1205.5518 Superconductivity +1205.5519 Biological Physics +1205.5525 Distributed, Parallel, and Cluster Computing +1205.5527 Logic +1205.5529 +1205.5536 Phenomenology +1205.5537 Combinatorics +1205.5538 Biological Physics +1205.5539 History and Philosophy of Physics +1205.5540 Superconductivity +1205.5542 Complex Variables +1205.5548 Quantum Gases +quant-ph/0209038 +0710.1341 Statistical Mechanics +0803.3655 K-Theory and Homology +0805.0535 Phenomenology +0901.2528 +0902.4852 Complex Variables +0906.2945 Earth and Planetary Astrophysics +0906.3567 Dynamical Systems +0908.2849 High Energy Astrophysical Phenomena +0908.3174 Combinatorics +0908.4566 Complex Variables +0912.4983 Representation Theory +1005.2066 Group Theory +1006.4791 Operator Algebras +1007.1126 Phenomenology +1008.0551 Quantum Gases +1008.5213 Representation Theory +1010.5017 Statistical Mechanics +1010.5708 Materials Science +1011.4301 Quantum Gases +1011.6114 Strongly Correlated Electrons +1011.6138 +1101.1371 Differential Geometry +1102.4875 Operator Algebras +1103.1087 +1103.4920 Strongly Correlated Electrons +1104.3079 +1107.1837 Computer Vision and Pattern Recognition +1109.2610 +1109.4710 Group Theory +1110.5684 Combinatorics +1110.6113 Statistical Mechanics +1111.0057 Numerical Analysis +1112.2057 +1112.4133 Learning +1112.4134 Social and Information Networks +1201.3947 Functional Analysis +1201.5925 Rings and Algebras +1202.0305 Information Theory +1202.1347 Numerical Analysis +1202.1818 +1203.1824 Quantum Gases +1203.5954 Instrumentation and Detectors +1203.6437 Experiment +1203.6650 Phenomenology +1204.0018 Quantum Gases +1204.2550 Theory +1204.3143 +1204.3669 Cosmology and Nongalactic Astrophysics +1204.4093 Databases +1204.5186 Phenomenology +1204.5781 +1204.6209 Mesoscale and Nanoscale Physics +1205.0220 Superconductivity +1205.1246 Experiment +1205.3390 Phenomenology +1205.4268 Biological Physics +1205.6022 Disordered Systems and Neural Networks +1205.6092 Materials Science +1205.6734 Statistical Mechanics +1206.0446 +1206.2241 High Energy Astrophysical Phenomena +1206.2438 +1206.4297 Mesoscale and Nanoscale Physics +1206.4987 Social and Information Networks +1207.1021 Atomic Physics +1207.1757 Solar and Stellar Astrophysics +1207.2299 Atomic Physics +1207.3131 Popular Physics +1207.3234 Social and Information Networks +1207.3592 Cosmology and Nongalactic Astrophysics +1207.3603 Social and Information Networks +1207.3773 Superconductivity +1208.0861 Logic +1208.0912 Astrophysics of Galaxies +1208.0921 Applications +1208.0950 Cryptography and Security +1208.0961 Phenomenology +1208.0970 +1208.1039 Phenomenology +1208.1071 +1208.1142 +1208.1163 Phenomenology +1208.1171 Earth and Planetary Astrophysics +1208.1175 Strongly Correlated Electrons +1208.1180 Systems and Control +1208.1356 Experiment +1208.1402 Accelerator Physics +1208.1406 High Energy Astrophysical Phenomena +1208.1482 Mesoscale and Nanoscale Physics +1208.1514 +1208.1532 Combinatorics +1208.1643 Phenomenology +1208.1649 Combinatorics +1208.1679 Human-Computer Interaction +1208.1692 Data Structures and Algorithms +1208.1707 Dynamical Systems +1208.1740 Systems and Control +1208.1929 Soft Condensed Matter +1208.1941 Cosmology and Nongalactic Astrophysics +1208.1950 Instrumentation and Methods for Astrophysics +1208.2017 Chaotic Dynamics +1208.2712 Networking and Internet Architecture +1208.2713 +1208.2731 Complex Variables +1208.2846 Data Structures and Algorithms +1208.2971 Logic +1208.2976 Methodology +1208.2977 Applications +1208.2981 Populations and Evolution +1208.2982 Geophysics +1208.2996 +1208.2997 Cosmology and Nongalactic Astrophysics +1208.3001 Computation and Language +1208.3008 Statistical Mechanics +1208.3012 Statistical Mechanics +1208.3014 Machine Learning +1208.3018 Cell Behavior +1208.3022 Networking and Internet Architecture +1208.3029 Information Theory +1208.3047 Distributed, Parallel, and Cluster Computing +1208.3048 Solar and Stellar Astrophysics +1208.3050 Materials Science +1208.3053 +1208.3054 Data Structures and Algorithms +1208.3055 Space Physics +1208.3056 Information Theory +1208.3057 Phenomenology +1208.3060 Theory +1208.3063 Combinatorics +1208.3066 Probability +1208.3068 Probability +1208.3075 Group Theory +1208.3078 Probability +1208.3081 Experiment +1208.3084 Functional Analysis +1208.3085 Networking and Internet Architecture +1208.3090 Analysis of PDEs +1208.3091 Information Theory +1208.3092 Solar and Stellar Astrophysics +1208.3094 Functional Analysis +1208.3098 Materials Science +1208.3102 K-Theory and Homology +1208.3106 Mesoscale and Nanoscale Physics +1208.3114 History and Philosophy of Physics +1208.3116 Solar and Stellar Astrophysics +1208.3122 Computational Engineering, Finance, and Science +1208.3125 History and Overview +1208.3133 Computer Vision and Pattern Recognition +1208.3135 Mesoscale and Nanoscale Physics +1208.3137 Plasma Physics +1208.3138 Other Computer Science +1208.3139 Algebraic Geometry +1208.3145 Methodology +1208.3148 Artificial Intelligence +1208.3150 Information Theory +1208.3151 Computational Engineering, Finance, and Science +1208.3152 Strongly Correlated Electrons +1208.3160 Computer Science and Game Theory +1208.3164 Probability +1208.3173 Algebraic Geometry +1208.3180 Dynamical Systems +1208.3186 +astro-ph/0405386 +cond-mat/0007195 Superconductivity +cond-mat/0211573 +cond-mat/0405110 Materials Science +cond-mat/9604186 +0704.1314 Fluid Dynamics +0705.0893 Soft Condensed Matter +0705.1269 Soft Condensed Matter +0706.0969 Combinatorics +0707.0818 Probability +0709.1890 Commutative Algebra +0709.2926 Probability +0709.2956 Soft Condensed Matter +0712.3599 Differential Geometry +0801.3318 Soft Condensed Matter +0802.3747 Geometric Topology +0806.0790 Probability +0806.1030 Probability +0806.2155 Mesoscale and Nanoscale Physics +0807.1546 Dynamical Systems +0808.2027 Combinatorics +0808.2634 Probability +0809.2374 Algebraic Geometry +0810.3979 Analysis of PDEs +0811.1748 Probability +0901.0242 Combinatorics +0901.0256 Algebraic Topology +0901.2951 Statistics Theory +0902.1393 General Physics +0902.2059 +0903.0853 Quantum Algebra +0903.3025 High Energy Astrophysical Phenomena +0904.2596 Statistical Mechanics +0904.3677 Other Computer Science +0905.0165 +0905.3541 Optics +0906.2547 +0906.4142 Combinatorics +0909.2833 Differential Geometry +0909.3884 Statistical Mechanics +0910.1554 Phenomenology +0911.0876 Commutative Algebra +0911.2495 +0912.1118 Strongly Correlated Electrons +1002.2931 +1002.4136 Algebraic Geometry +1002.4954 +1003.0275 Methodology +1003.0460 Computational Geometry +1003.1104 Classical Analysis and ODEs +1003.2589 Quantum Algebra +1004.1206 Probability +1004.3328 +1004.4822 Pricing of Securities +1005.0808 Combinatorics +1006.1188 Mesoscale and Nanoscale Physics +1006.1631 Theory +1006.2021 Rings and Algebras +1006.2117 Optimization and Control +1006.2172 Analysis of PDEs +1006.2909 Pricing of Securities +1008.0669 Chaotic Dynamics +1008.1301 Functional Analysis +1008.2324 Quantum Gases +1008.4422 +1009.0009 Superconductivity +1010.1056 Classical Physics +1010.3215 Complex Variables +1010.4034 Algebraic Geometry +1010.4086 Materials Science +1010.4245 Representation Theory +1010.4745 +1010.5689 Analysis of PDEs +1011.1657 Theory +1011.6112 Geometric Topology +1012.3818 Algebraic Geometry +1012.4144 +1012.5550 Probability +1101.2435 Physics and Society +1102.0856 Geometric Topology +1102.2578 Combinatorics +1102.4907 Superconductivity +1103.1630 Strongly Correlated Electrons +1103.2112 Atomic Physics +1103.3124 +1103.3398 Number Theory +1103.3431 Statistical Mechanics +1103.4622 Probability +1103.4864 High Energy Astrophysical Phenomena +1103.4983 Populations and Evolution +1104.0186 Physics and Society +1104.0903 +1104.1080 Data Structures and Algorithms +1104.1258 Materials Science +1104.1517 Materials Science +1104.2658 Materials Science +1104.3046 Combinatorics +1104.3179 Information Retrieval +1104.4109 Soft Condensed Matter +1104.4457 Probability +1104.4705 Group Theory +1105.0658 Superconductivity +1105.0839 Probability +1105.1588 Phenomenology +1105.2952 Machine Learning +1105.3057 Soft Condensed Matter +1105.4821 +1105.5225 Combinatorics +1106.0434 Materials Science +1106.4986 Probability +1107.0110 +1107.1704 Strongly Correlated Electrons +1107.1727 Analysis of PDEs +1107.2324 Theory +1107.4971 +1108.0277 Combinatorics +1108.2398 Group Theory +1108.2820 Learning +1108.2987 +1108.3669 Mesoscale and Nanoscale Physics +1108.3679 +1108.4418 Strongly Correlated Electrons +1108.4898 Mesoscale and Nanoscale Physics +1108.5161 +1108.5918 +1109.0436 Genomics +1109.0458 Instrumentation and Detectors +1109.1182 +1109.2358 +1109.2901 Phenomenology +1109.3340 Solar and Stellar Astrophysics +1109.3382 Phenomenology +1109.4739 +1109.5092 Superconductivity +1109.6507 Superconductivity +1110.0007 Theory +1110.0364 Solar and Stellar Astrophysics +1110.0527 Soft Condensed Matter +1110.1122 Materials Science +1110.1160 Strongly Correlated Electrons +1110.1772 +1110.2398 Plasma Physics +1110.2588 Phenomenology +1110.3610 +1110.4229 Superconductivity +1110.4575 Superconductivity +1110.5240 Strongly Correlated Electrons +1110.5851 Algebraic Topology +1110.6755 Learning +1111.0258 Analysis of PDEs +1111.0366 Superconductivity +1111.0946 Cosmology and Nongalactic Astrophysics +1111.1402 Dynamical Systems +1111.1730 Phenomenology +1111.2243 Soft Condensed Matter +1111.2684 Theory +1111.2717 +1111.3027 Phenomenology +1111.3803 Quantum Gases +1111.4594 Phenomenology +1111.5494 +1111.5892 Neural and Evolutionary Computing +1112.0178 Materials Science +1112.0587 Quantum Gases +1112.0930 Group Theory +1112.2593 Data Analysis, Statistics and Probability +1112.2640 Artificial Intelligence +1112.3448 High Energy Astrophysical Phenomena +1112.4521 Number Theory +1112.4693 +1112.5316 Plasma Physics +1112.5564 +1112.5639 +1201.0009 High Energy Astrophysical Phenomena +1201.0200 +1201.0243 +1201.0495 Representation Theory +1201.0537 Phenomenology +1201.0559 Probability +1201.1654 Analysis of PDEs +1201.1689 Strongly Correlated Electrons +1201.2370 +1201.3737 Mesoscale and Nanoscale Physics +1201.3780 +1201.4567 Logic in Computer Science +1201.4703 Combinatorics +1201.4712 +1201.5091 +1201.5191 Mesoscale and Nanoscale Physics +1201.5328 Optimization and Control +1201.5541 Analysis of PDEs +1201.5719 Logic in Computer Science +1201.5844 Experiment +1201.5893 Populations and Evolution +1201.5896 Phenomenology +1201.5900 +1201.5901 Dynamical Systems +1201.5905 Accelerator Physics +1201.5906 Phenomenology +1201.5907 Computation +1201.5912 Computation +1201.5913 Computation +1201.5914 Symplectic Geometry +1201.5915 Materials Science +1201.5916 Atmospheric and Oceanic Physics +1201.5918 Astrophysics of Galaxies +1201.5930 Optics +1201.5932 High Energy Astrophysical Phenomena +1201.5938 Computer Vision and Pattern Recognition +1201.5943 Artificial Intelligence +1201.5944 Emerging Technologies +1201.5946 Computer Vision and Pattern Recognition +1201.5947 Computer Vision and Pattern Recognition +1201.5950 Mesoscale and Nanoscale Physics +1201.5959 Artificial Intelligence +1201.5962 Methodology +1201.5968 Applications +1201.5970 Chemical Physics +1201.5971 Materials Science +1201.5973 Algebraic Geometry +1201.5975 Numerical Analysis +1201.5978 Rings and Algebras +1201.5979 Spectral Theory +1201.5985 Data Structures and Algorithms +1201.5986 Representation Theory +1201.5988 Discrete Mathematics +1201.5989 Combinatorics +1201.5990 Statistics Theory +1201.5993 Functional Analysis +1201.5994 Combinatorics +1201.5996 Functional Analysis +1201.6000 Geometric Topology +1201.6007 Number Theory +1201.6012 Information Theory +1201.6015 Numerical Analysis +1201.6017 Dynamical Systems +1201.6023 Theory +1201.6026 Experiment +1201.6028 Logic in Computer Science +1201.6029 Phenomenology +1201.6030 Geometric Topology +1201.6032 Materials Science +1201.6033 Software Engineering +1201.6034 Information Theory +1201.6035 Numerical Analysis +1201.6036 Probability +1201.6038 Chemical Physics +1201.6040 Theory +1201.6041 Experiment +1201.6044 Tissues and Organs +1201.6045 Phenomenology +1201.6047 +1201.6048 Analysis of PDEs +1201.6049 Differential Geometry +1201.6053 Learning +1201.6055 +1201.6057 Programming Languages +1201.6058 Numerical Analysis +1201.6061 Numerical Analysis +1201.6063 Atomic Physics +1201.6066 Classical Physics +1201.6072 Analysis of PDEs +1201.6082 Machine Learning +1201.6086 Lattice +1201.6087 +1201.6090 Data Structures and Algorithms +1201.6097 Analysis of PDEs +1201.6099 Statistical Mechanics +1201.6103 Differential Geometry +1201.6111 +1201.6112 Databases +1201.6113 +1201.6122 Differential Geometry +1201.6123 Materials Science +1201.6125 Number Theory +1201.6127 Phenomenology +1201.6132 Analysis of PDEs +1201.6140 Computation +1201.6147 Experiment +1201.6152 Number Theory +1201.6156 Optics +1201.6157 Phenomenology +1201.6158 Phenomenology +1201.6159 Cellular Automata and Lattice Gases +1201.6161 Statistics Theory +1201.6162 Combinatorics +1201.6164 +1201.6166 Discrete Mathematics +1201.6167 Quantum Gases +1201.6173 Accelerator Physics +1201.6175 Phenomenology +1201.6188 Programming Languages +1201.6190 Networking and Internet Architecture +1201.6191 Mesoscale and Nanoscale Physics +1201.6193 Soft Condensed Matter +1201.6197 Mesoscale and Nanoscale Physics +1201.6201 Group Theory +1201.6202 Analysis of PDEs +1201.6205 Combinatorics +1201.6206 +1201.6209 Instrumentation and Detectors +1201.6210 Atomic Physics +1201.6211 Statistics Theory +1201.6215 Probability +1201.6216 Statistics Theory +1201.6218 Cryptography and Security +1201.6220 Phenomenology +1201.6221 +1201.6225 Phenomenology +1201.6226 Functional Analysis +1201.6229 Phenomenology +1201.6232 +1201.6240 Astrophysics of Galaxies +1201.6241 General Physics +1201.6242 Accelerator Physics +1201.6245 Solar and Stellar Astrophysics +1201.6257 Physics and Society +1201.6260 Instrumentation and Detectors +1201.6270 Biological Physics +1201.6272 Logic +1201.6273 Theory +1201.6277 Algebraic Topology +1201.6278 Data Analysis, Statistics and Probability +1201.6280 Mesoscale and Nanoscale Physics +1201.6284 Materials Science +1201.6292 +1201.6293 Mesoscale and Nanoscale Physics +1201.6303 Analysis of PDEs +1201.6311 Solar and Stellar Astrophysics +1201.6317 Group Theory +1201.6318 +1201.6322 Multiagent Systems +1201.6327 Algebraic Geometry +1201.6331 Materials Science +1201.6334 Fluid Dynamics +1201.6338 Experiment +1201.6340 General Finance +1201.6345 Phenomenology +1201.6352 Dynamical Systems +cond-mat/0001164 Soft Condensed Matter +cond-mat/0009224 Soft Condensed Matter +cond-mat/0011072 Soft Condensed Matter +cond-mat/0504410 Soft Condensed Matter +cond-mat/0507244 Soft Condensed Matter +cond-mat/0508179 Soft Condensed Matter +cond-mat/0509157 Soft Condensed Matter +cond-mat/0511492 Soft Condensed Matter +cond-mat/0603096 Soft Condensed Matter +cond-mat/0609166 Soft Condensed Matter +hep-th/0703194 Theory +math/0401385 Probability +math/0403182 Algebraic Geometry +math/0409462 Commutative Algebra +math/0507054 Probability +math/0507598 Algebraic Geometry +math/0511186 Probability +math/0604168 Combinatorics +math/0611328 Combinatorics +math/0612799 Probability +quant-ph/0606131 +quant-ph/0609098 +0807.0848 Analysis of PDEs +0810.0115 Analysis of PDEs +0903.1011 +0905.2900 Probability +0906.4833 Instrumentation and Detectors +0908.2926 Probability +0909.4959 Solar and Stellar Astrophysics +0909.5141 Solar and Stellar Astrophysics +0910.3821 Probability +0911.1764 Dynamical Systems +0912.2380 Computation +1002.1880 Computational Complexity +1002.4287 +1003.6132 Cosmology and Nongalactic Astrophysics +1006.3918 Statistics Theory +1007.1334 Optimization and Control +1007.3351 Statistics Theory +1008.1281 Theory +1008.2061 Adaptation and Self-Organizing Systems +1010.1326 +1010.5682 +1012.4361 Statistics Theory +1101.0768 Data Structures and Algorithms +1102.1905 +1102.4828 Cosmology and Nongalactic Astrophysics +1104.0583 +1104.1338 Functional Analysis +1104.3013 Mesoscale and Nanoscale Physics +1106.4607 +1107.3214 Accelerator Physics +1107.3919 Mesoscale and Nanoscale Physics +1107.4505 Superconductivity +1107.5289 Statistical Mechanics +1108.0053 +1108.1741 Algebraic Geometry +1109.0552 Soft Condensed Matter +1109.1581 Atomic Physics +1109.1589 Quantum Gases +1109.1727 Quantum Gases +1109.2651 Mesoscale and Nanoscale Physics +1109.3808 Mesoscale and Nanoscale Physics +1109.3923 Adaptation and Self-Organizing Systems +1109.3973 Superconductivity +1109.6444 Quantum Gases +1109.6652 Phenomenology +1110.2815 Instrumentation and Detectors +1110.2865 Cosmology and Nongalactic Astrophysics +1110.3873 Materials Science +1110.4142 +1110.6273 Mesoscale and Nanoscale Physics +1111.1242 +1111.1630 Experiment +1111.3317 Plasma Physics +1111.3772 Group Theory +1111.4277 Quantum Gases +1111.5017 Strongly Correlated Electrons +1111.5304 Strongly Correlated Electrons +1111.5388 Superconductivity +1111.5579 Symplectic Geometry +1111.6341 Strongly Correlated Electrons +1112.0474 Algebraic Topology +1112.3912 Atomic Physics +1112.4793 Theory +1112.5597 Superconductivity +1201.1000 Instrumentation and Methods for Astrophysics +1201.1961 Earth and Planetary Astrophysics +1201.2276 High Energy Astrophysical Phenomena +1201.4035 Quantum Gases +1201.4410 Probability +1201.5448 Statistical Finance +1201.5496 Combinatorics +1202.0890 Mesoscale and Nanoscale Physics +1202.1226 Phenomenology +1202.1256 +1202.1473 Superconductivity +1202.2409 Accelerator Physics +1202.3035 Chemical Physics +1202.3319 General Physics +1202.4736 Information Theory +1202.4895 Theory +1202.5126 Plasma Physics +1202.5302 Cryptography and Security +1202.5314 Earth and Planetary Astrophysics +1202.5319 Combinatorics +1202.5322 High Energy Astrophysical Phenomena +1202.5329 Populations and Evolution +1202.5333 Accelerator Physics +1202.5335 Accelerator Physics +1202.5338 Phenomenology +1202.5340 +1202.5341 Numerical Analysis +1202.5345 High Energy Astrophysical Phenomena +1202.5358 Databases +1202.5360 Graphics +1202.5361 Probability +1202.5363 Algebraic Geometry +1202.5364 Mesoscale and Nanoscale Physics +1202.5373 +1202.5374 Combinatorics +1202.5376 Statistical Finance +1202.5377 Mesoscale and Nanoscale Physics +1202.5378 +1202.5382 +1202.5384 +1202.5387 +1202.5390 Fluid Dynamics +1202.5402 Atomic Physics +1202.5404 Exactly Solvable and Integrable Systems +1202.5407 Optimization and Control +1202.5409 Plasma Physics +1202.5413 Information Theory +1202.5414 Analysis of PDEs +1202.5417 Logic +1202.5421 Solar and Stellar Astrophysics +1202.5422 Optics +1202.5425 Functional Analysis +1202.5430 Group Theory +1202.5432 Statistics Theory +1202.5434 Neurons and Cognition +1202.5438 Geophysics +1202.5440 Classical Analysis and ODEs +1202.5441 Soft Condensed Matter +1202.5443 Numerical Analysis +1202.5447 Systems and Control +1202.5450 Applications +1202.5452 Probability +1202.5454 Probability +1202.5457 Classical Analysis and ODEs +1202.5458 Materials Science +1202.5459 +1202.5463 Probability +1202.5469 Information Retrieval +1202.5471 Numerical Analysis +1202.5473 Applications +1202.5477 Digital Libraries +1202.5481 Materials Science +1202.5483 Distributed, Parallel, and Cluster Computing +1202.5486 Accelerator Physics +1202.5488 Optimization and Control +1202.5490 Accelerator Physics +1202.5495 Accelerator Physics +1202.5505 Astrophysics of Galaxies +1202.5510 Accelerator Physics +1202.5512 Distributed, Parallel, and Cluster Computing +1202.5513 Superconductivity +1202.5515 Number Theory +1202.5516 Software Engineering +1202.5517 Databases +1202.5519 Distributed, Parallel, and Cluster Computing +1202.5522 Optics +1202.5525 Accelerator Physics +1202.5528 Information Theory +1202.5529 Information Theory +1202.5530 Algebraic Geometry +1202.5534 High Energy Astrophysical Phenomena +1202.5537 +1202.5538 Classical Analysis and ODEs +1202.5539 Programming Languages +1202.5540 Algebraic Geometry +1202.5544 Robotics +1202.5547 Representation Theory +1202.5548 Combinatorics +cond-mat/9808345 Strongly Correlated Electrons +math/0502245 General Mathematics +math/0702014 Analysis of PDEs +quant-ph/0610080 +0705.4071 Fluid Dynamics +0811.2487 +0904.0762 Instrumentation and Methods for Astrophysics +0904.3390 +0907.1430 Differential Geometry +0908.0618 Methodology +1003.4165 Rings and Algebras +1006.2543 Accelerator Physics +1006.4482 Functional Analysis +1007.4304 Classical Analysis and ODEs +1009.1762 Classical Analysis and ODEs +1009.6163 Dynamical Systems +1010.1709 +1010.2895 Statistics Theory +1012.3297 +1101.2751 Operator Algebras +1103.0542 Probability +1104.0685 Algebraic Geometry +1105.2013 Spectral Theory +1106.0812 Functional Analysis +1106.2340 +1106.5866 Cosmology and Nongalactic Astrophysics +1106.6235 Combinatorics +1107.1982 Analysis of PDEs +1108.2099 K-Theory and Homology +1108.3256 Differential Geometry +1108.6263 Logic +1109.2353 Commutative Algebra +1110.1001 Differential Geometry +1110.3016 Rings and Algebras +1110.4472 Fluid Dynamics +1110.5014 Combinatorics +1111.0779 Algebraic Geometry +1112.1325 Classical Analysis and ODEs +1112.3572 Algebraic Geometry +1112.5211 Rings and Algebras +1112.6238 +1201.3631 Phenomenology +1201.4195 Superconductivity +1201.6404 Optimization and Control +1202.1192 Phenomenology +1202.2953 Plasma Physics +1202.3107 Cosmology and Nongalactic Astrophysics +1202.4338 Dynamical Systems +1202.4342 Theory +1203.1650 Analysis of PDEs +1203.3421 Strongly Correlated Electrons +1203.5314 Phenomenology +1203.5478 +1203.6434 Representation Theory +1204.0884 Probability +1204.2780 +1205.0109 Statistical Mechanics +1205.0258 +1205.2248 Theory +1205.2685 +1205.3436 Superconductivity +1205.3630 Physics and Society +1205.3920 Plasma Physics +1205.5824 Numerical Analysis +1205.6433 Information Theory +1205.6596 +1206.2526 Functional Analysis +1206.5683 Experiment +1207.0378 Instrumentation and Detectors +1207.0810 Phenomenology +1207.2114 Experiment +1207.3900 Quantum Gases +1207.4087 +1207.4410 Cosmology and Nongalactic Astrophysics +1207.5706 Theory +1207.6719 +1207.6890 Operator Algebras +1208.2067 Quantum Gases +1208.2959 Classical Physics +1208.3086 Experiment +1208.3473 +1208.4883 Quantum Gases +1208.5427 Experiment +1208.5491 Superconductivity +1208.5843 Strongly Correlated Electrons +1209.0072 Statistical Mechanics +1209.1056 Quantum Gases +1209.2502 Numerical Analysis +1209.2558 Phenomenology +1209.4859 +1209.5811 Mesoscale and Nanoscale Physics +1209.5899 Analysis of PDEs +1209.6016 Theory +1209.6127 Solar and Stellar Astrophysics +1209.6205 Probability +1210.0505 Materials Science +1210.2121 General Topology +1210.2824 Astrophysics of Galaxies +1210.3918 Mesoscale and Nanoscale Physics +1210.6760 Analysis of PDEs +1210.7136 Computational Complexity +1210.7261 +1210.7423 Instrumentation and Methods for Astrophysics +1210.8220 Optimization and Control +1210.8235 Instrumentation and Methods for Astrophysics +1210.8246 Instrumentation and Methods for Astrophysics +1210.8363 Cellular Automata and Lattice Gases +1211.0508 Astrophysics of Galaxies +1211.1607 Genomics +1211.2881 Computer Vision and Pattern Recognition +1211.3536 Strongly Correlated Electrons +1211.5917 Plasma Physics +1211.6046 Number Theory +1211.6429 Cosmology and Nongalactic Astrophysics +1211.6452 Optics +1211.6455 Instrumentation and Methods for Astrophysics +1211.6465 Geometric Topology +1211.6466 Combinatorics +1211.6471 Robotics +1211.6473 Distributed, Parallel, and Cluster Computing +1211.6480 Dynamical Systems +1211.6481 Earth and Planetary Astrophysics +1211.6483 Combinatorics +1211.6485 Instrumentation and Methods for Astrophysics +1211.6490 Analysis of PDEs +1211.6491 Information Theory +1211.6493 Biomolecules +1211.6495 Lattice +1211.6497 Analysis of PDEs +1211.6498 Analysis of PDEs +1211.6500 Analysis of PDEs +1211.6502 Analysis of PDEs +1211.6505 Classical Analysis and ODEs +1211.6507 Computational Physics +1211.6509 Geometric Topology +1211.6511 Mesoscale and Nanoscale Physics +1211.6512 Social and Information Networks +1211.6517 General Finance +1211.6522 Information Theory +1211.6525 Pricing of Securities +1211.6526 Distributed, Parallel, and Cluster Computing +1211.6536 Spectral Theory +1211.6538 Optics +1211.6541 +1211.6543 Statistical Mechanics +1211.6555 Commutative Algebra +1211.6561 +1211.6563 Number Theory +1211.6567 Number Theory +1211.6572 Information Theory +1211.6573 Group Theory +1211.6575 Group Theory +1211.6583 History and Overview +1211.6584 History and Philosophy of Physics +1211.6585 History and Philosophy of Physics +1211.6587 Classical Analysis and ODEs +1211.6588 Classical Analysis and ODEs +1211.6591 Materials Science +1211.6593 Rings and Algebras +1211.6594 Superconductivity +1211.6595 Rings and Algebras +1211.6596 Populations and Evolution +1211.6597 Optics +1211.6598 Information Theory +1211.6599 Probability +1211.6600 Representation Theory +1211.6601 Statistical Mechanics +1211.6605 Solar and Stellar Astrophysics +1211.6607 Metric Geometry +1211.6610 Cryptography and Security +1211.6611 Populations and Evolution +1211.6617 Differential Geometry +1211.6619 +1211.6623 Pattern Formation and Solitons +1211.6625 Superconductivity +1211.6626 Classical Physics +1211.6631 Information Theory +1211.6638 Number Theory +1211.6639 Number Theory +1211.6640 Number Theory +1211.6644 Other Quantitative Biology +1211.6651 Lattice +1211.6653 Learning +1211.6656 Computational Complexity +1211.6658 Optimization and Control +1211.6660 Information Theory +1211.6662 Neurons and Cognition +1211.6663 Optimization and Control +1211.6667 Trading and Market Microstructure +1211.6671 Chemical Physics +1211.6672 Analysis of PDEs +1211.6674 Information Theory +1211.6675 Computer Vision and Pattern Recognition +1211.6680 Fluid Dynamics +1211.6681 Algebraic Geometry +1211.6682 Dynamical Systems +1211.6683 Physics and Society +1211.6694 Spectral Theory +1211.6697 Information Theory +1211.6702 +1211.6704 +1211.6705 Differential Geometry +1211.6706 Human-Computer Interaction +1211.6709 Human-Computer Interaction +1211.6711 Human-Computer Interaction +1211.6712 Human-Computer Interaction +1211.6715 Discrete Mathematics +1211.6719 Information Theory +1211.6727 Artificial Intelligence +math-ph/9904032 +math/0611599 Dynamical Systems +quant-ph/0003125 +0705.2701 Statistics Theory +0707.3760 Statistical Mechanics +0807.2286 Algebraic Geometry +0812.2503 Mesoscale and Nanoscale Physics +0901.1551 Algebraic Geometry +0902.0812 Materials Science +0903.1287 Optimization and Control +0906.3012 Algebraic Geometry +0907.0308 Geometric Topology +0907.4518 Optimization and Control +0911.2441 Number Theory +0912.0722 +0912.0787 Combinatorics +0912.5319 Algebraic Geometry +1001.0387 Differential Geometry +1001.2678 Pricing of Securities +1004.4967 +1007.3296 Computational Geometry +1007.5384 Representation Theory +1008.3781 Differential Geometry +1009.5234 Algebraic Geometry +1010.5436 Mesoscale and Nanoscale Physics +1011.3935 +1011.5596 Algebraic Geometry +1012.0869 Rings and Algebras +1012.1782 Algebraic Geometry +1012.2983 Computation +1012.4145 Representation Theory +1102.3881 +1102.4132 Optimization and Control +1103.2617 Probability +1104.3023 Applications +1105.0349 Analysis of PDEs +1105.1683 Probability +1105.3639 Analysis of PDEs +1106.1018 Operator Algebras +1106.1070 Representation Theory +1106.1476 Chaotic Dynamics +1106.1565 Disordered Systems and Neural Networks +1106.2342 General Finance +1106.5708 Theory +1107.1712 Phenomenology +1107.4741 Strongly Correlated Electrons +1108.0334 Strongly Correlated Electrons +1108.1968 Dynamical Systems +1108.5235 Cosmology and Nongalactic Astrophysics +1109.0563 Representation Theory +1109.1689 Exactly Solvable and Integrable Systems +1109.2886 Probability +1109.4040 Complex Variables +1110.0190 Optics +1110.2988 Strongly Correlated Electrons +1110.3606 Probability +1110.3636 Strongly Correlated Electrons +1110.5692 Analysis of PDEs +1111.1856 +1111.2172 Atomic Physics +1111.2766 Geometric Topology +1111.3003 Algebraic Geometry +1111.3432 Experiment +1111.5588 Numerical Analysis +1111.6458 Probability +1111.7065 +1112.2961 Group Theory +1112.3952 Group Theory +1112.4180 Applications +1112.4319 Physics Education +1112.6136 Optics +1112.6317 Number Theory +1201.3940 +1202.2454 Superconductivity +1202.5855 Combinatorics +1202.6044 Group Theory +1203.0011 +1203.0785 +1203.1025 Mesoscale and Nanoscale Physics +1203.1309 Cosmology and Nongalactic Astrophysics +1203.1351 Materials Science +1203.1906 Strongly Correlated Electrons +1203.2532 High Energy Astrophysical Phenomena +1203.5392 +1203.6597 Differential Geometry +1203.6602 Optimization and Control +1204.1340 Statistical Mechanics +1204.1913 Algebraic Geometry +1204.1917 Cosmology and Nongalactic Astrophysics +1204.2340 Experiment +1204.2798 Cryptography and Security +1204.3383 +1204.4040 +1204.4721 Biological Physics +1204.5032 Strongly Correlated Electrons +1204.5209 +1204.6702 Materials Science +1205.0404 Strongly Correlated Electrons +1205.0557 Phenomenology +1205.0612 Strongly Correlated Electrons +1205.0854 +1205.1159 Representation Theory +1205.1916 Materials Science +1205.2332 Theory +1205.2790 Cosmology and Nongalactic Astrophysics +1205.3185 Superconductivity +1205.3430 Quantum Gases +1205.5917 Quantum Gases +1205.5956 Materials Science +1205.6456 Differential Geometry +1206.0692 Multimedia +1206.0914 Phenomenology +1206.2019 Strongly Correlated Electrons +1206.2141 +1206.2266 Phenomenology +1206.2770 Quantum Gases +1206.3310 +1206.3453 +1206.3737 Number Theory +1206.4095 Strongly Correlated Electrons +1206.6060 Chemical Physics +1206.6247 Soft Condensed Matter +1206.6557 Software Engineering +1207.1929 Quantum Gases +1207.2158 Experiment +1207.2187 Atomic Physics +1207.2349 Statistical Mechanics +1207.3825 Lattice +1207.4264 General Mathematics +1207.5646 Experiment +1207.6109 High Energy Astrophysical Phenomena +1208.0560 Earth and Planetary Astrophysics +1208.0855 Phenomenology +1208.1986 Solar and Stellar Astrophysics +1208.3539 Instrumentation and Methods for Astrophysics +1208.5487 High Energy Astrophysical Phenomena +1209.0017 Solar and Stellar Astrophysics +1209.0062 +1209.0316 +1209.1665 Plasma Physics +1209.2148 +1209.2341 Information Retrieval +1209.2352 Information Retrieval +1209.2467 Adaptation and Self-Organizing Systems +1209.2493 Information Retrieval +1209.2495 Information Retrieval +1209.2946 Computational Engineering, Finance, and Science +1209.3080 Algebraic Geometry +1209.3472 +1209.3758 Classical Analysis and ODEs +1209.3762 General Physics +1209.3766 Data Analysis, Statistics and Probability +1209.3767 Popular Physics +1209.3774 Theory +1209.3783 Differential Geometry +1209.3785 High Energy Astrophysical Phenomena +1209.3791 +1209.3793 Computational Complexity +1209.3794 Other Computer Science +1209.3808 Systems and Control +1209.3811 Artificial Intelligence +1209.3813 Metric Geometry +1209.3819 +1209.3824 Information Theory +1209.3827 Networking and Internet Architecture +1209.3828 Number Theory +1209.3834 Optimization and Control +1209.3838 Probability +1209.3841 Analysis of PDEs +1209.3850 Instrumentation and Detectors +1209.3852 K-Theory and Homology +1209.3854 Probability +1209.3859 Operator Algebras +1209.3865 Combinatorics +1209.3867 Probability +1209.3868 Data Structures and Algorithms +1209.3873 Chemical Physics +1209.3875 Combinatorics +1209.3876 Differential Geometry +1209.3878 Software Engineering +1209.3888 Materials Science +1209.3897 Soft Condensed Matter +1209.3900 Quantum Algebra +1209.3904 Distributed, Parallel, and Cluster Computing +1209.3905 Classical Analysis and ODEs +1209.3907 Differential Geometry +1209.3908 Mesoscale and Nanoscale Physics +1209.3913 Databases +1209.3916 Computational Engineering, Finance, and Science +1209.3918 Functional Analysis +1209.3925 Discrete Mathematics +1209.3927 Discrete Mathematics +1209.3928 Probability +1209.3932 Logic +1209.3933 Logic +1209.3934 History and Overview +1209.3939 +1209.3943 Databases +1209.3944 Databases +1209.3945 Tissues and Organs +1209.3949 Number Theory +1209.3953 Dynamical Systems +1209.3954 Discrete Mathematics +1209.3958 Adaptation and Self-Organizing Systems +1209.3962 General Topology +1209.3964 Functional Analysis +1209.3973 Soft Condensed Matter +1209.3974 Populations and Evolution +1209.3975 Experiment +1209.3976 Phenomenology +1209.3981 Algebraic Geometry +1209.3982 Computational Finance +1209.3986 +1209.3993 Functional Analysis +1209.3995 Numerical Analysis +1209.3997 +1209.3999 Fluid Dynamics +1209.4000 High Energy Astrophysical Phenomena +1209.4003 Differential Geometry +1209.4013 Statistics Theory +1209.4015 Other Computer Science +1209.4017 Neurons and Cognition +1209.4022 Computer Science and Game Theory +1209.4023 Chemical Physics +1209.4024 Cosmology and Nongalactic Astrophysics +1209.4026 Differential Geometry +1209.4037 Phenomenology +1209.4038 Theory +1209.4045 Optics +1209.4048 +1209.4052 Accelerator Physics +1209.4054 Accelerator Physics +1209.4056 Cryptography and Security +1209.4061 Formal Languages and Automata Theory +1209.4062 Solar and Stellar Astrophysics +1209.4064 History and Philosophy of Physics +1209.4070 Commutative Algebra +1209.4071 Group Theory +1209.4074 Representation Theory +cond-mat/0404701 Statistical Mechanics +cond-mat/0409550 Statistical Mechanics +cond-mat/0503531 Superconductivity +cond-mat/0604668 Statistical Mechanics +math-ph/0312032 +math/0004037 Differential Geometry +math/0301309 Metric Geometry +math/0601742 Statistics Theory +0708.4205 Phenomenology +0711.2223 Combinatorics +0804.2138 Statistics Theory +0810.4330 +0812.3578 Phenomenology +0901.4928 Solar and Stellar Astrophysics +0902.0416 +0902.3428 Number Theory +0902.4496 Probability +0904.0888 Number Theory +0907.0325 Combinatorics +0907.4046 Theory +0909.0670 Number Theory +0911.0280 Machine Learning +0912.5205 Probability +1002.0028 Theory +1004.3082 Representation Theory +1006.0024 Statistics Theory +1007.0994 Combinatorics +1007.3823 Methodology +1008.5397 Analysis of PDEs +1011.4992 Applications +1011.5201 Representation Theory +1011.6369 Statistics Theory +1012.3484 Strongly Correlated Electrons +1012.3522 Atomic Physics +1101.0321 Dynamical Systems +1101.0323 Dynamical Systems +1101.3709 Statistics Theory +1102.2199 +1103.0245 Quantum Gases +1104.2365 Numerical Analysis +1104.3618 Statistics Theory +1106.2428 Combinatorics +1106.3264 +1106.4606 Computational Complexity +1106.4710 General Finance +1106.5381 Phenomenology +1106.6181 Theory +1107.2552 Spectral Theory +1107.2636 Probability +1107.3251 Analysis of PDEs +1108.0917 Classical Analysis and ODEs +1108.1209 Combinatorics +1108.4859 Analysis of PDEs +1109.2454 +1109.4592 Theory +1109.5108 Exactly Solvable and Integrable Systems +1110.0201 Theory +1110.1262 Atomic Physics +1110.1955 Statistical Mechanics +1110.1970 Phenomenology +1110.2296 Dynamical Systems +1110.3524 +1110.3541 Geometric Topology +1110.5097 Optics +1110.6793 Analysis of PDEs +1111.0301 Theory +1111.3050 +1111.6929 Solar and Stellar Astrophysics +1112.0334 Quantum Gases +1112.0335 High Energy Astrophysical Phenomena +1112.1359 Combinatorics +1112.4324 Pattern Formation and Solitons +1112.5217 Geophysics +1112.5475 Dynamical Systems +1112.5485 Group Theory +1201.0617 Number Theory +1201.1821 +1201.1823 +1201.5711 Quantum Gases +1201.5998 Strongly Correlated Electrons +1202.0015 Information Theory +1202.0038 Combinatorics +1202.0684 Category Theory +1202.0873 Phenomenology +1202.1979 Analysis of PDEs +1202.2747 General Physics +1202.3449 +1202.3904 Superconductivity +1202.4438 Information Theory +1202.4643 Statistical Mechanics +1202.5109 Mesoscale and Nanoscale Physics +1203.0162 Statistical Mechanics +1203.0235 Statistical Mechanics +1203.1269 Computation +1203.1815 Statistical Mechanics +1203.2752 Group Theory +1203.2855 Strongly Correlated Electrons +1203.4557 +1203.4567 Cosmology and Nongalactic Astrophysics +1203.5312 Phenomenology +1203.5337 Cosmology and Nongalactic Astrophysics +1203.5449 Optimization and Control +1203.5735 Cosmology and Nongalactic Astrophysics +1203.6072 Earth and Planetary Astrophysics +1203.6094 High Energy Astrophysical Phenomena +1203.6107 Strongly Correlated Electrons +1203.6263 +1204.0015 Physics and Society +1204.1092 Number Theory +1204.2509 Materials Science +1204.2778 +1204.4098 Fluid Dynamics +1204.4707 Solar and Stellar Astrophysics +1204.4750 Computational Physics +1204.4821 Mesoscale and Nanoscale Physics +1204.4881 High Energy Astrophysical Phenomena +1204.4975 High Energy Astrophysical Phenomena +1204.5039 Statistical Mechanics +1204.6686 Materials Science +1205.0501 +1205.2298 +1205.2846 High Energy Astrophysical Phenomena +1205.3341 +1205.3366 Cosmology and Nongalactic Astrophysics +1205.3429 Algebraic Geometry +1205.4292 Superconductivity +1205.4330 High Energy Astrophysical Phenomena +1205.5102 Superconductivity +1205.5373 Software Engineering +1205.5608 Experiment +1205.5953 High Energy Astrophysical Phenomena +1205.6936 Metric Geometry +1206.1396 Analysis of PDEs +1206.1641 Atomic Physics +1206.1965 Classical Analysis and ODEs +1206.1970 General Topology +1206.2312 Statistical Mechanics +1206.2842 Biological Physics +1206.3121 Statistical Mechanics +1206.4407 Materials Science +1206.5427 Strongly Correlated Electrons +1206.5574 Geometric Topology +1206.6227 Probability +1206.6520 +1206.6597 Dynamical Systems +1207.0180 Cryptography and Security +1207.0533 Probability +1207.0806 Cryptography and Security +1207.1521 Materials Science +1207.1740 +1207.1900 Group Theory +1207.1971 Logic +1207.2390 Differential Geometry +1207.3474 Materials Science +1207.3780 +1207.3907 Genomics +1207.4011 Algebraic Topology +1207.4297 Social and Information Networks +1207.4672 Phenomenology +1207.4814 Artificial Intelligence +1207.5055 Information Theory +1207.5058 Machine Learning +1207.5060 +1207.5061 Strongly Correlated Electrons +1207.5062 Classical Analysis and ODEs +1207.5064 Computer Vision and Pattern Recognition +1207.5069 Phenomenology +1207.5071 Representation Theory +1207.5073 Probability +1207.5084 Strongly Correlated Electrons +1207.5085 +1207.5086 Logic in Computer Science +1207.5089 Experiment +1207.5091 Logic in Computer Science +1207.5095 Quantum Gases +1207.5097 Statistics Theory +1207.5101 Number Theory +1207.5104 Sound +1207.5108 Other Computer Science +1207.5109 Cosmology and Nongalactic Astrophysics +1207.5114 Differential Geometry +1207.5116 Probability +1207.5117 Discrete Mathematics +1207.5119 Optimization and Control +1207.5123 Optimization and Control +1207.5126 Complex Variables +1207.5127 Numerical Analysis +1207.5130 Optimization and Control +1207.5133 Rings and Algebras +1207.5138 Hardware Architecture +1207.5140 Logic +1207.5142 +1207.5146 Data Structures and Algorithms +1207.5148 +1207.5153 +1207.5155 Combinatorics +1207.5157 Other Condensed Matter +1207.5158 Soft Condensed Matter +1207.5159 Neurons and Cognition +1207.5160 Earth and Planetary Astrophysics +1207.5161 Theory +1207.5164 Probability +1207.5166 Mesoscale and Nanoscale Physics +1207.5168 Number Theory +1207.5170 +1207.5172 Statistical Mechanics +1207.5174 Rings and Algebras +1207.5176 Other Computer Science +1207.5178 Functional Analysis +1207.5180 Functional Analysis +1207.5184 Genomics +1207.5190 Analysis of PDEs +1207.5191 Analysis of PDEs +1207.5193 Theory +1207.5196 +1207.5198 Statistics Theory +1207.5199 Theory +1207.5201 Functional Analysis +1207.5208 Artificial Intelligence +1207.5212 Computer Science and Game Theory +1207.5213 Theory +1207.5229 Algebraic Topology +1207.5240 Combinatorics +1207.5246 Soft Condensed Matter +1207.5247 Instrumentation and Detectors +1207.5251 Astrophysics of Galaxies +1207.5253 Differential Geometry +1207.5255 Dynamical Systems +1207.5256 Representation Theory +1207.5261 Physics and Society +1207.5262 Analysis of PDEs +1207.5264 Optics +1207.5269 Trading and Market Microstructure +1207.5270 Statistics Theory +1207.5275 Numerical Analysis +1207.5281 Geometric Topology +1207.5286 Probability +1207.5290 Adaptation and Self-Organizing Systems +1207.5291 Instrumentation and Methods for Astrophysics +1207.5295 Optimization and Control +1207.5296 Representation Theory +1207.5297 Solar and Stellar Astrophysics +1207.5299 Optimization and Control +1207.5307 Algebraic Geometry +1207.5310 Software Engineering +1207.5321 Computational Complexity +1207.5322 Statistics Theory +1207.5326 Information Theory +1207.5329 Combinatorics +1207.5330 +1207.5334 Theory +1207.5337 Complex Variables +1207.5339 Number Theory +1207.5340 Experiment +1207.5345 Software Engineering +1207.5351 +1207.5356 Statistical Mechanics +1207.5357 Combinatorics +1207.5358 Optimization and Control +1207.5360 Symplectic Geometry +1207.5362 Superconductivity +1207.5367 Statistics Theory +1207.5369 Quantum Gases +1207.5370 Rings and Algebras +1207.5371 Methodology +1207.5378 Statistics Theory +1207.5380 Dynamical Systems +1207.5384 Logic in Computer Science +1207.5386 +1207.5387 Number Theory +1207.5389 Chaotic Dynamics +1207.5396 General Physics +1207.5398 General Physics +1207.5399 Medical Physics +1207.5400 Phenomenology +1207.5403 General Physics +1207.5405 Statistical Mechanics +1207.5409 Computation and Language +1207.5410 +1207.5411 General Physics +1207.5413 Commutative Algebra +1207.5417 Statistical Mechanics +1207.5418 Probability +1207.5422 Classical Analysis and ODEs +1207.5430 Astrophysics of Galaxies +1207.5434 Information Theory +1207.5436 Earth and Planetary Astrophysics +1207.5438 Cryptography and Security +1207.5439 Discrete Mathematics +1207.5440 Differential Geometry +1207.5442 Cryptography and Security +1207.5443 Probability +1207.5444 Cryptography and Security +1207.5445 Phenomenology +1207.5446 Cryptography and Security +1207.5450 Formal Languages and Automata Theory +1207.5458 Information Theory +1207.5460 Combinatorics +1207.5461 Cryptography and Security +1207.5462 Statistics Theory +1207.5463 +1207.5466 Databases +1207.5467 Algebraic Geometry +1207.5474 +1207.5478 Superconductivity +1207.5480 Distributed, Parallel, and Cluster Computing +1207.5483 Information Theory +1207.5492 Accelerator Physics +1207.5495 Differential Geometry +1207.5497 Cryptography and Security +1207.5499 Phenomenology +1207.5500 Probability +chao-dyn/9505001 Chaotic Dynamics +chao-dyn/9905035 Chaotic Dynamics +chao-dyn/9907002 Chaotic Dynamics +cond-mat/0508554 Strongly Correlated Electrons +math/0609557 Geometric Topology +nlin/0007032 Chaotic Dynamics +nlin/0007033 Chaotic Dynamics +nlin/0111008 Chaotic Dynamics +nlin/0204004 Chaotic Dynamics +nlin/0210065 Chaotic Dynamics +nlin/0211001 Pattern Formation and Solitons +0707.2191 Information Theory +0711.0465 Differential Geometry +0807.1302 Materials Science +0904.4890 Algebraic Geometry +0905.1539 Probability +0909.3244 Statistical Finance +0909.4957 Differential Geometry +0910.5954 Strongly Correlated Electrons +1002.2300 Physics and Society +1003.2069 Materials Science +1004.0072 Quantum Algebra +1004.1432 Analysis of PDEs +1004.4333 K-Theory and Homology +1005.3063 Physics and Society +1005.3607 Probability +1008.3052 Analysis of PDEs +1008.5006 +1009.1073 Quantum Gases +1010.1480 Probability +1010.2376 Probability +1012.4375 Probability +1101.1990 Analysis of PDEs +1102.2167 Mesoscale and Nanoscale Physics +1102.2551 Optimization and Control +1103.0726 Numerical Analysis +1103.1613 +1103.2045 Differential Geometry +1103.4164 +1103.4901 Analysis of PDEs +1103.5228 Probability +1103.5382 Physics and Society +1103.5407 Methodology +1104.4735 Combinatorics +1105.1111 High Energy Astrophysical Phenomena +1105.2417 Combinatorics +1105.4857 Algebraic Geometry +1106.0151 Numerical Analysis +1106.0428 Combinatorics +1106.3006 Portfolio Management +1106.6153 Theory +1107.2616 Analysis of PDEs +1107.4548 Dynamical Systems +1107.4581 Information Theory +1107.4854 Numerical Analysis +1108.0461 Complex Variables +1108.4598 General Mathematics +1109.0958 Cosmology and Nongalactic Astrophysics +1109.1374 Statistical Mechanics +1109.2409 Probability +1109.2553 Machine Learning +1109.2725 Materials Science +1109.3281 Classical Physics +1109.3545 Mesoscale and Nanoscale Physics +1109.5269 Data Structures and Algorithms +1109.5969 Mesoscale and Nanoscale Physics +1110.0736 Phenomenology +1110.1541 Mesoscale and Nanoscale Physics +1110.4347 Machine Learning +1110.4430 Mesoscale and Nanoscale Physics +1110.4570 Probability +1110.4581 Phenomenology +1111.1220 Phenomenology +1111.1411 Algebraic Geometry +1111.6452 Quantum Algebra +1112.1191 Dynamical Systems +1112.2785 +1112.3491 Statistical Mechanics +1112.5389 Statistics Theory +1112.6416 Theory +1112.6425 +1201.0100 Fluid Dynamics +1201.0381 Methodology +1201.0734 Algebraic Geometry +1201.0846 Other Statistics +1201.2238 Quantum Gases +1201.3708 Lattice +1201.5532 Physics and Society +1201.6529 Combinatorics +1201.6637 +1202.0110 Strongly Correlated Electrons +1202.2796 Strongly Correlated Electrons +1202.4085 Superconductivity +1202.4206 Phenomenology +1202.5590 Quantum Gases +1202.6252 +1202.6322 Theory +1203.0733 Phenomenology +1203.1519 Instrumentation and Methods for Astrophysics +1203.1839 Complex Variables +1203.1846 +1203.3120 Phenomenology +1203.3673 +1203.3909 Other Computer Science +1203.4020 Probability +1203.5205 Optics +1203.6707 Mesoscale and Nanoscale Physics +1204.0531 Materials Science +1204.0974 Earth and Planetary Astrophysics +1204.3487 Algebraic Geometry +1204.3871 Mesoscale and Nanoscale Physics +1204.4377 Number Theory +1204.4931 Operator Algebras +1204.5183 Quantum Gases +1204.5895 Theory +1204.6073 Geophysics +1204.6471 Phenomenology +1204.6544 +1205.0958 Dynamical Systems +1205.1212 Cryptography and Security +1205.1268 +1205.1953 Complex Variables +1205.2169 Quantum Gases +1205.2318 Quantitative Methods +1205.2384 Cosmology and Nongalactic Astrophysics +1205.2811 Operator Algebras +1205.2909 Physics and Society +1205.2979 Mesoscale and Nanoscale Physics +1205.3352 Physics and Society +1205.3617 Phenomenology +1205.3633 Materials Science +1205.3911 Functional Analysis +1205.4406 Theory +1205.5403 Probability +1205.6125 Soft Condensed Matter +1205.6126 Biological Physics +1205.6196 Materials Science +1206.0442 Cosmology and Nongalactic Astrophysics +1206.0671 Statistical Mechanics +1206.0678 Theory +1206.1121 Learning +1206.2530 Theory +1206.2540 Strongly Correlated Electrons +1206.2720 Physics and Society +1206.3513 Phenomenology +1206.3668 Rings and Algebras +1206.3848 Mesoscale and Nanoscale Physics +1206.4759 Exactly Solvable and Integrable Systems +1206.5064 Statistical Mechanics +1206.6078 Solar and Stellar Astrophysics +1206.6355 Experiment +1207.0322 Other Condensed Matter +1207.1906 Phenomenology +1207.2409 Experiment +1207.3174 Statistical Mechanics +1207.3369 Materials Science +1207.4416 General Physics +1207.4582 Materials Science +1207.5027 Information Theory +1207.5314 Algebraic Geometry +1207.5554 Learning +1207.6548 Group Theory +1208.0700 Phenomenology +1208.1311 Solar and Stellar Astrophysics +1208.1577 Materials Science +1208.1659 Quantum Gases +1208.2432 Combinatorics +1208.3031 Mesoscale and Nanoscale Physics +1208.4015 +1208.4128 Group Theory +1208.4287 Analysis of PDEs +1208.4548 Theory +1208.4598 Cosmology and Nongalactic Astrophysics +1208.4654 Atomic Physics +1208.4770 +1208.5171 Differential Geometry +1208.5691 Representation Theory +1208.5896 Statistical Finance +1208.6058 Geometric Topology +1208.6584 Theory +1209.0127 Learning +1209.0286 Cryptography and Security +1209.1573 Probability +1209.2092 Astrophysics of Galaxies +1209.2673 Learning +1209.2798 Representation Theory +1209.2850 Experiment +1209.3324 Phenomenology +1209.3406 Digital Libraries +1209.3759 Optimization and Control +1209.3920 Discrete Mathematics +1209.3936 Dynamical Systems +1209.4333 Representation Theory +1209.4435 +1209.4545 Operator Algebras +1209.4547 Operator Algebras +1209.4665 Differential Geometry +1209.4748 Phenomenology +1209.4817 Solar and Stellar Astrophysics +1209.4897 Physics and Society +1209.4910 Experiment +1209.4911 Spectral Theory +1209.4913 Accelerator Physics +1209.4914 Soft Condensed Matter +1209.4917 Accelerator Physics +1209.4918 Probability +1209.4921 Accelerator Physics +1209.4925 +1209.4928 Instrumentation and Methods for Astrophysics +1209.4932 Materials Science +1209.4934 Algebraic Geometry +1209.4935 Instrumentation and Methods for Astrophysics +1209.4939 Experiment +1209.4943 Analysis of PDEs +1209.4957 Probability +1209.4958 Number Theory +1209.4959 Probability +1209.4968 Networking and Internet Architecture +1209.4971 Data Structures and Algorithms +1209.4975 Artificial Intelligence +1209.4977 Solar and Stellar Astrophysics +1209.4982 Human-Computer Interaction +1209.4984 Combinatorics +1209.5000 +1209.5002 Soft Condensed Matter +1209.5006 Neurons and Cognition +1209.5009 Numerical Analysis +1209.5012 History and Overview +1209.5014 Analysis of PDEs +1209.5019 Learning +1209.5021 Combinatorics +1209.5024 Instrumentation and Detectors +1209.5029 Neurons and Cognition +1209.5032 Populations and Evolution +1209.5038 Learning +1209.5044 Combinatorics +1209.5046 Biological Physics +1209.5047 Combinatorics +1209.5066 Cryptography and Security +1209.5069 Combinatorics +1209.5070 Strongly Correlated Electrons +1209.5073 Mesoscale and Nanoscale Physics +1209.5074 Networking and Internet Architecture +1209.5076 Cryptography and Security +1209.5077 Systems and Control +1209.5078 Differential Geometry +1209.5085 +1209.5092 Spectral Theory +1209.5097 Symbolic Computation +1209.5098 Soft Condensed Matter +1209.5102 Mesoscale and Nanoscale Physics +1209.5104 Algebraic Geometry +1209.5105 Number Theory +1209.5108 Systems and Control +1209.5110 Theory +1209.5111 Computer Vision and Pattern Recognition +1209.5113 Popular Physics +1209.5117 Representation Theory +1209.5120 Physics and Society +1209.5121 High Energy Astrophysical Phenomena +1209.5122 Commutative Algebra +1209.5123 Combinatorics +1209.5126 Combinatorics +1209.5128 +1209.5130 Networking and Internet Architecture +1209.5135 Mesoscale and Nanoscale Physics +1209.5137 Algebraic Geometry +1209.5142 Atomic Physics +1209.5145 Programming Languages +1209.5146 Differential Geometry +1209.5151 Biological Physics +1209.5152 Logic in Computer Science +1209.5154 Operator Algebras +1209.5160 Discrete Mathematics +1209.5163 Number Theory +1209.5168 Materials Science +1209.5170 Statistics Theory +1209.5173 Numerical Analysis +1209.5175 Portfolio Management +1209.5177 Differential Geometry +1209.5179 Functional Analysis +1209.5181 History and Philosophy of Physics +1209.5183 Statistics Theory +1209.5184 Instrumentation and Detectors +1209.5186 +1209.5191 +1209.5192 Computational Complexity +1209.5199 Computational Geometry +1209.5201 Fluid Dynamics +1209.5207 Algebraic Geometry +1209.5210 Networking and Internet Architecture +1209.5212 Information Theory +1209.5213 Information Theory +1209.5222 Theory +1209.5224 Category Theory +1209.5228 Mesoscale and Nanoscale Physics +1209.5235 Computational Physics +1209.5237 Theory +1209.5238 +1209.5240 Statistics Theory +1209.5241 Probability +1209.5243 Networking and Internet Architecture +1209.5244 Databases +1209.5245 Computer Vision and Pattern Recognition +1209.5246 Software Engineering +1209.5247 High Energy Astrophysical Phenomena +1209.5248 Group Theory +1209.5251 Artificial Intelligence +1209.5255 Materials Science +1209.5256 Geophysics +1209.5257 Software Engineering +1209.5260 Learning +1209.5275 Solar and Stellar Astrophysics +1209.5276 Astrophysics of Galaxies +1209.5278 Materials Science +1209.5280 Mesoscale and Nanoscale Physics +1209.5281 +1209.5282 Optics +1209.5288 Optics +1209.5293 Optics +1209.5297 +1209.5298 Optics +1209.5300 Number Theory +1209.5301 Mesoscale and Nanoscale Physics +1209.5302 Solar and Stellar Astrophysics +1209.5306 Physics and Society +1209.5307 Computational Geometry +1209.5314 Fluid Dynamics +1209.5318 Combinatorics +1209.5319 Distributed, Parallel, and Cluster Computing +1209.5321 +1209.5324 +1209.5329 Numerical Analysis +1209.5330 Mesoscale and Nanoscale Physics +1209.5331 Multiagent Systems +1209.5333 Systems and Control +1209.5335 Learning +1209.5337 Numerical Analysis +1209.5338 Solar and Stellar Astrophysics +1209.5339 Neural and Evolutionary Computing +1209.5341 Mesoscale and Nanoscale Physics +1209.5345 Artificial Intelligence +1209.5347 Solar and Stellar Astrophysics +1209.5351 +1209.5355 Superconductivity +1209.5356 Statistics Theory +1209.5359 Computation +1209.5363 Complex Variables +1209.5364 Logic in Computer Science +1209.5366 Optics +1209.5371 History and Overview +1209.5372 Group Theory +1209.5373 Combinatorics +1209.5374 Networking and Internet Architecture +1209.5376 History and Overview +1209.5378 +1209.5380 Accelerator Physics +1209.5381 Soft Condensed Matter +cond-mat/0606440 Strongly Correlated Electrons +cond-mat/0606442 Statistical Mechanics +gr-qc/0610054 +hep-th/0201115 Theory +math/0111097 Algebraic Geometry +math/0112046 Algebraic Geometry +math/0403018 Algebraic Geometry +math/0702114 Algebraic Geometry +nlin/0507032 Chaotic Dynamics +nlin/0605023 Adaptation and Self-Organizing Systems +physics/0606012 Physics and Society +physics/0607098 Physics and Society +physics/0607107 Data Analysis, Statistics and Probability +physics/0607139 Physics and Society +0709.0644 Theory +0811.0225 Geometric Topology +0908.0763 +0908.3870 Probability +1002.1859 Numerical Analysis +1003.4045 Superconductivity +1004.2481 Number Theory +1007.5507 Probability +1009.4152 Rings and Algebras +1010.5329 +1010.5894 Mesoscale and Nanoscale Physics +1011.3033 Materials Science +1011.3286 +1011.5272 +1101.3357 Phenomenology +1101.4281 +1101.5894 Logic +1103.0787 Disordered Systems and Neural Networks +1103.2559 Commutative Algebra +1103.3683 Probability +1105.2834 Probability +1105.3064 Accelerator Physics +1105.5233 Fluid Dynamics +1105.5270 Strongly Correlated Electrons +1107.0106 Differential Geometry +1107.2197 Strongly Correlated Electrons +1108.1114 Cosmology and Nongalactic Astrophysics +1108.2114 +1108.5224 +1109.4411 Optics +1109.4752 Instrumentation and Detectors +1110.2883 Mesoscale and Nanoscale Physics +1110.3523 Group Theory +1110.3837 +1110.4051 +1110.5158 +1110.6893 Phenomenology +1111.4330 Mesoscale and Nanoscale Physics +1112.0374 +1112.3961 Phenomenology +1112.4194 +1112.4367 Optics +1112.6218 Solar and Stellar Astrophysics +1201.1878 +1201.3142 Logic +1201.3473 Statistical Finance +1201.3511 Statistical Finance +1201.5497 +1201.6336 Phenomenology +1201.6337 Phenomenology +1202.0770 Theory +1202.1306 Cosmology and Nongalactic Astrophysics +1202.2651 +1202.4808 Cosmology and Nongalactic Astrophysics +1202.4812 Experiment +1202.5232 Cosmology and Nongalactic Astrophysics +1203.0343 Strongly Correlated Electrons +1203.1563 Phenomenology +1203.2545 Functional Analysis +1203.2654 Phenomenology +1203.4718 +1203.5201 +1203.6684 Quantum Gases +1204.0158 Mesoscale and Nanoscale Physics +1204.0680 +1204.0863 Phenomenology +1204.2082 Cosmology and Nongalactic Astrophysics +1204.2956 +1204.5811 Mesoscale and Nanoscale Physics +1205.0289 +1205.1495 +1205.1736 +1205.2577 Complex Variables +1205.3099 Phenomenology +1205.3211 +1205.3762 Representation Theory +1205.4229 Dynamical Systems +1205.4278 History and Philosophy of Physics +1205.4884 Algebraic Geometry +1205.5014 Complex Variables +1205.5024 Computational Engineering, Finance, and Science +1205.5043 Analysis of PDEs +1205.5044 Statistics Theory +1205.5045 Dynamical Systems +1205.5053 Rings and Algebras +1205.5055 Distributed, Parallel, and Cluster Computing +1205.5057 Rings and Algebras +1205.5061 Phenomenology +1205.5062 Information Theory +1205.5064 Numerical Analysis +1205.5076 +1205.5080 Analysis of PDEs +1205.5082 Methodology +1205.5083 Probability +1205.5084 Instrumentation and Detectors +1205.5085 Classical Analysis and ODEs +1205.5088 Robotics +1205.5093 Dynamical Systems +1205.5097 Computer Vision and Pattern Recognition +1205.5098 Artificial Intelligence +1205.5099 Mesoscale and Nanoscale Physics +1205.5100 Materials Science +1205.5104 Superconductivity +1205.5108 Methodology +1205.5114 Solar and Stellar Astrophysics +1205.5120 Algebraic Geometry +1205.5132 +1205.5138 Probability +1205.5140 Probability +1205.5148 Information Theory +1205.5152 Materials Science +1205.5154 Complex Variables +1205.5155 +1205.5158 Probability +1205.5160 Algebraic Geometry +1205.5169 Experiment +1205.5173 Phenomenology +1205.5174 Statistics Theory +1205.5178 Cosmology and Nongalactic Astrophysics +1205.5189 Classical Analysis and ODEs +1205.5200 Algebraic Geometry +1205.5201 Representation Theory +1205.5204 Graphics +1205.5208 +1205.5209 Mesoscale and Nanoscale Physics +1205.5213 Combinatorics +1205.5222 +1205.5234 Probability +1205.5240 Cosmology and Nongalactic Astrophysics +1205.5244 Analysis of PDEs +1205.5245 Group Theory +1205.5246 Group Theory +1205.5247 Combinatorics +1205.5248 Geometric Topology +1205.5256 Geometric Topology +1205.5260 Biological Physics +astro-ph/0502414 +math-ph/0702011 +math/0508182 Number Theory +0707.4505 +0710.0705 Rings and Algebras +0803.4394 +0809.3373 +0911.2560 Complex Variables +1001.2084 Cosmology and Nongalactic Astrophysics +1001.5433 Algebraic Geometry +1005.0596 Functional Analysis +1005.4645 Representation Theory +1006.2962 Quantum Gases +1007.1508 +1007.5080 Networking and Internet Architecture +1009.0880 Optimization and Control +1009.1662 Cosmology and Nongalactic Astrophysics +1009.2429 Superconductivity +1010.0041 Performance +1010.1643 Quantum Gases +1011.6629 Strongly Correlated Electrons +1012.2274 Quantum Algebra +1101.4869 Optics +1103.0595 History and Philosophy of Physics +1104.4708 Quantum Gases +1105.2377 Information Theory +1105.3500 Complex Variables +1105.4427 Mesoscale and Nanoscale Physics +1106.0309 Functional Analysis +1106.1465 Combinatorics +1107.4814 Functional Analysis +1108.1550 Functional Analysis +1108.3070 Strongly Correlated Electrons +1108.3499 Probability +1108.4609 Differential Geometry +1109.4123 Symplectic Geometry +1109.4155 Strongly Correlated Electrons +1110.2656 High Energy Astrophysical Phenomena +1111.1172 Strongly Correlated Electrons +1111.1658 Theory +1111.4397 Phenomenology +1111.4984 Phenomenology +1111.6112 Quantum Algebra +1111.6857 Information Theory +1112.1822 Mesoscale and Nanoscale Physics +1112.3111 Computational Finance +1201.5202 +1201.6024 +1202.4102 Mesoscale and Nanoscale Physics +1202.5526 Strongly Correlated Electrons +1202.6427 Statistics Theory +1203.5885 Genomics +1203.6767 Superconductivity +1203.6785 Optimization and Control +1204.2470 Statistical Mechanics +1204.2585 +1204.3619 +1204.3743 Statistical Mechanics +1204.4166 Learning +1204.4546 Complex Variables +1204.5229 Data Structures and Algorithms +1204.5769 +1204.6192 Computational Physics +1204.6193 Computational Physics +1204.6259 Lattice +1205.0425 Strongly Correlated Electrons +1205.2444 Theory +1205.3974 +1205.4262 Cosmology and Nongalactic Astrophysics +1205.5813 Phenomenology +1205.5893 Statistical Mechanics +1206.0131 Strongly Correlated Electrons +1206.1359 Mesoscale and Nanoscale Physics +1206.1509 Optimization and Control +1206.1592 Earth and Planetary Astrophysics +1206.1862 Solar and Stellar Astrophysics +1206.2064 Operator Algebras +1206.2944 Machine Learning +1206.5482 Mesoscale and Nanoscale Physics +1206.5773 Strongly Correlated Electrons +1207.0444 Statistical Mechanics +1207.0631 Rings and Algebras +1207.1084 +1207.1317 General Physics +1207.1915 Applications +1207.3464 Risk Management +1207.4431 Algebraic Geometry +1207.5486 Phenomenology +1207.6182 Geometric Topology +1208.5063 Cellular Automata and Lattice Gases +1208.5180 Phenomenology +1208.5290 Strongly Correlated Electrons +1208.5654 Information Retrieval +1208.5683 Logic +1208.5779 Accelerator Physics +1208.5781 Algebraic Topology +1208.5783 Number Theory +1208.5784 Accelerator Physics +1208.5787 High Energy Astrophysical Phenomena +1208.5789 +1208.5792 Applications +1208.5793 Soft Condensed Matter +1208.5795 Physics Education +1208.5798 Accelerator Physics +1208.5799 Quantum Algebra +1208.5805 +1208.5815 Functional Analysis +1208.5817 +1208.5828 Materials Science +1208.5829 Materials Science +1208.5831 Functional Analysis +1208.5832 Classical Analysis and ODEs +1208.5835 Combinatorics +1208.5844 Algebraic Topology +1208.5855 Robotics +1208.5861 +1208.5862 Superconductivity +1208.5865 Medical Physics +1208.5866 Solar and Stellar Astrophysics +1208.5867 +1208.5875 Other Computer Science +1208.5877 Experiment +1208.5879 Solar and Stellar Astrophysics +1208.5885 Solar and Stellar Astrophysics +1208.5886 Cellular Automata and Lattice Gases +1208.5888 Functional Analysis +1208.5890 Solar and Stellar Astrophysics +1208.5897 High Energy Astrophysical Phenomena +1208.5908 Experiment +1208.5915 Programming Languages +1208.5918 +1208.5926 High Energy Astrophysical Phenomena +1208.5927 Phenomenology +1208.5933 Software Engineering +1208.5946 Information Theory +1208.5947 Analysis of PDEs +1208.5956 Combinatorics +1208.5958 Analysis of PDEs +1208.5960 Optimization and Control +1208.5969 +1208.5980 Formal Languages and Automata Theory +1208.5981 Classical Analysis and ODEs +1208.5988 Differential Geometry +1208.5992 Number Theory +1208.5996 +1208.5997 Cryptography and Security +1208.6003 Symplectic Geometry +hep-ph/9512272 Phenomenology +0704.0073 Algebraic Geometry +0705.1199 Algebraic Geometry +0705.3667 Differential Geometry +0708.0867 Phenomenology +0802.4269 +0803.1852 Spectral Theory +0803.3780 Geometric Topology +0807.2812 General Mathematics +0811.0365 +0811.4188 +0811.4472 +0812.4113 Representation Theory +0902.1158 Differential Geometry +0902.4898 +0902.4900 Spectral Theory +0905.1147 Quantum Gases +0906.0183 Probability +0906.0455 Cosmology and Nongalactic Astrophysics +0907.3208 Data Structures and Algorithms +0907.3280 +0908.0963 Cosmology and Nongalactic Astrophysics +0909.0699 Astrophysics of Galaxies +0909.3528 Group Theory +0909.4905 Quantum Algebra +0910.0741 Materials Science +1001.3448 Information Theory +1002.4042 Physics and Society +1003.0358 Neural and Evolutionary Computing +1004.0077 Differential Geometry +1004.0703 Theory +1004.3794 +1004.4360 Statistics Theory +1005.1271 Statistical Mechanics +1006.0990 Biological Physics +1006.3649 Chemical Physics +1006.5957 Theory +1007.4899 Number Theory +1008.0463 Mesoscale and Nanoscale Physics +1008.3741 Multimedia +1009.0074 Information Theory +1009.0873 +1009.2925 Superconductivity +1009.5515 Physics Education +1010.0463 Representation Theory +1010.3743 Algebraic Geometry +1011.0673 Data Analysis, Statistics and Probability +1011.2923 Differential Geometry +1011.3161 Differential Geometry +1011.5186 Physics Education +1012.1942 Combinatorics +1012.2381 Logic +1012.2395 Analysis of PDEs +1012.2903 Theory +1012.4133 Strongly Correlated Electrons +1012.4233 Differential Geometry +1012.4315 Algebraic Topology +1012.5787 +1012.5860 +1012.5881 Metric Geometry +1101.0504 Quantum Gases +1102.0013 Phenomenology +1102.0070 Strongly Correlated Electrons +1102.0948 +1102.0963 Representation Theory +1102.2501 +1102.5063 Social and Information Networks +1103.0720 Analysis of PDEs +1103.2059 Combinatorics +1103.2816 +1103.3577 Quantum Gases +1103.5105 Other Condensed Matter +1104.1671 Applications +1104.2242 Differential Geometry +1104.3475 Metric Geometry +1105.2969 Functional Analysis +1105.4154 Classical Analysis and ODEs +1105.4584 Theory +1105.5758 Materials Science +1106.0089 Mesoscale and Nanoscale Physics +1106.3840 General Topology +1106.4496 +1106.4504 Disordered Systems and Neural Networks +1106.4662 Statistics Theory +1106.5428 Probability +1106.6250 Combinatorics +1106.6339 Strongly Correlated Electrons +1107.0369 Quantum Gases +1107.1270 Learning +1107.2169 Algebraic Geometry +1107.2230 Strongly Correlated Electrons +1107.2956 +1107.4686 +1107.5417 Representation Theory +1108.0210 +1108.0368 Probability +1108.1540 Theory +1108.3367 Numerical Analysis +1108.4528 K-Theory and Homology +1108.5181 Astrophysics of Galaxies +1108.5190 Optics +1108.6272 Number Theory +1109.1253 Statistical Mechanics +1109.1491 Mesoscale and Nanoscale Physics +1109.1497 Theory +1109.2199 Astrophysics of Galaxies +1109.3587 +1109.3854 Number Theory +1109.5593 Physics and Society +1109.6070 Number Theory +1109.6561 Strongly Correlated Electrons +1110.0082 General Topology +1110.0868 Combinatorics +1110.1105 Probability +1110.1190 Theory +1110.1758 Computation and Language +1110.2234 +1110.2545 Phenomenology +1110.3245 High Energy Astrophysical Phenomena +1110.3588 Mesoscale and Nanoscale Physics +1110.3981 Materials Science +1110.4912 Analysis of PDEs +1110.5050 Superconductivity +1110.5222 Physics and Society +1110.5372 +1110.6742 +1111.0113 Statistical Mechanics +1111.1291 Phenomenology +1111.1541 Lattice +1111.2371 Cosmology and Nongalactic Astrophysics +1111.3630 Fluid Dynamics +1111.3688 +1111.4068 Superconductivity +1111.4430 Strongly Correlated Electrons +1111.4807 Networking and Internet Architecture +1111.4925 Quantum Gases +1111.5134 Quantum Gases +1111.5856 Differential Geometry +1111.6315 Differential Geometry +1111.6420 Disordered Systems and Neural Networks +1111.6538 +1111.6885 Combinatorics +1111.6948 Instrumentation and Detectors +1112.0260 Theory +1112.1308 Cryptography and Security +1112.1614 Astrophysics of Galaxies +1112.2378 +1112.3419 Quantum Gases +1112.3917 High Energy Astrophysical Phenomena +1112.4387 Phenomenology +1112.6108 Physics and Society +1201.0169 +1201.0754 Cosmology and Nongalactic Astrophysics +1201.2155 Materials Science +1201.2575 Learning +1201.3687 Mesoscale and Nanoscale Physics +1201.6598 Mesoscale and Nanoscale Physics +1202.0120 Analysis of PDEs +1202.0492 Computer Vision and Pattern Recognition +1202.0593 Solar and Stellar Astrophysics +1202.1109 Materials Science +1202.1252 Functional Analysis +1202.2028 +1202.2849 Statistics Theory +1202.3003 Biological Physics +1202.3409 Combinatorics +1202.3520 Statistical Mechanics +1202.3528 Analysis of PDEs +1202.4031 +1202.4678 Logic in Computer Science +1202.5074 Data Structures and Algorithms +1202.6078 Machine Learning +1202.6269 Combinatorics +1202.6552 Solar and Stellar Astrophysics +1202.6635 Theory +1203.0136 Quantum Algebra +1203.0224 Data Structures and Algorithms +1203.0288 +1203.0307 Cosmology and Nongalactic Astrophysics +1203.0377 Statistical Mechanics +1203.0488 Computer Vision and Pattern Recognition +1203.0574 Optics +1203.0583 Representation Theory +1203.0584 Materials Science +1203.0586 Combinatorics +1203.0587 Logic in Computer Science +1203.0590 Instrumentation and Methods for Astrophysics +1203.0591 Instrumentation and Methods for Astrophysics +1203.0592 +1203.0599 Pricing of Securities +1203.0600 Superconductivity +1203.0614 Other Condensed Matter +1203.0618 Optics +1203.0619 Materials Science +1203.0621 Quantum Algebra +1203.0622 Materials Science +1203.0624 Materials Science +1203.0625 +1203.0626 Materials Science +1203.0632 Numerical Analysis +1203.0633 +1203.0636 Mesoscale and Nanoscale Physics +1203.0640 Cryptography and Security +1203.0641 Number Theory +1203.0642 Applications +1203.0643 Statistical Finance +1203.0645 Materials Science +1203.0646 Materials Science +1203.0647 Materials Science +1203.0648 Software Engineering +1203.0649 Atomic and Molecular Clusters +1203.0651 Distributed, Parallel, and Cluster Computing +1203.0657 Networking and Internet Architecture +1203.0660 Numerical Analysis +1203.0663 Soft Condensed Matter +1203.0665 Other Computer Science +1203.0666 Discrete Mathematics +1203.0668 Experiment +1203.0669 Metric Geometry +1203.0678 Phenomenology +1203.0681 Programming Languages +1203.0685 Methodology +1203.0690 Combinatorics +1203.0692 Cryptography and Security +1203.0695 Information Theory +1203.0696 Optimization and Control +1203.0699 Artificial Intelligence +1203.0703 Dynamical Systems +1203.0704 Combinatorics +1203.0707 Combinatorics +1203.0708 Dynamical Systems +1203.0709 Combinatorics +1203.0711 +1203.0716 Phenomenology +1203.0720 Metric Geometry +1203.0721 Computational Physics +1203.0722 +1203.0726 Number Theory +1203.0727 +1203.0728 Information Theory +1203.0731 Information Theory +1203.0734 Analysis of PDEs +1203.0736 Instrumentation and Detectors +1203.0739 +1203.0740 Distributed, Parallel, and Cluster Computing +1203.0744 Computer Vision and Pattern Recognition +1203.0749 Number Theory +1203.0751 Differential Geometry +1203.0762 Phenomenology +1203.0764 Mesoscale and Nanoscale Physics +1203.0767 Optics +1203.0768 Algebraic Geometry +1203.0769 +1203.0772 Geometric Topology +1203.0777 Statistical Mechanics +1203.0778 Statistical Mechanics +1203.0783 Solar and Stellar Astrophysics +1203.0786 Data Structures and Algorithms +1203.0787 Hardware Architecture +1203.0788 Physics and Society +1203.0794 +1203.0798 Group Theory +1203.0804 Number Theory +1203.0806 Phenomenology +1203.0807 Solar and Stellar Astrophysics +1203.0812 Methodology +1203.0821 Superconductivity +1203.0822 Superconductivity +1203.0830 Earth and Planetary Astrophysics +1203.0835 Programming Languages +1203.0839 Statistics Theory +1203.0840 Combinatorics +1203.0841 Formal Languages and Automata Theory +1203.0843 Combinatorics +1203.0846 Analysis of PDEs +1203.0847 Instrumentation and Methods for Astrophysics +1203.0848 Classical Analysis and ODEs +1203.0851 Dynamical Systems +1203.0853 Optics +1203.0855 Combinatorics +1203.0856 Computer Vision and Pattern Recognition +1203.0859 Atomic Physics +1203.0860 Differential Geometry +1203.0861 +1203.0864 Combinatorics +1203.0865 Analysis of PDEs +1203.0867 Statistical Mechanics +1203.0868 Neurons and Cognition +1203.0869 Cosmology and Nongalactic Astrophysics +1203.0870 +1203.0872 Neurons and Cognition +1203.0873 Neurons and Cognition +1203.0875 Molecular Networks +1203.0876 Computer Vision and Pattern Recognition +1203.0878 Cosmology and Nongalactic Astrophysics +1203.0879 Optics +1203.0882 Computer Vision and Pattern Recognition +1203.0884 Algebraic Geometry +1203.0887 +1203.0889 Numerical Analysis +1203.0899 Astrophysics of Galaxies +1203.0900 Applications +1203.0903 Instrumentation and Detectors +1203.0908 Probability +1203.0912 Computational Geometry +1203.0915 Numerical Analysis +1203.0919 Computation +1203.0922 Combinatorics +1203.0927 +1203.0928 Analysis of PDEs +1203.0934 Phenomenology +1203.0935 +1203.0939 Phenomenology +1203.0942 Instrumentation and Detectors +1203.0945 Number Theory +1203.0947 History and Philosophy of Physics +1203.0949 Differential Geometry +1203.0951 Soft Condensed Matter +1203.0952 +1203.0953 Number Theory +1203.0954 Popular Physics +1203.0960 Information Theory +1203.0962 Probability +1203.0964 Distributed, Parallel, and Cluster Computing +1203.0967 Statistics Theory +1203.0969 High Energy Astrophysical Phenomena +1203.0971 Populations and Evolution +1203.0972 Statistical Mechanics +1203.0980 +1203.0981 +1203.0986 Combinatorics +1203.0987 General Mathematics +1203.0988 Rings and Algebras +1203.0992 Combinatorics +1203.0994 Combinatorics +1203.0998 Mesoscale and Nanoscale Physics +1203.1000 General Mathematics +1203.1001 Theory +1203.1012 +1203.1013 Cosmology and Nongalactic Astrophysics +1203.1017 Symbolic Computation +1203.1020 Dynamical Systems +1203.1023 Mathematical Software +cond-mat/0312219 Superconductivity +cond-mat/0512643 Strongly Correlated Electrons +cond-mat/0703248 Other Condensed Matter +cs/0508101 Information Theory +cs/0702124 Computational Complexity +math-ph/0702057 +math/0012040 Algebraic Geometry +math/0703075 Differential Geometry +physics/9702021 Computational Physics +0808.0862 Atomic Physics +0811.1703 Combinatorics +0904.0013 Solar and Stellar Astrophysics +0912.2735 Phenomenology +1006.2112 General Physics +1006.4276 Combinatorics +1006.5174 Complex Variables +1007.3855 Dynamical Systems +1009.0042 +1009.3569 Algebraic Geometry +1009.5021 Dynamical Systems +1010.3897 Algebraic Geometry +1010.4942 General Physics +1011.1741 Classical Physics +1011.3380 Information Theory +1012.1046 Rings and Algebras +1012.1569 Spectral Theory +1102.0598 Statistics Theory +1102.0943 Popular Physics +1102.5018 Strongly Correlated Electrons +1103.5618 Cosmology and Nongalactic Astrophysics +1103.6169 Algebraic Geometry +1104.0485 +1105.4880 Information Theory +1106.0216 Computational Geometry +1106.0649 Combinatorics +1106.1389 K-Theory and Homology +1106.4873 Theory +1107.5908 +1108.0780 +1108.1427 Applications +1108.1957 Data Analysis, Statistics and Probability +1108.3286 Social and Information Networks +1108.3649 +1108.3771 Theory +1108.4442 Mesoscale and Nanoscale Physics +1108.4707 Dynamical Systems +1109.0838 Probability +1109.1940 Solar and Stellar Astrophysics +1109.5064 Representation Theory +1110.1184 +1110.2093 Commutative Algebra +1110.5281 Numerical Analysis +1111.1062 +1111.2499 Group Theory +1111.5710 Dynamical Systems +1111.5761 Atomic Physics +1111.6620 Cosmology and Nongalactic Astrophysics +1111.6621 Cosmology and Nongalactic Astrophysics +1111.7081 Astrophysics of Galaxies +1112.2382 +1112.3831 Mesoscale and Nanoscale Physics +1112.5009 Dynamical Systems +1112.6209 Learning +1201.0464 Statistical Mechanics +1201.0847 Functional Analysis +1201.0980 Statistical Mechanics +1201.1919 Astrophysics of Galaxies +1201.2740 Quantum Gases +1201.2771 Soft Condensed Matter +1201.5857 Quantum Gases +1201.6181 Networking and Internet Architecture +1201.6453 Information Theory +1202.0312 Soft Condensed Matter +1202.1492 Quantum Gases +1202.2012 Atomic Physics +1202.2973 +1202.3431 Phenomenology +1202.4475 +1203.0173 Superconductivity +1203.0800 Operator Algebras +1203.2568 Mesoscale and Nanoscale Physics +1203.3299 Mesoscale and Nanoscale Physics +1203.4951 Phenomenology +1203.4979 Statistical Finance +1203.6498 Algebraic Geometry +1203.6805 Popular Physics +1204.1713 Exactly Solvable and Integrable Systems +1204.1716 Exactly Solvable and Integrable Systems +1204.2819 Mesoscale and Nanoscale Physics +1204.3177 Quantum Gases +1204.3464 Atomic Physics +1204.3684 Statistical Mechanics +1204.3810 Complex Variables +1204.4160 Theory +1204.4739 Quantum Gases +1204.4882 Mesoscale and Nanoscale Physics +1204.5834 Data Structures and Algorithms +1204.6347 Quantum Gases +1204.6534 Quantum Gases +1205.1044 Optics +1205.1358 Logic in Computer Science +1205.3028 General Physics +1205.5562 +1205.5949 Cosmology and Nongalactic Astrophysics +1205.6954 +1206.0937 Machine Learning +1206.2130 Information Theory +1206.3514 Strongly Correlated Electrons +1206.3911 Statistics Theory +1206.4855 Discrete Mathematics +1206.6234 Mesoscale and Nanoscale Physics +1206.6757 Cryptography and Security +1206.6760 Strongly Correlated Electrons +1206.6783 Algebraic Topology +1206.7088 Superconductivity +1207.0383 Disordered Systems and Neural Networks +1207.0896 Combinatorics +1207.1210 Mesoscale and Nanoscale Physics +1207.2506 Data Structures and Algorithms +1207.2619 Artificial Intelligence +1207.2623 Materials Science +1207.2703 Dynamical Systems +1207.2760 Other Condensed Matter +1207.2786 +1207.2793 Information Theory +1207.2799 Optimization and Control +1207.2803 Materials Science +1207.2816 Neurons and Cognition +1207.2818 Strongly Correlated Electrons +1207.2827 +1207.2831 Statistics Theory +1207.2836 Functional Analysis +1207.2837 Data Structures and Algorithms +1207.2838 Biological Physics +1207.2839 +1207.2840 Hardware Architecture +1207.2848 Optimization and Control +1207.2861 Computer Science and Game Theory +1207.2863 Networking and Internet Architecture +1207.2867 Distributed, Parallel, and Cluster Computing +1207.2873 Biological Physics +1207.2878 Distributed, Parallel, and Cluster Computing +1207.2883 Statistics Theory +1207.2885 Chaotic Dynamics +1207.2888 +1207.2890 Classical Analysis and ODEs +1207.2892 Logic in Computer Science +1207.2894 +1207.2895 Exactly Solvable and Integrable Systems +1207.2896 +1207.2900 Databases +1207.2901 Mesoscale and Nanoscale Physics +1207.2904 Networking and Internet Architecture +1207.2905 Quantum Gases +1207.2906 Functional Analysis +1207.2922 Computer Vision and Pattern Recognition +1207.2923 Combinatorics +1207.2929 Soft Condensed Matter +1207.2931 Functional Analysis +1207.2932 High Energy Astrophysical Phenomena +1207.2937 +1207.2942 Biological Physics +1207.2947 Strongly Correlated Electrons +1207.2950 History and Overview +1207.2952 General Topology +1207.2953 Phenomenology +1207.2957 +1207.2958 Functional Analysis +1207.2959 Machine Learning +1207.2961 Computation +1207.2968 Methodology +1207.2969 Mesoscale and Nanoscale Physics +1207.2973 +1207.2975 Soft Condensed Matter +1207.2982 Numerical Analysis +1207.2986 Soft Condensed Matter +1207.2989 Statistical Mechanics +1207.2990 Analysis of PDEs +1207.2991 Networking and Internet Architecture +1207.2994 Mesoscale and Nanoscale Physics +1207.2995 Materials Science +1207.2997 Functional Analysis +1207.2999 Differential Geometry +1207.3001 Materials Science +1207.3007 Algebraic Geometry +1207.3010 Strongly Correlated Electrons +1207.3011 +1207.3026 Numerical Analysis +1207.3037 Distributed, Parallel, and Cluster Computing +1207.3051 Computational Physics +1207.3058 Phenomenology +1207.3059 Materials Science +1207.3061 Materials Science +1207.3068 Phenomenology +astro-ph/0604026 +math/0104283 Rings and Algebras +math/0201070 Rings and Algebras +math/0402403 Metric Geometry +math/0612735 Rings and Algebras +nucl-th/0702045 +0802.0413 Mesoscale and Nanoscale Physics +0808.2690 Algebraic Geometry +0811.0098 Probability +0902.2479 Optimization and Control +0905.2111 Geometric Topology +0905.2116 Geometric Topology +0906.1545 Probability +0909.1453 Combinatorics +0911.2849 Analysis of PDEs +0912.1588 Adaptation and Self-Organizing Systems +1003.3525 Differential Geometry +1004.0872 Combinatorics +1005.3586 Dynamical Systems +1005.4243 Differential Geometry +1006.3830 Symplectic Geometry +1006.3902 General Topology +1007.2395 +1007.3273 +1008.4636 +1009.0136 Materials Science +1009.4115 Mesoscale and Nanoscale Physics +1011.0454 Rings and Algebras +1012.1205 Superconductivity +1012.3714 Differential Geometry +1012.4763 Data Structures and Algorithms +1102.3282 Mesoscale and Nanoscale Physics +1103.1924 Group Theory +1104.0615 Classical Analysis and ODEs +1104.1054 Category Theory +1105.0229 Superconductivity +1106.2060 Mesoscale and Nanoscale Physics +1106.2106 Mesoscale and Nanoscale Physics +1106.2974 General Physics +1106.5018 Strongly Correlated Electrons +1106.5407 +1107.0279 Phenomenology +1107.3707 Physics and Society +1107.5197 Probability +1108.0307 Probability +1108.1151 Lattice +1108.1543 +1108.5723 Probability +1109.0273 Mesoscale and Nanoscale Physics +1109.0372 +1109.0381 Solar and Stellar Astrophysics +1109.2537 +1109.2871 Statistical Mechanics +1109.5188 Mesoscale and Nanoscale Physics +1110.2327 Statistical Mechanics +1110.3473 Instrumentation and Methods for Astrophysics +1110.3976 Phenomenology +1110.4772 Superconductivity +1110.6340 Lattice +1111.0172 Cosmology and Nongalactic Astrophysics +1111.1619 Statistical Mechanics +1111.1734 Mesoscale and Nanoscale Physics +1111.2016 Phenomenology +1111.2782 Strongly Correlated Electrons +1111.3024 Complex Variables +1111.5133 Software Engineering +1111.6411 Phenomenology +1112.1804 Optics +1112.3057 Instrumentation and Methods for Astrophysics +1112.4810 Cosmology and Nongalactic Astrophysics +1112.5141 Statistical Mechanics +1112.6006 Pattern Formation and Solitons +1201.3513 Classical Analysis and ODEs +1201.3906 Statistical Mechanics +1201.4922 Statistical Mechanics +1201.4999 Networking and Internet Architecture +1201.6253 Materials Science +1201.6576 Combinatorics +1202.0355 High Energy Astrophysical Phenomena +1202.1096 High Energy Astrophysical Phenomena +1202.3086 Disordered Systems and Neural Networks +1202.3524 Commutative Algebra +1202.3526 Quantum Gases +1202.5767 Exactly Solvable and Integrable Systems +1203.0350 +1203.1892 Information Theory +1203.2053 Combinatorics +1203.2222 +1203.2526 +1203.3198 Mesoscale and Nanoscale Physics +1203.3203 Discrete Mathematics +1203.3210 Information Theory +1203.3222 Classical Analysis and ODEs +1203.3227 Artificial Intelligence +1203.3230 Computer Vision and Pattern Recognition +1203.3231 Materials Science +1203.3237 Combinatorics +1203.3240 Networking and Internet Architecture +1203.3241 Physics and Society +1203.3245 Information Theory +1203.3246 Classical Physics +1203.3249 Computational Complexity +1203.3251 Classical Analysis and ODEs +1203.3252 Numerical Analysis +1203.3257 Combinatorics +1203.3258 Systems and Control +1203.3261 Solar and Stellar Astrophysics +1203.3262 Analysis of PDEs +1203.3268 Strongly Correlated Electrons +1203.3269 Information Theory +1203.3270 Computer Vision and Pattern Recognition +1203.3279 Numerical Analysis +1203.3284 Data Structures and Algorithms +1203.3285 Mesoscale and Nanoscale Physics +1203.3289 Group Theory +1203.3292 Numerical Analysis +1203.3293 Statistical Mechanics +1203.3296 Statistical Mechanics +1203.3298 Computational Complexity +1203.3306 Probability +1203.3307 Optimization and Control +1203.3309 Computational Physics +1203.3310 Plasma Physics +1203.3312 Combinatorics +1203.3313 Statistics Theory +1203.3314 Probability +1203.3315 Biomolecules +1203.3319 Commutative Algebra +1203.3320 Lattice +1203.3322 Information Theory +1203.3323 Networking and Internet Architecture +1203.3326 Solar and Stellar Astrophysics +1203.3327 Materials Science +1203.3329 Information Theory +1203.3330 +1203.3334 Mesoscale and Nanoscale Physics +1203.3336 +1203.3339 Lattice +1203.3342 Statistics Theory +1203.3343 Statistical Mechanics +1203.3346 Optics +1203.3350 Operator Algebras +1203.3351 Networking and Internet Architecture +1203.3352 +1203.3353 Instrumentation and Detectors +1203.3354 Functional Analysis +1203.3366 Methodology +1203.3368 Combinatorics +1203.3387 Strongly Correlated Electrons +1203.3395 Chemical Physics +1203.3402 Formal Languages and Automata Theory +1203.3404 Classical Analysis and ODEs +1203.3417 Analysis of PDEs +1203.3429 Number Theory +1203.3431 Cryptography and Security +1203.3434 Other Computer Science +1203.3436 Cosmology and Nongalactic Astrophysics +1203.3438 Metric Geometry +1203.3439 Solar and Stellar Astrophysics +1203.3441 Soft Condensed Matter +1203.3444 Combinatorics +1203.3445 Information Theory +1203.3447 Combinatorics +1203.3459 Probability +cond-mat/0410115 Mesoscale and Nanoscale Physics +hep-ex/0609047 Experiment +0706.3435 Methodology +0707.0595 +0711.0793 Algebraic Geometry +0711.0795 Representation Theory +0802.3413 Representation Theory +0802.3414 Computational Geometry +0804.0609 Classical Analysis and ODEs +0805.0618 Portfolio Management +0809.0331 Algebraic Geometry +0810.5527 Combinatorics +0812.2238 Representation Theory +0901.2602 Dynamical Systems +0902.0698 Theory +0902.1376 Complex Variables +0904.0224 Geometric Topology +0904.3094 Analysis of PDEs +0905.3005 Numerical Analysis +0907.1834 Classical Analysis and ODEs +0907.2444 Differential Geometry +0907.5155 Artificial Intelligence +0908.1439 Algebraic Geometry +0909.1046 Statistics Theory +0909.1634 +0909.2198 Quantum Algebra +0909.4978 Operator Algebras +0910.3326 Complex Variables +0910.4157 +0911.0772 Atomic Physics +0911.4411 Cosmology and Nongalactic Astrophysics +0911.5006 +0911.5681 Number Theory +0912.1474 Algebraic Geometry +0912.2801 Algebraic Geometry +0912.2904 Statistical Mechanics +1001.0965 +1001.1657 Chemical Physics +1001.2355 Algebraic Geometry +1003.1108 Cosmology and Nongalactic Astrophysics +1003.1174 +1003.3425 Logic +1003.5149 Logic +1004.4706 +1005.1317 Analysis of PDEs +1005.1415 Rings and Algebras +1005.2285 Classical Analysis and ODEs +1005.3886 Algebraic Geometry +1005.4583 Combinatorics +1005.5448 Artificial Intelligence +1006.3206 Statistical Mechanics +1007.1324 Logic in Computer Science +1007.1839 Dynamical Systems +1007.1904 Number Theory +1008.0995 Number Theory +1008.1393 Methodology +1008.2954 Spectral Theory +1008.3354 Mesoscale and Nanoscale Physics +1008.4104 Algebraic Geometry +1009.1751 Functional Analysis +1009.3434 Atomic Physics +1009.5147 Quantum Algebra +1009.5410 Probability +1010.1897 Materials Science +1010.4228 Algebraic Geometry +1011.5597 Algebraic Topology +1012.2592 Representation Theory +1012.3409 Physics and Society +1012.3745 Symplectic Geometry +1101.0661 Operator Algebras +1101.4973 Combinatorics +1101.5533 Quantum Gases +1101.5975 +1101.6065 Combinatorics +1102.0944 Plasma Physics +1102.1597 Functional Analysis +1102.3629 Numerical Analysis +1102.3740 Atomic Physics +1102.5283 Quantum Gases +1103.0515 Probability +1103.2803 +1103.4630 Quantum Gases +1103.5117 Rings and Algebras +1104.0238 +1104.1864 Probability +1104.3316 Combinatorics +1104.3521 +1104.4743 Mesoscale and Nanoscale Physics +1104.5252 Differential Geometry +1105.0076 Analysis of PDEs +1105.0561 Mesoscale and Nanoscale Physics +1105.0685 Probability +1105.2062 Information Theory +1105.2734 Mesoscale and Nanoscale Physics +1105.3203 Mesoscale and Nanoscale Physics +1105.3382 Solar and Stellar Astrophysics +1105.3505 Numerical Analysis +1105.3570 Mesoscale and Nanoscale Physics +1105.4115 +1105.4530 Theory +1105.5043 Classical Analysis and ODEs +1106.0886 Atomic and Molecular Clusters +1106.0997 Analysis of PDEs +1106.1290 Combinatorics +1106.2995 Soft Condensed Matter +1106.3473 +1106.3493 Number Theory +1106.4667 Phenomenology +1106.5394 +1106.6002 Statistics Theory +1106.6353 Cosmology and Nongalactic Astrophysics +1107.0007 Strongly Correlated Electrons +1107.0443 Phenomenology +1107.0772 Strongly Correlated Electrons +1107.1796 Superconductivity +1107.1893 Discrete Mathematics +1107.2009 Computer Science and Game Theory +1107.2079 Mesoscale and Nanoscale Physics +1107.2562 Risk Management +1107.2678 +1107.3174 Systems and Control +1107.3314 Cosmology and Nongalactic Astrophysics +1107.3940 +1107.4478 Logic in Computer Science +1107.5233 +1107.5268 Geometric Topology +1107.5655 +1108.0092 Materials Science +1108.1326 +1108.1400 Quantum Gases +1108.1996 Algebraic Geometry +1108.2597 Statistical Mechanics +1108.2729 +1108.2833 Representation Theory +1108.3453 Quantum Gases +1108.3994 +1108.4159 Theory +1108.4644 Neurons and Cognition +1108.4807 Strongly Correlated Electrons +1108.5039 Theory +1108.5078 General Physics +1108.5540 Strongly Correlated Electrons +1108.6330 Logic +1109.0816 Analysis of PDEs +1109.1013 Astrophysics of Galaxies +1109.1143 Solar and Stellar Astrophysics +1109.1562 Theory +1109.1797 Materials Science +1109.2119 Quantum Gases +1109.2592 Cosmology and Nongalactic Astrophysics +1109.3488 Portfolio Management +1109.3751 Solar and Stellar Astrophysics +1109.3852 +1109.4157 Representation Theory +1109.4187 +1109.4914 Combinatorics +1109.6309 Group Theory +1109.6761 Logic in Computer Science +1110.0002 General Physics +1110.0050 Physics Education +1110.0258 +1110.0646 +1110.0812 Computational Complexity +1110.1202 +1110.1316 Materials Science +1110.1787 Solar and Stellar Astrophysics +1110.1802 Digital Libraries +1110.2249 Phenomenology +1110.2439 Superconductivity +1110.3202 Strongly Correlated Electrons +1110.3709 Mesoscale and Nanoscale Physics +1110.4002 Lattice +1110.4390 Superconductivity +1110.5941 History and Philosophy of Physics +1111.0714 +1111.1280 Optimization and Control +1111.1500 Statistical Mechanics +1111.1715 Phenomenology +1111.1869 +1111.1874 Analysis of PDEs +1111.1926 Performance +1111.2401 Group Theory +1111.3302 Representation Theory +1111.4554 +1111.4624 Performance +1111.6670 +1112.0051 Experiment +1112.0067 Instrumentation and Methods for Astrophysics +1112.0094 Category Theory +1112.0104 Probability +1112.0261 Superconductivity +1112.0278 Data Structures and Algorithms +1112.0890 +1112.0969 Representation Theory +1112.1406 Solar and Stellar Astrophysics +1112.1608 Materials Science +1112.1983 Theory +1112.2586 +1112.2620 Mesoscale and Nanoscale Physics +1112.2879 Superconductivity +1112.3095 General Finance +1112.3105 High Energy Astrophysical Phenomena +1112.3173 Computer Vision and Pattern Recognition +1112.3492 Biological Physics +1112.4004 +1112.4326 Superconductivity +1112.4916 Materials Science +1112.5476 Theory +1112.5501 Symplectic Geometry +1112.5528 High Energy Astrophysical Phenomena +1112.5688 Optimization and Control +1112.5708 Exactly Solvable and Integrable Systems +1112.5965 Differential Geometry +1112.6018 Numerical Analysis +1112.6163 Combinatorics +1112.6252 Cosmology and Nongalactic Astrophysics +1112.6310 Fluid Dynamics +1112.6335 Discrete Mathematics +1112.6377 Disordered Systems and Neural Networks +1201.0006 Materials Science +1201.0021 Lattice +1201.0023 Programming Languages +1201.0024 Programming Languages +1201.0026 Dynamical Systems +1201.0027 Programming Languages +1201.0031 Algebraic Geometry +1201.0040 Information Retrieval +1201.0047 Analysis of PDEs +1201.0048 Experiment +1201.0049 Analysis of PDEs +1201.0052 Molecular Networks +1201.0053 +1201.0059 Category Theory +1201.0061 +1201.0067 Social and Information Networks +1201.0069 Soft Condensed Matter +1201.0070 Graphics +1201.0072 Instrumentation and Methods for Astrophysics +1201.0074 Phenomenology +1201.0075 Pricing of Securities +1201.0076 Analysis of PDEs +1201.0078 Dynamical Systems +1201.0079 Solar and Stellar Astrophysics +1201.0081 Information Theory +1201.0083 Probability +1201.0085 Superconductivity +1201.0086 Probability +1201.0089 Probability +1201.0090 Group Theory +1201.0091 Materials Science +1201.0092 Materials Science +1201.0094 Algebraic Geometry +1201.0097 Adaptation and Self-Organizing Systems +1201.0098 Solar and Stellar Astrophysics +1201.0101 Numerical Analysis +1201.0106 Portfolio Management +1201.0109 Materials Science +1201.0110 Information Theory +1201.0111 Pricing of Securities +1201.0112 +1201.0113 Dynamical Systems +1201.0114 General Physics +1201.0115 Phenomenology +1201.0118 Spectral Theory +1201.0119 Networking and Internet Architecture +1201.0120 Networking and Internet Architecture +1201.0122 Exactly Solvable and Integrable Systems +1201.0123 Phenomenology +1201.0124 Exactly Solvable and Integrable Systems +1201.0126 Exactly Solvable and Integrable Systems +1201.0131 Algebraic Geometry +1201.0132 Group Theory +1201.0138 Phenomenology +1201.0140 Networking and Internet Architecture +1201.0142 Combinatorics +1201.0143 Probability +1201.0148 Information Theory +1201.0151 Cosmology and Nongalactic Astrophysics +1201.0152 Exactly Solvable and Integrable Systems +1201.0154 Instrumentation and Methods for Astrophysics +1201.0155 Probability +1201.0158 Quantitative Methods +1201.0160 Other Computer Science +1201.0166 Strongly Correlated Electrons +1201.0173 Solar and Stellar Astrophysics +1201.0178 Networking and Internet Architecture +1201.0183 Complex Variables +1201.0188 Algebraic Geometry +1201.0192 Dynamical Systems +1201.0194 Solar and Stellar Astrophysics +1201.0197 Phenomenology +1201.0198 Molecular Networks +1201.0199 Rings and Algebras +1201.0203 Combinatorics +1201.0205 Networking and Internet Architecture +1201.0206 Networking and Internet Architecture +1201.0207 Networking and Internet Architecture +1201.0210 Networking and Internet Architecture +1201.0211 Probability +1201.0213 Networking and Internet Architecture +1201.0214 Geometric Topology +1201.0215 Networking and Internet Architecture +1201.0216 Social and Information Networks +1201.0219 Networking and Internet Architecture +1201.0220 Methodology +1201.0225 Symplectic Geometry +1201.0226 Databases +1201.0227 Databases +1201.0228 Databases +1201.0229 Databases +1201.0230 Databases +1201.0231 Databases +1201.0232 Databases +1201.0234 Databases +1201.0236 Geometric Topology +1201.0237 Superconductivity +1201.0238 Statistics Theory +1201.0239 Medical Physics +1201.0240 Symplectic Geometry +1201.0242 +1201.0247 +1201.0254 Combinatorics +1201.0256 Optimization and Control +1201.0258 Computational Physics +1201.0259 Optimization and Control +1201.0262 High Energy Astrophysical Phenomena +1201.0263 Pattern Formation and Solitons +1201.0264 +1201.0265 Algebraic Geometry +1201.0268 Cosmology and Nongalactic Astrophysics +1201.0269 Dynamical Systems +1201.0270 Experiment +1201.0274 Information Retrieval +1201.0276 Number Theory +1201.0277 Statistics Theory +1201.0280 Dynamical Systems +1201.0282 Number Theory +1201.0292 Learning +1201.0293 Operator Algebras +1201.0294 Analysis of PDEs +1201.0301 Networking and Internet Architecture +1201.0314 Analysis of PDEs +1201.0319 Atomic Physics +1201.0329 Probability +1201.0334 Phenomenology +1201.0335 Analysis of PDEs +1201.0338 Differential Geometry +1201.0344 +1201.0345 Logic in Computer Science +1201.0348 Quantum Gases +1201.0353 History and Overview +1201.0357 Software Engineering +1201.0360 Distributed, Parallel, and Cluster Computing +1201.0361 Differential Geometry +1201.0362 Information Theory +1201.0364 Phenomenology +1201.0366 Combinatorics +1201.0380 Representation Theory +1201.0384 Other Quantitative Biology +1201.0386 Theory +1201.0389 Probability +1201.0391 +1201.0392 +1201.0393 Metric Geometry +1201.0394 Information Theory +1201.0395 Other Computer Science +1201.0396 Phenomenology +1201.0397 Cryptography and Security +1201.0398 Cryptography and Security +1201.0399 +1201.0403 Classical Analysis and ODEs +1201.0405 Combinatorics +1201.0407 Other Condensed Matter +1201.0409 Information Theory +1201.0411 +1201.0412 Statistical Mechanics +1201.0416 Logic in Computer Science +1201.0420 Combinatorics +1201.0423 Information Theory +1201.0426 Information Theory +1201.0428 Cryptography and Security +1201.0429 Number Theory +1201.0430 Dynamical Systems +1201.0432 Computer Science and Game Theory +1201.0442 Analysis of PDEs +1201.0445 Phenomenology +1201.0446 Exactly Solvable and Integrable Systems +1201.0447 Differential Geometry +1201.0451 Algebraic Geometry +1201.0452 Combinatorics +1201.0455 Combinatorics +1201.0458 Combinatorics +1201.0461 Computer Science and Game Theory +1201.0469 Computational Engineering, Finance, and Science +1201.0473 +1201.0476 Chaotic Dynamics +1201.0480 Probability +1201.0482 Mesoscale and Nanoscale Physics +1201.0484 Combinatorics +1201.0486 Combinatorics +1201.0499 Mathematical Software +1201.0504 Symplectic Geometry +1201.0505 +1201.0512 +1201.0513 Dynamical Systems +1201.0514 Statistics Theory +1201.0515 Phenomenology +1201.0516 Phenomenology +1201.0520 Classical Analysis and ODEs +1201.0527 Operator Algebras +1201.0530 Complex Variables +1201.0532 Probability +1201.0540 Mathematical Software +1201.0544 Metric Geometry +1201.0548 Classical Analysis and ODEs +1201.0556 Biological Physics +1201.0558 History and Overview +1201.0560 Solar and Stellar Astrophysics +1201.0562 Logic +1201.0565 Statistical Mechanics +1201.0569 +1201.0572 Discrete Mathematics +1201.0573 Strongly Correlated Electrons +1201.0574 Operator Algebras +1201.0575 Materials Science +1201.0581 +1201.0584 Optics +1201.0585 Representation Theory +1201.0587 Geophysics +1201.0588 Methodology +1201.0591 Rings and Algebras +1201.0593 Operator Algebras +1201.0595 Software Engineering +1201.0598 Multimedia +1201.0604 Mesoscale and Nanoscale Physics +1201.0605 Phenomenology +1201.0607 Classical Analysis and ODEs +1201.0610 Machine Learning +1201.0611 Methodology +1201.0612 Materials Science +1201.0613 +1201.0614 Phenomenology +1201.0618 +1201.0620 Materials Science +1201.0626 Probability +1201.0628 Biological Physics +1201.0630 Combinatorics +1201.0631 Combinatorics +1201.0634 Geophysics +1201.0636 Functional Analysis +1201.0638 Data Analysis, Statistics and Probability +1201.0639 High Energy Astrophysical Phenomena +1201.0640 Operator Algebras +1201.0641 High Energy Astrophysical Phenomena +1201.0645 Statistical Mechanics +1201.0647 Mesoscale and Nanoscale Physics +1201.0648 Functional Analysis +1201.0649 Optics +1201.0661 Materials Science +1201.0662 Information Theory +1201.0665 Experiment +1201.0670 General Physics +1201.0679 Materials Science +1201.0680 Experiment +1201.0684 Algebraic Geometry +1201.0686 Networking and Internet Architecture +1201.0691 Functional Analysis +1201.0697 Combinatorics +1201.0701 Combinatorics +1201.0706 Lattice +1201.0710 Materials Science +1201.0711 Materials Science +1201.0719 Experiment +1201.0726 Instrumentation and Methods for Astrophysics +1201.0730 Number Theory +1201.0736 Phenomenology +1201.0739 Subcellular Processes +1201.0740 Algebraic Geometry +1201.0744 Materials Science +cond-mat/0603421 Strongly Correlated Electrons +cond-mat/0604419 Disordered Systems and Neural Networks +cond-mat/0703054 Mesoscale and Nanoscale Physics +cs/0512077 Distributed, Parallel, and Cluster Computing +hep-th/0611212 Theory +math/0010089 Representation Theory +math/0204058 Dynamical Systems +math/0403212 Dynamical Systems +math/0404554 Differential Geometry +math/0408083 Complex Variables +math/0501314 Combinatorics +math/0505276 Dynamical Systems +math/0505593 Differential Geometry +math/0510087 Differential Geometry +math/0510300 Differential Geometry +math/0607392 Differential Geometry +math/0610438 Statistics Theory +math/0703612 Statistics Theory +quant-ph/0001075 +quant-ph/0105027 +0706.0940 Group Theory +0805.2611 Category Theory +0909.1485 Operator Algebras +0911.2056 Algebraic Geometry +0911.2058 Algebraic Geometry +0912.3263 Cosmology and Nongalactic Astrophysics +0912.3494 Phenomenology +0912.3899 Medical Physics +1001.3732 Physics and Society +1005.3785 +1006.5334 Algebraic Geometry +1009.4116 Mesoscale and Nanoscale Physics +1011.2974 Numerical Analysis +1012.3727 Symplectic Geometry +1012.4137 Combinatorics +1102.0087 +1104.0005 Information Theory +1105.1819 +1105.2388 Phenomenology +1105.5651 Networking and Internet Architecture +1106.2780 +1107.3386 Materials Science +1107.4083 Medical Physics +1108.0182 +1108.0742 Chaotic Dynamics +1108.1858 Complex Variables +1108.3742 Information Theory +1108.4543 General Physics +1108.4956 Pattern Formation and Solitons +1108.5291 +1109.5804 Logic in Computer Science +1110.1140 Mesoscale and Nanoscale Physics +1110.3862 +1110.4726 Algebraic Geometry +1110.4952 Strongly Correlated Electrons +1110.5796 General Physics +1111.0767 Optics +1111.2924 Analysis of PDEs +1111.3514 High Energy Astrophysical Phenomena +1111.5736 Combinatorics +1111.7131 Cosmology and Nongalactic Astrophysics +1112.1663 Analysis of PDEs +1112.3265 Social and Information Networks +1112.4725 +1112.5651 Plasma Physics +1112.5861 Mesoscale and Nanoscale Physics +1201.0622 Combinatorics +1201.0689 Biomolecules +1201.2215 Analysis of PDEs +1201.4893 Phenomenology +1202.0749 Statistical Mechanics +1202.1482 Strongly Correlated Electrons +1202.1508 +1202.1764 Theory +1202.2284 Programming Languages +1202.2301 +1202.4963 Materials Science +1202.5163 Cosmology and Nongalactic Astrophysics +1202.5527 Statistical Mechanics +1203.0687 Phenomenology +1203.1486 Superconductivity +1203.2412 Operator Algebras +1203.2530 Statistical Mechanics +1203.2645 Strongly Correlated Electrons +1203.2851 Pattern Formation and Solitons +1203.3963 +1203.4264 Disordered Systems and Neural Networks +1203.4290 Metric Geometry +1203.4704 Atomic Physics +1203.4765 Strongly Correlated Electrons +1203.6298 Optics +1204.0330 Optics +1204.0869 +1204.1182 Superconductivity +1204.4825 Materials Science +1204.5227 +1204.6532 Phenomenology +1205.0787 Superconductivity +1205.1229 Theory +1205.1232 Phenomenology +1205.3543 Theory +1205.7034 Mesoscale and Nanoscale Physics +1206.1187 Mathematical Software +1206.3501 +1206.4330 Symplectic Geometry +1206.4406 Computational Physics +1206.4477 Software Engineering +1206.4487 Classical Physics +1206.4606 Learning +1206.4861 Strongly Correlated Electrons +1206.4908 Phenomenology +1206.4968 Neural and Evolutionary Computing +1206.5002 Astrophysics of Galaxies +1206.5009 Applications +1206.5011 High Energy Astrophysical Phenomena +1206.5012 Classical Analysis and ODEs +1206.5013 Numerical Analysis +1206.5014 Data Analysis, Statistics and Probability +1206.5015 Data Analysis, Statistics and Probability +1206.5018 High Energy Astrophysical Phenomena +1206.5021 Databases +1206.5022 High Energy Astrophysical Phenomena +1206.5027 Strongly Correlated Electrons +1206.5035 Cosmology and Nongalactic Astrophysics +1206.5043 Phenomenology +1206.5044 Earth and Planetary Astrophysics +1206.5045 Functional Analysis +1206.5046 Pricing of Securities +1206.5048 Digital Libraries +1206.5049 Algebraic Geometry +1206.5052 Phenomenology +1206.5055 Materials Science +1206.5058 High Energy Astrophysical Phenomena +1206.5059 Analysis of PDEs +1206.5060 Algebraic Topology +1206.5068 Number Theory +1206.5069 Probability +1206.5071 Probability +1206.5072 Optimization and Control +1206.5074 Probability +1206.5075 +1206.5083 Materials Science +1206.5084 Adaptation and Self-Organizing Systems +1206.5085 Rings and Algebras +1206.5088 Lattice +1206.5089 Strongly Correlated Electrons +1206.5092 Molecular Networks +1206.5096 Phenomenology +1206.5097 Cosmology and Nongalactic Astrophysics +1206.5099 Functional Analysis +1206.5101 Phenomenology +1206.5102 Machine Learning +1206.5104 Software Engineering +1206.5106 Discrete Mathematics +1206.5109 Optimization and Control +1206.5114 History and Overview +1206.5117 Chemical Physics +1206.5118 Number Theory +1206.5122 Classical Analysis and ODEs +1206.5127 Statistical Mechanics +1206.5141 Phenomenology +1206.5143 Theory +1206.5144 Information Theory +1206.5147 +1206.5150 Phenomenology +1206.5157 Computer Vision and Pattern Recognition +1206.5159 Computational Geometry +1206.5166 Software Engineering +1206.5167 Combinatorics +1206.5170 Robotics +1206.5171 Atomic Physics +1206.5177 Analysis of PDEs +1206.5178 Combinatorics +1206.5179 Combinatorics +1206.5184 Information Theory +1206.5190 Phenomenology +1206.5199 High Energy Astrophysical Phenomena +1206.5204 Analysis of PDEs +1206.5208 Computation +1206.5220 Strongly Correlated Electrons +1206.5226 Materials Science +1206.5234 Group Theory +math/0607207 Group Theory +math/0612121 Complex Variables +quant-ph/0701109 +0704.1187 Strongly Correlated Electrons +0803.2221 Differential Geometry +0805.1763 Complex Variables +0807.2400 +0808.3028 +0809.0135 +0809.3316 Soft Condensed Matter +0809.4629 Geometric Topology +0810.2099 K-Theory and Homology +0812.0549 +0905.0080 Number Theory +0909.1266 +0911.1221 Mesoscale and Nanoscale Physics +0911.1917 Superconductivity +0911.5270 +0912.1316 Analysis of PDEs +0912.2263 Quantum Gases +0912.4662 Populations and Evolution +1001.0030 Combinatorics +1001.2177 +1003.2380 Experiment +1003.3825 Combinatorics +1003.4431 Probability +1005.3606 Analysis of PDEs +1006.0318 Commutative Algebra +1007.2038 Mesoscale and Nanoscale Physics +1007.4919 Strongly Correlated Electrons +1008.3095 Analysis of PDEs +1009.0138 Group Theory +1009.1220 +1010.0460 Quantum Algebra +1010.2683 Spectral Theory +1011.1291 Number Theory +1011.1292 Number Theory +1011.1917 Computational Geometry +1011.2235 Distributed, Parallel, and Cluster Computing +1011.5034 Spectral Theory +1011.5598 Superconductivity +1101.4496 Experiment +1101.5277 Differential Geometry +1102.0310 Representation Theory +1103.1033 Differential Geometry +1103.1340 Differential Geometry +1103.2296 Complex Variables +1103.4452 Analysis of PDEs +1103.4841 +1104.0312 Dynamical Systems +1104.1513 Analysis of PDEs +1104.2412 Commutative Algebra +1104.4446 Theory +1104.5173 Soft Condensed Matter +1105.1015 Mesoscale and Nanoscale Physics +1105.2811 +1107.0749 Methodology +1107.3488 Mesoscale and Nanoscale Physics +1107.3570 +1107.3941 Atomic Physics +1108.0309 Soft Condensed Matter +1109.0864 Functional Analysis +1109.1203 +1109.1286 Cosmology and Nongalactic Astrophysics +1109.2797 +1109.3544 Data Structures and Algorithms +1109.4932 Optics +1110.0418 +1110.0876 Geometric Topology +1110.3952 Geometric Topology +1110.4120 Strongly Correlated Electrons +1110.4960 +1110.5673 Physics and Society +1110.6605 Strongly Correlated Electrons +1110.6632 Optimization and Control +1110.6734 Representation Theory +1111.1743 Theory +1111.3706 Soft Condensed Matter +1111.4278 Statistical Mechanics +1111.4956 Lattice +1111.5306 +1111.6560 Popular Physics +1112.0229 Strongly Correlated Electrons +1112.0846 Combinatorics +1112.0982 Statistical Mechanics +1112.0988 Spectral Theory +1112.1840 High Energy Astrophysical Phenomena +1112.1954 Earth and Planetary Astrophysics +1112.2047 Phenomenology +1112.3660 Fluid Dynamics +1112.4648 Cosmology and Nongalactic Astrophysics +1201.4145 Social and Information Networks +1202.0635 Computational Physics +1202.1786 Number Theory +1202.2256 Materials Science +1202.3171 Experiment +1202.3406 Combinatorics +1202.3573 +1202.5055 Classical Analysis and ODEs +1202.5190 Phenomenology +1202.5348 Algebraic Geometry +1202.5424 Cosmology and Nongalactic Astrophysics +1202.5633 Soft Condensed Matter +1202.5848 Representation Theory +1202.5921 Cryptography and Security +1202.5944 Other Computer Science +1202.5959 Programming Languages +1202.6001 Machine Learning +1202.6049 Optimization and Control +1202.6074 Fluid Dynamics +1202.6076 Methodology +1202.6080 Instrumentation and Detectors +1202.6081 Fluid Dynamics +1202.6082 Instrumentation and Methods for Astrophysics +1202.6083 Numerical Analysis +1202.6085 Combinatorics +1202.6087 Computational Physics +1202.6090 High Energy Astrophysical Phenomena +1202.6092 Populations and Evolution +1202.6099 Dynamical Systems +1202.6101 Computational Geometry +1202.6104 Human-Computer Interaction +1202.6105 Experiment +1202.6107 Quantum Algebra +1202.6109 Computational Geometry +1202.6110 Systems and Control +1202.6113 Lattice +1202.6118 Software Engineering +1202.6119 Software Engineering +1202.6120 Software Engineering +1202.6121 Software Engineering +1202.6122 Software Engineering +1202.6123 Software Engineering +1202.6124 Software Engineering +1202.6125 Software Engineering +1202.6126 Software Engineering +1202.6127 Software Engineering +1202.6128 Astrophysics of Galaxies +1202.6132 Algebraic Topology +1202.6133 Applications +1202.6135 Differential Geometry +1202.6136 Discrete Mathematics +1202.6137 Strongly Correlated Electrons +1202.6138 Differential Geometry +1202.6140 Differential Geometry +1202.6146 Algebraic Geometry +1202.6148 Logic in Computer Science +1202.6151 +1202.6157 Computer Science and Game Theory +1202.6158 Discrete Mathematics +1202.6163 Computation +1202.6164 Computers and Society +1202.6165 Information Theory +1202.6166 Materials Science +1202.6168 Numerical Analysis +1202.6170 Experiment +1202.6172 Applications +1202.6175 Information Theory +1202.6179 Biological Physics +1202.6182 Probability +1202.6184 Instrumentation and Detectors +1202.6192 Materials Science +1202.6193 High Energy Astrophysical Phenomena +1202.6195 +1202.6196 Experiment +1202.6201 Applications +1202.6207 Fluid Dynamics +1202.6209 High Energy Astrophysical Phenomena +1202.6212 Combinatorics +1202.6218 +1202.6220 Chemical Physics +1202.6229 Combinatorics +1202.6234 Group Theory +1202.6239 Instrumentation and Detectors +1202.6247 Representation Theory +1202.6248 Materials Science +1202.6254 Phenomenology +1202.6256 Data Structures and Algorithms +1202.6259 Optimization and Control +1202.6261 Algebraic Geometry +1202.6263 Methodology +1202.6266 Computation and Language +1202.6274 Molecular Networks +1202.6276 Instrumentation and Detectors +1202.6277 Atomic Physics +1202.6278 Information Theory +1202.6281 Optics +1202.6284 Phenomenology +1202.6291 Networking and Internet Architecture +1202.6295 Phenomenology +1202.6301 Accelerator Physics +1202.6303 Number Theory +1202.6310 General Topology +1202.6312 Mesoscale and Nanoscale Physics +1202.6321 Probability +1202.6327 Soft Condensed Matter +1202.6329 +1202.6334 Accelerator Physics +1202.6335 Materials Science +1202.6336 Phenomenology +1202.6338 Optics +1202.6342 Number Theory +1202.6343 Number Theory +1202.6347 Methodology +1202.6349 Number Theory +1202.6351 Computational Physics +1202.6353 Number Theory +1202.6354 Digital Libraries +1202.6355 Number Theory +1202.6360 Number Theory +cond-mat/0611503 Strongly Correlated Electrons +0910.5629 Classical Physics +0705.0316 +0712.4291 +0901.2175 Fluid Dynamics +1001.2516 Phenomenology +1002.2005 Classical Analysis and ODEs +1004.0578 Number Theory +1004.2684 Cosmology and Nongalactic Astrophysics +1004.3652 Number Theory +1005.0170 Computational Physics +1006.3295 Probability +1007.0172 Mesoscale and Nanoscale Physics +1008.1168 +1009.6216 Mesoscale and Nanoscale Physics +1010.4660 Rings and Algebras +1012.3075 +1103.4991 Number Theory +1104.4001 Geometric Topology +1106.1193 Statistics Theory +1106.5695 Mesoscale and Nanoscale Physics +1107.0101 +1107.2745 Number Theory +1107.4627 +1108.1012 Computational Complexity +1108.2353 Mesoscale and Nanoscale Physics +1108.5427 Operator Algebras +1109.6107 +1110.2224 Strongly Correlated Electrons +1110.3864 Physics and Society +1110.3951 Phenomenology +1110.5698 Phenomenology +1111.0237 Cosmology and Nongalactic Astrophysics +1111.0398 Experiment +1111.0787 +1111.2510 Soft Condensed Matter +1111.4833 Statistical Mechanics +1112.0657 +1112.2035 Quantum Gases +1112.3415 Information Theory +1112.5369 +1112.6100 Materials Science +1201.1008 Quantum Gases +1201.2517 Mesoscale and Nanoscale Physics +1201.2888 Statistical Mechanics +1201.4379 +1201.5117 Strongly Correlated Electrons +1201.5287 Statistical Mechanics +1201.5814 Theory +1201.5909 Probability +1202.1959 +1202.2269 K-Theory and Homology +1202.2605 Theory +1202.3394 Mesoscale and Nanoscale Physics +1202.4388 Solar and Stellar Astrophysics +1202.4621 +1202.5175 +1202.5589 Atomic Physics +1202.6150 Experiment +1203.0606 Probability +1203.0754 +1203.0924 Information Theory +1204.2264 Cosmology and Nongalactic Astrophysics +1204.2786 Atomic Physics +1204.4701 Fluid Dynamics +1204.5599 Cosmology and Nongalactic Astrophysics +1204.5631 Logic +1204.6136 Solar and Stellar Astrophysics +1205.0352 Superconductivity +1205.0632 Probability +1205.1122 Other Condensed Matter +1205.1740 Earth and Planetary Astrophysics +1205.1783 High Energy Astrophysical Phenomena +1205.1909 Cosmology and Nongalactic Astrophysics +1205.2999 Adaptation and Self-Organizing Systems +1205.3505 Experiment +1205.4701 Methodology +1205.5159 Materials Science +1205.5224 Cryptography and Security +1205.5569 Information Retrieval +1205.6185 Information Theory +1205.6409 Algebraic Geometry +1205.6623 Accelerator Physics +1205.7060 Statistics Theory +1206.0002 Fluid Dynamics +1206.0004 +1206.0012 High Energy Astrophysical Phenomena +1206.0017 Functional Analysis +1206.0021 Databases +1206.0029 Analysis of PDEs +1206.0033 Rings and Algebras +1206.0035 Strongly Correlated Electrons +1206.0042 Computation and Language +1206.0047 Numerical Analysis +1206.0050 Information Theory +1206.0057 Theory +1206.0059 Quantum Gases +1206.0065 Experiment +1206.0071 Algebraic Topology +1206.0072 Number Theory +1206.0076 Algebraic Geometry +1206.0081 Analysis of PDEs +1206.0089 Distributed, Parallel, and Cluster Computing +1206.0091 Phenomenology +1206.0103 Networking and Internet Architecture +1206.0104 Information Retrieval +1206.0107 Networking and Internet Architecture +1206.0111 Artificial Intelligence +1206.0113 History and Philosophy of Physics +1206.0115 Distributed, Parallel, and Cluster Computing +1206.0117 Quantum Gases +1206.0122 Software Engineering +1206.0124 Materials Science +1206.0127 Dynamical Systems +1206.0129 Optimization and Control +1206.0133 Networking and Internet Architecture +1206.0134 Phenomenology +1206.0135 Algebraic Geometry +1206.0139 +1206.0143 Cosmology and Nongalactic Astrophysics +1206.0145 Quantum Gases +1206.0148 +1206.0149 Number Theory +1206.0150 Data Structures and Algorithms +1206.0151 Experiment +1206.0152 Combinatorics +1206.0159 Phenomenology +1206.0162 Category Theory +1206.0163 Exactly Solvable and Integrable Systems +1206.0167 Differential Geometry +1206.0169 Other Computer Science +1206.0171 Soft Condensed Matter +1206.0174 Statistical Mechanics +1206.0180 Phenomenology +1206.0183 Phenomenology +1206.0185 Group Theory +1206.0187 General Physics +1206.0192 Phenomenology +1206.0200 General Mathematics +1206.0203 Instrumentation and Methods for Astrophysics +1206.0206 Computational Complexity +1206.0208 General Physics +1206.0209 General Physics +1206.0210 Representation Theory +1206.0212 Probability +1206.0217 Databases +1206.0218 General Physics +1206.0221 +1206.0224 Data Analysis, Statistics and Probability +1206.0226 General Physics +1206.0228 Spectral Theory +1206.0229 Spectral Theory +1206.0235 Dynamical Systems +1206.0238 Computer Vision and Pattern Recognition +1206.0240 +1206.0241 +1206.0243 Portfolio Management +1206.0245 General Physics +1206.0248 Analysis of PDEs +1206.0254 +1206.0263 Geometric Topology +1206.0270 +1206.0274 Phenomenology +1206.0276 Phenomenology +1206.0277 Information Theory +1206.0281 Numerical Analysis +1206.0285 Computer Vision and Pattern Recognition +1206.0286 Number Theory +1206.0289 Theory +1206.0293 Phenomenology +hep-th/0311118 Theory +math/0004141 Algebraic Topology +0707.3387 +0711.1531 Strongly Correlated Electrons +0802.0268 Statistical Mechanics +0807.3676 Optics +0811.2513 Optics +0910.5721 High Energy Astrophysical Phenomena +0912.0713 Algebraic Geometry +0912.3880 Methodology +1001.0074 Representation Theory +1001.3973 Materials Science +1002.3887 Optics +1002.4432 Representation Theory +1003.5726 Operator Algebras +1004.4628 Phenomenology +1006.4994 Optics +1009.4676 Instrumentation and Methods for Astrophysics +1009.5587 Strongly Correlated Electrons +1010.0867 Spectral Theory +1012.4087 +1101.4200 Complex Variables +1103.1568 Optics +1105.0926 Soft Condensed Matter +1105.5032 Computer Science and Game Theory +1106.4287 Combinatorics +1107.1467 Optimization and Control +1108.1506 Mesoscale and Nanoscale Physics +1109.4165 +1110.4958 General Physics +1110.5938 Strongly Correlated Electrons +1201.0753 High Energy Astrophysical Phenomena +1201.0902 Superconductivity +1201.1690 Mesoscale and Nanoscale Physics +1201.2530 Logic +1201.6239 +1201.6601 Physics Education +1202.0540 +1202.0911 Discrete Mathematics +1202.1280 Phenomenology +1202.2852 Cosmology and Nongalactic Astrophysics +1202.3781 +1202.5446 Superconductivity +1202.6224 Materials Science +1203.1047 Strongly Correlated Electrons +1203.2565 Statistical Mechanics +1203.6181 Superconductivity +1204.0992 Information Theory +1204.1026 Soft Condensed Matter +1204.2161 Quantum Gases +1204.2293 Materials Science +1204.3299 Materials Science +1204.3734 Disordered Systems and Neural Networks +1204.4974 Optics +1204.5925 Phenomenology +1205.0458 Data Structures and Algorithms +1205.2072 Optics +1205.2869 Strongly Correlated Electrons +1205.3472 +1205.3523 +1205.3639 Statistical Mechanics +1205.4587 Phenomenology +1205.6394 Statistical Mechanics +1206.0751 Phenomenology +1206.0872 Statistical Mechanics +1206.3039 Phenomenology +1206.3993 Metric Geometry +1206.6055 Mesoscale and Nanoscale Physics +1207.0052 Formal Languages and Automata Theory +1207.0863 Differential Geometry +1207.0953 Discrete Mathematics +1207.1167 Algebraic Geometry +1207.1311 Phenomenology +1207.1321 Analysis of PDEs +1207.1350 Artificial Intelligence +1207.1351 Artificial Intelligence +1207.1352 Artificial Intelligence +1207.1353 Artificial Intelligence +1207.1354 Artificial Intelligence +1207.1355 Artificial Intelligence +1207.1356 Artificial Intelligence +1207.1357 Artificial Intelligence +1207.1358 Learning +1207.1359 Artificial Intelligence +1207.1360 Computer Science and Game Theory +1207.1361 Computer Science and Game Theory +1207.1362 Computer Science and Game Theory +1207.1363 Artificial Intelligence +1207.1364 Learning +1207.1365 Methodology +1207.1366 Learning +1207.1368 Computer Science and Game Theory +1207.1369 Artificial Intelligence +1207.1370 Artificial Intelligence +1207.1371 Data Structures and Algorithms +1207.1372 Artificial Intelligence +1207.1373 Artificial Intelligence +1207.1374 Artificial Intelligence +1207.1375 Artificial Intelligence +1207.1376 Artificial Intelligence +1207.1377 Artificial Intelligence +1207.1378 Artificial Intelligence +1207.1379 Learning +1207.1380 Mathematical Software +1207.1381 Artificial Intelligence +1207.1382 Learning +1207.1383 Computer Science and Game Theory +1207.1384 Artificial Intelligence +1207.1385 Artificial Intelligence +1207.1386 Artificial Intelligence +1207.1387 Artificial Intelligence +1207.1388 Artificial Intelligence +1207.1389 Artificial Intelligence +1207.1390 Artificial Intelligence +1207.1391 Artificial Intelligence +1207.1392 Methodology +1207.1393 Learning +1207.1394 Artificial Intelligence +1207.1395 Artificial Intelligence +1207.1396 Computation +1207.1397 Artificial Intelligence +1207.1398 Artificial Intelligence +1207.1399 Robotics +1207.1400 Computer Science and Game Theory +1207.1401 Artificial Intelligence +1207.1402 Artificial Intelligence +1207.1403 Learning +1207.1404 Learning +1207.1405 Artificial Intelligence +1207.1406 Learning +1207.1407 Artificial Intelligence +1207.1408 Artificial Intelligence +1207.1409 Learning +1207.1410 Artificial Intelligence +1207.1411 Computer Science and Game Theory +1207.1412 Artificial Intelligence +1207.1413 Learning +1207.1414 Information Retrieval +1207.1415 Artificial Intelligence +1207.1416 Artificial Intelligence +1207.1418 Artificial Intelligence +1207.1419 Artificial Intelligence +1207.1420 Computation and Language +1207.1421 Learning +1207.1422 Artificial Intelligence +1207.1423 Learning +1207.1424 Computer Science and Game Theory +1207.1425 Artificial Intelligence +1207.1426 Artificial Intelligence +1207.1427 Artificial Intelligence +1207.1428 Methodology +1207.1429 Learning +1207.1433 Phenomenology +1207.1448 Cosmology and Nongalactic Astrophysics +1207.1455 Accelerator Physics +1207.1458 Accelerator Physics +1207.1459 High Energy Astrophysical Phenomena +1207.1461 Number Theory +1207.1471 Analysis of PDEs +1207.1479 +1207.1482 +1207.1490 History and Philosophy of Physics +1207.1491 History and Philosophy of Physics +1207.1493 Software Engineering +1207.1495 Fluid Dynamics +1207.1498 History and Philosophy of Physics +1207.1500 Combinatorics +1207.1502 Superconductivity +1207.1513 Dynamical Systems +1207.1514 Networking and Internet Architecture +1207.1516 Biological Physics +1207.1518 Combinatorics +1207.1519 Theory +1207.1520 Networking and Internet Architecture +1207.1522 Computer Vision and Pattern Recognition +1207.1531 Applications +1207.1532 Rings and Algebras +1207.1535 Databases +1207.1536 Dynamical Systems +1207.1537 Phenomenology +1207.1542 Networking and Internet Architecture +1207.1543 Differential Geometry +1207.1547 Computational Engineering, Finance, and Science +1207.1551 Computer Vision and Pattern Recognition +1207.1557 Operator Algebras +1207.1559 +1207.1563 Information Theory +1207.1565 Complex Variables +1207.1575 Differential Geometry +1207.1576 Differential Geometry +1207.1577 Superconductivity +1207.1578 Analysis of PDEs +1207.1579 Algebraic Geometry +1207.1580 Combinatorics +1207.1583 Functional Analysis +1207.1586 General Topology +1207.1587 General Topology +1207.1589 General Topology +1207.1591 Operating Systems +1207.1592 Probability +1207.1600 Algebraic Geometry +1207.1601 Phenomenology +1207.1603 Solar and Stellar Astrophysics +1207.1608 Superconductivity +1207.1611 Statistics Theory +1207.1616 Instrumentation and Methods for Astrophysics +1207.1633 Fluid Dynamics +1207.1636 Probability +1207.1641 Artificial Intelligence +1207.1642 +1207.1643 Analysis of PDEs +1207.1645 Functional Analysis +1207.1649 Computer Vision and Pattern Recognition +1207.1659 Probability +1207.1662 Probability +1207.1668 Data Structures and Algorithms +1207.1670 Materials Science +1207.1674 Strongly Correlated Electrons +1207.1680 Soft Condensed Matter +1207.1681 High Energy Astrophysical Phenomena +1207.1682 Mesoscale and Nanoscale Physics +1207.1687 Statistics Theory +1207.1692 Probability +1207.1700 Networking and Internet Architecture +1207.1701 Cryptography and Security +1207.1702 Networking and Internet Architecture +cond-mat/0701091 Statistical Mechanics +quant-ph/0505064 +0805.3239 +0810.4023 Complex Variables +0810.5295 Complex Variables +0812.1686 Complex Variables +0812.2793 Complex Variables +0905.2550 Number Theory +0907.3247 Representation Theory +0908.1251 Complex Variables +0909.0165 Analysis of PDEs +0909.2607 Classical Analysis and ODEs +0910.1230 Probability +0911.5071 Complex Variables +1002.1706 Complex Variables +1004.0736 Group Theory +1004.4346 Superconductivity +1005.2320 Representation Theory +1006.5860 Strongly Correlated Electrons +1008.0016 Phenomenology +1009.4633 Group Theory +1010.1044 Information Theory +1010.3792 Phenomenology +1011.0600 K-Theory and Homology +1011.5759 Representation Theory +1101.0549 Rings and Algebras +1101.5714 Algebraic Topology +1103.2235 Numerical Analysis +1103.3082 Solar and Stellar Astrophysics +1103.3429 Superconductivity +1103.3924 Analysis of PDEs +1103.6257 Differential Geometry +1104.1884 Probability +1104.3309 +1105.1207 Computational Physics +1105.2270 +1105.6127 Cosmology and Nongalactic Astrophysics +1106.0663 Combinatorics +1106.1426 +1106.1876 Combinatorics +1107.2939 +1107.4392 Number Theory +1108.4017 Classical Analysis and ODEs +1108.4456 Strongly Correlated Electrons +1108.4652 Metric Geometry +1109.1338 +1109.1586 Complex Variables +1109.6362 Rings and Algebras +1109.6481 Theory +1110.1060 Networking and Internet Architecture +1110.2053 Computer Vision and Pattern Recognition +1111.1316 Quantum Gases +1111.1759 +1111.5800 Materials Science +1112.4785 Strongly Correlated Electrons +1112.5446 Theory +1112.5535 Theory +1112.5570 Probability +1201.1092 Probability +1201.2208 Instrumentation and Methods for Astrophysics +1201.4454 Mesoscale and Nanoscale Physics +1201.4546 Cosmology and Nongalactic Astrophysics +1201.4981 Quantum Algebra +1201.5343 Theory +1201.5987 +1202.4773 +1202.5197 Analysis of PDEs +1202.5545 Mesoscale and Nanoscale Physics +1203.1605 Probability +1203.1681 Networking and Internet Architecture +1203.2555 Dynamical Systems +1203.2903 Fluid Dynamics +1203.5162 +1203.6881 Quantum Gases +1204.0296 Phenomenology +1204.1109 Cosmology and Nongalactic Astrophysics +1204.1853 +1204.2812 Strongly Correlated Electrons +1204.3057 Information Theory +1204.3556 Computational Finance +1204.3614 +1204.4378 Strongly Correlated Electrons +1204.5393 Combinatorics +1204.6409 Theory +1204.6570 Strongly Correlated Electrons +1205.0944 Algebraic Geometry +1205.1705 Phenomenology +1205.2435 +1205.4400 +1205.4404 Phenomenology +1205.4744 Solar and Stellar Astrophysics +1205.6052 +1205.6269 +1205.6867 Populations and Evolution +1205.7049 Disordered Systems and Neural Networks +1206.0082 Combinatorics +1206.2073 Strongly Correlated Electrons +1206.2573 Mesoscale and Nanoscale Physics +1206.2946 Category Theory +1206.4976 Information Theory +1206.5464 Materials Science +1206.5705 Optimization and Control +1206.5932 Soft Condensed Matter +1206.6261 Soft Condensed Matter +1206.6572 +1206.6581 Soft Condensed Matter +1206.6994 +1207.0205 Numerical Analysis +1207.0492 Cosmology and Nongalactic Astrophysics +1207.2096 +1207.3838 Probability +1207.4398 Analysis of PDEs +1207.5328 Computation and Language +1207.6273 Phenomenology +1208.1979 Superconductivity +1208.2349 Quantum Gases +1208.3750 Algebraic Geometry +1208.4895 Systems and Control +1208.5801 Learning +1208.5974 +1208.6106 Cryptography and Security +1208.6276 +1208.6290 Classical Physics +1208.6295 Mesoscale and Nanoscale Physics +1208.6301 Instrumentation and Methods for Astrophysics +1208.6307 Complex Variables +1208.6309 Geometric Topology +1208.6310 Neural and Evolutionary Computing +1208.6311 Earth and Planetary Astrophysics +1208.6313 Dynamical Systems +1208.6314 +1208.6323 General Topology +1208.6325 Algebraic Geometry +1208.6326 Cryptography and Security +1208.6328 Functional Analysis +1208.6333 Representation Theory +1208.6335 Computer Vision and Pattern Recognition +1208.6338 Learning +1208.6342 Formal Languages and Automata Theory +1208.6343 Numerical Analysis +1208.6344 Superconductivity +1208.6346 Functional Analysis +1208.6351 Dynamical Systems +1208.6357 Information Theory +1208.6360 Networking and Internet Architecture +1208.6363 Networking and Internet Architecture +1208.6372 Spectral Theory +1208.6376 Discrete Mathematics +1208.6378 Statistics Theory +1208.6379 Robotics +1208.6380 Numerical Analysis +1208.6381 Numerical Analysis +1208.6382 Biological Physics +1208.6385 Numerical Analysis +1208.6387 Numerical Analysis +1208.6388 Robotics +1208.6389 Multimedia +1208.6390 Operating Systems +1208.6392 Optimization and Control +1208.6398 Optimization and Control +1208.6404 Instrumentation and Detectors +1208.6407 Functional Analysis +1208.6410 Numerical Analysis +1208.6411 Classical Analysis and ODEs +1208.6412 Information Theory +1208.6413 Chaotic Dynamics +1208.6421 Multiagent Systems +1208.6427 Instrumentation and Methods for Astrophysics +1208.6429 Mesoscale and Nanoscale Physics +1208.6436 Experiment +1208.6437 Astrophysics of Galaxies +1208.6439 Phenomenology +1208.6440 Atomic Physics +1208.6450 +1208.6453 Fluid Dynamics +1208.6454 Social and Information Networks +1208.6457 +1208.6458 +1208.6462 Classical Analysis and ODEs +1208.6464 Information Theory +1208.6465 Distributed, Parallel, and Cluster Computing +1208.6467 Neurons and Cognition +1208.6471 Neurons and Cognition +1208.6475 Optimization and Control +1208.6481 Optimization and Control +1208.6488 Experiment +1208.6495 Numerical Analysis +1208.6497 Populations and Evolution +1208.6498 Strongly Correlated Electrons +1208.6500 General Physics +1208.6504 Experiment +1208.6507 Metric Geometry +1208.6508 Metric Geometry +1208.6517 Algebraic Geometry +1208.6518 Differential Geometry +1208.6522 High Energy Astrophysical Phenomena +1208.6523 Computer Vision and Pattern Recognition +1208.6529 +1208.6533 Number Theory +1208.6539 Experiment +1208.6542 Experiment +1208.6543 +1208.6554 Mesoscale and Nanoscale Physics +1208.6555 +1208.6558 Phenomenology +1208.6559 Probability +1208.6562 Analysis of PDEs +1208.6564 K-Theory and Homology +1208.6567 Experiment +1208.6570 Experiment +1208.6571 Functional Analysis +1208.6572 Numerical Analysis +1208.6573 Materials Science +1208.6575 Probability +1208.6577 Accelerator Physics +1208.6578 Statistics Theory +1208.6579 Cosmology and Nongalactic Astrophysics +1208.6581 Statistics Theory +1208.6589 Discrete Mathematics +1208.6590 Functional Analysis +1208.6591 Optimization and Control +hep-th/0406154 Theory +0710.1228 Theory +0801.0148 Classical Analysis and ODEs +0801.3487 Classical Analysis and ODEs +0802.0650 Differential Geometry +0805.3392 +0807.3677 Applications +0810.0568 Group Theory +0902.0666 +0903.0715 +0904.2829 Group Theory +0906.5050 Data Structures and Algorithms +0907.0305 Data Structures and Algorithms +0908.4181 +0909.0171 Logic in Computer Science +0911.1650 Mesoscale and Nanoscale Physics +1001.0659 +1001.3739 +1002.4011 Logic +1004.0400 Information Theory +1004.0466 Number Theory +1004.2821 Molecular Networks +1006.1362 +1007.1647 Physics Education +1009.2803 Logic +1009.3322 Optics +1009.5270 Mesoscale and Nanoscale Physics +1011.6491 Formal Languages and Automata Theory +1104.0172 Combinatorics +1104.1387 Phenomenology +1104.2132 Combinatorics +1104.2481 Statistical Mechanics +1104.2519 Combinatorics +1104.3175 Materials Science +1105.0446 Data Analysis, Statistics and Probability +1105.0844 Differential Geometry +1105.1795 +1105.2385 Cosmology and Nongalactic Astrophysics +1105.6137 Dynamical Systems +1106.1102 Solar and Stellar Astrophysics +1106.1576 Symplectic Geometry +1106.2283 Superconductivity +1106.2316 Quantum Gases +1106.2318 Mesoscale and Nanoscale Physics +1106.4725 Statistical Mechanics +1107.3301 +1107.3535 Phenomenology +1107.3825 Phenomenology +1107.4522 Mesoscale and Nanoscale Physics +1107.5413 +1108.0520 Materials Science +1109.0063 Strongly Correlated Electrons +1109.0577 Mesoscale and Nanoscale Physics +1109.1265 Information Theory +1109.4254 Theory +1109.4524 Medical Physics +1109.5617 Plasma Physics +1110.2067 Mesoscale and Nanoscale Physics +1110.2223 Theory +1110.3351 Fluid Dynamics +1110.3940 Quantum Gases +1110.5347 Strongly Correlated Electrons +1110.5756 +1110.6731 Theory +1110.6859 Phenomenology +1111.0857 Phenomenology +1111.2031 Quantum Gases +1111.2035 Strongly Correlated Electrons +1111.3026 Cosmology and Nongalactic Astrophysics +1111.3158 Phenomenology +1111.3295 Astrophysics of Galaxies +1111.4372 Computational Complexity +1111.5326 Probability +1111.5663 Atomic Physics +1111.6575 +1111.6871 Phenomenology +1112.0049 Statistical Mechanics +1112.1122 Quantum Gases +1112.1738 Materials Science +1112.2483 Information Theory +1112.2518 Experiment +1112.4207 +1112.5764 Theory +1112.6139 +1112.6193 Strongly Correlated Electrons +1201.1937 Operator Algebras +1201.2778 Differential Geometry +1201.3755 Phenomenology +1202.0412 +1202.0560 Cosmology and Nongalactic Astrophysics +1202.1111 Data Structures and Algorithms +1202.1271 +1202.1747 Physics and Society +1202.1820 Algebraic Geometry +1202.2308 Exactly Solvable and Integrable Systems +1202.2402 Analysis of PDEs +1202.2419 Systems and Control +1202.2460 Populations and Evolution +1202.2531 Logic +1202.2746 Popular Physics +1202.2943 +1202.3004 General Physics +1202.3134 +1202.3164 High Energy Astrophysical Phenomena +1202.3173 Data Structures and Algorithms +1202.3174 Logic in Computer Science +1202.3177 Data Structures and Algorithms +1202.3178 Statistical Mechanics +1202.3179 Databases +1202.3180 Optimization and Control +1202.3181 Analysis of PDEs +1202.3187 Mesoscale and Nanoscale Physics +1202.3188 Physics and Society +1202.3190 Combinatorics +1202.3200 Geometric Topology +1202.3201 +1202.3205 Data Structures and Algorithms +1202.3208 Data Structures and Algorithms +1202.3211 Analysis of PDEs +1202.3215 Databases +1202.3223 Probability +1202.3225 Analysis of PDEs +1202.3230 +1202.3235 Numerical Analysis +1202.3236 Algebraic Geometry +1202.3238 +1202.3245 Algebraic Topology +1202.3247 Programming Languages +1202.3249 Dynamical Systems +1202.3251 Probability +1202.3253 Databases +1202.3254 Networking and Internet Architecture +1202.3258 Robotics +1202.3261 Data Structures and Algorithms +1202.3264 Logic in Computer Science +1202.3265 Combinatorics +1202.3268 Logic +1202.3271 Logic +1202.3274 Algebraic Geometry +1202.3289 Differential Geometry +1202.3301 Mesoscale and Nanoscale Physics +1202.3302 Applications +1202.3303 Combinatorics +1202.3304 Logic +1202.3306 Statistical Mechanics +1202.3317 Logic in Computer Science +1202.3321 Cryptography and Security +1202.3322 +1202.3329 +1202.3330 Numerical Analysis +1202.3331 +1202.3332 Complex Variables +1202.3336 +1202.3338 +1202.3341 Experiment +1202.3343 Rings and Algebras +1202.3347 +1202.3352 High Energy Astrophysical Phenomena +1202.3353 Other Condensed Matter +1202.3354 +1202.3356 Astrophysics of Galaxies +1202.3357 Optics +1202.3361 Algebraic Geometry +1202.3362 Numerical Analysis +1202.3365 Statistical Mechanics +1202.3374 +1202.3386 Other Computer Science +1202.3395 History and Philosophy of Physics +1202.3398 Quantum Gases +1202.3401 Biological Physics +1202.3403 Astrophysics of Galaxies +1202.3404 Strongly Correlated Electrons +1202.3408 Number Theory +1202.3413 Algebraic Geometry +1202.3417 General Physics +1202.3418 Quantum Gases +1202.3422 Symplectic Geometry +math-ph/0505048 +0801.2522 Differential Geometry +0810.3254 Rings and Algebras +0904.2931 Statistics Theory +0906.4825 Operator Algebras +0906.5206 Mesoscale and Nanoscale Physics +0911.5265 Differential Geometry +0912.1883 Portfolio Management +0912.2190 Optimization and Control +0912.2195 Optimization and Control +1003.0864 Geometric Topology +1005.2261 Cosmology and Nongalactic Astrophysics +1005.4088 Analysis of PDEs +1007.2534 Artificial Intelligence +1007.3611 Data Structures and Algorithms +1008.3690 Differential Geometry +1009.3134 Distributed, Parallel, and Cluster Computing +1009.4084 Analysis of PDEs +1010.3304 Group Theory +1010.3305 Group Theory +1011.2542 Symplectic Geometry +1011.3685 Risk Management +1012.3768 Computation +1102.1707 Neurons and Cognition +1103.2680 Theory +1103.5357 Functional Analysis +1104.0577 Probability +1104.1678 Artificial Intelligence +1104.3869 Strongly Correlated Electrons +1105.2032 Biological Physics +1106.0971 Phenomenology +1106.1076 Computational Physics +1106.5672 Numerical Analysis +1106.6273 Materials Science +1107.4758 Mesoscale and Nanoscale Physics +1108.0935 Mesoscale and Nanoscale Physics +1108.3243 Mesoscale and Nanoscale Physics +1108.3255 Mesoscale and Nanoscale Physics +1108.5698 Superconductivity +1109.1115 Materials Science +1109.1334 Representation Theory +1109.1986 Statistics Theory +1109.2648 Molecular Networks +1109.3634 Superconductivity +1109.4188 Accelerator Physics +1109.4236 Fluid Dynamics +1109.4845 Mesoscale and Nanoscale Physics +1109.6765 Analysis of PDEs +1110.0018 +1110.0761 Strongly Correlated Electrons +1110.1076 Solar and Stellar Astrophysics +1110.2666 Strongly Correlated Electrons +1110.4538 +1110.5427 +1110.6131 Phenomenology +1110.6299 Strongly Correlated Electrons +1111.0773 Data Structures and Algorithms +1111.1775 Statistical Mechanics +1111.1971 +1111.3939 Statistical Mechanics +1111.5520 Accelerator Physics +1111.6544 Cosmology and Nongalactic Astrophysics +1111.6636 Pattern Formation and Solitons +1111.6919 Cosmology and Nongalactic Astrophysics +1112.0008 Cosmology and Nongalactic Astrophysics +1112.1399 Mesoscale and Nanoscale Physics +1112.3032 Phenomenology +1112.5173 Phenomenology +1201.0295 Formal Languages and Automata Theory +1201.1313 Number Theory +1201.2149 Combinatorics +1201.5651 Astrophysics of Galaxies +1201.5992 Combinatorics +1202.0383 Strongly Correlated Electrons +1202.1447 Subcellular Processes +1202.2232 +1202.3058 Phenomenology +1202.3918 +1202.3920 +1202.6190 General Physics +1202.6505 Subcellular Processes +1203.1299 Molecular Networks +1203.1448 Programming Languages +1203.1468 Human-Computer Interaction +1203.1495 Formal Languages and Automata Theory +1203.1513 Computer Vision and Pattern Recognition +1203.1610 +1203.1611 Analysis of PDEs +1203.1615 Superconductivity +1203.1633 Computational Complexity +1203.1634 Accelerator Physics +1203.1635 +1203.1638 Representation Theory +1203.1643 Information Theory +1203.1644 Cellular Automata and Lattice Gases +1203.1645 Algebraic Geometry +1203.1647 Social and Information Networks +1203.1648 Accelerator Physics +1203.1652 Number Theory +1203.1655 Analysis of PDEs +1203.1661 Instrumentation and Methods for Astrophysics +1203.1665 Algebraic Geometry +1203.1666 Statistics Theory +1203.1667 Functional Analysis +1203.1671 Combinatorics +1203.1676 Combinatorics +1203.1678 Combinatorics +1203.1683 Commutative Algebra +1203.1685 Computation and Language +1203.1687 Systems and Control +1203.1697 Soft Condensed Matter +1203.1702 +1203.1704 Algebraic Geometry +1203.1707 Optimization and Control +1203.1711 Information Theory +1203.1714 Information Theory +1203.1717 Software Engineering +1203.1718 Differential Geometry +1203.1723 Probability +1203.1725 Optics +1203.1728 Distributed, Parallel, and Cluster Computing +1203.1731 High Energy Astrophysical Phenomena +1203.1738 Analysis of PDEs +1203.1741 Analysis of PDEs +1203.1745 Systems and Control +1203.1746 Disordered Systems and Neural Networks +1203.1749 Cryptography and Security +1203.1751 Systems and Control +1203.1752 Materials Science +1203.1757 Networking and Internet Architecture +1203.1761 Metric Geometry +1203.1762 Phenomenology +1203.1763 General Topology +1203.1765 Computer Vision and Pattern Recognition +1203.1766 Combinatorics +1203.1770 Earth and Planetary Astrophysics +1203.1771 Analysis of PDEs +1203.1772 Astrophysics of Galaxies +1203.1777 Networking and Internet Architecture +1203.1778 Networking and Internet Architecture +1203.1780 Quantum Algebra +1203.1783 Commutative Algebra +1203.1786 Statistical Mechanics +1203.1787 Mesoscale and Nanoscale Physics +1203.1792 Computational Complexity +1203.1793 Information Retrieval +1203.1794 Statistical Mechanics +1203.1799 Emerging Technologies +1203.1801 Statistics Theory +1203.1805 +1203.1814 +1203.1818 Combinatorics +1203.1820 Computers and Society +1203.1823 Computer Vision and Pattern Recognition +1203.1828 Machine Learning +1203.1829 Methodology +1203.1831 Instrumentation and Methods for Astrophysics +1203.1835 Group Theory +1203.1836 Materials Science +1203.1837 Theory +1203.1844 +1203.1850 Information Theory +1203.1851 Atomic Physics +1203.1852 Materials Science +1203.1858 Computation and Language +1203.1862 Pattern Formation and Solitons +1203.1865 Strongly Correlated Electrons +1203.1867 Algebraic Geometry +1203.1868 Physics and Society +1203.1870 Numerical Analysis +1203.1872 Complex Variables +1203.1873 +1203.1875 Probability +1203.1878 Databases +1203.1882 Artificial Intelligence +1203.1889 Computation and Language +1203.1898 Accelerator Physics +1203.1900 Distributed, Parallel, and Cluster Computing +1203.1903 Geometric Topology +1203.1909 Subcellular Processes +1203.1911 Combinatorics +1203.1918 Phenomenology +cond-mat/0006310 +cond-mat/0011396 Disordered Systems and Neural Networks +math-ph/0608014 +nlin/0208012 Chaotic Dynamics +0711.3690 +1001.3270 +1002.1941 General Physics +1003.4716 Probability +1004.1783 Number Theory +1004.2612 Combinatorics +1006.3632 +1007.0391 Computational Complexity +1007.4617 Number Theory +1008.3772 +1010.4386 Commutative Algebra +1012.2069 Theory +1101.5045 +1103.2967 Combinatorics +1103.5273 Phenomenology +1104.2048 Instrumentation and Methods for Astrophysics +1104.3918 Quantum Algebra +1105.1229 Algebraic Geometry +1105.2812 Phenomenology +1105.3368 Discrete Mathematics +1105.5706 Functional Analysis +1106.1208 +1107.2976 +1108.0288 +1108.2885 History and Overview +1109.1138 Chaotic Dynamics +1110.0262 Probability +1110.1307 Statistical Mechanics +1110.2006 +1110.2699 Optics +1110.3057 +1110.4026 Operator Algebras +1110.4945 Phenomenology +1110.6788 Number Theory +1111.0508 Social and Information Networks +1111.1837 Representation Theory +1111.7183 Biomolecules +1112.3879 Geophysics +1112.4001 Soft Condensed Matter +1112.5257 Probability +1112.5506 Quantitative Methods +1201.0144 Materials Science +1201.2133 Solar and Stellar Astrophysics +1201.2232 +1201.3990 Quantum Algebra +1201.4278 Differential Geometry +1201.4795 Soft Condensed Matter +1201.5366 Theory +1201.5823 Probability +1202.0071 Commutative Algebra +1202.1341 Quantum Gases +1202.1646 Mesoscale and Nanoscale Physics +1202.5619 Data Structures and Algorithms +1202.5851 Phenomenology +1202.6225 +1203.0817 Probability +1203.0874 Probability +1203.1259 Quantum Gases +1203.3631 Phenomenology +1203.3773 +1203.4417 +1203.4999 Soft Condensed Matter +1203.6002 Analysis of PDEs +1204.0024 Superconductivity +1204.0273 Superconductivity +1204.1210 Cosmology and Nongalactic Astrophysics +1204.2032 Information Retrieval +1204.3697 +1204.5441 Number Theory +1204.6042 +1205.1971 Methodology +1205.2271 Differential Geometry +1205.2985 Mesoscale and Nanoscale Physics +1205.4307 High Energy Astrophysical Phenomena +1205.4948 Phenomenology +1205.5164 Networking and Internet Architecture +1205.6565 Analysis of PDEs +1205.6916 Logic +1206.1498 Statistical Mechanics +1206.2723 Theory +1206.2926 Cosmology and Nongalactic Astrophysics +1206.3830 +1206.4891 Soft Condensed Matter +1206.5051 Differential Geometry +1206.5429 Materials Science +1206.6048 +1206.6728 Statistical Mechanics +1207.0192 Theory +1207.0545 +1207.3019 Symbolic Computation +1207.3421 Number Theory +1207.3982 Dynamical Systems +1207.5026 Materials Science +1207.5685 Quantum Gases +1207.6818 Strongly Correlated Electrons +1207.7010 Combinatorics +1207.7336 Analysis of PDEs +1208.0182 High Energy Astrophysical Phenomena +1208.0568 Geometric Topology +1208.0909 Superconductivity +1208.2627 Mesoscale and Nanoscale Physics +1208.2727 Mesoscale and Nanoscale Physics +1208.2875 Phenomenology +1208.3434 Quantitative Methods +1208.5668 Fluid Dynamics +1208.5985 +1209.2427 Phenomenology +1209.4874 Representation Theory +1210.0704 Complex Variables +1210.2280 Mesoscale and Nanoscale Physics +1210.3393 Instrumentation and Methods for Astrophysics +1210.3404 Computer Vision and Pattern Recognition +1210.3430 Phenomenology +1210.3721 Analysis of PDEs +1210.3750 Solar and Stellar Astrophysics +1210.3794 +1210.3813 Analysis of PDEs +1210.4022 +1210.4062 Classical Analysis and ODEs +1210.4153 Numerical Analysis +1210.4155 Classical Physics +1210.4156 Instrumentation and Detectors +1210.4157 General Physics +1210.4174 Theory +1210.4176 Commutative Algebra +1210.4178 Complex Variables +1210.4180 Combinatorics +1210.4184 Learning +1210.4185 General Mathematics +1210.4188 Cosmology and Nongalactic Astrophysics +1210.4197 Algebraic Geometry +1210.4202 Algebraic Geometry +1210.4204 Number Theory +1210.4209 Fluid Dynamics +1210.4213 Numerical Analysis +1210.4214 Numerical Analysis +1210.4226 Theory +1210.4228 Lattice +1210.4229 Analysis of PDEs +1210.4231 Systems and Control +1210.4232 Combinatorics +1210.4233 Materials Science +1210.4235 Systems and Control +1210.4236 Number Theory +1210.4244 Combinatorics +1210.4245 Representation Theory +1210.4247 Information Theory +1210.4249 +1210.4251 Distributed, Parallel, and Cluster Computing +1210.4254 +1210.4255 Soft Condensed Matter +1210.4261 Functional Analysis +1210.4262 +1210.4271 Materials Science +1210.4272 Optics +1210.4274 Chemical Physics +1210.4276 Machine Learning +1210.4280 Solar and Stellar Astrophysics +1210.4286 Solar and Stellar Astrophysics +1210.4290 Information Theory +1210.4292 Complex Variables +1210.4293 Information Theory +1210.4309 Atomic Physics +1210.4311 +1210.4313 Genomics +1210.4322 Quantitative Methods +1210.4324 Symplectic Geometry +1210.4325 Functional Analysis +1210.4331 High Energy Astrophysical Phenomena +1210.4334 Metric Geometry +1210.4336 Algebraic Geometry +1210.4339 Numerical Analysis +1210.4340 Functional Analysis +1210.4341 Fluid Dynamics +1210.4346 Functional Analysis +1210.4347 Machine Learning +1210.4349 Mesoscale and Nanoscale Physics +1210.4353 +1210.4360 Solar and Stellar Astrophysics +1210.4363 Analysis of PDEs +1210.4370 Combinatorics +1210.4371 Earth and Planetary Astrophysics +1210.4372 Classical Physics +1210.4373 Astrophysics of Galaxies +1210.4374 Materials Science +1210.4376 Optics +1210.4377 Methodology +1210.4383 Multiagent Systems +1210.4388 Theory +1210.4389 Astrophysics of Galaxies +1210.4391 Functional Analysis +1210.4393 Solar and Stellar Astrophysics +1210.4395 Rings and Algebras +1210.4397 +1210.4400 Distributed, Parallel, and Cluster Computing +1210.4408 Computational Complexity +1210.4416 Systems and Control +1210.4417 Probability +1210.4419 Materials Science +1210.4421 Category Theory +1210.4425 Fluid Dynamics +1210.4426 Biological Physics +1210.4428 High Energy Astrophysical Phenomena +1210.4432 Soft Condensed Matter +1210.4433 Analysis of PDEs +1210.4435 Materials Science +1210.4436 Differential Geometry +1210.4439 Cosmology and Nongalactic Astrophysics +1210.4440 Analysis of PDEs +1210.4441 Plasma Physics +1210.4444 Dynamical Systems +1210.4449 Number Theory +1210.4454 Accelerator Physics +1210.4455 Optics +1210.4463 Optics +1210.4465 Algebraic Geometry +1210.4468 Probability +1210.4469 Populations and Evolution +1210.4473 General Physics +1210.4475 Solar and Stellar Astrophysics +1210.4481 Computer Vision and Pattern Recognition +1210.4484 Chaotic Dynamics +1210.4493 Number Theory +1210.4494 Number Theory +1210.4500 Populations and Evolution +1210.4505 Information Theory +1210.4506 Mesoscale and Nanoscale Physics +1210.4507 Information Theory +1210.4508 Experiment +1210.4514 +1210.4517 Social and Information Networks +1210.4522 Combinatorics +1210.4524 Methodology +1210.4529 Phenomenology +1210.4532 Optimization and Control +1210.4541 +1210.4542 Functional Analysis +1210.4543 Geometric Topology +astro-ph/0407570 +cond-mat/0308493 +hep-ph/0605110 Phenomenology +hep-th/9907067 Theory +math-ph/0701042 +math/0608506 Complex Variables +quant-ph/0011102 +0804.0497 Pattern Formation and Solitons +0807.1983 +0811.3455 Pattern Formation and Solitons +0905.2694 Pattern Formation and Solitons +0908.2514 Statistics Theory +0910.5758 Pattern Formation and Solitons +0911.3308 Quantum Gases +1001.5379 Geometric Topology +1003.1568 Algebraic Geometry +1003.5937 Category Theory +1005.3789 Quantum Gases +1006.2016 Cosmology and Nongalactic Astrophysics +1007.1930 Algebraic Topology +1007.3098 Machine Learning +1008.3601 Materials Science +1010.3677 Number Theory +1011.1644 Soft Condensed Matter +1012.2864 +1101.4619 Theory +1102.0296 Pattern Formation and Solitons +1104.4359 Quantum Gases +1104.5481 Theory +1105.5157 Probability +1105.5201 Probability +1105.6012 Materials Science +1106.5288 Group Theory +1106.5764 Quantum Gases +1106.5798 Strongly Correlated Electrons +1107.0337 Statistical Mechanics +1108.1537 Strongly Correlated Electrons +1108.6012 Dynamical Systems +1109.0016 Theory +1109.4886 Algebraic Geometry +1109.6024 Statistical Mechanics +1110.4191 High Energy Astrophysical Phenomena +1110.4737 +1110.6415 Quantum Gases +1111.1937 Solar and Stellar Astrophysics +1111.2217 Information Theory +1111.3569 High Energy Astrophysical Phenomena +1111.4016 +1111.4437 Mesoscale and Nanoscale Physics +1111.5544 High Energy Astrophysical Phenomena +1111.5566 Statistical Mechanics +1111.6311 +1111.6511 +1111.7194 +1112.0230 Commutative Algebra +1112.1029 Quantum Gases +1112.1660 +1112.2678 High Energy Astrophysical Phenomena +1112.3238 +1112.3556 Algebraic Topology +1112.4101 Strongly Correlated Electrons +1112.4314 Functional Analysis +1112.5078 Mesoscale and Nanoscale Physics +1112.6013 Quantum Gases +1201.0828 Materials Science +1201.3817 Strongly Correlated Electrons +1201.4063 Chaotic Dynamics +1201.4498 Disordered Systems and Neural Networks +1201.5062 Materials Science +1201.6537 +1201.6581 Fluid Dynamics +1202.0268 Instrumentation and Methods for Astrophysics +1202.0497 Strongly Correlated Electrons +1202.1850 Mesoscale and Nanoscale Physics +1202.2596 Superconductivity +1202.2823 Atomic Physics +1202.3022 Cosmology and Nongalactic Astrophysics +1202.3095 High Energy Astrophysical Phenomena +1202.4696 Probability +1202.4782 Quantum Gases +1202.5766 +1203.0245 Differential Geometry +1203.1090 Phenomenology +1203.5812 Differential Geometry +1203.6364 Genomics +1204.0092 Cosmology and Nongalactic Astrophysics +1204.0132 Representation Theory +1204.2563 Materials Science +1204.2573 Materials Science +1204.2917 Differential Geometry +1204.3468 Metric Geometry +1204.3501 Probability +1204.4748 Experiment +1204.4963 Combinatorics +1205.0621 Commutative Algebra +1205.1553 Cosmology and Nongalactic Astrophysics +1205.1583 Analysis of PDEs +1205.1876 Atomic Physics +1205.1949 Atomic Physics +1205.1963 Instrumentation and Methods for Astrophysics +1205.2017 Representation Theory +1205.2035 Superconductivity +1205.2097 Combinatorics +1205.2101 +1205.2103 Classical Analysis and ODEs +1205.2106 Methodology +1205.2108 Optimization and Control +1205.2109 Applications +1205.2116 Rings and Algebras +1205.2121 Quantum Gases +1205.2124 Numerical Analysis +1205.2127 +1205.2128 Numerical Analysis +1205.2133 Classical Analysis and ODEs +1205.2141 Information Theory +1205.2142 +1205.2144 Combinatorics +1205.2146 Accelerator Physics +1205.2152 Combinatorics +1205.2153 Hardware Architecture +1205.2155 Number Theory +1205.2156 Functional Analysis +1205.2159 Instrumentation and Methods for Astrophysics +1205.2161 Number Theory +1205.2164 Computer Vision and Pattern Recognition +1205.2167 Numerical Analysis +1205.2168 Optimization and Control +1205.2173 High Energy Astrophysical Phenomena +1205.2175 Experiment +1205.2176 Mesoscale and Nanoscale Physics +1205.2177 Combinatorics +1205.2184 Probability +1205.2185 Solar and Stellar Astrophysics +1205.2188 Operator Algebras +1205.2194 Operator Algebras +1205.2199 +1205.2201 Experiment +1205.2202 Functional Analysis +1205.2209 Experiment +1205.2218 +1205.2221 +1205.2227 Mesoscale and Nanoscale Physics +1205.2230 Number Theory +1205.2232 Materials Science +1205.2236 Algebraic Topology +1205.2238 High Energy Astrophysical Phenomena +1205.2246 +1205.2251 Physics and Society +1205.2256 Geometric Topology +1205.2259 Solar and Stellar Astrophysics +1205.2263 Other Computer Science +1205.2268 Classical Analysis and ODEs +1205.2269 Networking and Internet Architecture +1205.2286 Optimization and Control +1205.2289 Mesoscale and Nanoscale Physics +1205.2292 Databases +1205.2297 Cosmology and Nongalactic Astrophysics +1205.2304 Optimization and Control +1205.2308 Astrophysics of Galaxies +1205.2311 Geometric Topology +1205.2312 +1205.2320 Databases +1205.2331 Combinatorics +1205.2335 Classical Analysis and ODEs +1205.2336 Materials Science +1205.2340 Cryptography and Security +1205.2343 Number Theory +1205.2345 Computer Vision and Pattern Recognition +1205.2348 +1205.2349 Analysis of PDEs +1205.2350 Networking and Internet Architecture +1205.2352 Networking and Internet Architecture +1205.2355 Networking and Internet Architecture +1205.2357 Networking and Internet Architecture +1205.2358 Biomolecules +1205.2360 +1205.2362 Representation Theory +1205.2364 Strongly Correlated Electrons +cond-mat/0312176 +cond-mat/0604147 Other Condensed Matter +gr-qc/0604002 +math/0606369 Geometric Topology +0707.4219 Differential Geometry +0709.3865 Disordered Systems and Neural Networks +0711.1915 Disordered Systems and Neural Networks +0804.4815 Distributed, Parallel, and Cluster Computing +0805.0441 Number Theory +0807.3288 Dynamical Systems +0809.1489 Distributed, Parallel, and Cluster Computing +0812.0211 Disordered Systems and Neural Networks +0812.4893 Data Structures and Algorithms +0901.4526 Dynamical Systems +0902.4060 Computation and Language +0903.3937 +0903.5079 Probability +0908.2146 +0909.4265 Mesoscale and Nanoscale Physics +0911.0966 Mesoscale and Nanoscale Physics +1001.1817 Statistics Theory +1001.3664 Group Theory +1001.4836 High Energy Astrophysical Phenomena +1003.1334 Mesoscale and Nanoscale Physics +1003.2070 Quantum Algebra +1003.3922 Probability +1003.5732 Phenomenology +1004.1593 Other Condensed Matter +1006.3365 Group Theory +1007.1530 Materials Science +1007.3729 General Physics +1007.4361 Pricing of Securities +1007.4366 Pricing of Securities +1008.1047 Information Theory +1009.5646 Commutative Algebra +1010.5203 Pricing of Securities +1011.0050 Superconductivity +1011.1279 Computer Science and Game Theory +1011.5011 Phenomenology +1012.1797 Algebraic Geometry +1012.3777 Algebraic Geometry +1012.3788 Information Theory +1012.5082 Materials Science +1101.3019 Group Theory +1101.3156 Differential Geometry +1101.4161 Group Theory +1102.4233 Soft Condensed Matter +1103.4886 Theory +1103.5834 Statistical Mechanics +1103.6248 Mathematical Software +1104.4146 Instrumentation and Detectors +1104.4541 Solar and Stellar Astrophysics +1105.1799 Representation Theory +1105.3463 Metric Geometry +1105.5344 Physics and Society +1106.2054 +1106.3359 Materials Science +1107.0280 Soft Condensed Matter +1107.2099 +1107.3469 Materials Science +1108.1363 +1108.1902 Number Theory +1108.2800 Superconductivity +1108.4483 Strongly Correlated Electrons +1108.5641 Group Theory +1109.2302 Fluid Dynamics +1109.3056 Distributed, Parallel, and Cluster Computing +1109.3196 Cosmology and Nongalactic Astrophysics +1109.3489 Theory +1109.4688 +1109.6013 Theory +1109.6474 Differential Geometry +1109.6492 Probability +1110.0686 +1110.1657 Theory +1110.1762 Disordered Systems and Neural Networks +1110.2770 +1110.2788 Quantum Gases +1110.3277 Plasma Physics +1110.3420 Mesoscale and Nanoscale Physics +1110.4143 Mesoscale and Nanoscale Physics +1110.4663 +1110.4899 Dynamical Systems +1110.5369 Combinatorics +1110.5948 Spectral Theory +1110.6119 Instrumentation and Detectors +1110.6354 Materials Science +1111.0880 Theory +1111.1645 Number Theory +1111.1789 Phenomenology +1111.2276 +1111.3397 Disordered Systems and Neural Networks +1111.3934 Artificial Intelligence +1111.4149 Experiment +1111.4911 Other Condensed Matter +1111.6290 Theory +1111.6419 Dynamical Systems +1111.6830 Number Theory +1112.0517 +1112.0519 Geometric Topology +1112.0532 Theory +1112.0554 Quantum Gases +1112.0710 Analysis of PDEs +1112.0869 Mesoscale and Nanoscale Physics +1112.0972 Quantum Gases +1112.1226 Probability +1112.2908 Instrumentation and Methods for Astrophysics +1112.4170 Atomic Physics +1112.4600 Phenomenology +1112.5040 Quantum Gases +1112.5342 Theory +1112.5503 Chaotic Dynamics +1112.5781 Theory +1112.6427 Algebraic Geometry +1201.1196 +1201.1804 Data Analysis, Statistics and Probability +1201.2418 Atmospheric and Oceanic Physics +1201.3039 Commutative Algebra +1201.3187 Cosmology and Nongalactic Astrophysics +1201.3244 Chaotic Dynamics +1201.3512 Strongly Correlated Electrons +1201.3877 +1201.3915 Information Theory +1201.4441 +1201.6117 Information Theory +1202.0103 Experiment +1202.0213 Disordered Systems and Neural Networks +1202.0289 Mesoscale and Nanoscale Physics +1202.0362 Number Theory +1202.0595 Atomic Physics +1202.1254 Information Theory +1202.1778 +1202.1793 +1202.2206 Instrumentation and Detectors +1202.2496 Mesoscale and Nanoscale Physics +1202.2611 Combinatorics +1202.2722 Strongly Correlated Electrons +1202.3221 Combinatorics +1202.3382 Mesoscale and Nanoscale Physics +1202.3656 Strongly Correlated Electrons +1202.4023 Strongly Correlated Electrons +1202.4041 Information Theory +1202.4193 Logic in Computer Science +1202.4550 Subcellular Processes +1202.5549 General Physics +1203.0560 Classical Analysis and ODEs +1203.1104 Spectral Theory +1203.1504 +1203.1961 Optimization and Control +1203.2061 Materials Science +1203.2483 Statistical Mechanics +1203.2494 Probability +1203.2729 Optics +1203.2754 Representation Theory +1203.2985 Data Analysis, Statistics and Probability +1203.3000 Representation Theory +1203.3001 Representation Theory +1203.3778 Dynamical Systems +1203.4408 Instrumentation and Methods for Astrophysics +1203.4487 Information Retrieval +1203.4660 Materials Science +1203.4899 Representation Theory +1203.5751 Representation Theory +1204.0143 +1204.0358 Theory +1204.0536 Experiment +1204.1838 +1204.2093 Statistical Mechanics +1204.2492 +1204.2499 High Energy Astrophysical Phenomena +1204.2862 Strongly Correlated Electrons +1204.3037 Popular Physics +1204.3618 Computer Vision and Pattern Recognition +1204.4117 Numerical Analysis +1204.5431 Computer Vision and Pattern Recognition +1204.6150 Mesoscale and Nanoscale Physics +1205.0274 Statistical Mechanics +1205.0827 +1205.0929 Group Theory +1205.1346 Mesoscale and Nanoscale Physics +1205.1749 Differential Geometry +1205.1787 History and Philosophy of Physics +1205.1868 Statistics Theory +1205.2165 Materials Science +1205.2701 Differential Geometry +1205.2707 Materials Science +1205.2710 Analysis of PDEs +1205.2711 Computers and Society +1205.2712 Materials Science +1205.2716 Astrophysics of Galaxies +1205.2718 Combinatorics +1205.2719 Mesoscale and Nanoscale Physics +1205.2720 General Physics +1205.2721 Quantitative Methods +1205.2724 Analysis of PDEs +1205.2726 Databases +1205.2738 Cryptography and Security +1205.2740 Computer Science and Game Theory +1205.2743 Dynamical Systems +1205.2744 Materials Science +1205.2745 Materials Science +1205.2746 Computation +1205.2748 Other Computer Science +1205.2750 Numerical Analysis +1205.2751 Numerical Analysis +1205.2752 Phenomenology +1205.2754 Soft Condensed Matter +1205.2755 Soft Condensed Matter +1205.2756 Soft Condensed Matter +1205.2761 +1205.2762 Networking and Internet Architecture +1205.2768 Number Theory +1205.2770 Mesoscale and Nanoscale Physics +1205.2771 Representation Theory +1205.2773 Number Theory +1205.2777 Methodology +1205.2779 Rings and Algebras +1205.2783 Geometric Topology +1205.2785 Astrophysics of Galaxies +1205.2786 Experiment +1205.2797 Neural and Evolutionary Computing +1205.2798 Networking and Internet Architecture +1205.2800 Multimedia +1205.2801 +1205.2804 Commutative Algebra +1205.2805 Numerical Analysis +1205.2809 Numerical Analysis +1205.2814 Solar and Stellar Astrophysics +1205.2816 Methodology +1205.2820 Materials Science +1205.2821 Data Analysis, Statistics and Probability +1205.2826 Functional Analysis +1205.2827 Mesoscale and Nanoscale Physics +1205.2829 Superconductivity +1205.2830 Superconductivity +1205.2832 Superconductivity +1205.2841 Formal Languages and Automata Theory +1205.2843 Superconductivity +1205.2847 +1205.2849 +1205.2850 Information Theory +1205.2854 Number Theory +1205.2856 Combinatorics +1205.2858 Combinatorics +1205.2859 Pattern Formation and Solitons +1205.2863 General Finance +1205.2867 Biological Physics +1205.2868 Differential Geometry +1205.2872 General Finance +1205.2876 Information Theory +1205.2879 Logic +1205.2880 Databases +1205.2888 Data Structures and Algorithms +1205.2889 Databases +1205.2891 Information Retrieval +1205.2899 Classical Analysis and ODEs +1205.2904 Number Theory +1205.2907 Experiment +1205.2908 +1205.2910 Rings and Algebras +1205.2911 Methodology +1205.2915 Statistical Finance +1205.2917 Algebraic Geometry +1205.2919 Populations and Evolution +1205.2922 General Physics +1205.2923 Combinatorics +1205.2927 Mathematical Software +1205.2930 Information Retrieval +1205.2933 Lattice +1205.2938 Symplectic Geometry +1205.2939 Dynamical Systems +1205.2947 Statistics Theory +1205.2948 Statistics Theory +1205.2953 Theory +1205.2958 Information Retrieval +1205.2959 Solar and Stellar Astrophysics +1205.2960 Soft Condensed Matter +1205.2969 Plasma Physics +1205.2977 Differential Geometry +1205.2978 Differential Geometry +1205.2980 Numerical Analysis +1205.2983 Commutative Algebra +1205.2986 Rings and Algebras +1205.2989 Experiment +1205.2990 Dynamical Systems +1205.2993 Rings and Algebras +1205.2995 Numerical Analysis +1205.3001 Numerical Analysis +1205.3003 Quantum Algebra +1205.3009 Methodology +1205.3010 Classical Analysis and ODEs +1205.3011 Representation Theory +1205.3012 Atmospheric and Oceanic Physics +1205.3014 Numerical Analysis +1205.3021 Cryptography and Security +1205.3022 Numerical Analysis +1205.3027 Numerical Analysis +1205.3031 Information Retrieval +1205.3032 Chemical Physics +1205.3038 High Energy Astrophysical Phenomena +1205.3039 Numerical Analysis +1205.3045 Strongly Correlated Electrons +1205.3051 Trading and Market Microstructure +1205.3052 Phenomenology +1205.3056 Instrumentation and Methods for Astrophysics +1205.3059 Optimization and Control +1205.3062 Cryptography and Security +1205.3063 Quantum Gases +1205.3071 Analysis of PDEs +1205.3072 Pattern Formation and Solitons +1205.3076 +1205.3077 Computer Science and Game Theory +1205.3080 Probability +1205.3081 Numerical Analysis +1205.3082 Accelerator Physics +1205.3085 Numerical Analysis +1205.3086 Number Theory +1205.3089 High Energy Astrophysical Phenomena +1205.3096 Numerical Analysis +1205.3100 Phenomenology +1205.3115 Plasma Physics +1205.3120 Plasma Physics +1205.3121 Algebraic Topology +1205.3122 General Topology +1205.3125 Networking and Internet Architecture +1205.3134 +1205.3142 Experiment +1205.3146 Atomic Physics +1205.3148 Commutative Algebra +1205.3152 Commutative Algebra +1205.3155 Materials Science +cond-mat/0605732 Mesoscale and Nanoscale Physics +gr-qc/0608120 +physics/0403002 General Physics +physics/0611219 Data Analysis, Statistics and Probability +physics/0701199 Data Analysis, Statistics and Probability +0705.0524 Algebraic Geometry +0806.1243 Algebraic Geometry +0811.0113 Physics and Society +0811.3500 Combinatorics +0904.1467 Soft Condensed Matter +0907.2538 General Physics +0907.3681 Group Theory +0908.1808 Group Theory +0909.1343 Group Theory +0911.2221 Algebraic Geometry +0912.2948 Symplectic Geometry +1001.4815 Phenomenology +1003.1732 Theory +1004.0166 Lattice +1004.0361 Algebraic Geometry +1004.2963 Mesoscale and Nanoscale Physics +1005.0366 Methodology +1007.0842 Numerical Analysis +1008.0770 Logic in Computer Science +1009.0332 Geometric Topology +1012.0071 +1101.3005 Group Theory +1102.4231 Combinatorics +1102.5473 Mesoscale and Nanoscale Physics +1103.2085 Algebraic Geometry +1104.0316 Spectral Theory +1105.0319 Information Theory +1106.2649 Digital Libraries +1106.4855 Functional Analysis +1107.3867 Chaotic Dynamics +1108.0825 Analysis of PDEs +1108.3377 +1109.0275 Strongly Correlated Electrons +1109.4349 Group Theory +1110.0160 Probability +1110.0712 Classical Analysis and ODEs +1110.0915 Analysis of PDEs +1110.5490 Phenomenology +1111.0930 +1111.5018 Phenomenology +1112.4242 +1112.5456 +1112.6014 Combinatorics +1201.5332 Quantum Gases +1201.6681 Information Theory +1202.4648 General Topology +1202.4654 Analysis of PDEs +1202.4983 Analysis of PDEs +1202.5124 Chaotic Dynamics +1203.1465 Algebraic Geometry +1203.2603 +1203.2795 Strongly Correlated Electrons +1204.3219 Strongly Correlated Electrons +1204.5562 Mesoscale and Nanoscale Physics +1204.6084 Strongly Correlated Electrons +1204.6199 Materials Science +1204.6439 Dynamical Systems +1205.0364 Cosmology and Nongalactic Astrophysics +1205.1614 Theory +1205.3497 Mesoscale and Nanoscale Physics +1205.4485 Superconductivity +1206.2200 Mesoscale and Nanoscale Physics +1206.2305 Portfolio Management +1206.4022 Operator Algebras +1206.5041 Superconductivity +1206.6260 Superconductivity +1206.6689 Strongly Correlated Electrons +1207.2272 Optics +1207.3015 Mesoscale and Nanoscale Physics +1207.3148 Optics +1207.3297 Theory +1207.3307 +1207.4272 Phenomenology +1207.4685 General Physics +1207.5428 Superconductivity +1207.6218 Cosmology and Nongalactic Astrophysics +1207.6662 Phenomenology +1207.7005 +1208.0003 Astrophysics of Galaxies +1208.0301 +1208.1305 Phenomenology +1208.1635 Materials Science +1208.2433 Representation Theory +1208.2475 +1208.2536 +1208.2565 +1208.3123 Mesoscale and Nanoscale Physics +1208.5720 Experiment +1208.6070 Networking and Internet Architecture +1209.0620 Mesoscale and Nanoscale Physics +1209.1627 Superconductivity +1209.1650 Superconductivity +1209.1839 General Topology +1209.1957 Analysis of PDEs +1209.2001 Phenomenology +1209.2521 Physics Education +1209.3066 General Physics +1209.3437 Theory +1209.3654 Statistical Mechanics +1209.3655 +1209.5349 +1209.5386 Cosmology and Nongalactic Astrophysics +1210.2722 Theory +1210.2786 Statistical Mechanics +1210.2925 General Physics +1210.3942 Functional Analysis +1210.4489 Number Theory +1210.5246 Instrumentation and Methods for Astrophysics +1210.5432 Classical Physics +1210.5744 Mesoscale and Nanoscale Physics +1210.6639 Geometric Topology +1210.7120 Solar and Stellar Astrophysics +1210.7292 Numerical Analysis +1211.0095 Materials Science +1211.0646 Quantitative Methods +1211.1854 Classical Physics +1211.2360 +1211.2679 Applications +1211.2937 Group Theory +1211.3315 +1211.3540 +1211.3548 Lattice +1211.3572 Quantum Algebra +1211.3823 Distributed, Parallel, and Cluster Computing +1211.3950 Optimization and Control +1211.4076 Materials Science +1211.4157 Trading and Market Microstructure +1211.4220 Disordered Systems and Neural Networks +1211.4290 Distributed, Parallel, and Cluster Computing +1211.4407 General Physics +1211.4444 Combinatorics +1211.4493 Cryptography and Security +1211.4571 Number Theory +1211.4572 Number Theory +1211.4578 Phenomenology +1211.4583 Cosmology and Nongalactic Astrophysics +1211.4588 Metric Geometry +1211.4590 Cosmology and Nongalactic Astrophysics +1211.4591 Computer Vision and Pattern Recognition +1211.4599 Classical Analysis and ODEs +1211.4603 +1211.4604 Optimization and Control +1211.4605 Quantum Algebra +1211.4607 Numerical Analysis +1211.4613 Probability +1211.4617 Dynamical Systems +1211.4618 Combinatorics +1211.4619 Analysis of PDEs +1211.4622 Soft Condensed Matter +1211.4623 Optimization and Control +1211.4624 Algebraic Geometry +1211.4625 Optimization and Control +1211.4632 Symplectic Geometry +1211.4633 Cosmology and Nongalactic Astrophysics +1211.4638 Representation Theory +1211.4639 +1211.4640 Classical Analysis and ODEs +1211.4641 Discrete Mathematics +1211.4642 Discrete Mathematics +1211.4647 Commutative Algebra +1211.4649 Information Theory +1211.4654 Computational Engineering, Finance, and Science +1211.4658 Computer Vision and Pattern Recognition +1211.4659 Superconductivity +1211.4660 Networking and Internet Architecture +1211.4664 Optimization and Control +1211.4665 Information Theory +1211.4670 Optimization and Control +1211.4673 Number Theory +1211.4674 Information Theory +1211.4675 Methodology +1211.4683 Multimedia +1211.4684 Solar and Stellar Astrophysics +1211.4695 Networking and Internet Architecture +1211.4696 Symplectic Geometry +1211.4704 Cryptography and Security +1211.4705 Other Computer Science +1211.4706 Machine Learning +1211.4709 Artificial Intelligence +1211.4714 Instrumentation and Detectors +1211.4719 +1211.4720 Software Engineering +1211.4723 Cryptography and Security +1211.4724 Materials Science +1211.4725 Dynamical Systems +1211.4731 Phenomenology +1211.4732 Statistics Theory +1211.4733 Number Theory +1211.4734 Astrophysics of Galaxies +1211.4738 +1211.4739 Materials Science +1211.4740 Solar and Stellar Astrophysics +1211.4742 Statistics Theory +1211.4753 Machine Learning +1211.4758 +1211.4760 +1211.4765 Logic +1211.4766 Neurons and Cognition +1211.4767 Multimedia +1211.4769 Optics +1211.4770 Probability +1211.4771 Computer Vision and Pattern Recognition +1211.4779 Logic in Computer Science +1211.4780 Mesoscale and Nanoscale Physics +1211.4781 Optics +1211.4787 Geometric Topology +1211.4790 Spectral Theory +1211.4797 Algebraic Topology +1211.4798 Machine Learning +1211.4807 +1211.4808 Symplectic Geometry +1211.4811 Probability +1211.4812 Cryptography and Security +1211.4815 +1211.4816 Probability +1211.4819 Analysis of PDEs +1211.4824 Geometric Topology +1211.4832 Physics Education +1211.4834 Astrophysics of Galaxies +1211.4839 Operating Systems +1211.4840 Operating Systems +1211.4854 Functional Analysis +1211.4855 Operator Algebras +1211.4859 Theory +1211.4860 Computer Vision and Pattern Recognition +math-ph/0211011 +math/0501196 Algebraic Geometry +math/0509647 Differential Geometry +physics/0311104 General Physics +0704.3819 Representation Theory +0806.0369 Theory +0806.0840 Data Structures and Algorithms +0807.0451 Biological Physics +0905.4826 Materials Science +0906.0709 Statistical Mechanics +0906.2014 Representation Theory +0907.1693 Strongly Correlated Electrons +0907.3743 Probability +0908.3033 Strongly Correlated Electrons +0908.3752 Differential Geometry +0910.5226 Metric Geometry +1002.0674 Representation Theory +1003.3301 Metric Geometry +1007.2158 Materials Science +1009.4609 Cellular Automata and Lattice Gases +1010.2321 Representation Theory +1010.6192 +1010.6299 +1011.0036 Formal Languages and Automata Theory +1012.0291 Differential Geometry +1012.1730 Phenomenology +1101.1811 Strongly Correlated Electrons +1103.2606 Atomic Physics +1103.4560 General Mathematics +1104.3060 Classical Analysis and ODEs +1104.3318 Statistics Theory +1106.1207 Systems and Control +1106.1211 Systems and Control +1106.1220 Systems and Control +1106.1224 Systems and Control +1106.1895 General Mathematics +1106.5513 Disordered Systems and Neural Networks +1107.0408 Algebraic Geometry +1107.4335 Superconductivity +1107.4503 Commutative Algebra +1107.4878 Algebraic Geometry +1107.4915 Algebraic Geometry +1108.1515 Differential Geometry +1108.1908 +1109.1320 Optimization and Control +1109.2688 Combinatorics +1109.6631 Phenomenology +1110.1770 Classical Analysis and ODEs +1110.4787 Phenomenology +1111.0900 Quantum Gases +1111.1863 Commutative Algebra +1111.4817 Phenomenology +1111.6434 +1111.6752 Fluid Dynamics +1112.1022 Phenomenology +1112.4068 Disordered Systems and Neural Networks +1112.4437 +1201.0832 Mesoscale and Nanoscale Physics +1201.4310 Quantum Gases +1201.5052 Differential Geometry +1202.0369 Strongly Correlated Electrons +1202.2474 Cosmology and Nongalactic Astrophysics +1202.2497 Algebraic Geometry +1202.2608 Materials Science +1202.6391 Chaotic Dynamics +1203.0671 Algebraic Geometry +1203.0789 Complex Variables +1203.0820 Cosmology and Nongalactic Astrophysics +1203.3017 Adaptation and Self-Organizing Systems +1203.5209 +1203.5548 Operator Algebras +1204.0774 +1204.1015 Optics +1204.1189 Solar and Stellar Astrophysics +1204.1564 Neurons and Cognition +1204.2117 Quantum Algebra +1204.2446 Combinatorics +1204.3877 Theory +1204.4220 +1204.4482 Theory +1204.4536 Solar and Stellar Astrophysics +1204.4985 Fluid Dynamics +1205.4595 +1205.4851 Classical Analysis and ODEs +1205.5961 Numerical Analysis +1205.5965 +1205.6297 Fluid Dynamics +1205.6882 Analysis of PDEs +1206.0368 Differential Geometry +1206.0421 +1206.2065 Phenomenology +1206.2273 Complex Variables +1206.2754 Phenomenology +1206.2826 Statistical Mechanics +1206.3184 +1206.5054 Networking and Internet Architecture +1206.5757 Phenomenology +1206.6996 Fluid Dynamics +1206.7010 Quantum Gases +1207.0508 Cosmology and Nongalactic Astrophysics +1207.0716 +1207.0918 Differential Geometry +1207.1640 Phenomenology +1207.1876 Combinatorics +1207.3440 Quantum Gases +1207.5607 Phenomenology +1207.5801 Theory +1207.6930 Number Theory +1207.7048 Solar and Stellar Astrophysics +1208.0630 +1208.0774 Materials Science +1208.1125 Metric Geometry +1208.2398 Operator Algebras +1208.2590 Experiment +1208.3396 +1208.3618 +1208.3645 +1208.3701 Strongly Correlated Electrons +1208.3717 Chemical Physics +1208.3927 +1208.3998 Plasma Physics +1208.4288 Phenomenology +1208.4291 Atomic Physics +1208.4314 Representation Theory +1208.4802 Differential Geometry +1208.5044 Metric Geometry +1208.6052 Mesoscale and Nanoscale Physics +1208.6586 +1209.0781 Physics and Society +1209.0887 Quantum Gases +1209.1423 Physics and Society +1209.1655 Superconductivity +1209.2205 Representation Theory +1209.3384 Cosmology and Nongalactic Astrophysics +1209.3626 Superconductivity +1209.3914 Artificial Intelligence +1209.4960 Theory +1209.4989 +1209.5233 +1209.5470 Artificial Intelligence +1209.5698 Information Theory +1209.6413 Numerical Analysis +1210.0722 +1210.1421 Quantum Algebra +1210.1708 Computer Science and Game Theory +1210.2647 Solar and Stellar Astrophysics +1210.3230 Quantum Gases +1210.3279 +1210.4159 Astrophysics of Galaxies +1210.4168 Solar and Stellar Astrophysics +1210.4671 Statistical Mechanics +1210.7096 Solar and Stellar Astrophysics +1210.8138 +1210.8152 High Energy Astrophysical Phenomena +1210.8212 Instrumentation and Methods for Astrophysics +1211.0500 +1211.2953 Classical Analysis and ODEs +1211.2989 Superconductivity +1211.3173 Functional Analysis +1211.4906 Optics +1211.5242 Materials Science +1211.5373 Plasma Physics +1211.5931 Information Theory +1211.6156 +1211.6157 +1211.7092 Geometric Topology +1211.7331 General Topology +1212.0452 Superconductivity +1212.1309 +1212.1311 Strongly Correlated Electrons +1212.1557 +1212.1662 Phenomenology +1212.3160 Geometric Topology +1212.3213 Differential Geometry +1212.3346 Combinatorics +1212.3490 Classical Analysis and ODEs +1212.3493 Computation and Language +1212.3522 Phenomenology +1212.3599 General Physics +1212.3602 Number Theory +1212.3603 Classical Analysis and ODEs +1212.3604 Analysis of PDEs +1212.3606 +1212.3613 Solar and Stellar Astrophysics +1212.3621 Information Theory +1212.3627 Combinatorics +1212.3628 +1212.3629 Solar and Stellar Astrophysics +1212.3631 Learning +1212.3634 Computation and Language +1212.3641 Discrete Mathematics +1212.3646 Solar and Stellar Astrophysics +1212.3649 +1212.3653 Differential Geometry +1212.3656 Algebraic Topology +1212.3665 Differential Geometry +1212.3668 Geophysics +1212.3670 Cosmology and Nongalactic Astrophysics +1212.3672 Numerical Analysis +1212.3673 Chaotic Dynamics +1212.3676 Instrumentation and Detectors +1212.3677 Digital Libraries +1212.3678 Instrumentation and Detectors +1212.3682 Combinatorics +1212.3693 +1212.3695 Experiment +1212.3697 +1212.3704 Information Theory +1212.3706 Number Theory +1212.3709 Statistics Theory +1212.3719 Cryptography and Security +1212.3722 Number Theory +1212.3723 Number Theory +1212.3725 +1212.3726 Commutative Algebra +1212.3727 Solar and Stellar Astrophysics +1212.3729 Differential Geometry +1212.3733 Phenomenology +1212.3739 +1212.3740 Group Theory +1212.3741 Computer Science and Game Theory +1212.3742 Theory +1212.3743 Fluid Dynamics +1212.3745 Algebraic Geometry +1212.3747 Networking and Internet Architecture +1212.3748 Instrumentation and Detectors +1212.3756 Representation Theory +1212.3758 Rings and Algebras +1212.3760 Instrumentation and Methods for Astrophysics +1212.3765 Learning +1212.3769 Classical Analysis and ODEs +1212.3775 Mesoscale and Nanoscale Physics +1212.3777 Cryptography and Security +1212.3778 Medical Physics +1212.3779 Analysis of PDEs +1212.3783 Phenomenology +1212.3785 Phenomenology +1212.3786 Other Computer Science +1212.3795 Analysis of PDEs +1212.3797 Experiment +1212.3799 Information Theory +1212.3800 Lattice +1212.3802 Numerical Analysis +1212.3807 Populations and Evolution +1212.3811 Algebraic Geometry +1212.3812 Algebraic Geometry +1212.3813 Algebraic Geometry +1212.3815 Combinatorics +1212.3817 Artificial Intelligence +1212.3819 Instrumentation and Detectors +1212.3820 Dynamical Systems +1212.3827 Populations and Evolution +1212.3834 Atomic Physics +1212.3835 Lattice +1212.3838 Logic in Computer Science +1212.3840 Classical Analysis and ODEs +1212.3845 Statistical Mechanics +1212.3847 Number Theory +1212.3850 Information Theory +1212.3853 Social and Information Networks +1212.3864 Mesoscale and Nanoscale Physics +1212.3870 Logic in Computer Science +1212.3871 Logic in Computer Science +1212.3872 Logic in Computer Science +1212.3873 Learning +1212.3874 Programming Languages +1212.3875 Programming Languages +1212.3876 Cryptography and Security +1212.3877 Logic in Computer Science +1212.3878 Programming Languages +1212.3879 Programming Languages +1212.3886 Information Theory +1212.3888 Populations and Evolution +1212.3889 Data Structures and Algorithms +1212.3890 Exactly Solvable and Integrable Systems +1212.3893 Differential Geometry +1212.3895 Classical Analysis and ODEs +1212.3898 Combinatorics +1212.3903 Information Theory +1212.3906 Information Retrieval +1212.3912 +1212.3916 Analysis of PDEs +1212.3919 +1212.3920 +1212.3923 Theory +1212.3931 Classical Analysis and ODEs +1212.3932 Molecular Networks +1212.3936 Optimization and Control +1212.3937 Statistical Mechanics +1212.3938 Applications +1212.3939 Combinatorics +1212.3940 Combinatorics +1212.3942 Experiment +1212.3946 Mesoscale and Nanoscale Physics +1212.3948 Rings and Algebras +1212.3949 Rings and Algebras +1212.3951 Phenomenology +1212.3952 Theory +1212.3953 Methodology +1212.3957 Experiment +1212.3958 Portfolio Management +1212.3959 Representation Theory +1212.3962 Solar and Stellar Astrophysics +1212.3964 Information Retrieval +1212.3967 Numerical Analysis +1212.3970 Algebraic Topology +1212.3971 Operator Algebras +1212.3972 Soft Condensed Matter +1212.3974 Optics +1212.3977 Phenomenology +1212.3979 Networking and Internet Architecture +1212.3981 Discrete Mathematics +1212.3983 Combinatorics +1212.3989 Number Theory +1212.3994 Strongly Correlated Electrons +1212.3996 Artificial Intelligence +1212.3998 Artificial Intelligence +1212.4007 Statistical Mechanics +1212.4008 +1212.4013 Representation Theory +1212.4024 +1212.4028 General Physics +1212.4029 Physics and Society +1212.4030 Analysis of PDEs +1212.4031 Phenomenology +1212.4035 Mesoscale and Nanoscale Physics +1212.4037 Differential Geometry +1212.4038 Instrumentation and Methods for Astrophysics +1212.4041 Differential Geometry +1212.4042 Astrophysics of Galaxies +1212.4045 High Energy Astrophysical Phenomena +1212.4053 Experiment +1212.4054 Analysis of PDEs +1212.4061 Lattice +1212.4062 Experiment +1212.4063 Rings and Algebras +1212.4064 Solar and Stellar Astrophysics +1212.4070 Algebraic Geometry +1212.4078 Probability +1212.4080 Molecular Networks +1212.4081 Biomolecules +1212.4086 Combinatorics +1212.4101 +1212.4105 Combinatorics +1212.4110 Optics +1212.4112 Experiment +1212.4114 Populations and Evolution +1212.4115 Instrumentation and Methods for Astrophysics +1212.4116 Populations and Evolution +1212.4120 Commutative Algebra +1212.4125 Populations and Evolution +1212.4126 Risk Management +1212.4133 Materials Science +1212.4134 Functional Analysis +1212.4137 Machine Learning +1212.4140 Experiment +cond-mat/0105275 Superconductivity +cond-mat/0206351 Materials Science +cond-mat/0207683 Superconductivity +cond-mat/0306692 Materials Science +math-ph/9909022 +math/0412432 Representation Theory +math/0509276 Representation Theory +physics/0612130 Instrumentation and Detectors +physics/0703018 General Physics +quant-ph/9901022 +1207.2934 General Physics +1212.3922 Computational Engineering, Finance, and Science +1212.3924 Computational Engineering, Finance, and Science +1212.3925 Computational Engineering, Finance, and Science +1212.3926 Data Analysis, Statistics and Probability +1212.3928 Computational Engineering, Finance, and Science +1212.3929 Data Analysis, Statistics and Probability +1212.3930 Computational Engineering, Finance, and Science +1212.5253 Computational Engineering, Finance, and Science +1212.5255 Computational Engineering, Finance, and Science +1212.5256 Computational Engineering, Finance, and Science +1212.5258 General Physics +1212.5260 Computational Engineering, Finance, and Science +1212.5262 Computational Engineering, Finance, and Science +1212.5263 Computational Engineering, Finance, and Science +1212.5275 Computational Engineering, Finance, and Science +0806.4861 +0809.2643 Probability +0810.5302 Statistics Theory +0811.0697 Statistics Theory +0811.3706 Probability +0904.2543 Representation Theory +0905.3181 Differential Geometry +0906.3570 Probability +0908.2842 Strongly Correlated Electrons +0910.2535 Disordered Systems and Neural Networks +0910.2592 Combinatorics +0911.2641 Cosmology and Nongalactic Astrophysics +0912.0328 Probability +0912.5455 General Physics +1003.3037 Representation Theory +1003.3093 Biomolecules +1005.0540 Differential Geometry +1005.1405 Representation Theory +1007.4970 Differential Geometry +1008.4799 Cosmology and Nongalactic Astrophysics +1010.2262 Metric Geometry +1010.5248 Mesoscale and Nanoscale Physics +1101.4243 Theory +1101.4561 General Mathematics +1102.0818 Probability +1102.3178 Theory +1103.2046 Information Theory +1104.1530 Solar and Stellar Astrophysics +1106.0963 Geometric Topology +1106.2399 Algebraic Geometry +1106.2853 Strongly Correlated Electrons +1106.6329 Quantum Gases +1107.2432 Computer Science and Game Theory +1108.1774 Representation Theory +1109.4373 Distributed, Parallel, and Cluster Computing +1110.0151 Differential Geometry +1110.3038 Algebraic Geometry +1111.1641 Fluid Dynamics +1111.1747 Astrophysics of Galaxies +1111.2073 +1111.2592 Superconductivity +1111.6927 Operator Algebras +1112.0303 +1112.2358 K-Theory and Homology +1112.3571 Logic +1112.5777 Combinatorics +1201.6368 Phenomenology +1202.5111 +1203.0826 Strongly Correlated Electrons +1203.2318 Differential Geometry +1204.0805 +1204.1060 Theory +1204.3646 Statistical Mechanics +1204.5195 Cosmology and Nongalactic Astrophysics +1205.0159 Numerical Analysis +1205.2026 Information Theory +1205.4815 Quantum Gases +1206.0512 Mesoscale and Nanoscale Physics +1206.0854 Atomic and Molecular Clusters +1206.1019 +1206.3203 Mesoscale and Nanoscale Physics +1206.4178 Algebraic Geometry +1206.5370 Metric Geometry +1206.6326 Experiment +1207.0641 Quantum Gases +1207.1854 Numerical Analysis +1207.2084 Instrumentation and Methods for Astrophysics +1207.2335 Information Theory +1207.3095 +1207.3414 Social and Information Networks +1207.3608 Phenomenology +1207.3961 Machine Learning +1207.5244 Complex Variables +1207.5302 Classical Analysis and ODEs +1207.5551 Classical Analysis and ODEs +1207.5788 Cosmology and Nongalactic Astrophysics +1207.7227 Phenomenology +1208.0166 Lattice +1208.0729 Mesoscale and Nanoscale Physics +1208.0809 Theory +1208.1186 Lattice +1208.1437 +1208.2552 Lattice +1208.2560 +1208.3027 Mesoscale and Nanoscale Physics +1208.3325 Probability +1208.3470 Mesoscale and Nanoscale Physics +1208.4760 Superconductivity +1208.4890 +1209.1341 Quantitative Methods +1209.3322 Plasma Physics +1209.5166 Superconductivity +1210.0540 Theory +1210.0584 Instrumentation and Methods for Astrophysics +1210.2921 Instrumentation and Methods for Astrophysics +1210.4207 Classical Analysis and ODEs +1210.5170 +1210.5542 +1210.6461 Superconductivity +1210.7344 General Physics +1210.8386 Data Structures and Algorithms +1211.0066 Strongly Correlated Electrons +1211.0155 General Physics +1211.0751 Lattice +1211.1310 Methodology +1211.1478 Strongly Correlated Electrons +1211.2273 High Energy Astrophysical Phenomena +1211.2738 +1211.2944 Metric Geometry +1211.3224 Statistics Theory +1211.3412 Social and Information Networks +1211.3428 Discrete Mathematics +1211.3430 Number Theory +1211.3439 Computational Complexity +1211.3442 Combinatorics +1211.3443 Algebraic Geometry +1211.3444 Learning +1211.3446 Materials Science +1211.3451 Neural and Evolutionary Computing +1211.3454 Metric Geometry +1211.3460 Methodology +1211.3461 Algebraic Geometry +1211.3466 Networking and Internet Architecture +1211.3470 Number Theory +1211.3473 Molecular Networks +1211.3476 Programming Languages +1211.3477 Superconductivity +1211.3478 Quantum Algebra +1211.3480 Logic in Computer Science +1211.3483 Commutative Algebra +1211.3485 Optics +1211.3487 Combinatorics +1211.3488 Optics +1211.3489 Astrophysics of Galaxies +1211.3490 Differential Geometry +1211.3492 Computational Complexity +1211.3493 Popular Physics +1211.3497 Artificial Intelligence +1211.3498 History and Philosophy of Physics +1211.3501 Theory +1211.3502 Cryptography and Security +1211.3503 Information Theory +1211.3504 Complex Variables +1211.3506 Probability +1211.3507 +1211.3509 Statistics Theory +1211.3510 Phenomenology +1211.3514 Analysis of PDEs +1211.3515 Differential Geometry +1211.3516 Statistical Mechanics +1211.3518 +1211.3519 +1211.3521 +1211.3522 Number Theory +1211.3530 +1211.3531 Differential Geometry +1211.3532 Optics +1211.3539 Analysis of PDEs +1211.3542 Algebraic Geometry +1211.3543 Theory +1211.3544 Soft Condensed Matter +1211.3545 Statistical Mechanics +1211.3546 Instrumentation and Methods for Astrophysics +1211.3552 Representation Theory +1211.3556 Instrumentation and Methods for Astrophysics +1211.3559 Group Theory +1211.3566 Combinatorics +1211.3567 Numerical Analysis +1211.3569 Combinatorics +1211.3570 +1211.3571 Combinatorics +1211.3577 Instrumentation and Methods for Astrophysics +1211.3581 General Topology +1211.3583 +1211.3591 Analysis of PDEs +1211.3593 Materials Science +1211.3594 Statistics Theory +1211.3599 Statistical Finance +1211.3603 Instrumentation and Methods for Astrophysics +1211.3605 Differential Geometry +1211.3607 Instrumentation and Methods for Astrophysics +1211.3609 Populations and Evolution +1211.3613 Numerical Analysis +1211.3614 Numerical Analysis +1211.3615 Optimization and Control +1211.3622 Lattice +1211.3623 Probability +1211.3625 Probability +1211.3628 Astrophysics of Galaxies +1211.3632 Numerical Analysis +1211.3635 +1211.3636 Solar and Stellar Astrophysics +1211.3644 Materials Science +1211.3646 Algebraic Geometry +1211.3649 Combinatorics +1211.3652 Solar and Stellar Astrophysics +1211.3653 Algebraic Topology +1211.3656 Lattice +1211.3659 Graphics +1211.3661 Representation Theory +1211.3664 +1211.3666 Networking and Internet Architecture +1211.3674 General Physics +1211.3677 Computer Science and Game Theory +1211.3682 Cryptography and Security +1211.3683 Fluid Dynamics +1211.3686 +1211.3687 History and Philosophy of Physics +1211.3689 Combinatorics +1211.3693 Commutative Algebra +1211.3697 +1211.3704 History and Overview +1211.3711 Neural and Evolutionary Computing +1211.3718 Experiment +1211.3730 Theory +1211.3731 Superconductivity +1211.3735 High Energy Astrophysical Phenomena +astro-ph/0703257 +math/0012129 Algebraic Geometry +0705.0109 +0708.0074 Classical Analysis and ODEs +0803.2587 Category Theory +0804.2391 +0807.3152 Symplectic Geometry +0903.0827 Solar and Stellar Astrophysics +0905.1154 Rings and Algebras +0906.0522 +0911.0681 Phenomenology +0911.2399 Phenomenology +0911.3660 General Physics +0912.0750 Quantitative Methods +0912.3140 Soft Condensed Matter +0912.3480 Solar and Stellar Astrophysics +1001.3896 Computer Science and Game Theory +1002.0097 Information Theory +1003.0041 Pricing of Securities +1003.1188 Algebraic Geometry +1003.4447 Combinatorics +1003.5835 Mesoscale and Nanoscale Physics +1004.2133 Probability +1006.0195 Optimization and Control +1006.3313 Theory +1006.5301 Representation Theory +1007.2075 Learning +1007.3560 Combinatorics +1007.4278 Statistics Theory +1007.5364 Combinatorics +1008.2219 Group Theory +1008.2644 +1009.1271 Commutative Algebra +1009.3623 Classical Physics +1010.1240 Solar and Stellar Astrophysics +1011.1035 Computer Vision and Pattern Recognition +1011.2299 Numerical Analysis +1011.4584 Representation Theory +1011.5039 +1011.5055 Mesoscale and Nanoscale Physics +1101.0559 Applications +1101.2181 Representation Theory +1102.0458 Cosmology and Nongalactic Astrophysics +1102.2467 Learning +1102.2468 Information Theory +1103.4724 Algebraic Geometry +1103.5430 Number Theory +1104.2262 Logic in Computer Science +1104.5296 Probability +1105.0932 Quantum Gases +1105.3618 Probability +1105.5551 +1105.5983 Computer Science and Game Theory +1105.6231 Statistical Mechanics +1106.1841 Soft Condensed Matter +1107.0263 +1107.3936 Theory +1107.5520 Learning +1107.5531 Learning +1107.5537 Artificial Intelligence +1108.1624 Mesoscale and Nanoscale Physics +1108.2048 Earth and Planetary Astrophysics +1108.2143 +1108.2728 Optimization and Control +1108.3053 Mesoscale and Nanoscale Physics +1108.3715 Theory +1108.4774 Number Theory +1108.6048 Number Theory +1109.0935 Statistical Mechanics +1109.3114 Data Structures and Algorithms +1109.3681 Strongly Correlated Electrons +1109.4964 Materials Science +1109.5515 Experiment +1110.0756 Superconductivity +1110.1181 Logic +1110.1431 Solar and Stellar Astrophysics +1110.1902 +1110.5383 Machine Learning +1110.5712 Computers and Society +1110.6257 Statistical Mechanics +1110.6909 Plasma Physics +1111.0275 Strongly Correlated Electrons +1111.0766 Cosmology and Nongalactic Astrophysics +1111.1583 +1111.1796 Lattice +1111.3272 +1111.4183 Experiment +1111.5369 Statistical Mechanics +1111.5680 +1112.0366 Atomic Physics +1112.0744 High Energy Astrophysical Phenomena +1112.0807 Logic +1112.0874 Statistical Mechanics +1112.1185 Computer Science and Game Theory +1112.1292 Materials Science +1112.1355 +1112.2670 Solar and Stellar Astrophysics +1112.2807 Information Retrieval +1112.4354 +1112.4666 Statistical Mechanics +1112.5133 +1112.5388 Functional Analysis +1112.6410 Theory +1201.1791 Dynamical Systems +1201.1809 Instrumentation and Methods for Astrophysics +1201.1974 Materials Science +1201.2263 +1201.5027 Materials Science +1201.5166 Earth and Planetary Astrophysics +1201.5531 Biomolecules +1201.6427 Theory +1202.1231 Computer Science and Game Theory +1202.1277 Phenomenology +1202.1833 Combinatorics +1202.1835 Chemical Physics +1202.1837 Information Retrieval +1202.1841 Information Retrieval +1202.1843 Atomic and Molecular Clusters +1202.1847 Probability +1202.1849 Mesoscale and Nanoscale Physics +1202.1858 Number Theory +1202.1862 Strongly Correlated Electrons +1202.1864 +1202.1865 Networking and Internet Architecture +1202.1869 Combinatorics +1202.1870 Combinatorics +1202.1873 Solar and Stellar Astrophysics +1202.1876 General Physics +1202.1881 Information Retrieval +1202.1885 Statistical Mechanics +1202.1886 Artificial Intelligence +1202.1887 Cosmology and Nongalactic Astrophysics +1202.1889 Combinatorics +1202.1891 Artificial Intelligence +1202.1892 Networking and Internet Architecture +1202.1893 Physics and Society +1202.1895 Cryptography and Security +1202.1898 Cryptography and Security +1202.1906 Quantum Algebra +1202.1909 Information Theory +1202.1917 Analysis of PDEs +1202.1918 Networking and Internet Architecture +1202.1919 Dynamical Systems +1202.1925 Distributed, Parallel, and Cluster Computing +1202.1938 Category Theory +1202.1941 Networking and Internet Architecture +1202.1945 Artificial Intelligence +1202.1948 Number Theory +1202.1949 General Finance +1202.1953 Software Engineering +1202.1966 Solar and Stellar Astrophysics +1202.1967 Analysis of PDEs +1202.1970 Fluid Dynamics +1202.1971 Cryptography and Security +1202.1975 Optics +1202.1976 Classical Analysis and ODEs +1202.1977 Cosmology and Nongalactic Astrophysics +1202.1980 Logic in Computer Science +1202.1985 Mesoscale and Nanoscale Physics +1202.1988 Materials Science +1202.1990 Computer Vision and Pattern Recognition +1202.1992 Information Theory +1202.1994 Numerical Analysis +1202.1996 +1202.2003 Classical Analysis and ODEs +1202.2005 Instrumentation and Methods for Astrophysics +1202.2007 History and Philosophy of Physics +1202.2008 Methodology +1202.2009 Methodology +1202.2013 Combinatorics +1202.2018 Networking and Internet Architecture +1202.2021 +1202.2023 Combinatorics +1202.2024 Networking and Internet Architecture +1202.2029 Analysis of PDEs +1202.2031 Analysis of PDEs +1202.2034 Neurons and Cognition +1202.2036 Solar and Stellar Astrophysics +1202.2037 Information Theory +1202.2042 Dynamical Systems +1202.2045 Methodology +1202.2049 Algebraic Topology +1202.2050 Differential Geometry +1202.2052 General Topology +1202.2054 Classical Analysis and ODEs +1202.2055 Classical Analysis and ODEs +1202.2065 Experiment +1202.2066 Dynamical Systems +1202.2071 Analysis of PDEs +1202.2078 Optics +1202.2080 General Finance +1202.2081 Geophysics +1202.2082 Networking and Internet Architecture +1202.2088 Information Theory +1202.2090 Experiment +1202.2091 +1202.2092 Distributed, Parallel, and Cluster Computing +1202.2096 Cosmology and Nongalactic Astrophysics +1202.2098 Accelerator Physics +1202.2103 Operator Algebras +1202.2112 Artificial Intelligence +physics/0504165 Physics and Society +0704.2266 Chaotic Dynamics +0712.4048 Chaotic Dynamics +0806.2044 Probability +0812.4586 Chaotic Dynamics +0901.3496 Solar and Stellar Astrophysics +0904.0111 Subcellular Processes +0904.1300 Computation +0907.4505 Commutative Algebra +0908.1678 Optics +0909.1359 Representation Theory +0910.2138 Solar and Stellar Astrophysics +0911.3316 Solar and Stellar Astrophysics +0912.1215 Algebraic Topology +1001.0638 Dynamical Systems +1002.4229 Solar and Stellar Astrophysics +1002.4742 Solar and Stellar Astrophysics +1003.4096 Strongly Correlated Electrons +1003.4891 Quantum Gases +1003.6029 Solar and Stellar Astrophysics +1006.1768 Category Theory +1006.2837 Probability +1007.2623 Representation Theory +1008.0842 Differential Geometry +1009.3956 Number Theory +1009.4900 Spectral Theory +1010.3056 Representation Theory +1010.5028 Statistics Theory +1011.0276 Classical Analysis and ODEs +1101.3214 Information Theory +1101.5147 Geometric Topology +1102.4159 Differential Geometry +1103.1050 Optimization and Control +1104.0445 Operator Algebras +1106.1951 Logic +1107.2400 Phenomenology +1107.2532 +1107.4833 High Energy Astrophysical Phenomena +1107.5084 Earth and Planetary Astrophysics +1108.3302 Statistical Mechanics +1108.3569 +1108.3909 Category Theory +1108.4533 Statistical Mechanics +1108.4810 Combinatorics +1108.5030 Operator Algebras +1109.0338 Optics +1109.0479 Analysis of PDEs +1109.2350 Geophysics +1109.2462 Representation Theory +1109.2770 K-Theory and Homology +1109.3033 Statistical Mechanics +1109.3092 Discrete Mathematics +1109.5322 Optimization and Control +1109.5889 Functional Analysis +1109.6094 Analysis of PDEs +1109.6780 Optics +1110.4123 Computation and Language +1110.4537 Mesoscale and Nanoscale Physics +1110.5203 Probability +1110.6022 Physics Education +1110.6035 Physics Education +1110.6800 Classical Analysis and ODEs +1110.6871 Number Theory +1111.0580 Theory +1111.3522 Group Theory +1111.3785 Phenomenology +1111.4481 +1111.6062 Neurons and Cognition +1112.1404 High Energy Astrophysical Phenomena +1112.2824 General Physics +1112.3189 Phenomenology +1112.3631 +1112.4487 Theory +1112.4858 Superconductivity +1112.5036 Superconductivity +1112.5604 Molecular Networks +1112.6311 Theory +1201.1572 Physics and Society +1201.1607 Quantum Gases +1201.1864 Mesoscale and Nanoscale Physics +1201.2358 Theory +1201.2396 Quantum Gases +1201.2453 Superconductivity +1201.4247 +1201.4927 Functional Analysis +1202.0462 +1202.1145 Physics and Society +1202.1406 Mesoscale and Nanoscale Physics +1202.1780 Phenomenology +1202.2809 Probability +1202.2861 Cosmology and Nongalactic Astrophysics +1202.2906 Pattern Formation and Solitons +1202.2978 +1202.3457 Cosmology and Nongalactic Astrophysics +1202.3652 Pattern Formation and Solitons +1202.4233 Quantum Gases +1202.5144 +1202.5397 +1202.5807 Analysis of PDEs +1202.6231 Phenomenology +1203.0020 Materials Science +1203.0613 +1203.0631 Discrete Mathematics +1203.1290 Phenomenology +1203.1412 Quantum Gases +1203.2170 Dynamical Systems +1203.3451 Instrumentation and Methods for Astrophysics +1203.3592 Experiment +1203.4630 +1203.5445 Probability +1203.5516 +1203.6780 Optimization and Control +1204.0810 +1204.1155 Solar and Stellar Astrophysics +1204.1506 Mesoscale and Nanoscale Physics +1204.1657 Number Theory +1204.2112 Commutative Algebra +1204.3725 +1204.4492 High Energy Astrophysical Phenomena +1204.4859 Phenomenology +1204.5238 Materials Science +1204.5526 Other Computer Science +1204.6188 High Energy Astrophysical Phenomena +1204.6508 Data Structures and Algorithms +1205.1652 Materials Science +1205.2148 Materials Science +1205.2217 Computational Physics +1205.2442 Theory +1205.2767 Algebraic Geometry +1205.3976 Algebraic Geometry +1205.4102 +1205.4251 Physics and Society +1205.4651 +1205.4757 Group Theory +1205.4864 Instrumentation and Detectors +1205.4865 Combinatorics +1205.5418 Cosmology and Nongalactic Astrophysics +1205.5478 Dynamical Systems +1205.5746 Superconductivity +1205.5816 Phenomenology +1205.5818 Geometric Topology +1205.5820 Statistical Finance +1205.5821 General Finance +1205.5823 General Literature +1205.5826 Phenomenology +1205.5834 Representation Theory +1205.5837 Analysis of PDEs +1205.5841 +1205.5842 Phenomenology +1205.5844 +1205.5845 Rings and Algebras +1205.5851 +1205.5853 Algebraic Geometry +1205.5854 Mesoscale and Nanoscale Physics +1205.5855 General Topology +1205.5856 Information Theory +1205.5859 Spectral Theory +1205.5862 Differential Geometry +1205.5863 Information Theory +1205.5865 Methodology +1205.5866 Artificial Intelligence +1205.5869 Classical Analysis and ODEs +1205.5870 Classical Analysis and ODEs +1205.5875 Analysis of PDEs +1205.5891 Geometric Topology +1205.5894 Optics +1205.5896 Number Theory +1205.5897 Optics +1205.5899 Complex Variables +1205.5900 Optics +1205.5908 Adaptation and Self-Organizing Systems +1205.5909 Logic +1205.5910 Adaptation and Self-Organizing Systems +1205.5911 Numerical Analysis +1205.5912 Number Theory +1205.5921 Databases +1205.5922 Databases +1205.5923 Information Retrieval +1205.5924 Instrumentation and Methods for Astrophysics +1205.5927 Systems and Control +1205.5928 Data Structures and Algorithms +1205.5931 Superconductivity +1205.5934 Analysis of PDEs +1205.5935 +1205.5939 Differential Geometry +1205.5948 Analysis of PDEs +1205.5950 Analysis of PDEs +1205.5951 History and Philosophy of Physics +1205.5959 Information Theory +1205.5960 Computers and Society +1205.5966 History and Philosophy of Physics +1205.5972 Combinatorics +1205.5974 Statistical Mechanics +1205.5975 Mathematical Software +1205.5979 Information Theory +1205.5981 Logic +1205.5987 Classical Analysis and ODEs +1205.5993 Functional Analysis +1205.5994 Computational Complexity +1205.6000 Earth and Planetary Astrophysics +1205.6001 Phenomenology +1205.6002 Algebraic Geometry +1205.6010 Genomics +1205.6014 Algebraic Geometry +1205.6017 Quantum Algebra +1205.6019 Operator Algebras +1205.6028 Differential Geometry +1205.6029 +1205.6032 Differential Geometry +1205.6035 Superconductivity +1205.6040 Statistics Theory +1205.6041 Optics +1205.6043 Statistics Theory +1205.6044 History and Overview +1205.6045 General Topology +1205.6048 Differential Geometry +1205.6049 +1205.6050 Commutative Algebra +1205.6055 Statistics Theory +1205.6056 Number Theory +1205.6058 K-Theory and Homology +1205.6071 Combinatorics +1205.6077 Atomic Physics +1205.6081 Classical Analysis and ODEs +1205.6086 Statistics Theory +1205.6087 Atomic Physics +1205.6091 Pattern Formation and Solitons +1205.6093 Analysis of PDEs +1205.6094 Phenomenology +1205.6096 Differential Geometry +1205.6097 Phenomenology +1205.6100 Algebraic Geometry +1205.6102 Statistics Theory +1205.6103 Differential Geometry +1205.6106 Optics +1205.6107 Numerical Analysis +1205.6114 Systems and Control +1205.6118 Space Physics +1205.6119 Statistical Mechanics +1205.6120 Phenomenology +1205.6122 Geophysics +1205.6128 Combinatorics +1205.6130 Experiment +1205.6133 Optics +1205.6135 +1205.6142 Combinatorics +1205.6162 Software Engineering +1205.6170 Algebraic Geometry +1205.6174 Functional Analysis +1205.6175 Group Theory +1205.6177 Software Engineering +1205.6182 Phenomenology +1205.6187 Chaotic Dynamics +1205.6193 Optimization and Control +1205.6197 Disordered Systems and Neural Networks +cs/0602079 Information Theory +math/0202079 Representation Theory +math/0506536 Geometric Topology +nlin/0607016 Chaotic Dynamics +0811.0643 Probability +0905.2770 Pricing of Securities +0905.4682 Number Theory +0908.3066 +0912.0169 Differential Geometry +1007.3587 +1009.4898 Networking and Internet Architecture +1010.2943 Physics and Society +1010.2957 Disordered Systems and Neural Networks +1010.3022 Cosmology and Nongalactic Astrophysics +1011.1374 Astrophysics of Galaxies +1011.3266 Spectral Theory +1011.5772 Phenomenology +1012.3025 Soft Condensed Matter +1101.1671 +1101.5074 Quantum Gases +1103.2611 Algebraic Geometry +1103.4536 Chaotic Dynamics +1103.4867 +1104.2085 Differential Geometry +1105.3310 +1105.4651 Quantum Gases +1105.4681 Optimization and Control +1105.5572 Combinatorics +1106.3720 +1107.2821 +1108.1688 Computational Finance +1108.2041 Phenomenology +1108.4325 Probability +1108.4628 Differential Geometry +1109.0609 Complex Variables +1109.3880 Theory +1109.4593 Commutative Algebra +1109.6190 +1109.6452 Chaotic Dynamics +1109.6509 Phenomenology +1110.1392 Strongly Correlated Electrons +1110.1871 Chaotic Dynamics +1110.2114 Geometric Topology +1110.3532 +1110.4182 +1110.6120 Quantum Gases +1111.1988 Mesoscale and Nanoscale Physics +1111.2329 Astrophysics of Galaxies +1111.4644 Exactly Solvable and Integrable Systems +1111.6129 Mesoscale and Nanoscale Physics +1111.6449 +1112.0412 Phenomenology +1112.2694 Statistical Mechanics +1112.4106 Programming Languages +1112.4511 Algebraic Geometry +1112.4891 Experiment +1201.0859 Strongly Correlated Electrons +1201.1057 Mesoscale and Nanoscale Physics +1201.1283 Strongly Correlated Electrons +1201.2026 Materials Science +1201.2488 Tissues and Organs +1201.4061 Algebraic Geometry +1202.1272 Materials Science +1202.1583 Soft Condensed Matter +1202.2051 Phenomenology +1202.2937 K-Theory and Homology +1202.4467 Theory +1202.5737 Mesoscale and Nanoscale Physics +1202.6417 Superconductivity +1203.0547 Mesoscale and Nanoscale Physics +1203.1345 +1203.2164 +1203.3398 Combinatorics +1203.4222 +1203.5891 Cosmology and Nongalactic Astrophysics +1203.5952 Optimization and Control +1203.6420 +1203.6731 Instrumentation and Methods for Astrophysics +1204.0587 Mesoscale and Nanoscale Physics +1204.1111 Data Structures and Algorithms +1204.1434 Strongly Correlated Electrons +1204.2203 Software Engineering +1204.3256 Information Theory +1204.3360 Phenomenology +1204.3569 Computational Geometry +1204.4341 Statistical Mechanics +1204.4712 Representation Theory +1204.5634 Mesoscale and Nanoscale Physics +1205.0481 Materials Science +1205.0838 Mesoscale and Nanoscale Physics +1205.2757 Earth and Planetary Astrophysics +1205.3897 Materials Science +1205.4205 Phenomenology +1205.6998 +1205.7031 Information Theory +1206.0873 Solar and Stellar Astrophysics +1206.1351 +1206.2150 Theory +1206.4215 Analysis of PDEs +1207.0835 Data Structures and Algorithms +1207.2072 Populations and Evolution +1207.3475 Chemical Physics +1207.4895 Accelerator Physics +1207.5501 Phenomenology +1207.6212 Astrophysics of Galaxies +1207.6839 Social and Information Networks +1207.7033 Discrete Mathematics +1207.7257 Neurons and Cognition +1207.7304 Networking and Internet Architecture +1207.7344 Algebraic Geometry +1207.7358 General Physics +1208.0025 +1208.0029 Tissues and Organs +1208.0033 Atmospheric and Oceanic Physics +1208.0035 Phenomenology +1208.0041 +1208.0044 Software Engineering +1208.0047 Computational Physics +1208.0051 Number Theory +1208.0052 Materials Science +1208.0055 Databases +1208.0056 Theory +1208.0065 Computation +1208.0070 Cryptography and Security +1208.0071 Superconductivity +1208.0072 Information Theory +1208.0073 Databases +1208.0074 Databases +1208.0075 Databases +1208.0076 Databases +1208.0078 Databases +1208.0079 Databases +1208.0080 Databases +1208.0081 Databases +1208.0082 Databases +1208.0083 Databases +1208.0084 Databases +1208.0086 Databases +1208.0087 Databases +1208.0088 Databases +1208.0089 Databases +1208.0090 Databases +1208.0091 Databases +1208.0092 Databases +1208.0093 Databases +1208.0094 Databases +1208.0097 Soft Condensed Matter +1208.0110 Probability +1208.0111 Probability +1208.0112 Rings and Algebras +1208.0119 +1208.0120 Operator Algebras +1208.0121 Methodology +1208.0125 Representation Theory +1208.0129 Machine Learning +1208.0137 Theory +1208.0144 Computer Science and Game Theory +1208.0145 Statistical Mechanics +1208.0148 Complex Variables +1208.0150 Complex Variables +1208.0151 Probability +1208.0155 Solar and Stellar Astrophysics +1208.0156 Probability +1208.0163 Databases +1208.0167 Materials Science +1208.0169 High Energy Astrophysical Phenomena +1208.0171 Solar and Stellar Astrophysics +1208.0175 Number Theory +1208.0176 Logic +1208.0180 Distributed, Parallel, and Cluster Computing +1208.0185 +1208.0186 Networking and Internet Architecture +1208.0193 Information Theory +1208.0196 Logic +1208.0200 Computation and Language +1208.0201 Fluid Dynamics +1208.0202 Computational Geometry +1208.0203 Databases +1208.0204 Phenomenology +1208.0208 Materials Science +1208.0211 Solar and Stellar Astrophysics +1208.0214 Mesoscale and Nanoscale Physics +1208.0215 History and Philosophy of Physics +1208.0216 Differential Geometry +1208.0217 Statistical Mechanics +1208.0219 Databases +1208.0220 Databases +1208.0221 Databases +1208.0222 Databases +1208.0223 Chaotic Dynamics +1208.0224 Databases +1208.0225 Databases +1208.0234 Commutative Algebra +1208.0235 Operator Algebras +1208.0238 Mesoscale and Nanoscale Physics +1208.0240 Strongly Correlated Electrons +1208.0243 Optics +1208.0244 Optics +1208.0246 Analysis of PDEs +1208.0247 Quantitative Methods +1208.0250 Number Theory +1208.0256 +1208.0259 Computers and Society +1208.0260 +1208.0270 Databases +1208.0271 Databases +1208.0273 Databases +1208.0274 Databases +1208.0275 Databases +1208.0276 Databases +1208.0277 Databases +1208.0278 Databases +1208.0279 Phenomenology +1208.0281 Instrumentation and Methods for Astrophysics +1208.0283 Computer Science and Game Theory +1208.0285 Databases +1208.0286 Databases +1208.0287 Databases +1208.0288 Databases +1208.0289 Databases +1208.0290 Databases +1208.0291 Databases +1208.0292 Databases +1208.0293 Artificial Intelligence +1208.0303 +1208.0306 Probability +1208.0307 High Energy Astrophysical Phenomena +1208.0308 Number Theory +1208.0309 Numerical Analysis +1208.0310 Materials Science +1208.0312 Data Structures and Algorithms +1208.0318 Systems and Control +1208.0321 Materials Science +1208.0328 Disordered Systems and Neural Networks +chao-dyn/9410005 Chaotic Dynamics +0705.0174 +0804.3813 Representation Theory +0904.4324 Quantum Algebra +0906.0457 Differential Geometry +0908.4063 +0909.0593 Representation Theory +0909.4551 Methodology +0910.0745 Methodology +0911.3927 Classical Analysis and ODEs +1001.1433 Dynamical Systems +1002.3247 Representation Theory +1002.4797 Algebraic Geometry +1003.3339 Phenomenology +1004.2906 +1007.2510 +1007.3421 Superconductivity +1008.1508 +1011.0300 Physics and Society +1011.3273 Probability +1011.3657 Chemical Physics +1011.6283 Number Theory +1012.0621 Optimization and Control +1012.2492 Superconductivity +1101.2506 Phenomenology +1102.0437 +1102.2077 Probability +1103.0723 Algebraic Geometry +1103.2102 Data Structures and Algorithms +1103.5245 Differential Geometry +1104.5514 Differential Geometry +1106.2176 Numerical Analysis +1106.2268 High Energy Astrophysical Phenomena +1106.5273 Numerical Analysis +1107.0624 +1107.1285 Materials Science +1107.3144 Theory +1107.5754 +1107.6021 Quantum Algebra +1108.3793 +1109.2160 +1109.2238 Biological Physics +1109.2279 Methodology +1109.4715 Soft Condensed Matter +1110.2156 Materials Science +1110.2879 Statistics Theory +1110.2921 Numerical Analysis +1110.2937 Quantum Algebra +1110.6616 Rings and Algebras +1111.0688 Algebraic Geometry +1111.1490 Materials Science +1111.6174 Methodology +1111.6840 +1112.0279 Solar and Stellar Astrophysics +1112.2091 Optimization and Control +1112.4079 Mesoscale and Nanoscale Physics +1112.4694 Cell Behavior +1112.5575 Probability +1201.1104 Cosmology and Nongalactic Astrophysics +1201.1652 Computation and Language +1201.2229 +1201.4022 Operator Algebras +1202.3433 +1202.3646 +1202.4841 Number Theory +1202.5478 Rings and Algebras +1202.6331 Combinatorics +1203.5114 Superconductivity +1203.5573 Number Theory +1203.6345 Machine Learning +1204.0411 Operator Algebras +1204.0510 Cosmology and Nongalactic Astrophysics +1204.0859 Statistical Mechanics +1204.0931 Complex Variables +1204.2410 Statistics Theory +1204.2501 Statistical Mechanics +1204.2591 Combinatorics +1204.3312 Category Theory +1204.4653 Theory +1204.4958 Superconductivity +1204.5125 Computational Physics +1204.6052 +1204.6524 Cosmology and Nongalactic Astrophysics +1204.6632 +1205.0232 Phenomenology +1205.0730 Discrete Mathematics +1205.0731 Discrete Mathematics +1205.0735 Combinatorics +1205.1464 Strongly Correlated Electrons +1205.1729 Mesoscale and Nanoscale Physics +1205.1997 Computation +1205.2722 Materials Science +1205.3284 +1205.4941 +1205.5251 +1206.0809 +1206.1878 Statistical Mechanics +1206.2185 Probability +1206.2218 Phenomenology +1206.2783 Atomic and Molecular Clusters +1206.2786 Atomic and Molecular Clusters +1206.3103 Strongly Correlated Electrons +1206.3653 Statistical Mechanics +1206.4006 +1206.5039 Number Theory +1206.5228 Instrumentation and Methods for Astrophysics +1206.5345 Learning +1206.5646 Mesoscale and Nanoscale Physics +1206.5766 Learning +1207.0213 Analysis of PDEs +1207.1255 Logic in Computer Science +1207.2572 Numerical Analysis +1207.2920 Cosmology and Nongalactic Astrophysics +1207.3155 Superconductivity +1207.3670 Statistical Mechanics +1207.3935 Strongly Correlated Electrons +1207.4439 Strongly Correlated Electrons +1207.5173 Mesoscale and Nanoscale Physics +1207.5855 Statistical Mechanics +1207.5905 Superconductivity +1207.6230 Theory +1207.6441 Strongly Correlated Electrons +1208.0928 +1208.1894 Differential Geometry +1208.2197 Mesoscale and Nanoscale Physics +1208.2316 Phenomenology +1208.4492 Statistical Mechanics +1208.4553 Statistical Mechanics +1208.6152 Programming Languages +1209.0685 Mesoscale and Nanoscale Physics +1209.1954 Quantum Gases +1209.1978 Quantum Algebra +1209.4524 High Energy Astrophysical Phenomena +1209.5088 Quantum Algebra +1210.0394 Phenomenology +1210.0596 Strongly Correlated Electrons +1210.2137 +1210.2500 +1210.2984 Artificial Intelligence +1210.3124 Optimization and Control +1210.3516 Statistics Theory +1210.3676 Fluid Dynamics +1210.3851 Computational Finance +1210.4091 General Physics +1210.5274 Instrumentation and Methods for Astrophysics +1210.5314 Information Theory +1210.5599 Cryptography and Security +1210.5648 Computational Complexity +1210.5766 Numerical Analysis +1210.5940 Combinatorics +1210.6154 Other Computer Science +1210.6592 Mesoscale and Nanoscale Physics +1210.6842 General Mathematics +1210.6991 Number Theory +1210.7017 Numerical Analysis +1210.7101 Software Engineering +1210.7144 Mesoscale and Nanoscale Physics +1210.7233 Theory +1210.7246 Group Theory +1210.7247 Phenomenology +1210.7262 Metric Geometry +1210.7268 Solar and Stellar Astrophysics +1210.7273 Adaptation and Self-Organizing Systems +1210.7277 Physics Education +1210.7280 Fluid Dynamics +1210.7282 Computation and Language +1210.7283 Software Engineering +1210.7285 Optics +1210.7289 Quantum Algebra +1210.7290 Quantum Algebra +1210.7291 Analysis of PDEs +1210.7294 +1210.7295 Systems and Control +1210.7302 +1210.7309 Classical Analysis and ODEs +1210.7311 +1210.7313 Phenomenology +1210.7315 Geometric Topology +1210.7317 Logic +1210.7322 Mesoscale and Nanoscale Physics +1210.7324 Functional Analysis +1210.7327 Optics +1210.7331 Differential Geometry +1210.7337 Analysis of PDEs +1210.7338 Phenomenology +1210.7339 +1210.7340 Analysis of PDEs +1210.7346 Numerical Analysis +1210.7348 Numerical Analysis +1210.7349 Discrete Mathematics +1210.7350 Information Retrieval +1210.7353 Combinatorics +1210.7354 +1210.7355 High Energy Astrophysical Phenomena +1210.7356 Combinatorics +1210.7357 Number Theory +1210.7358 Physics Education +1210.7359 Combinatorics +1210.7368 Classical Analysis and ODEs +1210.7372 Analysis of PDEs +1210.7373 Logic +1210.7379 Classical Analysis and ODEs +1210.7380 Classical Analysis and ODEs +1210.7383 Dynamical Systems +1210.7385 Distributed, Parallel, and Cluster Computing +1210.7387 Logic +1210.7388 +1210.7390 Optics +1210.7391 Algebraic Geometry +1210.7393 Analysis of PDEs +1210.7398 Lattice +1210.7399 Information Theory +1210.7400 Functional Analysis +1210.7401 Information Theory +1210.7403 Computer Vision and Pattern Recognition +1210.7405 Rings and Algebras +1210.7407 Phenomenology +1210.7416 +1210.7417 Cryptography and Security +1210.7420 Optimization and Control +1210.7422 Multiagent Systems +1210.7424 Analysis of PDEs +1210.7426 Complex Variables +1210.7429 Cosmology and Nongalactic Astrophysics +1210.7430 Statistics Theory +1210.7437 Algebraic Topology +1210.7440 Representation Theory +1210.7455 Phenomenology +1210.7456 Geophysics +1210.7459 History and Overview +1210.7461 Computer Vision and Pattern Recognition +1210.7463 Software Engineering +1210.7464 Phenomenology +1210.7466 +1210.7467 Combinatorics +1210.7470 Combinatorics +1210.7472 Phenomenology +1210.7473 Information Theory +1210.7476 Numerical Analysis +1210.7482 Other Computer Science +1210.7484 Lattice +1210.7485 Computation +1210.7488 Differential Geometry +1210.7489 Cosmology and Nongalactic Astrophysics +1210.7493 Cryptography and Security +1210.7494 Differential Geometry +1210.7496 Phenomenology +1210.7503 Probability +1210.7505 Atomic Physics +1210.7507 Optimization and Control +1210.7511 Operator Algebras +1210.7514 Category Theory +1210.7515 Information Theory +1210.7516 Combinatorics +1210.7522 +1210.7523 Theory +1210.7526 High Energy Astrophysical Phenomena +1210.7529 Rings and Algebras +1210.7531 Biomolecules +1210.7535 Theory +1210.7536 +1210.7537 Biomolecules +1210.7538 General Physics +1210.7542 Materials Science +1210.7552 General Physics +1210.7554 Complex Variables +1210.7555 Materials Science +1210.7565 Phenomenology +1210.7567 Phenomenology +1210.7576 Logic +1210.7577 Algebraic Geometry +1210.7579 +1210.7580 Analysis of PDEs +1210.7585 +1210.7586 Lattice +1210.7587 Probability +1210.7597 Mesoscale and Nanoscale Physics +1210.7600 Multiagent Systems +1210.7601 Mesoscale and Nanoscale Physics +1210.7605 Data Structures and Algorithms +1210.7606 Differential Geometry +1210.7610 +1210.7611 Lattice +1210.7612 Spectral Theory +1210.7616 Astrophysics of Galaxies +1210.7618 Combinatorics +1210.7620 Discrete Mathematics +1210.7621 Combinatorics +1210.7626 Distributed, Parallel, and Cluster Computing +1210.7630 Optimization and Control +1210.7631 Computer Vision and Pattern Recognition +1210.7636 Solar and Stellar Astrophysics +1210.7641 Computational Complexity +1210.7646 Earth and Planetary Astrophysics +1210.7647 Statistical Mechanics +1210.7650 Cryptography and Security +1210.7653 Combinatorics +1210.7655 Optics +1210.7656 Data Structures and Algorithms +1210.7657 Learning +1210.7658 Probability +1210.7660 Probability +1210.7663 Functional Analysis +1210.7664 Probability +1210.7666 Instrumentation and Detectors +1210.7669 Computer Vision and Pattern Recognition +1210.7670 Analysis of PDEs +1210.7671 Analysis of PDEs +1210.7674 +1210.7678 Other Computer Science +1210.7684 Discrete Mathematics +1210.7688 Algebraic Topology +1210.7689 +1210.7692 Algebraic Geometry +1210.7694 +1210.7697 Combinatorics +1210.7699 Solar and Stellar Astrophysics +1210.7703 High Energy Astrophysical Phenomena +1210.7707 Quantum Gases +1210.7708 Numerical Analysis +1210.7711 Information Theory +1210.7716 Functional Analysis +1210.7720 Chaotic Dynamics +1210.7722 Analysis of PDEs +1210.7732 Probability +1210.7734 +1210.7744 History and Overview +1210.7745 Soft Condensed Matter +1210.7748 Experiment +1210.7750 History and Overview +1210.7755 Materials Science +1210.7756 Cryptography and Security +1210.7766 Atomic Physics +1210.7767 Lattice +1210.7770 Solar and Stellar Astrophysics +1210.7772 Algebraic Topology +1210.7773 Probability +1210.7776 Solar and Stellar Astrophysics +1210.7779 Logic +1210.7781 Probability +1210.7783 Probability +1210.7784 General Literature +1210.7788 Computational Geometry +1210.7789 Networking and Internet Architecture +1210.7791 Lattice +1210.7794 Lattice +1210.7795 Numerical Analysis +cond-mat/9511093 +gr-qc/0001007 +gr-qc/0104036 +hep-th/0006004 Theory +hep-th/0011145 Theory +hep-th/0102036 Theory +math/0511225 Complex Variables +math/0703344 Algebraic Geometry +quant-ph/0401013 +quant-ph/0702017 +0704.2452 Information Theory +0707.0340 Combinatorics +0712.1656 Number Theory +0808.3277 Phenomenology +0809.0880 Mesoscale and Nanoscale Physics +0809.2386 Logic in Computer Science +0811.2246 Algebraic Geometry +0811.2283 Statistical Mechanics +0902.2122 Astrophysics of Galaxies +0902.3472 Algebraic Geometry +0903.0161 High Energy Astrophysical Phenomena +0903.0164 High Energy Astrophysical Phenomena +0903.0340 +0903.0579 Exactly Solvable and Integrable Systems +0904.3317 Theory +0904.3771 Group Theory +0907.5281 Materials Science +0908.0117 High Energy Astrophysical Phenomena +0910.4333 +0911.0614 +0911.0695 +1001.1531 Representation Theory +1001.4734 +1002.2164 Information Theory +1003.1528 Theory +1003.3730 Quantum Algebra +1004.3152 Materials Science +1005.0552 High Energy Astrophysical Phenomena +1006.2315 Probability +1007.2065 Statistical Mechanics +1008.1027 Probability +1010.0594 Statistical Mechanics +1010.1548 Theory +1010.3398 Differential Geometry +1011.2287 +1011.5380 Differential Geometry +1011.5730 Strongly Correlated Electrons +1011.6113 Phenomenology +1101.2286 Functional Analysis +1101.3070 Popular Physics +1101.5273 Astrophysics of Galaxies +1102.4065 Differential Geometry +1102.5474 Other Condensed Matter +1102.5737 +1104.0291 Discrete Mathematics +1104.1439 Quantum Gases +1104.4527 Optics +1104.5066 Classical Analysis and ODEs +1104.5108 +1105.2883 Metric Geometry +1105.4403 Exactly Solvable and Integrable Systems +1105.4910 Information Theory +1106.1147 Combinatorics +1106.2134 Physics and Society +1106.2419 Operator Algebras +1106.5759 Superconductivity +1106.5880 Analysis of PDEs +1106.6251 Machine Learning +1106.6283 High Energy Astrophysical Phenomena +1107.0569 +1107.1189 High Energy Astrophysical Phenomena +1107.3573 Theory +1108.3329 Computational Complexity +1108.3732 Systems and Control +1108.4003 Probability +1108.4313 +1108.4933 Superconductivity +1108.5742 Theory +1108.5953 Optimization and Control +1108.6003 Information Retrieval +1108.6020 Quantum Algebra +1109.2180 Phenomenology +1109.4475 Combinatorics +1109.5934 Statistical Mechanics +1110.1336 Adaptation and Self-Organizing Systems +1110.1799 Strongly Correlated Electrons +1110.2495 Strongly Correlated Electrons +1110.4344 Optics +1110.5763 Soft Condensed Matter +1110.6609 Optics +1111.0284 Combinatorics +1111.0425 Statistical Mechanics +1111.1639 General Physics +1111.1699 Lattice +1111.2119 +1111.5186 Materials Science +1111.5503 Quantum Gases +1111.6123 Statistical Mechanics +1111.6483 Mesoscale and Nanoscale Physics +1111.6722 Strongly Correlated Electrons +1111.7073 +1111.7175 Mesoscale and Nanoscale Physics +1111.7207 Analysis of PDEs +1112.0590 Experiment +1112.0823 Classical Analysis and ODEs +1112.0842 +1112.1039 Phenomenology +1112.1111 +1112.1356 Cosmology and Nongalactic Astrophysics +1112.2965 Statistical Mechanics +1112.4146 Phenomenology +1112.4761 Analysis of PDEs +1112.4772 Analysis of PDEs +1112.5107 Lattice +1112.5300 +1112.5329 Statistical Mechanics +1112.6283 Algebraic Geometry +1112.6290 Algebraic Geometry +1112.6389 Theory +1112.6408 +1201.2120 +1201.3232 Cell Behavior +1201.3251 Logic in Computer Science +1201.4709 Probability +1202.0188 Cosmology and Nongalactic Astrophysics +1202.0210 Number Theory +1202.1274 +1202.1655 Combinatorics +1202.2234 K-Theory and Homology +1202.3072 Phenomenology +1202.4518 Solar and Stellar Astrophysics +1202.4977 Statistical Mechanics +1202.6005 Cosmology and Nongalactic Astrophysics +1202.6035 Discrete Mathematics +1202.6051 Mesoscale and Nanoscale Physics +1202.6060 Earth and Planetary Astrophysics +1202.6145 +1202.6535 Logic +1202.6653 Instrumentation and Detectors +1203.0616 Solar and Stellar Astrophysics +1203.0673 Strongly Correlated Electrons +1203.0896 Strongly Correlated Electrons +1203.1159 Quantum Gases +1203.3064 Analysis of PDEs +1203.4612 +1203.4621 High Energy Astrophysical Phenomena +1203.4652 Superconductivity +1203.5193 +1203.5414 Computational Complexity +1203.6144 Strongly Correlated Electrons +1204.0376 +1204.0454 Group Theory +1204.0759 Strongly Correlated Electrons +1204.0925 General Physics +1204.1625 History and Philosophy of Physics +1204.1880 Numerical Analysis +1204.2375 Representation Theory +1204.2379 Phenomenology +1204.2609 Learning +1204.2631 +1204.3097 Information Theory +1204.3102 Combinatorics +1204.3104 Instrumentation and Detectors +1204.3105 Numerical Analysis +1204.3112 History and Overview +1204.3113 Data Structures and Algorithms +1204.3118 Mesoscale and Nanoscale Physics +1204.3119 Probability +1204.3120 Mesoscale and Nanoscale Physics +1204.3121 Combinatorics +1204.3124 Adaptation and Self-Organizing Systems +1204.3125 Instrumentation and Methods for Astrophysics +1204.3129 Algebraic Geometry +1204.3131 Mesoscale and Nanoscale Physics +1204.3139 Dynamical Systems +1204.3141 Networking and Internet Architecture +1204.3142 Representation Theory +1204.3153 Fluid Dynamics +1204.3154 High Energy Astrophysical Phenomena +1204.3155 Differential Geometry +1204.3156 General Finance +1204.3159 Rings and Algebras +1204.3161 Algebraic Geometry +1204.3163 +1204.3164 Other Computer Science +1204.3168 Combinatorics +1204.3169 Analysis of PDEs +1204.3171 Exactly Solvable and Integrable Systems +1204.3180 Discrete Mathematics +1204.3181 Theory +1204.3182 Optimization and Control +1204.3187 Computation +1204.3190 Combinatorics +1204.3191 Algebraic Geometry +1204.3192 Algebraic Geometry +1204.3193 Combinatorics +1204.3196 Representation Theory +1204.3197 Probability +1204.3199 Mesoscale and Nanoscale Physics +1204.3200 Digital Libraries +1204.3205 Geometric Topology +1204.3215 Combinatorics +1204.3221 Neural and Evolutionary Computing +1204.3222 Combinatorics +1204.3223 Databases +1204.3224 Other Computer Science +1204.3226 Physics Education +1204.3228 Numerical Analysis +1204.3230 Computers and Society +1204.3231 Materials Science +1204.3232 Probability +1204.3236 Sound +1204.3238 Information Theory +1204.3239 Discrete Mathematics +1204.3240 Formal Languages and Automata Theory +1204.3241 Numerical Analysis +1204.3244 Category Theory +1204.3245 Cryptography and Security +1204.3246 Functional Analysis +1204.3247 Theory +1204.3249 Logic in Computer Science +1204.3250 Probability +1204.3252 Superconductivity +1204.3253 Fluid Dynamics +1204.3254 Plasma Physics +1204.3259 Networking and Internet Architecture +1204.3261 Networking and Internet Architecture +1204.3263 Networking and Internet Architecture +1204.3264 Networking and Internet Architecture +1204.3265 Instrumentation and Methods for Astrophysics +1204.3267 History and Philosophy of Physics +1204.3271 Mesoscale and Nanoscale Physics +1204.3273 Soft Condensed Matter +1204.3274 Number Theory +1204.3284 Optimization and Control +1204.3287 Phenomenology +1204.3291 Statistical Mechanics +1204.3292 High Energy Astrophysical Phenomena +1204.3293 Discrete Mathematics +1204.3294 Algebraic Geometry +1204.3303 Algebraic Geometry +1204.3306 Functional Analysis +1204.3308 Probability +1204.3313 Combinatorics +1204.3314 Spectral Theory +1204.3316 Probability +1204.3320 General Physics +1204.3323 Mesoscale and Nanoscale Physics +1204.3328 Networking and Internet Architecture +1204.3336 Functional Analysis +1204.3337 Information Theory +1204.3338 Statistical Mechanics +1204.3339 Statistics Theory +1204.3340 Biological Physics +1204.3341 Social and Information Networks +1204.3342 Social and Information Networks +1204.3343 Social and Information Networks +1204.3346 +1204.3347 Theory +1204.3351 Probability +1204.3352 Social and Information Networks +1204.3353 Social and Information Networks +1204.3366 Rings and Algebras +1204.3367 Social and Information Networks +1204.3368 Combinatorics +1204.3372 Logic in Computer Science +1204.3374 Social and Information Networks +1204.3375 Social and Information Networks +1204.3380 Numerical Analysis +1204.3384 Information Theory +1204.3386 History and Philosophy of Physics +1204.3390 History and Philosophy of Physics +1204.3394 Materials Science +1204.3400 Classical Analysis and ODEs +1204.3401 Computers and Society +1204.3402 Number Theory +1204.3403 Classical Physics +1204.3409 Algebraic Geometry +1204.3410 Software Engineering +1204.3411 Statistical Mechanics +1204.3417 Algebraic Geometry +1204.3419 Classical Physics +1204.3429 +1204.3435 Phenomenology +1204.3441 Metric Geometry +1204.3452 Pricing of Securities +1204.3457 Social and Information Networks +1204.3459 +1204.3462 Analysis of PDEs +1204.3463 Social and Information Networks +1204.3469 Representation Theory +1204.3471 Distributed, Parallel, and Cluster Computing +1204.3472 Cosmology and Nongalactic Astrophysics +1204.3476 Numerical Analysis +1204.3477 Operator Algebras +1204.3478 Optics +1204.3479 +1204.3481 Social and Information Networks +1204.3485 Logic +1204.3491 Human-Computer Interaction +1204.3493 Superconductivity +1204.3494 Computer Science and Game Theory +1204.3495 Logic in Computer Science +1204.3502 Probability +1204.3506 Theory +1204.3511 Social and Information Networks +1204.3516 Social and Information Networks +1204.3523 Learning +1204.3524 Methodology +1204.3526 General Physics +1204.3528 +1204.3534 Social and Information Networks +1204.3535 Number Theory +1204.3538 Accelerator Physics +1204.3551 History and Philosophy of Physics +1204.3553 Distributed, Parallel, and Cluster Computing +1204.3555 +1204.3562 General Physics +1204.3565 Solar and Stellar Astrophysics +1204.3572 +1204.3575 Number Theory +1204.3576 Geometric Topology +1204.3581 Data Structures and Algorithms +1204.3582 Instrumentation and Methods for Astrophysics +1204.3592 Optimization and Control +1204.3595 Medical Physics +1204.3596 Social and Information Networks +1204.3598 Social and Information Networks +1204.3602 Algebraic Geometry +1204.3611 Social and Information Networks +1204.3615 Dynamical Systems +1204.3616 Computer Vision and Pattern Recognition +cond-mat/0702289 Materials Science +gr-qc/9507029 +gr-qc/9511005 +hep-ph/0604079 Phenomenology +math/0108073 Complex Variables +quant-ph/0409029 +quant-ph/0501010 +0707.2587 Populations and Evolution +0708.1904 Strongly Correlated Electrons +0807.2804 Strongly Correlated Electrons +0811.0308 Probability +0811.1386 Materials Science +0903.1627 Formal Languages and Automata Theory +0903.2513 Materials Science +0904.2721 Theory +0904.3998 Cosmology and Nongalactic Astrophysics +0906.2795 Combinatorics +0907.1426 Materials Science +0907.2029 Pattern Formation and Solitons +0907.3447 Soft Condensed Matter +0910.1173 Differential Geometry +0911.4936 Geometric Topology +1002.2745 Populations and Evolution +1003.3702 Materials Science +1005.5208 Analysis of PDEs +1005.5375 Numerical Analysis +1005.5732 Databases +1008.4391 Analysis of PDEs +1009.2962 Atomic Physics +1009.5657 Analysis of PDEs +1011.2079 Populations and Evolution +1011.2797 Neurons and Cognition +1011.4670 Atomic Physics +1012.4633 Phenomenology +1101.0487 Other Condensed Matter +1101.0998 Geometric Topology +1101.5386 Number Theory +1101.5535 Other Condensed Matter +1102.0177 Analysis of PDEs +1102.1489 Analysis of PDEs +1102.2977 Mesoscale and Nanoscale Physics +1102.4073 Analysis of PDEs +1103.2316 +1103.5258 Optimization and Control +1105.1215 Emerging Technologies +1105.1360 Mesoscale and Nanoscale Physics +1105.1375 Quantum Gases +1105.5873 Algebraic Geometry +1105.5963 Mesoscale and Nanoscale Physics +1105.6108 Strongly Correlated Electrons +1106.0410 Quantum Gases +1106.0796 Mesoscale and Nanoscale Physics +1106.2097 Theory +1106.2880 Mesoscale and Nanoscale Physics +1106.3958 +1107.2775 Phenomenology +1107.4672 Phenomenology +1108.1139 Superconductivity +1108.1590 +1108.2864 Formal Languages and Automata Theory +1108.3209 Category Theory +1108.3776 Soft Condensed Matter +1108.4540 +1108.5486 +1108.5740 Phenomenology +1108.5962 Mesoscale and Nanoscale Physics +1109.0277 Instrumentation and Detectors +1109.0632 Strongly Correlated Electrons +1109.2110 Phenomenology +1109.2735 Quantum Gases +1109.5319 Robotics +1109.6837 Statistical Mechanics +1110.0679 +1110.1123 Mesoscale and Nanoscale Physics +1110.1165 Discrete Mathematics +1110.2320 Theory +1110.2965 +1110.3220 Phenomenology +1110.3387 Statistical Mechanics +1110.3753 +1110.4615 Analysis of PDEs +1110.4668 Analysis of PDEs +1110.6305 Operator Algebras +1111.0588 +1111.1302 Optics +1111.1504 Logic +1111.4724 Networking and Internet Architecture +1111.5032 +1111.5336 +1111.5418 Solar and Stellar Astrophysics +1112.0964 Superconductivity +1112.1507 +1112.1819 Strongly Correlated Electrons +1112.2565 Phenomenology +1112.2832 Materials Science +1112.2970 High Energy Astrophysical Phenomena +1112.3923 +1112.5115 Phenomenology +1112.5619 Other Condensed Matter +1112.6060 Numerical Analysis +1201.0750 +1201.1888 Rings and Algebras +1201.3800 Complex Variables +1201.5455 +1201.5476 Instrumentation and Methods for Astrophysics +1201.5546 Physics Education +1201.5967 Combinatorics +1201.6183 Dynamical Systems +1201.6254 Numerical Analysis +1201.6437 Probability +1201.6527 Systems and Control +1201.6617 Optics +1201.6647 Atomic Physics +1202.0002 Algebraic Geometry +1202.0008 Theory +1202.0012 Populations and Evolution +1202.0016 Analysis of PDEs +1202.0017 History and Overview +1202.0018 Cryptography and Security +1202.0020 History and Overview +1202.0022 Information Theory +1202.0023 Combinatorics +1202.0025 History and Overview +1202.0028 History and Overview +1202.0030 Dynamical Systems +1202.0031 Computers and Society +1202.0032 History and Overview +1202.0034 Differential Geometry +1202.0035 History and Overview +1202.0037 History and Overview +1202.0039 History and Overview +1202.0040 Accelerator Physics +1202.0049 Superconductivity +1202.0052 +1202.0056 Functional Analysis +1202.0061 Quantum Algebra +1202.0063 Populations and Evolution +1202.0065 Algebraic Geometry +1202.0066 Representation Theory +1202.0068 Probability +1202.0076 +1202.0078 Methodology +1202.0080 Phenomenology +1202.0081 Mesoscale and Nanoscale Physics +1202.0082 Data Structures and Algorithms +1202.0086 Statistical Mechanics +1202.0093 Analysis of PDEs +1202.0097 Information Theory +1202.0101 Methodology +1202.0102 Instrumentation and Methods for Astrophysics +1202.0108 Networking and Internet Architecture +1202.0114 Optics +1202.0116 Computation and Language +1202.0118 Representation Theory +1202.0122 +1202.0125 High Energy Astrophysical Phenomena +1202.0127 Functional Analysis +1202.0133 Differential Geometry +1202.0137 Logic +1202.0138 Differential Geometry +1202.0142 Computational Finance +1202.0147 Classical Analysis and ODEs +1202.0148 Phenomenology +1202.0153 Combinatorics +1202.0161 Solar and Stellar Astrophysics +1202.0162 Algebraic Geometry +1202.0163 Information Theory +1202.0164 +1202.0176 Optimization and Control +1202.0178 +1202.0179 Symbolic Computation +1202.0181 Instrumentation and Methods for Astrophysics +1202.0189 Number Theory +1202.0195 Phenomenology +1202.0198 Accelerator Physics +1202.0199 Number Theory +1202.0200 Cryptography and Security +1202.0204 Information Theory +1202.0207 Networking and Internet Architecture +1202.0209 Classical Analysis and ODEs +1202.0212 Networking and Internet Architecture +1202.0216 Computer Vision and Pattern Recognition +1202.0217 Experiment +1202.0218 Analysis of PDEs +1202.0219 Classical Analysis and ODEs +1202.0223 Cryptography and Security +1202.0235 +1202.0237 Numerical Analysis +1202.0246 History and Overview +1202.0247 Algebraic Geometry +1202.0249 Classical Analysis and ODEs +1202.0252 Accelerator Physics +1202.0256 Accelerator Physics +1202.0261 +1202.0266 Combinatorics +1202.0267 Accelerator Physics +1202.0270 Accelerator Physics +1202.0271 Solar and Stellar Astrophysics +cond-mat/0603653 Strongly Correlated Electrons +cond-mat/9806325 Strongly Correlated Electrons +cs/0611082 Computational Complexity +math/0405416 Classical Analysis and ODEs +math/0405559 Classical Analysis and ODEs +0704.2744 Algebraic Geometry +0904.1426 General Finance +0908.3512 Information Theory +0910.1142 Complex Variables +1003.4093 Group Theory +1004.0747 Combinatorics +1010.4247 Social and Information Networks +1012.3898 Number Theory +1012.4047 Number Theory +1012.4972 Theory +1101.4784 Mesoscale and Nanoscale Physics +1101.4939 +1103.4305 Differential Geometry +1104.0486 +1104.2804 Number Theory +1104.3492 Geometric Topology +1104.4950 Artificial Intelligence +1106.1928 Combinatorics +1107.0098 Computational Complexity +1107.2394 Strongly Correlated Electrons +1107.3582 Algebraic Topology +1107.4989 Rings and Algebras +1108.6030 Dynamical Systems +1109.0408 Chemical Physics +1109.0959 +1109.1596 Cosmology and Nongalactic Astrophysics +1109.5801 Combinatorics +1110.5037 Logic +1110.5679 Statistics Theory +1111.0277 Analysis of PDEs +1111.4472 +1111.6624 Phenomenology +1112.0284 Differential Geometry +1112.1109 Soft Condensed Matter +1112.2963 Statistical Mechanics +1112.3882 Atomic Physics +1201.2698 Data Analysis, Statistics and Probability +1201.5661 +1201.5908 Probability +1201.6200 Mesoscale and Nanoscale Physics +1202.3831 +1202.4091 Theory +1202.4799 Strongly Correlated Electrons +1202.6115 Strongly Correlated Electrons +1203.0211 +1203.4657 Quantum Gases +1203.6261 +1203.6855 Functional Analysis +1204.0389 +1204.0519 Theory +1204.1263 Fluid Dynamics +1204.1291 +1204.4177 Mesoscale and Nanoscale Physics +1204.5345 Pattern Formation and Solitons +1204.5360 Mesoscale and Nanoscale Physics +1204.6221 Disordered Systems and Neural Networks +1205.0145 General Physics +1205.1380 Data Analysis, Statistics and Probability +1205.2434 Geometric Topology +1205.3355 Theory +1205.3422 Experiment +1205.3770 Phenomenology +1205.3937 Combinatorics +1205.4887 Lattice +1205.5648 Phenomenology +1205.5817 Cosmology and Nongalactic Astrophysics +1206.3435 Mesoscale and Nanoscale Physics +1206.4591 Combinatorics +1207.0709 Number Theory +1207.4090 Theory +1207.4362 +1207.4770 Classical Physics +1207.5888 Group Theory +1207.6067 Numerical Analysis +1207.6168 Strongly Correlated Electrons +1207.6340 Superconductivity +1207.6744 Distributed, Parallel, and Cluster Computing +1208.0016 High Energy Astrophysical Phenomena +1208.0048 Chaotic Dynamics +1208.0589 Number Theory +1208.0590 Human-Computer Interaction +1208.0593 Systems and Control +1208.0603 +1208.0617 Geophysics +1208.0627 Networking and Internet Architecture +1208.0628 Machine Learning +1208.0629 Differential Geometry +1208.0631 Computer Science and Game Theory +1208.0642 General Finance +1208.0643 Materials Science +1208.0648 Differential Geometry +1208.0651 Computation +1208.0655 Dynamical Systems +1208.0660 K-Theory and Homology +1208.0664 Distributed, Parallel, and Cluster Computing +1208.0669 Chemical Physics +1208.0670 Number Theory +1208.0684 Databases +1208.0686 Quantum Gases +1208.0688 Cryptography and Security +1208.0690 Information Retrieval +1208.0691 Chemical Physics +1208.0694 Computational Physics +1208.0705 Phenomenology +1208.0707 Atomic Physics +1208.0708 Logic +1208.0709 Spectral Theory +1208.0721 Probability +1208.0722 Discrete Mathematics +1208.0723 Superconductivity +1208.0724 Materials Science +1208.0726 Exactly Solvable and Integrable Systems +1208.0730 Numerical Analysis +1208.0733 High Energy Astrophysical Phenomena +1208.0735 Strongly Correlated Electrons +1208.0739 Mesoscale and Nanoscale Physics +1208.0741 Accelerator Physics +1208.0748 +1208.0754 Classical Analysis and ODEs +1208.0755 Other Computer Science +1208.0756 Materials Science +1208.0758 Functional Analysis +1208.0762 +1208.0767 +1208.0770 Computers and Society +1208.0771 Cellular Automata and Lattice Gases +1208.0772 Computational Physics +1208.0775 Strongly Correlated Electrons +1208.0783 Functional Analysis +1208.0784 Materials Science +1208.0789 Analysis of PDEs +1208.0793 Cosmology and Nongalactic Astrophysics +1208.0800 Data Analysis, Statistics and Probability +1208.0803 Cryptography and Security +1208.0805 Information Theory +1208.0806 Machine Learning +1208.0808 High Energy Astrophysical Phenomena +1208.0810 High Energy Astrophysical Phenomena +1208.0813 Combinatorics +1208.0819 Cosmology and Nongalactic Astrophysics +hep-th/0612076 Theory +0710.5251 Algebraic Geometry +0803.3276 +0809.1885 Algebraic Geometry +0810.4830 Differential Geometry +0812.4455 Statistical Finance +0902.4732 Number Theory +math/0012030 Algebraic Topology +math/0606513 K-Theory and Homology +math/0611344 Algebraic Topology +0706.1989 Mesoscale and Nanoscale Physics +0707.2619 Strongly Correlated Electrons +0708.2312 Combinatorics +0709.0613 +0710.5586 Strongly Correlated Electrons +0711.3588 Representation Theory +0803.1734 Mesoscale and Nanoscale Physics +0803.3590 Trading and Market Microstructure +0805.3768 Mesoscale and Nanoscale Physics +0805.4535 Statistics Theory +0806.1491 Theory +0806.2297 Other Condensed Matter +0807.2194 Other Condensed Matter +0808.1730 +0809.2758 Materials Science +0809.3549 Combinatorics +0809.4575 +0809.4679 Statistics Theory +0810.1993 Strongly Correlated Electrons +0810.3421 Mesoscale and Nanoscale Physics +0810.4706 Mesoscale and Nanoscale Physics +0811.2108 Mesoscale and Nanoscale Physics +0811.2252 Superconductivity +0811.4706 Information Theory +0812.3763 Materials Science +0901.0690 Commutative Algebra +0901.1053 Computational Physics +0901.1995 Statistical Mechanics +0901.2081 Statistical Mechanics +0901.2475 Mesoscale and Nanoscale Physics +0901.4819 Commutative Algebra +0902.0234 +0902.3320 Phenomenology +0902.3389 Strongly Correlated Electrons +0902.4563 Earth and Planetary Astrophysics +0902.4766 Strongly Correlated Electrons +0903.1908 Metric Geometry +0903.3050 Probability +0903.3723 +0904.0777 Functional Analysis +0904.0932 Probability +0904.1790 Category Theory +0904.2078 Functional Analysis +0904.2955 Logic +0904.3364 Phenomenology +0904.3754 +0904.3755 Materials Science +0904.3759 Analysis of PDEs +0904.3760 High Energy Astrophysical Phenomena +0904.3763 Computational Physics +0904.3764 Group Theory +0904.3765 Plasma Physics +0904.3766 Strongly Correlated Electrons +0904.3767 Metric Geometry +0904.3777 Number Theory +0904.3778 Information Theory +0904.3780 Numerical Analysis +0904.3781 Chemical Physics +0904.3794 Data Analysis, Statistics and Probability +0904.3795 Optimization and Control +0904.3797 Networking and Internet Architecture +0904.3802 Dynamical Systems +0904.3803 Analysis of PDEs +0904.3804 Differential Geometry +0904.3805 Mesoscale and Nanoscale Physics +0904.3808 Artificial Intelligence +0904.3809 Strongly Correlated Electrons +0904.3812 Statistics Theory +0904.3815 Experiment +0904.3819 Number Theory +0904.3827 Symbolic Computation +0904.3828 Combinatorics +0904.3831 Functional Analysis +0904.3835 Combinatorics +0904.3842 Statistics Theory +0904.3845 Algebraic Geometry +0904.3851 Superconductivity +0904.3854 Geometric Topology +0904.3855 General Mathematics +0904.3867 +0904.3868 General Physics +0904.3869 +0904.3871 Probability +0904.3875 Instrumentation and Methods for Astrophysics +0904.3880 Instrumentation and Methods for Astrophysics +0904.3881 Statistical Mechanics +0904.3884 Number Theory +0904.3897 Mesoscale and Nanoscale Physics +0904.3898 Data Structures and Algorithms +0904.3900 Numerical Analysis +0904.3915 Applications +0904.3921 General Mathematics +0904.3923 +0904.3927 Computational Complexity +0904.3929 General Finance +astro-ph/0601659 +cond-mat/9604096 Strongly Correlated Electrons +cond-mat/9706183 Strongly Correlated Electrons +cond-mat/9805320 Superconductivity +math-ph/0701076 +math/0512655 Rings and Algebras +math/0606542 Geometric Topology +math/0608601 Rings and Algebras +math/0608733 Algebraic Topology +math/0608750 Representation Theory +physics/0610159 General Physics +0705.0413 Data Structures and Algorithms +0706.2041 +0707.2494 +0707.3263 Distributed, Parallel, and Cluster Computing +0709.1711 Geometric Topology +0710.1490 Mesoscale and Nanoscale Physics +0710.5927 +0711.0162 Logic +0711.4931 Optics +0712.0113 +0712.2456 Theory +0801.1958 +0801.3753 +0802.2082 +0802.2767 Representation Theory +0802.3032 Phenomenology +0802.4024 +0802.4074 Geometric Topology +0803.0452 +0803.0758 Symplectic Geometry +0803.0955 Complex Variables +0803.3242 Theory +0804.0886 Probability +0804.2662 Theory +0804.3077 Strongly Correlated Electrons +0804.3757 Algebraic Geometry +0804.4698 +0805.1012 Theory +0805.1701 +0805.1713 +0805.2462 Phenomenology +0805.2781 Materials Science +0805.3526 Strongly Correlated Electrons +0806.1218 Theory +0806.1411 Materials Science +0806.2951 Mesoscale and Nanoscale Physics +0806.3011 +0806.3665 Statistical Mechanics +0806.3951 Theory +0806.4781 Strongly Correlated Electrons +0807.0455 +0807.2644 +0807.2666 Information Theory +0807.3194 Mesoscale and Nanoscale Physics +0807.3199 Mesoscale and Nanoscale Physics +0808.0930 +0808.2112 +0808.2569 Strongly Correlated Electrons +0808.2891 Superconductivity +0808.3938 Probability +0809.0963 Phenomenology +0809.1004 +0809.1627 Theory +0809.1663 +0809.2347 Strongly Correlated Electrons +0809.4043 +0809.4341 Superconductivity +0809.4696 Combinatorics +0810.0525 Theory +0810.0571 Experiment +0810.0808 Algebraic Topology +0810.3526 +0810.4700 Functional Analysis +0810.5240 Representation Theory +0811.0866 Theory +0811.1373 Algebraic Geometry +0811.3604 +0811.3869 +0811.4073 +0811.4629 +0811.4716 Analysis of PDEs +0812.0556 Pricing of Securities +0812.1576 Theory +0812.2163 +0812.2279 Strongly Correlated Electrons +0812.2694 Mesoscale and Nanoscale Physics +0812.2786 +0812.2902 Phenomenology +0812.3150 Phenomenology +0812.3539 Phenomenology +0812.3595 Theory +0812.3611 +0812.3952 Theory +0812.4484 Phenomenology +0812.4933 +0901.0905 High Energy Astrophysical Phenomena +0901.1645 Experiment +0901.1964 Information Theory +0901.2032 Strongly Correlated Electrons +0901.2236 Phenomenology +0901.3188 Combinatorics +0901.3263 Commutative Algebra +0901.3543 Theory +0901.3609 Theory +0901.3622 Theory +0901.4117 Phenomenology +0901.4806 Theory +0902.0366 Other Condensed Matter +0902.0818 Mesoscale and Nanoscale Physics +0902.1271 Experiment +0902.2197 Cosmology and Nongalactic Astrophysics +0902.2286 Quantum Algebra +0902.2453 Theory +0902.2490 +0902.2876 Lattice +0902.3435 Other Condensed Matter +0902.4492 Strongly Correlated Electrons +0903.0264 +0903.0362 Rings and Algebras +0903.0395 +0903.1048 +0903.1120 Phenomenology +0903.2030 Mesoscale and Nanoscale Physics +0903.2246 Phenomenology +0903.2258 +0903.2350 Cosmology and Nongalactic Astrophysics +0903.2667 Phenomenology +0903.2830 Phenomenology +0903.3013 Cosmology and Nongalactic Astrophysics +0903.3321 Theory +0903.3333 Mesoscale and Nanoscale Physics +0903.3351 Fluid Dynamics +0903.3396 Phenomenology +0903.3547 Functional Analysis +0903.4029 Phenomenology +0903.4059 +0903.4166 +0903.4605 +0903.4834 Phenomenology +0903.4905 Phenomenology +0903.5183 Phenomenology +0903.5257 Cosmology and Nongalactic Astrophysics +0903.5319 +0903.5370 Cosmology and Nongalactic Astrophysics +0904.0008 Theory +0904.0188 Theory +0904.0258 +0904.0641 Theory +0904.0796 Earth and Planetary Astrophysics +0904.1305 Theory +0904.1378 Phenomenology +0904.1416 Phenomenology +0904.2451 Phenomenology +0904.2599 +0904.2822 +0904.3318 High Energy Astrophysical Phenomena +0904.3479 Theory +0904.3483 Theory +0904.3640 Phenomenology +0904.4076 Solar and Stellar Astrophysics +0904.4210 +0904.4857 Phenomenology +0905.0774 Phenomenology +0905.1259 Theory +0905.1649 Phenomenology +0905.1825 Optimization and Control +0905.2084 Cosmology and Nongalactic Astrophysics +0905.2421 +0905.2566 Lattice +0905.2743 Representation Theory +0905.3202 Statistical Mechanics +0905.4326 Theory +0906.0286 +0906.0371 Cosmology and Nongalactic Astrophysics +0906.0554 Theory +0906.1217 High Energy Astrophysical Phenomena +0906.1570 +0906.1935 Phenomenology +0906.1959 Materials Science +0906.2161 Theory +0906.2350 Cosmology and Nongalactic Astrophysics +0906.2398 High Energy Astrophysical Phenomena +0906.2399 +0906.2552 Mesoscale and Nanoscale Physics +0906.2627 Superconductivity +0906.3000 +0906.3349 Cosmology and Nongalactic Astrophysics +0906.3599 Lattice +0906.4398 Strongly Correlated Electrons +0906.4523 Phenomenology +0906.4715 Phenomenology +0907.0107 Solar and Stellar Astrophysics +0907.0471 General Physics +0907.0570 +0907.0773 Representation Theory +0907.0898 Statistical Mechanics +0907.0907 Computational Geometry +0907.1032 General Physics +0907.1115 Mesoscale and Nanoscale Physics +0907.1199 +0907.1286 +astro-ph/0002245 +astro-ph/0005036 +astro-ph/0005269 +astro-ph/0005448 +astro-ph/0007114 +astro-ph/0009052 +astro-ph/0009061 +astro-ph/0012337 +astro-ph/0102506 +astro-ph/0103301 +astro-ph/0104112 +astro-ph/0105401 +astro-ph/0105473 +astro-ph/0105545 +astro-ph/0106002 +astro-ph/0106225 +astro-ph/0106476 +astro-ph/0108090 +astro-ph/0108181 +astro-ph/0108218 +astro-ph/0201134 +astro-ph/0202064 +astro-ph/0202393 +astro-ph/0204007 +astro-ph/0204152 +astro-ph/0204275 +astro-ph/0205331 +astro-ph/0205380 +astro-ph/0207554 +astro-ph/0208055 +astro-ph/0208447 +astro-ph/0209183 +astro-ph/0209544 +astro-ph/0210283 +astro-ph/0210462 +astro-ph/0210660 +astro-ph/0211470 +astro-ph/0301149 +astro-ph/0302262 +astro-ph/0302293 +astro-ph/0303249 +astro-ph/0303273 +astro-ph/0303392 +astro-ph/0303542 +astro-ph/0304078 +astro-ph/0305257 +astro-ph/0305541 +astro-ph/0307100 +astro-ph/0307104 +astro-ph/0307282 +astro-ph/0307338 +astro-ph/0310207 +astro-ph/0310342 +astro-ph/0310622 +astro-ph/0311547 +astro-ph/0312290 +astro-ph/0401052 +astro-ph/0401252 +astro-ph/0403098 +astro-ph/0405187 +astro-ph/0405198 +astro-ph/0405341 +astro-ph/0405356 +astro-ph/0406095 +astro-ph/0408569 +astro-ph/0409403 +astro-ph/0409651 +astro-ph/0410209 +astro-ph/0412573 +astro-ph/0501351 +astro-ph/0503485 +astro-ph/0503692 +astro-ph/0508046 +astro-ph/0509481 +astro-ph/0509725 +astro-ph/0510315 +astro-ph/0511053 +astro-ph/0511164 +astro-ph/0511319 +astro-ph/0601095 +astro-ph/0601672 +astro-ph/0603114 +astro-ph/0605681 +astro-ph/0703308 +astro-ph/9208005 +astro-ph/9510072 +astro-ph/9510073 +astro-ph/9604143 +astro-ph/9704165 +astro-ph/9707340 +astro-ph/9710107 +astro-ph/9809272 +astro-ph/9812022 +astro-ph/9906261 +astro-ph/9907255 +astro-ph/9911459 +cond-mat/0410417 Other Condensed Matter +cond-mat/0502403 Statistical Mechanics +cond-mat/0503402 Mesoscale and Nanoscale Physics +cond-mat/0503644 Mesoscale and Nanoscale Physics +cond-mat/0505728 Mesoscale and Nanoscale Physics +cond-mat/0512628 Other Condensed Matter +cond-mat/0609476 Other Condensed Matter +cond-mat/0611260 Statistical Mechanics +gr-qc/0211028 +gr-qc/0402051 +gr-qc/0506040 +gr-qc/9310012 +gr-qc/9409001 +gr-qc/9503050 +gr-qc/9606052 +gr-qc/9609065 +gr-qc/9706075 +gr-qc/9808067 +gr-qc/9808082 +gr-qc/9906064 +hep-ex/0106103 Experiment +hep-ex/0203023 Experiment +hep-ex/0209028 Experiment +hep-ex/0309041 Experiment +hep-ex/9606002 Experiment +hep-lat/0104001 Lattice +hep-lat/0611014 Lattice +hep-lat/9306024 Lattice +hep-lat/9503004 Lattice +hep-lat/9602022 Lattice +hep-lat/9807039 Lattice +hep-lat/9906027 Lattice +hep-lat/9911004 Lattice +hep-ph/0002126 Phenomenology +hep-ph/0003129 Phenomenology +hep-ph/0003233 Phenomenology +hep-ph/0004095 Phenomenology +hep-ph/0004173 Phenomenology +hep-ph/0006041 Phenomenology +hep-ph/0007359 Phenomenology +hep-ph/0102033 Phenomenology +hep-ph/0103063 Phenomenology +hep-ph/0104277 Phenomenology +hep-ph/0109106 Phenomenology +hep-ph/0110333 Phenomenology +hep-ph/0111327 Phenomenology +hep-ph/0112119 Phenomenology +hep-ph/0112161 Phenomenology +hep-ph/0201036 Phenomenology +hep-ph/0201081 Phenomenology +hep-ph/0204342 Phenomenology +hep-ph/0206077 Phenomenology +hep-ph/0206121 Phenomenology +hep-ph/0206310 Phenomenology +hep-ph/0209180 Phenomenology +hep-ph/0209269 Phenomenology +hep-ph/0302080 Phenomenology +hep-ph/0303092 Phenomenology +hep-ph/0305237 Phenomenology +hep-ph/0306057 Phenomenology +hep-ph/0308038 Phenomenology +hep-ph/0308134 Phenomenology +hep-ph/0308300 Phenomenology +hep-ph/0402115 Phenomenology +hep-ph/0402179 Phenomenology +hep-ph/0404184 Phenomenology +hep-ph/0411168 Phenomenology +hep-ph/0501272 Phenomenology +hep-ph/0503132 Phenomenology +hep-ph/0503158 Phenomenology +hep-ph/0504231 Phenomenology +hep-ph/0507277 Phenomenology +hep-ph/0602189 Phenomenology +hep-ph/0602252 Phenomenology +hep-ph/9205205 Phenomenology +hep-ph/9207268 Phenomenology +hep-ph/9306290 Phenomenology +hep-ph/9310247 Phenomenology +hep-ph/9312296 Phenomenology +hep-ph/9405345 Phenomenology +hep-ph/9412283 Phenomenology +hep-ph/9504427 Phenomenology +hep-ph/9505207 Phenomenology +hep-ph/9509279 Phenomenology +hep-ph/9510408 Phenomenology +hep-ph/9604202 Phenomenology +hep-ph/9604355 Phenomenology +hep-ph/9605398 Phenomenology +hep-ph/9605448 Phenomenology +hep-ph/9606289 Phenomenology +hep-ph/9606311 Phenomenology +hep-ph/9606345 Phenomenology +hep-ph/9609260 Phenomenology +hep-ph/9610479 Phenomenology +hep-ph/9612217 Phenomenology +hep-ph/9612363 Phenomenology +hep-ph/9702305 Phenomenology +hep-ph/9704244 Phenomenology +hep-ph/9704398 Phenomenology +hep-ph/9704448 Phenomenology +hep-ph/9705242 Phenomenology +hep-ph/9705467 Phenomenology +hep-ph/9707423 Phenomenology +hep-ph/9710438 Phenomenology +hep-ph/9803237 Phenomenology +hep-ph/9806263 Phenomenology +hep-ph/9807229 Phenomenology +hep-ph/9807570 Phenomenology +hep-ph/9809321 Phenomenology +hep-ph/9810466 Phenomenology +hep-ph/9901362 Phenomenology +hep-ph/9903387 Phenomenology +hep-ph/9905443 Phenomenology +hep-th/0001033 Theory +hep-th/0001145 Theory +hep-th/0003271 Theory +hep-th/0005245 Theory +hep-th/0006046 Theory +hep-th/0110260 Theory +hep-th/0111260 Theory +hep-th/0202174 Theory +hep-th/0206046 Theory +hep-th/0208124 Theory +hep-th/0210220 Theory +hep-th/0302163 Theory +hep-th/0305014 Theory +hep-th/0310227 Theory +hep-th/0311084 Theory +hep-th/0312022 Theory +hep-th/0312310 Theory +hep-th/0408069 Theory +hep-th/0410076 Theory +hep-th/0412277 Theory +hep-th/0412320 Theory +hep-th/0502005 Theory +hep-th/0506145 Theory +hep-th/0506184 Theory +hep-th/0512188 Theory +hep-th/9402002 Theory +hep-th/9410167 Theory +hep-th/9411149 Theory +hep-th/9412167 Theory +hep-th/9502122 Theory +hep-th/9503006 Theory +hep-th/9503014 Theory +hep-th/9503163 Theory +hep-th/9505004 Theory +hep-th/9505105 Theory +hep-th/9505162 Theory +hep-th/9506057 Theory +hep-th/9507168 Theory +hep-th/9509161 Theory +hep-th/9509171 Theory +hep-th/9510017 Theory +hep-th/9510182 Theory +hep-th/9512177 Theory +hep-th/9512178 Theory +hep-th/9601029 Theory +hep-th/9602022 Theory +hep-th/9603061 Theory +hep-th/9603126 Theory +hep-th/9604004 Theory +hep-th/9604055 Theory +hep-th/9604166 Theory +hep-th/9605094 Theory +hep-th/9605112 Theory +hep-th/9606001 Theory +hep-th/9608096 Theory +hep-th/9609026 Theory +hep-th/9609126 Theory +hep-th/9610043 Theory +hep-th/9610172 Theory +hep-th/9610193 Theory +hep-th/9611127 Theory +hep-th/9611170 Theory +hep-th/9803117 Theory +hep-th/9803132 Theory +hep-th/9811022 Theory +hep-th/9903225 Theory +hep-th/9904176 Theory +hep-th/9905015 Theory +hep-th/9907213 Theory +hep-th/9909056 Theory +math-ph/9903028 +math/0010015 Differential Geometry +nucl-ex/0312016 +nucl-th/0004023 +nucl-th/0112085 +nucl-th/0204054 +nucl-th/0208001 +nucl-th/0305100 +nucl-th/0305101 +nucl-th/0307036 +nucl-th/9511028 +nucl-th/9812034 +nucl-th/9901054 +nucl-th/9912066 +physics/0302093 Classical Physics +quant-ph/9811050 +quant-ph/9812021 +quant-ph/9906062 +0704.2391 Algebraic Geometry +0709.2490 +0710.5088 +0712.1876 +0712.2108 Populations and Evolution +0712.3369 Operator Algebras +0712.3580 Analysis of PDEs +0801.4140 +0802.3307 Probability +0803.1229 +0804.2458 Probability +0806.2211 +0806.2913 +0807.5040 Differential Geometry +0809.1722 Dynamical Systems +0809.3092 Statistics Theory +0809.4344 Fluid Dynamics +0810.0164 Differential Geometry +0810.0861 Other Condensed Matter +0810.0902 +0811.0526 Strongly Correlated Electrons +0811.0530 Strongly Correlated Electrons +0812.1740 Lattice +0812.3197 +0812.3657 Strongly Correlated Electrons +0901.4380 Solar and Stellar Astrophysics +0902.0935 +0902.3407 Theory +0902.3592 Commutative Algebra +0902.3608 Phenomenology +0903.1698 Dynamical Systems +0903.1744 Combinatorics +0903.3081 Probability +0903.3595 Phenomenology +0903.4571 Algebraic Geometry +0903.4801 Analysis of PDEs +0904.0162 +0904.1268 +0904.2305 Fluid Dynamics +0904.4095 Functional Analysis +0905.2168 Analysis of PDEs +0905.4140 Phenomenology +0905.4388 Algebraic Geometry +0905.4779 Materials Science +0905.4859 +0906.1083 Commutative Algebra +0906.1319 Numerical Analysis +0906.3659 +0906.3797 +0907.0825 Disordered Systems and Neural Networks +0907.0932 +0907.1692 Strongly Correlated Electrons +0907.2887 Cosmology and Nongalactic Astrophysics +0907.3463 +0907.3554 Phenomenology +0907.3719 Lattice +0907.4384 Classical Analysis and ODEs +0907.4755 Theory +0907.4976 Other Condensed Matter +0908.0220 Fluid Dynamics +0908.0346 Cosmology and Nongalactic Astrophysics +0908.0632 Soft Condensed Matter +0908.1063 +0908.2960 Probability +0908.4194 +0908.4203 Differential Geometry +0908.4466 Phenomenology +0909.1081 Superconductivity +0909.1754 Phenomenology +0909.2037 Phenomenology +0909.2431 +0909.3293 Phenomenology +0909.3518 Phenomenology +0909.3782 +0909.4044 +0909.4668 +0909.4810 +0909.4917 Quantum Gases +0909.5028 Phenomenology +0909.5053 Phenomenology +0909.5251 Cosmology and Nongalactic Astrophysics +0910.0900 +0910.1284 +0910.1977 +0910.3052 Experiment +0910.3604 +0910.5478 Strongly Correlated Electrons +0911.0656 Molecular Networks +0911.1377 +0911.2148 Strongly Correlated Electrons +0911.2243 +0911.4013 +0911.4110 Number Theory +0911.5614 Phenomenology +0912.0118 Medical Physics +0912.0171 Machine Learning +0912.1184 Strongly Correlated Electrons +0912.1280 Number Theory +0912.2091 Combinatorics +0912.2095 Earth and Planetary Astrophysics +0912.2103 Cosmology and Nongalactic Astrophysics +0912.2106 High Energy Astrophysical Phenomena +0912.2108 Neurons and Cognition +0912.2112 Earth and Planetary Astrophysics +0912.2116 Number Theory +0912.2121 Number Theory +0912.2128 Logic in Computer Science +0912.2134 Databases +0912.2136 Biological Physics +0912.2138 Networking and Internet Architecture +0912.2139 Optics +0912.2140 Mesoscale and Nanoscale Physics +0912.2160 Discrete Mathematics +0912.2167 Cosmology and Nongalactic Astrophysics +0912.2173 Strongly Correlated Electrons +0912.2174 Data Structures and Algorithms +0912.2177 Mesoscale and Nanoscale Physics +0912.2180 Probability +0912.2185 Classical Analysis and ODEs +0912.2187 Fluid Dynamics +0912.2188 +0912.2189 Phenomenology +0912.2193 Probability +0912.2200 Theory +0912.2202 Analysis of PDEs +0912.2204 Theory +0912.2210 Dynamical Systems +0912.2211 +0912.2215 Differential Geometry +0912.2217 Differential Geometry +0912.2230 Differential Geometry +0912.2235 Mesoscale and Nanoscale Physics +0912.2242 High Energy Astrophysical Phenomena +0912.2244 +0912.2245 Differential Geometry +0912.2254 High Energy Astrophysical Phenomena +0912.2260 Combinatorics +0912.2266 High Energy Astrophysical Phenomena +0912.2277 Strongly Correlated Electrons +0912.2279 Probability +0912.2282 Databases +0912.2284 Networking and Internet Architecture +0912.2285 Optimization and Control +0912.2288 Quantitative Methods +0912.2289 Networking and Internet Architecture +0912.2290 Astrophysics of Galaxies +0912.2291 Combinatorics +0912.2293 Networking and Internet Architecture +0912.2294 Optics +0912.2296 Networking and Internet Architecture +0912.2298 Networking and Internet Architecture +0912.2301 Software Engineering +0912.2302 Computer Vision and Pattern Recognition +0912.2303 Distributed, Parallel, and Cluster Computing +0912.2304 Rings and Algebras +0912.2305 Statistical Mechanics +0912.2306 Cryptography and Security +0912.2307 Information Retrieval +0912.2310 Neural and Evolutionary Computing +0912.2311 Information Retrieval +0912.2314 Learning +0912.2315 Functional Analysis +0912.2316 Computer Vision and Pattern Recognition +0912.2317 Instrumentation and Methods for Astrophysics +0912.2318 Earth and Planetary Astrophysics +0912.2319 Cryptography and Security +0912.2320 Software Engineering +0912.2325 Astrophysics of Galaxies +0912.2326 Populations and Evolution +0912.2332 Combinatorics +0912.2342 Quantum Algebra +cond-mat/0507459 Superconductivity +cond-mat/0604013 Materials Science +cond-mat/0612530 Soft Condensed Matter +hep-lat/0407013 Lattice +hep-ph/0407105 Phenomenology +hep-ph/0410270 Phenomenology +hep-th/0104117 Theory +hep-th/0109036 Theory +hep-th/0508036 Theory +nucl-th/0404004 +quant-ph/0603042 +0709.4353 +0804.2078 Complex Variables +0810.0923 +0810.4790 Strongly Correlated Electrons +0812.4048 +0902.1768 Number Theory +cond-mat/0103288 Superconductivity +cond-mat/0203241 Statistical Mechanics +cond-mat/9603042 +cond-mat/9907053 Superconductivity +math/0202295 Combinatorics +math/0601005 Geometric Topology +math/0612619 Algebraic Topology +quant-ph/0008123 +quant-ph/0105066 +quant-ph/0111057 +quant-ph/0202147 +quant-ph/0209110 +0704.3603 Probability +0706.3434 Machine Learning +0708.4399 Data Structures and Algorithms +0710.2330 Logic +0711.3054 Combinatorics +0712.3650 Probability +0801.4540 Representation Theory +0802.2543 Networking and Internet Architecture +0802.2603 Methodology +0802.4306 Representation Theory +0803.2586 Statistics Theory +0803.2931 Computation +0804.2012 Representation Theory +0804.2191 Networking and Internet Architecture +0805.1010 Probability +0805.1086 Theory +0805.3083 +0805.4132 +0806.2450 +0806.2625 Superconductivity +0807.2096 Statistics Theory +0808.1815 Theory +0808.4077 Other Condensed Matter +0809.4350 Optics +0810.2049 Soft Condensed Matter +0810.2143 Functional Analysis +0810.4495 +0811.0297 Disordered Systems and Neural Networks +0811.1961 Superconductivity +0811.2529 General Physics +0811.2966 Strongly Correlated Electrons +0812.0998 Chaotic Dynamics +0812.2254 General Physics +0901.0882 +0901.1175 Operator Algebras +0901.2366 +0901.2885 Materials Science +0901.3075 Number Theory +0901.3515 Materials Science +0901.3598 Phenomenology +0901.4317 Strongly Correlated Electrons +0901.4356 Physics Education +0901.4359 Analysis of PDEs +0901.4369 Solar and Stellar Astrophysics +0901.4375 Data Analysis, Statistics and Probability +0901.4376 Algebraic Geometry +0901.4377 Numerical Analysis +0901.4378 Representation Theory +0901.4382 Astrophysics of Galaxies +0901.4392 Statistics Theory +0901.4393 Probability +0901.4397 Plasma Physics +0901.4398 Differential Geometry +0901.4404 Software Engineering +0901.4405 General Topology +0901.4414 Probability +0901.4415 Strongly Correlated Electrons +0901.4420 Information Theory +0901.4431 Algebraic Geometry +0901.4433 Differential Geometry +0901.4439 Materials Science +0901.4444 Probability +0901.4447 General Finance +0901.4448 Molecular Networks +0901.4452 Disordered Systems and Neural Networks +0901.4455 Phenomenology +0901.4456 Probability +0901.4457 Instrumentation and Detectors +0901.4460 Atmospheric and Oceanic Physics +0901.4462 Analysis of PDEs +0901.4468 Superconductivity +0901.4479 Classical Analysis and ODEs +0901.4480 Classical Analysis and ODEs +0901.4481 Differential Geometry +0901.4483 Differential Geometry +0901.4494 Algebraic Geometry +0901.4496 Cryptography and Security +0901.4503 Geometric Topology +0901.4505 Representation Theory +0901.4512 Biological Physics +0901.4517 Biological Physics +0901.4518 Other Condensed Matter +0901.4528 Strongly Correlated Electrons +0901.4532 Instrumentation and Detectors +0901.4534 Cosmology and Nongalactic Astrophysics +0901.4538 Dynamical Systems +0901.4542 Materials Science +0901.4545 Cosmology and Nongalactic Astrophysics +cs/0410033 Artificial Intelligence +0705.3045 Functional Analysis +0706.3111 Optics +0708.2948 Geometric Topology +0708.3265 Other Condensed Matter +0709.1300 Representation Theory +0711.4926 Atomic Physics +0712.0781 Phenomenology +0712.1006 Analysis of PDEs +0802.0529 Methodology +0803.1927 Statistical Mechanics +0803.3951 Dynamical Systems +0803.4379 Mesoscale and Nanoscale Physics +0804.0273 Logic in Computer Science +0804.0997 Probability +0804.1059 +0804.1661 +0804.2602 Quantum Algebra +0804.2997 +0804.3637 Mesoscale and Nanoscale Physics +0805.2136 Spectral Theory +0805.4064 General Physics +0806.2113 Differential Geometry +0807.0296 Phenomenology +0807.1157 Mesoscale and Nanoscale Physics +0807.3806 Information Theory +0808.3531 Classical Physics +0808.3642 Materials Science +0808.3688 Theory +0808.3698 Theory +0809.1209 Phenomenology +0809.2209 Phenomenology +0809.3545 Phenomenology +0809.3893 Phenomenology +0809.3993 Materials Science +0809.4062 Phenomenology +0809.4511 Mesoscale and Nanoscale Physics +0810.0363 Theory +0810.2704 Algebraic Geometry +0810.4008 +0810.5576 Phenomenology +0811.0212 Theory +0811.0341 Phenomenology +0811.0993 +0811.3045 Mesoscale and Nanoscale Physics +0811.3047 Analysis of PDEs +0811.4773 Information Theory +0812.0783 +0812.2289 Superconductivity +0901.2801 Soft Condensed Matter +0901.2975 +0901.3022 +0901.3339 Mesoscale and Nanoscale Physics +0901.3544 Superconductivity +0902.1486 General Physics +0902.2666 Mesoscale and Nanoscale Physics +0902.3742 Pattern Formation and Solitons +0903.0959 Probability +0903.4879 Earth and Planetary Astrophysics +0903.5155 Materials Science +0904.0070 Combinatorics +0904.0454 Strongly Correlated Electrons +0904.0457 Group Theory +0904.0485 Geometric Topology +0904.0489 Computers and Society +0904.0490 Physics and Society +0904.0492 Analysis of PDEs +0904.0494 Information Theory +0904.0498 +0904.0506 Molecular Networks +0904.0508 Instrumentation and Methods for Astrophysics +0904.0511 General Physics +0904.0514 General Physics +0904.0524 Number Theory +0904.0525 Information Theory +0904.0533 Solar and Stellar Astrophysics +0904.0534 Discrete Mathematics +0904.0537 Theory +0904.0538 Probability +0904.0542 Phenomenology +0904.0543 Statistics Theory +0904.0544 Networking and Internet Architecture +0904.0546 Artificial Intelligence +0904.0547 Probability +0904.0561 Classical Analysis and ODEs +0904.0564 Physics and Society +0904.0566 Fluid Dynamics +0904.0568 +0904.0572 Differential Geometry +0904.0573 +0904.0574 +0904.0576 Chemical Physics +0904.0577 Chemical Physics +0904.0583 Data Structures and Algorithms +0904.0585 Information Theory +0904.0586 Information Theory +0904.0589 Logic in Computer Science +0904.0591 Analysis of PDEs +0904.0594 Geometric Topology +0904.0595 Cosmology and Nongalactic Astrophysics +0904.0599 Geometric Topology +0904.0602 Statistics Theory +0904.0605 Combinatorics +0904.0611 Cosmology and Nongalactic Astrophysics +0904.0615 Materials Science +0904.0617 Strongly Correlated Electrons +0904.0619 Algebraic Topology +0904.0621 Optics +0904.0626 Statistical Mechanics +0904.0636 Genomics +0904.0639 Group Theory +astro-ph/0611410 +astro-ph/0611564 +hep-ph/0606254 Phenomenology +hep-ph/0607309 Phenomenology +hep-th/0608220 Theory +math/0506541 Geometric Topology +math/0509218 Analysis of PDEs +math/0604048 Quantum Algebra +math/0606102 Geometric Topology +math/0608673 Geometric Topology +physics/0310154 General Physics +physics/0701222 General Physics +0707.1801 Algebraic Geometry +0711.3174 +0712.3466 +0804.0222 Pattern Formation and Solitons +0804.1005 Phenomenology +0804.2478 Phenomenology +0804.4694 Geometric Topology +0807.2611 Probability +0808.3948 Strongly Correlated Electrons +0809.1893 Strongly Correlated Electrons +0810.1161 +0812.1412 Mesoscale and Nanoscale Physics +0812.1538 Materials Science +0812.2678 Mesoscale and Nanoscale Physics +0812.3707 Combinatorics +0901.2732 Accelerator Physics +0901.3824 Mesoscale and Nanoscale Physics +0902.1025 Biomolecules +0902.2571 Mesoscale and Nanoscale Physics +0902.3920 Soft Condensed Matter +0903.2958 High Energy Astrophysical Phenomena +0904.0842 Algebraic Geometry +0904.2937 Algebraic Geometry +0904.3776 Analysis of PDEs +0904.3984 Superconductivity +0905.4547 +0905.4562 +math/0604599 Probability +math/0701823 Algebraic Geometry +math/0703543 Algebraic Geometry +nlin/0605039 Cellular Automata and Lattice Gases +0708.0546 Differential Geometry +0708.3557 Number Theory +0710.1001 Information Theory +0810.2916 Combinatorics +0810.3756 Superconductivity +0811.3175 Algebraic Topology +0811.3960 +0812.0053 Differential Geometry +0901.4003 Probability +0902.2394 Solar and Stellar Astrophysics +0903.1612 Mesoscale and Nanoscale Physics +0904.2514 Classical Analysis and ODEs +0905.0941 Number Theory +0905.3412 Optics +0906.0796 Algebraic Geometry +0906.0987 Theory +0906.1002 Mesoscale and Nanoscale Physics +0906.1175 Chemical Physics +0906.2314 Quantum Gases +0906.2865 Materials Science +0906.4636 Combinatorics +0907.0842 Algebraic Geometry +0907.1129 Operator Algebras +0907.3080 Quantum Gases +0907.3250 Chemical Physics +0908.0615 Mesoscale and Nanoscale Physics +0908.3622 Disordered Systems and Neural Networks +0908.4053 Quantum Algebra +0908.4054 Quantum Algebra +0909.3066 Optics +0909.4583 Analysis of PDEs +0910.0451 Phenomenology +0910.0869 Phenomenology +0910.1334 Phenomenology +0910.1508 Physics and Society +cond-mat/9903353 Statistical Mechanics +math/0610274 Number Theory +patt-sol/9903004 Pattern Formation and Solitons +0704.0232 Theory +0707.0316 Probability +0707.1919 Phenomenology +0709.2703 +0711.0439 General Physics +0712.2789 Computational Engineering, Finance, and Science +0802.0388 +0804.2499 Populations and Evolution +0805.1689 +0806.2078 Combinatorics +0808.0447 Atmospheric and Oceanic Physics +0808.3218 Differential Geometry +0808.3755 Probability +0810.1305 Logic +0812.4302 +0812.4364 Dynamical Systems +0812.5006 Mesoscale and Nanoscale Physics +0901.4826 Superconductivity +0902.3069 Mesoscale and Nanoscale Physics +0903.0559 Strongly Correlated Electrons +0903.5405 +0904.1230 Strongly Correlated Electrons +0904.1337 Algebraic Geometry +0904.1343 Theory +0904.1657 +0905.1920 Statistical Mechanics +0906.1189 Information Theory +0906.1568 Differential Geometry +0906.3809 Mesoscale and Nanoscale Physics +0907.1045 Statistical Mechanics +0907.2515 +0908.1228 Materials Science +0908.1355 Group Theory +0908.3014 Soft Condensed Matter +0909.0498 Strongly Correlated Electrons +0909.1222 Materials Science +0909.1973 +0909.3892 Instrumentation and Methods for Astrophysics +0909.3895 Instrumentation and Methods for Astrophysics +0909.4330 Optics +0909.4913 History and Overview +0909.5350 Algebraic Geometry +0910.0921 Learning +0910.1387 Data Structures and Algorithms +0910.2615 Theory +0910.2869 Mesoscale and Nanoscale Physics +0910.4637 Instrumentation and Methods for Astrophysics +0910.5518 Combinatorics +0910.5848 Group Theory +0911.0007 Soft Condensed Matter +0911.0016 Soft Condensed Matter +0911.0133 Plasma Physics +0911.0334 +0911.0410 Functional Analysis +0911.0428 Software Engineering +0911.0430 Software Engineering +0911.0434 Optimization and Control +0911.0437 +0911.0439 Strongly Correlated Electrons +0911.0440 Optimization and Control +0911.0441 Differential Geometry +0911.0443 Numerical Analysis +0911.0445 Group Theory +0911.0449 Experiment +0911.0451 Strongly Correlated Electrons +0911.0453 Biomolecules +0911.0459 Fluid Dynamics +0911.0460 Learning +0911.0461 Exactly Solvable and Integrable Systems +0911.0463 Instrumentation and Detectors +0911.0465 Networking and Internet Architecture +0911.0475 Algebraic Geometry +0911.0481 Computer Vision and Pattern Recognition +0911.0484 Networking and Internet Architecture +0911.0485 Neural and Evolutionary Computing +0911.0486 Digital Libraries +0911.0487 Networking and Internet Architecture +0911.0488 Software Engineering +0911.0489 Phenomenology +0911.0490 Computer Vision and Pattern Recognition +0911.0491 Optimization and Control +0911.0493 Cryptography and Security +0911.0494 Software Engineering +0911.0496 Phenomenology +0911.0497 Cryptography and Security +0911.0498 Cryptography and Security +0911.0499 Computer Vision and Pattern Recognition +0911.0500 Analysis of PDEs +0911.0501 Cryptography and Security +0911.0503 Cryptography and Security +0911.0504 Algebraic Geometry +0911.0505 Instrumentation and Methods for Astrophysics +0911.0508 Databases +0911.0511 Number Theory +0911.0512 +0911.0513 Number Theory +0911.0515 General Physics +0911.0518 General Physics +0911.0520 Optics +0911.0524 Group Theory +0911.0529 Biological Physics +0911.0530 Complex Variables +0911.0533 Complex Variables +0911.0534 Complex Variables +0911.0537 Complex Variables +0911.0541 Algebraic Topology +0911.0542 Other Computer Science +0911.0547 Numerical Analysis +0911.0549 +0911.0563 Combinatorics +0911.0566 Geometric Topology +0911.0570 Astrophysics of Galaxies +0911.0576 Group Theory +0911.0580 General Physics +0911.0585 Cosmology and Nongalactic Astrophysics +0911.0589 Genomics +0911.0596 Cell Behavior +0911.0599 +0911.0606 Functional Analysis +0911.0615 Disordered Systems and Neural Networks +0911.0618 Probability +0911.0621 Superconductivity +0911.0631 Probability +0911.0633 Representation Theory +0911.0634 +0911.0638 Commutative Algebra +0911.0640 Theory +0911.0643 Commutative Algebra +0911.0644 Functional Analysis +0911.0649 Materials Science +0911.0650 Quantitative Methods +0911.0651 Chaotic Dynamics +0911.0652 Quantitative Methods +0911.0653 Strongly Correlated Electrons +0911.0660 Information Theory +0911.0661 Physics and Society +0911.0665 Astrophysics of Galaxies +0911.0668 Complex Variables +math/0306038 General Mathematics +math/0307192 Algebraic Topology +math/0512414 Probability +math/0610246 Representation Theory +quant-ph/0605001 +0704.2477 Strongly Correlated Electrons +0708.2730 +0708.3281 Lattice +0708.3322 Phenomenology +0708.3652 Phenomenology +0708.4145 +0708.4146 Lattice +0709.0425 Lattice +0709.0664 Lattice +0709.1014 Lattice +0709.1467 Lattice +0709.2175 Phenomenology +0709.2367 Lattice +0709.2599 Phenomenology +0709.2981 Lattice +0709.3011 Probability +0709.3030 +0709.3370 Lattice +0709.4076 Lattice +0709.4130 Lattice +0709.4167 Lattice +0709.4213 Lattice +0709.4216 Phenomenology +0709.4416 Lattice +0709.4434 Lattice +0709.4549 Lattice +0709.4582 Lattice +0710.0019 Lattice +0710.0072 Lattice +0710.0098 Lattice +0710.0204 Lattice +0710.0256 Lattice +0710.0316 Theory +0710.0329 Lattice +0710.0401 Lattice +0710.0455 Lattice +0710.0487 Lattice +0710.0488 Lattice +0710.0504 Lattice +0710.0541 Lattice +0710.0552 Lattice +0710.0569 Lattice +0710.0580 Lattice +0710.0583 Lattice +0710.0665 Lattice +0710.0669 Lattice +0710.0698 Phenomenology +0710.0710 Lattice +0710.0729 Lattice +0710.0764 Lattice +0710.0804 Lattice +0710.0929 Lattice +0710.0975 Lattice +0710.1079 Lattice +0710.1173 Lattice +0710.1217 Phenomenology +0710.1553 Lattice +0710.1582 Lattice +0710.1713 Lattice +0710.1720 Lattice +0710.1762 Lattice +0710.1785 Lattice +0710.1888 Lattice +0710.1894 Lattice +0710.1926 Lattice +0710.1930 Lattice +0710.1968 Lattice +0710.2036 Lattice +0710.2390 Lattice +0710.2489 Lattice +0710.2547 Lattice +0710.2707 Lattice +0710.2743 Theory +0710.2794 Lattice +0710.3038 Lattice +0710.3101 Lattice +0710.3102 Lattice +0710.3151 Lattice +0710.3414 Lattice +0710.3468 Lattice +0710.4119 Lattice +0710.4237 Lattice +0710.4357 Lattice +0710.4469 Lattice +0710.4769 Lattice +0710.5371 Lattice +0711.0245 Lattice +0711.0336 Lattice +0711.1239 Lattice +0711.1796 Lattice +0711.1826 Lattice +0711.2151 Lattice +0711.3183 Computational Complexity +0711.3938 Lattice +0712.0427 +0712.2702 Lattice +0712.2895 Phenomenology +0712.3201 Phenomenology +0801.1616 Phenomenology +0801.2647 Phenomenology +0801.4228 Phenomenology +0802.0662 Lattice +0802.0779 Atomic Physics +0802.0968 Phenomenology +0802.1670 +0802.2679 +0802.4095 Combinatorics +0802.4173 Phenomenology +0802.4227 Phenomenology +0803.0254 Superconductivity +0803.1189 Combinatorics +0803.2670 +0804.0011 +0804.0129 +0804.1346 +0804.1657 Phenomenology +0804.3927 +0804.4389 Phenomenology +0805.0034 Information Theory +0805.0808 +0805.4678 Quantum Algebra +0806.0043 Combinatorics +0806.0539 Applications +0806.0754 +0806.3221 Mesoscale and Nanoscale Physics +0806.3644 +0807.0253 Theory +0807.3812 Phenomenology +0807.4219 Physics and Society +0808.0310 +0808.1928 Computational Complexity +0808.3673 +0808.3975 +0809.0071 +0809.1453 Materials Science +0809.2943 +0809.2983 +0809.3890 Phenomenology +0809.3914 +0809.3991 +0809.4204 +0809.4249 +0810.0040 Lattice +0810.0202 +0810.0386 Fluid Dynamics +0810.0413 Experiment +0810.0620 Lattice +0810.1167 +0810.1182 Physics and Society +0810.1933 Lattice +0810.2333 Phenomenology +0810.2349 Lattice +0810.3211 +0810.4763 Lattice +0810.4779 +0810.5453 +0811.0091 Differential Geometry +0811.1813 +0811.1822 Phenomenology +0811.1828 Phenomenology +0811.1989 Theory +0811.2661 Phenomenology +0811.2879 Lattice +0811.2963 +0811.3233 Combinatorics +0811.3320 +0811.3631 Phenomenology +0811.4408 Lattice +0811.4499 Lattice +0812.0265 Phenomenology +0812.0296 Phenomenology +0812.0528 Statistical Mechanics +0812.0737 +0812.1227 +0812.1486 +0812.1588 Phenomenology +0812.2240 Representation Theory +0812.2286 Combinatorics +0812.3280 +0812.4470 Combinatorics +0812.4527 Experiment +0812.4530 Other Condensed Matter +0812.4704 Phenomenology +0901.0148 Performance +0901.1802 +0901.1983 +0901.2564 Accelerator Physics +0901.3231 Lattice +0901.3468 Astrophysics of Galaxies +0901.4429 Lattice +0902.0239 Symbolic Computation +0902.0631 Astrophysics of Galaxies +0902.1533 High Energy Astrophysical Phenomena +0902.2209 Data Structures and Algorithms +0902.3866 High Energy Astrophysical Phenomena +0903.1423 Materials Science +0903.3063 Lattice +0903.5408 Cosmology and Nongalactic Astrophysics +0904.0041 Representation Theory +0904.0166 Phenomenology +0904.0178 Algebraic Geometry +0904.1258 Artificial Intelligence +0904.1697 Astrophysics of Galaxies +0904.1754 Networking and Internet Architecture +0904.1756 Pricing of Securities +0904.1757 Combinatorics +0904.1760 Functional Analysis +0904.1761 Functional Analysis +0904.1762 +0904.1763 +0904.1765 Representation Theory +0904.1768 High Energy Astrophysical Phenomena +0904.1771 Risk Management +0904.1772 Risk Management +0904.1784 General Physics +0904.1786 Group Theory +0904.1788 +0904.1789 Quantum Algebra +0904.1792 Analysis of PDEs +0904.1793 Chaotic Dynamics +0904.1795 Fluid Dynamics +0904.1802 Complex Variables +0904.1809 Soft Condensed Matter +0904.1811 +0904.1814 General Physics +0904.1815 Populations and Evolution +0904.1820 Representation Theory +0904.1824 Classical Analysis and ODEs +0904.1828 Analysis of PDEs +0904.1829 Materials Science +0904.1830 Statistics Theory +0904.1831 Theory +0904.1839 +0904.1841 +0904.1842 Algebraic Geometry +0904.1850 Group Theory +0904.1853 Geometric Topology +0904.1854 Geometric Topology +0904.1855 Applications +0904.1856 Geometric Topology +0904.1857 Cosmology and Nongalactic Astrophysics +0904.1861 Algebraic Topology +0904.1869 Phenomenology +0904.1870 Probability +0904.1875 Astrophysics of Galaxies +0904.1876 Algebraic Topology +0904.1877 Geometric Topology +0904.1880 Algebraic Geometry +0904.1885 Numerical Analysis +0904.1892 Information Theory +0904.1898 Differential Geometry +0904.1900 Biomolecules +0904.1901 Populations and Evolution +0904.1902 Logic in Computer Science +0904.1903 Portfolio Management +0904.1907 Information Theory +0904.1911 Optics +0904.1912 +0904.1913 General Physics +0904.1915 Logic in Computer Science +0904.1917 Mesoscale and Nanoscale Physics +0904.1920 Discrete Mathematics +0904.1928 Superconductivity +0904.1931 Databases +0904.1932 Soft Condensed Matter +0904.1934 Soft Condensed Matter +0904.1935 Number Theory +0904.1939 Functional Analysis +0904.1945 +0904.1948 Combinatorics +0904.1968 Combinatorics +0904.1974 Materials Science +0904.1976 Experiment +0904.1977 Classical Physics +0904.1979 Astrophysics of Galaxies +0904.1984 Differential Geometry +0904.1987 Cosmology and Nongalactic Astrophysics +0904.1991 Instrumentation and Methods for Astrophysics +0904.1992 Instrumentation and Methods for Astrophysics +0904.1997 +astro-ph/0611057 +astro-ph/0611119 +astro-ph/0611298 +astro-ph/0611308 +astro-ph/0611413 +astro-ph/0611713 +astro-ph/0611824 +astro-ph/0701228 +cond-mat/0408600 Statistical Mechanics +cond-mat/0511490 Statistical Mechanics +cond-mat/0703176 Mesoscale and Nanoscale Physics +cond-mat/0703196 Mesoscale and Nanoscale Physics +cs/0610159 Information Theory +hep-ex/0602046 Experiment +hep-lat/0603005 Lattice +hep-lat/0609033 Lattice +hep-lat/0610012 Lattice +hep-lat/0611027 Lattice +hep-lat/0702014 Lattice +hep-ph/0611083 Phenomenology +hep-ph/0611122 Phenomenology +hep-ph/0611138 Phenomenology +hep-ph/0611151 Phenomenology +nucl-ex/0701028 +physics/0702192 Atomic Physics +0705.0172 Mesoscale and Nanoscale Physics +0707.1177 Combinatorics +0709.0782 General Physics +0801.3313 +0802.1121 Probability +0803.4135 Materials Science +0804.0086 Chemical Physics +0804.1553 Analysis of PDEs +0804.3655 +0804.3963 Group Theory +0805.2118 Superconductivity +0805.2843 Exactly Solvable and Integrable Systems +0807.2129 Functional Analysis +0807.3246 +0808.2854 Operator Algebras +0809.2420 Functional Analysis +0810.0624 Statistical Mechanics +0810.2998 Mesoscale and Nanoscale Physics +0810.3150 Optimization and Control +0811.1636 Analysis of PDEs +0811.3164 Genomics +0811.3953 Dynamical Systems +0811.4359 Analysis of PDEs +0812.1445 K-Theory and Homology +0812.2963 Other Condensed Matter +0812.3097 Commutative Algebra +0812.4474 Other Condensed Matter +0812.4766 Statistical Mechanics +0901.2333 Networking and Internet Architecture +0903.3248 Materials Science +0903.3485 Dynamical Systems +0904.3088 +0904.3327 Mesoscale and Nanoscale Physics +0905.0835 Probability +0905.2210 Algebraic Geometry +0905.3033 Materials Science +0906.0029 Theory +0906.0404 Optics +0906.4844 +0907.0867 +0907.2074 Strongly Correlated Electrons +0907.2498 Mesoscale and Nanoscale Physics +0907.5192 Probability +0908.0249 General Physics +0908.0666 Mesoscale and Nanoscale Physics +0908.1802 Theory +0908.3514 Strongly Correlated Electrons +0908.4367 Materials Science +0909.3968 Algebraic Topology +0910.1031 Mesoscale and Nanoscale Physics +0910.1076 Algebraic Geometry +0910.2416 Cosmology and Nongalactic Astrophysics +0910.2959 Mesoscale and Nanoscale Physics +0910.3419 Quantum Gases +0910.3457 Superconductivity +0911.0233 Classical Analysis and ODEs +0911.0370 Differential Geometry +0911.4238 Networking and Internet Architecture +0911.4412 Representation Theory +0911.4817 Theory +0912.1496 Operator Algebras +0912.1520 Algebraic Geometry +0912.1988 Statistical Mechanics +0912.1994 Theory +0912.2526 History and Philosophy of Physics +0912.2747 Accelerator Physics +0912.2750 Accelerator Physics +0912.2751 Numerical Analysis +0912.2758 Group Theory +0912.2759 Probability +0912.2765 Probability +0912.2770 Theory +0912.2772 Functional Analysis +0912.2775 Geophysics +0912.2777 Rings and Algebras +0912.2778 High Energy Astrophysical Phenomena +0912.2785 Logic in Computer Science +0912.2788 Analysis of PDEs +0912.2792 Chemical Physics +0912.2793 Physics and Society +0912.2794 Analysis of PDEs +0912.2795 Probability +0912.2800 Machine Learning +0912.2808 Solar and Stellar Astrophysics +0912.2816 Probability +0912.2817 Operator Algebras +0912.2822 Databases +0912.2825 Physics and Society +0912.2828 Information Theory +0912.2830 Statistical Mechanics +0912.2835 Superconductivity +0912.2837 Probability +0912.2839 Group Theory +0912.2846 Artificial Intelligence +0912.2852 Instrumentation and Methods for Astrophysics +0912.2856 Mesoscale and Nanoscale Physics +0912.2861 Programming Languages +0912.2862 +0912.2863 Solar and Stellar Astrophysics +0912.2864 Probability +0912.2867 Materials Science +0912.2872 Classical Analysis and ODEs +0912.2878 +0912.2881 Computation and Language +0912.2882 Numerical Analysis +0912.2885 Dynamical Systems +0912.2888 +0912.2892 Differential Geometry +0912.2896 Dynamical Systems +0912.2900 Optimization and Control +0912.2903 Adaptation and Self-Organizing Systems +0912.2905 Quantitative Methods +0912.2911 Representation Theory +0912.2914 Combinatorics +0912.2923 Algebraic Geometry +0912.2925 Number Theory +0912.2927 Combinatorics +0912.2932 Optimization and Control +0912.2933 Representation Theory +0912.2937 +0912.2938 Instrumentation and Methods for Astrophysics +0912.2939 High Energy Astrophysical Phenomena +0912.2952 Cryptography and Security +0912.2955 Molecular Networks +0912.2956 Probability +0912.2957 Statistical Mechanics +0912.2959 Disordered Systems and Neural Networks +0912.2973 +0912.2980 Strongly Correlated Electrons +0912.2981 Number Theory +0912.2982 High Energy Astrophysical Phenomena +cond-mat/0305329 Materials Science +cond-mat/0505491 Materials Science +cond-mat/0512328 Materials Science +cond-mat/0608614 Other Condensed Matter +hep-ph/0611218 Phenomenology +math/0501352 Combinatorics +math/0505406 Algebraic Geometry +math/0507563 Algebraic Geometry +math/0508628 Commutative Algebra +math/0509544 Commutative Algebra +math/0701482 Differential Geometry +math/0702491 Differential Geometry +physics/0507087 Fluid Dynamics +physics/0604127 Data Analysis, Statistics and Probability +physics/0612185 Geophysics +quant-ph/0603204 +0705.3741 Theory +0707.2444 Dynamical Systems +0707.4448 Data Structures and Algorithms +0708.3655 Analysis of PDEs +0712.2541 +0802.3683 Algebraic Geometry +0805.0342 Probability +0805.2652 Probability +0806.0426 Superconductivity +0807.1713 Probability +0807.3143 Strongly Correlated Electrons +0808.3167 Strongly Correlated Electrons +0809.1623 +0809.1856 Methodology +0809.2286 +0809.4445 +0810.0903 Optics +0810.4855 +0810.4916 Information Theory +0810.5750 +0811.2830 Optics +0812.1131 Superconductivity +0812.3640 Disordered Systems and Neural Networks +0901.1538 Disordered Systems and Neural Networks +0901.1549 High Energy Astrophysical Phenomena +0901.1685 Mesoscale and Nanoscale Physics +0901.2439 Rings and Algebras +0901.3019 Optics +0901.3579 Operator Algebras +0902.1736 Networking and Internet Architecture +0902.3180 Plasma Physics +0903.0717 +0903.2229 Experiment +0903.3877 Soft Condensed Matter +0905.0609 Combinatorics +0905.1386 Information Theory +0905.2071 Biomolecules +0905.2124 Phenomenology +0905.3464 Superconductivity +0905.3808 Optimization and Control +0906.0078 Superconductivity +0906.3847 +0906.4553 Astrophysics of Galaxies +0906.4564 Materials Science +0906.4565 Materials Science +0906.4566 Materials Science +0906.4567 Data Analysis, Statistics and Probability +0906.4570 Cryptography and Security +0906.4571 Dynamical Systems +0906.4575 Geometric Topology +0906.4579 Number Theory +0906.4580 +0906.4581 Dynamical Systems +0906.4585 Optics +0906.4586 +0906.4587 Optics +0906.4594 Category Theory +0906.4595 Rings and Algebras +0906.4603 Algebraic Geometry +0906.4605 Complex Variables +0906.4607 Multimedia +0906.4611 High Energy Astrophysical Phenomena +0906.4616 Pattern Formation and Solitons +0906.4617 Quantum Algebra +0906.4624 Accelerator Physics +0906.4632 Phenomenology +0906.4633 Instrumentation and Methods for Astrophysics +0906.4635 Materials Science +0906.4638 Differential Geometry +0906.4640 Mesoscale and Nanoscale Physics +0906.4646 Differential Geometry +0906.4647 Complex Variables +0906.4648 Differential Geometry +0906.4649 Commutative Algebra +0906.4655 +0906.4662 Cosmology and Nongalactic Astrophysics +0906.4663 Learning +0906.4665 Numerical Analysis +0906.4666 Representation Theory +0906.4668 Cryptography and Security +0906.4669 Group Theory +0906.4670 Materials Science +0906.4673 +0906.4677 Phenomenology +0906.4680 Distributed, Parallel, and Cluster Computing +0906.4683 Biomolecules +0906.4684 Strongly Correlated Electrons +0906.4686 Geophysics +0906.4689 Geophysics +0906.4690 Information Retrieval +0906.4691 High Energy Astrophysical Phenomena +0906.4692 Data Structures and Algorithms +0906.4693 Differential Geometry +0906.4701 Number Theory +0906.4708 Quantum Gases +0906.4710 Geometric Topology +0906.4712 Symplectic Geometry +0906.4729 Phenomenology +0906.4734 +0906.4737 Analysis of PDEs +0906.4741 Dynamical Systems +0906.4747 Computational Geometry +0906.4749 Representation Theory +0906.4750 Discrete Mathematics +0906.4760 +0906.4762 Cryptography and Security +0906.4769 Combinatorics +0906.4770 Probability +0906.4780 Mesoscale and Nanoscale Physics +0801.0650 Differential Geometry +0802.1487 Complex Variables +0804.1791 Complex Variables +0804.3208 Complex Variables +0806.1821 Mesoscale and Nanoscale Physics +0808.1947 Representation Theory +0810.4726 Number Theory +0811.2255 Statistical Mechanics +0812.0751 +0812.2195 Databases +0901.3549 Materials Science +0905.1922 Other Condensed Matter +0906.3070 Analysis of PDEs +0706.1263 Number Theory +0707.1825 Combinatorics +0707.2203 Phenomenology +0711.0092 Soft Condensed Matter +0712.1250 +0803.3748 Probability +0805.3216 General Physics +0806.1068 Statistical Mechanics +0807.1918 Probability +0807.3307 Phenomenology +0809.0899 +0809.3944 +0809.4889 Symplectic Geometry +0810.1025 +0810.2324 Probability +0811.2106 Strongly Correlated Electrons +0812.0601 Algebraic Geometry +0812.2178 Soft Condensed Matter +0812.4883 Theory +0901.3080 Theory +0901.4232 Statistics Theory +0901.4817 +0901.4846 Networking and Internet Architecture +0902.2547 Phenomenology +0903.0609 Theory +0903.2341 Statistical Mechanics +0903.2434 Functional Analysis +0903.3189 Analysis of PDEs +0903.4305 Databases +0903.4446 Cosmology and Nongalactic Astrophysics +0904.3629 Other Computer Science +0905.0279 +0905.0738 Statistical Mechanics +0905.0766 Disordered Systems and Neural Networks +0905.2137 Materials Science +0905.2358 Analysis of PDEs +0905.2596 Phenomenology +0905.4290 Statistical Mechanics +0906.2082 Experiment +0906.2374 Theory +0906.3225 Computational Complexity +0906.3227 Computational Complexity +0906.3257 Logic in Computer Science +0906.3284 Computational Complexity +0906.3329 Computational Complexity +0906.3332 Computational Complexity +0906.3527 Data Structures and Algorithms +0906.3529 Statistics Theory +0906.3530 Combinatorics +0906.3532 +0906.3536 Analysis of PDEs +0906.3539 Classical Physics +0906.3548 Differential Geometry +0906.3571 +0906.3574 Group Theory +0906.3581 +0906.3587 Algebraic Geometry +0906.3590 Machine Learning +0906.3591 Accelerator Physics +0906.3592 Accelerator Physics +0906.3593 Accelerator Physics +0906.3595 Statistical Mechanics +0906.3596 Statistical Mechanics +0906.3597 Classical Physics +0906.3598 Combinatorics +0906.3612 Data Analysis, Statistics and Probability +0906.3613 Classical Physics +0906.3614 Classical Physics +0906.3615 Classical Physics +0906.3616 Soft Condensed Matter +0906.3619 Functional Analysis +0906.3620 +0906.3623 Algebraic Geometry +0906.3642 Analysis of PDEs +0906.3643 Computer Science and Game Theory +0906.3652 Probability +0906.3654 Cell Behavior +0906.3662 Methodology +0906.3664 Atomic Physics +0906.3670 Physics and Society +0906.3675 Earth and Planetary Astrophysics +0906.3676 Experiment +0906.3690 +0906.3696 Functional Analysis +0906.3705 Optics +0906.3710 Optics +0906.3715 Solar and Stellar Astrophysics +0906.3722 Artificial Intelligence +0906.3728 Number Theory +0906.3732 Analysis of PDEs +0906.3733 Algebraic Geometry +cond-mat/0703684 Strongly Correlated Electrons +hep-th/0603102 Theory +math/0611310 Operator Algebras +math/0702799 Probability +quant-ph/0506061 +0710.0409 Combinatorics +0712.3891 Classical Physics +0804.4226 Combinatorics +0805.2444 Algebraic Geometry +0807.1474 Algebraic Geometry +0807.3126 Cell Behavior +0810.3486 Soft Condensed Matter +0812.0144 +0903.1570 Other Condensed Matter +0905.3797 +0907.0211 Strongly Correlated Electrons +0907.0228 Differential Geometry +0907.1780 +0907.1974 +0907.2749 +0908.2957 +0910.2324 Programming Languages +0910.3985 Physics and Society +0911.1479 +0911.1977 +math/0105044 Functional Analysis +math/0702166 Combinatorics +0704.0065 Algebraic Geometry +0704.2498 +0705.2338 Differential Geometry +0801.0191 Algebraic Topology +0804.0046 Representation Theory +0805.1981 Networking and Internet Architecture +0806.3085 +0806.4394 Number Theory +0807.4498 Chemical Physics +0808.2551 +0810.1600 Superconductivity +0810.5378 +0811.1051 Data Analysis, Statistics and Probability +0812.2624 Representation Theory +0812.4171 Computational Complexity +0901.0883 +0901.1322 Computational Geometry +0901.1631 General Physics +0901.3945 Number Theory +0902.0953 +0902.3909 Mesoscale and Nanoscale Physics +0902.4402 Mesoscale and Nanoscale Physics +0903.2107 Mesoscale and Nanoscale Physics +0903.2171 Cryptography and Security +0903.3142 Superconductivity +0903.4574 +0904.3723 Statistical Mechanics +0905.1109 Experiment +0905.2035 History and Philosophy of Physics +0905.3369 Artificial Intelligence +0905.4254 Statistical Mechanics +0905.4815 Trading and Market Microstructure +0905.4820 Experiment +0906.0205 Data Structures and Algorithms +0906.0351 Analysis of PDEs +0906.0352 Dynamical Systems +0906.0354 Experiment +0906.0361 Earth and Planetary Astrophysics +0906.0375 Analysis of PDEs +0906.0376 Data Structures and Algorithms +0906.0377 Combinatorics +0906.0379 Distributed, Parallel, and Cluster Computing +0906.0381 Populations and Evolution +0906.0382 Physics Education +0906.0390 Biomolecules +0906.0392 Pricing of Securities +0906.0393 High Energy Astrophysical Phenomena +0906.0394 Pricing of Securities +0906.0398 +0906.0406 Optics +0906.0408 Group Theory +0906.0409 Data Structures and Algorithms +0906.0411 High Energy Astrophysical Phenomena +0906.0412 Algebraic Geometry +0906.0416 Strongly Correlated Electrons +0906.0418 High Energy Astrophysical Phenomena +0906.0422 Discrete Mathematics +0906.0426 Networking and Internet Architecture +0906.0428 Probability +0906.0429 Atmospheric and Oceanic Physics +0906.0437 Optimization and Control +0906.0439 Dynamical Systems +0906.0451 Dynamical Systems +0906.0453 Optimization and Control +0906.0454 +0906.0462 Soft Condensed Matter +0906.0470 Learning +0906.0473 Group Theory +0906.0476 Functional Analysis +0906.0477 Classical Physics +0906.0480 Statistical Finance +0906.0485 Digital Libraries +0906.0491 Materials Science +0906.0494 Phenomenology +0906.0496 +0906.0502 +0906.0514 +0906.0515 Combinatorics +0906.0533 Mesoscale and Nanoscale Physics +0906.0537 Instrumentation and Methods for Astrophysics +0906.0540 +0906.0543 Solar and Stellar Astrophysics +0906.0545 Algebraic Geometry +0906.0546 Differential Geometry +0906.0550 Information Theory +0906.0558 Computational Geometry +0906.0562 Statistics Theory +0906.0564 Neurons and Cognition +0906.0565 Number Theory +0906.0566 Combinatorics +math/0203269 Differential Geometry +math/0603685 Representation Theory +0704.2634 Differential Geometry +0708.2520 Symplectic Geometry +0708.3017 Phenomenology +0709.0098 Phenomenology +0709.1981 Data Analysis, Statistics and Probability +0711.0054 Theory +0711.1655 Physics and Society +0711.4360 Phenomenology +0712.0043 Theory +0712.3484 Complex Variables +0801.0149 Theory +0801.1614 Phenomenology +0801.3265 Materials Science +0801.3278 Phenomenology +0801.3498 Theory +0801.4789 Theory +0802.0544 Theory +0802.1284 Data Analysis, Statistics and Probability +0802.1556 Theory +0802.2089 +0803.1014 Theory +0803.3857 Theory +0804.0651 Theory +0805.0095 Theory +0805.1842 Complex Variables +0805.3930 Theory +0808.2169 Algebraic Geometry +0809.1135 Probability +0809.5001 Data Analysis, Statistics and Probability +0810.0314 +0810.3472 Theory +0810.5226 Experiment +0811.0867 Soft Condensed Matter +0811.1029 Phenomenology +0811.1262 Analysis of PDEs +0812.2235 +0812.3352 Soft Condensed Matter +0812.3361 Soft Condensed Matter +0812.3862 +0812.4054 +0812.4542 Information Retrieval +0901.0399 Adaptation and Self-Organizing Systems +0901.1016 Mesoscale and Nanoscale Physics +0901.1178 +0901.3691 General Mathematics +0901.4046 Astrophysics of Galaxies +0902.0874 Computational Physics +0902.3364 +0902.3999 Earth and Planetary Astrophysics +0902.4547 Soft Condensed Matter +0902.4591 Superconductivity +0903.0916 Mesoscale and Nanoscale Physics +0903.1019 General Mathematics +0903.1987 Instrumentation and Methods for Astrophysics +0903.3026 Number Theory +0903.3543 Cosmology and Nongalactic Astrophysics +0903.4215 Molecular Networks +0903.4551 Statistical Mechanics +0903.5400 History and Overview +0904.1159 Theory +0904.2364 Mesoscale and Nanoscale Physics +0904.3497 Superconductivity +0904.4695 Commutative Algebra +0905.0648 Fluid Dynamics +0905.0841 Superconductivity +0905.1328 Solar and Stellar Astrophysics +0905.1743 Mesoscale and Nanoscale Physics +0905.3015 Optics +0906.1070 High Energy Astrophysical Phenomena +0906.2491 Fluid Dynamics +0906.3321 Astrophysics of Galaxies +0906.3458 Astrophysics of Galaxies +0906.4171 +0906.4404 +0907.0962 Biological Physics +0907.1134 +0907.1446 General Physics +0907.1821 Probability +0907.2080 Category Theory +0907.3287 Physics and Society +0908.0393 Symplectic Geometry +0908.0768 +0908.1532 Cosmology and Nongalactic Astrophysics +0908.1855 Physics and Society +0908.2615 Physics and Society +0908.2884 Mesoscale and Nanoscale Physics +0908.3450 Phenomenology +0909.0395 Category Theory +0909.1092 Probability +0909.1188 Mesoscale and Nanoscale Physics +0909.1378 Mesoscale and Nanoscale Physics +0909.1509 Instrumentation and Methods for Astrophysics +0909.1525 Information Theory +0909.1619 Mesoscale and Nanoscale Physics +0909.1753 +0909.1758 Databases +0909.1759 Cryptography and Security +0909.1760 Databases +0909.1763 Databases +0909.1764 Databases +0909.1765 Databases +0909.1766 Databases +0909.1767 Databases +0909.1768 Databases +0909.1769 Databases +0909.1770 Databases +0909.1771 Databases +0909.1772 Databases +0909.1773 Databases +0909.1774 Databases +0909.1775 Databases +0909.1776 Databases +0909.1777 Databases +0909.1778 Databases +0909.1779 Databases +0909.1780 Performance +0909.1781 Hardware Architecture +0909.1782 Databases +0909.1783 Databases +0909.1784 Databases +0909.1785 Databases +0909.1786 Databases +0909.1788 Distributed, Parallel, and Cluster Computing +0909.1808 Phenomenology +0909.1913 Experiment +0909.2041 Solar and Stellar Astrophysics +0909.2261 Differential Geometry +0909.2264 Combinatorics +0909.2265 Differential Geometry +0909.2268 Solar and Stellar Astrophysics +0909.2271 Dynamical Systems +0909.2274 Combinatorics +0909.2276 Fluid Dynamics +0909.2277 Combinatorics +0909.2278 Optics +0909.2280 Algebraic Geometry +0909.2286 Other Condensed Matter +0909.2288 Mesoscale and Nanoscale Physics +0909.2290 Databases +0909.2291 Algebraic Geometry +0909.2293 Probability +0909.2296 Cosmology and Nongalactic Astrophysics +0909.2300 +0909.2301 Dynamical Systems +0909.2313 Differential Geometry +0909.2314 Combinatorics +0909.2318 Medical Physics +0909.2321 Genomics +0909.2326 Differential Geometry +0909.2330 +0909.2332 Machine Learning +0909.2339 Artificial Intelligence +0909.2345 Information Retrieval +0909.2353 Machine Learning +0909.2356 Representation Theory +0909.2362 Experiment +0909.2363 Sound +0909.2365 Other Computer Science +0909.2366 Cryptography and Security +0909.2367 Cryptography and Security +0909.2369 Cryptography and Security +0909.2370 Cryptography and Security +0909.2371 Cryptography and Security +0909.2373 Computer Vision and Pattern Recognition +0909.2375 Artificial Intelligence +0909.2376 Artificial Intelligence +0909.2377 Networking and Internet Architecture +0909.2379 Computation and Language +0909.2381 General Topology +0909.2384 Commutative Algebra +0909.2388 Number Theory +0909.2390 Differential Geometry +0909.2393 Atomic Physics +0909.2398 Experiment +0909.2399 Phenomenology +0909.2403 Combinatorics +0909.2410 Chaotic Dynamics +0909.2414 Superconductivity +0909.2416 Chaotic Dynamics +0909.2417 Populations and Evolution +0909.2420 Differential Geometry +0909.2421 Geometric Topology +0909.2422 Analysis of PDEs +0909.2425 Data Analysis, Statistics and Probability +0909.2430 Rings and Algebras +0909.2435 Soft Condensed Matter +0909.2441 Representation Theory +0909.2448 Cosmology and Nongalactic Astrophysics +0909.2449 +0909.2452 Software Engineering +0909.2453 Theory +0909.2455 Human-Computer Interaction +0909.2456 Materials Science +0909.2457 Soft Condensed Matter +0909.2458 Differential Geometry +0909.2463 +0909.2468 Combinatorics +0909.2472 Complex Variables +0909.2473 Combinatorics +0909.2476 Robotics +0909.2481 Physics and Society +0909.2483 Strongly Correlated Electrons +0909.2491 +0909.2493 Analysis of PDEs +0909.2506 Soft Condensed Matter +0909.2508 Combinatorics +0909.2512 Functional Analysis +0909.2513 Experiment +0909.2521 Subcellular Processes +0909.2522 Rings and Algebras +0909.2524 Optimization and Control +0909.2532 Algebraic Geometry +0909.2536 Phenomenology +0909.2537 +0909.2538 Classical Analysis and ODEs +0909.2539 Dynamical Systems +0909.2540 Optimization and Control +0909.2542 Artificial Intelligence +0909.2547 Data Structures and Algorithms +0909.2550 Differential Geometry +0909.2552 Differential Geometry +0909.2554 Algebraic Geometry +0909.2555 Experiment +0909.2557 Analysis of PDEs +0909.2561 Combinatorics +0909.2563 Phenomenology +0909.2566 +0909.2569 Number Theory +0909.2571 Dynamical Systems +0909.2576 High Energy Astrophysical Phenomena +0909.2578 +0909.2581 Cosmology and Nongalactic Astrophysics +0909.2584 +0909.2586 Probability +0909.2589 Astrophysics of Galaxies +0909.2591 Optics +0909.2593 Number Theory +0909.2598 Number Theory +0909.2599 Fluid Dynamics +0909.2604 High Energy Astrophysical Phenomena +0909.2605 Chemical Physics +0909.2609 Cosmology and Nongalactic Astrophysics +0909.2611 +0909.2612 Cosmology and Nongalactic Astrophysics +0909.2622 Information Theory +0909.2623 Databases +0909.2624 Computational Finance +0909.2626 Computation and Language +acc-phys/9503002 Accelerator Physics +acc-phys/9604003 Accelerator Physics +astro-ph/0004134 +astro-ph/0005236 +astro-ph/0006373 +astro-ph/0007297 +astro-ph/0009256 +astro-ph/0010121 +astro-ph/0102039 +astro-ph/0102179 +astro-ph/0102446 +astro-ph/0105420 +astro-ph/0106008 +astro-ph/0107389 +astro-ph/0107458 +astro-ph/0108024 +astro-ph/0111010 +astro-ph/0112438 +astro-ph/0112526 +astro-ph/0112537 +astro-ph/0204479 +astro-ph/0206372 +astro-ph/0207583 +astro-ph/0301395 +astro-ph/0302012 +astro-ph/0303180 +astro-ph/0306402 +astro-ph/0309197 +astro-ph/0309252 +astro-ph/0312629 +astro-ph/0404257 +astro-ph/0404480 +astro-ph/0405355 +astro-ph/0405588 +astro-ph/0406039 +astro-ph/0412426 +astro-ph/0503598 +astro-ph/0504566 +astro-ph/0506524 +astro-ph/0507455 +astro-ph/0509183 +astro-ph/0512518 +astro-ph/0601687 +astro-ph/0603544 +astro-ph/9206002 +astro-ph/9207001 +astro-ph/9207002 +astro-ph/9212003 +astro-ph/9308026 +astro-ph/9403051 +astro-ph/9506131 +astro-ph/9508086 +astro-ph/9512034 +astro-ph/9603009 +astro-ph/9610039 +astro-ph/9611166 +astro-ph/9701028 +astro-ph/9708069 +astro-ph/9709006 +astro-ph/9709032 +astro-ph/9710038 +astro-ph/9710062 +astro-ph/9712160 +astro-ph/9803297 +astro-ph/9804015 +astro-ph/9804285 +astro-ph/9807002 +astro-ph/9810121 +astro-ph/9812313 +astro-ph/9901388 +astro-ph/9903309 +astro-ph/9906463 +astro-ph/9909386 +astro-ph/9911320 +cond-mat/0411698 Materials Science +cond-mat/0504196 Mesoscale and Nanoscale Physics +cond-mat/0508523 Disordered Systems and Neural Networks +cond-mat/0512131 Disordered Systems and Neural Networks +hep-ex/0607024 Experiment +hep-lat/0011073 Lattice +hep-lat/9602017 Lattice +hep-lat/9604009 Lattice +hep-lat/9608131 Lattice +hep-lat/9608132 Lattice +hep-ph/0002042 Phenomenology +hep-ph/0002229 Phenomenology +hep-ph/0003091 Phenomenology +hep-ph/0003184 Phenomenology +hep-ph/0003212 Phenomenology +hep-ph/0004208 Phenomenology +hep-ph/0005146 Phenomenology +hep-ph/0005197 Phenomenology +hep-ph/0006223 Phenomenology +hep-ph/0006275 Phenomenology +hep-ph/0007181 Phenomenology +hep-ph/0011251 Phenomenology +hep-ph/0012017 Phenomenology +hep-ph/0101106 Phenomenology +hep-ph/0104166 Phenomenology +hep-ph/0105182 Phenomenology +hep-ph/0106207 Phenomenology +hep-ph/0107212 Phenomenology +hep-ph/0108090 Phenomenology +hep-ph/0108261 Phenomenology +hep-ph/0110340 Phenomenology +hep-ph/0110377 Phenomenology +hep-ph/0110393 Phenomenology +hep-ph/0111030 Phenomenology +hep-ph/0201211 Phenomenology +hep-ph/0201262 Phenomenology +hep-ph/0202158 Phenomenology +hep-ph/0204119 Phenomenology +hep-ph/0204253 Phenomenology +hep-ph/0205269 Phenomenology +hep-ph/0205290 Phenomenology +hep-ph/0206099 Phenomenology +hep-ph/0209003 Phenomenology +hep-ph/0209036 Phenomenology +hep-ph/0210428 Phenomenology +hep-ph/0212028 Phenomenology +hep-ph/0212126 Phenomenology +hep-ph/0301097 Phenomenology +hep-ph/0302150 Phenomenology +hep-ph/0306061 Phenomenology +hep-ph/0308123 Phenomenology +hep-ph/0308299 Phenomenology +hep-ph/0310073 Phenomenology +hep-ph/0310278 Phenomenology +hep-ph/0403019 Phenomenology +hep-ph/0405019 Phenomenology +hep-ph/0405108 Phenomenology +hep-ph/0406126 Phenomenology +hep-ph/0407140 Phenomenology +hep-ph/0408120 Phenomenology +hep-ph/0410252 Phenomenology +hep-ph/0412136 Phenomenology +hep-ph/0501184 Phenomenology +hep-ph/0501247 Phenomenology +hep-ph/0502222 Phenomenology +hep-ph/0503226 Phenomenology +hep-ph/0504093 Phenomenology +hep-ph/0506106 Phenomenology +hep-ph/0508027 Phenomenology +hep-ph/0509163 Phenomenology +hep-ph/0512320 Phenomenology +hep-ph/0603247 Phenomenology +hep-ph/0606311 Phenomenology +hep-ph/0608096 Phenomenology +hep-ph/0610272 Phenomenology +hep-ph/0611112 Phenomenology +hep-ph/0701166 Phenomenology +hep-ph/9203220 Phenomenology +hep-ph/9204202 Phenomenology +hep-ph/9205203 Phenomenology +hep-ph/9206225 Phenomenology +hep-ph/9207205 Phenomenology +hep-ph/9207212 Phenomenology +hep-ph/9207257 Phenomenology +hep-ph/9209232 Phenomenology +hep-ph/9209255 Phenomenology +hep-ph/9210231 Phenomenology +hep-ph/9210232 Phenomenology +hep-ph/9210260 Phenomenology +hep-ph/9211260 Phenomenology +hep-ph/9211267 Phenomenology +hep-ph/9211268 Phenomenology +hep-ph/9212315 Phenomenology +hep-ph/9301223 Phenomenology +hep-ph/9302222 Phenomenology +hep-ph/9302223 Phenomenology +hep-ph/9304226 Phenomenology +hep-ph/9304229 Phenomenology +hep-ph/9304258 Phenomenology +hep-ph/9304295 Phenomenology +hep-ph/9304307 Phenomenology +hep-ph/9304321 Phenomenology +hep-ph/9305289 Phenomenology +hep-ph/9305328 Phenomenology +hep-ph/9306201 Phenomenology +hep-ph/9306256 Phenomenology +hep-ph/9306270 Phenomenology +hep-ph/9308216 Phenomenology +hep-ph/9308277 Phenomenology +hep-ph/9308363 Phenomenology +hep-ph/9309299 Phenomenology +hep-ph/9310320 Phenomenology +hep-ph/9311269 Phenomenology +hep-ph/9312232 Phenomenology +hep-ph/9312257 Phenomenology +hep-ph/9312272 Phenomenology +hep-ph/9401299 Phenomenology +hep-ph/9403259 Phenomenology +hep-ph/9405215 Phenomenology +hep-ph/9405224 Phenomenology +hep-ph/9407248 Phenomenology +hep-ph/9407409 Phenomenology +hep-ph/9410203 Phenomenology +hep-ph/9411272 Phenomenology +hep-ph/9504307 Phenomenology +hep-ph/9504330 Phenomenology +hep-ph/9505244 Phenomenology +hep-ph/9506331 Phenomenology +hep-ph/9507453 Phenomenology +hep-ph/9508344 Phenomenology +hep-ph/9510308 Phenomenology +hep-ph/9510457 Phenomenology +hep-ph/9511459 Phenomenology +hep-ph/9511473 Phenomenology +hep-ph/9512278 Phenomenology +hep-ph/9512325 Phenomenology +hep-ph/9512439 Phenomenology +hep-ph/9602299 Phenomenology +hep-ph/9602415 Phenomenology +hep-ph/9604298 Phenomenology +hep-ph/9604334 Phenomenology +hep-ph/9606417 Phenomenology +hep-ph/9607487 Phenomenology +hep-ph/9609248 Phenomenology +hep-ph/9611325 Phenomenology +hep-ph/9611344 Phenomenology +hep-ph/9612329 Phenomenology +hep-ph/9702322 Phenomenology +hep-ph/9702334 Phenomenology +hep-ph/9702393 Phenomenology +hep-ph/9704246 Phenomenology +hep-ph/9704256 Phenomenology +hep-ph/9706478 Phenomenology +hep-ph/9706506 Phenomenology +hep-ph/9707386 Phenomenology +hep-ph/9708442 Phenomenology +hep-ph/9709265 Phenomenology +hep-ph/9710353 Phenomenology +hep-ph/9710420 Phenomenology +hep-ph/9711328 Phenomenology +hep-ph/9712495 Phenomenology +hep-ph/9801416 Phenomenology +hep-ph/9803258 Phenomenology +hep-ph/9804451 Phenomenology +hep-ph/9805300 Phenomenology +hep-ph/9805471 Phenomenology +hep-ph/9806236 Phenomenology +hep-ph/9806387 Phenomenology +hep-ph/9807319 Phenomenology +hep-ph/9807348 Phenomenology +hep-ph/9807377 Phenomenology +hep-ph/9808367 Phenomenology +hep-ph/9811489 Phenomenology +hep-ph/9812493 Phenomenology +hep-ph/9901388 Phenomenology +hep-ph/9903262 Phenomenology +hep-ph/9903524 Phenomenology +hep-ph/9904250 Phenomenology +hep-ph/9904281 Phenomenology +hep-ph/9904393 Phenomenology +hep-ph/9905474 Phenomenology +hep-ph/9906331 Phenomenology +hep-ph/9906345 Phenomenology +hep-ph/9906527 Phenomenology +hep-ph/9908311 Phenomenology +hep-ph/9909481 Phenomenology +hep-ph/9910500 Phenomenology +hep-ph/9911406 Phenomenology +hep-ph/9911510 Phenomenology +hep-ph/9911524 Phenomenology +hep-ph/9912266 Phenomenology +hep-th/0001112 Theory +hep-th/0001197 Theory +hep-th/0002211 Theory +hep-th/0003278 Theory +hep-th/0006054 Theory +hep-th/0006069 Theory +hep-th/0010240 Theory +hep-th/0012251 Theory +hep-th/0102112 Theory +hep-th/0105137 Theory +hep-th/0108025 Theory +hep-th/0108115 Theory +hep-th/0108187 Theory +hep-th/0109050 Theory +hep-th/0111129 Theory +hep-th/0111231 Theory +hep-th/0204143 Theory +hep-th/0209050 Theory +hep-th/0209122 Theory +hep-th/0301218 Theory +hep-th/0302034 Theory +hep-th/0303057 Theory +hep-th/0305011 Theory +hep-th/0306106 Theory +hep-th/0306109 Theory +hep-th/0306137 Theory +hep-th/0307170 Theory +hep-th/0308068 Theory +hep-th/0309168 Theory +hep-th/0310222 Theory +hep-th/0310251 Theory +hep-th/0312153 Theory +hep-th/0403026 Theory +hep-th/0406012 Theory +hep-th/0408039 Theory +hep-th/0408064 Theory +hep-th/0409306 Theory +hep-th/0410103 Theory +hep-th/0502108 Theory +hep-th/0502156 Theory +hep-th/0504005 Theory +hep-th/0703281 Theory +hep-th/9108011 Theory +hep-th/9109038 Theory +hep-th/9109040 Theory +hep-th/9110038 Theory +hep-th/9111048 Theory +hep-th/9201017 Theory +hep-th/9201041 Theory +hep-th/9202087 Theory +hep-th/9204046 Theory +hep-th/9206016 Theory +hep-th/9207053 Theory +hep-th/9209016 Theory +hep-th/9212049 Theory +hep-th/9301129 Theory +hep-th/9302038 Theory +hep-th/9303057 Theory +hep-th/9304154 Theory +hep-th/9305185 Theory +hep-th/9307088 Theory +hep-th/9309027 Theory +hep-th/9311009 Theory +hep-th/9402032 Theory +hep-th/9402044 Theory +hep-th/9403198 Theory +hep-th/9407185 Theory +hep-th/9408083 Theory +hep-th/9408155 Theory +hep-th/9411187 Theory +hep-th/9503179 Theory +hep-th/9504027 Theory +hep-th/9504147 Theory +hep-th/9506027 Theory +hep-th/9506077 Theory +hep-th/9507027 Theory +hep-th/9508064 Theory +hep-th/9509108 Theory +hep-th/9510117 Theory +hep-th/9510222 Theory +hep-th/9510229 Theory +hep-th/9511026 Theory +hep-th/9512203 Theory +hep-th/9602010 Theory +hep-th/9603042 Theory +hep-th/9603113 Theory +hep-th/9604070 Theory +hep-th/9605036 Theory +hep-th/9605108 Theory +hep-th/9605150 Theory +hep-th/9605199 Theory +hep-th/9606017 Theory +hep-th/9607021 Theory +hep-th/9607207 Theory +hep-th/9608005 Theory +hep-th/9608086 Theory +hep-th/9608111 Theory +hep-th/9608157 Theory +hep-th/9609161 Theory +hep-th/9609176 Theory +hep-th/9610251 Theory +hep-th/9611186 Theory +hep-th/9612157 Theory +hep-th/9702061 Theory +hep-th/9702165 Theory +hep-th/9702187 Theory +hep-th/9702198 Theory +hep-th/9703157 Theory +hep-th/9704089 Theory +hep-th/9705117 Theory +hep-th/9705212 Theory +hep-th/9705221 Theory +hep-th/9708008 Theory +hep-th/9708015 Theory +hep-th/9709159 Theory +hep-th/9710009 Theory +hep-th/9801108 Theory +hep-th/9806092 Theory +hep-th/9902105 Theory +hep-th/9907080 Theory +hep-th/9910202 Theory +math/0410145 Algebraic Geometry +math/0506432 Geometric Topology +math/0605566 Algebraic Geometry +math/0701889 Algebraic Geometry +physics/0612011 Data Analysis, Statistics and Probability +physics/9802002 Accelerator Physics +0706.4170 Other Computer Science +0708.0778 Functional Analysis +0709.0435 Computer Science and Game Theory +0709.4439 Pattern Formation and Solitons +0710.3386 Statistical Mechanics +0712.0374 Analysis of PDEs +0712.1014 Discrete Mathematics +0712.3423 Logic in Computer Science +0801.1781 Mesoscale and Nanoscale Physics +0801.2732 Mesoscale and Nanoscale Physics +0804.4693 Exactly Solvable and Integrable Systems +0805.2217 Materials Science +0805.3221 +0805.4106 Probability +0806.1601 Phenomenology +0806.1608 +0806.1620 Phenomenology +0806.3680 Commutative Algebra +0806.3816 Other Condensed Matter +0806.4399 Theory +0807.3507 Strongly Correlated Electrons +0807.4854 Disordered Systems and Neural Networks +0807.4954 Number Theory +0809.4880 Superconductivity +0810.1150 Applications +0810.3988 +0811.0300 Other Condensed Matter +0811.0464 Disordered Systems and Neural Networks +0811.3930 Operator Algebras +0812.1747 +0812.2159 Geometric Topology +0812.3302 Materials Science +0901.1804 Optics +0901.2466 Optics +0901.3028 Neurons and Cognition +0901.3764 Optimization and Control +0902.0506 Computation +0902.1359 Materials Science +0902.1577 Materials Science +0902.2730 Materials Science +0902.3725 Neurons and Cognition +0902.4812 Cosmology and Nongalactic Astrophysics +0902.4863 +0903.0006 Cosmology and Nongalactic Astrophysics +0903.0007 Optics +0903.0013 Superconductivity +0903.0022 Methodology +0903.0026 Materials Science +0903.0029 Atmospheric and Oceanic Physics +0903.0031 Quantitative Methods +0903.0033 Analysis of PDEs +0903.0034 Data Structures and Algorithms +0903.0035 Distributed, Parallel, and Cluster Computing +0903.0041 Artificial Intelligence +0903.0043 Instrumentation and Methods for Astrophysics +0903.0044 Superconductivity +0903.0051 Discrete Mathematics +0903.0053 Software Engineering +0903.0054 Software Engineering +0903.0062 Instrumentation and Methods for Astrophysics +0903.0063 Functional Analysis +0903.0065 Cosmology and Nongalactic Astrophysics +0903.0068 General Topology +0903.0069 Cryptography and Security +0903.0071 +0903.0072 Other Condensed Matter +0903.0075 Space Physics +0903.0078 Mesoscale and Nanoscale Physics +0903.0086 Number Theory +0903.0089 +0903.0090 Functional Analysis +0903.0097 Cosmology and Nongalactic Astrophysics +0903.0098 Cosmology and Nongalactic Astrophysics +0903.0100 +0903.0103 Cosmology and Nongalactic Astrophysics +0903.0105 Other Condensed Matter +0903.0109 +0903.0110 Physics Education +0903.0113 Cosmology and Nongalactic Astrophysics +0903.0116 Data Structures and Algorithms +0903.0130 +0903.0132 Algebraic Geometry +0903.0136 Data Structures and Algorithms +0903.0140 Algebraic Topology +0903.0142 Symplectic Geometry +0903.0144 Quantum Algebra +0903.0147 Geometric Topology +0903.0149 Physics and Society +0903.0154 General Topology +0903.0156 Algebraic Topology +0903.0158 Functional Analysis +0903.0160 General Topology +0903.0163 General Topology +0903.0166 Geometric Topology +0903.0169 Differential Geometry +0903.0170 Chaotic Dynamics +0903.0172 Differential Geometry +0903.0173 Discrete Mathematics +0903.0176 Differential Geometry +0903.0180 Group Theory +0903.0181 Earth and Planetary Astrophysics +0903.0184 Biomolecules +0903.0188 Data Analysis, Statistics and Probability +0903.0194 Computers and Society +0903.0196 Symplectic Geometry +0903.0197 Data Structures and Algorithms +0903.0198 Combinatorics +0903.0203 Statistical Finance +0903.0205 High Energy Astrophysical Phenomena +0903.0207 Multimedia +0903.0208 Category Theory +0903.0210 Classical Physics +0903.0211 Artificial Intelligence +0903.0218 High Energy Astrophysical Phenomena +0903.0222 Dynamical Systems +0903.0224 Dynamical Systems +0903.0226 Statistics Theory +0903.0228 Differential Geometry +0903.0229 Differential Geometry +0903.0232 Solar and Stellar Astrophysics +0903.0239 Analysis of PDEs +0903.0241 Differential Geometry +0903.0245 Superconductivity +0903.0246 Commutative Algebra +0903.0247 Phenomenology +0903.0255 Probability +0903.0258 +0903.0263 Experiment +0903.0266 Instrumentation and Methods for Astrophysics +0903.0269 Functional Analysis +0903.0276 Artificial Intelligence +0903.0277 Combinatorics +0903.0278 Materials Science +0903.0279 Artificial Intelligence +0903.0282 General Finance +0903.0284 Geometric Topology +0903.0285 Astrophysics of Galaxies +0903.0286 Statistical Finance +0903.0290 Statistics Theory +0903.0291 Probability +0903.0297 Optimization and Control +0903.0298 Optimization and Control +0903.0300 Accelerator Physics +0903.0307 Information Theory +0903.0308 Computational Geometry +0903.0311 Dynamical Systems +0903.0320 +0903.0328 Combinatorics +0903.0332 Numerical Analysis +0903.0333 Category Theory +0903.0337 Symplectic Geometry +0903.0339 Combinatorics +0903.0342 Exactly Solvable and Integrable Systems +0903.0344 Rings and Algebras +0903.0352 Algebraic Geometry +0903.0353 Computer Science and Game Theory +0903.0357 K-Theory and Homology +0903.0365 Data Analysis, Statistics and Probability +0903.0367 Data Structures and Algorithms +0903.0369 Geometric Topology +0903.0371 Group Theory +0903.0373 Pattern Formation and Solitons +0903.0374 Astrophysics of Galaxies +cond-mat/0401376 Mesoscale and Nanoscale Physics +hep-ph/0611215 Phenomenology +math/0012192 Group Theory +math/0210085 Rings and Algebras +math/0310279 Geometric Topology +math/0411078 Geometric Topology +math/0505517 Geometric Topology +math/0509555 Geometric Topology +math/0510129 Geometric Topology +math/0510574 Geometric Topology +math/0604490 Algebraic Geometry +math/0612567 Representation Theory +math/0702012 Probability +math/0702040 Combinatorics +math/0703574 Spectral Theory +0704.1152 Theory +0706.2000 +0706.2116 Algebraic Geometry +0711.0780 Analysis of PDEs +0711.2970 Functional Analysis +0711.3065 Phenomenology +0712.2775 Theory +0803.0897 Optimization and Control +0803.1339 Representation Theory +0803.2253 Combinatorics +0803.2430 Quantum Algebra +0804.0397 Differential Geometry +0804.1565 Number Theory +0804.2092 Geophysics +0804.2397 Superconductivity +0804.2400 Probability +0805.1208 Superconductivity +0806.0659 Mesoscale and Nanoscale Physics +0806.1170 General Finance +0806.1935 Algebraic Geometry +0807.1868 Strongly Correlated Electrons +0807.2011 Computer Science and Game Theory +0808.0555 Logic in Computer Science +0808.1557 Superconductivity +0808.3590 Classical Analysis and ODEs +0809.1684 +0809.3220 +0810.1586 +0810.2254 Materials Science +0810.2612 Analysis of PDEs +0810.4093 +0811.0051 Representation Theory +0811.0671 Other Condensed Matter +0811.1273 Experiment +0811.1275 Experiment +0811.1532 Other Condensed Matter +0811.4374 Classical Analysis and ODEs +0812.1784 +0812.3223 +0812.4272 +0901.2621 Algebraic Topology +0901.3012 Rings and Algebras +0901.3273 +0901.3526 Soft Condensed Matter +0901.4967 Analysis of PDEs +0902.0152 Algebraic Geometry +0902.0182 Combinatorics +0902.0207 Optics +0902.0361 Cosmology and Nongalactic Astrophysics +0902.0370 Cosmology and Nongalactic Astrophysics +0902.0382 Computer Science and Game Theory +0902.0383 +0902.0385 Instrumentation and Methods for Astrophysics +0902.0396 Classical Analysis and ODEs +0902.0399 Algebraic Topology +0902.0408 Statistics Theory +0902.0410 +0902.0411 Algebraic Topology +0902.0423 Analysis of PDEs +0902.0431 Differential Geometry +0902.0433 Combinatorics +0902.0439 Logic +0902.0442 Computation +0902.0443 Combinatorics +0902.0448 Exactly Solvable and Integrable Systems +0902.0451 Classical Analysis and ODEs +0902.0458 Cryptography and Security +0902.0462 Probability +0902.0467 Differential Geometry +0902.0472 Cosmology and Nongalactic Astrophysics +0902.0474 +0902.0476 Analysis of PDEs +0902.0496 Functional Analysis +0902.0497 Probability +0902.0508 Analysis of PDEs +0902.0509 Chemical Physics +0902.0510 Phenomenology +0902.0512 Quantum Algebra +0902.0514 Symbolic Computation +0902.0515 Plasma Physics +0902.0517 +0902.0520 Classical Physics +0902.0522 +0902.0523 Astrophysics of Galaxies +0902.0534 Algebraic Geometry +0902.0538 Analysis of PDEs +0902.0539 Probability +0902.0543 Algebraic Geometry +0902.0547 Combinatorics +0902.0549 Rings and Algebras +0902.0558 Networking and Internet Architecture +0902.0565 Differential Geometry +0902.0568 Classical Analysis and ODEs +0902.0576 Geometric Topology +0902.0578 Experiment +0902.0580 Combinatorics +0902.0582 Probability +0902.0583 Combinatorics +0902.0584 Probability +0902.0585 Probability +0902.0586 Probability +0902.0589 Solar and Stellar Astrophysics +0902.0591 Solar and Stellar Astrophysics +0902.0597 Earth and Planetary Astrophysics +0902.0603 Medical Physics +cs/0703010 Data Structures and Algorithms +gr-qc/0612017 +gr-qc/0701115 +math/0510443 K-Theory and Homology +math/0601605 Probability +math/0606107 Algebraic Topology +math/0612218 Geometric Topology +math/0701682 Functional Analysis +math/0703062 Functional Analysis +nlin/0509032 Exactly Solvable and Integrable Systems +quant-ph/0611055 +quant-ph/0702047 +quant-ph/0703035 +0705.4191 Materials Science +0707.1161 Atmospheric and Oceanic Physics +0709.0987 Combinatorics +0711.2080 Phenomenology +0711.2842 Computers and Society +0711.4720 Other Condensed Matter +0711.4884 Mesoscale and Nanoscale Physics +0712.4368 General Physics +0802.3302 Materials Science +0803.1599 Materials Science +0804.1090 Other Condensed Matter +0804.2472 Algebraic Geometry +0806.2665 Strongly Correlated Electrons +0806.4577 +0807.0033 Theory +0807.1516 Numerical Analysis +0807.4306 Commutative Algebra +0808.1586 Strongly Correlated Electrons +0808.2460 Functional Analysis +0808.3200 Statistical Finance +0808.4122 Computational Complexity +0809.0759 Strongly Correlated Electrons +0809.0846 Phenomenology +0810.0151 Algebraic Geometry +0810.1947 Superconductivity +0810.2492 Rings and Algebras +0810.3942 +0810.4765 Strongly Correlated Electrons +0810.4966 Mesoscale and Nanoscale Physics +0810.5293 Mesoscale and Nanoscale Physics +0810.5507 Dynamical Systems +0811.1340 Superconductivity +0811.1625 +0811.2183 +0811.3887 Information Theory +0811.4241 Number Theory +0812.0754 Discrete Mathematics +0812.1927 Superconductivity +0812.2542 Symplectic Geometry +0812.3069 Theory +0812.4111 Superconductivity +0901.1839 Functional Analysis +0902.2579 Analysis of PDEs +0902.4227 Earth and Planetary Astrophysics +0903.0012 +0903.0217 Astrophysics of Galaxies +0903.0554 Classical Analysis and ODEs +0903.0615 Cosmology and Nongalactic Astrophysics +0903.0625 Databases +0903.0640 Probability +0903.0642 Combinatorics +0903.0643 Geometric Topology +0903.0644 Classical Analysis and ODEs +0903.0645 Methodology +0903.0647 Commutative Algebra +0903.0648 Group Theory +0903.0649 Machine Learning +0903.0650 Information Theory +0903.0656 Astrophysics of Galaxies +0903.0658 Functional Analysis +0903.0659 Functional Analysis +0903.0666 Information Theory +0903.0675 +0903.0677 Statistical Mechanics +0903.0682 Databases +0903.0686 Spectral Theory +0903.0692 Group Theory +0903.0693 Fluid Dynamics +0903.0695 Artificial Intelligence +0903.0701 Superconductivity +0903.0702 Statistics Theory +0903.0703 General Physics +0903.0705 Combinatorics +0903.0708 +0903.0709 Materials Science +0903.0710 Distributed, Parallel, and Cluster Computing +0903.0711 Optimization and Control +0903.0726 Statistics Theory +0903.0727 Optimization and Control +0903.0728 Methodology +0903.0730 Distributed, Parallel, and Cluster Computing +0903.0731 Populations and Evolution +0903.0734 Cosmology and Nongalactic Astrophysics +0903.0735 Artificial Intelligence +0903.0737 Networking and Internet Architecture +0903.0739 Quantum Algebra +0903.0744 Geometric Topology +0903.0749 +0903.0758 Representation Theory +0903.0766 Classical Physics +0903.0767 Classical Physics +0903.0768 Symplectic Geometry +0903.0771 Algebraic Geometry +0903.0772 High Energy Astrophysical Phenomena +0903.0781 Analysis of PDEs +0903.0797 Analysis of PDEs +0903.0798 Mesoscale and Nanoscale Physics +0903.0804 Accelerator Physics +0903.0805 Instrumentation and Methods for Astrophysics +0903.0806 Materials Science +0903.0807 Atomic and Molecular Clusters +0903.0808 Soft Condensed Matter +0903.0809 Analysis of PDEs +0903.0810 Logic +0903.0813 General Topology +0903.0816 Cell Behavior +0903.0829 Artificial Intelligence +0903.0830 Operator Algebras +0903.0833 Materials Science +0903.0842 Functional Analysis +0903.0852 Functional Analysis +0903.0856 Materials Science +math/0301087 Geometric Topology +math/0403077 Geometric Topology +math/0612078 Algebraic Geometry +0711.2499 Theory +0802.0119 Complex Variables +0805.0681 Algebraic Geometry +0805.4109 Chemical Physics +0806.3670 +0807.0620 Number Theory +0808.0053 Physics and Society +0808.1345 Theory +0809.1181 Distributed, Parallel, and Cluster Computing +0809.3758 Soft Condensed Matter +0810.5523 +0811.0149 Functional Analysis +0811.2341 +hep-th/0111252 Theory +hep-th/0702204 Theory +hep-th/9912173 Theory +math/0703865 Combinatorics +quant-ph/0601172 +0704.3611 +0705.1033 Data Structures and Algorithms +0708.3745 +0709.2353 +0709.2404 Statistical Mechanics +0709.3271 +0710.1491 +0711.3221 Dynamical Systems +0712.4101 Neural and Evolutionary Computing +0712.4102 Neural and Evolutionary Computing +0801.3074 Algebraic Geometry +0803.0783 Methodology +0803.0969 Superconductivity +0803.2675 Neural and Evolutionary Computing +0804.0517 Functional Analysis +0804.0518 Dynamical Systems +0804.3936 Analysis of PDEs +0805.0554 +0805.3378 Analysis of PDEs +0805.4777 Algebraic Geometry +0806.0247 Theory +0810.1902 +0811.0848 Differential Geometry +0811.2834 Molecular Networks +0811.4140 Phenomenology +0812.0326 +0812.1040 Mesoscale and Nanoscale Physics +0901.0612 +0901.0903 Statistical Finance +0901.4727 Computer Science and Game Theory +0902.0908 Probability +0902.1541 Theory +0903.0694 Networking and Internet Architecture +0903.0723 Algebraic Geometry +0903.2391 Astrophysics of Galaxies +0903.2574 Probability +0903.3108 Mesoscale and Nanoscale Physics +0903.5347 +0904.1212 Theory +0904.1257 Superconductivity +0904.1440 Cosmology and Nongalactic Astrophysics +0904.2387 Phenomenology +0905.4110 Strongly Correlated Electrons +0905.4626 Strongly Correlated Electrons +0906.0285 Analysis of PDEs +0906.0319 Optics +0906.0592 Mesoscale and Nanoscale Physics +0906.0935 Mesoscale and Nanoscale Physics +0906.1431 Superconductivity +0906.2738 Data Structures and Algorithms +0906.3169 Strongly Correlated Electrons +0906.3420 Solar and Stellar Astrophysics +0906.4360 Disordered Systems and Neural Networks +0906.4433 Optimization and Control +0906.4643 Information Theory +0906.5043 Analysis of PDEs +0907.0113 Superconductivity +0907.1109 +0907.3426 Machine Learning +0907.5065 +0908.0506 Optimization and Control +0908.1292 Earth and Planetary Astrophysics +0908.4322 Materials Science +0908.4323 Number Theory +0909.0963 Materials Science +0909.4567 Geometric Topology +0909.4570 Statistics Theory +0909.4576 Mesoscale and Nanoscale Physics +0909.5006 Information Theory +0910.0095 History and Overview +0910.0248 Earth and Planetary Astrophysics +0910.0253 Instrumentation and Detectors +0910.0255 Statistical Mechanics +0910.0257 Cosmology and Nongalactic Astrophysics +0910.0272 Optics +0910.0273 General Physics +0910.0279 Logic +0910.0283 Functional Analysis +0910.0286 Computational Geometry +0910.0291 Experiment +0910.0294 Pattern Formation and Solitons +0910.0295 Quantum Algebra +0910.0296 Experiment +0910.0298 Algebraic Geometry +0910.0305 Geometric Topology +0910.0313 High Energy Astrophysical Phenomena +0910.0314 Probability +0910.0315 Probability +0910.0316 Networking and Internet Architecture +0910.0317 Distributed, Parallel, and Cluster Computing +0910.0320 Information Theory +0910.0322 Analysis of PDEs +0910.0323 Analysis of PDEs +0910.0337 Experiment +0910.0338 Theory +0910.0339 Fluid Dynamics +0910.0340 Algebraic Geometry +0910.0344 General Physics +0910.0346 Complex Variables +0910.0349 Learning +0910.0351 Theory +0910.0355 Geometric Topology +0910.0357 Chemical Physics +0910.0365 +0910.0366 Distributed, Parallel, and Cluster Computing +0910.0370 Theory +0910.0371 Phenomenology +0910.0373 +0910.0376 Differential Geometry +0910.0378 Optimization and Control +0910.0381 Physics and Society +0910.0387 Populations and Evolution +0910.0391 Instrumentation and Methods for Astrophysics +0910.0401 Experiment +0910.0402 Phenomenology +0910.0405 Statistics Theory +0910.0407 Atomic and Molecular Clusters +0910.0408 Functional Analysis +0910.0409 Accelerator Physics +0910.0412 Phenomenology +0910.0413 Information Theory +0910.0423 Experiment +0910.0424 +0910.0429 Genomics +0910.0432 Solar and Stellar Astrophysics +0910.0433 Analysis of PDEs +0910.0436 High Energy Astrophysical Phenomena +0910.0437 Cosmology and Nongalactic Astrophysics +0910.0438 Chemical Physics +0910.0439 General Topology +0910.0443 Computer Science and Game Theory +0910.0445 Theory +0910.0449 Geometric Topology +0910.0452 Metric Geometry +0910.0454 Experiment +0910.0462 +astro-ph/0002195 +astro-ph/0003222 +astro-ph/0003293 +astro-ph/0004386 +astro-ph/0006325 +astro-ph/0008500 +astro-ph/0104424 +astro-ph/0107206 +astro-ph/0109028 +astro-ph/0109073 +astro-ph/0201445 +astro-ph/0204330 +astro-ph/0403112 +astro-ph/0501247 +astro-ph/0507614 +astro-ph/0601074 +astro-ph/0604007 +astro-ph/0606440 +astro-ph/0701615 +astro-ph/9601013 +astro-ph/9707068 +astro-ph/9707339 +astro-ph/9812199 +astro-ph/9903120 +astro-ph/9907342 +cond-mat/0410339 Materials Science +cs/0408047 Computational Engineering, Finance, and Science +gr-qc/0512047 +hep-ph/0012061 Phenomenology +hep-ph/9601378 Phenomenology +math/0509325 Combinatorics +physics/0007035 General Physics +physics/0007083 Accelerator Physics +physics/0008009 Accelerator Physics +physics/0008025 General Physics +physics/0008062 Accelerator Physics +physics/0008079 Accelerator Physics +physics/0008127 Accelerator Physics +physics/0008178 Accelerator Physics +physics/0108028 Accelerator Physics +physics/9911060 General Physics +q-bio/0601030 Cell Behavior +quant-ph/9706033 +0704.0613 Strongly Correlated Electrons +0704.0728 Mesoscale and Nanoscale Physics +0710.0087 Strongly Correlated Electrons +0711.2409 Statistics Theory +0711.3066 +0804.4294 Mesoscale and Nanoscale Physics +0807.3899 Statistics Theory +0808.1678 Statistical Mechanics +0809.3935 Computational Geometry +0901.1443 Experiment +0901.3313 +0902.1206 Instrumentation and Detectors +0902.1723 Algebraic Topology +0903.0623 Probability +0903.2128 +cond-mat/0201007 Mesoscale and Nanoscale Physics +cond-mat/0403436 Mesoscale and Nanoscale Physics +physics/0212035 Data Analysis, Statistics and Probability +0710.2119 +0710.5792 General Physics +0806.1649 Populations and Evolution +0808.1401 Algebraic Geometry +0812.1793 Superconductivity +0812.3750 Phenomenology +0902.2058 +0903.1352 Programming Languages +0903.4536 Functional Analysis +0905.0869 Populations and Evolution +0907.1467 Phenomenology +0907.5297 Mesoscale and Nanoscale Physics +0909.4348 Data Structures and Algorithms +0910.4687 Mesoscale and Nanoscale Physics +0910.4991 Analysis of PDEs +0910.5761 Machine Learning +0911.0110 Statistical Mechanics +0911.0906 +0911.1020 +astro-ph/0107519 +astro-ph/0107521 +astro-ph/0107523 +astro-ph/0107525 +astro-ph/0107526 +astro-ph/0107527 +astro-ph/0107528 +astro-ph/0107529 +astro-ph/0107531 +astro-ph/0107532 +astro-ph/0107533 +astro-ph/0107534 +astro-ph/0107536 +astro-ph/0107538 +astro-ph/0107539 +astro-ph/0107540 +astro-ph/0107541 +astro-ph/0107543 +astro-ph/0107544 +astro-ph/0107547 +astro-ph/0107548 +astro-ph/0107549 +astro-ph/0107551 +astro-ph/0107552 +astro-ph/0107553 +astro-ph/0107554 +astro-ph/0107555 +astro-ph/0107556 +astro-ph/0107557 +astro-ph/0107558 +astro-ph/0107559 +astro-ph/0107562 +astro-ph/0107563 +astro-ph/0107565 +astro-ph/0107567 +astro-ph/0107568 +astro-ph/0107569 +astro-ph/0107574 +astro-ph/0107575 +astro-ph/0107576 +astro-ph/0107577 +astro-ph/0107579 +astro-ph/0107580 +astro-ph/0107585 +astro-ph/0107588 +astro-ph/0107593 +astro-ph/0107594 +astro-ph/0107598 +astro-ph/0107599 +astro-ph/0107601 +astro-ph/0107603 +astro-ph/0107604 +astro-ph/0108001 +astro-ph/0108004 +astro-ph/0108006 +astro-ph/0108008 +astro-ph/0108009 +astro-ph/0108011 +astro-ph/0108012 +astro-ph/0108016 +astro-ph/0108017 +astro-ph/0108018 +astro-ph/0108019 +astro-ph/0108020 +astro-ph/0108021 +astro-ph/0108022 +astro-ph/0108030 +astro-ph/0108036 +astro-ph/0108037 +astro-ph/0108038 +astro-ph/0108040 +astro-ph/0108041 +astro-ph/0108043 +astro-ph/0108045 +astro-ph/0108047 +astro-ph/0108048 +astro-ph/0108049 +astro-ph/0108050 +astro-ph/0108052 +astro-ph/0108053 +astro-ph/0108054 +astro-ph/0108055 +astro-ph/0108057 +astro-ph/0108059 +astro-ph/0108061 +astro-ph/0108062 +astro-ph/0108063 +astro-ph/0108064 +astro-ph/0108065 +astro-ph/0108066 +astro-ph/0108067 +astro-ph/0108069 +astro-ph/0108070 +astro-ph/0108071 +astro-ph/0108072 +astro-ph/0108074 +astro-ph/0108075 +astro-ph/0108076 +astro-ph/0108078 +astro-ph/0108079 +astro-ph/0108080 +astro-ph/0108081 +astro-ph/0108086 +astro-ph/0108087 +astro-ph/0108089 +astro-ph/0108094 +astro-ph/0108095 +astro-ph/0108097 +astro-ph/0108098 +astro-ph/0108099 +astro-ph/0108100 +astro-ph/0108101 +astro-ph/0108102 +astro-ph/0108105 +astro-ph/0108106 +astro-ph/0108108 +astro-ph/0108111 +astro-ph/0108113 +astro-ph/0108114 +astro-ph/0108116 +astro-ph/0108117 +astro-ph/0108118 +astro-ph/0108121 +astro-ph/0108122 +astro-ph/0108123 +astro-ph/0108124 +astro-ph/0108126 +astro-ph/0108127 +astro-ph/0108130 +astro-ph/0108131 +astro-ph/0108133 +astro-ph/0108134 +astro-ph/0108135 +astro-ph/0108136 +astro-ph/0108138 +astro-ph/0108139 +astro-ph/0108143 +astro-ph/0108144 +astro-ph/0108145 +astro-ph/0108149 +astro-ph/0108151 +astro-ph/0108154 +astro-ph/0108156 +astro-ph/0108157 +astro-ph/0108158 +astro-ph/0108159 +astro-ph/0108163 +astro-ph/0108164 +astro-ph/0108165 +astro-ph/0108166 +astro-ph/0108168 +astro-ph/0108170 +astro-ph/0108171 +astro-ph/0108172 +astro-ph/0108173 +astro-ph/0108174 +astro-ph/0108178 +astro-ph/0108179 +astro-ph/0108182 +astro-ph/0108183 +astro-ph/0108185 +astro-ph/0108188 +astro-ph/0108189 +astro-ph/0108190 +astro-ph/0108191 +astro-ph/0108192 +astro-ph/0108193 +astro-ph/0108194 +astro-ph/0108195 +astro-ph/0108196 +astro-ph/0108200 +astro-ph/0108202 +astro-ph/0108203 +astro-ph/0108205 +astro-ph/0108206 +astro-ph/0108207 +astro-ph/0108208 +astro-ph/0108212 +astro-ph/0108213 +astro-ph/0108214 +astro-ph/0108219 +astro-ph/0108222 +astro-ph/0108223 +astro-ph/0108226 +astro-ph/0108227 +astro-ph/0108229 +astro-ph/0108230 +astro-ph/0108232 +astro-ph/0108235 +astro-ph/0108236 +astro-ph/0108237 +astro-ph/0108238 +astro-ph/0108239 +astro-ph/0108241 +astro-ph/0108243 +astro-ph/0108245 +astro-ph/0108246 +astro-ph/0108247 +astro-ph/0108250 +astro-ph/0108252 +astro-ph/0108254 +astro-ph/0108257 +astro-ph/0108258 +astro-ph/0108260 +astro-ph/0108261 +astro-ph/0108263 +astro-ph/0108264 +astro-ph/0108265 +astro-ph/0108266 +astro-ph/0108268 +astro-ph/0108269 +astro-ph/0108270 +astro-ph/0108271 +astro-ph/0108272 +astro-ph/0108273 +astro-ph/0108274 +astro-ph/0108275 +astro-ph/0108276 +astro-ph/0108277 +astro-ph/0108279 +astro-ph/0108282 +astro-ph/0108284 +astro-ph/0108285 +astro-ph/0108289 +astro-ph/0108293 +astro-ph/0108294 +astro-ph/0108299 +astro-ph/0108300 +astro-ph/0108301 +astro-ph/0108302 +astro-ph/0108303 +astro-ph/0108305 +astro-ph/0108306 +astro-ph/0108307 +astro-ph/0108308 +astro-ph/0108310 +astro-ph/0108312 +astro-ph/0108314 +astro-ph/0108315 +astro-ph/0108316 +astro-ph/0108317 +astro-ph/0108318 +astro-ph/0108321 +astro-ph/0108322 +astro-ph/0108323 +astro-ph/0108324 +astro-ph/0108325 +astro-ph/0108326 +astro-ph/0108328 +astro-ph/0108329 +astro-ph/0108330 +astro-ph/0108333 +astro-ph/0108335 +astro-ph/0108336 +astro-ph/0108337 +astro-ph/0108339 +astro-ph/0108340 +astro-ph/0108345 +astro-ph/0108346 +astro-ph/0108351 +astro-ph/0108354 +astro-ph/0108356 +astro-ph/0108357 +astro-ph/0108359 +astro-ph/0108360 +astro-ph/0108361 +astro-ph/0108362 +astro-ph/0108365 +astro-ph/0108367 +astro-ph/0108368 +astro-ph/0108369 +astro-ph/0108371 +astro-ph/0108374 +astro-ph/0108375 +astro-ph/0108378 +astro-ph/0108379 +astro-ph/0108380 +astro-ph/0108386 +astro-ph/0108387 +astro-ph/0108389 +astro-ph/0108395 +astro-ph/0108400 +astro-ph/0108402 +astro-ph/0108403 +astro-ph/0108405 +astro-ph/0108406 +astro-ph/0108408 +astro-ph/0108410 +astro-ph/0108412 +astro-ph/0108413 +astro-ph/0108415 +astro-ph/0108416 +astro-ph/0108418 +astro-ph/0108419 +astro-ph/0108420 +astro-ph/0108423 +astro-ph/0108424 +astro-ph/0108426 +astro-ph/0108428 +astro-ph/0108429 +astro-ph/0108431 +astro-ph/0108432 +astro-ph/0108433 +astro-ph/0108434 +astro-ph/0108435 +astro-ph/0108436 +astro-ph/0108437 +astro-ph/0108438 +astro-ph/0108439 +astro-ph/0108440 +astro-ph/0108445 +astro-ph/0108447 +astro-ph/0108448 +astro-ph/0108450 +astro-ph/0108451 +astro-ph/0108452 +astro-ph/0108453 +astro-ph/0108456 +astro-ph/0108457 +astro-ph/0108458 +astro-ph/0108459 +astro-ph/0108460 +astro-ph/0108464 +astro-ph/0108465 +astro-ph/0108467 +astro-ph/0108469 +astro-ph/0108470 +astro-ph/0108471 +astro-ph/0108473 +astro-ph/0108474 +astro-ph/0108477 +astro-ph/0108480 +astro-ph/0108482 +astro-ph/0108484 +astro-ph/0108485 +astro-ph/0108486 +astro-ph/0108489 +astro-ph/0108492 +astro-ph/0108494 +astro-ph/0108495 +astro-ph/0108496 +astro-ph/0108497 +astro-ph/0108499 +astro-ph/0108502 +astro-ph/0108504 +astro-ph/0108505 +astro-ph/0108506 +astro-ph/0108508 +astro-ph/0108510 +astro-ph/0108511 +astro-ph/0108513 +astro-ph/0108514 +astro-ph/0108517 +astro-ph/0108520 +astro-ph/0108521 +astro-ph/0109001 +astro-ph/0109002 +astro-ph/0109004 +astro-ph/0109006 +astro-ph/0109009 +astro-ph/0109010 +astro-ph/0109011 +astro-ph/0109012 +astro-ph/0109014 +astro-ph/0109015 +astro-ph/0109016 +astro-ph/0109017 +astro-ph/0109020 +astro-ph/0109021 +astro-ph/0109022 +astro-ph/0109026 +astro-ph/0109027 +astro-ph/0109030 +astro-ph/0109031 +astro-ph/0109032 +astro-ph/0109033 +astro-ph/0109036 +astro-ph/0109038 +astro-ph/0109039 +astro-ph/0109041 +astro-ph/0109042 +astro-ph/0109044 +astro-ph/0109047 +astro-ph/0109048 +astro-ph/0109049 +astro-ph/0109051 +astro-ph/0109053 +astro-ph/0109059 +astro-ph/0109061 +astro-ph/0109062 +astro-ph/0109064 +astro-ph/0109065 +astro-ph/0109066 +astro-ph/0109067 +astro-ph/0109068 +astro-ph/0109069 +astro-ph/0109071 +astro-ph/0109074 +astro-ph/0109075 +astro-ph/0109076 +astro-ph/0109077 +astro-ph/0109078 +astro-ph/0109080 +astro-ph/0109081 +astro-ph/0109086 +astro-ph/0109088 +astro-ph/0109089 +astro-ph/0109091 +astro-ph/0109093 +astro-ph/0109094 +astro-ph/0109095 +astro-ph/0109097 +astro-ph/0109101 +astro-ph/0109102 +astro-ph/0109103 +astro-ph/0109104 +astro-ph/0109106 +astro-ph/0109107 +astro-ph/0109108 +astro-ph/0109111 +astro-ph/0109112 +astro-ph/0109114 +astro-ph/0109115 +astro-ph/0109119 +astro-ph/0109122 +astro-ph/0109123 +astro-ph/0109125 +astro-ph/0109127 +astro-ph/0109128 +astro-ph/0109129 +astro-ph/0109130 +astro-ph/0109131 +astro-ph/0109132 +astro-ph/0109134 +astro-ph/0109135 +astro-ph/0109136 +astro-ph/0109137 +astro-ph/0109141 +astro-ph/0109146 +astro-ph/0109147 +astro-ph/0109148 +astro-ph/0109149 +astro-ph/0109150 +astro-ph/0109151 +astro-ph/0109158 +astro-ph/0109159 +astro-ph/0109160 +astro-ph/0109161 +astro-ph/0109162 +astro-ph/0109165 +astro-ph/0109168 +astro-ph/0109170 +astro-ph/0109173 +astro-ph/0109175 +astro-ph/0109176 +astro-ph/0109177 +astro-ph/0109179 +astro-ph/0109180 +astro-ph/0109181 +astro-ph/0109182 +astro-ph/0109183 +astro-ph/0109185 +astro-ph/0109187 +astro-ph/0109188 +astro-ph/0109190 +astro-ph/0109193 +astro-ph/0109194 +astro-ph/0109196 +astro-ph/0109198 +astro-ph/0109200 +astro-ph/0109201 +astro-ph/0109203 +astro-ph/0109204 +astro-ph/0109205 +astro-ph/0109208 +astro-ph/0109211 +astro-ph/0109212 +astro-ph/0109214 +astro-ph/0109220 +astro-ph/0109222 +astro-ph/0109223 +astro-ph/0109225 +astro-ph/0109227 +astro-ph/0109228 +astro-ph/0109230 +astro-ph/0109231 +astro-ph/0109232 +astro-ph/0109233 +astro-ph/0109234 +astro-ph/0109236 +astro-ph/0109237 +astro-ph/0109238 +astro-ph/0109243 +astro-ph/0109244 +astro-ph/0109246 +astro-ph/0109249 +astro-ph/0109251 +astro-ph/0109253 +astro-ph/0109254 +astro-ph/0109255 +astro-ph/0109259 +astro-ph/0109262 +astro-ph/0109263 +astro-ph/0109268 +astro-ph/0109269 +astro-ph/0109270 +astro-ph/0109271 +astro-ph/0109272 +astro-ph/0109273 +astro-ph/0109275 +astro-ph/0109276 +astro-ph/0109277 +astro-ph/0109279 +astro-ph/0109280 +astro-ph/0109282 +astro-ph/0109283 +astro-ph/0109284 +astro-ph/0109285 +astro-ph/0109287 +astro-ph/0109289 +astro-ph/0109290 +astro-ph/0109291 +astro-ph/0109292 +astro-ph/0109294 +astro-ph/0109295 +astro-ph/0109297 +astro-ph/0109299 +astro-ph/0109303 +astro-ph/0109304 +astro-ph/0109306 +astro-ph/0109310 +astro-ph/0109313 +astro-ph/0109316 +astro-ph/0109318 +astro-ph/0109320 +astro-ph/0109321 +astro-ph/0109322 +astro-ph/0109323 +astro-ph/0109324 +astro-ph/0109326 +astro-ph/0109327 +astro-ph/0109329 +astro-ph/0109332 +astro-ph/0109333 +astro-ph/0109334 +astro-ph/0109339 +astro-ph/0109340 +astro-ph/0109341 +astro-ph/0109342 +astro-ph/0109346 +astro-ph/0109348 +astro-ph/0109352 +astro-ph/0109355 +astro-ph/0109358 +astro-ph/0109359 +astro-ph/0109361 +astro-ph/0109364 +astro-ph/0109365 +astro-ph/0109367 +astro-ph/0109368 +astro-ph/0109370 +astro-ph/0109374 +astro-ph/0109377 +astro-ph/0109378 +astro-ph/0109379 +astro-ph/0109380 +astro-ph/0109381 +astro-ph/0109385 +astro-ph/0109387 +astro-ph/0109388 +astro-ph/0109390 +astro-ph/0109393 +astro-ph/0109395 +astro-ph/0109399 +astro-ph/0109400 +astro-ph/0109404 +astro-ph/0109405 +astro-ph/0109406 +astro-ph/0109407 +astro-ph/0109408 +astro-ph/0109412 +astro-ph/0109415 +astro-ph/0109416 +astro-ph/0109417 +astro-ph/0109418 +astro-ph/0109421 +astro-ph/0109424 +astro-ph/0109425 +astro-ph/0109426 +astro-ph/0109427 +astro-ph/0109431 +astro-ph/0109432 +astro-ph/0109433 +astro-ph/0109436 +astro-ph/0109437 +astro-ph/0109438 +astro-ph/0109439 +astro-ph/0109441 +astro-ph/0109442 +astro-ph/0109443 +astro-ph/0109445 +astro-ph/0109448 +astro-ph/0109449 +astro-ph/0109450 +astro-ph/0109451 +astro-ph/0109452 +astro-ph/0109453 +astro-ph/0109454 +astro-ph/0109455 +astro-ph/0109456 +astro-ph/0109457 +astro-ph/0109460 +astro-ph/0109463 +astro-ph/0109465 +astro-ph/0109467 +astro-ph/0109469 +astro-ph/0109470 +astro-ph/0109472 +astro-ph/0109474 +astro-ph/0109475 +astro-ph/0109476 +astro-ph/0109477 +astro-ph/0109479 +astro-ph/0109482 +astro-ph/0109484 +astro-ph/0109487 +astro-ph/0109488 +astro-ph/0109491 +astro-ph/0109493 +astro-ph/0109494 +astro-ph/0109496 +astro-ph/0109499 +astro-ph/0109500 +astro-ph/0109504 +astro-ph/0109506 +astro-ph/0109507 +astro-ph/0109511 +astro-ph/0109512 +astro-ph/0109516 +astro-ph/0109517 +astro-ph/0109521 +astro-ph/0109523 +astro-ph/0109524 +astro-ph/0109525 +astro-ph/0109527 +astro-ph/0109529 +astro-ph/0109530 +astro-ph/0109532 +astro-ph/0109534 +astro-ph/0109536 +astro-ph/0109538 +astro-ph/0109539 +astro-ph/0109540 +astro-ph/0109544 +astro-ph/0109545 +astro-ph/0109548 +astro-ph/0109549 +astro-ph/0109556 +astro-ph/0109558 +astro-ph/0109559 +astro-ph/0110001 +astro-ph/0110004 +astro-ph/0110005 +astro-ph/0110006 +astro-ph/0110008 +astro-ph/0110016 +astro-ph/0110017 +astro-ph/0110018 +astro-ph/0110023 +astro-ph/0110025 +astro-ph/0110028 +astro-ph/0110030 +astro-ph/0110033 +astro-ph/0110034 +astro-ph/0110037 +astro-ph/0110039 +astro-ph/0110041 +astro-ph/0110045 +astro-ph/0110047 +astro-ph/0110048 +astro-ph/0110050 +astro-ph/0110052 +astro-ph/0110054 +astro-ph/0110062 +astro-ph/0110067 +astro-ph/0110075 +astro-ph/0110076 +astro-ph/0110077 +astro-ph/0110079 +astro-ph/0110080 +astro-ph/0110084 +astro-ph/0110085 +astro-ph/0110086 +astro-ph/0110088 +astro-ph/0110090 +astro-ph/0110091 +astro-ph/0110093 +astro-ph/0110094 +astro-ph/0110096 +astro-ph/0110099 +astro-ph/0110101 +astro-ph/0110104 +astro-ph/0110106 +astro-ph/0110108 +astro-ph/0110110 +astro-ph/0110112 +astro-ph/0110115 +astro-ph/0110116 +astro-ph/0110117 +astro-ph/0110118 +astro-ph/0110122 +astro-ph/0110124 +astro-ph/0110125 +astro-ph/0110126 +astro-ph/0110128 +astro-ph/0110130 +astro-ph/0110132 +astro-ph/0110133 +astro-ph/0110136 +astro-ph/0110139 +astro-ph/0110140 +astro-ph/0110143 +astro-ph/0110145 +astro-ph/0110146 +astro-ph/0110151 +astro-ph/0110153 +astro-ph/0110154 +astro-ph/0110155 +astro-ph/0110156 +astro-ph/0110157 +astro-ph/0110158 +astro-ph/0110159 +astro-ph/0110160 +astro-ph/0110166 +astro-ph/0110168 +astro-ph/0110171 +astro-ph/0110172 +astro-ph/0110174 +astro-ph/0110175 +astro-ph/0110176 +astro-ph/0110177 +astro-ph/0110178 +astro-ph/0110179 +astro-ph/0110181 +astro-ph/0110182 +astro-ph/0110184 +astro-ph/0110185 +astro-ph/0110188 +astro-ph/0110189 +astro-ph/0110190 +astro-ph/0110192 +astro-ph/0110196 +astro-ph/0110201 +astro-ph/0110204 +astro-ph/0110205 +astro-ph/0110210 +astro-ph/0110213 +astro-ph/0110215 +astro-ph/0110216 +astro-ph/0110217 +astro-ph/0110218 +astro-ph/0110219 +astro-ph/0110222 +astro-ph/0110226 +astro-ph/0110227 +astro-ph/0110235 +astro-ph/0110236 +astro-ph/0110238 +astro-ph/0110239 +astro-ph/0110243 +astro-ph/0110246 +astro-ph/0110247 +astro-ph/0110249 +astro-ph/0110251 +astro-ph/0110252 +astro-ph/0110257 +astro-ph/0110258 +astro-ph/0110260 +astro-ph/0110261 +astro-ph/0110268 +astro-ph/0110269 +astro-ph/0110270 +astro-ph/0110273 +astro-ph/0110274 +astro-ph/0110275 +astro-ph/0110276 +astro-ph/0110277 +astro-ph/0110278 +astro-ph/0110279 +astro-ph/0110281 +astro-ph/0110282 +astro-ph/0110283 +astro-ph/0110284 +astro-ph/0110286 +astro-ph/0110287 +astro-ph/0110288 +astro-ph/0110294 +astro-ph/0110296 +astro-ph/0110298 +astro-ph/0110299 +astro-ph/0110300 +astro-ph/0110301 +astro-ph/0110302 +astro-ph/0110303 +astro-ph/0110304 +astro-ph/0110306 +astro-ph/0110310 +astro-ph/0110311 +astro-ph/0110313 +astro-ph/0110315 +astro-ph/0110316 +astro-ph/0110317 +astro-ph/0110320 +astro-ph/0110321 +astro-ph/0110322 +astro-ph/0110324 +astro-ph/0110326 +astro-ph/0110327 +astro-ph/0110330 +astro-ph/0110331 +astro-ph/0110332 +astro-ph/0110333 +astro-ph/0110334 +astro-ph/0110335 +astro-ph/0110339 +astro-ph/0110340 +astro-ph/0110341 +astro-ph/0110342 +astro-ph/0110345 +astro-ph/0110347 +astro-ph/0110350 +astro-ph/0110351 +astro-ph/0110353 +astro-ph/0110354 +astro-ph/0110355 +astro-ph/0110363 +astro-ph/0110365 +astro-ph/0110366 +astro-ph/0110368 +astro-ph/0110369 +astro-ph/0110370 +astro-ph/0110371 +astro-ph/0110372 +astro-ph/0110376 +astro-ph/0110378 +astro-ph/0110379 +astro-ph/0110380 +astro-ph/0110381 +astro-ph/0110382 +astro-ph/0110384 +astro-ph/0110385 +astro-ph/0110387 +astro-ph/0110390 +astro-ph/0110391 +astro-ph/0110392 +astro-ph/0110394 +astro-ph/0110398 +astro-ph/0110400 +astro-ph/0110402 +astro-ph/0110403 +astro-ph/0110406 +astro-ph/0110407 +astro-ph/0110408 +astro-ph/0110409 +astro-ph/0110410 +astro-ph/0110411 +astro-ph/0110413 +astro-ph/0110415 +astro-ph/0110416 +astro-ph/0110418 +astro-ph/0110419 +astro-ph/0110420 +astro-ph/0110422 +astro-ph/0110424 +astro-ph/0110425 +astro-ph/0110426 +astro-ph/0110427 +astro-ph/0110428 +astro-ph/0110430 +astro-ph/0110431 +astro-ph/0110432 +astro-ph/0110434 +astro-ph/0110435 +astro-ph/0110436 +astro-ph/0110437 +astro-ph/0110441 +astro-ph/0110450 +astro-ph/0110453 +astro-ph/0110454 +astro-ph/0110455 +astro-ph/0110457 +astro-ph/0110459 +astro-ph/0110460 +astro-ph/0110461 +astro-ph/0110464 +astro-ph/0110465 +astro-ph/0110467 +astro-ph/0110468 +astro-ph/0110469 +astro-ph/0110470 +astro-ph/0110472 +astro-ph/0110473 +astro-ph/0110474 +astro-ph/0110475 +astro-ph/0110476 +astro-ph/0110477 +astro-ph/0110480 +astro-ph/0110482 +astro-ph/0110485 +astro-ph/0110486 +astro-ph/0110488 +astro-ph/0110490 +astro-ph/0110491 +astro-ph/0110495 +astro-ph/0110496 +astro-ph/0110497 +astro-ph/0110498 +astro-ph/0110500 +astro-ph/0110501 +astro-ph/0110503 +astro-ph/0110509 +astro-ph/0110514 +astro-ph/0110516 +astro-ph/0110517 +astro-ph/0110519 +astro-ph/0110520 +astro-ph/0110521 +astro-ph/0110522 +astro-ph/0110523 +astro-ph/0110524 +astro-ph/0110526 +astro-ph/0110527 +astro-ph/0110529 +astro-ph/0110530 +astro-ph/0110531 +astro-ph/0110532 +astro-ph/0110533 +astro-ph/0110534 +astro-ph/0110535 +astro-ph/0110536 +astro-ph/0110539 +astro-ph/0110540 +astro-ph/0110541 +astro-ph/0110543 +astro-ph/0110544 +astro-ph/0110545 +astro-ph/0110548 +astro-ph/0110549 +astro-ph/0110554 +astro-ph/0110555 +astro-ph/0110558 +astro-ph/0110559 +astro-ph/0110560 +astro-ph/0110561 +astro-ph/0110563 +astro-ph/0110564 +astro-ph/0110565 +astro-ph/0110566 +astro-ph/0110567 +astro-ph/0110570 +astro-ph/0110571 +astro-ph/0110573 +astro-ph/0110574 +astro-ph/0110576 +astro-ph/0110577 +astro-ph/0110581 +astro-ph/0110582 +astro-ph/0110583 +astro-ph/0110584 +astro-ph/0110587 +astro-ph/0110588 +astro-ph/0110589 +astro-ph/0110591 +astro-ph/0110592 +astro-ph/0110593 +astro-ph/0110594 +astro-ph/0110595 +astro-ph/0110596 +astro-ph/0110598 +astro-ph/0110600 +astro-ph/0110602 +astro-ph/0110603 +astro-ph/0110604 +astro-ph/0110605 +astro-ph/0110608 +astro-ph/0110610 +astro-ph/0110613 +astro-ph/0110615 +astro-ph/0110617 +astro-ph/0110618 +astro-ph/0110619 +astro-ph/0110620 +astro-ph/0110622 +astro-ph/0110625 +astro-ph/0110626 +astro-ph/0110627 +astro-ph/0110628 +astro-ph/0110629 +astro-ph/0110630 +astro-ph/0110633 +astro-ph/0110635 +astro-ph/0110637 +astro-ph/0110640 +astro-ph/0110641 +astro-ph/0110642 +astro-ph/0110644 +astro-ph/0110647 +astro-ph/0110648 +astro-ph/0110649 +astro-ph/0110650 +astro-ph/0110654 +astro-ph/0110655 +astro-ph/0110656 +astro-ph/0110657 +astro-ph/0110658 +astro-ph/0110662 +astro-ph/0110664 +astro-ph/0110666 +astro-ph/0110669 +astro-ph/0110670 +astro-ph/0110671 +astro-ph/0110673 +astro-ph/0110674 +astro-ph/0110675 +astro-ph/0110682 +astro-ph/0110684 +astro-ph/0110685 +astro-ph/0110690 +astro-ph/0110693 +astro-ph/0110695 +astro-ph/0110696 +astro-ph/0110697 +astro-ph/0110699 +astro-ph/0110701 +astro-ph/0110702 +astro-ph/0110706 +astro-ph/0110707 +astro-ph/0110708 +astro-ph/0110709 +astro-ph/0111004 +astro-ph/0111006 +astro-ph/0111012 +astro-ph/0111013 +astro-ph/0111016 +astro-ph/0111018 +astro-ph/0111019 +astro-ph/0111020 +astro-ph/0111021 +astro-ph/0111023 +astro-ph/0111026 +astro-ph/0111028 +astro-ph/0111029 +astro-ph/0111030 +astro-ph/0111033 +astro-ph/0111034 +astro-ph/0111037 +astro-ph/0111038 +astro-ph/0111039 +astro-ph/0111041 +astro-ph/0111047 +astro-ph/0111048 +astro-ph/0111049 +astro-ph/0111050 +astro-ph/0111056 +astro-ph/0111057 +astro-ph/0111058 +astro-ph/0111059 +astro-ph/0111062 +astro-ph/0111063 +astro-ph/0111065 +astro-ph/0111066 +astro-ph/0111075 +astro-ph/0111077 +astro-ph/0111078 +astro-ph/0111079 +astro-ph/0111082 +astro-ph/0111083 +astro-ph/0111085 +astro-ph/0111088 +astro-ph/0111092 +astro-ph/0111096 +astro-ph/0111099 +astro-ph/0111104 +astro-ph/0111106 +astro-ph/0111109 +astro-ph/0111112 +astro-ph/0111116 +astro-ph/0111118 +astro-ph/0111119 +astro-ph/0111120 +astro-ph/0111122 +astro-ph/0111123 +astro-ph/0111125 +astro-ph/0111126 +astro-ph/0111128 +astro-ph/0111129 +astro-ph/0111130 +astro-ph/0111132 +astro-ph/0111134 +astro-ph/0111135 +astro-ph/0111137 +astro-ph/0111141 +astro-ph/0111144 +astro-ph/0111146 +astro-ph/0111148 +astro-ph/0111151 +astro-ph/0111152 +astro-ph/0111153 +astro-ph/0111154 +astro-ph/0111155 +astro-ph/0111156 +astro-ph/0111157 +astro-ph/0111158 +astro-ph/0111160 +astro-ph/0111161 +astro-ph/0111164 +astro-ph/0111165 +astro-ph/0111166 +astro-ph/0111167 +astro-ph/0111168 +astro-ph/0111169 +astro-ph/0111170 +astro-ph/0111171 +astro-ph/0111173 +astro-ph/0111174 +astro-ph/0111175 +astro-ph/0111176 +astro-ph/0111178 +astro-ph/0111180 +astro-ph/0111183 +astro-ph/0111185 +astro-ph/0111187 +astro-ph/0111189 +astro-ph/0111190 +astro-ph/0111191 +astro-ph/0111192 +astro-ph/0111193 +astro-ph/0111194 +astro-ph/0111195 +astro-ph/0111196 +astro-ph/0111197 +astro-ph/0111199 +astro-ph/0111200 +astro-ph/0111201 +astro-ph/0111204 +astro-ph/0111205 +astro-ph/0111206 +astro-ph/0111207 +astro-ph/0111208 +astro-ph/0111210 +astro-ph/0111212 +astro-ph/0111213 +astro-ph/0111216 +astro-ph/0111218 +astro-ph/0111221 +astro-ph/0111222 +astro-ph/0111224 +astro-ph/0111225 +astro-ph/0111227 +astro-ph/0111228 +astro-ph/0111230 +astro-ph/0111231 +astro-ph/0111232 +astro-ph/0111234 +astro-ph/0111235 +astro-ph/0111237 +astro-ph/0111238 +astro-ph/0111240 +astro-ph/0111243 +astro-ph/0111245 +astro-ph/0111246 +astro-ph/0111248 +astro-ph/0111250 +astro-ph/0111251 +astro-ph/0111252 +astro-ph/0111257 +astro-ph/0111261 +astro-ph/0111262 +astro-ph/0111263 +astro-ph/0111265 +astro-ph/0111266 +astro-ph/0111267 +astro-ph/0111268 +astro-ph/0111269 +astro-ph/0111271 +astro-ph/0111272 +astro-ph/0111273 +astro-ph/0111274 +astro-ph/0111276 +astro-ph/0111279 +astro-ph/0111281 +astro-ph/0111282 +astro-ph/0111283 +astro-ph/0111284 +astro-ph/0111286 +astro-ph/0111288 +astro-ph/0111289 +astro-ph/0111290 +astro-ph/0111291 +astro-ph/0111294 +astro-ph/0111295 +astro-ph/0111296 +astro-ph/0111297 +astro-ph/0111299 +astro-ph/0111300 +astro-ph/0111303 +astro-ph/0111304 +astro-ph/0111307 +astro-ph/0111310 +astro-ph/0111311 +astro-ph/0111312 +astro-ph/0111317 +astro-ph/0111318 +astro-ph/0111320 +astro-ph/0111323 +astro-ph/0111324 +astro-ph/0111326 +astro-ph/0111327 +astro-ph/0111328 +astro-ph/0111329 +astro-ph/0111330 +astro-ph/0111333 +astro-ph/0111334 +astro-ph/0111336 +astro-ph/0111337 +astro-ph/0111338 +astro-ph/0111339 +astro-ph/0111340 +astro-ph/0111341 +astro-ph/0111342 +astro-ph/0111343 +astro-ph/0111344 +astro-ph/0111345 +astro-ph/0111346 +astro-ph/0111347 +astro-ph/0111348 +astro-ph/0111349 +astro-ph/0111353 +astro-ph/0111355 +astro-ph/0111356 +astro-ph/0111357 +astro-ph/0111358 +astro-ph/0111359 +astro-ph/0111361 +astro-ph/0111362 +astro-ph/0111364 +astro-ph/0111365 +astro-ph/0111369 +astro-ph/0111370 +astro-ph/0111371 +astro-ph/0111373 +astro-ph/0111374 +astro-ph/0111376 +astro-ph/0111378 +astro-ph/0111379 +astro-ph/0111380 +astro-ph/0111382 +astro-ph/0111383 +astro-ph/0111384 +astro-ph/0111385 +astro-ph/0111386 +astro-ph/0111387 +astro-ph/0111388 +astro-ph/0111392 +astro-ph/0111393 +astro-ph/0111394 +astro-ph/0111395 +astro-ph/0111397 +astro-ph/0111398 +astro-ph/0111399 +astro-ph/0111400 +astro-ph/0111402 +astro-ph/0111406 +astro-ph/0111409 +astro-ph/0111410 +astro-ph/0111411 +astro-ph/0111413 +astro-ph/0111414 +astro-ph/0111416 +astro-ph/0111422 +astro-ph/0111423 +astro-ph/0111424 +astro-ph/0111425 +astro-ph/0111426 +astro-ph/0111427 +astro-ph/0111429 +astro-ph/0111432 +astro-ph/0111436 +astro-ph/0111440 +astro-ph/0111444 +astro-ph/0111445 +astro-ph/0111448 +astro-ph/0111449 +astro-ph/0111450 +astro-ph/0111454 +astro-ph/0111455 +astro-ph/0111456 +astro-ph/0111457 +astro-ph/0111458 +astro-ph/0111459 +astro-ph/0111461 +astro-ph/0111463 +astro-ph/0111465 +astro-ph/0111466 +astro-ph/0111467 +astro-ph/0111470 +astro-ph/0111471 +astro-ph/0111474 +astro-ph/0111475 +astro-ph/0111476 +astro-ph/0111477 +astro-ph/0111479 +astro-ph/0111481 +astro-ph/0111482 +astro-ph/0111486 +astro-ph/0111487 +astro-ph/0111488 +astro-ph/0111489 +astro-ph/0111493 +astro-ph/0111494 +astro-ph/0111495 +astro-ph/0111496 +astro-ph/0111497 +astro-ph/0111498 +astro-ph/0111499 +astro-ph/0111503 +astro-ph/0111505 +astro-ph/0111506 +astro-ph/0111509 +astro-ph/0111510 +astro-ph/0111511 +astro-ph/0111512 +astro-ph/0111513 +astro-ph/0111514 +astro-ph/0111516 +astro-ph/0111521 +astro-ph/0111522 +astro-ph/0111523 +astro-ph/0111526 +astro-ph/0111527 +astro-ph/0111528 +astro-ph/0111530 +astro-ph/0111532 +astro-ph/0111534 +astro-ph/0111535 +astro-ph/0111537 +astro-ph/0111539 +astro-ph/0111542 +astro-ph/0111545 +astro-ph/0111547 +astro-ph/0111551 +astro-ph/0111553 +astro-ph/0111557 +astro-ph/0111559 +astro-ph/0111563 +astro-ph/0111564 +astro-ph/0111565 +astro-ph/0111566 +astro-ph/0111567 +astro-ph/0111568 +astro-ph/0111569 +astro-ph/0111570 +astro-ph/0111571 +astro-ph/0111572 +astro-ph/0111579 +astro-ph/0111581 +astro-ph/0111583 +astro-ph/0111588 +astro-ph/0111589 +astro-ph/0111590 +astro-ph/0111594 +astro-ph/0111598 +astro-ph/0111599 +astro-ph/0111600 +astro-ph/0111601 +astro-ph/0111607 +astro-ph/0112001 +astro-ph/0112002 +astro-ph/0112007 +astro-ph/0112008 +astro-ph/0112011 +astro-ph/0112012 +astro-ph/0112013 +astro-ph/0112020 +astro-ph/0112023 +astro-ph/0112025 +astro-ph/0112026 +astro-ph/0112027 +astro-ph/0112028 +astro-ph/0112029 +astro-ph/0112030 +astro-ph/0112032 +astro-ph/0112033 +astro-ph/0112034 +astro-ph/0112035 +astro-ph/0112038 +astro-ph/0112039 +astro-ph/0112040 +astro-ph/0112042 +astro-ph/0112044 +astro-ph/0112045 +astro-ph/0112054 +astro-ph/0112057 +astro-ph/0112059 +astro-ph/0112060 +astro-ph/0112061 +astro-ph/0112063 +astro-ph/0112064 +astro-ph/0112067 +astro-ph/0112068 +astro-ph/0112070 +astro-ph/0112071 +astro-ph/0112072 +astro-ph/0112073 +astro-ph/0112078 +astro-ph/0112079 +astro-ph/0112081 +astro-ph/0112082 +astro-ph/0112083 +astro-ph/0112086 +astro-ph/0112090 +astro-ph/0112091 +astro-ph/0112092 +astro-ph/0112093 +astro-ph/0112095 +astro-ph/0112096 +astro-ph/0112097 +astro-ph/0112098 +astro-ph/0112100 +astro-ph/0112102 +astro-ph/0112103 +astro-ph/0112104 +astro-ph/0112106 +astro-ph/0112107 +astro-ph/0112109 +astro-ph/0112111 +astro-ph/0112112 +astro-ph/0112114 +astro-ph/0112115 +astro-ph/0112116 +astro-ph/0112118 +astro-ph/0112119 +astro-ph/0112120 +astro-ph/0112122 +astro-ph/0112124 +astro-ph/0112126 +astro-ph/0112128 +astro-ph/0112132 +astro-ph/0112135 +astro-ph/0112137 +astro-ph/0112138 +astro-ph/0112139 +astro-ph/0112141 +astro-ph/0112145 +astro-ph/0112146 +astro-ph/0112147 +astro-ph/0112150 +astro-ph/0112151 +astro-ph/0112153 +astro-ph/0112154 +astro-ph/0112156 +astro-ph/0112160 +astro-ph/0112163 +astro-ph/0112170 +astro-ph/0112171 +astro-ph/0112173 +astro-ph/0112174 +astro-ph/0112176 +astro-ph/0112177 +astro-ph/0112178 +astro-ph/0112179 +astro-ph/0112185 +astro-ph/0112186 +astro-ph/0112187 +astro-ph/0112188 +astro-ph/0112189 +astro-ph/0112190 +astro-ph/0112192 +astro-ph/0112193 +astro-ph/0112194 +astro-ph/0112195 +astro-ph/0112196 +astro-ph/0112197 +astro-ph/0112198 +astro-ph/0112199 +astro-ph/0112201 +astro-ph/0112204 +astro-ph/0112207 +astro-ph/0112208 +astro-ph/0112209 +astro-ph/0112211 +astro-ph/0112213 +astro-ph/0112215 +astro-ph/0112219 +astro-ph/0112221 +astro-ph/0112224 +astro-ph/0112226 +astro-ph/0112228 +astro-ph/0112229 +astro-ph/0112230 +astro-ph/0112241 +astro-ph/0112242 +astro-ph/0112243 +astro-ph/0112246 +astro-ph/0112247 +astro-ph/0112248 +astro-ph/0112249 +astro-ph/0112251 +astro-ph/0112253 +astro-ph/0112254 +astro-ph/0112256 +astro-ph/0112257 +astro-ph/0112258 +astro-ph/0112259 +astro-ph/0112260 +astro-ph/0112261 +astro-ph/0112263 +astro-ph/0112264 +astro-ph/0112266 +astro-ph/0112270 +astro-ph/0112273 +astro-ph/0112274 +astro-ph/0112276 +astro-ph/0112277 +astro-ph/0112278 +astro-ph/0112280 +astro-ph/0112281 +astro-ph/0112282 +astro-ph/0112284 +astro-ph/0112285 +astro-ph/0112288 +astro-ph/0112290 +astro-ph/0112291 +astro-ph/0112294 +astro-ph/0112297 +astro-ph/0112298 +astro-ph/0112299 +astro-ph/0112301 +astro-ph/0112305 +astro-ph/0112308 +astro-ph/0112309 +astro-ph/0112311 +astro-ph/0112313 +astro-ph/0112315 +astro-ph/0112317 +astro-ph/0112318 +astro-ph/0112319 +astro-ph/0112321 +astro-ph/0112323 +astro-ph/0112324 +astro-ph/0112325 +astro-ph/0112326 +astro-ph/0112328 +astro-ph/0112329 +astro-ph/0112331 +astro-ph/0112333 +astro-ph/0112334 +astro-ph/0112335 +astro-ph/0112337 +astro-ph/0112338 +astro-ph/0112342 +astro-ph/0112343 +astro-ph/0112345 +astro-ph/0112346 +astro-ph/0112347 +astro-ph/0112351 +astro-ph/0112352 +astro-ph/0112356 +astro-ph/0112357 +astro-ph/0112360 +astro-ph/0112362 +astro-ph/0112363 +astro-ph/0112365 +astro-ph/0112367 +astro-ph/0112370 +astro-ph/0112377 +astro-ph/0112378 +astro-ph/0112379 +astro-ph/0112380 +astro-ph/0112382 +astro-ph/0112384 +astro-ph/0112385 +astro-ph/0112386 +astro-ph/0112389 +astro-ph/0112390 +astro-ph/0112392 +astro-ph/0112396 +astro-ph/0112397 +astro-ph/0112398 +astro-ph/0112400 +astro-ph/0112401 +astro-ph/0112402 +astro-ph/0112403 +astro-ph/0112404 +astro-ph/0112406 +astro-ph/0112407 +astro-ph/0112408 +astro-ph/0112410 +astro-ph/0112413 +astro-ph/0112414 +astro-ph/0112415 +astro-ph/0112416 +astro-ph/0112419 +astro-ph/0112420 +astro-ph/0112421 +astro-ph/0112424 +astro-ph/0112425 +astro-ph/0112428 +astro-ph/0112431 +astro-ph/0112432 +astro-ph/0112433 +astro-ph/0112434 +astro-ph/0112436 +astro-ph/0112437 +astro-ph/0112439 +astro-ph/0112440 +astro-ph/0112442 +astro-ph/0112443 +astro-ph/0112447 +astro-ph/0112448 +astro-ph/0112449 +astro-ph/0112450 +astro-ph/0112452 +astro-ph/0112455 +astro-ph/0112456 +astro-ph/0112457 +astro-ph/0112459 +astro-ph/0112461 +astro-ph/0112462 +astro-ph/0112463 +astro-ph/0112464 +astro-ph/0112465 +astro-ph/0112466 +astro-ph/0112468 +astro-ph/0112469 +astro-ph/0112471 +astro-ph/0112472 +astro-ph/0112476 +astro-ph/0112480 +astro-ph/0112481 +astro-ph/0112482 +astro-ph/0112483 +astro-ph/0112485 +astro-ph/0112486 +astro-ph/0112492 +astro-ph/0112494 +astro-ph/0112495 +astro-ph/0112496 +astro-ph/0112506 +astro-ph/0112507 +astro-ph/0112509 +astro-ph/0112510 +astro-ph/0112511 +astro-ph/0112513 +astro-ph/0112514 +astro-ph/0112515 +astro-ph/0112516 +astro-ph/0112517 +astro-ph/0112520 +astro-ph/0112522 +astro-ph/0112527 +astro-ph/0112528 +astro-ph/0112529 +astro-ph/0112530 +astro-ph/0112531 +astro-ph/0112532 +astro-ph/0112533 +astro-ph/0112534 +astro-ph/0112535 +astro-ph/0112536 +astro-ph/0112539 +astro-ph/0112542 +astro-ph/0112544 +astro-ph/0112545 +astro-ph/0112546 +astro-ph/0112548 +astro-ph/0112549 +astro-ph/0112553 +astro-ph/0112554 +astro-ph/0112556 +astro-ph/0112557 +astro-ph/0112558 +astro-ph/0112559 +astro-ph/0112562 +astro-ph/0112564 +astro-ph/0112565 +astro-ph/0112566 +astro-ph/0112567 +astro-ph/0112568 +astro-ph/0112569 +astro-ph/0112571 +astro-ph/0201001 +astro-ph/0201002 +astro-ph/0201003 +astro-ph/0201004 +astro-ph/0201005 +astro-ph/0201006 +astro-ph/0201007 +astro-ph/0201008 +astro-ph/0201011 +astro-ph/0201012 +astro-ph/0201013 +astro-ph/0201014 +astro-ph/0201016 +astro-ph/0201017 +astro-ph/0201018 +astro-ph/0201019 +astro-ph/0201020 +astro-ph/0201025 +astro-ph/0201026 +astro-ph/0201027 +astro-ph/0201028 +astro-ph/0201029 +astro-ph/0201031 +astro-ph/0201032 +astro-ph/0201034 +astro-ph/0201035 +astro-ph/0201039 +astro-ph/0201040 +astro-ph/0201041 +astro-ph/0201042 +astro-ph/0201045 +astro-ph/0201046 +astro-ph/0201049 +astro-ph/0201050 +astro-ph/0201052 +astro-ph/0201053 +astro-ph/0201054 +astro-ph/0201057 +astro-ph/0201058 +astro-ph/0201059 +astro-ph/0201060 +astro-ph/0201063 +astro-ph/0201064 +astro-ph/0201066 +astro-ph/0201067 +astro-ph/0201068 +astro-ph/0201069 +astro-ph/0201073 +astro-ph/0201075 +astro-ph/0201078 +astro-ph/0201079 +astro-ph/0201080 +astro-ph/0201081 +astro-ph/0201082 +astro-ph/0201083 +astro-ph/0201084 +astro-ph/0201085 +astro-ph/0201086 +astro-ph/0201088 +astro-ph/0201090 +astro-ph/0201091 +astro-ph/0201093 +astro-ph/0201094 +astro-ph/0201096 +astro-ph/0201098 +astro-ph/0201101 +astro-ph/0201104 +astro-ph/0201105 +astro-ph/0201106 +astro-ph/0201107 +astro-ph/0201111 +astro-ph/0201112 +astro-ph/0201117 +astro-ph/0201120 +astro-ph/0201121 +astro-ph/0201122 +astro-ph/0201123 +astro-ph/0201124 +astro-ph/0201126 +astro-ph/0201128 +astro-ph/0201131 +astro-ph/0201132 +astro-ph/0201138 +astro-ph/0201139 +astro-ph/0201140 +astro-ph/0201141 +astro-ph/0201148 +astro-ph/0201149 +astro-ph/0201150 +astro-ph/0201152 +astro-ph/0201153 +astro-ph/0201154 +astro-ph/0201155 +astro-ph/0201158 +astro-ph/0201159 +astro-ph/0201161 +astro-ph/0201162 +astro-ph/0201163 +astro-ph/0201165 +astro-ph/0201170 +astro-ph/0201172 +astro-ph/0201173 +astro-ph/0201175 +astro-ph/0201179 +astro-ph/0201181 +astro-ph/0201184 +astro-ph/0201185 +astro-ph/0201186 +astro-ph/0201188 +astro-ph/0201189 +astro-ph/0201190 +astro-ph/0201191 +astro-ph/0201193 +astro-ph/0201194 +astro-ph/0201197 +astro-ph/0201198 +astro-ph/0201199 +astro-ph/0201200 +astro-ph/0201204 +astro-ph/0201206 +astro-ph/0201207 +astro-ph/0201208 +astro-ph/0201210 +astro-ph/0201211 +astro-ph/0201212 +astro-ph/0201213 +astro-ph/0201214 +astro-ph/0201215 +astro-ph/0201217 +astro-ph/0201218 +astro-ph/0201219 +astro-ph/0201220 +astro-ph/0201221 +astro-ph/0201223 +astro-ph/0201225 +astro-ph/0201226 +astro-ph/0201227 +astro-ph/0201228 +astro-ph/0201229 +astro-ph/0201230 +astro-ph/0201231 +astro-ph/0201232 +astro-ph/0201234 +astro-ph/0201239 +astro-ph/0201240 +astro-ph/0201241 +astro-ph/0201242 +astro-ph/0201245 +astro-ph/0201247 +astro-ph/0201248 +astro-ph/0201249 +astro-ph/0201250 +astro-ph/0201251 +astro-ph/0201252 +astro-ph/0201255 +astro-ph/0201258 +astro-ph/0201259 +astro-ph/0201260 +astro-ph/0201261 +astro-ph/0201262 +astro-ph/0201264 +astro-ph/0201266 +astro-ph/0201267 +astro-ph/0201268 +astro-ph/0201269 +astro-ph/0201270 +astro-ph/0201271 +astro-ph/0201272 +astro-ph/0201273 +astro-ph/0201274 +astro-ph/0201275 +astro-ph/0201277 +astro-ph/0201278 +astro-ph/0201279 +astro-ph/0201285 +astro-ph/0201286 +astro-ph/0201287 +astro-ph/0201288 +astro-ph/0201290 +astro-ph/0201293 +astro-ph/0201294 +astro-ph/0201296 +astro-ph/0201297 +astro-ph/0201298 +astro-ph/0201299 +astro-ph/0201301 +astro-ph/0201302 +astro-ph/0201303 +astro-ph/0201304 +astro-ph/0201305 +astro-ph/0201306 +astro-ph/0201307 +astro-ph/0201309 +astro-ph/0201310 +astro-ph/0201311 +astro-ph/0201312 +astro-ph/0201313 +astro-ph/0201314 +astro-ph/0201317 +astro-ph/0201319 +astro-ph/0201320 +astro-ph/0201322 +astro-ph/0201323 +astro-ph/0201324 +astro-ph/0201325 +astro-ph/0201327 +astro-ph/0201328 +astro-ph/0201329 +astro-ph/0201330 +astro-ph/0201331 +astro-ph/0201332 +astro-ph/0201334 +astro-ph/0201335 +astro-ph/0201336 +astro-ph/0201338 +astro-ph/0201340 +astro-ph/0201341 +astro-ph/0201342 +astro-ph/0201344 +astro-ph/0201345 +astro-ph/0201346 +astro-ph/0201347 +astro-ph/0201348 +astro-ph/0201350 +astro-ph/0201352 +astro-ph/0201353 +astro-ph/0201354 +astro-ph/0201355 +astro-ph/0201356 +astro-ph/0201358 +astro-ph/0201361 +astro-ph/0201362 +astro-ph/0201363 +astro-ph/0201364 +astro-ph/0201366 +astro-ph/0201367 +astro-ph/0201371 +astro-ph/0201372 +astro-ph/0201373 +astro-ph/0201374 +astro-ph/0201375 +astro-ph/0201378 +astro-ph/0201379 +astro-ph/0201380 +astro-ph/0201382 +astro-ph/0201383 +astro-ph/0201384 +astro-ph/0201385 +astro-ph/0201386 +astro-ph/0201387 +astro-ph/0201389 +astro-ph/0201390 +astro-ph/0201391 +astro-ph/0201393 +astro-ph/0201394 +astro-ph/0201395 +astro-ph/0201401 +astro-ph/0201402 +astro-ph/0201403 +astro-ph/0201404 +astro-ph/0201411 +astro-ph/0201413 +astro-ph/0201415 +astro-ph/0201416 +astro-ph/0201417 +astro-ph/0201418 +astro-ph/0201419 +astro-ph/0201420 +astro-ph/0201423 +astro-ph/0201424 +astro-ph/0201425 +astro-ph/0201426 +astro-ph/0201428 +astro-ph/0201429 +astro-ph/0201431 +astro-ph/0201434 +astro-ph/0201437 +astro-ph/0201438 +astro-ph/0201441 +astro-ph/0201442 +astro-ph/0201443 +astro-ph/0201444 +astro-ph/0201446 +astro-ph/0201447 +astro-ph/0201448 +astro-ph/0201449 +astro-ph/0201450 +astro-ph/0201451 +astro-ph/0201453 +astro-ph/0201455 +astro-ph/0201456 +astro-ph/0201457 +astro-ph/0201458 +astro-ph/0201463 +astro-ph/0201464 +astro-ph/0201468 +astro-ph/0201469 +astro-ph/0201470 +astro-ph/0201471 +astro-ph/0201472 +astro-ph/0201473 +astro-ph/0201476 +astro-ph/0201477 +astro-ph/0201478 +astro-ph/0201480 +astro-ph/0201481 +astro-ph/0201482 +astro-ph/0201483 +astro-ph/0201485 +astro-ph/0201486 +astro-ph/0201487 +astro-ph/0201488 +astro-ph/0201489 +astro-ph/0201490 +astro-ph/0201496 +astro-ph/0201497 +astro-ph/0201499 +astro-ph/0201500 +astro-ph/0201501 +astro-ph/0201502 +astro-ph/0201503 +astro-ph/0201505 +astro-ph/0201506 +astro-ph/0201507 +astro-ph/0201510 +astro-ph/0201512 +astro-ph/0201514 +astro-ph/0201516 +astro-ph/0201517 +astro-ph/0201518 +astro-ph/0201520 +astro-ph/0201522 +astro-ph/0201523 +astro-ph/0201524 +astro-ph/0201529 +astro-ph/0201532 +astro-ph/0201534 +astro-ph/0201535 +astro-ph/0201536 +astro-ph/0201537 +astro-ph/0201538 +astro-ph/0201540 +astro-ph/0201545 +astro-ph/0201548 +astro-ph/0201549 +astro-ph/0201550 +astro-ph/0201551 +astro-ph/0202003 +astro-ph/0202006 +astro-ph/0202008 +astro-ph/0202016 +astro-ph/0202019 +astro-ph/0202024 +astro-ph/0202025 +astro-ph/0202026 +astro-ph/0202027 +astro-ph/0202028 +astro-ph/0202031 +astro-ph/0202033 +astro-ph/0202034 +astro-ph/0202035 +astro-ph/0202036 +astro-ph/0202037 +astro-ph/0202042 +astro-ph/0202043 +astro-ph/0202046 +astro-ph/0202047 +astro-ph/0202049 +astro-ph/0202050 +astro-ph/0202051 +astro-ph/0202052 +astro-ph/0202053 +astro-ph/0202059 +astro-ph/0202060 +astro-ph/0202061 +astro-ph/0202062 +astro-ph/0202063 +astro-ph/0202066 +astro-ph/0202068 +astro-ph/0202069 +astro-ph/0202073 +astro-ph/0202075 +astro-ph/0202077 +astro-ph/0202079 +astro-ph/0202081 +astro-ph/0202084 +astro-ph/0202090 +astro-ph/0202091 +astro-ph/0202092 +astro-ph/0202094 +astro-ph/0202095 +astro-ph/0202096 +astro-ph/0202097 +astro-ph/0202101 +astro-ph/0202104 +astro-ph/0202105 +astro-ph/0202116 +astro-ph/0202118 +astro-ph/0202119 +astro-ph/0202120 +astro-ph/0202121 +astro-ph/0202122 +astro-ph/0202127 +astro-ph/0202128 +astro-ph/0202129 +astro-ph/0202130 +astro-ph/0202132 +astro-ph/0202134 +astro-ph/0202136 +astro-ph/0202137 +astro-ph/0202138 +astro-ph/0202139 +astro-ph/0202140 +astro-ph/0202146 +astro-ph/0202149 +astro-ph/0202151 +astro-ph/0202152 +astro-ph/0202153 +astro-ph/0202154 +astro-ph/0202155 +astro-ph/0202156 +astro-ph/0202157 +astro-ph/0202158 +astro-ph/0202160 +astro-ph/0202161 +astro-ph/0202163 +astro-ph/0202164 +astro-ph/0202165 +astro-ph/0202168 +astro-ph/0202169 +astro-ph/0202170 +astro-ph/0202171 +astro-ph/0202176 +astro-ph/0202177 +astro-ph/0202179 +astro-ph/0202181 +astro-ph/0202182 +astro-ph/0202183 +astro-ph/0202190 +astro-ph/0202191 +astro-ph/0202194 +astro-ph/0202196 +astro-ph/0202198 +astro-ph/0202200 +astro-ph/0202201 +astro-ph/0202202 +astro-ph/0202203 +astro-ph/0202204 +astro-ph/0202205 +astro-ph/0202208 +astro-ph/0202209 +astro-ph/0202212 +astro-ph/0202213 +astro-ph/0202214 +astro-ph/0202215 +astro-ph/0202216 +astro-ph/0202217 +astro-ph/0202218 +astro-ph/0202226 +astro-ph/0202227 +astro-ph/0202228 +astro-ph/0202229 +astro-ph/0202230 +astro-ph/0202232 +astro-ph/0202234 +astro-ph/0202235 +astro-ph/0202243 +astro-ph/0202244 +astro-ph/0202250 +astro-ph/0202252 +astro-ph/0202253 +astro-ph/0202255 +astro-ph/0202256 +astro-ph/0202257 +astro-ph/0202258 +astro-ph/0202259 +astro-ph/0202260 +astro-ph/0202261 +astro-ph/0202262 +astro-ph/0202265 +astro-ph/0202267 +astro-ph/0202268 +astro-ph/0202269 +astro-ph/0202270 +astro-ph/0202271 +astro-ph/0202273 +astro-ph/0202274 +astro-ph/0202276 +astro-ph/0202277 +astro-ph/0202278 +astro-ph/0202279 +astro-ph/0202280 +astro-ph/0202281 +astro-ph/0202283 +astro-ph/0202285 +astro-ph/0202286 +astro-ph/0202287 +astro-ph/0202289 +astro-ph/0202291 +astro-ph/0202292 +astro-ph/0202293 +astro-ph/0202295 +astro-ph/0202297 +astro-ph/0202298 +astro-ph/0202299 +astro-ph/0202300 +astro-ph/0202302 +astro-ph/0202304 +astro-ph/0202305 +astro-ph/0202306 +astro-ph/0202308 +astro-ph/0202309 +astro-ph/0202310 +astro-ph/0202311 +astro-ph/0202312 +astro-ph/0202315 +astro-ph/0202316 +astro-ph/0202318 +astro-ph/0202321 +astro-ph/0202322 +astro-ph/0202323 +astro-ph/0202325 +astro-ph/0202326 +astro-ph/0202327 +astro-ph/0202329 +astro-ph/0202331 +astro-ph/0202333 +astro-ph/0202334 +astro-ph/0202336 +astro-ph/0202337 +astro-ph/0202339 +astro-ph/0202342 +astro-ph/0202344 +astro-ph/0202346 +astro-ph/0202347 +astro-ph/0202348 +astro-ph/0202349 +astro-ph/0202351 +astro-ph/0202353 +astro-ph/0202354 +astro-ph/0202355 +astro-ph/0202357 +astro-ph/0202358 +astro-ph/0202359 +astro-ph/0202360 +astro-ph/0202361 +astro-ph/0202362 +astro-ph/0202363 +astro-ph/0202364 +astro-ph/0202365 +astro-ph/0202366 +astro-ph/0202367 +astro-ph/0202368 +astro-ph/0202369 +astro-ph/0202371 +astro-ph/0202374 +astro-ph/0202375 +astro-ph/0202378 +astro-ph/0202380 +astro-ph/0202382 +astro-ph/0202383 +astro-ph/0202384 +astro-ph/0202385 +astro-ph/0202386 +astro-ph/0202387 +astro-ph/0202389 +astro-ph/0202391 +astro-ph/0202392 +astro-ph/0202394 +astro-ph/0202398 +astro-ph/0202399 +astro-ph/0202401 +astro-ph/0202402 +astro-ph/0202404 +astro-ph/0202405 +astro-ph/0202406 +astro-ph/0202407 +astro-ph/0202408 +astro-ph/0202412 +astro-ph/0202414 +astro-ph/0202416 +astro-ph/0202417 +astro-ph/0202419 +astro-ph/0202420 +astro-ph/0202422 +astro-ph/0202423 +astro-ph/0202424 +astro-ph/0202426 +astro-ph/0202427 +astro-ph/0202428 +astro-ph/0202431 +astro-ph/0202433 +astro-ph/0202434 +astro-ph/0202435 +astro-ph/0202436 +astro-ph/0202438 +astro-ph/0202440 +astro-ph/0202441 +astro-ph/0202442 +astro-ph/0202443 +astro-ph/0202447 +astro-ph/0202449 +astro-ph/0202450 +astro-ph/0202452 +astro-ph/0202454 +astro-ph/0202456 +astro-ph/0202457 +astro-ph/0202458 +astro-ph/0202459 +astro-ph/0202460 +astro-ph/0202461 +astro-ph/0202463 +astro-ph/0202464 +astro-ph/0202467 +astro-ph/0202469 +astro-ph/0202473 +astro-ph/0202474 +astro-ph/0202477 +astro-ph/0202478 +astro-ph/0202481 +astro-ph/0202483 +astro-ph/0202484 +astro-ph/0202485 +astro-ph/0202487 +astro-ph/0202489 +astro-ph/0202490 +astro-ph/0202491 +astro-ph/0202493 +astro-ph/0202495 +astro-ph/0202496 +astro-ph/0202497 +astro-ph/0202498 +astro-ph/0202499 +astro-ph/0202501 +astro-ph/0202503 +astro-ph/0202504 +astro-ph/0202507 +astro-ph/0202508 +astro-ph/0202510 +astro-ph/0202512 +astro-ph/0202513 +astro-ph/0202514 +astro-ph/0202515 +astro-ph/0202516 +astro-ph/0202520 +astro-ph/0202521 +astro-ph/0202523 +astro-ph/0202526 +astro-ph/0202527 +astro-ph/0203003 +astro-ph/0203005 +astro-ph/0203008 +astro-ph/0203013 +astro-ph/0203015 +astro-ph/0203016 +astro-ph/0203018 +astro-ph/0203022 +astro-ph/0203023 +astro-ph/0203026 +astro-ph/0203027 +astro-ph/0203028 +astro-ph/0203029 +astro-ph/0203030 +astro-ph/0203033 +astro-ph/0203035 +astro-ph/0203036 +astro-ph/0203037 +astro-ph/0203038 +astro-ph/0203039 +astro-ph/0203040 +astro-ph/0203041 +astro-ph/0203043 +astro-ph/0203044 +astro-ph/0203048 +astro-ph/0203049 +astro-ph/0203051 +astro-ph/0203053 +astro-ph/0203054 +astro-ph/0203055 +astro-ph/0203056 +astro-ph/0203057 +astro-ph/0203060 +astro-ph/0203061 +astro-ph/0203062 +astro-ph/0203065 +astro-ph/0203067 +astro-ph/0203068 +astro-ph/0203069 +astro-ph/0203073 +astro-ph/0203074 +astro-ph/0203076 +astro-ph/0203077 +astro-ph/0203078 +astro-ph/0203079 +astro-ph/0203080 +astro-ph/0203081 +astro-ph/0203085 +astro-ph/0203086 +astro-ph/0203087 +astro-ph/0203088 +astro-ph/0203089 +astro-ph/0203090 +astro-ph/0203093 +astro-ph/0203097 +astro-ph/0203098 +astro-ph/0203102 +astro-ph/0203103 +astro-ph/0203105 +astro-ph/0203106 +astro-ph/0203107 +astro-ph/0203108 +astro-ph/0203112 +astro-ph/0203113 +astro-ph/0203114 +astro-ph/0203115 +astro-ph/0203117 +astro-ph/0203118 +astro-ph/0203119 +astro-ph/0203121 +astro-ph/0203124 +astro-ph/0203125 +astro-ph/0203126 +astro-ph/0203127 +astro-ph/0203128 +astro-ph/0203129 +astro-ph/0203130 +astro-ph/0203133 +astro-ph/0203134 +astro-ph/0203135 +astro-ph/0203136 +astro-ph/0203137 +astro-ph/0203139 +astro-ph/0203142 +astro-ph/0203144 +astro-ph/0203145 +astro-ph/0203147 +astro-ph/0203148 +astro-ph/0203150 +astro-ph/0203154 +astro-ph/0203155 +astro-ph/0203156 +astro-ph/0203157 +astro-ph/0203158 +astro-ph/0203159 +astro-ph/0203160 +astro-ph/0203162 +astro-ph/0203163 +astro-ph/0203164 +astro-ph/0203166 +astro-ph/0203168 +astro-ph/0203170 +astro-ph/0203174 +astro-ph/0203178 +astro-ph/0203179 +astro-ph/0203182 +astro-ph/0203184 +astro-ph/0203186 +astro-ph/0203187 +astro-ph/0203189 +astro-ph/0203190 +astro-ph/0203191 +astro-ph/0203192 +astro-ph/0203193 +astro-ph/0203194 +astro-ph/0203195 +astro-ph/0203196 +astro-ph/0203198 +astro-ph/0203199 +astro-ph/0203200 +astro-ph/0203201 +astro-ph/0203202 +astro-ph/0203204 +astro-ph/0203206 +astro-ph/0203208 +astro-ph/0203209 +astro-ph/0203211 +astro-ph/0203214 +astro-ph/0203215 +astro-ph/0203216 +astro-ph/0203217 +astro-ph/0203218 +astro-ph/0203220 +astro-ph/0203221 +astro-ph/0203222 +astro-ph/0203223 +astro-ph/0203224 +astro-ph/0203226 +astro-ph/0203227 +astro-ph/0203229 +astro-ph/0203230 +astro-ph/0203232 +astro-ph/0203234 +astro-ph/0203236 +astro-ph/0203237 +astro-ph/0203238 +astro-ph/0203239 +astro-ph/0203240 +astro-ph/0203241 +astro-ph/0203242 +astro-ph/0203246 +astro-ph/0203249 +astro-ph/0203250 +astro-ph/0203254 +astro-ph/0203255 +astro-ph/0203256 +astro-ph/0203257 +astro-ph/0203259 +astro-ph/0203262 +astro-ph/0203264 +astro-ph/0203266 +astro-ph/0203267 +astro-ph/0203268 +astro-ph/0203269 +astro-ph/0203270 +astro-ph/0203271 +astro-ph/0203272 +astro-ph/0203274 +astro-ph/0203275 +astro-ph/0203280 +astro-ph/0203281 +astro-ph/0203282 +astro-ph/0203283 +astro-ph/0203285 +astro-ph/0203286 +astro-ph/0203287 +astro-ph/0203288 +astro-ph/0203289 +astro-ph/0203290 +astro-ph/0203294 +astro-ph/0203295 +astro-ph/0203296 +astro-ph/0203298 +astro-ph/0203299 +astro-ph/0203300 +astro-ph/0203302 +astro-ph/0203304 +astro-ph/0203305 +astro-ph/0203306 +astro-ph/0203307 +astro-ph/0203308 +astro-ph/0203309 +astro-ph/0203312 +astro-ph/0203313 +astro-ph/0203318 +astro-ph/0203319 +astro-ph/0203324 +astro-ph/0203325 +astro-ph/0203326 +astro-ph/0203327 +astro-ph/0203328 +astro-ph/0203329 +astro-ph/0203332 +astro-ph/0203334 +astro-ph/0203338 +astro-ph/0203339 +astro-ph/0203341 +astro-ph/0203342 +astro-ph/0203344 +astro-ph/0203345 +astro-ph/0203346 +astro-ph/0203347 +astro-ph/0203349 +astro-ph/0203350 +astro-ph/0203351 +astro-ph/0203352 +astro-ph/0203355 +astro-ph/0203357 +astro-ph/0203358 +astro-ph/0203359 +astro-ph/0203360 +astro-ph/0203361 +astro-ph/0203364 +astro-ph/0203370 +astro-ph/0203371 +astro-ph/0203372 +astro-ph/0203374 +astro-ph/0203375 +astro-ph/0203376 +astro-ph/0203378 +astro-ph/0203380 +astro-ph/0203383 +astro-ph/0203384 +astro-ph/0203386 +astro-ph/0203387 +astro-ph/0203388 +astro-ph/0203389 +astro-ph/0203390 +astro-ph/0203392 +astro-ph/0203393 +astro-ph/0203394 +astro-ph/0203395 +astro-ph/0203397 +astro-ph/0203401 +astro-ph/0203402 +astro-ph/0203405 +astro-ph/0203406 +astro-ph/0203407 +astro-ph/0203409 +astro-ph/0203410 +astro-ph/0203411 +astro-ph/0203412 +astro-ph/0203413 +astro-ph/0203414 +astro-ph/0203415 +astro-ph/0203417 +astro-ph/0203419 +astro-ph/0203420 +astro-ph/0203422 +astro-ph/0203423 +astro-ph/0203424 +astro-ph/0203425 +astro-ph/0203428 +astro-ph/0203430 +astro-ph/0203431 +astro-ph/0203432 +astro-ph/0203433 +astro-ph/0203434 +astro-ph/0203435 +astro-ph/0203436 +astro-ph/0203438 +astro-ph/0203439 +astro-ph/0203440 +astro-ph/0203442 +astro-ph/0203443 +astro-ph/0203444 +astro-ph/0203446 +astro-ph/0203447 +astro-ph/0203448 +astro-ph/0203449 +astro-ph/0203453 +astro-ph/0203454 +astro-ph/0203456 +astro-ph/0203458 +astro-ph/0203459 +astro-ph/0203460 +astro-ph/0203461 +astro-ph/0203462 +astro-ph/0203463 +astro-ph/0203464 +astro-ph/0203465 +astro-ph/0203466 +astro-ph/0203467 +astro-ph/0203470 +astro-ph/0203472 +astro-ph/0203473 +astro-ph/0203474 +astro-ph/0203479 +astro-ph/0203482 +astro-ph/0203483 +astro-ph/0203484 +astro-ph/0203485 +astro-ph/0203486 +astro-ph/0203487 +astro-ph/0203488 +astro-ph/0203489 +astro-ph/0203491 +astro-ph/0203494 +astro-ph/0203495 +astro-ph/0203496 +astro-ph/0203498 +astro-ph/0203503 +astro-ph/0203504 +astro-ph/0203506 +astro-ph/0203507 +astro-ph/0203508 +astro-ph/0203513 +astro-ph/0203516 +astro-ph/0203517 +astro-ph/0203518 +astro-ph/0203519 +astro-ph/0203520 +astro-ph/0203521 +astro-ph/0203524 +astro-ph/0204001 +astro-ph/0204002 +astro-ph/0204003 +astro-ph/0204004 +astro-ph/0204006 +astro-ph/0204008 +astro-ph/0204009 +astro-ph/0204010 +astro-ph/0204011 +astro-ph/0204014 +astro-ph/0204018 +astro-ph/0204020 +astro-ph/0204022 +astro-ph/0204025 +astro-ph/0204026 +astro-ph/0204027 +astro-ph/0204028 +astro-ph/0204029 +astro-ph/0204030 +astro-ph/0204031 +astro-ph/0204032 +astro-ph/0204033 +astro-ph/0204035 +astro-ph/0204040 +astro-ph/0204042 +astro-ph/0204044 +astro-ph/0204045 +astro-ph/0204046 +astro-ph/0204047 +astro-ph/0204048 +astro-ph/0204050 +astro-ph/0204052 +astro-ph/0204053 +astro-ph/0204060 +astro-ph/0204061 +astro-ph/0204063 +astro-ph/0204065 +astro-ph/0204067 +astro-ph/0204068 +astro-ph/0204069 +astro-ph/0204071 +astro-ph/0204072 +astro-ph/0204073 +astro-ph/0204075 +astro-ph/0204076 +astro-ph/0204077 +astro-ph/0204078 +astro-ph/0204079 +astro-ph/0204081 +astro-ph/0204082 +astro-ph/0204083 +astro-ph/0204085 +astro-ph/0204086 +astro-ph/0204088 +astro-ph/0204091 +astro-ph/0204092 +astro-ph/0204093 +astro-ph/0204094 +astro-ph/0204095 +astro-ph/0204096 +astro-ph/0204098 +astro-ph/0204099 +astro-ph/0204100 +astro-ph/0204101 +astro-ph/0204102 +astro-ph/0204103 +astro-ph/0204104 +astro-ph/0204106 +astro-ph/0204107 +astro-ph/0204108 +astro-ph/0204109 +astro-ph/0204111 +astro-ph/0204113 +astro-ph/0204114 +astro-ph/0204115 +astro-ph/0204118 +astro-ph/0204120 +astro-ph/0204121 +astro-ph/0204124 +astro-ph/0204125 +astro-ph/0204127 +astro-ph/0204128 +astro-ph/0204130 +astro-ph/0204131 +astro-ph/0204132 +astro-ph/0204133 +astro-ph/0204136 +astro-ph/0204137 +astro-ph/0204138 +astro-ph/0204139 +astro-ph/0204140 +astro-ph/0204142 +astro-ph/0204143 +astro-ph/0204146 +astro-ph/0204147 +astro-ph/0204149 +astro-ph/0204150 +astro-ph/0204153 +astro-ph/0204154 +astro-ph/0204155 +astro-ph/0204156 +astro-ph/0204157 +astro-ph/0204158 +astro-ph/0204159 +astro-ph/0204160 +astro-ph/0204161 +astro-ph/0204162 +astro-ph/0204163 +astro-ph/0204164 +astro-ph/0204166 +astro-ph/0204169 +astro-ph/0204170 +astro-ph/0204171 +astro-ph/0204172 +astro-ph/0204174 +astro-ph/0204175 +astro-ph/0204176 +astro-ph/0204177 +astro-ph/0204178 +astro-ph/0204179 +astro-ph/0204180 +astro-ph/0204181 +astro-ph/0204183 +astro-ph/0204184 +astro-ph/0204185 +astro-ph/0204186 +astro-ph/0204188 +astro-ph/0204189 +astro-ph/0204191 +astro-ph/0204192 +astro-ph/0204193 +astro-ph/0204194 +astro-ph/0204195 +astro-ph/0204196 +astro-ph/0204197 +astro-ph/0204198 +astro-ph/0204199 +astro-ph/0204200 +astro-ph/0204201 +astro-ph/0204202 +astro-ph/0204203 +astro-ph/0204206 +astro-ph/0204208 +astro-ph/0204209 +astro-ph/0204210 +astro-ph/0204211 +astro-ph/0204212 +astro-ph/0204213 +astro-ph/0204214 +astro-ph/0204215 +astro-ph/0204216 +astro-ph/0204217 +astro-ph/0204218 +astro-ph/0204219 +astro-ph/0204221 +astro-ph/0204223 +astro-ph/0204225 +astro-ph/0204227 +astro-ph/0204230 +astro-ph/0204231 +astro-ph/0204232 +astro-ph/0204233 +astro-ph/0204234 +astro-ph/0204236 +astro-ph/0204237 +astro-ph/0204240 +astro-ph/0204241 +astro-ph/0204243 +astro-ph/0204244 +astro-ph/0204246 +astro-ph/0204247 +astro-ph/0204248 +astro-ph/0204249 +astro-ph/0204250 +astro-ph/0204252 +astro-ph/0204253 +astro-ph/0204255 +astro-ph/0204256 +astro-ph/0204257 +astro-ph/0204258 +astro-ph/0204259 +astro-ph/0204267 +astro-ph/0204269 +astro-ph/0204270 +astro-ph/0204272 +astro-ph/0204274 +astro-ph/0204276 +astro-ph/0204277 +astro-ph/0204279 +astro-ph/0204280 +astro-ph/0204281 +astro-ph/0204282 +astro-ph/0204283 +astro-ph/0204284 +astro-ph/0204286 +astro-ph/0204288 +astro-ph/0204289 +astro-ph/0204290 +astro-ph/0204291 +astro-ph/0204292 +astro-ph/0204293 +astro-ph/0204295 +astro-ph/0204296 +astro-ph/0204298 +astro-ph/0204299 +astro-ph/0204301 +astro-ph/0204302 +astro-ph/0204303 +astro-ph/0204304 +astro-ph/0204305 +astro-ph/0204308 +astro-ph/0204309 +astro-ph/0204311 +astro-ph/0204313 +astro-ph/0204314 +astro-ph/0204315 +astro-ph/0204316 +astro-ph/0204317 +astro-ph/0204318 +astro-ph/0204319 +astro-ph/0204324 +astro-ph/0204328 +astro-ph/0204329 +astro-ph/0204332 +astro-ph/0204335 +astro-ph/0204336 +astro-ph/0204339 +astro-ph/0204341 +astro-ph/0204343 +astro-ph/0204344 +astro-ph/0204345 +astro-ph/0204347 +astro-ph/0204348 +astro-ph/0204349 +astro-ph/0204350 +astro-ph/0204351 +astro-ph/0204352 +astro-ph/0204354 +astro-ph/0204356 +astro-ph/0204358 +astro-ph/0204359 +astro-ph/0204360 +astro-ph/0204362 +astro-ph/0204365 +astro-ph/0204366 +astro-ph/0204368 +astro-ph/0204369 +astro-ph/0204370 +astro-ph/0204371 +astro-ph/0204372 +astro-ph/0204376 +astro-ph/0204378 +astro-ph/0204379 +astro-ph/0204380 +astro-ph/0204382 +astro-ph/0204383 +astro-ph/0204385 +astro-ph/0204386 +astro-ph/0204389 +astro-ph/0204390 +astro-ph/0204391 +astro-ph/0204393 +astro-ph/0204394 +astro-ph/0204395 +astro-ph/0204396 +astro-ph/0204397 +astro-ph/0204398 +astro-ph/0204399 +astro-ph/0204400 +astro-ph/0204403 +astro-ph/0204404 +astro-ph/0204405 +astro-ph/0204406 +astro-ph/0204408 +astro-ph/0204409 +astro-ph/0204413 +astro-ph/0204414 +astro-ph/0204415 +astro-ph/0204416 +astro-ph/0204417 +astro-ph/0204419 +astro-ph/0204420 +astro-ph/0204421 +astro-ph/0204423 +astro-ph/0204424 +astro-ph/0204426 +astro-ph/0204428 +astro-ph/0204429 +astro-ph/0204430 +astro-ph/0204432 +astro-ph/0204433 +astro-ph/0204434 +astro-ph/0204435 +astro-ph/0204437 +astro-ph/0204438 +astro-ph/0204439 +astro-ph/0204440 +astro-ph/0204441 +astro-ph/0204442 +astro-ph/0204443 +astro-ph/0204444 +astro-ph/0204445 +astro-ph/0204446 +astro-ph/0204447 +astro-ph/0204448 +astro-ph/0204449 +astro-ph/0204451 +astro-ph/0204453 +astro-ph/0204454 +astro-ph/0204456 +astro-ph/0204457 +astro-ph/0204458 +astro-ph/0204461 +astro-ph/0204464 +astro-ph/0204465 +astro-ph/0204466 +astro-ph/0204467 +astro-ph/0204468 +astro-ph/0204472 +astro-ph/0204474 +astro-ph/0204475 +astro-ph/0204477 +astro-ph/0204478 +astro-ph/0204480 +astro-ph/0204482 +astro-ph/0204483 +astro-ph/0204484 +astro-ph/0204486 +astro-ph/0204487 +astro-ph/0204488 +astro-ph/0204489 +astro-ph/0204490 +astro-ph/0204491 +astro-ph/0204493 +astro-ph/0204494 +astro-ph/0204495 +astro-ph/0204497 +astro-ph/0204498 +astro-ph/0204499 +astro-ph/0204501 +astro-ph/0204502 +astro-ph/0204503 +astro-ph/0204506 +astro-ph/0204507 +astro-ph/0204508 +astro-ph/0204509 +astro-ph/0204510 +astro-ph/0204511 +astro-ph/0204512 +astro-ph/0204515 +astro-ph/0204516 +astro-ph/0204518 +astro-ph/0204519 +astro-ph/0204521 +astro-ph/0204522 +astro-ph/0204523 +astro-ph/0204524 +astro-ph/0204525 +astro-ph/0204526 +astro-ph/0205001 +astro-ph/0205005 +astro-ph/0205006 +astro-ph/0205007 +astro-ph/0205008 +astro-ph/0205009 +astro-ph/0205010 +astro-ph/0205011 +astro-ph/0205013 +astro-ph/0205014 +astro-ph/0205017 +astro-ph/0205019 +astro-ph/0205020 +astro-ph/0205022 +astro-ph/0205023 +astro-ph/0205024 +astro-ph/0205025 +astro-ph/0205026 +astro-ph/0205027 +astro-ph/0205028 +astro-ph/0205029 +astro-ph/0205032 +astro-ph/0205033 +astro-ph/0205034 +astro-ph/0205035 +astro-ph/0205036 +astro-ph/0205037 +astro-ph/0205040 +astro-ph/0205041 +astro-ph/0205042 +astro-ph/0205045 +astro-ph/0205050 +astro-ph/0205052 +astro-ph/0205053 +astro-ph/0205054 +astro-ph/0205056 +astro-ph/0205057 +astro-ph/0205058 +astro-ph/0205059 +astro-ph/0205063 +astro-ph/0205064 +astro-ph/0205065 +astro-ph/0205066 +astro-ph/0205068 +astro-ph/0205069 +astro-ph/0205072 +astro-ph/0205076 +astro-ph/0205080 +astro-ph/0205081 +astro-ph/0205082 +astro-ph/0205083 +astro-ph/0205084 +astro-ph/0205086 +astro-ph/0205088 +astro-ph/0205091 +astro-ph/0205092 +astro-ph/0205093 +astro-ph/0205096 +astro-ph/0205097 +astro-ph/0205098 +astro-ph/0205099 +astro-ph/0205100 +astro-ph/0205102 +astro-ph/0205103 +astro-ph/0205104 +astro-ph/0205105 +astro-ph/0205107 +astro-ph/0205108 +astro-ph/0205111 +astro-ph/0205113 +astro-ph/0205114 +astro-ph/0205115 +astro-ph/0205117 +astro-ph/0205121 +astro-ph/0205123 +astro-ph/0205127 +astro-ph/0205128 +astro-ph/0205129 +astro-ph/0205130 +astro-ph/0205131 +astro-ph/0205132 +astro-ph/0205135 +astro-ph/0205137 +astro-ph/0205138 +astro-ph/0205141 +astro-ph/0205142 +astro-ph/0205143 +astro-ph/0205147 +astro-ph/0205148 +astro-ph/0205150 +astro-ph/0205153 +astro-ph/0205155 +astro-ph/0205156 +astro-ph/0205157 +astro-ph/0205158 +astro-ph/0205160 +astro-ph/0205162 +astro-ph/0205163 +astro-ph/0205164 +astro-ph/0205165 +astro-ph/0205171 +astro-ph/0205172 +astro-ph/0205173 +astro-ph/0205174 +astro-ph/0205175 +astro-ph/0205176 +astro-ph/0205177 +astro-ph/0205178 +astro-ph/0205179 +astro-ph/0205180 +astro-ph/0205183 +astro-ph/0205184 +astro-ph/0205185 +astro-ph/0205186 +astro-ph/0205189 +astro-ph/0205190 +astro-ph/0205192 +astro-ph/0205193 +astro-ph/0205195 +astro-ph/0205196 +astro-ph/0205200 +astro-ph/0205201 +astro-ph/0205203 +astro-ph/0205205 +astro-ph/0205209 +astro-ph/0205219 +astro-ph/0205221 +astro-ph/0205223 +astro-ph/0205225 +astro-ph/0205226 +astro-ph/0205227 +astro-ph/0205228 +astro-ph/0205231 +astro-ph/0205232 +astro-ph/0205233 +astro-ph/0205236 +astro-ph/0205239 +astro-ph/0205240 +astro-ph/0205241 +astro-ph/0205242 +astro-ph/0205243 +astro-ph/0205244 +astro-ph/0205245 +astro-ph/0205246 +astro-ph/0205247 +astro-ph/0205248 +astro-ph/0205249 +astro-ph/0205251 +astro-ph/0205252 +astro-ph/0205253 +astro-ph/0205254 +astro-ph/0205255 +astro-ph/0205256 +astro-ph/0205257 +astro-ph/0205258 +astro-ph/0205259 +astro-ph/0205263 +astro-ph/0205264 +astro-ph/0205267 +astro-ph/0205268 +astro-ph/0205270 +astro-ph/0205271 +astro-ph/0205273 +astro-ph/0205275 +astro-ph/0205276 +astro-ph/0205277 +astro-ph/0205280 +astro-ph/0205285 +astro-ph/0205287 +astro-ph/0205288 +astro-ph/0205290 +astro-ph/0205291 +astro-ph/0205292 +astro-ph/0205295 +astro-ph/0205296 +astro-ph/0205300 +astro-ph/0205301 +astro-ph/0205305 +astro-ph/0205306 +astro-ph/0205308 +astro-ph/0205311 +astro-ph/0205312 +astro-ph/0205313 +astro-ph/0205316 +astro-ph/0205320 +astro-ph/0205321 +astro-ph/0205322 +astro-ph/0205323 +astro-ph/0205325 +astro-ph/0205328 +astro-ph/0205332 +astro-ph/0205334 +astro-ph/0205336 +astro-ph/0205337 +astro-ph/0205338 +astro-ph/0205339 +astro-ph/0205344 +astro-ph/0205346 +astro-ph/0205347 +astro-ph/0205348 +astro-ph/0205349 +astro-ph/0205352 +astro-ph/0205354 +astro-ph/0205355 +astro-ph/0205356 +astro-ph/0205359 +astro-ph/0205360 +astro-ph/0205361 +astro-ph/0205362 +astro-ph/0205364 +astro-ph/0205366 +astro-ph/0205367 +astro-ph/0205368 +astro-ph/0205371 +astro-ph/0205372 +astro-ph/0205373 +astro-ph/0205374 +astro-ph/0205375 +astro-ph/0205376 +astro-ph/0205377 +astro-ph/0205378 +astro-ph/0205381 +astro-ph/0205383 +astro-ph/0205384 +astro-ph/0205385 +astro-ph/0205386 +astro-ph/0205391 +astro-ph/0205392 +astro-ph/0205393 +astro-ph/0205394 +astro-ph/0205395 +astro-ph/0205397 +astro-ph/0205398 +astro-ph/0205399 +astro-ph/0205401 +astro-ph/0205403 +astro-ph/0205404 +astro-ph/0205407 +astro-ph/0205409 +astro-ph/0205410 +astro-ph/0205414 +astro-ph/0205416 +astro-ph/0205419 +astro-ph/0205422 +astro-ph/0205424 +astro-ph/0205425 +astro-ph/0205427 +astro-ph/0205430 +astro-ph/0205431 +astro-ph/0205433 +astro-ph/0205434 +astro-ph/0205438 +astro-ph/0205442 +astro-ph/0205443 +astro-ph/0205444 +astro-ph/0205445 +astro-ph/0205446 +astro-ph/0205448 +astro-ph/0205449 +astro-ph/0205450 +astro-ph/0205451 +astro-ph/0205453 +astro-ph/0205454 +astro-ph/0205455 +astro-ph/0205457 +astro-ph/0205458 +astro-ph/0205459 +astro-ph/0205460 +astro-ph/0205463 +astro-ph/0205464 +astro-ph/0205465 +astro-ph/0205467 +astro-ph/0205468 +astro-ph/0205469 +astro-ph/0205470 +astro-ph/0205472 +astro-ph/0205475 +astro-ph/0205479 +astro-ph/0205483 +astro-ph/0205484 +astro-ph/0205487 +astro-ph/0205488 +astro-ph/0205489 +astro-ph/0205490 +astro-ph/0205492 +astro-ph/0205493 +astro-ph/0205494 +astro-ph/0205495 +astro-ph/0205498 +astro-ph/0205501 +astro-ph/0205502 +astro-ph/0205503 +astro-ph/0205504 +astro-ph/0205505 +astro-ph/0205506 +astro-ph/0205507 +astro-ph/0205508 +astro-ph/0205513 +astro-ph/0205514 +astro-ph/0205516 +astro-ph/0205517 +astro-ph/0205521 +astro-ph/0205522 +astro-ph/0205523 +astro-ph/0205524 +astro-ph/0205527 +astro-ph/0205528 +astro-ph/0205529 +astro-ph/0205531 +astro-ph/0205532 +astro-ph/0205533 +astro-ph/0205535 +astro-ph/0205536 +astro-ph/0205537 +astro-ph/0205538 +astro-ph/0205540 +astro-ph/0205542 +astro-ph/0205543 +astro-ph/0205546 +astro-ph/0205548 +astro-ph/0205550 +astro-ph/0205553 +astro-ph/0205554 +astro-ph/0205555 +astro-ph/0205556 +astro-ph/0206004 +astro-ph/0206005 +astro-ph/0206006 +astro-ph/0206008 +astro-ph/0206010 +astro-ph/0206011 +astro-ph/0206012 +astro-ph/0206013 +astro-ph/0206014 +astro-ph/0206015 +astro-ph/0206017 +astro-ph/0206019 +astro-ph/0206020 +astro-ph/0206021 +astro-ph/0206027 +astro-ph/0206029 +astro-ph/0206031 +astro-ph/0206032 +astro-ph/0206034 +astro-ph/0206035 +astro-ph/0206036 +astro-ph/0206042 +astro-ph/0206044 +astro-ph/0206045 +astro-ph/0206048 +astro-ph/0206049 +astro-ph/0206050 +astro-ph/0206054 +astro-ph/0206055 +astro-ph/0206056 +astro-ph/0206057 +astro-ph/0206060 +astro-ph/0206061 +astro-ph/0206062 +astro-ph/0206063 +astro-ph/0206064 +astro-ph/0206065 +astro-ph/0206066 +astro-ph/0206067 +astro-ph/0206069 +astro-ph/0206070 +astro-ph/0206071 +astro-ph/0206072 +astro-ph/0206073 +astro-ph/0206075 +astro-ph/0206077 +astro-ph/0206078 +astro-ph/0206079 +astro-ph/0206080 +astro-ph/0206081 +astro-ph/0206082 +astro-ph/0206083 +astro-ph/0206084 +astro-ph/0206085 +astro-ph/0206087 +astro-ph/0206089 +astro-ph/0206090 +astro-ph/0206092 +astro-ph/0206093 +astro-ph/0206094 +astro-ph/0206095 +astro-ph/0206096 +astro-ph/0206097 +astro-ph/0206098 +astro-ph/0206102 +astro-ph/0206103 +astro-ph/0206104 +astro-ph/0206105 +astro-ph/0206106 +astro-ph/0206108 +astro-ph/0206109 +astro-ph/0206111 +astro-ph/0206112 +astro-ph/0206115 +astro-ph/0206116 +astro-ph/0206117 +astro-ph/0206118 +astro-ph/0206119 +astro-ph/0206120 +astro-ph/0206122 +astro-ph/0206125 +astro-ph/0206127 +astro-ph/0206128 +astro-ph/0206129 +astro-ph/0206130 +astro-ph/0206133 +astro-ph/0206134 +astro-ph/0206135 +astro-ph/0206136 +astro-ph/0206138 +astro-ph/0206139 +astro-ph/0206140 +astro-ph/0206141 +astro-ph/0206142 +astro-ph/0206143 +astro-ph/0206144 +astro-ph/0206145 +astro-ph/0206147 +astro-ph/0206148 +astro-ph/0206150 +astro-ph/0206152 +astro-ph/0206153 +astro-ph/0206154 +astro-ph/0206156 +astro-ph/0206157 +astro-ph/0206158 +astro-ph/0206159 +astro-ph/0206160 +astro-ph/0206161 +astro-ph/0206163 +astro-ph/0206165 +astro-ph/0206167 +astro-ph/0206168 +astro-ph/0206171 +astro-ph/0206172 +astro-ph/0206173 +astro-ph/0206176 +astro-ph/0206177 +astro-ph/0206181 +astro-ph/0206182 +astro-ph/0206186 +astro-ph/0206187 +astro-ph/0206188 +astro-ph/0206189 +astro-ph/0206190 +astro-ph/0206191 +astro-ph/0206192 +astro-ph/0206193 +astro-ph/0206194 +astro-ph/0206195 +astro-ph/0206196 +astro-ph/0206197 +astro-ph/0206198 +astro-ph/0206199 +astro-ph/0206200 +astro-ph/0206202 +astro-ph/0206204 +astro-ph/0206206 +astro-ph/0206207 +astro-ph/0206210 +astro-ph/0206212 +astro-ph/0206213 +astro-ph/0206214 +astro-ph/0206215 +astro-ph/0206220 +astro-ph/0206221 +astro-ph/0206223 +astro-ph/0206224 +astro-ph/0206225 +astro-ph/0206226 +astro-ph/0206228 +astro-ph/0206229 +astro-ph/0206231 +astro-ph/0206233 +astro-ph/0206234 +astro-ph/0206235 +astro-ph/0206239 +astro-ph/0206240 +astro-ph/0206241 +astro-ph/0206242 +astro-ph/0206243 +astro-ph/0206246 +astro-ph/0206247 +astro-ph/0206249 +astro-ph/0206250 +astro-ph/0206251 +astro-ph/0206252 +astro-ph/0206254 +astro-ph/0206255 +astro-ph/0206257 +astro-ph/0206258 +astro-ph/0206260 +astro-ph/0206261 +astro-ph/0206262 +astro-ph/0206263 +astro-ph/0206265 +astro-ph/0206266 +astro-ph/0206267 +astro-ph/0206268 +astro-ph/0206269 +astro-ph/0206273 +astro-ph/0206274 +astro-ph/0206275 +astro-ph/0206276 +astro-ph/0206277 +astro-ph/0206285 +astro-ph/0206286 +astro-ph/0206287 +astro-ph/0206288 +astro-ph/0206289 +astro-ph/0206291 +astro-ph/0206292 +astro-ph/0206293 +astro-ph/0206294 +astro-ph/0206295 +astro-ph/0206296 +astro-ph/0206298 +astro-ph/0206301 +astro-ph/0206302 +astro-ph/0206303 +astro-ph/0206304 +astro-ph/0206305 +astro-ph/0206306 +astro-ph/0206307 +astro-ph/0206308 +astro-ph/0206309 +astro-ph/0206311 +astro-ph/0206312 +astro-ph/0206313 +astro-ph/0206314 +astro-ph/0206315 +astro-ph/0206316 +astro-ph/0206319 +astro-ph/0206321 +astro-ph/0206322 +astro-ph/0206323 +astro-ph/0206324 +astro-ph/0206325 +astro-ph/0206327 +astro-ph/0206328 +astro-ph/0206329 +astro-ph/0206330 +astro-ph/0206331 +astro-ph/0206332 +astro-ph/0206333 +astro-ph/0206334 +astro-ph/0206335 +astro-ph/0206336 +astro-ph/0206337 +astro-ph/0206338 +astro-ph/0206339 +astro-ph/0206342 +astro-ph/0206343 +astro-ph/0206344 +astro-ph/0206351 +astro-ph/0206352 +astro-ph/0206353 +astro-ph/0206354 +astro-ph/0206355 +astro-ph/0206358 +astro-ph/0206361 +astro-ph/0206362 +astro-ph/0206364 +astro-ph/0206365 +astro-ph/0206367 +astro-ph/0206368 +astro-ph/0206369 +astro-ph/0206370 +astro-ph/0206373 +astro-ph/0206374 +astro-ph/0206375 +astro-ph/0206376 +astro-ph/0206377 +astro-ph/0206378 +astro-ph/0206380 +astro-ph/0206383 +astro-ph/0206384 +astro-ph/0206386 +astro-ph/0206387 +astro-ph/0206389 +astro-ph/0206390 +astro-ph/0206391 +astro-ph/0206392 +astro-ph/0206395 +astro-ph/0206396 +astro-ph/0206397 +astro-ph/0206399 +astro-ph/0206401 +astro-ph/0206403 +astro-ph/0206404 +astro-ph/0206406 +astro-ph/0206407 +astro-ph/0206408 +astro-ph/0206409 +astro-ph/0206410 +astro-ph/0206411 +astro-ph/0206413 +astro-ph/0206414 +astro-ph/0206415 +astro-ph/0206416 +astro-ph/0206417 +astro-ph/0206418 +astro-ph/0206420 +astro-ph/0206421 +astro-ph/0206422 +astro-ph/0206424 +astro-ph/0206426 +astro-ph/0206429 +astro-ph/0206431 +astro-ph/0206432 +astro-ph/0206434 +astro-ph/0206435 +astro-ph/0206436 +astro-ph/0206437 +astro-ph/0206439 +astro-ph/0206440 +astro-ph/0206441 +astro-ph/0206442 +astro-ph/0206444 +astro-ph/0206445 +astro-ph/0206446 +astro-ph/0206447 +astro-ph/0206449 +astro-ph/0206450 +astro-ph/0206452 +astro-ph/0206453 +astro-ph/0206455 +astro-ph/0206456 +astro-ph/0206458 +astro-ph/0206460 +astro-ph/0206461 +astro-ph/0206462 +astro-ph/0206463 +astro-ph/0206464 +astro-ph/0206465 +astro-ph/0206466 +astro-ph/0206467 +astro-ph/0206468 +astro-ph/0206469 +astro-ph/0206471 +astro-ph/0206472 +astro-ph/0206473 +astro-ph/0206474 +astro-ph/0206475 +astro-ph/0206478 +astro-ph/0206479 +astro-ph/0206480 +astro-ph/0206483 +astro-ph/0206485 +astro-ph/0206486 +astro-ph/0206488 +astro-ph/0206489 +astro-ph/0206490 +astro-ph/0206491 +astro-ph/0206492 +astro-ph/0206493 +astro-ph/0206496 +astro-ph/0206497 +astro-ph/0206498 +astro-ph/0206499 +astro-ph/0206500 +astro-ph/0206502 +astro-ph/0206503 +astro-ph/0206504 +astro-ph/0206505 +astro-ph/0206507 +astro-ph/0206510 +astro-ph/0207001 +astro-ph/0207003 +astro-ph/0207005 +astro-ph/0207007 +astro-ph/0207008 +astro-ph/0207009 +astro-ph/0207010 +astro-ph/0207014 +astro-ph/0207015 +astro-ph/0207016 +astro-ph/0207019 +astro-ph/0207020 +astro-ph/0207023 +astro-ph/0207025 +astro-ph/0207026 +astro-ph/0207030 +astro-ph/0207031 +astro-ph/0207035 +astro-ph/0207039 +astro-ph/0207041 +astro-ph/0207042 +astro-ph/0207045 +astro-ph/0207046 +astro-ph/0207048 +astro-ph/0207049 +astro-ph/0207051 +astro-ph/0207052 +astro-ph/0207055 +astro-ph/0207058 +astro-ph/0207059 +astro-ph/0207060 +astro-ph/0207062 +astro-ph/0207063 +astro-ph/0207065 +astro-ph/0207066 +astro-ph/0207067 +astro-ph/0207069 +astro-ph/0207073 +astro-ph/0207075 +astro-ph/0207079 +astro-ph/0207080 +astro-ph/0207084 +astro-ph/0207085 +astro-ph/0207086 +astro-ph/0207087 +astro-ph/0207088 +astro-ph/0207090 +astro-ph/0207091 +astro-ph/0207092 +astro-ph/0207094 +astro-ph/0207096 +astro-ph/0207097 +astro-ph/0207098 +astro-ph/0207099 +astro-ph/0207100 +astro-ph/0207101 +astro-ph/0207102 +astro-ph/0207104 +astro-ph/0207106 +astro-ph/0207107 +astro-ph/0207108 +astro-ph/0207111 +astro-ph/0207113 +astro-ph/0207114 +astro-ph/0207115 +astro-ph/0207118 +astro-ph/0207122 +astro-ph/0207124 +astro-ph/0207125 +astro-ph/0207126 +astro-ph/0207129 +astro-ph/0207131 +astro-ph/0207132 +astro-ph/0207135 +astro-ph/0207136 +astro-ph/0207137 +astro-ph/0207138 +astro-ph/0207139 +astro-ph/0207140 +astro-ph/0207143 +astro-ph/0207144 +astro-ph/0207146 +astro-ph/0207150 +astro-ph/0207152 +astro-ph/0207153 +astro-ph/0207154 +astro-ph/0207157 +astro-ph/0207158 +astro-ph/0207162 +astro-ph/0207164 +astro-ph/0207166 +astro-ph/0207169 +astro-ph/0207170 +astro-ph/0207171 +astro-ph/0207172 +astro-ph/0207173 +astro-ph/0207176 +astro-ph/0207178 +astro-ph/0207180 +astro-ph/0207181 +astro-ph/0207182 +astro-ph/0207183 +astro-ph/0207184 +astro-ph/0207189 +astro-ph/0207190 +astro-ph/0207191 +astro-ph/0207192 +astro-ph/0207195 +astro-ph/0207196 +astro-ph/0207198 +astro-ph/0207200 +astro-ph/0207201 +astro-ph/0207203 +astro-ph/0207204 +astro-ph/0207206 +astro-ph/0207208 +astro-ph/0207213 +astro-ph/0207214 +astro-ph/0207217 +astro-ph/0207220 +astro-ph/0207222 +astro-ph/0207225 +astro-ph/0207228 +astro-ph/0207231 +astro-ph/0207233 +astro-ph/0207234 +astro-ph/0207235 +astro-ph/0207236 +astro-ph/0207237 +astro-ph/0207238 +astro-ph/0207239 +astro-ph/0207242 +astro-ph/0207245 +astro-ph/0207249 +astro-ph/0207250 +astro-ph/0207251 +astro-ph/0207252 +astro-ph/0207253 +astro-ph/0207256 +astro-ph/0207257 +astro-ph/0207258 +astro-ph/0207259 +astro-ph/0207260 +astro-ph/0207261 +astro-ph/0207262 +astro-ph/0207263 +astro-ph/0207264 +astro-ph/0207267 +astro-ph/0207268 +astro-ph/0207270 +astro-ph/0207271 +astro-ph/0207273 +astro-ph/0207274 +astro-ph/0207275 +astro-ph/0207276 +astro-ph/0207281 +astro-ph/0207282 +astro-ph/0207284 +astro-ph/0207286 +astro-ph/0207287 +astro-ph/0207288 +astro-ph/0207289 +astro-ph/0207292 +astro-ph/0207294 +astro-ph/0207296 +astro-ph/0207300 +astro-ph/0207301 +astro-ph/0207303 +astro-ph/0207304 +astro-ph/0207305 +astro-ph/0207307 +astro-ph/0207311 +astro-ph/0207312 +astro-ph/0207313 +astro-ph/0207314 +astro-ph/0207316 +astro-ph/0207317 +astro-ph/0207318 +astro-ph/0207323 +astro-ph/0207324 +astro-ph/0207325 +astro-ph/0207326 +astro-ph/0207327 +astro-ph/0207333 +astro-ph/0207334 +astro-ph/0207337 +astro-ph/0207340 +astro-ph/0207341 +astro-ph/0207342 +astro-ph/0207344 +astro-ph/0207345 +astro-ph/0207348 +astro-ph/0207349 +astro-ph/0207350 +astro-ph/0207351 +astro-ph/0207353 +astro-ph/0207355 +astro-ph/0207356 +astro-ph/0207360 +astro-ph/0207367 +astro-ph/0207368 +astro-ph/0207369 +astro-ph/0207370 +astro-ph/0207371 +astro-ph/0207372 +astro-ph/0207373 +astro-ph/0207374 +astro-ph/0207375 +astro-ph/0207378 +astro-ph/0207379 +astro-ph/0207381 +astro-ph/0207382 +astro-ph/0207383 +astro-ph/0207385 +astro-ph/0207387 +astro-ph/0207390 +astro-ph/0207391 +astro-ph/0207392 +astro-ph/0207393 +astro-ph/0207397 +astro-ph/0207398 +astro-ph/0207400 +astro-ph/0207402 +astro-ph/0207407 +astro-ph/0207408 +astro-ph/0207410 +astro-ph/0207411 +astro-ph/0207412 +astro-ph/0207413 +astro-ph/0207414 +astro-ph/0207416 +astro-ph/0207418 +astro-ph/0207419 +astro-ph/0207420 +astro-ph/0207422 +astro-ph/0207426 +astro-ph/0207427 +astro-ph/0207428 +astro-ph/0207431 +astro-ph/0207432 +astro-ph/0207433 +astro-ph/0207434 +astro-ph/0207435 +astro-ph/0207436 +astro-ph/0207438 +astro-ph/0207439 +astro-ph/0207441 +astro-ph/0207443 +astro-ph/0207444 +astro-ph/0207445 +astro-ph/0207446 +astro-ph/0207449 +astro-ph/0207450 +astro-ph/0207451 +astro-ph/0207452 +astro-ph/0207453 +astro-ph/0207454 +astro-ph/0207455 +astro-ph/0207456 +astro-ph/0207457 +astro-ph/0207459 +astro-ph/0207461 +astro-ph/0207462 +astro-ph/0207463 +astro-ph/0207464 +astro-ph/0207465 +astro-ph/0207466 +astro-ph/0207467 +astro-ph/0207468 +astro-ph/0207469 +astro-ph/0207472 +astro-ph/0207474 +astro-ph/0207476 +astro-ph/0207478 +astro-ph/0207479 +astro-ph/0207483 +astro-ph/0207485 +astro-ph/0207486 +astro-ph/0207488 +astro-ph/0207489 +astro-ph/0207490 +astro-ph/0207493 +astro-ph/0207494 +astro-ph/0207495 +astro-ph/0207497 +astro-ph/0207498 +astro-ph/0207501 +astro-ph/0207502 +astro-ph/0207503 +astro-ph/0207504 +astro-ph/0207505 +astro-ph/0207508 +astro-ph/0207510 +astro-ph/0207511 +astro-ph/0207512 +astro-ph/0207514 +astro-ph/0207515 +astro-ph/0207516 +astro-ph/0207520 +astro-ph/0207522 +astro-ph/0207525 +astro-ph/0207528 +astro-ph/0207530 +astro-ph/0207532 +astro-ph/0207534 +astro-ph/0207535 +astro-ph/0207537 +astro-ph/0207538 +astro-ph/0207539 +astro-ph/0207540 +astro-ph/0207543 +astro-ph/0207545 +astro-ph/0207546 +astro-ph/0207547 +astro-ph/0207548 +astro-ph/0207550 +astro-ph/0207553 +astro-ph/0207557 +astro-ph/0207558 +astro-ph/0207559 +astro-ph/0207560 +astro-ph/0207563 +astro-ph/0207566 +astro-ph/0207567 +astro-ph/0207568 +astro-ph/0207569 +astro-ph/0207572 +astro-ph/0207573 +astro-ph/0207575 +astro-ph/0207576 +astro-ph/0207577 +astro-ph/0207580 +astro-ph/0207582 +astro-ph/0207588 +astro-ph/0207589 +astro-ph/0207590 +astro-ph/0207591 +astro-ph/0207592 +astro-ph/0207593 +astro-ph/0207594 +astro-ph/0207595 +astro-ph/0207596 +astro-ph/0207597 +astro-ph/0207598 +astro-ph/0207599 +astro-ph/0207600 +astro-ph/0207601 +astro-ph/0207602 +astro-ph/0207603 +astro-ph/0207604 +astro-ph/0207605 +astro-ph/0207613 +astro-ph/0207614 +astro-ph/0207615 +astro-ph/0207618 +astro-ph/0207621 +astro-ph/0207622 +astro-ph/0207623 +astro-ph/0207625 +astro-ph/0207626 +astro-ph/0207628 +astro-ph/0207630 +astro-ph/0207632 +astro-ph/0207633 +astro-ph/0207638 +astro-ph/0207639 +astro-ph/0207643 +astro-ph/0207651 +astro-ph/0207654 +astro-ph/0207657 +astro-ph/0207659 +astro-ph/0207660 +astro-ph/0207661 +astro-ph/0207662 +astro-ph/0207665 +astro-ph/0208004 +astro-ph/0208008 +astro-ph/0208010 +astro-ph/0208011 +astro-ph/0208015 +astro-ph/0208017 +astro-ph/0208018 +astro-ph/0208019 +astro-ph/0208023 +astro-ph/0208027 +astro-ph/0208030 +astro-ph/0208031 +astro-ph/0208032 +astro-ph/0208033 +astro-ph/0208035 +astro-ph/0208036 +astro-ph/0208039 +astro-ph/0208040 +astro-ph/0208044 +astro-ph/0208046 +astro-ph/0208047 +astro-ph/0208048 +astro-ph/0208050 +astro-ph/0208053 +astro-ph/0208054 +astro-ph/0208056 +astro-ph/0208057 +astro-ph/0208059 +astro-ph/0208062 +astro-ph/0208064 +astro-ph/0208065 +astro-ph/0208067 +astro-ph/0208069 +astro-ph/0208075 +astro-ph/0208077 +astro-ph/0208078 +astro-ph/0208079 +astro-ph/0208080 +astro-ph/0208082 +astro-ph/0208087 +astro-ph/0208094 +astro-ph/0208095 +astro-ph/0208097 +astro-ph/0208102 +astro-ph/0208105 +astro-ph/0208107 +astro-ph/0208108 +astro-ph/0208110 +astro-ph/0208111 +astro-ph/0208114 +astro-ph/0208116 +astro-ph/0208117 +astro-ph/0208119 +astro-ph/0208120 +astro-ph/0208121 +astro-ph/0208122 +astro-ph/0208123 +astro-ph/0208124 +astro-ph/0208126 +astro-ph/0208127 +astro-ph/0208128 +astro-ph/0208132 +astro-ph/0208133 +astro-ph/0208134 +astro-ph/0208135 +astro-ph/0208136 +astro-ph/0208137 +astro-ph/0208138 +astro-ph/0208140 +astro-ph/0208141 +astro-ph/0208142 +astro-ph/0208144 +astro-ph/0208147 +astro-ph/0208148 +astro-ph/0208149 +astro-ph/0208150 +astro-ph/0208151 +astro-ph/0208153 +astro-ph/0208155 +astro-ph/0208156 +astro-ph/0208158 +astro-ph/0208159 +astro-ph/0208162 +astro-ph/0208163 +astro-ph/0208164 +astro-ph/0208165 +astro-ph/0208166 +astro-ph/0208167 +astro-ph/0208169 +astro-ph/0208171 +astro-ph/0208174 +astro-ph/0208178 +astro-ph/0208180 +astro-ph/0208183 +astro-ph/0208184 +astro-ph/0208188 +astro-ph/0208189 +astro-ph/0208190 +astro-ph/0208191 +astro-ph/0208193 +astro-ph/0208194 +astro-ph/0208196 +astro-ph/0208197 +astro-ph/0208198 +astro-ph/0208200 +astro-ph/0208201 +astro-ph/0208202 +astro-ph/0208203 +astro-ph/0208205 +astro-ph/0208206 +astro-ph/0208207 +astro-ph/0208210 +astro-ph/0208211 +astro-ph/0208212 +astro-ph/0208213 +astro-ph/0208214 +astro-ph/0208215 +astro-ph/0208216 +astro-ph/0208217 +astro-ph/0208220 +astro-ph/0208222 +astro-ph/0208226 +astro-ph/0208228 +astro-ph/0208229 +astro-ph/0208230 +astro-ph/0208231 +astro-ph/0208235 +astro-ph/0208236 +astro-ph/0208238 +astro-ph/0208239 +astro-ph/0208240 +astro-ph/0208241 +astro-ph/0208242 +astro-ph/0208247 +astro-ph/0208248 +astro-ph/0208249 +astro-ph/0208251 +astro-ph/0208253 +astro-ph/0208254 +astro-ph/0208256 +astro-ph/0208257 +astro-ph/0208258 +astro-ph/0208260 +astro-ph/0208261 +astro-ph/0208262 +astro-ph/0208263 +astro-ph/0208266 +astro-ph/0208268 +astro-ph/0208269 +astro-ph/0208270 +astro-ph/0208271 +astro-ph/0208272 +astro-ph/0208277 +astro-ph/0208278 +astro-ph/0208279 +astro-ph/0208280 +astro-ph/0208281 +astro-ph/0208283 +astro-ph/0208284 +astro-ph/0208285 +astro-ph/0208286 +astro-ph/0208287 +astro-ph/0208288 +astro-ph/0208289 +astro-ph/0208290 +astro-ph/0208293 +astro-ph/0208295 +astro-ph/0208296 +astro-ph/0208298 +astro-ph/0208299 +astro-ph/0208302 +astro-ph/0208303 +astro-ph/0208304 +astro-ph/0208306 +astro-ph/0208307 +astro-ph/0208313 +astro-ph/0208314 +astro-ph/0208315 +astro-ph/0208322 +astro-ph/0208323 +astro-ph/0208324 +astro-ph/0208325 +astro-ph/0208326 +astro-ph/0208334 +astro-ph/0208335 +astro-ph/0208338 +astro-ph/0208342 +astro-ph/0208343 +astro-ph/0208344 +astro-ph/0208345 +astro-ph/0208347 +astro-ph/0208348 +astro-ph/0208350 +astro-ph/0208351 +astro-ph/0208352 +astro-ph/0208353 +astro-ph/0208354 +astro-ph/0208355 +astro-ph/0208357 +astro-ph/0208358 +astro-ph/0208362 +astro-ph/0208363 +astro-ph/0208366 +astro-ph/0208367 +astro-ph/0208368 +astro-ph/0208369 +astro-ph/0208370 +astro-ph/0208371 +astro-ph/0208372 +astro-ph/0208375 +astro-ph/0208376 +astro-ph/0208378 +astro-ph/0208379 +astro-ph/0208382 +astro-ph/0208383 +astro-ph/0208385 +astro-ph/0208388 +astro-ph/0208389 +astro-ph/0208390 +astro-ph/0208391 +astro-ph/0208392 +astro-ph/0208393 +astro-ph/0208395 +astro-ph/0208396 +astro-ph/0208399 +astro-ph/0208400 +astro-ph/0208401 +astro-ph/0208407 +astro-ph/0208408 +astro-ph/0208411 +astro-ph/0208412 +astro-ph/0208414 +astro-ph/0208415 +astro-ph/0208416 +astro-ph/0208417 +astro-ph/0208418 +astro-ph/0208420 +astro-ph/0208422 +astro-ph/0208423 +astro-ph/0208424 +astro-ph/0208425 +astro-ph/0208426 +astro-ph/0208427 +astro-ph/0208428 +astro-ph/0208430 +astro-ph/0208433 +astro-ph/0208434 +astro-ph/0208435 +astro-ph/0208436 +astro-ph/0208437 +astro-ph/0208441 +astro-ph/0208442 +astro-ph/0208443 +astro-ph/0208445 +astro-ph/0208446 +astro-ph/0208448 +astro-ph/0208450 +astro-ph/0208451 +astro-ph/0208452 +astro-ph/0208453 +astro-ph/0208454 +astro-ph/0208456 +astro-ph/0208459 +astro-ph/0208460 +astro-ph/0208463 +astro-ph/0208464 +astro-ph/0208465 +astro-ph/0208467 +astro-ph/0208468 +astro-ph/0208470 +astro-ph/0208471 +astro-ph/0208476 +astro-ph/0208477 +astro-ph/0208478 +astro-ph/0208479 +astro-ph/0208482 +astro-ph/0208484 +astro-ph/0208485 +astro-ph/0208486 +astro-ph/0208487 +astro-ph/0208488 +astro-ph/0208490 +astro-ph/0208491 +astro-ph/0208494 +astro-ph/0208495 +astro-ph/0208496 +astro-ph/0208497 +astro-ph/0208499 +astro-ph/0208500 +astro-ph/0208501 +astro-ph/0208502 +astro-ph/0208503 +astro-ph/0208509 +astro-ph/0208510 +astro-ph/0208513 +astro-ph/0208514 +astro-ph/0208515 +astro-ph/0208517 +astro-ph/0208520 +astro-ph/0208521 +astro-ph/0208522 +astro-ph/0208525 +astro-ph/0208527 +astro-ph/0208528 +astro-ph/0208530 +astro-ph/0208531 +astro-ph/0208532 +astro-ph/0208533 +astro-ph/0208535 +astro-ph/0208537 +astro-ph/0208538 +astro-ph/0208540 +astro-ph/0208541 +astro-ph/0208542 +astro-ph/0208543 +astro-ph/0208545 +astro-ph/0208546 +astro-ph/0208548 +astro-ph/0208549 +astro-ph/0208551 +astro-ph/0208554 +astro-ph/0208562 +astro-ph/0208565 +astro-ph/0208573 +astro-ph/0208578 +astro-ph/0208581 +astro-ph/0208582 +astro-ph/0208584 +astro-ph/0208585 +astro-ph/0208589 +astro-ph/0208590 +astro-ph/0209002 +astro-ph/0209003 +astro-ph/0209004 +astro-ph/0209008 +astro-ph/0209009 +astro-ph/0209010 +astro-ph/0209018 +astro-ph/0209020 +astro-ph/0209026 +astro-ph/0209028 +astro-ph/0209029 +astro-ph/0209032 +astro-ph/0209033 +astro-ph/0209034 +astro-ph/0209036 +astro-ph/0209037 +astro-ph/0209038 +astro-ph/0209039 +astro-ph/0209040 +astro-ph/0209042 +astro-ph/0209044 +astro-ph/0209045 +astro-ph/0209046 +astro-ph/0209048 +astro-ph/0209049 +astro-ph/0209050 +astro-ph/0209051 +astro-ph/0209053 +astro-ph/0209054 +astro-ph/0209055 +astro-ph/0209057 +astro-ph/0209058 +astro-ph/0209059 +astro-ph/0209061 +astro-ph/0209063 +astro-ph/0209067 +astro-ph/0209068 +astro-ph/0209069 +astro-ph/0209071 +astro-ph/0209072 +astro-ph/0209073 +astro-ph/0209075 +astro-ph/0209076 +astro-ph/0209077 +astro-ph/0209078 +astro-ph/0209080 +astro-ph/0209081 +astro-ph/0209082 +astro-ph/0209083 +astro-ph/0209084 +astro-ph/0209087 +astro-ph/0209088 +astro-ph/0209089 +astro-ph/0209091 +astro-ph/0209092 +astro-ph/0209097 +astro-ph/0209099 +astro-ph/0209102 +astro-ph/0209104 +astro-ph/0209105 +astro-ph/0209106 +astro-ph/0209108 +astro-ph/0209109 +astro-ph/0209111 +astro-ph/0209112 +astro-ph/0209113 +astro-ph/0209116 +astro-ph/0209118 +astro-ph/0209120 +astro-ph/0209122 +astro-ph/0209123 +astro-ph/0209124 +astro-ph/0209126 +astro-ph/0209129 +astro-ph/0209131 +astro-ph/0209133 +astro-ph/0209134 +astro-ph/0209135 +astro-ph/0209139 +astro-ph/0209140 +astro-ph/0209141 +astro-ph/0209142 +astro-ph/0209143 +astro-ph/0209144 +astro-ph/0209145 +astro-ph/0209147 +astro-ph/0209148 +astro-ph/0209149 +astro-ph/0209150 +astro-ph/0209151 +astro-ph/0209152 +astro-ph/0209154 +astro-ph/0209155 +astro-ph/0209157 +astro-ph/0209159 +astro-ph/0209161 +astro-ph/0209162 +astro-ph/0209164 +astro-ph/0209166 +astro-ph/0209167 +astro-ph/0209168 +astro-ph/0209170 +astro-ph/0209172 +astro-ph/0209175 +astro-ph/0209179 +astro-ph/0209180 +astro-ph/0209181 +astro-ph/0209184 +astro-ph/0209185 +astro-ph/0209189 +astro-ph/0209191 +astro-ph/0209192 +astro-ph/0209193 +astro-ph/0209194 +astro-ph/0209196 +astro-ph/0209200 +astro-ph/0209201 +astro-ph/0209202 +astro-ph/0209203 +astro-ph/0209204 +astro-ph/0209207 +astro-ph/0209208 +astro-ph/0209210 +astro-ph/0209211 +astro-ph/0209212 +astro-ph/0209214 +astro-ph/0209217 +astro-ph/0209218 +astro-ph/0209220 +astro-ph/0209221 +astro-ph/0209224 +astro-ph/0209225 +astro-ph/0209227 +astro-ph/0209228 +astro-ph/0209229 +astro-ph/0209230 +astro-ph/0209231 +astro-ph/0209236 +astro-ph/0209237 +astro-ph/0209238 +astro-ph/0209239 +astro-ph/0209240 +astro-ph/0209245 +astro-ph/0209246 +astro-ph/0209249 +astro-ph/0209250 +astro-ph/0209251 +astro-ph/0209252 +astro-ph/0209254 +astro-ph/0209255 +astro-ph/0209258 +astro-ph/0209259 +astro-ph/0209261 +astro-ph/0209262 +astro-ph/0209265 +astro-ph/0209268 +astro-ph/0209269 +astro-ph/0209270 +astro-ph/0209272 +astro-ph/0209275 +astro-ph/0209276 +astro-ph/0209277 +astro-ph/0209280 +astro-ph/0209281 +astro-ph/0209284 +astro-ph/0209287 +astro-ph/0209288 +astro-ph/0209290 +astro-ph/0209292 +astro-ph/0209294 +astro-ph/0209295 +astro-ph/0209296 +astro-ph/0209297 +astro-ph/0209306 +astro-ph/0209307 +astro-ph/0209308 +astro-ph/0209309 +astro-ph/0209313 +astro-ph/0209314 +astro-ph/0209315 +astro-ph/0209317 +astro-ph/0209318 +astro-ph/0209319 +astro-ph/0209320 +astro-ph/0209323 +astro-ph/0209325 +astro-ph/0209326 +astro-ph/0209327 +astro-ph/0209328 +astro-ph/0209329 +astro-ph/0209331 +astro-ph/0209333 +astro-ph/0209334 +astro-ph/0209335 +astro-ph/0209336 +astro-ph/0209337 +astro-ph/0209340 +astro-ph/0209341 +astro-ph/0209343 +astro-ph/0209345 +astro-ph/0209347 +astro-ph/0209348 +astro-ph/0209349 +astro-ph/0209350 +astro-ph/0209352 +astro-ph/0209354 +astro-ph/0209355 +astro-ph/0209356 +astro-ph/0209361 +astro-ph/0209362 +astro-ph/0209368 +astro-ph/0209370 +astro-ph/0209373 +astro-ph/0209375 +astro-ph/0209376 +astro-ph/0209377 +astro-ph/0209378 +astro-ph/0209379 +astro-ph/0209380 +astro-ph/0209381 +astro-ph/0209384 +astro-ph/0209386 +astro-ph/0209390 +astro-ph/0209391 +astro-ph/0209392 +astro-ph/0209395 +astro-ph/0209396 +astro-ph/0209397 +astro-ph/0209398 +astro-ph/0209401 +astro-ph/0209404 +astro-ph/0209405 +astro-ph/0209406 +astro-ph/0209412 +astro-ph/0209413 +astro-ph/0209414 +astro-ph/0209417 +astro-ph/0209418 +astro-ph/0209422 +astro-ph/0209426 +astro-ph/0209428 +astro-ph/0209430 +astro-ph/0209432 +astro-ph/0209433 +astro-ph/0209434 +astro-ph/0209435 +astro-ph/0209436 +astro-ph/0209437 +astro-ph/0209439 +astro-ph/0209441 +astro-ph/0209444 +astro-ph/0209445 +astro-ph/0209447 +astro-ph/0209450 +astro-ph/0209452 +astro-ph/0209457 +astro-ph/0209459 +astro-ph/0209460 +astro-ph/0209464 +astro-ph/0209465 +astro-ph/0209467 +astro-ph/0209469 +astro-ph/0209471 +astro-ph/0209472 +astro-ph/0209473 +astro-ph/0209474 +astro-ph/0209475 +astro-ph/0209480 +astro-ph/0209481 +astro-ph/0209483 +astro-ph/0209484 +astro-ph/0209487 +astro-ph/0209489 +astro-ph/0209490 +astro-ph/0209491 +astro-ph/0209492 +astro-ph/0209493 +astro-ph/0209494 +astro-ph/0209496 +astro-ph/0209498 +astro-ph/0209499 +astro-ph/0209500 +astro-ph/0209501 +astro-ph/0209502 +astro-ph/0209505 +astro-ph/0209508 +astro-ph/0209511 +astro-ph/0209512 +astro-ph/0209513 +astro-ph/0209516 +astro-ph/0209518 +astro-ph/0209519 +astro-ph/0209520 +astro-ph/0209523 +astro-ph/0209526 +astro-ph/0209527 +astro-ph/0209529 +astro-ph/0209530 +astro-ph/0209531 +astro-ph/0209532 +astro-ph/0209533 +astro-ph/0209534 +astro-ph/0209536 +astro-ph/0209537 +astro-ph/0209538 +astro-ph/0209541 +astro-ph/0209543 +astro-ph/0209546 +astro-ph/0209547 +astro-ph/0209548 +astro-ph/0209551 +astro-ph/0209553 +astro-ph/0209554 +astro-ph/0209556 +astro-ph/0209557 +astro-ph/0209559 +astro-ph/0209561 +astro-ph/0209562 +astro-ph/0209563 +astro-ph/0209564 +astro-ph/0209566 +astro-ph/0209567 +astro-ph/0209568 +astro-ph/0209570 +astro-ph/0209571 +astro-ph/0209572 +astro-ph/0209575 +astro-ph/0209577 +astro-ph/0209578 +astro-ph/0209579 +astro-ph/0209580 +astro-ph/0209581 +astro-ph/0209582 +astro-ph/0209587 +astro-ph/0209588 +astro-ph/0209593 +astro-ph/0209598 +astro-ph/0209599 +astro-ph/0209600 +astro-ph/0209601 +astro-ph/0209602 +astro-ph/0209603 +astro-ph/0209608 +astro-ph/0209610 +astro-ph/0209612 +astro-ph/0209613 +astro-ph/0209614 +astro-ph/0209616 +astro-ph/0209617 +astro-ph/0209618 +astro-ph/0209619 +astro-ph/0209620 +astro-ph/0209625 +astro-ph/0209627 +astro-ph/0209629 +astro-ph/0209630 +astro-ph/0209632 +astro-ph/0210002 +astro-ph/0210003 +astro-ph/0210005 +astro-ph/0210006 +astro-ph/0210008 +astro-ph/0210009 +astro-ph/0210010 +astro-ph/0210011 +astro-ph/0210012 +astro-ph/0210015 +astro-ph/0210017 +astro-ph/0210018 +astro-ph/0210019 +astro-ph/0210023 +astro-ph/0210024 +astro-ph/0210025 +astro-ph/0210027 +astro-ph/0210030 +astro-ph/0210031 +astro-ph/0210035 +astro-ph/0210037 +astro-ph/0210040 +astro-ph/0210043 +astro-ph/0210044 +astro-ph/0210045 +astro-ph/0210047 +astro-ph/0210048 +astro-ph/0210049 +astro-ph/0210051 +astro-ph/0210052 +astro-ph/0210053 +astro-ph/0210055 +astro-ph/0210056 +astro-ph/0210058 +astro-ph/0210059 +astro-ph/0210062 +astro-ph/0210064 +astro-ph/0210065 +astro-ph/0210066 +astro-ph/0210069 +astro-ph/0210071 +astro-ph/0210072 +astro-ph/0210073 +astro-ph/0210074 +astro-ph/0210077 +astro-ph/0210078 +astro-ph/0210079 +astro-ph/0210080 +astro-ph/0210081 +astro-ph/0210082 +astro-ph/0210083 +astro-ph/0210084 +astro-ph/0210085 +astro-ph/0210086 +astro-ph/0210088 +astro-ph/0210089 +astro-ph/0210090 +astro-ph/0210091 +astro-ph/0210092 +astro-ph/0210093 +astro-ph/0210094 +astro-ph/0210097 +astro-ph/0210098 +astro-ph/0210099 +astro-ph/0210100 +astro-ph/0210101 +astro-ph/0210102 +astro-ph/0210103 +astro-ph/0210104 +astro-ph/0210105 +astro-ph/0210106 +astro-ph/0210107 +astro-ph/0210109 +astro-ph/0210110 +astro-ph/0210114 +astro-ph/0210116 +astro-ph/0210117 +astro-ph/0210118 +astro-ph/0210119 +astro-ph/0210120 +astro-ph/0210121 +astro-ph/0210125 +astro-ph/0210126 +astro-ph/0210127 +astro-ph/0210128 +astro-ph/0210130 +astro-ph/0210132 +astro-ph/0210133 +astro-ph/0210134 +astro-ph/0210135 +astro-ph/0210136 +astro-ph/0210138 +astro-ph/0210140 +astro-ph/0210141 +astro-ph/0210143 +astro-ph/0210144 +astro-ph/0210145 +astro-ph/0210146 +astro-ph/0210148 +astro-ph/0210149 +astro-ph/0210151 +astro-ph/0210153 +astro-ph/0210154 +astro-ph/0210157 +astro-ph/0210158 +astro-ph/0210159 +astro-ph/0210165 +astro-ph/0210166 +astro-ph/0210167 +astro-ph/0210168 +astro-ph/0210170 +astro-ph/0210171 +astro-ph/0210173 +astro-ph/0210174 +astro-ph/0210175 +astro-ph/0210176 +astro-ph/0210178 +astro-ph/0210179 +astro-ph/0210180 +astro-ph/0210183 +astro-ph/0210186 +astro-ph/0210187 +astro-ph/0210189 +astro-ph/0210190 +astro-ph/0210191 +astro-ph/0210192 +astro-ph/0210193 +astro-ph/0210196 +astro-ph/0210199 +astro-ph/0210200 +astro-ph/0210201 +astro-ph/0210203 +astro-ph/0210205 +astro-ph/0210206 +astro-ph/0210207 +astro-ph/0210208 +astro-ph/0210209 +astro-ph/0210211 +astro-ph/0210212 +astro-ph/0210214 +astro-ph/0210216 +astro-ph/0210220 +astro-ph/0210222 +astro-ph/0210226 +astro-ph/0210228 +astro-ph/0210230 +astro-ph/0210231 +astro-ph/0210233 +astro-ph/0210234 +astro-ph/0210235 +astro-ph/0210236 +astro-ph/0210238 +astro-ph/0210239 +astro-ph/0210240 +astro-ph/0210241 +astro-ph/0210244 +astro-ph/0210245 +astro-ph/0210246 +astro-ph/0210247 +astro-ph/0210248 +astro-ph/0210249 +astro-ph/0210250 +astro-ph/0210252 +astro-ph/0210254 +astro-ph/0210259 +astro-ph/0210260 +astro-ph/0210261 +astro-ph/0210262 +astro-ph/0210263 +astro-ph/0210264 +astro-ph/0210265 +astro-ph/0210266 +astro-ph/0210267 +astro-ph/0210268 +astro-ph/0210269 +astro-ph/0210270 +astro-ph/0210271 +astro-ph/0210273 +astro-ph/0210274 +astro-ph/0210281 +astro-ph/0210286 +astro-ph/0210290 +astro-ph/0210291 +astro-ph/0210292 +astro-ph/0210293 +astro-ph/0210294 +astro-ph/0210295 +astro-ph/0210296 +astro-ph/0210297 +astro-ph/0210299 +astro-ph/0210300 +astro-ph/0210301 +astro-ph/0210302 +astro-ph/0210304 +astro-ph/0210305 +astro-ph/0210306 +astro-ph/0210311 +astro-ph/0210313 +astro-ph/0210314 +astro-ph/0210316 +astro-ph/0210317 +astro-ph/0210318 +astro-ph/0210319 +astro-ph/0210322 +astro-ph/0210323 +astro-ph/0210325 +astro-ph/0210326 +astro-ph/0210327 +astro-ph/0210328 +astro-ph/0210329 +astro-ph/0210330 +astro-ph/0210331 +astro-ph/0210333 +astro-ph/0210335 +astro-ph/0210337 +astro-ph/0210338 +astro-ph/0210339 +astro-ph/0210340 +astro-ph/0210341 +astro-ph/0210342 +astro-ph/0210343 +astro-ph/0210344 +astro-ph/0210345 +astro-ph/0210346 +astro-ph/0210347 +astro-ph/0210349 +astro-ph/0210350 +astro-ph/0210351 +astro-ph/0210352 +astro-ph/0210355 +astro-ph/0210358 +astro-ph/0210360 +astro-ph/0210364 +astro-ph/0210366 +astro-ph/0210368 +astro-ph/0210370 +astro-ph/0210372 +astro-ph/0210376 +astro-ph/0210381 +astro-ph/0210382 +astro-ph/0210383 +astro-ph/0210384 +astro-ph/0210385 +astro-ph/0210386 +astro-ph/0210388 +astro-ph/0210389 +astro-ph/0210391 +astro-ph/0210393 +astro-ph/0210397 +astro-ph/0210398 +astro-ph/0210403 +astro-ph/0210405 +astro-ph/0210406 +astro-ph/0210408 +astro-ph/0210410 +astro-ph/0210411 +astro-ph/0210412 +astro-ph/0210413 +astro-ph/0210414 +astro-ph/0210416 +astro-ph/0210417 +astro-ph/0210418 +astro-ph/0210419 +astro-ph/0210420 +astro-ph/0210422 +astro-ph/0210423 +astro-ph/0210424 +astro-ph/0210425 +astro-ph/0210426 +astro-ph/0210428 +astro-ph/0210429 +astro-ph/0210431 +astro-ph/0210432 +astro-ph/0210433 +astro-ph/0210434 +astro-ph/0210435 +astro-ph/0210436 +astro-ph/0210437 +astro-ph/0210439 +astro-ph/0210440 +astro-ph/0210441 +astro-ph/0210446 +astro-ph/0210450 +astro-ph/0210452 +astro-ph/0210453 +astro-ph/0210454 +astro-ph/0210455 +astro-ph/0210457 +astro-ph/0210458 +astro-ph/0210459 +astro-ph/0210461 +astro-ph/0210463 +astro-ph/0210465 +astro-ph/0210466 +astro-ph/0210467 +astro-ph/0210468 +astro-ph/0210470 +astro-ph/0210471 +astro-ph/0210474 +astro-ph/0210475 +astro-ph/0210478 +astro-ph/0210479 +astro-ph/0210480 +astro-ph/0210482 +astro-ph/0210486 +astro-ph/0210487 +astro-ph/0210493 +astro-ph/0210494 +astro-ph/0210495 +astro-ph/0210496 +astro-ph/0210497 +astro-ph/0210499 +astro-ph/0210500 +astro-ph/0210503 +astro-ph/0210505 +astro-ph/0210506 +astro-ph/0210507 +astro-ph/0210508 +astro-ph/0210510 +astro-ph/0210513 +astro-ph/0210514 +astro-ph/0210515 +astro-ph/0210516 +astro-ph/0210517 +astro-ph/0210518 +astro-ph/0210519 +astro-ph/0210524 +astro-ph/0210528 +astro-ph/0210529 +astro-ph/0210530 +astro-ph/0210534 +astro-ph/0210535 +astro-ph/0210536 +astro-ph/0210537 +astro-ph/0210538 +astro-ph/0210539 +astro-ph/0210540 +astro-ph/0210541 +astro-ph/0210542 +astro-ph/0210543 +astro-ph/0210544 +astro-ph/0210547 +astro-ph/0210548 +astro-ph/0210549 +astro-ph/0210551 +astro-ph/0210552 +astro-ph/0210554 +astro-ph/0210555 +astro-ph/0210556 +astro-ph/0210560 +astro-ph/0210564 +astro-ph/0210565 +astro-ph/0210570 +astro-ph/0210571 +astro-ph/0210572 +astro-ph/0210573 +astro-ph/0210574 +astro-ph/0210576 +astro-ph/0210577 +astro-ph/0210580 +astro-ph/0210584 +astro-ph/0210587 +astro-ph/0210588 +astro-ph/0210591 +astro-ph/0210592 +astro-ph/0210593 +astro-ph/0210594 +astro-ph/0210596 +astro-ph/0210597 +astro-ph/0210599 +astro-ph/0210600 +astro-ph/0210602 +astro-ph/0210603 +astro-ph/0210606 +astro-ph/0210607 +astro-ph/0210610 +astro-ph/0210611 +astro-ph/0210612 +astro-ph/0210613 +astro-ph/0210614 +astro-ph/0210616 +astro-ph/0210617 +astro-ph/0210618 +astro-ph/0210619 +astro-ph/0210621 +astro-ph/0210623 +astro-ph/0210624 +astro-ph/0210625 +astro-ph/0210628 +astro-ph/0210629 +astro-ph/0210631 +astro-ph/0210634 +astro-ph/0210641 +astro-ph/0210642 +astro-ph/0210645 +astro-ph/0210647 +astro-ph/0210648 +astro-ph/0210652 +astro-ph/0210657 +astro-ph/0210658 +astro-ph/0210662 +astro-ph/0210666 +astro-ph/0210668 +astro-ph/0210670 +astro-ph/0210672 +astro-ph/0210673 +astro-ph/0210674 +astro-ph/0210675 +astro-ph/0210676 +astro-ph/0210677 +astro-ph/0210678 +astro-ph/0210679 +astro-ph/0210680 +astro-ph/0210684 +astro-ph/0210686 +astro-ph/0210687 +astro-ph/0210689 +astro-ph/0210690 +astro-ph/0210691 +astro-ph/0210693 +astro-ph/0211002 +astro-ph/0211003 +astro-ph/0211007 +astro-ph/0211008 +astro-ph/0211009 +astro-ph/0211011 +astro-ph/0211014 +astro-ph/0211015 +astro-ph/0211017 +astro-ph/0211021 +astro-ph/0211025 +astro-ph/0211026 +astro-ph/0211028 +astro-ph/0211029 +astro-ph/0211030 +astro-ph/0211033 +astro-ph/0211035 +astro-ph/0211036 +astro-ph/0211037 +astro-ph/0211040 +astro-ph/0211041 +astro-ph/0211042 +astro-ph/0211046 +astro-ph/0211048 +astro-ph/0211049 +astro-ph/0211050 +astro-ph/0211051 +astro-ph/0211052 +astro-ph/0211055 +astro-ph/0211056 +astro-ph/0211059 +astro-ph/0211060 +astro-ph/0211062 +astro-ph/0211063 +astro-ph/0211065 +astro-ph/0211067 +astro-ph/0211069 +astro-ph/0211070 +astro-ph/0211071 +astro-ph/0211072 +astro-ph/0211073 +astro-ph/0211074 +astro-ph/0211075 +astro-ph/0211077 +astro-ph/0211078 +astro-ph/0211079 +astro-ph/0211082 +astro-ph/0211083 +astro-ph/0211086 +astro-ph/0211088 +astro-ph/0211090 +astro-ph/0211095 +astro-ph/0211096 +astro-ph/0211097 +astro-ph/0211100 +astro-ph/0211102 +astro-ph/0211105 +astro-ph/0211106 +astro-ph/0211109 +astro-ph/0211110 +astro-ph/0211112 +astro-ph/0211113 +astro-ph/0211115 +astro-ph/0211117 +astro-ph/0211118 +astro-ph/0211120 +astro-ph/0211121 +astro-ph/0211123 +astro-ph/0211124 +astro-ph/0211126 +astro-ph/0211127 +astro-ph/0211128 +astro-ph/0211130 +astro-ph/0211131 +astro-ph/0211133 +astro-ph/0211134 +astro-ph/0211135 +astro-ph/0211137 +astro-ph/0211138 +astro-ph/0211139 +astro-ph/0211142 +astro-ph/0211144 +astro-ph/0211145 +astro-ph/0211146 +astro-ph/0211147 +astro-ph/0211149 +astro-ph/0211150 +astro-ph/0211153 +astro-ph/0211154 +astro-ph/0211155 +astro-ph/0211156 +astro-ph/0211157 +astro-ph/0211159 +astro-ph/0211162 +astro-ph/0211163 +astro-ph/0211164 +astro-ph/0211165 +astro-ph/0211166 +astro-ph/0211169 +astro-ph/0211170 +astro-ph/0211171 +astro-ph/0211172 +astro-ph/0211175 +astro-ph/0211176 +astro-ph/0211178 +astro-ph/0211179 +astro-ph/0211180 +astro-ph/0211181 +astro-ph/0211183 +astro-ph/0211184 +astro-ph/0211185 +astro-ph/0211186 +astro-ph/0211189 +astro-ph/0211191 +astro-ph/0211192 +astro-ph/0211194 +astro-ph/0211196 +astro-ph/0211198 +astro-ph/0211202 +astro-ph/0211205 +astro-ph/0211209 +astro-ph/0211211 +astro-ph/0211215 +astro-ph/0211218 +astro-ph/0211219 +astro-ph/0211221 +astro-ph/0211222 +astro-ph/0211224 +astro-ph/0211225 +astro-ph/0211226 +astro-ph/0211227 +astro-ph/0211229 +astro-ph/0211230 +astro-ph/0211231 +astro-ph/0211234 +astro-ph/0211235 +astro-ph/0211237 +astro-ph/0211240 +astro-ph/0211241 +astro-ph/0211242 +astro-ph/0211244 +astro-ph/0211245 +astro-ph/0211246 +astro-ph/0211247 +astro-ph/0211248 +astro-ph/0211249 +astro-ph/0211250 +astro-ph/0211251 +astro-ph/0211253 +astro-ph/0211256 +astro-ph/0211259 +astro-ph/0211262 +astro-ph/0211263 +astro-ph/0211265 +astro-ph/0211266 +astro-ph/0211268 +astro-ph/0211271 +astro-ph/0211273 +astro-ph/0211274 +astro-ph/0211275 +astro-ph/0211276 +astro-ph/0211277 +astro-ph/0211281 +astro-ph/0211282 +astro-ph/0211283 +astro-ph/0211285 +astro-ph/0211289 +astro-ph/0211291 +astro-ph/0211296 +astro-ph/0211298 +astro-ph/0211299 +astro-ph/0211303 +astro-ph/0211305 +astro-ph/0211311 +astro-ph/0211313 +astro-ph/0211314 +astro-ph/0211315 +astro-ph/0211318 +astro-ph/0211319 +astro-ph/0211321 +astro-ph/0211322 +astro-ph/0211324 +astro-ph/0211326 +astro-ph/0211328 +astro-ph/0211329 +astro-ph/0211330 +astro-ph/0211332 +astro-ph/0211333 +astro-ph/0211334 +astro-ph/0211340 +astro-ph/0211341 +astro-ph/0211342 +astro-ph/0211344 +astro-ph/0211345 +astro-ph/0211350 +astro-ph/0211351 +astro-ph/0211356 +astro-ph/0211358 +astro-ph/0211359 +astro-ph/0211361 +astro-ph/0211362 +astro-ph/0211363 +astro-ph/0211367 +astro-ph/0211369 +astro-ph/0211371 +astro-ph/0211372 +astro-ph/0211376 +astro-ph/0211377 +astro-ph/0211378 +astro-ph/0211383 +astro-ph/0211385 +astro-ph/0211387 +astro-ph/0211389 +astro-ph/0211390 +astro-ph/0211391 +astro-ph/0211393 +astro-ph/0211394 +astro-ph/0211395 +astro-ph/0211396 +astro-ph/0211399 +astro-ph/0211401 +astro-ph/0211403 +astro-ph/0211406 +astro-ph/0211407 +astro-ph/0211408 +astro-ph/0211409 +astro-ph/0211410 +astro-ph/0211411 +astro-ph/0211413 +astro-ph/0211414 +astro-ph/0211415 +astro-ph/0211416 +astro-ph/0211419 +astro-ph/0211420 +astro-ph/0211423 +astro-ph/0211424 +astro-ph/0211425 +astro-ph/0211426 +astro-ph/0211430 +astro-ph/0211432 +astro-ph/0211433 +astro-ph/0211434 +astro-ph/0211435 +astro-ph/0211436 +astro-ph/0211437 +astro-ph/0211438 +astro-ph/0211439 +astro-ph/0211441 +astro-ph/0211442 +astro-ph/0211443 +astro-ph/0211444 +astro-ph/0211445 +astro-ph/0211447 +astro-ph/0211448 +astro-ph/0211449 +astro-ph/0211452 +astro-ph/0211453 +astro-ph/0211454 +astro-ph/0211457 +astro-ph/0211459 +astro-ph/0211460 +astro-ph/0211462 +astro-ph/0211463 +astro-ph/0211464 +astro-ph/0211465 +astro-ph/0211466 +astro-ph/0211467 +astro-ph/0211468 +astro-ph/0211469 +astro-ph/0211471 +astro-ph/0211473 +astro-ph/0211475 +astro-ph/0211476 +astro-ph/0211478 +astro-ph/0211479 +astro-ph/0211480 +astro-ph/0211482 +astro-ph/0211483 +astro-ph/0211486 +astro-ph/0211488 +astro-ph/0211491 +astro-ph/0211492 +astro-ph/0211493 +astro-ph/0211494 +astro-ph/0211495 +astro-ph/0211499 +astro-ph/0211501 +astro-ph/0211504 +astro-ph/0211505 +astro-ph/0211507 +astro-ph/0211509 +astro-ph/0211510 +astro-ph/0211511 +astro-ph/0211514 +astro-ph/0211515 +astro-ph/0211518 +astro-ph/0211519 +astro-ph/0211521 +astro-ph/0211523 +astro-ph/0211529 +astro-ph/0211530 +astro-ph/0211531 +astro-ph/0211532 +astro-ph/0211536 +astro-ph/0211537 +astro-ph/0211538 +astro-ph/0211539 +astro-ph/0211540 +astro-ph/0211543 +astro-ph/0211545 +astro-ph/0211546 +astro-ph/0211547 +astro-ph/0211548 +astro-ph/0211549 +astro-ph/0211551 +astro-ph/0211552 +astro-ph/0211555 +astro-ph/0211556 +astro-ph/0211557 +astro-ph/0211558 +astro-ph/0211559 +astro-ph/0211560 +astro-ph/0211561 +astro-ph/0211562 +astro-ph/0211564 +astro-ph/0211566 +astro-ph/0211569 +astro-ph/0211572 +astro-ph/0211573 +astro-ph/0211574 +astro-ph/0211575 +astro-ph/0211582 +astro-ph/0211584 +astro-ph/0211588 +astro-ph/0211589 +astro-ph/0211596 +astro-ph/0211611 +astro-ph/0211615 +astro-ph/0211625 +astro-ph/0211626 +astro-ph/0211628 +astro-ph/0211629 +astro-ph/0211633 +astro-ph/0211634 +astro-ph/0211645 +astro-ph/0211647 +astro-ph/0211649 +astro-ph/0211650 +astro-ph/0211653 +astro-ph/0212001 +astro-ph/0212002 +astro-ph/0212005 +astro-ph/0212006 +astro-ph/0212007 +astro-ph/0212008 +astro-ph/0212018 +astro-ph/0212030 +astro-ph/0212038 +astro-ph/0212041 +astro-ph/0212042 +astro-ph/0212044 +astro-ph/0212046 +astro-ph/0212047 +astro-ph/0212049 +astro-ph/0212050 +astro-ph/0212053 +astro-ph/0212054 +astro-ph/0212057 +astro-ph/0212059 +astro-ph/0212060 +astro-ph/0212062 +astro-ph/0212065 +astro-ph/0212066 +astro-ph/0212067 +astro-ph/0212069 +astro-ph/0212071 +astro-ph/0212072 +astro-ph/0212073 +astro-ph/0212074 +astro-ph/0212075 +astro-ph/0212076 +astro-ph/0212077 +astro-ph/0212078 +astro-ph/0212079 +astro-ph/0212083 +astro-ph/0212085 +astro-ph/0212086 +astro-ph/0212087 +astro-ph/0212088 +astro-ph/0212089 +astro-ph/0212091 +astro-ph/0212097 +astro-ph/0212099 +astro-ph/0212100 +astro-ph/0212101 +astro-ph/0212102 +astro-ph/0212103 +astro-ph/0212104 +astro-ph/0212105 +astro-ph/0212106 +astro-ph/0212112 +astro-ph/0212115 +astro-ph/0212119 +astro-ph/0212120 +astro-ph/0212121 +astro-ph/0212122 +astro-ph/0212123 +astro-ph/0212125 +astro-ph/0212126 +astro-ph/0212127 +astro-ph/0212128 +astro-ph/0212129 +astro-ph/0212132 +astro-ph/0212134 +astro-ph/0212135 +astro-ph/0212139 +astro-ph/0212142 +astro-ph/0212146 +astro-ph/0212151 +astro-ph/0212153 +astro-ph/0212154 +astro-ph/0212158 +astro-ph/0212160 +astro-ph/0212162 +astro-ph/0212165 +astro-ph/0212167 +astro-ph/0212168 +astro-ph/0212170 +astro-ph/0212171 +astro-ph/0212173 +astro-ph/0212174 +astro-ph/0212175 +astro-ph/0212179 +astro-ph/0212181 +astro-ph/0212184 +astro-ph/0212186 +astro-ph/0212189 +astro-ph/0212192 +astro-ph/0212193 +astro-ph/0212195 +astro-ph/0212196 +astro-ph/0212197 +astro-ph/0212199 +astro-ph/0212200 +astro-ph/0212201 +astro-ph/0212204 +astro-ph/0212207 +astro-ph/0212210 +astro-ph/0212212 +astro-ph/0212213 +astro-ph/0212214 +astro-ph/0212215 +astro-ph/0212216 +astro-ph/0212217 +astro-ph/0212218 +astro-ph/0212219 +astro-ph/0212220 +astro-ph/0212221 +astro-ph/0212222 +astro-ph/0212223 +astro-ph/0212224 +astro-ph/0212229 +astro-ph/0212230 +astro-ph/0212232 +astro-ph/0212233 +astro-ph/0212236 +astro-ph/0212237 +astro-ph/0212240 +astro-ph/0212241 +astro-ph/0212244 +astro-ph/0212246 +astro-ph/0212248 +astro-ph/0212251 +astro-ph/0212252 +astro-ph/0212253 +astro-ph/0212255 +astro-ph/0212259 +astro-ph/0212260 +astro-ph/0212262 +astro-ph/0212264 +astro-ph/0212265 +astro-ph/0212270 +astro-ph/0212271 +astro-ph/0212273 +astro-ph/0212274 +astro-ph/0212275 +astro-ph/0212276 +astro-ph/0212277 +astro-ph/0212279 +astro-ph/0212280 +astro-ph/0212283 +astro-ph/0212284 +astro-ph/0212286 +astro-ph/0212287 +astro-ph/0212290 +astro-ph/0212291 +astro-ph/0212293 +astro-ph/0212294 +astro-ph/0212296 +astro-ph/0212297 +astro-ph/0212298 +astro-ph/0212299 +astro-ph/0212301 +astro-ph/0212303 +astro-ph/0212305 +astro-ph/0212306 +astro-ph/0212307 +astro-ph/0212308 +astro-ph/0212309 +astro-ph/0212310 +astro-ph/0212315 +astro-ph/0212316 +astro-ph/0212317 +astro-ph/0212318 +astro-ph/0212319 +astro-ph/0212320 +astro-ph/0212321 +astro-ph/0212323 +astro-ph/0212326 +astro-ph/0212328 +astro-ph/0212330 +astro-ph/0212331 +astro-ph/0212332 +astro-ph/0212339 +astro-ph/0212340 +astro-ph/0212341 +astro-ph/0212344 +astro-ph/0212350 +astro-ph/0212352 +astro-ph/0212355 +astro-ph/0212356 +astro-ph/0212360 +astro-ph/0212363 +astro-ph/0212364 +astro-ph/0212365 +astro-ph/0212368 +astro-ph/0212369 +astro-ph/0212370 +astro-ph/0212372 +astro-ph/0212373 +astro-ph/0212376 +astro-ph/0212378 +astro-ph/0212379 +astro-ph/0212381 +astro-ph/0212382 +astro-ph/0212383 +astro-ph/0212384 +astro-ph/0212386 +astro-ph/0212387 +astro-ph/0212390 +astro-ph/0212391 +astro-ph/0212392 +astro-ph/0212393 +astro-ph/0212396 +astro-ph/0212398 +astro-ph/0212399 +astro-ph/0212400 +astro-ph/0212401 +astro-ph/0212402 +astro-ph/0212403 +astro-ph/0212404 +astro-ph/0212405 +astro-ph/0212407 +astro-ph/0212408 +astro-ph/0212409 +astro-ph/0212412 +astro-ph/0212415 +astro-ph/0212416 +astro-ph/0212418 +astro-ph/0212420 +astro-ph/0212422 +astro-ph/0212423 +astro-ph/0212424 +astro-ph/0212426 +astro-ph/0212427 +astro-ph/0212428 +astro-ph/0212429 +astro-ph/0212430 +astro-ph/0212432 +astro-ph/0212433 +astro-ph/0212434 +astro-ph/0212435 +astro-ph/0212442 +astro-ph/0212443 +astro-ph/0212445 +astro-ph/0212448 +astro-ph/0212449 +astro-ph/0212450 +astro-ph/0212452 +astro-ph/0212453 +astro-ph/0212455 +astro-ph/0212456 +astro-ph/0212457 +astro-ph/0212458 +astro-ph/0212459 +astro-ph/0212460 +astro-ph/0212461 +astro-ph/0212462 +astro-ph/0212465 +astro-ph/0212466 +astro-ph/0212469 +astro-ph/0212470 +astro-ph/0212471 +astro-ph/0212472 +astro-ph/0212473 +astro-ph/0212475 +astro-ph/0212477 +astro-ph/0212483 +astro-ph/0212486 +astro-ph/0212487 +astro-ph/0212490 +astro-ph/0212491 +astro-ph/0212492 +astro-ph/0212494 +astro-ph/0212495 +astro-ph/0212496 +astro-ph/0212497 +astro-ph/0212499 +astro-ph/0212501 +astro-ph/0212503 +astro-ph/0212504 +astro-ph/0212506 +astro-ph/0212507 +astro-ph/0212508 +astro-ph/0212510 +astro-ph/0212512 +astro-ph/0212513 +astro-ph/0212514 +astro-ph/0212516 +astro-ph/0212517 +astro-ph/0212518 +astro-ph/0212519 +astro-ph/0212520 +astro-ph/0212523 +astro-ph/0212524 +astro-ph/0212526 +astro-ph/0212527 +astro-ph/0212528 +astro-ph/0212529 +astro-ph/0212530 +astro-ph/0212532 +astro-ph/0212534 +astro-ph/0212535 +astro-ph/0212536 +astro-ph/0212537 +astro-ph/0212538 +astro-ph/0212539 +astro-ph/0212542 +astro-ph/0212543 +astro-ph/0212544 +astro-ph/0212545 +astro-ph/0212546 +astro-ph/0212547 +astro-ph/0212549 +astro-ph/0212556 +astro-ph/0212557 +astro-ph/0212558 +astro-ph/0212559 +astro-ph/0212565 +astro-ph/0212568 +astro-ph/0212569 +astro-ph/0212570 +astro-ph/0212571 +astro-ph/0212574 +astro-ph/0212578 +astro-ph/0212580 +astro-ph/0212581 +astro-ph/0301001 +astro-ph/0301002 +astro-ph/0301003 +astro-ph/0301004 +astro-ph/0301005 +astro-ph/0301007 +astro-ph/0301011 +astro-ph/0301012 +astro-ph/0301013 +astro-ph/0301014 +astro-ph/0301015 +astro-ph/0301020 +astro-ph/0301023 +astro-ph/0301025 +astro-ph/0301026 +astro-ph/0301027 +astro-ph/0301028 +astro-ph/0301029 +astro-ph/0301030 +astro-ph/0301032 +astro-ph/0301037 +astro-ph/0301038 +astro-ph/0301041 +astro-ph/0301042 +astro-ph/0301044 +astro-ph/0301045 +astro-ph/0301046 +astro-ph/0301048 +astro-ph/0301049 +astro-ph/0301053 +astro-ph/0301054 +astro-ph/0301056 +astro-ph/0301058 +astro-ph/0301059 +astro-ph/0301060 +astro-ph/0301064 +astro-ph/0301065 +astro-ph/0301066 +astro-ph/0301067 +astro-ph/0301068 +astro-ph/0301072 +astro-ph/0301076 +astro-ph/0301077 +astro-ph/0301081 +astro-ph/0301083 +astro-ph/0301089 +astro-ph/0301090 +astro-ph/0301091 +astro-ph/0301092 +astro-ph/0301095 +astro-ph/0301098 +astro-ph/0301099 +astro-ph/0301102 +astro-ph/0301103 +astro-ph/0301104 +astro-ph/0301105 +astro-ph/0301110 +astro-ph/0301111 +astro-ph/0301112 +astro-ph/0301113 +astro-ph/0301114 +astro-ph/0301116 +astro-ph/0301117 +astro-ph/0301119 +astro-ph/0301120 +astro-ph/0301121 +astro-ph/0301122 +astro-ph/0301123 +astro-ph/0301124 +astro-ph/0301125 +astro-ph/0301126 +astro-ph/0301127 +astro-ph/0301130 +astro-ph/0301131 +astro-ph/0301133 +astro-ph/0301134 +astro-ph/0301136 +astro-ph/0301138 +astro-ph/0301140 +astro-ph/0301142 +astro-ph/0301144 +astro-ph/0301145 +astro-ph/0301147 +astro-ph/0301151 +astro-ph/0301152 +astro-ph/0301153 +astro-ph/0301156 +astro-ph/0301157 +astro-ph/0301159 +astro-ph/0301160 +astro-ph/0301162 +astro-ph/0301164 +astro-ph/0301169 +astro-ph/0301171 +astro-ph/0301175 +astro-ph/0301177 +astro-ph/0301178 +astro-ph/0301182 +astro-ph/0301184 +astro-ph/0301185 +astro-ph/0301186 +astro-ph/0301187 +astro-ph/0301188 +astro-ph/0301192 +astro-ph/0301193 +astro-ph/0301194 +astro-ph/0301196 +astro-ph/0301197 +astro-ph/0301200 +astro-ph/0301202 +astro-ph/0301203 +astro-ph/0301204 +astro-ph/0301211 +astro-ph/0301214 +astro-ph/0301215 +astro-ph/0301216 +astro-ph/0301217 +astro-ph/0301222 +astro-ph/0301223 +astro-ph/0301224 +astro-ph/0301225 +astro-ph/0301226 +astro-ph/0301227 +astro-ph/0301228 +astro-ph/0301229 +astro-ph/0301230 +astro-ph/0301231 +astro-ph/0301234 +astro-ph/0301235 +astro-ph/0301236 +astro-ph/0301237 +astro-ph/0301238 +astro-ph/0301239 +astro-ph/0301241 +astro-ph/0301243 +astro-ph/0301244 +astro-ph/0301246 +astro-ph/0301247 +astro-ph/0301253 +astro-ph/0301260 +astro-ph/0301261 +astro-ph/0301263 +astro-ph/0301264 +astro-ph/0301268 +astro-ph/0301275 +astro-ph/0301276 +astro-ph/0301278 +astro-ph/0301282 +astro-ph/0301283 +astro-ph/0301285 +astro-ph/0301286 +astro-ph/0301289 +astro-ph/0301290 +astro-ph/0301292 +astro-ph/0301293 +astro-ph/0301296 +astro-ph/0301297 +astro-ph/0301298 +astro-ph/0301300 +astro-ph/0301301 +astro-ph/0301307 +astro-ph/0301314 +astro-ph/0301316 +astro-ph/0301319 +astro-ph/0301331 +astro-ph/0301333 +astro-ph/0301337 +astro-ph/0301342 +astro-ph/0301345 +astro-ph/0301346 +astro-ph/0301350 +astro-ph/0301352 +astro-ph/0301358 +astro-ph/0301364 +astro-ph/0301366 +astro-ph/0301367 +astro-ph/0301368 +astro-ph/0301370 +astro-ph/0301375 +astro-ph/0301376 +astro-ph/0301378 +astro-ph/0301380 +astro-ph/0301383 +astro-ph/0301384 +astro-ph/0301386 +astro-ph/0301397 +astro-ph/0301398 +astro-ph/0301399 +astro-ph/0301402 +astro-ph/0301404 +astro-ph/0301405 +astro-ph/0301406 +astro-ph/0301408 +astro-ph/0301411 +astro-ph/0301412 +astro-ph/0301413 +astro-ph/0301414 +astro-ph/0301415 +astro-ph/0301418 +astro-ph/0301419 +astro-ph/0301422 +astro-ph/0301423 +astro-ph/0301424 +astro-ph/0301425 +astro-ph/0301426 +astro-ph/0301427 +astro-ph/0301431 +astro-ph/0301432 +astro-ph/0301439 +astro-ph/0301441 +astro-ph/0301443 +astro-ph/0301444 +astro-ph/0301445 +astro-ph/0301447 +astro-ph/0301449 +astro-ph/0301452 +astro-ph/0301455 +astro-ph/0301456 +astro-ph/0301457 +astro-ph/0301458 +astro-ph/0301460 +astro-ph/0301461 +astro-ph/0301463 +astro-ph/0301464 +astro-ph/0301465 +astro-ph/0301466 +astro-ph/0301467 +astro-ph/0301469 +astro-ph/0301470 +astro-ph/0301471 +astro-ph/0301472 +astro-ph/0301473 +astro-ph/0301474 +astro-ph/0301475 +astro-ph/0301477 +astro-ph/0301478 +astro-ph/0301479 +astro-ph/0301480 +astro-ph/0301483 +astro-ph/0301485 +astro-ph/0301486 +astro-ph/0301487 +astro-ph/0301488 +astro-ph/0301489 +astro-ph/0301491 +astro-ph/0301492 +astro-ph/0301493 +astro-ph/0301494 +astro-ph/0301496 +astro-ph/0301498 +astro-ph/0301499 +astro-ph/0301501 +astro-ph/0301502 +astro-ph/0301503 +astro-ph/0301506 +astro-ph/0301509 +astro-ph/0301511 +astro-ph/0301512 +astro-ph/0301513 +astro-ph/0301514 +astro-ph/0301515 +astro-ph/0301516 +astro-ph/0301517 +astro-ph/0301519 +astro-ph/0301521 +astro-ph/0301526 +astro-ph/0301528 +astro-ph/0301530 +astro-ph/0301531 +astro-ph/0301532 +astro-ph/0301533 +astro-ph/0301535 +astro-ph/0301536 +astro-ph/0301538 +astro-ph/0301541 +astro-ph/0301542 +astro-ph/0301543 +astro-ph/0301546 +astro-ph/0301547 +astro-ph/0301548 +astro-ph/0301552 +astro-ph/0301554 +astro-ph/0301555 +astro-ph/0301556 +astro-ph/0301557 +astro-ph/0301558 +astro-ph/0301561 +astro-ph/0301563 +astro-ph/0301565 +astro-ph/0301567 +astro-ph/0301575 +astro-ph/0301577 +astro-ph/0301578 +astro-ph/0301581 +astro-ph/0301583 +astro-ph/0301584 +astro-ph/0301585 +astro-ph/0301586 +astro-ph/0301587 +astro-ph/0301588 +astro-ph/0301589 +astro-ph/0301592 +astro-ph/0301593 +astro-ph/0301594 +astro-ph/0301595 +astro-ph/0301596 +astro-ph/0301597 +astro-ph/0301601 +astro-ph/0301610 +astro-ph/0301612 +astro-ph/0301613 +astro-ph/0301616 +astro-ph/0301619 +astro-ph/0301620 +astro-ph/0301622 +astro-ph/0301624 +astro-ph/0301625 +astro-ph/0301626 +astro-ph/0301628 +astro-ph/0301634 +astro-ph/0301635 +astro-ph/0301638 +astro-ph/0301641 +astro-ph/0301642 +astro-ph/0301645 +astro-ph/0301649 +astro-ph/0301651 +astro-ph/0301652 +astro-ph/0301656 +astro-ph/0302002 +astro-ph/0302003 +astro-ph/0302006 +astro-ph/0302008 +astro-ph/0302009 +astro-ph/0302013 +astro-ph/0302014 +astro-ph/0302015 +astro-ph/0302017 +astro-ph/0302018 +astro-ph/0302021 +astro-ph/0302024 +astro-ph/0302025 +astro-ph/0302027 +astro-ph/0302031 +astro-ph/0302037 +astro-ph/0302038 +astro-ph/0302040 +astro-ph/0302041 +astro-ph/0302042 +astro-ph/0302044 +astro-ph/0302050 +astro-ph/0302051 +astro-ph/0302052 +astro-ph/0302054 +astro-ph/0302060 +astro-ph/0302061 +astro-ph/0302062 +astro-ph/0302063 +astro-ph/0302064 +astro-ph/0302065 +astro-ph/0302066 +astro-ph/0302067 +astro-ph/0302068 +astro-ph/0302069 +astro-ph/0302070 +astro-ph/0302071 +astro-ph/0302072 +astro-ph/0302074 +astro-ph/0302076 +astro-ph/0302081 +astro-ph/0302082 +astro-ph/0302083 +astro-ph/0302084 +astro-ph/0302085 +astro-ph/0302087 +astro-ph/0302088 +astro-ph/0302089 +astro-ph/0302091 +astro-ph/0302094 +astro-ph/0302095 +astro-ph/0302096 +astro-ph/0302098 +astro-ph/0302099 +astro-ph/0302100 +astro-ph/0302102 +astro-ph/0302103 +astro-ph/0302104 +astro-ph/0302105 +astro-ph/0302106 +astro-ph/0302112 +astro-ph/0302113 +astro-ph/0302114 +astro-ph/0302115 +astro-ph/0302116 +astro-ph/0302117 +astro-ph/0302118 +astro-ph/0302119 +astro-ph/0302120 +astro-ph/0302123 +astro-ph/0302124 +astro-ph/0302125 +astro-ph/0302126 +astro-ph/0302132 +astro-ph/0302133 +astro-ph/0302135 +astro-ph/0302136 +astro-ph/0302138 +astro-ph/0302139 +astro-ph/0302140 +astro-ph/0302141 +astro-ph/0302142 +astro-ph/0302145 +astro-ph/0302147 +astro-ph/0302149 +astro-ph/0302151 +astro-ph/0302152 +astro-ph/0302154 +astro-ph/0302160 +astro-ph/0302162 +astro-ph/0302164 +astro-ph/0302165 +astro-ph/0302167 +astro-ph/0302169 +astro-ph/0302170 +astro-ph/0302171 +astro-ph/0302172 +astro-ph/0302174 +astro-ph/0302175 +astro-ph/0302176 +astro-ph/0302178 +astro-ph/0302179 +astro-ph/0302180 +astro-ph/0302181 +astro-ph/0302182 +astro-ph/0302188 +astro-ph/0302189 +astro-ph/0302190 +astro-ph/0302191 +astro-ph/0302192 +astro-ph/0302194 +astro-ph/0302199 +astro-ph/0302206 +astro-ph/0302210 +astro-ph/0302228 +astro-ph/0302229 +astro-ph/0302230 +astro-ph/0302233 +astro-ph/0302236 +astro-ph/0302237 +astro-ph/0302241 +astro-ph/0302243 +astro-ph/0302245 +astro-ph/0302246 +astro-ph/0302247 +astro-ph/0302248 +astro-ph/0302249 +astro-ph/0302253 +astro-ph/0302254 +astro-ph/0302255 +astro-ph/0302256 +astro-ph/0302258 +astro-ph/0302259 +astro-ph/0302260 +astro-ph/0302264 +astro-ph/0302265 +astro-ph/0302268 +astro-ph/0302269 +astro-ph/0302270 +astro-ph/0302271 +astro-ph/0302275 +astro-ph/0302276 +astro-ph/0302277 +astro-ph/0302281 +astro-ph/0302284 +astro-ph/0302285 +astro-ph/0302286 +astro-ph/0302287 +astro-ph/0302289 +astro-ph/0302290 +astro-ph/0302292 +astro-ph/0302294 +astro-ph/0302296 +astro-ph/0302298 +astro-ph/0302299 +astro-ph/0302300 +astro-ph/0302302 +astro-ph/0302306 +astro-ph/0302308 +astro-ph/0302309 +astro-ph/0302310 +astro-ph/0302311 +astro-ph/0302313 +astro-ph/0302315 +astro-ph/0302316 +astro-ph/0302317 +astro-ph/0302321 +astro-ph/0302322 +astro-ph/0302326 +astro-ph/0302327 +astro-ph/0302328 +astro-ph/0302331 +astro-ph/0302333 +astro-ph/0302335 +astro-ph/0302339 +astro-ph/0302341 +astro-ph/0302342 +astro-ph/0302356 +astro-ph/0302357 +astro-ph/0302359 +astro-ph/0302361 +astro-ph/0302362 +astro-ph/0302369 +astro-ph/0302370 +astro-ph/0302372 +astro-ph/0302376 +astro-ph/0302388 +astro-ph/0302397 +astro-ph/0302398 +astro-ph/0302399 +astro-ph/0302400 +astro-ph/0302402 +astro-ph/0302403 +astro-ph/0302405 +astro-ph/0302410 +astro-ph/0302412 +astro-ph/0302413 +astro-ph/0302416 +astro-ph/0302418 +astro-ph/0302420 +astro-ph/0302423 +astro-ph/0302429 +astro-ph/0302432 +astro-ph/0302433 +astro-ph/0302434 +astro-ph/0302439 +astro-ph/0302443 +astro-ph/0302447 +astro-ph/0302451 +astro-ph/0302453 +astro-ph/0302458 +astro-ph/0302464 +astro-ph/0302465 +astro-ph/0302466 +astro-ph/0302470 +astro-ph/0302472 +astro-ph/0302473 +astro-ph/0302474 +astro-ph/0302481 +astro-ph/0302485 +astro-ph/0302487 +astro-ph/0302490 +astro-ph/0302491 +astro-ph/0302494 +astro-ph/0302499 +astro-ph/0302500 +astro-ph/0302501 +astro-ph/0302502 +astro-ph/0302503 +astro-ph/0302505 +astro-ph/0302506 +astro-ph/0302507 +astro-ph/0302508 +astro-ph/0302513 +astro-ph/0302514 +astro-ph/0302519 +astro-ph/0302520 +astro-ph/0302523 +astro-ph/0302527 +astro-ph/0302528 +astro-ph/0302529 +astro-ph/0302530 +astro-ph/0302532 +astro-ph/0302534 +astro-ph/0302535 +astro-ph/0302537 +astro-ph/0302538 +astro-ph/0302540 +astro-ph/0302541 +astro-ph/0302542 +astro-ph/0302546 +astro-ph/0302547 +astro-ph/0302549 +astro-ph/0302550 +astro-ph/0302552 +astro-ph/0302553 +astro-ph/0302555 +astro-ph/0302556 +astro-ph/0302557 +astro-ph/0302558 +astro-ph/0302562 +astro-ph/0302563 +astro-ph/0302565 +astro-ph/0302566 +astro-ph/0302567 +astro-ph/0302568 +astro-ph/0302569 +astro-ph/0302571 +astro-ph/0302573 +astro-ph/0302576 +astro-ph/0302579 +astro-ph/0302581 +astro-ph/0302582 +astro-ph/0302583 +astro-ph/0302585 +astro-ph/0302587 +astro-ph/0302588 +astro-ph/0302596 +astro-ph/0302597 +astro-ph/0302599 +astro-ph/0302603 +astro-ph/0302607 +astro-ph/0302608 +astro-ph/0302609 +astro-ph/0302611 +astro-ph/0303002 +astro-ph/0303005 +astro-ph/0303006 +astro-ph/0303007 +astro-ph/0303008 +astro-ph/0303013 +astro-ph/0303014 +astro-ph/0303015 +astro-ph/0303016 +astro-ph/0303017 +astro-ph/0303021 +astro-ph/0303022 +astro-ph/0303023 +astro-ph/0303024 +astro-ph/0303028 +astro-ph/0303032 +astro-ph/0303039 +astro-ph/0303042 +astro-ph/0303043 +astro-ph/0303044 +astro-ph/0303045 +astro-ph/0303049 +astro-ph/0303051 +astro-ph/0303052 +astro-ph/0303053 +astro-ph/0303054 +astro-ph/0303056 +astro-ph/0303057 +astro-ph/0303060 +astro-ph/0303061 +astro-ph/0303062 +astro-ph/0303063 +astro-ph/0303064 +astro-ph/0303065 +astro-ph/0303068 +astro-ph/0303069 +astro-ph/0303071 +astro-ph/0303072 +astro-ph/0303073 +astro-ph/0303074 +astro-ph/0303075 +astro-ph/0303076 +astro-ph/0303080 +astro-ph/0303081 +astro-ph/0303082 +astro-ph/0303083 +astro-ph/0303084 +astro-ph/0303085 +astro-ph/0303087 +astro-ph/0303088 +astro-ph/0303090 +astro-ph/0303091 +astro-ph/0303092 +astro-ph/0303093 +astro-ph/0303096 +astro-ph/0303097 +astro-ph/0303098 +astro-ph/0303099 +astro-ph/0303100 +astro-ph/0303101 +astro-ph/0303102 +astro-ph/0303103 +astro-ph/0303106 +astro-ph/0303108 +astro-ph/0303109 +astro-ph/0303110 +astro-ph/0303112 +astro-ph/0303114 +astro-ph/0303115 +astro-ph/0303116 +astro-ph/0303117 +astro-ph/0303118 +astro-ph/0303121 +astro-ph/0303122 +astro-ph/0303125 +astro-ph/0303126 +astro-ph/0303127 +astro-ph/0303128 +astro-ph/0303129 +astro-ph/0303131 +astro-ph/0303132 +astro-ph/0303133 +astro-ph/0303134 +astro-ph/0303136 +astro-ph/0303137 +astro-ph/0303139 +astro-ph/0303140 +astro-ph/0303141 +astro-ph/0303142 +astro-ph/0303144 +astro-ph/0303145 +astro-ph/0303147 +astro-ph/0303148 +astro-ph/0303150 +astro-ph/0303151 +astro-ph/0303152 +astro-ph/0303153 +astro-ph/0303154 +astro-ph/0303155 +astro-ph/0303156 +astro-ph/0303157 +astro-ph/0303159 +astro-ph/0303160 +astro-ph/0303161 +astro-ph/0303163 +astro-ph/0303165 +astro-ph/0303166 +astro-ph/0303167 +astro-ph/0303168 +astro-ph/0303169 +astro-ph/0303170 +astro-ph/0303173 +astro-ph/0303174 +astro-ph/0303176 +astro-ph/0303179 +astro-ph/0303181 +astro-ph/0303183 +astro-ph/0303184 +astro-ph/0303185 +astro-ph/0303186 +astro-ph/0303187 +astro-ph/0303189 +astro-ph/0303190 +astro-ph/0303191 +astro-ph/0303192 +astro-ph/0303193 +astro-ph/0303194 +astro-ph/0303198 +astro-ph/0303200 +astro-ph/0303201 +astro-ph/0303202 +astro-ph/0303203 +astro-ph/0303206 +astro-ph/0303207 +astro-ph/0303208 +astro-ph/0303209 +astro-ph/0303210 +astro-ph/0303212 +astro-ph/0303214 +astro-ph/0303215 +astro-ph/0303216 +astro-ph/0303217 +astro-ph/0303220 +astro-ph/0303222 +astro-ph/0303223 +astro-ph/0303225 +astro-ph/0303229 +astro-ph/0303234 +astro-ph/0303235 +astro-ph/0303236 +astro-ph/0303237 +astro-ph/0303239 +astro-ph/0303241 +astro-ph/0303246 +astro-ph/0303247 +astro-ph/0303251 +astro-ph/0303252 +astro-ph/0303254 +astro-ph/0303257 +astro-ph/0303259 +astro-ph/0303260 +astro-ph/0303261 +astro-ph/0303262 +astro-ph/0303263 +astro-ph/0303267 +astro-ph/0303269 +astro-ph/0303270 +astro-ph/0303271 +astro-ph/0303274 +astro-ph/0303275 +astro-ph/0303277 +astro-ph/0303278 +astro-ph/0303280 +astro-ph/0303282 +astro-ph/0303284 +astro-ph/0303286 +astro-ph/0303287 +astro-ph/0303290 +astro-ph/0303297 +astro-ph/0303298 +astro-ph/0303299 +astro-ph/0303300 +astro-ph/0303303 +astro-ph/0303304 +astro-ph/0303305 +astro-ph/0303308 +astro-ph/0303309 +astro-ph/0303314 +astro-ph/0303315 +astro-ph/0303316 +astro-ph/0303317 +astro-ph/0303320 +astro-ph/0303321 +astro-ph/0303323 +astro-ph/0303324 +astro-ph/0303325 +astro-ph/0303326 +astro-ph/0303327 +astro-ph/0303329 +astro-ph/0303330 +astro-ph/0303332 +astro-ph/0303333 +astro-ph/0303334 +astro-ph/0303335 +astro-ph/0303341 +astro-ph/0303343 +astro-ph/0303351 +astro-ph/0303353 +astro-ph/0303354 +astro-ph/0303356 +astro-ph/0303358 +astro-ph/0303359 +astro-ph/0303361 +astro-ph/0303362 +astro-ph/0303364 +astro-ph/0303365 +astro-ph/0303366 +astro-ph/0303368 +astro-ph/0303369 +astro-ph/0303370 +astro-ph/0303373 +astro-ph/0303375 +astro-ph/0303378 +astro-ph/0303379 +astro-ph/0303380 +astro-ph/0303382 +astro-ph/0303386 +astro-ph/0303387 +astro-ph/0303389 +astro-ph/0303395 +astro-ph/0303397 +astro-ph/0303399 +astro-ph/0303401 +astro-ph/0303402 +astro-ph/0303403 +astro-ph/0303410 +astro-ph/0303411 +astro-ph/0303412 +astro-ph/0303413 +astro-ph/0303414 +astro-ph/0303415 +astro-ph/0303416 +astro-ph/0303419 +astro-ph/0303420 +astro-ph/0303421 +astro-ph/0303422 +astro-ph/0303423 +astro-ph/0303424 +astro-ph/0303425 +astro-ph/0303431 +astro-ph/0303432 +astro-ph/0303435 +astro-ph/0303437 +astro-ph/0303440 +astro-ph/0303441 +astro-ph/0303442 +astro-ph/0303444 +astro-ph/0303445 +astro-ph/0303446 +astro-ph/0303447 +astro-ph/0303448 +astro-ph/0303449 +astro-ph/0303450 +astro-ph/0303451 +astro-ph/0303452 +astro-ph/0303453 +astro-ph/0303457 +astro-ph/0303458 +astro-ph/0303459 +astro-ph/0303460 +astro-ph/0303464 +astro-ph/0303466 +astro-ph/0303467 +astro-ph/0303470 +astro-ph/0303472 +astro-ph/0303477 +astro-ph/0303480 +astro-ph/0303482 +astro-ph/0303483 +astro-ph/0303487 +astro-ph/0303488 +astro-ph/0303489 +astro-ph/0303491 +astro-ph/0303492 +astro-ph/0303493 +astro-ph/0303494 +astro-ph/0303495 +astro-ph/0303496 +astro-ph/0303497 +astro-ph/0303501 +astro-ph/0303503 +astro-ph/0303504 +astro-ph/0303505 +astro-ph/0303506 +astro-ph/0303508 +astro-ph/0303510 +astro-ph/0303512 +astro-ph/0303514 +astro-ph/0303515 +astro-ph/0303516 +astro-ph/0303518 +astro-ph/0303519 +astro-ph/0303520 +astro-ph/0303522 +astro-ph/0303523 +astro-ph/0303524 +astro-ph/0303526 +astro-ph/0303527 +astro-ph/0303529 +astro-ph/0303530 +astro-ph/0303531 +astro-ph/0303532 +astro-ph/0303534 +astro-ph/0303535 +astro-ph/0303536 +astro-ph/0303537 +astro-ph/0303539 +astro-ph/0303540 +astro-ph/0303544 +astro-ph/0303546 +astro-ph/0303548 +astro-ph/0303550 +astro-ph/0303551 +astro-ph/0303553 +astro-ph/0303556 +astro-ph/0303557 +astro-ph/0303558 +astro-ph/0303559 +astro-ph/0303560 +astro-ph/0303563 +astro-ph/0303564 +astro-ph/0303565 +astro-ph/0303567 +astro-ph/0303568 +astro-ph/0303569 +astro-ph/0303570 +astro-ph/0303573 +astro-ph/0303576 +astro-ph/0303577 +astro-ph/0303579 +astro-ph/0303580 +astro-ph/0303582 +astro-ph/0303583 +astro-ph/0303586 +astro-ph/0303587 +astro-ph/0303589 +astro-ph/0303590 +astro-ph/0303591 +astro-ph/0303592 +astro-ph/0303593 +astro-ph/0303595 +astro-ph/0303596 +astro-ph/0303598 +astro-ph/0303599 +astro-ph/0303600 +astro-ph/0303601 +astro-ph/0303604 +astro-ph/0303605 +astro-ph/0303606 +astro-ph/0303607 +astro-ph/0303608 +astro-ph/0303612 +astro-ph/0303613 +astro-ph/0303615 +astro-ph/0303616 +astro-ph/0303617 +astro-ph/0303618 +astro-ph/0303619 +astro-ph/0303621 +astro-ph/0303625 +astro-ph/0303626 +astro-ph/0303627 +astro-ph/0303628 +astro-ph/0303629 +astro-ph/0303631 +astro-ph/0303632 +astro-ph/0303633 +astro-ph/0303640 +astro-ph/0303642 +astro-ph/0303643 +astro-ph/0303645 +astro-ph/0303648 +astro-ph/0303649 +astro-ph/0303650 +astro-ph/0303651 +astro-ph/0303652 +astro-ph/0303653 +astro-ph/0303654 +astro-ph/0303655 +astro-ph/0303656 +astro-ph/0303657 +astro-ph/0303659 +astro-ph/0303661 +astro-ph/0303662 +astro-ph/0303664 +astro-ph/0303665 +astro-ph/0303667 +astro-ph/0303669 +astro-ph/0304002 +astro-ph/0304003 +astro-ph/0304004 +astro-ph/0304005 +astro-ph/0304007 +astro-ph/0304008 +astro-ph/0304010 +astro-ph/0304011 +astro-ph/0304014 +astro-ph/0304015 +astro-ph/0304016 +astro-ph/0304017 +astro-ph/0304018 +astro-ph/0304021 +astro-ph/0304022 +astro-ph/0304024 +astro-ph/0304025 +astro-ph/0304026 +astro-ph/0304028 +astro-ph/0304031 +astro-ph/0304032 +astro-ph/0304033 +astro-ph/0304034 +astro-ph/0304035 +astro-ph/0304036 +astro-ph/0304037 +astro-ph/0304039 +astro-ph/0304043 +astro-ph/0304046 +astro-ph/0304047 +astro-ph/0304049 +astro-ph/0304051 +astro-ph/0304054 +astro-ph/0304057 +astro-ph/0304058 +astro-ph/0304061 +astro-ph/0304062 +astro-ph/0304063 +astro-ph/0304064 +astro-ph/0304065 +astro-ph/0304067 +astro-ph/0304068 +astro-ph/0304069 +astro-ph/0304070 +astro-ph/0304071 +astro-ph/0304073 +astro-ph/0304074 +astro-ph/0304075 +astro-ph/0304076 +astro-ph/0304077 +astro-ph/0304079 +astro-ph/0304080 +astro-ph/0304082 +astro-ph/0304083 +astro-ph/0304084 +astro-ph/0304085 +astro-ph/0304086 +astro-ph/0304087 +astro-ph/0304088 +astro-ph/0304089 +astro-ph/0304090 +astro-ph/0304091 +astro-ph/0304093 +astro-ph/0304094 +astro-ph/0304095 +astro-ph/0304097 +astro-ph/0304098 +astro-ph/0304099 +astro-ph/0304101 +astro-ph/0304102 +astro-ph/0304103 +astro-ph/0304104 +astro-ph/0304105 +astro-ph/0304106 +astro-ph/0304108 +astro-ph/0304109 +astro-ph/0304110 +astro-ph/0304111 +astro-ph/0304115 +astro-ph/0304116 +astro-ph/0304117 +astro-ph/0304119 +astro-ph/0304123 +astro-ph/0304124 +astro-ph/0304125 +astro-ph/0304126 +astro-ph/0304127 +astro-ph/0304128 +astro-ph/0304129 +astro-ph/0304132 +astro-ph/0304133 +astro-ph/0304134 +astro-ph/0304136 +astro-ph/0304138 +astro-ph/0304139 +astro-ph/0304140 +astro-ph/0304143 +astro-ph/0304144 +astro-ph/0304145 +astro-ph/0304146 +astro-ph/0304147 +astro-ph/0304149 +astro-ph/0304151 +astro-ph/0304152 +astro-ph/0304153 +astro-ph/0304155 +astro-ph/0304157 +astro-ph/0304159 +astro-ph/0304160 +astro-ph/0304161 +astro-ph/0304163 +astro-ph/0304167 +astro-ph/0304169 +astro-ph/0304170 +astro-ph/0304171 +astro-ph/0304172 +astro-ph/0304174 +astro-ph/0304176 +astro-ph/0304177 +astro-ph/0304178 +astro-ph/0304179 +astro-ph/0304181 +astro-ph/0304185 +astro-ph/0304187 +astro-ph/0304188 +astro-ph/0304190 +astro-ph/0304194 +astro-ph/0304195 +astro-ph/0304196 +astro-ph/0304197 +astro-ph/0304198 +astro-ph/0304199 +astro-ph/0304200 +astro-ph/0304201 +astro-ph/0304203 +astro-ph/0304204 +astro-ph/0304205 +astro-ph/0304207 +astro-ph/0304210 +astro-ph/0304213 +astro-ph/0304214 +astro-ph/0304215 +astro-ph/0304216 +astro-ph/0304217 +astro-ph/0304220 +astro-ph/0304221 +astro-ph/0304222 +astro-ph/0304227 +astro-ph/0304229 +astro-ph/0304231 +astro-ph/0304232 +astro-ph/0304233 +astro-ph/0304234 +astro-ph/0304238 +astro-ph/0304240 +astro-ph/0304241 +astro-ph/0304242 +astro-ph/0304244 +astro-ph/0304246 +astro-ph/0304247 +astro-ph/0304248 +astro-ph/0304249 +astro-ph/0304253 +astro-ph/0304258 +astro-ph/0304259 +astro-ph/0304260 +astro-ph/0304261 +astro-ph/0304262 +astro-ph/0304263 +astro-ph/0304265 +astro-ph/0304267 +astro-ph/0304268 +astro-ph/0304269 +astro-ph/0304270 +astro-ph/0304271 +astro-ph/0304272 +astro-ph/0304273 +astro-ph/0304274 +astro-ph/0304275 +astro-ph/0304276 +astro-ph/0304277 +astro-ph/0304278 +astro-ph/0304279 +astro-ph/0304280 +astro-ph/0304281 +astro-ph/0304282 +astro-ph/0304283 +astro-ph/0304284 +astro-ph/0304285 +astro-ph/0304286 +astro-ph/0304287 +astro-ph/0304288 +astro-ph/0304289 +astro-ph/0304291 +astro-ph/0304293 +astro-ph/0304294 +astro-ph/0304295 +astro-ph/0304298 +astro-ph/0304299 +astro-ph/0304300 +astro-ph/0304301 +astro-ph/0304302 +astro-ph/0304303 +astro-ph/0304304 +astro-ph/0304305 +astro-ph/0304309 +astro-ph/0304310 +astro-ph/0304311 +astro-ph/0304313 +astro-ph/0304314 +astro-ph/0304316 +astro-ph/0304317 +astro-ph/0304319 +astro-ph/0304320 +astro-ph/0304322 +astro-ph/0304323 +astro-ph/0304324 +astro-ph/0304325 +astro-ph/0304326 +astro-ph/0304327 +astro-ph/0304328 +astro-ph/0304329 +astro-ph/0304330 +astro-ph/0304331 +astro-ph/0304333 +astro-ph/0304335 +astro-ph/0304341 +astro-ph/0304343 +astro-ph/0304347 +astro-ph/0304348 +astro-ph/0304350 +astro-ph/0304351 +astro-ph/0304353 +astro-ph/0304354 +astro-ph/0304355 +astro-ph/0304356 +astro-ph/0304357 +astro-ph/0304358 +astro-ph/0304359 +astro-ph/0304360 +astro-ph/0304361 +astro-ph/0304362 +astro-ph/0304364 +astro-ph/0304365 +astro-ph/0304366 +astro-ph/0304367 +astro-ph/0304368 +astro-ph/0304372 +astro-ph/0304373 +astro-ph/0304374 +astro-ph/0304375 +astro-ph/0304378 +astro-ph/0304379 +astro-ph/0304380 +astro-ph/0304383 +astro-ph/0304385 +astro-ph/0304387 +astro-ph/0304388 +astro-ph/0304389 +astro-ph/0304390 +astro-ph/0304391 +astro-ph/0304392 +astro-ph/0304394 +astro-ph/0304395 +astro-ph/0304396 +astro-ph/0304397 +astro-ph/0304398 +astro-ph/0304399 +astro-ph/0304400 +astro-ph/0304401 +astro-ph/0304402 +astro-ph/0304403 +astro-ph/0304404 +astro-ph/0304405 +astro-ph/0304406 +astro-ph/0304407 +astro-ph/0304408 +astro-ph/0304409 +astro-ph/0304410 +astro-ph/0304411 +astro-ph/0304418 +astro-ph/0304419 +astro-ph/0304422 +astro-ph/0304425 +astro-ph/0304426 +astro-ph/0304428 +astro-ph/0304429 +astro-ph/0304430 +astro-ph/0304431 +astro-ph/0304433 +astro-ph/0304434 +astro-ph/0304436 +astro-ph/0304437 +astro-ph/0304439 +astro-ph/0304440 +astro-ph/0304442 +astro-ph/0304444 +astro-ph/0304445 +astro-ph/0304447 +astro-ph/0304448 +astro-ph/0304450 +astro-ph/0304451 +astro-ph/0304452 +astro-ph/0304454 +astro-ph/0304457 +astro-ph/0304459 +astro-ph/0304460 +astro-ph/0304461 +astro-ph/0304465 +astro-ph/0304469 +astro-ph/0304470 +astro-ph/0304471 +astro-ph/0304472 +astro-ph/0304473 +astro-ph/0304474 +astro-ph/0304475 +astro-ph/0304476 +astro-ph/0304477 +astro-ph/0304479 +astro-ph/0304481 +astro-ph/0304484 +astro-ph/0304485 +astro-ph/0304486 +astro-ph/0304490 +astro-ph/0304492 +astro-ph/0304495 +astro-ph/0304496 +astro-ph/0304498 +astro-ph/0304499 +astro-ph/0304500 +astro-ph/0304501 +astro-ph/0304502 +astro-ph/0304503 +astro-ph/0304504 +astro-ph/0304505 +astro-ph/0304506 +astro-ph/0304508 +astro-ph/0304509 +astro-ph/0304510 +astro-ph/0304512 +astro-ph/0304513 +astro-ph/0304516 +astro-ph/0304517 +astro-ph/0304519 +astro-ph/0304521 +astro-ph/0304522 +astro-ph/0304523 +astro-ph/0304524 +astro-ph/0304526 +astro-ph/0304527 +astro-ph/0304530 +astro-ph/0304531 +astro-ph/0304532 +astro-ph/0304534 +astro-ph/0304535 +astro-ph/0304537 +astro-ph/0304538 +astro-ph/0304539 +astro-ph/0304540 +astro-ph/0304542 +astro-ph/0304543 +astro-ph/0304546 +astro-ph/0304547 +astro-ph/0304548 +astro-ph/0304549 +astro-ph/0304550 +astro-ph/0304551 +astro-ph/0304552 +astro-ph/0304553 +astro-ph/0304554 +astro-ph/0304555 +astro-ph/0304556 +astro-ph/0304557 +astro-ph/0304558 +astro-ph/0304559 +astro-ph/0304560 +astro-ph/0304561 +astro-ph/0304562 +astro-ph/0304563 +astro-ph/0304565 +astro-ph/0305002 +astro-ph/0305003 +astro-ph/0305006 +astro-ph/0305007 +astro-ph/0305014 +astro-ph/0305015 +astro-ph/0305018 +astro-ph/0305020 +astro-ph/0305026 +astro-ph/0305027 +astro-ph/0305028 +astro-ph/0305030 +astro-ph/0305031 +astro-ph/0305039 +astro-ph/0305040 +astro-ph/0305043 +astro-ph/0305044 +astro-ph/0305045 +astro-ph/0305046 +astro-ph/0305048 +astro-ph/0305049 +astro-ph/0305050 +astro-ph/0305053 +astro-ph/0305054 +astro-ph/0305055 +astro-ph/0305057 +astro-ph/0305058 +astro-ph/0305059 +astro-ph/0305061 +astro-ph/0305062 +astro-ph/0305064 +astro-ph/0305065 +astro-ph/0305067 +astro-ph/0305070 +astro-ph/0305071 +astro-ph/0305072 +astro-ph/0305073 +astro-ph/0305074 +astro-ph/0305077 +astro-ph/0305078 +astro-ph/0305079 +astro-ph/0305080 +astro-ph/0305081 +astro-ph/0305082 +astro-ph/0305085 +astro-ph/0305086 +astro-ph/0305087 +astro-ph/0305091 +astro-ph/0305092 +astro-ph/0305096 +astro-ph/0305098 +astro-ph/0305100 +astro-ph/0305103 +astro-ph/0305104 +astro-ph/0305105 +astro-ph/0305106 +astro-ph/0305108 +astro-ph/0305110 +astro-ph/0305114 +astro-ph/0305115 +astro-ph/0305116 +astro-ph/0305119 +astro-ph/0305120 +astro-ph/0305121 +astro-ph/0305122 +astro-ph/0305123 +astro-ph/0305124 +astro-ph/0305128 +astro-ph/0305129 +astro-ph/0305130 +astro-ph/0305132 +astro-ph/0305133 +astro-ph/0305134 +astro-ph/0305135 +astro-ph/0305136 +astro-ph/0305137 +astro-ph/0305138 +astro-ph/0305142 +astro-ph/0305145 +astro-ph/0305146 +astro-ph/0305147 +astro-ph/0305148 +astro-ph/0305149 +astro-ph/0305152 +astro-ph/0305154 +astro-ph/0305157 +astro-ph/0305159 +astro-ph/0305160 +astro-ph/0305161 +astro-ph/0305163 +astro-ph/0305165 +astro-ph/0305167 +astro-ph/0305168 +astro-ph/0305169 +astro-ph/0305171 +astro-ph/0305173 +astro-ph/0305176 +astro-ph/0305178 +astro-ph/0305181 +astro-ph/0305182 +astro-ph/0305183 +astro-ph/0305186 +astro-ph/0305187 +astro-ph/0305189 +astro-ph/0305190 +astro-ph/0305192 +astro-ph/0305193 +astro-ph/0305194 +astro-ph/0305195 +astro-ph/0305197 +astro-ph/0305198 +astro-ph/0305200 +astro-ph/0305201 +astro-ph/0305203 +astro-ph/0305205 +astro-ph/0305207 +astro-ph/0305210 +astro-ph/0305212 +astro-ph/0305213 +astro-ph/0305215 +astro-ph/0305217 +astro-ph/0305218 +astro-ph/0305219 +astro-ph/0305221 +astro-ph/0305222 +astro-ph/0305223 +astro-ph/0305224 +astro-ph/0305225 +astro-ph/0305226 +astro-ph/0305228 +astro-ph/0305230 +astro-ph/0305232 +astro-ph/0305234 +astro-ph/0305235 +astro-ph/0305236 +astro-ph/0305237 +astro-ph/0305239 +astro-ph/0305240 +astro-ph/0305241 +astro-ph/0305244 +astro-ph/0305246 +astro-ph/0305247 +astro-ph/0305248 +astro-ph/0305249 +astro-ph/0305252 +astro-ph/0305253 +astro-ph/0305255 +astro-ph/0305256 +astro-ph/0305259 +astro-ph/0305263 +astro-ph/0305264 +astro-ph/0305265 +astro-ph/0305266 +astro-ph/0305269 +astro-ph/0305270 +astro-ph/0305274 +astro-ph/0305277 +astro-ph/0305279 +astro-ph/0305282 +astro-ph/0305283 +astro-ph/0305286 +astro-ph/0305287 +astro-ph/0305288 +astro-ph/0305289 +astro-ph/0305290 +astro-ph/0305291 +astro-ph/0305293 +astro-ph/0305294 +astro-ph/0305295 +astro-ph/0305296 +astro-ph/0305297 +astro-ph/0305298 +astro-ph/0305299 +astro-ph/0305300 +astro-ph/0305301 +astro-ph/0305303 +astro-ph/0305305 +astro-ph/0305306 +astro-ph/0305307 +astro-ph/0305309 +astro-ph/0305311 +astro-ph/0305312 +astro-ph/0305313 +astro-ph/0305314 +astro-ph/0305315 +astro-ph/0305316 +astro-ph/0305317 +astro-ph/0305318 +astro-ph/0305319 +astro-ph/0305320 +astro-ph/0305321 +astro-ph/0305322 +astro-ph/0305326 +astro-ph/0305327 +astro-ph/0305328 +astro-ph/0305330 +astro-ph/0305331 +astro-ph/0305333 +astro-ph/0305334 +astro-ph/0305337 +astro-ph/0305339 +astro-ph/0305340 +astro-ph/0305342 +astro-ph/0305343 +astro-ph/0305344 +astro-ph/0305346 +astro-ph/0305347 +astro-ph/0305348 +astro-ph/0305349 +astro-ph/0305357 +astro-ph/0305358 +astro-ph/0305360 +astro-ph/0305362 +astro-ph/0305365 +astro-ph/0305366 +astro-ph/0305367 +astro-ph/0305369 +astro-ph/0305370 +astro-ph/0305371 +astro-ph/0305372 +astro-ph/0305373 +astro-ph/0305374 +astro-ph/0305375 +astro-ph/0305376 +astro-ph/0305378 +astro-ph/0305379 +astro-ph/0305381 +astro-ph/0305382 +astro-ph/0305383 +astro-ph/0305384 +astro-ph/0305385 +astro-ph/0305386 +astro-ph/0305387 +astro-ph/0305394 +astro-ph/0305395 +astro-ph/0305397 +astro-ph/0305398 +astro-ph/0305400 +astro-ph/0305401 +astro-ph/0305402 +astro-ph/0305406 +astro-ph/0305407 +astro-ph/0305408 +astro-ph/0305409 +astro-ph/0305410 +astro-ph/0305411 +astro-ph/0305413 +astro-ph/0305414 +astro-ph/0305417 +astro-ph/0305420 +astro-ph/0305421 +astro-ph/0305422 +astro-ph/0305423 +astro-ph/0305425 +astro-ph/0305426 +astro-ph/0305427 +astro-ph/0305428 +astro-ph/0305430 +astro-ph/0305431 +astro-ph/0305432 +astro-ph/0305433 +astro-ph/0305434 +astro-ph/0305438 +astro-ph/0305442 +astro-ph/0305443 +astro-ph/0305444 +astro-ph/0305445 +astro-ph/0305446 +astro-ph/0305450 +astro-ph/0305452 +astro-ph/0305453 +astro-ph/0305456 +astro-ph/0305459 +astro-ph/0305460 +astro-ph/0305461 +astro-ph/0305462 +astro-ph/0305463 +astro-ph/0305464 +astro-ph/0305466 +astro-ph/0305468 +astro-ph/0305469 +astro-ph/0305470 +astro-ph/0305472 +astro-ph/0305473 +astro-ph/0305475 +astro-ph/0305477 +astro-ph/0305478 +astro-ph/0305480 +astro-ph/0305481 +astro-ph/0305483 +astro-ph/0305484 +astro-ph/0305486 +astro-ph/0305489 +astro-ph/0305490 +astro-ph/0305491 +astro-ph/0305493 +astro-ph/0305494 +astro-ph/0305495 +astro-ph/0305497 +astro-ph/0305498 +astro-ph/0305499 +astro-ph/0305504 +astro-ph/0305505 +astro-ph/0305508 +astro-ph/0305509 +astro-ph/0305511 +astro-ph/0305514 +astro-ph/0305515 +astro-ph/0305516 +astro-ph/0305517 +astro-ph/0305518 +astro-ph/0305519 +astro-ph/0305520 +astro-ph/0305521 +astro-ph/0305524 +astro-ph/0305530 +astro-ph/0305531 +astro-ph/0305535 +astro-ph/0305536 +astro-ph/0305537 +astro-ph/0305538 +astro-ph/0305539 +astro-ph/0305540 +astro-ph/0305543 +astro-ph/0305544 +astro-ph/0305545 +astro-ph/0305547 +astro-ph/0305549 +astro-ph/0305550 +astro-ph/0305551 +astro-ph/0305552 +astro-ph/0305554 +astro-ph/0305555 +astro-ph/0305556 +astro-ph/0305557 +astro-ph/0305559 +astro-ph/0305563 +astro-ph/0305564 +astro-ph/0305565 +astro-ph/0305568 +astro-ph/0305569 +astro-ph/0305571 +astro-ph/0305572 +astro-ph/0305574 +astro-ph/0305585 +astro-ph/0305586 +astro-ph/0305587 +astro-ph/0305589 +astro-ph/0305594 +astro-ph/0305596 +astro-ph/0305598 +astro-ph/0305599 +astro-ph/0305600 +astro-ph/0305601 +astro-ph/0305602 +astro-ph/0305604 +astro-ph/0305605 +astro-ph/0305606 +astro-ph/0306001 +astro-ph/0306004 +astro-ph/0306005 +astro-ph/0306008 +astro-ph/0306009 +astro-ph/0306012 +astro-ph/0306015 +astro-ph/0306020 +astro-ph/0306022 +astro-ph/0306029 +astro-ph/0306030 +astro-ph/0306035 +astro-ph/0306036 +astro-ph/0306039 +astro-ph/0306043 +astro-ph/0306045 +astro-ph/0306049 +astro-ph/0306050 +astro-ph/0306054 +astro-ph/0306056 +astro-ph/0306057 +astro-ph/0306058 +astro-ph/0306059 +astro-ph/0306061 +astro-ph/0306062 +astro-ph/0306063 +astro-ph/0306064 +astro-ph/0306065 +astro-ph/0306066 +astro-ph/0306067 +astro-ph/0306069 +astro-ph/0306070 +astro-ph/0306071 +astro-ph/0306072 +astro-ph/0306074 +astro-ph/0306076 +astro-ph/0306077 +astro-ph/0306080 +astro-ph/0306081 +astro-ph/0306082 +astro-ph/0306083 +astro-ph/0306084 +astro-ph/0306085 +astro-ph/0306086 +astro-ph/0306088 +astro-ph/0306091 +astro-ph/0306092 +astro-ph/0306093 +astro-ph/0306095 +astro-ph/0306097 +astro-ph/0306099 +astro-ph/0306101 +astro-ph/0306102 +astro-ph/0306103 +astro-ph/0306105 +astro-ph/0306106 +astro-ph/0306108 +astro-ph/0306109 +astro-ph/0306110 +astro-ph/0306111 +astro-ph/0306112 +astro-ph/0306113 +astro-ph/0306115 +astro-ph/0306116 +astro-ph/0306119 +astro-ph/0306120 +astro-ph/0306121 +astro-ph/0306125 +astro-ph/0306126 +astro-ph/0306127 +astro-ph/0306128 +astro-ph/0306129 +astro-ph/0306138 +astro-ph/0306141 +astro-ph/0306142 +astro-ph/0306144 +astro-ph/0306148 +astro-ph/0306149 +astro-ph/0306150 +astro-ph/0306152 +astro-ph/0306154 +astro-ph/0306155 +astro-ph/0306156 +astro-ph/0306157 +astro-ph/0306158 +astro-ph/0306159 +astro-ph/0306160 +astro-ph/0306162 +astro-ph/0306163 +astro-ph/0306164 +astro-ph/0306165 +astro-ph/0306166 +astro-ph/0306167 +astro-ph/0306168 +astro-ph/0306169 +astro-ph/0306170 +astro-ph/0306171 +astro-ph/0306172 +astro-ph/0306173 +astro-ph/0306174 +astro-ph/0306175 +astro-ph/0306176 +astro-ph/0306178 +astro-ph/0306180 +astro-ph/0306182 +astro-ph/0306184 +astro-ph/0306186 +astro-ph/0306188 +astro-ph/0306191 +astro-ph/0306192 +astro-ph/0306196 +astro-ph/0306198 +astro-ph/0306199 +astro-ph/0306200 +astro-ph/0306201 +astro-ph/0306202 +astro-ph/0306203 +astro-ph/0306204 +astro-ph/0306206 +astro-ph/0306210 +astro-ph/0306211 +astro-ph/0306212 +astro-ph/0306214 +astro-ph/0306216 +astro-ph/0306217 +astro-ph/0306218 +astro-ph/0306220 +astro-ph/0306222 +astro-ph/0306223 +astro-ph/0306225 +astro-ph/0306228 +astro-ph/0306229 +astro-ph/0306230 +astro-ph/0306231 +astro-ph/0306232 +astro-ph/0306234 +astro-ph/0306237 +astro-ph/0306238 +astro-ph/0306241 +astro-ph/0306244 +astro-ph/0306245 +astro-ph/0306246 +astro-ph/0306248 +astro-ph/0306249 +astro-ph/0306250 +astro-ph/0306251 +astro-ph/0306252 +astro-ph/0306254 +astro-ph/0306255 +astro-ph/0306256 +astro-ph/0306257 +astro-ph/0306258 +astro-ph/0306260 +astro-ph/0306262 +astro-ph/0306264 +astro-ph/0306267 +astro-ph/0306268 +astro-ph/0306269 +astro-ph/0306271 +astro-ph/0306273 +astro-ph/0306279 +astro-ph/0306281 +astro-ph/0306283 +astro-ph/0306286 +astro-ph/0306287 +astro-ph/0306288 +astro-ph/0306289 +astro-ph/0306290 +astro-ph/0306292 +astro-ph/0306294 +astro-ph/0306295 +astro-ph/0306297 +astro-ph/0306299 +astro-ph/0306300 +astro-ph/0306302 +astro-ph/0306303 +astro-ph/0306304 +astro-ph/0306305 +astro-ph/0306306 +astro-ph/0306307 +astro-ph/0306308 +astro-ph/0306309 +astro-ph/0306310 +astro-ph/0306311 +astro-ph/0306314 +astro-ph/0306315 +astro-ph/0306316 +astro-ph/0306317 +astro-ph/0306318 +astro-ph/0306319 +astro-ph/0306320 +astro-ph/0306321 +astro-ph/0306322 +astro-ph/0306323 +astro-ph/0306326 +astro-ph/0306328 +astro-ph/0306329 +astro-ph/0306330 +astro-ph/0306331 +astro-ph/0306332 +astro-ph/0306334 +astro-ph/0306335 +astro-ph/0306336 +astro-ph/0306338 +astro-ph/0306339 +astro-ph/0306341 +astro-ph/0306343 +astro-ph/0306348 +astro-ph/0306350 +astro-ph/0306351 +astro-ph/0306355 +cond-mat/0101001 Statistical Mechanics +cond-mat/0101002 Mesoscale and Nanoscale Physics +cond-mat/0101005 +cond-mat/0101007 Strongly Correlated Electrons +cond-mat/0101010 +cond-mat/0101012 Statistical Mechanics +cond-mat/0101013 Statistical Mechanics +cond-mat/0101014 +cond-mat/0101015 Soft Condensed Matter +cond-mat/0101017 Mesoscale and Nanoscale Physics +cond-mat/0101018 +cond-mat/0101019 Mesoscale and Nanoscale Physics +cond-mat/0101021 Mesoscale and Nanoscale Physics +cond-mat/0101024 Statistical Mechanics +cond-mat/0101025 Mesoscale and Nanoscale Physics +cond-mat/0101027 Superconductivity +cond-mat/0101028 Superconductivity +cond-mat/0101030 +cond-mat/0101034 Mesoscale and Nanoscale Physics +cond-mat/0101035 Statistical Mechanics +cond-mat/0101036 Superconductivity +cond-mat/0101037 +cond-mat/0101038 Disordered Systems and Neural Networks +cond-mat/0101039 Statistical Mechanics +cond-mat/0101042 Soft Condensed Matter +cond-mat/0101045 Mesoscale and Nanoscale Physics +cond-mat/0101047 Strongly Correlated Electrons +cond-mat/0101049 Soft Condensed Matter +cond-mat/0101050 Materials Science +cond-mat/0101051 Statistical Mechanics +cond-mat/0101052 +cond-mat/0101054 Statistical Mechanics +cond-mat/0101055 Statistical Mechanics +cond-mat/0101056 Soft Condensed Matter +cond-mat/0101057 +cond-mat/0101058 Soft Condensed Matter +cond-mat/0101061 Strongly Correlated Electrons +cond-mat/0101062 Strongly Correlated Electrons +cond-mat/0101063 Strongly Correlated Electrons +cond-mat/0101065 +cond-mat/0101066 Strongly Correlated Electrons +cond-mat/0101067 Statistical Mechanics +cond-mat/0101068 Statistical Mechanics +cond-mat/0101069 +cond-mat/0101071 Statistical Mechanics +cond-mat/0101072 +cond-mat/0101073 Mesoscale and Nanoscale Physics +cond-mat/0101075 Mesoscale and Nanoscale Physics +cond-mat/0101077 Strongly Correlated Electrons +cond-mat/0101080 Superconductivity +cond-mat/0101081 Mesoscale and Nanoscale Physics +cond-mat/0101082 Strongly Correlated Electrons +cond-mat/0101089 +cond-mat/0101090 Materials Science +cond-mat/0101091 Statistical Mechanics +cond-mat/0101093 Disordered Systems and Neural Networks +cond-mat/0101094 Superconductivity +cond-mat/0101095 Superconductivity +cond-mat/0101096 Materials Science +cond-mat/0101097 +cond-mat/0101099 Strongly Correlated Electrons +cond-mat/0101100 Disordered Systems and Neural Networks +cond-mat/0101101 Strongly Correlated Electrons +cond-mat/0101102 Mesoscale and Nanoscale Physics +cond-mat/0101105 Strongly Correlated Electrons +cond-mat/0101107 Mesoscale and Nanoscale Physics +cond-mat/0101108 Statistical Mechanics +cond-mat/0101109 Soft Condensed Matter +cond-mat/0101110 Statistical Mechanics +cond-mat/0101111 Superconductivity +cond-mat/0101114 Disordered Systems and Neural Networks +cond-mat/0101116 Disordered Systems and Neural Networks +cond-mat/0101117 Statistical Mechanics +cond-mat/0101118 Soft Condensed Matter +cond-mat/0101121 Superconductivity +cond-mat/0101122 Mesoscale and Nanoscale Physics +cond-mat/0101123 Statistical Mechanics +cond-mat/0101125 Statistical Mechanics +cond-mat/0101126 Strongly Correlated Electrons +cond-mat/0101127 Statistical Mechanics +cond-mat/0101128 Statistical Mechanics +cond-mat/0101129 +cond-mat/0101130 Statistical Mechanics +cond-mat/0101131 Statistical Mechanics +cond-mat/0101134 Mesoscale and Nanoscale Physics +cond-mat/0101135 Disordered Systems and Neural Networks +cond-mat/0101136 Statistical Mechanics +cond-mat/0101137 Materials Science +cond-mat/0101138 Superconductivity +cond-mat/0101139 Superconductivity +cond-mat/0101140 Soft Condensed Matter +cond-mat/0101141 Strongly Correlated Electrons +cond-mat/0101143 Disordered Systems and Neural Networks +cond-mat/0101145 Strongly Correlated Electrons +cond-mat/0101146 Disordered Systems and Neural Networks +cond-mat/0101148 +cond-mat/0101149 Soft Condensed Matter +cond-mat/0101150 Strongly Correlated Electrons +cond-mat/0101152 Mesoscale and Nanoscale Physics +cond-mat/0101153 Soft Condensed Matter +cond-mat/0101155 Superconductivity +cond-mat/0101157 Mesoscale and Nanoscale Physics +cond-mat/0101158 Soft Condensed Matter +cond-mat/0101161 Statistical Mechanics +cond-mat/0101162 +cond-mat/0101163 Mesoscale and Nanoscale Physics +cond-mat/0101166 Statistical Mechanics +cond-mat/0101167 Statistical Mechanics +cond-mat/0101169 Statistical Mechanics +cond-mat/0101173 Strongly Correlated Electrons +cond-mat/0101174 Strongly Correlated Electrons +cond-mat/0101175 Statistical Mechanics +cond-mat/0101176 Soft Condensed Matter +cond-mat/0101177 Statistical Mechanics +cond-mat/0101180 Soft Condensed Matter +cond-mat/0101181 Statistical Mechanics +cond-mat/0101182 Statistical Mechanics +cond-mat/0101183 Superconductivity +cond-mat/0101187 Superconductivity +cond-mat/0101189 Statistical Mechanics +cond-mat/0101191 Statistical Mechanics +cond-mat/0101192 Statistical Mechanics +cond-mat/0101194 +cond-mat/0101195 Mesoscale and Nanoscale Physics +cond-mat/0101196 Strongly Correlated Electrons +cond-mat/0101198 Statistical Mechanics +cond-mat/0101199 +cond-mat/0101201 Soft Condensed Matter +cond-mat/0101203 Superconductivity +cond-mat/0101204 Superconductivity +cond-mat/0101205 Soft Condensed Matter +cond-mat/0101206 Strongly Correlated Electrons +cond-mat/0101207 Statistical Mechanics +cond-mat/0101208 Superconductivity +cond-mat/0101209 Superconductivity +cond-mat/0101210 Soft Condensed Matter +cond-mat/0101211 Soft Condensed Matter +cond-mat/0101212 Statistical Mechanics +cond-mat/0101213 Soft Condensed Matter +cond-mat/0101214 Strongly Correlated Electrons +cond-mat/0101215 Mesoscale and Nanoscale Physics +cond-mat/0101217 Superconductivity +cond-mat/0101218 Statistical Mechanics +cond-mat/0101220 Superconductivity +cond-mat/0101223 +cond-mat/0101224 Superconductivity +cond-mat/0101225 Statistical Mechanics +cond-mat/0101226 Disordered Systems and Neural Networks +cond-mat/0101228 Statistical Mechanics +cond-mat/0101230 Materials Science +cond-mat/0101232 Statistical Mechanics +cond-mat/0101237 Statistical Mechanics +cond-mat/0101240 Mesoscale and Nanoscale Physics +cond-mat/0101241 Superconductivity +cond-mat/0101242 Disordered Systems and Neural Networks +cond-mat/0101244 Mesoscale and Nanoscale Physics +cond-mat/0101245 Disordered Systems and Neural Networks +cond-mat/0101246 Mesoscale and Nanoscale Physics +cond-mat/0101247 Statistical Mechanics +cond-mat/0101248 Mesoscale and Nanoscale Physics +cond-mat/0101249 Strongly Correlated Electrons +cond-mat/0101250 Soft Condensed Matter +cond-mat/0101251 Superconductivity +cond-mat/0101252 Materials Science +cond-mat/0101254 Statistical Mechanics +cond-mat/0101256 Strongly Correlated Electrons +cond-mat/0101259 Soft Condensed Matter +cond-mat/0101260 Materials Science +cond-mat/0101261 Statistical Mechanics +cond-mat/0101264 Disordered Systems and Neural Networks +cond-mat/0101265 +cond-mat/0101268 Materials Science +cond-mat/0101269 Superconductivity +cond-mat/0101270 Soft Condensed Matter +cond-mat/0101272 Disordered Systems and Neural Networks +cond-mat/0101273 Strongly Correlated Electrons +cond-mat/0101274 Mesoscale and Nanoscale Physics +cond-mat/0101275 +cond-mat/0101276 Strongly Correlated Electrons +cond-mat/0101277 Superconductivity +cond-mat/0101278 Strongly Correlated Electrons +cond-mat/0101280 Strongly Correlated Electrons +cond-mat/0101282 +cond-mat/0101285 Mesoscale and Nanoscale Physics +cond-mat/0101286 Soft Condensed Matter +cond-mat/0101287 Materials Science +cond-mat/0101288 Superconductivity +cond-mat/0101289 Soft Condensed Matter +cond-mat/0101290 Materials Science +cond-mat/0101294 Strongly Correlated Electrons +cond-mat/0101295 Statistical Mechanics +cond-mat/0101297 +cond-mat/0101298 Strongly Correlated Electrons +cond-mat/0101301 Strongly Correlated Electrons +cond-mat/0101302 Strongly Correlated Electrons +cond-mat/0101303 Superconductivity +cond-mat/0101304 Statistical Mechanics +cond-mat/0101305 Statistical Mechanics +cond-mat/0101306 +cond-mat/0101307 Statistical Mechanics +cond-mat/0101309 Disordered Systems and Neural Networks +cond-mat/0101310 +cond-mat/0101311 Statistical Mechanics +cond-mat/0101312 Strongly Correlated Electrons +cond-mat/0101313 Soft Condensed Matter +cond-mat/0101316 Strongly Correlated Electrons +cond-mat/0101317 Disordered Systems and Neural Networks +cond-mat/0101319 Superconductivity +cond-mat/0101320 Superconductivity +cond-mat/0101322 Strongly Correlated Electrons +cond-mat/0101323 Statistical Mechanics +cond-mat/0101324 Statistical Mechanics +cond-mat/0101325 Soft Condensed Matter +cond-mat/0101326 Statistical Mechanics +cond-mat/0101327 Soft Condensed Matter +cond-mat/0101329 Statistical Mechanics +cond-mat/0101331 Mesoscale and Nanoscale Physics +cond-mat/0101332 Strongly Correlated Electrons +cond-mat/0101333 Statistical Mechanics +cond-mat/0101335 Strongly Correlated Electrons +cond-mat/0101337 Disordered Systems and Neural Networks +cond-mat/0101338 Statistical Mechanics +cond-mat/0101340 Statistical Mechanics +cond-mat/0101341 Mesoscale and Nanoscale Physics +cond-mat/0101344 Materials Science +cond-mat/0101345 Mesoscale and Nanoscale Physics +cond-mat/0101346 +cond-mat/0101347 Materials Science +cond-mat/0101349 Statistical Mechanics +cond-mat/0101350 Statistical Mechanics +cond-mat/0101353 Superconductivity +cond-mat/0101354 Strongly Correlated Electrons +cond-mat/0101355 Materials Science +cond-mat/0101356 Soft Condensed Matter +cond-mat/0101357 Materials Science +cond-mat/0101358 Statistical Mechanics +cond-mat/0101359 Mesoscale and Nanoscale Physics +cond-mat/0101363 Materials Science +cond-mat/0101364 Superconductivity +cond-mat/0101365 Disordered Systems and Neural Networks +cond-mat/0101367 Strongly Correlated Electrons +cond-mat/0101368 +cond-mat/0101372 Soft Condensed Matter +cond-mat/0101373 +cond-mat/0101374 Materials Science +cond-mat/0101375 Mesoscale and Nanoscale Physics +cond-mat/0101376 +cond-mat/0101377 Materials Science +cond-mat/0101378 Statistical Mechanics +cond-mat/0101380 Soft Condensed Matter +cond-mat/0101381 Statistical Mechanics +cond-mat/0101382 Statistical Mechanics +cond-mat/0101383 Materials Science +cond-mat/0101385 Statistical Mechanics +cond-mat/0101387 Statistical Mechanics +cond-mat/0101389 Materials Science +cond-mat/0101390 Strongly Correlated Electrons +cond-mat/0101391 +cond-mat/0101393 Soft Condensed Matter +cond-mat/0101395 Soft Condensed Matter +cond-mat/0101396 +cond-mat/0101397 Materials Science +cond-mat/0101398 Strongly Correlated Electrons +cond-mat/0101399 Strongly Correlated Electrons +cond-mat/0101403 Statistical Mechanics +cond-mat/0101404 +cond-mat/0101406 Statistical Mechanics +cond-mat/0101407 Soft Condensed Matter +cond-mat/0101412 Statistical Mechanics +cond-mat/0101415 +cond-mat/0101416 Mesoscale and Nanoscale Physics +cond-mat/0101418 Statistical Mechanics +cond-mat/0101420 Soft Condensed Matter +cond-mat/0101421 Strongly Correlated Electrons +cond-mat/0101423 Strongly Correlated Electrons +cond-mat/0101426 Soft Condensed Matter +cond-mat/0101427 Strongly Correlated Electrons +cond-mat/0101429 Soft Condensed Matter +cond-mat/0101433 Superconductivity +cond-mat/0101434 Superconductivity +cond-mat/0101438 Soft Condensed Matter +cond-mat/0101439 Superconductivity +cond-mat/0101440 Materials Science +cond-mat/0101442 Soft Condensed Matter +cond-mat/0101443 Mesoscale and Nanoscale Physics +cond-mat/0101444 +cond-mat/0101445 Statistical Mechanics +cond-mat/0101446 Superconductivity +cond-mat/0101447 Superconductivity +cond-mat/0101448 Materials Science +cond-mat/0101449 Mesoscale and Nanoscale Physics +cond-mat/0101450 Strongly Correlated Electrons +cond-mat/0101453 +cond-mat/0101455 +cond-mat/0101456 Mesoscale and Nanoscale Physics +cond-mat/0101457 Materials Science +cond-mat/0101458 Strongly Correlated Electrons +cond-mat/0101459 Mesoscale and Nanoscale Physics +cond-mat/0101460 Strongly Correlated Electrons +cond-mat/0101462 Strongly Correlated Electrons +cond-mat/0101463 Superconductivity +cond-mat/0101464 +cond-mat/0101466 +cond-mat/0101467 Soft Condensed Matter +cond-mat/0101472 Disordered Systems and Neural Networks +cond-mat/0101473 Mesoscale and Nanoscale Physics +cond-mat/0101475 Mesoscale and Nanoscale Physics +cond-mat/0101476 Strongly Correlated Electrons +cond-mat/0101477 Materials Science +cond-mat/0101478 +cond-mat/0101479 Statistical Mechanics +cond-mat/0102001 Mesoscale and Nanoscale Physics +cond-mat/0102002 Soft Condensed Matter +cond-mat/0102003 Statistical Mechanics +cond-mat/0102007 Strongly Correlated Electrons +cond-mat/0102008 Disordered Systems and Neural Networks +cond-mat/0102010 Mesoscale and Nanoscale Physics +cond-mat/0102011 Statistical Mechanics +cond-mat/0102012 Superconductivity +cond-mat/0102014 Statistical Mechanics +cond-mat/0102015 Soft Condensed Matter +cond-mat/0102016 Materials Science +cond-mat/0102017 Disordered Systems and Neural Networks +cond-mat/0102018 Soft Condensed Matter +cond-mat/0102021 Superconductivity +cond-mat/0102022 Superconductivity +cond-mat/0102023 Superconductivity +cond-mat/0102024 Materials Science +cond-mat/0102025 Disordered Systems and Neural Networks +cond-mat/0102026 Strongly Correlated Electrons +cond-mat/0102028 Statistical Mechanics +cond-mat/0102029 Statistical Mechanics +cond-mat/0102030 Mesoscale and Nanoscale Physics +cond-mat/0102031 Disordered Systems and Neural Networks +cond-mat/0102033 Materials Science +cond-mat/0102035 Soft Condensed Matter +cond-mat/0102037 +cond-mat/0102038 +cond-mat/0102040 +cond-mat/0102042 Statistical Mechanics +cond-mat/0102043 Statistical Mechanics +cond-mat/0102044 Mesoscale and Nanoscale Physics +cond-mat/0102046 Statistical Mechanics +cond-mat/0102047 Superconductivity +cond-mat/0102048 Superconductivity +cond-mat/0102051 Disordered Systems and Neural Networks +cond-mat/0102053 Superconductivity +cond-mat/0102054 Mesoscale and Nanoscale Physics +cond-mat/0102055 +cond-mat/0102056 Materials Science +cond-mat/0102057 Strongly Correlated Electrons +cond-mat/0102060 Materials Science +cond-mat/0102062 Statistical Mechanics +cond-mat/0102065 Soft Condensed Matter +cond-mat/0102066 Materials Science +cond-mat/0102068 Superconductivity +cond-mat/0102069 +cond-mat/0102073 Strongly Correlated Electrons +cond-mat/0102074 Superconductivity +cond-mat/0102075 Superconductivity +cond-mat/0102077 Disordered Systems and Neural Networks +cond-mat/0102080 Statistical Mechanics +cond-mat/0102081 Superconductivity +cond-mat/0102082 Statistical Mechanics +cond-mat/0102083 Strongly Correlated Electrons +cond-mat/0102086 +cond-mat/0102089 Strongly Correlated Electrons +cond-mat/0102090 Statistical Mechanics +cond-mat/0102091 Statistical Mechanics +cond-mat/0102093 Strongly Correlated Electrons +cond-mat/0102095 Mesoscale and Nanoscale Physics +cond-mat/0102096 Mesoscale and Nanoscale Physics +cond-mat/0102098 Disordered Systems and Neural Networks +cond-mat/0102101 Statistical Mechanics +cond-mat/0102102 Superconductivity +cond-mat/0102103 Strongly Correlated Electrons +cond-mat/0102106 Strongly Correlated Electrons +cond-mat/0102108 +cond-mat/0102109 Strongly Correlated Electrons +cond-mat/0102111 Superconductivity +cond-mat/0102113 Statistical Mechanics +cond-mat/0102114 Superconductivity +cond-mat/0102115 Superconductivity +cond-mat/0102116 Statistical Mechanics +cond-mat/0102119 Strongly Correlated Electrons +cond-mat/0102120 Statistical Mechanics +cond-mat/0102122 Soft Condensed Matter +cond-mat/0102123 Superconductivity +cond-mat/0102124 Mesoscale and Nanoscale Physics +cond-mat/0102126 Soft Condensed Matter +cond-mat/0102127 Disordered Systems and Neural Networks +cond-mat/0102128 Materials Science +cond-mat/0102130 Soft Condensed Matter +cond-mat/0102131 Statistical Mechanics +cond-mat/0102133 Soft Condensed Matter +cond-mat/0102135 Disordered Systems and Neural Networks +cond-mat/0102136 Superconductivity +cond-mat/0102138 Strongly Correlated Electrons +cond-mat/0102139 Strongly Correlated Electrons +cond-mat/0102141 Strongly Correlated Electrons +cond-mat/0102142 Strongly Correlated Electrons +cond-mat/0102143 Superconductivity +cond-mat/0102144 Strongly Correlated Electrons +cond-mat/0102145 Soft Condensed Matter +cond-mat/0102146 Statistical Mechanics +cond-mat/0102147 Strongly Correlated Electrons +cond-mat/0102148 +cond-mat/0102149 Statistical Mechanics +cond-mat/0102150 Mesoscale and Nanoscale Physics +cond-mat/0102151 Statistical Mechanics +cond-mat/0102152 Superconductivity +cond-mat/0102153 Mesoscale and Nanoscale Physics +cond-mat/0102154 Mesoscale and Nanoscale Physics +cond-mat/0102156 Mesoscale and Nanoscale Physics +cond-mat/0102157 +cond-mat/0102158 +cond-mat/0102159 Mesoscale and Nanoscale Physics +cond-mat/0102160 Strongly Correlated Electrons +cond-mat/0102161 Strongly Correlated Electrons +cond-mat/0102163 Strongly Correlated Electrons +cond-mat/0102164 Superconductivity +cond-mat/0102165 +cond-mat/0102166 Statistical Mechanics +cond-mat/0102167 Superconductivity +cond-mat/0102168 Superconductivity +cond-mat/0102169 Statistical Mechanics +cond-mat/0102172 Strongly Correlated Electrons +cond-mat/0102175 Statistical Mechanics +cond-mat/0102177 Statistical Mechanics +cond-mat/0102179 +cond-mat/0102180 Disordered Systems and Neural Networks +cond-mat/0102182 Strongly Correlated Electrons +cond-mat/0102186 Statistical Mechanics +cond-mat/0102187 Statistical Mechanics +cond-mat/0102189 Superconductivity +cond-mat/0102190 Statistical Mechanics +cond-mat/0102191 Mesoscale and Nanoscale Physics +cond-mat/0102192 Superconductivity +cond-mat/0102194 +cond-mat/0102195 +cond-mat/0102196 +cond-mat/0102197 Mesoscale and Nanoscale Physics +cond-mat/0102200 Strongly Correlated Electrons +cond-mat/0102201 Strongly Correlated Electrons +cond-mat/0102202 Statistical Mechanics +cond-mat/0102203 +cond-mat/0102204 Statistical Mechanics +cond-mat/0102205 Strongly Correlated Electrons +cond-mat/0102206 Soft Condensed Matter +cond-mat/0102207 Materials Science +cond-mat/0102208 Statistical Mechanics +cond-mat/0102209 Soft Condensed Matter +cond-mat/0102210 Strongly Correlated Electrons +cond-mat/0102211 Strongly Correlated Electrons +cond-mat/0102214 Statistical Mechanics +cond-mat/0102215 Superconductivity +cond-mat/0102216 Superconductivity +cond-mat/0102218 +cond-mat/0102219 Strongly Correlated Electrons +cond-mat/0102220 Soft Condensed Matter +cond-mat/0102225 Soft Condensed Matter +cond-mat/0102227 Superconductivity +cond-mat/0102228 Mesoscale and Nanoscale Physics +cond-mat/0102229 Strongly Correlated Electrons +cond-mat/0102230 Disordered Systems and Neural Networks +cond-mat/0102231 Mesoscale and Nanoscale Physics +cond-mat/0102232 Superconductivity +cond-mat/0102234 Soft Condensed Matter +cond-mat/0102235 Strongly Correlated Electrons +cond-mat/0102236 Mesoscale and Nanoscale Physics +cond-mat/0102237 Strongly Correlated Electrons +cond-mat/0102238 Statistical Mechanics +cond-mat/0102240 +cond-mat/0102242 Superconductivity +cond-mat/0102248 Disordered Systems and Neural Networks +cond-mat/0102249 Strongly Correlated Electrons +cond-mat/0102250 Statistical Mechanics +cond-mat/0102251 Disordered Systems and Neural Networks +cond-mat/0102253 Soft Condensed Matter +cond-mat/0102255 Statistical Mechanics +cond-mat/0102256 Mesoscale and Nanoscale Physics +cond-mat/0102257 Statistical Mechanics +cond-mat/0102258 Soft Condensed Matter +cond-mat/0102259 Statistical Mechanics +cond-mat/0102264 Superconductivity +cond-mat/0102266 Superconductivity +cond-mat/0102267 Statistical Mechanics +cond-mat/0102270 Statistical Mechanics +cond-mat/0102271 +cond-mat/0102272 Disordered Systems and Neural Networks +cond-mat/0102274 Disordered Systems and Neural Networks +cond-mat/0102275 Strongly Correlated Electrons +cond-mat/0102276 Superconductivity +cond-mat/0102277 Soft Condensed Matter +cond-mat/0102282 Statistical Mechanics +cond-mat/0102283 Statistical Mechanics +cond-mat/0102285 Disordered Systems and Neural Networks +cond-mat/0102289 Superconductivity +cond-mat/0102290 +cond-mat/0102291 +cond-mat/0102292 Strongly Correlated Electrons +cond-mat/0102294 Superconductivity +cond-mat/0102295 Statistical Mechanics +cond-mat/0102303 Strongly Correlated Electrons +cond-mat/0102305 Statistical Mechanics +cond-mat/0102306 Superconductivity +cond-mat/0102307 Materials Science +cond-mat/0102310 +cond-mat/0102312 Superconductivity +cond-mat/0102313 Superconductivity +cond-mat/0102314 Materials Science +cond-mat/0102315 Disordered Systems and Neural Networks +cond-mat/0102317 Statistical Mechanics +cond-mat/0102318 Statistical Mechanics +cond-mat/0102319 Disordered Systems and Neural Networks +cond-mat/0102320 Superconductivity +cond-mat/0102321 Strongly Correlated Electrons +cond-mat/0102323 Superconductivity +cond-mat/0102324 Superconductivity +cond-mat/0102325 Superconductivity +cond-mat/0102326 +cond-mat/0102327 Statistical Mechanics +cond-mat/0102328 Disordered Systems and Neural Networks +cond-mat/0102329 +cond-mat/0102331 Strongly Correlated Electrons +cond-mat/0102333 Strongly Correlated Electrons +cond-mat/0102334 Superconductivity +cond-mat/0102335 Statistical Mechanics +cond-mat/0102336 Statistical Mechanics +cond-mat/0102338 Superconductivity +cond-mat/0102340 Statistical Mechanics +cond-mat/0102341 Mesoscale and Nanoscale Physics +cond-mat/0102342 Strongly Correlated Electrons +cond-mat/0102349 Mesoscale and Nanoscale Physics +cond-mat/0102350 Materials Science +cond-mat/0102352 Disordered Systems and Neural Networks +cond-mat/0102357 +cond-mat/0102359 Soft Condensed Matter +cond-mat/0102360 +cond-mat/0102362 +cond-mat/0102364 +cond-mat/0102365 Strongly Correlated Electrons +cond-mat/0102366 Mesoscale and Nanoscale Physics +cond-mat/0102368 Statistical Mechanics +cond-mat/0102370 +cond-mat/0102372 Mesoscale and Nanoscale Physics +cond-mat/0102373 Materials Science +cond-mat/0102374 Superconductivity +cond-mat/0102376 Materials Science +cond-mat/0102377 Strongly Correlated Electrons +cond-mat/0102378 Statistical Mechanics +cond-mat/0102379 Superconductivity +cond-mat/0102382 Soft Condensed Matter +cond-mat/0102383 Superconductivity +cond-mat/0102384 Disordered Systems and Neural Networks +cond-mat/0102385 Superconductivity +cond-mat/0102386 Superconductivity +cond-mat/0102388 +cond-mat/0102389 Superconductivity +cond-mat/0102391 Superconductivity +cond-mat/0102392 Disordered Systems and Neural Networks +cond-mat/0102394 Mesoscale and Nanoscale Physics +cond-mat/0102395 Statistical Mechanics +cond-mat/0102396 Disordered Systems and Neural Networks +cond-mat/0102397 Statistical Mechanics +cond-mat/0102401 Strongly Correlated Electrons +cond-mat/0102402 Soft Condensed Matter +cond-mat/0102404 Superconductivity +cond-mat/0102405 Strongly Correlated Electrons +cond-mat/0102406 +cond-mat/0102408 Disordered Systems and Neural Networks +cond-mat/0102409 +cond-mat/0102411 Superconductivity +cond-mat/0102412 Statistical Mechanics +cond-mat/0102413 Superconductivity +cond-mat/0102414 Strongly Correlated Electrons +cond-mat/0102415 Mesoscale and Nanoscale Physics +cond-mat/0102416 Soft Condensed Matter +cond-mat/0102417 Statistical Mechanics +cond-mat/0102418 Strongly Correlated Electrons +cond-mat/0102420 Superconductivity +cond-mat/0102422 Superconductivity +cond-mat/0102423 Statistical Mechanics +cond-mat/0102425 Statistical Mechanics +cond-mat/0102427 Strongly Correlated Electrons +cond-mat/0102431 Superconductivity +cond-mat/0102434 Mesoscale and Nanoscale Physics +cond-mat/0102435 Strongly Correlated Electrons +cond-mat/0102436 Superconductivity +cond-mat/0102437 Strongly Correlated Electrons +cond-mat/0102438 Superconductivity +cond-mat/0102439 Superconductivity +cond-mat/0102440 Superconductivity +cond-mat/0102442 +cond-mat/0102446 Mesoscale and Nanoscale Physics +cond-mat/0102447 Strongly Correlated Electrons +cond-mat/0102448 Superconductivity +cond-mat/0102449 Superconductivity +cond-mat/0102450 Disordered Systems and Neural Networks +cond-mat/0102451 Mesoscale and Nanoscale Physics +cond-mat/0102452 Superconductivity +cond-mat/0102454 Strongly Correlated Electrons +cond-mat/0102457 Materials Science +cond-mat/0102461 Superconductivity +cond-mat/0102462 Superconductivity +cond-mat/0102463 Materials Science +cond-mat/0102464 Strongly Correlated Electrons +cond-mat/0102470 Statistical Mechanics +cond-mat/0102471 Strongly Correlated Electrons +cond-mat/0102472 Materials Science +cond-mat/0102473 Mesoscale and Nanoscale Physics +cond-mat/0102474 Superconductivity +cond-mat/0102475 Superconductivity +cond-mat/0102476 Mesoscale and Nanoscale Physics +cond-mat/0102479 Superconductivity +cond-mat/0102480 Materials Science +cond-mat/0102482 Mesoscale and Nanoscale Physics +cond-mat/0102484 Superconductivity +cond-mat/0102486 Mesoscale and Nanoscale Physics +cond-mat/0102487 Superconductivity +cond-mat/0102488 +cond-mat/0102489 Strongly Correlated Electrons +cond-mat/0102490 Statistical Mechanics +cond-mat/0102492 Strongly Correlated Electrons +cond-mat/0102493 +cond-mat/0102494 Statistical Mechanics +cond-mat/0102495 Strongly Correlated Electrons +cond-mat/0102497 Strongly Correlated Electrons +cond-mat/0102499 Superconductivity +cond-mat/0102500 Soft Condensed Matter +cond-mat/0102501 Materials Science +cond-mat/0102504 Mesoscale and Nanoscale Physics +cond-mat/0102505 +cond-mat/0102507 Superconductivity +cond-mat/0102508 Superconductivity +cond-mat/0102509 Mesoscale and Nanoscale Physics +cond-mat/0102511 Materials Science +cond-mat/0102515 Soft Condensed Matter +cond-mat/0102516 Statistical Mechanics +cond-mat/0102518 Statistical Mechanics +cond-mat/0102519 Statistical Mechanics +cond-mat/0102520 Statistical Mechanics +cond-mat/0102522 Superconductivity +cond-mat/0102523 Disordered Systems and Neural Networks +cond-mat/0102524 Strongly Correlated Electrons +cond-mat/0102525 Disordered Systems and Neural Networks +cond-mat/0102526 Materials Science +cond-mat/0102527 Strongly Correlated Electrons +cond-mat/0102528 Statistical Mechanics +cond-mat/0102529 Mesoscale and Nanoscale Physics +cond-mat/0102530 Superconductivity +cond-mat/0102531 Strongly Correlated Electrons +cond-mat/0102532 Mesoscale and Nanoscale Physics +cond-mat/0102533 Strongly Correlated Electrons +cond-mat/0102534 Materials Science +cond-mat/0102536 Strongly Correlated Electrons +cond-mat/0103001 Materials Science +cond-mat/0103003 Statistical Mechanics +cond-mat/0103004 Soft Condensed Matter +cond-mat/0103005 Mesoscale and Nanoscale Physics +cond-mat/0103007 +cond-mat/0103008 Mesoscale and Nanoscale Physics +cond-mat/0103009 +cond-mat/0103011 Strongly Correlated Electrons +cond-mat/0103012 Strongly Correlated Electrons +cond-mat/0103013 Superconductivity +cond-mat/0103014 Statistical Mechanics +cond-mat/0103018 Soft Condensed Matter +cond-mat/0103019 Statistical Mechanics +cond-mat/0103021 Soft Condensed Matter +cond-mat/0103022 Statistical Mechanics +cond-mat/0103023 Strongly Correlated Electrons +cond-mat/0103024 Statistical Mechanics +cond-mat/0103025 Soft Condensed Matter +cond-mat/0103026 Disordered Systems and Neural Networks +cond-mat/0103027 Superconductivity +cond-mat/0103028 Materials Science +cond-mat/0103029 Superconductivity +cond-mat/0103030 Strongly Correlated Electrons +cond-mat/0103031 Materials Science +cond-mat/0103032 Superconductivity +cond-mat/0103034 Strongly Correlated Electrons +cond-mat/0103035 Disordered Systems and Neural Networks +cond-mat/0103036 Statistical Mechanics +cond-mat/0103037 Superconductivity +cond-mat/0103040 Superconductivity +cond-mat/0103041 Statistical Mechanics +cond-mat/0103042 Disordered Systems and Neural Networks +cond-mat/0103043 Disordered Systems and Neural Networks +cond-mat/0103044 Mesoscale and Nanoscale Physics +cond-mat/0103047 Superconductivity +cond-mat/0103048 Superconductivity +cond-mat/0103049 Superconductivity +cond-mat/0103050 Materials Science +cond-mat/0103052 +cond-mat/0103053 Superconductivity +cond-mat/0103054 Strongly Correlated Electrons +cond-mat/0103055 Superconductivity +cond-mat/0103056 Statistical Mechanics +cond-mat/0103058 Superconductivity +cond-mat/0103060 Superconductivity +cond-mat/0103064 Superconductivity +cond-mat/0103067 Strongly Correlated Electrons +cond-mat/0103069 Superconductivity +cond-mat/0103070 +cond-mat/0103071 Disordered Systems and Neural Networks +cond-mat/0103072 Statistical Mechanics +cond-mat/0103073 Mesoscale and Nanoscale Physics +cond-mat/0103075 Mesoscale and Nanoscale Physics +cond-mat/0103076 +cond-mat/0103079 Strongly Correlated Electrons +cond-mat/0103080 Soft Condensed Matter +cond-mat/0103081 Superconductivity +cond-mat/0103085 +cond-mat/0103088 Strongly Correlated Electrons +cond-mat/0103090 Statistical Mechanics +cond-mat/0103093 Mesoscale and Nanoscale Physics +cond-mat/0103094 Materials Science +cond-mat/0103095 Superconductivity +cond-mat/0103097 Soft Condensed Matter +cond-mat/0103098 Mesoscale and Nanoscale Physics +cond-mat/0103099 Superconductivity +cond-mat/0103100 +cond-mat/0103104 Statistical Mechanics +cond-mat/0103105 +cond-mat/0103107 Statistical Mechanics +cond-mat/0103110 Mesoscale and Nanoscale Physics +cond-mat/0103111 Superconductivity +cond-mat/0103112 Statistical Mechanics +cond-mat/0103114 Disordered Systems and Neural Networks +cond-mat/0103115 Statistical Mechanics +cond-mat/0103116 Materials Science +cond-mat/0103117 Statistical Mechanics +cond-mat/0103119 Statistical Mechanics +cond-mat/0103121 +cond-mat/0103123 Statistical Mechanics +cond-mat/0103126 Statistical Mechanics +cond-mat/0103127 Mesoscale and Nanoscale Physics +cond-mat/0103128 Statistical Mechanics +cond-mat/0103129 Statistical Mechanics +cond-mat/0103131 Disordered Systems and Neural Networks +cond-mat/0103133 Statistical Mechanics +cond-mat/0103134 Materials Science +cond-mat/0103135 Superconductivity +cond-mat/0103136 Statistical Mechanics +cond-mat/0103137 +cond-mat/0103138 Materials Science +cond-mat/0103139 Superconductivity +cond-mat/0103140 +cond-mat/0103142 Soft Condensed Matter +cond-mat/0103144 Mesoscale and Nanoscale Physics +cond-mat/0103146 +cond-mat/0103147 Statistical Mechanics +cond-mat/0103148 Strongly Correlated Electrons +cond-mat/0103150 Mesoscale and Nanoscale Physics +cond-mat/0103151 Mesoscale and Nanoscale Physics +cond-mat/0103152 Statistical Mechanics +cond-mat/0103153 Strongly Correlated Electrons +cond-mat/0103155 Strongly Correlated Electrons +cond-mat/0103156 Statistical Mechanics +cond-mat/0103157 Superconductivity +cond-mat/0103158 Statistical Mechanics +cond-mat/0103159 Strongly Correlated Electrons +cond-mat/0103160 Mesoscale and Nanoscale Physics +cond-mat/0103162 Strongly Correlated Electrons +cond-mat/0103163 Superconductivity +cond-mat/0103164 Superconductivity +cond-mat/0103165 Statistical Mechanics +cond-mat/0103167 Superconductivity +cond-mat/0103168 Strongly Correlated Electrons +cond-mat/0103170 Statistical Mechanics +cond-mat/0103172 Strongly Correlated Electrons +cond-mat/0103173 Soft Condensed Matter +cond-mat/0103175 Strongly Correlated Electrons +cond-mat/0103177 Mesoscale and Nanoscale Physics +cond-mat/0103178 Superconductivity +cond-mat/0103180 Materials Science +cond-mat/0103181 Superconductivity +cond-mat/0103182 Materials Science +cond-mat/0103183 Superconductivity +cond-mat/0103184 Strongly Correlated Electrons +cond-mat/0103185 Statistical Mechanics +cond-mat/0103186 +cond-mat/0103187 Statistical Mechanics +cond-mat/0103189 Materials Science +cond-mat/0103190 +cond-mat/0103192 Superconductivity +cond-mat/0103193 Strongly Correlated Electrons +cond-mat/0103195 Superconductivity +cond-mat/0103196 Materials Science +cond-mat/0103197 Statistical Mechanics +cond-mat/0103198 Superconductivity +cond-mat/0103199 Superconductivity +cond-mat/0103200 Disordered Systems and Neural Networks +cond-mat/0103201 Superconductivity +cond-mat/0103202 Strongly Correlated Electrons +cond-mat/0103203 Materials Science +cond-mat/0103204 Soft Condensed Matter +cond-mat/0103206 Soft Condensed Matter +cond-mat/0103207 Soft Condensed Matter +cond-mat/0103208 Soft Condensed Matter +cond-mat/0103210 +cond-mat/0103212 Strongly Correlated Electrons +cond-mat/0103215 Superconductivity +cond-mat/0103216 Materials Science +cond-mat/0103217 Superconductivity +cond-mat/0103220 Statistical Mechanics +cond-mat/0103226 Materials Science +cond-mat/0103228 +cond-mat/0103229 Superconductivity +cond-mat/0103230 Strongly Correlated Electrons +cond-mat/0103231 Strongly Correlated Electrons +cond-mat/0103233 Strongly Correlated Electrons +cond-mat/0103235 Superconductivity +cond-mat/0103237 Superconductivity +cond-mat/0103238 +cond-mat/0103239 Soft Condensed Matter +cond-mat/0103241 Superconductivity +cond-mat/0103242 Statistical Mechanics +cond-mat/0103244 Statistical Mechanics +cond-mat/0103248 Statistical Mechanics +cond-mat/0103249 Superconductivity +cond-mat/0103250 Soft Condensed Matter +cond-mat/0103252 Strongly Correlated Electrons +cond-mat/0103254 Strongly Correlated Electrons +cond-mat/0103257 +cond-mat/0103258 Superconductivity +cond-mat/0103259 Disordered Systems and Neural Networks +cond-mat/0103260 Soft Condensed Matter +cond-mat/0103261 Superconductivity +cond-mat/0103262 Soft Condensed Matter +cond-mat/0103264 Strongly Correlated Electrons +cond-mat/0103265 Mesoscale and Nanoscale Physics +cond-mat/0103266 Statistical Mechanics +cond-mat/0103268 Mesoscale and Nanoscale Physics +cond-mat/0103271 Statistical Mechanics +cond-mat/0103272 +cond-mat/0103273 +cond-mat/0103274 Strongly Correlated Electrons +cond-mat/0103275 Disordered Systems and Neural Networks +cond-mat/0103276 Statistical Mechanics +cond-mat/0103278 Materials Science +cond-mat/0103279 Mesoscale and Nanoscale Physics +cond-mat/0103280 Superconductivity +cond-mat/0103281 +cond-mat/0103282 Superconductivity +cond-mat/0103283 Strongly Correlated Electrons +cond-mat/0103284 Materials Science +cond-mat/0103285 Mesoscale and Nanoscale Physics +cond-mat/0103286 Disordered Systems and Neural Networks +cond-mat/0103287 Superconductivity +cond-mat/0103290 Disordered Systems and Neural Networks +cond-mat/0103292 Disordered Systems and Neural Networks +cond-mat/0103294 +cond-mat/0103295 Mesoscale and Nanoscale Physics +cond-mat/0103296 Superconductivity +cond-mat/0103297 +cond-mat/0103298 Materials Science +cond-mat/0103299 Statistical Mechanics +cond-mat/0103300 Strongly Correlated Electrons +cond-mat/0103303 +cond-mat/0103305 Strongly Correlated Electrons +cond-mat/0103306 +cond-mat/0103308 Strongly Correlated Electrons +cond-mat/0103309 Superconductivity +cond-mat/0103312 Soft Condensed Matter +cond-mat/0103313 Disordered Systems and Neural Networks +cond-mat/0103314 Statistical Mechanics +cond-mat/0103315 Strongly Correlated Electrons +cond-mat/0103316 Strongly Correlated Electrons +cond-mat/0103317 Strongly Correlated Electrons +cond-mat/0103319 Superconductivity +cond-mat/0103320 +cond-mat/0103322 Materials Science +cond-mat/0103325 Statistical Mechanics +cond-mat/0103326 Strongly Correlated Electrons +cond-mat/0103327 Superconductivity +cond-mat/0103328 Disordered Systems and Neural Networks +cond-mat/0103329 Soft Condensed Matter +cond-mat/0103330 Strongly Correlated Electrons +cond-mat/0103331 +cond-mat/0103332 Statistical Mechanics +cond-mat/0103334 Statistical Mechanics +cond-mat/0103335 Materials Science +cond-mat/0103336 Superconductivity +cond-mat/0103337 Statistical Mechanics +cond-mat/0103338 Materials Science +cond-mat/0103340 Materials Science +cond-mat/0103341 Materials Science +cond-mat/0103342 Materials Science +cond-mat/0103343 Mesoscale and Nanoscale Physics +cond-mat/0103345 Statistical Mechanics +cond-mat/0103347 Statistical Mechanics +cond-mat/0103349 Statistical Mechanics +cond-mat/0103351 Materials Science +cond-mat/0103353 Statistical Mechanics +cond-mat/0103354 Materials Science +cond-mat/0103360 Statistical Mechanics +cond-mat/0103361 Disordered Systems and Neural Networks +cond-mat/0103362 +cond-mat/0103364 Statistical Mechanics +cond-mat/0103365 Statistical Mechanics +cond-mat/0103367 Statistical Mechanics +cond-mat/0103369 Superconductivity +cond-mat/0103370 Mesoscale and Nanoscale Physics +cond-mat/0103371 Statistical Mechanics +cond-mat/0103372 Mesoscale and Nanoscale Physics +cond-mat/0103373 Strongly Correlated Electrons +cond-mat/0103374 +cond-mat/0103375 Disordered Systems and Neural Networks +cond-mat/0103376 Mesoscale and Nanoscale Physics +cond-mat/0103378 +cond-mat/0103379 Strongly Correlated Electrons +cond-mat/0103380 Strongly Correlated Electrons +cond-mat/0103381 Superconductivity +cond-mat/0103382 Disordered Systems and Neural Networks +cond-mat/0103384 Materials Science +cond-mat/0103385 Soft Condensed Matter +cond-mat/0103388 Materials Science +cond-mat/0103390 Superconductivity +cond-mat/0103392 Strongly Correlated Electrons +cond-mat/0103393 Strongly Correlated Electrons +cond-mat/0103395 Disordered Systems and Neural Networks +cond-mat/0103397 Statistical Mechanics +cond-mat/0103398 Superconductivity +cond-mat/0103400 +cond-mat/0103401 Mesoscale and Nanoscale Physics +cond-mat/0103402 Superconductivity +cond-mat/0103405 Superconductivity +cond-mat/0103406 Strongly Correlated Electrons +cond-mat/0103407 Superconductivity +cond-mat/0103409 Statistical Mechanics +cond-mat/0103410 Mesoscale and Nanoscale Physics +cond-mat/0103412 Strongly Correlated Electrons +cond-mat/0103414 Disordered Systems and Neural Networks +cond-mat/0103418 Strongly Correlated Electrons +cond-mat/0103419 Strongly Correlated Electrons +cond-mat/0103420 Statistical Mechanics +cond-mat/0103422 Superconductivity +cond-mat/0103423 Statistical Mechanics +cond-mat/0103424 Statistical Mechanics +cond-mat/0103425 Superconductivity +cond-mat/0103427 Statistical Mechanics +cond-mat/0103428 Disordered Systems and Neural Networks +cond-mat/0103429 Soft Condensed Matter +cond-mat/0103430 Strongly Correlated Electrons +cond-mat/0103431 Superconductivity +cond-mat/0103432 Statistical Mechanics +cond-mat/0103433 +cond-mat/0103434 Materials Science +cond-mat/0103435 Superconductivity +cond-mat/0103437 Soft Condensed Matter +cond-mat/0103438 Strongly Correlated Electrons +cond-mat/0103439 Strongly Correlated Electrons +cond-mat/0103440 Soft Condensed Matter +cond-mat/0103442 Mesoscale and Nanoscale Physics +cond-mat/0103444 Statistical Mechanics +cond-mat/0103446 Strongly Correlated Electrons +cond-mat/0103449 Superconductivity +cond-mat/0103450 Disordered Systems and Neural Networks +cond-mat/0103453 Strongly Correlated Electrons +cond-mat/0103454 Mesoscale and Nanoscale Physics +cond-mat/0103455 Materials Science +cond-mat/0103456 Superconductivity +cond-mat/0103457 Strongly Correlated Electrons +cond-mat/0103458 Materials Science +cond-mat/0103460 Mesoscale and Nanoscale Physics +cond-mat/0103463 Strongly Correlated Electrons +cond-mat/0103464 Statistical Mechanics +cond-mat/0103467 Statistical Mechanics +cond-mat/0103468 Statistical Mechanics +cond-mat/0103469 Materials Science +cond-mat/0103471 Strongly Correlated Electrons +cond-mat/0103472 Mesoscale and Nanoscale Physics +cond-mat/0103473 Materials Science +cond-mat/0103475 Materials Science +cond-mat/0103476 Disordered Systems and Neural Networks +cond-mat/0103478 Superconductivity +cond-mat/0103479 Soft Condensed Matter +cond-mat/0103480 Superconductivity +cond-mat/0103481 Mesoscale and Nanoscale Physics +cond-mat/0103483 Materials Science +cond-mat/0103485 Strongly Correlated Electrons +cond-mat/0103486 Mesoscale and Nanoscale Physics +cond-mat/0103487 Superconductivity +cond-mat/0103488 Mesoscale and Nanoscale Physics +cond-mat/0103489 +cond-mat/0103490 Statistical Mechanics +cond-mat/0103492 Strongly Correlated Electrons +cond-mat/0103494 Disordered Systems and Neural Networks +cond-mat/0103495 Soft Condensed Matter +cond-mat/0103497 Statistical Mechanics +cond-mat/0103498 Soft Condensed Matter +cond-mat/0103500 Materials Science +cond-mat/0103501 Superconductivity +cond-mat/0103502 Mesoscale and Nanoscale Physics +cond-mat/0103503 Strongly Correlated Electrons +cond-mat/0103505 Strongly Correlated Electrons +cond-mat/0103507 Superconductivity +cond-mat/0103508 Statistical Mechanics +cond-mat/0103511 Strongly Correlated Electrons +cond-mat/0103512 Superconductivity +cond-mat/0103516 Mesoscale and Nanoscale Physics +cond-mat/0103517 Mesoscale and Nanoscale Physics +cond-mat/0103520 Superconductivity +cond-mat/0103521 Superconductivity +cond-mat/0103522 Soft Condensed Matter +cond-mat/0103523 Superconductivity +cond-mat/0103524 +cond-mat/0103525 Statistical Mechanics +cond-mat/0103526 +cond-mat/0103527 Statistical Mechanics +cond-mat/0103528 +cond-mat/0103529 Superconductivity +cond-mat/0103530 Strongly Correlated Electrons +cond-mat/0103531 Soft Condensed Matter +cond-mat/0103532 +cond-mat/0103534 Disordered Systems and Neural Networks +cond-mat/0103537 Mesoscale and Nanoscale Physics +cond-mat/0103538 Superconductivity +cond-mat/0103539 Materials Science +cond-mat/0103540 +cond-mat/0103541 Strongly Correlated Electrons +cond-mat/0103542 Superconductivity +cond-mat/0103543 Superconductivity +cond-mat/0103545 Disordered Systems and Neural Networks +cond-mat/0103546 Strongly Correlated Electrons +cond-mat/0103547 Statistical Mechanics +cond-mat/0103550 Mesoscale and Nanoscale Physics +cond-mat/0103551 Strongly Correlated Electrons +cond-mat/0103552 Mesoscale and Nanoscale Physics +cond-mat/0103554 +cond-mat/0103558 Strongly Correlated Electrons +cond-mat/0103559 +cond-mat/0103561 Mesoscale and Nanoscale Physics +cond-mat/0103562 Statistical Mechanics +cond-mat/0103563 Superconductivity +cond-mat/0103564 +cond-mat/0103565 Soft Condensed Matter +cond-mat/0103569 Superconductivity +cond-mat/0103570 Superconductivity +cond-mat/0103572 Superconductivity +cond-mat/0103574 Mesoscale and Nanoscale Physics +cond-mat/0103576 Materials Science +cond-mat/0103578 Superconductivity +cond-mat/0103580 Soft Condensed Matter +cond-mat/0103581 Superconductivity +cond-mat/0103582 Statistical Mechanics +cond-mat/0103583 Statistical Mechanics +cond-mat/0103584 Statistical Mechanics +cond-mat/0103585 Disordered Systems and Neural Networks +cond-mat/0103586 Soft Condensed Matter +cond-mat/0103588 Superconductivity +cond-mat/0103589 Mesoscale and Nanoscale Physics +cond-mat/0103591 Statistical Mechanics +cond-mat/0103592 Soft Condensed Matter +cond-mat/0103593 Superconductivity +cond-mat/0103594 Disordered Systems and Neural Networks +cond-mat/0103595 Statistical Mechanics +cond-mat/0103597 +cond-mat/0103598 Statistical Mechanics +cond-mat/0103600 Statistical Mechanics +cond-mat/0103601 Statistical Mechanics +cond-mat/0103602 Soft Condensed Matter +cond-mat/0103603 Statistical Mechanics +cond-mat/0103604 Mesoscale and Nanoscale Physics +cond-mat/0103605 Soft Condensed Matter +cond-mat/0103613 Soft Condensed Matter +cond-mat/0103616 Disordered Systems and Neural Networks +cond-mat/0103618 Superconductivity +cond-mat/0103620 Strongly Correlated Electrons +cond-mat/0103623 Mesoscale and Nanoscale Physics +cond-mat/0103626 Mesoscale and Nanoscale Physics +cond-mat/0103627 Statistical Mechanics +cond-mat/0103629 Statistical Mechanics +cond-mat/0103630 Mesoscale and Nanoscale Physics +cond-mat/0103631 Mesoscale and Nanoscale Physics +cond-mat/0103633 Strongly Correlated Electrons +cond-mat/0103634 Superconductivity +cond-mat/0104001 Statistical Mechanics +cond-mat/0104003 Superconductivity +cond-mat/0104006 Mesoscale and Nanoscale Physics +cond-mat/0104007 Superconductivity +cond-mat/0104011 Statistical Mechanics +cond-mat/0104012 Superconductivity +cond-mat/0104014 Strongly Correlated Electrons +cond-mat/0104016 Statistical Mechanics +cond-mat/0104017 Mesoscale and Nanoscale Physics +cond-mat/0104019 Mesoscale and Nanoscale Physics +cond-mat/0104020 Superconductivity +cond-mat/0104021 Disordered Systems and Neural Networks +cond-mat/0104023 +cond-mat/0104024 +cond-mat/0104028 Statistical Mechanics +cond-mat/0104030 Statistical Mechanics +cond-mat/0104031 Materials Science +cond-mat/0104033 Mesoscale and Nanoscale Physics +cond-mat/0104034 Soft Condensed Matter +cond-mat/0104035 Mesoscale and Nanoscale Physics +cond-mat/0104037 Strongly Correlated Electrons +cond-mat/0104038 Superconductivity +cond-mat/0104039 Mesoscale and Nanoscale Physics +cond-mat/0104041 Superconductivity +cond-mat/0104042 Superconductivity +cond-mat/0104043 Strongly Correlated Electrons +cond-mat/0104045 Mesoscale and Nanoscale Physics +cond-mat/0104046 Statistical Mechanics +cond-mat/0104047 Strongly Correlated Electrons +cond-mat/0104048 Strongly Correlated Electrons +cond-mat/0104049 Mesoscale and Nanoscale Physics +cond-mat/0104051 +cond-mat/0104058 Superconductivity +cond-mat/0104060 Soft Condensed Matter +cond-mat/0104061 +cond-mat/0104062 Soft Condensed Matter +cond-mat/0104063 Superconductivity +cond-mat/0104064 Statistical Mechanics +cond-mat/0104065 Soft Condensed Matter +cond-mat/0104066 Statistical Mechanics +cond-mat/0104067 Strongly Correlated Electrons +cond-mat/0104068 Strongly Correlated Electrons +cond-mat/0104069 Superconductivity +cond-mat/0104071 Strongly Correlated Electrons +cond-mat/0104074 Mesoscale and Nanoscale Physics +cond-mat/0104075 Strongly Correlated Electrons +cond-mat/0104076 Soft Condensed Matter +cond-mat/0104077 Mesoscale and Nanoscale Physics +cond-mat/0104078 Statistical Mechanics +cond-mat/0104079 Disordered Systems and Neural Networks +cond-mat/0104080 Disordered Systems and Neural Networks +cond-mat/0104081 Statistical Mechanics +cond-mat/0104082 Strongly Correlated Electrons +cond-mat/0104083 Disordered Systems and Neural Networks +cond-mat/0104085 Superconductivity +cond-mat/0104086 Superconductivity +cond-mat/0104087 Superconductivity +cond-mat/0104088 Superconductivity +cond-mat/0104089 Superconductivity +cond-mat/0104090 Strongly Correlated Electrons +cond-mat/0104093 +cond-mat/0104095 Superconductivity +cond-mat/0104096 Disordered Systems and Neural Networks +cond-mat/0104097 Superconductivity +cond-mat/0104103 Mesoscale and Nanoscale Physics +cond-mat/0104104 Mesoscale and Nanoscale Physics +cond-mat/0104105 Mesoscale and Nanoscale Physics +cond-mat/0104107 Statistical Mechanics +cond-mat/0104108 Superconductivity +cond-mat/0104109 Mesoscale and Nanoscale Physics +cond-mat/0104111 Disordered Systems and Neural Networks +cond-mat/0104112 Superconductivity +cond-mat/0104113 Superconductivity +cond-mat/0104114 Superconductivity +cond-mat/0104115 +cond-mat/0104117 +cond-mat/0104118 Superconductivity +cond-mat/0104119 +cond-mat/0104120 Strongly Correlated Electrons +cond-mat/0104121 Statistical Mechanics +cond-mat/0104122 Superconductivity +cond-mat/0104123 Superconductivity +cond-mat/0104124 Superconductivity +cond-mat/0104128 Mesoscale and Nanoscale Physics +cond-mat/0104129 Soft Condensed Matter +cond-mat/0104130 Strongly Correlated Electrons +cond-mat/0104131 Statistical Mechanics +cond-mat/0104132 Soft Condensed Matter +cond-mat/0104134 Statistical Mechanics +cond-mat/0104135 Statistical Mechanics +cond-mat/0104136 Strongly Correlated Electrons +cond-mat/0104137 Statistical Mechanics +cond-mat/0104141 Superconductivity +cond-mat/0104143 Strongly Correlated Electrons +cond-mat/0104144 Mesoscale and Nanoscale Physics +cond-mat/0104145 Soft Condensed Matter +cond-mat/0104147 Statistical Mechanics +cond-mat/0104148 Mesoscale and Nanoscale Physics +cond-mat/0104150 Strongly Correlated Electrons +cond-mat/0104151 Mesoscale and Nanoscale Physics +cond-mat/0104152 Superconductivity +cond-mat/0104154 Soft Condensed Matter +cond-mat/0104155 Statistical Mechanics +cond-mat/0104156 Superconductivity +cond-mat/0104157 Materials Science +cond-mat/0104158 Superconductivity +cond-mat/0104159 Soft Condensed Matter +cond-mat/0104162 Soft Condensed Matter +cond-mat/0104163 Superconductivity +cond-mat/0104164 Disordered Systems and Neural Networks +cond-mat/0104169 Statistical Mechanics +cond-mat/0104170 Materials Science +cond-mat/0104171 Materials Science +cond-mat/0104172 Strongly Correlated Electrons +cond-mat/0104175 Statistical Mechanics +cond-mat/0104177 Superconductivity +cond-mat/0104178 Strongly Correlated Electrons +cond-mat/0104179 Strongly Correlated Electrons +cond-mat/0104180 Materials Science +cond-mat/0104183 Statistical Mechanics +cond-mat/0104184 +cond-mat/0104185 Disordered Systems and Neural Networks +cond-mat/0104186 Materials Science +cond-mat/0104189 Materials Science +cond-mat/0104191 Soft Condensed Matter +cond-mat/0104192 Superconductivity +cond-mat/0104193 Superconductivity +cond-mat/0104194 +cond-mat/0104195 Strongly Correlated Electrons +cond-mat/0104197 Statistical Mechanics +cond-mat/0104198 Disordered Systems and Neural Networks +cond-mat/0104200 Mesoscale and Nanoscale Physics +cond-mat/0104202 Disordered Systems and Neural Networks +cond-mat/0104204 Soft Condensed Matter +cond-mat/0104205 Statistical Mechanics +cond-mat/0104206 Superconductivity +cond-mat/0104207 Superconductivity +cond-mat/0104209 Statistical Mechanics +cond-mat/0104212 Disordered Systems and Neural Networks +cond-mat/0104213 Superconductivity +cond-mat/0104214 Statistical Mechanics +cond-mat/0104216 Materials Science +cond-mat/0104217 Mesoscale and Nanoscale Physics +cond-mat/0104222 +cond-mat/0104223 Strongly Correlated Electrons +cond-mat/0104224 Materials Science +cond-mat/0104225 Superconductivity +cond-mat/0104226 Superconductivity +cond-mat/0104228 Soft Condensed Matter +cond-mat/0104229 Strongly Correlated Electrons +cond-mat/0104230 Superconductivity +cond-mat/0104231 Soft Condensed Matter +cond-mat/0104232 Disordered Systems and Neural Networks +cond-mat/0104235 Statistical Mechanics +cond-mat/0104237 Superconductivity +cond-mat/0104238 Mesoscale and Nanoscale Physics +cond-mat/0104239 Superconductivity +cond-mat/0104240 Mesoscale and Nanoscale Physics +cond-mat/0104241 +cond-mat/0104242 Superconductivity +cond-mat/0104243 Mesoscale and Nanoscale Physics +cond-mat/0104244 Statistical Mechanics +cond-mat/0104247 Superconductivity +cond-mat/0104249 Superconductivity +cond-mat/0104251 Superconductivity +cond-mat/0104252 Superconductivity +cond-mat/0104253 Superconductivity +cond-mat/0104254 Disordered Systems and Neural Networks +cond-mat/0104255 Soft Condensed Matter +cond-mat/0104257 Superconductivity +cond-mat/0104258 Strongly Correlated Electrons +cond-mat/0104261 Superconductivity +cond-mat/0104262 Mesoscale and Nanoscale Physics +cond-mat/0104264 Disordered Systems and Neural Networks +cond-mat/0104265 Soft Condensed Matter +cond-mat/0104266 Superconductivity +cond-mat/0104268 Soft Condensed Matter +cond-mat/0104271 Soft Condensed Matter +cond-mat/0104272 Mesoscale and Nanoscale Physics +cond-mat/0104273 Strongly Correlated Electrons +cond-mat/0104274 Strongly Correlated Electrons +cond-mat/0104275 Strongly Correlated Electrons +cond-mat/0104277 Mesoscale and Nanoscale Physics +cond-mat/0104278 Soft Condensed Matter +cond-mat/0104279 Soft Condensed Matter +cond-mat/0104280 Superconductivity +cond-mat/0104281 Mesoscale and Nanoscale Physics +cond-mat/0104282 Materials Science +cond-mat/0104283 Superconductivity +cond-mat/0104284 Statistical Mechanics +cond-mat/0104285 Superconductivity +cond-mat/0104286 Strongly Correlated Electrons +cond-mat/0104287 Strongly Correlated Electrons +cond-mat/0104291 Superconductivity +cond-mat/0104293 Statistical Mechanics +cond-mat/0104299 Disordered Systems and Neural Networks +cond-mat/0104304 Statistical Mechanics +cond-mat/0104306 Materials Science +cond-mat/0104307 Statistical Mechanics +cond-mat/0104308 Strongly Correlated Electrons +cond-mat/0104310 Mesoscale and Nanoscale Physics +cond-mat/0104311 Strongly Correlated Electrons +cond-mat/0104312 Materials Science +cond-mat/0104314 Statistical Mechanics +cond-mat/0104315 Superconductivity +cond-mat/0104316 Strongly Correlated Electrons +cond-mat/0104319 Disordered Systems and Neural Networks +cond-mat/0104322 Statistical Mechanics +cond-mat/0104323 Materials Science +cond-mat/0104324 +cond-mat/0104328 Superconductivity +cond-mat/0104330 Statistical Mechanics +cond-mat/0104331 Strongly Correlated Electrons +cond-mat/0104334 Mesoscale and Nanoscale Physics +cond-mat/0104335 Materials Science +cond-mat/0104336 Strongly Correlated Electrons +cond-mat/0104337 Disordered Systems and Neural Networks +cond-mat/0104338 Disordered Systems and Neural Networks +cond-mat/0104339 Soft Condensed Matter +cond-mat/0104340 Statistical Mechanics +cond-mat/0104341 Statistical Mechanics +cond-mat/0104342 Statistical Mechanics +cond-mat/0104343 Superconductivity +cond-mat/0104344 Soft Condensed Matter +cond-mat/0104345 Superconductivity +cond-mat/0104346 Superconductivity +cond-mat/0104349 Soft Condensed Matter +cond-mat/0104352 Superconductivity +cond-mat/0104353 Strongly Correlated Electrons +cond-mat/0104355 Statistical Mechanics +cond-mat/0104356 Strongly Correlated Electrons +cond-mat/0104357 Statistical Mechanics +cond-mat/0104358 Soft Condensed Matter +cond-mat/0104359 Statistical Mechanics +cond-mat/0104360 Strongly Correlated Electrons +cond-mat/0104365 Statistical Mechanics +cond-mat/0104366 Superconductivity +cond-mat/0104367 Superconductivity +cond-mat/0104368 Strongly Correlated Electrons +cond-mat/0104369 Statistical Mechanics +cond-mat/0104371 Superconductivity +cond-mat/0104372 Superconductivity +cond-mat/0104373 Statistical Mechanics +cond-mat/0104374 Superconductivity +cond-mat/0104375 Strongly Correlated Electrons +cond-mat/0104376 +cond-mat/0104377 Statistical Mechanics +cond-mat/0104378 Statistical Mechanics +cond-mat/0104379 Statistical Mechanics +cond-mat/0104380 Statistical Mechanics +cond-mat/0104381 Materials Science +cond-mat/0104382 Statistical Mechanics +cond-mat/0104384 +cond-mat/0104386 Superconductivity +cond-mat/0104388 Strongly Correlated Electrons +cond-mat/0104389 Strongly Correlated Electrons +cond-mat/0104390 Statistical Mechanics +cond-mat/0104391 +cond-mat/0104395 Superconductivity +cond-mat/0104396 Superconductivity +cond-mat/0104397 Strongly Correlated Electrons +cond-mat/0104399 Disordered Systems and Neural Networks +cond-mat/0104401 Mesoscale and Nanoscale Physics +cond-mat/0104402 Strongly Correlated Electrons +cond-mat/0104403 Disordered Systems and Neural Networks +cond-mat/0104405 Materials Science +cond-mat/0104407 Statistical Mechanics +cond-mat/0104408 Mesoscale and Nanoscale Physics +cond-mat/0104409 Statistical Mechanics +cond-mat/0104410 Statistical Mechanics +cond-mat/0104412 +cond-mat/0104413 Superconductivity +cond-mat/0104414 Soft Condensed Matter +cond-mat/0104416 Materials Science +cond-mat/0104417 Disordered Systems and Neural Networks +cond-mat/0104419 Soft Condensed Matter +cond-mat/0104424 Strongly Correlated Electrons +cond-mat/0104427 Soft Condensed Matter +cond-mat/0104430 Statistical Mechanics +cond-mat/0104431 +cond-mat/0104432 Superconductivity +cond-mat/0104433 Disordered Systems and Neural Networks +cond-mat/0104435 Mesoscale and Nanoscale Physics +cond-mat/0104436 +cond-mat/0104438 Mesoscale and Nanoscale Physics +cond-mat/0104441 Superconductivity +cond-mat/0104442 Mesoscale and Nanoscale Physics +cond-mat/0104443 Superconductivity +cond-mat/0104444 Soft Condensed Matter +cond-mat/0104445 Superconductivity +cond-mat/0104446 Strongly Correlated Electrons +cond-mat/0104447 Strongly Correlated Electrons +cond-mat/0104449 Soft Condensed Matter +cond-mat/0104450 +cond-mat/0104451 Statistical Mechanics +cond-mat/0104452 Materials Science +cond-mat/0104453 Statistical Mechanics +cond-mat/0104455 +cond-mat/0104457 Superconductivity +cond-mat/0104458 +cond-mat/0104461 Mesoscale and Nanoscale Physics +cond-mat/0104462 Mesoscale and Nanoscale Physics +cond-mat/0104465 Strongly Correlated Electrons +cond-mat/0104466 Disordered Systems and Neural Networks +cond-mat/0104467 Disordered Systems and Neural Networks +cond-mat/0104468 Superconductivity +cond-mat/0104470 Statistical Mechanics +cond-mat/0104471 Superconductivity +cond-mat/0104473 Mesoscale and Nanoscale Physics +cond-mat/0104474 Soft Condensed Matter +cond-mat/0104475 Materials Science +cond-mat/0104476 Soft Condensed Matter +cond-mat/0104478 +cond-mat/0104481 Superconductivity +cond-mat/0104482 +cond-mat/0104484 Materials Science +cond-mat/0104486 +cond-mat/0104489 Superconductivity +cond-mat/0104490 Materials Science +cond-mat/0104491 Superconductivity +cond-mat/0104492 Superconductivity +cond-mat/0104493 Superconductivity +cond-mat/0104494 Materials Science +cond-mat/0104496 Strongly Correlated Electrons +cond-mat/0104497 Mesoscale and Nanoscale Physics +cond-mat/0104498 Strongly Correlated Electrons +cond-mat/0104504 +cond-mat/0104505 Statistical Mechanics +cond-mat/0104506 Mesoscale and Nanoscale Physics +cond-mat/0104508 Soft Condensed Matter +cond-mat/0104509 Statistical Mechanics +cond-mat/0104510 Superconductivity +cond-mat/0104512 Strongly Correlated Electrons +cond-mat/0104517 Strongly Correlated Electrons +cond-mat/0104518 Superconductivity +cond-mat/0104520 Strongly Correlated Electrons +cond-mat/0104521 Superconductivity +cond-mat/0104523 +cond-mat/0104524 Statistical Mechanics +cond-mat/0104525 Superconductivity +cond-mat/0104526 Disordered Systems and Neural Networks +cond-mat/0104527 Statistical Mechanics +cond-mat/0104529 Statistical Mechanics +cond-mat/0104531 Superconductivity +cond-mat/0104532 Statistical Mechanics +cond-mat/0104534 Superconductivity +cond-mat/0104535 Strongly Correlated Electrons +cond-mat/0104536 Materials Science +cond-mat/0104537 Statistical Mechanics +cond-mat/0104538 Statistical Mechanics +cond-mat/0104540 Strongly Correlated Electrons +cond-mat/0104541 Superconductivity +cond-mat/0104543 Strongly Correlated Electrons +cond-mat/0104544 Statistical Mechanics +cond-mat/0104545 Mesoscale and Nanoscale Physics +cond-mat/0104546 Statistical Mechanics +cond-mat/0104547 Statistical Mechanics +cond-mat/0104548 Superconductivity +cond-mat/0104550 Soft Condensed Matter +cond-mat/0104553 Mesoscale and Nanoscale Physics +cond-mat/0104554 Superconductivity +cond-mat/0104555 Superconductivity +cond-mat/0104557 Superconductivity +cond-mat/0104559 Statistical Mechanics +cond-mat/0104560 Materials Science +cond-mat/0104561 Soft Condensed Matter +cond-mat/0104562 Superconductivity +cond-mat/0104563 Superconductivity +cond-mat/0104564 Mesoscale and Nanoscale Physics +cond-mat/0104566 Statistical Mechanics +cond-mat/0104567 Statistical Mechanics +cond-mat/0104570 Strongly Correlated Electrons +cond-mat/0104571 Statistical Mechanics +cond-mat/0104572 Statistical Mechanics +cond-mat/0104573 +cond-mat/0104574 Superconductivity +cond-mat/0104575 Mesoscale and Nanoscale Physics +cond-mat/0104578 Superconductivity +cond-mat/0104579 Mesoscale and Nanoscale Physics +cond-mat/0104581 Superconductivity +cond-mat/0104583 Strongly Correlated Electrons +cond-mat/0105001 Strongly Correlated Electrons +cond-mat/0105002 Strongly Correlated Electrons +cond-mat/0105003 Strongly Correlated Electrons +cond-mat/0105004 Disordered Systems and Neural Networks +cond-mat/0105005 +cond-mat/0105006 Strongly Correlated Electrons +cond-mat/0105007 Statistical Mechanics +cond-mat/0105008 Disordered Systems and Neural Networks +cond-mat/0105009 Strongly Correlated Electrons +cond-mat/0105011 Superconductivity +cond-mat/0105012 +cond-mat/0105013 Statistical Mechanics +cond-mat/0105016 Superconductivity +cond-mat/0105017 +cond-mat/0105018 Statistical Mechanics +cond-mat/0105019 Statistical Mechanics +cond-mat/0105020 Materials Science +cond-mat/0105021 Strongly Correlated Electrons +cond-mat/0105023 +cond-mat/0105024 Superconductivity +cond-mat/0105025 Mesoscale and Nanoscale Physics +cond-mat/0105028 Strongly Correlated Electrons +cond-mat/0105029 Superconductivity +cond-mat/0105032 Mesoscale and Nanoscale Physics +cond-mat/0105034 Soft Condensed Matter +cond-mat/0105036 +cond-mat/0105037 Statistical Mechanics +cond-mat/0105040 Materials Science +cond-mat/0105041 Statistical Mechanics +cond-mat/0105043 +cond-mat/0105044 Statistical Mechanics +cond-mat/0105046 Statistical Mechanics +cond-mat/0105047 Statistical Mechanics +cond-mat/0105048 Strongly Correlated Electrons +cond-mat/0105049 Mesoscale and Nanoscale Physics +cond-mat/0105050 Mesoscale and Nanoscale Physics +cond-mat/0105053 Superconductivity +cond-mat/0105054 Statistical Mechanics +cond-mat/0105055 Materials Science +cond-mat/0105061 Statistical Mechanics +cond-mat/0105064 Strongly Correlated Electrons +cond-mat/0105066 Mesoscale and Nanoscale Physics +cond-mat/0105069 Statistical Mechanics +cond-mat/0105071 Statistical Mechanics +cond-mat/0105074 Statistical Mechanics +cond-mat/0105075 Soft Condensed Matter +cond-mat/0105076 Disordered Systems and Neural Networks +cond-mat/0105078 Soft Condensed Matter +cond-mat/0105079 Mesoscale and Nanoscale Physics +cond-mat/0105080 Materials Science +cond-mat/0105081 Mesoscale and Nanoscale Physics +cond-mat/0105082 Statistical Mechanics +cond-mat/0105083 Mesoscale and Nanoscale Physics +cond-mat/0105084 Materials Science +cond-mat/0105085 Statistical Mechanics +cond-mat/0105086 Strongly Correlated Electrons +cond-mat/0105087 Strongly Correlated Electrons +cond-mat/0105088 Materials Science +cond-mat/0105089 Statistical Mechanics +cond-mat/0105092 Statistical Mechanics +cond-mat/0105094 Soft Condensed Matter +cond-mat/0105096 Strongly Correlated Electrons +cond-mat/0105098 Statistical Mechanics +cond-mat/0105101 Materials Science +cond-mat/0105102 Soft Condensed Matter +cond-mat/0105105 Soft Condensed Matter +cond-mat/0105106 Mesoscale and Nanoscale Physics +cond-mat/0105107 Materials Science +cond-mat/0105108 Mesoscale and Nanoscale Physics +cond-mat/0105109 Superconductivity +cond-mat/0105110 Statistical Mechanics +cond-mat/0105111 +cond-mat/0105112 Statistical Mechanics +cond-mat/0105113 Mesoscale and Nanoscale Physics +cond-mat/0105115 Statistical Mechanics +cond-mat/0105117 Strongly Correlated Electrons +cond-mat/0105119 +cond-mat/0105120 Mesoscale and Nanoscale Physics +cond-mat/0105121 Statistical Mechanics +cond-mat/0105122 Superconductivity +cond-mat/0105124 +cond-mat/0105129 Statistical Mechanics +cond-mat/0105130 Strongly Correlated Electrons +cond-mat/0105131 Statistical Mechanics +cond-mat/0105134 Materials Science +cond-mat/0105136 Superconductivity +cond-mat/0105137 +cond-mat/0105139 Superconductivity +cond-mat/0105143 Statistical Mechanics +cond-mat/0105144 Mesoscale and Nanoscale Physics +cond-mat/0105145 Materials Science +cond-mat/0105146 Superconductivity +cond-mat/0105147 Statistical Mechanics +cond-mat/0105148 Superconductivity +cond-mat/0105149 Soft Condensed Matter +cond-mat/0105150 Statistical Mechanics +cond-mat/0105151 +cond-mat/0105152 Superconductivity +cond-mat/0105153 Superconductivity +cond-mat/0105154 Strongly Correlated Electrons +cond-mat/0105158 Statistical Mechanics +cond-mat/0105160 Statistical Mechanics +cond-mat/0105161 Statistical Mechanics +cond-mat/0105162 Statistical Mechanics +cond-mat/0105163 Statistical Mechanics +cond-mat/0105165 Strongly Correlated Electrons +cond-mat/0105166 Strongly Correlated Electrons +cond-mat/0105167 Mesoscale and Nanoscale Physics +cond-mat/0105169 Mesoscale and Nanoscale Physics +cond-mat/0105170 Mesoscale and Nanoscale Physics +cond-mat/0105172 Mesoscale and Nanoscale Physics +cond-mat/0105173 +cond-mat/0105174 Mesoscale and Nanoscale Physics +cond-mat/0105175 Strongly Correlated Electrons +cond-mat/0105176 Statistical Mechanics +cond-mat/0105177 Soft Condensed Matter +cond-mat/0105178 +cond-mat/0105179 Soft Condensed Matter +cond-mat/0105180 Superconductivity +cond-mat/0105181 Statistical Mechanics +cond-mat/0105182 +cond-mat/0105185 Strongly Correlated Electrons +cond-mat/0105186 Statistical Mechanics +cond-mat/0105190 +cond-mat/0105192 Strongly Correlated Electrons +cond-mat/0105194 Mesoscale and Nanoscale Physics +cond-mat/0105195 Statistical Mechanics +cond-mat/0105199 Statistical Mechanics +cond-mat/0105200 Strongly Correlated Electrons +cond-mat/0105201 Soft Condensed Matter +cond-mat/0105202 Superconductivity +cond-mat/0105203 Strongly Correlated Electrons +cond-mat/0105205 Mesoscale and Nanoscale Physics +cond-mat/0105206 Strongly Correlated Electrons +cond-mat/0105207 +cond-mat/0105208 Statistical Mechanics +cond-mat/0105210 Materials Science +cond-mat/0105212 Superconductivity +cond-mat/0105213 Soft Condensed Matter +cond-mat/0105214 Statistical Mechanics +cond-mat/0105216 Mesoscale and Nanoscale Physics +cond-mat/0105217 Mesoscale and Nanoscale Physics +cond-mat/0105218 Strongly Correlated Electrons +cond-mat/0105219 Mesoscale and Nanoscale Physics +cond-mat/0105222 Mesoscale and Nanoscale Physics +cond-mat/0105224 Statistical Mechanics +cond-mat/0105225 Soft Condensed Matter +cond-mat/0105226 Soft Condensed Matter +cond-mat/0105227 Materials Science +cond-mat/0105230 Strongly Correlated Electrons +cond-mat/0105231 Materials Science +cond-mat/0105232 Statistical Mechanics +cond-mat/0105234 Statistical Mechanics +cond-mat/0105237 Superconductivity +cond-mat/0105239 Materials Science +cond-mat/0105240 Superconductivity +cond-mat/0105241 Superconductivity +cond-mat/0105243 Mesoscale and Nanoscale Physics +cond-mat/0105246 Strongly Correlated Electrons +cond-mat/0105247 +cond-mat/0105248 Materials Science +cond-mat/0105249 Strongly Correlated Electrons +cond-mat/0105250 Strongly Correlated Electrons +cond-mat/0105252 Mesoscale and Nanoscale Physics +cond-mat/0105254 Superconductivity +cond-mat/0105255 Superconductivity +cond-mat/0105256 Strongly Correlated Electrons +cond-mat/0105258 Disordered Systems and Neural Networks +cond-mat/0105262 Superconductivity +cond-mat/0105263 Mesoscale and Nanoscale Physics +cond-mat/0105264 Materials Science +cond-mat/0105265 Materials Science +cond-mat/0105266 Statistical Mechanics +cond-mat/0105267 Statistical Mechanics +cond-mat/0105269 Statistical Mechanics +cond-mat/0105271 Superconductivity +cond-mat/0105273 Statistical Mechanics +cond-mat/0105274 +cond-mat/0105277 +cond-mat/0105278 Materials Science +cond-mat/0105279 Materials Science +cond-mat/0105281 Mesoscale and Nanoscale Physics +cond-mat/0105283 Soft Condensed Matter +cond-mat/0105287 Superconductivity +cond-mat/0105288 Strongly Correlated Electrons +cond-mat/0105291 Strongly Correlated Electrons +cond-mat/0105292 Superconductivity +cond-mat/0105294 Mesoscale and Nanoscale Physics +cond-mat/0105296 Statistical Mechanics +cond-mat/0105297 Mesoscale and Nanoscale Physics +cond-mat/0105299 Statistical Mechanics +cond-mat/0105300 Mesoscale and Nanoscale Physics +cond-mat/0105303 Disordered Systems and Neural Networks +cond-mat/0105305 Mesoscale and Nanoscale Physics +cond-mat/0105306 Statistical Mechanics +cond-mat/0105307 Disordered Systems and Neural Networks +cond-mat/0105308 Disordered Systems and Neural Networks +cond-mat/0105310 Disordered Systems and Neural Networks +cond-mat/0105311 Superconductivity +cond-mat/0105314 Statistical Mechanics +cond-mat/0105315 Materials Science +cond-mat/0105317 Statistical Mechanics +cond-mat/0105318 +cond-mat/0105320 +cond-mat/0105322 Soft Condensed Matter +cond-mat/0105326 Statistical Mechanics +cond-mat/0105327 Superconductivity +cond-mat/0105328 Statistical Mechanics +cond-mat/0105329 Superconductivity +cond-mat/0105330 Superconductivity +cond-mat/0105332 Superconductivity +cond-mat/0105334 Strongly Correlated Electrons +cond-mat/0105335 Strongly Correlated Electrons +cond-mat/0105336 Strongly Correlated Electrons +cond-mat/0105338 Statistical Mechanics +cond-mat/0105340 +cond-mat/0105342 Superconductivity +cond-mat/0105343 +cond-mat/0105345 Statistical Mechanics +cond-mat/0105346 Statistical Mechanics +cond-mat/0105347 Materials Science +cond-mat/0105349 Superconductivity +cond-mat/0105350 Superconductivity +cond-mat/0105351 Superconductivity +cond-mat/0105352 Disordered Systems and Neural Networks +cond-mat/0105353 +cond-mat/0105355 Statistical Mechanics +cond-mat/0105356 Superconductivity +cond-mat/0105358 Statistical Mechanics +cond-mat/0105359 Statistical Mechanics +cond-mat/0105362 Disordered Systems and Neural Networks +cond-mat/0105363 Superconductivity +cond-mat/0105365 Mesoscale and Nanoscale Physics +cond-mat/0105367 +cond-mat/0105371 Statistical Mechanics +cond-mat/0105374 Statistical Mechanics +cond-mat/0105377 +cond-mat/0105379 Disordered Systems and Neural Networks +cond-mat/0105381 +cond-mat/0105383 Soft Condensed Matter +cond-mat/0105384 Strongly Correlated Electrons +cond-mat/0105385 Statistical Mechanics +cond-mat/0105387 Superconductivity +cond-mat/0105388 Superconductivity +cond-mat/0105389 Superconductivity +cond-mat/0105390 Superconductivity +cond-mat/0105392 Strongly Correlated Electrons +cond-mat/0105393 Disordered Systems and Neural Networks +cond-mat/0105394 Soft Condensed Matter +cond-mat/0105395 Soft Condensed Matter +cond-mat/0105396 Soft Condensed Matter +cond-mat/0105397 Materials Science +cond-mat/0105398 Statistical Mechanics +cond-mat/0105400 Materials Science +cond-mat/0105401 Strongly Correlated Electrons +cond-mat/0105402 Superconductivity +cond-mat/0105403 Mesoscale and Nanoscale Physics +cond-mat/0105406 +cond-mat/0105407 +cond-mat/0105408 Statistical Mechanics +cond-mat/0105410 Soft Condensed Matter +cond-mat/0105411 Strongly Correlated Electrons +cond-mat/0105412 Mesoscale and Nanoscale Physics +cond-mat/0105413 Superconductivity +cond-mat/0105417 Superconductivity +cond-mat/0105418 Superconductivity +cond-mat/0105419 Statistical Mechanics +cond-mat/0105420 Mesoscale and Nanoscale Physics +cond-mat/0105421 +cond-mat/0105422 +cond-mat/0105424 Strongly Correlated Electrons +cond-mat/0105426 +cond-mat/0105427 Mesoscale and Nanoscale Physics +cond-mat/0105429 Superconductivity +cond-mat/0105430 Materials Science +cond-mat/0105431 Strongly Correlated Electrons +cond-mat/0105432 Strongly Correlated Electrons +cond-mat/0105433 Statistical Mechanics +cond-mat/0105434 +cond-mat/0105435 +cond-mat/0105436 Mesoscale and Nanoscale Physics +cond-mat/0105438 Materials Science +cond-mat/0105439 +cond-mat/0105441 Statistical Mechanics +cond-mat/0105442 Disordered Systems and Neural Networks +cond-mat/0105443 Materials Science +cond-mat/0105448 Mesoscale and Nanoscale Physics +cond-mat/0105449 Mesoscale and Nanoscale Physics +cond-mat/0105451 Mesoscale and Nanoscale Physics +cond-mat/0105452 Mesoscale and Nanoscale Physics +cond-mat/0105454 Superconductivity +cond-mat/0105455 Mesoscale and Nanoscale Physics +cond-mat/0105456 Strongly Correlated Electrons +cond-mat/0105457 Strongly Correlated Electrons +cond-mat/0105459 Superconductivity +cond-mat/0105460 Materials Science +cond-mat/0105461 Superconductivity +cond-mat/0105464 Strongly Correlated Electrons +cond-mat/0105465 Statistical Mechanics +cond-mat/0105468 Superconductivity +cond-mat/0105469 Statistical Mechanics +cond-mat/0105470 Superconductivity +cond-mat/0105473 Statistical Mechanics +cond-mat/0105475 Superconductivity +cond-mat/0105478 Superconductivity +cond-mat/0105481 Disordered Systems and Neural Networks +cond-mat/0105482 Materials Science +cond-mat/0105483 Statistical Mechanics +cond-mat/0105486 Superconductivity +cond-mat/0105487 Superconductivity +cond-mat/0105488 Strongly Correlated Electrons +cond-mat/0105490 Strongly Correlated Electrons +cond-mat/0105492 Materials Science +cond-mat/0105494 Soft Condensed Matter +cond-mat/0105497 Soft Condensed Matter +cond-mat/0105498 +cond-mat/0105499 Materials Science +cond-mat/0105501 Disordered Systems and Neural Networks +cond-mat/0105502 Strongly Correlated Electrons +cond-mat/0105503 Statistical Mechanics +cond-mat/0105504 Strongly Correlated Electrons +cond-mat/0105507 Superconductivity +cond-mat/0105508 Superconductivity +cond-mat/0105512 Superconductivity +cond-mat/0105513 Materials Science +cond-mat/0105515 Strongly Correlated Electrons +cond-mat/0105518 Statistical Mechanics +cond-mat/0105522 Statistical Mechanics +cond-mat/0105523 Strongly Correlated Electrons +cond-mat/0105524 Superconductivity +cond-mat/0105525 Statistical Mechanics +cond-mat/0105527 Strongly Correlated Electrons +cond-mat/0105529 +cond-mat/0105530 Strongly Correlated Electrons +cond-mat/0105531 Strongly Correlated Electrons +cond-mat/0105532 Statistical Mechanics +cond-mat/0105533 Mesoscale and Nanoscale Physics +cond-mat/0105534 Soft Condensed Matter +cond-mat/0105535 Superconductivity +cond-mat/0105536 Soft Condensed Matter +cond-mat/0105538 Statistical Mechanics +cond-mat/0105539 Superconductivity +cond-mat/0105541 Materials Science +cond-mat/0105543 Soft Condensed Matter +cond-mat/0105544 Superconductivity +cond-mat/0105545 Superconductivity +cond-mat/0105547 Soft Condensed Matter +cond-mat/0105550 Strongly Correlated Electrons +cond-mat/0105551 Statistical Mechanics +cond-mat/0105552 Mesoscale and Nanoscale Physics +cond-mat/0105555 Materials Science +cond-mat/0105556 Statistical Mechanics +cond-mat/0105557 Strongly Correlated Electrons +cond-mat/0105561 Soft Condensed Matter +cond-mat/0105562 Materials Science +cond-mat/0105563 Superconductivity +cond-mat/0105566 Strongly Correlated Electrons +cond-mat/0105568 Materials Science +cond-mat/0105571 Strongly Correlated Electrons +cond-mat/0105572 Materials Science +cond-mat/0105573 Statistical Mechanics +cond-mat/0105575 Superconductivity +cond-mat/0105577 Superconductivity +cond-mat/0105579 Superconductivity +cond-mat/0105580 Superconductivity +cond-mat/0105582 Strongly Correlated Electrons +cond-mat/0105583 +cond-mat/0105585 +cond-mat/0105588 Statistical Mechanics +cond-mat/0105589 +cond-mat/0105590 Mesoscale and Nanoscale Physics +cond-mat/0105592 Superconductivity +cond-mat/0105594 Statistical Mechanics +cond-mat/0105595 Strongly Correlated Electrons +cond-mat/0105596 Statistical Mechanics +cond-mat/0105599 Statistical Mechanics +cond-mat/0105601 Superconductivity +cond-mat/0105602 Materials Science +cond-mat/0105603 Mesoscale and Nanoscale Physics +cond-mat/0105605 Superconductivity +cond-mat/0105606 +cond-mat/0105608 Statistical Mechanics +cond-mat/0105609 Statistical Mechanics +cond-mat/0105610 +cond-mat/0105611 Statistical Mechanics +cond-mat/0105612 Superconductivity +cond-mat/0105614 +cond-mat/0105615 Statistical Mechanics +cond-mat/0105617 Disordered Systems and Neural Networks +cond-mat/0105618 Materials Science +cond-mat/0105620 Mesoscale and Nanoscale Physics +cond-mat/0105621 Mesoscale and Nanoscale Physics +cond-mat/0105622 Superconductivity +cond-mat/0105623 Mesoscale and Nanoscale Physics +cond-mat/0105625 Mesoscale and Nanoscale Physics +cond-mat/0105626 Mesoscale and Nanoscale Physics +cond-mat/0105627 Superconductivity +cond-mat/0105628 Materials Science +cond-mat/0105629 Strongly Correlated Electrons +cond-mat/0105630 Superconductivity +cond-mat/0106002 Superconductivity +cond-mat/0106003 +cond-mat/0106009 Strongly Correlated Electrons +cond-mat/0106010 Strongly Correlated Electrons +cond-mat/0106011 +cond-mat/0106012 Statistical Mechanics +cond-mat/0106013 Statistical Mechanics +cond-mat/0106014 Superconductivity +cond-mat/0106016 Mesoscale and Nanoscale Physics +cond-mat/0106017 Mesoscale and Nanoscale Physics +cond-mat/0106019 Mesoscale and Nanoscale Physics +cond-mat/0106020 Strongly Correlated Electrons +cond-mat/0106021 Materials Science +cond-mat/0106022 Soft Condensed Matter +cond-mat/0106024 Mesoscale and Nanoscale Physics +cond-mat/0106025 +cond-mat/0106026 Superconductivity +cond-mat/0106027 Soft Condensed Matter +cond-mat/0106028 Statistical Mechanics +cond-mat/0106030 Mesoscale and Nanoscale Physics +cond-mat/0106032 Strongly Correlated Electrons +cond-mat/0106033 Mesoscale and Nanoscale Physics +cond-mat/0106035 Mesoscale and Nanoscale Physics +cond-mat/0106036 Strongly Correlated Electrons +cond-mat/0106037 Strongly Correlated Electrons +cond-mat/0106039 Superconductivity +cond-mat/0106040 Mesoscale and Nanoscale Physics +cond-mat/0106041 Materials Science +cond-mat/0106042 Soft Condensed Matter +cond-mat/0106043 Strongly Correlated Electrons +cond-mat/0106045 Soft Condensed Matter +cond-mat/0106047 Statistical Mechanics +cond-mat/0106050 Mesoscale and Nanoscale Physics +cond-mat/0106051 Materials Science +cond-mat/0106052 Statistical Mechanics +cond-mat/0106053 Disordered Systems and Neural Networks +cond-mat/0106054 Statistical Mechanics +cond-mat/0106055 Strongly Correlated Electrons +cond-mat/0106057 Superconductivity +cond-mat/0106058 Materials Science +cond-mat/0106059 +cond-mat/0106062 Statistical Mechanics +cond-mat/0106063 Superconductivity +cond-mat/0106064 Statistical Mechanics +cond-mat/0106067 Materials Science +cond-mat/0106069 Strongly Correlated Electrons +cond-mat/0106070 Superconductivity +cond-mat/0106071 Mesoscale and Nanoscale Physics +cond-mat/0106072 +cond-mat/0106073 Strongly Correlated Electrons +cond-mat/0106074 Disordered Systems and Neural Networks +cond-mat/0106077 Strongly Correlated Electrons +cond-mat/0106078 Mesoscale and Nanoscale Physics +cond-mat/0106080 Soft Condensed Matter +cond-mat/0106082 Superconductivity +cond-mat/0106083 +cond-mat/0106084 Disordered Systems and Neural Networks +cond-mat/0106085 +cond-mat/0106087 Statistical Mechanics +cond-mat/0106088 +cond-mat/0106090 Strongly Correlated Electrons +cond-mat/0106091 Mesoscale and Nanoscale Physics +cond-mat/0106092 Superconductivity +cond-mat/0106095 Strongly Correlated Electrons +cond-mat/0106097 Disordered Systems and Neural Networks +cond-mat/0106098 Statistical Mechanics +cond-mat/0106099 Mesoscale and Nanoscale Physics +cond-mat/0106101 Statistical Mechanics +cond-mat/0106102 Statistical Mechanics +cond-mat/0106104 Soft Condensed Matter +cond-mat/0106105 Statistical Mechanics +cond-mat/0106106 Strongly Correlated Electrons +cond-mat/0106107 Strongly Correlated Electrons +cond-mat/0106108 Mesoscale and Nanoscale Physics +cond-mat/0106109 Superconductivity +cond-mat/0106110 Statistical Mechanics +cond-mat/0106111 Mesoscale and Nanoscale Physics +cond-mat/0106112 Mesoscale and Nanoscale Physics +cond-mat/0106113 Materials Science +cond-mat/0106114 Statistical Mechanics +cond-mat/0106117 Statistical Mechanics +cond-mat/0106118 Soft Condensed Matter +cond-mat/0106119 Superconductivity +cond-mat/0106120 Soft Condensed Matter +cond-mat/0106121 Superconductivity +cond-mat/0106123 Mesoscale and Nanoscale Physics +cond-mat/0106124 Superconductivity +cond-mat/0106127 Superconductivity +cond-mat/0106128 Superconductivity +cond-mat/0106129 Strongly Correlated Electrons +cond-mat/0106130 Mesoscale and Nanoscale Physics +cond-mat/0106131 Mesoscale and Nanoscale Physics +cond-mat/0106132 Materials Science +cond-mat/0106134 Soft Condensed Matter +cond-mat/0106137 Strongly Correlated Electrons +cond-mat/0106138 Soft Condensed Matter +cond-mat/0106140 +cond-mat/0106141 Statistical Mechanics +cond-mat/0106142 Statistical Mechanics +cond-mat/0106146 Superconductivity +cond-mat/0106150 Statistical Mechanics +cond-mat/0106151 Superconductivity +cond-mat/0106153 Disordered Systems and Neural Networks +cond-mat/0106154 Statistical Mechanics +cond-mat/0106155 Statistical Mechanics +cond-mat/0106158 Mesoscale and Nanoscale Physics +cond-mat/0106161 Superconductivity +cond-mat/0106162 Mesoscale and Nanoscale Physics +cond-mat/0106165 Statistical Mechanics +cond-mat/0106168 Superconductivity +cond-mat/0106169 Superconductivity +cond-mat/0106170 Strongly Correlated Electrons +cond-mat/0106171 Mesoscale and Nanoscale Physics +cond-mat/0106172 Superconductivity +cond-mat/0106174 Statistical Mechanics +cond-mat/0106175 Superconductivity +cond-mat/0106177 Superconductivity +cond-mat/0106179 Statistical Mechanics +cond-mat/0106180 Strongly Correlated Electrons +cond-mat/0106181 Mesoscale and Nanoscale Physics +cond-mat/0106182 Statistical Mechanics +cond-mat/0106183 Strongly Correlated Electrons +cond-mat/0106186 Strongly Correlated Electrons +cond-mat/0106187 Materials Science +cond-mat/0106189 Strongly Correlated Electrons +cond-mat/0106193 Soft Condensed Matter +cond-mat/0106199 Superconductivity +cond-mat/0106200 Strongly Correlated Electrons +cond-mat/0106201 Disordered Systems and Neural Networks +cond-mat/0106203 Statistical Mechanics +cond-mat/0106204 Strongly Correlated Electrons +cond-mat/0106206 Strongly Correlated Electrons +cond-mat/0106207 Strongly Correlated Electrons +cond-mat/0106208 Soft Condensed Matter +cond-mat/0106211 Statistical Mechanics +cond-mat/0106212 Superconductivity +cond-mat/0106213 Strongly Correlated Electrons +cond-mat/0106214 Soft Condensed Matter +cond-mat/0106217 Disordered Systems and Neural Networks +cond-mat/0106218 +cond-mat/0106219 Mesoscale and Nanoscale Physics +cond-mat/0106220 Statistical Mechanics +cond-mat/0106222 Statistical Mechanics +cond-mat/0106224 Statistical Mechanics +cond-mat/0106225 Superconductivity +cond-mat/0106226 Superconductivity +cond-mat/0106228 Soft Condensed Matter +cond-mat/0106229 Mesoscale and Nanoscale Physics +cond-mat/0106230 Materials Science +cond-mat/0106232 +cond-mat/0106233 Superconductivity +cond-mat/0106234 Strongly Correlated Electrons +cond-mat/0106235 Soft Condensed Matter +cond-mat/0106236 Statistical Mechanics +cond-mat/0106238 Mesoscale and Nanoscale Physics +cond-mat/0106239 Superconductivity +cond-mat/0106240 Superconductivity +cond-mat/0106241 Mesoscale and Nanoscale Physics +cond-mat/0106243 Superconductivity +cond-mat/0106245 Disordered Systems and Neural Networks +cond-mat/0106246 Mesoscale and Nanoscale Physics +cond-mat/0106248 +cond-mat/0106250 Superconductivity +cond-mat/0106251 Superconductivity +cond-mat/0106252 Statistical Mechanics +cond-mat/0106253 Strongly Correlated Electrons +cond-mat/0106257 Strongly Correlated Electrons +cond-mat/0106259 Mesoscale and Nanoscale Physics +cond-mat/0106260 Strongly Correlated Electrons +cond-mat/0106261 +cond-mat/0106262 Statistical Mechanics +cond-mat/0106263 Materials Science +cond-mat/0106264 Mesoscale and Nanoscale Physics +cond-mat/0106265 Mesoscale and Nanoscale Physics +cond-mat/0106266 Strongly Correlated Electrons +cond-mat/0106269 Mesoscale and Nanoscale Physics +cond-mat/0106274 Superconductivity +cond-mat/0106276 +cond-mat/0106277 +cond-mat/0106278 Superconductivity +cond-mat/0106281 Disordered Systems and Neural Networks +cond-mat/0106282 Disordered Systems and Neural Networks +cond-mat/0106283 +cond-mat/0106284 Superconductivity +cond-mat/0106285 Strongly Correlated Electrons +cond-mat/0106287 Statistical Mechanics +cond-mat/0106288 Statistical Mechanics +cond-mat/0106291 Soft Condensed Matter +cond-mat/0106292 Strongly Correlated Electrons +cond-mat/0106293 Strongly Correlated Electrons +cond-mat/0106294 Superconductivity +cond-mat/0106295 Strongly Correlated Electrons +cond-mat/0106299 Superconductivity +cond-mat/0106300 Superconductivity +cond-mat/0106301 Soft Condensed Matter +cond-mat/0106303 Materials Science +cond-mat/0106305 Soft Condensed Matter +cond-mat/0106306 Statistical Mechanics +cond-mat/0106309 Statistical Mechanics +cond-mat/0106312 Soft Condensed Matter +cond-mat/0106314 Statistical Mechanics +cond-mat/0106316 Statistical Mechanics +cond-mat/0106321 Superconductivity +cond-mat/0106323 Disordered Systems and Neural Networks +cond-mat/0106325 Disordered Systems and Neural Networks +cond-mat/0106326 Statistical Mechanics +cond-mat/0106327 Superconductivity +cond-mat/0106328 Soft Condensed Matter +cond-mat/0106329 Mesoscale and Nanoscale Physics +cond-mat/0106330 Strongly Correlated Electrons +cond-mat/0106331 Disordered Systems and Neural Networks +cond-mat/0106332 Disordered Systems and Neural Networks +cond-mat/0106336 Strongly Correlated Electrons +cond-mat/0106337 Superconductivity +cond-mat/0106339 Mesoscale and Nanoscale Physics +cond-mat/0106341 Superconductivity +cond-mat/0106342 Superconductivity +cond-mat/0106343 Soft Condensed Matter +cond-mat/0106345 +cond-mat/0106346 Mesoscale and Nanoscale Physics +cond-mat/0106348 Superconductivity +cond-mat/0106349 Statistical Mechanics +cond-mat/0106350 Disordered Systems and Neural Networks +cond-mat/0106352 Soft Condensed Matter +cond-mat/0106354 Statistical Mechanics +cond-mat/0106356 Superconductivity +cond-mat/0106359 Statistical Mechanics +cond-mat/0106363 Soft Condensed Matter +cond-mat/0106364 Mesoscale and Nanoscale Physics +cond-mat/0106365 Statistical Mechanics +cond-mat/0106366 Disordered Systems and Neural Networks +cond-mat/0106367 Superconductivity +cond-mat/0106368 Mesoscale and Nanoscale Physics +cond-mat/0106369 Strongly Correlated Electrons +cond-mat/0106370 Materials Science +cond-mat/0106373 +cond-mat/0106374 Materials Science +cond-mat/0106375 Mesoscale and Nanoscale Physics +cond-mat/0106377 Statistical Mechanics +cond-mat/0106378 Disordered Systems and Neural Networks +cond-mat/0106383 Soft Condensed Matter +cond-mat/0106384 Strongly Correlated Electrons +cond-mat/0106385 Strongly Correlated Electrons +cond-mat/0106386 Mesoscale and Nanoscale Physics +cond-mat/0106387 Mesoscale and Nanoscale Physics +cond-mat/0106388 Superconductivity +cond-mat/0106389 Strongly Correlated Electrons +cond-mat/0106390 Superconductivity +cond-mat/0106395 Strongly Correlated Electrons +cond-mat/0106397 Materials Science +cond-mat/0106398 Mesoscale and Nanoscale Physics +cond-mat/0106399 Superconductivity +cond-mat/0106400 +cond-mat/0106402 Superconductivity +cond-mat/0106403 Superconductivity +cond-mat/0106404 Superconductivity +cond-mat/0106405 Strongly Correlated Electrons +cond-mat/0106407 Superconductivity +cond-mat/0106408 Superconductivity +cond-mat/0106410 Mesoscale and Nanoscale Physics +cond-mat/0106411 Materials Science +cond-mat/0106412 Materials Science +cond-mat/0106414 Soft Condensed Matter +cond-mat/0106415 Soft Condensed Matter +cond-mat/0106419 Strongly Correlated Electrons +cond-mat/0106420 Strongly Correlated Electrons +cond-mat/0106421 Superconductivity +cond-mat/0106422 Statistical Mechanics +cond-mat/0106423 Statistical Mechanics +cond-mat/0106424 Statistical Mechanics +cond-mat/0106425 Superconductivity +cond-mat/0106427 +cond-mat/0106428 Statistical Mechanics +cond-mat/0106429 Statistical Mechanics +cond-mat/0106430 Mesoscale and Nanoscale Physics +cond-mat/0106431 Superconductivity +cond-mat/0106432 Mesoscale and Nanoscale Physics +cond-mat/0106433 Superconductivity +cond-mat/0106434 Mesoscale and Nanoscale Physics +cond-mat/0106436 Materials Science +cond-mat/0106437 Mesoscale and Nanoscale Physics +cond-mat/0106439 Mesoscale and Nanoscale Physics +cond-mat/0106440 Soft Condensed Matter +cond-mat/0106441 Superconductivity +cond-mat/0106443 Statistical Mechanics +cond-mat/0106451 Mesoscale and Nanoscale Physics +cond-mat/0106453 Strongly Correlated Electrons +cond-mat/0106454 Soft Condensed Matter +cond-mat/0106455 Strongly Correlated Electrons +cond-mat/0106456 Strongly Correlated Electrons +cond-mat/0106457 Statistical Mechanics +cond-mat/0106458 Mesoscale and Nanoscale Physics +cond-mat/0106459 Materials Science +cond-mat/0106461 Superconductivity +cond-mat/0106465 Soft Condensed Matter +cond-mat/0106466 Superconductivity +cond-mat/0106467 Strongly Correlated Electrons +cond-mat/0106469 Mesoscale and Nanoscale Physics +cond-mat/0106472 Mesoscale and Nanoscale Physics +cond-mat/0106474 Mesoscale and Nanoscale Physics +cond-mat/0106476 Superconductivity +cond-mat/0106477 Materials Science +cond-mat/0106478 Mesoscale and Nanoscale Physics +cond-mat/0106479 Strongly Correlated Electrons +cond-mat/0106480 Superconductivity +cond-mat/0106482 Statistical Mechanics +cond-mat/0106490 Statistical Mechanics +cond-mat/0106491 Superconductivity +cond-mat/0106494 Statistical Mechanics +cond-mat/0106495 Statistical Mechanics +cond-mat/0106497 Disordered Systems and Neural Networks +cond-mat/0106498 Strongly Correlated Electrons +cond-mat/0106499 Materials Science +cond-mat/0106502 Statistical Mechanics +cond-mat/0106504 Mesoscale and Nanoscale Physics +cond-mat/0106505 Statistical Mechanics +cond-mat/0106506 Disordered Systems and Neural Networks +cond-mat/0106507 Statistical Mechanics +cond-mat/0106508 Statistical Mechanics +cond-mat/0106509 Disordered Systems and Neural Networks +cond-mat/0106510 Superconductivity +cond-mat/0106512 Strongly Correlated Electrons +cond-mat/0106513 Soft Condensed Matter +cond-mat/0106514 Strongly Correlated Electrons +cond-mat/0106517 Statistical Mechanics +cond-mat/0106518 Superconductivity +cond-mat/0106522 Strongly Correlated Electrons +cond-mat/0106525 Statistical Mechanics +cond-mat/0106526 Mesoscale and Nanoscale Physics +cond-mat/0106527 Materials Science +cond-mat/0106529 Mesoscale and Nanoscale Physics +cond-mat/0106530 Materials Science +cond-mat/0106531 Mesoscale and Nanoscale Physics +cond-mat/0106533 Statistical Mechanics +cond-mat/0106534 Materials Science +cond-mat/0106536 Materials Science +cond-mat/0106537 Mesoscale and Nanoscale Physics +cond-mat/0106538 +cond-mat/0106539 +cond-mat/0106541 Materials Science +cond-mat/0106542 Materials Science +cond-mat/0106543 Statistical Mechanics +cond-mat/0106544 Mesoscale and Nanoscale Physics +cond-mat/0106545 Strongly Correlated Electrons +cond-mat/0106547 Soft Condensed Matter +cond-mat/0106548 +cond-mat/0106551 Disordered Systems and Neural Networks +cond-mat/0106552 Materials Science +cond-mat/0106553 Materials Science +cond-mat/0106555 Superconductivity +cond-mat/0106556 Mesoscale and Nanoscale Physics +cond-mat/0106557 +cond-mat/0106558 +cond-mat/0106559 Superconductivity +cond-mat/0106560 Mesoscale and Nanoscale Physics +cond-mat/0106561 Soft Condensed Matter +cond-mat/0106562 Superconductivity +cond-mat/0106563 Strongly Correlated Electrons +cond-mat/0106565 Statistical Mechanics +cond-mat/0106566 Mesoscale and Nanoscale Physics +cond-mat/0106567 Statistical Mechanics +cond-mat/0106568 Materials Science +cond-mat/0106569 Statistical Mechanics +cond-mat/0106572 Soft Condensed Matter +cond-mat/0106577 Superconductivity +cond-mat/0106578 Mesoscale and Nanoscale Physics +cond-mat/0106579 +cond-mat/0106580 Soft Condensed Matter +cond-mat/0106581 Mesoscale and Nanoscale Physics +cond-mat/0106582 Superconductivity +cond-mat/0106583 Superconductivity +cond-mat/0106584 Strongly Correlated Electrons +cond-mat/0106585 Superconductivity +cond-mat/0106586 Strongly Correlated Electrons +cond-mat/0106587 Materials Science +cond-mat/0106588 Strongly Correlated Electrons +cond-mat/0106589 Mesoscale and Nanoscale Physics +cond-mat/0106590 Materials Science +cond-mat/0106591 Strongly Correlated Electrons +cond-mat/0106594 Superconductivity +cond-mat/0106597 Mesoscale and Nanoscale Physics +cond-mat/0106599 Strongly Correlated Electrons +cond-mat/0106600 Strongly Correlated Electrons +cond-mat/0106601 Superconductivity +cond-mat/0106603 Disordered Systems and Neural Networks +cond-mat/0106605 Disordered Systems and Neural Networks +cond-mat/0106607 Statistical Mechanics +cond-mat/0106609 Strongly Correlated Electrons +cond-mat/0106612 Superconductivity +cond-mat/0106613 Statistical Mechanics +cond-mat/0106614 Statistical Mechanics +cond-mat/0106615 Materials Science +cond-mat/0106617 Statistical Mechanics +cond-mat/0106618 Mesoscale and Nanoscale Physics +cond-mat/0106619 Soft Condensed Matter +cond-mat/0106620 Superconductivity +cond-mat/0106622 Mesoscale and Nanoscale Physics +cond-mat/0106628 +cond-mat/0106630 +cond-mat/0106631 Statistical Mechanics +cond-mat/0106632 Disordered Systems and Neural Networks +cond-mat/0106633 Statistical Mechanics +cond-mat/0106634 Soft Condensed Matter +cond-mat/0106635 Disordered Systems and Neural Networks +cond-mat/0106636 Superconductivity +cond-mat/0106638 Strongly Correlated Electrons +cond-mat/0106640 Mesoscale and Nanoscale Physics +cond-mat/0106641 Mesoscale and Nanoscale Physics +cond-mat/0106642 Soft Condensed Matter +cond-mat/0106649 +cond-mat/0106650 +cond-mat/0106651 Strongly Correlated Electrons +cond-mat/0106654 Disordered Systems and Neural Networks +cond-mat/0106655 Strongly Correlated Electrons +cond-mat/0106657 Statistical Mechanics +cond-mat/0107001 Statistical Mechanics +cond-mat/0107003 Superconductivity +cond-mat/0107004 Superconductivity +cond-mat/0107005 +cond-mat/0107006 Statistical Mechanics +cond-mat/0107009 Materials Science +cond-mat/0107011 Superconductivity +cond-mat/0107012 Statistical Mechanics +cond-mat/0107013 Statistical Mechanics +cond-mat/0107014 Mesoscale and Nanoscale Physics +cond-mat/0107015 Mesoscale and Nanoscale Physics +cond-mat/0107016 Mesoscale and Nanoscale Physics +cond-mat/0107017 Superconductivity +cond-mat/0107018 +cond-mat/0107020 Materials Science +cond-mat/0107023 Disordered Systems and Neural Networks +cond-mat/0107025 Mesoscale and Nanoscale Physics +cond-mat/0107026 Strongly Correlated Electrons +cond-mat/0107027 +cond-mat/0107028 +cond-mat/0107030 Soft Condensed Matter +cond-mat/0107031 Superconductivity +cond-mat/0107032 +cond-mat/0107034 Superconductivity +cond-mat/0107035 Statistical Mechanics +cond-mat/0107036 Statistical Mechanics +cond-mat/0107037 Strongly Correlated Electrons +cond-mat/0107038 Mesoscale and Nanoscale Physics +cond-mat/0107039 Soft Condensed Matter +cond-mat/0107040 Strongly Correlated Electrons +cond-mat/0107043 +cond-mat/0107045 Superconductivity +cond-mat/0107046 Strongly Correlated Electrons +cond-mat/0107047 Superconductivity +cond-mat/0107050 Strongly Correlated Electrons +cond-mat/0107051 Statistical Mechanics +cond-mat/0107052 Superconductivity +cond-mat/0107053 Statistical Mechanics +cond-mat/0107054 Soft Condensed Matter +cond-mat/0107055 Materials Science +cond-mat/0107056 Statistical Mechanics +cond-mat/0107057 Superconductivity +cond-mat/0107059 Superconductivity +cond-mat/0107060 Mesoscale and Nanoscale Physics +cond-mat/0107061 Superconductivity +cond-mat/0107064 Soft Condensed Matter +cond-mat/0107065 Statistical Mechanics +cond-mat/0107066 Statistical Mechanics +cond-mat/0107067 Strongly Correlated Electrons +cond-mat/0107068 Strongly Correlated Electrons +cond-mat/0107069 Strongly Correlated Electrons +cond-mat/0107071 Strongly Correlated Electrons +cond-mat/0107073 Superconductivity +cond-mat/0107074 +cond-mat/0107075 Strongly Correlated Electrons +cond-mat/0107077 +cond-mat/0107078 +cond-mat/0107080 Mesoscale and Nanoscale Physics +cond-mat/0107083 Strongly Correlated Electrons +cond-mat/0107084 Mesoscale and Nanoscale Physics +cond-mat/0107085 Strongly Correlated Electrons +cond-mat/0107088 +cond-mat/0107089 Superconductivity +cond-mat/0107090 Superconductivity +cond-mat/0107091 Superconductivity +cond-mat/0107092 Superconductivity +cond-mat/0107093 Disordered Systems and Neural Networks +cond-mat/0107094 Strongly Correlated Electrons +cond-mat/0107096 Superconductivity +cond-mat/0107098 Materials Science +cond-mat/0107101 Superconductivity +cond-mat/0107102 +cond-mat/0107103 +cond-mat/0107104 Mesoscale and Nanoscale Physics +cond-mat/0107105 Strongly Correlated Electrons +cond-mat/0107107 Statistical Mechanics +cond-mat/0107108 Strongly Correlated Electrons +cond-mat/0107109 Superconductivity +cond-mat/0107110 Strongly Correlated Electrons +cond-mat/0107111 Statistical Mechanics +cond-mat/0107113 Superconductivity +cond-mat/0107115 Strongly Correlated Electrons +cond-mat/0107116 +cond-mat/0107120 Mesoscale and Nanoscale Physics +cond-mat/0107121 Materials Science +cond-mat/0107122 Superconductivity +cond-mat/0107125 Superconductivity +cond-mat/0107126 Disordered Systems and Neural Networks +cond-mat/0107127 Materials Science +cond-mat/0107128 Strongly Correlated Electrons +cond-mat/0107129 Statistical Mechanics +cond-mat/0107130 Statistical Mechanics +cond-mat/0107131 +cond-mat/0107132 Strongly Correlated Electrons +cond-mat/0107133 Mesoscale and Nanoscale Physics +cond-mat/0107134 Statistical Mechanics +cond-mat/0107135 Soft Condensed Matter +cond-mat/0107136 Statistical Mechanics +cond-mat/0107137 Strongly Correlated Electrons +cond-mat/0107138 Strongly Correlated Electrons +cond-mat/0107139 Disordered Systems and Neural Networks +cond-mat/0107140 Disordered Systems and Neural Networks +cond-mat/0107141 Disordered Systems and Neural Networks +cond-mat/0107142 Soft Condensed Matter +cond-mat/0107145 Mesoscale and Nanoscale Physics +cond-mat/0107146 Statistical Mechanics +cond-mat/0107147 Mesoscale and Nanoscale Physics +cond-mat/0107148 Soft Condensed Matter +cond-mat/0107151 Disordered Systems and Neural Networks +cond-mat/0107154 Superconductivity +cond-mat/0107157 Disordered Systems and Neural Networks +cond-mat/0107158 Statistical Mechanics +cond-mat/0107159 Strongly Correlated Electrons +cond-mat/0107160 Soft Condensed Matter +cond-mat/0107161 Superconductivity +cond-mat/0107162 Soft Condensed Matter +cond-mat/0107164 Superconductivity +cond-mat/0107166 Mesoscale and Nanoscale Physics +cond-mat/0107167 Statistical Mechanics +cond-mat/0107168 Superconductivity +cond-mat/0107170 Strongly Correlated Electrons +cond-mat/0107173 Statistical Mechanics +cond-mat/0107176 Statistical Mechanics +cond-mat/0107178 Soft Condensed Matter +cond-mat/0107180 Disordered Systems and Neural Networks +cond-mat/0107182 Soft Condensed Matter +cond-mat/0107183 Statistical Mechanics +cond-mat/0107185 Soft Condensed Matter +cond-mat/0107186 Superconductivity +cond-mat/0107187 Superconductivity +cond-mat/0107188 Statistical Mechanics +cond-mat/0107194 Mesoscale and Nanoscale Physics +cond-mat/0107196 Superconductivity +cond-mat/0107197 +cond-mat/0107198 Disordered Systems and Neural Networks +cond-mat/0107200 Strongly Correlated Electrons +cond-mat/0107201 Statistical Mechanics +cond-mat/0107202 Strongly Correlated Electrons +cond-mat/0107203 Strongly Correlated Electrons +cond-mat/0107204 Strongly Correlated Electrons +cond-mat/0107206 Strongly Correlated Electrons +cond-mat/0107207 Mesoscale and Nanoscale Physics +cond-mat/0107210 Statistical Mechanics +cond-mat/0107215 Strongly Correlated Electrons +cond-mat/0107219 Statistical Mechanics +cond-mat/0107220 Mesoscale and Nanoscale Physics +cond-mat/0107221 +cond-mat/0107222 Strongly Correlated Electrons +cond-mat/0107223 Statistical Mechanics +cond-mat/0107224 Superconductivity +cond-mat/0107225 Statistical Mechanics +cond-mat/0107227 Strongly Correlated Electrons +cond-mat/0107229 Materials Science +cond-mat/0107231 Statistical Mechanics +cond-mat/0107232 Superconductivity +cond-mat/0107236 Statistical Mechanics +cond-mat/0107237 Statistical Mechanics +cond-mat/0107239 Superconductivity +cond-mat/0107241 Mesoscale and Nanoscale Physics +cond-mat/0107244 Superconductivity +cond-mat/0107245 +cond-mat/0107246 Statistical Mechanics +cond-mat/0107247 Strongly Correlated Electrons +cond-mat/0107249 Disordered Systems and Neural Networks +cond-mat/0107250 Mesoscale and Nanoscale Physics +cond-mat/0107252 Superconductivity +cond-mat/0107254 Superconductivity +cond-mat/0107256 Statistical Mechanics +cond-mat/0107258 Mesoscale and Nanoscale Physics +cond-mat/0107260 Statistical Mechanics +cond-mat/0107261 Statistical Mechanics +cond-mat/0107262 Strongly Correlated Electrons +cond-mat/0107264 +cond-mat/0107267 Statistical Mechanics +cond-mat/0107268 Materials Science +cond-mat/0107269 Statistical Mechanics +cond-mat/0107270 +cond-mat/0107271 Strongly Correlated Electrons +cond-mat/0107272 Mesoscale and Nanoscale Physics +cond-mat/0107273 Mesoscale and Nanoscale Physics +cond-mat/0107274 Soft Condensed Matter +cond-mat/0107276 Materials Science +cond-mat/0107279 Disordered Systems and Neural Networks +cond-mat/0107285 +cond-mat/0107286 Statistical Mechanics +cond-mat/0107287 Strongly Correlated Electrons +cond-mat/0107288 Strongly Correlated Electrons +cond-mat/0107290 Strongly Correlated Electrons +cond-mat/0107291 Strongly Correlated Electrons +cond-mat/0107292 Mesoscale and Nanoscale Physics +cond-mat/0107293 Mesoscale and Nanoscale Physics +cond-mat/0107294 Strongly Correlated Electrons +cond-mat/0107297 Strongly Correlated Electrons +cond-mat/0107298 Soft Condensed Matter +cond-mat/0107300 Strongly Correlated Electrons +cond-mat/0107301 Strongly Correlated Electrons +cond-mat/0107302 +cond-mat/0107304 Superconductivity +cond-mat/0107307 Materials Science +cond-mat/0107308 Disordered Systems and Neural Networks +cond-mat/0107309 Superconductivity +cond-mat/0107310 Soft Condensed Matter +cond-mat/0107313 Statistical Mechanics +cond-mat/0107314 Statistical Mechanics +cond-mat/0107317 Statistical Mechanics +cond-mat/0107319 Strongly Correlated Electrons +cond-mat/0107320 Strongly Correlated Electrons +cond-mat/0107322 Statistical Mechanics +cond-mat/0107324 Superconductivity +cond-mat/0107325 Superconductivity +cond-mat/0107327 Statistical Mechanics +cond-mat/0107328 Strongly Correlated Electrons +cond-mat/0107329 Statistical Mechanics +cond-mat/0107331 Strongly Correlated Electrons +cond-mat/0107333 Statistical Mechanics +cond-mat/0107335 Statistical Mechanics +cond-mat/0107336 Superconductivity +cond-mat/0107337 Superconductivity +cond-mat/0107338 Mesoscale and Nanoscale Physics +cond-mat/0107342 +cond-mat/0107344 Statistical Mechanics +cond-mat/0107345 Statistical Mechanics +cond-mat/0107346 Mesoscale and Nanoscale Physics +cond-mat/0107347 Superconductivity +cond-mat/0107348 Strongly Correlated Electrons +cond-mat/0107350 +cond-mat/0107351 Statistical Mechanics +cond-mat/0107352 Superconductivity +cond-mat/0107353 Strongly Correlated Electrons +cond-mat/0107354 Superconductivity +cond-mat/0107355 Superconductivity +cond-mat/0107356 Strongly Correlated Electrons +cond-mat/0107357 Strongly Correlated Electrons +cond-mat/0107360 Strongly Correlated Electrons +cond-mat/0107364 +cond-mat/0107366 Disordered Systems and Neural Networks +cond-mat/0107367 Soft Condensed Matter +cond-mat/0107368 Soft Condensed Matter +cond-mat/0107374 Materials Science +cond-mat/0107375 Strongly Correlated Electrons +cond-mat/0107377 Strongly Correlated Electrons +cond-mat/0107379 Superconductivity +cond-mat/0107381 Materials Science +cond-mat/0107382 Strongly Correlated Electrons +cond-mat/0107385 Mesoscale and Nanoscale Physics +cond-mat/0107387 Soft Condensed Matter +cond-mat/0107392 Disordered Systems and Neural Networks +cond-mat/0107393 Strongly Correlated Electrons +cond-mat/0107395 Disordered Systems and Neural Networks +cond-mat/0107396 Statistical Mechanics +cond-mat/0107397 Statistical Mechanics +cond-mat/0107400 Disordered Systems and Neural Networks +cond-mat/0107401 Statistical Mechanics +cond-mat/0107402 Mesoscale and Nanoscale Physics +cond-mat/0107403 Superconductivity +cond-mat/0107405 Disordered Systems and Neural Networks +cond-mat/0107408 Mesoscale and Nanoscale Physics +cond-mat/0107409 Soft Condensed Matter +cond-mat/0107410 Superconductivity +cond-mat/0107411 Statistical Mechanics +cond-mat/0107412 Mesoscale and Nanoscale Physics +cond-mat/0107414 +cond-mat/0107415 Materials Science +cond-mat/0107416 Strongly Correlated Electrons +cond-mat/0107417 Statistical Mechanics +cond-mat/0107418 Disordered Systems and Neural Networks +cond-mat/0107419 Statistical Mechanics +cond-mat/0107420 Statistical Mechanics +cond-mat/0107422 Disordered Systems and Neural Networks +cond-mat/0107423 Soft Condensed Matter +cond-mat/0107424 Disordered Systems and Neural Networks +cond-mat/0107428 Mesoscale and Nanoscale Physics +cond-mat/0107429 Strongly Correlated Electrons +cond-mat/0107430 Superconductivity +cond-mat/0107431 Strongly Correlated Electrons +cond-mat/0107432 Statistical Mechanics +cond-mat/0107435 Materials Science +cond-mat/0107436 Materials Science +cond-mat/0107444 Statistical Mechanics +cond-mat/0107447 Disordered Systems and Neural Networks +cond-mat/0107449 Statistical Mechanics +cond-mat/0107450 Mesoscale and Nanoscale Physics +cond-mat/0107451 +cond-mat/0107453 Strongly Correlated Electrons +cond-mat/0107454 Mesoscale and Nanoscale Physics +cond-mat/0107455 Strongly Correlated Electrons +cond-mat/0107456 Disordered Systems and Neural Networks +cond-mat/0107458 Disordered Systems and Neural Networks +cond-mat/0107460 Mesoscale and Nanoscale Physics +cond-mat/0107461 Soft Condensed Matter +cond-mat/0107462 Materials Science +cond-mat/0107463 Superconductivity +cond-mat/0107465 +cond-mat/0107466 +cond-mat/0107467 Statistical Mechanics +cond-mat/0107469 +cond-mat/0107470 Materials Science +cond-mat/0107471 Statistical Mechanics +cond-mat/0107472 Statistical Mechanics +cond-mat/0107473 Strongly Correlated Electrons +cond-mat/0107475 Statistical Mechanics +cond-mat/0107477 Superconductivity +cond-mat/0107478 Superconductivity +cond-mat/0107479 Strongly Correlated Electrons +cond-mat/0107480 Superconductivity +cond-mat/0107481 Statistical Mechanics +cond-mat/0107482 Mesoscale and Nanoscale Physics +cond-mat/0107483 Materials Science +cond-mat/0107485 Materials Science +cond-mat/0107486 Superconductivity +cond-mat/0107488 Strongly Correlated Electrons +cond-mat/0107494 Statistical Mechanics +cond-mat/0107495 Statistical Mechanics +cond-mat/0107496 Strongly Correlated Electrons +cond-mat/0107501 Strongly Correlated Electrons +cond-mat/0107502 Strongly Correlated Electrons +cond-mat/0107504 Mesoscale and Nanoscale Physics +cond-mat/0107507 Disordered Systems and Neural Networks +cond-mat/0107508 Superconductivity +cond-mat/0107510 Statistical Mechanics +cond-mat/0107511 Superconductivity +cond-mat/0107514 Statistical Mechanics +cond-mat/0107515 +cond-mat/0107517 Superconductivity +cond-mat/0107520 Strongly Correlated Electrons +cond-mat/0107521 Superconductivity +cond-mat/0107522 +cond-mat/0107523 Soft Condensed Matter +cond-mat/0107524 Mesoscale and Nanoscale Physics +cond-mat/0107525 Statistical Mechanics +cond-mat/0107526 Strongly Correlated Electrons +cond-mat/0107527 Disordered Systems and Neural Networks +cond-mat/0107528 Strongly Correlated Electrons +cond-mat/0107532 Superconductivity +cond-mat/0107533 Disordered Systems and Neural Networks +cond-mat/0107534 Superconductivity +cond-mat/0107535 Strongly Correlated Electrons +cond-mat/0107536 Materials Science +cond-mat/0107537 Superconductivity +cond-mat/0107538 Superconductivity +cond-mat/0107541 Materials Science +cond-mat/0107544 Disordered Systems and Neural Networks +cond-mat/0107545 Strongly Correlated Electrons +cond-mat/0107546 Strongly Correlated Electrons +cond-mat/0107548 Strongly Correlated Electrons +cond-mat/0107550 Strongly Correlated Electrons +cond-mat/0107555 Statistical Mechanics +cond-mat/0107556 +cond-mat/0107558 Statistical Mechanics +cond-mat/0107561 Strongly Correlated Electrons +cond-mat/0107562 Disordered Systems and Neural Networks +cond-mat/0107564 Materials Science +cond-mat/0107565 Disordered Systems and Neural Networks +cond-mat/0107568 Soft Condensed Matter +cond-mat/0107569 Materials Science +cond-mat/0107570 Statistical Mechanics +cond-mat/0107571 Materials Science +cond-mat/0107572 Strongly Correlated Electrons +cond-mat/0107573 +cond-mat/0107574 Strongly Correlated Electrons +cond-mat/0107575 Superconductivity +cond-mat/0107576 +cond-mat/0107577 Mesoscale and Nanoscale Physics +cond-mat/0107579 Strongly Correlated Electrons +cond-mat/0107580 Mesoscale and Nanoscale Physics +cond-mat/0107582 Disordered Systems and Neural Networks +cond-mat/0107583 Disordered Systems and Neural Networks +cond-mat/0107584 +cond-mat/0107585 Statistical Mechanics +cond-mat/0107586 Statistical Mechanics +cond-mat/0107588 Mesoscale and Nanoscale Physics +cond-mat/0107589 Materials Science +cond-mat/0107591 Mesoscale and Nanoscale Physics +cond-mat/0107592 Materials Science +cond-mat/0107594 Mesoscale and Nanoscale Physics +cond-mat/0107596 Statistical Mechanics +cond-mat/0107597 Statistical Mechanics +cond-mat/0107598 +cond-mat/0107599 Mesoscale and Nanoscale Physics +cond-mat/0107600 Disordered Systems and Neural Networks +cond-mat/0107601 Statistical Mechanics +cond-mat/0107602 Disordered Systems and Neural Networks +cond-mat/0107603 Soft Condensed Matter +cond-mat/0107605 Mesoscale and Nanoscale Physics +cond-mat/0107606 +cond-mat/0107607 +cond-mat/0107609 Strongly Correlated Electrons +cond-mat/0107610 Superconductivity +cond-mat/0107611 Mesoscale and Nanoscale Physics +cond-mat/0107613 Soft Condensed Matter +cond-mat/0107615 Statistical Mechanics +cond-mat/0107616 Soft Condensed Matter +cond-mat/0107617 Materials Science +cond-mat/0107619 Materials Science +cond-mat/0107620 Superconductivity +cond-mat/0107621 Superconductivity +cond-mat/0107623 Statistical Mechanics +cond-mat/0107624 Statistical Mechanics +cond-mat/0107625 Strongly Correlated Electrons +cond-mat/0107626 +cond-mat/0107627 Statistical Mechanics +cond-mat/0107628 +cond-mat/0107630 Materials Science +cond-mat/0107632 Statistical Mechanics +cond-mat/0107633 Strongly Correlated Electrons +cond-mat/0107635 Strongly Correlated Electrons +cond-mat/0107636 Materials Science +cond-mat/0107637 Mesoscale and Nanoscale Physics +cond-mat/0107638 Strongly Correlated Electrons +cond-mat/0108001 Mesoscale and Nanoscale Physics +cond-mat/0108002 Statistical Mechanics +cond-mat/0108003 Strongly Correlated Electrons +cond-mat/0108005 Statistical Mechanics +cond-mat/0108007 Statistical Mechanics +cond-mat/0108008 Strongly Correlated Electrons +cond-mat/0108009 +cond-mat/0108011 +cond-mat/0108012 +cond-mat/0108014 Disordered Systems and Neural Networks +cond-mat/0108015 Superconductivity +cond-mat/0108016 Strongly Correlated Electrons +cond-mat/0108018 Mesoscale and Nanoscale Physics +cond-mat/0108019 Statistical Mechanics +cond-mat/0108021 Mesoscale and Nanoscale Physics +cond-mat/0108022 Statistical Mechanics +cond-mat/0108023 Statistical Mechanics +cond-mat/0108024 Statistical Mechanics +cond-mat/0108025 Mesoscale and Nanoscale Physics +cond-mat/0108026 Materials Science +cond-mat/0108027 Mesoscale and Nanoscale Physics +cond-mat/0108029 Statistical Mechanics +cond-mat/0108030 Statistical Mechanics +cond-mat/0108031 Statistical Mechanics +cond-mat/0108032 Strongly Correlated Electrons +cond-mat/0108034 Statistical Mechanics +cond-mat/0108035 Superconductivity +cond-mat/0108036 Strongly Correlated Electrons +cond-mat/0108039 Superconductivity +cond-mat/0108042 Soft Condensed Matter +cond-mat/0108045 Soft Condensed Matter +cond-mat/0108047 Superconductivity +cond-mat/0108049 Superconductivity +cond-mat/0108050 Disordered Systems and Neural Networks +cond-mat/0108052 Superconductivity +cond-mat/0108053 Superconductivity +cond-mat/0108054 Superconductivity +cond-mat/0108055 Superconductivity +cond-mat/0108058 Statistical Mechanics +cond-mat/0108059 Statistical Mechanics +cond-mat/0108061 Mesoscale and Nanoscale Physics +cond-mat/0108063 Statistical Mechanics +cond-mat/0108064 Mesoscale and Nanoscale Physics +cond-mat/0108065 Strongly Correlated Electrons +cond-mat/0108066 Disordered Systems and Neural Networks +cond-mat/0108067 Materials Science +cond-mat/0108068 Soft Condensed Matter +cond-mat/0108071 Superconductivity +cond-mat/0108073 Superconductivity +cond-mat/0108074 Soft Condensed Matter +cond-mat/0108075 Superconductivity +cond-mat/0108076 Soft Condensed Matter +cond-mat/0108079 Mesoscale and Nanoscale Physics +cond-mat/0108080 Mesoscale and Nanoscale Physics +cond-mat/0108081 Strongly Correlated Electrons +cond-mat/0108082 Statistical Mechanics +cond-mat/0108083 +cond-mat/0108084 Materials Science +cond-mat/0108087 Superconductivity +cond-mat/0108089 Strongly Correlated Electrons +cond-mat/0108090 Strongly Correlated Electrons +cond-mat/0108091 Statistical Mechanics +cond-mat/0108092 Superconductivity +cond-mat/0108094 Statistical Mechanics +cond-mat/0108096 Mesoscale and Nanoscale Physics +cond-mat/0108100 Soft Condensed Matter +cond-mat/0108101 Mesoscale and Nanoscale Physics +cond-mat/0108104 Mesoscale and Nanoscale Physics +cond-mat/0108105 +cond-mat/0108106 Statistical Mechanics +cond-mat/0108107 Superconductivity +cond-mat/0108108 Mesoscale and Nanoscale Physics +cond-mat/0108109 Superconductivity +cond-mat/0108110 Disordered Systems and Neural Networks +cond-mat/0108115 Superconductivity +cond-mat/0108116 Strongly Correlated Electrons +cond-mat/0108117 Soft Condensed Matter +cond-mat/0108119 Mesoscale and Nanoscale Physics +cond-mat/0108121 Soft Condensed Matter +cond-mat/0108122 Soft Condensed Matter +cond-mat/0108128 Superconductivity +cond-mat/0108131 Superconductivity +cond-mat/0108132 +cond-mat/0108133 Mesoscale and Nanoscale Physics +cond-mat/0108136 Disordered Systems and Neural Networks +cond-mat/0108139 Strongly Correlated Electrons +cond-mat/0108140 Strongly Correlated Electrons +cond-mat/0108143 +cond-mat/0108145 Materials Science +cond-mat/0108147 Statistical Mechanics +cond-mat/0108148 Statistical Mechanics +cond-mat/0108150 Mesoscale and Nanoscale Physics +cond-mat/0108151 Strongly Correlated Electrons +cond-mat/0108152 Statistical Mechanics +cond-mat/0108154 Superconductivity +cond-mat/0108156 Statistical Mechanics +cond-mat/0108158 Statistical Mechanics +cond-mat/0108159 Materials Science +cond-mat/0108162 Superconductivity +cond-mat/0108163 Strongly Correlated Electrons +cond-mat/0108164 Mesoscale and Nanoscale Physics +cond-mat/0108165 Mesoscale and Nanoscale Physics +cond-mat/0108166 Mesoscale and Nanoscale Physics +cond-mat/0108167 Strongly Correlated Electrons +cond-mat/0108168 Materials Science +cond-mat/0108169 Soft Condensed Matter +cond-mat/0108170 Materials Science +cond-mat/0108171 Strongly Correlated Electrons +cond-mat/0108173 Strongly Correlated Electrons +cond-mat/0108174 Materials Science +cond-mat/0108175 +cond-mat/0108176 +cond-mat/0108178 +cond-mat/0108179 Strongly Correlated Electrons +cond-mat/0108180 Disordered Systems and Neural Networks +cond-mat/0108183 +cond-mat/0108184 Statistical Mechanics +cond-mat/0108185 +cond-mat/0108186 Mesoscale and Nanoscale Physics +cond-mat/0108187 Soft Condensed Matter +cond-mat/0108188 Materials Science +cond-mat/0108190 Mesoscale and Nanoscale Physics +cond-mat/0108191 Disordered Systems and Neural Networks +cond-mat/0108192 Statistical Mechanics +cond-mat/0108193 Materials Science +cond-mat/0108194 Superconductivity +cond-mat/0108195 Soft Condensed Matter +cond-mat/0108196 Materials Science +cond-mat/0108199 Statistical Mechanics +cond-mat/0108201 Disordered Systems and Neural Networks +cond-mat/0108202 Statistical Mechanics +cond-mat/0108205 Disordered Systems and Neural Networks +cond-mat/0108206 Mesoscale and Nanoscale Physics +cond-mat/0108207 Strongly Correlated Electrons +cond-mat/0108208 Disordered Systems and Neural Networks +cond-mat/0108209 Statistical Mechanics +cond-mat/0108210 Mesoscale and Nanoscale Physics +cond-mat/0108211 Mesoscale and Nanoscale Physics +cond-mat/0108213 Strongly Correlated Electrons +cond-mat/0108215 Superconductivity +cond-mat/0108218 Soft Condensed Matter +cond-mat/0108220 Superconductivity +cond-mat/0108221 Mesoscale and Nanoscale Physics +cond-mat/0108222 Strongly Correlated Electrons +cond-mat/0108223 Materials Science +cond-mat/0108225 Disordered Systems and Neural Networks +cond-mat/0108226 +cond-mat/0108227 Mesoscale and Nanoscale Physics +cond-mat/0108228 Strongly Correlated Electrons +cond-mat/0108229 Statistical Mechanics +cond-mat/0108230 Superconductivity +cond-mat/0108231 Superconductivity +cond-mat/0108232 Superconductivity +cond-mat/0108233 Disordered Systems and Neural Networks +cond-mat/0108236 Mesoscale and Nanoscale Physics +cond-mat/0108237 Soft Condensed Matter +cond-mat/0108240 Superconductivity +cond-mat/0108242 Strongly Correlated Electrons +cond-mat/0108243 Mesoscale and Nanoscale Physics +cond-mat/0108244 Mesoscale and Nanoscale Physics +cond-mat/0108245 Materials Science +cond-mat/0108246 Strongly Correlated Electrons +cond-mat/0108247 Disordered Systems and Neural Networks +cond-mat/0108248 Mesoscale and Nanoscale Physics +cond-mat/0108249 Materials Science +cond-mat/0108253 Statistical Mechanics +cond-mat/0108254 Statistical Mechanics +cond-mat/0108255 Statistical Mechanics +cond-mat/0108257 Superconductivity +cond-mat/0108259 +cond-mat/0108261 +cond-mat/0108264 Materials Science +cond-mat/0108269 Strongly Correlated Electrons +cond-mat/0108270 Strongly Correlated Electrons +cond-mat/0108272 Strongly Correlated Electrons +cond-mat/0108273 Superconductivity +cond-mat/0108274 Statistical Mechanics +cond-mat/0108275 Soft Condensed Matter +cond-mat/0108277 Superconductivity +cond-mat/0108278 Materials Science +cond-mat/0108280 Statistical Mechanics +cond-mat/0108282 Statistical Mechanics +cond-mat/0108283 Soft Condensed Matter +cond-mat/0108284 +cond-mat/0108286 +cond-mat/0108287 Statistical Mechanics +cond-mat/0108289 Statistical Mechanics +cond-mat/0108291 Superconductivity +cond-mat/0108292 +cond-mat/0108294 Superconductivity +cond-mat/0108298 Statistical Mechanics +cond-mat/0108299 Superconductivity +cond-mat/0108300 Strongly Correlated Electrons +cond-mat/0108301 Soft Condensed Matter +cond-mat/0108302 Statistical Mechanics +cond-mat/0108303 Superconductivity +cond-mat/0108304 Materials Science +cond-mat/0108305 Superconductivity +cond-mat/0108306 Statistical Mechanics +cond-mat/0108307 Disordered Systems and Neural Networks +cond-mat/0108308 Statistical Mechanics +cond-mat/0108309 Statistical Mechanics +cond-mat/0108312 +cond-mat/0108313 Superconductivity +cond-mat/0108315 Superconductivity +cond-mat/0108316 Superconductivity +cond-mat/0108317 Superconductivity +cond-mat/0108319 Strongly Correlated Electrons +cond-mat/0108321 Superconductivity +cond-mat/0108322 Strongly Correlated Electrons +cond-mat/0108323 Statistical Mechanics +cond-mat/0108324 Superconductivity +cond-mat/0108325 Materials Science +cond-mat/0108326 Mesoscale and Nanoscale Physics +cond-mat/0108327 Strongly Correlated Electrons +cond-mat/0108328 Statistical Mechanics +cond-mat/0108330 Superconductivity +cond-mat/0108333 Superconductivity +cond-mat/0108334 +cond-mat/0108335 +cond-mat/0108336 Disordered Systems and Neural Networks +cond-mat/0108338 Superconductivity +cond-mat/0108340 +cond-mat/0108343 Strongly Correlated Electrons +cond-mat/0108344 Soft Condensed Matter +cond-mat/0108346 Superconductivity +cond-mat/0108347 Statistical Mechanics +cond-mat/0108348 Soft Condensed Matter +cond-mat/0108349 Soft Condensed Matter +cond-mat/0108350 Disordered Systems and Neural Networks +cond-mat/0108351 Mesoscale and Nanoscale Physics +cond-mat/0108353 Statistical Mechanics +cond-mat/0108359 Mesoscale and Nanoscale Physics +cond-mat/0108360 +cond-mat/0108362 Soft Condensed Matter +cond-mat/0108366 Superconductivity +cond-mat/0108370 Disordered Systems and Neural Networks +cond-mat/0108372 +cond-mat/0108373 Mesoscale and Nanoscale Physics +cond-mat/0108374 Statistical Mechanics +cond-mat/0108376 Superconductivity +cond-mat/0108378 +cond-mat/0108379 Statistical Mechanics +cond-mat/0108380 +cond-mat/0108381 Superconductivity +cond-mat/0108382 Strongly Correlated Electrons +cond-mat/0108383 Superconductivity +cond-mat/0108384 Strongly Correlated Electrons +cond-mat/0108386 Superconductivity +cond-mat/0108387 +cond-mat/0108389 Superconductivity +cond-mat/0108390 Statistical Mechanics +cond-mat/0108391 Statistical Mechanics +cond-mat/0108393 Statistical Mechanics +cond-mat/0108394 +cond-mat/0108397 Superconductivity +cond-mat/0108399 Disordered Systems and Neural Networks +cond-mat/0108400 Materials Science +cond-mat/0108401 +cond-mat/0108403 Mesoscale and Nanoscale Physics +cond-mat/0108405 Soft Condensed Matter +cond-mat/0108406 Materials Science +cond-mat/0108408 Disordered Systems and Neural Networks +cond-mat/0108409 Superconductivity +cond-mat/0108412 Materials Science +cond-mat/0108413 Strongly Correlated Electrons +cond-mat/0108414 Statistical Mechanics +cond-mat/0108415 Superconductivity +cond-mat/0108416 Strongly Correlated Electrons +cond-mat/0108418 +cond-mat/0108422 Materials Science +cond-mat/0108423 Soft Condensed Matter +cond-mat/0108424 Strongly Correlated Electrons +cond-mat/0108426 Materials Science +cond-mat/0108427 Statistical Mechanics +cond-mat/0108428 Mesoscale and Nanoscale Physics +cond-mat/0108429 Statistical Mechanics +cond-mat/0108431 Superconductivity +cond-mat/0108432 Materials Science +cond-mat/0108433 Statistical Mechanics +cond-mat/0108436 Mesoscale and Nanoscale Physics +cond-mat/0108437 Strongly Correlated Electrons +cond-mat/0108438 Statistical Mechanics +cond-mat/0108439 Soft Condensed Matter +cond-mat/0108445 Mesoscale and Nanoscale Physics +cond-mat/0108446 Superconductivity +cond-mat/0108447 Soft Condensed Matter +cond-mat/0108448 Statistical Mechanics +cond-mat/0108449 Superconductivity +cond-mat/0108450 +cond-mat/0108451 +cond-mat/0108452 Statistical Mechanics +cond-mat/0108453 Soft Condensed Matter +cond-mat/0108454 +cond-mat/0108456 Superconductivity +cond-mat/0108457 Soft Condensed Matter +cond-mat/0108459 Soft Condensed Matter +cond-mat/0108461 Statistical Mechanics +cond-mat/0108462 Soft Condensed Matter +cond-mat/0108463 Strongly Correlated Electrons +cond-mat/0108464 +cond-mat/0108465 Strongly Correlated Electrons +cond-mat/0108466 Mesoscale and Nanoscale Physics +cond-mat/0108468 Strongly Correlated Electrons +cond-mat/0108472 Strongly Correlated Electrons +cond-mat/0108473 Statistical Mechanics +cond-mat/0108475 Superconductivity +cond-mat/0108476 Strongly Correlated Electrons +cond-mat/0108478 Strongly Correlated Electrons +cond-mat/0108479 Superconductivity +cond-mat/0108480 +cond-mat/0108481 Statistical Mechanics +cond-mat/0108483 Strongly Correlated Electrons +cond-mat/0108486 Statistical Mechanics +cond-mat/0108490 Mesoscale and Nanoscale Physics +cond-mat/0108491 Materials Science +cond-mat/0108492 Superconductivity +cond-mat/0108493 Statistical Mechanics +cond-mat/0108494 Statistical Mechanics +cond-mat/0108495 Statistical Mechanics +cond-mat/0108496 Soft Condensed Matter +cond-mat/0108497 Statistical Mechanics +cond-mat/0108498 Strongly Correlated Electrons +cond-mat/0108500 Strongly Correlated Electrons +cond-mat/0108502 Statistical Mechanics +cond-mat/0108503 Materials Science +cond-mat/0108506 Strongly Correlated Electrons +cond-mat/0108507 Strongly Correlated Electrons +cond-mat/0108510 Mesoscale and Nanoscale Physics +cond-mat/0108512 Strongly Correlated Electrons +cond-mat/0108513 Statistical Mechanics +cond-mat/0108514 Materials Science +cond-mat/0108515 Strongly Correlated Electrons +cond-mat/0108516 Soft Condensed Matter +cond-mat/0108517 Soft Condensed Matter +cond-mat/0108519 Superconductivity +cond-mat/0108520 Mesoscale and Nanoscale Physics +cond-mat/0108523 Strongly Correlated Electrons +cond-mat/0108524 Statistical Mechanics +cond-mat/0108530 Statistical Mechanics +cond-mat/0108531 Strongly Correlated Electrons +cond-mat/0108534 Superconductivity +cond-mat/0108535 Materials Science +cond-mat/0108537 Superconductivity +cond-mat/0108538 Statistical Mechanics +cond-mat/0108539 +cond-mat/0108540 Statistical Mechanics +cond-mat/0108541 +cond-mat/0108542 Statistical Mechanics +cond-mat/0108543 Superconductivity +cond-mat/0108545 Superconductivity +cond-mat/0108546 Soft Condensed Matter +cond-mat/0108548 Statistical Mechanics +cond-mat/0108550 Soft Condensed Matter +cond-mat/0108551 +cond-mat/0108552 Soft Condensed Matter +cond-mat/0108553 Superconductivity +cond-mat/0109002 Soft Condensed Matter +cond-mat/0109003 Statistical Mechanics +cond-mat/0109008 Strongly Correlated Electrons +cond-mat/0109012 Mesoscale and Nanoscale Physics +cond-mat/0109014 Strongly Correlated Electrons +cond-mat/0109015 Disordered Systems and Neural Networks +cond-mat/0109016 +cond-mat/0109017 Mesoscale and Nanoscale Physics +cond-mat/0109018 Statistical Mechanics +cond-mat/0109020 Materials Science +cond-mat/0109021 Mesoscale and Nanoscale Physics +cond-mat/0109022 Mesoscale and Nanoscale Physics +cond-mat/0109023 Superconductivity +cond-mat/0109024 +cond-mat/0109025 Statistical Mechanics +cond-mat/0109029 +cond-mat/0109030 Superconductivity +cond-mat/0109031 Strongly Correlated Electrons +cond-mat/0109033 Disordered Systems and Neural Networks +cond-mat/0109037 Strongly Correlated Electrons +cond-mat/0109038 +cond-mat/0109039 Superconductivity +cond-mat/0109041 Mesoscale and Nanoscale Physics +cond-mat/0109042 Soft Condensed Matter +cond-mat/0109045 Materials Science +cond-mat/0109047 Strongly Correlated Electrons +cond-mat/0109048 +cond-mat/0109050 Superconductivity +cond-mat/0109051 Strongly Correlated Electrons +cond-mat/0109054 Soft Condensed Matter +cond-mat/0109055 Statistical Mechanics +cond-mat/0109057 Disordered Systems and Neural Networks +cond-mat/0109058 Strongly Correlated Electrons +cond-mat/0109059 Materials Science +cond-mat/0109060 Mesoscale and Nanoscale Physics +cond-mat/0109061 Soft Condensed Matter +cond-mat/0109062 Strongly Correlated Electrons +cond-mat/0109063 Strongly Correlated Electrons +cond-mat/0109066 Mesoscale and Nanoscale Physics +cond-mat/0109067 Mesoscale and Nanoscale Physics +cond-mat/0109068 Soft Condensed Matter +cond-mat/0109070 Strongly Correlated Electrons +cond-mat/0109071 Strongly Correlated Electrons +cond-mat/0109072 Strongly Correlated Electrons +cond-mat/0109077 Superconductivity +cond-mat/0109078 Statistical Mechanics +cond-mat/0109080 Statistical Mechanics +cond-mat/0109081 +cond-mat/0109082 Mesoscale and Nanoscale Physics +cond-mat/0109083 Statistical Mechanics +cond-mat/0109084 +cond-mat/0109087 Mesoscale and Nanoscale Physics +cond-mat/0109091 Strongly Correlated Electrons +cond-mat/0109093 Superconductivity +cond-mat/0109094 +cond-mat/0109095 Strongly Correlated Electrons +cond-mat/0109096 Mesoscale and Nanoscale Physics +cond-mat/0109097 Materials Science +cond-mat/0109098 Statistical Mechanics +cond-mat/0109099 Statistical Mechanics +cond-mat/0109100 +cond-mat/0109101 Strongly Correlated Electrons +cond-mat/0109102 Mesoscale and Nanoscale Physics +cond-mat/0109104 Mesoscale and Nanoscale Physics +cond-mat/0109105 Soft Condensed Matter +cond-mat/0109106 Superconductivity +cond-mat/0109108 +cond-mat/0109109 Mesoscale and Nanoscale Physics +cond-mat/0109110 Statistical Mechanics +cond-mat/0109111 Statistical Mechanics +cond-mat/0109112 Statistical Mechanics +cond-mat/0109113 Mesoscale and Nanoscale Physics +cond-mat/0109115 Superconductivity +cond-mat/0109116 Mesoscale and Nanoscale Physics +cond-mat/0109117 Statistical Mechanics +cond-mat/0109118 Strongly Correlated Electrons +cond-mat/0109119 Statistical Mechanics +cond-mat/0109120 +cond-mat/0109121 Statistical Mechanics +cond-mat/0109122 Superconductivity +cond-mat/0109123 Materials Science +cond-mat/0109125 Strongly Correlated Electrons +cond-mat/0109126 Disordered Systems and Neural Networks +cond-mat/0109128 Statistical Mechanics +cond-mat/0109130 +cond-mat/0109131 Materials Science +cond-mat/0109134 Statistical Mechanics +cond-mat/0109135 Mesoscale and Nanoscale Physics +cond-mat/0109136 Statistical Mechanics +cond-mat/0109137 Disordered Systems and Neural Networks +cond-mat/0109142 Mesoscale and Nanoscale Physics +cond-mat/0109143 +cond-mat/0109145 Mesoscale and Nanoscale Physics +cond-mat/0109149 Statistical Mechanics +cond-mat/0109150 +cond-mat/0109151 Strongly Correlated Electrons +cond-mat/0109152 Superconductivity +cond-mat/0109153 Statistical Mechanics +cond-mat/0109154 Statistical Mechanics +cond-mat/0109155 Strongly Correlated Electrons +cond-mat/0109157 Statistical Mechanics +cond-mat/0109158 Mesoscale and Nanoscale Physics +cond-mat/0109162 Disordered Systems and Neural Networks +cond-mat/0109164 Strongly Correlated Electrons +cond-mat/0109165 Strongly Correlated Electrons +cond-mat/0109168 Materials Science +cond-mat/0109169 Statistical Mechanics +cond-mat/0109171 Disordered Systems and Neural Networks +cond-mat/0109172 +cond-mat/0109179 Statistical Mechanics +cond-mat/0109180 Statistical Mechanics +cond-mat/0109181 Superconductivity +cond-mat/0109183 +cond-mat/0109187 Statistical Mechanics +cond-mat/0109188 Statistical Mechanics +cond-mat/0109189 Materials Science +cond-mat/0109190 Statistical Mechanics +cond-mat/0109191 +cond-mat/0109192 Statistical Mechanics +cond-mat/0109193 Statistical Mechanics +cond-mat/0109196 Superconductivity +cond-mat/0109197 Disordered Systems and Neural Networks +cond-mat/0109198 Soft Condensed Matter +cond-mat/0109199 Soft Condensed Matter +cond-mat/0109201 Mesoscale and Nanoscale Physics +cond-mat/0109202 Statistical Mechanics +cond-mat/0109203 Statistical Mechanics +cond-mat/0109204 +cond-mat/0109205 Soft Condensed Matter +cond-mat/0109207 Mesoscale and Nanoscale Physics +cond-mat/0109208 Mesoscale and Nanoscale Physics +cond-mat/0109209 Strongly Correlated Electrons +cond-mat/0109210 Strongly Correlated Electrons +cond-mat/0109211 Superconductivity +cond-mat/0109212 Statistical Mechanics +cond-mat/0109213 Statistical Mechanics +cond-mat/0109214 Statistical Mechanics +cond-mat/0109217 Materials Science +cond-mat/0109219 Mesoscale and Nanoscale Physics +cond-mat/0109220 Mesoscale and Nanoscale Physics +cond-mat/0109221 Strongly Correlated Electrons +cond-mat/0109223 Mesoscale and Nanoscale Physics +cond-mat/0109224 Disordered Systems and Neural Networks +cond-mat/0109225 Materials Science +cond-mat/0109227 Disordered Systems and Neural Networks +cond-mat/0109228 Strongly Correlated Electrons +cond-mat/0109229 Disordered Systems and Neural Networks +cond-mat/0109232 Statistical Mechanics +cond-mat/0109234 Strongly Correlated Electrons +cond-mat/0109235 Statistical Mechanics +cond-mat/0109236 Statistical Mechanics +cond-mat/0109237 Materials Science +cond-mat/0109238 Strongly Correlated Electrons +cond-mat/0109240 Statistical Mechanics +cond-mat/0109241 Materials Science +cond-mat/0109242 Disordered Systems and Neural Networks +cond-mat/0109243 Disordered Systems and Neural Networks +cond-mat/0109244 Superconductivity +cond-mat/0109245 Materials Science +cond-mat/0109247 Soft Condensed Matter +cond-mat/0109249 Statistical Mechanics +cond-mat/0109251 Superconductivity +cond-mat/0109252 Mesoscale and Nanoscale Physics +cond-mat/0109256 Statistical Mechanics +cond-mat/0109257 Materials Science +cond-mat/0109261 Mesoscale and Nanoscale Physics +cond-mat/0109262 Materials Science +cond-mat/0109263 Disordered Systems and Neural Networks +cond-mat/0109265 Statistical Mechanics +cond-mat/0109267 Disordered Systems and Neural Networks +cond-mat/0109269 +cond-mat/0109273 Statistical Mechanics +cond-mat/0109274 Statistical Mechanics +cond-mat/0109275 Mesoscale and Nanoscale Physics +cond-mat/0109276 Strongly Correlated Electrons +cond-mat/0109277 Mesoscale and Nanoscale Physics +cond-mat/0109279 Disordered Systems and Neural Networks +cond-mat/0109280 Statistical Mechanics +cond-mat/0109281 Statistical Mechanics +cond-mat/0109282 Strongly Correlated Electrons +cond-mat/0109285 Statistical Mechanics +cond-mat/0109286 Disordered Systems and Neural Networks +cond-mat/0109287 Statistical Mechanics +cond-mat/0109293 Materials Science +cond-mat/0109294 Statistical Mechanics +cond-mat/0109295 Statistical Mechanics +cond-mat/0109298 Statistical Mechanics +cond-mat/0109299 Soft Condensed Matter +cond-mat/0109300 Superconductivity +cond-mat/0109301 +cond-mat/0109303 Strongly Correlated Electrons +cond-mat/0109304 Soft Condensed Matter +cond-mat/0109307 Mesoscale and Nanoscale Physics +cond-mat/0109309 Strongly Correlated Electrons +cond-mat/0109311 Soft Condensed Matter +cond-mat/0109313 Statistical Mechanics +cond-mat/0109314 Disordered Systems and Neural Networks +cond-mat/0109315 Statistical Mechanics +cond-mat/0109317 Soft Condensed Matter +cond-mat/0109319 Superconductivity +cond-mat/0109321 Mesoscale and Nanoscale Physics +cond-mat/0109322 Statistical Mechanics +cond-mat/0109323 Superconductivity +cond-mat/0109324 Statistical Mechanics +cond-mat/0109329 Statistical Mechanics +cond-mat/0109330 Statistical Mechanics +cond-mat/0109333 Superconductivity +cond-mat/0109334 Strongly Correlated Electrons +cond-mat/0109335 +cond-mat/0109336 Strongly Correlated Electrons +cond-mat/0109338 Statistical Mechanics +cond-mat/0109340 Mesoscale and Nanoscale Physics +cond-mat/0109341 Soft Condensed Matter +cond-mat/0109345 Strongly Correlated Electrons +cond-mat/0109350 +cond-mat/0109351 Superconductivity +cond-mat/0109352 Statistical Mechanics +cond-mat/0109359 Disordered Systems and Neural Networks +cond-mat/0109360 Superconductivity +cond-mat/0109361 Statistical Mechanics +cond-mat/0109362 Strongly Correlated Electrons +cond-mat/0109363 Superconductivity +cond-mat/0109364 Strongly Correlated Electrons +cond-mat/0109365 Superconductivity +cond-mat/0109366 Mesoscale and Nanoscale Physics +cond-mat/0109368 Statistical Mechanics +cond-mat/0109369 Superconductivity +cond-mat/0109370 Superconductivity +cond-mat/0109373 +cond-mat/0109374 Strongly Correlated Electrons +cond-mat/0109376 Soft Condensed Matter +cond-mat/0109378 +cond-mat/0109379 Strongly Correlated Electrons +cond-mat/0109381 Soft Condensed Matter +cond-mat/0109382 Mesoscale and Nanoscale Physics +cond-mat/0109386 Materials Science +cond-mat/0109388 Superconductivity +cond-mat/0109389 Superconductivity +cond-mat/0109390 Disordered Systems and Neural Networks +cond-mat/0109391 Materials Science +cond-mat/0109392 Strongly Correlated Electrons +cond-mat/0109393 Strongly Correlated Electrons +cond-mat/0109394 Materials Science +cond-mat/0109395 Statistical Mechanics +cond-mat/0109396 Materials Science +cond-mat/0109398 Statistical Mechanics +cond-mat/0109399 Statistical Mechanics +cond-mat/0109400 Mesoscale and Nanoscale Physics +cond-mat/0109401 Mesoscale and Nanoscale Physics +cond-mat/0109402 Mesoscale and Nanoscale Physics +cond-mat/0109404 Superconductivity +cond-mat/0109406 Strongly Correlated Electrons +cond-mat/0109408 Superconductivity +cond-mat/0109411 Statistical Mechanics +cond-mat/0109412 Mesoscale and Nanoscale Physics +cond-mat/0109414 Disordered Systems and Neural Networks +cond-mat/0109415 Soft Condensed Matter +cond-mat/0109417 Strongly Correlated Electrons +cond-mat/0109418 Statistical Mechanics +cond-mat/0109420 Superconductivity +cond-mat/0109423 Superconductivity +cond-mat/0109424 Strongly Correlated Electrons +cond-mat/0109428 Soft Condensed Matter +cond-mat/0109429 Statistical Mechanics +cond-mat/0109431 Materials Science +cond-mat/0109433 Statistical Mechanics +cond-mat/0109436 Materials Science +cond-mat/0109437 +cond-mat/0109442 Soft Condensed Matter +cond-mat/0109447 Materials Science +cond-mat/0109448 +cond-mat/0109449 Superconductivity +cond-mat/0109450 Materials Science +cond-mat/0109452 Statistical Mechanics +cond-mat/0109453 Materials Science +cond-mat/0109454 Statistical Mechanics +cond-mat/0109455 Statistical Mechanics +cond-mat/0109457 Soft Condensed Matter +cond-mat/0109458 Mesoscale and Nanoscale Physics +cond-mat/0109459 Mesoscale and Nanoscale Physics +cond-mat/0109460 Statistical Mechanics +cond-mat/0109461 Statistical Mechanics +cond-mat/0109463 +cond-mat/0109464 Superconductivity +cond-mat/0109466 Strongly Correlated Electrons +cond-mat/0109467 Strongly Correlated Electrons +cond-mat/0109468 Superconductivity +cond-mat/0109470 Mesoscale and Nanoscale Physics +cond-mat/0109474 Soft Condensed Matter +cond-mat/0109476 Soft Condensed Matter +cond-mat/0109477 Mesoscale and Nanoscale Physics +cond-mat/0109478 Superconductivity +cond-mat/0109479 Strongly Correlated Electrons +cond-mat/0109480 Statistical Mechanics +cond-mat/0109482 Statistical Mechanics +cond-mat/0109484 Statistical Mechanics +cond-mat/0109486 Superconductivity +cond-mat/0109487 Soft Condensed Matter +cond-mat/0109488 Materials Science +cond-mat/0109489 Superconductivity +cond-mat/0109491 Materials Science +cond-mat/0109492 Strongly Correlated Electrons +cond-mat/0109497 Strongly Correlated Electrons +cond-mat/0109498 Superconductivity +cond-mat/0109500 Superconductivity +cond-mat/0109505 Mesoscale and Nanoscale Physics +cond-mat/0109507 Superconductivity +cond-mat/0109510 Strongly Correlated Electrons +cond-mat/0109512 Materials Science +cond-mat/0109513 Strongly Correlated Electrons +cond-mat/0109515 Statistical Mechanics +cond-mat/0109518 Materials Science +cond-mat/0109519 Statistical Mechanics +cond-mat/0109521 Statistical Mechanics +cond-mat/0109522 Superconductivity +cond-mat/0109523 Superconductivity +cond-mat/0109525 Strongly Correlated Electrons +cond-mat/0109526 Statistical Mechanics +cond-mat/0109527 Mesoscale and Nanoscale Physics +cond-mat/0109528 Statistical Mechanics +cond-mat/0109529 Materials Science +cond-mat/0109530 Strongly Correlated Electrons +cond-mat/0109531 Disordered Systems and Neural Networks +cond-mat/0109532 Strongly Correlated Electrons +cond-mat/0109534 Strongly Correlated Electrons +cond-mat/0109536 Superconductivity +cond-mat/0109540 Materials Science +cond-mat/0109544 Mesoscale and Nanoscale Physics +cond-mat/0109546 Disordered Systems and Neural Networks +cond-mat/0109548 Mesoscale and Nanoscale Physics +cond-mat/0109549 Mesoscale and Nanoscale Physics +cond-mat/0109550 Materials Science +cond-mat/0109551 Disordered Systems and Neural Networks +cond-mat/0109552 Disordered Systems and Neural Networks +cond-mat/0109553 Superconductivity +cond-mat/0110001 Soft Condensed Matter +cond-mat/0110002 Superconductivity +cond-mat/0110003 Strongly Correlated Electrons +cond-mat/0110004 Statistical Mechanics +cond-mat/0110005 Strongly Correlated Electrons +cond-mat/0110008 Statistical Mechanics +cond-mat/0110009 Statistical Mechanics +cond-mat/0110011 +cond-mat/0110013 Superconductivity +cond-mat/0110014 Materials Science +cond-mat/0110017 Disordered Systems and Neural Networks +cond-mat/0110018 Superconductivity +cond-mat/0110020 Superconductivity +cond-mat/0110021 Superconductivity +cond-mat/0110022 Strongly Correlated Electrons +cond-mat/0110024 Superconductivity +cond-mat/0110026 Statistical Mechanics +cond-mat/0110027 Mesoscale and Nanoscale Physics +cond-mat/0110029 Statistical Mechanics +cond-mat/0110030 Statistical Mechanics +cond-mat/0110032 Soft Condensed Matter +cond-mat/0110033 Statistical Mechanics +cond-mat/0110034 Statistical Mechanics +cond-mat/0110035 Statistical Mechanics +cond-mat/0110036 Statistical Mechanics +cond-mat/0110037 Mesoscale and Nanoscale Physics +cond-mat/0110038 Mesoscale and Nanoscale Physics +cond-mat/0110039 Materials Science +cond-mat/0110040 Materials Science +cond-mat/0110043 Statistical Mechanics +cond-mat/0110044 Materials Science +cond-mat/0110045 Materials Science +cond-mat/0110048 Strongly Correlated Electrons +cond-mat/0110050 Strongly Correlated Electrons +cond-mat/0110053 +cond-mat/0110056 Strongly Correlated Electrons +cond-mat/0110059 Materials Science +cond-mat/0110060 Materials Science +cond-mat/0110061 Disordered Systems and Neural Networks +cond-mat/0110062 Mesoscale and Nanoscale Physics +cond-mat/0110063 Strongly Correlated Electrons +cond-mat/0110069 +cond-mat/0110070 Disordered Systems and Neural Networks +cond-mat/0110072 Mesoscale and Nanoscale Physics +cond-mat/0110073 Statistical Mechanics +cond-mat/0110075 Statistical Mechanics +cond-mat/0110076 +cond-mat/0110080 +cond-mat/0110083 Mesoscale and Nanoscale Physics +cond-mat/0110085 Superconductivity +cond-mat/0110086 Materials Science +cond-mat/0110087 Materials Science +cond-mat/0110088 Soft Condensed Matter +cond-mat/0110089 Statistical Mechanics +cond-mat/0110090 +cond-mat/0110092 Materials Science +cond-mat/0110093 Mesoscale and Nanoscale Physics +cond-mat/0110094 Superconductivity +cond-mat/0110095 Strongly Correlated Electrons +cond-mat/0110097 +cond-mat/0110098 Statistical Mechanics +cond-mat/0110099 Strongly Correlated Electrons +cond-mat/0110100 Soft Condensed Matter +cond-mat/0110101 Statistical Mechanics +cond-mat/0110104 Materials Science +cond-mat/0110105 Superconductivity +cond-mat/0110107 +cond-mat/0110109 Superconductivity +cond-mat/0110113 Soft Condensed Matter +cond-mat/0110114 Strongly Correlated Electrons +cond-mat/0110115 Strongly Correlated Electrons +cond-mat/0110117 Superconductivity +cond-mat/0110118 Mesoscale and Nanoscale Physics +cond-mat/0110120 Statistical Mechanics +cond-mat/0110122 Mesoscale and Nanoscale Physics +cond-mat/0110126 Mesoscale and Nanoscale Physics +cond-mat/0110127 Strongly Correlated Electrons +cond-mat/0110131 Mesoscale and Nanoscale Physics +cond-mat/0110132 Mesoscale and Nanoscale Physics +cond-mat/0110133 Strongly Correlated Electrons +cond-mat/0110134 Mesoscale and Nanoscale Physics +cond-mat/0110135 Statistical Mechanics +cond-mat/0110136 Strongly Correlated Electrons +cond-mat/0110137 Strongly Correlated Electrons +cond-mat/0110139 Strongly Correlated Electrons +cond-mat/0110140 Superconductivity +cond-mat/0110141 Soft Condensed Matter +cond-mat/0110143 Soft Condensed Matter +cond-mat/0110144 Materials Science +cond-mat/0110145 Disordered Systems and Neural Networks +cond-mat/0110146 Soft Condensed Matter +cond-mat/0110147 Mesoscale and Nanoscale Physics +cond-mat/0110148 Soft Condensed Matter +cond-mat/0110149 Materials Science +cond-mat/0110151 Statistical Mechanics +cond-mat/0110153 Soft Condensed Matter +cond-mat/0110156 Materials Science +cond-mat/0110158 Superconductivity +cond-mat/0110163 Soft Condensed Matter +cond-mat/0110165 Statistical Mechanics +cond-mat/0110166 Materials Science +cond-mat/0110168 Strongly Correlated Electrons +cond-mat/0110169 Statistical Mechanics +cond-mat/0110170 Strongly Correlated Electrons +cond-mat/0110172 Statistical Mechanics +cond-mat/0110174 Strongly Correlated Electrons +cond-mat/0110175 Statistical Mechanics +cond-mat/0110176 Disordered Systems and Neural Networks +cond-mat/0110181 Superconductivity +cond-mat/0110184 Statistical Mechanics +cond-mat/0110185 Strongly Correlated Electrons +cond-mat/0110186 Soft Condensed Matter +cond-mat/0110187 Superconductivity +cond-mat/0110191 Strongly Correlated Electrons +cond-mat/0110192 Strongly Correlated Electrons +cond-mat/0110193 Mesoscale and Nanoscale Physics +cond-mat/0110194 Superconductivity +cond-mat/0110197 Strongly Correlated Electrons +cond-mat/0110198 Soft Condensed Matter +cond-mat/0110199 Disordered Systems and Neural Networks +cond-mat/0110200 Statistical Mechanics +cond-mat/0110201 Statistical Mechanics +cond-mat/0110202 Statistical Mechanics +cond-mat/0110203 Statistical Mechanics +cond-mat/0110204 Strongly Correlated Electrons +cond-mat/0110206 Mesoscale and Nanoscale Physics +cond-mat/0110207 Soft Condensed Matter +cond-mat/0110208 Statistical Mechanics +cond-mat/0110209 Strongly Correlated Electrons +cond-mat/0110212 Mesoscale and Nanoscale Physics +cond-mat/0110214 Superconductivity +cond-mat/0110215 Strongly Correlated Electrons +cond-mat/0110218 +cond-mat/0110219 Disordered Systems and Neural Networks +cond-mat/0110220 Superconductivity +cond-mat/0110221 Statistical Mechanics +cond-mat/0110224 +cond-mat/0110225 Statistical Mechanics +cond-mat/0110226 Superconductivity +cond-mat/0110227 Strongly Correlated Electrons +cond-mat/0110231 Superconductivity +cond-mat/0110233 Strongly Correlated Electrons +cond-mat/0110234 Superconductivity +cond-mat/0110235 Mesoscale and Nanoscale Physics +cond-mat/0110236 +cond-mat/0110237 Superconductivity +cond-mat/0110239 Statistical Mechanics +cond-mat/0110240 Materials Science +cond-mat/0110245 Statistical Mechanics +cond-mat/0110246 Strongly Correlated Electrons +cond-mat/0110247 Mesoscale and Nanoscale Physics +cond-mat/0110248 Mesoscale and Nanoscale Physics +cond-mat/0110249 Soft Condensed Matter +cond-mat/0110250 Mesoscale and Nanoscale Physics +cond-mat/0110251 Strongly Correlated Electrons +cond-mat/0110252 Strongly Correlated Electrons +cond-mat/0110254 Statistical Mechanics +cond-mat/0110255 Statistical Mechanics +cond-mat/0110256 +cond-mat/0110257 Statistical Mechanics +cond-mat/0110259 Disordered Systems and Neural Networks +cond-mat/0110260 Soft Condensed Matter +cond-mat/0110261 Mesoscale and Nanoscale Physics +cond-mat/0110262 Superconductivity +cond-mat/0110263 Materials Science +cond-mat/0110264 Strongly Correlated Electrons +cond-mat/0110265 Disordered Systems and Neural Networks +cond-mat/0110269 Materials Science +cond-mat/0110271 Superconductivity +cond-mat/0110272 Soft Condensed Matter +cond-mat/0110273 Statistical Mechanics +cond-mat/0110275 Materials Science +cond-mat/0110276 Soft Condensed Matter +cond-mat/0110278 Strongly Correlated Electrons +cond-mat/0110279 Statistical Mechanics +cond-mat/0110281 Superconductivity +cond-mat/0110282 Soft Condensed Matter +cond-mat/0110284 Strongly Correlated Electrons +cond-mat/0110285 +cond-mat/0110286 Statistical Mechanics +cond-mat/0110288 Statistical Mechanics +cond-mat/0110289 Strongly Correlated Electrons +cond-mat/0110291 Statistical Mechanics +cond-mat/0110292 Strongly Correlated Electrons +cond-mat/0110293 +cond-mat/0110294 Strongly Correlated Electrons +cond-mat/0110296 Superconductivity +cond-mat/0110297 Superconductivity +cond-mat/0110299 Mesoscale and Nanoscale Physics +cond-mat/0110300 Superconductivity +cond-mat/0110301 Statistical Mechanics +cond-mat/0110302 +cond-mat/0110303 Strongly Correlated Electrons +cond-mat/0110307 Mesoscale and Nanoscale Physics +cond-mat/0110309 Superconductivity +cond-mat/0110310 Statistical Mechanics +cond-mat/0110311 +cond-mat/0110313 Strongly Correlated Electrons +cond-mat/0110315 Strongly Correlated Electrons +cond-mat/0110318 Superconductivity +cond-mat/0110319 Materials Science +cond-mat/0110320 Materials Science +cond-mat/0110321 Disordered Systems and Neural Networks +cond-mat/0110324 Statistical Mechanics +cond-mat/0110325 Statistical Mechanics +cond-mat/0110330 Statistical Mechanics +cond-mat/0110333 Strongly Correlated Electrons +cond-mat/0110334 +cond-mat/0110335 Strongly Correlated Electrons +cond-mat/0110336 Statistical Mechanics +cond-mat/0110337 Soft Condensed Matter +cond-mat/0110338 Disordered Systems and Neural Networks +cond-mat/0110339 Superconductivity +cond-mat/0110341 +cond-mat/0110343 Statistical Mechanics +cond-mat/0110344 Statistical Mechanics +cond-mat/0110345 Statistical Mechanics +cond-mat/0110346 Superconductivity +cond-mat/0110347 Mesoscale and Nanoscale Physics +cond-mat/0110348 Mesoscale and Nanoscale Physics +cond-mat/0110349 Statistical Mechanics +cond-mat/0110350 Disordered Systems and Neural Networks +cond-mat/0110351 Statistical Mechanics +cond-mat/0110352 Strongly Correlated Electrons +cond-mat/0110353 Mesoscale and Nanoscale Physics +cond-mat/0110355 Mesoscale and Nanoscale Physics +cond-mat/0110358 Mesoscale and Nanoscale Physics +cond-mat/0110359 Disordered Systems and Neural Networks +cond-mat/0110360 Mesoscale and Nanoscale Physics +cond-mat/0110361 Superconductivity +cond-mat/0110363 Disordered Systems and Neural Networks +cond-mat/0110365 Statistical Mechanics +cond-mat/0110366 Mesoscale and Nanoscale Physics +cond-mat/0110367 Materials Science +cond-mat/0110369 Mesoscale and Nanoscale Physics +cond-mat/0110371 +cond-mat/0110374 Superconductivity +cond-mat/0110375 Materials Science +cond-mat/0110377 Superconductivity +cond-mat/0110380 Strongly Correlated Electrons +cond-mat/0110381 Mesoscale and Nanoscale Physics +cond-mat/0110382 Superconductivity +cond-mat/0110383 Superconductivity +cond-mat/0110385 Soft Condensed Matter +cond-mat/0110387 Soft Condensed Matter +cond-mat/0110388 Superconductivity +cond-mat/0110389 Soft Condensed Matter +cond-mat/0110392 Materials Science +cond-mat/0110394 Disordered Systems and Neural Networks +cond-mat/0110395 Mesoscale and Nanoscale Physics +cond-mat/0110397 Strongly Correlated Electrons +cond-mat/0110398 Strongly Correlated Electrons +cond-mat/0110400 Soft Condensed Matter +cond-mat/0110401 Mesoscale and Nanoscale Physics +cond-mat/0110402 Disordered Systems and Neural Networks +cond-mat/0110404 Statistical Mechanics +cond-mat/0110405 Materials Science +cond-mat/0110406 Soft Condensed Matter +cond-mat/0110408 Strongly Correlated Electrons +cond-mat/0110410 Strongly Correlated Electrons +cond-mat/0110412 Superconductivity +cond-mat/0110415 Superconductivity +cond-mat/0110416 Statistical Mechanics +cond-mat/0110417 Mesoscale and Nanoscale Physics +cond-mat/0110418 Strongly Correlated Electrons +cond-mat/0110420 Strongly Correlated Electrons +cond-mat/0110421 Superconductivity +cond-mat/0110422 Statistical Mechanics +cond-mat/0110423 Statistical Mechanics +cond-mat/0110424 Disordered Systems and Neural Networks +cond-mat/0110426 Statistical Mechanics +cond-mat/0110428 +cond-mat/0110429 Strongly Correlated Electrons +cond-mat/0110430 Materials Science +cond-mat/0110432 Mesoscale and Nanoscale Physics +cond-mat/0110433 Mesoscale and Nanoscale Physics +cond-mat/0110434 Mesoscale and Nanoscale Physics +cond-mat/0110436 Statistical Mechanics +cond-mat/0110437 Mesoscale and Nanoscale Physics +cond-mat/0110438 Statistical Mechanics +cond-mat/0110439 Superconductivity +cond-mat/0110441 +cond-mat/0110445 Statistical Mechanics +cond-mat/0110447 Soft Condensed Matter +cond-mat/0110449 +cond-mat/0110451 Mesoscale and Nanoscale Physics +cond-mat/0110452 Disordered Systems and Neural Networks +cond-mat/0110453 Disordered Systems and Neural Networks +cond-mat/0110455 Statistical Mechanics +cond-mat/0110458 Strongly Correlated Electrons +cond-mat/0110459 Superconductivity +cond-mat/0110460 Strongly Correlated Electrons +cond-mat/0110461 Soft Condensed Matter +cond-mat/0110462 Superconductivity +cond-mat/0110463 Strongly Correlated Electrons +cond-mat/0110465 Mesoscale and Nanoscale Physics +cond-mat/0110466 Materials Science +cond-mat/0110467 Disordered Systems and Neural Networks +cond-mat/0110468 Superconductivity +cond-mat/0110469 Statistical Mechanics +cond-mat/0110471 Materials Science +cond-mat/0110473 +cond-mat/0110475 Statistical Mechanics +cond-mat/0110477 Mesoscale and Nanoscale Physics +cond-mat/0110478 Strongly Correlated Electrons +cond-mat/0110480 Statistical Mechanics +cond-mat/0110481 Strongly Correlated Electrons +cond-mat/0110483 Superconductivity +cond-mat/0110484 Mesoscale and Nanoscale Physics +cond-mat/0110485 Statistical Mechanics +cond-mat/0110487 Superconductivity +cond-mat/0110488 Mesoscale and Nanoscale Physics +cond-mat/0110490 +cond-mat/0110491 Soft Condensed Matter +cond-mat/0110492 Strongly Correlated Electrons +cond-mat/0110493 Statistical Mechanics +cond-mat/0110494 Soft Condensed Matter +cond-mat/0110497 Statistical Mechanics +cond-mat/0110500 Statistical Mechanics +cond-mat/0110501 Disordered Systems and Neural Networks +cond-mat/0110503 Materials Science +cond-mat/0110504 Strongly Correlated Electrons +cond-mat/0110505 Mesoscale and Nanoscale Physics +cond-mat/0110506 Soft Condensed Matter +cond-mat/0110507 Strongly Correlated Electrons +cond-mat/0110508 Statistical Mechanics +cond-mat/0110509 Statistical Mechanics +cond-mat/0110510 Strongly Correlated Electrons +cond-mat/0110511 Materials Science +cond-mat/0110515 Materials Science +cond-mat/0110518 Soft Condensed Matter +cond-mat/0110519 Superconductivity +cond-mat/0110522 Superconductivity +cond-mat/0110524 Mesoscale and Nanoscale Physics +cond-mat/0110525 Strongly Correlated Electrons +cond-mat/0110526 Materials Science +cond-mat/0110529 Statistical Mechanics +cond-mat/0110531 Materials Science +cond-mat/0110532 Statistical Mechanics +cond-mat/0110533 +cond-mat/0110534 Strongly Correlated Electrons +cond-mat/0110535 Materials Science +cond-mat/0110536 Statistical Mechanics +cond-mat/0110537 Statistical Mechanics +cond-mat/0110539 +cond-mat/0110542 Statistical Mechanics +cond-mat/0110543 +cond-mat/0110544 Superconductivity +cond-mat/0110546 Statistical Mechanics +cond-mat/0110547 Strongly Correlated Electrons +cond-mat/0110549 +cond-mat/0110550 Strongly Correlated Electrons +cond-mat/0110551 +cond-mat/0110552 Materials Science +cond-mat/0110554 Statistical Mechanics +cond-mat/0110555 Soft Condensed Matter +cond-mat/0110556 Statistical Mechanics +cond-mat/0110557 Statistical Mechanics +cond-mat/0110558 Statistical Mechanics +cond-mat/0110560 Statistical Mechanics +cond-mat/0110563 Materials Science +cond-mat/0110564 Superconductivity +cond-mat/0110565 Statistical Mechanics +cond-mat/0110566 Statistical Mechanics +cond-mat/0110567 Statistical Mechanics +cond-mat/0110568 Materials Science +cond-mat/0110569 +cond-mat/0110570 Materials Science +cond-mat/0110573 Strongly Correlated Electrons +cond-mat/0110577 Strongly Correlated Electrons +cond-mat/0110578 Statistical Mechanics +cond-mat/0110579 Statistical Mechanics +cond-mat/0110580 Superconductivity +cond-mat/0110581 Soft Condensed Matter +cond-mat/0110582 Strongly Correlated Electrons +cond-mat/0110583 Mesoscale and Nanoscale Physics +cond-mat/0110584 Mesoscale and Nanoscale Physics +cond-mat/0110585 Statistical Mechanics +cond-mat/0110586 Strongly Correlated Electrons +cond-mat/0110587 Strongly Correlated Electrons +cond-mat/0110588 Statistical Mechanics +cond-mat/0110590 Strongly Correlated Electrons +cond-mat/0110591 Superconductivity +cond-mat/0110595 Statistical Mechanics +cond-mat/0110598 Materials Science +cond-mat/0110600 +cond-mat/0110604 Superconductivity +cond-mat/0110605 Statistical Mechanics +cond-mat/0110606 +cond-mat/0110608 Strongly Correlated Electrons +cond-mat/0110609 Mesoscale and Nanoscale Physics +cond-mat/0110610 Soft Condensed Matter +cond-mat/0110613 +cond-mat/0110614 +cond-mat/0110615 Mesoscale and Nanoscale Physics +cond-mat/0110617 Soft Condensed Matter +cond-mat/0110618 Statistical Mechanics +cond-mat/0110619 Superconductivity +cond-mat/0110620 Strongly Correlated Electrons +cond-mat/0110621 Mesoscale and Nanoscale Physics +cond-mat/0110623 Disordered Systems and Neural Networks +cond-mat/0110624 Materials Science +cond-mat/0110627 +cond-mat/0110628 Statistical Mechanics +cond-mat/0110630 Statistical Mechanics +cond-mat/0110631 Superconductivity +cond-mat/0110633 Superconductivity +cond-mat/0110635 Statistical Mechanics +cond-mat/0110636 Soft Condensed Matter +cond-mat/0110639 Mesoscale and Nanoscale Physics +cond-mat/0110640 Superconductivity +cond-mat/0110642 Superconductivity +cond-mat/0110644 Soft Condensed Matter +cond-mat/0110646 Statistical Mechanics +cond-mat/0110648 Statistical Mechanics +cond-mat/0110650 Materials Science +cond-mat/0110651 Statistical Mechanics +cond-mat/0110652 Soft Condensed Matter +cond-mat/0110653 Statistical Mechanics +cond-mat/0110655 Statistical Mechanics +cond-mat/0110658 +cond-mat/0111002 Superconductivity +cond-mat/0111003 Disordered Systems and Neural Networks +cond-mat/0111004 Superconductivity +cond-mat/0111005 Soft Condensed Matter +cond-mat/0111006 Mesoscale and Nanoscale Physics +cond-mat/0111008 Statistical Mechanics +cond-mat/0111013 Statistical Mechanics +cond-mat/0111019 Materials Science +cond-mat/0111020 Materials Science +cond-mat/0111022 Superconductivity +cond-mat/0111023 Superconductivity +cond-mat/0111024 Strongly Correlated Electrons +cond-mat/0111025 Strongly Correlated Electrons +cond-mat/0111027 Disordered Systems and Neural Networks +cond-mat/0111028 Superconductivity +cond-mat/0111029 Materials Science +cond-mat/0111030 Superconductivity +cond-mat/0111033 Soft Condensed Matter +cond-mat/0111035 Statistical Mechanics +cond-mat/0111037 Disordered Systems and Neural Networks +cond-mat/0111038 Strongly Correlated Electrons +cond-mat/0111039 Superconductivity +cond-mat/0111040 +cond-mat/0111042 Superconductivity +cond-mat/0111043 Strongly Correlated Electrons +cond-mat/0111046 Materials Science +cond-mat/0111047 Disordered Systems and Neural Networks +cond-mat/0111048 Strongly Correlated Electrons +cond-mat/0111049 Mesoscale and Nanoscale Physics +cond-mat/0111050 Mesoscale and Nanoscale Physics +cond-mat/0111053 Mesoscale and Nanoscale Physics +cond-mat/0111054 Materials Science +cond-mat/0111055 Statistical Mechanics +cond-mat/0111056 Mesoscale and Nanoscale Physics +cond-mat/0111059 Strongly Correlated Electrons +cond-mat/0111063 Materials Science +cond-mat/0111065 Strongly Correlated Electrons +cond-mat/0111066 Statistical Mechanics +cond-mat/0111067 Materials Science +cond-mat/0111068 Statistical Mechanics +cond-mat/0111069 Materials Science +cond-mat/0111072 Statistical Mechanics +cond-mat/0111073 Disordered Systems and Neural Networks +cond-mat/0111074 Strongly Correlated Electrons +cond-mat/0111075 Superconductivity +cond-mat/0111076 Materials Science +cond-mat/0111077 Superconductivity +cond-mat/0111078 Strongly Correlated Electrons +cond-mat/0111080 Disordered Systems and Neural Networks +cond-mat/0111081 Disordered Systems and Neural Networks +cond-mat/0111082 Soft Condensed Matter +cond-mat/0111083 Superconductivity +cond-mat/0111084 Materials Science +cond-mat/0111086 Statistical Mechanics +cond-mat/0111087 Soft Condensed Matter +cond-mat/0111088 Superconductivity +cond-mat/0111089 Materials Science +cond-mat/0111091 Disordered Systems and Neural Networks +cond-mat/0111093 Statistical Mechanics +cond-mat/0111095 Soft Condensed Matter +cond-mat/0111097 Materials Science +cond-mat/0111098 Superconductivity +cond-mat/0111099 Soft Condensed Matter +cond-mat/0111102 Strongly Correlated Electrons +cond-mat/0111103 Materials Science +cond-mat/0111105 Strongly Correlated Electrons +cond-mat/0111109 Superconductivity +cond-mat/0111110 Mesoscale and Nanoscale Physics +cond-mat/0111111 Statistical Mechanics +cond-mat/0111112 Statistical Mechanics +cond-mat/0111113 Strongly Correlated Electrons +cond-mat/0111114 Statistical Mechanics +cond-mat/0111115 Superconductivity +cond-mat/0111117 Soft Condensed Matter +cond-mat/0111118 Statistical Mechanics +cond-mat/0111119 Strongly Correlated Electrons +cond-mat/0111120 Mesoscale and Nanoscale Physics +cond-mat/0111121 Soft Condensed Matter +cond-mat/0111122 Superconductivity +cond-mat/0111123 Strongly Correlated Electrons +cond-mat/0111124 Statistical Mechanics +cond-mat/0111125 Soft Condensed Matter +cond-mat/0111126 Superconductivity +cond-mat/0111127 Strongly Correlated Electrons +cond-mat/0111128 Superconductivity +cond-mat/0111129 Disordered Systems and Neural Networks +cond-mat/0111131 Materials Science +cond-mat/0111132 +cond-mat/0111133 Statistical Mechanics +cond-mat/0111134 Strongly Correlated Electrons +cond-mat/0111138 Materials Science +cond-mat/0111140 Soft Condensed Matter +cond-mat/0111142 Statistical Mechanics +cond-mat/0111143 Mesoscale and Nanoscale Physics +cond-mat/0111145 Materials Science +cond-mat/0111146 Statistical Mechanics +cond-mat/0111147 Statistical Mechanics +cond-mat/0111153 Disordered Systems and Neural Networks +cond-mat/0111154 Strongly Correlated Electrons +cond-mat/0111156 Superconductivity +cond-mat/0111157 Statistical Mechanics +cond-mat/0111159 Statistical Mechanics +cond-mat/0111161 Soft Condensed Matter +cond-mat/0111162 Strongly Correlated Electrons +cond-mat/0111165 +cond-mat/0111170 Statistical Mechanics +cond-mat/0111171 Statistical Mechanics +cond-mat/0111172 Disordered Systems and Neural Networks +cond-mat/0111173 Soft Condensed Matter +cond-mat/0111176 Disordered Systems and Neural Networks +cond-mat/0111177 Strongly Correlated Electrons +cond-mat/0111178 Superconductivity +cond-mat/0111179 Superconductivity +cond-mat/0111180 Materials Science +cond-mat/0111181 Statistical Mechanics +cond-mat/0111187 Superconductivity +cond-mat/0111190 Strongly Correlated Electrons +cond-mat/0111192 Superconductivity +cond-mat/0111194 +cond-mat/0111195 Superconductivity +cond-mat/0111196 Strongly Correlated Electrons +cond-mat/0111198 Strongly Correlated Electrons +cond-mat/0111199 Materials Science +cond-mat/0111200 Mesoscale and Nanoscale Physics +cond-mat/0111201 Strongly Correlated Electrons +cond-mat/0111202 +cond-mat/0111204 Strongly Correlated Electrons +cond-mat/0111205 Superconductivity +cond-mat/0111207 Statistical Mechanics +cond-mat/0111208 Mesoscale and Nanoscale Physics +cond-mat/0111209 Mesoscale and Nanoscale Physics +cond-mat/0111210 Materials Science +cond-mat/0111211 Materials Science +cond-mat/0111212 Superconductivity +cond-mat/0111213 Statistical Mechanics +cond-mat/0111214 Superconductivity +cond-mat/0111215 Superconductivity +cond-mat/0111216 Superconductivity +cond-mat/0111217 Superconductivity +cond-mat/0111218 Materials Science +cond-mat/0111219 Statistical Mechanics +cond-mat/0111221 Soft Condensed Matter +cond-mat/0111226 Strongly Correlated Electrons +cond-mat/0111227 Materials Science +cond-mat/0111228 Strongly Correlated Electrons +cond-mat/0111229 Mesoscale and Nanoscale Physics +cond-mat/0111231 Superconductivity +cond-mat/0111233 +cond-mat/0111236 Statistical Mechanics +cond-mat/0111237 Statistical Mechanics +cond-mat/0111239 Soft Condensed Matter +cond-mat/0111240 Soft Condensed Matter +cond-mat/0111242 Mesoscale and Nanoscale Physics +cond-mat/0111243 Superconductivity +cond-mat/0111247 Soft Condensed Matter +cond-mat/0111249 Strongly Correlated Electrons +cond-mat/0111250 Superconductivity +cond-mat/0111252 Materials Science +cond-mat/0111253 Disordered Systems and Neural Networks +cond-mat/0111256 Superconductivity +cond-mat/0111258 Materials Science +cond-mat/0111260 Superconductivity +cond-mat/0111262 Superconductivity +cond-mat/0111264 Strongly Correlated Electrons +cond-mat/0111265 Materials Science +cond-mat/0111266 +cond-mat/0111269 Strongly Correlated Electrons +cond-mat/0111271 Superconductivity +cond-mat/0111272 Statistical Mechanics +cond-mat/0111275 +cond-mat/0111276 Disordered Systems and Neural Networks +cond-mat/0111277 Disordered Systems and Neural Networks +cond-mat/0111278 Materials Science +cond-mat/0111279 Superconductivity +cond-mat/0111282 Mesoscale and Nanoscale Physics +cond-mat/0111284 +cond-mat/0111286 Soft Condensed Matter +cond-mat/0111289 Disordered Systems and Neural Networks +cond-mat/0111290 Mesoscale and Nanoscale Physics +cond-mat/0111292 Superconductivity +cond-mat/0111294 Strongly Correlated Electrons +cond-mat/0111295 Disordered Systems and Neural Networks +cond-mat/0111297 Mesoscale and Nanoscale Physics +cond-mat/0111298 Soft Condensed Matter +cond-mat/0111303 +cond-mat/0111305 Statistical Mechanics +cond-mat/0111306 Soft Condensed Matter +cond-mat/0111308 Soft Condensed Matter +cond-mat/0111310 Statistical Mechanics +cond-mat/0111311 Soft Condensed Matter +cond-mat/0111312 Soft Condensed Matter +cond-mat/0111313 Soft Condensed Matter +cond-mat/0111315 Strongly Correlated Electrons +cond-mat/0111317 Statistical Mechanics +cond-mat/0111320 Superconductivity +cond-mat/0111322 Materials Science +cond-mat/0111323 Statistical Mechanics +cond-mat/0111325 Statistical Mechanics +cond-mat/0111326 Statistical Mechanics +cond-mat/0111328 Strongly Correlated Electrons +cond-mat/0111330 Statistical Mechanics +cond-mat/0111331 Statistical Mechanics +cond-mat/0111332 Superconductivity +cond-mat/0111335 Soft Condensed Matter +cond-mat/0111341 Soft Condensed Matter +cond-mat/0111343 +cond-mat/0111344 Soft Condensed Matter +cond-mat/0111347 Statistical Mechanics +cond-mat/0111348 Superconductivity +cond-mat/0111350 Mesoscale and Nanoscale Physics +cond-mat/0111351 Superconductivity +cond-mat/0111353 Superconductivity +cond-mat/0111354 Disordered Systems and Neural Networks +cond-mat/0111355 Strongly Correlated Electrons +cond-mat/0111356 Soft Condensed Matter +cond-mat/0111358 Mesoscale and Nanoscale Physics +cond-mat/0111362 Statistical Mechanics +cond-mat/0111363 Materials Science +cond-mat/0111365 Superconductivity +cond-mat/0111368 Strongly Correlated Electrons +cond-mat/0111373 Soft Condensed Matter +cond-mat/0111374 Statistical Mechanics +cond-mat/0111375 +cond-mat/0111376 Materials Science +cond-mat/0111377 Mesoscale and Nanoscale Physics +cond-mat/0111378 Mesoscale and Nanoscale Physics +cond-mat/0111379 Superconductivity +cond-mat/0111381 Mesoscale and Nanoscale Physics +cond-mat/0111382 Mesoscale and Nanoscale Physics +cond-mat/0111385 Superconductivity +cond-mat/0111388 Superconductivity +cond-mat/0111391 Soft Condensed Matter +cond-mat/0111392 Superconductivity +cond-mat/0111393 Strongly Correlated Electrons +cond-mat/0111394 Disordered Systems and Neural Networks +cond-mat/0111395 Materials Science +cond-mat/0111398 Statistical Mechanics +cond-mat/0111399 Statistical Mechanics +cond-mat/0111401 Statistical Mechanics +cond-mat/0111402 Mesoscale and Nanoscale Physics +cond-mat/0111403 Mesoscale and Nanoscale Physics +cond-mat/0111404 Superconductivity +cond-mat/0111408 Materials Science +cond-mat/0111409 Disordered Systems and Neural Networks +cond-mat/0111410 Strongly Correlated Electrons +cond-mat/0111412 Materials Science +cond-mat/0111416 Statistical Mechanics +cond-mat/0111419 Statistical Mechanics +cond-mat/0111420 Materials Science +cond-mat/0111421 Superconductivity +cond-mat/0111424 Strongly Correlated Electrons +cond-mat/0111425 Statistical Mechanics +cond-mat/0111426 Strongly Correlated Electrons +cond-mat/0111427 Statistical Mechanics +cond-mat/0111428 Disordered Systems and Neural Networks +cond-mat/0111429 Statistical Mechanics +cond-mat/0111431 Materials Science +cond-mat/0111432 Strongly Correlated Electrons +cond-mat/0111434 +cond-mat/0111435 Superconductivity +cond-mat/0111438 Soft Condensed Matter +cond-mat/0111441 +cond-mat/0111444 +cond-mat/0111445 Superconductivity +cond-mat/0111446 +cond-mat/0111447 +cond-mat/0111448 Superconductivity +cond-mat/0111450 Superconductivity +cond-mat/0111451 Materials Science +cond-mat/0111453 Statistical Mechanics +cond-mat/0111455 Statistical Mechanics +cond-mat/0111457 Superconductivity +cond-mat/0111458 Statistical Mechanics +cond-mat/0111460 Superconductivity +cond-mat/0111461 Strongly Correlated Electrons +cond-mat/0111464 Soft Condensed Matter +cond-mat/0111466 Strongly Correlated Electrons +cond-mat/0111467 Statistical Mechanics +cond-mat/0111468 Statistical Mechanics +cond-mat/0111470 Statistical Mechanics +cond-mat/0111473 Strongly Correlated Electrons +cond-mat/0111474 Strongly Correlated Electrons +cond-mat/0111477 Materials Science +cond-mat/0111479 Materials Science +cond-mat/0111481 +cond-mat/0111483 Superconductivity +cond-mat/0111485 Statistical Mechanics +cond-mat/0111488 Statistical Mechanics +cond-mat/0111489 Strongly Correlated Electrons +cond-mat/0111490 Statistical Mechanics +cond-mat/0111491 Statistical Mechanics +cond-mat/0111492 Mesoscale and Nanoscale Physics +cond-mat/0111493 Disordered Systems and Neural Networks +cond-mat/0111496 Strongly Correlated Electrons +cond-mat/0111497 Materials Science +cond-mat/0111498 Strongly Correlated Electrons +cond-mat/0111499 Statistical Mechanics +cond-mat/0111501 Mesoscale and Nanoscale Physics +cond-mat/0111503 Statistical Mechanics +cond-mat/0111506 Statistical Mechanics +cond-mat/0111507 +cond-mat/0111510 Materials Science +cond-mat/0111511 Materials Science +cond-mat/0111512 Statistical Mechanics +cond-mat/0111514 Mesoscale and Nanoscale Physics +cond-mat/0111519 Soft Condensed Matter +cond-mat/0111521 Strongly Correlated Electrons +cond-mat/0111522 Statistical Mechanics +cond-mat/0111524 Materials Science +cond-mat/0111526 +cond-mat/0111528 Superconductivity +cond-mat/0111530 Mesoscale and Nanoscale Physics +cond-mat/0111532 Mesoscale and Nanoscale Physics +cond-mat/0111533 Strongly Correlated Electrons +cond-mat/0111534 Strongly Correlated Electrons +cond-mat/0111535 Statistical Mechanics +cond-mat/0111536 Strongly Correlated Electrons +cond-mat/0111537 Statistical Mechanics +cond-mat/0111538 Soft Condensed Matter +cond-mat/0111539 Superconductivity +cond-mat/0111540 Strongly Correlated Electrons +cond-mat/0111541 Statistical Mechanics +cond-mat/0111542 Superconductivity +cond-mat/0111543 Mesoscale and Nanoscale Physics +cond-mat/0111544 Superconductivity +cond-mat/0111545 Statistical Mechanics +cond-mat/0111546 Disordered Systems and Neural Networks +cond-mat/0111547 Disordered Systems and Neural Networks +cond-mat/0111548 Superconductivity +cond-mat/0111549 Superconductivity +cond-mat/0111550 Superconductivity +cond-mat/0111552 Statistical Mechanics +cond-mat/0111554 Superconductivity +cond-mat/0111555 Superconductivity +cond-mat/0111556 Statistical Mechanics +cond-mat/0111557 Mesoscale and Nanoscale Physics +cond-mat/0111559 Statistical Mechanics +cond-mat/0111560 +cond-mat/0111564 Mesoscale and Nanoscale Physics +cond-mat/0111565 Superconductivity +cond-mat/0111566 Statistical Mechanics +cond-mat/0111567 Statistical Mechanics +cond-mat/0111570 Strongly Correlated Electrons +cond-mat/0111571 Statistical Mechanics +cond-mat/0111572 Superconductivity +cond-mat/0111573 +cond-mat/0111574 Mesoscale and Nanoscale Physics +cond-mat/0111575 Mesoscale and Nanoscale Physics +cond-mat/0111578 Strongly Correlated Electrons +cond-mat/0111580 Mesoscale and Nanoscale Physics +cond-mat/0111581 Statistical Mechanics +cond-mat/0111583 Disordered Systems and Neural Networks +cond-mat/0111585 Superconductivity +cond-mat/0111586 Statistical Mechanics +cond-mat/0111587 Strongly Correlated Electrons +cond-mat/0111588 Statistical Mechanics +cond-mat/0111589 +cond-mat/0111590 +cond-mat/0111592 Superconductivity +cond-mat/0111593 Strongly Correlated Electrons +cond-mat/0112001 Statistical Mechanics +cond-mat/0112002 Strongly Correlated Electrons +cond-mat/0112005 Strongly Correlated Electrons +cond-mat/0112006 Materials Science +cond-mat/0112007 +cond-mat/0112010 Materials Science +cond-mat/0112011 Mesoscale and Nanoscale Physics +cond-mat/0112012 Strongly Correlated Electrons +cond-mat/0112013 Mesoscale and Nanoscale Physics +cond-mat/0112014 +cond-mat/0112015 Disordered Systems and Neural Networks +cond-mat/0112016 Strongly Correlated Electrons +cond-mat/0112017 Superconductivity +cond-mat/0112019 Mesoscale and Nanoscale Physics +cond-mat/0112020 Mesoscale and Nanoscale Physics +cond-mat/0112024 Superconductivity +cond-mat/0112025 Statistical Mechanics +cond-mat/0112026 Statistical Mechanics +cond-mat/0112027 Superconductivity +cond-mat/0112028 Superconductivity +cond-mat/0112029 Strongly Correlated Electrons +cond-mat/0112030 Superconductivity +cond-mat/0112031 Statistical Mechanics +cond-mat/0112032 Statistical Mechanics +cond-mat/0112035 +cond-mat/0112037 Statistical Mechanics +cond-mat/0112038 Strongly Correlated Electrons +cond-mat/0112039 Materials Science +cond-mat/0112040 +cond-mat/0112041 Materials Science +cond-mat/0112042 Superconductivity +cond-mat/0112043 Statistical Mechanics +cond-mat/0112046 Statistical Mechanics +cond-mat/0112047 Statistical Mechanics +cond-mat/0112048 Materials Science +cond-mat/0112050 Statistical Mechanics +cond-mat/0112051 Materials Science +cond-mat/0112053 Soft Condensed Matter +cond-mat/0112054 Strongly Correlated Electrons +cond-mat/0112056 Soft Condensed Matter +cond-mat/0112057 Statistical Mechanics +cond-mat/0112059 Strongly Correlated Electrons +cond-mat/0112060 Statistical Mechanics +cond-mat/0112064 Materials Science +cond-mat/0112066 Statistical Mechanics +cond-mat/0112071 Strongly Correlated Electrons +cond-mat/0112072 Statistical Mechanics +cond-mat/0112073 Soft Condensed Matter +cond-mat/0112074 Statistical Mechanics +cond-mat/0112075 Superconductivity +cond-mat/0112076 Statistical Mechanics +cond-mat/0112078 Mesoscale and Nanoscale Physics +cond-mat/0112080 +cond-mat/0112081 Statistical Mechanics +cond-mat/0112083 Strongly Correlated Electrons +cond-mat/0112088 Mesoscale and Nanoscale Physics +cond-mat/0112091 Soft Condensed Matter +cond-mat/0112093 Disordered Systems and Neural Networks +cond-mat/0112094 Mesoscale and Nanoscale Physics +cond-mat/0112095 Soft Condensed Matter +cond-mat/0112097 Statistical Mechanics +cond-mat/0112098 +cond-mat/0112099 Mesoscale and Nanoscale Physics +cond-mat/0112100 Superconductivity +cond-mat/0112101 Soft Condensed Matter +cond-mat/0112102 Statistical Mechanics +cond-mat/0112106 Statistical Mechanics +cond-mat/0112107 Statistical Mechanics +cond-mat/0112108 +cond-mat/0112109 Superconductivity +cond-mat/0112110 Statistical Mechanics +cond-mat/0112111 +cond-mat/0112112 Mesoscale and Nanoscale Physics +cond-mat/0112113 Statistical Mechanics +cond-mat/0112118 Strongly Correlated Electrons +cond-mat/0112120 Statistical Mechanics +cond-mat/0112123 Materials Science +cond-mat/0112124 Statistical Mechanics +cond-mat/0112125 Soft Condensed Matter +cond-mat/0112126 Superconductivity +cond-mat/0112127 Soft Condensed Matter +cond-mat/0112130 Statistical Mechanics +cond-mat/0112132 Statistical Mechanics +cond-mat/0112133 Statistical Mechanics +cond-mat/0112134 Superconductivity +cond-mat/0112135 +cond-mat/0112136 Mesoscale and Nanoscale Physics +cond-mat/0112139 Soft Condensed Matter +cond-mat/0112140 Strongly Correlated Electrons +cond-mat/0112141 Materials Science +cond-mat/0112142 Statistical Mechanics +cond-mat/0112143 Statistical Mechanics +cond-mat/0112144 Superconductivity +cond-mat/0112145 Strongly Correlated Electrons +cond-mat/0112147 Strongly Correlated Electrons +cond-mat/0112148 Statistical Mechanics +cond-mat/0112149 Disordered Systems and Neural Networks +cond-mat/0112150 +cond-mat/0112151 Strongly Correlated Electrons +cond-mat/0112152 Strongly Correlated Electrons +cond-mat/0112154 Strongly Correlated Electrons +cond-mat/0112155 Mesoscale and Nanoscale Physics +cond-mat/0112157 Mesoscale and Nanoscale Physics +cond-mat/0112158 +cond-mat/0112160 Superconductivity +cond-mat/0112168 +cond-mat/0112172 Mesoscale and Nanoscale Physics +cond-mat/0112173 Materials Science +cond-mat/0112174 Materials Science +cond-mat/0112175 Mesoscale and Nanoscale Physics +cond-mat/0112176 +cond-mat/0112178 Strongly Correlated Electrons +cond-mat/0112180 +cond-mat/0112181 Soft Condensed Matter +cond-mat/0112182 Statistical Mechanics +cond-mat/0112183 Statistical Mechanics +cond-mat/0112184 Materials Science +cond-mat/0112185 Statistical Mechanics +cond-mat/0112187 Disordered Systems and Neural Networks +cond-mat/0112188 Strongly Correlated Electrons +cond-mat/0112189 Mesoscale and Nanoscale Physics +cond-mat/0112190 Statistical Mechanics +cond-mat/0112191 Superconductivity +cond-mat/0112194 Materials Science +cond-mat/0112196 Strongly Correlated Electrons +cond-mat/0112197 Superconductivity +cond-mat/0112198 Superconductivity +cond-mat/0112202 +cond-mat/0112203 +cond-mat/0112204 Strongly Correlated Electrons +cond-mat/0112205 Statistical Mechanics +cond-mat/0112206 Strongly Correlated Electrons +cond-mat/0112207 Strongly Correlated Electrons +cond-mat/0112208 Strongly Correlated Electrons +cond-mat/0112209 Superconductivity +cond-mat/0112210 Superconductivity +cond-mat/0112211 Statistical Mechanics +cond-mat/0112212 Superconductivity +cond-mat/0112214 Materials Science +cond-mat/0112217 Materials Science +cond-mat/0112218 +cond-mat/0112219 Strongly Correlated Electrons +cond-mat/0112222 Statistical Mechanics +cond-mat/0112223 Mesoscale and Nanoscale Physics +cond-mat/0112225 Mesoscale and Nanoscale Physics +cond-mat/0112228 Statistical Mechanics +cond-mat/0112229 Soft Condensed Matter +cond-mat/0112230 Materials Science +cond-mat/0112232 Strongly Correlated Electrons +cond-mat/0112233 Mesoscale and Nanoscale Physics +cond-mat/0112236 Statistical Mechanics +cond-mat/0112237 +cond-mat/0112238 Statistical Mechanics +cond-mat/0112241 Statistical Mechanics +cond-mat/0112242 Mesoscale and Nanoscale Physics +cond-mat/0112244 Mesoscale and Nanoscale Physics +cond-mat/0112246 Soft Condensed Matter +cond-mat/0112247 Soft Condensed Matter +cond-mat/0112249 Strongly Correlated Electrons +cond-mat/0112250 Superconductivity +cond-mat/0112252 Strongly Correlated Electrons +cond-mat/0112253 Mesoscale and Nanoscale Physics +cond-mat/0112256 Statistical Mechanics +cond-mat/0112258 Strongly Correlated Electrons +cond-mat/0112260 Disordered Systems and Neural Networks +cond-mat/0112261 Disordered Systems and Neural Networks +cond-mat/0112264 Materials Science +cond-mat/0112267 Disordered Systems and Neural Networks +cond-mat/0112269 Superconductivity +cond-mat/0112272 Statistical Mechanics +cond-mat/0112273 Strongly Correlated Electrons +cond-mat/0112274 Disordered Systems and Neural Networks +cond-mat/0112275 Statistical Mechanics +cond-mat/0112277 Statistical Mechanics +cond-mat/0112279 +cond-mat/0112280 Statistical Mechanics +cond-mat/0112283 Soft Condensed Matter +cond-mat/0112287 Materials Science +cond-mat/0112288 Soft Condensed Matter +cond-mat/0112289 Statistical Mechanics +cond-mat/0112290 Disordered Systems and Neural Networks +cond-mat/0112291 Soft Condensed Matter +cond-mat/0112293 Disordered Systems and Neural Networks +cond-mat/0112295 Strongly Correlated Electrons +cond-mat/0112296 Mesoscale and Nanoscale Physics +cond-mat/0112297 Disordered Systems and Neural Networks +cond-mat/0112298 Mesoscale and Nanoscale Physics +cond-mat/0112303 Mesoscale and Nanoscale Physics +cond-mat/0112306 Soft Condensed Matter +cond-mat/0112311 Soft Condensed Matter +cond-mat/0112312 Statistical Mechanics +cond-mat/0112313 Superconductivity +cond-mat/0112314 Mesoscale and Nanoscale Physics +cond-mat/0112315 +cond-mat/0112322 Soft Condensed Matter +cond-mat/0112327 +cond-mat/0112328 Strongly Correlated Electrons +cond-mat/0112329 Superconductivity +cond-mat/0112330 Mesoscale and Nanoscale Physics +cond-mat/0112331 Mesoscale and Nanoscale Physics +cond-mat/0112333 Statistical Mechanics +cond-mat/0112334 Mesoscale and Nanoscale Physics +cond-mat/0112335 Mesoscale and Nanoscale Physics +cond-mat/0112336 Statistical Mechanics +cond-mat/0112337 Soft Condensed Matter +cond-mat/0112338 Statistical Mechanics +cond-mat/0112340 Strongly Correlated Electrons +cond-mat/0112342 Statistical Mechanics +cond-mat/0112344 Strongly Correlated Electrons +cond-mat/0112345 Statistical Mechanics +cond-mat/0112346 Strongly Correlated Electrons +cond-mat/0112347 Strongly Correlated Electrons +cond-mat/0112348 Statistical Mechanics +cond-mat/0112349 Disordered Systems and Neural Networks +cond-mat/0112350 Superconductivity +cond-mat/0112351 Superconductivity +cond-mat/0112352 Superconductivity +cond-mat/0112353 Superconductivity +cond-mat/0112354 Statistical Mechanics +cond-mat/0112355 Soft Condensed Matter +cond-mat/0112356 Statistical Mechanics +cond-mat/0112357 Superconductivity +cond-mat/0112359 Materials Science +cond-mat/0112361 Statistical Mechanics +cond-mat/0112362 Statistical Mechanics +cond-mat/0112366 Materials Science +cond-mat/0112367 Mesoscale and Nanoscale Physics +cond-mat/0112369 Superconductivity +cond-mat/0112370 Mesoscale and Nanoscale Physics +cond-mat/0112372 +cond-mat/0112373 Statistical Mechanics +cond-mat/0112374 Strongly Correlated Electrons +cond-mat/0112377 Statistical Mechanics +cond-mat/0112378 Disordered Systems and Neural Networks +cond-mat/0112380 Strongly Correlated Electrons +cond-mat/0112385 Strongly Correlated Electrons +cond-mat/0112388 Statistical Mechanics +cond-mat/0112390 Strongly Correlated Electrons +cond-mat/0112391 Strongly Correlated Electrons +cond-mat/0112392 Superconductivity +cond-mat/0112393 Soft Condensed Matter +cond-mat/0112394 +cond-mat/0112400 Statistical Mechanics +cond-mat/0112402 Materials Science +cond-mat/0112403 Mesoscale and Nanoscale Physics +cond-mat/0112406 Superconductivity +cond-mat/0112409 Superconductivity +cond-mat/0112410 +cond-mat/0112411 Mesoscale and Nanoscale Physics +cond-mat/0112416 Mesoscale and Nanoscale Physics +cond-mat/0112418 Statistical Mechanics +cond-mat/0112419 Mesoscale and Nanoscale Physics +cond-mat/0112420 Strongly Correlated Electrons +cond-mat/0112423 Strongly Correlated Electrons +cond-mat/0112426 Mesoscale and Nanoscale Physics +cond-mat/0112427 Soft Condensed Matter +cond-mat/0112428 Strongly Correlated Electrons +cond-mat/0112431 Disordered Systems and Neural Networks +cond-mat/0112432 Mesoscale and Nanoscale Physics +cond-mat/0112435 Superconductivity +cond-mat/0112438 Strongly Correlated Electrons +cond-mat/0112439 Statistical Mechanics +cond-mat/0112441 Statistical Mechanics +cond-mat/0112443 Strongly Correlated Electrons +cond-mat/0112445 Mesoscale and Nanoscale Physics +cond-mat/0112446 Mesoscale and Nanoscale Physics +cond-mat/0112448 Superconductivity +cond-mat/0112449 Mesoscale and Nanoscale Physics +cond-mat/0112450 Materials Science +cond-mat/0112451 Materials Science +cond-mat/0112452 Superconductivity +cond-mat/0112455 Mesoscale and Nanoscale Physics +cond-mat/0112456 Superconductivity +cond-mat/0112457 Disordered Systems and Neural Networks +cond-mat/0112461 +cond-mat/0112462 Mesoscale and Nanoscale Physics +cond-mat/0112464 Disordered Systems and Neural Networks +cond-mat/0112467 Superconductivity +cond-mat/0112472 Statistical Mechanics +cond-mat/0112476 Soft Condensed Matter +cond-mat/0112479 Statistical Mechanics +cond-mat/0112481 Strongly Correlated Electrons +cond-mat/0112482 Statistical Mechanics +cond-mat/0112483 Statistical Mechanics +cond-mat/0112486 Superconductivity +cond-mat/0112487 +cond-mat/0112488 Soft Condensed Matter +cond-mat/0112490 +cond-mat/0112491 +cond-mat/0112494 Statistical Mechanics +cond-mat/0112496 Soft Condensed Matter +cond-mat/0112500 Mesoscale and Nanoscale Physics +cond-mat/0112501 Statistical Mechanics +cond-mat/0112502 Statistical Mechanics +cond-mat/0112505 Superconductivity +cond-mat/0112506 +cond-mat/0112507 Strongly Correlated Electrons +cond-mat/0112508 Strongly Correlated Electrons +cond-mat/0112509 Strongly Correlated Electrons +cond-mat/0201002 +cond-mat/0201005 Strongly Correlated Electrons +cond-mat/0201008 Statistical Mechanics +cond-mat/0201010 Superconductivity +cond-mat/0201011 Statistical Mechanics +cond-mat/0201014 Statistical Mechanics +cond-mat/0201019 Superconductivity +cond-mat/0201020 +cond-mat/0201021 Superconductivity +cond-mat/0201023 Mesoscale and Nanoscale Physics +cond-mat/0201025 Soft Condensed Matter +cond-mat/0201026 Mesoscale and Nanoscale Physics +cond-mat/0201028 Soft Condensed Matter +cond-mat/0201031 Strongly Correlated Electrons +cond-mat/0201032 Strongly Correlated Electrons +cond-mat/0201033 Strongly Correlated Electrons +cond-mat/0201035 Soft Condensed Matter +cond-mat/0201036 +cond-mat/0201038 Superconductivity +cond-mat/0201039 Superconductivity +cond-mat/0201040 Strongly Correlated Electrons +cond-mat/0201041 Disordered Systems and Neural Networks +cond-mat/0201042 Soft Condensed Matter +cond-mat/0201043 Statistical Mechanics +cond-mat/0201045 Materials Science +cond-mat/0201046 Strongly Correlated Electrons +cond-mat/0201047 Materials Science +cond-mat/0201049 Superconductivity +cond-mat/0201050 Materials Science +cond-mat/0201051 +cond-mat/0201052 Superconductivity +cond-mat/0201054 Materials Science +cond-mat/0201055 Mesoscale and Nanoscale Physics +cond-mat/0201056 Disordered Systems and Neural Networks +cond-mat/0201061 Disordered Systems and Neural Networks +cond-mat/0201062 Superconductivity +cond-mat/0201063 +cond-mat/0201064 Statistical Mechanics +cond-mat/0201065 Mesoscale and Nanoscale Physics +cond-mat/0201066 +cond-mat/0201067 Statistical Mechanics +cond-mat/0201068 Statistical Mechanics +cond-mat/0201073 Mesoscale and Nanoscale Physics +cond-mat/0201074 Statistical Mechanics +cond-mat/0201075 Soft Condensed Matter +cond-mat/0201076 Mesoscale and Nanoscale Physics +cond-mat/0201077 Strongly Correlated Electrons +cond-mat/0201078 +cond-mat/0201079 Statistical Mechanics +cond-mat/0201085 Superconductivity +cond-mat/0201086 Materials Science +cond-mat/0201087 Statistical Mechanics +cond-mat/0201089 Mesoscale and Nanoscale Physics +cond-mat/0201090 +cond-mat/0201091 Disordered Systems and Neural Networks +cond-mat/0201092 Disordered Systems and Neural Networks +cond-mat/0201093 Superconductivity +cond-mat/0201094 Superconductivity +cond-mat/0201096 Statistical Mechanics +cond-mat/0201097 Statistical Mechanics +cond-mat/0201098 Strongly Correlated Electrons +cond-mat/0201099 Statistical Mechanics +cond-mat/0201100 +cond-mat/0201101 Superconductivity +cond-mat/0201102 +cond-mat/0201103 +cond-mat/0201106 Statistical Mechanics +cond-mat/0201107 Disordered Systems and Neural Networks +cond-mat/0201108 Statistical Mechanics +cond-mat/0201110 Soft Condensed Matter +cond-mat/0201111 Soft Condensed Matter +cond-mat/0201113 Statistical Mechanics +cond-mat/0201115 Statistical Mechanics +cond-mat/0201116 Statistical Mechanics +cond-mat/0201118 Strongly Correlated Electrons +cond-mat/0201119 Strongly Correlated Electrons +cond-mat/0201121 Disordered Systems and Neural Networks +cond-mat/0201122 +cond-mat/0201123 Statistical Mechanics +cond-mat/0201125 Statistical Mechanics +cond-mat/0201127 Statistical Mechanics +cond-mat/0201128 Statistical Mechanics +cond-mat/0201129 Soft Condensed Matter +cond-mat/0201132 Superconductivity +cond-mat/0201133 +cond-mat/0201136 Soft Condensed Matter +cond-mat/0201141 Materials Science +cond-mat/0201145 Strongly Correlated Electrons +cond-mat/0201146 +cond-mat/0201147 Statistical Mechanics +cond-mat/0201148 Mesoscale and Nanoscale Physics +cond-mat/0201150 +cond-mat/0201151 Strongly Correlated Electrons +cond-mat/0201155 Soft Condensed Matter +cond-mat/0201156 Materials Science +cond-mat/0201158 Soft Condensed Matter +cond-mat/0201159 Soft Condensed Matter +cond-mat/0201160 Statistical Mechanics +cond-mat/0201161 Mesoscale and Nanoscale Physics +cond-mat/0201163 Materials Science +cond-mat/0201164 Mesoscale and Nanoscale Physics +cond-mat/0201165 Superconductivity +cond-mat/0201167 Strongly Correlated Electrons +cond-mat/0201171 Statistical Mechanics +cond-mat/0201173 Superconductivity +cond-mat/0201174 Statistical Mechanics +cond-mat/0201175 Soft Condensed Matter +cond-mat/0201176 Strongly Correlated Electrons +cond-mat/0201179 Soft Condensed Matter +cond-mat/0201180 Statistical Mechanics +cond-mat/0201181 Mesoscale and Nanoscale Physics +cond-mat/0201182 Materials Science +cond-mat/0201183 Statistical Mechanics +cond-mat/0201184 Materials Science +cond-mat/0201185 Mesoscale and Nanoscale Physics +cond-mat/0201186 Strongly Correlated Electrons +cond-mat/0201188 Superconductivity +cond-mat/0201189 Superconductivity +cond-mat/0201190 Strongly Correlated Electrons +cond-mat/0201193 Soft Condensed Matter +cond-mat/0201195 Statistical Mechanics +cond-mat/0201196 Statistical Mechanics +cond-mat/0201197 Superconductivity +cond-mat/0201198 Statistical Mechanics +cond-mat/0201199 Superconductivity +cond-mat/0201201 Statistical Mechanics +cond-mat/0201204 Statistical Mechanics +cond-mat/0201205 Mesoscale and Nanoscale Physics +cond-mat/0201208 Statistical Mechanics +cond-mat/0201209 Strongly Correlated Electrons +cond-mat/0201211 +cond-mat/0201214 Statistical Mechanics +cond-mat/0201216 Materials Science +cond-mat/0201217 Statistical Mechanics +cond-mat/0201218 Statistical Mechanics +cond-mat/0201219 Statistical Mechanics +cond-mat/0201220 Strongly Correlated Electrons +cond-mat/0201222 Soft Condensed Matter +cond-mat/0201223 Statistical Mechanics +cond-mat/0201224 Materials Science +cond-mat/0201227 Soft Condensed Matter +cond-mat/0201228 Superconductivity +cond-mat/0201229 Materials Science +cond-mat/0201230 Superconductivity +cond-mat/0201233 +cond-mat/0201234 Superconductivity +cond-mat/0201237 Statistical Mechanics +cond-mat/0201239 Strongly Correlated Electrons +cond-mat/0201241 Materials Science +cond-mat/0201242 +cond-mat/0201243 Disordered Systems and Neural Networks +cond-mat/0201244 Strongly Correlated Electrons +cond-mat/0201246 Soft Condensed Matter +cond-mat/0201247 Superconductivity +cond-mat/0201250 Superconductivity +cond-mat/0201251 Disordered Systems and Neural Networks +cond-mat/0201252 Superconductivity +cond-mat/0201253 Superconductivity +cond-mat/0201254 Statistical Mechanics +cond-mat/0201256 Disordered Systems and Neural Networks +cond-mat/0201257 Materials Science +cond-mat/0201259 Mesoscale and Nanoscale Physics +cond-mat/0201260 Superconductivity +cond-mat/0201261 Superconductivity +cond-mat/0201263 Soft Condensed Matter +cond-mat/0201264 Materials Science +cond-mat/0201266 Disordered Systems and Neural Networks +cond-mat/0201267 +cond-mat/0201268 Materials Science +cond-mat/0201269 Strongly Correlated Electrons +cond-mat/0201270 +cond-mat/0201272 Soft Condensed Matter +cond-mat/0201273 Statistical Mechanics +cond-mat/0201274 +cond-mat/0201275 Materials Science +cond-mat/0201276 +cond-mat/0201277 +cond-mat/0201278 Superconductivity +cond-mat/0201280 +cond-mat/0201281 +cond-mat/0201282 Materials Science +cond-mat/0201283 Mesoscale and Nanoscale Physics +cond-mat/0201287 Superconductivity +cond-mat/0201288 Superconductivity +cond-mat/0201290 Soft Condensed Matter +cond-mat/0201291 Strongly Correlated Electrons +cond-mat/0201294 Materials Science +cond-mat/0201296 Superconductivity +cond-mat/0201297 Mesoscale and Nanoscale Physics +cond-mat/0201299 Materials Science +cond-mat/0201300 Strongly Correlated Electrons +cond-mat/0201301 Statistical Mechanics +cond-mat/0201303 Mesoscale and Nanoscale Physics +cond-mat/0201305 Disordered Systems and Neural Networks +cond-mat/0201306 Statistical Mechanics +cond-mat/0201310 Statistical Mechanics +cond-mat/0201313 Statistical Mechanics +cond-mat/0201314 Materials Science +cond-mat/0201315 Strongly Correlated Electrons +cond-mat/0201316 Mesoscale and Nanoscale Physics +cond-mat/0201317 Materials Science +cond-mat/0201318 Statistical Mechanics +cond-mat/0201319 Disordered Systems and Neural Networks +cond-mat/0201320 Superconductivity +cond-mat/0201322 Superconductivity +cond-mat/0201326 Mesoscale and Nanoscale Physics +cond-mat/0201328 Materials Science +cond-mat/0201329 Strongly Correlated Electrons +cond-mat/0201330 Mesoscale and Nanoscale Physics +cond-mat/0201337 Statistical Mechanics +cond-mat/0201338 Materials Science +cond-mat/0201339 Superconductivity +cond-mat/0201342 Superconductivity +cond-mat/0201343 Strongly Correlated Electrons +cond-mat/0201344 Mesoscale and Nanoscale Physics +cond-mat/0201346 Strongly Correlated Electrons +cond-mat/0201348 Superconductivity +cond-mat/0201349 Strongly Correlated Electrons +cond-mat/0201350 Mesoscale and Nanoscale Physics +cond-mat/0201351 Statistical Mechanics +cond-mat/0201353 Materials Science +cond-mat/0201355 Mesoscale and Nanoscale Physics +cond-mat/0201356 Disordered Systems and Neural Networks +cond-mat/0201358 Superconductivity +cond-mat/0201359 Superconductivity +cond-mat/0201362 Mesoscale and Nanoscale Physics +cond-mat/0201363 Materials Science +cond-mat/0201365 Materials Science +cond-mat/0201366 +cond-mat/0201367 Soft Condensed Matter +cond-mat/0201368 Statistical Mechanics +cond-mat/0201369 Soft Condensed Matter +cond-mat/0201370 Statistical Mechanics +cond-mat/0201371 Materials Science +cond-mat/0201372 Soft Condensed Matter +cond-mat/0201373 Superconductivity +cond-mat/0201375 Superconductivity +cond-mat/0201376 Superconductivity +cond-mat/0201377 Mesoscale and Nanoscale Physics +cond-mat/0201380 Superconductivity +cond-mat/0201381 Strongly Correlated Electrons +cond-mat/0201382 Superconductivity +cond-mat/0201384 Materials Science +cond-mat/0201385 Materials Science +cond-mat/0201386 Materials Science +cond-mat/0201387 Superconductivity +cond-mat/0201389 Mesoscale and Nanoscale Physics +cond-mat/0201390 Strongly Correlated Electrons +cond-mat/0201391 Strongly Correlated Electrons +cond-mat/0201392 Materials Science +cond-mat/0201395 Soft Condensed Matter +cond-mat/0201398 +cond-mat/0201399 Strongly Correlated Electrons +cond-mat/0201400 Statistical Mechanics +cond-mat/0201402 Mesoscale and Nanoscale Physics +cond-mat/0201403 Strongly Correlated Electrons +cond-mat/0201405 Soft Condensed Matter +cond-mat/0201408 Statistical Mechanics +cond-mat/0201411 Materials Science +cond-mat/0201412 Materials Science +cond-mat/0201413 Strongly Correlated Electrons +cond-mat/0201414 Strongly Correlated Electrons +cond-mat/0201415 Superconductivity +cond-mat/0201416 Materials Science +cond-mat/0201417 Statistical Mechanics +cond-mat/0201420 Strongly Correlated Electrons +cond-mat/0201421 Statistical Mechanics +cond-mat/0201423 Strongly Correlated Electrons +cond-mat/0201425 Materials Science +cond-mat/0201426 Materials Science +cond-mat/0201427 Disordered Systems and Neural Networks +cond-mat/0201429 Strongly Correlated Electrons +cond-mat/0201431 Strongly Correlated Electrons +cond-mat/0201432 Statistical Mechanics +cond-mat/0201434 Statistical Mechanics +cond-mat/0201435 Statistical Mechanics +cond-mat/0201436 Materials Science +cond-mat/0201437 Mesoscale and Nanoscale Physics +cond-mat/0201438 Soft Condensed Matter +cond-mat/0201439 Superconductivity +cond-mat/0201441 Disordered Systems and Neural Networks +cond-mat/0201442 Mesoscale and Nanoscale Physics +cond-mat/0201443 Strongly Correlated Electrons +cond-mat/0201444 Statistical Mechanics +cond-mat/0201446 Statistical Mechanics +cond-mat/0201449 Mesoscale and Nanoscale Physics +cond-mat/0201451 Superconductivity +cond-mat/0201452 Superconductivity +cond-mat/0201453 Disordered Systems and Neural Networks +cond-mat/0201454 Mesoscale and Nanoscale Physics +cond-mat/0201456 Statistical Mechanics +cond-mat/0201458 Statistical Mechanics +cond-mat/0201459 Superconductivity +cond-mat/0201460 Materials Science +cond-mat/0201461 Mesoscale and Nanoscale Physics +cond-mat/0201462 Mesoscale and Nanoscale Physics +cond-mat/0201463 Statistical Mechanics +cond-mat/0201466 Strongly Correlated Electrons +cond-mat/0201468 Statistical Mechanics +cond-mat/0201469 Mesoscale and Nanoscale Physics +cond-mat/0201470 Soft Condensed Matter +cond-mat/0201471 Statistical Mechanics +cond-mat/0201473 Statistical Mechanics +cond-mat/0201476 Disordered Systems and Neural Networks +cond-mat/0201477 +cond-mat/0201478 Materials Science +cond-mat/0201479 Superconductivity +cond-mat/0201480 Mesoscale and Nanoscale Physics +cond-mat/0201481 +cond-mat/0201483 Mesoscale and Nanoscale Physics +cond-mat/0201484 Superconductivity +cond-mat/0201486 Materials Science +cond-mat/0201490 Strongly Correlated Electrons +cond-mat/0201491 Mesoscale and Nanoscale Physics +cond-mat/0201492 Materials Science +cond-mat/0201495 Materials Science +cond-mat/0201497 Strongly Correlated Electrons +cond-mat/0201500 Mesoscale and Nanoscale Physics +cond-mat/0201501 Superconductivity +cond-mat/0201502 Materials Science +cond-mat/0201504 Superconductivity +cond-mat/0201507 Soft Condensed Matter +cond-mat/0201508 Statistical Mechanics +cond-mat/0201510 Soft Condensed Matter +cond-mat/0201512 Mesoscale and Nanoscale Physics +cond-mat/0201513 Strongly Correlated Electrons +cond-mat/0201516 Statistical Mechanics +cond-mat/0201517 Superconductivity +cond-mat/0201518 Strongly Correlated Electrons +cond-mat/0201519 Superconductivity +cond-mat/0201521 Strongly Correlated Electrons +cond-mat/0201522 Strongly Correlated Electrons +cond-mat/0201523 Strongly Correlated Electrons +cond-mat/0201524 Strongly Correlated Electrons +cond-mat/0201525 Superconductivity +cond-mat/0201526 Strongly Correlated Electrons +cond-mat/0201527 Statistical Mechanics +cond-mat/0201528 Soft Condensed Matter +cond-mat/0201529 Statistical Mechanics +cond-mat/0201532 Mesoscale and Nanoscale Physics +cond-mat/0201533 Soft Condensed Matter +cond-mat/0201534 Superconductivity +cond-mat/0201537 Statistical Mechanics +cond-mat/0201538 Superconductivity +cond-mat/0201540 Disordered Systems and Neural Networks +cond-mat/0201541 Statistical Mechanics +cond-mat/0201543 +cond-mat/0201544 Superconductivity +cond-mat/0201547 Superconductivity +cond-mat/0201548 Strongly Correlated Electrons +cond-mat/0201550 Superconductivity +cond-mat/0201551 Strongly Correlated Electrons +cond-mat/0201552 Statistical Mechanics +cond-mat/0201554 Mesoscale and Nanoscale Physics +cond-mat/0201557 Materials Science +cond-mat/0201560 Disordered Systems and Neural Networks +cond-mat/0201561 Strongly Correlated Electrons +cond-mat/0201562 Statistical Mechanics +cond-mat/0201563 Soft Condensed Matter +cond-mat/0201565 Statistical Mechanics +cond-mat/0201566 Superconductivity +cond-mat/0201568 Mesoscale and Nanoscale Physics +cond-mat/0201569 Soft Condensed Matter +cond-mat/0201570 Strongly Correlated Electrons +cond-mat/0201571 +cond-mat/0201572 Mesoscale and Nanoscale Physics +cond-mat/0201573 Statistical Mechanics +cond-mat/0201574 Mesoscale and Nanoscale Physics +cond-mat/0201575 Statistical Mechanics +cond-mat/0201577 Mesoscale and Nanoscale Physics +cond-mat/0201578 Superconductivity +cond-mat/0201579 Superconductivity +cond-mat/0201580 Disordered Systems and Neural Networks +cond-mat/0201581 Superconductivity +cond-mat/0201583 Statistical Mechanics +cond-mat/0201584 Strongly Correlated Electrons +cond-mat/0201585 Disordered Systems and Neural Networks +cond-mat/0201586 Soft Condensed Matter +cond-mat/0201587 +cond-mat/0201590 +cond-mat/0202001 Materials Science +cond-mat/0202002 Mesoscale and Nanoscale Physics +cond-mat/0202004 Strongly Correlated Electrons +cond-mat/0202005 Soft Condensed Matter +cond-mat/0202006 Mesoscale and Nanoscale Physics +cond-mat/0202008 Statistical Mechanics +cond-mat/0202009 Superconductivity +cond-mat/0202011 Strongly Correlated Electrons +cond-mat/0202014 Statistical Mechanics +cond-mat/0202016 Statistical Mechanics +cond-mat/0202018 Statistical Mechanics +cond-mat/0202020 Statistical Mechanics +cond-mat/0202021 +cond-mat/0202022 Statistical Mechanics +cond-mat/0202024 Mesoscale and Nanoscale Physics +cond-mat/0202025 Soft Condensed Matter +cond-mat/0202026 Soft Condensed Matter +cond-mat/0202027 Materials Science +cond-mat/0202029 Soft Condensed Matter +cond-mat/0202030 Mesoscale and Nanoscale Physics +cond-mat/0202034 Superconductivity +cond-mat/0202037 Superconductivity +cond-mat/0202038 Disordered Systems and Neural Networks +cond-mat/0202039 Soft Condensed Matter +cond-mat/0202040 Superconductivity +cond-mat/0202041 Materials Science +cond-mat/0202042 Mesoscale and Nanoscale Physics +cond-mat/0202048 Strongly Correlated Electrons +cond-mat/0202049 Mesoscale and Nanoscale Physics +cond-mat/0202050 Superconductivity +cond-mat/0202051 Superconductivity +cond-mat/0202052 Disordered Systems and Neural Networks +cond-mat/0202053 Soft Condensed Matter +cond-mat/0202054 Statistical Mechanics +cond-mat/0202055 +cond-mat/0202056 Mesoscale and Nanoscale Physics +cond-mat/0202057 +cond-mat/0202058 Soft Condensed Matter +cond-mat/0202059 Superconductivity +cond-mat/0202060 Strongly Correlated Electrons +cond-mat/0202066 Materials Science +cond-mat/0202067 Statistical Mechanics +cond-mat/0202068 Statistical Mechanics +cond-mat/0202069 Statistical Mechanics +cond-mat/0202071 Materials Science +cond-mat/0202074 Mesoscale and Nanoscale Physics +cond-mat/0202075 Statistical Mechanics +cond-mat/0202077 Mesoscale and Nanoscale Physics +cond-mat/0202079 Strongly Correlated Electrons +cond-mat/0202080 Strongly Correlated Electrons +cond-mat/0202081 +cond-mat/0202082 Mesoscale and Nanoscale Physics +cond-mat/0202083 Superconductivity +cond-mat/0202084 Superconductivity +cond-mat/0202086 Statistical Mechanics +cond-mat/0202088 +cond-mat/0202089 Strongly Correlated Electrons +cond-mat/0202091 Statistical Mechanics +cond-mat/0202092 Statistical Mechanics +cond-mat/0202093 +cond-mat/0202094 Soft Condensed Matter +cond-mat/0202096 Superconductivity +cond-mat/0202097 Disordered Systems and Neural Networks +cond-mat/0202098 Mesoscale and Nanoscale Physics +cond-mat/0202099 Disordered Systems and Neural Networks +cond-mat/0202101 Superconductivity +cond-mat/0202102 Strongly Correlated Electrons +cond-mat/0202105 Strongly Correlated Electrons +cond-mat/0202106 Soft Condensed Matter +cond-mat/0202107 Superconductivity +cond-mat/0202108 Statistical Mechanics +cond-mat/0202111 Strongly Correlated Electrons +cond-mat/0202112 Statistical Mechanics +cond-mat/0202114 Strongly Correlated Electrons +cond-mat/0202116 Superconductivity +cond-mat/0202118 Materials Science +cond-mat/0202119 Materials Science +cond-mat/0202120 Statistical Mechanics +cond-mat/0202121 Soft Condensed Matter +cond-mat/0202122 Statistical Mechanics +cond-mat/0202124 Statistical Mechanics +cond-mat/0202125 Strongly Correlated Electrons +cond-mat/0202126 Strongly Correlated Electrons +cond-mat/0202127 Soft Condensed Matter +cond-mat/0202130 Disordered Systems and Neural Networks +cond-mat/0202131 +cond-mat/0202132 Strongly Correlated Electrons +cond-mat/0202133 Superconductivity +cond-mat/0202135 Disordered Systems and Neural Networks +cond-mat/0202136 Superconductivity +cond-mat/0202137 Strongly Correlated Electrons +cond-mat/0202138 Statistical Mechanics +cond-mat/0202139 Disordered Systems and Neural Networks +cond-mat/0202140 Statistical Mechanics +cond-mat/0202142 Statistical Mechanics +cond-mat/0202143 Statistical Mechanics +cond-mat/0202144 Statistical Mechanics +cond-mat/0202146 +cond-mat/0202147 Strongly Correlated Electrons +cond-mat/0202148 Statistical Mechanics +cond-mat/0202149 Mesoscale and Nanoscale Physics +cond-mat/0202150 Materials Science +cond-mat/0202151 Disordered Systems and Neural Networks +cond-mat/0202152 Mesoscale and Nanoscale Physics +cond-mat/0202153 +cond-mat/0202154 Statistical Mechanics +cond-mat/0202155 Mesoscale and Nanoscale Physics +cond-mat/0202156 Mesoscale and Nanoscale Physics +cond-mat/0202159 Materials Science +cond-mat/0202160 Soft Condensed Matter +cond-mat/0202161 Statistical Mechanics +cond-mat/0202162 Disordered Systems and Neural Networks +cond-mat/0202163 Mesoscale and Nanoscale Physics +cond-mat/0202166 Strongly Correlated Electrons +cond-mat/0202167 +cond-mat/0202168 Soft Condensed Matter +cond-mat/0202169 Strongly Correlated Electrons +cond-mat/0202170 Strongly Correlated Electrons +cond-mat/0202171 Strongly Correlated Electrons +cond-mat/0202173 +cond-mat/0202175 Strongly Correlated Electrons +cond-mat/0202176 Soft Condensed Matter +cond-mat/0202178 +cond-mat/0202180 Strongly Correlated Electrons +cond-mat/0202182 +cond-mat/0202183 Mesoscale and Nanoscale Physics +cond-mat/0202184 Soft Condensed Matter +cond-mat/0202186 Strongly Correlated Electrons +cond-mat/0202187 Superconductivity +cond-mat/0202188 Strongly Correlated Electrons +cond-mat/0202189 Statistical Mechanics +cond-mat/0202191 Superconductivity +cond-mat/0202193 Superconductivity +cond-mat/0202194 Strongly Correlated Electrons +cond-mat/0202195 +cond-mat/0202196 Strongly Correlated Electrons +cond-mat/0202197 Mesoscale and Nanoscale Physics +cond-mat/0202199 Soft Condensed Matter +cond-mat/0202200 Statistical Mechanics +cond-mat/0202202 Statistical Mechanics +cond-mat/0202204 Materials Science +cond-mat/0202205 Statistical Mechanics +cond-mat/0202207 Statistical Mechanics +cond-mat/0202211 Strongly Correlated Electrons +cond-mat/0202212 Statistical Mechanics +cond-mat/0202213 Statistical Mechanics +cond-mat/0202215 Superconductivity +cond-mat/0202216 Strongly Correlated Electrons +cond-mat/0202217 Mesoscale and Nanoscale Physics +cond-mat/0202218 Soft Condensed Matter +cond-mat/0202219 Strongly Correlated Electrons +cond-mat/0202222 Mesoscale and Nanoscale Physics +cond-mat/0202224 Materials Science +cond-mat/0202226 Statistical Mechanics +cond-mat/0202227 Strongly Correlated Electrons +cond-mat/0202228 Statistical Mechanics +cond-mat/0202229 Statistical Mechanics +cond-mat/0202232 Statistical Mechanics +cond-mat/0202233 Statistical Mechanics +cond-mat/0202234 +cond-mat/0202236 Statistical Mechanics +cond-mat/0202237 Mesoscale and Nanoscale Physics +cond-mat/0202241 Mesoscale and Nanoscale Physics +cond-mat/0202243 Superconductivity +cond-mat/0202245 Soft Condensed Matter +cond-mat/0202246 Disordered Systems and Neural Networks +cond-mat/0202247 Superconductivity +cond-mat/0202249 Strongly Correlated Electrons +cond-mat/0202250 Superconductivity +cond-mat/0202251 Strongly Correlated Electrons +cond-mat/0202253 Mesoscale and Nanoscale Physics +cond-mat/0202254 Strongly Correlated Electrons +cond-mat/0202257 Strongly Correlated Electrons +cond-mat/0202258 Statistical Mechanics +cond-mat/0202259 Disordered Systems and Neural Networks +cond-mat/0202262 Soft Condensed Matter +cond-mat/0202264 Soft Condensed Matter +cond-mat/0202265 Soft Condensed Matter +cond-mat/0202266 Mesoscale and Nanoscale Physics +cond-mat/0202267 Statistical Mechanics +cond-mat/0202268 +cond-mat/0202271 +cond-mat/0202278 Superconductivity +cond-mat/0202281 Materials Science +cond-mat/0202284 Strongly Correlated Electrons +cond-mat/0202286 Mesoscale and Nanoscale Physics +cond-mat/0202288 Strongly Correlated Electrons +cond-mat/0202289 Mesoscale and Nanoscale Physics +cond-mat/0202290 Soft Condensed Matter +cond-mat/0202291 Mesoscale and Nanoscale Physics +cond-mat/0202292 Statistical Mechanics +cond-mat/0202294 +cond-mat/0202295 Disordered Systems and Neural Networks +cond-mat/0202296 Statistical Mechanics +cond-mat/0202298 Statistical Mechanics +cond-mat/0202299 Statistical Mechanics +cond-mat/0202300 Disordered Systems and Neural Networks +cond-mat/0202301 Strongly Correlated Electrons +cond-mat/0202303 Mesoscale and Nanoscale Physics +cond-mat/0202304 Disordered Systems and Neural Networks +cond-mat/0202307 Superconductivity +cond-mat/0202308 Materials Science +cond-mat/0202310 +cond-mat/0202312 +cond-mat/0202314 Statistical Mechanics +cond-mat/0202315 Disordered Systems and Neural Networks +cond-mat/0202316 Strongly Correlated Electrons +cond-mat/0202317 Strongly Correlated Electrons +cond-mat/0202318 Materials Science +cond-mat/0202319 Statistical Mechanics +cond-mat/0202322 Statistical Mechanics +cond-mat/0202323 Superconductivity +cond-mat/0202324 +cond-mat/0202325 Mesoscale and Nanoscale Physics +cond-mat/0202329 Superconductivity +cond-mat/0202330 Statistical Mechanics +cond-mat/0202331 +cond-mat/0202333 +cond-mat/0202334 Superconductivity +cond-mat/0202335 Superconductivity +cond-mat/0202336 Superconductivity +cond-mat/0202340 Statistical Mechanics +cond-mat/0202341 Statistical Mechanics +cond-mat/0202343 Statistical Mechanics +cond-mat/0202345 Statistical Mechanics +cond-mat/0202348 Superconductivity +cond-mat/0202349 Mesoscale and Nanoscale Physics +cond-mat/0202350 Statistical Mechanics +cond-mat/0202353 Mesoscale and Nanoscale Physics +cond-mat/0202354 Mesoscale and Nanoscale Physics +cond-mat/0202355 Disordered Systems and Neural Networks +cond-mat/0202359 Superconductivity +cond-mat/0202362 Materials Science +cond-mat/0202363 Materials Science +cond-mat/0202364 Soft Condensed Matter +cond-mat/0202365 Mesoscale and Nanoscale Physics +cond-mat/0202366 Strongly Correlated Electrons +cond-mat/0202367 Mesoscale and Nanoscale Physics +cond-mat/0202370 Materials Science +cond-mat/0202371 Materials Science +cond-mat/0202374 Mesoscale and Nanoscale Physics +cond-mat/0202375 Materials Science +cond-mat/0202376 Statistical Mechanics +cond-mat/0202378 +cond-mat/0202379 Strongly Correlated Electrons +cond-mat/0202381 Strongly Correlated Electrons +cond-mat/0202382 Materials Science +cond-mat/0202389 Materials Science +cond-mat/0202390 Strongly Correlated Electrons +cond-mat/0202391 Statistical Mechanics +cond-mat/0202392 Statistical Mechanics +cond-mat/0202393 Statistical Mechanics +cond-mat/0202394 Superconductivity +cond-mat/0202396 Soft Condensed Matter +cond-mat/0202397 Materials Science +cond-mat/0202398 Mesoscale and Nanoscale Physics +cond-mat/0202399 Materials Science +cond-mat/0202400 Materials Science +cond-mat/0202401 +cond-mat/0202402 Mesoscale and Nanoscale Physics +cond-mat/0202403 Mesoscale and Nanoscale Physics +cond-mat/0202404 Strongly Correlated Electrons +cond-mat/0202405 Mesoscale and Nanoscale Physics +cond-mat/0202406 +cond-mat/0202407 Mesoscale and Nanoscale Physics +cond-mat/0202408 +cond-mat/0202409 Superconductivity +cond-mat/0202410 Disordered Systems and Neural Networks +cond-mat/0202414 Strongly Correlated Electrons +cond-mat/0202415 Superconductivity +cond-mat/0202418 Mesoscale and Nanoscale Physics +cond-mat/0202419 Soft Condensed Matter +cond-mat/0202421 Soft Condensed Matter +cond-mat/0202422 +cond-mat/0202423 Mesoscale and Nanoscale Physics +cond-mat/0202424 Strongly Correlated Electrons +cond-mat/0202425 Strongly Correlated Electrons +cond-mat/0202427 Superconductivity +cond-mat/0202429 Soft Condensed Matter +cond-mat/0202430 Superconductivity +cond-mat/0202431 Disordered Systems and Neural Networks +cond-mat/0202434 Strongly Correlated Electrons +cond-mat/0202435 +cond-mat/0202436 Soft Condensed Matter +cond-mat/0202437 Mesoscale and Nanoscale Physics +cond-mat/0202438 Disordered Systems and Neural Networks +cond-mat/0202440 Soft Condensed Matter +cond-mat/0202441 Statistical Mechanics +cond-mat/0202442 Strongly Correlated Electrons +cond-mat/0202443 Soft Condensed Matter +cond-mat/0202445 +cond-mat/0202446 Superconductivity +cond-mat/0202448 Mesoscale and Nanoscale Physics +cond-mat/0202449 Strongly Correlated Electrons +cond-mat/0202450 Superconductivity +cond-mat/0202451 Strongly Correlated Electrons +cond-mat/0202452 +cond-mat/0202453 Mesoscale and Nanoscale Physics +cond-mat/0202454 Materials Science +cond-mat/0202456 Statistical Mechanics +cond-mat/0202457 Superconductivity +cond-mat/0202461 Disordered Systems and Neural Networks +cond-mat/0202463 Statistical Mechanics +cond-mat/0202464 Materials Science +cond-mat/0202465 Statistical Mechanics +cond-mat/0202466 Statistical Mechanics +cond-mat/0202468 Superconductivity +cond-mat/0202469 Soft Condensed Matter +cond-mat/0202470 +cond-mat/0202471 Mesoscale and Nanoscale Physics +cond-mat/0202473 Disordered Systems and Neural Networks +cond-mat/0202474 +cond-mat/0202475 Mesoscale and Nanoscale Physics +cond-mat/0202477 Soft Condensed Matter +cond-mat/0202479 Statistical Mechanics +cond-mat/0202481 +cond-mat/0202483 Strongly Correlated Electrons +cond-mat/0202484 Statistical Mechanics +cond-mat/0202488 Materials Science +cond-mat/0202490 Statistical Mechanics +cond-mat/0202492 Strongly Correlated Electrons +cond-mat/0202496 Materials Science +cond-mat/0202497 Materials Science +cond-mat/0202498 Soft Condensed Matter +cond-mat/0202500 Statistical Mechanics +cond-mat/0202502 Superconductivity +cond-mat/0202503 Superconductivity +cond-mat/0202504 Strongly Correlated Electrons +cond-mat/0202507 Strongly Correlated Electrons +cond-mat/0202508 Materials Science +cond-mat/0202509 +cond-mat/0202510 +cond-mat/0202512 Materials Science +cond-mat/0202513 +cond-mat/0202514 Superconductivity +cond-mat/0202515 Materials Science +cond-mat/0202516 Mesoscale and Nanoscale Physics +cond-mat/0202517 Materials Science +cond-mat/0202520 +cond-mat/0202522 Materials Science +cond-mat/0202524 Mesoscale and Nanoscale Physics +cond-mat/0202525 Disordered Systems and Neural Networks +cond-mat/0202526 Materials Science +cond-mat/0202527 Statistical Mechanics +cond-mat/0202528 +cond-mat/0202529 Materials Science +cond-mat/0202530 Materials Science +cond-mat/0202531 Strongly Correlated Electrons +cond-mat/0202533 Materials Science +cond-mat/0202534 Materials Science +cond-mat/0202535 Materials Science +cond-mat/0202537 Disordered Systems and Neural Networks +cond-mat/0202539 +cond-mat/0202540 +cond-mat/0203002 Mesoscale and Nanoscale Physics +cond-mat/0203003 Superconductivity +cond-mat/0203004 Strongly Correlated Electrons +cond-mat/0203005 Statistical Mechanics +cond-mat/0203006 Disordered Systems and Neural Networks +cond-mat/0203007 Superconductivity +cond-mat/0203009 Mesoscale and Nanoscale Physics +cond-mat/0203010 Mesoscale and Nanoscale Physics +cond-mat/0203012 Disordered Systems and Neural Networks +cond-mat/0203013 Statistical Mechanics +cond-mat/0203016 Soft Condensed Matter +cond-mat/0203018 Soft Condensed Matter +cond-mat/0203021 Soft Condensed Matter +cond-mat/0203025 Statistical Mechanics +cond-mat/0203026 Statistical Mechanics +cond-mat/0203027 Materials Science +cond-mat/0203028 Statistical Mechanics +cond-mat/0203029 Statistical Mechanics +cond-mat/0203030 Superconductivity +cond-mat/0203032 Statistical Mechanics +cond-mat/0203033 Strongly Correlated Electrons +cond-mat/0203035 Mesoscale and Nanoscale Physics +cond-mat/0203040 Soft Condensed Matter +cond-mat/0203041 Strongly Correlated Electrons +cond-mat/0203042 Materials Science +cond-mat/0203048 Superconductivity +cond-mat/0203049 Other Condensed Matter +cond-mat/0203050 Soft Condensed Matter +cond-mat/0203051 Superconductivity +cond-mat/0203052 Statistical Mechanics +cond-mat/0203053 Soft Condensed Matter +cond-mat/0203055 Superconductivity +cond-mat/0203057 Mesoscale and Nanoscale Physics +cond-mat/0203059 Mesoscale and Nanoscale Physics +cond-mat/0203060 Soft Condensed Matter +cond-mat/0203061 Mesoscale and Nanoscale Physics +cond-mat/0203064 Materials Science +cond-mat/0203065 Soft Condensed Matter +cond-mat/0203066 Soft Condensed Matter +cond-mat/0203068 Strongly Correlated Electrons +cond-mat/0203070 Strongly Correlated Electrons +cond-mat/0203071 Soft Condensed Matter +cond-mat/0203073 +cond-mat/0203075 +cond-mat/0203076 Superconductivity +cond-mat/0203077 Statistical Mechanics +cond-mat/0203078 Statistical Mechanics +cond-mat/0203080 Materials Science +cond-mat/0203081 Statistical Mechanics +cond-mat/0203084 Soft Condensed Matter +cond-mat/0203085 Strongly Correlated Electrons +cond-mat/0203086 Statistical Mechanics +cond-mat/0203090 +cond-mat/0203092 Statistical Mechanics +cond-mat/0203093 Soft Condensed Matter +cond-mat/0203095 +cond-mat/0203098 Strongly Correlated Electrons +cond-mat/0203100 Superconductivity +cond-mat/0203101 Mesoscale and Nanoscale Physics +cond-mat/0203103 Materials Science +cond-mat/0203106 Superconductivity +cond-mat/0203107 Superconductivity +cond-mat/0203108 Statistical Mechanics +cond-mat/0203109 Superconductivity +cond-mat/0203111 Superconductivity +cond-mat/0203112 Materials Science +cond-mat/0203113 Superconductivity +cond-mat/0203114 Superconductivity +cond-mat/0203117 Superconductivity +cond-mat/0203120 Superconductivity +cond-mat/0203121 Strongly Correlated Electrons +cond-mat/0203123 Superconductivity +cond-mat/0203125 +cond-mat/0203126 Superconductivity +cond-mat/0203127 Soft Condensed Matter +cond-mat/0203129 Statistical Mechanics +cond-mat/0203131 Statistical Mechanics +cond-mat/0203133 Strongly Correlated Electrons +cond-mat/0203134 Mesoscale and Nanoscale Physics +cond-mat/0203136 Disordered Systems and Neural Networks +cond-mat/0203137 Strongly Correlated Electrons +cond-mat/0203138 Superconductivity +cond-mat/0203139 Soft Condensed Matter +cond-mat/0203140 Superconductivity +cond-mat/0203142 Strongly Correlated Electrons +cond-mat/0203144 Soft Condensed Matter +cond-mat/0203145 Superconductivity +cond-mat/0203148 Soft Condensed Matter +cond-mat/0203150 Strongly Correlated Electrons +cond-mat/0203152 Soft Condensed Matter +cond-mat/0203153 Strongly Correlated Electrons +cond-mat/0203154 Superconductivity +cond-mat/0203155 Statistical Mechanics +cond-mat/0203156 Strongly Correlated Electrons +cond-mat/0203157 +cond-mat/0203158 Disordered Systems and Neural Networks +cond-mat/0203160 Mesoscale and Nanoscale Physics +cond-mat/0203161 Statistical Mechanics +cond-mat/0203162 Materials Science +cond-mat/0203163 Soft Condensed Matter +cond-mat/0203164 Superconductivity +cond-mat/0203165 Disordered Systems and Neural Networks +cond-mat/0203167 Statistical Mechanics +cond-mat/0203168 +cond-mat/0203171 Strongly Correlated Electrons +cond-mat/0203172 Strongly Correlated Electrons +cond-mat/0203173 +cond-mat/0203174 Mesoscale and Nanoscale Physics +cond-mat/0203177 Disordered Systems and Neural Networks +cond-mat/0203178 Strongly Correlated Electrons +cond-mat/0203179 Mesoscale and Nanoscale Physics +cond-mat/0203180 Strongly Correlated Electrons +cond-mat/0203184 Mesoscale and Nanoscale Physics +cond-mat/0203185 Materials Science +cond-mat/0203187 Strongly Correlated Electrons +cond-mat/0203188 Mesoscale and Nanoscale Physics +cond-mat/0203192 Mesoscale and Nanoscale Physics +cond-mat/0203194 Disordered Systems and Neural Networks +cond-mat/0203195 Superconductivity +cond-mat/0203196 Materials Science +cond-mat/0203197 Materials Science +cond-mat/0203198 Superconductivity +cond-mat/0203199 Soft Condensed Matter +cond-mat/0203201 Strongly Correlated Electrons +cond-mat/0203202 Materials Science +cond-mat/0203203 Mesoscale and Nanoscale Physics +cond-mat/0203205 Materials Science +cond-mat/0203206 Statistical Mechanics +cond-mat/0203207 Soft Condensed Matter +cond-mat/0203208 Superconductivity +cond-mat/0203209 Strongly Correlated Electrons +cond-mat/0203210 Statistical Mechanics +cond-mat/0203211 Mesoscale and Nanoscale Physics +cond-mat/0203212 +cond-mat/0203213 Strongly Correlated Electrons +cond-mat/0203214 Soft Condensed Matter +cond-mat/0203215 Mesoscale and Nanoscale Physics +cond-mat/0203216 Statistical Mechanics +cond-mat/0203217 Superconductivity +cond-mat/0203218 Soft Condensed Matter +cond-mat/0203221 Superconductivity +cond-mat/0203222 Materials Science +cond-mat/0203223 Materials Science +cond-mat/0203224 Superconductivity +cond-mat/0203225 Superconductivity +cond-mat/0203228 Superconductivity +cond-mat/0203229 Materials Science +cond-mat/0203231 Mesoscale and Nanoscale Physics +cond-mat/0203233 Superconductivity +cond-mat/0203234 Strongly Correlated Electrons +cond-mat/0203235 Statistical Mechanics +cond-mat/0203236 +cond-mat/0203238 Mesoscale and Nanoscale Physics +cond-mat/0203239 Soft Condensed Matter +cond-mat/0203242 Soft Condensed Matter +cond-mat/0203243 Superconductivity +cond-mat/0203244 Mesoscale and Nanoscale Physics +cond-mat/0203245 Strongly Correlated Electrons +cond-mat/0203246 Superconductivity +cond-mat/0203247 Mesoscale and Nanoscale Physics +cond-mat/0203248 Strongly Correlated Electrons +cond-mat/0203249 Mesoscale and Nanoscale Physics +cond-mat/0203250 Statistical Mechanics +cond-mat/0203251 Materials Science +cond-mat/0203255 Mesoscale and Nanoscale Physics +cond-mat/0203256 Statistical Mechanics +cond-mat/0203257 Soft Condensed Matter +cond-mat/0203258 Strongly Correlated Electrons +cond-mat/0203261 Mesoscale and Nanoscale Physics +cond-mat/0203262 Strongly Correlated Electrons +cond-mat/0203263 Mesoscale and Nanoscale Physics +cond-mat/0203266 Strongly Correlated Electrons +cond-mat/0203267 Disordered Systems and Neural Networks +cond-mat/0203268 Superconductivity +cond-mat/0203270 +cond-mat/0203271 Superconductivity +cond-mat/0203272 Strongly Correlated Electrons +cond-mat/0203273 Strongly Correlated Electrons +cond-mat/0203276 Mesoscale and Nanoscale Physics +cond-mat/0203277 Materials Science +cond-mat/0203278 Statistical Mechanics +cond-mat/0203280 Materials Science +cond-mat/0203282 Strongly Correlated Electrons +cond-mat/0203283 Superconductivity +cond-mat/0203285 Mesoscale and Nanoscale Physics +cond-mat/0203286 Soft Condensed Matter +cond-mat/0203288 Strongly Correlated Electrons +cond-mat/0203290 Disordered Systems and Neural Networks +cond-mat/0203291 Superconductivity +cond-mat/0203292 Superconductivity +cond-mat/0203297 Materials Science +cond-mat/0203298 Strongly Correlated Electrons +cond-mat/0203299 Statistical Mechanics +cond-mat/0203300 Statistical Mechanics +cond-mat/0203301 Soft Condensed Matter +cond-mat/0203303 Strongly Correlated Electrons +cond-mat/0203307 Superconductivity +cond-mat/0203308 Strongly Correlated Electrons +cond-mat/0203309 Superconductivity +cond-mat/0203311 Mesoscale and Nanoscale Physics +cond-mat/0203312 Soft Condensed Matter +cond-mat/0203313 Mesoscale and Nanoscale Physics +cond-mat/0203314 Mesoscale and Nanoscale Physics +cond-mat/0203316 Disordered Systems and Neural Networks +cond-mat/0203317 Soft Condensed Matter +cond-mat/0203319 Materials Science +cond-mat/0203320 Superconductivity +cond-mat/0203321 Superconductivity +cond-mat/0203322 Superconductivity +cond-mat/0203324 Superconductivity +cond-mat/0203326 Disordered Systems and Neural Networks +cond-mat/0203328 Soft Condensed Matter +cond-mat/0203329 Superconductivity +cond-mat/0203331 Statistical Mechanics +cond-mat/0203332 Superconductivity +cond-mat/0203335 Soft Condensed Matter +cond-mat/0203336 Soft Condensed Matter +cond-mat/0203337 Superconductivity +cond-mat/0203339 Mesoscale and Nanoscale Physics +cond-mat/0203340 Mesoscale and Nanoscale Physics +cond-mat/0203341 Superconductivity +cond-mat/0203343 Materials Science +cond-mat/0203344 Disordered Systems and Neural Networks +cond-mat/0203345 Strongly Correlated Electrons +cond-mat/0203346 Statistical Mechanics +cond-mat/0203347 Statistical Mechanics +cond-mat/0203348 Strongly Correlated Electrons +cond-mat/0203350 Soft Condensed Matter +cond-mat/0203351 Materials Science +cond-mat/0203352 Superconductivity +cond-mat/0203354 +cond-mat/0203355 Superconductivity +cond-mat/0203356 Statistical Mechanics +cond-mat/0203357 Superconductivity +cond-mat/0203358 Materials Science +cond-mat/0203359 +cond-mat/0203361 Materials Science +cond-mat/0203364 Soft Condensed Matter +cond-mat/0203365 +cond-mat/0203366 Mesoscale and Nanoscale Physics +cond-mat/0203367 Statistical Mechanics +cond-mat/0203368 Statistical Mechanics +cond-mat/0203369 Strongly Correlated Electrons +cond-mat/0203371 Disordered Systems and Neural Networks +cond-mat/0203372 Materials Science +cond-mat/0203376 Strongly Correlated Electrons +cond-mat/0203377 Statistical Mechanics +cond-mat/0203379 Soft Condensed Matter +cond-mat/0203383 Soft Condensed Matter +cond-mat/0203384 Disordered Systems and Neural Networks +cond-mat/0203385 Materials Science +cond-mat/0203386 Disordered Systems and Neural Networks +cond-mat/0203388 Statistical Mechanics +cond-mat/0203389 Soft Condensed Matter +cond-mat/0203390 Mesoscale and Nanoscale Physics +cond-mat/0203394 Strongly Correlated Electrons +cond-mat/0203395 Statistical Mechanics +cond-mat/0203396 Soft Condensed Matter +cond-mat/0203400 +cond-mat/0203402 Materials Science +cond-mat/0203403 Materials Science +cond-mat/0203404 Materials Science +cond-mat/0203408 Superconductivity +cond-mat/0203409 Statistical Mechanics +cond-mat/0203410 Mesoscale and Nanoscale Physics +cond-mat/0203416 Statistical Mechanics +cond-mat/0203418 Disordered Systems and Neural Networks +cond-mat/0203419 Statistical Mechanics +cond-mat/0203421 +cond-mat/0203422 Materials Science +cond-mat/0203423 Materials Science +cond-mat/0203428 Statistical Mechanics +cond-mat/0203432 Mesoscale and Nanoscale Physics +cond-mat/0203433 Superconductivity +cond-mat/0203434 Strongly Correlated Electrons +cond-mat/0203436 Statistical Mechanics +cond-mat/0203437 Statistical Mechanics +cond-mat/0203439 Statistical Mechanics +cond-mat/0203444 Disordered Systems and Neural Networks +cond-mat/0203450 +cond-mat/0203452 Mesoscale and Nanoscale Physics +cond-mat/0203453 Superconductivity +cond-mat/0203454 Statistical Mechanics +cond-mat/0203455 Statistical Mechanics +cond-mat/0203464 Superconductivity +cond-mat/0203465 Strongly Correlated Electrons +cond-mat/0203466 Superconductivity +cond-mat/0203471 Materials Science +cond-mat/0203474 Mesoscale and Nanoscale Physics +cond-mat/0203477 Strongly Correlated Electrons +cond-mat/0203479 Superconductivity +cond-mat/0203480 Strongly Correlated Electrons +cond-mat/0203482 Soft Condensed Matter +cond-mat/0203483 Soft Condensed Matter +cond-mat/0203484 Statistical Mechanics +cond-mat/0203485 Strongly Correlated Electrons +cond-mat/0203486 Strongly Correlated Electrons +cond-mat/0203487 Mesoscale and Nanoscale Physics +cond-mat/0203488 Soft Condensed Matter +cond-mat/0203489 Statistical Mechanics +cond-mat/0203490 Materials Science +cond-mat/0203491 +cond-mat/0203493 Disordered Systems and Neural Networks +cond-mat/0203494 Statistical Mechanics +cond-mat/0203495 Materials Science +cond-mat/0203496 Statistical Mechanics +cond-mat/0203497 Strongly Correlated Electrons +cond-mat/0203498 Mesoscale and Nanoscale Physics +cond-mat/0203500 Strongly Correlated Electrons +cond-mat/0203501 Disordered Systems and Neural Networks +cond-mat/0203503 Mesoscale and Nanoscale Physics +cond-mat/0203504 Soft Condensed Matter +cond-mat/0203505 Statistical Mechanics +cond-mat/0203506 +cond-mat/0203507 Disordered Systems and Neural Networks +cond-mat/0203510 Statistical Mechanics +cond-mat/0203513 Soft Condensed Matter +cond-mat/0203514 +cond-mat/0203515 Superconductivity +cond-mat/0203516 Mesoscale and Nanoscale Physics +cond-mat/0203517 Superconductivity +cond-mat/0203518 Strongly Correlated Electrons +cond-mat/0203522 Materials Science +cond-mat/0203523 Materials Science +cond-mat/0203525 Superconductivity +cond-mat/0203526 Materials Science +cond-mat/0203529 +cond-mat/0203531 Superconductivity +cond-mat/0203532 Superconductivity +cond-mat/0203535 +cond-mat/0203537 Strongly Correlated Electrons +cond-mat/0203538 +cond-mat/0203539 Statistical Mechanics +cond-mat/0203543 Superconductivity +cond-mat/0203544 Materials Science +cond-mat/0203546 Superconductivity +cond-mat/0203547 Soft Condensed Matter +cond-mat/0203548 Mesoscale and Nanoscale Physics +cond-mat/0203549 Statistical Mechanics +cond-mat/0203550 Mesoscale and Nanoscale Physics +cond-mat/0203552 Materials Science +cond-mat/0203553 Disordered Systems and Neural Networks +cond-mat/0203554 +cond-mat/0203556 +cond-mat/0203559 Materials Science +cond-mat/0203562 Mesoscale and Nanoscale Physics +cond-mat/0203563 Materials Science +cond-mat/0203564 +cond-mat/0203565 Statistical Mechanics +cond-mat/0203566 +cond-mat/0203567 Strongly Correlated Electrons +cond-mat/0203570 Superconductivity +cond-mat/0203571 Mesoscale and Nanoscale Physics +cond-mat/0203572 Superconductivity +cond-mat/0203574 Mesoscale and Nanoscale Physics +cond-mat/0203575 Soft Condensed Matter +cond-mat/0203576 +cond-mat/0203577 +cond-mat/0203578 +cond-mat/0203579 Strongly Correlated Electrons +cond-mat/0203580 Strongly Correlated Electrons +cond-mat/0203581 +cond-mat/0203583 +cond-mat/0203585 Disordered Systems and Neural Networks +cond-mat/0203586 Mesoscale and Nanoscale Physics +cond-mat/0203588 Statistical Mechanics +cond-mat/0203590 Strongly Correlated Electrons +cond-mat/0203594 Statistical Mechanics +cond-mat/0203595 Statistical Mechanics +cond-mat/0203596 Statistical Mechanics +cond-mat/0203597 Mesoscale and Nanoscale Physics +cond-mat/0203598 Materials Science +cond-mat/0203599 Soft Condensed Matter +cond-mat/0203600 Statistical Mechanics +cond-mat/0203603 Statistical Mechanics +cond-mat/0203604 Strongly Correlated Electrons +cond-mat/0203605 Strongly Correlated Electrons +cond-mat/0203606 Strongly Correlated Electrons +cond-mat/0203608 Mesoscale and Nanoscale Physics +cond-mat/0203610 Statistical Mechanics +cond-mat/0203611 Materials Science +cond-mat/0203612 Disordered Systems and Neural Networks +cond-mat/0203613 Statistical Mechanics +cond-mat/0203616 Strongly Correlated Electrons +cond-mat/0203619 Materials Science +cond-mat/0203620 Statistical Mechanics +cond-mat/0204001 Strongly Correlated Electrons +cond-mat/0204002 Superconductivity +cond-mat/0204004 Superconductivity +cond-mat/0204005 Statistical Mechanics +cond-mat/0204006 Superconductivity +cond-mat/0204007 Superconductivity +cond-mat/0204008 Strongly Correlated Electrons +cond-mat/0204009 Mesoscale and Nanoscale Physics +cond-mat/0204010 Superconductivity +cond-mat/0204011 Strongly Correlated Electrons +cond-mat/0204012 Superconductivity +cond-mat/0204013 Superconductivity +cond-mat/0204015 Materials Science +cond-mat/0204016 +cond-mat/0204017 Statistical Mechanics +cond-mat/0204020 Statistical Mechanics +cond-mat/0204021 Superconductivity +cond-mat/0204022 Statistical Mechanics +cond-mat/0204023 Superconductivity +cond-mat/0204024 Superconductivity +cond-mat/0204025 Statistical Mechanics +cond-mat/0204026 Strongly Correlated Electrons +cond-mat/0204027 Superconductivity +cond-mat/0204038 Superconductivity +cond-mat/0204039 Superconductivity +cond-mat/0204042 Strongly Correlated Electrons +cond-mat/0204043 Strongly Correlated Electrons +cond-mat/0204049 Strongly Correlated Electrons +cond-mat/0204050 Statistical Mechanics +cond-mat/0204051 Superconductivity +cond-mat/0204052 Disordered Systems and Neural Networks +cond-mat/0204053 +cond-mat/0204056 Materials Science +cond-mat/0204057 Materials Science +cond-mat/0204059 Superconductivity +cond-mat/0204063 Strongly Correlated Electrons +cond-mat/0204066 Superconductivity +cond-mat/0204067 +cond-mat/0204069 Statistical Mechanics +cond-mat/0204070 Superconductivity +cond-mat/0204072 Statistical Mechanics +cond-mat/0204073 Mesoscale and Nanoscale Physics +cond-mat/0204074 Statistical Mechanics +cond-mat/0204079 Mesoscale and Nanoscale Physics +cond-mat/0204082 Superconductivity +cond-mat/0204083 +cond-mat/0204084 Mesoscale and Nanoscale Physics +cond-mat/0204086 +cond-mat/0204087 Statistical Mechanics +cond-mat/0204088 Superconductivity +cond-mat/0204089 Statistical Mechanics +cond-mat/0204090 Mesoscale and Nanoscale Physics +cond-mat/0204091 Disordered Systems and Neural Networks +cond-mat/0204092 Materials Science +cond-mat/0204093 Strongly Correlated Electrons +cond-mat/0204094 +cond-mat/0204095 Strongly Correlated Electrons +cond-mat/0204096 Mesoscale and Nanoscale Physics +cond-mat/0204097 +cond-mat/0204099 Statistical Mechanics +cond-mat/0204100 Disordered Systems and Neural Networks +cond-mat/0204103 Materials Science +cond-mat/0204104 Materials Science +cond-mat/0204106 Superconductivity +cond-mat/0204110 Statistical Mechanics +cond-mat/0204111 Statistical Mechanics +cond-mat/0204112 Strongly Correlated Electrons +cond-mat/0204113 Superconductivity +cond-mat/0204114 Soft Condensed Matter +cond-mat/0204115 Strongly Correlated Electrons +cond-mat/0204117 Statistical Mechanics +cond-mat/0204120 Disordered Systems and Neural Networks +cond-mat/0204121 Strongly Correlated Electrons +cond-mat/0204122 +cond-mat/0204124 Materials Science +cond-mat/0204125 Strongly Correlated Electrons +cond-mat/0204127 Superconductivity +cond-mat/0204130 Disordered Systems and Neural Networks +cond-mat/0204131 Statistical Mechanics +cond-mat/0204136 +cond-mat/0204137 Soft Condensed Matter +cond-mat/0204139 Statistical Mechanics +cond-mat/0204140 Mesoscale and Nanoscale Physics +cond-mat/0204141 Statistical Mechanics +cond-mat/0204142 Strongly Correlated Electrons +cond-mat/0204143 Soft Condensed Matter +cond-mat/0204144 Soft Condensed Matter +cond-mat/0204146 Strongly Correlated Electrons +cond-mat/0204150 Materials Science +cond-mat/0204151 Disordered Systems and Neural Networks +cond-mat/0204156 Disordered Systems and Neural Networks +cond-mat/0204159 Mesoscale and Nanoscale Physics +cond-mat/0204162 Soft Condensed Matter +cond-mat/0204164 Statistical Mechanics +cond-mat/0204167 Statistical Mechanics +cond-mat/0204168 Disordered Systems and Neural Networks +cond-mat/0204171 Strongly Correlated Electrons +cond-mat/0204172 Mesoscale and Nanoscale Physics +cond-mat/0204173 Disordered Systems and Neural Networks +cond-mat/0204174 Strongly Correlated Electrons +cond-mat/0204175 +cond-mat/0204176 Mesoscale and Nanoscale Physics +cond-mat/0204179 +cond-mat/0204182 Soft Condensed Matter +cond-mat/0204183 Mesoscale and Nanoscale Physics +cond-mat/0204185 Superconductivity +cond-mat/0204186 Mesoscale and Nanoscale Physics +cond-mat/0204187 Strongly Correlated Electrons +cond-mat/0204189 Superconductivity +cond-mat/0204190 Mesoscale and Nanoscale Physics +cond-mat/0204191 Superconductivity +cond-mat/0204194 Superconductivity +cond-mat/0204196 Soft Condensed Matter +cond-mat/0204197 Disordered Systems and Neural Networks +cond-mat/0204198 Soft Condensed Matter +cond-mat/0204199 Superconductivity +cond-mat/0204200 Strongly Correlated Electrons +cond-mat/0204201 Materials Science +cond-mat/0204202 Statistical Mechanics +cond-mat/0204203 +cond-mat/0204204 Strongly Correlated Electrons +cond-mat/0204206 Mesoscale and Nanoscale Physics +cond-mat/0204207 Statistical Mechanics +cond-mat/0204208 Superconductivity +cond-mat/0204209 Materials Science +cond-mat/0204211 +cond-mat/0204212 Strongly Correlated Electrons +cond-mat/0204213 Materials Science +cond-mat/0204214 Superconductivity +cond-mat/0204215 +cond-mat/0204218 Mesoscale and Nanoscale Physics +cond-mat/0204219 Statistical Mechanics +cond-mat/0204220 Statistical Mechanics +cond-mat/0204222 Materials Science +cond-mat/0204224 Disordered Systems and Neural Networks +cond-mat/0204226 Statistical Mechanics +cond-mat/0204227 Strongly Correlated Electrons +cond-mat/0204228 Strongly Correlated Electrons +cond-mat/0204229 Materials Science +cond-mat/0204230 Soft Condensed Matter +cond-mat/0204233 Superconductivity +cond-mat/0204235 Mesoscale and Nanoscale Physics +cond-mat/0204237 Soft Condensed Matter +cond-mat/0204242 Strongly Correlated Electrons +cond-mat/0204243 Statistical Mechanics +cond-mat/0204244 Strongly Correlated Electrons +cond-mat/0204245 Strongly Correlated Electrons +cond-mat/0204250 +cond-mat/0204251 +cond-mat/0204253 Materials Science +cond-mat/0204255 Statistical Mechanics +cond-mat/0204256 Mesoscale and Nanoscale Physics +cond-mat/0204257 Strongly Correlated Electrons +cond-mat/0204258 Statistical Mechanics +cond-mat/0204263 Superconductivity +cond-mat/0204264 Statistical Mechanics +cond-mat/0204265 Strongly Correlated Electrons +cond-mat/0204266 Soft Condensed Matter +cond-mat/0204268 Statistical Mechanics +cond-mat/0204269 Strongly Correlated Electrons +cond-mat/0204270 Statistical Mechanics +cond-mat/0204271 +cond-mat/0204272 Superconductivity +cond-mat/0204273 Superconductivity +cond-mat/0204274 Statistical Mechanics +cond-mat/0204275 Soft Condensed Matter +cond-mat/0204276 Strongly Correlated Electrons +cond-mat/0204277 Disordered Systems and Neural Networks +cond-mat/0204278 Superconductivity +cond-mat/0204279 Disordered Systems and Neural Networks +cond-mat/0204280 Disordered Systems and Neural Networks +cond-mat/0204284 Superconductivity +cond-mat/0204288 Mesoscale and Nanoscale Physics +cond-mat/0204289 Strongly Correlated Electrons +cond-mat/0204291 Strongly Correlated Electrons +cond-mat/0204292 Strongly Correlated Electrons +cond-mat/0204295 Statistical Mechanics +cond-mat/0204296 Materials Science +cond-mat/0204298 Mesoscale and Nanoscale Physics +cond-mat/0204299 Strongly Correlated Electrons +cond-mat/0204300 Soft Condensed Matter +cond-mat/0204301 Mesoscale and Nanoscale Physics +cond-mat/0204302 Statistical Mechanics +cond-mat/0204303 Statistical Mechanics +cond-mat/0204304 Mesoscale and Nanoscale Physics +cond-mat/0204305 Disordered Systems and Neural Networks +cond-mat/0204308 Strongly Correlated Electrons +cond-mat/0204310 Superconductivity +cond-mat/0204312 Strongly Correlated Electrons +cond-mat/0204313 Superconductivity +cond-mat/0204314 Mesoscale and Nanoscale Physics +cond-mat/0204315 +cond-mat/0204317 Soft Condensed Matter +cond-mat/0204319 Statistical Mechanics +cond-mat/0204320 Strongly Correlated Electrons +cond-mat/0204321 Strongly Correlated Electrons +cond-mat/0204322 Statistical Mechanics +cond-mat/0204323 Soft Condensed Matter +cond-mat/0204324 Materials Science +cond-mat/0204325 Statistical Mechanics +cond-mat/0204326 +cond-mat/0204327 Materials Science +cond-mat/0204330 Soft Condensed Matter +cond-mat/0204331 Statistical Mechanics +cond-mat/0204336 Statistical Mechanics +cond-mat/0204337 Superconductivity +cond-mat/0204338 Statistical Mechanics +cond-mat/0204340 Mesoscale and Nanoscale Physics +cond-mat/0204341 Superconductivity +cond-mat/0204343 Superconductivity +cond-mat/0204344 Statistical Mechanics +cond-mat/0204346 Statistical Mechanics +cond-mat/0204347 Materials Science +cond-mat/0204348 Disordered Systems and Neural Networks +cond-mat/0204352 +cond-mat/0204353 Materials Science +cond-mat/0204355 Mesoscale and Nanoscale Physics +cond-mat/0204356 Materials Science +cond-mat/0204357 Statistical Mechanics +cond-mat/0204363 +cond-mat/0204365 Strongly Correlated Electrons +cond-mat/0204366 Statistical Mechanics +cond-mat/0204367 Statistical Mechanics +cond-mat/0204368 Statistical Mechanics +cond-mat/0204369 Mesoscale and Nanoscale Physics +cond-mat/0204370 Materials Science +cond-mat/0204372 Mesoscale and Nanoscale Physics +cond-mat/0204374 Superconductivity +cond-mat/0204376 Superconductivity +cond-mat/0204377 Strongly Correlated Electrons +cond-mat/0204378 Statistical Mechanics +cond-mat/0204379 Soft Condensed Matter +cond-mat/0204380 Strongly Correlated Electrons +cond-mat/0204381 Soft Condensed Matter +cond-mat/0204382 Strongly Correlated Electrons +cond-mat/0204383 Disordered Systems and Neural Networks +cond-mat/0204384 Superconductivity +cond-mat/0204385 Mesoscale and Nanoscale Physics +cond-mat/0204386 Strongly Correlated Electrons +cond-mat/0204387 Mesoscale and Nanoscale Physics +cond-mat/0204388 Mesoscale and Nanoscale Physics +cond-mat/0204390 Statistical Mechanics +cond-mat/0204391 Mesoscale and Nanoscale Physics +cond-mat/0204394 Statistical Mechanics +cond-mat/0204396 Superconductivity +cond-mat/0204397 Disordered Systems and Neural Networks +cond-mat/0204398 Disordered Systems and Neural Networks +cond-mat/0204399 Disordered Systems and Neural Networks +cond-mat/0204401 Mesoscale and Nanoscale Physics +cond-mat/0204402 Statistical Mechanics +cond-mat/0204403 +cond-mat/0204405 Strongly Correlated Electrons +cond-mat/0204407 Statistical Mechanics +cond-mat/0204409 Superconductivity +cond-mat/0204410 Mesoscale and Nanoscale Physics +cond-mat/0204411 Materials Science +cond-mat/0204412 Statistical Mechanics +cond-mat/0204413 Disordered Systems and Neural Networks +cond-mat/0204414 Superconductivity +cond-mat/0204417 Superconductivity +cond-mat/0204418 Superconductivity +cond-mat/0204421 Statistical Mechanics +cond-mat/0204422 Materials Science +cond-mat/0204425 Superconductivity +cond-mat/0204426 Mesoscale and Nanoscale Physics +cond-mat/0204427 Materials Science +cond-mat/0204429 Strongly Correlated Electrons +cond-mat/0204430 Statistical Mechanics +cond-mat/0204431 Disordered Systems and Neural Networks +cond-mat/0204434 Statistical Mechanics +cond-mat/0204435 Mesoscale and Nanoscale Physics +cond-mat/0204436 Statistical Mechanics +cond-mat/0204438 Statistical Mechanics +cond-mat/0204441 Strongly Correlated Electrons +cond-mat/0204442 Statistical Mechanics +cond-mat/0204444 Mesoscale and Nanoscale Physics +cond-mat/0204445 Mesoscale and Nanoscale Physics +cond-mat/0204446 Superconductivity +cond-mat/0204447 Superconductivity +cond-mat/0204448 Superconductivity +cond-mat/0204450 Mesoscale and Nanoscale Physics +cond-mat/0204452 Strongly Correlated Electrons +cond-mat/0204453 Disordered Systems and Neural Networks +cond-mat/0204454 Superconductivity +cond-mat/0204455 Statistical Mechanics +cond-mat/0204456 Materials Science +cond-mat/0204457 Mesoscale and Nanoscale Physics +cond-mat/0204458 Materials Science +cond-mat/0204461 Mesoscale and Nanoscale Physics +cond-mat/0204462 Superconductivity +cond-mat/0204464 Statistical Mechanics +cond-mat/0204465 +cond-mat/0204467 +cond-mat/0204468 Superconductivity +cond-mat/0204470 +cond-mat/0204471 Mesoscale and Nanoscale Physics +cond-mat/0204472 Superconductivity +cond-mat/0204473 Statistical Mechanics +cond-mat/0204474 Materials Science +cond-mat/0204475 Mesoscale and Nanoscale Physics +cond-mat/0204476 Statistical Mechanics +cond-mat/0204477 Strongly Correlated Electrons +cond-mat/0204479 Materials Science +cond-mat/0204480 Superconductivity +cond-mat/0204481 +cond-mat/0204482 +cond-mat/0204483 Soft Condensed Matter +cond-mat/0204484 Superconductivity +cond-mat/0204485 Strongly Correlated Electrons +cond-mat/0204487 +cond-mat/0204488 Mesoscale and Nanoscale Physics +cond-mat/0204489 Strongly Correlated Electrons +cond-mat/0204490 Statistical Mechanics +cond-mat/0204491 Statistical Mechanics +cond-mat/0204493 Superconductivity +cond-mat/0204494 Soft Condensed Matter +cond-mat/0204495 +cond-mat/0204498 Materials Science +cond-mat/0204501 +cond-mat/0204503 Strongly Correlated Electrons +cond-mat/0204504 Soft Condensed Matter +cond-mat/0204505 Strongly Correlated Electrons +cond-mat/0204506 Statistical Mechanics +cond-mat/0204508 +cond-mat/0204510 Superconductivity +cond-mat/0204512 Materials Science +cond-mat/0204513 Materials Science +cond-mat/0204514 Strongly Correlated Electrons +cond-mat/0204515 Strongly Correlated Electrons +cond-mat/0204517 Statistical Mechanics +cond-mat/0204520 Mesoscale and Nanoscale Physics +cond-mat/0204521 Mesoscale and Nanoscale Physics +cond-mat/0204522 Statistical Mechanics +cond-mat/0204523 Disordered Systems and Neural Networks +cond-mat/0204524 Mesoscale and Nanoscale Physics +cond-mat/0204525 Materials Science +cond-mat/0204526 Mesoscale and Nanoscale Physics +cond-mat/0204527 Superconductivity +cond-mat/0204528 Soft Condensed Matter +cond-mat/0204531 Soft Condensed Matter +cond-mat/0204532 Statistical Mechanics +cond-mat/0204533 Soft Condensed Matter +cond-mat/0204535 Superconductivity +cond-mat/0204537 Strongly Correlated Electrons +cond-mat/0204538 Soft Condensed Matter +cond-mat/0204539 Strongly Correlated Electrons +cond-mat/0204540 +cond-mat/0204541 Materials Science +cond-mat/0204544 Disordered Systems and Neural Networks +cond-mat/0204545 Superconductivity +cond-mat/0204547 Mesoscale and Nanoscale Physics +cond-mat/0204549 Disordered Systems and Neural Networks +cond-mat/0204552 Superconductivity +cond-mat/0204553 Statistical Mechanics +cond-mat/0204554 Disordered Systems and Neural Networks +cond-mat/0204555 Soft Condensed Matter +cond-mat/0204557 Superconductivity +cond-mat/0204559 Strongly Correlated Electrons +cond-mat/0204560 Mesoscale and Nanoscale Physics +cond-mat/0204561 Mesoscale and Nanoscale Physics +cond-mat/0204564 Strongly Correlated Electrons +cond-mat/0204565 Mesoscale and Nanoscale Physics +cond-mat/0204566 Strongly Correlated Electrons +cond-mat/0204567 Strongly Correlated Electrons +cond-mat/0204572 Statistical Mechanics +cond-mat/0204574 Statistical Mechanics +cond-mat/0204575 Mesoscale and Nanoscale Physics +cond-mat/0204577 +cond-mat/0204579 Mesoscale and Nanoscale Physics +cond-mat/0204580 Superconductivity +cond-mat/0204581 Superconductivity +cond-mat/0204583 Mesoscale and Nanoscale Physics +cond-mat/0204586 +cond-mat/0204589 Superconductivity +cond-mat/0204590 Strongly Correlated Electrons +cond-mat/0204591 Soft Condensed Matter +cond-mat/0204594 Strongly Correlated Electrons +cond-mat/0204595 Disordered Systems and Neural Networks +cond-mat/0204596 Statistical Mechanics +cond-mat/0204597 Soft Condensed Matter +cond-mat/0204598 +cond-mat/0204604 Soft Condensed Matter +cond-mat/0204605 Mesoscale and Nanoscale Physics +cond-mat/0204608 Statistical Mechanics +cond-mat/0204610 Mesoscale and Nanoscale Physics +cond-mat/0204612 Statistical Mechanics +cond-mat/0204613 +cond-mat/0204614 Mesoscale and Nanoscale Physics +cond-mat/0204621 Mesoscale and Nanoscale Physics +cond-mat/0204622 Statistical Mechanics +cond-mat/0204623 Disordered Systems and Neural Networks +cond-mat/0204624 Disordered Systems and Neural Networks +cond-mat/0204625 Strongly Correlated Electrons +cond-mat/0204628 Soft Condensed Matter +cond-mat/0204629 Strongly Correlated Electrons +cond-mat/0204630 Disordered Systems and Neural Networks +cond-mat/0204631 Disordered Systems and Neural Networks +cond-mat/0204632 Statistical Mechanics +cond-mat/0204633 Disordered Systems and Neural Networks +cond-mat/0204636 Strongly Correlated Electrons +cond-mat/0204638 Soft Condensed Matter +cond-mat/0204639 Mesoscale and Nanoscale Physics +cond-mat/0204640 Strongly Correlated Electrons +cond-mat/0205002 Superconductivity +cond-mat/0205003 Strongly Correlated Electrons +cond-mat/0205005 +cond-mat/0205006 Superconductivity +cond-mat/0205007 Materials Science +cond-mat/0205008 Statistical Mechanics +cond-mat/0205009 Statistical Mechanics +cond-mat/0205010 Superconductivity +cond-mat/0205011 Statistical Mechanics +cond-mat/0205013 Statistical Mechanics +cond-mat/0205014 Disordered Systems and Neural Networks +cond-mat/0205015 Soft Condensed Matter +cond-mat/0205016 Mesoscale and Nanoscale Physics +cond-mat/0205017 Mesoscale and Nanoscale Physics +cond-mat/0205020 Materials Science +cond-mat/0205021 Disordered Systems and Neural Networks +cond-mat/0205022 +cond-mat/0205023 Statistical Mechanics +cond-mat/0205024 Soft Condensed Matter +cond-mat/0205025 +cond-mat/0205026 Strongly Correlated Electrons +cond-mat/0205027 Mesoscale and Nanoscale Physics +cond-mat/0205028 Mesoscale and Nanoscale Physics +cond-mat/0205030 Soft Condensed Matter +cond-mat/0205031 Mesoscale and Nanoscale Physics +cond-mat/0205032 +cond-mat/0205033 Statistical Mechanics +cond-mat/0205034 Statistical Mechanics +cond-mat/0205035 Superconductivity +cond-mat/0205036 Superconductivity +cond-mat/0205037 +cond-mat/0205038 Statistical Mechanics +cond-mat/0205042 +cond-mat/0205044 Strongly Correlated Electrons +cond-mat/0205046 Statistical Mechanics +cond-mat/0205048 Statistical Mechanics +cond-mat/0205049 +cond-mat/0205050 Superconductivity +cond-mat/0205052 Strongly Correlated Electrons +cond-mat/0205053 Superconductivity +cond-mat/0205058 Statistical Mechanics +cond-mat/0205059 Strongly Correlated Electrons +cond-mat/0205060 Materials Science +cond-mat/0205061 Statistical Mechanics +cond-mat/0205062 Strongly Correlated Electrons +cond-mat/0205065 Strongly Correlated Electrons +cond-mat/0205070 Statistical Mechanics +cond-mat/0205074 Strongly Correlated Electrons +cond-mat/0205075 Materials Science +cond-mat/0205077 Soft Condensed Matter +cond-mat/0205083 Statistical Mechanics +cond-mat/0205084 Soft Condensed Matter +cond-mat/0205088 Strongly Correlated Electrons +cond-mat/0205089 +cond-mat/0205090 Superconductivity +cond-mat/0205091 Strongly Correlated Electrons +cond-mat/0205092 Strongly Correlated Electrons +cond-mat/0205093 Disordered Systems and Neural Networks +cond-mat/0205095 Materials Science +cond-mat/0205096 Strongly Correlated Electrons +cond-mat/0205097 Statistical Mechanics +cond-mat/0205098 Strongly Correlated Electrons +cond-mat/0205102 Disordered Systems and Neural Networks +cond-mat/0205103 Strongly Correlated Electrons +cond-mat/0205105 Superconductivity +cond-mat/0205107 Strongly Correlated Electrons +cond-mat/0205108 +cond-mat/0205111 Statistical Mechanics +cond-mat/0205112 Materials Science +cond-mat/0205113 Strongly Correlated Electrons +cond-mat/0205115 Strongly Correlated Electrons +cond-mat/0205117 Strongly Correlated Electrons +cond-mat/0205118 Superconductivity +cond-mat/0205119 Statistical Mechanics +cond-mat/0205121 Superconductivity +cond-mat/0205122 Mesoscale and Nanoscale Physics +cond-mat/0205127 Mesoscale and Nanoscale Physics +cond-mat/0205129 +cond-mat/0205130 Statistical Mechanics +cond-mat/0205131 Superconductivity +cond-mat/0205132 Statistical Mechanics +cond-mat/0205135 Statistical Mechanics +cond-mat/0205136 Statistical Mechanics +cond-mat/0205137 Disordered Systems and Neural Networks +cond-mat/0205138 Strongly Correlated Electrons +cond-mat/0205140 Strongly Correlated Electrons +cond-mat/0205141 Mesoscale and Nanoscale Physics +cond-mat/0205142 Strongly Correlated Electrons +cond-mat/0205143 Superconductivity +cond-mat/0205144 Soft Condensed Matter +cond-mat/0205145 Mesoscale and Nanoscale Physics +cond-mat/0205146 Statistical Mechanics +cond-mat/0205147 Strongly Correlated Electrons +cond-mat/0205148 Strongly Correlated Electrons +cond-mat/0205149 Strongly Correlated Electrons +cond-mat/0205153 Materials Science +cond-mat/0205154 Superconductivity +cond-mat/0205156 Mesoscale and Nanoscale Physics +cond-mat/0205157 +cond-mat/0205158 Mesoscale and Nanoscale Physics +cond-mat/0205159 Strongly Correlated Electrons +cond-mat/0205160 Strongly Correlated Electrons +cond-mat/0205161 Disordered Systems and Neural Networks +cond-mat/0205162 Materials Science +cond-mat/0205163 Superconductivity +cond-mat/0205164 Mesoscale and Nanoscale Physics +cond-mat/0205165 Strongly Correlated Electrons +cond-mat/0205166 Strongly Correlated Electrons +cond-mat/0205170 Strongly Correlated Electrons +cond-mat/0205171 Soft Condensed Matter +cond-mat/0205172 Soft Condensed Matter +cond-mat/0205173 Materials Science +cond-mat/0205175 Soft Condensed Matter +cond-mat/0205177 +cond-mat/0205180 Statistical Mechanics +cond-mat/0205181 Statistical Mechanics +cond-mat/0205182 Soft Condensed Matter +cond-mat/0205183 Mesoscale and Nanoscale Physics +cond-mat/0205184 Mesoscale and Nanoscale Physics +cond-mat/0205185 Mesoscale and Nanoscale Physics +cond-mat/0205186 Mesoscale and Nanoscale Physics +cond-mat/0205191 Mesoscale and Nanoscale Physics +cond-mat/0205195 Superconductivity +cond-mat/0205196 +cond-mat/0205197 Strongly Correlated Electrons +cond-mat/0205198 Materials Science +cond-mat/0205200 Mesoscale and Nanoscale Physics +cond-mat/0205204 Statistical Mechanics +cond-mat/0205205 Materials Science +cond-mat/0205209 Mesoscale and Nanoscale Physics +cond-mat/0205211 Statistical Mechanics +cond-mat/0205212 Statistical Mechanics +cond-mat/0205213 Strongly Correlated Electrons +cond-mat/0205214 Statistical Mechanics +cond-mat/0205215 Strongly Correlated Electrons +cond-mat/0205218 +cond-mat/0205220 Mesoscale and Nanoscale Physics +cond-mat/0205221 Statistical Mechanics +cond-mat/0205222 Statistical Mechanics +cond-mat/0205226 Strongly Correlated Electrons +cond-mat/0205227 Statistical Mechanics +cond-mat/0205228 Superconductivity +cond-mat/0205229 Superconductivity +cond-mat/0205231 Superconductivity +cond-mat/0205232 Statistical Mechanics +cond-mat/0205233 Soft Condensed Matter +cond-mat/0205234 +cond-mat/0205236 Statistical Mechanics +cond-mat/0205237 Statistical Mechanics +cond-mat/0205239 Superconductivity +cond-mat/0205240 +cond-mat/0205241 +cond-mat/0205242 Soft Condensed Matter +cond-mat/0205243 +cond-mat/0205244 Disordered Systems and Neural Networks +cond-mat/0205245 Superconductivity +cond-mat/0205246 Superconductivity +cond-mat/0205249 +cond-mat/0205250 Mesoscale and Nanoscale Physics +cond-mat/0205252 Statistical Mechanics +cond-mat/0205254 Soft Condensed Matter +cond-mat/0205255 Statistical Mechanics +cond-mat/0205256 Soft Condensed Matter +cond-mat/0205257 Materials Science +cond-mat/0205261 Superconductivity +cond-mat/0205263 Strongly Correlated Electrons +cond-mat/0205264 Statistical Mechanics +cond-mat/0205266 Strongly Correlated Electrons +cond-mat/0205268 Mesoscale and Nanoscale Physics +cond-mat/0205269 Strongly Correlated Electrons +cond-mat/0205270 Strongly Correlated Electrons +cond-mat/0205272 +cond-mat/0205273 +cond-mat/0205276 Disordered Systems and Neural Networks +cond-mat/0205278 Mesoscale and Nanoscale Physics +cond-mat/0205280 Disordered Systems and Neural Networks +cond-mat/0205281 Strongly Correlated Electrons +cond-mat/0205282 +cond-mat/0205283 Soft Condensed Matter +cond-mat/0205285 Statistical Mechanics +cond-mat/0205287 Mesoscale and Nanoscale Physics +cond-mat/0205290 Mesoscale and Nanoscale Physics +cond-mat/0205291 Superconductivity +cond-mat/0205294 Strongly Correlated Electrons +cond-mat/0205295 Statistical Mechanics +cond-mat/0205296 Mesoscale and Nanoscale Physics +cond-mat/0205298 Soft Condensed Matter +cond-mat/0205299 Superconductivity +cond-mat/0205300 Materials Science +cond-mat/0205301 Strongly Correlated Electrons +cond-mat/0205302 Statistical Mechanics +cond-mat/0205303 Materials Science +cond-mat/0205304 Superconductivity +cond-mat/0205305 Superconductivity +cond-mat/0205307 Statistical Mechanics +cond-mat/0205308 Mesoscale and Nanoscale Physics +cond-mat/0205310 Soft Condensed Matter +cond-mat/0205312 Strongly Correlated Electrons +cond-mat/0205313 Materials Science +cond-mat/0205314 Statistical Mechanics +cond-mat/0205315 Statistical Mechanics +cond-mat/0205316 Mesoscale and Nanoscale Physics +cond-mat/0205319 Mesoscale and Nanoscale Physics +cond-mat/0205320 Statistical Mechanics +cond-mat/0205323 Statistical Mechanics +cond-mat/0205324 Materials Science +cond-mat/0205325 Materials Science +cond-mat/0205328 Strongly Correlated Electrons +cond-mat/0205329 Disordered Systems and Neural Networks +cond-mat/0205331 Mesoscale and Nanoscale Physics +cond-mat/0205332 Statistical Mechanics +cond-mat/0205334 Strongly Correlated Electrons +cond-mat/0205335 Disordered Systems and Neural Networks +cond-mat/0205336 Statistical Mechanics +cond-mat/0205337 +cond-mat/0205338 Superconductivity +cond-mat/0205339 Strongly Correlated Electrons +cond-mat/0205340 +cond-mat/0205341 Superconductivity +cond-mat/0205342 +cond-mat/0205343 Mesoscale and Nanoscale Physics +cond-mat/0205345 Mesoscale and Nanoscale Physics +cond-mat/0205346 Soft Condensed Matter +cond-mat/0205347 Strongly Correlated Electrons +cond-mat/0205348 Materials Science +cond-mat/0205349 Soft Condensed Matter +cond-mat/0205350 Mesoscale and Nanoscale Physics +cond-mat/0205351 +cond-mat/0205352 +cond-mat/0205354 Strongly Correlated Electrons +cond-mat/0205355 Statistical Mechanics +cond-mat/0205356 Statistical Mechanics +cond-mat/0205359 Mesoscale and Nanoscale Physics +cond-mat/0205360 Mesoscale and Nanoscale Physics +cond-mat/0205361 Superconductivity +cond-mat/0205363 Soft Condensed Matter +cond-mat/0205366 Statistical Mechanics +cond-mat/0205369 Soft Condensed Matter +cond-mat/0205370 Materials Science +cond-mat/0205371 Statistical Mechanics +cond-mat/0205372 Disordered Systems and Neural Networks +cond-mat/0205373 Mesoscale and Nanoscale Physics +cond-mat/0205375 Disordered Systems and Neural Networks +cond-mat/0205377 Statistical Mechanics +cond-mat/0205378 +cond-mat/0205380 Soft Condensed Matter +cond-mat/0205381 Statistical Mechanics +cond-mat/0205383 Disordered Systems and Neural Networks +cond-mat/0205390 Mesoscale and Nanoscale Physics +cond-mat/0205391 Statistical Mechanics +cond-mat/0205393 Disordered Systems and Neural Networks +cond-mat/0205394 Mesoscale and Nanoscale Physics +cond-mat/0205396 Materials Science +cond-mat/0205397 Statistical Mechanics +cond-mat/0205400 +cond-mat/0205401 +cond-mat/0205405 Disordered Systems and Neural Networks +cond-mat/0205406 Superconductivity +cond-mat/0205408 +cond-mat/0205409 +cond-mat/0205410 Strongly Correlated Electrons +cond-mat/0205413 Statistical Mechanics +cond-mat/0205415 Superconductivity +cond-mat/0205416 Disordered Systems and Neural Networks +cond-mat/0205418 Materials Science +cond-mat/0205419 +cond-mat/0205420 Disordered Systems and Neural Networks +cond-mat/0205421 Statistical Mechanics +cond-mat/0205422 Soft Condensed Matter +cond-mat/0205423 +cond-mat/0205426 Materials Science +cond-mat/0205428 Statistical Mechanics +cond-mat/0205429 Strongly Correlated Electrons +cond-mat/0205430 Strongly Correlated Electrons +cond-mat/0205432 Disordered Systems and Neural Networks +cond-mat/0205433 Strongly Correlated Electrons +cond-mat/0205435 Materials Science +cond-mat/0205438 Mesoscale and Nanoscale Physics +cond-mat/0205440 Soft Condensed Matter +cond-mat/0205441 Disordered Systems and Neural Networks +cond-mat/0205444 Strongly Correlated Electrons +cond-mat/0205445 +cond-mat/0205446 Statistical Mechanics +cond-mat/0205449 Strongly Correlated Electrons +cond-mat/0205450 +cond-mat/0205452 Mesoscale and Nanoscale Physics +cond-mat/0205453 Mesoscale and Nanoscale Physics +cond-mat/0205454 Soft Condensed Matter +cond-mat/0205455 Statistical Mechanics +cond-mat/0205456 Statistical Mechanics +cond-mat/0205459 Materials Science +cond-mat/0205461 Superconductivity +cond-mat/0205463 Superconductivity +cond-mat/0205464 Soft Condensed Matter +cond-mat/0205465 Disordered Systems and Neural Networks +cond-mat/0205466 Superconductivity +cond-mat/0205470 Superconductivity +cond-mat/0205471 Disordered Systems and Neural Networks +cond-mat/0205472 Statistical Mechanics +cond-mat/0205473 Materials Science +cond-mat/0205475 Superconductivity +cond-mat/0205476 Disordered Systems and Neural Networks +cond-mat/0205478 +cond-mat/0205479 Strongly Correlated Electrons +cond-mat/0205480 Statistical Mechanics +cond-mat/0205481 Strongly Correlated Electrons +cond-mat/0205482 Statistical Mechanics +cond-mat/0205483 Statistical Mechanics +cond-mat/0205485 +cond-mat/0205487 Superconductivity +cond-mat/0205488 Soft Condensed Matter +cond-mat/0205490 Statistical Mechanics +cond-mat/0205492 Disordered Systems and Neural Networks +cond-mat/0205493 Statistical Mechanics +cond-mat/0205494 Statistical Mechanics +cond-mat/0205495 Superconductivity +cond-mat/0205496 Strongly Correlated Electrons +cond-mat/0205497 Superconductivity +cond-mat/0205498 Strongly Correlated Electrons +cond-mat/0205500 Statistical Mechanics +cond-mat/0205501 Soft Condensed Matter +cond-mat/0205504 Superconductivity +cond-mat/0205505 Soft Condensed Matter +cond-mat/0205506 Statistical Mechanics +cond-mat/0205507 Statistical Mechanics +cond-mat/0205508 +cond-mat/0205510 +cond-mat/0205511 Statistical Mechanics +cond-mat/0205513 Mesoscale and Nanoscale Physics +cond-mat/0205514 +cond-mat/0205515 Statistical Mechanics +cond-mat/0205516 +cond-mat/0205518 Superconductivity +cond-mat/0205519 Superconductivity +cond-mat/0205522 Strongly Correlated Electrons +cond-mat/0205526 Strongly Correlated Electrons +cond-mat/0205527 +cond-mat/0205530 Strongly Correlated Electrons +cond-mat/0205531 Statistical Mechanics +cond-mat/0205532 Mesoscale and Nanoscale Physics +cond-mat/0205534 Superconductivity +cond-mat/0205537 Strongly Correlated Electrons +cond-mat/0205538 Statistical Mechanics +cond-mat/0205541 Superconductivity +cond-mat/0205543 Disordered Systems and Neural Networks +cond-mat/0205545 Mesoscale and Nanoscale Physics +cond-mat/0205546 Statistical Mechanics +cond-mat/0205548 Statistical Mechanics +cond-mat/0205549 Mesoscale and Nanoscale Physics +cond-mat/0205550 Disordered Systems and Neural Networks +cond-mat/0205551 Soft Condensed Matter +cond-mat/0205553 Mesoscale and Nanoscale Physics +cond-mat/0205554 Strongly Correlated Electrons +cond-mat/0205558 Superconductivity +cond-mat/0205559 Statistical Mechanics +cond-mat/0205560 Materials Science +cond-mat/0205561 Superconductivity +cond-mat/0205563 Soft Condensed Matter +cond-mat/0205569 Soft Condensed Matter +cond-mat/0205570 +cond-mat/0205572 Disordered Systems and Neural Networks +cond-mat/0205573 Materials Science +cond-mat/0205575 Materials Science +cond-mat/0205576 Soft Condensed Matter +cond-mat/0205577 Strongly Correlated Electrons +cond-mat/0205578 Statistical Mechanics +cond-mat/0205580 Superconductivity +cond-mat/0205581 Statistical Mechanics +cond-mat/0205583 Strongly Correlated Electrons +cond-mat/0205584 Statistical Mechanics +cond-mat/0205585 Statistical Mechanics +cond-mat/0205586 Soft Condensed Matter +cond-mat/0205589 Statistical Mechanics +cond-mat/0205590 Statistical Mechanics +cond-mat/0205592 Statistical Mechanics +cond-mat/0205593 Superconductivity +cond-mat/0205594 Statistical Mechanics +cond-mat/0205596 Superconductivity +cond-mat/0205599 Soft Condensed Matter +cond-mat/0205601 +cond-mat/0205602 Materials Science +cond-mat/0205604 Mesoscale and Nanoscale Physics +cond-mat/0205605 Soft Condensed Matter +cond-mat/0205606 Strongly Correlated Electrons +cond-mat/0205607 Superconductivity +cond-mat/0205608 Disordered Systems and Neural Networks +cond-mat/0205610 Materials Science +cond-mat/0205612 Soft Condensed Matter +cond-mat/0205613 Disordered Systems and Neural Networks +cond-mat/0205614 Statistical Mechanics +cond-mat/0205616 Superconductivity +cond-mat/0205617 Strongly Correlated Electrons +cond-mat/0205618 Soft Condensed Matter +cond-mat/0205619 Statistical Mechanics +cond-mat/0205620 Materials Science +cond-mat/0205621 Statistical Mechanics +cond-mat/0205622 Superconductivity +cond-mat/0205623 Materials Science +cond-mat/0205624 +cond-mat/0205627 Statistical Mechanics +cond-mat/0205629 Mesoscale and Nanoscale Physics +cond-mat/0205630 Soft Condensed Matter +cond-mat/0205633 Materials Science +cond-mat/0205635 Strongly Correlated Electrons +cond-mat/0205638 +cond-mat/0205639 Statistical Mechanics +cond-mat/0205641 +cond-mat/0205642 Soft Condensed Matter +cond-mat/0205643 Mesoscale and Nanoscale Physics +cond-mat/0205645 +cond-mat/0205646 Statistical Mechanics +cond-mat/0205647 Mesoscale and Nanoscale Physics +cond-mat/0205651 Mesoscale and Nanoscale Physics +cond-mat/0205656 Disordered Systems and Neural Networks +cond-mat/0205658 Statistical Mechanics +cond-mat/0205659 Disordered Systems and Neural Networks +cond-mat/0205663 Disordered Systems and Neural Networks +cond-mat/0205664 Superconductivity +cond-mat/0205665 Disordered Systems and Neural Networks +cond-mat/0205666 Statistical Mechanics +cond-mat/0205667 Strongly Correlated Electrons +cond-mat/0206001 Strongly Correlated Electrons +cond-mat/0206002 Soft Condensed Matter +cond-mat/0206003 Strongly Correlated Electrons +cond-mat/0206004 Superconductivity +cond-mat/0206005 Mesoscale and Nanoscale Physics +cond-mat/0206006 Superconductivity +cond-mat/0206009 Mesoscale and Nanoscale Physics +cond-mat/0206010 Strongly Correlated Electrons +cond-mat/0206016 Mesoscale and Nanoscale Physics +cond-mat/0206017 Statistical Mechanics +cond-mat/0206019 Strongly Correlated Electrons +cond-mat/0206020 Mesoscale and Nanoscale Physics +cond-mat/0206021 Mesoscale and Nanoscale Physics +cond-mat/0206022 Disordered Systems and Neural Networks +cond-mat/0206026 Mesoscale and Nanoscale Physics +cond-mat/0206027 Statistical Mechanics +cond-mat/0206028 Materials Science +cond-mat/0206029 Materials Science +cond-mat/0206030 Disordered Systems and Neural Networks +cond-mat/0206031 Superconductivity +cond-mat/0206035 Disordered Systems and Neural Networks +cond-mat/0206036 Statistical Mechanics +cond-mat/0206037 Strongly Correlated Electrons +cond-mat/0206038 Statistical Mechanics +cond-mat/0206039 Statistical Mechanics +cond-mat/0206040 Statistical Mechanics +cond-mat/0206042 Superconductivity +cond-mat/0206046 Soft Condensed Matter +cond-mat/0206047 Statistical Mechanics +cond-mat/0206048 Mesoscale and Nanoscale Physics +cond-mat/0206050 Strongly Correlated Electrons +cond-mat/0206051 Superconductivity +cond-mat/0206054 Mesoscale and Nanoscale Physics +cond-mat/0206055 +cond-mat/0206056 +cond-mat/0206057 Statistical Mechanics +cond-mat/0206058 Mesoscale and Nanoscale Physics +cond-mat/0206059 Mesoscale and Nanoscale Physics +cond-mat/0206060 Superconductivity +cond-mat/0206061 Soft Condensed Matter +cond-mat/0206062 Soft Condensed Matter +cond-mat/0206063 Mesoscale and Nanoscale Physics +cond-mat/0206064 Strongly Correlated Electrons +cond-mat/0206065 Mesoscale and Nanoscale Physics +cond-mat/0206066 Statistical Mechanics +cond-mat/0206067 Soft Condensed Matter +cond-mat/0206069 Superconductivity +cond-mat/0206070 Statistical Mechanics +cond-mat/0206071 Statistical Mechanics +cond-mat/0206072 Materials Science +cond-mat/0206075 Disordered Systems and Neural Networks +cond-mat/0206077 Statistical Mechanics +cond-mat/0206078 Statistical Mechanics +cond-mat/0206079 Disordered Systems and Neural Networks +cond-mat/0206081 Strongly Correlated Electrons +cond-mat/0206082 Strongly Correlated Electrons +cond-mat/0206083 Statistical Mechanics +cond-mat/0206085 Materials Science +cond-mat/0206088 Disordered Systems and Neural Networks +cond-mat/0206089 Disordered Systems and Neural Networks +cond-mat/0206092 Strongly Correlated Electrons +cond-mat/0206094 Superconductivity +cond-mat/0206096 Superconductivity +cond-mat/0206098 +cond-mat/0206100 Statistical Mechanics +cond-mat/0206101 Strongly Correlated Electrons +cond-mat/0206102 Strongly Correlated Electrons +cond-mat/0206103 Superconductivity +cond-mat/0206104 Soft Condensed Matter +cond-mat/0206105 Statistical Mechanics +cond-mat/0206106 +cond-mat/0206107 Statistical Mechanics +cond-mat/0206108 Disordered Systems and Neural Networks +cond-mat/0206109 Mesoscale and Nanoscale Physics +cond-mat/0206110 Mesoscale and Nanoscale Physics +cond-mat/0206111 Statistical Mechanics +cond-mat/0206112 Statistical Mechanics +cond-mat/0206113 Superconductivity +cond-mat/0206114 Superconductivity +cond-mat/0206115 Superconductivity +cond-mat/0206116 Materials Science +cond-mat/0206118 Superconductivity +cond-mat/0206119 Soft Condensed Matter +cond-mat/0206121 +cond-mat/0206123 Materials Science +cond-mat/0206124 Statistical Mechanics +cond-mat/0206126 Soft Condensed Matter +cond-mat/0206127 Strongly Correlated Electrons +cond-mat/0206129 Materials Science +cond-mat/0206130 Statistical Mechanics +cond-mat/0206135 Disordered Systems and Neural Networks +cond-mat/0206136 Strongly Correlated Electrons +cond-mat/0206137 Strongly Correlated Electrons +cond-mat/0206138 +cond-mat/0206139 Statistical Mechanics +cond-mat/0206140 Mesoscale and Nanoscale Physics +cond-mat/0206141 Soft Condensed Matter +cond-mat/0206142 Mesoscale and Nanoscale Physics +cond-mat/0206143 Mesoscale and Nanoscale Physics +cond-mat/0206145 Statistical Mechanics +cond-mat/0206146 Materials Science +cond-mat/0206147 +cond-mat/0206148 Statistical Mechanics +cond-mat/0206152 Statistical Mechanics +cond-mat/0206154 Materials Science +cond-mat/0206155 Statistical Mechanics +cond-mat/0206156 Strongly Correlated Electrons +cond-mat/0206157 Soft Condensed Matter +cond-mat/0206158 Strongly Correlated Electrons +cond-mat/0206159 Statistical Mechanics +cond-mat/0206160 +cond-mat/0206167 Strongly Correlated Electrons +cond-mat/0206170 Superconductivity +cond-mat/0206174 Strongly Correlated Electrons +cond-mat/0206178 Superconductivity +cond-mat/0206179 Soft Condensed Matter +cond-mat/0206180 Disordered Systems and Neural Networks +cond-mat/0206181 Materials Science +cond-mat/0206182 Materials Science +cond-mat/0206183 Superconductivity +cond-mat/0206185 Disordered Systems and Neural Networks +cond-mat/0206186 +cond-mat/0206187 +cond-mat/0206188 Soft Condensed Matter +cond-mat/0206189 Soft Condensed Matter +cond-mat/0206190 Strongly Correlated Electrons +cond-mat/0206191 Mesoscale and Nanoscale Physics +cond-mat/0206193 Strongly Correlated Electrons +cond-mat/0206194 Disordered Systems and Neural Networks +cond-mat/0206195 Mesoscale and Nanoscale Physics +cond-mat/0206197 Strongly Correlated Electrons +cond-mat/0206198 Statistical Mechanics +cond-mat/0206199 Superconductivity +cond-mat/0206200 Strongly Correlated Electrons +cond-mat/0206201 Materials Science +cond-mat/0206202 Statistical Mechanics +cond-mat/0206203 Strongly Correlated Electrons +cond-mat/0206204 Strongly Correlated Electrons +cond-mat/0206206 Mesoscale and Nanoscale Physics +cond-mat/0206208 Strongly Correlated Electrons +cond-mat/0206209 Disordered Systems and Neural Networks +cond-mat/0206210 Superconductivity +cond-mat/0206211 Statistical Mechanics +cond-mat/0206212 Mesoscale and Nanoscale Physics +cond-mat/0206213 Disordered Systems and Neural Networks +cond-mat/0206214 Materials Science +cond-mat/0206216 Superconductivity +cond-mat/0206219 Materials Science +cond-mat/0206221 Superconductivity +cond-mat/0206222 +cond-mat/0206223 +cond-mat/0206224 Statistical Mechanics +cond-mat/0206225 Statistical Mechanics +cond-mat/0206226 Superconductivity +cond-mat/0206227 Superconductivity +cond-mat/0206230 +cond-mat/0206231 Superconductivity +cond-mat/0206232 +cond-mat/0206234 Soft Condensed Matter +cond-mat/0206236 Materials Science +cond-mat/0206239 Statistical Mechanics +cond-mat/0206244 Statistical Mechanics +cond-mat/0206245 Strongly Correlated Electrons +cond-mat/0206246 Soft Condensed Matter +cond-mat/0206248 Strongly Correlated Electrons +cond-mat/0206250 Strongly Correlated Electrons +cond-mat/0206251 Mesoscale and Nanoscale Physics +cond-mat/0206252 Soft Condensed Matter +cond-mat/0206253 Soft Condensed Matter +cond-mat/0206254 Superconductivity +cond-mat/0206255 Superconductivity +cond-mat/0206258 Strongly Correlated Electrons +cond-mat/0206259 Strongly Correlated Electrons +cond-mat/0206260 Soft Condensed Matter +cond-mat/0206262 Mesoscale and Nanoscale Physics +cond-mat/0206264 Materials Science +cond-mat/0206266 Statistical Mechanics +cond-mat/0206267 Superconductivity +cond-mat/0206269 Statistical Mechanics +cond-mat/0206270 Strongly Correlated Electrons +cond-mat/0206271 +cond-mat/0206272 Materials Science +cond-mat/0206273 Mesoscale and Nanoscale Physics +cond-mat/0206275 Statistical Mechanics +cond-mat/0206276 +cond-mat/0206278 Superconductivity +cond-mat/0206279 Strongly Correlated Electrons +cond-mat/0206282 Strongly Correlated Electrons +cond-mat/0206283 Soft Condensed Matter +cond-mat/0206284 Superconductivity +cond-mat/0206285 Superconductivity +cond-mat/0206286 Disordered Systems and Neural Networks +cond-mat/0206287 Strongly Correlated Electrons +cond-mat/0206288 Strongly Correlated Electrons +cond-mat/0206289 Strongly Correlated Electrons +cond-mat/0206291 Strongly Correlated Electrons +cond-mat/0206295 Materials Science +cond-mat/0206296 Soft Condensed Matter +cond-mat/0206299 +cond-mat/0206300 Superconductivity +cond-mat/0206301 +cond-mat/0206302 Mesoscale and Nanoscale Physics +cond-mat/0206303 Soft Condensed Matter +cond-mat/0206304 Strongly Correlated Electrons +cond-mat/0206305 Materials Science +cond-mat/0206308 +cond-mat/0206309 Materials Science +cond-mat/0206310 Mesoscale and Nanoscale Physics +cond-mat/0206311 Mesoscale and Nanoscale Physics +cond-mat/0206312 Statistical Mechanics +cond-mat/0206313 Superconductivity +cond-mat/0206314 Superconductivity +cond-mat/0206315 Disordered Systems and Neural Networks +cond-mat/0206316 Disordered Systems and Neural Networks +cond-mat/0206317 +cond-mat/0206318 Disordered Systems and Neural Networks +cond-mat/0206319 Strongly Correlated Electrons +cond-mat/0206320 Soft Condensed Matter +cond-mat/0206321 Materials Science +cond-mat/0206322 Strongly Correlated Electrons +cond-mat/0206323 Mesoscale and Nanoscale Physics +cond-mat/0206324 Superconductivity +cond-mat/0206328 Mesoscale and Nanoscale Physics +cond-mat/0206329 Statistical Mechanics +cond-mat/0206331 Superconductivity +cond-mat/0206333 +cond-mat/0206336 Disordered Systems and Neural Networks +cond-mat/0206337 Mesoscale and Nanoscale Physics +cond-mat/0206338 Soft Condensed Matter +cond-mat/0206340 Mesoscale and Nanoscale Physics +cond-mat/0206342 Superconductivity +cond-mat/0206345 Statistical Mechanics +cond-mat/0206346 Mesoscale and Nanoscale Physics +cond-mat/0206348 Soft Condensed Matter +cond-mat/0206350 Superconductivity +cond-mat/0206353 Strongly Correlated Electrons +cond-mat/0206354 Statistical Mechanics +cond-mat/0206355 Strongly Correlated Electrons +cond-mat/0206356 Disordered Systems and Neural Networks +cond-mat/0206357 Materials Science +cond-mat/0206359 Strongly Correlated Electrons +cond-mat/0206361 Statistical Mechanics +cond-mat/0206364 Soft Condensed Matter +cond-mat/0206365 Soft Condensed Matter +cond-mat/0206366 Strongly Correlated Electrons +cond-mat/0206369 Statistical Mechanics +cond-mat/0206370 Statistical Mechanics +cond-mat/0206373 Strongly Correlated Electrons +cond-mat/0206374 Strongly Correlated Electrons +cond-mat/0206375 Mesoscale and Nanoscale Physics +cond-mat/0206376 Disordered Systems and Neural Networks +cond-mat/0206377 Mesoscale and Nanoscale Physics +cond-mat/0206379 Mesoscale and Nanoscale Physics +cond-mat/0206380 Materials Science +cond-mat/0206382 Statistical Mechanics +cond-mat/0206384 Strongly Correlated Electrons +cond-mat/0206386 Strongly Correlated Electrons +cond-mat/0206387 Mesoscale and Nanoscale Physics +cond-mat/0206389 +cond-mat/0206391 Superconductivity +cond-mat/0206394 Statistical Mechanics +cond-mat/0206395 Soft Condensed Matter +cond-mat/0206396 Mesoscale and Nanoscale Physics +cond-mat/0206397 +cond-mat/0206398 Materials Science +cond-mat/0206400 Statistical Mechanics +cond-mat/0206401 Statistical Mechanics +cond-mat/0206402 Disordered Systems and Neural Networks +cond-mat/0206404 Mesoscale and Nanoscale Physics +cond-mat/0206405 Superconductivity +cond-mat/0206406 Statistical Mechanics +cond-mat/0206408 Soft Condensed Matter +cond-mat/0206410 Disordered Systems and Neural Networks +cond-mat/0206411 Strongly Correlated Electrons +cond-mat/0206412 Materials Science +cond-mat/0206414 Superconductivity +cond-mat/0206415 Materials Science +cond-mat/0206418 Superconductivity +cond-mat/0206419 Soft Condensed Matter +cond-mat/0206421 Strongly Correlated Electrons +cond-mat/0206422 Superconductivity +cond-mat/0206424 Soft Condensed Matter +cond-mat/0206426 Strongly Correlated Electrons +cond-mat/0206427 Materials Science +cond-mat/0206428 Materials Science +cond-mat/0206429 +cond-mat/0206430 +cond-mat/0206431 +cond-mat/0206433 Statistical Mechanics +cond-mat/0206434 Materials Science +cond-mat/0206437 Statistical Mechanics +cond-mat/0206439 Mesoscale and Nanoscale Physics +cond-mat/0206440 Superconductivity +cond-mat/0206441 +cond-mat/0206442 Superconductivity +cond-mat/0206443 Statistical Mechanics +cond-mat/0206444 Superconductivity +cond-mat/0206445 Superconductivity +cond-mat/0206448 +cond-mat/0206449 Strongly Correlated Electrons +cond-mat/0206450 Statistical Mechanics +cond-mat/0206451 Strongly Correlated Electrons +cond-mat/0206453 Statistical Mechanics +cond-mat/0206454 Mesoscale and Nanoscale Physics +cond-mat/0206455 Strongly Correlated Electrons +cond-mat/0206459 Statistical Mechanics +cond-mat/0206461 Statistical Mechanics +cond-mat/0206462 Soft Condensed Matter +cond-mat/0206463 Mesoscale and Nanoscale Physics +cond-mat/0206464 Soft Condensed Matter +cond-mat/0206468 Superconductivity +cond-mat/0206469 Strongly Correlated Electrons +cond-mat/0206470 Materials Science +cond-mat/0206480 +cond-mat/0206481 Statistical Mechanics +cond-mat/0206482 Soft Condensed Matter +cond-mat/0206483 Strongly Correlated Electrons +cond-mat/0206484 Superconductivity +cond-mat/0206485 Materials Science +cond-mat/0206486 Disordered Systems and Neural Networks +cond-mat/0206487 Superconductivity +cond-mat/0206488 +cond-mat/0206489 Statistical Mechanics +cond-mat/0206491 Statistical Mechanics +cond-mat/0206492 Materials Science +cond-mat/0206495 Soft Condensed Matter +cond-mat/0206497 Strongly Correlated Electrons +cond-mat/0206499 Materials Science +cond-mat/0206500 Soft Condensed Matter +cond-mat/0206501 Strongly Correlated Electrons +cond-mat/0206508 Strongly Correlated Electrons +cond-mat/0206509 Statistical Mechanics +cond-mat/0206511 Statistical Mechanics +cond-mat/0206512 Soft Condensed Matter +cond-mat/0206514 +cond-mat/0206515 +cond-mat/0206516 Soft Condensed Matter +cond-mat/0206517 Soft Condensed Matter +cond-mat/0206519 Mesoscale and Nanoscale Physics +cond-mat/0206520 Disordered Systems and Neural Networks +cond-mat/0206523 Disordered Systems and Neural Networks +cond-mat/0206524 Superconductivity +cond-mat/0206525 Statistical Mechanics +cond-mat/0206526 Superconductivity +cond-mat/0206528 Strongly Correlated Electrons +cond-mat/0206529 Disordered Systems and Neural Networks +cond-mat/0206530 Disordered Systems and Neural Networks +cond-mat/0206531 Strongly Correlated Electrons +cond-mat/0206532 +cond-mat/0206533 Disordered Systems and Neural Networks +cond-mat/0206534 Superconductivity +cond-mat/0206536 Strongly Correlated Electrons +cond-mat/0206537 Strongly Correlated Electrons +cond-mat/0206538 Strongly Correlated Electrons +cond-mat/0206539 Strongly Correlated Electrons +cond-mat/0206541 Strongly Correlated Electrons +cond-mat/0206543 +cond-mat/0206544 Superconductivity +cond-mat/0206546 Statistical Mechanics +cond-mat/0206547 Mesoscale and Nanoscale Physics +cond-mat/0206548 Strongly Correlated Electrons +cond-mat/0206549 Materials Science +cond-mat/0206550 Statistical Mechanics +cond-mat/0206553 Strongly Correlated Electrons +cond-mat/0206554 Strongly Correlated Electrons +cond-mat/0206555 Strongly Correlated Electrons +cond-mat/0206561 +cond-mat/0206563 +cond-mat/0206564 +cond-mat/0206565 Strongly Correlated Electrons +cond-mat/0206566 +cond-mat/0206567 +cond-mat/0206568 +cond-mat/0206569 Disordered Systems and Neural Networks +cond-mat/0206570 Statistical Mechanics +cond-mat/0206571 Strongly Correlated Electrons +cond-mat/0206573 Strongly Correlated Electrons +cond-mat/0206574 +cond-mat/0206577 Statistical Mechanics +cond-mat/0206579 Soft Condensed Matter +cond-mat/0206580 Materials Science +cond-mat/0206581 Statistical Mechanics +cond-mat/0206582 Statistical Mechanics +cond-mat/0206586 Superconductivity +cond-mat/0207001 Strongly Correlated Electrons +cond-mat/0207002 Superconductivity +cond-mat/0207003 Strongly Correlated Electrons +cond-mat/0207005 Strongly Correlated Electrons +cond-mat/0207006 Disordered Systems and Neural Networks +cond-mat/0207007 Disordered Systems and Neural Networks +cond-mat/0207008 Disordered Systems and Neural Networks +cond-mat/0207010 Mesoscale and Nanoscale Physics +cond-mat/0207011 Statistical Mechanics +cond-mat/0207012 Strongly Correlated Electrons +cond-mat/0207013 Strongly Correlated Electrons +cond-mat/0207014 Soft Condensed Matter +cond-mat/0207015 +cond-mat/0207017 Strongly Correlated Electrons +cond-mat/0207018 Statistical Mechanics +cond-mat/0207020 Statistical Mechanics +cond-mat/0207021 Strongly Correlated Electrons +cond-mat/0207022 Materials Science +cond-mat/0207025 Statistical Mechanics +cond-mat/0207027 Superconductivity +cond-mat/0207028 Superconductivity +cond-mat/0207029 +cond-mat/0207030 Disordered Systems and Neural Networks +cond-mat/0207031 Superconductivity +cond-mat/0207033 Superconductivity +cond-mat/0207034 Strongly Correlated Electrons +cond-mat/0207035 Disordered Systems and Neural Networks +cond-mat/0207036 Mesoscale and Nanoscale Physics +cond-mat/0207037 Materials Science +cond-mat/0207038 Strongly Correlated Electrons +cond-mat/0207039 Materials Science +cond-mat/0207040 +cond-mat/0207041 Statistical Mechanics +cond-mat/0207042 Statistical Mechanics +cond-mat/0207044 Mesoscale and Nanoscale Physics +cond-mat/0207045 Strongly Correlated Electrons +cond-mat/0207046 +cond-mat/0207048 +cond-mat/0207049 Statistical Mechanics +cond-mat/0207050 Materials Science +cond-mat/0207051 Statistical Mechanics +cond-mat/0207053 Disordered Systems and Neural Networks +cond-mat/0207054 Disordered Systems and Neural Networks +cond-mat/0207055 Statistical Mechanics +cond-mat/0207056 Strongly Correlated Electrons +cond-mat/0207057 Mesoscale and Nanoscale Physics +cond-mat/0207059 Statistical Mechanics +cond-mat/0207060 Statistical Mechanics +cond-mat/0207062 Mesoscale and Nanoscale Physics +cond-mat/0207064 Mesoscale and Nanoscale Physics +cond-mat/0207065 Superconductivity +cond-mat/0207069 Statistical Mechanics +cond-mat/0207070 Mesoscale and Nanoscale Physics +cond-mat/0207073 Strongly Correlated Electrons +cond-mat/0207074 Superconductivity +cond-mat/0207075 Soft Condensed Matter +cond-mat/0207076 Strongly Correlated Electrons +cond-mat/0207077 Strongly Correlated Electrons +cond-mat/0207079 Mesoscale and Nanoscale Physics +cond-mat/0207080 Superconductivity +cond-mat/0207082 Materials Science +cond-mat/0207086 Soft Condensed Matter +cond-mat/0207087 Statistical Mechanics +cond-mat/0207089 Soft Condensed Matter +cond-mat/0207090 Materials Science +cond-mat/0207094 Statistical Mechanics +cond-mat/0207095 Soft Condensed Matter +cond-mat/0207096 Mesoscale and Nanoscale Physics +cond-mat/0207098 Superconductivity +cond-mat/0207100 Statistical Mechanics +cond-mat/0207102 Statistical Mechanics +cond-mat/0207105 Disordered Systems and Neural Networks +cond-mat/0207107 Statistical Mechanics +cond-mat/0207108 Mesoscale and Nanoscale Physics +cond-mat/0207109 Mesoscale and Nanoscale Physics +cond-mat/0207112 Mesoscale and Nanoscale Physics +cond-mat/0207113 Mesoscale and Nanoscale Physics +cond-mat/0207114 Superconductivity +cond-mat/0207115 +cond-mat/0207116 Strongly Correlated Electrons +cond-mat/0207117 +cond-mat/0207119 Materials Science +cond-mat/0207125 Strongly Correlated Electrons +cond-mat/0207127 Statistical Mechanics +cond-mat/0207128 Strongly Correlated Electrons +cond-mat/0207129 Statistical Mechanics +cond-mat/0207130 Materials Science +cond-mat/0207131 Soft Condensed Matter +cond-mat/0207133 Superconductivity +cond-mat/0207134 Strongly Correlated Electrons +cond-mat/0207135 Mesoscale and Nanoscale Physics +cond-mat/0207137 Statistical Mechanics +cond-mat/0207141 Superconductivity +cond-mat/0207142 Strongly Correlated Electrons +cond-mat/0207143 Soft Condensed Matter +cond-mat/0207144 Disordered Systems and Neural Networks +cond-mat/0207146 Superconductivity +cond-mat/0207147 Superconductivity +cond-mat/0207148 Superconductivity +cond-mat/0207154 +cond-mat/0207155 +cond-mat/0207157 Statistical Mechanics +cond-mat/0207159 Soft Condensed Matter +cond-mat/0207160 Disordered Systems and Neural Networks +cond-mat/0207161 Superconductivity +cond-mat/0207162 Soft Condensed Matter +cond-mat/0207163 Materials Science +cond-mat/0207164 +cond-mat/0207165 Statistical Mechanics +cond-mat/0207166 +cond-mat/0207169 Disordered Systems and Neural Networks +cond-mat/0207171 Soft Condensed Matter +cond-mat/0207172 Statistical Mechanics +cond-mat/0207175 +cond-mat/0207176 Statistical Mechanics +cond-mat/0207178 Materials Science +cond-mat/0207179 +cond-mat/0207181 Statistical Mechanics +cond-mat/0207184 Strongly Correlated Electrons +cond-mat/0207187 Statistical Mechanics +cond-mat/0207189 Superconductivity +cond-mat/0207194 Disordered Systems and Neural Networks +cond-mat/0207195 Mesoscale and Nanoscale Physics +cond-mat/0207196 Soft Condensed Matter +cond-mat/0207197 Strongly Correlated Electrons +cond-mat/0207199 Strongly Correlated Electrons +cond-mat/0207201 Statistical Mechanics +cond-mat/0207202 Soft Condensed Matter +cond-mat/0207204 Soft Condensed Matter +cond-mat/0207205 +cond-mat/0207206 Strongly Correlated Electrons +cond-mat/0207207 Statistical Mechanics +cond-mat/0207212 Statistical Mechanics +cond-mat/0207213 +cond-mat/0207220 +cond-mat/0207222 Mesoscale and Nanoscale Physics +cond-mat/0207223 Superconductivity +cond-mat/0207224 Materials Science +cond-mat/0207225 Superconductivity +cond-mat/0207229 Materials Science +cond-mat/0207234 Mesoscale and Nanoscale Physics +cond-mat/0207235 Strongly Correlated Electrons +cond-mat/0207236 Disordered Systems and Neural Networks +cond-mat/0207237 Strongly Correlated Electrons +cond-mat/0207238 Statistical Mechanics +cond-mat/0207239 Strongly Correlated Electrons +cond-mat/0207242 +cond-mat/0207243 Superconductivity +cond-mat/0207244 Strongly Correlated Electrons +cond-mat/0207245 Statistical Mechanics +cond-mat/0207247 Superconductivity +cond-mat/0207249 Statistical Mechanics +cond-mat/0207250 Strongly Correlated Electrons +cond-mat/0207251 Mesoscale and Nanoscale Physics +cond-mat/0207252 Superconductivity +cond-mat/0207253 Statistical Mechanics +cond-mat/0207255 Soft Condensed Matter +cond-mat/0207257 Mesoscale and Nanoscale Physics +cond-mat/0207258 Mesoscale and Nanoscale Physics +cond-mat/0207260 Statistical Mechanics +cond-mat/0207261 +cond-mat/0207262 Strongly Correlated Electrons +cond-mat/0207263 Superconductivity +cond-mat/0207264 Statistical Mechanics +cond-mat/0207267 Statistical Mechanics +cond-mat/0207269 Statistical Mechanics +cond-mat/0207272 +cond-mat/0207273 Disordered Systems and Neural Networks +cond-mat/0207276 Statistical Mechanics +cond-mat/0207277 Mesoscale and Nanoscale Physics +cond-mat/0207279 Strongly Correlated Electrons +cond-mat/0207280 Statistical Mechanics +cond-mat/0207282 Soft Condensed Matter +cond-mat/0207283 Mesoscale and Nanoscale Physics +cond-mat/0207285 Superconductivity +cond-mat/0207286 Statistical Mechanics +cond-mat/0207287 Materials Science +cond-mat/0207288 Disordered Systems and Neural Networks +cond-mat/0207289 +cond-mat/0207291 Strongly Correlated Electrons +cond-mat/0207292 Strongly Correlated Electrons +cond-mat/0207293 Soft Condensed Matter +cond-mat/0207294 Mesoscale and Nanoscale Physics +cond-mat/0207296 Disordered Systems and Neural Networks +cond-mat/0207297 Superconductivity +cond-mat/0207299 Materials Science +cond-mat/0207300 Disordered Systems and Neural Networks +cond-mat/0207302 Statistical Mechanics +cond-mat/0207303 Strongly Correlated Electrons +cond-mat/0207304 Soft Condensed Matter +cond-mat/0207305 Strongly Correlated Electrons +cond-mat/0207306 Strongly Correlated Electrons +cond-mat/0207307 Mesoscale and Nanoscale Physics +cond-mat/0207309 Superconductivity +cond-mat/0207310 Disordered Systems and Neural Networks +cond-mat/0207312 Materials Science +cond-mat/0207313 Disordered Systems and Neural Networks +cond-mat/0207314 Materials Science +cond-mat/0207315 Strongly Correlated Electrons +cond-mat/0207316 Strongly Correlated Electrons +cond-mat/0207317 Mesoscale and Nanoscale Physics +cond-mat/0207318 Materials Science +cond-mat/0207319 +cond-mat/0207320 Soft Condensed Matter +cond-mat/0207321 Statistical Mechanics +cond-mat/0207324 Statistical Mechanics +cond-mat/0207325 Strongly Correlated Electrons +cond-mat/0207326 Strongly Correlated Electrons +cond-mat/0207327 Strongly Correlated Electrons +cond-mat/0207328 +cond-mat/0207330 Superconductivity +cond-mat/0207331 Strongly Correlated Electrons +cond-mat/0207332 Disordered Systems and Neural Networks +cond-mat/0207333 Mesoscale and Nanoscale Physics +cond-mat/0207335 Soft Condensed Matter +cond-mat/0207336 +cond-mat/0207338 Statistical Mechanics +cond-mat/0207339 Statistical Mechanics +cond-mat/0207341 Soft Condensed Matter +cond-mat/0207343 Mesoscale and Nanoscale Physics +cond-mat/0207346 Materials Science +cond-mat/0207348 Superconductivity +cond-mat/0207350 Statistical Mechanics +cond-mat/0207351 Statistical Mechanics +cond-mat/0207356 Statistical Mechanics +cond-mat/0207357 Materials Science +cond-mat/0207358 Statistical Mechanics +cond-mat/0207360 +cond-mat/0207362 Disordered Systems and Neural Networks +cond-mat/0207364 Superconductivity +cond-mat/0207365 Statistical Mechanics +cond-mat/0207367 Statistical Mechanics +cond-mat/0207369 Strongly Correlated Electrons +cond-mat/0207370 Statistical Mechanics +cond-mat/0207373 Superconductivity +cond-mat/0207377 +cond-mat/0207379 Strongly Correlated Electrons +cond-mat/0207381 Mesoscale and Nanoscale Physics +cond-mat/0207383 Strongly Correlated Electrons +cond-mat/0207385 Superconductivity +cond-mat/0207386 +cond-mat/0207388 +cond-mat/0207389 Mesoscale and Nanoscale Physics +cond-mat/0207390 Materials Science +cond-mat/0207393 Statistical Mechanics +cond-mat/0207398 Strongly Correlated Electrons +cond-mat/0207399 Soft Condensed Matter +cond-mat/0207400 Superconductivity +cond-mat/0207401 Materials Science +cond-mat/0207403 Statistical Mechanics +cond-mat/0207405 Statistical Mechanics +cond-mat/0207408 Mesoscale and Nanoscale Physics +cond-mat/0207409 Soft Condensed Matter +cond-mat/0207410 Strongly Correlated Electrons +cond-mat/0207411 Superconductivity +cond-mat/0207414 Statistical Mechanics +cond-mat/0207415 +cond-mat/0207416 Disordered Systems and Neural Networks +cond-mat/0207418 Statistical Mechanics +cond-mat/0207419 Strongly Correlated Electrons +cond-mat/0207420 Statistical Mechanics +cond-mat/0207422 Superconductivity +cond-mat/0207425 Superconductivity +cond-mat/0207429 Strongly Correlated Electrons +cond-mat/0207430 Statistical Mechanics +cond-mat/0207433 Soft Condensed Matter +cond-mat/0207435 Superconductivity +cond-mat/0207436 Superconductivity +cond-mat/0207437 Materials Science +cond-mat/0207438 Statistical Mechanics +cond-mat/0207441 Strongly Correlated Electrons +cond-mat/0207443 Materials Science +cond-mat/0207444 Materials Science +cond-mat/0207445 Statistical Mechanics +cond-mat/0207448 Superconductivity +cond-mat/0207449 Statistical Mechanics +cond-mat/0207450 Strongly Correlated Electrons +cond-mat/0207451 Materials Science +cond-mat/0207453 Statistical Mechanics +cond-mat/0207454 Superconductivity +cond-mat/0207455 Mesoscale and Nanoscale Physics +cond-mat/0207456 +cond-mat/0207458 Mesoscale and Nanoscale Physics +cond-mat/0207459 +cond-mat/0207460 Disordered Systems and Neural Networks +cond-mat/0207461 Strongly Correlated Electrons +cond-mat/0207462 Strongly Correlated Electrons +cond-mat/0207464 Strongly Correlated Electrons +cond-mat/0207466 Disordered Systems and Neural Networks +cond-mat/0207468 Statistical Mechanics +cond-mat/0207470 Statistical Mechanics +cond-mat/0207471 Materials Science +cond-mat/0207473 +cond-mat/0207476 Statistical Mechanics +cond-mat/0207478 Superconductivity +cond-mat/0207479 Strongly Correlated Electrons +cond-mat/0207481 +cond-mat/0207482 Statistical Mechanics +cond-mat/0207483 Mesoscale and Nanoscale Physics +cond-mat/0207484 +cond-mat/0207486 Strongly Correlated Electrons +cond-mat/0207488 Superconductivity +cond-mat/0207493 Strongly Correlated Electrons +cond-mat/0207494 Materials Science +cond-mat/0207495 +cond-mat/0207496 Materials Science +cond-mat/0207497 Strongly Correlated Electrons +cond-mat/0207498 Soft Condensed Matter +cond-mat/0207499 Soft Condensed Matter +cond-mat/0207501 Strongly Correlated Electrons +cond-mat/0207503 Soft Condensed Matter +cond-mat/0207505 Disordered Systems and Neural Networks +cond-mat/0207506 Disordered Systems and Neural Networks +cond-mat/0207509 Strongly Correlated Electrons +cond-mat/0207510 Statistical Mechanics +cond-mat/0207511 Superconductivity +cond-mat/0207512 Disordered Systems and Neural Networks +cond-mat/0207515 Statistical Mechanics +cond-mat/0207517 +cond-mat/0207522 Statistical Mechanics +cond-mat/0207524 Statistical Mechanics +cond-mat/0207528 Strongly Correlated Electrons +cond-mat/0207529 Strongly Correlated Electrons +cond-mat/0207532 Statistical Mechanics +cond-mat/0207533 Mesoscale and Nanoscale Physics +cond-mat/0207535 +cond-mat/0207537 Mesoscale and Nanoscale Physics +cond-mat/0207538 Strongly Correlated Electrons +cond-mat/0207539 Statistical Mechanics +cond-mat/0207540 Statistical Mechanics +cond-mat/0207542 Superconductivity +cond-mat/0207543 Materials Science +cond-mat/0207546 +cond-mat/0207547 +cond-mat/0207548 +cond-mat/0207549 Superconductivity +cond-mat/0207552 Materials Science +cond-mat/0207554 Materials Science +cond-mat/0207556 Strongly Correlated Electrons +cond-mat/0207557 Mesoscale and Nanoscale Physics +cond-mat/0207558 Soft Condensed Matter +cond-mat/0207559 Superconductivity +cond-mat/0207560 +cond-mat/0207561 Materials Science +cond-mat/0207562 Superconductivity +cond-mat/0207566 +cond-mat/0207569 +cond-mat/0207573 Statistical Mechanics +cond-mat/0207575 Strongly Correlated Electrons +cond-mat/0207577 Materials Science +cond-mat/0207578 Strongly Correlated Electrons +cond-mat/0207579 Soft Condensed Matter +cond-mat/0207580 Superconductivity +cond-mat/0207581 Materials Science +cond-mat/0207582 Strongly Correlated Electrons +cond-mat/0207584 +cond-mat/0207585 Mesoscale and Nanoscale Physics +cond-mat/0207588 Disordered Systems and Neural Networks +cond-mat/0207590 +cond-mat/0207591 +cond-mat/0207592 Strongly Correlated Electrons +cond-mat/0207593 Mesoscale and Nanoscale Physics +cond-mat/0207595 Strongly Correlated Electrons +cond-mat/0207596 Mesoscale and Nanoscale Physics +cond-mat/0207597 Mesoscale and Nanoscale Physics +cond-mat/0207602 Materials Science +cond-mat/0207603 Strongly Correlated Electrons +cond-mat/0207604 Strongly Correlated Electrons +cond-mat/0207605 Statistical Mechanics +cond-mat/0207606 Statistical Mechanics +cond-mat/0207607 Strongly Correlated Electrons +cond-mat/0207608 Disordered Systems and Neural Networks +cond-mat/0207609 Soft Condensed Matter +cond-mat/0207610 Disordered Systems and Neural Networks +cond-mat/0207611 Statistical Mechanics +cond-mat/0207612 Strongly Correlated Electrons +cond-mat/0207613 +cond-mat/0207614 Statistical Mechanics +cond-mat/0207615 Mesoscale and Nanoscale Physics +cond-mat/0207616 Mesoscale and Nanoscale Physics +cond-mat/0207619 Statistical Mechanics +cond-mat/0207620 Strongly Correlated Electrons +cond-mat/0207621 Superconductivity +cond-mat/0207623 Strongly Correlated Electrons +cond-mat/0207624 Mesoscale and Nanoscale Physics +cond-mat/0207629 Superconductivity +cond-mat/0207630 Soft Condensed Matter +cond-mat/0207631 Materials Science +cond-mat/0207633 +cond-mat/0207634 Superconductivity +cond-mat/0207636 Mesoscale and Nanoscale Physics +cond-mat/0207637 Disordered Systems and Neural Networks +cond-mat/0207638 +cond-mat/0207640 Superconductivity +cond-mat/0207641 Mesoscale and Nanoscale Physics +cond-mat/0207644 Strongly Correlated Electrons +cond-mat/0207645 Materials Science +cond-mat/0207648 Materials Science +cond-mat/0207649 Materials Science +cond-mat/0207650 Materials Science +cond-mat/0207651 Soft Condensed Matter +cond-mat/0207652 +cond-mat/0207653 Statistical Mechanics +cond-mat/0207654 Soft Condensed Matter +cond-mat/0207655 Superconductivity +cond-mat/0207658 Superconductivity +cond-mat/0207660 Strongly Correlated Electrons +cond-mat/0207662 Mesoscale and Nanoscale Physics +cond-mat/0207664 Strongly Correlated Electrons +cond-mat/0207665 Statistical Mechanics +cond-mat/0207666 Strongly Correlated Electrons +cond-mat/0207667 Mesoscale and Nanoscale Physics +cond-mat/0207671 Mesoscale and Nanoscale Physics +cond-mat/0207673 Statistical Mechanics +cond-mat/0207679 Soft Condensed Matter +cond-mat/0207680 Materials Science +cond-mat/0207684 Mesoscale and Nanoscale Physics +cond-mat/0207686 Statistical Mechanics +cond-mat/0207687 Superconductivity +cond-mat/0207688 Superconductivity +cond-mat/0207691 Statistical Mechanics +cond-mat/0207693 Strongly Correlated Electrons +cond-mat/0207694 Disordered Systems and Neural Networks +cond-mat/0207695 Soft Condensed Matter +cond-mat/0207700 Superconductivity +cond-mat/0207701 Statistical Mechanics +cond-mat/0207703 Mesoscale and Nanoscale Physics +cond-mat/0207705 +cond-mat/0207708 Strongly Correlated Electrons +cond-mat/0207709 Disordered Systems and Neural Networks +cond-mat/0207710 Statistical Mechanics +cond-mat/0207713 Statistical Mechanics +cond-mat/0207714 Strongly Correlated Electrons +cond-mat/0207715 Mesoscale and Nanoscale Physics +cond-mat/0207717 Soft Condensed Matter +cond-mat/0207719 Statistical Mechanics +cond-mat/0207720 Statistical Mechanics +cond-mat/0207722 Disordered Systems and Neural Networks +cond-mat/0207723 +cond-mat/0207724 Superconductivity +cond-mat/0207725 Statistical Mechanics +cond-mat/0207726 Materials Science +cond-mat/0207729 Statistical Mechanics +cond-mat/0207730 Strongly Correlated Electrons +cond-mat/0207732 Mesoscale and Nanoscale Physics +cond-mat/0207733 +cond-mat/0207734 Disordered Systems and Neural Networks +cond-mat/0207735 Materials Science +cond-mat/0207739 Soft Condensed Matter +cond-mat/0207740 Soft Condensed Matter +cond-mat/0207744 Statistical Mechanics +cond-mat/0207745 Disordered Systems and Neural Networks +cond-mat/0207748 Superconductivity +cond-mat/0207749 Soft Condensed Matter +cond-mat/0208001 +cond-mat/0208002 Statistical Mechanics +cond-mat/0208005 Strongly Correlated Electrons +cond-mat/0208008 Superconductivity +cond-mat/0208009 Superconductivity +cond-mat/0208011 +cond-mat/0208012 Superconductivity +cond-mat/0208013 Superconductivity +cond-mat/0208014 Strongly Correlated Electrons +cond-mat/0208016 Mesoscale and Nanoscale Physics +cond-mat/0208017 Strongly Correlated Electrons +cond-mat/0208018 Disordered Systems and Neural Networks +cond-mat/0208019 Strongly Correlated Electrons +cond-mat/0208020 Superconductivity +cond-mat/0208021 Materials Science +cond-mat/0208022 Soft Condensed Matter +cond-mat/0208023 Soft Condensed Matter +cond-mat/0208026 Materials Science +cond-mat/0208028 Statistical Mechanics +cond-mat/0208029 Superconductivity +cond-mat/0208030 Disordered Systems and Neural Networks +cond-mat/0208031 Materials Science +cond-mat/0208032 Soft Condensed Matter +cond-mat/0208033 Strongly Correlated Electrons +cond-mat/0208034 Disordered Systems and Neural Networks +cond-mat/0208035 Materials Science +cond-mat/0208037 Statistical Mechanics +cond-mat/0208038 Superconductivity +cond-mat/0208040 Superconductivity +cond-mat/0208042 Statistical Mechanics +cond-mat/0208044 Strongly Correlated Electrons +cond-mat/0208045 Statistical Mechanics +cond-mat/0208046 Statistical Mechanics +cond-mat/0208047 +cond-mat/0208048 Materials Science +cond-mat/0208049 Strongly Correlated Electrons +cond-mat/0208050 Strongly Correlated Electrons +cond-mat/0208051 +cond-mat/0208052 Superconductivity +cond-mat/0208053 Superconductivity +cond-mat/0208054 Superconductivity +cond-mat/0208055 Materials Science +cond-mat/0208058 Materials Science +cond-mat/0208059 Strongly Correlated Electrons +cond-mat/0208060 Superconductivity +cond-mat/0208062 Materials Science +cond-mat/0208066 Mesoscale and Nanoscale Physics +cond-mat/0208071 Soft Condensed Matter +cond-mat/0208073 Mesoscale and Nanoscale Physics +cond-mat/0208074 Statistical Mechanics +cond-mat/0208075 Strongly Correlated Electrons +cond-mat/0208076 Superconductivity +cond-mat/0208078 Soft Condensed Matter +cond-mat/0208079 Disordered Systems and Neural Networks +cond-mat/0208080 Statistical Mechanics +cond-mat/0208083 +cond-mat/0208084 Strongly Correlated Electrons +cond-mat/0208085 Soft Condensed Matter +cond-mat/0208086 Strongly Correlated Electrons +cond-mat/0208087 Soft Condensed Matter +cond-mat/0208088 +cond-mat/0208089 Mesoscale and Nanoscale Physics +cond-mat/0208090 Superconductivity +cond-mat/0208091 Mesoscale and Nanoscale Physics +cond-mat/0208098 Statistical Mechanics +cond-mat/0208099 Mesoscale and Nanoscale Physics +cond-mat/0208100 Disordered Systems and Neural Networks +cond-mat/0208101 Strongly Correlated Electrons +cond-mat/0208102 Soft Condensed Matter +cond-mat/0208103 Soft Condensed Matter +cond-mat/0208104 Superconductivity +cond-mat/0208105 Strongly Correlated Electrons +cond-mat/0208106 Strongly Correlated Electrons +cond-mat/0208108 Statistical Mechanics +cond-mat/0208113 Superconductivity +cond-mat/0208115 Strongly Correlated Electrons +cond-mat/0208118 Statistical Mechanics +cond-mat/0208122 +cond-mat/0208124 Superconductivity +cond-mat/0208126 Mesoscale and Nanoscale Physics +cond-mat/0208128 +cond-mat/0208129 Soft Condensed Matter +cond-mat/0208130 Materials Science +cond-mat/0208131 Statistical Mechanics +cond-mat/0208132 Materials Science +cond-mat/0208135 +cond-mat/0208136 Soft Condensed Matter +cond-mat/0208137 Materials Science +cond-mat/0208138 Mesoscale and Nanoscale Physics +cond-mat/0208139 Materials Science +cond-mat/0208141 Mesoscale and Nanoscale Physics +cond-mat/0208143 Superconductivity +cond-mat/0208147 Mesoscale and Nanoscale Physics +cond-mat/0208149 Materials Science +cond-mat/0208150 Soft Condensed Matter +cond-mat/0208156 Mesoscale and Nanoscale Physics +cond-mat/0208157 Disordered Systems and Neural Networks +cond-mat/0208158 Disordered Systems and Neural Networks +cond-mat/0208159 Soft Condensed Matter +cond-mat/0208160 Strongly Correlated Electrons +cond-mat/0208161 Superconductivity +cond-mat/0208162 Soft Condensed Matter +cond-mat/0208163 Statistical Mechanics +cond-mat/0208164 Superconductivity +cond-mat/0208165 Soft Condensed Matter +cond-mat/0208166 Statistical Mechanics +cond-mat/0208168 Soft Condensed Matter +cond-mat/0208169 Superconductivity +cond-mat/0208170 Superconductivity +cond-mat/0208171 Materials Science +cond-mat/0208172 Superconductivity +cond-mat/0208174 Soft Condensed Matter +cond-mat/0208176 Superconductivity +cond-mat/0208177 Mesoscale and Nanoscale Physics +cond-mat/0208178 Soft Condensed Matter +cond-mat/0208179 Superconductivity +cond-mat/0208180 Strongly Correlated Electrons +cond-mat/0208184 +cond-mat/0208188 +cond-mat/0208189 Strongly Correlated Electrons +cond-mat/0208190 Materials Science +cond-mat/0208193 Soft Condensed Matter +cond-mat/0208195 +cond-mat/0208196 Disordered Systems and Neural Networks +cond-mat/0208199 Materials Science +cond-mat/0208202 Soft Condensed Matter +cond-mat/0208203 Superconductivity +cond-mat/0208204 +cond-mat/0208206 Materials Science +cond-mat/0208209 Statistical Mechanics +cond-mat/0208210 Strongly Correlated Electrons +cond-mat/0208211 Strongly Correlated Electrons +cond-mat/0208212 Superconductivity +cond-mat/0208213 Strongly Correlated Electrons +cond-mat/0208218 Materials Science +cond-mat/0208222 Strongly Correlated Electrons +cond-mat/0208223 Mesoscale and Nanoscale Physics +cond-mat/0208225 Superconductivity +cond-mat/0208227 Strongly Correlated Electrons +cond-mat/0208228 Statistical Mechanics +cond-mat/0208229 Materials Science +cond-mat/0208230 Statistical Mechanics +cond-mat/0208231 Soft Condensed Matter +cond-mat/0208236 Mesoscale and Nanoscale Physics +cond-mat/0208239 Mesoscale and Nanoscale Physics +cond-mat/0208243 Statistical Mechanics +cond-mat/0208244 Strongly Correlated Electrons +cond-mat/0208245 Statistical Mechanics +cond-mat/0208246 Statistical Mechanics +cond-mat/0208247 Materials Science +cond-mat/0208250 Superconductivity +cond-mat/0208252 Statistical Mechanics +cond-mat/0208253 Superconductivity +cond-mat/0208255 Superconductivity +cond-mat/0208256 Superconductivity +cond-mat/0208257 Materials Science +cond-mat/0208262 Strongly Correlated Electrons +cond-mat/0208265 Materials Science +cond-mat/0208268 Mesoscale and Nanoscale Physics +cond-mat/0208269 Statistical Mechanics +cond-mat/0208270 Soft Condensed Matter +cond-mat/0208271 Materials Science +cond-mat/0208272 Soft Condensed Matter +cond-mat/0208273 Disordered Systems and Neural Networks +cond-mat/0208274 Strongly Correlated Electrons +cond-mat/0208275 Soft Condensed Matter +cond-mat/0208277 Statistical Mechanics +cond-mat/0208278 Mesoscale and Nanoscale Physics +cond-mat/0208281 Statistical Mechanics +cond-mat/0208282 Strongly Correlated Electrons +cond-mat/0208283 Soft Condensed Matter +cond-mat/0208284 Soft Condensed Matter +cond-mat/0208287 Soft Condensed Matter +cond-mat/0208289 Superconductivity +cond-mat/0208291 Statistical Mechanics +cond-mat/0208293 Materials Science +cond-mat/0208294 Soft Condensed Matter +cond-mat/0208297 +cond-mat/0208298 Superconductivity +cond-mat/0208306 Strongly Correlated Electrons +cond-mat/0208307 Strongly Correlated Electrons +cond-mat/0208308 Strongly Correlated Electrons +cond-mat/0208309 +cond-mat/0208311 Soft Condensed Matter +cond-mat/0208312 +cond-mat/0208314 Materials Science +cond-mat/0208316 Materials Science +cond-mat/0208317 Materials Science +cond-mat/0208318 Mesoscale and Nanoscale Physics +cond-mat/0208319 Statistical Mechanics +cond-mat/0208320 Materials Science +cond-mat/0208321 Materials Science +cond-mat/0208322 Soft Condensed Matter +cond-mat/0208324 Strongly Correlated Electrons +cond-mat/0208327 +cond-mat/0208328 Statistical Mechanics +cond-mat/0208329 Superconductivity +cond-mat/0208331 Superconductivity +cond-mat/0208332 Statistical Mechanics +cond-mat/0208336 +cond-mat/0208337 Strongly Correlated Electrons +cond-mat/0208338 Statistical Mechanics +cond-mat/0208339 Superconductivity +cond-mat/0208341 Superconductivity +cond-mat/0208343 Superconductivity +cond-mat/0208345 Statistical Mechanics +cond-mat/0208346 Superconductivity +cond-mat/0208347 Statistical Mechanics +cond-mat/0208348 Superconductivity +cond-mat/0208349 Superconductivity +cond-mat/0208351 Strongly Correlated Electrons +cond-mat/0208352 Statistical Mechanics +cond-mat/0208353 Materials Science +cond-mat/0208355 +cond-mat/0208356 Mesoscale and Nanoscale Physics +cond-mat/0208359 Statistical Mechanics +cond-mat/0208362 Superconductivity +cond-mat/0208363 Strongly Correlated Electrons +cond-mat/0208365 Superconductivity +cond-mat/0208368 Materials Science +cond-mat/0208369 Strongly Correlated Electrons +cond-mat/0208370 Materials Science +cond-mat/0208373 Strongly Correlated Electrons +cond-mat/0208374 +cond-mat/0208375 +cond-mat/0208377 Mesoscale and Nanoscale Physics +cond-mat/0208378 Mesoscale and Nanoscale Physics +cond-mat/0208380 Superconductivity +cond-mat/0208381 Strongly Correlated Electrons +cond-mat/0208382 +cond-mat/0208385 Soft Condensed Matter +cond-mat/0208386 Superconductivity +cond-mat/0208387 Statistical Mechanics +cond-mat/0208388 Statistical Mechanics +cond-mat/0208389 Statistical Mechanics +cond-mat/0208391 Soft Condensed Matter +cond-mat/0208392 Materials Science +cond-mat/0208393 Materials Science +cond-mat/0208394 Mesoscale and Nanoscale Physics +cond-mat/0208396 Strongly Correlated Electrons +cond-mat/0208398 Disordered Systems and Neural Networks +cond-mat/0208399 Strongly Correlated Electrons +cond-mat/0208400 Mesoscale and Nanoscale Physics +cond-mat/0208402 Statistical Mechanics +cond-mat/0208403 Statistical Mechanics +cond-mat/0208407 Mesoscale and Nanoscale Physics +cond-mat/0208408 Mesoscale and Nanoscale Physics +cond-mat/0208409 Mesoscale and Nanoscale Physics +cond-mat/0208410 Superconductivity +cond-mat/0208411 Materials Science +cond-mat/0208412 Statistical Mechanics +cond-mat/0208416 Soft Condensed Matter +cond-mat/0208417 Statistical Mechanics +cond-mat/0208420 Strongly Correlated Electrons +cond-mat/0208422 +cond-mat/0208423 Soft Condensed Matter +cond-mat/0208425 Mesoscale and Nanoscale Physics +cond-mat/0208426 Mesoscale and Nanoscale Physics +cond-mat/0208427 Mesoscale and Nanoscale Physics +cond-mat/0208428 Statistical Mechanics +cond-mat/0208429 Mesoscale and Nanoscale Physics +cond-mat/0208431 Strongly Correlated Electrons +cond-mat/0208433 Soft Condensed Matter +cond-mat/0208436 Mesoscale and Nanoscale Physics +cond-mat/0208437 Mesoscale and Nanoscale Physics +cond-mat/0208439 Statistical Mechanics +cond-mat/0208440 Materials Science +cond-mat/0208442 Superconductivity +cond-mat/0208444 Disordered Systems and Neural Networks +cond-mat/0208446 Strongly Correlated Electrons +cond-mat/0208447 Soft Condensed Matter +cond-mat/0208449 Materials Science +cond-mat/0208451 Mesoscale and Nanoscale Physics +cond-mat/0208458 Disordered Systems and Neural Networks +cond-mat/0208459 Superconductivity +cond-mat/0208460 Statistical Mechanics +cond-mat/0208461 Soft Condensed Matter +cond-mat/0208462 Statistical Mechanics +cond-mat/0208463 Materials Science +cond-mat/0208464 Statistical Mechanics +cond-mat/0208465 Strongly Correlated Electrons +cond-mat/0208466 Soft Condensed Matter +cond-mat/0208467 Superconductivity +cond-mat/0208471 +cond-mat/0208472 Strongly Correlated Electrons +cond-mat/0208475 +cond-mat/0208477 Statistical Mechanics +cond-mat/0208478 Disordered Systems and Neural Networks +cond-mat/0208480 Strongly Correlated Electrons +cond-mat/0208482 Superconductivity +cond-mat/0208486 Statistical Mechanics +cond-mat/0208487 +cond-mat/0208494 Materials Science +cond-mat/0208495 Materials Science +cond-mat/0208496 Disordered Systems and Neural Networks +cond-mat/0208497 Statistical Mechanics +cond-mat/0208499 Strongly Correlated Electrons +cond-mat/0208503 Mesoscale and Nanoscale Physics +cond-mat/0208504 Superconductivity +cond-mat/0208505 Mesoscale and Nanoscale Physics +cond-mat/0208506 Mesoscale and Nanoscale Physics +cond-mat/0208507 Mesoscale and Nanoscale Physics +cond-mat/0208508 Mesoscale and Nanoscale Physics +cond-mat/0208509 Superconductivity +cond-mat/0208512 Materials Science +cond-mat/0208513 +cond-mat/0208514 Statistical Mechanics +cond-mat/0208516 +cond-mat/0208517 Strongly Correlated Electrons +cond-mat/0208518 Strongly Correlated Electrons +cond-mat/0208519 Soft Condensed Matter +cond-mat/0208520 Materials Science +cond-mat/0208521 Statistical Mechanics +cond-mat/0208522 Disordered Systems and Neural Networks +cond-mat/0208523 Strongly Correlated Electrons +cond-mat/0208524 Strongly Correlated Electrons +cond-mat/0208526 Disordered Systems and Neural Networks +cond-mat/0208527 Superconductivity +cond-mat/0208528 Soft Condensed Matter +cond-mat/0208529 Materials Science +cond-mat/0208530 Strongly Correlated Electrons +cond-mat/0208533 Strongly Correlated Electrons +cond-mat/0208535 Soft Condensed Matter +cond-mat/0208536 Strongly Correlated Electrons +cond-mat/0208539 Strongly Correlated Electrons +cond-mat/0208543 Materials Science +cond-mat/0208544 +cond-mat/0208545 Strongly Correlated Electrons +cond-mat/0208546 Disordered Systems and Neural Networks +cond-mat/0208547 Strongly Correlated Electrons +cond-mat/0208550 +cond-mat/0208551 Statistical Mechanics +cond-mat/0208553 Disordered Systems and Neural Networks +cond-mat/0208554 Strongly Correlated Electrons +cond-mat/0208556 Strongly Correlated Electrons +cond-mat/0208557 +cond-mat/0208558 Statistical Mechanics +cond-mat/0208560 Mesoscale and Nanoscale Physics +cond-mat/0208562 +cond-mat/0208563 Statistical Mechanics +cond-mat/0208564 Statistical Mechanics +cond-mat/0208565 Statistical Mechanics +cond-mat/0208566 Disordered Systems and Neural Networks +cond-mat/0208572 Materials Science +cond-mat/0208573 Soft Condensed Matter +cond-mat/0208575 Strongly Correlated Electrons +cond-mat/0208578 Disordered Systems and Neural Networks +cond-mat/0208580 Strongly Correlated Electrons +cond-mat/0208582 Soft Condensed Matter +cond-mat/0208583 Mesoscale and Nanoscale Physics +cond-mat/0208584 Superconductivity +cond-mat/0208585 +cond-mat/0208586 Strongly Correlated Electrons +cond-mat/0208587 Strongly Correlated Electrons +cond-mat/0208589 Mesoscale and Nanoscale Physics +cond-mat/0208591 Strongly Correlated Electrons +cond-mat/0208592 Strongly Correlated Electrons +cond-mat/0208594 Disordered Systems and Neural Networks +cond-mat/0208596 Disordered Systems and Neural Networks +cond-mat/0208602 Superconductivity +cond-mat/0208603 Mesoscale and Nanoscale Physics +cond-mat/0208604 Strongly Correlated Electrons +cond-mat/0208605 Superconductivity +cond-mat/0208606 Mesoscale and Nanoscale Physics +cond-mat/0208607 Disordered Systems and Neural Networks +cond-mat/0208608 Materials Science +cond-mat/0209001 Superconductivity +cond-mat/0209002 Strongly Correlated Electrons +cond-mat/0209004 Materials Science +cond-mat/0209006 +cond-mat/0209009 Soft Condensed Matter +cond-mat/0209010 Soft Condensed Matter +cond-mat/0209011 Materials Science +cond-mat/0209012 Mesoscale and Nanoscale Physics +cond-mat/0209014 Strongly Correlated Electrons +cond-mat/0209015 Materials Science +cond-mat/0209016 Superconductivity +cond-mat/0209018 Mesoscale and Nanoscale Physics +cond-mat/0209022 Superconductivity +cond-mat/0209023 Superconductivity +cond-mat/0209025 Strongly Correlated Electrons +cond-mat/0209026 Superconductivity +cond-mat/0209027 Superconductivity +cond-mat/0209029 Mesoscale and Nanoscale Physics +cond-mat/0209030 Statistical Mechanics +cond-mat/0209036 Statistical Mechanics +cond-mat/0209039 Materials Science +cond-mat/0209040 Soft Condensed Matter +cond-mat/0209043 Statistical Mechanics +cond-mat/0209044 +cond-mat/0209045 Disordered Systems and Neural Networks +cond-mat/0209047 +cond-mat/0209048 Mesoscale and Nanoscale Physics +cond-mat/0209050 Soft Condensed Matter +cond-mat/0209052 Strongly Correlated Electrons +cond-mat/0209053 +cond-mat/0209054 Strongly Correlated Electrons +cond-mat/0209056 Statistical Mechanics +cond-mat/0209059 Strongly Correlated Electrons +cond-mat/0209060 Mesoscale and Nanoscale Physics +cond-mat/0209061 Superconductivity +cond-mat/0209062 Strongly Correlated Electrons +cond-mat/0209063 Strongly Correlated Electrons +cond-mat/0209064 Superconductivity +cond-mat/0209066 Statistical Mechanics +cond-mat/0209067 Soft Condensed Matter +cond-mat/0209068 Statistical Mechanics +cond-mat/0209072 +cond-mat/0209074 Strongly Correlated Electrons +cond-mat/0209075 Soft Condensed Matter +cond-mat/0209077 Superconductivity +cond-mat/0209078 Statistical Mechanics +cond-mat/0209079 Superconductivity +cond-mat/0209080 Superconductivity +cond-mat/0209085 Strongly Correlated Electrons +cond-mat/0209086 Disordered Systems and Neural Networks +cond-mat/0209087 Mesoscale and Nanoscale Physics +cond-mat/0209088 Mesoscale and Nanoscale Physics +cond-mat/0209089 Strongly Correlated Electrons +cond-mat/0209090 Mesoscale and Nanoscale Physics +cond-mat/0209093 Superconductivity +cond-mat/0209094 Disordered Systems and Neural Networks +cond-mat/0209095 +cond-mat/0209096 Statistical Mechanics +cond-mat/0209097 Mesoscale and Nanoscale Physics +cond-mat/0209098 Statistical Mechanics +cond-mat/0209099 Strongly Correlated Electrons +cond-mat/0209101 Superconductivity +cond-mat/0209105 Mesoscale and Nanoscale Physics +cond-mat/0209106 Superconductivity +cond-mat/0209110 Mesoscale and Nanoscale Physics +cond-mat/0209116 Statistical Mechanics +cond-mat/0209117 +cond-mat/0209118 Strongly Correlated Electrons +cond-mat/0209119 Statistical Mechanics +cond-mat/0209121 +cond-mat/0209122 Superconductivity +cond-mat/0209123 Materials Science +cond-mat/0209124 Statistical Mechanics +cond-mat/0209125 Strongly Correlated Electrons +cond-mat/0209126 Superconductivity +cond-mat/0209127 Statistical Mechanics +cond-mat/0209129 Statistical Mechanics +cond-mat/0209130 Soft Condensed Matter +cond-mat/0209133 Statistical Mechanics +cond-mat/0209134 Materials Science +cond-mat/0209135 Soft Condensed Matter +cond-mat/0209136 Mesoscale and Nanoscale Physics +cond-mat/0209137 Materials Science +cond-mat/0209139 Disordered Systems and Neural Networks +cond-mat/0209140 Soft Condensed Matter +cond-mat/0209142 Mesoscale and Nanoscale Physics +cond-mat/0209143 Mesoscale and Nanoscale Physics +cond-mat/0209145 Materials Science +cond-mat/0209147 Statistical Mechanics +cond-mat/0209148 Disordered Systems and Neural Networks +cond-mat/0209149 Mesoscale and Nanoscale Physics +cond-mat/0209150 Superconductivity +cond-mat/0209151 Statistical Mechanics +cond-mat/0209152 Soft Condensed Matter +cond-mat/0209153 Materials Science +cond-mat/0209156 Materials Science +cond-mat/0209158 +cond-mat/0209159 Statistical Mechanics +cond-mat/0209160 Mesoscale and Nanoscale Physics +cond-mat/0209161 Statistical Mechanics +cond-mat/0209162 Soft Condensed Matter +cond-mat/0209163 Mesoscale and Nanoscale Physics +cond-mat/0209164 Disordered Systems and Neural Networks +cond-mat/0209165 Disordered Systems and Neural Networks +cond-mat/0209166 Statistical Mechanics +cond-mat/0209167 Mesoscale and Nanoscale Physics +cond-mat/0209170 Strongly Correlated Electrons +cond-mat/0209171 Disordered Systems and Neural Networks +cond-mat/0209172 Disordered Systems and Neural Networks +cond-mat/0209173 Strongly Correlated Electrons +cond-mat/0209174 Statistical Mechanics +cond-mat/0209175 Superconductivity +cond-mat/0209177 Soft Condensed Matter +cond-mat/0209179 Statistical Mechanics +cond-mat/0209180 Materials Science +cond-mat/0209181 Soft Condensed Matter +cond-mat/0209182 Disordered Systems and Neural Networks +cond-mat/0209183 Statistical Mechanics +cond-mat/0209185 Mesoscale and Nanoscale Physics +cond-mat/0209187 Mesoscale and Nanoscale Physics +cond-mat/0209190 Statistical Mechanics +cond-mat/0209192 Superconductivity +cond-mat/0209193 Statistical Mechanics +cond-mat/0209194 Mesoscale and Nanoscale Physics +cond-mat/0209196 Materials Science +cond-mat/0209201 Statistical Mechanics +cond-mat/0209202 Statistical Mechanics +cond-mat/0209203 Statistical Mechanics +cond-mat/0209208 Materials Science +cond-mat/0209210 Soft Condensed Matter +cond-mat/0209212 +cond-mat/0209217 +cond-mat/0209218 Superconductivity +cond-mat/0209219 +cond-mat/0209222 +cond-mat/0209223 Superconductivity +cond-mat/0209224 Superconductivity +cond-mat/0209225 Superconductivity +cond-mat/0209226 Superconductivity +cond-mat/0209230 Strongly Correlated Electrons +cond-mat/0209231 Statistical Mechanics +cond-mat/0209234 Disordered Systems and Neural Networks +cond-mat/0209236 Soft Condensed Matter +cond-mat/0209237 Superconductivity +cond-mat/0209238 Superconductivity +cond-mat/0209240 Materials Science +cond-mat/0209241 Materials Science +cond-mat/0209242 +cond-mat/0209244 Soft Condensed Matter +cond-mat/0209246 Statistical Mechanics +cond-mat/0209251 Mesoscale and Nanoscale Physics +cond-mat/0209252 Soft Condensed Matter +cond-mat/0209253 Materials Science +cond-mat/0209255 Materials Science +cond-mat/0209256 Superconductivity +cond-mat/0209259 Materials Science +cond-mat/0209260 Soft Condensed Matter +cond-mat/0209261 Materials Science +cond-mat/0209262 Superconductivity +cond-mat/0209266 Soft Condensed Matter +cond-mat/0209267 Strongly Correlated Electrons +cond-mat/0209268 Disordered Systems and Neural Networks +cond-mat/0209270 Superconductivity +cond-mat/0209271 Statistical Mechanics +cond-mat/0209272 Strongly Correlated Electrons +cond-mat/0209273 +cond-mat/0209274 Statistical Mechanics +cond-mat/0209276 Superconductivity +cond-mat/0209278 Strongly Correlated Electrons +cond-mat/0209280 Statistical Mechanics +cond-mat/0209281 Superconductivity +cond-mat/0209286 Superconductivity +cond-mat/0209287 Statistical Mechanics +cond-mat/0209290 Disordered Systems and Neural Networks +cond-mat/0209291 Mesoscale and Nanoscale Physics +cond-mat/0209293 Disordered Systems and Neural Networks +cond-mat/0209294 Mesoscale and Nanoscale Physics +cond-mat/0209295 Materials Science +cond-mat/0209296 +cond-mat/0209297 Materials Science +cond-mat/0209298 Statistical Mechanics +cond-mat/0209299 +cond-mat/0209302 Superconductivity +cond-mat/0209303 Strongly Correlated Electrons +cond-mat/0209304 Disordered Systems and Neural Networks +cond-mat/0209305 Strongly Correlated Electrons +cond-mat/0209306 +cond-mat/0209309 Mesoscale and Nanoscale Physics +cond-mat/0209311 Superconductivity +cond-mat/0209312 Soft Condensed Matter +cond-mat/0209314 Statistical Mechanics +cond-mat/0209315 Mesoscale and Nanoscale Physics +cond-mat/0209317 Soft Condensed Matter +cond-mat/0209319 Statistical Mechanics +cond-mat/0209320 Statistical Mechanics +cond-mat/0209321 Statistical Mechanics +cond-mat/0209322 Statistical Mechanics +cond-mat/0209323 Disordered Systems and Neural Networks +cond-mat/0209324 Statistical Mechanics +cond-mat/0209326 Materials Science +cond-mat/0209327 Materials Science +cond-mat/0209328 Materials Science +cond-mat/0209329 Materials Science +cond-mat/0209330 Materials Science +cond-mat/0209331 Strongly Correlated Electrons +cond-mat/0209334 Soft Condensed Matter +cond-mat/0209338 Strongly Correlated Electrons +cond-mat/0209339 Superconductivity +cond-mat/0209340 +cond-mat/0209341 Statistical Mechanics +cond-mat/0209342 Superconductivity +cond-mat/0209343 Statistical Mechanics +cond-mat/0209346 Mesoscale and Nanoscale Physics +cond-mat/0209347 +cond-mat/0209348 +cond-mat/0209349 Mesoscale and Nanoscale Physics +cond-mat/0209350 Disordered Systems and Neural Networks +cond-mat/0209351 Strongly Correlated Electrons +cond-mat/0209352 Superconductivity +cond-mat/0209353 Statistical Mechanics +cond-mat/0209354 Soft Condensed Matter +cond-mat/0209355 Superconductivity +cond-mat/0209356 Disordered Systems and Neural Networks +cond-mat/0209358 Mesoscale and Nanoscale Physics +cond-mat/0209359 Mesoscale and Nanoscale Physics +cond-mat/0209360 Materials Science +cond-mat/0209361 Disordered Systems and Neural Networks +cond-mat/0209362 Statistical Mechanics +cond-mat/0209363 Statistical Mechanics +cond-mat/0209364 Materials Science +cond-mat/0209365 +cond-mat/0209366 Statistical Mechanics +cond-mat/0209368 Materials Science +cond-mat/0209369 Strongly Correlated Electrons +cond-mat/0209370 Materials Science +cond-mat/0209371 Superconductivity +cond-mat/0209374 Soft Condensed Matter +cond-mat/0209383 Statistical Mechanics +cond-mat/0209384 Statistical Mechanics +cond-mat/0209385 Disordered Systems and Neural Networks +cond-mat/0209387 Superconductivity +cond-mat/0209388 Strongly Correlated Electrons +cond-mat/0209390 Statistical Mechanics +cond-mat/0209392 Materials Science +cond-mat/0209393 Strongly Correlated Electrons +cond-mat/0209394 Statistical Mechanics +cond-mat/0209396 Statistical Mechanics +cond-mat/0209400 Strongly Correlated Electrons +cond-mat/0209401 Materials Science +cond-mat/0209403 Strongly Correlated Electrons +cond-mat/0209406 Strongly Correlated Electrons +cond-mat/0209408 Statistical Mechanics +cond-mat/0209409 +cond-mat/0209411 Materials Science +cond-mat/0209413 Soft Condensed Matter +cond-mat/0209414 Soft Condensed Matter +cond-mat/0209415 Statistical Mechanics +cond-mat/0209420 Materials Science +cond-mat/0209421 Mesoscale and Nanoscale Physics +cond-mat/0209422 Soft Condensed Matter +cond-mat/0209423 Strongly Correlated Electrons +cond-mat/0209424 +cond-mat/0209425 Strongly Correlated Electrons +cond-mat/0209426 Strongly Correlated Electrons +cond-mat/0209427 +cond-mat/0209428 Superconductivity +cond-mat/0209429 Soft Condensed Matter +cond-mat/0209430 Superconductivity +cond-mat/0209432 Disordered Systems and Neural Networks +cond-mat/0209434 Strongly Correlated Electrons +cond-mat/0209435 Superconductivity +cond-mat/0209436 +cond-mat/0209439 Materials Science +cond-mat/0209440 Materials Science +cond-mat/0209443 Soft Condensed Matter +cond-mat/0209445 Statistical Mechanics +cond-mat/0209447 Superconductivity +cond-mat/0209449 +cond-mat/0209450 Statistical Mechanics +cond-mat/0209453 +cond-mat/0209454 Superconductivity +cond-mat/0209455 Strongly Correlated Electrons +cond-mat/0209460 Statistical Mechanics +cond-mat/0209461 Disordered Systems and Neural Networks +cond-mat/0209462 Mesoscale and Nanoscale Physics +cond-mat/0209464 Mesoscale and Nanoscale Physics +cond-mat/0209466 Superconductivity +cond-mat/0209469 Superconductivity +cond-mat/0209471 Statistical Mechanics +cond-mat/0209472 Superconductivity +cond-mat/0209474 Statistical Mechanics +cond-mat/0209477 Materials Science +cond-mat/0209479 Mesoscale and Nanoscale Physics +cond-mat/0209480 Strongly Correlated Electrons +cond-mat/0209487 Statistical Mechanics +cond-mat/0209495 Soft Condensed Matter +cond-mat/0209496 Soft Condensed Matter +cond-mat/0209500 Strongly Correlated Electrons +cond-mat/0209502 Materials Science +cond-mat/0209503 Strongly Correlated Electrons +cond-mat/0209504 Soft Condensed Matter +cond-mat/0209506 Statistical Mechanics +cond-mat/0209508 Soft Condensed Matter +cond-mat/0209510 Statistical Mechanics +cond-mat/0209511 Mesoscale and Nanoscale Physics +cond-mat/0209512 Statistical Mechanics +cond-mat/0209513 Mesoscale and Nanoscale Physics +cond-mat/0209514 Statistical Mechanics +cond-mat/0209515 +cond-mat/0209516 Superconductivity +cond-mat/0209520 Mesoscale and Nanoscale Physics +cond-mat/0209521 Mesoscale and Nanoscale Physics +cond-mat/0209522 Statistical Mechanics +cond-mat/0209524 +cond-mat/0209525 Statistical Mechanics +cond-mat/0209526 Superconductivity +cond-mat/0209528 Soft Condensed Matter +cond-mat/0209529 Soft Condensed Matter +cond-mat/0209531 Statistical Mechanics +cond-mat/0209533 Mesoscale and Nanoscale Physics +cond-mat/0209534 Soft Condensed Matter +cond-mat/0209535 Materials Science +cond-mat/0209536 Strongly Correlated Electrons +cond-mat/0209537 Strongly Correlated Electrons +cond-mat/0209539 Mesoscale and Nanoscale Physics +cond-mat/0209541 Superconductivity +cond-mat/0209542 Soft Condensed Matter +cond-mat/0209543 Strongly Correlated Electrons +cond-mat/0209546 Strongly Correlated Electrons +cond-mat/0209548 Materials Science +cond-mat/0209549 Materials Science +cond-mat/0209551 Mesoscale and Nanoscale Physics +cond-mat/0209552 Strongly Correlated Electrons +cond-mat/0209553 Superconductivity +cond-mat/0209554 Materials Science +cond-mat/0209557 Statistical Mechanics +cond-mat/0209561 Superconductivity +cond-mat/0209562 Mesoscale and Nanoscale Physics +cond-mat/0209563 Soft Condensed Matter +cond-mat/0209564 Materials Science +cond-mat/0209568 Statistical Mechanics +cond-mat/0209570 Soft Condensed Matter +cond-mat/0209572 Superconductivity +cond-mat/0209574 Materials Science +cond-mat/0209576 Statistical Mechanics +cond-mat/0209577 Mesoscale and Nanoscale Physics +cond-mat/0209579 Strongly Correlated Electrons +cond-mat/0209580 Statistical Mechanics +cond-mat/0209581 Mesoscale and Nanoscale Physics +cond-mat/0209583 Strongly Correlated Electrons +cond-mat/0209585 Materials Science +cond-mat/0209586 Statistical Mechanics +cond-mat/0209588 Strongly Correlated Electrons +cond-mat/0209589 Statistical Mechanics +cond-mat/0209591 Statistical Mechanics +cond-mat/0209592 +cond-mat/0209593 Superconductivity +cond-mat/0209594 Disordered Systems and Neural Networks +cond-mat/0209600 Strongly Correlated Electrons +cond-mat/0209602 +cond-mat/0209603 Materials Science +cond-mat/0209604 Superconductivity +cond-mat/0209605 Superconductivity +cond-mat/0209606 Mesoscale and Nanoscale Physics +cond-mat/0209607 Materials Science +cond-mat/0209608 +cond-mat/0209612 Materials Science +cond-mat/0209614 Superconductivity +cond-mat/0209615 Statistical Mechanics +cond-mat/0209616 +cond-mat/0209617 Strongly Correlated Electrons +cond-mat/0209619 +cond-mat/0209620 Statistical Mechanics +cond-mat/0209621 +cond-mat/0209626 Materials Science +cond-mat/0209628 +cond-mat/0209631 Soft Condensed Matter +cond-mat/0209633 Strongly Correlated Electrons +cond-mat/0209634 Statistical Mechanics +cond-mat/0209635 Statistical Mechanics +cond-mat/0209638 Statistical Mechanics +cond-mat/0209640 Statistical Mechanics +cond-mat/0209643 Statistical Mechanics +cond-mat/0209644 Disordered Systems and Neural Networks +cond-mat/0209647 Statistical Mechanics +cond-mat/0209648 Strongly Correlated Electrons +cond-mat/0209649 Mesoscale and Nanoscale Physics +cond-mat/0209650 Mesoscale and Nanoscale Physics +cond-mat/0209651 Strongly Correlated Electrons +cond-mat/0209653 +cond-mat/0209654 Strongly Correlated Electrons +cond-mat/0209655 Soft Condensed Matter +cond-mat/0209656 Statistical Mechanics +cond-mat/0209657 +cond-mat/0209660 Superconductivity +cond-mat/0209661 Mesoscale and Nanoscale Physics +cond-mat/0209662 Mesoscale and Nanoscale Physics +cond-mat/0209663 Materials Science +cond-mat/0209664 Materials Science +cond-mat/0209665 Materials Science +cond-mat/0209669 Strongly Correlated Electrons +cond-mat/0209675 +cond-mat/0209677 Strongly Correlated Electrons +cond-mat/0209680 Disordered Systems and Neural Networks +cond-mat/0209681 Statistical Mechanics +cond-mat/0209682 Mesoscale and Nanoscale Physics +cond-mat/0209683 Statistical Mechanics +cond-mat/0209684 Superconductivity +cond-mat/0209686 Disordered Systems and Neural Networks +cond-mat/0209687 Statistical Mechanics +cond-mat/0209689 +cond-mat/0210001 Strongly Correlated Electrons +cond-mat/0210003 Mesoscale and Nanoscale Physics +cond-mat/0210004 Soft Condensed Matter +cond-mat/0210005 Strongly Correlated Electrons +cond-mat/0210007 +cond-mat/0210011 Statistical Mechanics +cond-mat/0210012 Disordered Systems and Neural Networks +cond-mat/0210013 Materials Science +cond-mat/0210014 Strongly Correlated Electrons +cond-mat/0210016 Statistical Mechanics +cond-mat/0210017 +cond-mat/0210020 Statistical Mechanics +cond-mat/0210022 Statistical Mechanics +cond-mat/0210024 +cond-mat/0210025 Soft Condensed Matter +cond-mat/0210027 Statistical Mechanics +cond-mat/0210033 Mesoscale and Nanoscale Physics +cond-mat/0210034 Strongly Correlated Electrons +cond-mat/0210039 Statistical Mechanics +cond-mat/0210040 Mesoscale and Nanoscale Physics +cond-mat/0210046 Statistical Mechanics +cond-mat/0210047 Superconductivity +cond-mat/0210048 Superconductivity +cond-mat/0210051 Materials Science +cond-mat/0210053 Soft Condensed Matter +cond-mat/0210054 Statistical Mechanics +cond-mat/0210055 Superconductivity +cond-mat/0210057 Superconductivity +cond-mat/0210058 Statistical Mechanics +cond-mat/0210060 Strongly Correlated Electrons +cond-mat/0210064 Soft Condensed Matter +cond-mat/0210065 Statistical Mechanics +cond-mat/0210069 Mesoscale and Nanoscale Physics +cond-mat/0210070 Mesoscale and Nanoscale Physics +cond-mat/0210074 Statistical Mechanics +cond-mat/0210075 Statistical Mechanics +cond-mat/0210077 Statistical Mechanics +cond-mat/0210078 Statistical Mechanics +cond-mat/0210081 +cond-mat/0210082 Soft Condensed Matter +cond-mat/0210083 Statistical Mechanics +cond-mat/0210084 Mesoscale and Nanoscale Physics +cond-mat/0210086 Strongly Correlated Electrons +cond-mat/0210088 Strongly Correlated Electrons +cond-mat/0210089 Statistical Mechanics +cond-mat/0210090 Statistical Mechanics +cond-mat/0210091 Superconductivity +cond-mat/0210093 Mesoscale and Nanoscale Physics +cond-mat/0210094 Statistical Mechanics +cond-mat/0210095 +cond-mat/0210098 Statistical Mechanics +cond-mat/0210099 Statistical Mechanics +cond-mat/0210100 Disordered Systems and Neural Networks +cond-mat/0210101 Superconductivity +cond-mat/0210104 Mesoscale and Nanoscale Physics +cond-mat/0210105 Statistical Mechanics +cond-mat/0210108 Materials Science +cond-mat/0210111 Statistical Mechanics +cond-mat/0210112 Disordered Systems and Neural Networks +cond-mat/0210113 +cond-mat/0210114 Superconductivity +cond-mat/0210116 +cond-mat/0210118 Mesoscale and Nanoscale Physics +cond-mat/0210119 Statistical Mechanics +cond-mat/0210120 +cond-mat/0210121 Soft Condensed Matter +cond-mat/0210123 +cond-mat/0210124 Mesoscale and Nanoscale Physics +cond-mat/0210127 Mesoscale and Nanoscale Physics +cond-mat/0210128 Soft Condensed Matter +cond-mat/0210129 Materials Science +cond-mat/0210130 Mesoscale and Nanoscale Physics +cond-mat/0210133 Materials Science +cond-mat/0210134 Strongly Correlated Electrons +cond-mat/0210135 Statistical Mechanics +cond-mat/0210137 Strongly Correlated Electrons +cond-mat/0210139 Materials Science +cond-mat/0210141 Statistical Mechanics +cond-mat/0210142 Mesoscale and Nanoscale Physics +cond-mat/0210143 Strongly Correlated Electrons +cond-mat/0210145 Superconductivity +cond-mat/0210149 Materials Science +cond-mat/0210151 Soft Condensed Matter +cond-mat/0210152 +cond-mat/0210153 Superconductivity +cond-mat/0210154 Soft Condensed Matter +cond-mat/0210155 Mesoscale and Nanoscale Physics +cond-mat/0210156 Soft Condensed Matter +cond-mat/0210157 Materials Science +cond-mat/0210158 Statistical Mechanics +cond-mat/0210159 Soft Condensed Matter +cond-mat/0210162 +cond-mat/0210164 Strongly Correlated Electrons +cond-mat/0210165 Soft Condensed Matter +cond-mat/0210167 Mesoscale and Nanoscale Physics +cond-mat/0210169 Superconductivity +cond-mat/0210170 Statistical Mechanics +cond-mat/0210171 Disordered Systems and Neural Networks +cond-mat/0210172 Materials Science +cond-mat/0210174 Strongly Correlated Electrons +cond-mat/0210175 Superconductivity +cond-mat/0210177 Soft Condensed Matter +cond-mat/0210179 Soft Condensed Matter +cond-mat/0210181 Mesoscale and Nanoscale Physics +cond-mat/0210182 Superconductivity +cond-mat/0210184 Soft Condensed Matter +cond-mat/0210190 Strongly Correlated Electrons +cond-mat/0210192 Materials Science +cond-mat/0210194 Soft Condensed Matter +cond-mat/0210195 Soft Condensed Matter +cond-mat/0210198 Statistical Mechanics +cond-mat/0210199 Statistical Mechanics +cond-mat/0210200 Statistical Mechanics +cond-mat/0210201 Statistical Mechanics +cond-mat/0210202 Disordered Systems and Neural Networks +cond-mat/0210203 Superconductivity +cond-mat/0210204 Strongly Correlated Electrons +cond-mat/0210205 Statistical Mechanics +cond-mat/0210207 +cond-mat/0210208 Strongly Correlated Electrons +cond-mat/0210209 Strongly Correlated Electrons +cond-mat/0210210 +cond-mat/0210211 Mesoscale and Nanoscale Physics +cond-mat/0210215 +cond-mat/0210216 Statistical Mechanics +cond-mat/0210218 Mesoscale and Nanoscale Physics +cond-mat/0210219 Materials Science +cond-mat/0210220 Materials Science +cond-mat/0210222 Strongly Correlated Electrons +cond-mat/0210224 Statistical Mechanics +cond-mat/0210226 Statistical Mechanics +cond-mat/0210229 +cond-mat/0210230 Statistical Mechanics +cond-mat/0210232 Strongly Correlated Electrons +cond-mat/0210233 +cond-mat/0210237 Disordered Systems and Neural Networks +cond-mat/0210240 Soft Condensed Matter +cond-mat/0210241 Mesoscale and Nanoscale Physics +cond-mat/0210244 Materials Science +cond-mat/0210245 Soft Condensed Matter +cond-mat/0210246 Soft Condensed Matter +cond-mat/0210249 Superconductivity +cond-mat/0210251 Mesoscale and Nanoscale Physics +cond-mat/0210252 Mesoscale and Nanoscale Physics +cond-mat/0210253 Mesoscale and Nanoscale Physics +cond-mat/0210254 Mesoscale and Nanoscale Physics +cond-mat/0210256 Disordered Systems and Neural Networks +cond-mat/0210257 Superconductivity +cond-mat/0210258 +cond-mat/0210259 Superconductivity +cond-mat/0210260 Strongly Correlated Electrons +cond-mat/0210261 +cond-mat/0210263 Statistical Mechanics +cond-mat/0210264 +cond-mat/0210265 Soft Condensed Matter +cond-mat/0210266 Statistical Mechanics +cond-mat/0210267 Soft Condensed Matter +cond-mat/0210268 Strongly Correlated Electrons +cond-mat/0210270 Materials Science +cond-mat/0210273 Materials Science +cond-mat/0210276 +cond-mat/0210278 +cond-mat/0210280 Mesoscale and Nanoscale Physics +cond-mat/0210281 Soft Condensed Matter +cond-mat/0210282 Soft Condensed Matter +cond-mat/0210283 +cond-mat/0210287 Superconductivity +cond-mat/0210290 Mesoscale and Nanoscale Physics +cond-mat/0210291 Soft Condensed Matter +cond-mat/0210292 Statistical Mechanics +cond-mat/0210293 Disordered Systems and Neural Networks +cond-mat/0210294 Strongly Correlated Electrons +cond-mat/0210296 Strongly Correlated Electrons +cond-mat/0210297 Statistical Mechanics +cond-mat/0210298 +cond-mat/0210299 Superconductivity +cond-mat/0210300 Soft Condensed Matter +cond-mat/0210301 Materials Science +cond-mat/0210302 +cond-mat/0210305 Statistical Mechanics +cond-mat/0210306 Soft Condensed Matter +cond-mat/0210307 Soft Condensed Matter +cond-mat/0210309 Strongly Correlated Electrons +cond-mat/0210311 Soft Condensed Matter +cond-mat/0210315 Materials Science +cond-mat/0210318 Materials Science +cond-mat/0210321 Soft Condensed Matter +cond-mat/0210322 Soft Condensed Matter +cond-mat/0210323 Soft Condensed Matter +cond-mat/0210324 +cond-mat/0210325 Superconductivity +cond-mat/0210326 Statistical Mechanics +cond-mat/0210327 Statistical Mechanics +cond-mat/0210331 Mesoscale and Nanoscale Physics +cond-mat/0210334 Soft Condensed Matter +cond-mat/0210336 Materials Science +cond-mat/0210337 Strongly Correlated Electrons +cond-mat/0210338 Statistical Mechanics +cond-mat/0210339 +cond-mat/0210340 Materials Science +cond-mat/0210341 Strongly Correlated Electrons +cond-mat/0210342 Mesoscale and Nanoscale Physics +cond-mat/0210345 Disordered Systems and Neural Networks +cond-mat/0210346 +cond-mat/0210347 Mesoscale and Nanoscale Physics +cond-mat/0210348 Soft Condensed Matter +cond-mat/0210349 Strongly Correlated Electrons +cond-mat/0210351 Mesoscale and Nanoscale Physics +cond-mat/0210352 Disordered Systems and Neural Networks +cond-mat/0210353 +cond-mat/0210354 Soft Condensed Matter +cond-mat/0210356 Statistical Mechanics +cond-mat/0210357 Strongly Correlated Electrons +cond-mat/0210358 Superconductivity +cond-mat/0210360 Strongly Correlated Electrons +cond-mat/0210362 Statistical Mechanics +cond-mat/0210363 Superconductivity +cond-mat/0210365 Statistical Mechanics +cond-mat/0210367 Materials Science +cond-mat/0210368 +cond-mat/0210369 Materials Science +cond-mat/0210370 Statistical Mechanics +cond-mat/0210371 +cond-mat/0210373 Statistical Mechanics +cond-mat/0210374 Statistical Mechanics +cond-mat/0210375 Mesoscale and Nanoscale Physics +cond-mat/0210376 Statistical Mechanics +cond-mat/0210377 Soft Condensed Matter +cond-mat/0210378 Materials Science +cond-mat/0210379 +cond-mat/0210380 Statistical Mechanics +cond-mat/0210381 Statistical Mechanics +cond-mat/0210383 Statistical Mechanics +cond-mat/0210384 Superconductivity +cond-mat/0210386 Superconductivity +cond-mat/0210388 Superconductivity +cond-mat/0210389 Materials Science +cond-mat/0210390 Superconductivity +cond-mat/0210391 Mesoscale and Nanoscale Physics +cond-mat/0210392 Strongly Correlated Electrons +cond-mat/0210394 Strongly Correlated Electrons +cond-mat/0210395 Strongly Correlated Electrons +cond-mat/0210396 Strongly Correlated Electrons +cond-mat/0210397 Statistical Mechanics +cond-mat/0210398 Soft Condensed Matter +cond-mat/0210399 Statistical Mechanics +cond-mat/0210400 Materials Science +cond-mat/0210401 Mesoscale and Nanoscale Physics +cond-mat/0210405 Materials Science +cond-mat/0210406 Superconductivity +cond-mat/0210407 Strongly Correlated Electrons +cond-mat/0210409 Mesoscale and Nanoscale Physics +cond-mat/0210411 Soft Condensed Matter +cond-mat/0210413 Statistical Mechanics +cond-mat/0210419 Superconductivity +cond-mat/0210420 Mesoscale and Nanoscale Physics +cond-mat/0210422 Strongly Correlated Electrons +cond-mat/0210426 Materials Science +cond-mat/0210436 Strongly Correlated Electrons +cond-mat/0210444 Disordered Systems and Neural Networks +cond-mat/0210447 Disordered Systems and Neural Networks +cond-mat/0210449 Mesoscale and Nanoscale Physics +cond-mat/0210450 Soft Condensed Matter +cond-mat/0210458 Statistical Mechanics +cond-mat/0210459 Superconductivity +cond-mat/0210463 Materials Science +cond-mat/0210464 Statistical Mechanics +cond-mat/0210465 Statistical Mechanics +cond-mat/0210467 Statistical Mechanics +cond-mat/0210469 Superconductivity +cond-mat/0210472 Disordered Systems and Neural Networks +cond-mat/0210474 Mesoscale and Nanoscale Physics +cond-mat/0210475 Statistical Mechanics +cond-mat/0210476 +cond-mat/0210477 Statistical Mechanics +cond-mat/0210478 Superconductivity +cond-mat/0210479 +cond-mat/0210480 Materials Science +cond-mat/0210482 Materials Science +cond-mat/0210484 Statistical Mechanics +cond-mat/0210485 Mesoscale and Nanoscale Physics +cond-mat/0210487 Statistical Mechanics +cond-mat/0210488 Soft Condensed Matter +cond-mat/0210489 Statistical Mechanics +cond-mat/0210494 Soft Condensed Matter +cond-mat/0210495 Soft Condensed Matter +cond-mat/0210496 Materials Science +cond-mat/0210499 Statistical Mechanics +cond-mat/0210500 Statistical Mechanics +cond-mat/0210501 Statistical Mechanics +cond-mat/0210502 Statistical Mechanics +cond-mat/0210504 +cond-mat/0210506 +cond-mat/0210507 Mesoscale and Nanoscale Physics +cond-mat/0210508 Superconductivity +cond-mat/0210510 Materials Science +cond-mat/0210511 Strongly Correlated Electrons +cond-mat/0210512 Strongly Correlated Electrons +cond-mat/0210515 Mesoscale and Nanoscale Physics +cond-mat/0210517 Mesoscale and Nanoscale Physics +cond-mat/0210521 Disordered Systems and Neural Networks +cond-mat/0210523 Statistical Mechanics +cond-mat/0210525 Statistical Mechanics +cond-mat/0210528 Soft Condensed Matter +cond-mat/0210529 Materials Science +cond-mat/0210530 Superconductivity +cond-mat/0210531 Superconductivity +cond-mat/0210534 Soft Condensed Matter +cond-mat/0210536 Strongly Correlated Electrons +cond-mat/0210537 Superconductivity +cond-mat/0210540 Disordered Systems and Neural Networks +cond-mat/0210541 Strongly Correlated Electrons +cond-mat/0210542 +cond-mat/0210543 Strongly Correlated Electrons +cond-mat/0210545 Disordered Systems and Neural Networks +cond-mat/0210546 Strongly Correlated Electrons +cond-mat/0210547 Soft Condensed Matter +cond-mat/0210548 Statistical Mechanics +cond-mat/0210549 Statistical Mechanics +cond-mat/0210550 Soft Condensed Matter +cond-mat/0210551 Materials Science +cond-mat/0210552 Strongly Correlated Electrons +cond-mat/0210554 Soft Condensed Matter +cond-mat/0210555 Strongly Correlated Electrons +cond-mat/0210556 +cond-mat/0210557 Soft Condensed Matter +cond-mat/0210558 Strongly Correlated Electrons +cond-mat/0210561 Statistical Mechanics +cond-mat/0210562 Statistical Mechanics +cond-mat/0210564 Soft Condensed Matter +cond-mat/0210565 Strongly Correlated Electrons +cond-mat/0210566 Statistical Mechanics +cond-mat/0210567 Statistical Mechanics +cond-mat/0210568 Strongly Correlated Electrons +cond-mat/0210569 Mesoscale and Nanoscale Physics +cond-mat/0210570 Strongly Correlated Electrons +cond-mat/0210571 Statistical Mechanics +cond-mat/0210572 Soft Condensed Matter +cond-mat/0210573 Soft Condensed Matter +cond-mat/0210574 +cond-mat/0210575 Statistical Mechanics +cond-mat/0210577 Statistical Mechanics +cond-mat/0210578 Strongly Correlated Electrons +cond-mat/0210579 Statistical Mechanics +cond-mat/0210580 Superconductivity +cond-mat/0210582 Materials Science +cond-mat/0210583 Materials Science +cond-mat/0210586 Strongly Correlated Electrons +cond-mat/0210587 Disordered Systems and Neural Networks +cond-mat/0210588 Mesoscale and Nanoscale Physics +cond-mat/0210589 Mesoscale and Nanoscale Physics +cond-mat/0210593 Soft Condensed Matter +cond-mat/0210600 Materials Science +cond-mat/0210601 Strongly Correlated Electrons +cond-mat/0210604 Mesoscale and Nanoscale Physics +cond-mat/0210605 Mesoscale and Nanoscale Physics +cond-mat/0210606 Strongly Correlated Electrons +cond-mat/0210609 Strongly Correlated Electrons +cond-mat/0210610 Disordered Systems and Neural Networks +cond-mat/0210612 Mesoscale and Nanoscale Physics +cond-mat/0210614 Statistical Mechanics +cond-mat/0210615 Statistical Mechanics +cond-mat/0210620 Mesoscale and Nanoscale Physics +cond-mat/0210621 Mesoscale and Nanoscale Physics +cond-mat/0210622 Strongly Correlated Electrons +cond-mat/0210623 Superconductivity +cond-mat/0210624 Statistical Mechanics +cond-mat/0210625 Materials Science +cond-mat/0210626 Superconductivity +cond-mat/0210627 Strongly Correlated Electrons +cond-mat/0210628 +cond-mat/0210629 +cond-mat/0210630 Statistical Mechanics +cond-mat/0210631 +cond-mat/0210632 Strongly Correlated Electrons +cond-mat/0210634 +cond-mat/0210635 Mesoscale and Nanoscale Physics +cond-mat/0210638 Superconductivity +cond-mat/0210640 +cond-mat/0210643 Mesoscale and Nanoscale Physics +cond-mat/0210647 Mesoscale and Nanoscale Physics +cond-mat/0210648 Superconductivity +cond-mat/0210649 Statistical Mechanics +cond-mat/0210652 Superconductivity +cond-mat/0210653 Superconductivity +cond-mat/0210655 Statistical Mechanics +cond-mat/0210658 Strongly Correlated Electrons +cond-mat/0210661 Strongly Correlated Electrons +cond-mat/0210664 Soft Condensed Matter +cond-mat/0210665 Disordered Systems and Neural Networks +cond-mat/0210666 Materials Science +cond-mat/0210668 Strongly Correlated Electrons +cond-mat/0210669 Strongly Correlated Electrons +cond-mat/0210670 Strongly Correlated Electrons +cond-mat/0210672 Superconductivity +cond-mat/0210675 +cond-mat/0210676 +cond-mat/0210677 +cond-mat/0210680 Disordered Systems and Neural Networks +cond-mat/0210681 Materials Science +cond-mat/0210682 Soft Condensed Matter +cond-mat/0210683 Strongly Correlated Electrons +cond-mat/0210684 Strongly Correlated Electrons +cond-mat/0210686 Disordered Systems and Neural Networks +cond-mat/0210687 Mesoscale and Nanoscale Physics +cond-mat/0210688 Soft Condensed Matter +cond-mat/0210690 Materials Science +cond-mat/0210692 Superconductivity +cond-mat/0210693 Superconductivity +cond-mat/0210696 Statistical Mechanics +cond-mat/0210697 Superconductivity +cond-mat/0210700 Strongly Correlated Electrons +cond-mat/0210701 Superconductivity +cond-mat/0210704 Superconductivity +cond-mat/0210706 Superconductivity +cond-mat/0210709 Strongly Correlated Electrons +cond-mat/0210710 +cond-mat/0210711 Statistical Mechanics +cond-mat/0210713 Statistical Mechanics +cond-mat/0210714 Materials Science +cond-mat/0211003 Statistical Mechanics +cond-mat/0211004 +cond-mat/0211008 Mesoscale and Nanoscale Physics +cond-mat/0211009 +cond-mat/0211013 Soft Condensed Matter +cond-mat/0211014 Strongly Correlated Electrons +cond-mat/0211015 Statistical Mechanics +cond-mat/0211016 Soft Condensed Matter +cond-mat/0211018 Superconductivity +cond-mat/0211019 Superconductivity +cond-mat/0211021 Materials Science +cond-mat/0211022 Mesoscale and Nanoscale Physics +cond-mat/0211025 Strongly Correlated Electrons +cond-mat/0211026 Soft Condensed Matter +cond-mat/0211029 Statistical Mechanics +cond-mat/0211030 Soft Condensed Matter +cond-mat/0211031 Materials Science +cond-mat/0211033 Strongly Correlated Electrons +cond-mat/0211034 Strongly Correlated Electrons +cond-mat/0211035 Statistical Mechanics +cond-mat/0211040 Materials Science +cond-mat/0211041 Strongly Correlated Electrons +cond-mat/0211042 Soft Condensed Matter +cond-mat/0211047 Superconductivity +cond-mat/0211049 Strongly Correlated Electrons +cond-mat/0211052 Statistical Mechanics +cond-mat/0211053 Strongly Correlated Electrons +cond-mat/0211054 Strongly Correlated Electrons +cond-mat/0211056 Materials Science +cond-mat/0211057 +cond-mat/0211058 Statistical Mechanics +cond-mat/0211059 Materials Science +cond-mat/0211060 +cond-mat/0211061 Statistical Mechanics +cond-mat/0211062 Statistical Mechanics +cond-mat/0211063 Statistical Mechanics +cond-mat/0211065 Soft Condensed Matter +cond-mat/0211066 Soft Condensed Matter +cond-mat/0211067 Soft Condensed Matter +cond-mat/0211069 Mesoscale and Nanoscale Physics +cond-mat/0211070 Statistical Mechanics +cond-mat/0211071 Superconductivity +cond-mat/0211072 Materials Science +cond-mat/0211074 Strongly Correlated Electrons +cond-mat/0211075 Superconductivity +cond-mat/0211077 Mesoscale and Nanoscale Physics +cond-mat/0211078 Superconductivity +cond-mat/0211080 Superconductivity +cond-mat/0211082 Statistical Mechanics +cond-mat/0211084 Superconductivity +cond-mat/0211085 Soft Condensed Matter +cond-mat/0211087 Soft Condensed Matter +cond-mat/0211089 Statistical Mechanics +cond-mat/0211093 Statistical Mechanics +cond-mat/0211094 +cond-mat/0211095 Strongly Correlated Electrons +cond-mat/0211098 Strongly Correlated Electrons +cond-mat/0211099 Strongly Correlated Electrons +cond-mat/0211100 Superconductivity +cond-mat/0211101 Soft Condensed Matter +cond-mat/0211102 Statistical Mechanics +cond-mat/0211105 Statistical Mechanics +cond-mat/0211107 Strongly Correlated Electrons +cond-mat/0211109 +cond-mat/0211111 Statistical Mechanics +cond-mat/0211113 Statistical Mechanics +cond-mat/0211114 Materials Science +cond-mat/0211117 Superconductivity +cond-mat/0211118 Statistical Mechanics +cond-mat/0211122 Disordered Systems and Neural Networks +cond-mat/0211123 Statistical Mechanics +cond-mat/0211124 Statistical Mechanics +cond-mat/0211125 Superconductivity +cond-mat/0211126 +cond-mat/0211128 Strongly Correlated Electrons +cond-mat/0211129 Mesoscale and Nanoscale Physics +cond-mat/0211130 Mesoscale and Nanoscale Physics +cond-mat/0211132 Superconductivity +cond-mat/0211133 Disordered Systems and Neural Networks +cond-mat/0211134 Superconductivity +cond-mat/0211135 Superconductivity +cond-mat/0211137 Statistical Mechanics +cond-mat/0211138 Superconductivity +cond-mat/0211140 Soft Condensed Matter +cond-mat/0211142 Superconductivity +cond-mat/0211144 Strongly Correlated Electrons +cond-mat/0211145 Statistical Mechanics +cond-mat/0211146 Strongly Correlated Electrons +cond-mat/0211149 Strongly Correlated Electrons +cond-mat/0211151 Mesoscale and Nanoscale Physics +cond-mat/0211152 Mesoscale and Nanoscale Physics +cond-mat/0211153 Mesoscale and Nanoscale Physics +cond-mat/0211154 Superconductivity +cond-mat/0211155 Mesoscale and Nanoscale Physics +cond-mat/0211158 Materials Science +cond-mat/0211161 Strongly Correlated Electrons +cond-mat/0211164 Statistical Mechanics +cond-mat/0211167 Statistical Mechanics +cond-mat/0211172 Statistical Mechanics +cond-mat/0211173 Materials Science +cond-mat/0211174 Materials Science +cond-mat/0211178 Superconductivity +cond-mat/0211181 Statistical Mechanics +cond-mat/0211183 Strongly Correlated Electrons +cond-mat/0211186 Soft Condensed Matter +cond-mat/0211188 +cond-mat/0211189 +cond-mat/0211193 Statistical Mechanics +cond-mat/0211194 Strongly Correlated Electrons +cond-mat/0211195 Statistical Mechanics +cond-mat/0211197 Statistical Mechanics +cond-mat/0211198 +cond-mat/0211200 Mesoscale and Nanoscale Physics +cond-mat/0211201 Mesoscale and Nanoscale Physics +cond-mat/0211204 Materials Science +cond-mat/0211205 Materials Science +cond-mat/0211208 +cond-mat/0211210 Strongly Correlated Electrons +cond-mat/0211211 Mesoscale and Nanoscale Physics +cond-mat/0211212 Statistical Mechanics +cond-mat/0211213 Mesoscale and Nanoscale Physics +cond-mat/0211214 Mesoscale and Nanoscale Physics +cond-mat/0211215 Soft Condensed Matter +cond-mat/0211216 Statistical Mechanics +cond-mat/0211217 Superconductivity +cond-mat/0211218 Soft Condensed Matter +cond-mat/0211219 Materials Science +cond-mat/0211220 Materials Science +cond-mat/0211221 Materials Science +cond-mat/0211222 Soft Condensed Matter +cond-mat/0211224 Superconductivity +cond-mat/0211225 Strongly Correlated Electrons +cond-mat/0211228 Materials Science +cond-mat/0211229 Soft Condensed Matter +cond-mat/0211232 Superconductivity +cond-mat/0211233 Superconductivity +cond-mat/0211235 Mesoscale and Nanoscale Physics +cond-mat/0211236 Statistical Mechanics +cond-mat/0211240 Statistical Mechanics +cond-mat/0211242 Strongly Correlated Electrons +cond-mat/0211243 Soft Condensed Matter +cond-mat/0211246 Mesoscale and Nanoscale Physics +cond-mat/0211247 Superconductivity +cond-mat/0211249 Statistical Mechanics +cond-mat/0211251 Superconductivity +cond-mat/0211254 Strongly Correlated Electrons +cond-mat/0211256 Superconductivity +cond-mat/0211257 Strongly Correlated Electrons +cond-mat/0211258 Disordered Systems and Neural Networks +cond-mat/0211259 Soft Condensed Matter +cond-mat/0211260 Statistical Mechanics +cond-mat/0211261 Strongly Correlated Electrons +cond-mat/0211262 Strongly Correlated Electrons +cond-mat/0211263 Statistical Mechanics +cond-mat/0211264 Soft Condensed Matter +cond-mat/0211265 Mesoscale and Nanoscale Physics +cond-mat/0211267 Strongly Correlated Electrons +cond-mat/0211268 Superconductivity +cond-mat/0211269 Statistical Mechanics +cond-mat/0211271 +cond-mat/0211272 Materials Science +cond-mat/0211274 Statistical Mechanics +cond-mat/0211275 +cond-mat/0211277 Strongly Correlated Electrons +cond-mat/0211278 Superconductivity +cond-mat/0211282 Strongly Correlated Electrons +cond-mat/0211283 Statistical Mechanics +cond-mat/0211285 Statistical Mechanics +cond-mat/0211290 Statistical Mechanics +cond-mat/0211291 +cond-mat/0211292 Disordered Systems and Neural Networks +cond-mat/0211294 Soft Condensed Matter +cond-mat/0211295 Superconductivity +cond-mat/0211296 +cond-mat/0211297 Soft Condensed Matter +cond-mat/0211299 Strongly Correlated Electrons +cond-mat/0211300 Materials Science +cond-mat/0211301 Materials Science +cond-mat/0211302 Statistical Mechanics +cond-mat/0211304 Statistical Mechanics +cond-mat/0211305 Statistical Mechanics +cond-mat/0211307 Materials Science +cond-mat/0211308 Mesoscale and Nanoscale Physics +cond-mat/0211309 Statistical Mechanics +cond-mat/0211311 Materials Science +cond-mat/0211312 Superconductivity +cond-mat/0211313 Soft Condensed Matter +cond-mat/0211316 Strongly Correlated Electrons +cond-mat/0211318 +cond-mat/0211319 Superconductivity +cond-mat/0211321 Statistical Mechanics +cond-mat/0211323 Disordered Systems and Neural Networks +cond-mat/0211324 Superconductivity +cond-mat/0211325 +cond-mat/0211326 Materials Science +cond-mat/0211328 Materials Science +cond-mat/0211329 Materials Science +cond-mat/0211332 Soft Condensed Matter +cond-mat/0211337 Materials Science +cond-mat/0211338 Superconductivity +cond-mat/0211341 Materials Science +cond-mat/0211342 Superconductivity +cond-mat/0211343 +cond-mat/0211344 +cond-mat/0211345 Soft Condensed Matter +cond-mat/0211348 Soft Condensed Matter +cond-mat/0211350 Mesoscale and Nanoscale Physics +cond-mat/0211353 +cond-mat/0211355 Superconductivity +cond-mat/0211357 +cond-mat/0211359 Superconductivity +cond-mat/0211363 +cond-mat/0211366 Strongly Correlated Electrons +cond-mat/0211367 Statistical Mechanics +cond-mat/0211368 Strongly Correlated Electrons +cond-mat/0211369 Strongly Correlated Electrons +cond-mat/0211371 Materials Science +cond-mat/0211372 Superconductivity +cond-mat/0211374 Soft Condensed Matter +cond-mat/0211377 Disordered Systems and Neural Networks +cond-mat/0211378 Materials Science +cond-mat/0211381 Materials Science +cond-mat/0211383 Disordered Systems and Neural Networks +cond-mat/0211384 Superconductivity +cond-mat/0211385 Strongly Correlated Electrons +cond-mat/0211386 Statistical Mechanics +cond-mat/0211387 Strongly Correlated Electrons +cond-mat/0211388 Superconductivity +cond-mat/0211390 Soft Condensed Matter +cond-mat/0211391 Strongly Correlated Electrons +cond-mat/0211392 Mesoscale and Nanoscale Physics +cond-mat/0211394 +cond-mat/0211395 Strongly Correlated Electrons +cond-mat/0211396 Soft Condensed Matter +cond-mat/0211397 Materials Science +cond-mat/0211399 Statistical Mechanics +cond-mat/0211400 Superconductivity +cond-mat/0211401 +cond-mat/0211405 Superconductivity +cond-mat/0211409 Materials Science +cond-mat/0211412 Mesoscale and Nanoscale Physics +cond-mat/0211415 +cond-mat/0211416 Materials Science +cond-mat/0211417 Disordered Systems and Neural Networks +cond-mat/0211419 Strongly Correlated Electrons +cond-mat/0211421 Materials Science +cond-mat/0211422 Statistical Mechanics +cond-mat/0211423 Superconductivity +cond-mat/0211424 +cond-mat/0211425 Materials Science +cond-mat/0211426 Materials Science +cond-mat/0211427 +cond-mat/0211429 Strongly Correlated Electrons +cond-mat/0211430 Strongly Correlated Electrons +cond-mat/0211432 +cond-mat/0211433 Strongly Correlated Electrons +cond-mat/0211434 +cond-mat/0211436 Strongly Correlated Electrons +cond-mat/0211437 Statistical Mechanics +cond-mat/0211439 Superconductivity +cond-mat/0211440 Strongly Correlated Electrons +cond-mat/0211441 Materials Science +cond-mat/0211442 Strongly Correlated Electrons +cond-mat/0211446 Disordered Systems and Neural Networks +cond-mat/0211447 Strongly Correlated Electrons +cond-mat/0211448 Strongly Correlated Electrons +cond-mat/0211451 Strongly Correlated Electrons +cond-mat/0211452 Superconductivity +cond-mat/0211453 Statistical Mechanics +cond-mat/0211455 +cond-mat/0211460 +cond-mat/0211465 Statistical Mechanics +cond-mat/0211466 +cond-mat/0211467 Strongly Correlated Electrons +cond-mat/0211468 Statistical Mechanics +cond-mat/0211469 +cond-mat/0211470 Superconductivity +cond-mat/0211472 Statistical Mechanics +cond-mat/0211473 Statistical Mechanics +cond-mat/0211474 Strongly Correlated Electrons +cond-mat/0211475 Soft Condensed Matter +cond-mat/0211476 Strongly Correlated Electrons +cond-mat/0211477 Statistical Mechanics +cond-mat/0211481 Superconductivity +cond-mat/0211482 Mesoscale and Nanoscale Physics +cond-mat/0211483 Superconductivity +cond-mat/0211484 Statistical Mechanics +cond-mat/0211485 Soft Condensed Matter +cond-mat/0211486 Strongly Correlated Electrons +cond-mat/0211487 Materials Science +cond-mat/0211491 +cond-mat/0211493 +cond-mat/0211496 Materials Science +cond-mat/0211497 Materials Science +cond-mat/0211498 Disordered Systems and Neural Networks +cond-mat/0211499 Materials Science +cond-mat/0211500 Disordered Systems and Neural Networks +cond-mat/0211501 Soft Condensed Matter +cond-mat/0211505 Soft Condensed Matter +cond-mat/0211507 Mesoscale and Nanoscale Physics +cond-mat/0211509 Materials Science +cond-mat/0211511 Strongly Correlated Electrons +cond-mat/0211512 Materials Science +cond-mat/0211513 Statistical Mechanics +cond-mat/0211516 Strongly Correlated Electrons +cond-mat/0211517 Strongly Correlated Electrons +cond-mat/0211518 Statistical Mechanics +cond-mat/0211519 Superconductivity +cond-mat/0211521 Disordered Systems and Neural Networks +cond-mat/0211522 +cond-mat/0211524 Materials Science +cond-mat/0211525 Mesoscale and Nanoscale Physics +cond-mat/0211527 Statistical Mechanics +cond-mat/0211528 Statistical Mechanics +cond-mat/0211529 +cond-mat/0211535 Mesoscale and Nanoscale Physics +cond-mat/0211536 +cond-mat/0211538 Strongly Correlated Electrons +cond-mat/0211539 Superconductivity +cond-mat/0211542 Soft Condensed Matter +cond-mat/0211544 Superconductivity +cond-mat/0211546 Statistical Mechanics +cond-mat/0211547 Superconductivity +cond-mat/0211548 Mesoscale and Nanoscale Physics +cond-mat/0211549 Superconductivity +cond-mat/0211551 Materials Science +cond-mat/0211552 Strongly Correlated Electrons +cond-mat/0211554 +cond-mat/0211557 +cond-mat/0211558 +cond-mat/0211562 Statistical Mechanics +cond-mat/0211563 Mesoscale and Nanoscale Physics +cond-mat/0211564 Materials Science +cond-mat/0211566 Soft Condensed Matter +cond-mat/0211567 Mesoscale and Nanoscale Physics +cond-mat/0211568 Strongly Correlated Electrons +cond-mat/0211570 Strongly Correlated Electrons +cond-mat/0211571 Disordered Systems and Neural Networks +cond-mat/0211572 +cond-mat/0211574 Mesoscale and Nanoscale Physics +cond-mat/0211575 Materials Science +cond-mat/0211576 Strongly Correlated Electrons +cond-mat/0211579 Mesoscale and Nanoscale Physics +cond-mat/0211580 Materials Science +cond-mat/0211582 Mesoscale and Nanoscale Physics +cond-mat/0211583 +cond-mat/0211584 Statistical Mechanics +cond-mat/0211586 Strongly Correlated Electrons +cond-mat/0211587 Strongly Correlated Electrons +cond-mat/0211588 Superconductivity +cond-mat/0211589 Strongly Correlated Electrons +cond-mat/0211593 +cond-mat/0211594 Materials Science +cond-mat/0211596 Statistical Mechanics +cond-mat/0211597 Superconductivity +cond-mat/0211599 +cond-mat/0211600 Mesoscale and Nanoscale Physics +cond-mat/0211601 +cond-mat/0211602 Materials Science +cond-mat/0211603 Mesoscale and Nanoscale Physics +cond-mat/0211607 Mesoscale and Nanoscale Physics +cond-mat/0211608 Disordered Systems and Neural Networks +cond-mat/0211609 Statistical Mechanics +cond-mat/0211610 Materials Science +cond-mat/0211611 Mesoscale and Nanoscale Physics +cond-mat/0211613 Superconductivity +cond-mat/0211614 Materials Science +cond-mat/0211615 Strongly Correlated Electrons +cond-mat/0211619 Superconductivity +cond-mat/0211622 Soft Condensed Matter +cond-mat/0211624 Soft Condensed Matter +cond-mat/0211626 +cond-mat/0211627 Strongly Correlated Electrons +cond-mat/0211628 Soft Condensed Matter +cond-mat/0211629 Strongly Correlated Electrons +cond-mat/0211631 +cond-mat/0211632 Strongly Correlated Electrons +cond-mat/0211634 Strongly Correlated Electrons +cond-mat/0211638 Mesoscale and Nanoscale Physics +cond-mat/0211641 Mesoscale and Nanoscale Physics +cond-mat/0211643 Superconductivity +cond-mat/0211644 Superconductivity +cond-mat/0211647 Mesoscale and Nanoscale Physics +cond-mat/0211648 Mesoscale and Nanoscale Physics +cond-mat/0211650 Soft Condensed Matter +cond-mat/0211651 Disordered Systems and Neural Networks +cond-mat/0211652 +cond-mat/0211661 Soft Condensed Matter +cond-mat/0211665 Superconductivity +cond-mat/0211667 Statistical Mechanics +cond-mat/0211669 Statistical Mechanics +cond-mat/0211674 Materials Science +cond-mat/0211677 Materials Science +cond-mat/0211686 Mesoscale and Nanoscale Physics +cond-mat/0211687 Materials Science +cond-mat/0211688 Statistical Mechanics +cond-mat/0211689 +cond-mat/0211694 Mesoscale and Nanoscale Physics +cond-mat/0211695 Disordered Systems and Neural Networks +cond-mat/0211696 Soft Condensed Matter +cond-mat/0211698 Materials Science +cond-mat/0211699 Strongly Correlated Electrons +cond-mat/0211700 Disordered Systems and Neural Networks +cond-mat/0211703 Strongly Correlated Electrons +cond-mat/0211706 Strongly Correlated Electrons +cond-mat/0211707 Statistical Mechanics +cond-mat/0212006 Disordered Systems and Neural Networks +cond-mat/0212009 Superconductivity +cond-mat/0212012 Strongly Correlated Electrons +cond-mat/0212013 Strongly Correlated Electrons +cond-mat/0212014 Strongly Correlated Electrons +cond-mat/0212016 Mesoscale and Nanoscale Physics +cond-mat/0212018 Superconductivity +cond-mat/0212019 Superconductivity +cond-mat/0212020 +cond-mat/0212022 Superconductivity +cond-mat/0212023 Materials Science +cond-mat/0212024 Strongly Correlated Electrons +cond-mat/0212025 Strongly Correlated Electrons +cond-mat/0212028 Disordered Systems and Neural Networks +cond-mat/0212029 Strongly Correlated Electrons +cond-mat/0212030 Mesoscale and Nanoscale Physics +cond-mat/0212031 Superconductivity +cond-mat/0212032 Mesoscale and Nanoscale Physics +cond-mat/0212033 Strongly Correlated Electrons +cond-mat/0212034 Strongly Correlated Electrons +cond-mat/0212037 Statistical Mechanics +cond-mat/0212038 Strongly Correlated Electrons +cond-mat/0212040 Soft Condensed Matter +cond-mat/0212041 Materials Science +cond-mat/0212042 Statistical Mechanics +cond-mat/0212045 Mesoscale and Nanoscale Physics +cond-mat/0212046 Statistical Mechanics +cond-mat/0212047 Superconductivity +cond-mat/0212048 Superconductivity +cond-mat/0212049 Mesoscale and Nanoscale Physics +cond-mat/0212050 Materials Science +cond-mat/0212051 Statistical Mechanics +cond-mat/0212053 Statistical Mechanics +cond-mat/0212054 Statistical Mechanics +cond-mat/0212058 Disordered Systems and Neural Networks +cond-mat/0212059 Mesoscale and Nanoscale Physics +cond-mat/0212060 +cond-mat/0212061 Statistical Mechanics +cond-mat/0212062 Mesoscale and Nanoscale Physics +cond-mat/0212063 Mesoscale and Nanoscale Physics +cond-mat/0212064 Statistical Mechanics +cond-mat/0212065 Disordered Systems and Neural Networks +cond-mat/0212066 Superconductivity +cond-mat/0212067 Superconductivity +cond-mat/0212068 Statistical Mechanics +cond-mat/0212070 Disordered Systems and Neural Networks +cond-mat/0212071 Statistical Mechanics +cond-mat/0212072 Mesoscale and Nanoscale Physics +cond-mat/0212074 Materials Science +cond-mat/0212075 Statistical Mechanics +cond-mat/0212078 Statistical Mechanics +cond-mat/0212080 Mesoscale and Nanoscale Physics +cond-mat/0212082 Strongly Correlated Electrons +cond-mat/0212083 Superconductivity +cond-mat/0212086 Disordered Systems and Neural Networks +cond-mat/0212087 Soft Condensed Matter +cond-mat/0212089 Materials Science +cond-mat/0212090 Superconductivity +cond-mat/0212091 Statistical Mechanics +cond-mat/0212093 Materials Science +cond-mat/0212094 Superconductivity +cond-mat/0212096 Superconductivity +cond-mat/0212097 Disordered Systems and Neural Networks +cond-mat/0212098 Disordered Systems and Neural Networks +cond-mat/0212099 Disordered Systems and Neural Networks +cond-mat/0212100 Materials Science +cond-mat/0212101 Strongly Correlated Electrons +cond-mat/0212103 Soft Condensed Matter +cond-mat/0212104 +cond-mat/0212108 Superconductivity +cond-mat/0212109 Mesoscale and Nanoscale Physics +cond-mat/0212110 Strongly Correlated Electrons +cond-mat/0212112 Soft Condensed Matter +cond-mat/0212114 +cond-mat/0212116 Statistical Mechanics +cond-mat/0212122 Strongly Correlated Electrons +cond-mat/0212124 Soft Condensed Matter +cond-mat/0212125 Statistical Mechanics +cond-mat/0212126 Mesoscale and Nanoscale Physics +cond-mat/0212127 +cond-mat/0212129 Superconductivity +cond-mat/0212130 Mesoscale and Nanoscale Physics +cond-mat/0212131 Soft Condensed Matter +cond-mat/0212132 Statistical Mechanics +cond-mat/0212135 Mesoscale and Nanoscale Physics +cond-mat/0212138 Statistical Mechanics +cond-mat/0212142 Statistical Mechanics +cond-mat/0212143 Superconductivity +cond-mat/0212144 Strongly Correlated Electrons +cond-mat/0212145 Statistical Mechanics +cond-mat/0212148 Soft Condensed Matter +cond-mat/0212149 Strongly Correlated Electrons +cond-mat/0212150 Statistical Mechanics +cond-mat/0212151 Soft Condensed Matter +cond-mat/0212153 Statistical Mechanics +cond-mat/0212155 Superconductivity +cond-mat/0212157 Mesoscale and Nanoscale Physics +cond-mat/0212164 Disordered Systems and Neural Networks +cond-mat/0212165 Disordered Systems and Neural Networks +cond-mat/0212167 Materials Science +cond-mat/0212168 Materials Science +cond-mat/0212169 Statistical Mechanics +cond-mat/0212171 Materials Science +cond-mat/0212172 Superconductivity +cond-mat/0212176 +cond-mat/0212177 Statistical Mechanics +cond-mat/0212178 Mesoscale and Nanoscale Physics +cond-mat/0212179 Statistical Mechanics +cond-mat/0212180 Materials Science +cond-mat/0212181 Mesoscale and Nanoscale Physics +cond-mat/0212184 Mesoscale and Nanoscale Physics +cond-mat/0212186 Statistical Mechanics +cond-mat/0212187 Statistical Mechanics +cond-mat/0212188 Superconductivity +cond-mat/0212189 Materials Science +cond-mat/0212190 Strongly Correlated Electrons +cond-mat/0212191 Materials Science +cond-mat/0212193 Statistical Mechanics +cond-mat/0212196 Soft Condensed Matter +cond-mat/0212198 Statistical Mechanics +cond-mat/0212200 Statistical Mechanics +cond-mat/0212201 Mesoscale and Nanoscale Physics +cond-mat/0212203 Statistical Mechanics +cond-mat/0212205 Statistical Mechanics +cond-mat/0212206 Soft Condensed Matter +cond-mat/0212208 +cond-mat/0212210 Disordered Systems and Neural Networks +cond-mat/0212214 Strongly Correlated Electrons +cond-mat/0212218 Statistical Mechanics +cond-mat/0212219 Statistical Mechanics +cond-mat/0212220 Statistical Mechanics +cond-mat/0212224 Statistical Mechanics +cond-mat/0212226 Statistical Mechanics +cond-mat/0212227 Soft Condensed Matter +cond-mat/0212229 Superconductivity +cond-mat/0212233 Mesoscale and Nanoscale Physics +cond-mat/0212235 +cond-mat/0212237 Disordered Systems and Neural Networks +cond-mat/0212239 Materials Science +cond-mat/0212240 Statistical Mechanics +cond-mat/0212244 Strongly Correlated Electrons +cond-mat/0212246 Disordered Systems and Neural Networks +cond-mat/0212247 Mesoscale and Nanoscale Physics +cond-mat/0212248 Strongly Correlated Electrons +cond-mat/0212250 Soft Condensed Matter +cond-mat/0212251 Soft Condensed Matter +cond-mat/0212252 Soft Condensed Matter +cond-mat/0212253 Mesoscale and Nanoscale Physics +cond-mat/0212257 Statistical Mechanics +cond-mat/0212258 Statistical Mechanics +cond-mat/0212259 Disordered Systems and Neural Networks +cond-mat/0212260 +cond-mat/0212261 Strongly Correlated Electrons +cond-mat/0212263 Superconductivity +cond-mat/0212264 +cond-mat/0212266 +cond-mat/0212268 Soft Condensed Matter +cond-mat/0212270 Soft Condensed Matter +cond-mat/0212272 Mesoscale and Nanoscale Physics +cond-mat/0212273 Soft Condensed Matter +cond-mat/0212275 Statistical Mechanics +cond-mat/0212276 Strongly Correlated Electrons +cond-mat/0212277 +cond-mat/0212278 +cond-mat/0212282 Superconductivity +cond-mat/0212286 +cond-mat/0212288 Mesoscale and Nanoscale Physics +cond-mat/0212292 Materials Science +cond-mat/0212293 Mesoscale and Nanoscale Physics +cond-mat/0212295 Statistical Mechanics +cond-mat/0212297 Disordered Systems and Neural Networks +cond-mat/0212298 Soft Condensed Matter +cond-mat/0212299 Soft Condensed Matter +cond-mat/0212300 +cond-mat/0212303 Disordered Systems and Neural Networks +cond-mat/0212305 Strongly Correlated Electrons +cond-mat/0212306 Disordered Systems and Neural Networks +cond-mat/0212307 +cond-mat/0212313 Statistical Mechanics +cond-mat/0212315 Soft Condensed Matter +cond-mat/0212316 Disordered Systems and Neural Networks +cond-mat/0212317 Mesoscale and Nanoscale Physics +cond-mat/0212320 Soft Condensed Matter +cond-mat/0212321 Statistical Mechanics +cond-mat/0212322 Materials Science +cond-mat/0212323 Statistical Mechanics +cond-mat/0212324 Statistical Mechanics +cond-mat/0212326 Statistical Mechanics +cond-mat/0212327 Statistical Mechanics +cond-mat/0212328 Soft Condensed Matter +cond-mat/0212330 Statistical Mechanics +cond-mat/0212332 Strongly Correlated Electrons +cond-mat/0212334 Statistical Mechanics +cond-mat/0212335 Strongly Correlated Electrons +cond-mat/0212336 Soft Condensed Matter +cond-mat/0212337 Superconductivity +cond-mat/0212338 Statistical Mechanics +cond-mat/0212343 Materials Science +cond-mat/0212345 Strongly Correlated Electrons +cond-mat/0212348 Superconductivity +cond-mat/0212352 Materials Science +cond-mat/0212353 Superconductivity +cond-mat/0212355 Strongly Correlated Electrons +cond-mat/0212356 Statistical Mechanics +cond-mat/0212359 Materials Science +cond-mat/0212360 Superconductivity +cond-mat/0212362 +cond-mat/0212364 Strongly Correlated Electrons +cond-mat/0212367 Superconductivity +cond-mat/0212370 Strongly Correlated Electrons +cond-mat/0212371 Statistical Mechanics +cond-mat/0212373 Statistical Mechanics +cond-mat/0212374 Mesoscale and Nanoscale Physics +cond-mat/0212375 +cond-mat/0212380 Mesoscale and Nanoscale Physics +cond-mat/0212383 Superconductivity +cond-mat/0212384 Mesoscale and Nanoscale Physics +cond-mat/0212385 Superconductivity +cond-mat/0212387 +cond-mat/0212391 Materials Science +cond-mat/0212395 Strongly Correlated Electrons +cond-mat/0212398 +cond-mat/0212399 Materials Science +cond-mat/0212400 Superconductivity +cond-mat/0212403 Materials Science +cond-mat/0212404 Superconductivity +cond-mat/0212406 Soft Condensed Matter +cond-mat/0212409 Mesoscale and Nanoscale Physics +cond-mat/0212410 Strongly Correlated Electrons +cond-mat/0212412 Strongly Correlated Electrons +cond-mat/0212414 Mesoscale and Nanoscale Physics +cond-mat/0212418 Strongly Correlated Electrons +cond-mat/0212420 Mesoscale and Nanoscale Physics +cond-mat/0212421 Soft Condensed Matter +cond-mat/0212422 Mesoscale and Nanoscale Physics +cond-mat/0212424 Mesoscale and Nanoscale Physics +cond-mat/0212425 Mesoscale and Nanoscale Physics +cond-mat/0212426 Materials Science +cond-mat/0212433 Statistical Mechanics +cond-mat/0212434 +cond-mat/0212435 Materials Science +cond-mat/0212438 Statistical Mechanics +cond-mat/0212440 Soft Condensed Matter +cond-mat/0212441 Mesoscale and Nanoscale Physics +cond-mat/0212442 Materials Science +cond-mat/0212443 Superconductivity +cond-mat/0212445 Superconductivity +cond-mat/0212446 Mesoscale and Nanoscale Physics +cond-mat/0212448 Disordered Systems and Neural Networks +cond-mat/0212449 Materials Science +cond-mat/0212450 Statistical Mechanics +cond-mat/0212452 Statistical Mechanics +cond-mat/0212457 Statistical Mechanics +cond-mat/0212459 Materials Science +cond-mat/0212460 Strongly Correlated Electrons +cond-mat/0212463 Superconductivity +cond-mat/0212464 Superconductivity +cond-mat/0212467 Superconductivity +cond-mat/0212469 Disordered Systems and Neural Networks +cond-mat/0212470 Mesoscale and Nanoscale Physics +cond-mat/0212471 Superconductivity +cond-mat/0212472 Statistical Mechanics +cond-mat/0212473 Superconductivity +cond-mat/0212474 Superconductivity +cond-mat/0212477 Mesoscale and Nanoscale Physics +cond-mat/0212478 Soft Condensed Matter +cond-mat/0212479 Strongly Correlated Electrons +cond-mat/0212481 Disordered Systems and Neural Networks +cond-mat/0212482 Materials Science +cond-mat/0212484 +cond-mat/0212485 Statistical Mechanics +cond-mat/0212487 Soft Condensed Matter +cond-mat/0212488 Mesoscale and Nanoscale Physics +cond-mat/0212489 Mesoscale and Nanoscale Physics +cond-mat/0212490 Disordered Systems and Neural Networks +cond-mat/0212492 +cond-mat/0212493 Strongly Correlated Electrons +cond-mat/0212494 Mesoscale and Nanoscale Physics +cond-mat/0212497 Statistical Mechanics +cond-mat/0212499 Superconductivity +cond-mat/0212500 Statistical Mechanics +cond-mat/0212502 Superconductivity +cond-mat/0212503 Superconductivity +cond-mat/0212507 Superconductivity +cond-mat/0212508 Soft Condensed Matter +cond-mat/0212509 +cond-mat/0212512 +cond-mat/0212513 Disordered Systems and Neural Networks +cond-mat/0212514 Materials Science +cond-mat/0212516 Superconductivity +cond-mat/0212520 Superconductivity +cond-mat/0212524 Statistical Mechanics +cond-mat/0212526 Disordered Systems and Neural Networks +cond-mat/0212528 Soft Condensed Matter +cond-mat/0212529 Statistical Mechanics +cond-mat/0212531 Superconductivity +cond-mat/0212534 Disordered Systems and Neural Networks +cond-mat/0212535 Strongly Correlated Electrons +cond-mat/0212536 Mesoscale and Nanoscale Physics +cond-mat/0212537 Superconductivity +cond-mat/0212538 +cond-mat/0212539 Soft Condensed Matter +cond-mat/0212540 Soft Condensed Matter +cond-mat/0212542 Disordered Systems and Neural Networks +cond-mat/0212545 +cond-mat/0212548 Soft Condensed Matter +cond-mat/0212549 Mesoscale and Nanoscale Physics +cond-mat/0212550 Superconductivity +cond-mat/0212551 Disordered Systems and Neural Networks +cond-mat/0212554 Materials Science +cond-mat/0212555 Soft Condensed Matter +cond-mat/0212558 Statistical Mechanics +cond-mat/0212559 Strongly Correlated Electrons +cond-mat/0212560 Mesoscale and Nanoscale Physics +cond-mat/0212562 Superconductivity +cond-mat/0212563 Materials Science +cond-mat/0212566 Statistical Mechanics +cond-mat/0212567 Statistical Mechanics +cond-mat/0212568 +cond-mat/0212571 Materials Science +cond-mat/0212573 Strongly Correlated Electrons +cond-mat/0212575 Strongly Correlated Electrons +cond-mat/0212576 Statistical Mechanics +cond-mat/0212577 Mesoscale and Nanoscale Physics +cond-mat/0212584 Statistical Mechanics +cond-mat/0212585 Superconductivity +cond-mat/0212586 Strongly Correlated Electrons +cond-mat/0212587 Superconductivity +cond-mat/0212589 Superconductivity +cond-mat/0212591 Disordered Systems and Neural Networks +cond-mat/0212592 Statistical Mechanics +cond-mat/0212596 Statistical Mechanics +cond-mat/0212597 Soft Condensed Matter +cond-mat/0212599 Superconductivity +cond-mat/0212601 Statistical Mechanics +cond-mat/0212606 Strongly Correlated Electrons +cond-mat/0212607 Materials Science +cond-mat/0212609 Superconductivity +cond-mat/0212611 Materials Science +cond-mat/0212616 Statistical Mechanics +cond-mat/0212617 Disordered Systems and Neural Networks +cond-mat/0212618 Materials Science +cond-mat/0212619 Materials Science +cond-mat/0212622 Disordered Systems and Neural Networks +cond-mat/0212624 Superconductivity +cond-mat/0212629 Mesoscale and Nanoscale Physics +cond-mat/0212630 Disordered Systems and Neural Networks +cond-mat/0212631 +cond-mat/0212633 Strongly Correlated Electrons +cond-mat/0212634 +cond-mat/0212636 Statistical Mechanics +cond-mat/0212639 Soft Condensed Matter +cond-mat/0212643 Superconductivity +cond-mat/0212644 Strongly Correlated Electrons +cond-mat/0212649 Superconductivity +cs/0103009 Programming Languages +cs/0103016 Networking and Internet Architecture +cs/0104008 Databases +cs/0109004 Distributed, Parallel, and Cluster Computing +cs/0201026 Computational Engineering, Finance, and Science +cs/0208013 Databases +cs/0208015 Databases +cs/0208021 Distributed, Parallel, and Cluster Computing +gr-qc/0101007 +gr-qc/0101008 +gr-qc/0101010 +gr-qc/0101013 +gr-qc/0101014 +gr-qc/0101015 +gr-qc/0101016 +gr-qc/0101019 +gr-qc/0101020 +gr-qc/0101021 +gr-qc/0101023 +gr-qc/0101031 +gr-qc/0101033 +gr-qc/0101039 +gr-qc/0101045 +gr-qc/0101049 +gr-qc/0101052 +gr-qc/0101055 +gr-qc/0101057 +gr-qc/0101062 +gr-qc/0101064 +gr-qc/0101065 +gr-qc/0101071 +gr-qc/0101073 +gr-qc/0101074 +gr-qc/0101076 +gr-qc/0101077 +gr-qc/0101093 +gr-qc/0101094 +gr-qc/0101105 +gr-qc/0101106 +gr-qc/0101107 +gr-qc/0101113 +gr-qc/0101115 +gr-qc/0101117 +gr-qc/0101118 +gr-qc/0101119 +gr-qc/0101123 +gr-qc/0101125 +gr-qc/0101126 +gr-qc/0102004 +gr-qc/0102006 +gr-qc/0102010 +gr-qc/0102012 +gr-qc/0102013 +gr-qc/0102018 +gr-qc/0102019 +gr-qc/0102022 +gr-qc/0102023 +gr-qc/0102025 +gr-qc/0102026 +gr-qc/0102027 +gr-qc/0102032 +gr-qc/0102033 +gr-qc/0102038 +gr-qc/0102040 +gr-qc/0102041 +gr-qc/0102042 +gr-qc/0102047 +gr-qc/0102048 +gr-qc/0102060 +gr-qc/0102062 +gr-qc/0102064 +gr-qc/0102067 +gr-qc/0102070 +gr-qc/0102072 +gr-qc/0102077 +gr-qc/0102080 +gr-qc/0102082 +gr-qc/0102083 +gr-qc/0102084 +gr-qc/0102092 +gr-qc/0102093 +gr-qc/0102096 +gr-qc/0102098 +gr-qc/0102099 +gr-qc/0102102 +gr-qc/0102109 +gr-qc/0102112 +gr-qc/0103004 +gr-qc/0103006 +gr-qc/0103007 +gr-qc/0103008 +gr-qc/0103011 +gr-qc/0103014 +gr-qc/0103015 +gr-qc/0103016 +gr-qc/0103017 +gr-qc/0103019 +gr-qc/0103024 +gr-qc/0103026 +gr-qc/0103030 +gr-qc/0103032 +gr-qc/0103035 +gr-qc/0103038 +gr-qc/0103040 +gr-qc/0103041 +gr-qc/0103042 +gr-qc/0103048 +gr-qc/0103050 +gr-qc/0103052 +gr-qc/0103054 +gr-qc/0103057 +gr-qc/0103058 +gr-qc/0103059 +gr-qc/0103061 +gr-qc/0103062 +gr-qc/0103065 +gr-qc/0103069 +gr-qc/0103070 +gr-qc/0103072 +gr-qc/0103075 +gr-qc/0103078 +gr-qc/0103080 +gr-qc/0103089 +gr-qc/0103091 +gr-qc/0103093 +gr-qc/0103094 +gr-qc/0103096 +gr-qc/0103102 +gr-qc/0103105 +gr-qc/0103106 +gr-qc/0103107 +gr-qc/0104002 +gr-qc/0104007 +gr-qc/0104011 +gr-qc/0104014 +gr-qc/0104015 +gr-qc/0104021 +gr-qc/0104024 +gr-qc/0104032 +gr-qc/0104035 +gr-qc/0104038 +gr-qc/0104041 +gr-qc/0104042 +gr-qc/0104044 +gr-qc/0104045 +gr-qc/0104049 +gr-qc/0104050 +gr-qc/0104051 +gr-qc/0104052 +gr-qc/0104053 +gr-qc/0104054 +gr-qc/0104058 +gr-qc/0104061 +gr-qc/0104067 +gr-qc/0104068 +gr-qc/0104072 +gr-qc/0104076 +gr-qc/0104077 +gr-qc/0104079 +gr-qc/0104082 +gr-qc/0104087 +gr-qc/0104088 +gr-qc/0104090 +gr-qc/0104093 +gr-qc/0104099 +gr-qc/0104100 +gr-qc/0104101 +gr-qc/0104102 +gr-qc/0105001 +gr-qc/0105008 +gr-qc/0105009 +gr-qc/0105011 +gr-qc/0105012 +gr-qc/0105016 +gr-qc/0105017 +gr-qc/0105018 +gr-qc/0105019 +gr-qc/0105020 +gr-qc/0105026 +gr-qc/0105030 +gr-qc/0105034 +gr-qc/0105040 +gr-qc/0105042 +gr-qc/0105045 +gr-qc/0105047 +gr-qc/0105048 +gr-qc/0105049 +gr-qc/0105056 +gr-qc/0105058 +gr-qc/0105063 +gr-qc/0105067 +gr-qc/0105069 +gr-qc/0105072 +gr-qc/0105073 +gr-qc/0105075 +gr-qc/0105082 +gr-qc/0105083 +gr-qc/0105085 +gr-qc/0105092 +gr-qc/0105093 +gr-qc/0105100 +gr-qc/0105103 +gr-qc/0105109 +gr-qc/0105110 +gr-qc/0105112 +gr-qc/0105118 +gr-qc/0105121 +gr-qc/0106016 +gr-qc/0106022 +gr-qc/0106032 +gr-qc/0106034 +gr-qc/0106038 +gr-qc/0106039 +gr-qc/0106040 +gr-qc/0106042 +gr-qc/0106048 +gr-qc/0106049 +gr-qc/0106050 +gr-qc/0106061 +gr-qc/0106062 +gr-qc/0106071 +gr-qc/0106083 +gr-qc/0106084 +gr-qc/0106086 +gr-qc/0106088 +gr-qc/0106090 +gr-qc/0106095 +gr-qc/0107003 +gr-qc/0107005 +gr-qc/0107007 +gr-qc/0107008 +gr-qc/0107010 +gr-qc/0107011 +gr-qc/0107018 +gr-qc/0107019 +gr-qc/0107020 +gr-qc/0107021 +gr-qc/0107024 +gr-qc/0107028 +gr-qc/0107029 +gr-qc/0107030 +gr-qc/0107031 +gr-qc/0107033 +gr-qc/0107036 +gr-qc/0107037 +gr-qc/0107040 +gr-qc/0107041 +gr-qc/0107042 +gr-qc/0107046 +gr-qc/0107051 +gr-qc/0107053 +gr-qc/0107056 +gr-qc/0107057 +gr-qc/0107060 +gr-qc/0107061 +gr-qc/0107062 +gr-qc/0107063 +gr-qc/0107064 +gr-qc/0107065 +gr-qc/0107073 +gr-qc/0107075 +gr-qc/0107076 +gr-qc/0107077 +gr-qc/0107079 +gr-qc/0107080 +gr-qc/0107081 +gr-qc/0107082 +gr-qc/0107084 +gr-qc/0107085 +gr-qc/0107086 +gr-qc/0107088 +gr-qc/0107091 +gr-qc/0107092 +gr-qc/0107094 +gr-qc/0107098 +gr-qc/0107102 +gr-qc/0107104 +gr-qc/0108003 +gr-qc/0108004 +gr-qc/0108006 +gr-qc/0108008 +gr-qc/0108011 +gr-qc/0108012 +gr-qc/0108014 +gr-qc/0108015 +gr-qc/0108016 +gr-qc/0108018 +gr-qc/0108019 +gr-qc/0108020 +gr-qc/0108022 +gr-qc/0108024 +gr-qc/0108027 +gr-qc/0108033 +gr-qc/0108034 +gr-qc/0108039 +gr-qc/0108041 +gr-qc/0108048 +gr-qc/0108049 +gr-qc/0108051 +gr-qc/0108053 +gr-qc/0108058 +gr-qc/0108060 +gr-qc/0108065 +gr-qc/0108069 +gr-qc/0108072 +gr-qc/0108075 +gr-qc/0108076 +gr-qc/0108079 +gr-qc/0108080 +gr-qc/0108081 +gr-qc/0108082 +gr-qc/0109002 +gr-qc/0109003 +gr-qc/0109006 +gr-qc/0109012 +gr-qc/0109016 +gr-qc/0109018 +gr-qc/0109020 +gr-qc/0109021 +gr-qc/0109025 +gr-qc/0109026 +gr-qc/0109029 +gr-qc/0109032 +gr-qc/0109036 +gr-qc/0109037 +gr-qc/0109038 +gr-qc/0109039 +gr-qc/0109040 +gr-qc/0109041 +gr-qc/0109042 +gr-qc/0109043 +gr-qc/0109044 +gr-qc/0109046 +gr-qc/0109047 +gr-qc/0109048 +gr-qc/0109051 +gr-qc/0109052 +gr-qc/0109056 +gr-qc/0109057 +gr-qc/0109061 +gr-qc/0109064 +gr-qc/0109065 +gr-qc/0109068 +gr-qc/0109071 +gr-qc/0109073 +gr-qc/0109074 +gr-qc/0109077 +gr-qc/0109080 +gr-qc/0109084 +gr-qc/0109087 +gr-qc/0109088 +gr-qc/0109090 +gr-qc/0109092 +gr-qc/0109093 +gr-qc/0109095 +gr-qc/0110004 +gr-qc/0110006 +gr-qc/0110009 +gr-qc/0110011 +gr-qc/0110012 +gr-qc/0110016 +gr-qc/0110017 +gr-qc/0110018 +gr-qc/0110019 +gr-qc/0110020 +gr-qc/0110021 +gr-qc/0110024 +gr-qc/0110025 +gr-qc/0110026 +gr-qc/0110029 +gr-qc/0110031 +gr-qc/0110032 +gr-qc/0110036 +gr-qc/0110038 +gr-qc/0110039 +gr-qc/0110041 +gr-qc/0110044 +gr-qc/0110045 +gr-qc/0110047 +gr-qc/0110048 +gr-qc/0110049 +gr-qc/0110050 +gr-qc/0110051 +gr-qc/0110053 +gr-qc/0110059 +gr-qc/0110067 +gr-qc/0110071 +gr-qc/0110072 +gr-qc/0110073 +gr-qc/0110074 +gr-qc/0110076 +gr-qc/0110078 +gr-qc/0110080 +gr-qc/0110084 +gr-qc/0110085 +gr-qc/0110086 +gr-qc/0110087 +gr-qc/0110088 +gr-qc/0110090 +gr-qc/0110093 +gr-qc/0110094 +gr-qc/0110098 +gr-qc/0110100 +gr-qc/0110103 +gr-qc/0110106 +gr-qc/0110107 +gr-qc/0110108 +gr-qc/0110109 +gr-qc/0110112 +gr-qc/0110121 +gr-qc/0110124 +gr-qc/0111002 +gr-qc/0111005 +gr-qc/0111006 +gr-qc/0111007 +gr-qc/0111008 +gr-qc/0111012 +gr-qc/0111013 +gr-qc/0111019 +gr-qc/0111022 +gr-qc/0111023 +gr-qc/0111024 +gr-qc/0111025 +gr-qc/0111026 +gr-qc/0111027 +gr-qc/0111028 +gr-qc/0111030 +gr-qc/0111031 +gr-qc/0111033 +gr-qc/0111034 +gr-qc/0111036 +gr-qc/0111039 +gr-qc/0111041 +gr-qc/0111042 +gr-qc/0111046 +gr-qc/0111049 +gr-qc/0111051 +gr-qc/0111053 +gr-qc/0111055 +gr-qc/0111056 +gr-qc/0111059 +gr-qc/0111060 +gr-qc/0111063 +gr-qc/0111064 +gr-qc/0111068 +gr-qc/0111069 +gr-qc/0111077 +gr-qc/0111079 +gr-qc/0111082 +gr-qc/0111085 +gr-qc/0111088 +gr-qc/0111089 +gr-qc/0111090 +gr-qc/0111092 +gr-qc/0111093 +gr-qc/0111095 +gr-qc/0111097 +gr-qc/0111105 +gr-qc/0111108 +gr-qc/0111112 +gr-qc/0112003 +gr-qc/0112005 +gr-qc/0112006 +gr-qc/0112008 +gr-qc/0112009 +gr-qc/0112013 +gr-qc/0112016 +gr-qc/0112017 +gr-qc/0112018 +gr-qc/0112022 +gr-qc/0112024 +gr-qc/0112026 +gr-qc/0112030 +gr-qc/0112031 +gr-qc/0112032 +gr-qc/0112035 +gr-qc/0112042 +gr-qc/0112043 +gr-qc/0112044 +gr-qc/0112046 +gr-qc/0112048 +gr-qc/0112049 +gr-qc/0112052 +gr-qc/0112053 +gr-qc/0112057 +gr-qc/0112059 +gr-qc/0112060 +gr-qc/0112061 +gr-qc/0112062 +gr-qc/0112067 +gr-qc/0112079 +gr-qc/0201001 +gr-qc/0201003 +gr-qc/0201006 +gr-qc/0201007 +gr-qc/0201008 +gr-qc/0201016 +gr-qc/0201017 +gr-qc/0201020 +gr-qc/0201021 +gr-qc/0201024 +gr-qc/0201034 +gr-qc/0201040 +gr-qc/0201047 +gr-qc/0201049 +gr-qc/0201051 +gr-qc/0201052 +gr-qc/0201055 +gr-qc/0201057 +gr-qc/0201062 +gr-qc/0201063 +gr-qc/0201070 +gr-qc/0201076 +gr-qc/0201077 +gr-qc/0201079 +gr-qc/0201082 +gr-qc/0201087 +gr-qc/0201088 +gr-qc/0201090 +gr-qc/0201092 +gr-qc/0201093 +gr-qc/0201094 +gr-qc/0201098 +gr-qc/0202003 +gr-qc/0202004 +gr-qc/0202010 +gr-qc/0202011 +gr-qc/0202018 +gr-qc/0202024 +gr-qc/0202025 +gr-qc/0202026 +gr-qc/0202031 +gr-qc/0202033 +gr-qc/0202034 +gr-qc/0202036 +gr-qc/0202038 +gr-qc/0202039 +gr-qc/0202041 +gr-qc/0202042 +gr-qc/0202046 +gr-qc/0202047 +gr-qc/0202050 +gr-qc/0202051 +gr-qc/0202054 +gr-qc/0202056 +gr-qc/0202059 +gr-qc/0202060 +gr-qc/0202064 +gr-qc/0202067 +gr-qc/0202071 +gr-qc/0202073 +gr-qc/0202076 +gr-qc/0202077 +gr-qc/0202083 +gr-qc/0202087 +gr-qc/0202089 +gr-qc/0202090 +gr-qc/0202091 +gr-qc/0202092 +gr-qc/0202093 +gr-qc/0202096 +gr-qc/0202102 +gr-qc/0202103 +gr-qc/0202105 +gr-qc/0203003 +gr-qc/0203006 +gr-qc/0203010 +gr-qc/0203011 +gr-qc/0203020 +gr-qc/0203022 +gr-qc/0203023 +gr-qc/0203026 +gr-qc/0203030 +gr-qc/0203034 +gr-qc/0203037 +gr-qc/0203038 +gr-qc/0203039 +gr-qc/0203041 +gr-qc/0203042 +gr-qc/0203046 +gr-qc/0203047 +gr-qc/0203048 +gr-qc/0203053 +gr-qc/0203055 +gr-qc/0203056 +gr-qc/0203057 +gr-qc/0203059 +gr-qc/0203061 +gr-qc/0203063 +gr-qc/0203064 +gr-qc/0203069 +gr-qc/0203070 +gr-qc/0203073 +gr-qc/0203074 +gr-qc/0203075 +gr-qc/0203080 +gr-qc/0203081 +gr-qc/0203085 +gr-qc/0203086 +gr-qc/0203087 +gr-qc/0203088 +gr-qc/0203090 +gr-qc/0203093 +gr-qc/0203097 +gr-qc/0203098 +gr-qc/0203102 +gr-qc/0203105 +gr-qc/0203106 +gr-qc/0204002 +gr-qc/0204006 +gr-qc/0204009 +gr-qc/0204011 +gr-qc/0204015 +gr-qc/0204018 +gr-qc/0204020 +gr-qc/0204027 +gr-qc/0204028 +gr-qc/0204029 +gr-qc/0204030 +gr-qc/0204031 +gr-qc/0204032 +gr-qc/0204034 +gr-qc/0204035 +gr-qc/0204036 +gr-qc/0204039 +gr-qc/0204040 +gr-qc/0204041 +gr-qc/0204042 +gr-qc/0204045 +gr-qc/0204046 +gr-qc/0204047 +gr-qc/0204048 +gr-qc/0204051 +gr-qc/0204054 +gr-qc/0204056 +gr-qc/0204059 +gr-qc/0204062 +gr-qc/0204065 +gr-qc/0204067 +gr-qc/0204068 +gr-qc/0204071 +gr-qc/0204072 +gr-qc/0204073 +gr-qc/0204079 +gr-qc/0204080 +gr-qc/0204082 +gr-qc/0204085 +gr-qc/0204088 +gr-qc/0204093 +gr-qc/0204094 +gr-qc/0205003 +gr-qc/0205004 +gr-qc/0205005 +gr-qc/0205007 +gr-qc/0205008 +gr-qc/0205009 +gr-qc/0205011 +gr-qc/0205014 +gr-qc/0205015 +gr-qc/0205016 +gr-qc/0205018 +gr-qc/0205019 +gr-qc/0205021 +gr-qc/0205022 +gr-qc/0205023 +gr-qc/0205027 +gr-qc/0205028 +gr-qc/0205031 +gr-qc/0205032 +gr-qc/0205033 +gr-qc/0205034 +gr-qc/0205037 +gr-qc/0205038 +gr-qc/0205041 +gr-qc/0205043 +gr-qc/0205047 +gr-qc/0205050 +gr-qc/0205055 +gr-qc/0205059 +gr-qc/0205060 +gr-qc/0205064 +gr-qc/0205071 +gr-qc/0205073 +gr-qc/0205078 +gr-qc/0205085 +gr-qc/0205086 +gr-qc/0205088 +gr-qc/0205094 +gr-qc/0205097 +gr-qc/0205098 +gr-qc/0205099 +gr-qc/0205102 +gr-qc/0205103 +gr-qc/0205104 +gr-qc/0205105 +gr-qc/0205106 +gr-qc/0205108 +gr-qc/0205115 +gr-qc/0205118 +gr-qc/0205124 +gr-qc/0205126 +gr-qc/0205130 +gr-qc/0206010 +gr-qc/0206012 +gr-qc/0206013 +gr-qc/0206014 +gr-qc/0206016 +gr-qc/0206017 +gr-qc/0206018 +gr-qc/0206019 +gr-qc/0206021 +gr-qc/0206027 +gr-qc/0206028 +gr-qc/0206033 +gr-qc/0206035 +gr-qc/0206036 +gr-qc/0206038 +gr-qc/0206042 +gr-qc/0206046 +gr-qc/0206048 +gr-qc/0206049 +gr-qc/0206051 +gr-qc/0206055 +gr-qc/0206059 +gr-qc/0206060 +gr-qc/0206061 +gr-qc/0206066 +gr-qc/0206067 +gr-qc/0206075 +gr-qc/0206077 +gr-qc/0206080 +gr-qc/0206081 +gr-qc/0206082 +gr-qc/0206085 +gr-qc/0206086 +gr-qc/0207003 +gr-qc/0207008 +gr-qc/0207010 +gr-qc/0207012 +gr-qc/0207013 +gr-qc/0207019 +gr-qc/0207020 +gr-qc/0207021 +gr-qc/0207024 +gr-qc/0207027 +gr-qc/0207028 +gr-qc/0207029 +gr-qc/0207030 +gr-qc/0207038 +gr-qc/0207040 +gr-qc/0207042 +gr-qc/0207045 +gr-qc/0207048 +gr-qc/0207054 +gr-qc/0207055 +gr-qc/0207057 +gr-qc/0207058 +gr-qc/0207061 +gr-qc/0207062 +gr-qc/0207064 +gr-qc/0207072 +gr-qc/0207077 +gr-qc/0207078 +gr-qc/0207081 +gr-qc/0207083 +gr-qc/0207084 +gr-qc/0207086 +gr-qc/0207090 +gr-qc/0207092 +gr-qc/0207094 +gr-qc/0207095 +gr-qc/0207098 +gr-qc/0207102 +gr-qc/0207103 +gr-qc/0207113 +gr-qc/0207120 +gr-qc/0207124 +gr-qc/0207125 +gr-qc/0208001 +gr-qc/0208002 +gr-qc/0208003 +gr-qc/0208011 +gr-qc/0208015 +gr-qc/0208017 +gr-qc/0208019 +gr-qc/0208020 +gr-qc/0208022 +gr-qc/0208026 +gr-qc/0208029 +gr-qc/0208033 +gr-qc/0208034 +gr-qc/0208035 +gr-qc/0208036 +gr-qc/0208037 +gr-qc/0208040 +gr-qc/0208042 +gr-qc/0208044 +gr-qc/0208045 +gr-qc/0208048 +gr-qc/0208049 +gr-qc/0208050 +gr-qc/0208051 +gr-qc/0208052 +gr-qc/0208061 +gr-qc/0208063 +gr-qc/0208065 +gr-qc/0208066 +gr-qc/0208069 +gr-qc/0208074 +gr-qc/0208075 +gr-qc/0208076 +gr-qc/0208078 +gr-qc/0208081 +gr-qc/0208083 +gr-qc/0208089 +gr-qc/0208090 +gr-qc/0208091 +gr-qc/0209006 +gr-qc/0209012 +gr-qc/0209016 +gr-qc/0209020 +gr-qc/0209021 +gr-qc/0209022 +gr-qc/0209028 +gr-qc/0209029 +gr-qc/0209030 +gr-qc/0209036 +gr-qc/0209039 +gr-qc/0209044 +gr-qc/0209051 +gr-qc/0209053 +gr-qc/0209054 +gr-qc/0209056 +gr-qc/0209057 +gr-qc/0209062 +gr-qc/0209063 +gr-qc/0209064 +gr-qc/0209066 +gr-qc/0209067 +gr-qc/0209070 +gr-qc/0209072 +gr-qc/0209075 +gr-qc/0209076 +gr-qc/0209083 +gr-qc/0209086 +gr-qc/0209087 +gr-qc/0209088 +gr-qc/0209093 +gr-qc/0209094 +gr-qc/0209097 +gr-qc/0209101 +gr-qc/0209102 +gr-qc/0209103 +gr-qc/0209104 +gr-qc/0209107 +gr-qc/0209112 +gr-qc/0209114 +gr-qc/0209115 +gr-qc/0210002 +gr-qc/0210003 +gr-qc/0210004 +gr-qc/0210007 +gr-qc/0210008 +gr-qc/0210016 +gr-qc/0210019 +gr-qc/0210024 +gr-qc/0210027 +gr-qc/0210028 +gr-qc/0210031 +gr-qc/0210034 +gr-qc/0210042 +gr-qc/0210047 +gr-qc/0210048 +gr-qc/0210049 +gr-qc/0210052 +gr-qc/0210061 +gr-qc/0210063 +gr-qc/0210069 +gr-qc/0210071 +gr-qc/0210073 +gr-qc/0210074 +gr-qc/0210078 +gr-qc/0210081 +gr-qc/0210087 +gr-qc/0210095 +gr-qc/0210099 +gr-qc/0210102 +gr-qc/0210104 +gr-qc/0210105 +gr-qc/0210110 +gr-qc/0211001 +gr-qc/0211004 +gr-qc/0211005 +gr-qc/0211006 +gr-qc/0211010 +gr-qc/0211014 +gr-qc/0211015 +gr-qc/0211016 +gr-qc/0211020 +gr-qc/0211024 +gr-qc/0211026 +gr-qc/0211027 +gr-qc/0211033 +gr-qc/0211035 +gr-qc/0211036 +gr-qc/0211038 +gr-qc/0211041 +gr-qc/0211044 +gr-qc/0211045 +gr-qc/0211051 +gr-qc/0211053 +gr-qc/0211055 +gr-qc/0211056 +gr-qc/0211057 +gr-qc/0211058 +gr-qc/0211061 +gr-qc/0211064 +gr-qc/0211067 +gr-qc/0211068 +gr-qc/0211071 +gr-qc/0211074 +gr-qc/0211075 +gr-qc/0211076 +gr-qc/0211081 +gr-qc/0211084 +gr-qc/0211093 +gr-qc/0211099 +gr-qc/0211101 +gr-qc/0211102 +gr-qc/0212001 +gr-qc/0212008 +gr-qc/0212011 +gr-qc/0212015 +gr-qc/0212017 +gr-qc/0212018 +gr-qc/0212022 +gr-qc/0212028 +gr-qc/0212031 +gr-qc/0212032 +gr-qc/0212033 +gr-qc/0212035 +gr-qc/0212036 +gr-qc/0212044 +gr-qc/0212045 +gr-qc/0212046 +gr-qc/0212047 +gr-qc/0212048 +gr-qc/0212050 +gr-qc/0212066 +gr-qc/0212067 +gr-qc/0212069 +gr-qc/0212074 +gr-qc/0212080 +gr-qc/0212081 +gr-qc/0212083 +gr-qc/0212086 +gr-qc/0212087 +gr-qc/0212094 +gr-qc/0212095 +gr-qc/0212097 +gr-qc/0212101 +gr-qc/0212103 +gr-qc/0212104 +gr-qc/0212108 +gr-qc/0212110 +gr-qc/0212112 +gr-qc/0212113 +gr-qc/0212114 +gr-qc/0212119 +gr-qc/0212120 +gr-qc/0212123 +gr-qc/0212124 +gr-qc/0212127 +hep-ex/0101001 Experiment +hep-ex/0101002 Experiment +hep-ex/0101003 Experiment +hep-ex/0101005 Experiment +hep-ex/0101011 Experiment +hep-ex/0101012 Experiment +hep-ex/0101017 Experiment +hep-ex/0101020 Experiment +hep-ex/0101024 Experiment +hep-ex/0101040 Experiment +hep-ex/0101049 Experiment +hep-ex/0101056 Experiment +hep-ex/0102014 Experiment +hep-ex/0102015 Experiment +hep-ex/0102020 Experiment +hep-ex/0102022 Experiment +hep-ex/0102032 Experiment +hep-ex/0102047 Experiment +hep-ex/0103007 Experiment +hep-ex/0103010 Experiment +hep-ex/0103024 Experiment +hep-ex/0104003 Experiment +hep-ex/0104012 Experiment +hep-ex/0104013 Experiment +hep-ex/0104039 Experiment +hep-ex/0105009 Experiment +hep-ex/0105027 Experiment +hep-ex/0105053 Experiment +hep-ex/0106042 Experiment +hep-ex/0106096 Experiment +hep-ex/0107001 Experiment +hep-ex/0109010 Experiment +hep-ex/0109014 Experiment +hep-ex/0109015 Experiment +hep-ex/0109032 Experiment +hep-ex/0109042 Experiment +hep-ex/0110008 Experiment +hep-ex/0110018 Experiment +hep-ex/0110025 Experiment +hep-ex/0110038 Experiment +hep-ex/0110052 Experiment +hep-ex/0110069 Experiment +hep-ex/0110077 Experiment +hep-ex/0111003 Experiment +hep-ex/0111018 Experiment +hep-ex/0111038 Experiment +hep-ex/0111050 Experiment +hep-ex/0111052 Experiment +hep-ex/0111054 Experiment +hep-ex/0111058 Experiment +hep-ex/0111061 Experiment +hep-ex/0111070 Experiment +hep-ex/0111079 Experiment +hep-ex/0111083 Experiment +hep-ex/0111084 Experiment +hep-ex/0112002 Experiment +hep-ex/0112017 Experiment +hep-ex/0112038 Experiment +hep-ex/0201019 Experiment +hep-ex/0201028 Experiment +hep-ex/0201030 Experiment +hep-ex/0202013 Experiment +hep-ex/0202022 Experiment +hep-ex/0202045 Experiment +hep-ex/0202046 Experiment +hep-ex/0203009 Experiment +hep-ex/0203014 Experiment +hep-ex/0203033 Experiment +hep-ex/0204021 Experiment +hep-ex/0204033 Experiment +hep-ex/0205001 Experiment +hep-ex/0205069 Experiment +hep-ex/0206012 Experiment +hep-ex/0206018 Experiment +hep-ex/0206041 Experiment +hep-ex/0206046 Experiment +hep-ex/0206055 Experiment +hep-ex/0206071 Experiment +hep-ex/0207001 Experiment +hep-ex/0207030 Experiment +hep-ex/0207036 Experiment +hep-ex/0207043 Experiment +hep-ex/0207059 Experiment +hep-ex/0207093 Experiment +hep-ex/0208008 Experiment +hep-ex/0208011 Experiment +hep-ex/0208012 Experiment +hep-ex/0208024 Experiment +hep-ex/0208026 Experiment +hep-ex/0208045 Experiment +hep-ex/0209004 Experiment +hep-ex/0209005 Experiment +hep-ex/0209009 Experiment +hep-ex/0209014 Experiment +hep-ex/0209027 Experiment +hep-ex/0209038 Experiment +hep-ex/0209044 Experiment +hep-ex/0209045 Experiment +hep-ex/0209049 Experiment +hep-ex/0209055 Experiment +hep-ex/0209059 Experiment +hep-ex/0209064 Experiment +hep-ex/0209067 Experiment +hep-ex/0209070 Experiment +hep-ex/0209073 Experiment +hep-ex/0209074 Experiment +hep-ex/0209077 Experiment +hep-ex/0209079 Experiment +hep-ex/0209081 Experiment +hep-ex/0209082 Experiment +hep-ex/0210002 Experiment +hep-ex/0210011 Experiment +hep-ex/0210017 Experiment +hep-ex/0210021 Experiment +hep-ex/0210022 Experiment +hep-ex/0210025 Experiment +hep-ex/0210027 Experiment +hep-ex/0210032 Experiment +hep-ex/0210033 Experiment +hep-ex/0210036 Experiment +hep-ex/0210037 Experiment +hep-ex/0210038 Experiment +hep-ex/0210044 Experiment +hep-ex/0210046 Experiment +hep-ex/0210055 Experiment +hep-ex/0210059 Experiment +hep-ex/0210061 Experiment +hep-ex/0211008 Experiment +hep-ex/0211015 Experiment +hep-ex/0211016 Experiment +hep-ex/0211017 Experiment +hep-ex/0211019 Experiment +hep-ex/0211026 Experiment +hep-ex/0211027 Experiment +hep-ex/0211034 Experiment +hep-ex/0211038 Experiment +hep-ex/0211039 Experiment +hep-ex/0211043 Experiment +hep-ex/0211045 Experiment +hep-ex/0211046 Experiment +hep-ex/0211050 Experiment +hep-ex/0211054 Experiment +hep-ex/0211059 Experiment +hep-ex/0211068 Experiment +hep-ex/0212013 Experiment +hep-ex/0212015 Experiment +hep-ex/0212016 Experiment +hep-ex/0212018 Experiment +hep-ex/0212019 Experiment +hep-ex/0212023 Experiment +hep-ex/0212025 Experiment +hep-ex/0212026 Experiment +hep-ex/0212028 Experiment +hep-ex/0212031 Experiment +hep-ex/0212032 Experiment +hep-ex/0212037 Experiment +hep-ex/0212038 Experiment +hep-ex/0212042 Experiment +hep-ex/0212043 Experiment +hep-ex/0212046 Experiment +hep-lat/0101002 Lattice +hep-lat/0101005 Lattice +hep-lat/0101006 Lattice +hep-lat/0101009 Lattice +hep-lat/0101011 Lattice +hep-lat/0101012 Lattice +hep-lat/0101014 Lattice +hep-lat/0101015 Lattice +hep-lat/0102004 Lattice +hep-lat/0102005 Lattice +hep-lat/0102007 Lattice +hep-lat/0102010 Lattice +hep-lat/0102012 Lattice +hep-lat/0103002 Lattice +hep-lat/0103007 Lattice +hep-lat/0103010 Lattice +hep-lat/0103011 Lattice +hep-lat/0103013 Lattice +hep-lat/0103014 Lattice +hep-lat/0103017 Lattice +hep-lat/0103019 Lattice +hep-lat/0103022 Lattice +hep-lat/0103024 Lattice +hep-lat/0103025 Lattice +hep-lat/0103029 Lattice +hep-lat/0103032 Lattice +hep-lat/0104008 Lattice +hep-lat/0104011 Lattice +hep-lat/0104015 Lattice +hep-lat/0105001 Lattice +hep-lat/0105006 Lattice +hep-lat/0105008 Lattice +hep-lat/0105016 Lattice +hep-lat/0105018 Lattice +hep-lat/0105021 Lattice +hep-lat/0105024 Lattice +hep-lat/0105025 Lattice +hep-lat/0105028 Lattice +hep-lat/0105029 Lattice +hep-lat/0105032 Lattice +hep-lat/0106001 Lattice +hep-lat/0106002 Lattice +hep-lat/0106006 Lattice +hep-lat/0106009 Lattice +hep-lat/0106013 Lattice +hep-lat/0106015 Lattice +hep-lat/0106018 Lattice +hep-lat/0106021 Lattice +hep-lat/0107001 Lattice +hep-lat/0107004 Lattice +hep-lat/0107005 Lattice +hep-lat/0107007 Lattice +hep-lat/0107008 Lattice +hep-lat/0107012 Lattice +hep-lat/0107013 Lattice +hep-lat/0107015 Lattice +hep-lat/0107019 Lattice +hep-lat/0107020 Lattice +hep-lat/0108004 Lattice +hep-lat/0108005 Lattice +hep-lat/0108009 Lattice +hep-lat/0108012 Lattice +hep-lat/0108015 Lattice +hep-lat/0108017 Lattice +hep-lat/0108021 Lattice +hep-lat/0108025 Lattice +hep-lat/0109001 Lattice +hep-lat/0109002 Lattice +hep-lat/0109011 Lattice +hep-lat/0109017 Lattice +hep-lat/0109019 Lattice +hep-lat/0109020 Lattice +hep-lat/0109022 Lattice +hep-lat/0110003 Lattice +hep-lat/0110011 Lattice +hep-lat/0110013 Lattice +hep-lat/0110019 Lattice +hep-lat/0110021 Lattice +hep-lat/0110028 Lattice +hep-lat/0110032 Lattice +hep-lat/0110060 Lattice +hep-lat/0110065 Lattice +hep-lat/0110073 Lattice +hep-lat/0110079 Lattice +hep-lat/0110091 Lattice +hep-lat/0110099 Lattice +hep-lat/0110117 Lattice +hep-lat/0110131 Lattice +hep-lat/0110134 Lattice +hep-lat/0110137 Lattice +hep-lat/0110147 Lattice +hep-lat/0110154 Lattice +hep-lat/0110157 Lattice +hep-lat/0110185 Lattice +hep-lat/0110190 Lattice +hep-lat/0110194 Lattice +hep-lat/0110200 Lattice +hep-lat/0110203 Lattice +hep-lat/0110208 Lattice +hep-lat/0110211 Lattice +hep-lat/0110212 Lattice +hep-lat/0110213 Lattice +hep-lat/0110215 Lattice +hep-lat/0110224 Lattice +hep-lat/0111003 Lattice +hep-lat/0111015 Lattice +hep-lat/0111020 Lattice +hep-lat/0111026 Lattice +hep-lat/0111028 Lattice +hep-lat/0111037 Lattice +hep-lat/0111038 Lattice +hep-lat/0111039 Lattice +hep-lat/0111047 Lattice +hep-lat/0111054 Lattice +hep-lat/0111059 Lattice +hep-lat/0111062 Lattice +hep-lat/0112006 Lattice +hep-lat/0112009 Lattice +hep-lat/0112014 Lattice +hep-lat/0112015 Lattice +hep-lat/0112019 Lattice +hep-lat/0112021 Lattice +hep-lat/0112022 Lattice +hep-lat/0112023 Lattice +hep-lat/0112026 Lattice +hep-lat/0112028 Lattice +hep-lat/0112033 Lattice +hep-lat/0112035 Lattice +hep-lat/0112039 Lattice +hep-lat/0112040 Lattice +hep-lat/0112043 Lattice +hep-lat/0112045 Lattice +hep-lat/0112047 Lattice +hep-lat/0112048 Lattice +hep-lat/0112049 Lattice +hep-lat/0112050 Lattice +hep-lat/0112052 Lattice +hep-lat/0201003 Lattice +hep-lat/0201007 Lattice +hep-lat/0201009 Lattice +hep-lat/0201010 Lattice +hep-lat/0201011 Lattice +hep-lat/0201013 Lattice +hep-lat/0201014 Lattice +hep-lat/0201015 Lattice +hep-lat/0201017 Lattice +hep-lat/0201019 Lattice +hep-lat/0202002 Lattice +hep-lat/0202004 Lattice +hep-lat/0202006 Lattice +hep-lat/0202007 Lattice +hep-lat/0202013 Lattice +hep-lat/0202014 Lattice +hep-lat/0202018 Lattice +hep-lat/0202019 Lattice +hep-lat/0202021 Lattice +hep-lat/0202024 Lattice +hep-lat/0202025 Lattice +hep-lat/0202026 Lattice +hep-lat/0202027 Lattice +hep-lat/0202028 Lattice +hep-lat/0202030 Lattice +hep-lat/0203002 Lattice +hep-lat/0203003 Lattice +hep-lat/0203006 Lattice +hep-lat/0203007 Lattice +hep-lat/0203009 Lattice +hep-lat/0203011 Lattice +hep-lat/0203012 Lattice +hep-lat/0203013 Lattice +hep-lat/0203014 Lattice +hep-lat/0203015 Lattice +hep-lat/0203017 Lattice +hep-lat/0203018 Lattice +hep-lat/0203020 Lattice +hep-lat/0203021 Lattice +hep-lat/0203024 Lattice +hep-lat/0203025 Lattice +hep-lat/0203026 Lattice +hep-lat/0203030 Lattice +hep-lat/0204001 Lattice +hep-lat/0204002 Lattice +hep-lat/0204003 Lattice +hep-lat/0204004 Lattice +hep-lat/0204008 Lattice +hep-lat/0204011 Lattice +hep-lat/0204012 Lattice +hep-lat/0204022 Lattice +hep-lat/0204023 Lattice +hep-lat/0204024 Lattice +hep-lat/0204029 Lattice +hep-lat/0205009 Lattice +hep-lat/0205015 Lattice +hep-lat/0205019 Lattice +hep-lat/0206002 Lattice +hep-lat/0206004 Lattice +hep-lat/0206005 Lattice +hep-lat/0206012 Lattice +hep-lat/0206013 Lattice +hep-lat/0206014 Lattice +hep-lat/0206017 Lattice +hep-lat/0206019 Lattice +hep-lat/0206020 Lattice +hep-lat/0206022 Lattice +hep-lat/0206023 Lattice +hep-lat/0206026 Lattice +hep-lat/0206027 Lattice +hep-lat/0206029 Lattice +hep-lat/0207001 Lattice +hep-lat/0207005 Lattice +hep-lat/0207006 Lattice +hep-lat/0207009 Lattice +hep-lat/0207010 Lattice +hep-lat/0207013 Lattice +hep-lat/0207014 Lattice +hep-lat/0207017 Lattice +hep-lat/0207018 Lattice +hep-lat/0207019 Lattice +hep-lat/0207022 Lattice +hep-lat/0208001 Lattice +hep-lat/0208002 Lattice +hep-lat/0208004 Lattice +hep-lat/0208006 Lattice +hep-lat/0208009 Lattice +hep-lat/0208010 Lattice +hep-lat/0208011 Lattice +hep-lat/0208012 Lattice +hep-lat/0208013 Lattice +hep-lat/0208014 Lattice +hep-lat/0208015 Lattice +hep-lat/0208016 Lattice +hep-lat/0208018 Lattice +hep-lat/0208019 Lattice +hep-lat/0208020 Lattice +hep-lat/0208021 Lattice +hep-lat/0208024 Lattice +hep-lat/0208026 Lattice +hep-lat/0208027 Lattice +hep-lat/0208028 Lattice +hep-lat/0208029 Lattice +hep-lat/0208030 Lattice +hep-lat/0208032 Lattice +hep-lat/0208033 Lattice +hep-lat/0208035 Lattice +hep-lat/0208036 Lattice +hep-lat/0208042 Lattice +hep-lat/0208043 Lattice +hep-lat/0208044 Lattice +hep-lat/0208046 Lattice +hep-lat/0208048 Lattice +hep-lat/0208049 Lattice +hep-lat/0208056 Lattice +hep-lat/0208057 Lattice +hep-lat/0208059 Lattice +hep-lat/0208060 Lattice +hep-lat/0208061 Lattice +hep-lat/0208062 Lattice +hep-lat/0208063 Lattice +hep-lat/0208067 Lattice +hep-lat/0208068 Lattice +hep-lat/0208069 Lattice +hep-lat/0208071 Lattice +hep-lat/0208072 Lattice +hep-lat/0208073 Lattice +hep-lat/0208074 Lattice +hep-lat/0208075 Lattice +hep-lat/0208076 Lattice +hep-lat/0208077 Lattice +hep-lat/0208079 Lattice +hep-lat/0208080 Lattice +hep-lat/0209001 Lattice +hep-lat/0209002 Lattice +hep-lat/0209003 Lattice +hep-lat/0209004 Lattice +hep-lat/0209005 Lattice +hep-lat/0209006 Lattice +hep-lat/0209007 Lattice +hep-lat/0209008 Lattice +hep-lat/0209009 Lattice +hep-lat/0209010 Lattice +hep-lat/0209012 Lattice +hep-lat/0209015 Lattice +hep-lat/0209016 Lattice +hep-lat/0209017 Lattice +hep-lat/0209018 Lattice +hep-lat/0209019 Lattice +hep-lat/0209021 Lattice +hep-lat/0209023 Lattice +hep-lat/0209025 Lattice +hep-lat/0209027 Lattice +hep-lat/0209029 Lattice +hep-lat/0209030 Lattice +hep-lat/0209032 Lattice +hep-lat/0209033 Lattice +hep-lat/0209034 Lattice +hep-lat/0209035 Lattice +hep-lat/0209040 Lattice +hep-lat/0209041 Lattice +hep-lat/0209042 Lattice +hep-lat/0209044 Lattice +hep-lat/0209045 Lattice +hep-lat/0209046 Lattice +hep-lat/0209047 Lattice +hep-lat/0209048 Lattice +hep-lat/0209049 Lattice +hep-lat/0209050 Lattice +hep-lat/0209051 Lattice +hep-lat/0209052 Lattice +hep-lat/0209055 Lattice +hep-lat/0209058 Lattice +hep-lat/0209059 Lattice +hep-lat/0209060 Lattice +hep-lat/0209062 Lattice +hep-lat/0209064 Lattice +hep-lat/0209067 Lattice +hep-lat/0209068 Lattice +hep-lat/0209070 Lattice +hep-lat/0209071 Lattice +hep-lat/0209072 Lattice +hep-lat/0209075 Lattice +hep-lat/0209077 Lattice +hep-lat/0209078 Lattice +hep-lat/0209081 Lattice +hep-lat/0209084 Lattice +hep-lat/0209085 Lattice +hep-lat/0209087 Lattice +hep-lat/0209090 Lattice +hep-lat/0209093 Lattice +hep-lat/0209094 Lattice +hep-lat/0209095 Lattice +hep-lat/0209096 Lattice +hep-lat/0209101 Lattice +hep-lat/0209102 Lattice +hep-lat/0209103 Lattice +hep-lat/0209104 Lattice +hep-lat/0209108 Lattice +hep-lat/0209109 Lattice +hep-lat/0209110 Lattice +hep-lat/0209112 Lattice +hep-lat/0209113 Lattice +hep-lat/0209114 Lattice +hep-lat/0209115 Lattice +hep-lat/0209119 Lattice +hep-lat/0209120 Lattice +hep-lat/0209123 Lattice +hep-lat/0209125 Lattice +hep-lat/0209126 Lattice +hep-lat/0209127 Lattice +hep-lat/0209130 Lattice +hep-lat/0209133 Lattice +hep-lat/0209134 Lattice +hep-lat/0209135 Lattice +hep-lat/0209138 Lattice +hep-lat/0209139 Lattice +hep-lat/0209140 Lattice +hep-lat/0209141 Lattice +hep-lat/0209143 Lattice +hep-lat/0209144 Lattice +hep-lat/0209146 Lattice +hep-lat/0209149 Lattice +hep-lat/0209150 Lattice +hep-lat/0209152 Lattice +hep-lat/0209158 Lattice +hep-lat/0209159 Lattice +hep-lat/0209164 Lattice +hep-lat/0209167 Lattice +hep-lat/0210001 Lattice +hep-lat/0210003 Lattice +hep-lat/0210006 Lattice +hep-lat/0210007 Lattice +hep-lat/0210009 Lattice +hep-lat/0210010 Lattice +hep-lat/0210013 Lattice +hep-lat/0210014 Lattice +hep-lat/0210015 Lattice +hep-lat/0210019 Lattice +hep-lat/0210021 Lattice +hep-lat/0210022 Lattice +hep-lat/0210023 Lattice +hep-lat/0210024 Lattice +hep-lat/0210025 Lattice +hep-lat/0210029 Lattice +hep-lat/0210031 Lattice +hep-lat/0210032 Lattice +hep-lat/0210035 Lattice +hep-lat/0210036 Lattice +hep-lat/0210038 Lattice +hep-lat/0210044 Lattice +hep-lat/0210046 Lattice +hep-lat/0210048 Lattice +hep-lat/0210051 Lattice +hep-lat/0210052 Lattice +hep-lat/0211002 Lattice +hep-lat/0211005 Lattice +hep-lat/0211007 Lattice +hep-lat/0211014 Lattice +hep-lat/0211015 Lattice +hep-lat/0211016 Lattice +hep-lat/0211018 Lattice +hep-lat/0211023 Lattice +hep-lat/0211025 Lattice +hep-lat/0211027 Lattice +hep-lat/0211035 Lattice +hep-lat/0211036 Lattice +hep-lat/0211037 Lattice +hep-lat/0211038 Lattice +hep-lat/0211039 Lattice +hep-lat/0211041 Lattice +hep-lat/0211042 Lattice +hep-lat/0212001 Lattice +hep-lat/0212004 Lattice +hep-lat/0212005 Lattice +hep-lat/0212006 Lattice +hep-lat/0212007 Lattice +hep-lat/0212008 Lattice +hep-lat/0212014 Lattice +hep-lat/0212018 Lattice +hep-lat/0212021 Lattice +hep-lat/0212024 Lattice +hep-lat/0212026 Lattice +hep-lat/0212033 Lattice +hep-lat/0212034 Lattice +hep-lat/0212036 Lattice +hep-lat/0212040 Lattice +hep-lat/0212041 Lattice +hep-ph/0101003 Phenomenology +hep-ph/0101004 Phenomenology +hep-ph/0101006 Phenomenology +hep-ph/0101010 Phenomenology +hep-ph/0101012 Phenomenology +hep-ph/0101017 Phenomenology +hep-ph/0101021 Phenomenology +hep-ph/0101022 Phenomenology +hep-ph/0101026 Phenomenology +hep-ph/0101027 Phenomenology +hep-ph/0101030 Phenomenology +hep-ph/0101031 Phenomenology +hep-ph/0101034 Phenomenology +hep-ph/0101035 Phenomenology +hep-ph/0101039 Phenomenology +hep-ph/0101040 Phenomenology +hep-ph/0101041 Phenomenology +hep-ph/0101044 Phenomenology +hep-ph/0101047 Phenomenology +hep-ph/0101048 Phenomenology +hep-ph/0101049 Phenomenology +hep-ph/0101052 Phenomenology +hep-ph/0101053 Phenomenology +hep-ph/0101054 Phenomenology +hep-ph/0101057 Phenomenology +hep-ph/0101061 Phenomenology +hep-ph/0101067 Phenomenology +hep-ph/0101068 Phenomenology +hep-ph/0101071 Phenomenology +hep-ph/0101073 Phenomenology +hep-ph/0101074 Phenomenology +hep-ph/0101075 Phenomenology +hep-ph/0101076 Phenomenology +hep-ph/0101079 Phenomenology +hep-ph/0101081 Phenomenology +hep-ph/0101084 Phenomenology +hep-ph/0101085 Phenomenology +hep-ph/0101087 Phenomenology +hep-ph/0101088 Phenomenology +hep-ph/0101089 Phenomenology +hep-ph/0101091 Phenomenology +hep-ph/0101100 Phenomenology +hep-ph/0101103 Phenomenology +hep-ph/0101104 Phenomenology +hep-ph/0101107 Phenomenology +hep-ph/0101110 Phenomenology +hep-ph/0101111 Phenomenology +hep-ph/0101113 Phenomenology +hep-ph/0101114 Phenomenology +hep-ph/0101120 Phenomenology +hep-ph/0101123 Phenomenology +hep-ph/0101127 Phenomenology +hep-ph/0101129 Phenomenology +hep-ph/0101130 Phenomenology +hep-ph/0101134 Phenomenology +hep-ph/0101137 Phenomenology +hep-ph/0101140 Phenomenology +hep-ph/0101142 Phenomenology +hep-ph/0101144 Phenomenology +hep-ph/0101146 Phenomenology +hep-ph/0101149 Phenomenology +hep-ph/0101151 Phenomenology +hep-ph/0101155 Phenomenology +hep-ph/0101158 Phenomenology +hep-ph/0101165 Phenomenology +hep-ph/0101167 Phenomenology +hep-ph/0101171 Phenomenology +hep-ph/0101172 Phenomenology +hep-ph/0101176 Phenomenology +hep-ph/0101178 Phenomenology +hep-ph/0101180 Phenomenology +hep-ph/0101182 Phenomenology +hep-ph/0101185 Phenomenology +hep-ph/0101187 Phenomenology +hep-ph/0101190 Phenomenology +hep-ph/0101193 Phenomenology +hep-ph/0101203 Phenomenology +hep-ph/0101204 Phenomenology +hep-ph/0101209 Phenomenology +hep-ph/0101210 Phenomenology +hep-ph/0101214 Phenomenology +hep-ph/0101215 Phenomenology +hep-ph/0101216 Phenomenology +hep-ph/0101221 Phenomenology +hep-ph/0101223 Phenomenology +hep-ph/0101228 Phenomenology +hep-ph/0101229 Phenomenology +hep-ph/0101231 Phenomenology +hep-ph/0101232 Phenomenology +hep-ph/0101233 Phenomenology +hep-ph/0101234 Phenomenology +hep-ph/0101236 Phenomenology +hep-ph/0101242 Phenomenology +hep-ph/0101244 Phenomenology +hep-ph/0101256 Phenomenology +hep-ph/0101258 Phenomenology +hep-ph/0101262 Phenomenology +hep-ph/0101263 Phenomenology +hep-ph/0101265 Phenomenology +hep-ph/0101266 Phenomenology +hep-ph/0101267 Phenomenology +hep-ph/0101268 Phenomenology +hep-ph/0101269 Phenomenology +hep-ph/0101272 Phenomenology +hep-ph/0101273 Phenomenology +hep-ph/0101274 Phenomenology +hep-ph/0101275 Phenomenology +hep-ph/0101278 Phenomenology +hep-ph/0101279 Phenomenology +hep-ph/0101280 Phenomenology +hep-ph/0101281 Phenomenology +hep-ph/0101282 Phenomenology +hep-ph/0101285 Phenomenology +hep-ph/0101286 Phenomenology +hep-ph/0101289 Phenomenology +hep-ph/0101297 Phenomenology +hep-ph/0101298 Phenomenology +hep-ph/0101306 Phenomenology +hep-ph/0101307 Phenomenology +hep-ph/0101308 Phenomenology +hep-ph/0101310 Phenomenology +hep-ph/0101313 Phenomenology +hep-ph/0101315 Phenomenology +hep-ph/0101318 Phenomenology +hep-ph/0101319 Phenomenology +hep-ph/0101320 Phenomenology +hep-ph/0101321 Phenomenology +hep-ph/0101325 Phenomenology +hep-ph/0101331 Phenomenology +hep-ph/0101334 Phenomenology +hep-ph/0101337 Phenomenology +hep-ph/0101339 Phenomenology +hep-ph/0101340 Phenomenology +hep-ph/0101343 Phenomenology +hep-ph/0101347 Phenomenology +hep-ph/0101353 Phenomenology +hep-ph/0101355 Phenomenology +hep-ph/0102001 Phenomenology +hep-ph/0102002 Phenomenology +hep-ph/0102003 Phenomenology +hep-ph/0102005 Phenomenology +hep-ph/0102006 Phenomenology +hep-ph/0102008 Phenomenology +hep-ph/0102010 Phenomenology +hep-ph/0102011 Phenomenology +hep-ph/0102013 Phenomenology +hep-ph/0102014 Phenomenology +hep-ph/0102019 Phenomenology +hep-ph/0102020 Phenomenology +hep-ph/0102021 Phenomenology +hep-ph/0102022 Phenomenology +hep-ph/0102025 Phenomenology +hep-ph/0102028 Phenomenology +hep-ph/0102029 Phenomenology +hep-ph/0102032 Phenomenology +hep-ph/0102035 Phenomenology +hep-ph/0102036 Phenomenology +hep-ph/0102037 Phenomenology +hep-ph/0102038 Phenomenology +hep-ph/0102041 Phenomenology +hep-ph/0102044 Phenomenology +hep-ph/0102045 Phenomenology +hep-ph/0102048 Phenomenology +hep-ph/0102058 Phenomenology +hep-ph/0102062 Phenomenology +hep-ph/0102066 Phenomenology +hep-ph/0102068 Phenomenology +hep-ph/0102069 Phenomenology +hep-ph/0102071 Phenomenology +hep-ph/0102072 Phenomenology +hep-ph/0102076 Phenomenology +hep-ph/0102077 Phenomenology +hep-ph/0102078 Phenomenology +hep-ph/0102080 Phenomenology +hep-ph/0102082 Phenomenology +hep-ph/0102089 Phenomenology +hep-ph/0102094 Phenomenology +hep-ph/0102095 Phenomenology +hep-ph/0102097 Phenomenology +hep-ph/0102101 Phenomenology +hep-ph/0102103 Phenomenology +hep-ph/0102104 Phenomenology +hep-ph/0102105 Phenomenology +hep-ph/0102106 Phenomenology +hep-ph/0102111 Phenomenology +hep-ph/0102112 Phenomenology +hep-ph/0102113 Phenomenology +hep-ph/0102114 Phenomenology +hep-ph/0102115 Phenomenology +hep-ph/0102117 Phenomenology +hep-ph/0102119 Phenomenology +hep-ph/0102122 Phenomenology +hep-ph/0102123 Phenomenology +hep-ph/0102125 Phenomenology +hep-ph/0102126 Phenomenology +hep-ph/0102128 Phenomenology +hep-ph/0102130 Phenomenology +hep-ph/0102135 Phenomenology +hep-ph/0102136 Phenomenology +hep-ph/0102139 Phenomenology +hep-ph/0102141 Phenomenology +hep-ph/0102152 Phenomenology +hep-ph/0102153 Phenomenology +hep-ph/0102155 Phenomenology +hep-ph/0102156 Phenomenology +hep-ph/0102157 Phenomenology +hep-ph/0102161 Phenomenology +hep-ph/0102165 Phenomenology +hep-ph/0102168 Phenomenology +hep-ph/0102175 Phenomenology +hep-ph/0102179 Phenomenology +hep-ph/0102180 Phenomenology +hep-ph/0102185 Phenomenology +hep-ph/0102187 Phenomenology +hep-ph/0102189 Phenomenology +hep-ph/0102190 Phenomenology +hep-ph/0102191 Phenomenology +hep-ph/0102193 Phenomenology +hep-ph/0102200 Phenomenology +hep-ph/0102204 Phenomenology +hep-ph/0102206 Phenomenology +hep-ph/0102211 Phenomenology +hep-ph/0102213 Phenomenology +hep-ph/0102215 Phenomenology +hep-ph/0102217 Phenomenology +hep-ph/0102218 Phenomenology +hep-ph/0102220 Phenomenology +hep-ph/0102222 Phenomenology +hep-ph/0102224 Phenomenology +hep-ph/0102225 Phenomenology +hep-ph/0102226 Phenomenology +hep-ph/0102228 Phenomenology +hep-ph/0102231 Phenomenology +hep-ph/0102234 Phenomenology +hep-ph/0102236 Phenomenology +hep-ph/0102239 Phenomenology +hep-ph/0102241 Phenomenology +hep-ph/0102243 Phenomenology +hep-ph/0102245 Phenomenology +hep-ph/0102246 Phenomenology +hep-ph/0102247 Phenomenology +hep-ph/0102254 Phenomenology +hep-ph/0102255 Phenomenology +hep-ph/0102256 Phenomenology +hep-ph/0102258 Phenomenology +hep-ph/0102259 Phenomenology +hep-ph/0102260 Phenomenology +hep-ph/0102264 Phenomenology +hep-ph/0102269 Phenomenology +hep-ph/0102270 Phenomenology +hep-ph/0102271 Phenomenology +hep-ph/0102272 Phenomenology +hep-ph/0102278 Phenomenology +hep-ph/0102280 Phenomenology +hep-ph/0102281 Phenomenology +hep-ph/0102283 Phenomenology +hep-ph/0102287 Phenomenology +hep-ph/0102289 Phenomenology +hep-ph/0102290 Phenomenology +hep-ph/0102291 Phenomenology +hep-ph/0102299 Phenomenology +hep-ph/0102301 Phenomenology +hep-ph/0102302 Phenomenology +hep-ph/0102303 Phenomenology +hep-ph/0102304 Phenomenology +hep-ph/0102305 Phenomenology +hep-ph/0102307 Phenomenology +hep-ph/0102314 Phenomenology +hep-ph/0102315 Phenomenology +hep-ph/0102316 Phenomenology +hep-ph/0102318 Phenomenology +hep-ph/0102320 Phenomenology +hep-ph/0102323 Phenomenology +hep-ph/0102329 Phenomenology +hep-ph/0102330 Phenomenology +hep-ph/0102332 Phenomenology +hep-ph/0102333 Phenomenology +hep-ph/0102334 Phenomenology +hep-ph/0102336 Phenomenology +hep-ph/0102337 Phenomenology +hep-ph/0102339 Phenomenology +hep-ph/0102340 Phenomenology +hep-ph/0102342 Phenomenology +hep-ph/0102343 Phenomenology +hep-ph/0102345 Phenomenology +hep-ph/0102346 Phenomenology +hep-ph/0103001 Phenomenology +hep-ph/0103002 Phenomenology +hep-ph/0103004 Phenomenology +hep-ph/0103010 Phenomenology +hep-ph/0103012 Phenomenology +hep-ph/0103013 Phenomenology +hep-ph/0103014 Phenomenology +hep-ph/0103018 Phenomenology +hep-ph/0103022 Phenomenology +hep-ph/0103023 Phenomenology +hep-ph/0103026 Phenomenology +hep-ph/0103027 Phenomenology +hep-ph/0103028 Phenomenology +hep-ph/0103030 Phenomenology +hep-ph/0103031 Phenomenology +hep-ph/0103034 Phenomenology +hep-ph/0103037 Phenomenology +hep-ph/0103038 Phenomenology +hep-ph/0103039 Phenomenology +hep-ph/0103041 Phenomenology +hep-ph/0103043 Phenomenology +hep-ph/0103045 Phenomenology +hep-ph/0103046 Phenomenology +hep-ph/0103048 Phenomenology +hep-ph/0103053 Phenomenology +hep-ph/0103054 Phenomenology +hep-ph/0103055 Phenomenology +hep-ph/0103056 Phenomenology +hep-ph/0103057 Phenomenology +hep-ph/0103064 Phenomenology +hep-ph/0103067 Phenomenology +hep-ph/0103068 Phenomenology +hep-ph/0103070 Phenomenology +hep-ph/0103072 Phenomenology +hep-ph/0103073 Phenomenology +hep-ph/0103080 Phenomenology +hep-ph/0103083 Phenomenology +hep-ph/0103085 Phenomenology +hep-ph/0103086 Phenomenology +hep-ph/0103092 Phenomenology +hep-ph/0103096 Phenomenology +hep-ph/0103098 Phenomenology +hep-ph/0103100 Phenomenology +hep-ph/0103101 Phenomenology +hep-ph/0103103 Phenomenology +hep-ph/0103106 Phenomenology +hep-ph/0103107 Phenomenology +hep-ph/0103111 Phenomenology +hep-ph/0103112 Phenomenology +hep-ph/0103115 Phenomenology +hep-ph/0103116 Phenomenology +hep-ph/0103117 Phenomenology +hep-ph/0103119 Phenomenology +hep-ph/0103123 Phenomenology +hep-ph/0103126 Phenomenology +hep-ph/0103127 Phenomenology +hep-ph/0103130 Phenomenology +hep-ph/0103131 Phenomenology +hep-ph/0103133 Phenomenology +hep-ph/0103139 Phenomenology +hep-ph/0103140 Phenomenology +hep-ph/0103143 Phenomenology +hep-ph/0103147 Phenomenology +hep-ph/0103148 Phenomenology +hep-ph/0103149 Phenomenology +hep-ph/0103150 Phenomenology +hep-ph/0103151 Phenomenology +hep-ph/0103152 Phenomenology +hep-ph/0103154 Phenomenology +hep-ph/0103159 Phenomenology +hep-ph/0103164 Phenomenology +hep-ph/0103165 Phenomenology +hep-ph/0103167 Phenomenology +hep-ph/0103170 Phenomenology +hep-ph/0103171 Phenomenology +hep-ph/0103172 Phenomenology +hep-ph/0103174 Phenomenology +hep-ph/0103175 Phenomenology +hep-ph/0103178 Phenomenology +hep-ph/0103180 Phenomenology +hep-ph/0103181 Phenomenology +hep-ph/0103182 Phenomenology +hep-ph/0103183 Phenomenology +hep-ph/0103184 Phenomenology +hep-ph/0103188 Phenomenology +hep-ph/0103191 Phenomenology +hep-ph/0103192 Phenomenology +hep-ph/0103193 Phenomenology +hep-ph/0103195 Phenomenology +hep-ph/0103198 Phenomenology +hep-ph/0103199 Phenomenology +hep-ph/0103202 Phenomenology +hep-ph/0103203 Phenomenology +hep-ph/0103206 Phenomenology +hep-ph/0103207 Phenomenology +hep-ph/0103208 Phenomenology +hep-ph/0103209 Phenomenology +hep-ph/0103210 Phenomenology +hep-ph/0103211 Phenomenology +hep-ph/0103213 Phenomenology +hep-ph/0103214 Phenomenology +hep-ph/0103216 Phenomenology +hep-ph/0103217 Phenomenology +hep-ph/0103218 Phenomenology +hep-ph/0103219 Phenomenology +hep-ph/0103221 Phenomenology +hep-ph/0103224 Phenomenology +hep-ph/0103225 Phenomenology +hep-ph/0103227 Phenomenology +hep-ph/0103231 Phenomenology +hep-ph/0103233 Phenomenology +hep-ph/0103235 Phenomenology +hep-ph/0103236 Phenomenology +hep-ph/0103237 Phenomenology +hep-ph/0103238 Phenomenology +hep-ph/0103241 Phenomenology +hep-ph/0103245 Phenomenology +hep-ph/0103246 Phenomenology +hep-ph/0103251 Phenomenology +hep-ph/0103255 Phenomenology +hep-ph/0103257 Phenomenology +hep-ph/0103261 Phenomenology +hep-ph/0103268 Phenomenology +hep-ph/0103269 Phenomenology +hep-ph/0103270 Phenomenology +hep-ph/0103271 Phenomenology +hep-ph/0103272 Phenomenology +hep-ph/0103274 Phenomenology +hep-ph/0103275 Phenomenology +hep-ph/0103276 Phenomenology +hep-ph/0103279 Phenomenology +hep-ph/0103280 Phenomenology +hep-ph/0103281 Phenomenology +hep-ph/0103285 Phenomenology +hep-ph/0103290 Phenomenology +hep-ph/0103292 Phenomenology +hep-ph/0103293 Phenomenology +hep-ph/0103295 Phenomenology +hep-ph/0103298 Phenomenology +hep-ph/0103302 Phenomenology +hep-ph/0103303 Phenomenology +hep-ph/0103304 Phenomenology +hep-ph/0103306 Phenomenology +hep-ph/0103311 Phenomenology +hep-ph/0103312 Phenomenology +hep-ph/0103315 Phenomenology +hep-ph/0103316 Phenomenology +hep-ph/0103328 Phenomenology +hep-ph/0103332 Phenomenology +hep-ph/0103333 Phenomenology +hep-ph/0103335 Phenomenology +hep-ph/0103336 Phenomenology +hep-ph/0103337 Phenomenology +hep-ph/0103339 Phenomenology +hep-ph/0103340 Phenomenology +hep-ph/0103343 Phenomenology +hep-ph/0103349 Phenomenology +hep-ph/0104006 Phenomenology +hep-ph/0104019 Phenomenology +hep-ph/0104020 Phenomenology +hep-ph/0104021 Phenomenology +hep-ph/0104025 Phenomenology +hep-ph/0104031 Phenomenology +hep-ph/0104032 Phenomenology +hep-ph/0104033 Phenomenology +hep-ph/0104035 Phenomenology +hep-ph/0104037 Phenomenology +hep-ph/0104039 Phenomenology +hep-ph/0104045 Phenomenology +hep-ph/0104047 Phenomenology +hep-ph/0104049 Phenomenology +hep-ph/0104051 Phenomenology +hep-ph/0104058 Phenomenology +hep-ph/0104066 Phenomenology +hep-ph/0104067 Phenomenology +hep-ph/0104070 Phenomenology +hep-ph/0104071 Phenomenology +hep-ph/0104072 Phenomenology +hep-ph/0104074 Phenomenology +hep-ph/0104075 Phenomenology +hep-ph/0104077 Phenomenology +hep-ph/0104079 Phenomenology +hep-ph/0104081 Phenomenology +hep-ph/0104083 Phenomenology +hep-ph/0104084 Phenomenology +hep-ph/0104086 Phenomenology +hep-ph/0104090 Phenomenology +hep-ph/0104093 Phenomenology +hep-ph/0104096 Phenomenology +hep-ph/0104097 Phenomenology +hep-ph/0104102 Phenomenology +hep-ph/0104104 Phenomenology +hep-ph/0104109 Phenomenology +hep-ph/0104111 Phenomenology +hep-ph/0104112 Phenomenology +hep-ph/0104116 Phenomenology +hep-ph/0104124 Phenomenology +hep-ph/0104129 Phenomenology +hep-ph/0104130 Phenomenology +hep-ph/0104131 Phenomenology +hep-ph/0104139 Phenomenology +hep-ph/0104141 Phenomenology +hep-ph/0104154 Phenomenology +hep-ph/0104161 Phenomenology +hep-ph/0104162 Phenomenology +hep-ph/0104163 Phenomenology +hep-ph/0104164 Phenomenology +hep-ph/0104169 Phenomenology +hep-ph/0104172 Phenomenology +hep-ph/0104173 Phenomenology +hep-ph/0104174 Phenomenology +hep-ph/0104175 Phenomenology +hep-ph/0104176 Phenomenology +hep-ph/0104184 Phenomenology +hep-ph/0104185 Phenomenology +hep-ph/0104186 Phenomenology +hep-ph/0104189 Phenomenology +hep-ph/0104193 Phenomenology +hep-ph/0104194 Phenomenology +hep-ph/0104195 Phenomenology +hep-ph/0104198 Phenomenology +hep-ph/0104199 Phenomenology +hep-ph/0104200 Phenomenology +hep-ph/0104201 Phenomenology +hep-ph/0104203 Phenomenology +hep-ph/0104204 Phenomenology +hep-ph/0104208 Phenomenology +hep-ph/0104209 Phenomenology +hep-ph/0104210 Phenomenology +hep-ph/0104212 Phenomenology +hep-ph/0104217 Phenomenology +hep-ph/0104225 Phenomenology +hep-ph/0104226 Phenomenology +hep-ph/0104229 Phenomenology +hep-ph/0104235 Phenomenology +hep-ph/0104236 Phenomenology +hep-ph/0104237 Phenomenology +hep-ph/0104239 Phenomenology +hep-ph/0104241 Phenomenology +hep-ph/0104242 Phenomenology +hep-ph/0104247 Phenomenology +hep-ph/0104248 Phenomenology +hep-ph/0104254 Phenomenology +hep-ph/0104255 Phenomenology +hep-ph/0104257 Phenomenology +hep-ph/0104258 Phenomenology +hep-ph/0104259 Phenomenology +hep-ph/0104260 Phenomenology +hep-ph/0104261 Phenomenology +hep-ph/0104262 Phenomenology +hep-ph/0104264 Phenomenology +hep-ph/0104269 Phenomenology +hep-ph/0104270 Phenomenology +hep-ph/0104271 Phenomenology +hep-ph/0104278 Phenomenology +hep-ph/0104281 Phenomenology +hep-ph/0104282 Phenomenology +hep-ph/0104283 Phenomenology +hep-ph/0104287 Phenomenology +hep-ph/0104288 Phenomenology +hep-ph/0104297 Phenomenology +hep-ph/0104298 Phenomenology +hep-ph/0104305 Phenomenology +hep-ph/0104306 Phenomenology +hep-ph/0104307 Phenomenology +hep-ph/0104308 Phenomenology +hep-ph/0104309 Phenomenology +hep-ph/0104311 Phenomenology +hep-ph/0104312 Phenomenology +hep-ph/0104314 Phenomenology +hep-ph/0104317 Phenomenology +hep-ph/0105001 Phenomenology +hep-ph/0105002 Phenomenology +hep-ph/0105006 Phenomenology +hep-ph/0105008 Phenomenology +hep-ph/0105009 Phenomenology +hep-ph/0105015 Phenomenology +hep-ph/0105016 Phenomenology +hep-ph/0105020 Phenomenology +hep-ph/0105024 Phenomenology +hep-ph/0105033 Phenomenology +hep-ph/0105036 Phenomenology +hep-ph/0105038 Phenomenology +hep-ph/0105039 Phenomenology +hep-ph/0105042 Phenomenology +hep-ph/0105043 Phenomenology +hep-ph/0105045 Phenomenology +hep-ph/0105046 Phenomenology +hep-ph/0105047 Phenomenology +hep-ph/0105059 Phenomenology +hep-ph/0105062 Phenomenology +hep-ph/0105064 Phenomenology +hep-ph/0105067 Phenomenology +hep-ph/0105068 Phenomenology +hep-ph/0105074 Phenomenology +hep-ph/0105082 Phenomenology +hep-ph/0105084 Phenomenology +hep-ph/0105085 Phenomenology +hep-ph/0105088 Phenomenology +hep-ph/0105095 Phenomenology +hep-ph/0105096 Phenomenology +hep-ph/0105099 Phenomenology +hep-ph/0105100 Phenomenology +hep-ph/0105101 Phenomenology +hep-ph/0105102 Phenomenology +hep-ph/0105104 Phenomenology +hep-ph/0105108 Phenomenology +hep-ph/0105109 Phenomenology +hep-ph/0105110 Phenomenology +hep-ph/0105120 Phenomenology +hep-ph/0105123 Phenomenology +hep-ph/0105129 Phenomenology +hep-ph/0105131 Phenomenology +hep-ph/0105132 Phenomenology +hep-ph/0105141 Phenomenology +hep-ph/0105153 Phenomenology +hep-ph/0105156 Phenomenology +hep-ph/0105158 Phenomenology +hep-ph/0105162 Phenomenology +hep-ph/0105165 Phenomenology +hep-ph/0105169 Phenomenology +hep-ph/0105170 Phenomenology +hep-ph/0105174 Phenomenology +hep-ph/0105181 Phenomenology +hep-ph/0105185 Phenomenology +hep-ph/0105188 Phenomenology +hep-ph/0105190 Phenomenology +hep-ph/0105193 Phenomenology +hep-ph/0105195 Phenomenology +hep-ph/0105198 Phenomenology +hep-ph/0105202 Phenomenology +hep-ph/0105211 Phenomenology +hep-ph/0105214 Phenomenology +hep-ph/0105218 Phenomenology +hep-ph/0105219 Phenomenology +hep-ph/0105220 Phenomenology +hep-ph/0105223 Phenomenology +hep-ph/0105227 Phenomenology +hep-ph/0105228 Phenomenology +hep-ph/0105229 Phenomenology +hep-ph/0105231 Phenomenology +hep-ph/0105232 Phenomenology +hep-ph/0105234 Phenomenology +hep-ph/0105235 Phenomenology +hep-ph/0105236 Phenomenology +hep-ph/0105238 Phenomenology +hep-ph/0105242 Phenomenology +hep-ph/0105243 Phenomenology +hep-ph/0105245 Phenomenology +hep-ph/0105255 Phenomenology +hep-ph/0105256 Phenomenology +hep-ph/0105258 Phenomenology +hep-ph/0105263 Phenomenology +hep-ph/0105272 Phenomenology +hep-ph/0105279 Phenomenology +hep-ph/0105284 Phenomenology +hep-ph/0105288 Phenomenology +hep-ph/0105289 Phenomenology +hep-ph/0105291 Phenomenology +hep-ph/0105293 Phenomenology +hep-ph/0105296 Phenomenology +hep-ph/0105303 Phenomenology +hep-ph/0105307 Phenomenology +hep-ph/0105322 Phenomenology +hep-ph/0105329 Phenomenology +hep-ph/0105332 Phenomenology +hep-ph/0105335 Phenomenology +hep-ph/0105338 Phenomenology +hep-ph/0105349 Phenomenology +hep-ph/0106004 Phenomenology +hep-ph/0106016 Phenomenology +hep-ph/0106017 Phenomenology +hep-ph/0106019 Phenomenology +hep-ph/0106022 Phenomenology +hep-ph/0106024 Phenomenology +hep-ph/0106025 Phenomenology +hep-ph/0106027 Phenomenology +hep-ph/0106045 Phenomenology +hep-ph/0106053 Phenomenology +hep-ph/0106056 Phenomenology +hep-ph/0106059 Phenomenology +hep-ph/0106060 Phenomenology +hep-ph/0106063 Phenomenology +hep-ph/0106068 Phenomenology +hep-ph/0106071 Phenomenology +hep-ph/0106077 Phenomenology +hep-ph/0106079 Phenomenology +hep-ph/0106084 Phenomenology +hep-ph/0106086 Phenomenology +hep-ph/0106092 Phenomenology +hep-ph/0106096 Phenomenology +hep-ph/0106099 Phenomenology +hep-ph/0106101 Phenomenology +hep-ph/0106102 Phenomenology +hep-ph/0106107 Phenomenology +hep-ph/0106110 Phenomenology +hep-ph/0106113 Phenomenology +hep-ph/0106119 Phenomenology +hep-ph/0106124 Phenomenology +hep-ph/0106125 Phenomenology +hep-ph/0106140 Phenomenology +hep-ph/0106141 Phenomenology +hep-ph/0106144 Phenomenology +hep-ph/0106146 Phenomenology +hep-ph/0106147 Phenomenology +hep-ph/0106150 Phenomenology +hep-ph/0106153 Phenomenology +hep-ph/0106158 Phenomenology +hep-ph/0106159 Phenomenology +hep-ph/0106162 Phenomenology +hep-ph/0106168 Phenomenology +hep-ph/0106174 Phenomenology +hep-ph/0106179 Phenomenology +hep-ph/0106182 Phenomenology +hep-ph/0106186 Phenomenology +hep-ph/0106195 Phenomenology +hep-ph/0106196 Phenomenology +hep-ph/0106203 Phenomenology +hep-ph/0106205 Phenomenology +hep-ph/0106209 Phenomenology +hep-ph/0106217 Phenomenology +hep-ph/0106219 Phenomenology +hep-ph/0106222 Phenomenology +hep-ph/0106225 Phenomenology +hep-ph/0106232 Phenomenology +hep-ph/0106233 Phenomenology +hep-ph/0106240 Phenomenology +hep-ph/0106243 Phenomenology +hep-ph/0106245 Phenomenology +hep-ph/0106246 Phenomenology +hep-ph/0106248 Phenomenology +hep-ph/0106249 Phenomenology +hep-ph/0106255 Phenomenology +hep-ph/0106257 Phenomenology +hep-ph/0106264 Phenomenology +hep-ph/0106267 Phenomenology +hep-ph/0106269 Phenomenology +hep-ph/0106271 Phenomenology +hep-ph/0106275 Phenomenology +hep-ph/0106277 Phenomenology +hep-ph/0106280 Phenomenology +hep-ph/0106281 Phenomenology +hep-ph/0106286 Phenomenology +hep-ph/0106287 Phenomenology +hep-ph/0106291 Phenomenology +hep-ph/0106293 Phenomenology +hep-ph/0106298 Phenomenology +hep-ph/0106301 Phenomenology +hep-ph/0106306 Phenomenology +hep-ph/0106307 Phenomenology +hep-ph/0106309 Phenomenology +hep-ph/0106311 Phenomenology +hep-ph/0106312 Phenomenology +hep-ph/0106313 Phenomenology +hep-ph/0106316 Phenomenology +hep-ph/0106319 Phenomenology +hep-ph/0106320 Phenomenology +hep-ph/0106331 Phenomenology +hep-ph/0106334 Phenomenology +hep-ph/0106336 Phenomenology +hep-ph/0106338 Phenomenology +hep-ph/0106341 Phenomenology +hep-ph/0106342 Phenomenology +hep-ph/0106344 Phenomenology +hep-ph/0106347 Phenomenology +hep-ph/0106348 Phenomenology +hep-ph/0106349 Phenomenology +hep-ph/0106352 Phenomenology +hep-ph/0106356 Phenomenology +hep-ph/0107002 Phenomenology +hep-ph/0107007 Phenomenology +hep-ph/0107008 Phenomenology +hep-ph/0107009 Phenomenology +hep-ph/0107010 Phenomenology +hep-ph/0107012 Phenomenology +hep-ph/0107014 Phenomenology +hep-ph/0107017 Phenomenology +hep-ph/0107018 Phenomenology +hep-ph/0107020 Phenomenology +hep-ph/0107022 Phenomenology +hep-ph/0107023 Phenomenology +hep-ph/0107024 Phenomenology +hep-ph/0107027 Phenomenology +hep-ph/0107030 Phenomenology +hep-ph/0107036 Phenomenology +hep-ph/0107047 Phenomenology +hep-ph/0107051 Phenomenology +hep-ph/0107052 Phenomenology +hep-ph/0107053 Phenomenology +hep-ph/0107055 Phenomenology +hep-ph/0107058 Phenomenology +hep-ph/0107061 Phenomenology +hep-ph/0107064 Phenomenology +hep-ph/0107069 Phenomenology +hep-ph/0107072 Phenomenology +hep-ph/0107073 Phenomenology +hep-ph/0107079 Phenomenology +hep-ph/0107081 Phenomenology +hep-ph/0107083 Phenomenology +hep-ph/0107084 Phenomenology +hep-ph/0107086 Phenomenology +hep-ph/0107089 Phenomenology +hep-ph/0107091 Phenomenology +hep-ph/0107097 Phenomenology +hep-ph/0107099 Phenomenology +hep-ph/0107110 Phenomenology +hep-ph/0107111 Phenomenology +hep-ph/0107117 Phenomenology +hep-ph/0107118 Phenomenology +hep-ph/0107125 Phenomenology +hep-ph/0107127 Phenomenology +hep-ph/0107130 Phenomenology +hep-ph/0107133 Phenomenology +hep-ph/0107134 Phenomenology +hep-ph/0107137 Phenomenology +hep-ph/0107139 Phenomenology +hep-ph/0107140 Phenomenology +hep-ph/0107141 Phenomenology +hep-ph/0107146 Phenomenology +hep-ph/0107147 Phenomenology +hep-ph/0107148 Phenomenology +hep-ph/0107157 Phenomenology +hep-ph/0107158 Phenomenology +hep-ph/0107160 Phenomenology +hep-ph/0107161 Phenomenology +hep-ph/0107162 Phenomenology +hep-ph/0107166 Phenomenology +hep-ph/0107168 Phenomenology +hep-ph/0107171 Phenomenology +hep-ph/0107174 Phenomenology +hep-ph/0107176 Phenomenology +hep-ph/0107177 Phenomenology +hep-ph/0107178 Phenomenology +hep-ph/0107179 Phenomenology +hep-ph/0107181 Phenomenology +hep-ph/0107186 Phenomenology +hep-ph/0107187 Phenomenology +hep-ph/0107193 Phenomenology +hep-ph/0107196 Phenomenology +hep-ph/0107199 Phenomenology +hep-ph/0107200 Phenomenology +hep-ph/0107202 Phenomenology +hep-ph/0107203 Phenomenology +hep-ph/0107204 Phenomenology +hep-ph/0107205 Phenomenology +hep-ph/0107206 Phenomenology +hep-ph/0107208 Phenomenology +hep-ph/0107211 Phenomenology +hep-ph/0107214 Phenomenology +hep-ph/0107218 Phenomenology +hep-ph/0107219 Phenomenology +hep-ph/0107223 Phenomenology +hep-ph/0107225 Phenomenology +hep-ph/0107226 Phenomenology +hep-ph/0107227 Phenomenology +hep-ph/0107228 Phenomenology +hep-ph/0107229 Phenomenology +hep-ph/0107230 Phenomenology +hep-ph/0107238 Phenomenology +hep-ph/0107239 Phenomenology +hep-ph/0107242 Phenomenology +hep-ph/0107248 Phenomenology +hep-ph/0107251 Phenomenology +hep-ph/0107253 Phenomenology +hep-ph/0107254 Phenomenology +hep-ph/0107258 Phenomenology +hep-ph/0107264 Phenomenology +hep-ph/0107265 Phenomenology +hep-ph/0107267 Phenomenology +hep-ph/0107270 Phenomenology +hep-ph/0107275 Phenomenology +hep-ph/0107287 Phenomenology +hep-ph/0107288 Phenomenology +hep-ph/0107290 Phenomenology +hep-ph/0107292 Phenomenology +hep-ph/0107295 Phenomenology +hep-ph/0107296 Phenomenology +hep-ph/0107297 Phenomenology +hep-ph/0107298 Phenomenology +hep-ph/0107299 Phenomenology +hep-ph/0107300 Phenomenology +hep-ph/0107301 Phenomenology +hep-ph/0107303 Phenomenology +hep-ph/0107304 Phenomenology +hep-ph/0107307 Phenomenology +hep-ph/0107308 Phenomenology +hep-ph/0107309 Phenomenology +hep-ph/0107310 Phenomenology +hep-ph/0107312 Phenomenology +hep-ph/0107313 Phenomenology +hep-ph/0107317 Phenomenology +hep-ph/0107318 Phenomenology +hep-ph/0107320 Phenomenology +hep-ph/0107321 Phenomenology +hep-ph/0107322 Phenomenology +hep-ph/0107326 Phenomenology +hep-ph/0107327 Phenomenology +hep-ph/0107328 Phenomenology +hep-ph/0107332 Phenomenology +hep-ph/0108002 Phenomenology +hep-ph/0108004 Phenomenology +hep-ph/0108007 Phenomenology +hep-ph/0108009 Phenomenology +hep-ph/0108010 Phenomenology +hep-ph/0108011 Phenomenology +hep-ph/0108012 Phenomenology +hep-ph/0108015 Phenomenology +hep-ph/0108020 Phenomenology +hep-ph/0108026 Phenomenology +hep-ph/0108027 Phenomenology +hep-ph/0108028 Phenomenology +hep-ph/0108035 Phenomenology +hep-ph/0108036 Phenomenology +hep-ph/0108039 Phenomenology +hep-ph/0108040 Phenomenology +hep-ph/0108042 Phenomenology +hep-ph/0108044 Phenomenology +hep-ph/0108045 Phenomenology +hep-ph/0108046 Phenomenology +hep-ph/0108057 Phenomenology +hep-ph/0108058 Phenomenology +hep-ph/0108060 Phenomenology +hep-ph/0108061 Phenomenology +hep-ph/0108062 Phenomenology +hep-ph/0108064 Phenomenology +hep-ph/0108067 Phenomenology +hep-ph/0108068 Phenomenology +hep-ph/0108070 Phenomenology +hep-ph/0108072 Phenomenology +hep-ph/0108073 Phenomenology +hep-ph/0108074 Phenomenology +hep-ph/0108075 Phenomenology +hep-ph/0108076 Phenomenology +hep-ph/0108080 Phenomenology +hep-ph/0108083 Phenomenology +hep-ph/0108086 Phenomenology +hep-ph/0108089 Phenomenology +hep-ph/0108092 Phenomenology +hep-ph/0108093 Phenomenology +hep-ph/0108094 Phenomenology +hep-ph/0108095 Phenomenology +hep-ph/0108096 Phenomenology +hep-ph/0108102 Phenomenology +hep-ph/0108103 Phenomenology +hep-ph/0108111 Phenomenology +hep-ph/0108112 Phenomenology +hep-ph/0108114 Phenomenology +hep-ph/0108119 Phenomenology +hep-ph/0108120 Phenomenology +hep-ph/0108125 Phenomenology +hep-ph/0108128 Phenomenology +hep-ph/0108129 Phenomenology +hep-ph/0108132 Phenomenology +hep-ph/0108134 Phenomenology +hep-ph/0108136 Phenomenology +hep-ph/0108137 Phenomenology +hep-ph/0108138 Phenomenology +hep-ph/0108140 Phenomenology +hep-ph/0108141 Phenomenology +hep-ph/0108143 Phenomenology +hep-ph/0108144 Phenomenology +hep-ph/0108147 Phenomenology +hep-ph/0108148 Phenomenology +hep-ph/0108149 Phenomenology +hep-ph/0108150 Phenomenology +hep-ph/0108152 Phenomenology +hep-ph/0108159 Phenomenology +hep-ph/0108162 Phenomenology +hep-ph/0108163 Phenomenology +hep-ph/0108165 Phenomenology +hep-ph/0108167 Phenomenology +hep-ph/0108169 Phenomenology +hep-ph/0108171 Phenomenology +hep-ph/0108172 Phenomenology +hep-ph/0108175 Phenomenology +hep-ph/0108176 Phenomenology +hep-ph/0108177 Phenomenology +hep-ph/0108186 Phenomenology +hep-ph/0108189 Phenomenology +hep-ph/0108190 Phenomenology +hep-ph/0108196 Phenomenology +hep-ph/0108197 Phenomenology +hep-ph/0108199 Phenomenology +hep-ph/0108200 Phenomenology +hep-ph/0108209 Phenomenology +hep-ph/0108212 Phenomenology +hep-ph/0108214 Phenomenology +hep-ph/0108216 Phenomenology +hep-ph/0108217 Phenomenology +hep-ph/0108218 Phenomenology +hep-ph/0108222 Phenomenology +hep-ph/0108223 Phenomenology +hep-ph/0108225 Phenomenology +hep-ph/0108230 Phenomenology +hep-ph/0108237 Phenomenology +hep-ph/0108238 Phenomenology +hep-ph/0108243 Phenomenology +hep-ph/0108244 Phenomenology +hep-ph/0108246 Phenomenology +hep-ph/0108247 Phenomenology +hep-ph/0108251 Phenomenology +hep-ph/0108255 Phenomenology +hep-ph/0108256 Phenomenology +hep-ph/0108257 Phenomenology +hep-ph/0108262 Phenomenology +hep-ph/0108265 Phenomenology +hep-ph/0108266 Phenomenology +hep-ph/0108268 Phenomenology +hep-ph/0108273 Phenomenology +hep-ph/0109002 Phenomenology +hep-ph/0109003 Phenomenology +hep-ph/0109005 Phenomenology +hep-ph/0109007 Phenomenology +hep-ph/0109008 Phenomenology +hep-ph/0109009 Phenomenology +hep-ph/0109013 Phenomenology +hep-ph/0109015 Phenomenology +hep-ph/0109017 Phenomenology +hep-ph/0109018 Phenomenology +hep-ph/0109021 Phenomenology +hep-ph/0109022 Phenomenology +hep-ph/0109027 Phenomenology +hep-ph/0109034 Phenomenology +hep-ph/0109036 Phenomenology +hep-ph/0109043 Phenomenology +hep-ph/0109044 Phenomenology +hep-ph/0109046 Phenomenology +hep-ph/0109048 Phenomenology +hep-ph/0109049 Phenomenology +hep-ph/0109050 Phenomenology +hep-ph/0109051 Phenomenology +hep-ph/0109052 Phenomenology +hep-ph/0109053 Phenomenology +hep-ph/0109054 Phenomenology +hep-ph/0109055 Phenomenology +hep-ph/0109057 Phenomenology +hep-ph/0109058 Phenomenology +hep-ph/0109063 Phenomenology +hep-ph/0109066 Phenomenology +hep-ph/0109072 Phenomenology +hep-ph/0109074 Phenomenology +hep-ph/0109076 Phenomenology +hep-ph/0109080 Phenomenology +hep-ph/0109093 Phenomenology +hep-ph/0109094 Phenomenology +hep-ph/0109095 Phenomenology +hep-ph/0109099 Phenomenology +hep-ph/0109100 Phenomenology +hep-ph/0109102 Phenomenology +hep-ph/0109103 Phenomenology +hep-ph/0109105 Phenomenology +hep-ph/0109108 Phenomenology +hep-ph/0109110 Phenomenology +hep-ph/0109111 Phenomenology +hep-ph/0109113 Phenomenology +hep-ph/0109114 Phenomenology +hep-ph/0109117 Phenomenology +hep-ph/0109119 Phenomenology +hep-ph/0109120 Phenomenology +hep-ph/0109121 Phenomenology +hep-ph/0109122 Phenomenology +hep-ph/0109126 Phenomenology +hep-ph/0109127 Phenomenology +hep-ph/0109128 Phenomenology +hep-ph/0109130 Phenomenology +hep-ph/0109132 Phenomenology +hep-ph/0109135 Phenomenology +hep-ph/0109136 Phenomenology +hep-ph/0109138 Phenomenology +hep-ph/0109141 Phenomenology +hep-ph/0109143 Phenomenology +hep-ph/0109144 Phenomenology +hep-ph/0109150 Phenomenology +hep-ph/0109153 Phenomenology +hep-ph/0109154 Phenomenology +hep-ph/0109157 Phenomenology +hep-ph/0109165 Phenomenology +hep-ph/0109172 Phenomenology +hep-ph/0109173 Phenomenology +hep-ph/0109174 Phenomenology +hep-ph/0109183 Phenomenology +hep-ph/0109185 Phenomenology +hep-ph/0109186 Phenomenology +hep-ph/0109187 Phenomenology +hep-ph/0109188 Phenomenology +hep-ph/0109190 Phenomenology +hep-ph/0109191 Phenomenology +hep-ph/0109194 Phenomenology +hep-ph/0109195 Phenomenology +hep-ph/0109201 Phenomenology +hep-ph/0109207 Phenomenology +hep-ph/0109208 Phenomenology +hep-ph/0109210 Phenomenology +hep-ph/0109211 Phenomenology +hep-ph/0109213 Phenomenology +hep-ph/0109214 Phenomenology +hep-ph/0109216 Phenomenology +hep-ph/0109218 Phenomenology +hep-ph/0109219 Phenomenology +hep-ph/0109221 Phenomenology +hep-ph/0109222 Phenomenology +hep-ph/0109223 Phenomenology +hep-ph/0109226 Phenomenology +hep-ph/0109227 Phenomenology +hep-ph/0109228 Phenomenology +hep-ph/0109230 Phenomenology +hep-ph/0109236 Phenomenology +hep-ph/0109237 Phenomenology +hep-ph/0109239 Phenomenology +hep-ph/0109242 Phenomenology +hep-ph/0109248 Phenomenology +hep-ph/0109252 Phenomenology +hep-ph/0109253 Phenomenology +hep-ph/0109256 Phenomenology +hep-ph/0109264 Phenomenology +hep-ph/0109265 Phenomenology +hep-ph/0109267 Phenomenology +hep-ph/0109269 Phenomenology +hep-ph/0109274 Phenomenology +hep-ph/0109279 Phenomenology +hep-ph/0109287 Phenomenology +hep-ph/0109289 Phenomenology +hep-ph/0110001 Phenomenology +hep-ph/0110006 Phenomenology +hep-ph/0110007 Phenomenology +hep-ph/0110008 Phenomenology +hep-ph/0110014 Phenomenology +hep-ph/0110017 Phenomenology +hep-ph/0110019 Phenomenology +hep-ph/0110020 Phenomenology +hep-ph/0110028 Phenomenology +hep-ph/0110029 Phenomenology +hep-ph/0110032 Phenomenology +hep-ph/0110036 Phenomenology +hep-ph/0110038 Phenomenology +hep-ph/0110039 Phenomenology +hep-ph/0110047 Phenomenology +hep-ph/0110049 Phenomenology +hep-ph/0110052 Phenomenology +hep-ph/0110056 Phenomenology +hep-ph/0110057 Phenomenology +hep-ph/0110060 Phenomenology +hep-ph/0110065 Phenomenology +hep-ph/0110068 Phenomenology +hep-ph/0110069 Phenomenology +hep-ph/0110070 Phenomenology +hep-ph/0110071 Phenomenology +hep-ph/0110073 Phenomenology +hep-ph/0110074 Phenomenology +hep-ph/0110076 Phenomenology +hep-ph/0110077 Phenomenology +hep-ph/0110082 Phenomenology +hep-ph/0110086 Phenomenology +hep-ph/0110095 Phenomenology +hep-ph/0110097 Phenomenology +hep-ph/0110098 Phenomenology +hep-ph/0110099 Phenomenology +hep-ph/0110104 Phenomenology +hep-ph/0110105 Phenomenology +hep-ph/0110108 Phenomenology +hep-ph/0110110 Phenomenology +hep-ph/0110111 Phenomenology +hep-ph/0110113 Phenomenology +hep-ph/0110116 Phenomenology +hep-ph/0110122 Phenomenology +hep-ph/0110128 Phenomenology +hep-ph/0110131 Phenomenology +hep-ph/0110133 Phenomenology +hep-ph/0110134 Phenomenology +hep-ph/0110136 Phenomenology +hep-ph/0110138 Phenomenology +hep-ph/0110140 Phenomenology +hep-ph/0110141 Phenomenology +hep-ph/0110142 Phenomenology +hep-ph/0110144 Phenomenology +hep-ph/0110146 Phenomenology +hep-ph/0110161 Phenomenology +hep-ph/0110165 Phenomenology +hep-ph/0110168 Phenomenology +hep-ph/0110169 Phenomenology +hep-ph/0110174 Phenomenology +hep-ph/0110183 Phenomenology +hep-ph/0110185 Phenomenology +hep-ph/0110186 Phenomenology +hep-ph/0110187 Phenomenology +hep-ph/0110188 Phenomenology +hep-ph/0110190 Phenomenology +hep-ph/0110191 Phenomenology +hep-ph/0110193 Phenomenology +hep-ph/0110195 Phenomenology +hep-ph/0110198 Phenomenology +hep-ph/0110199 Phenomenology +hep-ph/0110204 Phenomenology +hep-ph/0110205 Phenomenology +hep-ph/0110207 Phenomenology +hep-ph/0110216 Phenomenology +hep-ph/0110217 Phenomenology +hep-ph/0110222 Phenomenology +hep-ph/0110224 Phenomenology +hep-ph/0110233 Phenomenology +hep-ph/0110234 Phenomenology +hep-ph/0110238 Phenomenology +hep-ph/0110243 Phenomenology +hep-ph/0110251 Phenomenology +hep-ph/0110252 Phenomenology +hep-ph/0110261 Phenomenology +hep-ph/0110262 Phenomenology +hep-ph/0110265 Phenomenology +hep-ph/0110266 Phenomenology +hep-ph/0110267 Phenomenology +hep-ph/0110268 Phenomenology +hep-ph/0110269 Phenomenology +hep-ph/0110270 Phenomenology +hep-ph/0110272 Phenomenology +hep-ph/0110273 Phenomenology +hep-ph/0110277 Phenomenology +hep-ph/0110279 Phenomenology +hep-ph/0110281 Phenomenology +hep-ph/0110282 Phenomenology +hep-ph/0110283 Phenomenology +hep-ph/0110285 Phenomenology +hep-ph/0110296 Phenomenology +hep-ph/0110298 Phenomenology +hep-ph/0110300 Phenomenology +hep-ph/0110301 Phenomenology +hep-ph/0110306 Phenomenology +hep-ph/0110307 Phenomenology +hep-ph/0110308 Phenomenology +hep-ph/0110321 Phenomenology +hep-ph/0110322 Phenomenology +hep-ph/0110323 Phenomenology +hep-ph/0110324 Phenomenology +hep-ph/0110326 Phenomenology +hep-ph/0110329 Phenomenology +hep-ph/0110331 Phenomenology +hep-ph/0110332 Phenomenology +hep-ph/0110334 Phenomenology +hep-ph/0110335 Phenomenology +hep-ph/0110337 Phenomenology +hep-ph/0110342 Phenomenology +hep-ph/0110343 Phenomenology +hep-ph/0110352 Phenomenology +hep-ph/0110353 Phenomenology +hep-ph/0110355 Phenomenology +hep-ph/0110356 Phenomenology +hep-ph/0110357 Phenomenology +hep-ph/0110358 Phenomenology +hep-ph/0110359 Phenomenology +hep-ph/0110360 Phenomenology +hep-ph/0110363 Phenomenology +hep-ph/0110366 Phenomenology +hep-ph/0110367 Phenomenology +hep-ph/0110368 Phenomenology +hep-ph/0110369 Phenomenology +hep-ph/0110370 Phenomenology +hep-ph/0110374 Phenomenology +hep-ph/0110382 Phenomenology +hep-ph/0110387 Phenomenology +hep-ph/0110394 Phenomenology +hep-ph/0110395 Phenomenology +hep-ph/0110399 Phenomenology +hep-ph/0110401 Phenomenology +hep-ph/0110405 Phenomenology +hep-ph/0110411 Phenomenology +hep-ph/0110417 Phenomenology +hep-ph/0111001 Phenomenology +hep-ph/0111003 Phenomenology +hep-ph/0111006 Phenomenology +hep-ph/0111010 Phenomenology +hep-ph/0111012 Phenomenology +hep-ph/0111013 Phenomenology +hep-ph/0111015 Phenomenology +hep-ph/0111020 Phenomenology +hep-ph/0111023 Phenomenology +hep-ph/0111024 Phenomenology +hep-ph/0111028 Phenomenology +hep-ph/0111031 Phenomenology +hep-ph/0111032 Phenomenology +hep-ph/0111039 Phenomenology +hep-ph/0111042 Phenomenology +hep-ph/0111043 Phenomenology +hep-ph/0111044 Phenomenology +hep-ph/0111047 Phenomenology +hep-ph/0111048 Phenomenology +hep-ph/0111050 Phenomenology +hep-ph/0111054 Phenomenology +hep-ph/0111055 Phenomenology +hep-ph/0111057 Phenomenology +hep-ph/0111061 Phenomenology +hep-ph/0111062 Phenomenology +hep-ph/0111071 Phenomenology +hep-ph/0111072 Phenomenology +hep-ph/0111074 Phenomenology +hep-ph/0111076 Phenomenology +hep-ph/0111081 Phenomenology +hep-ph/0111085 Phenomenology +hep-ph/0111086 Phenomenology +hep-ph/0111091 Phenomenology +hep-ph/0111099 Phenomenology +hep-ph/0111104 Phenomenology +hep-ph/0111108 Phenomenology +hep-ph/0111109 Phenomenology +hep-ph/0111110 Phenomenology +hep-ph/0111113 Phenomenology +hep-ph/0111114 Phenomenology +hep-ph/0111119 Phenomenology +hep-ph/0111121 Phenomenology +hep-ph/0111129 Phenomenology +hep-ph/0111130 Phenomenology +hep-ph/0111132 Phenomenology +hep-ph/0111133 Phenomenology +hep-ph/0111134 Phenomenology +hep-ph/0111136 Phenomenology +hep-ph/0111137 Phenomenology +hep-ph/0111138 Phenomenology +hep-ph/0111140 Phenomenology +hep-ph/0111142 Phenomenology +hep-ph/0111146 Phenomenology +hep-ph/0111148 Phenomenology +hep-ph/0111150 Phenomenology +hep-ph/0111152 Phenomenology +hep-ph/0111153 Phenomenology +hep-ph/0111154 Phenomenology +hep-ph/0111155 Phenomenology +hep-ph/0111164 Phenomenology +hep-ph/0111165 Phenomenology +hep-ph/0111166 Phenomenology +hep-ph/0111167 Phenomenology +hep-ph/0111169 Phenomenology +hep-ph/0111170 Phenomenology +hep-ph/0111176 Phenomenology +hep-ph/0111180 Phenomenology +hep-ph/0111183 Phenomenology +hep-ph/0111184 Phenomenology +hep-ph/0111185 Phenomenology +hep-ph/0111186 Phenomenology +hep-ph/0111187 Phenomenology +hep-ph/0111189 Phenomenology +hep-ph/0111193 Phenomenology +hep-ph/0111194 Phenomenology +hep-ph/0111196 Phenomenology +hep-ph/0111197 Phenomenology +hep-ph/0111205 Phenomenology +hep-ph/0111209 Phenomenology +hep-ph/0111214 Phenomenology +hep-ph/0111218 Phenomenology +hep-ph/0111221 Phenomenology +hep-ph/0111222 Phenomenology +hep-ph/0111223 Phenomenology +hep-ph/0111228 Phenomenology +hep-ph/0111231 Phenomenology +hep-ph/0111234 Phenomenology +hep-ph/0111235 Phenomenology +hep-ph/0111237 Phenomenology +hep-ph/0111240 Phenomenology +hep-ph/0111247 Phenomenology +hep-ph/0111248 Phenomenology +hep-ph/0111250 Phenomenology +hep-ph/0111254 Phenomenology +hep-ph/0111255 Phenomenology +hep-ph/0111256 Phenomenology +hep-ph/0111260 Phenomenology +hep-ph/0111263 Phenomenology +hep-ph/0111264 Phenomenology +hep-ph/0111269 Phenomenology +hep-ph/0111273 Phenomenology +hep-ph/0111278 Phenomenology +hep-ph/0111280 Phenomenology +hep-ph/0111283 Phenomenology +hep-ph/0111284 Phenomenology +hep-ph/0111285 Phenomenology +hep-ph/0111286 Phenomenology +hep-ph/0111287 Phenomenology +hep-ph/0111288 Phenomenology +hep-ph/0111290 Phenomenology +hep-ph/0111293 Phenomenology +hep-ph/0111296 Phenomenology +hep-ph/0111297 Phenomenology +hep-ph/0111298 Phenomenology +hep-ph/0111303 Phenomenology +hep-ph/0111306 Phenomenology +hep-ph/0111308 Phenomenology +hep-ph/0111309 Phenomenology +hep-ph/0111310 Phenomenology +hep-ph/0111315 Phenomenology +hep-ph/0111316 Phenomenology +hep-ph/0111322 Phenomenology +hep-ph/0111326 Phenomenology +hep-ph/0111333 Phenomenology +hep-ph/0111335 Phenomenology +hep-ph/0111337 Phenomenology +hep-ph/0111338 Phenomenology +hep-ph/0111343 Phenomenology +hep-ph/0111344 Phenomenology +hep-ph/0111346 Phenomenology +hep-ph/0111348 Phenomenology +hep-ph/0111351 Phenomenology +hep-ph/0111352 Phenomenology +hep-ph/0111362 Phenomenology +hep-ph/0111369 Phenomenology +hep-ph/0111377 Phenomenology +hep-ph/0111380 Phenomenology +hep-ph/0111381 Phenomenology +hep-ph/0111382 Phenomenology +hep-ph/0111383 Phenomenology +hep-ph/0111384 Phenomenology +hep-ph/0111385 Phenomenology +hep-ph/0111386 Phenomenology +hep-ph/0111388 Phenomenology +hep-ph/0111431 Phenomenology +hep-ph/0111432 Phenomenology +hep-ph/0111433 Phenomenology +hep-ph/0111435 Phenomenology +hep-ph/0111447 Phenomenology +hep-ph/0111470 Phenomenology +hep-ph/0111473 Phenomenology +hep-ph/0112003 Phenomenology +hep-ph/0112004 Phenomenology +hep-ph/0112007 Phenomenology +hep-ph/0112011 Phenomenology +hep-ph/0112016 Phenomenology +hep-ph/0112022 Phenomenology +hep-ph/0112023 Phenomenology +hep-ph/0112025 Phenomenology +hep-ph/0112027 Phenomenology +hep-ph/0112030 Phenomenology +hep-ph/0112034 Phenomenology +hep-ph/0112036 Phenomenology +hep-ph/0112037 Phenomenology +hep-ph/0112038 Phenomenology +hep-ph/0112039 Phenomenology +hep-ph/0112042 Phenomenology +hep-ph/0112044 Phenomenology +hep-ph/0112047 Phenomenology +hep-ph/0112052 Phenomenology +hep-ph/0112055 Phenomenology +hep-ph/0112058 Phenomenology +hep-ph/0112059 Phenomenology +hep-ph/0112060 Phenomenology +hep-ph/0112063 Phenomenology +hep-ph/0112065 Phenomenology +hep-ph/0112069 Phenomenology +hep-ph/0112074 Phenomenology +hep-ph/0112077 Phenomenology +hep-ph/0112078 Phenomenology +hep-ph/0112080 Phenomenology +hep-ph/0112082 Phenomenology +hep-ph/0112085 Phenomenology +hep-ph/0112090 Phenomenology +hep-ph/0112093 Phenomenology +hep-ph/0112095 Phenomenology +hep-ph/0112096 Phenomenology +hep-ph/0112098 Phenomenology +hep-ph/0112099 Phenomenology +hep-ph/0112100 Phenomenology +hep-ph/0112108 Phenomenology +hep-ph/0112109 Phenomenology +hep-ph/0112116 Phenomenology +hep-ph/0112121 Phenomenology +hep-ph/0112124 Phenomenology +hep-ph/0112126 Phenomenology +hep-ph/0112128 Phenomenology +hep-ph/0112130 Phenomenology +hep-ph/0112131 Phenomenology +hep-ph/0112132 Phenomenology +hep-ph/0112138 Phenomenology +hep-ph/0112140 Phenomenology +hep-ph/0112142 Phenomenology +hep-ph/0112143 Phenomenology +hep-ph/0112144 Phenomenology +hep-ph/0112145 Phenomenology +hep-ph/0112146 Phenomenology +hep-ph/0112147 Phenomenology +hep-ph/0112148 Phenomenology +hep-ph/0112149 Phenomenology +hep-ph/0112152 Phenomenology +hep-ph/0112154 Phenomenology +hep-ph/0112156 Phenomenology +hep-ph/0112158 Phenomenology +hep-ph/0112163 Phenomenology +hep-ph/0112164 Phenomenology +hep-ph/0112165 Phenomenology +hep-ph/0112171 Phenomenology +hep-ph/0112174 Phenomenology +hep-ph/0112181 Phenomenology +hep-ph/0112182 Phenomenology +hep-ph/0112187 Phenomenology +hep-ph/0112188 Phenomenology +hep-ph/0112190 Phenomenology +hep-ph/0112191 Phenomenology +hep-ph/0112192 Phenomenology +hep-ph/0112194 Phenomenology +hep-ph/0112197 Phenomenology +hep-ph/0112198 Phenomenology +hep-ph/0112200 Phenomenology +hep-ph/0112203 Phenomenology +hep-ph/0112206 Phenomenology +hep-ph/0112207 Phenomenology +hep-ph/0112210 Phenomenology +hep-ph/0112214 Phenomenology +hep-ph/0112220 Phenomenology +hep-ph/0112221 Phenomenology +hep-ph/0112224 Phenomenology +hep-ph/0112225 Phenomenology +hep-ph/0112227 Phenomenology +hep-ph/0112232 Phenomenology +hep-ph/0112233 Phenomenology +hep-ph/0112236 Phenomenology +hep-ph/0112243 Phenomenology +hep-ph/0112246 Phenomenology +hep-ph/0112248 Phenomenology +hep-ph/0112249 Phenomenology +hep-ph/0112251 Phenomenology +hep-ph/0112255 Phenomenology +hep-ph/0112261 Phenomenology +hep-ph/0112271 Phenomenology +hep-ph/0112272 Phenomenology +hep-ph/0112273 Phenomenology +hep-ph/0112274 Phenomenology +hep-ph/0112275 Phenomenology +hep-ph/0112277 Phenomenology +hep-ph/0112278 Phenomenology +hep-ph/0112282 Phenomenology +hep-ph/0112284 Phenomenology +hep-ph/0112288 Phenomenology +hep-ph/0112292 Phenomenology +hep-ph/0112294 Phenomenology +hep-ph/0112299 Phenomenology +hep-ph/0112302 Phenomenology +hep-ph/0112308 Phenomenology +hep-ph/0112319 Phenomenology +hep-ph/0112320 Phenomenology +hep-ph/0112322 Phenomenology +hep-ph/0112323 Phenomenology +hep-ph/0112331 Phenomenology +hep-ph/0112332 Phenomenology +hep-ph/0112336 Phenomenology +hep-ph/0112337 Phenomenology +hep-ph/0112341 Phenomenology +hep-ph/0112345 Phenomenology +hep-ph/0112350 Phenomenology +hep-ph/0112351 Phenomenology +hep-ph/0112356 Phenomenology +hep-ph/0112360 Phenomenology +hep-ph/0112363 Phenomenology +hep-ph/0201003 Phenomenology +hep-ph/0201008 Phenomenology +hep-ph/0201009 Phenomenology +hep-ph/0201010 Phenomenology +hep-ph/0201016 Phenomenology +hep-ph/0201017 Phenomenology +hep-ph/0201023 Phenomenology +hep-ph/0201024 Phenomenology +hep-ph/0201031 Phenomenology +hep-ph/0201033 Phenomenology +hep-ph/0201034 Phenomenology +hep-ph/0201044 Phenomenology +hep-ph/0201046 Phenomenology +hep-ph/0201048 Phenomenology +hep-ph/0201049 Phenomenology +hep-ph/0201052 Phenomenology +hep-ph/0201055 Phenomenology +hep-ph/0201059 Phenomenology +hep-ph/0201060 Phenomenology +hep-ph/0201066 Phenomenology +hep-ph/0201068 Phenomenology +hep-ph/0201073 Phenomenology +hep-ph/0201074 Phenomenology +hep-ph/0201075 Phenomenology +hep-ph/0201076 Phenomenology +hep-ph/0201079 Phenomenology +hep-ph/0201082 Phenomenology +hep-ph/0201083 Phenomenology +hep-ph/0201084 Phenomenology +hep-ph/0201091 Phenomenology +hep-ph/0201095 Phenomenology +hep-ph/0201096 Phenomenology +hep-ph/0201097 Phenomenology +hep-ph/0201101 Phenomenology +hep-ph/0201102 Phenomenology +hep-ph/0201103 Phenomenology +hep-ph/0201105 Phenomenology +hep-ph/0201106 Phenomenology +hep-ph/0201108 Phenomenology +hep-ph/0201110 Phenomenology +hep-ph/0201114 Phenomenology +hep-ph/0201119 Phenomenology +hep-ph/0201123 Phenomenology +hep-ph/0201131 Phenomenology +hep-ph/0201133 Phenomenology +hep-ph/0201136 Phenomenology +hep-ph/0201139 Phenomenology +hep-ph/0201142 Phenomenology +hep-ph/0201144 Phenomenology +hep-ph/0201145 Phenomenology +hep-ph/0201148 Phenomenology +hep-ph/0201149 Phenomenology +hep-ph/0201150 Phenomenology +hep-ph/0201151 Phenomenology +hep-ph/0201154 Phenomenology +hep-ph/0201155 Phenomenology +hep-ph/0201157 Phenomenology +hep-ph/0201160 Phenomenology +hep-ph/0201162 Phenomenology +hep-ph/0201163 Phenomenology +hep-ph/0201168 Phenomenology +hep-ph/0201169 Phenomenology +hep-ph/0201172 Phenomenology +hep-ph/0201173 Phenomenology +hep-ph/0201175 Phenomenology +hep-ph/0201179 Phenomenology +hep-ph/0201180 Phenomenology +hep-ph/0201183 Phenomenology +hep-ph/0201188 Phenomenology +hep-ph/0201189 Phenomenology +hep-ph/0201191 Phenomenology +hep-ph/0201196 Phenomenology +hep-ph/0201199 Phenomenology +hep-ph/0201204 Phenomenology +hep-ph/0201206 Phenomenology +hep-ph/0201208 Phenomenology +hep-ph/0201209 Phenomenology +hep-ph/0201210 Phenomenology +hep-ph/0201213 Phenomenology +hep-ph/0201214 Phenomenology +hep-ph/0201216 Phenomenology +hep-ph/0201217 Phenomenology +hep-ph/0201218 Phenomenology +hep-ph/0201220 Phenomenology +hep-ph/0201223 Phenomenology +hep-ph/0201224 Phenomenology +hep-ph/0201225 Phenomenology +hep-ph/0201226 Phenomenology +hep-ph/0201232 Phenomenology +hep-ph/0201235 Phenomenology +hep-ph/0201237 Phenomenology +hep-ph/0201239 Phenomenology +hep-ph/0201240 Phenomenology +hep-ph/0201241 Phenomenology +hep-ph/0201244 Phenomenology +hep-ph/0201247 Phenomenology +hep-ph/0201248 Phenomenology +hep-ph/0201250 Phenomenology +hep-ph/0201267 Phenomenology +hep-ph/0201271 Phenomenology +hep-ph/0201277 Phenomenology +hep-ph/0201281 Phenomenology +hep-ph/0201284 Phenomenology +hep-ph/0201287 Phenomenology +hep-ph/0201295 Phenomenology +hep-ph/0201297 Phenomenology +hep-ph/0201298 Phenomenology +hep-ph/0201302 Phenomenology +hep-ph/0201305 Phenomenology +hep-ph/0201309 Phenomenology +hep-ph/0201312 Phenomenology +hep-ph/0201313 Phenomenology +hep-ph/0202005 Phenomenology +hep-ph/0202008 Phenomenology +hep-ph/0202015 Phenomenology +hep-ph/0202016 Phenomenology +hep-ph/0202017 Phenomenology +hep-ph/0202018 Phenomenology +hep-ph/0202019 Phenomenology +hep-ph/0202023 Phenomenology +hep-ph/0202026 Phenomenology +hep-ph/0202027 Phenomenology +hep-ph/0202028 Phenomenology +hep-ph/0202031 Phenomenology +hep-ph/0202034 Phenomenology +hep-ph/0202036 Phenomenology +hep-ph/0202038 Phenomenology +hep-ph/0202044 Phenomenology +hep-ph/0202046 Phenomenology +hep-ph/0202047 Phenomenology +hep-ph/0202049 Phenomenology +hep-ph/0202050 Phenomenology +hep-ph/0202054 Phenomenology +hep-ph/0202055 Phenomenology +hep-ph/0202060 Phenomenology +hep-ph/0202063 Phenomenology +hep-ph/0202066 Phenomenology +hep-ph/0202068 Phenomenology +hep-ph/0202076 Phenomenology +hep-ph/0202077 Phenomenology +hep-ph/0202080 Phenomenology +hep-ph/0202085 Phenomenology +hep-ph/0202086 Phenomenology +hep-ph/0202088 Phenomenology +hep-ph/0202093 Phenomenology +hep-ph/0202099 Phenomenology +hep-ph/0202100 Phenomenology +hep-ph/0202101 Phenomenology +hep-ph/0202116 Phenomenology +hep-ph/0202117 Phenomenology +hep-ph/0202119 Phenomenology +hep-ph/0202122 Phenomenology +hep-ph/0202124 Phenomenology +hep-ph/0202126 Phenomenology +hep-ph/0202128 Phenomenology +hep-ph/0202131 Phenomenology +hep-ph/0202132 Phenomenology +hep-ph/0202136 Phenomenology +hep-ph/0202138 Phenomenology +hep-ph/0202140 Phenomenology +hep-ph/0202142 Phenomenology +hep-ph/0202145 Phenomenology +hep-ph/0202146 Phenomenology +hep-ph/0202147 Phenomenology +hep-ph/0202148 Phenomenology +hep-ph/0202153 Phenomenology +hep-ph/0202154 Phenomenology +hep-ph/0202156 Phenomenology +hep-ph/0202157 Phenomenology +hep-ph/0202160 Phenomenology +hep-ph/0202163 Phenomenology +hep-ph/0202168 Phenomenology +hep-ph/0202169 Phenomenology +hep-ph/0202170 Phenomenology +hep-ph/0202171 Phenomenology +hep-ph/0202172 Phenomenology +hep-ph/0202181 Phenomenology +hep-ph/0202182 Phenomenology +hep-ph/0202189 Phenomenology +hep-ph/0202191 Phenomenology +hep-ph/0202193 Phenomenology +hep-ph/0202194 Phenomenology +hep-ph/0202196 Phenomenology +hep-ph/0202203 Phenomenology +hep-ph/0202204 Phenomenology +hep-ph/0202208 Phenomenology +hep-ph/0202209 Phenomenology +hep-ph/0202210 Phenomenology +hep-ph/0202216 Phenomenology +hep-ph/0202217 Phenomenology +hep-ph/0202219 Phenomenology +hep-ph/0202221 Phenomenology +hep-ph/0202225 Phenomenology +hep-ph/0202227 Phenomenology +hep-ph/0202229 Phenomenology +hep-ph/0202230 Phenomenology +hep-ph/0202235 Phenomenology +hep-ph/0202236 Phenomenology +hep-ph/0202237 Phenomenology +hep-ph/0202239 Phenomenology +hep-ph/0202242 Phenomenology +hep-ph/0202246 Phenomenology +hep-ph/0202248 Phenomenology +hep-ph/0202249 Phenomenology +hep-ph/0202252 Phenomenology +hep-ph/0202256 Phenomenology +hep-ph/0202257 Phenomenology +hep-ph/0202258 Phenomenology +hep-ph/0202261 Phenomenology +hep-ph/0202262 Phenomenology +hep-ph/0202265 Phenomenology +hep-ph/0202266 Phenomenology +hep-ph/0202272 Phenomenology +hep-ph/0202275 Phenomenology +hep-ph/0203004 Phenomenology +hep-ph/0203006 Phenomenology +hep-ph/0203008 Phenomenology +hep-ph/0203009 Phenomenology +hep-ph/0203011 Phenomenology +hep-ph/0203014 Phenomenology +hep-ph/0203018 Phenomenology +hep-ph/0203021 Phenomenology +hep-ph/0203026 Phenomenology +hep-ph/0203027 Phenomenology +hep-ph/0203031 Phenomenology +hep-ph/0203033 Phenomenology +hep-ph/0203035 Phenomenology +hep-ph/0203037 Phenomenology +hep-ph/0203040 Phenomenology +hep-ph/0203041 Phenomenology +hep-ph/0203043 Phenomenology +hep-ph/0203046 Phenomenology +hep-ph/0203047 Phenomenology +hep-ph/0203048 Phenomenology +hep-ph/0203057 Phenomenology +hep-ph/0203058 Phenomenology +hep-ph/0203062 Phenomenology +hep-ph/0203065 Phenomenology +hep-ph/0203073 Phenomenology +hep-ph/0203077 Phenomenology +hep-ph/0203078 Phenomenology +hep-ph/0203080 Phenomenology +hep-ph/0203081 Phenomenology +hep-ph/0203082 Phenomenology +hep-ph/0203086 Phenomenology +hep-ph/0203089 Phenomenology +hep-ph/0203090 Phenomenology +hep-ph/0203096 Phenomenology +hep-ph/0203099 Phenomenology +hep-ph/0203100 Phenomenology +hep-ph/0203101 Phenomenology +hep-ph/0203104 Phenomenology +hep-ph/0203105 Phenomenology +hep-ph/0203106 Phenomenology +hep-ph/0203112 Phenomenology +hep-ph/0203116 Phenomenology +hep-ph/0203117 Phenomenology +hep-ph/0203118 Phenomenology +hep-ph/0203120 Phenomenology +hep-ph/0203127 Phenomenology +hep-ph/0203128 Phenomenology +hep-ph/0203133 Phenomenology +hep-ph/0203135 Phenomenology +hep-ph/0203140 Phenomenology +hep-ph/0203158 Phenomenology +hep-ph/0203160 Phenomenology +hep-ph/0203163 Phenomenology +hep-ph/0203167 Phenomenology +hep-ph/0203169 Phenomenology +hep-ph/0203176 Phenomenology +hep-ph/0203177 Phenomenology +hep-ph/0203179 Phenomenology +hep-ph/0203180 Phenomenology +hep-ph/0203183 Phenomenology +hep-ph/0203184 Phenomenology +hep-ph/0203188 Phenomenology +hep-ph/0203190 Phenomenology +hep-ph/0203191 Phenomenology +hep-ph/0203192 Phenomenology +hep-ph/0203194 Phenomenology +hep-ph/0203195 Phenomenology +hep-ph/0203198 Phenomenology +hep-ph/0203199 Phenomenology +hep-ph/0203201 Phenomenology +hep-ph/0203205 Phenomenology +hep-ph/0203210 Phenomenology +hep-ph/0203211 Phenomenology +hep-ph/0203212 Phenomenology +hep-ph/0203218 Phenomenology +hep-ph/0203221 Phenomenology +hep-ph/0203223 Phenomenology +hep-ph/0203224 Phenomenology +hep-ph/0203227 Phenomenology +hep-ph/0203228 Phenomenology +hep-ph/0203230 Phenomenology +hep-ph/0203235 Phenomenology +hep-ph/0203236 Phenomenology +hep-ph/0203237 Phenomenology +hep-ph/0203239 Phenomenology +hep-ph/0203240 Phenomenology +hep-ph/0203241 Phenomenology +hep-ph/0203256 Phenomenology +hep-ph/0203259 Phenomenology +hep-ph/0203264 Phenomenology +hep-ph/0203266 Phenomenology +hep-ph/0203267 Phenomenology +hep-ph/0203270 Phenomenology +hep-ph/0203275 Phenomenology +hep-ph/0204001 Phenomenology +hep-ph/0204002 Phenomenology +hep-ph/0204006 Phenomenology +hep-ph/0204008 Phenomenology +hep-ph/0204013 Phenomenology +hep-ph/0204023 Phenomenology +hep-ph/0204025 Phenomenology +hep-ph/0204033 Phenomenology +hep-ph/0204036 Phenomenology +hep-ph/0204042 Phenomenology +hep-ph/0204043 Phenomenology +hep-ph/0204048 Phenomenology +hep-ph/0204050 Phenomenology +hep-ph/0204053 Phenomenology +hep-ph/0204057 Phenomenology +hep-ph/0204058 Phenomenology +hep-ph/0204059 Phenomenology +hep-ph/0204063 Phenomenology +hep-ph/0204064 Phenomenology +hep-ph/0204069 Phenomenology +hep-ph/0204070 Phenomenology +hep-ph/0204074 Phenomenology +hep-ph/0204077 Phenomenology +hep-ph/0204078 Phenomenology +hep-ph/0204082 Phenomenology +hep-ph/0204085 Phenomenology +hep-ph/0204089 Phenomenology +hep-ph/0204095 Phenomenology +hep-ph/0204096 Phenomenology +hep-ph/0204100 Phenomenology +hep-ph/0204102 Phenomenology +hep-ph/0204108 Phenomenology +hep-ph/0204110 Phenomenology +hep-ph/0204111 Phenomenology +hep-ph/0204118 Phenomenology +hep-ph/0204122 Phenomenology +hep-ph/0204124 Phenomenology +hep-ph/0204127 Phenomenology +hep-ph/0204128 Phenomenology +hep-ph/0204131 Phenomenology +hep-ph/0204132 Phenomenology +hep-ph/0204137 Phenomenology +hep-ph/0204138 Phenomenology +hep-ph/0204141 Phenomenology +hep-ph/0204143 Phenomenology +hep-ph/0204145 Phenomenology +hep-ph/0204150 Phenomenology +hep-ph/0204151 Phenomenology +hep-ph/0204153 Phenomenology +hep-ph/0204155 Phenomenology +hep-ph/0204163 Phenomenology +hep-ph/0204166 Phenomenology +hep-ph/0204167 Phenomenology +hep-ph/0204168 Phenomenology +hep-ph/0204170 Phenomenology +hep-ph/0204171 Phenomenology +hep-ph/0204172 Phenomenology +hep-ph/0204174 Phenomenology +hep-ph/0204179 Phenomenology +hep-ph/0204184 Phenomenology +hep-ph/0204185 Phenomenology +hep-ph/0204191 Phenomenology +hep-ph/0204193 Phenomenology +hep-ph/0204194 Phenomenology +hep-ph/0204198 Phenomenology +hep-ph/0204201 Phenomenology +hep-ph/0204204 Phenomenology +hep-ph/0204213 Phenomenology +hep-ph/0204218 Phenomenology +hep-ph/0204223 Phenomenology +hep-ph/0204224 Phenomenology +hep-ph/0204228 Phenomenology +hep-ph/0204230 Phenomenology +hep-ph/0204231 Phenomenology +hep-ph/0204234 Phenomenology +hep-ph/0204237 Phenomenology +hep-ph/0204238 Phenomenology +hep-ph/0204239 Phenomenology +hep-ph/0204242 Phenomenology +hep-ph/0204243 Phenomenology +hep-ph/0204245 Phenomenology +hep-ph/0204249 Phenomenology +hep-ph/0204250 Phenomenology +hep-ph/0204258 Phenomenology +hep-ph/0204262 Phenomenology +hep-ph/0204264 Phenomenology +hep-ph/0204265 Phenomenology +hep-ph/0204266 Phenomenology +hep-ph/0204267 Phenomenology +hep-ph/0204270 Phenomenology +hep-ph/0204272 Phenomenology +hep-ph/0204273 Phenomenology +hep-ph/0204276 Phenomenology +hep-ph/0204277 Phenomenology +hep-ph/0204282 Phenomenology +hep-ph/0204298 Phenomenology +hep-ph/0204301 Phenomenology +hep-ph/0204302 Phenomenology +hep-ph/0204304 Phenomenology +hep-ph/0204305 Phenomenology +hep-ph/0204306 Phenomenology +hep-ph/0204307 Phenomenology +hep-ph/0204308 Phenomenology +hep-ph/0204310 Phenomenology +hep-ph/0204314 Phenomenology +hep-ph/0204319 Phenomenology +hep-ph/0204321 Phenomenology +hep-ph/0204323 Phenomenology +hep-ph/0204334 Phenomenology +hep-ph/0204335 Phenomenology +hep-ph/0204337 Phenomenology +hep-ph/0204340 Phenomenology +hep-ph/0204344 Phenomenology +hep-ph/0204346 Phenomenology +hep-ph/0204358 Phenomenology +hep-ph/0204359 Phenomenology +hep-ph/0204360 Phenomenology +hep-ph/0205003 Phenomenology +hep-ph/0205008 Phenomenology +hep-ph/0205012 Phenomenology +hep-ph/0205017 Phenomenology +hep-ph/0205018 Phenomenology +hep-ph/0205019 Phenomenology +hep-ph/0205020 Phenomenology +hep-ph/0205024 Phenomenology +hep-ph/0205025 Phenomenology +hep-ph/0205026 Phenomenology +hep-ph/0205031 Phenomenology +hep-ph/0205033 Phenomenology +hep-ph/0205034 Phenomenology +hep-ph/0205035 Phenomenology +hep-ph/0205036 Phenomenology +hep-ph/0205037 Phenomenology +hep-ph/0205041 Phenomenology +hep-ph/0205043 Phenomenology +hep-ph/0205044 Phenomenology +hep-ph/0205046 Phenomenology +hep-ph/0205050 Phenomenology +hep-ph/0205052 Phenomenology +hep-ph/0205057 Phenomenology +hep-ph/0205063 Phenomenology +hep-ph/0205065 Phenomenology +hep-ph/0205069 Phenomenology +hep-ph/0205070 Phenomenology +hep-ph/0205073 Phenomenology +hep-ph/0205074 Phenomenology +hep-ph/0205080 Phenomenology +hep-ph/0205082 Phenomenology +hep-ph/0205085 Phenomenology +hep-ph/0205086 Phenomenology +hep-ph/0205093 Phenomenology +hep-ph/0205101 Phenomenology +hep-ph/0205102 Phenomenology +hep-ph/0205103 Phenomenology +hep-ph/0205108 Phenomenology +hep-ph/0205113 Phenomenology +hep-ph/0205128 Phenomenology +hep-ph/0205133 Phenomenology +hep-ph/0205138 Phenomenology +hep-ph/0205139 Phenomenology +hep-ph/0205143 Phenomenology +hep-ph/0205147 Phenomenology +hep-ph/0205151 Phenomenology +hep-ph/0205158 Phenomenology +hep-ph/0205159 Phenomenology +hep-ph/0205162 Phenomenology +hep-ph/0205174 Phenomenology +hep-ph/0205182 Phenomenology +hep-ph/0205185 Phenomenology +hep-ph/0205186 Phenomenology +hep-ph/0205190 Phenomenology +hep-ph/0205194 Phenomenology +hep-ph/0205201 Phenomenology +hep-ph/0205203 Phenomenology +hep-ph/0205204 Phenomenology +hep-ph/0205210 Phenomenology +hep-ph/0205218 Phenomenology +hep-ph/0205219 Phenomenology +hep-ph/0205220 Phenomenology +hep-ph/0205223 Phenomenology +hep-ph/0205236 Phenomenology +hep-ph/0205237 Phenomenology +hep-ph/0205241 Phenomenology +hep-ph/0205242 Phenomenology +hep-ph/0205245 Phenomenology +hep-ph/0205246 Phenomenology +hep-ph/0205247 Phenomenology +hep-ph/0205250 Phenomenology +hep-ph/0205251 Phenomenology +hep-ph/0205253 Phenomenology +hep-ph/0205258 Phenomenology +hep-ph/0205259 Phenomenology +hep-ph/0205262 Phenomenology +hep-ph/0205263 Phenomenology +hep-ph/0205268 Phenomenology +hep-ph/0205270 Phenomenology +hep-ph/0205275 Phenomenology +hep-ph/0205276 Phenomenology +hep-ph/0205280 Phenomenology +hep-ph/0205281 Phenomenology +hep-ph/0205284 Phenomenology +hep-ph/0205286 Phenomenology +hep-ph/0205289 Phenomenology +hep-ph/0205291 Phenomenology +hep-ph/0205292 Phenomenology +hep-ph/0205295 Phenomenology +hep-ph/0205296 Phenomenology +hep-ph/0205306 Phenomenology +hep-ph/0205307 Phenomenology +hep-ph/0205308 Phenomenology +hep-ph/0205310 Phenomenology +hep-ph/0205316 Phenomenology +hep-ph/0205318 Phenomenology +hep-ph/0205319 Phenomenology +hep-ph/0205329 Phenomenology +hep-ph/0205330 Phenomenology +hep-ph/0205331 Phenomenology +hep-ph/0205335 Phenomenology +hep-ph/0205346 Phenomenology +hep-ph/0205348 Phenomenology +hep-ph/0206004 Phenomenology +hep-ph/0206005 Phenomenology +hep-ph/0206006 Phenomenology +hep-ph/0206008 Phenomenology +hep-ph/0206009 Phenomenology +hep-ph/0206011 Phenomenology +hep-ph/0206019 Phenomenology +hep-ph/0206022 Phenomenology +hep-ph/0206025 Phenomenology +hep-ph/0206033 Phenomenology +hep-ph/0206036 Phenomenology +hep-ph/0206039 Phenomenology +hep-ph/0206040 Phenomenology +hep-ph/0206046 Phenomenology +hep-ph/0206062 Phenomenology +hep-ph/0206064 Phenomenology +hep-ph/0206075 Phenomenology +hep-ph/0206076 Phenomenology +hep-ph/0206078 Phenomenology +hep-ph/0206080 Phenomenology +hep-ph/0206083 Phenomenology +hep-ph/0206084 Phenomenology +hep-ph/0206087 Phenomenology +hep-ph/0206090 Phenomenology +hep-ph/0206092 Phenomenology +hep-ph/0206094 Phenomenology +hep-ph/0206097 Phenomenology +hep-ph/0206102 Phenomenology +hep-ph/0206106 Phenomenology +hep-ph/0206108 Phenomenology +hep-ph/0206109 Phenomenology +hep-ph/0206111 Phenomenology +hep-ph/0206116 Phenomenology +hep-ph/0206118 Phenomenology +hep-ph/0206119 Phenomenology +hep-ph/0206120 Phenomenology +hep-ph/0206123 Phenomenology +hep-ph/0206125 Phenomenology +hep-ph/0206127 Phenomenology +hep-ph/0206128 Phenomenology +hep-ph/0206133 Phenomenology +hep-ph/0206134 Phenomenology +hep-ph/0206135 Phenomenology +hep-ph/0206138 Phenomenology +hep-ph/0206139 Phenomenology +hep-ph/0206145 Phenomenology +hep-ph/0206146 Phenomenology +hep-ph/0206149 Phenomenology +hep-ph/0206150 Phenomenology +hep-ph/0206157 Phenomenology +hep-ph/0206158 Phenomenology +hep-ph/0206159 Phenomenology +hep-ph/0206160 Phenomenology +hep-ph/0206161 Phenomenology +hep-ph/0206164 Phenomenology +hep-ph/0206175 Phenomenology +hep-ph/0206176 Phenomenology +hep-ph/0206179 Phenomenology +hep-ph/0206181 Phenomenology +hep-ph/0206189 Phenomenology +hep-ph/0206193 Phenomenology +hep-ph/0206196 Phenomenology +hep-ph/0206198 Phenomenology +hep-ph/0206203 Phenomenology +hep-ph/0206204 Phenomenology +hep-ph/0206205 Phenomenology +hep-ph/0206206 Phenomenology +hep-ph/0206207 Phenomenology +hep-ph/0206210 Phenomenology +hep-ph/0206211 Phenomenology +hep-ph/0206212 Phenomenology +hep-ph/0206215 Phenomenology +hep-ph/0206216 Phenomenology +hep-ph/0206227 Phenomenology +hep-ph/0206230 Phenomenology +hep-ph/0206231 Phenomenology +hep-ph/0206232 Phenomenology +hep-ph/0206235 Phenomenology +hep-ph/0206239 Phenomenology +hep-ph/0206240 Phenomenology +hep-ph/0206245 Phenomenology +hep-ph/0206247 Phenomenology +hep-ph/0206253 Phenomenology +hep-ph/0206257 Phenomenology +hep-ph/0206260 Phenomenology +hep-ph/0206262 Phenomenology +hep-ph/0206264 Phenomenology +hep-ph/0206266 Phenomenology +hep-ph/0206268 Phenomenology +hep-ph/0206269 Phenomenology +hep-ph/0206270 Phenomenology +hep-ph/0206271 Phenomenology +hep-ph/0206272 Phenomenology +hep-ph/0206276 Phenomenology +hep-ph/0206279 Phenomenology +hep-ph/0206282 Phenomenology +hep-ph/0206289 Phenomenology +hep-ph/0206293 Phenomenology +hep-ph/0206294 Phenomenology +hep-ph/0206299 Phenomenology +hep-ph/0206301 Phenomenology +hep-ph/0206305 Phenomenology +hep-ph/0206306 Phenomenology +hep-ph/0207001 Phenomenology +hep-ph/0207003 Phenomenology +hep-ph/0207004 Phenomenology +hep-ph/0207005 Phenomenology +hep-ph/0207006 Phenomenology +hep-ph/0207011 Phenomenology +hep-ph/0207012 Phenomenology +hep-ph/0207013 Phenomenology +hep-ph/0207015 Phenomenology +hep-ph/0207016 Phenomenology +hep-ph/0207030 Phenomenology +hep-ph/0207032 Phenomenology +hep-ph/0207038 Phenomenology +hep-ph/0207039 Phenomenology +hep-ph/0207044 Phenomenology +hep-ph/0207057 Phenomenology +hep-ph/0207058 Phenomenology +hep-ph/0207069 Phenomenology +hep-ph/0207074 Phenomenology +hep-ph/0207077 Phenomenology +hep-ph/0207081 Phenomenology +hep-ph/0207084 Phenomenology +hep-ph/0207085 Phenomenology +hep-ph/0207087 Phenomenology +hep-ph/0207089 Phenomenology +hep-ph/0207094 Phenomenology +hep-ph/0207096 Phenomenology +hep-ph/0207102 Phenomenology +hep-ph/0207103 Phenomenology +hep-ph/0207107 Phenomenology +hep-ph/0207115 Phenomenology +hep-ph/0207116 Phenomenology +hep-ph/0207117 Phenomenology +hep-ph/0207119 Phenomenology +hep-ph/0207120 Phenomenology +hep-ph/0207121 Phenomenology +hep-ph/0207130 Phenomenology +hep-ph/0207136 Phenomenology +hep-ph/0207137 Phenomenology +hep-ph/0207138 Phenomenology +hep-ph/0207143 Phenomenology +hep-ph/0207144 Phenomenology +hep-ph/0207145 Phenomenology +hep-ph/0207154 Phenomenology +hep-ph/0207158 Phenomenology +hep-ph/0207159 Phenomenology +hep-ph/0207165 Phenomenology +hep-ph/0207168 Phenomenology +hep-ph/0207169 Phenomenology +hep-ph/0207170 Phenomenology +hep-ph/0207171 Phenomenology +hep-ph/0207172 Phenomenology +hep-ph/0207177 Phenomenology +hep-ph/0207179 Phenomenology +hep-ph/0207180 Phenomenology +hep-ph/0207184 Phenomenology +hep-ph/0207187 Phenomenology +hep-ph/0207189 Phenomenology +hep-ph/0207190 Phenomenology +hep-ph/0207191 Phenomenology +hep-ph/0207192 Phenomenology +hep-ph/0207193 Phenomenology +hep-ph/0207200 Phenomenology +hep-ph/0207201 Phenomenology +hep-ph/0207203 Phenomenology +hep-ph/0207206 Phenomenology +hep-ph/0207207 Phenomenology +hep-ph/0207209 Phenomenology +hep-ph/0207210 Phenomenology +hep-ph/0207211 Phenomenology +hep-ph/0207215 Phenomenology +hep-ph/0207218 Phenomenology +hep-ph/0207221 Phenomenology +hep-ph/0207225 Phenomenology +hep-ph/0207229 Phenomenology +hep-ph/0207230 Phenomenology +hep-ph/0207244 Phenomenology +hep-ph/0207245 Phenomenology +hep-ph/0207246 Phenomenology +hep-ph/0207247 Phenomenology +hep-ph/0207248 Phenomenology +hep-ph/0207250 Phenomenology +hep-ph/0207252 Phenomenology +hep-ph/0207256 Phenomenology +hep-ph/0207257 Phenomenology +hep-ph/0207260 Phenomenology +hep-ph/0207263 Phenomenology +hep-ph/0207264 Phenomenology +hep-ph/0207266 Phenomenology +hep-ph/0207267 Phenomenology +hep-ph/0207268 Phenomenology +hep-ph/0207269 Phenomenology +hep-ph/0207270 Phenomenology +hep-ph/0207271 Phenomenology +hep-ph/0207272 Phenomenology +hep-ph/0207275 Phenomenology +hep-ph/0207283 Phenomenology +hep-ph/0207286 Phenomenology +hep-ph/0207288 Phenomenology +hep-ph/0207289 Phenomenology +hep-ph/0207291 Phenomenology +hep-ph/0207292 Phenomenology +hep-ph/0207294 Phenomenology +hep-ph/0207295 Phenomenology +hep-ph/0207302 Phenomenology +hep-ph/0207304 Phenomenology +hep-ph/0207308 Phenomenology +hep-ph/0207310 Phenomenology +hep-ph/0207316 Phenomenology +hep-ph/0207328 Phenomenology +hep-ph/0207329 Phenomenology +hep-ph/0207330 Phenomenology +hep-ph/0207333 Phenomenology +hep-ph/0207335 Phenomenology +hep-ph/0207336 Phenomenology +hep-ph/0207339 Phenomenology +hep-ph/0207340 Phenomenology +hep-ph/0207341 Phenomenology +hep-ph/0207343 Phenomenology +hep-ph/0207344 Phenomenology +hep-ph/0207346 Phenomenology +hep-ph/0207350 Phenomenology +hep-ph/0207351 Phenomenology +hep-ph/0207352 Phenomenology +hep-ph/0207356 Phenomenology +hep-ph/0207358 Phenomenology +hep-ph/0207363 Phenomenology +hep-ph/0207364 Phenomenology +hep-ph/0207366 Phenomenology +hep-ph/0207374 Phenomenology +hep-ph/0208009 Phenomenology +hep-ph/0208012 Phenomenology +hep-ph/0208013 Phenomenology +hep-ph/0208014 Phenomenology +hep-ph/0208019 Phenomenology +hep-ph/0208022 Phenomenology +hep-ph/0208025 Phenomenology +hep-ph/0208027 Phenomenology +hep-ph/0208028 Phenomenology +hep-ph/0208029 Phenomenology +hep-ph/0208030 Phenomenology +hep-ph/0208036 Phenomenology +hep-ph/0208044 Phenomenology +hep-ph/0208046 Phenomenology +hep-ph/0208053 Phenomenology +hep-ph/0208054 Phenomenology +hep-ph/0208057 Phenomenology +hep-ph/0208058 Phenomenology +hep-ph/0208059 Phenomenology +hep-ph/0208060 Phenomenology +hep-ph/0208061 Phenomenology +hep-ph/0208064 Phenomenology +hep-ph/0208066 Phenomenology +hep-ph/0208067 Phenomenology +hep-ph/0208069 Phenomenology +hep-ph/0208071 Phenomenology +hep-ph/0208072 Phenomenology +hep-ph/0208073 Phenomenology +hep-ph/0208079 Phenomenology +hep-ph/0208081 Phenomenology +hep-ph/0208084 Phenomenology +hep-ph/0208086 Phenomenology +hep-ph/0208087 Phenomenology +hep-ph/0208088 Phenomenology +hep-ph/0208091 Phenomenology +hep-ph/0208102 Phenomenology +hep-ph/0208104 Phenomenology +hep-ph/0208115 Phenomenology +hep-ph/0208121 Phenomenology +hep-ph/0208122 Phenomenology +hep-ph/0208123 Phenomenology +hep-ph/0208124 Phenomenology +hep-ph/0208125 Phenomenology +hep-ph/0208126 Phenomenology +hep-ph/0208128 Phenomenology +hep-ph/0208130 Phenomenology +hep-ph/0208133 Phenomenology +hep-ph/0208134 Phenomenology +hep-ph/0208135 Phenomenology +hep-ph/0208136 Phenomenology +hep-ph/0208137 Phenomenology +hep-ph/0208138 Phenomenology +hep-ph/0208139 Phenomenology +hep-ph/0208143 Phenomenology +hep-ph/0208145 Phenomenology +hep-ph/0208146 Phenomenology +hep-ph/0208148 Phenomenology +hep-ph/0208151 Phenomenology +hep-ph/0208156 Phenomenology +hep-ph/0208157 Phenomenology +hep-ph/0208160 Phenomenology +hep-ph/0208161 Phenomenology +hep-ph/0208163 Phenomenology +hep-ph/0208168 Phenomenology +hep-ph/0208169 Phenomenology +hep-ph/0208174 Phenomenology +hep-ph/0208175 Phenomenology +hep-ph/0208178 Phenomenology +hep-ph/0208179 Phenomenology +hep-ph/0208181 Phenomenology +hep-ph/0208182 Phenomenology +hep-ph/0208183 Phenomenology +hep-ph/0208184 Phenomenology +hep-ph/0208185 Phenomenology +hep-ph/0208186 Phenomenology +hep-ph/0208187 Phenomenology +hep-ph/0208189 Phenomenology +hep-ph/0208191 Phenomenology +hep-ph/0208193 Phenomenology +hep-ph/0208196 Phenomenology +hep-ph/0208202 Phenomenology +hep-ph/0208204 Phenomenology +hep-ph/0208207 Phenomenology +hep-ph/0208208 Phenomenology +hep-ph/0208216 Phenomenology +hep-ph/0208221 Phenomenology +hep-ph/0208224 Phenomenology +hep-ph/0208226 Phenomenology +hep-ph/0208227 Phenomenology +hep-ph/0208228 Phenomenology +hep-ph/0208229 Phenomenology +hep-ph/0208235 Phenomenology +hep-ph/0208236 Phenomenology +hep-ph/0208248 Phenomenology +hep-ph/0208250 Phenomenology +hep-ph/0208252 Phenomenology +hep-ph/0208254 Phenomenology +hep-ph/0208256 Phenomenology +hep-ph/0208257 Phenomenology +hep-ph/0208261 Phenomenology +hep-ph/0208265 Phenomenology +hep-ph/0208268 Phenomenology +hep-ph/0208269 Phenomenology +hep-ph/0208272 Phenomenology +hep-ph/0208273 Phenomenology +hep-ph/0208277 Phenomenology +hep-ph/0209001 Phenomenology +hep-ph/0209004 Phenomenology +hep-ph/0209011 Phenomenology +hep-ph/0209016 Phenomenology +hep-ph/0209017 Phenomenology +hep-ph/0209018 Phenomenology +hep-ph/0209019 Phenomenology +hep-ph/0209020 Phenomenology +hep-ph/0209025 Phenomenology +hep-ph/0209027 Phenomenology +hep-ph/0209028 Phenomenology +hep-ph/0209033 Phenomenology +hep-ph/0209034 Phenomenology +hep-ph/0209035 Phenomenology +hep-ph/0209037 Phenomenology +hep-ph/0209041 Phenomenology +hep-ph/0209043 Phenomenology +hep-ph/0209044 Phenomenology +hep-ph/0209048 Phenomenology +hep-ph/0209050 Phenomenology +hep-ph/0209056 Phenomenology +hep-ph/0209060 Phenomenology +hep-ph/0209061 Phenomenology +hep-ph/0209063 Phenomenology +hep-ph/0209066 Phenomenology +hep-ph/0209067 Phenomenology +hep-ph/0209070 Phenomenology +hep-ph/0209072 Phenomenology +hep-ph/0209075 Phenomenology +hep-ph/0209078 Phenomenology +hep-ph/0209081 Phenomenology +hep-ph/0209083 Phenomenology +hep-ph/0209084 Phenomenology +hep-ph/0209086 Phenomenology +hep-ph/0209087 Phenomenology +hep-ph/0209088 Phenomenology +hep-ph/0209091 Phenomenology +hep-ph/0209094 Phenomenology +hep-ph/0209096 Phenomenology +hep-ph/0209097 Phenomenology +hep-ph/0209103 Phenomenology +hep-ph/0209105 Phenomenology +hep-ph/0209107 Phenomenology +hep-ph/0209110 Phenomenology +hep-ph/0209111 Phenomenology +hep-ph/0209112 Phenomenology +hep-ph/0209114 Phenomenology +hep-ph/0209115 Phenomenology +hep-ph/0209116 Phenomenology +hep-ph/0209118 Phenomenology +hep-ph/0209119 Phenomenology +hep-ph/0209123 Phenomenology +hep-ph/0209128 Phenomenology +hep-ph/0209132 Phenomenology +hep-ph/0209134 Phenomenology +hep-ph/0209139 Phenomenology +hep-ph/0209140 Phenomenology +hep-ph/0209141 Phenomenology +hep-ph/0209150 Phenomenology +hep-ph/0209159 Phenomenology +hep-ph/0209160 Phenomenology +hep-ph/0209164 Phenomenology +hep-ph/0209168 Phenomenology +hep-ph/0209169 Phenomenology +hep-ph/0209170 Phenomenology +hep-ph/0209172 Phenomenology +hep-ph/0209181 Phenomenology +hep-ph/0209182 Phenomenology +hep-ph/0209186 Phenomenology +hep-ph/0209190 Phenomenology +hep-ph/0209197 Phenomenology +hep-ph/0209200 Phenomenology +hep-ph/0209202 Phenomenology +hep-ph/0209203 Phenomenology +hep-ph/0209204 Phenomenology +hep-ph/0209206 Phenomenology +hep-ph/0209214 Phenomenology +hep-ph/0209215 Phenomenology +hep-ph/0209217 Phenomenology +hep-ph/0209218 Phenomenology +hep-ph/0209220 Phenomenology +hep-ph/0209223 Phenomenology +hep-ph/0209224 Phenomenology +hep-ph/0209225 Phenomenology +hep-ph/0209228 Phenomenology +hep-ph/0209233 Phenomenology +hep-ph/0209239 Phenomenology +hep-ph/0209241 Phenomenology +hep-ph/0209242 Phenomenology +hep-ph/0209247 Phenomenology +hep-ph/0209248 Phenomenology +hep-ph/0209249 Phenomenology +hep-ph/0209255 Phenomenology +hep-ph/0209256 Phenomenology +hep-ph/0209264 Phenomenology +hep-ph/0209266 Phenomenology +hep-ph/0209270 Phenomenology +hep-ph/0209271 Phenomenology +hep-ph/0209272 Phenomenology +hep-ph/0209273 Phenomenology +hep-ph/0209274 Phenomenology +hep-ph/0209275 Phenomenology +hep-ph/0209277 Phenomenology +hep-ph/0209280 Phenomenology +hep-ph/0209281 Phenomenology +hep-ph/0209282 Phenomenology +hep-ph/0209284 Phenomenology +hep-ph/0209291 Phenomenology +hep-ph/0209295 Phenomenology +hep-ph/0209297 Phenomenology +hep-ph/0209298 Phenomenology +hep-ph/0209301 Phenomenology +hep-ph/0209302 Phenomenology +hep-ph/0209304 Phenomenology +hep-ph/0209305 Phenomenology +hep-ph/0209306 Phenomenology +hep-ph/0209309 Phenomenology +hep-ph/0209310 Phenomenology +hep-ph/0209311 Phenomenology +hep-ph/0209317 Phenomenology +hep-ph/0209319 Phenomenology +hep-ph/0209320 Phenomenology +hep-ph/0209322 Phenomenology +hep-ph/0209324 Phenomenology +hep-ph/0209329 Phenomenology +hep-ph/0209332 Phenomenology +hep-ph/0209333 Phenomenology +hep-ph/0209336 Phenomenology +hep-ph/0209340 Phenomenology +hep-ph/0209342 Phenomenology +hep-ph/0209343 Phenomenology +hep-ph/0209345 Phenomenology +hep-ph/0209351 Phenomenology +hep-ph/0209352 Phenomenology +hep-ph/0209355 Phenomenology +hep-ph/0209356 Phenomenology +hep-ph/0209357 Phenomenology +hep-ph/0209358 Phenomenology +hep-ph/0209367 Phenomenology +hep-ph/0209369 Phenomenology +hep-ph/0209370 Phenomenology +hep-ph/0209372 Phenomenology +hep-ph/0209373 Phenomenology +hep-ph/0209374 Phenomenology +hep-ph/0209375 Phenomenology +hep-ph/0209376 Phenomenology +hep-ph/0209377 Phenomenology +hep-ph/0210001 Phenomenology +hep-ph/0210002 Phenomenology +hep-ph/0210005 Phenomenology +hep-ph/0210006 Phenomenology +hep-ph/0210009 Phenomenology +hep-ph/0210011 Phenomenology +hep-ph/0210014 Phenomenology +hep-ph/0210016 Phenomenology +hep-ph/0210020 Phenomenology +hep-ph/0210022 Phenomenology +hep-ph/0210026 Phenomenology +hep-ph/0210030 Phenomenology +hep-ph/0210031 Phenomenology +hep-ph/0210032 Phenomenology +hep-ph/0210033 Phenomenology +hep-ph/0210034 Phenomenology +hep-ph/0210035 Phenomenology +hep-ph/0210039 Phenomenology +hep-ph/0210040 Phenomenology +hep-ph/0210044 Phenomenology +hep-ph/0210047 Phenomenology +hep-ph/0210050 Phenomenology +hep-ph/0210055 Phenomenology +hep-ph/0210057 Phenomenology +hep-ph/0210059 Phenomenology +hep-ph/0210060 Phenomenology +hep-ph/0210061 Phenomenology +hep-ph/0210062 Phenomenology +hep-ph/0210064 Phenomenology +hep-ph/0210066 Phenomenology +hep-ph/0210067 Phenomenology +hep-ph/0210068 Phenomenology +hep-ph/0210069 Phenomenology +hep-ph/0210073 Phenomenology +hep-ph/0210076 Phenomenology +hep-ph/0210086 Phenomenology +hep-ph/0210091 Phenomenology +hep-ph/0210092 Phenomenology +hep-ph/0210094 Phenomenology +hep-ph/0210095 Phenomenology +hep-ph/0210096 Phenomenology +hep-ph/0210097 Phenomenology +hep-ph/0210100 Phenomenology +hep-ph/0210102 Phenomenology +hep-ph/0210103 Phenomenology +hep-ph/0210104 Phenomenology +hep-ph/0210105 Phenomenology +hep-ph/0210106 Phenomenology +hep-ph/0210108 Phenomenology +hep-ph/0210109 Phenomenology +hep-ph/0210110 Phenomenology +hep-ph/0210111 Phenomenology +hep-ph/0210116 Phenomenology +hep-ph/0210126 Phenomenology +hep-ph/0210131 Phenomenology +hep-ph/0210139 Phenomenology +hep-ph/0210141 Phenomenology +hep-ph/0210144 Phenomenology +hep-ph/0210150 Phenomenology +hep-ph/0210151 Phenomenology +hep-ph/0210153 Phenomenology +hep-ph/0210155 Phenomenology +hep-ph/0210157 Phenomenology +hep-ph/0210159 Phenomenology +hep-ph/0210161 Phenomenology +hep-ph/0210163 Phenomenology +hep-ph/0210164 Phenomenology +hep-ph/0210165 Phenomenology +hep-ph/0210166 Phenomenology +hep-ph/0210168 Phenomenology +hep-ph/0210172 Phenomenology +hep-ph/0210173 Phenomenology +hep-ph/0210174 Phenomenology +hep-ph/0210179 Phenomenology +hep-ph/0210180 Phenomenology +hep-ph/0210182 Phenomenology +hep-ph/0210183 Phenomenology +hep-ph/0210184 Phenomenology +hep-ph/0210185 Phenomenology +hep-ph/0210187 Phenomenology +hep-ph/0210189 Phenomenology +hep-ph/0210190 Phenomenology +hep-ph/0210191 Phenomenology +hep-ph/0210196 Phenomenology +hep-ph/0210197 Phenomenology +hep-ph/0210198 Phenomenology +hep-ph/0210199 Phenomenology +hep-ph/0210200 Phenomenology +hep-ph/0210201 Phenomenology +hep-ph/0210202 Phenomenology +hep-ph/0210204 Phenomenology +hep-ph/0210207 Phenomenology +hep-ph/0210208 Phenomenology +hep-ph/0210209 Phenomenology +hep-ph/0210210 Phenomenology +hep-ph/0210214 Phenomenology +hep-ph/0210216 Phenomenology +hep-ph/0210217 Phenomenology +hep-ph/0210219 Phenomenology +hep-ph/0210220 Phenomenology +hep-ph/0210221 Phenomenology +hep-ph/0210222 Phenomenology +hep-ph/0210223 Phenomenology +hep-ph/0210226 Phenomenology +hep-ph/0210228 Phenomenology +hep-ph/0210230 Phenomenology +hep-ph/0210231 Phenomenology +hep-ph/0210232 Phenomenology +hep-ph/0210234 Phenomenology +hep-ph/0210238 Phenomenology +hep-ph/0210239 Phenomenology +hep-ph/0210240 Phenomenology +hep-ph/0210243 Phenomenology +hep-ph/0210244 Phenomenology +hep-ph/0210246 Phenomenology +hep-ph/0210253 Phenomenology +hep-ph/0210256 Phenomenology +hep-ph/0210259 Phenomenology +hep-ph/0210260 Phenomenology +hep-ph/0210265 Phenomenology +hep-ph/0210268 Phenomenology +hep-ph/0210273 Phenomenology +hep-ph/0210275 Phenomenology +hep-ph/0210277 Phenomenology +hep-ph/0210278 Phenomenology +hep-ph/0210281 Phenomenology +hep-ph/0210282 Phenomenology +hep-ph/0210284 Phenomenology +hep-ph/0210287 Phenomenology +hep-ph/0210289 Phenomenology +hep-ph/0210293 Phenomenology +hep-ph/0210296 Phenomenology +hep-ph/0210297 Phenomenology +hep-ph/0210300 Phenomenology +hep-ph/0210301 Phenomenology +hep-ph/0210304 Phenomenology +hep-ph/0210305 Phenomenology +hep-ph/0210309 Phenomenology +hep-ph/0210312 Phenomenology +hep-ph/0210317 Phenomenology +hep-ph/0210318 Phenomenology +hep-ph/0210333 Phenomenology +hep-ph/0210335 Phenomenology +hep-ph/0210336 Phenomenology +hep-ph/0210340 Phenomenology +hep-ph/0210342 Phenomenology +hep-ph/0210343 Phenomenology +hep-ph/0210344 Phenomenology +hep-ph/0210345 Phenomenology +hep-ph/0210347 Phenomenology +hep-ph/0210355 Phenomenology +hep-ph/0210357 Phenomenology +hep-ph/0210358 Phenomenology +hep-ph/0210361 Phenomenology +hep-ph/0210364 Phenomenology +hep-ph/0210369 Phenomenology +hep-ph/0210371 Phenomenology +hep-ph/0210382 Phenomenology +hep-ph/0210383 Phenomenology +hep-ph/0210385 Phenomenology +hep-ph/0210386 Phenomenology +hep-ph/0210387 Phenomenology +hep-ph/0210388 Phenomenology +hep-ph/0210389 Phenomenology +hep-ph/0210393 Phenomenology +hep-ph/0210396 Phenomenology +hep-ph/0210397 Phenomenology +hep-ph/0210400 Phenomenology +hep-ph/0210403 Phenomenology +hep-ph/0210404 Phenomenology +hep-ph/0210405 Phenomenology +hep-ph/0210406 Phenomenology +hep-ph/0210408 Phenomenology +hep-ph/0210413 Phenomenology +hep-ph/0210418 Phenomenology +hep-ph/0210422 Phenomenology +hep-ph/0210423 Phenomenology +hep-ph/0210426 Phenomenology +hep-ph/0210427 Phenomenology +hep-ph/0210429 Phenomenology +hep-ph/0210430 Phenomenology +hep-ph/0210434 Phenomenology +hep-ph/0210435 Phenomenology +hep-ph/0210437 Phenomenology +hep-ph/0210439 Phenomenology +hep-ph/0210441 Phenomenology +hep-ph/0210442 Phenomenology +hep-ph/0210445 Phenomenology +hep-ph/0210447 Phenomenology +hep-ph/0211011 Phenomenology +hep-ph/0211012 Phenomenology +hep-ph/0211016 Phenomenology +hep-ph/0211022 Phenomenology +hep-ph/0211028 Phenomenology +hep-ph/0211031 Phenomenology +hep-ph/0211036 Phenomenology +hep-ph/0211041 Phenomenology +hep-ph/0211044 Phenomenology +hep-ph/0211045 Phenomenology +hep-ph/0211046 Phenomenology +hep-ph/0211049 Phenomenology +hep-ph/0211050 Phenomenology +hep-ph/0211058 Phenomenology +hep-ph/0211061 Phenomenology +hep-ph/0211063 Phenomenology +hep-ph/0211068 Phenomenology +hep-ph/0211069 Phenomenology +hep-ph/0211070 Phenomenology +hep-ph/0211074 Phenomenology +hep-ph/0211075 Phenomenology +hep-ph/0211076 Phenomenology +hep-ph/0211078 Phenomenology +hep-ph/0211083 Phenomenology +hep-ph/0211086 Phenomenology +hep-ph/0211088 Phenomenology +hep-ph/0211089 Phenomenology +hep-ph/0211090 Phenomenology +hep-ph/0211091 Phenomenology +hep-ph/0211093 Phenomenology +hep-ph/0211096 Phenomenology +hep-ph/0211104 Phenomenology +hep-ph/0211107 Phenomenology +hep-ph/0211108 Phenomenology +hep-ph/0211109 Phenomenology +hep-ph/0211116 Phenomenology +hep-ph/0211125 Phenomenology +hep-ph/0211130 Phenomenology +hep-ph/0211132 Phenomenology +hep-ph/0211133 Phenomenology +hep-ph/0211135 Phenomenology +hep-ph/0211138 Phenomenology +hep-ph/0211146 Phenomenology +hep-ph/0211147 Phenomenology +hep-ph/0211149 Phenomenology +hep-ph/0211151 Phenomenology +hep-ph/0211155 Phenomenology +hep-ph/0211156 Phenomenology +hep-ph/0211157 Phenomenology +hep-ph/0211160 Phenomenology +hep-ph/0211161 Phenomenology +hep-ph/0211162 Phenomenology +hep-ph/0211163 Phenomenology +hep-ph/0211165 Phenomenology +hep-ph/0211167 Phenomenology +hep-ph/0211170 Phenomenology +hep-ph/0211171 Phenomenology +hep-ph/0211175 Phenomenology +hep-ph/0211178 Phenomenology +hep-ph/0211179 Phenomenology +hep-ph/0211182 Phenomenology +hep-ph/0211184 Phenomenology +hep-ph/0211186 Phenomenology +hep-ph/0211187 Phenomenology +hep-ph/0211188 Phenomenology +hep-ph/0211189 Phenomenology +hep-ph/0211190 Phenomenology +hep-ph/0211193 Phenomenology +hep-ph/0211194 Phenomenology +hep-ph/0211195 Phenomenology +hep-ph/0211197 Phenomenology +hep-ph/0211198 Phenomenology +hep-ph/0211201 Phenomenology +hep-ph/0211202 Phenomenology +hep-ph/0211205 Phenomenology +hep-ph/0211206 Phenomenology +hep-ph/0211208 Phenomenology +hep-ph/0211209 Phenomenology +hep-ph/0211210 Phenomenology +hep-ph/0211215 Phenomenology +hep-ph/0211217 Phenomenology +hep-ph/0211218 Phenomenology +hep-ph/0211219 Phenomenology +hep-ph/0211220 Phenomenology +hep-ph/0211223 Phenomenology +hep-ph/0211226 Phenomenology +hep-ph/0211228 Phenomenology +hep-ph/0211231 Phenomenology +hep-ph/0211232 Phenomenology +hep-ph/0211234 Phenomenology +hep-ph/0211235 Phenomenology +hep-ph/0211237 Phenomenology +hep-ph/0211238 Phenomenology +hep-ph/0211241 Phenomenology +hep-ph/0211243 Phenomenology +hep-ph/0211246 Phenomenology +hep-ph/0211248 Phenomenology +hep-ph/0211249 Phenomenology +hep-ph/0211250 Phenomenology +hep-ph/0211253 Phenomenology +hep-ph/0211255 Phenomenology +hep-ph/0211256 Phenomenology +hep-ph/0211268 Phenomenology +hep-ph/0211270 Phenomenology +hep-ph/0211271 Phenomenology +hep-ph/0211274 Phenomenology +hep-ph/0211277 Phenomenology +hep-ph/0211279 Phenomenology +hep-ph/0211284 Phenomenology +hep-ph/0211285 Phenomenology +hep-ph/0211288 Phenomenology +hep-ph/0211294 Phenomenology +hep-ph/0211296 Phenomenology +hep-ph/0211297 Phenomenology +hep-ph/0211300 Phenomenology +hep-ph/0211301 Phenomenology +hep-ph/0211303 Phenomenology +hep-ph/0211306 Phenomenology +hep-ph/0211308 Phenomenology +hep-ph/0211309 Phenomenology +hep-ph/0211321 Phenomenology +hep-ph/0211324 Phenomenology +hep-ph/0211325 Phenomenology +hep-ph/0211326 Phenomenology +hep-ph/0211328 Phenomenology +hep-ph/0211332 Phenomenology +hep-ph/0211336 Phenomenology +hep-ph/0211337 Phenomenology +hep-ph/0211338 Phenomenology +hep-ph/0211339 Phenomenology +hep-ph/0211340 Phenomenology +hep-ph/0211341 Phenomenology +hep-ph/0211342 Phenomenology +hep-ph/0211351 Phenomenology +hep-ph/0211353 Phenomenology +hep-ph/0211354 Phenomenology +hep-ph/0211365 Phenomenology +hep-ph/0211366 Phenomenology +hep-ph/0211367 Phenomenology +hep-ph/0211370 Phenomenology +hep-ph/0211372 Phenomenology +hep-ph/0211373 Phenomenology +hep-ph/0211374 Phenomenology +hep-ph/0211380 Phenomenology +hep-ph/0211382 Phenomenology +hep-ph/0211384 Phenomenology +hep-ph/0211386 Phenomenology +hep-ph/0211389 Phenomenology +hep-ph/0211390 Phenomenology +hep-ph/0211392 Phenomenology +hep-ph/0211394 Phenomenology +hep-ph/0211396 Phenomenology +hep-ph/0211400 Phenomenology +hep-ph/0211402 Phenomenology +hep-ph/0211404 Phenomenology +hep-ph/0211409 Phenomenology +hep-ph/0211410 Phenomenology +hep-ph/0211416 Phenomenology +hep-ph/0211419 Phenomenology +hep-ph/0211426 Phenomenology +hep-ph/0211429 Phenomenology +hep-ph/0211436 Phenomenology +hep-ph/0211439 Phenomenology +hep-ph/0211440 Phenomenology +hep-ph/0211444 Phenomenology +hep-ph/0211445 Phenomenology +hep-ph/0211446 Phenomenology +hep-ph/0211450 Phenomenology +hep-ph/0211451 Phenomenology +hep-ph/0211452 Phenomenology +hep-ph/0211453 Phenomenology +hep-ph/0211458 Phenomenology +hep-ph/0211466 Phenomenology +hep-ph/0212001 Phenomenology +hep-ph/0212003 Phenomenology +hep-ph/0212004 Phenomenology +hep-ph/0212009 Phenomenology +hep-ph/0212010 Phenomenology +hep-ph/0212011 Phenomenology +hep-ph/0212013 Phenomenology +hep-ph/0212017 Phenomenology +hep-ph/0212018 Phenomenology +hep-ph/0212022 Phenomenology +hep-ph/0212023 Phenomenology +hep-ph/0212024 Phenomenology +hep-ph/0212026 Phenomenology +hep-ph/0212033 Phenomenology +hep-ph/0212034 Phenomenology +hep-ph/0212043 Phenomenology +hep-ph/0212045 Phenomenology +hep-ph/0212051 Phenomenology +hep-ph/0212057 Phenomenology +hep-ph/0212058 Phenomenology +hep-ph/0212063 Phenomenology +hep-ph/0212066 Phenomenology +hep-ph/0212067 Phenomenology +hep-ph/0212068 Phenomenology +hep-ph/0212069 Phenomenology +hep-ph/0212073 Phenomenology +hep-ph/0212074 Phenomenology +hep-ph/0212079 Phenomenology +hep-ph/0212084 Phenomenology +hep-ph/0212085 Phenomenology +hep-ph/0212086 Phenomenology +hep-ph/0212088 Phenomenology +hep-ph/0212094 Phenomenology +hep-ph/0212096 Phenomenology +hep-ph/0212097 Phenomenology +hep-ph/0212098 Phenomenology +hep-ph/0212099 Phenomenology +hep-ph/0212105 Phenomenology +hep-ph/0212106 Phenomenology +hep-ph/0212112 Phenomenology +hep-ph/0212117 Phenomenology +hep-ph/0212125 Phenomenology +hep-ph/0212138 Phenomenology +hep-ph/0212141 Phenomenology +hep-ph/0212142 Phenomenology +hep-ph/0212144 Phenomenology +hep-ph/0212146 Phenomenology +hep-ph/0212149 Phenomenology +hep-ph/0212151 Phenomenology +hep-ph/0212152 Phenomenology +hep-ph/0212155 Phenomenology +hep-ph/0212164 Phenomenology +hep-ph/0212165 Phenomenology +hep-ph/0212167 Phenomenology +hep-ph/0212170 Phenomenology +hep-ph/0212172 Phenomenology +hep-ph/0212177 Phenomenology +hep-ph/0212186 Phenomenology +hep-ph/0212188 Phenomenology +hep-ph/0212202 Phenomenology +hep-ph/0212205 Phenomenology +hep-ph/0212206 Phenomenology +hep-ph/0212211 Phenomenology +hep-ph/0212213 Phenomenology +hep-ph/0212215 Phenomenology +hep-ph/0212220 Phenomenology +hep-ph/0212231 Phenomenology +hep-ph/0212234 Phenomenology +hep-ph/0212238 Phenomenology +hep-ph/0212241 Phenomenology +hep-ph/0212244 Phenomenology +hep-ph/0212250 Phenomenology +hep-ph/0212254 Phenomenology +hep-ph/0212255 Phenomenology +hep-ph/0212256 Phenomenology +hep-ph/0212258 Phenomenology +hep-ph/0212260 Phenomenology +hep-ph/0212263 Phenomenology +hep-ph/0212265 Phenomenology +hep-ph/0212266 Phenomenology +hep-ph/0212270 Phenomenology +hep-ph/0212272 Phenomenology +hep-ph/0212274 Phenomenology +hep-ph/0212275 Phenomenology +hep-ph/0212276 Phenomenology +hep-ph/0212280 Phenomenology +hep-ph/0212283 Phenomenology +hep-ph/0212284 Phenomenology +hep-ph/0212289 Phenomenology +hep-ph/0212293 Phenomenology +hep-ph/0212294 Phenomenology +hep-ph/0212295 Phenomenology +hep-ph/0212296 Phenomenology +hep-ph/0212300 Phenomenology +hep-ph/0212312 Phenomenology +hep-ph/0212315 Phenomenology +hep-ph/0212318 Phenomenology +hep-ph/0212319 Phenomenology +hep-ph/0212320 Phenomenology +hep-ph/0212322 Phenomenology +hep-ph/0212323 Phenomenology +hep-ph/0212332 Phenomenology +hep-ph/0212333 Phenomenology +hep-ph/0212336 Phenomenology +hep-ph/0212338 Phenomenology +hep-ph/0212341 Phenomenology +hep-ph/0212342 Phenomenology +hep-ph/0212344 Phenomenology +hep-ph/0212345 Phenomenology +hep-ph/0212346 Phenomenology +hep-ph/0212348 Phenomenology +hep-ph/0212350 Phenomenology +hep-ph/0212351 Phenomenology +hep-ph/0212353 Phenomenology +hep-ph/0212354 Phenomenology +hep-ph/0212355 Phenomenology +hep-ph/0212356 Phenomenology +hep-ph/0212357 Phenomenology +hep-ph/0212358 Phenomenology +hep-ph/0212359 Phenomenology +hep-ph/0212362 Phenomenology +hep-ph/0212363 Phenomenology +hep-ph/0212364 Phenomenology +hep-ph/0212366 Phenomenology +hep-ph/0212371 Phenomenology +hep-ph/0212375 Phenomenology +hep-ph/0212377 Phenomenology +hep-ph/0212378 Phenomenology +hep-ph/0212381 Phenomenology +hep-ph/0212383 Phenomenology +hep-ph/0212386 Phenomenology +hep-ph/0212389 Phenomenology +hep-ph/0212391 Phenomenology +hep-ph/0212393 Phenomenology +hep-ph/0212396 Phenomenology +hep-ph/0212400 Phenomenology +hep-ph/0212405 Phenomenology +hep-th/0101008 Theory +hep-th/0101010 Theory +hep-th/0101011 Theory +hep-th/0101013 Theory +hep-th/0101014 Theory +hep-th/0101015 Theory +hep-th/0101016 Theory +hep-th/0101017 Theory +hep-th/0101020 Theory +hep-th/0101024 Theory +hep-th/0101025 Theory +hep-th/0101027 Theory +hep-th/0101031 Theory +hep-th/0101032 Theory +hep-th/0101033 Theory +hep-th/0101035 Theory +hep-th/0101036 Theory +hep-th/0101038 Theory +hep-th/0101040 Theory +hep-th/0101041 Theory +hep-th/0101042 Theory +hep-th/0101047 Theory +hep-th/0101049 Theory +hep-th/0101051 Theory +hep-th/0101053 Theory +hep-th/0101056 Theory +hep-th/0101060 Theory +hep-th/0101061 Theory +hep-th/0101062 Theory +hep-th/0101064 Theory +hep-th/0101067 Theory +hep-th/0101069 Theory +hep-th/0101072 Theory +hep-th/0101073 Theory +hep-th/0101074 Theory +hep-th/0101075 Theory +hep-th/0101076 Theory +hep-th/0101077 Theory +hep-th/0101078 Theory +hep-th/0101080 Theory +hep-th/0101082 Theory +hep-th/0101083 Theory +hep-th/0101088 Theory +hep-th/0101090 Theory +hep-th/0101094 Theory +hep-th/0101095 Theory +hep-th/0101097 Theory +hep-th/0101101 Theory +hep-th/0101102 Theory +hep-th/0101105 Theory +hep-th/0101108 Theory +hep-th/0101109 Theory +hep-th/0101112 Theory +hep-th/0101114 Theory +hep-th/0101117 Theory +hep-th/0101119 Theory +hep-th/0101120 Theory +hep-th/0101125 Theory +hep-th/0101127 Theory +hep-th/0101130 Theory +hep-th/0101131 Theory +hep-th/0101132 Theory +hep-th/0101133 Theory +hep-th/0101138 Theory +hep-th/0101139 Theory +hep-th/0101142 Theory +hep-th/0101145 Theory +hep-th/0101147 Theory +hep-th/0101149 Theory +hep-th/0101151 Theory +hep-th/0101155 Theory +hep-th/0101156 Theory +hep-th/0101159 Theory +hep-th/0101160 Theory +hep-th/0101161 Theory +hep-th/0101162 Theory +hep-th/0101163 Theory +hep-th/0101165 Theory +hep-th/0101166 Theory +hep-th/0101170 Theory +hep-th/0101172 Theory +hep-th/0101173 Theory +hep-th/0101177 Theory +hep-th/0101178 Theory +hep-th/0101179 Theory +hep-th/0101180 Theory +hep-th/0101183 Theory +hep-th/0101186 Theory +hep-th/0101187 Theory +hep-th/0101189 Theory +hep-th/0101191 Theory +hep-th/0101192 Theory +hep-th/0101195 Theory +hep-th/0101196 Theory +hep-th/0101200 Theory +hep-th/0101201 Theory +hep-th/0101203 Theory +hep-th/0101204 Theory +hep-th/0101208 Theory +hep-th/0101211 Theory +hep-th/0101215 Theory +hep-th/0101219 Theory +hep-th/0101221 Theory +hep-th/0101222 Theory +hep-th/0101225 Theory +hep-th/0101226 Theory +hep-th/0101228 Theory +hep-th/0101231 Theory +hep-th/0101233 Theory +hep-th/0102001 Theory +hep-th/0102003 Theory +hep-th/0102004 Theory +hep-th/0102006 Theory +hep-th/0102012 Theory +hep-th/0102013 Theory +hep-th/0102015 Theory +hep-th/0102020 Theory +hep-th/0102022 Theory +hep-th/0102026 Theory +hep-th/0102027 Theory +hep-th/0102029 Theory +hep-th/0102031 Theory +hep-th/0102033 Theory +hep-th/0102035 Theory +hep-th/0102037 Theory +hep-th/0102039 Theory +hep-th/0102046 Theory +hep-th/0102047 Theory +hep-th/0102048 Theory +hep-th/0102054 Theory +hep-th/0102057 Theory +hep-th/0102064 Theory +hep-th/0102065 Theory +hep-th/0102066 Theory +hep-th/0102068 Theory +hep-th/0102070 Theory +hep-th/0102073 Theory +hep-th/0102074 Theory +hep-th/0102075 Theory +hep-th/0102079 Theory +hep-th/0102083 Theory +hep-th/0102084 Theory +hep-th/0102086 Theory +hep-th/0102091 Theory +hep-th/0102093 Theory +hep-th/0102097 Theory +hep-th/0102098 Theory +hep-th/0102099 Theory +hep-th/0102101 Theory +hep-th/0102104 Theory +hep-th/0102106 Theory +hep-th/0102111 Theory +hep-th/0102113 Theory +hep-th/0102119 Theory +hep-th/0102120 Theory +hep-th/0102127 Theory +hep-th/0102129 Theory +hep-th/0102131 Theory +hep-th/0102134 Theory +hep-th/0102135 Theory +hep-th/0102137 Theory +hep-th/0102141 Theory +hep-th/0102142 Theory +hep-th/0102143 Theory +hep-th/0102145 Theory +hep-th/0102147 Theory +hep-th/0102149 Theory +hep-th/0102150 Theory +hep-th/0102154 Theory +hep-th/0102155 Theory +hep-th/0102156 Theory +hep-th/0102157 Theory +hep-th/0102159 Theory +hep-th/0102160 Theory +hep-th/0102161 Theory +hep-th/0102162 Theory +hep-th/0102163 Theory +hep-th/0102167 Theory +hep-th/0102168 Theory +hep-th/0102169 Theory +hep-th/0102170 Theory +hep-th/0102172 Theory +hep-th/0102174 Theory +hep-th/0102175 Theory +hep-th/0102176 Theory +hep-th/0102177 Theory +hep-th/0102178 Theory +hep-th/0102180 Theory +hep-th/0102181 Theory +hep-th/0102188 Theory +hep-th/0102192 Theory +hep-th/0102194 Theory +hep-th/0102195 Theory +hep-th/0102197 Theory +hep-th/0102203 Theory +hep-th/0102205 Theory +hep-th/0102206 Theory +hep-th/0102207 Theory +hep-th/0102208 Theory +hep-th/0102210 Theory +hep-th/0102211 Theory +hep-th/0102212 Theory +hep-th/0103001 Theory +hep-th/0103005 Theory +hep-th/0103006 Theory +hep-th/0103009 Theory +hep-th/0103010 Theory +hep-th/0103015 Theory +hep-th/0103016 Theory +hep-th/0103021 Theory +hep-th/0103022 Theory +hep-th/0103024 Theory +hep-th/0103025 Theory +hep-th/0103026 Theory +hep-th/0103031 Theory +hep-th/0103036 Theory +hep-th/0103038 Theory +hep-th/0103039 Theory +hep-th/0103040 Theory +hep-th/0103042 Theory +hep-th/0103045 Theory +hep-th/0103046 Theory +hep-th/0103047 Theory +hep-th/0103049 Theory +hep-th/0103054 Theory +hep-th/0103057 Theory +hep-th/0103059 Theory +hep-th/0103061 Theory +hep-th/0103062 Theory +hep-th/0103064 Theory +hep-th/0103066 Theory +hep-th/0103068 Theory +hep-th/0103070 Theory +hep-th/0103071 Theory +hep-th/0103072 Theory +hep-th/0103073 Theory +hep-th/0103074 Theory +hep-th/0103075 Theory +hep-th/0103077 Theory +hep-th/0103079 Theory +hep-th/0103081 Theory +hep-th/0103084 Theory +hep-th/0103085 Theory +hep-th/0103086 Theory +hep-th/0103087 Theory +hep-th/0103091 Theory +hep-th/0103094 Theory +hep-th/0103102 Theory +hep-th/0103105 Theory +hep-th/0103106 Theory +hep-th/0103107 Theory +hep-th/0103112 Theory +hep-th/0103115 Theory +hep-th/0103116 Theory +hep-th/0103117 Theory +hep-th/0103119 Theory +hep-th/0103123 Theory +hep-th/0103126 Theory +hep-th/0103128 Theory +hep-th/0103130 Theory +hep-th/0103133 Theory +hep-th/0103134 Theory +hep-th/0103139 Theory +hep-th/0103142 Theory +hep-th/0103144 Theory +hep-th/0103145 Theory +hep-th/0103148 Theory +hep-th/0103149 Theory +hep-th/0103150 Theory +hep-th/0103151 Theory +hep-th/0103152 Theory +hep-th/0103154 Theory +hep-th/0103157 Theory +hep-th/0103158 Theory +hep-th/0103161 Theory +hep-th/0103164 Theory +hep-th/0103169 Theory +hep-th/0103173 Theory +hep-th/0103175 Theory +hep-th/0103177 Theory +hep-th/0103178 Theory +hep-th/0103180 Theory +hep-th/0103181 Theory +hep-th/0103185 Theory +hep-th/0103187 Theory +hep-th/0103190 Theory +hep-th/0103191 Theory +hep-th/0103192 Theory +hep-th/0103195 Theory +hep-th/0103197 Theory +hep-th/0103199 Theory +hep-th/0103200 Theory +hep-th/0103202 Theory +hep-th/0103206 Theory +hep-th/0103210 Theory +hep-th/0103216 Theory +hep-th/0103219 Theory +hep-th/0103224 Theory +hep-th/0103226 Theory +hep-th/0103228 Theory +hep-th/0103229 Theory +hep-th/0103230 Theory +hep-th/0103231 Theory +hep-th/0103236 Theory +hep-th/0103237 Theory +hep-th/0103238 Theory +hep-th/0103240 Theory +hep-th/0103242 Theory +hep-th/0103244 Theory +hep-th/0103245 Theory +hep-th/0103247 Theory +hep-th/0103248 Theory +hep-th/0103249 Theory +hep-th/0103252 Theory +hep-th/0103254 Theory +hep-th/0103256 Theory +hep-th/0103259 Theory +hep-th/0103260 Theory +hep-th/0103262 Theory +hep-th/0103264 Theory +hep-th/0103265 Theory +hep-th/0104003 Theory +hep-th/0104007 Theory +hep-th/0104009 Theory +hep-th/0104010 Theory +hep-th/0104011 Theory +hep-th/0104012 Theory +hep-th/0104013 Theory +hep-th/0104019 Theory +hep-th/0104020 Theory +hep-th/0104024 Theory +hep-th/0104026 Theory +hep-th/0104035 Theory +hep-th/0104038 Theory +hep-th/0104040 Theory +hep-th/0104041 Theory +hep-th/0104044 Theory +hep-th/0104048 Theory +hep-th/0104049 Theory +hep-th/0104051 Theory +hep-th/0104052 Theory +hep-th/0104054 Theory +hep-th/0104055 Theory +hep-th/0104065 Theory +hep-th/0104069 Theory +hep-th/0104071 Theory +hep-th/0104075 Theory +hep-th/0104078 Theory +hep-th/0104081 Theory +hep-th/0104085 Theory +hep-th/0104087 Theory +hep-th/0104088 Theory +hep-th/0104089 Theory +hep-th/0104091 Theory +hep-th/0104096 Theory +hep-th/0104097 Theory +hep-th/0104098 Theory +hep-th/0104099 Theory +hep-th/0104101 Theory +hep-th/0104107 Theory +hep-th/0104108 Theory +hep-th/0104115 Theory +hep-th/0104118 Theory +hep-th/0104119 Theory +hep-th/0104120 Theory +hep-th/0104121 Theory +hep-th/0104124 Theory +hep-th/0104126 Theory +hep-th/0104130 Theory +hep-th/0104135 Theory +hep-th/0104136 Theory +hep-th/0104138 Theory +hep-th/0104139 Theory +hep-th/0104141 Theory +hep-th/0104150 Theory +hep-th/0104152 Theory +hep-th/0104155 Theory +hep-th/0104156 Theory +hep-th/0104157 Theory +hep-th/0104160 Theory +hep-th/0104162 Theory +hep-th/0104163 Theory +hep-th/0104164 Theory +hep-th/0104165 Theory +hep-th/0104166 Theory +hep-th/0104170 Theory +hep-th/0104171 Theory +hep-th/0104174 Theory +hep-th/0104175 Theory +hep-th/0104179 Theory +hep-th/0104180 Theory +hep-th/0104184 Theory +hep-th/0104188 Theory +hep-th/0104189 Theory +hep-th/0104190 Theory +hep-th/0104191 Theory +hep-th/0104192 Theory +hep-th/0104196 Theory +hep-th/0104198 Theory +hep-th/0104206 Theory +hep-th/0104208 Theory +hep-th/0104209 Theory +hep-th/0104211 Theory +hep-th/0104215 Theory +hep-th/0104217 Theory +hep-th/0104221 Theory +hep-th/0104222 Theory +hep-th/0104225 Theory +hep-th/0104226 Theory +hep-th/0104227 Theory +hep-th/0104228 Theory +hep-th/0104229 Theory +hep-th/0104230 Theory +hep-th/0104234 Theory +hep-th/0104240 Theory +hep-th/0104241 Theory +hep-th/0104242 Theory +hep-th/0104244 Theory +hep-th/0104245 Theory +hep-th/0104247 Theory +hep-th/0104250 Theory +hep-th/0104251 Theory +hep-th/0104252 Theory +hep-th/0104257 Theory +hep-th/0104260 Theory +hep-th/0104261 Theory +hep-th/0104262 Theory +hep-th/0104263 Theory +hep-th/0105002 Theory +hep-th/0105005 Theory +hep-th/0105007 Theory +hep-th/0105008 Theory +hep-th/0105009 Theory +hep-th/0105012 Theory +hep-th/0105013 Theory +hep-th/0105015 Theory +hep-th/0105016 Theory +hep-th/0105018 Theory +hep-th/0105019 Theory +hep-th/0105023 Theory +hep-th/0105024 Theory +hep-th/0105027 Theory +hep-th/0105028 Theory +hep-th/0105029 Theory +hep-th/0105033 Theory +hep-th/0105034 Theory +hep-th/0105036 Theory +hep-th/0105037 Theory +hep-th/0105038 Theory +hep-th/0105039 Theory +hep-th/0105040 Theory +hep-th/0105041 Theory +hep-th/0105042 Theory +hep-th/0105043 Theory +hep-th/0105044 Theory +hep-th/0105046 Theory +hep-th/0105048 Theory +hep-th/0105053 Theory +hep-th/0105054 Theory +hep-th/0105058 Theory +hep-th/0105061 Theory +hep-th/0105062 Theory +hep-th/0105064 Theory +hep-th/0105066 Theory +hep-th/0105070 Theory +hep-th/0105073 Theory +hep-th/0105077 Theory +hep-th/0105078 Theory +hep-th/0105079 Theory +hep-th/0105081 Theory +hep-th/0105083 Theory +hep-th/0105085 Theory +hep-th/0105088 Theory +hep-th/0105092 Theory +hep-th/0105093 Theory +hep-th/0105094 Theory +hep-th/0105095 Theory +hep-th/0105099 Theory +hep-th/0105102 Theory +hep-th/0105103 Theory +hep-th/0105106 Theory +hep-th/0105107 Theory +hep-th/0105111 Theory +hep-th/0105112 Theory +hep-th/0105113 Theory +hep-th/0105114 Theory +hep-th/0105115 Theory +hep-th/0105118 Theory +hep-th/0105121 Theory +hep-th/0105122 Theory +hep-th/0105123 Theory +hep-th/0105125 Theory +hep-th/0105126 Theory +hep-th/0105127 Theory +hep-th/0105128 Theory +hep-th/0105129 Theory +hep-th/0105130 Theory +hep-th/0105132 Theory +hep-th/0105134 Theory +hep-th/0105135 Theory +hep-th/0105138 Theory +hep-th/0105139 Theory +hep-th/0105141 Theory +hep-th/0105142 Theory +hep-th/0105143 Theory +hep-th/0105145 Theory +hep-th/0105148 Theory +hep-th/0105153 Theory +hep-th/0105158 Theory +hep-th/0105159 Theory +hep-th/0105161 Theory +hep-th/0105163 Theory +hep-th/0105165 Theory +hep-th/0105168 Theory +hep-th/0105169 Theory +hep-th/0105170 Theory +hep-th/0105173 Theory +hep-th/0105174 Theory +hep-th/0105175 Theory +hep-th/0105176 Theory +hep-th/0105178 Theory +hep-th/0105179 Theory +hep-th/0105180 Theory +hep-th/0105182 Theory +hep-th/0105183 Theory +hep-th/0105184 Theory +hep-th/0105186 Theory +hep-th/0105187 Theory +hep-th/0105189 Theory +hep-th/0105190 Theory +hep-th/0105197 Theory +hep-th/0105198 Theory +hep-th/0105199 Theory +hep-th/0105200 Theory +hep-th/0105207 Theory +hep-th/0105211 Theory +hep-th/0105213 Theory +hep-th/0105215 Theory +hep-th/0105218 Theory +hep-th/0105219 Theory +hep-th/0105220 Theory +hep-th/0105221 Theory +hep-th/0105223 Theory +hep-th/0105224 Theory +hep-th/0105225 Theory +hep-th/0105227 Theory +hep-th/0105234 Theory +hep-th/0105236 Theory +hep-th/0105237 Theory +hep-th/0105239 Theory +hep-th/0105246 Theory +hep-th/0105248 Theory +hep-th/0105249 Theory +hep-th/0105250 Theory +hep-th/0105251 Theory +hep-th/0105254 Theory +hep-th/0105259 Theory +hep-th/0105260 Theory +hep-th/0105262 Theory +hep-th/0105263 Theory +hep-th/0105264 Theory +hep-th/0105265 Theory +hep-th/0105267 Theory +hep-th/0105268 Theory +hep-th/0105269 Theory +hep-th/0105271 Theory +hep-th/0105272 Theory +hep-th/0105273 Theory +hep-th/0105275 Theory +hep-th/0105276 Theory +hep-th/0105277 Theory +hep-th/0105278 Theory +hep-th/0105287 Theory +hep-th/0105288 Theory +hep-th/0105293 Theory +hep-th/0105296 Theory +hep-th/0105299 Theory +hep-th/0105306 Theory +hep-th/0105308 Theory +hep-th/0105309 Theory +hep-th/0105310 Theory +hep-th/0105313 Theory +hep-th/0105314 Theory +hep-th/0105316 Theory +hep-th/0106005 Theory +hep-th/0106008 Theory +hep-th/0106012 Theory +hep-th/0106013 Theory +hep-th/0106015 Theory +hep-th/0106016 Theory +hep-th/0106018 Theory +hep-th/0106019 Theory +hep-th/0106020 Theory +hep-th/0106021 Theory +hep-th/0106022 Theory +hep-th/0106025 Theory +hep-th/0106027 Theory +hep-th/0106030 Theory +hep-th/0106032 Theory +hep-th/0106034 Theory +hep-th/0106035 Theory +hep-th/0106038 Theory +hep-th/0106040 Theory +hep-th/0106042 Theory +hep-th/0106044 Theory +hep-th/0106047 Theory +hep-th/0106049 Theory +hep-th/0106052 Theory +hep-th/0106053 Theory +hep-th/0106054 Theory +hep-th/0106055 Theory +hep-th/0106057 Theory +hep-th/0106059 Theory +hep-th/0106060 Theory +hep-th/0106063 Theory +hep-th/0106065 Theory +hep-th/0106067 Theory +hep-th/0106070 Theory +hep-th/0106081 Theory +hep-th/0106084 Theory +hep-th/0106086 Theory +hep-th/0106087 Theory +hep-th/0106092 Theory +hep-th/0106095 Theory +hep-th/0106097 Theory +hep-th/0106099 Theory +hep-th/0106102 Theory +hep-th/0106103 Theory +hep-th/0106104 Theory +hep-th/0106105 Theory +hep-th/0106112 Theory +hep-th/0106113 Theory +hep-th/0106114 Theory +hep-th/0106116 Theory +hep-th/0106117 Theory +hep-th/0106118 Theory +hep-th/0106121 Theory +hep-th/0106122 Theory +hep-th/0106124 Theory +hep-th/0106126 Theory +hep-th/0106130 Theory +hep-th/0106131 Theory +hep-th/0106135 Theory +hep-th/0106137 Theory +hep-th/0106142 Theory +hep-th/0106145 Theory +hep-th/0106150 Theory +hep-th/0106151 Theory +hep-th/0106157 Theory +hep-th/0106159 Theory +hep-th/0106160 Theory +hep-th/0106163 Theory +hep-th/0106165 Theory +hep-th/0106167 Theory +hep-th/0106168 Theory +hep-th/0106174 Theory +hep-th/0106175 Theory +hep-th/0106180 Theory +hep-th/0106182 Theory +hep-th/0106183 Theory +hep-th/0106185 Theory +hep-th/0106186 Theory +hep-th/0106189 Theory +hep-th/0106192 Theory +hep-th/0106193 Theory +hep-th/0106196 Theory +hep-th/0106197 Theory +hep-th/0106199 Theory +hep-th/0106202 Theory +hep-th/0106204 Theory +hep-th/0106205 Theory +hep-th/0106206 Theory +hep-th/0106207 Theory +hep-th/0106211 Theory +hep-th/0106218 Theory +hep-th/0106219 Theory +hep-th/0106220 Theory +hep-th/0106223 Theory +hep-th/0106226 Theory +hep-th/0106228 Theory +hep-th/0106230 Theory +hep-th/0106233 Theory +hep-th/0106236 Theory +hep-th/0106237 Theory +hep-th/0106239 Theory +hep-th/0106240 Theory +hep-th/0106242 Theory +hep-th/0106244 Theory +hep-th/0106245 Theory +hep-th/0106247 Theory +hep-th/0106248 Theory +hep-th/0106249 Theory +hep-th/0106252 Theory +hep-th/0106253 Theory +hep-th/0106256 Theory +hep-th/0106258 Theory +hep-th/0106260 Theory +hep-th/0106261 Theory +hep-th/0106266 Theory +hep-th/0106271 Theory +hep-th/0106272 Theory +hep-th/0106273 Theory +hep-th/0106278 Theory +hep-th/0106280 Theory +hep-th/0106281 Theory +hep-th/0106282 Theory +hep-th/0106283 Theory +hep-th/0106285 Theory +hep-th/0107001 Theory +hep-th/0107005 Theory +hep-th/0107006 Theory +hep-th/0107007 Theory +hep-th/0107011 Theory +hep-th/0107015 Theory +hep-th/0107018 Theory +hep-th/0107019 Theory +hep-th/0107020 Theory +hep-th/0107021 Theory +hep-th/0107022 Theory +hep-th/0107024 Theory +hep-th/0107026 Theory +hep-th/0107031 Theory +hep-th/0107033 Theory +hep-th/0107036 Theory +hep-th/0107038 Theory +hep-th/0107039 Theory +hep-th/0107040 Theory +hep-th/0107041 Theory +hep-th/0107042 Theory +hep-th/0107046 Theory +hep-th/0107047 Theory +hep-th/0107048 Theory +hep-th/0107050 Theory +hep-th/0107051 Theory +hep-th/0107053 Theory +hep-th/0107054 Theory +hep-th/0107057 Theory +hep-th/0107058 Theory +hep-th/0107060 Theory +hep-th/0107061 Theory +hep-th/0107063 Theory +hep-th/0107065 Theory +hep-th/0107066 Theory +hep-th/0107069 Theory +hep-th/0107071 Theory +hep-th/0107072 Theory +hep-th/0107075 Theory +hep-th/0107077 Theory +hep-th/0107078 Theory +hep-th/0107081 Theory +hep-th/0107082 Theory +hep-th/0107083 Theory +hep-th/0107086 Theory +hep-th/0107090 Theory +hep-th/0107091 Theory +hep-th/0107092 Theory +hep-th/0107093 Theory +hep-th/0107094 Theory +hep-th/0107096 Theory +hep-th/0107098 Theory +hep-th/0107099 Theory +hep-th/0107100 Theory +hep-th/0107101 Theory +hep-th/0107103 Theory +hep-th/0107104 Theory +hep-th/0107109 Theory +hep-th/0107110 Theory +hep-th/0107111 Theory +hep-th/0107113 Theory +hep-th/0107114 Theory +hep-th/0107115 Theory +hep-th/0107116 Theory +hep-th/0107119 Theory +hep-th/0107120 Theory +hep-th/0107121 Theory +hep-th/0107124 Theory +hep-th/0107126 Theory +hep-th/0107127 Theory +hep-th/0107130 Theory +hep-th/0107132 Theory +hep-th/0107134 Theory +hep-th/0107135 Theory +hep-th/0107136 Theory +hep-th/0107145 Theory +hep-th/0107147 Theory +hep-th/0107148 Theory +hep-th/0107150 Theory +hep-th/0107155 Theory +hep-th/0107156 Theory +hep-th/0107160 Theory +hep-th/0107161 Theory +hep-th/0107165 Theory +hep-th/0107168 Theory +hep-th/0107175 Theory +hep-th/0107181 Theory +hep-th/0107184 Theory +hep-th/0107185 Theory +hep-th/0107190 Theory +hep-th/0107197 Theory +hep-th/0107198 Theory +hep-th/0107199 Theory +hep-th/0107202 Theory +hep-th/0107203 Theory +hep-th/0107205 Theory +hep-th/0107208 Theory +hep-th/0107209 Theory +hep-th/0107212 Theory +hep-th/0107213 Theory +hep-th/0107214 Theory +hep-th/0107215 Theory +hep-th/0107220 Theory +hep-th/0107221 Theory +hep-th/0107224 Theory +hep-th/0107226 Theory +hep-th/0107227 Theory +hep-th/0107228 Theory +hep-th/0107229 Theory +hep-th/0107233 Theory +hep-th/0107234 Theory +hep-th/0107235 Theory +hep-th/0107236 Theory +hep-th/0107237 Theory +hep-th/0107239 Theory +hep-th/0107240 Theory +hep-th/0107243 Theory +hep-th/0107244 Theory +hep-th/0107247 Theory +hep-th/0107249 Theory +hep-th/0107250 Theory +hep-th/0107251 Theory +hep-th/0107254 Theory +hep-th/0107255 Theory +hep-th/0107256 Theory +hep-th/0107258 Theory +hep-th/0107260 Theory +hep-th/0107263 Theory +hep-th/0108002 Theory +hep-th/0108003 Theory +hep-th/0108004 Theory +hep-th/0108007 Theory +hep-th/0108011 Theory +hep-th/0108016 Theory +hep-th/0108020 Theory +hep-th/0108021 Theory +hep-th/0108022 Theory +hep-th/0108024 Theory +hep-th/0108026 Theory +hep-th/0108028 Theory +hep-th/0108029 Theory +hep-th/0108032 Theory +hep-th/0108036 Theory +hep-th/0108038 Theory +hep-th/0108039 Theory +hep-th/0108040 Theory +hep-th/0108042 Theory +hep-th/0108043 Theory +hep-th/0108046 Theory +hep-th/0108050 Theory +hep-th/0108053 Theory +hep-th/0108056 Theory +hep-th/0108057 Theory +hep-th/0108061 Theory +hep-th/0108062 Theory +hep-th/0108063 Theory +hep-th/0108067 Theory +hep-th/0108068 Theory +hep-th/0108069 Theory +hep-th/0108070 Theory +hep-th/0108071 Theory +hep-th/0108072 Theory +hep-th/0108073 Theory +hep-th/0108075 Theory +hep-th/0108077 Theory +hep-th/0108079 Theory +hep-th/0108082 Theory +hep-th/0108084 Theory +hep-th/0108085 Theory +hep-th/0108088 Theory +hep-th/0108090 Theory +hep-th/0108091 Theory +hep-th/0108092 Theory +hep-th/0108093 Theory +hep-th/0108094 Theory +hep-th/0108095 Theory +hep-th/0108098 Theory +hep-th/0108100 Theory +hep-th/0108102 Theory +hep-th/0108107 Theory +hep-th/0108110 Theory +hep-th/0108111 Theory +hep-th/0108113 Theory +hep-th/0108114 Theory +hep-th/0108118 Theory +hep-th/0108125 Theory +hep-th/0108129 Theory +hep-th/0108130 Theory +hep-th/0108131 Theory +hep-th/0108137 Theory +hep-th/0108138 Theory +hep-th/0108140 Theory +hep-th/0108141 Theory +hep-th/0108142 Theory +hep-th/0108143 Theory +hep-th/0108149 Theory +hep-th/0108152 Theory +hep-th/0108153 Theory +hep-th/0108154 Theory +hep-th/0108155 Theory +hep-th/0108156 Theory +hep-th/0108157 Theory +hep-th/0108158 Theory +hep-th/0108159 Theory +hep-th/0108160 Theory +hep-th/0108163 Theory +hep-th/0108170 Theory +hep-th/0108173 Theory +hep-th/0108174 Theory +hep-th/0108175 Theory +hep-th/0108176 Theory +hep-th/0108177 Theory +hep-th/0108178 Theory +hep-th/0108179 Theory +hep-th/0108190 Theory +hep-th/0108195 Theory +hep-th/0108197 Theory +hep-th/0108198 Theory +hep-th/0108199 Theory +hep-th/0108201 Theory +hep-th/0108205 Theory +hep-th/0108207 Theory +hep-th/0108210 Theory +hep-th/0108216 Theory +hep-th/0108218 Theory +hep-th/0108219 Theory +hep-th/0108222 Theory +hep-th/0108223 Theory +hep-th/0108225 Theory +hep-th/0108226 Theory +hep-th/0108227 Theory +hep-th/0108230 Theory +hep-th/0108232 Theory +hep-th/0108233 Theory +hep-th/0108235 Theory +hep-th/0108239 Theory +hep-th/0109002 Theory +hep-th/0109009 Theory +hep-th/0109010 Theory +hep-th/0109013 Theory +hep-th/0109015 Theory +hep-th/0109017 Theory +hep-th/0109020 Theory +hep-th/0109024 Theory +hep-th/0109025 Theory +hep-th/0109026 Theory +hep-th/0109028 Theory +hep-th/0109031 Theory +hep-th/0109034 Theory +hep-th/0109035 Theory +hep-th/0109039 Theory +hep-th/0109046 Theory +hep-th/0109048 Theory +hep-th/0109051 Theory +hep-th/0109054 Theory +hep-th/0109058 Theory +hep-th/0109059 Theory +hep-th/0109060 Theory +hep-th/0109062 Theory +hep-th/0109063 Theory +hep-th/0109065 Theory +hep-th/0109066 Theory +hep-th/0109068 Theory +hep-th/0109069 Theory +hep-th/0109070 Theory +hep-th/0109072 Theory +hep-th/0109073 Theory +hep-th/0109076 Theory +hep-th/0109078 Theory +hep-th/0109079 Theory +hep-th/0109080 Theory +hep-th/0109082 Theory +hep-th/0109084 Theory +hep-th/0109085 Theory +hep-th/0109087 Theory +hep-th/0109091 Theory +hep-th/0109094 Theory +hep-th/0109095 Theory +hep-th/0109097 Theory +hep-th/0109100 Theory +hep-th/0109101 Theory +hep-th/0109102 Theory +hep-th/0109103 Theory +hep-th/0109107 Theory +hep-th/0109108 Theory +hep-th/0109110 Theory +hep-th/0109112 Theory +hep-th/0109115 Theory +hep-th/0109116 Theory +hep-th/0109120 Theory +hep-th/0109121 Theory +hep-th/0109125 Theory +hep-th/0109128 Theory +hep-th/0109129 Theory +hep-th/0109131 Theory +hep-th/0109135 Theory +hep-th/0109137 Theory +hep-th/0109139 Theory +hep-th/0109140 Theory +hep-th/0109141 Theory +hep-th/0109142 Theory +hep-th/0109143 Theory +hep-th/0109144 Theory +hep-th/0109146 Theory +hep-th/0109148 Theory +hep-th/0109151 Theory +hep-th/0109156 Theory +hep-th/0109157 Theory +hep-th/0109160 Theory +hep-th/0109165 Theory +hep-th/0109166 Theory +hep-th/0109171 Theory +hep-th/0109173 Theory +hep-th/0109175 Theory +hep-th/0109176 Theory +hep-th/0109177 Theory +hep-th/0109179 Theory +hep-th/0109185 Theory +hep-th/0109189 Theory +hep-th/0109190 Theory +hep-th/0109192 Theory +hep-th/0109193 Theory +hep-th/0109194 Theory +hep-th/0109196 Theory +hep-th/0109197 Theory +hep-th/0109198 Theory +hep-th/0109199 Theory +hep-th/0109204 Theory +hep-th/0109206 Theory +hep-th/0109209 Theory +hep-th/0109210 Theory +hep-th/0109216 Theory +hep-th/0109217 Theory +hep-th/0109219 Theory +hep-th/0109222 Theory +hep-th/0109224 Theory +hep-th/0110002 Theory +hep-th/0110004 Theory +hep-th/0110008 Theory +hep-th/0110009 Theory +hep-th/0110013 Theory +hep-th/0110017 Theory +hep-th/0110018 Theory +hep-th/0110021 Theory +hep-th/0110022 Theory +hep-th/0110023 Theory +hep-th/0110029 Theory +hep-th/0110031 Theory +hep-th/0110035 Theory +hep-th/0110037 Theory +hep-th/0110039 Theory +hep-th/0110040 Theory +hep-th/0110041 Theory +hep-th/0110044 Theory +hep-th/0110046 Theory +hep-th/0110049 Theory +hep-th/0110050 Theory +hep-th/0110053 Theory +hep-th/0110057 Theory +hep-th/0110058 Theory +hep-th/0110061 Theory +hep-th/0110063 Theory +hep-th/0110069 Theory +hep-th/0110070 Theory +hep-th/0110071 Theory +hep-th/0110073 Theory +hep-th/0110074 Theory +hep-th/0110077 Theory +hep-th/0110082 Theory +hep-th/0110086 Theory +hep-th/0110087 Theory +hep-th/0110091 Theory +hep-th/0110092 Theory +hep-th/0110093 Theory +hep-th/0110095 Theory +hep-th/0110102 Theory +hep-th/0110106 Theory +hep-th/0110107 Theory +hep-th/0110108 Theory +hep-th/0110111 Theory +hep-th/0110113 Theory +hep-th/0110116 Theory +hep-th/0110118 Theory +hep-th/0110123 Theory +hep-th/0110129 Theory +hep-th/0110132 Theory +hep-th/0110133 Theory +hep-th/0110134 Theory +hep-th/0110137 Theory +hep-th/0110138 Theory +hep-th/0110143 Theory +hep-th/0110146 Theory +hep-th/0110147 Theory +hep-th/0110149 Theory +hep-th/0110154 Theory +hep-th/0110156 Theory +hep-th/0110157 Theory +hep-th/0110159 Theory +hep-th/0110161 Theory +hep-th/0110164 Theory +hep-th/0110165 Theory +hep-th/0110168 Theory +hep-th/0110169 Theory +hep-th/0110170 Theory +hep-th/0110172 Theory +hep-th/0110175 Theory +hep-th/0110178 Theory +hep-th/0110180 Theory +hep-th/0110185 Theory +hep-th/0110186 Theory +hep-th/0110192 Theory +hep-th/0110193 Theory +hep-th/0110195 Theory +hep-th/0110197 Theory +hep-th/0110200 Theory +hep-th/0110202 Theory +hep-th/0110204 Theory +hep-th/0110205 Theory +hep-th/0110211 Theory +hep-th/0110213 Theory +hep-th/0110214 Theory +hep-th/0110215 Theory +hep-th/0110216 Theory +hep-th/0110218 Theory +hep-th/0110219 Theory +hep-th/0110222 Theory +hep-th/0110223 Theory +hep-th/0110226 Theory +hep-th/0110227 Theory +hep-th/0110234 Theory +hep-th/0110235 Theory +hep-th/0110236 Theory +hep-th/0110239 Theory +hep-th/0110242 Theory +hep-th/0110243 Theory +hep-th/0110248 Theory +hep-th/0110249 Theory +hep-th/0110252 Theory +hep-th/0110255 Theory +hep-th/0110258 Theory +hep-th/0110262 Theory +hep-th/0110265 Theory +hep-th/0110267 Theory +hep-th/0110270 Theory +hep-th/0110272 Theory +hep-th/0110275 Theory +hep-th/0110277 Theory +hep-th/0110280 Theory +hep-th/0110282 Theory +hep-th/0110285 Theory +hep-th/0110286 Theory +hep-th/0110287 Theory +hep-th/0110289 Theory +hep-th/0110294 Theory +hep-th/0110295 Theory +hep-th/0110300 Theory +hep-th/0111004 Theory +hep-th/0111008 Theory +hep-th/0111009 Theory +hep-th/0111011 Theory +hep-th/0111013 Theory +hep-th/0111014 Theory +hep-th/0111022 Theory +hep-th/0111030 Theory +hep-th/0111031 Theory +hep-th/0111033 Theory +hep-th/0111034 Theory +hep-th/0111036 Theory +hep-th/0111037 Theory +hep-th/0111039 Theory +hep-th/0111041 Theory +hep-th/0111044 Theory +hep-th/0111045 Theory +hep-th/0111049 Theory +hep-th/0111060 Theory +hep-th/0111061 Theory +hep-th/0111062 Theory +hep-th/0111066 Theory +hep-th/0111069 Theory +hep-th/0111070 Theory +hep-th/0111075 Theory +hep-th/0111078 Theory +hep-th/0111081 Theory +hep-th/0111082 Theory +hep-th/0111084 Theory +hep-th/0111085 Theory +hep-th/0111087 Theory +hep-th/0111089 Theory +hep-th/0111090 Theory +hep-th/0111093 Theory +hep-th/0111094 Theory +hep-th/0111097 Theory +hep-th/0111099 Theory +hep-th/0111100 Theory +hep-th/0111101 Theory +hep-th/0111102 Theory +hep-th/0111106 Theory +hep-th/0111107 Theory +hep-th/0111109 Theory +hep-th/0111110 Theory +hep-th/0111111 Theory +hep-th/0111112 Theory +hep-th/0111115 Theory +hep-th/0111116 Theory +hep-th/0111117 Theory +hep-th/0111118 Theory +hep-th/0111121 Theory +hep-th/0111122 Theory +hep-th/0111125 Theory +hep-th/0111130 Theory +hep-th/0111133 Theory +hep-th/0111134 Theory +hep-th/0111138 Theory +hep-th/0111143 Theory +hep-th/0111145 Theory +hep-th/0111148 Theory +hep-th/0111149 Theory +hep-th/0111150 Theory +hep-th/0111151 Theory +hep-th/0111152 Theory +hep-th/0111153 Theory +hep-th/0111155 Theory +hep-th/0111156 Theory +hep-th/0111159 Theory +hep-th/0111161 Theory +hep-th/0111162 Theory +hep-th/0111163 Theory +hep-th/0111168 Theory +hep-th/0111171 Theory +hep-th/0111175 Theory +hep-th/0111176 Theory +hep-th/0111178 Theory +hep-th/0111183 Theory +hep-th/0111185 Theory +hep-th/0111186 Theory +hep-th/0111190 Theory +hep-th/0111191 Theory +hep-th/0111192 Theory +hep-th/0111198 Theory +hep-th/0111199 Theory +hep-th/0111200 Theory +hep-th/0111201 Theory +hep-th/0111203 Theory +hep-th/0111205 Theory +hep-th/0111206 Theory +hep-th/0111207 Theory +hep-th/0111210 Theory +hep-th/0111211 Theory +hep-th/0111212 Theory +hep-th/0111219 Theory +hep-th/0111227 Theory +hep-th/0111229 Theory +hep-th/0111230 Theory +hep-th/0111238 Theory +hep-th/0111239 Theory +hep-th/0111240 Theory +hep-th/0111242 Theory +hep-th/0111244 Theory +hep-th/0111245 Theory +hep-th/0111247 Theory +hep-th/0111248 Theory +hep-th/0111249 Theory +hep-th/0111254 Theory +hep-th/0111255 Theory +hep-th/0111256 Theory +hep-th/0111258 Theory +hep-th/0111259 Theory +hep-th/0111266 Theory +hep-th/0111270 Theory +hep-th/0111274 Theory +hep-th/0111277 Theory +hep-th/0111278 Theory +hep-th/0111279 Theory +hep-th/0111281 Theory +hep-th/0111282 Theory +hep-th/0111285 Theory +hep-th/0111286 Theory +hep-th/0111287 Theory +hep-th/0111290 Theory +hep-th/0112002 Theory +hep-th/0112003 Theory +hep-th/0112004 Theory +hep-th/0112010 Theory +hep-th/0112013 Theory +hep-th/0112014 Theory +hep-th/0112017 Theory +hep-th/0112021 Theory +hep-th/0112024 Theory +hep-th/0112025 Theory +hep-th/0112027 Theory +hep-th/0112029 Theory +hep-th/0112033 Theory +hep-th/0112034 Theory +hep-th/0112035 Theory +hep-th/0112037 Theory +hep-th/0112043 Theory +hep-th/0112044 Theory +hep-th/0112048 Theory +hep-th/0112050 Theory +hep-th/0112051 Theory +hep-th/0112052 Theory +hep-th/0112054 Theory +hep-th/0112055 Theory +hep-th/0112064 Theory +hep-th/0112069 Theory +hep-th/0112070 Theory +hep-th/0112073 Theory +hep-th/0112076 Theory +hep-th/0112077 Theory +hep-th/0112078 Theory +hep-th/0112080 Theory +hep-th/0112081 Theory +hep-th/0112082 Theory +hep-th/0112083 Theory +hep-th/0112084 Theory +hep-th/0112085 Theory +hep-th/0112087 Theory +hep-th/0112088 Theory +hep-th/0112089 Theory +hep-th/0112092 Theory +hep-th/0112093 Theory +hep-th/0112094 Theory +hep-th/0112095 Theory +hep-th/0112099 Theory +hep-th/0112100 Theory +hep-th/0112101 Theory +hep-th/0112105 Theory +hep-th/0112106 Theory +hep-th/0112110 Theory +hep-th/0112112 Theory +hep-th/0112113 Theory +hep-th/0112114 Theory +hep-th/0112115 Theory +hep-th/0112117 Theory +hep-th/0112120 Theory +hep-th/0112121 Theory +hep-th/0112122 Theory +hep-th/0112123 Theory +hep-th/0112126 Theory +hep-th/0112128 Theory +hep-th/0112129 Theory +hep-th/0112131 Theory +hep-th/0112132 Theory +hep-th/0112133 Theory +hep-th/0112136 Theory +hep-th/0112137 Theory +hep-th/0112140 Theory +hep-th/0112141 Theory +hep-th/0112145 Theory +hep-th/0112146 Theory +hep-th/0112148 Theory +hep-th/0112149 Theory +hep-th/0112151 Theory +hep-th/0112153 Theory +hep-th/0112154 Theory +hep-th/0112155 Theory +hep-th/0112157 Theory +hep-th/0112158 Theory +hep-th/0112161 Theory +hep-th/0112162 Theory +hep-th/0112163 Theory +hep-th/0112164 Theory +hep-th/0112165 Theory +hep-th/0112169 Theory +hep-th/0112170 Theory +hep-th/0112171 Theory +hep-th/0112173 Theory +hep-th/0112175 Theory +hep-th/0112177 Theory +hep-th/0112179 Theory +hep-th/0112180 Theory +hep-th/0112185 Theory +hep-th/0112187 Theory +hep-th/0112189 Theory +hep-th/0112192 Theory +hep-th/0112193 Theory +hep-th/0112197 Theory +hep-th/0112199 Theory +hep-th/0112200 Theory +hep-th/0112205 Theory +hep-th/0112207 Theory +hep-th/0112209 Theory +hep-th/0112211 Theory +hep-th/0112214 Theory +hep-th/0112215 Theory +hep-th/0112217 Theory +hep-th/0112219 Theory +hep-th/0112220 Theory +hep-th/0112223 Theory +hep-th/0112224 Theory +hep-th/0112226 Theory +hep-th/0112229 Theory +hep-th/0112230 Theory +hep-th/0112231 Theory +hep-th/0112235 Theory +hep-th/0112236 Theory +hep-th/0112239 Theory +hep-th/0112240 Theory +hep-th/0112242 Theory +hep-th/0112247 Theory +hep-th/0112248 Theory +hep-th/0112249 Theory +hep-th/0112251 Theory +hep-th/0112254 Theory +hep-th/0112255 Theory +hep-th/0112256 Theory +hep-th/0112264 Theory +hep-th/0201003 Theory +hep-th/0201004 Theory +hep-th/0201005 Theory +hep-th/0201006 Theory +hep-th/0201009 Theory +hep-th/0201013 Theory +hep-th/0201015 Theory +hep-th/0201016 Theory +hep-th/0201023 Theory +hep-th/0201024 Theory +hep-th/0201026 Theory +hep-th/0201028 Theory +hep-th/0201030 Theory +hep-th/0201031 Theory +hep-th/0201033 Theory +hep-th/0201034 Theory +hep-th/0201035 Theory +hep-th/0201037 Theory +hep-th/0201040 Theory +hep-th/0201041 Theory +hep-th/0201043 Theory +hep-th/0201046 Theory +hep-th/0201048 Theory +hep-th/0201050 Theory +hep-th/0201057 Theory +hep-th/0201058 Theory +hep-th/0201059 Theory +hep-th/0201060 Theory +hep-th/0201063 Theory +hep-th/0201065 Theory +hep-th/0201066 Theory +hep-th/0201070 Theory +hep-th/0201073 Theory +hep-th/0201075 Theory +hep-th/0201078 Theory +hep-th/0201079 Theory +hep-th/0201083 Theory +hep-th/0201087 Theory +hep-th/0201089 Theory +hep-th/0201091 Theory +hep-th/0201093 Theory +hep-th/0201094 Theory +hep-th/0201095 Theory +hep-th/0201099 Theory +hep-th/0201101 Theory +hep-th/0201103 Theory +hep-th/0201117 Theory +hep-th/0201120 Theory +hep-th/0201122 Theory +hep-th/0201125 Theory +hep-th/0201127 Theory +hep-th/0201128 Theory +hep-th/0201134 Theory +hep-th/0201135 Theory +hep-th/0201136 Theory +hep-th/0201138 Theory +hep-th/0201140 Theory +hep-th/0201141 Theory +hep-th/0201143 Theory +hep-th/0201144 Theory +hep-th/0201146 Theory +hep-th/0201148 Theory +hep-th/0201152 Theory +hep-th/0201153 Theory +hep-th/0201158 Theory +hep-th/0201159 Theory +hep-th/0201166 Theory +hep-th/0201169 Theory +hep-th/0201170 Theory +hep-th/0201172 Theory +hep-th/0201174 Theory +hep-th/0201175 Theory +hep-th/0201176 Theory +hep-th/0201177 Theory +hep-th/0201178 Theory +hep-th/0201180 Theory +hep-th/0201181 Theory +hep-th/0201185 Theory +hep-th/0201189 Theory +hep-th/0201190 Theory +hep-th/0201191 Theory +hep-th/0201192 Theory +hep-th/0201194 Theory +hep-th/0201195 Theory +hep-th/0201197 Theory +hep-th/0201201 Theory +hep-th/0201203 Theory +hep-th/0201205 Theory +hep-th/0201216 Theory +hep-th/0201217 Theory +hep-th/0201219 Theory +hep-th/0201221 Theory +hep-th/0201223 Theory +hep-th/0201224 Theory +hep-th/0201225 Theory +hep-th/0201226 Theory +hep-th/0201227 Theory +hep-th/0201232 Theory +hep-th/0201234 Theory +hep-th/0201235 Theory +hep-th/0201237 Theory +hep-th/0201241 Theory +hep-th/0201243 Theory +hep-th/0201244 Theory +hep-th/0201246 Theory +hep-th/0201247 Theory +hep-th/0201249 Theory +hep-th/0201250 Theory +hep-th/0201251 Theory +hep-th/0201255 Theory +hep-th/0201256 Theory +hep-th/0201257 Theory +hep-th/0201258 Theory +hep-th/0201259 Theory +hep-th/0201260 Theory +hep-th/0201261 Theory +hep-th/0201263 Theory +hep-th/0201268 Theory +hep-th/0201269 Theory +hep-th/0201270 Theory +hep-th/0201271 Theory +hep-th/0202003 Theory +hep-th/0202007 Theory +hep-th/0202008 Theory +hep-th/0202009 Theory +hep-th/0202010 Theory +hep-th/0202011 Theory +hep-th/0202012 Theory +hep-th/0202018 Theory +hep-th/0202019 Theory +hep-th/0202021 Theory +hep-th/0202025 Theory +hep-th/0202026 Theory +hep-th/0202030 Theory +hep-th/0202040 Theory +hep-th/0202041 Theory +hep-th/0202049 Theory +hep-th/0202051 Theory +hep-th/0202053 Theory +hep-th/0202058 Theory +hep-th/0202060 Theory +hep-th/0202063 Theory +hep-th/0202064 Theory +hep-th/0202068 Theory +hep-th/0202070 Theory +hep-th/0202071 Theory +hep-th/0202072 Theory +hep-th/0202073 Theory +hep-th/0202074 Theory +hep-th/0202075 Theory +hep-th/0202076 Theory +hep-th/0202077 Theory +hep-th/0202079 Theory +hep-th/0202080 Theory +hep-th/0202081 Theory +hep-th/0202082 Theory +hep-th/0202087 Theory +hep-th/0202089 Theory +hep-th/0202091 Theory +hep-th/0202093 Theory +hep-th/0202095 Theory +hep-th/0202096 Theory +hep-th/0202097 Theory +hep-th/0202102 Theory +hep-th/0202107 Theory +hep-th/0202117 Theory +hep-th/0202118 Theory +hep-th/0202119 Theory +hep-th/0202120 Theory +hep-th/0202122 Theory +hep-th/0202125 Theory +hep-th/0202126 Theory +hep-th/0202127 Theory +hep-th/0202130 Theory +hep-th/0202132 Theory +hep-th/0202133 Theory +hep-th/0202135 Theory +hep-th/0202136 Theory +hep-th/0202144 Theory +hep-th/0202146 Theory +hep-th/0202148 Theory +hep-th/0202149 Theory +hep-th/0202150 Theory +hep-th/0202151 Theory +hep-th/0202152 Theory +hep-th/0202153 Theory +hep-th/0202154 Theory +hep-th/0202155 Theory +hep-th/0202156 Theory +hep-th/0202158 Theory +hep-th/0202162 Theory +hep-th/0202163 Theory +hep-th/0202165 Theory +hep-th/0202167 Theory +hep-th/0202169 Theory +hep-th/0202170 Theory +hep-th/0202171 Theory +hep-th/0202175 Theory +hep-th/0202176 Theory +hep-th/0202177 Theory +hep-th/0202178 Theory +hep-th/0202179 Theory +hep-th/0202180 Theory +hep-th/0202183 Theory +hep-th/0202184 Theory +hep-th/0202186 Theory +hep-th/0202187 Theory +hep-th/0202188 Theory +hep-th/0202189 Theory +hep-th/0202190 Theory +hep-th/0202191 Theory +hep-th/0202193 Theory +hep-th/0202194 Theory +hep-th/0202195 Theory +hep-th/0202196 Theory +hep-th/0202198 Theory +hep-th/0202199 Theory +hep-th/0202202 Theory +hep-th/0202207 Theory +hep-th/0202210 Theory +hep-th/0203001 Theory +hep-th/0203002 Theory +hep-th/0203003 Theory +hep-th/0203005 Theory +hep-th/0203011 Theory +hep-th/0203012 Theory +hep-th/0203013 Theory +hep-th/0203016 Theory +hep-th/0203019 Theory +hep-th/0203021 Theory +hep-th/0203023 Theory +hep-th/0203024 Theory +hep-th/0203027 Theory +hep-th/0203029 Theory +hep-th/0203031 Theory +hep-th/0203032 Theory +hep-th/0203037 Theory +hep-th/0203038 Theory +hep-th/0203041 Theory +hep-th/0203042 Theory +hep-th/0203045 Theory +hep-th/0203047 Theory +hep-th/0203049 Theory +hep-th/0203051 Theory +hep-th/0203052 Theory +hep-th/0203054 Theory +hep-th/0203058 Theory +hep-th/0203063 Theory +hep-th/0203064 Theory +hep-th/0203066 Theory +hep-th/0203068 Theory +hep-th/0203070 Theory +hep-th/0203071 Theory +hep-th/0203072 Theory +hep-th/0203074 Theory +hep-th/0203081 Theory +hep-th/0203083 Theory +hep-th/0203084 Theory +hep-th/0203093 Theory +hep-th/0203099 Theory +hep-th/0203102 Theory +hep-th/0203106 Theory +hep-th/0203107 Theory +hep-th/0203108 Theory +hep-th/0203111 Theory +hep-th/0203112 Theory +hep-th/0203113 Theory +hep-th/0203115 Theory +hep-th/0203119 Theory +hep-th/0203124 Theory +hep-th/0203125 Theory +hep-th/0203129 Theory +hep-th/0203132 Theory +hep-th/0203134 Theory +hep-th/0203135 Theory +hep-th/0203136 Theory +hep-th/0203141 Theory +hep-th/0203142 Theory +hep-th/0203151 Theory +hep-th/0203152 Theory +hep-th/0203154 Theory +hep-th/0203159 Theory +hep-th/0203160 Theory +hep-th/0203162 Theory +hep-th/0203163 Theory +hep-th/0203164 Theory +hep-th/0203166 Theory +hep-th/0203168 Theory +hep-th/0203172 Theory +hep-th/0203179 Theory +hep-th/0203187 Theory +hep-th/0203191 Theory +hep-th/0203193 Theory +hep-th/0203198 Theory +hep-th/0203199 Theory +hep-th/0203201 Theory +hep-th/0203202 Theory +hep-th/0203203 Theory +hep-th/0203206 Theory +hep-th/0203208 Theory +hep-th/0203209 Theory +hep-th/0203210 Theory +hep-th/0203211 Theory +hep-th/0203213 Theory +hep-th/0203215 Theory +hep-th/0203216 Theory +hep-th/0203219 Theory +hep-th/0203221 Theory +hep-th/0203222 Theory +hep-th/0203225 Theory +hep-th/0203227 Theory +hep-th/0203228 Theory +hep-th/0203232 Theory +hep-th/0203233 Theory +hep-th/0203234 Theory +hep-th/0203241 Theory +hep-th/0203242 Theory +hep-th/0203244 Theory +hep-th/0203246 Theory +hep-th/0203248 Theory +hep-th/0203250 Theory +hep-th/0203251 Theory +hep-th/0203253 Theory +hep-th/0203255 Theory +hep-th/0203257 Theory +hep-th/0203259 Theory +hep-th/0203260 Theory +hep-th/0203264 Theory +hep-th/0203265 Theory +hep-th/0203266 Theory +hep-th/0203268 Theory +hep-th/0203271 Theory +hep-th/0203273 Theory +hep-th/0203274 Theory +hep-th/0203276 Theory +hep-th/0203277 Theory +hep-th/0204001 Theory +hep-th/0204002 Theory +hep-th/0204004 Theory +hep-th/0204005 Theory +hep-th/0204012 Theory +hep-th/0204014 Theory +hep-th/0204017 Theory +hep-th/0204018 Theory +hep-th/0204023 Theory +hep-th/0204026 Theory +hep-th/0204029 Theory +hep-th/0204031 Theory +hep-th/0204033 Theory +hep-th/0204037 Theory +hep-th/0204038 Theory +hep-th/0204042 Theory +hep-th/0204045 Theory +hep-th/0204046 Theory +hep-th/0204047 Theory +hep-th/0204052 Theory +hep-th/0204053 Theory +hep-th/0204054 Theory +hep-th/0204057 Theory +hep-th/0204058 Theory +hep-th/0204059 Theory +hep-th/0204060 Theory +hep-th/0204063 Theory +hep-th/0204068 Theory +hep-th/0204071 Theory +hep-th/0204074 Theory +hep-th/0204075 Theory +hep-th/0204076 Theory +hep-th/0204081 Theory +hep-th/0204082 Theory +hep-th/0204083 Theory +hep-th/0204084 Theory +hep-th/0204087 Theory +hep-th/0204090 Theory +hep-th/0204091 Theory +hep-th/0204095 Theory +hep-th/0204101 Theory +hep-th/0204105 Theory +hep-th/0204108 Theory +hep-th/0204109 Theory +hep-th/0204111 Theory +hep-th/0204114 Theory +hep-th/0204116 Theory +hep-th/0204117 Theory +hep-th/0204120 Theory +hep-th/0204121 Theory +hep-th/0204124 Theory +hep-th/0204125 Theory +hep-th/0204127 Theory +hep-th/0204131 Theory +hep-th/0204133 Theory +hep-th/0204134 Theory +hep-th/0204135 Theory +hep-th/0204136 Theory +hep-th/0204138 Theory +hep-th/0204139 Theory +hep-th/0204140 Theory +hep-th/0204141 Theory +hep-th/0204142 Theory +hep-th/0204144 Theory +hep-th/0204146 Theory +hep-th/0204147 Theory +hep-th/0204149 Theory +hep-th/0204158 Theory +hep-th/0204160 Theory +hep-th/0204163 Theory +hep-th/0204166 Theory +hep-th/0204168 Theory +hep-th/0204169 Theory +hep-th/0204170 Theory +hep-th/0204171 Theory +hep-th/0204172 Theory +hep-th/0204179 Theory +hep-th/0204184 Theory +hep-th/0204189 Theory +hep-th/0204190 Theory +hep-th/0204191 Theory +hep-th/0204197 Theory +hep-th/0204198 Theory +hep-th/0204200 Theory +hep-th/0204202 Theory +hep-th/0204207 Theory +hep-th/0204209 Theory +hep-th/0204210 Theory +hep-th/0204212 Theory +hep-th/0204214 Theory +hep-th/0204218 Theory +hep-th/0204222 Theory +hep-th/0204224 Theory +hep-th/0204225 Theory +hep-th/0204226 Theory +hep-th/0204232 Theory +hep-th/0204233 Theory +hep-th/0204234 Theory +hep-th/0204235 Theory +hep-th/0204239 Theory +hep-th/0204245 Theory +hep-th/0204247 Theory +hep-th/0204249 Theory +hep-th/0204250 Theory +hep-th/0204252 Theory +hep-th/0204256 Theory +hep-th/0204257 Theory +hep-th/0204260 Theory +hep-th/0204261 Theory +hep-th/0205003 Theory +hep-th/0205004 Theory +hep-th/0205005 Theory +hep-th/0205009 Theory +hep-th/0205010 Theory +hep-th/0205011 Theory +hep-th/0205015 Theory +hep-th/0205016 Theory +hep-th/0205019 Theory +hep-th/0205024 Theory +hep-th/0205025 Theory +hep-th/0205028 Theory +hep-th/0205031 Theory +hep-th/0205034 Theory +hep-th/0205035 Theory +hep-th/0205036 Theory +hep-th/0205041 Theory +hep-th/0205042 Theory +hep-th/0205043 Theory +hep-th/0205045 Theory +hep-th/0205046 Theory +hep-th/0205050 Theory +hep-th/0205053 Theory +hep-th/0205054 Theory +hep-th/0205055 Theory +hep-th/0205056 Theory +hep-th/0205057 Theory +hep-th/0205064 Theory +hep-th/0205066 Theory +hep-th/0205070 Theory +hep-th/0205071 Theory +hep-th/0205075 Theory +hep-th/0205076 Theory +hep-th/0205077 Theory +hep-th/0205082 Theory +hep-th/0205083 Theory +hep-th/0205085 Theory +hep-th/0205087 Theory +hep-th/0205089 Theory +hep-th/0205090 Theory +hep-th/0205092 Theory +hep-th/0205094 Theory +hep-th/0205096 Theory +hep-th/0205097 Theory +hep-th/0205098 Theory +hep-th/0205099 Theory +hep-th/0205101 Theory +hep-th/0205102 Theory +hep-th/0205104 Theory +hep-th/0205105 Theory +hep-th/0205108 Theory +hep-th/0205109 Theory +hep-th/0205111 Theory +hep-th/0205114 Theory +hep-th/0205116 Theory +hep-th/0205117 Theory +hep-th/0205118 Theory +hep-th/0205119 Theory +hep-th/0205121 Theory +hep-th/0205124 Theory +hep-th/0205127 Theory +hep-th/0205129 Theory +hep-th/0205132 Theory +hep-th/0205133 Theory +hep-th/0205138 Theory +hep-th/0205139 Theory +hep-th/0205141 Theory +hep-th/0205142 Theory +hep-th/0205144 Theory +hep-th/0205145 Theory +hep-th/0205147 Theory +hep-th/0205150 Theory +hep-th/0205151 Theory +hep-th/0205155 Theory +hep-th/0205157 Theory +hep-th/0205160 Theory +hep-th/0205161 Theory +hep-th/0205164 Theory +hep-th/0205165 Theory +hep-th/0205173 Theory +hep-th/0205174 Theory +hep-th/0205179 Theory +hep-th/0205185 Theory +hep-th/0205188 Theory +hep-th/0205189 Theory +hep-th/0205192 Theory +hep-th/0205194 Theory +hep-th/0205209 Theory +hep-th/0205210 Theory +hep-th/0205211 Theory +hep-th/0205213 Theory +hep-th/0205215 Theory +hep-th/0205217 Theory +hep-th/0205218 Theory +hep-th/0205219 Theory +hep-th/0205221 Theory +hep-th/0205222 Theory +hep-th/0205223 Theory +hep-th/0205225 Theory +hep-th/0205227 Theory +hep-th/0205229 Theory +hep-th/0205230 Theory +hep-th/0205233 Theory +hep-th/0205237 Theory +hep-th/0205241 Theory +hep-th/0205242 Theory +hep-th/0205244 Theory +hep-th/0205245 Theory +hep-th/0205246 Theory +hep-th/0205248 Theory +hep-th/0205253 Theory +hep-th/0205254 Theory +hep-th/0205258 Theory +hep-th/0205264 Theory +hep-th/0205265 Theory +hep-th/0205267 Theory +hep-th/0205270 Theory +hep-th/0205271 Theory +hep-th/0205272 Theory +hep-th/0205273 Theory +hep-th/0205274 Theory +hep-th/0205275 Theory +hep-th/0205276 Theory +hep-th/0205278 Theory +hep-th/0205280 Theory +hep-th/0205286 Theory +hep-th/0205287 Theory +hep-th/0205288 Theory +hep-th/0205289 Theory +hep-th/0205290 Theory +hep-th/0205291 Theory +hep-th/0205296 Theory +hep-th/0205299 Theory +hep-th/0205304 Theory +hep-th/0205305 Theory +hep-th/0205307 Theory +hep-th/0205308 Theory +hep-th/0205310 Theory +hep-th/0205311 Theory +hep-th/0205319 Theory +hep-th/0205320 Theory +hep-th/0205321 Theory +hep-th/0206001 Theory +hep-th/0206002 Theory +hep-th/0206003 Theory +hep-th/0206004 Theory +hep-th/0206009 Theory +hep-th/0206015 Theory +hep-th/0206016 Theory +hep-th/0206019 Theory +hep-th/0206020 Theory +hep-th/0206022 Theory +hep-th/0206023 Theory +hep-th/0206025 Theory +hep-th/0206028 Theory +hep-th/0206029 Theory +hep-th/0206030 Theory +hep-th/0206031 Theory +hep-th/0206032 Theory +hep-th/0206033 Theory +hep-th/0206035 Theory +hep-th/0206038 Theory +hep-th/0206039 Theory +hep-th/0206040 Theory +hep-th/0206042 Theory +hep-th/0206044 Theory +hep-th/0206047 Theory +hep-th/0206050 Theory +hep-th/0206052 Theory +hep-th/0206054 Theory +hep-th/0206055 Theory +hep-th/0206056 Theory +hep-th/0206057 Theory +hep-th/0206059 Theory +hep-th/0206060 Theory +hep-th/0206061 Theory +hep-th/0206065 Theory +hep-th/0206068 Theory +hep-th/0206069 Theory +hep-th/0206071 Theory +hep-th/0206074 Theory +hep-th/0206075 Theory +hep-th/0206077 Theory +hep-th/0206079 Theory +hep-th/0206080 Theory +hep-th/0206081 Theory +hep-th/0206084 Theory +hep-th/0206088 Theory +hep-th/0206090 Theory +hep-th/0206095 Theory +hep-th/0206096 Theory +hep-th/0206098 Theory +hep-th/0206099 Theory +hep-th/0206102 Theory +hep-th/0206103 Theory +hep-th/0206105 Theory +hep-th/0206106 Theory +hep-th/0206109 Theory +hep-th/0206111 Theory +hep-th/0206112 Theory +hep-th/0206113 Theory +hep-th/0206114 Theory +hep-th/0206118 Theory +hep-th/0206119 Theory +hep-th/0206121 Theory +hep-th/0206124 Theory +hep-th/0206128 Theory +hep-th/0206129 Theory +hep-th/0206137 Theory +hep-th/0206138 Theory +hep-th/0206142 Theory +hep-th/0206144 Theory +hep-th/0206145 Theory +hep-th/0206146 Theory +hep-th/0206147 Theory +hep-th/0206152 Theory +hep-th/0206156 Theory +hep-th/0206157 Theory +hep-th/0206159 Theory +hep-th/0206160 Theory +hep-th/0206166 Theory +hep-th/0206175 Theory +hep-th/0206179 Theory +hep-th/0206182 Theory +hep-th/0206184 Theory +hep-th/0206186 Theory +hep-th/0206187 Theory +hep-th/0206188 Theory +hep-th/0206189 Theory +hep-th/0206190 Theory +hep-th/0206194 Theory +hep-th/0206196 Theory +hep-th/0206197 Theory +hep-th/0206200 Theory +hep-th/0206204 Theory +hep-th/0206210 Theory +hep-th/0206213 Theory +hep-th/0206215 Theory +hep-th/0206217 Theory +hep-th/0206218 Theory +hep-th/0206220 Theory +hep-th/0206221 Theory +hep-th/0206222 Theory +hep-th/0206227 Theory +hep-th/0206229 Theory +hep-th/0206236 Theory +hep-th/0206237 Theory +hep-th/0206240 Theory +hep-th/0206243 Theory +hep-th/0206248 Theory +hep-th/0206254 Theory +hep-th/0207003 Theory +hep-th/0207004 Theory +hep-th/0207005 Theory +hep-th/0207006 Theory +hep-th/0207007 Theory +hep-th/0207010 Theory +hep-th/0207012 Theory +hep-th/0207013 Theory +hep-th/0207015 Theory +hep-th/0207019 Theory +hep-th/0207023 Theory +hep-th/0207024 Theory +hep-th/0207025 Theory +hep-th/0207026 Theory +hep-th/0207029 Theory +hep-th/0207030 Theory +hep-th/0207032 Theory +hep-th/0207033 Theory +hep-th/0207043 Theory +hep-th/0207044 Theory +hep-th/0207045 Theory +hep-th/0207050 Theory +hep-th/0207053 Theory +hep-th/0207054 Theory +hep-th/0207058 Theory +hep-th/0207059 Theory +hep-th/0207060 Theory +hep-th/0207066 Theory +hep-th/0207067 Theory +hep-th/0207070 Theory +hep-th/0207074 Theory +hep-th/0207078 Theory +hep-th/0207080 Theory +hep-th/0207083 Theory +hep-th/0207085 Theory +hep-th/0207086 Theory +hep-th/0207091 Theory +hep-th/0207092 Theory +hep-th/0207093 Theory +hep-th/0207095 Theory +hep-th/0207096 Theory +hep-th/0207099 Theory +hep-th/0207100 Theory +hep-th/0207101 Theory +hep-th/0207103 Theory +hep-th/0207104 Theory +hep-th/0207105 Theory +hep-th/0207107 Theory +hep-th/0207109 Theory +hep-th/0207111 Theory +hep-th/0207117 Theory +hep-th/0207119 Theory +hep-th/0207120 Theory +hep-th/0207125 Theory +hep-th/0207126 Theory +hep-th/0207127 Theory +hep-th/0207133 Theory +hep-th/0207135 Theory +hep-th/0207136 Theory +hep-th/0207139 Theory +hep-th/0207141 Theory +hep-th/0207144 Theory +hep-th/0207145 Theory +hep-th/0207148 Theory +hep-th/0207149 Theory +hep-th/0207152 Theory +hep-th/0207156 Theory +hep-th/0207157 Theory +hep-th/0207158 Theory +hep-th/0207161 Theory +hep-th/0207162 Theory +hep-th/0207164 Theory +hep-th/0207165 Theory +hep-th/0207166 Theory +hep-th/0207168 Theory +hep-th/0207171 Theory +hep-th/0207172 Theory +hep-th/0207174 Theory +hep-th/0207175 Theory +hep-th/0207176 Theory +hep-th/0207178 Theory +hep-th/0207179 Theory +hep-th/0207183 Theory +hep-th/0207187 Theory +hep-th/0207189 Theory +hep-th/0207190 Theory +hep-th/0207191 Theory +hep-th/0207196 Theory +hep-th/0207209 Theory +hep-th/0207214 Theory +hep-th/0207215 Theory +hep-th/0207219 Theory +hep-th/0207220 Theory +hep-th/0207222 Theory +hep-th/0207227 Theory +hep-th/0207228 Theory +hep-th/0207230 Theory +hep-th/0207232 Theory +hep-th/0207235 Theory +hep-th/0207236 Theory +hep-th/0207237 Theory +hep-th/0207243 Theory +hep-th/0207248 Theory +hep-th/0207251 Theory +hep-th/0207253 Theory +hep-th/0207255 Theory +hep-th/0207260 Theory +hep-th/0207261 Theory +hep-th/0207263 Theory +hep-th/0207264 Theory +hep-th/0207266 Theory +hep-th/0207268 Theory +hep-th/0207270 Theory +hep-th/0207271 Theory +hep-th/0207273 Theory +hep-th/0207275 Theory +hep-th/0207278 Theory +hep-th/0207279 Theory +hep-th/0207280 Theory +hep-th/0207281 Theory +hep-th/0207284 Theory +hep-th/0208001 Theory +hep-th/0208002 Theory +hep-th/0208003 Theory +hep-th/0208004 Theory +hep-th/0208010 Theory +hep-th/0208011 Theory +hep-th/0208012 Theory +hep-th/0208013 Theory +hep-th/0208014 Theory +hep-th/0208015 Theory +hep-th/0208018 Theory +hep-th/0208019 Theory +hep-th/0208023 Theory +hep-th/0208026 Theory +hep-th/0208032 Theory +hep-th/0208036 Theory +hep-th/0208038 Theory +hep-th/0208041 Theory +hep-th/0208042 Theory +hep-th/0208043 Theory +hep-th/0208047 Theory +hep-th/0208049 Theory +hep-th/0208050 Theory +hep-th/0208053 Theory +hep-th/0208057 Theory +hep-th/0208058 Theory +hep-th/0208060 Theory +hep-th/0208061 Theory +hep-th/0208062 Theory +hep-th/0208063 Theory +hep-th/0208065 Theory +hep-th/0208066 Theory +hep-th/0208067 Theory +hep-th/0208068 Theory +hep-th/0208069 Theory +hep-th/0208070 Theory +hep-th/0208071 Theory +hep-th/0208073 Theory +hep-th/0208074 Theory +hep-th/0208078 Theory +hep-th/0208079 Theory +hep-th/0208081 Theory +hep-th/0208082 Theory +hep-th/0208083 Theory +hep-th/0208090 Theory +hep-th/0208091 Theory +hep-th/0208092 Theory +hep-th/0208094 Theory +hep-th/0208098 Theory +hep-th/0208101 Theory +hep-th/0208102 Theory +hep-th/0208113 Theory +hep-th/0208114 Theory +hep-th/0208116 Theory +hep-th/0208119 Theory +hep-th/0208120 Theory +hep-th/0208121 Theory +hep-th/0208123 Theory +hep-th/0208126 Theory +hep-th/0208135 Theory +hep-th/0208136 Theory +hep-th/0208140 Theory +hep-th/0208141 Theory +hep-th/0208142 Theory +hep-th/0208143 Theory +hep-th/0208144 Theory +hep-th/0208145 Theory +hep-th/0208148 Theory +hep-th/0208149 Theory +hep-th/0208153 Theory +hep-th/0208155 Theory +hep-th/0208158 Theory +hep-th/0208162 Theory +hep-th/0208166 Theory +hep-th/0208167 Theory +hep-th/0208169 Theory +hep-th/0208174 Theory +hep-th/0208177 Theory +hep-th/0208179 Theory +hep-th/0208181 Theory +hep-th/0208183 Theory +hep-th/0208188 Theory +hep-th/0208192 Theory +hep-th/0208193 Theory +hep-th/0208194 Theory +hep-th/0208203 Theory +hep-th/0208204 Theory +hep-th/0208205 Theory +hep-th/0208206 Theory +hep-th/0208208 Theory +hep-th/0208209 Theory +hep-th/0208211 Theory +hep-th/0208215 Theory +hep-th/0208216 Theory +hep-th/0208217 Theory +hep-th/0208219 Theory +hep-th/0208220 Theory +hep-th/0208223 Theory +hep-th/0208225 Theory +hep-th/0208228 Theory +hep-th/0208229 Theory +hep-th/0208231 Theory +hep-th/0208232 Theory +hep-th/0209002 Theory +hep-th/0209005 Theory +hep-th/0209006 Theory +hep-th/0209010 Theory +hep-th/0209011 Theory +hep-th/0209013 Theory +hep-th/0209021 Theory +hep-th/0209023 Theory +hep-th/0209024 Theory +hep-th/0209026 Theory +hep-th/0209027 Theory +hep-th/0209029 Theory +hep-th/0209034 Theory +hep-th/0209037 Theory +hep-th/0209041 Theory +hep-th/0209042 Theory +hep-th/0209044 Theory +hep-th/0209045 Theory +hep-th/0209046 Theory +hep-th/0209049 Theory +hep-th/0209052 Theory +hep-th/0209053 Theory +hep-th/0209054 Theory +hep-th/0209055 Theory +hep-th/0209056 Theory +hep-th/0209057 Theory +hep-th/0209063 Theory +hep-th/0209071 Theory +hep-th/0209073 Theory +hep-th/0209074 Theory +hep-th/0209077 Theory +hep-th/0209078 Theory +hep-th/0209081 Theory +hep-th/0209082 Theory +hep-th/0209084 Theory +hep-th/0209091 Theory +hep-th/0209092 Theory +hep-th/0209093 Theory +hep-th/0209095 Theory +hep-th/0209097 Theory +hep-th/0209098 Theory +hep-th/0209100 Theory +hep-th/0209101 Theory +hep-th/0209106 Theory +hep-th/0209108 Theory +hep-th/0209111 Theory +hep-th/0209113 Theory +hep-th/0209114 Theory +hep-th/0209115 Theory +hep-th/0209117 Theory +hep-th/0209118 Theory +hep-th/0209120 Theory +hep-th/0209124 Theory +hep-th/0209126 Theory +hep-th/0209128 Theory +hep-th/0209137 Theory +hep-th/0209139 Theory +hep-th/0209146 Theory +hep-th/0209149 Theory +hep-th/0209151 Theory +hep-th/0209152 Theory +hep-th/0209154 Theory +hep-th/0209155 Theory +hep-th/0209156 Theory +hep-th/0209159 Theory +hep-th/0209160 Theory +hep-th/0209161 Theory +hep-th/0209162 Theory +hep-th/0209163 Theory +hep-th/0209172 Theory +hep-th/0209174 Theory +hep-th/0209176 Theory +hep-th/0209178 Theory +hep-th/0209179 Theory +hep-th/0209180 Theory +hep-th/0209183 Theory +hep-th/0209185 Theory +hep-th/0209188 Theory +hep-th/0209190 Theory +hep-th/0209191 Theory +hep-th/0209194 Theory +hep-th/0209195 Theory +hep-th/0209196 Theory +hep-th/0209197 Theory +hep-th/0209198 Theory +hep-th/0209199 Theory +hep-th/0209200 Theory +hep-th/0209205 Theory +hep-th/0209206 Theory +hep-th/0209209 Theory +hep-th/0209210 Theory +hep-th/0209211 Theory +hep-th/0209212 Theory +hep-th/0209215 Theory +hep-th/0209217 Theory +hep-th/0209218 Theory +hep-th/0209221 Theory +hep-th/0209223 Theory +hep-th/0209224 Theory +hep-th/0209225 Theory +hep-th/0209231 Theory +hep-th/0209234 Theory +hep-th/0209238 Theory +hep-th/0209241 Theory +hep-th/0209244 Theory +hep-th/0209246 Theory +hep-th/0209247 Theory +hep-th/0209248 Theory +hep-th/0209250 Theory +hep-th/0209251 Theory +hep-th/0209252 Theory +hep-th/0209254 Theory +hep-th/0209255 Theory +hep-th/0209256 Theory +hep-th/0209258 Theory +hep-th/0209259 Theory +hep-th/0209260 Theory +hep-th/0209263 Theory +hep-th/0209265 Theory +hep-th/0209267 Theory +hep-th/0210002 Theory +hep-th/0210003 Theory +hep-th/0210005 Theory +hep-th/0210007 Theory +hep-th/0210010 Theory +hep-th/0210017 Theory +hep-th/0210018 Theory +hep-th/0210019 Theory +hep-th/0210025 Theory +hep-th/0210029 Theory +hep-th/0210037 Theory +hep-th/0210038 Theory +hep-th/0210041 Theory +hep-th/0210047 Theory +hep-th/0210048 Theory +hep-th/0210053 Theory +hep-th/0210054 Theory +hep-th/0210055 Theory +hep-th/0210058 Theory +hep-th/0210061 Theory +hep-th/0210064 Theory +hep-th/0210065 Theory +hep-th/0210066 Theory +hep-th/0210068 Theory +hep-th/0210071 Theory +hep-th/0210072 Theory +hep-th/0210073 Theory +hep-th/0210075 Theory +hep-th/0210078 Theory +hep-th/0210081 Theory +hep-th/0210086 Theory +hep-th/0210090 Theory +hep-th/0210091 Theory +hep-th/0210093 Theory +hep-th/0210098 Theory +hep-th/0210099 Theory +hep-th/0210102 Theory +hep-th/0210107 Theory +hep-th/0210110 Theory +hep-th/0210114 Theory +hep-th/0210115 Theory +hep-th/0210116 Theory +hep-th/0210117 Theory +hep-th/0210122 Theory +hep-th/0210124 Theory +hep-th/0210125 Theory +hep-th/0210126 Theory +hep-th/0210128 Theory +hep-th/0210138 Theory +hep-th/0210142 Theory +hep-th/0210143 Theory +hep-th/0210144 Theory +hep-th/0210147 Theory +hep-th/0210151 Theory +hep-th/0210154 Theory +hep-th/0210156 Theory +hep-th/0210160 Theory +hep-th/0210161 Theory +hep-th/0210163 Theory +hep-th/0210166 Theory +hep-th/0210167 Theory +hep-th/0210174 Theory +hep-th/0210178 Theory +hep-th/0210183 Theory +hep-th/0210187 Theory +hep-th/0210189 Theory +hep-th/0210191 Theory +hep-th/0210198 Theory +hep-th/0210202 Theory +hep-th/0210203 Theory +hep-th/0210208 Theory +hep-th/0210211 Theory +hep-th/0210212 Theory +hep-th/0210213 Theory +hep-th/0210214 Theory +hep-th/0210215 Theory +hep-th/0210218 Theory +hep-th/0210223 Theory +hep-th/0210227 Theory +hep-th/0210230 Theory +hep-th/0210232 Theory +hep-th/0210236 Theory +hep-th/0210238 Theory +hep-th/0210240 Theory +hep-th/0210244 Theory +hep-th/0210245 Theory +hep-th/0210248 Theory +hep-th/0210251 Theory +hep-th/0210252 Theory +hep-th/0210253 Theory +hep-th/0210256 Theory +hep-th/0210259 Theory +hep-th/0210260 Theory +hep-th/0210262 Theory +hep-th/0210264 Theory +hep-th/0210265 Theory +hep-th/0210266 Theory +hep-th/0210267 Theory +hep-th/0210269 Theory +hep-th/0210271 Theory +hep-th/0210272 Theory +hep-th/0210273 Theory +hep-th/0210278 Theory +hep-th/0210279 Theory +hep-th/0210281 Theory +hep-th/0210282 Theory +hep-th/0210287 Theory +hep-th/0210288 Theory +hep-th/0210289 Theory +hep-th/0210295 Theory +hep-th/0210296 Theory +hep-th/0210297 Theory +hep-th/0210300 Theory +hep-th/0210302 Theory +hep-th/0210303 Theory +hep-th/0210305 Theory +hep-th/0210310 Theory +hep-th/0211002 Theory +hep-th/0211009 Theory +hep-th/0211016 Theory +hep-th/0211018 Theory +hep-th/0211020 Theory +hep-th/0211022 Theory +hep-th/0211025 Theory +hep-th/0211026 Theory +hep-th/0211029 Theory +hep-th/0211038 Theory +hep-th/0211041 Theory +hep-th/0211042 Theory +hep-th/0211044 Theory +hep-th/0211045 Theory +hep-th/0211049 Theory +hep-th/0211050 Theory +hep-th/0211054 Theory +hep-th/0211057 Theory +hep-th/0211058 Theory +hep-th/0211059 Theory +hep-th/0211062 Theory +hep-th/0211063 Theory +hep-th/0211073 Theory +hep-th/0211074 Theory +hep-th/0211082 Theory +hep-th/0211086 Theory +hep-th/0211089 Theory +hep-th/0211090 Theory +hep-th/0211094 Theory +hep-th/0211097 Theory +hep-th/0211098 Theory +hep-th/0211101 Theory +hep-th/0211104 Theory +hep-th/0211105 Theory +hep-th/0211112 Theory +hep-th/0211119 Theory +hep-th/0211120 Theory +hep-th/0211121 Theory +hep-th/0211125 Theory +hep-th/0211126 Theory +hep-th/0211130 Theory +hep-th/0211131 Theory +hep-th/0211133 Theory +hep-th/0211134 Theory +hep-th/0211136 Theory +hep-th/0211139 Theory +hep-th/0211140 Theory +hep-th/0211141 Theory +hep-th/0211142 Theory +hep-th/0211144 Theory +hep-th/0211145 Theory +hep-th/0211147 Theory +hep-th/0211149 Theory +hep-th/0211152 Theory +hep-th/0211157 Theory +hep-th/0211159 Theory +hep-th/0211161 Theory +hep-th/0211162 Theory +hep-th/0211163 Theory +hep-th/0211165 Theory +hep-th/0211166 Theory +hep-th/0211167 Theory +hep-th/0211173 Theory +hep-th/0211175 Theory +hep-th/0211180 Theory +hep-th/0211182 Theory +hep-th/0211184 Theory +hep-th/0211188 Theory +hep-th/0211198 Theory +hep-th/0211199 Theory +hep-th/0211200 Theory +hep-th/0211203 Theory +hep-th/0211210 Theory +hep-th/0211213 Theory +hep-th/0211215 Theory +hep-th/0211217 Theory +hep-th/0211219 Theory +hep-th/0211220 Theory +hep-th/0211222 Theory +hep-th/0211223 Theory +hep-th/0211225 Theory +hep-th/0211231 Theory +hep-th/0211234 Theory +hep-th/0211237 Theory +hep-th/0211242 Theory +hep-th/0211243 Theory +hep-th/0211252 Theory +hep-th/0211256 Theory +hep-th/0211257 Theory +hep-th/0211258 Theory +hep-th/0211259 Theory +hep-th/0211263 Theory +hep-th/0211264 Theory +hep-th/0211265 Theory +hep-th/0211267 Theory +hep-th/0211271 Theory +hep-th/0211274 Theory +hep-th/0211276 Theory +hep-th/0211280 Theory +hep-th/0211281 Theory +hep-th/0211285 Theory +hep-th/0211286 Theory +hep-th/0211287 Theory +hep-th/0211288 Theory +hep-th/0212002 Theory +hep-th/0212005 Theory +hep-th/0212008 Theory +hep-th/0212009 Theory +hep-th/0212012 Theory +hep-th/0212013 Theory +hep-th/0212015 Theory +hep-th/0212016 Theory +hep-th/0212017 Theory +hep-th/0212019 Theory +hep-th/0212022 Theory +hep-th/0212023 Theory +hep-th/0212026 Theory +hep-th/0212027 Theory +hep-th/0212029 Theory +hep-th/0212030 Theory +hep-th/0212031 Theory +hep-th/0212032 Theory +hep-th/0212034 Theory +hep-th/0212036 Theory +hep-th/0212038 Theory +hep-th/0212039 Theory +hep-th/0212044 Theory +hep-th/0212048 Theory +hep-th/0212050 Theory +hep-th/0212052 Theory +hep-th/0212053 Theory +hep-th/0212054 Theory +hep-th/0212056 Theory +hep-th/0212060 Theory +hep-th/0212061 Theory +hep-th/0212062 Theory +hep-th/0212065 Theory +hep-th/0212066 Theory +hep-th/0212067 Theory +hep-th/0212070 Theory +hep-th/0212075 Theory +hep-th/0212081 Theory +hep-th/0212083 Theory +hep-th/0212086 Theory +hep-th/0212092 Theory +hep-th/0212096 Theory +hep-th/0212097 Theory +hep-th/0212098 Theory +hep-th/0212099 Theory +hep-th/0212100 Theory +hep-th/0212101 Theory +hep-th/0212105 Theory +hep-th/0212107 Theory +hep-th/0212110 Theory +hep-th/0212111 Theory +hep-th/0212115 Theory +hep-th/0212118 Theory +hep-th/0212121 Theory +hep-th/0212124 Theory +hep-th/0212125 Theory +hep-th/0212127 Theory +hep-th/0212128 Theory +hep-th/0212130 Theory +hep-th/0212131 Theory +hep-th/0212132 Theory +hep-th/0212133 Theory +hep-th/0212137 Theory +hep-th/0212141 Theory +hep-th/0212145 Theory +hep-th/0212146 Theory +hep-th/0212148 Theory +hep-th/0212151 Theory +hep-th/0212152 Theory +hep-th/0212155 Theory +hep-th/0212157 Theory +hep-th/0212161 Theory +hep-th/0212162 Theory +hep-th/0212163 Theory +hep-th/0212165 Theory +hep-th/0212167 Theory +hep-th/0212168 Theory +hep-th/0212170 Theory +hep-th/0212171 Theory +hep-th/0212172 Theory +hep-th/0212174 Theory +hep-th/0212176 Theory +hep-th/0212179 Theory +hep-th/0212183 Theory +hep-th/0212184 Theory +hep-th/0212185 Theory +hep-th/0212188 Theory +hep-th/0212189 Theory +hep-th/0212196 Theory +hep-th/0212203 Theory +hep-th/0212207 Theory +hep-th/0212208 Theory +hep-th/0212215 Theory +hep-th/0212221 Theory +hep-th/0212222 Theory +hep-th/0212229 Theory +hep-th/0212234 Theory +hep-th/0212235 Theory +hep-th/0212237 Theory +hep-th/0212238 Theory +hep-th/0212240 Theory +hep-th/0212242 Theory +hep-th/0212244 Theory +hep-th/0212248 Theory +hep-th/0212250 Theory +hep-th/0212252 Theory +hep-th/0212253 Theory +hep-th/0212257 Theory +hep-th/0212258 Theory +hep-th/0212259 Theory +hep-th/0212262 Theory +hep-th/0212263 Theory +hep-th/0212264 Theory +hep-th/0212265 Theory +hep-th/0212266 Theory +hep-th/0212270 Theory +hep-th/0212271 Theory +hep-th/0212278 Theory +hep-th/0212280 Theory +hep-th/0212283 Theory +hep-th/0212284 Theory +hep-th/0212288 Theory +hep-th/0212296 Theory +hep-th/0212298 Theory +hep-th/0212299 Theory +hep-th/0212302 Theory +hep-th/0212304 Theory +hep-th/0212307 Theory +hep-th/0212308 Theory +hep-th/0212310 Theory +hep-th/0212311 Theory +hep-th/0212312 Theory +hep-th/0212314 Theory +hep-th/0212316 Theory +hep-th/0212320 Theory +hep-th/0212322 Theory +hep-th/0212324 Theory +hep-th/0212325 Theory +hep-th/0212327 Theory +hep-th/0212328 Theory +hep-th/0212331 Theory +hep-th/0212333 Theory +hep-th/0212335 Theory +hep-th/0212337 Theory +hep-th/0212338 Theory +hep-th/0212341 Theory +hep-th/0212342 Theory +hep-th/0212344 Theory +hep-th/0212345 Theory +hep-th/0212346 Theory +hep-th/0212347 Theory +math-ph/0101002 +math-ph/0101006 +math-ph/0101019 +math-ph/0101025 +math-ph/0101030 +math-ph/0101036 +math-ph/0102004 +math-ph/0102005 +math-ph/0102008 +math-ph/0102011 +math-ph/0102012 +math-ph/0102014 +math-ph/0102017 +math-ph/0102020 +math-ph/0102033 +math-ph/0102034 +math-ph/0102036 +math-ph/0103004 +math-ph/0103008 +math-ph/0103009 +math-ph/0103010 +math-ph/0103012 +math-ph/0103016 +math-ph/0103020 +math-ph/0103021 +math-ph/0103022 +math-ph/0103025 +math-ph/0103031 +math-ph/0103035 +math-ph/0103036 +math-ph/0103039 +math-ph/0103041 +math-ph/0103043 +math-ph/0103046 +math-ph/0103047 +math-ph/0104004 +math-ph/0104011 +math-ph/0104013 +math-ph/0104024 +math-ph/0104025 +math-ph/0104027 +math-ph/0104034 +math-ph/0104035 +math-ph/0104036 +math-ph/0104038 +math-ph/0104040 +math-ph/0105001 +math-ph/0105003 +math-ph/0105006 +math-ph/0105009 +math-ph/0105011 +math-ph/0105019 +math-ph/0105020 +math-ph/0105022 +math-ph/0105024 +math-ph/0105027 +math-ph/0105030 +math-ph/0105033 +math-ph/0105038 +math-ph/0105043 +math-ph/0105046 +math-ph/0105047 +math-ph/0105049 +math-ph/0106005 +math-ph/0106006 +math-ph/0106011 +math-ph/0106012 +math-ph/0106016 +math-ph/0106017 +math-ph/0106028 +math-ph/0106029 +math-ph/0107002 +math-ph/0107003 +math-ph/0107007 +math-ph/0107010 +math-ph/0107015 +math-ph/0107018 +math-ph/0107019 +math-ph/0107024 +math-ph/0107032 +math-ph/0108004 +math-ph/0108009 +math-ph/0108012 +math-ph/0108027 +math-ph/0109002 +math-ph/0109007 +math-ph/0109015 +math-ph/0109016 +math-ph/0109017 +math-ph/0109020 +math-ph/0110007 +math-ph/0110010 +math-ph/0110015 +math-ph/0110018 +math-ph/0110019 +math-ph/0110024 +math-ph/0110028 +math-ph/0110038 +math-ph/0110039 +math-ph/0110042 +math-ph/0111012 +math-ph/0111028 +math-ph/0111029 +math-ph/0111030 +math-ph/0111031 +math-ph/0111033 +math-ph/0111037 +math-ph/0111047 +math-ph/0112001 +math-ph/0112002 +math-ph/0112004 +math-ph/0112005 +math-ph/0112006 +math-ph/0112007 +math-ph/0112010 +math-ph/0112012 +math-ph/0112020 +math-ph/0112032 +math-ph/0112042 +math-ph/0112060 +math-ph/0201004 +math-ph/0201006 +math-ph/0201007 +math-ph/0201010 +math-ph/0201013 +math-ph/0201021 +math-ph/0201023 +math-ph/0201024 +math-ph/0201030 +math-ph/0201034 +math-ph/0201035 +math-ph/0201046 +math-ph/0201048 +math-ph/0201059 +math-ph/0201062 +math-ph/0201066 +math-ph/0202002 +math-ph/0202017 +math-ph/0202019 +math-ph/0202037 +math-ph/0202043 +math-ph/0202047 +math-ph/0202048 +math-ph/0203004 +math-ph/0203007 +math-ph/0203008 +math-ph/0203010 +math-ph/0203014 +math-ph/0203019 +math-ph/0203025 +math-ph/0203035 +math-ph/0203045 +math-ph/0203049 +math-ph/0203050 +math-ph/0203051 +math-ph/0203052 +math-ph/0203057 +math-ph/0204001 +math-ph/0204002 +math-ph/0204003 +math-ph/0204011 +math-ph/0204012 +math-ph/0204013 +math-ph/0204016 +math-ph/0204018 +math-ph/0204019 +math-ph/0204020 +math-ph/0204023 +math-ph/0204025 +math-ph/0204026 +math-ph/0204028 +math-ph/0204029 +math-ph/0204036 +math-ph/0204041 +math-ph/0204047 +math-ph/0204049 +math-ph/0204055 +math-ph/0205006 +math-ph/0205007 +math-ph/0205016 +math-ph/0205021 +math-ph/0205026 +math-ph/0205030 +math-ph/0205031 +math-ph/0205037 +math-ph/0205038 +math-ph/0205045 +math-ph/0206007 +math-ph/0206011 +math-ph/0206014 +math-ph/0206017 +math-ph/0206023 +math-ph/0206029 +math-ph/0206033 +math-ph/0206037 +math-ph/0206040 +math-ph/0206043 +math-ph/0206044 +math-ph/0206045 +math-ph/0207002 +math-ph/0207005 +math-ph/0207008 +math-ph/0207009 +math-ph/0207010 +math-ph/0207012 +math-ph/0207013 +math-ph/0207014 +math-ph/0207019 +math-ph/0207026 +math-ph/0207028 +math-ph/0207042 +math-ph/0207044 +math-ph/0207045 +math-ph/0207046 +math-ph/0208001 +math-ph/0208002 +math-ph/0208013 +math-ph/0208022 +math-ph/0208023 +math-ph/0208024 +math-ph/0208026 +math-ph/0208027 +math-ph/0208028 +math-ph/0208032 +math-ph/0208040 +math-ph/0208044 +math-ph/0209002 +math-ph/0209005 +math-ph/0209006 +math-ph/0209010 +math-ph/0209013 +math-ph/0209016 +math-ph/0209017 +math-ph/0209018 +math-ph/0209024 +math-ph/0209027 +math-ph/0209037 +math-ph/0209040 +math-ph/0209041 +math-ph/0209050 +math-ph/0209051 +math-ph/0209058 +math-ph/0209060 +math-ph/0209061 +math-ph/0209065 +math-ph/0209067 +math-ph/0210001 +math-ph/0210010 +math-ph/0210015 +math-ph/0210018 +math-ph/0210019 +math-ph/0210024 +math-ph/0210029 +math-ph/0210030 +math-ph/0210032 +math-ph/0210033 +math-ph/0210045 +math-ph/0210046 +math-ph/0210056 +math-ph/0210058 +math-ph/0210059 +math-ph/0210060 +math-ph/0211007 +math-ph/0211008 +math-ph/0211009 +math-ph/0211010 +math-ph/0211012 +math-ph/0211016 +math-ph/0211030 +math-ph/0211032 +math-ph/0211033 +math-ph/0211034 +math-ph/0211035 +math-ph/0211036 +math-ph/0211037 +math-ph/0211038 +math-ph/0211039 +math-ph/0211044 +math-ph/0211049 +math-ph/0211053 +math-ph/0211058 +math-ph/0211059 +math-ph/0211060 +math-ph/0211061 +math-ph/0211063 +math-ph/0211064 +math-ph/0211071 +math-ph/0212013 +math-ph/0212016 +math-ph/0212018 +math-ph/0212021 +math-ph/0212032 +math-ph/0212033 +math-ph/0212035 +math-ph/0212039 +math-ph/0212040 +math-ph/0212041 +math-ph/0212042 +math-ph/0212050 +math-ph/0212051 +math-ph/0212055 +math-ph/0212059 +math-ph/0212067 +math-ph/0212070 +math-ph/0212072 +math-ph/0212076 +math/0101027 Quantum Algebra +math/0101048 Quantum Algebra +math/0101095 Dynamical Systems +math/0101136 Quantum Algebra +math/0101143 Algebraic Geometry +math/0101205 Numerical Analysis +math/0101240 Complex Variables +math/0101253 Analysis of PDEs +math/0101271 Number Theory +math/0102071 Quantum Algebra +math/0102087 Category Theory +math/0102091 Dynamical Systems +math/0102119 Symplectic Geometry +math/0102149 Quantum Algebra +math/0102152 Algebraic Geometry +math/0102161 Functional Analysis +math/0102163 Quantum Algebra +math/0102179 Number Theory +math/0102197 Analysis of PDEs +math/0102225 Differential Geometry +math/0103008 Quantum Algebra +math/0103018 Geometric Topology +math/0103021 Quantum Algebra +math/0103034 Quantum Algebra +math/0103042 Differential Geometry +math/0103077 Classical Analysis and ODEs +math/0103088 Quantum Algebra +math/0103103 Differential Geometry +math/0103129 Functional Analysis +math/0103140 Differential Geometry +math/0103146 Combinatorics +math/0103187 Quantum Algebra +math/0103200 Geometric Topology +math/0103220 Differential Geometry +math/0103221 Analysis of PDEs +math/0104059 Geometric Topology +math/0104090 Metric Geometry +math/0104122 Differential Geometry +math/0104156 Spectral Theory +math/0104168 Quantum Algebra +math/0104181 Quantum Algebra +math/0104189 Symplectic Geometry +math/0104202 Quantum Algebra +math/0104208 Differential Geometry +math/0104215 Dynamical Systems +math/0104231 Algebraic Geometry +math/0104234 Number Theory +math/0104242 Quantum Algebra +math/0104275 Quantum Algebra +math/0105026 Spectral Theory +math/0105055 Differential Geometry +math/0105060 Quantum Algebra +math/0105064 Quantum Algebra +math/0105066 Dynamical Systems +math/0105067 Dynamical Systems +math/0105068 Quantum Algebra +math/0105078 Geometric Topology +math/0105086 Operator Algebras +math/0105089 Quantum Algebra +math/0105098 Algebraic Geometry +math/0105100 Algebraic Geometry +math/0105117 Quantum Algebra +math/0105145 Quantum Algebra +math/0105162 Quantum Algebra +math/0105220 Quantum Algebra +math/0105223 Differential Geometry +math/0106086 Differential Geometry +math/0106125 Quantum Algebra +math/0106134 Analysis of PDEs +math/0106177 Differential Geometry +math/0106178 Quantum Algebra +math/0106179 Differential Geometry +math/0106196 Quantum Algebra +math/0107003 Quantum Algebra +math/0107010 Algebraic Geometry +math/0107045 Symplectic Geometry +math/0107070 Quantum Algebra +math/0107091 Operator Algebras +math/0107126 Quantum Algebra +math/0107127 Operator Algebras +math/0107128 Combinatorics +math/0107154 Functional Analysis +math/0107168 Algebraic Topology +math/0107213 Quantum Algebra +math/0107216 Quantum Algebra +math/0108021 Quantum Algebra +math/0108040 Quantum Algebra +math/0108045 Quantum Algebra +math/0108055 Operator Algebras +math/0108060 Operator Algebras +math/0108174 Probability +math/0108179 Differential Geometry +math/0108214 Analysis of PDEs +math/0109082 Quantum Algebra +math/0109084 Quantum Algebra +math/0109132 Quantum Algebra +math/0109172 Dynamical Systems +math/0109200 Analysis of PDEs +math/0109201 Classical Analysis and ODEs +math/0109202 Dynamical Systems +math/0110013 Quantum Algebra +math/0110088 Quantum Algebra +math/0110159 Dynamical Systems +math/0110177 Analysis of PDEs +math/0110195 Analysis of PDEs +math/0110217 Number Theory +math/0110257 Quantum Algebra +math/0110275 Quantum Algebra +math/0111014 Dynamical Systems +math/0111056 Differential Geometry +math/0111127 Numerical Analysis +math/0111128 Numerical Analysis +math/0111148 Differential Geometry +math/0111206 Functional Analysis +math/0111230 Quantum Algebra +math/0111276 Differential Geometry +math/0111325 Quantum Algebra +math/0112013 Analysis of PDEs +math/0112015 Analysis of PDEs +math/0112045 Quantum Algebra +math/0112059 Quantum Algebra +math/0112061 Quantum Algebra +math/0112063 Quantum Algebra +math/0112079 Quantum Algebra +math/0112121 Quantum Algebra +math/0112123 Quantum Algebra +math/0112125 Quantum Algebra +math/0112126 Quantum Algebra +math/0112139 Quantum Algebra +math/0112140 Quantum Algebra +math/0112166 Differential Geometry +math/0112175 Differential Geometry +math/0112219 Differential Geometry +math/0112246 Probability +math/0112297 Differential Geometry +math/0201018 Quantum Algebra +math/0201148 Algebraic Geometry +math/0201199 Differential Geometry +math/0201210 Quantum Algebra +math/0201247 Complex Variables +math/0201263 Differential Geometry +math/0201264 Differential Geometry +math/0201288 Dynamical Systems +math/0201294 Dynamical Systems +math/0202006 Rings and Algebras +math/0202017 Quantum Algebra +math/0202126 Quantum Algebra +math/0202153 Group Theory +math/0202176 Geometric Topology +math/0202183 Quantum Algebra +math/0202200 Dynamical Systems +math/0202216 Quantum Algebra +math/0202297 Differential Geometry +math/0203143 Analysis of PDEs +math/0203155 Dynamical Systems +math/0203178 Differential Geometry +math/0203184 Probability +math/0203191 Dynamical Systems +math/0203209 Quantum Algebra +math/0203248 Number Theory +math/0204029 Operator Algebras +math/0204031 Quantum Algebra +math/0204059 Quantum Algebra +math/0204074 Rings and Algebras +math/0204097 Quantum Algebra +math/0204151 Dynamical Systems +math/0204215 Probability +math/0204237 Analysis of PDEs +math/0204278 Operator Algebras +math/0204298 Quantum Algebra +math/0204304 Functional Analysis +math/0204318 Complex Variables +math/0204323 Quantum Algebra +math/0204356 Numerical Analysis +math/0205055 Combinatorics +math/0205118 Quantum Algebra +math/0205139 Classical Analysis and ODEs +math/0205181 Analysis of PDEs +math/0205211 Quantum Algebra +math/0205236 Algebraic Geometry +math/0205264 Numerical Analysis +math/0205269 Differential Geometry +math/0205319 Spectral Theory +math/0205335 Quantum Algebra +math/0206034 Representation Theory +math/0206056 Number Theory +math/0206096 Dynamical Systems +math/0206137 Algebraic Geometry +math/0206208 Probability +math/0206214 Complex Variables +math/0206240 Classical Analysis and ODEs +math/0207086 Numerical Analysis +math/0207122 Classical Analysis and ODEs +math/0207133 Dynamical Systems +math/0207148 Analysis of PDEs +math/0207151 Quantum Algebra +math/0207153 Probability +math/0207162 Quantum Algebra +math/0207172 Numerical Analysis +math/0207207 Quantum Algebra +math/0207216 Symplectic Geometry +math/0207236 Number Theory +math/0207244 Quantum Algebra +math/0207279 Algebraic Geometry +math/0208097 Algebraic Geometry +math/0208126 Representation Theory +math/0208128 Quantum Algebra +math/0208140 Quantum Algebra +math/0208191 Quantum Algebra +math/0208195 Rings and Algebras +math/0209069 Operator Algebras +math/0209124 Differential Geometry +math/0209141 Representation Theory +math/0209145 Algebraic Geometry +math/0209167 Quantum Algebra +math/0209178 Probability +math/0209260 Differential Geometry +math/0209261 Differential Geometry +math/0209268 Quantum Algebra +math/0209303 Analysis of PDEs +math/0209335 Differential Geometry +math/0209392 Algebraic Geometry +math/0210004 Differential Geometry +math/0210028 Dynamical Systems +math/0210049 Quantum Algebra +math/0210074 Commutative Algebra +math/0210107 Geometric Topology +math/0210122 Algebraic Geometry +math/0210139 K-Theory and Homology +math/0210168 Quantum Algebra +math/0210179 Dynamical Systems +math/0210188 Quantum Algebra +math/0210207 Symplectic Geometry +math/0210346 Dynamical Systems +math/0210383 Quantum Algebra +math/0210427 Quantum Algebra +math/0210451 Quantum Algebra +math/0211016 Operator Algebras +math/0211043 Operator Algebras +math/0211046 Probability +math/0211055 Complex Variables +math/0211071 General Mathematics +math/0211082 Quantum Algebra +math/0211174 Commutative Algebra +math/0211221 Operator Algebras +math/0211262 Quantum Algebra +math/0211310 Analysis of PDEs +math/0211319 Quantum Algebra +math/0211339 Differential Geometry +math/0211427 Differential Geometry +math/0212029 Quantum Algebra +math/0212078 Functional Analysis +math/0212100 Number Theory +math/0212117 Classical Analysis and ODEs +nlin/0101003 Pattern Formation and Solitons +nlin/0101005 Pattern Formation and Solitons +nlin/0101008 Chaotic Dynamics +nlin/0101010 Chaotic Dynamics +nlin/0101012 Chaotic Dynamics +nlin/0101013 Chaotic Dynamics +nlin/0101016 Chaotic Dynamics +nlin/0101019 Chaotic Dynamics +nlin/0101022 Chaotic Dynamics +nlin/0101023 Exactly Solvable and Integrable Systems +nlin/0101025 Chaotic Dynamics +nlin/0101029 Chaotic Dynamics +nlin/0101030 Exactly Solvable and Integrable Systems +nlin/0101031 Exactly Solvable and Integrable Systems +nlin/0101032 Pattern Formation and Solitons +nlin/0101033 Exactly Solvable and Integrable Systems +nlin/0101036 Chaotic Dynamics +nlin/0101037 Cellular Automata and Lattice Gases +nlin/0101039 Pattern Formation and Solitons +nlin/0101040 Chaotic Dynamics +nlin/0101042 Chaotic Dynamics +nlin/0101043 Pattern Formation and Solitons +nlin/0101046 Pattern Formation and Solitons +nlin/0101049 Chaotic Dynamics +nlin/0101050 Chaotic Dynamics +nlin/0101052 Pattern Formation and Solitons +nlin/0101055 Chaotic Dynamics +nlin/0102003 Exactly Solvable and Integrable Systems +nlin/0102005 Chaotic Dynamics +nlin/0102007 Chaotic Dynamics +nlin/0102008 Exactly Solvable and Integrable Systems +nlin/0102009 Chaotic Dynamics +nlin/0102010 Exactly Solvable and Integrable Systems +nlin/0102012 Exactly Solvable and Integrable Systems +nlin/0102013 Chaotic Dynamics +nlin/0102015 Chaotic Dynamics +nlin/0102016 Adaptation and Self-Organizing Systems +nlin/0102017 Chaotic Dynamics +nlin/0102019 Exactly Solvable and Integrable Systems +nlin/0102022 Chaotic Dynamics +nlin/0102023 Chaotic Dynamics +nlin/0102024 Exactly Solvable and Integrable Systems +nlin/0102025 Exactly Solvable and Integrable Systems +nlin/0102026 Cellular Automata and Lattice Gases +nlin/0102027 Exactly Solvable and Integrable Systems +nlin/0102029 Adaptation and Self-Organizing Systems +nlin/0102031 Pattern Formation and Solitons +nlin/0102033 Chaotic Dynamics +nlin/0102038 Chaotic Dynamics +nlin/0103002 Exactly Solvable and Integrable Systems +nlin/0103003 Pattern Formation and Solitons +nlin/0103004 Chaotic Dynamics +nlin/0103008 Exactly Solvable and Integrable Systems +nlin/0103009 Pattern Formation and Solitons +nlin/0103010 Exactly Solvable and Integrable Systems +nlin/0103011 Exactly Solvable and Integrable Systems +nlin/0103013 Pattern Formation and Solitons +nlin/0103014 Pattern Formation and Solitons +nlin/0103015 Exactly Solvable and Integrable Systems +nlin/0103016 Exactly Solvable and Integrable Systems +nlin/0103017 Chaotic Dynamics +nlin/0103018 Chaotic Dynamics +nlin/0103019 Chaotic Dynamics +nlin/0103020 Chaotic Dynamics +nlin/0103021 Chaotic Dynamics +nlin/0103022 Cellular Automata and Lattice Gases +nlin/0103024 Chaotic Dynamics +nlin/0103025 Exactly Solvable and Integrable Systems +nlin/0103028 Pattern Formation and Solitons +nlin/0103029 Chaotic Dynamics +nlin/0103030 Pattern Formation and Solitons +nlin/0103031 Chaotic Dynamics +nlin/0103032 Chaotic Dynamics +nlin/0103037 Chaotic Dynamics +nlin/0103043 Chaotic Dynamics +nlin/0103044 Chaotic Dynamics +nlin/0103045 Exactly Solvable and Integrable Systems +nlin/0103047 Exactly Solvable and Integrable Systems +nlin/0103050 Pattern Formation and Solitons +nlin/0103051 Exactly Solvable and Integrable Systems +nlin/0103053 Pattern Formation and Solitons +nlin/0103054 Chaotic Dynamics +nlin/0103056 Pattern Formation and Solitons +nlin/0103057 Cellular Automata and Lattice Gases +nlin/0103058 Chaotic Dynamics +nlin/0103059 Chaotic Dynamics +nlin/0104001 Chaotic Dynamics +nlin/0104005 Chaotic Dynamics +nlin/0104008 Chaotic Dynamics +nlin/0104010 Chaotic Dynamics +nlin/0104011 Chaotic Dynamics +nlin/0104012 Chaotic Dynamics +nlin/0104014 Chaotic Dynamics +nlin/0104015 Exactly Solvable and Integrable Systems +nlin/0104019 Exactly Solvable and Integrable Systems +nlin/0104021 Chaotic Dynamics +nlin/0104022 Exactly Solvable and Integrable Systems +nlin/0104023 Chaotic Dynamics +nlin/0104024 Chaotic Dynamics +nlin/0104025 Pattern Formation and Solitons +nlin/0104027 Chaotic Dynamics +nlin/0104031 Chaotic Dynamics +nlin/0104033 Pattern Formation and Solitons +nlin/0104035 Chaotic Dynamics +nlin/0104038 Chaotic Dynamics +nlin/0104042 Chaotic Dynamics +nlin/0104044 Chaotic Dynamics +nlin/0104045 Exactly Solvable and Integrable Systems +nlin/0104046 Pattern Formation and Solitons +nlin/0104047 Adaptation and Self-Organizing Systems +nlin/0104049 Chaotic Dynamics +nlin/0104050 Chaotic Dynamics +nlin/0104051 Chaotic Dynamics +nlin/0104053 Exactly Solvable and Integrable Systems +nlin/0104055 Chaotic Dynamics +nlin/0104058 Pattern Formation and Solitons +nlin/0104059 Pattern Formation and Solitons +nlin/0104061 Chaotic Dynamics +nlin/0104063 Pattern Formation and Solitons +nlin/0104064 Chaotic Dynamics +nlin/0104066 Pattern Formation and Solitons +nlin/0104068 Chaotic Dynamics +nlin/0104070 Exactly Solvable and Integrable Systems +nlin/0105001 Chaotic Dynamics +nlin/0105003 Pattern Formation and Solitons +nlin/0105005 Exactly Solvable and Integrable Systems +nlin/0105007 Chaotic Dynamics +nlin/0105008 Pattern Formation and Solitons +nlin/0105017 Chaotic Dynamics +nlin/0105018 Pattern Formation and Solitons +nlin/0105019 Pattern Formation and Solitons +nlin/0105020 Chaotic Dynamics +nlin/0105023 Exactly Solvable and Integrable Systems +nlin/0105024 Pattern Formation and Solitons +nlin/0105025 Chaotic Dynamics +nlin/0105026 Chaotic Dynamics +nlin/0105027 Chaotic Dynamics +nlin/0105032 Chaotic Dynamics +nlin/0105033 Chaotic Dynamics +nlin/0105039 Pattern Formation and Solitons +nlin/0105041 Pattern Formation and Solitons +nlin/0105042 Chaotic Dynamics +nlin/0105043 Exactly Solvable and Integrable Systems +nlin/0105044 Chaotic Dynamics +nlin/0105046 Chaotic Dynamics +nlin/0105047 Chaotic Dynamics +nlin/0105048 Chaotic Dynamics +nlin/0105049 Pattern Formation and Solitons +nlin/0105050 Chaotic Dynamics +nlin/0105051 Exactly Solvable and Integrable Systems +nlin/0105054 Pattern Formation and Solitons +nlin/0105055 Pattern Formation and Solitons +nlin/0105056 Exactly Solvable and Integrable Systems +nlin/0105058 Adaptation and Self-Organizing Systems +nlin/0105059 Adaptation and Self-Organizing Systems +nlin/0105061 Exactly Solvable and Integrable Systems +nlin/0105066 Pattern Formation and Solitons +nlin/0105067 Chaotic Dynamics +nlin/0105069 Pattern Formation and Solitons +nlin/0106001 Pattern Formation and Solitons +nlin/0106002 Pattern Formation and Solitons +nlin/0106003 Chaotic Dynamics +nlin/0106004 Chaotic Dynamics +nlin/0106005 Chaotic Dynamics +nlin/0106010 Chaotic Dynamics +nlin/0106011 Chaotic Dynamics +nlin/0106012 Chaotic Dynamics +nlin/0106013 Chaotic Dynamics +nlin/0106014 Chaotic Dynamics +nlin/0106015 Exactly Solvable and Integrable Systems +nlin/0106017 Chaotic Dynamics +nlin/0106018 Chaotic Dynamics +nlin/0106022 Chaotic Dynamics +nlin/0106023 Chaotic Dynamics +nlin/0106026 Pattern Formation and Solitons +nlin/0106031 Exactly Solvable and Integrable Systems +nlin/0106032 Exactly Solvable and Integrable Systems +nlin/0106033 Exactly Solvable and Integrable Systems +nlin/0106034 Pattern Formation and Solitons +nlin/0106037 Chaotic Dynamics +nlin/0106039 Chaotic Dynamics +nlin/0106040 Exactly Solvable and Integrable Systems +nlin/0106041 Pattern Formation and Solitons +nlin/0106042 Chaotic Dynamics +nlin/0106045 Pattern Formation and Solitons +nlin/0106046 Chaotic Dynamics +nlin/0107002 Pattern Formation and Solitons +nlin/0107003 Chaotic Dynamics +nlin/0107005 Pattern Formation and Solitons +nlin/0107006 Chaotic Dynamics +nlin/0107008 Chaotic Dynamics +nlin/0107009 Pattern Formation and Solitons +nlin/0107010 Pattern Formation and Solitons +nlin/0107011 Pattern Formation and Solitons +nlin/0107015 Exactly Solvable and Integrable Systems +nlin/0107016 Chaotic Dynamics +nlin/0107020 Chaotic Dynamics +nlin/0107023 Chaotic Dynamics +nlin/0107024 Chaotic Dynamics +nlin/0107025 Chaotic Dynamics +nlin/0107030 Pattern Formation and Solitons +nlin/0107031 Chaotic Dynamics +nlin/0107033 Pattern Formation and Solitons +nlin/0107036 Chaotic Dynamics +nlin/0107037 Adaptation and Self-Organizing Systems +nlin/0107038 Adaptation and Self-Organizing Systems +nlin/0107040 Exactly Solvable and Integrable Systems +nlin/0107042 Chaotic Dynamics +nlin/0107043 Pattern Formation and Solitons +nlin/0107046 Chaotic Dynamics +nlin/0107052 Exactly Solvable and Integrable Systems +nlin/0107054 Exactly Solvable and Integrable Systems +nlin/0107060 Chaotic Dynamics +nlin/0107061 Chaotic Dynamics +nlin/0107064 Exactly Solvable and Integrable Systems +nlin/0107066 Chaotic Dynamics +nlin/0107068 Chaotic Dynamics +nlin/0107072 Pattern Formation and Solitons +nlin/0107073 Adaptation and Self-Organizing Systems +nlin/0107074 Exactly Solvable and Integrable Systems +nlin/0108001 Exactly Solvable and Integrable Systems +nlin/0108002 Exactly Solvable and Integrable Systems +nlin/0108004 Pattern Formation and Solitons +nlin/0108010 Exactly Solvable and Integrable Systems +nlin/0108011 Chaotic Dynamics +nlin/0108013 Cellular Automata and Lattice Gases +nlin/0108014 Chaotic Dynamics +nlin/0108015 Exactly Solvable and Integrable Systems +nlin/0108016 Chaotic Dynamics +nlin/0108017 Exactly Solvable and Integrable Systems +nlin/0108019 Exactly Solvable and Integrable Systems +nlin/0108021 Exactly Solvable and Integrable Systems +nlin/0108030 Chaotic Dynamics +nlin/0108031 Chaotic Dynamics +nlin/0108032 Chaotic Dynamics +nlin/0108034 Pattern Formation and Solitons +nlin/0108035 Chaotic Dynamics +nlin/0108040 Pattern Formation and Solitons +nlin/0108049 Exactly Solvable and Integrable Systems +nlin/0108050 Chaotic Dynamics +nlin/0108051 Exactly Solvable and Integrable Systems +nlin/0109003 Pattern Formation and Solitons +nlin/0109004 Chaotic Dynamics +nlin/0109005 Chaotic Dynamics +nlin/0109007 Chaotic Dynamics +nlin/0109008 Pattern Formation and Solitons +nlin/0109010 Exactly Solvable and Integrable Systems +nlin/0109012 Pattern Formation and Solitons +nlin/0109013 Pattern Formation and Solitons +nlin/0109015 Adaptation and Self-Organizing Systems +nlin/0109016 Pattern Formation and Solitons +nlin/0109019 Chaotic Dynamics +nlin/0109020 Chaotic Dynamics +nlin/0109021 Chaotic Dynamics +nlin/0109029 Chaotic Dynamics +nlin/0110002 Exactly Solvable and Integrable Systems +nlin/0110003 Pattern Formation and Solitons +nlin/0110005 Chaotic Dynamics +nlin/0110006 Chaotic Dynamics +nlin/0110007 Chaotic Dynamics +nlin/0110009 Chaotic Dynamics +nlin/0110011 Chaotic Dynamics +nlin/0110013 Pattern Formation and Solitons +nlin/0110014 Exactly Solvable and Integrable Systems +nlin/0110016 Chaotic Dynamics +nlin/0110017 Pattern Formation and Solitons +nlin/0110019 Chaotic Dynamics +nlin/0110020 Pattern Formation and Solitons +nlin/0110021 Exactly Solvable and Integrable Systems +nlin/0110023 Chaotic Dynamics +nlin/0110025 Chaotic Dynamics +nlin/0110026 Pattern Formation and Solitons +nlin/0110027 Exactly Solvable and Integrable Systems +nlin/0110033 Pattern Formation and Solitons +nlin/0110034 Chaotic Dynamics +nlin/0110035 Exactly Solvable and Integrable Systems +nlin/0110036 Adaptation and Self-Organizing Systems +nlin/0110037 Chaotic Dynamics +nlin/0110038 Exactly Solvable and Integrable Systems +nlin/0110041 Pattern Formation and Solitons +nlin/0110042 Chaotic Dynamics +nlin/0110044 Adaptation and Self-Organizing Systems +nlin/0111001 Chaotic Dynamics +nlin/0111004 Exactly Solvable and Integrable Systems +nlin/0111007 Pattern Formation and Solitons +nlin/0111011 Chaotic Dynamics +nlin/0111014 Chaotic Dynamics +nlin/0111016 Chaotic Dynamics +nlin/0111017 Pattern Formation and Solitons +nlin/0111018 Adaptation and Self-Organizing Systems +nlin/0111019 Exactly Solvable and Integrable Systems +nlin/0111021 Exactly Solvable and Integrable Systems +nlin/0111023 Adaptation and Self-Organizing Systems +nlin/0111027 Exactly Solvable and Integrable Systems +nlin/0111029 Chaotic Dynamics +nlin/0111030 Chaotic Dynamics +nlin/0111031 Pattern Formation and Solitons +nlin/0111033 Chaotic Dynamics +nlin/0111036 Chaotic Dynamics +nlin/0111037 Pattern Formation and Solitons +nlin/0111038 Pattern Formation and Solitons +nlin/0111039 Pattern Formation and Solitons +nlin/0111041 Exactly Solvable and Integrable Systems +nlin/0111043 Pattern Formation and Solitons +nlin/0111046 Exactly Solvable and Integrable Systems +nlin/0111047 Exactly Solvable and Integrable Systems +nlin/0111051 Chaotic Dynamics +nlin/0111053 Chaotic Dynamics +nlin/0111054 Pattern Formation and Solitons +nlin/0111056 Pattern Formation and Solitons +nlin/0111057 Chaotic Dynamics +nlin/0111063 Chaotic Dynamics +nlin/0111064 Chaotic Dynamics +nlin/0111065 Chaotic Dynamics +nlin/0111066 Chaotic Dynamics +nlin/0112002 Exactly Solvable and Integrable Systems +nlin/0112003 Chaotic Dynamics +nlin/0112005 Pattern Formation and Solitons +nlin/0112009 Exactly Solvable and Integrable Systems +nlin/0112012 Pattern Formation and Solitons +nlin/0112016 Exactly Solvable and Integrable Systems +nlin/0112017 Exactly Solvable and Integrable Systems +nlin/0112018 Chaotic Dynamics +nlin/0112023 Chaotic Dynamics +nlin/0112028 Chaotic Dynamics +nlin/0112029 Chaotic Dynamics +nlin/0112030 Exactly Solvable and Integrable Systems +nlin/0112032 Chaotic Dynamics +nlin/0112035 Exactly Solvable and Integrable Systems +nlin/0112036 Chaotic Dynamics +nlin/0112037 Chaotic Dynamics +nlin/0112039 Pattern Formation and Solitons +nlin/0112040 Pattern Formation and Solitons +nlin/0112041 Exactly Solvable and Integrable Systems +nlin/0112042 Chaotic Dynamics +nlin/0112043 Exactly Solvable and Integrable Systems +nlin/0112046 Pattern Formation and Solitons +nlin/0112047 Pattern Formation and Solitons +nlin/0112050 Chaotic Dynamics +nlin/0201002 Chaotic Dynamics +nlin/0201003 Chaotic Dynamics +nlin/0201005 Chaotic Dynamics +nlin/0201006 Chaotic Dynamics +nlin/0201010 Chaotic Dynamics +nlin/0201012 Chaotic Dynamics +nlin/0201013 Pattern Formation and Solitons +nlin/0201015 Pattern Formation and Solitons +nlin/0201017 Chaotic Dynamics +nlin/0201020 Chaotic Dynamics +nlin/0201022 Chaotic Dynamics +nlin/0201024 Exactly Solvable and Integrable Systems +nlin/0201028 Exactly Solvable and Integrable Systems +nlin/0201029 Pattern Formation and Solitons +nlin/0201030 Pattern Formation and Solitons +nlin/0201032 Chaotic Dynamics +nlin/0201034 Pattern Formation and Solitons +nlin/0201035 Chaotic Dynamics +nlin/0201036 Pattern Formation and Solitons +nlin/0201037 Chaotic Dynamics +nlin/0201038 Chaotic Dynamics +nlin/0201041 Chaotic Dynamics +nlin/0201042 Chaotic Dynamics +nlin/0201047 Pattern Formation and Solitons +nlin/0201048 Pattern Formation and Solitons +nlin/0201050 Chaotic Dynamics +nlin/0201053 Chaotic Dynamics +nlin/0201054 Pattern Formation and Solitons +nlin/0201057 Chaotic Dynamics +nlin/0201058 Exactly Solvable and Integrable Systems +nlin/0201059 Chaotic Dynamics +nlin/0201063 Exactly Solvable and Integrable Systems +nlin/0201064 Cellular Automata and Lattice Gases +nlin/0201065 Exactly Solvable and Integrable Systems +nlin/0202003 Pattern Formation and Solitons +nlin/0202005 Chaotic Dynamics +nlin/0202006 Pattern Formation and Solitons +nlin/0202010 Chaotic Dynamics +nlin/0202015 Chaotic Dynamics +nlin/0202016 Chaotic Dynamics +nlin/0202017 Chaotic Dynamics +nlin/0202019 Chaotic Dynamics +nlin/0202022 Chaotic Dynamics +nlin/0202024 Exactly Solvable and Integrable Systems +nlin/0202025 Chaotic Dynamics +nlin/0202026 Chaotic Dynamics +nlin/0202027 Chaotic Dynamics +nlin/0202029 Chaotic Dynamics +nlin/0202031 Exactly Solvable and Integrable Systems +nlin/0202032 Exactly Solvable and Integrable Systems +nlin/0202033 Adaptation and Self-Organizing Systems +nlin/0202040 Chaotic Dynamics +nlin/0202046 Exactly Solvable and Integrable Systems +nlin/0202050 Pattern Formation and Solitons +nlin/0202055 Chaotic Dynamics +nlin/0202057 Chaotic Dynamics +nlin/0202059 Chaotic Dynamics +nlin/0202061 Chaotic Dynamics +nlin/0203002 Pattern Formation and Solitons +nlin/0203004 Pattern Formation and Solitons +nlin/0203005 Chaotic Dynamics +nlin/0203006 Exactly Solvable and Integrable Systems +nlin/0203007 Chaotic Dynamics +nlin/0203009 Chaotic Dynamics +nlin/0203013 Chaotic Dynamics +nlin/0203017 Chaotic Dynamics +nlin/0203018 Exactly Solvable and Integrable Systems +nlin/0203019 Chaotic Dynamics +nlin/0203020 Chaotic Dynamics +nlin/0203022 Chaotic Dynamics +nlin/0203023 Chaotic Dynamics +nlin/0203024 Chaotic Dynamics +nlin/0203026 Pattern Formation and Solitons +nlin/0203027 Chaotic Dynamics +nlin/0203032 Pattern Formation and Solitons +nlin/0203033 Chaotic Dynamics +nlin/0203042 Chaotic Dynamics +nlin/0203043 Exactly Solvable and Integrable Systems +nlin/0203044 Chaotic Dynamics +nlin/0203046 Chaotic Dynamics +nlin/0203048 Chaotic Dynamics +nlin/0203049 Chaotic Dynamics +nlin/0203050 Exactly Solvable and Integrable Systems +nlin/0203051 Exactly Solvable and Integrable Systems +nlin/0203054 Pattern Formation and Solitons +nlin/0203055 Exactly Solvable and Integrable Systems +nlin/0203056 Pattern Formation and Solitons +nlin/0203058 Pattern Formation and Solitons +nlin/0203059 Chaotic Dynamics +nlin/0203060 Pattern Formation and Solitons +nlin/0203061 Chaotic Dynamics +nlin/0203062 Chaotic Dynamics +nlin/0204001 Pattern Formation and Solitons +nlin/0204002 Chaotic Dynamics +nlin/0204006 Chaotic Dynamics +nlin/0204007 Adaptation and Self-Organizing Systems +nlin/0204008 Pattern Formation and Solitons +nlin/0204009 Pattern Formation and Solitons +nlin/0204011 Chaotic Dynamics +nlin/0204012 Adaptation and Self-Organizing Systems +nlin/0204014 Chaotic Dynamics +nlin/0204016 Pattern Formation and Solitons +nlin/0204017 Chaotic Dynamics +nlin/0204020 Chaotic Dynamics +nlin/0204021 Exactly Solvable and Integrable Systems +nlin/0204023 Chaotic Dynamics +nlin/0204024 Adaptation and Self-Organizing Systems +nlin/0204025 Chaotic Dynamics +nlin/0204026 Chaotic Dynamics +nlin/0204027 Chaotic Dynamics +nlin/0204033 Chaotic Dynamics +nlin/0204034 Chaotic Dynamics +nlin/0204035 Chaotic Dynamics +nlin/0204036 Exactly Solvable and Integrable Systems +nlin/0204040 Pattern Formation and Solitons +nlin/0204042 Exactly Solvable and Integrable Systems +nlin/0204043 Exactly Solvable and Integrable Systems +nlin/0204044 Chaotic Dynamics +nlin/0204046 Chaotic Dynamics +nlin/0204049 Exactly Solvable and Integrable Systems +nlin/0204050 Exactly Solvable and Integrable Systems +nlin/0204051 Chaotic Dynamics +nlin/0204052 Pattern Formation and Solitons +nlin/0204055 Chaotic Dynamics +nlin/0204057 Adaptation and Self-Organizing Systems +nlin/0204063 Exactly Solvable and Integrable Systems +nlin/0204064 Chaotic Dynamics +nlin/0204065 Pattern Formation and Solitons +nlin/0204066 Exactly Solvable and Integrable Systems +nlin/0204067 Pattern Formation and Solitons +nlin/0204069 Chaotic Dynamics +nlin/0205002 Pattern Formation and Solitons +nlin/0205003 Chaotic Dynamics +nlin/0205004 Adaptation and Self-Organizing Systems +nlin/0205005 Pattern Formation and Solitons +nlin/0205006 Chaotic Dynamics +nlin/0205007 Chaotic Dynamics +nlin/0205012 Exactly Solvable and Integrable Systems +nlin/0205015 Pattern Formation and Solitons +nlin/0205016 Cellular Automata and Lattice Gases +nlin/0205018 Chaotic Dynamics +nlin/0205026 Adaptation and Self-Organizing Systems +nlin/0205031 Pattern Formation and Solitons +nlin/0205033 Chaotic Dynamics +nlin/0205038 Exactly Solvable and Integrable Systems +nlin/0205039 Chaotic Dynamics +nlin/0205040 Chaotic Dynamics +nlin/0205041 Pattern Formation and Solitons +nlin/0205042 Chaotic Dynamics +nlin/0205043 Chaotic Dynamics +nlin/0205044 Pattern Formation and Solitons +nlin/0205045 Pattern Formation and Solitons +nlin/0205048 Chaotic Dynamics +nlin/0205049 Exactly Solvable and Integrable Systems +nlin/0205055 Chaotic Dynamics +nlin/0205057 Exactly Solvable and Integrable Systems +nlin/0205058 Chaotic Dynamics +nlin/0205060 Chaotic Dynamics +nlin/0205062 Chaotic Dynamics +nlin/0205065 Chaotic Dynamics +nlin/0206002 Chaotic Dynamics +nlin/0206006 Chaotic Dynamics +nlin/0206007 Pattern Formation and Solitons +nlin/0206012 Exactly Solvable and Integrable Systems +nlin/0206013 Pattern Formation and Solitons +nlin/0206015 Chaotic Dynamics +nlin/0206017 Chaotic Dynamics +nlin/0206019 Chaotic Dynamics +nlin/0206022 Chaotic Dynamics +nlin/0206026 Chaotic Dynamics +nlin/0206027 Chaotic Dynamics +nlin/0206028 Chaotic Dynamics +nlin/0206030 Chaotic Dynamics +nlin/0206033 Cellular Automata and Lattice Gases +nlin/0206041 Exactly Solvable and Integrable Systems +nlin/0206043 Cellular Automata and Lattice Gases +nlin/0206047 Chaotic Dynamics +nlin/0206049 Exactly Solvable and Integrable Systems +nlin/0206050 Pattern Formation and Solitons +nlin/0206051 Pattern Formation and Solitons +nlin/0207003 Chaotic Dynamics +nlin/0207005 Chaotic Dynamics +nlin/0207007 Chaotic Dynamics +nlin/0207008 Chaotic Dynamics +nlin/0207010 Exactly Solvable and Integrable Systems +nlin/0207011 Chaotic Dynamics +nlin/0207012 Chaotic Dynamics +nlin/0207018 Chaotic Dynamics +nlin/0207022 Exactly Solvable and Integrable Systems +nlin/0207023 Pattern Formation and Solitons +nlin/0207024 Pattern Formation and Solitons +nlin/0207027 Pattern Formation and Solitons +nlin/0207028 Exactly Solvable and Integrable Systems +nlin/0207029 Chaotic Dynamics +nlin/0207031 Pattern Formation and Solitons +nlin/0207032 Cellular Automata and Lattice Gases +nlin/0207034 Chaotic Dynamics +nlin/0207038 Chaotic Dynamics +nlin/0207041 Exactly Solvable and Integrable Systems +nlin/0207043 Chaotic Dynamics +nlin/0207044 Pattern Formation and Solitons +nlin/0207045 Chaotic Dynamics +nlin/0207049 Chaotic Dynamics +nlin/0207050 Chaotic Dynamics +nlin/0207051 Chaotic Dynamics +nlin/0207052 Pattern Formation and Solitons +nlin/0207053 Chaotic Dynamics +nlin/0207054 Pattern Formation and Solitons +nlin/0207056 Chaotic Dynamics +nlin/0207060 Chaotic Dynamics +nlin/0207061 Chaotic Dynamics +nlin/0208004 Chaotic Dynamics +nlin/0208005 Exactly Solvable and Integrable Systems +nlin/0208007 Chaotic Dynamics +nlin/0208008 Pattern Formation and Solitons +nlin/0208015 Pattern Formation and Solitons +nlin/0208018 Pattern Formation and Solitons +nlin/0208023 Adaptation and Self-Organizing Systems +nlin/0208024 Chaotic Dynamics +nlin/0208027 Chaotic Dynamics +nlin/0208028 Chaotic Dynamics +nlin/0208029 Pattern Formation and Solitons +nlin/0208030 Pattern Formation and Solitons +nlin/0208034 Chaotic Dynamics +nlin/0208038 Chaotic Dynamics +nlin/0208042 Exactly Solvable and Integrable Systems +nlin/0208044 Chaotic Dynamics +nlin/0208045 Pattern Formation and Solitons +nlin/0208046 Chaotic Dynamics +nlin/0208047 Chaotic Dynamics +nlin/0208049 Pattern Formation and Solitons +nlin/0209001 Chaotic Dynamics +nlin/0209002 Pattern Formation and Solitons +nlin/0209003 Pattern Formation and Solitons +nlin/0209005 Cellular Automata and Lattice Gases +nlin/0209009 Chaotic Dynamics +nlin/0209011 Adaptation and Self-Organizing Systems +nlin/0209012 Exactly Solvable and Integrable Systems +nlin/0209013 Chaotic Dynamics +nlin/0209015 Chaotic Dynamics +nlin/0209017 Pattern Formation and Solitons +nlin/0209020 Pattern Formation and Solitons +nlin/0209024 Chaotic Dynamics +nlin/0209025 Pattern Formation and Solitons +nlin/0209029 Chaotic Dynamics +nlin/0209032 Chaotic Dynamics +nlin/0209033 Chaotic Dynamics +nlin/0209036 Pattern Formation and Solitons +nlin/0209040 Exactly Solvable and Integrable Systems +nlin/0209042 Chaotic Dynamics +nlin/0209043 Exactly Solvable and Integrable Systems +nlin/0209044 Chaotic Dynamics +nlin/0209045 Pattern Formation and Solitons +nlin/0209048 Pattern Formation and Solitons +nlin/0209049 Chaotic Dynamics +nlin/0209051 Exactly Solvable and Integrable Systems +nlin/0209052 Pattern Formation and Solitons +nlin/0209054 Exactly Solvable and Integrable Systems +nlin/0209056 Chaotic Dynamics +nlin/0209060 Pattern Formation and Solitons +nlin/0210004 Chaotic Dynamics +nlin/0210005 Pattern Formation and Solitons +nlin/0210006 Chaotic Dynamics +nlin/0210010 Chaotic Dynamics +nlin/0210012 Exactly Solvable and Integrable Systems +nlin/0210016 Chaotic Dynamics +nlin/0210017 Exactly Solvable and Integrable Systems +nlin/0210021 Chaotic Dynamics +nlin/0210023 Pattern Formation and Solitons +nlin/0210025 Chaotic Dynamics +nlin/0210028 Exactly Solvable and Integrable Systems +nlin/0210029 Chaotic Dynamics +nlin/0210030 Chaotic Dynamics +nlin/0210032 Exactly Solvable and Integrable Systems +nlin/0210033 Chaotic Dynamics +nlin/0210034 Chaotic Dynamics +nlin/0210036 Chaotic Dynamics +nlin/0210038 Chaotic Dynamics +nlin/0210039 Exactly Solvable and Integrable Systems +nlin/0210045 Chaotic Dynamics +nlin/0210046 Exactly Solvable and Integrable Systems +nlin/0210047 Chaotic Dynamics +nlin/0210048 Adaptation and Self-Organizing Systems +nlin/0210051 Chaotic Dynamics +nlin/0210055 Adaptation and Self-Organizing Systems +nlin/0210056 Chaotic Dynamics +nlin/0210057 Chaotic Dynamics +nlin/0210059 Chaotic Dynamics +nlin/0210061 Chaotic Dynamics +nlin/0210062 Cellular Automata and Lattice Gases +nlin/0210063 Cellular Automata and Lattice Gases +nlin/0210066 Pattern Formation and Solitons +nlin/0210073 Pattern Formation and Solitons +nlin/0211006 Chaotic Dynamics +nlin/0211010 Adaptation and Self-Organizing Systems +nlin/0211011 Chaotic Dynamics +nlin/0211017 Chaotic Dynamics +nlin/0211019 Chaotic Dynamics +nlin/0211022 Exactly Solvable and Integrable Systems +nlin/0211024 Adaptation and Self-Organizing Systems +nlin/0211029 Chaotic Dynamics +nlin/0211032 Exactly Solvable and Integrable Systems +nlin/0211033 Chaotic Dynamics +nlin/0211037 Chaotic Dynamics +nlin/0211041 Chaotic Dynamics +nlin/0211043 Exactly Solvable and Integrable Systems +nlin/0211051 Exactly Solvable and Integrable Systems +nlin/0212002 Exactly Solvable and Integrable Systems +nlin/0212003 Chaotic Dynamics +nlin/0212006 Chaotic Dynamics +nlin/0212007 Exactly Solvable and Integrable Systems +nlin/0212008 Chaotic Dynamics +nlin/0212009 Pattern Formation and Solitons +nlin/0212011 Chaotic Dynamics +nlin/0212012 Chaotic Dynamics +nlin/0212013 Chaotic Dynamics +nlin/0212014 Exactly Solvable and Integrable Systems +nlin/0212016 Chaotic Dynamics +nlin/0212017 Chaotic Dynamics +nlin/0212018 Pattern Formation and Solitons +nlin/0212020 Chaotic Dynamics +nlin/0212021 Chaotic Dynamics +nlin/0212022 Chaotic Dynamics +nlin/0212024 Chaotic Dynamics +nlin/0212026 Exactly Solvable and Integrable Systems +nlin/0212027 Chaotic Dynamics +nlin/0212028 Pattern Formation and Solitons +nlin/0212029 Exactly Solvable and Integrable Systems +nlin/0212031 Pattern Formation and Solitons +nlin/0212032 Chaotic Dynamics +nlin/0212034 Pattern Formation and Solitons +nlin/0212038 Adaptation and Self-Organizing Systems +nlin/0212039 Pattern Formation and Solitons +nlin/0212040 Pattern Formation and Solitons +nlin/0212042 Chaotic Dynamics +nlin/0212043 Exactly Solvable and Integrable Systems +nlin/0212046 Chaotic Dynamics +nlin/0212047 Pattern Formation and Solitons +nlin/0212051 Chaotic Dynamics +nucl-ex/0101004 +nucl-ex/0101009 +nucl-ex/0101010 +nucl-ex/0101012 +nucl-ex/0102005 +nucl-ex/0102007 +nucl-ex/0102010 +nucl-ex/0102017 +nucl-ex/0103003 +nucl-ex/0103004 +nucl-ex/0103006 +nucl-ex/0103007 +nucl-ex/0103008 +nucl-ex/0104005 +nucl-ex/0104010 +nucl-ex/0104017 +nucl-ex/0104019 +nucl-ex/0104024 +nucl-ex/0104029 +nucl-ex/0104030 +nucl-ex/0105009 +nucl-ex/0105010 +nucl-ex/0105016 +nucl-ex/0105018 +nucl-ex/0105019 +nucl-ex/0105022 +nucl-ex/0106003 +nucl-ex/0106008 +nucl-ex/0106012 +nucl-ex/0106016 +nucl-ex/0106017 +nucl-ex/0106018 +nucl-ex/0106019 +nucl-ex/0106022 +nucl-ex/0106023 +nucl-ex/0107001 +nucl-ex/0107002 +nucl-ex/0107010 +nucl-ex/0107011 +nucl-ex/0107012 +nucl-ex/0107013 +nucl-ex/0107014 +nucl-ex/0107017 +nucl-ex/0108001 +nucl-ex/0108002 +nucl-ex/0108010 +nucl-ex/0108011 +nucl-ex/0108013 +nucl-ex/0108014 +nucl-ex/0108017 +nucl-ex/0108018 +nucl-ex/0108021 +nucl-ex/0108026 +nucl-ex/0108028 +nucl-ex/0108030 +nucl-ex/0109001 +nucl-ex/0109006 +nucl-ex/0109007 +nucl-ex/0109009 +nucl-ex/0109011 +nucl-ex/0109019 +nucl-ex/0110002 +nucl-ex/0110010 +nucl-ex/0110012 +nucl-ex/0110014 +nucl-ex/0111001 +nucl-ex/0111007 +nucl-ex/0111011 +nucl-ex/0111012 +nucl-ex/0111014 +nucl-ex/0111018 +nucl-ex/0112003 +nucl-ex/0112004 +nucl-ex/0112009 +nucl-ex/0112013 +nucl-ex/0112016 +nucl-ex/0201003 +nucl-ex/0201007 +nucl-ex/0201010 +nucl-ex/0201013 +nucl-ex/0202004 +nucl-ex/0202012 +nucl-ex/0202013 +nucl-ex/0202014 +nucl-ex/0202015 +nucl-ex/0202022 +nucl-ex/0202023 +nucl-ex/0202024 +nucl-ex/0203005 +nucl-ex/0203006 +nucl-ex/0203008 +nucl-ex/0203009 +nucl-ex/0204011 +nucl-ex/0204012 +nucl-ex/0204013 +nucl-ex/0204015 +nucl-ex/0204016 +nucl-ex/0205003 +nucl-ex/0205005 +nucl-ex/0205007 +nucl-ex/0205009 +nucl-ex/0205011 +nucl-ex/0205012 +nucl-ex/0206002 +nucl-ex/0206003 +nucl-ex/0206009 +nucl-ex/0206014 +nucl-ex/0206015 +nucl-ex/0206018 +nucl-ex/0206019 +nucl-ex/0206020 +nucl-ex/0207001 +nucl-ex/0207007 +nucl-ex/0207011 +nucl-ex/0207012 +nucl-ex/0207013 +nucl-ex/0207014 +nucl-ex/0207017 +nucl-ex/0208001 +nucl-ex/0208002 +nucl-ex/0208005 +nucl-ex/0208009 +nucl-ex/0208010 +nucl-ex/0208012 +nucl-ex/0208014 +nucl-ex/0208015 +nucl-ex/0209001 +nucl-ex/0209003 +nucl-ex/0209004 +nucl-ex/0209005 +nucl-ex/0209006 +nucl-ex/0209011 +nucl-ex/0209014 +nucl-ex/0209016 +nucl-ex/0209018 +nucl-ex/0209019 +nucl-ex/0209020 +nucl-ex/0209022 +nucl-ex/0209025 +nucl-ex/0209026 +nucl-ex/0209027 +nucl-ex/0209028 +nucl-ex/0210001 +nucl-ex/0210005 +nucl-ex/0210007 +nucl-ex/0210008 +nucl-ex/0210012 +nucl-ex/0210014 +nucl-ex/0210021 +nucl-ex/0210024 +nucl-ex/0210025 +nucl-ex/0210029 +nucl-ex/0210030 +nucl-ex/0210031 +nucl-ex/0210032 +nucl-ex/0210034 +nucl-ex/0210035 +nucl-ex/0211003 +nucl-ex/0211004 +nucl-ex/0211007 +nucl-ex/0211008 +nucl-ex/0211012 +nucl-ex/0211013 +nucl-ex/0211018 +nucl-ex/0211023 +nucl-ex/0211025 +nucl-ex/0211029 +nucl-ex/0211030 +nucl-ex/0211031 +nucl-ex/0211034 +nucl-ex/0212002 +nucl-ex/0212005 +nucl-ex/0212006 +nucl-ex/0212008 +nucl-ex/0212010 +nucl-ex/0212014 +nucl-ex/0212015 +nucl-ex/0212017 +nucl-ex/0212018 +nucl-ex/0212022 +nucl-ex/0212023 +nucl-ex/0212024 +nucl-ex/0212025 +nucl-ex/0212026 +nucl-ex/0212027 +nucl-th/0101004 +nucl-th/0101005 +nucl-th/0101007 +nucl-th/0101009 +nucl-th/0101010 +nucl-th/0101011 +nucl-th/0101012 +nucl-th/0101013 +nucl-th/0101015 +nucl-th/0101016 +nucl-th/0101017 +nucl-th/0101020 +nucl-th/0101022 +nucl-th/0101023 +nucl-th/0101024 +nucl-th/0101026 +nucl-th/0101027 +nucl-th/0101028 +nucl-th/0101030 +nucl-th/0101031 +nucl-th/0101032 +nucl-th/0101033 +nucl-th/0101034 +nucl-th/0101039 +nucl-th/0101040 +nucl-th/0101041 +nucl-th/0101042 +nucl-th/0101044 +nucl-th/0101046 +nucl-th/0101047 +nucl-th/0101050 +nucl-th/0101051 +nucl-th/0101052 +nucl-th/0101053 +nucl-th/0101056 +nucl-th/0101060 +nucl-th/0101061 +nucl-th/0101062 +nucl-th/0101063 +nucl-th/0101066 +nucl-th/0102002 +nucl-th/0102003 +nucl-th/0102006 +nucl-th/0102012 +nucl-th/0102013 +nucl-th/0102014 +nucl-th/0102015 +nucl-th/0102016 +nucl-th/0102019 +nucl-th/0102020 +nucl-th/0102021 +nucl-th/0102022 +nucl-th/0102023 +nucl-th/0102024 +nucl-th/0102025 +nucl-th/0102028 +nucl-th/0102035 +nucl-th/0102036 +nucl-th/0102038 +nucl-th/0102040 +nucl-th/0102042 +nucl-th/0102043 +nucl-th/0102045 +nucl-th/0102046 +nucl-th/0102047 +nucl-th/0102048 +nucl-th/0102052 +nucl-th/0102054 +nucl-th/0102057 +nucl-th/0102058 +nucl-th/0102059 +nucl-th/0102061 +nucl-th/0102062 +nucl-th/0103003 +nucl-th/0103004 +nucl-th/0103006 +nucl-th/0103007 +nucl-th/0103008 +nucl-th/0103011 +nucl-th/0103013 +nucl-th/0103014 +nucl-th/0103015 +nucl-th/0103016 +nucl-th/0103017 +nucl-th/0103020 +nucl-th/0103021 +nucl-th/0103026 +nucl-th/0103027 +nucl-th/0103028 +nucl-th/0103032 +nucl-th/0103034 +nucl-th/0103037 +nucl-th/0103041 +nucl-th/0103043 +nucl-th/0103045 +nucl-th/0103047 +nucl-th/0103049 +nucl-th/0103050 +nucl-th/0103051 +nucl-th/0103054 +nucl-th/0103055 +nucl-th/0103057 +nucl-th/0103058 +nucl-th/0103061 +nucl-th/0103062 +nucl-th/0103064 +nucl-th/0103065 +nucl-th/0103066 +nucl-th/0103070 +nucl-th/0103071 +nucl-th/0103076 +nucl-th/0103079 +nucl-th/0103082 +nucl-th/0103083 +nucl-th/0104001 +nucl-th/0104002 +nucl-th/0104003 +nucl-th/0104004 +nucl-th/0104005 +nucl-th/0104007 +nucl-th/0104008 +nucl-th/0104009 +nucl-th/0104011 +nucl-th/0104016 +nucl-th/0104017 +nucl-th/0104019 +nucl-th/0104021 +nucl-th/0104022 +nucl-th/0104023 +nucl-th/0104024 +nucl-th/0104025 +nucl-th/0104026 +nucl-th/0104027 +nucl-th/0104029 +nucl-th/0104032 +nucl-th/0104037 +nucl-th/0104038 +nucl-th/0104039 +nucl-th/0104040 +nucl-th/0104041 +nucl-th/0104044 +nucl-th/0104045 +nucl-th/0104049 +nucl-th/0104052 +nucl-th/0104053 +nucl-th/0104054 +nucl-th/0104056 +nucl-th/0104058 +nucl-th/0104060 +nucl-th/0104062 +nucl-th/0104063 +nucl-th/0104065 +nucl-th/0104067 +nucl-th/0104068 +nucl-th/0104071 +nucl-th/0104072 +nucl-th/0104074 +nucl-th/0104075 +nucl-th/0104077 +nucl-th/0104078 +nucl-th/0104082 +nucl-th/0104085 +nucl-th/0104089 +nucl-th/0104090 +nucl-th/0105001 +nucl-th/0105006 +nucl-th/0105008 +nucl-th/0105009 +nucl-th/0105010 +nucl-th/0105011 +nucl-th/0105012 +nucl-th/0105013 +nucl-th/0105015 +nucl-th/0105016 +nucl-th/0105019 +nucl-th/0105020 +nucl-th/0105021 +nucl-th/0105023 +nucl-th/0105025 +nucl-th/0105028 +nucl-th/0105029 +nucl-th/0105030 +nucl-th/0105032 +nucl-th/0105033 +nucl-th/0105034 +nucl-th/0105036 +nucl-th/0105037 +nucl-th/0105038 +nucl-th/0105043 +nucl-th/0105044 +nucl-th/0105047 +nucl-th/0105049 +nucl-th/0105050 +nucl-th/0105052 +nucl-th/0105054 +nucl-th/0105057 +nucl-th/0105058 +nucl-th/0105059 +nucl-th/0105060 +nucl-th/0105062 +nucl-th/0105069 +nucl-th/0105071 +nucl-th/0105072 +nucl-th/0105077 +nucl-th/0105078 +nucl-th/0105079 +nucl-th/0106001 +nucl-th/0106002 +nucl-th/0106005 +nucl-th/0106008 +nucl-th/0106010 +nucl-th/0106013 +nucl-th/0106014 +nucl-th/0106015 +nucl-th/0106016 +nucl-th/0106019 +nucl-th/0106020 +nucl-th/0106022 +nucl-th/0106023 +nucl-th/0106024 +nucl-th/0106029 +nucl-th/0106032 +nucl-th/0106033 +nucl-th/0106034 +nucl-th/0106039 +nucl-th/0106041 +nucl-th/0106042 +nucl-th/0106044 +nucl-th/0106049 +nucl-th/0106051 +nucl-th/0106052 +nucl-th/0106053 +nucl-th/0106054 +nucl-th/0106055 +nucl-th/0106057 +nucl-th/0106061 +nucl-th/0106062 +nucl-th/0106063 +nucl-th/0106065 +nucl-th/0106070 +nucl-th/0106071 +nucl-th/0107008 +nucl-th/0107010 +nucl-th/0107011 +nucl-th/0107015 +nucl-th/0107016 +nucl-th/0107017 +nucl-th/0107020 +nucl-th/0107027 +nucl-th/0107029 +nucl-th/0107030 +nucl-th/0107033 +nucl-th/0107036 +nucl-th/0107037 +nucl-th/0107038 +nucl-th/0107039 +nucl-th/0107041 +nucl-th/0107043 +nucl-th/0107044 +nucl-th/0107046 +nucl-th/0107048 +nucl-th/0107049 +nucl-th/0107050 +nucl-th/0107052 +nucl-th/0107054 +nucl-th/0107058 +nucl-th/0107061 +nucl-th/0107062 +nucl-th/0107064 +nucl-th/0107065 +nucl-th/0107068 +nucl-th/0107070 +nucl-th/0108002 +nucl-th/0108003 +nucl-th/0108004 +nucl-th/0108005 +nucl-th/0108008 +nucl-th/0108010 +nucl-th/0108011 +nucl-th/0108012 +nucl-th/0108014 +nucl-th/0108015 +nucl-th/0108016 +nucl-th/0108017 +nucl-th/0108018 +nucl-th/0108020 +nucl-th/0108022 +nucl-th/0108024 +nucl-th/0108025 +nucl-th/0108026 +nucl-th/0108029 +nucl-th/0108031 +nucl-th/0108033 +nucl-th/0108034 +nucl-th/0108036 +nucl-th/0108039 +nucl-th/0108040 +nucl-th/0108042 +nucl-th/0108044 +nucl-th/0108045 +nucl-th/0108047 +nucl-th/0108049 +nucl-th/0108050 +nucl-th/0108053 +nucl-th/0108055 +nucl-th/0108058 +nucl-th/0108059 +nucl-th/0108060 +nucl-th/0108066 +nucl-th/0108069 +nucl-th/0108070 +nucl-th/0108072 +nucl-th/0108073 +nucl-th/0109002 +nucl-th/0109003 +nucl-th/0109004 +nucl-th/0109005 +nucl-th/0109006 +nucl-th/0109007 +nucl-th/0109010 +nucl-th/0109011 +nucl-th/0109012 +nucl-th/0109013 +nucl-th/0109015 +nucl-th/0109016 +nucl-th/0109017 +nucl-th/0109018 +nucl-th/0109019 +nucl-th/0109022 +nucl-th/0109023 +nucl-th/0109024 +nucl-th/0109025 +nucl-th/0109028 +nucl-th/0109032 +nucl-th/0109034 +nucl-th/0109036 +nucl-th/0109037 +nucl-th/0109038 +nucl-th/0109041 +nucl-th/0109042 +nucl-th/0109045 +nucl-th/0109046 +nucl-th/0109051 +nucl-th/0109053 +nucl-th/0109055 +nucl-th/0109056 +nucl-th/0109057 +nucl-th/0109058 +nucl-th/0109059 +nucl-th/0109061 +nucl-th/0109062 +nucl-th/0109064 +nucl-th/0109065 +nucl-th/0109066 +nucl-th/0109067 +nucl-th/0109068 +nucl-th/0109071 +nucl-th/0109072 +nucl-th/0109075 +nucl-th/0109078 +nucl-th/0109079 +nucl-th/0109080 +nucl-th/0109082 +nucl-th/0110003 +nucl-th/0110004 +nucl-th/0110005 +nucl-th/0110006 +nucl-th/0110008 +nucl-th/0110011 +nucl-th/0110012 +nucl-th/0110016 +nucl-th/0110017 +nucl-th/0110019 +nucl-th/0110020 +nucl-th/0110021 +nucl-th/0110022 +nucl-th/0110023 +nucl-th/0110025 +nucl-th/0110027 +nucl-th/0110030 +nucl-th/0110031 +nucl-th/0110033 +nucl-th/0110034 +nucl-th/0110037 +nucl-th/0110038 +nucl-th/0110040 +nucl-th/0110042 +nucl-th/0110043 +nucl-th/0110044 +nucl-th/0110047 +nucl-th/0110048 +nucl-th/0110050 +nucl-th/0110051 +nucl-th/0110053 +nucl-th/0110056 +nucl-th/0110060 +nucl-th/0110061 +nucl-th/0110063 +nucl-th/0110070 +nucl-th/0110074 +nucl-th/0110075 +nucl-th/0110077 +nucl-th/0110078 +nucl-th/0110079 +nucl-th/0111001 +nucl-th/0111002 +nucl-th/0111004 +nucl-th/0111005 +nucl-th/0111006 +nucl-th/0111009 +nucl-th/0111011 +nucl-th/0111012 +nucl-th/0111015 +nucl-th/0111016 +nucl-th/0111018 +nucl-th/0111019 +nucl-th/0111021 +nucl-th/0111027 +nucl-th/0111033 +nucl-th/0111036 +nucl-th/0111039 +nucl-th/0111043 +nucl-th/0111044 +nucl-th/0111048 +nucl-th/0111049 +nucl-th/0111051 +nucl-th/0111052 +nucl-th/0111053 +nucl-th/0111054 +nucl-th/0111055 +nucl-th/0111057 +nucl-th/0111058 +nucl-th/0111059 +nucl-th/0111061 +nucl-th/0111063 +nucl-th/0111064 +nucl-th/0111070 +nucl-th/0111071 +nucl-th/0111079 +nucl-th/0111084 +nucl-th/0111085 +nucl-th/0111086 +nucl-th/0112002 +nucl-th/0112005 +nucl-th/0112006 +nucl-th/0112012 +nucl-th/0112015 +nucl-th/0112017 +nucl-th/0112018 +nucl-th/0112025 +nucl-th/0112031 +nucl-th/0112035 +nucl-th/0112036 +nucl-th/0112038 +nucl-th/0112041 +nucl-th/0112042 +nucl-th/0112049 +nucl-th/0112050 +nucl-th/0112056 +nucl-th/0112057 +nucl-th/0112058 +nucl-th/0112059 +nucl-th/0112060 +nucl-th/0112061 +nucl-th/0112063 +nucl-th/0112070 +nucl-th/0112072 +nucl-th/0112074 +nucl-th/0112075 +nucl-th/0112077 +nucl-th/0112079 +nucl-th/0112081 +nucl-th/0112082 +nucl-th/0112083 +nucl-th/0112084 +nucl-th/0201002 +nucl-th/0201006 +nucl-th/0201007 +nucl-th/0201009 +nucl-th/0201011 +nucl-th/0201012 +nucl-th/0201014 +nucl-th/0201017 +nucl-th/0201018 +nucl-th/0201020 +nucl-th/0201021 +nucl-th/0201024 +nucl-th/0201025 +nucl-th/0201028 +nucl-th/0201030 +nucl-th/0201031 +nucl-th/0201033 +nucl-th/0201036 +nucl-th/0201038 +nucl-th/0201042 +nucl-th/0201044 +nucl-th/0201045 +nucl-th/0201046 +nucl-th/0201049 +nucl-th/0201051 +nucl-th/0201052 +nucl-th/0201056 +nucl-th/0201057 +nucl-th/0201058 +nucl-th/0201061 +nucl-th/0201065 +nucl-th/0201068 +nucl-th/0201070 +nucl-th/0201072 +nucl-th/0201073 +nucl-th/0201074 +nucl-th/0201077 +nucl-th/0201079 +nucl-th/0201080 +nucl-th/0201081 +nucl-th/0201082 +nucl-th/0201085 +nucl-th/0201086 +nucl-th/0201087 +nucl-th/0202001 +nucl-th/0202002 +nucl-th/0202005 +nucl-th/0202006 +nucl-th/0202009 +nucl-th/0202010 +nucl-th/0202012 +nucl-th/0202013 +nucl-th/0202015 +nucl-th/0202018 +nucl-th/0202026 +nucl-th/0202028 +nucl-th/0202029 +nucl-th/0202030 +nucl-th/0202031 +nucl-th/0202036 +nucl-th/0202037 +nucl-th/0202038 +nucl-th/0202039 +nucl-th/0202041 +nucl-th/0202045 +nucl-th/0202046 +nucl-th/0202047 +nucl-th/0202050 +nucl-th/0202061 +nucl-th/0202064 +nucl-th/0202067 +nucl-th/0202070 +nucl-th/0202074 +nucl-th/0202076 +nucl-th/0202079 +nucl-th/0202080 +nucl-th/0202081 +nucl-th/0202085 +nucl-th/0202086 +nucl-th/0203001 +nucl-th/0203005 +nucl-th/0203008 +nucl-th/0203012 +nucl-th/0203013 +nucl-th/0203015 +nucl-th/0203016 +nucl-th/0203017 +nucl-th/0203018 +nucl-th/0203020 +nucl-th/0203022 +nucl-th/0203023 +nucl-th/0203025 +nucl-th/0203026 +nucl-th/0203028 +nucl-th/0203030 +nucl-th/0203031 +nucl-th/0203033 +nucl-th/0203036 +nucl-th/0203039 +nucl-th/0203041 +nucl-th/0203045 +nucl-th/0203047 +nucl-th/0203048 +nucl-th/0203052 +nucl-th/0203053 +nucl-th/0203055 +nucl-th/0203057 +nucl-th/0203061 +nucl-th/0203063 +nucl-th/0203066 +nucl-th/0203072 +nucl-th/0203074 +nucl-th/0203076 +nucl-th/0203078 +nucl-th/0203080 +nucl-th/0204002 +nucl-th/0204007 +nucl-th/0204008 +nucl-th/0204011 +nucl-th/0204012 +nucl-th/0204013 +nucl-th/0204015 +nucl-th/0204016 +nucl-th/0204017 +nucl-th/0204018 +nucl-th/0204020 +nucl-th/0204022 +nucl-th/0204024 +nucl-th/0204027 +nucl-th/0204030 +nucl-th/0204033 +nucl-th/0204035 +nucl-th/0204038 +nucl-th/0204039 +nucl-th/0204041 +nucl-th/0204043 +nucl-th/0204044 +nucl-th/0204045 +nucl-th/0204046 +nucl-th/0204050 +nucl-th/0204051 +nucl-th/0204053 +nucl-th/0204057 +nucl-th/0204058 +nucl-th/0204059 +nucl-th/0204061 +nucl-th/0204063 +nucl-th/0204065 +nucl-th/0204067 +nucl-th/0204069 +nucl-th/0204071 +nucl-th/0204072 +nucl-th/0204074 +nucl-th/0205003 +nucl-th/0205004 +nucl-th/0205008 +nucl-th/0205010 +nucl-th/0205016 +nucl-th/0205017 +nucl-th/0205018 +nucl-th/0205019 +nucl-th/0205020 +nucl-th/0205023 +nucl-th/0205024 +nucl-th/0205026 +nucl-th/0205029 +nucl-th/0205030 +nucl-th/0205031 +nucl-th/0205032 +nucl-th/0205040 +nucl-th/0205041 +nucl-th/0205042 +nucl-th/0205051 +nucl-th/0205052 +nucl-th/0205053 +nucl-th/0205054 +nucl-th/0205055 +nucl-th/0205056 +nucl-th/0205059 +nucl-th/0205062 +nucl-th/0205063 +nucl-th/0205066 +nucl-th/0205069 +nucl-th/0205070 +nucl-th/0205072 +nucl-th/0205074 +nucl-th/0205076 +nucl-th/0205077 +nucl-th/0205080 +nucl-th/0206001 +nucl-th/0206002 +nucl-th/0206005 +nucl-th/0206008 +nucl-th/0206009 +nucl-th/0206012 +nucl-th/0206014 +nucl-th/0206017 +nucl-th/0206018 +nucl-th/0206022 +nucl-th/0206025 +nucl-th/0206026 +nucl-th/0206029 +nucl-th/0206030 +nucl-th/0206031 +nucl-th/0206032 +nucl-th/0206033 +nucl-th/0206036 +nucl-th/0206037 +nucl-th/0206040 +nucl-th/0206041 +nucl-th/0206043 +nucl-th/0206045 +nucl-th/0206050 +nucl-th/0206051 +nucl-th/0206054 +nucl-th/0206055 +nucl-th/0206056 +nucl-th/0206057 +nucl-th/0206059 +nucl-th/0206060 +nucl-th/0206064 +nucl-th/0206069 +nucl-th/0206070 +nucl-th/0206073 +nucl-th/0207002 +nucl-th/0207006 +nucl-th/0207007 +nucl-th/0207011 +nucl-th/0207017 +nucl-th/0207018 +nucl-th/0207019 +nucl-th/0207021 +nucl-th/0207022 +nucl-th/0207026 +nucl-th/0207027 +nucl-th/0207029 +nucl-th/0207030 +nucl-th/0207031 +nucl-th/0207032 +nucl-th/0207033 +nucl-th/0207034 +nucl-th/0207037 +nucl-th/0207038 +nucl-th/0207044 +nucl-th/0207045 +nucl-th/0207047 +nucl-th/0207048 +nucl-th/0207051 +nucl-th/0207053 +nucl-th/0207054 +nucl-th/0207055 +nucl-th/0207057 +nucl-th/0207058 +nucl-th/0207059 +nucl-th/0207060 +nucl-th/0207061 +nucl-th/0207062 +nucl-th/0207063 +nucl-th/0207064 +nucl-th/0207067 +nucl-th/0207070 +nucl-th/0207071 +nucl-th/0207072 +nucl-th/0207073 +nucl-th/0207074 +nucl-th/0207076 +nucl-th/0207077 +nucl-th/0207078 +nucl-th/0207080 +nucl-th/0207083 +nucl-th/0207084 +nucl-th/0207086 +nucl-th/0207088 +nucl-th/0207090 +nucl-th/0207091 +nucl-th/0208002 +nucl-th/0208007 +nucl-th/0208009 +nucl-th/0208010 +nucl-th/0208011 +nucl-th/0208012 +nucl-th/0208013 +nucl-th/0208014 +nucl-th/0208016 +nucl-th/0208017 +nucl-th/0208018 +nucl-th/0208019 +nucl-th/0208020 +nucl-th/0208021 +nucl-th/0208022 +nucl-th/0208023 +nucl-th/0208025 +nucl-th/0208029 +nucl-th/0208030 +nucl-th/0208031 +nucl-th/0208032 +nucl-th/0208035 +nucl-th/0208036 +nucl-th/0208037 +nucl-th/0208038 +nucl-th/0208041 +nucl-th/0208042 +nucl-th/0208044 +nucl-th/0208045 +nucl-th/0208049 +nucl-th/0208050 +nucl-th/0208053 +nucl-th/0208054 +nucl-th/0208057 +nucl-th/0208058 +nucl-th/0208059 +nucl-th/0208060 +nucl-th/0208061 +nucl-th/0208062 +nucl-th/0208064 +nucl-th/0208065 +nucl-th/0208068 +nucl-th/0208070 +nucl-th/0208072 +nucl-th/0208077 +nucl-th/0208079 +nucl-th/0209001 +nucl-th/0209003 +nucl-th/0209004 +nucl-th/0209005 +nucl-th/0209006 +nucl-th/0209007 +nucl-th/0209010 +nucl-th/0209012 +nucl-th/0209013 +nucl-th/0209014 +nucl-th/0209015 +nucl-th/0209016 +nucl-th/0209019 +nucl-th/0209021 +nucl-th/0209022 +nucl-th/0209023 +nucl-th/0209024 +nucl-th/0209025 +nucl-th/0209026 +nucl-th/0209030 +nucl-th/0209034 +nucl-th/0209035 +nucl-th/0209037 +nucl-th/0209038 +nucl-th/0209043 +nucl-th/0209044 +nucl-th/0209046 +nucl-th/0209047 +nucl-th/0209050 +nucl-th/0209051 +nucl-th/0209052 +nucl-th/0209054 +nucl-th/0209058 +nucl-th/0209060 +nucl-th/0209061 +nucl-th/0209063 +nucl-th/0209064 +nucl-th/0209066 +nucl-th/0209068 +nucl-th/0209069 +nucl-th/0209070 +nucl-th/0209071 +nucl-th/0209072 +nucl-th/0209073 +nucl-th/0209075 +nucl-th/0209077 +nucl-th/0209078 +nucl-th/0209081 +nucl-th/0209082 +nucl-th/0209083 +nucl-th/0209084 +nucl-th/0209092 +nucl-th/0210001 +nucl-th/0210002 +nucl-th/0210004 +nucl-th/0210005 +nucl-th/0210006 +nucl-th/0210007 +nucl-th/0210012 +nucl-th/0210013 +nucl-th/0210014 +nucl-th/0210018 +nucl-th/0210024 +nucl-th/0210027 +nucl-th/0210030 +nucl-th/0210032 +nucl-th/0210035 +nucl-th/0210037 +nucl-th/0210042 +nucl-th/0210043 +nucl-th/0210045 +nucl-th/0210047 +nucl-th/0210051 +nucl-th/0210053 +nucl-th/0210054 +nucl-th/0210056 +nucl-th/0210057 +nucl-th/0210059 +nucl-th/0210060 +nucl-th/0210063 +nucl-th/0210064 +nucl-th/0210065 +nucl-th/0210068 +nucl-th/0210072 +nucl-th/0210073 +nucl-th/0210075 +nucl-th/0210076 +nucl-th/0210079 +nucl-th/0210081 +nucl-th/0210082 +nucl-th/0210085 +nucl-th/0210086 +nucl-th/0210087 +nucl-th/0210088 +nucl-th/0210089 +nucl-th/0210090 +nucl-th/0211002 +nucl-th/0211003 +nucl-th/0211007 +nucl-th/0211010 +nucl-th/0211011 +nucl-th/0211012 +nucl-th/0211013 +nucl-th/0211014 +nucl-th/0211015 +nucl-th/0211016 +nucl-th/0211020 +nucl-th/0211021 +nucl-th/0211022 +nucl-th/0211025 +nucl-th/0211028 +nucl-th/0211029 +nucl-th/0211030 +nucl-th/0211031 +nucl-th/0211032 +nucl-th/0211033 +nucl-th/0211034 +nucl-th/0211035 +nucl-th/0211037 +nucl-th/0211038 +nucl-th/0211039 +nucl-th/0211041 +nucl-th/0211042 +nucl-th/0211043 +nucl-th/0211046 +nucl-th/0211049 +nucl-th/0211050 +nucl-th/0211052 +nucl-th/0211053 +nucl-th/0211054 +nucl-th/0211057 +nucl-th/0211059 +nucl-th/0211060 +nucl-th/0211062 +nucl-th/0211063 +nucl-th/0211065 +nucl-th/0211069 +nucl-th/0211070 +nucl-th/0211072 +nucl-th/0211074 +nucl-th/0211075 +nucl-th/0211077 +nucl-th/0211079 +nucl-th/0211080 +nucl-th/0211083 +nucl-th/0211084 +nucl-th/0211085 +nucl-th/0211086 +nucl-th/0211087 +nucl-th/0211090 +nucl-th/0211091 +nucl-th/0211092 +nucl-th/0211094 +nucl-th/0211095 +nucl-th/0211096 +nucl-th/0212001 +nucl-th/0212002 +nucl-th/0212003 +nucl-th/0212005 +nucl-th/0212006 +nucl-th/0212010 +nucl-th/0212013 +nucl-th/0212016 +nucl-th/0212017 +nucl-th/0212022 +nucl-th/0212027 +nucl-th/0212029 +nucl-th/0212037 +nucl-th/0212041 +nucl-th/0212042 +nucl-th/0212043 +nucl-th/0212045 +nucl-th/0212049 +nucl-th/0212050 +nucl-th/0212051 +nucl-th/0212052 +nucl-th/0212053 +nucl-th/0212056 +nucl-th/0212063 +nucl-th/0212064 +nucl-th/0212065 +nucl-th/0212067 +nucl-th/0212069 +nucl-th/0212070 +nucl-th/0212072 +nucl-th/0212077 +nucl-th/0212078 +nucl-th/0212081 +nucl-th/0212082 +nucl-th/0212083 +nucl-th/0212091 +nucl-th/0212092 +nucl-th/0212093 +nucl-th/0212094 +nucl-th/0212095 +nucl-th/0212097 +nucl-th/0212099 +nucl-th/0212100 +nucl-th/0212102 +nucl-th/0212103 +nucl-th/0212104 +physics/0101005 Optics +physics/0101008 Optics +physics/0101011 Optics +physics/0101019 Plasma Physics +physics/0101029 Atomic Physics +physics/0101030 Atomic Physics +physics/0101032 Chemical Physics +physics/0101035 Space Physics +physics/0101037 Fluid Dynamics +physics/0101044 Atomic Physics +physics/0101052 Instrumentation and Detectors +physics/0101053 Atomic Physics +physics/0101068 Optics +physics/0101069 Atomic and Molecular Clusters +physics/0101070 Accelerator Physics +physics/0101072 Chemical Physics +physics/0101073 Optics +physics/0101075 Instrumentation and Detectors +physics/0101079 Plasma Physics +physics/0101080 Computational Physics +physics/0101097 Atomic Physics +physics/0101098 Atomic Physics +physics/0101100 Classical Physics +physics/0101103 Fluid Dynamics +physics/0101105 Data Analysis, Statistics and Probability +physics/0102015 Computational Physics +physics/0102019 Physics Education +physics/0102021 Biological Physics +physics/0102022 Atomic Physics +physics/0102023 Atomic Physics +physics/0102032 Optics +physics/0102040 Plasma Physics +physics/0102041 Computational Physics +physics/0102046 Optics +physics/0102049 Computational Physics +physics/0102053 Physics Education +physics/0102056 Fluid Dynamics +physics/0102058 Fluid Dynamics +physics/0102059 Biological Physics +physics/0102065 Plasma Physics +physics/0102066 General Physics +physics/0102067 Biological Physics +physics/0102068 Atomic Physics +physics/0102070 Atomic Physics +physics/0102074 General Physics +physics/0102077 Plasma Physics +physics/0102079 Atomic Physics +physics/0102080 Atomic Physics +physics/0102087 General Physics +physics/0102088 Optics +physics/0102091 Chemical Physics +physics/0103002 Plasma Physics +physics/0103003 Atomic and Molecular Clusters +physics/0103005 Instrumentation and Detectors +physics/0103011 Optics +physics/0103012 Atomic Physics +physics/0103013 Computational Physics +physics/0103014 Atomic Physics +physics/0103016 Computational Physics +physics/0103017 Optics +physics/0103018 Data Analysis, Statistics and Probability +physics/0103025 Plasma Physics +physics/0103032 Atomic and Molecular Clusters +physics/0103033 Biological Physics +physics/0103034 Biological Physics +physics/0103035 Atomic Physics +physics/0103036 Atomic Physics +physics/0103039 Computational Physics +physics/0103040 Optics +physics/0103041 Fluid Dynamics +physics/0103042 Biological Physics +physics/0103045 Atomic Physics +physics/0103046 Atomic Physics +physics/0103053 Chemical Physics +physics/0103055 Accelerator Physics +physics/0103057 Instrumentation and Detectors +physics/0103059 Atomic Physics +physics/0103063 Atomic Physics +physics/0103064 Atomic Physics +physics/0103069 Physics Education +physics/0103073 Optics +physics/0103076 Data Analysis, Statistics and Probability +physics/0103077 Atomic Physics +physics/0103079 Atomic Physics +physics/0103081 Plasma Physics +physics/0103082 Instrumentation and Detectors +physics/0103083 Fluid Dynamics +physics/0103084 Fluid Dynamics +physics/0103085 Atomic Physics +physics/0103086 Instrumentation and Detectors +physics/0103087 Classical Physics +physics/0103090 Fluid Dynamics +physics/0103092 Fluid Dynamics +physics/0103094 Biological Physics +physics/0103095 Chemical Physics +physics/0103096 Optics +physics/0103097 Atomic Physics +physics/0104005 General Physics +physics/0104006 Physics Education +physics/0104013 Atomic Physics +physics/0104015 Biological Physics +physics/0104024 Biological Physics +physics/0104026 Biological Physics +physics/0104031 Optics +physics/0104034 Classical Physics +physics/0104036 Fluid Dynamics +physics/0104037 Chemical Physics +physics/0104038 Atomic Physics +physics/0104042 Optics +physics/0104050 Optics +physics/0104052 Biological Physics +physics/0104054 Chemical Physics +physics/0104060 Optics +physics/0104061 Atomic Physics +physics/0104063 Classical Physics +physics/0104071 Atomic and Molecular Clusters +physics/0104073 General Physics +physics/0104075 Atomic Physics +physics/0104080 Biological Physics +physics/0104087 General Physics +physics/0104089 Atomic Physics +physics/0105001 Chemical Physics +physics/0105003 Instrumentation and Detectors +physics/0105004 Optics +physics/0105006 Data Analysis, Statistics and Probability +physics/0105009 Atomic Physics +physics/0105013 Optics +physics/0105014 Chemical Physics +physics/0105017 Plasma Physics +physics/0105018 Atomic Physics +physics/0105019 Plasma Physics +physics/0105028 Accelerator Physics +physics/0105030 Atomic Physics +physics/0105032 Atomic Physics +physics/0105034 General Physics +physics/0105039 Classical Physics +physics/0105044 Optics +physics/0105045 Plasma Physics +physics/0105047 Atomic Physics +physics/0105058 Fluid Dynamics +physics/0105060 Chemical Physics +physics/0105061 Chemical Physics +physics/0105065 Atomic Physics +physics/0105072 Atomic Physics +physics/0105073 Chemical Physics +physics/0105077 General Physics +physics/0105085 Atomic Physics +physics/0105088 Atomic Physics +physics/0105089 Optics +physics/0105092 Plasma Physics +physics/0105093 Optics +physics/0105097 Classical Physics +physics/0105100 Fluid Dynamics +physics/0105103 Optics +physics/0105104 Optics +physics/0105105 Plasma Physics +physics/0105107 Instrumentation and Detectors +physics/0105108 Atomic Physics +physics/0105110 Atomic Physics +physics/0106001 Chemical Physics +physics/0106002 Atomic Physics +physics/0106012 Atomic Physics +physics/0106019 Biological Physics +physics/0106021 Optics +physics/0106025 Chemical Physics +physics/0106026 Atomic Physics +physics/0106027 Computational Physics +physics/0106028 Atomic Physics +physics/0106030 Atomic and Molecular Clusters +physics/0106031 Optics +physics/0106034 Plasma Physics +physics/0106035 Atomic Physics +physics/0106039 Accelerator Physics +physics/0106040 Atomic Physics +physics/0106043 Chemical Physics +physics/0106044 Atomic and Molecular Clusters +physics/0106048 Instrumentation and Detectors +physics/0106057 Optics +physics/0106070 Instrumentation and Detectors +physics/0106076 Fluid Dynamics +physics/0106078 Optics +physics/0106084 Chemical Physics +physics/0106085 Chemical Physics +physics/0106086 Fluid Dynamics +physics/0106089 Instrumentation and Detectors +physics/0106092 Atomic and Molecular Clusters +physics/0106093 Biological Physics +physics/0106095 Atomic Physics +physics/0106096 Fluid Dynamics +physics/0106098 Space Physics +physics/0107003 Atomic Physics +physics/0107004 Classical Physics +physics/0107011 Atomic Physics +physics/0107013 Chemical Physics +physics/0107014 Computational Physics +physics/0107016 Atomic Physics +physics/0107018 Plasma Physics +physics/0107019 Optics +physics/0107021 Optics +physics/0107023 Computational Physics +physics/0107033 Fluid Dynamics +physics/0107034 Atomic Physics +physics/0107036 Atomic Physics +physics/0107037 Optics +physics/0107038 Optics +physics/0107039 Biological Physics +physics/0107040 Atomic Physics +physics/0107047 Biological Physics +physics/0107051 Atomic Physics +physics/0107053 Atomic Physics +physics/0107054 Atomic Physics +physics/0107056 Atomic and Molecular Clusters +physics/0107057 Instrumentation and Detectors +physics/0107058 Fluid Dynamics +physics/0107062 General Physics +physics/0107064 Biological Physics +physics/0107067 Chemical Physics +physics/0107068 Atomic Physics +physics/0107075 Atomic Physics +physics/0107076 Fluid Dynamics +physics/0107077 Geophysics +physics/0107080 Optics +physics/0108002 Data Analysis, Statistics and Probability +physics/0108003 Atomic Physics +physics/0108004 Computational Physics +physics/0108014 Biological Physics +physics/0108020 Optics +physics/0108022 Classical Physics +physics/0108023 Biological Physics +physics/0108024 Chemical Physics +physics/0108029 Atomic Physics +physics/0108033 Atomic Physics +physics/0108034 Data Analysis, Statistics and Probability +physics/0108035 Atmospheric and Oceanic Physics +physics/0108036 Chemical Physics +physics/0108041 Atomic Physics +physics/0108043 Optics +physics/0108046 Atomic Physics +physics/0108047 Atomic Physics +physics/0108048 Accelerator Physics +physics/0108053 Biological Physics +physics/0108054 Biological Physics +physics/0108055 Biological Physics +physics/0108058 Optics +physics/0108061 Fluid Dynamics +physics/0108062 Optics +physics/0108064 Optics +physics/0108065 Optics +physics/0108066 Physics Education +physics/0108071 Atomic and Molecular Clusters +physics/0109004 Computational Physics +physics/0109006 Atomic Physics +physics/0109008 Chemical Physics +physics/0109009 Chemical Physics +physics/0109011 Chemical Physics +physics/0109012 Chemical Physics +physics/0109016 Atomic Physics +physics/0109018 Plasma Physics +physics/0109020 Biological Physics +physics/0109022 Optics +physics/0109025 Atomic Physics +physics/0109026 Plasma Physics +physics/0109028 Atomic and Molecular Clusters +physics/0109029 Chemical Physics +physics/0109037 Atomic and Molecular Clusters +physics/0109039 Accelerator Physics +physics/0109040 Accelerator Physics +physics/0109041 Accelerator Physics +physics/0109043 Chemical Physics +physics/0109045 Accelerator Physics +physics/0109046 Accelerator Physics +physics/0109047 Accelerator Physics +physics/0109049 Atomic Physics +physics/0109050 Chemical Physics +physics/0109052 Fluid Dynamics +physics/0109053 Plasma Physics +physics/0109059 Optics +physics/0109062 General Physics +physics/0109063 Chemical Physics +physics/0109066 Plasma Physics +physics/0109068 Chemical Physics +physics/0109070 Chemical Physics +physics/0110003 Atomic and Molecular Clusters +physics/0110006 Accelerator Physics +physics/0110014 Accelerator Physics +physics/0110015 Accelerator Physics +physics/0110016 Biological Physics +physics/0110017 Optics +physics/0110019 Data Analysis, Statistics and Probability +physics/0110023 Plasma Physics +physics/0110027 Fluid Dynamics +physics/0110030 Plasma Physics +physics/0110035 Chemical Physics +physics/0110038 Optics +physics/0110042 Space Physics +physics/0110045 Plasma Physics +physics/0110049 Atomic Physics +physics/0110053 Atomic Physics +physics/0110055 Classical Physics +physics/0110057 Atomic and Molecular Clusters +physics/0110060 Classical Physics +physics/0110065 Classical Physics +physics/0110066 Classical Physics +physics/0110068 Optics +physics/0110072 Atomic and Molecular Clusters +physics/0110077 Computational Physics +physics/0110079 Biological Physics +physics/0110080 Atomic Physics +physics/0110081 Fluid Dynamics +physics/0110082 General Physics +physics/0110090 Classical Physics +physics/0110093 Data Analysis, Statistics and Probability +physics/0111001 Atomic Physics +physics/0111002 Biological Physics +physics/0111003 Fluid Dynamics +physics/0111004 Atomic Physics +physics/0111007 Data Analysis, Statistics and Probability +physics/0111008 Atomic Physics +physics/0111010 Accelerator Physics +physics/0111011 Plasma Physics +physics/0111013 Atomic Physics +physics/0111015 Plasma Physics +physics/0111016 Physics Education +physics/0111018 Data Analysis, Statistics and Probability +physics/0111020 Data Analysis, Statistics and Probability +physics/0111023 Optics +physics/0111042 Atomic Physics +physics/0111058 Optics +physics/0111091 Optics +physics/0111098 Chemical Physics +physics/0111100 Atomic Physics +physics/0111103 Data Analysis, Statistics and Probability +physics/0111107 Fluid Dynamics +physics/0111109 General Physics +physics/0111111 Atomic Physics +physics/0111129 Optics +physics/0111135 Classical Physics +physics/0111139 Plasma Physics +physics/0111141 Plasma Physics +physics/0111149 Plasma Physics +physics/0111152 Optics +physics/0111167 Atomic Physics +physics/0111170 Optics +physics/0111175 Atomic Physics +physics/0111177 Atomic Physics +physics/0111185 Optics +physics/0111187 Biological Physics +physics/0111188 Plasma Physics +physics/0111199 Biological Physics +physics/0111203 Classical Physics +physics/0111205 Biological Physics +physics/0111213 Atomic Physics +physics/0112001 Instrumentation and Detectors +physics/0112002 Data Analysis, Statistics and Probability +physics/0112006 Classical Physics +physics/0112008 Fluid Dynamics +physics/0112012 Atomic and Molecular Clusters +physics/0112015 Computational Physics +physics/0112016 Atomic Physics +physics/0112020 General Physics +physics/0112021 Atomic Physics +physics/0112028 Fluid Dynamics +physics/0112035 Atomic Physics +physics/0112038 Atomic and Molecular Clusters +physics/0112040 Biological Physics +physics/0112050 Atomic Physics +physics/0112052 Atomic Physics +physics/0112053 Atomic and Molecular Clusters +physics/0112054 Atomic and Molecular Clusters +physics/0112058 Atomic and Molecular Clusters +physics/0112062 Optics +physics/0112069 Computational Physics +physics/0112070 Biological Physics +physics/0112071 Atomic Physics +physics/0112082 Accelerator Physics +physics/0112083 Biological Physics +physics/0112084 Computational Physics +physics/0201001 Fluid Dynamics +physics/0201004 Plasma Physics +physics/0201007 Chemical Physics +physics/0201008 Atomic and Molecular Clusters +physics/0201011 Classical Physics +physics/0201013 Optics +physics/0201016 Data Analysis, Statistics and Probability +physics/0201018 Computational Physics +physics/0201019 Chemical Physics +physics/0201021 Atomic Physics +physics/0201022 Atomic Physics +physics/0201024 Classical Physics +physics/0201025 Atomic Physics +physics/0201026 Atomic Physics +physics/0201029 Optics +physics/0201031 Atomic Physics +physics/0201032 Atmospheric and Oceanic Physics +physics/0201036 Fluid Dynamics +physics/0201037 Fluid Dynamics +physics/0201038 Optics +physics/0201041 Accelerator Physics +physics/0201042 Classical Physics +physics/0201045 Geophysics +physics/0201046 Computational Physics +physics/0201054 Computational Physics +physics/0201059 General Physics +physics/0201063 Atomic Physics +physics/0201066 Atomic Physics +physics/0201067 Atomic Physics +physics/0201068 Atomic Physics +physics/0201070 Chemical Physics +physics/0202001 Atomic Physics +physics/0202008 Atmospheric and Oceanic Physics +physics/0202015 Chemical Physics +physics/0202017 Atomic Physics +physics/0202018 Atomic Physics +physics/0202024 General Physics +physics/0202027 Plasma Physics +physics/0202033 Optics +physics/0202034 Biological Physics +physics/0202035 Biological Physics +physics/0202037 Data Analysis, Statistics and Probability +physics/0202039 Biological Physics +physics/0202041 Atomic Physics +physics/0202043 Atomic Physics +physics/0202046 Atomic Physics +physics/0202047 Atmospheric and Oceanic Physics +physics/0202048 Optics +physics/0202050 Atomic and Molecular Clusters +physics/0202051 Plasma Physics +physics/0202053 Optics +physics/0202057 Accelerator Physics +physics/0202059 Atomic Physics +physics/0202064 Accelerator Physics +physics/0202066 Atomic and Molecular Clusters +physics/0202067 Atomic Physics +physics/0202069 Optics +physics/0202070 Data Analysis, Statistics and Probability +physics/0202071 Atomic Physics +physics/0202074 Optics +physics/0203002 Data Analysis, Statistics and Probability +physics/0203005 Data Analysis, Statistics and Probability +physics/0203006 Physics and Society +physics/0203008 Atomic Physics +physics/0203015 Biological Physics +physics/0203019 Atomic and Molecular Clusters +physics/0203026 Atomic Physics +physics/0203028 Fluid Dynamics +physics/0203030 Plasma Physics +physics/0203033 Computational Physics +physics/0203037 Instrumentation and Detectors +physics/0203040 Atomic Physics +physics/0203048 Plasma Physics +physics/0203050 Atomic Physics +physics/0203052 Fluid Dynamics +physics/0203054 Computational Physics +physics/0203055 Atomic and Molecular Clusters +physics/0203057 Atomic Physics +physics/0203065 Atomic Physics +physics/0203067 Optics +physics/0203075 Classical Physics +physics/0203077 Atomic Physics +physics/0203078 Atomic and Molecular Clusters +physics/0203082 Optics +physics/0203083 Optics +physics/0203086 Atomic and Molecular Clusters +physics/0203089 Atomic Physics +physics/0203092 Biological Physics +physics/0204012 Plasma Physics +physics/0204013 Optics +physics/0204016 Instrumentation and Detectors +physics/0204026 Atomic Physics +physics/0204027 Plasma Physics +physics/0204028 Chemical Physics +physics/0204038 Atomic Physics +physics/0204039 Plasma Physics +physics/0204042 Optics +physics/0204047 Biological Physics +physics/0204048 Atomic Physics +physics/0204050 Plasma Physics +physics/0204052 Biological Physics +physics/0204054 Instrumentation and Detectors +physics/0204056 Atomic Physics +physics/0204057 History and Philosophy of Physics +physics/0204058 Optics +physics/0204059 Optics +physics/0204060 Popular Physics +physics/0204063 Atomic Physics +physics/0204064 Atomic and Molecular Clusters +physics/0204067 Classical Physics +physics/0204068 Data Analysis, Statistics and Probability +physics/0204069 Atomic Physics +physics/0204078 Instrumentation and Detectors +physics/0204079 Atomic Physics +physics/0204080 Fluid Dynamics +physics/0204082 Atomic Physics +physics/0204084 Plasma Physics +physics/0204088 Biological Physics +physics/0205001 Accelerator Physics +physics/0205002 Data Analysis, Statistics and Probability +physics/0205006 Instrumentation and Detectors +physics/0205007 Accelerator Physics +physics/0205008 Biological Physics +physics/0205013 Biological Physics +physics/0205016 Biological Physics +physics/0205017 Atomic Physics +physics/0205020 Atomic Physics +physics/0205022 Classical Physics +physics/0205024 Atomic and Molecular Clusters +physics/0205036 Plasma Physics +physics/0205039 Computational Physics +physics/0205042 Instrumentation and Detectors +physics/0205045 Instrumentation and Detectors +physics/0205049 Atomic Physics +physics/0205061 Accelerator Physics +physics/0205062 Optics +physics/0205067 Fluid Dynamics +physics/0205068 Chemical Physics +physics/0205076 Atomic Physics +physics/0205077 Atomic Physics +physics/0205079 Atomic Physics +physics/0205088 Atomic Physics +physics/0205092 Physics Education +physics/0205093 Chemical Physics +physics/0206003 Accelerator Physics +physics/0206006 Plasma Physics +physics/0206008 Instrumentation and Detectors +physics/0206013 Fluid Dynamics +physics/0206015 Atomic Physics +physics/0206018 Optics +physics/0206019 Atomic Physics +physics/0206021 Instrumentation and Detectors +physics/0206023 Atomic and Molecular Clusters +physics/0206024 Biological Physics +physics/0206032 Plasma Physics +physics/0206037 Atomic Physics +physics/0206039 Instrumentation and Detectors +physics/0206041 Atomic and Molecular Clusters +physics/0206042 Biological Physics +physics/0206043 Plasma Physics +physics/0206045 Biological Physics +physics/0206047 Atomic Physics +physics/0206048 Atomic Physics +physics/0206057 Data Analysis, Statistics and Probability +physics/0206058 Atomic and Molecular Clusters +physics/0206062 Atomic Physics +physics/0206065 Plasma Physics +physics/0206066 Biological Physics +physics/0206069 Atomic Physics +physics/0206070 Atomic and Molecular Clusters +physics/0206071 Instrumentation and Detectors +physics/0206078 Plasma Physics +physics/0206079 Atomic and Molecular Clusters +physics/0206082 Instrumentation and Detectors +physics/0206083 Fluid Dynamics +physics/0206084 Biological Physics +physics/0206087 Optics +physics/0206088 Biological Physics +physics/0206094 Fluid Dynamics +physics/0207002 Atomic Physics +physics/0207011 Atomic and Molecular Clusters +physics/0207019 Atomic Physics +physics/0207020 Physics and Society +physics/0207028 Atomic Physics +physics/0207029 Physics Education +physics/0207031 Physics Education +physics/0207039 Biological Physics +physics/0207040 Plasma Physics +physics/0207042 Physics Education +physics/0207044 Biological Physics +physics/0207045 Optics +physics/0207050 Atomic Physics +physics/0207051 Physics Education +physics/0207053 Atomic Physics +physics/0207057 Chemical Physics +physics/0207060 Biological Physics +physics/0207061 Atomic Physics +physics/0207066 Physics Education +physics/0207072 Atomic Physics +physics/0207073 Classical Physics +physics/0207075 Atomic Physics +physics/0207081 Physics Education +physics/0207087 Chemical Physics +physics/0207088 Optics +physics/0207092 Physics Education +physics/0207105 Atomic Physics +physics/0207108 Fluid Dynamics +physics/0207112 Fluid Dynamics +physics/0207113 Biological Physics +physics/0207114 General Physics +physics/0207116 Atomic and Molecular Clusters +physics/0207121 Atomic and Molecular Clusters +physics/0207128 Optics +physics/0207129 Medical Physics +physics/0208002 Plasma Physics +physics/0208004 Atomic Physics +physics/0208009 Data Analysis, Statistics and Probability +physics/0208017 Instrumentation and Detectors +physics/0208019 Atmospheric and Oceanic Physics +physics/0208023 Plasma Physics +physics/0208024 Atomic Physics +physics/0208027 Instrumentation and Detectors +physics/0208029 Biological Physics +physics/0208030 Atomic Physics +physics/0208031 Atomic Physics +physics/0208032 Atmospheric and Oceanic Physics +physics/0208033 Optics +physics/0208036 Data Analysis, Statistics and Probability +physics/0208038 Fluid Dynamics +physics/0208043 Biological Physics +physics/0208044 Biological Physics +physics/0208045 General Physics +physics/0208049 Optics +physics/0208055 Atomic Physics +physics/0208060 Computational Physics +physics/0208063 Data Analysis, Statistics and Probability +physics/0208067 Atomic Physics +physics/0208069 Atomic Physics +physics/0208071 Atomic Physics +physics/0208073 Atomic Physics +physics/0208074 Plasma Physics +physics/0208076 Chemical Physics +physics/0208077 Chemical Physics +physics/0208080 Atomic Physics +physics/0208088 Atomic Physics +physics/0208090 Instrumentation and Detectors +physics/0208091 Fluid Dynamics +physics/0208092 Accelerator Physics +physics/0208093 Accelerator Physics +physics/0208094 Accelerator Physics +physics/0208095 Biological Physics +physics/0208097 Optics +physics/0208099 Chemical Physics +physics/0208102 Atomic Physics +physics/0208103 Medical Physics +physics/0208104 Atomic Physics +physics/0209002 Instrumentation and Detectors +physics/0209005 Biological Physics +physics/0209010 Atomic Physics +physics/0209018 Biological Physics +physics/0209022 Optics +physics/0209024 Fluid Dynamics +physics/0209027 Fluid Dynamics +physics/0209028 Optics +physics/0209029 Fluid Dynamics +physics/0209030 Optics +physics/0209031 Biological Physics +physics/0209032 Computational Physics +physics/0209033 Instrumentation and Detectors +physics/0209035 Chemical Physics +physics/0209036 Classical Physics +physics/0209038 Instrumentation and Detectors +physics/0209039 Atomic Physics +physics/0209041 Chemical Physics +physics/0209042 Accelerator Physics +physics/0209044 Atomic Physics +physics/0209046 Computational Physics +physics/0209047 Fluid Dynamics +physics/0209048 Biological Physics +physics/0209049 Plasma Physics +physics/0209057 Accelerator Physics +physics/0209058 Optics +physics/0209059 Optics +physics/0209061 Accelerator Physics +physics/0209062 Fluid Dynamics +physics/0209064 General Physics +physics/0209065 Biological Physics +physics/0209066 Classical Physics +physics/0209067 Accelerator Physics +physics/0209072 Instrumentation and Detectors +physics/0209073 Chemical Physics +physics/0209075 Optics +physics/0209076 Biological Physics +physics/0209077 Atomic Physics +physics/0209084 Atomic Physics +physics/0209086 Atomic Physics +physics/0209088 Atomic Physics +physics/0209089 Atomic Physics +physics/0209092 Atomic Physics +physics/0209093 Biological Physics +physics/0209095 Atmospheric and Oceanic Physics +physics/0209096 Atomic Physics +physics/0209102 Classical Physics +physics/0209103 Biological Physics +physics/0209104 Classical Physics +physics/0209105 Chemical Physics +physics/0210002 Optics +physics/0210007 Instrumentation and Detectors +physics/0210009 Fluid Dynamics +physics/0210015 Physics Education +physics/0210017 Instrumentation and Detectors +physics/0210019 Atomic Physics +physics/0210024 Classical Physics +physics/0210026 Computational Physics +physics/0210029 Atomic Physics +physics/0210030 Biological Physics +physics/0210033 Physics Education +physics/0210038 Biological Physics +physics/0210041 Optics +physics/0210042 Atomic and Molecular Clusters +physics/0210045 Instrumentation and Detectors +physics/0210049 Optics +physics/0210050 Fluid Dynamics +physics/0210052 Optics +physics/0210054 Fluid Dynamics +physics/0210056 Geophysics +physics/0210060 Atomic Physics +physics/0210061 Computational Physics +physics/0210062 Optics +physics/0210066 Classical Physics +physics/0210069 Atomic Physics +physics/0210073 Optics +physics/0210074 Classical Physics +physics/0210076 Atomic Physics +physics/0210083 Atomic Physics +physics/0210086 Optics +physics/0210098 Instrumentation and Detectors +physics/0210099 Instrumentation and Detectors +physics/0210102 Instrumentation and Detectors +physics/0210103 Atomic Physics +physics/0210106 Plasma Physics +physics/0210107 Atomic Physics +physics/0210110 Plasma Physics +physics/0210118 Biological Physics +physics/0210119 Atomic Physics +physics/0210122 Chemical Physics +physics/0210123 Chemical Physics +physics/0210126 Atomic Physics +physics/0210127 Computational Physics +physics/0210128 Classical Physics +physics/0210129 Classical Physics +physics/0211005 Optics +physics/0211006 Chemical Physics +physics/0211008 Accelerator Physics +physics/0211010 Physics and Society +physics/0211023 Accelerator Physics +physics/0211024 Fluid Dynamics +physics/0211028 Physics Education +physics/0211029 Physics and Society +physics/0211031 Biological Physics +physics/0211032 Instrumentation and Detectors +physics/0211033 Biological Physics +physics/0211038 Atomic Physics +physics/0211039 Optics +physics/0211044 Fluid Dynamics +physics/0211045 Optics +physics/0211049 Data Analysis, Statistics and Probability +physics/0211052 Data Analysis, Statistics and Probability +physics/0211062 Classical Physics +physics/0211063 Chemical Physics +physics/0211065 Data Analysis, Statistics and Probability +physics/0211072 Accelerator Physics +physics/0211073 Fluid Dynamics +physics/0211076 Plasma Physics +physics/0211079 Classical Physics +physics/0211080 Space Physics +physics/0211081 Atomic Physics +physics/0211082 Atomic Physics +physics/0211083 Instrumentation and Detectors +physics/0211088 Optics +physics/0211089 Plasma Physics +physics/0211091 Atomic Physics +physics/0211092 Data Analysis, Statistics and Probability +physics/0211094 Biological Physics +physics/0211098 Atomic Physics +physics/0211105 Plasma Physics +physics/0211110 Atomic Physics +physics/0211113 Plasma Physics +physics/0211115 Atmospheric and Oceanic Physics +physics/0211120 Instrumentation and Detectors +physics/0212001 Biological Physics +physics/0212006 Atomic Physics +physics/0212007 Chemical Physics +physics/0212009 Plasma Physics +physics/0212010 Chemical Physics +physics/0212015 Atomic Physics +physics/0212017 Plasma Physics +physics/0212018 Atomic Physics +physics/0212019 Optics +physics/0212022 Atomic Physics +physics/0212024 Atomic Physics +physics/0212025 Physics Education +physics/0212028 Instrumentation and Detectors +physics/0212031 Optics +physics/0212032 Biological Physics +physics/0212037 Atomic Physics +physics/0212039 Biological Physics +physics/0212042 Atmospheric and Oceanic Physics +physics/0212043 Classical Physics +physics/0212044 Accelerator Physics +physics/0212047 Computational Physics +physics/0212049 Data Analysis, Statistics and Probability +physics/0212057 Fluid Dynamics +physics/0212062 Chemical Physics +physics/0212063 Chemical Physics +physics/0212064 Chemical Physics +physics/0212067 Chemical Physics +physics/0212070 Biological Physics +physics/0212071 Plasma Physics +physics/0212075 Fluid Dynamics +physics/0212076 Plasma Physics +physics/0212079 Chemical Physics +physics/0212081 Atomic Physics +physics/0212083 Atomic Physics +physics/0212084 Atomic and Molecular Clusters +physics/0212089 Atomic Physics +physics/0212090 History and Philosophy of Physics +physics/0212093 Plasma Physics +physics/0212094 Classical Physics +physics/0212108 Chemical Physics +physics/0212109 Atomic Physics +physics/0212112 Atomic Physics +physics/0212115 Plasma Physics +quant-ph/0101008 +quant-ph/0101009 +quant-ph/0101013 +quant-ph/0101014 +quant-ph/0101015 +quant-ph/0101017 +quant-ph/0101020 +quant-ph/0101021 +quant-ph/0101026 +quant-ph/0101027 +quant-ph/0101029 +quant-ph/0101031 +quant-ph/0101036 +quant-ph/0101038 +quant-ph/0101039 +quant-ph/0101042 +quant-ph/0101043 +quant-ph/0101045 +quant-ph/0101049 +quant-ph/0101051 +quant-ph/0101055 +quant-ph/0101056 +quant-ph/0101059 +quant-ph/0101064 +quant-ph/0101066 +quant-ph/0101067 +quant-ph/0101068 +quant-ph/0101070 +quant-ph/0101071 +quant-ph/0101073 +quant-ph/0101074 +quant-ph/0101080 +quant-ph/0101081 +quant-ph/0101082 +quant-ph/0101083 +quant-ph/0101086 +quant-ph/0101087 +quant-ph/0101089 +quant-ph/0101090 +quant-ph/0101092 +quant-ph/0101093 +quant-ph/0101094 +quant-ph/0101095 +quant-ph/0101097 +quant-ph/0101098 +quant-ph/0101100 +quant-ph/0101101 +quant-ph/0101103 +quant-ph/0101106 +quant-ph/0101108 +quant-ph/0101109 +quant-ph/0101110 +quant-ph/0101111 +quant-ph/0101117 +quant-ph/0101121 +quant-ph/0101124 +quant-ph/0101128 +quant-ph/0101130 +quant-ph/0101131 +quant-ph/0101133 +quant-ph/0101134 +quant-ph/0101136 +quant-ph/0101138 +quant-ph/0101140 +quant-ph/0101141 +quant-ph/0101145 +quant-ph/0101147 +quant-ph/0102001 +quant-ph/0102007 +quant-ph/0102011 +quant-ph/0102012 +quant-ph/0102013 +quant-ph/0102015 +quant-ph/0102017 +quant-ph/0102020 +quant-ph/0102023 +quant-ph/0102024 +quant-ph/0102025 +quant-ph/0102026 +quant-ph/0102027 +quant-ph/0102028 +quant-ph/0102029 +quant-ph/0102030 +quant-ph/0102035 +quant-ph/0102036 +quant-ph/0102037 +quant-ph/0102039 +quant-ph/0102040 +quant-ph/0102041 +quant-ph/0102043 +quant-ph/0102044 +quant-ph/0102048 +quant-ph/0102052 +quant-ph/0102058 +quant-ph/0102060 +quant-ph/0102061 +quant-ph/0102063 +quant-ph/0102064 +quant-ph/0102069 +quant-ph/0102071 +quant-ph/0102072 +quant-ph/0102074 +quant-ph/0102075 +quant-ph/0102077 +quant-ph/0102084 +quant-ph/0102093 +quant-ph/0102094 +quant-ph/0102095 +quant-ph/0102096 +quant-ph/0102097 +quant-ph/0102098 +quant-ph/0102100 +quant-ph/0102105 +quant-ph/0102106 +quant-ph/0102110 +quant-ph/0102115 +quant-ph/0102116 +quant-ph/0102117 +quant-ph/0102121 +quant-ph/0102122 +quant-ph/0102123 +quant-ph/0102125 +quant-ph/0102129 +quant-ph/0102133 +quant-ph/0102136 +quant-ph/0102137 +quant-ph/0102141 +quant-ph/0103001 +quant-ph/0103002 +quant-ph/0103005 +quant-ph/0103006 +quant-ph/0103008 +quant-ph/0103010 +quant-ph/0103012 +quant-ph/0103013 +quant-ph/0103015 +quant-ph/0103018 +quant-ph/0103019 +quant-ph/0103021 +quant-ph/0103022 +quant-ph/0103023 +quant-ph/0103024 +quant-ph/0103025 +quant-ph/0103026 +quant-ph/0103027 +quant-ph/0103032 +quant-ph/0103034 +quant-ph/0103035 +quant-ph/0103037 +quant-ph/0103042 +quant-ph/0103049 +quant-ph/0103050 +quant-ph/0103051 +quant-ph/0103052 +quant-ph/0103053 +quant-ph/0103058 +quant-ph/0103059 +quant-ph/0103061 +quant-ph/0103063 +quant-ph/0103066 +quant-ph/0103067 +quant-ph/0103068 +quant-ph/0103069 +quant-ph/0103071 +quant-ph/0103075 +quant-ph/0103082 +quant-ph/0103084 +quant-ph/0103085 +quant-ph/0103087 +quant-ph/0103088 +quant-ph/0103093 +quant-ph/0103095 +quant-ph/0103097 +quant-ph/0103099 +quant-ph/0103101 +quant-ph/0103102 +quant-ph/0103105 +quant-ph/0103108 +quant-ph/0103109 +quant-ph/0103111 +quant-ph/0103112 +quant-ph/0103113 +quant-ph/0103114 +quant-ph/0103120 +quant-ph/0103122 +quant-ph/0103125 +quant-ph/0103126 +quant-ph/0103128 +quant-ph/0103130 +quant-ph/0103133 +quant-ph/0103137 +quant-ph/0103138 +quant-ph/0103140 +quant-ph/0103141 +quant-ph/0103144 +quant-ph/0103147 +quant-ph/0103148 +quant-ph/0103149 +quant-ph/0103153 +quant-ph/0103155 +quant-ph/0103159 +quant-ph/0103160 +quant-ph/0103163 +quant-ph/0103165 +quant-ph/0103167 +quant-ph/0103168 +quant-ph/0103171 +quant-ph/0104002 +quant-ph/0104003 +quant-ph/0104007 +quant-ph/0104008 +quant-ph/0104009 +quant-ph/0104010 +quant-ph/0104011 +quant-ph/0104012 +quant-ph/0104014 +quant-ph/0104015 +quant-ph/0104016 +quant-ph/0104020 +quant-ph/0104021 +quant-ph/0104022 +quant-ph/0104023 +quant-ph/0104025 +quant-ph/0104027 +quant-ph/0104028 +quant-ph/0104030 +quant-ph/0104034 +quant-ph/0104035 +quant-ph/0104036 +quant-ph/0104039 +quant-ph/0104040 +quant-ph/0104041 +quant-ph/0104044 +quant-ph/0104045 +quant-ph/0104046 +quant-ph/0104050 +quant-ph/0104057 +quant-ph/0104059 +quant-ph/0104061 +quant-ph/0104064 +quant-ph/0104065 +quant-ph/0104069 +quant-ph/0104070 +quant-ph/0104071 +quant-ph/0104074 +quant-ph/0104076 +quant-ph/0104079 +quant-ph/0104084 +quant-ph/0104086 +quant-ph/0104087 +quant-ph/0104089 +quant-ph/0104090 +quant-ph/0104091 +quant-ph/0104095 +quant-ph/0104096 +quant-ph/0104097 +quant-ph/0104098 +quant-ph/0104099 +quant-ph/0104101 +quant-ph/0104107 +quant-ph/0104114 +quant-ph/0104115 +quant-ph/0104116 +quant-ph/0104121 +quant-ph/0104122 +quant-ph/0104124 +quant-ph/0104125 +quant-ph/0104127 +quant-ph/0104128 +quant-ph/0104129 +quant-ph/0104130 +quant-ph/0104131 +quant-ph/0104132 +quant-ph/0104135 +quant-ph/0104136 +quant-ph/0104139 +quant-ph/0105002 +quant-ph/0105003 +quant-ph/0105004 +quant-ph/0105006 +quant-ph/0105007 +quant-ph/0105015 +quant-ph/0105016 +quant-ph/0105019 +quant-ph/0105024 +quant-ph/0105026 +quant-ph/0105028 +quant-ph/0105029 +quant-ph/0105030 +quant-ph/0105035 +quant-ph/0105036 +quant-ph/0105038 +quant-ph/0105041 +quant-ph/0105043 +quant-ph/0105044 +quant-ph/0105046 +quant-ph/0105047 +quant-ph/0105048 +quant-ph/0105056 +quant-ph/0105059 +quant-ph/0105061 +quant-ph/0105062 +quant-ph/0105063 +quant-ph/0105065 +quant-ph/0105069 +quant-ph/0105071 +quant-ph/0105073 +quant-ph/0105074 +quant-ph/0105075 +quant-ph/0105076 +quant-ph/0105080 +quant-ph/0105084 +quant-ph/0105087 +quant-ph/0105088 +quant-ph/0105089 +quant-ph/0105090 +quant-ph/0105098 +quant-ph/0105099 +quant-ph/0105102 +quant-ph/0105104 +quant-ph/0105105 +quant-ph/0105112 +quant-ph/0105113 +quant-ph/0105115 +quant-ph/0105117 +quant-ph/0105119 +quant-ph/0105120 +quant-ph/0105123 +quant-ph/0105124 +quant-ph/0105125 +quant-ph/0105127 +quant-ph/0105130 +quant-ph/0105131 +quant-ph/0105132 +quant-ph/0105138 +quant-ph/0105140 +quant-ph/0105142 +quant-ph/0105146 +quant-ph/0105147 +quant-ph/0105149 +quant-ph/0105153 +quant-ph/0105154 +quant-ph/0105156 +quant-ph/0106012 +quant-ph/0106014 +quant-ph/0106016 +quant-ph/0106022 +quant-ph/0106023 +quant-ph/0106024 +quant-ph/0106025 +quant-ph/0106031 +quant-ph/0106032 +quant-ph/0106037 +quant-ph/0106039 +quant-ph/0106042 +quant-ph/0106046 +quant-ph/0106048 +quant-ph/0106049 +quant-ph/0106053 +quant-ph/0106054 +quant-ph/0106057 +quant-ph/0106060 +quant-ph/0106064 +quant-ph/0106065 +quant-ph/0106066 +quant-ph/0106069 +quant-ph/0106071 +quant-ph/0106075 +quant-ph/0106076 +quant-ph/0106078 +quant-ph/0106079 +quant-ph/0106083 +quant-ph/0106085 +quant-ph/0106086 +quant-ph/0106088 +quant-ph/0106089 +quant-ph/0106090 +quant-ph/0106091 +quant-ph/0106092 +quant-ph/0106093 +quant-ph/0106095 +quant-ph/0106097 +quant-ph/0106098 +quant-ph/0106099 +quant-ph/0106102 +quant-ph/0106104 +quant-ph/0106107 +quant-ph/0106109 +quant-ph/0106114 +quant-ph/0106118 +quant-ph/0106121 +quant-ph/0106122 +quant-ph/0106125 +quant-ph/0106126 +quant-ph/0106133 +quant-ph/0106137 +quant-ph/0106138 +quant-ph/0106140 +quant-ph/0106145 +quant-ph/0106148 +quant-ph/0106149 +quant-ph/0106150 +quant-ph/0106153 +quant-ph/0106156 +quant-ph/0106158 +quant-ph/0106161 +quant-ph/0106162 +quant-ph/0107001 +quant-ph/0107006 +quant-ph/0107009 +quant-ph/0107015 +quant-ph/0107018 +quant-ph/0107020 +quant-ph/0107023 +quant-ph/0107024 +quant-ph/0107025 +quant-ph/0107026 +quant-ph/0107029 +quant-ph/0107030 +quant-ph/0107032 +quant-ph/0107033 +quant-ph/0107035 +quant-ph/0107039 +quant-ph/0107041 +quant-ph/0107043 +quant-ph/0107045 +quant-ph/0107046 +quant-ph/0107050 +quant-ph/0107051 +quant-ph/0107052 +quant-ph/0107053 +quant-ph/0107055 +quant-ph/0107057 +quant-ph/0107058 +quant-ph/0107059 +quant-ph/0107060 +quant-ph/0107061 +quant-ph/0107062 +quant-ph/0107063 +quant-ph/0107065 +quant-ph/0107066 +quant-ph/0107067 +quant-ph/0107069 +quant-ph/0107071 +quant-ph/0107073 +quant-ph/0107074 +quant-ph/0107075 +quant-ph/0107080 +quant-ph/0107081 +quant-ph/0107082 +quant-ph/0107084 +quant-ph/0107086 +quant-ph/0107091 +quant-ph/0107092 +quant-ph/0107095 +quant-ph/0107100 +quant-ph/0107101 +quant-ph/0107110 +quant-ph/0107114 +quant-ph/0107115 +quant-ph/0107116 +quant-ph/0107118 +quant-ph/0107119 +quant-ph/0107120 +quant-ph/0107124 +quant-ph/0107125 +quant-ph/0107126 +quant-ph/0107130 +quant-ph/0107131 +quant-ph/0107132 +quant-ph/0107133 +quant-ph/0107136 +quant-ph/0107138 +quant-ph/0107140 +quant-ph/0107143 +quant-ph/0107145 +quant-ph/0107147 +quant-ph/0107148 +quant-ph/0107149 +quant-ph/0107153 +quant-ph/0107154 +quant-ph/0107155 +quant-ph/0108003 +quant-ph/0108006 +quant-ph/0108007 +quant-ph/0108008 +quant-ph/0108010 +quant-ph/0108011 +quant-ph/0108015 +quant-ph/0108016 +quant-ph/0108018 +quant-ph/0108019 +quant-ph/0108020 +quant-ph/0108021 +quant-ph/0108022 +quant-ph/0108025 +quant-ph/0108028 +quant-ph/0108029 +quant-ph/0108030 +quant-ph/0108031 +quant-ph/0108036 +quant-ph/0108042 +quant-ph/0108043 +quant-ph/0108044 +quant-ph/0108046 +quant-ph/0108047 +quant-ph/0108049 +quant-ph/0108050 +quant-ph/0108054 +quant-ph/0108057 +quant-ph/0108058 +quant-ph/0108059 +quant-ph/0108060 +quant-ph/0108061 +quant-ph/0108063 +quant-ph/0108064 +quant-ph/0108066 +quant-ph/0108068 +quant-ph/0108070 +quant-ph/0108076 +quant-ph/0108077 +quant-ph/0108078 +quant-ph/0108081 +quant-ph/0108083 +quant-ph/0108086 +quant-ph/0108088 +quant-ph/0108091 +quant-ph/0108097 +quant-ph/0108099 +quant-ph/0108100 +quant-ph/0108101 +quant-ph/0108102 +quant-ph/0108103 +quant-ph/0108108 +quant-ph/0108110 +quant-ph/0108114 +quant-ph/0108117 +quant-ph/0108119 +quant-ph/0108122 +quant-ph/0108124 +quant-ph/0108125 +quant-ph/0108126 +quant-ph/0108127 +quant-ph/0108128 +quant-ph/0108132 +quant-ph/0108136 +quant-ph/0108137 +quant-ph/0108138 +quant-ph/0108142 +quant-ph/0108144 +quant-ph/0108145 +quant-ph/0108146 +quant-ph/0109001 +quant-ph/0109003 +quant-ph/0109005 +quant-ph/0109006 +quant-ph/0109007 +quant-ph/0109009 +quant-ph/0109011 +quant-ph/0109014 +quant-ph/0109018 +quant-ph/0109019 +quant-ph/0109022 +quant-ph/0109029 +quant-ph/0109031 +quant-ph/0109033 +quant-ph/0109035 +quant-ph/0109041 +quant-ph/0109043 +quant-ph/0109045 +quant-ph/0109046 +quant-ph/0109049 +quant-ph/0109050 +quant-ph/0109057 +quant-ph/0109060 +quant-ph/0109071 +quant-ph/0109073 +quant-ph/0109074 +quant-ph/0109076 +quant-ph/0109077 +quant-ph/0109079 +quant-ph/0109080 +quant-ph/0109081 +quant-ph/0109083 +quant-ph/0109085 +quant-ph/0109086 +quant-ph/0109089 +quant-ph/0109090 +quant-ph/0109091 +quant-ph/0109092 +quant-ph/0109095 +quant-ph/0109097 +quant-ph/0109099 +quant-ph/0109100 +quant-ph/0109102 +quant-ph/0109104 +quant-ph/0109106 +quant-ph/0109108 +quant-ph/0109109 +quant-ph/0109110 +quant-ph/0109114 +quant-ph/0109116 +quant-ph/0109117 +quant-ph/0109118 +quant-ph/0109119 +quant-ph/0109121 +quant-ph/0109125 +quant-ph/0109126 +quant-ph/0109128 +quant-ph/0109129 +quant-ph/0109132 +quant-ph/0109135 +quant-ph/0109138 +quant-ph/0109140 +quant-ph/0109141 +quant-ph/0109142 +quant-ph/0109143 +quant-ph/0109145 +quant-ph/0109147 +quant-ph/0109151 +quant-ph/0109156 +quant-ph/0110003 +quant-ph/0110004 +quant-ph/0110007 +quant-ph/0110009 +quant-ph/0110012 +quant-ph/0110013 +quant-ph/0110014 +quant-ph/0110015 +quant-ph/0110016 +quant-ph/0110017 +quant-ph/0110020 +quant-ph/0110026 +quant-ph/0110027 +quant-ph/0110030 +quant-ph/0110031 +quant-ph/0110033 +quant-ph/0110035 +quant-ph/0110037 +quant-ph/0110044 +quant-ph/0110045 +quant-ph/0110048 +quant-ph/0110049 +quant-ph/0110055 +quant-ph/0110057 +quant-ph/0110058 +quant-ph/0110062 +quant-ph/0110063 +quant-ph/0110064 +quant-ph/0110065 +quant-ph/0110066 +quant-ph/0110070 +quant-ph/0110074 +quant-ph/0110076 +quant-ph/0110079 +quant-ph/0110081 +quant-ph/0110084 +quant-ph/0110088 +quant-ph/0110092 +quant-ph/0110093 +quant-ph/0110095 +quant-ph/0110096 +quant-ph/0110099 +quant-ph/0110104 +quant-ph/0110109 +quant-ph/0110110 +quant-ph/0110111 +quant-ph/0110112 +quant-ph/0110113 +quant-ph/0110114 +quant-ph/0110122 +quant-ph/0110128 +quant-ph/0110129 +quant-ph/0110133 +quant-ph/0110138 +quant-ph/0110140 +quant-ph/0110142 +quant-ph/0110143 +quant-ph/0110145 +quant-ph/0110147 +quant-ph/0110148 +quant-ph/0110150 +quant-ph/0110151 +quant-ph/0110152 +quant-ph/0110154 +quant-ph/0110156 +quant-ph/0110168 +quant-ph/0110171 +quant-ph/0110172 +quant-ph/0110173 +quant-ph/0110174 +quant-ph/0110176 +quant-ph/0110177 +quant-ph/0110178 +quant-ph/0111002 +quant-ph/0111005 +quant-ph/0111008 +quant-ph/0111012 +quant-ph/0111017 +quant-ph/0111018 +quant-ph/0111023 +quant-ph/0111031 +quant-ph/0111032 +quant-ph/0111033 +quant-ph/0111034 +quant-ph/0111040 +quant-ph/0111042 +quant-ph/0111043 +quant-ph/0111044 +quant-ph/0111045 +quant-ph/0111048 +quant-ph/0111051 +quant-ph/0111052 +quant-ph/0111053 +quant-ph/0111055 +quant-ph/0111058 +quant-ph/0111059 +quant-ph/0111060 +quant-ph/0111061 +quant-ph/0111064 +quant-ph/0111065 +quant-ph/0111066 +quant-ph/0111067 +quant-ph/0111078 +quant-ph/0111086 +quant-ph/0111087 +quant-ph/0111088 +quant-ph/0111090 +quant-ph/0111091 +quant-ph/0111092 +quant-ph/0111095 +quant-ph/0111097 +quant-ph/0111099 +quant-ph/0111100 +quant-ph/0111104 +quant-ph/0111107 +quant-ph/0111108 +quant-ph/0111110 +quant-ph/0111111 +quant-ph/0111112 +quant-ph/0111115 +quant-ph/0111116 +quant-ph/0111117 +quant-ph/0111123 +quant-ph/0111125 +quant-ph/0111127 +quant-ph/0111128 +quant-ph/0111129 +quant-ph/0111132 +quant-ph/0111134 +quant-ph/0111136 +quant-ph/0111140 +quant-ph/0111143 +quant-ph/0111145 +quant-ph/0111146 +quant-ph/0111147 +quant-ph/0111148 +quant-ph/0111153 +quant-ph/0111156 +quant-ph/0111162 +quant-ph/0111165 +quant-ph/0111166 +quant-ph/0111167 +quant-ph/0112001 +quant-ph/0112002 +quant-ph/0112004 +quant-ph/0112012 +quant-ph/0112014 +quant-ph/0112015 +quant-ph/0112017 +quant-ph/0112021 +quant-ph/0112022 +quant-ph/0112027 +quant-ph/0112029 +quant-ph/0112030 +quant-ph/0112031 +quant-ph/0112035 +quant-ph/0112040 +quant-ph/0112045 +quant-ph/0112049 +quant-ph/0112050 +quant-ph/0112051 +quant-ph/0112054 +quant-ph/0112056 +quant-ph/0112064 +quant-ph/0112065 +quant-ph/0112072 +quant-ph/0112074 +quant-ph/0112079 +quant-ph/0112084 +quant-ph/0112085 +quant-ph/0112088 +quant-ph/0112093 +quant-ph/0112094 +quant-ph/0112097 +quant-ph/0112098 +quant-ph/0112100 +quant-ph/0112101 +quant-ph/0112102 +quant-ph/0112104 +quant-ph/0112110 +quant-ph/0112111 +quant-ph/0112113 +quant-ph/0112115 +quant-ph/0112116 +quant-ph/0112123 +quant-ph/0112124 +quant-ph/0112125 +quant-ph/0112126 +quant-ph/0112127 +quant-ph/0112129 +quant-ph/0112131 +quant-ph/0112135 +quant-ph/0112140 +quant-ph/0112142 +quant-ph/0112145 +quant-ph/0112154 +quant-ph/0112165 +quant-ph/0112168 +quant-ph/0112169 +quant-ph/0112171 +quant-ph/0112173 +quant-ph/0112174 +quant-ph/0112176 +quant-ph/0112179 +quant-ph/0112180 +quant-ph/0201001 +quant-ph/0201002 +quant-ph/0201005 +quant-ph/0201008 +quant-ph/0201009 +quant-ph/0201011 +quant-ph/0201012 +quant-ph/0201015 +quant-ph/0201016 +quant-ph/0201019 +quant-ph/0201023 +quant-ph/0201024 +quant-ph/0201025 +quant-ph/0201026 +quant-ph/0201028 +quant-ph/0201029 +quant-ph/0201030 +quant-ph/0201034 +quant-ph/0201035 +quant-ph/0201037 +quant-ph/0201044 +quant-ph/0201048 +quant-ph/0201049 +quant-ph/0201052 +quant-ph/0201053 +quant-ph/0201054 +quant-ph/0201058 +quant-ph/0201059 +quant-ph/0201060 +quant-ph/0201061 +quant-ph/0201062 +quant-ph/0201063 +quant-ph/0201064 +quant-ph/0201066 +quant-ph/0201068 +quant-ph/0201069 +quant-ph/0201070 +quant-ph/0201071 +quant-ph/0201073 +quant-ph/0201074 +quant-ph/0201075 +quant-ph/0201078 +quant-ph/0201086 +quant-ph/0201087 +quant-ph/0201089 +quant-ph/0201092 +quant-ph/0201099 +quant-ph/0201100 +quant-ph/0201103 +quant-ph/0201107 +quant-ph/0201110 +quant-ph/0201115 +quant-ph/0201118 +quant-ph/0201122 +quant-ph/0201125 +quant-ph/0201126 +quant-ph/0201128 +quant-ph/0201134 +quant-ph/0201135 +quant-ph/0201136 +quant-ph/0201140 +quant-ph/0201141 +quant-ph/0201142 +quant-ph/0201143 +quant-ph/0201145 +quant-ph/0201146 +quant-ph/0201147 +quant-ph/0201148 +quant-ph/0201150 +quant-ph/0201152 +quant-ph/0202001 +quant-ph/0202002 +quant-ph/0202003 +quant-ph/0202004 +quant-ph/0202005 +quant-ph/0202006 +quant-ph/0202008 +quant-ph/0202012 +quant-ph/0202017 +quant-ph/0202018 +quant-ph/0202027 +quant-ph/0202028 +quant-ph/0202029 +quant-ph/0202032 +quant-ph/0202034 +quant-ph/0202038 +quant-ph/0202041 +quant-ph/0202043 +quant-ph/0202044 +quant-ph/0202046 +quant-ph/0202048 +quant-ph/0202051 +quant-ph/0202052 +quant-ph/0202058 +quant-ph/0202060 +quant-ph/0202063 +quant-ph/0202065 +quant-ph/0202069 +quant-ph/0202070 +quant-ph/0202071 +quant-ph/0202072 +quant-ph/0202073 +quant-ph/0202075 +quant-ph/0202076 +quant-ph/0202077 +quant-ph/0202080 +quant-ph/0202085 +quant-ph/0202087 +quant-ph/0202090 +quant-ph/0202092 +quant-ph/0202093 +quant-ph/0202098 +quant-ph/0202102 +quant-ph/0202103 +quant-ph/0202104 +quant-ph/0202112 +quant-ph/0202113 +quant-ph/0202114 +quant-ph/0202116 +quant-ph/0202117 +quant-ph/0202118 +quant-ph/0202122 +quant-ph/0202125 +quant-ph/0202130 +quant-ph/0202133 +quant-ph/0202137 +quant-ph/0202139 +quant-ph/0202140 +quant-ph/0202141 +quant-ph/0202142 +quant-ph/0202150 +quant-ph/0202151 +quant-ph/0202152 +quant-ph/0202153 +quant-ph/0202154 +quant-ph/0202159 +quant-ph/0202160 +quant-ph/0202163 +quant-ph/0202164 +quant-ph/0202166 +quant-ph/0202172 +quant-ph/0202173 +quant-ph/0203004 +quant-ph/0203012 +quant-ph/0203013 +quant-ph/0203014 +quant-ph/0203016 +quant-ph/0203018 +quant-ph/0203021 +quant-ph/0203025 +quant-ph/0203026 +quant-ph/0203027 +quant-ph/0203028 +quant-ph/0203029 +quant-ph/0203034 +quant-ph/0203035 +quant-ph/0203037 +quant-ph/0203038 +quant-ph/0203040 +quant-ph/0203041 +quant-ph/0203045 +quant-ph/0203046 +quant-ph/0203049 +quant-ph/0203056 +quant-ph/0203057 +quant-ph/0203058 +quant-ph/0203062 +quant-ph/0203063 +quant-ph/0203066 +quant-ph/0203067 +quant-ph/0203069 +quant-ph/0203071 +quant-ph/0203072 +quant-ph/0203073 +quant-ph/0203076 +quant-ph/0203082 +quant-ph/0203083 +quant-ph/0203087 +quant-ph/0203090 +quant-ph/0203091 +quant-ph/0203092 +quant-ph/0203096 +quant-ph/0203097 +quant-ph/0203098 +quant-ph/0203101 +quant-ph/0203102 +quant-ph/0203104 +quant-ph/0203108 +quant-ph/0203111 +quant-ph/0203113 +quant-ph/0203115 +quant-ph/0203116 +quant-ph/0203117 +quant-ph/0203118 +quant-ph/0203120 +quant-ph/0203122 +quant-ph/0203123 +quant-ph/0203124 +quant-ph/0203125 +quant-ph/0203128 +quant-ph/0203129 +quant-ph/0203132 +quant-ph/0203133 +quant-ph/0203134 +quant-ph/0203136 +quant-ph/0203137 +quant-ph/0203138 +quant-ph/0203140 +quant-ph/0203141 +quant-ph/0203143 +quant-ph/0203145 +quant-ph/0203146 +quant-ph/0203147 +quant-ph/0203148 +quant-ph/0203150 +quant-ph/0204004 +quant-ph/0204006 +quant-ph/0204009 +quant-ph/0204016 +quant-ph/0204017 +quant-ph/0204018 +quant-ph/0204019 +quant-ph/0204021 +quant-ph/0204023 +quant-ph/0204026 +quant-ph/0204027 +quant-ph/0204028 +quant-ph/0204029 +quant-ph/0204030 +quant-ph/0204035 +quant-ph/0204039 +quant-ph/0204041 +quant-ph/0204042 +quant-ph/0204043 +quant-ph/0204044 +quant-ph/0204047 +quant-ph/0204049 +quant-ph/0204050 +quant-ph/0204051 +quant-ph/0204052 +quant-ph/0204054 +quant-ph/0204057 +quant-ph/0204058 +quant-ph/0204060 +quant-ph/0204061 +quant-ph/0204064 +quant-ph/0204067 +quant-ph/0204069 +quant-ph/0204070 +quant-ph/0204071 +quant-ph/0204074 +quant-ph/0204076 +quant-ph/0204078 +quant-ph/0204079 +quant-ph/0204082 +quant-ph/0204083 +quant-ph/0204085 +quant-ph/0204089 +quant-ph/0204091 +quant-ph/0204094 +quant-ph/0204095 +quant-ph/0204097 +quant-ph/0204099 +quant-ph/0204100 +quant-ph/0204101 +quant-ph/0204103 +quant-ph/0204104 +quant-ph/0204106 +quant-ph/0204107 +quant-ph/0204110 +quant-ph/0204112 +quant-ph/0204114 +quant-ph/0204115 +quant-ph/0204117 +quant-ph/0204118 +quant-ph/0204119 +quant-ph/0204120 +quant-ph/0204125 +quant-ph/0204131 +quant-ph/0204135 +quant-ph/0204136 +quant-ph/0204142 +quant-ph/0204143 +quant-ph/0204144 +quant-ph/0204147 +quant-ph/0204149 +quant-ph/0204150 +quant-ph/0204158 +quant-ph/0204159 +quant-ph/0204162 +quant-ph/0204164 +quant-ph/0204166 +quant-ph/0204169 +quant-ph/0204171 +quant-ph/0205002 +quant-ph/0205003 +quant-ph/0205005 +quant-ph/0205009 +quant-ph/0205012 +quant-ph/0205014 +quant-ph/0205015 +quant-ph/0205016 +quant-ph/0205018 +quant-ph/0205019 +quant-ph/0205021 +quant-ph/0205025 +quant-ph/0205026 +quant-ph/0205031 +quant-ph/0205033 +quant-ph/0205035 +quant-ph/0205036 +quant-ph/0205043 +quant-ph/0205044 +quant-ph/0205045 +quant-ph/0205049 +quant-ph/0205050 +quant-ph/0205051 +quant-ph/0205052 +quant-ph/0205055 +quant-ph/0205061 +quant-ph/0205062 +quant-ph/0205063 +quant-ph/0205064 +quant-ph/0205066 +quant-ph/0205067 +quant-ph/0205069 +quant-ph/0205070 +quant-ph/0205071 +quant-ph/0205072 +quant-ph/0205073 +quant-ph/0205076 +quant-ph/0205077 +quant-ph/0205080 +quant-ph/0205085 +quant-ph/0205087 +quant-ph/0205089 +quant-ph/0205097 +quant-ph/0205098 +quant-ph/0205100 +quant-ph/0205103 +quant-ph/0205105 +quant-ph/0205108 +quant-ph/0205109 +quant-ph/0205110 +quant-ph/0205112 +quant-ph/0205113 +quant-ph/0205114 +quant-ph/0205117 +quant-ph/0205118 +quant-ph/0205126 +quant-ph/0205131 +quant-ph/0205135 +quant-ph/0205136 +quant-ph/0205137 +quant-ph/0205139 +quant-ph/0205140 +quant-ph/0205142 +quant-ph/0205146 +quant-ph/0205149 +quant-ph/0205154 +quant-ph/0205156 +quant-ph/0205158 +quant-ph/0205159 +quant-ph/0205160 +quant-ph/0205171 +quant-ph/0205172 +quant-ph/0205180 +quant-ph/0205184 +quant-ph/0205185 +quant-ph/0205190 +quant-ph/0205191 +quant-ph/0205196 +quant-ph/0206001 +quant-ph/0206011 +quant-ph/0206015 +quant-ph/0206016 +quant-ph/0206017 +quant-ph/0206018 +quant-ph/0206020 +quant-ph/0206021 +quant-ph/0206024 +quant-ph/0206027 +quant-ph/0206031 +quant-ph/0206032 +quant-ph/0206035 +quant-ph/0206036 +quant-ph/0206037 +quant-ph/0206038 +quant-ph/0206039 +quant-ph/0206042 +quant-ph/0206044 +quant-ph/0206049 +quant-ph/0206052 +quant-ph/0206059 +quant-ph/0206060 +quant-ph/0206061 +quant-ph/0206067 +quant-ph/0206069 +quant-ph/0206073 +quant-ph/0206074 +quant-ph/0206075 +quant-ph/0206080 +quant-ph/0206083 +quant-ph/0206084 +quant-ph/0206086 +quant-ph/0206092 +quant-ph/0206094 +quant-ph/0206095 +quant-ph/0206096 +quant-ph/0206097 +quant-ph/0206100 +quant-ph/0206106 +quant-ph/0206108 +quant-ph/0206110 +quant-ph/0206111 +quant-ph/0206114 +quant-ph/0206115 +quant-ph/0206116 +quant-ph/0206123 +quant-ph/0206126 +quant-ph/0206128 +quant-ph/0206129 +quant-ph/0206131 +quant-ph/0206132 +quant-ph/0206133 +quant-ph/0206135 +quant-ph/0206137 +quant-ph/0206139 +quant-ph/0206140 +quant-ph/0206141 +quant-ph/0206142 +quant-ph/0206145 +quant-ph/0206149 +quant-ph/0206152 +quant-ph/0206159 +quant-ph/0206162 +quant-ph/0206166 +quant-ph/0206169 +quant-ph/0206171 +quant-ph/0206172 +quant-ph/0206173 +quant-ph/0206176 +quant-ph/0206177 +quant-ph/0206180 +quant-ph/0206182 +quant-ph/0206183 +quant-ph/0206188 +quant-ph/0206191 +quant-ph/0206196 +quant-ph/0206198 +quant-ph/0206200 +quant-ph/0207002 +quant-ph/0207006 +quant-ph/0207007 +quant-ph/0207009 +quant-ph/0207014 +quant-ph/0207015 +quant-ph/0207016 +quant-ph/0207019 +quant-ph/0207024 +quant-ph/0207025 +quant-ph/0207032 +quant-ph/0207033 +quant-ph/0207036 +quant-ph/0207037 +quant-ph/0207039 +quant-ph/0207041 +quant-ph/0207044 +quant-ph/0207047 +quant-ph/0207048 +quant-ph/0207049 +quant-ph/0207051 +quant-ph/0207053 +quant-ph/0207054 +quant-ph/0207057 +quant-ph/0207061 +quant-ph/0207063 +quant-ph/0207064 +quant-ph/0207066 +quant-ph/0207067 +quant-ph/0207068 +quant-ph/0207072 +quant-ph/0207076 +quant-ph/0207077 +quant-ph/0207078 +quant-ph/0207079 +quant-ph/0207081 +quant-ph/0207082 +quant-ph/0207086 +quant-ph/0207087 +quant-ph/0207095 +quant-ph/0207099 +quant-ph/0207102 +quant-ph/0207106 +quant-ph/0207111 +quant-ph/0207116 +quant-ph/0207117 +quant-ph/0207118 +quant-ph/0207119 +quant-ph/0207121 +quant-ph/0207123 +quant-ph/0207124 +quant-ph/0207125 +quant-ph/0207127 +quant-ph/0207134 +quant-ph/0207138 +quant-ph/0207141 +quant-ph/0207142 +quant-ph/0207146 +quant-ph/0207148 +quant-ph/0207149 +quant-ph/0207152 +quant-ph/0207153 +quant-ph/0207154 +quant-ph/0207156 +quant-ph/0207159 +quant-ph/0207160 +quant-ph/0207163 +quant-ph/0207166 +quant-ph/0207167 +quant-ph/0207168 +quant-ph/0207169 +quant-ph/0207174 +quant-ph/0207175 +quant-ph/0207176 +quant-ph/0207177 +quant-ph/0207179 +quant-ph/0208012 +quant-ph/0208014 +quant-ph/0208015 +quant-ph/0208016 +quant-ph/0208018 +quant-ph/0208019 +quant-ph/0208020 +quant-ph/0208025 +quant-ph/0208027 +quant-ph/0208029 +quant-ph/0208030 +quant-ph/0208031 +quant-ph/0208032 +quant-ph/0208034 +quant-ph/0208035 +quant-ph/0208036 +quant-ph/0208038 +quant-ph/0208039 +quant-ph/0208045 +quant-ph/0208046 +quant-ph/0208050 +quant-ph/0208051 +quant-ph/0208052 +quant-ph/0208054 +quant-ph/0208056 +quant-ph/0208057 +quant-ph/0208058 +quant-ph/0208063 +quant-ph/0208066 +quant-ph/0208073 +quant-ph/0208074 +quant-ph/0208077 +quant-ph/0208080 +quant-ph/0208082 +quant-ph/0208083 +quant-ph/0208084 +quant-ph/0208087 +quant-ph/0208091 +quant-ph/0208094 +quant-ph/0208098 +quant-ph/0208100 +quant-ph/0208101 +quant-ph/0208102 +quant-ph/0208103 +quant-ph/0208105 +quant-ph/0208109 +quant-ph/0208111 +quant-ph/0208116 +quant-ph/0208117 +quant-ph/0208122 +quant-ph/0208124 +quant-ph/0208125 +quant-ph/0208126 +quant-ph/0208130 +quant-ph/0208132 +quant-ph/0208133 +quant-ph/0208134 +quant-ph/0208138 +quant-ph/0208145 +quant-ph/0208146 +quant-ph/0208152 +quant-ph/0208153 +quant-ph/0208155 +quant-ph/0208156 +quant-ph/0208159 +quant-ph/0208160 +quant-ph/0208161 +quant-ph/0208162 +quant-ph/0208164 +quant-ph/0208165 +quant-ph/0208166 +quant-ph/0208169 +quant-ph/0208173 +quant-ph/0208174 +quant-ph/0208179 +quant-ph/0208186 +quant-ph/0208187 +quant-ph/0208190 +quant-ph/0208191 +quant-ph/0208194 +quant-ph/0208195 +quant-ph/0209001 +quant-ph/0209005 +quant-ph/0209007 +quant-ph/0209010 +quant-ph/0209011 +quant-ph/0209012 +quant-ph/0209014 +quant-ph/0209015 +quant-ph/0209016 +quant-ph/0209017 +quant-ph/0209018 +quant-ph/0209019 +quant-ph/0209020 +quant-ph/0209023 +quant-ph/0209027 +quant-ph/0209029 +quant-ph/0209031 +quant-ph/0209032 +quant-ph/0209035 +quant-ph/0209036 +quant-ph/0209040 +quant-ph/0209041 +quant-ph/0209044 +quant-ph/0209048 +quant-ph/0209053 +quant-ph/0209054 +quant-ph/0209067 +quant-ph/0209069 +quant-ph/0209070 +quant-ph/0209077 +quant-ph/0209078 +quant-ph/0209080 +quant-ph/0209081 +quant-ph/0209094 +quant-ph/0209096 +quant-ph/0209102 +quant-ph/0209104 +quant-ph/0209107 +quant-ph/0209108 +quant-ph/0209114 +quant-ph/0209121 +quant-ph/0209122 +quant-ph/0209127 +quant-ph/0209132 +quant-ph/0209137 +quant-ph/0209139 +quant-ph/0209140 +quant-ph/0209142 +quant-ph/0209144 +quant-ph/0209145 +quant-ph/0209152 +quant-ph/0209158 +quant-ph/0209161 +quant-ph/0209162 +quant-ph/0209164 +quant-ph/0209165 +quant-ph/0209166 +quant-ph/0209167 +quant-ph/0209168 +quant-ph/0209170 +quant-ph/0209171 +quant-ph/0210001 +quant-ph/0210002 +quant-ph/0210004 +quant-ph/0210006 +quant-ph/0210008 +quant-ph/0210009 +quant-ph/0210010 +quant-ph/0210012 +quant-ph/0210015 +quant-ph/0210016 +quant-ph/0210023 +quant-ph/0210024 +quant-ph/0210025 +quant-ph/0210027 +quant-ph/0210029 +quant-ph/0210032 +quant-ph/0210034 +quant-ph/0210036 +quant-ph/0210039 +quant-ph/0210041 +quant-ph/0210043 +quant-ph/0210045 +quant-ph/0210049 +quant-ph/0210051 +quant-ph/0210053 +quant-ph/0210056 +quant-ph/0210057 +quant-ph/0210064 +quant-ph/0210066 +quant-ph/0210067 +quant-ph/0210074 +quant-ph/0210086 +quant-ph/0210087 +quant-ph/0210088 +quant-ph/0210090 +quant-ph/0210096 +quant-ph/0210098 +quant-ph/0210099 +quant-ph/0210101 +quant-ph/0210105 +quant-ph/0210108 +quant-ph/0210109 +quant-ph/0210110 +quant-ph/0210112 +quant-ph/0210113 +quant-ph/0210114 +quant-ph/0210119 +quant-ph/0210120 +quant-ph/0210123 +quant-ph/0210125 +quant-ph/0210126 +quant-ph/0210127 +quant-ph/0210128 +quant-ph/0210131 +quant-ph/0210132 +quant-ph/0210136 +quant-ph/0210137 +quant-ph/0210138 +quant-ph/0210142 +quant-ph/0210143 +quant-ph/0210144 +quant-ph/0210146 +quant-ph/0210155 +quant-ph/0210156 +quant-ph/0210157 +quant-ph/0210159 +quant-ph/0210160 +quant-ph/0210161 +quant-ph/0210163 +quant-ph/0210165 +quant-ph/0210167 +quant-ph/0210170 +quant-ph/0210171 +quant-ph/0210172 +quant-ph/0210175 +quant-ph/0210179 +quant-ph/0210180 +quant-ph/0210182 +quant-ph/0210183 +quant-ph/0210186 +quant-ph/0210188 +quant-ph/0210189 +quant-ph/0210193 +quant-ph/0210195 +quant-ph/0210197 +quant-ph/0210200 +quant-ph/0210202 +quant-ph/0210205 +quant-ph/0210209 +quant-ph/0210210 +quant-ph/0211001 +quant-ph/0211002 +quant-ph/0211006 +quant-ph/0211007 +quant-ph/0211008 +quant-ph/0211009 +quant-ph/0211013 +quant-ph/0211015 +quant-ph/0211018 +quant-ph/0211020 +quant-ph/0211022 +quant-ph/0211026 +quant-ph/0211031 +quant-ph/0211033 +quant-ph/0211038 +quant-ph/0211042 +quant-ph/0211043 +quant-ph/0211046 +quant-ph/0211052 +quant-ph/0211055 +quant-ph/0211056 +quant-ph/0211059 +quant-ph/0211065 +quant-ph/0211066 +quant-ph/0211067 +quant-ph/0211075 +quant-ph/0211076 +quant-ph/0211081 +quant-ph/0211084 +quant-ph/0211087 +quant-ph/0211096 +quant-ph/0211100 +quant-ph/0211101 +quant-ph/0211102 +quant-ph/0211105 +quant-ph/0211109 +quant-ph/0211110 +quant-ph/0211112 +quant-ph/0211113 +quant-ph/0211115 +quant-ph/0211116 +quant-ph/0211121 +quant-ph/0211122 +quant-ph/0211123 +quant-ph/0211126 +quant-ph/0211127 +quant-ph/0211131 +quant-ph/0211132 +quant-ph/0211133 +quant-ph/0211134 +quant-ph/0211136 +quant-ph/0211141 +quant-ph/0211146 +quant-ph/0211147 +quant-ph/0211148 +quant-ph/0211150 +quant-ph/0211151 +quant-ph/0211153 +quant-ph/0211154 +quant-ph/0211157 +quant-ph/0211162 +quant-ph/0211165 +quant-ph/0211166 +quant-ph/0211168 +quant-ph/0211170 +quant-ph/0211173 +quant-ph/0211175 +quant-ph/0211178 +quant-ph/0211184 +quant-ph/0211185 +quant-ph/0211189 +quant-ph/0211193 +quant-ph/0211194 +quant-ph/0211196 +quant-ph/0211199 +quant-ph/0212005 +quant-ph/0212006 +quant-ph/0212007 +quant-ph/0212008 +quant-ph/0212009 +quant-ph/0212010 +quant-ph/0212013 +quant-ph/0212015 +quant-ph/0212017 +quant-ph/0212018 +quant-ph/0212019 +quant-ph/0212021 +quant-ph/0212022 +quant-ph/0212024 +quant-ph/0212026 +quant-ph/0212027 +quant-ph/0212028 +quant-ph/0212029 +quant-ph/0212032 +quant-ph/0212033 +quant-ph/0212034 +quant-ph/0212035 +quant-ph/0212037 +quant-ph/0212039 +quant-ph/0212041 +quant-ph/0212047 +quant-ph/0212049 +quant-ph/0212052 +quant-ph/0212053 +quant-ph/0212056 +quant-ph/0212058 +quant-ph/0212060 +quant-ph/0212062 +quant-ph/0212068 +quant-ph/0212074 +quant-ph/0212076 +quant-ph/0212079 +quant-ph/0212081 +quant-ph/0212082 +quant-ph/0212083 +quant-ph/0212089 +quant-ph/0212090 +quant-ph/0212091 +quant-ph/0212094 +quant-ph/0212097 +quant-ph/0212100 +quant-ph/0212104 +quant-ph/0212105 +quant-ph/0212106 +quant-ph/0212109 +quant-ph/0212113 +quant-ph/0212114 +quant-ph/0212116 +quant-ph/0212118 +quant-ph/0212120 +quant-ph/0212122 +quant-ph/0212132 +quant-ph/0212134 +quant-ph/0212135 +quant-ph/0212142 +quant-ph/0212143 +quant-ph/0212152 +quant-ph/0212153 +quant-ph/0212157 +quant-ph/0212160 +quant-ph/0212161 +quant-ph/0212163 +quant-ph/0212165 +quant-ph/0212166 +0802.3842 Symplectic Geometry +0804.1154 Classical Analysis and ODEs +0901.0047 Space Physics +0903.4499 Complex Variables +0903.4582 Information Theory +0904.3939 Cosmology and Nongalactic Astrophysics +0710.1216 Materials Science +0806.3606 Other Condensed Matter +0809.2963 Geometric Topology +0809.3470 Quantum Algebra +0811.4290 Algebraic Geometry +0812.0937 Phenomenology +0901.2734 Symplectic Geometry +0903.2908 Disordered Systems and Neural Networks +0905.0710 Mesoscale and Nanoscale Physics +0905.2177 Cryptography and Security +0905.4542 Populations and Evolution +0906.5150 Number Theory +0907.1906 Cosmology and Nongalactic Astrophysics +0911.2041 Mesoscale and Nanoscale Physics +0912.2671 Number Theory +cond-mat/0406058 Mesoscale and Nanoscale Physics +quant-ph/0506185 +quant-ph/0604140 +0704.2927 Differential Geometry +0709.2452 Functional Analysis +0709.3202 Differential Geometry +0710.3298 +0710.3667 Differential Geometry +0711.0660 Statistics Theory +0802.0523 Methodology +0802.2798 Data Analysis, Statistics and Probability +0803.0068 Combinatorics +0805.4316 Populations and Evolution +0808.3634 Symplectic Geometry +0809.0925 Analysis of PDEs +0809.0978 +0809.1305 Commutative Algebra +0809.3091 Computer Science and Game Theory +0811.1667 Functional Analysis +0811.3093 Complex Variables +0811.4484 +0901.0649 Astrophysics of Galaxies +0901.1062 Cryptography and Security +0902.1234 Mesoscale and Nanoscale Physics +0903.5440 Data Analysis, Statistics and Probability +0905.1012 +0905.1019 +0905.2118 Combinatorics +0905.2346 Phenomenology +0905.2856 Theory +0905.2937 Phenomenology +0905.4411 Functional Analysis +0905.4481 Strongly Correlated Electrons +0905.4609 +0906.0161 Mesoscale and Nanoscale Physics +0906.1353 General Physics +0906.3218 Strongly Correlated Electrons +0907.0917 Experiment +0907.2894 Other Condensed Matter +0907.4406 Fluid Dynamics +0908.0176 Mesoscale and Nanoscale Physics +0908.0258 Soft Condensed Matter +0908.1137 Solar and Stellar Astrophysics +0908.1159 Computational Complexity +0908.2084 Analysis of PDEs +0908.4013 Computational Complexity +0909.0703 Phenomenology +0909.0745 Instrumentation and Detectors +0909.0757 Analysis of PDEs +0909.0758 Fluid Dynamics +0909.0760 Information Theory +0909.0763 Networking and Internet Architecture +0909.0765 Other Condensed Matter +0909.0766 Soft Condensed Matter +0909.0767 Differential Geometry +0909.0771 Cosmology and Nongalactic Astrophysics +0909.0774 Group Theory +0909.0776 Materials Science +0909.0783 Analysis of PDEs +0909.0784 Mesoscale and Nanoscale Physics +0909.0785 Analysis of PDEs +0909.0789 +0909.0791 +0909.0792 +0909.0796 +0909.0797 General Physics +0909.0798 Phenomenology +0909.0800 Algebraic Geometry +0909.0809 Number Theory +0909.0811 Number Theory +0909.0814 Computational Geometry +0909.0823 Statistics Theory +0909.0827 Statistics Theory +0909.0830 Representation Theory +0909.0833 Statistics Theory +0909.0835 Statistics Theory +0909.0836 Solar and Stellar Astrophysics +0909.0843 Statistics Theory +0909.0848 Optics +0909.0850 Materials Science +0909.0851 Statistics Theory +0909.0853 Mesoscale and Nanoscale Physics +0909.0856 Computation +0909.0859 Theory +0909.0861 Statistics Theory +0909.0870 Statistics Theory +0909.0873 Chemical Physics +0909.0874 Classical Physics +0909.0875 Classical Analysis and ODEs +0909.0879 Instrumentation and Methods for Astrophysics +0909.0882 Dynamical Systems +0909.0886 Quantum Gases +0909.0889 Cell Behavior +0909.0893 Statistics Theory +0909.0896 Chemical Physics +0909.0898 Probability +0909.0901 Artificial Intelligence +0909.0908 Combinatorics +0909.0910 Chaotic Dynamics +0909.0912 +0909.0915 Mesoscale and Nanoscale Physics +0909.0916 Phenomenology +0909.0920 Quantum Gases +0909.0924 +0909.0927 Analysis of PDEs +0909.0929 Differential Geometry +0909.0934 Methodology +0909.0935 Chemical Physics +0909.0941 Data Structures and Algorithms +astro-ph/9803233 +cond-mat/0105344 Soft Condensed Matter +cond-mat/0111009 Statistical Mechanics +cond-mat/0402084 Disordered Systems and Neural Networks +cond-mat/0409268 Soft Condensed Matter +cs/0503055 Programming Languages +math/0308187 Metric Geometry +math/0511479 Classical Analysis and ODEs +math/0511558 Algebraic Geometry +math/0602524 Classical Analysis and ODEs +math/0607115 Algebraic Geometry +math/0607738 Algebraic Geometry +math/0608427 Number Theory +math/9603214 Differential Geometry +physics/0301028 Biological Physics +0704.3781 Fluid Dynamics +0711.1243 General Physics +0712.4267 Dynamical Systems +0801.0401 Rings and Algebras +0801.4710 +0802.2486 Optics +0803.3408 Statistics Theory +0804.0085 +0804.0160 Statistical Mechanics +0804.0350 Phenomenology +0804.0593 +0804.3050 Phenomenology +0804.3353 Algebraic Geometry +0805.1658 Dynamical Systems +0805.2315 Pattern Formation and Solitons +0805.2899 Probability +0805.3122 Operator Algebras +0806.0467 Phenomenology +0806.1164 +0806.3996 Superconductivity +0807.0612 Phenomenology +0807.0801 Phenomenology +0807.2167 Experiment +0807.2634 Phenomenology +0807.3029 Phenomenology +0808.0600 +0808.0611 Phenomenology +0808.0815 Statistical Mechanics +0808.1418 Strongly Correlated Electrons +0808.1706 Strongly Correlated Electrons +0808.3024 Theory +0808.3329 +0808.3498 Theory +0809.0714 Phenomenology +0809.1103 Lattice +0809.1215 Superconductivity +0809.1413 Theory +0809.2367 Phenomenology +0809.4143 +0810.0104 +0810.0124 Mesoscale and Nanoscale Physics +0810.0147 Biomolecules +0810.0534 +0810.0585 Theory +0810.1255 Phenomenology +0810.2348 +0810.2549 +0810.3542 +0810.3885 Theory +0810.4217 Theory +0810.4997 +0810.5097 Atomic Physics +0810.5298 Statistical Mechanics +0810.5664 +0810.5769 Theory +0811.0086 Phenomenology +0811.0321 Phenomenology +0811.0730 Theory +0811.1121 Mesoscale and Nanoscale Physics +0811.1687 Materials Science +0811.1743 Phenomenology +0811.2057 Combinatorics +0811.2524 +0811.2562 Combinatorics +0811.2651 Phenomenology +0811.3888 Theory +0812.0370 +0812.0573 Geophysics +0812.1550 General Physics +0812.1664 Probability +0812.2459 Theory +0812.3604 +0812.3910 Genomics +0812.4389 +0901.0059 High Energy Astrophysical Phenomena +0901.0103 High Energy Astrophysical Phenomena +0901.0115 +0901.0142 Solar and Stellar Astrophysics +0901.0146 Astrophysics of Galaxies +0901.0178 Astrophysics of Galaxies +0901.0215 +0901.0258 Space Physics +0901.0301 Astrophysics of Galaxies +0901.0347 Solar and Stellar Astrophysics +0901.0419 Instrumentation and Methods for Astrophysics +0901.0433 Astrophysics of Galaxies +0901.0559 Cosmology and Nongalactic Astrophysics +0901.0569 Cosmology and Nongalactic Astrophysics +0901.0627 Solar and Stellar Astrophysics +0901.0629 Solar and Stellar Astrophysics +0901.0670 Astrophysics of Galaxies +0901.0721 Instrumentation and Methods for Astrophysics +0901.0735 Earth and Planetary Astrophysics +0901.0756 Theory +0901.0784 Solar and Stellar Astrophysics +0901.0865 Solar and Stellar Astrophysics +0901.0875 +0901.0884 Solar and Stellar Astrophysics +0901.0985 Astrophysics of Galaxies +0901.1000 Astrophysics of Galaxies +0901.1861 Plasma Physics +0901.1881 Algebraic Geometry +0901.2018 Earth and Planetary Astrophysics +0901.2045 Solar and Stellar Astrophysics +0901.2066 Astrophysics of Galaxies +0901.2072 Solar and Stellar Astrophysics +0901.2128 High Energy Astrophysical Phenomena +0901.2146 High Energy Astrophysical Phenomena +0901.2153 High Energy Astrophysical Phenomena +0901.2154 High Energy Astrophysical Phenomena +0901.2167 Astrophysics of Galaxies +0901.2230 Cosmology and Nongalactic Astrophysics +0901.2248 Cosmology and Nongalactic Astrophysics +0901.2341 Instrumentation and Methods for Astrophysics +0901.2379 Astrophysics of Galaxies +0901.2380 Astrophysics of Galaxies +0901.2429 Instrumentation and Methods for Astrophysics +0901.2435 Atmospheric and Oceanic Physics +0901.2465 Astrophysics of Galaxies +0901.2581 Molecular Networks +0901.2643 General Physics +0901.2745 Materials Science +0901.2924 Physics and Society +0901.2927 Astrophysics of Galaxies +0901.2934 Information Theory +0901.2939 Mesoscale and Nanoscale Physics +0901.2940 Classical Analysis and ODEs +0901.2942 Differential Geometry +0901.2946 Physics and Society +0901.2949 Geometric Topology +0901.2954 Information Theory +0901.2959 Adaptation and Self-Organizing Systems +0901.2965 Phenomenology +0901.2974 Geometric Topology +0901.2980 Materials Science +0901.2987 Data Analysis, Statistics and Probability +0901.2991 Analysis of PDEs +0901.2992 +0901.2995 Classical Physics +0901.2996 Methodology +0901.2997 +0901.2999 +0901.3000 Dynamical Systems +0901.3005 Representation Theory +0901.3007 Optimization and Control +0901.3015 Commutative Algebra +0901.3021 Mesoscale and Nanoscale Physics +0901.3025 Neurons and Cognition +0901.3030 Complex Variables +0901.3043 Instrumentation and Methods for Astrophysics +0901.3049 Representation Theory +0901.3050 High Energy Astrophysical Phenomena +0901.3051 Commutative Algebra +0901.3053 Probability +0901.3060 Experiment +0901.3064 Geometric Topology +0901.3066 Materials Science +0901.3067 Molecular Networks +0901.3069 Chaotic Dynamics +0901.3072 +0901.3079 Statistics Theory +0901.3082 Probability +0901.3087 Biological Physics +0901.3090 Group Theory +0901.3097 Cosmology and Nongalactic Astrophysics +0901.3117 Optimization and Control +0901.3126 Exactly Solvable and Integrable Systems +0901.3130 Information Theory +0901.3131 Dynamical Systems +0901.3134 Information Theory +astro-ph/0612714 +hep-ex/0209069 Experiment +hep-ex/0311006 Experiment +hep-th/0408002 Theory +math/0203144 Geometric Topology +math/0311480 Dynamical Systems +math/0408011 Dynamical Systems +math/0408041 Dynamical Systems +math/0606309 Complex Variables +math/0703538 Optimization and Control +math/0703825 Optimization and Control +nucl-th/0610027 +quant-ph/0610193 +solv-int/9710016 Exactly Solvable and Integrable Systems +0705.1465 +0708.0039 +0710.1485 +0710.4188 Statistical Mechanics +0801.1639 Dynamical Systems +0802.0273 Strongly Correlated Electrons +0803.0354 Phenomenology +0803.0900 Number Theory +0804.3228 Superconductivity +0807.0965 +0807.3359 Strongly Correlated Electrons +0807.4913 +0808.0395 +0808.1636 Mesoscale and Nanoscale Physics +0810.0442 Algebraic Geometry +0810.0900 Strongly Correlated Electrons +0812.1335 Exactly Solvable and Integrable Systems +0812.2377 Algebraic Geometry +0812.3500 +0812.4727 Logic in Computer Science +0901.0002 Phenomenology +0901.0181 Populations and Evolution +0901.0188 Logic +0901.0299 Optics +0901.0512 Experiment +0901.0513 +0901.0727 Instrumentation and Detectors +0901.0980 Superconductivity +0901.0987 Phenomenology +0901.1465 Genomics +0901.1522 Disordered Systems and Neural Networks +0901.1574 Combinatorics +0901.1598 Populations and Evolution +0901.2059 Astrophysics of Galaxies +0901.2227 Subcellular Processes +0901.2503 Statistics Theory +0901.2548 General Physics +0901.2571 History and Overview +0901.2759 Physics and Society +0901.2870 Statistical Mechanics +0901.2897 Data Structures and Algorithms +0901.3132 Information Theory +0901.3234 Biological Physics +0901.3687 Fluid Dynamics +0901.4157 Mesoscale and Nanoscale Physics +0901.4581 Experiment +0901.4693 Superconductivity +0901.4762 Distributed, Parallel, and Cluster Computing +0901.4866 Exactly Solvable and Integrable Systems +0901.4893 Experiment +0902.0116 Probability +0902.0189 Information Theory +0902.0330 Strongly Correlated Electrons +0902.0481 +0902.0551 Optics +0902.0873 Phenomenology +0902.0926 Networking and Internet Architecture +0902.1559 High Energy Astrophysical Phenomena +0902.1658 Theory +0902.1692 Classical Physics +0902.1704 Superconductivity +0902.1803 Solar and Stellar Astrophysics +0902.1815 Lattice +0902.1834 Data Structures and Algorithms +0902.2038 Materials Science +0902.2526 +0902.3205 Instrumentation and Detectors +0902.3286 Information Theory +0902.3430 Learning +0902.3453 Machine Learning +0902.3632 Statistical Mechanics +0902.4081 +0902.4238 High Energy Astrophysical Phenomena +0902.4519 Materials Science +0902.4521 Computer Vision and Pattern Recognition +0902.4546 +0902.4617 Materials Science +0902.4621 Materials Science +0902.4728 Plasma Physics +0903.0099 Information Theory +0903.0126 Computer Science and Game Theory +0903.0174 Artificial Intelligence +0903.0403 Phenomenology +0903.0591 Cosmology and Nongalactic Astrophysics +0903.0787 Phenomenology +0903.0812 Cosmology and Nongalactic Astrophysics +0903.0839 +0903.0957 Phenomenology +0903.1098 +0903.1280 General Mathematics +0903.1319 Strongly Correlated Electrons +0903.1398 Differential Geometry +0903.1449 Materials Science +0903.1566 Geophysics +0903.1650 Cosmology and Nongalactic Astrophysics +0903.1894 Mesoscale and Nanoscale Physics +0903.2056 High Energy Astrophysical Phenomena +0903.2067 Materials Science +0903.2491 Mesoscale and Nanoscale Physics +0903.2612 Phenomenology +0903.2671 History and Philosophy of Physics +0903.4016 Materials Science +0903.4480 Soft Condensed Matter +0903.5294 Probability +0903.5402 Fluid Dynamics +0904.0168 Solar and Stellar Astrophysics +0904.0297 Materials Science +0904.0407 Combinatorics +0904.0871 High Energy Astrophysical Phenomena +0904.0924 Rings and Algebras +0904.0991 Statistical Mechanics +0904.1734 Geometric Topology +0904.1888 Neural and Evolutionary Computing +0904.1889 Other Computer Science +0904.1944 High Energy Astrophysical Phenomena +0904.2238 +0904.2310 Computational Complexity +0904.2728 Data Structures and Algorithms +0904.2776 Combinatorics +0904.3026 Solar and Stellar Astrophysics +0904.3060 Databases +0904.3063 Neural and Evolutionary Computing +0904.3302 Astrophysics of Galaxies +0904.3322 Materials Science +0904.3420 Cryptography and Security +0904.3422 Cryptography and Security +0904.3508 Optics +0904.3592 Differential Geometry +0904.3979 Rings and Algebras +0904.4174 Networking and Internet Architecture +0904.4374 Optimization and Control +0904.4530 Information Theory +0905.0054 General Physics +0905.0056 General Physics +0905.1066 Instrumentation and Methods for Astrophysics +0905.1113 Distributed, Parallel, and Cluster Computing +0905.1342 Group Theory +0905.1619 Optics +0905.1700 Theory +0905.1895 Materials Science +0905.2021 Materials Science +0905.2766 Disordered Systems and Neural Networks +0905.2779 Soft Condensed Matter +0905.3127 Statistical Mechanics +0905.3155 Experiment +0905.3454 Distributed, Parallel, and Cluster Computing +0905.3579 Cosmology and Nongalactic Astrophysics +0905.3715 Computational Geometry +0905.4325 +0905.4852 Superconductivity +0905.4872 Soft Condensed Matter +0906.0490 Computational Physics +0906.0504 Numerical Analysis +0906.0836 +0906.0921 Computers and Society +0906.1277 Analysis of PDEs +0906.1487 Information Theory +0906.2089 Optics +0906.2413 Theory +0906.2707 +0906.2746 Space Physics +0906.2927 +0906.3276 Instrumentation and Methods for Astrophysics +0906.3346 Phenomenology +0906.3600 Numerical Analysis +0906.3830 General Physics +0906.4042 Superconductivity +0906.4046 Theory +0906.4096 Databases +0906.4260 Experiment +0906.4284 General Physics +0906.4441 Instrumentation and Detectors +0906.4800 Solar and Stellar Astrophysics +0906.4898 Instrumentation and Detectors +0906.5347 Strongly Correlated Electrons +0907.0275 Cosmology and Nongalactic Astrophysics +0907.0459 Atomic Physics +0907.0610 +0907.0878 Phenomenology +0907.0895 Cosmology and Nongalactic Astrophysics +0907.0970 Strongly Correlated Electrons +0907.1047 Solar and Stellar Astrophysics +0907.1295 Data Structures and Algorithms +0907.1301 Solar and Stellar Astrophysics +0907.1307 Computational Complexity +0907.1317 Physics and Society +0907.1535 Phenomenology +0907.1589 Materials Science +0907.1862 Earth and Planetary Astrophysics +0907.1962 Analysis of PDEs +0907.2139 Networking and Internet Architecture +0907.2340 Cosmology and Nongalactic Astrophysics +0907.2869 Phenomenology +0907.3128 Optics +0907.3154 Digital Libraries +0907.3166 Applications +0907.3419 +0907.3783 Solar and Stellar Astrophysics +0907.4106 Fluid Dynamics +0907.4364 Graphics +0907.4703 Materials Science +0907.5152 Other Condensed Matter +0907.5243 Mesoscale and Nanoscale Physics +0907.5581 Cosmology and Nongalactic Astrophysics +0908.0038 Chaotic Dynamics +0908.0145 Applications +0908.0200 Physics and Society +0908.0334 Astrophysics of Galaxies +0908.0391 Probability +0908.0686 Geophysics +0908.1375 Combinatorics +0908.1395 Theory +0908.1539 General Physics +0908.1886 +0908.1938 Algebraic Topology +0908.2212 Phenomenology +0908.2696 Instrumentation and Methods for Astrophysics +0908.2803 Strongly Correlated Electrons +0908.2980 Phenomenology +0908.3131 Physics and Society +0908.3221 Chaotic Dynamics +0908.3223 Chaotic Dynamics +0908.3680 +0908.3826 Instrumentation and Methods for Astrophysics +0908.3849 Instrumentation and Methods for Astrophysics +0908.4159 Mesoscale and Nanoscale Physics +0908.4506 Physics and Society +0909.0655 +0909.1305 Differential Geometry +0909.1523 History and Overview +0909.1903 Mesoscale and Nanoscale Physics +0909.2055 Distributed, Parallel, and Cluster Computing +0909.2395 +0909.2706 Networking and Internet Architecture +0909.2737 Optimization and Control +0909.3512 +0909.3724 Solar and Stellar Astrophysics +0909.4435 Algebraic Geometry +0909.4494 Strongly Correlated Electrons +0909.4642 Computational Geometry +0909.4786 Digital Libraries +0909.4789 Digital Libraries +0909.4896 Software Engineering +0909.5192 Cosmology and Nongalactic Astrophysics +0909.5195 Algebraic Geometry +0909.5197 Algebraic Geometry +0909.5199 Combinatorics +0909.5217 +0909.5233 +0909.5238 Mesoscale and Nanoscale Physics +0909.5245 Dynamical Systems +0909.5248 Analysis of PDEs +0909.5249 Combinatorics +0909.5250 Differential Geometry +0909.5253 Combinatorics +0909.5255 Optics +0909.5261 Dynamical Systems +0909.5266 Combinatorics +0909.5269 Algebraic Geometry +0909.5270 Category Theory +0909.5280 Number Theory +0909.5282 Differential Geometry +0909.5296 Algebraic Geometry +0909.5297 Adaptation and Self-Organizing Systems +0909.5305 Optics +0909.5309 Phenomenology +0909.5310 Information Theory +0909.5319 Algebraic Geometry +0909.5324 Representation Theory +0909.5329 Commutative Algebra +0909.5334 Combinatorics +0909.5335 Superconductivity +0909.5342 Statistics Theory +0909.5352 Algebraic Geometry +0909.5353 Phenomenology +0909.5354 Differential Geometry +0909.5358 Algebraic Geometry +0909.5360 Phenomenology +0909.5361 Complex Variables +0909.5363 General Physics +0909.5365 Computer Science and Game Theory +0909.5366 Statistics Theory +0909.5376 Algebraic Geometry +0909.5377 +0909.5384 +0909.5388 Computational Geometry +0909.5389 Pricing of Securities +0909.5390 Methodology +0909.5394 Theory +0909.5396 +0909.5398 Algebraic Geometry +0909.5401 +0909.5409 Solar and Stellar Astrophysics +0909.5411 Differential Geometry +0909.5415 Solar and Stellar Astrophysics +0909.5419 Differential Geometry +0909.5422 Machine Learning +math/0608600 Probability +math/0702433 Dynamical Systems +quant-ph/0604172 +quant-ph/0701175 +0807.4044 Strongly Correlated Electrons +0810.0745 Computer Science and Game Theory +0810.3657 Mesoscale and Nanoscale Physics +0810.5633 Information Theory +0812.1584 Representation Theory +0901.0571 Mesoscale and Nanoscale Physics +0901.1379 Classical Analysis and ODEs +0901.2862 Combinatorics +0902.2425 Networking and Internet Architecture +0902.3351 Other Condensed Matter +0905.3593 Astrophysics of Galaxies +0705.0297 General Topology +0705.1266 Soft Condensed Matter +0706.3866 Mesoscale and Nanoscale Physics +0709.3039 Probability +0710.0493 Rings and Algebras +0710.1645 Algebraic Geometry +0712.2098 Materials Science +0712.2131 Superconductivity +0712.3371 +0712.3884 +0801.0302 Mesoscale and Nanoscale Physics +0801.0708 Mesoscale and Nanoscale Physics +0801.4425 Classical Analysis and ODEs +0801.4447 Soft Condensed Matter +0802.1142 +0803.1711 Strongly Correlated Electrons +0803.4201 Quantum Algebra +0804.0035 Mesoscale and Nanoscale Physics +0804.2552 Algebraic Geometry +0805.3904 Strongly Correlated Electrons +0806.4505 Statistical Mechanics +0807.0304 Soft Condensed Matter +0807.2529 +0807.2756 Biological Physics +0808.0567 General Physics +0808.2024 Analysis of PDEs +0808.2164 Strongly Correlated Electrons +0809.0579 +0809.3173 +0809.4775 Analysis of PDEs +0810.0822 +0810.3068 Superconductivity +0810.3893 +0811.0546 Chemical Physics +0811.0982 +0812.0959 +0812.2945 Optics +0812.3880 Strongly Correlated Electrons +0901.0544 Phenomenology +0901.0962 Solar and Stellar Astrophysics +0901.1740 Soft Condensed Matter +0901.3505 +0901.4284 Astrophysics of Galaxies +0902.0611 +0902.0676 Strongly Correlated Electrons +0902.1766 Cosmology and Nongalactic Astrophysics +0902.1978 Cosmology and Nongalactic Astrophysics +0902.2635 Atomic and Molecular Clusters +0902.3365 Cosmology and Nongalactic Astrophysics +0902.4390 Astrophysics of Galaxies +0902.4691 High Energy Astrophysical Phenomena +0903.0087 High Energy Astrophysical Phenomena +0903.0517 Algebraic Geometry +0903.0634 Cosmology and Nongalactic Astrophysics +0903.0760 Representation Theory +0903.0978 Astrophysics of Galaxies +0903.1050 Statistical Mechanics +0903.2207 Programming Languages +0903.3404 Cosmology and Nongalactic Astrophysics +0903.3678 Category Theory +0903.3774 Complex Variables +0903.3956 Chaotic Dynamics +0903.3959 Quantum Algebra +0903.3963 Cosmology and Nongalactic Astrophysics +0903.3971 Instrumentation and Methods for Astrophysics +0903.3992 Superconductivity +0903.3995 Multimedia +0903.3998 Materials Science +0903.4000 Numerical Analysis +0903.4001 Experiment +0903.4004 Analysis of PDEs +0903.4005 High Energy Astrophysical Phenomena +0903.4011 Cosmology and Nongalactic Astrophysics +0903.4013 +0903.4025 Algebraic Geometry +0903.4027 Genomics +0903.4032 Other Condensed Matter +0903.4033 Other Condensed Matter +0903.4035 Information Retrieval +0903.4036 Information Theory +0903.4038 Superconductivity +0903.4043 Number Theory +0903.4045 Differential Geometry +0903.4050 Combinatorics +0903.4052 Classical Analysis and ODEs +0903.4053 Mathematical Software +0903.4062 Probability +0903.4067 Quantum Algebra +0903.4069 Spectral Theory +0903.4071 Physics and Society +0903.4074 Differential Geometry +0903.4076 Other Condensed Matter +0903.4077 Group Theory +0903.4081 Complex Variables +0903.4082 Complex Variables +0903.4087 Complex Variables +0903.4095 Solar and Stellar Astrophysics +0903.4100 Distributed, Parallel, and Cluster Computing +0903.4101 Computational Complexity +0903.4102 Exactly Solvable and Integrable Systems +0903.4110 Biomolecules +0903.4113 Networking and Internet Architecture +0903.4120 High Energy Astrophysical Phenomena +0903.4125 Algebraic Geometry +0903.4127 Functional Analysis +0903.4128 Information Theory +0903.4131 Other Quantitative Biology +0903.4133 Operator Algebras +0903.4137 Group Theory +0903.4143 +0903.4149 Pattern Formation and Solitons +0903.4154 Solar and Stellar Astrophysics +0903.4162 Optimization and Control +0903.4163 +0903.4168 Neurons and Cognition +0903.4169 Statistical Mechanics +cond-mat/0601443 Mesoscale and Nanoscale Physics +cond-mat/0703629 Superconductivity +math/0509577 Algebraic Topology +math/0610343 Dynamical Systems +math/0612501 Analysis of PDEs +math/0701532 Algebraic Geometry +physics/0610214 Atomic Physics +quant-ph/0410222 +quant-ph/0606140 +0705.1195 Phenomenology +0706.3475 General Physics +0708.0204 Materials Science +0708.3287 Quantum Algebra +0709.2987 Differential Geometry +0710.0465 +0711.0479 Mesoscale and Nanoscale Physics +0711.4376 Logic +0712.0125 Combinatorics +0712.0965 +0801.0086 Commutative Algebra +0801.0259 +0804.0511 +0804.3557 Phenomenology +0804.4261 +0809.0643 Algebraic Geometry +0809.3201 Algebraic Geometry +0810.4164 Algebraic Topology +0810.4543 Theory +0811.1801 +0811.3737 Phenomenology +0812.0914 Materials Science +0812.1490 Theory +0812.1710 Instrumentation and Detectors +0812.2592 Number Theory +0812.3937 Applications +0901.0557 Phenomenology +0901.0791 +0901.0851 +0901.1289 Artificial Intelligence +0901.1670 Theory +0901.1918 Operator Algebras +0901.2388 Solar and Stellar Astrophysics +0902.0357 Phenomenology +0902.0434 +0902.1239 +0902.1643 Analysis of PDEs +0902.2383 +0902.4435 +0903.2930 Phenomenology +0903.3319 High Energy Astrophysical Phenomena +0903.3369 +0903.5322 Cosmology and Nongalactic Astrophysics +0904.0261 High Energy Astrophysical Phenomena +0904.0419 +0904.1130 +0904.1174 +0904.1294 Theory +0904.1708 Cosmology and Nongalactic Astrophysics +0904.2156 Theory +0904.2185 Cosmology and Nongalactic Astrophysics +0904.2219 High Energy Astrophysical Phenomena +0904.2234 Theory +0904.2574 Solar and Stellar Astrophysics +0904.3172 Phenomenology +0904.4502 Cosmology and Nongalactic Astrophysics +0904.4703 Cosmology and Nongalactic Astrophysics +0905.0365 Mesoscale and Nanoscale Physics +0905.1273 Optics +0905.1953 Cosmology and Nongalactic Astrophysics +0905.2237 Cosmology and Nongalactic Astrophysics +0905.2307 Cosmology and Nongalactic Astrophysics +0905.2393 Theory +0905.3374 Geometric Topology +0906.0852 Theory +0906.1456 +0906.1735 High Energy Astrophysical Phenomena +0906.1813 Cosmology and Nongalactic Astrophysics +0906.4058 Cosmology and Nongalactic Astrophysics +0906.5160 Experiment +0906.5317 Astrophysics of Galaxies +0906.5493 Solar and Stellar Astrophysics +0907.0282 Cosmology and Nongalactic Astrophysics +0907.1086 Astrophysics of Galaxies +0907.1800 Superconductivity +0907.1969 Cosmology and Nongalactic Astrophysics +0907.3130 Analysis of PDEs +0907.3311 +0907.3936 +0907.5489 Networking and Internet Architecture +0908.0449 Physics and Society +0908.1407 Information Theory +0908.1688 Algebraic Geometry +0908.1732 Cosmology and Nongalactic Astrophysics +0908.1966 Information Theory +0908.1967 Combinatorics +0908.1973 Cosmology and Nongalactic Astrophysics +0908.1976 Representation Theory +0908.1979 Experiment +0908.1985 Representation Theory +0908.1988 Representation Theory +0908.1997 Instrumentation and Methods for Astrophysics +0908.1999 Phenomenology +0908.2002 General Physics +0908.2007 Networking and Internet Architecture +0908.2009 Algebraic Geometry +0908.2010 Algebraic Geometry +0908.2011 Superconductivity +0908.2013 Optimization and Control +0908.2017 Combinatorics +0908.2023 Geometric Topology +0908.2025 Biomolecules +0908.2028 Astrophysics of Galaxies +0908.2030 Analysis of PDEs +0908.2032 Computers and Society +0908.2035 +0908.2044 Differential Geometry +0908.2047 Number Theory +0908.2050 Artificial Intelligence +0908.2053 Applications +0908.2062 Applications +0908.2063 General Physics +0908.2066 Applications +0908.2069 Applications +0908.2073 Earth and Planetary Astrophysics +0908.2083 Formal Languages and Automata Theory +0908.2085 +0908.2088 Probability +0908.2089 Combinatorics +0908.2091 +0908.2093 Chemical Physics +0908.2095 Functional Analysis +0908.2109 Astrophysics of Galaxies +0908.2111 Astrophysics of Galaxies +0908.2115 Materials Science +0908.2117 Information Theory +0908.2118 Quantum Algebra +0908.2122 Computational Complexity +astro-ph/0101135 +astro-ph/0207221 +astro-ph/0601578 +astro-ph/0602171 +astro-ph/9603006 +astro-ph/9702129 +hep-ph/9612279 Phenomenology +hep-ph/9707483 Phenomenology +hep-ph/9802259 Phenomenology +physics/0008004 Accelerator Physics +0710.4184 Superconductivity +0711.1402 Quantum Algebra +0806.2903 Quantum Algebra +0807.1135 Number Theory +0809.4530 Artificial Intelligence +0810.2814 Superconductivity +0902.1993 Statistical Mechanics +0903.0774 +0904.2769 Software Engineering +0904.3153 Group Theory +0905.0023 Superconductivity +math/0703225 Algebraic Geometry +math/0703621 Analysis of PDEs +math/0703659 Analysis of PDEs +0704.1717 Representation Theory +0710.5487 Differential Geometry +0801.0482 +0801.1315 Theory +0801.1389 Physics and Society +0802.0266 Operator Algebras +0802.3838 +0803.1312 Strongly Correlated Electrons +0805.4237 +0808.2129 +0808.3035 Analysis of PDEs +0808.3676 Combinatorics +0809.2709 Statistical Mechanics +0810.1653 +0810.3043 Strongly Correlated Electrons +0810.4987 Materials Science +0811.4692 Materials Science +0812.3064 Soft Condensed Matter +0812.4059 Other Condensed Matter +0901.0211 Materials Science +0902.0888 Physics and Society +0902.1150 Mesoscale and Nanoscale Physics +0903.1271 Phenomenology +0903.3065 Symplectic Geometry +0903.3611 +0903.4366 Logic in Computer Science +0903.4674 +0904.2207 Methodology +0904.2356 Statistical Mechanics +0904.2781 +0904.3940 Physics and Society +0904.4074 Risk Management +0904.4075 Risk Management +0904.4627 Mesoscale and Nanoscale Physics +0905.1965 Instrumentation and Methods for Astrophysics +0905.3446 Probability +0906.0030 Materials Science +0906.1839 Combinatorics +0907.1490 Superconductivity +0907.1572 Probability +0907.1762 Phenomenology +0907.2595 Combinatorics +0907.3039 Phenomenology +0907.3046 Fluid Dynamics +0907.3302 Number Theory +0907.3434 Statistical Mechanics +0907.4028 Theory +0907.4151 Algebraic Geometry +0907.4480 Mesoscale and Nanoscale Physics +0907.4632 Experiment +0907.4751 Theory +0907.5140 Physics and Society +0907.5207 Cosmology and Nongalactic Astrophysics +0907.5210 Analysis of PDEs +0907.5226 Cryptography and Security +0907.5230 Analysis of PDEs +0907.5231 Numerical Analysis +0907.5233 Networking and Internet Architecture +0907.5240 +0907.5245 Solar and Stellar Astrophysics +0907.5246 Theory +0907.5248 Instrumentation and Methods for Astrophysics +0907.5249 Popular Physics +0907.5251 Materials Science +0907.5261 Number Theory +0907.5263 Number Theory +0907.5265 +0907.5268 Differential Geometry +0907.5269 Data Structures and Algorithms +0907.5279 Disordered Systems and Neural Networks +0907.5284 +0907.5285 Functional Analysis +0907.5287 Information Theory +0907.5288 +0907.5293 Number Theory +0907.5294 +0907.5301 Cosmology and Nongalactic Astrophysics +0907.5302 Combinatorics +0907.5303 Classical Physics +0907.5304 +0907.5305 Probability +0907.5312 Combinatorics +0907.5315 Mesoscale and Nanoscale Physics +0907.5319 Strongly Correlated Electrons +0907.5320 General Physics +0907.5322 Statistics Theory +0907.5326 Pattern Formation and Solitons +0907.5328 Plasma Physics +0907.5329 Materials Science +0907.5335 Materials Science +0907.5336 Theory +0907.5340 +0907.5353 Analysis of PDEs +0907.5356 +0907.5362 +0907.5363 Dynamical Systems +0907.5364 Dynamical Systems +0907.5365 Instrumentation and Methods for Astrophysics +0907.5372 Data Structures and Algorithms +0907.5381 Algebraic Geometry +0907.5382 Dynamical Systems +0907.5388 Information Theory +0907.5401 Geometric Topology +0907.5410 Algebraic Topology +math/0401160 Algebraic Topology +math/0504088 Functional Analysis +math/0701939 Analysis of PDEs +math/0702046 Group Theory +math/0702394 Number Theory +physics/0306157 Plasma Physics +physics/0611289 Chemical Physics +0708.0587 +0708.1116 Computational Engineering, Finance, and Science +0709.2414 +0710.0279 Algebraic Geometry +0710.0676 Number Theory +0710.4127 Molecular Networks +0711.2268 +0711.2800 Combinatorics +0712.0688 Probability +0712.4085 +0801.1208 Information Theory +0801.2998 Phenomenology +0801.4296 Statistical Mechanics +0802.3235 Neural and Evolutionary Computing +0803.2052 Number Theory +0803.2680 +0806.0596 Number Theory +0806.0867 Quantum Algebra +0810.1064 Number Theory +0810.3822 Plasma Physics +0810.5773 Phenomenology +0811.0477 Phenomenology +0811.0972 Materials Science +0811.2251 Classical Analysis and ODEs +0811.3075 Probability +0811.4726 Commutative Algebra +0812.3441 Spectral Theory +0812.3695 +0812.4390 +0812.4970 Mesoscale and Nanoscale Physics +0901.2393 Spectral Theory +0902.0387 +0902.1250 Algebraic Topology +0902.1804 Superconductivity +0902.2866 Computers and Society +0903.0146 Other Condensed Matter +0903.2414 Strongly Correlated Electrons +0903.2622 Theory +0903.3536 Superconductivity +0903.3894 +0903.4319 Soft Condensed Matter +0903.5299 Differential Geometry +0904.0450 Group Theory +0904.1618 +0904.1982 Strongly Correlated Electrons +0904.2672 Combinatorics +0904.4384 Plasma Physics +0905.3164 Phenomenology +0905.4945 +0906.1736 Phenomenology +0906.4309 Symplectic Geometry +0906.4843 Differential Geometry +0906.4950 Soft Condensed Matter +0907.0011 Dynamical Systems +0907.0023 Analysis of PDEs +0907.0027 Physics and Society +0907.0031 Representation Theory +0907.0039 Phenomenology +0907.0041 General Physics +0907.0044 Combinatorics +0907.0055 Dynamical Systems +0907.0061 Category Theory +0907.0067 Artificial Intelligence +0907.0073 Biomolecules +0907.0075 Neural and Evolutionary Computing +0907.0088 Computational Complexity +0907.0089 Quantum Algebra +0907.0103 Fluid Dynamics +0907.0104 Probability +0907.0105 Algebraic Geometry +0907.0115 +0907.0120 Materials Science +0907.0128 Representation Theory +0907.0131 Materials Science +0907.0135 Algebraic Geometry +0907.0141 Number Theory +0907.0146 Experiment +0907.0155 Mesoscale and Nanoscale Physics +0907.0156 Classical Analysis and ODEs +0907.0157 High Energy Astrophysical Phenomena +0907.0158 Number Theory +0907.0160 Analysis of PDEs +0907.0161 Number Theory +0907.0162 Number Theory +0907.0163 Number Theory +0907.0164 Quantitative Methods +0907.0167 +0907.0169 Instrumentation and Detectors +0907.0175 Combinatorics +0907.0178 General Physics +0907.0180 Astrophysics of Galaxies +0907.0183 High Energy Astrophysical Phenomena +0907.0184 Phenomenology +0907.0190 Phenomenology +0907.0193 Instrumentation and Methods for Astrophysics +0907.0194 High Energy Astrophysical Phenomena +0907.0198 Optics +0907.0199 Applications +0907.0204 Computer Vision and Pattern Recognition +0907.0208 Symplectic Geometry +0907.0210 Cosmology and Nongalactic Astrophysics +0907.0214 Fluid Dynamics +0907.0223 Fluid Dynamics +0907.0224 Quantum Algebra +0907.0225 Superconductivity +0907.0229 Neural and Evolutionary Computing +gr-qc/9911053 +math/0012244 Representation Theory +math/0105084 Algebraic Geometry +math/0301252 Number Theory +math/0302054 Algebraic Geometry +math/0302055 Algebraic Geometry +math/0303332 Number Theory +math/0304448 Quantum Algebra +math/0305236 Algebraic Geometry +math/0401029 Differential Geometry +math/0409206 Quantum Algebra +math/0602154 Number Theory +math/0609456 Algebraic Geometry +math/0612093 Number Theory +math/0701397 Number Theory +quant-ph/0701221 +quant-ph/0702160 +0801.0805 Number Theory +0802.1075 +0803.0844 Trading and Market Microstructure +0803.3815 Quantum Algebra +0808.3384 Phenomenology +0809.4412 Group Theory +0809.5204 Information Theory +0810.1907 Materials Science +0812.2748 Materials Science +0812.4282 Other Condensed Matter +0901.0354 Number Theory +0901.0695 Functional Analysis +0902.0679 Cosmology and Nongalactic Astrophysics +0903.1697 Strongly Correlated Electrons +0903.1893 +0903.2095 Soft Condensed Matter +0903.4185 Theory +0903.4566 Statistical Mechanics +0903.4576 Classical Analysis and ODEs +0903.5100 +0904.0173 Solar and Stellar Astrophysics +0904.1505 Probability +0905.0001 High Energy Astrophysical Phenomena +0905.2945 Materials Science +0905.4060 Logic in Computer Science +0906.0370 Theory +0906.0746 Mesoscale and Nanoscale Physics +0906.1371 Mesoscale and Nanoscale Physics +0906.2589 Algebraic Topology +0906.4457 Statistical Mechanics +0906.5042 Probability +0907.0896 Algebraic Geometry +0907.4857 Cosmology and Nongalactic Astrophysics +0909.2832 Biomolecules +0909.5259 Physics Education +0910.0581 Superconductivity +0910.0697 Algebraic Geometry +0910.2023 +0910.3091 General Topology +0910.3476 Algebraic Geometry +0911.0006 Instrumentation and Detectors +0911.0009 Earth and Planetary Astrophysics +0911.0013 Physics and Society +0911.0018 Algebraic Topology +0911.0025 Number Theory +0911.0028 Other Computer Science +0911.0030 Rings and Algebras +0911.0032 +0911.0036 Superconductivity +0911.0047 Methodology +0911.0048 Materials Science +0911.0050 Information Retrieval +0911.0051 Computational Physics +0911.0052 +0911.0058 History and Philosophy of Physics +0911.0062 +0911.0065 Numerical Analysis +0911.0069 Representation Theory +0911.0070 Complex Variables +0911.0071 +0911.0072 Superconductivity +0911.0074 Functional Analysis +0911.0075 Theory +0911.0079 Physics and Society +0911.0083 +0911.0087 Probability +0911.0089 Information Theory +0911.0094 +0911.0098 Rings and Algebras +0911.0099 Plasma Physics +0911.0104 Combinatorics +0911.0105 Logic in Computer Science +0911.0112 General Mathematics +0911.0115 +0911.0120 High Energy Astrophysical Phenomena +0911.0126 Combinatorics +0911.0128 Instrumentation and Detectors +0911.0132 Instrumentation and Methods for Astrophysics +0911.0136 Software Engineering +0911.0140 Combinatorics +0911.0141 Networking and Internet Architecture +0911.0143 Information Theory +0911.0147 +0911.0151 Other Computer Science +0911.0152 Probability +0911.0155 +0911.0156 Quantum Gases +0911.0157 Quantum Gases +0911.0159 Experiment +0911.0162 Probability +0911.0163 Probability +0911.0164 Probability +0911.0165 Probability +0911.0168 Probability +0911.0170 Probability +0911.0174 Data Structures and Algorithms +0911.0180 Phenomenology +0911.0183 Information Theory +0911.0186 Group Theory +0911.0188 Quantitative Methods +0911.0190 High Energy Astrophysical Phenomena +0911.0194 +0911.0195 Combinatorics +0911.0199 Theory +0911.0201 +0911.0210 Mesoscale and Nanoscale Physics +0911.0215 Genomics +0911.0218 +0911.0221 Probability +0911.0224 Materials Science +0911.0225 Learning +0911.0227 Theory +0911.0230 Computation +0911.0235 Experiment +0911.0242 Quantum Gases +0911.0246 Phenomenology +0911.0248 Phenomenology +0911.0253 Mesoscale and Nanoscale Physics +0911.0263 Strongly Correlated Electrons +0911.0267 Popular Physics +0911.0276 +0911.0279 Combinatorics +0911.0281 Probability +0911.0285 Computers and Society +0911.0292 Mesoscale and Nanoscale Physics +0911.0305 Probability +0911.0306 Differential Geometry +0911.0308 Analysis of PDEs +0911.0310 Computers and Society +0911.0317 Analysis of PDEs +0911.0331 Probability +0911.0344 Digital Libraries +0911.0367 Metric Geometry +0911.0372 Differential Geometry +0911.0374 Cosmology and Nongalactic Astrophysics +0911.0380 Differential Geometry +0911.0396 Mesoscale and Nanoscale Physics +0911.0397 Data Structures and Algorithms +0911.0399 Multimedia +0911.0402 Cryptography and Security +0911.0403 +0911.0405 Cryptography and Security +astro-ph/0610242 +cond-mat/0603583 Disordered Systems and Neural Networks +physics/0102044 Biological Physics +0704.3763 +0706.0304 +0706.0394 +0708.4168 Phenomenology +0801.3141 +0801.3287 Theory +0803.4319 +0805.1060 Phenomenology +0805.4414 +0806.1026 Theory +0807.0556 Lattice +0807.1126 Phenomenology +0807.2942 Soft Condensed Matter +0807.3356 Quantum Algebra +0807.4437 +0808.2199 Theory +0808.2908 Mesoscale and Nanoscale Physics +0808.2961 Theory +0809.0363 +0809.0889 Theory +0809.1429 Phenomenology +0809.2822 Theory +0809.3448 +0809.5062 Theory +0810.0909 Phenomenology +0810.1021 Phenomenology +0810.1400 +0810.3267 +0810.5683 Theory +0811.1960 Phenomenology +0811.2997 +0811.3570 Plasma Physics +0812.0013 +0812.0121 +0812.0668 Phenomenology +0812.1348 +0812.2843 +0812.3135 Phenomenology +0812.3888 Phenomenology +0812.4392 Phenomenology +0812.4760 +0901.0917 Cosmology and Nongalactic Astrophysics +0901.1125 +0901.1569 +0901.1616 Theory +0901.3414 Phenomenology +0901.4345 Phenomenology +0901.4348 Experiment +0902.0364 Strongly Correlated Electrons +0902.0402 +0902.1295 Phenomenology +0902.1424 Soft Condensed Matter +0902.1683 High Energy Astrophysical Phenomena +0902.1739 Phenomenology +0902.2194 Theory +0902.2295 Phenomenology +0902.3100 Lattice +0902.3250 Phenomenology +0902.3754 Phenomenology +0902.4624 Phenomenology +0902.4669 +0903.0413 High Energy Astrophysical Phenomena +0903.0732 Theory +0903.1116 Cosmology and Nongalactic Astrophysics +0903.1215 +0903.1459 Theory +0903.1541 Cosmology and Nongalactic Astrophysics +0903.1677 Cosmology and Nongalactic Astrophysics +0903.1794 Phenomenology +0903.1889 Phenomenology +0903.2079 Theory +0903.2255 +0903.2314 Lattice +0903.2329 Phenomenology +0903.2364 Phenomenology +0903.3073 Phenomenology +0903.3181 +0903.3629 Phenomenology +0903.3641 Chaotic Dynamics +0903.3742 Symplectic Geometry +0903.4160 +0903.4771 +0903.5506 Phenomenology +0904.0278 +0904.0345 Cosmology and Nongalactic Astrophysics +0904.0770 Experiment +0904.0969 Phenomenology +0904.1375 Cosmology and Nongalactic Astrophysics +0904.1471 +0904.1583 Cosmology and Nongalactic Astrophysics +0904.1589 Cosmology and Nongalactic Astrophysics +0904.2005 Phenomenology +0904.2069 Phenomenology +0904.2165 Theory +0904.2240 +0904.3064 Theory +0904.3152 +0904.3262 Mesoscale and Nanoscale Physics +0904.3410 +0904.3454 Mesoscale and Nanoscale Physics +0904.3866 Phenomenology +0904.4007 Cosmology and Nongalactic Astrophysics +0904.4295 +0904.4474 Superconductivity +0904.4873 +0905.0122 Phenomenology +0905.0237 +0905.0709 Theory +0905.0797 Cosmology and Nongalactic Astrophysics +0905.0908 Cosmology and Nongalactic Astrophysics +0905.0935 Theory +0905.1201 Phenomenology +0905.1730 Lattice +0905.1759 Theory +0905.1764 Theory +0905.2500 +0905.2710 Phenomenology +0905.3452 +0905.3883 Superconductivity +0905.4095 +0905.4564 +0905.4943 +0906.0179 +0906.0220 Geometric Topology +0906.0362 Phenomenology +0906.0726 Phenomenology +0906.0783 Theory +0906.0882 Phenomenology +0906.0926 +0906.0939 +0906.1120 +0906.1366 +0906.1611 Phenomenology +0906.1739 Phenomenology +0906.1751 Phenomenology +0906.2022 Phenomenology +0906.2633 Phenomenology +0906.2936 Phenomenology +0906.3103 Phenomenology +0906.3731 High Energy Astrophysical Phenomena +0906.4274 +0906.4338 +0906.4351 Mesoscale and Nanoscale Physics +0907.0099 Phenomenology +0907.0136 Geometric Topology +0907.0455 Physics and Society +0907.0517 +0907.0671 +0907.0685 Theory +0907.0707 Cosmology and Nongalactic Astrophysics +0907.1052 Phenomenology +0907.1252 +0907.1425 Theory +0907.1528 Mesoscale and Nanoscale Physics +0907.1588 +0907.1931 +0907.2165 Data Structures and Algorithms +0907.2439 Theory +0907.2670 Strongly Correlated Electrons +0907.2779 Quantum Gases +0907.3058 Strongly Correlated Electrons +0907.3075 High Energy Astrophysical Phenomena +0907.3298 Theory +0907.3364 +0907.3400 Phenomenology +0907.3510 Theory +0907.3582 +0907.3796 Theory +0907.3799 Theory +0907.3808 Phenomenology +0907.3809 Instrumentation and Detectors +0907.3845 +0907.3866 Phenomenology +0907.4008 Phenomenology +0907.4132 +0907.4138 Lattice +0907.4186 Phenomenology +0907.4609 Phenomenology +0907.4746 Phenomenology +0907.5045 +0907.5366 Theory +0907.5387 Phenomenology +0907.5537 Solar and Stellar Astrophysics +0908.0152 Phenomenology +0908.0230 Biomolecules +0908.0495 Phenomenology +0908.0822 Phenomenology +0908.0987 Theory +0908.1019 Theory +0908.1110 Theory +0908.1123 +0908.1130 Theory +0908.1136 Theory +0908.1174 Phenomenology +0908.1206 Instrumentation and Detectors +0908.1272 Theory +0908.1281 Strongly Correlated Electrons +0908.1286 Phenomenology +0908.1289 Experiment +0908.1332 Phenomenology +0908.1364 Theory +0908.1521 +0908.1523 Instrumentation and Detectors +0908.1535 +0908.1552 Theory +0908.1623 Biological Physics +0908.1711 Theory +0908.1744 Chemical Physics +0908.2255 Superconductivity +0908.2317 High Energy Astrophysical Phenomena +0908.2579 Machine Learning +0908.2899 Geometric Topology +0908.3023 +0908.4441 +0908.4512 Analysis of PDEs +0909.0007 Cosmology and Nongalactic Astrophysics +0909.0042 Phenomenology +0909.1414 +0909.1625 Strongly Correlated Electrons +0909.3469 +0909.3860 Optimization and Control +0909.4495 +0910.0240 High Energy Astrophysical Phenomena +0910.0325 +0910.0498 +0910.0622 Mesoscale and Nanoscale Physics +0910.1394 Statistical Mechanics +0910.1441 Cosmology and Nongalactic Astrophysics +0910.2391 +0910.3012 General Mathematics +0910.3744 Analysis of PDEs +0910.4002 Analysis of PDEs +0910.4174 Theory +0910.4338 +0910.4650 Theory +0910.4832 +0910.4873 Theory +0910.5228 Number Theory +0910.5229 Representation Theory +0910.5238 Materials Science +0910.5240 Populations and Evolution +0910.5247 Analysis of PDEs +0910.5261 Information Theory +0910.5264 Optimization and Control +0910.5271 Phenomenology +0910.5277 +0910.5278 Dynamical Systems +0910.5279 Physics Education +0910.5286 Numerical Analysis +0910.5289 Plasma Physics +0910.5312 Cosmology and Nongalactic Astrophysics +0910.5316 Analysis of PDEs +0910.5317 Analysis of PDEs +0910.5319 Chaotic Dynamics +0910.5320 Phenomenology +0910.5322 Analysis of PDEs +0910.5324 +0910.5325 High Energy Astrophysical Phenomena +0910.5327 Algebraic Geometry +0910.5328 High Energy Astrophysical Phenomena +0910.5329 +0910.5331 Complex Variables +0910.5334 Phenomenology +0910.5339 Information Theory +0910.5340 Soft Condensed Matter +0910.5341 Mesoscale and Nanoscale Physics +0910.5342 Materials Science +0910.5343 Dynamical Systems +0910.5346 Mesoscale and Nanoscale Physics +0910.5349 Statistical Mechanics +0910.5363 Probability +0910.5364 +0910.5370 Cryptography and Security +0910.5371 Biomolecules +0910.5374 Rings and Algebras +0910.5381 Rings and Algebras +0910.5383 Algebraic Geometry +0910.5385 +0910.5386 Human-Computer Interaction +0910.5387 Quantum Algebra +0910.5396 Combinatorics +0910.5403 Computational Physics +0910.5404 Operator Algebras +0910.5406 +0910.5410 Computation and Language +0910.5413 +0910.5416 Functional Analysis +0910.5417 Experiment +0910.5419 Computation and Language +0910.5426 Computer Science and Game Theory +0910.5434 Numerical Analysis +0910.5440 Symplectic Geometry +0910.5446 Classical Analysis and ODEs +0910.5447 Statistics Theory +0910.5449 Applications +0910.5452 Materials Science +0910.5453 Differential Geometry +0910.5455 Algebraic Geometry +0910.5456 Complex Variables +0910.5461 Learning +0910.5462 Cosmology and Nongalactic Astrophysics +0910.5463 +0910.5465 Algebraic Geometry +astro-ph/0407239 +cond-mat/0005034 Statistical Mechanics +cond-mat/0612482 Statistical Mechanics +hep-ph/0307303 Phenomenology +hep-ph/0410231 Phenomenology +hep-ph/9308325 Phenomenology +hep-ph/9602381 Phenomenology +hep-ph/9703212 Phenomenology +hep-th/0409255 Theory +hep-th/0503135 Theory +hep-th/9204012 Theory +math/0606213 Representation Theory +nucl-ex/0702050 +physics/0408111 General Physics +quant-ph/0305044 +quant-ph/0310100 +quant-ph/0407037 +quant-ph/0407038 +quant-ph/0505098 +quant-ph/0608157 +quant-ph/0703022 +0704.1139 Statistics Theory +0705.4556 Representation Theory +0706.4434 Strongly Correlated Electrons +0707.0277 Strongly Correlated Electrons +0708.1725 Human-Computer Interaction +0708.2249 Lattice +0709.0335 Phenomenology +0801.1132 +0802.0393 +0804.0223 +0804.0327 Statistical Mechanics +0805.1535 +0805.2924 +0805.3568 Phenomenology +0806.0552 +0807.4116 Representation Theory +0807.4525 Chemical Physics +0808.1895 +0809.3610 Soft Condensed Matter +0809.3943 Lattice +0809.4604 +0809.5083 Experiment +0810.0735 Analysis of PDEs +0810.1598 Phenomenology +0810.2774 +0811.0771 Algebraic Topology +0811.2584 Analysis of PDEs +0812.3203 Phenomenology +0812.4648 Machine Learning +0901.0209 Phenomenology +0901.0741 Phenomenology +0901.1732 Information Theory +0901.1737 Information Theory +0902.0928 +0902.1247 Theory +0902.2066 Theory +0902.2435 Phenomenology +0902.3934 +0902.4211 Numerical Analysis +0902.4495 Probability +0902.4831 Phenomenology +0903.0434 Phenomenology +0903.0756 Cosmology and Nongalactic Astrophysics +0903.1036 +0903.1159 +0903.2999 Physics and Society +0903.3030 Statistical Mechanics +0903.3375 Soft Condensed Matter +0903.3869 Statistical Mechanics +0903.4916 Cosmology and Nongalactic Astrophysics +0903.4971 Theory +0903.5080 +0903.5228 Phenomenology +0903.5369 +0904.0421 +0904.0914 +0904.1472 +0904.2143 +0904.3645 +0904.3734 Materials Science +0904.3840 +0904.3862 +0905.0450 +0905.0540 Theory +0905.0608 Theory +0905.0620 Phenomenology +0905.0645 Theory +0905.1356 Phenomenology +0905.3090 Mesoscale and Nanoscale Physics +0905.3206 +0905.3335 +0905.3597 Chaotic Dynamics +0905.3844 Solar and Stellar Astrophysics +0905.4323 +0905.4522 Mesoscale and Nanoscale Physics +0905.4595 +0906.1250 +0906.2085 Cosmology and Nongalactic Astrophysics +0906.2213 Mesoscale and Nanoscale Physics +0906.3549 +0907.0172 Geometric Topology +0907.0531 +0907.1980 Spectral Theory +0907.2144 Optics +0907.3205 Exactly Solvable and Integrable Systems +0908.0399 Exactly Solvable and Integrable Systems +0908.0784 +0908.1614 Strongly Correlated Electrons +0908.1682 +0908.1948 Information Theory +0908.2166 Number Theory +0908.2527 Accelerator Physics +0908.2633 Strongly Correlated Electrons +0908.2638 +0908.2656 Computer Vision and Pattern Recognition +0908.2660 Astrophysics of Galaxies +0908.2661 Multiagent Systems +0908.2662 General Physics +0908.2670 Strongly Correlated Electrons +0908.2682 Differential Geometry +0908.2683 Optimization and Control +0908.2684 Exactly Solvable and Integrable Systems +0908.2685 Solar and Stellar Astrophysics +0908.2692 Physics and Society +0908.2697 Geometric Topology +0908.2700 Classical Physics +0908.2706 +0908.2712 Classical Physics +0908.2718 Classical Physics +0908.2719 Solar and Stellar Astrophysics +0908.2724 Machine Learning +0908.2725 Astrophysics of Galaxies +0908.2729 Differential Geometry +0908.2739 Representation Theory +0908.2742 Cosmology and Nongalactic Astrophysics +0908.2744 Information Theory +0908.2747 General Physics +0908.2750 Combinatorics +0908.2752 Numerical Analysis +0908.2765 Combinatorics +0908.2767 Superconductivity +0908.2769 Biological Physics +0908.2772 History and Philosophy of Physics +0908.2780 +0908.2781 Quantum Gases +0908.2784 Popular Physics +0908.2787 +0908.2795 Geometric Topology +0908.2804 Applications +astro-ph/0309374 +astro-ph/0601153 +cond-mat/0703096 Soft Condensed Matter +math/0307157 Differential Geometry +math/0505043 Algebraic Geometry +0709.1763 Statistical Mechanics +0801.2149 Number Theory +0804.3686 +0805.0193 Differential Geometry +0805.1770 Statistical Mechanics +0807.3197 +0808.2026 Superconductivity +0808.2633 Physics and Society +0809.0667 Soft Condensed Matter +0809.1425 Mesoscale and Nanoscale Physics +0812.2546 Networking and Internet Architecture +0903.1193 General Physics +0903.1343 Analysis of PDEs +0903.3635 Atomic Physics +0904.0818 Fluid Dynamics +0904.2269 Statistical Mechanics +0904.3917 Mesoscale and Nanoscale Physics +0906.2848 Number Theory +0906.3484 Accelerator Physics +cond-mat/0512489 Statistical Mechanics +cond-mat/0606456 Materials Science +math/0703413 Algebraic Geometry +0709.3934 Optics +0710.2913 Commutative Algebra +0712.0204 Optics +0803.0061 Phenomenology +0803.1068 Optics +0803.2180 Symplectic Geometry +0804.4853 Algebraic Geometry +0810.2751 Operator Algebras +0810.3258 Experiment +0810.4138 Phenomenology +0811.0609 Mesoscale and Nanoscale Physics +0812.2622 Exactly Solvable and Integrable Systems +0812.4614 +0901.0170 Physics and Society +0901.0898 General Mathematics +0901.2377 General Finance +0901.3333 Materials Science +0902.1350 Strongly Correlated Electrons +0902.2629 +0902.3363 Soft Condensed Matter +0902.4345 Materials Science +0902.4467 Mesoscale and Nanoscale Physics +0903.0819 +0903.1988 Disordered Systems and Neural Networks +0903.2069 +0903.2196 Mesoscale and Nanoscale Physics +0904.1424 Algebraic Geometry +0904.1916 +0904.2388 Cosmology and Nongalactic Astrophysics +0904.2962 Superconductivity +0904.4599 Phenomenology +0904.4705 Populations and Evolution +0905.0286 +0905.0984 Disordered Systems and Neural Networks +0905.1062 Biological Physics +0905.1955 Phenomenology +0905.2984 +0905.3418 Phenomenology +0905.3527 Disordered Systems and Neural Networks +0905.3528 Disordered Systems and Neural Networks +0905.4288 Combinatorics +0905.4291 K-Theory and Homology +0905.4292 K-Theory and Homology +0905.4293 Differential Geometry +0905.4295 Rings and Algebras +0905.4296 Phenomenology +0905.4299 Phenomenology +0905.4303 Information Theory +0905.4304 Mesoscale and Nanoscale Physics +0905.4305 Dynamical Systems +0905.4307 Experiment +0905.4313 Experiment +0905.4316 Atomic Physics +0905.4322 Other Computer Science +0905.4332 Logic in Computer Science +0905.4344 Solar and Stellar Astrophysics +0905.4350 Astrophysics of Galaxies +0905.4354 Astrophysics of Galaxies +0905.4356 Dynamical Systems +0905.4359 Instrumentation and Detectors +0905.4367 Algebraic Geometry +0905.4369 Artificial Intelligence +0905.4372 Number Theory +0905.4374 Plasma Physics +0905.4376 Optics +0905.4380 Phenomenology +0905.4381 Optics +0905.4383 High Energy Astrophysical Phenomena +0905.4385 Number Theory +0905.4386 Classical Physics +0905.4387 Artificial Intelligence +0905.4391 Combinatorics +0905.4392 Strongly Correlated Electrons +0905.4394 Algebraic Geometry +0905.4395 Group Theory +0905.4399 Instrumentation and Detectors +0905.4405 Combinatorics +0905.4408 Analysis of PDEs +0905.4412 Logic +0905.4418 Rings and Algebras +0905.4419 +0905.4421 Experiment +0905.4428 General Physics +0905.4430 Mathematical Software +0905.4433 Other Computer Science +0905.4434 Geometric Topology +0905.4438 Probability +0905.4444 Data Structures and Algorithms +0905.4446 Quantitative Methods +0905.4448 Analysis of PDEs +0905.4451 Materials Science +0905.4452 Data Structures and Algorithms +0905.4453 Differential Geometry +0905.4454 Algebraic Topology +0905.4456 Dynamical Systems +0905.4457 Quantum Algebra +0905.4459 +0905.4461 Algebraic Topology +0905.4464 Experiment +0905.4466 High Energy Astrophysical Phenomena +0905.4468 Quantitative Methods +0905.4470 Statistical Mechanics +0905.4471 Atomic Physics +0905.4476 Information Theory +0905.4482 Numerical Analysis +0905.4486 Geometric Topology +0905.4495 Combinatorics +astro-ph/0610754 +cond-mat/0102076 +cond-mat/0108037 +cond-mat/0510656 Materials Science +cond-mat/0604422 Soft Condensed Matter +hep-th/0604179 Theory +math/0404051 Differential Geometry +math/0501207 Symplectic Geometry +math/0506014 Differential Geometry +math/0506623 Symplectic Geometry +math/0606474 Symplectic Geometry +math/0607481 Dynamical Systems +physics/0504060 Optics +physics/0504073 Optics +physics/0509218 Optics +physics/0601025 Computational Physics +physics/0601143 Optics +physics/0610218 Optics +physics/0702128 Optics +physics/0702165 Optics +0709.0955 Probability +0710.2706 Algebraic Geometry +0712.0617 Category Theory +0801.2565 Algebraic Geometry +0805.2138 +0807.1906 Artificial Intelligence +0807.1986 +0807.4667 Statistical Mechanics +0809.0649 Strongly Correlated Electrons +0810.0033 Computational Complexity +0811.2179 Probability +0812.0048 Mesoscale and Nanoscale Physics +0812.0475 +0812.1128 Disordered Systems and Neural Networks +0812.2098 Strongly Correlated Electrons +0812.3734 Functional Analysis +0812.4754 Materials Science +0812.4869 Analysis of PDEs +0812.4892 +0901.0154 Strongly Correlated Electrons +0901.3466 Space Physics +0901.3734 Fluid Dynamics +0901.4470 +0901.4477 +0902.0177 Algebraic Topology +0902.1547 Superconductivity +0903.0531 Phenomenology +0903.2050 +0903.2209 Theory +0904.1026 Algebraic Geometry +0904.2418 Phenomenology +0904.2516 Materials Science +0904.4769 Chaotic Dynamics +0905.0859 Superconductivity +0905.2245 Rings and Algebras +0905.3253 +0905.3256 +0906.0297 Quantitative Methods +0906.0914 Atomic Physics +0906.2183 Combinatorics +0906.2284 Solar and Stellar Astrophysics +0906.2519 +0906.2650 High Energy Astrophysical Phenomena +0906.2790 Geometric Topology +0906.2794 Dynamical Systems +0906.2796 Physics Education +0906.2799 General Physics +0906.2803 Phenomenology +0906.2808 Phenomenology +0906.2816 Probability +0906.2823 Soft Condensed Matter +0906.2826 Mesoscale and Nanoscale Physics +0906.2831 Mesoscale and Nanoscale Physics +0906.2832 High Energy Astrophysical Phenomena +0906.2835 Information Retrieval +0906.2838 +0906.2841 Phenomenology +0906.2844 Plasma Physics +0906.2850 Group Theory +0906.2857 Number Theory +0906.2862 Number Theory +0906.2863 Classical Analysis and ODEs +0906.2864 Information Theory +0906.2866 Logic in Computer Science +0906.2872 Genomics +0906.2884 Experiment +0906.2885 Applications +0906.2887 Differential Geometry +0906.2891 Theory +0906.2892 +0906.2896 Operator Algebras +0906.2897 Combinatorics +0906.2905 General Physics +0906.2910 Phenomenology +0906.2915 Dynamical Systems +0906.2923 Classical Analysis and ODEs +0906.2924 Computational Geometry +0906.2925 Number Theory +0906.2928 Instrumentation and Detectors +0906.2934 Classical Physics +0906.2944 Algebraic Geometry +0906.2951 Strongly Correlated Electrons +0906.2955 Cosmology and Nongalactic Astrophysics +0906.2959 +0906.2961 Astrophysics of Galaxies +0906.2972 General Mathematics +0906.2981 Differential Geometry +0906.2982 Strongly Correlated Electrons +0906.2988 Differential Geometry +0906.2998 Analysis of PDEs +0906.3004 Combinatorics +cond-mat/0208235 Mesoscale and Nanoscale Physics +cond-mat/0607240 Mesoscale and Nanoscale Physics +cond-mat/0610189 Mesoscale and Nanoscale Physics +cond-mat/0702430 Mesoscale and Nanoscale Physics +cond-mat/0703085 Mesoscale and Nanoscale Physics +cs/0411048 Numerical Analysis +hep-ph/0610348 Phenomenology +math/0703777 Dynamical Systems +math/0703876 Algebraic Topology +quant-ph/0612067 +0704.0929 Theory +0704.3984 Superconductivity +0707.1706 +0708.4255 Theory +0709.1582 Phenomenology +0710.0180 Theory +0710.0962 Theory +0711.0082 Theory +0801.0218 Theory +0801.3955 Theory +0803.0836 Theory +0803.4243 General Topology +0803.4252 General Topology +0804.0619 +0804.4442 Commutative Algebra +0806.0686 Lattice +0806.3711 +0807.0898 +0807.1980 Lattice +0808.1567 Phenomenology +0808.2725 Algebraic Geometry +0809.0301 Probability +0809.1976 +0809.2053 +0809.2547 +0809.2916 +0809.3322 Theory +0809.3428 Theory +0810.0080 +0810.2452 Dynamical Systems +0810.3676 +0810.3744 +0810.3948 Phenomenology +0810.4369 Theory +0810.4376 +0810.4592 Materials Science +0810.5039 +0810.5356 +0810.5594 +0811.0905 Phenomenology +0811.1178 +0811.1194 Experiment +0811.1198 Theory +0811.2657 +0811.2685 Theory +0811.2825 Theory +0811.3362 +0811.3741 +0811.4077 Phenomenology +0812.0294 Phenomenology +0812.0471 Experiment +0812.1430 +0812.2138 +0812.2401 Theory +0812.2994 Theory +0812.3565 Lattice +0812.4703 +0901.0351 +0901.0424 Phenomenology +0901.0572 Lattice +0901.1472 +0901.2948 Phenomenology +0901.2977 Phenomenology +0901.3205 Representation Theory +0901.3613 Cosmology and Nongalactic Astrophysics +0901.3700 Theory +0901.4088 Theory +0901.4879 Statistical Mechanics +0902.0912 +0902.3516 Superconductivity +0902.3555 Statistical Mechanics +0902.3951 Theory +0903.0627 Theory +0903.0831 Phenomenology +0903.1864 Theory +0903.2147 Theory +0903.2227 Cosmology and Nongalactic Astrophysics +0903.2581 Theory +0903.2722 Category Theory +0903.4117 +0903.4311 Cosmology and Nongalactic Astrophysics +0903.4781 Metric Geometry +0903.5013 Commutative Algebra +0903.5264 Theory +0903.5356 Theory +0903.5420 +0903.5434 High Energy Astrophysical Phenomena +0904.0531 +0904.0590 Cosmology and Nongalactic Astrophysics +0904.0866 Phenomenology +0904.1389 General Topology +0904.1660 Cosmology and Nongalactic Astrophysics +0904.1782 Phenomenology +0904.1947 +0904.2398 High Energy Astrophysical Phenomena +0904.2485 Phenomenology +0904.2755 High Energy Astrophysical Phenomena +0904.2892 Cosmology and Nongalactic Astrophysics +0904.3084 Phenomenology +0904.3836 Instrumentation and Methods for Astrophysics +0904.3933 Cosmology and Nongalactic Astrophysics +0904.3959 Theory +0904.4207 Theory +0904.4249 Theory +0904.4305 Astrophysics of Galaxies +0905.0155 Portfolio Management +0905.0172 Materials Science +0905.0408 History and Philosophy of Physics +0905.0509 High Energy Astrophysical Phenomena +0905.0580 Theory +0905.0857 +0905.0979 +0905.1323 +0905.1392 High Energy Astrophysical Phenomena +0905.2032 Phenomenology +0905.2561 Phenomenology +0905.2664 +0905.2759 +0905.2972 Phenomenology +0905.3451 Theory +0905.4249 +0905.4530 +0905.4708 Mesoscale and Nanoscale Physics +0905.4753 Phenomenology +0906.0210 Cosmology and Nongalactic Astrophysics +0906.0516 Phenomenology +0906.0580 Phenomenology +0906.0979 Theory +0906.1102 Experiment +0906.1542 Phenomenology +0906.1563 +0906.1665 Phenomenology +0906.1910 +0906.2011 Solar and Stellar Astrophysics +0906.2024 Cosmology and Nongalactic Astrophysics +0906.2802 Cosmology and Nongalactic Astrophysics +0906.2837 +0906.3024 Phenomenology +0906.3025 Cosmology and Nongalactic Astrophysics +0906.3098 Phenomenology +0906.3118 Phenomenology +0906.3175 Phenomenology +0906.3398 Solar and Stellar Astrophysics +0906.3520 Cosmology and Nongalactic Astrophysics +0906.3689 +0906.3742 Theory +0906.3751 +0906.3939 Solar and Stellar Astrophysics +0906.4070 Theory +0906.4106 Cosmology and Nongalactic Astrophysics +0906.4412 Phenomenology +0906.4483 High Energy Astrophysical Phenomena +0906.4527 Cosmology and Nongalactic Astrophysics +0906.4546 Phenomenology +0906.4727 Theory +0906.4957 Instrumentation and Methods for Astrophysics +0906.4983 +0906.5065 Phenomenology +0906.5211 Phenomenology +0906.5295 Phenomenology +0906.5351 Cosmology and Nongalactic Astrophysics +0906.5353 Cosmology and Nongalactic Astrophysics +0906.5587 Quantum Gases +0906.5595 Phenomenology +0907.0009 Phenomenology +0907.0030 Phenomenology +0907.0048 Cosmology and Nongalactic Astrophysics +0907.0166 Phenomenology +0907.0202 +0907.0388 Experiment +0907.0656 Theory +0907.0700 +0907.0836 High Energy Astrophysical Phenomena +0907.1014 Phenomenology +0907.1192 Cosmology and Nongalactic Astrophysics +0907.1234 Phenomenology +0907.1260 +0907.1271 Phenomenology +0907.1342 Theory +0907.1486 Phenomenology +0907.1530 +0907.1694 Phenomenology +0907.1732 Theory +0907.1761 Theory +0907.1790 Phenomenology +0907.1845 Phenomenology +0907.1924 Theory +0907.1984 Phenomenology +0907.2191 Phenomenology +0907.2247 Theory +0907.2362 Phenomenology +0907.2475 Mesoscale and Nanoscale Physics +0907.2533 Phenomenology +0907.2706 Phenomenology +0907.2915 Phenomenology +0907.2922 Cosmology and Nongalactic Astrophysics +0907.3163 +0907.3377 Cosmology and Nongalactic Astrophysics +0907.3437 +0907.3673 Theory +0907.3722 Theory +0907.3833 +0907.3917 Phenomenology +0907.3942 Populations and Evolution +0907.4034 Phenomenology +0907.4175 +0907.4245 Lattice +0907.4389 Theory +0907.4552 Phenomenology +0907.4562 Lattice +0907.4596 Theory +0907.4709 Phenomenology +0907.4891 Astrophysics of Galaxies +0907.5122 Theory +0907.5201 Theory +0907.5299 Phenomenology +0907.5378 Cosmology and Nongalactic Astrophysics +0907.5458 Theory +0907.5465 Phenomenology +0908.0007 Phenomenology +0908.0079 Phenomenology +0908.0387 Theory +0908.0446 +0908.0538 Phenomenology +0908.0744 Information Theory +0908.0832 +0908.0943 Theory +0908.1023 Experiment +0908.1344 Theory +0908.2077 +0908.2113 Theory +0908.2160 +0908.2190 Theory +0908.2259 +0908.2331 Accelerator Physics +0908.2390 Phenomenology +0908.2472 Phenomenology +0908.2581 +0908.2669 Cosmology and Nongalactic Astrophysics +0908.3197 Cosmology and Nongalactic Astrophysics +0908.3261 Phenomenology +0908.3376 +0908.3506 Phenomenology +0908.3728 Phenomenology +0908.3814 +0908.4224 Theory +0909.0056 Phenomenology +0909.0210 Dynamical Systems +0909.0229 Theory +0909.0393 Logic +0909.0532 Cosmology and Nongalactic Astrophysics +0909.0736 Logic in Computer Science +0909.0944 Theory +0909.1121 Phenomenology +0909.1235 Phenomenology +0909.1341 Strongly Correlated Electrons +0909.1404 Phenomenology +0909.1995 Phenomenology +0909.2022 Phenomenology +0909.2866 Cosmology and Nongalactic Astrophysics +0909.3836 High Energy Astrophysical Phenomena +0909.4283 Strongly Correlated Electrons +0910.0582 Data Structures and Algorithms +0910.1472 Earth and Planetary Astrophysics +0910.1580 +0910.1952 Differential Geometry +0910.2134 High Energy Astrophysical Phenomena +0910.2841 +0910.2842 +0910.3045 Phenomenology +0910.3379 Experiment +0910.4372 +0910.4443 Probability +0910.4554 Soft Condensed Matter +0910.5089 Soft Condensed Matter +0911.0364 Theory +0911.0674 Data Analysis, Statistics and Probability +0911.0692 Analysis of PDEs +0911.0696 Information Theory +0911.0709 Information Theory +0911.0711 Solar and Stellar Astrophysics +0911.0712 Probability +0911.0716 Complex Variables +0911.0719 Analysis of PDEs +0911.0723 Functional Analysis +0911.0725 Combinatorics +0911.0727 Cryptography and Security +0911.0730 Operator Algebras +0911.0732 Mesoscale and Nanoscale Physics +0911.0736 Numerical Analysis +0911.0737 Information Theory +0911.0743 +0911.0750 Pricing of Securities +0911.0752 Soft Condensed Matter +0911.0753 Multiagent Systems +0911.0758 Complex Variables +0911.0760 Solar and Stellar Astrophysics +0911.0768 Dynamical Systems +0911.0773 Probability +0911.0781 Databases +0911.0783 Number Theory +0911.0784 Symplectic Geometry +0911.0785 Networking and Internet Architecture +0911.0786 Functional Analysis +0911.0787 Cryptography and Security +0911.0791 Astrophysics of Galaxies +0911.0797 Algebraic Geometry +0911.0799 Astrophysics of Galaxies +0911.0805 Pricing of Securities +0911.0807 Quantum Gases +0911.0814 Populations and Evolution +0911.0825 Analysis of PDEs +0911.0831 Functional Analysis +0911.0832 +0911.0834 +0911.0836 +0911.0839 Medical Physics +0911.0840 Solar and Stellar Astrophysics +0911.0847 Phenomenology +0911.0855 Mesoscale and Nanoscale Physics +0911.0856 Plasma Physics +0911.0860 General Physics +0911.0863 +0911.0870 Solar and Stellar Astrophysics +0911.0871 Probability +0911.0873 Cosmology and Nongalactic Astrophysics +0911.0874 Information Theory +0911.0878 Adaptation and Self-Organizing Systems +0911.0879 +0911.0894 Computation and Language +0911.0898 Strongly Correlated Electrons +0911.0899 Superconductivity +0911.0900 Discrete Mathematics +0911.0901 Classical Analysis and ODEs +0911.0902 Graphics +0911.0905 Information Theory +0911.0907 Computation and Language +0911.0909 Computers and Society +0911.0910 Distributed, Parallel, and Cluster Computing +0911.0912 Multiagent Systems +0911.0916 Networking and Internet Architecture +0911.0917 Rings and Algebras +0911.0919 Metric Geometry +0911.0920 Rings and Algebras +cond-mat/0612525 Statistical Mechanics +gr-qc/9602016 +hep-ph/0102144 Phenomenology +hep-ph/0301155 Phenomenology +hep-ph/9402275 Phenomenology +hep-ph/9410284 Phenomenology +hep-th/0303157 Theory +hep-th/0412143 Theory +hep-th/0501237 Theory +hep-th/0701156 Theory +hep-th/9305078 Theory +hep-th/9801178 Theory +math-ph/0508041 +math-ph/0612063 +math-ph/0701047 +math/0312293 History and Overview +math/0411620 History and Overview +math/0511256 Rings and Algebras +math/0611196 Operator Algebras +math/0611198 Operator Algebras +nucl-th/0301100 +nucl-th/9805044 +physics/0001066 Biological Physics +q-bio/0609023 Biomolecules +quant-ph/0204015 +quant-ph/0512147 +0801.4699 Combinatorics +0804.1327 Discrete Mathematics +0809.4693 Group Theory +0810.2856 Rings and Algebras +0812.2637 Mesoscale and Nanoscale Physics +0901.0271 Group Theory +0901.1816 Materials Science +0902.1321 Algebraic Geometry +0905.3963 Phenomenology +0907.3172 Quantum Gases +0907.4936 Representation Theory +0908.2042 Information Theory +0908.4414 Representation Theory +cond-mat/0311027 Soft Condensed Matter +cond-mat/0605283 Other Condensed Matter +gr-qc/0610001 +nlin/0609070 Pattern Formation and Solitons +quant-ph/0610269 +0709.0887 Metric Geometry +0710.1413 Superconductivity +0801.3415 Functional Analysis +0802.0382 Functional Analysis +0802.2120 Geometric Topology +0803.1868 Number Theory +0803.3838 Neural and Evolutionary Computing +0804.1311 +0806.1745 Metric Geometry +0806.2886 +0807.0029 +0807.2385 Theory +0807.3343 +0807.4134 Operator Algebras +0807.4535 +0808.0337 Probability +0810.1670 Dynamical Systems +0811.4406 Theory +0811.4556 +0812.0964 +0812.1568 +0812.4127 +0812.4708 Cell Behavior +0901.1727 Atomic Physics +0901.2797 Disordered Systems and Neural Networks +0901.4419 Solar and Stellar Astrophysics +0902.1500 Astrophysics of Galaxies +0902.1552 Theory +0902.4054 Phenomenology +0903.2401 History and Philosophy of Physics +0903.3280 +0903.3294 +0903.3908 Complex Variables +0903.3923 Phenomenology +0903.3978 Group Theory +0903.4173 High Energy Astrophysical Phenomena +0903.4180 Cosmology and Nongalactic Astrophysics +0903.4181 +0903.4194 Differential Geometry +0903.4195 Strongly Correlated Electrons +0903.4202 Solar and Stellar Astrophysics +0903.4218 Combinatorics +0903.4219 Molecular Networks +0903.4221 Algebraic Topology +0903.4223 Solar and Stellar Astrophysics +0903.4229 Experiment +0903.4234 Strongly Correlated Electrons +0903.4235 Disordered Systems and Neural Networks +0903.4239 Representation Theory +0903.4240 Instrumentation and Methods for Astrophysics +0903.4243 Algebraic Geometry +0903.4246 Functional Analysis +0903.4247 Statistical Mechanics +0903.4248 Complex Variables +0903.4252 Optics +0903.4253 Geometric Topology +0903.4255 Mesoscale and Nanoscale Physics +0903.4256 +0903.4261 Human-Computer Interaction +0903.4263 +0903.4265 Complex Variables +0903.4266 Networking and Internet Architecture +0903.4267 Software Engineering +0903.4270 Other Computer Science +0903.4275 Pattern Formation and Solitons +0903.4278 Algebraic Geometry +0903.4282 Solar and Stellar Astrophysics +0903.4283 Other Computer Science +0903.4284 Differential Geometry +0903.4286 Other Computer Science +0903.4287 +0903.4290 Algebraic Topology +0903.4291 Astrophysics of Galaxies +0903.4292 +0903.4293 Discrete Mathematics +0903.4294 +0903.4296 Differential Geometry +0903.4298 Information Theory +0903.4299 Networking and Internet Architecture +0903.4302 Other Computer Science +0903.4307 Mathematical Software +0903.4310 Commutative Algebra +0903.4312 Phenomenology +0903.4313 Mathematical Software +0903.4314 Multimedia +0903.4316 Chemical Physics +0903.4323 Classical Analysis and ODEs +0903.4326 Representation Theory +0903.4327 +0903.4329 +0903.4334 Number Theory +0903.4336 Representation Theory +0903.4341 Geometric Topology +0903.4346 Algebraic Topology +0903.4349 +0903.4350 Number Theory +0903.4351 Analysis of PDEs +0903.4353 Chemical Physics +0903.4354 +0903.4356 Theory +0903.4358 Discrete Mathematics +0903.4360 Algebraic Topology +0903.4361 Instrumentation and Detectors +0903.4363 Numerical Analysis +0903.4369 Classical Analysis and ODEs +0903.4370 Strongly Correlated Electrons +0903.4373 Probability +0903.4391 Methodology +0903.4392 Distributed, Parallel, and Cluster Computing +0903.4399 Algebraic Geometry +0903.4403 Other Condensed Matter +0903.4404 Algebraic Geometry +0903.4408 Strongly Correlated Electrons +0903.4417 Cosmology and Nongalactic Astrophysics +0903.4420 Phenomenology +0903.4423 Classical Analysis and ODEs +0903.4424 Cosmology and Nongalactic Astrophysics +0903.4425 History and Overview +0903.4426 Information Theory +0903.4429 Chemical Physics +0903.4431 Chemical Physics +0903.4433 General Physics +0903.4434 Information Theory +0903.4435 Discrete Mathematics +0903.4440 +0903.4443 Information Theory +astro-ph/0611273 +cond-mat/0108529 Soft Condensed Matter +math/0410342 Algebraic Topology +math/0605695 Algebraic Geometry +nlin/0410058 Chaotic Dynamics +0706.4333 Pattern Formation and Solitons +0708.1487 Quantum Algebra +0708.3476 Statistical Mechanics +0710.2651 Geometric Topology +0801.0174 Algebraic Topology +0802.1739 Complex Variables +0802.4096 Algebraic Topology +0803.3306 Strongly Correlated Electrons +0804.3771 Phenomenology +0807.0978 Atomic Physics +0807.2521 Materials Science +0807.3022 Dynamical Systems +0808.1146 Functional Analysis +0811.2899 Combinatorics +0811.4109 +0812.2977 Strongly Correlated Electrons +0812.3489 Logic +0901.0631 Soft Condensed Matter +0901.1458 Number Theory +0901.1855 Operator Algebras +0901.1945 Statistical Finance +0901.2524 Classical Analysis and ODEs +0902.0303 Superconductivity +0902.2030 +0902.3227 Other Condensed Matter +0902.3879 Statistical Mechanics +0902.4328 Earth and Planetary Astrophysics +0904.2627 Biomolecules +0904.4023 +0905.0476 Algebraic Topology +0905.2923 Phenomenology +0905.3137 Theory +0905.4340 Geometric Topology +0905.4491 +0905.4627 Multimedia +0905.4726 High Energy Astrophysical Phenomena +0905.4735 Combinatorics +0905.4737 Numerical Analysis +0905.4739 Phenomenology +0905.4741 +0905.4748 Rings and Algebras +0905.4758 Combinatorics +0905.4763 +0905.4764 Cosmology and Nongalactic Astrophysics +0905.4768 Rings and Algebras +0905.4769 Quantum Algebra +0905.4786 Classical Analysis and ODEs +0905.4787 Statistical Mechanics +0905.4788 Popular Physics +0905.4797 Other Condensed Matter +0905.4800 Instrumentation and Methods for Astrophysics +0905.4804 Physics and Society +0905.4814 Experiment +0905.4818 +0905.4819 Commutative Algebra +0905.4823 Phenomenology +0905.4824 Strongly Correlated Electrons +0905.4827 +0905.4828 +0905.4832 +0905.4835 +0905.4836 Functional Analysis +0905.4838 +0905.4843 Experiment +0905.4847 Fluid Dynamics +0905.4848 +0905.4850 Cryptography and Security +0905.4854 Strongly Correlated Electrons +0905.4855 Functional Analysis +0905.4856 Phenomenology +0905.4857 Theory +0905.4860 Other Computer Science +0905.4861 Operator Algebras +0905.4862 Experiment +0905.4863 Software Engineering +0905.4864 Human-Computer Interaction +0905.4869 Experiment +0905.4870 Rings and Algebras +0905.4873 +0905.4875 Logic +0905.4877 Experiment +0905.4883 Category Theory +0905.4888 Group Theory +0905.4891 Experiment +0905.4902 Other Computer Science +0905.4905 Logic in Computer Science +0905.4906 Logic in Computer Science +0905.4907 Experiment +0905.4908 Adaptation and Self-Organizing Systems +0905.4909 Numerical Analysis +0905.4911 Numerical Analysis +0905.4918 Networking and Internet Architecture +0905.4921 Number Theory +0905.4926 Information Theory +0905.4927 Atmospheric and Oceanic Physics +0905.4929 Experiment +0905.4931 Experiment +0905.4935 Dynamical Systems +0905.4936 Algebraic Geometry +0905.4941 Category Theory +0905.4942 Phenomenology +0905.4946 Numerical Analysis +0905.4950 Biological Physics +0905.4955 Exactly Solvable and Integrable Systems +gr-qc/0303016 +math/0312028 Differential Geometry +math/0601200 Symplectic Geometry +math/0610036 Combinatorics +math/0703683 Probability +0704.1464 +0705.1603 +0707.0219 Mesoscale and Nanoscale Physics +0707.0257 Probability +0707.1100 Computational Physics +0707.2599 +0707.2924 +0708.0029 Mesoscale and Nanoscale Physics +0710.4064 Algebraic Geometry +0710.4352 +0711.3109 +0712.4279 Computational Complexity +0803.3404 Databases +0803.3650 +0804.1579 Classical Analysis and ODEs +0806.3833 Metric Geometry +0807.3558 Logic +0807.3629 Strongly Correlated Electrons +0807.4825 Biological Physics +0808.0913 Strongly Correlated Electrons +0809.0483 Classical Analysis and ODEs +0810.0382 Number Theory +0810.3675 Theory +0810.3921 Phenomenology +0810.4963 +0810.5164 +0810.5350 Phenomenology +0811.0424 +0811.3308 +0811.3658 Strongly Correlated Electrons +0812.0503 Lattice +0812.0600 Experiment +0812.2275 Information Theory +0812.3535 Phenomenology +0812.5040 +0901.0456 Soft Condensed Matter +0901.4039 Geometric Topology +0902.0005 Strongly Correlated Electrons +0902.0489 Atomic Physics +0902.1185 Cosmology and Nongalactic Astrophysics +0902.2454 Biological Physics +0902.3021 Other Condensed Matter +0902.3375 Operator Algebras +0903.1065 Materials Science +0903.1819 Materials Science +0903.3655 High Energy Astrophysical Phenomena +0903.3841 +0903.4547 Strongly Correlated Electrons +0904.1470 Chemical Physics +0904.2746 +0905.0712 Complex Variables +0905.4496 +0905.4695 Superconductivity +0906.0131 Exactly Solvable and Integrable Systems +0906.0953 Phenomenology +0906.0997 Rings and Algebras +0906.1011 Theory +0906.1081 Analysis of PDEs +0906.1186 Neurons and Cognition +0906.1195 Accelerator Physics +0906.1199 Logic in Computer Science +0906.1207 Classical Analysis and ODEs +0906.1208 Analysis of PDEs +0906.1213 Optics +0906.1218 Symplectic Geometry +0906.1225 Cryptography and Security +0906.1226 Graphics +0906.1230 +0906.1234 Probability +0906.1235 Complex Variables +0906.1244 Information Theory +0906.1245 Cryptography and Security +0906.1246 Differential Geometry +0906.1252 Combinatorics +0906.1256 Differential Geometry +0906.1260 Probability +0906.1262 Statistical Mechanics +0906.1266 Methodology +0906.1274 Earth and Planetary Astrophysics +0906.1275 Number Theory +0906.1278 Strongly Correlated Electrons +0906.1280 Atmospheric and Oceanic Physics +0906.1283 Mesoscale and Nanoscale Physics +0906.1290 Fluid Dynamics +0906.1295 Complex Variables +0906.1296 Algebraic Geometry +0906.1299 Algebraic Geometry +0906.1302 Experiment +0906.1306 Experiment +0906.1307 Differential Geometry +0906.1308 Strongly Correlated Electrons +0906.1309 Medical Physics +0906.1311 Lattice +0906.1312 Analysis of PDEs +0906.1316 Functional Analysis +0906.1317 Combinatorics +0906.1325 Cosmology and Nongalactic Astrophysics +0906.1326 Distributed, Parallel, and Cluster Computing +0906.1328 Distributed, Parallel, and Cluster Computing +0906.1329 Fluid Dynamics +0906.1330 Analysis of PDEs +0906.1331 Analysis of PDEs +0906.1334 Superconductivity +0906.1339 Information Theory +0906.1341 Data Structures and Algorithms +0906.1343 Data Structures and Algorithms +0906.1358 General Physics +0906.1370 Computational Complexity +0906.1374 Analysis of PDEs +0906.1378 Differential Geometry +0906.1382 Experiment +0906.1397 Combinatorics +0906.1403 Experiment +0906.1411 Algebraic Topology +0906.1416 Probability +0906.1421 Applications +0906.1428 Applications +0906.1429 Software Engineering +0906.1430 Algebraic Geometry +0906.1433 Applications +0906.1439 Differential Geometry +0906.1440 Analysis of PDEs +0906.1443 Analysis of PDEs +0906.1446 High Energy Astrophysical Phenomena +0906.1447 Functional Analysis +0906.1450 Experiment +0906.1451 High Energy Astrophysical Phenomena +0906.1455 Mesoscale and Nanoscale Physics +0906.1457 Applications +0906.1458 Analysis of PDEs +0906.1459 Phenomenology +0906.1462 Statistical Finance +0906.1466 Number Theory +0906.1467 Data Analysis, Statistics and Probability +0906.1469 +0906.1471 Theory +0906.1483 Analysis of PDEs +0906.1484 Cosmology and Nongalactic Astrophysics +0906.1486 Statistical Mechanics +0906.1488 K-Theory and Homology +0906.1491 Statistical Mechanics +0906.1509 Analysis of PDEs +0906.1514 Differential Geometry +0906.1517 Combinatorics +0906.1518 K-Theory and Homology +0906.1525 Experiment +0906.1526 Instrumentation and Detectors +0906.1529 Geometric Topology +0906.1531 Differential Geometry +0906.1535 Instrumentation and Methods for Astrophysics +0906.1546 Differential Geometry +0906.1547 Analysis of PDEs +0906.1550 Biological Physics +0906.1553 Combinatorics +0906.1557 Data Structures and Algorithms +0906.1559 Combinatorics +0906.1561 Functional Analysis +0906.1562 Operator Algebras +0906.1567 Representation Theory +0906.1573 Classical Physics +0906.1574 Algebraic Geometry +0906.1576 Lattice +cond-mat/0207083 Mesoscale and Nanoscale Physics +cond-mat/0410485 Superconductivity +cond-mat/0607784 Mesoscale and Nanoscale Physics +gr-qc/9606025 +math/0211064 Rings and Algebras +math/0304274 Algebraic Geometry +math/0406106 Geometric Topology +math/0605218 Combinatorics +math/0607069 Algebraic Topology +quant-ph/0702209 +0704.0529 Superconductivity +0705.1115 +0711.4498 Cell Behavior +0802.4160 +0805.4273 Algebraic Geometry +0805.4778 Optics +0808.2496 +0808.3863 Numerical Analysis +0809.2330 +0809.2610 Phenomenology +0809.3711 Numerical Analysis +0809.3877 Physics and Society +0810.1110 Materials Science +0811.3474 +0812.2887 Soft Condensed Matter +0812.3129 Theory +0901.2511 Analysis of PDEs +0903.3607 Dynamical Systems +0904.0625 Statistical Mechanics +0904.2438 Mesoscale and Nanoscale Physics +0904.4125 Statistical Mechanics +0904.4738 Fluid Dynamics +0905.0900 Theory +0905.3376 +0905.3704 Physics and Society +0906.0980 Cosmology and Nongalactic Astrophysics +0906.1187 Phenomenology +0906.1383 Mesoscale and Nanoscale Physics +0906.3543 Materials Science +0906.4356 Solar and Stellar Astrophysics +0907.0038 Mesoscale and Nanoscale Physics +0907.0623 +0907.1376 Combinatorics +0907.4050 +0908.1086 Analysis of PDEs +0908.1475 Phenomenology +0908.3230 Functional Analysis +0908.3646 Instrumentation and Methods for Astrophysics +0909.1812 Cosmology and Nongalactic Astrophysics +0909.2504 Networking and Internet Architecture +0909.2596 Experiment +0909.2636 Probability +0909.2675 Functional Analysis +0909.2693 Geometric Topology +0909.2694 Computational Complexity +0909.2700 General Physics +0909.2704 Data Structures and Algorithms +0909.2708 Materials Science +0909.2713 Experiment +0909.2714 Fluid Dynamics +0909.2715 Computation and Language +0909.2718 Computation and Language +0909.2719 Computation and Language +0909.2720 Dynamical Systems +0909.2721 Other Computer Science +0909.2728 Strongly Correlated Electrons +0909.2733 Data Structures and Algorithms +0909.2735 Analysis of PDEs +0909.2736 Cosmology and Nongalactic Astrophysics +0909.2749 Functional Analysis +0909.2751 Quantum Algebra +0909.2752 Cosmology and Nongalactic Astrophysics +0909.2755 Phenomenology +0909.2765 Cosmology and Nongalactic Astrophysics +0909.2769 Combinatorics +0909.2772 Combinatorics +0909.2775 Combinatorics +0909.2777 Information Theory +0909.2780 Disordered Systems and Neural Networks +0909.2782 Spectral Theory +0909.2785 Applications +0909.2787 Data Structures and Algorithms +0909.2789 General Physics +0909.2795 Instrumentation and Methods for Astrophysics +0909.2797 Astrophysics of Galaxies +0909.2800 Rings and Algebras +0909.2801 Combinatorics +0909.2803 Cosmology and Nongalactic Astrophysics +0909.2804 Classical Analysis and ODEs +0909.2809 +0909.2812 Experiment +0909.2816 Multimedia +0909.2817 Combinatorics +0909.2818 Analysis of PDEs +0909.2819 General Physics +0909.2830 Instrumentation and Methods for Astrophysics +0909.2834 Materials Science +0909.2836 Phenomenology +0909.2839 Programming Languages +0909.2841 Group Theory +0909.2848 Analysis of PDEs +0909.2852 Cryptography and Security +0909.2859 Discrete Mathematics +0909.2860 Operator Algebras +math/0703529 Geometric Topology +0705.0737 Algebraic Geometry +0708.1859 Information Theory +0709.1432 Number Theory +0712.1874 Commutative Algebra +0801.2662 Commutative Algebra +0803.1590 Probability +0803.3405 Functional Analysis +0808.3881 Discrete Mathematics +0810.4777 Quantum Algebra +0810.5292 +0811.4396 Materials Science +0811.4502 Theory +0812.0758 +0812.0915 Superconductivity +0812.1072 Physics and Society +0901.2038 +0901.4796 Phenomenology +0902.0449 Analysis of PDEs +0902.2480 Geometric Topology +0902.4297 Biological Physics +0902.4533 Phenomenology +0903.1767 Pattern Formation and Solitons +0903.4123 +0903.5223 Combinatorics +0904.0123 Strongly Correlated Electrons +0904.1191 +0904.2752 Probability +0905.2022 Phenomenology +0906.2869 Statistical Mechanics +0906.3519 Strongly Correlated Electrons +0906.3877 Materials Science +0906.3967 Statistical Mechanics +0906.4542 Metric Geometry +0906.5155 Optics +0907.1973 Theory +0907.2226 Other Condensed Matter +0907.2249 Operator Algebras +0907.2258 High Energy Astrophysical Phenomena +0907.2263 Instrumentation and Methods for Astrophysics +0907.2266 Rings and Algebras +0907.2274 Functional Analysis +0907.2275 Geometric Topology +0907.2281 Rings and Algebras +0907.2291 Probability +0907.2297 Analysis of PDEs +0907.2305 Metric Geometry +0907.2310 Complex Variables +0907.2311 +0907.2315 Cryptography and Security +0907.2317 Experiment +0907.2318 Geometric Topology +0907.2321 Mesoscale and Nanoscale Physics +0907.2322 Algebraic Geometry +0907.2323 Materials Science +0907.2324 Computational Complexity +0907.2326 Combinatorics +0907.2335 Combinatorics +0907.2336 Number Theory +0907.2338 Algebraic Geometry +0907.2339 +0907.2341 Classical Analysis and ODEs +0907.2348 Analysis of PDEs +0907.2364 Rings and Algebras +0907.2370 Functional Analysis +0907.2376 Computer Science and Game Theory +0907.2377 Pattern Formation and Solitons +0907.2381 Lattice +0907.2387 Phenomenology +0907.2390 Experiment +0907.2391 Information Theory +0907.2394 +0907.2396 +0907.2404 History and Philosophy of Physics +0907.2407 Theory +0907.2409 Mesoscale and Nanoscale Physics +0907.2410 Superconductivity +0907.2412 Information Theory +0907.2431 +hep-th/0311236 Theory +math/0407407 Geometric Topology +math/0607427 Rings and Algebras +quant-ph/0403066 +0708.2829 Theory +0710.1977 Mesoscale and Nanoscale Physics +0712.2261 Theory +0802.2586 General Physics +0803.2836 Number Theory +0804.2747 Strongly Correlated Electrons +0805.0239 Theory +0805.0379 Theory +0805.0570 Theory +0805.1029 Theory +0805.1070 Theory +0805.1202 Theory +0805.1206 Theory +0805.2573 Theory +0805.2601 Theory +0805.2621 Theory +0805.4127 Physics and Society +0805.4643 Theory +0806.1171 Commutative Algebra +0806.1178 Commutative Algebra +0807.0883 Materials Science +0807.0884 Materials Science +0807.2192 Probability +0807.4618 Human-Computer Interaction +0808.0001 +0808.0761 Theory +0808.1271 Theory +0808.2730 History and Philosophy of Physics +0808.2901 Theory +0808.3067 Theory +0808.3186 Theory +0808.3236 Theory +0808.3242 Theory +0808.3413 Theory +0809.3048 Theory +0809.3845 Analysis of PDEs +0810.0590 Superconductivity +0810.3493 Analysis of PDEs +0810.4218 Probability +0810.4417 Analysis of PDEs +0811.2596 Networking and Internet Architecture +0811.3187 Operator Algebras +0812.0192 Networking and Internet Architecture +0812.0193 Networking and Internet Architecture +0812.1781 +0901.0665 +0902.1862 Optics +0902.2159 Commutative Algebra +0902.2499 Algebraic Topology +0902.2546 +0902.3455 +0902.3612 +0902.3795 Phenomenology +0902.3830 Theory +0903.0128 Probability +0903.2595 +0903.4481 Phenomenology +0904.2266 Phenomenology +0904.2276 Probability +0904.2569 Cosmology and Nongalactic Astrophysics +0904.2617 Mesoscale and Nanoscale Physics +0904.4515 Astrophysics of Galaxies +0904.4785 +0906.0036 Theory +0906.0282 Rings and Algebras +0906.1923 Phenomenology +0906.1971 Phenomenology +0906.3035 Mesoscale and Nanoscale Physics +0906.3054 Atomic Physics +0906.3127 Superconductivity +0906.3240 Computational Geometry +0906.5330 Phenomenology +0906.5609 Data Analysis, Statistics and Probability +0907.0348 Phenomenology +0907.0563 Phenomenology +0907.0588 Phenomenology +0907.0765 Theory +0907.1063 Phenomenology +0907.2350 +0907.2578 Number Theory +0907.3026 Optics +0907.4557 Probability +0907.4895 Theory +0908.0687 +0908.1961 +0908.2340 Atomic Physics +0908.2357 Mesoscale and Nanoscale Physics +0908.2758 Phenomenology +0908.3363 +0908.3672 Theory +0908.3837 +0908.4184 Phenomenology +0909.0401 Statistical Mechanics +0909.0407 Theory +0909.0620 +0909.0838 +0909.1238 +0909.1244 +0909.1996 Experiment +0909.2915 Experiment +0909.2965 Instrumentation and Detectors +0909.3040 +0909.3106 Theory +0909.3126 Phenomenology +0909.3197 Instrumentation and Detectors +0909.3203 +0909.3204 Phenomenology +0909.3492 Soft Condensed Matter +0909.3659 Phenomenology +0910.0578 Analysis of PDEs +0910.5034 +0910.5508 Classical Analysis and ODEs +0911.0081 Plasma Physics +0911.0641 Probability +0911.1015 Statistics Theory +0911.3292 Computation and Language +0911.5388 Data Analysis, Statistics and Probability +0912.0353 Experiment +0912.0738 Solar and Stellar Astrophysics +0912.0745 Sound +0912.0753 +0912.0754 Mesoscale and Nanoscale Physics +0912.0758 Information Theory +0912.0759 Logic in Computer Science +0912.0760 Astrophysics of Galaxies +0912.0763 +0912.0765 Information Theory +0912.0769 Disordered Systems and Neural Networks +0912.0772 Cosmology and Nongalactic Astrophysics +0912.0779 +0912.0780 Pattern Formation and Solitons +0912.0784 Algebraic Geometry +0912.0785 Chemical Physics +0912.0796 Earth and Planetary Astrophysics +0912.0798 Combinatorics +0912.0803 Data Structures and Algorithms +0912.0807 Data Structures and Algorithms +0912.0813 Functional Analysis +0912.0818 Geophysics +0912.0822 Algebraic Geometry +0912.0825 +0912.0829 +0912.0832 Analysis of PDEs +0912.0835 Materials Science +0912.0839 Algebraic Topology +0912.0840 Databases +0912.0841 Complex Variables +0912.0842 Statistics Theory +0912.0849 Superconductivity +0912.0855 Differential Geometry +0912.0856 Plasma Physics +0912.0859 Algebraic Geometry +0912.0862 Fluid Dynamics +0912.0864 Dynamical Systems +0912.0865 Group Theory +0912.0869 Group Theory +0912.0871 Probability +0912.0872 Spectral Theory +0912.0881 +0912.0883 Phenomenology +0912.0887 Earth and Planetary Astrophysics +0912.0893 Computational Engineering, Finance, and Science +0912.0895 Algebraic Geometry +0912.0896 High Energy Astrophysical Phenomena +0912.0898 Computers and Society +0912.0900 Phenomenology +0912.0908 +0912.0909 Experiment +0912.0913 Information Retrieval +0912.0921 Networking and Internet Architecture +0912.0928 Computational Complexity +0912.0930 Networking and Internet Architecture +0912.0932 Computers and Society +cs/0702080 Computational Geometry +gr-qc/0212039 +gr-qc/0401018 +hep-th/0609026 Theory +hep-th/0609225 Theory +hep-th/0703134 Theory +hep-th/0703182 Theory +math-ph/0612014 +math/0312006 Representation Theory +math/0611417 Statistics Theory +math/0703873 Analysis of PDEs +quant-ph/0611104 +0704.2711 Physics and Society +0704.3427 Algebraic Geometry +0706.0174 Theory +0706.1147 +0706.1167 Theory +0706.1224 Theory +0706.1238 Theory +0706.1244 Theory +0706.1264 Theory +0706.1269 Theory +0706.1289 Theory +0706.1560 Theory +0706.1635 Theory +0706.1650 Theory +0706.1675 Theory +0706.1691 Theory +0706.1712 Theory +0706.1769 Theory +0706.1825 Theory +0706.1893 Theory +0706.2114 Theory +0706.2253 Theory +0706.2269 Theory +0706.2294 Theory +0706.2355 Theory +0706.2363 Theory +0706.2493 Theory +0706.2494 Theory +0706.2546 Theory +0706.3373 Theory +0706.3677 Theory +0706.3991 Theory +0707.0185 Differential Geometry +0707.0455 Theory +0707.1031 Theory +0707.1038 Theory +0707.1062 Theory +0707.1324 Theory +0707.1422 Theory +0707.2564 Theory +0707.2583 Theory +0707.2666 Theory +0707.2907 Theory +0707.3035 Theory +0707.3055 Theory +0707.3264 Theory +0707.3437 Theory +0707.3517 Theory +0707.3549 Theory +0707.3601 Theory +0707.3610 Theory +0707.3654 Theory +0707.3681 Theory +0707.4472 Theory +0707.4583 Theory +0707.4591 Theory +0708.0022 Theory +0708.0065 Theory +0708.1773 Theory +0708.2272 Theory +0708.2285 Theory +0708.2287 Theory +0708.2426 Theory +0708.2697 Theory +0708.2722 Theory +0708.3028 Theory +0708.3045 Theory +0708.3394 Theory +0708.4285 Theory +0709.0221 Theory +0709.0570 Theory +0709.0581 Theory +0709.1225 Theory +0709.1365 Theory +0709.1932 Theory +0710.5621 Phenomenology +0711.0373 +0711.0833 +0711.2548 +0711.2640 Phenomenology +0711.4713 Phenomenology +0712.1223 Theory +0712.2965 Phenomenology +0712.4286 Disordered Systems and Neural Networks +0803.0619 Strongly Correlated Electrons +0803.0820 Phenomenology +0803.0929 Data Structures and Algorithms +0803.1720 Phenomenology +0803.2360 Phenomenology +0805.0166 +0805.1171 Theory +0805.1611 Theory +0805.1792 +0805.1876 Theory +0805.1891 Theory +0805.2557 +0805.2926 +0806.4115 Machine Learning +0808.0163 Data Structures and Algorithms +0808.1881 +0808.1882 Phenomenology +0808.1986 Lattice +0808.2191 Phenomenology +0808.2318 Phenomenology +0808.2574 +0808.3018 Phenomenology +0809.0608 Phenomenology +0809.1122 Phenomenology +0809.1148 Algebraic Geometry +0809.1149 Phenomenology +0809.1370 Theory +0809.3321 Strongly Correlated Electrons +0810.1074 +0810.1714 +0810.3794 Metric Geometry +0810.4152 +0810.4157 Theory +0810.4677 Theory +0810.4851 Theory +0810.5156 +0810.5203 Information Theory +0810.5387 +0811.0378 +0812.2218 Theory +0812.3449 Lattice +0901.0261 +0901.0683 Theory +0901.1024 Numerical Analysis +0901.1950 Phenomenology +0901.3821 +0902.2714 Chaotic Dynamics +0902.4062 Theory +0902.4531 Analysis of PDEs +0902.4573 Solar and Stellar Astrophysics +0902.4819 Theory +0903.0243 Theory +0903.1872 Cosmology and Nongalactic Astrophysics +0903.2769 Cosmology and Nongalactic Astrophysics +0903.4139 Representation Theory +0904.0204 Optics +0904.0353 Phenomenology +0904.0479 Superconductivity +0904.0979 Phenomenology +0904.1015 Phenomenology +0904.1090 Phenomenology +0904.1954 Materials Science +0904.2710 Classical Analysis and ODEs +0904.3107 Phenomenology +0904.3337 Phenomenology +0904.4142 Atomic Physics +0904.4600 Discrete Mathematics +0905.0682 +0905.0794 Information Theory +0905.0846 Theory +0905.1962 Theory +0905.2803 +0905.2917 Mesoscale and Nanoscale Physics +0905.3352 Lattice +0905.3539 +0905.3768 Cosmology and Nongalactic Astrophysics +0905.4462 Phenomenology +0906.0488 Lattice +0906.2353 Theory +0906.2612 Phenomenology +0906.2669 Theory +0906.3417 Phenomenology +0906.3463 +0906.3566 Phenomenology +0906.3719 +0906.3748 Mesoscale and Nanoscale Physics +0906.3929 Lattice +0906.4231 Phenomenology +0906.4641 Phenomenology +0906.5134 Theory +0906.5293 +0906.5585 Phenomenology +0906.5592 +0907.0024 +0907.0076 Astrophysics of Galaxies +0907.0200 +0907.0235 Phenomenology +0907.0320 Phenomenology +0907.0333 Theory +0907.0758 Phenomenology +0907.1029 +0907.1094 +0907.1345 Quantum Gases +0907.1392 +0907.1604 +0907.1691 Theory +0907.1797 Phenomenology +0907.1896 Phenomenology +0907.1943 +0907.1996 High Energy Astrophysical Phenomena +0907.2136 +0907.2169 +0907.2179 +0907.2213 +0907.2262 +0907.2265 +0907.2351 +0907.2506 Phenomenology +0907.2516 +0907.2633 +0907.2707 +0907.2712 Phenomenology +0907.2722 +0907.2804 Quantum Gases +0907.2848 +0907.2872 +0907.2966 +0907.2981 Phenomenology +0907.3078 +0907.3090 Phenomenology +0907.3380 +0907.3388 Phenomenology +0907.3399 +0907.3407 +0907.3460 +0907.3473 +0907.3546 +0907.3548 +0907.3577 Instrumentation and Detectors +0907.3592 +0907.3593 +0907.3626 +0907.3669 Phenomenology +0907.3682 +0907.3764 Phenomenology +0907.3770 Combinatorics +0907.3830 +0907.3841 Phenomenology +0907.3870 +0907.3898 Phenomenology +0907.3935 Experiment +0907.3937 +0907.4012 Phenomenology +0907.4091 Phenomenology +0907.4095 Lattice +0907.4101 +0907.4111 Phenomenology +0907.4158 +0907.4203 Lattice +0907.4204 Theory +0907.4205 Lattice +0907.4255 +0907.4256 +0907.4257 +0907.4269 Phenomenology +0907.4304 Phenomenology +0907.4319 Phenomenology +0907.4329 Phenomenology +0907.4333 +0907.4353 Phenomenology +0907.4362 +0907.4379 +0907.4381 Phenomenology +0907.4396 +0907.4403 +0907.4435 +0907.4452 +0907.4457 +0907.4461 +0907.4476 +0907.4489 +0907.4492 +0907.4493 +0907.4498 Phenomenology +0907.4503 Theory +0907.4504 +0907.4513 +0907.4519 Phenomenology +0907.4523 +0907.4533 +0907.4536 +0907.4538 +0907.4542 +0907.4571 +0907.4579 Instrumentation and Detectors +0907.4588 Phenomenology +0907.4597 +0907.4606 Experiment +0907.4617 +0907.4619 +0907.4624 Lattice +0907.4627 +0907.4644 Phenomenology +0907.4660 +0907.4668 Phenomenology +0907.4673 +0907.4691 +0907.4692 +0907.4696 +0907.4699 Phenomenology +0907.4702 +0907.4704 +0907.4706 Phenomenology +0907.4710 +0907.4713 Phenomenology +0907.4719 +0907.4725 +0907.4729 +0907.4730 +0907.4731 +0907.4733 +0907.4741 +0907.4742 +0907.4787 +0907.4788 +0907.4794 +0907.4796 +0907.4798 Theory +0907.4799 +0907.4802 +0907.4808 Theory +0907.4813 +0907.4814 +0907.4816 Phenomenology +0907.4820 +0907.4825 +0907.4828 +0907.4832 +0907.4833 +0907.4843 +0907.4845 +0907.4921 +0907.4938 Phenomenology +0907.4944 +0907.4963 +0907.5002 +0907.5004 +0907.5014 +0907.5015 Mesoscale and Nanoscale Physics +0907.5049 Experiment +0907.5060 Experiment +0907.5292 Phenomenology +0907.5355 +0907.5376 Phenomenology +0907.5479 +0907.5573 +0908.0052 +0908.0281 Accelerator Physics +0908.0314 Phenomenology +0908.0403 +0908.0544 Lattice +0908.0746 Phenomenology +0908.0751 +0908.1155 Lattice +0908.1334 +0908.1684 Phenomenology +0908.1747 Phenomenology +0908.1766 +0908.1799 +0908.1917 Phenomenology +0908.1951 Lattice +0908.2125 Theory +0908.2294 Phenomenology +0908.2361 +0908.2541 Phenomenology +0908.2549 Atomic Physics +0908.3079 Lattice +0908.3126 Theory +0908.3176 +0908.3178 +0908.3216 Phenomenology +0908.3627 Phenomenology +0908.3677 Theory +0908.3883 Theory +0908.3938 Theory +0908.3985 Phenomenology +0908.4067 +0908.4124 Phenomenology +0908.4173 +0908.4319 Theory +0908.4358 Soft Condensed Matter +0908.4435 +0909.0250 Theory +0909.0350 Theory +0909.0391 +0909.0405 Theory +0909.0455 Phenomenology +0909.0482 Phenomenology +0909.0487 +0909.0582 Lattice +0909.0618 Astrophysics of Galaxies +0909.0689 Theory +0909.1067 Representation Theory +0909.1093 +0909.1912 Astrophysics of Galaxies +0909.2033 +0909.2192 Theory +0909.2328 Disordered Systems and Neural Networks +0909.2462 Materials Science +0909.3209 Other Condensed Matter +0909.3547 Mesoscale and Nanoscale Physics +0910.0687 High Energy Astrophysical Phenomena +0910.1485 Superconductivity +0910.1634 +0910.2024 Data Structures and Algorithms +0910.2053 Algebraic Geometry +0910.3385 Numerical Analysis +0911.0914 Information Retrieval +0911.2273 Algebraic Topology +0911.2763 +0911.2987 Phenomenology +0911.3038 History and Overview +0911.3141 Analysis of PDEs +0911.3152 Differential Geometry +0911.3154 Earth and Planetary Astrophysics +0911.3159 Combinatorics +0911.3162 Computer Science and Game Theory +0911.3170 Earth and Planetary Astrophysics +0911.3183 Materials Science +0911.3186 Materials Science +0911.3189 Logic in Computer Science +0911.3200 Instrumentation and Methods for Astrophysics +0911.3205 Phenomenology +0911.3209 Artificial Intelligence +0911.3210 Symplectic Geometry +0911.3211 +0911.3218 Spectral Theory +0911.3220 Rings and Algebras +0911.3222 Solar and Stellar Astrophysics +0911.3225 Optimization and Control +0911.3226 Medical Physics +0911.3234 Quantum Gases +0911.3241 Networking and Internet Architecture +0911.3242 Theory +0911.3246 Probability +0911.3249 Physics and Society +0911.3253 Quantum Algebra +0911.3261 Quantum Gases +0911.3262 Information Theory +0911.3265 +0911.3271 Earth and Planetary Astrophysics +0911.3273 Mesoscale and Nanoscale Physics +0911.3275 Formal Languages and Automata Theory +0911.3276 Discrete Mathematics +0911.3277 Logic in Computer Science +0911.3283 Formal Languages and Automata Theory +0911.3288 +0911.3291 Data Structures and Algorithms +0911.3293 Statistical Mechanics +0911.3295 Materials Science +0911.3296 Soft Condensed Matter +0911.3298 Neural and Evolutionary Computing +0911.3299 Logic in Computer Science +0911.3301 Other Computer Science +0911.3303 Strongly Correlated Electrons +0911.3304 Learning +0911.3306 Software Engineering +0911.3311 +0911.3318 Information Retrieval +0911.3323 Physics and Society +0911.3326 Statistical Mechanics +0911.3343 Cryptography and Security +0911.3344 Differential Geometry +0911.3347 Information Theory +0911.3349 Instrumentation and Methods for Astrophysics +0911.3350 Combinatorics +0911.3354 Number Theory +0911.3359 Functional Analysis +0911.3366 Analysis of PDEs +0911.3367 Fluid Dynamics +0911.3370 Classical Analysis and ODEs +0911.3374 Classical Analysis and ODEs +0911.3377 Fluid Dynamics +0911.3381 Combinatorics +0911.3383 Instrumentation and Methods for Astrophysics +0911.3386 +cond-mat/0703585 Statistical Mechanics +hep-ph/0511352 Phenomenology +hep-ph/0702120 Phenomenology +hep-th/0609103 Theory +math/0509098 Algebraic Geometry +math/0510566 Rings and Algebras +math/0608127 Algebraic Geometry +math/0608204 Combinatorics +math/0612605 Metric Geometry +q-alg/9511013 Quantum Algebra +quant-ph/0608198 +0708.3835 +0812.3607 +0901.0339 Logic in Computer Science +0901.3036 Spectral Theory +0901.3440 Computational Physics +0902.3396 Mesoscale and Nanoscale Physics +0903.0607 Metric Geometry +0903.1162 Number Theory +0903.3438 Statistics Theory +0904.4187 Theory +astro-ph/0701292 +gr-qc/0703153 +math/0511146 Number Theory +0711.0212 Other Condensed Matter +0801.1059 Combinatorics +0801.4942 +0803.3840 Combinatorics +0804.0472 +0805.0954 Combinatorics +0806.2151 Mesoscale and Nanoscale Physics +0807.3846 General Topology +0807.3890 Quantum Algebra +0810.2589 +0810.4179 Cell Behavior +0810.4692 +0811.0914 General Topology +0812.4325 Mesoscale and Nanoscale Physics +0901.3682 Mesoscale and Nanoscale Physics +0903.0670 Soft Condensed Matter +0903.3703 Analysis of PDEs +0903.4026 Analysis of PDEs +0904.3451 Strongly Correlated Electrons +0905.2171 Machine Learning +0906.0159 Mesoscale and Nanoscale Physics +0906.1711 +0907.0330 Other Condensed Matter +0907.3178 Geometric Topology +0908.2283 Superconductivity +0908.2385 Rings and Algebras +0908.4206 Statistical Mechanics +0909.1728 Materials Science +0909.4829 General Physics +0910.1160 Phenomenology +0910.2296 +0910.3993 Superconductivity +0911.2062 Materials Science +math/0609019 Combinatorics +0704.3177 Number Theory +0708.0920 Group Theory +0712.0029 General Physics +0712.1791 Phenomenology +0801.4026 Phenomenology +0801.4244 Materials Science +0802.2582 Phenomenology +0803.2619 Data Analysis, Statistics and Probability +0804.2800 Phenomenology +0806.0206 Data Analysis, Statistics and Probability +0806.1048 +0806.2750 Chemical Physics +0806.3965 Materials Science +0807.1295 Phenomenology +0807.1650 Materials Science +0808.1290 Phenomenology +0808.1656 General Physics +0808.2298 Phenomenology +0809.0710 Phenomenology +0809.0949 Information Theory +0809.1199 Theory +0809.3298 +0809.4659 Phenomenology +0810.2239 Atomic Physics +0810.2511 Fluid Dynamics +0810.4246 Classical Physics +0811.3830 Commutative Algebra +0811.4281 +0812.1287 Disordered Systems and Neural Networks +0812.3177 Mesoscale and Nanoscale Physics +0901.0160 Mesoscale and Nanoscale Physics +0901.0738 Superconductivity +0901.2893 Mesoscale and Nanoscale Physics +0901.3695 Theory +0901.3784 Superconductivity +0901.4248 Strongly Correlated Electrons +0902.0297 Rings and Algebras +0902.2094 Optics +0902.2450 Optics +0902.3200 +0903.0743 Number Theory +0903.1968 Optics +0903.3205 Instrumentation and Detectors +0903.3336 +0903.3497 Chemical Physics +0903.3737 Phenomenology +0903.5271 Number Theory +0904.0748 Space Physics +0904.0773 +0904.0778 Chaotic Dynamics +0904.0916 Rings and Algebras +0904.1241 Theory +0904.2619 Mesoscale and Nanoscale Physics +0904.3789 Logic in Computer Science +0904.4319 Cosmology and Nongalactic Astrophysics +0904.4342 Optics +0905.0462 Category Theory +0905.0904 High Energy Astrophysical Phenomena +0905.0911 Cosmology and Nongalactic Astrophysics +0905.0922 Geometric Topology +0905.0926 Mesoscale and Nanoscale Physics +0905.0928 Differential Geometry +0905.0931 +0905.0939 Differential Geometry +0905.0943 +0905.0944 +0905.0955 +0905.0958 Atomic Physics +0905.0960 Commutative Algebra +0905.0964 Superconductivity +0905.0965 Biological Physics +0905.0969 Mesoscale and Nanoscale Physics +0905.0977 Analysis of PDEs +0905.0981 Cosmology and Nongalactic Astrophysics +0905.0988 Soft Condensed Matter +0905.0989 Statistics Theory +0905.0991 Quantitative Methods +0905.0992 Probability +0905.0993 Group Theory +0905.0994 Quantitative Methods +0905.0997 Phenomenology +0905.1002 Soft Condensed Matter +0905.1006 +0905.1008 Phenomenology +0905.1009 Representation Theory +0905.1013 Solar and Stellar Astrophysics +0905.1014 Biological Physics +0905.1016 Analysis of PDEs +0905.1018 Experiment +0905.1021 Experiment +0905.1032 Logic +0905.1034 Logic +0905.1036 Strongly Correlated Electrons +0905.1037 Chaotic Dynamics +0905.1045 Formal Languages and Automata Theory +0905.1048 Solar and Stellar Astrophysics +0905.1053 Combinatorics +0905.1054 Numerical Analysis +0905.1055 Functional Analysis +0905.1057 Cosmology and Nongalactic Astrophysics +0905.1064 Combinatorics +0905.1081 +0905.1089 +0905.1090 Commutative Algebra +0905.1091 Dynamical Systems +0905.1092 Dynamical Systems +0905.1093 Computational Geometry +0905.1099 Logic +0905.1100 Logic +0905.1102 Logic +0905.1103 +0905.1106 Optimization and Control +0905.1108 Physics and Society +0905.1116 Rings and Algebras +0905.1117 Commutative Algebra +cs/0601104 Numerical Analysis +hep-th/0203167 Theory +math/0207013 Probability +math/0409592 Algebraic Geometry +math/0508430 Probability +math/0509131 Probability +math/0511093 Combinatorics +math/0606149 Probability +math/0608228 Category Theory +math/0702061 Probability +math/0702232 Probability +0704.0017 +0704.0023 +0704.0059 +0704.0139 +0704.0168 +0704.0175 +0704.0184 +0704.0203 +0704.0207 +0704.0209 +0704.0219 +0704.0221 +0704.0222 +0704.0223 +0704.0225 +0704.0237 +0704.0266 +0704.0267 +0704.0269 +0704.0272 +0704.0276 +0704.0279 +0704.0290 +0704.0307 +0704.0312 +0704.0344 +0704.0356 +0704.0428 +0704.0448 +0704.0452 +0704.0458 +0704.0462 +0704.0463 +0704.0470 +0704.0478 +0704.0535 +0704.0547 +0704.0550 +0704.0552 +0704.0574 +0704.0576 +0704.0586 +0704.0652 +0704.0659 +0704.0675 +0704.0689 +0704.0721 +0704.0740 +0704.0774 +0704.0779 +0704.0789 +0704.0810 +0704.0812 +0704.0819 +0704.0826 +0704.0827 +0704.0835 +0704.0844 +0704.0862 +0704.0873 +0704.0904 +0704.0905 +0704.0908 +0704.0911 +0704.0939 +0704.0944 +0704.0950 +0704.0953 +0704.0958 +0704.0968 +0704.0970 +0704.0973 +0704.0979 +0704.0988 +0704.1012 +0704.1025 +0704.1055 +0704.1094 +0704.1107 +0704.1116 +0704.1129 +0704.1131 +0704.1133 +0704.1151 +0704.1156 +0704.1170 +0704.1189 +0704.1222 +0704.1226 +0704.1237 +0704.1245 +0704.1253 +0704.1275 +0704.1278 +0704.1300 +0704.1306 +0704.1315 +0704.1318 +0704.1325 +0704.1329 +0704.1360 +0704.1388 +0704.1393 +0704.1450 +0704.1465 +0704.1483 +0704.1496 +0704.1498 +0704.1518 +0704.1534 +0704.1570 +0704.1576 +0704.1583 +0704.1587 +0704.1603 +0704.1606 +0704.1614 +0704.1619 +0704.1621 +0704.1630 +0704.1636 +0704.1641 +0704.1652 +0704.1658 +0704.1664 +0704.1666 +0704.1671 +0704.1679 +0704.1681 +0704.1706 +0704.1732 +0704.1741 +0704.1744 +0704.1750 +0704.1762 +0704.1765 +0704.1767 +0704.1770 +0704.1772 +0704.1773 +0704.1813 +0704.1816 +0704.1825 +0704.1858 +0704.1899 +0704.1963 +0704.1968 +0704.2008 +0704.2015 +0704.2057 +0704.2059 +0704.2064 +0704.2068 +0704.2075 +0704.2079 +0704.2086 +0704.2136 +0704.2140 +0704.2141 +0704.2159 +0704.2162 +0704.2178 +0704.2179 +0704.2184 +0704.2186 +0704.2209 +0704.2220 +0704.2226 +0704.2238 +0704.2240 +0704.2305 +0704.2309 +0704.2338 +0704.2345 +0704.2387 +0704.2408 +0704.2413 +0704.2417 +0704.2420 +0704.2421 +0704.2422 +0704.2459 +0704.2486 +0704.2494 +0704.2525 +0704.2532 +0704.2535 +0704.2549 +0704.2557 +0704.2577 +0704.2589 +0704.2603 +0704.2605 +0704.2608 +0704.2636 +0704.2637 +0704.2640 +0704.2642 +0704.2643 +0704.2657 +0704.2671 +0704.2678 +0704.2698 +0704.2705 +0704.2709 +0704.2719 +0704.2738 +0704.2756 +0704.2820 +0704.2828 +0704.2837 +0704.2839 +0704.2850 +0704.2872 +0704.2874 +0704.2888 +0704.2906 +0704.2909 +0704.2921 +0704.2923 +0704.2930 +0704.2938 +0704.2942 +0704.2943 +0704.2958 +0704.2971 +0704.2993 +0704.2997 +0704.3001 +0704.3012 +0704.3026 +0704.3043 +0704.3053 +0704.3064 +0704.3066 +0704.3073 +0704.3077 +0704.3097 +0704.3106 +0704.3108 +0704.3128 +0704.3150 +0704.3166 +0704.3168 +0704.3188 +0704.3200 +0704.3233 +0704.3235 +0704.3360 +0704.3369 +0704.3385 +0704.3437 +0704.3438 +0704.3454 +0704.3455 +0704.3472 +0704.3480 +0704.3488 +0704.3490 +0704.3492 +0704.3524 +0704.3533 +0704.3534 +0704.3554 +0704.3567 +0704.3584 +0704.3597 +0704.3609 +0704.3629 +0704.3670 +0704.3721 +0704.3739 +0704.3743 +0704.3772 +0704.3813 +0704.3851 +0704.3856 +0704.3884 +0704.3910 +0704.3919 +0704.3932 +0704.3941 +0704.3944 +0704.3956 +0704.3960 +0704.3979 +0704.3991 +0705.0014 +0705.0030 +0705.0057 +0705.0065 +0705.0084 +0705.0141 +0705.0153 +0705.0154 +0705.0163 +0705.0166 +0705.0182 +0705.0234 +0705.0272 +0705.0305 +0705.0314 +0705.0328 +0705.0354 +0705.0358 +0705.0359 +0705.0363 +0705.0380 +0705.0402 +0705.0404 +0705.0421 +0705.0441 +0705.0446 +0705.0464 +0705.0475 +0705.0483 +0705.0493 +0705.0512 +0705.0521 +0705.0531 +0705.0536 +0705.0538 +0705.0540 +0705.0574 +0705.0628 +0705.0642 +0705.0645 +0705.0647 +0705.0660 +0705.0685 +0705.0701 +0705.0702 +0705.0707 +0705.0748 +0705.0750 +0705.0780 +0705.0791 +0705.0793 +0705.0851 +0705.0898 +0705.0905 +0705.0910 +0705.0963 +0705.0973 +0705.0978 +0705.0979 +0705.0987 +0705.0988 +0705.0996 +0705.1006 +0705.1022 +0705.1034 +0705.1088 +0705.1096 +0705.1097 +0705.1167 +0705.1189 +0705.1206 +0705.1208 +0705.1278 +0705.1306 +0705.1331 +0705.1339 +0705.1355 +0705.1374 +0705.1417 +0705.1439 +0705.1441 +0705.1478 +0705.1520 +0705.1538 +0705.1539 +0705.1546 +0705.1554 +0705.1577 +0705.1580 +0705.1592 +0705.1659 +0705.1677 +0705.1720 +0705.1721 +0705.1726 +0705.1747 +0705.1752 +0705.1754 +0705.1758 +0705.1796 +0705.1810 +0705.1841 +0705.1846 +0705.1859 +0705.1860 +0705.1861 +0705.1862 +0705.1866 +0705.1895 +0705.1978 +0705.2018 +0705.2036 +0705.2039 +0705.2041 +0705.2117 +0705.2134 +0705.2164 +0705.2196 +0705.2223 +0705.2240 +0705.2242 +0705.2283 +0705.2300 +0705.2308 +0705.2333 +0705.2411 +0705.2442 +0705.2444 +0705.2514 +0705.2528 +0705.2542 +0705.2548 +0705.2552 +0705.2556 +0705.2570 +0705.2598 +0705.2602 +0705.2603 +0705.2674 +0705.2692 +0705.2726 +0705.2730 +0705.2773 +0705.2774 +0705.2776 +0705.2779 +0705.2814 +0705.2853 +0705.2901 +0705.2910 +0705.2936 +0705.2941 +0705.2959 +0705.2971 +0705.3001 +0705.3009 +0705.3023 +0705.3032 +0705.3039 +0705.3042 +0705.3052 +0705.3053 +0705.3054 +0705.3057 +0705.3063 +0705.3066 +0705.3067 +0705.3091 +0705.3100 +0705.3105 +0705.3124 +0705.3158 +0705.3165 +0705.3178 +0705.3228 +0705.3240 +0705.3242 +0705.3244 +0705.3262 +0705.3267 +0705.3269 +0705.3274 +0705.3335 +0705.3336 +0705.3338 +0705.3345 +0705.3375 +0705.3394 +0705.3401 +0705.3403 +0705.3406 +0705.3408 +0705.3431 +0705.3438 +0705.3462 +0705.3464 +0705.3465 +0705.3469 +0705.3478 +0705.3507 +0705.3508 +0705.3514 +0705.3545 +0705.3594 +0705.3611 +0705.3626 +0705.3642 +0705.3681 +0705.3701 +0705.3710 +0705.3717 +0705.3725 +0705.3747 +0705.3765 +0705.3843 +0705.3846 +0705.3865 +0705.3885 +0705.3886 +0705.3901 +0705.3908 +0705.3917 +0705.3940 +0705.3945 +0705.3966 +0705.3970 +0705.3975 +0705.3977 +0705.3984 +0705.4034 +0705.4035 +0705.4061 +0705.4065 +0705.4091 +0705.4092 +0705.4121 +0705.4145 +0705.4252 +0705.4273 +0705.4311 +0705.4343 +0705.4365 +0705.4380 +0705.4397 +0706.0513 +0706.0516 +0706.0519 +0706.0520 +0706.0524 +0706.0542 +0706.0543 +0706.0546 +0706.0547 +0706.0558 +0706.0568 +0706.0569 +0706.0575 +0706.0576 +0706.0613 +0706.0619 +0706.0713 +0706.0727 +0706.0734 +0706.0739 +0706.0763 +0706.0783 +0706.0784 +0706.0808 +0706.0818 +0706.0831 +0706.0838 +0706.0852 +0706.0899 +0706.0914 +0706.0938 +0706.1049 +0706.1239 +0706.1248 +0706.1299 +0706.1332 +0706.1334 +0706.1340 +0706.1357 +0706.1421 +0706.1432 +0706.1537 +0706.1542 +0706.1544 +0706.1551 +0706.1557 +0706.1565 +0706.1578 +0706.1593 +0706.1595 +0706.1601 +0706.1636 +0706.1713 +0706.1762 +0706.1777 +0706.1782 +0706.1787 +0706.1804 +0706.1809 +0706.1828 +0706.1846 +0706.1851 +0706.1909 +0706.1912 +0706.1916 +0706.1939 +0706.1962 +0706.1965 +0706.1975 +0706.1977 +0706.1982 +0706.1987 +0706.3395 +0706.3587 +0706.3699 +0706.3704 +0706.3705 +0706.3967 +0706.4024 +0706.4028 +0706.4033 +0706.4065 +0706.4080 +0706.4083 +0706.4087 +0707.0766 Instrumentation and Detectors +0707.1340 +0707.1345 +0707.1347 +0707.1354 +0707.1484 +0707.1544 +0707.1613 +0707.1647 +0707.1652 +0707.1662 +0707.1663 +0707.1701 +0707.1782 +0707.1844 +0707.1850 +0707.1856 +0707.1895 +0707.1908 +0707.1914 +0707.2049 +0707.2053 +0707.2094 +0707.2097 +0707.2187 +0707.2255 +0707.2368 +0707.2450 +0707.2468 +0707.2499 +0707.2537 +0707.2560 +0707.2953 +0707.3578 +0707.3620 +0707.3639 +0707.3645 +0707.3649 +0707.3669 +0707.3757 +0707.3847 +0707.3934 +0707.3939 +0707.4473 +0707.4477 +0707.4498 +0707.4627 +0707.4655 +0707.4662 +0708.0044 +0708.0064 +0708.0123 +0708.0146 +0708.0148 +0708.0403 Theory +0708.1515 +0708.1523 +0708.1808 +0708.1817 +0708.1853 +0708.1858 +0708.1883 +0708.1945 +0708.1998 +0708.2030 +0708.2042 +0708.2135 +0708.2164 +0708.2220 +0708.2239 +0708.3255 +0708.3372 +0708.3444 +0708.3508 +0708.3510 +0708.3547 +0708.3579 +0708.3605 +0708.3606 +0708.3677 +0708.3757 +0708.3758 +0708.3800 +0708.3832 +0708.3846 +0708.3849 +0708.3850 +0708.3873 +0708.3877 +0708.3906 +0708.4118 +0708.4185 +0708.4204 +0708.4207 +0709.0190 +0709.0477 +0709.0487 +0709.0525 +0709.0526 +0709.0530 +0709.0735 +0709.0750 +0709.0761 +0709.0814 +0709.0826 +0709.0829 +0709.0846 +0709.0874 +0709.0886 +0709.0933 +0709.0982 +0709.1043 +0709.1124 +0709.1150 +0709.1259 +0709.1278 +0709.1279 +0709.1305 +0709.1337 +0709.1367 +0709.1377 +0709.1437 +0709.1445 +0709.1494 +0709.1622 +0709.1692 +0709.1709 +0709.1713 +0709.1766 +0709.1839 +0709.1926 +0709.2145 +0709.3794 +0709.3808 +0709.3814 +0709.3824 +0709.3895 +0709.3988 +0709.3991 +0709.3996 +0709.4026 +0709.4234 +0709.4288 +0709.4400 +0709.4410 +0709.4417 +0709.4488 +0709.4505 +0709.4511 +0709.4526 +0709.4531 +0710.0090 +0710.0182 +0710.0188 +0710.0189 +0710.0190 +0710.0207 +0710.0210 +0710.0259 +0710.0288 +0710.0339 +0710.0345 +0710.0366 +0710.0392 +0710.0397 +0710.0418 +0710.0424 +0710.0440 +0710.0545 +0710.0558 +0710.0589 +0710.0597 +0710.0675 +0710.1630 +0710.1648 +0710.1663 +0710.1745 +0710.1756 +0710.1891 +0710.1896 +0710.1906 +0710.5765 +0710.5801 +0710.5822 +0710.5864 +0710.5938 +0711.0005 +0711.0065 +0711.0107 +0711.0113 +0711.0160 +0711.0177 +0711.0482 +0711.0518 +0711.0520 +0711.0551 +0711.0706 +0711.0742 +0711.0743 +0711.0744 +0711.0747 +0711.0750 +0711.1163 +0711.1171 +0711.1223 +0711.1381 +0711.1498 +0711.1554 +0711.1560 +0711.1590 +0711.1597 Phenomenology +0711.1842 +0711.2091 +0711.2690 +0711.2753 +0711.2825 +0711.2929 +0711.2954 +0711.2979 +0711.3001 +0711.3008 +0711.3014 +0711.3046 +0711.3047 +0711.3104 +0711.3148 +0711.3158 +0711.3168 +0711.3180 +0711.3265 +0711.3281 +0711.3459 +0711.3556 +0711.3631 Phenomenology +0711.3650 +0711.3695 +0711.3739 +0711.3758 +0711.3792 +0711.3886 +0711.3980 +0711.3990 +0711.4003 +0711.4038 +0711.4045 +0711.4046 +0711.4095 +0711.4116 +0711.4126 +0711.4138 +0711.4140 +0711.4163 +0711.4242 +0711.4255 +0711.4263 +0711.4278 +0711.4307 +0711.4326 +0711.4355 +0711.4361 +0711.4410 +0711.4420 +0711.4575 +0711.4583 +0711.4587 +0711.4590 +0711.4602 +0711.4617 +0711.4700 +0711.4715 +0711.4726 +0711.4801 +0711.4844 +0711.4927 +0711.4968 +0711.4996 +0712.0003 +0712.0009 +0712.0381 +0712.1038 +0712.1100 +0712.1559 +0712.1562 +0712.1630 +0712.1633 +0712.1787 +0712.1813 +0712.1832 +0712.1841 +0712.1937 +0712.1949 +0712.1985 +0712.2042 +0712.2043 +0712.2135 +0712.2672 +0712.2745 +0712.2751 +0712.2772 +0712.2856 +0712.2862 +0712.2876 +0712.2973 +0712.3024 +0712.3052 +0712.3070 +0712.3075 +0712.3160 +0712.3269 +0712.3303 +0712.3322 +0712.3441 +0712.3471 +0712.4041 +0712.4082 +0712.4117 Representation Theory +0712.4145 +0712.4186 +0712.4203 +0712.4239 +0712.4242 +0712.4256 +0712.4264 +0712.4352 +0712.4380 +0801.0024 +0801.0039 +0801.0040 +0801.0057 +0801.0068 +0801.0166 +0801.0227 +0801.0266 +0801.0280 +0801.0358 +0801.0441 +0801.0490 +0801.0510 +0801.0602 +0801.0607 +0801.0647 +0801.0699 +0801.0706 +0801.0928 +0801.0953 +0801.0954 +0801.0989 +0801.1017 +0801.1031 +0801.1034 +0801.1051 +0801.1071 +0801.1101 +0801.1127 +0801.1143 +0801.1211 +0801.1227 +0801.1279 +0801.1325 +0801.1407 +0801.1449 +0801.1491 +0801.1546 +0801.1582 +0801.1604 +0801.1668 +0801.1677 +0801.1926 +0801.1986 +0801.2007 +0801.2019 +0801.2041 +0801.2140 +0801.2172 +0801.2178 +0801.2285 +0801.2417 +0801.2471 +0801.2484 +0801.2504 +0801.2571 +0801.2573 +0801.2659 +0801.2684 +0801.2687 +0801.2692 +0801.2713 +0801.2809 +0801.2870 +0801.2874 +0801.2923 +0801.2968 +0801.3028 +0801.3129 +0801.3205 +0801.3251 +0801.3286 +0801.3295 +0801.3342 +0801.3367 +0801.3420 +0801.3432 +0801.3433 +0801.3463 +0801.3525 +0801.3585 +0801.3596 +0801.3658 +0801.3667 +0801.3676 +0801.3758 +0801.3791 +0801.3818 +0801.3863 +0801.4029 +0801.4050 +0801.4163 Data Analysis, Statistics and Probability +0801.4187 +0801.4197 +0801.4208 +0801.4233 +0801.4309 +0801.4373 +0801.4388 +0801.4390 +0801.4502 +0801.4546 +0801.4565 +0801.4583 +0801.4618 +0801.4657 +0801.4673 +0801.4772 +0801.4895 +0801.4924 +0802.0053 +0802.0084 +0802.0129 +0802.0132 +0802.0142 +0802.0167 +0802.0247 +0802.0296 +0802.0301 +0802.0360 +0802.0395 +0802.0471 +0802.0481 +0802.0505 +0802.0508 +0802.0546 +0802.0582 +0802.0588 +0802.0599 +0802.0648 +0802.0676 +0802.0706 +0802.0707 +0802.0815 +0802.0821 +0802.0859 +0802.0910 +0802.0957 +0802.1004 +0802.1037 +0802.1074 +0802.1090 +0802.1144 +0802.1160 +0802.1170 +0802.1235 +0802.1239 +0802.1309 +0802.1331 +0802.1333 +0802.1337 +0802.1346 +0802.1374 +0802.1442 +0802.1446 +0802.1507 +0802.1523 +0802.1533 +0802.1614 +0802.1694 +0802.1715 +0802.1724 +0802.1742 +0802.1765 +0802.1775 +0802.1789 +0802.1824 +0802.1873 +0802.1944 +0802.2017 +0802.2164 +0802.2210 +0802.2260 +0802.2292 +0802.2302 +0802.2417 +0802.2460 +0802.2523 +0802.2534 +0802.2540 +0802.2551 +0802.2558 +0802.2714 +0802.2717 +0802.2804 +0802.2957 +0802.3030 +0802.3109 +0802.3217 +0802.3226 +0802.3315 +0802.3322 +0802.3423 +0802.3524 +0802.3562 +0802.3566 +0802.3680 +0802.3700 +0802.3701 +0802.3704 +0802.3787 +0802.3815 +0802.3845 +0802.3897 +0802.3898 +0802.4100 +0802.4136 +0802.4151 +0802.4196 +0802.4210 +0802.4232 +0802.4234 +0802.4251 +0802.4340 +0802.4397 +0802.4399 +0802.4403 +0802.4407 +0803.0021 +0803.0109 +0803.0256 +0803.0257 +0803.0312 +0803.0322 +0803.0531 +0803.0557 +0803.0577 +0803.0612 +0803.0656 +0803.0694 +0803.0721 +0803.0746 +0803.0761 +0803.0859 +0803.1005 +0803.1019 +0803.1081 +0803.1097 +0803.1286 +0803.1407 +0803.1409 +0803.1419 +0803.1431 +0803.1438 +0803.1444 +0803.1488 +0803.1491 +0803.1640 +0803.1679 +0803.1725 +0803.1735 +0803.1737 +0803.1750 +0803.1765 +0803.1795 +0803.1796 +0803.1835 +0803.1865 +0803.1970 +0803.2051 +0803.2059 +0803.2120 +0803.2130 +0803.2148 +0803.2313 +0803.2335 +0803.2349 +0803.2468 +0803.2498 +0803.2505 +0803.2513 Theory +0803.2701 +0803.2702 +0803.2721 +0803.2735 +0803.2757 +0803.2872 +0803.2877 +0803.2892 +0803.2944 +0803.2983 +0803.3036 +0803.3075 +0803.3083 +0803.3084 +0803.3091 +0803.3155 +0803.3215 +0803.3323 +0803.3457 +0803.3465 +0803.3624 +0803.3627 +0803.3653 +0803.3793 +0803.3794 +0803.3836 +0803.3893 +0803.3897 +0803.3929 +0803.4039 +0803.4061 +0803.4076 +0803.4089 +0803.4100 +0803.4219 +0803.4274 +0803.4345 +0803.4372 +0803.4406 +0803.4443 +0803.4505 +0804.0019 +0804.0029 +0804.0110 +0804.0161 +0804.0183 Quantum Algebra +0804.0250 +0804.0278 +0804.0285 +0804.0389 +0804.0420 +0804.0425 +0804.0426 +0804.0521 +0804.0533 +0804.0620 +0804.0832 +0804.0869 +0804.0955 +0804.0965 +0804.0983 +0804.1055 +0804.1068 +0804.1106 Dynamical Systems +0804.1149 +0804.1330 +0804.1473 +0804.1487 +0804.1533 +0804.1548 +0804.1570 +0804.1574 +0804.1765 +0804.1827 +0804.1841 +0804.1925 +0804.1980 +0804.2094 +0804.2141 +0804.2144 +0804.2147 +0804.2177 +0804.2183 +0804.2256 +0804.2368 +0804.2440 +0804.2448 +0804.2457 +0804.2475 +0804.2494 +0804.2501 +0804.2529 +0804.2604 +0804.2645 +0804.2668 +0804.2738 +0804.2775 +0804.2783 +0804.2803 +0804.2878 +0804.2889 +0804.2896 +0804.2918 +0804.2925 +0804.2959 +0804.2971 +0804.3017 +0804.3095 +0804.3235 +0804.3276 +0804.3404 +0804.3470 +0804.3526 +0804.3573 +0804.3720 +0804.3798 +0804.3810 +0804.3896 +0804.3987 +0804.3998 +0804.4041 +0804.4157 +0804.4176 +0804.4197 +0804.4219 +0804.4236 +0804.4274 +0804.4340 +0804.4343 +0804.4433 +0804.4488 +0804.4491 +0804.4554 +0804.4596 +0804.4686 +0804.4739 +0804.4874 +0804.4875 Number Theory +0805.0014 +0805.0017 +0805.0169 +0805.0196 +0805.0258 +0805.0310 +0805.0312 +0805.0413 +0805.0414 +0805.0489 +0805.0593 +0805.0735 +0805.0777 +0805.3900 Representation Theory +0805.4456 Phenomenology +0806.0711 Materials Science +0806.2484 Strongly Correlated Electrons +0807.1075 Phenomenology +0807.3207 +0809.2866 Rings and Algebras +0809.2968 Information Theory +0809.3338 Other Condensed Matter +0810.0752 +0810.2853 Number Theory +0810.5014 Differential Geometry +0811.1695 +0811.4090 Quantum Algebra +0811.4540 Instrumentation and Detectors +0811.4577 Instrumentation and Detectors +0812.1098 Instrumentation and Detectors +0812.1801 +0812.3430 Other Condensed Matter +0901.1770 Experiment +0901.2516 +0901.4463 +0901.4959 +0902.2010 Phenomenology +0902.3202 +0903.0003 Theory +0903.0992 Computers and Society +0903.1370 +0903.2054 Theory +0903.2915 Analysis of PDEs +0903.3570 Other Condensed Matter +0903.4821 +0903.4843 +0903.5135 Combinatorics +0904.0075 Phenomenology +0904.1895 Lattice +0904.2655 Theory +0904.2682 Phenomenology +0904.2787 +0905.0633 Phenomenology +0905.2466 Theory +0905.3460 +0905.3786 Algebraic Geometry +0905.3978 +0906.2215 Differential Geometry +0906.2279 Classical Analysis and ODEs +0906.2555 +0906.3199 Computational Complexity +0906.3737 Information Theory +0906.3740 Dynamical Systems +0906.3746 +0906.3747 Mesoscale and Nanoscale Physics +0906.3763 Combinatorics +0906.3768 Cryptography and Security +0906.3769 Cryptography and Security +0906.3770 Computer Vision and Pattern Recognition +0906.3771 Networking and Internet Architecture +0906.3772 Software Engineering +0906.3776 +0906.3778 Information Theory +0906.3781 General Mathematics +0906.3782 Information Theory +0906.3785 Functional Analysis +0906.3790 Phenomenology +0906.3798 +0906.3804 Probability +0906.3814 Group Theory +0906.3820 Materials Science +0906.3829 Statistics Theory +0906.3831 Optics +0906.3832 Hardware Architecture +0906.3834 Hardware Architecture +0906.3835 Phenomenology +0906.3839 Rings and Algebras +0906.3843 Cryptography and Security +0906.3844 Adaptation and Self-Organizing Systems +0906.3851 Differential Geometry +0906.3853 Formal Languages and Automata Theory +0906.3856 Optics +0906.3857 Discrete Mathematics +0906.3859 Astrophysics of Galaxies +0906.3863 +0906.3864 Information Theory +0906.3867 Cosmology and Nongalactic Astrophysics +0906.3873 Combinatorics +0906.3874 +0906.3876 Probability +0906.3882 Logic +0906.3883 Information Theory +0906.3884 Space Physics +0906.3887 Information Theory +0906.3888 Information Theory +0906.3889 Information Theory +0906.3891 Number Theory +0906.3895 Cryptography and Security +0906.3899 Cosmology and Nongalactic Astrophysics +0906.3901 Operator Algebras +0906.3903 Mesoscale and Nanoscale Physics +0906.3904 General Physics +0906.3907 Differential Geometry +0906.3914 Chemical Physics +0906.3916 Software Engineering +0906.3917 Exactly Solvable and Integrable Systems +0906.3920 Programming Languages +0906.3921 Software Engineering +0906.3922 Atomic Physics +0906.3924 Software Engineering +0906.3925 Other Computer Science +0906.3926 Artificial Intelligence +0906.3927 Optics +0906.3928 Optics +0906.3930 Software Engineering +0906.3932 Experiment +0906.3933 Algebraic Geometry +0906.3935 Methodology +0906.3936 Subcellular Processes +0906.3943 Geometric Topology +0906.3946 Combinatorics +0906.3952 Statistics Theory +0906.3953 Methodology +0906.3956 Cryptography and Security +0906.3961 Phenomenology +0906.3966 Performance +0906.3969 High Energy Astrophysical Phenomena +0906.3971 Optics +0906.3974 Optics +0906.3975 Optics +0906.3979 Methodology +0906.3980 +0906.3986 Strongly Correlated Electrons +0906.3987 Solar and Stellar Astrophysics +0906.3993 Combinatorics +0906.3994 Logic in Computer Science +0906.3997 Spectral Theory +0906.4000 Lattice +0906.4001 Dynamical Systems +0906.4003 Dynamical Systems +0906.4006 Dynamical Systems +0906.4008 Information Theory +0906.4009 Numerical Analysis +0906.4010 Functional Analysis +0906.4012 Information Theory +0906.4013 Methodology +0906.4016 Experiment +0906.4018 +0906.4019 Physics and Society +0906.4025 Commutative Algebra +0906.4026 Information Retrieval +0906.4032 Learning +0906.4037 Materials Science +0906.4039 Fluid Dynamics +0906.4040 Astrophysics of Galaxies +0906.4044 Information Retrieval +0906.4049 Phenomenology +0906.4072 Mesoscale and Nanoscale Physics +0906.4083 Geometric Topology +0906.4084 Algebraic Geometry +0906.4088 Optics +0906.4093 Algebraic Geometry +astro-ph/0703539 +astro-ph/9807192 +cond-mat/0403052 Mesoscale and Nanoscale Physics +gr-qc/0608041 +hep-ex/0111036 Experiment +hep-th/0606001 Theory +math-ph/0608017 +math/0610956 Symplectic Geometry +math/0612097 Classical Analysis and ODEs +math/0612382 Probability +math/0703697 Probability +nucl-th/0612054 +physics/0503044 Instrumentation and Detectors +0804.1401 Dynamical Systems +0811.4149 Molecular Networks +0901.2699 +0902.0811 Mesoscale and Nanoscale Physics +0903.1910 Optics +0904.0678 Mesoscale and Nanoscale Physics +0904.0850 Number Theory +0905.2123 +0905.4776 Statistical Mechanics +0906.3439 Theory +0906.5169 Superconductivity +0908.1353 Group Theory +0908.1428 Differential Geometry +0908.2068 Atomic Physics +0909.2549 Differential Geometry +0909.2551 Theory +0909.2914 Superconductivity +math-ph/0609075 +math/0206230 Optimization and Control +0709.4389 Physics and Society +0801.1617 Spectral Theory +0804.0720 +0804.1359 Strongly Correlated Electrons +0806.2848 Differential Geometry +0809.3779 +0809.4291 Neurons and Cognition +0810.1694 Functional Analysis +0812.4384 Mesoscale and Nanoscale Physics +0901.1300 Atomic Physics +0902.2016 Solar and Stellar Astrophysics +0902.2233 Materials Science +0903.0762 Representation Theory +0903.0983 Strongly Correlated Electrons +0905.0512 +0906.3211 +cond-mat/0403651 Strongly Correlated Electrons +0802.0448 Combinatorics +0807.3087 Superconductivity +0809.2887 Strongly Correlated Electrons +0809.4274 Superconductivity +0809.4777 +0810.0430 Statistics Theory +0810.5072 Theory +0811.1709 +0811.1876 Materials Science +0811.2845 Strongly Correlated Electrons +0812.4573 Optics +0812.4645 Superconductivity +0902.1792 Data Structures and Algorithms +0904.1409 Information Theory +0904.3757 Analysis of PDEs +0904.4558 Cosmology and Nongalactic Astrophysics +0905.0975 Theory +0906.4107 Strongly Correlated Electrons +0907.4298 Chaotic Dynamics +0909.3413 Instrumentation and Methods for Astrophysics +0910.0091 Numerical Analysis +0708.1409 +0805.3535 Superconductivity +0806.4850 Complex Variables +0807.4477 +0808.3749 Theory +0810.4586 Disordered Systems and Neural Networks +0811.1369 Number Theory +0812.1354 Strongly Correlated Electrons +0812.1533 Strongly Correlated Electrons +0812.1965 Phenomenology +0812.2551 Materials Science +0903.0426 +0903.1399 Theory +0903.2065 Theory +cs/0701009 Computational Geometry +hep-ph/0607290 Phenomenology +math/0408066 Geometric Topology +math/0412317 Dynamical Systems +math/0607718 Logic +0706.0973 Differential Geometry +0710.3983 Numerical Analysis +0904.4448 +0905.3327 Number Theory +0908.3717 +0908.4008 Solar and Stellar Astrophysics +0910.1074 Analysis of PDEs +0912.3797 Phenomenology +0912.4126 Instrumentation and Methods for Astrophysics +0912.4127 Instrumentation and Methods for Astrophysics +0912.4171 Phenomenology +0912.4747 Combinatorics +0912.4748 Combinatorics +0912.4753 Logic +0912.4755 Instrumentation and Methods for Astrophysics +0912.4757 Theory +0912.4758 Number Theory +0912.4765 Probability +0912.4767 +0912.4768 Probability +0912.4781 High Energy Astrophysical Phenomena +0912.4783 Analysis of PDEs +0912.4784 Probability +0912.4788 Materials Science +0912.4794 Materials Science +0912.4798 Data Structures and Algorithms +0912.4803 Algebraic Geometry +0912.4805 Materials Science +0912.4806 Differential Geometry +0912.4807 +0912.4810 Superconductivity +0912.4812 Probability +0912.4839 Analysis of PDEs +0912.4841 Phenomenology +0912.4845 Number Theory +0912.4855 Dynamical Systems +0912.4857 High Energy Astrophysical Phenomena +0912.4859 Solar and Stellar Astrophysics +0912.4868 Mesoscale and Nanoscale Physics +0912.4870 Solar and Stellar Astrophysics +0912.4872 Information Theory +0912.4875 K-Theory and Homology +0912.4877 Programming Languages +0912.4878 Programming Languages +0912.4879 Artificial Intelligence +0912.4880 Multimedia +0912.4881 Multimedia +0912.4882 Human-Computer Interaction +0912.4887 Algebraic Geometry +0912.4894 Phenomenology +0912.4896 Computation +0912.4899 Superconductivity +0912.4903 Superconductivity +0912.4904 Number Theory +0912.4906 Superconductivity +0912.4909 Probability +hep-th/9910093 Theory +math/0602570 Differential Geometry +0710.4368 Algebraic Topology +0804.4398 Representation Theory +0808.1874 Superconductivity +0812.1152 Algebraic Geometry +0902.3767 Statistical Mechanics +0903.1020 +0903.1931 Statistical Mechanics +0903.4019 Optimization and Control +0904.1785 Theory +0906.2732 Phenomenology +0906.4763 +0909.1354 Atmospheric and Oceanic Physics +0909.2881 +0909.2889 Populations and Evolution +0909.3080 Computers and Society +hep-th/0510258 Theory +math/0602148 Group Theory +0704.3252 Geophysics +0710.0895 +0712.2623 +0712.4095 Mesoscale and Nanoscale Physics +0802.4317 Applications +0804.4420 Classical Analysis and ODEs +0806.0727 Dynamical Systems +0807.2092 Phenomenology +0807.4855 Algebraic Geometry +0808.1458 Quantum Algebra +0808.3643 Phenomenology +0809.0914 Numerical Analysis +0809.2338 +0811.1937 Mesoscale and Nanoscale Physics +0812.0034 +0812.0403 Mesoscale and Nanoscale Physics +0812.2327 Populations and Evolution +0901.1730 +0901.2762 Mesoscale and Nanoscale Physics +0902.0012 Strongly Correlated Electrons +0902.3745 Classical Analysis and ODEs +0902.4372 +0903.1007 +0903.1652 +0903.3709 Analysis of PDEs +0903.3866 Complex Variables +0903.4894 Theory +0905.1204 Atomic Physics +0905.1536 Theory +0905.1838 Theory +0906.0317 Theory +0906.3649 Statistical Mechanics +0907.1728 Information Retrieval +0907.3780 Computational Complexity +0907.3856 Complex Variables +0907.4419 Geometric Topology +0908.0654 Astrophysics of Galaxies +0908.1247 Materials Science +0908.1644 +0908.1654 +0908.1790 Phenomenology +0908.1793 Geophysics +0908.1798 Probability +0908.1803 +0908.1809 Strongly Correlated Electrons +0908.1812 Solar and Stellar Astrophysics +0908.1814 General Physics +0908.1815 General Physics +0908.1816 Theory +0908.1821 Functional Analysis +0908.1825 Geophysics +0908.1828 Atmospheric and Oceanic Physics +0908.1833 Statistical Mechanics +0908.1836 Statistics Theory +0908.1837 Analysis of PDEs +0908.1838 Statistics Theory +0908.1847 Statistics Theory +0908.1849 Statistics Theory +0908.1852 Soft Condensed Matter +0908.1854 Statistics Theory +0908.1857 +0908.1866 Functional Analysis +0908.1870 Phenomenology +0908.1872 Rings and Algebras +0908.1875 +0908.1878 Soft Condensed Matter +0908.1882 Statistics Theory +0908.1890 Statistics Theory +0908.1895 Statistics Theory +0908.1903 Statistical Mechanics +0908.1905 Space Physics +0908.1909 Probability +0908.1912 Statistics Theory +0908.1924 Statistical Mechanics +0908.1935 Probability +0908.1940 Statistics Theory +0908.1945 General Physics +0908.1946 Commutative Algebra +0908.1950 +0908.1958 +0908.1965 Geometric Topology +chao-dyn/9809006 Chaotic Dynamics +chao-dyn/9809007 Chaotic Dynamics +chao-dyn/9809008 Chaotic Dynamics +chao-dyn/9809011 Chaotic Dynamics +chao-dyn/9809012 Chaotic Dynamics +chao-dyn/9809013 Chaotic Dynamics +chao-dyn/9810002 Chaotic Dynamics +chao-dyn/9810013 Chaotic Dynamics +chao-dyn/9812011 Chaotic Dynamics +chao-dyn/9910030 Chaotic Dynamics +chao-dyn/9911003 Chaotic Dynamics +cond-mat/0202493 Mesoscale and Nanoscale Physics +hep-ph/0406070 Phenomenology +math/0610643 Category Theory +math/0701413 Probability +nlin/0003013 Chaotic Dynamics +nlin/0004024 Chaotic Dynamics +nlin/0007037 Chaotic Dynamics +nlin/0101048 Chaotic Dynamics +nlin/0206040 Chaotic Dynamics +nlin/0406054 Chaotic Dynamics +nlin/0503058 Chaotic Dynamics +nlin/0507046 Chaotic Dynamics +nlin/0510040 Chaotic Dynamics +nucl-th/0007013 +quant-ph/0406177 +quant-ph/9810037 +quant-ph/9906065 +0705.0806 Commutative Algebra +0707.3018 Analysis of PDEs +0710.4997 Probability +0711.4529 Algebraic Geometry +0805.4131 Algebraic Geometry +0806.4475 Mesoscale and Nanoscale Physics +0807.2486 Probability +0807.3462 Probability +0809.3333 Theory +0810.4200 Materials Science +0811.1192 Materials Science +0812.0203 Statistical Mechanics +0901.3335 +0902.3057 General Physics +0903.0223 General Physics +0903.0361 Dynamical Systems +0903.3730 Optics +0903.3780 Classical Analysis and ODEs +0903.4482 Other Condensed Matter +cs/0605099 Information Theory +physics/0702155 General Physics +0706.0797 +0707.2175 Differential Geometry +0708.2344 Instrumentation and Detectors +0711.0291 +0711.1312 Instrumentation and Detectors +0711.3190 Accelerator Physics +0711.3592 Instrumentation and Detectors +0711.4008 Phenomenology +0712.0215 +0712.0858 Accelerator Physics +0712.1912 Theory +0712.1961 +0712.2140 +0712.2860 Theory +0712.2867 Theory +0712.2976 Theory +0712.3036 Theory +0712.3046 Theory +0801.1313 Theory +0801.1561 Theory +0802.0452 Analysis of PDEs +0803.1995 Theory +0803.2041 Theory +0803.2099 Theory +0803.2462 Theory +0803.2481 Theory +0803.2681 Theory +0803.2683 Theory +0804.0503 Theory +0804.1813 Combinatorics +0804.2745 Differential Geometry +0804.4531 +0804.4555 Theory +0804.4575 Theory +0804.4721 Theory +0805.0564 Algebraic Topology +0805.1157 Theory +0805.1180 Theory +0805.2042 Geometric Topology +0805.2764 Theory +0805.2875 Theory +0805.2898 Theory +0805.2933 Theory +0805.2960 Theory +0805.2973 Theory +0805.3003 Theory +0805.3025 Theory +0805.4729 Theory +0805.4766 Theory +0806.0054 Theory +0806.0181 Theory +0806.0363 Theory +0806.0407 Theory +0806.0668 Theory +0806.0685 Theory +0806.0700 Theory +0806.0707 Theory +0806.0741 Theory +0806.0963 Theory +0806.0975 Theory +0806.1047 Theory +0806.1085 Theory +0806.1334 Theory +0806.1420 Theory +0806.1477 Theory +0806.1519 Theory +0806.1786 Theory +0806.1788 Theory +0806.1953 Theory +0806.1954 Theory +0806.2651 +0807.4246 +0808.3832 Theory +0809.0739 Computational Finance +0809.4275 Probability +0810.0101 Theory +0811.0146 Learning +0811.0607 Theory +0811.1573 +0811.1794 Theory +0811.1913 +0811.3831 Mesoscale and Nanoscale Physics +0812.0354 Theory +0812.2440 Probability +0812.4082 Phenomenology +0901.0713 Theory +0901.3063 +0901.4839 Mesoscale and Nanoscale Physics +0902.0717 Theory +0902.2205 Theory +0902.4091 Phenomenology +0902.4526 Theory +0902.4646 Theory +0903.1781 +0903.2472 Theory +0903.2829 Cosmology and Nongalactic Astrophysics +0904.0475 Theory +0904.0612 +0904.1200 Cosmology and Nongalactic Astrophysics +0904.1202 Instrumentation and Methods for Astrophysics +0904.1205 Cosmology and Nongalactic Astrophysics +0904.1206 Cosmology and Nongalactic Astrophysics +0904.1207 Astrophysics of Galaxies +0904.1604 Phenomenology +0904.2161 Phenomenology +0904.2169 Phenomenology +0904.3195 Experiment +0904.4279 Classical Physics +0904.4626 Cosmology and Nongalactic Astrophysics +0904.4827 Physics and Society +0905.2075 Phenomenology +0905.4003 Phenomenology +0905.4233 Phenomenology +0906.0199 Combinatorics +0906.0472 Operator Algebras +0906.0981 Cosmology and Nongalactic Astrophysics +0906.3335 Phenomenology +0906.3370 Phenomenology +0906.3635 Fluid Dynamics +0906.4281 Probability +0907.0938 Statistical Mechanics +0907.1294 Phenomenology +0907.1922 Phenomenology +0907.3709 Phenomenology +0907.5115 Phenomenology +0908.0264 Strongly Correlated Electrons +0908.0271 +0908.0342 Phenomenology +0908.0470 Phenomenology +0908.1132 +0908.1420 Group Theory +0908.2622 Mesoscale and Nanoscale Physics +0908.2936 Mesoscale and Nanoscale Physics +0908.3104 Mesoscale and Nanoscale Physics +0908.3604 High Energy Astrophysical Phenomena +0909.0646 +0909.1707 +0909.1715 Theory +0909.1790 Theory +0909.2657 Logic +0909.3003 Phenomenology +0909.3590 +0909.3625 Superconductivity +0909.4088 Phenomenology +0909.4150 +0909.4221 +0909.4269 Theory +0909.4355 Phenomenology +0909.4363 Phenomenology +0909.4385 Physics and Society +0909.4447 Theory +0909.4775 Phenomenology +0910.0191 Superconductivity +0910.2388 Mesoscale and Nanoscale Physics +0911.1113 High Energy Astrophysical Phenomena +0911.1893 Solar and Stellar Astrophysics +0911.3505 +0911.4620 Theory +0911.5138 Complex Variables +0912.0521 Statistical Mechanics +0912.0952 Experiment +0912.1457 Discrete Mathematics +0912.1587 +0912.1604 Popular Physics +0912.1612 Theory +0912.1618 Machine Learning +0912.1619 Experiment +0912.1622 Experiment +0912.1623 Discrete Mathematics +0912.1631 Analysis of PDEs +0912.1635 Complex Variables +0912.1638 Algebraic Geometry +0912.1647 Methodology +0912.1649 Symbolic Computation +0912.1655 Information Theory +0912.1658 Information Theory +0912.1660 Optimization and Control +0912.1661 Information Theory +0912.1664 Optimization and Control +0912.1666 Soft Condensed Matter +0912.1673 Optimization and Control +0912.1676 Mesoscale and Nanoscale Physics +0912.1679 Solar and Stellar Astrophysics +0912.1685 Number Theory +0912.1688 Optics +0912.1691 Soft Condensed Matter +0912.1692 Number Theory +0912.1693 Probability +0912.1699 Probability +0912.1700 Materials Science +0912.1702 Number Theory +0912.1703 Computational Physics +0912.1705 Computational Physics +0912.1706 Analysis of PDEs +0912.1709 Computational Physics +0912.1711 Rings and Algebras +0912.1713 Computational Physics +0912.1716 Phenomenology +0912.1719 Probability +0912.1720 Solar and Stellar Astrophysics +0912.1721 Solar and Stellar Astrophysics +0912.1724 Computational Physics +0912.1727 Adaptation and Self-Organizing Systems +0912.1731 Differential Geometry +0912.1733 Analysis of PDEs +0912.1735 Probability +0912.1736 Soft Condensed Matter +0912.1749 Number Theory +0912.1756 General Physics +0912.1757 Commutative Algebra +0912.1758 +0912.1761 Phenomenology +0912.1764 Rings and Algebras +0912.1767 Digital Libraries +0912.1768 Information Theory +0912.1776 Computational Complexity +0912.1783 Dynamical Systems +0912.1785 Optics +0912.1788 Exactly Solvable and Integrable Systems +0912.1790 Information Theory +0912.1792 Analysis of PDEs +0912.1803 Experiment +0912.1805 Networking and Internet Architecture +0912.1809 Differential Geometry +0912.1810 Human-Computer Interaction +0912.1812 Plasma Physics +0912.1815 Cryptography and Security +0912.1819 Combinatorics +0912.1820 Computation and Language +0912.1821 Medical Physics +0912.1822 Learning +0912.1824 Statistics Theory +0912.1826 Information Theory +0912.1828 Information Retrieval +0912.1829 Information Retrieval +0912.1830 Computer Vision and Pattern Recognition +0912.1832 Data Structures and Algorithms +0912.1835 Distributed, Parallel, and Cluster Computing +0912.1838 Human-Computer Interaction +0912.1841 Risk Management +0912.1842 Number Theory +astro-ph/0106152 +astro-ph/0109241 +astro-ph/0206001 +astro-ph/0410594 +astro-ph/0602297 +astro-ph/0607427 +astro-ph/0608454 +astro-ph/0610051 +astro-ph/0612029 +astro-ph/9504032 +astro-ph/9704030 +astro-ph/9806110 +gr-qc/0609075 +hep-ex/0412053 Experiment +hep-ph/0112247 Phenomenology +hep-ph/0506174 Phenomenology +hep-ph/9311219 Phenomenology +hep-th/0006064 Theory +hep-th/0010246 Theory +hep-th/0211155 Theory +hep-th/0306086 Theory +hep-th/9505079 Theory +math-ph/0702061 +math/0212154 Combinatorics +math/0307355 Algebraic Geometry +math/0309348 Algebraic Geometry +math/0510245 Algebraic Geometry +math/0703202 Algebraic Geometry +quant-ph/9904002 +0705.0247 Complex Variables +0708.2060 Theory +0708.3143 Theory +0710.5665 Quantitative Methods +0711.0389 +0711.3689 +0712.2265 +0801.2673 +0802.1788 +0802.4386 Theory +0803.2708 Other Condensed Matter +0803.2805 Materials Science +0804.2316 Instrumentation and Detectors +0804.4235 Differential Geometry +0805.2411 +0805.2783 Superconductivity +0806.1841 Phenomenology +0806.1865 +0806.1933 Superconductivity +0806.2468 Theory +0806.2672 Theory +0806.3141 Analysis of PDEs +0806.4451 Information Theory +0807.0242 Classical Physics +0807.2283 Phenomenology +0807.5134 Theory +0808.0283 Theory +0808.0351 Theory +0808.1019 Theory +0808.1168 Theory +0808.3936 Theory +0808.3941 +0809.0507 Theory +0809.0841 Phenomenology +0809.1073 Phenomenology +0809.1249 Analysis of PDEs +0809.1592 Theory +0809.1749 Phenomenology +0809.2471 Theory +0809.2707 Theory +0809.3129 Phenomenology +0809.3312 Phenomenology +0809.3367 +0809.3376 +0809.3786 Theory +0809.4156 Theory +0809.4396 Theory +0809.4819 +0809.4879 +0809.4904 Phenomenology +0809.4928 Theory +0809.5258 Theory +0810.1661 Theory +0810.1662 Theory +0810.2193 Theory +0810.2295 Superconductivity +0810.2299 Phenomenology +0810.2384 Group Theory +0810.2620 Theory +0810.2707 Theory +0810.4267 Phenomenology +0810.5327 Strongly Correlated Electrons +0810.5508 Statistical Mechanics +0810.5509 Theory +0811.0608 Theory +0811.0992 +0811.1503 Theory +0811.2044 Classical Analysis and ODEs +0811.2067 Phenomenology +0811.2466 +0811.2873 Theory +0811.3067 Theory +0811.3319 Algebraic Topology +0811.4129 +0811.4253 Theory +0811.4372 Physics and Society +0811.4503 Theory +0811.4607 Theory +0812.0097 Theory +0812.0152 Theory +0812.0308 Phenomenology +0812.0367 Theory +0812.0511 Phenomenology +0812.0745 Soft Condensed Matter +0812.0801 Theory +0812.1046 Strongly Correlated Electrons +0812.1266 Theory +0812.2274 Statistical Mechanics +0812.2403 Lattice +0812.2564 Phenomenology +0812.3170 +0812.3212 Mesoscale and Nanoscale Physics +0812.3679 Dynamical Systems +0812.3683 Superconductivity +0812.3803 Phenomenology +0812.4112 Theory +0812.4204 Theory +0812.4241 Soft Condensed Matter +0812.4287 Theory +0812.4437 Theory +0901.0008 Phenomenology +0901.0046 Experiment +0901.0267 Theory +0901.0776 +0901.0785 Theory +0901.0806 +0901.1301 +0901.1666 Theory +0901.1814 Theory +0901.2133 Phenomenology +0901.2484 Portfolio Management +0901.2491 Theory +0901.4692 Physics Education +0902.1051 Theory +0902.1282 Chaotic Dynamics +0902.1912 Group Theory +0902.2165 Statistics Theory +0902.3055 Mesoscale and Nanoscale Physics +0902.3526 Machine Learning +0902.4859 Strongly Correlated Electrons +0903.0585 +0903.1757 +0903.3746 Geometric Topology +0903.3832 +0903.3918 Phenomenology +0903.4111 Solar and Stellar Astrophysics +0903.4200 Computational Physics +0903.4242 +0903.4453 Numerical Analysis +0903.4456 Representation Theory +0903.4457 Algebraic Topology +0903.4462 Algebraic Topology +0903.4464 Analysis of PDEs +0903.4465 Probability +0903.4468 Plasma Physics +0903.4469 Instrumentation and Methods for Astrophysics +0903.4474 Algebraic Topology +0903.4475 Pricing of Securities +0903.4477 Strongly Correlated Electrons +0903.4478 Pricing of Securities +0903.4484 Operator Algebras +0903.4486 +0903.4489 Mesoscale and Nanoscale Physics +0903.4490 Differential Geometry +0903.4495 Geometric Topology +0903.4503 Number Theory +0903.4505 Instrumentation and Methods for Astrophysics +0903.4506 Instrumentation and Methods for Astrophysics +0903.4507 Instrumentation and Methods for Astrophysics +0903.4509 Instrumentation and Methods for Astrophysics +0903.4512 Quantum Algebra +0903.4515 Rings and Algebras +0903.4520 +0903.4522 Optics +0903.4523 Dynamical Systems +0903.4526 Information Theory +0903.4533 Group Theory +0903.4534 Geophysics +0903.4535 Commutative Algebra +0903.4539 Classical Analysis and ODEs +0903.4550 Statistics Theory +0903.4552 Number Theory +0903.4554 Information Theory +0903.4555 Functional Analysis +0903.4557 Solar and Stellar Astrophysics +0903.4558 Functional Analysis +0903.4560 Popular Physics +0903.4561 Superconductivity +0903.4562 Optimization and Control +0903.4567 Combinatorics +0903.4577 Optimization and Control +0903.4578 History and Overview +0903.4585 Algebraic Topology +0903.4588 Cosmology and Nongalactic Astrophysics +0903.4589 Algebraic Topology +0903.4597 Algebraic Topology +0903.4602 Algebraic Topology +0903.4604 Rings and Algebras +0903.4607 Algebraic Topology +0903.4608 Functional Analysis +0903.4612 Statistics Theory +0903.4613 Statistics Theory +0903.4617 Dynamical Systems +0903.4620 Methodology +0903.4622 General Physics +0903.4624 Analysis of PDEs +0903.4626 Algebraic Geometry +0903.4628 Combinatorics +0903.4629 Differential Geometry +0903.4631 Theory +0903.4633 Phenomenology +0903.4636 Statistics Theory +0903.4639 +0903.4640 Rings and Algebras +0903.4642 Statistics Theory +0903.4645 Rings and Algebras +0903.4646 Experiment +0903.4649 Symplectic Geometry +0903.4650 Rings and Algebras +0903.4652 Rings and Algebras +0903.4654 Phenomenology +0903.4655 Other Condensed Matter +0903.4661 Functional Analysis +0903.4662 Algebraic Topology +0903.4664 Neurons and Cognition +0903.4666 Rings and Algebras +0903.4667 Algebraic Topology +0903.4673 Instrumentation and Detectors +0903.4676 Metric Geometry +0903.4679 Analysis of PDEs +astro-ph/0610378 +astro-ph/0611463 +hep-lat/0610123 Lattice +hep-ph/0611373 Phenomenology +hep-th/0306152 Theory +hep-th/9111018 Theory +hep-th/9209059 Theory +hep-th/9311187 Theory +hep-th/9409184 Theory +hep-th/9502084 Theory +hep-th/9701143 Theory +hep-th/9710049 Theory +hep-th/9801035 Theory +hep-th/9807209 Theory +math/0507183 Algebraic Topology +math/0509001 Algebraic Topology +physics/0411156 Accelerator Physics +quant-ph/0601031 +0704.1321 Fluid Dynamics +0706.1404 Probability +0706.1993 Probability +0707.1458 Operator Algebras +0709.0492 +0709.1728 History and Philosophy of Physics +0711.0347 Fluid Dynamics +0711.3097 Optics +0711.3480 Rings and Algebras +0803.4373 +0804.2020 +0804.4845 Chemical Physics +0806.3716 Soft Condensed Matter +0806.4792 Popular Physics +0807.0949 Statistical Mechanics +0807.1802 +0807.1867 Soft Condensed Matter +0807.3611 Algebraic Geometry +0807.4568 +0808.2584 Hardware Architecture +0808.3960 +0809.0312 Other Condensed Matter +0809.0706 Statistical Mechanics +0809.0997 Strongly Correlated Electrons +0809.2454 Analysis of PDEs +0809.3271 Dynamical Systems +0810.1767 +0810.3034 Strongly Correlated Electrons +0810.3901 Functional Analysis +0811.3157 +0812.2664 General Finance +0901.0417 +0901.0658 Number Theory +0901.2489 Solar and Stellar Astrophysics +0901.2520 Instrumentation and Methods for Astrophysics +0901.2566 Solar and Stellar Astrophysics +0901.2577 Astrophysics of Galaxies +0901.2586 General Finance +0901.2588 Information Theory +0901.2594 Soft Condensed Matter +0901.2596 Optics +0901.2598 Materials Science +0901.2601 Algebraic Geometry +0901.2606 Information Theory +0901.2612 Symbolic Computation +0901.2617 Materials Science +0901.2623 Other Condensed Matter +0901.2624 Combinatorics +0901.2625 Mesoscale and Nanoscale Physics +0901.2630 Accelerator Physics +0901.2632 Solar and Stellar Astrophysics +0901.2637 Materials Science +0901.2640 Physics and Society +0901.2651 Materials Science +0901.2652 Metric Geometry +0901.2655 Combinatorics +0901.2658 Number Theory +0901.2660 Group Theory +0901.2667 Soft Condensed Matter +0901.2668 Optimization and Control +0901.2669 Representation Theory +0901.2670 +0901.2682 Numerical Analysis +0901.2683 Analysis of PDEs +0901.2685 Networking and Internet Architecture +0901.2693 Phenomenology +0901.2694 General Physics +0901.2696 Operator Algebras +0901.2708 +0901.2709 Classical Analysis and ODEs +0901.2710 Quantum Algebra +0901.2714 Probability +0901.2715 Analysis of PDEs +0901.2731 Computer Science and Game Theory +0901.2735 Machine Learning +0901.2739 Earth and Planetary Astrophysics +0901.2741 +0901.2742 Distributed, Parallel, and Cluster Computing +0901.2747 Data Structures and Algorithms +0901.2751 Data Structures and Algorithms +0901.2752 General Physics +0901.2764 Information Theory +0901.2767 Instrumentation and Detectors +0901.2768 Information Theory +0901.2771 Networking and Internet Architecture +0901.2776 Probability +0901.2780 Solar and Stellar Astrophysics +0901.2790 Probability +0901.2794 General Physics +0901.2796 Pattern Formation and Solitons +0901.2799 Statistical Mechanics +0901.2816 General Physics +0901.2817 Solar and Stellar Astrophysics +0901.2820 Materials Science +0901.2825 Physics and Society +0901.2827 Biological Physics +0901.2831 Rings and Algebras +0901.2838 Information Theory +0901.2840 Probability +0901.2844 Chemical Physics +0901.2851 Probability +0901.2852 Phenomenology +0901.2856 Experiment +0901.2861 +0901.2869 Astrophysics of Galaxies +0901.2871 Algebraic Topology +0901.2875 Mesoscale and Nanoscale Physics +0901.2877 Optimization and Control +0901.2878 Biological Physics +0901.2879 Astrophysics of Galaxies +0901.2880 Applications +0901.2883 Dynamical Systems +0901.2887 Probability +0901.2890 Other Condensed Matter +0901.2900 Data Structures and Algorithms +0901.2902 Probability +0901.2904 Dynamical Systems +0901.2906 Computational Complexity +0901.2908 Analysis of PDEs +0901.2912 Information Theory +0901.2916 +0901.2922 Information Theory +cond-mat/0005082 Mesoscale and Nanoscale Physics +cs/0604027 Computation and Language +cs/0606006 Computation and Language +hep-th/0101116 Theory +hep-th/0201198 Theory +math-ph/0408061 +math/0509353 Probability +math/0601531 Differential Geometry +math/0606236 Analysis of PDEs +math/0608549 Algebraic Geometry +math/0610231 Operator Algebras +math/0611305 Commutative Algebra +math/0611499 Differential Geometry +physics/0505052 Fluid Dynamics +physics/0701333 Physics and Society +quant-ph/0107072 +quant-ph/0201046 +quant-ph/0402047 +quant-ph/0608014 +0704.0322 Pattern Formation and Solitons +0704.2551 Statistics Theory +0705.0825 +0706.0473 Phenomenology +0707.1017 Lattice +0707.1313 Logic +0709.2366 +0709.3474 +0710.3250 Rings and Algebras +0711.2912 +0712.1232 +0712.2571 Mesoscale and Nanoscale Physics +0712.4111 Phenomenology +0712.4129 Instrumentation and Detectors +0802.0236 Phenomenology +0802.0977 Phenomenology +0802.4315 Mesoscale and Nanoscale Physics +0803.2491 Superconductivity +0803.3189 Theory +0803.3860 +0804.2128 +0804.3088 Probability +0804.3848 +0804.4321 Optics +0805.3131 Phenomenology +0806.0638 Symplectic Geometry +0806.0733 Phenomenology +0806.1104 Phenomenology +0806.1710 Materials Science +0806.2330 Phenomenology +0806.3989 Phenomenology +0806.4816 Plasma Physics +0807.1047 +0807.2480 Phenomenology +0807.2739 Plasma Physics +0807.3188 +0807.4595 +0808.0075 Information Theory +0808.0557 Lattice +0808.1307 Analysis of PDEs +0808.1541 +0808.1917 +0808.2042 Theory +0809.3216 Lattice +0809.4459 +0810.0937 Theory +0810.3714 Optics +0810.3837 Strongly Correlated Electrons +0810.5660 Theory +0810.5666 Theory +0811.0842 Theory +0811.1135 +0811.1139 +0811.1558 +0811.2110 K-Theory and Homology +0811.3001 Phenomenology +0811.3533 Theory +0811.4741 +0812.0883 +0812.1307 +0812.1478 Phenomenology +0812.1698 Phenomenology +0812.1734 +0812.1795 Mesoscale and Nanoscale Physics +0812.2067 Theory +0812.2681 +0812.3331 Phenomenology +0812.3663 Theory +0812.3877 +0812.4742 +0901.0393 Theory +0901.0398 Superconductivity +0901.0450 Theory +0901.1023 +0901.1437 Phenomenology +0901.2401 Information Theory +0901.2534 Phenomenology +0901.3369 Statistical Mechanics +0901.3587 Phenomenology +0901.4033 Lattice +0902.0295 Theory +0902.0814 Phenomenology +0902.1040 Mathematical Software +0902.1213 +0902.1230 Strongly Correlated Electrons +0902.2396 High Energy Astrophysical Phenomena +0902.2841 Soft Condensed Matter +0902.3578 Phenomenology +0902.3610 Theory +0902.4358 +0902.4557 Disordered Systems and Neural Networks +0902.4754 +0903.0141 Theory +0903.0301 Phenomenology +0903.0377 Theory +0903.0790 Phenomenology +0903.1542 Theory +0903.1646 Theory +0903.1833 Theory +0903.2164 Phenomenology +0903.2455 Theory +0903.3019 Phenomenology +0903.3720 Phenomenology +0903.3803 Theory +0903.3903 Theory +0903.4371 Phenomenology +0903.4885 Soft Condensed Matter +0903.4889 Theory +0904.0597 Phenomenology +0904.1223 Superconductivity +0904.1250 Theory +0904.2248 Superconductivity +0904.2833 Theory +0904.3598 +0904.3850 General Physics +0905.0554 General Physics +0905.1771 Theory +0905.2724 Physics and Society +0905.3652 Strongly Correlated Electrons +0905.3956 Instrumentation and Methods for Astrophysics +0905.4109 Instrumentation and Detectors +0905.4157 Experiment +0905.4368 +0905.4404 Earth and Planetary Astrophysics +0905.4511 Algebraic Geometry +0905.4513 Group Theory +0905.4516 Phenomenology +0905.4518 Algebraic Geometry +0905.4521 Experiment +0905.4524 Soft Condensed Matter +0905.4526 Geometric Topology +0905.4531 Cosmology and Nongalactic Astrophysics +0905.4533 Representation Theory +0905.4535 Functional Analysis +0905.4536 Strongly Correlated Electrons +0905.4543 Algebraic Geometry +0905.4545 Information Theory +0905.4559 Algebraic Topology +0905.4567 Logic in Computer Science +0905.4574 Algebraic Geometry +0905.4578 Physics and Society +0905.4581 Cryptography and Security +0905.4582 Materials Science +0905.4588 Number Theory +0905.4592 Software Engineering +0905.4596 Programming Languages +0905.4598 Mathematical Software +0905.4599 Materials Science +0905.4601 Artificial Intelligence +0905.4603 Materials Science +0905.4604 Other Computer Science +0905.4605 Databases +0905.4608 Other Computer Science +0905.4610 Digital Libraries +0905.4611 Other Computer Science +0905.4612 Logic in Computer Science +0905.4613 Software Engineering +0905.4615 Probability +0905.4629 Quantitative Methods +0905.4635 Algebraic Topology +0905.4644 Rings and Algebras +0905.4658 Experiment +0905.4659 Experiment +0905.4662 Quantitative Methods +0905.4671 Phenomenology +0905.4674 Chemical Physics +0905.4675 Mesoscale and Nanoscale Physics +0905.4676 Chemical Physics +0905.4681 Operator Algebras +0905.4684 Information Theory +0905.4690 Experiment +0905.4698 Combinatorics +0905.4700 Information Theory +0905.4703 +0905.4705 High Energy Astrophysical Phenomena +0905.4709 Atmospheric and Oceanic Physics +0905.4710 Materials Science +0905.4712 Experiment +0905.4713 Artificial Intelligence +0905.4719 Atmospheric and Oceanic Physics +0905.4724 Theory +astro-ph/0001100 +astro-ph/0003087 +astro-ph/0004255 +astro-ph/0005110 +astro-ph/0006217 +astro-ph/0010245 +astro-ph/0107210 +astro-ph/0309460 +astro-ph/0404206 +astro-ph/0409292 +astro-ph/0410416 +astro-ph/0411450 +astro-ph/0411620 +astro-ph/0412180 +astro-ph/0501113 +astro-ph/0502260 +astro-ph/0503346 +astro-ph/0508078 +astro-ph/0510784 +astro-ph/0601079 +astro-ph/0605303 +astro-ph/0606226 +astro-ph/0607631 +astro-ph/0608126 +astro-ph/0608127 +astro-ph/0608557 +astro-ph/0611836 +astro-ph/0612162 +astro-ph/0701246 +astro-ph/0703316 +astro-ph/9512058 +astro-ph/9601005 +astro-ph/9604010 +astro-ph/9609013 +astro-ph/9701243 +astro-ph/9707150 +astro-ph/9709197 +astro-ph/9902148 +astro-ph/9902318 +astro-ph/9909402 +astro-ph/9910164 +astro-ph/9911161 +hep-ph/9506272 Phenomenology +hep-th/0606076 Theory +hep-th/9807083 Theory +math/0408141 Number Theory +math/0512094 Analysis of PDEs +math/0601620 K-Theory and Homology +nlin/0606027 Chaotic Dynamics +0705.4212 Materials Science +0709.0018 Statistical Mechanics +0709.0102 +0710.0142 Information Theory +0710.1157 +0710.3965 Combinatorics +0712.2245 Information Theory +0802.1811 +0803.0362 Representation Theory +0803.2635 General Finance +0803.3089 Biological Physics +0805.3715 Analysis of PDEs +0806.2557 Statistical Mechanics +0806.3917 Phenomenology +0807.4781 Statistical Mechanics +0808.2266 Statistics Theory +0809.0987 +0809.2548 +0809.4500 Optimization and Control +0810.1442 Category Theory +0810.2528 +0810.4969 Complex Variables +0810.5057 Information Retrieval +0811.2227 Soft Condensed Matter +0811.3980 +0811.4458 Learning +0811.4553 Analysis of PDEs +0812.0350 Probability +0812.1527 Phenomenology +0812.1966 +0901.3125 Disordered Systems and Neural Networks +0901.3855 Optics +0901.4326 Strongly Correlated Electrons +0901.4883 Phenomenology +0902.2357 Combinatorics +0902.3452 Astrophysics of Galaxies +0903.0093 Chaotic Dynamics +0903.0455 Phenomenology +0903.0982 Phenomenology +0903.2017 Quantum Gases +0903.2100 Discrete Mathematics +0903.2357 +0903.4707 Theory +0904.0654 Theory +0904.3224 +0904.3724 Phenomenology +0904.3972 Disordered Systems and Neural Networks +0905.1185 Quantum Algebra +0905.1217 +0905.1345 Theory +0905.4754 Phenomenology +0905.4940 Chaotic Dynamics +0906.0703 +0906.0791 Chaotic Dynamics +0906.2730 Theory +0906.3046 Theory +0906.4236 Combinatorics +0906.4541 Probability +0906.4783 Theory +0906.5422 Theory +0906.5541 Phenomenology +0906.5561 Numerical Analysis +0907.0457 +0907.0628 Chaotic Dynamics +0907.0719 Cosmology and Nongalactic Astrophysics +0907.0918 Number Theory +0907.2693 Probability +0907.4174 Theory +0907.4430 Other Condensed Matter +0907.4966 Lattice +0907.5235 Experiment +0908.0115 Phenomenology +0908.0134 Phenomenology +0908.0337 +0908.0502 Phenomenology +0908.1401 Phenomenology +0908.1762 Number Theory +0908.2231 Networking and Internet Architecture +0908.2363 Computational Complexity +0908.2396 Statistical Mechanics +0908.2924 Soft Condensed Matter +0908.3483 Quantum Gases +0908.4471 General Physics +0909.1019 Geometric Topology +0909.2983 Number Theory +0909.5457 Learning +0910.0428 Number Theory +0910.0942 Experiment +0910.3217 Fluid Dynamics +0910.3219 Fluid Dynamics +0910.3221 Statistics Theory +0910.3222 Quantum Gases +0910.3224 Other Condensed Matter +0910.3226 Cell Behavior +0910.3227 Analysis of PDEs +0910.3228 Fluid Dynamics +0910.3230 +0910.3232 Fluid Dynamics +0910.3238 Fluid Dynamics +0910.3239 Cosmology and Nongalactic Astrophysics +0910.3240 Fluid Dynamics +0910.3241 Numerical Analysis +0910.3242 Fluid Dynamics +0910.3243 Data Structures and Algorithms +0910.3244 General Physics +0910.3245 Fluid Dynamics +0910.3247 Fluid Dynamics +0910.3248 Fluid Dynamics +0910.3249 Fluid Dynamics +0910.3254 General Topology +0910.3258 Pricing of Securities +0910.3259 Fluid Dynamics +0910.3263 Fluid Dynamics +0910.3265 Fluid Dynamics +0910.3266 Probability +0910.3269 Fluid Dynamics +0910.3270 Soft Condensed Matter +0910.3272 Fluid Dynamics +0910.3274 Experiment +0910.3275 Information Theory +0910.3276 Superconductivity +0910.3279 Experiment +0910.3281 Superconductivity +0910.3282 Computational Complexity +0910.3284 Superconductivity +0910.3285 Functional Analysis +0910.3286 General Physics +0910.3289 +0910.3292 Data Structures and Algorithms +0910.3294 Experiment +0910.3303 General Physics +0910.3304 Solar and Stellar Astrophysics +0910.3310 Experiment +0910.3312 Dynamical Systems +0910.3313 Strongly Correlated Electrons +0910.3319 Mesoscale and Nanoscale Physics +0910.3320 Theory +0910.3321 Programming Languages +0910.3322 Algebraic Topology +0910.3324 Analysis of PDEs +0910.3327 Phenomenology +0910.3329 Experiment +0910.3331 Number Theory +0910.3336 Geophysics +0910.3342 Algebraic Geometry +0910.3344 Number Theory +0910.3348 Computer Vision and Pattern Recognition +0910.3349 Data Structures and Algorithms +0910.3352 +0910.3353 Experiment +0910.3358 Theory +0910.3360 Analysis of PDEs +0910.3365 Computational Physics +0910.3366 Computational Physics +0910.3369 Functional Analysis +0910.3371 Probability +0910.3374 Cosmology and Nongalactic Astrophysics +0910.3378 Experiment +0910.3380 General Physics +0910.3382 Experiment +0910.3392 Experiment +0910.3395 Representation Theory +0910.3396 Commutative Algebra +0910.3398 High Energy Astrophysical Phenomena +0910.3401 Space Physics +0910.3404 Experiment +0910.3408 General Physics +0910.3409 Phenomenology +0910.3413 +0910.3414 Symplectic Geometry +0910.3416 +0910.3420 Experiment +0910.3425 +0910.3428 Number Theory +0910.3431 Experiment +0910.3432 Analysis of PDEs +0910.3433 Instrumentation and Detectors +0910.3437 Phenomenology +0910.3438 Fluid Dynamics +0910.3439 Experiment +0910.3440 Experiment +0910.3442 Combinatorics +0910.3443 Dynamical Systems +0910.3447 +0910.3453 Fluid Dynamics +0910.3455 Quantum Gases +0910.3461 Soft Condensed Matter +0910.3462 Experiment +0910.3463 Group Theory +0910.3464 Superconductivity +0910.3475 Disordered Systems and Neural Networks +0910.3479 Instrumentation and Detectors +0910.3482 Number Theory +0910.3483 Statistical Mechanics +0910.3486 Instrumentation and Methods for Astrophysics +0910.3489 Experiment +0910.3492 Fluid Dynamics +0910.3499 +0910.3505 Quantum Algebra +0910.3506 Algebraic Geometry +0910.3515 Analysis of PDEs +0910.3516 Genomics +0910.3520 High Energy Astrophysical Phenomena +0910.3523 Mesoscale and Nanoscale Physics +0910.3525 Differential Geometry +0910.3526 Atomic Physics +0910.3529 Methodology +0910.3531 Complex Variables +0910.3532 Methodology +0910.3535 Complex Variables +0910.3537 Methodology +0910.3540 Representation Theory +0910.3543 Methodology +0910.3545 +0910.3546 Methodology +0910.3548 Methodology +0910.3549 Experiment +0910.3550 Experiment +0910.3551 Materials Science +0910.3555 Analysis of PDEs +0910.3557 Strongly Correlated Electrons +0910.3562 Atomic Physics +0910.3564 Experiment +0910.3569 Algebraic Geometry +0910.3570 Chaotic Dynamics +0910.3572 Quantitative Methods +0910.3573 Analysis of PDEs +0910.3575 Experiment +0910.3581 Atomic Physics +0910.3587 +0910.3588 Analysis of PDEs +0910.3609 Differential Geometry +0910.3612 Experiment +0910.3620 +0910.3639 Combinatorics +0910.3641 History and Overview +0910.3646 Differential Geometry +0910.3647 General Topology +0910.3648 Probability +0910.3649 +0910.3654 General Topology +0910.3657 Accelerator Physics +0910.3658 Information Theory +0910.3660 Number Theory +math/0702821 Statistics Theory +quant-ph/0301106 +quant-ph/0302156 +quant-ph/0304040 +quant-ph/0311194 +quant-ph/0407114 +quant-ph/0407118 +quant-ph/0502103 +quant-ph/0505006 +quant-ph/0505028 +quant-ph/0505137 +quant-ph/0507172 +quant-ph/0508018 +quant-ph/0512200 +quant-ph/0607016 +quant-ph/0607053 +quant-ph/0703227 +0705.1243 Representation Theory +0705.1827 Representation Theory +0707.0951 +0708.1953 +0710.5234 Classical Analysis and ODEs +0801.2191 Theory +0802.2344 Differential Geometry +0805.1349 Probability +0805.3952 +0805.3955 +0807.1233 Superconductivity +0807.4462 Optimization and Control +0808.2697 +0810.3435 General Physics +0810.4418 +0810.4502 Algebraic Topology +0811.2089 Phenomenology +0811.3733 Representation Theory +0812.0724 Representation Theory +0812.1195 Combinatorics +0812.4263 Statistical Mechanics +0901.0193 Functional Analysis +0901.3110 Superconductivity +0904.0477 Statistical Mechanics +0904.3229 +0904.3653 Optimization and Control +0904.3873 Plasma Physics +0905.2107 Superconductivity +0905.4176 +0906.4135 Differential Geometry +0907.0191 Strongly Correlated Electrons +0907.3469 Materials Science +0908.0536 Cosmology and Nongalactic Astrophysics +0908.0569 Group Theory +0908.4060 Atomic Physics +0909.1998 Mesoscale and Nanoscale Physics +0909.2831 Solar and Stellar Astrophysics +0909.3460 Strongly Correlated Electrons +0910.0651 Information Theory +0910.2022 +0910.2057 Group Theory +0910.2496 Quantum Algebra +0910.2995 Dynamical Systems +0910.3170 Biological Physics +0910.3288 Functional Analysis +0910.3384 Experiment +0910.3694 Solar and Stellar Astrophysics +0910.3696 Analysis of PDEs +0910.3700 Geometric Topology +0910.3705 Functional Analysis +0910.3706 Mesoscale and Nanoscale Physics +0910.3707 Mesoscale and Nanoscale Physics +0910.3708 Mesoscale and Nanoscale Physics +0910.3712 Fluid Dynamics +0910.3713 +0910.3715 Number Theory +0910.3718 Fluid Dynamics +0910.3719 Computational Complexity +0910.3726 Differential Geometry +0910.3729 Mesoscale and Nanoscale Physics +0910.3732 Statistical Mechanics +0910.3733 Instrumentation and Methods for Astrophysics +0910.3739 Algebraic Geometry +0910.3743 Cosmology and Nongalactic Astrophysics +0910.3752 Methodology +0910.3754 Methodology +0910.3756 Methodology +0910.3757 Optimization and Control +0910.3758 Methodology +0910.3762 Phenomenology +0910.3765 Cryptography and Security +0910.3766 Logic in Computer Science +0910.3768 Information Theory +0910.3769 Probability +0910.3770 Cosmology and Nongalactic Astrophysics +0910.3775 Probability +0910.3779 Complex Variables +0910.3781 Experiment +0910.3783 Atomic Physics +0910.3784 +0910.3787 Complex Variables +0910.3792 Complex Variables +0910.3799 Atomic Physics +0910.3805 Soft Condensed Matter +0910.3807 Soft Condensed Matter +0910.3810 Cell Behavior +0910.3811 Robotics +0910.3814 +0910.3817 Quantum Algebra +0910.3818 +0910.3824 Experiment +0910.3825 Probability +0910.3828 Superconductivity +0910.3832 Dynamical Systems +0910.3840 Information Theory +0910.3841 Probability +0910.3842 Algebraic Topology +0910.3844 Differential Geometry +0910.3847 Algebraic Geometry +0910.3848 Computational Engineering, Finance, and Science +0910.3849 Materials Science +0910.3850 +0910.3853 Solar and Stellar Astrophysics +0910.3854 +0910.3862 Theory +0910.3863 Classical Analysis and ODEs +0910.3867 Functional Analysis +0910.3872 Differential Geometry +0910.3879 Number Theory +0910.3880 Computational Engineering, Finance, and Science +0910.3882 Classical Analysis and ODEs +0910.3883 Multiagent Systems +0910.3889 +0910.3891 Numerical Analysis +0910.3894 Phenomenology +0910.3895 +0910.3898 Number Theory +0910.3899 +0910.3900 Mesoscale and Nanoscale Physics +0910.3901 Soft Condensed Matter +0910.3908 Combinatorics +0910.3912 Functional Analysis +0910.3913 Software Engineering +0910.3923 +0910.3930 Experiment +0910.3937 Complex Variables +gr-qc/0211063 +hep-ph/0412191 Phenomenology +physics/0508206 Physics and Society +physics/0610222 Classical Physics +quant-ph/0610028 +0709.4337 +0710.5639 Probability +0712.3515 Rings and Algebras +0801.1410 Computational Complexity +0802.0763 Algebraic Geometry +0802.2004 General Finance +0804.0321 Probability +0804.1916 Phenomenology +0806.1743 Strongly Correlated Electrons +0808.2342 Classical Physics +0810.2086 Statistical Mechanics +0810.3079 Probability +0812.4167 +0812.4905 Machine Learning +0902.1305 General Physics +0903.5059 Phenomenology +0904.1549 +0905.4498 Quantum Gases +0906.3989 +0907.4892 Classical Physics +0908.1630 +dg-ga/9710015 Differential Geometry +math-ph/0312005 +math/0406493 Algebraic Geometry +math/0503563 Algebraic Geometry +math/0506430 Algebraic Geometry +math/0605090 Commutative Algebra +math/0608157 Commutative Algebra +math/0612221 Geometric Topology +physics/0005031 General Physics +0708.4006 Algebraic Geometry +0709.4327 Statistical Mechanics +0710.2243 Combinatorics +0711.2186 Algebraic Geometry +0801.3909 Theory +0801.4101 Phenomenology +0805.3153 +0805.3487 Chaotic Dynamics +0806.4027 Dynamical Systems +0806.4700 Materials Science +0808.0436 Algebraic Geometry +0808.3616 Computation and Language +0809.0291 +0809.2569 Mesoscale and Nanoscale Physics +0809.3692 Experiment +0809.3777 Chaotic Dynamics +0809.3827 Operator Algebras +0809.4003 +0810.1545 Theory +0810.1617 +0810.1912 Geometric Topology +0810.3586 Phenomenology +0810.3649 +0810.5218 Phenomenology +0810.5427 Atomic Physics +0811.3453 +0811.4514 Spectral Theory +0812.0626 +0812.2468 Phenomenology +0812.3246 Phenomenology +0812.3553 Mesoscale and Nanoscale Physics +0812.3574 Strongly Correlated Electrons +0812.3735 Phenomenology +0812.3913 +0901.0701 Experiment +0901.2190 Phenomenology +0901.2285 Phenomenology +0901.2438 Experiment +0901.2539 Phenomenology +0901.2756 Phenomenology +0901.2760 Phenomenology +0901.2763 Experiment +0901.2798 Phenomenology +0901.2800 Phenomenology +0901.3016 +0901.3183 Physics and Society +0901.3690 Experiment +0901.4061 Experiment +0901.4484 Accelerator Physics +0901.4763 Phenomenology +0901.4915 Plasma Physics +0902.0163 Phenomenology +0902.0519 Experiment +0902.0772 Phenomenology +0902.0781 Phenomenology +0902.0991 Cosmology and Nongalactic Astrophysics +0902.1461 Phenomenology +0902.1593 Phenomenology +0902.2018 Phenomenology +0902.2712 Phenomenology +0902.2955 Mesoscale and Nanoscale Physics +0902.4109 Phenomenology +0902.4244 High Energy Astrophysical Phenomena +0902.4845 Disordered Systems and Neural Networks +0903.0507 Applications +0903.0613 Materials Science +0903.1318 Dynamical Systems +0903.1477 Theory +0903.1593 Astrophysics of Galaxies +0903.1830 Phenomenology +0903.2393 Experiment +0903.2856 Phenomenology +0903.2912 Astrophysics of Galaxies +0903.3355 Accelerator Physics +0903.3625 Phenomenology +0903.3994 High Energy Astrophysical Phenomena +0903.4080 Lattice +0904.0609 Phenomenology +0904.0961 +0904.2554 Cosmology and Nongalactic Astrophysics +0904.3008 Phenomenology +0904.3062 Data Structures and Algorithms +0904.3071 Phenomenology +0904.3187 Plasma Physics +0904.3201 Cosmology and Nongalactic Astrophysics +0904.3266 Atomic Physics +0904.3333 Astrophysics of Galaxies +0904.3621 +0904.3686 +0904.3775 Superconductivity +0904.4113 +0904.4193 Computer Science and Game Theory +0905.0726 Phenomenology +0905.0861 +0905.1033 Experiment +0905.1787 Cosmology and Nongalactic Astrophysics +0905.1943 Theory +0905.2414 Superconductivity +0905.3825 Cosmology and Nongalactic Astrophysics +0905.4115 Theory +0905.4239 Phenomenology +0905.4725 Theory +0905.4884 Mesoscale and Nanoscale Physics +0906.0190 Statistical Mechanics +0906.0256 Experiment +0906.0441 Physics and Society +0906.1389 Combinatorics +0906.2316 Solar and Stellar Astrophysics +0906.3720 Instrumentation and Methods for Astrophysics +0906.4732 Quantum Gases +0906.4766 +0906.4924 High Energy Astrophysical Phenomena +0906.5424 Solar and Stellar Astrophysics +0907.0020 Earth and Planetary Astrophysics +0907.0057 High Energy Astrophysical Phenomena +0907.0617 +0907.0875 High Energy Astrophysical Phenomena +0907.1566 Cosmology and Nongalactic Astrophysics +0907.1614 Earth and Planetary Astrophysics +0907.1883 Solar and Stellar Astrophysics +0907.2216 Astrophysics of Galaxies +0907.2243 Solar and Stellar Astrophysics +0907.2251 Cosmology and Nongalactic Astrophysics +0907.2415 Materials Science +0907.2416 Astrophysics of Galaxies +0907.2501 Probability +0907.2778 Soft Condensed Matter +0907.3840 Cell Behavior +0907.4330 Experiment +0907.5219 Computer Science and Game Theory +0908.2695 Probability +0908.2835 Other Condensed Matter +0908.2994 Theory +0908.3001 Cosmology and Nongalactic Astrophysics +0908.3007 +0908.3010 High Energy Astrophysical Phenomena +0908.3016 Cosmology and Nongalactic Astrophysics +0908.3018 Spectral Theory +0908.3022 Human-Computer Interaction +0908.3025 Neural and Evolutionary Computing +0908.3043 Pricing of Securities +0908.3050 Mesoscale and Nanoscale Physics +0908.3053 Geometric Topology +0908.3057 Analysis of PDEs +0908.3062 Number Theory +0908.3063 Differential Geometry +0908.3067 Other Quantitative Biology +0908.3081 Solar and Stellar Astrophysics +0908.3082 Multimedia +0908.3089 Data Structures and Algorithms +0908.3090 Cryptography and Security +0908.3094 Commutative Algebra +0908.3095 Statistics Theory +0908.3096 +0908.3102 Statistics Theory +0908.3106 +0908.3107 Cosmology and Nongalactic Astrophysics +0908.3108 Statistics Theory +0908.3114 Algebraic Topology +0908.3122 Combinatorics +0908.3124 Algebraic Topology +0908.3128 Phenomenology +0908.3130 Number Theory +0908.3135 Statistics Theory +0908.3136 Accelerator Physics +0908.3151 Rings and Algebras +0908.3154 Statistical Mechanics +0908.3155 Disordered Systems and Neural Networks +0908.3159 Metric Geometry +0908.3164 Theory +0908.3166 Information Theory +0908.3170 Neurons and Cognition +0908.3171 Information Theory +0908.3172 Mesoscale and Nanoscale Physics +0908.3173 Dynamical Systems +0908.3175 Cosmology and Nongalactic Astrophysics +0908.3177 Physics and Society +0908.3180 Disordered Systems and Neural Networks +0704.2478 Algebraic Geometry +0708.0824 Metric Geometry +0709.3896 Probability +0711.1457 Materials Science +0711.4656 Computational Geometry +0712.0693 Cryptography and Security +0712.3964 Cryptography and Security +0803.2666 +0803.3237 +0806.2746 +0807.1145 +0807.3001 Materials Science +0807.5058 +0808.1820 Algebraic Topology +0809.4095 Group Theory +0809.4469 +0810.1963 Computational Physics +0810.2392 Plasma Physics +0810.3010 Materials Science +0811.4568 Rings and Algebras +0812.1985 +0812.4121 +0901.4858 Combinatorics +0901.4917 General Physics +0902.0695 +0902.3194 Strongly Correlated Electrons +0902.4643 Soft Condensed Matter +0903.3581 Commutative Algebra +0903.5017 Strongly Correlated Electrons +0904.1065 Optics +0904.3065 Quantum Gases +0904.4483 +0904.4759 Other Condensed Matter +0906.0617 Functional Analysis +0906.1173 Disordered Systems and Neural Networks +0906.1715 +0906.3919 Logic in Computer Science +0906.4362 Mesoscale and Nanoscale Physics +0907.1642 Statistical Mechanics +0907.2640 Programming Languages +0907.4870 Networking and Internet Architecture +0907.5266 Differential Geometry +0908.1006 Probability +0908.1082 Pricing of Securities +0908.2383 Other Condensed Matter +0909.0126 +0909.1993 Number Theory +0909.3881 Probability +0910.0157 Algebraic Geometry +0910.0605 Algebraic Geometry +0910.3019 Geometric Topology +0910.3749 Mesoscale and Nanoscale Physics +0910.4691 Algebraic Geometry +0911.0271 Theory +0911.0419 Cosmology and Nongalactic Astrophysics +0911.1047 Optics +0911.1073 Algebraic Geometry +0911.1523 Algebraic Geometry +0911.3054 Soft Condensed Matter +0911.3797 Mesoscale and Nanoscale Physics +0912.0025 Operator Algebras +0912.0885 +0912.2858 +0912.3030 General Mathematics +0912.3050 Cryptography and Security +0912.3116 +0912.3516 Statistics Theory +0912.3536 Mesoscale and Nanoscale Physics +0912.3547 +0912.3549 Mesoscale and Nanoscale Physics +0912.3555 Superconductivity +0912.3564 General Topology +0912.3567 Algebraic Topology +0912.3569 Quantum Algebra +0912.3572 Algebraic Geometry +0912.3577 High Energy Astrophysical Phenomena +0912.3578 Operator Algebras +0912.3583 Programming Languages +0912.3591 Metric Geometry +0912.3593 Metric Geometry +0912.3597 High Energy Astrophysical Phenomena +0912.3599 Information Theory +0912.3601 Probability +0912.3608 Combinatorics +0912.3609 Combinatorics +0912.3611 High Energy Astrophysical Phenomena +0912.3620 Phenomenology +0912.3621 High Energy Astrophysical Phenomena +0912.3626 Earth and Planetary Astrophysics +0912.3627 Computational Complexity +0912.3628 Earth and Planetary Astrophysics +0912.3638 Optics +0912.3639 Solar and Stellar Astrophysics +0912.3640 Analysis of PDEs +0912.3656 Solar and Stellar Astrophysics +0912.3659 +0912.3660 Number Theory +0912.3663 Strongly Correlated Electrons +0912.3664 High Energy Astrophysical Phenomena +0912.3666 High Energy Astrophysical Phenomena +0912.3670 Classical Analysis and ODEs +0912.3671 High Energy Astrophysical Phenomena +0912.3673 Instrumentation and Methods for Astrophysics +0912.3677 Number Theory +0912.3690 Analysis of PDEs +0912.3694 Analysis of PDEs +0912.3695 Instrumentation and Methods for Astrophysics +0912.3696 High Energy Astrophysical Phenomena +0912.3698 High Energy Astrophysical Phenomena +0912.3701 Quantum Algebra +0912.3703 Biological Physics +0912.3707 Probability +0912.3711 Phenomenology +0912.3720 +0912.3722 High Energy Astrophysical Phenomena +0912.3724 High Energy Astrophysical Phenomena +0912.3728 Probability +0912.3734 High Energy Astrophysical Phenomena +0912.3739 Materials Science +0912.3741 High Energy Astrophysical Phenomena +0912.3742 Instrumentation and Methods for Astrophysics +0912.3743 High Energy Astrophysical Phenomena +0912.3749 Differential Geometry +0912.3755 Differential Geometry +0912.3756 Superconductivity +0912.3761 Differential Geometry +0912.3764 Differential Geometry +0912.3765 Differential Geometry +0912.3766 High Energy Astrophysical Phenomena +0912.3767 Theory +0912.3770 Probability +0912.3775 Solar and Stellar Astrophysics +0912.3777 High Energy Astrophysical Phenomena +0912.3781 Astrophysics of Galaxies +0912.3784 Quantum Algebra +0912.3785 Algebraic Geometry +0912.3791 +cond-mat/0702472 Materials Science +math/0306374 Quantum Algebra +math/0505540 K-Theory and Homology +math/0506144 Quantum Algebra +math/0606233 Quantum Algebra +math/0703311 K-Theory and Homology +quant-ph/0703005 +0809.5272 Biological Physics +0810.4560 Disordered Systems and Neural Networks +0812.3736 +0902.1666 Algebraic Geometry +0903.3711 +0903.4760 Phenomenology +0905.0008 Geometric Topology +0905.1596 +0905.4132 History and Philosophy of Physics +0906.4626 Number Theory +0909.4179 +0911.4323 Theory +0912.4045 Statistics Theory +0912.4522 Probability +0706.4268 Number Theory +0801.1423 +0806.4638 Mesoscale and Nanoscale Physics +0807.1778 Materials Science +0810.1578 +0812.1304 Commutative Algebra +0812.3030 Physics and Society +0902.0324 Mesoscale and Nanoscale Physics +0902.2423 Strongly Correlated Electrons +0902.2628 Superconductivity +0903.3012 Strongly Correlated Electrons +0903.3690 Symbolic Computation +0903.3755 Strongly Correlated Electrons +0904.1774 +0904.2116 Mesoscale and Nanoscale Physics +0904.3007 Mesoscale and Nanoscale Physics +0904.3236 Strongly Correlated Electrons +0905.1884 Other Condensed Matter +0906.1219 Atomic Physics +0906.1300 Materials Science +0906.4262 +0906.5021 Phenomenology +0907.1593 Strongly Correlated Electrons +0907.4031 Networking and Internet Architecture +math-ph/0511064 +0704.1090 +0705.4592 Chaotic Dynamics +0707.0253 Phenomenology +0707.2045 Phenomenology +0707.2493 Phenomenology +0707.3090 Phenomenology +0707.4464 Phenomenology +0709.0574 Analysis of PDEs +0709.1749 Theory +0709.2378 Phenomenology +0709.2608 Differential Geometry +0710.1240 Soft Condensed Matter +0710.3204 Computational Physics +0710.3598 +0710.3783 Experiment +0711.3999 Phenomenology +0711.5003 Analysis of PDEs +0712.0287 Phenomenology +0712.1199 Phenomenology +0712.1849 General Physics +0712.2109 Materials Science +0712.2466 Phenomenology +0712.2718 Phenomenology +0712.2829 Phenomenology +0712.2936 +0712.3023 Dynamical Systems +0712.3057 Phenomenology +0712.3124 Phenomenology +0712.3510 Phenomenology +0712.4293 +0801.0075 Dynamical Systems +0801.4693 Number Theory +0802.0806 Number Theory +0802.1753 Theory +0802.2229 Probability +0802.2785 Theory +0803.0547 +0803.0570 +0803.0586 +0803.0593 +0803.0732 +0803.1209 Superconductivity +0803.2124 Phenomenology +0803.2627 Fluid Dynamics +0803.3308 Exactly Solvable and Integrable Systems +0803.3788 Number Theory +0803.4465 General Physics +0804.1747 +0804.1996 Phenomenology +0804.2503 Phenomenology +0804.3110 Theory +0805.2088 Phenomenology +0805.2310 Data Analysis, Statistics and Probability +0805.3624 Experiment +0805.3726 Theory +0805.4378 Theory +0806.0625 +0806.0964 +0806.0985 General Physics +0806.1208 Phenomenology +0806.1225 +0806.2438 Experiment +0806.2568 Statistical Mechanics +0806.2788 Group Theory +0806.3146 +0806.3364 Theory +0806.3812 +0806.3905 Theory +0806.4018 +0806.4917 +0807.0081 Soft Condensed Matter +0807.0722 Experiment +0807.0793 Physics and Society +0807.1182 Physics and Society +0807.1258 Fluid Dynamics +0807.1313 Information Theory +0807.2442 Strongly Correlated Electrons +0807.2589 Phenomenology +0807.3742 +0807.4596 +0807.4771 Phenomenology +0807.4921 Phenomenology +0808.0085 +0808.0358 Phenomenology +0808.0626 Phenomenology +0808.0758 Phenomenology +0808.0873 Phenomenology +0808.0953 +0808.1269 Phenomenology +0808.1424 +0808.1932 Experiment +0808.2044 Phenomenology +0808.2075 Materials Science +0808.2153 +0808.2564 +0808.2743 Strongly Correlated Electrons +0808.2845 +0808.3420 +0808.3551 Phenomenology +0809.0421 Exactly Solvable and Integrable Systems +0809.0560 Materials Science +0809.0703 Phenomenology +0809.1567 Phenomenology +0809.1707 Phenomenology +0809.2213 +0809.2284 +0809.3808 Theory +0810.0083 +0810.0715 Theory +0810.1178 Phenomenology +0810.1195 Theory +0810.1431 +0810.1649 Theory +0810.2251 +0810.2320 Superconductivity +0810.2686 Phenomenology +0810.3139 Phenomenology +0810.3363 +0810.3395 +0810.3495 Theory +0810.3746 Phenomenology +0810.4441 Phenomenology +0810.4722 Superconductivity +0810.4797 Theory +0811.0088 Experiment +0811.0096 Space Physics +0811.0515 Theory +0811.0569 Phenomenology +0811.0894 Experiment +0811.0973 Statistical Mechanics +0811.0986 Superconductivity +0811.1409 +0811.1534 +0811.1915 Theory +0811.2648 Phenomenology +0811.2851 Lattice +0811.2870 Classical Analysis and ODEs +0811.2940 Phenomenology +0811.3030 Phenomenology +0811.3335 Theory +0811.3346 Phenomenology +0811.3347 Phenomenology +0811.3411 Phenomenology +0811.3482 Theory +0811.3569 Theory +0811.4196 Phenomenology +0811.4303 +0812.0687 Theory +0812.0866 Phenomenology +0812.0884 Theory +0812.0992 Theory +0812.2781 +0812.4017 Fluid Dynamics +0901.0156 Strongly Correlated Electrons +0901.0821 Superconductivity +0901.1269 +0901.1505 Other Condensed Matter +0901.1797 +0901.3184 Phenomenology +0901.4525 Rings and Algebras +0902.0073 Instrumentation and Detectors +0902.1990 Phenomenology +0902.2647 Theory +0902.2785 Probability +0902.2791 Numerical Analysis +0902.2792 Cosmology and Nongalactic Astrophysics +0902.2795 Data Structures and Algorithms +0902.2797 Phenomenology +0902.2801 Instrumentation and Detectors +0902.2807 +0902.2809 Complex Variables +0902.2811 +0902.2822 Superconductivity +0902.2830 Probability +0902.2835 Cosmology and Nongalactic Astrophysics +0902.2836 Instrumentation and Detectors +0902.2838 Analysis of PDEs +0902.2848 Instrumentation and Detectors +0902.2855 Statistical Mechanics +0902.2858 Quantum Algebra +0902.2863 Algebraic Geometry +0902.2870 +0902.2871 Artificial Intelligence +0902.2884 Rings and Algebras +0902.2891 High Energy Astrophysical Phenomena +0902.2893 Algebraic Geometry +0902.2897 Algebraic Geometry +0902.2898 Earth and Planetary Astrophysics +0902.2901 +0902.2902 Probability +0902.2904 Populations and Evolution +0902.2909 Chaotic Dynamics +0902.2915 Accelerator Physics +0902.2916 Functional Analysis +0902.2917 Information Theory +0902.2919 Combinatorics +0902.2925 Geometric Topology +0902.2928 Classical Analysis and ODEs +0902.2935 Mesoscale and Nanoscale Physics +0902.2937 Phenomenology +0902.2942 Statistical Mechanics +0902.2945 Cosmology and Nongalactic Astrophysics +0902.2946 Analysis of PDEs +0902.2947 Optimization and Control +0902.2948 Information Theory +0902.2949 Solar and Stellar Astrophysics +0902.2953 Digital Libraries +0902.2962 Astrophysics of Galaxies +0902.2963 Cosmology and Nongalactic Astrophysics +0902.2966 Solar and Stellar Astrophysics +0902.2968 Cosmology and Nongalactic Astrophysics +0902.2971 Cosmology and Nongalactic Astrophysics +0902.2972 Solar and Stellar Astrophysics +0902.2973 Astrophysics of Galaxies +0902.2975 Artificial Intelligence +0902.2976 Physics and Society +0902.2977 Group Theory +0902.2981 Functional Analysis +0902.2983 Commutative Algebra +0902.2984 Dynamical Systems +0902.2988 +0902.2990 Biological Physics +0902.2991 +0902.2995 Artificial Intelligence +astro-ph/0306130 +astro-ph/0503508 +astro-ph/0503572 +astro-ph/0505132 +astro-ph/0508664 +astro-ph/0601333 +astro-ph/0610923 +gr-qc/0612054 +hep-ex/0110027 Experiment +hep-ex/0405034 Experiment +hep-ex/9906026 Experiment +hep-ph/9211257 Phenomenology +hep-ph/9612424 Phenomenology +hep-th/0703161 Theory +math/0110143 Probability +math/0307184 Rings and Algebras +math/0507076 Differential Geometry +math/0510635 Complex Variables +math/0601617 Complex Variables +nlin/0610056 Chaotic Dynamics +nlin/0612018 Chaotic Dynamics +nucl-th/0012010 +nucl-th/0212011 +nucl-th/0402094 +nucl-th/0412028 +nucl-th/0501004 +nucl-th/0501016 +nucl-th/0510053 +nucl-th/9607009 +nucl-th/9907113 +quant-ph/0607005 +0807.0650 Phenomenology +0809.2272 Strongly Correlated Electrons +0810.2943 +0811.1590 Phenomenology +0812.0622 Quantitative Methods +0904.0971 Functional Analysis +0905.2463 Computer Vision and Pattern Recognition +0906.0072 Formal Languages and Automata Theory +hep-th/0611210 Theory +math/0604129 Combinatorics +0704.1110 +0704.2919 Combinatorics +0706.4158 Analysis of PDEs +0707.1191 Analysis of PDEs +0709.3420 Networking and Internet Architecture +0709.3903 Probability +0711.2162 Probability +0711.3852 Probability +0712.1236 Operator Algebras +0803.3753 Probability +0804.2489 Theory +0805.1326 Probability +0805.3824 Information Theory +0806.2948 Operator Algebras +0806.3409 Analysis of PDEs +0807.0007 Discrete Mathematics +0807.0360 Analysis of PDEs +0809.0144 Theory +0809.3195 +0810.1376 Physics and Society +0811.1108 Information Theory +0811.1112 Information Theory +0811.1430 +0812.1746 Soft Condensed Matter +0901.4565 Algebraic Geometry +0902.2441 Spectral Theory +0902.3353 Astrophysics of Galaxies +0902.3967 Mesoscale and Nanoscale Physics +0902.4447 Networking and Internet Architecture +0903.0019 +0903.2221 Superconductivity +0903.3476 Statistical Mechanics +0903.3849 Statistical Mechanics +0904.3147 Analysis of PDEs +0905.1051 Statistical Mechanics +0905.1249 +0906.0706 Theory +0906.2487 Analysis of PDEs +0906.3650 Materials Science +0907.2205 +0907.4488 Computational Complexity +0907.5114 Group Theory +0908.0384 Solar and Stellar Astrophysics +0908.3038 Mesoscale and Nanoscale Physics +0908.3503 Populations and Evolution +0908.3864 +0908.3894 +0908.3900 Solar and Stellar Astrophysics +0908.3902 Other Computer Science +0908.3906 Algebraic Geometry +0908.3912 Earth and Planetary Astrophysics +0908.3916 Computational Geometry +0908.3920 Number Theory +0908.3930 Cryptography and Security +0908.3940 Theory +0908.3941 Soft Condensed Matter +0908.3943 General Physics +0908.3954 Numerical Analysis +0908.3957 Databases +0908.3960 Mesoscale and Nanoscale Physics +0908.3962 Applications +0908.3963 Materials Science +0908.3966 Pattern Formation and Solitons +0908.3970 Dynamical Systems +0908.3971 Fluid Dynamics +0908.3973 Number Theory +0908.3977 Analysis of PDEs +0908.3979 Cosmology and Nongalactic Astrophysics +0908.3994 Logic in Computer Science +0908.3997 +0908.3999 Artificial Intelligence +0908.4007 Number Theory +0908.4009 Group Theory +0908.4011 Strongly Correlated Electrons +0908.4016 Discrete Mathematics +0908.4017 Strongly Correlated Electrons +0908.4018 Analysis of PDEs +0908.4024 Number Theory +0908.4025 Geometric Topology +0908.4031 Number Theory +0908.4034 Number Theory +0908.4038 Combinatorics +0908.4041 Computational Geometry +0908.4044 Cosmology and Nongalactic Astrophysics +0908.4048 Analysis of PDEs +0908.4049 Classical Analysis and ODEs +0908.4052 Theory +0908.4056 Data Analysis, Statistics and Probability +0908.4059 Number Theory +0908.4062 Cryptography and Security +0908.4068 Fluid Dynamics +0908.4069 +0908.4073 Information Theory +0908.4074 Information Retrieval +0908.4075 Analysis of PDEs +0908.4076 Combinatorics +hep-ph/0607230 Phenomenology +hep-th/9504100 Theory +math/0106122 Symplectic Geometry +quant-ph/0610241 +0704.3940 Geometric Topology +0707.4432 +0708.1032 Theory +0708.1304 Mesoscale and Nanoscale Physics +0708.2644 Differential Geometry +0709.2213 Mesoscale and Nanoscale Physics +0710.2823 Algebraic Topology +0710.5448 +0711.1433 +0801.1357 Statistics Theory +0801.1483 Combinatorics +0801.1788 Combinatorics +0801.4098 +0801.4947 Theory +0802.1618 +0803.1827 Theory +0803.4121 Quantum Algebra +0804.1011 Superconductivity +0804.2612 +0805.3098 Theory +0806.0543 Statistical Mechanics +0806.1876 +0806.2065 +0806.2531 Phenomenology +0806.3593 Mesoscale and Nanoscale Physics +0807.0761 +0807.0979 Algebraic Geometry +0808.0945 Phenomenology +0809.0375 +0809.0789 +0809.2090 +0809.2320 Algebraic Geometry +0809.2965 Computational Complexity +0809.3516 Combinatorics +0809.4772 +0810.0065 General Physics +0810.0892 +0810.2667 Phenomenology +0812.0718 Theory +0812.1331 Theory +0812.1865 Mesoscale and Nanoscale Physics +0812.2080 Commutative Algebra +0812.2322 Analysis of PDEs +0812.3372 +0812.4728 Phenomenology +0812.4821 +0901.0158 Statistical Mechanics +0901.1326 Phenomenology +0901.1602 Theory +0901.2157 General Topology +0901.2574 Theory +0901.2921 Cosmology and Nongalactic Astrophysics +0901.3154 Cosmology and Nongalactic Astrophysics +0901.3827 +0901.3879 +0902.0428 Earth and Planetary Astrophysics +0902.0954 Cosmology and Nongalactic Astrophysics +0902.0977 Solar and Stellar Astrophysics +0902.1172 Superconductivity +0902.2565 Theory +0902.2740 +0902.3059 Phenomenology +0902.3224 +0902.3237 Cosmology and Nongalactic Astrophysics +0902.3339 Theory +0902.4072 Theory +0902.4292 High Energy Astrophysical Phenomena +0902.4512 Theory +0902.4783 Lattice +0903.0660 Theory +0903.3166 Statistical Mechanics +0903.3393 Rings and Algebras +0903.3710 Superconductivity +0903.3953 Theory +0903.4322 +0903.4532 Phenomenology +0903.5453 Theory +0904.0149 Superconductivity +0904.0549 Theory +0904.0988 Theory +0904.2405 Superconductivity +0904.3078 Solar and Stellar Astrophysics +0904.3414 Phenomenology +0904.3800 Cosmology and Nongalactic Astrophysics +0904.3830 Cosmology and Nongalactic Astrophysics +0904.4104 Theory +0904.4108 Phenomenology +0904.4237 Superconductivity +0904.4357 Theory +0905.0860 Cosmology and Nongalactic Astrophysics +0905.1005 Phenomenology +0905.1065 Superconductivity +0905.1350 Phenomenology +0905.1576 +0905.1894 Phenomenology +0905.2267 Theory +0905.2338 Theory +0905.2476 +0905.2583 Solar and Stellar Astrophysics +0905.4729 Phenomenology +0906.0061 Solar and Stellar Astrophysics +0906.0983 Cosmology and Nongalactic Astrophysics +0906.1432 Theory +0906.1851 Theory +0906.2536 Solar and Stellar Astrophysics +0906.2660 Cosmology and Nongalactic Astrophysics +0906.2827 Astrophysics of Galaxies +0906.3205 +0906.3713 Cosmology and Nongalactic Astrophysics +0906.3738 Superconductivity +0906.4853 Computational Finance +0906.5318 Solar and Stellar Astrophysics +0906.5434 Solar and Stellar Astrophysics +0906.5464 Solar and Stellar Astrophysics +0907.0047 Solar and Stellar Astrophysics +0907.0069 High Energy Astrophysical Phenomena +0907.1287 Cosmology and Nongalactic Astrophysics +0907.1468 Cosmology and Nongalactic Astrophysics +0907.1484 High Energy Astrophysical Phenomena +0907.1596 Astrophysics of Galaxies +0907.2234 High Energy Astrophysical Phenomena +0907.3882 Soft Condensed Matter +0907.4373 Phenomenology +0908.0491 Spectral Theory +0908.0516 Neural and Evolutionary Computing +0908.0583 Information Retrieval +0908.0899 Phenomenology +0908.1030 +0908.1107 Functional Analysis +0908.1113 Functional Analysis +0908.1116 Information Theory +0908.1126 Strongly Correlated Electrons +0908.1127 High Energy Astrophysical Phenomena +0908.1129 Chaotic Dynamics +0908.1133 Physics Education +0908.1141 Combinatorics +0908.1145 Probability +0908.1146 Algebraic Geometry +0908.1154 Cosmology and Nongalactic Astrophysics +0908.1158 Quantum Algebra +0908.1161 Mesoscale and Nanoscale Physics +0908.1162 Information Theory +0908.1163 Information Theory +0908.1170 Analysis of PDEs +0908.1175 Instrumentation and Methods for Astrophysics +0908.1185 Cryptography and Security +0908.1186 Human-Computer Interaction +0908.1187 Software Engineering +0908.1189 Human-Computer Interaction +0908.1190 Software Engineering +0908.1191 Human-Computer Interaction +0908.1192 Software Engineering +0908.1193 Software Engineering +0908.1195 +0908.1200 +0908.1202 Operator Algebras +0908.1203 Operator Algebras +0908.1205 History and Overview +0908.1216 General Topology +0908.1220 Networking and Internet Architecture +0908.1222 Information Theory +0908.1223 Information Theory +0908.1230 Analysis of PDEs +0908.1237 General Physics +0908.1243 Astrophysics of Galaxies +0908.1245 Optics +0908.1255 Group Theory +0908.1258 Machine Learning +0908.1260 Neurons and Cognition +0908.1261 Geometric Topology +0908.1262 +0908.1270 Optics +0908.1278 Materials Science +0908.1284 Combinatorics +0908.1291 +0908.1298 Information Theory +0908.1302 Optimization and Control +0908.1303 Theory +0908.1304 Superconductivity +0908.1306 Theory +0908.1310 Other Quantitative Biology +0908.1316 Superconductivity +0908.1326 +0908.1328 Classical Analysis and ODEs +0908.1336 Phenomenology +0908.1338 Phenomenology +0908.1339 Cosmology and Nongalactic Astrophysics +0908.1342 Commutative Algebra +0908.1348 Information Theory +0908.1349 Astrophysics of Galaxies +0908.1352 Cosmology and Nongalactic Astrophysics +0908.1356 +0908.1363 Phenomenology +0908.1365 General Physics +0908.1367 Numerical Analysis +0908.1369 Computer Vision and Pattern Recognition +0908.1370 +0908.1371 Materials Science +0908.1373 Classical Physics +0908.1376 Strongly Correlated Electrons +0908.1379 Data Structures and Algorithms +astro-ph/0205015 +astro-ph/0501211 +cond-mat/0304689 Strongly Correlated Electrons +cond-mat/0311262 Strongly Correlated Electrons +cond-mat/0409116 Strongly Correlated Electrons +cond-mat/0505548 Strongly Correlated Electrons +cond-mat/0506041 Strongly Correlated Electrons +cond-mat/0509788 Strongly Correlated Electrons +cond-mat/0603602 Superconductivity +cond-mat/0603735 Strongly Correlated Electrons +cond-mat/0702624 Superconductivity +cond-mat/9907193 Strongly Correlated Electrons +gr-qc/9906098 +hep-ph/0203016 Phenomenology +hep-ph/0206277 Phenomenology +hep-ph/0301193 Phenomenology +hep-ph/0511291 Phenomenology +hep-ph/0703158 Phenomenology +hep-ph/9608402 Phenomenology +hep-ph/9804385 Phenomenology +hep-th/0408136 Theory +hep-th/0610186 Theory +hep-th/9608100 Theory +hep-th/9804002 Theory +math-ph/0503009 +math/0409196 History and Overview +quant-ph/0406147 +quant-ph/0702128 +0708.1286 Differential Geometry +0708.2176 Physics and Society +0708.3871 Differential Geometry +0801.0941 Classical Analysis and ODEs +0801.1678 +0802.1269 Phenomenology +0804.4559 +0805.0124 +0805.0757 Theory +0805.1073 +0806.2263 Algebraic Geometry +0806.3108 +0808.2231 Biomolecules +0810.2165 Strongly Correlated Electrons +0810.3280 Molecular Networks +0810.4119 Physics and Society +0811.0770 Other Condensed Matter +0811.3171 +0811.3832 Combinatorics +0811.3896 Combinatorics +0812.2078 Mesoscale and Nanoscale Physics +0812.3675 +0812.4046 Mesoscale and Nanoscale Physics +0812.4126 Strongly Correlated Electrons +0901.0959 Rings and Algebras +0901.2155 Phenomenology +0901.2984 Theory +0901.4722 High Energy Astrophysical Phenomena +0902.0598 Instrumentation and Methods for Astrophysics +0902.1356 Mesoscale and Nanoscale Physics +0902.1905 Phenomenology +0902.2617 Mesoscale and Nanoscale Physics +0903.0201 Methodology +0903.0834 Functional Analysis +0903.2561 Phenomenology +0903.5211 Mesoscale and Nanoscale Physics +0904.1260 Mesoscale and Nanoscale Physics +0904.3892 +0904.4506 Theory +0905.0382 Superconductivity +0905.1682 Genomics +0905.2538 Materials Science +0905.2758 Soft Condensed Matter +0905.3396 +0905.3667 Mesoscale and Nanoscale Physics +0905.4040 Chaotic Dynamics +0905.4375 Strongly Correlated Electrons +0905.4409 Mesoscale and Nanoscale Physics +0906.0218 Strongly Correlated Electrons +0906.1830 +0906.3584 +0906.3760 Mesoscale and Nanoscale Physics +0906.5335 +0906.5392 Superconductivity +0907.0756 +0907.1149 Theory +0907.1259 Superconductivity +0907.1319 Phenomenology +0907.1508 Theory +0907.1666 +0907.2588 Probability +0907.3170 Exactly Solvable and Integrable Systems +0907.3674 Phenomenology +0907.4363 Algebraic Geometry +0908.1384 Superconductivity +0908.3153 Materials Science +0909.0342 Plasma Physics +0909.0793 Analysis of PDEs +0909.1844 Fluid Dynamics +0909.2560 Solar and Stellar Astrophysics +0909.3763 Representation Theory +0909.4010 Materials Science +0909.4166 +0909.4279 Physics and Society +0909.4565 Differential Geometry +0909.4596 Tissues and Organs +0909.4804 Mesoscale and Nanoscale Physics +0909.5045 Logic in Computer Science +0909.5692 Functional Analysis +0910.0064 Trading and Market Microstructure +0910.0820 Learning +0910.1014 Artificial Intelligence +0910.1088 Theory +0910.1101 Cosmology and Nongalactic Astrophysics +0910.1119 Statistics Theory +0910.1120 Functional Analysis +0910.1121 Information Theory +0910.1122 Statistics Theory +0910.1123 Information Theory +0910.1124 General Physics +0910.1125 Phenomenology +0910.1126 Instrumentation and Detectors +0910.1131 Symplectic Geometry +0910.1132 Number Theory +0910.1134 Combinatorics +0910.1135 Differential Geometry +0910.1136 Cosmology and Nongalactic Astrophysics +0910.1143 Fluid Dynamics +0910.1145 Information Theory +0910.1146 Statistical Mechanics +0910.1148 Algebraic Geometry +0910.1151 Information Theory +0910.1156 Algebraic Geometry +0910.1159 Instrumentation and Methods for Astrophysics +0910.1161 Instrumentation and Methods for Astrophysics +0910.1167 Quantitative Methods +0910.1168 Analysis of PDEs +0910.1171 Algebraic Geometry +0910.1178 Other Quantitative Biology +0910.1187 Cosmology and Nongalactic Astrophysics +0910.1191 Data Structures and Algorithms +0910.1196 Phenomenology +0910.1202 Numerical Analysis +0910.1205 Statistical Finance +0910.1208 Materials Science +0910.1210 Exactly Solvable and Integrable Systems +0910.1212 Number Theory +0910.1216 Phenomenology +0910.1217 Formal Languages and Automata Theory +0910.1219 Quantitative Methods +0910.1222 Solar and Stellar Astrophysics +0910.1224 Analysis of PDEs +0910.1232 Mesoscale and Nanoscale Physics +0910.1233 Applications +0910.1238 Artificial Intelligence +0910.1239 Artificial Intelligence +0910.1244 Artificial Intelligence +0910.1247 Artificial Intelligence +0910.1251 Differential Geometry +0910.1253 Artificial Intelligence +0910.1255 Artificial Intelligence +0910.1259 Functional Analysis +0910.1263 Number Theory +0910.1264 Artificial Intelligence +0910.1266 Artificial Intelligence +0910.1273 Computer Vision and Pattern Recognition +0910.1275 Soft Condensed Matter +0910.1285 Algebraic Geometry +0910.1290 Materials Science +0910.1292 Fluid Dynamics +0910.1293 Computer Vision and Pattern Recognition +0910.1294 Computer Vision and Pattern Recognition +0910.1295 Computer Vision and Pattern Recognition +0910.1296 Mesoscale and Nanoscale Physics +0910.1298 Accelerator Physics +0910.1302 Astrophysics of Galaxies +0910.1305 Accelerator Physics +0910.1307 +0910.1313 Classical Physics +0910.1328 +0910.1332 Instrumentation and Detectors +0910.1333 Phenomenology +0910.1335 Information Theory +0910.1343 Combinatorics +astro-ph/0003163 +astro-ph/0007190 +astro-ph/0104205 +astro-ph/0202045 +astro-ph/0202397 +astro-ph/0507571 +astro-ph/0510733 +astro-ph/0603690 +astro-ph/0604310 +astro-ph/0605740 +astro-ph/0607139 +astro-ph/0609083 +astro-ph/0609394 +astro-ph/0611193 +astro-ph/0611663 +astro-ph/0702275 +astro-ph/0703760 +astro-ph/9503099 +astro-ph/9711123 +astro-ph/9804305 +astro-ph/9903437 +astro-ph/9910334 +cond-mat/0105184 Statistical Mechanics +cond-mat/0511145 Mesoscale and Nanoscale Physics +cond-mat/0511429 Soft Condensed Matter +cond-mat/0612441 Soft Condensed Matter +hep-ph/0101192 Phenomenology +hep-ph/9507397 Phenomenology +hep-ph/9805494 Phenomenology +hep-th/0306046 Theory +hep-th/0407073 Theory +hep-th/0510126 Theory +hep-th/0605172 Theory +hep-th/0703201 Theory +hep-th/9204004 Theory +hep-th/9206028 Theory +hep-th/9306117 Theory +hep-th/9401155 Theory +hep-th/9403031 Theory +hep-th/9405028 Theory +hep-th/9505144 Theory +hep-th/9608125 Theory +hep-th/9611133 Theory +hep-th/9708042 Theory +hep-th/9711035 Theory +hep-th/9804058 Theory +hep-th/9804101 Theory +hep-th/9807098 Theory +hep-th/9902042 Theory +hep-th/9904017 Theory +hep-th/9905049 Theory +hep-th/9909134 Theory +math/0103091 General Mathematics +physics/0701339 Physics and Society +0705.0964 Lattice +0705.3005 Metric Geometry +0706.0452 +0708.2557 +0708.4252 +0709.4110 Lattice +0712.2269 Strongly Correlated Electrons +0801.3064 Theory +0802.1299 Theory +0802.2268 Experiment +0803.0188 Phenomenology +0803.1530 Physics Education +0803.3873 Theory +0804.1846 +0804.2650 Phenomenology +0804.3335 +0805.0622 +0805.1008 Algebraic Geometry +0805.1863 Probability +0805.2608 +0806.2944 Phenomenology +0806.3607 +0807.0181 +0807.3155 +0808.0109 Metric Geometry +0808.0219 +0808.1937 +0808.2041 +0809.0272 Phenomenology +0809.1086 Theory +0809.3015 Differential Geometry +0809.3671 Instrumentation and Detectors +0810.0218 Experiment +0810.0407 +0810.0999 +0810.2262 +0810.2501 +0810.2647 +0810.3282 +0810.5080 +0810.5590 Instrumentation and Detectors +0811.0648 Phenomenology +0811.1100 Phenomenology +0811.1160 +0811.1285 +0811.1641 Phenomenology +0811.1692 Phenomenology +0811.2418 Phenomenology +0811.2673 Statistical Mechanics +0811.2728 Phenomenology +0811.3546 Metric Geometry +0811.3551 Metric Geometry +0811.3734 +0811.4194 Instrumentation and Detectors +0811.4265 Optics +0812.0345 Instrumentation and Detectors +0812.0436 Phenomenology +0812.0546 +0812.0742 Strongly Correlated Electrons +0812.0925 Instrumentation and Detectors +0812.1199 Phenomenology +0812.3017 +0812.3522 Phenomenology +0812.3693 +0812.4307 +0901.0810 Cosmology and Nongalactic Astrophysics +0901.0920 High Energy Astrophysical Phenomena +0901.1213 Cosmology and Nongalactic Astrophysics +0901.1276 +0901.1527 +0901.1596 Astrophysics of Galaxies +0901.2431 Theory +0901.2648 +0901.3685 Phenomenology +0901.4601 Optics +0902.0074 Phenomenology +0902.0445 Theory +0902.1008 +0902.1016 High Energy Astrophysical Phenomena +0902.3086 Phenomenology +0902.3226 Cosmology and Nongalactic Astrophysics +0902.3913 Astrophysics of Galaxies +0902.4191 Theory +0902.4450 +0903.1603 Statistical Mechanics +0903.2052 Astrophysics of Galaxies +0903.2277 +0903.2607 +0903.2896 Superconductivity +0903.2897 Biological Physics +0903.2945 +0903.2973 Experiment +0903.3701 Phenomenology +0903.3920 +0903.4259 Theory +0903.4638 Theory +0903.4938 Theory +0903.4940 Mesoscale and Nanoscale Physics +0903.5354 Atomic Physics +0904.0216 Phenomenology +0904.0452 Cosmology and Nongalactic Astrophysics +0904.0886 +0904.1240 Solar and Stellar Astrophysics +0904.1320 Phenomenology +0904.1570 Superconductivity +0904.2840 Solar and Stellar Astrophysics +0904.3363 Earth and Planetary Astrophysics +0904.3575 High Energy Astrophysical Phenomena +0904.3810 +0904.4096 Instrumentation and Methods for Astrophysics +0904.4199 Analysis of PDEs +0904.4865 +0905.0102 Phenomenology +0905.0162 Cosmology and Nongalactic Astrophysics +0905.1123 Cosmology and Nongalactic Astrophysics +0905.1134 Astrophysics of Galaxies +0905.1973 Cosmology and Nongalactic Astrophysics +0905.2121 Cosmology and Nongalactic Astrophysics +0905.2233 Cosmology and Nongalactic Astrophysics +0905.2444 Theory +0905.2452 Statistical Mechanics +0905.2769 Solar and Stellar Astrophysics +0905.2931 +0905.3382 Solar and Stellar Astrophysics +0905.3481 Cosmology and Nongalactic Astrophysics +0905.3925 High Energy Astrophysical Phenomena +0905.4117 Theory +0905.4206 High Energy Astrophysical Phenomena +0905.4586 Theory +0905.4619 Phenomenology +0906.0345 High Energy Astrophysical Phenomena +0906.1006 Astrophysics of Galaxies +0906.1145 Solar and Stellar Astrophysics +0906.1513 Instrumentation and Methods for Astrophysics +0906.1785 Earth and Planetary Astrophysics +0906.1847 Lattice +0906.2004 Cosmology and Nongalactic Astrophysics +0906.2006 Astrophysics of Galaxies +0906.2152 Cosmology and Nongalactic Astrophysics +0906.2207 Solar and Stellar Astrophysics +0906.2310 Astrophysics of Galaxies +0906.2377 Theory +0906.2387 Solar and Stellar Astrophysics +0906.2401 Solar and Stellar Astrophysics +0906.2428 Solar and Stellar Astrophysics +0906.2577 High Energy Astrophysical Phenomena +0906.2736 Solar and Stellar Astrophysics +0906.2810 Cosmology and Nongalactic Astrophysics +0906.3010 Instrumentation and Methods for Astrophysics +0906.3147 Phenomenology +0906.3289 Astrophysics of Galaxies +0906.3326 Astrophysics of Galaxies +0906.3632 Astrophysics of Galaxies +0906.3685 Solar and Stellar Astrophysics +0906.4038 Cosmology and Nongalactic Astrophysics +0906.4146 +0906.4230 Solar and Stellar Astrophysics +0906.4320 Earth and Planetary Astrophysics +0906.4328 Solar and Stellar Astrophysics +0906.4656 Superconductivity +0906.4812 Solar and Stellar Astrophysics +0906.5271 Cosmology and Nongalactic Astrophysics +0907.2233 Physics and Society +0907.5126 Applications +0908.0209 +0908.0328 Cosmology and Nongalactic Astrophysics +0908.0332 Earth and Planetary Astrophysics +0908.0338 High Energy Astrophysical Phenomena +0908.0339 Molecular Networks +0908.0340 Representation Theory +0908.0341 Materials Science +0908.0350 Data Structures and Algorithms +0908.0356 Analysis of PDEs +0908.0358 Information Theory +0908.0362 Networking and Internet Architecture +0908.0367 +0908.0368 Soft Condensed Matter +0908.0369 Instrumentation and Methods for Astrophysics +0908.0373 Artificial Intelligence +0908.0374 Theory +0908.0375 Data Structures and Algorithms +0908.0389 Classical Physics +0908.0390 Distributed, Parallel, and Cluster Computing +0908.0392 High Energy Astrophysical Phenomena +0908.0396 Materials Science +0908.0398 Computer Science and Game Theory +0908.0402 Materials Science +0908.0404 Phenomenology +0908.0405 Materials Science +0908.0408 Populations and Evolution +0908.0414 High Energy Astrophysical Phenomena +0908.0419 Biomolecules +0908.0423 Differential Geometry +0908.0436 Solar and Stellar Astrophysics +0908.0438 Materials Science +0908.0441 High Energy Astrophysical Phenomena +0908.0448 Dynamical Systems +0908.0456 Accelerator Physics +0908.0458 Materials Science +0908.0471 Theory +0908.0474 Superconductivity +0908.0477 Dynamical Systems +0908.0481 Mesoscale and Nanoscale Physics +0908.0492 Functional Analysis +0908.0493 Materials Science +0908.0494 Logic in Computer Science +0908.0500 Data Analysis, Statistics and Probability +0908.0521 Statistical Mechanics +0908.0523 Materials Science +0908.0527 Experiment +astro-ph/0412112 +astro-ph/0604118 +hep-ex/0002003 Experiment +hep-ph/0106351 Phenomenology +hep-ph/0205229 Phenomenology +hep-ph/0210138 Phenomenology +hep-ph/0506123 Phenomenology +hep-ph/0601111 Phenomenology +hep-ph/9911238 Phenomenology +hep-th/0412043 Theory +math/0607418 Logic +math/0608163 Logic +math/0701428 Algebraic Topology +physics/0605248 Instrumentation and Detectors +0704.1348 Risk Management +0704.2500 Statistics Theory +0706.2480 +0708.0326 Theory +0708.3901 Metric Geometry +0709.1963 +0711.3122 Phenomenology +0712.0576 Probability +0801.0691 Subcellular Processes +0801.2463 +0802.2760 Disordered Systems and Neural Networks +0804.0639 Rings and Algebras +0804.0641 Group Theory +0804.0642 Group Theory +0804.0954 Rings and Algebras +0804.0972 Group Theory +0805.0722 Superconductivity +0805.1139 Atomic Physics +0805.2498 Theory +0805.3012 Probability +0805.3228 +0806.0276 Quantitative Methods +0806.1116 Phenomenology +0806.1251 +0806.2043 +0806.3877 Other Condensed Matter +0807.0186 Optics +0807.1120 Lattice +0807.2273 +0807.3269 +0807.4118 +0808.1399 Other Condensed Matter +0808.1569 Theory +0808.2154 Phenomenology +0808.3369 Analysis of PDEs +0808.3503 Chaotic Dynamics +0809.0953 Statistical Mechanics +0809.1116 Mesoscale and Nanoscale Physics +0809.2723 Functional Analysis +0809.4803 Physics and Society +0809.5011 Statistical Mechanics +0810.0716 +0810.1347 Other Condensed Matter +0810.2003 +0810.2483 Statistical Mechanics +0810.2629 Strongly Correlated Electrons +0810.2879 +0810.3458 Representation Theory +0810.3575 Phenomenology +0810.4110 Phenomenology +0810.4547 Populations and Evolution +0810.4591 +0811.1036 Materials Science +0811.1147 Superconductivity +0811.3924 +0811.3969 Theory +0811.4053 +0811.4093 +0811.4130 +0811.4150 Phenomenology +0811.4667 +0812.0466 Statistical Mechanics +0812.1138 Algebraic Topology +0812.1275 Algebraic Geometry +0812.2611 Optics +0812.2880 Theory +0812.3453 Phenomenology +0812.4908 Theory +0901.0453 +0901.0813 Plasma Physics +0901.1093 Cosmology and Nongalactic Astrophysics +0901.1451 Geometric Topology +0901.2802 Theory +0901.3058 +0901.3213 +0901.3593 Solar and Stellar Astrophysics +0901.3807 Strongly Correlated Electrons +0901.3903 +0901.3954 Theory +0901.4622 Theory +0902.0095 +0902.0906 +0902.3699 +0902.3801 Representation Theory +0902.4078 Soft Condensed Matter +0902.4180 Theory +0902.4809 Instrumentation and Methods for Astrophysics +0903.0209 Materials Science +0903.0383 Astrophysics of Galaxies +0903.0388 Cosmology and Nongalactic Astrophysics +0903.0389 +0903.0391 Data Structures and Algorithms +0903.0398 Representation Theory +0903.0399 Solar and Stellar Astrophysics +0903.0400 Combinatorics +0903.0401 Cosmology and Nongalactic Astrophysics +0903.0407 Mesoscale and Nanoscale Physics +0903.0416 Instrumentation and Methods for Astrophysics +0903.0418 Algebraic Geometry +0903.0422 Artificial Intelligence +0903.0423 Astrophysics of Galaxies +0903.0424 Instrumentation and Methods for Astrophysics +0903.0433 +0903.0436 Probability +0903.0444 Rings and Algebras +0903.0447 Statistics Theory +0903.0449 Probability +0903.0450 Experiment +0903.0457 Differential Geometry +0903.0458 +0903.0460 Artificial Intelligence +0903.0463 Functional Analysis +0903.0464 Statistics Theory +0903.0465 Artificial Intelligence +0903.0467 Artificial Intelligence +0903.0468 +0903.0469 +0903.0470 Artificial Intelligence +0903.0471 Artificial Intelligence +0903.0474 Statistics Theory +0903.0475 Artificial Intelligence +0903.0479 Artificial Intelligence +0903.0480 Solar and Stellar Astrophysics +0903.0481 Methodology +0903.0483 Probability +0903.0484 Instrumentation and Methods for Astrophysics +0903.0487 Statistics Theory +0903.0489 Optics +0903.0490 Phenomenology +0903.0494 +0903.0499 Statistics Theory +0903.0500 Classical Physics +0903.0502 Group Theory +0903.0506 Biomolecules +0903.0513 Probability +0903.0514 Algebraic Geometry +0903.0518 Probability +0903.0519 Computers and Society +0903.0520 Discrete Mathematics +0903.0521 Phenomenology +0903.0526 Analysis of PDEs +0903.0533 Analysis of PDEs +0903.0538 Computer Vision and Pattern Recognition +0903.0539 High Energy Astrophysical Phenomena +0903.0540 Phenomenology +0903.0545 Commutative Algebra +0903.0546 Analysis of PDEs +0903.0547 Cosmology and Nongalactic Astrophysics +0903.0549 Classical Analysis and ODEs +0903.0550 Numerical Analysis +0903.0552 Cosmology and Nongalactic Astrophysics +0903.0553 Numerical Analysis +0903.0561 Spectral Theory +0903.0562 Astrophysics of Galaxies +0903.0563 Spectral Theory +0903.0565 Phenomenology +0903.0570 Theory +0903.0571 Software Engineering +0903.0572 Computers and Society +0903.0573 Classical Analysis and ODEs +0903.0578 Discrete Mathematics +0903.0581 Statistical Mechanics +0903.0582 Quantitative Methods +0903.0584 Metric Geometry +0903.0587 Soft Condensed Matter +0903.0588 Computers and Society +0903.0592 Adaptation and Self-Organizing Systems +0903.0595 Information Theory +0903.0598 High Energy Astrophysical Phenomena +0903.0605 +0903.0606 +0903.0608 Solar and Stellar Astrophysics +0903.0614 Probability +astro-ph/0610448 +astro-ph/0611284 +cond-mat/0511638 Strongly Correlated Electrons +cond-mat/0601544 Statistical Mechanics +gr-qc/0610108 +hep-th/0401026 Theory +hep-th/0612125 Theory +hep-th/9208044 Theory +math/0212142 Geometric Topology +math/0412312 Differential Geometry +math/0603478 Number Theory +nucl-ex/0609017 +quant-ph/0602074 +0706.3934 +0710.3739 Quantum Algebra +0711.4244 +0712.1377 Quantum Algebra +0712.1586 Chemical Physics +0712.4113 Differential Geometry +0802.2365 +0802.2981 Geometric Topology +0806.3126 Probability +0808.1619 Algebraic Geometry +0808.3730 Group Theory +0808.3838 Differential Geometry +0809.0510 +0809.2863 Theory +0809.5124 +0810.4535 Algebraic Topology +0810.5041 Algebraic Geometry +0811.0555 Strongly Correlated Electrons +0811.1546 Superconductivity +0811.1901 General Physics +0811.2911 Phenomenology +0812.0389 Data Structures and Algorithms +0812.1402 +0812.2315 Theory +0812.2419 Quantum Algebra +0812.3404 Information Theory +0812.3914 Accelerator Physics +0902.0393 Fluid Dynamics +0902.0741 Phenomenology +0902.2371 Instrumentation and Detectors +0902.2702 Phenomenology +0903.5075 Instrumentation and Methods for Astrophysics +0904.0051 Theory +0904.2688 Mesoscale and Nanoscale Physics +0904.2852 Statistical Mechanics +0904.3125 Theory +0904.4461 +0904.4869 Theory +0905.0160 High Energy Astrophysical Phenomena +0905.0364 Phenomenology +0905.1582 Theory +0905.2612 Theory +0905.3041 Cosmology and Nongalactic Astrophysics +0905.3490 Astrophysics of Galaxies +0905.3603 Solar and Stellar Astrophysics +0905.4081 Instrumentation and Methods for Astrophysics +0905.4352 Theory +0905.4631 Theory +0906.0527 Neurons and Cognition +0906.0707 Theory +0906.1118 Astrophysics of Galaxies +0906.1773 +0906.2015 Theory +0906.2414 Cosmology and Nongalactic Astrophysics +0906.2510 Theory +0906.2524 Theory +0906.2641 +0906.2642 +0906.2921 +0906.3229 +0906.3373 Astrophysics of Galaxies +0906.3451 Theory +0906.3552 Theory +0906.4782 Phenomenology +0906.5163 Cosmology and Nongalactic Astrophysics +0907.0033 Phenomenology +0907.0068 Cosmology and Nongalactic Astrophysics +0907.0303 Theory +0907.0430 Phenomenology +0907.0621 Quantum Gases +0907.1193 +0907.1741 High Energy Astrophysical Phenomena +0907.2109 Theory +0907.2549 Mesoscale and Nanoscale Physics +0907.3180 +0907.3504 Molecular Networks +0907.3754 Computational Complexity +0907.3930 Theory +0907.4682 Phenomenology +0907.5270 Mesoscale and Nanoscale Physics +0907.5516 Theory +0908.1275 Statistical Mechanics +0908.2569 Theory +0908.2625 Theory +0908.2680 +0908.2687 Phenomenology +0908.2689 +0908.2690 +0908.2770 Theory +0908.2802 Theory +0908.2896 Theory +0908.3143 +0908.3161 Theory +0908.3833 Strongly Correlated Electrons +0908.4143 +0908.4225 +0909.0831 Superconductivity +0909.2685 Populations and Evolution +0909.2688 Quantitative Methods +0909.2912 Soft Condensed Matter +0909.2919 +0909.3057 Mesoscale and Nanoscale Physics +0909.3963 Superconductivity +0910.1574 Strongly Correlated Electrons +0910.5323 Geometric Topology +0910.5414 +0910.5696 Combinatorics +0911.0077 Probability +0911.0888 Differential Geometry +0911.0931 Phenomenology +0911.1124 Phenomenology +0911.1135 Commutative Algebra +0911.1141 Optimization and Control +0911.1144 Differential Geometry +0911.1146 Populations and Evolution +0911.1153 Probability +0911.1154 Group Theory +0911.1157 Combinatorics +0911.1159 Methodology +0911.1163 Mesoscale and Nanoscale Physics +0911.1174 Data Structures and Algorithms +0911.1181 Number Theory +0911.1182 Optimization and Control +0911.1186 Cosmology and Nongalactic Astrophysics +0911.1190 Mesoscale and Nanoscale Physics +0911.1194 Superconductivity +0911.1201 Soft Condensed Matter +0911.1211 Soft Condensed Matter +0911.1222 Algebraic Geometry +0911.1230 +0911.1231 Phenomenology +0911.1233 Soft Condensed Matter +0911.1237 Functional Analysis +0911.1240 Cryptography and Security +0911.1242 +0911.1243 Group Theory +0911.1247 Differential Geometry +0911.1248 Soft Condensed Matter +0911.1250 Optics +0911.1252 Optics +0911.1256 Phenomenology +0911.1257 +0911.1259 Strongly Correlated Electrons +0911.1260 Theory +0911.1262 Applications +0911.1268 Number Theory +0911.1269 Combinatorics +0911.1272 Commutative Algebra +0911.1273 Experiment +0911.1278 General Physics +0911.1283 Classical Analysis and ODEs +0911.1285 Combinatorics +0911.1288 Human-Computer Interaction +0911.1291 Soft Condensed Matter +0911.1293 Optimization and Control +0911.1296 Group Theory +0911.1300 Metric Geometry +0911.1305 Digital Libraries +0911.1306 Physics and Society +0911.1308 Computers and Society +0911.1311 Physics and Society +0911.1319 Operator Algebras +0911.1320 Digital Libraries +0911.1321 +0911.1324 +0911.1326 Solar and Stellar Astrophysics +0911.1331 Algebraic Geometry +0911.1342 Strongly Correlated Electrons +0911.1349 Fluid Dynamics +0911.1350 Representation Theory +adap-org/9908001 Adaptation and Self-Organizing Systems +cond-mat/0701365 Other Condensed Matter +gr-qc/0605006 +math/0111308 Quantum Algebra +math/0202095 Quantum Algebra +math/0209339 Quantum Algebra +math/0605453 Probability +math/0607768 General Topology +physics/0104028 Biological Physics +physics/0209080 Biological Physics +q-bio/0403038 Quantitative Methods +q-bio/0411017 Genomics +q-bio/0606017 Quantitative Methods +0704.0114 Strongly Correlated Electrons +0801.4358 +0804.2237 Geometric Topology +0805.2405 +0811.1218 +0811.3784 +0812.4062 Probability +0901.0359 Theory +0901.4336 Cosmology and Nongalactic Astrophysics +0902.2137 Logic in Computer Science +0903.4527 Discrete Mathematics +0903.5018 Algebraic Geometry +0903.5097 Mesoscale and Nanoscale Physics +0904.3762 Strongly Correlated Electrons +0905.2238 Geometric Topology +0905.2678 Theory +0905.3172 Combinatorics +0907.3246 Formal Languages and Automata Theory +0908.0841 Materials Science +0908.2131 Theory +0909.0131 Functional Analysis +0909.3424 Number Theory +0910.0505 Hardware Architecture +0910.1670 Statistical Mechanics +0911.1580 Experiment +0911.1720 Populations and Evolution +0911.2345 Dynamical Systems +cs/0702021 Other Computer Science +0704.1689 Complex Variables +0704.1690 Algebraic Geometry +0704.1691 Complex Variables +0705.1072 Strongly Correlated Electrons +0705.3243 Physics and Society +0705.3551 Theory +0706.0091 Materials Science +0706.1303 Analysis of PDEs +0706.3773 +0707.0029 Strongly Correlated Electrons +0707.3218 +0708.0673 Materials Science +0709.1260 Theory +0710.0194 Representation Theory +0710.2157 +0710.2295 +0710.4978 Algebraic Geometry +0710.5112 +0711.0448 Phenomenology +0711.4711 Phenomenology +0712.0156 Probability +0712.0637 +0712.2360 Phenomenology +0712.2581 Mesoscale and Nanoscale Physics +0712.3187 Analysis of PDEs +0712.3619 Phenomenology +0712.3692 Theory +0801.0269 Superconductivity +0801.1922 Superconductivity +0802.0027 Theory +0802.3214 Theory +0802.4225 +0803.0294 Lattice +0803.0667 Analysis of PDEs +0803.1378 Theory +0803.1379 Strongly Correlated Electrons +0803.2534 Experiment +0803.2913 +0804.0310 +0804.0636 Phenomenology +0804.0749 Phenomenology +0804.1571 +0804.1900 Strongly Correlated Electrons +0804.2420 Commutative Algebra +0804.2522 Applications +0804.2893 Theory +0805.0706 Probability +0805.0848 Algebraic Geometry +0805.1087 Theory +0805.1446 Theory +0805.1514 Strongly Correlated Electrons +0805.2190 Optics +0805.4767 Theory +0806.0981 +0806.1422 Phenomenology +0806.1533 Phenomenology +0806.2817 Phenomenology +0806.3748 +0806.3782 Phenomenology +0806.4016 Phenomenology +0806.4065 Phenomenology +0806.4608 Superconductivity +0806.4612 Strongly Correlated Electrons +0806.4683 Phenomenology +0807.0867 Theory +0807.1309 Phenomenology +0807.1415 Phenomenology +0807.1569 Phenomenology +0807.2882 Mesoscale and Nanoscale Physics +0807.3098 Superconductivity +0807.3482 Experiment +0807.4815 Phenomenology +0808.0450 Soft Condensed Matter +0808.0696 Theory +0808.0787 Differential Geometry +0808.0819 +0808.1300 Plasma Physics +0808.1356 Theory +0808.1690 Optics +0808.1729 Phenomenology +0808.2014 Phenomenology +0808.2567 Phenomenology +0808.2866 Theory +0808.2888 Phenomenology +0808.3065 Lattice +0808.3151 Lattice +0808.3234 Superconductivity +0808.3506 Phenomenology +0808.3530 Theory +0808.3785 Chaotic Dynamics +0808.3934 Lattice +0808.3952 Phenomenology +0808.4013 Phenomenology +0809.0085 Theory +0809.0106 Statistical Mechanics +0809.0284 Phenomenology +0809.0452 Phenomenology +0809.0646 Lattice +0809.0779 Phenomenology +0809.0991 Theory +0809.0995 Phenomenology +0809.1295 Phenomenology +0809.1631 +0809.1953 Phenomenology +0809.2011 Phenomenology +0809.2047 Phenomenology +0809.2067 Phenomenology +0809.2181 Phenomenology +0809.2204 Experiment +0809.2223 Phenomenology +0809.2285 Phenomenology +0809.2371 Phenomenology +0809.2395 Phenomenology +0809.2396 Phenomenology +0809.2397 Phenomenology +0809.2410 Phenomenology +0809.2440 Phenomenology +0809.2451 Phenomenology +0809.2530 Phenomenology +0809.2571 Phenomenology +0809.2644 Phenomenology +0809.2856 Lattice +0809.3065 Phenomenology +0809.3154 Superconductivity +0809.3176 Phenomenology +0809.3301 Phenomenology +0809.3311 Phenomenology +0809.3331 Atomic Physics +0809.3708 Experiment +0809.3848 Phenomenology +0809.3932 Phenomenology +0809.3953 Phenomenology +0809.4145 Experiment +0809.4390 Theory +0809.4473 Phenomenology +0809.4952 Theory +0809.5014 Phenomenology +0810.0030 Quantum Algebra +0810.0034 Phenomenology +0810.0163 Phenomenology +0810.0167 Phenomenology +0810.0189 Phenomenology +0810.0637 Experiment +0810.1027 Phenomenology +0810.1138 Phenomenology +0810.1155 Phenomenology +0810.1158 Phenomenology +0810.1273 Data Analysis, Statistics and Probability +0810.1390 Medical Physics +0810.1402 Phenomenology +0810.1524 Phenomenology +0810.1794 Metric Geometry +0810.2161 +0810.2428 Experiment +0810.2822 +0810.2874 Phenomenology +0810.2956 Medical Physics +0810.3339 Experiment +0810.4351 Superconductivity +0810.5265 Phenomenology +0810.5329 Other Condensed Matter +0810.5693 Other Condensed Matter +0811.0117 Phenomenology +0811.0246 Phenomenology +0811.0281 +0811.0963 Phenomenology +0811.0976 Phenomenology +0811.1613 Superconductivity +0811.1670 Phenomenology +0811.1843 Instrumentation and Detectors +0811.2049 Theory +0811.2205 Superconductivity +0811.2632 Theory +0811.2698 Mesoscale and Nanoscale Physics +0811.2739 +0811.2912 Phenomenology +0811.3261 Materials Science +0811.3271 Statistical Mechanics +0811.3414 Theory +0812.4144 Optics +0901.0868 Cosmology and Nongalactic Astrophysics +0901.1331 Strongly Correlated Electrons +0901.4028 Probability +0901.4296 +0901.4782 Data Analysis, Statistics and Probability +0901.4789 +0901.4791 Quantum Algebra +0901.4792 Classical Physics +0901.4793 Statistical Finance +0901.4794 Earth and Planetary Astrophysics +0901.4795 Classical Analysis and ODEs +0901.4801 +0901.4805 Numerical Analysis +0901.4811 Numerical Analysis +0901.4816 +0901.4822 Instrumentation and Detectors +0901.4823 Algebraic Geometry +0901.4824 Combinatorics +0901.4825 General Mathematics +0901.4828 +0901.4829 Analysis of PDEs +0901.4830 Information Theory +0901.4833 Quantitative Methods +0901.4838 Phenomenology +0901.4843 Biological Physics +0901.4845 Data Analysis, Statistics and Probability +0901.4847 Experiment +0901.4849 Instrumentation and Detectors +0901.4853 Algebraic Geometry +0901.4857 Mesoscale and Nanoscale Physics +0901.4859 Instrumentation and Detectors +0901.4863 Phenomenology +0901.4868 Fluid Dynamics +0901.4869 Instrumentation and Detectors +0901.4870 Chaotic Dynamics +0901.4871 Computational Physics +0901.4873 Phenomenology +0901.4874 Instrumentation and Detectors +0901.4875 Mesoscale and Nanoscale Physics +0901.4876 Learning +0901.4880 Analysis of PDEs +0901.4889 Fluid Dynamics +0901.4890 Experiment +0901.4892 Instrumentation and Detectors +0901.4894 Data Analysis, Statistics and Probability +0901.4895 Experiment +0901.4901 Instrumentation and Methods for Astrophysics +0901.4905 Materials Science +0901.4906 Materials Science +0901.4907 Numerical Analysis +0901.4909 Strongly Correlated Electrons +0901.4911 Probability +0901.4924 Phenomenology +0901.4925 Probability +0901.4927 Instrumentation and Detectors +0901.4932 Astrophysics of Galaxies +0901.4933 Rings and Algebras +0901.4938 Instrumentation and Detectors +0901.4939 Solar and Stellar Astrophysics +0901.4950 Atomic Physics +0901.4953 Computer Vision and Pattern Recognition +0901.4954 Probability +0901.4957 Data Analysis, Statistics and Probability +0901.4958 Experiment +0901.4960 Numerical Analysis +0901.4961 Materials Science +0901.4963 Artificial Intelligence +0901.4964 +0901.4971 Dynamical Systems +astro-ph/0102126 +astro-ph/0410244 +astro-ph/0610171 +astro-ph/0701671 +astro-ph/0703230 +cond-mat/0111531 +cond-mat/0407670 Superconductivity +cond-mat/0703195 Strongly Correlated Electrons +hep-th/0505062 Theory +math/0209274 Complex Variables +math/0209312 Complex Variables +math/0211095 Combinatorics +math/0403020 Complex Variables +math/0409534 Complex Variables +math/0502126 Number Theory +math/0509130 General Mathematics +math/0509133 Combinatorics +math/0509135 Complex Variables +math/0509136 Combinatorics +math/0512443 Statistics Theory +math/0612008 Algebraic Geometry +math/0612518 Analysis of PDEs +math/0701857 Analysis of PDEs +nucl-ex/0702009 +nucl-ex/0703035 +physics/0410017 Accelerator Physics +physics/0506148 Optics +0707.0386 Theory +0709.3383 Representation Theory +0809.3149 Algebraic Geometry +0810.5430 +0812.4132 Algebraic Geometry +0902.1318 Statistical Mechanics +0903.3642 Optimization and Control +0904.1587 Molecular Networks +0906.4637 Chemical Physics +0906.5017 Information Retrieval +0907.4821 General Physics +0908.0821 Materials Science +0908.1368 +0909.2631 Statistical Mechanics +0910.1220 Optics +0910.2333 +0911.2251 Data Analysis, Statistics and Probability +0912.3510 Programming Languages +0912.4799 Cosmology and Nongalactic Astrophysics +0711.1501 General Physics +0711.4143 Theory +0802.3440 Soft Condensed Matter +0806.2697 Differential Geometry +0901.1400 Complex Variables +0901.2192 Cryptography and Security +0903.1746 Rings and Algebras +0904.1558 Soft Condensed Matter +0905.0337 Superconductivity +0905.1573 Mesoscale and Nanoscale Physics +0908.3355 Superconductivity +0909.4455 Exactly Solvable and Integrable Systems +0909.5228 +0910.2646 +0910.3138 Experiment +0910.4603 +0911.0813 Instrumentation and Methods for Astrophysics +0911.0817 Optics +0911.0818 Instrumentation and Methods for Astrophysics +0911.0821 Instrumentation and Methods for Astrophysics +0911.0822 Instrumentation and Methods for Astrophysics +cond-mat/0508306 Disordered Systems and Neural Networks +0707.4506 Plasma Physics +0710.5438 Theory +0804.4396 Instrumentation and Detectors +0805.2820 General Physics +0807.2495 Materials Science +0808.2941 Superconductivity +0808.3183 Optics +0809.4732 Materials Science +0810.2175 Distributed, Parallel, and Cluster Computing +0811.0792 Strongly Correlated Electrons +0811.2463 Superconductivity +0812.1188 Superconductivity +0812.1243 Data Analysis, Statistics and Probability +0901.3420 Mesoscale and Nanoscale Physics +0902.4455 Strongly Correlated Electrons +0903.0577 Materials Science +0904.3512 Superconductivity +0904.4351 Phenomenology +astro-ph/0608273 +math-ph/0703018 +math/0606118 Probability +math/0607102 Differential Geometry +0804.3266 Logic in Computer Science +0806.1372 Information Theory +0807.0492 Symplectic Geometry +0808.0156 Cryptography and Security +0810.3404 +0812.2899 General Topology +0704.2007 Commutative Algebra +0705.2660 +0707.1074 +0708.2250 Theory +0710.2832 +0710.4921 Phenomenology +0710.5154 Statistics Theory +0710.5779 Algebraic Topology +0710.5853 Geometric Topology +0711.1651 +0711.2605 Computational Geometry +0803.1302 Geometric Topology +0805.0335 Phenomenology +0805.1616 Phenomenology +0805.2221 +0805.2653 +0806.2060 +0806.3894 Atomic Physics +0808.4027 Geometric Topology +0809.0420 Experiment +0809.3477 Statistical Mechanics +0809.4950 Lattice +0810.4289 Dynamical Systems +0810.4298 Dynamical Systems +0810.4386 +0811.0206 +0811.3898 +0811.4284 Other Condensed Matter +0812.0139 Mesoscale and Nanoscale Physics +0812.0400 Mesoscale and Nanoscale Physics +0812.0643 Commutative Algebra +0812.0897 Materials Science +0812.1268 General Physics +0812.1721 +0901.3262 +0901.3799 Soft Condensed Matter +0901.4580 +0901.4661 Theory +0902.1974 +0902.3922 Phenomenology +0902.4672 +0902.4674 Theory +0902.4678 Theory +0903.2589 General Topology +0903.3132 +0904.1941 Differential Geometry +0904.2628 Optics +0904.2825 Commutative Algebra +0905.0014 Superconductivity +0905.0106 Physics and Society +0905.0537 Algebraic Geometry +0905.0694 Mesoscale and Nanoscale Physics +0905.0714 Instrumentation and Detectors +0905.0715 Cosmology and Nongalactic Astrophysics +0905.0718 Strongly Correlated Electrons +0905.0720 +0905.0721 Information Theory +0905.0724 Data Analysis, Statistics and Probability +0905.0727 Applications +0905.0729 Dynamical Systems +0905.0736 Soft Condensed Matter +0905.0737 Programming Languages +0905.0744 Networking and Internet Architecture +0905.0745 Number Theory +0905.0747 Multiagent Systems +0905.0748 Optics +0905.0749 Robotics +0905.0750 Astrophysics of Galaxies +0905.0754 Logic +0905.0755 Logic +0905.0756 Astrophysics of Galaxies +0905.0758 Logic +0905.0760 Logic +0905.0761 Superconductivity +0905.0762 Logic +0905.0769 Logic +0905.0770 Logic +0905.0773 Logic +0905.0775 Classical Physics +0905.0776 Commutative Algebra +0905.0782 Probability +0905.0785 Phenomenology +0905.0792 Performance +0905.0793 Cosmology and Nongalactic Astrophysics +0905.0798 Soft Condensed Matter +0905.0803 +0905.0812 Functional Analysis +0905.0813 +0905.0816 Classical Physics +0905.0819 +0905.0823 Probability +0905.0828 Fluid Dynamics +0905.0829 General Mathematics +0905.0830 Number Theory +0905.0831 Fluid Dynamics +0905.0833 Algebraic Topology +0905.0840 Optics +0905.0844 Fluid Dynamics +0905.0847 Fluid Dynamics +0905.0848 Discrete Mathematics +0905.0856 +0905.0862 +0905.0863 Phenomenology +0905.0867 Functional Analysis +0905.0871 Dynamical Systems +0905.0873 Materials Science +0905.0874 Chemical Physics +0905.0878 Functional Analysis +0905.0879 Differential Geometry +0905.0880 Instrumentation and Methods for Astrophysics +0905.0884 Statistics Theory +0905.0886 Quantum Gases +0905.0890 Cosmology and Nongalactic Astrophysics +astro-ph/0603788 +cond-mat/0509541 Statistical Mechanics +hep-th/9802145 Theory +math/0506214 Number Theory +math/0510462 Differential Geometry +math/0702414 Probability +quant-ph/0701033 +0708.1412 Representation Theory +0711.2104 Information Theory +0801.4853 Complex Variables +0805.4666 Analysis of PDEs +0808.3946 Strongly Correlated Electrons +0808.3984 Chemical Physics +0811.3579 Machine Learning +0812.0442 Strongly Correlated Electrons +0812.3483 Optimization and Control +0902.4715 High Energy Astrophysical Phenomena +0903.3207 Phenomenology +0903.4147 Statistical Mechanics +0903.5381 +0906.1538 Information Theory +0906.1869 Materials Science +0906.4209 Number Theory +0908.0776 Analysis of PDEs +cond-mat/0611296 Mesoscale and Nanoscale Physics +math/0409223 Number Theory +0706.0841 Probability +0711.1737 Complex Variables +0711.4627 Group Theory +0801.0046 Geometric Topology +0803.4374 K-Theory and Homology +0804.4222 +0805.0477 Atomic Physics +0806.0158 Probability +0806.3078 +0807.0528 Probability +0807.4200 Probability +0808.2265 Functional Analysis +0809.3767 Probability +0809.4176 Rings and Algebras +0810.1581 Dynamical Systems +0811.0900 General Physics +0811.0901 General Physics +0811.2235 Mesoscale and Nanoscale Physics +0811.2353 Statistical Mechanics +0812.4190 Theory +0901.1484 Atomic Physics +0901.2163 Algebraic Geometry +0902.2307 Mesoscale and Nanoscale Physics +0902.3335 Strongly Correlated Electrons +0903.1682 Strongly Correlated Electrons +0903.5425 Analysis of PDEs +0904.1818 Soft Condensed Matter +0904.1926 +0904.1940 Mesoscale and Nanoscale Physics +0904.2337 Superconductivity +0904.2855 Phenomenology +0904.3034 Mesoscale and Nanoscale Physics +0904.4191 Mesoscale and Nanoscale Physics +0905.1591 Dynamical Systems +0905.4043 General Physics +0906.0450 Combinatorics +0906.0897 Materials Science +0906.1116 Fluid Dynamics +0906.3391 Populations and Evolution +0906.3795 Mesoscale and Nanoscale Physics +0906.3842 Phenomenology +0906.4735 K-Theory and Homology +0906.4789 Computer Vision and Pattern Recognition +0906.4790 +0906.4796 Complex Variables +0906.4805 Information Theory +0906.4807 High Energy Astrophysical Phenomena +0906.4813 Optics +0906.4815 Complex Variables +0906.4816 Data Structures and Algorithms +0906.4824 Other Condensed Matter +0906.4827 Information Theory +0906.4828 +0906.4830 Accelerator Physics +0906.4834 Networking and Internet Architecture +0906.4835 Optimization and Control +0906.4836 Statistical Mechanics +0906.4838 Neural and Evolutionary Computing +0906.4840 Cosmology and Nongalactic Astrophysics +0906.4845 Probability +0906.4846 Neural and Evolutionary Computing +0906.4849 Popular Physics +0906.4850 High Energy Astrophysical Phenomena +0906.4854 Mesoscale and Nanoscale Physics +0906.4855 Solar and Stellar Astrophysics +0906.4857 Cosmology and Nongalactic Astrophysics +0906.4862 Analysis of PDEs +0906.4863 Mesoscale and Nanoscale Physics +0906.4864 Geometric Topology +0906.4868 Number Theory +0906.4871 +0906.4872 Fluid Dynamics +0906.4875 Populations and Evolution +0906.4878 Fluid Dynamics +0906.4880 Solar and Stellar Astrophysics +0906.4881 Fluid Dynamics +0906.4887 Strongly Correlated Electrons +0906.4888 Cosmology and Nongalactic Astrophysics +0906.4890 Strongly Correlated Electrons +0906.4900 Software Engineering +0906.4902 Analysis of PDEs +0906.4903 Operator Algebras +0906.4904 Earth and Planetary Astrophysics +0906.4907 Combinatorics +0906.4915 Representation Theory +0906.4918 +0906.4920 Differential Geometry +0906.4923 +0906.4927 Databases +0906.4930 Chaotic Dynamics +0906.4933 +0906.4935 Dynamical Systems +0906.4936 Multimedia +0906.4943 Analysis of PDEs +0906.4952 General Physics +0906.4958 Phenomenology +0906.4963 Algebraic Geometry +0906.4965 Classical Physics +0906.4968 +0906.4969 Dynamical Systems +0906.4973 Robotics +0906.4984 Cosmology and Nongalactic Astrophysics +0906.4987 Representation Theory +0906.4989 Dynamical Systems +0906.4992 +0906.4993 Astrophysics of Galaxies +0906.4995 Computers and Society +math/0508057 Group Theory +math/0512613 Combinatorics +math/0610214 General Topology +0705.0834 Representation Theory +0705.1655 Complex Variables +0709.0797 Group Theory +0711.2865 +0802.1936 Combinatorics +0805.4699 Superconductivity +0806.2363 Phenomenology +0809.1104 Strongly Correlated Electrons +0810.0588 Phenomenology +0810.3419 Complex Variables +0811.0102 Disordered Systems and Neural Networks +0812.1413 Materials Science +0812.2056 Complex Variables +0812.4371 Phenomenology +0901.0395 Solar and Stellar Astrophysics +0901.0745 Geometric Topology +0901.3486 Analysis of PDEs +astro-ph/0305542 +astro-ph/0311046 +cond-mat/0106571 Strongly Correlated Electrons +cond-mat/0107253 Strongly Correlated Electrons +math-ph/0101010 +math-ph/0104008 +math-ph/0202009 +math-ph/0202010 +math-ph/0206013 +math/0511352 Dynamical Systems +math/0610382 Algebraic Geometry +math/0610808 Analysis of PDEs +math/0703575 Optimization and Control +physics/9907051 Chemical Physics +quant-ph/0502111 +0707.4590 Mesoscale and Nanoscale Physics +0708.0516 Quantum Algebra +0708.3966 Number Theory +0708.4088 +0709.3153 Geometric Topology +0710.0318 Data Structures and Algorithms +0712.2685 Differential Geometry +0802.4314 +0803.2794 Strongly Correlated Electrons +0804.2811 +0804.4884 +0805.3202 +0807.2746 Mesoscale and Nanoscale Physics +0807.4198 Learning +0807.4543 Phenomenology +0808.1425 Superconductivity +0810.5308 Disordered Systems and Neural Networks +0810.5598 Differential Geometry +0811.1567 Algebraic Geometry +0812.0512 Superconductivity +0812.1214 Strongly Correlated Electrons +0812.4014 Superconductivity +0902.0104 Differential Geometry +0902.0222 +0902.0535 Strongly Correlated Electrons +0902.1455 Superconductivity +0902.1510 Materials Science +0902.2922 Strongly Correlated Electrons +0903.0195 Physics and Society +0903.0918 Mesoscale and Nanoscale Physics +0903.2213 +0903.3349 Mesoscale and Nanoscale Physics +0903.3363 Biological Physics +0903.4203 Combinatorics +0904.1479 Combinatorics +0904.1569 Quantum Gases +0904.3926 Superconductivity +0904.4109 Combinatorics +0905.0757 Statistical Mechanics +0905.2106 Strongly Correlated Electrons +0905.2608 Strongly Correlated Electrons +0905.3549 Phenomenology +0906.2486 Materials Science +0906.4190 Fluid Dynamics +0906.5305 Operator Algebras +0907.1006 Analysis of PDEs +0907.2446 Medical Physics +0907.2449 Differential Geometry +0907.2450 Combinatorics +0907.2452 Computation and Language +0907.2454 Exactly Solvable and Integrable Systems +0907.2466 Cosmology and Nongalactic Astrophysics +0907.2468 Superconductivity +0907.2470 Commutative Algebra +0907.2471 Databases +0907.2473 Statistical Mechanics +0907.2478 Applications +0907.2479 Discrete Mathematics +0907.2480 Applications +0907.2481 +0907.2483 Rings and Algebras +0907.2488 Algebraic Geometry +0907.2490 Combinatorics +0907.2492 History and Philosophy of Physics +0907.2494 History and Philosophy of Physics +0907.2497 Number Theory +0907.2499 Number Theory +0907.2503 Algebraic Geometry +0907.2504 K-Theory and Homology +0907.2507 High Energy Astrophysical Phenomena +0907.2508 Probability +0907.2509 General Physics +0907.2511 Complex Variables +0907.2514 Phenomenology +0907.2526 High Energy Astrophysical Phenomena +0907.2527 Phenomenology +0907.2532 General Physics +0907.2534 Analysis of PDEs +0907.2537 Instrumentation and Detectors +0907.2545 Numerical Analysis +0907.2547 Dynamical Systems +0907.2550 Cosmology and Nongalactic Astrophysics +0907.2551 Disordered Systems and Neural Networks +0907.2556 Mesoscale and Nanoscale Physics +0907.2561 Physics and Society +0907.2563 Networking and Internet Architecture +0907.2564 Disordered Systems and Neural Networks +0907.2568 Optics +0907.2571 Complex Variables +0907.2575 Phenomenology +0907.2579 Phenomenology +0907.2581 Phenomenology +0907.2584 +0907.2585 Computational Geometry +0907.2586 Analysis of PDEs +0907.2594 Differential Geometry +0907.2597 Number Theory +0907.2604 Commutative Algebra +0907.2615 Phenomenology +0907.2620 +0907.2621 Computational Complexity +0907.2623 Solar and Stellar Astrophysics +0907.2627 Discrete Mathematics +0907.2629 +0907.2631 Biological Physics +0907.2632 Superconductivity +0907.2651 Atmospheric and Oceanic Physics +0907.2655 Theory +0907.2656 Strongly Correlated Electrons +0907.2664 Phenomenology +0907.2665 Phenomenology +0907.2673 Instrumentation and Detectors +0907.2674 Differential Geometry +0907.2682 Information Theory +math/0112197 Differential Geometry +math/0509304 Number Theory +math/0512127 Differential Geometry +math/0610705 Probability +math/0612801 Number Theory +math/0701743 Classical Analysis and ODEs +physics/0310019 General Physics +0706.3711 Number Theory +0707.2264 Geometric Topology +0708.1028 Phenomenology +0712.2104 Geometric Topology +0804.3822 Dynamical Systems +0804.4256 Algebraic Geometry +0806.1373 Analysis of PDEs +0806.3592 Analysis of PDEs +0808.0013 Group Theory +0808.0368 Analysis of PDEs +0808.0682 Phenomenology +0808.1449 Mesoscale and Nanoscale Physics +0810.3873 Experiment +0811.1999 +0811.4046 +0811.4428 +0812.4993 +0901.0016 Mesoscale and Nanoscale Physics +0901.0118 Information Theory +0901.0397 Disordered Systems and Neural Networks +0902.2306 Materials Science +0902.2375 +0902.3124 Strongly Correlated Electrons +0902.4177 Information Theory +0902.4252 Algebraic Geometry +0903.1528 Phenomenology +0903.2163 Materials Science +0904.0772 Superconductivity +0904.2171 Mesoscale and Nanoscale Physics +0904.3061 +0905.2968 Cosmology and Nongalactic Astrophysics +0905.4074 Theory +0905.4475 Geometric Topology +0906.0021 Theory +0906.0080 Information Retrieval +0906.1668 Rings and Algebras +0906.2325 Instrumentation and Detectors +0906.2833 Analysis of PDEs +0907.1847 Algebraic Geometry +0907.1940 Number Theory +0907.2639 Optimization and Control +0907.3358 Combinatorics +0907.3983 Software Engineering +0907.5253 Mesoscale and Nanoscale Physics +0908.0032 +0908.0462 High Energy Astrophysical Phenomena +0908.0533 Number Theory +0908.0541 +0908.0545 Strongly Correlated Electrons +0908.0546 Functional Analysis +0908.0547 Methodology +0908.0548 Networking and Internet Architecture +0908.0550 Optics +0908.0551 Cryptography and Security +0908.0552 Mesoscale and Nanoscale Physics +0908.0553 Commutative Algebra +0908.0556 Differential Geometry +0908.0559 Operator Algebras +0908.0560 Spectral Theory +0908.0566 General Physics +0908.0567 Databases +0908.0570 Learning +0908.0572 Learning +0908.0575 Fluid Dynamics +0908.0585 Cosmology and Nongalactic Astrophysics +0908.0586 Information Retrieval +0908.0587 Networking and Internet Architecture +0908.0595 Information Retrieval +0908.0596 Functional Analysis +0908.0597 Combinatorics +0908.0599 Astrophysics of Galaxies +0908.0601 Disordered Systems and Neural Networks +0908.0605 Combinatorics +0908.0612 Mesoscale and Nanoscale Physics +0908.0621 Optics +0908.0626 Algebraic Geometry +0908.0627 Physics and Society +0908.0628 General Physics +0908.0637 Dynamical Systems +0908.0640 Algebraic Geometry +0908.0644 Analysis of PDEs +0908.0645 Materials Science +0908.0649 Quantitative Methods +0908.0665 Mesoscale and Nanoscale Physics +0908.0667 Networking and Internet Architecture +0908.0673 Computational Physics +0908.0680 Number Theory +0908.0682 Portfolio Management +0908.0685 Geometric Topology +0908.0689 +0908.0691 Functional Analysis +0908.0693 Cosmology and Nongalactic Astrophysics +0908.0697 Discrete Mathematics +0908.0703 Information Retrieval +0908.0704 Information Retrieval +0908.0707 Strongly Correlated Electrons +0908.0709 Information Retrieval +0908.0716 High Energy Astrophysical Phenomena +0908.0717 High Energy Astrophysical Phenomena +0908.0722 Networking and Internet Architecture +hep-ph/0410251 Phenomenology +math-ph/0212061 +math/0205311 Algebraic Geometry +math/0205320 Algebraic Geometry +math/0206051 Algebraic Geometry +math/0504112 Group Theory +math/0602258 Algebraic Geometry +math/0612762 Geometric Topology +0705.0419 Logic in Computer Science +0705.1071 Quantum Algebra +0707.0048 +0708.0458 Phenomenology +0711.0035 +0711.1095 Probability +0801.1934 General Physics +0801.4194 Information Theory +0802.0589 +0802.2635 Materials Science +0802.2848 Geometric Topology +0803.2771 Algebraic Geometry +0803.3341 Differential Geometry +0804.1317 Computational Physics +0804.3612 Theory +0805.0033 General Physics +0805.3552 Geometric Topology +0806.3009 Functional Analysis +0806.4234 General Physics +0807.1759 Tissues and Organs +0807.1963 Probability +0807.2405 Phenomenology +0807.2980 Algebraic Geometry +0807.4099 Algebraic Geometry +0808.0292 Mesoscale and Nanoscale Physics +0808.1265 +0808.2556 Algebraic Geometry +0808.2821 Atomic Physics +0808.3981 Soft Condensed Matter +0809.2542 Statistical Mechanics +0809.2976 Other Condensed Matter +0809.3002 +0809.4085 General Physics +0809.4685 Theory +0810.1278 Algebraic Geometry +0810.1745 Numerical Analysis +0810.2884 Theory +0810.5532 Theory +0810.5616 +0811.3128 +0811.3648 Data Structures and Algorithms +0812.1116 Mesoscale and Nanoscale Physics +0812.2120 Theory +0812.4109 +0812.4169 Materials Science +0812.4277 Superconductivity +0812.4815 Complex Variables +0901.3911 Experiment +0902.0145 +0902.0421 General Physics +0902.0570 Statistical Mechanics +0902.0607 Phenomenology +0902.1044 Cosmology and Nongalactic Astrophysics +0902.4019 +0902.4739 General Physics +0903.2913 Differential Geometry +0903.3997 Disordered Systems and Neural Networks +0903.4130 Data Structures and Algorithms +0903.4618 Mesoscale and Nanoscale Physics +0903.4783 Statistical Finance +0903.4921 Solar and Stellar Astrophysics +0904.0038 General Physics +0904.0578 Logic in Computer Science +0904.0692 Mesoscale and Nanoscale Physics +0904.0946 Phenomenology +0904.1097 Combinatorics +0904.1149 Logic +0904.1199 Quantum Gases +0904.1211 Dynamical Systems +0904.1216 +0904.1218 Theory +0904.1222 Combinatorics +0904.1227 Learning +0904.1229 Combinatorics +0904.1237 Complex Variables +0904.1243 Networking and Internet Architecture +0904.1253 Classical Analysis and ODEs +0904.1254 Classical Analysis and ODEs +0904.1256 Differential Geometry +0904.1261 Analysis of PDEs +0904.1264 Geometric Topology +0904.1267 Medical Physics +0904.1274 Algebraic Geometry +0904.1277 Number Theory +0904.1279 Populations and Evolution +0904.1280 General Physics +0904.1282 +0904.1283 General Physics +0904.1284 Cryptography and Security +0904.1288 Complex Variables +0904.1289 Computation and Language +0904.1291 Operator Algebras +0904.1292 Pricing of Securities +0904.1296 Discrete Mathematics +0904.1297 Strongly Correlated Electrons +0904.1298 Quantitative Methods +0904.1302 Logic in Computer Science +0904.1311 Materials Science +0904.1313 Information Theory +0904.1315 Algebraic Topology +0904.1318 Representation Theory +0904.1319 Combinatorics +0904.1324 Phenomenology +0904.1332 Analysis of PDEs +0904.1342 Mesoscale and Nanoscale Physics +0904.1354 Analysis of PDEs +0904.1357 Dynamical Systems +0904.1359 +0904.1361 Risk Management +0904.1362 +0904.1365 Biomolecules +0904.1380 Geometric Topology +0904.1384 Group Theory +0904.1385 Classical Analysis and ODEs +0904.1386 Atomic Physics +0904.1391 Solar and Stellar Astrophysics +0904.1392 Cosmology and Nongalactic Astrophysics +0904.1398 +0904.1399 Cosmology and Nongalactic Astrophysics +0904.1407 Geometric Topology +0904.1411 Algebraic Topology +0904.1413 Probability +astro-ph/0309575 +cond-mat/0411008 Other Condensed Matter +cs/0609126 Digital Libraries +hep-ph/0301251 Phenomenology +hep-ph/9704424 Phenomenology +math/0607599 Combinatorics +math/0702472 Algebraic Geometry +math/0703660 Probability +physics/9812039 Instrumentation and Detectors +quant-ph/0703150 +0704.0503 Algebraic Topology +0709.2306 Geometric Topology +0805.3188 +0807.3893 Other Condensed Matter +0807.4367 General Physics +0808.1415 General Physics +0810.5191 Superconductivity +0811.0034 Superconductivity +0902.3926 Analysis of PDEs +0903.1070 Logic +0903.4529 Statistical Mechanics +0904.0751 Information Theory +0904.0973 Information Theory +0906.1287 Phenomenology +0906.1636 Superconductivity +0906.2209 Mesoscale and Nanoscale Physics +0906.2733 Strongly Correlated Electrons +0907.2428 Materials Science +0907.2703 +0907.3086 General Mathematics +0907.4183 Experiment +0907.5595 Group Theory +0908.0040 Astrophysics of Galaxies +0908.0104 Disordered Systems and Neural Networks +0908.0263 +astro-ph/9505117 +0704.0902 Strongly Correlated Electrons +0705.3775 Superconductivity +0707.1863 Theory +0707.4052 Theory +0709.0082 +0709.2161 Rings and Algebras +0709.4594 Differential Geometry +0710.0016 +0710.0341 Lattice +0710.2522 Superconductivity +0710.2748 Rings and Algebras +0710.3079 +0710.4772 Accelerator Physics +0711.0629 Lattice +0711.2181 K-Theory and Homology +0711.2201 Theory +0711.4179 Optimization and Control +0711.4727 Phenomenology +0712.0213 +0712.0821 General Physics +0801.0220 +0801.0895 Phenomenology +0801.2868 +0801.2979 Quantum Algebra +0802.0164 Phenomenology +0802.3163 +0803.1998 +0803.3147 Phenomenology +0803.3949 Phenomenology +0804.0140 Phenomenology +0804.0265 Atomic Physics +0804.0948 +0804.2284 General Physics +0804.2731 Phenomenology +0804.3137 +0804.3213 Plasma Physics +0804.3227 Lattice +0804.3390 +0804.3675 Theory +0804.4100 +0804.4459 Theory +0805.1255 Phenomenology +0805.2469 Phenomenology +0805.3076 Phenomenology +0805.3304 Phenomenology +0805.3342 Phenomenology +0805.3572 +0805.3579 Theory +0805.3597 Phenomenology +0805.3668 Theory +0805.3942 Phenomenology +0805.3970 Geometric Topology +0805.4071 Phenomenology +0805.4362 Theory +0805.4567 Lattice +0805.4735 Phenomenology +0806.0126 Lattice +0806.0214 Representation Theory +0806.1331 Phenomenology +0806.1737 Phenomenology +0806.2693 Phenomenology +0806.3882 Phenomenology +0806.4098 Experiment +0806.4955 Materials Science +0807.0259 Statistical Mechanics +0807.0323 Phenomenology +0807.0489 Phenomenology +0807.1003 Phenomenology +0807.1394 +0807.1527 Theory +0807.1866 General Physics +0807.2022 Phenomenology +0807.2091 +0807.3275 Phenomenology +0807.3323 Other Condensed Matter +0807.3381 Theory +0807.3848 Chaotic Dynamics +0807.4115 Phenomenology +0807.4469 Phenomenology +0808.0672 Phenomenology +0808.1104 Phenomenology +0808.1601 Theory +0808.2187 +0808.2365 Atomic Physics +0808.2481 Theory +0808.2495 +0808.3752 Phenomenology +0808.4023 Experiment +0809.0221 Optics +0809.0704 Theory +0809.1097 Phenomenology +0809.1296 Mesoscale and Nanoscale Physics +0809.1412 Statistical Mechanics +0809.1594 Experiment +0809.1728 Chemical Physics +0809.2242 Phenomenology +0809.2244 Theory +0809.2733 Theory +0809.2941 +0809.3243 Analysis of PDEs +0809.4126 Phenomenology +0809.4223 Superconductivity +0809.4512 Theory +0809.4852 Theory +0809.4959 Lattice +0810.0445 Experiment +0810.1459 +0810.2679 Phenomenology +0810.3882 Atmospheric and Oceanic Physics +0810.3998 +0810.4228 Lattice +0810.4385 +0810.4643 Strongly Correlated Electrons +0811.1617 Superconductivity +0811.2294 +0811.2461 Theory +0811.3064 Biological Physics +0811.3065 Biological Physics +0811.3250 Theory +0811.3322 Theory +0811.3900 Biological Physics +0811.4279 Superconductivity +0812.0006 +0812.0771 +0812.2695 Superconductivity +0812.3378 Disordered Systems and Neural Networks +0812.3571 Experiment +0812.4031 General Physics +0812.4418 +0812.4916 Quantum Algebra +0812.5115 +0901.1246 Differential Geometry +0901.1399 +0901.1575 Superconductivity +0901.1643 +0901.1671 Atomic Physics +0901.1672 Materials Science +0901.1675 Quantitative Methods +0901.1676 Phenomenology +0901.1678 Commutative Algebra +0901.1682 +0901.1684 Statistical Mechanics +0901.1687 Theory +0901.1692 Algebraic Geometry +0901.1694 Information Theory +0901.1695 Information Theory +0901.1696 Mathematical Software +0901.1697 Number Theory +0901.1707 Atomic Physics +0901.1718 Superconductivity +0901.1722 Geophysics +0901.1731 Optics +0901.1733 Combinatorics +0901.1738 Atomic Physics +0901.1739 Materials Science +0901.1741 General Mathematics +0901.1742 Commutative Algebra +0901.1743 +0901.1745 Geometric Topology +0901.1752 Pattern Formation and Solitons +0901.1753 Information Theory +0901.1755 Superconductivity +0901.1756 Mesoscale and Nanoscale Physics +0901.1759 Instrumentation and Detectors +0901.1761 Data Structures and Algorithms +0901.1769 Other Condensed Matter +0901.1773 +0901.1774 Superconductivity +0901.1776 Pricing of Securities +0901.1779 +0901.1780 Representation Theory +0901.1782 Networking and Internet Architecture +0901.1783 Algebraic Geometry +0901.1792 Phenomenology +0901.1793 Group Theory +0901.1794 General Finance +0901.1799 Classical Physics +0901.1800 Superconductivity +0901.1803 Materials Science +0901.1806 Algebraic Geometry +0901.1807 Analysis of PDEs +0901.1808 Optics +0901.1810 Complex Variables +0901.1815 Probability +0901.1817 Optics +0901.1823 Statistical Mechanics +0901.1824 Information Theory +0901.1825 Atomic Physics +0901.1827 Information Theory +0901.1828 Materials Science +0901.1829 Superconductivity +0901.1835 Computational Physics +0901.1841 General Mathematics +0901.1844 Other Condensed Matter +0901.1846 Biomolecules +0901.1851 Biomolecules +0901.1854 Plasma Physics +0901.1856 Statistical Mechanics +0901.1864 Information Theory +0901.1867 Information Theory +0901.1869 Information Theory +0901.1871 Probability +0901.1873 Strongly Correlated Electrons +0901.1874 Operator Algebras +astro-ph/0207329 +astro-ph/0511599 +astro-ph/0511636 +astro-ph/0601299 +astro-ph/0609390 +astro-ph/0611459 +astro-ph/9602097 +astro-ph/9710074 +astro-ph/9710367 +cond-mat/0610789 Disordered Systems and Neural Networks +cond-mat/0701756 Other Condensed Matter +cs/0502026 Cryptography and Security +cs/0601133 Symbolic Computation +gr-qc/0003039 +gr-qc/0106045 +gr-qc/0110105 +gr-qc/0204021 +gr-qc/0208030 +gr-qc/0301026 +gr-qc/0304015 +gr-qc/0308058 +gr-qc/0310103 +gr-qc/0403068 +gr-qc/0603116 +gr-qc/0702101 +gr-qc/9603009 +gr-qc/9906060 +gr-qc/9909088 +gr-qc/9910078 +hep-lat/0604020 Lattice +hep-lat/0609020 Lattice +hep-ph/0106031 Phenomenology +hep-ph/0202073 Phenomenology +hep-ph/0202233 Phenomenology +hep-ph/0303125 Phenomenology +hep-ph/0509061 Phenomenology +hep-ph/9501411 Phenomenology +hep-ph/9712459 Phenomenology +hep-ph/9802239 Phenomenology +hep-th/0003158 Theory +hep-th/0010205 Theory +hep-th/0106225 Theory +hep-th/0112068 Theory +hep-th/0202048 Theory +hep-th/0204066 Theory +hep-th/0310107 Theory +hep-th/0401073 Theory +hep-th/0402176 Theory +hep-th/0406156 Theory +hep-th/0510139 Theory +hep-th/0601211 Theory +hep-th/9611138 Theory +hep-th/9703089 Theory +hep-th/9803219 Theory +hep-th/9803246 Theory +hep-th/9810062 Theory +hep-th/9901086 Theory +hep-th/9902130 Theory +hep-th/9902184 Theory +hep-th/9912032 Theory +math-ph/0603022 +math/0404402 Metric Geometry +math/0510144 Algebraic Geometry +math/0511189 Geometric Topology +math/0601476 Geometric Topology +nucl-th/0306059 +nucl-th/9906038 +nucl-th/9907027 +nucl-th/9907086 +nucl-th/9907120 +nucl-th/9910029 +nucl-th/9910073 +nucl-th/9911068 +quant-ph/0008088 +quant-ph/0101114 +quant-ph/0212125 +quant-ph/0401026 +quant-ph/0404126 +quant-ph/0409181 +quant-ph/0410231 +quant-ph/0412163 +quant-ph/0509126 +quant-ph/0605156 +quant-ph/9910079 +0709.2224 Metric Geometry +0709.2253 +0802.1140 Functional Analysis +0804.1946 +0805.2047 Number Theory +0805.4801 Operator Algebras +0806.4934 Statistical Mechanics +0808.1092 Algebraic Topology +0809.1940 Differential Geometry +0810.0981 Algebraic Geometry +0812.4691 Numerical Analysis +0901.2130 Statistical Mechanics +0902.0719 Materials Science +0903.3317 Databases +0904.0486 General Physics +0904.1690 Differential Geometry +0905.3048 General Physics +0905.3879 Probability +0905.4032 Superconductivity +0905.4128 General Mathematics +0906.1284 Atomic Physics +0906.1899 General Finance +0906.1907 Chaotic Dynamics +math/0403243 Functional Analysis +math/0606254 Analysis of PDEs +0705.3744 Differential Geometry +0709.2757 Other Condensed Matter +0709.3953 Algebraic Geometry +0710.0985 Lattice +0710.2470 Lattice +0710.3031 Differential Geometry +0712.3507 Probability +0712.3864 +0801.0525 Differential Geometry +0806.0064 Fluid Dynamics +0806.4713 Superconductivity +0808.1870 Analysis of PDEs +0809.1968 Populations and Evolution +0809.4745 Differential Geometry +0809.5127 Other Condensed Matter +0810.2461 Strongly Correlated Electrons +0810.4086 Logic +0810.5612 Statistical Mechanics +0811.0604 +0811.3776 Spectral Theory +0811.3967 +0811.4738 Statistical Mechanics +0901.0832 Mesoscale and Nanoscale Physics +0901.0848 +0901.1957 +0902.4257 Operator Algebras +0902.4896 Fluid Dynamics +0903.0231 +0903.0233 Materials Science +0903.0523 +0903.0849 Complex Variables +0903.3347 Representation Theory +0903.3905 Experiment +0903.4224 Superconductivity +0903.4396 Atmospheric and Oceanic Physics +0903.4802 Statistical Mechanics +0904.0211 Analysis of PDEs +0904.0387 +0904.1213 Statistical Mechanics +0904.2604 Differential Geometry +0904.4111 Mesoscale and Nanoscale Physics +0905.0703 +0905.3067 Mesoscale and Nanoscale Physics +0905.3510 Strongly Correlated Electrons +0906.2092 +0906.4601 +0906.4797 Analysis of PDEs +0906.5291 Chaotic Dynamics +0906.5345 Operator Algebras +0906.5356 Analysis of PDEs +0906.5359 Theory +0906.5363 Group Theory +0906.5370 Astrophysics of Galaxies +0906.5372 Soft Condensed Matter +0906.5377 Solar and Stellar Astrophysics +0906.5388 Algebraic Geometry +0906.5393 Software Engineering +0906.5397 Information Theory +0906.5402 Complex Variables +0906.5406 Functional Analysis +0906.5408 Operator Algebras +0906.5410 Functional Analysis +0906.5412 Functional Analysis +0906.5413 Adaptation and Self-Organizing Systems +0906.5415 Adaptation and Self-Organizing Systems +0906.5416 +0906.5417 +0906.5428 Number Theory +0906.5432 Number Theory +0906.5436 Statistics Theory +0906.5438 Combinatorics +0906.5447 Optimization and Control +0906.5448 High Energy Astrophysical Phenomena +0906.5450 Discrete Mathematics +0906.5452 Probability +0906.5456 Soft Condensed Matter +0906.5459 Strongly Correlated Electrons +0906.5460 Fluid Dynamics +0906.5463 Phenomenology +0906.5465 Probability +0906.5467 Phenomenology +0906.5468 +0906.5479 +0906.5481 Statistics Theory +0906.5485 Databases +0906.5486 Phenomenology +0906.5487 High Energy Astrophysical Phenomena +0906.5489 General Finance +0906.5490 Theory +0906.5491 Group Theory +0906.5503 High Energy Astrophysical Phenomena +0906.5510 Number Theory +0906.5512 Phenomenology +0906.5515 Phenomenology +0906.5517 Differential Geometry +0906.5518 Fluid Dynamics +0906.5521 Phenomenology +0906.5522 Differential Geometry +0906.5523 Statistical Mechanics +0906.5528 Geophysics +0906.5529 Differential Geometry +0906.5551 Other Condensed Matter +0906.5555 Geometric Topology +0906.5559 Number Theory +0906.5564 +0906.5584 Statistical Mechanics +0906.5596 Computers and Society +0906.5600 Mesoscale and Nanoscale Physics +0906.5606 Functional Analysis +0906.5607 Differential Geometry +0906.5610 Cosmology and Nongalactic Astrophysics +astro-ph/0602344 +cond-mat/0507189 Other Condensed Matter +cond-mat/0507204 Materials Science +cond-mat/0601297 Materials Science +cond-mat/0607667 Other Condensed Matter +cond-mat/0608483 Mesoscale and Nanoscale Physics +cond-mat/0608514 Materials Science +hep-ph/0508061 Phenomenology +math/0504390 Algebraic Geometry +math/0511377 Differential Geometry +math/0604008 Differential Geometry +math/0610194 Algebraic Topology +math/0611358 Commutative Algebra +math/0612566 Geometric Topology +0705.1802 Other Condensed Matter +0706.3131 Group Theory +0711.4475 Computation and Language +0805.0074 Statistics Theory +0805.2424 Algebraic Geometry +0806.2922 Dynamical Systems +0808.0032 Other Condensed Matter +0809.4116 Algebraic Topology +0809.4940 Logic +0811.0046 +0901.2957 Materials Science +0901.3160 Analysis of PDEs +0902.2174 Theory +0902.2234 +0904.0265 Optics +0904.1637 Molecular Networks +0905.3303 Materials Science +0905.4150 Algebraic Geometry +0906.0087 +0906.1419 Atomic Physics +0907.0395 High Energy Astrophysical Phenomena +0907.1775 Physics and Society +0907.4572 Superconductivity +0907.5051 Mesoscale and Nanoscale Physics +0908.0108 Theory +0908.1054 Mesoscale and Nanoscale Physics +0909.0815 Mesoscale and Nanoscale Physics +0910.0036 Operator Algebras +0910.0161 Superconductivity +0910.2516 Physics and Society +0911.4313 Cryptography and Security +0911.4595 Algebraic Geometry +0911.4609 Phenomenology +0911.4684 +cond-mat/0204116 Superconductivity +cs/0610033 Computer Vision and Pattern Recognition +hep-th/9204072 Theory +math/0002010 Group Theory +math/0005113 Group Theory +math/0007062 Group Theory +math/0012108 Group Theory +math/0012175 Group Theory +math/0101222 Group Theory +math/0109069 Group Theory +math/0112108 Group Theory +math/0112109 Group Theory +math/0210471 Group Theory +math/0308127 Group Theory +math/0405182 Group Theory +math/0407312 Group Theory +math/0410226 Rings and Algebras +math/0412373 Group Theory +math/0506203 Group Theory +math/0510082 Dynamical Systems +math/0510294 Group Theory +math/0602364 Number Theory +math/0608302 Group Theory +math/9910056 Combinatorics +math/9910067 Group Theory +math/9910068 Group Theory +math/9910102 Group Theory +math/9911206 Group Theory +0805.2828 General Physics +0805.3474 Phenomenology +0807.4043 +0808.0954 Information Theory +0808.1318 Algebraic Geometry +0809.2932 Methodology +0810.4141 Differential Geometry +0811.2009 Populations and Evolution +0812.3420 Strongly Correlated Electrons +0901.2943 Statistical Mechanics +0901.4038 Cosmology and Nongalactic Astrophysics +0901.4245 Strongly Correlated Electrons +0902.4749 +0905.1892 Chaotic Dynamics +0905.1964 Information Theory +0905.1991 Number Theory +0905.2254 History and Overview +hep-th/0612150 Theory +math/0610630 Differential Geometry +physics/0608128 Fluid Dynamics +physics/0702235 Fluid Dynamics +0704.0205 +0704.3683 Computational Complexity +0706.0570 Rings and Algebras +0706.3431 Classical Physics +0707.3922 Theory +0708.1471 Mesoscale and Nanoscale Physics +0708.3330 +0708.4109 +0710.2789 +0711.0827 +0711.4185 Quantum Algebra +0712.1258 +0801.0078 +0801.1269 Phenomenology +0801.3992 Algebraic Geometry +0801.4524 K-Theory and Homology +0802.0350 +0802.0623 Theory +0802.0771 Disordered Systems and Neural Networks +0802.1728 +0802.1978 +0803.0854 Mesoscale and Nanoscale Physics +0803.1976 +0803.1999 Theory +0803.2001 Theory +0803.2876 Theory +0803.3059 Probability +0803.4291 Phenomenology +0803.4390 Theory +0804.1045 Phenomenology +0804.1098 +0804.1174 +0804.2328 Phenomenology +0804.3206 +0804.4184 +0804.4484 +0804.4553 Theory +0805.0449 Theory +0805.0956 Theory +0805.1095 +0805.1303 Theory +0805.1600 Theory +0805.1656 Theory +0805.1748 +0805.1947 +0805.2173 Theory +0805.3096 +0805.3099 +0805.3234 +0805.3472 Theory +0805.3593 Statistical Finance +0805.3781 Theory +0805.4192 +0805.4270 Theory +0806.0768 +0806.0924 Theory +0806.1505 +0806.1760 Phenomenology +0806.2061 +0806.2334 +0806.2497 Combinatorics +0806.2667 Theory +0806.3153 +0806.3252 Theory +0806.3415 +0806.3745 Phenomenology +0806.3913 Theory +0806.4007 +0806.4382 Theory +0806.4482 +0806.4614 +0807.0112 +0807.0287 +0807.0341 +0807.1392 Theory +0807.1420 +0807.1481 +0807.1658 +0807.1770 +0807.2114 Theory +0807.2674 Phenomenology +0807.2687 +0807.2822 +0807.3291 Lattice +0807.3292 +0807.3445 Theory +0807.4151 +0807.4171 +0807.4216 Theory +0807.4504 Other Condensed Matter +0807.5123 +0808.0094 Metric Geometry +0808.0240 Data Analysis, Statistics and Probability +0808.0424 +0808.0702 Phenomenology +0808.1026 +0808.1380 Phenomenology +0808.2410 Phenomenology +0808.2503 Theory +0808.2985 Phenomenology +0808.3264 Lattice +0808.3500 Phenomenology +0808.3539 +0808.3575 +0809.0023 Phenomenology +0809.0440 Strongly Correlated Electrons +0809.0790 Phenomenology +0809.0892 Lattice +0809.0934 +0809.1085 Theory +0809.1130 Theory +0809.1516 Statistics Theory +0809.1778 Experiment +0809.2020 Theory +0809.2056 Lattice +0809.2621 Strongly Correlated Electrons +0809.2666 Phenomenology +0809.2926 Algebraic Geometry +0809.2935 Atomic Physics +0809.3039 +0809.3264 Phenomenology +0809.3354 Phenomenology +0809.3493 Theory +0809.4872 Phenomenology +0809.5142 +0810.0037 Experiment +0810.0904 Superconductivity +0810.2660 Statistical Mechanics +0810.2813 Probability +0810.3593 +0810.4229 +0810.4493 +0810.5695 Phenomenology +0811.1041 Statistical Mechanics +0811.3095 +0811.4504 Theory +0812.0498 Statistical Mechanics +0812.0942 Phenomenology +0812.1892 Phenomenology +0812.2318 Atmospheric and Oceanic Physics +0812.4201 Theory +0812.4382 +0901.0080 +0901.0634 +0901.1644 +0901.2214 Geometric Topology +0901.2293 Biomolecules +0901.3936 Superconductivity +0902.0075 Physics and Society +0902.1592 Representation Theory +0902.2077 Solar and Stellar Astrophysics +0902.2493 Group Theory +0902.3060 Methodology +0902.3342 General Physics +0902.3465 Cosmology and Nongalactic Astrophysics +0902.3466 High Energy Astrophysical Phenomena +0902.3467 Algebraic Geometry +0902.3468 Exactly Solvable and Integrable Systems +0902.3469 High Energy Astrophysical Phenomena +0902.3470 Algebraic Geometry +0902.3473 Functional Analysis +0902.3474 Cosmology and Nongalactic Astrophysics +0902.3475 Earth and Planetary Astrophysics +0902.3479 Data Analysis, Statistics and Probability +0902.3484 Astrophysics of Galaxies +0902.3485 Data Structures and Algorithms +0902.3489 +0902.3491 Analysis of PDEs +0902.3492 Cosmology and Nongalactic Astrophysics +0902.3497 Materials Science +0902.3499 Differential Geometry +0902.3503 Discrete Mathematics +0902.3513 Artificial Intelligence +0902.3517 Data Structures and Algorithms +0902.3518 Biological Physics +0902.3520 Earth and Planetary Astrophysics +0902.3525 Instrumentation and Methods for Astrophysics +0902.3530 Soft Condensed Matter +0902.3533 Medical Physics +0902.3534 +0902.3538 Classical Physics +0902.3543 Soft Condensed Matter +0902.3545 Mesoscale and Nanoscale Physics +0902.3551 Combinatorics +0902.3552 Mesoscale and Nanoscale Physics +0902.3553 +0902.3554 Cosmology and Nongalactic Astrophysics +0902.3565 Fluid Dynamics +0902.3567 +0902.3568 +0902.3569 +0902.3577 Phenomenology +0902.3580 Superconductivity +0902.3583 Combinatorics +0902.3585 Plasma Physics +0902.3587 Plasma Physics +0902.3589 High Energy Astrophysical Phenomena +0902.3594 Astrophysics of Galaxies +0902.3596 Solar and Stellar Astrophysics +0902.3597 Functional Analysis +0902.3599 Group Theory +0902.3601 High Energy Astrophysical Phenomena +0902.3606 Phenomenology +0902.3607 Instrumentation and Detectors +0902.3614 Artificial Intelligence +0902.3616 Logic in Computer Science +0902.3617 Earth and Planetary Astrophysics +0902.3618 Astrophysics of Galaxies +0902.3628 +0902.3629 General Mathematics +0902.3637 Combinatorics +0902.3638 Materials Science +0902.3639 Algebraic Geometry +0902.3643 Computational Finance +0902.3646 Probability +0902.3648 Artificial Intelligence +0902.3654 Neurons and Cognition +astro-ph/0204245 +astro-ph/0212245 +astro-ph/0701904 +astro-ph/0701919 +astro-ph/0701921 +cond-mat/0506624 Other Condensed Matter +cond-mat/0608272 Mesoscale and Nanoscale Physics +gr-qc/0005004 +gr-qc/0503066 +gr-qc/0701052 +hep-ph/0107220 Phenomenology +hep-ph/0506276 Phenomenology +hep-ph/9902210 Phenomenology +hep-th/0010004 Theory +hep-th/0209112 Theory +hep-th/0212204 Theory +hep-th/0312159 Theory +hep-th/0407154 Theory +hep-th/0501018 Theory +hep-th/0504009 Theory +hep-th/0610079 Theory +hep-th/0611158 Theory +hep-th/9206041 Theory +hep-th/9209107 Theory +hep-th/9306096 Theory +hep-th/9703222 Theory +hep-th/9803051 Theory +hep-th/9803068 Theory +hep-th/9806053 Theory +hep-th/9806107 Theory +hep-th/9808041 Theory +hep-th/9808175 Theory +hep-th/9901128 Theory +hep-th/9903215 Theory +hep-th/9904073 Theory +hep-th/9904076 Theory +hep-th/9907219 Theory +hep-th/9908125 Theory +hep-th/9912067 Theory +math-ph/0312010 +math/0702124 Metric Geometry +nucl-ex/0108019 +nucl-ex/0212020 +nucl-ex/0406006 +nucl-th/9903026 +nucl-th/9904034 +q-bio/0611018 Populations and Evolution +quant-ph/0604148 +quant-ph/0612195 +0704.1095 Complex Variables +0706.1214 +0707.4359 +0710.3342 Differential Geometry +0711.2044 +0712.3863 Differential Geometry +0801.3109 Dynamical Systems +0801.3686 Phenomenology +0802.1130 Differential Geometry +0804.4083 Differential Geometry +0804.4084 Differential Geometry +0804.4085 Differential Geometry +0806.0868 Exactly Solvable and Integrable Systems +0807.1484 Algebraic Geometry +0808.1440 Mesoscale and Nanoscale Physics +0808.2797 Geometric Topology +0808.3447 Functional Analysis +0809.3165 +0809.5147 +0810.1375 +0810.4755 +0810.4835 Materials Science +0810.5172 Statistical Mechanics +0810.5245 +0811.2135 +0812.0597 +0901.0574 Dynamical Systems +0901.0943 +0901.0992 Computational Finance +0901.3056 Information Theory +0901.4831 Number Theory +0902.2943 Statistical Mechanics +0902.4170 Strongly Correlated Electrons +0903.0920 Mesoscale and Nanoscale Physics +0903.2464 Mesoscale and Nanoscale Physics +0903.4178 Mesoscale and Nanoscale Physics +0903.4553 +0903.5021 Neurons and Cognition +0904.1591 Phenomenology +0904.1718 +0904.1969 +0904.2942 Optics +0905.0194 Quantum Algebra +0905.1046 +0905.1067 Materials Science +0905.3305 Superconductivity +0905.3561 +0906.2051 Statistical Mechanics +0906.2952 Fluid Dynamics +0906.3908 Differential Geometry +0906.4744 Materials Science +0906.5107 Operator Algebras +0906.5409 +0907.0129 Analysis of PDEs +0907.1101 Theory +0907.1796 Statistical Mechanics +0907.1850 Operator Algebras +0907.1854 Phenomenology +0907.1900 Materials Science +0907.1905 K-Theory and Homology +0907.1908 Statistical Mechanics +0907.1910 Number Theory +0907.1912 Cosmology and Nongalactic Astrophysics +0907.1916 Computer Science and Game Theory +0907.1928 Cosmology and Nongalactic Astrophysics +0907.1930 +0907.1933 +0907.1947 +0907.1955 Computer Science and Game Theory +0907.1956 Information Theory +0907.1958 Metric Geometry +0907.1959 Probability +0907.1961 Spectral Theory +0907.1963 +0907.1968 General Physics +0907.1978 Software Engineering +0907.1982 Soft Condensed Matter +0907.1983 Probability +0907.1986 Quantum Algebra +0907.1990 Computational Engineering, Finance, and Science +0907.1991 Differential Geometry +0907.1993 Rings and Algebras +0907.1998 Phenomenology +0907.2002 Probability +0907.2005 Molecular Networks +0907.2018 Rings and Algebras +0907.2019 Computers and Society +0907.2020 +0907.2024 General Physics +0907.2025 General Topology +0907.2031 Numerical Analysis +0907.2032 Probability +0907.2033 Group Theory +0907.2035 Probability +0907.2036 Probability +0907.2037 Probability +0907.2039 Software Engineering +0907.2040 Classical Analysis and ODEs +0907.2042 Superconductivity +0907.2044 Atomic Physics +0907.2045 Quantum Algebra +0907.2049 Computer Science and Game Theory +0907.2051 Number Theory +0907.2057 Phenomenology +0907.2058 Phenomenology +0907.2060 Number Theory +0907.2061 Complex Variables +0907.2064 +0907.2067 Strongly Correlated Electrons +0907.2069 Functional Analysis +0907.2071 Data Structures and Algorithms +0907.2072 Software Engineering +0907.2073 Mesoscale and Nanoscale Physics +0907.2075 Computer Vision and Pattern Recognition +0907.2076 Symbolic Computation +0907.2077 Chaotic Dynamics +0907.2079 Optimization and Control +0907.2085 Theory +0907.2093 Information Theory +0907.2094 +0907.2097 Number Theory +0907.2112 +0907.2113 Soft Condensed Matter +0907.2119 Superconductivity +0907.2121 Networking and Internet Architecture +0907.2122 Symplectic Geometry +0907.2127 General Physics +0907.2130 Formal Languages and Automata Theory +0907.2138 Mesoscale and Nanoscale Physics +0907.2142 Analysis of PDEs +0907.2146 Group Theory +0907.2157 Data Structures and Algorithms +0907.2161 Accelerator Physics +0907.2168 Number Theory +0907.2171 Number Theory +0907.2178 Experiment +0907.2181 +0907.2192 Neurons and Cognition +0907.2196 Probability +0907.2200 Optimization and Control +0907.2203 Portfolio Management +0907.2204 Geometric Topology +0907.2206 Phenomenology +0907.2210 Probability +0907.2215 Geometric Topology +0907.2219 Materials Science +0907.2221 Adaptation and Self-Organizing Systems +0907.2224 Analysis of PDEs +math-ph/0606063 +math-ph/0610014 +math/0603256 Combinatorics +math/0611232 Operator Algebras +math/9807171 Analysis of PDEs +q-bio/0702015 Populations and Evolution +0704.2199 Dynamical Systems +0705.3689 Differential Geometry +0708.3009 Quantum Algebra +0708.3904 +0709.2664 +0712.2063 Information Retrieval +0801.1245 Discrete Mathematics +0802.1055 Disordered Systems and Neural Networks +0804.0947 Quantum Algebra +0806.1226 +0808.1234 Mesoscale and Nanoscale Physics +0812.2466 Combinatorics +0903.2820 Information Theory +0903.4458 Cosmology and Nongalactic Astrophysics +0903.5144 Solar and Stellar Astrophysics +0904.1510 Methodology +0904.4524 Soft Condensed Matter +0904.4539 Statistical Mechanics +0905.2373 Classical Analysis and ODEs +0905.2675 Theory +0905.2806 Probability +0905.2953 +0905.4053 Geometric Topology +0906.0930 General Physics +0906.1630 Spectral Theory +0906.4475 Superconductivity +0906.5127 Cosmology and Nongalactic Astrophysics +0906.5548 Probability +0907.2195 Superconductivity +0907.3507 Quantum Gases +0908.1638 Phenomenology +0908.3398 +0909.0418 Statistical Finance +0909.0919 Theory +0909.2676 Other Quantitative Biology +0909.2985 Quantitative Methods +0909.4198 Cosmology and Nongalactic Astrophysics +0909.4351 Probability +0910.0169 General Physics +0910.2313 +0910.4766 Theory +0910.5103 Combinatorics +0910.5535 Data Structures and Algorithms +0910.5871 Superconductivity +0911.2014 Combinatorics +0911.2359 General Physics +0911.2408 Group Theory +0911.2416 +0911.2492 Experiment +0911.2611 Phenomenology +0911.2707 Phenomenology +0911.2713 Combinatorics +0911.2715 Solar and Stellar Astrophysics +0911.2717 Physics and Society +0911.2718 History and Philosophy of Physics +0911.2719 Physics and Society +0911.2721 +0911.2723 Physics and Society +0911.2724 +0911.2726 Physics and Society +0911.2729 Physics and Society +0911.2730 Physics and Society +0911.2731 Digital Libraries +0911.2733 Physics Education +0911.2743 Group Theory +0911.2747 Cosmology and Nongalactic Astrophysics +0911.2748 Disordered Systems and Neural Networks +0911.2749 Algebraic Topology +0911.2754 Theory +0911.2756 Analysis of PDEs +0911.2759 Pattern Formation and Solitons +0911.2760 Logic in Computer Science +0911.2762 Chaotic Dynamics +0911.2770 Cosmology and Nongalactic Astrophysics +0911.2774 Combinatorics +0911.2775 Combinatorics +0911.2778 Logic +0911.2782 Theory +0911.2785 Logic in Computer Science +0911.2791 Number Theory +0911.2799 General Physics +0911.2801 Discrete Mathematics +0911.2802 Discrete Mathematics +0911.2805 Discrete Mathematics +0911.2807 Discrete Mathematics +0911.2818 Classical Analysis and ODEs +0911.2820 Other Condensed Matter +0911.2829 Computational Engineering, Finance, and Science +0911.2834 Pricing of Securities +0911.2835 Mesoscale and Nanoscale Physics +0911.2839 Quantum Gases +0911.2845 Mesoscale and Nanoscale Physics +0911.2851 Algebraic Geometry +0911.2852 Genomics +0911.2854 +0911.2855 Cosmology and Nongalactic Astrophysics +0911.2856 Classical Analysis and ODEs +0911.2857 Strongly Correlated Electrons +0911.2859 Algebraic Topology +0911.2860 Quantum Algebra +0911.2863 Category Theory +0911.2868 Probability +0911.2870 Number Theory +0911.2879 Strongly Correlated Electrons +0911.2881 Differential Geometry +0911.2883 Materials Science +0911.2887 Commutative Algebra +0911.2889 Distributed, Parallel, and Cluster Computing +0911.2892 Logic +0911.2896 Numerical Analysis +0911.2901 Dynamical Systems +0911.2902 Multiagent Systems +0911.2905 Probability +0911.2907 Computational Complexity +0911.2908 Group Theory +0911.2909 Algebraic Geometry +0911.2910 +0911.2913 Strongly Correlated Electrons +0911.2917 Fluid Dynamics +0911.2922 Information Theory +0911.2930 Quantum Gases +0911.2931 Classical Analysis and ODEs +0911.2935 Combinatorics +0911.2936 Earth and Planetary Astrophysics +0911.2941 Genomics +0911.2960 Combinatorics +0911.2965 Phenomenology +0911.2966 Group Theory +0911.2968 +0911.2970 Soft Condensed Matter +0911.2975 Superconductivity +0911.2976 Materials Science +0911.2979 Geometric Topology +0911.2982 Physics and Society +0911.2990 Quantum Algebra +0911.2991 Combinatorics +0911.2996 Analysis of PDEs +0911.3008 +0911.3010 Probability +0911.3012 +0911.3013 Probability +0911.3016 Mesoscale and Nanoscale Physics +0911.3018 Statistical Mechanics +0911.3019 Soft Condensed Matter +0911.3022 Group Theory +0911.3024 Discrete Mathematics +0911.3025 Number Theory +0911.3028 +0911.3034 High Energy Astrophysical Phenomena +0911.3040 Number Theory +0911.3043 Portfolio Management +0911.3047 Theory +0911.3050 Astrophysics of Galaxies +0911.3051 Group Theory +0911.3052 Instrumentation and Methods for Astrophysics +0911.3053 Materials Science +0911.3055 High Energy Astrophysical Phenomena +0911.3067 Geometric Topology +0911.3069 Number Theory +0911.3070 Quantitative Methods +0911.3072 Phenomenology +0911.3075 Strongly Correlated Electrons +0911.3076 Theory +0911.3079 Superconductivity +0911.3081 Differential Geometry +0911.3085 Physics and Society +0911.3086 Digital Libraries +0911.3087 Digital Libraries +0911.3091 Digital Libraries +0911.3092 Distributed, Parallel, and Cluster Computing +0911.3093 Digital Libraries +0911.3095 Digital Libraries +0911.3099 General Finance +0911.3100 Probability +0911.3101 Cosmology and Nongalactic Astrophysics +0911.3104 Differential Geometry +0911.3110 Symbolic Computation +0911.3113 Disordered Systems and Neural Networks +0911.3114 Quantum Algebra +0911.3116 Materials Science +0911.3122 +0911.3123 Algebraic Geometry +0911.3124 Cosmology and Nongalactic Astrophysics +0911.3132 Algebraic Geometry +0911.3133 Algebraic Topology +0911.3134 Materials Science +0911.3138 High Energy Astrophysical Phenomena +cond-mat/0702480 Superconductivity +cs/9901004 Information Retrieval +cs/9912020 Data Structures and Algorithms +math/0510348 Representation Theory +math/0603602 Combinatorics +math/0608245 Combinatorics +0706.1123 Dynamical Systems +0711.1603 Physics and Society +0801.0610 +0801.0967 Probability +0803.2467 Theory +0803.2991 Chaotic Dynamics +0803.4126 General Topology +0804.3225 Symplectic Geometry +0804.4165 Algebraic Topology +0805.0720 +0805.1035 Representation Theory +0805.2925 Analysis of PDEs +0807.1487 Analysis of PDEs +0807.4485 +0808.1129 Number Theory +0808.2417 Computational Complexity +0809.2913 +0809.3269 Theory +0810.4134 Analysis of PDEs +0810.5454 +0811.2263 Strongly Correlated Electrons +0812.3428 Operator Algebras +0812.3685 Statistical Mechanics +0812.4865 +0901.0955 Populations and Evolution +0901.1895 Superconductivity +0901.2161 Phenomenology +0901.4509 General Physics +0901.4881 Methodology +0902.3541 Computational Engineering, Finance, and Science +0902.4566 Mesoscale and Nanoscale Physics +0903.4678 Disordered Systems and Neural Networks +0904.1443 Statistical Mechanics +0904.1656 Astrophysics of Galaxies +0904.3280 Classical Physics +0905.2165 Statistical Mechanics +0905.3276 Solar and Stellar Astrophysics +0905.4271 Instrumentation and Methods for Astrophysics +0906.0086 Differential Geometry +0906.3066 Cosmology and Nongalactic Astrophysics +0906.3982 Complex Variables +0906.5234 Phenomenology +0906.5504 +0907.0045 +0907.0159 Formal Languages and Automata Theory +0907.0232 Differential Geometry +0907.0233 Cosmology and Nongalactic Astrophysics +0907.0238 Plasma Physics +0907.0242 Plasma Physics +0907.0243 Combinatorics +0907.0247 Materials Science +0907.0255 Information Theory +0907.0262 Soft Condensed Matter +0907.0265 +0907.0268 Algebraic Geometry +0907.0270 Experiment +0907.0278 Physics and Society +0907.0279 Physics and Society +0907.0281 Algebraic Geometry +0907.0283 Combinatorics +0907.0284 Representation Theory +0907.0288 Computer Vision and Pattern Recognition +0907.0293 High Energy Astrophysical Phenomena +0907.0294 High Energy Astrophysical Phenomena +0907.0299 Representation Theory +0907.0301 Classical Analysis and ODEs +0907.0304 High Energy Astrophysical Phenomena +0907.0312 High Energy Astrophysical Phenomena +0907.0313 Cryptography and Security +0907.0314 Group Theory +0907.0315 Number Theory +0907.0316 Probability +0907.0321 +0907.0324 Pattern Formation and Solitons +0907.0326 Instrumentation and Methods for Astrophysics +0907.0328 Neural and Evolutionary Computing +0907.0329 Neural and Evolutionary Computing +0907.0331 Mesoscale and Nanoscale Physics +0907.0334 Neural and Evolutionary Computing +0907.0340 Neural and Evolutionary Computing +0907.0341 Number Theory +0907.0342 Instrumentation and Detectors +0907.0343 Number Theory +0907.0344 Materials Science +0907.0347 Probability +0907.0349 General Physics +0907.0352 Phenomenology +0907.0355 Astrophysics of Galaxies +0907.0356 Mesoscale and Nanoscale Physics +0907.0359 Dynamical Systems +0907.0361 Algebraic Geometry +0907.0363 Instrumentation and Methods for Astrophysics +0907.0365 Algebraic Geometry +0907.0366 Cosmology and Nongalactic Astrophysics +0907.0370 Cosmology and Nongalactic Astrophysics +0907.0371 Number Theory +0907.0373 High Energy Astrophysical Phenomena +0907.0376 Combinatorics +0907.0377 Differential Geometry +0907.0385 High Energy Astrophysical Phenomena +0907.0386 +0907.0387 High Energy Astrophysical Phenomena +0907.0396 Geometric Topology +0907.0398 Analysis of PDEs +0907.0399 High Energy Astrophysical Phenomena +0907.0401 Combinatorics +0907.0402 Functional Analysis +0907.0403 Logic in Computer Science +0907.0404 Software Engineering +0907.0408 Lattice +0907.0412 +0907.0414 +0907.0416 +0907.0417 Statistical Mechanics +0907.0418 Computer Vision and Pattern Recognition +0907.0421 Methodology +0907.0422 +0907.0425 General Physics +0907.0429 Statistics Theory +0907.0438 General Physics +0907.0441 Instrumentation and Detectors +0907.0442 Atmospheric and Oceanic Physics +0907.0443 Phenomenology +0907.0446 Optics +0907.0447 Statistical Mechanics +0907.0452 High Energy Astrophysical Phenomena +0907.0458 Instrumentation and Methods for Astrophysics +0907.0460 Cosmology and Nongalactic Astrophysics +0907.0466 Instrumentation and Methods for Astrophysics +0907.0469 Statistical Mechanics +hep-th/0701118 Theory +math/0207281 Category Theory +math/0504579 Number Theory +math/0606067 Category Theory +math/0608554 Algebraic Geometry +math/0702356 Symplectic Geometry +math/0703408 Functional Analysis +0704.3556 Analysis of PDEs +0705.0116 Phenomenology +0705.2916 +0706.3146 Cryptography and Security +0707.2390 +0708.0591 +0708.3792 Theory +0709.0111 Methodology +0709.1211 Information Theory +0709.1639 Symplectic Geometry +0710.2007 +0710.3139 Probability +0710.4516 Physics and Society +0710.5352 Phenomenology +0711.0975 +0711.1698 Quantum Algebra +0711.2000 Dynamical Systems +0711.2840 +0711.4257 Theory +0711.4910 Chaotic Dynamics +0712.1210 +0712.2664 +0712.3129 +0801.0301 Phenomenology +0801.1764 +0801.2250 Differential Geometry +0801.3494 Statistical Finance +0802.0830 Phenomenology +0802.1901 Phenomenology +0802.2441 Algebraic Geometry +0802.4090 Theory +0802.4157 Theory +0803.1007 Phenomenology +0803.1917 Phenomenology +0803.2628 +0803.4216 Algebraic Geometry +0804.0846 Theory +0804.1404 +0804.3610 +0805.2134 +0805.2314 Analysis of PDEs +0805.4472 Probability +0806.0014 +0806.3184 Optics +0806.4500 Representation Theory +0807.0474 Analysis of PDEs +0807.0807 Discrete Mathematics +0807.1592 Dynamical Systems +0807.2736 Theory +0807.3089 Genomics +0807.3192 +0808.0744 Strongly Correlated Electrons +0808.1662 Statistical Mechanics +0808.3124 +0808.3966 +0809.1781 Theory +0809.2412 +0809.3696 Other Condensed Matter +0809.4658 Strongly Correlated Electrons +0809.4887 Algebraic Geometry +0810.1327 Biomolecules +0810.1328 +0810.2419 Lattice +0810.2423 Lattice +0810.2443 Lattice +0810.3450 Complex Variables +0810.3684 Theory +0810.3755 Group Theory +0811.0253 Physics and Society +0811.0524 Combinatorics +0811.2323 +0811.3049 +0811.3096 Superconductivity +0811.4426 +0812.4921 K-Theory and Homology +0901.0523 Superconductivity +0901.4145 Other Condensed Matter +0901.4368 Theory +0902.1320 Phenomenology +0902.1352 Theory +0902.1530 Cosmology and Nongalactic Astrophysics +0902.1544 Soft Condensed Matter +0902.1545 Differential Geometry +0902.1549 +0902.1550 Cosmology and Nongalactic Astrophysics +0902.1555 Solar and Stellar Astrophysics +0902.1561 High Energy Astrophysical Phenomena +0902.1565 Optimization and Control +0902.1573 Geometric Topology +0902.1579 Biomolecules +0902.1581 Solar and Stellar Astrophysics +0902.1586 Probability +0902.1587 Logic in Computer Science +0902.1590 Optimization and Control +0902.1594 Algebraic Geometry +0902.1595 Symplectic Geometry +0902.1598 Methodology +0902.1599 Materials Science +0902.1602 Discrete Mathematics +0902.1603 Algebraic Geometry +0902.1604 Data Structures and Algorithms +0902.1605 Data Structures and Algorithms +0902.1606 Optics +0902.1609 Computational Complexity +0902.1610 Software Engineering +0902.1615 Metric Geometry +0902.1622 +0902.1625 Other Condensed Matter +0902.1626 Probability +0902.1629 Neural and Evolutionary Computing +0902.1632 Analysis of PDEs +0902.1635 Analysis of PDEs +0902.1641 Chaotic Dynamics +0902.1646 Functional Analysis +0902.1647 Neural and Evolutionary Computing +0902.1649 Materials Science +0902.1650 Combinatorics +0902.1651 Strongly Correlated Electrons +0902.1653 Algebraic Geometry +0902.1661 Computational Complexity +0902.1663 Combinatorics +0902.1664 +0902.1668 Group Theory +0902.1670 Statistical Mechanics +0902.1672 Materials Science +0902.1674 Materials Science +0902.1690 Neural and Evolutionary Computing +0902.1691 Classical Analysis and ODEs +0902.1697 Differential Geometry +0902.1706 Group Theory +0902.1711 Solar and Stellar Astrophysics +0902.1712 Cosmology and Nongalactic Astrophysics +0902.1715 Combinatorics +0902.1721 Computational Finance +0902.1724 +0902.1725 Astrophysics of Galaxies +0902.1726 Solar and Stellar Astrophysics +0902.1727 Atomic Physics +0902.1728 Phenomenology +0902.1732 Logic +0902.1734 Information Theory +0902.1735 Data Structures and Algorithms +0902.1737 Data Structures and Algorithms +0902.1738 Group Theory +0902.1740 Instrumentation and Methods for Astrophysics +0902.1744 Representation Theory +astro-ph/0510550 +cond-mat/0508193 Statistical Mechanics +cond-mat/0511344 Statistical Mechanics +cond-mat/9912053 Strongly Correlated Electrons +cond-mat/9912255 Statistical Mechanics +cs/0601114 Databases +cs/0701141 Numerical Analysis +gr-qc/0110097 +gr-qc/0205132 +gr-qc/0506090 +gr-qc/0608025 +gr-qc/0609104 +gr-qc/0703095 +hep-ex/0508045 Experiment +hep-ph/0002085 Phenomenology +hep-ph/0211433 Phenomenology +hep-ph/0603172 Phenomenology +hep-ph/9408265 Phenomenology +hep-ph/9506459 Phenomenology +hep-ph/9612420 Phenomenology +hep-ph/9812385 Phenomenology +hep-th/0511077 Theory +hep-th/0607230 Theory +hep-th/9703062 Theory +math/0211108 Probability +math/0403324 Probability +math/0605096 Spectral Theory +math/0605583 Probability +nucl-ex/0608027 +nucl-th/9411012 +nucl-th/9611033 +nucl-th/9706066 +nucl-th/9709027 +quant-ph/0303005 +0704.3602 +0707.3359 Theory +0708.0858 Materials Science +0708.3927 +0709.1256 Experiment +0709.1298 General Physics +0709.4280 Combinatorics +0710.0022 +0710.2049 Geometric Topology +0710.3486 +0711.0293 +0712.0827 Differential Geometry +0712.1136 Theory +0712.3961 Theory +0802.3981 Complex Variables +0803.0856 Materials Science +0804.0495 Materials Science +0804.1853 Materials Science +0804.3239 Phenomenology +0805.1943 Phenomenology +0805.3393 Materials Science +0806.4704 Geometric Topology +0808.3160 Materials Science +0809.1792 Statistical Mechanics +0809.3097 Functional Analysis +0810.0856 Materials Science +0811.2333 +0811.3267 Phenomenology +0811.3382 +0811.4051 +0811.4292 +0811.4388 +0812.0417 +0812.0658 +0812.1973 +0812.2266 +0812.4148 +0901.0611 +0901.3753 Theory +0902.2395 Astrophysics of Galaxies +0902.3401 Combinatorics +0903.0864 Soft Condensed Matter +0903.1582 Cosmology and Nongalactic Astrophysics +0903.2113 Soft Condensed Matter +0903.2319 +0903.3409 Cosmology and Nongalactic Astrophysics +0903.5324 Quantum Gases +0904.0509 Theory +0904.1837 High Energy Astrophysical Phenomena +0904.2496 Functional Analysis +0904.2532 Soft Condensed Matter +0904.3171 +0904.4698 Phenomenology +0905.0062 Analysis of PDEs +0905.0152 Materials Science +0905.0593 Mesoscale and Nanoscale Physics +0905.0662 Phenomenology +0905.2736 High Energy Astrophysical Phenomena +0905.2837 Quantum Gases +0905.3880 Number Theory +0906.0933 Solar and Stellar Astrophysics +0906.1056 Symplectic Geometry +0906.1097 +0906.1812 Mesoscale and Nanoscale Physics +0906.2246 Superconductivity +0906.2480 Solar and Stellar Astrophysics +0906.2787 Cosmology and Nongalactic Astrophysics +0906.2868 Instrumentation and Detectors +0906.5583 Theory +0907.0770 Phenomenology +0907.2764 Optimization and Control +0907.3563 Discrete Mathematics +0907.4654 +0908.0072 Quantum Gases +0908.0290 +0908.0461 Mesoscale and Nanoscale Physics +0908.1121 Theory +0908.1442 +0908.1483 +0908.2218 Theory +0908.2651 +0908.3160 Theory +0908.3722 Superconductivity +0908.3839 Accelerator Physics +0908.3845 Experiment +0909.0500 Superconductivity +0909.2275 Theory +0909.2480 Instrumentation and Detectors +0909.3191 Instrumentation and Detectors +0909.3289 Theory +0909.4418 Phenomenology +0909.4944 +0909.5039 Instrumentation and Detectors +0909.5323 Phenomenology +0909.5351 +0909.5402 Instrumentation and Detectors +0909.5625 +0910.0102 +0910.0657 +0910.0666 Soft Condensed Matter +0910.0719 +0910.1788 Complex Variables +0910.4300 General Physics +0910.4481 Phenomenology +0910.4625 Classical Analysis and ODEs +0910.5886 Solar and Stellar Astrophysics +0911.0990 +0911.1678 Logic in Computer Science +0911.3325 Strongly Correlated Electrons +0911.5079 Geometric Topology +0911.5080 Geometric Topology +0912.2507 Algebraic Geometry +0912.2660 Phenomenology +0912.2698 +0912.2703 Classical Physics +0912.2761 +0912.2810 Dynamical Systems +0912.2827 +0912.2979 Discrete Mathematics +0912.3004 Discrete Mathematics +0912.3010 Classical Analysis and ODEs +0912.3011 +0912.3020 Differential Geometry +0912.3026 High Energy Astrophysical Phenomena +0912.3027 Dynamical Systems +0912.3028 Pricing of Securities +0912.3029 Information Theory +0912.3031 Pricing of Securities +0912.3033 Optimization and Control +0912.3035 Fluid Dynamics +0912.3036 Logic in Computer Science +0912.3041 Functional Analysis +0912.3047 Mesoscale and Nanoscale Physics +0912.3049 Cosmology and Nongalactic Astrophysics +0912.3057 Neurons and Cognition +0912.3058 Materials Science +0912.3059 Classical Physics +0912.3062 Other Condensed Matter +0912.3064 Neurons and Cognition +0912.3067 Number Theory +0912.3071 +0912.3077 General Physics +0912.3079 Combinatorics +0912.3092 Mesoscale and Nanoscale Physics +0912.3095 +0912.3097 Computational Geometry +0912.3098 Digital Libraries +0912.3099 Cosmology and Nongalactic Astrophysics +0912.3100 Physics and Society +0912.3101 Physics and Society +0912.3113 Number Theory +0912.3115 Number Theory +0912.3117 Probability +0912.3118 Cosmology and Nongalactic Astrophysics +0912.3119 Analysis of PDEs +0912.3120 +0912.3121 Cosmology and Nongalactic Astrophysics +0912.3123 Number Theory +0912.3124 Statistical Mechanics +0912.3129 Classical Analysis and ODEs +0912.3130 Representation Theory +0912.3131 Representation Theory +0912.3132 Portfolio Management +0912.3133 Functional Analysis +0912.3141 Representation Theory +0912.3145 +0912.3162 Computational Complexity +0912.3170 Dynamical Systems +0912.3172 +0912.3176 High Energy Astrophysical Phenomena +0912.3193 Superconductivity +0912.3208 Quantitative Methods +0912.3211 Machine Learning +0912.3218 +0912.3223 Computational Physics +0912.3228 Artificial Intelligence +0912.3231 Probability +0912.3239 Dynamical Systems +0912.3241 Algebraic Geometry +0912.3242 Representation Theory +cond-mat/0112323 +cond-mat/0203305 Materials Science +cond-mat/0204497 Materials Science +cond-mat/0401161 Materials Science +cond-mat/0407677 Materials Science +cond-mat/0410508 Materials Science +cond-mat/0512135 Materials Science +cond-mat/0604472 Materials Science +cond-mat/0605435 Materials Science +cond-mat/0606250 Materials Science +cond-mat/0608257 Materials Science +cond-mat/0608640 Materials Science +cond-mat/0609160 Materials Science +cond-mat/0612442 Materials Science +gr-qc/0309021 +gr-qc/0309097 +hep-ex/0307013 Experiment +hep-ph/0307390 Phenomenology +hep-ph/0309004 Phenomenology +hep-ph/0404027 Phenomenology +hep-ph/0407357 Phenomenology +hep-ph/0503149 Phenomenology +hep-ph/0703135 Phenomenology +hep-th/0204030 Theory +hep-th/0605251 Theory +math/0111150 Classical Analysis and ODEs +math/0608472 Algebraic Geometry +0704.1157 +0704.2163 Physics and Society +0710.3645 General Finance +0807.0547 Strongly Correlated Electrons +0807.0890 Theory +0808.2219 Rings and Algebras +0809.1007 +0810.0586 Functional Analysis +0810.0773 Functional Analysis +0810.1014 +0810.4389 Geometric Topology +0812.1360 Strongly Correlated Electrons +0901.1383 Optimization and Control +0901.3852 General Mathematics +0901.3944 Biological Physics +0901.4304 Theory +cond-mat/0408067 Other Condensed Matter +math/0701275 Dynamical Systems +physics/0603061 Physics and Society +0705.3099 Information Theory +0706.2838 Statistical Mechanics +0709.0013 Spectral Theory +0709.2069 Exactly Solvable and Integrable Systems +0710.3634 Phenomenology +0802.2014 +0803.0843 +0805.2457 Classical Physics +0805.3452 Mesoscale and Nanoscale Physics +0808.2244 Theory +0808.2498 Superconductivity +0809.0408 Phenomenology +0809.5150 Numerical Analysis +0809.5173 Numerical Analysis +0810.1926 Strongly Correlated Electrons +0811.1948 Theory +0812.1222 Theory +0812.4345 Theory +0901.0534 Mesoscale and Nanoscale Physics +0901.1928 Functional Analysis +0902.0769 Cosmology and Nongalactic Astrophysics +0902.1130 Algebraic Geometry +0903.0148 Soft Condensed Matter +0903.2423 Cosmology and Nongalactic Astrophysics +0904.0950 Statistical Mechanics +0904.1724 Functional Analysis +0904.1922 Algebraic Geometry +0904.4034 Quantum Gases +0905.0732 Quantitative Methods +0905.2952 Soft Condensed Matter +0905.3208 Optics +0906.0888 Earth and Planetary Astrophysics +0906.4261 +0907.1390 Materials Science +0907.1474 Statistical Mechanics +0907.1960 +0907.3268 Logic +0908.2827 Quantitative Methods +0908.3085 +0908.3823 Number Theory +0909.0473 Other Condensed Matter +0909.2856 Theory +0910.1282 Statistical Mechanics +0910.1951 Populations and Evolution +0910.2084 Cell Behavior +0910.3154 Accelerator Physics +0910.3514 Differential Geometry +0910.3638 Experiment +0910.3643 Experiment +0910.3859 Solar and Stellar Astrophysics +0910.3945 Cosmology and Nongalactic Astrophysics +0910.3959 +0910.3960 Cosmology and Nongalactic Astrophysics +0910.3961 Plasma Physics +0910.3964 Analysis of PDEs +0910.3968 Soft Condensed Matter +0910.3969 +0910.3974 Algebraic Geometry +0910.3975 Information Theory +0910.3976 Number Theory +0910.3978 Category Theory +0910.3980 Symplectic Geometry +0910.3984 +0910.3999 Algebraic Geometry +0910.4000 Robotics +0910.4003 Numerical Analysis +0910.4007 Cosmology and Nongalactic Astrophysics +0910.4009 Probability +0910.4012 Robotics +0910.4014 Probability +0910.4016 Dynamical Systems +0910.4017 Theory +0910.4020 Biological Physics +0910.4024 Networking and Internet Architecture +0910.4030 General Physics +0910.4031 General Physics +0910.4033 Cryptography and Security +0910.4044 Cryptography and Security +0910.4046 Algebraic Geometry +0910.4050 Computational Physics +0910.4052 Hardware Architecture +0910.4053 Cryptography and Security +0910.4055 Statistical Mechanics +0910.4056 Cryptography and Security +0910.4062 Experiment +0910.4066 +0910.4067 Populations and Evolution +0910.4073 +0910.4075 Differential Geometry +0910.4077 Molecular Networks +0910.4084 Computational Geometry +0910.4086 Solar and Stellar Astrophysics +0910.4087 +0910.4089 Probability +0910.4090 +0910.4096 Differential Geometry +0910.4101 Differential Geometry +0910.4105 Algebraic Geometry +0910.4112 Commutative Algebra +0910.4114 +0910.4116 Neural and Evolutionary Computing +0910.4117 Superconductivity +0910.4119 Soft Condensed Matter +0910.4128 Information Theory +0910.4130 Information Theory +0910.4132 Information Theory +0910.4133 +0910.4134 Theory +0910.4136 Theory +0910.4139 Materials Science +0910.4140 Functional Analysis +0910.4141 Cosmology and Nongalactic Astrophysics +0910.4144 Computational Geometry +0910.4145 +0910.4149 Phenomenology +0910.4154 Rings and Algebras +adap-org/9304001 Adaptation and Self-Organizing Systems +adap-org/9306004 Adaptation and Self-Organizing Systems +adap-org/9307001 Adaptation and Self-Organizing Systems +adap-org/9311001 Adaptation and Self-Organizing Systems +adap-org/9311004 Adaptation and Self-Organizing Systems +adap-org/9311005 Adaptation and Self-Organizing Systems +adap-org/9312001 Adaptation and Self-Organizing Systems +adap-org/9401001 Adaptation and Self-Organizing Systems +adap-org/9405004 Adaptation and Self-Organizing Systems +adap-org/9407001 Adaptation and Self-Organizing Systems +adap-org/9407002 Adaptation and Self-Organizing Systems +adap-org/9408001 Adaptation and Self-Organizing Systems +adap-org/9410003 Adaptation and Self-Organizing Systems +adap-org/9411002 Adaptation and Self-Organizing Systems +alg-geom/9202009 Algebraic Geometry +alg-geom/9206002 Algebraic Geometry +alg-geom/9208001 Algebraic Geometry +alg-geom/9302006 Algebraic Geometry +alg-geom/9305012 Algebraic Geometry +alg-geom/9307010 Algebraic Geometry +alg-geom/9309003 Algebraic Geometry +alg-geom/9311002 Algebraic Geometry +alg-geom/9404010 Algebraic Geometry +astro-ph/9204001 +astro-ph/9204003 +astro-ph/9204004 +astro-ph/9204005 +astro-ph/9204006 +astro-ph/9205002 +astro-ph/9205003 +astro-ph/9205005 +astro-ph/9205006 +astro-ph/9206003 +astro-ph/9206004 +astro-ph/9206005 +astro-ph/9208001 +astro-ph/9208002 +astro-ph/9208004 +astro-ph/9208007 +astro-ph/9209004 +astro-ph/9209005 +astro-ph/9209006 +astro-ph/9210001 +astro-ph/9210003 +astro-ph/9210004 +astro-ph/9210005 +astro-ph/9210007 +astro-ph/9211003 +astro-ph/9211009 +astro-ph/9211010 +astro-ph/9211011 +astro-ph/9212002 +astro-ph/9301001 +astro-ph/9301002 +astro-ph/9301005 +astro-ph/9301006 +astro-ph/9301007 +astro-ph/9301009 +astro-ph/9301011 +astro-ph/9302009 +astro-ph/9302010 +astro-ph/9302011 +astro-ph/9302012 +astro-ph/9302014 +astro-ph/9302018 +astro-ph/9303002 +astro-ph/9303004 +astro-ph/9303007 +astro-ph/9303015 +astro-ph/9303016 +astro-ph/9303017 +astro-ph/9303020 +astro-ph/9304001 +astro-ph/9304002 +astro-ph/9304003 +astro-ph/9304005 +astro-ph/9304009 +astro-ph/9304011 +astro-ph/9304013 +astro-ph/9304014 +astro-ph/9304016 +astro-ph/9304021 +astro-ph/9304023 +astro-ph/9304024 +astro-ph/9304026 +astro-ph/9304027 +astro-ph/9304028 +astro-ph/9305001 +astro-ph/9305006 +astro-ph/9305009 +astro-ph/9305010 +astro-ph/9305012 +astro-ph/9305014 +astro-ph/9305015 +astro-ph/9305018 +astro-ph/9305020 +astro-ph/9305021 +astro-ph/9305022 +astro-ph/9305025 +astro-ph/9305027 +astro-ph/9305030 +astro-ph/9305038 +astro-ph/9306003 +astro-ph/9306004 +astro-ph/9306005 +astro-ph/9306007 +astro-ph/9306008 +astro-ph/9306009 +astro-ph/9306011 +astro-ph/9306012 +astro-ph/9306013 +astro-ph/9306014 +astro-ph/9306016 +astro-ph/9306017 +astro-ph/9306020 +astro-ph/9306023 +astro-ph/9306025 +astro-ph/9306027 +astro-ph/9306028 +astro-ph/9306030 +astro-ph/9307005 +astro-ph/9307006 +astro-ph/9307008 +astro-ph/9307009 +astro-ph/9307010 +astro-ph/9307011 +astro-ph/9307012 +astro-ph/9307021 +astro-ph/9307023 +astro-ph/9307027 +astro-ph/9307028 +astro-ph/9307029 +astro-ph/9307030 +astro-ph/9307031 +astro-ph/9307032 +astro-ph/9307033 +astro-ph/9307034 +astro-ph/9307037 +astro-ph/9307039 +astro-ph/9308002 +astro-ph/9308006 +astro-ph/9308012 +astro-ph/9308014 +astro-ph/9308018 +astro-ph/9308019 +astro-ph/9308020 +astro-ph/9308022 +astro-ph/9308029 +astro-ph/9308033 +astro-ph/9308035 +astro-ph/9308036 +astro-ph/9308037 +astro-ph/9308042 +astro-ph/9308043 +astro-ph/9309001 +astro-ph/9309002 +astro-ph/9309003 +astro-ph/9309005 +astro-ph/9309009 +astro-ph/9309011 +astro-ph/9309014 +astro-ph/9309015 +astro-ph/9309025 +astro-ph/9309034 +astro-ph/9309035 +astro-ph/9309038 +astro-ph/9309044 +astro-ph/9309045 +astro-ph/9309052 +astro-ph/9309057 +astro-ph/9309059 +astro-ph/9310002 +astro-ph/9310003 +astro-ph/9310006 +astro-ph/9310010 +astro-ph/9310013 +astro-ph/9310014 +astro-ph/9310020 +astro-ph/9310021 +astro-ph/9310029 +astro-ph/9310031 +astro-ph/9310036 +astro-ph/9310040 +astro-ph/9310042 +astro-ph/9310044 +astro-ph/9310047 +astro-ph/9310048 +astro-ph/9310050 +astro-ph/9310051 +astro-ph/9310052 +astro-ph/9311002 +astro-ph/9311003 +astro-ph/9311009 +astro-ph/9311010 +astro-ph/9311012 +astro-ph/9311016 +astro-ph/9311017 +astro-ph/9311022 +astro-ph/9311023 +astro-ph/9311028 +astro-ph/9311029 +astro-ph/9311030 +astro-ph/9311031 +astro-ph/9311039 +astro-ph/9311050 +astro-ph/9311052 +astro-ph/9311056 +astro-ph/9311058 +astro-ph/9311059 +astro-ph/9311061 +astro-ph/9311063 +astro-ph/9311064 +astro-ph/9311065 +astro-ph/9311066 +astro-ph/9311069 +astro-ph/9311070 +astro-ph/9311072 +astro-ph/9311075 +astro-ph/9312001 +astro-ph/9312006 +astro-ph/9312008 +astro-ph/9312011 +astro-ph/9312015 +astro-ph/9312016 +astro-ph/9312020 +astro-ph/9312021 +astro-ph/9312023 +astro-ph/9312025 +astro-ph/9312026 +astro-ph/9312027 +astro-ph/9312032 +astro-ph/9312033 +astro-ph/9312036 +astro-ph/9312038 +astro-ph/9312042 +astro-ph/9312043 +astro-ph/9312048 +astro-ph/9312049 +astro-ph/9312050 +astro-ph/9312055 +astro-ph/9312056 +astro-ph/9312057 +astro-ph/9312059 +astro-ph/9312061 +astro-ph/9312063 +astro-ph/9312064 +astro-ph/9312065 +astro-ph/9312066 +astro-ph/9401003 +astro-ph/9401004 +astro-ph/9401005 +astro-ph/9401006 +astro-ph/9401007 +astro-ph/9401009 +astro-ph/9401010 +astro-ph/9401011 +astro-ph/9401017 +astro-ph/9401020 +astro-ph/9401021 +astro-ph/9401022 +astro-ph/9401023 +astro-ph/9401024 +astro-ph/9401026 +astro-ph/9401032 +astro-ph/9401033 +astro-ph/9401034 +astro-ph/9401036 +astro-ph/9401040 +astro-ph/9401041 +astro-ph/9401042 +astro-ph/9401045 +astro-ph/9401046 +astro-ph/9401047 +astro-ph/9401050 +astro-ph/9401051 +astro-ph/9402002 +astro-ph/9402003 +astro-ph/9402004 +astro-ph/9402005 +astro-ph/9402007 +astro-ph/9402008 +astro-ph/9402010 +astro-ph/9402011 +astro-ph/9402014 +astro-ph/9402017 +astro-ph/9402018 +astro-ph/9402019 +astro-ph/9402020 +astro-ph/9402025 +astro-ph/9402027 +astro-ph/9402028 +astro-ph/9402030 +astro-ph/9402032 +astro-ph/9402034 +astro-ph/9402035 +astro-ph/9402036 +astro-ph/9402039 +astro-ph/9402044 +astro-ph/9402045 +astro-ph/9402047 +astro-ph/9402051 +astro-ph/9402052 +astro-ph/9402053 +astro-ph/9402054 +astro-ph/9402057 +astro-ph/9402058 +astro-ph/9402059 +astro-ph/9402062 +astro-ph/9402063 +astro-ph/9402064 +astro-ph/9402065 +astro-ph/9402066 +astro-ph/9402068 +astro-ph/9402070 +astro-ph/9402071 +astro-ph/9403001 +astro-ph/9403003 +astro-ph/9403004 +astro-ph/9403005 +astro-ph/9403008 +astro-ph/9403010 +astro-ph/9403011 +astro-ph/9403012 +astro-ph/9403013 +astro-ph/9403014 +astro-ph/9403016 +astro-ph/9403018 +astro-ph/9403021 +astro-ph/9403022 +astro-ph/9403025 +astro-ph/9403026 +astro-ph/9403028 +astro-ph/9403029 +astro-ph/9403033 +astro-ph/9403038 +astro-ph/9403040 +astro-ph/9403043 +astro-ph/9403044 +astro-ph/9403045 +astro-ph/9403052 +astro-ph/9403054 +astro-ph/9403057 +astro-ph/9403058 +astro-ph/9403060 +astro-ph/9403065 +astro-ph/9403066 +astro-ph/9404003 +astro-ph/9404004 +astro-ph/9404005 +astro-ph/9404007 +astro-ph/9404008 +astro-ph/9404009 +astro-ph/9404010 +astro-ph/9404011 +astro-ph/9404012 +astro-ph/9404013 +astro-ph/9404014 +astro-ph/9404015 +astro-ph/9404016 +astro-ph/9404017 +astro-ph/9404024 +astro-ph/9404026 +astro-ph/9404027 +astro-ph/9404028 +astro-ph/9404029 +astro-ph/9404030 +astro-ph/9404031 +astro-ph/9404032 +astro-ph/9404033 +astro-ph/9404034 +astro-ph/9404036 +astro-ph/9404038 +astro-ph/9404039 +astro-ph/9404041 +astro-ph/9404043 +astro-ph/9404045 +astro-ph/9404046 +astro-ph/9404050 +astro-ph/9404053 +astro-ph/9404057 +astro-ph/9404058 +astro-ph/9404060 +astro-ph/9404064 +astro-ph/9404065 +astro-ph/9404068 +astro-ph/9404069 +astro-ph/9404073 +astro-ph/9404074 +astro-ph/9404080 +astro-ph/9405003 +astro-ph/9405004 +astro-ph/9405005 +astro-ph/9405009 +astro-ph/9405011 +astro-ph/9405012 +astro-ph/9405013 +astro-ph/9405016 +astro-ph/9405017 +astro-ph/9405023 +astro-ph/9405024 +astro-ph/9405028 +astro-ph/9405029 +astro-ph/9405030 +astro-ph/9405031 +astro-ph/9405033 +astro-ph/9405035 +astro-ph/9405037 +astro-ph/9405040 +astro-ph/9405043 +astro-ph/9405044 +astro-ph/9405045 +astro-ph/9405047 +astro-ph/9405051 +astro-ph/9405053 +astro-ph/9405054 +astro-ph/9405055 +astro-ph/9405059 +astro-ph/9405061 +astro-ph/9405062 +astro-ph/9405065 +astro-ph/9405066 +astro-ph/9405072 +astro-ph/9405073 +astro-ph/9405075 +astro-ph/9406001 +astro-ph/9406002 +astro-ph/9406004 +astro-ph/9406005 +astro-ph/9406006 +astro-ph/9406007 +astro-ph/9406014 +astro-ph/9406015 +astro-ph/9406019 +astro-ph/9406023 +astro-ph/9406024 +astro-ph/9406026 +astro-ph/9406030 +astro-ph/9406031 +astro-ph/9406032 +astro-ph/9406036 +astro-ph/9406037 +astro-ph/9406038 +astro-ph/9406039 +astro-ph/9406042 +astro-ph/9406046 +astro-ph/9406047 +astro-ph/9406049 +astro-ph/9406050 +astro-ph/9406052 +astro-ph/9406057 +astro-ph/9406059 +astro-ph/9406066 +astro-ph/9406068 +astro-ph/9406069 +astro-ph/9406076 +astro-ph/9407003 +astro-ph/9407006 +astro-ph/9407007 +astro-ph/9407009 +astro-ph/9407011 +astro-ph/9407015 +astro-ph/9407022 +astro-ph/9407023 +astro-ph/9407026 +astro-ph/9407028 +astro-ph/9407029 +astro-ph/9407030 +astro-ph/9407031 +astro-ph/9407034 +astro-ph/9407035 +astro-ph/9407036 +astro-ph/9407038 +astro-ph/9407039 +astro-ph/9407040 +astro-ph/9407041 +astro-ph/9407043 +astro-ph/9407050 +astro-ph/9407052 +astro-ph/9407053 +astro-ph/9407054 +astro-ph/9407057 +astro-ph/9407059 +astro-ph/9407060 +astro-ph/9407061 +astro-ph/9407067 +astro-ph/9407068 +astro-ph/9407069 +astro-ph/9407070 +astro-ph/9407074 +astro-ph/9407079 +astro-ph/9407080 +astro-ph/9407083 +astro-ph/9407084 +astro-ph/9407085 +astro-ph/9407086 +astro-ph/9407087 +astro-ph/9407088 +astro-ph/9407090 +astro-ph/9407092 +astro-ph/9407097 +astro-ph/9408004 +astro-ph/9408009 +astro-ph/9408010 +astro-ph/9408011 +astro-ph/9408015 +astro-ph/9408016 +astro-ph/9408022 +astro-ph/9408023 +astro-ph/9408025 +astro-ph/9408027 +astro-ph/9408028 +astro-ph/9408029 +astro-ph/9408030 +astro-ph/9408032 +astro-ph/9408033 +astro-ph/9408036 +astro-ph/9408041 +astro-ph/9408043 +astro-ph/9408046 +astro-ph/9408047 +astro-ph/9408048 +astro-ph/9408049 +astro-ph/9408051 +astro-ph/9408053 +astro-ph/9408054 +astro-ph/9408056 +astro-ph/9408058 +astro-ph/9408059 +astro-ph/9408061 +astro-ph/9408062 +astro-ph/9408063 +astro-ph/9408071 +astro-ph/9408078 +astro-ph/9408080 +astro-ph/9408081 +astro-ph/9408083 +astro-ph/9408084 +astro-ph/9408085 +astro-ph/9408086 +astro-ph/9408090 +astro-ph/9408091 +astro-ph/9408092 +astro-ph/9408093 +astro-ph/9408098 +astro-ph/9408100 +astro-ph/9408101 +astro-ph/9409002 +astro-ph/9409003 +astro-ph/9409006 +astro-ph/9409007 +astro-ph/9409008 +astro-ph/9409012 +astro-ph/9409013 +astro-ph/9409014 +astro-ph/9409015 +astro-ph/9409016 +astro-ph/9409017 +astro-ph/9409018 +astro-ph/9409019 +astro-ph/9409021 +astro-ph/9409022 +astro-ph/9409024 +astro-ph/9409025 +astro-ph/9409028 +astro-ph/9409030 +astro-ph/9409032 +astro-ph/9409033 +astro-ph/9409034 +astro-ph/9409035 +astro-ph/9409036 +astro-ph/9409037 +astro-ph/9409039 +astro-ph/9409042 +astro-ph/9409043 +astro-ph/9409045 +astro-ph/9409050 +astro-ph/9409051 +astro-ph/9409052 +astro-ph/9409056 +astro-ph/9409057 +astro-ph/9409058 +astro-ph/9409065 +astro-ph/9409069 +astro-ph/9409070 +astro-ph/9409071 +astro-ph/9409072 +astro-ph/9409074 +astro-ph/9409079 +astro-ph/9409080 +astro-ph/9409083 +astro-ph/9409089 +astro-ph/9409091 +astro-ph/9409095 +astro-ph/9410001 +astro-ph/9410004 +astro-ph/9410005 +astro-ph/9410009 +astro-ph/9410013 +astro-ph/9410014 +astro-ph/9410016 +astro-ph/9410017 +astro-ph/9410018 +astro-ph/9410020 +astro-ph/9410024 +astro-ph/9410025 +astro-ph/9410027 +astro-ph/9410029 +astro-ph/9410032 +astro-ph/9410033 +astro-ph/9410034 +astro-ph/9410035 +astro-ph/9410036 +astro-ph/9410039 +astro-ph/9410042 +astro-ph/9410049 +astro-ph/9410050 +astro-ph/9410051 +astro-ph/9410052 +astro-ph/9410054 +astro-ph/9410061 +astro-ph/9410062 +astro-ph/9410065 +astro-ph/9410066 +astro-ph/9410067 +astro-ph/9410069 +astro-ph/9410074 +astro-ph/9410080 +astro-ph/9410081 +astro-ph/9410088 +astro-ph/9410093 +astro-ph/9410094 +astro-ph/9411001 +astro-ph/9411002 +astro-ph/9411003 +astro-ph/9411006 +astro-ph/9411007 +astro-ph/9411011 +astro-ph/9411012 +astro-ph/9411013 +astro-ph/9411014 +astro-ph/9411016 +astro-ph/9411017 +astro-ph/9411019 +astro-ph/9411020 +astro-ph/9411022 +astro-ph/9411023 +astro-ph/9411028 +astro-ph/9411030 +astro-ph/9411033 +astro-ph/9411036 +astro-ph/9411037 +astro-ph/9411042 +astro-ph/9411043 +astro-ph/9411046 +astro-ph/9411052 +astro-ph/9411054 +astro-ph/9411058 +astro-ph/9411059 +astro-ph/9411062 +astro-ph/9411069 +astro-ph/9411070 +astro-ph/9411071 +astro-ph/9411073 +astro-ph/9411079 +astro-ph/9411080 +astro-ph/9411082 +astro-ph/9411085 +astro-ph/9411087 +astro-ph/9411090 +astro-ph/9411091 +astro-ph/9411097 +astro-ph/9411108 +astro-ph/9411110 +astro-ph/9411112 +astro-ph/9411114 +astro-ph/9411116 +astro-ph/9412002 +astro-ph/9412003 +astro-ph/9412004 +astro-ph/9412006 +astro-ph/9412007 +astro-ph/9412008 +astro-ph/9412011 +astro-ph/9412013 +astro-ph/9412015 +astro-ph/9412016 +astro-ph/9412017 +astro-ph/9412018 +astro-ph/9412022 +astro-ph/9412025 +astro-ph/9412027 +astro-ph/9412031 +astro-ph/9412032 +astro-ph/9412033 +astro-ph/9412036 +astro-ph/9412037 +astro-ph/9412042 +astro-ph/9412044 +astro-ph/9412049 +astro-ph/9412050 +astro-ph/9412053 +astro-ph/9412054 +astro-ph/9412055 +astro-ph/9412056 +astro-ph/9412060 +astro-ph/9412068 +astro-ph/9412069 +astro-ph/9412070 +astro-ph/9412073 +astro-ph/9412077 +astro-ph/9412081 +astro-ph/9412084 +astro-ph/9412085 +astro-ph/9412087 +astro-ph/9412092 +astro-ph/9412093 +astro-ph/9412096 +astro-ph/9412097 +chao-dyn/9301003 Chaotic Dynamics +chao-dyn/9301005 Chaotic Dynamics +chao-dyn/9302002 Chaotic Dynamics +chao-dyn/9302003 Chaotic Dynamics +chao-dyn/9302005 Chaotic Dynamics +chao-dyn/9302006 Chaotic Dynamics +chao-dyn/9303001 Chaotic Dynamics +chao-dyn/9303002 Chaotic Dynamics +chao-dyn/9303004 Chaotic Dynamics +chao-dyn/9303007 Chaotic Dynamics +chao-dyn/9303008 Chaotic Dynamics +chao-dyn/9303009 Chaotic Dynamics +chao-dyn/9303010 Chaotic Dynamics +chao-dyn/9303011 Chaotic Dynamics +chao-dyn/9303012 Chaotic Dynamics +chao-dyn/9303013 Chaotic Dynamics +chao-dyn/9303014 Chaotic Dynamics +chao-dyn/9303016 Chaotic Dynamics +chao-dyn/9304001 Chaotic Dynamics +chao-dyn/9304006 Chaotic Dynamics +chao-dyn/9304011 Chaotic Dynamics +chao-dyn/9304012 Chaotic Dynamics +chao-dyn/9305002 Chaotic Dynamics +chao-dyn/9305003 Chaotic Dynamics +chao-dyn/9305005 Chaotic Dynamics +chao-dyn/9305006 Chaotic Dynamics +chao-dyn/9305011 Chaotic Dynamics +chao-dyn/9306003 Chaotic Dynamics +chao-dyn/9306004 Chaotic Dynamics +chao-dyn/9306005 Chaotic Dynamics +chao-dyn/9306006 Chaotic Dynamics +chao-dyn/9306007 Chaotic Dynamics +chao-dyn/9306009 Chaotic Dynamics +chao-dyn/9306011 Chaotic Dynamics +chao-dyn/9307001 Chaotic Dynamics +chao-dyn/9307002 Chaotic Dynamics +chao-dyn/9307003 Chaotic Dynamics +chao-dyn/9307004 Chaotic Dynamics +chao-dyn/9307007 Chaotic Dynamics +chao-dyn/9307008 Chaotic Dynamics +chao-dyn/9307011 Chaotic Dynamics +chao-dyn/9307012 Chaotic Dynamics +chao-dyn/9307013 Chaotic Dynamics +chao-dyn/9307014 Chaotic Dynamics +chao-dyn/9307017 Chaotic Dynamics +chao-dyn/9308002 Chaotic Dynamics +chao-dyn/9308003 Chaotic Dynamics +chao-dyn/9309003 Chaotic Dynamics +chao-dyn/9309004 Chaotic Dynamics +chao-dyn/9309005 Chaotic Dynamics +chao-dyn/9310003 Chaotic Dynamics +chao-dyn/9310006 Chaotic Dynamics +chao-dyn/9311002 Chaotic Dynamics +chao-dyn/9311003 Chaotic Dynamics +chao-dyn/9311004 Chaotic Dynamics +chao-dyn/9311005 Chaotic Dynamics +chao-dyn/9311006 Chaotic Dynamics +chao-dyn/9311007 Chaotic Dynamics +chao-dyn/9311008 Chaotic Dynamics +chao-dyn/9311009 Chaotic Dynamics +chao-dyn/9312001 Chaotic Dynamics +chao-dyn/9312004 Chaotic Dynamics +chao-dyn/9312007 Chaotic Dynamics +chao-dyn/9312008 Chaotic Dynamics +chao-dyn/9401005 Chaotic Dynamics +chao-dyn/9401006 Chaotic Dynamics +chao-dyn/9402002 Chaotic Dynamics +chao-dyn/9402003 Chaotic Dynamics +chao-dyn/9402007 Chaotic Dynamics +chao-dyn/9403002 Chaotic Dynamics +chao-dyn/9403005 Chaotic Dynamics +chao-dyn/9404001 Chaotic Dynamics +chao-dyn/9405001 Chaotic Dynamics +chao-dyn/9405002 Chaotic Dynamics +chao-dyn/9405004 Chaotic Dynamics +chao-dyn/9405006 Chaotic Dynamics +chao-dyn/9405007 Chaotic Dynamics +chao-dyn/9405010 Chaotic Dynamics +chao-dyn/9405012 Chaotic Dynamics +chao-dyn/9405013 Chaotic Dynamics +chao-dyn/9406001 Chaotic Dynamics +chao-dyn/9406004 Chaotic Dynamics +chao-dyn/9406006 Chaotic Dynamics +chao-dyn/9406008 Chaotic Dynamics +chao-dyn/9406010 Chaotic Dynamics +chao-dyn/9406012 Chaotic Dynamics +chao-dyn/9407007 Chaotic Dynamics +chao-dyn/9407013 Chaotic Dynamics +chao-dyn/9407014 Chaotic Dynamics +chao-dyn/9407017 Chaotic Dynamics +chao-dyn/9407018 Chaotic Dynamics +chao-dyn/9407019 Chaotic Dynamics +chao-dyn/9407020 Chaotic Dynamics +chao-dyn/9408003 Chaotic Dynamics +chao-dyn/9408004 Chaotic Dynamics +chao-dyn/9409001 Chaotic Dynamics +chao-dyn/9409003 Chaotic Dynamics +chao-dyn/9409004 Chaotic Dynamics +chao-dyn/9409005 Chaotic Dynamics +chao-dyn/9409006 Chaotic Dynamics +chao-dyn/9409007 Chaotic Dynamics +chao-dyn/9410002 Chaotic Dynamics +chao-dyn/9410004 Chaotic Dynamics +chao-dyn/9410006 Chaotic Dynamics +chao-dyn/9410007 Chaotic Dynamics +chao-dyn/9410008 Chaotic Dynamics +chao-dyn/9410009 Chaotic Dynamics +chao-dyn/9410010 Chaotic Dynamics +chao-dyn/9411002 Chaotic Dynamics +chao-dyn/9411003 Chaotic Dynamics +chao-dyn/9411005 Chaotic Dynamics +chao-dyn/9411006 Chaotic Dynamics +chao-dyn/9411007 Chaotic Dynamics +chao-dyn/9411012 Chaotic Dynamics +chao-dyn/9411013 Chaotic Dynamics +chao-dyn/9411015 Chaotic Dynamics +chao-dyn/9411017 Chaotic Dynamics +chao-dyn/9411018 Chaotic Dynamics +chao-dyn/9411019 Chaotic Dynamics +chao-dyn/9411020 Chaotic Dynamics +chao-dyn/9411022 Chaotic Dynamics +chao-dyn/9411023 Chaotic Dynamics +chao-dyn/9412001 Chaotic Dynamics +chao-dyn/9412004 Chaotic Dynamics +chao-dyn/9412005 Chaotic Dynamics +chao-dyn/9412007 Chaotic Dynamics +chao-dyn/9412009 Chaotic Dynamics +chao-dyn/9412011 Chaotic Dynamics +chao-dyn/9412012 Chaotic Dynamics +chao-dyn/9412013 Chaotic Dynamics +chem-ph/9403001 Chemical Physics +chem-ph/9403003 Chemical Physics +chem-ph/9403004 Chemical Physics +chem-ph/9403005 Chemical Physics +chem-ph/9403007 Chemical Physics +chem-ph/9403008 Chemical Physics +chem-ph/9403009 Chemical Physics +chem-ph/9404003 Chemical Physics +chem-ph/9405001 Chemical Physics +chem-ph/9405002 Chemical Physics +chem-ph/9406001 Chemical Physics +chem-ph/9406002 Chemical Physics +chem-ph/9406003 Chemical Physics +chem-ph/9407001 Chemical Physics +chem-ph/9408002 Chemical Physics +chem-ph/9409001 Chemical Physics +chem-ph/9409002 Chemical Physics +chem-ph/9410001 Chemical Physics +chem-ph/9411001 Chemical Physics +chem-ph/9411002 Chemical Physics +chem-ph/9411003 Chemical Physics +chem-ph/9411005 Chemical Physics +chem-ph/9411006 Chemical Physics +chem-ph/9411009 Chemical Physics +chem-ph/9411011 Chemical Physics +chem-ph/9411012 Chemical Physics +chem-ph/9412001 Chemical Physics +comp-gas/9303001 Cellular Automata and Lattice Gases +comp-gas/9303003 Cellular Automata and Lattice Gases +comp-gas/9304001 Cellular Automata and Lattice Gases +comp-gas/9304002 Cellular Automata and Lattice Gases +comp-gas/9304005 Cellular Automata and Lattice Gases +comp-gas/9304006 Cellular Automata and Lattice Gases +comp-gas/9304007 Cellular Automata and Lattice Gases +comp-gas/9305003 Cellular Automata and Lattice Gases +comp-gas/9305004 Cellular Automata and Lattice Gases +comp-gas/9306002 Cellular Automata and Lattice Gases +comp-gas/9306004 Cellular Automata and Lattice Gases +comp-gas/9306005 Cellular Automata and Lattice Gases +comp-gas/9308001 Cellular Automata and Lattice Gases +comp-gas/9310002 Cellular Automata and Lattice Gases +comp-gas/9312002 Cellular Automata and Lattice Gases +comp-gas/9401001 Cellular Automata and Lattice Gases +comp-gas/9401002 Cellular Automata and Lattice Gases +comp-gas/9401003 Cellular Automata and Lattice Gases +comp-gas/9404001 Cellular Automata and Lattice Gases +comp-gas/9404002 Cellular Automata and Lattice Gases +comp-gas/9405002 Cellular Automata and Lattice Gases +comp-gas/9405003 Cellular Automata and Lattice Gases +comp-gas/9405004 Cellular Automata and Lattice Gases +comp-gas/9405005 Cellular Automata and Lattice Gases +comp-gas/9406001 Cellular Automata and Lattice Gases +comp-gas/9407001 Cellular Automata and Lattice Gases +comp-gas/9408002 Cellular Automata and Lattice Gases +comp-gas/9410001 Cellular Automata and Lattice Gases +cond-mat/0703681 Statistical Mechanics +cond-mat/9204001 +cond-mat/9204005 +cond-mat/9204006 +cond-mat/9204007 +cond-mat/9204008 +cond-mat/9204013 +cond-mat/9204014 +cond-mat/9204015 +cond-mat/9204017 +cond-mat/9204018 +cond-mat/9205001 +cond-mat/9205007 +cond-mat/9205008 +cond-mat/9205010 +cond-mat/9205011 +cond-mat/9205013 +cond-mat/9205015 +cond-mat/9206001 +cond-mat/9206002 +cond-mat/9206003 +cond-mat/9206004 +cond-mat/9206005 +cond-mat/9206006 +cond-mat/9206007 +cond-mat/9206008 +cond-mat/9206010 +cond-mat/9206011 +cond-mat/9207006 +cond-mat/9207008 +cond-mat/9207010 +cond-mat/9207011 +cond-mat/9207012 +cond-mat/9207017 +cond-mat/9207022 +cond-mat/9207024 +cond-mat/9207026 +cond-mat/9208001 +cond-mat/9208002 +cond-mat/9208003 +cond-mat/9208004 +cond-mat/9208006 +cond-mat/9208007 +cond-mat/9208009 +cond-mat/9208010 +cond-mat/9208011 +cond-mat/9208013 +cond-mat/9208014 +cond-mat/9208015 +cond-mat/9208016 +cond-mat/9208020 +cond-mat/9208022 +cond-mat/9208025 +cond-mat/9208026 +cond-mat/9208027 +cond-mat/9209004 +cond-mat/9209008 +cond-mat/9209009 +cond-mat/9209011 +cond-mat/9209012 +cond-mat/9209014 +cond-mat/9209016 +cond-mat/9209017 +cond-mat/9209018 +cond-mat/9209020 +cond-mat/9209021 +cond-mat/9209023 +cond-mat/9209028 +cond-mat/9209030 +cond-mat/9209032 +cond-mat/9209033 +cond-mat/9210001 +cond-mat/9210003 +cond-mat/9210005 +cond-mat/9210007 +cond-mat/9210009 +cond-mat/9210012 +cond-mat/9210013 +cond-mat/9210014 +cond-mat/9210015 +cond-mat/9210016 +cond-mat/9210017 +cond-mat/9210019 +cond-mat/9210020 +cond-mat/9210021 +cond-mat/9210022 +cond-mat/9210023 +cond-mat/9210024 +cond-mat/9210028 +cond-mat/9211002 +cond-mat/9211004 +cond-mat/9211005 +cond-mat/9211010 +cond-mat/9211011 +cond-mat/9211013 +cond-mat/9211014 +cond-mat/9211016 +cond-mat/9211018 +cond-mat/9211020 +cond-mat/9211021 +cond-mat/9212001 +cond-mat/9212004 +cond-mat/9212007 +cond-mat/9212008 +cond-mat/9212009 +cond-mat/9212010 +cond-mat/9212011 +cond-mat/9212013 +cond-mat/9212014 +cond-mat/9212015 +cond-mat/9212016 +cond-mat/9212017 +cond-mat/9212018 +cond-mat/9212019 +cond-mat/9212020 +cond-mat/9212022 +cond-mat/9212023 +cond-mat/9212024 +cond-mat/9212025 +cond-mat/9212026 +cond-mat/9212028 +cond-mat/9212032 +cond-mat/9301001 +cond-mat/9301003 +cond-mat/9301004 +cond-mat/9301005 +cond-mat/9301006 +cond-mat/9301008 +cond-mat/9301009 +cond-mat/9301011 +cond-mat/9301012 +cond-mat/9301013 +cond-mat/9301014 +cond-mat/9301015 +cond-mat/9301018 +cond-mat/9301020 +cond-mat/9301023 +cond-mat/9301025 +cond-mat/9301026 +cond-mat/9301028 +cond-mat/9301029 +cond-mat/9301030 +cond-mat/9301032 +cond-mat/9301033 +cond-mat/9301038 +cond-mat/9302001 +cond-mat/9302004 +cond-mat/9302007 +cond-mat/9302008 +cond-mat/9302009 +cond-mat/9302010 +cond-mat/9302011 +cond-mat/9302012 +cond-mat/9302013 +cond-mat/9302015 +cond-mat/9302016 +cond-mat/9302017 +cond-mat/9302018 +cond-mat/9302022 +cond-mat/9302023 +cond-mat/9302024 +cond-mat/9302026 +cond-mat/9302027 +cond-mat/9302031 +cond-mat/9302034 +cond-mat/9302035 +cond-mat/9302036 +cond-mat/9302037 +cond-mat/9302039 +cond-mat/9303001 +cond-mat/9303002 +cond-mat/9303005 +cond-mat/9303008 +cond-mat/9303010 +cond-mat/9303011 +cond-mat/9303013 +cond-mat/9303015 +cond-mat/9303016 +cond-mat/9303017 +cond-mat/9303018 +cond-mat/9303020 +cond-mat/9303021 +cond-mat/9303022 +cond-mat/9303023 +cond-mat/9303027 +cond-mat/9303028 +cond-mat/9303029 +cond-mat/9303030 +cond-mat/9303031 +cond-mat/9303033 +cond-mat/9303035 +cond-mat/9303036 +cond-mat/9303037 +cond-mat/9303038 +cond-mat/9303041 +cond-mat/9303042 +cond-mat/9303043 +cond-mat/9303044 +cond-mat/9303045 +cond-mat/9303046 +cond-mat/9303048 +cond-mat/9303050 +cond-mat/9303051 +cond-mat/9304002 +cond-mat/9304004 +cond-mat/9304005 +cond-mat/9304007 +cond-mat/9304010 +cond-mat/9304011 +cond-mat/9304013 +cond-mat/9304014 +cond-mat/9304015 +cond-mat/9304016 +cond-mat/9304017 +cond-mat/9304018 +cond-mat/9304021 +cond-mat/9304023 +cond-mat/9304025 +cond-mat/9304026 +cond-mat/9304027 +cond-mat/9304028 +cond-mat/9304029 +cond-mat/9304030 +cond-mat/9304032 +cond-mat/9304033 +cond-mat/9304034 +cond-mat/9304035 +cond-mat/9304036 +cond-mat/9304037 +cond-mat/9304038 +cond-mat/9304039 +cond-mat/9304040 +cond-mat/9304041 +cond-mat/9304044 +cond-mat/9304045 +cond-mat/9304046 +cond-mat/9304047 +cond-mat/9304048 +cond-mat/9305001 +cond-mat/9305002 +cond-mat/9305005 +cond-mat/9305006 +cond-mat/9305008 +cond-mat/9305009 +cond-mat/9305010 +cond-mat/9305011 +cond-mat/9305012 +cond-mat/9305015 +cond-mat/9305016 +cond-mat/9305017 +cond-mat/9305018 +cond-mat/9305020 +cond-mat/9305021 +cond-mat/9305022 +cond-mat/9305023 +cond-mat/9305024 +cond-mat/9305026 +cond-mat/9305027 +cond-mat/9305028 +cond-mat/9305032 +cond-mat/9305033 +cond-mat/9305034 +cond-mat/9305036 +cond-mat/9305037 +cond-mat/9305038 +cond-mat/9305039 +cond-mat/9305042 +cond-mat/9306001 +cond-mat/9306003 +cond-mat/9306004 +cond-mat/9306005 +cond-mat/9306006 +cond-mat/9306007 +cond-mat/9306008 +cond-mat/9306009 +cond-mat/9306010 +cond-mat/9306011 +cond-mat/9306013 Statistical Mechanics +cond-mat/9306015 +cond-mat/9306016 +cond-mat/9306017 +cond-mat/9306018 +cond-mat/9306019 +cond-mat/9306020 +cond-mat/9306021 +cond-mat/9306023 +cond-mat/9306025 +cond-mat/9306026 +cond-mat/9306029 +cond-mat/9306030 +cond-mat/9306031 +cond-mat/9306033 +cond-mat/9306035 +cond-mat/9306036 +cond-mat/9306038 +cond-mat/9306039 +cond-mat/9306040 +cond-mat/9306041 +cond-mat/9306042 +cond-mat/9306043 +cond-mat/9306044 +cond-mat/9306045 +cond-mat/9306047 +cond-mat/9306048 +cond-mat/9306049 +cond-mat/9306050 +cond-mat/9306051 +cond-mat/9306054 +cond-mat/9306055 +cond-mat/9306059 +cond-mat/9306060 +cond-mat/9306062 +cond-mat/9307001 +cond-mat/9307002 +cond-mat/9307003 +cond-mat/9307004 +cond-mat/9307005 +cond-mat/9307008 +cond-mat/9307009 +cond-mat/9307010 +cond-mat/9307011 +cond-mat/9307012 +cond-mat/9307013 +cond-mat/9307014 +cond-mat/9307017 +cond-mat/9307018 +cond-mat/9307020 +cond-mat/9307023 +cond-mat/9307024 +cond-mat/9307025 +cond-mat/9307026 +cond-mat/9307027 +cond-mat/9307028 +cond-mat/9307029 Superconductivity +cond-mat/9307030 +cond-mat/9307032 +cond-mat/9307035 +cond-mat/9307036 +cond-mat/9307038 +cond-mat/9307039 +cond-mat/9307043 +cond-mat/9307044 +cond-mat/9307045 +cond-mat/9307046 +cond-mat/9307047 +cond-mat/9307048 +cond-mat/9307049 +cond-mat/9307050 +cond-mat/9307052 +cond-mat/9307056 +cond-mat/9307059 +cond-mat/9307060 +cond-mat/9307063 +cond-mat/9307064 +cond-mat/9307066 +cond-mat/9308001 +cond-mat/9308003 +cond-mat/9308004 +cond-mat/9308005 +cond-mat/9308006 +cond-mat/9308008 +cond-mat/9308010 +cond-mat/9308011 +cond-mat/9308012 +cond-mat/9308017 +cond-mat/9308019 +cond-mat/9308020 +cond-mat/9308021 +cond-mat/9308023 +cond-mat/9308024 +cond-mat/9308025 +cond-mat/9308027 +cond-mat/9308028 +cond-mat/9308029 +cond-mat/9308031 +cond-mat/9308033 +cond-mat/9308034 +cond-mat/9308035 +cond-mat/9308037 +cond-mat/9308038 +cond-mat/9309001 +cond-mat/9309002 +cond-mat/9309004 +cond-mat/9309006 +cond-mat/9309007 +cond-mat/9309008 +cond-mat/9309009 +cond-mat/9309010 +cond-mat/9309011 +cond-mat/9309012 +cond-mat/9309014 +cond-mat/9309015 +cond-mat/9309017 +cond-mat/9309018 +cond-mat/9309019 +cond-mat/9309020 +cond-mat/9309021 +cond-mat/9309022 +cond-mat/9309023 +cond-mat/9309024 +cond-mat/9309026 +cond-mat/9309027 +cond-mat/9309028 +cond-mat/9309031 +cond-mat/9309032 +cond-mat/9309035 +cond-mat/9309037 +cond-mat/9309038 +cond-mat/9309039 +cond-mat/9309040 +cond-mat/9309042 +cond-mat/9309043 +cond-mat/9309044 +cond-mat/9309045 +cond-mat/9309046 +cond-mat/9309048 +cond-mat/9309049 +cond-mat/9309050 +cond-mat/9309051 +cond-mat/9309052 +cond-mat/9309053 +cond-mat/9309055 +cond-mat/9310001 +cond-mat/9310002 +cond-mat/9310003 +cond-mat/9310006 +cond-mat/9310007 +cond-mat/9310008 +cond-mat/9310009 +cond-mat/9310011 +cond-mat/9310012 +cond-mat/9310013 +cond-mat/9310014 +cond-mat/9310015 +cond-mat/9310016 +cond-mat/9310017 +cond-mat/9310018 +cond-mat/9310020 +cond-mat/9310021 +cond-mat/9310022 +cond-mat/9310023 +cond-mat/9310024 +cond-mat/9310025 +cond-mat/9310026 +cond-mat/9310027 +cond-mat/9310028 +cond-mat/9310030 +cond-mat/9310032 +cond-mat/9310033 +cond-mat/9310034 +cond-mat/9310036 +cond-mat/9310037 +cond-mat/9310038 +cond-mat/9310039 +cond-mat/9310041 +cond-mat/9310042 +cond-mat/9310043 +cond-mat/9310045 +cond-mat/9310048 +cond-mat/9310049 +cond-mat/9310052 +cond-mat/9310053 +cond-mat/9310054 Disordered Systems and Neural Networks +cond-mat/9310055 +cond-mat/9310056 +cond-mat/9310058 +cond-mat/9310059 +cond-mat/9310060 +cond-mat/9310061 +cond-mat/9310062 +cond-mat/9310063 +cond-mat/9310064 +cond-mat/9310065 +cond-mat/9310071 +cond-mat/9310074 +cond-mat/9310075 +cond-mat/9310076 +cond-mat/9310077 +cond-mat/9310078 +cond-mat/9311001 +cond-mat/9311002 +cond-mat/9311003 +cond-mat/9311005 +cond-mat/9311006 +cond-mat/9311007 +cond-mat/9311008 +cond-mat/9311009 +cond-mat/9311010 +cond-mat/9311012 +cond-mat/9311013 +cond-mat/9311014 +cond-mat/9311015 +cond-mat/9311016 +cond-mat/9311018 +cond-mat/9311020 +cond-mat/9311021 +cond-mat/9311022 +cond-mat/9311023 +cond-mat/9311025 +cond-mat/9311026 +cond-mat/9311027 +cond-mat/9311028 +cond-mat/9311029 +cond-mat/9311031 +cond-mat/9311032 +cond-mat/9311034 +cond-mat/9311035 +cond-mat/9311037 +cond-mat/9311039 +cond-mat/9311040 +cond-mat/9311041 +cond-mat/9311042 +cond-mat/9311043 +cond-mat/9311045 +cond-mat/9311046 +cond-mat/9311047 +cond-mat/9311049 +cond-mat/9311051 +cond-mat/9311052 +cond-mat/9311053 +cond-mat/9311055 +cond-mat/9311056 +cond-mat/9311057 +cond-mat/9311059 +cond-mat/9311060 +cond-mat/9311061 +cond-mat/9311062 +cond-mat/9311063 +cond-mat/9311064 +cond-mat/9311065 +cond-mat/9311066 +cond-mat/9312001 +cond-mat/9312003 +cond-mat/9312004 +cond-mat/9312005 +cond-mat/9312009 +cond-mat/9312010 +cond-mat/9312011 +cond-mat/9312016 +cond-mat/9312018 +cond-mat/9312021 +cond-mat/9312023 +cond-mat/9312024 +cond-mat/9312026 +cond-mat/9312027 +cond-mat/9312028 +cond-mat/9312029 +cond-mat/9312030 +cond-mat/9312031 Strongly Correlated Electrons +cond-mat/9312032 +cond-mat/9312033 +cond-mat/9312034 +cond-mat/9312035 +cond-mat/9312036 +cond-mat/9312037 Mesoscale and Nanoscale Physics +cond-mat/9312040 Materials Science +cond-mat/9312041 Materials Science +cond-mat/9312044 +cond-mat/9312045 +cond-mat/9312049 +cond-mat/9312052 +cond-mat/9312053 +cond-mat/9312054 +cond-mat/9312055 +cond-mat/9312057 +cond-mat/9312058 +cond-mat/9312060 +cond-mat/9312062 +cond-mat/9312063 +cond-mat/9312064 +cond-mat/9312065 +cond-mat/9312066 +cond-mat/9312069 +cond-mat/9312070 +cond-mat/9312071 +cond-mat/9312073 +cond-mat/9312074 +cond-mat/9312075 +cond-mat/9312076 +cond-mat/9312077 Statistical Mechanics +cond-mat/9312079 +cond-mat/9312080 Statistical Mechanics +cond-mat/9312081 +cond-mat/9312082 +cond-mat/9312083 +cond-mat/9312084 +cond-mat/9312085 +cond-mat/9312086 +cond-mat/9312087 +cond-mat/9312088 +cond-mat/9312090 +cond-mat/9312091 +cond-mat/9312092 +cond-mat/9312093 +cond-mat/9312095 +cond-mat/9401003 +cond-mat/9401006 +cond-mat/9401007 +cond-mat/9401008 +cond-mat/9401009 +cond-mat/9401010 +cond-mat/9401011 +cond-mat/9401012 +cond-mat/9401013 +cond-mat/9401014 +cond-mat/9401016 +cond-mat/9401017 +cond-mat/9401019 +cond-mat/9401020 +cond-mat/9401021 +cond-mat/9401023 +cond-mat/9401024 +cond-mat/9401026 +cond-mat/9401027 +cond-mat/9401028 +cond-mat/9401029 +cond-mat/9401030 +cond-mat/9401031 +cond-mat/9401032 +cond-mat/9401033 +cond-mat/9401034 +cond-mat/9401035 +cond-mat/9401036 +cond-mat/9401038 +cond-mat/9401040 +cond-mat/9401041 +cond-mat/9401044 +cond-mat/9401046 +cond-mat/9401047 +cond-mat/9401054 +cond-mat/9401056 +cond-mat/9401058 +cond-mat/9401059 +cond-mat/9401060 +cond-mat/9401061 +cond-mat/9401062 +cond-mat/9401063 +cond-mat/9401064 +cond-mat/9401066 +cond-mat/9401067 +cond-mat/9401068 +cond-mat/9401071 +cond-mat/9401072 +cond-mat/9401075 +cond-mat/9401076 +cond-mat/9401077 +cond-mat/9402001 +cond-mat/9402004 +cond-mat/9402005 +cond-mat/9402006 +cond-mat/9402007 +cond-mat/9402010 +cond-mat/9402012 +cond-mat/9402013 +cond-mat/9402014 +cond-mat/9402015 +cond-mat/9402016 +cond-mat/9402019 +cond-mat/9402021 +cond-mat/9402022 +cond-mat/9402023 +cond-mat/9402024 +cond-mat/9402025 +cond-mat/9402026 +cond-mat/9402029 +cond-mat/9402030 +cond-mat/9402031 +cond-mat/9402032 +cond-mat/9402033 +cond-mat/9402034 +cond-mat/9402036 +cond-mat/9402038 +cond-mat/9402041 +cond-mat/9402042 +cond-mat/9402043 +cond-mat/9402044 +cond-mat/9402045 +cond-mat/9402048 +cond-mat/9402049 +cond-mat/9402050 +cond-mat/9402053 +cond-mat/9402054 +cond-mat/9402057 +cond-mat/9402059 +cond-mat/9402060 +cond-mat/9402061 +cond-mat/9402062 +cond-mat/9402063 +cond-mat/9402067 +cond-mat/9402069 +cond-mat/9402070 +cond-mat/9402073 +cond-mat/9402074 +cond-mat/9402075 +cond-mat/9402077 +cond-mat/9402078 Materials Science +cond-mat/9402079 Materials Science +cond-mat/9402081 Superconductivity +cond-mat/9402082 Materials Science +cond-mat/9402083 +cond-mat/9402087 +cond-mat/9402088 +cond-mat/9402089 +cond-mat/9402090 +cond-mat/9402092 +cond-mat/9402093 +cond-mat/9402094 +cond-mat/9402095 +cond-mat/9402096 +cond-mat/9402097 +cond-mat/9402100 +cond-mat/9402101 +cond-mat/9402102 +cond-mat/9402104 +cond-mat/9402106 +cond-mat/9402108 +cond-mat/9402109 +cond-mat/9402110 +cond-mat/9402112 +cond-mat/9402113 +cond-mat/9402114 +cond-mat/9403001 +cond-mat/9403003 +cond-mat/9403004 +cond-mat/9403005 +cond-mat/9403006 +cond-mat/9403008 +cond-mat/9403011 +cond-mat/9403012 +cond-mat/9403013 +cond-mat/9403014 +cond-mat/9403016 +cond-mat/9403017 +cond-mat/9403018 +cond-mat/9403020 +cond-mat/9403022 +cond-mat/9403024 +cond-mat/9403026 +cond-mat/9403027 +cond-mat/9403029 +cond-mat/9403030 +cond-mat/9403031 +cond-mat/9403035 +cond-mat/9403036 +cond-mat/9403037 +cond-mat/9403038 +cond-mat/9403041 +cond-mat/9403042 +cond-mat/9403043 +cond-mat/9403044 +cond-mat/9403045 +cond-mat/9403046 +cond-mat/9403047 +cond-mat/9403049 +cond-mat/9403051 +cond-mat/9403052 +cond-mat/9403053 +cond-mat/9403056 +cond-mat/9403059 +cond-mat/9403060 +cond-mat/9403062 +cond-mat/9403063 +cond-mat/9403064 +cond-mat/9403066 +cond-mat/9403067 +cond-mat/9403070 +cond-mat/9403071 +cond-mat/9403072 +cond-mat/9403073 +cond-mat/9403074 +cond-mat/9403075 +cond-mat/9403076 +cond-mat/9403077 +cond-mat/9403079 +cond-mat/9403080 +cond-mat/9403083 +cond-mat/9403085 +cond-mat/9403086 +cond-mat/9403087 +cond-mat/9403089 +cond-mat/9403090 +cond-mat/9403091 +cond-mat/9403092 +cond-mat/9403093 +cond-mat/9403094 +cond-mat/9403095 +cond-mat/9404001 +cond-mat/9404002 +cond-mat/9404003 +cond-mat/9404004 +cond-mat/9404005 +cond-mat/9404007 +cond-mat/9404008 +cond-mat/9404009 +cond-mat/9404010 +cond-mat/9404013 +cond-mat/9404014 +cond-mat/9404016 +cond-mat/9404017 +cond-mat/9404018 +cond-mat/9404019 +cond-mat/9404020 +cond-mat/9404021 +cond-mat/9404024 +cond-mat/9404026 +cond-mat/9404027 +cond-mat/9404028 +cond-mat/9404030 +cond-mat/9404031 +cond-mat/9404032 +cond-mat/9404033 +cond-mat/9404034 +cond-mat/9404035 +cond-mat/9404036 +cond-mat/9404037 +cond-mat/9404038 +cond-mat/9404039 +cond-mat/9404041 +cond-mat/9404042 +cond-mat/9404043 +cond-mat/9404044 +cond-mat/9404045 +cond-mat/9404046 +cond-mat/9404050 +cond-mat/9404051 +cond-mat/9404052 +cond-mat/9404054 +cond-mat/9404055 +cond-mat/9404057 +cond-mat/9404058 +cond-mat/9404059 +cond-mat/9404060 +cond-mat/9404062 +cond-mat/9404063 +cond-mat/9404065 +cond-mat/9404067 +cond-mat/9404069 +cond-mat/9404070 +cond-mat/9404073 +cond-mat/9404074 +cond-mat/9404076 +cond-mat/9404079 +cond-mat/9404081 +cond-mat/9404083 +cond-mat/9404084 +cond-mat/9404085 +cond-mat/9404087 +cond-mat/9404088 +cond-mat/9404089 +cond-mat/9404090 +cond-mat/9404091 +cond-mat/9404094 +cond-mat/9404095 +cond-mat/9404096 +cond-mat/9404097 +cond-mat/9404098 +cond-mat/9404101 +cond-mat/9405002 +cond-mat/9405003 +cond-mat/9405004 +cond-mat/9405005 +cond-mat/9405006 +cond-mat/9405007 +cond-mat/9405008 +cond-mat/9405009 +cond-mat/9405010 +cond-mat/9405014 +cond-mat/9405015 +cond-mat/9405016 +cond-mat/9405021 +cond-mat/9405022 +cond-mat/9405025 +cond-mat/9405026 +cond-mat/9405028 +cond-mat/9405029 +cond-mat/9405030 +cond-mat/9405031 +cond-mat/9405032 +cond-mat/9405034 +cond-mat/9405035 +cond-mat/9405040 +cond-mat/9405041 +cond-mat/9405043 +cond-mat/9405045 +cond-mat/9405046 +cond-mat/9405047 +cond-mat/9405048 +cond-mat/9405051 +cond-mat/9405052 +cond-mat/9405054 +cond-mat/9405055 +cond-mat/9405057 +cond-mat/9405058 +cond-mat/9405059 +cond-mat/9405060 +cond-mat/9405062 +cond-mat/9405063 +cond-mat/9405064 +cond-mat/9405066 +cond-mat/9405067 +cond-mat/9405069 +cond-mat/9405072 +cond-mat/9405073 +cond-mat/9405074 +cond-mat/9405075 +cond-mat/9405076 +cond-mat/9405077 +cond-mat/9405079 +cond-mat/9405080 +cond-mat/9405081 +cond-mat/9405082 +cond-mat/9405083 +cond-mat/9405086 +cond-mat/9405087 +cond-mat/9405088 +cond-mat/9405089 +cond-mat/9405090 +cond-mat/9406001 +cond-mat/9406002 +cond-mat/9406004 +cond-mat/9406006 +cond-mat/9406007 +cond-mat/9406008 +cond-mat/9406010 +cond-mat/9406011 +cond-mat/9406013 +cond-mat/9406014 +cond-mat/9406015 +cond-mat/9406016 +cond-mat/9406021 +cond-mat/9406022 +cond-mat/9406024 +cond-mat/9406025 +cond-mat/9406027 +cond-mat/9406028 +cond-mat/9406031 +cond-mat/9406033 +cond-mat/9406035 Statistical Mechanics +cond-mat/9406037 +cond-mat/9406038 +cond-mat/9406039 +cond-mat/9406040 +cond-mat/9406042 +cond-mat/9406043 +cond-mat/9406044 +cond-mat/9406045 +cond-mat/9406047 +cond-mat/9406048 +cond-mat/9406049 +cond-mat/9406050 +cond-mat/9406052 +cond-mat/9406053 +cond-mat/9406054 +cond-mat/9406056 +cond-mat/9406057 +cond-mat/9406058 +cond-mat/9406059 +cond-mat/9406060 +cond-mat/9406061 +cond-mat/9406062 +cond-mat/9406063 +cond-mat/9406064 +cond-mat/9406065 +cond-mat/9406066 +cond-mat/9406067 +cond-mat/9406069 +cond-mat/9406070 +cond-mat/9406074 +cond-mat/9406075 +cond-mat/9406076 +cond-mat/9406077 +cond-mat/9406078 +cond-mat/9406079 +cond-mat/9406080 +cond-mat/9406081 +cond-mat/9406082 +cond-mat/9406085 +cond-mat/9406086 +cond-mat/9406087 +cond-mat/9406088 +cond-mat/9406089 +cond-mat/9406090 +cond-mat/9406092 +cond-mat/9406093 +cond-mat/9406094 +cond-mat/9406095 +cond-mat/9406096 +cond-mat/9406097 +cond-mat/9406098 +cond-mat/9406099 +cond-mat/9406100 +cond-mat/9406101 +cond-mat/9406103 +cond-mat/9406104 +cond-mat/9406106 +cond-mat/9406108 +cond-mat/9406109 +cond-mat/9406110 +cond-mat/9406112 +cond-mat/9406113 +cond-mat/9406115 +cond-mat/9406116 +cond-mat/9406118 +cond-mat/9406120 +cond-mat/9406123 +cond-mat/9407001 +cond-mat/9407003 +cond-mat/9407005 +cond-mat/9407006 +cond-mat/9407007 +cond-mat/9407011 +cond-mat/9407013 +cond-mat/9407014 +cond-mat/9407015 +cond-mat/9407016 +cond-mat/9407017 +cond-mat/9407018 +cond-mat/9407019 +cond-mat/9407021 +cond-mat/9407022 +cond-mat/9407024 +cond-mat/9407026 +cond-mat/9407028 +cond-mat/9407029 +cond-mat/9407030 +cond-mat/9407031 +cond-mat/9407032 +cond-mat/9407034 +cond-mat/9407036 +cond-mat/9407038 +cond-mat/9407039 +cond-mat/9407040 +cond-mat/9407041 +cond-mat/9407042 +cond-mat/9407043 +cond-mat/9407046 +cond-mat/9407051 +cond-mat/9407052 +cond-mat/9407054 +cond-mat/9407055 +cond-mat/9407057 +cond-mat/9407058 +cond-mat/9407059 +cond-mat/9407060 +cond-mat/9407061 +cond-mat/9407063 +cond-mat/9407065 +cond-mat/9407066 +cond-mat/9407067 +cond-mat/9407069 +cond-mat/9407070 +cond-mat/9407071 +cond-mat/9407073 +cond-mat/9407074 +cond-mat/9407075 +cond-mat/9407076 +cond-mat/9407077 +cond-mat/9407078 +cond-mat/9407079 +cond-mat/9407080 +cond-mat/9407081 +cond-mat/9407082 +cond-mat/9407083 +cond-mat/9407084 +cond-mat/9407086 +cond-mat/9407087 +cond-mat/9407088 +cond-mat/9407089 +cond-mat/9407090 +cond-mat/9407093 +cond-mat/9407094 +cond-mat/9407096 +cond-mat/9407097 +cond-mat/9407098 +cond-mat/9407099 +cond-mat/9407100 +cond-mat/9407101 +cond-mat/9407102 +cond-mat/9407103 +cond-mat/9407104 +cond-mat/9407105 +cond-mat/9407108 +cond-mat/9407109 +cond-mat/9407111 +cond-mat/9407112 +cond-mat/9407114 +cond-mat/9407115 +cond-mat/9407116 +cond-mat/9407118 +cond-mat/9407119 +cond-mat/9407120 +cond-mat/9407122 +cond-mat/9407123 +cond-mat/9407124 +cond-mat/9408001 +cond-mat/9408002 +cond-mat/9408004 +cond-mat/9408006 +cond-mat/9408008 +cond-mat/9408009 +cond-mat/9408010 +cond-mat/9408011 +cond-mat/9408015 +cond-mat/9408016 +cond-mat/9408017 +cond-mat/9408019 +cond-mat/9408021 +cond-mat/9408022 +cond-mat/9408023 +cond-mat/9408025 +cond-mat/9408026 +cond-mat/9408027 +cond-mat/9408029 +cond-mat/9408030 +cond-mat/9408031 +cond-mat/9408032 +cond-mat/9408034 +cond-mat/9408035 +cond-mat/9408037 +cond-mat/9408038 +cond-mat/9408039 +cond-mat/9408040 +cond-mat/9408041 +cond-mat/9408042 +cond-mat/9408043 +cond-mat/9408045 +cond-mat/9408047 +cond-mat/9408048 +cond-mat/9408049 +cond-mat/9408052 +cond-mat/9408053 +cond-mat/9408054 +cond-mat/9408055 +cond-mat/9408056 +cond-mat/9408061 +cond-mat/9408064 +cond-mat/9408065 +cond-mat/9408067 +cond-mat/9408068 +cond-mat/9408069 +cond-mat/9408070 +cond-mat/9408071 +cond-mat/9408074 +cond-mat/9408075 +cond-mat/9408076 Statistical Mechanics +cond-mat/9408077 Statistical Mechanics +cond-mat/9408078 +cond-mat/9408079 +cond-mat/9408080 +cond-mat/9408081 +cond-mat/9408082 +cond-mat/9408083 +cond-mat/9408084 +cond-mat/9408085 +cond-mat/9408086 +cond-mat/9408089 +cond-mat/9408090 +cond-mat/9408091 +cond-mat/9408094 +cond-mat/9408095 +cond-mat/9408096 +cond-mat/9408097 +cond-mat/9408098 +cond-mat/9408099 +cond-mat/9408102 +cond-mat/9409001 +cond-mat/9409002 +cond-mat/9409003 +cond-mat/9409004 +cond-mat/9409005 +cond-mat/9409007 +cond-mat/9409008 +cond-mat/9409009 +cond-mat/9409010 +cond-mat/9409012 +cond-mat/9409013 +cond-mat/9409014 +cond-mat/9409015 +cond-mat/9409019 +cond-mat/9409020 +cond-mat/9409021 +cond-mat/9409022 +cond-mat/9409025 +cond-mat/9409026 +cond-mat/9409028 +cond-mat/9409029 +cond-mat/9409030 +cond-mat/9409031 +cond-mat/9409032 +cond-mat/9409033 +cond-mat/9409034 +cond-mat/9409035 +cond-mat/9409037 +cond-mat/9409039 +cond-mat/9409041 +cond-mat/9409042 +cond-mat/9409044 +cond-mat/9409045 +cond-mat/9409048 +cond-mat/9409049 +cond-mat/9409050 +cond-mat/9409051 +cond-mat/9409053 +cond-mat/9409056 +cond-mat/9409057 +cond-mat/9409058 +cond-mat/9409059 +cond-mat/9409060 +cond-mat/9409061 +cond-mat/9409064 +cond-mat/9409065 +cond-mat/9409066 +cond-mat/9409067 +cond-mat/9409068 +cond-mat/9409070 +cond-mat/9409071 +cond-mat/9409072 +cond-mat/9409074 +cond-mat/9409078 +cond-mat/9409079 +cond-mat/9409081 +cond-mat/9409082 +cond-mat/9409083 +cond-mat/9409084 +cond-mat/9409085 +cond-mat/9409086 +cond-mat/9409087 +cond-mat/9409088 +cond-mat/9409089 +cond-mat/9409090 +cond-mat/9409091 +cond-mat/9409092 +cond-mat/9409096 +cond-mat/9409097 +cond-mat/9409098 +cond-mat/9409099 +cond-mat/9409100 +cond-mat/9409101 +cond-mat/9409102 +cond-mat/9409103 +cond-mat/9409104 +cond-mat/9409105 +cond-mat/9409106 +cond-mat/9409107 +cond-mat/9409110 +cond-mat/9409112 +cond-mat/9409113 +cond-mat/9409114 +cond-mat/9409115 +cond-mat/9409116 +cond-mat/9409117 +cond-mat/9409118 +cond-mat/9409119 +cond-mat/9409120 +cond-mat/9409121 +cond-mat/9409122 +cond-mat/9409123 +cond-mat/9410001 +cond-mat/9410002 +cond-mat/9410003 +cond-mat/9410004 +cond-mat/9410005 +cond-mat/9410006 +cond-mat/9410007 +cond-mat/9410008 +cond-mat/9410009 +cond-mat/9410010 +cond-mat/9410018 +cond-mat/9410019 +cond-mat/9410021 +cond-mat/9410022 +cond-mat/9410023 +cond-mat/9410025 +cond-mat/9410026 +cond-mat/9410028 +cond-mat/9410029 +cond-mat/9410030 +cond-mat/9410031 +cond-mat/9410032 +cond-mat/9410033 +cond-mat/9410035 +cond-mat/9410036 +cond-mat/9410037 +cond-mat/9410040 +cond-mat/9410041 +cond-mat/9410043 +cond-mat/9410045 +cond-mat/9410048 +cond-mat/9410049 +cond-mat/9410050 +cond-mat/9410051 +cond-mat/9410052 +cond-mat/9410053 +cond-mat/9410054 +cond-mat/9410055 +cond-mat/9410056 +cond-mat/9410057 +cond-mat/9410059 +cond-mat/9410060 +cond-mat/9410061 +cond-mat/9410062 +cond-mat/9410063 +cond-mat/9410064 +cond-mat/9410065 +cond-mat/9410066 +cond-mat/9410067 +cond-mat/9410068 +cond-mat/9410071 +cond-mat/9410073 +cond-mat/9410075 +cond-mat/9410077 +cond-mat/9410078 +cond-mat/9410079 +cond-mat/9410082 +cond-mat/9410083 +cond-mat/9410085 +cond-mat/9410086 +cond-mat/9410087 +cond-mat/9410088 +cond-mat/9410089 +cond-mat/9410090 +cond-mat/9410091 +cond-mat/9410092 +cond-mat/9410094 +cond-mat/9410095 +cond-mat/9410096 +cond-mat/9410097 +cond-mat/9410099 +cond-mat/9410100 +cond-mat/9410101 +cond-mat/9410102 +cond-mat/9410104 +cond-mat/9410105 +cond-mat/9410107 +cond-mat/9410108 +cond-mat/9410112 +cond-mat/9410113 +cond-mat/9410114 +cond-mat/9410115 +cond-mat/9410117 +cond-mat/9410118 +cond-mat/9411002 +cond-mat/9411003 +cond-mat/9411005 +cond-mat/9411006 +cond-mat/9411008 +cond-mat/9411009 +cond-mat/9411011 +cond-mat/9411013 +cond-mat/9411015 +cond-mat/9411016 +cond-mat/9411019 +cond-mat/9411020 +cond-mat/9411021 +cond-mat/9411023 +cond-mat/9411024 +cond-mat/9411025 +cond-mat/9411029 +cond-mat/9411031 +cond-mat/9411032 +cond-mat/9411033 +cond-mat/9411035 +cond-mat/9411037 +cond-mat/9411038 +cond-mat/9411039 +cond-mat/9411042 +cond-mat/9411043 +cond-mat/9411044 +cond-mat/9411045 +cond-mat/9411046 +cond-mat/9411047 +cond-mat/9411048 +cond-mat/9411049 +cond-mat/9411051 +cond-mat/9411052 +cond-mat/9411054 +cond-mat/9411055 +cond-mat/9411056 +cond-mat/9411057 +cond-mat/9411059 +cond-mat/9411063 +cond-mat/9411064 +cond-mat/9411065 +cond-mat/9411066 +cond-mat/9411067 +cond-mat/9411068 +cond-mat/9411069 +cond-mat/9411070 +cond-mat/9411071 +cond-mat/9411073 +cond-mat/9411074 +cond-mat/9411075 +cond-mat/9411076 +cond-mat/9411077 Statistical Mechanics +cond-mat/9411078 +cond-mat/9411079 +cond-mat/9411080 +cond-mat/9411081 +cond-mat/9411082 +cond-mat/9411083 +cond-mat/9411084 +cond-mat/9411087 +cond-mat/9411088 +cond-mat/9411091 +cond-mat/9411093 +cond-mat/9411096 +cond-mat/9411097 +cond-mat/9411099 +cond-mat/9411100 +cond-mat/9411101 +cond-mat/9411103 +cond-mat/9411104 +cond-mat/9411105 +cond-mat/9411106 +cond-mat/9411107 +cond-mat/9411108 +cond-mat/9411110 +cond-mat/9411111 +cond-mat/9411113 +cond-mat/9411114 +cond-mat/9411116 +cond-mat/9411118 +cond-mat/9411119 +cond-mat/9411120 +cond-mat/9411121 +cond-mat/9411122 +cond-mat/9411123 +cond-mat/9411125 +cond-mat/9411127 +cond-mat/9411129 +cond-mat/9411130 +cond-mat/9411131 +cond-mat/9412002 +cond-mat/9412003 +cond-mat/9412005 +cond-mat/9412006 +cond-mat/9412007 +cond-mat/9412008 +cond-mat/9412009 +cond-mat/9412010 +cond-mat/9412012 +cond-mat/9412014 +cond-mat/9412015 +cond-mat/9412016 +cond-mat/9412017 +cond-mat/9412020 +cond-mat/9412021 +cond-mat/9412022 +cond-mat/9412024 +cond-mat/9412026 +cond-mat/9412028 +cond-mat/9412029 +cond-mat/9412031 Statistical Mechanics +cond-mat/9412032 +cond-mat/9412033 +cond-mat/9412034 +cond-mat/9412037 +cond-mat/9412038 +cond-mat/9412039 +cond-mat/9412040 +cond-mat/9412042 +cond-mat/9412043 +cond-mat/9412044 +cond-mat/9412045 +cond-mat/9412046 +cond-mat/9412047 +cond-mat/9412048 +cond-mat/9412051 +cond-mat/9412054 +cond-mat/9412055 +cond-mat/9412056 +cond-mat/9412057 +cond-mat/9412059 +cond-mat/9412062 +cond-mat/9412063 +cond-mat/9412064 +cond-mat/9412065 +cond-mat/9412066 +cond-mat/9412067 +cond-mat/9412068 +cond-mat/9412069 +cond-mat/9412070 +cond-mat/9412071 +cond-mat/9412072 +cond-mat/9412073 +cond-mat/9412074 +cond-mat/9412075 +cond-mat/9412077 +cond-mat/9412078 +cond-mat/9412079 +cond-mat/9412080 +cond-mat/9412081 +cond-mat/9412082 +cond-mat/9412083 +cond-mat/9412084 +cond-mat/9412086 +cond-mat/9412087 +cond-mat/9412088 +cond-mat/9412089 +cond-mat/9412091 +cond-mat/9412093 +cond-mat/9412094 +cond-mat/9412095 +cond-mat/9412096 +cond-mat/9412097 +cond-mat/9412098 +cond-mat/9412099 +cond-mat/9412100 +cond-mat/9412101 +cond-mat/9412104 +cond-mat/9412105 +cond-mat/9412106 +cond-mat/9412107 +cond-mat/9412108 +cond-mat/9412109 +cond-mat/9412110 +cond-mat/9412111 +cond-mat/9412112 +cond-mat/9412114 +cond-mat/9412115 +cond-mat/9412116 +cond-mat/9412118 +cond-mat/9412120 +cond-mat/9412122 +dg-ga/9407005 Differential Geometry +dg-ga/9410002 Differential Geometry +dg-ga/9411011 Differential Geometry +funct-an/9305003 Functional Analysis +funct-an/9306001 Functional Analysis +funct-an/9403002 Functional Analysis +gr-qc/9207006 +gr-qc/9207007 +gr-qc/9207008 +gr-qc/9207011 +gr-qc/9208002 +gr-qc/9208005 +gr-qc/9208006 +gr-qc/9208007 +gr-qc/9208008 +gr-qc/9208009 +gr-qc/9208010 +gr-qc/9209002 +gr-qc/9209006 +gr-qc/9209013 +gr-qc/9209014 +gr-qc/9209015 +gr-qc/9210003 +gr-qc/9210005 +gr-qc/9210007 +gr-qc/9210008 +gr-qc/9210013 +gr-qc/9211001 +gr-qc/9211003 +gr-qc/9211004 +gr-qc/9211006 +gr-qc/9211008 +gr-qc/9211011 +gr-qc/9211012 +gr-qc/9211013 +gr-qc/9211014 +gr-qc/9211021 +gr-qc/9211026 +gr-qc/9212003 +gr-qc/9212004 +gr-qc/9212007 +gr-qc/9212008 +gr-qc/9212016 +gr-qc/9301003 +gr-qc/9301004 +gr-qc/9301007 +gr-qc/9301010 +gr-qc/9301012 +gr-qc/9301014 +gr-qc/9301017 +gr-qc/9301022 +gr-qc/9302008 +gr-qc/9302009 +gr-qc/9302010 +gr-qc/9302011 +gr-qc/9302014 +gr-qc/9302016 +gr-qc/9302031 +gr-qc/9302033 +gr-qc/9302037 +gr-qc/9303001 +gr-qc/9303006 +gr-qc/9303010 +gr-qc/9303023 +gr-qc/9303024 +gr-qc/9303027 +gr-qc/9303030 +gr-qc/9303032 +gr-qc/9303033 +gr-qc/9303036 +gr-qc/9303037 +gr-qc/9303038 +gr-qc/9304001 +gr-qc/9304003 +gr-qc/9304004 +gr-qc/9304010 +gr-qc/9304013 +gr-qc/9304018 +gr-qc/9304019 +gr-qc/9304020 +gr-qc/9304025 +gr-qc/9304027 +gr-qc/9304032 +gr-qc/9304033 +gr-qc/9304036 +gr-qc/9304039 +gr-qc/9304047 +gr-qc/9305002 +gr-qc/9305005 +gr-qc/9305006 +gr-qc/9305009 +gr-qc/9305012 +gr-qc/9305013 +gr-qc/9305017 +gr-qc/9306004 +gr-qc/9306011 +gr-qc/9306013 +gr-qc/9306014 +gr-qc/9306017 +gr-qc/9306018 +gr-qc/9306021 +gr-qc/9306022 +gr-qc/9306025 +gr-qc/9306026 +gr-qc/9306027 +gr-qc/9306034 +gr-qc/9307001 +gr-qc/9307003 +gr-qc/9307008 +gr-qc/9307009 +gr-qc/9307010 +gr-qc/9307013 +gr-qc/9307014 +gr-qc/9307019 +gr-qc/9307020 +gr-qc/9307023 +gr-qc/9307028 +gr-qc/9307032 +gr-qc/9307033 +gr-qc/9307035 +gr-qc/9308001 +gr-qc/9308003 +gr-qc/9308004 +gr-qc/9308006 +gr-qc/9308009 +gr-qc/9308012 +gr-qc/9308014 +gr-qc/9308015 +gr-qc/9308016 +gr-qc/9308017 +gr-qc/9308022 +gr-qc/9308026 +gr-qc/9309004 +gr-qc/9309006 +gr-qc/9309007 +gr-qc/9309010 +gr-qc/9309012 +gr-qc/9309017 +gr-qc/9309018 +gr-qc/9309023 +gr-qc/9309025 +gr-qc/9310015 +gr-qc/9310021 +gr-qc/9310023 +gr-qc/9310024 +gr-qc/9310027 +gr-qc/9310029 +gr-qc/9310030 +gr-qc/9310031 +gr-qc/9310032 +gr-qc/9310038 +gr-qc/9311001 +gr-qc/9311002 +gr-qc/9311013 +gr-qc/9311020 +gr-qc/9311023 +gr-qc/9311025 +gr-qc/9311026 +gr-qc/9311030 +gr-qc/9311037 +gr-qc/9312001 +gr-qc/9312006 +gr-qc/9312009 +gr-qc/9312015 +gr-qc/9312019 +gr-qc/9312029 +gr-qc/9312032 +gr-qc/9312037 +gr-qc/9401003 +gr-qc/9401006 +gr-qc/9401011 +gr-qc/9401013 +gr-qc/9401014 +gr-qc/9401017 +gr-qc/9401021 +gr-qc/9401022 +gr-qc/9401023 +gr-qc/9401026 +gr-qc/9401030 +gr-qc/9401031 +gr-qc/9402003 +gr-qc/9402008 +gr-qc/9402010 +gr-qc/9402018 +gr-qc/9402020 +gr-qc/9402022 +gr-qc/9402026 +gr-qc/9402030 +gr-qc/9402035 +gr-qc/9402036 +gr-qc/9402041 +gr-qc/9402043 +gr-qc/9402044 +gr-qc/9402045 +gr-qc/9403001 +gr-qc/9403002 +gr-qc/9403005 +gr-qc/9403008 +gr-qc/9403009 +gr-qc/9403011 +gr-qc/9403013 +gr-qc/9403014 +gr-qc/9403015 +gr-qc/9403018 +gr-qc/9403019 +gr-qc/9403028 +gr-qc/9403032 +gr-qc/9403035 +gr-qc/9403038 +gr-qc/9403039 +gr-qc/9403044 +gr-qc/9403045 +gr-qc/9403046 +gr-qc/9403047 +gr-qc/9403048 +gr-qc/9403049 +gr-qc/9403053 +gr-qc/9403056 +gr-qc/9403058 +gr-qc/9403065 +gr-qc/9404001 +gr-qc/9404008 +gr-qc/9404016 +gr-qc/9404018 +gr-qc/9404033 +gr-qc/9404046 +gr-qc/9404052 +gr-qc/9404054 +gr-qc/9404059 +gr-qc/9404062 +gr-qc/9404065 +gr-qc/9405002 +gr-qc/9405005 +gr-qc/9405007 +gr-qc/9405010 +gr-qc/9405020 +gr-qc/9405029 +gr-qc/9405032 +gr-qc/9405033 +gr-qc/9405036 +gr-qc/9405037 +gr-qc/9405040 +gr-qc/9405044 +gr-qc/9405045 +gr-qc/9405049 +gr-qc/9405064 +gr-qc/9405066 +gr-qc/9405069 +gr-qc/9405070 +gr-qc/9405073 +gr-qc/9406001 +gr-qc/9406002 +gr-qc/9406003 +gr-qc/9406011 +gr-qc/9406013 +gr-qc/9406015 +gr-qc/9406016 +gr-qc/9406021 +gr-qc/9406022 +gr-qc/9406024 +gr-qc/9406027 +gr-qc/9406029 +gr-qc/9406036 +gr-qc/9406038 +gr-qc/9406039 +gr-qc/9406044 +gr-qc/9406050 +gr-qc/9406054 +gr-qc/9407001 +gr-qc/9407007 +gr-qc/9407011 +gr-qc/9407012 +gr-qc/9407020 +gr-qc/9407023 +gr-qc/9407026 +gr-qc/9407027 +gr-qc/9407030 +gr-qc/9407031 +gr-qc/9407035 +gr-qc/9407036 +gr-qc/9407038 +gr-qc/9407041 +gr-qc/9408002 +gr-qc/9408006 +gr-qc/9408010 +gr-qc/9408011 +gr-qc/9408012 +gr-qc/9408014 +gr-qc/9408019 +gr-qc/9408020 +gr-qc/9408024 +gr-qc/9408035 +gr-qc/9408036 +gr-qc/9408037 +gr-qc/9408039 +gr-qc/9408041 +gr-qc/9408044 +gr-qc/9409002 +gr-qc/9409003 +gr-qc/9409005 +gr-qc/9409006 +gr-qc/9409008 +gr-qc/9409027 +gr-qc/9409032 +gr-qc/9409033 +gr-qc/9409034 +gr-qc/9409035 +gr-qc/9409037 +gr-qc/9409038 +gr-qc/9409040 +gr-qc/9409043 +gr-qc/9409044 +gr-qc/9409045 +gr-qc/9409051 +gr-qc/9409056 +gr-qc/9409061 +gr-qc/9409062 +gr-qc/9410002 +gr-qc/9410006 +gr-qc/9410016 +gr-qc/9410019 +gr-qc/9410026 +gr-qc/9410032 +gr-qc/9410033 +gr-qc/9410040 +gr-qc/9410044 +gr-qc/9410046 +gr-qc/9411001 +gr-qc/9411002 +gr-qc/9411005 +gr-qc/9411006 +gr-qc/9411009 +gr-qc/9411010 +gr-qc/9411012 +gr-qc/9411018 +gr-qc/9411023 +gr-qc/9411024 +gr-qc/9411025 +gr-qc/9411033 +gr-qc/9411036 +gr-qc/9411037 +gr-qc/9411038 +gr-qc/9411040 +gr-qc/9411041 +gr-qc/9411045 +gr-qc/9411048 +gr-qc/9411051 +gr-qc/9411052 +gr-qc/9411056 +gr-qc/9411060 +gr-qc/9411061 +gr-qc/9411062 +gr-qc/9411067 +gr-qc/9411069 +gr-qc/9411070 +gr-qc/9412005 +gr-qc/9412006 +gr-qc/9412007 +gr-qc/9412009 +gr-qc/9412016 +gr-qc/9412018 +gr-qc/9412028 +gr-qc/9412029 +gr-qc/9412030 +gr-qc/9412046 +gr-qc/9412047 +gr-qc/9412049 +gr-qc/9412050 +gr-qc/9412065 +gr-qc/9412067 +gr-qc/9412068 +gr-qc/9412069 +gr-qc/9412070 +gr-qc/9412071 +gr-qc/9412072 +gr-qc/9412073 +hep-ex/9405007 Experiment +hep-ex/9407001 Experiment +hep-ex/9407003 Experiment +hep-ex/9412004 Experiment +hep-ex/9412006 Experiment +hep-ex/9412007 Experiment +hep-ex/9412008 Experiment +hep-lat/9107001 Lattice +hep-lat/9107002 Lattice +hep-lat/9112002 Lattice +hep-lat/9201002 Lattice +hep-lat/9201004 Lattice +hep-lat/9201005 Lattice +hep-lat/9201006 Lattice +hep-lat/9202001 Lattice +hep-lat/9202003 Lattice +hep-lat/9202004 Lattice +hep-lat/9203001 Lattice +hep-lat/9204003 Lattice +hep-lat/9204004 Lattice +hep-lat/9204005 Lattice +hep-lat/9204007 Lattice +hep-lat/9204008 Lattice +hep-lat/9204009 Lattice +hep-lat/9204013 Lattice +hep-lat/9204014 Lattice +hep-lat/9204015 Lattice +hep-lat/9205001 Lattice +hep-lat/9205003 Lattice +hep-lat/9205004 Lattice +hep-lat/9205005 Lattice +hep-lat/9205009 Lattice +hep-lat/9205011 Lattice +hep-lat/9205012 Lattice +hep-lat/9205019 Lattice +hep-lat/9205020 Lattice +hep-lat/9205021 Lattice +hep-lat/9205022 Lattice +hep-lat/9205023 Lattice +hep-lat/9205024 Lattice +hep-lat/9205026 Lattice +hep-lat/9205027 Lattice +hep-lat/9205029 Lattice +hep-lat/9206002 Lattice +hep-lat/9206004 Lattice +hep-lat/9206005 Lattice +hep-lat/9206007 Lattice +hep-lat/9206008 Lattice +hep-lat/9206010 Lattice +hep-lat/9206011 Lattice +hep-lat/9206012 Lattice +hep-lat/9206014 Lattice +hep-lat/9206015 Lattice +hep-lat/9206016 Lattice +hep-lat/9206018 Lattice +hep-lat/9206019 Lattice +hep-lat/9206020 Lattice +hep-lat/9206021 Lattice +hep-lat/9206022 Lattice +hep-lat/9206023 Lattice +hep-lat/9206024 Lattice +hep-lat/9206025 Lattice +hep-lat/9206026 Lattice +hep-lat/9207003 Lattice +hep-lat/9207004 Lattice +hep-lat/9207005 Lattice +hep-lat/9207006 Lattice +hep-lat/9207008 Lattice +hep-lat/9207011 Lattice +hep-lat/9207012 Lattice +hep-lat/9207013 Lattice +hep-lat/9207014 Lattice +hep-lat/9207015 Lattice +hep-lat/9207016 Lattice +hep-lat/9207017 Lattice +hep-lat/9207019 Lattice +hep-lat/9207020 Lattice +hep-lat/9207022 Lattice +hep-lat/9207024 Lattice +hep-lat/9207025 Lattice +hep-lat/9207026 Lattice +hep-lat/9207028 Lattice +hep-lat/9207030 Lattice +hep-lat/9207033 Lattice +hep-lat/9207034 Lattice +hep-lat/9207035 Lattice +hep-lat/9208003 Lattice +hep-lat/9208005 Lattice +hep-lat/9208006 Lattice +hep-lat/9208009 Lattice +hep-lat/9208010 Lattice +hep-lat/9208012 Lattice +hep-lat/9208013 Lattice +hep-lat/9208014 Lattice +hep-lat/9208017 Lattice +hep-lat/9208019 Lattice +hep-lat/9208020 Lattice +hep-lat/9208021 Lattice +hep-lat/9208023 Lattice +hep-lat/9208029 Lattice +hep-lat/9209001 Lattice +hep-lat/9209002 Lattice +hep-lat/9209003 Lattice +hep-lat/9209004 Lattice +hep-lat/9209009 Lattice +hep-lat/9209010 Lattice +hep-lat/9209011 Lattice +hep-lat/9209013 Lattice +hep-lat/9209016 Lattice +hep-lat/9209017 Lattice +hep-lat/9209020 Lattice +hep-lat/9209022 Lattice +hep-lat/9209024 Lattice +hep-lat/9209025 Lattice +hep-lat/9209026 Lattice +hep-lat/9209027 Lattice +hep-lat/9210003 Lattice +hep-lat/9210004 Lattice +hep-lat/9210005 Lattice +hep-lat/9210008 Lattice +hep-lat/9210009 Lattice +hep-lat/9210010 Lattice +hep-lat/9210011 Lattice +hep-lat/9210012 Lattice +hep-lat/9210013 Lattice +hep-lat/9210015 Lattice +hep-lat/9210016 Lattice +hep-lat/9210017 Lattice +hep-lat/9210018 Lattice +hep-lat/9210019 Lattice +hep-lat/9210021 Lattice +hep-lat/9210022 Lattice +hep-lat/9210023 Lattice +hep-lat/9210024 Lattice +hep-lat/9210025 Lattice +hep-lat/9210026 Lattice +hep-lat/9210027 Lattice +hep-lat/9210028 Lattice +hep-lat/9210029 Lattice +hep-lat/9210031 Lattice +hep-lat/9210033 Lattice +hep-lat/9210034 Lattice +hep-lat/9210035 Lattice +hep-lat/9210036 Lattice +hep-lat/9210037 Lattice +hep-lat/9210040 Lattice +hep-lat/9210041 Lattice +hep-lat/9211003 Lattice +hep-lat/9211005 Lattice +hep-lat/9211006 Lattice +hep-lat/9211009 Lattice +hep-lat/9211010 Lattice +hep-lat/9211011 Lattice +hep-lat/9211014 Lattice +hep-lat/9211015 Lattice +hep-lat/9211016 Lattice +hep-lat/9211017 Lattice +hep-lat/9211018 Lattice +hep-lat/9211020 Lattice +hep-lat/9211022 Lattice +hep-lat/9211023 Lattice +hep-lat/9211024 Lattice +hep-lat/9211026 Lattice +hep-lat/9211027 Lattice +hep-lat/9211028 Lattice +hep-lat/9211029 Lattice +hep-lat/9211031 Lattice +hep-lat/9211032 Lattice +hep-lat/9211035 Lattice +hep-lat/9211037 Lattice +hep-lat/9211038 Lattice +hep-lat/9211041 Lattice +hep-lat/9211042 Lattice +hep-lat/9211043 Lattice +hep-lat/9211044 Lattice +hep-lat/9211048 Lattice +hep-lat/9211049 Lattice +hep-lat/9211050 Lattice +hep-lat/9211051 Lattice +hep-lat/9211052 Lattice +hep-lat/9211053 Lattice +hep-lat/9211054 Lattice +hep-lat/9211055 Lattice +hep-lat/9211057 Lattice +hep-lat/9211058 Lattice +hep-lat/9211059 Lattice +hep-lat/9211060 Lattice +hep-lat/9211061 Lattice +hep-lat/9211063 Lattice +hep-lat/9212001 Lattice +hep-lat/9212003 Lattice +hep-lat/9212005 Lattice +hep-lat/9212006 Lattice +hep-lat/9212008 Lattice +hep-lat/9212009 Lattice +hep-lat/9212010 Lattice +hep-lat/9212012 Lattice +hep-lat/9212013 Lattice +hep-lat/9212017 Lattice +hep-lat/9212019 Lattice +hep-lat/9212020 Lattice +hep-lat/9212022 Lattice +hep-lat/9212023 Lattice +hep-lat/9212024 Lattice +hep-lat/9212025 Lattice +hep-lat/9212026 Lattice +hep-lat/9212027 Lattice +hep-lat/9212028 Lattice +hep-lat/9212030 Lattice +hep-lat/9212031 Lattice +hep-lat/9212035 Lattice +hep-lat/9301001 Lattice +hep-lat/9301002 Lattice +hep-lat/9301003 Lattice +hep-lat/9301004 Lattice +hep-lat/9301007 Lattice +hep-lat/9301009 Lattice +hep-lat/9301010 Lattice +hep-lat/9301012 Lattice +hep-lat/9301013 Lattice +hep-lat/9301014 Lattice +hep-lat/9301015 Lattice +hep-lat/9301016 Lattice +hep-lat/9301017 Lattice +hep-lat/9301018 Lattice +hep-lat/9301020 Lattice +hep-lat/9302001 Lattice +hep-lat/9302003 Lattice +hep-lat/9302004 Lattice +hep-lat/9302005 Lattice +hep-lat/9302006 Lattice +hep-lat/9302009 Lattice +hep-lat/9302010 Lattice +hep-lat/9303002 Lattice +hep-lat/9303003 Lattice +hep-lat/9303004 Lattice +hep-lat/9303005 Lattice +hep-lat/9303006 Lattice +hep-lat/9303008 Lattice +hep-lat/9303010 Lattice +hep-lat/9303011 Lattice +hep-lat/9303014 Lattice +hep-lat/9303016 Lattice +hep-lat/9304001 Lattice +hep-lat/9304003 Lattice +hep-lat/9304004 Lattice +hep-lat/9304005 Lattice +hep-lat/9304006 Lattice +hep-lat/9304008 Lattice +hep-lat/9304009 Lattice +hep-lat/9304013 Lattice +hep-lat/9304015 Lattice +hep-lat/9304016 Lattice +hep-lat/9305004 Lattice +hep-lat/9305005 Lattice +hep-lat/9305006 Lattice +hep-lat/9305011 Lattice +hep-lat/9305012 Lattice +hep-lat/9305014 Lattice +hep-lat/9305017 Lattice +hep-lat/9305018 Lattice +hep-lat/9305021 Lattice +hep-lat/9305022 Lattice +hep-lat/9306001 Lattice +hep-lat/9306003 Lattice +hep-lat/9306006 Lattice +hep-lat/9306009 Lattice +hep-lat/9306010 Lattice +hep-lat/9306011 Lattice +hep-lat/9306012 Lattice +hep-lat/9306013 Lattice +hep-lat/9306016 Lattice +hep-lat/9306017 Lattice +hep-lat/9306020 Lattice +hep-lat/9306021 Lattice +hep-lat/9306022 Lattice +hep-lat/9307001 Lattice +hep-lat/9307002 Lattice +hep-lat/9307005 Lattice +hep-lat/9307006 Lattice +hep-lat/9307007 Lattice +hep-lat/9307008 Lattice +hep-lat/9307010 Lattice +hep-lat/9307012 Lattice +hep-lat/9307013 Lattice +hep-lat/9307016 Lattice +hep-lat/9307017 Lattice +hep-lat/9307018 Lattice +hep-lat/9307019 Lattice +hep-lat/9307022 Lattice +hep-lat/9308001 Lattice +hep-lat/9308005 Lattice +hep-lat/9308008 Lattice +hep-lat/9308009 Lattice +hep-lat/9308011 Lattice +hep-lat/9308015 Lattice +hep-lat/9308016 Lattice +hep-lat/9308018 Lattice +hep-lat/9309001 Lattice +hep-lat/9309005 Lattice +hep-lat/9309006 Lattice +hep-lat/9309007 Lattice +hep-lat/9309011 Lattice +hep-lat/9309014 Lattice +hep-lat/9309015 Lattice +hep-lat/9309019 Lattice +hep-lat/9309020 Lattice +hep-lat/9309022 Lattice +hep-lat/9310001 Lattice +hep-lat/9310002 Lattice +hep-lat/9310005 Lattice +hep-lat/9310006 Lattice +hep-lat/9310009 Lattice +hep-lat/9310010 Lattice +hep-lat/9310013 Lattice +hep-lat/9310016 Lattice +hep-lat/9310018 Lattice +hep-lat/9310021 Lattice +hep-lat/9310024 Lattice +hep-lat/9310025 Lattice +hep-lat/9310027 Lattice +hep-lat/9310028 Lattice +hep-lat/9310030 Lattice +hep-lat/9311003 Lattice +hep-lat/9311005 Lattice +hep-lat/9311007 Lattice +hep-lat/9311008 Lattice +hep-lat/9311010 Lattice +hep-lat/9311011 Lattice +hep-lat/9311014 Lattice +hep-lat/9311015 Lattice +hep-lat/9311016 Lattice +hep-lat/9311017 Lattice +hep-lat/9311018 Lattice +hep-lat/9311019 Lattice +hep-lat/9311020 Lattice +hep-lat/9311021 Lattice +hep-lat/9311022 Lattice +hep-lat/9311023 Lattice +hep-lat/9311024 Lattice +hep-lat/9311026 Lattice +hep-lat/9311027 Lattice +hep-lat/9311028 Lattice +hep-lat/9311030 Lattice +hep-lat/9311031 Lattice +hep-lat/9311033 Lattice +hep-lat/9311035 Lattice +hep-lat/9311036 Lattice +hep-lat/9311040 Lattice +hep-lat/9311042 Lattice +hep-lat/9311044 Lattice +hep-lat/9311046 Lattice +hep-lat/9311047 Lattice +hep-lat/9311048 Lattice +hep-lat/9311049 Lattice +hep-lat/9311050 Lattice +hep-lat/9311051 Lattice +hep-lat/9311053 Lattice +hep-lat/9311055 Lattice +hep-lat/9311056 Lattice +hep-lat/9311057 Lattice +hep-lat/9311058 Lattice +hep-lat/9311061 Lattice +hep-lat/9311064 Lattice +hep-lat/9311065 Lattice +hep-lat/9311066 Lattice +hep-lat/9311067 Lattice +hep-lat/9311070 Lattice +hep-lat/9312002 Lattice +hep-lat/9312003 Lattice +hep-lat/9312005 Lattice +hep-lat/9312006 Lattice +hep-lat/9312007 Lattice +hep-lat/9312008 Lattice +hep-lat/9312009 Lattice +hep-lat/9312011 Lattice +hep-lat/9312012 Lattice +hep-lat/9312013 Lattice +hep-lat/9312014 Lattice +hep-lat/9312016 Lattice +hep-lat/9312018 Lattice +hep-lat/9312022 Lattice +hep-lat/9312023 Lattice +hep-lat/9312024 Lattice +hep-lat/9312025 Lattice +hep-lat/9312026 Lattice +hep-lat/9312029 Lattice +hep-lat/9312031 Lattice +hep-lat/9312033 Lattice +hep-lat/9312034 Lattice +hep-lat/9312037 Lattice +hep-lat/9312039 Lattice +hep-lat/9312040 Lattice +hep-lat/9312041 Lattice +hep-lat/9312042 Lattice +hep-lat/9312043 Lattice +hep-lat/9312044 Lattice +hep-lat/9312045 Lattice +hep-lat/9312046 Lattice +hep-lat/9312048 Lattice +hep-lat/9312049 Lattice +hep-lat/9312050 Lattice +hep-lat/9312051 Lattice +hep-lat/9312053 Lattice +hep-lat/9312056 Lattice +hep-lat/9312058 Lattice +hep-lat/9312060 Lattice +hep-lat/9312061 Lattice +hep-lat/9312065 Lattice +hep-lat/9312067 Lattice +hep-lat/9312068 Lattice +hep-lat/9312069 Lattice +hep-lat/9312072 Lattice +hep-lat/9312077 Lattice +hep-lat/9312078 Lattice +hep-lat/9312081 Lattice +hep-lat/9312082 Lattice +hep-lat/9312083 Lattice +hep-lat/9312084 Lattice +hep-lat/9312085 Lattice +hep-lat/9312086 Lattice +hep-lat/9312087 Lattice +hep-lat/9401001 Lattice +hep-lat/9401002 Lattice +hep-lat/9401005 Lattice +hep-lat/9401006 Lattice +hep-lat/9401008 Lattice +hep-lat/9401009 Lattice +hep-lat/9401014 Lattice +hep-lat/9401015 Lattice +hep-lat/9401016 Lattice +hep-lat/9401017 Lattice +hep-lat/9401019 Lattice +hep-lat/9401020 Lattice +hep-lat/9401021 Lattice +hep-lat/9401022 Lattice +hep-lat/9401023 Lattice +hep-lat/9401028 Lattice +hep-lat/9401030 Lattice +hep-lat/9401031 Lattice +hep-lat/9401032 Lattice +hep-lat/9401037 Lattice +hep-lat/9401039 Lattice +hep-lat/9402002 Lattice +hep-lat/9402003 Lattice +hep-lat/9402006 Lattice +hep-lat/9402007 Lattice +hep-lat/9402009 Lattice +hep-lat/9402011 Lattice +hep-lat/9402013 Lattice +hep-lat/9402014 Lattice +hep-lat/9402016 Lattice +hep-lat/9402018 Lattice +hep-lat/9402019 Lattice +hep-lat/9402020 Lattice +hep-lat/9403001 Lattice +hep-lat/9403002 Lattice +hep-lat/9403003 Lattice +hep-lat/9403005 Lattice +hep-lat/9403006 Lattice +hep-lat/9403008 Lattice +hep-lat/9403009 Lattice +hep-lat/9403010 Lattice +hep-lat/9403011 Lattice +hep-lat/9403013 Lattice +hep-lat/9403014 Lattice +hep-lat/9403016 Lattice +hep-lat/9403017 Lattice +hep-lat/9403019 Lattice +hep-lat/9403022 Lattice +hep-lat/9403023 Lattice +hep-lat/9403024 Lattice +hep-lat/9403025 Lattice +hep-lat/9403027 Lattice +hep-lat/9403028 Lattice +hep-lat/9404002 Lattice +hep-lat/9404003 Lattice +hep-lat/9404005 Lattice +hep-lat/9404007 Lattice +hep-lat/9404008 Lattice +hep-lat/9404011 Lattice +hep-lat/9404012 Lattice +hep-lat/9404015 Lattice +hep-lat/9404016 Lattice +hep-lat/9404017 Lattice +hep-lat/9405003 Lattice +hep-lat/9405004 Lattice +hep-lat/9405006 Lattice +hep-lat/9405008 Lattice +hep-lat/9405009 Lattice +hep-lat/9405010 Lattice +hep-lat/9405013 Lattice +hep-lat/9405017 Lattice +hep-lat/9405018 Lattice +hep-lat/9405019 Lattice +hep-lat/9405020 Lattice +hep-lat/9405021 Lattice +hep-lat/9405022 Lattice +hep-lat/9405023 Lattice +hep-lat/9405026 Lattice +hep-lat/9406003 Lattice +hep-lat/9406004 Lattice +hep-lat/9406008 Lattice +hep-lat/9406010 Lattice +hep-lat/9406018 Lattice +hep-lat/9406019 Lattice +hep-lat/9406020 Lattice +hep-lat/9407001 Lattice +hep-lat/9407002 Lattice +hep-lat/9407003 Lattice +hep-lat/9407005 Lattice +hep-lat/9407006 Lattice +hep-lat/9407007 Lattice +hep-lat/9407009 Lattice +hep-lat/9407010 Lattice +hep-lat/9407011 Lattice +hep-lat/9407013 Lattice +hep-lat/9407014 Lattice +hep-lat/9407015 Lattice +hep-lat/9407016 Lattice +hep-lat/9407017 Lattice +hep-lat/9407018 Lattice +hep-lat/9407019 Lattice +hep-lat/9407020 Lattice +hep-lat/9407021 Lattice +hep-lat/9407022 Lattice +hep-lat/9407023 Lattice +hep-lat/9407027 Lattice +hep-lat/9407028 Lattice +hep-lat/9408001 Lattice +hep-lat/9408002 Lattice +hep-lat/9408003 Lattice +hep-lat/9408004 Lattice +hep-lat/9408005 Lattice +hep-lat/9408008 Lattice +hep-lat/9408009 Lattice +hep-lat/9408011 Lattice +hep-lat/9408013 Lattice +hep-lat/9408014 Lattice +hep-lat/9408015 Lattice +hep-lat/9408016 Lattice +hep-lat/9408018 Lattice +hep-lat/9408020 Lattice +hep-lat/9409001 Lattice +hep-lat/9409003 Lattice +hep-lat/9409004 Lattice +hep-lat/9409005 Lattice +hep-lat/9409006 Lattice +hep-lat/9409012 Lattice +hep-lat/9409013 Lattice +hep-lat/9409015 Lattice +hep-lat/9409017 Lattice +hep-lat/9409018 Lattice +hep-lat/9410001 Lattice +hep-lat/9410004 Lattice +hep-lat/9410006 Lattice +hep-lat/9410009 Lattice +hep-lat/9410010 Lattice +hep-lat/9410014 Lattice +hep-lat/9410015 Lattice +hep-lat/9410016 Lattice +hep-lat/9410017 Lattice +hep-lat/9410019 Lattice +hep-lat/9410020 Lattice +hep-lat/9410023 Lattice +hep-lat/9411001 Lattice +hep-lat/9411002 Lattice +hep-lat/9411003 Lattice +hep-lat/9411008 Lattice +hep-lat/9411009 Lattice +hep-lat/9411011 Lattice +hep-lat/9411012 Lattice +hep-lat/9411014 Lattice +hep-lat/9411016 Lattice +hep-lat/9411017 Lattice +hep-lat/9411018 Lattice +hep-lat/9411019 Lattice +hep-lat/9411020 Lattice +hep-lat/9411022 Lattice +hep-lat/9411023 Lattice +hep-lat/9411024 Lattice +hep-lat/9411027 Lattice +hep-lat/9411030 Lattice +hep-lat/9411031 Lattice +hep-lat/9411032 Lattice +hep-lat/9411033 Lattice +hep-lat/9411035 Lattice +hep-lat/9411037 Lattice +hep-lat/9411039 Lattice +hep-lat/9411042 Lattice +hep-ph/9203202 Phenomenology +hep-ph/9203207 Phenomenology +hep-ph/9203208 Phenomenology +hep-ph/9203209 Phenomenology +hep-ph/9203210 Phenomenology +hep-ph/9203211 Phenomenology +hep-ph/9203217 Phenomenology +hep-ph/9203223 Phenomenology +hep-ph/9203224 Phenomenology +hep-ph/9203226 Phenomenology +hep-ph/9204203 Phenomenology +hep-ph/9204204 Phenomenology +hep-ph/9204210 Phenomenology +hep-ph/9204211 Phenomenology +hep-ph/9204214 Phenomenology +hep-ph/9204217 Phenomenology +hep-ph/9204218 Phenomenology +hep-ph/9204220 Phenomenology +hep-ph/9204222 Phenomenology +hep-ph/9204223 Phenomenology +hep-ph/9204224 Phenomenology +hep-ph/9204225 Phenomenology +hep-ph/9204226 Phenomenology +hep-ph/9204227 Phenomenology +hep-ph/9205201 Phenomenology +hep-ph/9205204 Phenomenology +hep-ph/9205207 Phenomenology +hep-ph/9205209 Phenomenology +hep-ph/9205210 Phenomenology +hep-ph/9205211 Phenomenology +hep-ph/9205213 Phenomenology +hep-ph/9205214 Phenomenology +hep-ph/9205217 Phenomenology +hep-ph/9205218 Phenomenology +hep-ph/9205220 Phenomenology +hep-ph/9205222 Phenomenology +hep-ph/9205223 Phenomenology +hep-ph/9205227 Phenomenology +hep-ph/9205232 Phenomenology +hep-ph/9205235 Phenomenology +hep-ph/9205238 Phenomenology +hep-ph/9205245 Phenomenology +hep-ph/9206202 Phenomenology +hep-ph/9206204 Phenomenology +hep-ph/9206205 Phenomenology +hep-ph/9206206 Phenomenology +hep-ph/9206208 Phenomenology +hep-ph/9206210 Phenomenology +hep-ph/9206211 Phenomenology +hep-ph/9206213 Phenomenology +hep-ph/9206214 Phenomenology +hep-ph/9206218 Phenomenology +hep-ph/9206219 Phenomenology +hep-ph/9206221 Phenomenology +hep-ph/9206228 Phenomenology +hep-ph/9206232 Phenomenology +hep-ph/9206233 Phenomenology +hep-ph/9206235 Phenomenology +hep-ph/9206238 Phenomenology +hep-ph/9206239 Phenomenology +hep-ph/9206240 Phenomenology +hep-ph/9206244 Phenomenology +hep-ph/9206246 Phenomenology +hep-ph/9206252 Phenomenology +hep-ph/9206255 Phenomenology +hep-ph/9206256 Phenomenology +hep-ph/9206261 Phenomenology +hep-ph/9206263 Phenomenology +hep-ph/9206264 Phenomenology +hep-ph/9206266 Phenomenology +hep-ph/9207202 Phenomenology +hep-ph/9207203 Phenomenology +hep-ph/9207204 Phenomenology +hep-ph/9207206 Phenomenology +hep-ph/9207211 Phenomenology +hep-ph/9207215 Phenomenology +hep-ph/9207217 Phenomenology +hep-ph/9207221 Phenomenology +hep-ph/9207224 Phenomenology +hep-ph/9207226 Phenomenology +hep-ph/9207227 Phenomenology +hep-ph/9207228 Phenomenology +hep-ph/9207231 Phenomenology +hep-ph/9207232 Phenomenology +hep-ph/9207233 Phenomenology +hep-ph/9207235 Phenomenology +hep-ph/9207236 Phenomenology +hep-ph/9207238 Phenomenology +hep-ph/9207240 Phenomenology +hep-ph/9207241 Phenomenology +hep-ph/9207242 Phenomenology +hep-ph/9207244 Phenomenology +hep-ph/9207249 Phenomenology +hep-ph/9207251 Phenomenology +hep-ph/9207252 Phenomenology +hep-ph/9207255 Phenomenology +hep-ph/9207256 Phenomenology +hep-ph/9207258 Phenomenology +hep-ph/9207260 Phenomenology +hep-ph/9207261 Phenomenology +hep-ph/9207265 Phenomenology +hep-ph/9207266 Phenomenology +hep-ph/9207267 Phenomenology +hep-ph/9207271 Phenomenology +hep-ph/9207272 Phenomenology +hep-ph/9207273 Phenomenology +hep-ph/9207274 Phenomenology +hep-ph/9207277 Phenomenology +hep-ph/9208201 Phenomenology +hep-ph/9208202 Phenomenology +hep-ph/9208203 Phenomenology +hep-ph/9208207 Phenomenology +hep-ph/9208209 Phenomenology +hep-ph/9208210 Phenomenology +hep-ph/9208212 Phenomenology +hep-ph/9208213 Phenomenology +hep-ph/9208215 Phenomenology +hep-ph/9208216 Phenomenology +hep-ph/9208217 Phenomenology +hep-ph/9208220 Phenomenology +hep-ph/9208221 Phenomenology +hep-ph/9208224 Phenomenology +hep-ph/9208226 Phenomenology +hep-ph/9208229 Phenomenology +hep-ph/9208231 Phenomenology +hep-ph/9208232 Phenomenology +hep-ph/9208235 Phenomenology +hep-ph/9208237 Phenomenology +hep-ph/9208239 Phenomenology +hep-ph/9208240 Phenomenology +hep-ph/9208241 Phenomenology +hep-ph/9208242 Phenomenology +hep-ph/9208243 Phenomenology +hep-ph/9208247 Phenomenology +hep-ph/9208249 Phenomenology +hep-ph/9208253 Phenomenology +hep-ph/9208255 Phenomenology +hep-ph/9208257 Phenomenology +hep-ph/9208258 Phenomenology +hep-ph/9209202 Phenomenology +hep-ph/9209204 Phenomenology +hep-ph/9209205 Phenomenology +hep-ph/9209207 Phenomenology +hep-ph/9209208 Phenomenology +hep-ph/9209213 Phenomenology +hep-ph/9209214 Phenomenology +hep-ph/9209216 Phenomenology +hep-ph/9209218 Phenomenology +hep-ph/9209219 Phenomenology +hep-ph/9209221 Phenomenology +hep-ph/9209222 Phenomenology +hep-ph/9209223 Phenomenology +hep-ph/9209225 Phenomenology +hep-ph/9209230 Phenomenology +hep-ph/9209237 Phenomenology +hep-ph/9209242 Phenomenology +hep-ph/9209243 Phenomenology +hep-ph/9209248 Phenomenology +hep-ph/9209251 Phenomenology +hep-ph/9209254 Phenomenology +hep-ph/9209257 Phenomenology +hep-ph/9209258 Phenomenology +hep-ph/9209262 Phenomenology +hep-ph/9209263 Phenomenology +hep-ph/9209264 Phenomenology +hep-ph/9209265 Phenomenology +hep-ph/9209268 Phenomenology +hep-ph/9209270 Phenomenology +hep-ph/9209272 Phenomenology +hep-ph/9209274 Phenomenology +hep-ph/9209278 Phenomenology +hep-ph/9209280 Phenomenology +hep-ph/9209281 Phenomenology +hep-ph/9209283 Phenomenology +hep-ph/9209287 Phenomenology +hep-ph/9209288 Phenomenology +hep-ph/9209289 Phenomenology +hep-ph/9209296 Phenomenology +hep-ph/9209299 Phenomenology +hep-ph/9210203 Phenomenology +hep-ph/9210205 Phenomenology +hep-ph/9210208 Phenomenology +hep-ph/9210210 Phenomenology +hep-ph/9210211 Phenomenology +hep-ph/9210212 Phenomenology +hep-ph/9210213 Phenomenology +hep-ph/9210214 Phenomenology +hep-ph/9210216 Phenomenology +hep-ph/9210219 Phenomenology +hep-ph/9210222 Phenomenology +hep-ph/9210224 Phenomenology +hep-ph/9210226 Phenomenology +hep-ph/9210227 Phenomenology +hep-ph/9210228 Phenomenology +hep-ph/9210230 Phenomenology +hep-ph/9210233 Phenomenology +hep-ph/9210234 Phenomenology +hep-ph/9210235 Phenomenology +hep-ph/9210241 Phenomenology +hep-ph/9210242 Phenomenology +hep-ph/9210244 Phenomenology +hep-ph/9210245 Phenomenology +hep-ph/9210253 Phenomenology +hep-ph/9210254 Phenomenology +hep-ph/9210256 Phenomenology +hep-ph/9210259 Phenomenology +hep-ph/9210263 Phenomenology +hep-ph/9210271 Phenomenology +hep-ph/9210272 Phenomenology +hep-ph/9210273 Phenomenology +hep-ph/9210274 Phenomenology +hep-ph/9210276 Phenomenology +hep-ph/9210278 Phenomenology +hep-ph/9211202 Phenomenology +hep-ph/9211204 Phenomenology +hep-ph/9211206 Phenomenology +hep-ph/9211207 Phenomenology +hep-ph/9211209 Phenomenology +hep-ph/9211211 Phenomenology +hep-ph/9211213 Phenomenology +hep-ph/9211215 Phenomenology +hep-ph/9211216 Phenomenology +hep-ph/9211219 Phenomenology +hep-ph/9211221 Phenomenology +hep-ph/9211223 Phenomenology +hep-ph/9211224 Phenomenology +hep-ph/9211226 Phenomenology +hep-ph/9211227 Phenomenology +hep-ph/9211231 Phenomenology +hep-ph/9211232 Phenomenology +hep-ph/9211233 Phenomenology +hep-ph/9211236 Phenomenology +hep-ph/9211237 Phenomenology +hep-ph/9211238 Phenomenology +hep-ph/9211239 Phenomenology +hep-ph/9211240 Phenomenology +hep-ph/9211241 Phenomenology +hep-ph/9211242 Phenomenology +hep-ph/9211247 Phenomenology +hep-ph/9211248 Phenomenology +hep-ph/9211249 Phenomenology +hep-ph/9211251 Phenomenology +hep-ph/9211252 Phenomenology +hep-ph/9211261 Phenomenology +hep-ph/9211262 Phenomenology +hep-ph/9211264 Phenomenology +hep-ph/9211265 Phenomenology +hep-ph/9211269 Phenomenology +hep-ph/9211271 Phenomenology +hep-ph/9211279 Phenomenology +hep-ph/9211280 Phenomenology +hep-ph/9211284 Phenomenology +hep-ph/9211285 Phenomenology +hep-ph/9211289 Phenomenology +hep-ph/9211290 Phenomenology +hep-ph/9211291 Phenomenology +hep-ph/9211292 Phenomenology +hep-ph/9211299 Phenomenology +hep-ph/9211301 Phenomenology +hep-ph/9211302 Phenomenology +hep-ph/9211303 Phenomenology +hep-ph/9211304 Phenomenology +hep-ph/9211305 Phenomenology +hep-ph/9211309 Phenomenology +hep-ph/9211310 Phenomenology +hep-ph/9211314 Phenomenology +hep-ph/9211317 Phenomenology +hep-ph/9211318 Phenomenology +hep-ph/9211319 Phenomenology +hep-ph/9211321 Phenomenology +hep-ph/9211322 Phenomenology +hep-ph/9211331 Phenomenology +hep-ph/9211333 Phenomenology +hep-ph/9212205 Phenomenology +hep-ph/9212209 Phenomenology +hep-ph/9212211 Phenomenology +hep-ph/9212212 Phenomenology +hep-ph/9212214 Phenomenology +hep-ph/9212215 Phenomenology +hep-ph/9212220 Phenomenology +hep-ph/9212221 Phenomenology +hep-ph/9212224 Phenomenology +hep-ph/9212246 Phenomenology +hep-ph/9212252 Phenomenology +hep-ph/9212256 Phenomenology +hep-ph/9212266 Phenomenology +hep-ph/9212268 Phenomenology +hep-ph/9212271 Phenomenology +hep-ph/9212272 Phenomenology +hep-ph/9212275 Phenomenology +hep-ph/9212276 Phenomenology +hep-ph/9212277 Phenomenology +hep-ph/9212280 Phenomenology +hep-ph/9212287 Phenomenology +hep-ph/9212291 Phenomenology +hep-ph/9212296 Phenomenology +hep-ph/9212300 Phenomenology +hep-ph/9212301 Phenomenology +hep-ph/9212304 Phenomenology +hep-ph/9212305 Phenomenology +hep-ph/9212307 Phenomenology +hep-ph/9212310 Phenomenology +hep-ph/9212311 Phenomenology +hep-ph/9301201 Phenomenology +hep-ph/9301203 Phenomenology +hep-ph/9301215 Phenomenology +hep-ph/9301218 Phenomenology +hep-ph/9301219 Phenomenology +hep-ph/9301220 Phenomenology +hep-ph/9301221 Phenomenology +hep-ph/9301222 Phenomenology +hep-ph/9301226 Phenomenology +hep-ph/9301232 Phenomenology +hep-ph/9301233 Phenomenology +hep-ph/9301235 Phenomenology +hep-ph/9301236 Phenomenology +hep-ph/9301237 Phenomenology +hep-ph/9301238 Phenomenology +hep-ph/9301241 Phenomenology +hep-ph/9301242 Phenomenology +hep-ph/9301244 Phenomenology +hep-ph/9301245 Phenomenology +hep-ph/9301250 Phenomenology +hep-ph/9301252 Phenomenology +hep-ph/9301256 Phenomenology +hep-ph/9301258 Phenomenology +hep-ph/9301260 Phenomenology +hep-ph/9301261 Phenomenology +hep-ph/9301262 Phenomenology +hep-ph/9301264 Phenomenology +hep-ph/9301266 Phenomenology +hep-ph/9301267 Phenomenology +hep-ph/9301268 Phenomenology +hep-ph/9301270 Phenomenology +hep-ph/9301271 Phenomenology +hep-ph/9301275 Phenomenology +hep-ph/9301276 Phenomenology +hep-ph/9301277 Phenomenology +hep-ph/9301278 Phenomenology +hep-ph/9301283 Phenomenology +hep-ph/9301285 Phenomenology +hep-ph/9301286 Phenomenology +hep-ph/9301287 Phenomenology +hep-ph/9301288 Phenomenology +hep-ph/9301290 Phenomenology +hep-ph/9301294 Phenomenology +hep-ph/9302201 Phenomenology +hep-ph/9302202 Phenomenology +hep-ph/9302210 Phenomenology +hep-ph/9302211 Phenomenology +hep-ph/9302212 Phenomenology +hep-ph/9302214 Phenomenology +hep-ph/9302216 Phenomenology +hep-ph/9302217 Phenomenology +hep-ph/9302218 Phenomenology +hep-ph/9302219 Phenomenology +hep-ph/9302224 Phenomenology +hep-ph/9302228 Phenomenology +hep-ph/9302229 Phenomenology +hep-ph/9302232 Phenomenology +hep-ph/9302233 Phenomenology +hep-ph/9302235 Phenomenology +hep-ph/9302236 Phenomenology +hep-ph/9302237 Phenomenology +hep-ph/9302238 Phenomenology +hep-ph/9302239 Phenomenology +hep-ph/9302242 Phenomenology +hep-ph/9302245 Phenomenology +hep-ph/9302246 Phenomenology +hep-ph/9302250 Phenomenology +hep-ph/9302261 Phenomenology +hep-ph/9302265 Phenomenology +hep-ph/9302266 Phenomenology +hep-ph/9302269 Phenomenology +hep-ph/9302270 Phenomenology +hep-ph/9302275 Phenomenology +hep-ph/9302276 Phenomenology +hep-ph/9302277 Phenomenology +hep-ph/9302278 Phenomenology +hep-ph/9302279 Phenomenology +hep-ph/9302281 Phenomenology +hep-ph/9302283 Phenomenology +hep-ph/9302284 Phenomenology +hep-ph/9302286 Phenomenology +hep-ph/9302288 Phenomenology +hep-ph/9302290 Phenomenology +hep-ph/9302291 Phenomenology +hep-ph/9302293 Phenomenology +hep-ph/9302294 Phenomenology +hep-ph/9302301 Phenomenology +hep-ph/9302302 Phenomenology +hep-ph/9302303 Phenomenology +hep-ph/9302304 Phenomenology +hep-ph/9302309 Phenomenology +hep-ph/9302310 Phenomenology +hep-ph/9302312 Phenomenology +hep-ph/9302313 Phenomenology +hep-ph/9302321 Phenomenology +hep-ph/9303201 Phenomenology +hep-ph/9303207 Phenomenology +hep-ph/9303212 Phenomenology +hep-ph/9303213 Phenomenology +hep-ph/9303215 Phenomenology +hep-ph/9303217 Phenomenology +hep-ph/9303218 Phenomenology +hep-ph/9303221 Phenomenology +hep-ph/9303225 Phenomenology +hep-ph/9303229 Phenomenology +hep-ph/9303230 Phenomenology +hep-ph/9303234 Phenomenology +hep-ph/9303235 Phenomenology +hep-ph/9303236 Phenomenology +hep-ph/9303237 Phenomenology +hep-ph/9303238 Phenomenology +hep-ph/9303239 Phenomenology +hep-ph/9303242 Phenomenology +hep-ph/9303245 Phenomenology +hep-ph/9303248 Phenomenology +hep-ph/9303249 Phenomenology +hep-ph/9303250 Phenomenology +hep-ph/9303253 Phenomenology +hep-ph/9303255 Phenomenology +hep-ph/9303257 Phenomenology +hep-ph/9303269 Phenomenology +hep-ph/9303270 Phenomenology +hep-ph/9303272 Phenomenology +hep-ph/9303274 Phenomenology +hep-ph/9303276 Phenomenology +hep-ph/9303277 Phenomenology +hep-ph/9303280 Phenomenology +hep-ph/9303281 Phenomenology +hep-ph/9303283 Phenomenology +hep-ph/9303286 Phenomenology +hep-ph/9303288 Phenomenology +hep-ph/9303289 Phenomenology +hep-ph/9303295 Phenomenology +hep-ph/9303302 Phenomenology +hep-ph/9303309 Phenomenology +hep-ph/9303313 Phenomenology +hep-ph/9303314 Phenomenology +hep-ph/9303317 Phenomenology +hep-ph/9303319 Phenomenology +hep-ph/9303321 Phenomenology +hep-ph/9303322 Phenomenology +hep-ph/9303324 Phenomenology +hep-ph/9304202 Phenomenology +hep-ph/9304203 Phenomenology +hep-ph/9304205 Phenomenology +hep-ph/9304207 Phenomenology +hep-ph/9304208 Phenomenology +hep-ph/9304209 Phenomenology +hep-ph/9304210 Phenomenology +hep-ph/9304212 Phenomenology +hep-ph/9304214 Phenomenology +hep-ph/9304216 Phenomenology +hep-ph/9304217 Phenomenology +hep-ph/9304219 Phenomenology +hep-ph/9304222 Phenomenology +hep-ph/9304227 Phenomenology +hep-ph/9304228 Phenomenology +hep-ph/9304230 Phenomenology +hep-ph/9304233 Phenomenology +hep-ph/9304234 Phenomenology +hep-ph/9304238 Phenomenology +hep-ph/9304239 Phenomenology +hep-ph/9304240 Phenomenology +hep-ph/9304245 Phenomenology +hep-ph/9304248 Phenomenology +hep-ph/9304256 Phenomenology +hep-ph/9304257 Phenomenology +hep-ph/9304259 Phenomenology +hep-ph/9304261 Phenomenology +hep-ph/9304264 Phenomenology +hep-ph/9304266 Phenomenology +hep-ph/9304268 Phenomenology +hep-ph/9304269 Phenomenology +hep-ph/9304270 Phenomenology +hep-ph/9304273 Phenomenology +hep-ph/9304275 Phenomenology +hep-ph/9304278 Phenomenology +hep-ph/9304281 Phenomenology +hep-ph/9304288 Phenomenology +hep-ph/9304290 Phenomenology +hep-ph/9304296 Phenomenology +hep-ph/9304297 Phenomenology +hep-ph/9304298 Phenomenology +hep-ph/9304301 Phenomenology +hep-ph/9304302 Phenomenology +hep-ph/9304306 Phenomenology +hep-ph/9304309 Phenomenology +hep-ph/9304310 Phenomenology +hep-ph/9304313 Phenomenology +hep-ph/9304318 Phenomenology +hep-ph/9304319 Phenomenology +hep-ph/9304320 Phenomenology +hep-ph/9305201 Phenomenology +hep-ph/9305202 Phenomenology +hep-ph/9305204 Phenomenology +hep-ph/9305209 Phenomenology +hep-ph/9305210 Phenomenology +hep-ph/9305212 Phenomenology +hep-ph/9305219 Phenomenology +hep-ph/9305223 Phenomenology +hep-ph/9305224 Phenomenology +hep-ph/9305225 Phenomenology +hep-ph/9305226 Phenomenology +hep-ph/9305227 Phenomenology +hep-ph/9305228 Phenomenology +hep-ph/9305229 Phenomenology +hep-ph/9305230 Phenomenology +hep-ph/9305231 Phenomenology +hep-ph/9305233 Phenomenology +hep-ph/9305238 Phenomenology +hep-ph/9305239 Phenomenology +hep-ph/9305241 Phenomenology +hep-ph/9305245 Phenomenology +hep-ph/9305247 Phenomenology +hep-ph/9305251 Phenomenology +hep-ph/9305253 Phenomenology +hep-ph/9305257 Phenomenology +hep-ph/9305258 Phenomenology +hep-ph/9305259 Phenomenology +hep-ph/9305260 Phenomenology +hep-ph/9305265 Phenomenology +hep-ph/9305269 Phenomenology +hep-ph/9305276 Phenomenology +hep-ph/9305278 Phenomenology +hep-ph/9305282 Phenomenology +hep-ph/9305284 Phenomenology +hep-ph/9305287 Phenomenology +hep-ph/9305288 Phenomenology +hep-ph/9305293 Phenomenology +hep-ph/9305294 Phenomenology +hep-ph/9305297 Phenomenology +hep-ph/9305305 Phenomenology +hep-ph/9305310 Phenomenology +hep-ph/9305314 Phenomenology +hep-ph/9305319 Phenomenology +hep-ph/9305320 Phenomenology +hep-ph/9305321 Phenomenology +hep-ph/9305323 Phenomenology +hep-ph/9305327 Phenomenology +hep-ph/9305332 Phenomenology +hep-ph/9305337 Phenomenology +hep-ph/9305340 Phenomenology +hep-ph/9305341 Phenomenology +hep-ph/9305345 Phenomenology +hep-ph/9305346 Phenomenology +hep-ph/9305347 Phenomenology +hep-ph/9305348 Phenomenology +hep-ph/9305349 Phenomenology +hep-ph/9306203 Phenomenology +hep-ph/9306204 Phenomenology +hep-ph/9306205 Phenomenology +hep-ph/9306206 Phenomenology +hep-ph/9306208 Phenomenology +hep-ph/9306209 Phenomenology +hep-ph/9306210 Phenomenology +hep-ph/9306211 Phenomenology +hep-ph/9306214 Phenomenology +hep-ph/9306218 Phenomenology +hep-ph/9306219 Phenomenology +hep-ph/9306220 Phenomenology +hep-ph/9306222 Phenomenology +hep-ph/9306227 Phenomenology +hep-ph/9306229 Phenomenology +hep-ph/9306231 Phenomenology +hep-ph/9306232 Phenomenology +hep-ph/9306233 Phenomenology +hep-ph/9306236 Phenomenology +hep-ph/9306237 Phenomenology +hep-ph/9306238 Phenomenology +hep-ph/9306241 Phenomenology +hep-ph/9306244 Phenomenology +hep-ph/9306246 Phenomenology +hep-ph/9306252 Phenomenology +hep-ph/9306254 Phenomenology +hep-ph/9306255 Phenomenology +hep-ph/9306259 Phenomenology +hep-ph/9306260 Phenomenology +hep-ph/9306264 Phenomenology +hep-ph/9306271 Phenomenology +hep-ph/9306275 Phenomenology +hep-ph/9306284 Phenomenology +hep-ph/9306285 Phenomenology +hep-ph/9306289 Phenomenology +hep-ph/9306291 Phenomenology +hep-ph/9306294 Phenomenology +hep-ph/9306295 Phenomenology +hep-ph/9306296 Phenomenology +hep-ph/9306297 Phenomenology +hep-ph/9306298 Phenomenology +hep-ph/9306304 Phenomenology +hep-ph/9306306 Phenomenology +hep-ph/9306310 Phenomenology +hep-ph/9306313 Phenomenology +hep-ph/9306319 Phenomenology +hep-ph/9306321 Phenomenology +hep-ph/9306324 Phenomenology +hep-ph/9306325 Phenomenology +hep-ph/9306333 Phenomenology +hep-ph/9306334 Phenomenology +hep-ph/9307201 Phenomenology +hep-ph/9307204 Phenomenology +hep-ph/9307205 Phenomenology +hep-ph/9307206 Phenomenology +hep-ph/9307207 Phenomenology +hep-ph/9307209 Phenomenology +hep-ph/9307216 Phenomenology +hep-ph/9307217 Phenomenology +hep-ph/9307219 Phenomenology +hep-ph/9307220 Phenomenology +hep-ph/9307221 Phenomenology +hep-ph/9307222 Phenomenology +hep-ph/9307225 Phenomenology +hep-ph/9307226 Phenomenology +hep-ph/9307228 Phenomenology +hep-ph/9307229 Phenomenology +hep-ph/9307230 Phenomenology +hep-ph/9307233 Phenomenology +hep-ph/9307234 Phenomenology +hep-ph/9307235 Phenomenology +hep-ph/9307239 Phenomenology +hep-ph/9307241 Phenomenology +hep-ph/9307242 Phenomenology +hep-ph/9307248 Phenomenology +hep-ph/9307249 Phenomenology +hep-ph/9307250 Phenomenology +hep-ph/9307253 Phenomenology +hep-ph/9307254 Phenomenology +hep-ph/9307257 Phenomenology +hep-ph/9307258 Phenomenology +hep-ph/9307259 Phenomenology +hep-ph/9307260 Phenomenology +hep-ph/9307261 Phenomenology +hep-ph/9307262 Phenomenology +hep-ph/9307263 Phenomenology +hep-ph/9307265 Phenomenology +hep-ph/9307266 Phenomenology +hep-ph/9307268 Phenomenology +hep-ph/9307269 Phenomenology +hep-ph/9307274 Phenomenology +hep-ph/9307275 Phenomenology +hep-ph/9307285 Phenomenology +hep-ph/9307286 Phenomenology +hep-ph/9307290 Phenomenology +hep-ph/9307294 Phenomenology +hep-ph/9307295 Phenomenology +hep-ph/9307301 Phenomenology +hep-ph/9307304 Phenomenology +hep-ph/9307308 Phenomenology +hep-ph/9307310 Phenomenology +hep-ph/9307311 Phenomenology +hep-ph/9307312 Phenomenology +hep-ph/9307315 Phenomenology +hep-ph/9307316 Phenomenology +hep-ph/9307324 Phenomenology +hep-ph/9307328 Phenomenology +hep-ph/9307330 Phenomenology +hep-ph/9307334 Phenomenology +hep-ph/9307337 Phenomenology +hep-ph/9307339 Phenomenology +hep-ph/9307342 Phenomenology +hep-ph/9307345 Phenomenology +hep-ph/9307347 Phenomenology +hep-ph/9307348 Phenomenology +hep-ph/9307349 Phenomenology +hep-ph/9307352 Phenomenology +hep-ph/9307363 Phenomenology +hep-ph/9307365 Phenomenology +hep-ph/9307366 Phenomenology +hep-ph/9307368 Phenomenology +hep-ph/9307369 Phenomenology +hep-ph/9307370 Phenomenology +hep-ph/9307371 Phenomenology +hep-ph/9307372 Phenomenology +hep-ph/9307373 Phenomenology +hep-ph/9308201 Phenomenology +hep-ph/9308208 Phenomenology +hep-ph/9308211 Phenomenology +hep-ph/9308214 Phenomenology +hep-ph/9308215 Phenomenology +hep-ph/9308221 Phenomenology +hep-ph/9308222 Phenomenology +hep-ph/9308223 Phenomenology +hep-ph/9308229 Phenomenology +hep-ph/9308230 Phenomenology +hep-ph/9308231 Phenomenology +hep-ph/9308232 Phenomenology +hep-ph/9308236 Phenomenology +hep-ph/9308237 Phenomenology +hep-ph/9308242 Phenomenology +hep-ph/9308243 Phenomenology +hep-ph/9308248 Phenomenology +hep-ph/9308249 Phenomenology +hep-ph/9308254 Phenomenology +hep-ph/9308257 Phenomenology +hep-ph/9308259 Phenomenology +hep-ph/9308262 Phenomenology +hep-ph/9308263 Phenomenology +hep-ph/9308264 Phenomenology +hep-ph/9308265 Phenomenology +hep-ph/9308270 Phenomenology +hep-ph/9308274 Phenomenology +hep-ph/9308275 Phenomenology +hep-ph/9308276 Phenomenology +hep-ph/9308279 Phenomenology +hep-ph/9308283 Phenomenology +hep-ph/9308288 Phenomenology +hep-ph/9308290 Phenomenology +hep-ph/9308296 Phenomenology +hep-ph/9308298 Phenomenology +hep-ph/9308299 Phenomenology +hep-ph/9308304 Phenomenology +hep-ph/9308306 Phenomenology +hep-ph/9308307 Phenomenology +hep-ph/9308310 Phenomenology +hep-ph/9308312 Phenomenology +hep-ph/9308313 Phenomenology +hep-ph/9308317 Phenomenology +hep-ph/9308320 Phenomenology +hep-ph/9308330 Phenomenology +hep-ph/9308335 Phenomenology +hep-ph/9308336 Phenomenology +hep-ph/9308338 Phenomenology +hep-ph/9308339 Phenomenology +hep-ph/9308340 Phenomenology +hep-ph/9308341 Phenomenology +hep-ph/9308342 Phenomenology +hep-ph/9308349 Phenomenology +hep-ph/9308352 Phenomenology +hep-ph/9308353 Phenomenology +hep-ph/9308355 Phenomenology +hep-ph/9308359 Phenomenology +hep-ph/9308364 Phenomenology +hep-ph/9308365 Phenomenology +hep-ph/9308366 Phenomenology +hep-ph/9308367 Phenomenology +hep-ph/9308370 Phenomenology +hep-ph/9308374 Phenomenology +hep-ph/9309204 Phenomenology +hep-ph/9309205 Phenomenology +hep-ph/9309206 Phenomenology +hep-ph/9309210 Phenomenology +hep-ph/9309213 Phenomenology +hep-ph/9309215 Phenomenology +hep-ph/9309216 Phenomenology +hep-ph/9309217 Phenomenology +hep-ph/9309220 Phenomenology +hep-ph/9309224 Phenomenology +hep-ph/9309229 Phenomenology +hep-ph/9309231 Phenomenology +hep-ph/9309232 Phenomenology +hep-ph/9309234 Phenomenology +hep-ph/9309236 Phenomenology +hep-ph/9309237 Phenomenology +hep-ph/9309239 Phenomenology +hep-ph/9309241 Phenomenology +hep-ph/9309242 Phenomenology +hep-ph/9309246 Phenomenology +hep-ph/9309251 Phenomenology +hep-ph/9309261 Phenomenology +hep-ph/9309262 Phenomenology +hep-ph/9309264 Phenomenology +hep-ph/9309265 Phenomenology +hep-ph/9309269 Phenomenology +hep-ph/9309270 Phenomenology +hep-ph/9309278 Phenomenology +hep-ph/9309284 Phenomenology +hep-ph/9309285 Phenomenology +hep-ph/9309286 Phenomenology +hep-ph/9309292 Phenomenology +hep-ph/9309294 Phenomenology +hep-ph/9309295 Phenomenology +hep-ph/9309300 Phenomenology +hep-ph/9309306 Phenomenology +hep-ph/9309307 Phenomenology +hep-ph/9309312 Phenomenology +hep-ph/9309313 Phenomenology +hep-ph/9309314 Phenomenology +hep-ph/9309316 Phenomenology +hep-ph/9309320 Phenomenology +hep-ph/9309324 Phenomenology +hep-ph/9309331 Phenomenology +hep-ph/9309336 Phenomenology +hep-ph/9310204 Phenomenology +hep-ph/9310208 Phenomenology +hep-ph/9310209 Phenomenology +hep-ph/9310210 Phenomenology +hep-ph/9310211 Phenomenology +hep-ph/9310217 Phenomenology +hep-ph/9310219 Phenomenology +hep-ph/9310221 Phenomenology +hep-ph/9310227 Phenomenology +hep-ph/9310228 Phenomenology +hep-ph/9310231 Phenomenology +hep-ph/9310236 Phenomenology +hep-ph/9310241 Phenomenology +hep-ph/9310244 Phenomenology +hep-ph/9310250 Phenomenology +hep-ph/9310252 Phenomenology +hep-ph/9310261 Phenomenology +hep-ph/9310262 Phenomenology +hep-ph/9310263 Phenomenology +hep-ph/9310264 Phenomenology +hep-ph/9310268 Phenomenology +hep-ph/9310269 Phenomenology +hep-ph/9310270 Phenomenology +hep-ph/9310273 Phenomenology +hep-ph/9310278 Phenomenology +hep-ph/9310281 Phenomenology +hep-ph/9310284 Phenomenology +hep-ph/9310285 Phenomenology +hep-ph/9310288 Phenomenology +hep-ph/9310290 Phenomenology +hep-ph/9310298 Phenomenology +hep-ph/9310301 Phenomenology +hep-ph/9310302 Phenomenology +hep-ph/9310311 Phenomenology +hep-ph/9310316 Phenomenology +hep-ph/9310319 Phenomenology +hep-ph/9310321 Phenomenology +hep-ph/9310322 Phenomenology +hep-ph/9310324 Phenomenology +hep-ph/9310331 Phenomenology +hep-ph/9310332 Phenomenology +hep-ph/9310336 Phenomenology +hep-ph/9310338 Phenomenology +hep-ph/9310344 Phenomenology +hep-ph/9310352 Phenomenology +hep-ph/9310353 Phenomenology +hep-ph/9310358 Phenomenology +hep-ph/9310359 Phenomenology +hep-ph/9310369 Phenomenology +hep-ph/9310371 Phenomenology +hep-ph/9310373 Phenomenology +hep-ph/9310374 Phenomenology +hep-ph/9310375 Phenomenology +hep-ph/9310376 Phenomenology +hep-ph/9310378 Phenomenology +hep-ph/9311202 Phenomenology +hep-ph/9311203 Phenomenology +hep-ph/9311204 Phenomenology +hep-ph/9311205 Phenomenology +hep-ph/9311207 Phenomenology +hep-ph/9311210 Phenomenology +hep-ph/9311213 Phenomenology +hep-ph/9311215 Phenomenology +hep-ph/9311228 Phenomenology +hep-ph/9311229 Phenomenology +hep-ph/9311230 Phenomenology +hep-ph/9311232 Phenomenology +hep-ph/9311244 Phenomenology +hep-ph/9311250 Phenomenology +hep-ph/9311255 Phenomenology +hep-ph/9311257 Phenomenology +hep-ph/9311260 Phenomenology +hep-ph/9311261 Phenomenology +hep-ph/9311263 Phenomenology +hep-ph/9311264 Phenomenology +hep-ph/9311267 Phenomenology +hep-ph/9311274 Phenomenology +hep-ph/9311278 Phenomenology +hep-ph/9311279 Phenomenology +hep-ph/9311280 Phenomenology +hep-ph/9311282 Phenomenology +hep-ph/9311285 Phenomenology +hep-ph/9311288 Phenomenology +hep-ph/9311294 Phenomenology +hep-ph/9311296 Phenomenology +hep-ph/9311297 Phenomenology +hep-ph/9311298 Phenomenology +hep-ph/9311300 Phenomenology +hep-ph/9311301 Phenomenology +hep-ph/9311304 Phenomenology +hep-ph/9311306 Phenomenology +hep-ph/9311307 Phenomenology +hep-ph/9311308 Phenomenology +hep-ph/9311310 Phenomenology +hep-ph/9311316 Phenomenology +hep-ph/9311319 Phenomenology +hep-ph/9311327 Phenomenology +hep-ph/9311329 Phenomenology +hep-ph/9311336 Phenomenology +hep-ph/9311339 Phenomenology +hep-ph/9311346 Phenomenology +hep-ph/9311353 Phenomenology +hep-ph/9311356 Phenomenology +hep-ph/9311357 Phenomenology +hep-ph/9311361 Phenomenology +hep-ph/9311363 Phenomenology +hep-ph/9311365 Phenomenology +hep-ph/9311366 Phenomenology +hep-ph/9311367 Phenomenology +hep-ph/9311370 Phenomenology +hep-ph/9311374 Phenomenology +hep-ph/9311375 Phenomenology +hep-ph/9311377 Phenomenology +hep-ph/9311379 Phenomenology +hep-ph/9312204 Phenomenology +hep-ph/9312205 Phenomenology +hep-ph/9312207 Phenomenology +hep-ph/9312209 Phenomenology +hep-ph/9312212 Phenomenology +hep-ph/9312213 Phenomenology +hep-ph/9312214 Phenomenology +hep-ph/9312218 Phenomenology +hep-ph/9312219 Phenomenology +hep-ph/9312223 Phenomenology +hep-ph/9312225 Phenomenology +hep-ph/9312228 Phenomenology +hep-ph/9312230 Phenomenology +hep-ph/9312234 Phenomenology +hep-ph/9312235 Phenomenology +hep-ph/9312236 Phenomenology +hep-ph/9312237 Phenomenology +hep-ph/9312245 Phenomenology +hep-ph/9312253 Phenomenology +hep-ph/9312254 Phenomenology +hep-ph/9312261 Phenomenology +hep-ph/9312264 Phenomenology +hep-ph/9312265 Phenomenology +hep-ph/9312274 Phenomenology +hep-ph/9312276 Phenomenology +hep-ph/9312284 Phenomenology +hep-ph/9312286 Phenomenology +hep-ph/9312289 Phenomenology +hep-ph/9312291 Phenomenology +hep-ph/9312294 Phenomenology +hep-ph/9312295 Phenomenology +hep-ph/9312300 Phenomenology +hep-ph/9312303 Phenomenology +hep-ph/9312305 Phenomenology +hep-ph/9312308 Phenomenology +hep-ph/9312316 Phenomenology +hep-ph/9312320 Phenomenology +hep-ph/9312323 Phenomenology +hep-ph/9312325 Phenomenology +hep-ph/9312328 Phenomenology +hep-ph/9312331 Phenomenology +hep-ph/9312334 Phenomenology +hep-ph/9312336 Phenomenology +hep-ph/9312339 Phenomenology +hep-ph/9312344 Phenomenology +hep-ph/9312346 Phenomenology +hep-ph/9312349 Phenomenology +hep-ph/9312350 Phenomenology +hep-ph/9312355 Phenomenology +hep-ph/9312357 Phenomenology +hep-ph/9312358 Phenomenology +hep-ph/9312359 Phenomenology +hep-ph/9312360 Phenomenology +hep-ph/9312361 Phenomenology +hep-ph/9312362 Phenomenology +hep-th/9108001 Theory +hep-th/9108009 Theory +hep-th/9108013 Theory +hep-th/9108015 Theory +hep-th/9108016 Theory +hep-th/9108017 Theory +hep-th/9108018 Theory +hep-th/9108021 Theory +hep-th/9108025 Theory +hep-th/9108027 Theory +hep-th/9109001 Theory +hep-th/9109004 Theory +hep-th/9109005 Theory +hep-th/9109008 Theory +hep-th/9109010 Theory +hep-th/9109011 Theory +hep-th/9109012 Theory +hep-th/9109015 Theory +hep-th/9109016 Theory +hep-th/9109017 Theory +hep-th/9109018 Theory +hep-th/9109021 Theory +hep-th/9109024 Theory +hep-th/9109025 Theory +hep-th/9109037 Theory +hep-th/9109039 Theory +hep-th/9109041 Theory +hep-th/9109042 Theory +hep-th/9109047 Theory +hep-th/9109049 Theory +hep-th/9109056 Theory +hep-th/9110002 Theory +hep-th/9110006 Theory +hep-th/9110010 Theory +hep-th/9110013 Theory +hep-th/9110016 Theory +hep-th/9110017 Theory +hep-th/9110018 Theory +hep-th/9110019 Theory +hep-th/9110020 Theory +hep-th/9110022 Theory +hep-th/9110023 Theory +hep-th/9110024 Theory +hep-th/9110025 Theory +hep-th/9110026 Theory +hep-th/9110027 Theory +hep-th/9110028 Theory +hep-th/9110029 Theory +hep-th/9110031 Theory +hep-th/9110032 Theory +hep-th/9110039 Theory +hep-th/9110040 Theory +hep-th/9110047 Theory +hep-th/9110052 Theory +hep-th/9110053 Theory +hep-th/9110054 Theory +hep-th/9110055 Theory +hep-th/9110063 Theory +hep-th/9110064 Theory +hep-th/9110065 Theory +hep-th/9110066 Theory +hep-th/9110067 Theory +hep-th/9110068 Theory +hep-th/9110069 Theory +hep-th/9110070 Theory +hep-th/9110071 Theory +hep-th/9110073 Theory +hep-th/9110074 Theory +hep-th/9110075 Theory +hep-th/9111001 Theory +hep-th/9111007 Theory +hep-th/9111008 Theory +hep-th/9111009 Theory +hep-th/9111011 Theory +hep-th/9111012 Theory +hep-th/9111014 Theory +hep-th/9111015 Theory +hep-th/9111016 Theory +hep-th/9111020 Theory +hep-th/9111021 Theory +hep-th/9111026 Theory +hep-th/9111028 Theory +hep-th/9111029 Theory +hep-th/9111032 Theory +hep-th/9111037 Theory +hep-th/9111040 Theory +hep-th/9111043 Theory +hep-th/9111044 Theory +hep-th/9111045 Theory +hep-th/9111047 Theory +hep-th/9111050 Theory +hep-th/9111053 Theory +hep-th/9111055 Theory +hep-th/9111058 Theory +hep-th/9111059 Theory +hep-th/9111060 Theory +hep-th/9111062 Theory +hep-th/9111063 Theory +hep-th/9112001 Theory +hep-th/9112006 Theory +hep-th/9112007 Theory +hep-th/9112008 Theory +hep-th/9112009 Theory +hep-th/9112011 Theory +hep-th/9112015 Theory +hep-th/9112022 Theory +hep-th/9112023 Theory +hep-th/9112024 Theory +hep-th/9112027 Theory +hep-th/9112028 Theory +hep-th/9112029 Theory +hep-th/9112031 Theory +hep-th/9112032 Theory +hep-th/9112034 Theory +hep-th/9112035 Theory +hep-th/9112037 Theory +hep-th/9112038 Theory +hep-th/9112039 Theory +hep-th/9112040 Theory +hep-th/9112042 Theory +hep-th/9112044 Theory +hep-th/9112046 Theory +hep-th/9112047 Theory +hep-th/9112049 Theory +hep-th/9112051 Theory +hep-th/9112052 Theory +hep-th/9112054 Theory +hep-th/9112057 Theory +hep-th/9112059 Theory +hep-th/9112060 Theory +hep-th/9112061 Theory +hep-th/9112063 Theory +hep-th/9112066 Theory +hep-th/9112067 Theory +hep-th/9112069 Theory +hep-th/9112070 Theory +hep-th/9201002 Theory +hep-th/9201004 Theory +hep-th/9201005 Theory +hep-th/9201008 Theory +hep-th/9201011 Theory +hep-th/9201014 Theory +hep-th/9201015 Theory +hep-th/9201016 Theory +hep-th/9201023 Theory +hep-th/9201024 Theory +hep-th/9201025 Theory +hep-th/9201026 Theory +hep-th/9201027 Theory +hep-th/9201028 Theory +hep-th/9201029 Theory +hep-th/9201031 Theory +hep-th/9201035 Theory +hep-th/9201036 Theory +hep-th/9201037 Theory +hep-th/9201038 Theory +hep-th/9201039 Theory +hep-th/9201042 Theory +hep-th/9201045 Theory +hep-th/9201049 Theory +hep-th/9201052 Theory +hep-th/9201053 Theory +hep-th/9201058 Theory +hep-th/9201061 Theory +hep-th/9201063 Theory +hep-th/9201065 Theory +hep-th/9201067 Theory +hep-th/9201070 Theory +hep-th/9201075 Theory +hep-th/9201076 Theory +hep-th/9201077 Theory +hep-th/9201079 Theory +hep-th/9201080 Theory +hep-th/9202003 Theory +hep-th/9202005 Theory +hep-th/9202006 Theory +hep-th/9202007 Theory +hep-th/9202008 Theory +hep-th/9202011 Theory +hep-th/9202012 Theory +hep-th/9202014 Theory +hep-th/9202019 Theory +hep-th/9202020 Theory +hep-th/9202021 Theory +hep-th/9202023 Theory +hep-th/9202024 Theory +hep-th/9202034 Theory +hep-th/9202035 Theory +hep-th/9202038 Theory +hep-th/9202040 Theory +hep-th/9202042 Theory +hep-th/9202043 Theory +hep-th/9202045 Theory +hep-th/9202047 Theory +hep-th/9202056 Theory +hep-th/9202057 Theory +hep-th/9202058 Theory +hep-th/9202061 Theory +hep-th/9202065 Theory +hep-th/9202070 Theory +hep-th/9202072 Theory +hep-th/9202073 Theory +hep-th/9202080 Theory +hep-th/9202081 Theory +hep-th/9202085 Theory +hep-th/9202090 Theory +hep-th/9203001 Theory +hep-th/9203003 Theory +hep-th/9203004 Theory +hep-th/9203007 Theory +hep-th/9203009 Theory +hep-th/9203013 Theory +hep-th/9203014 Theory +hep-th/9203016 Theory +hep-th/9203018 Theory +hep-th/9203021 Theory +hep-th/9203022 Theory +hep-th/9203025 Theory +hep-th/9203026 Theory +hep-th/9203029 Theory +hep-th/9203030 Theory +hep-th/9203031 Theory +hep-th/9203034 Theory +hep-th/9203035 Theory +hep-th/9203037 Theory +hep-th/9203038 Theory +hep-th/9203039 Theory +hep-th/9203043 Theory +hep-th/9203044 Theory +hep-th/9203045 Theory +hep-th/9203046 Theory +hep-th/9203048 Theory +hep-th/9203051 Theory +hep-th/9203056 Theory +hep-th/9203058 Theory +hep-th/9203059 Theory +hep-th/9203063 Theory +hep-th/9203065 Theory +hep-th/9203067 Theory +hep-th/9203068 Theory +hep-th/9203074 Theory +hep-th/9203077 Theory +hep-th/9204001 Theory +hep-th/9204002 Theory +hep-th/9204003 Theory +hep-th/9204005 Theory +hep-th/9204007 Theory +hep-th/9204008 Theory +hep-th/9204010 Theory +hep-th/9204011 Theory +hep-th/9204013 Theory +hep-th/9204015 Theory +hep-th/9204017 Theory +hep-th/9204018 Theory +hep-th/9204019 Theory +hep-th/9204020 Theory +hep-th/9204023 Theory +hep-th/9204024 Theory +hep-th/9204025 Theory +hep-th/9204026 Theory +hep-th/9204027 Theory +hep-th/9204029 Theory +hep-th/9204030 Theory +hep-th/9204032 Theory +hep-th/9204036 Theory +hep-th/9204041 Theory +hep-th/9204042 Theory +hep-th/9204045 Theory +hep-th/9204048 Theory +hep-th/9204050 Theory +hep-th/9204051 Theory +hep-th/9204052 Theory +hep-th/9204054 Theory +hep-th/9204055 Theory +hep-th/9204056 Theory +hep-th/9204057 Theory +hep-th/9204059 Theory +hep-th/9204060 Theory +hep-th/9204062 Theory +hep-th/9204067 Theory +hep-th/9204068 Theory +hep-th/9204070 Theory +hep-th/9204074 Theory +hep-th/9204079 Theory +hep-th/9204080 Theory +hep-th/9204081 Theory +hep-th/9204082 Theory +hep-th/9204085 Theory +hep-th/9204086 Theory +hep-th/9204088 Theory +hep-th/9204094 Theory +hep-th/9204097 Theory +hep-th/9204098 Theory +hep-th/9204099 Theory +hep-th/9204100 Theory +hep-th/9204101 Theory +hep-th/9205003 Theory +hep-th/9205004 Theory +hep-th/9205005 Theory +hep-th/9205006 Theory +hep-th/9205008 Theory +hep-th/9205011 Theory +hep-th/9205012 Theory +hep-th/9205013 Theory +hep-th/9205015 Theory +hep-th/9205016 Theory +hep-th/9205018 Theory +hep-th/9205021 Theory +hep-th/9205024 Theory +hep-th/9205025 Theory +hep-th/9205026 Theory +hep-th/9205030 Theory +hep-th/9205031 Theory +hep-th/9205032 Theory +hep-th/9205034 Theory +hep-th/9205035 Theory +hep-th/9205037 Theory +hep-th/9205042 Theory +hep-th/9205044 Theory +hep-th/9205045 Theory +hep-th/9205047 Theory +hep-th/9205051 Theory +hep-th/9205052 Theory +hep-th/9205062 Theory +hep-th/9205066 Theory +hep-th/9205069 Theory +hep-th/9205072 Theory +hep-th/9205081 Theory +hep-th/9205082 Theory +hep-th/9205084 Theory +hep-th/9205085 Theory +hep-th/9205086 Theory +hep-th/9205087 Theory +hep-th/9205088 Theory +hep-th/9205089 Theory +hep-th/9205091 Theory +hep-th/9205092 Theory +hep-th/9205093 Theory +hep-th/9205095 Theory +hep-th/9205096 Theory +hep-th/9205100 Theory +hep-th/9205103 Theory +hep-th/9205106 Theory +hep-th/9205109 Theory +hep-th/9205115 Theory +hep-th/9206005 Theory +hep-th/9206008 Theory +hep-th/9206009 Theory +hep-th/9206010 Theory +hep-th/9206011 Theory +hep-th/9206013 Theory +hep-th/9206015 Theory +hep-th/9206018 Theory +hep-th/9206019 Theory +hep-th/9206020 Theory +hep-th/9206022 Theory +hep-th/9206023 Theory +hep-th/9206024 Theory +hep-th/9206025 Theory +hep-th/9206027 Theory +hep-th/9206029 Theory +hep-th/9206033 Theory +hep-th/9206035 Theory +hep-th/9206036 Theory +hep-th/9206037 Theory +hep-th/9206038 Theory +hep-th/9206040 Theory +hep-th/9206042 Theory +hep-th/9206044 Theory +hep-th/9206046 Theory +hep-th/9206048 Theory +hep-th/9206049 Theory +hep-th/9206050 Theory +hep-th/9206051 Theory +hep-th/9206054 Theory +hep-th/9206055 Theory +hep-th/9206056 Theory +hep-th/9206057 Theory +hep-th/9206060 Theory +hep-th/9206062 Theory +hep-th/9206066 Theory +hep-th/9206072 Theory +hep-th/9206076 Theory +hep-th/9206079 Theory +hep-th/9206080 Theory +hep-th/9206081 Theory +hep-th/9206083 Theory +hep-th/9206087 Theory +hep-th/9206088 Theory +hep-th/9206091 Theory +hep-th/9206092 Theory +hep-th/9206093 Theory +hep-th/9206095 Theory +hep-th/9206096 Theory +hep-th/9206097 Theory +hep-th/9206098 Theory +hep-th/9206099 Theory +hep-th/9206100 Theory +hep-th/9206101 Theory +hep-th/9206102 Theory +hep-th/9206105 Theory +hep-th/9206106 Theory +hep-th/9206107 Theory +hep-th/9206109 Theory +hep-th/9206110 Theory +hep-th/9206112 Theory +hep-th/9206113 Theory +hep-th/9206114 Theory +hep-th/9207001 Theory +hep-th/9207009 Theory +hep-th/9207010 Theory +hep-th/9207012 Theory +hep-th/9207013 Theory +hep-th/9207014 Theory +hep-th/9207018 Theory +hep-th/9207019 Theory +hep-th/9207021 Theory +hep-th/9207027 Theory +hep-th/9207028 Theory +hep-th/9207032 Theory +hep-th/9207033 Theory +hep-th/9207036 Theory +hep-th/9207038 Theory +hep-th/9207039 Theory +hep-th/9207040 Theory +hep-th/9207041 Theory +hep-th/9207047 Theory +hep-th/9207048 Theory +hep-th/9207049 Theory +hep-th/9207051 Theory +hep-th/9207054 Theory +hep-th/9207055 Theory +hep-th/9207057 Theory +hep-th/9207058 Theory +hep-th/9207059 Theory +hep-th/9207065 Theory +hep-th/9207067 Theory +hep-th/9207068 Theory +hep-th/9207069 Theory +hep-th/9207070 Theory +hep-th/9207073 Theory +hep-th/9207074 Theory +hep-th/9207075 Theory +hep-th/9207076 Theory +hep-th/9207080 Theory +hep-th/9207082 Theory +hep-th/9207083 Theory +hep-th/9207084 Theory +hep-th/9207085 Theory +hep-th/9207086 Theory +hep-th/9207087 Theory +hep-th/9207089 Theory +hep-th/9207091 Theory +hep-th/9207092 Theory +hep-th/9207093 Theory +hep-th/9207096 Theory +hep-th/9207097 Theory +hep-th/9207098 Theory +hep-th/9207099 Theory +hep-th/9207101 Theory +hep-th/9207102 Theory +hep-th/9207107 Theory +hep-th/9207108 Theory +hep-th/9207109 Theory +hep-th/9207110 Theory +hep-th/9207112 Theory +hep-th/9207113 Theory +hep-th/9207114 Theory +hep-th/9207117 Theory +hep-th/9208001 Theory +hep-th/9208002 Theory +hep-th/9208003 Theory +hep-th/9208006 Theory +hep-th/9208007 Theory +hep-th/9208008 Theory +hep-th/9208010 Theory +hep-th/9208011 Theory +hep-th/9208012 Theory +hep-th/9208013 Theory +hep-th/9208015 Theory +hep-th/9208016 Theory +hep-th/9208017 Theory +hep-th/9208019 Theory +hep-th/9208020 Theory +hep-th/9208023 Theory +hep-th/9208024 Theory +hep-th/9208025 Theory +hep-th/9208026 Theory +hep-th/9208030 Theory +hep-th/9208032 Theory +hep-th/9208033 Theory +hep-th/9208035 Theory +hep-th/9208036 Theory +hep-th/9208037 Theory +hep-th/9208039 Theory +hep-th/9208042 Theory +hep-th/9208047 Theory +hep-th/9208048 Theory +hep-th/9208052 Theory +hep-th/9208054 Theory +hep-th/9208057 Theory +hep-th/9208058 Theory +hep-th/9208059 Theory +hep-th/9208060 Theory +hep-th/9208062 Theory +hep-th/9208063 Theory +hep-th/9208064 Theory +hep-th/9208067 Theory +hep-th/9208068 Theory +hep-th/9208069 Theory +hep-th/9208070 Theory +hep-th/9208071 Theory +hep-th/9208072 Theory +hep-th/9208077 Theory +hep-th/9208079 Theory +hep-th/9208081 Theory +hep-th/9209001 Theory +hep-th/9209002 Theory +hep-th/9209003 Theory +hep-th/9209004 Theory +hep-th/9209005 Theory +hep-th/9209006 Theory +hep-th/9209007 Theory +hep-th/9209011 Theory +hep-th/9209015 Theory +hep-th/9209020 Theory +hep-th/9209022 Theory +hep-th/9209024 Theory +hep-th/9209026 Theory +hep-th/9209028 Theory +hep-th/9209031 Theory +hep-th/9209032 Theory +hep-th/9209033 Theory +hep-th/9209036 Theory +hep-th/9209037 Theory +hep-th/9209038 Theory +hep-th/9209039 Theory +hep-th/9209041 Theory +hep-th/9209042 Theory +hep-th/9209043 Theory +hep-th/9209045 Theory +hep-th/9209047 Theory +hep-th/9209052 Theory +hep-th/9209053 Theory +hep-th/9209060 Theory +hep-th/9209062 Theory +hep-th/9209063 Theory +hep-th/9209065 Theory +hep-th/9209069 Theory +hep-th/9209070 Theory +hep-th/9209072 Theory +hep-th/9209074 Theory +hep-th/9209076 Theory +hep-th/9209077 Theory +hep-th/9209078 Theory +hep-th/9209083 Theory +hep-th/9209085 Theory +hep-th/9209094 Theory +hep-th/9209099 Theory +hep-th/9209100 Theory +hep-th/9209102 Theory +hep-th/9209104 Theory +hep-th/9209105 Theory +hep-th/9209110 Theory +hep-th/9209112 Theory +hep-th/9209118 Theory +hep-th/9209119 Theory +hep-th/9209120 Theory +hep-th/9209129 Theory +hep-th/9209130 Theory +hep-th/9210002 Theory +hep-th/9210003 Theory +hep-th/9210006 Theory +hep-th/9210007 Theory +hep-th/9210008 Theory +hep-th/9210009 Theory +hep-th/9210010 Theory +hep-th/9210011 Theory +hep-th/9210012 Theory +hep-th/9210021 Theory +hep-th/9210022 Theory +hep-th/9210031 Theory +hep-th/9210033 Theory +hep-th/9210035 Theory +hep-th/9210036 Theory +hep-th/9210037 Theory +hep-th/9210038 Theory +hep-th/9210039 Theory +hep-th/9210042 Theory +hep-th/9210047 Theory +hep-th/9210049 Theory +hep-th/9210052 Theory +hep-th/9210055 Theory +hep-th/9210063 Theory +hep-th/9210067 Theory +hep-th/9210068 Theory +hep-th/9210071 Theory +hep-th/9210075 Theory +hep-th/9210076 Theory +hep-th/9210077 Theory +hep-th/9210081 Theory +hep-th/9210083 Theory +hep-th/9210089 Theory +hep-th/9210090 Theory +hep-th/9210093 Theory +hep-th/9210094 Theory +hep-th/9210096 Theory +hep-th/9210099 Theory +hep-th/9210103 Theory +hep-th/9210104 Theory +hep-th/9210106 Theory +hep-th/9210107 Theory +hep-th/9210109 Theory +hep-th/9210112 Theory +hep-th/9210116 Theory +hep-th/9210117 Theory +hep-th/9210118 Theory +hep-th/9210120 Theory +hep-th/9210124 Theory +hep-th/9210125 Theory +hep-th/9210126 Theory +hep-th/9210128 Theory +hep-th/9210129 Theory +hep-th/9210131 Theory +hep-th/9210133 Theory +hep-th/9210134 Theory +hep-th/9210135 Theory +hep-th/9210139 Theory +hep-th/9210140 Theory +hep-th/9210141 Theory +hep-th/9210142 Theory +hep-th/9210146 Theory +hep-th/9210147 Theory +hep-th/9210149 Theory +hep-th/9210150 Theory +hep-th/9210152 Theory +hep-th/9210153 Theory +hep-th/9210154 Theory +hep-th/9210157 Theory +hep-th/9210158 Theory +hep-th/9210159 Theory +hep-th/9210164 Theory +hep-th/9211002 Theory +hep-th/9211004 Theory +hep-th/9211005 Theory +hep-th/9211006 Theory +hep-th/9211007 Theory +hep-th/9211009 Theory +hep-th/9211012 Theory +hep-th/9211013 Theory +hep-th/9211020 Theory +hep-th/9211026 Theory +hep-th/9211029 Theory +hep-th/9211031 Theory +hep-th/9211032 Theory +hep-th/9211034 Theory +hep-th/9211035 Theory +hep-th/9211036 Theory +hep-th/9211037 Theory +hep-th/9211040 Theory +hep-th/9211041 Theory +hep-th/9211042 Theory +hep-th/9211044 Theory +hep-th/9211047 Theory +hep-th/9211048 Theory +hep-th/9211049 Theory +hep-th/9211050 Theory +hep-th/9211052 Theory +hep-th/9211053 Theory +hep-th/9211057 Theory +hep-th/9211063 Theory +hep-th/9211064 Theory +hep-th/9211065 Theory +hep-th/9211066 Theory +hep-th/9211071 Theory +hep-th/9211072 Theory +hep-th/9211073 Theory +hep-th/9211080 Theory +hep-th/9211083 Theory +hep-th/9211088 Theory +hep-th/9211095 Theory +hep-th/9211097 Theory +hep-th/9211102 Theory +hep-th/9211107 Theory +hep-th/9211108 Theory +hep-th/9211109 Theory +hep-th/9211114 Theory +hep-th/9211115 Theory +hep-th/9211118 Theory +hep-th/9211119 Theory +hep-th/9211122 Theory +hep-th/9211124 Theory +hep-th/9211126 Theory +hep-th/9211127 Theory +hep-th/9211130 Theory +hep-th/9211132 Theory +hep-th/9211135 Theory +hep-th/9211138 Theory +hep-th/9211139 Theory +hep-th/9212001 Theory +hep-th/9212005 Theory +hep-th/9212009 Theory +hep-th/9212011 Theory +hep-th/9212014 Theory +hep-th/9212018 Theory +hep-th/9212019 Theory +hep-th/9212022 Theory +hep-th/9212023 Theory +hep-th/9212026 Theory +hep-th/9212029 Theory +hep-th/9212031 Theory +hep-th/9212035 Theory +hep-th/9212036 Theory +hep-th/9212037 Theory +hep-th/9212038 Theory +hep-th/9212042 Theory +hep-th/9212047 Theory +hep-th/9212051 Theory +hep-th/9212052 Theory +hep-th/9212056 Theory +hep-th/9212059 Theory +hep-th/9212063 Theory +hep-th/9212065 Theory +hep-th/9212066 Theory +hep-th/9212067 Theory +hep-th/9212068 Theory +hep-th/9212069 Theory +hep-th/9212074 Theory +hep-th/9212075 Theory +hep-th/9212078 Theory +hep-th/9212083 Theory +hep-th/9212085 Theory +hep-th/9212086 Theory +hep-th/9212090 Theory +hep-th/9212099 Theory +hep-th/9212100 Theory +hep-th/9212104 Theory +hep-th/9212105 Theory +hep-th/9212106 Theory +hep-th/9212110 Theory +hep-th/9212111 Theory +hep-th/9212112 Theory +hep-th/9212123 Theory +hep-th/9212125 Theory +hep-th/9212126 Theory +hep-th/9212128 Theory +hep-th/9212134 Theory +hep-th/9212135 Theory +hep-th/9212137 Theory +hep-th/9212145 Theory +hep-th/9212146 Theory +hep-th/9212147 Theory +hep-th/9212149 Theory +hep-th/9212154 Theory +hep-th/9212155 Theory +hep-th/9212157 Theory +hep-th/9212158 Theory +hep-th/9301002 Theory +hep-th/9301003 Theory +hep-th/9301007 Theory +hep-th/9301008 Theory +hep-th/9301011 Theory +hep-th/9301013 Theory +hep-th/9301014 Theory +hep-th/9301016 Theory +hep-th/9301018 Theory +hep-th/9301019 Theory +hep-th/9301021 Theory +hep-th/9301024 Theory +hep-th/9301026 Theory +hep-th/9301029 Theory +hep-th/9301030 Theory +hep-th/9301032 Theory +hep-th/9301034 Theory +hep-th/9301035 Theory +hep-th/9301038 Theory +hep-th/9301040 Theory +hep-th/9301041 Theory +hep-th/9301043 Theory +hep-th/9301045 Theory +hep-th/9301046 Theory +hep-th/9301056 Theory +hep-th/9301058 Theory +hep-th/9301059 Theory +hep-th/9301064 Theory +hep-th/9301067 Theory +hep-th/9301069 Theory +hep-th/9301070 Theory +hep-th/9301075 Theory +hep-th/9301077 Theory +hep-th/9301078 Theory +hep-th/9301079 Theory +hep-th/9301081 Theory +hep-th/9301083 Theory +hep-th/9301087 Theory +hep-th/9301090 Theory +hep-th/9301091 Theory +hep-th/9301092 Theory +hep-th/9301093 Theory +hep-th/9301095 Theory +hep-th/9301096 Theory +hep-th/9301097 Theory +hep-th/9301098 Theory +hep-th/9301102 Theory +hep-th/9301103 Theory +hep-th/9301105 Theory +hep-th/9301108 Theory +hep-th/9301110 Theory +hep-th/9301111 Theory +hep-th/9301113 Theory +hep-th/9301114 Theory +hep-th/9301115 Theory +hep-th/9301117 Theory +hep-th/9301119 Theory +hep-th/9301122 Theory +hep-th/9301125 Theory +hep-th/9301131 Theory +hep-th/9301132 Theory +hep-th/9302001 Theory +hep-th/9302003 Theory +hep-th/9302004 Theory +hep-th/9302005 Theory +hep-th/9302009 Theory +hep-th/9302012 Theory +hep-th/9302014 Theory +hep-th/9302017 Theory +hep-th/9302018 Theory +hep-th/9302020 Theory +hep-th/9302021 Theory +hep-th/9302022 Theory +hep-th/9302023 Theory +hep-th/9302025 Theory +hep-th/9302026 Theory +hep-th/9302032 Theory +hep-th/9302033 Theory +hep-th/9302036 Theory +hep-th/9302037 Theory +hep-th/9302039 Theory +hep-th/9302040 Theory +hep-th/9302041 Theory +hep-th/9302042 Theory +hep-th/9302043 Theory +hep-th/9302044 Theory +hep-th/9302048 Theory +hep-th/9302049 Theory +hep-th/9302050 Theory +hep-th/9302054 Theory +hep-th/9302056 Theory +hep-th/9302057 Theory +hep-th/9302060 Theory +hep-th/9302063 Theory +hep-th/9302064 Theory +hep-th/9302066 Theory +hep-th/9302068 Theory +hep-th/9302069 Theory +hep-th/9302070 Theory +hep-th/9302071 Theory +hep-th/9302072 Theory +hep-th/9302076 Theory +hep-th/9302077 Theory +hep-th/9302078 Theory +hep-th/9302082 Theory +hep-th/9302084 Theory +hep-th/9302085 Theory +hep-th/9302088 Theory +hep-th/9302089 Theory +hep-th/9302090 Theory +hep-th/9302093 Theory +hep-th/9302094 Theory +hep-th/9302095 Theory +hep-th/9302105 Theory +hep-th/9302109 Theory +hep-th/9302111 Theory +hep-th/9302115 Theory +hep-th/9302116 Theory +hep-th/9302117 Theory +hep-th/9302119 Theory +hep-th/9302122 Theory +hep-th/9302123 Theory +hep-th/9302124 Theory +hep-th/9302132 Theory +hep-th/9302133 Theory +hep-th/9302134 Theory +hep-th/9302136 Theory +hep-th/9302138 Theory +hep-th/9302139 Theory +hep-th/9302140 Theory +hep-th/9302144 Theory +hep-th/9303001 Theory +hep-th/9303002 Theory +hep-th/9303005 Theory +hep-th/9303006 Theory +hep-th/9303008 Theory +hep-th/9303011 Theory +hep-th/9303012 Theory +hep-th/9303015 Theory +hep-th/9303016 Theory +hep-th/9303018 Theory +hep-th/9303019 Theory +hep-th/9303020 Theory +hep-th/9303021 Theory +hep-th/9303023 Theory +hep-th/9303024 Theory +hep-th/9303026 Theory +hep-th/9303027 Theory +hep-th/9303029 Theory +hep-th/9303031 Theory +hep-th/9303033 Theory +hep-th/9303034 Theory +hep-th/9303038 Theory +hep-th/9303041 Theory +hep-th/9303042 Theory +hep-th/9303043 Theory +hep-th/9303044 Theory +hep-th/9303045 Theory +hep-th/9303047 Theory +hep-th/9303048 Theory +hep-th/9303051 Theory +hep-th/9303055 Theory +hep-th/9303059 Theory +hep-th/9303064 Theory +hep-th/9303065 Theory +hep-th/9303069 Theory +hep-th/9303070 Theory +hep-th/9303071 Theory +hep-th/9303073 Theory +hep-th/9303074 Theory +hep-th/9303080 Theory +hep-th/9303084 Theory +hep-th/9303085 Theory +hep-th/9303087 Theory +hep-th/9303089 Theory +hep-th/9303090 Theory +hep-th/9303091 Theory +hep-th/9303093 Theory +hep-th/9303095 Theory +hep-th/9303096 Theory +hep-th/9303102 Theory +hep-th/9303103 Theory +hep-th/9303105 Theory +hep-th/9303106 Theory +hep-th/9303108 Theory +hep-th/9303109 Theory +hep-th/9303110 Theory +hep-th/9303111 Theory +hep-th/9303113 Theory +hep-th/9303114 Theory +hep-th/9303115 Theory +hep-th/9303117 Theory +hep-th/9303121 Theory +hep-th/9303122 Theory +hep-th/9303123 Theory +hep-th/9303128 Theory +hep-th/9303131 Theory +hep-th/9303132 Theory +hep-th/9303133 Theory +hep-th/9303140 Theory +hep-th/9303141 Theory +hep-th/9303145 Theory +hep-th/9303146 Theory +hep-th/9303148 Theory +hep-th/9303149 Theory +hep-th/9303150 Theory +hep-th/9303153 Theory +hep-th/9303155 Theory +hep-th/9303156 Theory +hep-th/9303160 Theory +hep-th/9303161 Theory +hep-th/9303163 Theory +hep-th/9303166 Theory +hep-th/9303170 Theory +hep-th/9303171 Theory +hep-th/9303172 Theory +hep-th/9303177 Theory +hep-th/9303178 Theory +hep-th/9304002 Theory +hep-th/9304003 Theory +hep-th/9304005 Theory +hep-th/9304006 Theory +hep-th/9304009 Theory +hep-th/9304013 Theory +hep-th/9304015 Theory +hep-th/9304016 Theory +hep-th/9304017 Theory +hep-th/9304019 Theory +hep-th/9304020 Theory +hep-th/9304021 Theory +hep-th/9304022 Theory +hep-th/9304023 Theory +hep-th/9304024 Theory +hep-th/9304025 Theory +hep-th/9304028 Theory +hep-th/9304029 Theory +hep-th/9304031 Theory +hep-th/9304033 Theory +hep-th/9304039 Theory +hep-th/9304043 Theory +hep-th/9304045 Theory +hep-th/9304046 Theory +hep-th/9304047 Theory +hep-th/9304052 Theory +hep-th/9304053 Theory +hep-th/9304055 Theory +hep-th/9304057 Theory +hep-th/9304060 Theory +hep-th/9304065 Theory +hep-th/9304067 Theory +hep-th/9304070 Theory +hep-th/9304073 Theory +hep-th/9304074 Theory +hep-th/9304076 Theory +hep-th/9304078 Theory +hep-th/9304083 Theory +hep-th/9304084 Theory +hep-th/9304085 Theory +hep-th/9304088 Theory +hep-th/9304089 Theory +hep-th/9304090 Theory +hep-th/9304092 Theory +hep-th/9304093 Theory +hep-th/9304097 Theory +hep-th/9304100 Theory +hep-th/9304103 Theory +hep-th/9304104 Theory +hep-th/9304107 Theory +hep-th/9304111 Theory +hep-th/9304112 Theory +hep-th/9304120 Theory +hep-th/9304125 Theory +hep-th/9304127 Theory +hep-th/9304128 Theory +hep-th/9304130 Theory +hep-th/9304132 Theory +hep-th/9304136 Theory +hep-th/9304137 Theory +hep-th/9304139 Theory +hep-th/9304143 Theory +hep-th/9304144 Theory +hep-th/9304147 Theory +hep-th/9304149 Theory +hep-th/9304150 Theory +hep-th/9304157 Theory +hep-th/9304158 Theory +hep-th/9304163 Theory +hep-th/9304164 Theory +hep-th/9304165 Theory +hep-th/9305002 Theory +hep-th/9305005 Theory +hep-th/9305007 Theory +hep-th/9305010 Theory +hep-th/9305011 Theory +hep-th/9305012 Theory +hep-th/9305013 Theory +hep-th/9305015 Theory +hep-th/9305016 Theory +hep-th/9305017 Theory +hep-th/9305018 Theory +hep-th/9305025 Theory +hep-th/9305028 Theory +hep-th/9305031 Theory +hep-th/9305032 Theory +hep-th/9305033 Theory +hep-th/9305034 Theory +hep-th/9305035 Theory +hep-th/9305036 Theory +hep-th/9305037 Theory +hep-th/9305039 Theory +hep-th/9305041 Theory +hep-th/9305042 Theory +hep-th/9305043 Theory +hep-th/9305047 Theory +hep-th/9305052 Theory +hep-th/9305053 Theory +hep-th/9305054 Theory +hep-th/9305061 Theory +hep-th/9305062 Theory +hep-th/9305063 Theory +hep-th/9305064 Theory +hep-th/9305066 Theory +hep-th/9305068 Theory +hep-th/9305069 Theory +hep-th/9305070 Theory +hep-th/9305071 Theory +hep-th/9305073 Theory +hep-th/9305075 Theory +hep-th/9305080 Theory +hep-th/9305081 Theory +hep-th/9305084 Theory +hep-th/9305086 Theory +hep-th/9305091 Theory +hep-th/9305092 Theory +hep-th/9305094 Theory +hep-th/9305095 Theory +hep-th/9305096 Theory +hep-th/9305098 Theory +hep-th/9305099 Theory +hep-th/9305100 Theory +hep-th/9305106 Theory +hep-th/9305107 Theory +hep-th/9305108 Theory +hep-th/9305110 Theory +hep-th/9305111 Theory +hep-th/9305112 Theory +hep-th/9305118 Theory +hep-th/9305119 Theory +hep-th/9305122 Theory +hep-th/9305128 Theory +hep-th/9305129 Theory +hep-th/9305130 Theory +hep-th/9305131 Theory +hep-th/9305133 Theory +hep-th/9305134 Theory +hep-th/9305136 Theory +hep-th/9305142 Theory +hep-th/9305143 Theory +hep-th/9305147 Theory +hep-th/9305149 Theory +hep-th/9305152 Theory +hep-th/9305154 Theory +hep-th/9305156 Theory +hep-th/9305159 Theory +hep-th/9305161 Theory +hep-th/9305162 Theory +hep-th/9305164 Theory +hep-th/9305165 Theory +hep-th/9305166 Theory +hep-th/9305167 Theory +hep-th/9305169 Theory +hep-th/9305170 Theory +hep-th/9305172 Theory +hep-th/9305177 Theory +hep-th/9305178 Theory +hep-th/9305179 Theory +hep-th/9305180 Theory +hep-th/9305183 Theory +hep-th/9306002 Theory +hep-th/9306006 Theory +hep-th/9306007 Theory +hep-th/9306010 Theory +hep-th/9306012 Theory +hep-th/9306013 Theory +hep-th/9306014 Theory +hep-th/9306017 Theory +hep-th/9306018 Theory +hep-th/9306019 Theory +hep-th/9306021 Theory +hep-th/9306024 Theory +hep-th/9306025 Theory +hep-th/9306026 Theory +hep-th/9306027 Theory +hep-th/9306029 Theory +hep-th/9306033 Theory +hep-th/9306034 Theory +hep-th/9306035 Theory +hep-th/9306036 Theory +hep-th/9306039 Theory +hep-th/9306043 Theory +hep-th/9306044 Theory +hep-th/9306046 Theory +hep-th/9306047 Theory +hep-th/9306051 Theory +hep-th/9306052 Theory +hep-th/9306055 Theory +hep-th/9306056 Theory +hep-th/9306062 Theory +hep-th/9306063 Theory +hep-th/9306067 Theory +hep-th/9306072 Theory +hep-th/9306073 Theory +hep-th/9306077 Theory +hep-th/9306079 Theory +hep-th/9306080 Theory +hep-th/9306083 Theory +hep-th/9306084 Theory +hep-th/9306087 Theory +hep-th/9306089 Theory +hep-th/9306092 Theory +hep-th/9306093 Theory +hep-th/9306097 Theory +hep-th/9306099 Theory +hep-th/9306100 Theory +hep-th/9306101 Theory +hep-th/9306103 Theory +hep-th/9306112 Theory +hep-th/9306115 Theory +hep-th/9306118 Theory +hep-th/9306121 Theory +hep-th/9306128 Theory +hep-th/9306130 Theory +hep-th/9306131 Theory +hep-th/9306132 Theory +hep-th/9306134 Theory +hep-th/9306135 Theory +hep-th/9306141 Theory +hep-th/9306146 Theory +hep-th/9306148 Theory +hep-th/9306149 Theory +hep-th/9306150 Theory +hep-th/9306151 Theory +hep-th/9306154 Theory +hep-th/9306155 Theory +hep-th/9306161 Theory +hep-th/9306162 Theory +hep-th/9306163 Theory +hep-th/9306164 Theory +hep-th/9307006 Theory +hep-th/9307011 Theory +hep-th/9307014 Theory +hep-th/9307016 Theory +hep-th/9307017 Theory +hep-th/9307018 Theory +hep-th/9307019 Theory +hep-th/9307020 Theory +hep-th/9307026 Theory +hep-th/9307027 Theory +hep-th/9307031 Theory +hep-th/9307034 Theory +hep-th/9307037 Theory +hep-th/9307039 Theory +hep-th/9307040 Theory +hep-th/9307043 Theory +hep-th/9307045 Theory +hep-th/9307046 Theory +hep-th/9307048 Theory +hep-th/9307051 Theory +hep-th/9307056 Theory +hep-th/9307060 Theory +hep-th/9307061 Theory +hep-th/9307064 Theory +hep-th/9307067 Theory +hep-th/9307071 Theory +hep-th/9307073 Theory +hep-th/9307074 Theory +hep-th/9307075 Theory +hep-th/9307080 Theory +hep-th/9307081 Theory +hep-th/9307083 Theory +hep-th/9307085 Theory +hep-th/9307086 Theory +hep-th/9307087 Theory +hep-th/9307099 Theory +hep-th/9307101 Theory +hep-th/9307102 Theory +hep-th/9307103 Theory +hep-th/9307106 Theory +hep-th/9307107 Theory +hep-th/9307108 Theory +hep-th/9307111 Theory +hep-th/9307113 Theory +hep-th/9307114 Theory +hep-th/9307115 Theory +hep-th/9307116 Theory +hep-th/9307117 Theory +hep-th/9307119 Theory +hep-th/9307120 Theory +hep-th/9307124 Theory +hep-th/9307127 Theory +hep-th/9307130 Theory +hep-th/9307131 Theory +hep-th/9307134 Theory +hep-th/9307136 Theory +hep-th/9307137 Theory +hep-th/9307138 Theory +hep-th/9307139 Theory +hep-th/9307141 Theory +hep-th/9307144 Theory +hep-th/9307145 Theory +hep-th/9307146 Theory +hep-th/9307147 Theory +hep-th/9307148 Theory +hep-th/9307150 Theory +hep-th/9307156 Theory +hep-th/9307158 Theory +hep-th/9307160 Theory +hep-th/9307161 Theory +hep-th/9307165 Theory +hep-th/9307166 Theory +hep-th/9307167 Theory +hep-th/9307169 Theory +hep-th/9307171 Theory +hep-th/9307174 Theory +hep-th/9307176 Theory +hep-th/9307178 Theory +hep-th/9307182 Theory +hep-th/9307185 Theory +hep-th/9307186 Theory +hep-th/9307189 Theory +hep-th/9307190 Theory +hep-th/9307197 Theory +hep-th/9308001 Theory +hep-th/9308002 Theory +hep-th/9308004 Theory +hep-th/9308005 Theory +hep-th/9308006 Theory +hep-th/9308007 Theory +hep-th/9308009 Theory +hep-th/9308014 Theory +hep-th/9308021 Theory +hep-th/9308022 Theory +hep-th/9308026 Theory +hep-th/9308028 Theory +hep-th/9308029 Theory +hep-th/9308032 Theory +hep-th/9308033 Theory +hep-th/9308034 Theory +hep-th/9308036 Theory +hep-th/9308037 Theory +hep-th/9308038 Theory +hep-th/9308043 Theory +hep-th/9308044 Theory +hep-th/9308045 Theory +hep-th/9308050 Theory +hep-th/9308051 Theory +hep-th/9308054 Theory +hep-th/9308070 Theory +hep-th/9308073 Theory +hep-th/9308074 Theory +hep-th/9308076 Theory +hep-th/9308082 Theory +hep-th/9308083 Theory +hep-th/9308086 Theory +hep-th/9308087 Theory +hep-th/9308089 Theory +hep-th/9308090 Theory +hep-th/9308091 Theory +hep-th/9308092 Theory +hep-th/9308094 Theory +hep-th/9308096 Theory +hep-th/9308099 Theory +hep-th/9308102 Theory +hep-th/9308103 Theory +hep-th/9308104 Theory +hep-th/9308106 Theory +hep-th/9308112 Theory +hep-th/9308117 Theory +hep-th/9308118 Theory +hep-th/9308127 Theory +hep-th/9308128 Theory +hep-th/9308129 Theory +hep-th/9308130 Theory +hep-th/9308131 Theory +hep-th/9308134 Theory +hep-th/9308137 Theory +hep-th/9308141 Theory +hep-th/9308143 Theory +hep-th/9308144 Theory +hep-th/9308147 Theory +hep-th/9308148 Theory +hep-th/9308152 Theory +hep-th/9308154 Theory +hep-th/9308157 Theory +hep-th/9308158 Theory +hep-th/9309005 Theory +hep-th/9309007 Theory +hep-th/9309010 Theory +hep-th/9309012 Theory +hep-th/9309013 Theory +hep-th/9309014 Theory +hep-th/9309016 Theory +hep-th/9309020 Theory +hep-th/9309022 Theory +hep-th/9309023 Theory +hep-th/9309024 Theory +hep-th/9309030 Theory +hep-th/9309034 Theory +hep-th/9309036 Theory +hep-th/9309037 Theory +hep-th/9309039 Theory +hep-th/9309043 Theory +hep-th/9309044 Theory +hep-th/9309048 Theory +hep-th/9309049 Theory +hep-th/9309052 Theory +hep-th/9309055 Theory +hep-th/9309057 Theory +hep-th/9309058 Theory +hep-th/9309059 Theory +hep-th/9309060 Theory +hep-th/9309061 Theory +hep-th/9309065 Theory +hep-th/9309069 Theory +hep-th/9309070 Theory +hep-th/9309071 Theory +hep-th/9309073 Theory +hep-th/9309078 Theory +hep-th/9309079 Theory +hep-th/9309085 Theory +hep-th/9309088 Theory +hep-th/9309089 Theory +hep-th/9309092 Theory +hep-th/9309094 Theory +hep-th/9309096 Theory +hep-th/9309097 Theory +hep-th/9309098 Theory +hep-th/9309104 Theory +hep-th/9309105 Theory +hep-th/9309106 Theory +hep-th/9309111 Theory +hep-th/9309112 Theory +hep-th/9309118 Theory +hep-th/9309121 Theory +hep-th/9309122 Theory +hep-th/9309123 Theory +hep-th/9309124 Theory +hep-th/9309126 Theory +hep-th/9309128 Theory +hep-th/9309129 Theory +hep-th/9309130 Theory +hep-th/9309133 Theory +hep-th/9309134 Theory +hep-th/9309135 Theory +hep-th/9309142 Theory +hep-th/9309143 Theory +hep-th/9309144 Theory +hep-th/9309146 Theory +hep-th/9309151 Theory +hep-th/9309153 Theory +hep-th/9309157 Theory +hep-th/9310001 Theory +hep-th/9310002 Theory +hep-th/9310005 Theory +hep-th/9310010 Theory +hep-th/9310011 Theory +hep-th/9310015 Theory +hep-th/9310018 Theory +hep-th/9310021 Theory +hep-th/9310023 Theory +hep-th/9310027 Theory +hep-th/9310029 Theory +hep-th/9310030 Theory +hep-th/9310032 Theory +hep-th/9310033 Theory +hep-th/9310037 Theory +hep-th/9310038 Theory +hep-th/9310039 Theory +hep-th/9310041 Theory +hep-th/9310042 Theory +hep-th/9310043 Theory +hep-th/9310044 Theory +hep-th/9310045 Theory +hep-th/9310046 Theory +hep-th/9310052 Theory +hep-th/9310063 Theory +hep-th/9310066 Theory +hep-th/9310070 Theory +hep-th/9310073 Theory +hep-th/9310075 Theory +hep-th/9310079 Theory +hep-th/9310080 Theory +hep-th/9310081 Theory +hep-th/9310082 Theory +hep-th/9310084 Theory +hep-th/9310085 Theory +hep-th/9310088 Theory +hep-th/9310089 Theory +hep-th/9310091 Theory +hep-th/9310095 Theory +hep-th/9310096 Theory +hep-th/9310097 Theory +hep-th/9310098 Theory +hep-th/9310099 Theory +hep-th/9310103 Theory +hep-th/9310104 Theory +hep-th/9310105 Theory +hep-th/9310106 Theory +hep-th/9310111 Theory +hep-th/9310117 Theory +hep-th/9310119 Theory +hep-th/9310121 Theory +hep-th/9310124 Theory +hep-th/9310125 Theory +hep-th/9310129 Theory +hep-th/9310130 Theory +hep-th/9310131 Theory +hep-th/9310134 Theory +hep-th/9310136 Theory +hep-th/9310137 Theory +hep-th/9310139 Theory +hep-th/9310140 Theory +hep-th/9310142 Theory +hep-th/9310146 Theory +hep-th/9310148 Theory +hep-th/9310149 Theory +hep-th/9310150 Theory +hep-th/9310153 Theory +hep-th/9310156 Theory +hep-th/9310157 Theory +hep-th/9310158 Theory +hep-th/9310160 Theory +hep-th/9310162 Theory +hep-th/9310165 Theory +hep-th/9310166 Theory +hep-th/9310167 Theory +hep-th/9310168 Theory +hep-th/9310173 Theory +hep-th/9310180 Theory +hep-th/9310181 Theory +hep-th/9310185 Theory +hep-th/9310186 Theory +hep-th/9310189 Theory +hep-th/9310194 Theory +hep-th/9310200 Theory +hep-th/9310201 Theory +hep-th/9310202 Theory +hep-th/9311002 Theory +hep-th/9311004 Theory +hep-th/9311008 Theory +hep-th/9311010 Theory +hep-th/9311011 Theory +hep-th/9311014 Theory +hep-th/9311015 Theory +hep-th/9311019 Theory +hep-th/9311024 Theory +hep-th/9311038 Theory +hep-th/9311041 Theory +hep-th/9311047 Theory +hep-th/9311050 Theory +hep-th/9311054 Theory +hep-th/9311055 Theory +hep-th/9311056 Theory +hep-th/9311060 Theory +hep-th/9311066 Theory +hep-th/9311070 Theory +hep-th/9311078 Theory +hep-th/9311080 Theory +hep-th/9311085 Theory +hep-th/9311091 Theory +hep-th/9311092 Theory +hep-th/9311100 Theory +hep-th/9311101 Theory +hep-th/9311102 Theory +hep-th/9311105 Theory +hep-th/9311107 Theory +hep-th/9311108 Theory +hep-th/9311110 Theory +hep-th/9311113 Theory +hep-th/9311114 Theory +hep-th/9311118 Theory +hep-th/9311119 Theory +hep-th/9311121 Theory +hep-th/9311123 Theory +hep-th/9311126 Theory +hep-th/9311131 Theory +hep-th/9311132 Theory +hep-th/9311133 Theory +hep-th/9311135 Theory +hep-th/9311139 Theory +hep-th/9311141 Theory +hep-th/9311144 Theory +hep-th/9311145 Theory +hep-th/9311153 Theory +hep-th/9311157 Theory +hep-th/9311158 Theory +hep-th/9311160 Theory +hep-th/9311161 Theory +hep-th/9311162 Theory +hep-th/9311163 Theory +hep-th/9311168 Theory +hep-th/9311169 Theory +hep-th/9311173 Theory +hep-th/9311174 Theory +hep-th/9311181 Theory +hep-th/9311189 Theory +hep-th/9312001 Theory +hep-th/9312002 Theory +hep-th/9312003 Theory +hep-th/9312006 Theory +hep-th/9312007 Theory +hep-th/9312008 Theory +hep-th/9312009 Theory +hep-th/9312012 Theory +hep-th/9312013 Theory +hep-th/9312020 Theory +hep-th/9312024 Theory +hep-th/9312028 Theory +hep-th/9312029 Theory +hep-th/9312031 Theory +hep-th/9312032 Theory +hep-th/9312033 Theory +hep-th/9312035 Theory +hep-th/9312036 Theory +hep-th/9312039 Theory +hep-th/9312040 Theory +hep-th/9312042 Theory +hep-th/9312043 Theory +hep-th/9312045 Theory +hep-th/9312047 Theory +hep-th/9312048 Theory +hep-th/9312049 Theory +hep-th/9312050 Theory +hep-th/9312054 Theory +hep-th/9312055 Theory +hep-th/9312056 Theory +hep-th/9312059 Theory +hep-th/9312060 Theory +hep-th/9312062 Theory +hep-th/9312063 Theory +hep-th/9312066 Theory +hep-th/9312074 Theory +hep-th/9312077 Theory +hep-th/9312078 Theory +hep-th/9312079 Theory +hep-th/9312080 Theory +hep-th/9312083 Theory +hep-th/9312086 Theory +hep-th/9312088 Theory +hep-th/9312093 Theory +hep-th/9312094 Theory +hep-th/9312095 Theory +hep-th/9312096 Theory +hep-th/9312097 Theory +hep-th/9312099 Theory +hep-th/9312100 Theory +hep-th/9312102 Theory +hep-th/9312107 Theory +hep-th/9312108 Theory +hep-th/9312109 Theory +hep-th/9312114 Theory +hep-th/9312115 Theory +hep-th/9312117 Theory +hep-th/9312118 Theory +hep-th/9312126 Theory +hep-th/9312128 Theory +hep-th/9312129 Theory +hep-th/9312144 Theory +hep-th/9312148 Theory +hep-th/9312152 Theory +hep-th/9312154 Theory +hep-th/9312155 Theory +hep-th/9312156 Theory +hep-th/9312157 Theory +hep-th/9312158 Theory +hep-th/9312161 Theory +hep-th/9312163 Theory +hep-th/9312165 Theory +hep-th/9312168 Theory +hep-th/9312170 Theory +hep-th/9312173 Theory +hep-th/9312175 Theory +hep-th/9312180 Theory +hep-th/9312185 Theory +hep-th/9312188 Theory +hep-th/9312191 Theory +hep-th/9312192 Theory +hep-th/9312198 Theory +hep-th/9312199 Theory +hep-th/9312200 Theory +hep-th/9312202 Theory +hep-th/9312204 Theory +hep-th/9312205 Theory +hep-th/9312206 Theory +hep-th/9312207 Theory +hep-th/9312208 Theory +hep-th/9312210 Theory +hep-th/9312211 Theory +hep-th/9312214 Theory +hep-th/9312215 Theory +math/0609828 Representation Theory +math/0703409 Operator Algebras +math/9201218 Metric Geometry +math/9201252 Logic +math/9201275 Dynamical Systems +math/9206205 Dynamical Systems +math/9301211 K-Theory and Homology +math/9307206 Classical Analysis and ODEs +nucl-th/9210001 +nucl-th/9210005 +nucl-th/9210006 +nucl-th/9210018 +nucl-th/9210019 +nucl-th/9210020 +nucl-th/9211006 +nucl-th/9211010 +nucl-th/9211013 +nucl-th/9212001 +nucl-th/9212002 +nucl-th/9212004 +nucl-th/9212006 +nucl-th/9212007 +nucl-th/9212008 +nucl-th/9212012 +nucl-th/9212013 +nucl-th/9212014 +nucl-th/9212015 +nucl-th/9301017 +nucl-th/9301019 +nucl-th/9301020 +nucl-th/9302001 +nucl-th/9302002 +nucl-th/9302008 +nucl-th/9302009 +nucl-th/9302010 +nucl-th/9302011 +nucl-th/9302012 +nucl-th/9302014 +nucl-th/9302015 +nucl-th/9302016 +nucl-th/9303002 +nucl-th/9303018 +nucl-th/9303022 +nucl-th/9303023 +nucl-th/9304002 +nucl-th/9304005 +nucl-th/9304006 +nucl-th/9304009 +nucl-th/9304011 +nucl-th/9304012 +nucl-th/9305001 +nucl-th/9305002 +nucl-th/9305003 +nucl-th/9305004 +nucl-th/9305006 +nucl-th/9305007 +nucl-th/9305008 +nucl-th/9305011 +nucl-th/9305015 +nucl-th/9306007 +nucl-th/9306008 +nucl-th/9306010 +nucl-th/9306013 +nucl-th/9306014 +nucl-th/9306016 +nucl-th/9306017 +nucl-th/9306019 +nucl-th/9306020 +nucl-th/9306021 +nucl-th/9306022 +nucl-th/9306023 +nucl-th/9306025 +nucl-th/9307001 +nucl-th/9307002 +nucl-th/9307004 +nucl-th/9307006 +nucl-th/9307008 +nucl-th/9307010 +nucl-th/9307011 +nucl-th/9307013 +nucl-th/9307015 +nucl-th/9307022 +nucl-th/9307026 +nucl-th/9307029 +nucl-th/9308001 +nucl-th/9308002 +nucl-th/9308003 +nucl-th/9308004 +nucl-th/9308005 +nucl-th/9308009 +nucl-th/9308012 +nucl-th/9308015 +nucl-th/9308019 +nucl-th/9308022 +nucl-th/9309002 +nucl-th/9309007 +nucl-th/9309011 +nucl-th/9309017 +nucl-th/9309018 +nucl-th/9309021 +nucl-th/9309026 +nucl-th/9309029 +nucl-th/9310007 +nucl-th/9310009 +nucl-th/9310011 +nucl-th/9310013 +nucl-th/9310016 +nucl-th/9310018 +nucl-th/9310020 +nucl-th/9310021 +nucl-th/9310022 +nucl-th/9310025 +nucl-th/9310027 +nucl-th/9311004 +nucl-th/9311006 +nucl-th/9311009 +nucl-th/9311020 +nucl-th/9311025 +nucl-th/9311027 +nucl-th/9311031 +nucl-th/9311032 +nucl-th/9311033 +nucl-th/9311035 +nucl-th/9311036 +nucl-th/9312008 +nucl-th/9312009 +nucl-th/9312012 +nucl-th/9312014 +nucl-th/9312018 +nucl-th/9312021 +patt-sol/9302001 Pattern Formation and Solitons +patt-sol/9303001 Pattern Formation and Solitons +patt-sol/9304002 Pattern Formation and Solitons +patt-sol/9304003 Pattern Formation and Solitons +patt-sol/9305002 Pattern Formation and Solitons +patt-sol/9305003 Pattern Formation and Solitons +patt-sol/9305004 Pattern Formation and Solitons +patt-sol/9305005 Pattern Formation and Solitons +patt-sol/9305006 Pattern Formation and Solitons +patt-sol/9305007 Pattern Formation and Solitons +patt-sol/9305010 Pattern Formation and Solitons +patt-sol/9306002 Pattern Formation and Solitons +patt-sol/9307002 Pattern Formation and Solitons +patt-sol/9310001 Pattern Formation and Solitons +patt-sol/9310002 Pattern Formation and Solitons +patt-sol/9310003 Pattern Formation and Solitons +patt-sol/9310004 Pattern Formation and Solitons +patt-sol/9310005 Pattern Formation and Solitons +patt-sol/9310007 Pattern Formation and Solitons +patt-sol/9311001 Pattern Formation and Solitons +patt-sol/9311004 Pattern Formation and Solitons +patt-sol/9311005 Pattern Formation and Solitons +patt-sol/9311007 Pattern Formation and Solitons +patt-sol/9312001 Pattern Formation and Solitons +q-bio/0603001 Quantitative Methods +solv-int/9304001 Exactly Solvable and Integrable Systems +solv-int/9304002 Exactly Solvable and Integrable Systems +solv-int/9304003 Exactly Solvable and Integrable Systems +solv-int/9305001 Exactly Solvable and Integrable Systems +solv-int/9305002 Exactly Solvable and Integrable Systems +solv-int/9305004 Exactly Solvable and Integrable Systems +solv-int/9306001 Exactly Solvable and Integrable Systems +solv-int/9306004 Exactly Solvable and Integrable Systems +solv-int/9310002 Exactly Solvable and Integrable Systems +solv-int/9310003 Exactly Solvable and Integrable Systems +solv-int/9311001 Exactly Solvable and Integrable Systems +0709.2696 Group Theory +0711.1096 Materials Science +0712.2428 Probability +0712.4316 Statistical Mechanics +0801.4097 Numerical Analysis +0802.0824 Soft Condensed Matter +0803.0691 Number Theory +0804.4889 Functional Analysis +0805.2526 +0806.0011 +0806.2574 +0806.4472 +0807.4864 Probability +0808.0516 +0808.3694 Computational Geometry +0810.4317 +0811.3561 +0811.4583 Materials Science +0812.1437 Materials Science +0812.3626 Chemical Physics +0812.3687 Combinatorics +0812.3713 Mesoscale and Nanoscale Physics +0812.3844 +0812.4061 +0812.4689 Strongly Correlated Electrons +0901.0407 Combinatorics +0901.0491 Materials Science +0901.1791 +0901.2232 +0901.2253 +0901.2529 Combinatorics +0901.3035 Superconductivity +0901.3167 Quantum Algebra +0901.4115 Functional Analysis +0901.4536 Solar and Stellar Astrophysics +0903.1771 Mesoscale and Nanoscale Physics +0903.3917 Solar and Stellar Astrophysics +0904.0963 Materials Science +0904.1799 Strongly Correlated Electrons +0904.2666 Mesoscale and Nanoscale Physics +0904.2969 Strongly Correlated Electrons +0904.3253 Quantitative Methods +0904.3273 Computational Complexity +0904.3415 Statistical Mechanics +0904.3841 Algebraic Topology +0905.0363 Cryptography and Security +0905.1119 General Physics +0905.1352 Logic +0905.1879 Category Theory +0905.1957 Accelerator Physics +0905.1963 Combinatorics +0905.1971 Probability +0905.1975 Probability +0905.1977 Experiment +0905.1978 General Topology +0905.1983 Applications +0905.1986 Instrumentation and Methods for Astrophysics +0905.1990 Information Theory +0905.1994 +0905.1995 Computer Science and Game Theory +0905.1999 Probability +0905.2000 +0905.2001 +0905.2004 Programming Languages +0905.2011 Algebraic Geometry +0905.2012 Experiment +0905.2020 Instrumentation and Methods for Astrophysics +0905.2023 Dynamical Systems +0905.2024 Analysis of PDEs +0905.2027 Geophysics +0905.2028 Data Structures and Algorithms +0905.2031 +0905.2040 General Mathematics +0905.2042 Methodology +0905.2053 Solar and Stellar Astrophysics +0905.2057 Soft Condensed Matter +0905.2059 Quantum Algebra +0905.2063 Algebraic Geometry +0905.2064 +0905.2066 Phenomenology +0905.2078 Statistics Theory +0905.2081 Computational Physics +0905.2090 Experiment +0905.2091 Pricing of Securities +0905.2092 +0905.2097 Phenomenology +0905.2098 Information Theory +0905.2099 Algebraic Geometry +0905.2101 +0905.2112 +0905.2117 Geophysics +0905.2120 Logic +0905.2122 Earth and Planetary Astrophysics +0905.2127 Strongly Correlated Electrons +0905.2132 Instrumentation and Detectors +0905.2134 Analysis of PDEs +0905.2138 Machine Learning +0905.2139 Phenomenology +0905.2141 Data Structures and Algorithms +0905.2142 Mesoscale and Nanoscale Physics +0905.2143 Combinatorics +0905.2147 Number Theory +0905.2148 Solar and Stellar Astrophysics +0905.2149 Group Theory +0905.2150 Probability +0905.2151 Number Theory +0905.2153 Solar and Stellar Astrophysics +0905.2158 Cryptography and Security +0905.2159 Information Theory +0905.2172 Mesoscale and Nanoscale Physics +0905.2173 Differential Geometry +0905.2174 Populations and Evolution +0905.2175 +cond-mat/0602640 Materials Science +cond-mat/0603736 Soft Condensed Matter +math/0608676 Probability +quant-ph/0405155 +quant-ph/0406002 +quant-ph/0608003 +quant-ph/0702154 +0704.2416 +0705.2790 Chaotic Dynamics +0707.2568 Algebraic Geometry +0711.1188 +0802.4455 Chaotic Dynamics +0805.2747 Group Theory +0808.0293 +0808.1179 Statistical Mechanics +0809.3967 Statistical Mechanics +0812.2378 +0901.2200 +0901.2221 Operator Algebras +0903.5200 Phenomenology +0907.4952 Experiment +0907.5100 Instrumentation and Methods for Astrophysics +0907.5438 Cryptography and Security +0908.3330 Combinatorics +0908.3359 Computer Vision and Pattern Recognition +astro-ph/0105020 +astro-ph/0302035 +astro-ph/0308260 +astro-ph/0401166 +astro-ph/0408560 +cond-mat/0601435 Statistical Mechanics +cond-mat/0602458 Statistical Mechanics +gr-qc/0011075 +gr-qc/0401013 +gr-qc/0405117 +math-ph/0605002 +nlin/0601042 Chaotic Dynamics +nlin/0701024 Chaotic Dynamics +0707.1722 +0710.0162 Algebraic Geometry +0710.4828 Cryptography and Security +0712.3354 +0804.2669 Strongly Correlated Electrons +0805.2894 +0806.2165 Representation Theory +0806.2231 Strongly Correlated Electrons +0808.3839 Dynamical Systems +0809.3245 +0810.4332 Statistical Mechanics +0811.0561 Representation Theory +0811.1571 +0811.2765 Strongly Correlated Electrons +0812.1691 Rings and Algebras +0812.3143 +0901.1600 Other Condensed Matter +0901.2650 Strongly Correlated Electrons +0901.4506 +0902.0992 Number Theory +0902.3743 Phenomenology +0903.0956 Statistical Mechanics +0903.2723 Mesoscale and Nanoscale Physics +0903.3353 Classical Physics +0903.4748 Chemical Physics +0905.0070 Solar and Stellar Astrophysics +0905.1606 Mesoscale and Nanoscale Physics +0905.2069 Theory +0905.2883 Strongly Correlated Electrons +0905.4566 Algebraic Geometry +0906.0096 +0906.0998 Materials Science +0906.2572 +0906.3824 Solar and Stellar Astrophysics +0906.3923 Networking and Internet Architecture +0906.3938 +0907.1556 +0907.2294 Materials Science +0907.5535 +0908.1604 +0908.3611 Mesoscale and Nanoscale Physics +0908.4000 +0908.4355 Complex Variables +0909.2118 Theory +0911.1545 Optics +0911.1656 Populations and Evolution +0911.3353 Solar and Stellar Astrophysics +0911.3681 Quantum Gases +0911.3999 Combinatorics +0911.4325 Phenomenology +0911.5088 Complex Variables +0912.0090 +0912.0264 High Energy Astrophysical Phenomena +0912.0266 Artificial Intelligence +0912.0270 Artificial Intelligence +0912.0276 Materials Science +0912.0279 +0912.0285 Statistics Theory +0912.0298 Representation Theory +0912.0300 Rings and Algebras +0912.0303 Number Theory +0912.0312 Information Theory +0912.0324 +0912.0336 Functional Analysis +0912.0338 Probability +0912.0341 Analysis of PDEs +0912.0343 Dynamical Systems +0912.0344 Complex Variables +0912.0348 +0912.0350 Astrophysics of Galaxies +0912.0357 Optimization and Control +0912.0359 Classical Analysis and ODEs +0912.0360 Computational Physics +0912.0361 Phenomenology +0912.0364 Phenomenology +0912.0366 Instrumentation and Detectors +0912.0372 Computational Finance +0912.0387 Rings and Algebras +0912.0392 Solar and Stellar Astrophysics +0912.0394 Lattice +0912.0400 Earth and Planetary Astrophysics +0912.0404 Earth and Planetary Astrophysics +0912.0406 Logic +0912.0407 Lattice +0912.0412 Statistical Mechanics +0912.0419 Logic in Computer Science +0912.0420 Lattice +0912.0422 High Energy Astrophysical Phenomena +0912.0424 Combinatorics +0912.0426 Materials Science +0912.0429 Combinatorics +0912.0430 Statistical Mechanics +0912.0433 Human-Computer Interaction +0912.0438 +0912.0439 Symplectic Geometry +0912.0440 Dynamical Systems +0912.0441 Number Theory +0912.0443 General Physics +0912.0447 Differential Geometry +0912.0448 Combinatorics +0912.0453 Cryptography and Security +0912.0455 +0912.0458 General Mathematics +0912.0460 Theory +0912.0461 +0912.0468 Differential Geometry +0912.0473 Software Engineering +0912.0479 Phenomenology +0912.0486 +0912.0488 Optimization and Control +0912.0491 Differential Geometry +0912.0496 Phenomenology +0912.0505 Dynamical Systems +0912.0507 History and Overview +cond-mat/0607420 Materials Science +math/0506168 Category Theory +math/0507320 K-Theory and Homology +math/0508101 Algebraic Topology +math/0607300 Commutative Algebra +math/0610423 Representation Theory +math/0611403 Representation Theory +physics/0702095 General Physics +0707.3987 +0708.3012 Pricing of Securities +0710.0939 Probability +0712.0083 Statistical Finance +0801.1916 Other Condensed Matter +0802.0551 Theory +0804.1397 Probability +0804.3074 Combinatorics +0805.0029 +0806.3695 Probability +0807.1199 +0808.1353 Materials Science +0808.1620 Materials Science +0808.2954 Phenomenology +0808.3648 +0809.0274 +0809.0600 +0809.2163 +0809.2349 Optics +0809.3675 +0809.4472 Experiment +0809.4737 +0810.1297 +0810.2070 History and Overview +0811.0618 +0811.1345 Phenomenology +0811.1597 Statistical Mechanics +0811.3017 +0811.4624 +0811.4769 Number Theory +0812.0378 Mesoscale and Nanoscale Physics +0812.0855 Mesoscale and Nanoscale Physics +0812.3994 Disordered Systems and Neural Networks +0812.4252 Strongly Correlated Electrons +0812.5067 Statistical Mechanics +0901.0117 Phenomenology +0901.0277 +0901.0667 Group Theory +0901.0953 Theory +0901.2674 +0901.4352 Phenomenology +0901.4498 Strongly Correlated Electrons +0902.1529 Cosmology and Nongalactic Astrophysics +0902.3154 Phenomenology +0902.3657 Theory +0902.3814 +0902.3819 +0902.3983 +0902.4155 +0902.4462 Phenomenology +0903.0616 Solar and Stellar Astrophysics +0903.1772 +0903.2733 +0903.3767 Number Theory +0903.4668 Superconductivity +0903.5187 Mesoscale and Nanoscale Physics +0904.1541 Strongly Correlated Electrons +0904.2965 Functional Analysis +0904.3100 Statistical Mechanics +0904.3696 +0905.0057 Superconductivity +0905.1880 Classical Physics +0906.0509 +0906.2204 Solar and Stellar Astrophysics +0906.2351 Discrete Mathematics +0906.2415 Computation and Language +0906.2416 Soft Condensed Matter +0906.2418 Phenomenology +0906.2426 Mesoscale and Nanoscale Physics +0906.2432 Functional Analysis +0906.2436 General Physics +0906.2437 Algebraic Geometry +0906.2439 Group Theory +0906.2442 Superconductivity +0906.2443 Mesoscale and Nanoscale Physics +0906.2445 Phenomenology +0906.2448 Data Structures and Algorithms +0906.2452 Biomolecules +0906.2454 +0906.2458 Statistical Mechanics +0906.2459 Databases +0906.2461 Computational Geometry +0906.2462 General Mathematics +0906.2463 Phenomenology +0906.2464 Phenomenology +0906.2465 +0906.2467 +0906.2470 Populations and Evolution +0906.2477 Formal Languages and Automata Theory +0906.2492 Materials Science +0906.2501 Pattern Formation and Solitons +0906.2502 Soft Condensed Matter +0906.2505 History and Philosophy of Physics +0906.2517 Analysis of PDEs +0906.2518 +0906.2521 Logic in Computer Science +0906.2522 Statistical Mechanics +0906.2527 +0906.2529 Phenomenology +0906.2531 Statistical Mechanics +0906.2532 Statistical Mechanics +0906.2534 +0906.2543 Spectral Theory +0906.2551 Quantum Gases +0906.2553 Combinatorics +0906.2554 Differential Geometry +0906.2557 +0906.2558 Metric Geometry +0906.2560 Physics and Society +0906.2562 Mesoscale and Nanoscale Physics +0906.2568 Combinatorics +0906.2570 Geometric Topology +0906.2571 Phenomenology +0906.2575 Instrumentation and Methods for Astrophysics +0906.2579 Geometric Topology +0906.2581 Other Condensed Matter +0906.2583 Statistical Mechanics +0906.2584 Phenomenology +0906.2598 Algebraic Geometry +0906.2599 Atmospheric and Oceanic Physics +0906.2600 Data Analysis, Statistics and Probability +0906.2603 Information Theory +0906.2604 Combinatorics +0906.2605 Group Theory +0906.2606 Algebraic Geometry +0906.2619 Optics +0906.2621 Group Theory +0906.2623 Group Theory +0906.2628 Solar and Stellar Astrophysics +0906.2629 Number Theory +0906.2630 Astrophysics of Galaxies +0906.2636 Experiment +0906.2638 Differential Geometry +0906.2643 Number Theory +0906.2644 High Energy Astrophysical Phenomena +0906.2652 Statistical Mechanics +0906.2657 Algebraic Geometry +0906.2658 Algebraic Geometry +0906.2659 Phenomenology +0906.2662 +0906.2665 Differential Geometry +0906.2671 Data Structures and Algorithms +0906.2675 Phenomenology +0906.2676 Phenomenology +0906.2678 Algebraic Geometry +0906.2685 Analysis of PDEs +0906.2687 +0906.2688 Algebraic Geometry +0906.2691 Methodology +0906.2692 Physics and Society +0906.2700 +0906.2701 Group Theory +0906.2704 Numerical Analysis +0906.2708 Logic +0906.2711 Solar and Stellar Astrophysics +0906.2715 Number Theory +0906.2716 Computer Vision and Pattern Recognition +0906.2718 +0906.2721 Phenomenology +0906.2724 Theory +0906.2728 Phenomenology +0906.2739 Cosmology and Nongalactic Astrophysics +0906.2753 General Topology +0906.2757 Statistical Mechanics +0906.2761 Superconductivity +0906.2763 Probability +0906.2767 Discrete Mathematics +0906.2770 Computer Vision and Pattern Recognition +0906.2775 Analysis of PDEs +0906.2776 Complex Variables +astro-ph/0003343 +astro-ph/0008370 +astro-ph/0009213 +astro-ph/0010092 +astro-ph/0105398 +astro-ph/0107034 +astro-ph/0109366 +astro-ph/0202080 +astro-ph/0202381 +astro-ph/0203131 +astro-ph/0203499 +astro-ph/0209591 +astro-ph/0303376 +astro-ph/0406666 +astro-ph/0408536 +astro-ph/0409718 +astro-ph/0411386 +astro-ph/0509147 +astro-ph/0510063 +astro-ph/0511269 +astro-ph/0605233 +astro-ph/0605328 +astro-ph/0610169 +astro-ph/9403067 +astro-ph/9505080 +astro-ph/9510146 +astro-ph/9601061 +astro-ph/9601064 +astro-ph/9601065 +astro-ph/9601066 +astro-ph/9611001 +astro-ph/9611222 +astro-ph/9702120 +astro-ph/9702178 +astro-ph/9704265 +astro-ph/9706042 +astro-ph/9707186 +astro-ph/9801250 +astro-ph/9812412 +astro-ph/9901294 +astro-ph/9901306 +astro-ph/9902287 +astro-ph/9910458 +astro-ph/9911493 +cond-mat/0610511 Statistical Mechanics +cs/0505009 Data Structures and Algorithms +math/0604537 Algebraic Topology +0704.0942 Dynamical Systems +0704.1177 +0705.4336 +0707.1011 +0708.3338 Probability +0708.3518 General Physics +0709.0186 Algebraic Geometry +0709.1857 Phenomenology +0709.2913 Phenomenology +0709.4619 +0709.4636 +0710.3767 Strongly Correlated Electrons +0711.1795 Phenomenology +0712.0446 +0712.0886 Theory +0712.1626 Strongly Correlated Electrons +0712.4317 Computational Physics +0801.3218 Metric Geometry +0801.4624 Complex Variables +0802.2188 Theory +0802.2908 Theory +0802.4395 Theory +0803.0643 +0803.0690 Differential Geometry +0804.0076 Materials Science +0804.4329 Strongly Correlated Electrons +0804.4709 Chaotic Dynamics +0805.0679 Soft Condensed Matter +0805.0979 +0805.1253 +0805.4168 Statistical Mechanics +0805.4640 Disordered Systems and Neural Networks +0806.0237 Superconductivity +0806.1185 +0806.3229 Phenomenology +0806.3251 Theory +0806.3725 Statistical Mechanics +0807.0069 +0807.0777 Theory +0807.2373 Phenomenology +0807.2843 Theory +0807.3607 Phenomenology +0807.4084 Theory +0807.4428 +0808.0139 +0808.0360 Theory +0808.0400 Theory +0808.1535 Theory +0808.1628 +0808.1920 +0808.1945 +0808.2127 Strongly Correlated Electrons +0808.2147 Superconductivity +0808.2587 Phenomenology +0808.2905 Mesoscale and Nanoscale Physics +0808.3858 +0809.0078 +0809.1018 Algebraic Geometry +0809.1210 Theory +0809.1229 Phenomenology +0809.1403 Instrumentation and Detectors +0809.2050 Exactly Solvable and Integrable Systems +0809.2096 Phenomenology +0809.2224 Plasma Physics +0809.2275 +0809.3196 Phenomenology +0809.3259 +0809.3282 Strongly Correlated Electrons +0809.3287 Theory +0809.3760 Phenomenology +0809.4199 +0809.4201 Instrumentation and Detectors +0809.4384 Theory +0809.4675 +0809.5071 Mesoscale and Nanoscale Physics +0810.0507 Algebraic Topology +0810.0765 +0810.1776 +0810.2185 +0810.2422 Theory +0810.2594 Theory +0810.2762 Phenomenology +0810.3020 Theory +0810.3115 +0810.3762 Lattice +0810.4482 Experiment +0810.4521 Theory +0810.4533 Phenomenology +0810.5013 Materials Science +0810.5619 Combinatorics +0811.0301 +0811.0646 Strongly Correlated Electrons +0811.0910 Theory +0811.1058 Phenomenology +0811.1412 Phenomenology +0811.2169 Statistical Mechanics +0811.2504 Analysis of PDEs +0811.3052 Superconductivity +0811.3121 Analysis of PDEs +0811.3252 Theory +0811.4037 Phenomenology +0811.4622 Phenomenology +0812.0773 Theory +0812.0849 Lattice +0812.4344 Plasma Physics +0901.0793 Differential Geometry +0901.1372 Strongly Correlated Electrons +0901.1700 Materials Science +0901.2225 Other Condensed Matter +0901.2531 Functional Analysis +0901.3488 +0902.0588 Instrumentation and Methods for Astrophysics +0902.0839 Mesoscale and Nanoscale Physics +0902.0985 Phenomenology +0902.1417 Biomolecules +0902.1453 Operator Algebras +0902.1745 High Energy Astrophysical Phenomena +0902.1757 Number Theory +0902.1759 Cosmology and Nongalactic Astrophysics +0902.1760 Analysis of PDEs +0902.1767 Classical Physics +0902.1775 +0902.1776 +0902.1777 Solar and Stellar Astrophysics +0902.1780 Materials Science +0902.1785 Algebraic Geometry +0902.1790 Information Theory +0902.1794 Functional Analysis +0902.1811 +0902.1814 Materials Science +0902.1816 Analysis of PDEs +0902.1817 Biomolecules +0902.1820 Materials Science +0902.1821 Populations and Evolution +0902.1829 Classical Physics +0902.1839 Fluid Dynamics +0902.1840 Analysis of PDEs +0902.1843 Optimization and Control +0902.1849 Probability +0902.1853 Information Theory +0902.1856 Strongly Correlated Electrons +0902.1857 +0902.1863 +0902.1866 Computational Complexity +0902.1868 Discrete Mathematics +0902.1869 Analysis of PDEs +0902.1870 Dynamical Systems +0902.1871 Data Structures and Algorithms +0902.1874 Combinatorics +0902.1875 Representation Theory +0902.1878 Analysis of PDEs +0902.1879 Instrumentation and Detectors +0902.1881 Molecular Networks +0902.1884 Performance +0902.1885 Phenomenology +0902.1891 Cryptography and Security +0902.1894 Theory +0902.1900 Chemical Physics +0902.1903 Strongly Correlated Electrons +0902.1907 Representation Theory +0902.1909 Functional Analysis +0902.1910 Dynamical Systems +0902.1911 Information Retrieval +0902.1917 Dynamical Systems +0902.1918 Statistical Mechanics +0902.1920 Phenomenology +0902.1921 Algebraic Geometry +0902.1922 General Physics +0902.1924 Strongly Correlated Electrons +0902.1930 Algebraic Geometry +0902.1931 Combinatorics +0902.1932 Combinatorics +0902.1938 Statistical Mechanics +0902.1939 Probability +0902.1940 +0902.1941 Biomolecules +0902.1951 Differential Geometry +0902.1955 Functional Analysis +0902.1958 Classical Analysis and ODEs +0902.1959 Dynamical Systems +0902.1960 Algebraic Geometry +0902.1964 Dynamical Systems +0902.1966 Solar and Stellar Astrophysics +0902.1967 Solar and Stellar Astrophysics +0902.1970 Statistics Theory +0902.1977 Astrophysics of Galaxies +0902.1980 Superconductivity +astro-ph/0406123 +chao-dyn/9911023 Chaotic Dynamics +cond-mat/0005221 Soft Condensed Matter +cond-mat/0007047 +cond-mat/0011224 Disordered Systems and Neural Networks +cond-mat/0101401 Mesoscale and Nanoscale Physics +cond-mat/0105337 Strongly Correlated Electrons +cond-mat/0105598 Superconductivity +cond-mat/0506663 Superconductivity +cond-mat/0602464 Superconductivity +gr-qc/0607077 +hep-ex/0109019 Experiment +hep-ph/0609165 Phenomenology +hep-ph/9510276 Phenomenology +hep-th/0203263 Theory +math/0406002 Dynamical Systems +math/0406004 Dynamical Systems +math/0502038 Dynamical Systems +math/0608283 Functional Analysis +math/0610693 Combinatorics +math/0612142 Optimization and Control +math/0612399 Symplectic Geometry +nucl-th/0107042 +0706.2347 Dynamical Systems +0712.0662 Geometric Topology +0801.4743 Commutative Algebra +0804.2616 Probability +0804.4748 Quantum Algebra +0806.1324 Category Theory +0807.4352 +0807.4846 Information Theory +0808.0076 Statistical Mechanics +0808.1297 Experiment +0808.2203 Soft Condensed Matter +0809.4406 Dynamical Systems +0810.5237 +0811.0850 Statistical Mechanics +0901.0892 +0901.3892 Cosmology and Nongalactic Astrophysics +0902.1710 Space Physics +0903.0096 Networking and Internet Architecture +0903.0364 Probability +cond-mat/0408087 Other Condensed Matter +cond-mat/0508364 Other Condensed Matter +math/0310380 Rings and Algebras +math/0406449 Symplectic Geometry +math/0505516 General Topology +math/0612405 Probability +math/0701018 Combinatorics +0707.2643 Phenomenology +0710.0777 Phenomenology +0710.0981 +0711.2741 Phenomenology +0801.1651 Phenomenology +0802.1757 +0804.2673 +0805.1855 Statistics Theory +0805.4141 Statistics Theory +0807.5012 Lattice +0807.5125 Soft Condensed Matter +0808.0257 Algebraic Topology +0808.1819 Phenomenology +0808.2663 +0808.2699 Phenomenology +0809.2889 Optimization and Control +0809.3789 +0811.0642 Phenomenology +0811.0875 Phenomenology +0811.4147 Other Condensed Matter +0812.1719 Probability +0812.2136 Phenomenology +0812.2180 +0812.2866 Mesoscale and Nanoscale Physics +0812.3393 +0901.0473 Experiment +0901.0725 Phenomenology +0901.0781 Phenomenology +0901.0891 +0901.3450 Phenomenology +0901.3521 Chaotic Dynamics +0901.3874 Probability +0901.4052 High Energy Astrophysical Phenomena +0902.0063 Phenomenology +0902.1569 +0902.2850 Instrumentation and Methods for Astrophysics +0902.4453 Statistics Theory +0903.0840 Differential Geometry +0903.1918 Algebraic Geometry +0903.3895 Instrumentation and Methods for Astrophysics +0903.3966 Theory +0903.4105 +0904.1107 Statistical Finance +0904.1271 Mesoscale and Nanoscale Physics +0904.2511 Computer Science and Game Theory +0904.2737 +0904.2832 Cosmology and Nongalactic Astrophysics +0904.2986 +0904.3261 +0904.4116 Lattice +0904.4442 Phenomenology +0904.4473 Theory +0905.0634 Theory +0905.0674 Phenomenology +0905.1170 Theory +0905.2395 +0905.2425 +0905.2844 Theory +0905.2847 Phenomenology +0905.2909 Phenomenology +0905.2916 Instrumentation and Detectors +0905.3501 Theory +0905.4898 +0906.1291 Theory +0906.1905 Instrumentation and Methods for Astrophysics +0906.2130 General Physics +0906.2490 Phenomenology +0906.2594 +0906.2849 Theory +0906.3087 +0906.3774 Superconductivity +0906.3819 Phenomenology +0906.4593 Strongly Correlated Electrons +0907.1637 Materials Science +0907.2096 Superconductivity +0907.2413 +0907.2838 +0907.4167 +0907.4625 Dynamical Systems +0908.0181 Combinatorics +0908.3415 Cosmology and Nongalactic Astrophysics +0909.0648 Phenomenology +0909.1089 +0909.1226 Strongly Correlated Electrons +0909.1409 Probability +0909.1697 Representation Theory +0909.1706 +0909.1811 Cosmology and Nongalactic Astrophysics +0909.1813 Materials Science +0909.1815 High Energy Astrophysical Phenomena +0909.1826 Experiment +0909.1829 Astrophysics of Galaxies +0909.1833 Pattern Formation and Solitons +0909.1838 Classical Analysis and ODEs +0909.1839 Astrophysics of Galaxies +0909.1848 Theory +0909.1849 Algebraic Geometry +0909.1858 Cryptography and Security +0909.1859 Metric Geometry +0909.1861 +0909.1863 Statistics Theory +0909.1865 Astrophysics of Galaxies +0909.1869 Theory +0909.1870 Data Structures and Algorithms +0909.1872 Strongly Correlated Electrons +0909.1874 +0909.1881 Quantum Algebra +0909.1886 Earth and Planetary Astrophysics +0909.1888 Algebraic Geometry +0909.1889 Algebraic Geometry +0909.1890 Atmospheric and Oceanic Physics +0909.1895 Probability +0909.1900 Commutative Algebra +0909.1902 Spectral Theory +0909.1904 Algebraic Geometry +0909.1915 Statistics Theory +0909.1920 Mesoscale and Nanoscale Physics +0909.1923 Algebraic Geometry +0909.1932 Analysis of PDEs +0909.1934 Superconductivity +0909.1939 Combinatorics +0909.1943 Algebraic Geometry +0909.1946 Soft Condensed Matter +0909.1947 Algebraic Geometry +0909.1950 Instrumentation and Methods for Astrophysics +0909.1961 Cosmology and Nongalactic Astrophysics +0909.1967 Differential Geometry +0909.1977 Programming Languages +0909.1978 Strongly Correlated Electrons +0909.1980 Analysis of PDEs +0909.1984 Representation Theory +0909.1987 Classical Analysis and ODEs +0909.1988 Statistics Theory +0909.1991 Combinatorics +0909.2000 Data Structures and Algorithms +0909.2001 Mesoscale and Nanoscale Physics +0909.2005 Data Structures and Algorithms +0909.2013 Algebraic Geometry +0909.2024 Networking and Internet Architecture +astro-ph/0108295 +astro-ph/0110225 +astro-ph/0211258 +astro-ph/0308403 +astro-ph/0309144 +astro-ph/0310911 +astro-ph/0310913 +astro-ph/0402387 +astro-ph/0410525 +astro-ph/0411153 +astro-ph/0503023 +astro-ph/0504501 +astro-ph/9602077 +astro-ph/9605128 +astro-ph/9712103 +astro-ph/9811457 +astro-ph/9812211 +astro-ph/9902242 +gr-qc/0006004 +gr-qc/0007044 +gr-qc/0312044 +gr-qc/0405066 +gr-qc/0407089 +gr-qc/0501060 +gr-qc/0508105 +gr-qc/9602011 +gr-qc/9712051 +gr-qc/9810086 +gr-qc/9904068 +gr-qc/9905048 +gr-qc/9911055 +hep-ex/0111056 Experiment +hep-ex/9903005 Experiment +hep-ph/0001005 Phenomenology +hep-ph/0001122 Phenomenology +hep-ph/0002014 Phenomenology +hep-ph/0002065 Phenomenology +hep-ph/0002156 Phenomenology +hep-ph/0002220 Phenomenology +hep-ph/0005322 Phenomenology +hep-ph/0006050 Phenomenology +hep-ph/0007350 Phenomenology +hep-ph/0008276 Phenomenology +hep-ph/0009194 Phenomenology +hep-ph/0009229 Phenomenology +hep-ph/0009254 Phenomenology +hep-ph/0009338 Phenomenology +hep-ph/0009355 Phenomenology +hep-ph/0010343 Phenomenology +hep-ph/0011372 Phenomenology +hep-ph/0012067 Phenomenology +hep-ph/0012379 Phenomenology +hep-ph/0102331 Phenomenology +hep-ph/0103256 Phenomenology +hep-ph/0103288 Phenomenology +hep-ph/0104291 Phenomenology +hep-ph/0105004 Phenomenology +hep-ph/0105061 Phenomenology +hep-ph/0105239 Phenomenology +hep-ph/0105259 Phenomenology +hep-ph/0106204 Phenomenology +hep-ph/0107038 Phenomenology +hep-ph/0108259 Phenomenology +hep-ph/0110192 Phenomenology +hep-ph/0111127 Phenomenology +hep-ph/0111294 Phenomenology +hep-ph/0111324 Phenomenology +hep-ph/0111340 Phenomenology +hep-ph/0112013 Phenomenology +hep-ph/0112309 Phenomenology +hep-ph/0201165 Phenomenology +hep-ph/0202110 Phenomenology +hep-ph/0202141 Phenomenology +hep-ph/0204197 Phenomenology +hep-ph/0204206 Phenomenology +hep-ph/0205336 Phenomenology +hep-ph/0206110 Phenomenology +hep-ph/0206148 Phenomenology +hep-ph/0206174 Phenomenology +hep-ph/0206259 Phenomenology +hep-ph/0206300 Phenomenology +hep-ph/0207297 Phenomenology +hep-ph/0209207 Phenomenology +hep-ph/0211212 Phenomenology +hep-ph/0211322 Phenomenology +hep-ph/0303242 Phenomenology +hep-ph/0305269 Phenomenology +hep-ph/0305292 Phenomenology +hep-ph/0306219 Phenomenology +hep-ph/0310277 Phenomenology +hep-ph/0310289 Phenomenology +hep-ph/0310322 Phenomenology +hep-ph/0310356 Phenomenology +hep-ph/0311218 Phenomenology +hep-ph/0311355 Phenomenology +hep-ph/0403058 Phenomenology +hep-ph/0403144 Phenomenology +hep-ph/0403180 Phenomenology +hep-ph/0404186 Phenomenology +hep-ph/0406325 Phenomenology +hep-ph/0408067 Phenomenology +hep-ph/0408071 Phenomenology +hep-ph/0408118 Phenomenology +hep-ph/0408131 Phenomenology +hep-ph/0409119 Phenomenology +hep-ph/0409279 Phenomenology +hep-ph/0411028 Phenomenology +hep-ph/0411029 Phenomenology +hep-ph/0411046 Phenomenology +hep-ph/0411056 Phenomenology +hep-ph/0411216 Phenomenology +hep-ph/0411369 Phenomenology +hep-ph/0411379 Phenomenology +hep-ph/0501115 Phenomenology +hep-ph/0504196 Phenomenology +hep-ph/0506122 Phenomenology +hep-ph/0507046 Phenomenology +hep-ph/0508169 Phenomenology +hep-ph/0508295 Phenomenology +hep-ph/0509269 Phenomenology +hep-ph/0509331 Phenomenology +hep-ph/0510240 Phenomenology +hep-ph/0602199 Phenomenology +hep-ph/0605288 Phenomenology +hep-ph/0611237 Phenomenology +hep-ph/0612292 Phenomenology +hep-ph/0701049 Phenomenology +hep-ph/0702114 Phenomenology +hep-ph/9204212 Phenomenology +hep-ph/9207237 Phenomenology +hep-ph/9207278 Phenomenology +hep-ph/9209239 Phenomenology +hep-ph/9209244 Phenomenology +hep-ph/9209291 Phenomenology +hep-ph/9210262 Phenomenology +hep-ph/9211254 Phenomenology +hep-ph/9211325 Phenomenology +hep-ph/9302221 Phenomenology +hep-ph/9303273 Phenomenology +hep-ph/9303307 Phenomenology +hep-ph/9305296 Phenomenology +hep-ph/9308205 Phenomenology +hep-ph/9308212 Phenomenology +hep-ph/9310337 Phenomenology +hep-ph/9310364 Phenomenology +hep-ph/9310365 Phenomenology +hep-ph/9406227 Phenomenology +hep-ph/9410307 Phenomenology +hep-ph/9412221 Phenomenology +hep-ph/9412334 Phenomenology +hep-ph/9503411 Phenomenology +hep-ph/9505276 Phenomenology +hep-ph/9505340 Phenomenology +hep-ph/9505438 Phenomenology +hep-ph/9505441 Phenomenology +hep-ph/9506266 Phenomenology +hep-ph/9506280 Phenomenology +hep-ph/9506474 Phenomenology +hep-ph/9507424 Phenomenology +hep-ph/9508274 Phenomenology +hep-ph/9509312 Phenomenology +hep-ph/9510246 Phenomenology +hep-ph/9511321 Phenomenology +hep-ph/9512288 Phenomenology +hep-ph/9512300 Phenomenology +hep-ph/9512367 Phenomenology +hep-ph/9602211 Phenomenology +hep-ph/9603342 Phenomenology +hep-ph/9604360 Phenomenology +hep-ph/9604393 Phenomenology +hep-ph/9604432 Phenomenology +hep-ph/9605425 Phenomenology +hep-ph/9607202 Phenomenology +hep-ph/9607292 Phenomenology +hep-ph/9607404 Phenomenology +hep-ph/9608486 Phenomenology +hep-ph/9609415 Phenomenology +hep-ph/9609451 Phenomenology +hep-ph/9610260 Phenomenology +hep-ph/9610304 Phenomenology +hep-ph/9611254 Phenomenology +hep-ph/9611278 Phenomenology +hep-ph/9611466 Phenomenology +hep-ph/9612376 Phenomenology +hep-ph/9701243 Phenomenology +hep-ph/9701292 Phenomenology +hep-ph/9702247 Phenomenology +hep-ph/9703276 Phenomenology +hep-ph/9705413 Phenomenology +hep-ph/9705416 Phenomenology +hep-ph/9705444 Phenomenology +hep-ph/9706427 Phenomenology +hep-ph/9706467 Phenomenology +hep-ph/9707382 Phenomenology +hep-ph/9707543 Phenomenology +hep-ph/9708312 Phenomenology +hep-ph/9710302 Phenomenology +hep-ph/9710324 Phenomenology +hep-ph/9711413 Phenomenology +hep-ph/9711476 Phenomenology +hep-ph/9712234 Phenomenology +hep-ph/9801288 Phenomenology +hep-ph/9801330 Phenomenology +hep-ph/9803308 Phenomenology +hep-ph/9803333 Phenomenology +hep-ph/9803497 Phenomenology +hep-ph/9804300 Phenomenology +hep-ph/9805316 Phenomenology +hep-ph/9805377 Phenomenology +hep-ph/9805478 Phenomenology +hep-ph/9805510 Phenomenology +hep-ph/9806289 Phenomenology +hep-ph/9806358 Phenomenology +hep-ph/9806541 Phenomenology +hep-ph/9807399 Phenomenology +hep-ph/9807451 Phenomenology +hep-ph/9807482 Phenomenology +hep-ph/9808251 Phenomenology +hep-ph/9808275 Phenomenology +hep-ph/9808293 Phenomenology +hep-ph/9809470 Phenomenology +hep-ph/9810392 Phenomenology +hep-ph/9810424 Phenomenology +hep-ph/9811270 Phenomenology +hep-ph/9811284 Phenomenology +hep-ph/9812277 Phenomenology +hep-ph/9901229 Phenomenology +hep-ph/9901244 Phenomenology +hep-ph/9902364 Phenomenology +hep-ph/9903386 Phenomenology +hep-ph/9903388 Phenomenology +hep-ph/9904279 Phenomenology +hep-ph/9904280 Phenomenology +hep-ph/9905481 Phenomenology +hep-ph/9906324 Phenomenology +hep-ph/9906382 Phenomenology +hep-ph/9906423 Phenomenology +hep-ph/9907458 Phenomenology +hep-ph/9907476 Phenomenology +hep-ph/9908330 Phenomenology +hep-ph/9909235 Phenomenology +hep-ph/9909311 Phenomenology +hep-ph/9911459 Phenomenology +hep-ph/9912324 Phenomenology +hep-th/0002102 Theory +hep-th/0003082 Theory +hep-th/0007115 Theory +hep-th/0012216 Theory +hep-th/0103135 Theory +hep-th/0104005 Theory +hep-th/0107246 Theory +hep-th/0112104 Theory +hep-th/0206087 Theory +hep-th/0207188 Theory +hep-th/0209038 Theory +hep-th/0212272 Theory +hep-th/0408108 Theory +hep-th/0412240 Theory +hep-th/0501022 Theory +hep-th/9108023 Theory +hep-th/9109027 Theory +hep-th/9110009 Theory +hep-th/9111031 Theory +hep-th/9112036 Theory +hep-th/9112062 Theory +hep-th/9203012 Theory +hep-th/9205107 Theory +hep-th/9206077 Theory +hep-th/9207103 Theory +hep-th/9209034 Theory +hep-th/9212057 Theory +hep-th/9302086 Theory +hep-th/9305116 Theory +hep-th/9503162 Theory +hep-th/9512032 Theory +hep-th/9605046 Theory +hep-th/9605211 Theory +hep-th/9609238 Theory +hep-th/9611067 Theory +hep-th/9704169 Theory +hep-th/9709049 Theory +hep-th/9709178 Theory +hep-th/9710088 Theory +hep-th/9711163 Theory +hep-th/9802120 Theory +hep-th/9804084 Theory +hep-th/9805120 Theory +hep-th/9806136 Theory +hep-th/9808172 Theory +hep-th/9811133 Theory +hep-th/9902190 Theory +hep-th/9907141 Theory +hep-th/9909068 Theory +math-ph/9902004 +math/0402221 Differential Geometry +math/0510543 Representation Theory +nucl-th/0305068 +0801.3058 Geometric Topology +0805.0645 +0805.4698 +0807.4751 Soft Condensed Matter +0808.0700 Experiment +0808.1613 Materials Science +0809.3299 Algebraic Geometry +0812.2746 +0901.0340 Cosmology and Nongalactic Astrophysics +0901.1475 General Physics +0901.2112 Solar and Stellar Astrophysics +0901.3789 Solar and Stellar Astrophysics +0902.1475 Computers and Society +0902.4474 +0903.2636 Solar and Stellar Astrophysics +0905.0805 Mesoscale and Nanoscale Physics +cond-mat/0608595 Materials Science +math/0505644 Differential Geometry +math/0505646 Geometric Topology +math/0509061 Spectral Theory +math/0703248 Operator Algebras +0709.0467 Algebraic Geometry +0711.3035 Methodology +0711.3040 Statistical Mechanics +0712.0789 +0804.0330 +0805.3136 +0806.0634 Theory +0806.2533 Information Theory +0807.2401 Superconductivity +0807.4662 +0810.2912 +0811.4100 Classical Analysis and ODEs +0901.3120 Algebraic Geometry +0903.4772 +0903.5547 Superconductivity +0905.2289 Theory +0905.2536 Algebraic Geometry +0906.0969 Materials Science +0906.2610 Quantum Gases +0906.4194 Theory +0906.4206 Phenomenology +0907.5409 Other Condensed Matter +0908.2130 Mesoscale and Nanoscale Physics +0909.1658 Phenomenology +0909.3548 Analysis of PDEs +0910.4527 +0910.5128 +0910.5204 Cosmology and Nongalactic Astrophysics +0910.5499 Strongly Correlated Electrons +adap-org/9901003 Adaptation and Self-Organizing Systems +adap-org/9901004 Adaptation and Self-Organizing Systems +adap-org/9902001 Adaptation and Self-Organizing Systems +adap-org/9903006 Adaptation and Self-Organizing Systems +adap-org/9903008 Adaptation and Self-Organizing Systems +adap-org/9904001 Adaptation and Self-Organizing Systems +adap-org/9904004 Adaptation and Self-Organizing Systems +adap-org/9905003 Adaptation and Self-Organizing Systems +adap-org/9906001 Adaptation and Self-Organizing Systems +adap-org/9906003 Adaptation and Self-Organizing Systems +adap-org/9906004 Adaptation and Self-Organizing Systems +adap-org/9907001 Adaptation and Self-Organizing Systems +adap-org/9907003 Adaptation and Self-Organizing Systems +adap-org/9907006 Adaptation and Self-Organizing Systems +adap-org/9907008 Adaptation and Self-Organizing Systems +adap-org/9909001 Adaptation and Self-Organizing Systems +adap-org/9911005 Adaptation and Self-Organizing Systems +adap-org/9912001 Adaptation and Self-Organizing Systems +adap-org/9912003 Adaptation and Self-Organizing Systems +adap-org/9912005 Adaptation and Self-Organizing Systems +astro-ph/0001005 +astro-ph/0001006 +astro-ph/0001007 +astro-ph/0001011 +astro-ph/0001013 +astro-ph/0001016 +astro-ph/0001019 +astro-ph/0001021 +astro-ph/0001022 +astro-ph/0001024 +astro-ph/0001025 +astro-ph/0001026 +astro-ph/0001027 +astro-ph/0001033 +astro-ph/0001035 +astro-ph/0001039 +astro-ph/0001041 +astro-ph/0001043 +astro-ph/0001044 +astro-ph/0001046 +astro-ph/0001049 +astro-ph/0001054 +astro-ph/0001055 +astro-ph/0001056 +astro-ph/0001062 +astro-ph/0001066 +astro-ph/0001067 +astro-ph/0001071 +astro-ph/0001075 +astro-ph/0001076 +astro-ph/0001077 +astro-ph/0001080 +astro-ph/0001082 +astro-ph/0001084 +astro-ph/0001085 +astro-ph/0001086 +astro-ph/0001089 +astro-ph/0001090 +astro-ph/0001092 +astro-ph/0001094 +astro-ph/0001095 +astro-ph/0001096 +astro-ph/0001099 +astro-ph/0001101 +astro-ph/0001109 +astro-ph/0001114 +astro-ph/0001116 +astro-ph/0001118 +astro-ph/0001120 +astro-ph/0001121 +astro-ph/0001122 +astro-ph/0001124 +astro-ph/0001129 +astro-ph/0001130 +astro-ph/0001132 +astro-ph/0001135 +astro-ph/0001138 +astro-ph/0001140 +astro-ph/0001141 +astro-ph/0001142 +astro-ph/0001143 +astro-ph/0001144 +astro-ph/0001146 +astro-ph/0001147 +astro-ph/0001148 +astro-ph/0001149 +astro-ph/0001150 +astro-ph/0001152 +astro-ph/0001153 +astro-ph/0001154 +astro-ph/0001157 +astro-ph/0001158 +astro-ph/0001160 +astro-ph/0001162 +astro-ph/0001163 +astro-ph/0001164 +astro-ph/0001165 +astro-ph/0001166 +astro-ph/0001169 +astro-ph/0001172 +astro-ph/0001174 +astro-ph/0001175 +astro-ph/0001177 +astro-ph/0001178 +astro-ph/0001179 +astro-ph/0001181 +astro-ph/0001182 +astro-ph/0001189 +astro-ph/0001192 +astro-ph/0001193 +astro-ph/0001197 +astro-ph/0001199 +astro-ph/0001200 +astro-ph/0001201 +astro-ph/0001203 +astro-ph/0001206 +astro-ph/0001209 +astro-ph/0001210 +astro-ph/0001212 +astro-ph/0001216 +astro-ph/0001217 +astro-ph/0001218 +astro-ph/0001220 +astro-ph/0001222 +astro-ph/0001223 +astro-ph/0001224 +astro-ph/0001227 +astro-ph/0001228 +astro-ph/0001233 +astro-ph/0001239 +astro-ph/0001243 +astro-ph/0001244 +astro-ph/0001246 +astro-ph/0001248 +astro-ph/0001249 +astro-ph/0001252 +astro-ph/0001256 +astro-ph/0001257 +astro-ph/0001258 +astro-ph/0001260 +astro-ph/0001269 +astro-ph/0001270 +astro-ph/0001272 +astro-ph/0001273 +astro-ph/0001275 +astro-ph/0001277 +astro-ph/0001278 +astro-ph/0001281 +astro-ph/0001283 +astro-ph/0001284 +astro-ph/0001285 +astro-ph/0001289 +astro-ph/0001290 +astro-ph/0001292 +astro-ph/0001297 +astro-ph/0001298 +astro-ph/0001299 +astro-ph/0001303 +astro-ph/0001306 +astro-ph/0001307 +astro-ph/0001308 +astro-ph/0001309 +astro-ph/0001310 +astro-ph/0001311 +astro-ph/0001313 +astro-ph/0001316 +astro-ph/0001318 +astro-ph/0001321 +astro-ph/0001323 +astro-ph/0001324 +astro-ph/0001326 +astro-ph/0001328 +astro-ph/0001329 +astro-ph/0001330 +astro-ph/0001331 +astro-ph/0001333 +astro-ph/0001334 +astro-ph/0001335 +astro-ph/0001338 +astro-ph/0001339 +astro-ph/0001340 +astro-ph/0001341 +astro-ph/0001342 +astro-ph/0001343 +astro-ph/0001345 +astro-ph/0001346 +astro-ph/0001347 +astro-ph/0001348 +astro-ph/0001353 +astro-ph/0001354 +astro-ph/0001356 +astro-ph/0001358 +astro-ph/0001362 +astro-ph/0001363 +astro-ph/0001367 +astro-ph/0001369 +astro-ph/0001370 +astro-ph/0001372 +astro-ph/0001373 +astro-ph/0001380 +astro-ph/0001381 +astro-ph/0001385 +astro-ph/0001387 +astro-ph/0001389 +astro-ph/0001390 +astro-ph/0001393 +astro-ph/0001394 +astro-ph/0001395 +astro-ph/0001396 +astro-ph/0001398 +astro-ph/0001399 +astro-ph/0001400 +astro-ph/0001401 +astro-ph/0001404 +astro-ph/0001405 +astro-ph/0001408 +astro-ph/0001410 +astro-ph/0001414 +astro-ph/0001415 +astro-ph/0001420 +astro-ph/0001421 +astro-ph/0001422 +astro-ph/0001423 +astro-ph/0001424 +astro-ph/0001425 +astro-ph/0001428 +astro-ph/0001430 +astro-ph/0001431 +astro-ph/0001435 +astro-ph/0001436 +astro-ph/0001437 +astro-ph/0001438 +astro-ph/0001439 +astro-ph/0001440 +astro-ph/0001442 +astro-ph/0001443 +astro-ph/0001446 +astro-ph/0001447 +astro-ph/0001448 +astro-ph/0001449 +astro-ph/0001450 +astro-ph/0001458 +astro-ph/0001459 +astro-ph/0001461 +astro-ph/0001463 +astro-ph/0001464 +astro-ph/0001465 +astro-ph/0001468 +astro-ph/0001470 +astro-ph/0001471 +astro-ph/0001472 +astro-ph/0001478 +astro-ph/0001480 +astro-ph/0001481 +astro-ph/0001482 +astro-ph/0001484 +astro-ph/0001485 +astro-ph/0001487 +astro-ph/0001489 +astro-ph/0001490 +astro-ph/0001494 +astro-ph/0001495 +astro-ph/0001497 +astro-ph/0001498 +astro-ph/0001500 +astro-ph/0001502 +astro-ph/0001504 +astro-ph/0001506 +astro-ph/0001508 +astro-ph/0001509 +astro-ph/0001512 +astro-ph/0001514 +astro-ph/0001517 +astro-ph/0001522 +astro-ph/0001525 +astro-ph/0001526 +astro-ph/0001532 +astro-ph/0001534 +astro-ph/0001536 +astro-ph/0001537 +astro-ph/0001539 +astro-ph/0001540 +astro-ph/0001541 +astro-ph/0001543 +astro-ph/0001544 +astro-ph/0001546 +astro-ph/0002001 +astro-ph/0002004 +astro-ph/0002008 +astro-ph/0002010 +astro-ph/0002011 +astro-ph/0002012 +astro-ph/0002017 +astro-ph/0002020 +astro-ph/0002021 +astro-ph/0002022 +astro-ph/0002023 +astro-ph/0002032 +astro-ph/0002033 +astro-ph/0002034 +astro-ph/0002035 +astro-ph/0002036 +astro-ph/0002037 +astro-ph/0002038 +astro-ph/0002039 +astro-ph/0002040 +astro-ph/0002041 +astro-ph/0002042 +astro-ph/0002043 +astro-ph/0002044 +astro-ph/0002045 +astro-ph/0002046 +astro-ph/0002047 +astro-ph/0002049 +astro-ph/0002051 +astro-ph/0002052 +astro-ph/0002058 +astro-ph/0002062 +astro-ph/0002063 +astro-ph/0002065 +astro-ph/0002068 +astro-ph/0002074 +astro-ph/0002078 +astro-ph/0002079 +astro-ph/0002080 +astro-ph/0002081 +astro-ph/0002082 +astro-ph/0002083 +astro-ph/0002084 +astro-ph/0002085 +astro-ph/0002086 +astro-ph/0002089 +astro-ph/0002092 +astro-ph/0002093 +astro-ph/0002094 +astro-ph/0002102 +astro-ph/0002103 +astro-ph/0002104 +astro-ph/0002105 +astro-ph/0002106 +astro-ph/0002107 +astro-ph/0002108 +astro-ph/0002111 +astro-ph/0002113 +astro-ph/0002114 +astro-ph/0002116 +astro-ph/0002119 +astro-ph/0002121 +astro-ph/0002122 +astro-ph/0002123 +astro-ph/0002125 +astro-ph/0002130 +astro-ph/0002132 +astro-ph/0002134 +astro-ph/0002135 +astro-ph/0002137 +astro-ph/0002138 +astro-ph/0002140 +astro-ph/0002143 +astro-ph/0002146 +astro-ph/0002147 +astro-ph/0002148 +astro-ph/0002149 +astro-ph/0002150 +astro-ph/0002153 +astro-ph/0002154 +astro-ph/0002155 +astro-ph/0002156 +astro-ph/0002159 +astro-ph/0002160 +astro-ph/0002162 +astro-ph/0002164 +astro-ph/0002166 +astro-ph/0002167 +astro-ph/0002168 +astro-ph/0002170 +astro-ph/0002172 +astro-ph/0002173 +astro-ph/0002174 +astro-ph/0002175 +astro-ph/0002176 +astro-ph/0002179 +astro-ph/0002180 +astro-ph/0002181 +astro-ph/0002183 +astro-ph/0002185 +astro-ph/0002186 +astro-ph/0002187 +astro-ph/0002189 +astro-ph/0002191 +astro-ph/0002192 +astro-ph/0002196 +astro-ph/0002199 +astro-ph/0002201 +astro-ph/0002206 +astro-ph/0002207 +astro-ph/0002212 +astro-ph/0002214 +astro-ph/0002215 +astro-ph/0002217 +astro-ph/0002219 +astro-ph/0002220 +astro-ph/0002222 +astro-ph/0002223 +astro-ph/0002224 +astro-ph/0002227 +astro-ph/0002228 +astro-ph/0002230 +astro-ph/0002233 +astro-ph/0002234 +astro-ph/0002237 +astro-ph/0002239 +astro-ph/0002241 +astro-ph/0002242 +astro-ph/0002243 +astro-ph/0002251 +astro-ph/0002252 +astro-ph/0002255 +astro-ph/0002257 +astro-ph/0002258 +astro-ph/0002261 +astro-ph/0002262 +astro-ph/0002263 +astro-ph/0002264 +astro-ph/0002265 +astro-ph/0002266 +astro-ph/0002271 +astro-ph/0002277 +astro-ph/0002279 +astro-ph/0002286 +astro-ph/0002288 +astro-ph/0002292 +astro-ph/0002294 +astro-ph/0002295 +astro-ph/0002299 +astro-ph/0002305 +astro-ph/0002306 +astro-ph/0002312 +astro-ph/0002314 +astro-ph/0002317 +astro-ph/0002318 +astro-ph/0002319 +astro-ph/0002321 +astro-ph/0002322 +astro-ph/0002323 +astro-ph/0002324 +astro-ph/0002326 +astro-ph/0002327 +astro-ph/0002329 +astro-ph/0002330 +astro-ph/0002331 +astro-ph/0002333 +astro-ph/0002335 +astro-ph/0002337 +astro-ph/0002338 +astro-ph/0002339 +astro-ph/0002342 +astro-ph/0002346 +astro-ph/0002348 +astro-ph/0002350 +astro-ph/0002355 +astro-ph/0002359 +astro-ph/0002362 +astro-ph/0002364 +astro-ph/0002365 +astro-ph/0002366 +astro-ph/0002367 +astro-ph/0002368 +astro-ph/0002369 +astro-ph/0002370 +astro-ph/0002374 +astro-ph/0002376 +astro-ph/0002377 +astro-ph/0002378 +astro-ph/0002382 +astro-ph/0002384 +astro-ph/0002385 +astro-ph/0002386 +astro-ph/0002387 +astro-ph/0002395 +astro-ph/0002396 +astro-ph/0002397 +astro-ph/0002398 +astro-ph/0002399 +astro-ph/0002401 +astro-ph/0002402 +astro-ph/0002404 +astro-ph/0002405 +astro-ph/0002409 +astro-ph/0002412 +astro-ph/0002413 +astro-ph/0002416 +astro-ph/0002419 +astro-ph/0002420 +astro-ph/0002421 +astro-ph/0002425 +astro-ph/0002426 +astro-ph/0002430 +astro-ph/0002431 +astro-ph/0002432 +astro-ph/0002436 +astro-ph/0002437 +astro-ph/0002438 +astro-ph/0002439 +astro-ph/0002441 +astro-ph/0002442 +astro-ph/0002443 +astro-ph/0002444 +astro-ph/0002445 +astro-ph/0002446 +astro-ph/0002450 +astro-ph/0002457 +astro-ph/0002458 +astro-ph/0002459 +astro-ph/0002461 +astro-ph/0002467 +astro-ph/0002469 +astro-ph/0002472 +astro-ph/0002479 +astro-ph/0002481 +astro-ph/0002483 +astro-ph/0002484 +astro-ph/0002490 +astro-ph/0002491 +astro-ph/0002493 +astro-ph/0002494 +astro-ph/0002495 +astro-ph/0002497 +astro-ph/0002499 +astro-ph/0002502 +astro-ph/0002504 +astro-ph/0002508 +astro-ph/0002510 +astro-ph/0002511 +astro-ph/0002512 +astro-ph/0002513 +astro-ph/0002517 +astro-ph/0002521 +astro-ph/0002523 +astro-ph/0002526 +astro-ph/0002527 +astro-ph/0002529 +astro-ph/0002530 +astro-ph/0003001 +astro-ph/0003002 +astro-ph/0003003 +astro-ph/0003004 +astro-ph/0003006 +astro-ph/0003011 +astro-ph/0003012 +astro-ph/0003015 +astro-ph/0003016 +astro-ph/0003018 +astro-ph/0003019 +astro-ph/0003020 +astro-ph/0003021 +astro-ph/0003028 +astro-ph/0003030 +astro-ph/0003032 +astro-ph/0003035 +astro-ph/0003036 +astro-ph/0003037 +astro-ph/0003038 +astro-ph/0003045 +astro-ph/0003046 +astro-ph/0003047 +astro-ph/0003048 +astro-ph/0003050 +astro-ph/0003052 +astro-ph/0003053 +astro-ph/0003055 +astro-ph/0003056 +astro-ph/0003058 +astro-ph/0003059 +astro-ph/0003060 +astro-ph/0003066 +astro-ph/0003067 +astro-ph/0003068 +astro-ph/0003070 +astro-ph/0003076 +astro-ph/0003079 +astro-ph/0003080 +astro-ph/0003084 +astro-ph/0003085 +astro-ph/0003086 +astro-ph/0003088 +astro-ph/0003089 +astro-ph/0003090 +astro-ph/0003092 +astro-ph/0003094 +astro-ph/0003095 +astro-ph/0003096 +astro-ph/0003097 +astro-ph/0003099 +astro-ph/0003101 +astro-ph/0003103 +astro-ph/0003104 +astro-ph/0003106 +astro-ph/0003109 +astro-ph/0003112 +astro-ph/0003113 +astro-ph/0003114 +astro-ph/0003115 +astro-ph/0003116 +astro-ph/0003117 +astro-ph/0003121 +astro-ph/0003122 +astro-ph/0003123 +astro-ph/0003124 +astro-ph/0003127 +astro-ph/0003128 +astro-ph/0003129 +astro-ph/0003130 +astro-ph/0003133 +astro-ph/0003134 +astro-ph/0003135 +astro-ph/0003136 +astro-ph/0003138 +astro-ph/0003141 +astro-ph/0003142 +astro-ph/0003144 +astro-ph/0003145 +astro-ph/0003146 +astro-ph/0003157 +astro-ph/0003158 +astro-ph/0003164 +astro-ph/0003170 +astro-ph/0003172 +astro-ph/0003174 +astro-ph/0003176 +astro-ph/0003178 +astro-ph/0003181 +astro-ph/0003182 +astro-ph/0003183 +astro-ph/0003184 +astro-ph/0003185 +astro-ph/0003186 +astro-ph/0003187 +astro-ph/0003188 +astro-ph/0003193 +astro-ph/0003196 +astro-ph/0003199 +astro-ph/0003200 +astro-ph/0003202 +astro-ph/0003203 +astro-ph/0003205 +astro-ph/0003207 +astro-ph/0003208 +astro-ph/0003209 +astro-ph/0003210 +astro-ph/0003211 +astro-ph/0003212 +astro-ph/0003213 +astro-ph/0003214 +astro-ph/0003216 +astro-ph/0003217 +astro-ph/0003218 +astro-ph/0003228 +astro-ph/0003229 +astro-ph/0003231 +astro-ph/0003235 +astro-ph/0003236 +astro-ph/0003237 +astro-ph/0003238 +astro-ph/0003240 +astro-ph/0003241 +astro-ph/0003242 +astro-ph/0003243 +astro-ph/0003244 +astro-ph/0003245 +astro-ph/0003248 +astro-ph/0003251 +astro-ph/0003252 +astro-ph/0003255 +astro-ph/0003258 +astro-ph/0003259 +astro-ph/0003262 +astro-ph/0003263 +astro-ph/0003264 +astro-ph/0003265 +astro-ph/0003266 +astro-ph/0003267 +astro-ph/0003268 +astro-ph/0003269 +astro-ph/0003272 +astro-ph/0003273 +astro-ph/0003274 +astro-ph/0003276 +astro-ph/0003277 +astro-ph/0003278 +astro-ph/0003283 +astro-ph/0003285 +astro-ph/0003286 +astro-ph/0003287 +astro-ph/0003289 +astro-ph/0003290 +astro-ph/0003291 +astro-ph/0003292 +astro-ph/0003294 +astro-ph/0003295 +astro-ph/0003296 +astro-ph/0003297 +astro-ph/0003299 +astro-ph/0003304 +astro-ph/0003305 +astro-ph/0003306 +astro-ph/0003307 +astro-ph/0003309 +astro-ph/0003310 +astro-ph/0003311 +astro-ph/0003312 +astro-ph/0003316 +astro-ph/0003322 +astro-ph/0003323 +astro-ph/0003324 +astro-ph/0003326 +astro-ph/0003329 +astro-ph/0003330 +astro-ph/0003331 +astro-ph/0003333 +astro-ph/0003337 +astro-ph/0003342 +astro-ph/0003344 +astro-ph/0003345 +astro-ph/0003351 +astro-ph/0003353 +astro-ph/0003354 +astro-ph/0003355 +astro-ph/0003356 +astro-ph/0003357 +astro-ph/0003358 +astro-ph/0003359 +astro-ph/0003360 +astro-ph/0003361 +astro-ph/0003362 +astro-ph/0003365 +astro-ph/0003366 +astro-ph/0003368 +astro-ph/0003375 +astro-ph/0003382 +astro-ph/0003385 +astro-ph/0003389 +astro-ph/0003392 +astro-ph/0003394 +astro-ph/0003395 +astro-ph/0003400 +astro-ph/0003402 +astro-ph/0003403 +astro-ph/0003404 +astro-ph/0003406 +astro-ph/0003408 +astro-ph/0003410 +astro-ph/0003412 +astro-ph/0003413 +astro-ph/0003415 +astro-ph/0003419 +astro-ph/0003421 +astro-ph/0003423 +astro-ph/0003424 +astro-ph/0003425 +astro-ph/0003426 +astro-ph/0003429 +astro-ph/0003431 +astro-ph/0003433 +astro-ph/0003436 +astro-ph/0003437 +astro-ph/0003438 +astro-ph/0003439 +astro-ph/0003441 +astro-ph/0003443 +astro-ph/0003445 +astro-ph/0003446 +astro-ph/0003448 +astro-ph/0003452 +astro-ph/0003453 +astro-ph/0003461 +astro-ph/0003462 +astro-ph/0003465 +astro-ph/0003466 +astro-ph/0003467 +astro-ph/0003469 +astro-ph/0003470 +astro-ph/0003471 +astro-ph/0003473 +astro-ph/0003475 +astro-ph/0003476 +astro-ph/0003478 +astro-ph/0003482 +astro-ph/0003486 +astro-ph/0004001 +astro-ph/0004006 +astro-ph/0004008 +astro-ph/0004010 +astro-ph/0004011 +astro-ph/0004012 +astro-ph/0004015 +astro-ph/0004016 +astro-ph/0004017 +astro-ph/0004019 +astro-ph/0004024 +astro-ph/0004026 +astro-ph/0004028 +astro-ph/0004031 +astro-ph/0004033 +astro-ph/0004034 +astro-ph/0004035 +astro-ph/0004037 +astro-ph/0004038 +astro-ph/0004039 +astro-ph/0004041 +astro-ph/0004044 +astro-ph/0004047 +astro-ph/0004048 +astro-ph/0004053 +astro-ph/0004054 +astro-ph/0004055 +astro-ph/0004057 +astro-ph/0004059 +astro-ph/0004060 +astro-ph/0004061 +astro-ph/0004064 +astro-ph/0004065 +astro-ph/0004066 +astro-ph/0004067 +astro-ph/0004068 +astro-ph/0004071 +astro-ph/0004073 +astro-ph/0004074 +astro-ph/0004077 +astro-ph/0004084 +astro-ph/0004086 +astro-ph/0004087 +astro-ph/0004089 +astro-ph/0004091 +astro-ph/0004093 +astro-ph/0004094 +astro-ph/0004095 +astro-ph/0004097 +astro-ph/0004102 +astro-ph/0004105 +astro-ph/0004107 +astro-ph/0004108 +astro-ph/0004110 +astro-ph/0004111 +astro-ph/0004113 +astro-ph/0004115 +astro-ph/0004116 +astro-ph/0004117 +astro-ph/0004118 +astro-ph/0004120 +astro-ph/0004123 +astro-ph/0004125 +astro-ph/0004126 +astro-ph/0004128 +astro-ph/0004130 +astro-ph/0004131 +astro-ph/0004132 +astro-ph/0004135 +astro-ph/0004137 +astro-ph/0004138 +astro-ph/0004144 +astro-ph/0004146 +astro-ph/0004147 +astro-ph/0004148 +astro-ph/0004149 +astro-ph/0004150 +astro-ph/0004151 +astro-ph/0004153 +astro-ph/0004154 +astro-ph/0004155 +astro-ph/0004156 +astro-ph/0004159 +astro-ph/0004163 +astro-ph/0004164 +astro-ph/0004165 +astro-ph/0004166 +astro-ph/0004167 +astro-ph/0004168 +astro-ph/0004169 +astro-ph/0004171 +astro-ph/0004175 +astro-ph/0004179 +astro-ph/0004188 +astro-ph/0004189 +astro-ph/0004190 +astro-ph/0004191 +astro-ph/0004192 +astro-ph/0004193 +astro-ph/0004194 +astro-ph/0004195 +astro-ph/0004196 +astro-ph/0004197 +astro-ph/0004204 +astro-ph/0004205 +astro-ph/0004206 +astro-ph/0004207 +astro-ph/0004212 +astro-ph/0004214 +astro-ph/0004216 +astro-ph/0004217 +astro-ph/0004218 +astro-ph/0004219 +astro-ph/0004221 +astro-ph/0004229 +astro-ph/0004231 +astro-ph/0004232 +astro-ph/0004234 +astro-ph/0004235 +astro-ph/0004238 +astro-ph/0004240 +astro-ph/0004242 +astro-ph/0004246 +astro-ph/0004247 +astro-ph/0004249 +astro-ph/0004252 +astro-ph/0004258 +astro-ph/0004261 +astro-ph/0004262 +astro-ph/0004263 +astro-ph/0004264 +astro-ph/0004266 +astro-ph/0004267 +astro-ph/0004268 +astro-ph/0004271 +astro-ph/0004274 +astro-ph/0004277 +astro-ph/0004284 +astro-ph/0004286 +astro-ph/0004287 +astro-ph/0004289 +astro-ph/0004290 +astro-ph/0004291 +astro-ph/0004293 +astro-ph/0004296 +astro-ph/0004297 +astro-ph/0004298 +astro-ph/0004300 +astro-ph/0004301 +astro-ph/0004302 +astro-ph/0004303 +astro-ph/0004305 +astro-ph/0004308 +astro-ph/0004309 +astro-ph/0004313 +astro-ph/0004314 +astro-ph/0004316 +astro-ph/0004318 +astro-ph/0004319 +astro-ph/0004320 +astro-ph/0004321 +astro-ph/0004323 +astro-ph/0004324 +astro-ph/0004325 +astro-ph/0004326 +astro-ph/0004327 +astro-ph/0004328 +astro-ph/0004329 +astro-ph/0004330 +astro-ph/0004331 +astro-ph/0004334 +astro-ph/0004335 +astro-ph/0004336 +astro-ph/0004337 +astro-ph/0004339 +astro-ph/0004340 +astro-ph/0004344 +astro-ph/0004345 +astro-ph/0004346 +astro-ph/0004347 +astro-ph/0004350 +astro-ph/0004351 +astro-ph/0004352 +astro-ph/0004354 +astro-ph/0004357 +astro-ph/0004358 +astro-ph/0004359 +astro-ph/0004360 +astro-ph/0004361 +astro-ph/0004364 +astro-ph/0004365 +astro-ph/0004367 +astro-ph/0004369 +astro-ph/0004373 +astro-ph/0004374 +astro-ph/0004378 +astro-ph/0004380 +astro-ph/0004381 +astro-ph/0004383 +astro-ph/0004384 +astro-ph/0004387 +astro-ph/0004389 +astro-ph/0004391 +astro-ph/0004392 +astro-ph/0004395 +astro-ph/0004397 +astro-ph/0004401 +astro-ph/0004402 +astro-ph/0004403 +astro-ph/0004407 +astro-ph/0004409 +astro-ph/0004410 +astro-ph/0004411 +astro-ph/0005001 +astro-ph/0005002 +astro-ph/0005008 +astro-ph/0005015 +astro-ph/0005016 +astro-ph/0005017 +astro-ph/0005018 +astro-ph/0005019 +astro-ph/0005020 +astro-ph/0005021 +astro-ph/0005024 +astro-ph/0005025 +astro-ph/0005026 +astro-ph/0005027 +astro-ph/0005028 +astro-ph/0005029 +astro-ph/0005031 +astro-ph/0005032 +astro-ph/0005033 +astro-ph/0005039 +astro-ph/0005041 +astro-ph/0005044 +astro-ph/0005046 +astro-ph/0005047 +astro-ph/0005049 +astro-ph/0005050 +astro-ph/0005051 +astro-ph/0005053 +astro-ph/0005054 +astro-ph/0005066 +astro-ph/0005067 +astro-ph/0005068 +astro-ph/0005070 +astro-ph/0005071 +astro-ph/0005072 +astro-ph/0005077 +astro-ph/0005078 +astro-ph/0005080 +astro-ph/0005081 +astro-ph/0005083 +astro-ph/0005086 +astro-ph/0005090 +astro-ph/0005091 +astro-ph/0005092 +astro-ph/0005093 +astro-ph/0005096 +astro-ph/0005097 +astro-ph/0005098 +astro-ph/0005099 +astro-ph/0005101 +astro-ph/0005105 +astro-ph/0005107 +astro-ph/0005112 +astro-ph/0005114 +astro-ph/0005118 +astro-ph/0005120 +astro-ph/0005121 +astro-ph/0005122 +astro-ph/0005123 +astro-ph/0005124 +astro-ph/0005125 +astro-ph/0005126 +astro-ph/0005127 +astro-ph/0005128 +astro-ph/0005129 +astro-ph/0005130 +astro-ph/0005131 +astro-ph/0005132 +astro-ph/0005133 +astro-ph/0005134 +astro-ph/0005135 +astro-ph/0005136 +astro-ph/0005137 +astro-ph/0005138 +astro-ph/0005139 +astro-ph/0005140 +astro-ph/0005141 +astro-ph/0005142 +astro-ph/0005143 +astro-ph/0005144 +astro-ph/0005145 +astro-ph/0005146 +astro-ph/0005147 +astro-ph/0005148 +astro-ph/0005149 +astro-ph/0005150 +astro-ph/0005151 +astro-ph/0005152 +astro-ph/0005153 +astro-ph/0005154 +astro-ph/0005155 +astro-ph/0005158 +astro-ph/0005159 +astro-ph/0005160 +astro-ph/0005161 +astro-ph/0005171 +astro-ph/0005174 +astro-ph/0005176 +astro-ph/0005181 +astro-ph/0005182 +astro-ph/0005185 +astro-ph/0005186 +astro-ph/0005187 +astro-ph/0005188 +astro-ph/0005194 +astro-ph/0005197 +astro-ph/0005200 +astro-ph/0005203 +astro-ph/0005204 +astro-ph/0005206 +astro-ph/0005207 +astro-ph/0005208 +astro-ph/0005209 +astro-ph/0005211 +astro-ph/0005213 +astro-ph/0005220 +astro-ph/0005222 +astro-ph/0005223 +astro-ph/0005224 +astro-ph/0005225 +astro-ph/0005227 +astro-ph/0005228 +astro-ph/0005230 +astro-ph/0005232 +astro-ph/0005233 +astro-ph/0005234 +astro-ph/0005237 +astro-ph/0005238 +astro-ph/0005239 +astro-ph/0005240 +astro-ph/0005243 +astro-ph/0005244 +astro-ph/0005246 +astro-ph/0005247 +astro-ph/0005250 +astro-ph/0005252 +astro-ph/0005254 +astro-ph/0005255 +astro-ph/0005256 +astro-ph/0005257 +astro-ph/0005261 +astro-ph/0005262 +astro-ph/0005263 +astro-ph/0005264 +astro-ph/0005267 +astro-ph/0005271 +astro-ph/0005272 +astro-ph/0005273 +astro-ph/0005274 +astro-ph/0005278 +astro-ph/0005281 +astro-ph/0005284 +astro-ph/0005285 +astro-ph/0005286 +astro-ph/0005288 +astro-ph/0005289 +astro-ph/0005291 +astro-ph/0005292 +astro-ph/0005294 +astro-ph/0005295 +astro-ph/0005298 +astro-ph/0005302 +astro-ph/0005303 +astro-ph/0005305 +astro-ph/0005306 +astro-ph/0005309 +astro-ph/0005310 +astro-ph/0005311 +astro-ph/0005313 +astro-ph/0005316 +astro-ph/0005317 +astro-ph/0005324 +astro-ph/0005325 +astro-ph/0005326 +astro-ph/0005327 +astro-ph/0005329 +astro-ph/0005330 +astro-ph/0005333 +astro-ph/0005339 +astro-ph/0005340 +astro-ph/0005342 +astro-ph/0005343 +astro-ph/0005346 +astro-ph/0005349 +astro-ph/0005350 +astro-ph/0005351 +astro-ph/0005355 +astro-ph/0005358 +astro-ph/0005359 +astro-ph/0005361 +astro-ph/0005362 +astro-ph/0005363 +astro-ph/0005370 +astro-ph/0005375 +astro-ph/0005378 +astro-ph/0005379 +astro-ph/0005382 +astro-ph/0005383 +astro-ph/0005385 +astro-ph/0005386 +astro-ph/0005387 +astro-ph/0005388 +astro-ph/0005389 +astro-ph/0005392 +astro-ph/0005394 +astro-ph/0005396 +astro-ph/0005398 +astro-ph/0005399 +astro-ph/0005400 +astro-ph/0005405 +astro-ph/0005407 +astro-ph/0005410 +astro-ph/0005411 +astro-ph/0005414 +astro-ph/0005417 +astro-ph/0005419 +astro-ph/0005421 +astro-ph/0005422 +astro-ph/0005423 +astro-ph/0005428 +astro-ph/0005429 +astro-ph/0005430 +astro-ph/0005431 +astro-ph/0005432 +astro-ph/0005433 +astro-ph/0005434 +astro-ph/0005437 +astro-ph/0005438 +astro-ph/0005440 +astro-ph/0005441 +astro-ph/0005442 +astro-ph/0005443 +astro-ph/0005444 +astro-ph/0005450 +astro-ph/0005454 +astro-ph/0005455 +astro-ph/0005459 +astro-ph/0005463 +astro-ph/0005464 +astro-ph/0005465 +astro-ph/0005467 +astro-ph/0005469 +astro-ph/0005471 +astro-ph/0005473 +astro-ph/0005477 +astro-ph/0005481 +astro-ph/0005483 +astro-ph/0005486 +astro-ph/0005487 +astro-ph/0005489 +astro-ph/0005490 +astro-ph/0005491 +astro-ph/0005492 +astro-ph/0005493 +astro-ph/0005494 +astro-ph/0005495 +astro-ph/0005496 +astro-ph/0005497 +astro-ph/0005498 +astro-ph/0005501 +astro-ph/0005506 +astro-ph/0005511 +astro-ph/0005514 +astro-ph/0005518 +astro-ph/0005520 +astro-ph/0005522 +astro-ph/0005527 +astro-ph/0005529 +astro-ph/0005530 +astro-ph/0005531 +astro-ph/0005532 +astro-ph/0005533 +astro-ph/0005534 +astro-ph/0005538 +astro-ph/0005542 +astro-ph/0005543 +astro-ph/0005544 +astro-ph/0005545 +astro-ph/0005547 +astro-ph/0005548 +astro-ph/0005553 +astro-ph/0005555 +astro-ph/0005556 +astro-ph/0005558 +astro-ph/0005559 +astro-ph/0005560 +astro-ph/0005561 +astro-ph/0005562 +astro-ph/0005566 +astro-ph/0005569 +astro-ph/0005570 +astro-ph/0005571 +astro-ph/0005573 +astro-ph/0005574 +astro-ph/0005576 +astro-ph/0005577 +astro-ph/0005578 +astro-ph/0005579 +astro-ph/0005580 +astro-ph/0005583 +astro-ph/0005584 +astro-ph/0005585 +astro-ph/0005586 +astro-ph/0005589 +astro-ph/0005590 +astro-ph/0005591 +astro-ph/0005593 +astro-ph/0005596 +astro-ph/0005597 +astro-ph/0005598 +astro-ph/0005599 +astro-ph/0005607 +astro-ph/0005608 +astro-ph/0006002 +astro-ph/0006003 +astro-ph/0006004 +astro-ph/0006006 +astro-ph/0006007 +astro-ph/0006008 +astro-ph/0006010 +astro-ph/0006015 +astro-ph/0006016 +astro-ph/0006017 +astro-ph/0006020 +astro-ph/0006023 +astro-ph/0006024 +astro-ph/0006026 +astro-ph/0006027 +astro-ph/0006028 +astro-ph/0006029 +astro-ph/0006031 +astro-ph/0006032 +astro-ph/0006033 +astro-ph/0006035 +astro-ph/0006039 +astro-ph/0006042 +astro-ph/0006044 +astro-ph/0006045 +astro-ph/0006046 +astro-ph/0006047 +astro-ph/0006049 +astro-ph/0006051 +astro-ph/0006053 +astro-ph/0006055 +astro-ph/0006058 +astro-ph/0006062 +astro-ph/0006067 +astro-ph/0006069 +astro-ph/0006070 +astro-ph/0006072 +astro-ph/0006073 +astro-ph/0006074 +astro-ph/0006075 +astro-ph/0006076 +astro-ph/0006077 +astro-ph/0006080 +astro-ph/0006081 +astro-ph/0006082 +astro-ph/0006086 +astro-ph/0006087 +astro-ph/0006088 +astro-ph/0006089 +astro-ph/0006090 +astro-ph/0006091 +astro-ph/0006098 +astro-ph/0006102 +astro-ph/0006103 +astro-ph/0006105 +astro-ph/0006107 +astro-ph/0006109 +astro-ph/0006110 +astro-ph/0006112 +astro-ph/0006115 +astro-ph/0006116 +astro-ph/0006118 +astro-ph/0006119 +astro-ph/0006123 +astro-ph/0006124 +astro-ph/0006125 +astro-ph/0006128 +astro-ph/0006131 +astro-ph/0006132 +astro-ph/0006135 +astro-ph/0006137 +astro-ph/0006139 +astro-ph/0006143 +astro-ph/0006144 +astro-ph/0006146 +astro-ph/0006147 +astro-ph/0006148 +astro-ph/0006149 +astro-ph/0006150 +astro-ph/0006151 +astro-ph/0006153 +astro-ph/0006155 +astro-ph/0006156 +astro-ph/0006157 +astro-ph/0006160 +astro-ph/0006161 +astro-ph/0006164 +astro-ph/0006165 +astro-ph/0006166 +astro-ph/0006167 +astro-ph/0006169 +astro-ph/0006170 +astro-ph/0006174 +astro-ph/0006175 +astro-ph/0006176 +astro-ph/0006178 +astro-ph/0006181 +astro-ph/0006190 +astro-ph/0006191 +astro-ph/0006192 +astro-ph/0006194 +astro-ph/0006195 +astro-ph/0006198 +astro-ph/0006201 +astro-ph/0006202 +astro-ph/0006204 +astro-ph/0006206 +astro-ph/0006209 +astro-ph/0006214 +astro-ph/0006215 +astro-ph/0006219 +astro-ph/0006222 +astro-ph/0006223 +astro-ph/0006225 +astro-ph/0006227 +astro-ph/0006230 +astro-ph/0006231 +astro-ph/0006234 +astro-ph/0006236 +astro-ph/0006237 +astro-ph/0006239 +astro-ph/0006241 +astro-ph/0006242 +astro-ph/0006243 +astro-ph/0006245 +astro-ph/0006248 +astro-ph/0006250 +astro-ph/0006251 +astro-ph/0006255 +astro-ph/0006259 +astro-ph/0006260 +astro-ph/0006261 +astro-ph/0006262 +astro-ph/0006263 +astro-ph/0006264 +astro-ph/0006265 +astro-ph/0006268 +astro-ph/0006271 +astro-ph/0006278 +astro-ph/0006284 +astro-ph/0006285 +astro-ph/0006287 +astro-ph/0006290 +astro-ph/0006291 +astro-ph/0006292 +astro-ph/0006294 +astro-ph/0006295 +astro-ph/0006303 +astro-ph/0006306 +astro-ph/0006310 +astro-ph/0006311 +astro-ph/0006312 +astro-ph/0006317 +astro-ph/0006318 +astro-ph/0006319 +astro-ph/0006320 +astro-ph/0006321 +astro-ph/0006327 +astro-ph/0006328 +astro-ph/0006332 +astro-ph/0006334 +astro-ph/0006336 +astro-ph/0006337 +astro-ph/0006339 +astro-ph/0006340 +astro-ph/0006342 +astro-ph/0006346 +astro-ph/0006347 +astro-ph/0006348 +astro-ph/0006351 +astro-ph/0006352 +astro-ph/0006353 +astro-ph/0006354 +astro-ph/0006355 +astro-ph/0006359 +astro-ph/0006363 +astro-ph/0006366 +astro-ph/0006368 +astro-ph/0006369 +astro-ph/0006371 +astro-ph/0006375 +astro-ph/0006376 +astro-ph/0006377 +astro-ph/0006381 +astro-ph/0006383 +astro-ph/0006387 +astro-ph/0006388 +astro-ph/0006389 +astro-ph/0006392 +astro-ph/0006397 +astro-ph/0006399 +astro-ph/0006406 +astro-ph/0006407 +astro-ph/0006411 +astro-ph/0006412 +astro-ph/0006415 +astro-ph/0006416 +astro-ph/0006418 +astro-ph/0006419 +astro-ph/0006420 +astro-ph/0006421 +astro-ph/0006422 +astro-ph/0006430 +astro-ph/0006432 +astro-ph/0006433 +astro-ph/0006434 +astro-ph/0006437 +astro-ph/0006440 +astro-ph/0006448 +astro-ph/0006449 +astro-ph/0006451 +astro-ph/0006452 +astro-ph/0006454 +astro-ph/0006455 +astro-ph/0006456 +astro-ph/0006457 +astro-ph/0006458 +astro-ph/0007001 +astro-ph/0007002 +astro-ph/0007008 +astro-ph/0007010 +astro-ph/0007011 +astro-ph/0007012 +astro-ph/0007014 +astro-ph/0007015 +astro-ph/0007017 +astro-ph/0007018 +astro-ph/0007021 +astro-ph/0007022 +astro-ph/0007023 +astro-ph/0007024 +astro-ph/0007025 +astro-ph/0007026 +astro-ph/0007027 +astro-ph/0007030 +astro-ph/0007031 +astro-ph/0007035 +astro-ph/0007036 +astro-ph/0007037 +astro-ph/0007040 +astro-ph/0007041 +astro-ph/0007043 +astro-ph/0007045 +astro-ph/0007049 +astro-ph/0007050 +astro-ph/0007051 +astro-ph/0007052 +astro-ph/0007054 +astro-ph/0007055 +astro-ph/0007057 +astro-ph/0007058 +astro-ph/0007061 +astro-ph/0007062 +astro-ph/0007063 +astro-ph/0007064 +astro-ph/0007066 +astro-ph/0007067 +astro-ph/0007074 +astro-ph/0007076 +astro-ph/0007077 +astro-ph/0007078 +astro-ph/0007082 +astro-ph/0007089 +astro-ph/0007090 +astro-ph/0007093 +astro-ph/0007098 +astro-ph/0007101 +astro-ph/0007102 +astro-ph/0007105 +astro-ph/0007106 +astro-ph/0007109 +astro-ph/0007110 +astro-ph/0007111 +astro-ph/0007112 +astro-ph/0007113 +astro-ph/0007115 +astro-ph/0007118 +astro-ph/0007123 +astro-ph/0007126 +astro-ph/0007129 +astro-ph/0007133 +astro-ph/0007135 +astro-ph/0007140 +astro-ph/0007141 +astro-ph/0007143 +astro-ph/0007148 +astro-ph/0007149 +astro-ph/0007151 +astro-ph/0007152 +astro-ph/0007158 +astro-ph/0007159 +astro-ph/0007163 +astro-ph/0007166 +astro-ph/0007167 +astro-ph/0007169 +astro-ph/0007170 +astro-ph/0007171 +astro-ph/0007172 +astro-ph/0007173 +astro-ph/0007174 +astro-ph/0007177 +astro-ph/0007178 +astro-ph/0007186 +astro-ph/0007187 +astro-ph/0007188 +astro-ph/0007191 +astro-ph/0007193 +astro-ph/0007194 +astro-ph/0007197 +astro-ph/0007198 +astro-ph/0007199 +astro-ph/0007200 +astro-ph/0007203 +astro-ph/0007206 +astro-ph/0007210 +astro-ph/0007211 +astro-ph/0007212 +astro-ph/0007216 +astro-ph/0007219 +astro-ph/0007220 +astro-ph/0007222 +astro-ph/0007224 +astro-ph/0007225 +astro-ph/0007226 +astro-ph/0007228 +astro-ph/0007229 +astro-ph/0007232 +astro-ph/0007234 +astro-ph/0007236 +astro-ph/0007237 +astro-ph/0007240 +astro-ph/0007243 +astro-ph/0007244 +astro-ph/0007245 +astro-ph/0007246 +astro-ph/0007248 +astro-ph/0007250 +astro-ph/0007251 +astro-ph/0007255 +astro-ph/0007257 +astro-ph/0007259 +astro-ph/0007260 +astro-ph/0007262 +astro-ph/0007263 +astro-ph/0007267 +astro-ph/0007268 +astro-ph/0007269 +astro-ph/0007272 +astro-ph/0007275 +astro-ph/0007276 +astro-ph/0007277 +astro-ph/0007278 +astro-ph/0007279 +astro-ph/0007280 +astro-ph/0007281 +astro-ph/0007285 +astro-ph/0007287 +astro-ph/0007288 +astro-ph/0007289 +astro-ph/0007291 +astro-ph/0007293 +astro-ph/0007294 +astro-ph/0007295 +astro-ph/0007296 +astro-ph/0007299 +astro-ph/0007302 +astro-ph/0007303 +astro-ph/0007304 +astro-ph/0007306 +astro-ph/0007309 +astro-ph/0007310 +astro-ph/0007312 +astro-ph/0007314 +astro-ph/0007316 +astro-ph/0007318 +astro-ph/0007321 +astro-ph/0007324 +astro-ph/0007325 +astro-ph/0007327 +astro-ph/0007329 +astro-ph/0007335 +astro-ph/0007338 +astro-ph/0007341 +astro-ph/0007343 +astro-ph/0007344 +astro-ph/0007345 +astro-ph/0007346 +astro-ph/0007348 +astro-ph/0007349 +astro-ph/0007351 +astro-ph/0007352 +astro-ph/0007353 +astro-ph/0007354 +astro-ph/0007355 +astro-ph/0007356 +astro-ph/0007357 +astro-ph/0007358 +astro-ph/0007359 +astro-ph/0007360 +astro-ph/0007361 +astro-ph/0007364 +astro-ph/0007366 +astro-ph/0007369 +astro-ph/0007370 +astro-ph/0007371 +astro-ph/0007372 +astro-ph/0007373 +astro-ph/0007375 +astro-ph/0007379 +astro-ph/0007380 +astro-ph/0007381 +astro-ph/0007383 +astro-ph/0007384 +astro-ph/0007385 +astro-ph/0007389 +astro-ph/0007391 +astro-ph/0007392 +astro-ph/0007393 +astro-ph/0007395 +astro-ph/0007396 +astro-ph/0007397 +astro-ph/0007398 +astro-ph/0007402 +astro-ph/0007403 +astro-ph/0007406 +astro-ph/0007408 +astro-ph/0007410 +astro-ph/0007412 +astro-ph/0007417 +astro-ph/0007418 +astro-ph/0007419 +astro-ph/0007420 +astro-ph/0007421 +astro-ph/0007422 +astro-ph/0007423 +astro-ph/0007424 +astro-ph/0007426 +astro-ph/0007427 +astro-ph/0007429 +astro-ph/0007432 +astro-ph/0007434 +astro-ph/0007435 +astro-ph/0007436 +astro-ph/0007440 +astro-ph/0007441 +astro-ph/0007445 +astro-ph/0007446 +astro-ph/0007447 +astro-ph/0007449 +astro-ph/0007452 +astro-ph/0007454 +astro-ph/0007455 +astro-ph/0007456 +astro-ph/0007458 +astro-ph/0007459 +astro-ph/0007460 +astro-ph/0007461 +astro-ph/0007462 +astro-ph/0007466 +astro-ph/0007468 +astro-ph/0007469 +astro-ph/0007473 +astro-ph/0007474 +astro-ph/0007475 +astro-ph/0007478 +astro-ph/0008001 +astro-ph/0008002 +astro-ph/0008003 +astro-ph/0008004 +astro-ph/0008006 +astro-ph/0008007 +astro-ph/0008008 +astro-ph/0008009 +astro-ph/0008011 +astro-ph/0008012 +astro-ph/0008016 +astro-ph/0008017 +astro-ph/0008021 +astro-ph/0008022 +astro-ph/0008023 +astro-ph/0008024 +astro-ph/0008025 +astro-ph/0008026 +astro-ph/0008029 +astro-ph/0008030 +astro-ph/0008031 +astro-ph/0008032 +astro-ph/0008035 +astro-ph/0008036 +astro-ph/0008037 +astro-ph/0008038 +astro-ph/0008039 +astro-ph/0008042 +astro-ph/0008044 +astro-ph/0008045 +astro-ph/0008048 +astro-ph/0008049 +astro-ph/0008050 +astro-ph/0008052 +astro-ph/0008053 +astro-ph/0008054 +astro-ph/0008055 +astro-ph/0008057 +astro-ph/0008058 +astro-ph/0008059 +astro-ph/0008061 +astro-ph/0008062 +astro-ph/0008064 +astro-ph/0008065 +astro-ph/0008066 +astro-ph/0008069 +astro-ph/0008070 +astro-ph/0008071 +astro-ph/0008072 +astro-ph/0008075 +astro-ph/0008076 +astro-ph/0008078 +astro-ph/0008079 +astro-ph/0008081 +astro-ph/0008082 +astro-ph/0008083 +astro-ph/0008084 +astro-ph/0008092 +astro-ph/0008093 +astro-ph/0008095 +astro-ph/0008096 +astro-ph/0008099 +astro-ph/0008103 +astro-ph/0008108 +astro-ph/0008110 +astro-ph/0008112 +astro-ph/0008116 +astro-ph/0008117 +astro-ph/0008118 +astro-ph/0008120 +astro-ph/0008121 +astro-ph/0008122 +astro-ph/0008123 +astro-ph/0008124 +astro-ph/0008126 +astro-ph/0008127 +astro-ph/0008129 +astro-ph/0008130 +astro-ph/0008131 +astro-ph/0008133 +astro-ph/0008139 +astro-ph/0008140 +astro-ph/0008148 +astro-ph/0008150 +astro-ph/0008152 +astro-ph/0008154 +astro-ph/0008155 +astro-ph/0008156 +astro-ph/0008157 +astro-ph/0008158 +astro-ph/0008159 +astro-ph/0008162 +astro-ph/0008163 +astro-ph/0008164 +astro-ph/0008168 +astro-ph/0008172 +astro-ph/0008174 +astro-ph/0008182 +astro-ph/0008188 +astro-ph/0008190 +astro-ph/0008191 +astro-ph/0008192 +astro-ph/0008193 +astro-ph/0008194 +astro-ph/0008195 +astro-ph/0008196 +astro-ph/0008200 +astro-ph/0008202 +astro-ph/0008203 +astro-ph/0008208 +astro-ph/0008209 +astro-ph/0008210 +astro-ph/0008212 +astro-ph/0008216 +astro-ph/0008217 +astro-ph/0008218 +astro-ph/0008220 +astro-ph/0008221 +astro-ph/0008223 +astro-ph/0008225 +astro-ph/0008227 +astro-ph/0008228 +astro-ph/0008229 +astro-ph/0008232 +astro-ph/0008234 +astro-ph/0008235 +astro-ph/0008236 +astro-ph/0008240 +astro-ph/0008241 +astro-ph/0008243 +astro-ph/0008246 +astro-ph/0008253 +astro-ph/0008256 +astro-ph/0008257 +astro-ph/0008258 +astro-ph/0008259 +astro-ph/0008261 +astro-ph/0008262 +astro-ph/0008265 +astro-ph/0008267 +astro-ph/0008270 +astro-ph/0008271 +astro-ph/0008273 +astro-ph/0008276 +astro-ph/0008280 +astro-ph/0008281 +astro-ph/0008282 +astro-ph/0008283 +astro-ph/0008285 +astro-ph/0008291 +astro-ph/0008292 +astro-ph/0008295 +astro-ph/0008299 +astro-ph/0008300 +astro-ph/0008301 +astro-ph/0008302 +astro-ph/0008304 +astro-ph/0008306 +astro-ph/0008308 +astro-ph/0008310 +astro-ph/0008311 +astro-ph/0008312 +astro-ph/0008315 +astro-ph/0008317 +astro-ph/0008321 +astro-ph/0008325 +astro-ph/0008327 +astro-ph/0008328 +astro-ph/0008330 +astro-ph/0008332 +astro-ph/0008335 +astro-ph/0008336 +astro-ph/0008342 +astro-ph/0008344 +astro-ph/0008345 +astro-ph/0008348 +astro-ph/0008349 +astro-ph/0008354 +astro-ph/0008355 +astro-ph/0008361 +astro-ph/0008367 +astro-ph/0008368 +astro-ph/0008372 +astro-ph/0008374 +astro-ph/0008375 +astro-ph/0008377 +astro-ph/0008378 +astro-ph/0008379 +astro-ph/0008381 +astro-ph/0008383 +astro-ph/0008387 +astro-ph/0008388 +astro-ph/0008389 +astro-ph/0008390 +astro-ph/0008391 +astro-ph/0008393 +astro-ph/0008394 +astro-ph/0008397 +astro-ph/0008401 +astro-ph/0008403 +astro-ph/0008404 +astro-ph/0008406 +astro-ph/0008408 +astro-ph/0008411 +astro-ph/0008412 +astro-ph/0008414 +astro-ph/0008415 +astro-ph/0008416 +astro-ph/0008418 +astro-ph/0008421 +astro-ph/0008424 +astro-ph/0008425 +astro-ph/0008426 +astro-ph/0008427 +astro-ph/0008428 +astro-ph/0008429 +astro-ph/0008432 +astro-ph/0008434 +astro-ph/0008435 +astro-ph/0008437 +astro-ph/0008439 +astro-ph/0008440 +astro-ph/0008441 +astro-ph/0008442 +astro-ph/0008445 +astro-ph/0008447 +astro-ph/0008452 +astro-ph/0008455 +astro-ph/0008459 +astro-ph/0008461 +astro-ph/0008462 +astro-ph/0008467 +astro-ph/0008468 +astro-ph/0008469 +astro-ph/0008470 +astro-ph/0008471 +astro-ph/0008472 +astro-ph/0008473 +astro-ph/0008482 +astro-ph/0008486 +astro-ph/0008487 +astro-ph/0008488 +astro-ph/0008489 +astro-ph/0008490 +astro-ph/0008493 +astro-ph/0008494 +astro-ph/0008495 +astro-ph/0008496 +astro-ph/0008499 +astro-ph/0008501 +astro-ph/0008504 +astro-ph/0008505 +astro-ph/0008506 +astro-ph/0008515 +astro-ph/0008518 +astro-ph/0008520 +astro-ph/0008522 +astro-ph/0008526 +astro-ph/0009001 +astro-ph/0009002 +astro-ph/0009003 +astro-ph/0009006 +astro-ph/0009007 +astro-ph/0009013 +astro-ph/0009015 +astro-ph/0009016 +astro-ph/0009017 +astro-ph/0009019 +astro-ph/0009021 +astro-ph/0009022 +astro-ph/0009027 +astro-ph/0009031 +astro-ph/0009032 +astro-ph/0009036 +astro-ph/0009039 +astro-ph/0009040 +astro-ph/0009042 +astro-ph/0009045 +astro-ph/0009047 +astro-ph/0009049 +astro-ph/0009051 +astro-ph/0009060 +astro-ph/0009062 +astro-ph/0009064 +astro-ph/0009065 +astro-ph/0009066 +astro-ph/0009067 +astro-ph/0009068 +astro-ph/0009072 +astro-ph/0009076 +astro-ph/0009077 +astro-ph/0009078 +astro-ph/0009079 +astro-ph/0009081 +astro-ph/0009082 +astro-ph/0009083 +astro-ph/0009084 +astro-ph/0009085 +astro-ph/0009086 +astro-ph/0009088 +astro-ph/0009095 +astro-ph/0009097 +astro-ph/0009101 +astro-ph/0009102 +astro-ph/0009105 +astro-ph/0009107 +astro-ph/0009110 +astro-ph/0009111 +astro-ph/0009113 +astro-ph/0009117 +astro-ph/0009120 +astro-ph/0009122 +astro-ph/0009123 +astro-ph/0009124 +astro-ph/0009125 +astro-ph/0009130 +astro-ph/0009131 +astro-ph/0009132 +astro-ph/0009133 +astro-ph/0009134 +astro-ph/0009135 +astro-ph/0009137 +astro-ph/0009138 +astro-ph/0009140 +astro-ph/0009144 +astro-ph/0009148 +astro-ph/0009149 +astro-ph/0009151 +astro-ph/0009154 +astro-ph/0009155 +astro-ph/0009156 +astro-ph/0009157 +astro-ph/0009158 +astro-ph/0009160 +astro-ph/0009161 +astro-ph/0009162 +astro-ph/0009164 +astro-ph/0009165 +astro-ph/0009166 +astro-ph/0009167 +astro-ph/0009168 +astro-ph/0009172 +astro-ph/0009173 +astro-ph/0009174 +astro-ph/0009175 +astro-ph/0009176 +astro-ph/0009177 +astro-ph/0009178 +astro-ph/0009180 +astro-ph/0009181 +astro-ph/0009183 +astro-ph/0009184 +astro-ph/0009185 +astro-ph/0009186 +astro-ph/0009187 +astro-ph/0009188 +astro-ph/0009189 +astro-ph/0009191 +astro-ph/0009192 +astro-ph/0009198 +astro-ph/0009199 +astro-ph/0009200 +astro-ph/0009201 +astro-ph/0009203 +astro-ph/0009208 +astro-ph/0009209 +astro-ph/0009210 +astro-ph/0009211 +astro-ph/0009212 +astro-ph/0009214 +astro-ph/0009216 +astro-ph/0009217 +astro-ph/0009219 +astro-ph/0009220 +astro-ph/0009221 +astro-ph/0009225 +astro-ph/0009226 +astro-ph/0009229 +astro-ph/0009230 +astro-ph/0009231 +astro-ph/0009232 +astro-ph/0009233 +astro-ph/0009237 +astro-ph/0009238 +astro-ph/0009239 +astro-ph/0009241 +astro-ph/0009243 +astro-ph/0009244 +astro-ph/0009245 +astro-ph/0009249 +astro-ph/0009250 +astro-ph/0009254 +astro-ph/0009255 +astro-ph/0009257 +astro-ph/0009258 +astro-ph/0009260 +astro-ph/0009262 +astro-ph/0009264 +astro-ph/0009265 +astro-ph/0009266 +astro-ph/0009268 +astro-ph/0009269 +astro-ph/0009270 +astro-ph/0009275 +astro-ph/0009276 +astro-ph/0009279 +astro-ph/0009280 +astro-ph/0009283 +astro-ph/0009285 +astro-ph/0009286 +astro-ph/0009288 +astro-ph/0009292 +astro-ph/0009295 +astro-ph/0009296 +astro-ph/0009297 +astro-ph/0009301 +astro-ph/0009305 +astro-ph/0009306 +astro-ph/0009307 +astro-ph/0009308 +astro-ph/0009309 +astro-ph/0009311 +astro-ph/0009313 +astro-ph/0009319 +astro-ph/0009320 +astro-ph/0009321 +astro-ph/0009323 +astro-ph/0009324 +astro-ph/0009325 +astro-ph/0009326 +astro-ph/0009327 +astro-ph/0009328 +astro-ph/0009334 +astro-ph/0009336 +astro-ph/0009337 +astro-ph/0009339 +astro-ph/0009347 +astro-ph/0009354 +astro-ph/0009356 +astro-ph/0009359 +astro-ph/0009360 +astro-ph/0009363 +astro-ph/0009364 +astro-ph/0009366 +astro-ph/0009367 +astro-ph/0009375 +astro-ph/0009376 +astro-ph/0009379 +astro-ph/0009380 +astro-ph/0009382 +astro-ph/0009387 +astro-ph/0009389 +astro-ph/0009390 +astro-ph/0009394 +astro-ph/0009396 +astro-ph/0009398 +astro-ph/0009399 +astro-ph/0009400 +astro-ph/0009401 +astro-ph/0009402 +astro-ph/0009403 +astro-ph/0009404 +astro-ph/0009405 +astro-ph/0009406 +astro-ph/0009410 +astro-ph/0009411 +astro-ph/0009412 +astro-ph/0009414 +astro-ph/0009415 +astro-ph/0009416 +astro-ph/0009418 +astro-ph/0009420 +astro-ph/0009421 +astro-ph/0009422 +astro-ph/0009423 +astro-ph/0009425 +astro-ph/0009426 +astro-ph/0009427 +astro-ph/0009428 +astro-ph/0009432 +astro-ph/0009434 +astro-ph/0009435 +astro-ph/0009436 +astro-ph/0009440 +astro-ph/0009444 +astro-ph/0009446 +astro-ph/0009447 +astro-ph/0009448 +astro-ph/0009449 +astro-ph/0009451 +astro-ph/0009452 +astro-ph/0009453 +astro-ph/0009454 +astro-ph/0009458 +astro-ph/0009459 +astro-ph/0009461 +astro-ph/0009462 +astro-ph/0009463 +astro-ph/0009464 +astro-ph/0009466 +astro-ph/0009467 +astro-ph/0009469 +astro-ph/0009470 +astro-ph/0009473 +astro-ph/0009474 +astro-ph/0009476 +astro-ph/0009480 +astro-ph/0009481 +astro-ph/0009490 +astro-ph/0009491 +astro-ph/0009495 +astro-ph/0009496 +astro-ph/0009499 +astro-ph/0009500 +astro-ph/0009501 +astro-ph/0009502 +astro-ph/0009504 +astro-ph/0009506 +astro-ph/0010001 +astro-ph/0010003 +astro-ph/0010004 +astro-ph/0010005 +astro-ph/0010009 +astro-ph/0010010 +astro-ph/0010011 +astro-ph/0010012 +astro-ph/0010013 +astro-ph/0010014 +astro-ph/0010018 +astro-ph/0010020 +astro-ph/0010021 +astro-ph/0010023 +astro-ph/0010024 +astro-ph/0010025 +astro-ph/0010026 +astro-ph/0010029 +astro-ph/0010033 +astro-ph/0010038 +astro-ph/0010041 +astro-ph/0010043 +astro-ph/0010045 +astro-ph/0010048 +astro-ph/0010049 +astro-ph/0010051 +astro-ph/0010054 +astro-ph/0010055 +astro-ph/0010057 +astro-ph/0010060 +astro-ph/0010062 +astro-ph/0010064 +astro-ph/0010065 +astro-ph/0010066 +astro-ph/0010068 +astro-ph/0010069 +astro-ph/0010070 +astro-ph/0010071 +astro-ph/0010072 +astro-ph/0010075 +astro-ph/0010076 +astro-ph/0010080 +astro-ph/0010082 +astro-ph/0010085 +astro-ph/0010091 +astro-ph/0010095 +astro-ph/0010099 +astro-ph/0010101 +astro-ph/0010103 +astro-ph/0010104 +astro-ph/0010107 +astro-ph/0010108 +astro-ph/0010112 +astro-ph/0010113 +astro-ph/0010117 +astro-ph/0010119 +astro-ph/0010120 +astro-ph/0010122 +astro-ph/0010123 +astro-ph/0010124 +astro-ph/0010125 +astro-ph/0010127 +astro-ph/0010128 +astro-ph/0010134 +astro-ph/0010135 +astro-ph/0010136 +astro-ph/0010137 +astro-ph/0010141 +astro-ph/0010142 +astro-ph/0010143 +astro-ph/0010147 +astro-ph/0010154 +astro-ph/0010155 +astro-ph/0010156 +astro-ph/0010160 +astro-ph/0010161 +astro-ph/0010164 +astro-ph/0010165 +astro-ph/0010166 +astro-ph/0010167 +astro-ph/0010168 +astro-ph/0010169 +astro-ph/0010171 +astro-ph/0010172 +astro-ph/0010174 +astro-ph/0010175 +astro-ph/0010176 +astro-ph/0010177 +astro-ph/0010179 +astro-ph/0010182 +astro-ph/0010187 +astro-ph/0010188 +astro-ph/0010191 +astro-ph/0010192 +astro-ph/0010194 +astro-ph/0010195 +astro-ph/0010199 +astro-ph/0010204 +astro-ph/0010205 +astro-ph/0010206 +astro-ph/0010209 +astro-ph/0010213 +astro-ph/0010218 +astro-ph/0010219 +astro-ph/0010220 +astro-ph/0010225 +astro-ph/0010227 +astro-ph/0010228 +astro-ph/0010229 +astro-ph/0010230 +astro-ph/0010231 +astro-ph/0010233 +astro-ph/0010235 +astro-ph/0010236 +astro-ph/0010238 +astro-ph/0010239 +astro-ph/0010240 +astro-ph/0010241 +astro-ph/0010243 +astro-ph/0010244 +astro-ph/0010251 +astro-ph/0010252 +astro-ph/0010253 +astro-ph/0010254 +astro-ph/0010255 +astro-ph/0010257 +astro-ph/0010258 +astro-ph/0010261 +astro-ph/0010263 +astro-ph/0010268 +astro-ph/0010269 +astro-ph/0010272 +astro-ph/0010274 +astro-ph/0010275 +astro-ph/0010276 +astro-ph/0010278 +astro-ph/0010279 +astro-ph/0010280 +astro-ph/0010282 +astro-ph/0010284 +astro-ph/0010285 +astro-ph/0010286 +astro-ph/0010287 +astro-ph/0010288 +astro-ph/0010289 +astro-ph/0010295 +astro-ph/0010300 +astro-ph/0010302 +astro-ph/0010303 +astro-ph/0010304 +astro-ph/0010306 +astro-ph/0010307 +astro-ph/0010308 +astro-ph/0010310 +astro-ph/0010312 +astro-ph/0010314 +astro-ph/0010315 +astro-ph/0010317 +astro-ph/0010318 +astro-ph/0010320 +astro-ph/0010321 +astro-ph/0010327 +astro-ph/0010328 +astro-ph/0010329 +astro-ph/0010332 +astro-ph/0010333 +astro-ph/0010334 +astro-ph/0010338 +astro-ph/0010339 +astro-ph/0010340 +astro-ph/0010342 +astro-ph/0010343 +astro-ph/0010344 +astro-ph/0010345 +astro-ph/0010348 +astro-ph/0010349 +astro-ph/0010353 +astro-ph/0010355 +astro-ph/0010356 +astro-ph/0010359 +astro-ph/0010361 +astro-ph/0010362 +astro-ph/0010363 +astro-ph/0010365 +astro-ph/0010367 +astro-ph/0010368 +astro-ph/0010369 +astro-ph/0010371 +astro-ph/0010372 +astro-ph/0010373 +astro-ph/0010374 +astro-ph/0010378 +astro-ph/0010380 +astro-ph/0010386 +astro-ph/0010389 +astro-ph/0010391 +astro-ph/0010392 +astro-ph/0010393 +astro-ph/0010394 +astro-ph/0010395 +astro-ph/0010397 +astro-ph/0010398 +astro-ph/0010399 +astro-ph/0010400 +astro-ph/0010401 +astro-ph/0010404 +astro-ph/0010406 +astro-ph/0010411 +astro-ph/0010412 +astro-ph/0010413 +astro-ph/0010415 +astro-ph/0010416 +astro-ph/0010420 +astro-ph/0010423 +astro-ph/0010424 +astro-ph/0010425 +astro-ph/0010429 +astro-ph/0010430 +astro-ph/0010431 +astro-ph/0010432 +astro-ph/0010434 +astro-ph/0010435 +astro-ph/0010436 +astro-ph/0010439 +astro-ph/0010440 +astro-ph/0010443 +astro-ph/0010444 +astro-ph/0010445 +astro-ph/0010449 +astro-ph/0010450 +astro-ph/0010451 +astro-ph/0010453 +astro-ph/0010454 +astro-ph/0010455 +astro-ph/0010456 +astro-ph/0010458 +astro-ph/0010464 +astro-ph/0010465 +astro-ph/0010466 +astro-ph/0010467 +astro-ph/0010469 +astro-ph/0010470 +astro-ph/0010471 +astro-ph/0010472 +astro-ph/0010476 +astro-ph/0010478 +astro-ph/0010480 +astro-ph/0010481 +astro-ph/0010483 +astro-ph/0010484 +astro-ph/0010486 +astro-ph/0010487 +astro-ph/0010488 +astro-ph/0010489 +astro-ph/0010490 +astro-ph/0010493 +astro-ph/0010494 +astro-ph/0010496 +astro-ph/0010502 +astro-ph/0010503 +astro-ph/0010508 +astro-ph/0010509 +astro-ph/0010510 +astro-ph/0010511 +astro-ph/0010515 +astro-ph/0010518 +astro-ph/0010521 +astro-ph/0010522 +astro-ph/0010524 +astro-ph/0010529 +astro-ph/0010533 +astro-ph/0010534 +astro-ph/0010535 +astro-ph/0010537 +astro-ph/0010538 +astro-ph/0010541 +astro-ph/0010542 +astro-ph/0010545 +astro-ph/0010546 +astro-ph/0010547 +astro-ph/0010549 +astro-ph/0010550 +astro-ph/0010555 +astro-ph/0010556 +astro-ph/0010557 +astro-ph/0010558 +astro-ph/0010559 +astro-ph/0010561 +astro-ph/0010562 +astro-ph/0010563 +astro-ph/0010564 +astro-ph/0010567 +astro-ph/0010569 +astro-ph/0010571 +astro-ph/0010572 +astro-ph/0010573 +astro-ph/0010574 +astro-ph/0010575 +astro-ph/0010576 +astro-ph/0010579 +astro-ph/0010580 +astro-ph/0010583 +astro-ph/0010584 +astro-ph/0010587 +astro-ph/0010588 +astro-ph/0010589 +astro-ph/0010591 +astro-ph/0010592 +astro-ph/0010597 +astro-ph/0010599 +astro-ph/0010601 +astro-ph/0010603 +astro-ph/0010605 +astro-ph/0010606 +astro-ph/0010609 +astro-ph/0010612 +astro-ph/0010615 +astro-ph/0010620 +astro-ph/0010621 +astro-ph/0010626 +astro-ph/0010628 +astro-ph/0010630 +astro-ph/0010631 +astro-ph/0010636 +astro-ph/0010639 +astro-ph/0010640 +astro-ph/0010642 +astro-ph/0010643 +astro-ph/0010645 +astro-ph/0010646 +astro-ph/0010649 +astro-ph/0010652 +astro-ph/0010653 +astro-ph/0010654 +astro-ph/0010655 +astro-ph/0010656 +astro-ph/0010657 +astro-ph/0010658 +astro-ph/0010660 +astro-ph/0011004 +astro-ph/0011006 +astro-ph/0011010 +astro-ph/0011012 +astro-ph/0011013 +astro-ph/0011014 +astro-ph/0011015 +astro-ph/0011017 +astro-ph/0011018 +astro-ph/0011021 +astro-ph/0011022 +astro-ph/0011023 +astro-ph/0011025 +astro-ph/0011026 +astro-ph/0011029 +astro-ph/0011033 +astro-ph/0011035 +astro-ph/0011037 +astro-ph/0011038 +astro-ph/0011039 +astro-ph/0011040 +astro-ph/0011042 +astro-ph/0011045 +astro-ph/0011047 +astro-ph/0011048 +astro-ph/0011050 +astro-ph/0011053 +astro-ph/0011055 +astro-ph/0011057 +astro-ph/0011059 +astro-ph/0011062 +astro-ph/0011063 +astro-ph/0011066 +astro-ph/0011068 +astro-ph/0011069 +astro-ph/0011070 +astro-ph/0011071 +astro-ph/0011072 +astro-ph/0011081 +astro-ph/0011084 +astro-ph/0011085 +astro-ph/0011086 +astro-ph/0011087 +astro-ph/0011088 +astro-ph/0011093 +astro-ph/0011095 +astro-ph/0011096 +astro-ph/0011097 +astro-ph/0011098 +astro-ph/0011099 +astro-ph/0011101 +astro-ph/0011105 +astro-ph/0011106 +astro-ph/0011107 +astro-ph/0011110 +astro-ph/0011112 +astro-ph/0011113 +astro-ph/0011114 +astro-ph/0011115 +astro-ph/0011119 +astro-ph/0011122 +astro-ph/0011123 +astro-ph/0011124 +astro-ph/0011125 +astro-ph/0011130 +astro-ph/0011133 +astro-ph/0011135 +astro-ph/0011137 +astro-ph/0011138 +astro-ph/0011140 +astro-ph/0011145 +astro-ph/0011146 +astro-ph/0011147 +astro-ph/0011148 +astro-ph/0011150 +astro-ph/0011153 +astro-ph/0011154 +astro-ph/0011155 +astro-ph/0011157 +astro-ph/0011158 +astro-ph/0011159 +astro-ph/0011160 +astro-ph/0011162 +astro-ph/0011163 +astro-ph/0011166 +astro-ph/0011168 +astro-ph/0011169 +astro-ph/0011170 +astro-ph/0011173 +astro-ph/0011176 +astro-ph/0011178 +astro-ph/0011179 +astro-ph/0011180 +astro-ph/0011181 +astro-ph/0011182 +astro-ph/0011183 +astro-ph/0011184 +astro-ph/0011185 +astro-ph/0011186 +astro-ph/0011187 +astro-ph/0011188 +astro-ph/0011190 +astro-ph/0011191 +astro-ph/0011193 +astro-ph/0011195 +astro-ph/0011196 +astro-ph/0011197 +astro-ph/0011198 +astro-ph/0011202 +astro-ph/0011204 +astro-ph/0011206 +astro-ph/0011207 +astro-ph/0011208 +astro-ph/0011210 +astro-ph/0011211 +astro-ph/0011218 +astro-ph/0011221 +astro-ph/0011225 +astro-ph/0011227 +astro-ph/0011228 +astro-ph/0011231 +astro-ph/0011232 +astro-ph/0011233 +astro-ph/0011236 +astro-ph/0011237 +astro-ph/0011238 +astro-ph/0011239 +astro-ph/0011242 +astro-ph/0011244 +astro-ph/0011246 +astro-ph/0011251 +astro-ph/0011253 +astro-ph/0011254 +astro-ph/0011255 +astro-ph/0011257 +astro-ph/0011258 +astro-ph/0011259 +astro-ph/0011261 +astro-ph/0011263 +astro-ph/0011265 +astro-ph/0011266 +astro-ph/0011268 +astro-ph/0011270 +astro-ph/0011271 +astro-ph/0011272 +astro-ph/0011274 +astro-ph/0011275 +astro-ph/0011276 +astro-ph/0011278 +astro-ph/0011279 +astro-ph/0011280 +astro-ph/0011281 +astro-ph/0011283 +astro-ph/0011284 +astro-ph/0011285 +astro-ph/0011286 +astro-ph/0011288 +astro-ph/0011291 +astro-ph/0011293 +astro-ph/0011296 +astro-ph/0011297 +astro-ph/0011299 +astro-ph/0011301 +astro-ph/0011303 +astro-ph/0011305 +astro-ph/0011307 +astro-ph/0011308 +astro-ph/0011309 +astro-ph/0011310 +astro-ph/0011312 +astro-ph/0011314 +astro-ph/0011316 +astro-ph/0011317 +astro-ph/0011321 +astro-ph/0011323 +astro-ph/0011324 +astro-ph/0011325 +astro-ph/0011329 +astro-ph/0011330 +astro-ph/0011331 +astro-ph/0011332 +astro-ph/0011335 +astro-ph/0011337 +astro-ph/0011339 +astro-ph/0011340 +astro-ph/0011343 +astro-ph/0011344 +astro-ph/0011348 +astro-ph/0011349 +astro-ph/0011350 +astro-ph/0011351 +astro-ph/0011352 +astro-ph/0011353 +astro-ph/0011358 +astro-ph/0011362 +astro-ph/0011363 +astro-ph/0011364 +astro-ph/0011365 +astro-ph/0011366 +astro-ph/0011368 +astro-ph/0011370 +astro-ph/0011374 +astro-ph/0011376 +astro-ph/0011380 +astro-ph/0011382 +astro-ph/0011384 +astro-ph/0011385 +astro-ph/0011386 +astro-ph/0011389 +astro-ph/0011393 +astro-ph/0011394 +astro-ph/0011395 +astro-ph/0011407 +astro-ph/0011414 +astro-ph/0011416 +astro-ph/0011417 +astro-ph/0011418 +astro-ph/0011420 +astro-ph/0011421 +astro-ph/0011425 +astro-ph/0011426 +astro-ph/0011427 +astro-ph/0011428 +astro-ph/0011431 +astro-ph/0011432 +astro-ph/0011434 +astro-ph/0011438 +astro-ph/0011439 +astro-ph/0011440 +astro-ph/0011443 +astro-ph/0011444 +astro-ph/0011446 +astro-ph/0011452 +astro-ph/0011453 +astro-ph/0011455 +astro-ph/0011456 +astro-ph/0011459 +astro-ph/0011462 +astro-ph/0011463 +astro-ph/0011464 +astro-ph/0011466 +astro-ph/0011467 +astro-ph/0011469 +astro-ph/0011470 +astro-ph/0011472 +astro-ph/0011478 +astro-ph/0011479 +astro-ph/0011487 +astro-ph/0011489 +astro-ph/0011490 +astro-ph/0011491 +astro-ph/0011496 +astro-ph/0011497 +astro-ph/0011498 +astro-ph/0011499 +astro-ph/0011501 +astro-ph/0011502 +astro-ph/0011503 +astro-ph/0011504 +astro-ph/0011505 +astro-ph/0011506 +astro-ph/0011507 +astro-ph/0011508 +astro-ph/0011509 +astro-ph/0011510 +astro-ph/0011512 +astro-ph/0011513 +astro-ph/0011518 +astro-ph/0011519 +astro-ph/0011520 +astro-ph/0011521 +astro-ph/0011523 +astro-ph/0011526 +astro-ph/0011527 +astro-ph/0011528 +astro-ph/0011529 +astro-ph/0011530 +astro-ph/0011531 +astro-ph/0011532 +astro-ph/0011534 +astro-ph/0011538 +astro-ph/0011541 +astro-ph/0011542 +astro-ph/0011543 +astro-ph/0011544 +astro-ph/0011545 +astro-ph/0011547 +astro-ph/0011549 +astro-ph/0011552 +astro-ph/0011554 +astro-ph/0011555 +astro-ph/0011556 +astro-ph/0011557 +astro-ph/0011559 +astro-ph/0011560 +astro-ph/0011562 +astro-ph/0011563 +astro-ph/0011568 +astro-ph/0011569 +astro-ph/0011571 +astro-ph/0011575 +astro-ph/0011580 +astro-ph/0011581 +astro-ph/0011582 +astro-ph/0011583 +astro-ph/0012001 +astro-ph/0012003 +astro-ph/0012004 +astro-ph/0012007 +astro-ph/0012008 +astro-ph/0012009 +astro-ph/0012010 +astro-ph/0012011 +astro-ph/0012014 +astro-ph/0012016 +astro-ph/0012020 +astro-ph/0012025 +astro-ph/0012035 +astro-ph/0012036 +astro-ph/0012038 +astro-ph/0012039 +astro-ph/0012041 +astro-ph/0012042 +astro-ph/0012044 +astro-ph/0012045 +astro-ph/0012046 +astro-ph/0012048 +astro-ph/0012051 +astro-ph/0012054 +astro-ph/0012056 +astro-ph/0012057 +astro-ph/0012059 +astro-ph/0012060 +astro-ph/0012062 +astro-ph/0012065 +astro-ph/0012066 +astro-ph/0012068 +astro-ph/0012069 +astro-ph/0012071 +astro-ph/0012076 +astro-ph/0012079 +astro-ph/0012083 +astro-ph/0012087 +astro-ph/0012088 +astro-ph/0012091 +astro-ph/0012093 +astro-ph/0012096 +astro-ph/0012097 +astro-ph/0012099 +astro-ph/0012102 +astro-ph/0012103 +astro-ph/0012104 +astro-ph/0012105 +astro-ph/0012107 +astro-ph/0012109 +astro-ph/0012110 +astro-ph/0012114 +astro-ph/0012115 +astro-ph/0012117 +astro-ph/0012123 +astro-ph/0012129 +astro-ph/0012131 +astro-ph/0012134 +astro-ph/0012135 +astro-ph/0012137 +astro-ph/0012138 +astro-ph/0012139 +astro-ph/0012140 +astro-ph/0012141 +astro-ph/0012142 +astro-ph/0012144 +astro-ph/0012146 +astro-ph/0012147 +astro-ph/0012148 +astro-ph/0012150 +astro-ph/0012151 +astro-ph/0012152 +astro-ph/0012153 +astro-ph/0012154 +astro-ph/0012156 +astro-ph/0012157 +astro-ph/0012158 +astro-ph/0012162 +astro-ph/0012163 +astro-ph/0012167 +astro-ph/0012169 +astro-ph/0012170 +astro-ph/0012172 +astro-ph/0012175 +astro-ph/0012176 +astro-ph/0012177 +astro-ph/0012180 +astro-ph/0012181 +astro-ph/0012182 +astro-ph/0012183 +astro-ph/0012184 +astro-ph/0012189 +astro-ph/0012190 +astro-ph/0012191 +astro-ph/0012192 +astro-ph/0012194 +astro-ph/0012199 +astro-ph/0012200 +astro-ph/0012201 +astro-ph/0012202 +astro-ph/0012203 +astro-ph/0012207 +astro-ph/0012208 +astro-ph/0012211 +astro-ph/0012213 +astro-ph/0012219 +astro-ph/0012220 +astro-ph/0012223 +astro-ph/0012225 +astro-ph/0012231 +astro-ph/0012232 +astro-ph/0012238 +astro-ph/0012241 +astro-ph/0012242 +astro-ph/0012245 +astro-ph/0012249 +astro-ph/0012251 +astro-ph/0012252 +astro-ph/0012254 +astro-ph/0012256 +astro-ph/0012257 +astro-ph/0012258 +astro-ph/0012260 +astro-ph/0012261 +astro-ph/0012262 +astro-ph/0012264 +astro-ph/0012266 +astro-ph/0012267 +astro-ph/0012268 +astro-ph/0012269 +astro-ph/0012272 +astro-ph/0012274 +astro-ph/0012276 +astro-ph/0012277 +astro-ph/0012278 +astro-ph/0012279 +astro-ph/0012280 +astro-ph/0012281 +astro-ph/0012286 +astro-ph/0012288 +astro-ph/0012289 +astro-ph/0012291 +astro-ph/0012292 +astro-ph/0012299 +astro-ph/0012300 +astro-ph/0012301 +astro-ph/0012302 +astro-ph/0012303 +astro-ph/0012304 +astro-ph/0012305 +astro-ph/0012306 +astro-ph/0012307 +astro-ph/0012308 +astro-ph/0012309 +astro-ph/0012310 +astro-ph/0012311 +astro-ph/0012313 +astro-ph/0012315 +astro-ph/0012320 +astro-ph/0012323 +astro-ph/0012325 +astro-ph/0012326 +astro-ph/0012328 +astro-ph/0012329 +astro-ph/0012330 +astro-ph/0012332 +astro-ph/0012333 +astro-ph/0012335 +astro-ph/0012340 +astro-ph/0012341 +astro-ph/0012343 +astro-ph/0012345 +astro-ph/0012346 +astro-ph/0012347 +astro-ph/0012350 +astro-ph/0012351 +astro-ph/0012357 +astro-ph/0012358 +astro-ph/0012359 +astro-ph/0012360 +astro-ph/0012362 +astro-ph/0012363 +astro-ph/0012365 +astro-ph/0012366 +astro-ph/0012367 +astro-ph/0012370 +astro-ph/0012371 +astro-ph/0012375 +astro-ph/0012377 +astro-ph/0012378 +astro-ph/0012380 +astro-ph/0012381 +astro-ph/0012383 +astro-ph/0012385 +astro-ph/0012388 +astro-ph/0012389 +astro-ph/0012390 +astro-ph/0012391 +astro-ph/0012392 +astro-ph/0012395 +astro-ph/0012396 +astro-ph/0012397 +astro-ph/0012399 +astro-ph/0012400 +astro-ph/0012404 +astro-ph/0012405 +astro-ph/0012407 +astro-ph/0012408 +astro-ph/0012410 +astro-ph/0012411 +astro-ph/0012414 +astro-ph/0012415 +astro-ph/0012425 +astro-ph/0012426 +astro-ph/0012430 +astro-ph/0012432 +astro-ph/0012434 +astro-ph/0012435 +astro-ph/0012436 +astro-ph/0012437 +astro-ph/0012438 +astro-ph/0012439 +astro-ph/0012442 +astro-ph/0012445 +astro-ph/0012446 +astro-ph/0012447 +astro-ph/0012448 +astro-ph/0012450 +astro-ph/0012452 +astro-ph/0012458 +astro-ph/0012459 +astro-ph/0012463 +astro-ph/0012464 +astro-ph/0012465 +astro-ph/0012469 +astro-ph/0012472 +astro-ph/0012473 +astro-ph/0012474 +astro-ph/0012477 +astro-ph/0012479 +astro-ph/0012480 +astro-ph/0012481 +astro-ph/0012482 +astro-ph/0012484 +astro-ph/0012485 +astro-ph/0012488 +astro-ph/0012489 +astro-ph/0012491 +astro-ph/0012492 +astro-ph/0012493 +astro-ph/0012494 +astro-ph/0012497 +astro-ph/0012498 +astro-ph/0012503 +astro-ph/0012505 +astro-ph/0012506 +astro-ph/0012508 +astro-ph/0012514 +astro-ph/0012515 +astro-ph/0012516 +astro-ph/0012517 +astro-ph/0012518 +astro-ph/0012520 +astro-ph/0012521 +astro-ph/0012522 +astro-ph/0012532 +astro-ph/0012534 +astro-ph/0012536 +astro-ph/0012537 +astro-ph/0012538 +astro-ph/0012542 +astro-ph/0012545 +astro-ph/9809384 +astro-ph/9809385 +astro-ph/9809387 +astro-ph/9809388 +astro-ph/9809389 +astro-ph/9809390 +astro-ph/9809393 +astro-ph/9809395 +astro-ph/9809400 +astro-ph/9809401 +astro-ph/9809403 +astro-ph/9809407 +astro-ph/9809409 +astro-ph/9809410 +astro-ph/9809411 +astro-ph/9810001 +astro-ph/9810002 +astro-ph/9810006 +astro-ph/9810008 +astro-ph/9810011 +astro-ph/9810012 +astro-ph/9810015 +astro-ph/9810017 +astro-ph/9810024 +astro-ph/9810026 +astro-ph/9810029 +astro-ph/9810034 +astro-ph/9810037 +astro-ph/9810038 +astro-ph/9810039 +astro-ph/9810043 +astro-ph/9810046 +astro-ph/9810047 +astro-ph/9810048 +astro-ph/9810050 +astro-ph/9810051 +astro-ph/9810053 +astro-ph/9810056 +astro-ph/9810063 +astro-ph/9810064 +astro-ph/9810065 +astro-ph/9810071 +astro-ph/9810073 +astro-ph/9810075 +astro-ph/9810076 +astro-ph/9810080 +astro-ph/9810084 +astro-ph/9810085 +astro-ph/9810087 +astro-ph/9810092 +astro-ph/9810095 +astro-ph/9810100 +astro-ph/9810102 +astro-ph/9810104 +astro-ph/9810105 +astro-ph/9810107 +astro-ph/9810109 +astro-ph/9810111 +astro-ph/9810117 +astro-ph/9810118 +astro-ph/9810120 +astro-ph/9810122 +astro-ph/9810123 +astro-ph/9810128 +astro-ph/9810129 +astro-ph/9810132 +astro-ph/9810133 +astro-ph/9810134 +astro-ph/9810136 +astro-ph/9810138 +astro-ph/9810143 +astro-ph/9810147 +astro-ph/9810149 +astro-ph/9810153 +astro-ph/9810158 +astro-ph/9810159 +astro-ph/9810165 +astro-ph/9810168 +astro-ph/9810170 +astro-ph/9810171 +astro-ph/9810172 +astro-ph/9810180 +astro-ph/9810186 +astro-ph/9810188 +astro-ph/9810190 +astro-ph/9810194 +astro-ph/9810195 +astro-ph/9810196 +astro-ph/9810200 +astro-ph/9810202 +astro-ph/9810206 +astro-ph/9810207 +astro-ph/9810208 +astro-ph/9810210 +astro-ph/9810212 +astro-ph/9810216 +astro-ph/9810217 +astro-ph/9810219 +astro-ph/9810220 +astro-ph/9810224 +astro-ph/9810225 +astro-ph/9810233 +astro-ph/9810236 +astro-ph/9810238 +astro-ph/9810239 +astro-ph/9810240 +astro-ph/9810241 +astro-ph/9810244 +astro-ph/9810245 +astro-ph/9810247 +astro-ph/9810249 +astro-ph/9810251 +astro-ph/9810254 +astro-ph/9810256 +astro-ph/9810259 +astro-ph/9810260 +astro-ph/9810262 +astro-ph/9810263 +astro-ph/9810264 +astro-ph/9810265 +astro-ph/9810269 +astro-ph/9810270 +astro-ph/9810274 +astro-ph/9810279 +astro-ph/9810280 +astro-ph/9810281 +astro-ph/9810283 +astro-ph/9810286 +astro-ph/9810287 +astro-ph/9810288 +astro-ph/9810289 +astro-ph/9810296 +astro-ph/9810300 +astro-ph/9810303 +astro-ph/9810306 +astro-ph/9810309 +astro-ph/9810317 +astro-ph/9810319 +astro-ph/9810321 +astro-ph/9810322 +astro-ph/9810323 +astro-ph/9810324 +astro-ph/9810325 +astro-ph/9810328 +astro-ph/9810329 +astro-ph/9810331 +astro-ph/9810336 +astro-ph/9810339 +astro-ph/9810342 +astro-ph/9810344 +astro-ph/9810345 +astro-ph/9810346 +astro-ph/9810349 +astro-ph/9810350 +astro-ph/9810352 +astro-ph/9810354 +astro-ph/9810356 +astro-ph/9810359 +astro-ph/9810361 +astro-ph/9810362 +astro-ph/9810364 +astro-ph/9810365 +astro-ph/9810366 +astro-ph/9810369 +astro-ph/9810370 +astro-ph/9810371 +astro-ph/9810373 +astro-ph/9810374 +astro-ph/9810375 +astro-ph/9810377 +astro-ph/9810379 +astro-ph/9810381 +astro-ph/9810382 +astro-ph/9810383 +astro-ph/9810384 +astro-ph/9810385 +astro-ph/9810391 +astro-ph/9810392 +astro-ph/9810394 +astro-ph/9810395 +astro-ph/9810396 +astro-ph/9810397 +astro-ph/9810399 +astro-ph/9810401 +astro-ph/9810407 +astro-ph/9810413 +astro-ph/9810416 +astro-ph/9810417 +astro-ph/9810424 +astro-ph/9810425 +astro-ph/9810426 +astro-ph/9810427 +astro-ph/9810429 +astro-ph/9810431 +astro-ph/9810432 +astro-ph/9810434 +astro-ph/9810441 +astro-ph/9810442 +astro-ph/9810447 +astro-ph/9810448 +astro-ph/9810451 +astro-ph/9810452 +astro-ph/9810454 +astro-ph/9810458 +astro-ph/9810459 +astro-ph/9810462 +astro-ph/9810464 +astro-ph/9810465 +astro-ph/9810467 +astro-ph/9810468 +astro-ph/9810469 +astro-ph/9810471 +astro-ph/9810477 +astro-ph/9810481 +astro-ph/9810482 +astro-ph/9810484 +astro-ph/9810485 +astro-ph/9810487 +astro-ph/9810490 +astro-ph/9810491 +astro-ph/9810492 +astro-ph/9810495 +astro-ph/9810497 +astro-ph/9810498 +astro-ph/9810503 +astro-ph/9810508 +astro-ph/9811004 +astro-ph/9811005 +astro-ph/9811006 +astro-ph/9811014 +astro-ph/9811020 +astro-ph/9811021 +astro-ph/9811022 +astro-ph/9811027 +astro-ph/9811029 +astro-ph/9811031 +astro-ph/9811034 +astro-ph/9811035 +astro-ph/9811036 +astro-ph/9811038 +astro-ph/9811040 +astro-ph/9811044 +astro-ph/9811045 +astro-ph/9811048 +astro-ph/9811051 +astro-ph/9811052 +astro-ph/9811056 +astro-ph/9811057 +astro-ph/9811062 +astro-ph/9811063 +astro-ph/9811072 +astro-ph/9811073 +astro-ph/9811075 +astro-ph/9811086 +astro-ph/9811089 +astro-ph/9811095 +astro-ph/9811096 +astro-ph/9811098 +astro-ph/9811099 +astro-ph/9811100 +astro-ph/9811102 +astro-ph/9811106 +astro-ph/9811111 +astro-ph/9811113 +astro-ph/9811115 +astro-ph/9811120 +astro-ph/9811121 +astro-ph/9811122 +astro-ph/9811123 +astro-ph/9811126 +astro-ph/9811127 +astro-ph/9811134 +astro-ph/9811135 +astro-ph/9811138 +astro-ph/9811141 +astro-ph/9811146 +astro-ph/9811151 +astro-ph/9811154 +astro-ph/9811156 +astro-ph/9811158 +astro-ph/9811167 +astro-ph/9811168 +astro-ph/9811169 +astro-ph/9811170 +astro-ph/9811174 +astro-ph/9811176 +astro-ph/9811180 +astro-ph/9811183 +astro-ph/9811184 +astro-ph/9811187 +astro-ph/9811188 +astro-ph/9811193 +astro-ph/9811194 +astro-ph/9811198 +astro-ph/9811200 +astro-ph/9811203 +astro-ph/9811205 +astro-ph/9811206 +astro-ph/9811207 +astro-ph/9811213 +astro-ph/9811215 +astro-ph/9811217 +astro-ph/9811219 +astro-ph/9811222 +astro-ph/9811223 +astro-ph/9811226 +astro-ph/9811227 +astro-ph/9811228 +astro-ph/9811229 +astro-ph/9811230 +astro-ph/9811231 +astro-ph/9811233 +astro-ph/9811239 +astro-ph/9811240 +astro-ph/9811241 +astro-ph/9811242 +astro-ph/9811243 +astro-ph/9811247 +astro-ph/9811248 +astro-ph/9811249 +astro-ph/9811258 +astro-ph/9811261 +astro-ph/9811265 +astro-ph/9811267 +astro-ph/9811268 +astro-ph/9811272 +astro-ph/9811274 +astro-ph/9811275 +astro-ph/9811277 +astro-ph/9811278 +astro-ph/9811279 +astro-ph/9811282 +astro-ph/9811284 +astro-ph/9811286 +astro-ph/9811287 +astro-ph/9811290 +astro-ph/9811292 +astro-ph/9811295 +astro-ph/9811296 +astro-ph/9811298 +astro-ph/9811299 +astro-ph/9811304 +astro-ph/9811306 +astro-ph/9811309 +astro-ph/9811316 +astro-ph/9811317 +astro-ph/9811318 +astro-ph/9811319 +astro-ph/9811320 +astro-ph/9811321 +astro-ph/9811323 +astro-ph/9811327 +astro-ph/9811329 +astro-ph/9811332 +astro-ph/9811333 +astro-ph/9811336 +astro-ph/9811337 +astro-ph/9811339 +astro-ph/9811340 +astro-ph/9811342 +astro-ph/9811343 +astro-ph/9811344 +astro-ph/9811346 +astro-ph/9811347 +astro-ph/9811350 +astro-ph/9811351 +astro-ph/9811352 +astro-ph/9811353 +astro-ph/9811357 +astro-ph/9811359 +astro-ph/9811366 +astro-ph/9811369 +astro-ph/9811370 +astro-ph/9811372 +astro-ph/9811373 +astro-ph/9811377 +astro-ph/9811381 +astro-ph/9811383 +astro-ph/9811386 +astro-ph/9811387 +astro-ph/9811388 +astro-ph/9811389 +astro-ph/9811392 +astro-ph/9811394 +astro-ph/9811395 +astro-ph/9811396 +astro-ph/9811397 +astro-ph/9811398 +astro-ph/9811404 +astro-ph/9811407 +astro-ph/9811411 +astro-ph/9811412 +astro-ph/9811413 +astro-ph/9811415 +astro-ph/9811424 +astro-ph/9811425 +astro-ph/9811427 +astro-ph/9811442 +astro-ph/9811450 +astro-ph/9811451 +astro-ph/9811452 +astro-ph/9811453 +astro-ph/9811456 +astro-ph/9811465 +astro-ph/9811473 +astro-ph/9811477 +astro-ph/9811479 +astro-ph/9811480 +astro-ph/9811481 +astro-ph/9812001 +astro-ph/9812002 +astro-ph/9812005 +astro-ph/9812007 +astro-ph/9812012 +astro-ph/9812015 +astro-ph/9812019 +astro-ph/9812023 +astro-ph/9812024 +astro-ph/9812026 +astro-ph/9812028 +astro-ph/9812032 +astro-ph/9812033 +astro-ph/9812034 +astro-ph/9812035 +astro-ph/9812037 +astro-ph/9812038 +astro-ph/9812040 +astro-ph/9812049 +astro-ph/9812056 +astro-ph/9812057 +astro-ph/9812058 +astro-ph/9812060 +astro-ph/9812064 +astro-ph/9812065 +astro-ph/9812067 +astro-ph/9812070 +astro-ph/9812073 +astro-ph/9812075 +astro-ph/9812076 +astro-ph/9812078 +astro-ph/9812079 +astro-ph/9812080 +astro-ph/9812081 +astro-ph/9812082 +astro-ph/9812084 +astro-ph/9812086 +astro-ph/9812088 +astro-ph/9812089 +astro-ph/9812092 +astro-ph/9812095 +astro-ph/9812097 +astro-ph/9812101 +astro-ph/9812104 +astro-ph/9812106 +astro-ph/9812107 +astro-ph/9812110 +astro-ph/9812111 +astro-ph/9812113 +astro-ph/9812116 +astro-ph/9812122 +astro-ph/9812125 +astro-ph/9812126 +astro-ph/9812129 +astro-ph/9812131 +astro-ph/9812132 +astro-ph/9812134 +astro-ph/9812136 +astro-ph/9812137 +astro-ph/9812139 +astro-ph/9812141 +astro-ph/9812143 +astro-ph/9812145 +astro-ph/9812146 +astro-ph/9812148 +astro-ph/9812151 +astro-ph/9812152 +astro-ph/9812154 +astro-ph/9812155 +astro-ph/9812157 +astro-ph/9812159 +astro-ph/9812160 +astro-ph/9812161 +astro-ph/9812162 +astro-ph/9812164 +astro-ph/9812165 +astro-ph/9812168 +astro-ph/9812169 +astro-ph/9812170 +astro-ph/9812172 +astro-ph/9812175 +astro-ph/9812176 +astro-ph/9812177 +astro-ph/9812180 +astro-ph/9812181 +astro-ph/9812182 +astro-ph/9812183 +astro-ph/9812187 +astro-ph/9812189 +astro-ph/9812191 +astro-ph/9812192 +astro-ph/9812193 +astro-ph/9812194 +astro-ph/9812197 +astro-ph/9812198 +astro-ph/9812202 +astro-ph/9812203 +astro-ph/9812205 +astro-ph/9812206 +astro-ph/9812208 +astro-ph/9812212 +astro-ph/9812215 +astro-ph/9812217 +astro-ph/9812218 +astro-ph/9812219 +astro-ph/9812220 +astro-ph/9812222 +astro-ph/9812224 +astro-ph/9812226 +astro-ph/9812231 +astro-ph/9812234 +astro-ph/9812239 +astro-ph/9812240 +astro-ph/9812242 +astro-ph/9812243 +astro-ph/9812244 +astro-ph/9812247 +astro-ph/9812248 +astro-ph/9812249 +astro-ph/9812251 +astro-ph/9812253 +astro-ph/9812254 +astro-ph/9812255 +astro-ph/9812261 +astro-ph/9812262 +astro-ph/9812263 +astro-ph/9812264 +astro-ph/9812266 +astro-ph/9812268 +astro-ph/9812270 +astro-ph/9812273 +astro-ph/9812274 +astro-ph/9812275 +astro-ph/9812276 +astro-ph/9812279 +astro-ph/9812280 +astro-ph/9812283 +astro-ph/9812284 +astro-ph/9812286 +astro-ph/9812289 +astro-ph/9812290 +astro-ph/9812291 +astro-ph/9812292 +astro-ph/9812294 +astro-ph/9812296 +astro-ph/9812298 +astro-ph/9812299 +astro-ph/9812300 +astro-ph/9812301 +astro-ph/9812302 +astro-ph/9812306 +astro-ph/9812308 +astro-ph/9812309 +astro-ph/9812310 +astro-ph/9812311 +astro-ph/9812316 +astro-ph/9812317 +astro-ph/9812318 +astro-ph/9812322 +astro-ph/9812323 +astro-ph/9812324 +astro-ph/9812326 +astro-ph/9812328 +astro-ph/9812330 +astro-ph/9812332 +astro-ph/9812337 +astro-ph/9812338 +astro-ph/9812340 +astro-ph/9812341 +astro-ph/9812343 +astro-ph/9812344 +astro-ph/9812347 +astro-ph/9812351 +astro-ph/9812352 +astro-ph/9812354 +astro-ph/9812355 +astro-ph/9812360 +astro-ph/9812362 +astro-ph/9812363 +astro-ph/9812365 +astro-ph/9812367 +astro-ph/9812368 +astro-ph/9812369 +astro-ph/9812375 +astro-ph/9812378 +astro-ph/9812379 +astro-ph/9812380 +astro-ph/9812382 +astro-ph/9812383 +astro-ph/9812385 +astro-ph/9812386 +astro-ph/9812387 +astro-ph/9812389 +astro-ph/9812390 +astro-ph/9812391 +astro-ph/9812392 +astro-ph/9812393 +astro-ph/9812394 +astro-ph/9812403 +astro-ph/9812407 +astro-ph/9812417 +astro-ph/9812423 +astro-ph/9812424 +astro-ph/9812426 +astro-ph/9812428 +astro-ph/9812430 +astro-ph/9812435 +astro-ph/9812441 +astro-ph/9812442 +astro-ph/9812446 +astro-ph/9812448 +astro-ph/9812450 +astro-ph/9812452 +astro-ph/9812453 +astro-ph/9812456 +astro-ph/9812457 +astro-ph/9812458 +astro-ph/9812460 +astro-ph/9812462 +astro-ph/9812465 +astro-ph/9812467 +astro-ph/9812469 +astro-ph/9812471 +astro-ph/9812475 +astro-ph/9812477 +astro-ph/9812478 +astro-ph/9812481 +astro-ph/9812485 +astro-ph/9812486 +astro-ph/9812487 +astro-ph/9901001 +astro-ph/9901003 +astro-ph/9901006 +astro-ph/9901010 +astro-ph/9901011 +astro-ph/9901012 +astro-ph/9901015 +astro-ph/9901016 +astro-ph/9901017 +astro-ph/9901018 +astro-ph/9901019 +astro-ph/9901022 +astro-ph/9901025 +astro-ph/9901026 +astro-ph/9901027 +astro-ph/9901030 +astro-ph/9901032 +astro-ph/9901035 +astro-ph/9901036 +astro-ph/9901037 +astro-ph/9901041 +astro-ph/9901042 +astro-ph/9901044 +astro-ph/9901046 +astro-ph/9901047 +astro-ph/9901050 +astro-ph/9901054 +astro-ph/9901055 +astro-ph/9901057 +astro-ph/9901058 +astro-ph/9901060 +astro-ph/9901062 +astro-ph/9901064 +astro-ph/9901066 +astro-ph/9901069 +astro-ph/9901070 +astro-ph/9901072 +astro-ph/9901073 +astro-ph/9901074 +astro-ph/9901075 +astro-ph/9901077 +astro-ph/9901078 +astro-ph/9901080 +astro-ph/9901081 +astro-ph/9901083 +astro-ph/9901084 +astro-ph/9901085 +astro-ph/9901087 +astro-ph/9901091 +astro-ph/9901093 +astro-ph/9901095 +astro-ph/9901096 +astro-ph/9901098 +astro-ph/9901100 +astro-ph/9901105 +astro-ph/9901106 +astro-ph/9901107 +astro-ph/9901109 +astro-ph/9901110 +astro-ph/9901111 +astro-ph/9901114 +astro-ph/9901119 +astro-ph/9901121 +astro-ph/9901125 +astro-ph/9901127 +astro-ph/9901131 +astro-ph/9901133 +astro-ph/9901134 +astro-ph/9901137 +astro-ph/9901138 +astro-ph/9901143 +astro-ph/9901145 +astro-ph/9901149 +astro-ph/9901151 +astro-ph/9901152 +astro-ph/9901153 +astro-ph/9901154 +astro-ph/9901156 +astro-ph/9901157 +astro-ph/9901159 +astro-ph/9901160 +astro-ph/9901161 +astro-ph/9901162 +astro-ph/9901165 +astro-ph/9901166 +astro-ph/9901169 +astro-ph/9901171 +astro-ph/9901172 +astro-ph/9901176 +astro-ph/9901177 +astro-ph/9901181 +astro-ph/9901184 +astro-ph/9901185 +astro-ph/9901187 +astro-ph/9901189 +astro-ph/9901190 +astro-ph/9901194 +astro-ph/9901195 +astro-ph/9901196 +astro-ph/9901197 +astro-ph/9901198 +astro-ph/9901199 +astro-ph/9901200 +astro-ph/9901201 +astro-ph/9901202 +astro-ph/9901204 +astro-ph/9901206 +astro-ph/9901209 +astro-ph/9901210 +astro-ph/9901212 +astro-ph/9901214 +astro-ph/9901216 +astro-ph/9901217 +astro-ph/9901218 +astro-ph/9901220 +astro-ph/9901223 +astro-ph/9901225 +astro-ph/9901226 +astro-ph/9901227 +astro-ph/9901236 +astro-ph/9901237 +astro-ph/9901239 +astro-ph/9901241 +astro-ph/9901242 +astro-ph/9901243 +astro-ph/9901247 +astro-ph/9901250 +astro-ph/9901251 +astro-ph/9901252 +astro-ph/9901253 +astro-ph/9901257 +astro-ph/9901259 +astro-ph/9901261 +astro-ph/9901262 +astro-ph/9901266 +astro-ph/9901269 +astro-ph/9901273 +astro-ph/9901275 +astro-ph/9901276 +astro-ph/9901279 +astro-ph/9901283 +astro-ph/9901285 +astro-ph/9901286 +astro-ph/9901288 +astro-ph/9901290 +astro-ph/9901295 +astro-ph/9901296 +astro-ph/9901300 +astro-ph/9901301 +astro-ph/9901302 +astro-ph/9901308 +astro-ph/9901311 +astro-ph/9901313 +astro-ph/9901314 +astro-ph/9901315 +astro-ph/9901318 +astro-ph/9901319 +astro-ph/9901321 +astro-ph/9901323 +astro-ph/9901324 +astro-ph/9901326 +astro-ph/9901327 +astro-ph/9901328 +astro-ph/9901329 +astro-ph/9901330 +astro-ph/9901331 +astro-ph/9901332 +astro-ph/9901333 +astro-ph/9901334 +astro-ph/9901336 +astro-ph/9901339 +astro-ph/9901340 +astro-ph/9901341 +astro-ph/9901343 +astro-ph/9901345 +astro-ph/9901346 +astro-ph/9901348 +astro-ph/9901349 +astro-ph/9901353 +astro-ph/9901354 +astro-ph/9901355 +astro-ph/9901360 +astro-ph/9901362 +astro-ph/9901363 +astro-ph/9901365 +astro-ph/9901366 +astro-ph/9901368 +astro-ph/9901369 +astro-ph/9901371 +astro-ph/9901374 +astro-ph/9901375 +astro-ph/9901376 +astro-ph/9901377 +astro-ph/9901379 +astro-ph/9901382 +astro-ph/9901383 +astro-ph/9901384 +astro-ph/9901387 +astro-ph/9901389 +astro-ph/9901390 +astro-ph/9901394 +astro-ph/9901397 +astro-ph/9901398 +astro-ph/9901399 +astro-ph/9901400 +astro-ph/9901401 +astro-ph/9901405 +astro-ph/9901406 +astro-ph/9901407 +astro-ph/9901408 +astro-ph/9901409 +astro-ph/9901411 +astro-ph/9901413 +astro-ph/9901415 +astro-ph/9901418 +astro-ph/9901420 +astro-ph/9901421 +astro-ph/9901422 +astro-ph/9901424 +astro-ph/9902003 +astro-ph/9902004 +astro-ph/9902007 +astro-ph/9902009 +astro-ph/9902012 +astro-ph/9902013 +astro-ph/9902018 +astro-ph/9902021 +astro-ph/9902025 +astro-ph/9902026 +astro-ph/9902027 +astro-ph/9902028 +astro-ph/9902031 +astro-ph/9902033 +astro-ph/9902034 +astro-ph/9902035 +astro-ph/9902036 +astro-ph/9902037 +astro-ph/9902038 +astro-ph/9902042 +astro-ph/9902044 +astro-ph/9902047 +astro-ph/9902050 +astro-ph/9902052 +astro-ph/9902053 +astro-ph/9902054 +astro-ph/9902057 +astro-ph/9902058 +astro-ph/9902059 +astro-ph/9902060 +astro-ph/9902061 +astro-ph/9902062 +astro-ph/9902063 +astro-ph/9902066 +astro-ph/9902067 +astro-ph/9902068 +astro-ph/9902069 +astro-ph/9902072 +astro-ph/9902073 +astro-ph/9902076 +astro-ph/9902077 +astro-ph/9902078 +astro-ph/9902080 +astro-ph/9902081 +astro-ph/9902082 +astro-ph/9902083 +astro-ph/9902085 +astro-ph/9902086 +astro-ph/9902087 +astro-ph/9902090 +astro-ph/9902092 +astro-ph/9902093 +astro-ph/9902094 +astro-ph/9902096 +astro-ph/9902098 +astro-ph/9902100 +astro-ph/9902102 +astro-ph/9902103 +astro-ph/9902104 +astro-ph/9902105 +astro-ph/9902106 +astro-ph/9902110 +astro-ph/9902112 +astro-ph/9902115 +astro-ph/9902116 +astro-ph/9902118 +astro-ph/9902119 +astro-ph/9902124 +astro-ph/9902128 +astro-ph/9902129 +astro-ph/9902130 +astro-ph/9902131 +astro-ph/9902132 +astro-ph/9902133 +astro-ph/9902147 +astro-ph/9902149 +astro-ph/9902150 +astro-ph/9902151 +astro-ph/9902154 +astro-ph/9902155 +astro-ph/9902156 +astro-ph/9902157 +astro-ph/9902159 +astro-ph/9902161 +astro-ph/9902163 +astro-ph/9902165 +astro-ph/9902168 +astro-ph/9902169 +astro-ph/9902170 +astro-ph/9902172 +astro-ph/9902175 +astro-ph/9902177 +astro-ph/9902178 +astro-ph/9902179 +astro-ph/9902181 +astro-ph/9902182 +astro-ph/9902186 +astro-ph/9902188 +astro-ph/9902189 +astro-ph/9902190 +astro-ph/9902193 +astro-ph/9902195 +astro-ph/9902200 +astro-ph/9902206 +astro-ph/9902208 +astro-ph/9902210 +astro-ph/9902211 +astro-ph/9902212 +astro-ph/9902213 +astro-ph/9902214 +astro-ph/9902215 +astro-ph/9902216 +astro-ph/9902217 +astro-ph/9902218 +astro-ph/9902219 +astro-ph/9902221 +astro-ph/9902223 +astro-ph/9902224 +astro-ph/9902225 +astro-ph/9902226 +astro-ph/9902230 +astro-ph/9902231 +astro-ph/9902232 +astro-ph/9902235 +astro-ph/9902238 +astro-ph/9902243 +astro-ph/9902249 +astro-ph/9902251 +astro-ph/9902253 +astro-ph/9902256 +astro-ph/9902257 +astro-ph/9902258 +astro-ph/9902260 +astro-ph/9902262 +astro-ph/9902263 +astro-ph/9902264 +astro-ph/9902266 +astro-ph/9902267 +astro-ph/9902269 +astro-ph/9902273 +astro-ph/9902274 +astro-ph/9902277 +astro-ph/9902278 +astro-ph/9902279 +astro-ph/9902280 +astro-ph/9902289 +astro-ph/9902290 +astro-ph/9902291 +astro-ph/9902292 +astro-ph/9902295 +astro-ph/9902296 +astro-ph/9902298 +astro-ph/9902299 +astro-ph/9902300 +astro-ph/9902302 +astro-ph/9902303 +astro-ph/9902304 +astro-ph/9902306 +astro-ph/9902308 +astro-ph/9902309 +astro-ph/9902310 +astro-ph/9902316 +astro-ph/9902317 +astro-ph/9902320 +astro-ph/9902322 +astro-ph/9902324 +astro-ph/9902326 +astro-ph/9902328 +astro-ph/9902330 +astro-ph/9902333 +astro-ph/9902338 +astro-ph/9902344 +astro-ph/9902346 +astro-ph/9902347 +astro-ph/9902348 +astro-ph/9902349 +astro-ph/9902350 +astro-ph/9902351 +astro-ph/9902352 +astro-ph/9902353 +astro-ph/9902355 +astro-ph/9902357 +astro-ph/9902358 +astro-ph/9902360 +astro-ph/9902363 +astro-ph/9902366 +astro-ph/9902367 +astro-ph/9902370 +astro-ph/9902371 +astro-ph/9902372 +astro-ph/9902373 +astro-ph/9902374 +astro-ph/9902377 +astro-ph/9902381 +astro-ph/9902382 +astro-ph/9902383 +astro-ph/9902385 +astro-ph/9902386 +astro-ph/9903002 +astro-ph/9903003 +astro-ph/9903004 +astro-ph/9903006 +astro-ph/9903007 +astro-ph/9903008 +astro-ph/9903009 +astro-ph/9903011 +astro-ph/9903016 +astro-ph/9903018 +astro-ph/9903020 +astro-ph/9903022 +astro-ph/9903026 +astro-ph/9903027 +astro-ph/9903029 +astro-ph/9903030 +astro-ph/9903032 +astro-ph/9903034 +astro-ph/9903035 +astro-ph/9903037 +astro-ph/9903038 +astro-ph/9903039 +astro-ph/9903040 +astro-ph/9903042 +astro-ph/9903047 +astro-ph/9903048 +astro-ph/9903050 +astro-ph/9903051 +astro-ph/9903052 +astro-ph/9903053 +astro-ph/9903058 +astro-ph/9903059 +astro-ph/9903061 +astro-ph/9903062 +astro-ph/9903065 +astro-ph/9903067 +astro-ph/9903069 +astro-ph/9903070 +astro-ph/9903073 +astro-ph/9903075 +astro-ph/9903077 +astro-ph/9903078 +astro-ph/9903079 +astro-ph/9903080 +astro-ph/9903083 +astro-ph/9903086 +astro-ph/9903087 +astro-ph/9903088 +astro-ph/9903092 +astro-ph/9903093 +astro-ph/9903094 +astro-ph/9903095 +astro-ph/9903096 +astro-ph/9903099 +astro-ph/9903101 +astro-ph/9903103 +astro-ph/9903104 +astro-ph/9903105 +astro-ph/9903113 +astro-ph/9903114 +astro-ph/9903117 +astro-ph/9903123 +astro-ph/9903129 +astro-ph/9903133 +astro-ph/9903139 +astro-ph/9903146 +astro-ph/9903147 +astro-ph/9903148 +astro-ph/9903151 +astro-ph/9903152 +astro-ph/9903153 +astro-ph/9903159 +astro-ph/9903161 +astro-ph/9903163 +astro-ph/9903165 +astro-ph/9903169 +astro-ph/9903171 +astro-ph/9903174 +astro-ph/9903176 +astro-ph/9903179 +astro-ph/9903181 +astro-ph/9903182 +astro-ph/9903187 +astro-ph/9903188 +astro-ph/9903189 +astro-ph/9903190 +astro-ph/9903194 +astro-ph/9903196 +astro-ph/9903198 +astro-ph/9903199 +astro-ph/9903203 +astro-ph/9903204 +astro-ph/9903205 +astro-ph/9903206 +astro-ph/9903211 +astro-ph/9903215 +astro-ph/9903216 +astro-ph/9903217 +astro-ph/9903218 +astro-ph/9903219 +astro-ph/9903221 +astro-ph/9903225 +astro-ph/9903226 +astro-ph/9903227 +astro-ph/9903228 +astro-ph/9903229 +astro-ph/9903233 +astro-ph/9903236 +astro-ph/9903240 +astro-ph/9903242 +astro-ph/9903245 +astro-ph/9903246 +astro-ph/9903247 +astro-ph/9903249 +astro-ph/9903250 +astro-ph/9903251 +astro-ph/9903253 +astro-ph/9903254 +astro-ph/9903257 +astro-ph/9903260 +astro-ph/9903261 +astro-ph/9903266 +astro-ph/9903267 +astro-ph/9903268 +astro-ph/9903269 +astro-ph/9903274 +astro-ph/9903276 +astro-ph/9903277 +astro-ph/9903282 +astro-ph/9903286 +astro-ph/9903287 +astro-ph/9903288 +astro-ph/9903291 +astro-ph/9903292 +astro-ph/9903293 +astro-ph/9903294 +astro-ph/9903295 +astro-ph/9903296 +astro-ph/9903298 +astro-ph/9903299 +astro-ph/9903303 +astro-ph/9903305 +astro-ph/9903306 +astro-ph/9903307 +astro-ph/9903308 +astro-ph/9903310 +astro-ph/9903311 +astro-ph/9903312 +astro-ph/9903313 +astro-ph/9903314 +astro-ph/9903316 +astro-ph/9903318 +astro-ph/9903320 +astro-ph/9903321 +astro-ph/9903324 +astro-ph/9903325 +astro-ph/9903327 +astro-ph/9903328 +astro-ph/9903329 +astro-ph/9903330 +astro-ph/9903331 +astro-ph/9903333 +astro-ph/9903334 +astro-ph/9903337 +astro-ph/9903339 +astro-ph/9903340 +astro-ph/9903345 +astro-ph/9903348 +astro-ph/9903349 +astro-ph/9903352 +astro-ph/9903354 +astro-ph/9903355 +astro-ph/9903360 +astro-ph/9903363 +astro-ph/9903364 +astro-ph/9903365 +astro-ph/9903366 +astro-ph/9903368 +astro-ph/9903371 +astro-ph/9903372 +astro-ph/9903376 +astro-ph/9903377 +astro-ph/9903378 +astro-ph/9903379 +astro-ph/9903381 +astro-ph/9903383 +astro-ph/9903384 +astro-ph/9903385 +astro-ph/9903394 +astro-ph/9903395 +astro-ph/9903398 +astro-ph/9903400 +astro-ph/9903404 +astro-ph/9903407 +astro-ph/9903408 +astro-ph/9903410 +astro-ph/9903412 +astro-ph/9903413 +astro-ph/9903414 +astro-ph/9903415 +astro-ph/9903416 +astro-ph/9903417 +astro-ph/9903418 +astro-ph/9903419 +astro-ph/9903421 +astro-ph/9903422 +astro-ph/9903423 +astro-ph/9903424 +astro-ph/9903426 +astro-ph/9903429 +astro-ph/9903435 +astro-ph/9903439 +astro-ph/9903440 +astro-ph/9903441 +astro-ph/9903442 +astro-ph/9903444 +astro-ph/9903447 +astro-ph/9903448 +astro-ph/9903451 +astro-ph/9903452 +astro-ph/9903454 +astro-ph/9903457 +astro-ph/9903458 +astro-ph/9903459 +astro-ph/9903461 +astro-ph/9903462 +astro-ph/9903465 +astro-ph/9903466 +astro-ph/9903471 +astro-ph/9903472 +astro-ph/9903475 +astro-ph/9903480 +astro-ph/9903483 +astro-ph/9903484 +astro-ph/9903486 +astro-ph/9903487 +astro-ph/9903490 +astro-ph/9903491 +astro-ph/9903492 +astro-ph/9903493 +astro-ph/9904002 +astro-ph/9904003 +astro-ph/9904004 +astro-ph/9904005 +astro-ph/9904006 +astro-ph/9904009 +astro-ph/9904010 +astro-ph/9904011 +astro-ph/9904013 +astro-ph/9904014 +astro-ph/9904015 +astro-ph/9904018 +astro-ph/9904019 +astro-ph/9904025 +astro-ph/9904026 +astro-ph/9904028 +astro-ph/9904029 +astro-ph/9904032 +astro-ph/9904033 +astro-ph/9904034 +astro-ph/9904036 +astro-ph/9904037 +astro-ph/9904038 +astro-ph/9904040 +astro-ph/9904041 +astro-ph/9904042 +astro-ph/9904046 +astro-ph/9904048 +astro-ph/9904051 +astro-ph/9904053 +astro-ph/9904054 +astro-ph/9904056 +astro-ph/9904065 +astro-ph/9904066 +astro-ph/9904067 +astro-ph/9904068 +astro-ph/9904069 +astro-ph/9904070 +astro-ph/9904071 +astro-ph/9904073 +astro-ph/9904076 +astro-ph/9904078 +astro-ph/9904079 +astro-ph/9904080 +astro-ph/9904085 +astro-ph/9904089 +astro-ph/9904091 +astro-ph/9904093 +astro-ph/9904094 +astro-ph/9904096 +astro-ph/9904099 +astro-ph/9904101 +astro-ph/9904105 +astro-ph/9904107 +astro-ph/9904109 +astro-ph/9904110 +astro-ph/9904112 +astro-ph/9904113 +astro-ph/9904114 +astro-ph/9904115 +astro-ph/9904116 +astro-ph/9904117 +astro-ph/9904118 +astro-ph/9904119 +astro-ph/9904123 +astro-ph/9904124 +astro-ph/9904125 +astro-ph/9904126 +astro-ph/9904129 +astro-ph/9904136 +astro-ph/9904138 +astro-ph/9904141 +astro-ph/9904142 +astro-ph/9904145 +astro-ph/9904146 +astro-ph/9904147 +astro-ph/9904151 +astro-ph/9904152 +astro-ph/9904153 +astro-ph/9904154 +astro-ph/9904155 +astro-ph/9904156 +astro-ph/9904160 +astro-ph/9904164 +astro-ph/9904167 +astro-ph/9904168 +astro-ph/9904169 +astro-ph/9904170 +astro-ph/9904171 +astro-ph/9904173 +astro-ph/9904175 +astro-ph/9904177 +astro-ph/9904178 +astro-ph/9904181 +astro-ph/9904183 +astro-ph/9904184 +astro-ph/9904185 +astro-ph/9904186 +astro-ph/9904189 +astro-ph/9904193 +astro-ph/9904194 +astro-ph/9904195 +astro-ph/9904196 +astro-ph/9904197 +astro-ph/9904199 +astro-ph/9904202 +astro-ph/9904203 +astro-ph/9904204 +astro-ph/9904206 +astro-ph/9904209 +astro-ph/9904210 +astro-ph/9904211 +astro-ph/9904212 +astro-ph/9904214 +astro-ph/9904216 +astro-ph/9904219 +astro-ph/9904221 +astro-ph/9904222 +astro-ph/9904223 +astro-ph/9904226 +astro-ph/9904231 +astro-ph/9904232 +astro-ph/9904237 +astro-ph/9904238 +astro-ph/9904239 +astro-ph/9904241 +astro-ph/9904242 +astro-ph/9904245 +astro-ph/9904247 +astro-ph/9904249 +astro-ph/9904250 +astro-ph/9904251 +astro-ph/9904252 +astro-ph/9904253 +astro-ph/9904254 +astro-ph/9904255 +astro-ph/9904258 +astro-ph/9904259 +astro-ph/9904267 +astro-ph/9904268 +astro-ph/9904271 +astro-ph/9904272 +astro-ph/9904273 +astro-ph/9904274 +astro-ph/9904275 +astro-ph/9904276 +astro-ph/9904277 +astro-ph/9904278 +astro-ph/9904287 +astro-ph/9904290 +astro-ph/9904291 +astro-ph/9904292 +astro-ph/9904293 +astro-ph/9904296 +astro-ph/9904299 +astro-ph/9904302 +astro-ph/9904303 +astro-ph/9904304 +astro-ph/9904307 +astro-ph/9904310 +astro-ph/9904312 +astro-ph/9904313 +astro-ph/9904315 +astro-ph/9904316 +astro-ph/9904318 +astro-ph/9904319 +astro-ph/9904321 +astro-ph/9904322 +astro-ph/9904326 +astro-ph/9904328 +astro-ph/9904329 +astro-ph/9904331 +astro-ph/9904337 +astro-ph/9904339 +astro-ph/9904340 +astro-ph/9904341 +astro-ph/9904343 +astro-ph/9904347 +astro-ph/9904352 +astro-ph/9904356 +astro-ph/9904357 +astro-ph/9904358 +astro-ph/9904359 +astro-ph/9904361 +astro-ph/9904363 +astro-ph/9904364 +astro-ph/9904367 +astro-ph/9904368 +astro-ph/9904371 +astro-ph/9904374 +astro-ph/9904375 +astro-ph/9904380 +astro-ph/9904382 +astro-ph/9904383 +astro-ph/9904387 +astro-ph/9904388 +astro-ph/9904391 +astro-ph/9904392 +astro-ph/9904393 +astro-ph/9904397 +astro-ph/9904398 +astro-ph/9904399 +astro-ph/9904402 +astro-ph/9904403 +astro-ph/9904410 +astro-ph/9904413 +astro-ph/9904415 +astro-ph/9904417 +astro-ph/9904419 +astro-ph/9904421 +astro-ph/9904423 +astro-ph/9904424 +astro-ph/9904426 +astro-ph/9904427 +astro-ph/9904428 +astro-ph/9904429 +astro-ph/9905001 +astro-ph/9905002 +astro-ph/9905004 +astro-ph/9905005 +astro-ph/9905006 +astro-ph/9905009 +astro-ph/9905010 +astro-ph/9905013 +astro-ph/9905015 +astro-ph/9905016 +astro-ph/9905020 +astro-ph/9905021 +astro-ph/9905022 +astro-ph/9905023 +astro-ph/9905025 +astro-ph/9905026 +astro-ph/9905027 +astro-ph/9905029 +astro-ph/9905030 +astro-ph/9905031 +astro-ph/9905033 +astro-ph/9905035 +astro-ph/9905039 +astro-ph/9905040 +astro-ph/9905041 +astro-ph/9905042 +astro-ph/9905043 +astro-ph/9905044 +astro-ph/9905046 +astro-ph/9905048 +astro-ph/9905050 +astro-ph/9905052 +astro-ph/9905053 +astro-ph/9905054 +astro-ph/9905055 +astro-ph/9905056 +astro-ph/9905057 +astro-ph/9905058 +astro-ph/9905060 +astro-ph/9905061 +astro-ph/9905063 +astro-ph/9905065 +astro-ph/9905066 +astro-ph/9905067 +astro-ph/9905069 +astro-ph/9905072 +astro-ph/9905073 +astro-ph/9905075 +astro-ph/9905076 +astro-ph/9905080 +astro-ph/9905082 +astro-ph/9905083 +astro-ph/9905085 +astro-ph/9905086 +astro-ph/9905088 +astro-ph/9905089 +astro-ph/9905090 +astro-ph/9905092 +astro-ph/9905094 +astro-ph/9905095 +astro-ph/9905097 +astro-ph/9905098 +astro-ph/9905099 +astro-ph/9905100 +astro-ph/9905102 +astro-ph/9905104 +astro-ph/9905106 +astro-ph/9905107 +astro-ph/9905108 +astro-ph/9905109 +astro-ph/9905110 +astro-ph/9905111 +astro-ph/9905112 +astro-ph/9905121 +astro-ph/9905125 +astro-ph/9905126 +astro-ph/9905128 +astro-ph/9905129 +astro-ph/9905130 +astro-ph/9905131 +astro-ph/9905132 +astro-ph/9905133 +astro-ph/9905134 +astro-ph/9905137 +astro-ph/9905140 +astro-ph/9905141 +astro-ph/9905142 +astro-ph/9905143 +astro-ph/9905145 +astro-ph/9905146 +astro-ph/9905147 +astro-ph/9905151 +astro-ph/9905152 +astro-ph/9905154 +astro-ph/9905155 +astro-ph/9905156 +astro-ph/9905160 +astro-ph/9905163 +astro-ph/9905164 +astro-ph/9905165 +astro-ph/9905168 +astro-ph/9905169 +astro-ph/9905171 +astro-ph/9905172 +astro-ph/9905173 +astro-ph/9905174 +astro-ph/9905180 +astro-ph/9905186 +astro-ph/9905187 +astro-ph/9905188 +astro-ph/9905189 +astro-ph/9905191 +astro-ph/9905193 +astro-ph/9905194 +astro-ph/9905197 +astro-ph/9905198 +astro-ph/9905200 +astro-ph/9905202 +astro-ph/9905203 +astro-ph/9905206 +astro-ph/9905207 +astro-ph/9905209 +astro-ph/9905210 +astro-ph/9905211 +astro-ph/9905212 +astro-ph/9905213 +astro-ph/9905214 +astro-ph/9905216 +astro-ph/9905217 +astro-ph/9905221 +astro-ph/9905222 +astro-ph/9905227 +astro-ph/9905228 +astro-ph/9905230 +astro-ph/9905231 +astro-ph/9905236 +astro-ph/9905237 +astro-ph/9905238 +astro-ph/9905241 +astro-ph/9905242 +astro-ph/9905246 +astro-ph/9905247 +astro-ph/9905249 +astro-ph/9905250 +astro-ph/9905251 +astro-ph/9905253 +astro-ph/9905255 +astro-ph/9905256 +astro-ph/9905259 +astro-ph/9905261 +astro-ph/9905264 +astro-ph/9905267 +astro-ph/9905268 +astro-ph/9905269 +astro-ph/9905270 +astro-ph/9905271 +astro-ph/9905272 +astro-ph/9905274 +astro-ph/9905276 +astro-ph/9905278 +astro-ph/9905279 +astro-ph/9905280 +astro-ph/9905281 +astro-ph/9905282 +astro-ph/9905283 +astro-ph/9905284 +astro-ph/9905285 +astro-ph/9905286 +astro-ph/9905290 +astro-ph/9905292 +astro-ph/9905293 +astro-ph/9905294 +astro-ph/9905295 +astro-ph/9905296 +astro-ph/9905299 +astro-ph/9905300 +astro-ph/9905302 +astro-ph/9905303 +astro-ph/9905304 +astro-ph/9905305 +astro-ph/9905306 +astro-ph/9905309 +astro-ph/9905311 +astro-ph/9905312 +astro-ph/9905313 +astro-ph/9905314 +astro-ph/9905321 +astro-ph/9905322 +astro-ph/9905324 +astro-ph/9905325 +astro-ph/9905326 +astro-ph/9905327 +astro-ph/9905328 +astro-ph/9905330 +astro-ph/9905331 +astro-ph/9905332 +astro-ph/9905333 +astro-ph/9905342 +astro-ph/9905343 +astro-ph/9905346 +astro-ph/9905347 +astro-ph/9905348 +astro-ph/9905349 +astro-ph/9905350 +astro-ph/9905351 +astro-ph/9905352 +astro-ph/9905353 +astro-ph/9905354 +astro-ph/9905357 +astro-ph/9905358 +astro-ph/9905361 +astro-ph/9905362 +astro-ph/9905363 +astro-ph/9905365 +astro-ph/9905366 +astro-ph/9905369 +astro-ph/9905372 +astro-ph/9905375 +astro-ph/9905380 +astro-ph/9905384 +astro-ph/9905385 +astro-ph/9905387 +astro-ph/9905388 +astro-ph/9905391 +astro-ph/9905394 +astro-ph/9906002 +astro-ph/9906003 +astro-ph/9906006 +astro-ph/9906010 +astro-ph/9906011 +astro-ph/9906015 +astro-ph/9906016 +astro-ph/9906018 +astro-ph/9906020 +astro-ph/9906021 +astro-ph/9906023 +astro-ph/9906024 +astro-ph/9906027 +astro-ph/9906028 +astro-ph/9906029 +astro-ph/9906030 +astro-ph/9906031 +astro-ph/9906036 +astro-ph/9906037 +astro-ph/9906044 +astro-ph/9906045 +astro-ph/9906046 +astro-ph/9906048 +astro-ph/9906049 +astro-ph/9906050 +astro-ph/9906052 +astro-ph/9906056 +astro-ph/9906057 +astro-ph/9906059 +astro-ph/9906062 +astro-ph/9906063 +astro-ph/9906065 +astro-ph/9906066 +astro-ph/9906067 +astro-ph/9906070 +astro-ph/9906071 +astro-ph/9906074 +astro-ph/9906079 +astro-ph/9906081 +astro-ph/9906082 +astro-ph/9906084 +astro-ph/9906085 +astro-ph/9906086 +astro-ph/9906088 +astro-ph/9906089 +astro-ph/9906090 +astro-ph/9906095 +astro-ph/9906096 +astro-ph/9906100 +astro-ph/9906101 +astro-ph/9906104 +astro-ph/9906108 +astro-ph/9906109 +astro-ph/9906116 +astro-ph/9906117 +astro-ph/9906121 +astro-ph/9906122 +astro-ph/9906126 +astro-ph/9906131 +astro-ph/9906133 +astro-ph/9906135 +astro-ph/9906140 +astro-ph/9906142 +astro-ph/9906143 +astro-ph/9906145 +astro-ph/9906146 +astro-ph/9906148 +astro-ph/9906152 +astro-ph/9906156 +astro-ph/9906157 +astro-ph/9906158 +astro-ph/9906161 +astro-ph/9906163 +astro-ph/9906164 +astro-ph/9906170 +astro-ph/9906172 +astro-ph/9906173 +astro-ph/9906174 +astro-ph/9906175 +astro-ph/9906177 +astro-ph/9906178 +astro-ph/9906179 +astro-ph/9906180 +astro-ph/9906182 +astro-ph/9906188 +astro-ph/9906189 +astro-ph/9906191 +astro-ph/9906192 +astro-ph/9906193 +astro-ph/9906194 +astro-ph/9906199 +astro-ph/9906202 +astro-ph/9906206 +astro-ph/9906213 +astro-ph/9906214 +astro-ph/9906215 +astro-ph/9906219 +astro-ph/9906220 +astro-ph/9906223 +astro-ph/9906225 +astro-ph/9906226 +astro-ph/9906231 +astro-ph/9906234 +astro-ph/9906235 +astro-ph/9906236 +astro-ph/9906237 +astro-ph/9906238 +astro-ph/9906239 +astro-ph/9906241 +astro-ph/9906244 +astro-ph/9906252 +astro-ph/9906257 +astro-ph/9906259 +astro-ph/9906260 +astro-ph/9906262 +astro-ph/9906265 +astro-ph/9906267 +astro-ph/9906269 +astro-ph/9906270 +astro-ph/9906271 +astro-ph/9906275 +astro-ph/9906276 +astro-ph/9906280 +astro-ph/9906281 +astro-ph/9906283 +astro-ph/9906284 +astro-ph/9906285 +astro-ph/9906286 +astro-ph/9906288 +astro-ph/9906293 +astro-ph/9906294 +astro-ph/9906296 +astro-ph/9906297 +astro-ph/9906299 +astro-ph/9906301 +astro-ph/9906307 +astro-ph/9906309 +astro-ph/9906310 +astro-ph/9906311 +astro-ph/9906314 +astro-ph/9906315 +astro-ph/9906316 +astro-ph/9906317 +astro-ph/9906320 +astro-ph/9906321 +astro-ph/9906322 +astro-ph/9906323 +astro-ph/9906326 +astro-ph/9906328 +astro-ph/9906330 +astro-ph/9906331 +astro-ph/9906335 +astro-ph/9906336 +astro-ph/9906337 +astro-ph/9906342 +astro-ph/9906344 +astro-ph/9906345 +astro-ph/9906346 +astro-ph/9906351 +astro-ph/9906352 +astro-ph/9906353 +astro-ph/9906354 +astro-ph/9906355 +astro-ph/9906356 +astro-ph/9906357 +astro-ph/9906358 +astro-ph/9906362 +astro-ph/9906363 +astro-ph/9906364 +astro-ph/9906365 +astro-ph/9906366 +astro-ph/9906367 +astro-ph/9906368 +astro-ph/9906370 +astro-ph/9906371 +astro-ph/9906372 +astro-ph/9906373 +astro-ph/9906374 +astro-ph/9906375 +astro-ph/9906376 +astro-ph/9906377 +astro-ph/9906389 +astro-ph/9906390 +astro-ph/9906391 +astro-ph/9906394 +astro-ph/9906395 +astro-ph/9906398 +astro-ph/9906400 +astro-ph/9906401 +astro-ph/9906402 +astro-ph/9906406 +astro-ph/9906408 +astro-ph/9906411 +astro-ph/9906412 +astro-ph/9906414 +astro-ph/9906416 +astro-ph/9906418 +astro-ph/9906420 +astro-ph/9906421 +astro-ph/9906428 +astro-ph/9906430 +astro-ph/9906431 +astro-ph/9906435 +astro-ph/9906436 +astro-ph/9906437 +astro-ph/9906442 +astro-ph/9906443 +astro-ph/9906446 +astro-ph/9906447 +astro-ph/9906448 +astro-ph/9906449 +astro-ph/9906452 +astro-ph/9906453 +astro-ph/9906455 +astro-ph/9906457 +astro-ph/9906459 +astro-ph/9906460 +astro-ph/9906462 +astro-ph/9906464 +astro-ph/9906468 +astro-ph/9906470 +astro-ph/9906471 +astro-ph/9906472 +astro-ph/9906475 +astro-ph/9906476 +astro-ph/9906479 +astro-ph/9906484 +astro-ph/9906487 +astro-ph/9906490 +astro-ph/9906495 +astro-ph/9906496 +astro-ph/9906498 +astro-ph/9906499 +astro-ph/9906501 +astro-ph/9906502 +astro-ph/9906503 +astro-ph/9907001 +astro-ph/9907003 +astro-ph/9907004 +astro-ph/9907005 +astro-ph/9907009 +astro-ph/9907010 +astro-ph/9907012 +astro-ph/9907013 +astro-ph/9907014 +astro-ph/9907017 +astro-ph/9907023 +astro-ph/9907029 +astro-ph/9907031 +astro-ph/9907032 +astro-ph/9907033 +astro-ph/9907034 +astro-ph/9907035 +astro-ph/9907036 +astro-ph/9907037 +astro-ph/9907039 +astro-ph/9907040 +astro-ph/9907041 +astro-ph/9907042 +astro-ph/9907044 +astro-ph/9907045 +astro-ph/9907046 +astro-ph/9907047 +astro-ph/9907048 +astro-ph/9907058 +astro-ph/9907059 +astro-ph/9907061 +astro-ph/9907065 +astro-ph/9907070 +astro-ph/9907071 +astro-ph/9907072 +astro-ph/9907075 +astro-ph/9907076 +astro-ph/9907077 +astro-ph/9907079 +astro-ph/9907080 +astro-ph/9907083 +astro-ph/9907085 +astro-ph/9907086 +astro-ph/9907087 +astro-ph/9907088 +astro-ph/9907091 +astro-ph/9907092 +astro-ph/9907095 +astro-ph/9907096 +astro-ph/9907097 +astro-ph/9907098 +astro-ph/9907099 +astro-ph/9907100 +astro-ph/9907102 +astro-ph/9907103 +astro-ph/9907104 +astro-ph/9907105 +astro-ph/9907107 +astro-ph/9907111 +astro-ph/9907114 +astro-ph/9907115 +astro-ph/9907116 +astro-ph/9907118 +astro-ph/9907120 +astro-ph/9907121 +astro-ph/9907123 +astro-ph/9907124 +astro-ph/9907128 +astro-ph/9907130 +astro-ph/9907132 +astro-ph/9907135 +astro-ph/9907141 +astro-ph/9907144 +astro-ph/9907148 +astro-ph/9907153 +astro-ph/9907155 +astro-ph/9907156 +astro-ph/9907157 +astro-ph/9907159 +astro-ph/9907163 +astro-ph/9907165 +astro-ph/9907172 +astro-ph/9907173 +astro-ph/9907174 +astro-ph/9907176 +astro-ph/9907177 +astro-ph/9907178 +astro-ph/9907179 +astro-ph/9907180 +astro-ph/9907181 +astro-ph/9907182 +astro-ph/9907184 +astro-ph/9907185 +astro-ph/9907186 +astro-ph/9907188 +astro-ph/9907189 +astro-ph/9907190 +astro-ph/9907191 +astro-ph/9907193 +astro-ph/9907194 +astro-ph/9907195 +astro-ph/9907197 +astro-ph/9907198 +astro-ph/9907201 +astro-ph/9907204 +astro-ph/9907209 +astro-ph/9907211 +astro-ph/9907215 +astro-ph/9907216 +astro-ph/9907217 +astro-ph/9907218 +astro-ph/9907220 +astro-ph/9907223 +astro-ph/9907231 +astro-ph/9907233 +astro-ph/9907235 +astro-ph/9907238 +astro-ph/9907239 +astro-ph/9907241 +astro-ph/9907243 +astro-ph/9907247 +astro-ph/9907252 +astro-ph/9907253 +astro-ph/9907254 +astro-ph/9907256 +astro-ph/9907257 +astro-ph/9907258 +astro-ph/9907261 +astro-ph/9907268 +astro-ph/9907269 +astro-ph/9907270 +astro-ph/9907271 +astro-ph/9907274 +astro-ph/9907275 +astro-ph/9907278 +astro-ph/9907279 +astro-ph/9907280 +astro-ph/9907282 +astro-ph/9907283 +astro-ph/9907285 +astro-ph/9907291 +astro-ph/9907292 +astro-ph/9907293 +astro-ph/9907294 +astro-ph/9907296 +astro-ph/9907297 +astro-ph/9907298 +astro-ph/9907299 +astro-ph/9907301 +astro-ph/9907302 +astro-ph/9907303 +astro-ph/9907304 +astro-ph/9907305 +astro-ph/9907309 +astro-ph/9907310 +astro-ph/9907311 +astro-ph/9907313 +astro-ph/9907315 +astro-ph/9907316 +astro-ph/9907317 +astro-ph/9907321 +astro-ph/9907323 +astro-ph/9907325 +astro-ph/9907326 +astro-ph/9907327 +astro-ph/9907328 +astro-ph/9907330 +astro-ph/9907331 +astro-ph/9907333 +astro-ph/9907334 +astro-ph/9907337 +astro-ph/9907341 +astro-ph/9907343 +astro-ph/9907346 +astro-ph/9907348 +astro-ph/9907349 +astro-ph/9907350 +astro-ph/9907354 +astro-ph/9907358 +astro-ph/9907360 +astro-ph/9907362 +astro-ph/9907364 +astro-ph/9907367 +astro-ph/9907368 +astro-ph/9907371 +astro-ph/9907372 +astro-ph/9907377 +astro-ph/9907378 +astro-ph/9907380 +astro-ph/9907382 +astro-ph/9907383 +astro-ph/9907385 +astro-ph/9907389 +astro-ph/9907391 +astro-ph/9907393 +astro-ph/9907394 +astro-ph/9907395 +astro-ph/9907397 +astro-ph/9907398 +astro-ph/9907401 +astro-ph/9907402 +astro-ph/9907403 +astro-ph/9907405 +astro-ph/9907407 +astro-ph/9907409 +astro-ph/9907412 +astro-ph/9907420 +astro-ph/9907421 +astro-ph/9907423 +astro-ph/9907424 +astro-ph/9907425 +astro-ph/9907426 +astro-ph/9907427 +astro-ph/9907428 +astro-ph/9907429 +astro-ph/9907433 +astro-ph/9907435 +astro-ph/9907437 +astro-ph/9907438 +astro-ph/9907439 +astro-ph/9907444 +astro-ph/9907446 +astro-ph/9907447 +astro-ph/9908002 +astro-ph/9908004 +astro-ph/9908005 +astro-ph/9908007 +astro-ph/9908009 +astro-ph/9908013 +astro-ph/9908014 +astro-ph/9908017 +astro-ph/9908018 +astro-ph/9908019 +astro-ph/9908020 +astro-ph/9908025 +astro-ph/9908026 +astro-ph/9908028 +astro-ph/9908030 +astro-ph/9908032 +astro-ph/9908033 +astro-ph/9908035 +astro-ph/9908038 +astro-ph/9908039 +astro-ph/9908040 +astro-ph/9908042 +astro-ph/9908045 +astro-ph/9908046 +astro-ph/9908048 +astro-ph/9908049 +astro-ph/9908051 +astro-ph/9908052 +astro-ph/9908054 +astro-ph/9908055 +astro-ph/9908056 +astro-ph/9908058 +astro-ph/9908062 +astro-ph/9908064 +astro-ph/9908066 +astro-ph/9908071 +astro-ph/9908073 +astro-ph/9908075 +astro-ph/9908076 +astro-ph/9908077 +astro-ph/9908079 +astro-ph/9908081 +astro-ph/9908083 +astro-ph/9908084 +astro-ph/9908086 +astro-ph/9908087 +astro-ph/9908090 +astro-ph/9908091 +astro-ph/9908097 +astro-ph/9908099 +astro-ph/9908100 +astro-ph/9908104 +astro-ph/9908105 +astro-ph/9908107 +astro-ph/9908112 +astro-ph/9908115 +astro-ph/9908118 +astro-ph/9908121 +astro-ph/9908122 +astro-ph/9908123 +astro-ph/9908124 +astro-ph/9908125 +astro-ph/9908127 +astro-ph/9908128 +astro-ph/9908129 +astro-ph/9908136 +astro-ph/9908137 +astro-ph/9908138 +astro-ph/9908139 +astro-ph/9908143 +astro-ph/9908150 +astro-ph/9908151 +astro-ph/9908152 +astro-ph/9908154 +astro-ph/9908157 +astro-ph/9908161 +astro-ph/9908166 +astro-ph/9908167 +astro-ph/9908170 +astro-ph/9908171 +astro-ph/9908177 +astro-ph/9908178 +astro-ph/9908179 +astro-ph/9908180 +astro-ph/9908183 +astro-ph/9908185 +astro-ph/9908186 +astro-ph/9908187 +astro-ph/9908188 +astro-ph/9908190 +astro-ph/9908195 +astro-ph/9908199 +astro-ph/9908201 +astro-ph/9908203 +astro-ph/9908204 +astro-ph/9908205 +astro-ph/9908206 +astro-ph/9908207 +astro-ph/9908210 +astro-ph/9908211 +astro-ph/9908214 +astro-ph/9908215 +astro-ph/9908219 +astro-ph/9908220 +astro-ph/9908221 +astro-ph/9908222 +astro-ph/9908223 +astro-ph/9908225 +astro-ph/9908226 +astro-ph/9908227 +astro-ph/9908228 +astro-ph/9908229 +astro-ph/9908230 +astro-ph/9908231 +astro-ph/9908233 +astro-ph/9908238 +astro-ph/9908240 +astro-ph/9908243 +astro-ph/9908244 +astro-ph/9908251 +astro-ph/9908252 +astro-ph/9908254 +astro-ph/9908255 +astro-ph/9908256 +astro-ph/9908257 +astro-ph/9908258 +astro-ph/9908259 +astro-ph/9908261 +astro-ph/9908269 +astro-ph/9908270 +astro-ph/9908271 +astro-ph/9908273 +astro-ph/9908274 +astro-ph/9908279 +astro-ph/9908281 +astro-ph/9908283 +astro-ph/9908285 +astro-ph/9908286 +astro-ph/9908287 +astro-ph/9908288 +astro-ph/9908289 +astro-ph/9908290 +astro-ph/9908292 +astro-ph/9908293 +astro-ph/9908294 +astro-ph/9908298 +astro-ph/9908300 +astro-ph/9908303 +astro-ph/9908304 +astro-ph/9908307 +astro-ph/9908308 +astro-ph/9908309 +astro-ph/9908311 +astro-ph/9908313 +astro-ph/9908314 +astro-ph/9908315 +astro-ph/9908316 +astro-ph/9908318 +astro-ph/9908319 +astro-ph/9908320 +astro-ph/9908321 +astro-ph/9908322 +astro-ph/9908327 +astro-ph/9908328 +astro-ph/9908330 +astro-ph/9908332 +astro-ph/9908336 +astro-ph/9908337 +astro-ph/9908338 +astro-ph/9908341 +astro-ph/9908342 +astro-ph/9908343 +astro-ph/9908344 +astro-ph/9908346 +astro-ph/9908351 +astro-ph/9908360 +astro-ph/9908361 +astro-ph/9908364 +astro-ph/9909001 +astro-ph/9909005 +astro-ph/9909006 +astro-ph/9909007 +astro-ph/9909011 +astro-ph/9909012 +astro-ph/9909014 +astro-ph/9909015 +astro-ph/9909016 +astro-ph/9909020 +astro-ph/9909021 +astro-ph/9909023 +astro-ph/9909026 +astro-ph/9909027 +astro-ph/9909028 +astro-ph/9909030 +astro-ph/9909031 +astro-ph/9909037 +astro-ph/9909040 +astro-ph/9909046 +astro-ph/9909047 +astro-ph/9909049 +astro-ph/9909052 +astro-ph/9909053 +astro-ph/9909054 +astro-ph/9909058 +astro-ph/9909059 +astro-ph/9909060 +astro-ph/9909063 +astro-ph/9909066 +astro-ph/9909072 +astro-ph/9909075 +astro-ph/9909077 +astro-ph/9909078 +astro-ph/9909081 +astro-ph/9909085 +astro-ph/9909086 +astro-ph/9909087 +astro-ph/9909090 +astro-ph/9909093 +astro-ph/9909097 +astro-ph/9909098 +astro-ph/9909102 +astro-ph/9909109 +astro-ph/9909111 +astro-ph/9909115 +astro-ph/9909121 +astro-ph/9909124 +astro-ph/9909126 +astro-ph/9909128 +astro-ph/9909129 +astro-ph/9909131 +astro-ph/9909132 +astro-ph/9909135 +astro-ph/9909136 +astro-ph/9909141 +astro-ph/9909142 +astro-ph/9909148 +astro-ph/9909153 +astro-ph/9909159 +astro-ph/9909162 +astro-ph/9909163 +astro-ph/9909164 +astro-ph/9909166 +astro-ph/9909170 +astro-ph/9909172 +astro-ph/9909173 +astro-ph/9909175 +astro-ph/9909179 +astro-ph/9909181 +astro-ph/9909187 +astro-ph/9909188 +astro-ph/9909193 +astro-ph/9909194 +astro-ph/9909196 +astro-ph/9909199 +astro-ph/9909201 +astro-ph/9909204 +astro-ph/9909205 +astro-ph/9909212 +astro-ph/9909215 +astro-ph/9909216 +astro-ph/9909217 +astro-ph/9909218 +astro-ph/9909226 +astro-ph/9909228 +astro-ph/9909230 +astro-ph/9909234 +astro-ph/9909235 +astro-ph/9909236 +astro-ph/9909237 +astro-ph/9909242 +astro-ph/9909243 +astro-ph/9909250 +astro-ph/9909251 +astro-ph/9909252 +astro-ph/9909254 +astro-ph/9909256 +astro-ph/9909259 +astro-ph/9909260 +astro-ph/9909263 +astro-ph/9909266 +astro-ph/9909269 +astro-ph/9909273 +astro-ph/9909274 +astro-ph/9909276 +astro-ph/9909277 +astro-ph/9909278 +astro-ph/9909279 +astro-ph/9909280 +astro-ph/9909281 +astro-ph/9909282 +astro-ph/9909283 +astro-ph/9909284 +astro-ph/9909285 +astro-ph/9909286 +astro-ph/9909287 +astro-ph/9909290 +astro-ph/9909294 +astro-ph/9909298 +astro-ph/9909300 +astro-ph/9909308 +astro-ph/9909312 +astro-ph/9909316 +astro-ph/9909318 +astro-ph/9909319 +astro-ph/9909324 +astro-ph/9909325 +astro-ph/9909326 +astro-ph/9909327 +astro-ph/9909328 +astro-ph/9909331 +astro-ph/9909334 +astro-ph/9909339 +astro-ph/9909344 +astro-ph/9909351 +astro-ph/9909354 +astro-ph/9909355 +astro-ph/9909356 +astro-ph/9909359 +astro-ph/9909360 +astro-ph/9909361 +astro-ph/9909363 +astro-ph/9909365 +astro-ph/9909369 +astro-ph/9909371 +astro-ph/9909379 +astro-ph/9909380 +astro-ph/9909382 +astro-ph/9909383 +astro-ph/9909391 +astro-ph/9909395 +astro-ph/9909397 +astro-ph/9909398 +astro-ph/9909400 +astro-ph/9909401 +astro-ph/9909407 +astro-ph/9909408 +astro-ph/9909411 +astro-ph/9909412 +astro-ph/9909417 +astro-ph/9909419 +astro-ph/9909420 +astro-ph/9909427 +astro-ph/9909429 +astro-ph/9909431 +astro-ph/9909445 +astro-ph/9909446 +astro-ph/9909449 +astro-ph/9909453 +astro-ph/9909454 +astro-ph/9909455 +astro-ph/9909456 +astro-ph/9909457 +astro-ph/9909462 +astro-ph/9909467 +astro-ph/9909469 +astro-ph/9909471 +astro-ph/9909472 +astro-ph/9909474 +astro-ph/9909475 +astro-ph/9909476 +astro-ph/9909478 +astro-ph/9909479 +astro-ph/9909480 +astro-ph/9909488 +astro-ph/9909492 +astro-ph/9909493 +astro-ph/9909494 +astro-ph/9909497 +astro-ph/9909502 +astro-ph/9909508 +astro-ph/9909509 +astro-ph/9909511 +astro-ph/9909514 +astro-ph/9909515 +astro-ph/9909518 +astro-ph/9910002 +astro-ph/9910008 +astro-ph/9910012 +astro-ph/9910013 +astro-ph/9910017 +astro-ph/9910018 +astro-ph/9910019 +astro-ph/9910020 +astro-ph/9910021 +astro-ph/9910023 +astro-ph/9910028 +astro-ph/9910030 +astro-ph/9910033 +astro-ph/9910035 +astro-ph/9910037 +astro-ph/9910038 +astro-ph/9910043 +astro-ph/9910052 +astro-ph/9910053 +astro-ph/9910056 +astro-ph/9910061 +astro-ph/9910062 +astro-ph/9910064 +astro-ph/9910066 +astro-ph/9910069 +astro-ph/9910072 +astro-ph/9910073 +astro-ph/9910074 +astro-ph/9910079 +astro-ph/9910082 +astro-ph/9910083 +astro-ph/9910085 +astro-ph/9910086 +astro-ph/9910088 +astro-ph/9910092 +astro-ph/9910093 +astro-ph/9910094 +astro-ph/9910095 +astro-ph/9910096 +astro-ph/9910097 +astro-ph/9910099 +astro-ph/9910101 +astro-ph/9910105 +astro-ph/9910111 +astro-ph/9910113 +astro-ph/9910114 +astro-ph/9910118 +astro-ph/9910119 +astro-ph/9910120 +astro-ph/9910121 +astro-ph/9910124 +astro-ph/9910129 +astro-ph/9910131 +astro-ph/9910134 +astro-ph/9910137 +astro-ph/9910139 +astro-ph/9910140 +astro-ph/9910141 +astro-ph/9910142 +astro-ph/9910145 +astro-ph/9910146 +astro-ph/9910147 +astro-ph/9910149 +astro-ph/9910150 +astro-ph/9910152 +astro-ph/9910153 +astro-ph/9910158 +astro-ph/9910159 +astro-ph/9910160 +astro-ph/9910167 +astro-ph/9910168 +astro-ph/9910169 +astro-ph/9910172 +astro-ph/9910174 +astro-ph/9910175 +astro-ph/9910177 +astro-ph/9910178 +astro-ph/9910180 +astro-ph/9910183 +astro-ph/9910184 +astro-ph/9910186 +astro-ph/9910191 +astro-ph/9910192 +astro-ph/9910193 +astro-ph/9910196 +astro-ph/9910197 +astro-ph/9910198 +astro-ph/9910199 +astro-ph/9910202 +astro-ph/9910203 +astro-ph/9910209 +astro-ph/9910210 +astro-ph/9910213 +astro-ph/9910214 +astro-ph/9910215 +astro-ph/9910216 +astro-ph/9910218 +astro-ph/9910224 +astro-ph/9910225 +astro-ph/9910228 +astro-ph/9910231 +astro-ph/9910235 +astro-ph/9910239 +astro-ph/9910241 +astro-ph/9910243 +astro-ph/9910248 +astro-ph/9910250 +astro-ph/9910252 +astro-ph/9910253 +astro-ph/9910254 +astro-ph/9910258 +astro-ph/9910263 +astro-ph/9910264 +astro-ph/9910272 +astro-ph/9910273 +astro-ph/9910274 +astro-ph/9910276 +astro-ph/9910277 +astro-ph/9910279 +astro-ph/9910280 +astro-ph/9910285 +astro-ph/9910286 +astro-ph/9910295 +astro-ph/9910298 +astro-ph/9910299 +astro-ph/9910301 +astro-ph/9910307 +astro-ph/9910309 +astro-ph/9910310 +astro-ph/9910313 +astro-ph/9910315 +astro-ph/9910316 +astro-ph/9910318 +astro-ph/9910319 +astro-ph/9910320 +astro-ph/9910321 +astro-ph/9910322 +astro-ph/9910323 +astro-ph/9910324 +astro-ph/9910326 +astro-ph/9910329 +astro-ph/9910333 +astro-ph/9910337 +astro-ph/9910338 +astro-ph/9910340 +astro-ph/9910344 +astro-ph/9910347 +astro-ph/9910349 +astro-ph/9910351 +astro-ph/9910352 +astro-ph/9910353 +astro-ph/9910354 +astro-ph/9910355 +astro-ph/9910356 +astro-ph/9910357 +astro-ph/9910358 +astro-ph/9910361 +astro-ph/9910364 +astro-ph/9910365 +astro-ph/9910366 +astro-ph/9910367 +astro-ph/9910369 +astro-ph/9910373 +astro-ph/9910374 +astro-ph/9910375 +astro-ph/9910377 +astro-ph/9910378 +astro-ph/9910382 +astro-ph/9910385 +astro-ph/9910386 +astro-ph/9910389 +astro-ph/9910390 +astro-ph/9910392 +astro-ph/9910393 +astro-ph/9910394 +astro-ph/9910397 +astro-ph/9910398 +astro-ph/9910400 +astro-ph/9910403 +astro-ph/9910407 +astro-ph/9910413 +astro-ph/9910417 +astro-ph/9910418 +astro-ph/9910420 +astro-ph/9910421 +astro-ph/9910422 +astro-ph/9910424 +astro-ph/9910425 +astro-ph/9910426 +astro-ph/9910427 +astro-ph/9910429 +astro-ph/9910431 +astro-ph/9910432 +astro-ph/9910435 +astro-ph/9910436 +astro-ph/9910438 +astro-ph/9910439 +astro-ph/9910444 +astro-ph/9910455 +astro-ph/9910459 +astro-ph/9910460 +astro-ph/9910461 +astro-ph/9910467 +astro-ph/9910468 +astro-ph/9910471 +astro-ph/9910472 +astro-ph/9910476 +astro-ph/9910477 +astro-ph/9910478 +astro-ph/9910479 +astro-ph/9910481 +astro-ph/9910483 +astro-ph/9910484 +astro-ph/9910487 +astro-ph/9910488 +astro-ph/9910491 +astro-ph/9910492 +astro-ph/9910493 +astro-ph/9910494 +astro-ph/9910495 +astro-ph/9910498 +astro-ph/9910499 +astro-ph/9910502 +astro-ph/9910503 +astro-ph/9910504 +astro-ph/9910508 +astro-ph/9910509 +astro-ph/9910511 +astro-ph/9910513 +astro-ph/9910515 +astro-ph/9910518 +astro-ph/9910519 +astro-ph/9910520 +astro-ph/9910523 +astro-ph/9910524 +astro-ph/9910525 +astro-ph/9910526 +astro-ph/9910527 +astro-ph/9910528 +astro-ph/9910531 +astro-ph/9910532 +astro-ph/9910533 +astro-ph/9910536 +astro-ph/9910537 +astro-ph/9910539 +astro-ph/9910541 +astro-ph/9910547 +astro-ph/9910548 +astro-ph/9910549 +astro-ph/9910556 +astro-ph/9910557 +astro-ph/9910558 +astro-ph/9910560 +astro-ph/9910562 +astro-ph/9910564 +astro-ph/9911001 +astro-ph/9911003 +astro-ph/9911004 +astro-ph/9911007 +astro-ph/9911008 +astro-ph/9911015 +astro-ph/9911016 +astro-ph/9911018 +astro-ph/9911019 +astro-ph/9911020 +astro-ph/9911023 +astro-ph/9911024 +astro-ph/9911025 +astro-ph/9911026 +astro-ph/9911028 +astro-ph/9911033 +astro-ph/9911037 +astro-ph/9911042 +astro-ph/9911043 +astro-ph/9911044 +astro-ph/9911045 +astro-ph/9911046 +astro-ph/9911047 +astro-ph/9911049 +astro-ph/9911051 +astro-ph/9911053 +astro-ph/9911056 +astro-ph/9911060 +astro-ph/9911061 +astro-ph/9911063 +astro-ph/9911065 +astro-ph/9911066 +astro-ph/9911067 +astro-ph/9911069 +astro-ph/9911071 +astro-ph/9911076 +astro-ph/9911080 +astro-ph/9911087 +astro-ph/9911095 +astro-ph/9911096 +astro-ph/9911098 +astro-ph/9911099 +astro-ph/9911100 +astro-ph/9911101 +astro-ph/9911102 +astro-ph/9911103 +astro-ph/9911104 +astro-ph/9911105 +astro-ph/9911108 +astro-ph/9911109 +astro-ph/9911111 +astro-ph/9911112 +astro-ph/9911116 +astro-ph/9911119 +astro-ph/9911120 +astro-ph/9911121 +astro-ph/9911126 +astro-ph/9911128 +astro-ph/9911129 +astro-ph/9911131 +astro-ph/9911132 +astro-ph/9911134 +astro-ph/9911140 +astro-ph/9911141 +astro-ph/9911142 +astro-ph/9911147 +astro-ph/9911148 +astro-ph/9911150 +astro-ph/9911151 +astro-ph/9911153 +astro-ph/9911155 +astro-ph/9911156 +astro-ph/9911157 +astro-ph/9911160 +astro-ph/9911164 +astro-ph/9911166 +astro-ph/9911167 +astro-ph/9911171 +astro-ph/9911172 +astro-ph/9911173 +astro-ph/9911179 +astro-ph/9911182 +astro-ph/9911183 +astro-ph/9911184 +astro-ph/9911187 +astro-ph/9911188 +astro-ph/9911189 +astro-ph/9911191 +astro-ph/9911192 +astro-ph/9911196 +astro-ph/9911197 +astro-ph/9911205 +astro-ph/9911206 +astro-ph/9911213 +astro-ph/9911214 +astro-ph/9911215 +astro-ph/9911216 +astro-ph/9911217 +astro-ph/9911218 +astro-ph/9911219 +astro-ph/9911220 +astro-ph/9911223 +astro-ph/9911225 +astro-ph/9911226 +astro-ph/9911228 +astro-ph/9911231 +astro-ph/9911235 +astro-ph/9911241 +astro-ph/9911242 +astro-ph/9911243 +astro-ph/9911245 +astro-ph/9911246 +astro-ph/9911249 +astro-ph/9911250 +astro-ph/9911253 +astro-ph/9911254 +astro-ph/9911255 +astro-ph/9911256 +astro-ph/9911257 +astro-ph/9911279 +astro-ph/9911280 +astro-ph/9911281 +astro-ph/9911282 +astro-ph/9911283 +astro-ph/9911285 +astro-ph/9911288 +astro-ph/9911289 +astro-ph/9911291 +astro-ph/9911292 +astro-ph/9911298 +astro-ph/9911300 +astro-ph/9911301 +astro-ph/9911302 +astro-ph/9911304 +astro-ph/9911308 +astro-ph/9911312 +astro-ph/9911313 +astro-ph/9911314 +astro-ph/9911316 +astro-ph/9911317 +astro-ph/9911318 +astro-ph/9911322 +astro-ph/9911323 +astro-ph/9911328 +astro-ph/9911334 +astro-ph/9911335 +astro-ph/9911340 +astro-ph/9911342 +astro-ph/9911345 +astro-ph/9911346 +astro-ph/9911347 +astro-ph/9911350 +astro-ph/9911351 +astro-ph/9911359 +astro-ph/9911360 +astro-ph/9911366 +astro-ph/9911369 +astro-ph/9911371 +astro-ph/9911373 +astro-ph/9911375 +astro-ph/9911377 +astro-ph/9911378 +astro-ph/9911379 +astro-ph/9911380 +astro-ph/9911381 +astro-ph/9911383 +astro-ph/9911386 +astro-ph/9911390 +astro-ph/9911392 +astro-ph/9911395 +astro-ph/9911400 +astro-ph/9911401 +astro-ph/9911402 +astro-ph/9911404 +astro-ph/9911406 +astro-ph/9911409 +astro-ph/9911410 +astro-ph/9911414 +astro-ph/9911415 +astro-ph/9911417 +astro-ph/9911420 +astro-ph/9911421 +astro-ph/9911422 +astro-ph/9911425 +astro-ph/9911426 +astro-ph/9911430 +astro-ph/9911431 +astro-ph/9911436 +astro-ph/9911440 +astro-ph/9911443 +astro-ph/9911444 +astro-ph/9911445 +astro-ph/9911446 +astro-ph/9911447 +astro-ph/9911448 +astro-ph/9911455 +astro-ph/9911457 +astro-ph/9911458 +astro-ph/9911460 +astro-ph/9911463 +astro-ph/9911465 +astro-ph/9911466 +astro-ph/9911467 +astro-ph/9911468 +astro-ph/9911469 +astro-ph/9911475 +astro-ph/9911476 +astro-ph/9911481 +astro-ph/9911483 +astro-ph/9911487 +astro-ph/9911488 +astro-ph/9911490 +astro-ph/9911491 +astro-ph/9911492 +astro-ph/9911500 +astro-ph/9911504 +astro-ph/9911506 +astro-ph/9911507 +astro-ph/9911508 +astro-ph/9911510 +astro-ph/9911511 +astro-ph/9911512 +astro-ph/9911518 +astro-ph/9911520 +astro-ph/9911521 +astro-ph/9911524 +astro-ph/9911526 +astro-ph/9911527 +astro-ph/9911528 +astro-ph/9911529 +astro-ph/9911530 +astro-ph/9911532 +astro-ph/9911533 +astro-ph/9911534 +astro-ph/9911535 +astro-ph/9912001 +astro-ph/9912002 +astro-ph/9912003 +astro-ph/9912004 +astro-ph/9912006 +astro-ph/9912007 +astro-ph/9912010 +astro-ph/9912011 +astro-ph/9912015 +astro-ph/9912017 +astro-ph/9912024 +astro-ph/9912026 +astro-ph/9912027 +astro-ph/9912028 +astro-ph/9912029 +astro-ph/9912030 +astro-ph/9912031 +astro-ph/9912032 +astro-ph/9912034 +astro-ph/9912035 +astro-ph/9912041 +astro-ph/9912044 +astro-ph/9912046 +astro-ph/9912047 +astro-ph/9912052 +astro-ph/9912056 +astro-ph/9912058 +astro-ph/9912059 +astro-ph/9912061 +astro-ph/9912063 +astro-ph/9912066 +astro-ph/9912068 +astro-ph/9912070 +astro-ph/9912071 +astro-ph/9912074 +astro-ph/9912076 +astro-ph/9912079 +astro-ph/9912080 +astro-ph/9912082 +astro-ph/9912083 +astro-ph/9912091 +astro-ph/9912095 +astro-ph/9912098 +astro-ph/9912099 +astro-ph/9912100 +astro-ph/9912103 +astro-ph/9912104 +astro-ph/9912105 +astro-ph/9912108 +astro-ph/9912111 +astro-ph/9912113 +astro-ph/9912117 +astro-ph/9912120 +astro-ph/9912121 +astro-ph/9912123 +astro-ph/9912124 +astro-ph/9912125 +astro-ph/9912128 +astro-ph/9912129 +astro-ph/9912135 +astro-ph/9912137 +astro-ph/9912141 +astro-ph/9912142 +astro-ph/9912143 +astro-ph/9912144 +astro-ph/9912146 +astro-ph/9912147 +astro-ph/9912148 +astro-ph/9912149 +astro-ph/9912151 +astro-ph/9912152 +astro-ph/9912157 +astro-ph/9912163 +astro-ph/9912164 +astro-ph/9912166 +astro-ph/9912167 +astro-ph/9912170 +astro-ph/9912171 +astro-ph/9912172 +astro-ph/9912174 +astro-ph/9912175 +astro-ph/9912177 +astro-ph/9912178 +astro-ph/9912181 +astro-ph/9912182 +astro-ph/9912188 +astro-ph/9912189 +astro-ph/9912195 +astro-ph/9912197 +astro-ph/9912198 +astro-ph/9912203 +astro-ph/9912204 +astro-ph/9912205 +astro-ph/9912206 +astro-ph/9912212 +astro-ph/9912214 +astro-ph/9912217 +astro-ph/9912218 +astro-ph/9912219 +astro-ph/9912220 +astro-ph/9912223 +astro-ph/9912225 +astro-ph/9912226 +astro-ph/9912229 +astro-ph/9912230 +astro-ph/9912233 +astro-ph/9912234 +astro-ph/9912236 +astro-ph/9912237 +astro-ph/9912238 +astro-ph/9912239 +astro-ph/9912240 +astro-ph/9912241 +astro-ph/9912242 +astro-ph/9912243 +astro-ph/9912244 +astro-ph/9912246 +astro-ph/9912247 +astro-ph/9912248 +astro-ph/9912252 +astro-ph/9912254 +astro-ph/9912255 +astro-ph/9912256 +astro-ph/9912257 +astro-ph/9912259 +astro-ph/9912261 +astro-ph/9912263 +astro-ph/9912264 +astro-ph/9912265 +astro-ph/9912266 +astro-ph/9912272 +astro-ph/9912273 +astro-ph/9912274 +astro-ph/9912275 +astro-ph/9912276 +astro-ph/9912285 +astro-ph/9912286 +astro-ph/9912289 +astro-ph/9912292 +astro-ph/9912293 +astro-ph/9912295 +astro-ph/9912296 +astro-ph/9912297 +astro-ph/9912301 +astro-ph/9912303 +astro-ph/9912304 +astro-ph/9912306 +astro-ph/9912308 +astro-ph/9912310 +astro-ph/9912311 +astro-ph/9912313 +astro-ph/9912315 +astro-ph/9912316 +astro-ph/9912317 +astro-ph/9912319 +astro-ph/9912320 +astro-ph/9912322 +astro-ph/9912326 +astro-ph/9912328 +astro-ph/9912330 +astro-ph/9912333 +astro-ph/9912335 +astro-ph/9912336 +astro-ph/9912338 +astro-ph/9912339 +astro-ph/9912340 +astro-ph/9912342 +astro-ph/9912343 +astro-ph/9912345 +astro-ph/9912348 +astro-ph/9912349 +astro-ph/9912351 +astro-ph/9912354 +astro-ph/9912355 +astro-ph/9912358 +astro-ph/9912360 +astro-ph/9912361 +astro-ph/9912364 +astro-ph/9912366 +astro-ph/9912369 +astro-ph/9912374 +astro-ph/9912375 +astro-ph/9912376 +astro-ph/9912379 +astro-ph/9912383 +astro-ph/9912384 +astro-ph/9912385 +astro-ph/9912386 +astro-ph/9912387 +astro-ph/9912388 +astro-ph/9912389 +astro-ph/9912393 +astro-ph/9912395 +astro-ph/9912396 +astro-ph/9912399 +astro-ph/9912400 +astro-ph/9912401 +astro-ph/9912402 +astro-ph/9912403 +astro-ph/9912405 +astro-ph/9912406 +astro-ph/9912407 +astro-ph/9912409 +astro-ph/9912411 +astro-ph/9912412 +astro-ph/9912414 +astro-ph/9912415 +astro-ph/9912418 +astro-ph/9912419 +astro-ph/9912420 +astro-ph/9912424 +astro-ph/9912428 +astro-ph/9912429 +astro-ph/9912432 +astro-ph/9912433 +astro-ph/9912435 +astro-ph/9912438 +astro-ph/9912439 +astro-ph/9912440 +astro-ph/9912443 +astro-ph/9912444 +astro-ph/9912447 +astro-ph/9912448 +astro-ph/9912449 +astro-ph/9912451 +astro-ph/9912454 +astro-ph/9912457 +astro-ph/9912459 +astro-ph/9912461 +astro-ph/9912464 +astro-ph/9912465 +astro-ph/9912466 +astro-ph/9912467 +astro-ph/9912471 +astro-ph/9912472 +astro-ph/9912473 +astro-ph/9912476 +astro-ph/9912477 +astro-ph/9912478 +astro-ph/9912479 +astro-ph/9912480 +astro-ph/9912483 +astro-ph/9912484 +astro-ph/9912485 +astro-ph/9912487 +astro-ph/9912488 +astro-ph/9912490 +astro-ph/9912491 +astro-ph/9912492 +astro-ph/9912493 +astro-ph/9912496 +astro-ph/9912497 +astro-ph/9912503 +astro-ph/9912505 +astro-ph/9912506 +astro-ph/9912509 +astro-ph/9912519 +astro-ph/9912520 +astro-ph/9912521 +astro-ph/9912523 +astro-ph/9912524 +astro-ph/9912527 +astro-ph/9912528 +astro-ph/9912532 +astro-ph/9912535 +astro-ph/9912538 +astro-ph/9912541 +astro-ph/9912546 +astro-ph/9912551 +astro-ph/9912554 +astro-ph/9912555 +astro-ph/9912557 +astro-ph/9912561 +astro-ph/9912563 +astro-ph/9912566 +astro-ph/9912567 +chao-dyn/9801005 Chaotic Dynamics +chao-dyn/9801007 Chaotic Dynamics +chao-dyn/9801008 Chaotic Dynamics +chao-dyn/9801009 Chaotic Dynamics +chao-dyn/9801010 Chaotic Dynamics +chao-dyn/9801012 Chaotic Dynamics +chao-dyn/9801013 Chaotic Dynamics +chao-dyn/9801014 Chaotic Dynamics +chao-dyn/9801016 Chaotic Dynamics +chao-dyn/9801017 Chaotic Dynamics +chao-dyn/9801018 Chaotic Dynamics +chao-dyn/9801023 Chaotic Dynamics +chao-dyn/9801024 Chaotic Dynamics +chao-dyn/9801025 Chaotic Dynamics +chao-dyn/9801027 Chaotic Dynamics +chao-dyn/9801029 Chaotic Dynamics +chao-dyn/9801030 Chaotic Dynamics +chao-dyn/9801031 Chaotic Dynamics +chao-dyn/9801032 Chaotic Dynamics +chao-dyn/9802001 Chaotic Dynamics +chao-dyn/9802002 Chaotic Dynamics +chao-dyn/9802003 Chaotic Dynamics +chao-dyn/9802004 Chaotic Dynamics +chao-dyn/9802005 Chaotic Dynamics +chao-dyn/9802010 Chaotic Dynamics +chao-dyn/9802013 Chaotic Dynamics +chao-dyn/9802014 Chaotic Dynamics +chao-dyn/9802015 Chaotic Dynamics +chao-dyn/9802016 Chaotic Dynamics +chao-dyn/9802018 Chaotic Dynamics +chao-dyn/9802019 Chaotic Dynamics +chao-dyn/9802020 Chaotic Dynamics +chao-dyn/9802021 Chaotic Dynamics +chao-dyn/9802022 Chaotic Dynamics +chao-dyn/9802023 Chaotic Dynamics +chao-dyn/9802024 Chaotic Dynamics +chao-dyn/9802026 Chaotic Dynamics +chao-dyn/9803001 Chaotic Dynamics +chao-dyn/9803003 Chaotic Dynamics +chao-dyn/9803004 Chaotic Dynamics +chao-dyn/9803005 Chaotic Dynamics +chao-dyn/9803006 Chaotic Dynamics +chao-dyn/9803010 Chaotic Dynamics +chao-dyn/9803014 Chaotic Dynamics +chao-dyn/9803015 Chaotic Dynamics +chao-dyn/9803016 Chaotic Dynamics +chao-dyn/9803017 Chaotic Dynamics +chao-dyn/9803018 Chaotic Dynamics +chao-dyn/9803020 Chaotic Dynamics +chao-dyn/9803021 Chaotic Dynamics +chao-dyn/9803023 Chaotic Dynamics +chao-dyn/9803024 Chaotic Dynamics +chao-dyn/9803025 Chaotic Dynamics +chao-dyn/9803026 Chaotic Dynamics +chao-dyn/9803028 Chaotic Dynamics +chao-dyn/9803029 Chaotic Dynamics +chao-dyn/9803030 Chaotic Dynamics +chao-dyn/9803031 Chaotic Dynamics +chao-dyn/9803033 Chaotic Dynamics +chao-dyn/9803037 Chaotic Dynamics +chao-dyn/9803038 Chaotic Dynamics +chao-dyn/9804003 Chaotic Dynamics +chao-dyn/9804005 Chaotic Dynamics +chao-dyn/9804006 Chaotic Dynamics +chao-dyn/9804008 Chaotic Dynamics +chao-dyn/9804010 Chaotic Dynamics +chao-dyn/9804011 Chaotic Dynamics +chao-dyn/9804012 Chaotic Dynamics +chao-dyn/9804014 Chaotic Dynamics +chao-dyn/9804016 Chaotic Dynamics +chao-dyn/9804017 Chaotic Dynamics +chao-dyn/9804019 Chaotic Dynamics +chao-dyn/9804020 Chaotic Dynamics +chao-dyn/9804021 Chaotic Dynamics +chao-dyn/9804022 Chaotic Dynamics +chao-dyn/9804024 Chaotic Dynamics +chao-dyn/9804025 Chaotic Dynamics +chao-dyn/9804026 Chaotic Dynamics +chao-dyn/9804028 Chaotic Dynamics +chao-dyn/9804030 Chaotic Dynamics +chao-dyn/9804031 Chaotic Dynamics +chao-dyn/9804035 Chaotic Dynamics +chao-dyn/9804036 Chaotic Dynamics +chao-dyn/9804037 Chaotic Dynamics +chao-dyn/9804038 Chaotic Dynamics +chao-dyn/9804039 Chaotic Dynamics +chao-dyn/9804040 Chaotic Dynamics +chao-dyn/9804041 Chaotic Dynamics +chao-dyn/9804042 Chaotic Dynamics +chao-dyn/9804043 Chaotic Dynamics +chao-dyn/9804045 Chaotic Dynamics +chao-dyn/9805001 Chaotic Dynamics +chao-dyn/9805002 Chaotic Dynamics +chao-dyn/9805003 Chaotic Dynamics +chao-dyn/9805004 Chaotic Dynamics +chao-dyn/9805005 Chaotic Dynamics +chao-dyn/9805006 Chaotic Dynamics +chao-dyn/9805007 Chaotic Dynamics +chao-dyn/9805008 Chaotic Dynamics +chao-dyn/9805009 Chaotic Dynamics +chao-dyn/9805014 Chaotic Dynamics +chao-dyn/9805015 Chaotic Dynamics +chao-dyn/9805017 Chaotic Dynamics +chao-dyn/9805018 Chaotic Dynamics +chao-dyn/9805020 Chaotic Dynamics +chao-dyn/9805026 Chaotic Dynamics +chao-dyn/9805028 Chaotic Dynamics +chao-dyn/9805029 Chaotic Dynamics +chao-dyn/9806003 Chaotic Dynamics +chao-dyn/9806004 Chaotic Dynamics +chao-dyn/9806005 Chaotic Dynamics +chao-dyn/9806006 Chaotic Dynamics +chao-dyn/9806007 Chaotic Dynamics +chao-dyn/9806008 Chaotic Dynamics +chao-dyn/9806011 Chaotic Dynamics +chao-dyn/9806012 Chaotic Dynamics +chao-dyn/9806013 Chaotic Dynamics +chao-dyn/9806015 Chaotic Dynamics +chao-dyn/9806018 Chaotic Dynamics +chao-dyn/9806019 Chaotic Dynamics +chao-dyn/9806020 Chaotic Dynamics +chao-dyn/9806021 Chaotic Dynamics +chao-dyn/9806023 Chaotic Dynamics +chao-dyn/9806027 Chaotic Dynamics +chao-dyn/9807003 Chaotic Dynamics +chao-dyn/9807004 Chaotic Dynamics +chao-dyn/9807007 Chaotic Dynamics +chao-dyn/9807009 Chaotic Dynamics +chao-dyn/9807010 Chaotic Dynamics +chao-dyn/9807011 Chaotic Dynamics +chao-dyn/9807012 Chaotic Dynamics +chao-dyn/9807016 Chaotic Dynamics +chao-dyn/9807019 Chaotic Dynamics +chao-dyn/9807020 Chaotic Dynamics +chao-dyn/9807024 Chaotic Dynamics +chao-dyn/9807026 Chaotic Dynamics +chao-dyn/9807027 Chaotic Dynamics +chao-dyn/9807028 Chaotic Dynamics +chao-dyn/9807029 Chaotic Dynamics +chao-dyn/9807030 Chaotic Dynamics +chao-dyn/9807031 Chaotic Dynamics +chao-dyn/9807032 Chaotic Dynamics +chao-dyn/9807034 Chaotic Dynamics +chao-dyn/9807035 Chaotic Dynamics +chao-dyn/9807036 Chaotic Dynamics +chao-dyn/9807037 Chaotic Dynamics +chao-dyn/9807038 Chaotic Dynamics +chao-dyn/9807039 Chaotic Dynamics +chao-dyn/9807040 Chaotic Dynamics +chao-dyn/9808002 Chaotic Dynamics +chao-dyn/9808005 Chaotic Dynamics +chao-dyn/9808006 Chaotic Dynamics +chao-dyn/9808007 Chaotic Dynamics +chao-dyn/9808010 Chaotic Dynamics +chao-dyn/9808011 Chaotic Dynamics +chao-dyn/9808014 Chaotic Dynamics +chao-dyn/9808016 Chaotic Dynamics +chao-dyn/9808020 Chaotic Dynamics +chao-dyn/9808021 Chaotic Dynamics +chao-dyn/9809004 Chaotic Dynamics +chao-dyn/9809010 Chaotic Dynamics +chao-dyn/9809014 Chaotic Dynamics +chao-dyn/9809015 Chaotic Dynamics +chao-dyn/9809017 Chaotic Dynamics +chao-dyn/9810001 Chaotic Dynamics +chao-dyn/9810003 Chaotic Dynamics +chao-dyn/9810004 Chaotic Dynamics +chao-dyn/9810005 Chaotic Dynamics +chao-dyn/9810012 Chaotic Dynamics +chao-dyn/9810015 Chaotic Dynamics +chao-dyn/9810018 Chaotic Dynamics +chao-dyn/9810019 Chaotic Dynamics +chao-dyn/9810020 Chaotic Dynamics +chao-dyn/9810022 Chaotic Dynamics +chao-dyn/9810023 Chaotic Dynamics +chao-dyn/9810024 Chaotic Dynamics +chao-dyn/9810025 Chaotic Dynamics +chao-dyn/9810027 Chaotic Dynamics +chao-dyn/9810028 Chaotic Dynamics +chao-dyn/9810036 Chaotic Dynamics +chao-dyn/9811003 Chaotic Dynamics +chao-dyn/9811005 Chaotic Dynamics +chao-dyn/9811006 Chaotic Dynamics +chao-dyn/9811007 Chaotic Dynamics +chao-dyn/9811009 Chaotic Dynamics +chao-dyn/9811010 Chaotic Dynamics +chao-dyn/9811012 Chaotic Dynamics +chao-dyn/9811014 Chaotic Dynamics +chao-dyn/9811017 Chaotic Dynamics +chao-dyn/9811020 Chaotic Dynamics +chao-dyn/9811021 Chaotic Dynamics +chao-dyn/9811022 Chaotic Dynamics +chao-dyn/9811023 Chaotic Dynamics +chao-dyn/9811025 Chaotic Dynamics +chao-dyn/9812002 Chaotic Dynamics +chao-dyn/9812003 Chaotic Dynamics +chao-dyn/9812004 Chaotic Dynamics +chao-dyn/9812005 Chaotic Dynamics +chao-dyn/9812007 Chaotic Dynamics +chao-dyn/9812008 Chaotic Dynamics +chao-dyn/9812009 Chaotic Dynamics +chao-dyn/9812017 Chaotic Dynamics +chao-dyn/9812018 Chaotic Dynamics +chao-dyn/9812019 Chaotic Dynamics +chao-dyn/9812021 Chaotic Dynamics +chao-dyn/9812025 Chaotic Dynamics +chao-dyn/9812026 Chaotic Dynamics +chao-dyn/9812029 Chaotic Dynamics +chao-dyn/9901001 Chaotic Dynamics +chao-dyn/9901002 Chaotic Dynamics +chao-dyn/9901003 Chaotic Dynamics +chao-dyn/9901004 Chaotic Dynamics +chao-dyn/9901006 Chaotic Dynamics +chao-dyn/9901009 Chaotic Dynamics +chao-dyn/9901010 Chaotic Dynamics +chao-dyn/9901013 Chaotic Dynamics +chao-dyn/9901017 Chaotic Dynamics +chao-dyn/9901018 Chaotic Dynamics +chao-dyn/9901021 Chaotic Dynamics +chao-dyn/9901022 Chaotic Dynamics +chao-dyn/9901023 Chaotic Dynamics +chao-dyn/9901027 Chaotic Dynamics +chao-dyn/9901029 Chaotic Dynamics +chao-dyn/9901030 Chaotic Dynamics +chao-dyn/9902002 Chaotic Dynamics +chao-dyn/9902003 Chaotic Dynamics +chao-dyn/9902004 Chaotic Dynamics +chao-dyn/9902005 Chaotic Dynamics +chao-dyn/9902007 Chaotic Dynamics +chao-dyn/9902008 Chaotic Dynamics +chao-dyn/9902009 Chaotic Dynamics +chao-dyn/9902011 Chaotic Dynamics +chao-dyn/9902012 Chaotic Dynamics +chao-dyn/9902015 Chaotic Dynamics +chao-dyn/9902016 Chaotic Dynamics +chao-dyn/9902019 Chaotic Dynamics +chao-dyn/9903002 Chaotic Dynamics +chao-dyn/9903003 Chaotic Dynamics +chao-dyn/9903008 Chaotic Dynamics +chao-dyn/9903011 Chaotic Dynamics +chao-dyn/9903013 Chaotic Dynamics +chao-dyn/9903014 Chaotic Dynamics +chao-dyn/9903015 Chaotic Dynamics +chao-dyn/9903016 Chaotic Dynamics +chao-dyn/9903017 Chaotic Dynamics +chao-dyn/9903018 Chaotic Dynamics +chao-dyn/9903019 Chaotic Dynamics +chao-dyn/9903021 Chaotic Dynamics +chao-dyn/9903022 Chaotic Dynamics +chao-dyn/9903024 Chaotic Dynamics +chao-dyn/9903025 Chaotic Dynamics +chao-dyn/9903026 Chaotic Dynamics +chao-dyn/9903027 Chaotic Dynamics +chao-dyn/9903028 Chaotic Dynamics +chao-dyn/9903030 Chaotic Dynamics +chao-dyn/9903032 Chaotic Dynamics +chao-dyn/9903033 Chaotic Dynamics +chao-dyn/9903034 Chaotic Dynamics +chao-dyn/9904001 Chaotic Dynamics +chao-dyn/9904002 Chaotic Dynamics +chao-dyn/9904003 Chaotic Dynamics +chao-dyn/9904007 Chaotic Dynamics +chao-dyn/9904008 Chaotic Dynamics +chao-dyn/9904009 Chaotic Dynamics +chao-dyn/9904011 Chaotic Dynamics +chao-dyn/9904012 Chaotic Dynamics +chao-dyn/9904013 Chaotic Dynamics +chao-dyn/9904014 Chaotic Dynamics +chao-dyn/9904016 Chaotic Dynamics +chao-dyn/9904017 Chaotic Dynamics +chao-dyn/9904018 Chaotic Dynamics +chao-dyn/9904020 Chaotic Dynamics +chao-dyn/9904022 Chaotic Dynamics +chao-dyn/9904024 Chaotic Dynamics +chao-dyn/9904027 Chaotic Dynamics +chao-dyn/9904029 Chaotic Dynamics +chao-dyn/9904030 Chaotic Dynamics +chao-dyn/9904031 Chaotic Dynamics +chao-dyn/9904032 Chaotic Dynamics +chao-dyn/9904034 Chaotic Dynamics +chao-dyn/9904036 Chaotic Dynamics +chao-dyn/9904038 Chaotic Dynamics +chao-dyn/9904039 Chaotic Dynamics +chao-dyn/9904040 Chaotic Dynamics +chao-dyn/9904041 Chaotic Dynamics +chao-dyn/9904042 Chaotic Dynamics +chao-dyn/9904043 Chaotic Dynamics +chao-dyn/9904044 Chaotic Dynamics +chao-dyn/9904045 Chaotic Dynamics +chao-dyn/9904046 Chaotic Dynamics +chao-dyn/9904048 Chaotic Dynamics +chao-dyn/9904049 Chaotic Dynamics +chao-dyn/9905005 Chaotic Dynamics +chao-dyn/9905007 Chaotic Dynamics +chao-dyn/9905008 Chaotic Dynamics +chao-dyn/9905009 Chaotic Dynamics +chao-dyn/9905011 Chaotic Dynamics +chao-dyn/9905012 Chaotic Dynamics +chao-dyn/9905014 Chaotic Dynamics +chao-dyn/9905015 Chaotic Dynamics +chao-dyn/9905016 Chaotic Dynamics +chao-dyn/9905017 Chaotic Dynamics +chao-dyn/9905020 Chaotic Dynamics +chao-dyn/9905022 Chaotic Dynamics +chao-dyn/9905023 Chaotic Dynamics +chao-dyn/9905024 Chaotic Dynamics +chao-dyn/9905025 Chaotic Dynamics +chao-dyn/9905027 Chaotic Dynamics +chao-dyn/9905029 Chaotic Dynamics +chao-dyn/9905030 Chaotic Dynamics +chao-dyn/9905031 Chaotic Dynamics +chao-dyn/9905032 Chaotic Dynamics +chao-dyn/9905041 Chaotic Dynamics +chao-dyn/9906002 Chaotic Dynamics +chao-dyn/9906003 Chaotic Dynamics +chao-dyn/9906005 Chaotic Dynamics +chao-dyn/9906006 Chaotic Dynamics +chao-dyn/9906007 Chaotic Dynamics +chao-dyn/9906008 Chaotic Dynamics +chao-dyn/9906009 Chaotic Dynamics +chao-dyn/9906010 Chaotic Dynamics +chao-dyn/9906012 Chaotic Dynamics +chao-dyn/9906013 Chaotic Dynamics +chao-dyn/9906014 Chaotic Dynamics +chao-dyn/9906015 Chaotic Dynamics +chao-dyn/9906016 Chaotic Dynamics +chao-dyn/9906018 Chaotic Dynamics +chao-dyn/9906019 Chaotic Dynamics +chao-dyn/9906021 Chaotic Dynamics +chao-dyn/9906022 Chaotic Dynamics +chao-dyn/9906023 Chaotic Dynamics +chao-dyn/9906024 Chaotic Dynamics +chao-dyn/9906025 Chaotic Dynamics +chao-dyn/9906028 Chaotic Dynamics +chao-dyn/9906029 Chaotic Dynamics +chao-dyn/9906030 Chaotic Dynamics +chao-dyn/9906031 Chaotic Dynamics +chao-dyn/9906032 Chaotic Dynamics +chao-dyn/9906034 Chaotic Dynamics +chao-dyn/9906038 Chaotic Dynamics +chao-dyn/9907001 Chaotic Dynamics +chao-dyn/9907003 Chaotic Dynamics +chao-dyn/9907008 Chaotic Dynamics +chao-dyn/9907009 Chaotic Dynamics +chao-dyn/9907010 Chaotic Dynamics +chao-dyn/9907011 Chaotic Dynamics +chao-dyn/9907012 Chaotic Dynamics +chao-dyn/9907013 Chaotic Dynamics +chao-dyn/9907015 Chaotic Dynamics +chao-dyn/9907016 Chaotic Dynamics +chao-dyn/9907018 Chaotic Dynamics +chao-dyn/9907019 Chaotic Dynamics +chao-dyn/9907022 Chaotic Dynamics +chao-dyn/9907023 Chaotic Dynamics +chao-dyn/9907027 Chaotic Dynamics +chao-dyn/9907029 Chaotic Dynamics +chao-dyn/9907030 Chaotic Dynamics +chao-dyn/9907034 Chaotic Dynamics +chao-dyn/9908001 Chaotic Dynamics +chao-dyn/9908003 Chaotic Dynamics +chao-dyn/9908004 Chaotic Dynamics +chao-dyn/9908005 Chaotic Dynamics +chao-dyn/9908006 Chaotic Dynamics +chao-dyn/9908008 Chaotic Dynamics +chao-dyn/9908009 Chaotic Dynamics +chao-dyn/9908010 Chaotic Dynamics +chao-dyn/9908014 Chaotic Dynamics +chao-dyn/9908016 Chaotic Dynamics +chao-dyn/9908017 Chaotic Dynamics +chao-dyn/9908019 Chaotic Dynamics +chao-dyn/9908020 Chaotic Dynamics +chao-dyn/9908021 Chaotic Dynamics +chao-dyn/9908022 Chaotic Dynamics +chao-dyn/9909003 Chaotic Dynamics +chao-dyn/9909005 Chaotic Dynamics +chao-dyn/9909008 Chaotic Dynamics +chao-dyn/9909009 Chaotic Dynamics +chao-dyn/9909010 Chaotic Dynamics +chao-dyn/9909011 Chaotic Dynamics +chao-dyn/9909013 Chaotic Dynamics +chao-dyn/9909014 Chaotic Dynamics +chao-dyn/9909015 Chaotic Dynamics +chao-dyn/9909020 Chaotic Dynamics +chao-dyn/9909026 Chaotic Dynamics +chao-dyn/9909028 Chaotic Dynamics +chao-dyn/9909029 Chaotic Dynamics +chao-dyn/9909030 Chaotic Dynamics +chao-dyn/9909035 Chaotic Dynamics +chao-dyn/9909037 Chaotic Dynamics +chao-dyn/9909040 Chaotic Dynamics +chao-dyn/9909041 Chaotic Dynamics +chao-dyn/9909042 Chaotic Dynamics +chao-dyn/9909043 Chaotic Dynamics +chao-dyn/9909044 Chaotic Dynamics +chao-dyn/9909045 Chaotic Dynamics +chao-dyn/9910007 Chaotic Dynamics +chao-dyn/9910008 Chaotic Dynamics +chao-dyn/9910009 Chaotic Dynamics +chao-dyn/9910010 Chaotic Dynamics +chao-dyn/9910012 Chaotic Dynamics +chao-dyn/9910014 Chaotic Dynamics +chao-dyn/9910015 Chaotic Dynamics +chao-dyn/9910016 Chaotic Dynamics +chao-dyn/9910017 Chaotic Dynamics +chao-dyn/9910020 Chaotic Dynamics +chao-dyn/9910021 Chaotic Dynamics +chao-dyn/9910023 Chaotic Dynamics +chao-dyn/9910024 Chaotic Dynamics +chao-dyn/9910026 Chaotic Dynamics +chao-dyn/9910027 Chaotic Dynamics +chao-dyn/9910029 Chaotic Dynamics +chao-dyn/9910032 Chaotic Dynamics +chao-dyn/9910033 Chaotic Dynamics +chao-dyn/9910036 Chaotic Dynamics +chao-dyn/9910037 Chaotic Dynamics +chao-dyn/9910039 Chaotic Dynamics +chao-dyn/9910040 Chaotic Dynamics +chao-dyn/9911001 Chaotic Dynamics +chao-dyn/9911006 Chaotic Dynamics +chao-dyn/9911007 Chaotic Dynamics +chao-dyn/9911008 Chaotic Dynamics +chao-dyn/9911009 Chaotic Dynamics +chao-dyn/9911011 Chaotic Dynamics +chao-dyn/9911013 Chaotic Dynamics +chao-dyn/9911014 Chaotic Dynamics +chao-dyn/9911015 Chaotic Dynamics +chao-dyn/9911017 Chaotic Dynamics +chao-dyn/9911018 Chaotic Dynamics +chao-dyn/9911019 Chaotic Dynamics +chao-dyn/9911026 Chaotic Dynamics +chao-dyn/9911027 Chaotic Dynamics +chao-dyn/9911028 Chaotic Dynamics +chao-dyn/9912002 Chaotic Dynamics +chao-dyn/9912003 Chaotic Dynamics +chao-dyn/9912005 Chaotic Dynamics +chao-dyn/9912006 Chaotic Dynamics +chao-dyn/9912007 Chaotic Dynamics +chao-dyn/9912008 Chaotic Dynamics +chao-dyn/9912010 Chaotic Dynamics +chao-dyn/9912011 Chaotic Dynamics +chao-dyn/9912013 Chaotic Dynamics +chao-dyn/9912014 Chaotic Dynamics +chao-dyn/9912015 Chaotic Dynamics +chao-dyn/9912017 Chaotic Dynamics +chao-dyn/9912022 Chaotic Dynamics +chao-dyn/9912023 Chaotic Dynamics +chao-dyn/9912024 Chaotic Dynamics +chao-dyn/9912025 Chaotic Dynamics +chao-dyn/9912028 Chaotic Dynamics +chao-dyn/9912031 Chaotic Dynamics +chao-dyn/9912032 Chaotic Dynamics +chao-dyn/9912033 Chaotic Dynamics +chao-dyn/9912034 Chaotic Dynamics +chao-dyn/9912035 Chaotic Dynamics +comp-gas/9807001 Cellular Automata and Lattice Gases +comp-gas/9902001 Cellular Automata and Lattice Gases +comp-gas/9902002 Cellular Automata and Lattice Gases +comp-gas/9907001 Cellular Automata and Lattice Gases +cond-mat/0001002 Strongly Correlated Electrons +cond-mat/0001004 Statistical Mechanics +cond-mat/0001006 +cond-mat/0001009 Superconductivity +cond-mat/0001010 Statistical Mechanics +cond-mat/0001011 Mesoscale and Nanoscale Physics +cond-mat/0001017 Disordered Systems and Neural Networks +cond-mat/0001019 Statistical Mechanics +cond-mat/0001022 Mesoscale and Nanoscale Physics +cond-mat/0001023 +cond-mat/0001024 Superconductivity +cond-mat/0001025 Strongly Correlated Electrons +cond-mat/0001026 Strongly Correlated Electrons +cond-mat/0001028 Strongly Correlated Electrons +cond-mat/0001029 Superconductivity +cond-mat/0001030 Disordered Systems and Neural Networks +cond-mat/0001031 Superconductivity +cond-mat/0001034 Superconductivity +cond-mat/0001035 Superconductivity +cond-mat/0001036 Mesoscale and Nanoscale Physics +cond-mat/0001037 Superconductivity +cond-mat/0001038 Superconductivity +cond-mat/0001039 Superconductivity +cond-mat/0001040 Superconductivity +cond-mat/0001042 Soft Condensed Matter +cond-mat/0001045 Superconductivity +cond-mat/0001047 +cond-mat/0001049 Superconductivity +cond-mat/0001051 Strongly Correlated Electrons +cond-mat/0001055 Soft Condensed Matter +cond-mat/0001057 Strongly Correlated Electrons +cond-mat/0001058 Superconductivity +cond-mat/0001059 +cond-mat/0001060 Disordered Systems and Neural Networks +cond-mat/0001062 Mesoscale and Nanoscale Physics +cond-mat/0001063 Strongly Correlated Electrons +cond-mat/0001064 +cond-mat/0001065 +cond-mat/0001067 Materials Science +cond-mat/0001071 Statistical Mechanics +cond-mat/0001072 Strongly Correlated Electrons +cond-mat/0001073 Mesoscale and Nanoscale Physics +cond-mat/0001074 Statistical Mechanics +cond-mat/0001076 Materials Science +cond-mat/0001077 Strongly Correlated Electrons +cond-mat/0001078 Strongly Correlated Electrons +cond-mat/0001079 Statistical Mechanics +cond-mat/0001080 +cond-mat/0001085 +cond-mat/0001086 Mesoscale and Nanoscale Physics +cond-mat/0001087 Statistical Mechanics +cond-mat/0001089 +cond-mat/0001093 Statistical Mechanics +cond-mat/0001094 Soft Condensed Matter +cond-mat/0001095 Strongly Correlated Electrons +cond-mat/0001098 Materials Science +cond-mat/0001099 Materials Science +cond-mat/0001103 Statistical Mechanics +cond-mat/0001105 Statistical Mechanics +cond-mat/0001107 Materials Science +cond-mat/0001111 Statistical Mechanics +cond-mat/0001113 Superconductivity +cond-mat/0001115 Soft Condensed Matter +cond-mat/0001120 Disordered Systems and Neural Networks +cond-mat/0001124 +cond-mat/0001125 Superconductivity +cond-mat/0001127 Disordered Systems and Neural Networks +cond-mat/0001128 Statistical Mechanics +cond-mat/0001129 Superconductivity +cond-mat/0001130 +cond-mat/0001131 Superconductivity +cond-mat/0001132 Strongly Correlated Electrons +cond-mat/0001133 Superconductivity +cond-mat/0001134 Statistical Mechanics +cond-mat/0001135 Statistical Mechanics +cond-mat/0001137 Disordered Systems and Neural Networks +cond-mat/0001138 Statistical Mechanics +cond-mat/0001141 Strongly Correlated Electrons +cond-mat/0001145 Materials Science +cond-mat/0001148 Mesoscale and Nanoscale Physics +cond-mat/0001149 Superconductivity +cond-mat/0001150 Superconductivity +cond-mat/0001151 Soft Condensed Matter +cond-mat/0001155 Mesoscale and Nanoscale Physics +cond-mat/0001161 Statistical Mechanics +cond-mat/0001162 Disordered Systems and Neural Networks +cond-mat/0001163 +cond-mat/0001166 Superconductivity +cond-mat/0001168 Strongly Correlated Electrons +cond-mat/0001169 Mesoscale and Nanoscale Physics +cond-mat/0001170 Superconductivity +cond-mat/0001171 Strongly Correlated Electrons +cond-mat/0001172 Statistical Mechanics +cond-mat/0001173 Statistical Mechanics +cond-mat/0001175 Statistical Mechanics +cond-mat/0001176 Strongly Correlated Electrons +cond-mat/0001177 Statistical Mechanics +cond-mat/0001178 Statistical Mechanics +cond-mat/0001180 Materials Science +cond-mat/0001182 Superconductivity +cond-mat/0001183 Disordered Systems and Neural Networks +cond-mat/0001184 Superconductivity +cond-mat/0001186 Superconductivity +cond-mat/0001187 +cond-mat/0001189 +cond-mat/0001190 Disordered Systems and Neural Networks +cond-mat/0001191 Materials Science +cond-mat/0001192 Soft Condensed Matter +cond-mat/0001193 +cond-mat/0001195 Statistical Mechanics +cond-mat/0001196 Statistical Mechanics +cond-mat/0001199 Materials Science +cond-mat/0001200 Strongly Correlated Electrons +cond-mat/0001201 Superconductivity +cond-mat/0001202 Soft Condensed Matter +cond-mat/0001204 Materials Science +cond-mat/0001205 Superconductivity +cond-mat/0001206 Mesoscale and Nanoscale Physics +cond-mat/0001208 Strongly Correlated Electrons +cond-mat/0001210 Strongly Correlated Electrons +cond-mat/0001211 Statistical Mechanics +cond-mat/0001212 Materials Science +cond-mat/0001215 Superconductivity +cond-mat/0001216 Strongly Correlated Electrons +cond-mat/0001217 Strongly Correlated Electrons +cond-mat/0001219 Superconductivity +cond-mat/0001220 Statistical Mechanics +cond-mat/0001221 Strongly Correlated Electrons +cond-mat/0001222 Soft Condensed Matter +cond-mat/0001224 Disordered Systems and Neural Networks +cond-mat/0001225 Materials Science +cond-mat/0001226 Mesoscale and Nanoscale Physics +cond-mat/0001227 Strongly Correlated Electrons +cond-mat/0001229 Superconductivity +cond-mat/0001230 Statistical Mechanics +cond-mat/0001231 Superconductivity +cond-mat/0001232 Statistical Mechanics +cond-mat/0001233 Statistical Mechanics +cond-mat/0001234 Mesoscale and Nanoscale Physics +cond-mat/0001235 Superconductivity +cond-mat/0001236 Strongly Correlated Electrons +cond-mat/0001237 Statistical Mechanics +cond-mat/0001238 Strongly Correlated Electrons +cond-mat/0001239 Strongly Correlated Electrons +cond-mat/0001240 Statistical Mechanics +cond-mat/0001241 Soft Condensed Matter +cond-mat/0001242 Soft Condensed Matter +cond-mat/0001243 Strongly Correlated Electrons +cond-mat/0001245 Strongly Correlated Electrons +cond-mat/0001246 Soft Condensed Matter +cond-mat/0001249 Superconductivity +cond-mat/0001250 Statistical Mechanics +cond-mat/0001251 Statistical Mechanics +cond-mat/0001252 Mesoscale and Nanoscale Physics +cond-mat/0001254 +cond-mat/0001257 Superconductivity +cond-mat/0001259 Strongly Correlated Electrons +cond-mat/0001261 +cond-mat/0001263 Disordered Systems and Neural Networks +cond-mat/0001264 Statistical Mechanics +cond-mat/0001268 Statistical Mechanics +cond-mat/0001269 Superconductivity +cond-mat/0001272 Superconductivity +cond-mat/0001273 Disordered Systems and Neural Networks +cond-mat/0001275 Strongly Correlated Electrons +cond-mat/0001277 Statistical Mechanics +cond-mat/0001278 Statistical Mechanics +cond-mat/0001279 +cond-mat/0001280 Strongly Correlated Electrons +cond-mat/0001281 Materials Science +cond-mat/0001283 Strongly Correlated Electrons +cond-mat/0001284 Soft Condensed Matter +cond-mat/0001286 Statistical Mechanics +cond-mat/0001287 Superconductivity +cond-mat/0001288 +cond-mat/0001289 Strongly Correlated Electrons +cond-mat/0001291 Statistical Mechanics +cond-mat/0001292 Statistical Mechanics +cond-mat/0001293 Statistical Mechanics +cond-mat/0001294 Statistical Mechanics +cond-mat/0001295 Statistical Mechanics +cond-mat/0001297 Strongly Correlated Electrons +cond-mat/0001299 Statistical Mechanics +cond-mat/0001300 Mesoscale and Nanoscale Physics +cond-mat/0001301 +cond-mat/0001303 Strongly Correlated Electrons +cond-mat/0001305 Statistical Mechanics +cond-mat/0001311 Disordered Systems and Neural Networks +cond-mat/0001312 Mesoscale and Nanoscale Physics +cond-mat/0001313 +cond-mat/0001316 Strongly Correlated Electrons +cond-mat/0001317 Disordered Systems and Neural Networks +cond-mat/0001318 Superconductivity +cond-mat/0001320 +cond-mat/0001321 Soft Condensed Matter +cond-mat/0001324 Statistical Mechanics +cond-mat/0001327 Mesoscale and Nanoscale Physics +cond-mat/0001328 Mesoscale and Nanoscale Physics +cond-mat/0001329 Mesoscale and Nanoscale Physics +cond-mat/0001330 Mesoscale and Nanoscale Physics +cond-mat/0001331 Superconductivity +cond-mat/0001334 Statistical Mechanics +cond-mat/0001335 Disordered Systems and Neural Networks +cond-mat/0001336 +cond-mat/0001340 Statistical Mechanics +cond-mat/0001343 Statistical Mechanics +cond-mat/0001344 Disordered Systems and Neural Networks +cond-mat/0001346 Mesoscale and Nanoscale Physics +cond-mat/0001348 Soft Condensed Matter +cond-mat/0001350 Statistical Mechanics +cond-mat/0001351 Strongly Correlated Electrons +cond-mat/0001352 Superconductivity +cond-mat/0001356 Superconductivity +cond-mat/0001357 Strongly Correlated Electrons +cond-mat/0001360 +cond-mat/0001362 +cond-mat/0001363 Disordered Systems and Neural Networks +cond-mat/0001365 Superconductivity +cond-mat/0001366 Strongly Correlated Electrons +cond-mat/0001368 Mesoscale and Nanoscale Physics +cond-mat/0001369 Disordered Systems and Neural Networks +cond-mat/0001370 Soft Condensed Matter +cond-mat/0001371 Strongly Correlated Electrons +cond-mat/0001373 Materials Science +cond-mat/0001374 Strongly Correlated Electrons +cond-mat/0001375 Superconductivity +cond-mat/0001376 +cond-mat/0001378 Mesoscale and Nanoscale Physics +cond-mat/0001379 Superconductivity +cond-mat/0001380 Statistical Mechanics +cond-mat/0001381 Materials Science +cond-mat/0001382 +cond-mat/0001383 +cond-mat/0001384 Statistical Mechanics +cond-mat/0001385 Strongly Correlated Electrons +cond-mat/0001386 Statistical Mechanics +cond-mat/0001387 Statistical Mechanics +cond-mat/0001388 Statistical Mechanics +cond-mat/0001389 Statistical Mechanics +cond-mat/0001390 Strongly Correlated Electrons +cond-mat/0001391 Mesoscale and Nanoscale Physics +cond-mat/0001393 Statistical Mechanics +cond-mat/0001394 Mesoscale and Nanoscale Physics +cond-mat/0001396 Mesoscale and Nanoscale Physics +cond-mat/0001397 Materials Science +cond-mat/0001398 Materials Science +cond-mat/0001399 Strongly Correlated Electrons +cond-mat/0001400 Strongly Correlated Electrons +cond-mat/0001403 Strongly Correlated Electrons +cond-mat/0001404 Strongly Correlated Electrons +cond-mat/0001405 +cond-mat/0001406 Superconductivity +cond-mat/0001407 Statistical Mechanics +cond-mat/0001410 Materials Science +cond-mat/0001411 +cond-mat/0001412 Mesoscale and Nanoscale Physics +cond-mat/0001415 Strongly Correlated Electrons +cond-mat/0001417 Statistical Mechanics +cond-mat/0001418 Statistical Mechanics +cond-mat/0001419 +cond-mat/0001421 Superconductivity +cond-mat/0001422 Statistical Mechanics +cond-mat/0001424 +cond-mat/0001425 Statistical Mechanics +cond-mat/0001426 Mesoscale and Nanoscale Physics +cond-mat/0001428 Strongly Correlated Electrons +cond-mat/0001429 +cond-mat/0001430 Strongly Correlated Electrons +cond-mat/0001431 Mesoscale and Nanoscale Physics +cond-mat/0001433 +cond-mat/0001437 Materials Science +cond-mat/0001438 +cond-mat/0001439 Strongly Correlated Electrons +cond-mat/0001441 Strongly Correlated Electrons +cond-mat/0001443 Superconductivity +cond-mat/0001444 Disordered Systems and Neural Networks +cond-mat/0001445 Statistical Mechanics +cond-mat/0001446 Strongly Correlated Electrons +cond-mat/0001447 +cond-mat/0001449 Materials Science +cond-mat/0001450 Strongly Correlated Electrons +cond-mat/0001451 +cond-mat/0001452 Strongly Correlated Electrons +cond-mat/0001453 Mesoscale and Nanoscale Physics +cond-mat/0001454 Superconductivity +cond-mat/0001456 Superconductivity +cond-mat/0001457 Materials Science +cond-mat/0001460 Mesoscale and Nanoscale Physics +cond-mat/0002001 Strongly Correlated Electrons +cond-mat/0002002 Superconductivity +cond-mat/0002003 Mesoscale and Nanoscale Physics +cond-mat/0002006 +cond-mat/0002007 +cond-mat/0002008 Mesoscale and Nanoscale Physics +cond-mat/0002010 Mesoscale and Nanoscale Physics +cond-mat/0002011 Strongly Correlated Electrons +cond-mat/0002012 Superconductivity +cond-mat/0002013 Superconductivity +cond-mat/0002014 Strongly Correlated Electrons +cond-mat/0002015 Materials Science +cond-mat/0002018 +cond-mat/0002019 Superconductivity +cond-mat/0002021 Disordered Systems and Neural Networks +cond-mat/0002022 Statistical Mechanics +cond-mat/0002023 Strongly Correlated Electrons +cond-mat/0002024 Disordered Systems and Neural Networks +cond-mat/0002025 +cond-mat/0002028 Statistical Mechanics +cond-mat/0002031 Strongly Correlated Electrons +cond-mat/0002032 Statistical Mechanics +cond-mat/0002033 Strongly Correlated Electrons +cond-mat/0002034 Statistical Mechanics +cond-mat/0002035 Superconductivity +cond-mat/0002036 Statistical Mechanics +cond-mat/0002041 Soft Condensed Matter +cond-mat/0002042 Soft Condensed Matter +cond-mat/0002043 Superconductivity +cond-mat/0002044 Materials Science +cond-mat/0002045 Statistical Mechanics +cond-mat/0002046 +cond-mat/0002047 Statistical Mechanics +cond-mat/0002048 +cond-mat/0002049 +cond-mat/0002050 Mesoscale and Nanoscale Physics +cond-mat/0002051 Superconductivity +cond-mat/0002052 Mesoscale and Nanoscale Physics +cond-mat/0002053 +cond-mat/0002054 Statistical Mechanics +cond-mat/0002055 Disordered Systems and Neural Networks +cond-mat/0002056 +cond-mat/0002059 +cond-mat/0002061 Strongly Correlated Electrons +cond-mat/0002062 Soft Condensed Matter +cond-mat/0002063 Strongly Correlated Electrons +cond-mat/0002065 Superconductivity +cond-mat/0002066 Superconductivity +cond-mat/0002067 Mesoscale and Nanoscale Physics +cond-mat/0002068 Strongly Correlated Electrons +cond-mat/0002071 Disordered Systems and Neural Networks +cond-mat/0002073 Strongly Correlated Electrons +cond-mat/0002074 Disordered Systems and Neural Networks +cond-mat/0002075 +cond-mat/0002076 Disordered Systems and Neural Networks +cond-mat/0002079 Superconductivity +cond-mat/0002080 Mesoscale and Nanoscale Physics +cond-mat/0002081 Disordered Systems and Neural Networks +cond-mat/0002083 Statistical Mechanics +cond-mat/0002084 Statistical Mechanics +cond-mat/0002085 Statistical Mechanics +cond-mat/0002087 Mesoscale and Nanoscale Physics +cond-mat/0002088 Statistical Mechanics +cond-mat/0002089 Disordered Systems and Neural Networks +cond-mat/0002090 Strongly Correlated Electrons +cond-mat/0002093 Statistical Mechanics +cond-mat/0002097 Strongly Correlated Electrons +cond-mat/0002098 Statistical Mechanics +cond-mat/0002099 Strongly Correlated Electrons +cond-mat/0002100 Statistical Mechanics +cond-mat/0002101 Disordered Systems and Neural Networks +cond-mat/0002102 Soft Condensed Matter +cond-mat/0002103 Disordered Systems and Neural Networks +cond-mat/0002104 Strongly Correlated Electrons +cond-mat/0002105 Materials Science +cond-mat/0002106 Strongly Correlated Electrons +cond-mat/0002107 Strongly Correlated Electrons +cond-mat/0002109 Disordered Systems and Neural Networks +cond-mat/0002111 Superconductivity +cond-mat/0002112 Superconductivity +cond-mat/0002113 Strongly Correlated Electrons +cond-mat/0002114 Superconductivity +cond-mat/0002115 +cond-mat/0002116 +cond-mat/0002117 Statistical Mechanics +cond-mat/0002119 Statistical Mechanics +cond-mat/0002120 Mesoscale and Nanoscale Physics +cond-mat/0002122 Superconductivity +cond-mat/0002124 +cond-mat/0002126 +cond-mat/0002127 Statistical Mechanics +cond-mat/0002128 Disordered Systems and Neural Networks +cond-mat/0002129 Disordered Systems and Neural Networks +cond-mat/0002130 Disordered Systems and Neural Networks +cond-mat/0002131 +cond-mat/0002133 Soft Condensed Matter +cond-mat/0002134 Disordered Systems and Neural Networks +cond-mat/0002135 Mesoscale and Nanoscale Physics +cond-mat/0002136 +cond-mat/0002139 Mesoscale and Nanoscale Physics +cond-mat/0002141 Superconductivity +cond-mat/0002143 Statistical Mechanics +cond-mat/0002144 Statistical Mechanics +cond-mat/0002146 Superconductivity +cond-mat/0002147 Strongly Correlated Electrons +cond-mat/0002150 Statistical Mechanics +cond-mat/0002151 Superconductivity +cond-mat/0002152 Superconductivity +cond-mat/0002153 Mesoscale and Nanoscale Physics +cond-mat/0002154 Soft Condensed Matter +cond-mat/0002158 Disordered Systems and Neural Networks +cond-mat/0002159 Statistical Mechanics +cond-mat/0002161 Statistical Mechanics +cond-mat/0002162 Statistical Mechanics +cond-mat/0002165 Mesoscale and Nanoscale Physics +cond-mat/0002167 Materials Science +cond-mat/0002168 Statistical Mechanics +cond-mat/0002170 Strongly Correlated Electrons +cond-mat/0002172 Superconductivity +cond-mat/0002173 Soft Condensed Matter +cond-mat/0002174 Soft Condensed Matter +cond-mat/0002175 Statistical Mechanics +cond-mat/0002177 Statistical Mechanics +cond-mat/0002178 Mesoscale and Nanoscale Physics +cond-mat/0002179 +cond-mat/0002182 Strongly Correlated Electrons +cond-mat/0002183 Superconductivity +cond-mat/0002184 Strongly Correlated Electrons +cond-mat/0002185 Materials Science +cond-mat/0002186 Disordered Systems and Neural Networks +cond-mat/0002187 Mesoscale and Nanoscale Physics +cond-mat/0002188 Mesoscale and Nanoscale Physics +cond-mat/0002189 Mesoscale and Nanoscale Physics +cond-mat/0002190 Superconductivity +cond-mat/0002192 +cond-mat/0002193 +cond-mat/0002194 Mesoscale and Nanoscale Physics +cond-mat/0002195 Superconductivity +cond-mat/0002196 Superconductivity +cond-mat/0002197 Superconductivity +cond-mat/0002199 Statistical Mechanics +cond-mat/0002200 Disordered Systems and Neural Networks +cond-mat/0002201 Statistical Mechanics +cond-mat/0002202 Mesoscale and Nanoscale Physics +cond-mat/0002203 Mesoscale and Nanoscale Physics +cond-mat/0002206 Superconductivity +cond-mat/0002207 Mesoscale and Nanoscale Physics +cond-mat/0002209 Mesoscale and Nanoscale Physics +cond-mat/0002210 Superconductivity +cond-mat/0002212 Superconductivity +cond-mat/0002214 Statistical Mechanics +cond-mat/0002216 Materials Science +cond-mat/0002218 Mesoscale and Nanoscale Physics +cond-mat/0002219 +cond-mat/0002222 Statistical Mechanics +cond-mat/0002226 Mesoscale and Nanoscale Physics +cond-mat/0002227 Strongly Correlated Electrons +cond-mat/0002228 Mesoscale and Nanoscale Physics +cond-mat/0002229 Mesoscale and Nanoscale Physics +cond-mat/0002230 Soft Condensed Matter +cond-mat/0002232 Superconductivity +cond-mat/0002233 Superconductivity +cond-mat/0002235 Statistical Mechanics +cond-mat/0002238 Statistical Mechanics +cond-mat/0002241 Superconductivity +cond-mat/0002242 Statistical Mechanics +cond-mat/0002243 +cond-mat/0002246 Superconductivity +cond-mat/0002247 Statistical Mechanics +cond-mat/0002248 Statistical Mechanics +cond-mat/0002249 Statistical Mechanics +cond-mat/0002250 Superconductivity +cond-mat/0002252 Statistical Mechanics +cond-mat/0002253 Mesoscale and Nanoscale Physics +cond-mat/0002254 +cond-mat/0002255 Mesoscale and Nanoscale Physics +cond-mat/0002256 Mesoscale and Nanoscale Physics +cond-mat/0002259 Strongly Correlated Electrons +cond-mat/0002261 Soft Condensed Matter +cond-mat/0002262 Statistical Mechanics +cond-mat/0002265 +cond-mat/0002267 Mesoscale and Nanoscale Physics +cond-mat/0002270 Statistical Mechanics +cond-mat/0002272 Materials Science +cond-mat/0002276 Statistical Mechanics +cond-mat/0002277 Strongly Correlated Electrons +cond-mat/0002279 Mesoscale and Nanoscale Physics +cond-mat/0002282 Statistical Mechanics +cond-mat/0002283 Superconductivity +cond-mat/0002284 Mesoscale and Nanoscale Physics +cond-mat/0002285 +cond-mat/0002286 Strongly Correlated Electrons +cond-mat/0002287 Strongly Correlated Electrons +cond-mat/0002290 +cond-mat/0002293 +cond-mat/0002294 Statistical Mechanics +cond-mat/0002296 +cond-mat/0002297 Strongly Correlated Electrons +cond-mat/0002298 Statistical Mechanics +cond-mat/0002299 Disordered Systems and Neural Networks +cond-mat/0002300 Superconductivity +cond-mat/0002301 Superconductivity +cond-mat/0002302 Superconductivity +cond-mat/0002303 Statistical Mechanics +cond-mat/0002304 Strongly Correlated Electrons +cond-mat/0002305 Soft Condensed Matter +cond-mat/0002306 Strongly Correlated Electrons +cond-mat/0002307 Soft Condensed Matter +cond-mat/0002308 +cond-mat/0002309 +cond-mat/0002310 Statistical Mechanics +cond-mat/0002312 +cond-mat/0002315 +cond-mat/0002318 Strongly Correlated Electrons +cond-mat/0002321 Strongly Correlated Electrons +cond-mat/0002322 Materials Science +cond-mat/0002328 Disordered Systems and Neural Networks +cond-mat/0002331 Statistical Mechanics +cond-mat/0002333 Superconductivity +cond-mat/0002335 Disordered Systems and Neural Networks +cond-mat/0002336 Mesoscale and Nanoscale Physics +cond-mat/0002337 Superconductivity +cond-mat/0002340 Statistical Mechanics +cond-mat/0002341 Superconductivity +cond-mat/0002342 Disordered Systems and Neural Networks +cond-mat/0002346 Superconductivity +cond-mat/0002349 Superconductivity +cond-mat/0002351 +cond-mat/0002352 Superconductivity +cond-mat/0002353 Materials Science +cond-mat/0002356 Strongly Correlated Electrons +cond-mat/0002357 Strongly Correlated Electrons +cond-mat/0002358 Disordered Systems and Neural Networks +cond-mat/0002359 Superconductivity +cond-mat/0002360 Disordered Systems and Neural Networks +cond-mat/0002362 Statistical Mechanics +cond-mat/0002363 Soft Condensed Matter +cond-mat/0002365 +cond-mat/0002366 +cond-mat/0002367 Soft Condensed Matter +cond-mat/0002368 +cond-mat/0002369 +cond-mat/0002370 Disordered Systems and Neural Networks +cond-mat/0002371 Materials Science +cond-mat/0002372 Statistical Mechanics +cond-mat/0002373 Materials Science +cond-mat/0002377 Superconductivity +cond-mat/0002378 Statistical Mechanics +cond-mat/0002380 +cond-mat/0002381 Statistical Mechanics +cond-mat/0002382 Statistical Mechanics +cond-mat/0002384 Statistical Mechanics +cond-mat/0002390 +cond-mat/0002391 Mesoscale and Nanoscale Physics +cond-mat/0002392 Strongly Correlated Electrons +cond-mat/0002393 +cond-mat/0002394 +cond-mat/0002395 Superconductivity +cond-mat/0002396 Mesoscale and Nanoscale Physics +cond-mat/0002399 Disordered Systems and Neural Networks +cond-mat/0002400 Statistical Mechanics +cond-mat/0002402 Statistical Mechanics +cond-mat/0002404 +cond-mat/0002405 Mesoscale and Nanoscale Physics +cond-mat/0002406 Statistical Mechanics +cond-mat/0002408 Statistical Mechanics +cond-mat/0002409 Materials Science +cond-mat/0002410 Statistical Mechanics +cond-mat/0002411 Materials Science +cond-mat/0002412 Strongly Correlated Electrons +cond-mat/0002413 Materials Science +cond-mat/0002414 Materials Science +cond-mat/0002415 Disordered Systems and Neural Networks +cond-mat/0002416 Soft Condensed Matter +cond-mat/0002417 Mesoscale and Nanoscale Physics +cond-mat/0002418 Statistical Mechanics +cond-mat/0002419 Strongly Correlated Electrons +cond-mat/0002422 Soft Condensed Matter +cond-mat/0002423 +cond-mat/0002427 Soft Condensed Matter +cond-mat/0002428 +cond-mat/0002429 Strongly Correlated Electrons +cond-mat/0002431 Superconductivity +cond-mat/0002433 Statistical Mechanics +cond-mat/0002435 +cond-mat/0002437 Statistical Mechanics +cond-mat/0002438 Statistical Mechanics +cond-mat/0002440 +cond-mat/0002441 +cond-mat/0002442 +cond-mat/0002443 +cond-mat/0002444 Strongly Correlated Electrons +cond-mat/0002445 Strongly Correlated Electrons +cond-mat/0002448 Soft Condensed Matter +cond-mat/0002449 +cond-mat/0002452 Strongly Correlated Electrons +cond-mat/0002454 Statistical Mechanics +cond-mat/0002456 Statistical Mechanics +cond-mat/0002457 Disordered Systems and Neural Networks +cond-mat/0002460 Disordered Systems and Neural Networks +cond-mat/0002461 Mesoscale and Nanoscale Physics +cond-mat/0002464 Materials Science +cond-mat/0002465 Statistical Mechanics +cond-mat/0002467 Mesoscale and Nanoscale Physics +cond-mat/0003001 Statistical Mechanics +cond-mat/0003003 Superconductivity +cond-mat/0003004 Materials Science +cond-mat/0003007 Strongly Correlated Electrons +cond-mat/0003009 +cond-mat/0003014 Materials Science +cond-mat/0003016 Strongly Correlated Electrons +cond-mat/0003020 Statistical Mechanics +cond-mat/0003021 Mesoscale and Nanoscale Physics +cond-mat/0003022 Superconductivity +cond-mat/0003024 Soft Condensed Matter +cond-mat/0003026 Soft Condensed Matter +cond-mat/0003028 Strongly Correlated Electrons +cond-mat/0003031 Disordered Systems and Neural Networks +cond-mat/0003032 Mesoscale and Nanoscale Physics +cond-mat/0003033 Superconductivity +cond-mat/0003036 Strongly Correlated Electrons +cond-mat/0003037 Strongly Correlated Electrons +cond-mat/0003038 Mesoscale and Nanoscale Physics +cond-mat/0003039 Mesoscale and Nanoscale Physics +cond-mat/0003041 Soft Condensed Matter +cond-mat/0003042 Disordered Systems and Neural Networks +cond-mat/0003043 Materials Science +cond-mat/0003045 Strongly Correlated Electrons +cond-mat/0003046 Superconductivity +cond-mat/0003048 Mesoscale and Nanoscale Physics +cond-mat/0003050 Statistical Mechanics +cond-mat/0003053 Mesoscale and Nanoscale Physics +cond-mat/0003054 Disordered Systems and Neural Networks +cond-mat/0003055 Materials Science +cond-mat/0003056 Strongly Correlated Electrons +cond-mat/0003057 Disordered Systems and Neural Networks +cond-mat/0003058 Superconductivity +cond-mat/0003059 +cond-mat/0003063 +cond-mat/0003066 Strongly Correlated Electrons +cond-mat/0003067 Disordered Systems and Neural Networks +cond-mat/0003068 Superconductivity +cond-mat/0003069 Strongly Correlated Electrons +cond-mat/0003071 Strongly Correlated Electrons +cond-mat/0003072 Superconductivity +cond-mat/0003077 Superconductivity +cond-mat/0003079 Statistical Mechanics +cond-mat/0003080 Strongly Correlated Electrons +cond-mat/0003082 Mesoscale and Nanoscale Physics +cond-mat/0003083 Disordered Systems and Neural Networks +cond-mat/0003085 Strongly Correlated Electrons +cond-mat/0003086 Materials Science +cond-mat/0003088 Materials Science +cond-mat/0003089 Mesoscale and Nanoscale Physics +cond-mat/0003090 Superconductivity +cond-mat/0003092 Statistical Mechanics +cond-mat/0003093 Materials Science +cond-mat/0003094 Strongly Correlated Electrons +cond-mat/0003095 Mesoscale and Nanoscale Physics +cond-mat/0003098 Disordered Systems and Neural Networks +cond-mat/0003101 Statistical Mechanics +cond-mat/0003102 Strongly Correlated Electrons +cond-mat/0003106 Superconductivity +cond-mat/0003109 Strongly Correlated Electrons +cond-mat/0003110 Statistical Mechanics +cond-mat/0003111 Statistical Mechanics +cond-mat/0003113 +cond-mat/0003114 +cond-mat/0003115 +cond-mat/0003118 +cond-mat/0003119 Superconductivity +cond-mat/0003121 Disordered Systems and Neural Networks +cond-mat/0003122 Statistical Mechanics +cond-mat/0003126 Strongly Correlated Electrons +cond-mat/0003128 Soft Condensed Matter +cond-mat/0003129 Strongly Correlated Electrons +cond-mat/0003130 +cond-mat/0003131 Statistical Mechanics +cond-mat/0003132 Superconductivity +cond-mat/0003134 Materials Science +cond-mat/0003135 Superconductivity +cond-mat/0003136 Disordered Systems and Neural Networks +cond-mat/0003138 Materials Science +cond-mat/0003139 Mesoscale and Nanoscale Physics +cond-mat/0003141 Strongly Correlated Electrons +cond-mat/0003143 Superconductivity +cond-mat/0003145 Mesoscale and Nanoscale Physics +cond-mat/0003146 Soft Condensed Matter +cond-mat/0003147 Strongly Correlated Electrons +cond-mat/0003149 Superconductivity +cond-mat/0003150 Soft Condensed Matter +cond-mat/0003151 Soft Condensed Matter +cond-mat/0003154 Soft Condensed Matter +cond-mat/0003155 Statistical Mechanics +cond-mat/0003156 +cond-mat/0003157 Superconductivity +cond-mat/0003158 Strongly Correlated Electrons +cond-mat/0003159 Statistical Mechanics +cond-mat/0003160 Superconductivity +cond-mat/0003164 +cond-mat/0003165 Superconductivity +cond-mat/0003166 Soft Condensed Matter +cond-mat/0003168 Disordered Systems and Neural Networks +cond-mat/0003169 Strongly Correlated Electrons +cond-mat/0003170 Mesoscale and Nanoscale Physics +cond-mat/0003173 Mesoscale and Nanoscale Physics +cond-mat/0003175 Disordered Systems and Neural Networks +cond-mat/0003176 Statistical Mechanics +cond-mat/0003178 +cond-mat/0003179 +cond-mat/0003181 +cond-mat/0003182 Strongly Correlated Electrons +cond-mat/0003183 Strongly Correlated Electrons +cond-mat/0003184 +cond-mat/0003185 +cond-mat/0003186 Strongly Correlated Electrons +cond-mat/0003188 Materials Science +cond-mat/0003191 Strongly Correlated Electrons +cond-mat/0003192 Superconductivity +cond-mat/0003193 Statistical Mechanics +cond-mat/0003194 Mesoscale and Nanoscale Physics +cond-mat/0003195 Soft Condensed Matter +cond-mat/0003197 Strongly Correlated Electrons +cond-mat/0003199 Materials Science +cond-mat/0003201 Strongly Correlated Electrons +cond-mat/0003202 Disordered Systems and Neural Networks +cond-mat/0003203 Statistical Mechanics +cond-mat/0003204 Statistical Mechanics +cond-mat/0003205 Statistical Mechanics +cond-mat/0003206 Materials Science +cond-mat/0003208 +cond-mat/0003210 +cond-mat/0003212 Statistical Mechanics +cond-mat/0003213 Superconductivity +cond-mat/0003214 Strongly Correlated Electrons +cond-mat/0003215 Disordered Systems and Neural Networks +cond-mat/0003217 Statistical Mechanics +cond-mat/0003218 Disordered Systems and Neural Networks +cond-mat/0003219 Mesoscale and Nanoscale Physics +cond-mat/0003221 Strongly Correlated Electrons +cond-mat/0003222 Superconductivity +cond-mat/0003223 Strongly Correlated Electrons +cond-mat/0003225 Mesoscale and Nanoscale Physics +cond-mat/0003226 Disordered Systems and Neural Networks +cond-mat/0003230 Statistical Mechanics +cond-mat/0003231 Materials Science +cond-mat/0003233 +cond-mat/0003234 Disordered Systems and Neural Networks +cond-mat/0003235 Statistical Mechanics +cond-mat/0003236 Superconductivity +cond-mat/0003237 Strongly Correlated Electrons +cond-mat/0003238 Strongly Correlated Electrons +cond-mat/0003239 Statistical Mechanics +cond-mat/0003243 Superconductivity +cond-mat/0003244 Mesoscale and Nanoscale Physics +cond-mat/0003246 Strongly Correlated Electrons +cond-mat/0003247 Superconductivity +cond-mat/0003248 +cond-mat/0003249 Strongly Correlated Electrons +cond-mat/0003250 Strongly Correlated Electrons +cond-mat/0003251 Superconductivity +cond-mat/0003252 Strongly Correlated Electrons +cond-mat/0003256 +cond-mat/0003257 Statistical Mechanics +cond-mat/0003258 Mesoscale and Nanoscale Physics +cond-mat/0003259 Statistical Mechanics +cond-mat/0003261 Mesoscale and Nanoscale Physics +cond-mat/0003263 Disordered Systems and Neural Networks +cond-mat/0003265 Statistical Mechanics +cond-mat/0003266 Statistical Mechanics +cond-mat/0003267 Disordered Systems and Neural Networks +cond-mat/0003268 Statistical Mechanics +cond-mat/0003273 +cond-mat/0003274 Strongly Correlated Electrons +cond-mat/0003275 +cond-mat/0003278 Strongly Correlated Electrons +cond-mat/0003280 +cond-mat/0003283 Statistical Mechanics +cond-mat/0003284 Materials Science +cond-mat/0003286 Mesoscale and Nanoscale Physics +cond-mat/0003288 Strongly Correlated Electrons +cond-mat/0003290 Soft Condensed Matter +cond-mat/0003291 Disordered Systems and Neural Networks +cond-mat/0003292 Materials Science +cond-mat/0003294 Statistical Mechanics +cond-mat/0003295 Strongly Correlated Electrons +cond-mat/0003296 Superconductivity +cond-mat/0003299 Superconductivity +cond-mat/0003301 Mesoscale and Nanoscale Physics +cond-mat/0003306 Statistical Mechanics +cond-mat/0003307 +cond-mat/0003309 +cond-mat/0003311 +cond-mat/0003313 Strongly Correlated Electrons +cond-mat/0003314 Soft Condensed Matter +cond-mat/0003317 Materials Science +cond-mat/0003318 Mesoscale and Nanoscale Physics +cond-mat/0003319 Strongly Correlated Electrons +cond-mat/0003320 Soft Condensed Matter +cond-mat/0003321 Superconductivity +cond-mat/0003322 Superconductivity +cond-mat/0003325 Mesoscale and Nanoscale Physics +cond-mat/0003326 +cond-mat/0003327 Soft Condensed Matter +cond-mat/0003328 +cond-mat/0003330 Superconductivity +cond-mat/0003331 +cond-mat/0003332 Mesoscale and Nanoscale Physics +cond-mat/0003335 Strongly Correlated Electrons +cond-mat/0003336 Disordered Systems and Neural Networks +cond-mat/0003337 Statistical Mechanics +cond-mat/0003338 Disordered Systems and Neural Networks +cond-mat/0003339 Disordered Systems and Neural Networks +cond-mat/0003340 +cond-mat/0003341 Statistical Mechanics +cond-mat/0003344 Superconductivity +cond-mat/0003345 Mesoscale and Nanoscale Physics +cond-mat/0003346 Disordered Systems and Neural Networks +cond-mat/0003347 Strongly Correlated Electrons +cond-mat/0003348 Statistical Mechanics +cond-mat/0003349 Strongly Correlated Electrons +cond-mat/0003350 Strongly Correlated Electrons +cond-mat/0003351 Disordered Systems and Neural Networks +cond-mat/0003353 Mesoscale and Nanoscale Physics +cond-mat/0003354 Statistical Mechanics +cond-mat/0003357 Statistical Mechanics +cond-mat/0003358 Mesoscale and Nanoscale Physics +cond-mat/0003362 +cond-mat/0003363 Statistical Mechanics +cond-mat/0003365 Statistical Mechanics +cond-mat/0003370 Superconductivity +cond-mat/0003371 Strongly Correlated Electrons +cond-mat/0003377 Strongly Correlated Electrons +cond-mat/0003378 Superconductivity +cond-mat/0003379 +cond-mat/0003380 Statistical Mechanics +cond-mat/0003381 Strongly Correlated Electrons +cond-mat/0003382 Mesoscale and Nanoscale Physics +cond-mat/0003383 Mesoscale and Nanoscale Physics +cond-mat/0003384 Statistical Mechanics +cond-mat/0003386 Statistical Mechanics +cond-mat/0003387 Soft Condensed Matter +cond-mat/0003389 Superconductivity +cond-mat/0003392 Strongly Correlated Electrons +cond-mat/0003393 Statistical Mechanics +cond-mat/0003394 +cond-mat/0003397 Statistical Mechanics +cond-mat/0003398 Mesoscale and Nanoscale Physics +cond-mat/0003399 Soft Condensed Matter +cond-mat/0003400 Mesoscale and Nanoscale Physics +cond-mat/0003402 +cond-mat/0003403 +cond-mat/0003404 Superconductivity +cond-mat/0003405 Mesoscale and Nanoscale Physics +cond-mat/0003408 Disordered Systems and Neural Networks +cond-mat/0003409 Materials Science +cond-mat/0003410 Mesoscale and Nanoscale Physics +cond-mat/0003411 +cond-mat/0003412 Disordered Systems and Neural Networks +cond-mat/0003413 Superconductivity +cond-mat/0003416 Statistical Mechanics +cond-mat/0003417 Superconductivity +cond-mat/0003418 Mesoscale and Nanoscale Physics +cond-mat/0003422 Strongly Correlated Electrons +cond-mat/0003423 Mesoscale and Nanoscale Physics +cond-mat/0003425 +cond-mat/0003426 Superconductivity +cond-mat/0003427 Strongly Correlated Electrons +cond-mat/0003428 +cond-mat/0003429 Strongly Correlated Electrons +cond-mat/0003430 Mesoscale and Nanoscale Physics +cond-mat/0003431 Soft Condensed Matter +cond-mat/0003433 Soft Condensed Matter +cond-mat/0003435 Strongly Correlated Electrons +cond-mat/0003436 Superconductivity +cond-mat/0003437 Strongly Correlated Electrons +cond-mat/0003438 Disordered Systems and Neural Networks +cond-mat/0003440 Mesoscale and Nanoscale Physics +cond-mat/0003441 Statistical Mechanics +cond-mat/0003443 Statistical Mechanics +cond-mat/0003444 Statistical Mechanics +cond-mat/0003448 +cond-mat/0003449 Strongly Correlated Electrons +cond-mat/0003450 Statistical Mechanics +cond-mat/0003452 Superconductivity +cond-mat/0003453 +cond-mat/0003454 +cond-mat/0003455 Statistical Mechanics +cond-mat/0003458 Mesoscale and Nanoscale Physics +cond-mat/0003459 Mesoscale and Nanoscale Physics +cond-mat/0003461 Statistical Mechanics +cond-mat/0003463 Strongly Correlated Electrons +cond-mat/0003464 Strongly Correlated Electrons +cond-mat/0003466 Superconductivity +cond-mat/0003467 Strongly Correlated Electrons +cond-mat/0003468 Statistical Mechanics +cond-mat/0003469 Statistical Mechanics +cond-mat/0003471 Statistical Mechanics +cond-mat/0003472 Strongly Correlated Electrons +cond-mat/0003474 Soft Condensed Matter +cond-mat/0003475 +cond-mat/0003476 Superconductivity +cond-mat/0003477 Superconductivity +cond-mat/0003478 Materials Science +cond-mat/0003480 Statistical Mechanics +cond-mat/0003481 +cond-mat/0003483 Mesoscale and Nanoscale Physics +cond-mat/0003484 Disordered Systems and Neural Networks +cond-mat/0003488 Strongly Correlated Electrons +cond-mat/0003489 Strongly Correlated Electrons +cond-mat/0003490 Soft Condensed Matter +cond-mat/0003491 Mesoscale and Nanoscale Physics +cond-mat/0003492 Strongly Correlated Electrons +cond-mat/0003494 +cond-mat/0003495 Statistical Mechanics +cond-mat/0003496 Soft Condensed Matter +cond-mat/0003500 Soft Condensed Matter +cond-mat/0003502 Mesoscale and Nanoscale Physics +cond-mat/0003503 Mesoscale and Nanoscale Physics +cond-mat/0003505 Mesoscale and Nanoscale Physics +cond-mat/0003506 Soft Condensed Matter +cond-mat/0003507 Superconductivity +cond-mat/0003509 Soft Condensed Matter +cond-mat/0003511 Soft Condensed Matter +cond-mat/0003515 Soft Condensed Matter +cond-mat/0003516 Statistical Mechanics +cond-mat/0003519 Statistical Mechanics +cond-mat/0004001 Statistical Mechanics +cond-mat/0004002 Soft Condensed Matter +cond-mat/0004003 Statistical Mechanics +cond-mat/0004008 Strongly Correlated Electrons +cond-mat/0004010 Statistical Mechanics +cond-mat/0004011 +cond-mat/0004012 +cond-mat/0004013 Disordered Systems and Neural Networks +cond-mat/0004015 Statistical Mechanics +cond-mat/0004019 Soft Condensed Matter +cond-mat/0004022 +cond-mat/0004023 Superconductivity +cond-mat/0004024 Statistical Mechanics +cond-mat/0004025 +cond-mat/0004026 Statistical Mechanics +cond-mat/0004027 Materials Science +cond-mat/0004028 Statistical Mechanics +cond-mat/0004031 Materials Science +cond-mat/0004032 Materials Science +cond-mat/0004033 Soft Condensed Matter +cond-mat/0004039 Soft Condensed Matter +cond-mat/0004041 Statistical Mechanics +cond-mat/0004042 Disordered Systems and Neural Networks +cond-mat/0004043 Strongly Correlated Electrons +cond-mat/0004044 Strongly Correlated Electrons +cond-mat/0004045 Statistical Mechanics +cond-mat/0004047 Disordered Systems and Neural Networks +cond-mat/0004050 Strongly Correlated Electrons +cond-mat/0004051 Materials Science +cond-mat/0004053 +cond-mat/0004054 Superconductivity +cond-mat/0004055 Superconductivity +cond-mat/0004056 Strongly Correlated Electrons +cond-mat/0004057 Strongly Correlated Electrons +cond-mat/0004058 Superconductivity +cond-mat/0004060 Materials Science +cond-mat/0004061 +cond-mat/0004062 Soft Condensed Matter +cond-mat/0004063 +cond-mat/0004064 Materials Science +cond-mat/0004066 Statistical Mechanics +cond-mat/0004068 Statistical Mechanics +cond-mat/0004070 Statistical Mechanics +cond-mat/0004071 Superconductivity +cond-mat/0004073 Soft Condensed Matter +cond-mat/0004075 Disordered Systems and Neural Networks +cond-mat/0004077 Strongly Correlated Electrons +cond-mat/0004080 Disordered Systems and Neural Networks +cond-mat/0004081 +cond-mat/0004082 Mesoscale and Nanoscale Physics +cond-mat/0004083 Strongly Correlated Electrons +cond-mat/0004085 Soft Condensed Matter +cond-mat/0004087 Strongly Correlated Electrons +cond-mat/0004090 Strongly Correlated Electrons +cond-mat/0004091 Materials Science +cond-mat/0004092 Disordered Systems and Neural Networks +cond-mat/0004093 Mesoscale and Nanoscale Physics +cond-mat/0004094 Superconductivity +cond-mat/0004095 Mesoscale and Nanoscale Physics +cond-mat/0004098 Soft Condensed Matter +cond-mat/0004100 +cond-mat/0004102 +cond-mat/0004103 Soft Condensed Matter +cond-mat/0004105 Superconductivity +cond-mat/0004106 Strongly Correlated Electrons +cond-mat/0004107 Mesoscale and Nanoscale Physics +cond-mat/0004109 Superconductivity +cond-mat/0004110 Mesoscale and Nanoscale Physics +cond-mat/0004111 Strongly Correlated Electrons +cond-mat/0004112 Materials Science +cond-mat/0004114 Mesoscale and Nanoscale Physics +cond-mat/0004115 Statistical Mechanics +cond-mat/0004116 Materials Science +cond-mat/0004117 Soft Condensed Matter +cond-mat/0004118 Soft Condensed Matter +cond-mat/0004119 Superconductivity +cond-mat/0004120 Superconductivity +cond-mat/0004123 Soft Condensed Matter +cond-mat/0004125 Disordered Systems and Neural Networks +cond-mat/0004129 Statistical Mechanics +cond-mat/0004130 Strongly Correlated Electrons +cond-mat/0004131 Disordered Systems and Neural Networks +cond-mat/0004133 Superconductivity +cond-mat/0004134 Superconductivity +cond-mat/0004135 Superconductivity +cond-mat/0004136 Superconductivity +cond-mat/0004137 Statistical Mechanics +cond-mat/0004139 Mesoscale and Nanoscale Physics +cond-mat/0004140 Mesoscale and Nanoscale Physics +cond-mat/0004141 Soft Condensed Matter +cond-mat/0004143 Soft Condensed Matter +cond-mat/0004144 Superconductivity +cond-mat/0004146 Strongly Correlated Electrons +cond-mat/0004147 Statistical Mechanics +cond-mat/0004148 Statistical Mechanics +cond-mat/0004149 Disordered Systems and Neural Networks +cond-mat/0004150 Statistical Mechanics +cond-mat/0004151 Strongly Correlated Electrons +cond-mat/0004152 Superconductivity +cond-mat/0004153 Soft Condensed Matter +cond-mat/0004157 Statistical Mechanics +cond-mat/0004159 Statistical Mechanics +cond-mat/0004160 Materials Science +cond-mat/0004161 Statistical Mechanics +cond-mat/0004162 Strongly Correlated Electrons +cond-mat/0004163 Statistical Mechanics +cond-mat/0004164 Mesoscale and Nanoscale Physics +cond-mat/0004165 Mesoscale and Nanoscale Physics +cond-mat/0004166 Materials Science +cond-mat/0004167 Soft Condensed Matter +cond-mat/0004169 Soft Condensed Matter +cond-mat/0004170 +cond-mat/0004171 Superconductivity +cond-mat/0004173 Disordered Systems and Neural Networks +cond-mat/0004174 Mesoscale and Nanoscale Physics +cond-mat/0004175 Superconductivity +cond-mat/0004176 Statistical Mechanics +cond-mat/0004180 Strongly Correlated Electrons +cond-mat/0004181 Statistical Mechanics +cond-mat/0004183 Disordered Systems and Neural Networks +cond-mat/0004185 Superconductivity +cond-mat/0004186 Strongly Correlated Electrons +cond-mat/0004188 Statistical Mechanics +cond-mat/0004189 Mesoscale and Nanoscale Physics +cond-mat/0004190 +cond-mat/0004192 +cond-mat/0004193 Soft Condensed Matter +cond-mat/0004196 Statistical Mechanics +cond-mat/0004198 Materials Science +cond-mat/0004200 Strongly Correlated Electrons +cond-mat/0004201 Strongly Correlated Electrons +cond-mat/0004202 Disordered Systems and Neural Networks +cond-mat/0004203 Superconductivity +cond-mat/0004204 Materials Science +cond-mat/0004206 Strongly Correlated Electrons +cond-mat/0004207 Statistical Mechanics +cond-mat/0004208 Statistical Mechanics +cond-mat/0004209 +cond-mat/0004210 Mesoscale and Nanoscale Physics +cond-mat/0004212 Superconductivity +cond-mat/0004213 Strongly Correlated Electrons +cond-mat/0004214 Statistical Mechanics +cond-mat/0004215 Mesoscale and Nanoscale Physics +cond-mat/0004216 Disordered Systems and Neural Networks +cond-mat/0004219 Soft Condensed Matter +cond-mat/0004220 Superconductivity +cond-mat/0004222 Statistical Mechanics +cond-mat/0004224 Soft Condensed Matter +cond-mat/0004225 Statistical Mechanics +cond-mat/0004226 Statistical Mechanics +cond-mat/0004227 Superconductivity +cond-mat/0004230 Materials Science +cond-mat/0004232 Strongly Correlated Electrons +cond-mat/0004233 Materials Science +cond-mat/0004234 Mesoscale and Nanoscale Physics +cond-mat/0004235 Strongly Correlated Electrons +cond-mat/0004236 Statistical Mechanics +cond-mat/0004237 Strongly Correlated Electrons +cond-mat/0004240 Materials Science +cond-mat/0004241 Statistical Mechanics +cond-mat/0004242 Statistical Mechanics +cond-mat/0004243 Strongly Correlated Electrons +cond-mat/0004244 Mesoscale and Nanoscale Physics +cond-mat/0004245 Soft Condensed Matter +cond-mat/0004247 +cond-mat/0004248 Strongly Correlated Electrons +cond-mat/0004249 Strongly Correlated Electrons +cond-mat/0004250 Statistical Mechanics +cond-mat/0004252 Materials Science +cond-mat/0004253 Strongly Correlated Electrons +cond-mat/0004254 Strongly Correlated Electrons +cond-mat/0004256 Statistical Mechanics +cond-mat/0004257 +cond-mat/0004259 Mesoscale and Nanoscale Physics +cond-mat/0004261 Disordered Systems and Neural Networks +cond-mat/0004262 Statistical Mechanics +cond-mat/0004263 Statistical Mechanics +cond-mat/0004265 Strongly Correlated Electrons +cond-mat/0004270 +cond-mat/0004271 Disordered Systems and Neural Networks +cond-mat/0004272 Strongly Correlated Electrons +cond-mat/0004276 Statistical Mechanics +cond-mat/0004277 Statistical Mechanics +cond-mat/0004278 Disordered Systems and Neural Networks +cond-mat/0004280 Strongly Correlated Electrons +cond-mat/0004283 Mesoscale and Nanoscale Physics +cond-mat/0004285 Disordered Systems and Neural Networks +cond-mat/0004287 +cond-mat/0004290 +cond-mat/0004292 Materials Science +cond-mat/0004294 Statistical Mechanics +cond-mat/0004295 Strongly Correlated Electrons +cond-mat/0004296 Mesoscale and Nanoscale Physics +cond-mat/0004297 Statistical Mechanics +cond-mat/0004298 Strongly Correlated Electrons +cond-mat/0004300 Materials Science +cond-mat/0004301 Soft Condensed Matter +cond-mat/0004302 Strongly Correlated Electrons +cond-mat/0004303 Materials Science +cond-mat/0004304 Superconductivity +cond-mat/0004305 Strongly Correlated Electrons +cond-mat/0004306 Disordered Systems and Neural Networks +cond-mat/0004307 +cond-mat/0004309 +cond-mat/0004310 Mesoscale and Nanoscale Physics +cond-mat/0004311 Strongly Correlated Electrons +cond-mat/0004312 Strongly Correlated Electrons +cond-mat/0004314 Statistical Mechanics +cond-mat/0004315 Strongly Correlated Electrons +cond-mat/0004317 +cond-mat/0004319 Mesoscale and Nanoscale Physics +cond-mat/0004322 Superconductivity +cond-mat/0004323 Superconductivity +cond-mat/0004325 +cond-mat/0004327 Mesoscale and Nanoscale Physics +cond-mat/0004328 Strongly Correlated Electrons +cond-mat/0004333 Disordered Systems and Neural Networks +cond-mat/0004336 Strongly Correlated Electrons +cond-mat/0004337 Superconductivity +cond-mat/0004338 Materials Science +cond-mat/0004340 Mesoscale and Nanoscale Physics +cond-mat/0004342 Mesoscale and Nanoscale Physics +cond-mat/0004344 Soft Condensed Matter +cond-mat/0004345 Soft Condensed Matter +cond-mat/0004347 Soft Condensed Matter +cond-mat/0004348 Statistical Mechanics +cond-mat/0004349 +cond-mat/0004351 Statistical Mechanics +cond-mat/0004352 Materials Science +cond-mat/0004353 Materials Science +cond-mat/0004354 Mesoscale and Nanoscale Physics +cond-mat/0004355 Mesoscale and Nanoscale Physics +cond-mat/0004358 Soft Condensed Matter +cond-mat/0004360 +cond-mat/0004361 +cond-mat/0004363 Strongly Correlated Electrons +cond-mat/0004364 Mesoscale and Nanoscale Physics +cond-mat/0004365 Soft Condensed Matter +cond-mat/0004366 Soft Condensed Matter +cond-mat/0004367 Strongly Correlated Electrons +cond-mat/0004368 Materials Science +cond-mat/0004369 Statistical Mechanics +cond-mat/0004370 Superconductivity +cond-mat/0004371 Materials Science +cond-mat/0004374 Statistical Mechanics +cond-mat/0004375 Soft Condensed Matter +cond-mat/0004377 Strongly Correlated Electrons +cond-mat/0004378 Superconductivity +cond-mat/0004380 Soft Condensed Matter +cond-mat/0004381 Strongly Correlated Electrons +cond-mat/0004382 Materials Science +cond-mat/0004383 Mesoscale and Nanoscale Physics +cond-mat/0004384 Soft Condensed Matter +cond-mat/0004386 Superconductivity +cond-mat/0004387 +cond-mat/0004390 Statistical Mechanics +cond-mat/0004391 +cond-mat/0004392 Statistical Mechanics +cond-mat/0004393 Superconductivity +cond-mat/0004394 Mesoscale and Nanoscale Physics +cond-mat/0004395 Mesoscale and Nanoscale Physics +cond-mat/0004396 Mesoscale and Nanoscale Physics +cond-mat/0004399 +cond-mat/0004400 Statistical Mechanics +cond-mat/0004401 Statistical Mechanics +cond-mat/0004402 Disordered Systems and Neural Networks +cond-mat/0004403 Strongly Correlated Electrons +cond-mat/0004404 +cond-mat/0004405 Strongly Correlated Electrons +cond-mat/0004407 Statistical Mechanics +cond-mat/0004408 +cond-mat/0004409 +cond-mat/0004410 Statistical Mechanics +cond-mat/0004411 Strongly Correlated Electrons +cond-mat/0004415 Strongly Correlated Electrons +cond-mat/0004416 Superconductivity +cond-mat/0004417 Superconductivity +cond-mat/0004418 Soft Condensed Matter +cond-mat/0004419 Disordered Systems and Neural Networks +cond-mat/0004420 Superconductivity +cond-mat/0004422 Disordered Systems and Neural Networks +cond-mat/0004423 Soft Condensed Matter +cond-mat/0004424 Superconductivity +cond-mat/0004425 Disordered Systems and Neural Networks +cond-mat/0004426 Strongly Correlated Electrons +cond-mat/0004428 Mesoscale and Nanoscale Physics +cond-mat/0004430 +cond-mat/0004431 +cond-mat/0004432 +cond-mat/0004433 Strongly Correlated Electrons +cond-mat/0004434 +cond-mat/0004435 Strongly Correlated Electrons +cond-mat/0004436 Strongly Correlated Electrons +cond-mat/0004438 Statistical Mechanics +cond-mat/0004439 Materials Science +cond-mat/0004440 Materials Science +cond-mat/0004441 Strongly Correlated Electrons +cond-mat/0004442 Statistical Mechanics +cond-mat/0004443 Soft Condensed Matter +cond-mat/0004444 Strongly Correlated Electrons +cond-mat/0004445 Statistical Mechanics +cond-mat/0004447 Statistical Mechanics +cond-mat/0004448 Statistical Mechanics +cond-mat/0004451 Strongly Correlated Electrons +cond-mat/0004452 Strongly Correlated Electrons +cond-mat/0004453 Superconductivity +cond-mat/0004454 Strongly Correlated Electrons +cond-mat/0004455 Strongly Correlated Electrons +cond-mat/0004456 +cond-mat/0004458 Strongly Correlated Electrons +cond-mat/0004459 Mesoscale and Nanoscale Physics +cond-mat/0004460 Strongly Correlated Electrons +cond-mat/0004461 Materials Science +cond-mat/0004462 Materials Science +cond-mat/0004463 Materials Science +cond-mat/0004464 Materials Science +cond-mat/0004465 Strongly Correlated Electrons +cond-mat/0004466 Statistical Mechanics +cond-mat/0004468 Soft Condensed Matter +cond-mat/0004471 Superconductivity +cond-mat/0004474 Soft Condensed Matter +cond-mat/0004475 Strongly Correlated Electrons +cond-mat/0004477 +cond-mat/0004478 +cond-mat/0004479 Mesoscale and Nanoscale Physics +cond-mat/0004480 Strongly Correlated Electrons +cond-mat/0004482 Superconductivity +cond-mat/0004483 Statistical Mechanics +cond-mat/0004484 Statistical Mechanics +cond-mat/0004485 Disordered Systems and Neural Networks +cond-mat/0004487 Statistical Mechanics +cond-mat/0004488 Statistical Mechanics +cond-mat/0004489 Mesoscale and Nanoscale Physics +cond-mat/0004490 Statistical Mechanics +cond-mat/0004492 Disordered Systems and Neural Networks +cond-mat/0004494 Materials Science +cond-mat/0004495 Statistical Mechanics +cond-mat/0004496 Superconductivity +cond-mat/0005003 Soft Condensed Matter +cond-mat/0005004 Statistical Mechanics +cond-mat/0005006 Statistical Mechanics +cond-mat/0005007 Statistical Mechanics +cond-mat/0005009 +cond-mat/0005010 Superconductivity +cond-mat/0005011 Strongly Correlated Electrons +cond-mat/0005012 Superconductivity +cond-mat/0005013 Materials Science +cond-mat/0005014 Mesoscale and Nanoscale Physics +cond-mat/0005017 Materials Science +cond-mat/0005020 Statistical Mechanics +cond-mat/0005021 Soft Condensed Matter +cond-mat/0005023 Statistical Mechanics +cond-mat/0005025 +cond-mat/0005026 Statistical Mechanics +cond-mat/0005028 Materials Science +cond-mat/0005029 Statistical Mechanics +cond-mat/0005030 Statistical Mechanics +cond-mat/0005031 +cond-mat/0005035 Soft Condensed Matter +cond-mat/0005036 Mesoscale and Nanoscale Physics +cond-mat/0005039 +cond-mat/0005040 +cond-mat/0005041 Soft Condensed Matter +cond-mat/0005043 +cond-mat/0005046 +cond-mat/0005047 Disordered Systems and Neural Networks +cond-mat/0005050 +cond-mat/0005051 Soft Condensed Matter +cond-mat/0005054 +cond-mat/0005059 Statistical Mechanics +cond-mat/0005060 Statistical Mechanics +cond-mat/0005061 Statistical Mechanics +cond-mat/0005062 +cond-mat/0005063 +cond-mat/0005064 Mesoscale and Nanoscale Physics +cond-mat/0005065 Mesoscale and Nanoscale Physics +cond-mat/0005066 Mesoscale and Nanoscale Physics +cond-mat/0005067 Statistical Mechanics +cond-mat/0005068 Statistical Mechanics +cond-mat/0005070 +cond-mat/0005071 Materials Science +cond-mat/0005072 Statistical Mechanics +cond-mat/0005073 +cond-mat/0005075 Mesoscale and Nanoscale Physics +cond-mat/0005076 +cond-mat/0005077 Mesoscale and Nanoscale Physics +cond-mat/0005078 Mesoscale and Nanoscale Physics +cond-mat/0005080 Soft Condensed Matter +cond-mat/0005081 Mesoscale and Nanoscale Physics +cond-mat/0005085 Disordered Systems and Neural Networks +cond-mat/0005087 Statistical Mechanics +cond-mat/0005089 Statistical Mechanics +cond-mat/0005090 Superconductivity +cond-mat/0005091 +cond-mat/0005092 Soft Condensed Matter +cond-mat/0005093 Mesoscale and Nanoscale Physics +cond-mat/0005094 Statistical Mechanics +cond-mat/0005095 Disordered Systems and Neural Networks +cond-mat/0005096 Strongly Correlated Electrons +cond-mat/0005097 Strongly Correlated Electrons +cond-mat/0005098 Statistical Mechanics +cond-mat/0005099 Statistical Mechanics +cond-mat/0005100 +cond-mat/0005102 Statistical Mechanics +cond-mat/0005105 Statistical Mechanics +cond-mat/0005106 Strongly Correlated Electrons +cond-mat/0005107 Soft Condensed Matter +cond-mat/0005108 Strongly Correlated Electrons +cond-mat/0005109 Disordered Systems and Neural Networks +cond-mat/0005110 Statistical Mechanics +cond-mat/0005113 Materials Science +cond-mat/0005114 Strongly Correlated Electrons +cond-mat/0005115 Disordered Systems and Neural Networks +cond-mat/0005116 Superconductivity +cond-mat/0005117 Soft Condensed Matter +cond-mat/0005118 +cond-mat/0005119 +cond-mat/0005122 Mesoscale and Nanoscale Physics +cond-mat/0005126 Soft Condensed Matter +cond-mat/0005129 Strongly Correlated Electrons +cond-mat/0005131 Statistical Mechanics +cond-mat/0005134 Statistical Mechanics +cond-mat/0005135 Mesoscale and Nanoscale Physics +cond-mat/0005136 +cond-mat/0005137 Strongly Correlated Electrons +cond-mat/0005138 Strongly Correlated Electrons +cond-mat/0005139 Statistical Mechanics +cond-mat/0005142 Superconductivity +cond-mat/0005143 Mesoscale and Nanoscale Physics +cond-mat/0005144 Disordered Systems and Neural Networks +cond-mat/0005145 Superconductivity +cond-mat/0005146 Strongly Correlated Electrons +cond-mat/0005147 Strongly Correlated Electrons +cond-mat/0005152 +cond-mat/0005153 Materials Science +cond-mat/0005154 Strongly Correlated Electrons +cond-mat/0005155 Statistical Mechanics +cond-mat/0005157 Mesoscale and Nanoscale Physics +cond-mat/0005158 Strongly Correlated Electrons +cond-mat/0005159 +cond-mat/0005161 +cond-mat/0005162 +cond-mat/0005163 Superconductivity +cond-mat/0005164 Strongly Correlated Electrons +cond-mat/0005166 Strongly Correlated Electrons +cond-mat/0005167 Statistical Mechanics +cond-mat/0005169 Disordered Systems and Neural Networks +cond-mat/0005171 Mesoscale and Nanoscale Physics +cond-mat/0005172 Disordered Systems and Neural Networks +cond-mat/0005174 Strongly Correlated Electrons +cond-mat/0005176 Statistical Mechanics +cond-mat/0005177 Statistical Mechanics +cond-mat/0005179 Statistical Mechanics +cond-mat/0005180 Statistical Mechanics +cond-mat/0005181 Strongly Correlated Electrons +cond-mat/0005183 Disordered Systems and Neural Networks +cond-mat/0005185 Statistical Mechanics +cond-mat/0005188 Superconductivity +cond-mat/0005189 Mesoscale and Nanoscale Physics +cond-mat/0005190 Superconductivity +cond-mat/0005193 Strongly Correlated Electrons +cond-mat/0005196 +cond-mat/0005199 Superconductivity +cond-mat/0005200 Soft Condensed Matter +cond-mat/0005201 Materials Science +cond-mat/0005207 Strongly Correlated Electrons +cond-mat/0005208 Disordered Systems and Neural Networks +cond-mat/0005210 Statistical Mechanics +cond-mat/0005211 Strongly Correlated Electrons +cond-mat/0005212 Materials Science +cond-mat/0005213 Soft Condensed Matter +cond-mat/0005214 Soft Condensed Matter +cond-mat/0005216 Disordered Systems and Neural Networks +cond-mat/0005217 Superconductivity +cond-mat/0005218 Strongly Correlated Electrons +cond-mat/0005219 Materials Science +cond-mat/0005223 Mesoscale and Nanoscale Physics +cond-mat/0005224 Soft Condensed Matter +cond-mat/0005225 Statistical Mechanics +cond-mat/0005228 Strongly Correlated Electrons +cond-mat/0005230 +cond-mat/0005231 Soft Condensed Matter +cond-mat/0005232 Statistical Mechanics +cond-mat/0005234 Mesoscale and Nanoscale Physics +cond-mat/0005236 Statistical Mechanics +cond-mat/0005238 Strongly Correlated Electrons +cond-mat/0005239 Soft Condensed Matter +cond-mat/0005240 Mesoscale and Nanoscale Physics +cond-mat/0005241 Mesoscale and Nanoscale Physics +cond-mat/0005243 Statistical Mechanics +cond-mat/0005245 Materials Science +cond-mat/0005246 +cond-mat/0005247 Materials Science +cond-mat/0005248 Statistical Mechanics +cond-mat/0005251 Mesoscale and Nanoscale Physics +cond-mat/0005254 Mesoscale and Nanoscale Physics +cond-mat/0005259 Soft Condensed Matter +cond-mat/0005260 Soft Condensed Matter +cond-mat/0005261 Statistical Mechanics +cond-mat/0005262 Mesoscale and Nanoscale Physics +cond-mat/0005263 Superconductivity +cond-mat/0005264 Statistical Mechanics +cond-mat/0005265 Statistical Mechanics +cond-mat/0005266 Superconductivity +cond-mat/0005267 Disordered Systems and Neural Networks +cond-mat/0005269 Strongly Correlated Electrons +cond-mat/0005270 Strongly Correlated Electrons +cond-mat/0005272 Superconductivity +cond-mat/0005275 Superconductivity +cond-mat/0005277 +cond-mat/0005278 Mesoscale and Nanoscale Physics +cond-mat/0005279 Mesoscale and Nanoscale Physics +cond-mat/0005280 Soft Condensed Matter +cond-mat/0005281 Strongly Correlated Electrons +cond-mat/0005282 Statistical Mechanics +cond-mat/0005284 Statistical Mechanics +cond-mat/0005287 Statistical Mechanics +cond-mat/0005289 Soft Condensed Matter +cond-mat/0005291 Mesoscale and Nanoscale Physics +cond-mat/0005292 Materials Science +cond-mat/0005293 Mesoscale and Nanoscale Physics +cond-mat/0005294 Statistical Mechanics +cond-mat/0005295 Superconductivity +cond-mat/0005297 Statistical Mechanics +cond-mat/0005299 Mesoscale and Nanoscale Physics +cond-mat/0005300 +cond-mat/0005302 +cond-mat/0005303 Soft Condensed Matter +cond-mat/0005304 Soft Condensed Matter +cond-mat/0005310 Materials Science +cond-mat/0005312 Superconductivity +cond-mat/0005314 Materials Science +cond-mat/0005315 Superconductivity +cond-mat/0005316 Statistical Mechanics +cond-mat/0005317 Soft Condensed Matter +cond-mat/0005320 Disordered Systems and Neural Networks +cond-mat/0005322 Strongly Correlated Electrons +cond-mat/0005325 Materials Science +cond-mat/0005328 Mesoscale and Nanoscale Physics +cond-mat/0005329 Superconductivity +cond-mat/0005330 Strongly Correlated Electrons +cond-mat/0005332 Statistical Mechanics +cond-mat/0005333 Statistical Mechanics +cond-mat/0005335 Statistical Mechanics +cond-mat/0005337 Statistical Mechanics +cond-mat/0005339 Mesoscale and Nanoscale Physics +cond-mat/0005340 Statistical Mechanics +cond-mat/0005341 Materials Science +cond-mat/0005342 Strongly Correlated Electrons +cond-mat/0005343 Materials Science +cond-mat/0005344 Strongly Correlated Electrons +cond-mat/0005345 +cond-mat/0005347 Mesoscale and Nanoscale Physics +cond-mat/0005348 Statistical Mechanics +cond-mat/0005349 Strongly Correlated Electrons +cond-mat/0005350 Superconductivity +cond-mat/0005351 Statistical Mechanics +cond-mat/0005352 Statistical Mechanics +cond-mat/0005353 Statistical Mechanics +cond-mat/0005355 Statistical Mechanics +cond-mat/0005356 Statistical Mechanics +cond-mat/0005357 Soft Condensed Matter +cond-mat/0005360 Statistical Mechanics +cond-mat/0005361 Strongly Correlated Electrons +cond-mat/0005362 +cond-mat/0005364 +cond-mat/0005365 Statistical Mechanics +cond-mat/0005366 Statistical Mechanics +cond-mat/0005367 Statistical Mechanics +cond-mat/0005368 Soft Condensed Matter +cond-mat/0005369 Superconductivity +cond-mat/0005370 Superconductivity +cond-mat/0005372 Statistical Mechanics +cond-mat/0005373 Statistical Mechanics +cond-mat/0005374 Mesoscale and Nanoscale Physics +cond-mat/0005375 Statistical Mechanics +cond-mat/0005376 Materials Science +cond-mat/0005378 Superconductivity +cond-mat/0005379 Statistical Mechanics +cond-mat/0005382 Statistical Mechanics +cond-mat/0005383 Statistical Mechanics +cond-mat/0005384 +cond-mat/0005385 Strongly Correlated Electrons +cond-mat/0005388 Soft Condensed Matter +cond-mat/0005389 Disordered Systems and Neural Networks +cond-mat/0005390 Superconductivity +cond-mat/0005392 Mesoscale and Nanoscale Physics +cond-mat/0005393 Superconductivity +cond-mat/0005394 Strongly Correlated Electrons +cond-mat/0005396 +cond-mat/0005397 Strongly Correlated Electrons +cond-mat/0005398 Strongly Correlated Electrons +cond-mat/0005399 Strongly Correlated Electrons +cond-mat/0005400 +cond-mat/0005401 Strongly Correlated Electrons +cond-mat/0005402 Disordered Systems and Neural Networks +cond-mat/0005403 +cond-mat/0005405 +cond-mat/0005406 Strongly Correlated Electrons +cond-mat/0005411 Materials Science +cond-mat/0005413 Statistical Mechanics +cond-mat/0005415 Materials Science +cond-mat/0005417 Soft Condensed Matter +cond-mat/0005418 Superconductivity +cond-mat/0005419 Superconductivity +cond-mat/0005422 Statistical Mechanics +cond-mat/0005423 Disordered Systems and Neural Networks +cond-mat/0005425 Materials Science +cond-mat/0005426 Statistical Mechanics +cond-mat/0005428 +cond-mat/0005429 Soft Condensed Matter +cond-mat/0005433 Soft Condensed Matter +cond-mat/0005434 Superconductivity +cond-mat/0005435 Mesoscale and Nanoscale Physics +cond-mat/0005436 Mesoscale and Nanoscale Physics +cond-mat/0005437 Superconductivity +cond-mat/0005439 Strongly Correlated Electrons +cond-mat/0005440 Superconductivity +cond-mat/0005441 Statistical Mechanics +cond-mat/0005442 Statistical Mechanics +cond-mat/0005443 Superconductivity +cond-mat/0005444 Statistical Mechanics +cond-mat/0005445 Soft Condensed Matter +cond-mat/0005447 Statistical Mechanics +cond-mat/0005449 Superconductivity +cond-mat/0005450 Soft Condensed Matter +cond-mat/0005451 Mesoscale and Nanoscale Physics +cond-mat/0005455 Soft Condensed Matter +cond-mat/0005457 Superconductivity +cond-mat/0005458 Disordered Systems and Neural Networks +cond-mat/0005459 Superconductivity +cond-mat/0005460 Superconductivity +cond-mat/0005461 Materials Science +cond-mat/0005462 Strongly Correlated Electrons +cond-mat/0005464 Statistical Mechanics +cond-mat/0005465 Superconductivity +cond-mat/0005466 Strongly Correlated Electrons +cond-mat/0005468 Statistical Mechanics +cond-mat/0005472 Statistical Mechanics +cond-mat/0005473 Strongly Correlated Electrons +cond-mat/0005478 Strongly Correlated Electrons +cond-mat/0005480 +cond-mat/0005482 Strongly Correlated Electrons +cond-mat/0005484 Superconductivity +cond-mat/0005486 Disordered Systems and Neural Networks +cond-mat/0005487 Superconductivity +cond-mat/0005488 Mesoscale and Nanoscale Physics +cond-mat/0005489 Statistical Mechanics +cond-mat/0005490 Soft Condensed Matter +cond-mat/0005491 Mesoscale and Nanoscale Physics +cond-mat/0005494 Statistical Mechanics +cond-mat/0005495 +cond-mat/0005497 Strongly Correlated Electrons +cond-mat/0005500 Statistical Mechanics +cond-mat/0005503 Superconductivity +cond-mat/0005504 Disordered Systems and Neural Networks +cond-mat/0005506 Strongly Correlated Electrons +cond-mat/0005507 Materials Science +cond-mat/0005508 +cond-mat/0005509 +cond-mat/0005510 Superconductivity +cond-mat/0005513 +cond-mat/0005514 Soft Condensed Matter +cond-mat/0005515 Superconductivity +cond-mat/0005517 +cond-mat/0005518 +cond-mat/0005519 Materials Science +cond-mat/0005520 Mesoscale and Nanoscale Physics +cond-mat/0005521 +cond-mat/0005522 Mesoscale and Nanoscale Physics +cond-mat/0005523 Mesoscale and Nanoscale Physics +cond-mat/0005524 Strongly Correlated Electrons +cond-mat/0005525 Mesoscale and Nanoscale Physics +cond-mat/0005526 Strongly Correlated Electrons +cond-mat/0005528 Statistical Mechanics +cond-mat/0005530 Mesoscale and Nanoscale Physics +cond-mat/0005533 Soft Condensed Matter +cond-mat/0005534 Strongly Correlated Electrons +cond-mat/0005535 Superconductivity +cond-mat/0005536 Strongly Correlated Electrons +cond-mat/0005538 Statistical Mechanics +cond-mat/0005539 Statistical Mechanics +cond-mat/0005541 Disordered Systems and Neural Networks +cond-mat/0005542 Superconductivity +cond-mat/0005543 Disordered Systems and Neural Networks +cond-mat/0005544 Statistical Mechanics +cond-mat/0005545 Strongly Correlated Electrons +cond-mat/0006004 Statistical Mechanics +cond-mat/0006005 Soft Condensed Matter +cond-mat/0006008 Mesoscale and Nanoscale Physics +cond-mat/0006009 Mesoscale and Nanoscale Physics +cond-mat/0006012 Statistical Mechanics +cond-mat/0006013 Strongly Correlated Electrons +cond-mat/0006014 Statistical Mechanics +cond-mat/0006015 Statistical Mechanics +cond-mat/0006017 +cond-mat/0006018 +cond-mat/0006020 Strongly Correlated Electrons +cond-mat/0006021 Strongly Correlated Electrons +cond-mat/0006022 Strongly Correlated Electrons +cond-mat/0006023 Superconductivity +cond-mat/0006024 Statistical Mechanics +cond-mat/0006025 Strongly Correlated Electrons +cond-mat/0006029 Disordered Systems and Neural Networks +cond-mat/0006031 Mesoscale and Nanoscale Physics +cond-mat/0006032 Strongly Correlated Electrons +cond-mat/0006036 Strongly Correlated Electrons +cond-mat/0006037 Mesoscale and Nanoscale Physics +cond-mat/0006039 Superconductivity +cond-mat/0006040 Statistical Mechanics +cond-mat/0006041 Mesoscale and Nanoscale Physics +cond-mat/0006042 Materials Science +cond-mat/0006043 Statistical Mechanics +cond-mat/0006044 Superconductivity +cond-mat/0006045 Statistical Mechanics +cond-mat/0006046 Superconductivity +cond-mat/0006047 Superconductivity +cond-mat/0006051 +cond-mat/0006052 +cond-mat/0006053 Statistical Mechanics +cond-mat/0006056 +cond-mat/0006057 +cond-mat/0006058 Strongly Correlated Electrons +cond-mat/0006059 Disordered Systems and Neural Networks +cond-mat/0006060 Superconductivity +cond-mat/0006061 Statistical Mechanics +cond-mat/0006064 Statistical Mechanics +cond-mat/0006065 Statistical Mechanics +cond-mat/0006066 Soft Condensed Matter +cond-mat/0006068 Strongly Correlated Electrons +cond-mat/0006069 Soft Condensed Matter +cond-mat/0006070 Superconductivity +cond-mat/0006072 Materials Science +cond-mat/0006073 Strongly Correlated Electrons +cond-mat/0006074 Materials Science +cond-mat/0006075 Mesoscale and Nanoscale Physics +cond-mat/0006076 Materials Science +cond-mat/0006077 Superconductivity +cond-mat/0006082 Soft Condensed Matter +cond-mat/0006084 Strongly Correlated Electrons +cond-mat/0006086 Superconductivity +cond-mat/0006087 Statistical Mechanics +cond-mat/0006088 +cond-mat/0006089 Superconductivity +cond-mat/0006091 Disordered Systems and Neural Networks +cond-mat/0006093 Materials Science +cond-mat/0006094 Superconductivity +cond-mat/0006095 Superconductivity +cond-mat/0006097 Superconductivity +cond-mat/0006098 Statistical Mechanics +cond-mat/0006099 +cond-mat/0006106 Statistical Mechanics +cond-mat/0006108 Soft Condensed Matter +cond-mat/0006109 Statistical Mechanics +cond-mat/0006110 +cond-mat/0006111 Soft Condensed Matter +cond-mat/0006113 Soft Condensed Matter +cond-mat/0006115 Strongly Correlated Electrons +cond-mat/0006116 Materials Science +cond-mat/0006117 Statistical Mechanics +cond-mat/0006121 Materials Science +cond-mat/0006122 +cond-mat/0006123 Statistical Mechanics +cond-mat/0006125 +cond-mat/0006126 Soft Condensed Matter +cond-mat/0006130 +cond-mat/0006131 Soft Condensed Matter +cond-mat/0006134 Materials Science +cond-mat/0006138 Superconductivity +cond-mat/0006139 Statistical Mechanics +cond-mat/0006140 Statistical Mechanics +cond-mat/0006142 Strongly Correlated Electrons +cond-mat/0006143 Superconductivity +cond-mat/0006144 +cond-mat/0006145 Statistical Mechanics +cond-mat/0006146 Statistical Mechanics +cond-mat/0006147 Strongly Correlated Electrons +cond-mat/0006148 +cond-mat/0006149 Mesoscale and Nanoscale Physics +cond-mat/0006151 Superconductivity +cond-mat/0006152 Materials Science +cond-mat/0006153 Mesoscale and Nanoscale Physics +cond-mat/0006154 Strongly Correlated Electrons +cond-mat/0006155 Statistical Mechanics +cond-mat/0006157 Soft Condensed Matter +cond-mat/0006158 Statistical Mechanics +cond-mat/0006161 Disordered Systems and Neural Networks +cond-mat/0006162 Soft Condensed Matter +cond-mat/0006163 Statistical Mechanics +cond-mat/0006165 Soft Condensed Matter +cond-mat/0006168 Strongly Correlated Electrons +cond-mat/0006169 Strongly Correlated Electrons +cond-mat/0006171 Strongly Correlated Electrons +cond-mat/0006174 Mesoscale and Nanoscale Physics +cond-mat/0006175 Disordered Systems and Neural Networks +cond-mat/0006177 Materials Science +cond-mat/0006179 Disordered Systems and Neural Networks +cond-mat/0006182 Superconductivity +cond-mat/0006183 Materials Science +cond-mat/0006184 +cond-mat/0006185 Strongly Correlated Electrons +cond-mat/0006187 Superconductivity +cond-mat/0006189 Soft Condensed Matter +cond-mat/0006190 Materials Science +cond-mat/0006191 Materials Science +cond-mat/0006194 Strongly Correlated Electrons +cond-mat/0006199 Soft Condensed Matter +cond-mat/0006200 Strongly Correlated Electrons +cond-mat/0006202 Statistical Mechanics +cond-mat/0006205 +cond-mat/0006207 Strongly Correlated Electrons +cond-mat/0006208 Strongly Correlated Electrons +cond-mat/0006210 Materials Science +cond-mat/0006211 Disordered Systems and Neural Networks +cond-mat/0006213 Materials Science +cond-mat/0006216 Strongly Correlated Electrons +cond-mat/0006217 Statistical Mechanics +cond-mat/0006218 Superconductivity +cond-mat/0006219 Superconductivity +cond-mat/0006220 Strongly Correlated Electrons +cond-mat/0006221 Statistical Mechanics +cond-mat/0006222 Superconductivity +cond-mat/0006223 Statistical Mechanics +cond-mat/0006224 Strongly Correlated Electrons +cond-mat/0006225 Statistical Mechanics +cond-mat/0006227 Mesoscale and Nanoscale Physics +cond-mat/0006228 Statistical Mechanics +cond-mat/0006230 Materials Science +cond-mat/0006232 Soft Condensed Matter +cond-mat/0006235 +cond-mat/0006236 Statistical Mechanics +cond-mat/0006237 Mesoscale and Nanoscale Physics +cond-mat/0006238 Statistical Mechanics +cond-mat/0006239 Materials Science +cond-mat/0006241 +cond-mat/0006242 Materials Science +cond-mat/0006243 Soft Condensed Matter +cond-mat/0006244 Statistical Mechanics +cond-mat/0006246 Statistical Mechanics +cond-mat/0006247 Materials Science +cond-mat/0006248 Materials Science +cond-mat/0006249 Statistical Mechanics +cond-mat/0006254 Statistical Mechanics +cond-mat/0006255 Strongly Correlated Electrons +cond-mat/0006256 Mesoscale and Nanoscale Physics +cond-mat/0006258 +cond-mat/0006261 Strongly Correlated Electrons +cond-mat/0006262 Statistical Mechanics +cond-mat/0006267 Statistical Mechanics +cond-mat/0006268 Strongly Correlated Electrons +cond-mat/0006273 Statistical Mechanics +cond-mat/0006276 Mesoscale and Nanoscale Physics +cond-mat/0006277 Strongly Correlated Electrons +cond-mat/0006279 Statistical Mechanics +cond-mat/0006281 Mesoscale and Nanoscale Physics +cond-mat/0006282 Strongly Correlated Electrons +cond-mat/0006285 Disordered Systems and Neural Networks +cond-mat/0006288 Superconductivity +cond-mat/0006290 Superconductivity +cond-mat/0006291 Disordered Systems and Neural Networks +cond-mat/0006293 Statistical Mechanics +cond-mat/0006294 Mesoscale and Nanoscale Physics +cond-mat/0006295 Materials Science +cond-mat/0006299 Materials Science +cond-mat/0006302 Mesoscale and Nanoscale Physics +cond-mat/0006303 Materials Science +cond-mat/0006306 Disordered Systems and Neural Networks +cond-mat/0006308 Strongly Correlated Electrons +cond-mat/0006309 Mesoscale and Nanoscale Physics +cond-mat/0006311 +cond-mat/0006313 Statistical Mechanics +cond-mat/0006314 Statistical Mechanics +cond-mat/0006315 +cond-mat/0006317 Materials Science +cond-mat/0006319 Soft Condensed Matter +cond-mat/0006320 Statistical Mechanics +cond-mat/0006321 Strongly Correlated Electrons +cond-mat/0006323 +cond-mat/0006324 Statistical Mechanics +cond-mat/0006325 Superconductivity +cond-mat/0006326 Superconductivity +cond-mat/0006328 Mesoscale and Nanoscale Physics +cond-mat/0006329 Mesoscale and Nanoscale Physics +cond-mat/0006330 Soft Condensed Matter +cond-mat/0006331 Mesoscale and Nanoscale Physics +cond-mat/0006332 Statistical Mechanics +cond-mat/0006333 Mesoscale and Nanoscale Physics +cond-mat/0006336 Strongly Correlated Electrons +cond-mat/0006337 Mesoscale and Nanoscale Physics +cond-mat/0006338 Materials Science +cond-mat/0006339 Statistical Mechanics +cond-mat/0006340 Superconductivity +cond-mat/0006341 Superconductivity +cond-mat/0006342 Disordered Systems and Neural Networks +cond-mat/0006343 Materials Science +cond-mat/0006344 Superconductivity +cond-mat/0006345 Statistical Mechanics +cond-mat/0006346 Strongly Correlated Electrons +cond-mat/0006347 Strongly Correlated Electrons +cond-mat/0006348 Statistical Mechanics +cond-mat/0006351 Materials Science +cond-mat/0006352 Disordered Systems and Neural Networks +cond-mat/0006354 Strongly Correlated Electrons +cond-mat/0006356 Disordered Systems and Neural Networks +cond-mat/0006358 +cond-mat/0006361 Mesoscale and Nanoscale Physics +cond-mat/0006362 Mesoscale and Nanoscale Physics +cond-mat/0006364 Mesoscale and Nanoscale Physics +cond-mat/0006365 Superconductivity +cond-mat/0006370 Superconductivity +cond-mat/0006372 Statistical Mechanics +cond-mat/0006373 +cond-mat/0006376 Materials Science +cond-mat/0006378 Superconductivity +cond-mat/0006379 Strongly Correlated Electrons +cond-mat/0006380 Superconductivity +cond-mat/0006381 +cond-mat/0006384 Strongly Correlated Electrons +cond-mat/0006385 Strongly Correlated Electrons +cond-mat/0006387 +cond-mat/0006388 Materials Science +cond-mat/0006389 Disordered Systems and Neural Networks +cond-mat/0006390 Materials Science +cond-mat/0006391 Disordered Systems and Neural Networks +cond-mat/0006393 Mesoscale and Nanoscale Physics +cond-mat/0006394 +cond-mat/0006395 Mesoscale and Nanoscale Physics +cond-mat/0006397 Strongly Correlated Electrons +cond-mat/0006398 Superconductivity +cond-mat/0006401 Strongly Correlated Electrons +cond-mat/0006403 Statistical Mechanics +cond-mat/0006404 Statistical Mechanics +cond-mat/0006406 Superconductivity +cond-mat/0006407 Mesoscale and Nanoscale Physics +cond-mat/0006408 Strongly Correlated Electrons +cond-mat/0006409 Strongly Correlated Electrons +cond-mat/0006410 +cond-mat/0006412 Superconductivity +cond-mat/0006413 Soft Condensed Matter +cond-mat/0006414 Statistical Mechanics +cond-mat/0006415 Statistical Mechanics +cond-mat/0006417 Superconductivity +cond-mat/0006418 Strongly Correlated Electrons +cond-mat/0006419 Soft Condensed Matter +cond-mat/0006420 Disordered Systems and Neural Networks +cond-mat/0006422 Strongly Correlated Electrons +cond-mat/0006423 Statistical Mechanics +cond-mat/0006424 Statistical Mechanics +cond-mat/0006425 Mesoscale and Nanoscale Physics +cond-mat/0006426 Strongly Correlated Electrons +cond-mat/0006428 Soft Condensed Matter +cond-mat/0006429 Mesoscale and Nanoscale Physics +cond-mat/0006430 Statistical Mechanics +cond-mat/0006431 Disordered Systems and Neural Networks +cond-mat/0006433 Superconductivity +cond-mat/0006434 Mesoscale and Nanoscale Physics +cond-mat/0006435 Strongly Correlated Electrons +cond-mat/0006436 +cond-mat/0006438 Mesoscale and Nanoscale Physics +cond-mat/0006439 Strongly Correlated Electrons +cond-mat/0006440 Mesoscale and Nanoscale Physics +cond-mat/0006443 +cond-mat/0006445 Statistical Mechanics +cond-mat/0006446 Mesoscale and Nanoscale Physics +cond-mat/0006448 Statistical Mechanics +cond-mat/0006449 Statistical Mechanics +cond-mat/0006450 Mesoscale and Nanoscale Physics +cond-mat/0006452 Disordered Systems and Neural Networks +cond-mat/0006453 Soft Condensed Matter +cond-mat/0006454 Statistical Mechanics +cond-mat/0006455 Soft Condensed Matter +cond-mat/0006456 Statistical Mechanics +cond-mat/0006457 +cond-mat/0006459 Statistical Mechanics +cond-mat/0006460 +cond-mat/0006461 Strongly Correlated Electrons +cond-mat/0006463 Statistical Mechanics +cond-mat/0006464 Statistical Mechanics +cond-mat/0006465 Statistical Mechanics +cond-mat/0006466 +cond-mat/0006467 Superconductivity +cond-mat/0006470 Strongly Correlated Electrons +cond-mat/0006471 Mesoscale and Nanoscale Physics +cond-mat/0006472 Statistical Mechanics +cond-mat/0006473 Soft Condensed Matter +cond-mat/0006474 Mesoscale and Nanoscale Physics +cond-mat/0006477 Soft Condensed Matter +cond-mat/0006478 Statistical Mechanics +cond-mat/0006479 Superconductivity +cond-mat/0006480 +cond-mat/0006481 Superconductivity +cond-mat/0006482 Mesoscale and Nanoscale Physics +cond-mat/0006483 Disordered Systems and Neural Networks +cond-mat/0006484 Mesoscale and Nanoscale Physics +cond-mat/0006485 Strongly Correlated Electrons +cond-mat/0006487 Mesoscale and Nanoscale Physics +cond-mat/0006489 Strongly Correlated Electrons +cond-mat/0006491 +cond-mat/0006492 Mesoscale and Nanoscale Physics +cond-mat/0006493 Soft Condensed Matter +cond-mat/0006496 Soft Condensed Matter +cond-mat/0006497 Mesoscale and Nanoscale Physics +cond-mat/0006498 Materials Science +cond-mat/0006500 Strongly Correlated Electrons +cond-mat/0006501 Soft Condensed Matter +cond-mat/0006502 Soft Condensed Matter +cond-mat/0006503 Mesoscale and Nanoscale Physics +cond-mat/0006504 Mesoscale and Nanoscale Physics +cond-mat/0006505 Mesoscale and Nanoscale Physics +cond-mat/0007001 Materials Science +cond-mat/0007002 Strongly Correlated Electrons +cond-mat/0007004 +cond-mat/0007006 Strongly Correlated Electrons +cond-mat/0007007 Superconductivity +cond-mat/0007008 Strongly Correlated Electrons +cond-mat/0007009 Superconductivity +cond-mat/0007010 +cond-mat/0007011 +cond-mat/0007012 Statistical Mechanics +cond-mat/0007013 Superconductivity +cond-mat/0007017 Mesoscale and Nanoscale Physics +cond-mat/0007018 Strongly Correlated Electrons +cond-mat/0007020 Strongly Correlated Electrons +cond-mat/0007021 Statistical Mechanics +cond-mat/0007022 +cond-mat/0007025 Strongly Correlated Electrons +cond-mat/0007028 +cond-mat/0007029 Soft Condensed Matter +cond-mat/0007030 Superconductivity +cond-mat/0007031 +cond-mat/0007033 Superconductivity +cond-mat/0007034 Materials Science +cond-mat/0007035 Soft Condensed Matter +cond-mat/0007036 Disordered Systems and Neural Networks +cond-mat/0007037 Strongly Correlated Electrons +cond-mat/0007038 Statistical Mechanics +cond-mat/0007039 Strongly Correlated Electrons +cond-mat/0007040 Soft Condensed Matter +cond-mat/0007041 Strongly Correlated Electrons +cond-mat/0007042 Strongly Correlated Electrons +cond-mat/0007044 Strongly Correlated Electrons +cond-mat/0007048 Disordered Systems and Neural Networks +cond-mat/0007049 Soft Condensed Matter +cond-mat/0007050 Strongly Correlated Electrons +cond-mat/0007051 Strongly Correlated Electrons +cond-mat/0007052 Materials Science +cond-mat/0007053 Statistical Mechanics +cond-mat/0007055 Soft Condensed Matter +cond-mat/0007056 Soft Condensed Matter +cond-mat/0007057 Strongly Correlated Electrons +cond-mat/0007058 Materials Science +cond-mat/0007059 Soft Condensed Matter +cond-mat/0007060 Superconductivity +cond-mat/0007061 Superconductivity +cond-mat/0007062 Soft Condensed Matter +cond-mat/0007065 Statistical Mechanics +cond-mat/0007066 Mesoscale and Nanoscale Physics +cond-mat/0007067 Superconductivity +cond-mat/0007068 Strongly Correlated Electrons +cond-mat/0007069 Strongly Correlated Electrons +cond-mat/0007070 Materials Science +cond-mat/0007074 Disordered Systems and Neural Networks +cond-mat/0007077 Mesoscale and Nanoscale Physics +cond-mat/0007079 Materials Science +cond-mat/0007082 Strongly Correlated Electrons +cond-mat/0007083 Superconductivity +cond-mat/0007088 Statistical Mechanics +cond-mat/0007089 Soft Condensed Matter +cond-mat/0007091 +cond-mat/0007095 Statistical Mechanics +cond-mat/0007096 Materials Science +cond-mat/0007097 Soft Condensed Matter +cond-mat/0007098 Strongly Correlated Electrons +cond-mat/0007100 Materials Science +cond-mat/0007101 Materials Science +cond-mat/0007102 Disordered Systems and Neural Networks +cond-mat/0007104 Statistical Mechanics +cond-mat/0007108 Materials Science +cond-mat/0007109 Disordered Systems and Neural Networks +cond-mat/0007110 Superconductivity +cond-mat/0007111 Disordered Systems and Neural Networks +cond-mat/0007114 Statistical Mechanics +cond-mat/0007115 Superconductivity +cond-mat/0007116 Disordered Systems and Neural Networks +cond-mat/0007117 +cond-mat/0007119 +cond-mat/0007120 Soft Condensed Matter +cond-mat/0007121 Mesoscale and Nanoscale Physics +cond-mat/0007122 Statistical Mechanics +cond-mat/0007123 Soft Condensed Matter +cond-mat/0007124 Strongly Correlated Electrons +cond-mat/0007125 +cond-mat/0007126 +cond-mat/0007128 Mesoscale and Nanoscale Physics +cond-mat/0007129 Statistical Mechanics +cond-mat/0007130 +cond-mat/0007131 Statistical Mechanics +cond-mat/0007132 Statistical Mechanics +cond-mat/0007134 Mesoscale and Nanoscale Physics +cond-mat/0007135 Strongly Correlated Electrons +cond-mat/0007136 Statistical Mechanics +cond-mat/0007137 Strongly Correlated Electrons +cond-mat/0007139 Statistical Mechanics +cond-mat/0007140 Superconductivity +cond-mat/0007141 Soft Condensed Matter +cond-mat/0007143 Soft Condensed Matter +cond-mat/0007147 Disordered Systems and Neural Networks +cond-mat/0007148 Mesoscale and Nanoscale Physics +cond-mat/0007149 Materials Science +cond-mat/0007151 Statistical Mechanics +cond-mat/0007152 +cond-mat/0007154 Materials Science +cond-mat/0007155 Superconductivity +cond-mat/0007156 Superconductivity +cond-mat/0007157 +cond-mat/0007159 Superconductivity +cond-mat/0007160 Mesoscale and Nanoscale Physics +cond-mat/0007161 Strongly Correlated Electrons +cond-mat/0007165 Strongly Correlated Electrons +cond-mat/0007166 +cond-mat/0007168 Mesoscale and Nanoscale Physics +cond-mat/0007169 Strongly Correlated Electrons +cond-mat/0007173 Strongly Correlated Electrons +cond-mat/0007174 +cond-mat/0007176 +cond-mat/0007177 Superconductivity +cond-mat/0007179 Statistical Mechanics +cond-mat/0007180 Materials Science +cond-mat/0007181 Disordered Systems and Neural Networks +cond-mat/0007182 Strongly Correlated Electrons +cond-mat/0007183 Strongly Correlated Electrons +cond-mat/0007184 Strongly Correlated Electrons +cond-mat/0007187 Statistical Mechanics +cond-mat/0007188 Strongly Correlated Electrons +cond-mat/0007189 Superconductivity +cond-mat/0007190 Materials Science +cond-mat/0007191 Soft Condensed Matter +cond-mat/0007193 Materials Science +cond-mat/0007194 Materials Science +cond-mat/0007197 Strongly Correlated Electrons +cond-mat/0007198 Disordered Systems and Neural Networks +cond-mat/0007199 Mesoscale and Nanoscale Physics +cond-mat/0007202 Soft Condensed Matter +cond-mat/0007203 Disordered Systems and Neural Networks +cond-mat/0007205 Strongly Correlated Electrons +cond-mat/0007206 Statistical Mechanics +cond-mat/0007207 Soft Condensed Matter +cond-mat/0007208 Soft Condensed Matter +cond-mat/0007210 +cond-mat/0007211 +cond-mat/0007212 Statistical Mechanics +cond-mat/0007215 Materials Science +cond-mat/0007216 Mesoscale and Nanoscale Physics +cond-mat/0007217 Soft Condensed Matter +cond-mat/0007218 Superconductivity +cond-mat/0007219 Strongly Correlated Electrons +cond-mat/0007220 Disordered Systems and Neural Networks +cond-mat/0007222 Superconductivity +cond-mat/0007223 Statistical Mechanics +cond-mat/0007224 Strongly Correlated Electrons +cond-mat/0007227 +cond-mat/0007228 Strongly Correlated Electrons +cond-mat/0007229 Soft Condensed Matter +cond-mat/0007230 Mesoscale and Nanoscale Physics +cond-mat/0007231 Strongly Correlated Electrons +cond-mat/0007232 Disordered Systems and Neural Networks +cond-mat/0007235 Statistical Mechanics +cond-mat/0007237 Strongly Correlated Electrons +cond-mat/0007238 Statistical Mechanics +cond-mat/0007241 Disordered Systems and Neural Networks +cond-mat/0007243 Superconductivity +cond-mat/0007244 Mesoscale and Nanoscale Physics +cond-mat/0007246 Soft Condensed Matter +cond-mat/0007247 Materials Science +cond-mat/0007248 +cond-mat/0007249 Strongly Correlated Electrons +cond-mat/0007250 Statistical Mechanics +cond-mat/0007253 Materials Science +cond-mat/0007254 Disordered Systems and Neural Networks +cond-mat/0007255 Disordered Systems and Neural Networks +cond-mat/0007256 Soft Condensed Matter +cond-mat/0007257 Strongly Correlated Electrons +cond-mat/0007258 Statistical Mechanics +cond-mat/0007260 Disordered Systems and Neural Networks +cond-mat/0007262 Strongly Correlated Electrons +cond-mat/0007264 Mesoscale and Nanoscale Physics +cond-mat/0007267 Statistical Mechanics +cond-mat/0007269 Disordered Systems and Neural Networks +cond-mat/0007270 Soft Condensed Matter +cond-mat/0007271 Superconductivity +cond-mat/0007272 Mesoscale and Nanoscale Physics +cond-mat/0007273 Soft Condensed Matter +cond-mat/0007280 Strongly Correlated Electrons +cond-mat/0007281 Superconductivity +cond-mat/0007282 Strongly Correlated Electrons +cond-mat/0007283 Strongly Correlated Electrons +cond-mat/0007285 Strongly Correlated Electrons +cond-mat/0007288 Soft Condensed Matter +cond-mat/0007291 Mesoscale and Nanoscale Physics +cond-mat/0007292 +cond-mat/0007295 +cond-mat/0007297 Mesoscale and Nanoscale Physics +cond-mat/0007298 Statistical Mechanics +cond-mat/0007299 Strongly Correlated Electrons +cond-mat/0007300 Statistical Mechanics +cond-mat/0007301 Strongly Correlated Electrons +cond-mat/0007305 Superconductivity +cond-mat/0007306 Strongly Correlated Electrons +cond-mat/0007308 Statistical Mechanics +cond-mat/0007310 Disordered Systems and Neural Networks +cond-mat/0007311 Statistical Mechanics +cond-mat/0007312 Soft Condensed Matter +cond-mat/0007313 Statistical Mechanics +cond-mat/0007314 Mesoscale and Nanoscale Physics +cond-mat/0007315 Disordered Systems and Neural Networks +cond-mat/0007316 Statistical Mechanics +cond-mat/0007317 Superconductivity +cond-mat/0007318 +cond-mat/0007319 Strongly Correlated Electrons +cond-mat/0007321 Statistical Mechanics +cond-mat/0007322 Strongly Correlated Electrons +cond-mat/0007323 Statistical Mechanics +cond-mat/0007324 Statistical Mechanics +cond-mat/0007325 Statistical Mechanics +cond-mat/0007328 Superconductivity +cond-mat/0007329 Strongly Correlated Electrons +cond-mat/0007330 Mesoscale and Nanoscale Physics +cond-mat/0007332 Mesoscale and Nanoscale Physics +cond-mat/0007334 Superconductivity +cond-mat/0007335 Statistical Mechanics +cond-mat/0007336 Strongly Correlated Electrons +cond-mat/0007337 Strongly Correlated Electrons +cond-mat/0007339 Strongly Correlated Electrons +cond-mat/0007340 Disordered Systems and Neural Networks +cond-mat/0007342 Superconductivity +cond-mat/0007343 Disordered Systems and Neural Networks +cond-mat/0007346 Mesoscale and Nanoscale Physics +cond-mat/0007347 Statistical Mechanics +cond-mat/0007348 Strongly Correlated Electrons +cond-mat/0007349 Statistical Mechanics +cond-mat/0007350 Statistical Mechanics +cond-mat/0007351 Statistical Mechanics +cond-mat/0007352 Statistical Mechanics +cond-mat/0007353 Strongly Correlated Electrons +cond-mat/0007356 Disordered Systems and Neural Networks +cond-mat/0007358 Statistical Mechanics +cond-mat/0007359 Strongly Correlated Electrons +cond-mat/0007361 Superconductivity +cond-mat/0007362 Strongly Correlated Electrons +cond-mat/0007365 Superconductivity +cond-mat/0007366 Statistical Mechanics +cond-mat/0007370 Disordered Systems and Neural Networks +cond-mat/0007371 +cond-mat/0007372 Disordered Systems and Neural Networks +cond-mat/0007373 Disordered Systems and Neural Networks +cond-mat/0007375 Disordered Systems and Neural Networks +cond-mat/0007376 Mesoscale and Nanoscale Physics +cond-mat/0007378 Strongly Correlated Electrons +cond-mat/0007379 Strongly Correlated Electrons +cond-mat/0007380 Statistical Mechanics +cond-mat/0007382 Statistical Mechanics +cond-mat/0007383 Mesoscale and Nanoscale Physics +cond-mat/0007385 Statistical Mechanics +cond-mat/0007386 Statistical Mechanics +cond-mat/0007387 Superconductivity +cond-mat/0007388 Strongly Correlated Electrons +cond-mat/0007389 Statistical Mechanics +cond-mat/0007391 Strongly Correlated Electrons +cond-mat/0007392 Disordered Systems and Neural Networks +cond-mat/0007393 Superconductivity +cond-mat/0007394 +cond-mat/0007395 Statistical Mechanics +cond-mat/0007396 Mesoscale and Nanoscale Physics +cond-mat/0007400 +cond-mat/0007403 Mesoscale and Nanoscale Physics +cond-mat/0007404 Materials Science +cond-mat/0007405 Materials Science +cond-mat/0007406 Mesoscale and Nanoscale Physics +cond-mat/0007408 Strongly Correlated Electrons +cond-mat/0007409 Statistical Mechanics +cond-mat/0007410 Statistical Mechanics +cond-mat/0007411 Statistical Mechanics +cond-mat/0007412 Statistical Mechanics +cond-mat/0007416 Soft Condensed Matter +cond-mat/0007418 Statistical Mechanics +cond-mat/0007423 Materials Science +cond-mat/0007424 Disordered Systems and Neural Networks +cond-mat/0007425 Statistical Mechanics +cond-mat/0007426 Disordered Systems and Neural Networks +cond-mat/0007427 Mesoscale and Nanoscale Physics +cond-mat/0007428 Strongly Correlated Electrons +cond-mat/0007429 Disordered Systems and Neural Networks +cond-mat/0007430 Mesoscale and Nanoscale Physics +cond-mat/0007433 Mesoscale and Nanoscale Physics +cond-mat/0007435 Statistical Mechanics +cond-mat/0007436 Superconductivity +cond-mat/0007437 +cond-mat/0007438 Strongly Correlated Electrons +cond-mat/0007439 Materials Science +cond-mat/0007440 Superconductivity +cond-mat/0007441 Mesoscale and Nanoscale Physics +cond-mat/0007442 Strongly Correlated Electrons +cond-mat/0007443 Strongly Correlated Electrons +cond-mat/0007444 Materials Science +cond-mat/0007446 Mesoscale and Nanoscale Physics +cond-mat/0007447 Strongly Correlated Electrons +cond-mat/0007448 Mesoscale and Nanoscale Physics +cond-mat/0007449 Statistical Mechanics +cond-mat/0007450 Strongly Correlated Electrons +cond-mat/0007454 Strongly Correlated Electrons +cond-mat/0007455 Statistical Mechanics +cond-mat/0007456 Statistical Mechanics +cond-mat/0007457 +cond-mat/0007459 Materials Science +cond-mat/0007460 Superconductivity +cond-mat/0007461 Superconductivity +cond-mat/0007462 Disordered Systems and Neural Networks +cond-mat/0007463 Strongly Correlated Electrons +cond-mat/0007464 Materials Science +cond-mat/0007465 Strongly Correlated Electrons +cond-mat/0007466 Superconductivity +cond-mat/0007468 Statistical Mechanics +cond-mat/0007469 Mesoscale and Nanoscale Physics +cond-mat/0007471 Statistical Mechanics +cond-mat/0007472 Strongly Correlated Electrons +cond-mat/0007474 Strongly Correlated Electrons +cond-mat/0007475 Disordered Systems and Neural Networks +cond-mat/0007477 Superconductivity +cond-mat/0007478 Strongly Correlated Electrons +cond-mat/0007480 Strongly Correlated Electrons +cond-mat/0007481 Mesoscale and Nanoscale Physics +cond-mat/0007483 Materials Science +cond-mat/0007484 Strongly Correlated Electrons +cond-mat/0007485 +cond-mat/0007486 Soft Condensed Matter +cond-mat/0007487 Soft Condensed Matter +cond-mat/0007488 Statistical Mechanics +cond-mat/0007490 Materials Science +cond-mat/0007491 Statistical Mechanics +cond-mat/0007492 Superconductivity +cond-mat/0007493 Disordered Systems and Neural Networks +cond-mat/0007494 Statistical Mechanics +cond-mat/0007495 Strongly Correlated Electrons +cond-mat/0007496 Statistical Mechanics +cond-mat/0007497 Soft Condensed Matter +cond-mat/0007503 Strongly Correlated Electrons +cond-mat/0007505 Statistical Mechanics +cond-mat/0007506 Soft Condensed Matter +cond-mat/0007507 Materials Science +cond-mat/0007508 Superconductivity +cond-mat/0007509 Disordered Systems and Neural Networks +cond-mat/0007510 Superconductivity +cond-mat/0007512 Soft Condensed Matter +cond-mat/0008001 Superconductivity +cond-mat/0008003 Mesoscale and Nanoscale Physics +cond-mat/0008004 Mesoscale and Nanoscale Physics +cond-mat/0008006 Statistical Mechanics +cond-mat/0008007 Soft Condensed Matter +cond-mat/0008009 +cond-mat/0008011 Strongly Correlated Electrons +cond-mat/0008012 Materials Science +cond-mat/0008013 Statistical Mechanics +cond-mat/0008015 Strongly Correlated Electrons +cond-mat/0008017 Statistical Mechanics +cond-mat/0008019 Statistical Mechanics +cond-mat/0008020 Materials Science +cond-mat/0008021 Soft Condensed Matter +cond-mat/0008022 Statistical Mechanics +cond-mat/0008024 Statistical Mechanics +cond-mat/0008025 Statistical Mechanics +cond-mat/0008026 Statistical Mechanics +cond-mat/0008027 Disordered Systems and Neural Networks +cond-mat/0008031 Superconductivity +cond-mat/0008032 Strongly Correlated Electrons +cond-mat/0008034 Strongly Correlated Electrons +cond-mat/0008036 +cond-mat/0008039 Disordered Systems and Neural Networks +cond-mat/0008040 +cond-mat/0008041 Mesoscale and Nanoscale Physics +cond-mat/0008043 Superconductivity +cond-mat/0008044 Strongly Correlated Electrons +cond-mat/0008046 Statistical Mechanics +cond-mat/0008047 Materials Science +cond-mat/0008049 Disordered Systems and Neural Networks +cond-mat/0008051 Mesoscale and Nanoscale Physics +cond-mat/0008053 Statistical Mechanics +cond-mat/0008054 Strongly Correlated Electrons +cond-mat/0008056 Materials Science +cond-mat/0008058 Mesoscale and Nanoscale Physics +cond-mat/0008060 Strongly Correlated Electrons +cond-mat/0008061 Statistical Mechanics +cond-mat/0008062 Strongly Correlated Electrons +cond-mat/0008064 Disordered Systems and Neural Networks +cond-mat/0008066 Strongly Correlated Electrons +cond-mat/0008068 Strongly Correlated Electrons +cond-mat/0008071 Statistical Mechanics +cond-mat/0008073 Superconductivity +cond-mat/0008074 Superconductivity +cond-mat/0008075 Strongly Correlated Electrons +cond-mat/0008079 Disordered Systems and Neural Networks +cond-mat/0008081 Statistical Mechanics +cond-mat/0008082 Superconductivity +cond-mat/0008083 Materials Science +cond-mat/0008084 Materials Science +cond-mat/0008085 Statistical Mechanics +cond-mat/0008086 Soft Condensed Matter +cond-mat/0008087 Statistical Mechanics +cond-mat/0008088 Materials Science +cond-mat/0008089 Statistical Mechanics +cond-mat/0008091 Disordered Systems and Neural Networks +cond-mat/0008092 Superconductivity +cond-mat/0008093 Statistical Mechanics +cond-mat/0008094 Mesoscale and Nanoscale Physics +cond-mat/0008095 Superconductivity +cond-mat/0008096 Mesoscale and Nanoscale Physics +cond-mat/0008099 Strongly Correlated Electrons +cond-mat/0008100 Superconductivity +cond-mat/0008102 Materials Science +cond-mat/0008105 Strongly Correlated Electrons +cond-mat/0008107 Materials Science +cond-mat/0008108 Strongly Correlated Electrons +cond-mat/0008109 Materials Science +cond-mat/0008111 +cond-mat/0008112 Superconductivity +cond-mat/0008113 Statistical Mechanics +cond-mat/0008114 Statistical Mechanics +cond-mat/0008119 Disordered Systems and Neural Networks +cond-mat/0008120 Materials Science +cond-mat/0008122 Statistical Mechanics +cond-mat/0008124 Statistical Mechanics +cond-mat/0008128 Superconductivity +cond-mat/0008129 Materials Science +cond-mat/0008130 Statistical Mechanics +cond-mat/0008132 Materials Science +cond-mat/0008134 Strongly Correlated Electrons +cond-mat/0008135 Materials Science +cond-mat/0008136 Materials Science +cond-mat/0008137 Mesoscale and Nanoscale Physics +cond-mat/0008139 Disordered Systems and Neural Networks +cond-mat/0008140 Superconductivity +cond-mat/0008142 Statistical Mechanics +cond-mat/0008144 Mesoscale and Nanoscale Physics +cond-mat/0008145 Materials Science +cond-mat/0008146 Mesoscale and Nanoscale Physics +cond-mat/0008148 Statistical Mechanics +cond-mat/0008149 Disordered Systems and Neural Networks +cond-mat/0008150 Mesoscale and Nanoscale Physics +cond-mat/0008151 Strongly Correlated Electrons +cond-mat/0008153 Statistical Mechanics +cond-mat/0008154 Strongly Correlated Electrons +cond-mat/0008155 Statistical Mechanics +cond-mat/0008156 Superconductivity +cond-mat/0008159 +cond-mat/0008160 Materials Science +cond-mat/0008162 Disordered Systems and Neural Networks +cond-mat/0008163 Mesoscale and Nanoscale Physics +cond-mat/0008164 +cond-mat/0008165 +cond-mat/0008170 Mesoscale and Nanoscale Physics +cond-mat/0008174 Statistical Mechanics +cond-mat/0008177 +cond-mat/0008178 Statistical Mechanics +cond-mat/0008179 Statistical Mechanics +cond-mat/0008181 Materials Science +cond-mat/0008182 Soft Condensed Matter +cond-mat/0008183 Statistical Mechanics +cond-mat/0008184 Soft Condensed Matter +cond-mat/0008186 Strongly Correlated Electrons +cond-mat/0008189 Statistical Mechanics +cond-mat/0008190 Statistical Mechanics +cond-mat/0008191 Superconductivity +cond-mat/0008192 Statistical Mechanics +cond-mat/0008193 Mesoscale and Nanoscale Physics +cond-mat/0008194 Disordered Systems and Neural Networks +cond-mat/0008195 Mesoscale and Nanoscale Physics +cond-mat/0008198 Materials Science +cond-mat/0008199 +cond-mat/0008200 Materials Science +cond-mat/0008201 Statistical Mechanics +cond-mat/0008202 +cond-mat/0008203 Statistical Mechanics +cond-mat/0008204 Materials Science +cond-mat/0008206 Statistical Mechanics +cond-mat/0008207 Superconductivity +cond-mat/0008208 Soft Condensed Matter +cond-mat/0008209 Statistical Mechanics +cond-mat/0008210 Statistical Mechanics +cond-mat/0008212 Mesoscale and Nanoscale Physics +cond-mat/0008213 Strongly Correlated Electrons +cond-mat/0008216 Statistical Mechanics +cond-mat/0008218 +cond-mat/0008219 Mesoscale and Nanoscale Physics +cond-mat/0008220 Superconductivity +cond-mat/0008221 Materials Science +cond-mat/0008223 Strongly Correlated Electrons +cond-mat/0008224 +cond-mat/0008225 Statistical Mechanics +cond-mat/0008227 Mesoscale and Nanoscale Physics +cond-mat/0008228 Mesoscale and Nanoscale Physics +cond-mat/0008229 Superconductivity +cond-mat/0008230 Statistical Mechanics +cond-mat/0008231 Mesoscale and Nanoscale Physics +cond-mat/0008232 Statistical Mechanics +cond-mat/0008233 Strongly Correlated Electrons +cond-mat/0008235 Superconductivity +cond-mat/0008237 Superconductivity +cond-mat/0008238 Mesoscale and Nanoscale Physics +cond-mat/0008241 Disordered Systems and Neural Networks +cond-mat/0008242 Strongly Correlated Electrons +cond-mat/0008243 Statistical Mechanics +cond-mat/0008245 Superconductivity +cond-mat/0008246 Soft Condensed Matter +cond-mat/0008247 Superconductivity +cond-mat/0008248 Superconductivity +cond-mat/0008249 Strongly Correlated Electrons +cond-mat/0008251 Statistical Mechanics +cond-mat/0008253 Materials Science +cond-mat/0008254 Statistical Mechanics +cond-mat/0008256 +cond-mat/0008257 Statistical Mechanics +cond-mat/0008258 Soft Condensed Matter +cond-mat/0008259 Mesoscale and Nanoscale Physics +cond-mat/0008260 Superconductivity +cond-mat/0008261 Superconductivity +cond-mat/0008262 Superconductivity +cond-mat/0008264 +cond-mat/0008265 Superconductivity +cond-mat/0008266 Soft Condensed Matter +cond-mat/0008267 Disordered Systems and Neural Networks +cond-mat/0008268 Statistical Mechanics +cond-mat/0008271 Mesoscale and Nanoscale Physics +cond-mat/0008272 Mesoscale and Nanoscale Physics +cond-mat/0008276 Statistical Mechanics +cond-mat/0008277 Statistical Mechanics +cond-mat/0008278 Superconductivity +cond-mat/0008279 Mesoscale and Nanoscale Physics +cond-mat/0008282 Strongly Correlated Electrons +cond-mat/0008285 Statistical Mechanics +cond-mat/0008286 +cond-mat/0008287 Strongly Correlated Electrons +cond-mat/0008288 Statistical Mechanics +cond-mat/0008289 Superconductivity +cond-mat/0008291 Statistical Mechanics +cond-mat/0008292 Statistical Mechanics +cond-mat/0008293 +cond-mat/0008296 Strongly Correlated Electrons +cond-mat/0008297 +cond-mat/0008298 Strongly Correlated Electrons +cond-mat/0008299 Superconductivity +cond-mat/0008300 +cond-mat/0008303 Strongly Correlated Electrons +cond-mat/0008304 Statistical Mechanics +cond-mat/0008307 Strongly Correlated Electrons +cond-mat/0008308 Mesoscale and Nanoscale Physics +cond-mat/0008309 Statistical Mechanics +cond-mat/0008310 Statistical Mechanics +cond-mat/0008311 Statistical Mechanics +cond-mat/0008313 Statistical Mechanics +cond-mat/0008315 Materials Science +cond-mat/0008316 Soft Condensed Matter +cond-mat/0008317 +cond-mat/0008320 Strongly Correlated Electrons +cond-mat/0008321 Strongly Correlated Electrons +cond-mat/0008322 Strongly Correlated Electrons +cond-mat/0008325 Soft Condensed Matter +cond-mat/0008326 Mesoscale and Nanoscale Physics +cond-mat/0008328 Strongly Correlated Electrons +cond-mat/0008329 Materials Science +cond-mat/0008330 Mesoscale and Nanoscale Physics +cond-mat/0008331 Strongly Correlated Electrons +cond-mat/0008332 Statistical Mechanics +cond-mat/0008333 Strongly Correlated Electrons +cond-mat/0008337 Statistical Mechanics +cond-mat/0008338 Soft Condensed Matter +cond-mat/0008339 Soft Condensed Matter +cond-mat/0008341 Superconductivity +cond-mat/0008343 Strongly Correlated Electrons +cond-mat/0008345 Superconductivity +cond-mat/0008346 Strongly Correlated Electrons +cond-mat/0008347 Materials Science +cond-mat/0008348 Superconductivity +cond-mat/0008350 Superconductivity +cond-mat/0008351 Strongly Correlated Electrons +cond-mat/0008352 Strongly Correlated Electrons +cond-mat/0008354 Strongly Correlated Electrons +cond-mat/0008355 Soft Condensed Matter +cond-mat/0008356 Mesoscale and Nanoscale Physics +cond-mat/0008357 Statistical Mechanics +cond-mat/0008359 Statistical Mechanics +cond-mat/0008360 Statistical Mechanics +cond-mat/0008361 Strongly Correlated Electrons +cond-mat/0008362 Soft Condensed Matter +cond-mat/0008363 Disordered Systems and Neural Networks +cond-mat/0008364 Superconductivity +cond-mat/0008365 Disordered Systems and Neural Networks +cond-mat/0008366 +cond-mat/0008367 Strongly Correlated Electrons +cond-mat/0008369 Statistical Mechanics +cond-mat/0008372 Statistical Mechanics +cond-mat/0008374 Strongly Correlated Electrons +cond-mat/0008375 Mesoscale and Nanoscale Physics +cond-mat/0008376 Strongly Correlated Electrons +cond-mat/0008377 Superconductivity +cond-mat/0008378 Strongly Correlated Electrons +cond-mat/0008380 Strongly Correlated Electrons +cond-mat/0008381 Statistical Mechanics +cond-mat/0008383 Materials Science +cond-mat/0008385 +cond-mat/0008386 Statistical Mechanics +cond-mat/0008387 +cond-mat/0008389 Materials Science +cond-mat/0008390 Materials Science +cond-mat/0008391 Soft Condensed Matter +cond-mat/0008392 Disordered Systems and Neural Networks +cond-mat/0008394 Strongly Correlated Electrons +cond-mat/0008397 Superconductivity +cond-mat/0008398 Materials Science +cond-mat/0008400 Statistical Mechanics +cond-mat/0008401 Strongly Correlated Electrons +cond-mat/0008404 Mesoscale and Nanoscale Physics +cond-mat/0008405 Statistical Mechanics +cond-mat/0008407 Mesoscale and Nanoscale Physics +cond-mat/0008408 Mesoscale and Nanoscale Physics +cond-mat/0008409 Statistical Mechanics +cond-mat/0008410 Superconductivity +cond-mat/0008412 Strongly Correlated Electrons +cond-mat/0008414 Soft Condensed Matter +cond-mat/0008415 +cond-mat/0008417 +cond-mat/0008418 Superconductivity +cond-mat/0008419 Strongly Correlated Electrons +cond-mat/0008421 Statistical Mechanics +cond-mat/0008424 Statistical Mechanics +cond-mat/0008425 Soft Condensed Matter +cond-mat/0008427 Strongly Correlated Electrons +cond-mat/0008428 Statistical Mechanics +cond-mat/0008429 Strongly Correlated Electrons +cond-mat/0008430 Statistical Mechanics +cond-mat/0008431 Statistical Mechanics +cond-mat/0008432 Disordered Systems and Neural Networks +cond-mat/0008434 Superconductivity +cond-mat/0008435 Soft Condensed Matter +cond-mat/0008436 Statistical Mechanics +cond-mat/0008437 Soft Condensed Matter +cond-mat/0008438 Materials Science +cond-mat/0008439 Superconductivity +cond-mat/0008440 Materials Science +cond-mat/0008441 Strongly Correlated Electrons +cond-mat/0008442 Superconductivity +cond-mat/0008445 Strongly Correlated Electrons +cond-mat/0008448 Statistical Mechanics +cond-mat/0008450 Materials Science +cond-mat/0008451 Materials Science +cond-mat/0008452 Mesoscale and Nanoscale Physics +cond-mat/0008454 Soft Condensed Matter +cond-mat/0008455 Soft Condensed Matter +cond-mat/0008456 Strongly Correlated Electrons +cond-mat/0008457 +cond-mat/0008458 +cond-mat/0008459 Disordered Systems and Neural Networks +cond-mat/0008460 Disordered Systems and Neural Networks +cond-mat/0008461 Mesoscale and Nanoscale Physics +cond-mat/0008462 Strongly Correlated Electrons +cond-mat/0008463 Superconductivity +cond-mat/0008464 Strongly Correlated Electrons +cond-mat/0008465 Disordered Systems and Neural Networks +cond-mat/0008467 +cond-mat/0008468 +cond-mat/0008469 Mesoscale and Nanoscale Physics +cond-mat/0008470 Statistical Mechanics +cond-mat/0008471 +cond-mat/0008472 Disordered Systems and Neural Networks +cond-mat/0008473 Strongly Correlated Electrons +cond-mat/0008476 Materials Science +cond-mat/0008477 Statistical Mechanics +cond-mat/0008478 Superconductivity +cond-mat/0008479 Mesoscale and Nanoscale Physics +cond-mat/0008480 Mesoscale and Nanoscale Physics +cond-mat/0009002 Superconductivity +cond-mat/0009003 Materials Science +cond-mat/0009005 Mesoscale and Nanoscale Physics +cond-mat/0009006 Strongly Correlated Electrons +cond-mat/0009007 Statistical Mechanics +cond-mat/0009008 Disordered Systems and Neural Networks +cond-mat/0009010 Mesoscale and Nanoscale Physics +cond-mat/0009012 Materials Science +cond-mat/0009013 Materials Science +cond-mat/0009015 Statistical Mechanics +cond-mat/0009017 Soft Condensed Matter +cond-mat/0009021 +cond-mat/0009024 Statistical Mechanics +cond-mat/0009025 Soft Condensed Matter +cond-mat/0009026 Mesoscale and Nanoscale Physics +cond-mat/0009027 Soft Condensed Matter +cond-mat/0009028 Mesoscale and Nanoscale Physics +cond-mat/0009033 Disordered Systems and Neural Networks +cond-mat/0009034 +cond-mat/0009036 Strongly Correlated Electrons +cond-mat/0009040 Strongly Correlated Electrons +cond-mat/0009043 Superconductivity +cond-mat/0009044 Materials Science +cond-mat/0009045 Strongly Correlated Electrons +cond-mat/0009046 Mesoscale and Nanoscale Physics +cond-mat/0009047 Disordered Systems and Neural Networks +cond-mat/0009048 Statistical Mechanics +cond-mat/0009049 Disordered Systems and Neural Networks +cond-mat/0009050 Disordered Systems and Neural Networks +cond-mat/0009052 Disordered Systems and Neural Networks +cond-mat/0009053 Strongly Correlated Electrons +cond-mat/0009055 Mesoscale and Nanoscale Physics +cond-mat/0009056 Statistical Mechanics +cond-mat/0009057 Mesoscale and Nanoscale Physics +cond-mat/0009058 Strongly Correlated Electrons +cond-mat/0009059 Statistical Mechanics +cond-mat/0009060 Soft Condensed Matter +cond-mat/0009062 Statistical Mechanics +cond-mat/0009065 Statistical Mechanics +cond-mat/0009066 Strongly Correlated Electrons +cond-mat/0009067 Superconductivity +cond-mat/0009068 Mesoscale and Nanoscale Physics +cond-mat/0009073 Strongly Correlated Electrons +cond-mat/0009075 Strongly Correlated Electrons +cond-mat/0009076 Statistical Mechanics +cond-mat/0009077 Disordered Systems and Neural Networks +cond-mat/0009078 Statistical Mechanics +cond-mat/0009082 Statistical Mechanics +cond-mat/0009083 Mesoscale and Nanoscale Physics +cond-mat/0009085 Mesoscale and Nanoscale Physics +cond-mat/0009086 Statistical Mechanics +cond-mat/0009087 Mesoscale and Nanoscale Physics +cond-mat/0009088 Superconductivity +cond-mat/0009089 Soft Condensed Matter +cond-mat/0009091 Strongly Correlated Electrons +cond-mat/0009092 Soft Condensed Matter +cond-mat/0009093 Soft Condensed Matter +cond-mat/0009094 Soft Condensed Matter +cond-mat/0009095 Statistical Mechanics +cond-mat/0009096 Mesoscale and Nanoscale Physics +cond-mat/0009097 Mesoscale and Nanoscale Physics +cond-mat/0009099 Disordered Systems and Neural Networks +cond-mat/0009100 Mesoscale and Nanoscale Physics +cond-mat/0009101 Superconductivity +cond-mat/0009102 Statistical Mechanics +cond-mat/0009103 Statistical Mechanics +cond-mat/0009104 Mesoscale and Nanoscale Physics +cond-mat/0009105 Materials Science +cond-mat/0009106 Mesoscale and Nanoscale Physics +cond-mat/0009108 Statistical Mechanics +cond-mat/0009109 Statistical Mechanics +cond-mat/0009110 Statistical Mechanics +cond-mat/0009112 Strongly Correlated Electrons +cond-mat/0009113 Statistical Mechanics +cond-mat/0009114 Statistical Mechanics +cond-mat/0009115 Statistical Mechanics +cond-mat/0009116 Mesoscale and Nanoscale Physics +cond-mat/0009117 +cond-mat/0009118 Superconductivity +cond-mat/0009119 Statistical Mechanics +cond-mat/0009120 Statistical Mechanics +cond-mat/0009122 Disordered Systems and Neural Networks +cond-mat/0009123 Materials Science +cond-mat/0009127 Mesoscale and Nanoscale Physics +cond-mat/0009128 Strongly Correlated Electrons +cond-mat/0009129 Statistical Mechanics +cond-mat/0009130 +cond-mat/0009132 Strongly Correlated Electrons +cond-mat/0009134 Mesoscale and Nanoscale Physics +cond-mat/0009137 Superconductivity +cond-mat/0009140 Mesoscale and Nanoscale Physics +cond-mat/0009143 Strongly Correlated Electrons +cond-mat/0009144 Statistical Mechanics +cond-mat/0009145 Disordered Systems and Neural Networks +cond-mat/0009146 Mesoscale and Nanoscale Physics +cond-mat/0009147 Materials Science +cond-mat/0009150 Soft Condensed Matter +cond-mat/0009151 Disordered Systems and Neural Networks +cond-mat/0009152 Disordered Systems and Neural Networks +cond-mat/0009153 Strongly Correlated Electrons +cond-mat/0009155 Mesoscale and Nanoscale Physics +cond-mat/0009158 +cond-mat/0009160 Materials Science +cond-mat/0009162 Statistical Mechanics +cond-mat/0009164 Strongly Correlated Electrons +cond-mat/0009167 Soft Condensed Matter +cond-mat/0009168 +cond-mat/0009170 +cond-mat/0009173 Disordered Systems and Neural Networks +cond-mat/0009175 Strongly Correlated Electrons +cond-mat/0009178 Statistical Mechanics +cond-mat/0009179 Statistical Mechanics +cond-mat/0009182 Soft Condensed Matter +cond-mat/0009183 Soft Condensed Matter +cond-mat/0009185 +cond-mat/0009186 Superconductivity +cond-mat/0009187 +cond-mat/0009189 Statistical Mechanics +cond-mat/0009190 Statistical Mechanics +cond-mat/0009191 Superconductivity +cond-mat/0009193 Mesoscale and Nanoscale Physics +cond-mat/0009194 Superconductivity +cond-mat/0009195 Superconductivity +cond-mat/0009196 Soft Condensed Matter +cond-mat/0009197 Statistical Mechanics +cond-mat/0009199 +cond-mat/0009200 Materials Science +cond-mat/0009201 Mesoscale and Nanoscale Physics +cond-mat/0009203 Mesoscale and Nanoscale Physics +cond-mat/0009204 Superconductivity +cond-mat/0009205 Statistical Mechanics +cond-mat/0009207 Mesoscale and Nanoscale Physics +cond-mat/0009209 Materials Science +cond-mat/0009211 Disordered Systems and Neural Networks +cond-mat/0009213 Materials Science +cond-mat/0009214 Statistical Mechanics +cond-mat/0009218 +cond-mat/0009219 +cond-mat/0009220 +cond-mat/0009222 Statistical Mechanics +cond-mat/0009223 Strongly Correlated Electrons +cond-mat/0009225 Disordered Systems and Neural Networks +cond-mat/0009227 Materials Science +cond-mat/0009228 Disordered Systems and Neural Networks +cond-mat/0009229 Mesoscale and Nanoscale Physics +cond-mat/0009231 Statistical Mechanics +cond-mat/0009234 Disordered Systems and Neural Networks +cond-mat/0009235 Mesoscale and Nanoscale Physics +cond-mat/0009236 Disordered Systems and Neural Networks +cond-mat/0009238 Strongly Correlated Electrons +cond-mat/0009239 Statistical Mechanics +cond-mat/0009242 Strongly Correlated Electrons +cond-mat/0009249 +cond-mat/0009251 Mesoscale and Nanoscale Physics +cond-mat/0009254 Superconductivity +cond-mat/0009256 Soft Condensed Matter +cond-mat/0009257 Superconductivity +cond-mat/0009261 Disordered Systems and Neural Networks +cond-mat/0009263 Strongly Correlated Electrons +cond-mat/0009264 Disordered Systems and Neural Networks +cond-mat/0009265 Statistical Mechanics +cond-mat/0009266 Strongly Correlated Electrons +cond-mat/0009267 Soft Condensed Matter +cond-mat/0009268 Strongly Correlated Electrons +cond-mat/0009269 Mesoscale and Nanoscale Physics +cond-mat/0009271 Materials Science +cond-mat/0009272 Mesoscale and Nanoscale Physics +cond-mat/0009274 Soft Condensed Matter +cond-mat/0009275 +cond-mat/0009278 Superconductivity +cond-mat/0009281 Mesoscale and Nanoscale Physics +cond-mat/0009284 Statistical Mechanics +cond-mat/0009285 Mesoscale and Nanoscale Physics +cond-mat/0009286 +cond-mat/0009288 Materials Science +cond-mat/0009290 Strongly Correlated Electrons +cond-mat/0009291 Superconductivity +cond-mat/0009292 Disordered Systems and Neural Networks +cond-mat/0009295 +cond-mat/0009296 Superconductivity +cond-mat/0009297 Statistical Mechanics +cond-mat/0009298 Strongly Correlated Electrons +cond-mat/0009300 Soft Condensed Matter +cond-mat/0009301 +cond-mat/0009302 Materials Science +cond-mat/0009303 Mesoscale and Nanoscale Physics +cond-mat/0009306 Superconductivity +cond-mat/0009307 Mesoscale and Nanoscale Physics +cond-mat/0009308 Superconductivity +cond-mat/0009310 Superconductivity +cond-mat/0009312 Superconductivity +cond-mat/0009313 Soft Condensed Matter +cond-mat/0009314 Strongly Correlated Electrons +cond-mat/0009315 Strongly Correlated Electrons +cond-mat/0009316 Superconductivity +cond-mat/0009321 Statistical Mechanics +cond-mat/0009322 Statistical Mechanics +cond-mat/0009323 Mesoscale and Nanoscale Physics +cond-mat/0009324 Strongly Correlated Electrons +cond-mat/0009326 Statistical Mechanics +cond-mat/0009328 Superconductivity +cond-mat/0009329 +cond-mat/0009330 Materials Science +cond-mat/0009332 +cond-mat/0009333 Statistical Mechanics +cond-mat/0009334 +cond-mat/0009336 Strongly Correlated Electrons +cond-mat/0009337 Materials Science +cond-mat/0009338 Disordered Systems and Neural Networks +cond-mat/0009339 Statistical Mechanics +cond-mat/0009340 Mesoscale and Nanoscale Physics +cond-mat/0009341 Strongly Correlated Electrons +cond-mat/0009344 Mesoscale and Nanoscale Physics +cond-mat/0009346 Mesoscale and Nanoscale Physics +cond-mat/0009352 Mesoscale and Nanoscale Physics +cond-mat/0009359 Strongly Correlated Electrons +cond-mat/0009360 Strongly Correlated Electrons +cond-mat/0009361 Mesoscale and Nanoscale Physics +cond-mat/0009362 Mesoscale and Nanoscale Physics +cond-mat/0009363 Mesoscale and Nanoscale Physics +cond-mat/0009364 Materials Science +cond-mat/0009367 Strongly Correlated Electrons +cond-mat/0009369 Mesoscale and Nanoscale Physics +cond-mat/0009370 Strongly Correlated Electrons +cond-mat/0009371 +cond-mat/0009374 Mesoscale and Nanoscale Physics +cond-mat/0009376 Soft Condensed Matter +cond-mat/0009378 Disordered Systems and Neural Networks +cond-mat/0009381 Mesoscale and Nanoscale Physics +cond-mat/0009382 Disordered Systems and Neural Networks +cond-mat/0009383 Statistical Mechanics +cond-mat/0009385 Strongly Correlated Electrons +cond-mat/0009386 Mesoscale and Nanoscale Physics +cond-mat/0009387 Statistical Mechanics +cond-mat/0009388 Strongly Correlated Electrons +cond-mat/0009390 Mesoscale and Nanoscale Physics +cond-mat/0009391 Materials Science +cond-mat/0009395 Statistical Mechanics +cond-mat/0009396 Statistical Mechanics +cond-mat/0009398 Statistical Mechanics +cond-mat/0009399 Statistical Mechanics +cond-mat/0009400 Statistical Mechanics +cond-mat/0009401 Statistical Mechanics +cond-mat/0009402 Strongly Correlated Electrons +cond-mat/0009405 Mesoscale and Nanoscale Physics +cond-mat/0009406 Materials Science +cond-mat/0009407 Strongly Correlated Electrons +cond-mat/0009408 +cond-mat/0009410 Disordered Systems and Neural Networks +cond-mat/0009414 Superconductivity +cond-mat/0009415 Materials Science +cond-mat/0009417 Disordered Systems and Neural Networks +cond-mat/0009418 Disordered Systems and Neural Networks +cond-mat/0009421 Strongly Correlated Electrons +cond-mat/0009423 Mesoscale and Nanoscale Physics +cond-mat/0009424 Statistical Mechanics +cond-mat/0009431 Superconductivity +cond-mat/0009432 Mesoscale and Nanoscale Physics +cond-mat/0009433 Strongly Correlated Electrons +cond-mat/0009434 Superconductivity +cond-mat/0009435 Materials Science +cond-mat/0009439 Statistical Mechanics +cond-mat/0009440 Statistical Mechanics +cond-mat/0009441 Statistical Mechanics +cond-mat/0009442 Statistical Mechanics +cond-mat/0009443 +cond-mat/0009444 Mesoscale and Nanoscale Physics +cond-mat/0009446 Mesoscale and Nanoscale Physics +cond-mat/0009447 Strongly Correlated Electrons +cond-mat/0009448 Statistical Mechanics +cond-mat/0009449 Statistical Mechanics +cond-mat/0009451 Superconductivity +cond-mat/0009452 Mesoscale and Nanoscale Physics +cond-mat/0009454 Strongly Correlated Electrons +cond-mat/0009455 +cond-mat/0009456 Strongly Correlated Electrons +cond-mat/0009457 +cond-mat/0009458 +cond-mat/0009459 Materials Science +cond-mat/0009460 Strongly Correlated Electrons +cond-mat/0009461 Strongly Correlated Electrons +cond-mat/0009463 Mesoscale and Nanoscale Physics +cond-mat/0009465 Materials Science +cond-mat/0009466 Statistical Mechanics +cond-mat/0009467 Statistical Mechanics +cond-mat/0009468 Statistical Mechanics +cond-mat/0009470 Strongly Correlated Electrons +cond-mat/0009472 Strongly Correlated Electrons +cond-mat/0009473 Superconductivity +cond-mat/0009474 +cond-mat/0009475 Statistical Mechanics +cond-mat/0009476 Superconductivity +cond-mat/0009477 Mesoscale and Nanoscale Physics +cond-mat/0009479 Disordered Systems and Neural Networks +cond-mat/0009481 Strongly Correlated Electrons +cond-mat/0010001 Strongly Correlated Electrons +cond-mat/0010002 Superconductivity +cond-mat/0010003 Strongly Correlated Electrons +cond-mat/0010004 Statistical Mechanics +cond-mat/0010005 Mesoscale and Nanoscale Physics +cond-mat/0010010 Statistical Mechanics +cond-mat/0010013 Statistical Mechanics +cond-mat/0010014 Superconductivity +cond-mat/0010017 Strongly Correlated Electrons +cond-mat/0010021 +cond-mat/0010022 Disordered Systems and Neural Networks +cond-mat/0010023 Soft Condensed Matter +cond-mat/0010024 Superconductivity +cond-mat/0010025 Disordered Systems and Neural Networks +cond-mat/0010026 Disordered Systems and Neural Networks +cond-mat/0010027 Soft Condensed Matter +cond-mat/0010029 +cond-mat/0010031 Soft Condensed Matter +cond-mat/0010036 +cond-mat/0010037 Statistical Mechanics +cond-mat/0010038 Mesoscale and Nanoscale Physics +cond-mat/0010039 Strongly Correlated Electrons +cond-mat/0010040 Mesoscale and Nanoscale Physics +cond-mat/0010042 Mesoscale and Nanoscale Physics +cond-mat/0010045 Statistical Mechanics +cond-mat/0010046 Statistical Mechanics +cond-mat/0010048 Disordered Systems and Neural Networks +cond-mat/0010051 Materials Science +cond-mat/0010053 Statistical Mechanics +cond-mat/0010054 Mesoscale and Nanoscale Physics +cond-mat/0010055 Disordered Systems and Neural Networks +cond-mat/0010056 Materials Science +cond-mat/0010063 +cond-mat/0010064 Mesoscale and Nanoscale Physics +cond-mat/0010068 Mesoscale and Nanoscale Physics +cond-mat/0010069 Strongly Correlated Electrons +cond-mat/0010072 Strongly Correlated Electrons +cond-mat/0010073 Statistical Mechanics +cond-mat/0010074 Statistical Mechanics +cond-mat/0010075 Statistical Mechanics +cond-mat/0010076 +cond-mat/0010077 +cond-mat/0010078 Materials Science +cond-mat/0010079 Superconductivity +cond-mat/0010082 Mesoscale and Nanoscale Physics +cond-mat/0010083 Strongly Correlated Electrons +cond-mat/0010085 Superconductivity +cond-mat/0010088 Strongly Correlated Electrons +cond-mat/0010089 Superconductivity +cond-mat/0010090 Materials Science +cond-mat/0010091 Strongly Correlated Electrons +cond-mat/0010092 Strongly Correlated Electrons +cond-mat/0010094 Disordered Systems and Neural Networks +cond-mat/0010096 Materials Science +cond-mat/0010097 Statistical Mechanics +cond-mat/0010098 Statistical Mechanics +cond-mat/0010099 +cond-mat/0010101 Mesoscale and Nanoscale Physics +cond-mat/0010104 Disordered Systems and Neural Networks +cond-mat/0010105 Superconductivity +cond-mat/0010106 Strongly Correlated Electrons +cond-mat/0010108 Statistical Mechanics +cond-mat/0010109 Strongly Correlated Electrons +cond-mat/0010110 Strongly Correlated Electrons +cond-mat/0010111 Materials Science +cond-mat/0010112 Statistical Mechanics +cond-mat/0010113 Superconductivity +cond-mat/0010114 Strongly Correlated Electrons +cond-mat/0010115 Soft Condensed Matter +cond-mat/0010116 Strongly Correlated Electrons +cond-mat/0010117 Statistical Mechanics +cond-mat/0010118 +cond-mat/0010119 Superconductivity +cond-mat/0010120 +cond-mat/0010122 Soft Condensed Matter +cond-mat/0010123 Superconductivity +cond-mat/0010124 Mesoscale and Nanoscale Physics +cond-mat/0010126 Materials Science +cond-mat/0010128 Superconductivity +cond-mat/0010130 Soft Condensed Matter +cond-mat/0010131 Superconductivity +cond-mat/0010133 Statistical Mechanics +cond-mat/0010134 Mesoscale and Nanoscale Physics +cond-mat/0010136 Soft Condensed Matter +cond-mat/0010137 Superconductivity +cond-mat/0010138 Strongly Correlated Electrons +cond-mat/0010139 Mesoscale and Nanoscale Physics +cond-mat/0010140 Soft Condensed Matter +cond-mat/0010141 Materials Science +cond-mat/0010142 Statistical Mechanics +cond-mat/0010144 Superconductivity +cond-mat/0010146 Strongly Correlated Electrons +cond-mat/0010147 Statistical Mechanics +cond-mat/0010148 +cond-mat/0010149 Superconductivity +cond-mat/0010151 Superconductivity +cond-mat/0010152 Soft Condensed Matter +cond-mat/0010153 Materials Science +cond-mat/0010154 Soft Condensed Matter +cond-mat/0010155 Statistical Mechanics +cond-mat/0010157 Statistical Mechanics +cond-mat/0010158 Statistical Mechanics +cond-mat/0010159 Soft Condensed Matter +cond-mat/0010160 Statistical Mechanics +cond-mat/0010162 Strongly Correlated Electrons +cond-mat/0010164 +cond-mat/0010165 Strongly Correlated Electrons +cond-mat/0010167 Statistical Mechanics +cond-mat/0010168 Strongly Correlated Electrons +cond-mat/0010169 Strongly Correlated Electrons +cond-mat/0010171 Disordered Systems and Neural Networks +cond-mat/0010173 Disordered Systems and Neural Networks +cond-mat/0010176 Soft Condensed Matter +cond-mat/0010177 Statistical Mechanics +cond-mat/0010178 Disordered Systems and Neural Networks +cond-mat/0010179 Superconductivity +cond-mat/0010181 Disordered Systems and Neural Networks +cond-mat/0010182 Statistical Mechanics +cond-mat/0010183 +cond-mat/0010184 Materials Science +cond-mat/0010185 Materials Science +cond-mat/0010186 Mesoscale and Nanoscale Physics +cond-mat/0010188 Statistical Mechanics +cond-mat/0010195 Disordered Systems and Neural Networks +cond-mat/0010196 Strongly Correlated Electrons +cond-mat/0010197 Strongly Correlated Electrons +cond-mat/0010198 Strongly Correlated Electrons +cond-mat/0010199 Superconductivity +cond-mat/0010204 Soft Condensed Matter +cond-mat/0010205 +cond-mat/0010207 Statistical Mechanics +cond-mat/0010209 Disordered Systems and Neural Networks +cond-mat/0010212 Mesoscale and Nanoscale Physics +cond-mat/0010213 Statistical Mechanics +cond-mat/0010214 Statistical Mechanics +cond-mat/0010215 +cond-mat/0010216 Soft Condensed Matter +cond-mat/0010217 Superconductivity +cond-mat/0010219 Soft Condensed Matter +cond-mat/0010220 Mesoscale and Nanoscale Physics +cond-mat/0010221 Strongly Correlated Electrons +cond-mat/0010223 Statistical Mechanics +cond-mat/0010224 Soft Condensed Matter +cond-mat/0010226 Mesoscale and Nanoscale Physics +cond-mat/0010227 Superconductivity +cond-mat/0010228 Mesoscale and Nanoscale Physics +cond-mat/0010229 Superconductivity +cond-mat/0010230 Superconductivity +cond-mat/0010231 +cond-mat/0010234 Superconductivity +cond-mat/0010235 Soft Condensed Matter +cond-mat/0010236 Statistical Mechanics +cond-mat/0010237 Statistical Mechanics +cond-mat/0010238 Statistical Mechanics +cond-mat/0010239 Strongly Correlated Electrons +cond-mat/0010240 Superconductivity +cond-mat/0010241 Strongly Correlated Electrons +cond-mat/0010244 Statistical Mechanics +cond-mat/0010247 +cond-mat/0010249 Statistical Mechanics +cond-mat/0010250 Mesoscale and Nanoscale Physics +cond-mat/0010251 Disordered Systems and Neural Networks +cond-mat/0010252 Soft Condensed Matter +cond-mat/0010253 Statistical Mechanics +cond-mat/0010256 Mesoscale and Nanoscale Physics +cond-mat/0010257 Strongly Correlated Electrons +cond-mat/0010259 Strongly Correlated Electrons +cond-mat/0010260 Superconductivity +cond-mat/0010262 Soft Condensed Matter +cond-mat/0010263 Statistical Mechanics +cond-mat/0010264 Soft Condensed Matter +cond-mat/0010266 Statistical Mechanics +cond-mat/0010270 Mesoscale and Nanoscale Physics +cond-mat/0010271 Materials Science +cond-mat/0010272 Strongly Correlated Electrons +cond-mat/0010274 Superconductivity +cond-mat/0010275 Strongly Correlated Electrons +cond-mat/0010276 Statistical Mechanics +cond-mat/0010277 Mesoscale and Nanoscale Physics +cond-mat/0010278 Statistical Mechanics +cond-mat/0010279 Mesoscale and Nanoscale Physics +cond-mat/0010280 +cond-mat/0010282 Mesoscale and Nanoscale Physics +cond-mat/0010283 Statistical Mechanics +cond-mat/0010284 Materials Science +cond-mat/0010287 Strongly Correlated Electrons +cond-mat/0010290 Superconductivity +cond-mat/0010291 Disordered Systems and Neural Networks +cond-mat/0010292 Superconductivity +cond-mat/0010296 Disordered Systems and Neural Networks +cond-mat/0010298 Superconductivity +cond-mat/0010301 Statistical Mechanics +cond-mat/0010302 Disordered Systems and Neural Networks +cond-mat/0010303 Materials Science +cond-mat/0010304 Superconductivity +cond-mat/0010306 Strongly Correlated Electrons +cond-mat/0010307 Superconductivity +cond-mat/0010310 Mesoscale and Nanoscale Physics +cond-mat/0010312 Strongly Correlated Electrons +cond-mat/0010313 Strongly Correlated Electrons +cond-mat/0010314 Superconductivity +cond-mat/0010315 Statistical Mechanics +cond-mat/0010317 Statistical Mechanics +cond-mat/0010319 Statistical Mechanics +cond-mat/0010320 Soft Condensed Matter +cond-mat/0010321 Statistical Mechanics +cond-mat/0010322 Strongly Correlated Electrons +cond-mat/0010323 +cond-mat/0010324 Superconductivity +cond-mat/0010325 Statistical Mechanics +cond-mat/0010326 Materials Science +cond-mat/0010327 Strongly Correlated Electrons +cond-mat/0010328 Strongly Correlated Electrons +cond-mat/0010329 Mesoscale and Nanoscale Physics +cond-mat/0010330 +cond-mat/0010331 Soft Condensed Matter +cond-mat/0010332 Materials Science +cond-mat/0010333 Statistical Mechanics +cond-mat/0010335 Superconductivity +cond-mat/0010337 Statistical Mechanics +cond-mat/0010338 +cond-mat/0010339 Strongly Correlated Electrons +cond-mat/0010340 Superconductivity +cond-mat/0010341 Materials Science +cond-mat/0010344 Materials Science +cond-mat/0010345 Statistical Mechanics +cond-mat/0010347 Statistical Mechanics +cond-mat/0010348 Mesoscale and Nanoscale Physics +cond-mat/0010349 Statistical Mechanics +cond-mat/0010350 Superconductivity +cond-mat/0010352 Soft Condensed Matter +cond-mat/0010353 Statistical Mechanics +cond-mat/0010358 Statistical Mechanics +cond-mat/0010361 Statistical Mechanics +cond-mat/0010362 Superconductivity +cond-mat/0010363 Statistical Mechanics +cond-mat/0010365 Statistical Mechanics +cond-mat/0010368 Materials Science +cond-mat/0010374 Soft Condensed Matter +cond-mat/0010375 Soft Condensed Matter +cond-mat/0010377 Statistical Mechanics +cond-mat/0010378 Superconductivity +cond-mat/0010379 Mesoscale and Nanoscale Physics +cond-mat/0010382 Strongly Correlated Electrons +cond-mat/0010383 Strongly Correlated Electrons +cond-mat/0010384 Materials Science +cond-mat/0010385 Strongly Correlated Electrons +cond-mat/0010388 Strongly Correlated Electrons +cond-mat/0010390 Soft Condensed Matter +cond-mat/0010394 +cond-mat/0010395 Strongly Correlated Electrons +cond-mat/0010396 Materials Science +cond-mat/0010397 Disordered Systems and Neural Networks +cond-mat/0010400 Soft Condensed Matter +cond-mat/0010401 Mesoscale and Nanoscale Physics +cond-mat/0010402 Superconductivity +cond-mat/0010404 Strongly Correlated Electrons +cond-mat/0010410 Statistical Mechanics +cond-mat/0010411 Strongly Correlated Electrons +cond-mat/0010412 Soft Condensed Matter +cond-mat/0010413 Mesoscale and Nanoscale Physics +cond-mat/0010414 Statistical Mechanics +cond-mat/0010416 +cond-mat/0010417 Mesoscale and Nanoscale Physics +cond-mat/0010418 Strongly Correlated Electrons +cond-mat/0010419 +cond-mat/0010420 Materials Science +cond-mat/0010421 Mesoscale and Nanoscale Physics +cond-mat/0010422 Strongly Correlated Electrons +cond-mat/0010424 Mesoscale and Nanoscale Physics +cond-mat/0010425 +cond-mat/0010426 +cond-mat/0010427 Strongly Correlated Electrons +cond-mat/0010429 Strongly Correlated Electrons +cond-mat/0010430 Disordered Systems and Neural Networks +cond-mat/0010431 Statistical Mechanics +cond-mat/0010432 Materials Science +cond-mat/0010433 Strongly Correlated Electrons +cond-mat/0010434 Mesoscale and Nanoscale Physics +cond-mat/0010436 Strongly Correlated Electrons +cond-mat/0010437 Mesoscale and Nanoscale Physics +cond-mat/0010438 Mesoscale and Nanoscale Physics +cond-mat/0010439 Materials Science +cond-mat/0010440 Mesoscale and Nanoscale Physics +cond-mat/0010441 Mesoscale and Nanoscale Physics +cond-mat/0010443 Disordered Systems and Neural Networks +cond-mat/0010444 Materials Science +cond-mat/0010445 Superconductivity +cond-mat/0010446 Statistical Mechanics +cond-mat/0010448 Strongly Correlated Electrons +cond-mat/0010449 +cond-mat/0010450 Strongly Correlated Electrons +cond-mat/0010451 Statistical Mechanics +cond-mat/0010454 +cond-mat/0010455 Statistical Mechanics +cond-mat/0010456 +cond-mat/0010458 Mesoscale and Nanoscale Physics +cond-mat/0010459 Materials Science +cond-mat/0010461 Statistical Mechanics +cond-mat/0010464 Mesoscale and Nanoscale Physics +cond-mat/0010465 Strongly Correlated Electrons +cond-mat/0010466 Mesoscale and Nanoscale Physics +cond-mat/0010468 Soft Condensed Matter +cond-mat/0010469 Mesoscale and Nanoscale Physics +cond-mat/0010473 Mesoscale and Nanoscale Physics +cond-mat/0010474 Strongly Correlated Electrons +cond-mat/0010477 Superconductivity +cond-mat/0010478 Statistical Mechanics +cond-mat/0010484 Soft Condensed Matter +cond-mat/0010487 Mesoscale and Nanoscale Physics +cond-mat/0010489 Superconductivity +cond-mat/0010490 Mesoscale and Nanoscale Physics +cond-mat/0010493 Mesoscale and Nanoscale Physics +cond-mat/0010494 Mesoscale and Nanoscale Physics +cond-mat/0010495 Disordered Systems and Neural Networks +cond-mat/0010496 Disordered Systems and Neural Networks +cond-mat/0010497 Strongly Correlated Electrons +cond-mat/0010498 Strongly Correlated Electrons +cond-mat/0010499 Strongly Correlated Electrons +cond-mat/0010500 Materials Science +cond-mat/0010501 Materials Science +cond-mat/0010503 Materials Science +cond-mat/0010504 Strongly Correlated Electrons +cond-mat/0010505 Mesoscale and Nanoscale Physics +cond-mat/0011001 Strongly Correlated Electrons +cond-mat/0011002 Strongly Correlated Electrons +cond-mat/0011003 Disordered Systems and Neural Networks +cond-mat/0011005 Statistical Mechanics +cond-mat/0011007 +cond-mat/0011009 Mesoscale and Nanoscale Physics +cond-mat/0011010 Soft Condensed Matter +cond-mat/0011012 Statistical Mechanics +cond-mat/0011014 Superconductivity +cond-mat/0011015 +cond-mat/0011016 +cond-mat/0011017 Mesoscale and Nanoscale Physics +cond-mat/0011019 Superconductivity +cond-mat/0011020 +cond-mat/0011021 Superconductivity +cond-mat/0011025 Mesoscale and Nanoscale Physics +cond-mat/0011026 Superconductivity +cond-mat/0011027 Superconductivity +cond-mat/0011028 Disordered Systems and Neural Networks +cond-mat/0011031 Mesoscale and Nanoscale Physics +cond-mat/0011032 Mesoscale and Nanoscale Physics +cond-mat/0011033 Strongly Correlated Electrons +cond-mat/0011034 Strongly Correlated Electrons +cond-mat/0011039 Statistical Mechanics +cond-mat/0011040 Mesoscale and Nanoscale Physics +cond-mat/0011041 Strongly Correlated Electrons +cond-mat/0011043 Strongly Correlated Electrons +cond-mat/0011044 Mesoscale and Nanoscale Physics +cond-mat/0011045 Soft Condensed Matter +cond-mat/0011046 Strongly Correlated Electrons +cond-mat/0011048 Statistical Mechanics +cond-mat/0011050 Mesoscale and Nanoscale Physics +cond-mat/0011051 Statistical Mechanics +cond-mat/0011052 Strongly Correlated Electrons +cond-mat/0011054 Strongly Correlated Electrons +cond-mat/0011055 Strongly Correlated Electrons +cond-mat/0011056 Statistical Mechanics +cond-mat/0011057 Superconductivity +cond-mat/0011058 Superconductivity +cond-mat/0011059 Materials Science +cond-mat/0011061 Strongly Correlated Electrons +cond-mat/0011063 Materials Science +cond-mat/0011064 Disordered Systems and Neural Networks +cond-mat/0011065 Disordered Systems and Neural Networks +cond-mat/0011066 Soft Condensed Matter +cond-mat/0011068 Soft Condensed Matter +cond-mat/0011069 +cond-mat/0011070 Strongly Correlated Electrons +cond-mat/0011071 Strongly Correlated Electrons +cond-mat/0011074 Disordered Systems and Neural Networks +cond-mat/0011075 Soft Condensed Matter +cond-mat/0011076 Statistical Mechanics +cond-mat/0011079 Soft Condensed Matter +cond-mat/0011080 Superconductivity +cond-mat/0011081 Mesoscale and Nanoscale Physics +cond-mat/0011082 Superconductivity +cond-mat/0011084 +cond-mat/0011086 Statistical Mechanics +cond-mat/0011087 Mesoscale and Nanoscale Physics +cond-mat/0011088 Statistical Mechanics +cond-mat/0011089 Strongly Correlated Electrons +cond-mat/0011090 Materials Science +cond-mat/0011091 Superconductivity +cond-mat/0011094 Statistical Mechanics +cond-mat/0011096 Soft Condensed Matter +cond-mat/0011097 Strongly Correlated Electrons +cond-mat/0011100 Superconductivity +cond-mat/0011104 +cond-mat/0011113 Statistical Mechanics +cond-mat/0011114 Statistical Mechanics +cond-mat/0011115 Statistical Mechanics +cond-mat/0011117 Statistical Mechanics +cond-mat/0011120 Statistical Mechanics +cond-mat/0011121 Strongly Correlated Electrons +cond-mat/0011123 Materials Science +cond-mat/0011124 Disordered Systems and Neural Networks +cond-mat/0011127 +cond-mat/0011129 Mesoscale and Nanoscale Physics +cond-mat/0011131 Materials Science +cond-mat/0011134 Superconductivity +cond-mat/0011135 +cond-mat/0011136 Statistical Mechanics +cond-mat/0011138 Mesoscale and Nanoscale Physics +cond-mat/0011139 Mesoscale and Nanoscale Physics +cond-mat/0011140 Statistical Mechanics +cond-mat/0011142 +cond-mat/0011143 Mesoscale and Nanoscale Physics +cond-mat/0011144 Statistical Mechanics +cond-mat/0011146 Disordered Systems and Neural Networks +cond-mat/0011147 Materials Science +cond-mat/0011148 Superconductivity +cond-mat/0011150 +cond-mat/0011152 +cond-mat/0011154 Superconductivity +cond-mat/0011155 Mesoscale and Nanoscale Physics +cond-mat/0011156 Strongly Correlated Electrons +cond-mat/0011158 Materials Science +cond-mat/0011162 +cond-mat/0011163 +cond-mat/0011166 Materials Science +cond-mat/0011168 Statistical Mechanics +cond-mat/0011170 Strongly Correlated Electrons +cond-mat/0011171 Strongly Correlated Electrons +cond-mat/0011172 Superconductivity +cond-mat/0011173 Superconductivity +cond-mat/0011174 Statistical Mechanics +cond-mat/0011176 Superconductivity +cond-mat/0011177 Mesoscale and Nanoscale Physics +cond-mat/0011178 Mesoscale and Nanoscale Physics +cond-mat/0011179 Strongly Correlated Electrons +cond-mat/0011180 +cond-mat/0011181 Disordered Systems and Neural Networks +cond-mat/0011182 Superconductivity +cond-mat/0011183 Superconductivity +cond-mat/0011184 Materials Science +cond-mat/0011185 Strongly Correlated Electrons +cond-mat/0011186 Superconductivity +cond-mat/0011187 Soft Condensed Matter +cond-mat/0011188 Superconductivity +cond-mat/0011190 +cond-mat/0011191 Statistical Mechanics +cond-mat/0011197 Superconductivity +cond-mat/0011199 Statistical Mechanics +cond-mat/0011200 Superconductivity +cond-mat/0011201 Mesoscale and Nanoscale Physics +cond-mat/0011202 Superconductivity +cond-mat/0011203 Superconductivity +cond-mat/0011206 Materials Science +cond-mat/0011207 Superconductivity +cond-mat/0011210 Statistical Mechanics +cond-mat/0011212 Mesoscale and Nanoscale Physics +cond-mat/0011213 +cond-mat/0011215 Mesoscale and Nanoscale Physics +cond-mat/0011216 Strongly Correlated Electrons +cond-mat/0011219 Materials Science +cond-mat/0011221 Mesoscale and Nanoscale Physics +cond-mat/0011222 Soft Condensed Matter +cond-mat/0011226 Materials Science +cond-mat/0011228 Materials Science +cond-mat/0011229 +cond-mat/0011230 Superconductivity +cond-mat/0011231 Strongly Correlated Electrons +cond-mat/0011234 Strongly Correlated Electrons +cond-mat/0011236 Statistical Mechanics +cond-mat/0011237 Superconductivity +cond-mat/0011239 Disordered Systems and Neural Networks +cond-mat/0011240 Statistical Mechanics +cond-mat/0011242 Statistical Mechanics +cond-mat/0011244 Mesoscale and Nanoscale Physics +cond-mat/0011245 Superconductivity +cond-mat/0011246 +cond-mat/0011247 Strongly Correlated Electrons +cond-mat/0011248 Mesoscale and Nanoscale Physics +cond-mat/0011249 +cond-mat/0011250 Statistical Mechanics +cond-mat/0011251 Statistical Mechanics +cond-mat/0011252 Superconductivity +cond-mat/0011255 Superconductivity +cond-mat/0011256 Superconductivity +cond-mat/0011257 Superconductivity +cond-mat/0011263 Statistical Mechanics +cond-mat/0011264 Mesoscale and Nanoscale Physics +cond-mat/0011265 Disordered Systems and Neural Networks +cond-mat/0011266 Mesoscale and Nanoscale Physics +cond-mat/0011270 Strongly Correlated Electrons +cond-mat/0011272 Superconductivity +cond-mat/0011274 Superconductivity +cond-mat/0011275 Superconductivity +cond-mat/0011276 Statistical Mechanics +cond-mat/0011277 Superconductivity +cond-mat/0011278 Materials Science +cond-mat/0011279 Materials Science +cond-mat/0011281 +cond-mat/0011282 Strongly Correlated Electrons +cond-mat/0011286 +cond-mat/0011287 Superconductivity +cond-mat/0011289 Mesoscale and Nanoscale Physics +cond-mat/0011290 Statistical Mechanics +cond-mat/0011296 Strongly Correlated Electrons +cond-mat/0011298 Superconductivity +cond-mat/0011301 Superconductivity +cond-mat/0011302 Disordered Systems and Neural Networks +cond-mat/0011303 +cond-mat/0011306 Statistical Mechanics +cond-mat/0011307 Superconductivity +cond-mat/0011308 Soft Condensed Matter +cond-mat/0011309 Materials Science +cond-mat/0011310 Mesoscale and Nanoscale Physics +cond-mat/0011311 Materials Science +cond-mat/0011312 Strongly Correlated Electrons +cond-mat/0011313 Mesoscale and Nanoscale Physics +cond-mat/0011314 Statistical Mechanics +cond-mat/0011315 Mesoscale and Nanoscale Physics +cond-mat/0011317 Statistical Mechanics +cond-mat/0011319 Disordered Systems and Neural Networks +cond-mat/0011320 +cond-mat/0011322 Statistical Mechanics +cond-mat/0011324 Superconductivity +cond-mat/0011325 Materials Science +cond-mat/0011327 Superconductivity +cond-mat/0011328 Strongly Correlated Electrons +cond-mat/0011329 +cond-mat/0011330 Statistical Mechanics +cond-mat/0011331 Statistical Mechanics +cond-mat/0011332 +cond-mat/0011333 Superconductivity +cond-mat/0011335 Strongly Correlated Electrons +cond-mat/0011336 +cond-mat/0011338 Mesoscale and Nanoscale Physics +cond-mat/0011339 Mesoscale and Nanoscale Physics +cond-mat/0011340 +cond-mat/0011341 +cond-mat/0011342 Strongly Correlated Electrons +cond-mat/0011343 Materials Science +cond-mat/0011344 Mesoscale and Nanoscale Physics +cond-mat/0011345 Superconductivity +cond-mat/0011346 Statistical Mechanics +cond-mat/0011348 Strongly Correlated Electrons +cond-mat/0011349 Superconductivity +cond-mat/0011350 Strongly Correlated Electrons +cond-mat/0011352 Strongly Correlated Electrons +cond-mat/0011353 Statistical Mechanics +cond-mat/0011355 Strongly Correlated Electrons +cond-mat/0011356 Statistical Mechanics +cond-mat/0011357 Superconductivity +cond-mat/0011358 Strongly Correlated Electrons +cond-mat/0011359 Soft Condensed Matter +cond-mat/0011360 Statistical Mechanics +cond-mat/0011361 Mesoscale and Nanoscale Physics +cond-mat/0011362 Statistical Mechanics +cond-mat/0011363 Mesoscale and Nanoscale Physics +cond-mat/0011365 Strongly Correlated Electrons +cond-mat/0011366 Superconductivity +cond-mat/0011368 Strongly Correlated Electrons +cond-mat/0011370 Statistical Mechanics +cond-mat/0011375 Statistical Mechanics +cond-mat/0011377 Materials Science +cond-mat/0011380 Superconductivity +cond-mat/0011381 Superconductivity +cond-mat/0011382 Statistical Mechanics +cond-mat/0011384 Mesoscale and Nanoscale Physics +cond-mat/0011386 Soft Condensed Matter +cond-mat/0011387 Mesoscale and Nanoscale Physics +cond-mat/0011388 Strongly Correlated Electrons +cond-mat/0011390 Strongly Correlated Electrons +cond-mat/0011392 Superconductivity +cond-mat/0011393 Mesoscale and Nanoscale Physics +cond-mat/0011394 Mesoscale and Nanoscale Physics +cond-mat/0011395 Strongly Correlated Electrons +cond-mat/0011397 +cond-mat/0011398 Superconductivity +cond-mat/0011399 Statistical Mechanics +cond-mat/0011400 Statistical Mechanics +cond-mat/0011401 Statistical Mechanics +cond-mat/0011402 Mesoscale and Nanoscale Physics +cond-mat/0011403 Mesoscale and Nanoscale Physics +cond-mat/0011404 Materials Science +cond-mat/0011405 +cond-mat/0011406 Materials Science +cond-mat/0011408 Superconductivity +cond-mat/0011410 Mesoscale and Nanoscale Physics +cond-mat/0011411 Soft Condensed Matter +cond-mat/0011412 Soft Condensed Matter +cond-mat/0011413 Mesoscale and Nanoscale Physics +cond-mat/0011414 Soft Condensed Matter +cond-mat/0011416 Superconductivity +cond-mat/0011417 Disordered Systems and Neural Networks +cond-mat/0011418 Statistical Mechanics +cond-mat/0011419 Strongly Correlated Electrons +cond-mat/0011421 Soft Condensed Matter +cond-mat/0011423 Strongly Correlated Electrons +cond-mat/0011425 Superconductivity +cond-mat/0011427 Mesoscale and Nanoscale Physics +cond-mat/0011428 Disordered Systems and Neural Networks +cond-mat/0011430 +cond-mat/0011431 +cond-mat/0011432 Statistical Mechanics +cond-mat/0011433 Strongly Correlated Electrons +cond-mat/0011434 Materials Science +cond-mat/0011436 Materials Science +cond-mat/0011437 Superconductivity +cond-mat/0011442 Statistical Mechanics +cond-mat/0011443 Superconductivity +cond-mat/0011444 Statistical Mechanics +cond-mat/0011446 Disordered Systems and Neural Networks +cond-mat/0011449 +cond-mat/0011450 Soft Condensed Matter +cond-mat/0011452 Soft Condensed Matter +cond-mat/0011453 Strongly Correlated Electrons +cond-mat/0011457 Mesoscale and Nanoscale Physics +cond-mat/0011458 Statistical Mechanics +cond-mat/0011461 +cond-mat/0011463 Statistical Mechanics +cond-mat/0011465 Mesoscale and Nanoscale Physics +cond-mat/0011468 +cond-mat/0011473 Mesoscale and Nanoscale Physics +cond-mat/0011474 Superconductivity +cond-mat/0011475 Statistical Mechanics +cond-mat/0011476 Superconductivity +cond-mat/0011477 Strongly Correlated Electrons +cond-mat/0011479 Disordered Systems and Neural Networks +cond-mat/0011481 Materials Science +cond-mat/0011482 Superconductivity +cond-mat/0011484 Statistical Mechanics +cond-mat/0011486 +cond-mat/0011488 Statistical Mechanics +cond-mat/0011490 Statistical Mechanics +cond-mat/0011492 Statistical Mechanics +cond-mat/0011494 Disordered Systems and Neural Networks +cond-mat/0011495 Superconductivity +cond-mat/0011496 Statistical Mechanics +cond-mat/0011497 Strongly Correlated Electrons +cond-mat/0011498 +cond-mat/0011500 Superconductivity +cond-mat/0011502 Strongly Correlated Electrons +cond-mat/0011503 Statistical Mechanics +cond-mat/0011504 +cond-mat/0011505 Statistical Mechanics +cond-mat/0011508 Disordered Systems and Neural Networks +cond-mat/0011510 Statistical Mechanics +cond-mat/0011511 Mesoscale and Nanoscale Physics +cond-mat/0011512 Mesoscale and Nanoscale Physics +cond-mat/0011513 +cond-mat/0011514 Superconductivity +cond-mat/0011515 Mesoscale and Nanoscale Physics +cond-mat/0011518 Strongly Correlated Electrons +cond-mat/0011519 Disordered Systems and Neural Networks +cond-mat/0011520 Mesoscale and Nanoscale Physics +cond-mat/0011521 +cond-mat/0011525 Disordered Systems and Neural Networks +cond-mat/0011526 Soft Condensed Matter +cond-mat/0011527 Strongly Correlated Electrons +cond-mat/0011528 +cond-mat/0011529 Strongly Correlated Electrons +cond-mat/0011530 Materials Science +cond-mat/0012002 Strongly Correlated Electrons +cond-mat/0012003 Superconductivity +cond-mat/0012005 Mesoscale and Nanoscale Physics +cond-mat/0012006 Strongly Correlated Electrons +cond-mat/0012008 +cond-mat/0012009 +cond-mat/0012010 Soft Condensed Matter +cond-mat/0012011 Soft Condensed Matter +cond-mat/0012013 Strongly Correlated Electrons +cond-mat/0012016 Superconductivity +cond-mat/0012019 Strongly Correlated Electrons +cond-mat/0012020 Soft Condensed Matter +cond-mat/0012025 Mesoscale and Nanoscale Physics +cond-mat/0012027 Mesoscale and Nanoscale Physics +cond-mat/0012028 Strongly Correlated Electrons +cond-mat/0012029 Mesoscale and Nanoscale Physics +cond-mat/0012030 Mesoscale and Nanoscale Physics +cond-mat/0012031 +cond-mat/0012032 Soft Condensed Matter +cond-mat/0012033 Disordered Systems and Neural Networks +cond-mat/0012035 Statistical Mechanics +cond-mat/0012039 Mesoscale and Nanoscale Physics +cond-mat/0012041 Statistical Mechanics +cond-mat/0012043 Statistical Mechanics +cond-mat/0012045 Disordered Systems and Neural Networks +cond-mat/0012046 Mesoscale and Nanoscale Physics +cond-mat/0012048 Soft Condensed Matter +cond-mat/0012049 Materials Science +cond-mat/0012051 +cond-mat/0012055 Strongly Correlated Electrons +cond-mat/0012057 Statistical Mechanics +cond-mat/0012059 Soft Condensed Matter +cond-mat/0012060 Superconductivity +cond-mat/0012061 Statistical Mechanics +cond-mat/0012064 Strongly Correlated Electrons +cond-mat/0012066 Statistical Mechanics +cond-mat/0012067 Soft Condensed Matter +cond-mat/0012068 Statistical Mechanics +cond-mat/0012070 Disordered Systems and Neural Networks +cond-mat/0012072 +cond-mat/0012073 +cond-mat/0012075 Mesoscale and Nanoscale Physics +cond-mat/0012076 Superconductivity +cond-mat/0012077 Superconductivity +cond-mat/0012081 Superconductivity +cond-mat/0012084 Strongly Correlated Electrons +cond-mat/0012085 +cond-mat/0012087 Superconductivity +cond-mat/0012089 Disordered Systems and Neural Networks +cond-mat/0012090 +cond-mat/0012091 Statistical Mechanics +cond-mat/0012092 Materials Science +cond-mat/0012093 Statistical Mechanics +cond-mat/0012094 Mesoscale and Nanoscale Physics +cond-mat/0012096 +cond-mat/0012097 Strongly Correlated Electrons +cond-mat/0012098 Strongly Correlated Electrons +cond-mat/0012101 +cond-mat/0012102 Statistical Mechanics +cond-mat/0012104 Mesoscale and Nanoscale Physics +cond-mat/0012105 Statistical Mechanics +cond-mat/0012108 Statistical Mechanics +cond-mat/0012109 Statistical Mechanics +cond-mat/0012110 Statistical Mechanics +cond-mat/0012111 +cond-mat/0012112 Superconductivity +cond-mat/0012113 Statistical Mechanics +cond-mat/0012116 Materials Science +cond-mat/0012117 Strongly Correlated Electrons +cond-mat/0012118 Strongly Correlated Electrons +cond-mat/0012122 Materials Science +cond-mat/0012123 Materials Science +cond-mat/0012124 Soft Condensed Matter +cond-mat/0012125 Strongly Correlated Electrons +cond-mat/0012126 Materials Science +cond-mat/0012127 Materials Science +cond-mat/0012128 Mesoscale and Nanoscale Physics +cond-mat/0012130 Strongly Correlated Electrons +cond-mat/0012131 Mesoscale and Nanoscale Physics +cond-mat/0012132 Mesoscale and Nanoscale Physics +cond-mat/0012133 Mesoscale and Nanoscale Physics +cond-mat/0012135 +cond-mat/0012137 Superconductivity +cond-mat/0012138 Superconductivity +cond-mat/0012139 Statistical Mechanics +cond-mat/0012140 Mesoscale and Nanoscale Physics +cond-mat/0012142 Disordered Systems and Neural Networks +cond-mat/0012143 Strongly Correlated Electrons +cond-mat/0012147 Strongly Correlated Electrons +cond-mat/0012148 Mesoscale and Nanoscale Physics +cond-mat/0012149 Disordered Systems and Neural Networks +cond-mat/0012150 Statistical Mechanics +cond-mat/0012152 Superconductivity +cond-mat/0012154 Strongly Correlated Electrons +cond-mat/0012161 Disordered Systems and Neural Networks +cond-mat/0012162 Statistical Mechanics +cond-mat/0012163 Strongly Correlated Electrons +cond-mat/0012165 Mesoscale and Nanoscale Physics +cond-mat/0012166 Strongly Correlated Electrons +cond-mat/0012167 +cond-mat/0012169 Disordered Systems and Neural Networks +cond-mat/0012171 +cond-mat/0012172 Statistical Mechanics +cond-mat/0012173 Superconductivity +cond-mat/0012174 Materials Science +cond-mat/0012175 Materials Science +cond-mat/0012178 Statistical Mechanics +cond-mat/0012179 Strongly Correlated Electrons +cond-mat/0012181 Statistical Mechanics +cond-mat/0012182 Statistical Mechanics +cond-mat/0012183 Superconductivity +cond-mat/0012184 Superconductivity +cond-mat/0012190 Statistical Mechanics +cond-mat/0012191 Statistical Mechanics +cond-mat/0012192 Strongly Correlated Electrons +cond-mat/0012194 Statistical Mechanics +cond-mat/0012197 Strongly Correlated Electrons +cond-mat/0012199 Superconductivity +cond-mat/0012200 Mesoscale and Nanoscale Physics +cond-mat/0012201 Mesoscale and Nanoscale Physics +cond-mat/0012204 Statistical Mechanics +cond-mat/0012205 Mesoscale and Nanoscale Physics +cond-mat/0012206 Statistical Mechanics +cond-mat/0012207 +cond-mat/0012209 Strongly Correlated Electrons +cond-mat/0012214 Statistical Mechanics +cond-mat/0012215 Statistical Mechanics +cond-mat/0012216 Strongly Correlated Electrons +cond-mat/0012217 Materials Science +cond-mat/0012218 Disordered Systems and Neural Networks +cond-mat/0012219 Materials Science +cond-mat/0012220 Materials Science +cond-mat/0012221 Superconductivity +cond-mat/0012222 Disordered Systems and Neural Networks +cond-mat/0012225 Statistical Mechanics +cond-mat/0012227 +cond-mat/0012229 Statistical Mechanics +cond-mat/0012230 Statistical Mechanics +cond-mat/0012231 Materials Science +cond-mat/0012232 Disordered Systems and Neural Networks +cond-mat/0012233 +cond-mat/0012234 Superconductivity +cond-mat/0012237 Strongly Correlated Electrons +cond-mat/0012238 Superconductivity +cond-mat/0012239 Strongly Correlated Electrons +cond-mat/0012240 Mesoscale and Nanoscale Physics +cond-mat/0012242 Mesoscale and Nanoscale Physics +cond-mat/0012243 Soft Condensed Matter +cond-mat/0012244 Mesoscale and Nanoscale Physics +cond-mat/0012246 Disordered Systems and Neural Networks +cond-mat/0012247 Mesoscale and Nanoscale Physics +cond-mat/0012249 Mesoscale and Nanoscale Physics +cond-mat/0012252 Mesoscale and Nanoscale Physics +cond-mat/0012253 +cond-mat/0012254 Statistical Mechanics +cond-mat/0012256 Soft Condensed Matter +cond-mat/0012259 Statistical Mechanics +cond-mat/0012260 Strongly Correlated Electrons +cond-mat/0012261 Strongly Correlated Electrons +cond-mat/0012262 Mesoscale and Nanoscale Physics +cond-mat/0012264 Soft Condensed Matter +cond-mat/0012265 Mesoscale and Nanoscale Physics +cond-mat/0012272 +cond-mat/0012273 Statistical Mechanics +cond-mat/0012275 Disordered Systems and Neural Networks +cond-mat/0012276 Superconductivity +cond-mat/0012278 Strongly Correlated Electrons +cond-mat/0012282 Mesoscale and Nanoscale Physics +cond-mat/0012283 +cond-mat/0012284 Statistical Mechanics +cond-mat/0012285 Statistical Mechanics +cond-mat/0012286 Superconductivity +cond-mat/0012287 Strongly Correlated Electrons +cond-mat/0012288 Statistical Mechanics +cond-mat/0012289 Soft Condensed Matter +cond-mat/0012290 +cond-mat/0012293 Strongly Correlated Electrons +cond-mat/0012294 +cond-mat/0012296 Disordered Systems and Neural Networks +cond-mat/0012298 Disordered Systems and Neural Networks +cond-mat/0012299 Mesoscale and Nanoscale Physics +cond-mat/0012300 Soft Condensed Matter +cond-mat/0012302 Statistical Mechanics +cond-mat/0012305 Superconductivity +cond-mat/0012306 Soft Condensed Matter +cond-mat/0012309 +cond-mat/0012310 Statistical Mechanics +cond-mat/0012312 +cond-mat/0012313 Disordered Systems and Neural Networks +cond-mat/0012314 Superconductivity +cond-mat/0012315 Disordered Systems and Neural Networks +cond-mat/0012319 Strongly Correlated Electrons +cond-mat/0012320 Soft Condensed Matter +cond-mat/0012321 Strongly Correlated Electrons +cond-mat/0012322 Strongly Correlated Electrons +cond-mat/0012323 Disordered Systems and Neural Networks +cond-mat/0012324 Mesoscale and Nanoscale Physics +cond-mat/0012326 Statistical Mechanics +cond-mat/0012327 Strongly Correlated Electrons +cond-mat/0012328 Superconductivity +cond-mat/0012329 Strongly Correlated Electrons +cond-mat/0012330 +cond-mat/0012331 Statistical Mechanics +cond-mat/0012335 Superconductivity +cond-mat/0012336 Superconductivity +cond-mat/0012337 Mesoscale and Nanoscale Physics +cond-mat/0012340 +cond-mat/0012341 Mesoscale and Nanoscale Physics +cond-mat/0012342 Strongly Correlated Electrons +cond-mat/0012343 Disordered Systems and Neural Networks +cond-mat/0012344 +cond-mat/0012345 Materials Science +cond-mat/0012346 Materials Science +cond-mat/0012351 Mesoscale and Nanoscale Physics +cond-mat/0012353 Strongly Correlated Electrons +cond-mat/0012354 +cond-mat/0012355 Disordered Systems and Neural Networks +cond-mat/0012357 Disordered Systems and Neural Networks +cond-mat/0012358 Soft Condensed Matter +cond-mat/0012359 +cond-mat/0012362 Soft Condensed Matter +cond-mat/0012363 Superconductivity +cond-mat/0012365 Soft Condensed Matter +cond-mat/0012366 Statistical Mechanics +cond-mat/0012367 Mesoscale and Nanoscale Physics +cond-mat/0012373 Superconductivity +cond-mat/0012374 Statistical Mechanics +cond-mat/0012375 +cond-mat/0012376 Strongly Correlated Electrons +cond-mat/0012377 Statistical Mechanics +cond-mat/0012378 +cond-mat/0012379 Mesoscale and Nanoscale Physics +cond-mat/0012381 Superconductivity +cond-mat/0012383 Strongly Correlated Electrons +cond-mat/0012384 Soft Condensed Matter +cond-mat/0012385 Superconductivity +cond-mat/0012386 +cond-mat/0012387 Mesoscale and Nanoscale Physics +cond-mat/0012388 Materials Science +cond-mat/0012389 Strongly Correlated Electrons +cond-mat/0012390 Statistical Mechanics +cond-mat/0012391 Soft Condensed Matter +cond-mat/0012392 Disordered Systems and Neural Networks +cond-mat/0012393 Statistical Mechanics +cond-mat/0012395 Strongly Correlated Electrons +cond-mat/0012396 Strongly Correlated Electrons +cond-mat/0012397 Statistical Mechanics +cond-mat/0012398 +cond-mat/0012401 Disordered Systems and Neural Networks +cond-mat/0012403 +cond-mat/0012405 Statistical Mechanics +cond-mat/0012406 Mesoscale and Nanoscale Physics +cond-mat/0012407 Superconductivity +cond-mat/0012409 Statistical Mechanics +cond-mat/0012410 Statistical Mechanics +cond-mat/0012412 +cond-mat/0012413 Superconductivity +cond-mat/0012415 Soft Condensed Matter +cond-mat/0012417 Disordered Systems and Neural Networks +cond-mat/0012421 Superconductivity +cond-mat/0012423 +cond-mat/0012425 Superconductivity +cond-mat/0012428 Superconductivity +cond-mat/0012430 Mesoscale and Nanoscale Physics +cond-mat/0012432 Strongly Correlated Electrons +cond-mat/0012434 Strongly Correlated Electrons +cond-mat/0012437 Mesoscale and Nanoscale Physics +cond-mat/0012438 Mesoscale and Nanoscale Physics +cond-mat/0012442 Soft Condensed Matter +cond-mat/0012444 +cond-mat/0012446 Superconductivity +cond-mat/0012448 Superconductivity +cond-mat/0012449 Statistical Mechanics +cond-mat/0012451 Statistical Mechanics +cond-mat/0012453 Superconductivity +cond-mat/0012454 Strongly Correlated Electrons +cond-mat/0012455 Disordered Systems and Neural Networks +cond-mat/0012456 Disordered Systems and Neural Networks +cond-mat/0012457 Disordered Systems and Neural Networks +cond-mat/0012458 Mesoscale and Nanoscale Physics +cond-mat/0012460 Statistical Mechanics +cond-mat/0012462 Strongly Correlated Electrons +cond-mat/0012463 Statistical Mechanics +cond-mat/0012465 Soft Condensed Matter +cond-mat/0012468 Superconductivity +cond-mat/0012469 Statistical Mechanics +cond-mat/0012474 +cond-mat/0012475 Mesoscale and Nanoscale Physics +cond-mat/0012476 Superconductivity +cond-mat/0012477 Superconductivity +cond-mat/0012478 Mesoscale and Nanoscale Physics +cond-mat/0012481 Superconductivity +cond-mat/0012482 Strongly Correlated Electrons +cond-mat/0012483 Superconductivity +cond-mat/0012484 Materials Science +cond-mat/0012485 Materials Science +cond-mat/0012486 Superconductivity +cond-mat/0012488 Disordered Systems and Neural Networks +cond-mat/0012489 Soft Condensed Matter +cond-mat/0012491 Mesoscale and Nanoscale Physics +cond-mat/0012492 Superconductivity +cond-mat/0012493 Strongly Correlated Electrons +cond-mat/0012495 Statistical Mechanics +cond-mat/0012500 Materials Science +cond-mat/0012502 Statistical Mechanics +cond-mat/0012503 Mesoscale and Nanoscale Physics +cond-mat/0012508 Disordered Systems and Neural Networks +cond-mat/0012509 Statistical Mechanics +cond-mat/0012510 Strongly Correlated Electrons +cond-mat/0012513 Soft Condensed Matter +cond-mat/0012516 Statistical Mechanics +cond-mat/0012517 Superconductivity +cond-mat/9801001 Strongly Correlated Electrons +cond-mat/9801002 Soft Condensed Matter +cond-mat/9801004 Strongly Correlated Electrons +cond-mat/9801005 Superconductivity +cond-mat/9801006 +cond-mat/9801007 Statistical Mechanics +cond-mat/9801010 +cond-mat/9801011 Superconductivity +cond-mat/9801014 Statistical Mechanics +cond-mat/9801016 Disordered Systems and Neural Networks +cond-mat/9801017 Materials Science +cond-mat/9801018 Soft Condensed Matter +cond-mat/9801019 Statistical Mechanics +cond-mat/9801020 Superconductivity +cond-mat/9801021 +cond-mat/9801022 Statistical Mechanics +cond-mat/9801024 Statistical Mechanics +cond-mat/9801025 Superconductivity +cond-mat/9801028 Statistical Mechanics +cond-mat/9801031 Materials Science +cond-mat/9801032 Superconductivity +cond-mat/9801033 Disordered Systems and Neural Networks +cond-mat/9801035 Superconductivity +cond-mat/9801036 Superconductivity +cond-mat/9801039 Materials Science +cond-mat/9801040 Mesoscale and Nanoscale Physics +cond-mat/9801045 +cond-mat/9801047 +cond-mat/9801048 Strongly Correlated Electrons +cond-mat/9801050 Strongly Correlated Electrons +cond-mat/9801051 Soft Condensed Matter +cond-mat/9801053 Superconductivity +cond-mat/9801054 Statistical Mechanics +cond-mat/9801055 Mesoscale and Nanoscale Physics +cond-mat/9801056 Disordered Systems and Neural Networks +cond-mat/9801058 Strongly Correlated Electrons +cond-mat/9801059 Superconductivity +cond-mat/9801062 Strongly Correlated Electrons +cond-mat/9801064 Mesoscale and Nanoscale Physics +cond-mat/9801065 Statistical Mechanics +cond-mat/9801067 +cond-mat/9801068 Strongly Correlated Electrons +cond-mat/9801069 Soft Condensed Matter +cond-mat/9801070 Strongly Correlated Electrons +cond-mat/9801073 Strongly Correlated Electrons +cond-mat/9801074 Superconductivity +cond-mat/9801076 Superconductivity +cond-mat/9801077 Strongly Correlated Electrons +cond-mat/9801078 Mesoscale and Nanoscale Physics +cond-mat/9801080 Materials Science +cond-mat/9801082 Soft Condensed Matter +cond-mat/9801083 Superconductivity +cond-mat/9801084 Superconductivity +cond-mat/9801085 Mesoscale and Nanoscale Physics +cond-mat/9801086 Strongly Correlated Electrons +cond-mat/9801089 Statistical Mechanics +cond-mat/9801090 Statistical Mechanics +cond-mat/9801091 Mesoscale and Nanoscale Physics +cond-mat/9801093 +cond-mat/9801095 Mesoscale and Nanoscale Physics +cond-mat/9801096 Mesoscale and Nanoscale Physics +cond-mat/9801097 +cond-mat/9801098 Statistical Mechanics +cond-mat/9801101 Soft Condensed Matter +cond-mat/9801103 Statistical Mechanics +cond-mat/9801104 Statistical Mechanics +cond-mat/9801105 Superconductivity +cond-mat/9801106 +cond-mat/9801107 Superconductivity +cond-mat/9801109 Superconductivity +cond-mat/9801110 Materials Science +cond-mat/9801111 Disordered Systems and Neural Networks +cond-mat/9801112 Statistical Mechanics +cond-mat/9801113 Mesoscale and Nanoscale Physics +cond-mat/9801114 +cond-mat/9801116 Materials Science +cond-mat/9801117 Superconductivity +cond-mat/9801119 +cond-mat/9801121 +cond-mat/9801122 Statistical Mechanics +cond-mat/9801128 Superconductivity +cond-mat/9801134 Strongly Correlated Electrons +cond-mat/9801135 Strongly Correlated Electrons +cond-mat/9801136 +cond-mat/9801137 Soft Condensed Matter +cond-mat/9801138 Statistical Mechanics +cond-mat/9801139 Statistical Mechanics +cond-mat/9801140 Disordered Systems and Neural Networks +cond-mat/9801141 Statistical Mechanics +cond-mat/9801142 Statistical Mechanics +cond-mat/9801144 Superconductivity +cond-mat/9801146 +cond-mat/9801147 Statistical Mechanics +cond-mat/9801149 Strongly Correlated Electrons +cond-mat/9801151 Soft Condensed Matter +cond-mat/9801154 Statistical Mechanics +cond-mat/9801155 Statistical Mechanics +cond-mat/9801156 Disordered Systems and Neural Networks +cond-mat/9801157 Strongly Correlated Electrons +cond-mat/9801158 +cond-mat/9801160 Mesoscale and Nanoscale Physics +cond-mat/9801161 +cond-mat/9801162 Statistical Mechanics +cond-mat/9801164 Soft Condensed Matter +cond-mat/9801165 Mesoscale and Nanoscale Physics +cond-mat/9801167 +cond-mat/9801168 Statistical Mechanics +cond-mat/9801170 Superconductivity +cond-mat/9801171 +cond-mat/9801173 Mesoscale and Nanoscale Physics +cond-mat/9801175 Statistical Mechanics +cond-mat/9801178 Statistical Mechanics +cond-mat/9801179 Superconductivity +cond-mat/9801180 +cond-mat/9801181 Strongly Correlated Electrons +cond-mat/9801184 Statistical Mechanics +cond-mat/9801185 Strongly Correlated Electrons +cond-mat/9801187 +cond-mat/9801188 Mesoscale and Nanoscale Physics +cond-mat/9801191 Materials Science +cond-mat/9801193 Strongly Correlated Electrons +cond-mat/9801194 Strongly Correlated Electrons +cond-mat/9801195 Strongly Correlated Electrons +cond-mat/9801196 +cond-mat/9801197 +cond-mat/9801198 Strongly Correlated Electrons +cond-mat/9801199 Mesoscale and Nanoscale Physics +cond-mat/9801200 Disordered Systems and Neural Networks +cond-mat/9801203 Mesoscale and Nanoscale Physics +cond-mat/9801204 Soft Condensed Matter +cond-mat/9801205 Strongly Correlated Electrons +cond-mat/9801206 Statistical Mechanics +cond-mat/9801207 Strongly Correlated Electrons +cond-mat/9801208 Superconductivity +cond-mat/9801210 Disordered Systems and Neural Networks +cond-mat/9801211 Statistical Mechanics +cond-mat/9801213 Statistical Mechanics +cond-mat/9801214 Mesoscale and Nanoscale Physics +cond-mat/9801215 Statistical Mechanics +cond-mat/9801217 Disordered Systems and Neural Networks +cond-mat/9801219 Strongly Correlated Electrons +cond-mat/9801224 Strongly Correlated Electrons +cond-mat/9801225 Materials Science +cond-mat/9801226 Disordered Systems and Neural Networks +cond-mat/9801227 Superconductivity +cond-mat/9801229 Mesoscale and Nanoscale Physics +cond-mat/9801231 Soft Condensed Matter +cond-mat/9801235 Statistical Mechanics +cond-mat/9801238 Mesoscale and Nanoscale Physics +cond-mat/9801242 +cond-mat/9801243 Strongly Correlated Electrons +cond-mat/9801249 +cond-mat/9801250 Mesoscale and Nanoscale Physics +cond-mat/9801252 Mesoscale and Nanoscale Physics +cond-mat/9801253 Soft Condensed Matter +cond-mat/9801254 Statistical Mechanics +cond-mat/9801256 +cond-mat/9801257 Superconductivity +cond-mat/9801258 Statistical Mechanics +cond-mat/9801260 Statistical Mechanics +cond-mat/9801263 Strongly Correlated Electrons +cond-mat/9801264 Superconductivity +cond-mat/9801265 Statistical Mechanics +cond-mat/9801266 Strongly Correlated Electrons +cond-mat/9801269 +cond-mat/9801270 +cond-mat/9801272 Mesoscale and Nanoscale Physics +cond-mat/9801273 Statistical Mechanics +cond-mat/9801274 Strongly Correlated Electrons +cond-mat/9801276 +cond-mat/9801277 Statistical Mechanics +cond-mat/9801278 Superconductivity +cond-mat/9801279 +cond-mat/9801280 Strongly Correlated Electrons +cond-mat/9801281 Statistical Mechanics +cond-mat/9801282 +cond-mat/9801284 Disordered Systems and Neural Networks +cond-mat/9801285 Strongly Correlated Electrons +cond-mat/9801286 Superconductivity +cond-mat/9801287 Statistical Mechanics +cond-mat/9801289 Statistical Mechanics +cond-mat/9801290 Statistical Mechanics +cond-mat/9801291 Disordered Systems and Neural Networks +cond-mat/9801292 Soft Condensed Matter +cond-mat/9801293 Statistical Mechanics +cond-mat/9801295 +cond-mat/9801296 Materials Science +cond-mat/9801298 +cond-mat/9801299 Strongly Correlated Electrons +cond-mat/9801300 Strongly Correlated Electrons +cond-mat/9801301 Materials Science +cond-mat/9801302 Materials Science +cond-mat/9801303 Superconductivity +cond-mat/9801304 Soft Condensed Matter +cond-mat/9801305 Statistical Mechanics +cond-mat/9801306 +cond-mat/9801307 Statistical Mechanics +cond-mat/9801308 +cond-mat/9801310 +cond-mat/9801311 Strongly Correlated Electrons +cond-mat/9801312 Statistical Mechanics +cond-mat/9801314 Mesoscale and Nanoscale Physics +cond-mat/9801316 Strongly Correlated Electrons +cond-mat/9801319 Mesoscale and Nanoscale Physics +cond-mat/9801320 +cond-mat/9801323 Mesoscale and Nanoscale Physics +cond-mat/9801324 Mesoscale and Nanoscale Physics +cond-mat/9801325 Strongly Correlated Electrons +cond-mat/9801326 Statistical Mechanics +cond-mat/9802002 Superconductivity +cond-mat/9802003 Disordered Systems and Neural Networks +cond-mat/9802004 Materials Science +cond-mat/9802007 Materials Science +cond-mat/9802008 Mesoscale and Nanoscale Physics +cond-mat/9802009 Strongly Correlated Electrons +cond-mat/9802010 +cond-mat/9802013 +cond-mat/9802014 Strongly Correlated Electrons +cond-mat/9802015 Superconductivity +cond-mat/9802016 Superconductivity +cond-mat/9802017 Materials Science +cond-mat/9802018 +cond-mat/9802019 Mesoscale and Nanoscale Physics +cond-mat/9802021 +cond-mat/9802023 +cond-mat/9802024 Disordered Systems and Neural Networks +cond-mat/9802025 Strongly Correlated Electrons +cond-mat/9802026 Materials Science +cond-mat/9802028 Statistical Mechanics +cond-mat/9802029 Strongly Correlated Electrons +cond-mat/9802031 Strongly Correlated Electrons +cond-mat/9802032 Superconductivity +cond-mat/9802034 +cond-mat/9802035 Strongly Correlated Electrons +cond-mat/9802036 +cond-mat/9802037 Mesoscale and Nanoscale Physics +cond-mat/9802038 Statistical Mechanics +cond-mat/9802039 +cond-mat/9802040 +cond-mat/9802041 Strongly Correlated Electrons +cond-mat/9802043 Superconductivity +cond-mat/9802045 Strongly Correlated Electrons +cond-mat/9802048 Statistical Mechanics +cond-mat/9802049 Strongly Correlated Electrons +cond-mat/9802050 Mesoscale and Nanoscale Physics +cond-mat/9802052 Strongly Correlated Electrons +cond-mat/9802053 Strongly Correlated Electrons +cond-mat/9802054 Statistical Mechanics +cond-mat/9802055 Superconductivity +cond-mat/9802056 Disordered Systems and Neural Networks +cond-mat/9802057 Mesoscale and Nanoscale Physics +cond-mat/9802058 Materials Science +cond-mat/9802060 +cond-mat/9802062 Disordered Systems and Neural Networks +cond-mat/9802063 Statistical Mechanics +cond-mat/9802064 Statistical Mechanics +cond-mat/9802065 Materials Science +cond-mat/9802067 Superconductivity +cond-mat/9802069 Statistical Mechanics +cond-mat/9802072 +cond-mat/9802074 +cond-mat/9802075 Disordered Systems and Neural Networks +cond-mat/9802076 Superconductivity +cond-mat/9802082 Statistical Mechanics +cond-mat/9802083 +cond-mat/9802084 Soft Condensed Matter +cond-mat/9802085 Strongly Correlated Electrons +cond-mat/9802086 Strongly Correlated Electrons +cond-mat/9802087 Disordered Systems and Neural Networks +cond-mat/9802088 Strongly Correlated Electrons +cond-mat/9802089 Superconductivity +cond-mat/9802090 Superconductivity +cond-mat/9802091 +cond-mat/9802096 Mesoscale and Nanoscale Physics +cond-mat/9802099 Soft Condensed Matter +cond-mat/9802100 Soft Condensed Matter +cond-mat/9802101 +cond-mat/9802102 Disordered Systems and Neural Networks +cond-mat/9802103 Statistical Mechanics +cond-mat/9802105 +cond-mat/9802106 Disordered Systems and Neural Networks +cond-mat/9802107 Strongly Correlated Electrons +cond-mat/9802110 Strongly Correlated Electrons +cond-mat/9802112 Disordered Systems and Neural Networks +cond-mat/9802114 +cond-mat/9802116 Strongly Correlated Electrons +cond-mat/9802118 Mesoscale and Nanoscale Physics +cond-mat/9802119 Mesoscale and Nanoscale Physics +cond-mat/9802120 Strongly Correlated Electrons +cond-mat/9802122 +cond-mat/9802123 Statistical Mechanics +cond-mat/9802125 Strongly Correlated Electrons +cond-mat/9802128 Statistical Mechanics +cond-mat/9802130 Statistical Mechanics +cond-mat/9802131 +cond-mat/9802133 +cond-mat/9802134 +cond-mat/9802137 Soft Condensed Matter +cond-mat/9802139 Materials Science +cond-mat/9802140 Mesoscale and Nanoscale Physics +cond-mat/9802141 Superconductivity +cond-mat/9802145 Statistical Mechanics +cond-mat/9802147 +cond-mat/9802148 +cond-mat/9802150 Strongly Correlated Electrons +cond-mat/9802151 Superconductivity +cond-mat/9802156 +cond-mat/9802157 +cond-mat/9802159 Mesoscale and Nanoscale Physics +cond-mat/9802163 Strongly Correlated Electrons +cond-mat/9802164 Strongly Correlated Electrons +cond-mat/9802165 Statistical Mechanics +cond-mat/9802167 Statistical Mechanics +cond-mat/9802168 Statistical Mechanics +cond-mat/9802169 Mesoscale and Nanoscale Physics +cond-mat/9802171 Strongly Correlated Electrons +cond-mat/9802172 +cond-mat/9802173 +cond-mat/9802174 +cond-mat/9802175 Statistical Mechanics +cond-mat/9802177 +cond-mat/9802178 Soft Condensed Matter +cond-mat/9802181 Strongly Correlated Electrons +cond-mat/9802182 Statistical Mechanics +cond-mat/9802183 Statistical Mechanics +cond-mat/9802184 Strongly Correlated Electrons +cond-mat/9802185 Superconductivity +cond-mat/9802190 Statistical Mechanics +cond-mat/9802191 Mesoscale and Nanoscale Physics +cond-mat/9802192 Statistical Mechanics +cond-mat/9802193 Statistical Mechanics +cond-mat/9802194 Soft Condensed Matter +cond-mat/9802196 Strongly Correlated Electrons +cond-mat/9802197 Strongly Correlated Electrons +cond-mat/9802200 Strongly Correlated Electrons +cond-mat/9802201 Materials Science +cond-mat/9802202 Superconductivity +cond-mat/9802203 +cond-mat/9802205 Statistical Mechanics +cond-mat/9802206 Statistical Mechanics +cond-mat/9802207 Materials Science +cond-mat/9802208 Materials Science +cond-mat/9802209 Materials Science +cond-mat/9802210 Materials Science +cond-mat/9802211 Statistical Mechanics +cond-mat/9802212 Statistical Mechanics +cond-mat/9802214 Statistical Mechanics +cond-mat/9802215 +cond-mat/9802216 +cond-mat/9802217 Statistical Mechanics +cond-mat/9802220 Mesoscale and Nanoscale Physics +cond-mat/9802223 Statistical Mechanics +cond-mat/9802224 Disordered Systems and Neural Networks +cond-mat/9802226 Mesoscale and Nanoscale Physics +cond-mat/9802229 +cond-mat/9802230 Soft Condensed Matter +cond-mat/9802234 Statistical Mechanics +cond-mat/9802235 +cond-mat/9802237 Mesoscale and Nanoscale Physics +cond-mat/9802238 Strongly Correlated Electrons +cond-mat/9802239 +cond-mat/9802243 Superconductivity +cond-mat/9802246 +cond-mat/9802247 +cond-mat/9802248 Mesoscale and Nanoscale Physics +cond-mat/9802251 Statistical Mechanics +cond-mat/9802252 Superconductivity +cond-mat/9802255 Statistical Mechanics +cond-mat/9802256 Statistical Mechanics +cond-mat/9802257 Statistical Mechanics +cond-mat/9802258 Strongly Correlated Electrons +cond-mat/9802259 +cond-mat/9802260 Strongly Correlated Electrons +cond-mat/9802261 Mesoscale and Nanoscale Physics +cond-mat/9802262 Mesoscale and Nanoscale Physics +cond-mat/9802263 +cond-mat/9802264 Superconductivity +cond-mat/9802265 Statistical Mechanics +cond-mat/9802268 Statistical Mechanics +cond-mat/9802269 Statistical Mechanics +cond-mat/9802270 Superconductivity +cond-mat/9802272 Mesoscale and Nanoscale Physics +cond-mat/9802274 Superconductivity +cond-mat/9802275 Strongly Correlated Electrons +cond-mat/9802276 Superconductivity +cond-mat/9802277 Soft Condensed Matter +cond-mat/9802280 +cond-mat/9802281 Superconductivity +cond-mat/9802282 Mesoscale and Nanoscale Physics +cond-mat/9802283 Disordered Systems and Neural Networks +cond-mat/9802284 Statistical Mechanics +cond-mat/9802285 +cond-mat/9802287 Superconductivity +cond-mat/9802288 Disordered Systems and Neural Networks +cond-mat/9802289 +cond-mat/9802292 Soft Condensed Matter +cond-mat/9802296 Mesoscale and Nanoscale Physics +cond-mat/9802297 Strongly Correlated Electrons +cond-mat/9802300 Disordered Systems and Neural Networks +cond-mat/9802301 Materials Science +cond-mat/9802302 +cond-mat/9802306 +cond-mat/9802307 +cond-mat/9802308 Statistical Mechanics +cond-mat/9802309 Statistical Mechanics +cond-mat/9803002 Materials Science +cond-mat/9803003 Mesoscale and Nanoscale Physics +cond-mat/9803004 Strongly Correlated Electrons +cond-mat/9803005 Soft Condensed Matter +cond-mat/9803007 Statistical Mechanics +cond-mat/9803008 Statistical Mechanics +cond-mat/9803009 +cond-mat/9803010 Strongly Correlated Electrons +cond-mat/9803013 Superconductivity +cond-mat/9803014 Statistical Mechanics +cond-mat/9803015 +cond-mat/9803016 +cond-mat/9803018 Mesoscale and Nanoscale Physics +cond-mat/9803019 Statistical Mechanics +cond-mat/9803022 Statistical Mechanics +cond-mat/9803023 Materials Science +cond-mat/9803024 Strongly Correlated Electrons +cond-mat/9803027 Strongly Correlated Electrons +cond-mat/9803028 Statistical Mechanics +cond-mat/9803029 Statistical Mechanics +cond-mat/9803030 Strongly Correlated Electrons +cond-mat/9803032 Superconductivity +cond-mat/9803034 Strongly Correlated Electrons +cond-mat/9803035 Strongly Correlated Electrons +cond-mat/9803037 Materials Science +cond-mat/9803038 Mesoscale and Nanoscale Physics +cond-mat/9803039 +cond-mat/9803041 Superconductivity +cond-mat/9803043 Statistical Mechanics +cond-mat/9803044 Strongly Correlated Electrons +cond-mat/9803045 Strongly Correlated Electrons +cond-mat/9803046 Statistical Mechanics +cond-mat/9803048 Strongly Correlated Electrons +cond-mat/9803049 Strongly Correlated Electrons +cond-mat/9803050 Superconductivity +cond-mat/9803051 Statistical Mechanics +cond-mat/9803053 Statistical Mechanics +cond-mat/9803054 Materials Science +cond-mat/9803055 Statistical Mechanics +cond-mat/9803056 Superconductivity +cond-mat/9803057 Disordered Systems and Neural Networks +cond-mat/9803058 Materials Science +cond-mat/9803060 +cond-mat/9803064 Strongly Correlated Electrons +cond-mat/9803066 Mesoscale and Nanoscale Physics +cond-mat/9803067 Disordered Systems and Neural Networks +cond-mat/9803068 Statistical Mechanics +cond-mat/9803070 Mesoscale and Nanoscale Physics +cond-mat/9803071 Strongly Correlated Electrons +cond-mat/9803072 Statistical Mechanics +cond-mat/9803073 Strongly Correlated Electrons +cond-mat/9803076 Disordered Systems and Neural Networks +cond-mat/9803077 Statistical Mechanics +cond-mat/9803078 Soft Condensed Matter +cond-mat/9803079 Superconductivity +cond-mat/9803080 +cond-mat/9803081 Superconductivity +cond-mat/9803083 Mesoscale and Nanoscale Physics +cond-mat/9803084 +cond-mat/9803085 Strongly Correlated Electrons +cond-mat/9803089 Mesoscale and Nanoscale Physics +cond-mat/9803090 Statistical Mechanics +cond-mat/9803092 Strongly Correlated Electrons +cond-mat/9803093 Statistical Mechanics +cond-mat/9803094 Strongly Correlated Electrons +cond-mat/9803097 Soft Condensed Matter +cond-mat/9803098 Mesoscale and Nanoscale Physics +cond-mat/9803099 Strongly Correlated Electrons +cond-mat/9803100 Disordered Systems and Neural Networks +cond-mat/9803101 Mesoscale and Nanoscale Physics +cond-mat/9803102 Mesoscale and Nanoscale Physics +cond-mat/9803106 Strongly Correlated Electrons +cond-mat/9803107 +cond-mat/9803108 Statistical Mechanics +cond-mat/9803109 Soft Condensed Matter +cond-mat/9803110 Strongly Correlated Electrons +cond-mat/9803112 Soft Condensed Matter +cond-mat/9803115 Disordered Systems and Neural Networks +cond-mat/9803116 +cond-mat/9803119 Superconductivity +cond-mat/9803120 Statistical Mechanics +cond-mat/9803122 +cond-mat/9803123 Disordered Systems and Neural Networks +cond-mat/9803125 Disordered Systems and Neural Networks +cond-mat/9803126 Strongly Correlated Electrons +cond-mat/9803127 Statistical Mechanics +cond-mat/9803128 Strongly Correlated Electrons +cond-mat/9803129 Mesoscale and Nanoscale Physics +cond-mat/9803130 Soft Condensed Matter +cond-mat/9803131 Strongly Correlated Electrons +cond-mat/9803132 Strongly Correlated Electrons +cond-mat/9803133 Mesoscale and Nanoscale Physics +cond-mat/9803136 Disordered Systems and Neural Networks +cond-mat/9803137 Strongly Correlated Electrons +cond-mat/9803138 Strongly Correlated Electrons +cond-mat/9803140 Strongly Correlated Electrons +cond-mat/9803141 Strongly Correlated Electrons +cond-mat/9803143 Statistical Mechanics +cond-mat/9803144 Strongly Correlated Electrons +cond-mat/9803145 Strongly Correlated Electrons +cond-mat/9803148 +cond-mat/9803149 Strongly Correlated Electrons +cond-mat/9803150 Strongly Correlated Electrons +cond-mat/9803152 Mesoscale and Nanoscale Physics +cond-mat/9803153 Strongly Correlated Electrons +cond-mat/9803154 Statistical Mechanics +cond-mat/9803155 Statistical Mechanics +cond-mat/9803156 Mesoscale and Nanoscale Physics +cond-mat/9803157 Mesoscale and Nanoscale Physics +cond-mat/9803158 Strongly Correlated Electrons +cond-mat/9803159 Statistical Mechanics +cond-mat/9803160 +cond-mat/9803162 Mesoscale and Nanoscale Physics +cond-mat/9803165 Disordered Systems and Neural Networks +cond-mat/9803168 Statistical Mechanics +cond-mat/9803169 Mesoscale and Nanoscale Physics +cond-mat/9803171 Statistical Mechanics +cond-mat/9803172 Materials Science +cond-mat/9803173 Materials Science +cond-mat/9803175 Superconductivity +cond-mat/9803176 Strongly Correlated Electrons +cond-mat/9803177 Statistical Mechanics +cond-mat/9803179 +cond-mat/9803180 Strongly Correlated Electrons +cond-mat/9803181 +cond-mat/9803182 Strongly Correlated Electrons +cond-mat/9803184 Strongly Correlated Electrons +cond-mat/9803185 +cond-mat/9803190 Statistical Mechanics +cond-mat/9803192 Disordered Systems and Neural Networks +cond-mat/9803193 Statistical Mechanics +cond-mat/9803195 Disordered Systems and Neural Networks +cond-mat/9803196 +cond-mat/9803197 +cond-mat/9803198 +cond-mat/9803199 Statistical Mechanics +cond-mat/9803200 Strongly Correlated Electrons +cond-mat/9803201 Strongly Correlated Electrons +cond-mat/9803202 Statistical Mechanics +cond-mat/9803203 Statistical Mechanics +cond-mat/9803207 +cond-mat/9803208 Materials Science +cond-mat/9803209 Disordered Systems and Neural Networks +cond-mat/9803210 +cond-mat/9803211 Mesoscale and Nanoscale Physics +cond-mat/9803212 Strongly Correlated Electrons +cond-mat/9803214 Mesoscale and Nanoscale Physics +cond-mat/9803215 +cond-mat/9803216 +cond-mat/9803219 Materials Science +cond-mat/9803221 +cond-mat/9803222 Strongly Correlated Electrons +cond-mat/9803223 Statistical Mechanics +cond-mat/9803224 Disordered Systems and Neural Networks +cond-mat/9803225 Statistical Mechanics +cond-mat/9803226 Materials Science +cond-mat/9803227 +cond-mat/9803228 +cond-mat/9803230 Statistical Mechanics +cond-mat/9803231 +cond-mat/9803234 Statistical Mechanics +cond-mat/9803235 Materials Science +cond-mat/9803236 Statistical Mechanics +cond-mat/9803237 Statistical Mechanics +cond-mat/9803239 Disordered Systems and Neural Networks +cond-mat/9803242 +cond-mat/9803244 +cond-mat/9803246 +cond-mat/9803247 Soft Condensed Matter +cond-mat/9803248 Statistical Mechanics +cond-mat/9803250 +cond-mat/9803251 Materials Science +cond-mat/9803252 +cond-mat/9803253 Statistical Mechanics +cond-mat/9803254 Statistical Mechanics +cond-mat/9803255 Strongly Correlated Electrons +cond-mat/9803256 Strongly Correlated Electrons +cond-mat/9803257 Statistical Mechanics +cond-mat/9803258 Soft Condensed Matter +cond-mat/9803260 Soft Condensed Matter +cond-mat/9803261 Soft Condensed Matter +cond-mat/9803265 Statistical Mechanics +cond-mat/9803266 Statistical Mechanics +cond-mat/9803267 Disordered Systems and Neural Networks +cond-mat/9803268 +cond-mat/9803270 Disordered Systems and Neural Networks +cond-mat/9803272 Superconductivity +cond-mat/9803274 Superconductivity +cond-mat/9803275 Strongly Correlated Electrons +cond-mat/9803277 Statistical Mechanics +cond-mat/9803278 Materials Science +cond-mat/9803280 Statistical Mechanics +cond-mat/9803281 Statistical Mechanics +cond-mat/9803282 +cond-mat/9803283 Statistical Mechanics +cond-mat/9803285 Mesoscale and Nanoscale Physics +cond-mat/9803286 Soft Condensed Matter +cond-mat/9803289 Materials Science +cond-mat/9803291 Materials Science +cond-mat/9803293 +cond-mat/9803294 Statistical Mechanics +cond-mat/9803295 Strongly Correlated Electrons +cond-mat/9803296 Strongly Correlated Electrons +cond-mat/9803297 Strongly Correlated Electrons +cond-mat/9803298 +cond-mat/9803301 +cond-mat/9803302 Statistical Mechanics +cond-mat/9803304 +cond-mat/9803306 Mesoscale and Nanoscale Physics +cond-mat/9803307 Materials Science +cond-mat/9803309 Mesoscale and Nanoscale Physics +cond-mat/9803310 +cond-mat/9803311 Superconductivity +cond-mat/9803312 Superconductivity +cond-mat/9803313 Strongly Correlated Electrons +cond-mat/9803314 +cond-mat/9803316 Disordered Systems and Neural Networks +cond-mat/9803317 Superconductivity +cond-mat/9803318 Statistical Mechanics +cond-mat/9803319 Mesoscale and Nanoscale Physics +cond-mat/9803322 Mesoscale and Nanoscale Physics +cond-mat/9803326 Strongly Correlated Electrons +cond-mat/9803327 Strongly Correlated Electrons +cond-mat/9803328 Mesoscale and Nanoscale Physics +cond-mat/9803329 Statistical Mechanics +cond-mat/9803332 Statistical Mechanics +cond-mat/9803333 Mesoscale and Nanoscale Physics +cond-mat/9803334 Disordered Systems and Neural Networks +cond-mat/9803335 Mesoscale and Nanoscale Physics +cond-mat/9803337 Mesoscale and Nanoscale Physics +cond-mat/9803340 +cond-mat/9803341 +cond-mat/9803342 Mesoscale and Nanoscale Physics +cond-mat/9803343 Statistical Mechanics +cond-mat/9803345 Superconductivity +cond-mat/9803346 Mesoscale and Nanoscale Physics +cond-mat/9803349 Superconductivity +cond-mat/9803353 +cond-mat/9803354 +cond-mat/9803355 Statistical Mechanics +cond-mat/9803356 Disordered Systems and Neural Networks +cond-mat/9803357 Statistical Mechanics +cond-mat/9803358 Statistical Mechanics +cond-mat/9803359 Statistical Mechanics +cond-mat/9803360 +cond-mat/9803361 Superconductivity +cond-mat/9803362 Disordered Systems and Neural Networks +cond-mat/9803363 Strongly Correlated Electrons +cond-mat/9803364 Strongly Correlated Electrons +cond-mat/9803365 Strongly Correlated Electrons +cond-mat/9803368 Strongly Correlated Electrons +cond-mat/9803369 Superconductivity +cond-mat/9803370 Statistical Mechanics +cond-mat/9803371 Mesoscale and Nanoscale Physics +cond-mat/9803372 Mesoscale and Nanoscale Physics +cond-mat/9803373 Mesoscale and Nanoscale Physics +cond-mat/9803374 Statistical Mechanics +cond-mat/9803376 Mesoscale and Nanoscale Physics +cond-mat/9803377 Statistical Mechanics +cond-mat/9803378 +cond-mat/9803379 +cond-mat/9803380 +cond-mat/9803381 +cond-mat/9803382 Mesoscale and Nanoscale Physics +cond-mat/9803383 Mesoscale and Nanoscale Physics +cond-mat/9803385 Statistical Mechanics +cond-mat/9803386 Disordered Systems and Neural Networks +cond-mat/9803387 Statistical Mechanics +cond-mat/9803388 Statistical Mechanics +cond-mat/9803390 Superconductivity +cond-mat/9803391 Disordered Systems and Neural Networks +cond-mat/9803393 Strongly Correlated Electrons +cond-mat/9804003 Statistical Mechanics +cond-mat/9804004 Statistical Mechanics +cond-mat/9804005 Strongly Correlated Electrons +cond-mat/9804006 Statistical Mechanics +cond-mat/9804007 +cond-mat/9804008 Statistical Mechanics +cond-mat/9804009 Materials Science +cond-mat/9804010 +cond-mat/9804011 Strongly Correlated Electrons +cond-mat/9804012 Strongly Correlated Electrons +cond-mat/9804013 +cond-mat/9804014 Strongly Correlated Electrons +cond-mat/9804016 Statistical Mechanics +cond-mat/9804017 Disordered Systems and Neural Networks +cond-mat/9804018 Mesoscale and Nanoscale Physics +cond-mat/9804019 Materials Science +cond-mat/9804020 Materials Science +cond-mat/9804021 Statistical Mechanics +cond-mat/9804022 Disordered Systems and Neural Networks +cond-mat/9804023 Statistical Mechanics +cond-mat/9804024 Statistical Mechanics +cond-mat/9804025 +cond-mat/9804026 Superconductivity +cond-mat/9804029 Materials Science +cond-mat/9804030 Superconductivity +cond-mat/9804031 Materials Science +cond-mat/9804032 Strongly Correlated Electrons +cond-mat/9804033 Disordered Systems and Neural Networks +cond-mat/9804034 Statistical Mechanics +cond-mat/9804035 +cond-mat/9804038 Statistical Mechanics +cond-mat/9804039 Mesoscale and Nanoscale Physics +cond-mat/9804040 Statistical Mechanics +cond-mat/9804041 Strongly Correlated Electrons +cond-mat/9804042 Statistical Mechanics +cond-mat/9804043 Statistical Mechanics +cond-mat/9804045 Statistical Mechanics +cond-mat/9804046 Materials Science +cond-mat/9804047 Statistical Mechanics +cond-mat/9804048 Statistical Mechanics +cond-mat/9804049 Mesoscale and Nanoscale Physics +cond-mat/9804050 Soft Condensed Matter +cond-mat/9804051 +cond-mat/9804052 Strongly Correlated Electrons +cond-mat/9804053 Strongly Correlated Electrons +cond-mat/9804054 Statistical Mechanics +cond-mat/9804055 Strongly Correlated Electrons +cond-mat/9804056 Materials Science +cond-mat/9804057 Mesoscale and Nanoscale Physics +cond-mat/9804058 Mesoscale and Nanoscale Physics +cond-mat/9804060 Superconductivity +cond-mat/9804063 Disordered Systems and Neural Networks +cond-mat/9804065 Soft Condensed Matter +cond-mat/9804066 Statistical Mechanics +cond-mat/9804067 Statistical Mechanics +cond-mat/9804068 Mesoscale and Nanoscale Physics +cond-mat/9804069 Strongly Correlated Electrons +cond-mat/9804070 Superconductivity +cond-mat/9804073 +cond-mat/9804076 Superconductivity +cond-mat/9804077 Strongly Correlated Electrons +cond-mat/9804078 +cond-mat/9804079 Strongly Correlated Electrons +cond-mat/9804080 Statistical Mechanics +cond-mat/9804082 Statistical Mechanics +cond-mat/9804083 Statistical Mechanics +cond-mat/9804085 Strongly Correlated Electrons +cond-mat/9804087 Statistical Mechanics +cond-mat/9804088 Superconductivity +cond-mat/9804090 Mesoscale and Nanoscale Physics +cond-mat/9804091 Soft Condensed Matter +cond-mat/9804092 +cond-mat/9804095 Statistical Mechanics +cond-mat/9804096 Strongly Correlated Electrons +cond-mat/9804097 +cond-mat/9804098 Statistical Mechanics +cond-mat/9804099 Disordered Systems and Neural Networks +cond-mat/9804100 Statistical Mechanics +cond-mat/9804101 Materials Science +cond-mat/9804103 Statistical Mechanics +cond-mat/9804105 Disordered Systems and Neural Networks +cond-mat/9804106 Statistical Mechanics +cond-mat/9804107 Mesoscale and Nanoscale Physics +cond-mat/9804108 +cond-mat/9804110 Strongly Correlated Electrons +cond-mat/9804111 Statistical Mechanics +cond-mat/9804112 Strongly Correlated Electrons +cond-mat/9804113 +cond-mat/9804116 Soft Condensed Matter +cond-mat/9804117 +cond-mat/9804118 +cond-mat/9804119 Strongly Correlated Electrons +cond-mat/9804120 Statistical Mechanics +cond-mat/9804122 Strongly Correlated Electrons +cond-mat/9804123 Mesoscale and Nanoscale Physics +cond-mat/9804127 Strongly Correlated Electrons +cond-mat/9804129 +cond-mat/9804130 +cond-mat/9804132 Statistical Mechanics +cond-mat/9804133 Disordered Systems and Neural Networks +cond-mat/9804136 Disordered Systems and Neural Networks +cond-mat/9804138 +cond-mat/9804139 Materials Science +cond-mat/9804140 Statistical Mechanics +cond-mat/9804141 Mesoscale and Nanoscale Physics +cond-mat/9804142 +cond-mat/9804143 Disordered Systems and Neural Networks +cond-mat/9804144 Superconductivity +cond-mat/9804146 Statistical Mechanics +cond-mat/9804150 Statistical Mechanics +cond-mat/9804152 Materials Science +cond-mat/9804154 Mesoscale and Nanoscale Physics +cond-mat/9804155 Materials Science +cond-mat/9804156 +cond-mat/9804157 Strongly Correlated Electrons +cond-mat/9804158 +cond-mat/9804159 Superconductivity +cond-mat/9804160 Statistical Mechanics +cond-mat/9804161 Superconductivity +cond-mat/9804162 Strongly Correlated Electrons +cond-mat/9804167 Strongly Correlated Electrons +cond-mat/9804168 Statistical Mechanics +cond-mat/9804169 Strongly Correlated Electrons +cond-mat/9804170 Statistical Mechanics +cond-mat/9804171 Statistical Mechanics +cond-mat/9804173 Statistical Mechanics +cond-mat/9804174 Superconductivity +cond-mat/9804175 Mesoscale and Nanoscale Physics +cond-mat/9804176 Soft Condensed Matter +cond-mat/9804177 Mesoscale and Nanoscale Physics +cond-mat/9804178 Statistical Mechanics +cond-mat/9804179 Soft Condensed Matter +cond-mat/9804180 Statistical Mechanics +cond-mat/9804181 Statistical Mechanics +cond-mat/9804182 Strongly Correlated Electrons +cond-mat/9804187 Soft Condensed Matter +cond-mat/9804188 Strongly Correlated Electrons +cond-mat/9804189 Superconductivity +cond-mat/9804190 +cond-mat/9804191 Superconductivity +cond-mat/9804192 Mesoscale and Nanoscale Physics +cond-mat/9804193 +cond-mat/9804194 Materials Science +cond-mat/9804195 Materials Science +cond-mat/9804196 Superconductivity +cond-mat/9804197 Mesoscale and Nanoscale Physics +cond-mat/9804200 Strongly Correlated Electrons +cond-mat/9804201 Statistical Mechanics +cond-mat/9804203 Materials Science +cond-mat/9804204 Mesoscale and Nanoscale Physics +cond-mat/9804205 Superconductivity +cond-mat/9804207 +cond-mat/9804209 Strongly Correlated Electrons +cond-mat/9804211 Mesoscale and Nanoscale Physics +cond-mat/9804212 +cond-mat/9804213 Strongly Correlated Electrons +cond-mat/9804214 Soft Condensed Matter +cond-mat/9804215 Statistical Mechanics +cond-mat/9804216 Materials Science +cond-mat/9804217 Soft Condensed Matter +cond-mat/9804218 Statistical Mechanics +cond-mat/9804219 Strongly Correlated Electrons +cond-mat/9804223 Statistical Mechanics +cond-mat/9804224 Strongly Correlated Electrons +cond-mat/9804225 Soft Condensed Matter +cond-mat/9804226 Materials Science +cond-mat/9804228 +cond-mat/9804229 Statistical Mechanics +cond-mat/9804230 Statistical Mechanics +cond-mat/9804233 Statistical Mechanics +cond-mat/9804234 Statistical Mechanics +cond-mat/9804236 Statistical Mechanics +cond-mat/9804238 Statistical Mechanics +cond-mat/9804239 Strongly Correlated Electrons +cond-mat/9804240 +cond-mat/9804242 Strongly Correlated Electrons +cond-mat/9804245 +cond-mat/9804246 Materials Science +cond-mat/9804247 Materials Science +cond-mat/9804250 Mesoscale and Nanoscale Physics +cond-mat/9804251 Statistical Mechanics +cond-mat/9804252 Statistical Mechanics +cond-mat/9804254 Mesoscale and Nanoscale Physics +cond-mat/9804255 Statistical Mechanics +cond-mat/9804258 +cond-mat/9804259 Mesoscale and Nanoscale Physics +cond-mat/9804262 Superconductivity +cond-mat/9804264 Statistical Mechanics +cond-mat/9804265 Strongly Correlated Electrons +cond-mat/9804266 +cond-mat/9804267 Superconductivity +cond-mat/9804268 Statistical Mechanics +cond-mat/9804269 +cond-mat/9804270 Soft Condensed Matter +cond-mat/9804272 Soft Condensed Matter +cond-mat/9804273 Soft Condensed Matter +cond-mat/9804274 Soft Condensed Matter +cond-mat/9804275 Soft Condensed Matter +cond-mat/9804278 +cond-mat/9804279 Materials Science +cond-mat/9804280 Statistical Mechanics +cond-mat/9804281 Mesoscale and Nanoscale Physics +cond-mat/9804284 Strongly Correlated Electrons +cond-mat/9804285 Superconductivity +cond-mat/9804286 Statistical Mechanics +cond-mat/9804287 Superconductivity +cond-mat/9804289 Statistical Mechanics +cond-mat/9804290 Strongly Correlated Electrons +cond-mat/9804291 Disordered Systems and Neural Networks +cond-mat/9804292 +cond-mat/9804293 Strongly Correlated Electrons +cond-mat/9804294 Mesoscale and Nanoscale Physics +cond-mat/9804296 Superconductivity +cond-mat/9804298 Mesoscale and Nanoscale Physics +cond-mat/9804299 Materials Science +cond-mat/9804300 Strongly Correlated Electrons +cond-mat/9804301 Strongly Correlated Electrons +cond-mat/9804305 Statistical Mechanics +cond-mat/9804307 Strongly Correlated Electrons +cond-mat/9804309 Strongly Correlated Electrons +cond-mat/9804311 Statistical Mechanics +cond-mat/9804312 Disordered Systems and Neural Networks +cond-mat/9804313 Mesoscale and Nanoscale Physics +cond-mat/9804315 Statistical Mechanics +cond-mat/9804316 Statistical Mechanics +cond-mat/9804317 +cond-mat/9804318 +cond-mat/9804319 Statistical Mechanics +cond-mat/9804320 Strongly Correlated Electrons +cond-mat/9804321 Materials Science +cond-mat/9804322 Mesoscale and Nanoscale Physics +cond-mat/9804323 +cond-mat/9804324 Mesoscale and Nanoscale Physics +cond-mat/9804325 Disordered Systems and Neural Networks +cond-mat/9804329 Strongly Correlated Electrons +cond-mat/9804331 Superconductivity +cond-mat/9805002 Strongly Correlated Electrons +cond-mat/9805004 Mesoscale and Nanoscale Physics +cond-mat/9805005 Strongly Correlated Electrons +cond-mat/9805006 Strongly Correlated Electrons +cond-mat/9805007 Materials Science +cond-mat/9805008 Materials Science +cond-mat/9805009 +cond-mat/9805011 Strongly Correlated Electrons +cond-mat/9805013 +cond-mat/9805014 Superconductivity +cond-mat/9805015 +cond-mat/9805016 +cond-mat/9805017 +cond-mat/9805019 Mesoscale and Nanoscale Physics +cond-mat/9805020 +cond-mat/9805021 Soft Condensed Matter +cond-mat/9805022 Statistical Mechanics +cond-mat/9805023 +cond-mat/9805024 Strongly Correlated Electrons +cond-mat/9805029 Strongly Correlated Electrons +cond-mat/9805033 Mesoscale and Nanoscale Physics +cond-mat/9805035 +cond-mat/9805036 Strongly Correlated Electrons +cond-mat/9805037 Statistical Mechanics +cond-mat/9805038 Mesoscale and Nanoscale Physics +cond-mat/9805039 Statistical Mechanics +cond-mat/9805041 Superconductivity +cond-mat/9805045 Statistical Mechanics +cond-mat/9805046 Statistical Mechanics +cond-mat/9805047 +cond-mat/9805050 +cond-mat/9805052 Soft Condensed Matter +cond-mat/9805053 Mesoscale and Nanoscale Physics +cond-mat/9805054 Statistical Mechanics +cond-mat/9805055 Statistical Mechanics +cond-mat/9805056 Statistical Mechanics +cond-mat/9805057 Statistical Mechanics +cond-mat/9805059 Statistical Mechanics +cond-mat/9805060 Statistical Mechanics +cond-mat/9805061 Soft Condensed Matter +cond-mat/9805062 Materials Science +cond-mat/9805064 Strongly Correlated Electrons +cond-mat/9805067 Strongly Correlated Electrons +cond-mat/9805068 +cond-mat/9805069 Statistical Mechanics +cond-mat/9805071 Statistical Mechanics +cond-mat/9805072 Strongly Correlated Electrons +cond-mat/9805075 Superconductivity +cond-mat/9805076 Statistical Mechanics +cond-mat/9805078 Strongly Correlated Electrons +cond-mat/9805081 Statistical Mechanics +cond-mat/9805082 +cond-mat/9805083 Statistical Mechanics +cond-mat/9805085 +cond-mat/9805088 Disordered Systems and Neural Networks +cond-mat/9805091 Superconductivity +cond-mat/9805092 Materials Science +cond-mat/9805097 Statistical Mechanics +cond-mat/9805099 Strongly Correlated Electrons +cond-mat/9805101 Mesoscale and Nanoscale Physics +cond-mat/9805104 Superconductivity +cond-mat/9805105 Superconductivity +cond-mat/9805106 Mesoscale and Nanoscale Physics +cond-mat/9805107 Strongly Correlated Electrons +cond-mat/9805111 Statistical Mechanics +cond-mat/9805113 Mesoscale and Nanoscale Physics +cond-mat/9805114 +cond-mat/9805116 Superconductivity +cond-mat/9805117 Disordered Systems and Neural Networks +cond-mat/9805118 Disordered Systems and Neural Networks +cond-mat/9805120 Strongly Correlated Electrons +cond-mat/9805121 Mesoscale and Nanoscale Physics +cond-mat/9805122 +cond-mat/9805123 Strongly Correlated Electrons +cond-mat/9805128 Mesoscale and Nanoscale Physics +cond-mat/9805129 +cond-mat/9805130 +cond-mat/9805131 Strongly Correlated Electrons +cond-mat/9805132 Strongly Correlated Electrons +cond-mat/9805134 Statistical Mechanics +cond-mat/9805135 Disordered Systems and Neural Networks +cond-mat/9805138 Disordered Systems and Neural Networks +cond-mat/9805140 Superconductivity +cond-mat/9805142 Statistical Mechanics +cond-mat/9805143 +cond-mat/9805146 Statistical Mechanics +cond-mat/9805148 Statistical Mechanics +cond-mat/9805149 Strongly Correlated Electrons +cond-mat/9805150 Materials Science +cond-mat/9805151 Superconductivity +cond-mat/9805153 +cond-mat/9805154 Strongly Correlated Electrons +cond-mat/9805156 Statistical Mechanics +cond-mat/9805157 Mesoscale and Nanoscale Physics +cond-mat/9805159 Superconductivity +cond-mat/9805160 Mesoscale and Nanoscale Physics +cond-mat/9805161 Superconductivity +cond-mat/9805162 Superconductivity +cond-mat/9805163 +cond-mat/9805164 Mesoscale and Nanoscale Physics +cond-mat/9805165 Statistical Mechanics +cond-mat/9805167 Materials Science +cond-mat/9805168 Statistical Mechanics +cond-mat/9805169 Statistical Mechanics +cond-mat/9805171 Mesoscale and Nanoscale Physics +cond-mat/9805172 Soft Condensed Matter +cond-mat/9805173 Superconductivity +cond-mat/9805174 Superconductivity +cond-mat/9805175 Statistical Mechanics +cond-mat/9805176 Superconductivity +cond-mat/9805178 Statistical Mechanics +cond-mat/9805179 Statistical Mechanics +cond-mat/9805180 Statistical Mechanics +cond-mat/9805181 Mesoscale and Nanoscale Physics +cond-mat/9805182 Disordered Systems and Neural Networks +cond-mat/9805184 Strongly Correlated Electrons +cond-mat/9805185 Strongly Correlated Electrons +cond-mat/9805186 Statistical Mechanics +cond-mat/9805189 Statistical Mechanics +cond-mat/9805190 Mesoscale and Nanoscale Physics +cond-mat/9805191 Strongly Correlated Electrons +cond-mat/9805192 +cond-mat/9805195 Statistical Mechanics +cond-mat/9805196 Statistical Mechanics +cond-mat/9805199 Mesoscale and Nanoscale Physics +cond-mat/9805200 Statistical Mechanics +cond-mat/9805203 Strongly Correlated Electrons +cond-mat/9805205 Strongly Correlated Electrons +cond-mat/9805207 +cond-mat/9805208 +cond-mat/9805209 +cond-mat/9805210 Disordered Systems and Neural Networks +cond-mat/9805212 Statistical Mechanics +cond-mat/9805214 Statistical Mechanics +cond-mat/9805215 +cond-mat/9805216 +cond-mat/9805217 Soft Condensed Matter +cond-mat/9805218 Statistical Mechanics +cond-mat/9805220 Materials Science +cond-mat/9805222 Superconductivity +cond-mat/9805224 +cond-mat/9805225 Superconductivity +cond-mat/9805226 Mesoscale and Nanoscale Physics +cond-mat/9805227 Disordered Systems and Neural Networks +cond-mat/9805228 +cond-mat/9805229 Superconductivity +cond-mat/9805230 Strongly Correlated Electrons +cond-mat/9805234 Strongly Correlated Electrons +cond-mat/9805235 Superconductivity +cond-mat/9805236 Strongly Correlated Electrons +cond-mat/9805237 Strongly Correlated Electrons +cond-mat/9805238 +cond-mat/9805239 Superconductivity +cond-mat/9805240 Mesoscale and Nanoscale Physics +cond-mat/9805241 Statistical Mechanics +cond-mat/9805242 Statistical Mechanics +cond-mat/9805243 Disordered Systems and Neural Networks +cond-mat/9805244 Statistical Mechanics +cond-mat/9805245 Strongly Correlated Electrons +cond-mat/9805246 +cond-mat/9805247 Statistical Mechanics +cond-mat/9805248 Statistical Mechanics +cond-mat/9805249 Disordered Systems and Neural Networks +cond-mat/9805250 Statistical Mechanics +cond-mat/9805251 Strongly Correlated Electrons +cond-mat/9805252 Statistical Mechanics +cond-mat/9805253 Strongly Correlated Electrons +cond-mat/9805254 Superconductivity +cond-mat/9805255 Strongly Correlated Electrons +cond-mat/9805256 Statistical Mechanics +cond-mat/9805257 Statistical Mechanics +cond-mat/9805258 Materials Science +cond-mat/9805259 Mesoscale and Nanoscale Physics +cond-mat/9805261 Soft Condensed Matter +cond-mat/9805262 Materials Science +cond-mat/9805263 Soft Condensed Matter +cond-mat/9805264 Strongly Correlated Electrons +cond-mat/9805266 Soft Condensed Matter +cond-mat/9805268 Strongly Correlated Electrons +cond-mat/9805271 +cond-mat/9805272 +cond-mat/9805274 Materials Science +cond-mat/9805276 Soft Condensed Matter +cond-mat/9805277 +cond-mat/9805278 Soft Condensed Matter +cond-mat/9805279 Materials Science +cond-mat/9805280 Strongly Correlated Electrons +cond-mat/9805282 Statistical Mechanics +cond-mat/9805283 Materials Science +cond-mat/9805286 Soft Condensed Matter +cond-mat/9805287 +cond-mat/9805288 +cond-mat/9805289 Statistical Mechanics +cond-mat/9805290 Superconductivity +cond-mat/9805292 Disordered Systems and Neural Networks +cond-mat/9805293 Statistical Mechanics +cond-mat/9805294 Statistical Mechanics +cond-mat/9805295 Mesoscale and Nanoscale Physics +cond-mat/9805296 Mesoscale and Nanoscale Physics +cond-mat/9805297 Superconductivity +cond-mat/9805298 Superconductivity +cond-mat/9805304 Mesoscale and Nanoscale Physics +cond-mat/9805305 Materials Science +cond-mat/9805308 +cond-mat/9805309 Statistical Mechanics +cond-mat/9805311 Mesoscale and Nanoscale Physics +cond-mat/9805312 Mesoscale and Nanoscale Physics +cond-mat/9805314 Strongly Correlated Electrons +cond-mat/9805315 Strongly Correlated Electrons +cond-mat/9805316 Disordered Systems and Neural Networks +cond-mat/9805317 Statistical Mechanics +cond-mat/9805319 +cond-mat/9805322 +cond-mat/9805324 Statistical Mechanics +cond-mat/9805325 Strongly Correlated Electrons +cond-mat/9805326 Statistical Mechanics +cond-mat/9805327 +cond-mat/9805328 Materials Science +cond-mat/9805329 Statistical Mechanics +cond-mat/9805331 Soft Condensed Matter +cond-mat/9805332 Mesoscale and Nanoscale Physics +cond-mat/9805334 Superconductivity +cond-mat/9805335 Disordered Systems and Neural Networks +cond-mat/9805336 Strongly Correlated Electrons +cond-mat/9805337 Statistical Mechanics +cond-mat/9805338 +cond-mat/9805339 Disordered Systems and Neural Networks +cond-mat/9805341 Mesoscale and Nanoscale Physics +cond-mat/9805343 Materials Science +cond-mat/9805344 Statistical Mechanics +cond-mat/9805346 Strongly Correlated Electrons +cond-mat/9805347 Superconductivity +cond-mat/9805351 +cond-mat/9805352 +cond-mat/9805354 Superconductivity +cond-mat/9805356 Statistical Mechanics +cond-mat/9805357 Mesoscale and Nanoscale Physics +cond-mat/9805358 Statistical Mechanics +cond-mat/9805360 Statistical Mechanics +cond-mat/9805362 Statistical Mechanics +cond-mat/9805363 Strongly Correlated Electrons +cond-mat/9805364 Soft Condensed Matter +cond-mat/9805365 Materials Science +cond-mat/9805367 +cond-mat/9805368 Superconductivity +cond-mat/9805369 Mesoscale and Nanoscale Physics +cond-mat/9805371 +cond-mat/9805373 Soft Condensed Matter +cond-mat/9805375 Materials Science +cond-mat/9805376 +cond-mat/9805377 Disordered Systems and Neural Networks +cond-mat/9805379 Statistical Mechanics +cond-mat/9805380 Statistical Mechanics +cond-mat/9805381 Soft Condensed Matter +cond-mat/9805384 Statistical Mechanics +cond-mat/9805385 Statistical Mechanics +cond-mat/9805386 Strongly Correlated Electrons +cond-mat/9805390 Strongly Correlated Electrons +cond-mat/9805392 Soft Condensed Matter +cond-mat/9805394 Soft Condensed Matter +cond-mat/9805396 Statistical Mechanics +cond-mat/9805397 Disordered Systems and Neural Networks +cond-mat/9805398 Statistical Mechanics +cond-mat/9805399 Strongly Correlated Electrons +cond-mat/9805400 Statistical Mechanics +cond-mat/9805402 +cond-mat/9805405 Superconductivity +cond-mat/9805406 Mesoscale and Nanoscale Physics +cond-mat/9806001 Statistical Mechanics +cond-mat/9806002 Disordered Systems and Neural Networks +cond-mat/9806005 Disordered Systems and Neural Networks +cond-mat/9806007 Disordered Systems and Neural Networks +cond-mat/9806009 Strongly Correlated Electrons +cond-mat/9806012 Superconductivity +cond-mat/9806014 Superconductivity +cond-mat/9806016 Statistical Mechanics +cond-mat/9806018 Strongly Correlated Electrons +cond-mat/9806019 Mesoscale and Nanoscale Physics +cond-mat/9806022 +cond-mat/9806023 Statistical Mechanics +cond-mat/9806024 Soft Condensed Matter +cond-mat/9806025 Superconductivity +cond-mat/9806026 Statistical Mechanics +cond-mat/9806027 Statistical Mechanics +cond-mat/9806028 Statistical Mechanics +cond-mat/9806029 Materials Science +cond-mat/9806031 +cond-mat/9806033 Superconductivity +cond-mat/9806034 Materials Science +cond-mat/9806036 Statistical Mechanics +cond-mat/9806038 +cond-mat/9806039 Strongly Correlated Electrons +cond-mat/9806045 Materials Science +cond-mat/9806047 Mesoscale and Nanoscale Physics +cond-mat/9806051 Mesoscale and Nanoscale Physics +cond-mat/9806052 Superconductivity +cond-mat/9806054 Strongly Correlated Electrons +cond-mat/9806056 Superconductivity +cond-mat/9806060 Superconductivity +cond-mat/9806061 Mesoscale and Nanoscale Physics +cond-mat/9806062 Statistical Mechanics +cond-mat/9806064 Superconductivity +cond-mat/9806065 Superconductivity +cond-mat/9806066 Statistical Mechanics +cond-mat/9806067 Soft Condensed Matter +cond-mat/9806070 Mesoscale and Nanoscale Physics +cond-mat/9806072 Superconductivity +cond-mat/9806075 Mesoscale and Nanoscale Physics +cond-mat/9806079 Statistical Mechanics +cond-mat/9806080 Statistical Mechanics +cond-mat/9806084 Strongly Correlated Electrons +cond-mat/9806085 Superconductivity +cond-mat/9806086 Statistical Mechanics +cond-mat/9806087 Mesoscale and Nanoscale Physics +cond-mat/9806088 Superconductivity +cond-mat/9806093 Statistical Mechanics +cond-mat/9806095 Strongly Correlated Electrons +cond-mat/9806096 Statistical Mechanics +cond-mat/9806097 Statistical Mechanics +cond-mat/9806100 +cond-mat/9806101 +cond-mat/9806103 Statistical Mechanics +cond-mat/9806104 +cond-mat/9806105 Statistical Mechanics +cond-mat/9806107 Mesoscale and Nanoscale Physics +cond-mat/9806108 Mesoscale and Nanoscale Physics +cond-mat/9806109 Statistical Mechanics +cond-mat/9806111 Strongly Correlated Electrons +cond-mat/9806112 +cond-mat/9806114 Disordered Systems and Neural Networks +cond-mat/9806115 Statistical Mechanics +cond-mat/9806117 Mesoscale and Nanoscale Physics +cond-mat/9806120 Materials Science +cond-mat/9806124 Disordered Systems and Neural Networks +cond-mat/9806126 Statistical Mechanics +cond-mat/9806129 Statistical Mechanics +cond-mat/9806131 Strongly Correlated Electrons +cond-mat/9806132 +cond-mat/9806133 Statistical Mechanics +cond-mat/9806134 Disordered Systems and Neural Networks +cond-mat/9806135 +cond-mat/9806136 +cond-mat/9806139 Statistical Mechanics +cond-mat/9806141 Statistical Mechanics +cond-mat/9806142 Superconductivity +cond-mat/9806143 Strongly Correlated Electrons +cond-mat/9806144 Strongly Correlated Electrons +cond-mat/9806145 Mesoscale and Nanoscale Physics +cond-mat/9806148 Materials Science +cond-mat/9806149 Strongly Correlated Electrons +cond-mat/9806150 Superconductivity +cond-mat/9806153 Mesoscale and Nanoscale Physics +cond-mat/9806154 +cond-mat/9806155 Strongly Correlated Electrons +cond-mat/9806156 Strongly Correlated Electrons +cond-mat/9806157 Strongly Correlated Electrons +cond-mat/9806159 Strongly Correlated Electrons +cond-mat/9806161 +cond-mat/9806162 Strongly Correlated Electrons +cond-mat/9806163 Statistical Mechanics +cond-mat/9806165 +cond-mat/9806166 Superconductivity +cond-mat/9806168 Strongly Correlated Electrons +cond-mat/9806171 Statistical Mechanics +cond-mat/9806172 Mesoscale and Nanoscale Physics +cond-mat/9806174 Strongly Correlated Electrons +cond-mat/9806175 +cond-mat/9806176 Soft Condensed Matter +cond-mat/9806177 +cond-mat/9806178 Statistical Mechanics +cond-mat/9806180 Strongly Correlated Electrons +cond-mat/9806181 Mesoscale and Nanoscale Physics +cond-mat/9806182 Statistical Mechanics +cond-mat/9806183 Mesoscale and Nanoscale Physics +cond-mat/9806184 +cond-mat/9806186 Soft Condensed Matter +cond-mat/9806187 Materials Science +cond-mat/9806189 +cond-mat/9806191 Strongly Correlated Electrons +cond-mat/9806192 Mesoscale and Nanoscale Physics +cond-mat/9806193 +cond-mat/9806194 Strongly Correlated Electrons +cond-mat/9806195 Statistical Mechanics +cond-mat/9806196 Materials Science +cond-mat/9806197 Statistical Mechanics +cond-mat/9806199 Superconductivity +cond-mat/9806200 Superconductivity +cond-mat/9806201 Statistical Mechanics +cond-mat/9806203 Mesoscale and Nanoscale Physics +cond-mat/9806204 +cond-mat/9806205 Soft Condensed Matter +cond-mat/9806206 Disordered Systems and Neural Networks +cond-mat/9806207 Soft Condensed Matter +cond-mat/9806208 +cond-mat/9806209 Disordered Systems and Neural Networks +cond-mat/9806211 +cond-mat/9806212 Soft Condensed Matter +cond-mat/9806213 Statistical Mechanics +cond-mat/9806214 Mesoscale and Nanoscale Physics +cond-mat/9806215 +cond-mat/9806218 Strongly Correlated Electrons +cond-mat/9806219 Mesoscale and Nanoscale Physics +cond-mat/9806220 Disordered Systems and Neural Networks +cond-mat/9806222 Strongly Correlated Electrons +cond-mat/9806224 Disordered Systems and Neural Networks +cond-mat/9806226 +cond-mat/9806227 Strongly Correlated Electrons +cond-mat/9806228 Statistical Mechanics +cond-mat/9806234 Strongly Correlated Electrons +cond-mat/9806235 Disordered Systems and Neural Networks +cond-mat/9806237 Soft Condensed Matter +cond-mat/9806238 Mesoscale and Nanoscale Physics +cond-mat/9806240 Disordered Systems and Neural Networks +cond-mat/9806241 Statistical Mechanics +cond-mat/9806242 Mesoscale and Nanoscale Physics +cond-mat/9806243 Statistical Mechanics +cond-mat/9806245 Materials Science +cond-mat/9806246 Superconductivity +cond-mat/9806247 Superconductivity +cond-mat/9806248 Superconductivity +cond-mat/9806249 Statistical Mechanics +cond-mat/9806250 +cond-mat/9806251 +cond-mat/9806252 Mesoscale and Nanoscale Physics +cond-mat/9806253 Statistical Mechanics +cond-mat/9806254 Statistical Mechanics +cond-mat/9806255 Disordered Systems and Neural Networks +cond-mat/9806256 +cond-mat/9806257 Strongly Correlated Electrons +cond-mat/9806260 Soft Condensed Matter +cond-mat/9806262 Superconductivity +cond-mat/9806264 Strongly Correlated Electrons +cond-mat/9806265 Mesoscale and Nanoscale Physics +cond-mat/9806267 Disordered Systems and Neural Networks +cond-mat/9806269 Soft Condensed Matter +cond-mat/9806271 Mesoscale and Nanoscale Physics +cond-mat/9806272 Strongly Correlated Electrons +cond-mat/9806273 Materials Science +cond-mat/9806274 Materials Science +cond-mat/9806275 Superconductivity +cond-mat/9806277 Soft Condensed Matter +cond-mat/9806278 Materials Science +cond-mat/9806279 Strongly Correlated Electrons +cond-mat/9806280 Strongly Correlated Electrons +cond-mat/9806281 Mesoscale and Nanoscale Physics +cond-mat/9806282 Disordered Systems and Neural Networks +cond-mat/9806283 Mesoscale and Nanoscale Physics +cond-mat/9806284 Strongly Correlated Electrons +cond-mat/9806287 Statistical Mechanics +cond-mat/9806288 Superconductivity +cond-mat/9806290 Statistical Mechanics +cond-mat/9806291 Statistical Mechanics +cond-mat/9806292 Strongly Correlated Electrons +cond-mat/9806293 Superconductivity +cond-mat/9806294 Statistical Mechanics +cond-mat/9806295 +cond-mat/9806298 Statistical Mechanics +cond-mat/9806299 Statistical Mechanics +cond-mat/9806300 Superconductivity +cond-mat/9806302 Disordered Systems and Neural Networks +cond-mat/9806303 Disordered Systems and Neural Networks +cond-mat/9806304 Materials Science +cond-mat/9806305 Superconductivity +cond-mat/9806311 +cond-mat/9806312 Statistical Mechanics +cond-mat/9806314 Mesoscale and Nanoscale Physics +cond-mat/9806315 +cond-mat/9806316 Statistical Mechanics +cond-mat/9806320 Statistical Mechanics +cond-mat/9806322 +cond-mat/9806328 Disordered Systems and Neural Networks +cond-mat/9806329 Mesoscale and Nanoscale Physics +cond-mat/9806331 Statistical Mechanics +cond-mat/9806332 Materials Science +cond-mat/9806333 +cond-mat/9806335 Mesoscale and Nanoscale Physics +cond-mat/9806337 +cond-mat/9806338 Mesoscale and Nanoscale Physics +cond-mat/9806339 Statistical Mechanics +cond-mat/9806340 Mesoscale and Nanoscale Physics +cond-mat/9806341 Superconductivity +cond-mat/9806343 Strongly Correlated Electrons +cond-mat/9806344 Statistical Mechanics +cond-mat/9806345 Statistical Mechanics +cond-mat/9806346 Statistical Mechanics +cond-mat/9806347 Strongly Correlated Electrons +cond-mat/9806351 +cond-mat/9806353 Statistical Mechanics +cond-mat/9806355 Statistical Mechanics +cond-mat/9806356 Disordered Systems and Neural Networks +cond-mat/9806357 Statistical Mechanics +cond-mat/9806358 Soft Condensed Matter +cond-mat/9806359 Statistical Mechanics +cond-mat/9806362 +cond-mat/9806363 +cond-mat/9806364 +cond-mat/9806365 Mesoscale and Nanoscale Physics +cond-mat/9806367 Strongly Correlated Electrons +cond-mat/9806368 Mesoscale and Nanoscale Physics +cond-mat/9806369 Strongly Correlated Electrons +cond-mat/9806372 +cond-mat/9806373 Disordered Systems and Neural Networks +cond-mat/9806375 +cond-mat/9806376 Superconductivity +cond-mat/9806377 Materials Science +cond-mat/9806378 Materials Science +cond-mat/9806379 Disordered Systems and Neural Networks +cond-mat/9806380 Mesoscale and Nanoscale Physics +cond-mat/9806381 Strongly Correlated Electrons +cond-mat/9807002 Statistical Mechanics +cond-mat/9807003 Strongly Correlated Electrons +cond-mat/9807005 Statistical Mechanics +cond-mat/9807006 Soft Condensed Matter +cond-mat/9807007 Soft Condensed Matter +cond-mat/9807008 Disordered Systems and Neural Networks +cond-mat/9807009 Statistical Mechanics +cond-mat/9807010 Statistical Mechanics +cond-mat/9807012 Disordered Systems and Neural Networks +cond-mat/9807014 Soft Condensed Matter +cond-mat/9807015 Strongly Correlated Electrons +cond-mat/9807016 Superconductivity +cond-mat/9807018 +cond-mat/9807020 Strongly Correlated Electrons +cond-mat/9807022 Materials Science +cond-mat/9807023 Statistical Mechanics +cond-mat/9807024 Superconductivity +cond-mat/9807025 Disordered Systems and Neural Networks +cond-mat/9807027 Superconductivity +cond-mat/9807028 Materials Science +cond-mat/9807029 Disordered Systems and Neural Networks +cond-mat/9807030 Soft Condensed Matter +cond-mat/9807031 Statistical Mechanics +cond-mat/9807032 Statistical Mechanics +cond-mat/9807033 +cond-mat/9807034 Strongly Correlated Electrons +cond-mat/9807035 Soft Condensed Matter +cond-mat/9807036 Materials Science +cond-mat/9807037 Superconductivity +cond-mat/9807038 +cond-mat/9807039 Statistical Mechanics +cond-mat/9807041 Mesoscale and Nanoscale Physics +cond-mat/9807042 Strongly Correlated Electrons +cond-mat/9807043 Superconductivity +cond-mat/9807046 Strongly Correlated Electrons +cond-mat/9807048 Materials Science +cond-mat/9807050 +cond-mat/9807052 Superconductivity +cond-mat/9807054 Mesoscale and Nanoscale Physics +cond-mat/9807055 Statistical Mechanics +cond-mat/9807056 Superconductivity +cond-mat/9807059 +cond-mat/9807060 Strongly Correlated Electrons +cond-mat/9807062 Strongly Correlated Electrons +cond-mat/9807063 Statistical Mechanics +cond-mat/9807064 Statistical Mechanics +cond-mat/9807068 Superconductivity +cond-mat/9807073 Statistical Mechanics +cond-mat/9807075 Strongly Correlated Electrons +cond-mat/9807076 Statistical Mechanics +cond-mat/9807077 +cond-mat/9807078 Strongly Correlated Electrons +cond-mat/9807079 +cond-mat/9807080 +cond-mat/9807081 Superconductivity +cond-mat/9807082 Disordered Systems and Neural Networks +cond-mat/9807083 Strongly Correlated Electrons +cond-mat/9807084 Strongly Correlated Electrons +cond-mat/9807087 Statistical Mechanics +cond-mat/9807090 Superconductivity +cond-mat/9807091 Statistical Mechanics +cond-mat/9807092 +cond-mat/9807093 Strongly Correlated Electrons +cond-mat/9807094 Strongly Correlated Electrons +cond-mat/9807096 Statistical Mechanics +cond-mat/9807097 Strongly Correlated Electrons +cond-mat/9807098 Superconductivity +cond-mat/9807099 Soft Condensed Matter +cond-mat/9807100 Soft Condensed Matter +cond-mat/9807101 Disordered Systems and Neural Networks +cond-mat/9807102 Disordered Systems and Neural Networks +cond-mat/9807103 Mesoscale and Nanoscale Physics +cond-mat/9807104 Disordered Systems and Neural Networks +cond-mat/9807108 Disordered Systems and Neural Networks +cond-mat/9807109 Superconductivity +cond-mat/9807112 Mesoscale and Nanoscale Physics +cond-mat/9807113 +cond-mat/9807114 Soft Condensed Matter +cond-mat/9807116 Mesoscale and Nanoscale Physics +cond-mat/9807117 Statistical Mechanics +cond-mat/9807119 Statistical Mechanics +cond-mat/9807122 Mesoscale and Nanoscale Physics +cond-mat/9807123 +cond-mat/9807124 Strongly Correlated Electrons +cond-mat/9807126 Disordered Systems and Neural Networks +cond-mat/9807128 Disordered Systems and Neural Networks +cond-mat/9807130 Strongly Correlated Electrons +cond-mat/9807131 Statistical Mechanics +cond-mat/9807132 +cond-mat/9807133 Soft Condensed Matter +cond-mat/9807134 Strongly Correlated Electrons +cond-mat/9807135 +cond-mat/9807136 +cond-mat/9807138 +cond-mat/9807139 Strongly Correlated Electrons +cond-mat/9807141 Soft Condensed Matter +cond-mat/9807143 Mesoscale and Nanoscale Physics +cond-mat/9807145 +cond-mat/9807146 Mesoscale and Nanoscale Physics +cond-mat/9807148 Soft Condensed Matter +cond-mat/9807149 Strongly Correlated Electrons +cond-mat/9807150 +cond-mat/9807151 Superconductivity +cond-mat/9807152 Superconductivity +cond-mat/9807155 Statistical Mechanics +cond-mat/9807156 Superconductivity +cond-mat/9807159 Mesoscale and Nanoscale Physics +cond-mat/9807162 Mesoscale and Nanoscale Physics +cond-mat/9807166 Statistical Mechanics +cond-mat/9807167 Strongly Correlated Electrons +cond-mat/9807168 Superconductivity +cond-mat/9807169 +cond-mat/9807173 Statistical Mechanics +cond-mat/9807174 +cond-mat/9807175 Statistical Mechanics +cond-mat/9807176 Materials Science +cond-mat/9807178 Mesoscale and Nanoscale Physics +cond-mat/9807180 Soft Condensed Matter +cond-mat/9807182 Mesoscale and Nanoscale Physics +cond-mat/9807183 Mesoscale and Nanoscale Physics +cond-mat/9807184 Soft Condensed Matter +cond-mat/9807185 Superconductivity +cond-mat/9807186 Strongly Correlated Electrons +cond-mat/9807187 +cond-mat/9807189 Disordered Systems and Neural Networks +cond-mat/9807190 Materials Science +cond-mat/9807191 Soft Condensed Matter +cond-mat/9807192 Strongly Correlated Electrons +cond-mat/9807194 Statistical Mechanics +cond-mat/9807196 Materials Science +cond-mat/9807198 +cond-mat/9807200 Materials Science +cond-mat/9807201 Disordered Systems and Neural Networks +cond-mat/9807202 Materials Science +cond-mat/9807203 Statistical Mechanics +cond-mat/9807204 Strongly Correlated Electrons +cond-mat/9807205 Statistical Mechanics +cond-mat/9807206 Statistical Mechanics +cond-mat/9807208 Mesoscale and Nanoscale Physics +cond-mat/9807209 Strongly Correlated Electrons +cond-mat/9807210 Superconductivity +cond-mat/9807211 Statistical Mechanics +cond-mat/9807212 Materials Science +cond-mat/9807213 +cond-mat/9807216 Strongly Correlated Electrons +cond-mat/9807217 Materials Science +cond-mat/9807221 +cond-mat/9807222 Disordered Systems and Neural Networks +cond-mat/9807223 Strongly Correlated Electrons +cond-mat/9807224 Statistical Mechanics +cond-mat/9807225 Materials Science +cond-mat/9807226 +cond-mat/9807227 Materials Science +cond-mat/9807228 Strongly Correlated Electrons +cond-mat/9807229 Statistical Mechanics +cond-mat/9807231 Strongly Correlated Electrons +cond-mat/9807233 Mesoscale and Nanoscale Physics +cond-mat/9807234 +cond-mat/9807235 +cond-mat/9807237 +cond-mat/9807238 Mesoscale and Nanoscale Physics +cond-mat/9807240 Superconductivity +cond-mat/9807242 Statistical Mechanics +cond-mat/9807243 +cond-mat/9807244 Materials Science +cond-mat/9807245 Disordered Systems and Neural Networks +cond-mat/9807247 +cond-mat/9807248 Disordered Systems and Neural Networks +cond-mat/9807249 Strongly Correlated Electrons +cond-mat/9807250 +cond-mat/9807251 Soft Condensed Matter +cond-mat/9807252 Statistical Mechanics +cond-mat/9807253 Superconductivity +cond-mat/9807254 +cond-mat/9807255 Strongly Correlated Electrons +cond-mat/9807256 Materials Science +cond-mat/9807258 Soft Condensed Matter +cond-mat/9807259 Strongly Correlated Electrons +cond-mat/9807261 Disordered Systems and Neural Networks +cond-mat/9807263 Strongly Correlated Electrons +cond-mat/9807264 Strongly Correlated Electrons +cond-mat/9807267 +cond-mat/9807268 Superconductivity +cond-mat/9807270 +cond-mat/9807272 Strongly Correlated Electrons +cond-mat/9807273 Statistical Mechanics +cond-mat/9807274 Statistical Mechanics +cond-mat/9807275 Mesoscale and Nanoscale Physics +cond-mat/9807276 Strongly Correlated Electrons +cond-mat/9807277 Mesoscale and Nanoscale Physics +cond-mat/9807278 Superconductivity +cond-mat/9807280 Materials Science +cond-mat/9807281 Disordered Systems and Neural Networks +cond-mat/9807282 Disordered Systems and Neural Networks +cond-mat/9807283 Materials Science +cond-mat/9807286 Mesoscale and Nanoscale Physics +cond-mat/9807287 +cond-mat/9807289 Statistical Mechanics +cond-mat/9807290 Mesoscale and Nanoscale Physics +cond-mat/9807292 +cond-mat/9807293 Soft Condensed Matter +cond-mat/9807295 Statistical Mechanics +cond-mat/9807296 Soft Condensed Matter +cond-mat/9807297 Superconductivity +cond-mat/9807298 +cond-mat/9807299 Soft Condensed Matter +cond-mat/9807300 +cond-mat/9807301 Statistical Mechanics +cond-mat/9807302 Strongly Correlated Electrons +cond-mat/9807303 Strongly Correlated Electrons +cond-mat/9807304 Mesoscale and Nanoscale Physics +cond-mat/9807305 Disordered Systems and Neural Networks +cond-mat/9807306 +cond-mat/9807309 Soft Condensed Matter +cond-mat/9807310 Soft Condensed Matter +cond-mat/9807311 Mesoscale and Nanoscale Physics +cond-mat/9807313 +cond-mat/9807314 Superconductivity +cond-mat/9807315 Strongly Correlated Electrons +cond-mat/9807316 Mesoscale and Nanoscale Physics +cond-mat/9807317 Mesoscale and Nanoscale Physics +cond-mat/9807318 Soft Condensed Matter +cond-mat/9807320 Mesoscale and Nanoscale Physics +cond-mat/9807321 Mesoscale and Nanoscale Physics +cond-mat/9807323 Materials Science +cond-mat/9807324 +cond-mat/9807326 Disordered Systems and Neural Networks +cond-mat/9807327 +cond-mat/9807328 Strongly Correlated Electrons +cond-mat/9807329 +cond-mat/9807330 Strongly Correlated Electrons +cond-mat/9807332 Strongly Correlated Electrons +cond-mat/9807333 Disordered Systems and Neural Networks +cond-mat/9807334 Mesoscale and Nanoscale Physics +cond-mat/9807336 Disordered Systems and Neural Networks +cond-mat/9807337 Strongly Correlated Electrons +cond-mat/9807338 Statistical Mechanics +cond-mat/9807339 +cond-mat/9807340 +cond-mat/9807341 +cond-mat/9807343 Mesoscale and Nanoscale Physics +cond-mat/9807345 +cond-mat/9807346 Superconductivity +cond-mat/9807349 Soft Condensed Matter +cond-mat/9807350 Materials Science +cond-mat/9807351 Mesoscale and Nanoscale Physics +cond-mat/9807356 Statistical Mechanics +cond-mat/9807358 Mesoscale and Nanoscale Physics +cond-mat/9807359 +cond-mat/9807360 Statistical Mechanics +cond-mat/9807361 +cond-mat/9807363 +cond-mat/9807364 Statistical Mechanics +cond-mat/9807365 +cond-mat/9807369 Strongly Correlated Electrons +cond-mat/9807372 +cond-mat/9807374 Disordered Systems and Neural Networks +cond-mat/9807375 Strongly Correlated Electrons +cond-mat/9807377 Statistical Mechanics +cond-mat/9807378 Strongly Correlated Electrons +cond-mat/9807382 Mesoscale and Nanoscale Physics +cond-mat/9807384 Statistical Mechanics +cond-mat/9807387 Mesoscale and Nanoscale Physics +cond-mat/9807389 Superconductivity +cond-mat/9807391 Disordered Systems and Neural Networks +cond-mat/9807395 Materials Science +cond-mat/9807396 +cond-mat/9807405 Disordered Systems and Neural Networks +cond-mat/9807406 +cond-mat/9807407 Strongly Correlated Electrons +cond-mat/9807408 Strongly Correlated Electrons +cond-mat/9807410 Disordered Systems and Neural Networks +cond-mat/9807411 Mesoscale and Nanoscale Physics +cond-mat/9807413 Mesoscale and Nanoscale Physics +cond-mat/9807415 Statistical Mechanics +cond-mat/9807417 Statistical Mechanics +cond-mat/9807418 Materials Science +cond-mat/9807419 Mesoscale and Nanoscale Physics +cond-mat/9808001 Superconductivity +cond-mat/9808002 Soft Condensed Matter +cond-mat/9808003 Disordered Systems and Neural Networks +cond-mat/9808004 Strongly Correlated Electrons +cond-mat/9808006 Strongly Correlated Electrons +cond-mat/9808008 Statistical Mechanics +cond-mat/9808010 Soft Condensed Matter +cond-mat/9808012 Materials Science +cond-mat/9808013 Mesoscale and Nanoscale Physics +cond-mat/9808015 Strongly Correlated Electrons +cond-mat/9808016 Strongly Correlated Electrons +cond-mat/9808017 Statistical Mechanics +cond-mat/9808018 Strongly Correlated Electrons +cond-mat/9808023 Statistical Mechanics +cond-mat/9808024 +cond-mat/9808025 +cond-mat/9808026 Mesoscale and Nanoscale Physics +cond-mat/9808029 +cond-mat/9808030 Soft Condensed Matter +cond-mat/9808032 Mesoscale and Nanoscale Physics +cond-mat/9808033 Mesoscale and Nanoscale Physics +cond-mat/9808037 Statistical Mechanics +cond-mat/9808040 Mesoscale and Nanoscale Physics +cond-mat/9808047 Statistical Mechanics +cond-mat/9808048 Strongly Correlated Electrons +cond-mat/9808049 Strongly Correlated Electrons +cond-mat/9808050 +cond-mat/9808052 Statistical Mechanics +cond-mat/9808053 Disordered Systems and Neural Networks +cond-mat/9808054 Statistical Mechanics +cond-mat/9808055 Strongly Correlated Electrons +cond-mat/9808057 Statistical Mechanics +cond-mat/9808058 +cond-mat/9808060 Strongly Correlated Electrons +cond-mat/9808061 Strongly Correlated Electrons +cond-mat/9808063 Disordered Systems and Neural Networks +cond-mat/9808064 Strongly Correlated Electrons +cond-mat/9808065 Strongly Correlated Electrons +cond-mat/9808069 Mesoscale and Nanoscale Physics +cond-mat/9808072 Strongly Correlated Electrons +cond-mat/9808073 +cond-mat/9808075 Statistical Mechanics +cond-mat/9808077 +cond-mat/9808078 Disordered Systems and Neural Networks +cond-mat/9808079 Strongly Correlated Electrons +cond-mat/9808080 Statistical Mechanics +cond-mat/9808081 Mesoscale and Nanoscale Physics +cond-mat/9808082 Mesoscale and Nanoscale Physics +cond-mat/9808083 Strongly Correlated Electrons +cond-mat/9808084 +cond-mat/9808088 Statistical Mechanics +cond-mat/9808091 Mesoscale and Nanoscale Physics +cond-mat/9808092 Mesoscale and Nanoscale Physics +cond-mat/9808093 Soft Condensed Matter +cond-mat/9808094 Strongly Correlated Electrons +cond-mat/9808096 Superconductivity +cond-mat/9808100 Strongly Correlated Electrons +cond-mat/9808102 Superconductivity +cond-mat/9808104 Disordered Systems and Neural Networks +cond-mat/9808106 Materials Science +cond-mat/9808107 Strongly Correlated Electrons +cond-mat/9808108 Strongly Correlated Electrons +cond-mat/9808112 Materials Science +cond-mat/9808113 Materials Science +cond-mat/9808114 +cond-mat/9808115 Superconductivity +cond-mat/9808117 Soft Condensed Matter +cond-mat/9808118 +cond-mat/9808119 Statistical Mechanics +cond-mat/9808122 Soft Condensed Matter +cond-mat/9808123 Mesoscale and Nanoscale Physics +cond-mat/9808124 Strongly Correlated Electrons +cond-mat/9808125 Superconductivity +cond-mat/9808127 Superconductivity +cond-mat/9808131 Statistical Mechanics +cond-mat/9808134 Superconductivity +cond-mat/9808136 Strongly Correlated Electrons +cond-mat/9808138 Disordered Systems and Neural Networks +cond-mat/9808139 Disordered Systems and Neural Networks +cond-mat/9808140 Disordered Systems and Neural Networks +cond-mat/9808141 Statistical Mechanics +cond-mat/9808143 Mesoscale and Nanoscale Physics +cond-mat/9808144 Strongly Correlated Electrons +cond-mat/9808145 Mesoscale and Nanoscale Physics +cond-mat/9808146 Statistical Mechanics +cond-mat/9808148 +cond-mat/9808149 Statistical Mechanics +cond-mat/9808150 Statistical Mechanics +cond-mat/9808151 Materials Science +cond-mat/9808152 Statistical Mechanics +cond-mat/9808153 Statistical Mechanics +cond-mat/9808155 Strongly Correlated Electrons +cond-mat/9808156 +cond-mat/9808158 Mesoscale and Nanoscale Physics +cond-mat/9808159 Superconductivity +cond-mat/9808160 Strongly Correlated Electrons +cond-mat/9808161 Mesoscale and Nanoscale Physics +cond-mat/9808164 Superconductivity +cond-mat/9808165 Strongly Correlated Electrons +cond-mat/9808166 Mesoscale and Nanoscale Physics +cond-mat/9808169 Strongly Correlated Electrons +cond-mat/9808170 +cond-mat/9808172 Statistical Mechanics +cond-mat/9808176 Disordered Systems and Neural Networks +cond-mat/9808177 Strongly Correlated Electrons +cond-mat/9808178 Superconductivity +cond-mat/9808179 Strongly Correlated Electrons +cond-mat/9808181 Statistical Mechanics +cond-mat/9808184 +cond-mat/9808185 Strongly Correlated Electrons +cond-mat/9808186 Mesoscale and Nanoscale Physics +cond-mat/9808188 Strongly Correlated Electrons +cond-mat/9808189 Strongly Correlated Electrons +cond-mat/9808190 Disordered Systems and Neural Networks +cond-mat/9808191 Statistical Mechanics +cond-mat/9808192 Disordered Systems and Neural Networks +cond-mat/9808193 Mesoscale and Nanoscale Physics +cond-mat/9808196 Disordered Systems and Neural Networks +cond-mat/9808197 Disordered Systems and Neural Networks +cond-mat/9808198 Strongly Correlated Electrons +cond-mat/9808199 Statistical Mechanics +cond-mat/9808200 Materials Science +cond-mat/9808201 Superconductivity +cond-mat/9808204 Materials Science +cond-mat/9808205 Superconductivity +cond-mat/9808206 +cond-mat/9808207 Superconductivity +cond-mat/9808210 Superconductivity +cond-mat/9808212 Mesoscale and Nanoscale Physics +cond-mat/9808214 Soft Condensed Matter +cond-mat/9808215 Strongly Correlated Electrons +cond-mat/9808216 Materials Science +cond-mat/9808218 Superconductivity +cond-mat/9808219 Statistical Mechanics +cond-mat/9808223 Statistical Mechanics +cond-mat/9808224 Materials Science +cond-mat/9808225 Soft Condensed Matter +cond-mat/9808226 Materials Science +cond-mat/9808227 Mesoscale and Nanoscale Physics +cond-mat/9808230 Superconductivity +cond-mat/9808231 Superconductivity +cond-mat/9808232 Materials Science +cond-mat/9808234 Mesoscale and Nanoscale Physics +cond-mat/9808235 Materials Science +cond-mat/9808236 Materials Science +cond-mat/9808237 Disordered Systems and Neural Networks +cond-mat/9808239 +cond-mat/9808241 Statistical Mechanics +cond-mat/9808243 +cond-mat/9808246 +cond-mat/9808249 Superconductivity +cond-mat/9808251 Mesoscale and Nanoscale Physics +cond-mat/9808252 Superconductivity +cond-mat/9808253 Strongly Correlated Electrons +cond-mat/9808254 +cond-mat/9808257 +cond-mat/9808258 +cond-mat/9808259 Materials Science +cond-mat/9808260 Disordered Systems and Neural Networks +cond-mat/9808263 Statistical Mechanics +cond-mat/9808266 Statistical Mechanics +cond-mat/9808268 Materials Science +cond-mat/9808269 Materials Science +cond-mat/9808270 Superconductivity +cond-mat/9808272 Statistical Mechanics +cond-mat/9808273 Mesoscale and Nanoscale Physics +cond-mat/9808274 +cond-mat/9808275 Materials Science +cond-mat/9808276 Mesoscale and Nanoscale Physics +cond-mat/9808278 Statistical Mechanics +cond-mat/9808282 Mesoscale and Nanoscale Physics +cond-mat/9808283 Superconductivity +cond-mat/9808285 Superconductivity +cond-mat/9808287 Statistical Mechanics +cond-mat/9808288 +cond-mat/9808290 Disordered Systems and Neural Networks +cond-mat/9808292 Mesoscale and Nanoscale Physics +cond-mat/9808294 +cond-mat/9808296 Statistical Mechanics +cond-mat/9808297 Superconductivity +cond-mat/9808298 Superconductivity +cond-mat/9808299 Statistical Mechanics +cond-mat/9808300 Statistical Mechanics +cond-mat/9808301 Strongly Correlated Electrons +cond-mat/9808302 Strongly Correlated Electrons +cond-mat/9808304 Materials Science +cond-mat/9808306 Soft Condensed Matter +cond-mat/9808308 Statistical Mechanics +cond-mat/9808312 Strongly Correlated Electrons +cond-mat/9808313 Strongly Correlated Electrons +cond-mat/9808314 Strongly Correlated Electrons +cond-mat/9808315 Materials Science +cond-mat/9808316 Disordered Systems and Neural Networks +cond-mat/9808318 Statistical Mechanics +cond-mat/9808321 Superconductivity +cond-mat/9808322 Superconductivity +cond-mat/9808323 Disordered Systems and Neural Networks +cond-mat/9808324 Statistical Mechanics +cond-mat/9808325 Statistical Mechanics +cond-mat/9808326 Materials Science +cond-mat/9808327 Strongly Correlated Electrons +cond-mat/9808329 Materials Science +cond-mat/9808331 Superconductivity +cond-mat/9808333 Mesoscale and Nanoscale Physics +cond-mat/9808334 Strongly Correlated Electrons +cond-mat/9808335 Statistical Mechanics +cond-mat/9808336 +cond-mat/9808337 Statistical Mechanics +cond-mat/9808339 Mesoscale and Nanoscale Physics +cond-mat/9808340 Mesoscale and Nanoscale Physics +cond-mat/9808341 Mesoscale and Nanoscale Physics +cond-mat/9808342 Statistical Mechanics +cond-mat/9808343 Statistical Mechanics +cond-mat/9808344 +cond-mat/9808347 Mesoscale and Nanoscale Physics +cond-mat/9808348 Strongly Correlated Electrons +cond-mat/9808349 Statistical Mechanics +cond-mat/9809002 +cond-mat/9809003 Strongly Correlated Electrons +cond-mat/9809005 Statistical Mechanics +cond-mat/9809006 +cond-mat/9809007 +cond-mat/9809009 Strongly Correlated Electrons +cond-mat/9809010 Mesoscale and Nanoscale Physics +cond-mat/9809011 Statistical Mechanics +cond-mat/9809012 Mesoscale and Nanoscale Physics +cond-mat/9809013 Strongly Correlated Electrons +cond-mat/9809016 Strongly Correlated Electrons +cond-mat/9809017 Strongly Correlated Electrons +cond-mat/9809018 +cond-mat/9809019 Disordered Systems and Neural Networks +cond-mat/9809021 Disordered Systems and Neural Networks +cond-mat/9809024 Mesoscale and Nanoscale Physics +cond-mat/9809025 Strongly Correlated Electrons +cond-mat/9809026 Materials Science +cond-mat/9809027 Soft Condensed Matter +cond-mat/9809028 Strongly Correlated Electrons +cond-mat/9809029 Disordered Systems and Neural Networks +cond-mat/9809030 Disordered Systems and Neural Networks +cond-mat/9809031 +cond-mat/9809032 Strongly Correlated Electrons +cond-mat/9809033 Strongly Correlated Electrons +cond-mat/9809034 Strongly Correlated Electrons +cond-mat/9809035 Strongly Correlated Electrons +cond-mat/9809036 Statistical Mechanics +cond-mat/9809037 Strongly Correlated Electrons +cond-mat/9809038 Strongly Correlated Electrons +cond-mat/9809039 +cond-mat/9809040 Superconductivity +cond-mat/9809041 Statistical Mechanics +cond-mat/9809042 Mesoscale and Nanoscale Physics +cond-mat/9809043 Soft Condensed Matter +cond-mat/9809044 +cond-mat/9809049 Mesoscale and Nanoscale Physics +cond-mat/9809050 Statistical Mechanics +cond-mat/9809052 Statistical Mechanics +cond-mat/9809053 Materials Science +cond-mat/9809055 Statistical Mechanics +cond-mat/9809056 Statistical Mechanics +cond-mat/9809058 Mesoscale and Nanoscale Physics +cond-mat/9809059 Disordered Systems and Neural Networks +cond-mat/9809060 Superconductivity +cond-mat/9809062 Superconductivity +cond-mat/9809063 +cond-mat/9809064 Statistical Mechanics +cond-mat/9809065 Disordered Systems and Neural Networks +cond-mat/9809066 Superconductivity +cond-mat/9809067 Statistical Mechanics +cond-mat/9809068 Strongly Correlated Electrons +cond-mat/9809070 Superconductivity +cond-mat/9809072 Mesoscale and Nanoscale Physics +cond-mat/9809073 Strongly Correlated Electrons +cond-mat/9809074 Mesoscale and Nanoscale Physics +cond-mat/9809075 +cond-mat/9809076 +cond-mat/9809078 Disordered Systems and Neural Networks +cond-mat/9809079 Mesoscale and Nanoscale Physics +cond-mat/9809080 Statistical Mechanics +cond-mat/9809081 Statistical Mechanics +cond-mat/9809084 +cond-mat/9809085 Statistical Mechanics +cond-mat/9809088 Strongly Correlated Electrons +cond-mat/9809090 Disordered Systems and Neural Networks +cond-mat/9809091 +cond-mat/9809093 Strongly Correlated Electrons +cond-mat/9809095 Superconductivity +cond-mat/9809097 Disordered Systems and Neural Networks +cond-mat/9809098 Strongly Correlated Electrons +cond-mat/9809099 Strongly Correlated Electrons +cond-mat/9809103 +cond-mat/9809104 Mesoscale and Nanoscale Physics +cond-mat/9809105 Statistical Mechanics +cond-mat/9809107 Strongly Correlated Electrons +cond-mat/9809108 Statistical Mechanics +cond-mat/9809109 Disordered Systems and Neural Networks +cond-mat/9809111 +cond-mat/9809113 Strongly Correlated Electrons +cond-mat/9809115 Superconductivity +cond-mat/9809117 Disordered Systems and Neural Networks +cond-mat/9809118 Superconductivity +cond-mat/9809120 Statistical Mechanics +cond-mat/9809126 Statistical Mechanics +cond-mat/9809127 Statistical Mechanics +cond-mat/9809129 Strongly Correlated Electrons +cond-mat/9809132 Superconductivity +cond-mat/9809133 Mesoscale and Nanoscale Physics +cond-mat/9809134 Strongly Correlated Electrons +cond-mat/9809136 Statistical Mechanics +cond-mat/9809138 Statistical Mechanics +cond-mat/9809139 Strongly Correlated Electrons +cond-mat/9809140 +cond-mat/9809141 Superconductivity +cond-mat/9809144 +cond-mat/9809146 +cond-mat/9809147 Disordered Systems and Neural Networks +cond-mat/9809148 +cond-mat/9809149 Superconductivity +cond-mat/9809150 Strongly Correlated Electrons +cond-mat/9809151 Statistical Mechanics +cond-mat/9809152 Superconductivity +cond-mat/9809153 +cond-mat/9809154 +cond-mat/9809155 Statistical Mechanics +cond-mat/9809156 Statistical Mechanics +cond-mat/9809157 Mesoscale and Nanoscale Physics +cond-mat/9809158 +cond-mat/9809159 Superconductivity +cond-mat/9809163 Statistical Mechanics +cond-mat/9809164 Soft Condensed Matter +cond-mat/9809165 Superconductivity +cond-mat/9809166 +cond-mat/9809168 Strongly Correlated Electrons +cond-mat/9809169 +cond-mat/9809170 Disordered Systems and Neural Networks +cond-mat/9809171 Mesoscale and Nanoscale Physics +cond-mat/9809173 Disordered Systems and Neural Networks +cond-mat/9809174 Statistical Mechanics +cond-mat/9809177 Disordered Systems and Neural Networks +cond-mat/9809178 Strongly Correlated Electrons +cond-mat/9809179 Statistical Mechanics +cond-mat/9809181 Statistical Mechanics +cond-mat/9809182 Superconductivity +cond-mat/9809183 Statistical Mechanics +cond-mat/9809184 Statistical Mechanics +cond-mat/9809185 +cond-mat/9809187 Superconductivity +cond-mat/9809189 Mesoscale and Nanoscale Physics +cond-mat/9809190 Disordered Systems and Neural Networks +cond-mat/9809191 Soft Condensed Matter +cond-mat/9809192 Strongly Correlated Electrons +cond-mat/9809193 +cond-mat/9809194 Statistical Mechanics +cond-mat/9809195 +cond-mat/9809196 Statistical Mechanics +cond-mat/9809197 Statistical Mechanics +cond-mat/9809198 +cond-mat/9809201 Mesoscale and Nanoscale Physics +cond-mat/9809202 Soft Condensed Matter +cond-mat/9809203 +cond-mat/9809204 Mesoscale and Nanoscale Physics +cond-mat/9809206 Superconductivity +cond-mat/9809207 Mesoscale and Nanoscale Physics +cond-mat/9809209 Statistical Mechanics +cond-mat/9809210 Statistical Mechanics +cond-mat/9809211 Statistical Mechanics +cond-mat/9809215 Disordered Systems and Neural Networks +cond-mat/9809216 Mesoscale and Nanoscale Physics +cond-mat/9809217 Materials Science +cond-mat/9809218 Mesoscale and Nanoscale Physics +cond-mat/9809219 Materials Science +cond-mat/9809220 Mesoscale and Nanoscale Physics +cond-mat/9809221 Mesoscale and Nanoscale Physics +cond-mat/9809222 Materials Science +cond-mat/9809224 +cond-mat/9809225 Superconductivity +cond-mat/9809226 Mesoscale and Nanoscale Physics +cond-mat/9809227 Mesoscale and Nanoscale Physics +cond-mat/9809230 Statistical Mechanics +cond-mat/9809232 +cond-mat/9809233 Strongly Correlated Electrons +cond-mat/9809235 +cond-mat/9809237 Statistical Mechanics +cond-mat/9809238 Statistical Mechanics +cond-mat/9809239 Mesoscale and Nanoscale Physics +cond-mat/9809240 Statistical Mechanics +cond-mat/9809241 Statistical Mechanics +cond-mat/9809242 Materials Science +cond-mat/9809246 Disordered Systems and Neural Networks +cond-mat/9809247 Statistical Mechanics +cond-mat/9809249 Strongly Correlated Electrons +cond-mat/9809250 Statistical Mechanics +cond-mat/9809252 Mesoscale and Nanoscale Physics +cond-mat/9809253 Statistical Mechanics +cond-mat/9809254 Statistical Mechanics +cond-mat/9809255 +cond-mat/9809256 Materials Science +cond-mat/9809258 +cond-mat/9809259 Statistical Mechanics +cond-mat/9809261 Mesoscale and Nanoscale Physics +cond-mat/9809262 Superconductivity +cond-mat/9809263 Superconductivity +cond-mat/9809265 Disordered Systems and Neural Networks +cond-mat/9809266 +cond-mat/9809267 Mesoscale and Nanoscale Physics +cond-mat/9809268 Statistical Mechanics +cond-mat/9809269 Statistical Mechanics +cond-mat/9809270 +cond-mat/9809271 +cond-mat/9809272 Mesoscale and Nanoscale Physics +cond-mat/9809273 +cond-mat/9809276 Disordered Systems and Neural Networks +cond-mat/9809277 Statistical Mechanics +cond-mat/9809278 Superconductivity +cond-mat/9809279 Superconductivity +cond-mat/9809280 Disordered Systems and Neural Networks +cond-mat/9809281 Strongly Correlated Electrons +cond-mat/9809282 Materials Science +cond-mat/9809285 Mesoscale and Nanoscale Physics +cond-mat/9809288 +cond-mat/9809289 Strongly Correlated Electrons +cond-mat/9809290 Strongly Correlated Electrons +cond-mat/9809291 Strongly Correlated Electrons +cond-mat/9809292 +cond-mat/9809293 Statistical Mechanics +cond-mat/9809295 Superconductivity +cond-mat/9809296 Strongly Correlated Electrons +cond-mat/9809298 Superconductivity +cond-mat/9809300 Disordered Systems and Neural Networks +cond-mat/9809301 Mesoscale and Nanoscale Physics +cond-mat/9809302 Superconductivity +cond-mat/9809303 Statistical Mechanics +cond-mat/9809304 Mesoscale and Nanoscale Physics +cond-mat/9809306 Statistical Mechanics +cond-mat/9809308 Disordered Systems and Neural Networks +cond-mat/9809309 Strongly Correlated Electrons +cond-mat/9809311 Superconductivity +cond-mat/9809316 Strongly Correlated Electrons +cond-mat/9809317 Superconductivity +cond-mat/9809318 Mesoscale and Nanoscale Physics +cond-mat/9809319 Superconductivity +cond-mat/9809320 Mesoscale and Nanoscale Physics +cond-mat/9809321 Strongly Correlated Electrons +cond-mat/9809323 Disordered Systems and Neural Networks +cond-mat/9809324 Statistical Mechanics +cond-mat/9809325 +cond-mat/9809326 Statistical Mechanics +cond-mat/9809329 +cond-mat/9809330 +cond-mat/9809332 Strongly Correlated Electrons +cond-mat/9809333 Superconductivity +cond-mat/9809337 Superconductivity +cond-mat/9809338 Statistical Mechanics +cond-mat/9809340 Mesoscale and Nanoscale Physics +cond-mat/9809341 Superconductivity +cond-mat/9809342 Statistical Mechanics +cond-mat/9809343 Statistical Mechanics +cond-mat/9809345 Mesoscale and Nanoscale Physics +cond-mat/9809346 +cond-mat/9809347 Statistical Mechanics +cond-mat/9809348 Soft Condensed Matter +cond-mat/9809349 +cond-mat/9809350 Soft Condensed Matter +cond-mat/9809351 Statistical Mechanics +cond-mat/9809353 Disordered Systems and Neural Networks +cond-mat/9809354 Statistical Mechanics +cond-mat/9809355 Soft Condensed Matter +cond-mat/9809358 Materials Science +cond-mat/9809359 +cond-mat/9809360 Statistical Mechanics +cond-mat/9809361 Mesoscale and Nanoscale Physics +cond-mat/9809362 Strongly Correlated Electrons +cond-mat/9809363 Strongly Correlated Electrons +cond-mat/9809364 +cond-mat/9809366 Statistical Mechanics +cond-mat/9809367 Mesoscale and Nanoscale Physics +cond-mat/9809368 Statistical Mechanics +cond-mat/9809371 +cond-mat/9809376 Soft Condensed Matter +cond-mat/9809377 Soft Condensed Matter +cond-mat/9809378 Materials Science +cond-mat/9809379 Materials Science +cond-mat/9809381 Strongly Correlated Electrons +cond-mat/9809382 Statistical Mechanics +cond-mat/9809384 Mesoscale and Nanoscale Physics +cond-mat/9809386 Statistical Mechanics +cond-mat/9809387 +cond-mat/9809388 Materials Science +cond-mat/9809389 Statistical Mechanics +cond-mat/9809390 +cond-mat/9809395 Superconductivity +cond-mat/9809396 +cond-mat/9809398 Superconductivity +cond-mat/9809399 Mesoscale and Nanoscale Physics +cond-mat/9809400 Superconductivity +cond-mat/9809403 Superconductivity +cond-mat/9809404 Materials Science +cond-mat/9809405 +cond-mat/9809406 Mesoscale and Nanoscale Physics +cond-mat/9809407 Soft Condensed Matter +cond-mat/9809409 Materials Science +cond-mat/9809410 Soft Condensed Matter +cond-mat/9809412 Statistical Mechanics +cond-mat/9809413 Strongly Correlated Electrons +cond-mat/9809414 Materials Science +cond-mat/9809416 Strongly Correlated Electrons +cond-mat/9809417 Statistical Mechanics +cond-mat/9809419 Disordered Systems and Neural Networks +cond-mat/9809420 Statistical Mechanics +cond-mat/9809422 Statistical Mechanics +cond-mat/9809424 Statistical Mechanics +cond-mat/9809425 Statistical Mechanics +cond-mat/9809426 Statistical Mechanics +cond-mat/9809428 Statistical Mechanics +cond-mat/9809429 Soft Condensed Matter +cond-mat/9809430 Statistical Mechanics +cond-mat/9809431 Disordered Systems and Neural Networks +cond-mat/9809434 Statistical Mechanics +cond-mat/9809435 Soft Condensed Matter +cond-mat/9809436 Strongly Correlated Electrons +cond-mat/9810001 Mesoscale and Nanoscale Physics +cond-mat/9810002 Statistical Mechanics +cond-mat/9810003 Mesoscale and Nanoscale Physics +cond-mat/9810005 +cond-mat/9810006 Strongly Correlated Electrons +cond-mat/9810007 Materials Science +cond-mat/9810008 Disordered Systems and Neural Networks +cond-mat/9810010 Strongly Correlated Electrons +cond-mat/9810011 Statistical Mechanics +cond-mat/9810013 Soft Condensed Matter +cond-mat/9810014 Strongly Correlated Electrons +cond-mat/9810015 Mesoscale and Nanoscale Physics +cond-mat/9810016 Mesoscale and Nanoscale Physics +cond-mat/9810017 Statistical Mechanics +cond-mat/9810018 Soft Condensed Matter +cond-mat/9810019 +cond-mat/9810020 Soft Condensed Matter +cond-mat/9810021 Statistical Mechanics +cond-mat/9810026 Statistical Mechanics +cond-mat/9810028 Statistical Mechanics +cond-mat/9810029 +cond-mat/9810031 Strongly Correlated Electrons +cond-mat/9810032 Strongly Correlated Electrons +cond-mat/9810033 Strongly Correlated Electrons +cond-mat/9810035 Strongly Correlated Electrons +cond-mat/9810037 Disordered Systems and Neural Networks +cond-mat/9810038 +cond-mat/9810044 Soft Condensed Matter +cond-mat/9810045 Strongly Correlated Electrons +cond-mat/9810046 Statistical Mechanics +cond-mat/9810050 Mesoscale and Nanoscale Physics +cond-mat/9810053 Disordered Systems and Neural Networks +cond-mat/9810054 Strongly Correlated Electrons +cond-mat/9810055 Statistical Mechanics +cond-mat/9810057 Statistical Mechanics +cond-mat/9810058 +cond-mat/9810059 Statistical Mechanics +cond-mat/9810060 Soft Condensed Matter +cond-mat/9810061 Mesoscale and Nanoscale Physics +cond-mat/9810062 Strongly Correlated Electrons +cond-mat/9810063 Superconductivity +cond-mat/9810068 Materials Science +cond-mat/9810073 Statistical Mechanics +cond-mat/9810074 Statistical Mechanics +cond-mat/9810075 Strongly Correlated Electrons +cond-mat/9810077 Statistical Mechanics +cond-mat/9810078 Mesoscale and Nanoscale Physics +cond-mat/9810079 Mesoscale and Nanoscale Physics +cond-mat/9810080 Disordered Systems and Neural Networks +cond-mat/9810081 Mesoscale and Nanoscale Physics +cond-mat/9810082 Mesoscale and Nanoscale Physics +cond-mat/9810083 Statistical Mechanics +cond-mat/9810085 Statistical Mechanics +cond-mat/9810088 Disordered Systems and Neural Networks +cond-mat/9810092 Statistical Mechanics +cond-mat/9810093 Strongly Correlated Electrons +cond-mat/9810095 Strongly Correlated Electrons +cond-mat/9810096 Mesoscale and Nanoscale Physics +cond-mat/9810097 +cond-mat/9810098 Statistical Mechanics +cond-mat/9810100 Mesoscale and Nanoscale Physics +cond-mat/9810103 Mesoscale and Nanoscale Physics +cond-mat/9810104 Soft Condensed Matter +cond-mat/9810105 Statistical Mechanics +cond-mat/9810106 Disordered Systems and Neural Networks +cond-mat/9810108 Statistical Mechanics +cond-mat/9810109 Mesoscale and Nanoscale Physics +cond-mat/9810110 +cond-mat/9810112 Statistical Mechanics +cond-mat/9810113 Statistical Mechanics +cond-mat/9810114 Materials Science +cond-mat/9810115 +cond-mat/9810118 Strongly Correlated Electrons +cond-mat/9810121 Strongly Correlated Electrons +cond-mat/9810122 Strongly Correlated Electrons +cond-mat/9810124 Disordered Systems and Neural Networks +cond-mat/9810125 +cond-mat/9810126 +cond-mat/9810128 Strongly Correlated Electrons +cond-mat/9810130 Strongly Correlated Electrons +cond-mat/9810132 Soft Condensed Matter +cond-mat/9810133 +cond-mat/9810134 Mesoscale and Nanoscale Physics +cond-mat/9810136 Statistical Mechanics +cond-mat/9810137 Strongly Correlated Electrons +cond-mat/9810138 Statistical Mechanics +cond-mat/9810139 Soft Condensed Matter +cond-mat/9810140 Disordered Systems and Neural Networks +cond-mat/9810141 Superconductivity +cond-mat/9810142 +cond-mat/9810143 +cond-mat/9810144 Disordered Systems and Neural Networks +cond-mat/9810145 +cond-mat/9810146 Superconductivity +cond-mat/9810147 Statistical Mechanics +cond-mat/9810148 Mesoscale and Nanoscale Physics +cond-mat/9810150 Statistical Mechanics +cond-mat/9810151 Mesoscale and Nanoscale Physics +cond-mat/9810152 Superconductivity +cond-mat/9810153 Statistical Mechanics +cond-mat/9810155 Strongly Correlated Electrons +cond-mat/9810156 Mesoscale and Nanoscale Physics +cond-mat/9810160 Disordered Systems and Neural Networks +cond-mat/9810162 Statistical Mechanics +cond-mat/9810164 +cond-mat/9810166 Soft Condensed Matter +cond-mat/9810168 Mesoscale and Nanoscale Physics +cond-mat/9810170 Superconductivity +cond-mat/9810171 Soft Condensed Matter +cond-mat/9810174 Statistical Mechanics +cond-mat/9810176 Statistical Mechanics +cond-mat/9810180 Statistical Mechanics +cond-mat/9810182 Statistical Mechanics +cond-mat/9810183 Superconductivity +cond-mat/9810185 Strongly Correlated Electrons +cond-mat/9810187 Superconductivity +cond-mat/9810189 Materials Science +cond-mat/9810191 Disordered Systems and Neural Networks +cond-mat/9810194 Mesoscale and Nanoscale Physics +cond-mat/9810195 Mesoscale and Nanoscale Physics +cond-mat/9810197 Statistical Mechanics +cond-mat/9810199 Superconductivity +cond-mat/9810201 Statistical Mechanics +cond-mat/9810202 Superconductivity +cond-mat/9810205 Superconductivity +cond-mat/9810206 Superconductivity +cond-mat/9810207 Strongly Correlated Electrons +cond-mat/9810208 Strongly Correlated Electrons +cond-mat/9810211 Mesoscale and Nanoscale Physics +cond-mat/9810212 Superconductivity +cond-mat/9810215 Disordered Systems and Neural Networks +cond-mat/9810216 +cond-mat/9810217 Mesoscale and Nanoscale Physics +cond-mat/9810218 +cond-mat/9810219 Strongly Correlated Electrons +cond-mat/9810222 Strongly Correlated Electrons +cond-mat/9810223 Disordered Systems and Neural Networks +cond-mat/9810224 Mesoscale and Nanoscale Physics +cond-mat/9810225 Mesoscale and Nanoscale Physics +cond-mat/9810228 Superconductivity +cond-mat/9810229 Materials Science +cond-mat/9810230 +cond-mat/9810234 Soft Condensed Matter +cond-mat/9810235 Mesoscale and Nanoscale Physics +cond-mat/9810236 +cond-mat/9810237 Mesoscale and Nanoscale Physics +cond-mat/9810238 Superconductivity +cond-mat/9810240 Statistical Mechanics +cond-mat/9810242 Superconductivity +cond-mat/9810243 +cond-mat/9810244 Statistical Mechanics +cond-mat/9810245 Mesoscale and Nanoscale Physics +cond-mat/9810247 +cond-mat/9810249 +cond-mat/9810251 Statistical Mechanics +cond-mat/9810252 Statistical Mechanics +cond-mat/9810254 Disordered Systems and Neural Networks +cond-mat/9810255 +cond-mat/9810256 Materials Science +cond-mat/9810258 Statistical Mechanics +cond-mat/9810259 Statistical Mechanics +cond-mat/9810260 Strongly Correlated Electrons +cond-mat/9810261 +cond-mat/9810262 Materials Science +cond-mat/9810265 Disordered Systems and Neural Networks +cond-mat/9810268 Strongly Correlated Electrons +cond-mat/9810270 Statistical Mechanics +cond-mat/9810271 Statistical Mechanics +cond-mat/9810274 Statistical Mechanics +cond-mat/9810276 Mesoscale and Nanoscale Physics +cond-mat/9810277 Statistical Mechanics +cond-mat/9810279 Soft Condensed Matter +cond-mat/9810280 Superconductivity +cond-mat/9810281 Strongly Correlated Electrons +cond-mat/9810282 Disordered Systems and Neural Networks +cond-mat/9810285 Statistical Mechanics +cond-mat/9810286 Disordered Systems and Neural Networks +cond-mat/9810287 Statistical Mechanics +cond-mat/9810288 Strongly Correlated Electrons +cond-mat/9810289 Mesoscale and Nanoscale Physics +cond-mat/9810290 Soft Condensed Matter +cond-mat/9810292 Statistical Mechanics +cond-mat/9810293 Soft Condensed Matter +cond-mat/9810294 Statistical Mechanics +cond-mat/9810295 Mesoscale and Nanoscale Physics +cond-mat/9810296 Materials Science +cond-mat/9810298 Soft Condensed Matter +cond-mat/9810299 Materials Science +cond-mat/9810300 Statistical Mechanics +cond-mat/9810301 Strongly Correlated Electrons +cond-mat/9810303 Superconductivity +cond-mat/9810304 Superconductivity +cond-mat/9810307 Mesoscale and Nanoscale Physics +cond-mat/9810309 Statistical Mechanics +cond-mat/9810310 Strongly Correlated Electrons +cond-mat/9810312 +cond-mat/9810313 Mesoscale and Nanoscale Physics +cond-mat/9810314 Disordered Systems and Neural Networks +cond-mat/9810315 Statistical Mechanics +cond-mat/9810316 Soft Condensed Matter +cond-mat/9810318 Strongly Correlated Electrons +cond-mat/9810319 Mesoscale and Nanoscale Physics +cond-mat/9810323 Superconductivity +cond-mat/9810325 Superconductivity +cond-mat/9810327 Strongly Correlated Electrons +cond-mat/9810328 Mesoscale and Nanoscale Physics +cond-mat/9810330 +cond-mat/9810331 Superconductivity +cond-mat/9810335 +cond-mat/9810337 Statistical Mechanics +cond-mat/9810339 +cond-mat/9810342 +cond-mat/9810343 Superconductivity +cond-mat/9810344 Superconductivity +cond-mat/9810345 Disordered Systems and Neural Networks +cond-mat/9810347 +cond-mat/9810348 +cond-mat/9810349 Mesoscale and Nanoscale Physics +cond-mat/9810351 Strongly Correlated Electrons +cond-mat/9810352 Superconductivity +cond-mat/9810355 Strongly Correlated Electrons +cond-mat/9810356 Strongly Correlated Electrons +cond-mat/9810357 Strongly Correlated Electrons +cond-mat/9810358 +cond-mat/9810359 Statistical Mechanics +cond-mat/9810361 Strongly Correlated Electrons +cond-mat/9810362 Strongly Correlated Electrons +cond-mat/9810364 Disordered Systems and Neural Networks +cond-mat/9810365 +cond-mat/9810371 Strongly Correlated Electrons +cond-mat/9810372 Statistical Mechanics +cond-mat/9810373 Mesoscale and Nanoscale Physics +cond-mat/9810374 Strongly Correlated Electrons +cond-mat/9810375 +cond-mat/9810377 Mesoscale and Nanoscale Physics +cond-mat/9810379 Strongly Correlated Electrons +cond-mat/9810380 Disordered Systems and Neural Networks +cond-mat/9810382 Strongly Correlated Electrons +cond-mat/9810383 Materials Science +cond-mat/9810384 Mesoscale and Nanoscale Physics +cond-mat/9810385 +cond-mat/9810387 Strongly Correlated Electrons +cond-mat/9810389 Strongly Correlated Electrons +cond-mat/9810390 Disordered Systems and Neural Networks +cond-mat/9810391 Strongly Correlated Electrons +cond-mat/9810392 Soft Condensed Matter +cond-mat/9810394 Strongly Correlated Electrons +cond-mat/9810395 +cond-mat/9810396 +cond-mat/9810398 Mesoscale and Nanoscale Physics +cond-mat/9810400 Mesoscale and Nanoscale Physics +cond-mat/9810401 +cond-mat/9810402 Statistical Mechanics +cond-mat/9810404 Statistical Mechanics +cond-mat/9810406 Statistical Mechanics +cond-mat/9810407 Soft Condensed Matter +cond-mat/9810408 +cond-mat/9810409 +cond-mat/9810410 Strongly Correlated Electrons +cond-mat/9810411 Statistical Mechanics +cond-mat/9810413 Statistical Mechanics +cond-mat/9810414 Strongly Correlated Electrons +cond-mat/9811001 Superconductivity +cond-mat/9811002 Soft Condensed Matter +cond-mat/9811005 Mesoscale and Nanoscale Physics +cond-mat/9811006 Strongly Correlated Electrons +cond-mat/9811009 +cond-mat/9811010 +cond-mat/9811011 Strongly Correlated Electrons +cond-mat/9811012 +cond-mat/9811013 +cond-mat/9811014 Superconductivity +cond-mat/9811015 +cond-mat/9811016 Statistical Mechanics +cond-mat/9811017 Superconductivity +cond-mat/9811020 Soft Condensed Matter +cond-mat/9811022 Mesoscale and Nanoscale Physics +cond-mat/9811023 Soft Condensed Matter +cond-mat/9811024 Strongly Correlated Electrons +cond-mat/9811025 +cond-mat/9811026 Superconductivity +cond-mat/9811027 Superconductivity +cond-mat/9811028 Strongly Correlated Electrons +cond-mat/9811030 Strongly Correlated Electrons +cond-mat/9811031 Mesoscale and Nanoscale Physics +cond-mat/9811032 +cond-mat/9811033 Disordered Systems and Neural Networks +cond-mat/9811034 Materials Science +cond-mat/9811036 +cond-mat/9811038 Strongly Correlated Electrons +cond-mat/9811039 Materials Science +cond-mat/9811040 Strongly Correlated Electrons +cond-mat/9811041 Superconductivity +cond-mat/9811042 Statistical Mechanics +cond-mat/9811043 Strongly Correlated Electrons +cond-mat/9811044 Disordered Systems and Neural Networks +cond-mat/9811046 Materials Science +cond-mat/9811047 Mesoscale and Nanoscale Physics +cond-mat/9811048 Statistical Mechanics +cond-mat/9811049 Statistical Mechanics +cond-mat/9811050 +cond-mat/9811053 Statistical Mechanics +cond-mat/9811054 Soft Condensed Matter +cond-mat/9811055 Superconductivity +cond-mat/9811057 +cond-mat/9811060 Superconductivity +cond-mat/9811061 Statistical Mechanics +cond-mat/9811063 Mesoscale and Nanoscale Physics +cond-mat/9811064 Mesoscale and Nanoscale Physics +cond-mat/9811065 Mesoscale and Nanoscale Physics +cond-mat/9811067 Strongly Correlated Electrons +cond-mat/9811068 Strongly Correlated Electrons +cond-mat/9811069 Mesoscale and Nanoscale Physics +cond-mat/9811071 Statistical Mechanics +cond-mat/9811073 Soft Condensed Matter +cond-mat/9811078 +cond-mat/9811080 Disordered Systems and Neural Networks +cond-mat/9811081 Statistical Mechanics +cond-mat/9811082 Superconductivity +cond-mat/9811084 Strongly Correlated Electrons +cond-mat/9811086 Statistical Mechanics +cond-mat/9811087 Strongly Correlated Electrons +cond-mat/9811091 Soft Condensed Matter +cond-mat/9811092 Disordered Systems and Neural Networks +cond-mat/9811093 Mesoscale and Nanoscale Physics +cond-mat/9811096 +cond-mat/9811097 Mesoscale and Nanoscale Physics +cond-mat/9811098 Materials Science +cond-mat/9811104 Superconductivity +cond-mat/9811105 Soft Condensed Matter +cond-mat/9811107 Soft Condensed Matter +cond-mat/9811109 Disordered Systems and Neural Networks +cond-mat/9811111 Mesoscale and Nanoscale Physics +cond-mat/9811115 +cond-mat/9811117 Mesoscale and Nanoscale Physics +cond-mat/9811119 Disordered Systems and Neural Networks +cond-mat/9811120 +cond-mat/9811121 Statistical Mechanics +cond-mat/9811125 Mesoscale and Nanoscale Physics +cond-mat/9811127 Soft Condensed Matter +cond-mat/9811128 Materials Science +cond-mat/9811129 +cond-mat/9811130 Strongly Correlated Electrons +cond-mat/9811131 Mesoscale and Nanoscale Physics +cond-mat/9811134 +cond-mat/9811135 Strongly Correlated Electrons +cond-mat/9811136 Strongly Correlated Electrons +cond-mat/9811137 Strongly Correlated Electrons +cond-mat/9811138 Statistical Mechanics +cond-mat/9811139 Statistical Mechanics +cond-mat/9811140 +cond-mat/9811142 Mesoscale and Nanoscale Physics +cond-mat/9811143 Mesoscale and Nanoscale Physics +cond-mat/9811144 Strongly Correlated Electrons +cond-mat/9811145 Soft Condensed Matter +cond-mat/9811147 +cond-mat/9811149 Superconductivity +cond-mat/9811150 Soft Condensed Matter +cond-mat/9811151 Superconductivity +cond-mat/9811153 Statistical Mechanics +cond-mat/9811155 Mesoscale and Nanoscale Physics +cond-mat/9811156 Materials Science +cond-mat/9811157 Statistical Mechanics +cond-mat/9811161 +cond-mat/9811162 Statistical Mechanics +cond-mat/9811163 Statistical Mechanics +cond-mat/9811164 Strongly Correlated Electrons +cond-mat/9811166 Superconductivity +cond-mat/9811167 Statistical Mechanics +cond-mat/9811168 Statistical Mechanics +cond-mat/9811169 Materials Science +cond-mat/9811171 Soft Condensed Matter +cond-mat/9811172 +cond-mat/9811173 Mesoscale and Nanoscale Physics +cond-mat/9811175 +cond-mat/9811176 Superconductivity +cond-mat/9811177 Disordered Systems and Neural Networks +cond-mat/9811178 Materials Science +cond-mat/9811179 Mesoscale and Nanoscale Physics +cond-mat/9811180 Mesoscale and Nanoscale Physics +cond-mat/9811181 Mesoscale and Nanoscale Physics +cond-mat/9811182 Materials Science +cond-mat/9811183 Superconductivity +cond-mat/9811187 Superconductivity +cond-mat/9811189 +cond-mat/9811190 Superconductivity +cond-mat/9811191 Strongly Correlated Electrons +cond-mat/9811192 Strongly Correlated Electrons +cond-mat/9811193 Soft Condensed Matter +cond-mat/9811195 Superconductivity +cond-mat/9811196 Statistical Mechanics +cond-mat/9811198 Soft Condensed Matter +cond-mat/9811200 Superconductivity +cond-mat/9811201 Statistical Mechanics +cond-mat/9811202 Soft Condensed Matter +cond-mat/9811204 Statistical Mechanics +cond-mat/9811206 +cond-mat/9811207 Superconductivity +cond-mat/9811208 +cond-mat/9811210 Statistical Mechanics +cond-mat/9811212 Superconductivity +cond-mat/9811214 +cond-mat/9811215 Superconductivity +cond-mat/9811216 Superconductivity +cond-mat/9811217 Mesoscale and Nanoscale Physics +cond-mat/9811218 Mesoscale and Nanoscale Physics +cond-mat/9811222 Superconductivity +cond-mat/9811224 Mesoscale and Nanoscale Physics +cond-mat/9811226 Superconductivity +cond-mat/9811228 Materials Science +cond-mat/9811229 Soft Condensed Matter +cond-mat/9811234 Statistical Mechanics +cond-mat/9811235 Disordered Systems and Neural Networks +cond-mat/9811236 Strongly Correlated Electrons +cond-mat/9811237 Statistical Mechanics +cond-mat/9811239 Mesoscale and Nanoscale Physics +cond-mat/9811241 +cond-mat/9811242 +cond-mat/9811243 Strongly Correlated Electrons +cond-mat/9811244 Disordered Systems and Neural Networks +cond-mat/9811245 Statistical Mechanics +cond-mat/9811246 Statistical Mechanics +cond-mat/9811249 Statistical Mechanics +cond-mat/9811250 Strongly Correlated Electrons +cond-mat/9811253 Strongly Correlated Electrons +cond-mat/9811254 Statistical Mechanics +cond-mat/9811256 Mesoscale and Nanoscale Physics +cond-mat/9811257 Materials Science +cond-mat/9811258 Disordered Systems and Neural Networks +cond-mat/9811260 Disordered Systems and Neural Networks +cond-mat/9811262 +cond-mat/9811263 +cond-mat/9811265 Materials Science +cond-mat/9811268 Superconductivity +cond-mat/9811270 Superconductivity +cond-mat/9811271 Superconductivity +cond-mat/9811273 Superconductivity +cond-mat/9811276 Statistical Mechanics +cond-mat/9811277 Statistical Mechanics +cond-mat/9811278 Superconductivity +cond-mat/9811279 Mesoscale and Nanoscale Physics +cond-mat/9811280 Strongly Correlated Electrons +cond-mat/9811281 Materials Science +cond-mat/9811283 Soft Condensed Matter +cond-mat/9811287 Statistical Mechanics +cond-mat/9811289 Statistical Mechanics +cond-mat/9811290 Mesoscale and Nanoscale Physics +cond-mat/9811293 +cond-mat/9811294 +cond-mat/9811295 +cond-mat/9811296 Disordered Systems and Neural Networks +cond-mat/9811297 Disordered Systems and Neural Networks +cond-mat/9811298 Strongly Correlated Electrons +cond-mat/9811300 +cond-mat/9811302 Superconductivity +cond-mat/9811304 Disordered Systems and Neural Networks +cond-mat/9811305 Statistical Mechanics +cond-mat/9811307 Strongly Correlated Electrons +cond-mat/9811308 +cond-mat/9811309 Strongly Correlated Electrons +cond-mat/9811311 Strongly Correlated Electrons +cond-mat/9811312 +cond-mat/9811313 Mesoscale and Nanoscale Physics +cond-mat/9811317 Mesoscale and Nanoscale Physics +cond-mat/9811321 Materials Science +cond-mat/9811322 Disordered Systems and Neural Networks +cond-mat/9811324 Materials Science +cond-mat/9811325 Mesoscale and Nanoscale Physics +cond-mat/9811326 Strongly Correlated Electrons +cond-mat/9811327 Strongly Correlated Electrons +cond-mat/9811329 Strongly Correlated Electrons +cond-mat/9811330 Statistical Mechanics +cond-mat/9811332 Statistical Mechanics +cond-mat/9811334 +cond-mat/9811335 Statistical Mechanics +cond-mat/9811336 Statistical Mechanics +cond-mat/9811337 Strongly Correlated Electrons +cond-mat/9811338 Superconductivity +cond-mat/9811344 Statistical Mechanics +cond-mat/9811346 Strongly Correlated Electrons +cond-mat/9811347 Superconductivity +cond-mat/9811351 Strongly Correlated Electrons +cond-mat/9811353 Statistical Mechanics +cond-mat/9811354 Mesoscale and Nanoscale Physics +cond-mat/9811358 Materials Science +cond-mat/9811360 Disordered Systems and Neural Networks +cond-mat/9811361 Statistical Mechanics +cond-mat/9811362 +cond-mat/9811363 Materials Science +cond-mat/9811364 Strongly Correlated Electrons +cond-mat/9811365 Statistical Mechanics +cond-mat/9811367 Soft Condensed Matter +cond-mat/9811369 Disordered Systems and Neural Networks +cond-mat/9811371 +cond-mat/9811373 Disordered Systems and Neural Networks +cond-mat/9811374 Disordered Systems and Neural Networks +cond-mat/9811376 Statistical Mechanics +cond-mat/9811379 Strongly Correlated Electrons +cond-mat/9811381 +cond-mat/9811382 Strongly Correlated Electrons +cond-mat/9811385 +cond-mat/9811386 Statistical Mechanics +cond-mat/9811387 Strongly Correlated Electrons +cond-mat/9811388 Statistical Mechanics +cond-mat/9811389 Superconductivity +cond-mat/9811390 Disordered Systems and Neural Networks +cond-mat/9811391 Mesoscale and Nanoscale Physics +cond-mat/9811392 Statistical Mechanics +cond-mat/9811398 Disordered Systems and Neural Networks +cond-mat/9811400 Superconductivity +cond-mat/9811401 Mesoscale and Nanoscale Physics +cond-mat/9811402 Mesoscale and Nanoscale Physics +cond-mat/9811403 Disordered Systems and Neural Networks +cond-mat/9811404 Soft Condensed Matter +cond-mat/9811407 Mesoscale and Nanoscale Physics +cond-mat/9811408 Soft Condensed Matter +cond-mat/9811413 Soft Condensed Matter +cond-mat/9811415 Strongly Correlated Electrons +cond-mat/9811418 Strongly Correlated Electrons +cond-mat/9811419 Disordered Systems and Neural Networks +cond-mat/9811420 Superconductivity +cond-mat/9811421 Disordered Systems and Neural Networks +cond-mat/9811422 Statistical Mechanics +cond-mat/9811423 Disordered Systems and Neural Networks +cond-mat/9811426 Statistical Mechanics +cond-mat/9812001 Strongly Correlated Electrons +cond-mat/9812002 Superconductivity +cond-mat/9812004 Mesoscale and Nanoscale Physics +cond-mat/9812005 Statistical Mechanics +cond-mat/9812006 Strongly Correlated Electrons +cond-mat/9812007 +cond-mat/9812008 +cond-mat/9812009 Statistical Mechanics +cond-mat/9812013 Strongly Correlated Electrons +cond-mat/9812014 Superconductivity +cond-mat/9812015 Superconductivity +cond-mat/9812016 Soft Condensed Matter +cond-mat/9812017 Soft Condensed Matter +cond-mat/9812019 Superconductivity +cond-mat/9812021 Materials Science +cond-mat/9812022 Strongly Correlated Electrons +cond-mat/9812025 Mesoscale and Nanoscale Physics +cond-mat/9812026 Strongly Correlated Electrons +cond-mat/9812029 +cond-mat/9812030 Superconductivity +cond-mat/9812031 Superconductivity +cond-mat/9812032 +cond-mat/9812033 Superconductivity +cond-mat/9812034 Disordered Systems and Neural Networks +cond-mat/9812035 Mesoscale and Nanoscale Physics +cond-mat/9812036 Materials Science +cond-mat/9812037 Mesoscale and Nanoscale Physics +cond-mat/9812038 Materials Science +cond-mat/9812039 Superconductivity +cond-mat/9812041 Statistical Mechanics +cond-mat/9812042 Superconductivity +cond-mat/9812045 +cond-mat/9812047 Superconductivity +cond-mat/9812048 +cond-mat/9812049 Superconductivity +cond-mat/9812050 Statistical Mechanics +cond-mat/9812053 Mesoscale and Nanoscale Physics +cond-mat/9812057 Mesoscale and Nanoscale Physics +cond-mat/9812058 +cond-mat/9812059 Statistical Mechanics +cond-mat/9812061 Materials Science +cond-mat/9812064 Mesoscale and Nanoscale Physics +cond-mat/9812065 Disordered Systems and Neural Networks +cond-mat/9812067 +cond-mat/9812071 Mesoscale and Nanoscale Physics +cond-mat/9812074 Statistical Mechanics +cond-mat/9812079 Superconductivity +cond-mat/9812080 Statistical Mechanics +cond-mat/9812081 Superconductivity +cond-mat/9812082 Superconductivity +cond-mat/9812083 Mesoscale and Nanoscale Physics +cond-mat/9812085 Mesoscale and Nanoscale Physics +cond-mat/9812086 Strongly Correlated Electrons +cond-mat/9812087 Soft Condensed Matter +cond-mat/9812089 Soft Condensed Matter +cond-mat/9812090 +cond-mat/9812092 Superconductivity +cond-mat/9812095 Statistical Mechanics +cond-mat/9812096 Superconductivity +cond-mat/9812097 Soft Condensed Matter +cond-mat/9812099 Superconductivity +cond-mat/9812100 Statistical Mechanics +cond-mat/9812102 Materials Science +cond-mat/9812103 Strongly Correlated Electrons +cond-mat/9812104 Soft Condensed Matter +cond-mat/9812106 Disordered Systems and Neural Networks +cond-mat/9812107 Statistical Mechanics +cond-mat/9812108 Materials Science +cond-mat/9812109 +cond-mat/9812112 Statistical Mechanics +cond-mat/9812113 Strongly Correlated Electrons +cond-mat/9812114 Disordered Systems and Neural Networks +cond-mat/9812115 Soft Condensed Matter +cond-mat/9812116 Materials Science +cond-mat/9812121 Mesoscale and Nanoscale Physics +cond-mat/9812122 Disordered Systems and Neural Networks +cond-mat/9812123 Strongly Correlated Electrons +cond-mat/9812125 Materials Science +cond-mat/9812126 Superconductivity +cond-mat/9812127 +cond-mat/9812130 Superconductivity +cond-mat/9812132 Superconductivity +cond-mat/9812134 Superconductivity +cond-mat/9812135 Mesoscale and Nanoscale Physics +cond-mat/9812137 Statistical Mechanics +cond-mat/9812138 +cond-mat/9812139 Materials Science +cond-mat/9812140 Strongly Correlated Electrons +cond-mat/9812141 Materials Science +cond-mat/9812142 Mesoscale and Nanoscale Physics +cond-mat/9812144 +cond-mat/9812145 Materials Science +cond-mat/9812146 Disordered Systems and Neural Networks +cond-mat/9812148 Statistical Mechanics +cond-mat/9812149 Statistical Mechanics +cond-mat/9812150 Mesoscale and Nanoscale Physics +cond-mat/9812151 Strongly Correlated Electrons +cond-mat/9812153 Mesoscale and Nanoscale Physics +cond-mat/9812155 Mesoscale and Nanoscale Physics +cond-mat/9812157 Superconductivity +cond-mat/9812158 +cond-mat/9812160 Superconductivity +cond-mat/9812162 Strongly Correlated Electrons +cond-mat/9812164 Soft Condensed Matter +cond-mat/9812165 Mesoscale and Nanoscale Physics +cond-mat/9812166 Mesoscale and Nanoscale Physics +cond-mat/9812167 Materials Science +cond-mat/9812169 Statistical Mechanics +cond-mat/9812171 Strongly Correlated Electrons +cond-mat/9812172 Statistical Mechanics +cond-mat/9812174 Strongly Correlated Electrons +cond-mat/9812175 Superconductivity +cond-mat/9812176 Statistical Mechanics +cond-mat/9812177 Statistical Mechanics +cond-mat/9812179 Disordered Systems and Neural Networks +cond-mat/9812182 Strongly Correlated Electrons +cond-mat/9812183 Strongly Correlated Electrons +cond-mat/9812184 Statistical Mechanics +cond-mat/9812185 Strongly Correlated Electrons +cond-mat/9812187 Strongly Correlated Electrons +cond-mat/9812188 Mesoscale and Nanoscale Physics +cond-mat/9812189 +cond-mat/9812190 Mesoscale and Nanoscale Physics +cond-mat/9812191 Strongly Correlated Electrons +cond-mat/9812192 Superconductivity +cond-mat/9812193 Mesoscale and Nanoscale Physics +cond-mat/9812194 +cond-mat/9812196 Disordered Systems and Neural Networks +cond-mat/9812197 Disordered Systems and Neural Networks +cond-mat/9812198 Disordered Systems and Neural Networks +cond-mat/9812200 +cond-mat/9812201 Statistical Mechanics +cond-mat/9812206 +cond-mat/9812208 Mesoscale and Nanoscale Physics +cond-mat/9812209 Disordered Systems and Neural Networks +cond-mat/9812210 Mesoscale and Nanoscale Physics +cond-mat/9812211 Strongly Correlated Electrons +cond-mat/9812212 Statistical Mechanics +cond-mat/9812213 Superconductivity +cond-mat/9812214 Statistical Mechanics +cond-mat/9812215 Statistical Mechanics +cond-mat/9812216 Disordered Systems and Neural Networks +cond-mat/9812219 Strongly Correlated Electrons +cond-mat/9812222 Superconductivity +cond-mat/9812224 Mesoscale and Nanoscale Physics +cond-mat/9812225 Mesoscale and Nanoscale Physics +cond-mat/9812226 Strongly Correlated Electrons +cond-mat/9812227 Statistical Mechanics +cond-mat/9812228 Materials Science +cond-mat/9812229 +cond-mat/9812230 +cond-mat/9812233 Mesoscale and Nanoscale Physics +cond-mat/9812234 Superconductivity +cond-mat/9812236 Strongly Correlated Electrons +cond-mat/9812237 Statistical Mechanics +cond-mat/9812238 Soft Condensed Matter +cond-mat/9812242 Strongly Correlated Electrons +cond-mat/9812248 Strongly Correlated Electrons +cond-mat/9812249 +cond-mat/9812250 Strongly Correlated Electrons +cond-mat/9812252 Strongly Correlated Electrons +cond-mat/9812253 Strongly Correlated Electrons +cond-mat/9812255 Disordered Systems and Neural Networks +cond-mat/9812256 Superconductivity +cond-mat/9812257 Disordered Systems and Neural Networks +cond-mat/9812258 +cond-mat/9812261 Mesoscale and Nanoscale Physics +cond-mat/9812262 Strongly Correlated Electrons +cond-mat/9812264 Mesoscale and Nanoscale Physics +cond-mat/9812265 Superconductivity +cond-mat/9812266 Soft Condensed Matter +cond-mat/9812268 Superconductivity +cond-mat/9812271 +cond-mat/9812272 Superconductivity +cond-mat/9812273 Soft Condensed Matter +cond-mat/9812277 Superconductivity +cond-mat/9812280 Disordered Systems and Neural Networks +cond-mat/9812281 +cond-mat/9812283 Superconductivity +cond-mat/9812285 Superconductivity +cond-mat/9812286 Statistical Mechanics +cond-mat/9812290 Superconductivity +cond-mat/9812292 Mesoscale and Nanoscale Physics +cond-mat/9812294 Strongly Correlated Electrons +cond-mat/9812296 Strongly Correlated Electrons +cond-mat/9812297 Mesoscale and Nanoscale Physics +cond-mat/9812300 Statistical Mechanics +cond-mat/9812301 Superconductivity +cond-mat/9812302 Mesoscale and Nanoscale Physics +cond-mat/9812304 Superconductivity +cond-mat/9812306 Disordered Systems and Neural Networks +cond-mat/9812308 Strongly Correlated Electrons +cond-mat/9812309 Mesoscale and Nanoscale Physics +cond-mat/9812311 Statistical Mechanics +cond-mat/9812312 Strongly Correlated Electrons +cond-mat/9812313 Disordered Systems and Neural Networks +cond-mat/9812316 Soft Condensed Matter +cond-mat/9812319 Mesoscale and Nanoscale Physics +cond-mat/9812320 +cond-mat/9812321 Statistical Mechanics +cond-mat/9812323 +cond-mat/9812324 Disordered Systems and Neural Networks +cond-mat/9812325 Strongly Correlated Electrons +cond-mat/9812326 Strongly Correlated Electrons +cond-mat/9812327 Materials Science +cond-mat/9812329 Strongly Correlated Electrons +cond-mat/9812330 Strongly Correlated Electrons +cond-mat/9812334 Superconductivity +cond-mat/9812335 Superconductivity +cond-mat/9812336 Statistical Mechanics +cond-mat/9812338 +cond-mat/9812340 +cond-mat/9812341 Statistical Mechanics +cond-mat/9812342 Superconductivity +cond-mat/9812343 Superconductivity +cond-mat/9812344 Statistical Mechanics +cond-mat/9812345 Strongly Correlated Electrons +cond-mat/9812346 Disordered Systems and Neural Networks +cond-mat/9812349 +cond-mat/9812351 Mesoscale and Nanoscale Physics +cond-mat/9812353 Strongly Correlated Electrons +cond-mat/9812354 Superconductivity +cond-mat/9812356 +cond-mat/9812357 Mesoscale and Nanoscale Physics +cond-mat/9812358 Strongly Correlated Electrons +cond-mat/9812360 Mesoscale and Nanoscale Physics +cond-mat/9812362 +cond-mat/9812366 Strongly Correlated Electrons +cond-mat/9812367 Mesoscale and Nanoscale Physics +cond-mat/9812369 Materials Science +cond-mat/9812370 Strongly Correlated Electrons +cond-mat/9812372 +cond-mat/9812373 Disordered Systems and Neural Networks +cond-mat/9812375 Superconductivity +cond-mat/9812376 Materials Science +cond-mat/9812377 Superconductivity +cond-mat/9812378 Disordered Systems and Neural Networks +cond-mat/9812379 Strongly Correlated Electrons +cond-mat/9812380 Strongly Correlated Electrons +cond-mat/9812381 +cond-mat/9812382 Materials Science +cond-mat/9812383 Disordered Systems and Neural Networks +cond-mat/9812384 Materials Science +cond-mat/9812385 Mesoscale and Nanoscale Physics +cond-mat/9812386 Superconductivity +cond-mat/9812387 Materials Science +cond-mat/9812388 Statistical Mechanics +cond-mat/9812389 Strongly Correlated Electrons +cond-mat/9812390 Soft Condensed Matter +cond-mat/9812393 Strongly Correlated Electrons +cond-mat/9812395 Disordered Systems and Neural Networks +cond-mat/9812397 Strongly Correlated Electrons +cond-mat/9812398 Strongly Correlated Electrons +cond-mat/9812400 +cond-mat/9812401 Disordered Systems and Neural Networks +cond-mat/9812406 Statistical Mechanics +cond-mat/9812408 Mesoscale and Nanoscale Physics +cond-mat/9812409 +cond-mat/9812410 Mesoscale and Nanoscale Physics +cond-mat/9812412 Superconductivity +cond-mat/9812413 Statistical Mechanics +cond-mat/9812414 Disordered Systems and Neural Networks +cond-mat/9812416 Statistical Mechanics +cond-mat/9812418 Strongly Correlated Electrons +cond-mat/9812420 Statistical Mechanics +cond-mat/9812421 Statistical Mechanics +cond-mat/9812422 Superconductivity +cond-mat/9812423 +cond-mat/9812427 Strongly Correlated Electrons +cond-mat/9812428 Mesoscale and Nanoscale Physics +cond-mat/9812429 Strongly Correlated Electrons +cond-mat/9812430 Disordered Systems and Neural Networks +cond-mat/9812432 Statistical Mechanics +cond-mat/9812435 Superconductivity +cond-mat/9812436 +cond-mat/9812437 Mesoscale and Nanoscale Physics +cond-mat/9812439 Statistical Mechanics +cond-mat/9812440 Materials Science +cond-mat/9812441 Strongly Correlated Electrons +cond-mat/9901003 Strongly Correlated Electrons +cond-mat/9901004 Strongly Correlated Electrons +cond-mat/9901005 Strongly Correlated Electrons +cond-mat/9901006 Superconductivity +cond-mat/9901007 Statistical Mechanics +cond-mat/9901008 Statistical Mechanics +cond-mat/9901009 Materials Science +cond-mat/9901014 Soft Condensed Matter +cond-mat/9901017 Soft Condensed Matter +cond-mat/9901018 Statistical Mechanics +cond-mat/9901021 Strongly Correlated Electrons +cond-mat/9901023 +cond-mat/9901024 Statistical Mechanics +cond-mat/9901025 +cond-mat/9901029 +cond-mat/9901031 +cond-mat/9901032 +cond-mat/9901036 Strongly Correlated Electrons +cond-mat/9901037 +cond-mat/9901039 Superconductivity +cond-mat/9901043 Disordered Systems and Neural Networks +cond-mat/9901044 Soft Condensed Matter +cond-mat/9901048 Strongly Correlated Electrons +cond-mat/9901049 +cond-mat/9901050 Strongly Correlated Electrons +cond-mat/9901051 Mesoscale and Nanoscale Physics +cond-mat/9901053 Mesoscale and Nanoscale Physics +cond-mat/9901056 Statistical Mechanics +cond-mat/9901058 Strongly Correlated Electrons +cond-mat/9901059 Strongly Correlated Electrons +cond-mat/9901060 Statistical Mechanics +cond-mat/9901061 +cond-mat/9901066 Statistical Mechanics +cond-mat/9901067 Statistical Mechanics +cond-mat/9901068 +cond-mat/9901069 +cond-mat/9901070 Mesoscale and Nanoscale Physics +cond-mat/9901074 Strongly Correlated Electrons +cond-mat/9901075 Soft Condensed Matter +cond-mat/9901076 Strongly Correlated Electrons +cond-mat/9901077 Statistical Mechanics +cond-mat/9901079 Soft Condensed Matter +cond-mat/9901080 +cond-mat/9901081 Strongly Correlated Electrons +cond-mat/9901082 Mesoscale and Nanoscale Physics +cond-mat/9901087 Statistical Mechanics +cond-mat/9901089 Statistical Mechanics +cond-mat/9901091 +cond-mat/9901093 Statistical Mechanics +cond-mat/9901095 Soft Condensed Matter +cond-mat/9901096 +cond-mat/9901099 Statistical Mechanics +cond-mat/9901100 +cond-mat/9901101 Statistical Mechanics +cond-mat/9901102 Statistical Mechanics +cond-mat/9901104 Soft Condensed Matter +cond-mat/9901106 +cond-mat/9901107 +cond-mat/9901108 Statistical Mechanics +cond-mat/9901109 +cond-mat/9901110 Disordered Systems and Neural Networks +cond-mat/9901112 Superconductivity +cond-mat/9901114 Strongly Correlated Electrons +cond-mat/9901115 +cond-mat/9901119 Statistical Mechanics +cond-mat/9901120 Statistical Mechanics +cond-mat/9901121 +cond-mat/9901122 Superconductivity +cond-mat/9901126 +cond-mat/9901128 Mesoscale and Nanoscale Physics +cond-mat/9901129 Mesoscale and Nanoscale Physics +cond-mat/9901131 +cond-mat/9901133 Strongly Correlated Electrons +cond-mat/9901135 Mesoscale and Nanoscale Physics +cond-mat/9901137 Mesoscale and Nanoscale Physics +cond-mat/9901138 Soft Condensed Matter +cond-mat/9901140 Superconductivity +cond-mat/9901142 Statistical Mechanics +cond-mat/9901144 Mesoscale and Nanoscale Physics +cond-mat/9901145 Materials Science +cond-mat/9901146 Disordered Systems and Neural Networks +cond-mat/9901147 Statistical Mechanics +cond-mat/9901148 Strongly Correlated Electrons +cond-mat/9901149 Mesoscale and Nanoscale Physics +cond-mat/9901151 Statistical Mechanics +cond-mat/9901152 Soft Condensed Matter +cond-mat/9901154 Strongly Correlated Electrons +cond-mat/9901155 Statistical Mechanics +cond-mat/9901157 Mesoscale and Nanoscale Physics +cond-mat/9901158 Statistical Mechanics +cond-mat/9901159 Superconductivity +cond-mat/9901160 +cond-mat/9901161 Mesoscale and Nanoscale Physics +cond-mat/9901162 Statistical Mechanics +cond-mat/9901163 +cond-mat/9901164 Strongly Correlated Electrons +cond-mat/9901165 Statistical Mechanics +cond-mat/9901166 Materials Science +cond-mat/9901167 Strongly Correlated Electrons +cond-mat/9901168 Strongly Correlated Electrons +cond-mat/9901169 +cond-mat/9901170 +cond-mat/9901171 Statistical Mechanics +cond-mat/9901173 Strongly Correlated Electrons +cond-mat/9901174 Statistical Mechanics +cond-mat/9901175 +cond-mat/9901176 Statistical Mechanics +cond-mat/9901179 Disordered Systems and Neural Networks +cond-mat/9901182 Soft Condensed Matter +cond-mat/9901184 Strongly Correlated Electrons +cond-mat/9901185 Disordered Systems and Neural Networks +cond-mat/9901187 Disordered Systems and Neural Networks +cond-mat/9901189 Strongly Correlated Electrons +cond-mat/9901190 +cond-mat/9901191 Strongly Correlated Electrons +cond-mat/9901192 Strongly Correlated Electrons +cond-mat/9901194 Superconductivity +cond-mat/9901195 Statistical Mechanics +cond-mat/9901196 Statistical Mechanics +cond-mat/9901197 +cond-mat/9901198 +cond-mat/9901200 Statistical Mechanics +cond-mat/9901201 Strongly Correlated Electrons +cond-mat/9901202 +cond-mat/9901203 Statistical Mechanics +cond-mat/9901205 Strongly Correlated Electrons +cond-mat/9901206 Mesoscale and Nanoscale Physics +cond-mat/9901207 Strongly Correlated Electrons +cond-mat/9901209 Strongly Correlated Electrons +cond-mat/9901210 Strongly Correlated Electrons +cond-mat/9901211 Strongly Correlated Electrons +cond-mat/9901212 Disordered Systems and Neural Networks +cond-mat/9901214 Strongly Correlated Electrons +cond-mat/9901215 Soft Condensed Matter +cond-mat/9901217 Statistical Mechanics +cond-mat/9901220 +cond-mat/9901221 Materials Science +cond-mat/9901229 Materials Science +cond-mat/9901230 Superconductivity +cond-mat/9901231 Superconductivity +cond-mat/9901233 Superconductivity +cond-mat/9901236 Mesoscale and Nanoscale Physics +cond-mat/9901240 Statistical Mechanics +cond-mat/9901242 +cond-mat/9901243 Statistical Mechanics +cond-mat/9901245 Mesoscale and Nanoscale Physics +cond-mat/9901246 Materials Science +cond-mat/9901247 Strongly Correlated Electrons +cond-mat/9901248 Statistical Mechanics +cond-mat/9901249 Superconductivity +cond-mat/9901252 Superconductivity +cond-mat/9901253 Materials Science +cond-mat/9901254 Mesoscale and Nanoscale Physics +cond-mat/9901255 Materials Science +cond-mat/9901258 Statistical Mechanics +cond-mat/9901259 Superconductivity +cond-mat/9901261 Soft Condensed Matter +cond-mat/9901263 Strongly Correlated Electrons +cond-mat/9901264 Disordered Systems and Neural Networks +cond-mat/9901265 Statistical Mechanics +cond-mat/9901266 Mesoscale and Nanoscale Physics +cond-mat/9901267 Statistical Mechanics +cond-mat/9901268 Statistical Mechanics +cond-mat/9901272 Statistical Mechanics +cond-mat/9901273 +cond-mat/9901274 Mesoscale and Nanoscale Physics +cond-mat/9901275 Statistical Mechanics +cond-mat/9901276 Disordered Systems and Neural Networks +cond-mat/9901278 Mesoscale and Nanoscale Physics +cond-mat/9901280 +cond-mat/9901281 +cond-mat/9901283 Statistical Mechanics +cond-mat/9901284 +cond-mat/9901285 Mesoscale and Nanoscale Physics +cond-mat/9901286 Strongly Correlated Electrons +cond-mat/9901287 Mesoscale and Nanoscale Physics +cond-mat/9901288 Soft Condensed Matter +cond-mat/9901289 Strongly Correlated Electrons +cond-mat/9901290 Mesoscale and Nanoscale Physics +cond-mat/9901291 Superconductivity +cond-mat/9901293 Soft Condensed Matter +cond-mat/9901294 Superconductivity +cond-mat/9901295 Superconductivity +cond-mat/9901296 Mesoscale and Nanoscale Physics +cond-mat/9901297 +cond-mat/9901299 Soft Condensed Matter +cond-mat/9901300 +cond-mat/9901301 Disordered Systems and Neural Networks +cond-mat/9901302 Superconductivity +cond-mat/9901303 Materials Science +cond-mat/9901304 Statistical Mechanics +cond-mat/9901305 Superconductivity +cond-mat/9901306 +cond-mat/9901307 +cond-mat/9901311 Disordered Systems and Neural Networks +cond-mat/9901313 Strongly Correlated Electrons +cond-mat/9901314 Materials Science +cond-mat/9901315 Disordered Systems and Neural Networks +cond-mat/9901318 Superconductivity +cond-mat/9901319 Materials Science +cond-mat/9901320 Materials Science +cond-mat/9901322 Superconductivity +cond-mat/9901323 Mesoscale and Nanoscale Physics +cond-mat/9901324 Superconductivity +cond-mat/9901325 Soft Condensed Matter +cond-mat/9901326 Strongly Correlated Electrons +cond-mat/9901327 Materials Science +cond-mat/9901328 Mesoscale and Nanoscale Physics +cond-mat/9901329 Materials Science +cond-mat/9901330 Statistical Mechanics +cond-mat/9901331 Strongly Correlated Electrons +cond-mat/9901332 Mesoscale and Nanoscale Physics +cond-mat/9901334 Superconductivity +cond-mat/9901335 Materials Science +cond-mat/9901336 Disordered Systems and Neural Networks +cond-mat/9901337 Soft Condensed Matter +cond-mat/9901338 Materials Science +cond-mat/9901339 Superconductivity +cond-mat/9901342 +cond-mat/9901343 Strongly Correlated Electrons +cond-mat/9901344 Superconductivity +cond-mat/9901350 +cond-mat/9901353 Statistical Mechanics +cond-mat/9901355 +cond-mat/9902001 Statistical Mechanics +cond-mat/9902002 Strongly Correlated Electrons +cond-mat/9902004 Statistical Mechanics +cond-mat/9902005 +cond-mat/9902007 Statistical Mechanics +cond-mat/9902009 Statistical Mechanics +cond-mat/9902010 Statistical Mechanics +cond-mat/9902012 Strongly Correlated Electrons +cond-mat/9902013 Superconductivity +cond-mat/9902016 Soft Condensed Matter +cond-mat/9902017 Materials Science +cond-mat/9902020 Strongly Correlated Electrons +cond-mat/9902021 Statistical Mechanics +cond-mat/9902022 Soft Condensed Matter +cond-mat/9902023 Disordered Systems and Neural Networks +cond-mat/9902024 Statistical Mechanics +cond-mat/9902025 Strongly Correlated Electrons +cond-mat/9902026 Superconductivity +cond-mat/9902028 Strongly Correlated Electrons +cond-mat/9902030 Superconductivity +cond-mat/9902031 Mesoscale and Nanoscale Physics +cond-mat/9902032 Statistical Mechanics +cond-mat/9902033 +cond-mat/9902034 Disordered Systems and Neural Networks +cond-mat/9902036 Disordered Systems and Neural Networks +cond-mat/9902037 Mesoscale and Nanoscale Physics +cond-mat/9902039 Mesoscale and Nanoscale Physics +cond-mat/9902040 Mesoscale and Nanoscale Physics +cond-mat/9902042 Superconductivity +cond-mat/9902043 Statistical Mechanics +cond-mat/9902048 Superconductivity +cond-mat/9902049 Soft Condensed Matter +cond-mat/9902050 Strongly Correlated Electrons +cond-mat/9902053 Mesoscale and Nanoscale Physics +cond-mat/9902056 Statistical Mechanics +cond-mat/9902057 Mesoscale and Nanoscale Physics +cond-mat/9902058 +cond-mat/9902060 +cond-mat/9902062 Superconductivity +cond-mat/9902064 Statistical Mechanics +cond-mat/9902065 Statistical Mechanics +cond-mat/9902067 Superconductivity +cond-mat/9902068 +cond-mat/9902069 Soft Condensed Matter +cond-mat/9902070 Soft Condensed Matter +cond-mat/9902071 Disordered Systems and Neural Networks +cond-mat/9902072 Mesoscale and Nanoscale Physics +cond-mat/9902074 Statistical Mechanics +cond-mat/9902076 Superconductivity +cond-mat/9902077 Superconductivity +cond-mat/9902078 Mesoscale and Nanoscale Physics +cond-mat/9902079 Superconductivity +cond-mat/9902080 Superconductivity +cond-mat/9902081 Materials Science +cond-mat/9902083 +cond-mat/9902084 Strongly Correlated Electrons +cond-mat/9902086 Mesoscale and Nanoscale Physics +cond-mat/9902088 Strongly Correlated Electrons +cond-mat/9902089 Strongly Correlated Electrons +cond-mat/9902090 Mesoscale and Nanoscale Physics +cond-mat/9902091 Strongly Correlated Electrons +cond-mat/9902092 +cond-mat/9902093 +cond-mat/9902095 Superconductivity +cond-mat/9902096 Materials Science +cond-mat/9902097 Statistical Mechanics +cond-mat/9902098 Strongly Correlated Electrons +cond-mat/9902099 Mesoscale and Nanoscale Physics +cond-mat/9902102 Disordered Systems and Neural Networks +cond-mat/9902103 Mesoscale and Nanoscale Physics +cond-mat/9902104 Strongly Correlated Electrons +cond-mat/9902105 Statistical Mechanics +cond-mat/9902106 Strongly Correlated Electrons +cond-mat/9902107 Strongly Correlated Electrons +cond-mat/9902110 +cond-mat/9902111 Soft Condensed Matter +cond-mat/9902113 Strongly Correlated Electrons +cond-mat/9902116 Strongly Correlated Electrons +cond-mat/9902117 +cond-mat/9902118 Mesoscale and Nanoscale Physics +cond-mat/9902119 Mesoscale and Nanoscale Physics +cond-mat/9902120 Disordered Systems and Neural Networks +cond-mat/9902122 Mesoscale and Nanoscale Physics +cond-mat/9902124 Strongly Correlated Electrons +cond-mat/9902125 Superconductivity +cond-mat/9902132 Strongly Correlated Electrons +cond-mat/9902133 Statistical Mechanics +cond-mat/9902134 Superconductivity +cond-mat/9902135 Statistical Mechanics +cond-mat/9902137 Statistical Mechanics +cond-mat/9902138 Soft Condensed Matter +cond-mat/9902139 Strongly Correlated Electrons +cond-mat/9902140 +cond-mat/9902141 Statistical Mechanics +cond-mat/9902142 Statistical Mechanics +cond-mat/9902143 +cond-mat/9902144 +cond-mat/9902145 Disordered Systems and Neural Networks +cond-mat/9902146 +cond-mat/9902147 Statistical Mechanics +cond-mat/9902149 +cond-mat/9902150 Strongly Correlated Electrons +cond-mat/9902152 Mesoscale and Nanoscale Physics +cond-mat/9902153 +cond-mat/9902154 Mesoscale and Nanoscale Physics +cond-mat/9902156 Disordered Systems and Neural Networks +cond-mat/9902157 Superconductivity +cond-mat/9902159 Mesoscale and Nanoscale Physics +cond-mat/9902160 Mesoscale and Nanoscale Physics +cond-mat/9902163 Strongly Correlated Electrons +cond-mat/9902164 Statistical Mechanics +cond-mat/9902166 +cond-mat/9902167 Strongly Correlated Electrons +cond-mat/9902168 +cond-mat/9902170 Statistical Mechanics +cond-mat/9902172 Statistical Mechanics +cond-mat/9902173 Superconductivity +cond-mat/9902174 Strongly Correlated Electrons +cond-mat/9902175 Disordered Systems and Neural Networks +cond-mat/9902176 Strongly Correlated Electrons +cond-mat/9902178 Strongly Correlated Electrons +cond-mat/9902179 Strongly Correlated Electrons +cond-mat/9902183 Superconductivity +cond-mat/9902184 Mesoscale and Nanoscale Physics +cond-mat/9902185 +cond-mat/9902186 +cond-mat/9902187 +cond-mat/9902189 Soft Condensed Matter +cond-mat/9902190 Mesoscale and Nanoscale Physics +cond-mat/9902191 Materials Science +cond-mat/9902192 Superconductivity +cond-mat/9902193 Superconductivity +cond-mat/9902194 Statistical Mechanics +cond-mat/9902196 Statistical Mechanics +cond-mat/9902197 Mesoscale and Nanoscale Physics +cond-mat/9902198 Statistical Mechanics +cond-mat/9902199 Strongly Correlated Electrons +cond-mat/9902201 Superconductivity +cond-mat/9902202 Mesoscale and Nanoscale Physics +cond-mat/9902203 Disordered Systems and Neural Networks +cond-mat/9902204 Soft Condensed Matter +cond-mat/9902205 Strongly Correlated Electrons +cond-mat/9902208 Statistical Mechanics +cond-mat/9902210 Mesoscale and Nanoscale Physics +cond-mat/9902211 +cond-mat/9902212 Statistical Mechanics +cond-mat/9902213 Statistical Mechanics +cond-mat/9902214 Superconductivity +cond-mat/9902215 +cond-mat/9902216 Statistical Mechanics +cond-mat/9902217 Soft Condensed Matter +cond-mat/9902218 Soft Condensed Matter +cond-mat/9902219 Strongly Correlated Electrons +cond-mat/9902226 Strongly Correlated Electrons +cond-mat/9902229 Statistical Mechanics +cond-mat/9902230 Strongly Correlated Electrons +cond-mat/9902231 Disordered Systems and Neural Networks +cond-mat/9902232 Superconductivity +cond-mat/9902235 +cond-mat/9902237 +cond-mat/9902238 Strongly Correlated Electrons +cond-mat/9902241 Strongly Correlated Electrons +cond-mat/9902244 Superconductivity +cond-mat/9902245 Mesoscale and Nanoscale Physics +cond-mat/9902247 +cond-mat/9902248 Strongly Correlated Electrons +cond-mat/9902249 +cond-mat/9902250 Mesoscale and Nanoscale Physics +cond-mat/9902252 Disordered Systems and Neural Networks +cond-mat/9902253 Strongly Correlated Electrons +cond-mat/9902255 Superconductivity +cond-mat/9902258 Mesoscale and Nanoscale Physics +cond-mat/9902260 Mesoscale and Nanoscale Physics +cond-mat/9902261 Superconductivity +cond-mat/9902262 Superconductivity +cond-mat/9902264 Superconductivity +cond-mat/9902265 Superconductivity +cond-mat/9902266 Strongly Correlated Electrons +cond-mat/9902267 Strongly Correlated Electrons +cond-mat/9902268 Disordered Systems and Neural Networks +cond-mat/9902270 Materials Science +cond-mat/9902272 Strongly Correlated Electrons +cond-mat/9902273 Superconductivity +cond-mat/9902277 +cond-mat/9902278 Mesoscale and Nanoscale Physics +cond-mat/9902279 +cond-mat/9902280 +cond-mat/9902281 Statistical Mechanics +cond-mat/9902282 Materials Science +cond-mat/9902283 Statistical Mechanics +cond-mat/9902285 Superconductivity +cond-mat/9902286 Mesoscale and Nanoscale Physics +cond-mat/9902287 Strongly Correlated Electrons +cond-mat/9902288 Strongly Correlated Electrons +cond-mat/9902289 Superconductivity +cond-mat/9902290 Strongly Correlated Electrons +cond-mat/9902291 Statistical Mechanics +cond-mat/9902293 +cond-mat/9902294 Superconductivity +cond-mat/9902297 Superconductivity +cond-mat/9902298 Strongly Correlated Electrons +cond-mat/9902299 Superconductivity +cond-mat/9902300 +cond-mat/9902301 +cond-mat/9902302 Superconductivity +cond-mat/9902303 Mesoscale and Nanoscale Physics +cond-mat/9902304 Statistical Mechanics +cond-mat/9902305 Superconductivity +cond-mat/9902306 +cond-mat/9902307 +cond-mat/9902309 +cond-mat/9902311 Strongly Correlated Electrons +cond-mat/9902312 Disordered Systems and Neural Networks +cond-mat/9902313 Materials Science +cond-mat/9902314 +cond-mat/9902315 Strongly Correlated Electrons +cond-mat/9902316 Soft Condensed Matter +cond-mat/9902318 Disordered Systems and Neural Networks +cond-mat/9902320 Mesoscale and Nanoscale Physics +cond-mat/9902321 Disordered Systems and Neural Networks +cond-mat/9902322 Strongly Correlated Electrons +cond-mat/9902323 Superconductivity +cond-mat/9902324 Statistical Mechanics +cond-mat/9902326 Statistical Mechanics +cond-mat/9902327 +cond-mat/9902328 Mesoscale and Nanoscale Physics +cond-mat/9902329 Mesoscale and Nanoscale Physics +cond-mat/9902330 Statistical Mechanics +cond-mat/9902331 Statistical Mechanics +cond-mat/9902332 Disordered Systems and Neural Networks +cond-mat/9902333 +cond-mat/9902334 Superconductivity +cond-mat/9902335 Disordered Systems and Neural Networks +cond-mat/9902337 Strongly Correlated Electrons +cond-mat/9902340 Mesoscale and Nanoscale Physics +cond-mat/9902342 Mesoscale and Nanoscale Physics +cond-mat/9902344 Mesoscale and Nanoscale Physics +cond-mat/9902345 Soft Condensed Matter +cond-mat/9902346 +cond-mat/9902347 Soft Condensed Matter +cond-mat/9902348 Superconductivity +cond-mat/9902350 Statistical Mechanics +cond-mat/9902351 Superconductivity +cond-mat/9902352 Disordered Systems and Neural Networks +cond-mat/9902354 Statistical Mechanics +cond-mat/9902356 Soft Condensed Matter +cond-mat/9902358 Soft Condensed Matter +cond-mat/9902359 Superconductivity +cond-mat/9902360 Strongly Correlated Electrons +cond-mat/9902362 Statistical Mechanics +cond-mat/9902365 +cond-mat/9903001 Disordered Systems and Neural Networks +cond-mat/9903002 Soft Condensed Matter +cond-mat/9903003 Soft Condensed Matter +cond-mat/9903004 Superconductivity +cond-mat/9903005 Superconductivity +cond-mat/9903007 Materials Science +cond-mat/9903008 Strongly Correlated Electrons +cond-mat/9903009 Statistical Mechanics +cond-mat/9903011 Strongly Correlated Electrons +cond-mat/9903012 Superconductivity +cond-mat/9903013 +cond-mat/9903014 Strongly Correlated Electrons +cond-mat/9903015 Materials Science +cond-mat/9903017 Mesoscale and Nanoscale Physics +cond-mat/9903018 Disordered Systems and Neural Networks +cond-mat/9903019 +cond-mat/9903020 Disordered Systems and Neural Networks +cond-mat/9903021 +cond-mat/9903022 Strongly Correlated Electrons +cond-mat/9903023 Superconductivity +cond-mat/9903024 Superconductivity +cond-mat/9903025 Disordered Systems and Neural Networks +cond-mat/9903026 Disordered Systems and Neural Networks +cond-mat/9903027 Disordered Systems and Neural Networks +cond-mat/9903030 Strongly Correlated Electrons +cond-mat/9903031 Superconductivity +cond-mat/9903033 Disordered Systems and Neural Networks +cond-mat/9903035 Strongly Correlated Electrons +cond-mat/9903036 Statistical Mechanics +cond-mat/9903039 Strongly Correlated Electrons +cond-mat/9903042 Disordered Systems and Neural Networks +cond-mat/9903043 +cond-mat/9903045 Statistical Mechanics +cond-mat/9903046 Strongly Correlated Electrons +cond-mat/9903049 Statistical Mechanics +cond-mat/9903052 Statistical Mechanics +cond-mat/9903053 Statistical Mechanics +cond-mat/9903056 Strongly Correlated Electrons +cond-mat/9903057 Strongly Correlated Electrons +cond-mat/9903058 Mesoscale and Nanoscale Physics +cond-mat/9903059 Strongly Correlated Electrons +cond-mat/9903060 Superconductivity +cond-mat/9903061 Superconductivity +cond-mat/9903062 Strongly Correlated Electrons +cond-mat/9903064 Mesoscale and Nanoscale Physics +cond-mat/9903067 Soft Condensed Matter +cond-mat/9903069 Superconductivity +cond-mat/9903070 Strongly Correlated Electrons +cond-mat/9903071 Superconductivity +cond-mat/9903076 Statistical Mechanics +cond-mat/9903077 Statistical Mechanics +cond-mat/9903082 Materials Science +cond-mat/9903083 Strongly Correlated Electrons +cond-mat/9903084 Materials Science +cond-mat/9903085 Disordered Systems and Neural Networks +cond-mat/9903086 Mesoscale and Nanoscale Physics +cond-mat/9903087 Mesoscale and Nanoscale Physics +cond-mat/9903089 Statistical Mechanics +cond-mat/9903090 Statistical Mechanics +cond-mat/9903091 Disordered Systems and Neural Networks +cond-mat/9903092 Mesoscale and Nanoscale Physics +cond-mat/9903094 Statistical Mechanics +cond-mat/9903095 Disordered Systems and Neural Networks +cond-mat/9903099 Materials Science +cond-mat/9903100 Strongly Correlated Electrons +cond-mat/9903103 Statistical Mechanics +cond-mat/9903104 Strongly Correlated Electrons +cond-mat/9903106 Statistical Mechanics +cond-mat/9903108 Statistical Mechanics +cond-mat/9903110 Strongly Correlated Electrons +cond-mat/9903111 Strongly Correlated Electrons +cond-mat/9903113 Disordered Systems and Neural Networks +cond-mat/9903114 Disordered Systems and Neural Networks +cond-mat/9903115 Statistical Mechanics +cond-mat/9903117 Superconductivity +cond-mat/9903118 Materials Science +cond-mat/9903119 Statistical Mechanics +cond-mat/9903120 Soft Condensed Matter +cond-mat/9903121 Strongly Correlated Electrons +cond-mat/9903122 Strongly Correlated Electrons +cond-mat/9903124 Strongly Correlated Electrons +cond-mat/9903126 Mesoscale and Nanoscale Physics +cond-mat/9903127 +cond-mat/9903129 +cond-mat/9903130 Disordered Systems and Neural Networks +cond-mat/9903131 Statistical Mechanics +cond-mat/9903132 Statistical Mechanics +cond-mat/9903133 Soft Condensed Matter +cond-mat/9903134 Superconductivity +cond-mat/9903135 Strongly Correlated Electrons +cond-mat/9903136 Disordered Systems and Neural Networks +cond-mat/9903138 Materials Science +cond-mat/9903139 Statistical Mechanics +cond-mat/9903140 +cond-mat/9903142 Statistical Mechanics +cond-mat/9903144 Statistical Mechanics +cond-mat/9903146 Mesoscale and Nanoscale Physics +cond-mat/9903147 Materials Science +cond-mat/9903148 Mesoscale and Nanoscale Physics +cond-mat/9903149 +cond-mat/9903151 Superconductivity +cond-mat/9903154 Strongly Correlated Electrons +cond-mat/9903155 Statistical Mechanics +cond-mat/9903156 Statistical Mechanics +cond-mat/9903157 Statistical Mechanics +cond-mat/9903158 Statistical Mechanics +cond-mat/9903160 Mesoscale and Nanoscale Physics +cond-mat/9903164 +cond-mat/9903166 Strongly Correlated Electrons +cond-mat/9903167 Superconductivity +cond-mat/9903169 Disordered Systems and Neural Networks +cond-mat/9903171 Soft Condensed Matter +cond-mat/9903172 Disordered Systems and Neural Networks +cond-mat/9903173 Soft Condensed Matter +cond-mat/9903174 Mesoscale and Nanoscale Physics +cond-mat/9903175 Mesoscale and Nanoscale Physics +cond-mat/9903176 Materials Science +cond-mat/9903177 Materials Science +cond-mat/9903178 Materials Science +cond-mat/9903179 Strongly Correlated Electrons +cond-mat/9903181 Mesoscale and Nanoscale Physics +cond-mat/9903182 Strongly Correlated Electrons +cond-mat/9903184 Statistical Mechanics +cond-mat/9903185 Mesoscale and Nanoscale Physics +cond-mat/9903186 Materials Science +cond-mat/9903188 Strongly Correlated Electrons +cond-mat/9903190 Mesoscale and Nanoscale Physics +cond-mat/9903191 Statistical Mechanics +cond-mat/9903192 Statistical Mechanics +cond-mat/9903194 Statistical Mechanics +cond-mat/9903195 Strongly Correlated Electrons +cond-mat/9903196 Mesoscale and Nanoscale Physics +cond-mat/9903197 Strongly Correlated Electrons +cond-mat/9903199 Soft Condensed Matter +cond-mat/9903200 Mesoscale and Nanoscale Physics +cond-mat/9903202 +cond-mat/9903203 Statistical Mechanics +cond-mat/9903204 +cond-mat/9903206 Superconductivity +cond-mat/9903208 +cond-mat/9903210 Superconductivity +cond-mat/9903211 +cond-mat/9903213 +cond-mat/9903214 Superconductivity +cond-mat/9903215 Materials Science +cond-mat/9903217 Strongly Correlated Electrons +cond-mat/9903218 Strongly Correlated Electrons +cond-mat/9903219 Superconductivity +cond-mat/9903223 Disordered Systems and Neural Networks +cond-mat/9903224 Statistical Mechanics +cond-mat/9903225 Mesoscale and Nanoscale Physics +cond-mat/9903226 Strongly Correlated Electrons +cond-mat/9903227 Strongly Correlated Electrons +cond-mat/9903228 +cond-mat/9903230 Disordered Systems and Neural Networks +cond-mat/9903231 Mesoscale and Nanoscale Physics +cond-mat/9903232 Superconductivity +cond-mat/9903233 Statistical Mechanics +cond-mat/9903236 +cond-mat/9903237 Superconductivity +cond-mat/9903239 Mesoscale and Nanoscale Physics +cond-mat/9903240 Mesoscale and Nanoscale Physics +cond-mat/9903241 Strongly Correlated Electrons +cond-mat/9903242 Statistical Mechanics +cond-mat/9903243 Strongly Correlated Electrons +cond-mat/9903244 Strongly Correlated Electrons +cond-mat/9903246 Mesoscale and Nanoscale Physics +cond-mat/9903247 Superconductivity +cond-mat/9903248 Statistical Mechanics +cond-mat/9903249 +cond-mat/9903250 +cond-mat/9903254 Superconductivity +cond-mat/9903255 +cond-mat/9903258 Mesoscale and Nanoscale Physics +cond-mat/9903261 Superconductivity +cond-mat/9903262 Soft Condensed Matter +cond-mat/9903264 Statistical Mechanics +cond-mat/9903265 Mesoscale and Nanoscale Physics +cond-mat/9903266 Mesoscale and Nanoscale Physics +cond-mat/9903267 Statistical Mechanics +cond-mat/9903268 Soft Condensed Matter +cond-mat/9903269 Statistical Mechanics +cond-mat/9903270 Statistical Mechanics +cond-mat/9903271 Superconductivity +cond-mat/9903272 Disordered Systems and Neural Networks +cond-mat/9903273 Strongly Correlated Electrons +cond-mat/9903274 Strongly Correlated Electrons +cond-mat/9903275 Mesoscale and Nanoscale Physics +cond-mat/9903276 Disordered Systems and Neural Networks +cond-mat/9903277 Disordered Systems and Neural Networks +cond-mat/9903278 +cond-mat/9903279 Mesoscale and Nanoscale Physics +cond-mat/9903280 Strongly Correlated Electrons +cond-mat/9903281 Mesoscale and Nanoscale Physics +cond-mat/9903283 +cond-mat/9903286 Soft Condensed Matter +cond-mat/9903287 Strongly Correlated Electrons +cond-mat/9903289 Statistical Mechanics +cond-mat/9903290 Soft Condensed Matter +cond-mat/9903291 Superconductivity +cond-mat/9903293 Statistical Mechanics +cond-mat/9903294 Strongly Correlated Electrons +cond-mat/9903296 Strongly Correlated Electrons +cond-mat/9903298 Materials Science +cond-mat/9903300 +cond-mat/9903301 Soft Condensed Matter +cond-mat/9903302 +cond-mat/9903303 Materials Science +cond-mat/9903306 Statistical Mechanics +cond-mat/9903308 Statistical Mechanics +cond-mat/9903310 Statistical Mechanics +cond-mat/9903311 Strongly Correlated Electrons +cond-mat/9903313 +cond-mat/9903314 Strongly Correlated Electrons +cond-mat/9903315 Statistical Mechanics +cond-mat/9903316 Disordered Systems and Neural Networks +cond-mat/9903317 Superconductivity +cond-mat/9903318 Mesoscale and Nanoscale Physics +cond-mat/9903320 Materials Science +cond-mat/9903322 Strongly Correlated Electrons +cond-mat/9903324 Soft Condensed Matter +cond-mat/9903327 Statistical Mechanics +cond-mat/9903328 Strongly Correlated Electrons +cond-mat/9903330 Mesoscale and Nanoscale Physics +cond-mat/9903332 Superconductivity +cond-mat/9903333 Superconductivity +cond-mat/9903334 Statistical Mechanics +cond-mat/9903335 Statistical Mechanics +cond-mat/9903337 Mesoscale and Nanoscale Physics +cond-mat/9903340 Strongly Correlated Electrons +cond-mat/9903341 Statistical Mechanics +cond-mat/9903342 Strongly Correlated Electrons +cond-mat/9903343 Superconductivity +cond-mat/9903347 Disordered Systems and Neural Networks +cond-mat/9903348 Materials Science +cond-mat/9903351 +cond-mat/9903352 Strongly Correlated Electrons +cond-mat/9903355 Strongly Correlated Electrons +cond-mat/9903357 Statistical Mechanics +cond-mat/9903358 +cond-mat/9903360 Superconductivity +cond-mat/9903361 Strongly Correlated Electrons +cond-mat/9903362 +cond-mat/9903364 Soft Condensed Matter +cond-mat/9903365 Soft Condensed Matter +cond-mat/9903366 Materials Science +cond-mat/9903368 Mesoscale and Nanoscale Physics +cond-mat/9903369 Statistical Mechanics +cond-mat/9903371 +cond-mat/9903372 Strongly Correlated Electrons +cond-mat/9903373 Strongly Correlated Electrons +cond-mat/9903375 Statistical Mechanics +cond-mat/9903377 +cond-mat/9903378 Statistical Mechanics +cond-mat/9903380 Statistical Mechanics +cond-mat/9903381 Mesoscale and Nanoscale Physics +cond-mat/9903383 Superconductivity +cond-mat/9903386 Mesoscale and Nanoscale Physics +cond-mat/9903387 Disordered Systems and Neural Networks +cond-mat/9903389 Disordered Systems and Neural Networks +cond-mat/9903390 Statistical Mechanics +cond-mat/9903391 Disordered Systems and Neural Networks +cond-mat/9903393 Superconductivity +cond-mat/9903395 Superconductivity +cond-mat/9903396 Mesoscale and Nanoscale Physics +cond-mat/9903397 Superconductivity +cond-mat/9903398 Materials Science +cond-mat/9903399 Superconductivity +cond-mat/9903400 Statistical Mechanics +cond-mat/9903401 Strongly Correlated Electrons +cond-mat/9903402 Statistical Mechanics +cond-mat/9903404 Statistical Mechanics +cond-mat/9903405 Mesoscale and Nanoscale Physics +cond-mat/9903406 Soft Condensed Matter +cond-mat/9903407 Superconductivity +cond-mat/9903414 +cond-mat/9903415 Statistical Mechanics +cond-mat/9903416 Mesoscale and Nanoscale Physics +cond-mat/9903417 Mesoscale and Nanoscale Physics +cond-mat/9903419 Disordered Systems and Neural Networks +cond-mat/9903420 Statistical Mechanics +cond-mat/9903421 Superconductivity +cond-mat/9903422 Superconductivity +cond-mat/9903424 Materials Science +cond-mat/9903425 Soft Condensed Matter +cond-mat/9903426 Disordered Systems and Neural Networks +cond-mat/9903427 Superconductivity +cond-mat/9903429 Superconductivity +cond-mat/9903430 Mesoscale and Nanoscale Physics +cond-mat/9903431 Strongly Correlated Electrons +cond-mat/9903432 +cond-mat/9903433 Statistical Mechanics +cond-mat/9903434 +cond-mat/9903435 Mesoscale and Nanoscale Physics +cond-mat/9903436 Mesoscale and Nanoscale Physics +cond-mat/9903437 Mesoscale and Nanoscale Physics +cond-mat/9903439 Strongly Correlated Electrons +cond-mat/9903440 Materials Science +cond-mat/9903441 +cond-mat/9903442 +cond-mat/9903443 Mesoscale and Nanoscale Physics +cond-mat/9903444 Soft Condensed Matter +cond-mat/9903446 +cond-mat/9903449 Strongly Correlated Electrons +cond-mat/9903450 Strongly Correlated Electrons +cond-mat/9903453 Superconductivity +cond-mat/9903454 Soft Condensed Matter +cond-mat/9903456 Soft Condensed Matter +cond-mat/9903457 +cond-mat/9903458 Superconductivity +cond-mat/9903460 Materials Science +cond-mat/9904001 Strongly Correlated Electrons +cond-mat/9904002 Superconductivity +cond-mat/9904003 Mesoscale and Nanoscale Physics +cond-mat/9904004 Strongly Correlated Electrons +cond-mat/9904006 Strongly Correlated Electrons +cond-mat/9904007 +cond-mat/9904010 Soft Condensed Matter +cond-mat/9904011 Statistical Mechanics +cond-mat/9904013 +cond-mat/9904014 Strongly Correlated Electrons +cond-mat/9904015 Strongly Correlated Electrons +cond-mat/9904016 Mesoscale and Nanoscale Physics +cond-mat/9904018 +cond-mat/9904019 Statistical Mechanics +cond-mat/9904020 +cond-mat/9904021 Mesoscale and Nanoscale Physics +cond-mat/9904024 Mesoscale and Nanoscale Physics +cond-mat/9904025 Statistical Mechanics +cond-mat/9904026 Materials Science +cond-mat/9904027 +cond-mat/9904029 Soft Condensed Matter +cond-mat/9904031 Materials Science +cond-mat/9904032 +cond-mat/9904033 Soft Condensed Matter +cond-mat/9904035 Strongly Correlated Electrons +cond-mat/9904036 Statistical Mechanics +cond-mat/9904037 Mesoscale and Nanoscale Physics +cond-mat/9904039 Materials Science +cond-mat/9904041 Statistical Mechanics +cond-mat/9904043 Statistical Mechanics +cond-mat/9904044 Disordered Systems and Neural Networks +cond-mat/9904045 Materials Science +cond-mat/9904046 Mesoscale and Nanoscale Physics +cond-mat/9904047 +cond-mat/9904048 Superconductivity +cond-mat/9904051 Mesoscale and Nanoscale Physics +cond-mat/9904052 Mesoscale and Nanoscale Physics +cond-mat/9904056 Strongly Correlated Electrons +cond-mat/9904058 Strongly Correlated Electrons +cond-mat/9904059 Statistical Mechanics +cond-mat/9904060 Statistical Mechanics +cond-mat/9904061 Mesoscale and Nanoscale Physics +cond-mat/9904062 Statistical Mechanics +cond-mat/9904063 Strongly Correlated Electrons +cond-mat/9904064 Strongly Correlated Electrons +cond-mat/9904065 Soft Condensed Matter +cond-mat/9904067 Mesoscale and Nanoscale Physics +cond-mat/9904069 Strongly Correlated Electrons +cond-mat/9904071 Statistical Mechanics +cond-mat/9904072 Strongly Correlated Electrons +cond-mat/9904075 Disordered Systems and Neural Networks +cond-mat/9904076 Mesoscale and Nanoscale Physics +cond-mat/9904077 Superconductivity +cond-mat/9904079 +cond-mat/9904082 Statistical Mechanics +cond-mat/9904084 Disordered Systems and Neural Networks +cond-mat/9904086 Mesoscale and Nanoscale Physics +cond-mat/9904088 Soft Condensed Matter +cond-mat/9904089 Mesoscale and Nanoscale Physics +cond-mat/9904090 Soft Condensed Matter +cond-mat/9904091 Statistical Mechanics +cond-mat/9904093 Strongly Correlated Electrons +cond-mat/9904094 +cond-mat/9904096 +cond-mat/9904097 Statistical Mechanics +cond-mat/9904100 +cond-mat/9904101 Soft Condensed Matter +cond-mat/9904102 Soft Condensed Matter +cond-mat/9904103 Disordered Systems and Neural Networks +cond-mat/9904104 +cond-mat/9904105 +cond-mat/9904106 Statistical Mechanics +cond-mat/9904108 Mesoscale and Nanoscale Physics +cond-mat/9904109 +cond-mat/9904111 +cond-mat/9904112 Mesoscale and Nanoscale Physics +cond-mat/9904115 Statistical Mechanics +cond-mat/9904116 Superconductivity +cond-mat/9904118 Strongly Correlated Electrons +cond-mat/9904119 Materials Science +cond-mat/9904120 Strongly Correlated Electrons +cond-mat/9904121 +cond-mat/9904123 Materials Science +cond-mat/9904124 Disordered Systems and Neural Networks +cond-mat/9904126 Superconductivity +cond-mat/9904127 Disordered Systems and Neural Networks +cond-mat/9904128 Superconductivity +cond-mat/9904129 Statistical Mechanics +cond-mat/9904130 Statistical Mechanics +cond-mat/9904131 Superconductivity +cond-mat/9904132 Statistical Mechanics +cond-mat/9904134 Soft Condensed Matter +cond-mat/9904137 Superconductivity +cond-mat/9904138 Superconductivity +cond-mat/9904139 Soft Condensed Matter +cond-mat/9904140 +cond-mat/9904141 Superconductivity +cond-mat/9904142 +cond-mat/9904143 Disordered Systems and Neural Networks +cond-mat/9904144 Superconductivity +cond-mat/9904145 Mesoscale and Nanoscale Physics +cond-mat/9904147 +cond-mat/9904150 Strongly Correlated Electrons +cond-mat/9904151 Strongly Correlated Electrons +cond-mat/9904153 Statistical Mechanics +cond-mat/9904155 Statistical Mechanics +cond-mat/9904156 +cond-mat/9904157 Strongly Correlated Electrons +cond-mat/9904158 Mesoscale and Nanoscale Physics +cond-mat/9904161 Statistical Mechanics +cond-mat/9904162 Statistical Mechanics +cond-mat/9904163 Disordered Systems and Neural Networks +cond-mat/9904164 Materials Science +cond-mat/9904165 Superconductivity +cond-mat/9904166 Mesoscale and Nanoscale Physics +cond-mat/9904170 Statistical Mechanics +cond-mat/9904172 +cond-mat/9904176 Statistical Mechanics +cond-mat/9904177 Statistical Mechanics +cond-mat/9904178 Strongly Correlated Electrons +cond-mat/9904179 Mesoscale and Nanoscale Physics +cond-mat/9904181 Materials Science +cond-mat/9904182 +cond-mat/9904185 Mesoscale and Nanoscale Physics +cond-mat/9904186 Superconductivity +cond-mat/9904188 Mesoscale and Nanoscale Physics +cond-mat/9904189 Soft Condensed Matter +cond-mat/9904191 +cond-mat/9904192 +cond-mat/9904193 Statistical Mechanics +cond-mat/9904194 Materials Science +cond-mat/9904195 Statistical Mechanics +cond-mat/9904196 +cond-mat/9904198 Strongly Correlated Electrons +cond-mat/9904199 Strongly Correlated Electrons +cond-mat/9904200 Disordered Systems and Neural Networks +cond-mat/9904201 Disordered Systems and Neural Networks +cond-mat/9904202 Materials Science +cond-mat/9904203 Soft Condensed Matter +cond-mat/9904206 Disordered Systems and Neural Networks +cond-mat/9904208 Disordered Systems and Neural Networks +cond-mat/9904209 Superconductivity +cond-mat/9904211 Superconductivity +cond-mat/9904212 Superconductivity +cond-mat/9904213 Strongly Correlated Electrons +cond-mat/9904214 Mesoscale and Nanoscale Physics +cond-mat/9904215 Statistical Mechanics +cond-mat/9904218 Strongly Correlated Electrons +cond-mat/9904219 Disordered Systems and Neural Networks +cond-mat/9904220 Statistical Mechanics +cond-mat/9904221 Strongly Correlated Electrons +cond-mat/9904222 Statistical Mechanics +cond-mat/9904223 Soft Condensed Matter +cond-mat/9904224 Materials Science +cond-mat/9904226 Statistical Mechanics +cond-mat/9904228 Soft Condensed Matter +cond-mat/9904229 +cond-mat/9904231 Strongly Correlated Electrons +cond-mat/9904232 +cond-mat/9904233 Strongly Correlated Electrons +cond-mat/9904234 Statistical Mechanics +cond-mat/9904235 Strongly Correlated Electrons +cond-mat/9904236 Soft Condensed Matter +cond-mat/9904237 Soft Condensed Matter +cond-mat/9904238 Mesoscale and Nanoscale Physics +cond-mat/9904240 Materials Science +cond-mat/9904241 Superconductivity +cond-mat/9904242 Superconductivity +cond-mat/9904243 +cond-mat/9904244 Strongly Correlated Electrons +cond-mat/9904246 Disordered Systems and Neural Networks +cond-mat/9904248 Mesoscale and Nanoscale Physics +cond-mat/9904249 +cond-mat/9904250 Strongly Correlated Electrons +cond-mat/9904254 Superconductivity +cond-mat/9904255 Strongly Correlated Electrons +cond-mat/9904258 Strongly Correlated Electrons +cond-mat/9904259 Soft Condensed Matter +cond-mat/9904260 +cond-mat/9904262 Superconductivity +cond-mat/9904263 Superconductivity +cond-mat/9904264 Mesoscale and Nanoscale Physics +cond-mat/9904266 +cond-mat/9904269 Statistical Mechanics +cond-mat/9904270 Soft Condensed Matter +cond-mat/9904273 Statistical Mechanics +cond-mat/9904275 Superconductivity +cond-mat/9904276 Superconductivity +cond-mat/9904277 Statistical Mechanics +cond-mat/9904279 Superconductivity +cond-mat/9904280 Disordered Systems and Neural Networks +cond-mat/9904281 Disordered Systems and Neural Networks +cond-mat/9904283 +cond-mat/9904284 Materials Science +cond-mat/9904285 Disordered Systems and Neural Networks +cond-mat/9904286 Strongly Correlated Electrons +cond-mat/9904287 +cond-mat/9904288 Superconductivity +cond-mat/9904289 Statistical Mechanics +cond-mat/9904290 Strongly Correlated Electrons +cond-mat/9904292 Strongly Correlated Electrons +cond-mat/9904293 Materials Science +cond-mat/9904294 Statistical Mechanics +cond-mat/9904295 Superconductivity +cond-mat/9904296 Disordered Systems and Neural Networks +cond-mat/9904300 Disordered Systems and Neural Networks +cond-mat/9904301 Mesoscale and Nanoscale Physics +cond-mat/9904302 Statistical Mechanics +cond-mat/9904303 Disordered Systems and Neural Networks +cond-mat/9904304 +cond-mat/9904305 Superconductivity +cond-mat/9904306 Materials Science +cond-mat/9904307 Materials Science +cond-mat/9904309 Disordered Systems and Neural Networks +cond-mat/9904311 Strongly Correlated Electrons +cond-mat/9904314 Strongly Correlated Electrons +cond-mat/9904315 Strongly Correlated Electrons +cond-mat/9904317 Strongly Correlated Electrons +cond-mat/9904318 Strongly Correlated Electrons +cond-mat/9904319 Strongly Correlated Electrons +cond-mat/9904320 Statistical Mechanics +cond-mat/9904322 Statistical Mechanics +cond-mat/9904324 Mesoscale and Nanoscale Physics +cond-mat/9904325 +cond-mat/9904326 Statistical Mechanics +cond-mat/9904327 Statistical Mechanics +cond-mat/9904330 Strongly Correlated Electrons +cond-mat/9904332 Strongly Correlated Electrons +cond-mat/9904334 Strongly Correlated Electrons +cond-mat/9904335 Statistical Mechanics +cond-mat/9904338 Soft Condensed Matter +cond-mat/9904339 Materials Science +cond-mat/9904340 Superconductivity +cond-mat/9904341 Mesoscale and Nanoscale Physics +cond-mat/9904342 Disordered Systems and Neural Networks +cond-mat/9904343 Statistical Mechanics +cond-mat/9904344 Mesoscale and Nanoscale Physics +cond-mat/9904345 Mesoscale and Nanoscale Physics +cond-mat/9904346 Strongly Correlated Electrons +cond-mat/9904347 +cond-mat/9904348 Superconductivity +cond-mat/9904349 Strongly Correlated Electrons +cond-mat/9904350 +cond-mat/9904351 Disordered Systems and Neural Networks +cond-mat/9904352 Statistical Mechanics +cond-mat/9904353 +cond-mat/9904355 Strongly Correlated Electrons +cond-mat/9904356 Statistical Mechanics +cond-mat/9904357 Superconductivity +cond-mat/9904358 +cond-mat/9904360 Disordered Systems and Neural Networks +cond-mat/9904361 Mesoscale and Nanoscale Physics +cond-mat/9904362 Disordered Systems and Neural Networks +cond-mat/9904363 Superconductivity +cond-mat/9904365 Materials Science +cond-mat/9904367 +cond-mat/9904368 +cond-mat/9904369 Materials Science +cond-mat/9904370 Mesoscale and Nanoscale Physics +cond-mat/9904371 Strongly Correlated Electrons +cond-mat/9904372 Strongly Correlated Electrons +cond-mat/9904373 Materials Science +cond-mat/9904374 Superconductivity +cond-mat/9904375 Superconductivity +cond-mat/9904376 Strongly Correlated Electrons +cond-mat/9904377 Soft Condensed Matter +cond-mat/9904378 Superconductivity +cond-mat/9904380 Materials Science +cond-mat/9904381 Strongly Correlated Electrons +cond-mat/9904383 Superconductivity +cond-mat/9904384 Strongly Correlated Electrons +cond-mat/9904385 Superconductivity +cond-mat/9904386 Soft Condensed Matter +cond-mat/9904387 Strongly Correlated Electrons +cond-mat/9904389 Statistical Mechanics +cond-mat/9904390 Superconductivity +cond-mat/9904391 Statistical Mechanics +cond-mat/9904392 Statistical Mechanics +cond-mat/9904395 Mesoscale and Nanoscale Physics +cond-mat/9904396 Statistical Mechanics +cond-mat/9904397 Disordered Systems and Neural Networks +cond-mat/9904398 Strongly Correlated Electrons +cond-mat/9904399 +cond-mat/9904400 Strongly Correlated Electrons +cond-mat/9904401 Disordered Systems and Neural Networks +cond-mat/9904402 Superconductivity +cond-mat/9904403 Superconductivity +cond-mat/9904404 Materials Science +cond-mat/9904405 Strongly Correlated Electrons +cond-mat/9904406 Disordered Systems and Neural Networks +cond-mat/9904408 Statistical Mechanics +cond-mat/9904409 +cond-mat/9904411 Mesoscale and Nanoscale Physics +cond-mat/9904412 Soft Condensed Matter +cond-mat/9904414 Mesoscale and Nanoscale Physics +cond-mat/9904416 Strongly Correlated Electrons +cond-mat/9904417 Statistical Mechanics +cond-mat/9904419 Statistical Mechanics +cond-mat/9904420 Strongly Correlated Electrons +cond-mat/9904421 Soft Condensed Matter +cond-mat/9904424 +cond-mat/9904426 Soft Condensed Matter +cond-mat/9904427 Strongly Correlated Electrons +cond-mat/9904428 Strongly Correlated Electrons +cond-mat/9904429 +cond-mat/9904430 Statistical Mechanics +cond-mat/9904431 Materials Science +cond-mat/9904432 Statistical Mechanics +cond-mat/9904433 Mesoscale and Nanoscale Physics +cond-mat/9904434 Statistical Mechanics +cond-mat/9904436 Strongly Correlated Electrons +cond-mat/9904439 Superconductivity +cond-mat/9904440 Strongly Correlated Electrons +cond-mat/9904444 Soft Condensed Matter +cond-mat/9904446 +cond-mat/9904448 Mesoscale and Nanoscale Physics +cond-mat/9904450 Mesoscale and Nanoscale Physics +cond-mat/9904451 Mesoscale and Nanoscale Physics +cond-mat/9905001 Statistical Mechanics +cond-mat/9905002 Strongly Correlated Electrons +cond-mat/9905003 Statistical Mechanics +cond-mat/9905005 Strongly Correlated Electrons +cond-mat/9905006 Strongly Correlated Electrons +cond-mat/9905007 Strongly Correlated Electrons +cond-mat/9905008 Superconductivity +cond-mat/9905010 Statistical Mechanics +cond-mat/9905011 Strongly Correlated Electrons +cond-mat/9905014 +cond-mat/9905016 Mesoscale and Nanoscale Physics +cond-mat/9905020 Strongly Correlated Electrons +cond-mat/9905023 Mesoscale and Nanoscale Physics +cond-mat/9905025 Superconductivity +cond-mat/9905026 Superconductivity +cond-mat/9905027 Statistical Mechanics +cond-mat/9905029 Mesoscale and Nanoscale Physics +cond-mat/9905030 Strongly Correlated Electrons +cond-mat/9905031 Materials Science +cond-mat/9905033 Mesoscale and Nanoscale Physics +cond-mat/9905035 Mesoscale and Nanoscale Physics +cond-mat/9905037 Statistical Mechanics +cond-mat/9905038 Strongly Correlated Electrons +cond-mat/9905039 Disordered Systems and Neural Networks +cond-mat/9905040 Superconductivity +cond-mat/9905041 +cond-mat/9905042 Mesoscale and Nanoscale Physics +cond-mat/9905043 Mesoscale and Nanoscale Physics +cond-mat/9905045 Soft Condensed Matter +cond-mat/9905047 Statistical Mechanics +cond-mat/9905049 Strongly Correlated Electrons +cond-mat/9905050 Statistical Mechanics +cond-mat/9905052 Materials Science +cond-mat/9905053 Mesoscale and Nanoscale Physics +cond-mat/9905054 Superconductivity +cond-mat/9905055 Soft Condensed Matter +cond-mat/9905057 Mesoscale and Nanoscale Physics +cond-mat/9905058 Disordered Systems and Neural Networks +cond-mat/9905060 Mesoscale and Nanoscale Physics +cond-mat/9905061 Statistical Mechanics +cond-mat/9905062 Soft Condensed Matter +cond-mat/9905067 Superconductivity +cond-mat/9905068 Superconductivity +cond-mat/9905070 Soft Condensed Matter +cond-mat/9905071 Superconductivity +cond-mat/9905074 Statistical Mechanics +cond-mat/9905075 Strongly Correlated Electrons +cond-mat/9905076 Disordered Systems and Neural Networks +cond-mat/9905077 +cond-mat/9905078 Statistical Mechanics +cond-mat/9905079 +cond-mat/9905082 Statistical Mechanics +cond-mat/9905083 +cond-mat/9905084 Superconductivity +cond-mat/9905085 Materials Science +cond-mat/9905086 Mesoscale and Nanoscale Physics +cond-mat/9905087 +cond-mat/9905089 Strongly Correlated Electrons +cond-mat/9905090 Soft Condensed Matter +cond-mat/9905091 Soft Condensed Matter +cond-mat/9905092 Disordered Systems and Neural Networks +cond-mat/9905093 Superconductivity +cond-mat/9905094 Statistical Mechanics +cond-mat/9905095 Superconductivity +cond-mat/9905096 Statistical Mechanics +cond-mat/9905098 Superconductivity +cond-mat/9905101 +cond-mat/9905102 Soft Condensed Matter +cond-mat/9905103 Statistical Mechanics +cond-mat/9905104 Statistical Mechanics +cond-mat/9905105 Disordered Systems and Neural Networks +cond-mat/9905106 Disordered Systems and Neural Networks +cond-mat/9905107 Superconductivity +cond-mat/9905109 Materials Science +cond-mat/9905113 Strongly Correlated Electrons +cond-mat/9905115 Strongly Correlated Electrons +cond-mat/9905116 Mesoscale and Nanoscale Physics +cond-mat/9905117 Strongly Correlated Electrons +cond-mat/9905118 +cond-mat/9905119 Materials Science +cond-mat/9905120 Strongly Correlated Electrons +cond-mat/9905121 Statistical Mechanics +cond-mat/9905122 Materials Science +cond-mat/9905123 Disordered Systems and Neural Networks +cond-mat/9905126 Statistical Mechanics +cond-mat/9905127 Disordered Systems and Neural Networks +cond-mat/9905128 Disordered Systems and Neural Networks +cond-mat/9905129 Materials Science +cond-mat/9905130 Materials Science +cond-mat/9905132 Strongly Correlated Electrons +cond-mat/9905133 Strongly Correlated Electrons +cond-mat/9905134 Statistical Mechanics +cond-mat/9905135 Mesoscale and Nanoscale Physics +cond-mat/9905137 Superconductivity +cond-mat/9905139 Superconductivity +cond-mat/9905143 Statistical Mechanics +cond-mat/9905145 Strongly Correlated Electrons +cond-mat/9905147 Strongly Correlated Electrons +cond-mat/9905148 Strongly Correlated Electrons +cond-mat/9905149 Strongly Correlated Electrons +cond-mat/9905150 Materials Science +cond-mat/9905151 Materials Science +cond-mat/9905152 Strongly Correlated Electrons +cond-mat/9905154 +cond-mat/9905155 Mesoscale and Nanoscale Physics +cond-mat/9905157 Strongly Correlated Electrons +cond-mat/9905158 Soft Condensed Matter +cond-mat/9905161 +cond-mat/9905162 Superconductivity +cond-mat/9905163 +cond-mat/9905164 Disordered Systems and Neural Networks +cond-mat/9905165 Strongly Correlated Electrons +cond-mat/9905166 Strongly Correlated Electrons +cond-mat/9905167 Mesoscale and Nanoscale Physics +cond-mat/9905170 Superconductivity +cond-mat/9905171 +cond-mat/9905172 Superconductivity +cond-mat/9905173 Soft Condensed Matter +cond-mat/9905174 Superconductivity +cond-mat/9905177 Mesoscale and Nanoscale Physics +cond-mat/9905178 Statistical Mechanics +cond-mat/9905179 Statistical Mechanics +cond-mat/9905180 Superconductivity +cond-mat/9905181 Superconductivity +cond-mat/9905182 Soft Condensed Matter +cond-mat/9905183 Soft Condensed Matter +cond-mat/9905185 Superconductivity +cond-mat/9905186 Materials Science +cond-mat/9905187 Materials Science +cond-mat/9905188 +cond-mat/9905189 Disordered Systems and Neural Networks +cond-mat/9905191 Statistical Mechanics +cond-mat/9905193 Mesoscale and Nanoscale Physics +cond-mat/9905194 Mesoscale and Nanoscale Physics +cond-mat/9905197 Soft Condensed Matter +cond-mat/9905198 Statistical Mechanics +cond-mat/9905202 Statistical Mechanics +cond-mat/9905203 Statistical Mechanics +cond-mat/9905204 Materials Science +cond-mat/9905206 Soft Condensed Matter +cond-mat/9905207 Statistical Mechanics +cond-mat/9905211 Strongly Correlated Electrons +cond-mat/9905212 Statistical Mechanics +cond-mat/9905214 +cond-mat/9905215 Statistical Mechanics +cond-mat/9905216 +cond-mat/9905217 +cond-mat/9905220 Superconductivity +cond-mat/9905223 Superconductivity +cond-mat/9905224 Statistical Mechanics +cond-mat/9905225 Materials Science +cond-mat/9905227 Superconductivity +cond-mat/9905228 Strongly Correlated Electrons +cond-mat/9905229 Statistical Mechanics +cond-mat/9905230 Mesoscale and Nanoscale Physics +cond-mat/9905232 Statistical Mechanics +cond-mat/9905235 Mesoscale and Nanoscale Physics +cond-mat/9905238 Soft Condensed Matter +cond-mat/9905240 Disordered Systems and Neural Networks +cond-mat/9905241 +cond-mat/9905242 Strongly Correlated Electrons +cond-mat/9905244 Soft Condensed Matter +cond-mat/9905245 +cond-mat/9905247 Disordered Systems and Neural Networks +cond-mat/9905248 Disordered Systems and Neural Networks +cond-mat/9905249 Mesoscale and Nanoscale Physics +cond-mat/9905250 Materials Science +cond-mat/9905251 Soft Condensed Matter +cond-mat/9905254 Soft Condensed Matter +cond-mat/9905256 +cond-mat/9905260 Strongly Correlated Electrons +cond-mat/9905262 Superconductivity +cond-mat/9905263 +cond-mat/9905264 Materials Science +cond-mat/9905266 Soft Condensed Matter +cond-mat/9905267 Mesoscale and Nanoscale Physics +cond-mat/9905269 Strongly Correlated Electrons +cond-mat/9905270 Statistical Mechanics +cond-mat/9905271 Strongly Correlated Electrons +cond-mat/9905272 Superconductivity +cond-mat/9905273 Mesoscale and Nanoscale Physics +cond-mat/9905274 Superconductivity +cond-mat/9905275 +cond-mat/9905277 +cond-mat/9905278 +cond-mat/9905279 +cond-mat/9905280 Materials Science +cond-mat/9905281 +cond-mat/9905283 Mesoscale and Nanoscale Physics +cond-mat/9905284 Statistical Mechanics +cond-mat/9905285 Strongly Correlated Electrons +cond-mat/9905288 Mesoscale and Nanoscale Physics +cond-mat/9905289 Soft Condensed Matter +cond-mat/9905291 Statistical Mechanics +cond-mat/9905293 Statistical Mechanics +cond-mat/9905295 Statistical Mechanics +cond-mat/9905296 Superconductivity +cond-mat/9905297 Disordered Systems and Neural Networks +cond-mat/9905299 Statistical Mechanics +cond-mat/9905300 Statistical Mechanics +cond-mat/9905301 Statistical Mechanics +cond-mat/9905302 Soft Condensed Matter +cond-mat/9905303 Statistical Mechanics +cond-mat/9905304 Mesoscale and Nanoscale Physics +cond-mat/9905305 Statistical Mechanics +cond-mat/9905306 Soft Condensed Matter +cond-mat/9905307 +cond-mat/9905311 Statistical Mechanics +cond-mat/9905312 Strongly Correlated Electrons +cond-mat/9905315 Statistical Mechanics +cond-mat/9905316 Strongly Correlated Electrons +cond-mat/9905319 +cond-mat/9905321 Strongly Correlated Electrons +cond-mat/9905322 Disordered Systems and Neural Networks +cond-mat/9905324 Statistical Mechanics +cond-mat/9905325 Strongly Correlated Electrons +cond-mat/9905326 Disordered Systems and Neural Networks +cond-mat/9905328 +cond-mat/9905330 Statistical Mechanics +cond-mat/9905331 Strongly Correlated Electrons +cond-mat/9905332 Superconductivity +cond-mat/9905333 Mesoscale and Nanoscale Physics +cond-mat/9905334 Mesoscale and Nanoscale Physics +cond-mat/9905335 +cond-mat/9905336 Soft Condensed Matter +cond-mat/9905339 +cond-mat/9905340 Strongly Correlated Electrons +cond-mat/9905341 Materials Science +cond-mat/9905342 Superconductivity +cond-mat/9905343 Statistical Mechanics +cond-mat/9905344 Superconductivity +cond-mat/9905345 +cond-mat/9905346 Mesoscale and Nanoscale Physics +cond-mat/9905347 +cond-mat/9905348 Strongly Correlated Electrons +cond-mat/9905349 Superconductivity +cond-mat/9905350 Mesoscale and Nanoscale Physics +cond-mat/9905351 Strongly Correlated Electrons +cond-mat/9905352 Statistical Mechanics +cond-mat/9905353 Mesoscale and Nanoscale Physics +cond-mat/9905354 Disordered Systems and Neural Networks +cond-mat/9905355 Soft Condensed Matter +cond-mat/9905356 +cond-mat/9905357 +cond-mat/9905358 +cond-mat/9905359 Statistical Mechanics +cond-mat/9905361 Strongly Correlated Electrons +cond-mat/9905362 Superconductivity +cond-mat/9905364 Disordered Systems and Neural Networks +cond-mat/9905365 Mesoscale and Nanoscale Physics +cond-mat/9905368 Mesoscale and Nanoscale Physics +cond-mat/9905370 Superconductivity +cond-mat/9905371 Mesoscale and Nanoscale Physics +cond-mat/9905372 Strongly Correlated Electrons +cond-mat/9905373 Strongly Correlated Electrons +cond-mat/9905374 +cond-mat/9905375 Statistical Mechanics +cond-mat/9905376 Materials Science +cond-mat/9905377 Strongly Correlated Electrons +cond-mat/9905378 Statistical Mechanics +cond-mat/9905379 Disordered Systems and Neural Networks +cond-mat/9905381 Statistical Mechanics +cond-mat/9905382 Statistical Mechanics +cond-mat/9905383 Mesoscale and Nanoscale Physics +cond-mat/9905385 Disordered Systems and Neural Networks +cond-mat/9905387 Statistical Mechanics +cond-mat/9905392 +cond-mat/9905395 Statistical Mechanics +cond-mat/9905396 Strongly Correlated Electrons +cond-mat/9905397 +cond-mat/9905398 Mesoscale and Nanoscale Physics +cond-mat/9905399 Strongly Correlated Electrons +cond-mat/9905401 Statistical Mechanics +cond-mat/9905402 Mesoscale and Nanoscale Physics +cond-mat/9905403 +cond-mat/9905404 Statistical Mechanics +cond-mat/9905405 Strongly Correlated Electrons +cond-mat/9905408 Strongly Correlated Electrons +cond-mat/9905409 +cond-mat/9905410 Disordered Systems and Neural Networks +cond-mat/9905411 +cond-mat/9905412 Disordered Systems and Neural Networks +cond-mat/9905415 Strongly Correlated Electrons +cond-mat/9905416 Strongly Correlated Electrons +cond-mat/9905417 Materials Science +cond-mat/9905419 Materials Science +cond-mat/9905420 Soft Condensed Matter +cond-mat/9905422 Materials Science +cond-mat/9905423 +cond-mat/9905424 Superconductivity +cond-mat/9905425 +cond-mat/9905427 Superconductivity +cond-mat/9905428 Superconductivity +cond-mat/9905429 Strongly Correlated Electrons +cond-mat/9905431 Statistical Mechanics +cond-mat/9905437 Materials Science +cond-mat/9905438 Disordered Systems and Neural Networks +cond-mat/9906002 Statistical Mechanics +cond-mat/9906004 Strongly Correlated Electrons +cond-mat/9906007 Strongly Correlated Electrons +cond-mat/9906008 Statistical Mechanics +cond-mat/9906010 Strongly Correlated Electrons +cond-mat/9906011 Disordered Systems and Neural Networks +cond-mat/9906012 Mesoscale and Nanoscale Physics +cond-mat/9906019 Superconductivity +cond-mat/9906020 Disordered Systems and Neural Networks +cond-mat/9906021 Soft Condensed Matter +cond-mat/9906022 Superconductivity +cond-mat/9906025 Materials Science +cond-mat/9906026 Strongly Correlated Electrons +cond-mat/9906028 Materials Science +cond-mat/9906029 Disordered Systems and Neural Networks +cond-mat/9906030 Soft Condensed Matter +cond-mat/9906031 Statistical Mechanics +cond-mat/9906033 +cond-mat/9906036 Statistical Mechanics +cond-mat/9906037 Statistical Mechanics +cond-mat/9906038 Soft Condensed Matter +cond-mat/9906039 Statistical Mechanics +cond-mat/9906041 Strongly Correlated Electrons +cond-mat/9906042 Strongly Correlated Electrons +cond-mat/9906043 Disordered Systems and Neural Networks +cond-mat/9906046 Disordered Systems and Neural Networks +cond-mat/9906047 +cond-mat/9906049 Mesoscale and Nanoscale Physics +cond-mat/9906051 Superconductivity +cond-mat/9906052 Strongly Correlated Electrons +cond-mat/9906054 Strongly Correlated Electrons +cond-mat/9906055 Mesoscale and Nanoscale Physics +cond-mat/9906056 Strongly Correlated Electrons +cond-mat/9906057 Materials Science +cond-mat/9906059 Statistical Mechanics +cond-mat/9906060 Superconductivity +cond-mat/9906061 Statistical Mechanics +cond-mat/9906062 Statistical Mechanics +cond-mat/9906063 +cond-mat/9906064 Mesoscale and Nanoscale Physics +cond-mat/9906065 Mesoscale and Nanoscale Physics +cond-mat/9906066 +cond-mat/9906071 Mesoscale and Nanoscale Physics +cond-mat/9906072 Strongly Correlated Electrons +cond-mat/9906073 Mesoscale and Nanoscale Physics +cond-mat/9906074 Strongly Correlated Electrons +cond-mat/9906080 Mesoscale and Nanoscale Physics +cond-mat/9906081 Statistical Mechanics +cond-mat/9906083 Strongly Correlated Electrons +cond-mat/9906084 Statistical Mechanics +cond-mat/9906085 +cond-mat/9906087 Superconductivity +cond-mat/9906089 Statistical Mechanics +cond-mat/9906091 Strongly Correlated Electrons +cond-mat/9906092 Statistical Mechanics +cond-mat/9906093 Superconductivity +cond-mat/9906094 Statistical Mechanics +cond-mat/9906095 Disordered Systems and Neural Networks +cond-mat/9906096 Superconductivity +cond-mat/9906098 Disordered Systems and Neural Networks +cond-mat/9906100 Statistical Mechanics +cond-mat/9906102 Soft Condensed Matter +cond-mat/9906104 Superconductivity +cond-mat/9906105 Superconductivity +cond-mat/9906106 Soft Condensed Matter +cond-mat/9906107 +cond-mat/9906110 Mesoscale and Nanoscale Physics +cond-mat/9906113 Statistical Mechanics +cond-mat/9906114 Statistical Mechanics +cond-mat/9906115 Superconductivity +cond-mat/9906116 Statistical Mechanics +cond-mat/9906117 Statistical Mechanics +cond-mat/9906119 Materials Science +cond-mat/9906124 Superconductivity +cond-mat/9906125 Soft Condensed Matter +cond-mat/9906126 Strongly Correlated Electrons +cond-mat/9906127 Statistical Mechanics +cond-mat/9906130 Strongly Correlated Electrons +cond-mat/9906132 +cond-mat/9906133 Statistical Mechanics +cond-mat/9906134 +cond-mat/9906135 Disordered Systems and Neural Networks +cond-mat/9906136 Superconductivity +cond-mat/9906137 Mesoscale and Nanoscale Physics +cond-mat/9906138 Materials Science +cond-mat/9906139 Statistical Mechanics +cond-mat/9906140 Superconductivity +cond-mat/9906141 Superconductivity +cond-mat/9906142 Superconductivity +cond-mat/9906143 Superconductivity +cond-mat/9906144 +cond-mat/9906147 Mesoscale and Nanoscale Physics +cond-mat/9906148 Materials Science +cond-mat/9906150 Strongly Correlated Electrons +cond-mat/9906151 Mesoscale and Nanoscale Physics +cond-mat/9906152 Superconductivity +cond-mat/9906153 Strongly Correlated Electrons +cond-mat/9906154 Statistical Mechanics +cond-mat/9906155 +cond-mat/9906156 Superconductivity +cond-mat/9906158 Statistical Mechanics +cond-mat/9906159 Strongly Correlated Electrons +cond-mat/9906160 Strongly Correlated Electrons +cond-mat/9906162 Materials Science +cond-mat/9906163 +cond-mat/9906165 +cond-mat/9906168 Soft Condensed Matter +cond-mat/9906169 Strongly Correlated Electrons +cond-mat/9906170 Strongly Correlated Electrons +cond-mat/9906172 Soft Condensed Matter +cond-mat/9906175 Statistical Mechanics +cond-mat/9906176 Soft Condensed Matter +cond-mat/9906178 Mesoscale and Nanoscale Physics +cond-mat/9906182 Statistical Mechanics +cond-mat/9906185 Strongly Correlated Electrons +cond-mat/9906187 Superconductivity +cond-mat/9906188 Disordered Systems and Neural Networks +cond-mat/9906190 Disordered Systems and Neural Networks +cond-mat/9906191 Mesoscale and Nanoscale Physics +cond-mat/9906192 Mesoscale and Nanoscale Physics +cond-mat/9906193 Mesoscale and Nanoscale Physics +cond-mat/9906194 Strongly Correlated Electrons +cond-mat/9906195 Statistical Mechanics +cond-mat/9906196 Statistical Mechanics +cond-mat/9906197 Disordered Systems and Neural Networks +cond-mat/9906198 Strongly Correlated Electrons +cond-mat/9906200 +cond-mat/9906201 Disordered Systems and Neural Networks +cond-mat/9906202 Statistical Mechanics +cond-mat/9906203 +cond-mat/9906204 Soft Condensed Matter +cond-mat/9906209 Materials Science +cond-mat/9906210 Superconductivity +cond-mat/9906211 Superconductivity +cond-mat/9906212 Mesoscale and Nanoscale Physics +cond-mat/9906213 +cond-mat/9906214 +cond-mat/9906216 Materials Science +cond-mat/9906218 Statistical Mechanics +cond-mat/9906220 Statistical Mechanics +cond-mat/9906221 Mesoscale and Nanoscale Physics +cond-mat/9906222 Other Condensed Matter +cond-mat/9906224 Statistical Mechanics +cond-mat/9906226 Mesoscale and Nanoscale Physics +cond-mat/9906228 Superconductivity +cond-mat/9906231 Strongly Correlated Electrons +cond-mat/9906232 Soft Condensed Matter +cond-mat/9906234 Disordered Systems and Neural Networks +cond-mat/9906240 Strongly Correlated Electrons +cond-mat/9906241 +cond-mat/9906242 Strongly Correlated Electrons +cond-mat/9906243 Strongly Correlated Electrons +cond-mat/9906244 Strongly Correlated Electrons +cond-mat/9906245 Disordered Systems and Neural Networks +cond-mat/9906246 +cond-mat/9906247 Disordered Systems and Neural Networks +cond-mat/9906248 Disordered Systems and Neural Networks +cond-mat/9906249 Statistical Mechanics +cond-mat/9906250 Statistical Mechanics +cond-mat/9906252 Materials Science +cond-mat/9906253 Strongly Correlated Electrons +cond-mat/9906255 Mesoscale and Nanoscale Physics +cond-mat/9906257 Mesoscale and Nanoscale Physics +cond-mat/9906258 +cond-mat/9906260 Strongly Correlated Electrons +cond-mat/9906261 Mesoscale and Nanoscale Physics +cond-mat/9906262 Statistical Mechanics +cond-mat/9906264 Mesoscale and Nanoscale Physics +cond-mat/9906265 Strongly Correlated Electrons +cond-mat/9906267 Mesoscale and Nanoscale Physics +cond-mat/9906269 Mesoscale and Nanoscale Physics +cond-mat/9906272 Disordered Systems and Neural Networks +cond-mat/9906273 Strongly Correlated Electrons +cond-mat/9906274 Disordered Systems and Neural Networks +cond-mat/9906275 Statistical Mechanics +cond-mat/9906277 Soft Condensed Matter +cond-mat/9906278 Soft Condensed Matter +cond-mat/9906280 Soft Condensed Matter +cond-mat/9906281 Materials Science +cond-mat/9906282 Mesoscale and Nanoscale Physics +cond-mat/9906283 Statistical Mechanics +cond-mat/9906284 Soft Condensed Matter +cond-mat/9906285 Mesoscale and Nanoscale Physics +cond-mat/9906286 Soft Condensed Matter +cond-mat/9906288 +cond-mat/9906290 Superconductivity +cond-mat/9906291 +cond-mat/9906292 +cond-mat/9906293 Materials Science +cond-mat/9906294 +cond-mat/9906295 Superconductivity +cond-mat/9906297 Superconductivity +cond-mat/9906298 Statistical Mechanics +cond-mat/9906300 Strongly Correlated Electrons +cond-mat/9906304 Mesoscale and Nanoscale Physics +cond-mat/9906306 Strongly Correlated Electrons +cond-mat/9906307 Strongly Correlated Electrons +cond-mat/9906308 Soft Condensed Matter +cond-mat/9906309 Statistical Mechanics +cond-mat/9906310 Superconductivity +cond-mat/9906312 Statistical Mechanics +cond-mat/9906313 +cond-mat/9906314 Strongly Correlated Electrons +cond-mat/9906316 Strongly Correlated Electrons +cond-mat/9906317 Statistical Mechanics +cond-mat/9906318 Statistical Mechanics +cond-mat/9906319 Statistical Mechanics +cond-mat/9906320 Mesoscale and Nanoscale Physics +cond-mat/9906322 Disordered Systems and Neural Networks +cond-mat/9906323 Disordered Systems and Neural Networks +cond-mat/9906324 Strongly Correlated Electrons +cond-mat/9906325 Soft Condensed Matter +cond-mat/9906326 +cond-mat/9906327 Superconductivity +cond-mat/9906328 Superconductivity +cond-mat/9906329 Statistical Mechanics +cond-mat/9906330 Mesoscale and Nanoscale Physics +cond-mat/9906331 Strongly Correlated Electrons +cond-mat/9906332 Soft Condensed Matter +cond-mat/9906333 Strongly Correlated Electrons +cond-mat/9906334 +cond-mat/9906335 Superconductivity +cond-mat/9906336 Soft Condensed Matter +cond-mat/9906337 Statistical Mechanics +cond-mat/9906338 Materials Science +cond-mat/9906339 Soft Condensed Matter +cond-mat/9906340 Disordered Systems and Neural Networks +cond-mat/9906341 Mesoscale and Nanoscale Physics +cond-mat/9906342 +cond-mat/9906343 Statistical Mechanics +cond-mat/9906344 Statistical Mechanics +cond-mat/9906345 Strongly Correlated Electrons +cond-mat/9906349 Strongly Correlated Electrons +cond-mat/9906351 Statistical Mechanics +cond-mat/9906352 Soft Condensed Matter +cond-mat/9906354 Mesoscale and Nanoscale Physics +cond-mat/9906355 Mesoscale and Nanoscale Physics +cond-mat/9906356 Disordered Systems and Neural Networks +cond-mat/9906357 +cond-mat/9906359 +cond-mat/9906361 Mesoscale and Nanoscale Physics +cond-mat/9906362 Superconductivity +cond-mat/9906364 Statistical Mechanics +cond-mat/9906366 Superconductivity +cond-mat/9906370 Materials Science +cond-mat/9906371 Superconductivity +cond-mat/9906373 Statistical Mechanics +cond-mat/9906374 +cond-mat/9906375 Materials Science +cond-mat/9906376 Statistical Mechanics +cond-mat/9906377 Statistical Mechanics +cond-mat/9906380 Materials Science +cond-mat/9906381 Statistical Mechanics +cond-mat/9906382 Materials Science +cond-mat/9906383 Strongly Correlated Electrons +cond-mat/9906384 Superconductivity +cond-mat/9906387 Mesoscale and Nanoscale Physics +cond-mat/9906388 Soft Condensed Matter +cond-mat/9906389 Soft Condensed Matter +cond-mat/9906390 Mesoscale and Nanoscale Physics +cond-mat/9906391 Statistical Mechanics +cond-mat/9906392 Superconductivity +cond-mat/9906393 Mesoscale and Nanoscale Physics +cond-mat/9906394 Superconductivity +cond-mat/9906396 Mesoscale and Nanoscale Physics +cond-mat/9906397 +cond-mat/9906399 Strongly Correlated Electrons +cond-mat/9906401 Strongly Correlated Electrons +cond-mat/9906403 Materials Science +cond-mat/9906404 Statistical Mechanics +cond-mat/9906406 Mesoscale and Nanoscale Physics +cond-mat/9906409 Strongly Correlated Electrons +cond-mat/9906411 +cond-mat/9906414 Statistical Mechanics +cond-mat/9906417 Superconductivity +cond-mat/9906418 Superconductivity +cond-mat/9906420 Soft Condensed Matter +cond-mat/9906421 Statistical Mechanics +cond-mat/9906422 Superconductivity +cond-mat/9906423 Statistical Mechanics +cond-mat/9906424 Materials Science +cond-mat/9906425 Strongly Correlated Electrons +cond-mat/9906426 Statistical Mechanics +cond-mat/9906429 Statistical Mechanics +cond-mat/9906430 Statistical Mechanics +cond-mat/9906431 Mesoscale and Nanoscale Physics +cond-mat/9906432 Superconductivity +cond-mat/9906433 Materials Science +cond-mat/9906434 Statistical Mechanics +cond-mat/9906435 Statistical Mechanics +cond-mat/9906436 Statistical Mechanics +cond-mat/9906437 Strongly Correlated Electrons +cond-mat/9906438 Statistical Mechanics +cond-mat/9906439 Mesoscale and Nanoscale Physics +cond-mat/9906445 Disordered Systems and Neural Networks +cond-mat/9906447 Statistical Mechanics +cond-mat/9906449 Superconductivity +cond-mat/9906450 Mesoscale and Nanoscale Physics +cond-mat/9906451 Statistical Mechanics +cond-mat/9906452 Superconductivity +cond-mat/9906454 Mesoscale and Nanoscale Physics +cond-mat/9906456 Strongly Correlated Electrons +cond-mat/9907001 Mesoscale and Nanoscale Physics +cond-mat/9907003 Soft Condensed Matter +cond-mat/9907004 Superconductivity +cond-mat/9907006 Superconductivity +cond-mat/9907007 Mesoscale and Nanoscale Physics +cond-mat/9907008 Strongly Correlated Electrons +cond-mat/9907009 +cond-mat/9907010 Materials Science +cond-mat/9907012 Statistical Mechanics +cond-mat/9907013 Statistical Mechanics +cond-mat/9907015 Statistical Mechanics +cond-mat/9907016 Soft Condensed Matter +cond-mat/9907018 Mesoscale and Nanoscale Physics +cond-mat/9907020 +cond-mat/9907021 Superconductivity +cond-mat/9907023 +cond-mat/9907028 Superconductivity +cond-mat/9907029 Statistical Mechanics +cond-mat/9907030 Superconductivity +cond-mat/9907031 Materials Science +cond-mat/9907032 Strongly Correlated Electrons +cond-mat/9907033 Superconductivity +cond-mat/9907034 Strongly Correlated Electrons +cond-mat/9907037 Strongly Correlated Electrons +cond-mat/9907039 Superconductivity +cond-mat/9907040 Soft Condensed Matter +cond-mat/9907041 Mesoscale and Nanoscale Physics +cond-mat/9907043 Superconductivity +cond-mat/9907044 Disordered Systems and Neural Networks +cond-mat/9907045 Statistical Mechanics +cond-mat/9907046 Superconductivity +cond-mat/9907048 Strongly Correlated Electrons +cond-mat/9907049 Strongly Correlated Electrons +cond-mat/9907050 Strongly Correlated Electrons +cond-mat/9907051 Superconductivity +cond-mat/9907054 Superconductivity +cond-mat/9907055 Mesoscale and Nanoscale Physics +cond-mat/9907056 Strongly Correlated Electrons +cond-mat/9907057 Strongly Correlated Electrons +cond-mat/9907058 Strongly Correlated Electrons +cond-mat/9907059 Soft Condensed Matter +cond-mat/9907062 Superconductivity +cond-mat/9907063 +cond-mat/9907065 +cond-mat/9907066 Mesoscale and Nanoscale Physics +cond-mat/9907067 Disordered Systems and Neural Networks +cond-mat/9907069 Statistical Mechanics +cond-mat/9907070 Mesoscale and Nanoscale Physics +cond-mat/9907071 Superconductivity +cond-mat/9907074 Disordered Systems and Neural Networks +cond-mat/9907075 Disordered Systems and Neural Networks +cond-mat/9907076 Statistical Mechanics +cond-mat/9907077 +cond-mat/9907078 Mesoscale and Nanoscale Physics +cond-mat/9907079 +cond-mat/9907084 Disordered Systems and Neural Networks +cond-mat/9907085 Disordered Systems and Neural Networks +cond-mat/9907088 Disordered Systems and Neural Networks +cond-mat/9907089 Statistical Mechanics +cond-mat/9907090 Disordered Systems and Neural Networks +cond-mat/9907092 Mesoscale and Nanoscale Physics +cond-mat/9907093 Superconductivity +cond-mat/9907094 Strongly Correlated Electrons +cond-mat/9907096 Superconductivity +cond-mat/9907098 Mesoscale and Nanoscale Physics +cond-mat/9907099 Materials Science +cond-mat/9907100 Materials Science +cond-mat/9907102 +cond-mat/9907105 Superconductivity +cond-mat/9907106 Statistical Mechanics +cond-mat/9907107 Mesoscale and Nanoscale Physics +cond-mat/9907108 Strongly Correlated Electrons +cond-mat/9907109 Mesoscale and Nanoscale Physics +cond-mat/9907110 Soft Condensed Matter +cond-mat/9907111 Superconductivity +cond-mat/9907112 Statistical Mechanics +cond-mat/9907114 Materials Science +cond-mat/9907115 Strongly Correlated Electrons +cond-mat/9907117 Strongly Correlated Electrons +cond-mat/9907119 Mesoscale and Nanoscale Physics +cond-mat/9907120 Soft Condensed Matter +cond-mat/9907121 Strongly Correlated Electrons +cond-mat/9907122 Disordered Systems and Neural Networks +cond-mat/9907123 +cond-mat/9907124 Mesoscale and Nanoscale Physics +cond-mat/9907125 Disordered Systems and Neural Networks +cond-mat/9907126 Disordered Systems and Neural Networks +cond-mat/9907127 Mesoscale and Nanoscale Physics +cond-mat/9907128 Strongly Correlated Electrons +cond-mat/9907129 Mesoscale and Nanoscale Physics +cond-mat/9907130 Superconductivity +cond-mat/9907131 Superconductivity +cond-mat/9907132 Disordered Systems and Neural Networks +cond-mat/9907134 Statistical Mechanics +cond-mat/9907135 Disordered Systems and Neural Networks +cond-mat/9907136 Superconductivity +cond-mat/9907137 Strongly Correlated Electrons +cond-mat/9907138 +cond-mat/9907139 Strongly Correlated Electrons +cond-mat/9907142 Strongly Correlated Electrons +cond-mat/9907144 +cond-mat/9907147 +cond-mat/9907148 Mesoscale and Nanoscale Physics +cond-mat/9907149 Statistical Mechanics +cond-mat/9907150 Materials Science +cond-mat/9907151 Mesoscale and Nanoscale Physics +cond-mat/9907152 +cond-mat/9907153 Mesoscale and Nanoscale Physics +cond-mat/9907154 Mesoscale and Nanoscale Physics +cond-mat/9907155 Soft Condensed Matter +cond-mat/9907157 Statistical Mechanics +cond-mat/9907158 Disordered Systems and Neural Networks +cond-mat/9907160 +cond-mat/9907161 Statistical Mechanics +cond-mat/9907164 +cond-mat/9907166 Strongly Correlated Electrons +cond-mat/9907167 Mesoscale and Nanoscale Physics +cond-mat/9907168 Superconductivity +cond-mat/9907170 Mesoscale and Nanoscale Physics +cond-mat/9907173 Materials Science +cond-mat/9907174 Disordered Systems and Neural Networks +cond-mat/9907175 Mesoscale and Nanoscale Physics +cond-mat/9907177 Statistical Mechanics +cond-mat/9907178 Strongly Correlated Electrons +cond-mat/9907180 +cond-mat/9907181 +cond-mat/9907182 Superconductivity +cond-mat/9907183 Superconductivity +cond-mat/9907184 +cond-mat/9907186 Mesoscale and Nanoscale Physics +cond-mat/9907188 +cond-mat/9907189 Superconductivity +cond-mat/9907192 Superconductivity +cond-mat/9907194 Superconductivity +cond-mat/9907195 +cond-mat/9907197 +cond-mat/9907200 Strongly Correlated Electrons +cond-mat/9907201 Statistical Mechanics +cond-mat/9907202 +cond-mat/9907204 Materials Science +cond-mat/9907205 Mesoscale and Nanoscale Physics +cond-mat/9907206 Strongly Correlated Electrons +cond-mat/9907209 Soft Condensed Matter +cond-mat/9907210 Materials Science +cond-mat/9907212 Mesoscale and Nanoscale Physics +cond-mat/9907215 Strongly Correlated Electrons +cond-mat/9907218 Strongly Correlated Electrons +cond-mat/9907220 Strongly Correlated Electrons +cond-mat/9907221 Strongly Correlated Electrons +cond-mat/9907222 Statistical Mechanics +cond-mat/9907223 Strongly Correlated Electrons +cond-mat/9907224 +cond-mat/9907227 +cond-mat/9907228 Superconductivity +cond-mat/9907229 Materials Science +cond-mat/9907230 Superconductivity +cond-mat/9907231 Superconductivity +cond-mat/9907233 +cond-mat/9907235 Disordered Systems and Neural Networks +cond-mat/9907236 Mesoscale and Nanoscale Physics +cond-mat/9907238 Disordered Systems and Neural Networks +cond-mat/9907240 Mesoscale and Nanoscale Physics +cond-mat/9907241 Statistical Mechanics +cond-mat/9907243 Strongly Correlated Electrons +cond-mat/9907244 Mesoscale and Nanoscale Physics +cond-mat/9907246 Disordered Systems and Neural Networks +cond-mat/9907248 Statistical Mechanics +cond-mat/9907251 Superconductivity +cond-mat/9907254 Strongly Correlated Electrons +cond-mat/9907255 Strongly Correlated Electrons +cond-mat/9907256 Strongly Correlated Electrons +cond-mat/9907258 Strongly Correlated Electrons +cond-mat/9907259 Statistical Mechanics +cond-mat/9907260 Strongly Correlated Electrons +cond-mat/9907261 Soft Condensed Matter +cond-mat/9907263 Mesoscale and Nanoscale Physics +cond-mat/9907264 Strongly Correlated Electrons +cond-mat/9907265 Superconductivity +cond-mat/9907267 Superconductivity +cond-mat/9907268 Mesoscale and Nanoscale Physics +cond-mat/9907269 Statistical Mechanics +cond-mat/9907272 Superconductivity +cond-mat/9907275 Statistical Mechanics +cond-mat/9907276 Superconductivity +cond-mat/9907277 Superconductivity +cond-mat/9907278 +cond-mat/9907279 Mesoscale and Nanoscale Physics +cond-mat/9907280 Mesoscale and Nanoscale Physics +cond-mat/9907281 Statistical Mechanics +cond-mat/9907282 Superconductivity +cond-mat/9907283 +cond-mat/9907287 Strongly Correlated Electrons +cond-mat/9907289 Materials Science +cond-mat/9907291 Statistical Mechanics +cond-mat/9907292 Strongly Correlated Electrons +cond-mat/9907293 Soft Condensed Matter +cond-mat/9907295 Statistical Mechanics +cond-mat/9907296 Statistical Mechanics +cond-mat/9907298 Soft Condensed Matter +cond-mat/9907299 Soft Condensed Matter +cond-mat/9907301 Strongly Correlated Electrons +cond-mat/9907302 Disordered Systems and Neural Networks +cond-mat/9907303 Strongly Correlated Electrons +cond-mat/9907304 Strongly Correlated Electrons +cond-mat/9907305 Statistical Mechanics +cond-mat/9907307 Statistical Mechanics +cond-mat/9907310 Materials Science +cond-mat/9907312 Superconductivity +cond-mat/9907313 Soft Condensed Matter +cond-mat/9907314 Statistical Mechanics +cond-mat/9907315 Strongly Correlated Electrons +cond-mat/9907316 Superconductivity +cond-mat/9907318 +cond-mat/9907319 Disordered Systems and Neural Networks +cond-mat/9907320 Statistical Mechanics +cond-mat/9907321 Mesoscale and Nanoscale Physics +cond-mat/9907323 Materials Science +cond-mat/9907324 Statistical Mechanics +cond-mat/9907325 Statistical Mechanics +cond-mat/9907326 Strongly Correlated Electrons +cond-mat/9907329 Materials Science +cond-mat/9907331 Superconductivity +cond-mat/9907332 Superconductivity +cond-mat/9907333 Statistical Mechanics +cond-mat/9907334 Statistical Mechanics +cond-mat/9907338 Superconductivity +cond-mat/9907340 Disordered Systems and Neural Networks +cond-mat/9907341 Superconductivity +cond-mat/9907342 Statistical Mechanics +cond-mat/9907343 Disordered Systems and Neural Networks +cond-mat/9907344 Statistical Mechanics +cond-mat/9907346 Materials Science +cond-mat/9907347 Superconductivity +cond-mat/9907349 Superconductivity +cond-mat/9907351 Soft Condensed Matter +cond-mat/9907353 Statistical Mechanics +cond-mat/9907354 Strongly Correlated Electrons +cond-mat/9907355 Superconductivity +cond-mat/9907356 Mesoscale and Nanoscale Physics +cond-mat/9907357 Materials Science +cond-mat/9907358 Superconductivity +cond-mat/9907359 Statistical Mechanics +cond-mat/9907360 Materials Science +cond-mat/9907362 Strongly Correlated Electrons +cond-mat/9907363 Strongly Correlated Electrons +cond-mat/9907367 Mesoscale and Nanoscale Physics +cond-mat/9907368 Materials Science +cond-mat/9907370 Statistical Mechanics +cond-mat/9907371 +cond-mat/9907374 Mesoscale and Nanoscale Physics +cond-mat/9907375 Strongly Correlated Electrons +cond-mat/9907376 Strongly Correlated Electrons +cond-mat/9907377 Mesoscale and Nanoscale Physics +cond-mat/9907378 Disordered Systems and Neural Networks +cond-mat/9907379 Mesoscale and Nanoscale Physics +cond-mat/9907380 Soft Condensed Matter +cond-mat/9907382 Strongly Correlated Electrons +cond-mat/9907383 Statistical Mechanics +cond-mat/9907385 Superconductivity +cond-mat/9907386 Superconductivity +cond-mat/9907388 Statistical Mechanics +cond-mat/9907389 Strongly Correlated Electrons +cond-mat/9907391 Materials Science +cond-mat/9907392 Disordered Systems and Neural Networks +cond-mat/9907393 Strongly Correlated Electrons +cond-mat/9907394 Statistical Mechanics +cond-mat/9907396 Mesoscale and Nanoscale Physics +cond-mat/9907397 Soft Condensed Matter +cond-mat/9907404 Statistical Mechanics +cond-mat/9907405 +cond-mat/9907406 Materials Science +cond-mat/9907408 +cond-mat/9907409 Mesoscale and Nanoscale Physics +cond-mat/9907410 Superconductivity +cond-mat/9907411 +cond-mat/9907413 Mesoscale and Nanoscale Physics +cond-mat/9907414 Statistical Mechanics +cond-mat/9907415 Strongly Correlated Electrons +cond-mat/9907416 Strongly Correlated Electrons +cond-mat/9907418 Disordered Systems and Neural Networks +cond-mat/9907419 Materials Science +cond-mat/9907420 Strongly Correlated Electrons +cond-mat/9907421 Statistical Mechanics +cond-mat/9907422 +cond-mat/9907423 Statistical Mechanics +cond-mat/9907424 Disordered Systems and Neural Networks +cond-mat/9907426 Mesoscale and Nanoscale Physics +cond-mat/9907427 Statistical Mechanics +cond-mat/9907428 Soft Condensed Matter +cond-mat/9907429 Statistical Mechanics +cond-mat/9907431 +cond-mat/9907432 +cond-mat/9907433 Statistical Mechanics +cond-mat/9907434 Statistical Mechanics +cond-mat/9907435 Strongly Correlated Electrons +cond-mat/9907436 +cond-mat/9907437 Strongly Correlated Electrons +cond-mat/9907438 Disordered Systems and Neural Networks +cond-mat/9907440 Strongly Correlated Electrons +cond-mat/9907442 Materials Science +cond-mat/9907443 +cond-mat/9907444 +cond-mat/9907445 Statistical Mechanics +cond-mat/9907446 Statistical Mechanics +cond-mat/9907447 Superconductivity +cond-mat/9907449 +cond-mat/9907450 Disordered Systems and Neural Networks +cond-mat/9907451 Mesoscale and Nanoscale Physics +cond-mat/9907452 Statistical Mechanics +cond-mat/9907453 Mesoscale and Nanoscale Physics +cond-mat/9907454 +cond-mat/9907455 Disordered Systems and Neural Networks +cond-mat/9907456 Statistical Mechanics +cond-mat/9907459 Strongly Correlated Electrons +cond-mat/9907461 Superconductivity +cond-mat/9907462 Superconductivity +cond-mat/9907463 Statistical Mechanics +cond-mat/9907465 Disordered Systems and Neural Networks +cond-mat/9907466 Mesoscale and Nanoscale Physics +cond-mat/9907467 Mesoscale and Nanoscale Physics +cond-mat/9907470 Disordered Systems and Neural Networks +cond-mat/9907471 Materials Science +cond-mat/9907473 Mesoscale and Nanoscale Physics +cond-mat/9907474 Statistical Mechanics +cond-mat/9907477 Statistical Mechanics +cond-mat/9907478 Disordered Systems and Neural Networks +cond-mat/9907479 Strongly Correlated Electrons +cond-mat/9907480 Statistical Mechanics +cond-mat/9907481 Statistical Mechanics +cond-mat/9907482 Statistical Mechanics +cond-mat/9907483 Superconductivity +cond-mat/9907485 Mesoscale and Nanoscale Physics +cond-mat/9907486 Mesoscale and Nanoscale Physics +cond-mat/9907487 Disordered Systems and Neural Networks +cond-mat/9907489 Superconductivity +cond-mat/9907490 Materials Science +cond-mat/9907491 Superconductivity +cond-mat/9907493 Mesoscale and Nanoscale Physics +cond-mat/9907494 Mesoscale and Nanoscale Physics +cond-mat/9907495 +cond-mat/9907498 +cond-mat/9907499 Disordered Systems and Neural Networks +cond-mat/9907501 Superconductivity +cond-mat/9908001 Statistical Mechanics +cond-mat/9908002 Disordered Systems and Neural Networks +cond-mat/9908003 +cond-mat/9908009 Materials Science +cond-mat/9908010 Superconductivity +cond-mat/9908011 Superconductivity +cond-mat/9908014 Strongly Correlated Electrons +cond-mat/9908015 Strongly Correlated Electrons +cond-mat/9908016 Strongly Correlated Electrons +cond-mat/9908018 +cond-mat/9908021 Statistical Mechanics +cond-mat/9908023 Statistical Mechanics +cond-mat/9908024 +cond-mat/9908025 Statistical Mechanics +cond-mat/9908026 Materials Science +cond-mat/9908027 Statistical Mechanics +cond-mat/9908028 Strongly Correlated Electrons +cond-mat/9908029 Mesoscale and Nanoscale Physics +cond-mat/9908030 Disordered Systems and Neural Networks +cond-mat/9908033 Superconductivity +cond-mat/9908036 Strongly Correlated Electrons +cond-mat/9908040 Statistical Mechanics +cond-mat/9908044 Strongly Correlated Electrons +cond-mat/9908045 Strongly Correlated Electrons +cond-mat/9908046 Strongly Correlated Electrons +cond-mat/9908048 Statistical Mechanics +cond-mat/9908049 Materials Science +cond-mat/9908050 Superconductivity +cond-mat/9908051 Statistical Mechanics +cond-mat/9908053 Strongly Correlated Electrons +cond-mat/9908054 Statistical Mechanics +cond-mat/9908057 Mesoscale and Nanoscale Physics +cond-mat/9908058 Superconductivity +cond-mat/9908060 Materials Science +cond-mat/9908061 Mesoscale and Nanoscale Physics +cond-mat/9908064 Statistical Mechanics +cond-mat/9908065 Strongly Correlated Electrons +cond-mat/9908066 Strongly Correlated Electrons +cond-mat/9908067 Statistical Mechanics +cond-mat/9908069 +cond-mat/9908070 Statistical Mechanics +cond-mat/9908072 +cond-mat/9908073 Mesoscale and Nanoscale Physics +cond-mat/9908074 Strongly Correlated Electrons +cond-mat/9908076 Mesoscale and Nanoscale Physics +cond-mat/9908078 Disordered Systems and Neural Networks +cond-mat/9908079 Disordered Systems and Neural Networks +cond-mat/9908081 Superconductivity +cond-mat/9908082 Soft Condensed Matter +cond-mat/9908083 Disordered Systems and Neural Networks +cond-mat/9908084 Soft Condensed Matter +cond-mat/9908086 Statistical Mechanics +cond-mat/9908089 Statistical Mechanics +cond-mat/9908092 Superconductivity +cond-mat/9908095 Statistical Mechanics +cond-mat/9908098 Mesoscale and Nanoscale Physics +cond-mat/9908100 Superconductivity +cond-mat/9908101 Superconductivity +cond-mat/9908102 Statistical Mechanics +cond-mat/9908103 Statistical Mechanics +cond-mat/9908104 Disordered Systems and Neural Networks +cond-mat/9908105 +cond-mat/9908106 Soft Condensed Matter +cond-mat/9908108 Soft Condensed Matter +cond-mat/9908109 Mesoscale and Nanoscale Physics +cond-mat/9908110 Materials Science +cond-mat/9908112 Strongly Correlated Electrons +cond-mat/9908114 Strongly Correlated Electrons +cond-mat/9908115 Superconductivity +cond-mat/9908117 Superconductivity +cond-mat/9908119 Materials Science +cond-mat/9908121 Mesoscale and Nanoscale Physics +cond-mat/9908125 Statistical Mechanics +cond-mat/9908126 Materials Science +cond-mat/9908128 Strongly Correlated Electrons +cond-mat/9908130 Statistical Mechanics +cond-mat/9908132 Disordered Systems and Neural Networks +cond-mat/9908133 Statistical Mechanics +cond-mat/9908134 Statistical Mechanics +cond-mat/9908136 Materials Science +cond-mat/9908139 Mesoscale and Nanoscale Physics +cond-mat/9908141 Soft Condensed Matter +cond-mat/9908144 Strongly Correlated Electrons +cond-mat/9908145 Strongly Correlated Electrons +cond-mat/9908146 Statistical Mechanics +cond-mat/9908147 Statistical Mechanics +cond-mat/9908148 Statistical Mechanics +cond-mat/9908153 Superconductivity +cond-mat/9908154 Mesoscale and Nanoscale Physics +cond-mat/9908155 Statistical Mechanics +cond-mat/9908156 Superconductivity +cond-mat/9908158 Materials Science +cond-mat/9908159 Superconductivity +cond-mat/9908160 +cond-mat/9908164 Statistical Mechanics +cond-mat/9908166 Soft Condensed Matter +cond-mat/9908167 Statistical Mechanics +cond-mat/9908168 Disordered Systems and Neural Networks +cond-mat/9908169 Disordered Systems and Neural Networks +cond-mat/9908170 Soft Condensed Matter +cond-mat/9908171 Soft Condensed Matter +cond-mat/9908172 +cond-mat/9908173 Statistical Mechanics +cond-mat/9908174 +cond-mat/9908176 Superconductivity +cond-mat/9908178 Mesoscale and Nanoscale Physics +cond-mat/9908181 Statistical Mechanics +cond-mat/9908182 Superconductivity +cond-mat/9908183 Strongly Correlated Electrons +cond-mat/9908186 Strongly Correlated Electrons +cond-mat/9908190 Superconductivity +cond-mat/9908193 Mesoscale and Nanoscale Physics +cond-mat/9908194 +cond-mat/9908195 Strongly Correlated Electrons +cond-mat/9908198 Strongly Correlated Electrons +cond-mat/9908199 +cond-mat/9908201 Strongly Correlated Electrons +cond-mat/9908202 Strongly Correlated Electrons +cond-mat/9908203 Strongly Correlated Electrons +cond-mat/9908204 +cond-mat/9908205 Superconductivity +cond-mat/9908206 Superconductivity +cond-mat/9908208 Mesoscale and Nanoscale Physics +cond-mat/9908209 +cond-mat/9908210 Mesoscale and Nanoscale Physics +cond-mat/9908212 Disordered Systems and Neural Networks +cond-mat/9908213 Materials Science +cond-mat/9908214 Superconductivity +cond-mat/9908215 Statistical Mechanics +cond-mat/9908216 Statistical Mechanics +cond-mat/9908217 Superconductivity +cond-mat/9908220 +cond-mat/9908221 Strongly Correlated Electrons +cond-mat/9908222 Superconductivity +cond-mat/9908223 Mesoscale and Nanoscale Physics +cond-mat/9908224 Strongly Correlated Electrons +cond-mat/9908225 Strongly Correlated Electrons +cond-mat/9908226 Statistical Mechanics +cond-mat/9908227 Mesoscale and Nanoscale Physics +cond-mat/9908228 Superconductivity +cond-mat/9908229 +cond-mat/9908231 Mesoscale and Nanoscale Physics +cond-mat/9908232 +cond-mat/9908234 Statistical Mechanics +cond-mat/9908235 Mesoscale and Nanoscale Physics +cond-mat/9908237 Strongly Correlated Electrons +cond-mat/9908239 +cond-mat/9908241 Strongly Correlated Electrons +cond-mat/9908243 Superconductivity +cond-mat/9908244 Superconductivity +cond-mat/9908245 Strongly Correlated Electrons +cond-mat/9908249 +cond-mat/9908250 Strongly Correlated Electrons +cond-mat/9908251 Mesoscale and Nanoscale Physics +cond-mat/9908252 Soft Condensed Matter +cond-mat/9908254 Mesoscale and Nanoscale Physics +cond-mat/9908256 Disordered Systems and Neural Networks +cond-mat/9908257 Superconductivity +cond-mat/9908263 Mesoscale and Nanoscale Physics +cond-mat/9908265 Strongly Correlated Electrons +cond-mat/9908270 Statistical Mechanics +cond-mat/9908271 Strongly Correlated Electrons +cond-mat/9908274 Materials Science +cond-mat/9908275 Disordered Systems and Neural Networks +cond-mat/9908276 +cond-mat/9908280 Superconductivity +cond-mat/9908283 +cond-mat/9908284 Mesoscale and Nanoscale Physics +cond-mat/9908288 Soft Condensed Matter +cond-mat/9908291 +cond-mat/9908292 Superconductivity +cond-mat/9908295 Soft Condensed Matter +cond-mat/9908296 Strongly Correlated Electrons +cond-mat/9908300 Materials Science +cond-mat/9908302 Superconductivity +cond-mat/9908303 Disordered Systems and Neural Networks +cond-mat/9908304 Mesoscale and Nanoscale Physics +cond-mat/9908305 Strongly Correlated Electrons +cond-mat/9908306 Statistical Mechanics +cond-mat/9908310 Mesoscale and Nanoscale Physics +cond-mat/9908315 +cond-mat/9908319 Superconductivity +cond-mat/9908320 Superconductivity +cond-mat/9908321 Statistical Mechanics +cond-mat/9908322 Superconductivity +cond-mat/9908323 Statistical Mechanics +cond-mat/9908324 Superconductivity +cond-mat/9908327 Statistical Mechanics +cond-mat/9908331 Statistical Mechanics +cond-mat/9908332 Superconductivity +cond-mat/9908334 Soft Condensed Matter +cond-mat/9908335 Disordered Systems and Neural Networks +cond-mat/9908337 Strongly Correlated Electrons +cond-mat/9908339 Strongly Correlated Electrons +cond-mat/9908341 Superconductivity +cond-mat/9908342 Statistical Mechanics +cond-mat/9908343 Statistical Mechanics +cond-mat/9908345 Strongly Correlated Electrons +cond-mat/9908346 Statistical Mechanics +cond-mat/9908347 +cond-mat/9908348 Mesoscale and Nanoscale Physics +cond-mat/9908350 +cond-mat/9908351 +cond-mat/9908352 Statistical Mechanics +cond-mat/9908354 Superconductivity +cond-mat/9908355 Superconductivity +cond-mat/9908357 Materials Science +cond-mat/9908359 Materials Science +cond-mat/9908360 Superconductivity +cond-mat/9908361 Materials Science +cond-mat/9908364 Materials Science +cond-mat/9908365 Superconductivity +cond-mat/9908366 Strongly Correlated Electrons +cond-mat/9908367 Statistical Mechanics +cond-mat/9908368 Superconductivity +cond-mat/9908369 Strongly Correlated Electrons +cond-mat/9908370 Disordered Systems and Neural Networks +cond-mat/9908371 Strongly Correlated Electrons +cond-mat/9908372 +cond-mat/9908374 Strongly Correlated Electrons +cond-mat/9908375 Mesoscale and Nanoscale Physics +cond-mat/9908376 Disordered Systems and Neural Networks +cond-mat/9908377 Soft Condensed Matter +cond-mat/9908379 Statistical Mechanics +cond-mat/9908381 Statistical Mechanics +cond-mat/9908382 +cond-mat/9908383 Superconductivity +cond-mat/9908386 +cond-mat/9908388 Superconductivity +cond-mat/9908389 Strongly Correlated Electrons +cond-mat/9908390 Strongly Correlated Electrons +cond-mat/9908391 Mesoscale and Nanoscale Physics +cond-mat/9908392 Mesoscale and Nanoscale Physics +cond-mat/9908393 Soft Condensed Matter +cond-mat/9908394 Mesoscale and Nanoscale Physics +cond-mat/9908395 Mesoscale and Nanoscale Physics +cond-mat/9908397 Mesoscale and Nanoscale Physics +cond-mat/9908398 Strongly Correlated Electrons +cond-mat/9908402 Statistical Mechanics +cond-mat/9908404 Mesoscale and Nanoscale Physics +cond-mat/9908405 Strongly Correlated Electrons +cond-mat/9908406 Mesoscale and Nanoscale Physics +cond-mat/9908407 Strongly Correlated Electrons +cond-mat/9908408 Mesoscale and Nanoscale Physics +cond-mat/9908409 Soft Condensed Matter +cond-mat/9908410 +cond-mat/9908411 Mesoscale and Nanoscale Physics +cond-mat/9908412 +cond-mat/9908413 Disordered Systems and Neural Networks +cond-mat/9908415 +cond-mat/9908416 Materials Science +cond-mat/9908418 Superconductivity +cond-mat/9908419 Strongly Correlated Electrons +cond-mat/9908422 +cond-mat/9908426 Soft Condensed Matter +cond-mat/9908427 Superconductivity +cond-mat/9908428 Soft Condensed Matter +cond-mat/9908429 Superconductivity +cond-mat/9908430 Soft Condensed Matter +cond-mat/9908431 Superconductivity +cond-mat/9908433 Strongly Correlated Electrons +cond-mat/9908436 Strongly Correlated Electrons +cond-mat/9908437 Disordered Systems and Neural Networks +cond-mat/9908438 Disordered Systems and Neural Networks +cond-mat/9908439 Statistical Mechanics +cond-mat/9908440 Mesoscale and Nanoscale Physics +cond-mat/9908444 Statistical Mechanics +cond-mat/9908446 Strongly Correlated Electrons +cond-mat/9908448 Mesoscale and Nanoscale Physics +cond-mat/9908449 Strongly Correlated Electrons +cond-mat/9908451 Superconductivity +cond-mat/9908452 Mesoscale and Nanoscale Physics +cond-mat/9908453 Statistical Mechanics +cond-mat/9908454 Superconductivity +cond-mat/9908455 Disordered Systems and Neural Networks +cond-mat/9908456 Mesoscale and Nanoscale Physics +cond-mat/9908457 Superconductivity +cond-mat/9908459 Superconductivity +cond-mat/9908460 Strongly Correlated Electrons +cond-mat/9908462 Mesoscale and Nanoscale Physics +cond-mat/9908463 Materials Science +cond-mat/9908465 Superconductivity +cond-mat/9908466 Mesoscale and Nanoscale Physics +cond-mat/9908468 Mesoscale and Nanoscale Physics +cond-mat/9908469 Mesoscale and Nanoscale Physics +cond-mat/9908470 Soft Condensed Matter +cond-mat/9908471 Strongly Correlated Electrons +cond-mat/9908472 Disordered Systems and Neural Networks +cond-mat/9908473 Superconductivity +cond-mat/9908474 Statistical Mechanics +cond-mat/9908475 Superconductivity +cond-mat/9908476 Soft Condensed Matter +cond-mat/9908477 Strongly Correlated Electrons +cond-mat/9908478 Materials Science +cond-mat/9908479 Materials Science +cond-mat/9908480 Statistical Mechanics +cond-mat/9908482 +cond-mat/9908483 Superconductivity +cond-mat/9908484 Disordered Systems and Neural Networks +cond-mat/9908486 Superconductivity +cond-mat/9908487 Mesoscale and Nanoscale Physics +cond-mat/9908488 Superconductivity +cond-mat/9909001 Strongly Correlated Electrons +cond-mat/9909002 Mesoscale and Nanoscale Physics +cond-mat/9909004 Disordered Systems and Neural Networks +cond-mat/9909005 Mesoscale and Nanoscale Physics +cond-mat/9909006 Materials Science +cond-mat/9909007 Mesoscale and Nanoscale Physics +cond-mat/9909010 Disordered Systems and Neural Networks +cond-mat/9909011 Mesoscale and Nanoscale Physics +cond-mat/9909012 Statistical Mechanics +cond-mat/9909013 Materials Science +cond-mat/9909014 Statistical Mechanics +cond-mat/9909015 Superconductivity +cond-mat/9909016 Soft Condensed Matter +cond-mat/9909018 Disordered Systems and Neural Networks +cond-mat/9909020 Strongly Correlated Electrons +cond-mat/9909021 Materials Science +cond-mat/9909025 +cond-mat/9909026 Statistical Mechanics +cond-mat/9909027 Strongly Correlated Electrons +cond-mat/9909028 Materials Science +cond-mat/9909030 Statistical Mechanics +cond-mat/9909032 Materials Science +cond-mat/9909035 Mesoscale and Nanoscale Physics +cond-mat/9909036 Strongly Correlated Electrons +cond-mat/9909039 Mesoscale and Nanoscale Physics +cond-mat/9909040 Statistical Mechanics +cond-mat/9909041 Strongly Correlated Electrons +cond-mat/9909043 Superconductivity +cond-mat/9909044 +cond-mat/9909045 Superconductivity +cond-mat/9909052 Superconductivity +cond-mat/9909053 Materials Science +cond-mat/9909054 Disordered Systems and Neural Networks +cond-mat/9909056 Strongly Correlated Electrons +cond-mat/9909057 Mesoscale and Nanoscale Physics +cond-mat/9909061 +cond-mat/9909063 Strongly Correlated Electrons +cond-mat/9909064 Mesoscale and Nanoscale Physics +cond-mat/9909065 Soft Condensed Matter +cond-mat/9909066 Mesoscale and Nanoscale Physics +cond-mat/9909067 Mesoscale and Nanoscale Physics +cond-mat/9909068 Statistical Mechanics +cond-mat/9909070 Statistical Mechanics +cond-mat/9909071 Mesoscale and Nanoscale Physics +cond-mat/9909073 Strongly Correlated Electrons +cond-mat/9909074 Strongly Correlated Electrons +cond-mat/9909075 Strongly Correlated Electrons +cond-mat/9909076 Superconductivity +cond-mat/9909077 Superconductivity +cond-mat/9909080 Materials Science +cond-mat/9909081 Strongly Correlated Electrons +cond-mat/9909082 Statistical Mechanics +cond-mat/9909088 Soft Condensed Matter +cond-mat/9909091 +cond-mat/9909092 Mesoscale and Nanoscale Physics +cond-mat/9909093 Strongly Correlated Electrons +cond-mat/9909095 +cond-mat/9909098 Strongly Correlated Electrons +cond-mat/9909099 Statistical Mechanics +cond-mat/9909101 Strongly Correlated Electrons +cond-mat/9909102 Statistical Mechanics +cond-mat/9909104 Mesoscale and Nanoscale Physics +cond-mat/9909105 +cond-mat/9909106 Strongly Correlated Electrons +cond-mat/9909109 Soft Condensed Matter +cond-mat/9909110 Superconductivity +cond-mat/9909111 Strongly Correlated Electrons +cond-mat/9909112 Strongly Correlated Electrons +cond-mat/9909116 Materials Science +cond-mat/9909117 Materials Science +cond-mat/9909118 Mesoscale and Nanoscale Physics +cond-mat/9909119 +cond-mat/9909122 Mesoscale and Nanoscale Physics +cond-mat/9909123 Disordered Systems and Neural Networks +cond-mat/9909125 Materials Science +cond-mat/9909128 Strongly Correlated Electrons +cond-mat/9909130 Materials Science +cond-mat/9909133 +cond-mat/9909134 Strongly Correlated Electrons +cond-mat/9909135 Mesoscale and Nanoscale Physics +cond-mat/9909136 Materials Science +cond-mat/9909138 Mesoscale and Nanoscale Physics +cond-mat/9909140 Strongly Correlated Electrons +cond-mat/9909143 Mesoscale and Nanoscale Physics +cond-mat/9909144 Statistical Mechanics +cond-mat/9909145 Materials Science +cond-mat/9909146 Statistical Mechanics +cond-mat/9909147 +cond-mat/9909148 Soft Condensed Matter +cond-mat/9909152 Mesoscale and Nanoscale Physics +cond-mat/9909153 Statistical Mechanics +cond-mat/9909154 Statistical Mechanics +cond-mat/9909155 Disordered Systems and Neural Networks +cond-mat/9909157 +cond-mat/9909162 Statistical Mechanics +cond-mat/9909163 +cond-mat/9909164 Statistical Mechanics +cond-mat/9909165 Statistical Mechanics +cond-mat/9909166 +cond-mat/9909167 Materials Science +cond-mat/9909169 +cond-mat/9909170 Superconductivity +cond-mat/9909171 Mesoscale and Nanoscale Physics +cond-mat/9909173 Soft Condensed Matter +cond-mat/9909175 Superconductivity +cond-mat/9909177 Statistical Mechanics +cond-mat/9909182 Materials Science +cond-mat/9909184 Statistical Mechanics +cond-mat/9909186 Strongly Correlated Electrons +cond-mat/9909189 Strongly Correlated Electrons +cond-mat/9909190 Disordered Systems and Neural Networks +cond-mat/9909191 Mesoscale and Nanoscale Physics +cond-mat/9909192 Mesoscale and Nanoscale Physics +cond-mat/9909193 Disordered Systems and Neural Networks +cond-mat/9909194 Mesoscale and Nanoscale Physics +cond-mat/9909195 Mesoscale and Nanoscale Physics +cond-mat/9909196 Strongly Correlated Electrons +cond-mat/9909197 Strongly Correlated Electrons +cond-mat/9909198 Superconductivity +cond-mat/9909201 Materials Science +cond-mat/9909203 Disordered Systems and Neural Networks +cond-mat/9909204 Statistical Mechanics +cond-mat/9909205 Statistical Mechanics +cond-mat/9909211 Statistical Mechanics +cond-mat/9909213 Strongly Correlated Electrons +cond-mat/9909215 Strongly Correlated Electrons +cond-mat/9909216 Mesoscale and Nanoscale Physics +cond-mat/9909217 Mesoscale and Nanoscale Physics +cond-mat/9909218 Statistical Mechanics +cond-mat/9909219 Superconductivity +cond-mat/9909220 Mesoscale and Nanoscale Physics +cond-mat/9909222 Soft Condensed Matter +cond-mat/9909223 Mesoscale and Nanoscale Physics +cond-mat/9909226 Statistical Mechanics +cond-mat/9909229 Materials Science +cond-mat/9909232 Mesoscale and Nanoscale Physics +cond-mat/9909237 +cond-mat/9909238 Mesoscale and Nanoscale Physics +cond-mat/9909239 Disordered Systems and Neural Networks +cond-mat/9909241 Mesoscale and Nanoscale Physics +cond-mat/9909242 Statistical Mechanics +cond-mat/9909243 Strongly Correlated Electrons +cond-mat/9909244 Mesoscale and Nanoscale Physics +cond-mat/9909246 Mesoscale and Nanoscale Physics +cond-mat/9909247 Materials Science +cond-mat/9909248 Disordered Systems and Neural Networks +cond-mat/9909249 +cond-mat/9909251 +cond-mat/9909254 Strongly Correlated Electrons +cond-mat/9909255 Statistical Mechanics +cond-mat/9909256 Strongly Correlated Electrons +cond-mat/9909258 Strongly Correlated Electrons +cond-mat/9909260 Soft Condensed Matter +cond-mat/9909261 Statistical Mechanics +cond-mat/9909262 Statistical Mechanics +cond-mat/9909264 Materials Science +cond-mat/9909265 Statistical Mechanics +cond-mat/9909268 Statistical Mechanics +cond-mat/9909269 Statistical Mechanics +cond-mat/9909270 Strongly Correlated Electrons +cond-mat/9909271 Mesoscale and Nanoscale Physics +cond-mat/9909273 Soft Condensed Matter +cond-mat/9909276 Disordered Systems and Neural Networks +cond-mat/9909278 Materials Science +cond-mat/9909279 Soft Condensed Matter +cond-mat/9909280 Strongly Correlated Electrons +cond-mat/9909283 Materials Science +cond-mat/9909284 Strongly Correlated Electrons +cond-mat/9909285 Disordered Systems and Neural Networks +cond-mat/9909286 Materials Science +cond-mat/9909287 Statistical Mechanics +cond-mat/9909290 Statistical Mechanics +cond-mat/9909291 Statistical Mechanics +cond-mat/9909294 +cond-mat/9909295 Strongly Correlated Electrons +cond-mat/9909298 Strongly Correlated Electrons +cond-mat/9909299 Statistical Mechanics +cond-mat/9909301 Statistical Mechanics +cond-mat/9909304 +cond-mat/9909305 Materials Science +cond-mat/9909309 Soft Condensed Matter +cond-mat/9909311 Strongly Correlated Electrons +cond-mat/9909313 +cond-mat/9909314 Mesoscale and Nanoscale Physics +cond-mat/9909316 Superconductivity +cond-mat/9909317 Strongly Correlated Electrons +cond-mat/9909318 Superconductivity +cond-mat/9909320 Mesoscale and Nanoscale Physics +cond-mat/9909321 Strongly Correlated Electrons +cond-mat/9909322 Statistical Mechanics +cond-mat/9909323 Statistical Mechanics +cond-mat/9909324 Statistical Mechanics +cond-mat/9909330 Soft Condensed Matter +cond-mat/9909331 Strongly Correlated Electrons +cond-mat/9909332 +cond-mat/9909333 Strongly Correlated Electrons +cond-mat/9909334 Materials Science +cond-mat/9909336 Statistical Mechanics +cond-mat/9909337 Mesoscale and Nanoscale Physics +cond-mat/9909338 +cond-mat/9909339 Soft Condensed Matter +cond-mat/9909340 Mesoscale and Nanoscale Physics +cond-mat/9909342 Superconductivity +cond-mat/9909343 Statistical Mechanics +cond-mat/9909344 Statistical Mechanics +cond-mat/9909345 Soft Condensed Matter +cond-mat/9909349 +cond-mat/9909352 Strongly Correlated Electrons +cond-mat/9909357 Strongly Correlated Electrons +cond-mat/9909358 Superconductivity +cond-mat/9909360 Strongly Correlated Electrons +cond-mat/9909361 Statistical Mechanics +cond-mat/9909362 Strongly Correlated Electrons +cond-mat/9909363 Superconductivity +cond-mat/9909364 Materials Science +cond-mat/9909365 Superconductivity +cond-mat/9909367 Soft Condensed Matter +cond-mat/9909369 Superconductivity +cond-mat/9909370 Superconductivity +cond-mat/9909371 Mesoscale and Nanoscale Physics +cond-mat/9909372 Materials Science +cond-mat/9909375 Strongly Correlated Electrons +cond-mat/9909378 Statistical Mechanics +cond-mat/9909379 Disordered Systems and Neural Networks +cond-mat/9909380 Superconductivity +cond-mat/9909381 Disordered Systems and Neural Networks +cond-mat/9909382 Superconductivity +cond-mat/9909383 Materials Science +cond-mat/9909384 +cond-mat/9909385 Superconductivity +cond-mat/9909387 Statistical Mechanics +cond-mat/9909388 Strongly Correlated Electrons +cond-mat/9909391 Statistical Mechanics +cond-mat/9909392 Statistical Mechanics +cond-mat/9909393 Materials Science +cond-mat/9909394 Strongly Correlated Electrons +cond-mat/9909395 Soft Condensed Matter +cond-mat/9909398 Soft Condensed Matter +cond-mat/9909401 Strongly Correlated Electrons +cond-mat/9909402 Disordered Systems and Neural Networks +cond-mat/9909403 Mesoscale and Nanoscale Physics +cond-mat/9909404 Soft Condensed Matter +cond-mat/9909406 Materials Science +cond-mat/9909410 +cond-mat/9909412 Materials Science +cond-mat/9909413 Statistical Mechanics +cond-mat/9909415 Disordered Systems and Neural Networks +cond-mat/9909416 Soft Condensed Matter +cond-mat/9909419 Statistical Mechanics +cond-mat/9909420 Soft Condensed Matter +cond-mat/9909422 Statistical Mechanics +cond-mat/9909424 +cond-mat/9909425 +cond-mat/9909426 +cond-mat/9909429 Superconductivity +cond-mat/9909431 Strongly Correlated Electrons +cond-mat/9909433 Strongly Correlated Electrons +cond-mat/9909435 Superconductivity +cond-mat/9909436 Statistical Mechanics +cond-mat/9909438 Strongly Correlated Electrons +cond-mat/9909440 Strongly Correlated Electrons +cond-mat/9909443 Disordered Systems and Neural Networks +cond-mat/9909444 Mesoscale and Nanoscale Physics +cond-mat/9909447 Disordered Systems and Neural Networks +cond-mat/9909448 +cond-mat/9909449 +cond-mat/9909450 Mesoscale and Nanoscale Physics +cond-mat/9909452 Strongly Correlated Electrons +cond-mat/9909453 Soft Condensed Matter +cond-mat/9909454 Superconductivity +cond-mat/9909455 Disordered Systems and Neural Networks +cond-mat/9909456 Statistical Mechanics +cond-mat/9909457 Disordered Systems and Neural Networks +cond-mat/9910001 Superconductivity +cond-mat/9910005 Statistical Mechanics +cond-mat/9910006 Soft Condensed Matter +cond-mat/9910007 Superconductivity +cond-mat/9910010 Statistical Mechanics +cond-mat/9910012 Superconductivity +cond-mat/9910013 +cond-mat/9910014 Materials Science +cond-mat/9910017 Superconductivity +cond-mat/9910019 Mesoscale and Nanoscale Physics +cond-mat/9910020 Superconductivity +cond-mat/9910022 Soft Condensed Matter +cond-mat/9910023 Strongly Correlated Electrons +cond-mat/9910024 Materials Science +cond-mat/9910026 Superconductivity +cond-mat/9910027 Mesoscale and Nanoscale Physics +cond-mat/9910028 Statistical Mechanics +cond-mat/9910029 Statistical Mechanics +cond-mat/9910030 Mesoscale and Nanoscale Physics +cond-mat/9910031 Materials Science +cond-mat/9910032 Materials Science +cond-mat/9910034 Statistical Mechanics +cond-mat/9910035 Mesoscale and Nanoscale Physics +cond-mat/9910036 Strongly Correlated Electrons +cond-mat/9910037 Superconductivity +cond-mat/9910038 Strongly Correlated Electrons +cond-mat/9910040 Statistical Mechanics +cond-mat/9910041 Superconductivity +cond-mat/9910042 Mesoscale and Nanoscale Physics +cond-mat/9910044 Soft Condensed Matter +cond-mat/9910045 Statistical Mechanics +cond-mat/9910046 Statistical Mechanics +cond-mat/9910047 Statistical Mechanics +cond-mat/9910048 Disordered Systems and Neural Networks +cond-mat/9910049 Soft Condensed Matter +cond-mat/9910050 Strongly Correlated Electrons +cond-mat/9910051 +cond-mat/9910055 +cond-mat/9910057 Strongly Correlated Electrons +cond-mat/9910058 Disordered Systems and Neural Networks +cond-mat/9910060 Mesoscale and Nanoscale Physics +cond-mat/9910063 Superconductivity +cond-mat/9910064 Strongly Correlated Electrons +cond-mat/9910065 Superconductivity +cond-mat/9910066 Materials Science +cond-mat/9910069 Strongly Correlated Electrons +cond-mat/9910071 Disordered Systems and Neural Networks +cond-mat/9910073 Mesoscale and Nanoscale Physics +cond-mat/9910074 Strongly Correlated Electrons +cond-mat/9910075 Statistical Mechanics +cond-mat/9910076 Mesoscale and Nanoscale Physics +cond-mat/9910077 Statistical Mechanics +cond-mat/9910078 Statistical Mechanics +cond-mat/9910079 Strongly Correlated Electrons +cond-mat/9910081 +cond-mat/9910087 Superconductivity +cond-mat/9910088 Superconductivity +cond-mat/9910089 Statistical Mechanics +cond-mat/9910090 Superconductivity +cond-mat/9910091 Statistical Mechanics +cond-mat/9910092 Statistical Mechanics +cond-mat/9910093 Strongly Correlated Electrons +cond-mat/9910094 Strongly Correlated Electrons +cond-mat/9910095 Statistical Mechanics +cond-mat/9910096 Mesoscale and Nanoscale Physics +cond-mat/9910097 Mesoscale and Nanoscale Physics +cond-mat/9910098 Superconductivity +cond-mat/9910100 Mesoscale and Nanoscale Physics +cond-mat/9910102 Superconductivity +cond-mat/9910103 +cond-mat/9910104 +cond-mat/9910106 Strongly Correlated Electrons +cond-mat/9910108 Materials Science +cond-mat/9910109 Strongly Correlated Electrons +cond-mat/9910112 Disordered Systems and Neural Networks +cond-mat/9910113 Statistical Mechanics +cond-mat/9910114 Strongly Correlated Electrons +cond-mat/9910115 Superconductivity +cond-mat/9910116 Mesoscale and Nanoscale Physics +cond-mat/9910117 Mesoscale and Nanoscale Physics +cond-mat/9910118 Superconductivity +cond-mat/9910119 Disordered Systems and Neural Networks +cond-mat/9910120 Statistical Mechanics +cond-mat/9910123 Superconductivity +cond-mat/9910124 Disordered Systems and Neural Networks +cond-mat/9910125 Mesoscale and Nanoscale Physics +cond-mat/9910126 Mesoscale and Nanoscale Physics +cond-mat/9910127 +cond-mat/9910128 Statistical Mechanics +cond-mat/9910129 Statistical Mechanics +cond-mat/9910130 Mesoscale and Nanoscale Physics +cond-mat/9910132 Mesoscale and Nanoscale Physics +cond-mat/9910133 Strongly Correlated Electrons +cond-mat/9910134 Materials Science +cond-mat/9910135 Statistical Mechanics +cond-mat/9910136 Statistical Mechanics +cond-mat/9910137 Mesoscale and Nanoscale Physics +cond-mat/9910140 Statistical Mechanics +cond-mat/9910143 +cond-mat/9910144 Mesoscale and Nanoscale Physics +cond-mat/9910145 Statistical Mechanics +cond-mat/9910146 Superconductivity +cond-mat/9910148 Mesoscale and Nanoscale Physics +cond-mat/9910149 Strongly Correlated Electrons +cond-mat/9910150 Statistical Mechanics +cond-mat/9910151 Statistical Mechanics +cond-mat/9910152 Strongly Correlated Electrons +cond-mat/9910153 Strongly Correlated Electrons +cond-mat/9910154 Superconductivity +cond-mat/9910155 Soft Condensed Matter +cond-mat/9910157 +cond-mat/9910159 Statistical Mechanics +cond-mat/9910160 Soft Condensed Matter +cond-mat/9910161 Strongly Correlated Electrons +cond-mat/9910163 +cond-mat/9910165 Strongly Correlated Electrons +cond-mat/9910166 Statistical Mechanics +cond-mat/9910167 Statistical Mechanics +cond-mat/9910169 +cond-mat/9910171 Superconductivity +cond-mat/9910172 Mesoscale and Nanoscale Physics +cond-mat/9910174 Superconductivity +cond-mat/9910175 Materials Science +cond-mat/9910176 Materials Science +cond-mat/9910177 Materials Science +cond-mat/9910178 Statistical Mechanics +cond-mat/9910181 Disordered Systems and Neural Networks +cond-mat/9910182 Mesoscale and Nanoscale Physics +cond-mat/9910185 +cond-mat/9910186 Statistical Mechanics +cond-mat/9910187 Strongly Correlated Electrons +cond-mat/9910188 Soft Condensed Matter +cond-mat/9910189 Strongly Correlated Electrons +cond-mat/9910191 Strongly Correlated Electrons +cond-mat/9910192 +cond-mat/9910193 Soft Condensed Matter +cond-mat/9910194 +cond-mat/9910195 Statistical Mechanics +cond-mat/9910197 +cond-mat/9910198 +cond-mat/9910199 Statistical Mechanics +cond-mat/9910201 Mesoscale and Nanoscale Physics +cond-mat/9910203 Materials Science +cond-mat/9910204 Strongly Correlated Electrons +cond-mat/9910205 Mesoscale and Nanoscale Physics +cond-mat/9910207 Statistical Mechanics +cond-mat/9910209 +cond-mat/9910210 Disordered Systems and Neural Networks +cond-mat/9910212 Statistical Mechanics +cond-mat/9910213 Statistical Mechanics +cond-mat/9910214 Superconductivity +cond-mat/9910215 Materials Science +cond-mat/9910216 Strongly Correlated Electrons +cond-mat/9910218 Strongly Correlated Electrons +cond-mat/9910220 Strongly Correlated Electrons +cond-mat/9910221 Superconductivity +cond-mat/9910223 Soft Condensed Matter +cond-mat/9910224 Strongly Correlated Electrons +cond-mat/9910225 Mesoscale and Nanoscale Physics +cond-mat/9910227 Strongly Correlated Electrons +cond-mat/9910228 Mesoscale and Nanoscale Physics +cond-mat/9910229 Superconductivity +cond-mat/9910232 Disordered Systems and Neural Networks +cond-mat/9910233 +cond-mat/9910235 Soft Condensed Matter +cond-mat/9910236 Statistical Mechanics +cond-mat/9910238 Mesoscale and Nanoscale Physics +cond-mat/9910239 Statistical Mechanics +cond-mat/9910240 Superconductivity +cond-mat/9910241 Materials Science +cond-mat/9910242 Statistical Mechanics +cond-mat/9910245 Statistical Mechanics +cond-mat/9910247 Strongly Correlated Electrons +cond-mat/9910248 Soft Condensed Matter +cond-mat/9910249 Materials Science +cond-mat/9910250 Soft Condensed Matter +cond-mat/9910252 Materials Science +cond-mat/9910253 Strongly Correlated Electrons +cond-mat/9910254 Statistical Mechanics +cond-mat/9910257 Superconductivity +cond-mat/9910258 Mesoscale and Nanoscale Physics +cond-mat/9910259 Strongly Correlated Electrons +cond-mat/9910261 Superconductivity +cond-mat/9910262 Superconductivity +cond-mat/9910263 Superconductivity +cond-mat/9910264 Strongly Correlated Electrons +cond-mat/9910265 Mesoscale and Nanoscale Physics +cond-mat/9910266 Materials Science +cond-mat/9910268 Statistical Mechanics +cond-mat/9910272 Strongly Correlated Electrons +cond-mat/9910273 Statistical Mechanics +cond-mat/9910275 Statistical Mechanics +cond-mat/9910276 Superconductivity +cond-mat/9910277 Mesoscale and Nanoscale Physics +cond-mat/9910279 +cond-mat/9910282 Soft Condensed Matter +cond-mat/9910285 Mesoscale and Nanoscale Physics +cond-mat/9910287 +cond-mat/9910288 Statistical Mechanics +cond-mat/9910289 Statistical Mechanics +cond-mat/9910290 +cond-mat/9910293 +cond-mat/9910294 Statistical Mechanics +cond-mat/9910296 Materials Science +cond-mat/9910297 Disordered Systems and Neural Networks +cond-mat/9910299 Strongly Correlated Electrons +cond-mat/9910302 Mesoscale and Nanoscale Physics +cond-mat/9910303 Strongly Correlated Electrons +cond-mat/9910304 +cond-mat/9910305 Soft Condensed Matter +cond-mat/9910308 +cond-mat/9910309 Soft Condensed Matter +cond-mat/9910310 +cond-mat/9910312 Mesoscale and Nanoscale Physics +cond-mat/9910314 Superconductivity +cond-mat/9910319 Strongly Correlated Electrons +cond-mat/9910322 Strongly Correlated Electrons +cond-mat/9910323 Disordered Systems and Neural Networks +cond-mat/9910324 Mesoscale and Nanoscale Physics +cond-mat/9910325 Mesoscale and Nanoscale Physics +cond-mat/9910326 +cond-mat/9910328 +cond-mat/9910329 +cond-mat/9910330 Statistical Mechanics +cond-mat/9910333 Disordered Systems and Neural Networks +cond-mat/9910334 Mesoscale and Nanoscale Physics +cond-mat/9910336 Superconductivity +cond-mat/9910337 Superconductivity +cond-mat/9910338 +cond-mat/9910339 +cond-mat/9910341 Superconductivity +cond-mat/9910343 +cond-mat/9910344 Materials Science +cond-mat/9910345 Materials Science +cond-mat/9910346 Materials Science +cond-mat/9910347 Soft Condensed Matter +cond-mat/9910348 +cond-mat/9910349 Superconductivity +cond-mat/9910352 Statistical Mechanics +cond-mat/9910353 Disordered Systems and Neural Networks +cond-mat/9910354 Statistical Mechanics +cond-mat/9910356 Strongly Correlated Electrons +cond-mat/9910357 Disordered Systems and Neural Networks +cond-mat/9910358 +cond-mat/9910359 Statistical Mechanics +cond-mat/9910361 Strongly Correlated Electrons +cond-mat/9910362 Strongly Correlated Electrons +cond-mat/9910363 +cond-mat/9910364 Soft Condensed Matter +cond-mat/9910365 Disordered Systems and Neural Networks +cond-mat/9910366 Disordered Systems and Neural Networks +cond-mat/9910367 Superconductivity +cond-mat/9910368 Mesoscale and Nanoscale Physics +cond-mat/9910369 Soft Condensed Matter +cond-mat/9910370 Statistical Mechanics +cond-mat/9910372 Strongly Correlated Electrons +cond-mat/9910373 Strongly Correlated Electrons +cond-mat/9910374 Statistical Mechanics +cond-mat/9910376 Statistical Mechanics +cond-mat/9910377 Statistical Mechanics +cond-mat/9910378 Materials Science +cond-mat/9910379 Materials Science +cond-mat/9910381 Mesoscale and Nanoscale Physics +cond-mat/9910382 Superconductivity +cond-mat/9910384 +cond-mat/9910385 Strongly Correlated Electrons +cond-mat/9910388 Superconductivity +cond-mat/9910390 Disordered Systems and Neural Networks +cond-mat/9910391 Strongly Correlated Electrons +cond-mat/9910393 Materials Science +cond-mat/9910396 Mesoscale and Nanoscale Physics +cond-mat/9910397 Soft Condensed Matter +cond-mat/9910399 Mesoscale and Nanoscale Physics +cond-mat/9910400 Superconductivity +cond-mat/9910403 Strongly Correlated Electrons +cond-mat/9910406 Statistical Mechanics +cond-mat/9910407 Mesoscale and Nanoscale Physics +cond-mat/9910408 Strongly Correlated Electrons +cond-mat/9910409 +cond-mat/9910411 Strongly Correlated Electrons +cond-mat/9910412 Statistical Mechanics +cond-mat/9910413 Superconductivity +cond-mat/9910414 Disordered Systems and Neural Networks +cond-mat/9910415 Mesoscale and Nanoscale Physics +cond-mat/9910416 Statistical Mechanics +cond-mat/9910417 Soft Condensed Matter +cond-mat/9910418 Superconductivity +cond-mat/9910419 Strongly Correlated Electrons +cond-mat/9910420 Strongly Correlated Electrons +cond-mat/9910421 Strongly Correlated Electrons +cond-mat/9910422 Soft Condensed Matter +cond-mat/9910424 Materials Science +cond-mat/9910425 Statistical Mechanics +cond-mat/9910426 Statistical Mechanics +cond-mat/9910427 Statistical Mechanics +cond-mat/9910428 Statistical Mechanics +cond-mat/9910429 Statistical Mechanics +cond-mat/9910430 Superconductivity +cond-mat/9910432 Strongly Correlated Electrons +cond-mat/9910433 Statistical Mechanics +cond-mat/9910434 +cond-mat/9910436 Strongly Correlated Electrons +cond-mat/9910438 Strongly Correlated Electrons +cond-mat/9910440 Statistical Mechanics +cond-mat/9910442 +cond-mat/9910445 Statistical Mechanics +cond-mat/9910446 Strongly Correlated Electrons +cond-mat/9910447 Strongly Correlated Electrons +cond-mat/9910448 Strongly Correlated Electrons +cond-mat/9910450 Mesoscale and Nanoscale Physics +cond-mat/9910452 +cond-mat/9910456 Materials Science +cond-mat/9910457 Statistical Mechanics +cond-mat/9910459 Strongly Correlated Electrons +cond-mat/9910460 Mesoscale and Nanoscale Physics +cond-mat/9910461 Strongly Correlated Electrons +cond-mat/9910462 Disordered Systems and Neural Networks +cond-mat/9910464 Mesoscale and Nanoscale Physics +cond-mat/9910465 Statistical Mechanics +cond-mat/9910466 Mesoscale and Nanoscale Physics +cond-mat/9910467 Statistical Mechanics +cond-mat/9910468 Mesoscale and Nanoscale Physics +cond-mat/9910469 Superconductivity +cond-mat/9910470 Statistical Mechanics +cond-mat/9910471 Strongly Correlated Electrons +cond-mat/9910472 Statistical Mechanics +cond-mat/9910473 Superconductivity +cond-mat/9910474 Strongly Correlated Electrons +cond-mat/9910475 Mesoscale and Nanoscale Physics +cond-mat/9910476 Statistical Mechanics +cond-mat/9910477 Statistical Mechanics +cond-mat/9910480 Mesoscale and Nanoscale Physics +cond-mat/9910481 Strongly Correlated Electrons +cond-mat/9910484 Superconductivity +cond-mat/9910486 Materials Science +cond-mat/9910496 Superconductivity +cond-mat/9910497 Soft Condensed Matter +cond-mat/9910498 Materials Science +cond-mat/9910499 Statistical Mechanics +cond-mat/9910501 Strongly Correlated Electrons +cond-mat/9910502 Statistical Mechanics +cond-mat/9910503 Statistical Mechanics +cond-mat/9910504 Statistical Mechanics +cond-mat/9910505 +cond-mat/9910509 Strongly Correlated Electrons +cond-mat/9910510 Statistical Mechanics +cond-mat/9910511 Statistical Mechanics +cond-mat/9910512 Statistical Mechanics +cond-mat/9910514 Statistical Mechanics +cond-mat/9910518 Mesoscale and Nanoscale Physics +cond-mat/9910520 Statistical Mechanics +cond-mat/9910522 Superconductivity +cond-mat/9910523 Superconductivity +cond-mat/9910525 +cond-mat/9910526 Superconductivity +cond-mat/9910527 Mesoscale and Nanoscale Physics +cond-mat/9910528 Disordered Systems and Neural Networks +cond-mat/9910530 Strongly Correlated Electrons +cond-mat/9911002 Superconductivity +cond-mat/9911005 Statistical Mechanics +cond-mat/9911007 +cond-mat/9911008 Statistical Mechanics +cond-mat/9911010 +cond-mat/9911014 Mesoscale and Nanoscale Physics +cond-mat/9911016 Materials Science +cond-mat/9911017 +cond-mat/9911018 +cond-mat/9911019 Mesoscale and Nanoscale Physics +cond-mat/9911020 Disordered Systems and Neural Networks +cond-mat/9911021 Disordered Systems and Neural Networks +cond-mat/9911025 Disordered Systems and Neural Networks +cond-mat/9911028 Statistical Mechanics +cond-mat/9911030 Statistical Mechanics +cond-mat/9911032 Statistical Mechanics +cond-mat/9911033 Superconductivity +cond-mat/9911034 Superconductivity +cond-mat/9911035 Statistical Mechanics +cond-mat/9911039 Disordered Systems and Neural Networks +cond-mat/9911041 Statistical Mechanics +cond-mat/9911042 Mesoscale and Nanoscale Physics +cond-mat/9911043 Statistical Mechanics +cond-mat/9911044 Superconductivity +cond-mat/9911045 Disordered Systems and Neural Networks +cond-mat/9911047 Statistical Mechanics +cond-mat/9911048 Disordered Systems and Neural Networks +cond-mat/9911049 Strongly Correlated Electrons +cond-mat/9911051 Statistical Mechanics +cond-mat/9911053 Mesoscale and Nanoscale Physics +cond-mat/9911054 Mesoscale and Nanoscale Physics +cond-mat/9911055 Statistical Mechanics +cond-mat/9911057 Superconductivity +cond-mat/9911059 Statistical Mechanics +cond-mat/9911060 Soft Condensed Matter +cond-mat/9911061 Materials Science +cond-mat/9911062 Soft Condensed Matter +cond-mat/9911063 Statistical Mechanics +cond-mat/9911065 Mesoscale and Nanoscale Physics +cond-mat/9911066 Statistical Mechanics +cond-mat/9911068 Strongly Correlated Electrons +cond-mat/9911071 Strongly Correlated Electrons +cond-mat/9911074 Statistical Mechanics +cond-mat/9911076 Superconductivity +cond-mat/9911077 Statistical Mechanics +cond-mat/9911078 Statistical Mechanics +cond-mat/9911079 Materials Science +cond-mat/9911080 +cond-mat/9911082 Superconductivity +cond-mat/9911083 Statistical Mechanics +cond-mat/9911087 Strongly Correlated Electrons +cond-mat/9911089 Soft Condensed Matter +cond-mat/9911091 Strongly Correlated Electrons +cond-mat/9911094 Strongly Correlated Electrons +cond-mat/9911095 Statistical Mechanics +cond-mat/9911096 Statistical Mechanics +cond-mat/9911099 Superconductivity +cond-mat/9911101 Statistical Mechanics +cond-mat/9911102 +cond-mat/9911103 Mesoscale and Nanoscale Physics +cond-mat/9911104 Statistical Mechanics +cond-mat/9911106 Statistical Mechanics +cond-mat/9911108 Superconductivity +cond-mat/9911109 Strongly Correlated Electrons +cond-mat/9911110 Soft Condensed Matter +cond-mat/9911111 Soft Condensed Matter +cond-mat/9911113 +cond-mat/9911114 Strongly Correlated Electrons +cond-mat/9911116 Superconductivity +cond-mat/9911117 Superconductivity +cond-mat/9911119 Strongly Correlated Electrons +cond-mat/9911122 Strongly Correlated Electrons +cond-mat/9911123 Superconductivity +cond-mat/9911124 Statistical Mechanics +cond-mat/9911125 Materials Science +cond-mat/9911126 Soft Condensed Matter +cond-mat/9911127 +cond-mat/9911129 Statistical Mechanics +cond-mat/9911130 Statistical Mechanics +cond-mat/9911131 Superconductivity +cond-mat/9911132 +cond-mat/9911133 Mesoscale and Nanoscale Physics +cond-mat/9911136 Strongly Correlated Electrons +cond-mat/9911137 Strongly Correlated Electrons +cond-mat/9911140 Statistical Mechanics +cond-mat/9911142 Disordered Systems and Neural Networks +cond-mat/9911144 Disordered Systems and Neural Networks +cond-mat/9911145 Superconductivity +cond-mat/9911146 Strongly Correlated Electrons +cond-mat/9911152 +cond-mat/9911154 +cond-mat/9911155 Strongly Correlated Electrons +cond-mat/9911158 Disordered Systems and Neural Networks +cond-mat/9911159 Disordered Systems and Neural Networks +cond-mat/9911160 +cond-mat/9911161 Strongly Correlated Electrons +cond-mat/9911162 Strongly Correlated Electrons +cond-mat/9911163 Strongly Correlated Electrons +cond-mat/9911164 Strongly Correlated Electrons +cond-mat/9911166 Strongly Correlated Electrons +cond-mat/9911167 Superconductivity +cond-mat/9911168 Statistical Mechanics +cond-mat/9911170 Strongly Correlated Electrons +cond-mat/9911171 Strongly Correlated Electrons +cond-mat/9911174 Soft Condensed Matter +cond-mat/9911175 Mesoscale and Nanoscale Physics +cond-mat/9911177 +cond-mat/9911178 +cond-mat/9911179 Mesoscale and Nanoscale Physics +cond-mat/9911180 Mesoscale and Nanoscale Physics +cond-mat/9911181 Statistical Mechanics +cond-mat/9911183 Mesoscale and Nanoscale Physics +cond-mat/9911184 Soft Condensed Matter +cond-mat/9911185 Strongly Correlated Electrons +cond-mat/9911186 Mesoscale and Nanoscale Physics +cond-mat/9911192 Strongly Correlated Electrons +cond-mat/9911193 Soft Condensed Matter +cond-mat/9911194 Superconductivity +cond-mat/9911195 Statistical Mechanics +cond-mat/9911197 Statistical Mechanics +cond-mat/9911198 Soft Condensed Matter +cond-mat/9911199 +cond-mat/9911200 +cond-mat/9911201 Statistical Mechanics +cond-mat/9911202 Soft Condensed Matter +cond-mat/9911203 Superconductivity +cond-mat/9911204 Statistical Mechanics +cond-mat/9911206 +cond-mat/9911207 Disordered Systems and Neural Networks +cond-mat/9911209 Superconductivity +cond-mat/9911210 +cond-mat/9911211 Superconductivity +cond-mat/9911212 Statistical Mechanics +cond-mat/9911213 Mesoscale and Nanoscale Physics +cond-mat/9911216 Superconductivity +cond-mat/9911217 Superconductivity +cond-mat/9911218 Strongly Correlated Electrons +cond-mat/9911219 Materials Science +cond-mat/9911220 +cond-mat/9911221 Statistical Mechanics +cond-mat/9911226 Disordered Systems and Neural Networks +cond-mat/9911228 Statistical Mechanics +cond-mat/9911231 Mesoscale and Nanoscale Physics +cond-mat/9911233 Mesoscale and Nanoscale Physics +cond-mat/9911234 Mesoscale and Nanoscale Physics +cond-mat/9911237 Disordered Systems and Neural Networks +cond-mat/9911239 Mesoscale and Nanoscale Physics +cond-mat/9911241 Materials Science +cond-mat/9911242 Materials Science +cond-mat/9911243 Mesoscale and Nanoscale Physics +cond-mat/9911246 Disordered Systems and Neural Networks +cond-mat/9911248 Strongly Correlated Electrons +cond-mat/9911250 Soft Condensed Matter +cond-mat/9911251 Mesoscale and Nanoscale Physics +cond-mat/9911252 Soft Condensed Matter +cond-mat/9911253 Statistical Mechanics +cond-mat/9911254 Mesoscale and Nanoscale Physics +cond-mat/9911255 Strongly Correlated Electrons +cond-mat/9911258 Strongly Correlated Electrons +cond-mat/9911259 Strongly Correlated Electrons +cond-mat/9911260 Superconductivity +cond-mat/9911264 Strongly Correlated Electrons +cond-mat/9911268 Strongly Correlated Electrons +cond-mat/9911270 +cond-mat/9911271 Strongly Correlated Electrons +cond-mat/9911272 Strongly Correlated Electrons +cond-mat/9911273 Statistical Mechanics +cond-mat/9911274 Disordered Systems and Neural Networks +cond-mat/9911275 Materials Science +cond-mat/9911278 Statistical Mechanics +cond-mat/9911279 Superconductivity +cond-mat/9911281 Strongly Correlated Electrons +cond-mat/9911284 Mesoscale and Nanoscale Physics +cond-mat/9911285 Statistical Mechanics +cond-mat/9911288 Mesoscale and Nanoscale Physics +cond-mat/9911289 +cond-mat/9911290 Strongly Correlated Electrons +cond-mat/9911291 Statistical Mechanics +cond-mat/9911293 Materials Science +cond-mat/9911294 Strongly Correlated Electrons +cond-mat/9911295 Strongly Correlated Electrons +cond-mat/9911298 Strongly Correlated Electrons +cond-mat/9911300 Soft Condensed Matter +cond-mat/9911302 Materials Science +cond-mat/9911307 Superconductivity +cond-mat/9911308 Statistical Mechanics +cond-mat/9911309 +cond-mat/9911310 Mesoscale and Nanoscale Physics +cond-mat/9911316 Mesoscale and Nanoscale Physics +cond-mat/9911317 Statistical Mechanics +cond-mat/9911318 Mesoscale and Nanoscale Physics +cond-mat/9911319 Materials Science +cond-mat/9911320 Strongly Correlated Electrons +cond-mat/9911321 Superconductivity +cond-mat/9911323 Mesoscale and Nanoscale Physics +cond-mat/9911325 Superconductivity +cond-mat/9911326 +cond-mat/9911327 Strongly Correlated Electrons +cond-mat/9911329 Strongly Correlated Electrons +cond-mat/9911331 Mesoscale and Nanoscale Physics +cond-mat/9911332 Soft Condensed Matter +cond-mat/9911335 Superconductivity +cond-mat/9911336 Statistical Mechanics +cond-mat/9911337 Strongly Correlated Electrons +cond-mat/9911338 Statistical Mechanics +cond-mat/9911339 Superconductivity +cond-mat/9911340 Soft Condensed Matter +cond-mat/9911342 Statistical Mechanics +cond-mat/9911343 +cond-mat/9911344 Soft Condensed Matter +cond-mat/9911345 +cond-mat/9911346 Statistical Mechanics +cond-mat/9911348 Statistical Mechanics +cond-mat/9911350 Mesoscale and Nanoscale Physics +cond-mat/9911351 Disordered Systems and Neural Networks +cond-mat/9911353 Disordered Systems and Neural Networks +cond-mat/9911354 Materials Science +cond-mat/9911355 Strongly Correlated Electrons +cond-mat/9911356 +cond-mat/9911358 Mesoscale and Nanoscale Physics +cond-mat/9911359 Statistical Mechanics +cond-mat/9911360 Soft Condensed Matter +cond-mat/9911361 Strongly Correlated Electrons +cond-mat/9911362 Mesoscale and Nanoscale Physics +cond-mat/9911364 Statistical Mechanics +cond-mat/9911365 +cond-mat/9911366 Superconductivity +cond-mat/9911367 Strongly Correlated Electrons +cond-mat/9911368 Mesoscale and Nanoscale Physics +cond-mat/9911374 +cond-mat/9911375 Disordered Systems and Neural Networks +cond-mat/9911376 Superconductivity +cond-mat/9911377 +cond-mat/9911379 Statistical Mechanics +cond-mat/9911380 +cond-mat/9911381 Mesoscale and Nanoscale Physics +cond-mat/9911384 Soft Condensed Matter +cond-mat/9911385 Strongly Correlated Electrons +cond-mat/9911387 +cond-mat/9911389 Soft Condensed Matter +cond-mat/9911390 +cond-mat/9911394 Strongly Correlated Electrons +cond-mat/9911395 Mesoscale and Nanoscale Physics +cond-mat/9911396 Statistical Mechanics +cond-mat/9911397 Soft Condensed Matter +cond-mat/9911398 Disordered Systems and Neural Networks +cond-mat/9911399 Strongly Correlated Electrons +cond-mat/9911401 Statistical Mechanics +cond-mat/9911403 Statistical Mechanics +cond-mat/9911404 Superconductivity +cond-mat/9911406 Statistical Mechanics +cond-mat/9911408 Statistical Mechanics +cond-mat/9911415 Materials Science +cond-mat/9911417 Statistical Mechanics +cond-mat/9911423 Superconductivity +cond-mat/9911424 Strongly Correlated Electrons +cond-mat/9911425 Soft Condensed Matter +cond-mat/9911428 +cond-mat/9911431 +cond-mat/9911432 Mesoscale and Nanoscale Physics +cond-mat/9911433 Disordered Systems and Neural Networks +cond-mat/9911434 +cond-mat/9911435 Statistical Mechanics +cond-mat/9911438 Strongly Correlated Electrons +cond-mat/9911439 Superconductivity +cond-mat/9911440 Materials Science +cond-mat/9911441 Strongly Correlated Electrons +cond-mat/9911442 Strongly Correlated Electrons +cond-mat/9911444 +cond-mat/9911446 Strongly Correlated Electrons +cond-mat/9911447 Strongly Correlated Electrons +cond-mat/9911448 Strongly Correlated Electrons +cond-mat/9911451 Strongly Correlated Electrons +cond-mat/9911452 Statistical Mechanics +cond-mat/9911453 Statistical Mechanics +cond-mat/9911454 Superconductivity +cond-mat/9911460 Statistical Mechanics +cond-mat/9911463 +cond-mat/9911465 Statistical Mechanics +cond-mat/9911466 Statistical Mechanics +cond-mat/9911467 Mesoscale and Nanoscale Physics +cond-mat/9911470 Superconductivity +cond-mat/9911471 Strongly Correlated Electrons +cond-mat/9911475 Disordered Systems and Neural Networks +cond-mat/9911476 Mesoscale and Nanoscale Physics +cond-mat/9911477 Disordered Systems and Neural Networks +cond-mat/9911478 Strongly Correlated Electrons +cond-mat/9911479 Strongly Correlated Electrons +cond-mat/9911480 Disordered Systems and Neural Networks +cond-mat/9911481 Materials Science +cond-mat/9911483 Statistical Mechanics +cond-mat/9911484 Strongly Correlated Electrons +cond-mat/9911486 +cond-mat/9911488 Statistical Mechanics +cond-mat/9911490 Mesoscale and Nanoscale Physics +cond-mat/9911491 Strongly Correlated Electrons +cond-mat/9911492 Statistical Mechanics +cond-mat/9912001 Superconductivity +cond-mat/9912004 Superconductivity +cond-mat/9912006 Statistical Mechanics +cond-mat/9912007 Strongly Correlated Electrons +cond-mat/9912010 Strongly Correlated Electrons +cond-mat/9912014 +cond-mat/9912015 Statistical Mechanics +cond-mat/9912016 Soft Condensed Matter +cond-mat/9912017 Materials Science +cond-mat/9912018 +cond-mat/9912019 Strongly Correlated Electrons +cond-mat/9912021 Strongly Correlated Electrons +cond-mat/9912023 +cond-mat/9912028 Statistical Mechanics +cond-mat/9912029 Statistical Mechanics +cond-mat/9912031 Superconductivity +cond-mat/9912032 Mesoscale and Nanoscale Physics +cond-mat/9912035 Statistical Mechanics +cond-mat/9912036 Disordered Systems and Neural Networks +cond-mat/9912037 Strongly Correlated Electrons +cond-mat/9912040 Mesoscale and Nanoscale Physics +cond-mat/9912043 Superconductivity +cond-mat/9912044 Materials Science +cond-mat/9912045 +cond-mat/9912046 Statistical Mechanics +cond-mat/9912047 Strongly Correlated Electrons +cond-mat/9912048 Mesoscale and Nanoscale Physics +cond-mat/9912050 Superconductivity +cond-mat/9912051 Statistical Mechanics +cond-mat/9912052 Superconductivity +cond-mat/9912054 +cond-mat/9912056 Statistical Mechanics +cond-mat/9912057 Mesoscale and Nanoscale Physics +cond-mat/9912059 +cond-mat/9912060 +cond-mat/9912065 Materials Science +cond-mat/9912075 Soft Condensed Matter +cond-mat/9912076 Statistical Mechanics +cond-mat/9912077 Soft Condensed Matter +cond-mat/9912078 Superconductivity +cond-mat/9912079 Mesoscale and Nanoscale Physics +cond-mat/9912082 Soft Condensed Matter +cond-mat/9912083 Mesoscale and Nanoscale Physics +cond-mat/9912085 Statistical Mechanics +cond-mat/9912086 Mesoscale and Nanoscale Physics +cond-mat/9912088 Mesoscale and Nanoscale Physics +cond-mat/9912089 +cond-mat/9912090 Statistical Mechanics +cond-mat/9912092 Statistical Mechanics +cond-mat/9912094 Disordered Systems and Neural Networks +cond-mat/9912097 Strongly Correlated Electrons +cond-mat/9912098 Materials Science +cond-mat/9912099 Strongly Correlated Electrons +cond-mat/9912100 Superconductivity +cond-mat/9912101 Disordered Systems and Neural Networks +cond-mat/9912102 Strongly Correlated Electrons +cond-mat/9912104 Mesoscale and Nanoscale Physics +cond-mat/9912105 Mesoscale and Nanoscale Physics +cond-mat/9912106 Mesoscale and Nanoscale Physics +cond-mat/9912107 Mesoscale and Nanoscale Physics +cond-mat/9912108 Soft Condensed Matter +cond-mat/9912109 Superconductivity +cond-mat/9912110 Statistical Mechanics +cond-mat/9912111 Disordered Systems and Neural Networks +cond-mat/9912114 +cond-mat/9912115 Statistical Mechanics +cond-mat/9912117 Strongly Correlated Electrons +cond-mat/9912118 Materials Science +cond-mat/9912119 Soft Condensed Matter +cond-mat/9912122 Mesoscale and Nanoscale Physics +cond-mat/9912123 Mesoscale and Nanoscale Physics +cond-mat/9912124 Superconductivity +cond-mat/9912125 Materials Science +cond-mat/9912128 Strongly Correlated Electrons +cond-mat/9912129 Mesoscale and Nanoscale Physics +cond-mat/9912130 Statistical Mechanics +cond-mat/9912131 Statistical Mechanics +cond-mat/9912134 Superconductivity +cond-mat/9912136 Strongly Correlated Electrons +cond-mat/9912139 Materials Science +cond-mat/9912140 Superconductivity +cond-mat/9912142 Strongly Correlated Electrons +cond-mat/9912147 Materials Science +cond-mat/9912151 Statistical Mechanics +cond-mat/9912152 Statistical Mechanics +cond-mat/9912155 Mesoscale and Nanoscale Physics +cond-mat/9912157 Superconductivity +cond-mat/9912158 Superconductivity +cond-mat/9912160 Superconductivity +cond-mat/9912161 Strongly Correlated Electrons +cond-mat/9912165 Strongly Correlated Electrons +cond-mat/9912166 +cond-mat/9912167 Strongly Correlated Electrons +cond-mat/9912168 Superconductivity +cond-mat/9912169 Mesoscale and Nanoscale Physics +cond-mat/9912170 Mesoscale and Nanoscale Physics +cond-mat/9912172 +cond-mat/9912178 Strongly Correlated Electrons +cond-mat/9912191 Disordered Systems and Neural Networks +cond-mat/9912192 Materials Science +cond-mat/9912194 Superconductivity +cond-mat/9912195 Superconductivity +cond-mat/9912196 Superconductivity +cond-mat/9912197 +cond-mat/9912198 Mesoscale and Nanoscale Physics +cond-mat/9912200 Strongly Correlated Electrons +cond-mat/9912201 Disordered Systems and Neural Networks +cond-mat/9912202 Materials Science +cond-mat/9912203 Superconductivity +cond-mat/9912205 Statistical Mechanics +cond-mat/9912206 Strongly Correlated Electrons +cond-mat/9912207 Statistical Mechanics +cond-mat/9912208 Strongly Correlated Electrons +cond-mat/9912210 Statistical Mechanics +cond-mat/9912211 Strongly Correlated Electrons +cond-mat/9912212 Strongly Correlated Electrons +cond-mat/9912214 Superconductivity +cond-mat/9912215 Mesoscale and Nanoscale Physics +cond-mat/9912216 +cond-mat/9912217 Soft Condensed Matter +cond-mat/9912218 Mesoscale and Nanoscale Physics +cond-mat/9912219 Strongly Correlated Electrons +cond-mat/9912221 Strongly Correlated Electrons +cond-mat/9912222 Statistical Mechanics +cond-mat/9912223 Disordered Systems and Neural Networks +cond-mat/9912225 Statistical Mechanics +cond-mat/9912227 Strongly Correlated Electrons +cond-mat/9912228 Strongly Correlated Electrons +cond-mat/9912230 Mesoscale and Nanoscale Physics +cond-mat/9912232 Superconductivity +cond-mat/9912234 Strongly Correlated Electrons +cond-mat/9912236 Superconductivity +cond-mat/9912237 Statistical Mechanics +cond-mat/9912238 Statistical Mechanics +cond-mat/9912239 Materials Science +cond-mat/9912240 Disordered Systems and Neural Networks +cond-mat/9912242 Mesoscale and Nanoscale Physics +cond-mat/9912243 +cond-mat/9912244 Strongly Correlated Electrons +cond-mat/9912245 Materials Science +cond-mat/9912247 Strongly Correlated Electrons +cond-mat/9912248 Statistical Mechanics +cond-mat/9912249 +cond-mat/9912251 +cond-mat/9912252 Soft Condensed Matter +cond-mat/9912253 Superconductivity +cond-mat/9912256 Superconductivity +cond-mat/9912257 Statistical Mechanics +cond-mat/9912258 Disordered Systems and Neural Networks +cond-mat/9912260 Disordered Systems and Neural Networks +cond-mat/9912261 Superconductivity +cond-mat/9912262 Soft Condensed Matter +cond-mat/9912263 Mesoscale and Nanoscale Physics +cond-mat/9912264 Statistical Mechanics +cond-mat/9912265 Disordered Systems and Neural Networks +cond-mat/9912266 Materials Science +cond-mat/9912267 Superconductivity +cond-mat/9912270 Strongly Correlated Electrons +cond-mat/9912272 Strongly Correlated Electrons +cond-mat/9912273 +cond-mat/9912276 Superconductivity +cond-mat/9912277 Materials Science +cond-mat/9912278 Mesoscale and Nanoscale Physics +cond-mat/9912279 Soft Condensed Matter +cond-mat/9912286 Statistical Mechanics +cond-mat/9912287 Mesoscale and Nanoscale Physics +cond-mat/9912289 Superconductivity +cond-mat/9912291 Disordered Systems and Neural Networks +cond-mat/9912292 Strongly Correlated Electrons +cond-mat/9912293 Statistical Mechanics +cond-mat/9912294 Strongly Correlated Electrons +cond-mat/9912295 Strongly Correlated Electrons +cond-mat/9912296 Mesoscale and Nanoscale Physics +cond-mat/9912297 Statistical Mechanics +cond-mat/9912298 Mesoscale and Nanoscale Physics +cond-mat/9912302 Superconductivity +cond-mat/9912303 Statistical Mechanics +cond-mat/9912304 Disordered Systems and Neural Networks +cond-mat/9912305 +cond-mat/9912306 Strongly Correlated Electrons +cond-mat/9912311 Mesoscale and Nanoscale Physics +cond-mat/9912312 Soft Condensed Matter +cond-mat/9912313 Statistical Mechanics +cond-mat/9912315 +cond-mat/9912316 Statistical Mechanics +cond-mat/9912317 Mesoscale and Nanoscale Physics +cond-mat/9912319 Strongly Correlated Electrons +cond-mat/9912320 Strongly Correlated Electrons +cond-mat/9912322 Strongly Correlated Electrons +cond-mat/9912324 Mesoscale and Nanoscale Physics +cond-mat/9912329 Statistical Mechanics +cond-mat/9912331 Statistical Mechanics +cond-mat/9912334 Statistical Mechanics +cond-mat/9912335 Superconductivity +cond-mat/9912336 Disordered Systems and Neural Networks +cond-mat/9912338 Superconductivity +cond-mat/9912339 Strongly Correlated Electrons +cond-mat/9912340 Strongly Correlated Electrons +cond-mat/9912344 Mesoscale and Nanoscale Physics +cond-mat/9912345 Strongly Correlated Electrons +cond-mat/9912346 Superconductivity +cond-mat/9912347 Statistical Mechanics +cond-mat/9912349 Strongly Correlated Electrons +cond-mat/9912350 Strongly Correlated Electrons +cond-mat/9912351 Disordered Systems and Neural Networks +cond-mat/9912352 Strongly Correlated Electrons +cond-mat/9912354 Strongly Correlated Electrons +cond-mat/9912360 Soft Condensed Matter +cond-mat/9912362 +cond-mat/9912363 Superconductivity +cond-mat/9912364 Superconductivity +cond-mat/9912365 Statistical Mechanics +cond-mat/9912366 Mesoscale and Nanoscale Physics +cond-mat/9912367 Statistical Mechanics +cond-mat/9912368 Superconductivity +cond-mat/9912371 Mesoscale and Nanoscale Physics +cond-mat/9912372 Strongly Correlated Electrons +cond-mat/9912375 Statistical Mechanics +cond-mat/9912376 Mesoscale and Nanoscale Physics +cond-mat/9912378 Mesoscale and Nanoscale Physics +cond-mat/9912379 Mesoscale and Nanoscale Physics +cond-mat/9912381 Superconductivity +cond-mat/9912382 +cond-mat/9912387 Statistical Mechanics +cond-mat/9912388 +cond-mat/9912389 Statistical Mechanics +cond-mat/9912390 Strongly Correlated Electrons +cond-mat/9912392 Strongly Correlated Electrons +cond-mat/9912396 Strongly Correlated Electrons +cond-mat/9912397 Mesoscale and Nanoscale Physics +cond-mat/9912398 Superconductivity +cond-mat/9912399 Mesoscale and Nanoscale Physics +cond-mat/9912400 +cond-mat/9912401 Superconductivity +cond-mat/9912402 +cond-mat/9912403 Strongly Correlated Electrons +cond-mat/9912406 Strongly Correlated Electrons +cond-mat/9912408 Superconductivity +cond-mat/9912409 Strongly Correlated Electrons +cond-mat/9912415 Soft Condensed Matter +cond-mat/9912416 Soft Condensed Matter +cond-mat/9912417 Statistical Mechanics +cond-mat/9912418 Superconductivity +cond-mat/9912419 Mesoscale and Nanoscale Physics +cond-mat/9912420 +cond-mat/9912422 Soft Condensed Matter +cond-mat/9912423 Mesoscale and Nanoscale Physics +cond-mat/9912427 +cond-mat/9912431 Disordered Systems and Neural Networks +cond-mat/9912434 Superconductivity +cond-mat/9912435 Superconductivity +cond-mat/9912437 Statistical Mechanics +cond-mat/9912438 Statistical Mechanics +cond-mat/9912439 +cond-mat/9912440 +cond-mat/9912441 Disordered Systems and Neural Networks +cond-mat/9912442 Disordered Systems and Neural Networks +cond-mat/9912443 Mesoscale and Nanoscale Physics +cond-mat/9912445 +cond-mat/9912446 Mesoscale and Nanoscale Physics +cond-mat/9912447 Mesoscale and Nanoscale Physics +cond-mat/9912450 Statistical Mechanics +cond-mat/9912451 Strongly Correlated Electrons +cond-mat/9912453 Superconductivity +cond-mat/9912454 Statistical Mechanics +cond-mat/9912455 Superconductivity +cond-mat/9912458 Mesoscale and Nanoscale Physics +cond-mat/9912460 Superconductivity +cond-mat/9912461 Disordered Systems and Neural Networks +cond-mat/9912462 Soft Condensed Matter +cond-mat/9912463 Statistical Mechanics +cond-mat/9912467 Materials Science +cond-mat/9912469 Strongly Correlated Electrons +cond-mat/9912470 Soft Condensed Matter +cond-mat/9912471 Strongly Correlated Electrons +cond-mat/9912474 +cond-mat/9912475 Soft Condensed Matter +cond-mat/9912476 Strongly Correlated Electrons +cond-mat/9912477 Statistical Mechanics +cond-mat/9912478 Statistical Mechanics +cond-mat/9912479 Mesoscale and Nanoscale Physics +cond-mat/9912485 Statistical Mechanics +cond-mat/9912487 +cond-mat/9912488 Superconductivity +cond-mat/9912490 Mesoscale and Nanoscale Physics +cond-mat/9912491 Mesoscale and Nanoscale Physics +cond-mat/9912493 Superconductivity +cond-mat/9912494 +cond-mat/9912495 +cs/0003084 Computation and Language +cs/0010003 Robotics +cs/9908013 Learning +gr-qc/0001001 +gr-qc/0001006 +gr-qc/0001009 +gr-qc/0001012 +gr-qc/0001013 +gr-qc/0001018 +gr-qc/0001019 +gr-qc/0001023 +gr-qc/0001025 +gr-qc/0001032 +gr-qc/0001033 +gr-qc/0001037 +gr-qc/0001038 +gr-qc/0001041 +gr-qc/0001047 +gr-qc/0001050 +gr-qc/0001053 +gr-qc/0001061 +gr-qc/0001062 +gr-qc/0001066 +gr-qc/0001069 +gr-qc/0001070 +gr-qc/0001074 +gr-qc/0001075 +gr-qc/0001077 +gr-qc/0001078 +gr-qc/0001079 +gr-qc/0001083 +gr-qc/0001085 +gr-qc/0001087 +gr-qc/0001091 +gr-qc/0001094 +gr-qc/0001097 +gr-qc/0001098 +gr-qc/0001102 +gr-qc/0001103 +gr-qc/0001104 +gr-qc/0002004 +gr-qc/0002007 +gr-qc/0002009 +gr-qc/0002010 +gr-qc/0002011 +gr-qc/0002013 +gr-qc/0002014 +gr-qc/0002018 +gr-qc/0002019 +gr-qc/0002021 +gr-qc/0002022 +gr-qc/0002024 +gr-qc/0002025 +gr-qc/0002026 +gr-qc/0002036 +gr-qc/0002041 +gr-qc/0002042 +gr-qc/0002044 +gr-qc/0002047 +gr-qc/0002048 +gr-qc/0002051 +gr-qc/0002054 +gr-qc/0002055 +gr-qc/0002057 +gr-qc/0002059 +gr-qc/0002062 +gr-qc/0002063 +gr-qc/0002068 +gr-qc/0002072 +gr-qc/0002076 +gr-qc/0002077 +gr-qc/0002080 +gr-qc/0002084 +gr-qc/0002089 +gr-qc/0002094 +gr-qc/0002095 +gr-qc/0002096 +gr-qc/0003002 +gr-qc/0003004 +gr-qc/0003010 +gr-qc/0003013 +gr-qc/0003015 +gr-qc/0003016 +gr-qc/0003020 +gr-qc/0003021 +gr-qc/0003022 +gr-qc/0003025 +gr-qc/0003031 +gr-qc/0003032 +gr-qc/0003033 +gr-qc/0003034 +gr-qc/0003035 +gr-qc/0003037 +gr-qc/0003038 +gr-qc/0003040 +gr-qc/0003041 +gr-qc/0003042 +gr-qc/0003044 +gr-qc/0003045 +gr-qc/0003050 +gr-qc/0003052 +gr-qc/0003054 +gr-qc/0003055 +gr-qc/0003059 +gr-qc/0003061 +gr-qc/0003065 +gr-qc/0003068 +gr-qc/0003069 +gr-qc/0003072 +gr-qc/0003074 +gr-qc/0003075 +gr-qc/0003083 +gr-qc/0003084 +gr-qc/0003085 +gr-qc/0003088 +gr-qc/0003091 +gr-qc/0003093 +gr-qc/0003094 +gr-qc/0003097 +gr-qc/0003098 +gr-qc/0003099 +gr-qc/0003100 +gr-qc/0003109 +gr-qc/0003111 +gr-qc/0003112 +gr-qc/0003113 +gr-qc/0003114 +gr-qc/0003116 +gr-qc/0003117 +gr-qc/0004003 +gr-qc/0004004 +gr-qc/0004008 +gr-qc/0004009 +gr-qc/0004013 +gr-qc/0004018 +gr-qc/0004019 +gr-qc/0004020 +gr-qc/0004021 +gr-qc/0004022 +gr-qc/0004024 +gr-qc/0004025 +gr-qc/0004029 +gr-qc/0004030 +gr-qc/0004037 +gr-qc/0004038 +gr-qc/0004039 +gr-qc/0004041 +gr-qc/0004046 +gr-qc/0004047 +gr-qc/0004050 +gr-qc/0004051 +gr-qc/0004054 +gr-qc/0004055 +gr-qc/0004056 +gr-qc/0004058 +gr-qc/0004060 +gr-qc/0004061 +gr-qc/0004062 +gr-qc/0004066 +gr-qc/0004068 +gr-qc/0004069 +gr-qc/0004070 +gr-qc/0004074 +gr-qc/0004076 +gr-qc/0004078 +gr-qc/0004079 +gr-qc/0005002 +gr-qc/0005003 +gr-qc/0005009 +gr-qc/0005011 +gr-qc/0005012 +gr-qc/0005013 +gr-qc/0005016 +gr-qc/0005018 +gr-qc/0005021 +gr-qc/0005022 +gr-qc/0005024 +gr-qc/0005029 +gr-qc/0005030 +gr-qc/0005034 +gr-qc/0005036 +gr-qc/0005037 +gr-qc/0005041 +gr-qc/0005044 +gr-qc/0005045 +gr-qc/0005049 +gr-qc/0005055 +gr-qc/0005056 +gr-qc/0005059 +gr-qc/0005067 +gr-qc/0005068 +gr-qc/0005079 +gr-qc/0005083 +gr-qc/0005087 +gr-qc/0005091 +gr-qc/0005093 +gr-qc/0005094 +gr-qc/0005097 +gr-qc/0005098 +gr-qc/0005102 +gr-qc/0005103 +gr-qc/0005108 +gr-qc/0005109 +gr-qc/0005114 +gr-qc/0005116 +gr-qc/0005117 +gr-qc/0005118 +gr-qc/0005123 +gr-qc/0005125 +gr-qc/0005129 +gr-qc/0005130 +gr-qc/0005134 +gr-qc/0006005 +gr-qc/0006006 +gr-qc/0006010 +gr-qc/0006011 +gr-qc/0006013 +gr-qc/0006016 +gr-qc/0006017 +gr-qc/0006020 +gr-qc/0006025 +gr-qc/0006026 +gr-qc/0006027 +gr-qc/0006028 +gr-qc/0006030 +gr-qc/0006031 +gr-qc/0006032 +gr-qc/0006036 +gr-qc/0006039 +gr-qc/0006042 +gr-qc/0006043 +gr-qc/0006047 +gr-qc/0006053 +gr-qc/0006054 +gr-qc/0006057 +gr-qc/0006058 +gr-qc/0006059 +gr-qc/0006066 +gr-qc/0006067 +gr-qc/0006070 +gr-qc/0006071 +gr-qc/0006073 +gr-qc/0006076 +gr-qc/0006078 +gr-qc/0006080 +gr-qc/0006081 +gr-qc/0006082 +gr-qc/0006085 +gr-qc/0006086 +gr-qc/0006087 +gr-qc/0006089 +gr-qc/0006090 +gr-qc/0006094 +gr-qc/0006099 +gr-qc/0006100 +gr-qc/0006101 +gr-qc/0006102 +gr-qc/0006103 +gr-qc/0006105 +gr-qc/0006109 +gr-qc/0007002 +gr-qc/0007003 +gr-qc/0007004 +gr-qc/0007008 +gr-qc/0007009 +gr-qc/0007010 +gr-qc/0007013 +gr-qc/0007016 +gr-qc/0007019 +gr-qc/0007021 +gr-qc/0007025 +gr-qc/0007028 +gr-qc/0007029 +gr-qc/0007031 +gr-qc/0007033 +gr-qc/0007034 +gr-qc/0007036 +gr-qc/0007037 +gr-qc/0007038 +gr-qc/0007039 +gr-qc/0007042 +gr-qc/0007045 +gr-qc/0007049 +gr-qc/0007054 +gr-qc/0007059 +gr-qc/0007060 +gr-qc/0007065 +gr-qc/0007068 +gr-qc/0007071 +gr-qc/0007072 +gr-qc/0007079 +gr-qc/0007081 +gr-qc/0007082 +gr-qc/0007084 +gr-qc/0007087 +gr-qc/0008001 +gr-qc/0008002 +gr-qc/0008003 +gr-qc/0008008 +gr-qc/0008010 +gr-qc/0008011 +gr-qc/0008013 +gr-qc/0008018 +gr-qc/0008019 +gr-qc/0008021 +gr-qc/0008023 +gr-qc/0008024 +gr-qc/0008026 +gr-qc/0008029 +gr-qc/0008031 +gr-qc/0008032 +gr-qc/0008039 +gr-qc/0008041 +gr-qc/0008044 +gr-qc/0008045 +gr-qc/0008046 +gr-qc/0008047 +gr-qc/0008052 +gr-qc/0008053 +gr-qc/0008057 +gr-qc/0008058 +gr-qc/0008061 +gr-qc/0008062 +gr-qc/0008063 +gr-qc/0008065 +gr-qc/0008068 +gr-qc/0008070 +gr-qc/0008072 +gr-qc/0008076 +gr-qc/0009001 +gr-qc/0009004 +gr-qc/0009005 +gr-qc/0009009 +gr-qc/0009010 +gr-qc/0009015 +gr-qc/0009017 +gr-qc/0009020 +gr-qc/0009022 +gr-qc/0009024 +gr-qc/0009025 +gr-qc/0009026 +gr-qc/0009028 +gr-qc/0009030 +gr-qc/0009034 +gr-qc/0009035 +gr-qc/0009040 +gr-qc/0009042 +gr-qc/0009043 +gr-qc/0009048 +gr-qc/0009049 +gr-qc/0009063 +gr-qc/0009064 +gr-qc/0009069 +gr-qc/0009070 +gr-qc/0009072 +gr-qc/0009073 +gr-qc/0009076 +gr-qc/0009086 +gr-qc/0009089 +gr-qc/0009090 +gr-qc/0009091 +gr-qc/0009092 +gr-qc/0009097 +gr-qc/0009099 +gr-qc/0009101 +gr-qc/0009103 +gr-qc/0009104 +gr-qc/0009105 +gr-qc/0010002 +gr-qc/0010004 +gr-qc/0010007 +gr-qc/0010012 +gr-qc/0010013 +gr-qc/0010015 +gr-qc/0010020 +gr-qc/0010022 +gr-qc/0010025 +gr-qc/0010026 +gr-qc/0010027 +gr-qc/0010028 +gr-qc/0010030 +gr-qc/0010031 +gr-qc/0010032 +gr-qc/0010034 +gr-qc/0010037 +gr-qc/0010042 +gr-qc/0010052 +gr-qc/0010053 +gr-qc/0010057 +gr-qc/0010063 +gr-qc/0010064 +gr-qc/0010066 +gr-qc/0010067 +gr-qc/0010068 +gr-qc/0010069 +gr-qc/0010071 +gr-qc/0010073 +gr-qc/0010086 +gr-qc/0010087 +gr-qc/0010088 +gr-qc/0010089 +gr-qc/0010090 +gr-qc/0010092 +gr-qc/0010096 +gr-qc/0010097 +gr-qc/0010098 +gr-qc/0010100 +gr-qc/0010104 +gr-qc/0010109 +gr-qc/0010110 +gr-qc/0010111 +gr-qc/0010112 +gr-qc/0011001 +gr-qc/0011002 +gr-qc/0011005 +gr-qc/0011009 +gr-qc/0011010 +gr-qc/0011016 +gr-qc/0011020 +gr-qc/0011024 +gr-qc/0011026 +gr-qc/0011027 +gr-qc/0011028 +gr-qc/0011029 +gr-qc/0011032 +gr-qc/0011035 +gr-qc/0011036 +gr-qc/0011037 +gr-qc/0011038 +gr-qc/0011043 +gr-qc/0011044 +gr-qc/0011046 +gr-qc/0011053 +gr-qc/0011059 +gr-qc/0011062 +gr-qc/0011063 +gr-qc/0011066 +gr-qc/0011068 +gr-qc/0011069 +gr-qc/0011071 +gr-qc/0011073 +gr-qc/0011074 +gr-qc/0011077 +gr-qc/0011080 +gr-qc/0011083 +gr-qc/0011099 +gr-qc/0011102 +gr-qc/0011105 +gr-qc/0011106 +gr-qc/0011107 +gr-qc/0011108 +gr-qc/0012002 +gr-qc/0012005 +gr-qc/0012009 +gr-qc/0012013 +gr-qc/0012014 +gr-qc/0012021 +gr-qc/0012023 +gr-qc/0012024 +gr-qc/0012026 +gr-qc/0012028 +gr-qc/0012032 +gr-qc/0012033 +gr-qc/0012045 +gr-qc/0012046 +gr-qc/0012048 +gr-qc/0012051 +gr-qc/0012052 +gr-qc/0012053 +gr-qc/0012055 +gr-qc/0012058 +gr-qc/0012060 +gr-qc/0012061 +gr-qc/0012063 +gr-qc/0012065 +gr-qc/0012066 +gr-qc/0012068 +gr-qc/0012069 +gr-qc/0012071 +gr-qc/0012073 +gr-qc/0012078 +gr-qc/0012081 +gr-qc/0012085 +gr-qc/0012089 +gr-qc/0012092 +gr-qc/0012094 +gr-qc/0012096 +gr-qc/0012097 +gr-qc/0012098 +gr-qc/0012099 +gr-qc/0012101 +gr-qc/0012103 +gr-qc/0012107 +gr-qc/0012108 +gr-qc/9801001 +gr-qc/9801008 +gr-qc/9801009 +gr-qc/9801021 +gr-qc/9801022 +gr-qc/9801024 +gr-qc/9801025 +gr-qc/9801027 +gr-qc/9801028 +gr-qc/9801032 +gr-qc/9801033 +gr-qc/9801040 +gr-qc/9801042 +gr-qc/9801045 +gr-qc/9801046 +gr-qc/9801049 +gr-qc/9801050 +gr-qc/9801052 +gr-qc/9801054 +gr-qc/9801055 +gr-qc/9801058 +gr-qc/9801059 +gr-qc/9801060 +gr-qc/9801061 +gr-qc/9801065 +gr-qc/9801073 +gr-qc/9801074 +gr-qc/9801075 +gr-qc/9801078 +gr-qc/9801080 +gr-qc/9801081 +gr-qc/9801082 +gr-qc/9801083 +gr-qc/9801084 +gr-qc/9801086 +gr-qc/9801091 +gr-qc/9801092 +gr-qc/9801094 +gr-qc/9801096 +gr-qc/9801097 +gr-qc/9801098 +gr-qc/9801099 +gr-qc/9801100 +gr-qc/9801101 +gr-qc/9801103 +gr-qc/9801104 +gr-qc/9801105 +gr-qc/9801108 +gr-qc/9801109 +gr-qc/9801110 +gr-qc/9801111 +gr-qc/9802003 +gr-qc/9802005 +gr-qc/9802006 +gr-qc/9802011 +gr-qc/9802014 +gr-qc/9802019 +gr-qc/9802021 +gr-qc/9802023 +gr-qc/9802024 +gr-qc/9802025 +gr-qc/9802026 +gr-qc/9802031 +gr-qc/9802032 +gr-qc/9802033 +gr-qc/9802035 +gr-qc/9802036 +gr-qc/9802041 +gr-qc/9802042 +gr-qc/9802043 +gr-qc/9802045 +gr-qc/9802048 +gr-qc/9802049 +gr-qc/9802050 +gr-qc/9802053 +gr-qc/9802058 +gr-qc/9802063 +gr-qc/9802069 +gr-qc/9802072 +gr-qc/9803001 +gr-qc/9803004 +gr-qc/9803009 +gr-qc/9803012 +gr-qc/9803015 +gr-qc/9803016 +gr-qc/9803018 +gr-qc/9803023 +gr-qc/9803026 +gr-qc/9803027 +gr-qc/9803029 +gr-qc/9803032 +gr-qc/9803033 +gr-qc/9803034 +gr-qc/9803035 +gr-qc/9803044 +gr-qc/9803045 +gr-qc/9803046 +gr-qc/9803047 +gr-qc/9803052 +gr-qc/9803054 +gr-qc/9803061 +gr-qc/9803063 +gr-qc/9803069 +gr-qc/9803071 +gr-qc/9803073 +gr-qc/9803077 +gr-qc/9803078 +gr-qc/9803080 +gr-qc/9803082 +gr-qc/9803085 +gr-qc/9803086 +gr-qc/9803087 +gr-qc/9803095 +gr-qc/9803097 +gr-qc/9803099 +gr-qc/9804001 +gr-qc/9804003 +gr-qc/9804007 +gr-qc/9804008 +gr-qc/9804010 +gr-qc/9804015 +gr-qc/9804017 +gr-qc/9804018 +gr-qc/9804021 +gr-qc/9804022 +gr-qc/9804025 +gr-qc/9804027 +gr-qc/9804029 +gr-qc/9804030 +gr-qc/9804034 +gr-qc/9804035 +gr-qc/9804044 +gr-qc/9804045 +gr-qc/9804050 +gr-qc/9804051 +gr-qc/9804059 +gr-qc/9804063 +gr-qc/9804065 +gr-qc/9804066 +gr-qc/9804067 +gr-qc/9804068 +gr-qc/9804070 +gr-qc/9804074 +gr-qc/9804075 +gr-qc/9804077 +gr-qc/9804079 +gr-qc/9804082 +gr-qc/9804085 +gr-qc/9804086 +gr-qc/9804087 +gr-qc/9805002 +gr-qc/9805004 +gr-qc/9805005 +gr-qc/9805008 +gr-qc/9805009 +gr-qc/9805010 +gr-qc/9805013 +gr-qc/9805017 +gr-qc/9805019 +gr-qc/9805020 +gr-qc/9805022 +gr-qc/9805023 +gr-qc/9805027 +gr-qc/9805028 +gr-qc/9805029 +gr-qc/9805032 +gr-qc/9805033 +gr-qc/9805034 +gr-qc/9805036 +gr-qc/9805041 +gr-qc/9805042 +gr-qc/9805047 +gr-qc/9805050 +gr-qc/9805051 +gr-qc/9805056 +gr-qc/9805059 +gr-qc/9805063 +gr-qc/9805064 +gr-qc/9805066 +gr-qc/9805068 +gr-qc/9805079 +gr-qc/9805080 +gr-qc/9805082 +gr-qc/9805084 +gr-qc/9805085 +gr-qc/9805087 +gr-qc/9805090 +gr-qc/9805091 +gr-qc/9805093 +gr-qc/9805094 +gr-qc/9805095 +gr-qc/9805096 +gr-qc/9805098 +gr-qc/9805099 +gr-qc/9805102 +gr-qc/9805104 +gr-qc/9806002 +gr-qc/9806004 +gr-qc/9806006 +gr-qc/9806009 +gr-qc/9806011 +gr-qc/9806013 +gr-qc/9806016 +gr-qc/9806017 +gr-qc/9806019 +gr-qc/9806020 +gr-qc/9806022 +gr-qc/9806024 +gr-qc/9806025 +gr-qc/9806027 +gr-qc/9806030 +gr-qc/9806031 +gr-qc/9806037 +gr-qc/9806041 +gr-qc/9806049 +gr-qc/9806051 +gr-qc/9806054 +gr-qc/9806056 +gr-qc/9806057 +gr-qc/9806059 +gr-qc/9806064 +gr-qc/9806065 +gr-qc/9806067 +gr-qc/9806068 +gr-qc/9806070 +gr-qc/9806071 +gr-qc/9806072 +gr-qc/9806080 +gr-qc/9806081 +gr-qc/9806082 +gr-qc/9806086 +gr-qc/9806090 +gr-qc/9806091 +gr-qc/9806094 +gr-qc/9806098 +gr-qc/9806101 +gr-qc/9806102 +gr-qc/9806104 +gr-qc/9806105 +gr-qc/9806106 +gr-qc/9806107 +gr-qc/9806111 +gr-qc/9806120 +gr-qc/9807002 +gr-qc/9807005 +gr-qc/9807007 +gr-qc/9807008 +gr-qc/9807010 +gr-qc/9807011 +gr-qc/9807012 +gr-qc/9807014 +gr-qc/9807015 +gr-qc/9807016 +gr-qc/9807017 +gr-qc/9807020 +gr-qc/9807024 +gr-qc/9807025 +gr-qc/9807026 +gr-qc/9807027 +gr-qc/9807029 +gr-qc/9807031 +gr-qc/9807034 +gr-qc/9807035 +gr-qc/9807037 +gr-qc/9807038 +gr-qc/9807047 +gr-qc/9807049 +gr-qc/9807050 +gr-qc/9807053 +gr-qc/9807055 +gr-qc/9807057 +gr-qc/9807058 +gr-qc/9807059 +gr-qc/9807060 +gr-qc/9807063 +gr-qc/9807065 +gr-qc/9807067 +gr-qc/9807070 +gr-qc/9807071 +gr-qc/9807075 +gr-qc/9807078 +gr-qc/9807079 +gr-qc/9807080 +gr-qc/9807081 +gr-qc/9808003 +gr-qc/9808004 +gr-qc/9808010 +gr-qc/9808011 +gr-qc/9808012 +gr-qc/9808014 +gr-qc/9808016 +gr-qc/9808021 +gr-qc/9808022 +gr-qc/9808023 +gr-qc/9808025 +gr-qc/9808027 +gr-qc/9808030 +gr-qc/9808032 +gr-qc/9808034 +gr-qc/9808037 +gr-qc/9808039 +gr-qc/9808040 +gr-qc/9808046 +gr-qc/9808047 +gr-qc/9808048 +gr-qc/9808049 +gr-qc/9808051 +gr-qc/9808052 +gr-qc/9808054 +gr-qc/9808056 +gr-qc/9808058 +gr-qc/9808059 +gr-qc/9808061 +gr-qc/9808062 +gr-qc/9808063 +gr-qc/9808064 +gr-qc/9808066 +gr-qc/9808068 +gr-qc/9808069 +gr-qc/9808071 +gr-qc/9808072 +gr-qc/9808075 +gr-qc/9808077 +gr-qc/9808078 +gr-qc/9808081 +gr-qc/9809003 +gr-qc/9809006 +gr-qc/9809008 +gr-qc/9809012 +gr-qc/9809017 +gr-qc/9809018 +gr-qc/9809021 +gr-qc/9809023 +gr-qc/9809026 +gr-qc/9809029 +gr-qc/9809036 +gr-qc/9809037 +gr-qc/9809038 +gr-qc/9809039 +gr-qc/9809040 +gr-qc/9809041 +gr-qc/9809042 +gr-qc/9809043 +gr-qc/9809046 +gr-qc/9809047 +gr-qc/9809048 +gr-qc/9809055 +gr-qc/9809059 +gr-qc/9809060 +gr-qc/9809062 +gr-qc/9809063 +gr-qc/9809065 +gr-qc/9809070 +gr-qc/9809071 +gr-qc/9809073 +gr-qc/9809074 +gr-qc/9809076 +gr-qc/9809077 +gr-qc/9809079 +gr-qc/9809083 +gr-qc/9809085 +gr-qc/9809089 +gr-qc/9810001 +gr-qc/9810002 +gr-qc/9810013 +gr-qc/9810015 +gr-qc/9810023 +gr-qc/9810026 +gr-qc/9810027 +gr-qc/9810029 +gr-qc/9810031 +gr-qc/9810033 +gr-qc/9810034 +gr-qc/9810040 +gr-qc/9810045 +gr-qc/9810048 +gr-qc/9810050 +gr-qc/9810061 +gr-qc/9810062 +gr-qc/9810064 +gr-qc/9810065 +gr-qc/9810070 +gr-qc/9810071 +gr-qc/9810072 +gr-qc/9810073 +gr-qc/9810079 +gr-qc/9810082 +gr-qc/9810084 +gr-qc/9810088 +gr-qc/9811007 +gr-qc/9811011 +gr-qc/9811012 +gr-qc/9811014 +gr-qc/9811015 +gr-qc/9811021 +gr-qc/9811022 +gr-qc/9811025 +gr-qc/9811026 +gr-qc/9811027 +gr-qc/9811028 +gr-qc/9811029 +gr-qc/9811031 +gr-qc/9811032 +gr-qc/9811037 +gr-qc/9811038 +gr-qc/9811039 +gr-qc/9811040 +gr-qc/9811043 +gr-qc/9811046 +gr-qc/9811050 +gr-qc/9811051 +gr-qc/9811057 +gr-qc/9811058 +gr-qc/9811059 +gr-qc/9811062 +gr-qc/9811064 +gr-qc/9811071 +gr-qc/9811074 +gr-qc/9811075 +gr-qc/9811080 +gr-qc/9811081 +gr-qc/9811082 +gr-qc/9811085 +gr-qc/9811086 +gr-qc/9811088 +gr-qc/9811091 +gr-qc/9811092 +gr-qc/9811094 +gr-qc/9811095 +gr-qc/9812001 +gr-qc/9812002 +gr-qc/9812004 +gr-qc/9812006 +gr-qc/9812007 +gr-qc/9812009 +gr-qc/9812010 +gr-qc/9812012 +gr-qc/9812014 +gr-qc/9812016 +gr-qc/9812019 +gr-qc/9812023 +gr-qc/9812025 +gr-qc/9812027 +gr-qc/9812029 +gr-qc/9812033 +gr-qc/9812035 +gr-qc/9812039 +gr-qc/9812040 +gr-qc/9812042 +gr-qc/9812043 +gr-qc/9812044 +gr-qc/9812050 +gr-qc/9812052 +gr-qc/9812056 +gr-qc/9812057 +gr-qc/9812058 +gr-qc/9812059 +gr-qc/9812060 +gr-qc/9812064 +gr-qc/9812067 +gr-qc/9812076 +gr-qc/9812078 +gr-qc/9812090 +gr-qc/9901002 +gr-qc/9901003 +gr-qc/9901004 +gr-qc/9901006 +gr-qc/9901008 +gr-qc/9901012 +gr-qc/9901016 +gr-qc/9901017 +gr-qc/9901018 +gr-qc/9901029 +gr-qc/9901034 +gr-qc/9901035 +gr-qc/9901037 +gr-qc/9901039 +gr-qc/9901048 +gr-qc/9901052 +gr-qc/9901053 +gr-qc/9901054 +gr-qc/9901055 +gr-qc/9901060 +gr-qc/9901061 +gr-qc/9901062 +gr-qc/9901063 +gr-qc/9901067 +gr-qc/9901068 +gr-qc/9901071 +gr-qc/9901072 +gr-qc/9901076 +gr-qc/9901077 +gr-qc/9901079 +gr-qc/9901081 +gr-qc/9901086 +gr-qc/9902002 +gr-qc/9902005 +gr-qc/9902009 +gr-qc/9902013 +gr-qc/9902014 +gr-qc/9902016 +gr-qc/9902018 +gr-qc/9902024 +gr-qc/9902029 +gr-qc/9902032 +gr-qc/9902034 +gr-qc/9902035 +gr-qc/9902037 +gr-qc/9902041 +gr-qc/9902045 +gr-qc/9902051 +gr-qc/9902053 +gr-qc/9902060 +gr-qc/9902062 +gr-qc/9902063 +gr-qc/9902065 +gr-qc/9902073 +gr-qc/9902076 +gr-qc/9902077 +gr-qc/9902079 +gr-qc/9902081 +gr-qc/9902082 +gr-qc/9902084 +gr-qc/9903002 +gr-qc/9903003 +gr-qc/9903004 +gr-qc/9903008 +gr-qc/9903009 +gr-qc/9903011 +gr-qc/9903012 +gr-qc/9903014 +gr-qc/9903015 +gr-qc/9903017 +gr-qc/9903019 +gr-qc/9903020 +gr-qc/9903021 +gr-qc/9903022 +gr-qc/9903027 +gr-qc/9903028 +gr-qc/9903031 +gr-qc/9903032 +gr-qc/9903036 +gr-qc/9903038 +gr-qc/9903040 +gr-qc/9903043 +gr-qc/9903047 +gr-qc/9903048 +gr-qc/9903049 +gr-qc/9903050 +gr-qc/9903051 +gr-qc/9903054 +gr-qc/9903055 +gr-qc/9903057 +gr-qc/9903062 +gr-qc/9903066 +gr-qc/9903067 +gr-qc/9903078 +gr-qc/9903080 +gr-qc/9903085 +gr-qc/9903086 +gr-qc/9903088 +gr-qc/9903092 +gr-qc/9903095 +gr-qc/9903098 +gr-qc/9903106 +gr-qc/9903111 +gr-qc/9904001 +gr-qc/9904005 +gr-qc/9904008 +gr-qc/9904011 +gr-qc/9904012 +gr-qc/9904015 +gr-qc/9904018 +gr-qc/9904019 +gr-qc/9904021 +gr-qc/9904023 +gr-qc/9904024 +gr-qc/9904025 +gr-qc/9904027 +gr-qc/9904029 +gr-qc/9904031 +gr-qc/9904034 +gr-qc/9904038 +gr-qc/9904044 +gr-qc/9904046 +gr-qc/9904051 +gr-qc/9904053 +gr-qc/9904057 +gr-qc/9904061 +gr-qc/9904063 +gr-qc/9904066 +gr-qc/9904067 +gr-qc/9904070 +gr-qc/9904071 +gr-qc/9904072 +gr-qc/9904073 +gr-qc/9904074 +gr-qc/9904075 +gr-qc/9904076 +gr-qc/9904084 +gr-qc/9905007 +gr-qc/9905008 +gr-qc/9905011 +gr-qc/9905013 +gr-qc/9905020 +gr-qc/9905022 +gr-qc/9905027 +gr-qc/9905030 +gr-qc/9905033 +gr-qc/9905034 +gr-qc/9905038 +gr-qc/9905040 +gr-qc/9905045 +gr-qc/9905054 +gr-qc/9905055 +gr-qc/9905056 +gr-qc/9905057 +gr-qc/9905058 +gr-qc/9905059 +gr-qc/9905062 +gr-qc/9905063 +gr-qc/9905067 +gr-qc/9905069 +gr-qc/9905071 +gr-qc/9905072 +gr-qc/9905078 +gr-qc/9905079 +gr-qc/9905082 +gr-qc/9905084 +gr-qc/9905085 +gr-qc/9905086 +gr-qc/9905091 +gr-qc/9905092 +gr-qc/9905093 +gr-qc/9905094 +gr-qc/9905098 +gr-qc/9905099 +gr-qc/9905100 +gr-qc/9905101 +gr-qc/9906001 +gr-qc/9906005 +gr-qc/9906006 +gr-qc/9906008 +gr-qc/9906010 +gr-qc/9906014 +gr-qc/9906016 +gr-qc/9906018 +gr-qc/9906021 +gr-qc/9906023 +gr-qc/9906024 +gr-qc/9906025 +gr-qc/9906028 +gr-qc/9906032 +gr-qc/9906033 +gr-qc/9906036 +gr-qc/9906040 +gr-qc/9906047 +gr-qc/9906048 +gr-qc/9906052 +gr-qc/9906053 +gr-qc/9906057 +gr-qc/9906058 +gr-qc/9906063 +gr-qc/9906068 +gr-qc/9906069 +gr-qc/9906070 +gr-qc/9906071 +gr-qc/9906074 +gr-qc/9906075 +gr-qc/9906076 +gr-qc/9906078 +gr-qc/9906084 +gr-qc/9906085 +gr-qc/9906087 +gr-qc/9906088 +gr-qc/9906090 +gr-qc/9906091 +gr-qc/9906096 +gr-qc/9906097 +gr-qc/9906099 +gr-qc/9906101 +gr-qc/9906102 +gr-qc/9906104 +gr-qc/9906106 +gr-qc/9906108 +gr-qc/9906112 +gr-qc/9906113 +gr-qc/9906114 +gr-qc/9906115 +gr-qc/9906116 +gr-qc/9906119 +gr-qc/9906120 +gr-qc/9906122 +gr-qc/9906124 +gr-qc/9906125 +gr-qc/9907001 +gr-qc/9907002 +gr-qc/9907004 +gr-qc/9907005 +gr-qc/9907006 +gr-qc/9907007 +gr-qc/9907009 +gr-qc/9907011 +gr-qc/9907012 +gr-qc/9907013 +gr-qc/9907014 +gr-qc/9907016 +gr-qc/9907017 +gr-qc/9907018 +gr-qc/9907019 +gr-qc/9907022 +gr-qc/9907026 +gr-qc/9907027 +gr-qc/9907029 +gr-qc/9907030 +gr-qc/9907032 +gr-qc/9907035 +gr-qc/9907036 +gr-qc/9907037 +gr-qc/9907041 +gr-qc/9907048 +gr-qc/9907049 +gr-qc/9907050 +gr-qc/9907055 +gr-qc/9907056 +gr-qc/9907057 +gr-qc/9907059 +gr-qc/9907061 +gr-qc/9907062 +gr-qc/9907064 +gr-qc/9907067 +gr-qc/9907068 +gr-qc/9907071 +gr-qc/9907072 +gr-qc/9907073 +gr-qc/9907074 +gr-qc/9907077 +gr-qc/9907081 +gr-qc/9907083 +gr-qc/9907084 +gr-qc/9907085 +gr-qc/9907086 +gr-qc/9907089 +gr-qc/9907091 +gr-qc/9907093 +gr-qc/9907095 +gr-qc/9907098 +gr-qc/9907100 +gr-qc/9907103 +gr-qc/9907104 +gr-qc/9907105 +gr-qc/9908002 +gr-qc/9908005 +gr-qc/9908006 +gr-qc/9908007 +gr-qc/9908008 +gr-qc/9908010 +gr-qc/9908014 +gr-qc/9908015 +gr-qc/9908016 +gr-qc/9908017 +gr-qc/9908018 +gr-qc/9908021 +gr-qc/9908025 +gr-qc/9908027 +gr-qc/9908031 +gr-qc/9908036 +gr-qc/9908037 +gr-qc/9908038 +gr-qc/9908039 +gr-qc/9908040 +gr-qc/9908041 +gr-qc/9908042 +gr-qc/9908043 +gr-qc/9908046 +gr-qc/9908049 +gr-qc/9908051 +gr-qc/9908053 +gr-qc/9908055 +gr-qc/9908059 +gr-qc/9908063 +gr-qc/9908068 +gr-qc/9908073 +gr-qc/9908075 +gr-qc/9908078 +gr-qc/9908082 +gr-qc/9909001 +gr-qc/9909004 +gr-qc/9909005 +gr-qc/9909013 +gr-qc/9909016 +gr-qc/9909017 +gr-qc/9909026 +gr-qc/9909027 +gr-qc/9909028 +gr-qc/9909030 +gr-qc/9909040 +gr-qc/9909043 +gr-qc/9909045 +gr-qc/9909047 +gr-qc/9909048 +gr-qc/9909049 +gr-qc/9909050 +gr-qc/9909051 +gr-qc/9909052 +gr-qc/9909053 +gr-qc/9909061 +gr-qc/9909064 +gr-qc/9909070 +gr-qc/9909073 +gr-qc/9909074 +gr-qc/9909075 +gr-qc/9909076 +gr-qc/9909078 +gr-qc/9909082 +gr-qc/9909084 +gr-qc/9909086 +gr-qc/9909089 +gr-qc/9909090 +gr-qc/9909094 +gr-qc/9909095 +gr-qc/9910001 +gr-qc/9910003 +gr-qc/9910004 +gr-qc/9910019 +gr-qc/9910023 +gr-qc/9910024 +gr-qc/9910031 +gr-qc/9910034 +gr-qc/9910040 +gr-qc/9910041 +gr-qc/9910043 +gr-qc/9910051 +gr-qc/9910054 +gr-qc/9910056 +gr-qc/9910059 +gr-qc/9910060 +gr-qc/9910061 +gr-qc/9910064 +gr-qc/9910065 +gr-qc/9910066 +gr-qc/9910069 +gr-qc/9910073 +gr-qc/9910077 +gr-qc/9910086 +gr-qc/9910087 +gr-qc/9910088 +gr-qc/9910090 +gr-qc/9910092 +gr-qc/9910099 +gr-qc/9910111 +gr-qc/9910112 +gr-qc/9910113 +gr-qc/9910116 +gr-qc/9911001 +gr-qc/9911005 +gr-qc/9911009 +gr-qc/9911010 +gr-qc/9911012 +gr-qc/9911013 +gr-qc/9911014 +gr-qc/9911017 +gr-qc/9911018 +gr-qc/9911019 +gr-qc/9911020 +gr-qc/9911026 +gr-qc/9911027 +gr-qc/9911028 +gr-qc/9911029 +gr-qc/9911036 +gr-qc/9911037 +gr-qc/9911038 +gr-qc/9911043 +gr-qc/9911047 +gr-qc/9911049 +gr-qc/9911052 +gr-qc/9911054 +gr-qc/9911058 +gr-qc/9911063 +gr-qc/9911064 +gr-qc/9911065 +gr-qc/9911070 +gr-qc/9911073 +gr-qc/9911075 +gr-qc/9911076 +gr-qc/9911079 +gr-qc/9911082 +gr-qc/9911085 +gr-qc/9911087 +gr-qc/9911088 +gr-qc/9911089 +gr-qc/9911090 +gr-qc/9911091 +gr-qc/9911093 +gr-qc/9911097 +gr-qc/9911098 +gr-qc/9911104 +gr-qc/9911109 +gr-qc/9911112 +gr-qc/9911113 +gr-qc/9911115 +gr-qc/9911116 +gr-qc/9911117 +gr-qc/9911118 +gr-qc/9911119 +gr-qc/9911120 +gr-qc/9911122 +gr-qc/9912001 +gr-qc/9912002 +gr-qc/9912005 +gr-qc/9912006 +gr-qc/9912008 +gr-qc/9912009 +gr-qc/9912013 +gr-qc/9912016 +gr-qc/9912017 +gr-qc/9912019 +gr-qc/9912020 +gr-qc/9912022 +gr-qc/9912023 +gr-qc/9912026 +gr-qc/9912029 +gr-qc/9912030 +gr-qc/9912036 +gr-qc/9912039 +gr-qc/9912044 +gr-qc/9912048 +gr-qc/9912049 +gr-qc/9912052 +gr-qc/9912053 +gr-qc/9912057 +gr-qc/9912060 +gr-qc/9912063 +gr-qc/9912064 +gr-qc/9912065 +gr-qc/9912066 +gr-qc/9912068 +gr-qc/9912069 +gr-qc/9912071 +gr-qc/9912075 +gr-qc/9912077 +gr-qc/9912078 +gr-qc/9912080 +gr-qc/9912085 +gr-qc/9912090 +gr-qc/9912091 +gr-qc/9912095 +gr-qc/9912097 +gr-qc/9912099 +gr-qc/9912101 +gr-qc/9912102 +gr-qc/9912105 +gr-qc/9912106 +gr-qc/9912108 +gr-qc/9912111 +gr-qc/9912112 +gr-qc/9912113 +gr-qc/9912122 +hep-ex/0001011 Experiment +hep-ex/0001018 Experiment +hep-ex/0001026 Experiment +hep-ex/0001027 Experiment +hep-ex/0001028 Experiment +hep-ex/0001029 Experiment +hep-ex/0001031 Experiment +hep-ex/0001032 Experiment +hep-ex/0001033 Experiment +hep-ex/0001039 Experiment +hep-ex/0001043 Experiment +hep-ex/0001052 Experiment +hep-ex/0001057 Experiment +hep-ex/0001058 Experiment +hep-ex/0001061 Experiment +hep-ex/0002002 Experiment +hep-ex/0002013 Experiment +hep-ex/0002014 Experiment +hep-ex/0002019 Experiment +hep-ex/0002020 Experiment +hep-ex/0002027 Experiment +hep-ex/0002030 Experiment +hep-ex/0002044 Experiment +hep-ex/0002047 Experiment +hep-ex/0002050 Experiment +hep-ex/0002051 Experiment +hep-ex/0002060 Experiment +hep-ex/0003007 Experiment +hep-ex/0003022 Experiment +hep-ex/0003029 Experiment +hep-ex/0004008 Experiment +hep-ex/0004018 Experiment +hep-ex/0004020 Experiment +hep-ex/0004025 Experiment +hep-ex/0005006 Experiment +hep-ex/0005008 Experiment +hep-ex/0005036 Experiment +hep-ex/0005039 Experiment +hep-ex/0005046 Experiment +hep-ex/0006012 Experiment +hep-ex/0006014 Experiment +hep-ex/0006015 Experiment +hep-ex/0006016 Experiment +hep-ex/0006021 Experiment +hep-ex/0006027 Experiment +hep-ex/0006033 Experiment +hep-ex/0006034 Experiment +hep-ex/0006040 Experiment +hep-ex/0007002 Experiment +hep-ex/0007007 Experiment +hep-ex/0007031 Experiment +hep-ex/0007048 Experiment +hep-ex/0007054 Experiment +hep-ex/0007055 Experiment +hep-ex/0007058 Experiment +hep-ex/0008007 Experiment +hep-ex/0008008 Experiment +hep-ex/0008036 Experiment +hep-ex/0008044 Experiment +hep-ex/0008046 Experiment +hep-ex/0008071 Experiment +hep-ex/0009008 Experiment +hep-ex/0009014 Experiment +hep-ex/0009027 Experiment +hep-ex/0009036 Experiment +hep-ex/0009042 Experiment +hep-ex/0009046 Experiment +hep-ex/0009056 Experiment +hep-ex/0009061 Experiment +hep-ex/0009066 Experiment +hep-ex/0009067 Experiment +hep-ex/0010028 Experiment +hep-ex/0010030 Experiment +hep-ex/0010034 Experiment +hep-ex/0010042 Experiment +hep-ex/0010048 Experiment +hep-ex/0010051 Experiment +hep-ex/0010056 Experiment +hep-ex/0010060 Experiment +hep-ex/0010061 Experiment +hep-ex/0010064 Experiment +hep-ex/0010073 Experiment +hep-ex/0010078 Experiment +hep-ex/0011001 Experiment +hep-ex/0011006 Experiment +hep-ex/0011007 Experiment +hep-ex/0011021 Experiment +hep-ex/0011023 Experiment +hep-ex/0011025 Experiment +hep-ex/0011028 Experiment +hep-ex/0011031 Experiment +hep-ex/0011032 Experiment +hep-ex/0011033 Experiment +hep-ex/0011038 Experiment +hep-ex/0011039 Experiment +hep-ex/0011040 Experiment +hep-ex/0011042 Experiment +hep-ex/0011055 Experiment +hep-ex/0011056 Experiment +hep-ex/0011057 Experiment +hep-ex/0011062 Experiment +hep-ex/0011063 Experiment +hep-ex/0011072 Experiment +hep-ex/0011082 Experiment +hep-ex/0011089 Experiment +hep-ex/0011092 Experiment +hep-ex/0011099 Experiment +hep-ex/0012001 Experiment +hep-ex/0012002 Experiment +hep-ex/0012003 Experiment +hep-ex/0012006 Experiment +hep-ex/0012015 Experiment +hep-ex/0012016 Experiment +hep-ex/0012021 Experiment +hep-ex/0012022 Experiment +hep-ex/0012024 Experiment +hep-ex/0012027 Experiment +hep-ex/0012028 Experiment +hep-ex/0012047 Experiment +hep-ex/0012050 Experiment +hep-ex/0012055 Experiment +hep-ex/9801001 Experiment +hep-ex/9801008 Experiment +hep-ex/9801009 Experiment +hep-ex/9801017 Experiment +hep-ex/9801021 Experiment +hep-ex/9802003 Experiment +hep-ex/9802005 Experiment +hep-ex/9802009 Experiment +hep-ex/9802021 Experiment +hep-ex/9803007 Experiment +hep-ex/9803025 Experiment +hep-ex/9804002 Experiment +hep-ex/9805001 Experiment +hep-ex/9805024 Experiment +hep-ex/9805032 Experiment +hep-ex/9806001 Experiment +hep-ex/9806015 Experiment +hep-ex/9806037 Experiment +hep-ex/9807012 Experiment +hep-ex/9808002 Experiment +hep-ex/9808005 Experiment +hep-ex/9808007 Experiment +hep-ex/9808018 Experiment +hep-ex/9808033 Experiment +hep-ex/9809007 Experiment +hep-ex/9809008 Experiment +hep-ex/9809020 Experiment +hep-ex/9809021 Experiment +hep-ex/9810023 Experiment +hep-ex/9810025 Experiment +hep-ex/9810033 Experiment +hep-ex/9810040 Experiment +hep-ex/9811001 Experiment +hep-ex/9811017 Experiment +hep-ex/9811026 Experiment +hep-ex/9811037 Experiment +hep-ex/9811044 Experiment +hep-ex/9811048 Experiment +hep-ex/9812001 Experiment +hep-ex/9812002 Experiment +hep-ex/9812007 Experiment +hep-ex/9812019 Experiment +hep-ex/9812025 Experiment +hep-ex/9812027 Experiment +hep-ex/9812028 Experiment +hep-ex/9812032 Experiment +hep-ex/9901001 Experiment +hep-ex/9901003 Experiment +hep-ex/9901008 Experiment +hep-ex/9901028 Experiment +hep-ex/9901033 Experiment +hep-ex/9901038 Experiment +hep-ex/9902008 Experiment +hep-ex/9902015 Experiment +hep-ex/9902016 Experiment +hep-ex/9902017 Experiment +hep-ex/9902025 Experiment +hep-ex/9902026 Experiment +hep-ex/9902032 Experiment +hep-ex/9903001 Experiment +hep-ex/9903010 Experiment +hep-ex/9903023 Experiment +hep-ex/9903058 Experiment +hep-ex/9904001 Experiment +hep-ex/9904003 Experiment +hep-ex/9905006 Experiment +hep-ex/9905008 Experiment +hep-ex/9905010 Experiment +hep-ex/9905011 Experiment +hep-ex/9905041 Experiment +hep-ex/9905053 Experiment +hep-ex/9905055 Experiment +hep-ex/9905059 Experiment +hep-ex/9905061 Experiment +hep-ex/9906002 Experiment +hep-ex/9906005 Experiment +hep-ex/9906006 Experiment +hep-ex/9906007 Experiment +hep-ex/9906008 Experiment +hep-ex/9906012 Experiment +hep-ex/9906014 Experiment +hep-ex/9906016 Experiment +hep-ex/9906018 Experiment +hep-ex/9906028 Experiment +hep-ex/9907012 Experiment +hep-ex/9907016 Experiment +hep-ex/9907018 Experiment +hep-ex/9907059 Experiment +hep-ex/9908003 Experiment +hep-ex/9908004 Experiment +hep-ex/9908041 Experiment +hep-ex/9908066 Experiment +hep-ex/9909012 Experiment +hep-ex/9909021 Experiment +hep-ex/9909025 Experiment +hep-ex/9909031 Experiment +hep-ex/9909035 Experiment +hep-ex/9909048 Experiment +hep-ex/9910041 Experiment +hep-ex/9910042 Experiment +hep-ex/9911001 Experiment +hep-ex/9911006 Experiment +hep-ex/9911011 Experiment +hep-ex/9911013 Experiment +hep-ex/9911021 Experiment +hep-ex/9911023 Experiment +hep-ex/9911024 Experiment +hep-ex/9911042 Experiment +hep-ex/9911048 Experiment +hep-ex/9911051 Experiment +hep-ex/9911052 Experiment +hep-ex/9912006 Experiment +hep-ex/9912008 Experiment +hep-ex/9912015 Experiment +hep-ex/9912034 Experiment +hep-ex/9912035 Experiment +hep-ex/9912046 Experiment +hep-ex/9912047 Experiment +hep-ex/9912055 Experiment +hep-ex/9912060 Experiment +hep-lat/0001002 Lattice +hep-lat/0001016 Lattice +hep-lat/0001020 Lattice +hep-lat/0001021 Lattice +hep-lat/0001026 Lattice +hep-lat/0001028 Lattice +hep-lat/0001029 Lattice +hep-lat/0002001 Lattice +hep-lat/0002002 Lattice +hep-lat/0002003 Lattice +hep-lat/0002004 Lattice +hep-lat/0002008 Lattice +hep-lat/0002009 Lattice +hep-lat/0002011 Lattice +hep-lat/0002014 Lattice +hep-lat/0002015 Lattice +hep-lat/0002017 Lattice +hep-lat/0002018 Lattice +hep-lat/0002023 Lattice +hep-lat/0002025 Lattice +hep-lat/0002026 Lattice +hep-lat/0002027 Lattice +hep-lat/0002028 Lattice +hep-lat/0002029 Lattice +hep-lat/0002031 Lattice +hep-lat/0002032 Lattice +hep-lat/0003002 Lattice +hep-lat/0003003 Lattice +hep-lat/0003004 Lattice +hep-lat/0003005 Lattice +hep-lat/0003010 Lattice +hep-lat/0003011 Lattice +hep-lat/0003012 Lattice +hep-lat/0003013 Lattice +hep-lat/0003014 Lattice +hep-lat/0003016 Lattice +hep-lat/0003017 Lattice +hep-lat/0003018 Lattice +hep-lat/0003019 Lattice +hep-lat/0003020 Lattice +hep-lat/0003021 Lattice +hep-lat/0003022 Lattice +hep-lat/0003023 Lattice +hep-lat/0003024 Lattice +hep-lat/0004002 Lattice +hep-lat/0004003 Lattice +hep-lat/0004004 Lattice +hep-lat/0004005 Lattice +hep-lat/0004007 Lattice +hep-lat/0004009 Lattice +hep-lat/0004011 Lattice +hep-lat/0004012 Lattice +hep-lat/0004013 Lattice +hep-lat/0004014 Lattice +hep-lat/0004015 Lattice +hep-lat/0004016 Lattice +hep-lat/0004017 Lattice +hep-lat/0004018 Lattice +hep-lat/0004021 Lattice +hep-lat/0004022 Lattice +hep-lat/0004023 Lattice +hep-lat/0004027 Lattice +hep-lat/0005003 Lattice +hep-lat/0005004 Lattice +hep-lat/0005007 Lattice +hep-lat/0005009 Lattice +hep-lat/0005010 Lattice +hep-lat/0005011 Lattice +hep-lat/0005012 Lattice +hep-lat/0005015 Lattice +hep-lat/0005016 Lattice +hep-lat/0005017 Lattice +hep-lat/0005018 Lattice +hep-lat/0005021 Lattice +hep-lat/0005023 Lattice +hep-lat/0005024 Lattice +hep-lat/0005026 Lattice +hep-lat/0006001 Lattice +hep-lat/0006007 Lattice +hep-lat/0006008 Lattice +hep-lat/0006010 Lattice +hep-lat/0006013 Lattice +hep-lat/0006014 Lattice +hep-lat/0006015 Lattice +hep-lat/0006016 Lattice +hep-lat/0006017 Lattice +hep-lat/0006019 Lattice +hep-lat/0006021 Lattice +hep-lat/0006022 Lattice +hep-lat/0006023 Lattice +hep-lat/0006027 Lattice +hep-lat/0006028 Lattice +hep-lat/0006029 Lattice +hep-lat/0006030 Lattice +hep-lat/0007005 Lattice +hep-lat/0007006 Lattice +hep-lat/0007007 Lattice +hep-lat/0007009 Lattice +hep-lat/0007010 Lattice +hep-lat/0007011 Lattice +hep-lat/0007012 Lattice +hep-lat/0007014 Lattice +hep-lat/0007019 Lattice +hep-lat/0007021 Lattice +hep-lat/0007022 Lattice +hep-lat/0007023 Lattice +hep-lat/0007024 Lattice +hep-lat/0007033 Lattice +hep-lat/0007034 Lattice +hep-lat/0007038 Lattice +hep-lat/0007041 Lattice +hep-lat/0007043 Lattice +hep-lat/0008001 Lattice +hep-lat/0008002 Lattice +hep-lat/0008003 Lattice +hep-lat/0008006 Lattice +hep-lat/0008015 Lattice +hep-lat/0008016 Lattice +hep-lat/0008020 Lattice +hep-lat/0008022 Lattice +hep-lat/0008023 Lattice +hep-lat/0008024 Lattice +hep-lat/0008025 Lattice +hep-lat/0008027 Lattice +hep-lat/0009002 Lattice +hep-lat/0009005 Lattice +hep-lat/0009006 Lattice +hep-lat/0009012 Lattice +hep-lat/0009013 Lattice +hep-lat/0009018 Lattice +hep-lat/0009019 Lattice +hep-lat/0009022 Lattice +hep-lat/0009023 Lattice +hep-lat/0009025 Lattice +hep-lat/0009030 Lattice +hep-lat/0009031 Lattice +hep-lat/0009034 Lattice +hep-lat/0009036 Lattice +hep-lat/0009037 Lattice +hep-lat/0009039 Lattice +hep-lat/0010001 Lattice +hep-lat/0010002 Lattice +hep-lat/0010003 Lattice +hep-lat/0010004 Lattice +hep-lat/0010005 Lattice +hep-lat/0010006 Lattice +hep-lat/0010007 Lattice +hep-lat/0010008 Lattice +hep-lat/0010010 Lattice +hep-lat/0010011 Lattice +hep-lat/0010012 Lattice +hep-lat/0010013 Lattice +hep-lat/0010015 Lattice +hep-lat/0010017 Lattice +hep-lat/0010018 Lattice +hep-lat/0010022 Lattice +hep-lat/0010023 Lattice +hep-lat/0010026 Lattice +hep-lat/0010029 Lattice +hep-lat/0010030 Lattice +hep-lat/0010031 Lattice +hep-lat/0010032 Lattice +hep-lat/0010033 Lattice +hep-lat/0010034 Lattice +hep-lat/0010037 Lattice +hep-lat/0010039 Lattice +hep-lat/0010040 Lattice +hep-lat/0010042 Lattice +hep-lat/0010044 Lattice +hep-lat/0010045 Lattice +hep-lat/0010046 Lattice +hep-lat/0010047 Lattice +hep-lat/0010050 Lattice +hep-lat/0010051 Lattice +hep-lat/0010052 Lattice +hep-lat/0010054 Lattice +hep-lat/0010055 Lattice +hep-lat/0010056 Lattice +hep-lat/0010057 Lattice +hep-lat/0010059 Lattice +hep-lat/0010060 Lattice +hep-lat/0010061 Lattice +hep-lat/0010063 Lattice +hep-lat/0010064 Lattice +hep-lat/0010067 Lattice +hep-lat/0010069 Lattice +hep-lat/0010071 Lattice +hep-lat/0010072 Lattice +hep-lat/0010073 Lattice +hep-lat/0010074 Lattice +hep-lat/0010075 Lattice +hep-lat/0010076 Lattice +hep-lat/0010080 Lattice +hep-lat/0010081 Lattice +hep-lat/0010082 Lattice +hep-lat/0010083 Lattice +hep-lat/0010084 Lattice +hep-lat/0010085 Lattice +hep-lat/0010086 Lattice +hep-lat/0010087 Lattice +hep-lat/0010088 Lattice +hep-lat/0010089 Lattice +hep-lat/0010090 Lattice +hep-lat/0010091 Lattice +hep-lat/0010093 Lattice +hep-lat/0010095 Lattice +hep-lat/0010096 Lattice +hep-lat/0010097 Lattice +hep-lat/0011001 Lattice +hep-lat/0011002 Lattice +hep-lat/0011003 Lattice +hep-lat/0011006 Lattice +hep-lat/0011008 Lattice +hep-lat/0011011 Lattice +hep-lat/0011012 Lattice +hep-lat/0011014 Lattice +hep-lat/0011015 Lattice +hep-lat/0011016 Lattice +hep-lat/0011019 Lattice +hep-lat/0011020 Lattice +hep-lat/0011021 Lattice +hep-lat/0011022 Lattice +hep-lat/0011023 Lattice +hep-lat/0011026 Lattice +hep-lat/0011027 Lattice +hep-lat/0011031 Lattice +hep-lat/0011033 Lattice +hep-lat/0011034 Lattice +hep-lat/0011037 Lattice +hep-lat/0011039 Lattice +hep-lat/0011040 Lattice +hep-lat/0011041 Lattice +hep-lat/0011042 Lattice +hep-lat/0011043 Lattice +hep-lat/0011045 Lattice +hep-lat/0011048 Lattice +hep-lat/0011049 Lattice +hep-lat/0011051 Lattice +hep-lat/0011052 Lattice +hep-lat/0011054 Lattice +hep-lat/0011055 Lattice +hep-lat/0011056 Lattice +hep-lat/0011058 Lattice +hep-lat/0011059 Lattice +hep-lat/0011061 Lattice +hep-lat/0011062 Lattice +hep-lat/0011063 Lattice +hep-lat/0011064 Lattice +hep-lat/0011066 Lattice +hep-lat/0011067 Lattice +hep-lat/0011069 Lattice +hep-lat/0011070 Lattice +hep-lat/0011071 Lattice +hep-lat/0011074 Lattice +hep-lat/0011075 Lattice +hep-lat/0011077 Lattice +hep-lat/0011078 Lattice +hep-lat/0011079 Lattice +hep-lat/0011081 Lattice +hep-lat/0011084 Lattice +hep-lat/0011085 Lattice +hep-lat/0011088 Lattice +hep-lat/0011089 Lattice +hep-lat/0012002 Lattice +hep-lat/0012004 Lattice +hep-lat/0012007 Lattice +hep-lat/0012013 Lattice +hep-lat/0012014 Lattice +hep-lat/0012015 Lattice +hep-lat/0012016 Lattice +hep-lat/0012019 Lattice +hep-lat/0012021 Lattice +hep-lat/0012022 Lattice +hep-lat/0012024 Lattice +hep-lat/0012025 Lattice +hep-lat/0012026 Lattice +hep-lat/0012029 Lattice +hep-lat/9801001 Lattice +hep-lat/9801003 Lattice +hep-lat/9801007 Lattice +hep-lat/9801013 Lattice +hep-lat/9801021 Lattice +hep-lat/9801022 Lattice +hep-lat/9801028 Lattice +hep-lat/9801030 Lattice +hep-lat/9801031 Lattice +hep-lat/9801032 Lattice +hep-lat/9801033 Lattice +hep-lat/9801035 Lattice +hep-lat/9801039 Lattice +hep-lat/9801040 Lattice +hep-lat/9802002 Lattice +hep-lat/9802004 Lattice +hep-lat/9802007 Lattice +hep-lat/9802009 Lattice +hep-lat/9802010 Lattice +hep-lat/9802011 Lattice +hep-lat/9802013 Lattice +hep-lat/9802016 Lattice +hep-lat/9802021 Lattice +hep-lat/9802022 Lattice +hep-lat/9802023 Lattice +hep-lat/9802024 Lattice +hep-lat/9802025 Lattice +hep-lat/9802026 Lattice +hep-lat/9802027 Lattice +hep-lat/9802028 Lattice +hep-lat/9802030 Lattice +hep-lat/9802033 Lattice +hep-lat/9802034 Lattice +hep-lat/9802035 Lattice +hep-lat/9802037 Lattice +hep-lat/9803002 Lattice +hep-lat/9803003 Lattice +hep-lat/9803005 Lattice +hep-lat/9803007 Lattice +hep-lat/9803010 Lattice +hep-lat/9803012 Lattice +hep-lat/9803014 Lattice +hep-lat/9803017 Lattice +hep-lat/9803020 Lattice +hep-lat/9803021 Lattice +hep-lat/9803022 Lattice +hep-lat/9803024 Lattice +hep-lat/9803025 Lattice +hep-lat/9803026 Lattice +hep-lat/9803028 Lattice +hep-lat/9804007 Lattice +hep-lat/9804008 Lattice +hep-lat/9804010 Lattice +hep-lat/9804011 Lattice +hep-lat/9804012 Lattice +hep-lat/9804013 Lattice +hep-lat/9804018 Lattice +hep-lat/9804019 Lattice +hep-lat/9804020 Lattice +hep-lat/9804022 Lattice +hep-lat/9804024 Lattice +hep-lat/9804032 Lattice +hep-lat/9805001 Lattice +hep-lat/9805002 Lattice +hep-lat/9805003 Lattice +hep-lat/9805005 Lattice +hep-lat/9805008 Lattice +hep-lat/9805010 Lattice +hep-lat/9805012 Lattice +hep-lat/9805013 Lattice +hep-lat/9805014 Lattice +hep-lat/9805021 Lattice +hep-lat/9805022 Lattice +hep-lat/9805024 Lattice +hep-lat/9805026 Lattice +hep-lat/9806002 Lattice +hep-lat/9806006 Lattice +hep-lat/9806007 Lattice +hep-lat/9806009 Lattice +hep-lat/9806011 Lattice +hep-lat/9806012 Lattice +hep-lat/9806013 Lattice +hep-lat/9806015 Lattice +hep-lat/9806016 Lattice +hep-lat/9806017 Lattice +hep-lat/9806020 Lattice +hep-lat/9806022 Lattice +hep-lat/9806023 Lattice +hep-lat/9806025 Lattice +hep-lat/9806026 Lattice +hep-lat/9806030 Lattice +hep-lat/9806032 Lattice +hep-lat/9806033 Lattice +hep-lat/9806034 Lattice +hep-lat/9806035 Lattice +hep-lat/9806037 Lattice +hep-lat/9807001 Lattice +hep-lat/9807003 Lattice +hep-lat/9807004 Lattice +hep-lat/9807005 Lattice +hep-lat/9807007 Lattice +hep-lat/9807009 Lattice +hep-lat/9807010 Lattice +hep-lat/9807013 Lattice +hep-lat/9807014 Lattice +hep-lat/9807018 Lattice +hep-lat/9807019 Lattice +hep-lat/9807020 Lattice +hep-lat/9807021 Lattice +hep-lat/9807022 Lattice +hep-lat/9807026 Lattice +hep-lat/9807027 Lattice +hep-lat/9807029 Lattice +hep-lat/9807031 Lattice +hep-lat/9807035 Lattice +hep-lat/9807037 Lattice +hep-lat/9807038 Lattice +hep-lat/9807040 Lattice +hep-lat/9807045 Lattice +hep-lat/9808002 Lattice +hep-lat/9808003 Lattice +hep-lat/9808005 Lattice +hep-lat/9808006 Lattice +hep-lat/9808007 Lattice +hep-lat/9808008 Lattice +hep-lat/9808009 Lattice +hep-lat/9808011 Lattice +hep-lat/9808012 Lattice +hep-lat/9808014 Lattice +hep-lat/9808015 Lattice +hep-lat/9808017 Lattice +hep-lat/9808018 Lattice +hep-lat/9808019 Lattice +hep-lat/9808020 Lattice +hep-lat/9808021 Lattice +hep-lat/9808022 Lattice +hep-lat/9808023 Lattice +hep-lat/9808024 Lattice +hep-lat/9808025 Lattice +hep-lat/9808026 Lattice +hep-lat/9808027 Lattice +hep-lat/9808029 Lattice +hep-lat/9808030 Lattice +hep-lat/9808031 Lattice +hep-lat/9808032 Lattice +hep-lat/9808034 Lattice +hep-lat/9808035 Lattice +hep-lat/9808038 Lattice +hep-lat/9808039 Lattice +hep-lat/9808040 Lattice +hep-lat/9808041 Lattice +hep-lat/9808042 Lattice +hep-lat/9808043 Lattice +hep-lat/9808045 Lattice +hep-lat/9808046 Lattice +hep-lat/9808048 Lattice +hep-lat/9808049 Lattice +hep-lat/9808050 Lattice +hep-lat/9808051 Lattice +hep-lat/9808052 Lattice +hep-lat/9808054 Lattice +hep-lat/9808057 Lattice +hep-lat/9809002 Lattice +hep-lat/9809004 Lattice +hep-lat/9809005 Lattice +hep-lat/9809007 Lattice +hep-lat/9809008 Lattice +hep-lat/9809009 Lattice +hep-lat/9809012 Lattice +hep-lat/9809014 Lattice +hep-lat/9809017 Lattice +hep-lat/9809019 Lattice +hep-lat/9809020 Lattice +hep-lat/9809021 Lattice +hep-lat/9809022 Lattice +hep-lat/9809023 Lattice +hep-lat/9809024 Lattice +hep-lat/9809026 Lattice +hep-lat/9809028 Lattice +hep-lat/9809032 Lattice +hep-lat/9809036 Lattice +hep-lat/9809037 Lattice +hep-lat/9809038 Lattice +hep-lat/9809039 Lattice +hep-lat/9809040 Lattice +hep-lat/9809041 Lattice +hep-lat/9809042 Lattice +hep-lat/9809043 Lattice +hep-lat/9809046 Lattice +hep-lat/9809047 Lattice +hep-lat/9809048 Lattice +hep-lat/9809049 Lattice +hep-lat/9809056 Lattice +hep-lat/9809057 Lattice +hep-lat/9809058 Lattice +hep-lat/9809060 Lattice +hep-lat/9809061 Lattice +hep-lat/9809062 Lattice +hep-lat/9809063 Lattice +hep-lat/9809065 Lattice +hep-lat/9809067 Lattice +hep-lat/9809068 Lattice +hep-lat/9809069 Lattice +hep-lat/9809070 Lattice +hep-lat/9809071 Lattice +hep-lat/9809072 Lattice +hep-lat/9809073 Lattice +hep-lat/9809080 Lattice +hep-lat/9809081 Lattice +hep-lat/9809082 Lattice +hep-lat/9809084 Lattice +hep-lat/9809088 Lattice +hep-lat/9809089 Lattice +hep-lat/9809090 Lattice +hep-lat/9809092 Lattice +hep-lat/9809093 Lattice +hep-lat/9809096 Lattice +hep-lat/9809097 Lattice +hep-lat/9809098 Lattice +hep-lat/9809099 Lattice +hep-lat/9809100 Lattice +hep-lat/9809101 Lattice +hep-lat/9809102 Lattice +hep-lat/9809103 Lattice +hep-lat/9809104 Lattice +hep-lat/9809106 Lattice +hep-lat/9809107 Lattice +hep-lat/9809108 Lattice +hep-lat/9809110 Lattice +hep-lat/9809111 Lattice +hep-lat/9809113 Lattice +hep-lat/9809114 Lattice +hep-lat/9809115 Lattice +hep-lat/9809116 Lattice +hep-lat/9809121 Lattice +hep-lat/9809122 Lattice +hep-lat/9809123 Lattice +hep-lat/9809125 Lattice +hep-lat/9809126 Lattice +hep-lat/9809127 Lattice +hep-lat/9809128 Lattice +hep-lat/9809130 Lattice +hep-lat/9809131 Lattice +hep-lat/9809133 Lattice +hep-lat/9809135 Lattice +hep-lat/9809136 Lattice +hep-lat/9809137 Lattice +hep-lat/9809138 Lattice +hep-lat/9809140 Lattice +hep-lat/9809143 Lattice +hep-lat/9809144 Lattice +hep-lat/9809145 Lattice +hep-lat/9809147 Lattice +hep-lat/9809148 Lattice +hep-lat/9809149 Lattice +hep-lat/9809150 Lattice +hep-lat/9809151 Lattice +hep-lat/9809152 Lattice +hep-lat/9809154 Lattice +hep-lat/9809155 Lattice +hep-lat/9809159 Lattice +hep-lat/9809161 Lattice +hep-lat/9809162 Lattice +hep-lat/9809163 Lattice +hep-lat/9809166 Lattice +hep-lat/9809167 Lattice +hep-lat/9809168 Lattice +hep-lat/9809169 Lattice +hep-lat/9809170 Lattice +hep-lat/9809174 Lattice +hep-lat/9809175 Lattice +hep-lat/9809179 Lattice +hep-lat/9809182 Lattice +hep-lat/9809184 Lattice +hep-lat/9809186 Lattice +hep-lat/9810001 Lattice +hep-lat/9810003 Lattice +hep-lat/9810004 Lattice +hep-lat/9810007 Lattice +hep-lat/9810008 Lattice +hep-lat/9810011 Lattice +hep-lat/9810012 Lattice +hep-lat/9810013 Lattice +hep-lat/9810014 Lattice +hep-lat/9810017 Lattice +hep-lat/9810019 Lattice +hep-lat/9810020 Lattice +hep-lat/9810022 Lattice +hep-lat/9810023 Lattice +hep-lat/9810025 Lattice +hep-lat/9810028 Lattice +hep-lat/9810030 Lattice +hep-lat/9810031 Lattice +hep-lat/9810032 Lattice +hep-lat/9810033 Lattice +hep-lat/9810034 Lattice +hep-lat/9810036 Lattice +hep-lat/9810037 Lattice +hep-lat/9810038 Lattice +hep-lat/9810039 Lattice +hep-lat/9810040 Lattice +hep-lat/9810041 Lattice +hep-lat/9810042 Lattice +hep-lat/9810043 Lattice +hep-lat/9810045 Lattice +hep-lat/9810046 Lattice +hep-lat/9810047 Lattice +hep-lat/9810048 Lattice +hep-lat/9810049 Lattice +hep-lat/9810050 Lattice +hep-lat/9810053 Lattice +hep-lat/9810054 Lattice +hep-lat/9810055 Lattice +hep-lat/9810056 Lattice +hep-lat/9810058 Lattice +hep-lat/9810059 Lattice +hep-lat/9810060 Lattice +hep-lat/9810063 Lattice +hep-lat/9810066 Lattice +hep-lat/9810067 Lattice +hep-lat/9811001 Lattice +hep-lat/9811005 Lattice +hep-lat/9811007 Lattice +hep-lat/9811008 Lattice +hep-lat/9811011 Lattice +hep-lat/9811013 Lattice +hep-lat/9811014 Lattice +hep-lat/9811015 Lattice +hep-lat/9811016 Lattice +hep-lat/9811020 Lattice +hep-lat/9811021 Lattice +hep-lat/9811022 Lattice +hep-lat/9811024 Lattice +hep-lat/9811025 Lattice +hep-lat/9811026 Lattice +hep-lat/9811028 Lattice +hep-lat/9811029 Lattice +hep-lat/9811030 Lattice +hep-lat/9811033 Lattice +hep-lat/9812003 Lattice +hep-lat/9812005 Lattice +hep-lat/9812007 Lattice +hep-lat/9812008 Lattice +hep-lat/9812010 Lattice +hep-lat/9812012 Lattice +hep-lat/9812013 Lattice +hep-lat/9812015 Lattice +hep-lat/9812016 Lattice +hep-lat/9812018 Lattice +hep-lat/9812021 Lattice +hep-lat/9812022 Lattice +hep-lat/9812023 Lattice +hep-lat/9901009 Lattice +hep-lat/9901012 Lattice +hep-lat/9901015 Lattice +hep-lat/9901016 Lattice +hep-lat/9901018 Lattice +hep-lat/9901020 Lattice +hep-lat/9902002 Lattice +hep-lat/9902003 Lattice +hep-lat/9902005 Lattice +hep-lat/9902007 Lattice +hep-lat/9902008 Lattice +hep-lat/9902016 Lattice +hep-lat/9902020 Lattice +hep-lat/9902021 Lattice +hep-lat/9902023 Lattice +hep-lat/9902027 Lattice +hep-lat/9902028 Lattice +hep-lat/9902031 Lattice +hep-lat/9902033 Lattice +hep-lat/9902034 Lattice +hep-lat/9903002 Lattice +hep-lat/9903003 Lattice +hep-lat/9903005 Lattice +hep-lat/9903007 Lattice +hep-lat/9903008 Lattice +hep-lat/9903009 Lattice +hep-lat/9903010 Lattice +hep-lat/9903011 Lattice +hep-lat/9903012 Lattice +hep-lat/9903015 Lattice +hep-lat/9903018 Lattice +hep-lat/9903020 Lattice +hep-lat/9903021 Lattice +hep-lat/9903022 Lattice +hep-lat/9903023 Lattice +hep-lat/9903026 Lattice +hep-lat/9903027 Lattice +hep-lat/9903028 Lattice +hep-lat/9903034 Lattice +hep-lat/9903036 Lattice +hep-lat/9903039 Lattice +hep-lat/9904001 Lattice +hep-lat/9904002 Lattice +hep-lat/9904007 Lattice +hep-lat/9904008 Lattice +hep-lat/9904010 Lattice +hep-lat/9904014 Lattice +hep-lat/9904015 Lattice +hep-lat/9905001 Lattice +hep-lat/9905002 Lattice +hep-lat/9905004 Lattice +hep-lat/9905008 Lattice +hep-lat/9905013 Lattice +hep-lat/9905016 Lattice +hep-lat/9905017 Lattice +hep-lat/9905018 Lattice +hep-lat/9905026 Lattice +hep-lat/9905029 Lattice +hep-lat/9905030 Lattice +hep-lat/9905031 Lattice +hep-lat/9905033 Lattice +hep-lat/9905035 Lattice +hep-lat/9905036 Lattice +hep-lat/9906001 Lattice +hep-lat/9906002 Lattice +hep-lat/9906008 Lattice +hep-lat/9906009 Lattice +hep-lat/9906010 Lattice +hep-lat/9906012 Lattice +hep-lat/9906014 Lattice +hep-lat/9906015 Lattice +hep-lat/9906016 Lattice +hep-lat/9906017 Lattice +hep-lat/9906018 Lattice +hep-lat/9906019 Lattice +hep-lat/9906020 Lattice +hep-lat/9906021 Lattice +hep-lat/9906023 Lattice +hep-lat/9906025 Lattice +hep-lat/9906028 Lattice +hep-lat/9906029 Lattice +hep-lat/9906030 Lattice +hep-lat/9906032 Lattice +hep-lat/9907002 Lattice +hep-lat/9907003 Lattice +hep-lat/9907004 Lattice +hep-lat/9907005 Lattice +hep-lat/9907006 Lattice +hep-lat/9907016 Lattice +hep-lat/9907022 Lattice +hep-lat/9907026 Lattice +hep-lat/9907029 Lattice +hep-lat/9908010 Lattice +hep-lat/9908013 Lattice +hep-lat/9908041 Lattice +hep-lat/9909025 Lattice +hep-lat/9909031 Lattice +hep-lat/9909035 Lattice +hep-lat/9909036 Lattice +hep-lat/9909038 Lattice +hep-lat/9909076 Lattice +hep-lat/9909082 Lattice +hep-lat/9909099 Lattice +hep-lat/9909121 Lattice +hep-lat/9909129 Lattice +hep-lat/9909130 Lattice +hep-lat/9909132 Lattice +hep-lat/9909134 Lattice +hep-lat/9909139 Lattice +hep-lat/9909156 Lattice +hep-lat/9909157 Lattice +hep-lat/9909158 Lattice +hep-lat/9910005 Lattice +hep-lat/9910007 Lattice +hep-lat/9910010 Lattice +hep-lat/9910015 Lattice +hep-lat/9910017 Lattice +hep-lat/9910024 Lattice +hep-lat/9910031 Lattice +hep-lat/9910033 Lattice +hep-lat/9910042 Lattice +hep-lat/9910047 Lattice +hep-lat/9911005 Lattice +hep-lat/9911008 Lattice +hep-lat/9911021 Lattice +hep-lat/9911024 Lattice +hep-lat/9911026 Lattice +hep-lat/9911029 Lattice +hep-lat/9911037 Lattice +hep-lat/9911038 Lattice +hep-lat/9912001 Lattice +hep-lat/9912003 Lattice +hep-lat/9912004 Lattice +hep-lat/9912007 Lattice +hep-lat/9912014 Lattice +hep-lat/9912017 Lattice +hep-lat/9912019 Lattice +hep-lat/9912021 Lattice +hep-lat/9912031 Lattice +hep-lat/9912032 Lattice +hep-lat/9912038 Lattice +hep-lat/9912039 Lattice +hep-lat/9912041 Lattice +hep-lat/9912045 Lattice +hep-lat/9912053 Lattice +hep-lat/9912054 Lattice +hep-lat/9912056 Lattice +hep-lat/9912057 Lattice +hep-lat/9912059 Lattice +hep-ph/0001004 Phenomenology +hep-ph/0001009 Phenomenology +hep-ph/0001014 Phenomenology +hep-ph/0001015 Phenomenology +hep-ph/0001017 Phenomenology +hep-ph/0001018 Phenomenology +hep-ph/0001020 Phenomenology +hep-ph/0001021 Phenomenology +hep-ph/0001022 Phenomenology +hep-ph/0001024 Phenomenology +hep-ph/0001031 Phenomenology +hep-ph/0001037 Phenomenology +hep-ph/0001040 Phenomenology +hep-ph/0001042 Phenomenology +hep-ph/0001043 Phenomenology +hep-ph/0001049 Phenomenology +hep-ph/0001052 Phenomenology +hep-ph/0001054 Phenomenology +hep-ph/0001056 Phenomenology +hep-ph/0001057 Phenomenology +hep-ph/0001058 Phenomenology +hep-ph/0001061 Phenomenology +hep-ph/0001064 Phenomenology +hep-ph/0001067 Phenomenology +hep-ph/0001070 Phenomenology +hep-ph/0001071 Phenomenology +hep-ph/0001072 Phenomenology +hep-ph/0001073 Phenomenology +hep-ph/0001074 Phenomenology +hep-ph/0001075 Phenomenology +hep-ph/0001079 Phenomenology +hep-ph/0001084 Phenomenology +hep-ph/0001085 Phenomenology +hep-ph/0001087 Phenomenology +hep-ph/0001090 Phenomenology +hep-ph/0001093 Phenomenology +hep-ph/0001095 Phenomenology +hep-ph/0001101 Phenomenology +hep-ph/0001102 Phenomenology +hep-ph/0001103 Phenomenology +hep-ph/0001107 Phenomenology +hep-ph/0001108 Phenomenology +hep-ph/0001109 Phenomenology +hep-ph/0001111 Phenomenology +hep-ph/0001112 Phenomenology +hep-ph/0001113 Phenomenology +hep-ph/0001114 Phenomenology +hep-ph/0001115 Phenomenology +hep-ph/0001117 Phenomenology +hep-ph/0001119 Phenomenology +hep-ph/0001124 Phenomenology +hep-ph/0001125 Phenomenology +hep-ph/0001132 Phenomenology +hep-ph/0001134 Phenomenology +hep-ph/0001135 Phenomenology +hep-ph/0001140 Phenomenology +hep-ph/0001143 Phenomenology +hep-ph/0001145 Phenomenology +hep-ph/0001146 Phenomenology +hep-ph/0001151 Phenomenology +hep-ph/0001152 Phenomenology +hep-ph/0001158 Phenomenology +hep-ph/0001160 Phenomenology +hep-ph/0001161 Phenomenology +hep-ph/0001162 Phenomenology +hep-ph/0001166 Phenomenology +hep-ph/0001168 Phenomenology +hep-ph/0001171 Phenomenology +hep-ph/0001175 Phenomenology +hep-ph/0001177 Phenomenology +hep-ph/0001178 Phenomenology +hep-ph/0001181 Phenomenology +hep-ph/0001182 Phenomenology +hep-ph/0001185 Phenomenology +hep-ph/0001186 Phenomenology +hep-ph/0001188 Phenomenology +hep-ph/0001189 Phenomenology +hep-ph/0001192 Phenomenology +hep-ph/0001193 Phenomenology +hep-ph/0001196 Phenomenology +hep-ph/0001201 Phenomenology +hep-ph/0001202 Phenomenology +hep-ph/0001203 Phenomenology +hep-ph/0001205 Phenomenology +hep-ph/0001208 Phenomenology +hep-ph/0001209 Phenomenology +hep-ph/0001211 Phenomenology +hep-ph/0001212 Phenomenology +hep-ph/0001214 Phenomenology +hep-ph/0001216 Phenomenology +hep-ph/0001221 Phenomenology +hep-ph/0001222 Phenomenology +hep-ph/0001223 Phenomenology +hep-ph/0001226 Phenomenology +hep-ph/0001229 Phenomenology +hep-ph/0001238 Phenomenology +hep-ph/0001239 Phenomenology +hep-ph/0001244 Phenomenology +hep-ph/0001255 Phenomenology +hep-ph/0001260 Phenomenology +hep-ph/0001262 Phenomenology +hep-ph/0001274 Phenomenology +hep-ph/0001275 Phenomenology +hep-ph/0001278 Phenomenology +hep-ph/0001287 Phenomenology +hep-ph/0001295 Phenomenology +hep-ph/0001296 Phenomenology +hep-ph/0001297 Phenomenology +hep-ph/0001299 Phenomenology +hep-ph/0001301 Phenomenology +hep-ph/0001302 Phenomenology +hep-ph/0001305 Phenomenology +hep-ph/0001306 Phenomenology +hep-ph/0001307 Phenomenology +hep-ph/0001308 Phenomenology +hep-ph/0001310 Phenomenology +hep-ph/0001316 Phenomenology +hep-ph/0001318 Phenomenology +hep-ph/0001325 Phenomenology +hep-ph/0001327 Phenomenology +hep-ph/0001329 Phenomenology +hep-ph/0001330 Phenomenology +hep-ph/0001332 Phenomenology +hep-ph/0001333 Phenomenology +hep-ph/0001335 Phenomenology +hep-ph/0002001 Phenomenology +hep-ph/0002004 Phenomenology +hep-ph/0002006 Phenomenology +hep-ph/0002009 Phenomenology +hep-ph/0002010 Phenomenology +hep-ph/0002011 Phenomenology +hep-ph/0002013 Phenomenology +hep-ph/0002016 Phenomenology +hep-ph/0002018 Phenomenology +hep-ph/0002021 Phenomenology +hep-ph/0002022 Phenomenology +hep-ph/0002023 Phenomenology +hep-ph/0002032 Phenomenology +hep-ph/0002034 Phenomenology +hep-ph/0002039 Phenomenology +hep-ph/0002045 Phenomenology +hep-ph/0002046 Phenomenology +hep-ph/0002048 Phenomenology +hep-ph/0002050 Phenomenology +hep-ph/0002051 Phenomenology +hep-ph/0002058 Phenomenology +hep-ph/0002061 Phenomenology +hep-ph/0002066 Phenomenology +hep-ph/0002076 Phenomenology +hep-ph/0002079 Phenomenology +hep-ph/0002080 Phenomenology +hep-ph/0002082 Phenomenology +hep-ph/0002088 Phenomenology +hep-ph/0002092 Phenomenology +hep-ph/0002095 Phenomenology +hep-ph/0002096 Phenomenology +hep-ph/0002097 Phenomenology +hep-ph/0002101 Phenomenology +hep-ph/0002102 Phenomenology +hep-ph/0002104 Phenomenology +hep-ph/0002108 Phenomenology +hep-ph/0002113 Phenomenology +hep-ph/0002116 Phenomenology +hep-ph/0002120 Phenomenology +hep-ph/0002122 Phenomenology +hep-ph/0002133 Phenomenology +hep-ph/0002135 Phenomenology +hep-ph/0002139 Phenomenology +hep-ph/0002148 Phenomenology +hep-ph/0002149 Phenomenology +hep-ph/0002153 Phenomenology +hep-ph/0002160 Phenomenology +hep-ph/0002162 Phenomenology +hep-ph/0002164 Phenomenology +hep-ph/0002166 Phenomenology +hep-ph/0002169 Phenomenology +hep-ph/0002177 Phenomenology +hep-ph/0002181 Phenomenology +hep-ph/0002182 Phenomenology +hep-ph/0002188 Phenomenology +hep-ph/0002192 Phenomenology +hep-ph/0002193 Phenomenology +hep-ph/0002194 Phenomenology +hep-ph/0002198 Phenomenology +hep-ph/0002200 Phenomenology +hep-ph/0002204 Phenomenology +hep-ph/0002205 Phenomenology +hep-ph/0002206 Phenomenology +hep-ph/0002208 Phenomenology +hep-ph/0002214 Phenomenology +hep-ph/0002215 Phenomenology +hep-ph/0002221 Phenomenology +hep-ph/0002223 Phenomenology +hep-ph/0002224 Phenomenology +hep-ph/0002226 Phenomenology +hep-ph/0002228 Phenomenology +hep-ph/0002239 Phenomenology +hep-ph/0002240 Phenomenology +hep-ph/0002241 Phenomenology +hep-ph/0002242 Phenomenology +hep-ph/0002245 Phenomenology +hep-ph/0002246 Phenomenology +hep-ph/0002247 Phenomenology +hep-ph/0002252 Phenomenology +hep-ph/0002257 Phenomenology +hep-ph/0002262 Phenomenology +hep-ph/0002263 Phenomenology +hep-ph/0002267 Phenomenology +hep-ph/0002269 Phenomenology +hep-ph/0002270 Phenomenology +hep-ph/0002271 Phenomenology +hep-ph/0002275 Phenomenology +hep-ph/0002276 Phenomenology +hep-ph/0002278 Phenomenology +hep-ph/0002279 Phenomenology +hep-ph/0002284 Phenomenology +hep-ph/0002285 Phenomenology +hep-ph/0002287 Phenomenology +hep-ph/0002293 Phenomenology +hep-ph/0002294 Phenomenology +hep-ph/0002295 Phenomenology +hep-ph/0002300 Phenomenology +hep-ph/0002302 Phenomenology +hep-ph/0002304 Phenomenology +hep-ph/0003002 Phenomenology +hep-ph/0003003 Phenomenology +hep-ph/0003004 Phenomenology +hep-ph/0003005 Phenomenology +hep-ph/0003006 Phenomenology +hep-ph/0003009 Phenomenology +hep-ph/0003010 Phenomenology +hep-ph/0003012 Phenomenology +hep-ph/0003014 Phenomenology +hep-ph/0003017 Phenomenology +hep-ph/0003018 Phenomenology +hep-ph/0003019 Phenomenology +hep-ph/0003021 Phenomenology +hep-ph/0003024 Phenomenology +hep-ph/0003025 Phenomenology +hep-ph/0003026 Phenomenology +hep-ph/0003027 Phenomenology +hep-ph/0003028 Phenomenology +hep-ph/0003029 Phenomenology +hep-ph/0003036 Phenomenology +hep-ph/0003037 Phenomenology +hep-ph/0003038 Phenomenology +hep-ph/0003044 Phenomenology +hep-ph/0003045 Phenomenology +hep-ph/0003046 Phenomenology +hep-ph/0003048 Phenomenology +hep-ph/0003052 Phenomenology +hep-ph/0003053 Phenomenology +hep-ph/0003060 Phenomenology +hep-ph/0003063 Phenomenology +hep-ph/0003068 Phenomenology +hep-ph/0003072 Phenomenology +hep-ph/0003073 Phenomenology +hep-ph/0003075 Phenomenology +hep-ph/0003077 Phenomenology +hep-ph/0003080 Phenomenology +hep-ph/0003082 Phenomenology +hep-ph/0003086 Phenomenology +hep-ph/0003088 Phenomenology +hep-ph/0003090 Phenomenology +hep-ph/0003094 Phenomenology +hep-ph/0003095 Phenomenology +hep-ph/0003097 Phenomenology +hep-ph/0003099 Phenomenology +hep-ph/0003100 Phenomenology +hep-ph/0003103 Phenomenology +hep-ph/0003105 Phenomenology +hep-ph/0003106 Phenomenology +hep-ph/0003111 Phenomenology +hep-ph/0003115 Phenomenology +hep-ph/0003118 Phenomenology +hep-ph/0003121 Phenomenology +hep-ph/0003123 Phenomenology +hep-ph/0003125 Phenomenology +hep-ph/0003128 Phenomenology +hep-ph/0003131 Phenomenology +hep-ph/0003132 Phenomenology +hep-ph/0003134 Phenomenology +hep-ph/0003135 Phenomenology +hep-ph/0003143 Phenomenology +hep-ph/0003144 Phenomenology +hep-ph/0003146 Phenomenology +hep-ph/0003147 Phenomenology +hep-ph/0003148 Phenomenology +hep-ph/0003151 Phenomenology +hep-ph/0003152 Phenomenology +hep-ph/0003156 Phenomenology +hep-ph/0003159 Phenomenology +hep-ph/0003160 Phenomenology +hep-ph/0003162 Phenomenology +hep-ph/0003163 Phenomenology +hep-ph/0003164 Phenomenology +hep-ph/0003168 Phenomenology +hep-ph/0003170 Phenomenology +hep-ph/0003173 Phenomenology +hep-ph/0003174 Phenomenology +hep-ph/0003175 Phenomenology +hep-ph/0003176 Phenomenology +hep-ph/0003177 Phenomenology +hep-ph/0003179 Phenomenology +hep-ph/0003181 Phenomenology +hep-ph/0003189 Phenomenology +hep-ph/0003190 Phenomenology +hep-ph/0003192 Phenomenology +hep-ph/0003196 Phenomenology +hep-ph/0003197 Phenomenology +hep-ph/0003198 Phenomenology +hep-ph/0003199 Phenomenology +hep-ph/0003204 Phenomenology +hep-ph/0003207 Phenomenology +hep-ph/0003209 Phenomenology +hep-ph/0003210 Phenomenology +hep-ph/0003213 Phenomenology +hep-ph/0003216 Phenomenology +hep-ph/0003219 Phenomenology +hep-ph/0003222 Phenomenology +hep-ph/0003224 Phenomenology +hep-ph/0003227 Phenomenology +hep-ph/0003231 Phenomenology +hep-ph/0003236 Phenomenology +hep-ph/0003239 Phenomenology +hep-ph/0003240 Phenomenology +hep-ph/0003241 Phenomenology +hep-ph/0003243 Phenomenology +hep-ph/0003245 Phenomenology +hep-ph/0003256 Phenomenology +hep-ph/0003258 Phenomenology +hep-ph/0003261 Phenomenology +hep-ph/0003262 Phenomenology +hep-ph/0003264 Phenomenology +hep-ph/0003266 Phenomenology +hep-ph/0003270 Phenomenology +hep-ph/0003279 Phenomenology +hep-ph/0003281 Phenomenology +hep-ph/0003282 Phenomenology +hep-ph/0003283 Phenomenology +hep-ph/0003284 Phenomenology +hep-ph/0003286 Phenomenology +hep-ph/0003289 Phenomenology +hep-ph/0003290 Phenomenology +hep-ph/0003297 Phenomenology +hep-ph/0003301 Phenomenology +hep-ph/0003303 Phenomenology +hep-ph/0003304 Phenomenology +hep-ph/0003305 Phenomenology +hep-ph/0003307 Phenomenology +hep-ph/0003309 Phenomenology +hep-ph/0003317 Phenomenology +hep-ph/0003320 Phenomenology +hep-ph/0003325 Phenomenology +hep-ph/0003326 Phenomenology +hep-ph/0003327 Phenomenology +hep-ph/0003329 Phenomenology +hep-ph/0004001 Phenomenology +hep-ph/0004004 Phenomenology +hep-ph/0004005 Phenomenology +hep-ph/0004007 Phenomenology +hep-ph/0004010 Phenomenology +hep-ph/0004011 Phenomenology +hep-ph/0004012 Phenomenology +hep-ph/0004013 Phenomenology +hep-ph/0004014 Phenomenology +hep-ph/0004018 Phenomenology +hep-ph/0004020 Phenomenology +hep-ph/0004021 Phenomenology +hep-ph/0004023 Phenomenology +hep-ph/0004024 Phenomenology +hep-ph/0004029 Phenomenology +hep-ph/0004030 Phenomenology +hep-ph/0004033 Phenomenology +hep-ph/0004035 Phenomenology +hep-ph/0004039 Phenomenology +hep-ph/0004044 Phenomenology +hep-ph/0004046 Phenomenology +hep-ph/0004047 Phenomenology +hep-ph/0004048 Phenomenology +hep-ph/0004049 Phenomenology +hep-ph/0004050 Phenomenology +hep-ph/0004051 Phenomenology +hep-ph/0004052 Phenomenology +hep-ph/0004057 Phenomenology +hep-ph/0004059 Phenomenology +hep-ph/0004060 Phenomenology +hep-ph/0004063 Phenomenology +hep-ph/0004065 Phenomenology +hep-ph/0004066 Phenomenology +hep-ph/0004067 Phenomenology +hep-ph/0004068 Phenomenology +hep-ph/0004070 Phenomenology +hep-ph/0004071 Phenomenology +hep-ph/0004074 Phenomenology +hep-ph/0004075 Phenomenology +hep-ph/0004076 Phenomenology +hep-ph/0004078 Phenomenology +hep-ph/0004081 Phenomenology +hep-ph/0004085 Phenomenology +hep-ph/0004086 Phenomenology +hep-ph/0004088 Phenomenology +hep-ph/0004089 Phenomenology +hep-ph/0004091 Phenomenology +hep-ph/0004093 Phenomenology +hep-ph/0004101 Phenomenology +hep-ph/0004106 Phenomenology +hep-ph/0004108 Phenomenology +hep-ph/0004110 Phenomenology +hep-ph/0004113 Phenomenology +hep-ph/0004114 Phenomenology +hep-ph/0004120 Phenomenology +hep-ph/0004121 Phenomenology +hep-ph/0004122 Phenomenology +hep-ph/0004126 Phenomenology +hep-ph/0004127 Phenomenology +hep-ph/0004131 Phenomenology +hep-ph/0004133 Phenomenology +hep-ph/0004136 Phenomenology +hep-ph/0004138 Phenomenology +hep-ph/0004141 Phenomenology +hep-ph/0004147 Phenomenology +hep-ph/0004153 Phenomenology +hep-ph/0004154 Phenomenology +hep-ph/0004158 Phenomenology +hep-ph/0004159 Phenomenology +hep-ph/0004163 Phenomenology +hep-ph/0004164 Phenomenology +hep-ph/0004165 Phenomenology +hep-ph/0004166 Phenomenology +hep-ph/0004167 Phenomenology +hep-ph/0004172 Phenomenology +hep-ph/0004174 Phenomenology +hep-ph/0004177 Phenomenology +hep-ph/0004184 Phenomenology +hep-ph/0004186 Phenomenology +hep-ph/0004194 Phenomenology +hep-ph/0004196 Phenomenology +hep-ph/0004197 Phenomenology +hep-ph/0004201 Phenomenology +hep-ph/0004205 Phenomenology +hep-ph/0004207 Phenomenology +hep-ph/0004213 Phenomenology +hep-ph/0004214 Phenomenology +hep-ph/0004215 Phenomenology +hep-ph/0004217 Phenomenology +hep-ph/0004218 Phenomenology +hep-ph/0004225 Phenomenology +hep-ph/0004226 Phenomenology +hep-ph/0004227 Phenomenology +hep-ph/0004228 Phenomenology +hep-ph/0004229 Phenomenology +hep-ph/0004233 Phenomenology +hep-ph/0004234 Phenomenology +hep-ph/0004235 Phenomenology +hep-ph/0004236 Phenomenology +hep-ph/0004239 Phenomenology +hep-ph/0004241 Phenomenology +hep-ph/0004242 Phenomenology +hep-ph/0004243 Phenomenology +hep-ph/0004246 Phenomenology +hep-ph/0004248 Phenomenology +hep-ph/0004253 Phenomenology +hep-ph/0004256 Phenomenology +hep-ph/0004259 Phenomenology +hep-ph/0004261 Phenomenology +hep-ph/0004264 Phenomenology +hep-ph/0004267 Phenomenology +hep-ph/0004269 Phenomenology +hep-ph/0005002 Phenomenology +hep-ph/0005003 Phenomenology +hep-ph/0005004 Phenomenology +hep-ph/0005007 Phenomenology +hep-ph/0005013 Phenomenology +hep-ph/0005015 Phenomenology +hep-ph/0005017 Phenomenology +hep-ph/0005022 Phenomenology +hep-ph/0005026 Phenomenology +hep-ph/0005028 Phenomenology +hep-ph/0005029 Phenomenology +hep-ph/0005030 Phenomenology +hep-ph/0005031 Phenomenology +hep-ph/0005039 Phenomenology +hep-ph/0005040 Phenomenology +hep-ph/0005041 Phenomenology +hep-ph/0005045 Phenomenology +hep-ph/0005049 Phenomenology +hep-ph/0005050 Phenomenology +hep-ph/0005051 Phenomenology +hep-ph/0005059 Phenomenology +hep-ph/0005060 Phenomenology +hep-ph/0005064 Phenomenology +hep-ph/0005066 Phenomenology +hep-ph/0005069 Phenomenology +hep-ph/0005073 Phenomenology +hep-ph/0005076 Phenomenology +hep-ph/0005080 Phenomenology +hep-ph/0005088 Phenomenology +hep-ph/0005097 Phenomenology +hep-ph/0005098 Phenomenology +hep-ph/0005099 Phenomenology +hep-ph/0005100 Phenomenology +hep-ph/0005101 Phenomenology +hep-ph/0005102 Phenomenology +hep-ph/0005103 Phenomenology +hep-ph/0005105 Phenomenology +hep-ph/0005106 Phenomenology +hep-ph/0005113 Phenomenology +hep-ph/0005115 Phenomenology +hep-ph/0005116 Phenomenology +hep-ph/0005118 Phenomenology +hep-ph/0005123 Phenomenology +hep-ph/0005125 Phenomenology +hep-ph/0005126 Phenomenology +hep-ph/0005129 Phenomenology +hep-ph/0005131 Phenomenology +hep-ph/0005133 Phenomenology +hep-ph/0005136 Phenomenology +hep-ph/0005139 Phenomenology +hep-ph/0005144 Phenomenology +hep-ph/0005150 Phenomenology +hep-ph/0005152 Phenomenology +hep-ph/0005153 Phenomenology +hep-ph/0005155 Phenomenology +hep-ph/0005156 Phenomenology +hep-ph/0005158 Phenomenology +hep-ph/0005161 Phenomenology +hep-ph/0005162 Phenomenology +hep-ph/0005166 Phenomenology +hep-ph/0005172 Phenomenology +hep-ph/0005175 Phenomenology +hep-ph/0005178 Phenomenology +hep-ph/0005180 Phenomenology +hep-ph/0005183 Phenomenology +hep-ph/0005185 Phenomenology +hep-ph/0005187 Phenomenology +hep-ph/0005188 Phenomenology +hep-ph/0005189 Phenomenology +hep-ph/0005190 Phenomenology +hep-ph/0005191 Phenomenology +hep-ph/0005192 Phenomenology +hep-ph/0005202 Phenomenology +hep-ph/0005204 Phenomenology +hep-ph/0005206 Phenomenology +hep-ph/0005209 Phenomenology +hep-ph/0005210 Phenomenology +hep-ph/0005215 Phenomenology +hep-ph/0005216 Phenomenology +hep-ph/0005217 Phenomenology +hep-ph/0005220 Phenomenology +hep-ph/0005221 Phenomenology +hep-ph/0005222 Phenomenology +hep-ph/0005224 Phenomenology +hep-ph/0005228 Phenomenology +hep-ph/0005235 Phenomenology +hep-ph/0005241 Phenomenology +hep-ph/0005248 Phenomenology +hep-ph/0005249 Phenomenology +hep-ph/0005254 Phenomenology +hep-ph/0005255 Phenomenology +hep-ph/0005258 Phenomenology +hep-ph/0005262 Phenomenology +hep-ph/0005264 Phenomenology +hep-ph/0005265 Phenomenology +hep-ph/0005267 Phenomenology +hep-ph/0005268 Phenomenology +hep-ph/0005270 Phenomenology +hep-ph/0005273 Phenomenology +hep-ph/0005274 Phenomenology +hep-ph/0005276 Phenomenology +hep-ph/0005278 Phenomenology +hep-ph/0005281 Phenomenology +hep-ph/0005282 Phenomenology +hep-ph/0005283 Phenomenology +hep-ph/0005285 Phenomenology +hep-ph/0005288 Phenomenology +hep-ph/0005289 Phenomenology +hep-ph/0005290 Phenomenology +hep-ph/0005294 Phenomenology +hep-ph/0005295 Phenomenology +hep-ph/0005298 Phenomenology +hep-ph/0005299 Phenomenology +hep-ph/0005300 Phenomenology +hep-ph/0005301 Phenomenology +hep-ph/0005302 Phenomenology +hep-ph/0005303 Phenomenology +hep-ph/0005305 Phenomenology +hep-ph/0005306 Phenomenology +hep-ph/0005307 Phenomenology +hep-ph/0005310 Phenomenology +hep-ph/0005311 Phenomenology +hep-ph/0005312 Phenomenology +hep-ph/0005313 Phenomenology +hep-ph/0005314 Phenomenology +hep-ph/0005315 Phenomenology +hep-ph/0005316 Phenomenology +hep-ph/0005317 Phenomenology +hep-ph/0005321 Phenomenology +hep-ph/0005323 Phenomenology +hep-ph/0005324 Phenomenology +hep-ph/0005325 Phenomenology +hep-ph/0005326 Phenomenology +hep-ph/0005327 Phenomenology +hep-ph/0005328 Phenomenology +hep-ph/0005330 Phenomenology +hep-ph/0006003 Phenomenology +hep-ph/0006004 Phenomenology +hep-ph/0006006 Phenomenology +hep-ph/0006009 Phenomenology +hep-ph/0006012 Phenomenology +hep-ph/0006014 Phenomenology +hep-ph/0006015 Phenomenology +hep-ph/0006017 Phenomenology +hep-ph/0006021 Phenomenology +hep-ph/0006022 Phenomenology +hep-ph/0006024 Phenomenology +hep-ph/0006025 Phenomenology +hep-ph/0006026 Phenomenology +hep-ph/0006027 Phenomenology +hep-ph/0006030 Phenomenology +hep-ph/0006036 Phenomenology +hep-ph/0006039 Phenomenology +hep-ph/0006040 Phenomenology +hep-ph/0006042 Phenomenology +hep-ph/0006043 Phenomenology +hep-ph/0006046 Phenomenology +hep-ph/0006047 Phenomenology +hep-ph/0006048 Phenomenology +hep-ph/0006049 Phenomenology +hep-ph/0006053 Phenomenology +hep-ph/0006055 Phenomenology +hep-ph/0006058 Phenomenology +hep-ph/0006060 Phenomenology +hep-ph/0006062 Phenomenology +hep-ph/0006064 Phenomenology +hep-ph/0006066 Phenomenology +hep-ph/0006067 Phenomenology +hep-ph/0006070 Phenomenology +hep-ph/0006073 Phenomenology +hep-ph/0006074 Phenomenology +hep-ph/0006077 Phenomenology +hep-ph/0006078 Phenomenology +hep-ph/0006083 Phenomenology +hep-ph/0006084 Phenomenology +hep-ph/0006085 Phenomenology +hep-ph/0006086 Phenomenology +hep-ph/0006087 Phenomenology +hep-ph/0006088 Phenomenology +hep-ph/0006090 Phenomenology +hep-ph/0006094 Phenomenology +hep-ph/0006096 Phenomenology +hep-ph/0006098 Phenomenology +hep-ph/0006099 Phenomenology +hep-ph/0006103 Phenomenology +hep-ph/0006106 Phenomenology +hep-ph/0006112 Phenomenology +hep-ph/0006113 Phenomenology +hep-ph/0006116 Phenomenology +hep-ph/0006118 Phenomenology +hep-ph/0006119 Phenomenology +hep-ph/0006121 Phenomenology +hep-ph/0006122 Phenomenology +hep-ph/0006125 Phenomenology +hep-ph/0006128 Phenomenology +hep-ph/0006138 Phenomenology +hep-ph/0006145 Phenomenology +hep-ph/0006154 Phenomenology +hep-ph/0006156 Phenomenology +hep-ph/0006157 Phenomenology +hep-ph/0006159 Phenomenology +hep-ph/0006161 Phenomenology +hep-ph/0006164 Phenomenology +hep-ph/0006165 Phenomenology +hep-ph/0006168 Phenomenology +hep-ph/0006169 Phenomenology +hep-ph/0006171 Phenomenology +hep-ph/0006172 Phenomenology +hep-ph/0006173 Phenomenology +hep-ph/0006174 Phenomenology +hep-ph/0006175 Phenomenology +hep-ph/0006177 Phenomenology +hep-ph/0006179 Phenomenology +hep-ph/0006181 Phenomenology +hep-ph/0006182 Phenomenology +hep-ph/0006191 Phenomenology +hep-ph/0006192 Phenomenology +hep-ph/0006198 Phenomenology +hep-ph/0006200 Phenomenology +hep-ph/0006212 Phenomenology +hep-ph/0006213 Phenomenology +hep-ph/0006220 Phenomenology +hep-ph/0006224 Phenomenology +hep-ph/0006226 Phenomenology +hep-ph/0006228 Phenomenology +hep-ph/0006229 Phenomenology +hep-ph/0006230 Phenomenology +hep-ph/0006231 Phenomenology +hep-ph/0006232 Phenomenology +hep-ph/0006233 Phenomenology +hep-ph/0006237 Phenomenology +hep-ph/0006242 Phenomenology +hep-ph/0006251 Phenomenology +hep-ph/0006253 Phenomenology +hep-ph/0006254 Phenomenology +hep-ph/0006255 Phenomenology +hep-ph/0006262 Phenomenology +hep-ph/0006264 Phenomenology +hep-ph/0006266 Phenomenology +hep-ph/0006267 Phenomenology +hep-ph/0006272 Phenomenology +hep-ph/0006276 Phenomenology +hep-ph/0006277 Phenomenology +hep-ph/0006281 Phenomenology +hep-ph/0006284 Phenomenology +hep-ph/0006286 Phenomenology +hep-ph/0006287 Phenomenology +hep-ph/0006291 Phenomenology +hep-ph/0006293 Phenomenology +hep-ph/0006294 Phenomenology +hep-ph/0006296 Phenomenology +hep-ph/0006299 Phenomenology +hep-ph/0006306 Phenomenology +hep-ph/0006313 Phenomenology +hep-ph/0006314 Phenomenology +hep-ph/0006315 Phenomenology +hep-ph/0006317 Phenomenology +hep-ph/0006327 Phenomenology +hep-ph/0006329 Phenomenology +hep-ph/0006331 Phenomenology +hep-ph/0006333 Phenomenology +hep-ph/0006334 Phenomenology +hep-ph/0006340 Phenomenology +hep-ph/0006341 Phenomenology +hep-ph/0006343 Phenomenology +hep-ph/0006344 Phenomenology +hep-ph/0006345 Phenomenology +hep-ph/0006347 Phenomenology +hep-ph/0006349 Phenomenology +hep-ph/0006351 Phenomenology +hep-ph/0006354 Phenomenology +hep-ph/0006355 Phenomenology +hep-ph/0006358 Phenomenology +hep-ph/0007002 Phenomenology +hep-ph/0007005 Phenomenology +hep-ph/0007011 Phenomenology +hep-ph/0007012 Phenomenology +hep-ph/0007015 Phenomenology +hep-ph/0007016 Phenomenology +hep-ph/0007019 Phenomenology +hep-ph/0007020 Phenomenology +hep-ph/0007021 Phenomenology +hep-ph/0007023 Phenomenology +hep-ph/0007025 Phenomenology +hep-ph/0007027 Phenomenology +hep-ph/0007031 Phenomenology +hep-ph/0007033 Phenomenology +hep-ph/0007036 Phenomenology +hep-ph/0007038 Phenomenology +hep-ph/0007041 Phenomenology +hep-ph/0007043 Phenomenology +hep-ph/0007045 Phenomenology +hep-ph/0007047 Phenomenology +hep-ph/0007049 Phenomenology +hep-ph/0007053 Phenomenology +hep-ph/0007056 Phenomenology +hep-ph/0007060 Phenomenology +hep-ph/0007061 Phenomenology +hep-ph/0007062 Phenomenology +hep-ph/0007063 Phenomenology +hep-ph/0007064 Phenomenology +hep-ph/0007065 Phenomenology +hep-ph/0007066 Phenomenology +hep-ph/0007068 Phenomenology +hep-ph/0007070 Phenomenology +hep-ph/0007072 Phenomenology +hep-ph/0007073 Phenomenology +hep-ph/0007075 Phenomenology +hep-ph/0007076 Phenomenology +hep-ph/0007079 Phenomenology +hep-ph/0007081 Phenomenology +hep-ph/0007082 Phenomenology +hep-ph/0007087 Phenomenology +hep-ph/0007089 Phenomenology +hep-ph/0007090 Phenomenology +hep-ph/0007093 Phenomenology +hep-ph/0007095 Phenomenology +hep-ph/0007096 Phenomenology +hep-ph/0007098 Phenomenology +hep-ph/0007102 Phenomenology +hep-ph/0007104 Phenomenology +hep-ph/0007107 Phenomenology +hep-ph/0007108 Phenomenology +hep-ph/0007109 Phenomenology +hep-ph/0007111 Phenomenology +hep-ph/0007116 Phenomenology +hep-ph/0007120 Phenomenology +hep-ph/0007123 Phenomenology +hep-ph/0007124 Phenomenology +hep-ph/0007129 Phenomenology +hep-ph/0007131 Phenomenology +hep-ph/0007133 Phenomenology +hep-ph/0007135 Phenomenology +hep-ph/0007136 Phenomenology +hep-ph/0007138 Phenomenology +hep-ph/0007142 Phenomenology +hep-ph/0007146 Phenomenology +hep-ph/0007148 Phenomenology +hep-ph/0007149 Phenomenology +hep-ph/0007151 Phenomenology +hep-ph/0007154 Phenomenology +hep-ph/0007156 Phenomenology +hep-ph/0007159 Phenomenology +hep-ph/0007160 Phenomenology +hep-ph/0007163 Phenomenology +hep-ph/0007164 Phenomenology +hep-ph/0007165 Phenomenology +hep-ph/0007166 Phenomenology +hep-ph/0007167 Phenomenology +hep-ph/0007168 Phenomenology +hep-ph/0007171 Phenomenology +hep-ph/0007172 Phenomenology +hep-ph/0007174 Phenomenology +hep-ph/0007178 Phenomenology +hep-ph/0007179 Phenomenology +hep-ph/0007182 Phenomenology +hep-ph/0007185 Phenomenology +hep-ph/0007186 Phenomenology +hep-ph/0007191 Phenomenology +hep-ph/0007197 Phenomenology +hep-ph/0007198 Phenomenology +hep-ph/0007201 Phenomenology +hep-ph/0007204 Phenomenology +hep-ph/0007207 Phenomenology +hep-ph/0007209 Phenomenology +hep-ph/0007211 Phenomenology +hep-ph/0007213 Phenomenology +hep-ph/0007214 Phenomenology +hep-ph/0007215 Phenomenology +hep-ph/0007217 Phenomenology +hep-ph/0007219 Phenomenology +hep-ph/0007224 Phenomenology +hep-ph/0007227 Phenomenology +hep-ph/0007228 Phenomenology +hep-ph/0007233 Phenomenology +hep-ph/0007234 Phenomenology +hep-ph/0007239 Phenomenology +hep-ph/0007240 Phenomenology +hep-ph/0007241 Phenomenology +hep-ph/0007243 Phenomenology +hep-ph/0007246 Phenomenology +hep-ph/0007251 Phenomenology +hep-ph/0007252 Phenomenology +hep-ph/0007253 Phenomenology +hep-ph/0007254 Phenomenology +hep-ph/0007258 Phenomenology +hep-ph/0007259 Phenomenology +hep-ph/0007262 Phenomenology +hep-ph/0007264 Phenomenology +hep-ph/0007268 Phenomenology +hep-ph/0007269 Phenomenology +hep-ph/0007272 Phenomenology +hep-ph/0007278 Phenomenology +hep-ph/0007280 Phenomenology +hep-ph/0007284 Phenomenology +hep-ph/0007285 Phenomenology +hep-ph/0007289 Phenomenology +hep-ph/0007291 Phenomenology +hep-ph/0007293 Phenomenology +hep-ph/0007294 Phenomenology +hep-ph/0007295 Phenomenology +hep-ph/0007299 Phenomenology +hep-ph/0007300 Phenomenology +hep-ph/0007301 Phenomenology +hep-ph/0007302 Phenomenology +hep-ph/0007305 Phenomenology +hep-ph/0007307 Phenomenology +hep-ph/0007308 Phenomenology +hep-ph/0007309 Phenomenology +hep-ph/0007310 Phenomenology +hep-ph/0007311 Phenomenology +hep-ph/0007312 Phenomenology +hep-ph/0007315 Phenomenology +hep-ph/0007316 Phenomenology +hep-ph/0007320 Phenomenology +hep-ph/0007321 Phenomenology +hep-ph/0007328 Phenomenology +hep-ph/0007329 Phenomenology +hep-ph/0007330 Phenomenology +hep-ph/0007334 Phenomenology +hep-ph/0007335 Phenomenology +hep-ph/0007336 Phenomenology +hep-ph/0007340 Phenomenology +hep-ph/0007342 Phenomenology +hep-ph/0007343 Phenomenology +hep-ph/0007345 Phenomenology +hep-ph/0007347 Phenomenology +hep-ph/0007351 Phenomenology +hep-ph/0007356 Phenomenology +hep-ph/0008002 Phenomenology +hep-ph/0008003 Phenomenology +hep-ph/0008005 Phenomenology +hep-ph/0008006 Phenomenology +hep-ph/0008015 Phenomenology +hep-ph/0008016 Phenomenology +hep-ph/0008020 Phenomenology +hep-ph/0008026 Phenomenology +hep-ph/0008028 Phenomenology +hep-ph/0008029 Phenomenology +hep-ph/0008030 Phenomenology +hep-ph/0008034 Phenomenology +hep-ph/0008036 Phenomenology +hep-ph/0008037 Phenomenology +hep-ph/0008038 Phenomenology +hep-ph/0008040 Phenomenology +hep-ph/0008041 Phenomenology +hep-ph/0008042 Phenomenology +hep-ph/0008044 Phenomenology +hep-ph/0008047 Phenomenology +hep-ph/0008048 Phenomenology +hep-ph/0008049 Phenomenology +hep-ph/0008055 Phenomenology +hep-ph/0008057 Phenomenology +hep-ph/0008058 Phenomenology +hep-ph/0008061 Phenomenology +hep-ph/0008069 Phenomenology +hep-ph/0008072 Phenomenology +hep-ph/0008074 Phenomenology +hep-ph/0008078 Phenomenology +hep-ph/0008081 Phenomenology +hep-ph/0008082 Phenomenology +hep-ph/0008083 Phenomenology +hep-ph/0008084 Phenomenology +hep-ph/0008085 Phenomenology +hep-ph/0008086 Phenomenology +hep-ph/0008087 Phenomenology +hep-ph/0008088 Phenomenology +hep-ph/0008089 Phenomenology +hep-ph/0008090 Phenomenology +hep-ph/0008091 Phenomenology +hep-ph/0008093 Phenomenology +hep-ph/0008094 Phenomenology +hep-ph/0008099 Phenomenology +hep-ph/0008104 Phenomenology +hep-ph/0008106 Phenomenology +hep-ph/0008107 Phenomenology +hep-ph/0008108 Phenomenology +hep-ph/0008109 Phenomenology +hep-ph/0008110 Phenomenology +hep-ph/0008111 Phenomenology +hep-ph/0008115 Phenomenology +hep-ph/0008116 Phenomenology +hep-ph/0008119 Phenomenology +hep-ph/0008120 Phenomenology +hep-ph/0008125 Phenomenology +hep-ph/0008129 Phenomenology +hep-ph/0008131 Phenomenology +hep-ph/0008133 Phenomenology +hep-ph/0008138 Phenomenology +hep-ph/0008139 Phenomenology +hep-ph/0008140 Phenomenology +hep-ph/0008141 Phenomenology +hep-ph/0008143 Phenomenology +hep-ph/0008144 Phenomenology +hep-ph/0008146 Phenomenology +hep-ph/0008147 Phenomenology +hep-ph/0008150 Phenomenology +hep-ph/0008152 Phenomenology +hep-ph/0008153 Phenomenology +hep-ph/0008159 Phenomenology +hep-ph/0008162 Phenomenology +hep-ph/0008167 Phenomenology +hep-ph/0008171 Phenomenology +hep-ph/0008172 Phenomenology +hep-ph/0008173 Phenomenology +hep-ph/0008174 Phenomenology +hep-ph/0008175 Phenomenology +hep-ph/0008178 Phenomenology +hep-ph/0008179 Phenomenology +hep-ph/0008180 Phenomenology +hep-ph/0008181 Phenomenology +hep-ph/0008182 Phenomenology +hep-ph/0008183 Phenomenology +hep-ph/0008184 Phenomenology +hep-ph/0008186 Phenomenology +hep-ph/0008192 Phenomenology +hep-ph/0008194 Phenomenology +hep-ph/0008196 Phenomenology +hep-ph/0008199 Phenomenology +hep-ph/0008202 Phenomenology +hep-ph/0008204 Phenomenology +hep-ph/0008207 Phenomenology +hep-ph/0008209 Phenomenology +hep-ph/0008211 Phenomenology +hep-ph/0008212 Phenomenology +hep-ph/0008213 Phenomenology +hep-ph/0008218 Phenomenology +hep-ph/0008221 Phenomenology +hep-ph/0008228 Phenomenology +hep-ph/0008229 Phenomenology +hep-ph/0008230 Phenomenology +hep-ph/0008232 Phenomenology +hep-ph/0008235 Phenomenology +hep-ph/0008236 Phenomenology +hep-ph/0008238 Phenomenology +hep-ph/0008240 Phenomenology +hep-ph/0008241 Phenomenology +hep-ph/0008242 Phenomenology +hep-ph/0008243 Phenomenology +hep-ph/0008244 Phenomenology +hep-ph/0008249 Phenomenology +hep-ph/0008250 Phenomenology +hep-ph/0008252 Phenomenology +hep-ph/0008258 Phenomenology +hep-ph/0008264 Phenomenology +hep-ph/0008266 Phenomenology +hep-ph/0008267 Phenomenology +hep-ph/0008268 Phenomenology +hep-ph/0008269 Phenomenology +hep-ph/0008270 Phenomenology +hep-ph/0008271 Phenomenology +hep-ph/0008272 Phenomenology +hep-ph/0008277 Phenomenology +hep-ph/0008278 Phenomenology +hep-ph/0008280 Phenomenology +hep-ph/0008281 Phenomenology +hep-ph/0008286 Phenomenology +hep-ph/0008295 Phenomenology +hep-ph/0008303 Phenomenology +hep-ph/0008305 Phenomenology +hep-ph/0008306 Phenomenology +hep-ph/0008307 Phenomenology +hep-ph/0008311 Phenomenology +hep-ph/0008314 Phenomenology +hep-ph/0008319 Phenomenology +hep-ph/0008321 Phenomenology +hep-ph/0008325 Phenomenology +hep-ph/0008326 Phenomenology +hep-ph/0008327 Phenomenology +hep-ph/0008328 Phenomenology +hep-ph/0008329 Phenomenology +hep-ph/0008331 Phenomenology +hep-ph/0008333 Phenomenology +hep-ph/0008337 Phenomenology +hep-ph/0009008 Phenomenology +hep-ph/0009009 Phenomenology +hep-ph/0009011 Phenomenology +hep-ph/0009013 Phenomenology +hep-ph/0009015 Phenomenology +hep-ph/0009016 Phenomenology +hep-ph/0009017 Phenomenology +hep-ph/0009018 Phenomenology +hep-ph/0009023 Phenomenology +hep-ph/0009027 Phenomenology +hep-ph/0009031 Phenomenology +hep-ph/0009032 Phenomenology +hep-ph/0009034 Phenomenology +hep-ph/0009040 Phenomenology +hep-ph/0009041 Phenomenology +hep-ph/0009043 Phenomenology +hep-ph/0009044 Phenomenology +hep-ph/0009045 Phenomenology +hep-ph/0009048 Phenomenology +hep-ph/0009049 Phenomenology +hep-ph/0009050 Phenomenology +hep-ph/0009053 Phenomenology +hep-ph/0009054 Phenomenology +hep-ph/0009055 Phenomenology +hep-ph/0009057 Phenomenology +hep-ph/0009070 Phenomenology +hep-ph/0009072 Phenomenology +hep-ph/0009073 Phenomenology +hep-ph/0009074 Phenomenology +hep-ph/0009075 Phenomenology +hep-ph/0009077 Phenomenology +hep-ph/0009084 Phenomenology +hep-ph/0009091 Phenomenology +hep-ph/0009092 Phenomenology +hep-ph/0009093 Phenomenology +hep-ph/0009094 Phenomenology +hep-ph/0009095 Phenomenology +hep-ph/0009099 Phenomenology +hep-ph/0009103 Phenomenology +hep-ph/0009112 Phenomenology +hep-ph/0009114 Phenomenology +hep-ph/0009118 Phenomenology +hep-ph/0009119 Phenomenology +hep-ph/0009132 Phenomenology +hep-ph/0009133 Phenomenology +hep-ph/0009137 Phenomenology +hep-ph/0009139 Phenomenology +hep-ph/0009141 Phenomenology +hep-ph/0009142 Phenomenology +hep-ph/0009143 Phenomenology +hep-ph/0009146 Phenomenology +hep-ph/0009147 Phenomenology +hep-ph/0009149 Phenomenology +hep-ph/0009152 Phenomenology +hep-ph/0009154 Phenomenology +hep-ph/0009158 Phenomenology +hep-ph/0009159 Phenomenology +hep-ph/0009162 Phenomenology +hep-ph/0009163 Phenomenology +hep-ph/0009171 Phenomenology +hep-ph/0009172 Phenomenology +hep-ph/0009173 Phenomenology +hep-ph/0009177 Phenomenology +hep-ph/0009181 Phenomenology +hep-ph/0009185 Phenomenology +hep-ph/0009195 Phenomenology +hep-ph/0009202 Phenomenology +hep-ph/0009205 Phenomenology +hep-ph/0009206 Phenomenology +hep-ph/0009209 Phenomenology +hep-ph/0009214 Phenomenology +hep-ph/0009216 Phenomenology +hep-ph/0009218 Phenomenology +hep-ph/0009222 Phenomenology +hep-ph/0009225 Phenomenology +hep-ph/0009230 Phenomenology +hep-ph/0009232 Phenomenology +hep-ph/0009233 Phenomenology +hep-ph/0009245 Phenomenology +hep-ph/0009250 Phenomenology +hep-ph/0009255 Phenomenology +hep-ph/0009261 Phenomenology +hep-ph/0009262 Phenomenology +hep-ph/0009264 Phenomenology +hep-ph/0009266 Phenomenology +hep-ph/0009267 Phenomenology +hep-ph/0009268 Phenomenology +hep-ph/0009271 Phenomenology +hep-ph/0009272 Phenomenology +hep-ph/0009273 Phenomenology +hep-ph/0009275 Phenomenology +hep-ph/0009276 Phenomenology +hep-ph/0009278 Phenomenology +hep-ph/0009280 Phenomenology +hep-ph/0009281 Phenomenology +hep-ph/0009282 Phenomenology +hep-ph/0009284 Phenomenology +hep-ph/0009285 Phenomenology +hep-ph/0009288 Phenomenology +hep-ph/0009289 Phenomenology +hep-ph/0009290 Phenomenology +hep-ph/0009294 Phenomenology +hep-ph/0009295 Phenomenology +hep-ph/0009296 Phenomenology +hep-ph/0009297 Phenomenology +hep-ph/0009300 Phenomenology +hep-ph/0009306 Phenomenology +hep-ph/0009308 Phenomenology +hep-ph/0009309 Phenomenology +hep-ph/0009311 Phenomenology +hep-ph/0009314 Phenomenology +hep-ph/0009317 Phenomenology +hep-ph/0009318 Phenomenology +hep-ph/0009319 Phenomenology +hep-ph/0009320 Phenomenology +hep-ph/0009324 Phenomenology +hep-ph/0009325 Phenomenology +hep-ph/0009330 Phenomenology +hep-ph/0009331 Phenomenology +hep-ph/0009332 Phenomenology +hep-ph/0009334 Phenomenology +hep-ph/0009337 Phenomenology +hep-ph/0009339 Phenomenology +hep-ph/0009340 Phenomenology +hep-ph/0009341 Phenomenology +hep-ph/0009342 Phenomenology +hep-ph/0009343 Phenomenology +hep-ph/0009345 Phenomenology +hep-ph/0009347 Phenomenology +hep-ph/0009348 Phenomenology +hep-ph/0009356 Phenomenology +hep-ph/0010002 Phenomenology +hep-ph/0010008 Phenomenology +hep-ph/0010013 Phenomenology +hep-ph/0010016 Phenomenology +hep-ph/0010022 Phenomenology +hep-ph/0010027 Phenomenology +hep-ph/0010034 Phenomenology +hep-ph/0010036 Phenomenology +hep-ph/0010037 Phenomenology +hep-ph/0010040 Phenomenology +hep-ph/0010043 Phenomenology +hep-ph/0010044 Phenomenology +hep-ph/0010045 Phenomenology +hep-ph/0010051 Phenomenology +hep-ph/0010052 Phenomenology +hep-ph/0010055 Phenomenology +hep-ph/0010056 Phenomenology +hep-ph/0010059 Phenomenology +hep-ph/0010060 Phenomenology +hep-ph/0010061 Phenomenology +hep-ph/0010062 Phenomenology +hep-ph/0010064 Phenomenology +hep-ph/0010065 Phenomenology +hep-ph/0010066 Phenomenology +hep-ph/0010067 Phenomenology +hep-ph/0010068 Phenomenology +hep-ph/0010071 Phenomenology +hep-ph/0010076 Phenomenology +hep-ph/0010082 Phenomenology +hep-ph/0010083 Phenomenology +hep-ph/0010084 Phenomenology +hep-ph/0010087 Phenomenology +hep-ph/0010089 Phenomenology +hep-ph/0010090 Phenomenology +hep-ph/0010091 Phenomenology +hep-ph/0010096 Phenomenology +hep-ph/0010097 Phenomenology +hep-ph/0010100 Phenomenology +hep-ph/0010101 Phenomenology +hep-ph/0010102 Phenomenology +hep-ph/0010103 Phenomenology +hep-ph/0010107 Phenomenology +hep-ph/0010111 Phenomenology +hep-ph/0010114 Phenomenology +hep-ph/0010116 Phenomenology +hep-ph/0010117 Phenomenology +hep-ph/0010119 Phenomenology +hep-ph/0010122 Phenomenology +hep-ph/0010124 Phenomenology +hep-ph/0010125 Phenomenology +hep-ph/0010127 Phenomenology +hep-ph/0010128 Phenomenology +hep-ph/0010130 Phenomenology +hep-ph/0010131 Phenomenology +hep-ph/0010132 Phenomenology +hep-ph/0010133 Phenomenology +hep-ph/0010134 Phenomenology +hep-ph/0010135 Phenomenology +hep-ph/0010136 Phenomenology +hep-ph/0010143 Phenomenology +hep-ph/0010144 Phenomenology +hep-ph/0010146 Phenomenology +hep-ph/0010147 Phenomenology +hep-ph/0010150 Phenomenology +hep-ph/0010152 Phenomenology +hep-ph/0010155 Phenomenology +hep-ph/0010156 Phenomenology +hep-ph/0010158 Phenomenology +hep-ph/0010160 Phenomenology +hep-ph/0010161 Phenomenology +hep-ph/0010169 Phenomenology +hep-ph/0010172 Phenomenology +hep-ph/0010174 Phenomenology +hep-ph/0010176 Phenomenology +hep-ph/0010182 Phenomenology +hep-ph/0010185 Phenomenology +hep-ph/0010188 Phenomenology +hep-ph/0010192 Phenomenology +hep-ph/0010196 Phenomenology +hep-ph/0010197 Phenomenology +hep-ph/0010199 Phenomenology +hep-ph/0010205 Phenomenology +hep-ph/0010207 Phenomenology +hep-ph/0010209 Phenomenology +hep-ph/0010213 Phenomenology +hep-ph/0010216 Phenomenology +hep-ph/0010217 Phenomenology +hep-ph/0010218 Phenomenology +hep-ph/0010221 Phenomenology +hep-ph/0010223 Phenomenology +hep-ph/0010225 Phenomenology +hep-ph/0010229 Phenomenology +hep-ph/0010230 Phenomenology +hep-ph/0010234 Phenomenology +hep-ph/0010235 Phenomenology +hep-ph/0010239 Phenomenology +hep-ph/0010240 Phenomenology +hep-ph/0010242 Phenomenology +hep-ph/0010245 Phenomenology +hep-ph/0010255 Phenomenology +hep-ph/0010256 Phenomenology +hep-ph/0010260 Phenomenology +hep-ph/0010263 Phenomenology +hep-ph/0010264 Phenomenology +hep-ph/0010266 Phenomenology +hep-ph/0010267 Phenomenology +hep-ph/0010270 Phenomenology +hep-ph/0010271 Phenomenology +hep-ph/0010272 Phenomenology +hep-ph/0010274 Phenomenology +hep-ph/0010276 Phenomenology +hep-ph/0010279 Phenomenology +hep-ph/0010280 Phenomenology +hep-ph/0010282 Phenomenology +hep-ph/0010287 Phenomenology +hep-ph/0010288 Phenomenology +hep-ph/0010291 Phenomenology +hep-ph/0010292 Phenomenology +hep-ph/0010294 Phenomenology +hep-ph/0010297 Phenomenology +hep-ph/0010301 Phenomenology +hep-ph/0010302 Phenomenology +hep-ph/0010305 Phenomenology +hep-ph/0010307 Phenomenology +hep-ph/0010309 Phenomenology +hep-ph/0010312 Phenomenology +hep-ph/0010313 Phenomenology +hep-ph/0010315 Phenomenology +hep-ph/0010321 Phenomenology +hep-ph/0010325 Phenomenology +hep-ph/0010333 Phenomenology +hep-ph/0010346 Phenomenology +hep-ph/0010348 Phenomenology +hep-ph/0010351 Phenomenology +hep-ph/0010352 Phenomenology +hep-ph/0010354 Phenomenology +hep-ph/0011006 Phenomenology +hep-ph/0011007 Phenomenology +hep-ph/0011008 Phenomenology +hep-ph/0011011 Phenomenology +hep-ph/0011013 Phenomenology +hep-ph/0011015 Phenomenology +hep-ph/0011018 Phenomenology +hep-ph/0011019 Phenomenology +hep-ph/0011020 Phenomenology +hep-ph/0011021 Phenomenology +hep-ph/0011022 Phenomenology +hep-ph/0011027 Phenomenology +hep-ph/0011031 Phenomenology +hep-ph/0011035 Phenomenology +hep-ph/0011036 Phenomenology +hep-ph/0011042 Phenomenology +hep-ph/0011043 Phenomenology +hep-ph/0011044 Phenomenology +hep-ph/0011045 Phenomenology +hep-ph/0011046 Phenomenology +hep-ph/0011048 Phenomenology +hep-ph/0011052 Phenomenology +hep-ph/0011053 Phenomenology +hep-ph/0011054 Phenomenology +hep-ph/0011061 Phenomenology +hep-ph/0011063 Phenomenology +hep-ph/0011064 Phenomenology +hep-ph/0011065 Phenomenology +hep-ph/0011066 Phenomenology +hep-ph/0011067 Phenomenology +hep-ph/0011072 Phenomenology +hep-ph/0011076 Phenomenology +hep-ph/0011080 Phenomenology +hep-ph/0011085 Phenomenology +hep-ph/0011088 Phenomenology +hep-ph/0011089 Phenomenology +hep-ph/0011090 Phenomenology +hep-ph/0011096 Phenomenology +hep-ph/0011099 Phenomenology +hep-ph/0011100 Phenomenology +hep-ph/0011104 Phenomenology +hep-ph/0011105 Phenomenology +hep-ph/0011109 Phenomenology +hep-ph/0011112 Phenomenology +hep-ph/0011114 Phenomenology +hep-ph/0011116 Phenomenology +hep-ph/0011117 Phenomenology +hep-ph/0011119 Phenomenology +hep-ph/0011121 Phenomenology +hep-ph/0011124 Phenomenology +hep-ph/0011127 Phenomenology +hep-ph/0011132 Phenomenology +hep-ph/0011134 Phenomenology +hep-ph/0011139 Phenomenology +hep-ph/0011141 Phenomenology +hep-ph/0011142 Phenomenology +hep-ph/0011144 Phenomenology +hep-ph/0011147 Phenomenology +hep-ph/0011149 Phenomenology +hep-ph/0011154 Phenomenology +hep-ph/0011160 Phenomenology +hep-ph/0011161 Phenomenology +hep-ph/0011165 Phenomenology +hep-ph/0011166 Phenomenology +hep-ph/0011168 Phenomenology +hep-ph/0011169 Phenomenology +hep-ph/0011174 Phenomenology +hep-ph/0011176 Phenomenology +hep-ph/0011182 Phenomenology +hep-ph/0011186 Phenomenology +hep-ph/0011190 Phenomenology +hep-ph/0011196 Phenomenology +hep-ph/0011197 Phenomenology +hep-ph/0011200 Phenomenology +hep-ph/0011203 Phenomenology +hep-ph/0011205 Phenomenology +hep-ph/0011206 Phenomenology +hep-ph/0011211 Phenomenology +hep-ph/0011212 Phenomenology +hep-ph/0011215 Phenomenology +hep-ph/0011216 Phenomenology +hep-ph/0011217 Phenomenology +hep-ph/0011218 Phenomenology +hep-ph/0011219 Phenomenology +hep-ph/0011220 Phenomenology +hep-ph/0011224 Phenomenology +hep-ph/0011227 Phenomenology +hep-ph/0011230 Phenomenology +hep-ph/0011231 Phenomenology +hep-ph/0011232 Phenomenology +hep-ph/0011234 Phenomenology +hep-ph/0011235 Phenomenology +hep-ph/0011239 Phenomenology +hep-ph/0011240 Phenomenology +hep-ph/0011241 Phenomenology +hep-ph/0011242 Phenomenology +hep-ph/0011245 Phenomenology +hep-ph/0011247 Phenomenology +hep-ph/0011249 Phenomenology +hep-ph/0011250 Phenomenology +hep-ph/0011252 Phenomenology +hep-ph/0011259 Phenomenology +hep-ph/0011263 Phenomenology +hep-ph/0011266 Phenomenology +hep-ph/0011272 Phenomenology +hep-ph/0011273 Phenomenology +hep-ph/0011275 Phenomenology +hep-ph/0011279 Phenomenology +hep-ph/0011281 Phenomenology +hep-ph/0011284 Phenomenology +hep-ph/0011285 Phenomenology +hep-ph/0011286 Phenomenology +hep-ph/0011287 Phenomenology +hep-ph/0011290 Phenomenology +hep-ph/0011291 Phenomenology +hep-ph/0011293 Phenomenology +hep-ph/0011297 Phenomenology +hep-ph/0011301 Phenomenology +hep-ph/0011302 Phenomenology +hep-ph/0011303 Phenomenology +hep-ph/0011304 Phenomenology +hep-ph/0011305 Phenomenology +hep-ph/0011307 Phenomenology +hep-ph/0011309 Phenomenology +hep-ph/0011310 Phenomenology +hep-ph/0011312 Phenomenology +hep-ph/0011314 Phenomenology +hep-ph/0011315 Phenomenology +hep-ph/0011320 Phenomenology +hep-ph/0011324 Phenomenology +hep-ph/0011327 Phenomenology +hep-ph/0011331 Phenomenology +hep-ph/0011336 Phenomenology +hep-ph/0011338 Phenomenology +hep-ph/0011339 Phenomenology +hep-ph/0011340 Phenomenology +hep-ph/0011341 Phenomenology +hep-ph/0011343 Phenomenology +hep-ph/0011346 Phenomenology +hep-ph/0011348 Phenomenology +hep-ph/0011352 Phenomenology +hep-ph/0011354 Phenomenology +hep-ph/0011357 Phenomenology +hep-ph/0011361 Phenomenology +hep-ph/0011362 Phenomenology +hep-ph/0011368 Phenomenology +hep-ph/0011370 Phenomenology +hep-ph/0011371 Phenomenology +hep-ph/0011373 Phenomenology +hep-ph/0011375 Phenomenology +hep-ph/0011378 Phenomenology +hep-ph/0011384 Phenomenology +hep-ph/0011385 Phenomenology +hep-ph/0011389 Phenomenology +hep-ph/0011391 Phenomenology +hep-ph/0011394 Phenomenology +hep-ph/0011395 Phenomenology +hep-ph/0011396 Phenomenology +hep-ph/0011400 Phenomenology +hep-ph/0012002 Phenomenology +hep-ph/0012003 Phenomenology +hep-ph/0012004 Phenomenology +hep-ph/0012005 Phenomenology +hep-ph/0012011 Phenomenology +hep-ph/0012015 Phenomenology +hep-ph/0012018 Phenomenology +hep-ph/0012019 Phenomenology +hep-ph/0012028 Phenomenology +hep-ph/0012033 Phenomenology +hep-ph/0012034 Phenomenology +hep-ph/0012035 Phenomenology +hep-ph/0012038 Phenomenology +hep-ph/0012039 Phenomenology +hep-ph/0012040 Phenomenology +hep-ph/0012042 Phenomenology +hep-ph/0012044 Phenomenology +hep-ph/0012046 Phenomenology +hep-ph/0012047 Phenomenology +hep-ph/0012048 Phenomenology +hep-ph/0012049 Phenomenology +hep-ph/0012053 Phenomenology +hep-ph/0012055 Phenomenology +hep-ph/0012057 Phenomenology +hep-ph/0012058 Phenomenology +hep-ph/0012059 Phenomenology +hep-ph/0012062 Phenomenology +hep-ph/0012063 Phenomenology +hep-ph/0012066 Phenomenology +hep-ph/0012070 Phenomenology +hep-ph/0012072 Phenomenology +hep-ph/0012073 Phenomenology +hep-ph/0012074 Phenomenology +hep-ph/0012076 Phenomenology +hep-ph/0012081 Phenomenology +hep-ph/0012085 Phenomenology +hep-ph/0012087 Phenomenology +hep-ph/0012089 Phenomenology +hep-ph/0012090 Phenomenology +hep-ph/0012093 Phenomenology +hep-ph/0012094 Phenomenology +hep-ph/0012097 Phenomenology +hep-ph/0012099 Phenomenology +hep-ph/0012101 Phenomenology +hep-ph/0012103 Phenomenology +hep-ph/0012104 Phenomenology +hep-ph/0012107 Phenomenology +hep-ph/0012108 Phenomenology +hep-ph/0012109 Phenomenology +hep-ph/0012114 Phenomenology +hep-ph/0012115 Phenomenology +hep-ph/0012121 Phenomenology +hep-ph/0012123 Phenomenology +hep-ph/0012124 Phenomenology +hep-ph/0012125 Phenomenology +hep-ph/0012126 Phenomenology +hep-ph/0012127 Phenomenology +hep-ph/0012129 Phenomenology +hep-ph/0012130 Phenomenology +hep-ph/0012133 Phenomenology +hep-ph/0012134 Phenomenology +hep-ph/0012135 Phenomenology +hep-ph/0012140 Phenomenology +hep-ph/0012141 Phenomenology +hep-ph/0012145 Phenomenology +hep-ph/0012151 Phenomenology +hep-ph/0012152 Phenomenology +hep-ph/0012153 Phenomenology +hep-ph/0012158 Phenomenology +hep-ph/0012160 Phenomenology +hep-ph/0012164 Phenomenology +hep-ph/0012168 Phenomenology +hep-ph/0012169 Phenomenology +hep-ph/0012170 Phenomenology +hep-ph/0012173 Phenomenology +hep-ph/0012176 Phenomenology +hep-ph/0012178 Phenomenology +hep-ph/0012179 Phenomenology +hep-ph/0012180 Phenomenology +hep-ph/0012183 Phenomenology +hep-ph/0012184 Phenomenology +hep-ph/0012185 Phenomenology +hep-ph/0012186 Phenomenology +hep-ph/0012187 Phenomenology +hep-ph/0012188 Phenomenology +hep-ph/0012189 Phenomenology +hep-ph/0012190 Phenomenology +hep-ph/0012191 Phenomenology +hep-ph/0012193 Phenomenology +hep-ph/0012195 Phenomenology +hep-ph/0012196 Phenomenology +hep-ph/0012199 Phenomenology +hep-ph/0012200 Phenomenology +hep-ph/0012201 Phenomenology +hep-ph/0012202 Phenomenology +hep-ph/0012205 Phenomenology +hep-ph/0012207 Phenomenology +hep-ph/0012208 Phenomenology +hep-ph/0012213 Phenomenology +hep-ph/0012217 Phenomenology +hep-ph/0012225 Phenomenology +hep-ph/0012226 Phenomenology +hep-ph/0012230 Phenomenology +hep-ph/0012232 Phenomenology +hep-ph/0012234 Phenomenology +hep-ph/0012240 Phenomenology +hep-ph/0012241 Phenomenology +hep-ph/0012242 Phenomenology +hep-ph/0012243 Phenomenology +hep-ph/0012247 Phenomenology +hep-ph/0012254 Phenomenology +hep-ph/0012256 Phenomenology +hep-ph/0012260 Phenomenology +hep-ph/0012263 Phenomenology +hep-ph/0012266 Phenomenology +hep-ph/0012268 Phenomenology +hep-ph/0012271 Phenomenology +hep-ph/0012272 Phenomenology +hep-ph/0012277 Phenomenology +hep-ph/0012280 Phenomenology +hep-ph/0012281 Phenomenology +hep-ph/0012287 Phenomenology +hep-ph/0012290 Phenomenology +hep-ph/0012291 Phenomenology +hep-ph/0012295 Phenomenology +hep-ph/0012297 Phenomenology +hep-ph/0012300 Phenomenology +hep-ph/0012304 Phenomenology +hep-ph/0012313 Phenomenology +hep-ph/0012315 Phenomenology +hep-ph/0012317 Phenomenology +hep-ph/0012319 Phenomenology +hep-ph/0012327 Phenomenology +hep-ph/0012330 Phenomenology +hep-ph/0012331 Phenomenology +hep-ph/0012332 Phenomenology +hep-ph/0012333 Phenomenology +hep-ph/0012337 Phenomenology +hep-ph/0012340 Phenomenology +hep-ph/0012341 Phenomenology +hep-ph/0012344 Phenomenology +hep-ph/0012346 Phenomenology +hep-ph/0012350 Phenomenology +hep-ph/0012355 Phenomenology +hep-ph/0012358 Phenomenology +hep-ph/0012360 Phenomenology +hep-ph/0012361 Phenomenology +hep-ph/0012364 Phenomenology +hep-ph/0012365 Phenomenology +hep-ph/0012372 Phenomenology +hep-ph/0012373 Phenomenology +hep-ph/0012375 Phenomenology +hep-ph/0012377 Phenomenology +hep-ph/0012378 Phenomenology +hep-ph/0012382 Phenomenology +hep-ph/9801202 Phenomenology +hep-ph/9801204 Phenomenology +hep-ph/9801205 Phenomenology +hep-ph/9801207 Phenomenology +hep-ph/9801209 Phenomenology +hep-ph/9801210 Phenomenology +hep-ph/9801212 Phenomenology +hep-ph/9801215 Phenomenology +hep-ph/9801218 Phenomenology +hep-ph/9801219 Phenomenology +hep-ph/9801220 Phenomenology +hep-ph/9801223 Phenomenology +hep-ph/9801224 Phenomenology +hep-ph/9801225 Phenomenology +hep-ph/9801229 Phenomenology +hep-ph/9801233 Phenomenology +hep-ph/9801238 Phenomenology +hep-ph/9801242 Phenomenology +hep-ph/9801243 Phenomenology +hep-ph/9801244 Phenomenology +hep-ph/9801252 Phenomenology +hep-ph/9801255 Phenomenology +hep-ph/9801256 Phenomenology +hep-ph/9801258 Phenomenology +hep-ph/9801260 Phenomenology +hep-ph/9801263 Phenomenology +hep-ph/9801266 Phenomenology +hep-ph/9801271 Phenomenology +hep-ph/9801272 Phenomenology +hep-ph/9801273 Phenomenology +hep-ph/9801278 Phenomenology +hep-ph/9801281 Phenomenology +hep-ph/9801283 Phenomenology +hep-ph/9801290 Phenomenology +hep-ph/9801294 Phenomenology +hep-ph/9801295 Phenomenology +hep-ph/9801297 Phenomenology +hep-ph/9801298 Phenomenology +hep-ph/9801304 Phenomenology +hep-ph/9801305 Phenomenology +hep-ph/9801306 Phenomenology +hep-ph/9801307 Phenomenology +hep-ph/9801316 Phenomenology +hep-ph/9801317 Phenomenology +hep-ph/9801321 Phenomenology +hep-ph/9801326 Phenomenology +hep-ph/9801327 Phenomenology +hep-ph/9801328 Phenomenology +hep-ph/9801329 Phenomenology +hep-ph/9801335 Phenomenology +hep-ph/9801338 Phenomenology +hep-ph/9801341 Phenomenology +hep-ph/9801347 Phenomenology +hep-ph/9801350 Phenomenology +hep-ph/9801355 Phenomenology +hep-ph/9801359 Phenomenology +hep-ph/9801362 Phenomenology +hep-ph/9801364 Phenomenology +hep-ph/9801365 Phenomenology +hep-ph/9801366 Phenomenology +hep-ph/9801369 Phenomenology +hep-ph/9801383 Phenomenology +hep-ph/9801385 Phenomenology +hep-ph/9801386 Phenomenology +hep-ph/9801389 Phenomenology +hep-ph/9801392 Phenomenology +hep-ph/9801393 Phenomenology +hep-ph/9801395 Phenomenology +hep-ph/9801396 Phenomenology +hep-ph/9801400 Phenomenology +hep-ph/9801402 Phenomenology +hep-ph/9801405 Phenomenology +hep-ph/9801407 Phenomenology +hep-ph/9801411 Phenomenology +hep-ph/9801415 Phenomenology +hep-ph/9801418 Phenomenology +hep-ph/9801422 Phenomenology +hep-ph/9801425 Phenomenology +hep-ph/9801427 Phenomenology +hep-ph/9801429 Phenomenology +hep-ph/9801430 Phenomenology +hep-ph/9801431 Phenomenology +hep-ph/9801439 Phenomenology +hep-ph/9801440 Phenomenology +hep-ph/9801441 Phenomenology +hep-ph/9801442 Phenomenology +hep-ph/9801447 Phenomenology +hep-ph/9801448 Phenomenology +hep-ph/9801455 Phenomenology +hep-ph/9802209 Phenomenology +hep-ph/9802212 Phenomenology +hep-ph/9802213 Phenomenology +hep-ph/9802215 Phenomenology +hep-ph/9802216 Phenomenology +hep-ph/9802218 Phenomenology +hep-ph/9802219 Phenomenology +hep-ph/9802221 Phenomenology +hep-ph/9802223 Phenomenology +hep-ph/9802224 Phenomenology +hep-ph/9802225 Phenomenology +hep-ph/9802226 Phenomenology +hep-ph/9802232 Phenomenology +hep-ph/9802233 Phenomenology +hep-ph/9802234 Phenomenology +hep-ph/9802241 Phenomenology +hep-ph/9802245 Phenomenology +hep-ph/9802248 Phenomenology +hep-ph/9802252 Phenomenology +hep-ph/9802255 Phenomenology +hep-ph/9802256 Phenomenology +hep-ph/9802258 Phenomenology +hep-ph/9802262 Phenomenology +hep-ph/9802263 Phenomenology +hep-ph/9802265 Phenomenology +hep-ph/9802266 Phenomenology +hep-ph/9802269 Phenomenology +hep-ph/9802276 Phenomenology +hep-ph/9802278 Phenomenology +hep-ph/9802279 Phenomenology +hep-ph/9802280 Phenomenology +hep-ph/9802281 Phenomenology +hep-ph/9802283 Phenomenology +hep-ph/9802284 Phenomenology +hep-ph/9802288 Phenomenology +hep-ph/9802291 Phenomenology +hep-ph/9802293 Phenomenology +hep-ph/9802296 Phenomenology +hep-ph/9802300 Phenomenology +hep-ph/9802308 Phenomenology +hep-ph/9802309 Phenomenology +hep-ph/9802311 Phenomenology +hep-ph/9802313 Phenomenology +hep-ph/9802320 Phenomenology +hep-ph/9802321 Phenomenology +hep-ph/9802322 Phenomenology +hep-ph/9802323 Phenomenology +hep-ph/9802326 Phenomenology +hep-ph/9802334 Phenomenology +hep-ph/9802335 Phenomenology +hep-ph/9802336 Phenomenology +hep-ph/9802341 Phenomenology +hep-ph/9802343 Phenomenology +hep-ph/9802344 Phenomenology +hep-ph/9802348 Phenomenology +hep-ph/9802349 Phenomenology +hep-ph/9802351 Phenomenology +hep-ph/9802355 Phenomenology +hep-ph/9802358 Phenomenology +hep-ph/9802365 Phenomenology +hep-ph/9802366 Phenomenology +hep-ph/9802367 Phenomenology +hep-ph/9802368 Phenomenology +hep-ph/9802373 Phenomenology +hep-ph/9802374 Phenomenology +hep-ph/9802375 Phenomenology +hep-ph/9802379 Phenomenology +hep-ph/9802383 Phenomenology +hep-ph/9802388 Phenomenology +hep-ph/9802390 Phenomenology +hep-ph/9802394 Phenomenology +hep-ph/9802397 Phenomenology +hep-ph/9802402 Phenomenology +hep-ph/9802406 Phenomenology +hep-ph/9802408 Phenomenology +hep-ph/9802412 Phenomenology +hep-ph/9802418 Phenomenology +hep-ph/9802421 Phenomenology +hep-ph/9802422 Phenomenology +hep-ph/9802423 Phenomenology +hep-ph/9802426 Phenomenology +hep-ph/9802427 Phenomenology +hep-ph/9802429 Phenomenology +hep-ph/9802432 Phenomenology +hep-ph/9802436 Phenomenology +hep-ph/9802439 Phenomenology +hep-ph/9802443 Phenomenology +hep-ph/9802445 Phenomenology +hep-ph/9803203 Phenomenology +hep-ph/9803208 Phenomenology +hep-ph/9803210 Phenomenology +hep-ph/9803212 Phenomenology +hep-ph/9803213 Phenomenology +hep-ph/9803215 Phenomenology +hep-ph/9803216 Phenomenology +hep-ph/9803221 Phenomenology +hep-ph/9803223 Phenomenology +hep-ph/9803227 Phenomenology +hep-ph/9803228 Phenomenology +hep-ph/9803229 Phenomenology +hep-ph/9803232 Phenomenology +hep-ph/9803243 Phenomenology +hep-ph/9803245 Phenomenology +hep-ph/9803246 Phenomenology +hep-ph/9803253 Phenomenology +hep-ph/9803257 Phenomenology +hep-ph/9803259 Phenomenology +hep-ph/9803261 Phenomenology +hep-ph/9803263 Phenomenology +hep-ph/9803265 Phenomenology +hep-ph/9803266 Phenomenology +hep-ph/9803268 Phenomenology +hep-ph/9803269 Phenomenology +hep-ph/9803274 Phenomenology +hep-ph/9803279 Phenomenology +hep-ph/9803281 Phenomenology +hep-ph/9803285 Phenomenology +hep-ph/9803290 Phenomenology +hep-ph/9803291 Phenomenology +hep-ph/9803297 Phenomenology +hep-ph/9803298 Phenomenology +hep-ph/9803299 Phenomenology +hep-ph/9803301 Phenomenology +hep-ph/9803303 Phenomenology +hep-ph/9803310 Phenomenology +hep-ph/9803313 Phenomenology +hep-ph/9803317 Phenomenology +hep-ph/9803320 Phenomenology +hep-ph/9803321 Phenomenology +hep-ph/9803326 Phenomenology +hep-ph/9803328 Phenomenology +hep-ph/9803331 Phenomenology +hep-ph/9803334 Phenomenology +hep-ph/9803337 Phenomenology +hep-ph/9803338 Phenomenology +hep-ph/9803342 Phenomenology +hep-ph/9803343 Phenomenology +hep-ph/9803344 Phenomenology +hep-ph/9803345 Phenomenology +hep-ph/9803346 Phenomenology +hep-ph/9803348 Phenomenology +hep-ph/9803355 Phenomenology +hep-ph/9803357 Phenomenology +hep-ph/9803361 Phenomenology +hep-ph/9803363 Phenomenology +hep-ph/9803366 Phenomenology +hep-ph/9803367 Phenomenology +hep-ph/9803371 Phenomenology +hep-ph/9803372 Phenomenology +hep-ph/9803379 Phenomenology +hep-ph/9803380 Phenomenology +hep-ph/9803381 Phenomenology +hep-ph/9803383 Phenomenology +hep-ph/9803386 Phenomenology +hep-ph/9803389 Phenomenology +hep-ph/9803390 Phenomenology +hep-ph/9803391 Phenomenology +hep-ph/9803393 Phenomenology +hep-ph/9803399 Phenomenology +hep-ph/9803404 Phenomenology +hep-ph/9803405 Phenomenology +hep-ph/9803406 Phenomenology +hep-ph/9803409 Phenomenology +hep-ph/9803411 Phenomenology +hep-ph/9803414 Phenomenology +hep-ph/9803415 Phenomenology +hep-ph/9803419 Phenomenology +hep-ph/9803420 Phenomenology +hep-ph/9803421 Phenomenology +hep-ph/9803424 Phenomenology +hep-ph/9803427 Phenomenology +hep-ph/9803429 Phenomenology +hep-ph/9803435 Phenomenology +hep-ph/9803438 Phenomenology +hep-ph/9803439 Phenomenology +hep-ph/9803441 Phenomenology +hep-ph/9803447 Phenomenology +hep-ph/9803456 Phenomenology +hep-ph/9803459 Phenomenology +hep-ph/9803463 Phenomenology +hep-ph/9803466 Phenomenology +hep-ph/9803467 Phenomenology +hep-ph/9803468 Phenomenology +hep-ph/9803469 Phenomenology +hep-ph/9803476 Phenomenology +hep-ph/9803480 Phenomenology +hep-ph/9803483 Phenomenology +hep-ph/9803485 Phenomenology +hep-ph/9803486 Phenomenology +hep-ph/9803491 Phenomenology +hep-ph/9803493 Phenomenology +hep-ph/9804203 Phenomenology +hep-ph/9804206 Phenomenology +hep-ph/9804210 Phenomenology +hep-ph/9804211 Phenomenology +hep-ph/9804212 Phenomenology +hep-ph/9804213 Phenomenology +hep-ph/9804214 Phenomenology +hep-ph/9804218 Phenomenology +hep-ph/9804219 Phenomenology +hep-ph/9804224 Phenomenology +hep-ph/9804225 Phenomenology +hep-ph/9804228 Phenomenology +hep-ph/9804229 Phenomenology +hep-ph/9804231 Phenomenology +hep-ph/9804232 Phenomenology +hep-ph/9804235 Phenomenology +hep-ph/9804240 Phenomenology +hep-ph/9804241 Phenomenology +hep-ph/9804242 Phenomenology +hep-ph/9804245 Phenomenology +hep-ph/9804249 Phenomenology +hep-ph/9804252 Phenomenology +hep-ph/9804254 Phenomenology +hep-ph/9804257 Phenomenology +hep-ph/9804262 Phenomenology +hep-ph/9804264 Phenomenology +hep-ph/9804266 Phenomenology +hep-ph/9804268 Phenomenology +hep-ph/9804270 Phenomenology +hep-ph/9804276 Phenomenology +hep-ph/9804293 Phenomenology +hep-ph/9804295 Phenomenology +hep-ph/9804297 Phenomenology +hep-ph/9804298 Phenomenology +hep-ph/9804299 Phenomenology +hep-ph/9804303 Phenomenology +hep-ph/9804304 Phenomenology +hep-ph/9804305 Phenomenology +hep-ph/9804307 Phenomenology +hep-ph/9804308 Phenomenology +hep-ph/9804313 Phenomenology +hep-ph/9804318 Phenomenology +hep-ph/9804320 Phenomenology +hep-ph/9804324 Phenomenology +hep-ph/9804329 Phenomenology +hep-ph/9804334 Phenomenology +hep-ph/9804336 Phenomenology +hep-ph/9804337 Phenomenology +hep-ph/9804338 Phenomenology +hep-ph/9804339 Phenomenology +hep-ph/9804343 Phenomenology +hep-ph/9804347 Phenomenology +hep-ph/9804350 Phenomenology +hep-ph/9804351 Phenomenology +hep-ph/9804354 Phenomenology +hep-ph/9804356 Phenomenology +hep-ph/9804358 Phenomenology +hep-ph/9804362 Phenomenology +hep-ph/9804364 Phenomenology +hep-ph/9804366 Phenomenology +hep-ph/9804367 Phenomenology +hep-ph/9804368 Phenomenology +hep-ph/9804369 Phenomenology +hep-ph/9804371 Phenomenology +hep-ph/9804372 Phenomenology +hep-ph/9804374 Phenomenology +hep-ph/9804375 Phenomenology +hep-ph/9804376 Phenomenology +hep-ph/9804377 Phenomenology +hep-ph/9804378 Phenomenology +hep-ph/9804382 Phenomenology +hep-ph/9804383 Phenomenology +hep-ph/9804384 Phenomenology +hep-ph/9804389 Phenomenology +hep-ph/9804390 Phenomenology +hep-ph/9804393 Phenomenology +hep-ph/9804394 Phenomenology +hep-ph/9804395 Phenomenology +hep-ph/9804399 Phenomenology +hep-ph/9804403 Phenomenology +hep-ph/9804404 Phenomenology +hep-ph/9804407 Phenomenology +hep-ph/9804408 Phenomenology +hep-ph/9804409 Phenomenology +hep-ph/9804411 Phenomenology +hep-ph/9804416 Phenomenology +hep-ph/9804419 Phenomenology +hep-ph/9804420 Phenomenology +hep-ph/9804422 Phenomenology +hep-ph/9804423 Phenomenology +hep-ph/9804428 Phenomenology +hep-ph/9804429 Phenomenology +hep-ph/9804434 Phenomenology +hep-ph/9804435 Phenomenology +hep-ph/9804437 Phenomenology +hep-ph/9804439 Phenomenology +hep-ph/9804441 Phenomenology +hep-ph/9804443 Phenomenology +hep-ph/9804444 Phenomenology +hep-ph/9804446 Phenomenology +hep-ph/9804448 Phenomenology +hep-ph/9804452 Phenomenology +hep-ph/9804453 Phenomenology +hep-ph/9804454 Phenomenology +hep-ph/9804456 Phenomenology +hep-ph/9804460 Phenomenology +hep-ph/9805204 Phenomenology +hep-ph/9805208 Phenomenology +hep-ph/9805212 Phenomenology +hep-ph/9805217 Phenomenology +hep-ph/9805222 Phenomenology +hep-ph/9805224 Phenomenology +hep-ph/9805225 Phenomenology +hep-ph/9805227 Phenomenology +hep-ph/9805231 Phenomenology +hep-ph/9805233 Phenomenology +hep-ph/9805234 Phenomenology +hep-ph/9805237 Phenomenology +hep-ph/9805238 Phenomenology +hep-ph/9805240 Phenomenology +hep-ph/9805246 Phenomenology +hep-ph/9805250 Phenomenology +hep-ph/9805254 Phenomenology +hep-ph/9805256 Phenomenology +hep-ph/9805257 Phenomenology +hep-ph/9805260 Phenomenology +hep-ph/9805261 Phenomenology +hep-ph/9805262 Phenomenology +hep-ph/9805265 Phenomenology +hep-ph/9805273 Phenomenology +hep-ph/9805277 Phenomenology +hep-ph/9805278 Phenomenology +hep-ph/9805280 Phenomenology +hep-ph/9805282 Phenomenology +hep-ph/9805284 Phenomenology +hep-ph/9805288 Phenomenology +hep-ph/9805294 Phenomenology +hep-ph/9805297 Phenomenology +hep-ph/9805301 Phenomenology +hep-ph/9805304 Phenomenology +hep-ph/9805306 Phenomenology +hep-ph/9805308 Phenomenology +hep-ph/9805318 Phenomenology +hep-ph/9805327 Phenomenology +hep-ph/9805328 Phenomenology +hep-ph/9805333 Phenomenology +hep-ph/9805334 Phenomenology +hep-ph/9805338 Phenomenology +hep-ph/9805339 Phenomenology +hep-ph/9805340 Phenomenology +hep-ph/9805341 Phenomenology +hep-ph/9805343 Phenomenology +hep-ph/9805344 Phenomenology +hep-ph/9805351 Phenomenology +hep-ph/9805356 Phenomenology +hep-ph/9805357 Phenomenology +hep-ph/9805358 Phenomenology +hep-ph/9805367 Phenomenology +hep-ph/9805371 Phenomenology +hep-ph/9805376 Phenomenology +hep-ph/9805378 Phenomenology +hep-ph/9805379 Phenomenology +hep-ph/9805380 Phenomenology +hep-ph/9805382 Phenomenology +hep-ph/9805383 Phenomenology +hep-ph/9805386 Phenomenology +hep-ph/9805389 Phenomenology +hep-ph/9805390 Phenomenology +hep-ph/9805395 Phenomenology +hep-ph/9805398 Phenomenology +hep-ph/9805400 Phenomenology +hep-ph/9805402 Phenomenology +hep-ph/9805407 Phenomenology +hep-ph/9805417 Phenomenology +hep-ph/9805419 Phenomenology +hep-ph/9805420 Phenomenology +hep-ph/9805421 Phenomenology +hep-ph/9805423 Phenomenology +hep-ph/9805424 Phenomenology +hep-ph/9805425 Phenomenology +hep-ph/9805427 Phenomenology +hep-ph/9805432 Phenomenology +hep-ph/9805433 Phenomenology +hep-ph/9805435 Phenomenology +hep-ph/9805436 Phenomenology +hep-ph/9805437 Phenomenology +hep-ph/9805438 Phenomenology +hep-ph/9805442 Phenomenology +hep-ph/9805446 Phenomenology +hep-ph/9805447 Phenomenology +hep-ph/9805448 Phenomenology +hep-ph/9805449 Phenomenology +hep-ph/9805450 Phenomenology +hep-ph/9805451 Phenomenology +hep-ph/9805452 Phenomenology +hep-ph/9805457 Phenomenology +hep-ph/9805458 Phenomenology +hep-ph/9805459 Phenomenology +hep-ph/9805460 Phenomenology +hep-ph/9805462 Phenomenology +hep-ph/9805467 Phenomenology +hep-ph/9805473 Phenomenology +hep-ph/9805474 Phenomenology +hep-ph/9805476 Phenomenology +hep-ph/9805482 Phenomenology +hep-ph/9805483 Phenomenology +hep-ph/9805485 Phenomenology +hep-ph/9805487 Phenomenology +hep-ph/9805489 Phenomenology +hep-ph/9805491 Phenomenology +hep-ph/9805493 Phenomenology +hep-ph/9805495 Phenomenology +hep-ph/9805500 Phenomenology +hep-ph/9805501 Phenomenology +hep-ph/9805502 Phenomenology +hep-ph/9805506 Phenomenology +hep-ph/9805509 Phenomenology +hep-ph/9805511 Phenomenology +hep-ph/9805512 Phenomenology +hep-ph/9806201 Phenomenology +hep-ph/9806202 Phenomenology +hep-ph/9806209 Phenomenology +hep-ph/9806210 Phenomenology +hep-ph/9806213 Phenomenology +hep-ph/9806214 Phenomenology +hep-ph/9806215 Phenomenology +hep-ph/9806216 Phenomenology +hep-ph/9806219 Phenomenology +hep-ph/9806220 Phenomenology +hep-ph/9806223 Phenomenology +hep-ph/9806226 Phenomenology +hep-ph/9806228 Phenomenology +hep-ph/9806229 Phenomenology +hep-ph/9806231 Phenomenology +hep-ph/9806232 Phenomenology +hep-ph/9806239 Phenomenology +hep-ph/9806240 Phenomenology +hep-ph/9806243 Phenomenology +hep-ph/9806244 Phenomenology +hep-ph/9806253 Phenomenology +hep-ph/9806260 Phenomenology +hep-ph/9806271 Phenomenology +hep-ph/9806275 Phenomenology +hep-ph/9806277 Phenomenology +hep-ph/9806278 Phenomenology +hep-ph/9806281 Phenomenology +hep-ph/9806282 Phenomenology +hep-ph/9806283 Phenomenology +hep-ph/9806286 Phenomenology +hep-ph/9806288 Phenomenology +hep-ph/9806290 Phenomenology +hep-ph/9806292 Phenomenology +hep-ph/9806294 Phenomenology +hep-ph/9806298 Phenomenology +hep-ph/9806300 Phenomenology +hep-ph/9806307 Phenomenology +hep-ph/9806308 Phenomenology +hep-ph/9806313 Phenomenology +hep-ph/9806318 Phenomenology +hep-ph/9806324 Phenomenology +hep-ph/9806325 Phenomenology +hep-ph/9806329 Phenomenology +hep-ph/9806332 Phenomenology +hep-ph/9806334 Phenomenology +hep-ph/9806335 Phenomenology +hep-ph/9806337 Phenomenology +hep-ph/9806339 Phenomenology +hep-ph/9806344 Phenomenology +hep-ph/9806345 Phenomenology +hep-ph/9806347 Phenomenology +hep-ph/9806349 Phenomenology +hep-ph/9806350 Phenomenology +hep-ph/9806351 Phenomenology +hep-ph/9806354 Phenomenology +hep-ph/9806371 Phenomenology +hep-ph/9806372 Phenomenology +hep-ph/9806378 Phenomenology +hep-ph/9806380 Phenomenology +hep-ph/9806381 Phenomenology +hep-ph/9806383 Phenomenology +hep-ph/9806386 Phenomenology +hep-ph/9806393 Phenomenology +hep-ph/9806395 Phenomenology +hep-ph/9806396 Phenomenology +hep-ph/9806398 Phenomenology +hep-ph/9806400 Phenomenology +hep-ph/9806401 Phenomenology +hep-ph/9806402 Phenomenology +hep-ph/9806411 Phenomenology +hep-ph/9806418 Phenomenology +hep-ph/9806422 Phenomenology +hep-ph/9806424 Phenomenology +hep-ph/9806425 Phenomenology +hep-ph/9806426 Phenomenology +hep-ph/9806430 Phenomenology +hep-ph/9806433 Phenomenology +hep-ph/9806435 Phenomenology +hep-ph/9806436 Phenomenology +hep-ph/9806437 Phenomenology +hep-ph/9806438 Phenomenology +hep-ph/9806440 Phenomenology +hep-ph/9806441 Phenomenology +hep-ph/9806442 Phenomenology +hep-ph/9806443 Phenomenology +hep-ph/9806444 Phenomenology +hep-ph/9806447 Phenomenology +hep-ph/9806448 Phenomenology +hep-ph/9806456 Phenomenology +hep-ph/9806459 Phenomenology +hep-ph/9806466 Phenomenology +hep-ph/9806470 Phenomenology +hep-ph/9806473 Phenomenology +hep-ph/9806476 Phenomenology +hep-ph/9806477 Phenomenology +hep-ph/9806479 Phenomenology +hep-ph/9806487 Phenomenology +hep-ph/9806490 Phenomenology +hep-ph/9806493 Phenomenology +hep-ph/9806499 Phenomenology +hep-ph/9806506 Phenomenology +hep-ph/9806509 Phenomenology +hep-ph/9806513 Phenomenology +hep-ph/9806514 Phenomenology +hep-ph/9806516 Phenomenology +hep-ph/9806525 Phenomenology +hep-ph/9806526 Phenomenology +hep-ph/9806528 Phenomenology +hep-ph/9806534 Phenomenology +hep-ph/9806535 Phenomenology +hep-ph/9806539 Phenomenology +hep-ph/9806540 Phenomenology +hep-ph/9807201 Phenomenology +hep-ph/9807203 Phenomenology +hep-ph/9807204 Phenomenology +hep-ph/9807207 Phenomenology +hep-ph/9807211 Phenomenology +hep-ph/9807213 Phenomenology +hep-ph/9807215 Phenomenology +hep-ph/9807219 Phenomenology +hep-ph/9807220 Phenomenology +hep-ph/9807225 Phenomenology +hep-ph/9807228 Phenomenology +hep-ph/9807231 Phenomenology +hep-ph/9807235 Phenomenology +hep-ph/9807236 Phenomenology +hep-ph/9807238 Phenomenology +hep-ph/9807240 Phenomenology +hep-ph/9807243 Phenomenology +hep-ph/9807244 Phenomenology +hep-ph/9807248 Phenomenology +hep-ph/9807249 Phenomenology +hep-ph/9807250 Phenomenology +hep-ph/9807251 Phenomenology +hep-ph/9807261 Phenomenology +hep-ph/9807262 Phenomenology +hep-ph/9807269 Phenomenology +hep-ph/9807272 Phenomenology +hep-ph/9807273 Phenomenology +hep-ph/9807276 Phenomenology +hep-ph/9807280 Phenomenology +hep-ph/9807281 Phenomenology +hep-ph/9807287 Phenomenology +hep-ph/9807290 Phenomenology +hep-ph/9807291 Phenomenology +hep-ph/9807294 Phenomenology +hep-ph/9807295 Phenomenology +hep-ph/9807296 Phenomenology +hep-ph/9807298 Phenomenology +hep-ph/9807301 Phenomenology +hep-ph/9807302 Phenomenology +hep-ph/9807303 Phenomenology +hep-ph/9807307 Phenomenology +hep-ph/9807308 Phenomenology +hep-ph/9807310 Phenomenology +hep-ph/9807311 Phenomenology +hep-ph/9807315 Phenomenology +hep-ph/9807317 Phenomenology +hep-ph/9807318 Phenomenology +hep-ph/9807320 Phenomenology +hep-ph/9807324 Phenomenology +hep-ph/9807327 Phenomenology +hep-ph/9807329 Phenomenology +hep-ph/9807338 Phenomenology +hep-ph/9807340 Phenomenology +hep-ph/9807344 Phenomenology +hep-ph/9807347 Phenomenology +hep-ph/9807350 Phenomenology +hep-ph/9807353 Phenomenology +hep-ph/9807354 Phenomenology +hep-ph/9807356 Phenomenology +hep-ph/9807364 Phenomenology +hep-ph/9807367 Phenomenology +hep-ph/9807372 Phenomenology +hep-ph/9807374 Phenomenology +hep-ph/9807376 Phenomenology +hep-ph/9807378 Phenomenology +hep-ph/9807381 Phenomenology +hep-ph/9807384 Phenomenology +hep-ph/9807385 Phenomenology +hep-ph/9807386 Phenomenology +hep-ph/9807389 Phenomenology +hep-ph/9807390 Phenomenology +hep-ph/9807391 Phenomenology +hep-ph/9807393 Phenomenology +hep-ph/9807394 Phenomenology +hep-ph/9807398 Phenomenology +hep-ph/9807402 Phenomenology +hep-ph/9807403 Phenomenology +hep-ph/9807407 Phenomenology +hep-ph/9807409 Phenomenology +hep-ph/9807412 Phenomenology +hep-ph/9807417 Phenomenology +hep-ph/9807419 Phenomenology +hep-ph/9807422 Phenomenology +hep-ph/9807423 Phenomenology +hep-ph/9807424 Phenomenology +hep-ph/9807426 Phenomenology +hep-ph/9807427 Phenomenology +hep-ph/9807428 Phenomenology +hep-ph/9807430 Phenomenology +hep-ph/9807431 Phenomenology +hep-ph/9807439 Phenomenology +hep-ph/9807441 Phenomenology +hep-ph/9807442 Phenomenology +hep-ph/9807444 Phenomenology +hep-ph/9807445 Phenomenology +hep-ph/9807449 Phenomenology +hep-ph/9807457 Phenomenology +hep-ph/9807460 Phenomenology +hep-ph/9807461 Phenomenology +hep-ph/9807463 Phenomenology +hep-ph/9807464 Phenomenology +hep-ph/9807465 Phenomenology +hep-ph/9807472 Phenomenology +hep-ph/9807473 Phenomenology +hep-ph/9807477 Phenomenology +hep-ph/9807478 Phenomenology +hep-ph/9807489 Phenomenology +hep-ph/9807490 Phenomenology +hep-ph/9807500 Phenomenology +hep-ph/9807506 Phenomenology +hep-ph/9807508 Phenomenology +hep-ph/9807512 Phenomenology +hep-ph/9807514 Phenomenology +hep-ph/9807515 Phenomenology +hep-ph/9807516 Phenomenology +hep-ph/9807519 Phenomenology +hep-ph/9807529 Phenomenology +hep-ph/9807541 Phenomenology +hep-ph/9807545 Phenomenology +hep-ph/9807546 Phenomenology +hep-ph/9807548 Phenomenology +hep-ph/9807549 Phenomenology +hep-ph/9807550 Phenomenology +hep-ph/9807554 Phenomenology +hep-ph/9807567 Phenomenology +hep-ph/9808201 Phenomenology +hep-ph/9808202 Phenomenology +hep-ph/9808211 Phenomenology +hep-ph/9808217 Phenomenology +hep-ph/9808218 Phenomenology +hep-ph/9808224 Phenomenology +hep-ph/9808230 Phenomenology +hep-ph/9808232 Phenomenology +hep-ph/9808236 Phenomenology +hep-ph/9808244 Phenomenology +hep-ph/9808248 Phenomenology +hep-ph/9808249 Phenomenology +hep-ph/9808255 Phenomenology +hep-ph/9808259 Phenomenology +hep-ph/9808260 Phenomenology +hep-ph/9808262 Phenomenology +hep-ph/9808265 Phenomenology +hep-ph/9808266 Phenomenology +hep-ph/9808269 Phenomenology +hep-ph/9808271 Phenomenology +hep-ph/9808272 Phenomenology +hep-ph/9808273 Phenomenology +hep-ph/9808277 Phenomenology +hep-ph/9808280 Phenomenology +hep-ph/9808284 Phenomenology +hep-ph/9808286 Phenomenology +hep-ph/9808287 Phenomenology +hep-ph/9808288 Phenomenology +hep-ph/9808294 Phenomenology +hep-ph/9808295 Phenomenology +hep-ph/9808296 Phenomenology +hep-ph/9808298 Phenomenology +hep-ph/9808299 Phenomenology +hep-ph/9808301 Phenomenology +hep-ph/9808302 Phenomenology +hep-ph/9808304 Phenomenology +hep-ph/9808305 Phenomenology +hep-ph/9808310 Phenomenology +hep-ph/9808317 Phenomenology +hep-ph/9808318 Phenomenology +hep-ph/9808322 Phenomenology +hep-ph/9808324 Phenomenology +hep-ph/9808326 Phenomenology +hep-ph/9808327 Phenomenology +hep-ph/9808328 Phenomenology +hep-ph/9808329 Phenomenology +hep-ph/9808330 Phenomenology +hep-ph/9808338 Phenomenology +hep-ph/9808340 Phenomenology +hep-ph/9808341 Phenomenology +hep-ph/9808342 Phenomenology +hep-ph/9808344 Phenomenology +hep-ph/9808349 Phenomenology +hep-ph/9808352 Phenomenology +hep-ph/9808355 Phenomenology +hep-ph/9808356 Phenomenology +hep-ph/9808357 Phenomenology +hep-ph/9808358 Phenomenology +hep-ph/9808361 Phenomenology +hep-ph/9808369 Phenomenology +hep-ph/9808370 Phenomenology +hep-ph/9808371 Phenomenology +hep-ph/9808375 Phenomenology +hep-ph/9808377 Phenomenology +hep-ph/9808378 Phenomenology +hep-ph/9808384 Phenomenology +hep-ph/9808389 Phenomenology +hep-ph/9808390 Phenomenology +hep-ph/9808393 Phenomenology +hep-ph/9808397 Phenomenology +hep-ph/9808399 Phenomenology +hep-ph/9808400 Phenomenology +hep-ph/9808403 Phenomenology +hep-ph/9808404 Phenomenology +hep-ph/9808408 Phenomenology +hep-ph/9808410 Phenomenology +hep-ph/9808413 Phenomenology +hep-ph/9808419 Phenomenology +hep-ph/9808420 Phenomenology +hep-ph/9808421 Phenomenology +hep-ph/9808422 Phenomenology +hep-ph/9808423 Phenomenology +hep-ph/9808425 Phenomenology +hep-ph/9808428 Phenomenology +hep-ph/9808430 Phenomenology +hep-ph/9808433 Phenomenology +hep-ph/9808434 Phenomenology +hep-ph/9808438 Phenomenology +hep-ph/9808440 Phenomenology +hep-ph/9808442 Phenomenology +hep-ph/9808443 Phenomenology +hep-ph/9808444 Phenomenology +hep-ph/9808450 Phenomenology +hep-ph/9808451 Phenomenology +hep-ph/9808453 Phenomenology +hep-ph/9808459 Phenomenology +hep-ph/9808462 Phenomenology +hep-ph/9808464 Phenomenology +hep-ph/9808470 Phenomenology +hep-ph/9808475 Phenomenology +hep-ph/9808476 Phenomenology +hep-ph/9808477 Phenomenology +hep-ph/9808479 Phenomenology +hep-ph/9808481 Phenomenology +hep-ph/9808492 Phenomenology +hep-ph/9808496 Phenomenology +hep-ph/9808497 Phenomenology +hep-ph/9809203 Phenomenology +hep-ph/9809204 Phenomenology +hep-ph/9809206 Phenomenology +hep-ph/9809207 Phenomenology +hep-ph/9809210 Phenomenology +hep-ph/9809217 Phenomenology +hep-ph/9809223 Phenomenology +hep-ph/9809228 Phenomenology +hep-ph/9809230 Phenomenology +hep-ph/9809242 Phenomenology +hep-ph/9809245 Phenomenology +hep-ph/9809248 Phenomenology +hep-ph/9809250 Phenomenology +hep-ph/9809253 Phenomenology +hep-ph/9809254 Phenomenology +hep-ph/9809260 Phenomenology +hep-ph/9809274 Phenomenology +hep-ph/9809275 Phenomenology +hep-ph/9809278 Phenomenology +hep-ph/9809282 Phenomenology +hep-ph/9809290 Phenomenology +hep-ph/9809291 Phenomenology +hep-ph/9809293 Phenomenology +hep-ph/9809294 Phenomenology +hep-ph/9809300 Phenomenology +hep-ph/9809304 Phenomenology +hep-ph/9809306 Phenomenology +hep-ph/9809307 Phenomenology +hep-ph/9809308 Phenomenology +hep-ph/9809309 Phenomenology +hep-ph/9809310 Phenomenology +hep-ph/9809313 Phenomenology +hep-ph/9809325 Phenomenology +hep-ph/9809329 Phenomenology +hep-ph/9809334 Phenomenology +hep-ph/9809336 Phenomenology +hep-ph/9809338 Phenomenology +hep-ph/9809341 Phenomenology +hep-ph/9809343 Phenomenology +hep-ph/9809345 Phenomenology +hep-ph/9809346 Phenomenology +hep-ph/9809348 Phenomenology +hep-ph/9809349 Phenomenology +hep-ph/9809353 Phenomenology +hep-ph/9809354 Phenomenology +hep-ph/9809356 Phenomenology +hep-ph/9809357 Phenomenology +hep-ph/9809358 Phenomenology +hep-ph/9809359 Phenomenology +hep-ph/9809360 Phenomenology +hep-ph/9809362 Phenomenology +hep-ph/9809365 Phenomenology +hep-ph/9809366 Phenomenology +hep-ph/9809367 Phenomenology +hep-ph/9809368 Phenomenology +hep-ph/9809371 Phenomenology +hep-ph/9809376 Phenomenology +hep-ph/9809381 Phenomenology +hep-ph/9809392 Phenomenology +hep-ph/9809394 Phenomenology +hep-ph/9809396 Phenomenology +hep-ph/9809401 Phenomenology +hep-ph/9809403 Phenomenology +hep-ph/9809404 Phenomenology +hep-ph/9809406 Phenomenology +hep-ph/9809407 Phenomenology +hep-ph/9809410 Phenomenology +hep-ph/9809411 Phenomenology +hep-ph/9809412 Phenomenology +hep-ph/9809413 Phenomenology +hep-ph/9809415 Phenomenology +hep-ph/9809417 Phenomenology +hep-ph/9809423 Phenomenology +hep-ph/9809427 Phenomenology +hep-ph/9809428 Phenomenology +hep-ph/9809430 Phenomenology +hep-ph/9809432 Phenomenology +hep-ph/9809433 Phenomenology +hep-ph/9809440 Phenomenology +hep-ph/9809442 Phenomenology +hep-ph/9809444 Phenomenology +hep-ph/9809446 Phenomenology +hep-ph/9809447 Phenomenology +hep-ph/9809449 Phenomenology +hep-ph/9809450 Phenomenology +hep-ph/9809451 Phenomenology +hep-ph/9809462 Phenomenology +hep-ph/9809463 Phenomenology +hep-ph/9809475 Phenomenology +hep-ph/9809478 Phenomenology +hep-ph/9809481 Phenomenology +hep-ph/9809485 Phenomenology +hep-ph/9809489 Phenomenology +hep-ph/9809492 Phenomenology +hep-ph/9809503 Phenomenology +hep-ph/9809504 Phenomenology +hep-ph/9809507 Phenomenology +hep-ph/9809509 Phenomenology +hep-ph/9809510 Phenomenology +hep-ph/9809515 Phenomenology +hep-ph/9809517 Phenomenology +hep-ph/9809519 Phenomenology +hep-ph/9809522 Phenomenology +hep-ph/9809523 Phenomenology +hep-ph/9809524 Phenomenology +hep-ph/9809532 Phenomenology +hep-ph/9809538 Phenomenology +hep-ph/9809539 Phenomenology +hep-ph/9809540 Phenomenology +hep-ph/9809547 Phenomenology +hep-ph/9809549 Phenomenology +hep-ph/9809551 Phenomenology +hep-ph/9809553 Phenomenology +hep-ph/9809554 Phenomenology +hep-ph/9809556 Phenomenology +hep-ph/9809559 Phenomenology +hep-ph/9809562 Phenomenology +hep-ph/9809566 Phenomenology +hep-ph/9809568 Phenomenology +hep-ph/9809569 Phenomenology +hep-ph/9809573 Phenomenology +hep-ph/9809575 Phenomenology +hep-ph/9809576 Phenomenology +hep-ph/9809586 Phenomenology +hep-ph/9809587 Phenomenology +hep-ph/9809588 Phenomenology +hep-ph/9810201 Phenomenology +hep-ph/9810205 Phenomenology +hep-ph/9810208 Phenomenology +hep-ph/9810225 Phenomenology +hep-ph/9810227 Phenomenology +hep-ph/9810230 Phenomenology +hep-ph/9810231 Phenomenology +hep-ph/9810235 Phenomenology +hep-ph/9810236 Phenomenology +hep-ph/9810243 Phenomenology +hep-ph/9810245 Phenomenology +hep-ph/9810248 Phenomenology +hep-ph/9810249 Phenomenology +hep-ph/9810251 Phenomenology +hep-ph/9810261 Phenomenology +hep-ph/9810266 Phenomenology +hep-ph/9810273 Phenomenology +hep-ph/9810275 Phenomenology +hep-ph/9810278 Phenomenology +hep-ph/9810281 Phenomenology +hep-ph/9810282 Phenomenology +hep-ph/9810286 Phenomenology +hep-ph/9810287 Phenomenology +hep-ph/9810291 Phenomenology +hep-ph/9810292 Phenomenology +hep-ph/9810297 Phenomenology +hep-ph/9810301 Phenomenology +hep-ph/9810305 Phenomenology +hep-ph/9810307 Phenomenology +hep-ph/9810308 Phenomenology +hep-ph/9810309 Phenomenology +hep-ph/9810310 Phenomenology +hep-ph/9810312 Phenomenology +hep-ph/9810313 Phenomenology +hep-ph/9810317 Phenomenology +hep-ph/9810318 Phenomenology +hep-ph/9810320 Phenomenology +hep-ph/9810323 Phenomenology +hep-ph/9810324 Phenomenology +hep-ph/9810325 Phenomenology +hep-ph/9810327 Phenomenology +hep-ph/9810328 Phenomenology +hep-ph/9810331 Phenomenology +hep-ph/9810334 Phenomenology +hep-ph/9810337 Phenomenology +hep-ph/9810343 Phenomenology +hep-ph/9810347 Phenomenology +hep-ph/9810349 Phenomenology +hep-ph/9810353 Phenomenology +hep-ph/9810357 Phenomenology +hep-ph/9810358 Phenomenology +hep-ph/9810363 Phenomenology +hep-ph/9810364 Phenomenology +hep-ph/9810366 Phenomenology +hep-ph/9810367 Phenomenology +hep-ph/9810370 Phenomenology +hep-ph/9810372 Phenomenology +hep-ph/9810373 Phenomenology +hep-ph/9810378 Phenomenology +hep-ph/9810379 Phenomenology +hep-ph/9810382 Phenomenology +hep-ph/9810383 Phenomenology +hep-ph/9810384 Phenomenology +hep-ph/9810385 Phenomenology +hep-ph/9810387 Phenomenology +hep-ph/9810389 Phenomenology +hep-ph/9810390 Phenomenology +hep-ph/9810398 Phenomenology +hep-ph/9810399 Phenomenology +hep-ph/9810400 Phenomenology +hep-ph/9810410 Phenomenology +hep-ph/9810414 Phenomenology +hep-ph/9810419 Phenomenology +hep-ph/9810420 Phenomenology +hep-ph/9810425 Phenomenology +hep-ph/9810426 Phenomenology +hep-ph/9810428 Phenomenology +hep-ph/9810429 Phenomenology +hep-ph/9810436 Phenomenology +hep-ph/9810438 Phenomenology +hep-ph/9810442 Phenomenology +hep-ph/9810443 Phenomenology +hep-ph/9810453 Phenomenology +hep-ph/9810454 Phenomenology +hep-ph/9810459 Phenomenology +hep-ph/9810462 Phenomenology +hep-ph/9810463 Phenomenology +hep-ph/9810467 Phenomenology +hep-ph/9810473 Phenomenology +hep-ph/9810474 Phenomenology +hep-ph/9810475 Phenomenology +hep-ph/9810480 Phenomenology +hep-ph/9810488 Phenomenology +hep-ph/9810490 Phenomenology +hep-ph/9810491 Phenomenology +hep-ph/9810494 Phenomenology +hep-ph/9810495 Phenomenology +hep-ph/9810496 Phenomenology +hep-ph/9810498 Phenomenology +hep-ph/9810499 Phenomenology +hep-ph/9810504 Phenomenology +hep-ph/9810505 Phenomenology +hep-ph/9810506 Phenomenology +hep-ph/9810509 Phenomenology +hep-ph/9810512 Phenomenology +hep-ph/9810514 Phenomenology +hep-ph/9810515 Phenomenology +hep-ph/9810516 Phenomenology +hep-ph/9810517 Phenomenology +hep-ph/9810519 Phenomenology +hep-ph/9810522 Phenomenology +hep-ph/9810523 Phenomenology +hep-ph/9810526 Phenomenology +hep-ph/9810528 Phenomenology +hep-ph/9810530 Phenomenology +hep-ph/9810532 Phenomenology +hep-ph/9810534 Phenomenology +hep-ph/9810535 Phenomenology +hep-ph/9810536 Phenomenology +hep-ph/9810537 Phenomenology +hep-ph/9810539 Phenomenology +hep-ph/9810545 Phenomenology +hep-ph/9810547 Phenomenology +hep-ph/9810549 Phenomenology +hep-ph/9810550 Phenomenology +hep-ph/9810552 Phenomenology +hep-ph/9810553 Phenomenology +hep-ph/9811201 Phenomenology +hep-ph/9811203 Phenomenology +hep-ph/9811206 Phenomenology +hep-ph/9811207 Phenomenology +hep-ph/9811208 Phenomenology +hep-ph/9811209 Phenomenology +hep-ph/9811211 Phenomenology +hep-ph/9811213 Phenomenology +hep-ph/9811214 Phenomenology +hep-ph/9811216 Phenomenology +hep-ph/9811218 Phenomenology +hep-ph/9811221 Phenomenology +hep-ph/9811224 Phenomenology +hep-ph/9811227 Phenomenology +hep-ph/9811234 Phenomenology +hep-ph/9811238 Phenomenology +hep-ph/9811239 Phenomenology +hep-ph/9811240 Phenomenology +hep-ph/9811241 Phenomenology +hep-ph/9811242 Phenomenology +hep-ph/9811243 Phenomenology +hep-ph/9811245 Phenomenology +hep-ph/9811251 Phenomenology +hep-ph/9811255 Phenomenology +hep-ph/9811257 Phenomenology +hep-ph/9811259 Phenomenology +hep-ph/9811261 Phenomenology +hep-ph/9811263 Phenomenology +hep-ph/9811265 Phenomenology +hep-ph/9811266 Phenomenology +hep-ph/9811268 Phenomenology +hep-ph/9811273 Phenomenology +hep-ph/9811275 Phenomenology +hep-ph/9811285 Phenomenology +hep-ph/9811286 Phenomenology +hep-ph/9811287 Phenomenology +hep-ph/9811291 Phenomenology +hep-ph/9811292 Phenomenology +hep-ph/9811293 Phenomenology +hep-ph/9811294 Phenomenology +hep-ph/9811295 Phenomenology +hep-ph/9811301 Phenomenology +hep-ph/9811302 Phenomenology +hep-ph/9811307 Phenomenology +hep-ph/9811308 Phenomenology +hep-ph/9811311 Phenomenology +hep-ph/9811312 Phenomenology +hep-ph/9811321 Phenomenology +hep-ph/9811323 Phenomenology +hep-ph/9811324 Phenomenology +hep-ph/9811325 Phenomenology +hep-ph/9811333 Phenomenology +hep-ph/9811337 Phenomenology +hep-ph/9811343 Phenomenology +hep-ph/9811344 Phenomenology +hep-ph/9811346 Phenomenology +hep-ph/9811353 Phenomenology +hep-ph/9811354 Phenomenology +hep-ph/9811356 Phenomenology +hep-ph/9811361 Phenomenology +hep-ph/9811362 Phenomenology +hep-ph/9811364 Phenomenology +hep-ph/9811365 Phenomenology +hep-ph/9811366 Phenomenology +hep-ph/9811369 Phenomenology +hep-ph/9811370 Phenomenology +hep-ph/9811371 Phenomenology +hep-ph/9811373 Phenomenology +hep-ph/9811374 Phenomenology +hep-ph/9811376 Phenomenology +hep-ph/9811387 Phenomenology +hep-ph/9811390 Phenomenology +hep-ph/9811391 Phenomenology +hep-ph/9811394 Phenomenology +hep-ph/9811395 Phenomenology +hep-ph/9811402 Phenomenology +hep-ph/9811404 Phenomenology +hep-ph/9811405 Phenomenology +hep-ph/9811406 Phenomenology +hep-ph/9811408 Phenomenology +hep-ph/9811411 Phenomenology +hep-ph/9811412 Phenomenology +hep-ph/9811413 Phenomenology +hep-ph/9811420 Phenomenology +hep-ph/9811425 Phenomenology +hep-ph/9811428 Phenomenology +hep-ph/9811433 Phenomenology +hep-ph/9811440 Phenomenology +hep-ph/9811448 Phenomenology +hep-ph/9811449 Phenomenology +hep-ph/9811451 Phenomenology +hep-ph/9811452 Phenomenology +hep-ph/9811459 Phenomenology +hep-ph/9811460 Phenomenology +hep-ph/9811470 Phenomenology +hep-ph/9811471 Phenomenology +hep-ph/9811472 Phenomenology +hep-ph/9811473 Phenomenology +hep-ph/9811477 Phenomenology +hep-ph/9811479 Phenomenology +hep-ph/9811481 Phenomenology +hep-ph/9811482 Phenomenology +hep-ph/9811483 Phenomenology +hep-ph/9811484 Phenomenology +hep-ph/9811491 Phenomenology +hep-ph/9811492 Phenomenology +hep-ph/9811494 Phenomenology +hep-ph/9811498 Phenomenology +hep-ph/9811499 Phenomenology +hep-ph/9811501 Phenomenology +hep-ph/9811504 Phenomenology +hep-ph/9811510 Phenomenology +hep-ph/9811512 Phenomenology +hep-ph/9811513 Phenomenology +hep-ph/9811515 Phenomenology +hep-ph/9811519 Phenomenology +hep-ph/9811520 Phenomenology +hep-ph/9812201 Phenomenology +hep-ph/9812203 Phenomenology +hep-ph/9812204 Phenomenology +hep-ph/9812211 Phenomenology +hep-ph/9812216 Phenomenology +hep-ph/9812220 Phenomenology +hep-ph/9812221 Phenomenology +hep-ph/9812222 Phenomenology +hep-ph/9812226 Phenomenology +hep-ph/9812230 Phenomenology +hep-ph/9812231 Phenomenology +hep-ph/9812238 Phenomenology +hep-ph/9812239 Phenomenology +hep-ph/9812251 Phenomenology +hep-ph/9812253 Phenomenology +hep-ph/9812254 Phenomenology +hep-ph/9812255 Phenomenology +hep-ph/9812260 Phenomenology +hep-ph/9812269 Phenomenology +hep-ph/9812270 Phenomenology +hep-ph/9812274 Phenomenology +hep-ph/9812275 Phenomenology +hep-ph/9812278 Phenomenology +hep-ph/9812281 Phenomenology +hep-ph/9812282 Phenomenology +hep-ph/9812286 Phenomenology +hep-ph/9812288 Phenomenology +hep-ph/9812291 Phenomenology +hep-ph/9812292 Phenomenology +hep-ph/9812294 Phenomenology +hep-ph/9812296 Phenomenology +hep-ph/9812299 Phenomenology +hep-ph/9812302 Phenomenology +hep-ph/9812305 Phenomenology +hep-ph/9812309 Phenomenology +hep-ph/9812319 Phenomenology +hep-ph/9812324 Phenomenology +hep-ph/9812325 Phenomenology +hep-ph/9812326 Phenomenology +hep-ph/9812330 Phenomenology +hep-ph/9812333 Phenomenology +hep-ph/9812334 Phenomenology +hep-ph/9812335 Phenomenology +hep-ph/9812336 Phenomenology +hep-ph/9812337 Phenomenology +hep-ph/9812338 Phenomenology +hep-ph/9812341 Phenomenology +hep-ph/9812342 Phenomenology +hep-ph/9812343 Phenomenology +hep-ph/9812344 Phenomenology +hep-ph/9812346 Phenomenology +hep-ph/9812349 Phenomenology +hep-ph/9812350 Phenomenology +hep-ph/9812351 Phenomenology +hep-ph/9812363 Phenomenology +hep-ph/9812364 Phenomenology +hep-ph/9812366 Phenomenology +hep-ph/9812369 Phenomenology +hep-ph/9812370 Phenomenology +hep-ph/9812372 Phenomenology +hep-ph/9812373 Phenomenology +hep-ph/9812375 Phenomenology +hep-ph/9812378 Phenomenology +hep-ph/9812381 Phenomenology +hep-ph/9812386 Phenomenology +hep-ph/9812388 Phenomenology +hep-ph/9812391 Phenomenology +hep-ph/9812392 Phenomenology +hep-ph/9812394 Phenomenology +hep-ph/9812397 Phenomenology +hep-ph/9812401 Phenomenology +hep-ph/9812402 Phenomenology +hep-ph/9812403 Phenomenology +hep-ph/9812404 Phenomenology +hep-ph/9812408 Phenomenology +hep-ph/9812409 Phenomenology +hep-ph/9812413 Phenomenology +hep-ph/9812421 Phenomenology +hep-ph/9812423 Phenomenology +hep-ph/9812425 Phenomenology +hep-ph/9812428 Phenomenology +hep-ph/9812436 Phenomenology +hep-ph/9812437 Phenomenology +hep-ph/9812438 Phenomenology +hep-ph/9812441 Phenomenology +hep-ph/9812443 Phenomenology +hep-ph/9812449 Phenomenology +hep-ph/9812460 Phenomenology +hep-ph/9812461 Phenomenology +hep-ph/9812462 Phenomenology +hep-ph/9812464 Phenomenology +hep-ph/9812474 Phenomenology +hep-ph/9812479 Phenomenology +hep-ph/9812483 Phenomenology +hep-ph/9812486 Phenomenology +hep-ph/9812489 Phenomenology +hep-ph/9812490 Phenomenology +hep-ph/9812495 Phenomenology +hep-ph/9812502 Phenomenology +hep-ph/9812506 Phenomenology +hep-ph/9812510 Phenomenology +hep-ph/9812519 Phenomenology +hep-ph/9812521 Phenomenology +hep-ph/9812522 Phenomenology +hep-ph/9812525 Phenomenology +hep-ph/9812529 Phenomenology +hep-ph/9901202 Phenomenology +hep-ph/9901204 Phenomenology +hep-ph/9901207 Phenomenology +hep-ph/9901211 Phenomenology +hep-ph/9901212 Phenomenology +hep-ph/9901213 Phenomenology +hep-ph/9901216 Phenomenology +hep-ph/9901217 Phenomenology +hep-ph/9901218 Phenomenology +hep-ph/9901219 Phenomenology +hep-ph/9901220 Phenomenology +hep-ph/9901227 Phenomenology +hep-ph/9901233 Phenomenology +hep-ph/9901235 Phenomenology +hep-ph/9901250 Phenomenology +hep-ph/9901253 Phenomenology +hep-ph/9901256 Phenomenology +hep-ph/9901257 Phenomenology +hep-ph/9901261 Phenomenology +hep-ph/9901263 Phenomenology +hep-ph/9901264 Phenomenology +hep-ph/9901266 Phenomenology +hep-ph/9901268 Phenomenology +hep-ph/9901286 Phenomenology +hep-ph/9901289 Phenomenology +hep-ph/9901290 Phenomenology +hep-ph/9901302 Phenomenology +hep-ph/9901305 Phenomenology +hep-ph/9901308 Phenomenology +hep-ph/9901311 Phenomenology +hep-ph/9901314 Phenomenology +hep-ph/9901319 Phenomenology +hep-ph/9901321 Phenomenology +hep-ph/9901324 Phenomenology +hep-ph/9901329 Phenomenology +hep-ph/9901331 Phenomenology +hep-ph/9901332 Phenomenology +hep-ph/9901336 Phenomenology +hep-ph/9901337 Phenomenology +hep-ph/9901342 Phenomenology +hep-ph/9901344 Phenomenology +hep-ph/9901350 Phenomenology +hep-ph/9901353 Phenomenology +hep-ph/9901354 Phenomenology +hep-ph/9901360 Phenomenology +hep-ph/9901363 Phenomenology +hep-ph/9901369 Phenomenology +hep-ph/9901371 Phenomenology +hep-ph/9901377 Phenomenology +hep-ph/9901378 Phenomenology +hep-ph/9901379 Phenomenology +hep-ph/9901380 Phenomenology +hep-ph/9901391 Phenomenology +hep-ph/9901393 Phenomenology +hep-ph/9901394 Phenomenology +hep-ph/9901395 Phenomenology +hep-ph/9901396 Phenomenology +hep-ph/9901401 Phenomenology +hep-ph/9901405 Phenomenology +hep-ph/9901407 Phenomenology +hep-ph/9901415 Phenomenology +hep-ph/9901416 Phenomenology +hep-ph/9901428 Phenomenology +hep-ph/9901430 Phenomenology +hep-ph/9901431 Phenomenology +hep-ph/9901434 Phenomenology +hep-ph/9901435 Phenomenology +hep-ph/9901436 Phenomenology +hep-ph/9901439 Phenomenology +hep-ph/9901443 Phenomenology +hep-ph/9901444 Phenomenology +hep-ph/9901445 Phenomenology +hep-ph/9901446 Phenomenology +hep-ph/9901452 Phenomenology +hep-ph/9901455 Phenomenology +hep-ph/9902202 Phenomenology +hep-ph/9902204 Phenomenology +hep-ph/9902208 Phenomenology +hep-ph/9902209 Phenomenology +hep-ph/9902214 Phenomenology +hep-ph/9902223 Phenomenology +hep-ph/9902227 Phenomenology +hep-ph/9902232 Phenomenology +hep-ph/9902233 Phenomenology +hep-ph/9902234 Phenomenology +hep-ph/9902238 Phenomenology +hep-ph/9902239 Phenomenology +hep-ph/9902243 Phenomenology +hep-ph/9902244 Phenomenology +hep-ph/9902246 Phenomenology +hep-ph/9902249 Phenomenology +hep-ph/9902256 Phenomenology +hep-ph/9902258 Phenomenology +hep-ph/9902262 Phenomenology +hep-ph/9902263 Phenomenology +hep-ph/9902266 Phenomenology +hep-ph/9902268 Phenomenology +hep-ph/9902272 Phenomenology +hep-ph/9902276 Phenomenology +hep-ph/9902281 Phenomenology +hep-ph/9902283 Phenomenology +hep-ph/9902288 Phenomenology +hep-ph/9902289 Phenomenology +hep-ph/9902291 Phenomenology +hep-ph/9902292 Phenomenology +hep-ph/9902300 Phenomenology +hep-ph/9902302 Phenomenology +hep-ph/9902303 Phenomenology +hep-ph/9902304 Phenomenology +hep-ph/9902305 Phenomenology +hep-ph/9902312 Phenomenology +hep-ph/9902314 Phenomenology +hep-ph/9902317 Phenomenology +hep-ph/9902319 Phenomenology +hep-ph/9902321 Phenomenology +hep-ph/9902322 Phenomenology +hep-ph/9902324 Phenomenology +hep-ph/9902327 Phenomenology +hep-ph/9902329 Phenomenology +hep-ph/9902335 Phenomenology +hep-ph/9902336 Phenomenology +hep-ph/9902337 Phenomenology +hep-ph/9902345 Phenomenology +hep-ph/9902348 Phenomenology +hep-ph/9902351 Phenomenology +hep-ph/9902352 Phenomenology +hep-ph/9902354 Phenomenology +hep-ph/9902355 Phenomenology +hep-ph/9902357 Phenomenology +hep-ph/9902361 Phenomenology +hep-ph/9902368 Phenomenology +hep-ph/9902370 Phenomenology +hep-ph/9902375 Phenomenology +hep-ph/9902377 Phenomenology +hep-ph/9902381 Phenomenology +hep-ph/9902384 Phenomenology +hep-ph/9902385 Phenomenology +hep-ph/9902388 Phenomenology +hep-ph/9902389 Phenomenology +hep-ph/9902390 Phenomenology +hep-ph/9902392 Phenomenology +hep-ph/9902397 Phenomenology +hep-ph/9902399 Phenomenology +hep-ph/9902400 Phenomenology +hep-ph/9902401 Phenomenology +hep-ph/9902404 Phenomenology +hep-ph/9902405 Phenomenology +hep-ph/9902406 Phenomenology +hep-ph/9902407 Phenomenology +hep-ph/9902408 Phenomenology +hep-ph/9902415 Phenomenology +hep-ph/9902416 Phenomenology +hep-ph/9902417 Phenomenology +hep-ph/9902420 Phenomenology +hep-ph/9902423 Phenomenology +hep-ph/9902425 Phenomenology +hep-ph/9902427 Phenomenology +hep-ph/9902430 Phenomenology +hep-ph/9902431 Phenomenology +hep-ph/9902436 Phenomenology +hep-ph/9902439 Phenomenology +hep-ph/9902448 Phenomenology +hep-ph/9902453 Phenomenology +hep-ph/9902458 Phenomenology +hep-ph/9902466 Phenomenology +hep-ph/9902469 Phenomenology +hep-ph/9902470 Phenomenology +hep-ph/9902472 Phenomenology +hep-ph/9902477 Phenomenology +hep-ph/9902479 Phenomenology +hep-ph/9903201 Phenomenology +hep-ph/9903204 Phenomenology +hep-ph/9903205 Phenomenology +hep-ph/9903206 Phenomenology +hep-ph/9903214 Phenomenology +hep-ph/9903216 Phenomenology +hep-ph/9903218 Phenomenology +hep-ph/9903221 Phenomenology +hep-ph/9903222 Phenomenology +hep-ph/9903224 Phenomenology +hep-ph/9903225 Phenomenology +hep-ph/9903226 Phenomenology +hep-ph/9903227 Phenomenology +hep-ph/9903228 Phenomenology +hep-ph/9903231 Phenomenology +hep-ph/9903233 Phenomenology +hep-ph/9903235 Phenomenology +hep-ph/9903239 Phenomenology +hep-ph/9903242 Phenomenology +hep-ph/9903249 Phenomenology +hep-ph/9903250 Phenomenology +hep-ph/9903251 Phenomenology +hep-ph/9903253 Phenomenology +hep-ph/9903255 Phenomenology +hep-ph/9903263 Phenomenology +hep-ph/9903264 Phenomenology +hep-ph/9903268 Phenomenology +hep-ph/9903269 Phenomenology +hep-ph/9903271 Phenomenology +hep-ph/9903272 Phenomenology +hep-ph/9903273 Phenomenology +hep-ph/9903274 Phenomenology +hep-ph/9903275 Phenomenology +hep-ph/9903276 Phenomenology +hep-ph/9903278 Phenomenology +hep-ph/9903279 Phenomenology +hep-ph/9903283 Phenomenology +hep-ph/9903284 Phenomenology +hep-ph/9903285 Phenomenology +hep-ph/9903287 Phenomenology +hep-ph/9903296 Phenomenology +hep-ph/9903298 Phenomenology +hep-ph/9903300 Phenomenology +hep-ph/9903303 Phenomenology +hep-ph/9903307 Phenomenology +hep-ph/9903308 Phenomenology +hep-ph/9903312 Phenomenology +hep-ph/9903316 Phenomenology +hep-ph/9903324 Phenomenology +hep-ph/9903339 Phenomenology +hep-ph/9903342 Phenomenology +hep-ph/9903352 Phenomenology +hep-ph/9903357 Phenomenology +hep-ph/9903359 Phenomenology +hep-ph/9903365 Phenomenology +hep-ph/9903370 Phenomenology +hep-ph/9903373 Phenomenology +hep-ph/9903374 Phenomenology +hep-ph/9903375 Phenomenology +hep-ph/9903377 Phenomenology +hep-ph/9903382 Phenomenology +hep-ph/9903383 Phenomenology +hep-ph/9903385 Phenomenology +hep-ph/9903389 Phenomenology +hep-ph/9903392 Phenomenology +hep-ph/9903395 Phenomenology +hep-ph/9903397 Phenomenology +hep-ph/9903399 Phenomenology +hep-ph/9903401 Phenomenology +hep-ph/9903404 Phenomenology +hep-ph/9903405 Phenomenology +hep-ph/9903409 Phenomenology +hep-ph/9903410 Phenomenology +hep-ph/9903415 Phenomenology +hep-ph/9903418 Phenomenology +hep-ph/9903421 Phenomenology +hep-ph/9903422 Phenomenology +hep-ph/9903423 Phenomenology +hep-ph/9903427 Phenomenology +hep-ph/9903432 Phenomenology +hep-ph/9903440 Phenomenology +hep-ph/9903445 Phenomenology +hep-ph/9903446 Phenomenology +hep-ph/9903447 Phenomenology +hep-ph/9903452 Phenomenology +hep-ph/9903454 Phenomenology +hep-ph/9903457 Phenomenology +hep-ph/9903459 Phenomenology +hep-ph/9903465 Phenomenology +hep-ph/9903466 Phenomenology +hep-ph/9903467 Phenomenology +hep-ph/9903470 Phenomenology +hep-ph/9903475 Phenomenology +hep-ph/9903479 Phenomenology +hep-ph/9903481 Phenomenology +hep-ph/9903483 Phenomenology +hep-ph/9903489 Phenomenology +hep-ph/9903490 Phenomenology +hep-ph/9903492 Phenomenology +hep-ph/9903495 Phenomenology +hep-ph/9903496 Phenomenology +hep-ph/9903501 Phenomenology +hep-ph/9903503 Phenomenology +hep-ph/9903506 Phenomenology +hep-ph/9903507 Phenomenology +hep-ph/9903508 Phenomenology +hep-ph/9903509 Phenomenology +hep-ph/9903512 Phenomenology +hep-ph/9903513 Phenomenology +hep-ph/9903522 Phenomenology +hep-ph/9903523 Phenomenology +hep-ph/9903528 Phenomenology +hep-ph/9903530 Phenomenology +hep-ph/9903531 Phenomenology +hep-ph/9903532 Phenomenology +hep-ph/9903533 Phenomenology +hep-ph/9903537 Phenomenology +hep-ph/9903541 Phenomenology +hep-ph/9903544 Phenomenology +hep-ph/9903546 Phenomenology +hep-ph/9903549 Phenomenology +hep-ph/9903551 Phenomenology +hep-ph/9903553 Phenomenology +hep-ph/9903554 Phenomenology +hep-ph/9904201 Phenomenology +hep-ph/9904211 Phenomenology +hep-ph/9904213 Phenomenology +hep-ph/9904218 Phenomenology +hep-ph/9904220 Phenomenology +hep-ph/9904222 Phenomenology +hep-ph/9904224 Phenomenology +hep-ph/9904226 Phenomenology +hep-ph/9904230 Phenomenology +hep-ph/9904231 Phenomenology +hep-ph/9904232 Phenomenology +hep-ph/9904236 Phenomenology +hep-ph/9904238 Phenomenology +hep-ph/9904240 Phenomenology +hep-ph/9904242 Phenomenology +hep-ph/9904245 Phenomenology +hep-ph/9904253 Phenomenology +hep-ph/9904256 Phenomenology +hep-ph/9904261 Phenomenology +hep-ph/9904262 Phenomenology +hep-ph/9904265 Phenomenology +hep-ph/9904268 Phenomenology +hep-ph/9904270 Phenomenology +hep-ph/9904274 Phenomenology +hep-ph/9904276 Phenomenology +hep-ph/9904278 Phenomenology +hep-ph/9904283 Phenomenology +hep-ph/9904284 Phenomenology +hep-ph/9904285 Phenomenology +hep-ph/9904289 Phenomenology +hep-ph/9904291 Phenomenology +hep-ph/9904293 Phenomenology +hep-ph/9904294 Phenomenology +hep-ph/9904295 Phenomenology +hep-ph/9904296 Phenomenology +hep-ph/9904298 Phenomenology +hep-ph/9904302 Phenomenology +hep-ph/9904305 Phenomenology +hep-ph/9904306 Phenomenology +hep-ph/9904309 Phenomenology +hep-ph/9904310 Phenomenology +hep-ph/9904315 Phenomenology +hep-ph/9904318 Phenomenology +hep-ph/9904320 Phenomenology +hep-ph/9904323 Phenomenology +hep-ph/9904331 Phenomenology +hep-ph/9904332 Phenomenology +hep-ph/9904333 Phenomenology +hep-ph/9904335 Phenomenology +hep-ph/9904339 Phenomenology +hep-ph/9904343 Phenomenology +hep-ph/9904344 Phenomenology +hep-ph/9904348 Phenomenology +hep-ph/9904353 Phenomenology +hep-ph/9904355 Phenomenology +hep-ph/9904356 Phenomenology +hep-ph/9904357 Phenomenology +hep-ph/9904358 Phenomenology +hep-ph/9904360 Phenomenology +hep-ph/9904362 Phenomenology +hep-ph/9904365 Phenomenology +hep-ph/9904366 Phenomenology +hep-ph/9904367 Phenomenology +hep-ph/9904378 Phenomenology +hep-ph/9904379 Phenomenology +hep-ph/9904382 Phenomenology +hep-ph/9904383 Phenomenology +hep-ph/9904384 Phenomenology +hep-ph/9904385 Phenomenology +hep-ph/9904387 Phenomenology +hep-ph/9904389 Phenomenology +hep-ph/9904391 Phenomenology +hep-ph/9904392 Phenomenology +hep-ph/9904394 Phenomenology +hep-ph/9904395 Phenomenology +hep-ph/9904405 Phenomenology +hep-ph/9904407 Phenomenology +hep-ph/9904409 Phenomenology +hep-ph/9904410 Phenomenology +hep-ph/9904412 Phenomenology +hep-ph/9904419 Phenomenology +hep-ph/9904421 Phenomenology +hep-ph/9904425 Phenomenology +hep-ph/9904426 Phenomenology +hep-ph/9904429 Phenomenology +hep-ph/9904430 Phenomenology +hep-ph/9904431 Phenomenology +hep-ph/9904432 Phenomenology +hep-ph/9904433 Phenomenology +hep-ph/9904434 Phenomenology +hep-ph/9904435 Phenomenology +hep-ph/9904436 Phenomenology +hep-ph/9904438 Phenomenology +hep-ph/9904442 Phenomenology +hep-ph/9904451 Phenomenology +hep-ph/9904453 Phenomenology +hep-ph/9904454 Phenomenology +hep-ph/9904458 Phenomenology +hep-ph/9904459 Phenomenology +hep-ph/9904461 Phenomenology +hep-ph/9904463 Phenomenology +hep-ph/9904466 Phenomenology +hep-ph/9904468 Phenomenology +hep-ph/9904477 Phenomenology +hep-ph/9904478 Phenomenology +hep-ph/9904484 Phenomenology +hep-ph/9904485 Phenomenology +hep-ph/9904487 Phenomenology +hep-ph/9904490 Phenomenology +hep-ph/9904496 Phenomenology +hep-ph/9904498 Phenomenology +hep-ph/9904499 Phenomenology +hep-ph/9904505 Phenomenology +hep-ph/9905204 Phenomenology +hep-ph/9905205 Phenomenology +hep-ph/9905208 Phenomenology +hep-ph/9905211 Phenomenology +hep-ph/9905212 Phenomenology +hep-ph/9905214 Phenomenology +hep-ph/9905217 Phenomenology +hep-ph/9905222 Phenomenology +hep-ph/9905225 Phenomenology +hep-ph/9905227 Phenomenology +hep-ph/9905231 Phenomenology +hep-ph/9905233 Phenomenology +hep-ph/9905235 Phenomenology +hep-ph/9905237 Phenomenology +hep-ph/9905238 Phenomenology +hep-ph/9905242 Phenomenology +hep-ph/9905243 Phenomenology +hep-ph/9905244 Phenomenology +hep-ph/9905245 Phenomenology +hep-ph/9905247 Phenomenology +hep-ph/9905249 Phenomenology +hep-ph/9905256 Phenomenology +hep-ph/9905257 Phenomenology +hep-ph/9905263 Phenomenology +hep-ph/9905265 Phenomenology +hep-ph/9905271 Phenomenology +hep-ph/9905272 Phenomenology +hep-ph/9905276 Phenomenology +hep-ph/9905283 Phenomenology +hep-ph/9905284 Phenomenology +hep-ph/9905286 Phenomenology +hep-ph/9905287 Phenomenology +hep-ph/9905288 Phenomenology +hep-ph/9905290 Phenomenology +hep-ph/9905292 Phenomenology +hep-ph/9905295 Phenomenology +hep-ph/9905296 Phenomenology +hep-ph/9905297 Phenomenology +hep-ph/9905299 Phenomenology +hep-ph/9905300 Phenomenology +hep-ph/9905301 Phenomenology +hep-ph/9905302 Phenomenology +hep-ph/9905305 Phenomenology +hep-ph/9905308 Phenomenology +hep-ph/9905309 Phenomenology +hep-ph/9905310 Phenomenology +hep-ph/9905311 Phenomenology +hep-ph/9905314 Phenomenology +hep-ph/9905318 Phenomenology +hep-ph/9905323 Phenomenology +hep-ph/9905325 Phenomenology +hep-ph/9905326 Phenomenology +hep-ph/9905329 Phenomenology +hep-ph/9905331 Phenomenology +hep-ph/9905332 Phenomenology +hep-ph/9905333 Phenomenology +hep-ph/9905334 Phenomenology +hep-ph/9905335 Phenomenology +hep-ph/9905336 Phenomenology +hep-ph/9905342 Phenomenology +hep-ph/9905346 Phenomenology +hep-ph/9905347 Phenomenology +hep-ph/9905356 Phenomenology +hep-ph/9905358 Phenomenology +hep-ph/9905362 Phenomenology +hep-ph/9905364 Phenomenology +hep-ph/9905368 Phenomenology +hep-ph/9905370 Phenomenology +hep-ph/9905373 Phenomenology +hep-ph/9905377 Phenomenology +hep-ph/9905381 Phenomenology +hep-ph/9905382 Phenomenology +hep-ph/9905383 Phenomenology +hep-ph/9905384 Phenomenology +hep-ph/9905385 Phenomenology +hep-ph/9905387 Phenomenology +hep-ph/9905388 Phenomenology +hep-ph/9905390 Phenomenology +hep-ph/9905393 Phenomenology +hep-ph/9905395 Phenomenology +hep-ph/9905396 Phenomenology +hep-ph/9905398 Phenomenology +hep-ph/9905401 Phenomenology +hep-ph/9905404 Phenomenology +hep-ph/9905406 Phenomenology +hep-ph/9905408 Phenomenology +hep-ph/9905412 Phenomenology +hep-ph/9905415 Phenomenology +hep-ph/9905416 Phenomenology +hep-ph/9905417 Phenomenology +hep-ph/9905420 Phenomenology +hep-ph/9905421 Phenomenology +hep-ph/9905425 Phenomenology +hep-ph/9905429 Phenomenology +hep-ph/9905432 Phenomenology +hep-ph/9905434 Phenomenology +hep-ph/9905438 Phenomenology +hep-ph/9905439 Phenomenology +hep-ph/9905440 Phenomenology +hep-ph/9905442 Phenomenology +hep-ph/9905446 Phenomenology +hep-ph/9905453 Phenomenology +hep-ph/9905455 Phenomenology +hep-ph/9905460 Phenomenology +hep-ph/9905461 Phenomenology +hep-ph/9905467 Phenomenology +hep-ph/9905473 Phenomenology +hep-ph/9905477 Phenomenology +hep-ph/9905479 Phenomenology +hep-ph/9905480 Phenomenology +hep-ph/9905482 Phenomenology +hep-ph/9905487 Phenomenology +hep-ph/9905488 Phenomenology +hep-ph/9905489 Phenomenology +hep-ph/9905490 Phenomenology +hep-ph/9905491 Phenomenology +hep-ph/9905494 Phenomenology +hep-ph/9905496 Phenomenology +hep-ph/9905499 Phenomenology +hep-ph/9905500 Phenomenology +hep-ph/9905503 Phenomenology +hep-ph/9905504 Phenomenology +hep-ph/9905505 Phenomenology +hep-ph/9905507 Phenomenology +hep-ph/9905512 Phenomenology +hep-ph/9905513 Phenomenology +hep-ph/9905516 Phenomenology +hep-ph/9905518 Phenomenology +hep-ph/9905522 Phenomenology +hep-ph/9905523 Phenomenology +hep-ph/9905524 Phenomenology +hep-ph/9905528 Phenomenology +hep-ph/9905529 Phenomenology +hep-ph/9905531 Phenomenology +hep-ph/9905534 Phenomenology +hep-ph/9905535 Phenomenology +hep-ph/9905536 Phenomenology +hep-ph/9905539 Phenomenology +hep-ph/9905543 Phenomenology +hep-ph/9905544 Phenomenology +hep-ph/9905545 Phenomenology +hep-ph/9905546 Phenomenology +hep-ph/9905549 Phenomenology +hep-ph/9905552 Phenomenology +hep-ph/9905553 Phenomenology +hep-ph/9905554 Phenomenology +hep-ph/9905556 Phenomenology +hep-ph/9905559 Phenomenology +hep-ph/9905561 Phenomenology +hep-ph/9905565 Phenomenology +hep-ph/9905566 Phenomenology +hep-ph/9905567 Phenomenology +hep-ph/9905571 Phenomenology +hep-ph/9905572 Phenomenology +hep-ph/9905574 Phenomenology +hep-ph/9905575 Phenomenology +hep-ph/9905577 Phenomenology +hep-ph/9906201 Phenomenology +hep-ph/9906206 Phenomenology +hep-ph/9906207 Phenomenology +hep-ph/9906210 Phenomenology +hep-ph/9906213 Phenomenology +hep-ph/9906216 Phenomenology +hep-ph/9906221 Phenomenology +hep-ph/9906223 Phenomenology +hep-ph/9906225 Phenomenology +hep-ph/9906227 Phenomenology +hep-ph/9906231 Phenomenology +hep-ph/9906232 Phenomenology +hep-ph/9906236 Phenomenology +hep-ph/9906238 Phenomenology +hep-ph/9906239 Phenomenology +hep-ph/9906240 Phenomenology +hep-ph/9906241 Phenomenology +hep-ph/9906246 Phenomenology +hep-ph/9906247 Phenomenology +hep-ph/9906254 Phenomenology +hep-ph/9906259 Phenomenology +hep-ph/9906261 Phenomenology +hep-ph/9906265 Phenomenology +hep-ph/9906267 Phenomenology +hep-ph/9906270 Phenomenology +hep-ph/9906271 Phenomenology +hep-ph/9906272 Phenomenology +hep-ph/9906274 Phenomenology +hep-ph/9906275 Phenomenology +hep-ph/9906277 Phenomenology +hep-ph/9906278 Phenomenology +hep-ph/9906279 Phenomenology +hep-ph/9906283 Phenomenology +hep-ph/9906284 Phenomenology +hep-ph/9906285 Phenomenology +hep-ph/9906287 Phenomenology +hep-ph/9906288 Phenomenology +hep-ph/9906290 Phenomenology +hep-ph/9906291 Phenomenology +hep-ph/9906292 Phenomenology +hep-ph/9906296 Phenomenology +hep-ph/9906299 Phenomenology +hep-ph/9906300 Phenomenology +hep-ph/9906301 Phenomenology +hep-ph/9906303 Phenomenology +hep-ph/9906308 Phenomenology +hep-ph/9906309 Phenomenology +hep-ph/9906311 Phenomenology +hep-ph/9906314 Phenomenology +hep-ph/9906318 Phenomenology +hep-ph/9906319 Phenomenology +hep-ph/9906321 Phenomenology +hep-ph/9906322 Phenomenology +hep-ph/9906323 Phenomenology +hep-ph/9906325 Phenomenology +hep-ph/9906327 Phenomenology +hep-ph/9906329 Phenomenology +hep-ph/9906334 Phenomenology +hep-ph/9906335 Phenomenology +hep-ph/9906337 Phenomenology +hep-ph/9906340 Phenomenology +hep-ph/9906341 Phenomenology +hep-ph/9906344 Phenomenology +hep-ph/9906346 Phenomenology +hep-ph/9906353 Phenomenology +hep-ph/9906357 Phenomenology +hep-ph/9906358 Phenomenology +hep-ph/9906365 Phenomenology +hep-ph/9906366 Phenomenology +hep-ph/9906368 Phenomenology +hep-ph/9906370 Phenomenology +hep-ph/9906375 Phenomenology +hep-ph/9906381 Phenomenology +hep-ph/9906383 Phenomenology +hep-ph/9906385 Phenomenology +hep-ph/9906389 Phenomenology +hep-ph/9906390 Phenomenology +hep-ph/9906392 Phenomenology +hep-ph/9906394 Phenomenology +hep-ph/9906396 Phenomenology +hep-ph/9906399 Phenomenology +hep-ph/9906400 Phenomenology +hep-ph/9906401 Phenomenology +hep-ph/9906405 Phenomenology +hep-ph/9906406 Phenomenology +hep-ph/9906409 Phenomenology +hep-ph/9906411 Phenomenology +hep-ph/9906415 Phenomenology +hep-ph/9906416 Phenomenology +hep-ph/9906417 Phenomenology +hep-ph/9906419 Phenomenology +hep-ph/9906424 Phenomenology +hep-ph/9906429 Phenomenology +hep-ph/9906432 Phenomenology +hep-ph/9906433 Phenomenology +hep-ph/9906439 Phenomenology +hep-ph/9906442 Phenomenology +hep-ph/9906444 Phenomenology +hep-ph/9906445 Phenomenology +hep-ph/9906446 Phenomenology +hep-ph/9906447 Phenomenology +hep-ph/9906452 Phenomenology +hep-ph/9906457 Phenomenology +hep-ph/9906459 Phenomenology +hep-ph/9906460 Phenomenology +hep-ph/9906462 Phenomenology +hep-ph/9906463 Phenomenology +hep-ph/9906468 Phenomenology +hep-ph/9906470 Phenomenology +hep-ph/9906471 Phenomenology +hep-ph/9906479 Phenomenology +hep-ph/9906485 Phenomenology +hep-ph/9906486 Phenomenology +hep-ph/9906489 Phenomenology +hep-ph/9906490 Phenomenology +hep-ph/9906491 Phenomenology +hep-ph/9906496 Phenomenology +hep-ph/9906499 Phenomenology +hep-ph/9906500 Phenomenology +hep-ph/9906503 Phenomenology +hep-ph/9906508 Phenomenology +hep-ph/9906510 Phenomenology +hep-ph/9906511 Phenomenology +hep-ph/9906514 Phenomenology +hep-ph/9906515 Phenomenology +hep-ph/9906518 Phenomenology +hep-ph/9906523 Phenomenology +hep-ph/9906524 Phenomenology +hep-ph/9906525 Phenomenology +hep-ph/9906528 Phenomenology +hep-ph/9906529 Phenomenology +hep-ph/9906530 Phenomenology +hep-ph/9906533 Phenomenology +hep-ph/9906536 Phenomenology +hep-ph/9906537 Phenomenology +hep-ph/9906538 Phenomenology +hep-ph/9906539 Phenomenology +hep-ph/9906547 Phenomenology +hep-ph/9906548 Phenomenology +hep-ph/9906549 Phenomenology +hep-ph/9906551 Phenomenology +hep-ph/9906552 Phenomenology +hep-ph/9906556 Phenomenology +hep-ph/9907224 Phenomenology +hep-ph/9907225 Phenomenology +hep-ph/9907226 Phenomenology +hep-ph/9907230 Phenomenology +hep-ph/9907232 Phenomenology +hep-ph/9907233 Phenomenology +hep-ph/9907235 Phenomenology +hep-ph/9907244 Phenomenology +hep-ph/9907251 Phenomenology +hep-ph/9907253 Phenomenology +hep-ph/9907254 Phenomenology +hep-ph/9907255 Phenomenology +hep-ph/9907257 Phenomenology +hep-ph/9907263 Phenomenology +hep-ph/9907266 Phenomenology +hep-ph/9907267 Phenomenology +hep-ph/9907268 Phenomenology +hep-ph/9907272 Phenomenology +hep-ph/9907273 Phenomenology +hep-ph/9907274 Phenomenology +hep-ph/9907275 Phenomenology +hep-ph/9907276 Phenomenology +hep-ph/9907279 Phenomenology +hep-ph/9907285 Phenomenology +hep-ph/9907286 Phenomenology +hep-ph/9907287 Phenomenology +hep-ph/9907290 Phenomenology +hep-ph/9907294 Phenomenology +hep-ph/9907297 Phenomenology +hep-ph/9907301 Phenomenology +hep-ph/9907302 Phenomenology +hep-ph/9907304 Phenomenology +hep-ph/9907306 Phenomenology +hep-ph/9907307 Phenomenology +hep-ph/9907308 Phenomenology +hep-ph/9907310 Phenomenology +hep-ph/9907311 Phenomenology +hep-ph/9907314 Phenomenology +hep-ph/9907318 Phenomenology +hep-ph/9907319 Phenomenology +hep-ph/9907320 Phenomenology +hep-ph/9907323 Phenomenology +hep-ph/9907325 Phenomenology +hep-ph/9907326 Phenomenology +hep-ph/9907331 Phenomenology +hep-ph/9907333 Phenomenology +hep-ph/9907337 Phenomenology +hep-ph/9907340 Phenomenology +hep-ph/9907345 Phenomenology +hep-ph/9907348 Phenomenology +hep-ph/9907353 Phenomenology +hep-ph/9907354 Phenomenology +hep-ph/9907355 Phenomenology +hep-ph/9907356 Phenomenology +hep-ph/9907358 Phenomenology +hep-ph/9907359 Phenomenology +hep-ph/9907360 Phenomenology +hep-ph/9907362 Phenomenology +hep-ph/9907364 Phenomenology +hep-ph/9907365 Phenomenology +hep-ph/9907368 Phenomenology +hep-ph/9907371 Phenomenology +hep-ph/9907372 Phenomenology +hep-ph/9907373 Phenomenology +hep-ph/9907377 Phenomenology +hep-ph/9907381 Phenomenology +hep-ph/9907384 Phenomenology +hep-ph/9907387 Phenomenology +hep-ph/9907388 Phenomenology +hep-ph/9907390 Phenomenology +hep-ph/9907391 Phenomenology +hep-ph/9907394 Phenomenology +hep-ph/9907397 Phenomenology +hep-ph/9907402 Phenomenology +hep-ph/9907404 Phenomenology +hep-ph/9907410 Phenomenology +hep-ph/9907412 Phenomenology +hep-ph/9907414 Phenomenology +hep-ph/9907415 Phenomenology +hep-ph/9907423 Phenomenology +hep-ph/9907427 Phenomenology +hep-ph/9907428 Phenomenology +hep-ph/9907430 Phenomenology +hep-ph/9907432 Phenomenology +hep-ph/9907437 Phenomenology +hep-ph/9907439 Phenomenology +hep-ph/9907440 Phenomenology +hep-ph/9907443 Phenomenology +hep-ph/9907447 Phenomenology +hep-ph/9907449 Phenomenology +hep-ph/9907454 Phenomenology +hep-ph/9907455 Phenomenology +hep-ph/9907457 Phenomenology +hep-ph/9907459 Phenomenology +hep-ph/9907460 Phenomenology +hep-ph/9907465 Phenomenology +hep-ph/9907466 Phenomenology +hep-ph/9907467 Phenomenology +hep-ph/9907468 Phenomenology +hep-ph/9907469 Phenomenology +hep-ph/9907475 Phenomenology +hep-ph/9907479 Phenomenology +hep-ph/9907481 Phenomenology +hep-ph/9907486 Phenomenology +hep-ph/9907488 Phenomenology +hep-ph/9907489 Phenomenology +hep-ph/9907492 Phenomenology +hep-ph/9907493 Phenomenology +hep-ph/9907498 Phenomenology +hep-ph/9907500 Phenomenology +hep-ph/9907504 Phenomenology +hep-ph/9907508 Phenomenology +hep-ph/9907510 Phenomenology +hep-ph/9907515 Phenomenology +hep-ph/9907516 Phenomenology +hep-ph/9907522 Phenomenology +hep-ph/9907529 Phenomenology +hep-ph/9907532 Phenomenology +hep-ph/9907538 Phenomenology +hep-ph/9907539 Phenomenology +hep-ph/9907540 Phenomenology +hep-ph/9907542 Phenomenology +hep-ph/9907544 Phenomenology +hep-ph/9907546 Phenomenology +hep-ph/9907547 Phenomenology +hep-ph/9907549 Phenomenology +hep-ph/9907550 Phenomenology +hep-ph/9907552 Phenomenology +hep-ph/9907555 Phenomenology +hep-ph/9907556 Phenomenology +hep-ph/9907558 Phenomenology +hep-ph/9907560 Phenomenology +hep-ph/9907561 Phenomenology +hep-ph/9907568 Phenomenology +hep-ph/9907570 Phenomenology +hep-ph/9907571 Phenomenology +hep-ph/9907572 Phenomenology +hep-ph/9908202 Phenomenology +hep-ph/9908204 Phenomenology +hep-ph/9908206 Phenomenology +hep-ph/9908209 Phenomenology +hep-ph/9908211 Phenomenology +hep-ph/9908212 Phenomenology +hep-ph/9908213 Phenomenology +hep-ph/9908214 Phenomenology +hep-ph/9908216 Phenomenology +hep-ph/9908217 Phenomenology +hep-ph/9908219 Phenomenology +hep-ph/9908220 Phenomenology +hep-ph/9908223 Phenomenology +hep-ph/9908224 Phenomenology +hep-ph/9908225 Phenomenology +hep-ph/9908226 Phenomenology +hep-ph/9908227 Phenomenology +hep-ph/9908229 Phenomenology +hep-ph/9908230 Phenomenology +hep-ph/9908231 Phenomenology +hep-ph/9908236 Phenomenology +hep-ph/9908237 Phenomenology +hep-ph/9908243 Phenomenology +hep-ph/9908244 Phenomenology +hep-ph/9908246 Phenomenology +hep-ph/9908247 Phenomenology +hep-ph/9908248 Phenomenology +hep-ph/9908257 Phenomenology +hep-ph/9908261 Phenomenology +hep-ph/9908262 Phenomenology +hep-ph/9908264 Phenomenology +hep-ph/9908265 Phenomenology +hep-ph/9908266 Phenomenology +hep-ph/9908273 Phenomenology +hep-ph/9908275 Phenomenology +hep-ph/9908276 Phenomenology +hep-ph/9908277 Phenomenology +hep-ph/9908281 Phenomenology +hep-ph/9908282 Phenomenology +hep-ph/9908291 Phenomenology +hep-ph/9908293 Phenomenology +hep-ph/9908294 Phenomenology +hep-ph/9908298 Phenomenology +hep-ph/9908300 Phenomenology +hep-ph/9908302 Phenomenology +hep-ph/9908303 Phenomenology +hep-ph/9908304 Phenomenology +hep-ph/9908305 Phenomenology +hep-ph/9908313 Phenomenology +hep-ph/9908314 Phenomenology +hep-ph/9908315 Phenomenology +hep-ph/9908316 Phenomenology +hep-ph/9908320 Phenomenology +hep-ph/9908321 Phenomenology +hep-ph/9908322 Phenomenology +hep-ph/9908323 Phenomenology +hep-ph/9908327 Phenomenology +hep-ph/9908329 Phenomenology +hep-ph/9908333 Phenomenology +hep-ph/9908337 Phenomenology +hep-ph/9908347 Phenomenology +hep-ph/9908348 Phenomenology +hep-ph/9908350 Phenomenology +hep-ph/9908353 Phenomenology +hep-ph/9908355 Phenomenology +hep-ph/9908356 Phenomenology +hep-ph/9908358 Phenomenology +hep-ph/9908372 Phenomenology +hep-ph/9908374 Phenomenology +hep-ph/9908375 Phenomenology +hep-ph/9908377 Phenomenology +hep-ph/9908381 Phenomenology +hep-ph/9908382 Phenomenology +hep-ph/9908384 Phenomenology +hep-ph/9908385 Phenomenology +hep-ph/9908388 Phenomenology +hep-ph/9908389 Phenomenology +hep-ph/9908391 Phenomenology +hep-ph/9908392 Phenomenology +hep-ph/9908394 Phenomenology +hep-ph/9908396 Phenomenology +hep-ph/9908398 Phenomenology +hep-ph/9908400 Phenomenology +hep-ph/9908401 Phenomenology +hep-ph/9908403 Phenomenology +hep-ph/9908404 Phenomenology +hep-ph/9908409 Phenomenology +hep-ph/9908412 Phenomenology +hep-ph/9908415 Phenomenology +hep-ph/9908416 Phenomenology +hep-ph/9908417 Phenomenology +hep-ph/9908422 Phenomenology +hep-ph/9908423 Phenomenology +hep-ph/9908424 Phenomenology +hep-ph/9908426 Phenomenology +hep-ph/9908427 Phenomenology +hep-ph/9908429 Phenomenology +hep-ph/9908433 Phenomenology +hep-ph/9908436 Phenomenology +hep-ph/9908439 Phenomenology +hep-ph/9908443 Phenomenology +hep-ph/9908444 Phenomenology +hep-ph/9908446 Phenomenology +hep-ph/9908448 Phenomenology +hep-ph/9908452 Phenomenology +hep-ph/9908454 Phenomenology +hep-ph/9908455 Phenomenology +hep-ph/9908458 Phenomenology +hep-ph/9908460 Phenomenology +hep-ph/9908461 Phenomenology +hep-ph/9908463 Phenomenology +hep-ph/9908464 Phenomenology +hep-ph/9908467 Phenomenology +hep-ph/9908472 Phenomenology +hep-ph/9908475 Phenomenology +hep-ph/9908476 Phenomenology +hep-ph/9908480 Phenomenology +hep-ph/9908481 Phenomenology +hep-ph/9908484 Phenomenology +hep-ph/9908485 Phenomenology +hep-ph/9908486 Phenomenology +hep-ph/9908494 Phenomenology +hep-ph/9908495 Phenomenology +hep-ph/9908496 Phenomenology +hep-ph/9908498 Phenomenology +hep-ph/9908505 Phenomenology +hep-ph/9908508 Phenomenology +hep-ph/9908512 Phenomenology +hep-ph/9908515 Phenomenology +hep-ph/9908516 Phenomenology +hep-ph/9908526 Phenomenology +hep-ph/9908531 Phenomenology +hep-ph/9909203 Phenomenology +hep-ph/9909204 Phenomenology +hep-ph/9909207 Phenomenology +hep-ph/9909209 Phenomenology +hep-ph/9909211 Phenomenology +hep-ph/9909220 Phenomenology +hep-ph/9909222 Phenomenology +hep-ph/9909224 Phenomenology +hep-ph/9909226 Phenomenology +hep-ph/9909227 Phenomenology +hep-ph/9909234 Phenomenology +hep-ph/9909245 Phenomenology +hep-ph/9909246 Phenomenology +hep-ph/9909248 Phenomenology +hep-ph/9909249 Phenomenology +hep-ph/9909250 Phenomenology +hep-ph/9909254 Phenomenology +hep-ph/9909255 Phenomenology +hep-ph/9909256 Phenomenology +hep-ph/9909257 Phenomenology +hep-ph/9909258 Phenomenology +hep-ph/9909259 Phenomenology +hep-ph/9909262 Phenomenology +hep-ph/9909266 Phenomenology +hep-ph/9909267 Phenomenology +hep-ph/9909269 Phenomenology +hep-ph/9909272 Phenomenology +hep-ph/9909275 Phenomenology +hep-ph/9909277 Phenomenology +hep-ph/9909278 Phenomenology +hep-ph/9909282 Phenomenology +hep-ph/9909283 Phenomenology +hep-ph/9909296 Phenomenology +hep-ph/9909297 Phenomenology +hep-ph/9909300 Phenomenology +hep-ph/9909304 Phenomenology +hep-ph/9909305 Phenomenology +hep-ph/9909306 Phenomenology +hep-ph/9909307 Phenomenology +hep-ph/9909308 Phenomenology +hep-ph/9909309 Phenomenology +hep-ph/9909313 Phenomenology +hep-ph/9909315 Phenomenology +hep-ph/9909318 Phenomenology +hep-ph/9909321 Phenomenology +hep-ph/9909323 Phenomenology +hep-ph/9909324 Phenomenology +hep-ph/9909325 Phenomenology +hep-ph/9909327 Phenomenology +hep-ph/9909329 Phenomenology +hep-ph/9909330 Phenomenology +hep-ph/9909332 Phenomenology +hep-ph/9909335 Phenomenology +hep-ph/9909336 Phenomenology +hep-ph/9909337 Phenomenology +hep-ph/9909339 Phenomenology +hep-ph/9909342 Phenomenology +hep-ph/9909344 Phenomenology +hep-ph/9909347 Phenomenology +hep-ph/9909348 Phenomenology +hep-ph/9909349 Phenomenology +hep-ph/9909350 Phenomenology +hep-ph/9909353 Phenomenology +hep-ph/9909354 Phenomenology +hep-ph/9909355 Phenomenology +hep-ph/9909357 Phenomenology +hep-ph/9909358 Phenomenology +hep-ph/9909360 Phenomenology +hep-ph/9909361 Phenomenology +hep-ph/9909362 Phenomenology +hep-ph/9909366 Phenomenology +hep-ph/9909368 Phenomenology +hep-ph/9909373 Phenomenology +hep-ph/9909376 Phenomenology +hep-ph/9909377 Phenomenology +hep-ph/9909382 Phenomenology +hep-ph/9909384 Phenomenology +hep-ph/9909387 Phenomenology +hep-ph/9909388 Phenomenology +hep-ph/9909390 Phenomenology +hep-ph/9909391 Phenomenology +hep-ph/9909392 Phenomenology +hep-ph/9909396 Phenomenology +hep-ph/9909405 Phenomenology +hep-ph/9909408 Phenomenology +hep-ph/9909415 Phenomenology +hep-ph/9909416 Phenomenology +hep-ph/9909417 Phenomenology +hep-ph/9909418 Phenomenology +hep-ph/9909419 Phenomenology +hep-ph/9909425 Phenomenology +hep-ph/9909429 Phenomenology +hep-ph/9909431 Phenomenology +hep-ph/9909432 Phenomenology +hep-ph/9909436 Phenomenology +hep-ph/9909440 Phenomenology +hep-ph/9909443 Phenomenology +hep-ph/9909444 Phenomenology +hep-ph/9909448 Phenomenology +hep-ph/9909452 Phenomenology +hep-ph/9909461 Phenomenology +hep-ph/9909466 Phenomenology +hep-ph/9909467 Phenomenology +hep-ph/9909470 Phenomenology +hep-ph/9909473 Phenomenology +hep-ph/9909474 Phenomenology +hep-ph/9909478 Phenomenology +hep-ph/9909480 Phenomenology +hep-ph/9909484 Phenomenology +hep-ph/9909486 Phenomenology +hep-ph/9909494 Phenomenology +hep-ph/9909501 Phenomenology +hep-ph/9909502 Phenomenology +hep-ph/9909505 Phenomenology +hep-ph/9909506 Phenomenology +hep-ph/9909508 Phenomenology +hep-ph/9909511 Phenomenology +hep-ph/9909514 Phenomenology +hep-ph/9909516 Phenomenology +hep-ph/9909517 Phenomenology +hep-ph/9909518 Phenomenology +hep-ph/9909519 Phenomenology +hep-ph/9909520 Phenomenology +hep-ph/9909524 Phenomenology +hep-ph/9909532 Phenomenology +hep-ph/9909537 Phenomenology +hep-ph/9909540 Phenomenology +hep-ph/9909543 Phenomenology +hep-ph/9909544 Phenomenology +hep-ph/9909546 Phenomenology +hep-ph/9909548 Phenomenology +hep-ph/9909551 Phenomenology +hep-ph/9909556 Phenomenology +hep-ph/9909557 Phenomenology +hep-ph/9909558 Phenomenology +hep-ph/9909559 Phenomenology +hep-ph/9909565 Phenomenology +hep-ph/9909568 Phenomenology +hep-ph/9909570 Phenomenology +hep-ph/9909574 Phenomenology +hep-ph/9910201 Phenomenology +hep-ph/9910209 Phenomenology +hep-ph/9910213 Phenomenology +hep-ph/9910214 Phenomenology +hep-ph/9910215 Phenomenology +hep-ph/9910218 Phenomenology +hep-ph/9910220 Phenomenology +hep-ph/9910223 Phenomenology +hep-ph/9910225 Phenomenology +hep-ph/9910226 Phenomenology +hep-ph/9910230 Phenomenology +hep-ph/9910233 Phenomenology +hep-ph/9910238 Phenomenology +hep-ph/9910239 Phenomenology +hep-ph/9910246 Phenomenology +hep-ph/9910248 Phenomenology +hep-ph/9910249 Phenomenology +hep-ph/9910253 Phenomenology +hep-ph/9910257 Phenomenology +hep-ph/9910258 Phenomenology +hep-ph/9910259 Phenomenology +hep-ph/9910262 Phenomenology +hep-ph/9910265 Phenomenology +hep-ph/9910273 Phenomenology +hep-ph/9910276 Phenomenology +hep-ph/9910278 Phenomenology +hep-ph/9910281 Phenomenology +hep-ph/9910282 Phenomenology +hep-ph/9910287 Phenomenology +hep-ph/9910291 Phenomenology +hep-ph/9910292 Phenomenology +hep-ph/9910296 Phenomenology +hep-ph/9910297 Phenomenology +hep-ph/9910298 Phenomenology +hep-ph/9910299 Phenomenology +hep-ph/9910302 Phenomenology +hep-ph/9910303 Phenomenology +hep-ph/9910304 Phenomenology +hep-ph/9910305 Phenomenology +hep-ph/9910306 Phenomenology +hep-ph/9910307 Phenomenology +hep-ph/9910310 Phenomenology +hep-ph/9910313 Phenomenology +hep-ph/9910317 Phenomenology +hep-ph/9910326 Phenomenology +hep-ph/9910334 Phenomenology +hep-ph/9910338 Phenomenology +hep-ph/9910341 Phenomenology +hep-ph/9910344 Phenomenology +hep-ph/9910348 Phenomenology +hep-ph/9910350 Phenomenology +hep-ph/9910356 Phenomenology +hep-ph/9910359 Phenomenology +hep-ph/9910361 Phenomenology +hep-ph/9910385 Phenomenology +hep-ph/9910388 Phenomenology +hep-ph/9910393 Phenomenology +hep-ph/9910398 Phenomenology +hep-ph/9910401 Phenomenology +hep-ph/9910402 Phenomenology +hep-ph/9910405 Phenomenology +hep-ph/9910407 Phenomenology +hep-ph/9910408 Phenomenology +hep-ph/9910409 Phenomenology +hep-ph/9910412 Phenomenology +hep-ph/9910413 Phenomenology +hep-ph/9910415 Phenomenology +hep-ph/9910419 Phenomenology +hep-ph/9910422 Phenomenology +hep-ph/9910423 Phenomenology +hep-ph/9910424 Phenomenology +hep-ph/9910425 Phenomenology +hep-ph/9910432 Phenomenology +hep-ph/9910437 Phenomenology +hep-ph/9910441 Phenomenology +hep-ph/9910453 Phenomenology +hep-ph/9910454 Phenomenology +hep-ph/9910456 Phenomenology +hep-ph/9910458 Phenomenology +hep-ph/9910460 Phenomenology +hep-ph/9910462 Phenomenology +hep-ph/9910466 Phenomenology +hep-ph/9910469 Phenomenology +hep-ph/9910470 Phenomenology +hep-ph/9910473 Phenomenology +hep-ph/9910475 Phenomenology +hep-ph/9910476 Phenomenology +hep-ph/9910477 Phenomenology +hep-ph/9910479 Phenomenology +hep-ph/9910482 Phenomenology +hep-ph/9910485 Phenomenology +hep-ph/9910488 Phenomenology +hep-ph/9910493 Phenomenology +hep-ph/9910494 Phenomenology +hep-ph/9910497 Phenomenology +hep-ph/9910498 Phenomenology +hep-ph/9910499 Phenomenology +hep-ph/9910502 Phenomenology +hep-ph/9910508 Phenomenology +hep-ph/9910509 Phenomenology +hep-ph/9910511 Phenomenology +hep-ph/9910525 Phenomenology +hep-ph/9910526 Phenomenology +hep-ph/9910531 Phenomenology +hep-ph/9910532 Phenomenology +hep-ph/9910534 Phenomenology +hep-ph/9910535 Phenomenology +hep-ph/9910537 Phenomenology +hep-ph/9910538 Phenomenology +hep-ph/9910541 Phenomenology +hep-ph/9910542 Phenomenology +hep-ph/9910543 Phenomenology +hep-ph/9910545 Phenomenology +hep-ph/9910546 Phenomenology +hep-ph/9910547 Phenomenology +hep-ph/9910551 Phenomenology +hep-ph/9910556 Phenomenology +hep-ph/9910559 Phenomenology +hep-ph/9910560 Phenomenology +hep-ph/9910562 Phenomenology +hep-ph/9911203 Phenomenology +hep-ph/9911204 Phenomenology +hep-ph/9911209 Phenomenology +hep-ph/9911212 Phenomenology +hep-ph/9911214 Phenomenology +hep-ph/9911216 Phenomenology +hep-ph/9911218 Phenomenology +hep-ph/9911222 Phenomenology +hep-ph/9911225 Phenomenology +hep-ph/9911227 Phenomenology +hep-ph/9911231 Phenomenology +hep-ph/9911233 Phenomenology +hep-ph/9911247 Phenomenology +hep-ph/9911248 Phenomenology +hep-ph/9911250 Phenomenology +hep-ph/9911251 Phenomenology +hep-ph/9911252 Phenomenology +hep-ph/9911254 Phenomenology +hep-ph/9911255 Phenomenology +hep-ph/9911257 Phenomenology +hep-ph/9911258 Phenomenology +hep-ph/9911262 Phenomenology +hep-ph/9911263 Phenomenology +hep-ph/9911265 Phenomenology +hep-ph/9911267 Phenomenology +hep-ph/9911270 Phenomenology +hep-ph/9911275 Phenomenology +hep-ph/9911279 Phenomenology +hep-ph/9911281 Phenomenology +hep-ph/9911283 Phenomenology +hep-ph/9911286 Phenomenology +hep-ph/9911287 Phenomenology +hep-ph/9911290 Phenomenology +hep-ph/9911293 Phenomenology +hep-ph/9911294 Phenomenology +hep-ph/9911297 Phenomenology +hep-ph/9911300 Phenomenology +hep-ph/9911301 Phenomenology +hep-ph/9911302 Phenomenology +hep-ph/9911304 Phenomenology +hep-ph/9911309 Phenomenology +hep-ph/9911312 Phenomenology +hep-ph/9911314 Phenomenology +hep-ph/9911316 Phenomenology +hep-ph/9911322 Phenomenology +hep-ph/9911323 Phenomenology +hep-ph/9911327 Phenomenology +hep-ph/9911333 Phenomenology +hep-ph/9911337 Phenomenology +hep-ph/9911338 Phenomenology +hep-ph/9911346 Phenomenology +hep-ph/9911355 Phenomenology +hep-ph/9911357 Phenomenology +hep-ph/9911366 Phenomenology +hep-ph/9911367 Phenomenology +hep-ph/9911369 Phenomenology +hep-ph/9911370 Phenomenology +hep-ph/9911372 Phenomenology +hep-ph/9911380 Phenomenology +hep-ph/9911383 Phenomenology +hep-ph/9911386 Phenomenology +hep-ph/9911388 Phenomenology +hep-ph/9911392 Phenomenology +hep-ph/9911396 Phenomenology +hep-ph/9911402 Phenomenology +hep-ph/9911411 Phenomenology +hep-ph/9911413 Phenomenology +hep-ph/9911414 Phenomenology +hep-ph/9911422 Phenomenology +hep-ph/9911423 Phenomenology +hep-ph/9911424 Phenomenology +hep-ph/9911425 Phenomenology +hep-ph/9911428 Phenomenology +hep-ph/9911429 Phenomenology +hep-ph/9911433 Phenomenology +hep-ph/9911435 Phenomenology +hep-ph/9911442 Phenomenology +hep-ph/9911446 Phenomenology +hep-ph/9911448 Phenomenology +hep-ph/9911454 Phenomenology +hep-ph/9911458 Phenomenology +hep-ph/9911460 Phenomenology +hep-ph/9911463 Phenomenology +hep-ph/9911467 Phenomenology +hep-ph/9911472 Phenomenology +hep-ph/9911473 Phenomenology +hep-ph/9911475 Phenomenology +hep-ph/9911476 Phenomenology +hep-ph/9911480 Phenomenology +hep-ph/9911481 Phenomenology +hep-ph/9911482 Phenomenology +hep-ph/9911485 Phenomenology +hep-ph/9911491 Phenomenology +hep-ph/9911492 Phenomenology +hep-ph/9911493 Phenomenology +hep-ph/9911502 Phenomenology +hep-ph/9911505 Phenomenology +hep-ph/9911507 Phenomenology +hep-ph/9911515 Phenomenology +hep-ph/9911516 Phenomenology +hep-ph/9911518 Phenomenology +hep-ph/9911520 Phenomenology +hep-ph/9911521 Phenomenology +hep-ph/9911523 Phenomenology +hep-ph/9911526 Phenomenology +hep-ph/9911528 Phenomenology +hep-ph/9911534 Phenomenology +hep-ph/9911537 Phenomenology +hep-ph/9911542 Phenomenology +hep-ph/9912201 Phenomenology +hep-ph/9912211 Phenomenology +hep-ph/9912213 Phenomenology +hep-ph/9912215 Phenomenology +hep-ph/9912216 Phenomenology +hep-ph/9912220 Phenomenology +hep-ph/9912221 Phenomenology +hep-ph/9912234 Phenomenology +hep-ph/9912237 Phenomenology +hep-ph/9912238 Phenomenology +hep-ph/9912241 Phenomenology +hep-ph/9912250 Phenomenology +hep-ph/9912253 Phenomenology +hep-ph/9912254 Phenomenology +hep-ph/9912255 Phenomenology +hep-ph/9912264 Phenomenology +hep-ph/9912265 Phenomenology +hep-ph/9912268 Phenomenology +hep-ph/9912271 Phenomenology +hep-ph/9912273 Phenomenology +hep-ph/9912274 Phenomenology +hep-ph/9912275 Phenomenology +hep-ph/9912277 Phenomenology +hep-ph/9912281 Phenomenology +hep-ph/9912283 Phenomenology +hep-ph/9912284 Phenomenology +hep-ph/9912293 Phenomenology +hep-ph/9912295 Phenomenology +hep-ph/9912302 Phenomenology +hep-ph/9912310 Phenomenology +hep-ph/9912312 Phenomenology +hep-ph/9912313 Phenomenology +hep-ph/9912315 Phenomenology +hep-ph/9912318 Phenomenology +hep-ph/9912323 Phenomenology +hep-ph/9912326 Phenomenology +hep-ph/9912327 Phenomenology +hep-ph/9912328 Phenomenology +hep-ph/9912329 Phenomenology +hep-ph/9912331 Phenomenology +hep-ph/9912338 Phenomenology +hep-ph/9912339 Phenomenology +hep-ph/9912341 Phenomenology +hep-ph/9912343 Phenomenology +hep-ph/9912344 Phenomenology +hep-ph/9912345 Phenomenology +hep-ph/9912347 Phenomenology +hep-ph/9912352 Phenomenology +hep-ph/9912355 Phenomenology +hep-ph/9912356 Phenomenology +hep-ph/9912357 Phenomenology +hep-ph/9912359 Phenomenology +hep-ph/9912361 Phenomenology +hep-ph/9912364 Phenomenology +hep-ph/9912365 Phenomenology +hep-ph/9912367 Phenomenology +hep-ph/9912368 Phenomenology +hep-ph/9912375 Phenomenology +hep-ph/9912376 Phenomenology +hep-ph/9912379 Phenomenology +hep-ph/9912382 Phenomenology +hep-ph/9912385 Phenomenology +hep-ph/9912387 Phenomenology +hep-ph/9912388 Phenomenology +hep-ph/9912391 Phenomenology +hep-ph/9912392 Phenomenology +hep-ph/9912393 Phenomenology +hep-ph/9912398 Phenomenology +hep-ph/9912400 Phenomenology +hep-ph/9912404 Phenomenology +hep-ph/9912407 Phenomenology +hep-ph/9912409 Phenomenology +hep-ph/9912414 Phenomenology +hep-ph/9912417 Phenomenology +hep-ph/9912421 Phenomenology +hep-ph/9912427 Phenomenology +hep-ph/9912433 Phenomenology +hep-ph/9912434 Phenomenology +hep-ph/9912437 Phenomenology +hep-ph/9912446 Phenomenology +hep-ph/9912448 Phenomenology +hep-ph/9912449 Phenomenology +hep-ph/9912450 Phenomenology +hep-ph/9912455 Phenomenology +hep-ph/9912458 Phenomenology +hep-ph/9912459 Phenomenology +hep-ph/9912465 Phenomenology +hep-ph/9912473 Phenomenology +hep-ph/9912474 Phenomenology +hep-ph/9912475 Phenomenology +hep-ph/9912476 Phenomenology +hep-ph/9912478 Phenomenology +hep-ph/9912479 Phenomenology +hep-ph/9912482 Phenomenology +hep-ph/9912483 Phenomenology +hep-ph/9912485 Phenomenology +hep-ph/9912491 Phenomenology +hep-ph/9912492 Phenomenology +hep-ph/9912494 Phenomenology +hep-ph/9912495 Phenomenology +hep-ph/9912496 Phenomenology +hep-ph/9912497 Phenomenology +hep-ph/9912498 Phenomenology +hep-ph/9912499 Phenomenology +hep-ph/9912500 Phenomenology +hep-ph/9912501 Phenomenology +hep-ph/9912505 Phenomenology +hep-ph/9912507 Phenomenology +hep-ph/9912509 Phenomenology +hep-ph/9912512 Phenomenology +hep-ph/9912513 Phenomenology +hep-ph/9912514 Phenomenology +hep-ph/9912515 Phenomenology +hep-ph/9912517 Phenomenology +hep-ph/9912520 Phenomenology +hep-ph/9912522 Phenomenology +hep-ph/9912526 Phenomenology +hep-ph/9912527 Phenomenology +hep-ph/9912530 Phenomenology +hep-ph/9912537 Phenomenology +hep-ph/9912540 Phenomenology +hep-ph/9912545 Phenomenology +hep-ph/9912546 Phenomenology +hep-th/0001004 Theory +hep-th/0001008 Theory +hep-th/0001010 Theory +hep-th/0001011 Theory +hep-th/0001013 Theory +hep-th/0001015 Theory +hep-th/0001016 Theory +hep-th/0001017 Theory +hep-th/0001018 Theory +hep-th/0001019 Theory +hep-th/0001021 Theory +hep-th/0001025 Theory +hep-th/0001027 Theory +hep-th/0001028 Theory +hep-th/0001030 Theory +hep-th/0001031 Theory +hep-th/0001034 Theory +hep-th/0001035 Theory +hep-th/0001036 Theory +hep-th/0001037 Theory +hep-th/0001039 Theory +hep-th/0001041 Theory +hep-th/0001049 Theory +hep-th/0001050 Theory +hep-th/0001051 Theory +hep-th/0001055 Theory +hep-th/0001057 Theory +hep-th/0001060 Theory +hep-th/0001063 Theory +hep-th/0001064 Theory +hep-th/0001066 Theory +hep-th/0001067 Theory +hep-th/0001068 Theory +hep-th/0001071 Theory +hep-th/0001072 Theory +hep-th/0001076 Theory +hep-th/0001077 Theory +hep-th/0001080 Theory +hep-th/0001081 Theory +hep-th/0001082 Theory +hep-th/0001083 Theory +hep-th/0001084 Theory +hep-th/0001090 Theory +hep-th/0001092 Theory +hep-th/0001093 Theory +hep-th/0001096 Theory +hep-th/0001097 Theory +hep-th/0001098 Theory +hep-th/0001104 Theory +hep-th/0001105 Theory +hep-th/0001106 Theory +hep-th/0001108 Theory +hep-th/0001109 Theory +hep-th/0001111 Theory +hep-th/0001114 Theory +hep-th/0001119 Theory +hep-th/0001120 Theory +hep-th/0001128 Theory +hep-th/0001129 Theory +hep-th/0001130 Theory +hep-th/0001133 Theory +hep-th/0001137 Theory +hep-th/0001138 Theory +hep-th/0001140 Theory +hep-th/0001143 Theory +hep-th/0001151 Theory +hep-th/0001152 Theory +hep-th/0001153 Theory +hep-th/0001154 Theory +hep-th/0001155 Theory +hep-th/0001156 Theory +hep-th/0001158 Theory +hep-th/0001160 Theory +hep-th/0001161 Theory +hep-th/0001162 Theory +hep-th/0001163 Theory +hep-th/0001164 Theory +hep-th/0001165 Theory +hep-th/0001166 Theory +hep-th/0001170 Theory +hep-th/0001171 Theory +hep-th/0001173 Theory +hep-th/0001174 Theory +hep-th/0001175 Theory +hep-th/0001176 Theory +hep-th/0001179 Theory +hep-th/0001180 Theory +hep-th/0001181 Theory +hep-th/0001183 Theory +hep-th/0001184 Theory +hep-th/0001185 Theory +hep-th/0001186 Theory +hep-th/0001193 Theory +hep-th/0001195 Theory +hep-th/0001199 Theory +hep-th/0001200 Theory +hep-th/0001201 Theory +hep-th/0001202 Theory +hep-th/0001204 Theory +hep-th/0001205 Theory +hep-th/0001207 Theory +hep-th/0001209 Theory +hep-th/0001210 Theory +hep-th/0001213 Theory +hep-th/0001214 Theory +hep-th/0001216 Theory +hep-th/0001217 Theory +hep-th/0001218 Theory +hep-th/0001222 Theory +hep-th/0002002 Theory +hep-th/0002003 Theory +hep-th/0002004 Theory +hep-th/0002014 Theory +hep-th/0002015 Theory +hep-th/0002017 Theory +hep-th/0002019 Theory +hep-th/0002020 Theory +hep-th/0002025 Theory +hep-th/0002027 Theory +hep-th/0002029 Theory +hep-th/0002031 Theory +hep-th/0002032 Theory +hep-th/0002033 Theory +hep-th/0002036 Theory +hep-th/0002038 Theory +hep-th/0002042 Theory +hep-th/0002043 Theory +hep-th/0002046 Theory +hep-th/0002047 Theory +hep-th/0002050 Theory +hep-th/0002051 Theory +hep-th/0002052 Theory +hep-th/0002055 Theory +hep-th/0002057 Theory +hep-th/0002058 Theory +hep-th/0002060 Theory +hep-th/0002061 Theory +hep-th/0002063 Theory +hep-th/0002066 Theory +hep-th/0002067 Theory +hep-th/0002069 Theory +hep-th/0002071 Theory +hep-th/0002072 Theory +hep-th/0002075 Theory +hep-th/0002077 Theory +hep-th/0002079 Theory +hep-th/0002082 Theory +hep-th/0002084 Theory +hep-th/0002085 Theory +hep-th/0002086 Theory +hep-th/0002087 Theory +hep-th/0002088 Theory +hep-th/0002089 Theory +hep-th/0002090 Theory +hep-th/0002091 Theory +hep-th/0002093 Theory +hep-th/0002097 Theory +hep-th/0002101 Theory +hep-th/0002103 Theory +hep-th/0002104 Theory +hep-th/0002105 Theory +hep-th/0002106 Theory +hep-th/0002110 Theory +hep-th/0002111 Theory +hep-th/0002112 Theory +hep-th/0002113 Theory +hep-th/0002114 Theory +hep-th/0002117 Theory +hep-th/0002119 Theory +hep-th/0002120 Theory +hep-th/0002122 Theory +hep-th/0002126 Theory +hep-th/0002127 Theory +hep-th/0002128 Theory +hep-th/0002130 Theory +hep-th/0002131 Theory +hep-th/0002134 Theory +hep-th/0002138 Theory +hep-th/0002140 Theory +hep-th/0002143 Theory +hep-th/0002145 Theory +hep-th/0002147 Theory +hep-th/0002148 Theory +hep-th/0002149 Theory +hep-th/0002150 Theory +hep-th/0002151 Theory +hep-th/0002156 Theory +hep-th/0002157 Theory +hep-th/0002158 Theory +hep-th/0002164 Theory +hep-th/0002167 Theory +hep-th/0002174 Theory +hep-th/0002175 Theory +hep-th/0002177 Theory +hep-th/0002178 Theory +hep-th/0002180 Theory +hep-th/0002181 Theory +hep-th/0002185 Theory +hep-th/0002186 Theory +hep-th/0002187 Theory +hep-th/0002190 Theory +hep-th/0002192 Theory +hep-th/0002194 Theory +hep-th/0002196 Theory +hep-th/0002197 Theory +hep-th/0002198 Theory +hep-th/0002202 Theory +hep-th/0002203 Theory +hep-th/0002205 Theory +hep-th/0002207 Theory +hep-th/0002209 Theory +hep-th/0002210 Theory +hep-th/0002213 Theory +hep-th/0002215 Theory +hep-th/0002216 Theory +hep-th/0002217 Theory +hep-th/0002218 Theory +hep-th/0002219 Theory +hep-th/0002223 Theory +hep-th/0002225 Theory +hep-th/0002227 Theory +hep-th/0002229 Theory +hep-th/0002230 Theory +hep-th/0002234 Theory +hep-th/0002236 Theory +hep-th/0002237 Theory +hep-th/0002238 Theory +hep-th/0002244 Theory +hep-th/0002251 Theory +hep-th/0002256 Theory +hep-th/0002258 Theory +hep-th/0002259 Theory +hep-th/0003002 Theory +hep-th/0003006 Theory +hep-th/0003007 Theory +hep-th/0003008 Theory +hep-th/0003009 Theory +hep-th/0003010 Theory +hep-th/0003013 Theory +hep-th/0003016 Theory +hep-th/0003018 Theory +hep-th/0003025 Theory +hep-th/0003027 Theory +hep-th/0003031 Theory +hep-th/0003033 Theory +hep-th/0003035 Theory +hep-th/0003038 Theory +hep-th/0003041 Theory +hep-th/0003042 Theory +hep-th/0003043 Theory +hep-th/0003048 Theory +hep-th/0003050 Theory +hep-th/0003051 Theory +hep-th/0003052 Theory +hep-th/0003054 Theory +hep-th/0003055 Theory +hep-th/0003056 Theory +hep-th/0003057 Theory +hep-th/0003058 Theory +hep-th/0003060 Theory +hep-th/0003061 Theory +hep-th/0003062 Theory +hep-th/0003063 Theory +hep-th/0003065 Theory +hep-th/0003066 Theory +hep-th/0003067 Theory +hep-th/0003069 Theory +hep-th/0003070 Theory +hep-th/0003071 Theory +hep-th/0003072 Theory +hep-th/0003074 Theory +hep-th/0003075 Theory +hep-th/0003077 Theory +hep-th/0003080 Theory +hep-th/0003087 Theory +hep-th/0003092 Theory +hep-th/0003096 Theory +hep-th/0003098 Theory +hep-th/0003099 Theory +hep-th/0003100 Theory +hep-th/0003102 Theory +hep-th/0003105 Theory +hep-th/0003107 Theory +hep-th/0003108 Theory +hep-th/0003109 Theory +hep-th/0003110 Theory +hep-th/0003111 Theory +hep-th/0003113 Theory +hep-th/0003114 Theory +hep-th/0003116 Theory +hep-th/0003117 Theory +hep-th/0003122 Theory +hep-th/0003124 Theory +hep-th/0003127 Theory +hep-th/0003130 Theory +hep-th/0003132 Theory +hep-th/0003133 Theory +hep-th/0003134 Theory +hep-th/0003135 Theory +hep-th/0003137 Theory +hep-th/0003139 Theory +hep-th/0003142 Theory +hep-th/0003143 Theory +hep-th/0003144 Theory +hep-th/0003153 Theory +hep-th/0003154 Theory +hep-th/0003160 Theory +hep-th/0003161 Theory +hep-th/0003164 Theory +hep-th/0003166 Theory +hep-th/0003169 Theory +hep-th/0003170 Theory +hep-th/0003172 Theory +hep-th/0003173 Theory +hep-th/0003174 Theory +hep-th/0003176 Theory +hep-th/0003177 Theory +hep-th/0003178 Theory +hep-th/0003179 Theory +hep-th/0003180 Theory +hep-th/0003183 Theory +hep-th/0003184 Theory +hep-th/0003186 Theory +hep-th/0003188 Theory +hep-th/0003189 Theory +hep-th/0003191 Theory +hep-th/0003192 Theory +hep-th/0003193 Theory +hep-th/0003194 Theory +hep-th/0003195 Theory +hep-th/0003200 Theory +hep-th/0003203 Theory +hep-th/0003204 Theory +hep-th/0003206 Theory +hep-th/0003208 Theory +hep-th/0003209 Theory +hep-th/0003211 Theory +hep-th/0003213 Theory +hep-th/0003216 Theory +hep-th/0003217 Theory +hep-th/0003221 Theory +hep-th/0003222 Theory +hep-th/0003223 Theory +hep-th/0003224 Theory +hep-th/0003226 Theory +hep-th/0003228 Theory +hep-th/0003229 Theory +hep-th/0003230 Theory +hep-th/0003231 Theory +hep-th/0003232 Theory +hep-th/0003233 Theory +hep-th/0003235 Theory +hep-th/0003239 Theory +hep-th/0003243 Theory +hep-th/0003244 Theory +hep-th/0003245 Theory +hep-th/0003247 Theory +hep-th/0003248 Theory +hep-th/0003249 Theory +hep-th/0003250 Theory +hep-th/0003252 Theory +hep-th/0003253 Theory +hep-th/0003254 Theory +hep-th/0003256 Theory +hep-th/0003257 Theory +hep-th/0003260 Theory +hep-th/0003261 Theory +hep-th/0003262 Theory +hep-th/0003263 Theory +hep-th/0003264 Theory +hep-th/0003265 Theory +hep-th/0003268 Theory +hep-th/0003269 Theory +hep-th/0003272 Theory +hep-th/0003273 Theory +hep-th/0003275 Theory +hep-th/0003277 Theory +hep-th/0003281 Theory +hep-th/0003282 Theory +hep-th/0003283 Theory +hep-th/0003284 Theory +hep-th/0003288 Theory +hep-th/0003289 Theory +hep-th/0003292 Theory +hep-th/0003293 Theory +hep-th/0003295 Theory +hep-th/0003298 Theory +hep-th/0003299 Theory +hep-th/0003301 Theory +hep-th/0004001 Theory +hep-th/0004005 Theory +hep-th/0004006 Theory +hep-th/0004010 Theory +hep-th/0004011 Theory +hep-th/0004012 Theory +hep-th/0004013 Theory +hep-th/0004014 Theory +hep-th/0004017 Theory +hep-th/0004019 Theory +hep-th/0004022 Theory +hep-th/0004023 Theory +hep-th/0004027 Theory +hep-th/0004030 Theory +hep-th/0004031 Theory +hep-th/0004032 Theory +hep-th/0004037 Theory +hep-th/0004038 Theory +hep-th/0004042 Theory +hep-th/0004043 Theory +hep-th/0004044 Theory +hep-th/0004049 Theory +hep-th/0004055 Theory +hep-th/0004056 Theory +hep-th/0004058 Theory +hep-th/0004059 Theory +hep-th/0004060 Theory +hep-th/0004061 Theory +hep-th/0004062 Theory +hep-th/0004063 Theory +hep-th/0004065 Theory +hep-th/0004067 Theory +hep-th/0004068 Theory +hep-th/0004069 Theory +hep-th/0004071 Theory +hep-th/0004072 Theory +hep-th/0004073 Theory +hep-th/0004076 Theory +hep-th/0004077 Theory +hep-th/0004080 Theory +hep-th/0004081 Theory +hep-th/0004082 Theory +hep-th/0004083 Theory +hep-th/0004085 Theory +hep-th/0004086 Theory +hep-th/0004087 Theory +hep-th/0004089 Theory +hep-th/0004090 Theory +hep-th/0004093 Theory +hep-th/0004094 Theory +hep-th/0004096 Theory +hep-th/0004098 Theory +hep-th/0004099 Theory +hep-th/0004100 Theory +hep-th/0004102 Theory +hep-th/0004105 Theory +hep-th/0004106 Theory +hep-th/0004107 Theory +hep-th/0004110 Theory +hep-th/0004111 Theory +hep-th/0004115 Theory +hep-th/0004120 Theory +hep-th/0004122 Theory +hep-th/0004124 Theory +hep-th/0004125 Theory +hep-th/0004127 Theory +hep-th/0004128 Theory +hep-th/0004131 Theory +hep-th/0004134 Theory +hep-th/0004137 Theory +hep-th/0004138 Theory +hep-th/0004141 Theory +hep-th/0004143 Theory +hep-th/0004144 Theory +hep-th/0004147 Theory +hep-th/0004148 Theory +hep-th/0004154 Theory +hep-th/0004155 Theory +hep-th/0004157 Theory +hep-th/0004158 Theory +hep-th/0004159 Theory +hep-th/0004160 Theory +hep-th/0004161 Theory +hep-th/0004162 Theory +hep-th/0004164 Theory +hep-th/0004167 Theory +hep-th/0004168 Theory +hep-th/0004171 Theory +hep-th/0004172 Theory +hep-th/0004174 Theory +hep-th/0004176 Theory +hep-th/0004177 Theory +hep-th/0004178 Theory +hep-th/0004179 Theory +hep-th/0004180 Theory +hep-th/0004181 Theory +hep-th/0004184 Theory +hep-th/0004185 Theory +hep-th/0004186 Theory +hep-th/0004188 Theory +hep-th/0004189 Theory +hep-th/0004193 Theory +hep-th/0004194 Theory +hep-th/0004195 Theory +hep-th/0004196 Theory +hep-th/0004199 Theory +hep-th/0004200 Theory +hep-th/0004202 Theory +hep-th/0004203 Theory +hep-th/0004205 Theory +hep-th/0004206 Theory +hep-th/0005001 Theory +hep-th/0005002 Theory +hep-th/0005006 Theory +hep-th/0005007 Theory +hep-th/0005009 Theory +hep-th/0005010 Theory +hep-th/0005011 Theory +hep-th/0005013 Theory +hep-th/0005014 Theory +hep-th/0005015 Theory +hep-th/0005018 Theory +hep-th/0005019 Theory +hep-th/0005021 Theory +hep-th/0005025 Theory +hep-th/0005026 Theory +hep-th/0005027 Theory +hep-th/0005030 Theory +hep-th/0005031 Theory +hep-th/0005035 Theory +hep-th/0005036 Theory +hep-th/0005038 Theory +hep-th/0005040 Theory +hep-th/0005041 Theory +hep-th/0005044 Theory +hep-th/0005046 Theory +hep-th/0005047 Theory +hep-th/0005048 Theory +hep-th/0005051 Theory +hep-th/0005052 Theory +hep-th/0005055 Theory +hep-th/0005056 Theory +hep-th/0005059 Theory +hep-th/0005060 Theory +hep-th/0005062 Theory +hep-th/0005064 Theory +hep-th/0005065 Theory +hep-th/0005066 Theory +hep-th/0005067 Theory +hep-th/0005070 Theory +hep-th/0005071 Theory +hep-th/0005073 Theory +hep-th/0005078 Theory +hep-th/0005080 Theory +hep-th/0005081 Theory +hep-th/0005085 Theory +hep-th/0005086 Theory +hep-th/0005087 Theory +hep-th/0005089 Theory +hep-th/0005092 Theory +hep-th/0005094 Theory +hep-th/0005096 Theory +hep-th/0005097 Theory +hep-th/0005098 Theory +hep-th/0005101 Theory +hep-th/0005102 Theory +hep-th/0005108 Theory +hep-th/0005109 Theory +hep-th/0005110 Theory +hep-th/0005112 Theory +hep-th/0005113 Theory +hep-th/0005114 Theory +hep-th/0005115 Theory +hep-th/0005119 Theory +hep-th/0005122 Theory +hep-th/0005123 Theory +hep-th/0005124 Theory +hep-th/0005125 Theory +hep-th/0005128 Theory +hep-th/0005129 Theory +hep-th/0005131 Theory +hep-th/0005134 Theory +hep-th/0005135 Theory +hep-th/0005138 Theory +hep-th/0005139 Theory +hep-th/0005142 Theory +hep-th/0005143 Theory +hep-th/0005145 Theory +hep-th/0005147 Theory +hep-th/0005148 Theory +hep-th/0005149 Theory +hep-th/0005150 Theory +hep-th/0005154 Theory +hep-th/0005156 Theory +hep-th/0005157 Theory +hep-th/0005158 Theory +hep-th/0005159 Theory +hep-th/0005161 Theory +hep-th/0005162 Theory +hep-th/0005163 Theory +hep-th/0005164 Theory +hep-th/0005165 Theory +hep-th/0005166 Theory +hep-th/0005170 Theory +hep-th/0005173 Theory +hep-th/0005176 Theory +hep-th/0005179 Theory +hep-th/0005182 Theory +hep-th/0005184 Theory +hep-th/0005185 Theory +hep-th/0005189 Theory +hep-th/0005190 Theory +hep-th/0005194 Theory +hep-th/0005199 Theory +hep-th/0005203 Theory +hep-th/0005204 Theory +hep-th/0005205 Theory +hep-th/0005207 Theory +hep-th/0005208 Theory +hep-th/0005210 Theory +hep-th/0005211 Theory +hep-th/0005213 Theory +hep-th/0005214 Theory +hep-th/0005215 Theory +hep-th/0005216 Theory +hep-th/0005218 Theory +hep-th/0005219 Theory +hep-th/0005220 Theory +hep-th/0005221 Theory +hep-th/0005222 Theory +hep-th/0005223 Theory +hep-th/0005224 Theory +hep-th/0005226 Theory +hep-th/0005230 Theory +hep-th/0005232 Theory +hep-th/0005233 Theory +hep-th/0005234 Theory +hep-th/0005235 Theory +hep-th/0005236 Theory +hep-th/0005237 Theory +hep-th/0005239 Theory +hep-th/0005243 Theory +hep-th/0005244 Theory +hep-th/0005248 Theory +hep-th/0005252 Theory +hep-th/0005253 Theory +hep-th/0005256 Theory +hep-th/0005257 Theory +hep-th/0005258 Theory +hep-th/0005261 Theory +hep-th/0005265 Theory +hep-th/0005266 Theory +hep-th/0005267 Theory +hep-th/0005268 Theory +hep-th/0005269 Theory +hep-th/0005272 Theory +hep-th/0005273 Theory +hep-th/0005275 Theory +hep-th/0005278 Theory +hep-th/0005279 Theory +hep-th/0005280 Theory +hep-th/0005281 Theory +hep-th/0005282 Theory +hep-th/0005283 Theory +hep-th/0005284 Theory +hep-th/0005285 Theory +hep-th/0005287 Theory +hep-th/0005288 Theory +hep-th/0006003 Theory +hep-th/0006005 Theory +hep-th/0006007 Theory +hep-th/0006008 Theory +hep-th/0006012 Theory +hep-th/0006013 Theory +hep-th/0006014 Theory +hep-th/0006017 Theory +hep-th/0006021 Theory +hep-th/0006023 Theory +hep-th/0006026 Theory +hep-th/0006027 Theory +hep-th/0006030 Theory +hep-th/0006031 Theory +hep-th/0006032 Theory +hep-th/0006035 Theory +hep-th/0006036 Theory +hep-th/0006037 Theory +hep-th/0006039 Theory +hep-th/0006041 Theory +hep-th/0006043 Theory +hep-th/0006044 Theory +hep-th/0006050 Theory +hep-th/0006052 Theory +hep-th/0006053 Theory +hep-th/0006056 Theory +hep-th/0006057 Theory +hep-th/0006058 Theory +hep-th/0006059 Theory +hep-th/0006060 Theory +hep-th/0006061 Theory +hep-th/0006062 Theory +hep-th/0006063 Theory +hep-th/0006067 Theory +hep-th/0006068 Theory +hep-th/0006070 Theory +hep-th/0006073 Theory +hep-th/0006074 Theory +hep-th/0006077 Theory +hep-th/0006079 Theory +hep-th/0006080 Theory +hep-th/0006084 Theory +hep-th/0006087 Theory +hep-th/0006088 Theory +hep-th/0006090 Theory +hep-th/0006093 Theory +hep-th/0006096 Theory +hep-th/0006097 Theory +hep-th/0006098 Theory +hep-th/0006101 Theory +hep-th/0006102 Theory +hep-th/0006103 Theory +hep-th/0006104 Theory +hep-th/0006108 Theory +hep-th/0006111 Theory +hep-th/0006114 Theory +hep-th/0006118 Theory +hep-th/0006119 Theory +hep-th/0006121 Theory +hep-th/0006132 Theory +hep-th/0006134 Theory +hep-th/0006135 Theory +hep-th/0006139 Theory +hep-th/0006140 Theory +hep-th/0006146 Theory +hep-th/0006148 Theory +hep-th/0006152 Theory +hep-th/0006153 Theory +hep-th/0006154 Theory +hep-th/0006156 Theory +hep-th/0006157 Theory +hep-th/0006158 Theory +hep-th/0006159 Theory +hep-th/0006160 Theory +hep-th/0006162 Theory +hep-th/0006163 Theory +hep-th/0006165 Theory +hep-th/0006168 Theory +hep-th/0006170 Theory +hep-th/0006171 Theory +hep-th/0006176 Theory +hep-th/0006177 Theory +hep-th/0006180 Theory +hep-th/0006181 Theory +hep-th/0006182 Theory +hep-th/0006183 Theory +hep-th/0006184 Theory +hep-th/0006186 Theory +hep-th/0006188 Theory +hep-th/0006190 Theory +hep-th/0006191 Theory +hep-th/0006192 Theory +hep-th/0006193 Theory +hep-th/0006196 Theory +hep-th/0006200 Theory +hep-th/0006201 Theory +hep-th/0006202 Theory +hep-th/0006207 Theory +hep-th/0006211 Theory +hep-th/0006213 Theory +hep-th/0006219 Theory +hep-th/0006223 Theory +hep-th/0006226 Theory +hep-th/0006227 Theory +hep-th/0006228 Theory +hep-th/0006229 Theory +hep-th/0006230 Theory +hep-th/0006231 Theory +hep-th/0006232 Theory +hep-th/0006233 Theory +hep-th/0006234 Theory +hep-th/0006236 Theory +hep-th/0006238 Theory +hep-th/0006239 Theory +hep-th/0006245 Theory +hep-th/0006247 Theory +hep-th/0006248 Theory +hep-th/0006251 Theory +hep-th/0007004 Theory +hep-th/0007005 Theory +hep-th/0007007 Theory +hep-th/0007008 Theory +hep-th/0007009 Theory +hep-th/0007011 Theory +hep-th/0007012 Theory +hep-th/0007014 Theory +hep-th/0007019 Theory +hep-th/0007020 Theory +hep-th/0007021 Theory +hep-th/0007022 Theory +hep-th/0007024 Theory +hep-th/0007025 Theory +hep-th/0007028 Theory +hep-th/0007030 Theory +hep-th/0007033 Theory +hep-th/0007034 Theory +hep-th/0007035 Theory +hep-th/0007039 Theory +hep-th/0007042 Theory +hep-th/0007043 Theory +hep-th/0007044 Theory +hep-th/0007045 Theory +hep-th/0007050 Theory +hep-th/0007052 Theory +hep-th/0007053 Theory +hep-th/0007055 Theory +hep-th/0007058 Theory +hep-th/0007060 Theory +hep-th/0007062 Theory +hep-th/0007063 Theory +hep-th/0007064 Theory +hep-th/0007066 Theory +hep-th/0007069 Theory +hep-th/0007072 Theory +hep-th/0007075 Theory +hep-th/0007077 Theory +hep-th/0007078 Theory +hep-th/0007079 Theory +hep-th/0007081 Theory +hep-th/0007082 Theory +hep-th/0007083 Theory +hep-th/0007085 Theory +hep-th/0007087 Theory +hep-th/0007089 Theory +hep-th/0007090 Theory +hep-th/0007092 Theory +hep-th/0007093 Theory +hep-th/0007094 Theory +hep-th/0007095 Theory +hep-th/0007097 Theory +hep-th/0007100 Theory +hep-th/0007102 Theory +hep-th/0007103 Theory +hep-th/0007104 Theory +hep-th/0007105 Theory +hep-th/0007106 Theory +hep-th/0007107 Theory +hep-th/0007108 Theory +hep-th/0007113 Theory +hep-th/0007114 Theory +hep-th/0007116 Theory +hep-th/0007119 Theory +hep-th/0007121 Theory +hep-th/0007122 Theory +hep-th/0007124 Theory +hep-th/0007125 Theory +hep-th/0007127 Theory +hep-th/0007128 Theory +hep-th/0007131 Theory +hep-th/0007132 Theory +hep-th/0007135 Theory +hep-th/0007136 Theory +hep-th/0007137 Theory +hep-th/0007139 Theory +hep-th/0007140 Theory +hep-th/0007141 Theory +hep-th/0007143 Theory +hep-th/0007144 Theory +hep-th/0007147 Theory +hep-th/0007148 Theory +hep-th/0007153 Theory +hep-th/0007154 Theory +hep-th/0007155 Theory +hep-th/0007158 Theory +hep-th/0007159 Theory +hep-th/0007161 Theory +hep-th/0007166 Theory +hep-th/0007167 Theory +hep-th/0007168 Theory +hep-th/0007169 Theory +hep-th/0007171 Theory +hep-th/0007176 Theory +hep-th/0007177 Theory +hep-th/0007181 Theory +hep-th/0007182 Theory +hep-th/0007184 Theory +hep-th/0007185 Theory +hep-th/0007188 Theory +hep-th/0007189 Theory +hep-th/0007199 Theory +hep-th/0007200 Theory +hep-th/0007203 Theory +hep-th/0007204 Theory +hep-th/0007207 Theory +hep-th/0007208 Theory +hep-th/0007210 Theory +hep-th/0007211 Theory +hep-th/0007212 Theory +hep-th/0007215 Theory +hep-th/0007216 Theory +hep-th/0007218 Theory +hep-th/0007220 Theory +hep-th/0007221 Theory +hep-th/0007222 Theory +hep-th/0007223 Theory +hep-th/0007225 Theory +hep-th/0007226 Theory +hep-th/0007227 Theory +hep-th/0007228 Theory +hep-th/0007230 Theory +hep-th/0007233 Theory +hep-th/0007234 Theory +hep-th/0007235 Theory +hep-th/0007236 Theory +hep-th/0007239 Theory +hep-th/0007247 Theory +hep-th/0007249 Theory +hep-th/0007250 Theory +hep-th/0007252 Theory +hep-th/0007253 Theory +hep-th/0007254 Theory +hep-th/0008001 Theory +hep-th/0008004 Theory +hep-th/0008005 Theory +hep-th/0008012 Theory +hep-th/0008013 Theory +hep-th/0008014 Theory +hep-th/0008015 Theory +hep-th/0008022 Theory +hep-th/0008023 Theory +hep-th/0008025 Theory +hep-th/0008028 Theory +hep-th/0008029 Theory +hep-th/0008031 Theory +hep-th/0008033 Theory +hep-th/0008034 Theory +hep-th/0008035 Theory +hep-th/0008038 Theory +hep-th/0008040 Theory +hep-th/0008041 Theory +hep-th/0008042 Theory +hep-th/0008043 Theory +hep-th/0008044 Theory +hep-th/0008045 Theory +hep-th/0008046 Theory +hep-th/0008047 Theory +hep-th/0008048 Theory +hep-th/0008049 Theory +hep-th/0008051 Theory +hep-th/0008054 Theory +hep-th/0008057 Theory +hep-th/0008058 Theory +hep-th/0008059 Theory +hep-th/0008062 Theory +hep-th/0008064 Theory +hep-th/0008065 Theory +hep-th/0008066 Theory +hep-th/0008067 Theory +hep-th/0008069 Theory +hep-th/0008070 Theory +hep-th/0008073 Theory +hep-th/0008077 Theory +hep-th/0008078 Theory +hep-th/0008079 Theory +hep-th/0008080 Theory +hep-th/0008081 Theory +hep-th/0008082 Theory +hep-th/0008084 Theory +hep-th/0008087 Theory +hep-th/0008088 Theory +hep-th/0008089 Theory +hep-th/0008092 Theory +hep-th/0008094 Theory +hep-th/0008098 Theory +hep-th/0008106 Theory +hep-th/0008108 Theory +hep-th/0008109 Theory +hep-th/0008111 Theory +hep-th/0008114 Theory +hep-th/0008115 Theory +hep-th/0008118 Theory +hep-th/0008119 Theory +hep-th/0008121 Theory +hep-th/0008123 Theory +hep-th/0008125 Theory +hep-th/0008127 Theory +hep-th/0008128 Theory +hep-th/0008131 Theory +hep-th/0008132 Theory +hep-th/0008133 Theory +hep-th/0008134 Theory +hep-th/0008137 Theory +hep-th/0008138 Theory +hep-th/0008139 Theory +hep-th/0008144 Theory +hep-th/0008146 Theory +hep-th/0008147 Theory +hep-th/0008152 Theory +hep-th/0008153 Theory +hep-th/0008154 Theory +hep-th/0008158 Theory +hep-th/0008159 Theory +hep-th/0008161 Theory +hep-th/0008164 Theory +hep-th/0008167 Theory +hep-th/0008168 Theory +hep-th/0008170 Theory +hep-th/0008173 Theory +hep-th/0008176 Theory +hep-th/0008177 Theory +hep-th/0008180 Theory +hep-th/0008181 Theory +hep-th/0008182 Theory +hep-th/0008183 Theory +hep-th/0008184 Theory +hep-th/0008185 Theory +hep-th/0008188 Theory +hep-th/0008189 Theory +hep-th/0008191 Theory +hep-th/0008193 Theory +hep-th/0008194 Theory +hep-th/0008195 Theory +hep-th/0008196 Theory +hep-th/0008197 Theory +hep-th/0008203 Theory +hep-th/0008205 Theory +hep-th/0008210 Theory +hep-th/0008211 Theory +hep-th/0008213 Theory +hep-th/0008214 Theory +hep-th/0008216 Theory +hep-th/0008219 Theory +hep-th/0008225 Theory +hep-th/0008226 Theory +hep-th/0008227 Theory +hep-th/0008230 Theory +hep-th/0008231 Theory +hep-th/0008233 Theory +hep-th/0008235 Theory +hep-th/0008236 Theory +hep-th/0008239 Theory +hep-th/0008245 Theory +hep-th/0008253 Theory +hep-th/0009001 Theory +hep-th/0009002 Theory +hep-th/0009007 Theory +hep-th/0009008 Theory +hep-th/0009010 Theory +hep-th/0009016 Theory +hep-th/0009017 Theory +hep-th/0009018 Theory +hep-th/0009019 Theory +hep-th/0009020 Theory +hep-th/0009021 Theory +hep-th/0009022 Theory +hep-th/0009023 Theory +hep-th/0009025 Theory +hep-th/0009028 Theory +hep-th/0009031 Theory +hep-th/0009038 Theory +hep-th/0009041 Theory +hep-th/0009048 Theory +hep-th/0009050 Theory +hep-th/0009051 Theory +hep-th/0009054 Theory +hep-th/0009056 Theory +hep-th/0009060 Theory +hep-th/0009062 Theory +hep-th/0009063 Theory +hep-th/0009065 Theory +hep-th/0009066 Theory +hep-th/0009067 Theory +hep-th/0009068 Theory +hep-th/0009069 Theory +hep-th/0009070 Theory +hep-th/0009071 Theory +hep-th/0009072 Theory +hep-th/0009073 Theory +hep-th/0009076 Theory +hep-th/0009078 Theory +hep-th/0009082 Theory +hep-th/0009083 Theory +hep-th/0009084 Theory +hep-th/0009085 Theory +hep-th/0009086 Theory +hep-th/0009089 Theory +hep-th/0009090 Theory +hep-th/0009101 Theory +hep-th/0009103 Theory +hep-th/0009106 Theory +hep-th/0009107 Theory +hep-th/0009110 Theory +hep-th/0009112 Theory +hep-th/0009113 Theory +hep-th/0009114 Theory +hep-th/0009116 Theory +hep-th/0009118 Theory +hep-th/0009120 Theory +hep-th/0009123 Theory +hep-th/0009125 Theory +hep-th/0009127 Theory +hep-th/0009128 Theory +hep-th/0009130 Theory +hep-th/0009132 Theory +hep-th/0009133 Theory +hep-th/0009135 Theory +hep-th/0009144 Theory +hep-th/0009145 Theory +hep-th/0009147 Theory +hep-th/0009148 Theory +hep-th/0009151 Theory +hep-th/0009156 Theory +hep-th/0009157 Theory +hep-th/0009158 Theory +hep-th/0009160 Theory +hep-th/0009161 Theory +hep-th/0009165 Theory +hep-th/0009168 Theory +hep-th/0009172 Theory +hep-th/0009174 Theory +hep-th/0009175 Theory +hep-th/0009178 Theory +hep-th/0009179 Theory +hep-th/0009180 Theory +hep-th/0009182 Theory +hep-th/0009184 Theory +hep-th/0009185 Theory +hep-th/0009187 Theory +hep-th/0009188 Theory +hep-th/0009189 Theory +hep-th/0009191 Theory +hep-th/0009194 Theory +hep-th/0009195 Theory +hep-th/0009196 Theory +hep-th/0009197 Theory +hep-th/0009199 Theory +hep-th/0009201 Theory +hep-th/0009204 Theory +hep-th/0009208 Theory +hep-th/0009209 Theory +hep-th/0009212 Theory +hep-th/0009215 Theory +hep-th/0009216 Theory +hep-th/0009221 Theory +hep-th/0009222 Theory +hep-th/0009223 Theory +hep-th/0009227 Theory +hep-th/0009228 Theory +hep-th/0009229 Theory +hep-th/0009231 Theory +hep-th/0009232 Theory +hep-th/0009233 Theory +hep-th/0009235 Theory +hep-th/0009236 Theory +hep-th/0009237 Theory +hep-th/0009239 Theory +hep-th/0009242 Theory +hep-th/0009243 Theory +hep-th/0009249 Theory +hep-th/0009250 Theory +hep-th/0009251 Theory +hep-th/0009252 Theory +hep-th/0010002 Theory +hep-th/0010003 Theory +hep-th/0010009 Theory +hep-th/0010014 Theory +hep-th/0010016 Theory +hep-th/0010017 Theory +hep-th/0010019 Theory +hep-th/0010021 Theory +hep-th/0010022 Theory +hep-th/0010024 Theory +hep-th/0010025 Theory +hep-th/0010026 Theory +hep-th/0010027 Theory +hep-th/0010028 Theory +hep-th/0010030 Theory +hep-th/0010033 Theory +hep-th/0010034 Theory +hep-th/0010039 Theory +hep-th/0010048 Theory +hep-th/0010050 Theory +hep-th/0010052 Theory +hep-th/0010055 Theory +hep-th/0010059 Theory +hep-th/0010060 Theory +hep-th/0010063 Theory +hep-th/0010064 Theory +hep-th/0010066 Theory +hep-th/0010068 Theory +hep-th/0010069 Theory +hep-th/0010071 Theory +hep-th/0010075 Theory +hep-th/0010076 Theory +hep-th/0010077 Theory +hep-th/0010080 Theory +hep-th/0010083 Theory +hep-th/0010085 Theory +hep-th/0010088 Theory +hep-th/0010092 Theory +hep-th/0010093 Theory +hep-th/0010098 Theory +hep-th/0010100 Theory +hep-th/0010101 Theory +hep-th/0010102 Theory +hep-th/0010105 Theory +hep-th/0010106 Theory +hep-th/0010109 Theory +hep-th/0010116 Theory +hep-th/0010118 Theory +hep-th/0010122 Theory +hep-th/0010123 Theory +hep-th/0010124 Theory +hep-th/0010125 Theory +hep-th/0010127 Theory +hep-th/0010128 Theory +hep-th/0010129 Theory +hep-th/0010130 Theory +hep-th/0010133 Theory +hep-th/0010135 Theory +hep-th/0010142 Theory +hep-th/0010153 Theory +hep-th/0010156 Theory +hep-th/0010160 Theory +hep-th/0010163 Theory +hep-th/0010165 Theory +hep-th/0010167 Theory +hep-th/0010170 Theory +hep-th/0010171 Theory +hep-th/0010173 Theory +hep-th/0010176 Theory +hep-th/0010177 Theory +hep-th/0010180 Theory +hep-th/0010183 Theory +hep-th/0010185 Theory +hep-th/0010191 Theory +hep-th/0010192 Theory +hep-th/0010195 Theory +hep-th/0010196 Theory +hep-th/0010200 Theory +hep-th/0010202 Theory +hep-th/0010203 Theory +hep-th/0010204 Theory +hep-th/0010206 Theory +hep-th/0010211 Theory +hep-th/0010213 Theory +hep-th/0010214 Theory +hep-th/0010215 Theory +hep-th/0010216 Theory +hep-th/0010218 Theory +hep-th/0010220 Theory +hep-th/0010227 Theory +hep-th/0010230 Theory +hep-th/0010232 Theory +hep-th/0010236 Theory +hep-th/0010238 Theory +hep-th/0010239 Theory +hep-th/0010252 Theory +hep-th/0010253 Theory +hep-th/0010254 Theory +hep-th/0010256 Theory +hep-th/0010258 Theory +hep-th/0010262 Theory +hep-th/0010264 Theory +hep-th/0010265 Theory +hep-th/0010271 Theory +hep-th/0010272 Theory +hep-th/0010274 Theory +hep-th/0010275 Theory +hep-th/0010276 Theory +hep-th/0010277 Theory +hep-th/0010280 Theory +hep-th/0010282 Theory +hep-th/0010283 Theory +hep-th/0010286 Theory +hep-th/0010287 Theory +hep-th/0010289 Theory +hep-th/0010291 Theory +hep-th/0011005 Theory +hep-th/0011006 Theory +hep-th/0011007 Theory +hep-th/0011010 Theory +hep-th/0011011 Theory +hep-th/0011015 Theory +hep-th/0011018 Theory +hep-th/0011019 Theory +hep-th/0011021 Theory +hep-th/0011022 Theory +hep-th/0011024 Theory +hep-th/0011030 Theory +hep-th/0011034 Theory +hep-th/0011035 Theory +hep-th/0011036 Theory +hep-th/0011037 Theory +hep-th/0011038 Theory +hep-th/0011040 Theory +hep-th/0011041 Theory +hep-th/0011043 Theory +hep-th/0011044 Theory +hep-th/0011045 Theory +hep-th/0011046 Theory +hep-th/0011047 Theory +hep-th/0011057 Theory +hep-th/0011061 Theory +hep-th/0011062 Theory +hep-th/0011069 Theory +hep-th/0011070 Theory +hep-th/0011071 Theory +hep-th/0011072 Theory +hep-th/0011074 Theory +hep-th/0011078 Theory +hep-th/0011079 Theory +hep-th/0011081 Theory +hep-th/0011083 Theory +hep-th/0011084 Theory +hep-th/0011085 Theory +hep-th/0011088 Theory +hep-th/0011090 Theory +hep-th/0011092 Theory +hep-th/0011094 Theory +hep-th/0011097 Theory +hep-th/0011098 Theory +hep-th/0011099 Theory +hep-th/0011101 Theory +hep-th/0011102 Theory +hep-th/0011105 Theory +hep-th/0011111 Theory +hep-th/0011112 Theory +hep-th/0011113 Theory +hep-th/0011116 Theory +hep-th/0011118 Theory +hep-th/0011121 Theory +hep-th/0011122 Theory +hep-th/0011125 Theory +hep-th/0011127 Theory +hep-th/0011131 Theory +hep-th/0011132 Theory +hep-th/0011136 Theory +hep-th/0011140 Theory +hep-th/0011141 Theory +hep-th/0011142 Theory +hep-th/0011147 Theory +hep-th/0011148 Theory +hep-th/0011150 Theory +hep-th/0011153 Theory +hep-th/0011155 Theory +hep-th/0011156 Theory +hep-th/0011158 Theory +hep-th/0011159 Theory +hep-th/0011165 Theory +hep-th/0011168 Theory +hep-th/0011169 Theory +hep-th/0011171 Theory +hep-th/0011173 Theory +hep-th/0011175 Theory +hep-th/0011176 Theory +hep-th/0011177 Theory +hep-th/0011183 Theory +hep-th/0011184 Theory +hep-th/0011186 Theory +hep-th/0011189 Theory +hep-th/0011190 Theory +hep-th/0011194 Theory +hep-th/0011195 Theory +hep-th/0011196 Theory +hep-th/0011198 Theory +hep-th/0011204 Theory +hep-th/0011205 Theory +hep-th/0011207 Theory +hep-th/0011209 Theory +hep-th/0011223 Theory +hep-th/0011225 Theory +hep-th/0011226 Theory +hep-th/0011230 Theory +hep-th/0011231 Theory +hep-th/0011232 Theory +hep-th/0011234 Theory +hep-th/0011238 Theory +hep-th/0011241 Theory +hep-th/0011243 Theory +hep-th/0011246 Theory +hep-th/0011247 Theory +hep-th/0011249 Theory +hep-th/0011251 Theory +hep-th/0011252 Theory +hep-th/0011254 Theory +hep-th/0011258 Theory +hep-th/0011262 Theory +hep-th/0011264 Theory +hep-th/0011266 Theory +hep-th/0011269 Theory +hep-th/0011271 Theory +hep-th/0011277 Theory +hep-th/0011279 Theory +hep-th/0011280 Theory +hep-th/0011283 Theory +hep-th/0011287 Theory +hep-th/0011288 Theory +hep-th/0011289 Theory +hep-th/0012003 Theory +hep-th/0012006 Theory +hep-th/0012010 Theory +hep-th/0012011 Theory +hep-th/0012012 Theory +hep-th/0012013 Theory +hep-th/0012015 Theory +hep-th/0012021 Theory +hep-th/0012023 Theory +hep-th/0012024 Theory +hep-th/0012025 Theory +hep-th/0012026 Theory +hep-th/0012027 Theory +hep-th/0012030 Theory +hep-th/0012031 Theory +hep-th/0012032 Theory +hep-th/0012033 Theory +hep-th/0012035 Theory +hep-th/0012043 Theory +hep-th/0012047 Theory +hep-th/0012049 Theory +hep-th/0012051 Theory +hep-th/0012052 Theory +hep-th/0012053 Theory +hep-th/0012055 Theory +hep-th/0012058 Theory +hep-th/0012064 Theory +hep-th/0012065 Theory +hep-th/0012071 Theory +hep-th/0012072 Theory +hep-th/0012074 Theory +hep-th/0012076 Theory +hep-th/0012078 Theory +hep-th/0012079 Theory +hep-th/0012080 Theory +hep-th/0012081 Theory +hep-th/0012084 Theory +hep-th/0012087 Theory +hep-th/0012090 Theory +hep-th/0012091 Theory +hep-th/0012092 Theory +hep-th/0012093 Theory +hep-th/0012094 Theory +hep-th/0012095 Theory +hep-th/0012097 Theory +hep-th/0012098 Theory +hep-th/0012099 Theory +hep-th/0012100 Theory +hep-th/0012101 Theory +hep-th/0012102 Theory +hep-th/0012104 Theory +hep-th/0012106 Theory +hep-th/0012107 Theory +hep-th/0012114 Theory +hep-th/0012116 Theory +hep-th/0012118 Theory +hep-th/0012120 Theory +hep-th/0012122 Theory +hep-th/0012128 Theory +hep-th/0012129 Theory +hep-th/0012132 Theory +hep-th/0012133 Theory +hep-th/0012135 Theory +hep-th/0012137 Theory +hep-th/0012138 Theory +hep-th/0012139 Theory +hep-th/0012144 Theory +hep-th/0012146 Theory +hep-th/0012148 Theory +hep-th/0012150 Theory +hep-th/0012153 Theory +hep-th/0012156 Theory +hep-th/0012159 Theory +hep-th/0012165 Theory +hep-th/0012168 Theory +hep-th/0012171 Theory +hep-th/0012173 Theory +hep-th/0012178 Theory +hep-th/0012182 Theory +hep-th/0012183 Theory +hep-th/0012184 Theory +hep-th/0012185 Theory +hep-th/0012187 Theory +hep-th/0012189 Theory +hep-th/0012195 Theory +hep-th/0012198 Theory +hep-th/0012199 Theory +hep-th/0012200 Theory +hep-th/0012202 Theory +hep-th/0012208 Theory +hep-th/0012211 Theory +hep-th/0012215 Theory +hep-th/0012220 Theory +hep-th/0012223 Theory +hep-th/0012226 Theory +hep-th/0012227 Theory +hep-th/0012231 Theory +hep-th/0012235 Theory +hep-th/0012236 Theory +hep-th/0012238 Theory +hep-th/0012239 Theory +hep-th/0012240 Theory +hep-th/0012241 Theory +hep-th/0012242 Theory +hep-th/0012243 Theory +hep-th/0012244 Theory +hep-th/0012246 Theory +hep-th/0012247 Theory +hep-th/0012249 Theory +hep-th/0012252 Theory +hep-th/0012256 Theory +hep-th/0012257 Theory +hep-th/0012260 Theory +hep-th/9801001 Theory +hep-th/9801002 Theory +hep-th/9801006 Theory +hep-th/9801009 Theory +hep-th/9801011 Theory +hep-th/9801012 Theory +hep-th/9801014 Theory +hep-th/9801015 Theory +hep-th/9801019 Theory +hep-th/9801020 Theory +hep-th/9801021 Theory +hep-th/9801022 Theory +hep-th/9801023 Theory +hep-th/9801030 Theory +hep-th/9801031 Theory +hep-th/9801032 Theory +hep-th/9801034 Theory +hep-th/9801037 Theory +hep-th/9801038 Theory +hep-th/9801040 Theory +hep-th/9801041 Theory +hep-th/9801044 Theory +hep-th/9801047 Theory +hep-th/9801048 Theory +hep-th/9801051 Theory +hep-th/9801053 Theory +hep-th/9801054 Theory +hep-th/9801055 Theory +hep-th/9801057 Theory +hep-th/9801062 Theory +hep-th/9801063 Theory +hep-th/9801064 Theory +hep-th/9801072 Theory +hep-th/9801074 Theory +hep-th/9801079 Theory +hep-th/9801082 Theory +hep-th/9801083 Theory +hep-th/9801084 Theory +hep-th/9801086 Theory +hep-th/9801087 Theory +hep-th/9801088 Theory +hep-th/9801089 Theory +hep-th/9801090 Theory +hep-th/9801091 Theory +hep-th/9801092 Theory +hep-th/9801094 Theory +hep-th/9801097 Theory +hep-th/9801098 Theory +hep-th/9801103 Theory +hep-th/9801104 Theory +hep-th/9801110 Theory +hep-th/9801121 Theory +hep-th/9801128 Theory +hep-th/9801130 Theory +hep-th/9801133 Theory +hep-th/9801135 Theory +hep-th/9801136 Theory +hep-th/9801141 Theory +hep-th/9801145 Theory +hep-th/9801146 Theory +hep-th/9801148 Theory +hep-th/9801150 Theory +hep-th/9801151 Theory +hep-th/9801155 Theory +hep-th/9801159 Theory +hep-th/9801161 Theory +hep-th/9801163 Theory +hep-th/9801164 Theory +hep-th/9801165 Theory +hep-th/9801166 Theory +hep-th/9801167 Theory +hep-th/9801169 Theory +hep-th/9801170 Theory +hep-th/9801171 Theory +hep-th/9801172 Theory +hep-th/9801174 Theory +hep-th/9801176 Theory +hep-th/9801181 Theory +hep-th/9801183 Theory +hep-th/9801184 Theory +hep-th/9801185 Theory +hep-th/9801186 Theory +hep-th/9801193 Theory +hep-th/9801194 Theory +hep-th/9801195 Theory +hep-th/9801201 Theory +hep-th/9801202 Theory +hep-th/9801203 Theory +hep-th/9801205 Theory +hep-th/9801206 Theory +hep-th/9802003 Theory +hep-th/9802009 Theory +hep-th/9802010 Theory +hep-th/9802012 Theory +hep-th/9802013 Theory +hep-th/9802014 Theory +hep-th/9802015 Theory +hep-th/9802018 Theory +hep-th/9802020 Theory +hep-th/9802021 Theory +hep-th/9802025 Theory +hep-th/9802028 Theory +hep-th/9802030 Theory +hep-th/9802031 Theory +hep-th/9802034 Theory +hep-th/9802038 Theory +hep-th/9802040 Theory +hep-th/9802056 Theory +hep-th/9802061 Theory +hep-th/9802063 Theory +hep-th/9802064 Theory +hep-th/9802065 Theory +hep-th/9802066 Theory +hep-th/9802068 Theory +hep-th/9802069 Theory +hep-th/9802070 Theory +hep-th/9802071 Theory +hep-th/9802072 Theory +hep-th/9802074 Theory +hep-th/9802076 Theory +hep-th/9802077 Theory +hep-th/9802078 Theory +hep-th/9802080 Theory +hep-th/9802081 Theory +hep-th/9802082 Theory +hep-th/9802085 Theory +hep-th/9802088 Theory +hep-th/9802089 Theory +hep-th/9802090 Theory +hep-th/9802092 Theory +hep-th/9802095 Theory +hep-th/9802096 Theory +hep-th/9802097 Theory +hep-th/9802100 Theory +hep-th/9802101 Theory +hep-th/9802103 Theory +hep-th/9802107 Theory +hep-th/9802112 Theory +hep-th/9802113 Theory +hep-th/9802114 Theory +hep-th/9802117 Theory +hep-th/9802118 Theory +hep-th/9802119 Theory +hep-th/9802121 Theory +hep-th/9802125 Theory +hep-th/9802126 Theory +hep-th/9802127 Theory +hep-th/9802131 Theory +hep-th/9802136 Theory +hep-th/9802137 Theory +hep-th/9802140 Theory +hep-th/9802147 Theory +hep-th/9802148 Theory +hep-th/9802151 Theory +hep-th/9802152 Theory +hep-th/9802154 Theory +hep-th/9802158 Theory +hep-th/9802161 Theory +hep-th/9802164 Theory +hep-th/9802166 Theory +hep-th/9802167 Theory +hep-th/9802168 Theory +hep-th/9802169 Theory +hep-th/9802170 Theory +hep-th/9802173 Theory +hep-th/9802174 Theory +hep-th/9802175 Theory +hep-th/9802177 Theory +hep-th/9802178 Theory +hep-th/9802179 Theory +hep-th/9802181 Theory +hep-th/9802182 Theory +hep-th/9802187 Theory +hep-th/9802188 Theory +hep-th/9802190 Theory +hep-th/9802191 Theory +hep-th/9802192 Theory +hep-th/9802195 Theory +hep-th/9802196 Theory +hep-th/9802197 Theory +hep-th/9802198 Theory +hep-th/9802199 Theory +hep-th/9802200 Theory +hep-th/9802201 Theory +hep-th/9802202 Theory +hep-th/9802203 Theory +hep-th/9803003 Theory +hep-th/9803004 Theory +hep-th/9803005 Theory +hep-th/9803008 Theory +hep-th/9803010 Theory +hep-th/9803011 Theory +hep-th/9803012 Theory +hep-th/9803014 Theory +hep-th/9803015 Theory +hep-th/9803016 Theory +hep-th/9803017 Theory +hep-th/9803018 Theory +hep-th/9803019 Theory +hep-th/9803023 Theory +hep-th/9803024 Theory +hep-th/9803025 Theory +hep-th/9803027 Theory +hep-th/9803029 Theory +hep-th/9803030 Theory +hep-th/9803031 Theory +hep-th/9803033 Theory +hep-th/9803039 Theory +hep-th/9803040 Theory +hep-th/9803041 Theory +hep-th/9803042 Theory +hep-th/9803043 Theory +hep-th/9803044 Theory +hep-th/9803045 Theory +hep-th/9803046 Theory +hep-th/9803047 Theory +hep-th/9803048 Theory +hep-th/9803050 Theory +hep-th/9803053 Theory +hep-th/9803056 Theory +hep-th/9803058 Theory +hep-th/9803060 Theory +hep-th/9803062 Theory +hep-th/9803064 Theory +hep-th/9803066 Theory +hep-th/9803073 Theory +hep-th/9803076 Theory +hep-th/9803078 Theory +hep-th/9803080 Theory +hep-th/9803082 Theory +hep-th/9803083 Theory +hep-th/9803086 Theory +hep-th/9803087 Theory +hep-th/9803088 Theory +hep-th/9803092 Theory +hep-th/9803093 Theory +hep-th/9803094 Theory +hep-th/9803097 Theory +hep-th/9803099 Theory +hep-th/9803101 Theory +hep-th/9803104 Theory +hep-th/9803105 Theory +hep-th/9803107 Theory +hep-th/9803109 Theory +hep-th/9803114 Theory +hep-th/9803115 Theory +hep-th/9803118 Theory +hep-th/9803119 Theory +hep-th/9803120 Theory +hep-th/9803122 Theory +hep-th/9803123 Theory +hep-th/9803124 Theory +hep-th/9803125 Theory +hep-th/9803126 Theory +hep-th/9803129 Theory +hep-th/9803130 Theory +hep-th/9803133 Theory +hep-th/9803136 Theory +hep-th/9803137 Theory +hep-th/9803139 Theory +hep-th/9803141 Theory +hep-th/9803142 Theory +hep-th/9803143 Theory +hep-th/9803145 Theory +hep-th/9803146 Theory +hep-th/9803148 Theory +hep-th/9803149 Theory +hep-th/9803152 Theory +hep-th/9803154 Theory +hep-th/9803155 Theory +hep-th/9803156 Theory +hep-th/9803158 Theory +hep-th/9803160 Theory +hep-th/9803161 Theory +hep-th/9803162 Theory +hep-th/9803165 Theory +hep-th/9803168 Theory +hep-th/9803169 Theory +hep-th/9803170 Theory +hep-th/9803171 Theory +hep-th/9803172 Theory +hep-th/9803173 Theory +hep-th/9803176 Theory +hep-th/9803182 Theory +hep-th/9803184 Theory +hep-th/9803186 Theory +hep-th/9803191 Theory +hep-th/9803192 Theory +hep-th/9803193 Theory +hep-th/9803194 Theory +hep-th/9803196 Theory +hep-th/9803201 Theory +hep-th/9803204 Theory +hep-th/9803207 Theory +hep-th/9803209 Theory +hep-th/9803210 Theory +hep-th/9803211 Theory +hep-th/9803212 Theory +hep-th/9803214 Theory +hep-th/9803215 Theory +hep-th/9803216 Theory +hep-th/9803217 Theory +hep-th/9803222 Theory +hep-th/9803224 Theory +hep-th/9803226 Theory +hep-th/9803227 Theory +hep-th/9803230 Theory +hep-th/9803237 Theory +hep-th/9803238 Theory +hep-th/9803239 Theory +hep-th/9803240 Theory +hep-th/9803243 Theory +hep-th/9803248 Theory +hep-th/9803250 Theory +hep-th/9803251 Theory +hep-th/9803252 Theory +hep-th/9803253 Theory +hep-th/9803257 Theory +hep-th/9803258 Theory +hep-th/9803261 Theory +hep-th/9803264 Theory +hep-th/9803265 Theory +hep-th/9804001 Theory +hep-th/9804005 Theory +hep-th/9804006 Theory +hep-th/9804007 Theory +hep-th/9804008 Theory +hep-th/9804009 Theory +hep-th/9804010 Theory +hep-th/9804011 Theory +hep-th/9804012 Theory +hep-th/9804013 Theory +hep-th/9804015 Theory +hep-th/9804016 Theory +hep-th/9804018 Theory +hep-th/9804019 Theory +hep-th/9804021 Theory +hep-th/9804023 Theory +hep-th/9804026 Theory +hep-th/9804029 Theory +hep-th/9804031 Theory +hep-th/9804032 Theory +hep-th/9804034 Theory +hep-th/9804036 Theory +hep-th/9804038 Theory +hep-th/9804040 Theory +hep-th/9804041 Theory +hep-th/9804042 Theory +hep-th/9804045 Theory +hep-th/9804046 Theory +hep-th/9804047 Theory +hep-th/9804049 Theory +hep-th/9804051 Theory +hep-th/9804052 Theory +hep-th/9804053 Theory +hep-th/9804054 Theory +hep-th/9804055 Theory +hep-th/9804056 Theory +hep-th/9804059 Theory +hep-th/9804062 Theory +hep-th/9804063 Theory +hep-th/9804064 Theory +hep-th/9804067 Theory +hep-th/9804068 Theory +hep-th/9804069 Theory +hep-th/9804070 Theory +hep-th/9804073 Theory +hep-th/9804076 Theory +hep-th/9804080 Theory +hep-th/9804081 Theory +hep-th/9804085 Theory +hep-th/9804087 Theory +hep-th/9804089 Theory +hep-th/9804090 Theory +hep-th/9804091 Theory +hep-th/9804092 Theory +hep-th/9804093 Theory +hep-th/9804095 Theory +hep-th/9804097 Theory +hep-th/9804098 Theory +hep-th/9804099 Theory +hep-th/9804104 Theory +hep-th/9804105 Theory +hep-th/9804109 Theory +hep-th/9804110 Theory +hep-th/9804113 Theory +hep-th/9804115 Theory +hep-th/9804118 Theory +hep-th/9804120 Theory +hep-th/9804121 Theory +hep-th/9804123 Theory +hep-th/9804124 Theory +hep-th/9804125 Theory +hep-th/9804126 Theory +hep-th/9804128 Theory +hep-th/9804130 Theory +hep-th/9804132 Theory +hep-th/9804133 Theory +hep-th/9804136 Theory +hep-th/9804138 Theory +hep-th/9804140 Theory +hep-th/9804141 Theory +hep-th/9804142 Theory +hep-th/9804143 Theory +hep-th/9804144 Theory +hep-th/9804145 Theory +hep-th/9804146 Theory +hep-th/9804147 Theory +hep-th/9804148 Theory +hep-th/9804149 Theory +hep-th/9804151 Theory +hep-th/9804152 Theory +hep-th/9804156 Theory +hep-th/9804157 Theory +hep-th/9804158 Theory +hep-th/9804159 Theory +hep-th/9804160 Theory +hep-th/9804161 Theory +hep-th/9804163 Theory +hep-th/9804166 Theory +hep-th/9804167 Theory +hep-th/9804168 Theory +hep-th/9804170 Theory +hep-th/9804177 Theory +hep-th/9804180 Theory +hep-th/9804182 Theory +hep-th/9804184 Theory +hep-th/9804185 Theory +hep-th/9804192 Theory +hep-th/9804197 Theory +hep-th/9804199 Theory +hep-th/9804200 Theory +hep-th/9804201 Theory +hep-th/9804202 Theory +hep-th/9804209 Theory +hep-th/9804210 Theory +hep-th/9805001 Theory +hep-th/9805006 Theory +hep-th/9805007 Theory +hep-th/9805012 Theory +hep-th/9805013 Theory +hep-th/9805014 Theory +hep-th/9805015 Theory +hep-th/9805018 Theory +hep-th/9805019 Theory +hep-th/9805020 Theory +hep-th/9805023 Theory +hep-th/9805024 Theory +hep-th/9805026 Theory +hep-th/9805029 Theory +hep-th/9805031 Theory +hep-th/9805032 Theory +hep-th/9805035 Theory +hep-th/9805039 Theory +hep-th/9805042 Theory +hep-th/9805044 Theory +hep-th/9805045 Theory +hep-th/9805047 Theory +hep-th/9805049 Theory +hep-th/9805051 Theory +hep-th/9805054 Theory +hep-th/9805057 Theory +hep-th/9805058 Theory +hep-th/9805060 Theory +hep-th/9805061 Theory +hep-th/9805065 Theory +hep-th/9805067 Theory +hep-th/9805068 Theory +hep-th/9805069 Theory +hep-th/9805070 Theory +hep-th/9805071 Theory +hep-th/9805073 Theory +hep-th/9805074 Theory +hep-th/9805075 Theory +hep-th/9805076 Theory +hep-th/9805077 Theory +hep-th/9805078 Theory +hep-th/9805079 Theory +hep-th/9805081 Theory +hep-th/9805082 Theory +hep-th/9805084 Theory +hep-th/9805086 Theory +hep-th/9805087 Theory +hep-th/9805090 Theory +hep-th/9805091 Theory +hep-th/9805092 Theory +hep-th/9805094 Theory +hep-th/9805095 Theory +hep-th/9805096 Theory +hep-th/9805100 Theory +hep-th/9805102 Theory +hep-th/9805103 Theory +hep-th/9805106 Theory +hep-th/9805108 Theory +hep-th/9805109 Theory +hep-th/9805110 Theory +hep-th/9805113 Theory +hep-th/9805117 Theory +hep-th/9805119 Theory +hep-th/9805123 Theory +hep-th/9805124 Theory +hep-th/9805128 Theory +hep-th/9805130 Theory +hep-th/9805138 Theory +hep-th/9805140 Theory +hep-th/9805147 Theory +hep-th/9805148 Theory +hep-th/9805149 Theory +hep-th/9805150 Theory +hep-th/9805152 Theory +hep-th/9805157 Theory +hep-th/9805160 Theory +hep-th/9805163 Theory +hep-th/9805165 Theory +hep-th/9805167 Theory +hep-th/9805168 Theory +hep-th/9805170 Theory +hep-th/9805172 Theory +hep-th/9805174 Theory +hep-th/9805175 Theory +hep-th/9805179 Theory +hep-th/9805182 Theory +hep-th/9805184 Theory +hep-th/9805185 Theory +hep-th/9805187 Theory +hep-th/9805188 Theory +hep-th/9805191 Theory +hep-th/9805199 Theory +hep-th/9805200 Theory +hep-th/9805201 Theory +hep-th/9805203 Theory +hep-th/9805204 Theory +hep-th/9805206 Theory +hep-th/9805208 Theory +hep-th/9805209 Theory +hep-th/9805210 Theory +hep-th/9805215 Theory +hep-th/9805216 Theory +hep-th/9805219 Theory +hep-th/9805220 Theory +hep-th/9806004 Theory +hep-th/9806006 Theory +hep-th/9806007 Theory +hep-th/9806010 Theory +hep-th/9806011 Theory +hep-th/9806015 Theory +hep-th/9806018 Theory +hep-th/9806019 Theory +hep-th/9806021 Theory +hep-th/9806024 Theory +hep-th/9806027 Theory +hep-th/9806029 Theory +hep-th/9806030 Theory +hep-th/9806032 Theory +hep-th/9806034 Theory +hep-th/9806037 Theory +hep-th/9806041 Theory +hep-th/9806043 Theory +hep-th/9806045 Theory +hep-th/9806046 Theory +hep-th/9806048 Theory +hep-th/9806049 Theory +hep-th/9806050 Theory +hep-th/9806052 Theory +hep-th/9806054 Theory +hep-th/9806068 Theory +hep-th/9806069 Theory +hep-th/9806070 Theory +hep-th/9806075 Theory +hep-th/9806077 Theory +hep-th/9806078 Theory +hep-th/9806081 Theory +hep-th/9806082 Theory +hep-th/9806083 Theory +hep-th/9806084 Theory +hep-th/9806087 Theory +hep-th/9806088 Theory +hep-th/9806089 Theory +hep-th/9806091 Theory +hep-th/9806099 Theory +hep-th/9806102 Theory +hep-th/9806103 Theory +hep-th/9806108 Theory +hep-th/9806109 Theory +hep-th/9806110 Theory +hep-th/9806112 Theory +hep-th/9806114 Theory +hep-th/9806115 Theory +hep-th/9806117 Theory +hep-th/9806119 Theory +hep-th/9806120 Theory +hep-th/9806121 Theory +hep-th/9806122 Theory +hep-th/9806124 Theory +hep-th/9806127 Theory +hep-th/9806129 Theory +hep-th/9806134 Theory +hep-th/9806137 Theory +hep-th/9806139 Theory +hep-th/9806143 Theory +hep-th/9806144 Theory +hep-th/9806146 Theory +hep-th/9806147 Theory +hep-th/9806148 Theory +hep-th/9806150 Theory +hep-th/9806155 Theory +hep-th/9806156 Theory +hep-th/9806159 Theory +hep-th/9806160 Theory +hep-th/9806161 Theory +hep-th/9806162 Theory +hep-th/9806163 Theory +hep-th/9806165 Theory +hep-th/9806167 Theory +hep-th/9806168 Theory +hep-th/9806169 Theory +hep-th/9806170 Theory +hep-th/9806173 Theory +hep-th/9806176 Theory +hep-th/9806180 Theory +hep-th/9806182 Theory +hep-th/9806183 Theory +hep-th/9806184 Theory +hep-th/9806185 Theory +hep-th/9806186 Theory +hep-th/9806189 Theory +hep-th/9806190 Theory +hep-th/9806192 Theory +hep-th/9806193 Theory +hep-th/9806195 Theory +hep-th/9806196 Theory +hep-th/9806197 Theory +hep-th/9806202 Theory +hep-th/9806204 Theory +hep-th/9806206 Theory +hep-th/9806207 Theory +hep-th/9806208 Theory +hep-th/9806209 Theory +hep-th/9806210 Theory +hep-th/9806211 Theory +hep-th/9806212 Theory +hep-th/9806216 Theory +hep-th/9806218 Theory +hep-th/9806219 Theory +hep-th/9806221 Theory +hep-th/9806222 Theory +hep-th/9806224 Theory +hep-th/9806225 Theory +hep-th/9806229 Theory +hep-th/9806230 Theory +hep-th/9806232 Theory +hep-th/9806233 Theory +hep-th/9806234 Theory +hep-th/9806235 Theory +hep-th/9806237 Theory +hep-th/9806242 Theory +hep-th/9806243 Theory +hep-th/9806246 Theory +hep-th/9806247 Theory +hep-th/9806249 Theory +hep-th/9807001 Theory +hep-th/9807002 Theory +hep-th/9807003 Theory +hep-th/9807007 Theory +hep-th/9807008 Theory +hep-th/9807011 Theory +hep-th/9807012 Theory +hep-th/9807014 Theory +hep-th/9807015 Theory +hep-th/9807016 Theory +hep-th/9807017 Theory +hep-th/9807020 Theory +hep-th/9807021 Theory +hep-th/9807022 Theory +hep-th/9807024 Theory +hep-th/9807030 Theory +hep-th/9807031 Theory +hep-th/9807033 Theory +hep-th/9807034 Theory +hep-th/9807035 Theory +hep-th/9807040 Theory +hep-th/9807041 Theory +hep-th/9807043 Theory +hep-th/9807044 Theory +hep-th/9807045 Theory +hep-th/9807046 Theory +hep-th/9807047 Theory +hep-th/9807052 Theory +hep-th/9807053 Theory +hep-th/9807054 Theory +hep-th/9807055 Theory +hep-th/9807063 Theory +hep-th/9807064 Theory +hep-th/9807065 Theory +hep-th/9807066 Theory +hep-th/9807068 Theory +hep-th/9807069 Theory +hep-th/9807071 Theory +hep-th/9807072 Theory +hep-th/9807073 Theory +hep-th/9807074 Theory +hep-th/9807077 Theory +hep-th/9807078 Theory +hep-th/9807081 Theory +hep-th/9807082 Theory +hep-th/9807085 Theory +hep-th/9807088 Theory +hep-th/9807094 Theory +hep-th/9807095 Theory +hep-th/9807099 Theory +hep-th/9807106 Theory +hep-th/9807111 Theory +hep-th/9807113 Theory +hep-th/9807116 Theory +hep-th/9807117 Theory +hep-th/9807123 Theory +hep-th/9807128 Theory +hep-th/9807129 Theory +hep-th/9807133 Theory +hep-th/9807136 Theory +hep-th/9807137 Theory +hep-th/9807138 Theory +hep-th/9807140 Theory +hep-th/9807142 Theory +hep-th/9807143 Theory +hep-th/9807146 Theory +hep-th/9807151 Theory +hep-th/9807153 Theory +hep-th/9807155 Theory +hep-th/9807156 Theory +hep-th/9807160 Theory +hep-th/9807163 Theory +hep-th/9807169 Theory +hep-th/9807170 Theory +hep-th/9807178 Theory +hep-th/9807183 Theory +hep-th/9807185 Theory +hep-th/9807187 Theory +hep-th/9807191 Theory +hep-th/9807196 Theory +hep-th/9807197 Theory +hep-th/9807199 Theory +hep-th/9807202 Theory +hep-th/9807207 Theory +hep-th/9807208 Theory +hep-th/9807210 Theory +hep-th/9807211 Theory +hep-th/9807216 Theory +hep-th/9807217 Theory +hep-th/9807220 Theory +hep-th/9807223 Theory +hep-th/9807226 Theory +hep-th/9807230 Theory +hep-th/9807231 Theory +hep-th/9807232 Theory +hep-th/9807236 Theory +hep-th/9807238 Theory +hep-th/9807239 Theory +hep-th/9808004 Theory +hep-th/9808005 Theory +hep-th/9808007 Theory +hep-th/9808008 Theory +hep-th/9808012 Theory +hep-th/9808017 Theory +hep-th/9808022 Theory +hep-th/9808025 Theory +hep-th/9808026 Theory +hep-th/9808029 Theory +hep-th/9808032 Theory +hep-th/9808034 Theory +hep-th/9808035 Theory +hep-th/9808038 Theory +hep-th/9808039 Theory +hep-th/9808040 Theory +hep-th/9808042 Theory +hep-th/9808045 Theory +hep-th/9808046 Theory +hep-th/9808048 Theory +hep-th/9808052 Theory +hep-th/9808053 Theory +hep-th/9808054 Theory +hep-th/9808055 Theory +hep-th/9808056 Theory +hep-th/9808059 Theory +hep-th/9808060 Theory +hep-th/9808061 Theory +hep-th/9808062 Theory +hep-th/9808067 Theory +hep-th/9808068 Theory +hep-th/9808069 Theory +hep-th/9808070 Theory +hep-th/9808071 Theory +hep-th/9808072 Theory +hep-th/9808074 Theory +hep-th/9808078 Theory +hep-th/9808084 Theory +hep-th/9808085 Theory +hep-th/9808086 Theory +hep-th/9808088 Theory +hep-th/9808093 Theory +hep-th/9808094 Theory +hep-th/9808095 Theory +hep-th/9808096 Theory +hep-th/9808107 Theory +hep-th/9808110 Theory +hep-th/9808111 Theory +hep-th/9808113 Theory +hep-th/9808114 Theory +hep-th/9808117 Theory +hep-th/9808122 Theory +hep-th/9808123 Theory +hep-th/9808130 Theory +hep-th/9808131 Theory +hep-th/9808132 Theory +hep-th/9808137 Theory +hep-th/9808138 Theory +hep-th/9808140 Theory +hep-th/9808141 Theory +hep-th/9808142 Theory +hep-th/9808143 Theory +hep-th/9808145 Theory +hep-th/9808146 Theory +hep-th/9808149 Theory +hep-th/9808151 Theory +hep-th/9808152 Theory +hep-th/9808155 Theory +hep-th/9808157 Theory +hep-th/9808160 Theory +hep-th/9808162 Theory +hep-th/9808163 Theory +hep-th/9808164 Theory +hep-th/9808165 Theory +hep-th/9808168 Theory +hep-th/9808169 Theory +hep-th/9808173 Theory +hep-th/9808178 Theory +hep-th/9808179 Theory +hep-th/9808181 Theory +hep-th/9808182 Theory +hep-th/9808185 Theory +hep-th/9808188 Theory +hep-th/9808191 Theory +hep-th/9808193 Theory +hep-th/9809001 Theory +hep-th/9809002 Theory +hep-th/9809003 Theory +hep-th/9809004 Theory +hep-th/9809006 Theory +hep-th/9809010 Theory +hep-th/9809014 Theory +hep-th/9809019 Theory +hep-th/9809020 Theory +hep-th/9809023 Theory +hep-th/9809025 Theory +hep-th/9809027 Theory +hep-th/9809028 Theory +hep-th/9809029 Theory +hep-th/9809030 Theory +hep-th/9809036 Theory +hep-th/9809043 Theory +hep-th/9809045 Theory +hep-th/9809046 Theory +hep-th/9809048 Theory +hep-th/9809049 Theory +hep-th/9809050 Theory +hep-th/9809051 Theory +hep-th/9809052 Theory +hep-th/9809057 Theory +hep-th/9809060 Theory +hep-th/9809062 Theory +hep-th/9809066 Theory +hep-th/9809067 Theory +hep-th/9809068 Theory +hep-th/9809070 Theory +hep-th/9809071 Theory +hep-th/9809074 Theory +hep-th/9809076 Theory +hep-th/9809078 Theory +hep-th/9809079 Theory +hep-th/9809081 Theory +hep-th/9809082 Theory +hep-th/9809088 Theory +hep-th/9809089 Theory +hep-th/9809093 Theory +hep-th/9809094 Theory +hep-th/9809095 Theory +hep-th/9809097 Theory +hep-th/9809100 Theory +hep-th/9809101 Theory +hep-th/9809104 Theory +hep-th/9809105 Theory +hep-th/9809107 Theory +hep-th/9809108 Theory +hep-th/9809109 Theory +hep-th/9809111 Theory +hep-th/9809112 Theory +hep-th/9809115 Theory +hep-th/9809118 Theory +hep-th/9809119 Theory +hep-th/9809121 Theory +hep-th/9809122 Theory +hep-th/9809124 Theory +hep-th/9809125 Theory +hep-th/9809126 Theory +hep-th/9809129 Theory +hep-th/9809133 Theory +hep-th/9809136 Theory +hep-th/9809139 Theory +hep-th/9809140 Theory +hep-th/9809141 Theory +hep-th/9809144 Theory +hep-th/9809147 Theory +hep-th/9809149 Theory +hep-th/9809151 Theory +hep-th/9809157 Theory +hep-th/9809164 Theory +hep-th/9809165 Theory +hep-th/9809168 Theory +hep-th/9809178 Theory +hep-th/9809181 Theory +hep-th/9809182 Theory +hep-th/9809183 Theory +hep-th/9809185 Theory +hep-th/9809186 Theory +hep-th/9809192 Theory +hep-th/9809194 Theory +hep-th/9809195 Theory +hep-th/9809198 Theory +hep-th/9809199 Theory +hep-th/9809202 Theory +hep-th/9809203 Theory +hep-th/9809206 Theory +hep-th/9809208 Theory +hep-th/9809209 Theory +hep-th/9809210 Theory +hep-th/9809211 Theory +hep-th/9809213 Theory +hep-th/9810004 Theory +hep-th/9810005 Theory +hep-th/9810006 Theory +hep-th/9810010 Theory +hep-th/9810013 Theory +hep-th/9810019 Theory +hep-th/9810022 Theory +hep-th/9810023 Theory +hep-th/9810024 Theory +hep-th/9810029 Theory +hep-th/9810035 Theory +hep-th/9810038 Theory +hep-th/9810039 Theory +hep-th/9810040 Theory +hep-th/9810041 Theory +hep-th/9810042 Theory +hep-th/9810044 Theory +hep-th/9810046 Theory +hep-th/9810047 Theory +hep-th/9810050 Theory +hep-th/9810051 Theory +hep-th/9810061 Theory +hep-th/9810067 Theory +hep-th/9810068 Theory +hep-th/9810069 Theory +hep-th/9810072 Theory +hep-th/9810074 Theory +hep-th/9810081 Theory +hep-th/9810082 Theory +hep-th/9810088 Theory +hep-th/9810089 Theory +hep-th/9810090 Theory +hep-th/9810092 Theory +hep-th/9810095 Theory +hep-th/9810096 Theory +hep-th/9810097 Theory +hep-th/9810098 Theory +hep-th/9810099 Theory +hep-th/9810105 Theory +hep-th/9810106 Theory +hep-th/9810109 Theory +hep-th/9810110 Theory +hep-th/9810115 Theory +hep-th/9810117 Theory +hep-th/9810119 Theory +hep-th/9810125 Theory +hep-th/9810127 Theory +hep-th/9810128 Theory +hep-th/9810132 Theory +hep-th/9810134 Theory +hep-th/9810139 Theory +hep-th/9810140 Theory +hep-th/9810150 Theory +hep-th/9810152 Theory +hep-th/9810153 Theory +hep-th/9810154 Theory +hep-th/9810156 Theory +hep-th/9810165 Theory +hep-th/9810167 Theory +hep-th/9810169 Theory +hep-th/9810170 Theory +hep-th/9810171 Theory +hep-th/9810172 Theory +hep-th/9810175 Theory +hep-th/9810176 Theory +hep-th/9810180 Theory +hep-th/9810182 Theory +hep-th/9810184 Theory +hep-th/9810189 Theory +hep-th/9810191 Theory +hep-th/9810194 Theory +hep-th/9810195 Theory +hep-th/9810196 Theory +hep-th/9810199 Theory +hep-th/9810202 Theory +hep-th/9810205 Theory +hep-th/9810207 Theory +hep-th/9810208 Theory +hep-th/9810209 Theory +hep-th/9810210 Theory +hep-th/9810211 Theory +hep-th/9810214 Theory +hep-th/9810216 Theory +hep-th/9810218 Theory +hep-th/9810219 Theory +hep-th/9810220 Theory +hep-th/9810225 Theory +hep-th/9810228 Theory +hep-th/9810235 Theory +hep-th/9810236 Theory +hep-th/9810237 Theory +hep-th/9810238 Theory +hep-th/9810239 Theory +hep-th/9810241 Theory +hep-th/9810242 Theory +hep-th/9810243 Theory +hep-th/9810244 Theory +hep-th/9810245 Theory +hep-th/9810248 Theory +hep-th/9810249 Theory +hep-th/9810252 Theory +hep-th/9810253 Theory +hep-th/9810256 Theory +hep-th/9810257 Theory +hep-th/9811002 Theory +hep-th/9811004 Theory +hep-th/9811005 Theory +hep-th/9811010 Theory +hep-th/9811011 Theory +hep-th/9811014 Theory +hep-th/9811023 Theory +hep-th/9811025 Theory +hep-th/9811028 Theory +hep-th/9811029 Theory +hep-th/9811030 Theory +hep-th/9811031 Theory +hep-th/9811032 Theory +hep-th/9811036 Theory +hep-th/9811038 Theory +hep-th/9811043 Theory +hep-th/9811044 Theory +hep-th/9811047 Theory +hep-th/9811050 Theory +hep-th/9811051 Theory +hep-th/9811053 Theory +hep-th/9811057 Theory +hep-th/9811064 Theory +hep-th/9811065 Theory +hep-th/9811066 Theory +hep-th/9811070 Theory +hep-th/9811073 Theory +hep-th/9811075 Theory +hep-th/9811077 Theory +hep-th/9811078 Theory +hep-th/9811079 Theory +hep-th/9811084 Theory +hep-th/9811085 Theory +hep-th/9811087 Theory +hep-th/9811088 Theory +hep-th/9811089 Theory +hep-th/9811090 Theory +hep-th/9811091 Theory +hep-th/9811094 Theory +hep-th/9811096 Theory +hep-th/9811097 Theory +hep-th/9811099 Theory +hep-th/9811100 Theory +hep-th/9811102 Theory +hep-th/9811106 Theory +hep-th/9811108 Theory +hep-th/9811109 Theory +hep-th/9811110 Theory +hep-th/9811111 Theory +hep-th/9811112 Theory +hep-th/9811114 Theory +hep-th/9811120 Theory +hep-th/9811128 Theory +hep-th/9811130 Theory +hep-th/9811138 Theory +hep-th/9811145 Theory +hep-th/9811148 Theory +hep-th/9811149 Theory +hep-th/9811150 Theory +hep-th/9811154 Theory +hep-th/9811155 Theory +hep-th/9811157 Theory +hep-th/9811158 Theory +hep-th/9811161 Theory +hep-th/9811162 Theory +hep-th/9811165 Theory +hep-th/9811166 Theory +hep-th/9811167 Theory +hep-th/9811168 Theory +hep-th/9811169 Theory +hep-th/9811170 Theory +hep-th/9811171 Theory +hep-th/9811172 Theory +hep-th/9811176 Theory +hep-th/9811178 Theory +hep-th/9811182 Theory +hep-th/9811183 Theory +hep-th/9811185 Theory +hep-th/9811186 Theory +hep-th/9811187 Theory +hep-th/9811188 Theory +hep-th/9811189 Theory +hep-th/9811190 Theory +hep-th/9811193 Theory +hep-th/9811196 Theory +hep-th/9811198 Theory +hep-th/9811201 Theory +hep-th/9811202 Theory +hep-th/9811204 Theory +hep-th/9811205 Theory +hep-th/9811206 Theory +hep-th/9811209 Theory +hep-th/9811211 Theory +hep-th/9811212 Theory +hep-th/9811214 Theory +hep-th/9811215 Theory +hep-th/9811216 Theory +hep-th/9811220 Theory +hep-th/9811221 Theory +hep-th/9811222 Theory +hep-th/9811223 Theory +hep-th/9811225 Theory +hep-th/9811230 Theory +hep-th/9811234 Theory +hep-th/9811235 Theory +hep-th/9811237 Theory +hep-th/9811238 Theory +hep-th/9811240 Theory +hep-th/9811241 Theory +hep-th/9811245 Theory +hep-th/9811246 Theory +hep-th/9811247 Theory +hep-th/9811248 Theory +hep-th/9811250 Theory +hep-th/9811251 Theory +hep-th/9811252 Theory +hep-th/9811254 Theory +hep-th/9811256 Theory +hep-th/9812001 Theory +hep-th/9812002 Theory +hep-th/9812003 Theory +hep-th/9812005 Theory +hep-th/9812007 Theory +hep-th/9812009 Theory +hep-th/9812010 Theory +hep-th/9812014 Theory +hep-th/9812019 Theory +hep-th/9812021 Theory +hep-th/9812023 Theory +hep-th/9812025 Theory +hep-th/9812026 Theory +hep-th/9812027 Theory +hep-th/9812030 Theory +hep-th/9812031 Theory +hep-th/9812033 Theory +hep-th/9812035 Theory +hep-th/9812037 Theory +hep-th/9812039 Theory +hep-th/9812043 Theory +hep-th/9812044 Theory +hep-th/9812046 Theory +hep-th/9812047 Theory +hep-th/9812048 Theory +hep-th/9812053 Theory +hep-th/9812055 Theory +hep-th/9812056 Theory +hep-th/9812057 Theory +hep-th/9812064 Theory +hep-th/9812065 Theory +hep-th/9812069 Theory +hep-th/9812071 Theory +hep-th/9812073 Theory +hep-th/9812076 Theory +hep-th/9812077 Theory +hep-th/9812078 Theory +hep-th/9812084 Theory +hep-th/9812088 Theory +hep-th/9812090 Theory +hep-th/9812092 Theory +hep-th/9812093 Theory +hep-th/9812094 Theory +hep-th/9812096 Theory +hep-th/9812097 Theory +hep-th/9812099 Theory +hep-th/9812101 Theory +hep-th/9812106 Theory +hep-th/9812108 Theory +hep-th/9812109 Theory +hep-th/9812110 Theory +hep-th/9812113 Theory +hep-th/9812114 Theory +hep-th/9812115 Theory +hep-th/9812120 Theory +hep-th/9812121 Theory +hep-th/9812122 Theory +hep-th/9812129 Theory +hep-th/9812130 Theory +hep-th/9812132 Theory +hep-th/9812133 Theory +hep-th/9812134 Theory +hep-th/9812138 Theory +hep-th/9812139 Theory +hep-th/9812140 Theory +hep-th/9812141 Theory +hep-th/9812142 Theory +hep-th/9812147 Theory +hep-th/9812149 Theory +hep-th/9812153 Theory +hep-th/9812154 Theory +hep-th/9812155 Theory +hep-th/9812157 Theory +hep-th/9812158 Theory +hep-th/9812159 Theory +hep-th/9812163 Theory +hep-th/9812165 Theory +hep-th/9812166 Theory +hep-th/9812170 Theory +hep-th/9812174 Theory +hep-th/9812175 Theory +hep-th/9812176 Theory +hep-th/9812177 Theory +hep-th/9812183 Theory +hep-th/9812184 Theory +hep-th/9812185 Theory +hep-th/9812188 Theory +hep-th/9812192 Theory +hep-th/9812194 Theory +hep-th/9812195 Theory +hep-th/9812197 Theory +hep-th/9812198 Theory +hep-th/9812199 Theory +hep-th/9812200 Theory +hep-th/9812202 Theory +hep-th/9812206 Theory +hep-th/9812207 Theory +hep-th/9812210 Theory +hep-th/9812211 Theory +hep-th/9812219 Theory +hep-th/9812220 Theory +hep-th/9812223 Theory +hep-th/9812225 Theory +hep-th/9812226 Theory +hep-th/9812227 Theory +hep-th/9812229 Theory +hep-th/9812231 Theory +hep-th/9812232 Theory +hep-th/9812233 Theory +hep-th/9812235 Theory +hep-th/9812237 Theory +hep-th/9812238 Theory +hep-th/9812241 Theory +hep-th/9812243 Theory +hep-th/9812245 Theory +hep-th/9812248 Theory +hep-th/9812249 Theory +hep-th/9901006 Theory +hep-th/9901007 Theory +hep-th/9901009 Theory +hep-th/9901010 Theory +hep-th/9901012 Theory +hep-th/9901016 Theory +hep-th/9901022 Theory +hep-th/9901023 Theory +hep-th/9901027 Theory +hep-th/9901032 Theory +hep-th/9901033 Theory +hep-th/9901034 Theory +hep-th/9901036 Theory +hep-th/9901038 Theory +hep-th/9901039 Theory +hep-th/9901040 Theory +hep-th/9901042 Theory +hep-th/9901044 Theory +hep-th/9901046 Theory +hep-th/9901049 Theory +hep-th/9901053 Theory +hep-th/9901055 Theory +hep-th/9901058 Theory +hep-th/9901059 Theory +hep-th/9901061 Theory +hep-th/9901062 Theory +hep-th/9901068 Theory +hep-th/9901074 Theory +hep-th/9901075 Theory +hep-th/9901077 Theory +hep-th/9901078 Theory +hep-th/9901079 Theory +hep-th/9901084 Theory +hep-th/9901085 Theory +hep-th/9901087 Theory +hep-th/9901089 Theory +hep-th/9901090 Theory +hep-th/9901091 Theory +hep-th/9901092 Theory +hep-th/9901093 Theory +hep-th/9901095 Theory +hep-th/9901096 Theory +hep-th/9901100 Theory +hep-th/9901101 Theory +hep-th/9901104 Theory +hep-th/9901106 Theory +hep-th/9901107 Theory +hep-th/9901108 Theory +hep-th/9901111 Theory +hep-th/9901113 Theory +hep-th/9901114 Theory +hep-th/9901115 Theory +hep-th/9901116 Theory +hep-th/9901118 Theory +hep-th/9901123 Theory +hep-th/9901124 Theory +hep-th/9901126 Theory +hep-th/9901130 Theory +hep-th/9901136 Theory +hep-th/9901140 Theory +hep-th/9901141 Theory +hep-th/9901142 Theory +hep-th/9901143 Theory +hep-th/9901145 Theory +hep-th/9901147 Theory +hep-th/9901148 Theory +hep-th/9901149 Theory +hep-th/9901153 Theory +hep-th/9901155 Theory +hep-th/9901156 Theory +hep-th/9901158 Theory +hep-th/9901159 Theory +hep-th/9901160 Theory +hep-th/9901164 Theory +hep-th/9901165 Theory +hep-th/9902001 Theory +hep-th/9902005 Theory +hep-th/9902006 Theory +hep-th/9902008 Theory +hep-th/9902010 Theory +hep-th/9902011 Theory +hep-th/9902012 Theory +hep-th/9902014 Theory +hep-th/9902017 Theory +hep-th/9902024 Theory +hep-th/9902026 Theory +hep-th/9902028 Theory +hep-th/9902038 Theory +hep-th/9902039 Theory +hep-th/9902040 Theory +hep-th/9902041 Theory +hep-th/9902043 Theory +hep-th/9902044 Theory +hep-th/9902046 Theory +hep-th/9902047 Theory +hep-th/9902048 Theory +hep-th/9902049 Theory +hep-th/9902051 Theory +hep-th/9902052 Theory +hep-th/9902053 Theory +hep-th/9902057 Theory +hep-th/9902058 Theory +hep-th/9902059 Theory +hep-th/9902064 Theory +hep-th/9902065 Theory +hep-th/9902066 Theory +hep-th/9902068 Theory +hep-th/9902069 Theory +hep-th/9902070 Theory +hep-th/9902075 Theory +hep-th/9902077 Theory +hep-th/9902079 Theory +hep-th/9902080 Theory +hep-th/9902082 Theory +hep-th/9902085 Theory +hep-th/9902087 Theory +hep-th/9902088 Theory +hep-th/9902089 Theory +hep-th/9902093 Theory +hep-th/9902099 Theory +hep-th/9902100 Theory +hep-th/9902101 Theory +hep-th/9902104 Theory +hep-th/9902107 Theory +hep-th/9902110 Theory +hep-th/9902111 Theory +hep-th/9902112 Theory +hep-th/9902113 Theory +hep-th/9902117 Theory +hep-th/9902118 Theory +hep-th/9902121 Theory +hep-th/9902124 Theory +hep-th/9902125 Theory +hep-th/9902126 Theory +hep-th/9902127 Theory +hep-th/9902129 Theory +hep-th/9902132 Theory +hep-th/9902133 Theory +hep-th/9902140 Theory +hep-th/9902141 Theory +hep-th/9902142 Theory +hep-th/9902145 Theory +hep-th/9902146 Theory +hep-th/9902150 Theory +hep-th/9902153 Theory +hep-th/9902154 Theory +hep-th/9902159 Theory +hep-th/9902160 Theory +hep-th/9902161 Theory +hep-th/9902162 Theory +hep-th/9902164 Theory +hep-th/9902165 Theory +hep-th/9902166 Theory +hep-th/9902168 Theory +hep-th/9902169 Theory +hep-th/9902170 Theory +hep-th/9902178 Theory +hep-th/9902181 Theory +hep-th/9902185 Theory +hep-th/9902186 Theory +hep-th/9902187 Theory +hep-th/9902188 Theory +hep-th/9902189 Theory +hep-th/9902195 Theory +hep-th/9902196 Theory +hep-th/9902197 Theory +hep-th/9902199 Theory +hep-th/9902203 Theory +hep-th/9902204 Theory +hep-th/9902207 Theory +hep-th/9902208 Theory +hep-th/9902210 Theory +hep-th/9903004 Theory +hep-th/9903009 Theory +hep-th/9903016 Theory +hep-th/9903018 Theory +hep-th/9903022 Theory +hep-th/9903025 Theory +hep-th/9903027 Theory +hep-th/9903029 Theory +hep-th/9903031 Theory +hep-th/9903033 Theory +hep-th/9903037 Theory +hep-th/9903038 Theory +hep-th/9903041 Theory +hep-th/9903042 Theory +hep-th/9903044 Theory +hep-th/9903045 Theory +hep-th/9903046 Theory +hep-th/9903047 Theory +hep-th/9903048 Theory +hep-th/9903050 Theory +hep-th/9903051 Theory +hep-th/9903054 Theory +hep-th/9903059 Theory +hep-th/9903061 Theory +hep-th/9903065 Theory +hep-th/9903067 Theory +hep-th/9903070 Theory +hep-th/9903071 Theory +hep-th/9903072 Theory +hep-th/9903075 Theory +hep-th/9903077 Theory +hep-th/9903078 Theory +hep-th/9903080 Theory +hep-th/9903082 Theory +hep-th/9903083 Theory +hep-th/9903085 Theory +hep-th/9903086 Theory +hep-th/9903090 Theory +hep-th/9903094 Theory +hep-th/9903095 Theory +hep-th/9903096 Theory +hep-th/9903100 Theory +hep-th/9903102 Theory +hep-th/9903103 Theory +hep-th/9903104 Theory +hep-th/9903105 Theory +hep-th/9903106 Theory +hep-th/9903107 Theory +hep-th/9903109 Theory +hep-th/9903112 Theory +hep-th/9903114 Theory +hep-th/9903115 Theory +hep-th/9903119 Theory +hep-th/9903122 Theory +hep-th/9903124 Theory +hep-th/9903125 Theory +hep-th/9903127 Theory +hep-th/9903129 Theory +hep-th/9903132 Theory +hep-th/9903134 Theory +hep-th/9903135 Theory +hep-th/9903136 Theory +hep-th/9903137 Theory +hep-th/9903138 Theory +hep-th/9903140 Theory +hep-th/9903142 Theory +hep-th/9903143 Theory +hep-th/9903145 Theory +hep-th/9903149 Theory +hep-th/9903152 Theory +hep-th/9903153 Theory +hep-th/9903154 Theory +hep-th/9903155 Theory +hep-th/9903157 Theory +hep-th/9903158 Theory +hep-th/9903159 Theory +hep-th/9903161 Theory +hep-th/9903162 Theory +hep-th/9903167 Theory +hep-th/9903168 Theory +hep-th/9903170 Theory +hep-th/9903173 Theory +hep-th/9903181 Theory +hep-th/9903186 Theory +hep-th/9903187 Theory +hep-th/9903188 Theory +hep-th/9903190 Theory +hep-th/9903191 Theory +hep-th/9903192 Theory +hep-th/9903193 Theory +hep-th/9903197 Theory +hep-th/9903199 Theory +hep-th/9903200 Theory +hep-th/9903202 Theory +hep-th/9903204 Theory +hep-th/9903205 Theory +hep-th/9903207 Theory +hep-th/9903208 Theory +hep-th/9903211 Theory +hep-th/9903216 Theory +hep-th/9903219 Theory +hep-th/9903222 Theory +hep-th/9903223 Theory +hep-th/9903229 Theory +hep-th/9903231 Theory +hep-th/9903233 Theory +hep-th/9903234 Theory +hep-th/9903236 Theory +hep-th/9903239 Theory +hep-th/9903241 Theory +hep-th/9903242 Theory +hep-th/9903246 Theory +hep-th/9903248 Theory +hep-th/9903257 Theory +hep-th/9903258 Theory +hep-th/9903259 Theory +hep-th/9903263 Theory +hep-th/9903264 Theory +hep-th/9903269 Theory +hep-th/9904002 Theory +hep-th/9904003 Theory +hep-th/9904007 Theory +hep-th/9904009 Theory +hep-th/9904010 Theory +hep-th/9904012 Theory +hep-th/9904013 Theory +hep-th/9904015 Theory +hep-th/9904016 Theory +hep-th/9904022 Theory +hep-th/9904023 Theory +hep-th/9904024 Theory +hep-th/9904026 Theory +hep-th/9904027 Theory +hep-th/9904029 Theory +hep-th/9904040 Theory +hep-th/9904041 Theory +hep-th/9904043 Theory +hep-th/9904046 Theory +hep-th/9904052 Theory +hep-th/9904054 Theory +hep-th/9904056 Theory +hep-th/9904058 Theory +hep-th/9904061 Theory +hep-th/9904062 Theory +hep-th/9904063 Theory +hep-th/9904066 Theory +hep-th/9904068 Theory +hep-th/9904071 Theory +hep-th/9904074 Theory +hep-th/9904078 Theory +hep-th/9904083 Theory +hep-th/9904085 Theory +hep-th/9904087 Theory +hep-th/9904093 Theory +hep-th/9904094 Theory +hep-th/9904096 Theory +hep-th/9904097 Theory +hep-th/9904101 Theory +hep-th/9904102 Theory +hep-th/9904108 Theory +hep-th/9904109 Theory +hep-th/9904110 Theory +hep-th/9904112 Theory +hep-th/9904114 Theory +hep-th/9904116 Theory +hep-th/9904119 Theory +hep-th/9904122 Theory +hep-th/9904124 Theory +hep-th/9904131 Theory +hep-th/9904132 Theory +hep-th/9904134 Theory +hep-th/9904139 Theory +hep-th/9904141 Theory +hep-th/9904142 Theory +hep-th/9904143 Theory +hep-th/9904144 Theory +hep-th/9904148 Theory +hep-th/9904149 Theory +hep-th/9904150 Theory +hep-th/9904151 Theory +hep-th/9904152 Theory +hep-th/9904154 Theory +hep-th/9904155 Theory +hep-th/9904156 Theory +hep-th/9904161 Theory +hep-th/9904162 Theory +hep-th/9904164 Theory +hep-th/9904166 Theory +hep-th/9904167 Theory +hep-th/9904169 Theory +hep-th/9904172 Theory +hep-th/9904174 Theory +hep-th/9904175 Theory +hep-th/9904177 Theory +hep-th/9904179 Theory +hep-th/9904180 Theory +hep-th/9904181 Theory +hep-th/9904183 Theory +hep-th/9904184 Theory +hep-th/9904187 Theory +hep-th/9904188 Theory +hep-th/9904189 Theory +hep-th/9904190 Theory +hep-th/9904192 Theory +hep-th/9904193 Theory +hep-th/9904194 Theory +hep-th/9904195 Theory +hep-th/9904196 Theory +hep-th/9904198 Theory +hep-th/9904199 Theory +hep-th/9904203 Theory +hep-th/9904204 Theory +hep-th/9904207 Theory +hep-th/9904208 Theory +hep-th/9904212 Theory +hep-th/9904218 Theory +hep-th/9905002 Theory +hep-th/9905004 Theory +hep-th/9905007 Theory +hep-th/9905008 Theory +hep-th/9905009 Theory +hep-th/9905011 Theory +hep-th/9905014 Theory +hep-th/9905023 Theory +hep-th/9905025 Theory +hep-th/9905026 Theory +hep-th/9905029 Theory +hep-th/9905031 Theory +hep-th/9905033 Theory +hep-th/9905034 Theory +hep-th/9905037 Theory +hep-th/9905039 Theory +hep-th/9905042 Theory +hep-th/9905043 Theory +hep-th/9905048 Theory +hep-th/9905050 Theory +hep-th/9905051 Theory +hep-th/9905056 Theory +hep-th/9905057 Theory +hep-th/9905059 Theory +hep-th/9905061 Theory +hep-th/9905062 Theory +hep-th/9905063 Theory +hep-th/9905066 Theory +hep-th/9905069 Theory +hep-th/9905070 Theory +hep-th/9905073 Theory +hep-th/9905075 Theory +hep-th/9905076 Theory +hep-th/9905078 Theory +hep-th/9905079 Theory +hep-th/9905082 Theory +hep-th/9905083 Theory +hep-th/9905084 Theory +hep-th/9905086 Theory +hep-th/9905087 Theory +hep-th/9905089 Theory +hep-th/9905093 Theory +hep-th/9905094 Theory +hep-th/9905097 Theory +hep-th/9905103 Theory +hep-th/9905109 Theory +hep-th/9905110 Theory +hep-th/9905113 Theory +hep-th/9905114 Theory +hep-th/9905116 Theory +hep-th/9905117 Theory +hep-th/9905118 Theory +hep-th/9905122 Theory +hep-th/9905127 Theory +hep-th/9905129 Theory +hep-th/9905130 Theory +hep-th/9905132 Theory +hep-th/9905134 Theory +hep-th/9905135 Theory +hep-th/9905136 Theory +hep-th/9905139 Theory +hep-th/9905140 Theory +hep-th/9905141 Theory +hep-th/9905150 Theory +hep-th/9905159 Theory +hep-th/9905163 Theory +hep-th/9905164 Theory +hep-th/9905165 Theory +hep-th/9905166 Theory +hep-th/9905170 Theory +hep-th/9905172 Theory +hep-th/9905175 Theory +hep-th/9905176 Theory +hep-th/9905180 Theory +hep-th/9905183 Theory +hep-th/9905184 Theory +hep-th/9905187 Theory +hep-th/9905188 Theory +hep-th/9905189 Theory +hep-th/9905192 Theory +hep-th/9905193 Theory +hep-th/9905194 Theory +hep-th/9905195 Theory +hep-th/9905198 Theory +hep-th/9905199 Theory +hep-th/9905201 Theory +hep-th/9905203 Theory +hep-th/9905205 Theory +hep-th/9905206 Theory +hep-th/9905207 Theory +hep-th/9905209 Theory +hep-th/9905211 Theory +hep-th/9905216 Theory +hep-th/9905217 Theory +hep-th/9905221 Theory +hep-th/9905222 Theory +hep-th/9905228 Theory +hep-th/9905231 Theory +hep-th/9906001 Theory +hep-th/9906002 Theory +hep-th/9906004 Theory +hep-th/9906006 Theory +hep-th/9906007 Theory +hep-th/9906008 Theory +hep-th/9906011 Theory +hep-th/9906012 Theory +hep-th/9906013 Theory +hep-th/9906014 Theory +hep-th/9906015 Theory +hep-th/9906020 Theory +hep-th/9906022 Theory +hep-th/9906026 Theory +hep-th/9906030 Theory +hep-th/9906032 Theory +hep-th/9906033 Theory +hep-th/9906036 Theory +hep-th/9906040 Theory +hep-th/9906041 Theory +hep-th/9906042 Theory +hep-th/9906047 Theory +hep-th/9906050 Theory +hep-th/9906053 Theory +hep-th/9906054 Theory +hep-th/9906060 Theory +hep-th/9906061 Theory +hep-th/9906062 Theory +hep-th/9906065 Theory +hep-th/9906067 Theory +hep-th/9906069 Theory +hep-th/9906072 Theory +hep-th/9906073 Theory +hep-th/9906074 Theory +hep-th/9906077 Theory +hep-th/9906079 Theory +hep-th/9906081 Theory +hep-th/9906084 Theory +hep-th/9906090 Theory +hep-th/9906092 Theory +hep-th/9906093 Theory +hep-th/9906100 Theory +hep-th/9906102 Theory +hep-th/9906103 Theory +hep-th/9906109 Theory +hep-th/9906113 Theory +hep-th/9906116 Theory +hep-th/9906117 Theory +hep-th/9906121 Theory +hep-th/9906123 Theory +hep-th/9906125 Theory +hep-th/9906127 Theory +hep-th/9906128 Theory +hep-th/9906129 Theory +hep-th/9906131 Theory +hep-th/9906132 Theory +hep-th/9906133 Theory +hep-th/9906138 Theory +hep-th/9906139 Theory +hep-th/9906143 Theory +hep-th/9906144 Theory +hep-th/9906149 Theory +hep-th/9906150 Theory +hep-th/9906151 Theory +hep-th/9906153 Theory +hep-th/9906154 Theory +hep-th/9906156 Theory +hep-th/9906160 Theory +hep-th/9906163 Theory +hep-th/9906164 Theory +hep-th/9906165 Theory +hep-th/9906167 Theory +hep-th/9906169 Theory +hep-th/9906170 Theory +hep-th/9906171 Theory +hep-th/9906172 Theory +hep-th/9906177 Theory +hep-th/9906179 Theory +hep-th/9906181 Theory +hep-th/9906182 Theory +hep-th/9906183 Theory +hep-th/9906187 Theory +hep-th/9906188 Theory +hep-th/9906189 Theory +hep-th/9906192 Theory +hep-th/9906193 Theory +hep-th/9906194 Theory +hep-th/9906195 Theory +hep-th/9906196 Theory +hep-th/9906197 Theory +hep-th/9906200 Theory +hep-th/9906202 Theory +hep-th/9906204 Theory +hep-th/9906205 Theory +hep-th/9906210 Theory +hep-th/9906211 Theory +hep-th/9906212 Theory +hep-th/9906213 Theory +hep-th/9906214 Theory +hep-th/9906215 Theory +hep-th/9906217 Theory +hep-th/9906218 Theory +hep-th/9906219 Theory +hep-th/9906220 Theory +hep-th/9906222 Theory +hep-th/9906223 Theory +hep-th/9906224 Theory +hep-th/9906225 Theory +hep-th/9906226 Theory +hep-th/9906229 Theory +hep-th/9906230 Theory +hep-th/9906234 Theory +hep-th/9906235 Theory +hep-th/9906236 Theory +hep-th/9906238 Theory +hep-th/9906239 Theory +hep-th/9906240 Theory +hep-th/9906241 Theory +hep-th/9906242 Theory +hep-th/9906246 Theory +hep-th/9906247 Theory +hep-th/9907004 Theory +hep-th/9907006 Theory +hep-th/9907007 Theory +hep-th/9907008 Theory +hep-th/9907011 Theory +hep-th/9907014 Theory +hep-th/9907017 Theory +hep-th/9907018 Theory +hep-th/9907019 Theory +hep-th/9907025 Theory +hep-th/9907029 Theory +hep-th/9907030 Theory +hep-th/9907031 Theory +hep-th/9907032 Theory +hep-th/9907036 Theory +hep-th/9907037 Theory +hep-th/9907039 Theory +hep-th/9907043 Theory +hep-th/9907044 Theory +hep-th/9907046 Theory +hep-th/9907047 Theory +hep-th/9907050 Theory +hep-th/9907057 Theory +hep-th/9907058 Theory +hep-th/9907065 Theory +hep-th/9907068 Theory +hep-th/9907069 Theory +hep-th/9907071 Theory +hep-th/9907072 Theory +hep-th/9907073 Theory +hep-th/9907079 Theory +hep-th/9907082 Theory +hep-th/9907083 Theory +hep-th/9907085 Theory +hep-th/9907090 Theory +hep-th/9907091 Theory +hep-th/9907093 Theory +hep-th/9907094 Theory +hep-th/9907095 Theory +hep-th/9907096 Theory +hep-th/9907098 Theory +hep-th/9907100 Theory +hep-th/9907101 Theory +hep-th/9907103 Theory +hep-th/9907106 Theory +hep-th/9907107 Theory +hep-th/9907109 Theory +hep-th/9907112 Theory +hep-th/9907118 Theory +hep-th/9907120 Theory +hep-th/9907125 Theory +hep-th/9907126 Theory +hep-th/9907128 Theory +hep-th/9907129 Theory +hep-th/9907131 Theory +hep-th/9907142 Theory +hep-th/9907145 Theory +hep-th/9907147 Theory +hep-th/9907150 Theory +hep-th/9907154 Theory +hep-th/9907156 Theory +hep-th/9907159 Theory +hep-th/9907160 Theory +hep-th/9907161 Theory +hep-th/9907163 Theory +hep-th/9907164 Theory +hep-th/9907166 Theory +hep-th/9907168 Theory +hep-th/9907169 Theory +hep-th/9907170 Theory +hep-th/9907171 Theory +hep-th/9907173 Theory +hep-th/9907174 Theory +hep-th/9907176 Theory +hep-th/9907179 Theory +hep-th/9907181 Theory +hep-th/9907182 Theory +hep-th/9907183 Theory +hep-th/9907184 Theory +hep-th/9907185 Theory +hep-th/9907190 Theory +hep-th/9907194 Theory +hep-th/9907195 Theory +hep-th/9907199 Theory +hep-th/9907201 Theory +hep-th/9907203 Theory +hep-th/9907205 Theory +hep-th/9907208 Theory +hep-th/9907210 Theory +hep-th/9907212 Theory +hep-th/9907214 Theory +hep-th/9907215 Theory +hep-th/9907217 Theory +hep-th/9907223 Theory +hep-th/9907224 Theory +hep-th/9908006 Theory +hep-th/9908007 Theory +hep-th/9908010 Theory +hep-th/9908013 Theory +hep-th/9908014 Theory +hep-th/9908016 Theory +hep-th/9908017 Theory +hep-th/9908019 Theory +hep-th/9908020 Theory +hep-th/9908022 Theory +hep-th/9908023 Theory +hep-th/9908025 Theory +hep-th/9908026 Theory +hep-th/9908028 Theory +hep-th/9908033 Theory +hep-th/9908034 Theory +hep-th/9908035 Theory +hep-th/9908037 Theory +hep-th/9908039 Theory +hep-th/9908041 Theory +hep-th/9908043 Theory +hep-th/9908044 Theory +hep-th/9908046 Theory +hep-th/9908050 Theory +hep-th/9908054 Theory +hep-th/9908057 Theory +hep-th/9908060 Theory +hep-th/9908062 Theory +hep-th/9908070 Theory +hep-th/9908071 Theory +hep-th/9908072 Theory +hep-th/9908076 Theory +hep-th/9908078 Theory +hep-th/9908081 Theory +hep-th/9908082 Theory +hep-th/9908084 Theory +hep-th/9908088 Theory +hep-th/9908089 Theory +hep-th/9908090 Theory +hep-th/9908092 Theory +hep-th/9908093 Theory +hep-th/9908094 Theory +hep-th/9908104 Theory +hep-th/9908106 Theory +hep-th/9908109 Theory +hep-th/9908110 Theory +hep-th/9908112 Theory +hep-th/9908114 Theory +hep-th/9908119 Theory +hep-th/9908120 Theory +hep-th/9908121 Theory +hep-th/9908123 Theory +hep-th/9908124 Theory +hep-th/9908129 Theory +hep-th/9908130 Theory +hep-th/9908133 Theory +hep-th/9908134 Theory +hep-th/9908138 Theory +hep-th/9908139 Theory +hep-th/9908141 Theory +hep-th/9908143 Theory +hep-th/9908147 Theory +hep-th/9908150 Theory +hep-th/9908152 Theory +hep-th/9908154 Theory +hep-th/9908156 Theory +hep-th/9908158 Theory +hep-th/9908162 Theory +hep-th/9908165 Theory +hep-th/9908166 Theory +hep-th/9908174 Theory +hep-th/9908175 Theory +hep-th/9908178 Theory +hep-th/9908179 Theory +hep-th/9908180 Theory +hep-th/9908182 Theory +hep-th/9908184 Theory +hep-th/9908185 Theory +hep-th/9908190 Theory +hep-th/9908198 Theory +hep-th/9908207 Theory +hep-th/9909001 Theory +hep-th/9909006 Theory +hep-th/9909010 Theory +hep-th/9909012 Theory +hep-th/9909015 Theory +hep-th/9909017 Theory +hep-th/9909019 Theory +hep-th/9909027 Theory +hep-th/9909028 Theory +hep-th/9909030 Theory +hep-th/9909031 Theory +hep-th/9909032 Theory +hep-th/9909034 Theory +hep-th/9909035 Theory +hep-th/9909037 Theory +hep-th/9909041 Theory +hep-th/9909044 Theory +hep-th/9909046 Theory +hep-th/9909047 Theory +hep-th/9909048 Theory +hep-th/9909050 Theory +hep-th/9909051 Theory +hep-th/9909053 Theory +hep-th/9909057 Theory +hep-th/9909060 Theory +hep-th/9909062 Theory +hep-th/9909065 Theory +hep-th/9909067 Theory +hep-th/9909070 Theory +hep-th/9909071 Theory +hep-th/9909072 Theory +hep-th/9909074 Theory +hep-th/9909075 Theory +hep-th/9909076 Theory +hep-th/9909077 Theory +hep-th/9909078 Theory +hep-th/9909082 Theory +hep-th/9909085 Theory +hep-th/9909086 Theory +hep-th/9909087 Theory +hep-th/9909091 Theory +hep-th/9909092 Theory +hep-th/9909094 Theory +hep-th/9909095 Theory +hep-th/9909098 Theory +hep-th/9909100 Theory +hep-th/9909101 Theory +hep-th/9909102 Theory +hep-th/9909103 Theory +hep-th/9909106 Theory +hep-th/9909107 Theory +hep-th/9909109 Theory +hep-th/9909110 Theory +hep-th/9909112 Theory +hep-th/9909114 Theory +hep-th/9909116 Theory +hep-th/9909119 Theory +hep-th/9909122 Theory +hep-th/9909123 Theory +hep-th/9909126 Theory +hep-th/9909135 Theory +hep-th/9909137 Theory +hep-th/9909138 Theory +hep-th/9909139 Theory +hep-th/9909140 Theory +hep-th/9909141 Theory +hep-th/9909143 Theory +hep-th/9909144 Theory +hep-th/9909146 Theory +hep-th/9909147 Theory +hep-th/9909148 Theory +hep-th/9909149 Theory +hep-th/9909153 Theory +hep-th/9909155 Theory +hep-th/9909156 Theory +hep-th/9909160 Theory +hep-th/9909161 Theory +hep-th/9909163 Theory +hep-th/9909164 Theory +hep-th/9909165 Theory +hep-th/9909166 Theory +hep-th/9909168 Theory +hep-th/9909171 Theory +hep-th/9909174 Theory +hep-th/9909175 Theory +hep-th/9909179 Theory +hep-th/9909180 Theory +hep-th/9909183 Theory +hep-th/9909186 Theory +hep-th/9909187 Theory +hep-th/9909188 Theory +hep-th/9909189 Theory +hep-th/9909190 Theory +hep-th/9909193 Theory +hep-th/9909194 Theory +hep-th/9909196 Theory +hep-th/9909197 Theory +hep-th/9909198 Theory +hep-th/9909201 Theory +hep-th/9909206 Theory +hep-th/9909211 Theory +hep-th/9909214 Theory +hep-th/9909215 Theory +hep-th/9909216 Theory +hep-th/9909217 Theory +hep-th/9909218 Theory +hep-th/9909222 Theory +hep-th/9909225 Theory +hep-th/9910002 Theory +hep-th/9910003 Theory +hep-th/9910004 Theory +hep-th/9910005 Theory +hep-th/9910006 Theory +hep-th/9910008 Theory +hep-th/9910011 Theory +hep-th/9910013 Theory +hep-th/9910016 Theory +hep-th/9910018 Theory +hep-th/9910019 Theory +hep-th/9910020 Theory +hep-th/9910021 Theory +hep-th/9910026 Theory +hep-th/9910027 Theory +hep-th/9910029 Theory +hep-th/9910031 Theory +hep-th/9910033 Theory +hep-th/9910036 Theory +hep-th/9910038 Theory +hep-th/9910040 Theory +hep-th/9910043 Theory +hep-th/9910046 Theory +hep-th/9910047 Theory +hep-th/9910049 Theory +hep-th/9910050 Theory +hep-th/9910053 Theory +hep-th/9910056 Theory +hep-th/9910058 Theory +hep-th/9910059 Theory +hep-th/9910062 Theory +hep-th/9910067 Theory +hep-th/9910069 Theory +hep-th/9910072 Theory +hep-th/9910073 Theory +hep-th/9910076 Theory +hep-th/9910077 Theory +hep-th/9910079 Theory +hep-th/9910080 Theory +hep-th/9910084 Theory +hep-th/9910085 Theory +hep-th/9910091 Theory +hep-th/9910092 Theory +hep-th/9910094 Theory +hep-th/9910097 Theory +hep-th/9910099 Theory +hep-th/9910101 Theory +hep-th/9910102 Theory +hep-th/9910103 Theory +hep-th/9910105 Theory +hep-th/9910107 Theory +hep-th/9910108 Theory +hep-th/9910111 Theory +hep-th/9910117 Theory +hep-th/9910119 Theory +hep-th/9910122 Theory +hep-th/9910123 Theory +hep-th/9910125 Theory +hep-th/9910126 Theory +hep-th/9910127 Theory +hep-th/9910130 Theory +hep-th/9910132 Theory +hep-th/9910133 Theory +hep-th/9910136 Theory +hep-th/9910138 Theory +hep-th/9910139 Theory +hep-th/9910140 Theory +hep-th/9910143 Theory +hep-th/9910144 Theory +hep-th/9910145 Theory +hep-th/9910148 Theory +hep-th/9910149 Theory +hep-th/9910150 Theory +hep-th/9910154 Theory +hep-th/9910157 Theory +hep-th/9910158 Theory +hep-th/9910160 Theory +hep-th/9910161 Theory +hep-th/9910163 Theory +hep-th/9910164 Theory +hep-th/9910167 Theory +hep-th/9910168 Theory +hep-th/9910169 Theory +hep-th/9910171 Theory +hep-th/9910172 Theory +hep-th/9910173 Theory +hep-th/9910174 Theory +hep-th/9910175 Theory +hep-th/9910176 Theory +hep-th/9910177 Theory +hep-th/9910178 Theory +hep-th/9910183 Theory +hep-th/9910185 Theory +hep-th/9910188 Theory +hep-th/9910192 Theory +hep-th/9910194 Theory +hep-th/9910196 Theory +hep-th/9910200 Theory +hep-th/9910201 Theory +hep-th/9910211 Theory +hep-th/9910212 Theory +hep-th/9910213 Theory +hep-th/9910217 Theory +hep-th/9910224 Theory +hep-th/9910225 Theory +hep-th/9910228 Theory +hep-th/9910229 Theory +hep-th/9910231 Theory +hep-th/9910232 Theory +hep-th/9910234 Theory +hep-th/9910238 Theory +hep-th/9910240 Theory +hep-th/9910244 Theory +hep-th/9910246 Theory +hep-th/9910249 Theory +hep-th/9910254 Theory +hep-th/9910256 Theory +hep-th/9910261 Theory +hep-th/9910262 Theory +hep-th/9910263 Theory +hep-th/9910264 Theory +hep-th/9910266 Theory +hep-th/9910267 Theory +hep-th/9911001 Theory +hep-th/9911005 Theory +hep-th/9911011 Theory +hep-th/9911012 Theory +hep-th/9911014 Theory +hep-th/9911015 Theory +hep-th/9911018 Theory +hep-th/9911021 Theory +hep-th/9911023 Theory +hep-th/9911025 Theory +hep-th/9911026 Theory +hep-th/9911028 Theory +hep-th/9911029 Theory +hep-th/9911030 Theory +hep-th/9911032 Theory +hep-th/9911035 Theory +hep-th/9911041 Theory +hep-th/9911042 Theory +hep-th/9911043 Theory +hep-th/9911053 Theory +hep-th/9911057 Theory +hep-th/9911062 Theory +hep-th/9911063 Theory +hep-th/9911064 Theory +hep-th/9911065 Theory +hep-th/9911069 Theory +hep-th/9911072 Theory +hep-th/9911073 Theory +hep-th/9911074 Theory +hep-th/9911075 Theory +hep-th/9911077 Theory +hep-th/9911078 Theory +hep-th/9911079 Theory +hep-th/9911082 Theory +hep-th/9911083 Theory +hep-th/9911085 Theory +hep-th/9911086 Theory +hep-th/9911087 Theory +hep-th/9911088 Theory +hep-th/9911089 Theory +hep-th/9911091 Theory +hep-th/9911092 Theory +hep-th/9911094 Theory +hep-th/9911096 Theory +hep-th/9911097 Theory +hep-th/9911098 Theory +hep-th/9911100 Theory +hep-th/9911105 Theory +hep-th/9911107 Theory +hep-th/9911112 Theory +hep-th/9911113 Theory +hep-th/9911115 Theory +hep-th/9911116 Theory +hep-th/9911117 Theory +hep-th/9911123 Theory +hep-th/9911124 Theory +hep-th/9911125 Theory +hep-th/9911128 Theory +hep-th/9911131 Theory +hep-th/9911132 Theory +hep-th/9911136 Theory +hep-th/9911137 Theory +hep-th/9911138 Theory +hep-th/9911139 Theory +hep-th/9911140 Theory +hep-th/9911141 Theory +hep-th/9911143 Theory +hep-th/9911144 Theory +hep-th/9911145 Theory +hep-th/9911146 Theory +hep-th/9911149 Theory +hep-th/9911150 Theory +hep-th/9911151 Theory +hep-th/9911153 Theory +hep-th/9911154 Theory +hep-th/9911155 Theory +hep-th/9911156 Theory +hep-th/9911157 Theory +hep-th/9911158 Theory +hep-th/9911159 Theory +hep-th/9911160 Theory +hep-th/9911162 Theory +hep-th/9911163 Theory +hep-th/9911164 Theory +hep-th/9911165 Theory +hep-th/9911166 Theory +hep-th/9911168 Theory +hep-th/9911169 Theory +hep-th/9911171 Theory +hep-th/9911177 Theory +hep-th/9911180 Theory +hep-th/9911181 Theory +hep-th/9911182 Theory +hep-th/9911183 Theory +hep-th/9911189 Theory +hep-th/9911190 Theory +hep-th/9911191 Theory +hep-th/9911192 Theory +hep-th/9911195 Theory +hep-th/9911197 Theory +hep-th/9911198 Theory +hep-th/9911199 Theory +hep-th/9911201 Theory +hep-th/9911204 Theory +hep-th/9911206 Theory +hep-th/9911208 Theory +hep-th/9911209 Theory +hep-th/9911210 Theory +hep-th/9911211 Theory +hep-th/9911212 Theory +hep-th/9911215 Theory +hep-th/9911217 Theory +hep-th/9911218 Theory +hep-th/9911220 Theory +hep-th/9911224 Theory +hep-th/9911225 Theory +hep-th/9911226 Theory +hep-th/9911228 Theory +hep-th/9911229 Theory +hep-th/9911231 Theory +hep-th/9911232 Theory +hep-th/9911234 Theory +hep-th/9911235 Theory +hep-th/9911238 Theory +hep-th/9911243 Theory +hep-th/9911244 Theory +hep-th/9911245 Theory +hep-th/9911248 Theory +hep-th/9911249 Theory +hep-th/9911251 Theory +hep-th/9911252 Theory +hep-th/9911254 Theory +hep-th/9912001 Theory +hep-th/9912004 Theory +hep-th/9912009 Theory +hep-th/9912011 Theory +hep-th/9912012 Theory +hep-th/9912013 Theory +hep-th/9912014 Theory +hep-th/9912015 Theory +hep-th/9912016 Theory +hep-th/9912017 Theory +hep-th/9912018 Theory +hep-th/9912019 Theory +hep-th/9912020 Theory +hep-th/9912023 Theory +hep-th/9912025 Theory +hep-th/9912026 Theory +hep-th/9912028 Theory +hep-th/9912029 Theory +hep-th/9912030 Theory +hep-th/9912033 Theory +hep-th/9912036 Theory +hep-th/9912037 Theory +hep-th/9912041 Theory +hep-th/9912044 Theory +hep-th/9912045 Theory +hep-th/9912047 Theory +hep-th/9912048 Theory +hep-th/9912053 Theory +hep-th/9912054 Theory +hep-th/9912055 Theory +hep-th/9912056 Theory +hep-th/9912057 Theory +hep-th/9912058 Theory +hep-th/9912060 Theory +hep-th/9912061 Theory +hep-th/9912063 Theory +hep-th/9912064 Theory +hep-th/9912066 Theory +hep-th/9912068 Theory +hep-th/9912069 Theory +hep-th/9912070 Theory +hep-th/9912072 Theory +hep-th/9912074 Theory +hep-th/9912077 Theory +hep-th/9912079 Theory +hep-th/9912080 Theory +hep-th/9912081 Theory +hep-th/9912082 Theory +hep-th/9912083 Theory +hep-th/9912085 Theory +hep-th/9912087 Theory +hep-th/9912088 Theory +hep-th/9912089 Theory +hep-th/9912090 Theory +hep-th/9912091 Theory +hep-th/9912092 Theory +hep-th/9912093 Theory +hep-th/9912094 Theory +hep-th/9912096 Theory +hep-th/9912098 Theory +hep-th/9912103 Theory +hep-th/9912105 Theory +hep-th/9912106 Theory +hep-th/9912107 Theory +hep-th/9912108 Theory +hep-th/9912111 Theory +hep-th/9912115 Theory +hep-th/9912119 Theory +hep-th/9912120 Theory +hep-th/9912122 Theory +hep-th/9912124 Theory +hep-th/9912125 Theory +hep-th/9912126 Theory +hep-th/9912128 Theory +hep-th/9912130 Theory +hep-th/9912133 Theory +hep-th/9912134 Theory +hep-th/9912135 Theory +hep-th/9912136 Theory +hep-th/9912137 Theory +hep-th/9912140 Theory +hep-th/9912141 Theory +hep-th/9912144 Theory +hep-th/9912145 Theory +hep-th/9912146 Theory +hep-th/9912150 Theory +hep-th/9912153 Theory +hep-th/9912155 Theory +hep-th/9912156 Theory +hep-th/9912157 Theory +hep-th/9912158 Theory +hep-th/9912159 Theory +hep-th/9912160 Theory +hep-th/9912162 Theory +hep-th/9912165 Theory +hep-th/9912166 Theory +hep-th/9912170 Theory +hep-th/9912174 Theory +hep-th/9912175 Theory +hep-th/9912176 Theory +hep-th/9912183 Theory +hep-th/9912184 Theory +hep-th/9912188 Theory +hep-th/9912192 Theory +hep-th/9912193 Theory +hep-th/9912195 Theory +hep-th/9912198 Theory +hep-th/9912199 Theory +hep-th/9912200 Theory +hep-th/9912201 Theory +hep-th/9912204 Theory +hep-th/9912207 Theory +hep-th/9912209 Theory +hep-th/9912210 Theory +hep-th/9912214 Theory +hep-th/9912215 Theory +hep-th/9912216 Theory +hep-th/9912223 Theory +hep-th/9912224 Theory +hep-th/9912226 Theory +hep-th/9912229 Theory +hep-th/9912230 Theory +hep-th/9912232 Theory +hep-th/9912234 Theory +hep-th/9912236 Theory +hep-th/9912237 Theory +hep-th/9912241 Theory +hep-th/9912245 Theory +hep-th/9912246 Theory +hep-th/9912248 Theory +hep-th/9912249 Theory +hep-th/9912250 Theory +hep-th/9912252 Theory +hep-th/9912253 Theory +hep-th/9912254 Theory +hep-th/9912255 Theory +hep-th/9912256 Theory +hep-th/9912257 Theory +hep-th/9912258 Theory +hep-th/9912259 Theory +hep-th/9912260 Theory +hep-th/9912262 Theory +hep-th/9912263 Theory +hep-th/9912265 Theory +hep-th/9912266 Theory +hep-th/9912267 Theory +hep-th/9912268 Theory +hep-th/9912269 Theory +hep-th/9912270 Theory +hep-th/9912273 Theory +hep-th/9912274 Theory +hep-th/9912276 Theory +hep-th/9912277 Theory +hep-th/9912278 Theory +hep-th/9912280 Theory +hep-th/9912283 Theory +hep-th/9912285 Theory +hep-th/9912291 Theory +hep-th/9912293 Theory +math-ph/0001001 +math-ph/0001002 +math-ph/0001008 +math-ph/0001016 +math-ph/0001017 +math-ph/0001021 +math-ph/0001022 +math-ph/0001032 +math-ph/0001033 +math-ph/0001035 +math-ph/0001037 +math-ph/0001040 +math-ph/0001042 +math-ph/0002006 +math-ph/0002010 +math-ph/0002011 +math-ph/0002021 +math-ph/0002026 +math-ph/0002029 +math-ph/0002032 +math-ph/0002034 +math-ph/0002036 +math-ph/0002040 +math-ph/0002041 +math-ph/0002043 +math-ph/0002051 +math-ph/0002053 +math-ph/0002054 +math-ph/0003006 +math-ph/0003007 +math-ph/0003011 +math-ph/0003012 +math-ph/0003015 +math-ph/0003019 +math-ph/0003028 +math-ph/0003030 +math-ph/0003033 +math-ph/0003045 +math-ph/0004001 +math-ph/0004003 +math-ph/0004006 +math-ph/0004007 +math-ph/0004010 +math-ph/0004018 +math-ph/0004025 +math-ph/0004026 +math-ph/0004027 +math-ph/0004028 +math-ph/0004029 +math-ph/0004031 +math-ph/0004034 +math-ph/0005002 +math-ph/0005005 +math-ph/0005006 +math-ph/0005008 +math-ph/0005012 +math-ph/0005014 +math-ph/0005021 +math-ph/0005026 +math-ph/0006002 +math-ph/0006003 +math-ph/0006004 +math-ph/0006006 +math-ph/0006008 +math-ph/0006013 +math-ph/0006017 +math-ph/0006018 +math-ph/0006020 +math-ph/0006022 +math-ph/0006024 +math-ph/0006027 +math-ph/0007001 +math-ph/0007006 +math-ph/0007007 +math-ph/0007014 +math-ph/0007016 +math-ph/0007019 +math-ph/0007029 +math-ph/0007031 +math-ph/0007034 +math-ph/0007037 +math-ph/0007038 +math-ph/0007039 +math-ph/0008001 +math-ph/0008008 +math-ph/0008016 +math-ph/0008017 +math-ph/0008018 +math-ph/0008020 +math-ph/0008021 +math-ph/0008025 +math-ph/0008028 +math-ph/0008029 +math-ph/0008030 +math-ph/0008032 +math-ph/0008040 +math-ph/0008041 +math-ph/0008042 +math-ph/0009002 +math-ph/0009003 +math-ph/0009014 +math-ph/0009016 +math-ph/0009031 +math-ph/0009037 +math-ph/0010001 +math-ph/0010002 +math-ph/0010005 +math-ph/0010007 +math-ph/0010008 +math-ph/0010011 +math-ph/0010013 +math-ph/0010015 +math-ph/0010018 +math-ph/0010024 +math-ph/0010030 +math-ph/0010031 +math-ph/0010032 +math-ph/0010036 +math-ph/0010052 +math-ph/0011001 +math-ph/0011005 +math-ph/0011008 +math-ph/0011011 +math-ph/0011012 +math-ph/0011013 +math-ph/0011016 +math-ph/0011037 +math-ph/0011050 +math-ph/0011052 +math-ph/0012007 +math-ph/0012008 +math-ph/0012010 +math-ph/0012011 +math-ph/0012016 +math-ph/0012017 +math-ph/0012018 +math-ph/0012021 +math-ph/0012028 +math-ph/0012038 +math-ph/0012040 +math-ph/0012045 +math-ph/9804002 +math-ph/9804003 +math-ph/9804004 +math-ph/9804006 +math-ph/9804007 +math-ph/9804012 +math-ph/9804013 +math-ph/9804015 +math-ph/9804016 +math-ph/9805007 +math-ph/9805011 +math-ph/9805012 +math-ph/9805013 +math-ph/9805019 +math-ph/9805021 +math-ph/9805022 +math-ph/9806003 +math-ph/9806006 +math-ph/9807001 +math-ph/9807002 +math-ph/9807005 +math-ph/9807016 +math-ph/9807017 +math-ph/9807020 +math-ph/9807021 +math-ph/9807022 +math-ph/9807023 +math-ph/9807024 +math-ph/9807027 +math-ph/9807032 +math-ph/9807034 +math-ph/9807036 +math-ph/9808011 +math-ph/9809013 +math-ph/9809015 +math-ph/9810001 +math-ph/9810005 +math-ph/9810006 +math-ph/9810008 +math-ph/9810010 +math-ph/9810013 +math-ph/9810018 +math-ph/9811004 +math-ph/9811005 +math-ph/9811009 +math-ph/9811010 +math-ph/9811012 +math-ph/9811016 +math-ph/9811028 +math-ph/9812006 +math-ph/9812011 +math-ph/9812025 +math-ph/9812026 +math-ph/9901005 +math-ph/9901006 +math-ph/9901010 +math-ph/9901011 +math-ph/9901015 +math-ph/9901017 +math-ph/9901021 +math-ph/9902001 +math-ph/9902003 +math-ph/9902006 +math-ph/9902007 +math-ph/9902010 +math-ph/9902016 +math-ph/9902017 +math-ph/9902020 +math-ph/9903002 +math-ph/9903004 +math-ph/9903008 +math-ph/9903011 +math-ph/9903012 +math-ph/9903017 +math-ph/9903018 +math-ph/9903031 +math-ph/9903035 +math-ph/9903039 +math-ph/9903041 +math-ph/9903043 +math-ph/9904001 +math-ph/9904002 +math-ph/9904003 +math-ph/9904010 +math-ph/9904013 +math-ph/9904017 +math-ph/9904018 +math-ph/9904020 +math-ph/9904023 +math-ph/9904027 +math-ph/9904034 +math-ph/9904035 +math-ph/9904037 +math-ph/9904039 +math-ph/9905002 +math-ph/9905003 +math-ph/9905009 +math-ph/9905012 +math-ph/9905015 +math-ph/9905017 +math-ph/9905018 +math-ph/9905019 +math-ph/9905020 +math-ph/9905024 +math-ph/9906003 +math-ph/9906004 +math-ph/9906013 +math-ph/9906017 +math-ph/9906026 +math-ph/9906027 +math-ph/9907001 +math-ph/9907005 +math-ph/9907011 +math-ph/9907013 +math-ph/9907019 +math-ph/9907023 +math-ph/9908002 +math-ph/9908004 +math-ph/9908007 +math-ph/9908015 +math-ph/9908016 +math-ph/9908018 +math-ph/9908019 +math-ph/9908022 +math-ph/9908023 +math-ph/9908025 +math-ph/9908027 +math-ph/9908030 +math-ph/9909009 +math-ph/9909019 +math-ph/9910003 +math-ph/9910005 +math-ph/9910007 +math-ph/9910014 +math-ph/9910017 +math-ph/9910019 +math-ph/9910020 +math-ph/9910023 +math-ph/9910027 +math-ph/9910028 +math-ph/9910031 +math-ph/9910037 +math-ph/9910041 +math-ph/9910046 +math-ph/9910047 +math-ph/9911004 +math-ph/9911010 +math-ph/9911018 +math-ph/9911025 +math-ph/9911033 +math-ph/9911036 +math-ph/9911037 +math-ph/9911044 +math-ph/9912003 +math-ph/9912008 +math-ph/9912009 +math-ph/9912014 +math-ph/9912015 +math-ph/9912019 +math-ph/9912021 +math/0001008 Differential Geometry +math/0001015 Quantum Algebra +math/0001048 Algebraic Geometry +math/0001052 Algebraic Geometry +math/0001069 Differential Geometry +math/0001100 Numerical Analysis +math/0001114 Quantum Algebra +math/0001132 Differential Geometry +math/0001139 Operator Algebras +math/0001154 Quantum Algebra +math/0002007 Quantum Algebra +math/0002011 Differential Geometry +math/0002042 Geometric Topology +math/0002063 Quantum Algebra +math/0002068 Dynamical Systems +math/0002078 Operator Algebras +math/0002095 Algebraic Geometry +math/0002139 Number Theory +math/0002144 Numerical Analysis +math/0002145 Dynamical Systems +math/0002166 Quantum Algebra +math/0002178 Algebraic Geometry +math/0002182 Differential Geometry +math/0002185 Operator Algebras +math/0002204 Operator Algebras +math/0002231 Geometric Topology +math/0003037 Differential Geometry +math/0003038 Quantum Algebra +math/0003068 Differential Geometry +math/0003078 Quantum Algebra +math/0003110 Quantum Algebra +math/0003128 Algebraic Geometry +math/0003133 Group Theory +math/0003142 Quantum Algebra +math/0003186 Algebraic Geometry +math/0003227 Numerical Analysis +math/0004018 Numerical Analysis +math/0004031 Differential Geometry +math/0004065 Symplectic Geometry +math/0004076 Algebraic Geometry +math/0004077 Operator Algebras +math/0004096 Algebraic Geometry +math/0004118 Quantum Algebra +math/0004129 Algebraic Geometry +math/0004150 Quantum Algebra +math/0004162 Quantum Algebra +math/0004179 Algebraic Geometry +math/0005018 Analysis of PDEs +math/0005019 Quantum Algebra +math/0005031 Dynamical Systems +math/0005049 Quantum Algebra +math/0005094 Algebraic Geometry +math/0005098 Algebraic Geometry +math/0005109 Quantum Algebra +math/0005116 Analysis of PDEs +math/0005124 Algebraic Geometry +math/0005145 Quantum Algebra +math/0005156 Differential Geometry +math/0005166 Functional Analysis +math/0005207 Algebraic Geometry +math/0005221 Differential Geometry +math/0005243 Operator Algebras +math/0005274 Quantum Algebra +math/0005293 Differential Geometry +math/0006093 Numerical Analysis +math/0006147 Algebraic Topology +math/0006150 Quantum Algebra +math/0006152 Quantum Algebra +math/0006171 Algebraic Geometry +math/0006188 Algebraic Geometry +math/0006212 Differential Geometry +math/0006217 Quantum Algebra +math/0006218 Spectral Theory +math/0006237 Number Theory +math/0007020 Quantum Algebra +math/0007044 Quantum Algebra +math/0007049 Functional Analysis +math/0007073 Algebraic Geometry +math/0007097 Quantum Algebra +math/0007107 K-Theory and Homology +math/0007137 Quantum Algebra +math/0007138 Differential Geometry +math/0007158 Probability +math/0007169 Quantum Algebra +math/0007174 Quantum Algebra +math/0007183 Functional Analysis +math/0008002 Algebraic Geometry +math/0008003 Operator Algebras +math/0008026 Algebraic Geometry +math/0008044 Quantum Algebra +math/0008046 Quantum Algebra +math/0008051 Number Theory +math/0008055 Quantum Algebra +math/0008105 Differential Geometry +math/0008136 Spectral Theory +math/0008146 Operator Algebras +math/0008147 Differential Geometry +math/0008153 Differential Geometry +math/0008179 Operator Algebras +math/0008196 Quantum Algebra +math/0008217 Probability +math/0008227 Quantum Algebra +math/0009023 Quantum Algebra +math/0009029 Dynamical Systems +math/0009042 Quantum Algebra +math/0009073 Functional Analysis +math/0009111 Symplectic Geometry +math/0009127 Algebraic Geometry +math/0009129 Statistics Theory +math/0009179 Dynamical Systems +math/0009180 Symplectic Geometry +math/0009208 Dynamical Systems +math/0009239 Differential Geometry +math/0009244 Quantum Algebra +math/0010007 Differential Geometry +math/0010033 Combinatorics +math/0010050 Quantum Algebra +math/0010058 Dynamical Systems +math/0010060 Quantum Algebra +math/0010084 Quantum Algebra +math/0010094 Quantum Algebra +math/0010127 Geometric Topology +math/0010172 Quantum Algebra +math/0010190 Quantum Algebra +math/0010197 Dynamical Systems +math/0010198 Quantum Algebra +math/0010208 Analysis of PDEs +math/0010248 Operator Algebras +math/0010269 Quantum Algebra +math/0010291 Probability +math/0010323 Group Theory +math/0011021 Differential Geometry +math/0011029 Functional Analysis +math/0011140 Operator Algebras +math/0011173 Analysis of PDEs +math/0011195 Analysis of PDEs +math/0012071 Quantum Algebra +math/0012103 Quantum Algebra +math/0012107 K-Theory and Homology +math/0012113 Spectral Theory +math/0012117 Combinatorics +math/0012182 Quantum Algebra +math/0012199 Quantum Algebra +math/0012207 Quantum Algebra +math/0012238 Differential Geometry +math/0012261 Differential Geometry +math/0012266 Group Theory +math/0405309 Classical Analysis and ODEs +math/0505378 Classical Analysis and ODEs +math/0601303 Classical Analysis and ODEs +math/9801020 Quantum Algebra +math/9801028 Differential Geometry +math/9801032 Quantum Algebra +math/9801033 Algebraic Geometry +math/9801050 Algebraic Geometry +math/9801056 Spectral Theory +math/9801062 Quantum Algebra +math/9801105 Quantum Algebra +math/9801135 Quantum Algebra +math/9802022 Geometric Topology +math/9802057 Differential Geometry +math/9802081 Quantum Algebra +math/9802085 Quantum Algebra +math/9802086 Quantum Algebra +math/9802094 Group Theory +math/9802104 Quantum Algebra +math/9802111 Quantum Algebra +math/9803003 Quantum Algebra +math/9803022 Quantum Algebra +math/9803039 Algebraic Geometry +math/9803041 Algebraic Geometry +math/9803044 Operator Algebras +math/9803050 Quantum Algebra +math/9803052 Complex Variables +math/9803077 Differential Geometry +math/9803088 Differential Geometry +math/9803091 Algebraic Geometry +math/9803092 Quantum Algebra +math/9803095 Quantum Algebra +math/9803118 Quantum Algebra +math/9803129 Spectral Theory +math/9803133 Operator Algebras +math/9803134 Operator Algebras +math/9803147 Quantum Algebra +math/9803153 Functional Analysis +math/9803155 Quantum Algebra +math/9804002 Functional Analysis +math/9804017 Quantum Algebra +math/9804021 Quantum Algebra +math/9804027 Classical Analysis and ODEs +math/9804041 Algebraic Geometry +math/9804062 Quantum Algebra +math/9804098 Geometric Topology +math/9804115 Spectral Theory +math/9804127 Quantum Algebra +math/9804131 Quantum Algebra +math/9804132 Quantum Algebra +math/9804133 Numerical Analysis +math/9804138 Quantum Algebra +math/9804143 Quantum Algebra +math/9804144 Differential Geometry +math/9805003 Algebraic Geometry +math/9805016 Differential Geometry +math/9805027 Numerical Analysis +math/9805048 Quantum Algebra +math/9805054 Algebraic Geometry +math/9805065 Analysis of PDEs +math/9805088 Numerical Analysis +math/9805089 Quantum Algebra +math/9805098 Dynamical Systems +math/9805114 Algebraic Geometry +math/9805131 Quantum Algebra +math/9805134 Quantum Algebra +math/9805142 Classical Analysis and ODEs +math/9806014 Quantum Algebra +math/9806053 Quantum Algebra +math/9806065 Quantum Algebra +math/9806081 Differential Geometry +math/9806083 Algebraic Geometry +math/9806087 Differential Geometry +math/9806109 Differential Geometry +math/9806149 Quantum Algebra +math/9806156 Differential Geometry +math/9806158 Quantum Algebra +math/9806169 Number Theory +math/9807038 Differential Geometry +math/9807046 Quantum Algebra +math/9807048 Quantum Algebra +math/9807051 Quantum Algebra +math/9807064 Spectral Theory +math/9807073 Differential Geometry +math/9807080 Differential Geometry +math/9807086 Differential Geometry +math/9807091 Operator Algebras +math/9807092 Operator Algebras +math/9807093 Operator Algebras +math/9807097 Quantum Algebra +math/9807100 Quantum Algebra +math/9807106 Quantum Algebra +math/9807122 Quantum Algebra +math/9807131 Quantum Algebra +math/9807133 Rings and Algebras +math/9807144 Quantum Algebra +math/9807168 Quantum Algebra +math/9808007 Algebraic Geometry +math/9808016 Quantum Algebra +math/9808022 Quantum Algebra +math/9808086 Quantum Algebra +math/9808091 Quantum Algebra +math/9808116 Quantum Algebra +math/9808119 Algebraic Geometry +math/9808133 Representation Theory +math/9808137 Differential Geometry +math/9809006 Quantum Algebra +math/9809010 Group Theory +math/9809047 Quantum Algebra +math/9809051 Quantum Algebra +math/9809052 Quantum Algebra +math/9809093 Spectral Theory +math/9809094 Algebraic Geometry +math/9809111 Numerical Analysis +math/9809130 Differential Geometry +math/9809132 Algebraic Geometry +math/9809156 Quantum Algebra +math/9809157 Quantum Algebra +math/9809170 Quantum Algebra +math/9810004 Algebraic Geometry +math/9810018 Quantum Algebra +math/9810035 Operator Algebras +math/9810062 Quantum Algebra +math/9810139 Quantum Algebra +math/9810158 Quantum Algebra +math/9810166 Algebraic Geometry +math/9810168 Functional Analysis +math/9811052 Quantum Algebra +math/9811054 Quantum Algebra +math/9811064 Quantum Algebra +math/9811140 Algebraic Geometry +math/9811141 Quantum Algebra +math/9811142 Quantum Algebra +math/9811153 Quantum Algebra +math/9811172 Quantum Algebra +math/9811176 Spectral Theory +math/9812027 Quantum Algebra +math/9812030 Analysis of PDEs +math/9812035 Algebraic Topology +math/9812049 Algebraic Geometry +math/9812084 Quantum Algebra +math/9812085 Quantum Algebra +math/9812088 Dynamical Systems +math/9812107 Quantum Algebra +math/9812108 Quantum Algebra +math/9901008 Complex Variables +math/9901020 Quantum Algebra +math/9901036 Probability +math/9901078 Algebraic Geometry +math/9901102 Symplectic Geometry +math/9902039 Complex Variables +math/9902064 Quantum Algebra +math/9902090 Quantum Algebra +math/9902098 Symplectic Geometry +math/9902104 Algebraic Geometry +math/9902141 Quantum Algebra +math/9902146 Quantum Algebra +math/9902157 Geometric Topology +math/9902159 Dynamical Systems +math/9903002 Differential Geometry +math/9903053 Quantum Algebra +math/9903059 Representation Theory +math/9903065 Quantum Algebra +math/9903070 Algebraic Geometry +math/9903073 Analysis of PDEs +math/9903101 Differential Geometry +math/9903105 Differential Geometry +math/9903134 Combinatorics +math/9903145 Spectral Theory +math/9904010 Representation Theory +math/9904017 Quantum Algebra +math/9904018 Quantum Algebra +math/9904030 Representation Theory +math/9904051 Representation Theory +math/9904082 Quantum Algebra +math/9904093 Spectral Theory +math/9904099 Algebraic Geometry +math/9904103 Quantum Algebra +math/9904109 Operator Algebras +math/9904124 Algebraic Geometry +math/9904126 Algebraic Geometry +math/9904127 Operator Algebras +math/9904178 Symplectic Geometry +math/9905065 Quantum Algebra +math/9905091 Numerical Analysis +math/9905095 Differential Geometry +math/9905100 Quantum Algebra +math/9905102 Algebraic Geometry +math/9905131 Probability +math/9905136 Differential Geometry +math/9905153 Quantum Algebra +math/9905159 Algebraic Geometry +math/9905164 Quantum Algebra +math/9905171 Dynamical Systems +math/9906002 Probability +math/9906003 K-Theory and Homology +math/9906041 Classical Analysis and ODEs +math/9906053 Algebraic Geometry +math/9906112 Symplectic Geometry +math/9906124 Geometric Topology +math/9907002 Logic +math/9907025 Numerical Analysis +math/9907038 Quantum Algebra +math/9907043 Differential Geometry +math/9907051 Differential Geometry +math/9907099 Quantum Algebra +math/9907113 Algebraic Geometry +math/9907123 Quantum Algebra +math/9907132 Analysis of PDEs +math/9907134 Quantum Algebra +math/9907149 Operator Algebras +math/9908008 Quantum Algebra +math/9908015 Differential Geometry +math/9908038 Quantum Algebra +math/9908080 Dynamical Systems +math/9908098 Differential Geometry +math/9908116 Quantum Algebra +math/9908164 Differential Geometry +math/9908177 Probability +math/9908178 Geometric Topology +math/9909002 Differential Geometry +math/9909034 Quantum Algebra +math/9909045 Quantum Algebra +math/9909049 Functional Analysis +math/9909061 Differential Geometry +math/9909064 Symplectic Geometry +math/9909069 Differential Geometry +math/9909099 Numerical Analysis +math/9909146 Algebraic Geometry +math/9909174 Differential Geometry +math/9910017 Algebraic Geometry +math/9910018 Quantum Algebra +math/9910031 Quantum Algebra +math/9910053 Algebraic Geometry +math/9910089 Spectral Theory +math/9910098 Analysis of PDEs +math/9910167 Operator Algebras +math/9911018 Quantum Algebra +math/9911090 Numerical Analysis +math/9911103 Differential Geometry +math/9911112 Quantum Algebra +math/9911118 Numerical Analysis +math/9911129 Quantum Algebra +math/9911130 Quantum Algebra +math/9911176 Quantum Algebra +math/9911188 Dynamical Systems +math/9911239 Operator Algebras +math/9912086 Complex Variables +math/9912115 Differential Geometry +math/9912116 Analysis of PDEs +math/9912151 Operator Algebras +math/9912161 Algebraic Geometry +math/9912209 Quantum Algebra +math/9912239 Quantum Algebra +nlin/0001002 Chaotic Dynamics +nlin/0001005 Pattern Formation and Solitons +nlin/0001006 Exactly Solvable and Integrable Systems +nlin/0001007 Exactly Solvable and Integrable Systems +nlin/0001008 Chaotic Dynamics +nlin/0001010 Exactly Solvable and Integrable Systems +nlin/0001013 Chaotic Dynamics +nlin/0001014 Pattern Formation and Solitons +nlin/0001015 Chaotic Dynamics +nlin/0001018 Chaotic Dynamics +nlin/0001020 Chaotic Dynamics +nlin/0001025 Chaotic Dynamics +nlin/0001026 Chaotic Dynamics +nlin/0001027 Chaotic Dynamics +nlin/0001030 Chaotic Dynamics +nlin/0001032 Chaotic Dynamics +nlin/0001033 Chaotic Dynamics +nlin/0001034 Chaotic Dynamics +nlin/0001035 Chaotic Dynamics +nlin/0001039 Chaotic Dynamics +nlin/0001040 Exactly Solvable and Integrable Systems +nlin/0001041 Chaotic Dynamics +nlin/0001042 Chaotic Dynamics +nlin/0001049 Pattern Formation and Solitons +nlin/0001051 Chaotic Dynamics +nlin/0001052 Exactly Solvable and Integrable Systems +nlin/0001053 Exactly Solvable and Integrable Systems +nlin/0001055 Pattern Formation and Solitons +nlin/0001059 Pattern Formation and Solitons +nlin/0001061 Pattern Formation and Solitons +nlin/0001064 Pattern Formation and Solitons +nlin/0001065 Pattern Formation and Solitons +nlin/0001066 Exactly Solvable and Integrable Systems +nlin/0002001 Pattern Formation and Solitons +nlin/0002002 Chaotic Dynamics +nlin/0002004 Adaptation and Self-Organizing Systems +nlin/0002010 Pattern Formation and Solitons +nlin/0002013 Chaotic Dynamics +nlin/0002014 Chaotic Dynamics +nlin/0002016 Pattern Formation and Solitons +nlin/0002017 Chaotic Dynamics +nlin/0002018 Chaotic Dynamics +nlin/0002019 Chaotic Dynamics +nlin/0002020 Exactly Solvable and Integrable Systems +nlin/0002022 Pattern Formation and Solitons +nlin/0002025 Chaotic Dynamics +nlin/0002030 Chaotic Dynamics +nlin/0002031 Chaotic Dynamics +nlin/0002033 Chaotic Dynamics +nlin/0002034 Chaotic Dynamics +nlin/0002037 Exactly Solvable and Integrable Systems +nlin/0002038 Pattern Formation and Solitons +nlin/0002041 Pattern Formation and Solitons +nlin/0002042 Pattern Formation and Solitons +nlin/0002043 Pattern Formation and Solitons +nlin/0002044 Chaotic Dynamics +nlin/0002045 Chaotic Dynamics +nlin/0002047 Exactly Solvable and Integrable Systems +nlin/0002050 Exactly Solvable and Integrable Systems +nlin/0002053 Chaotic Dynamics +nlin/0002054 Chaotic Dynamics +nlin/0002055 Chaotic Dynamics +nlin/0003002 Exactly Solvable and Integrable Systems +nlin/0003006 Pattern Formation and Solitons +nlin/0003008 Chaotic Dynamics +nlin/0003009 Chaotic Dynamics +nlin/0003010 Chaotic Dynamics +nlin/0003011 Pattern Formation and Solitons +nlin/0003012 Chaotic Dynamics +nlin/0003014 Chaotic Dynamics +nlin/0003016 Chaotic Dynamics +nlin/0003018 Chaotic Dynamics +nlin/0003021 Pattern Formation and Solitons +nlin/0003022 Adaptation and Self-Organizing Systems +nlin/0003023 Chaotic Dynamics +nlin/0003026 Adaptation and Self-Organizing Systems +nlin/0003028 Chaotic Dynamics +nlin/0003029 Exactly Solvable and Integrable Systems +nlin/0003032 Chaotic Dynamics +nlin/0003033 Chaotic Dynamics +nlin/0003035 Pattern Formation and Solitons +nlin/0003036 Chaotic Dynamics +nlin/0003037 Chaotic Dynamics +nlin/0003040 Chaotic Dynamics +nlin/0003043 Chaotic Dynamics +nlin/0003044 Chaotic Dynamics +nlin/0003045 Chaotic Dynamics +nlin/0003047 Pattern Formation and Solitons +nlin/0003049 Chaotic Dynamics +nlin/0003050 Chaotic Dynamics +nlin/0003051 Chaotic Dynamics +nlin/0003052 Chaotic Dynamics +nlin/0003054 Chaotic Dynamics +nlin/0003055 Chaotic Dynamics +nlin/0003056 Pattern Formation and Solitons +nlin/0003057 Chaotic Dynamics +nlin/0003060 Chaotic Dynamics +nlin/0003061 Chaotic Dynamics +nlin/0003065 Chaotic Dynamics +nlin/0003066 Chaotic Dynamics +nlin/0003069 Chaotic Dynamics +nlin/0004001 Chaotic Dynamics +nlin/0004004 Chaotic Dynamics +nlin/0004005 Chaotic Dynamics +nlin/0004006 Chaotic Dynamics +nlin/0004010 Chaotic Dynamics +nlin/0004014 Pattern Formation and Solitons +nlin/0004029 Chaotic Dynamics +nlin/0004030 Chaotic Dynamics +nlin/0004034 Exactly Solvable and Integrable Systems +nlin/0004038 Chaotic Dynamics +nlin/0004039 Chaotic Dynamics +nlin/0005001 Chaotic Dynamics +nlin/0005004 Pattern Formation and Solitons +nlin/0005007 Pattern Formation and Solitons +nlin/0005011 Chaotic Dynamics +nlin/0005018 Adaptation and Self-Organizing Systems +nlin/0005019 Chaotic Dynamics +nlin/0005020 Chaotic Dynamics +nlin/0005021 Chaotic Dynamics +nlin/0005025 Chaotic Dynamics +nlin/0005026 Chaotic Dynamics +nlin/0005027 Exactly Solvable and Integrable Systems +nlin/0005029 Chaotic Dynamics +nlin/0005030 Chaotic Dynamics +nlin/0005033 Chaotic Dynamics +nlin/0005034 Chaotic Dynamics +nlin/0005035 Chaotic Dynamics +nlin/0005036 Chaotic Dynamics +nlin/0005037 Chaotic Dynamics +nlin/0005038 Chaotic Dynamics +nlin/0005040 Chaotic Dynamics +nlin/0005042 Chaotic Dynamics +nlin/0005044 Chaotic Dynamics +nlin/0005045 Chaotic Dynamics +nlin/0005046 Exactly Solvable and Integrable Systems +nlin/0005047 Exactly Solvable and Integrable Systems +nlin/0005050 Chaotic Dynamics +nlin/0005052 Pattern Formation and Solitons +nlin/0005053 Chaotic Dynamics +nlin/0005054 Exactly Solvable and Integrable Systems +nlin/0005056 Pattern Formation and Solitons +nlin/0005061 Chaotic Dynamics +nlin/0005062 Exactly Solvable and Integrable Systems +nlin/0005063 Chaotic Dynamics +nlin/0005065 Chaotic Dynamics +nlin/0005066 Pattern Formation and Solitons +nlin/0005068 Pattern Formation and Solitons +nlin/0006001 Exactly Solvable and Integrable Systems +nlin/0006002 Pattern Formation and Solitons +nlin/0006007 Chaotic Dynamics +nlin/0006008 Chaotic Dynamics +nlin/0006009 Chaotic Dynamics +nlin/0006010 Chaotic Dynamics +nlin/0006011 Chaotic Dynamics +nlin/0006012 Chaotic Dynamics +nlin/0006014 Chaotic Dynamics +nlin/0006015 Pattern Formation and Solitons +nlin/0006016 Exactly Solvable and Integrable Systems +nlin/0006017 Chaotic Dynamics +nlin/0006023 Adaptation and Self-Organizing Systems +nlin/0006028 Pattern Formation and Solitons +nlin/0006030 Exactly Solvable and Integrable Systems +nlin/0006033 Chaotic Dynamics +nlin/0006036 Pattern Formation and Solitons +nlin/0006037 Chaotic Dynamics +nlin/0006039 Exactly Solvable and Integrable Systems +nlin/0006046 Chaotic Dynamics +nlin/0007001 Exactly Solvable and Integrable Systems +nlin/0007004 Pattern Formation and Solitons +nlin/0007006 Adaptation and Self-Organizing Systems +nlin/0007011 Chaotic Dynamics +nlin/0007012 Chaotic Dynamics +nlin/0007017 Chaotic Dynamics +nlin/0007021 Adaptation and Self-Organizing Systems +nlin/0007022 Pattern Formation and Solitons +nlin/0007023 Chaotic Dynamics +nlin/0007024 Exactly Solvable and Integrable Systems +nlin/0007025 Exactly Solvable and Integrable Systems +nlin/0007027 Chaotic Dynamics +nlin/0007028 Exactly Solvable and Integrable Systems +nlin/0007035 Chaotic Dynamics +nlin/0007036 Exactly Solvable and Integrable Systems +nlin/0007038 Adaptation and Self-Organizing Systems +nlin/0007039 Pattern Formation and Solitons +nlin/0007040 Exactly Solvable and Integrable Systems +nlin/0007041 Exactly Solvable and Integrable Systems +nlin/0007042 Pattern Formation and Solitons +nlin/0008002 Exactly Solvable and Integrable Systems +nlin/0008003 Cellular Automata and Lattice Gases +nlin/0008005 Chaotic Dynamics +nlin/0008006 Chaotic Dynamics +nlin/0008008 Adaptation and Self-Organizing Systems +nlin/0008009 Pattern Formation and Solitons +nlin/0008010 Pattern Formation and Solitons +nlin/0008013 Chaotic Dynamics +nlin/0008015 Chaotic Dynamics +nlin/0008016 Exactly Solvable and Integrable Systems +nlin/0008018 Adaptation and Self-Organizing Systems +nlin/0008020 Chaotic Dynamics +nlin/0008022 Chaotic Dynamics +nlin/0008024 Chaotic Dynamics +nlin/0008025 Chaotic Dynamics +nlin/0008027 Chaotic Dynamics +nlin/0008028 Chaotic Dynamics +nlin/0008031 Chaotic Dynamics +nlin/0008032 Chaotic Dynamics +nlin/0008035 Pattern Formation and Solitons +nlin/0008036 Pattern Formation and Solitons +nlin/0008037 Chaotic Dynamics +nlin/0008038 Cellular Automata and Lattice Gases +nlin/0008039 Chaotic Dynamics +nlin/0008040 Chaotic Dynamics +nlin/0008042 Exactly Solvable and Integrable Systems +nlin/0009001 Exactly Solvable and Integrable Systems +nlin/0009003 Pattern Formation and Solitons +nlin/0009008 Adaptation and Self-Organizing Systems +nlin/0009010 Chaotic Dynamics +nlin/0009011 Pattern Formation and Solitons +nlin/0009012 Pattern Formation and Solitons +nlin/0009013 Chaotic Dynamics +nlin/0009014 Chaotic Dynamics +nlin/0009017 Chaotic Dynamics +nlin/0009023 Chaotic Dynamics +nlin/0009028 Chaotic Dynamics +nlin/0009029 Chaotic Dynamics +nlin/0009030 Chaotic Dynamics +nlin/0009031 Chaotic Dynamics +nlin/0009032 Chaotic Dynamics +nlin/0009033 Pattern Formation and Solitons +nlin/0009034 Exactly Solvable and Integrable Systems +nlin/0009037 Adaptation and Self-Organizing Systems +nlin/0009038 Pattern Formation and Solitons +nlin/0009039 Chaotic Dynamics +nlin/0009040 Chaotic Dynamics +nlin/0009041 Chaotic Dynamics +nlin/0009045 Chaotic Dynamics +nlin/0009046 Adaptation and Self-Organizing Systems +nlin/0009049 Chaotic Dynamics +nlin/0009050 Pattern Formation and Solitons +nlin/0009051 Chaotic Dynamics +nlin/0009053 Chaotic Dynamics +nlin/0010001 Chaotic Dynamics +nlin/0010003 Chaotic Dynamics +nlin/0010006 Chaotic Dynamics +nlin/0010007 Adaptation and Self-Organizing Systems +nlin/0010008 Pattern Formation and Solitons +nlin/0010010 Chaotic Dynamics +nlin/0010011 Chaotic Dynamics +nlin/0010012 Adaptation and Self-Organizing Systems +nlin/0010013 Adaptation and Self-Organizing Systems +nlin/0010014 Chaotic Dynamics +nlin/0010015 Adaptation and Self-Organizing Systems +nlin/0010017 Chaotic Dynamics +nlin/0010020 Exactly Solvable and Integrable Systems +nlin/0010022 Chaotic Dynamics +nlin/0010023 Pattern Formation and Solitons +nlin/0010029 Chaotic Dynamics +nlin/0010031 Chaotic Dynamics +nlin/0010032 Exactly Solvable and Integrable Systems +nlin/0010033 Chaotic Dynamics +nlin/0010034 Chaotic Dynamics +nlin/0010035 Pattern Formation and Solitons +nlin/0010036 Chaotic Dynamics +nlin/0010037 Adaptation and Self-Organizing Systems +nlin/0010042 Chaotic Dynamics +nlin/0010043 Chaotic Dynamics +nlin/0010044 Exactly Solvable and Integrable Systems +nlin/0010049 Adaptation and Self-Organizing Systems +nlin/0010050 Pattern Formation and Solitons +nlin/0010052 Pattern Formation and Solitons +nlin/0010053 Chaotic Dynamics +nlin/0010056 Chaotic Dynamics +nlin/0011011 Exactly Solvable and Integrable Systems +nlin/0011012 Chaotic Dynamics +nlin/0011015 Chaotic Dynamics +nlin/0011016 Chaotic Dynamics +nlin/0011018 Chaotic Dynamics +nlin/0011019 Chaotic Dynamics +nlin/0011020 Exactly Solvable and Integrable Systems +nlin/0011022 Chaotic Dynamics +nlin/0011026 Chaotic Dynamics +nlin/0011027 Chaotic Dynamics +nlin/0011028 Chaotic Dynamics +nlin/0011029 Chaotic Dynamics +nlin/0011030 Pattern Formation and Solitons +nlin/0011032 Cellular Automata and Lattice Gases +nlin/0011033 Pattern Formation and Solitons +nlin/0011034 Chaotic Dynamics +nlin/0011036 Chaotic Dynamics +nlin/0011037 Exactly Solvable and Integrable Systems +nlin/0011038 Chaotic Dynamics +nlin/0011042 Chaotic Dynamics +nlin/0011043 Chaotic Dynamics +nlin/0011044 Chaotic Dynamics +nlin/0011045 Chaotic Dynamics +nlin/0011048 Chaotic Dynamics +nlin/0011049 Pattern Formation and Solitons +nlin/0011050 Chaotic Dynamics +nlin/0012001 Exactly Solvable and Integrable Systems +nlin/0012003 Chaotic Dynamics +nlin/0012004 Exactly Solvable and Integrable Systems +nlin/0012005 Chaotic Dynamics +nlin/0012006 Pattern Formation and Solitons +nlin/0012008 Chaotic Dynamics +nlin/0012010 Chaotic Dynamics +nlin/0012012 Chaotic Dynamics +nlin/0012013 Chaotic Dynamics +nlin/0012017 Chaotic Dynamics +nlin/0012019 Chaotic Dynamics +nlin/0012020 Pattern Formation and Solitons +nlin/0012022 Chaotic Dynamics +nlin/0012023 Chaotic Dynamics +nlin/0012026 Pattern Formation and Solitons +nlin/0012027 Chaotic Dynamics +nlin/0012029 Chaotic Dynamics +nlin/0012030 Chaotic Dynamics +nlin/0012031 Pattern Formation and Solitons +nlin/0012032 Chaotic Dynamics +nlin/0012035 Chaotic Dynamics +nlin/0012038 Chaotic Dynamics +nlin/0012043 Exactly Solvable and Integrable Systems +nlin/0012045 Exactly Solvable and Integrable Systems +nlin/0012046 Exactly Solvable and Integrable Systems +nlin/0012048 Chaotic Dynamics +nlin/0012061 Chaotic Dynamics +nlin/0012063 Exactly Solvable and Integrable Systems +nlin/0012064 Pattern Formation and Solitons +nucl-ex/0001003 +nucl-ex/0001008 +nucl-ex/0002002 +nucl-ex/0002006 +nucl-ex/0002007 +nucl-ex/0002009 +nucl-ex/0002011 +nucl-ex/0002012 +nucl-ex/0002013 +nucl-ex/0003003 +nucl-ex/0003005 +nucl-ex/0003006 +nucl-ex/0003008 +nucl-ex/0004002 +nucl-ex/0004005 +nucl-ex/0004009 +nucl-ex/0004011 +nucl-ex/0005003 +nucl-ex/0005006 +nucl-ex/0006004 +nucl-ex/0006005 +nucl-ex/0006010 +nucl-ex/0006011 +nucl-ex/0007003 +nucl-ex/0007008 +nucl-ex/0007009 +nucl-ex/0007013 +nucl-ex/0007016 +nucl-ex/0007021 +nucl-ex/0008002 +nucl-ex/0008016 +nucl-ex/0008017 +nucl-ex/0009001 +nucl-ex/0009002 +nucl-ex/0009006 +nucl-ex/0009010 +nucl-ex/0009015 +nucl-ex/0009018 +nucl-ex/0010001 +nucl-ex/0010004 +nucl-ex/0010005 +nucl-ex/0010007 +nucl-ex/0010014 +nucl-ex/0010019 +nucl-ex/0011002 +nucl-ex/0011003 +nucl-ex/0011004 +nucl-ex/0011011 +nucl-ex/0011012 +nucl-ex/0011017 +nucl-ex/0012001 +nucl-ex/0012002 +nucl-ex/0012005 +nucl-ex/0012006 +nucl-ex/0012007 +nucl-ex/9801001 +nucl-ex/9801006 +nucl-ex/9801008 +nucl-ex/9801009 +nucl-ex/9802005 +nucl-ex/9803004 +nucl-ex/9803006 +nucl-ex/9803009 +nucl-ex/9803010 +nucl-ex/9803012 +nucl-ex/9803013 +nucl-ex/9803015 +nucl-ex/9804002 +nucl-ex/9804003 +nucl-ex/9804004 +nucl-ex/9806005 +nucl-ex/9807002 +nucl-ex/9807005 +nucl-ex/9807007 +nucl-ex/9807008 +nucl-ex/9809005 +nucl-ex/9810006 +nucl-ex/9810007 +nucl-ex/9810009 +nucl-ex/9810011 +nucl-ex/9810015 +nucl-ex/9810016 +nucl-ex/9811005 +nucl-ex/9811010 +nucl-ex/9811011 +nucl-ex/9812003 +nucl-ex/9812004 +nucl-ex/9812006 +nucl-ex/9812008 +nucl-ex/9812009 +nucl-ex/9812010 +nucl-ex/9901002 +nucl-ex/9901006 +nucl-ex/9901007 +nucl-ex/9901008 +nucl-ex/9902004 +nucl-ex/9902005 +nucl-ex/9902007 +nucl-ex/9902010 +nucl-ex/9903002 +nucl-ex/9903005 +nucl-ex/9903007 +nucl-ex/9903011 +nucl-ex/9903012 +nucl-ex/9904001 +nucl-ex/9904002 +nucl-ex/9904005 +nucl-ex/9904011 +nucl-ex/9904012 +nucl-ex/9906003 +nucl-ex/9906004 +nucl-ex/9906007 +nucl-ex/9906008 +nucl-ex/9906011 +nucl-ex/9906012 +nucl-ex/9907003 +nucl-ex/9907004 +nucl-ex/9907014 +nucl-ex/9907016 +nucl-ex/9907017 +nucl-ex/9907019 +nucl-ex/9907021 +nucl-ex/9908002 +nucl-ex/9908014 +nucl-ex/9908016 +nucl-ex/9908022 +nucl-ex/9908024 +nucl-ex/9909009 +nucl-ex/9909011 +nucl-ex/9909014 +nucl-ex/9909015 +nucl-ex/9909016 +nucl-ex/9910007 +nucl-ex/9910009 +nucl-ex/9910012 +nucl-ex/9910013 +nucl-ex/9910017 +nucl-ex/9910018 +nucl-ex/9910019 +nucl-ex/9911001 +nucl-ex/9911004 +nucl-ex/9911007 +nucl-ex/9911008 +nucl-ex/9911009 +nucl-ex/9911011 +nucl-ex/9912001 +nucl-ex/9912002 +nucl-ex/9912004 +nucl-ex/9912008 +nucl-ex/9912012 +nucl-th/9801003 +nucl-th/9801004 +nucl-th/9801006 +nucl-th/9801007 +nucl-th/9801008 +nucl-th/9801016 +nucl-th/9801018 +nucl-th/9801019 +nucl-th/9801020 +nucl-th/9801025 +nucl-th/9801026 +nucl-th/9801030 +nucl-th/9801031 +nucl-th/9801032 +nucl-th/9801034 +nucl-th/9801035 +nucl-th/9801038 +nucl-th/9801040 +nucl-th/9801044 +nucl-th/9801046 +nucl-th/9801047 +nucl-th/9801048 +nucl-th/9801057 +nucl-th/9801064 +nucl-th/9801066 +nucl-th/9802001 +nucl-th/9802002 +nucl-th/9802003 +nucl-th/9802004 +nucl-th/9802005 +nucl-th/9802011 +nucl-th/9802016 +nucl-th/9802021 +nucl-th/9802024 +nucl-th/9802029 +nucl-th/9802032 +nucl-th/9802037 +nucl-th/9802041 +nucl-th/9802043 +nucl-th/9802045 +nucl-th/9802046 +nucl-th/9802047 +nucl-th/9802050 +nucl-th/9802053 +nucl-th/9802056 +nucl-th/9802060 +nucl-th/9802062 +nucl-th/9802063 +nucl-th/9802065 +nucl-th/9802066 +nucl-th/9802069 +nucl-th/9802074 +nucl-th/9802075 +nucl-th/9802077 +nucl-th/9802082 +nucl-th/9803006 +nucl-th/9803009 +nucl-th/9803011 +nucl-th/9803015 +nucl-th/9803018 +nucl-th/9803019 +nucl-th/9803034 +nucl-th/9803037 +nucl-th/9803044 +nucl-th/9803054 +nucl-th/9803055 +nucl-th/9803056 +nucl-th/9803058 +nucl-th/9803059 +nucl-th/9804001 +nucl-th/9804005 +nucl-th/9804006 +nucl-th/9804008 +nucl-th/9804012 +nucl-th/9804018 +nucl-th/9804021 +nucl-th/9804025 +nucl-th/9804032 +nucl-th/9804033 +nucl-th/9804035 +nucl-th/9804037 +nucl-th/9804038 +nucl-th/9804039 +nucl-th/9804041 +nucl-th/9804044 +nucl-th/9804045 +nucl-th/9804047 +nucl-th/9804050 +nucl-th/9804053 +nucl-th/9804054 +nucl-th/9804059 +nucl-th/9804071 +nucl-th/9804076 +nucl-th/9805001 +nucl-th/9805003 +nucl-th/9805004 +nucl-th/9805006 +nucl-th/9805012 +nucl-th/9805013 +nucl-th/9805015 +nucl-th/9805018 +nucl-th/9805019 +nucl-th/9805020 +nucl-th/9805021 +nucl-th/9805023 +nucl-th/9805031 +nucl-th/9805032 +nucl-th/9805035 +nucl-th/9805036 +nucl-th/9805037 +nucl-th/9805038 +nucl-th/9805039 +nucl-th/9805041 +nucl-th/9805053 +nucl-th/9806004 +nucl-th/9806009 +nucl-th/9806010 +nucl-th/9806011 +nucl-th/9806013 +nucl-th/9806015 +nucl-th/9806016 +nucl-th/9806017 +nucl-th/9806020 +nucl-th/9806022 +nucl-th/9806024 +nucl-th/9806030 +nucl-th/9806032 +nucl-th/9806033 +nucl-th/9806042 +nucl-th/9806045 +nucl-th/9806050 +nucl-th/9806052 +nucl-th/9806053 +nucl-th/9806055 +nucl-th/9806062 +nucl-th/9806064 +nucl-th/9806073 +nucl-th/9806074 +nucl-th/9806078 +nucl-th/9806080 +nucl-th/9806083 +nucl-th/9806089 +nucl-th/9806091 +nucl-th/9806094 +nucl-th/9806095 +nucl-th/9806096 +nucl-th/9806099 +nucl-th/9807001 +nucl-th/9807002 +nucl-th/9807006 +nucl-th/9807014 +nucl-th/9807018 +nucl-th/9807024 +nucl-th/9807030 +nucl-th/9807031 +nucl-th/9807032 +nucl-th/9807035 +nucl-th/9807038 +nucl-th/9807039 +nucl-th/9807043 +nucl-th/9807044 +nucl-th/9807049 +nucl-th/9807051 +nucl-th/9807052 +nucl-th/9807054 +nucl-th/9807055 +nucl-th/9807058 +nucl-th/9807059 +nucl-th/9807060 +nucl-th/9807062 +nucl-th/9807064 +nucl-th/9807069 +nucl-th/9807071 +nucl-th/9807072 +nucl-th/9807073 +nucl-th/9807076 +nucl-th/9807077 +nucl-th/9807081 +nucl-th/9807083 +nucl-th/9807084 +nucl-th/9807085 +nucl-th/9807086 +nucl-th/9808006 +nucl-th/9808009 +nucl-th/9808011 +nucl-th/9808016 +nucl-th/9808017 +nucl-th/9808019 +nucl-th/9808021 +nucl-th/9808022 +nucl-th/9808023 +nucl-th/9808025 +nucl-th/9808027 +nucl-th/9808028 +nucl-th/9808030 +nucl-th/9808032 +nucl-th/9808035 +nucl-th/9808036 +nucl-th/9808039 +nucl-th/9808040 +nucl-th/9808045 +nucl-th/9808046 +nucl-th/9808048 +nucl-th/9808049 +nucl-th/9808051 +nucl-th/9808060 +nucl-th/9808061 +nucl-th/9808064 +nucl-th/9808065 +nucl-th/9808066 +nucl-th/9808068 +nucl-th/9808069 +nucl-th/9808073 +nucl-th/9809001 +nucl-th/9809003 +nucl-th/9809004 +nucl-th/9809005 +nucl-th/9809008 +nucl-th/9809009 +nucl-th/9809012 +nucl-th/9809016 +nucl-th/9809018 +nucl-th/9809019 +nucl-th/9809021 +nucl-th/9809022 +nucl-th/9809025 +nucl-th/9809029 +nucl-th/9809030 +nucl-th/9809035 +nucl-th/9809036 +nucl-th/9809038 +nucl-th/9809044 +nucl-th/9809045 +nucl-th/9809048 +nucl-th/9809049 +nucl-th/9809056 +nucl-th/9809058 +nucl-th/9809059 +nucl-th/9809063 +nucl-th/9809064 +nucl-th/9809066 +nucl-th/9809067 +nucl-th/9809068 +nucl-th/9809069 +nucl-th/9809071 +nucl-th/9809073 +nucl-th/9809074 +nucl-th/9809075 +nucl-th/9809076 +nucl-th/9809077 +nucl-th/9809078 +nucl-th/9809079 +nucl-th/9809081 +nucl-th/9809082 +nucl-th/9809088 +nucl-th/9809089 +nucl-th/9809090 +nucl-th/9810001 +nucl-th/9810004 +nucl-th/9810005 +nucl-th/9810007 +nucl-th/9810011 +nucl-th/9810012 +nucl-th/9810020 +nucl-th/9810021 +nucl-th/9810022 +nucl-th/9810024 +nucl-th/9810025 +nucl-th/9810027 +nucl-th/9810028 +nucl-th/9810033 +nucl-th/9810038 +nucl-th/9810040 +nucl-th/9810041 +nucl-th/9810043 +nucl-th/9810046 +nucl-th/9810049 +nucl-th/9810051 +nucl-th/9810052 +nucl-th/9810055 +nucl-th/9810060 +nucl-th/9810062 +nucl-th/9810063 +nucl-th/9810064 +nucl-th/9810066 +nucl-th/9810067 +nucl-th/9810068 +nucl-th/9810072 +nucl-th/9810073 +nucl-th/9810078 +nucl-th/9811001 +nucl-th/9811002 +nucl-th/9811004 +nucl-th/9811006 +nucl-th/9811008 +nucl-th/9811014 +nucl-th/9811016 +nucl-th/9811018 +nucl-th/9811019 +nucl-th/9811029 +nucl-th/9811030 +nucl-th/9811031 +nucl-th/9811039 +nucl-th/9811041 +nucl-th/9811042 +nucl-th/9811043 +nucl-th/9811045 +nucl-th/9811046 +nucl-th/9811050 +nucl-th/9811052 +nucl-th/9811054 +nucl-th/9811055 +nucl-th/9811056 +nucl-th/9811057 +nucl-th/9811058 +nucl-th/9811059 +nucl-th/9811060 +nucl-th/9811062 +nucl-th/9811067 +nucl-th/9811068 +nucl-th/9811073 +nucl-th/9811074 +nucl-th/9811083 +nucl-th/9811086 +nucl-th/9811087 +nucl-th/9811089 +nucl-th/9811090 +nucl-th/9811091 +nucl-th/9811092 +nucl-th/9811093 +nucl-th/9811095 +nucl-th/9811096 +nucl-th/9811098 +nucl-th/9811099 +nucl-th/9811104 +nucl-th/9812001 +nucl-th/9812002 +nucl-th/9812004 +nucl-th/9812006 +nucl-th/9812007 +nucl-th/9812008 +nucl-th/9812010 +nucl-th/9812013 +nucl-th/9812014 +nucl-th/9812018 +nucl-th/9812019 +nucl-th/9812020 +nucl-th/9812026 +nucl-th/9812027 +nucl-th/9812028 +nucl-th/9812029 +nucl-th/9812031 +nucl-th/9812037 +nucl-th/9812039 +nucl-th/9812040 +nucl-th/9812044 +nucl-th/9812045 +nucl-th/9812051 +nucl-th/9812052 +nucl-th/9812054 +nucl-th/9812055 +nucl-th/9812056 +nucl-th/9812057 +nucl-th/9812061 +nucl-th/9812062 +nucl-th/9812072 +nucl-th/9812075 +nucl-th/9812080 +nucl-th/9901001 +nucl-th/9901002 +nucl-th/9901003 +nucl-th/9901004 +nucl-th/9901005 +nucl-th/9901007 +nucl-th/9901008 +nucl-th/9901010 +nucl-th/9901017 +nucl-th/9901018 +nucl-th/9901022 +nucl-th/9901024 +nucl-th/9901026 +nucl-th/9901028 +nucl-th/9901030 +nucl-th/9901033 +nucl-th/9901038 +nucl-th/9901039 +nucl-th/9901040 +nucl-th/9901041 +nucl-th/9901043 +nucl-th/9901044 +nucl-th/9901045 +nucl-th/9901046 +nucl-th/9901047 +nucl-th/9901050 +nucl-th/9901055 +nucl-th/9901058 +nucl-th/9901059 +nucl-th/9901060 +nucl-th/9901061 +nucl-th/9901062 +nucl-th/9901064 +nucl-th/9901065 +nucl-th/9901067 +nucl-th/9901069 +nucl-th/9901078 +nucl-th/9901081 +nucl-th/9901086 +nucl-th/9901087 +nucl-th/9901089 +nucl-th/9901093 +nucl-th/9901095 +nucl-th/9901096 +nucl-th/9901099 +nucl-th/9902003 +nucl-th/9902007 +nucl-th/9902009 +nucl-th/9902010 +nucl-th/9902011 +nucl-th/9902014 +nucl-th/9902017 +nucl-th/9902019 +nucl-th/9902021 +nucl-th/9902023 +nucl-th/9902024 +nucl-th/9902025 +nucl-th/9902026 +nucl-th/9902027 +nucl-th/9902029 +nucl-th/9902030 +nucl-th/9902031 +nucl-th/9902033 +nucl-th/9902035 +nucl-th/9902036 +nucl-th/9902037 +nucl-th/9902038 +nucl-th/9902039 +nucl-th/9902040 +nucl-th/9902041 +nucl-th/9902042 +nucl-th/9902044 +nucl-th/9902046 +nucl-th/9902047 +nucl-th/9902050 +nucl-th/9902052 +nucl-th/9902055 +nucl-th/9902057 +nucl-th/9902059 +nucl-th/9902060 +nucl-th/9902061 +nucl-th/9902064 +nucl-th/9902065 +nucl-th/9902066 +nucl-th/9902067 +nucl-th/9902068 +nucl-th/9902071 +nucl-th/9902073 +nucl-th/9902074 +nucl-th/9902075 +nucl-th/9902077 +nucl-th/9903003 +nucl-th/9903004 +nucl-th/9903006 +nucl-th/9903009 +nucl-th/9903010 +nucl-th/9903012 +nucl-th/9903013 +nucl-th/9903016 +nucl-th/9903019 +nucl-th/9903020 +nucl-th/9903021 +nucl-th/9903025 +nucl-th/9903027 +nucl-th/9903028 +nucl-th/9903031 +nucl-th/9903036 +nucl-th/9903037 +nucl-th/9903039 +nucl-th/9903040 +nucl-th/9903042 +nucl-th/9903044 +nucl-th/9903047 +nucl-th/9903048 +nucl-th/9903049 +nucl-th/9903053 +nucl-th/9903055 +nucl-th/9903057 +nucl-th/9903058 +nucl-th/9903059 +nucl-th/9903060 +nucl-th/9903062 +nucl-th/9903065 +nucl-th/9903067 +nucl-th/9903068 +nucl-th/9903069 +nucl-th/9903070 +nucl-th/9903073 +nucl-th/9903074 +nucl-th/9903077 +nucl-th/9903079 +nucl-th/9903080 +nucl-th/9903081 +nucl-th/9904001 +nucl-th/9904002 +nucl-th/9904003 +nucl-th/9904004 +nucl-th/9904005 +nucl-th/9904006 +nucl-th/9904007 +nucl-th/9904009 +nucl-th/9904012 +nucl-th/9904013 +nucl-th/9904017 +nucl-th/9904024 +nucl-th/9904027 +nucl-th/9904028 +nucl-th/9904029 +nucl-th/9904031 +nucl-th/9904033 +nucl-th/9904035 +nucl-th/9904037 +nucl-th/9904038 +nucl-th/9904039 +nucl-th/9904040 +nucl-th/9904050 +nucl-th/9904054 +nucl-th/9904057 +nucl-th/9904058 +nucl-th/9904059 +nucl-th/9904060 +nucl-th/9904062 +nucl-th/9904064 +nucl-th/9904066 +nucl-th/9904069 +nucl-th/9904071 +nucl-th/9904073 +nucl-th/9904076 +nucl-th/9904077 +nucl-th/9904078 +nucl-th/9904079 +nucl-th/9904080 +nucl-th/9904081 +nucl-th/9904083 +nucl-th/9904084 +nucl-th/9905001 +nucl-th/9905002 +nucl-th/9905003 +nucl-th/9905011 +nucl-th/9905013 +nucl-th/9905017 +nucl-th/9905019 +nucl-th/9905020 +nucl-th/9905021 +nucl-th/9905024 +nucl-th/9905027 +nucl-th/9905029 +nucl-th/9905031 +nucl-th/9905037 +nucl-th/9905038 +nucl-th/9905039 +nucl-th/9905041 +nucl-th/9905043 +nucl-th/9905044 +nucl-th/9905045 +nucl-th/9905048 +nucl-th/9905049 +nucl-th/9905053 +nucl-th/9905054 +nucl-th/9905055 +nucl-th/9905056 +nucl-th/9905057 +nucl-th/9905058 +nucl-th/9905059 +nucl-th/9905060 +nucl-th/9905061 +nucl-th/9905064 +nucl-th/9905065 +nucl-th/9905066 +nucl-th/9906001 +nucl-th/9906002 +nucl-th/9906005 +nucl-th/9906009 +nucl-th/9906012 +nucl-th/9906013 +nucl-th/9906015 +nucl-th/9906016 +nucl-th/9906017 +nucl-th/9906018 +nucl-th/9906020 +nucl-th/9906023 +nucl-th/9906024 +nucl-th/9906026 +nucl-th/9906027 +nucl-th/9906030 +nucl-th/9906032 +nucl-th/9906036 +nucl-th/9906039 +nucl-th/9906040 +nucl-th/9906046 +nucl-th/9906047 +nucl-th/9906049 +nucl-th/9906052 +nucl-th/9906053 +nucl-th/9906054 +nucl-th/9906056 +nucl-th/9906058 +nucl-th/9906059 +nucl-th/9906060 +nucl-th/9906062 +nucl-th/9906063 +nucl-th/9906066 +nucl-th/9906068 +nucl-th/9906069 +nucl-th/9906071 +nucl-th/9906075 +nucl-th/9906076 +nucl-th/9906078 +nucl-th/9906081 +nucl-th/9906083 +nucl-th/9906085 +nucl-th/9906089 +nucl-th/9906090 +nucl-th/9906094 +nucl-th/9906095 +nucl-th/9907002 +nucl-th/9907003 +nucl-th/9907005 +nucl-th/9907006 +nucl-th/9907007 +nucl-th/9907017 +nucl-th/9907018 +nucl-th/9907021 +nucl-th/9907023 +nucl-th/9907028 +nucl-th/9907029 +nucl-th/9907031 +nucl-th/9907034 +nucl-th/9907036 +nucl-th/9907038 +nucl-th/9907039 +nucl-th/9907042 +nucl-th/9907047 +nucl-th/9907049 +nucl-th/9907052 +nucl-th/9907053 +nucl-th/9907055 +nucl-th/9907056 +nucl-th/9907058 +nucl-th/9907061 +nucl-th/9907065 +nucl-th/9907068 +nucl-th/9907069 +nucl-th/9907071 +nucl-th/9907073 +nucl-th/9907074 +nucl-th/9907077 +nucl-th/9907080 +nucl-th/9907081 +nucl-th/9907082 +nucl-th/9907083 +nucl-th/9907085 +nucl-th/9907091 +nucl-th/9907097 +nucl-th/9907100 +nucl-th/9907103 +nucl-th/9907104 +nucl-th/9907105 +nucl-th/9907106 +nucl-th/9907107 +nucl-th/9907110 +nucl-th/9907114 +nucl-th/9907116 +nucl-th/9908002 +nucl-th/9908004 +nucl-th/9908005 +nucl-th/9908006 +nucl-th/9908007 +nucl-th/9908009 +nucl-th/9908010 +nucl-th/9908013 +nucl-th/9908016 +nucl-th/9908017 +nucl-th/9908018 +nucl-th/9908019 +nucl-th/9908020 +nucl-th/9908021 +nucl-th/9908024 +nucl-th/9908025 +nucl-th/9908032 +nucl-th/9908033 +nucl-th/9908034 +nucl-th/9908035 +nucl-th/9908036 +nucl-th/9908037 +nucl-th/9908040 +nucl-th/9908041 +nucl-th/9908042 +nucl-th/9908043 +nucl-th/9908044 +nucl-th/9908045 +nucl-th/9908046 +nucl-th/9908047 +nucl-th/9908048 +nucl-th/9908052 +nucl-th/9908055 +nucl-th/9908056 +nucl-th/9908060 +nucl-th/9908061 +nucl-th/9908064 +nucl-th/9908067 +nucl-th/9908071 +nucl-th/9908072 +nucl-th/9908075 +nucl-th/9908076 +nucl-th/9908077 +nucl-th/9908078 +nucl-th/9908079 +nucl-th/9908081 +nucl-th/9908082 +nucl-th/9908086 +nucl-th/9908088 +nucl-th/9909003 +nucl-th/9909005 +nucl-th/9909012 +nucl-th/9909014 +nucl-th/9909017 +nucl-th/9909019 +nucl-th/9909023 +nucl-th/9909025 +nucl-th/9909027 +nucl-th/9909028 +nucl-th/9909029 +nucl-th/9909030 +nucl-th/9909032 +nucl-th/9909033 +nucl-th/9909034 +nucl-th/9909037 +nucl-th/9909038 +nucl-th/9909039 +nucl-th/9909040 +nucl-th/9909042 +nucl-th/9909043 +nucl-th/9909044 +nucl-th/9909045 +nucl-th/9909046 +nucl-th/9909047 +nucl-th/9909048 +nucl-th/9909049 +nucl-th/9909050 +nucl-th/9909054 +nucl-th/9909055 +nucl-th/9909057 +nucl-th/9909060 +nucl-th/9909061 +nucl-th/9909062 +nucl-th/9909064 +nucl-th/9909069 +nucl-th/9909071 +nucl-th/9909074 +nucl-th/9909076 +nucl-th/9909078 +nucl-th/9909079 +nucl-th/9909080 +nucl-th/9909083 +nucl-th/9910001 +nucl-th/9910002 +nucl-th/9910003 +nucl-th/9910005 +nucl-th/9910006 +nucl-th/9910007 +nucl-th/9910009 +nucl-th/9910014 +nucl-th/9910015 +nucl-th/9910016 +nucl-th/9910017 +nucl-th/9910018 +nucl-th/9910023 +nucl-th/9910027 +nucl-th/9910030 +nucl-th/9910032 +nucl-th/9910035 +nucl-th/9910036 +nucl-th/9910039 +nucl-th/9910040 +nucl-th/9910042 +nucl-th/9910044 +nucl-th/9910046 +nucl-th/9910048 +nucl-th/9910049 +nucl-th/9910052 +nucl-th/9910055 +nucl-th/9910056 +nucl-th/9910057 +nucl-th/9910061 +nucl-th/9910062 +nucl-th/9910071 +nucl-th/9910074 +nucl-th/9910075 +nucl-th/9910077 +nucl-th/9910078 +nucl-th/9910079 +nucl-th/9911004 +nucl-th/9911005 +nucl-th/9911006 +nucl-th/9911007 +nucl-th/9911010 +nucl-th/9911011 +nucl-th/9911012 +nucl-th/9911015 +nucl-th/9911018 +nucl-th/9911021 +nucl-th/9911022 +nucl-th/9911029 +nucl-th/9911030 +nucl-th/9911031 +nucl-th/9911032 +nucl-th/9911033 +nucl-th/9911034 +nucl-th/9911035 +nucl-th/9911036 +nucl-th/9911039 +nucl-th/9911041 +nucl-th/9911042 +nucl-th/9911043 +nucl-th/9911044 +nucl-th/9911046 +nucl-th/9911049 +nucl-th/9911050 +nucl-th/9911052 +nucl-th/9911055 +nucl-th/9911056 +nucl-th/9911057 +nucl-th/9911058 +nucl-th/9911060 +nucl-th/9911062 +nucl-th/9911064 +nucl-th/9911066 +nucl-th/9911067 +nucl-th/9911071 +nucl-th/9911072 +nucl-th/9911073 +nucl-th/9911077 +nucl-th/9911078 +nucl-th/9911079 +nucl-th/9911080 +nucl-th/9912003 +nucl-th/9912004 +nucl-th/9912006 +nucl-th/9912011 +nucl-th/9912013 +nucl-th/9912014 +nucl-th/9912015 +nucl-th/9912017 +nucl-th/9912019 +nucl-th/9912020 +nucl-th/9912021 +nucl-th/9912023 +nucl-th/9912025 +nucl-th/9912026 +nucl-th/9912027 +nucl-th/9912033 +nucl-th/9912035 +nucl-th/9912036 +nucl-th/9912037 +nucl-th/9912040 +nucl-th/9912042 +nucl-th/9912043 +nucl-th/9912044 +nucl-th/9912045 +nucl-th/9912047 +nucl-th/9912048 +nucl-th/9912050 +nucl-th/9912051 +nucl-th/9912052 +nucl-th/9912053 +nucl-th/9912054 +nucl-th/9912055 +nucl-th/9912057 +nucl-th/9912058 +nucl-th/9912059 +nucl-th/9912060 +nucl-th/9912061 +nucl-th/9912062 +nucl-th/9912064 +nucl-th/9912065 +nucl-th/9912067 +nucl-th/9912069 +nucl-th/9912070 +nucl-th/9912071 +nucl-th/9912072 +nucl-th/9912073 +nucl-th/9912076 +patt-sol/9801001 Pattern Formation and Solitons +patt-sol/9801003 Pattern Formation and Solitons +patt-sol/9801004 Pattern Formation and Solitons +patt-sol/9802001 Pattern Formation and Solitons +patt-sol/9802002 Pattern Formation and Solitons +patt-sol/9802003 Pattern Formation and Solitons +patt-sol/9802005 Pattern Formation and Solitons +patt-sol/9803002 Pattern Formation and Solitons +patt-sol/9803003 Pattern Formation and Solitons +patt-sol/9804004 Pattern Formation and Solitons +patt-sol/9805001 Pattern Formation and Solitons +patt-sol/9805002 Pattern Formation and Solitons +patt-sol/9805003 Pattern Formation and Solitons +patt-sol/9805004 Pattern Formation and Solitons +patt-sol/9805006 Pattern Formation and Solitons +patt-sol/9805007 Pattern Formation and Solitons +patt-sol/9805008 Pattern Formation and Solitons +patt-sol/9805009 Pattern Formation and Solitons +patt-sol/9806001 Pattern Formation and Solitons +patt-sol/9806002 Pattern Formation and Solitons +patt-sol/9806003 Pattern Formation and Solitons +patt-sol/9806004 Pattern Formation and Solitons +patt-sol/9806005 Pattern Formation and Solitons +patt-sol/9806006 Pattern Formation and Solitons +patt-sol/9806007 Pattern Formation and Solitons +patt-sol/9808002 Pattern Formation and Solitons +patt-sol/9808003 Pattern Formation and Solitons +patt-sol/9808006 Pattern Formation and Solitons +patt-sol/9808007 Pattern Formation and Solitons +patt-sol/9809001 Pattern Formation and Solitons +patt-sol/9809002 Pattern Formation and Solitons +patt-sol/9809003 Pattern Formation and Solitons +patt-sol/9809004 Pattern Formation and Solitons +patt-sol/9809005 Pattern Formation and Solitons +patt-sol/9809006 Pattern Formation and Solitons +patt-sol/9809008 Pattern Formation and Solitons +patt-sol/9809009 Pattern Formation and Solitons +patt-sol/9809010 Pattern Formation and Solitons +patt-sol/9809011 Pattern Formation and Solitons +patt-sol/9810001 Pattern Formation and Solitons +patt-sol/9810003 Pattern Formation and Solitons +patt-sol/9810004 Pattern Formation and Solitons +patt-sol/9810007 Pattern Formation and Solitons +patt-sol/9810008 Pattern Formation and Solitons +patt-sol/9810009 Pattern Formation and Solitons +patt-sol/9811001 Pattern Formation and Solitons +patt-sol/9811002 Pattern Formation and Solitons +patt-sol/9811004 Pattern Formation and Solitons +patt-sol/9811005 Pattern Formation and Solitons +patt-sol/9812001 Pattern Formation and Solitons +patt-sol/9812004 Pattern Formation and Solitons +patt-sol/9812005 Pattern Formation and Solitons +patt-sol/9812009 Pattern Formation and Solitons +patt-sol/9901001 Pattern Formation and Solitons +patt-sol/9901003 Pattern Formation and Solitons +patt-sol/9902001 Pattern Formation and Solitons +patt-sol/9902002 Pattern Formation and Solitons +patt-sol/9902004 Pattern Formation and Solitons +patt-sol/9902005 Pattern Formation and Solitons +patt-sol/9902006 Pattern Formation and Solitons +patt-sol/9903001 Pattern Formation and Solitons +patt-sol/9903003 Pattern Formation and Solitons +patt-sol/9903005 Pattern Formation and Solitons +patt-sol/9903006 Pattern Formation and Solitons +patt-sol/9904001 Pattern Formation and Solitons +patt-sol/9904004 Pattern Formation and Solitons +patt-sol/9904005 Pattern Formation and Solitons +patt-sol/9904007 Pattern Formation and Solitons +patt-sol/9904008 Pattern Formation and Solitons +patt-sol/9905001 Pattern Formation and Solitons +patt-sol/9905003 Pattern Formation and Solitons +patt-sol/9905004 Pattern Formation and Solitons +patt-sol/9905005 Pattern Formation and Solitons +patt-sol/9905006 Pattern Formation and Solitons +patt-sol/9905007 Pattern Formation and Solitons +patt-sol/9905008 Pattern Formation and Solitons +patt-sol/9905009 Pattern Formation and Solitons +patt-sol/9906002 Pattern Formation and Solitons +patt-sol/9906004 Pattern Formation and Solitons +patt-sol/9906005 Pattern Formation and Solitons +patt-sol/9906006 Pattern Formation and Solitons +patt-sol/9906008 Pattern Formation and Solitons +patt-sol/9906009 Pattern Formation and Solitons +patt-sol/9907003 Pattern Formation and Solitons +patt-sol/9907004 Pattern Formation and Solitons +patt-sol/9907005 Pattern Formation and Solitons +patt-sol/9908001 Pattern Formation and Solitons +patt-sol/9908004 Pattern Formation and Solitons +patt-sol/9908006 Pattern Formation and Solitons +patt-sol/9908007 Pattern Formation and Solitons +patt-sol/9909002 Pattern Formation and Solitons +patt-sol/9909003 Pattern Formation and Solitons +patt-sol/9909004 Pattern Formation and Solitons +patt-sol/9909005 Pattern Formation and Solitons +patt-sol/9909007 Pattern Formation and Solitons +patt-sol/9909008 Pattern Formation and Solitons +patt-sol/9909009 Pattern Formation and Solitons +patt-sol/9909010 Pattern Formation and Solitons +patt-sol/9910001 Pattern Formation and Solitons +patt-sol/9910002 Pattern Formation and Solitons +patt-sol/9910003 Pattern Formation and Solitons +patt-sol/9910004 Pattern Formation and Solitons +patt-sol/9910005 Pattern Formation and Solitons +patt-sol/9911001 Pattern Formation and Solitons +patt-sol/9911003 Pattern Formation and Solitons +patt-sol/9911004 Pattern Formation and Solitons +patt-sol/9911006 Pattern Formation and Solitons +patt-sol/9911007 Pattern Formation and Solitons +patt-sol/9911008 Pattern Formation and Solitons +patt-sol/9912001 Pattern Formation and Solitons +patt-sol/9912002 Pattern Formation and Solitons +patt-sol/9912003 Pattern Formation and Solitons +patt-sol/9912005 Pattern Formation and Solitons +patt-sol/9912007 Pattern Formation and Solitons +physics/9801003 Instrumentation and Detectors +physics/9801004 Instrumentation and Detectors +physics/9801007 +physics/9801012 Chemical Physics +physics/9801014 Atomic Physics +physics/9801015 Plasma Physics +physics/9801020 Atomic Physics +physics/9801026 Biological Physics +physics/9801027 Biological Physics +physics/9801028 Fluid Dynamics +physics/9801032 Atomic Physics +physics/9801033 Instrumentation and Detectors +physics/9802001 Biological Physics +physics/9802003 Atomic Physics +physics/9802005 Accelerator Physics +physics/9802006 Instrumentation and Detectors +physics/9802010 +physics/9802012 +physics/9802014 Computational Physics +physics/9802017 Atomic and Molecular Clusters +physics/9802019 Fluid Dynamics +physics/9802020 Computational Physics +physics/9802022 Chemical Physics +physics/9802024 Instrumentation and Detectors +physics/9802025 Plasma Physics +physics/9802026 Plasma Physics +physics/9802029 Atomic Physics +physics/9802031 General Physics +physics/9802032 Optics +physics/9802035 +physics/9802036 Classical Physics +physics/9802040 Atomic Physics +physics/9802042 Atomic Physics +physics/9802045 +physics/9802047 Classical Physics +physics/9802050 Plasma Physics +physics/9802052 Atomic Physics +physics/9802053 Classical Physics +physics/9803001 Chemical Physics +physics/9803003 Atomic Physics +physics/9803006 Classical Physics +physics/9803007 Atomic Physics +physics/9803009 +physics/9803012 Atomic Physics +physics/9803013 Optics +physics/9803014 +physics/9803015 Optics +physics/9803016 Fluid Dynamics +physics/9803020 Classical Physics +physics/9803024 +physics/9803026 Space Physics +physics/9803032 Plasma Physics +physics/9803033 +physics/9803037 Classical Physics +physics/9803038 +physics/9803040 Optics +physics/9803041 Optics +physics/9803044 Classical Physics +physics/9803048 Biological Physics +physics/9804002 Optics +physics/9804003 Optics +physics/9804004 Biological Physics +physics/9804006 Optics +physics/9804008 Plasma Physics +physics/9804011 Atomic Physics +physics/9804012 Chemical Physics +physics/9804014 Plasma Physics +physics/9804015 Accelerator Physics +physics/9804019 Computational Physics +physics/9804022 Computational Physics +physics/9804023 Atomic Physics +physics/9804025 Classical Physics +physics/9804027 Space Physics +physics/9804028 Atomic Physics +physics/9804029 Plasma Physics +physics/9804031 Plasma Physics +physics/9804032 General Physics +physics/9804033 Plasma Physics +physics/9804034 Atomic Physics +physics/9804036 Biological Physics +physics/9805002 Computational Physics +physics/9805007 Biological Physics +physics/9805008 Atomic Physics +physics/9805011 Computational Physics +physics/9805012 Atomic Physics +physics/9805013 Atomic Physics +physics/9805016 Chemical Physics +physics/9805017 Plasma Physics +physics/9805018 Data Analysis, Statistics and Probability +physics/9805029 Data Analysis, Statistics and Probability +physics/9805030 Optics +physics/9805033 Atomic Physics +physics/9805034 Chemical Physics +physics/9805035 Instrumentation and Detectors +physics/9805036 Atomic Physics +physics/9805037 Atomic Physics +physics/9806003 Optics +physics/9806004 Physics Education +physics/9806008 Atomic Physics +physics/9806014 Instrumentation and Detectors +physics/9806016 Chemical Physics +physics/9806018 Atomic Physics +physics/9806019 Atomic Physics +physics/9806020 Atomic Physics +physics/9806021 Optics +physics/9806022 Atomic and Molecular Clusters +physics/9806025 Atomic and Molecular Clusters +physics/9806032 Biological Physics +physics/9806033 Computational Physics +physics/9806035 Classical Physics +physics/9806038 Chemical Physics +physics/9806039 Accelerator Physics +physics/9806040 Atomic Physics +physics/9806042 Instrumentation and Detectors +physics/9806046 Biological Physics +physics/9807002 Atomic and Molecular Clusters +physics/9807010 Plasma Physics +physics/9807011 Optics +physics/9807014 Optics +physics/9807017 Computational Physics +physics/9807018 Data Analysis, Statistics and Probability +physics/9807019 Physics Education +physics/9807020 Fluid Dynamics +physics/9807021 Plasma Physics +physics/9807022 Plasma Physics +physics/9807024 Plasma Physics +physics/9807026 Geophysics +physics/9807032 Classical Physics +physics/9807034 Classical Physics +physics/9807035 Atomic Physics +physics/9807049 Plasma Physics +physics/9807051 Data Analysis, Statistics and Probability +physics/9807052 Atomic Physics +physics/9807056 Classical Physics +physics/9808001 Classical Physics +physics/9808008 Medical Physics +physics/9808014 Chemical Physics +physics/9808017 Chemical Physics +physics/9808019 Plasma Physics +physics/9808020 Atomic Physics +physics/9808022 Optics +physics/9808023 Optics +physics/9808026 Optics +physics/9808029 Atomic Physics +physics/9808030 Computational Physics +physics/9808036 Atomic and Molecular Clusters +physics/9808037 Space Physics +physics/9808042 Classical Physics +physics/9808046 Atomic Physics +physics/9808049 Physics Education +physics/9809002 Atomic Physics +physics/9809004 Data Analysis, Statistics and Probability +physics/9809005 Atomic Physics +physics/9809006 Atomic and Molecular Clusters +physics/9809007 Atomic Physics +physics/9809009 Plasma Physics +physics/9809010 Atomic Physics +physics/9809015 Physics Education +physics/9809016 Atomic Physics +physics/9809017 Atomic Physics +physics/9809019 Atomic and Molecular Clusters +physics/9809022 Atomic Physics +physics/9809027 Instrumentation and Detectors +physics/9809031 Atomic Physics +physics/9809033 Classical Physics +physics/9809036 Geophysics +physics/9810001 Atomic and Molecular Clusters +physics/9810007 Biological Physics +physics/9810009 Atomic Physics +physics/9810011 Atomic Physics +physics/9810013 Optics +physics/9810015 Computational Physics +physics/9810016 Optics +physics/9810018 Data Analysis, Statistics and Probability +physics/9810019 Biological Physics +physics/9810020 Optics +physics/9810021 Data Analysis, Statistics and Probability +physics/9810028 Atomic Physics +physics/9810029 Biological Physics +physics/9810030 Atomic and Molecular Clusters +physics/9810032 Atomic and Molecular Clusters +physics/9810035 Biological Physics +physics/9810036 Optics +physics/9810038 Atomic Physics +physics/9810039 Physics Education +physics/9810040 Atomic Physics +physics/9810044 Atomic Physics +physics/9810050 Chemical Physics +physics/9810053 Atomic Physics +physics/9810057 Atomic Physics +physics/9810058 Chemical Physics +physics/9810060 Classical Physics +physics/9811001 General Physics +physics/9811006 Accelerator Physics +physics/9811007 Accelerator Physics +physics/9811008 Optics +physics/9811014 Data Analysis, Statistics and Probability +physics/9811020 Accelerator Physics +physics/9811023 Atomic and Molecular Clusters +physics/9811025 Data Analysis, Statistics and Probability +physics/9811026 Atomic Physics +physics/9811027 Biological Physics +physics/9811028 Instrumentation and Detectors +physics/9811029 Physics Education +physics/9811034 Instrumentation and Detectors +physics/9811037 Biological Physics +physics/9811041 Atomic Physics +physics/9811042 Fluid Dynamics +physics/9811044 Atomic Physics +physics/9811047 Atomic Physics +physics/9811051 Plasma Physics +physics/9811053 Atomic Physics +physics/9811054 Optics +physics/9811056 Atomic Physics +physics/9811057 Atomic Physics +physics/9812005 General Physics +physics/9812010 Atomic Physics +physics/9812013 Atomic Physics +physics/9812016 Data Analysis, Statistics and Probability +physics/9812017 Plasma Physics +physics/9812019 Chemical Physics +physics/9812020 Accelerator Physics +physics/9812023 Accelerator Physics +physics/9812024 Atomic Physics +physics/9812027 Instrumentation and Detectors +physics/9812029 Atomic Physics +physics/9812032 Atomic Physics +physics/9812035 Computational Physics +physics/9812036 Data Analysis, Statistics and Probability +physics/9812041 Biological Physics +physics/9812042 Instrumentation and Detectors +physics/9812053 Classical Physics +physics/9901002 Data Analysis, Statistics and Probability +physics/9901005 Computational Physics +physics/9901006 Classical Physics +physics/9901008 Atomic and Molecular Clusters +physics/9901010 Accelerator Physics +physics/9901015 Chemical Physics +physics/9901016 Atomic and Molecular Clusters +physics/9901018 Instrumentation and Detectors +physics/9901026 Computational Physics +physics/9901028 Computational Physics +physics/9901031 Computational Physics +physics/9901032 Computational Physics +physics/9901034 Data Analysis, Statistics and Probability +physics/9901046 Accelerator Physics +physics/9901048 Chemical Physics +physics/9901052 Biological Physics +physics/9901053 Biological Physics +physics/9901054 Computational Physics +physics/9901055 Fluid Dynamics +physics/9901056 Computational Physics +physics/9901057 Computational Physics +physics/9902005 Medical Physics +physics/9902009 Atomic Physics +physics/9902019 Chemical Physics +physics/9902020 Atomic Physics +physics/9902022 Biological Physics +physics/9902023 Biological Physics +physics/9902025 Atomic and Molecular Clusters +physics/9902026 Chemical Physics +physics/9902027 Optics +physics/9902028 Optics +physics/9902030 Medical Physics +physics/9902033 Atomic Physics +physics/9902037 Optics +physics/9902041 Biological Physics +physics/9902042 Instrumentation and Detectors +physics/9902047 Atomic and Molecular Clusters +physics/9902053 Atomic Physics +physics/9902058 Atomic Physics +physics/9902059 Atomic Physics +physics/9902060 Atomic Physics +physics/9902062 Accelerator Physics +physics/9902063 Accelerator Physics +physics/9902070 Atomic Physics +physics/9902071 Fluid Dynamics +physics/9903001 Atomic Physics +physics/9903004 Atomic Physics +physics/9903006 Atomic Physics +physics/9903008 Computational Physics +physics/9903009 Chemical Physics +physics/9903012 Computational Physics +physics/9903015 Classical Physics +physics/9903016 Atomic Physics +physics/9903018 Optics +physics/9903022 Classical Physics +physics/9903024 Biological Physics +physics/9903026 Plasma Physics +physics/9903028 Fluid Dynamics +physics/9903031 Instrumentation and Detectors +physics/9903036 Atomic Physics +physics/9903041 Atomic and Molecular Clusters +physics/9903042 Classical Physics +physics/9903044 Computational Physics +physics/9903045 Data Analysis, Statistics and Probability +physics/9903048 Atomic and Molecular Clusters +physics/9903049 Atomic and Molecular Clusters +physics/9903050 Biological Physics +physics/9903051 Atomic Physics +physics/9904002 Atmospheric and Oceanic Physics +physics/9904005 Classical Physics +physics/9904008 Chemical Physics +physics/9904009 Instrumentation and Detectors +physics/9904010 Instrumentation and Detectors +physics/9904011 Plasma Physics +physics/9904014 Instrumentation and Detectors +physics/9904015 Instrumentation and Detectors +physics/9904021 Chemical Physics +physics/9904023 Biological Physics +physics/9904025 Atomic Physics +physics/9904032 Atomic Physics +physics/9904037 Atomic and Molecular Clusters +physics/9904038 Chemical Physics +physics/9904052 Biological Physics +physics/9904053 Atomic Physics +physics/9904056 Optics +physics/9904057 Chemical Physics +physics/9904062 Computational Physics +physics/9904065 Medical Physics +physics/9904066 Chemical Physics +physics/9904067 Biological Physics +physics/9905009 Chemical Physics +physics/9905010 Chemical Physics +physics/9905015 Chemical Physics +physics/9905016 Plasma Physics +physics/9905018 Physics Education +physics/9905019 Physics Education +physics/9905020 Atomic Physics +physics/9905021 Data Analysis, Statistics and Probability +physics/9905022 Chemical Physics +physics/9905028 Optics +physics/9905029 Optics +physics/9905031 Optics +physics/9905039 Atomic Physics +physics/9905043 Atomic Physics +physics/9905052 Atomic and Molecular Clusters +physics/9905055 Fluid Dynamics +physics/9905057 Physics Education +physics/9905059 Plasma Physics +physics/9905060 Plasma Physics +physics/9905061 Plasma Physics +physics/9906001 Plasma Physics +physics/9906002 Atomic Physics +physics/9906003 Fluid Dynamics +physics/9906005 Atomic and Molecular Clusters +physics/9906011 Plasma Physics +physics/9906013 Atomic Physics +physics/9906014 Plasma Physics +physics/9906015 Atomic Physics +physics/9906016 Plasma Physics +physics/9906017 Instrumentation and Detectors +physics/9906018 Fluid Dynamics +physics/9906025 Atomic Physics +physics/9906026 Atomic and Molecular Clusters +physics/9906027 Optics +physics/9906029 Atomic Physics +physics/9906032 General Physics +physics/9906033 Atomic Physics +physics/9906036 Optics +physics/9906037 Chemical Physics +physics/9906038 Optics +physics/9906040 Popular Physics +physics/9906041 Atomic Physics +physics/9906043 Data Analysis, Statistics and Probability +physics/9906044 Atomic Physics +physics/9906045 Atomic Physics +physics/9906046 Atomic Physics +physics/9906047 Atomic Physics +physics/9906049 Atomic Physics +physics/9906051 Fluid Dynamics +physics/9906052 Fluid Dynamics +physics/9906053 Atomic Physics +physics/9906054 Accelerator Physics +physics/9906055 Atomic Physics +physics/9906061 Plasma Physics +physics/9906063 Instrumentation and Detectors +physics/9906064 Data Analysis, Statistics and Probability +physics/9907004 Plasma Physics +physics/9907007 Chemical Physics +physics/9907014 Atomic Physics +physics/9907015 Instrumentation and Detectors +physics/9907019 Instrumentation and Detectors +physics/9907022 Atomic and Molecular Clusters +physics/9907023 Instrumentation and Detectors +physics/9907025 Computational Physics +physics/9907030 Atomic Physics +physics/9907036 Classical Physics +physics/9907038 Atomic Physics +physics/9907039 Optics +physics/9907043 Accelerator Physics +physics/9907047 Atomic Physics +physics/9907049 Biological Physics +physics/9908001 Atomic Physics +physics/9908002 Atomic Physics +physics/9908007 Fluid Dynamics +physics/9908008 Computational Physics +physics/9908011 Data Analysis, Statistics and Probability +physics/9908014 Data Analysis, Statistics and Probability +physics/9908030 Atomic Physics +physics/9908031 Atomic Physics +physics/9908033 Atomic Physics +physics/9908037 Chemical Physics +physics/9908038 Atomic Physics +physics/9908051 Plasma Physics +physics/9908054 Biological Physics +physics/9908055 Fluid Dynamics +physics/9908057 Classical Physics +physics/9908059 Atomic Physics +physics/9908061 Atomic Physics +physics/9909004 Chemical Physics +physics/9909005 Atomic Physics +physics/9909006 Chemical Physics +physics/9909010 Optics +physics/9909027 Atomic Physics +physics/9909028 Atomic Physics +physics/9909030 Atomic Physics +physics/9909031 Atomic Physics +physics/9909032 Chemical Physics +physics/9909034 Atomic Physics +physics/9909037 Atomic and Molecular Clusters +physics/9909042 Computational Physics +physics/9909043 General Physics +physics/9909044 Atomic Physics +physics/9909046 Fluid Dynamics +physics/9909056 Chemical Physics +physics/9909057 Chemical Physics +physics/9909058 Atomic and Molecular Clusters +physics/9909060 Atomic Physics +physics/9909063 Plasma Physics +physics/9909064 Optics +physics/9910001 Chemical Physics +physics/9910002 Instrumentation and Detectors +physics/9910004 Computational Physics +physics/9910007 Atomic Physics +physics/9910008 Biological Physics +physics/9910009 Plasma Physics +physics/9910012 Atomic Physics +physics/9910013 Atomic Physics +physics/9910014 Plasma Physics +physics/9910017 Atomic Physics +physics/9910018 Plasma Physics +physics/9910019 Classical Physics +physics/9910026 Accelerator Physics +physics/9910029 Plasma Physics +physics/9910030 Chemical Physics +physics/9910033 Instrumentation and Detectors +physics/9910035 Data Analysis, Statistics and Probability +physics/9910038 General Physics +physics/9910043 Atomic Physics +physics/9910051 Atomic Physics +physics/9911001 Optics +physics/9911008 Plasma Physics +physics/9911010 Atomic Physics +physics/9911012 Atomic Physics +physics/9911014 Plasma Physics +physics/9911018 Medical Physics +physics/9911019 Medical Physics +physics/9911023 Computational Physics +physics/9911024 Fluid Dynamics +physics/9911026 Atomic Physics +physics/9911032 Space Physics +physics/9911033 Optics +physics/9911038 Biological Physics +physics/9911040 Instrumentation and Detectors +physics/9911044 Optics +physics/9911046 Atomic Physics +physics/9911048 Biological Physics +physics/9911053 Atomic and Molecular Clusters +physics/9911055 Plasma Physics +physics/9911056 Plasma Physics +physics/9911063 Biological Physics +physics/9911064 Atomic Physics +physics/9911072 Fluid Dynamics +physics/9911074 Biological Physics +physics/9911076 Chemical Physics +physics/9912016 Chemical Physics +physics/9912023 Atomic Physics +physics/9912028 Atomic Physics +physics/9912031 Physics Education +physics/9912034 Data Analysis, Statistics and Probability +physics/9912036 Atomic Physics +physics/9912039 Plasma Physics +physics/9912041 Plasma Physics +physics/9912043 Biological Physics +physics/9912044 Atomic Physics +physics/9912045 Atomic and Molecular Clusters +physics/9912048 Plasma Physics +physics/9912049 Classical Physics +physics/9912050 Fluid Dynamics +physics/9912053 Biological Physics +physics/9912054 Atomic Physics +physics/9912055 Computational Physics +quant-ph/0401186 +quant-ph/0403169 +quant-ph/0405185 +quant-ph/0605033 +quant-ph/9801001 +quant-ph/9801002 +quant-ph/9801005 +quant-ph/9801006 +quant-ph/9801007 +quant-ph/9801008 +quant-ph/9801010 +quant-ph/9801012 +quant-ph/9801013 +quant-ph/9801018 +quant-ph/9801020 +quant-ph/9801021 +quant-ph/9801023 +quant-ph/9801024 +quant-ph/9801025 +quant-ph/9801027 +quant-ph/9801028 +quant-ph/9801030 +quant-ph/9801031 +quant-ph/9801035 +quant-ph/9801037 +quant-ph/9801041 +quant-ph/9801042 +quant-ph/9801046 +quant-ph/9801048 +quant-ph/9801050 +quant-ph/9801051 +quant-ph/9801053 +quant-ph/9801054 +quant-ph/9801055 +quant-ph/9801057 +quant-ph/9801063 +quant-ph/9801064 +quant-ph/9801067 +quant-ph/9801069 +quant-ph/9801070 +quant-ph/9801073 +quant-ph/9801074 +quant-ph/9801077 +quant-ph/9802014 +quant-ph/9802016 +quant-ph/9802018 +quant-ph/9802024 +quant-ph/9802027 +quant-ph/9802034 +quant-ph/9802039 +quant-ph/9802044 +quant-ph/9802050 +quant-ph/9802052 +quant-ph/9802055 +quant-ph/9802058 +quant-ph/9802060 +quant-ph/9802064 +quant-ph/9802066 +quant-ph/9802068 +quant-ph/9802069 +quant-ph/9803003 +quant-ph/9803006 +quant-ph/9803009 +quant-ph/9803012 +quant-ph/9803014 +quant-ph/9803015 +quant-ph/9803016 +quant-ph/9803017 +quant-ph/9803022 +quant-ph/9803023 +quant-ph/9803024 +quant-ph/9803026 +quant-ph/9803031 +quant-ph/9803038 +quant-ph/9803040 +quant-ph/9803042 +quant-ph/9803044 +quant-ph/9803045 +quant-ph/9803050 +quant-ph/9803052 +quant-ph/9803057 +quant-ph/9803058 +quant-ph/9803060 +quant-ph/9803061 +quant-ph/9803062 +quant-ph/9803065 +quant-ph/9803066 +quant-ph/9803067 +quant-ph/9803070 +quant-ph/9803072 +quant-ph/9803073 +quant-ph/9803076 +quant-ph/9803078 +quant-ph/9803079 +quant-ph/9803081 +quant-ph/9803082 +quant-ph/9803086 +quant-ph/9803087 +quant-ph/9804001 +quant-ph/9804003 +quant-ph/9804004 +quant-ph/9804005 +quant-ph/9804009 +quant-ph/9804010 +quant-ph/9804011 +quant-ph/9804014 +quant-ph/9804016 +quant-ph/9804018 +quant-ph/9804020 +quant-ph/9804022 +quant-ph/9804024 +quant-ph/9804029 +quant-ph/9804030 +quant-ph/9804033 +quant-ph/9804035 +quant-ph/9804041 +quant-ph/9804042 +quant-ph/9804044 +quant-ph/9804045 +quant-ph/9804048 +quant-ph/9804051 +quant-ph/9804052 +quant-ph/9804053 +quant-ph/9804054 +quant-ph/9804055 +quant-ph/9804056 +quant-ph/9804058 +quant-ph/9804064 +quant-ph/9804071 +quant-ph/9804075 +quant-ph/9805001 +quant-ph/9805003 +quant-ph/9805005 +quant-ph/9805009 +quant-ph/9805014 +quant-ph/9805017 +quant-ph/9805019 +quant-ph/9805023 +quant-ph/9805032 +quant-ph/9805035 +quant-ph/9805038 +quant-ph/9805041 +quant-ph/9805042 +quant-ph/9805044 +quant-ph/9805045 +quant-ph/9805055 +quant-ph/9805056 +quant-ph/9805057 +quant-ph/9805060 +quant-ph/9805062 +quant-ph/9805063 +quant-ph/9805069 +quant-ph/9805070 +quant-ph/9805073 +quant-ph/9805074 +quant-ph/9805076 +quant-ph/9805077 +quant-ph/9805085 +quant-ph/9805088 +quant-ph/9806001 +quant-ph/9806004 +quant-ph/9806006 +quant-ph/9806008 +quant-ph/9806012 +quant-ph/9806019 +quant-ph/9806021 +quant-ph/9806024 +quant-ph/9806028 +quant-ph/9806032 +quant-ph/9806035 +quant-ph/9806036 +quant-ph/9806038 +quant-ph/9806043 +quant-ph/9806044 +quant-ph/9806045 +quant-ph/9806049 +quant-ph/9806051 +quant-ph/9806052 +quant-ph/9806053 +quant-ph/9806058 +quant-ph/9806061 +quant-ph/9806062 +quant-ph/9806063 +quant-ph/9806068 +quant-ph/9806069 +quant-ph/9806073 +quant-ph/9806075 +quant-ph/9806076 +quant-ph/9806077 +quant-ph/9806078 +quant-ph/9806080 +quant-ph/9806081 +quant-ph/9806094 +quant-ph/9806097 +quant-ph/9806098 +quant-ph/9807001 +quant-ph/9807005 +quant-ph/9807011 +quant-ph/9807012 +quant-ph/9807013 +quant-ph/9807022 +quant-ph/9807023 +quant-ph/9807024 +quant-ph/9807028 +quant-ph/9807033 +quant-ph/9807040 +quant-ph/9807043 +quant-ph/9807044 +quant-ph/9807045 +quant-ph/9807058 +quant-ph/9807066 +quant-ph/9807069 +quant-ph/9807073 +quant-ph/9807074 +quant-ph/9807079 +quant-ph/9807080 +quant-ph/9807081 +quant-ph/9807082 +quant-ph/9807084 +quant-ph/9807088 +quant-ph/9807089 +quant-ph/9808003 +quant-ph/9808006 +quant-ph/9808007 +quant-ph/9808009 +quant-ph/9808010 +quant-ph/9808013 +quant-ph/9808014 +quant-ph/9808016 +quant-ph/9808024 +quant-ph/9808030 +quant-ph/9808031 +quant-ph/9808033 +quant-ph/9808038 +quant-ph/9808040 +quant-ph/9808042 +quant-ph/9808048 +quant-ph/9808049 +quant-ph/9808053 +quant-ph/9808055 +quant-ph/9808064 +quant-ph/9809013 +quant-ph/9809024 +quant-ph/9809025 +quant-ph/9809035 +quant-ph/9809037 +quant-ph/9809040 +quant-ph/9809043 +quant-ph/9809046 +quant-ph/9809047 +quant-ph/9809050 +quant-ph/9809051 +quant-ph/9809052 +quant-ph/9809053 +quant-ph/9809054 +quant-ph/9809057 +quant-ph/9809061 +quant-ph/9809062 +quant-ph/9809064 +quant-ph/9809067 +quant-ph/9809072 +quant-ph/9809076 +quant-ph/9809077 +quant-ph/9809078 +quant-ph/9809082 +quant-ph/9809085 +quant-ph/9809086 +quant-ph/9809087 +quant-ph/9809088 +quant-ph/9810001 +quant-ph/9810002 +quant-ph/9810003 +quant-ph/9810004 +quant-ph/9810007 +quant-ph/9810008 +quant-ph/9810013 +quant-ph/9810018 +quant-ph/9810028 +quant-ph/9810030 +quant-ph/9810031 +quant-ph/9810034 +quant-ph/9810035 +quant-ph/9810039 +quant-ph/9810040 +quant-ph/9810042 +quant-ph/9810045 +quant-ph/9810047 +quant-ph/9810051 +quant-ph/9810052 +quant-ph/9810053 +quant-ph/9810056 +quant-ph/9810059 +quant-ph/9810062 +quant-ph/9810063 +quant-ph/9810067 +quant-ph/9810072 +quant-ph/9810073 +quant-ph/9810076 +quant-ph/9810080 +quant-ph/9810082 +quant-ph/9810085 +quant-ph/9810086 +quant-ph/9810087 +quant-ph/9810089 +quant-ph/9810092 +quant-ph/9810093 +quant-ph/9810094 +quant-ph/9810095 +quant-ph/9810096 +quant-ph/9811002 +quant-ph/9811003 +quant-ph/9811004 +quant-ph/9811007 +quant-ph/9811009 +quant-ph/9811012 +quant-ph/9811014 +quant-ph/9811015 +quant-ph/9811016 +quant-ph/9811017 +quant-ph/9811018 +quant-ph/9811019 +quant-ph/9811020 +quant-ph/9811021 +quant-ph/9811022 +quant-ph/9811024 +quant-ph/9811025 +quant-ph/9811027 +quant-ph/9811029 +quant-ph/9811033 +quant-ph/9811035 +quant-ph/9811036 +quant-ph/9811037 +quant-ph/9811038 +quant-ph/9811040 +quant-ph/9811041 +quant-ph/9811043 +quant-ph/9811047 +quant-ph/9811049 +quant-ph/9811053 +quant-ph/9811054 +quant-ph/9811055 +quant-ph/9811060 +quant-ph/9811062 +quant-ph/9811063 +quant-ph/9811065 +quant-ph/9811066 +quant-ph/9811067 +quant-ph/9811068 +quant-ph/9811075 +quant-ph/9811076 +quant-ph/9811078 +quant-ph/9811085 +quant-ph/9811086 +quant-ph/9811088 +quant-ph/9811089 +quant-ph/9811090 +quant-ph/9811091 +quant-ph/9812004 +quant-ph/9812005 +quant-ph/9812009 +quant-ph/9812010 +quant-ph/9812012 +quant-ph/9812013 +quant-ph/9812016 +quant-ph/9812018 +quant-ph/9812019 +quant-ph/9812023 +quant-ph/9812026 +quant-ph/9812028 +quant-ph/9812030 +quant-ph/9812033 +quant-ph/9812034 +quant-ph/9812035 +quant-ph/9812038 +quant-ph/9812039 +quant-ph/9812040 +quant-ph/9812043 +quant-ph/9812044 +quant-ph/9812045 +quant-ph/9812046 +quant-ph/9812048 +quant-ph/9812058 +quant-ph/9812062 +quant-ph/9812063 +quant-ph/9812068 +quant-ph/9812069 +quant-ph/9812073 +quant-ph/9812074 +quant-ph/9812075 +quant-ph/9812077 +quant-ph/9812081 +quant-ph/9812083 +quant-ph/9812084 +quant-ph/9812088 +quant-ph/9901003 +quant-ph/9901004 +quant-ph/9901005 +quant-ph/9901012 +quant-ph/9901014 +quant-ph/9901015 +quant-ph/9901019 +quant-ph/9901020 +quant-ph/9901023 +quant-ph/9901024 +quant-ph/9901025 +quant-ph/9901028 +quant-ph/9901030 +quant-ph/9901032 +quant-ph/9901033 +quant-ph/9901035 +quant-ph/9901040 +quant-ph/9901041 +quant-ph/9901042 +quant-ph/9901044 +quant-ph/9901047 +quant-ph/9901057 +quant-ph/9901060 +quant-ph/9901064 +quant-ph/9901066 +quant-ph/9901067 +quant-ph/9901068 +quant-ph/9901069 +quant-ph/9901071 +quant-ph/9901073 +quant-ph/9901074 +quant-ph/9901077 +quant-ph/9902005 +quant-ph/9902006 +quant-ph/9902007 +quant-ph/9902009 +quant-ph/9902014 +quant-ph/9902017 +quant-ph/9902020 +quant-ph/9902022 +quant-ph/9902023 +quant-ph/9902025 +quant-ph/9902026 +quant-ph/9902030 +quant-ph/9902032 +quant-ph/9902033 +quant-ph/9902035 +quant-ph/9902040 +quant-ph/9902041 +quant-ph/9902044 +quant-ph/9902045 +quant-ph/9902046 +quant-ph/9902050 +quant-ph/9902051 +quant-ph/9902057 +quant-ph/9902059 +quant-ph/9902069 +quant-ph/9902071 +quant-ph/9902073 +quant-ph/9902075 +quant-ph/9902076 +quant-ph/9902077 +quant-ph/9902080 +quant-ph/9902084 +quant-ph/9902085 +quant-ph/9903001 +quant-ph/9903003 +quant-ph/9903007 +quant-ph/9903009 +quant-ph/9903015 +quant-ph/9903016 +quant-ph/9903017 +quant-ph/9903019 +quant-ph/9903021 +quant-ph/9903022 +quant-ph/9903024 +quant-ph/9903025 +quant-ph/9903028 +quant-ph/9903029 +quant-ph/9903030 +quant-ph/9903031 +quant-ph/9903040 +quant-ph/9903048 +quant-ph/9903049 +quant-ph/9903051 +quant-ph/9903052 +quant-ph/9903053 +quant-ph/9903055 +quant-ph/9903057 +quant-ph/9903063 +quant-ph/9903064 +quant-ph/9903065 +quant-ph/9903067 +quant-ph/9903070 +quant-ph/9903081 +quant-ph/9903085 +quant-ph/9903091 +quant-ph/9903094 +quant-ph/9903096 +quant-ph/9903102 +quant-ph/9904009 +quant-ph/9904011 +quant-ph/9904012 +quant-ph/9904013 +quant-ph/9904015 +quant-ph/9904017 +quant-ph/9904018 +quant-ph/9904020 +quant-ph/9904026 +quant-ph/9904028 +quant-ph/9904030 +quant-ph/9904031 +quant-ph/9904032 +quant-ph/9904033 +quant-ph/9904041 +quant-ph/9904044 +quant-ph/9904045 +quant-ph/9904047 +quant-ph/9904053 +quant-ph/9904054 +quant-ph/9904056 +quant-ph/9904057 +quant-ph/9904058 +quant-ph/9904060 +quant-ph/9904062 +quant-ph/9904065 +quant-ph/9904080 +quant-ph/9904083 +quant-ph/9904084 +quant-ph/9904088 +quant-ph/9904094 +quant-ph/9904099 +quant-ph/9904103 +quant-ph/9904104 +quant-ph/9905001 +quant-ph/9905006 +quant-ph/9905008 +quant-ph/9905013 +quant-ph/9905017 +quant-ph/9905018 +quant-ph/9905019 +quant-ph/9905020 +quant-ph/9905021 +quant-ph/9905024 +quant-ph/9905028 +quant-ph/9905029 +quant-ph/9905031 +quant-ph/9905034 +quant-ph/9905038 +quant-ph/9905040 +quant-ph/9905043 +quant-ph/9905047 +quant-ph/9905049 +quant-ph/9905050 +quant-ph/9905053 +quant-ph/9905058 +quant-ph/9905059 +quant-ph/9905062 +quant-ph/9905064 +quant-ph/9905069 +quant-ph/9905070 +quant-ph/9905074 +quant-ph/9905075 +quant-ph/9905076 +quant-ph/9905079 +quant-ph/9905081 +quant-ph/9905093 +quant-ph/9905094 +quant-ph/9905096 +quant-ph/9905097 +quant-ph/9905100 +quant-ph/9905102 +quant-ph/9906008 +quant-ph/9906015 +quant-ph/9906016 +quant-ph/9906017 +quant-ph/9906018 +quant-ph/9906020 +quant-ph/9906021 +quant-ph/9906023 +quant-ph/9906024 +quant-ph/9906031 +quant-ph/9906034 +quant-ph/9906041 +quant-ph/9906042 +quant-ph/9906044 +quant-ph/9906045 +quant-ph/9906050 +quant-ph/9906051 +quant-ph/9906052 +quant-ph/9906058 +quant-ph/9906063 +quant-ph/9906068 +quant-ph/9906070 +quant-ph/9906075 +quant-ph/9906076 +quant-ph/9906079 +quant-ph/9906081 +quant-ph/9906087 +quant-ph/9906089 +quant-ph/9906093 +quant-ph/9906097 +quant-ph/9906098 +quant-ph/9906119 +quant-ph/9906121 +quant-ph/9906122 +quant-ph/9906128 +quant-ph/9907001 +quant-ph/9907003 +quant-ph/9907008 +quant-ph/9907014 +quant-ph/9907020 +quant-ph/9907023 +quant-ph/9907024 +quant-ph/9907025 +quant-ph/9907032 +quant-ph/9907034 +quant-ph/9907039 +quant-ph/9907040 +quant-ph/9907044 +quant-ph/9907048 +quant-ph/9907049 +quant-ph/9907055 +quant-ph/9907057 +quant-ph/9907063 +quant-ph/9907066 +quant-ph/9907068 +quant-ph/9907069 +quant-ph/9907071 +quant-ph/9907073 +quant-ph/9907074 +quant-ph/9907084 +quant-ph/9907092 +quant-ph/9907093 +quant-ph/9907095 +quant-ph/9907097 +quant-ph/9907098 +quant-ph/9907099 +quant-ph/9907100 +quant-ph/9907103 +quant-ph/9907105 +quant-ph/9907106 +quant-ph/9907107 +quant-ph/9907110 +quant-ph/9908001 +quant-ph/9908003 +quant-ph/9908004 +quant-ph/9908006 +quant-ph/9908007 +quant-ph/9908009 +quant-ph/9908010 +quant-ph/9908012 +quant-ph/9908013 +quant-ph/9908016 +quant-ph/9908017 +quant-ph/9908018 +quant-ph/9908021 +quant-ph/9908023 +quant-ph/9908024 +quant-ph/9908026 +quant-ph/9908027 +quant-ph/9908028 +quant-ph/9908030 +quant-ph/9908031 +quant-ph/9908033 +quant-ph/9908034 +quant-ph/9908036 +quant-ph/9908038 +quant-ph/9908041 +quant-ph/9908044 +quant-ph/9908045 +quant-ph/9908046 +quant-ph/9908047 +quant-ph/9908049 +quant-ph/9908052 +quant-ph/9908054 +quant-ph/9908055 +quant-ph/9908056 +quant-ph/9908059 +quant-ph/9908060 +quant-ph/9908061 +quant-ph/9908063 +quant-ph/9908065 +quant-ph/9908068 +quant-ph/9908072 +quant-ph/9908074 +quant-ph/9908081 +quant-ph/9908082 +quant-ph/9908086 +quant-ph/9908088 +quant-ph/9909002 +quant-ph/9909003 +quant-ph/9909004 +quant-ph/9909005 +quant-ph/9909006 +quant-ph/9909007 +quant-ph/9909010 +quant-ph/9909011 +quant-ph/9909013 +quant-ph/9909016 +quant-ph/9909017 +quant-ph/9909018 +quant-ph/9909020 +quant-ph/9909027 +quant-ph/9909028 +quant-ph/9909030 +quant-ph/9909031 +quant-ph/9909032 +quant-ph/9909033 +quant-ph/9909037 +quant-ph/9909038 +quant-ph/9909042 +quant-ph/9909043 +quant-ph/9909044 +quant-ph/9909045 +quant-ph/9909046 +quant-ph/9909047 +quant-ph/9909049 +quant-ph/9909051 +quant-ph/9909052 +quant-ph/9909055 +quant-ph/9909057 +quant-ph/9909059 +quant-ph/9909060 +quant-ph/9909061 +quant-ph/9909062 +quant-ph/9909063 +quant-ph/9909064 +quant-ph/9909068 +quant-ph/9909070 +quant-ph/9909072 +quant-ph/9909074 +quant-ph/9909075 +quant-ph/9909076 +quant-ph/9909079 +quant-ph/9909083 +quant-ph/9909085 +quant-ph/9909088 +quant-ph/9909091 +quant-ph/9909092 +quant-ph/9910001 +quant-ph/9910005 +quant-ph/9910006 +quant-ph/9910007 +quant-ph/9910010 +quant-ph/9910015 +quant-ph/9910016 +quant-ph/9910021 +quant-ph/9910022 +quant-ph/9910026 +quant-ph/9910028 +quant-ph/9910031 +quant-ph/9910032 +quant-ph/9910034 +quant-ph/9910041 +quant-ph/9910042 +quant-ph/9910047 +quant-ph/9910048 +quant-ph/9910052 +quant-ph/9910054 +quant-ph/9910055 +quant-ph/9910056 +quant-ph/9910057 +quant-ph/9910061 +quant-ph/9910063 +quant-ph/9910064 +quant-ph/9910066 +quant-ph/9910067 +quant-ph/9910068 +quant-ph/9910069 +quant-ph/9910070 +quant-ph/9910073 +quant-ph/9910074 +quant-ph/9910075 +quant-ph/9910083 +quant-ph/9910084 +quant-ph/9910085 +quant-ph/9910086 +quant-ph/9910087 +quant-ph/9910088 +quant-ph/9910089 +quant-ph/9910091 +quant-ph/9910093 +quant-ph/9910094 +quant-ph/9910095 +quant-ph/9910099 +quant-ph/9910102 +quant-ph/9910106 +quant-ph/9910110 +quant-ph/9910113 +quant-ph/9910123 +quant-ph/9910125 +quant-ph/9911003 +quant-ph/9911006 +quant-ph/9911007 +quant-ph/9911008 +quant-ph/9911009 +quant-ph/9911010 +quant-ph/9911012 +quant-ph/9911013 +quant-ph/9911014 +quant-ph/9911017 +quant-ph/9911018 +quant-ph/9911019 +quant-ph/9911023 +quant-ph/9911025 +quant-ph/9911027 +quant-ph/9911029 +quant-ph/9911035 +quant-ph/9911036 +quant-ph/9911039 +quant-ph/9911041 +quant-ph/9911043 +quant-ph/9911044 +quant-ph/9911048 +quant-ph/9911054 +quant-ph/9911056 +quant-ph/9911057 +quant-ph/9911058 +quant-ph/9911063 +quant-ph/9911065 +quant-ph/9911067 +quant-ph/9911068 +quant-ph/9911069 +quant-ph/9911071 +quant-ph/9911072 +quant-ph/9911073 +quant-ph/9911077 +quant-ph/9911080 +quant-ph/9911083 +quant-ph/9911086 +quant-ph/9911088 +quant-ph/9911094 +quant-ph/9911095 +quant-ph/9911097 +quant-ph/9911098 +quant-ph/9911100 +quant-ph/9911101 +quant-ph/9911102 +quant-ph/9911103 +quant-ph/9911104 +quant-ph/9911109 +quant-ph/9911110 +quant-ph/9911112 +quant-ph/9911116 +quant-ph/9911117 +quant-ph/9911118 +quant-ph/9911119 +quant-ph/9911120 +quant-ph/9911121 +quant-ph/9911123 +quant-ph/9912002 +quant-ph/9912004 +quant-ph/9912008 +quant-ph/9912009 +quant-ph/9912010 +quant-ph/9912014 +quant-ph/9912017 +quant-ph/9912018 +quant-ph/9912022 +quant-ph/9912023 +quant-ph/9912024 +quant-ph/9912027 +quant-ph/9912028 +quant-ph/9912029 +quant-ph/9912030 +quant-ph/9912032 +quant-ph/9912033 +quant-ph/9912036 +quant-ph/9912038 +quant-ph/9912041 +quant-ph/9912043 +quant-ph/9912045 +quant-ph/9912046 +quant-ph/9912047 +quant-ph/9912048 +quant-ph/9912050 +quant-ph/9912055 +quant-ph/9912056 +quant-ph/9912062 +quant-ph/9912063 +quant-ph/9912064 +quant-ph/9912065 +quant-ph/9912068 +quant-ph/9912071 +quant-ph/9912072 +quant-ph/9912073 +quant-ph/9912075 +quant-ph/9912078 +quant-ph/9912080 +quant-ph/9912083 +quant-ph/9912085 +quant-ph/9912090 +quant-ph/9912091 +quant-ph/9912092 +quant-ph/9912101 +quant-ph/9912103 +quant-ph/9912104 +quant-ph/9912105 +quant-ph/9912106 +quant-ph/9912108 +quant-ph/9912109 +quant-ph/9912113 +quant-ph/9912114 +quant-ph/9912116 +quant-ph/9912117 +quant-ph/9912118 +quant-ph/9912120 +solv-int/9801004 Exactly Solvable and Integrable Systems +solv-int/9801005 Exactly Solvable and Integrable Systems +solv-int/9801010 Exactly Solvable and Integrable Systems +solv-int/9801012 Exactly Solvable and Integrable Systems +solv-int/9801015 Exactly Solvable and Integrable Systems +solv-int/9801016 Exactly Solvable and Integrable Systems +solv-int/9801017 Exactly Solvable and Integrable Systems +solv-int/9801018 Exactly Solvable and Integrable Systems +solv-int/9801019 Exactly Solvable and Integrable Systems +solv-int/9801021 Exactly Solvable and Integrable Systems +solv-int/9801023 Exactly Solvable and Integrable Systems +solv-int/9802001 Exactly Solvable and Integrable Systems +solv-int/9802002 Exactly Solvable and Integrable Systems +solv-int/9802003 Exactly Solvable and Integrable Systems +solv-int/9802008 Exactly Solvable and Integrable Systems +solv-int/9802009 Exactly Solvable and Integrable Systems +solv-int/9802011 Exactly Solvable and Integrable Systems +solv-int/9802013 Exactly Solvable and Integrable Systems +solv-int/9802014 Exactly Solvable and Integrable Systems +solv-int/9802016 Exactly Solvable and Integrable Systems +solv-int/9802018 Exactly Solvable and Integrable Systems +solv-int/9803001 Exactly Solvable and Integrable Systems +solv-int/9803002 Exactly Solvable and Integrable Systems +solv-int/9803005 Exactly Solvable and Integrable Systems +solv-int/9803007 Exactly Solvable and Integrable Systems +solv-int/9803009 Exactly Solvable and Integrable Systems +solv-int/9803010 Exactly Solvable and Integrable Systems +solv-int/9803011 Exactly Solvable and Integrable Systems +solv-int/9803012 Exactly Solvable and Integrable Systems +solv-int/9804006 Exactly Solvable and Integrable Systems +solv-int/9804007 Exactly Solvable and Integrable Systems +solv-int/9804009 Exactly Solvable and Integrable Systems +solv-int/9804010 Exactly Solvable and Integrable Systems +solv-int/9804015 Exactly Solvable and Integrable Systems +solv-int/9804018 Exactly Solvable and Integrable Systems +solv-int/9804019 Exactly Solvable and Integrable Systems +solv-int/9805001 Exactly Solvable and Integrable Systems +solv-int/9805002 Exactly Solvable and Integrable Systems +solv-int/9805006 Exactly Solvable and Integrable Systems +solv-int/9805007 Exactly Solvable and Integrable Systems +solv-int/9805008 Exactly Solvable and Integrable Systems +solv-int/9805010 Exactly Solvable and Integrable Systems +solv-int/9806002 Exactly Solvable and Integrable Systems +solv-int/9806005 Exactly Solvable and Integrable Systems +solv-int/9806008 Exactly Solvable and Integrable Systems +solv-int/9807004 Exactly Solvable and Integrable Systems +solv-int/9807009 Exactly Solvable and Integrable Systems +solv-int/9808002 Exactly Solvable and Integrable Systems +solv-int/9808005 Exactly Solvable and Integrable Systems +solv-int/9808006 Exactly Solvable and Integrable Systems +solv-int/9808008 Exactly Solvable and Integrable Systems +solv-int/9808011 Exactly Solvable and Integrable Systems +solv-int/9808012 Exactly Solvable and Integrable Systems +solv-int/9808013 Exactly Solvable and Integrable Systems +solv-int/9808017 Exactly Solvable and Integrable Systems +solv-int/9808019 Exactly Solvable and Integrable Systems +solv-int/9809002 Exactly Solvable and Integrable Systems +solv-int/9809003 Exactly Solvable and Integrable Systems +solv-int/9809006 Exactly Solvable and Integrable Systems +solv-int/9809007 Exactly Solvable and Integrable Systems +solv-int/9809010 Exactly Solvable and Integrable Systems +solv-int/9809014 Exactly Solvable and Integrable Systems +solv-int/9810002 Exactly Solvable and Integrable Systems +solv-int/9810004 Exactly Solvable and Integrable Systems +solv-int/9810009 Exactly Solvable and Integrable Systems +solv-int/9810010 Exactly Solvable and Integrable Systems +solv-int/9810011 Exactly Solvable and Integrable Systems +solv-int/9810012 Exactly Solvable and Integrable Systems +solv-int/9810014 Exactly Solvable and Integrable Systems +solv-int/9810018 Exactly Solvable and Integrable Systems +solv-int/9810019 Exactly Solvable and Integrable Systems +solv-int/9811001 Exactly Solvable and Integrable Systems +solv-int/9811002 Exactly Solvable and Integrable Systems +solv-int/9811003 Exactly Solvable and Integrable Systems +solv-int/9811005 Exactly Solvable and Integrable Systems +solv-int/9811007 Exactly Solvable and Integrable Systems +solv-int/9811008 Exactly Solvable and Integrable Systems +solv-int/9811009 Exactly Solvable and Integrable Systems +solv-int/9811013 Exactly Solvable and Integrable Systems +solv-int/9811014 Exactly Solvable and Integrable Systems +solv-int/9811015 Exactly Solvable and Integrable Systems +solv-int/9811016 Exactly Solvable and Integrable Systems +solv-int/9812001 Exactly Solvable and Integrable Systems +solv-int/9812003 Exactly Solvable and Integrable Systems +solv-int/9812009 Exactly Solvable and Integrable Systems +solv-int/9812013 Exactly Solvable and Integrable Systems +solv-int/9812016 Exactly Solvable and Integrable Systems +solv-int/9812019 Exactly Solvable and Integrable Systems +solv-int/9812021 Exactly Solvable and Integrable Systems +solv-int/9812023 Exactly Solvable and Integrable Systems +solv-int/9812028 Exactly Solvable and Integrable Systems +solv-int/9812029 Exactly Solvable and Integrable Systems +solv-int/9812030 Exactly Solvable and Integrable Systems +solv-int/9901001 Exactly Solvable and Integrable Systems +solv-int/9901002 Exactly Solvable and Integrable Systems +solv-int/9902001 Exactly Solvable and Integrable Systems +solv-int/9902005 Exactly Solvable and Integrable Systems +solv-int/9902011 Exactly Solvable and Integrable Systems +solv-int/9902015 Exactly Solvable and Integrable Systems +solv-int/9903001 Exactly Solvable and Integrable Systems +solv-int/9903010 Exactly Solvable and Integrable Systems +solv-int/9903011 Exactly Solvable and Integrable Systems +solv-int/9903014 Exactly Solvable and Integrable Systems +solv-int/9903015 Exactly Solvable and Integrable Systems +solv-int/9904003 Exactly Solvable and Integrable Systems +solv-int/9904006 Exactly Solvable and Integrable Systems +solv-int/9904008 Exactly Solvable and Integrable Systems +solv-int/9904009 Exactly Solvable and Integrable Systems +solv-int/9904010 Exactly Solvable and Integrable Systems +solv-int/9904013 Exactly Solvable and Integrable Systems +solv-int/9904017 Exactly Solvable and Integrable Systems +solv-int/9904021 Exactly Solvable and Integrable Systems +solv-int/9904023 Exactly Solvable and Integrable Systems +solv-int/9905002 Exactly Solvable and Integrable Systems +solv-int/9905004 Exactly Solvable and Integrable Systems +solv-int/9905005 Exactly Solvable and Integrable Systems +solv-int/9905006 Exactly Solvable and Integrable Systems +solv-int/9905007 Exactly Solvable and Integrable Systems +solv-int/9905009 Exactly Solvable and Integrable Systems +solv-int/9905011 Exactly Solvable and Integrable Systems +solv-int/9906002 Exactly Solvable and Integrable Systems +solv-int/9906003 Exactly Solvable and Integrable Systems +solv-int/9906006 Exactly Solvable and Integrable Systems +solv-int/9906009 Exactly Solvable and Integrable Systems +solv-int/9906013 Exactly Solvable and Integrable Systems +solv-int/9907004 Exactly Solvable and Integrable Systems +solv-int/9907005 Exactly Solvable and Integrable Systems +solv-int/9907006 Exactly Solvable and Integrable Systems +solv-int/9907010 Exactly Solvable and Integrable Systems +solv-int/9907011 Exactly Solvable and Integrable Systems +solv-int/9907012 Exactly Solvable and Integrable Systems +solv-int/9907020 Exactly Solvable and Integrable Systems +solv-int/9908001 Exactly Solvable and Integrable Systems +solv-int/9908004 Exactly Solvable and Integrable Systems +solv-int/9908009 Exactly Solvable and Integrable Systems +solv-int/9909003 Exactly Solvable and Integrable Systems +solv-int/9909004 Exactly Solvable and Integrable Systems +solv-int/9909006 Exactly Solvable and Integrable Systems +solv-int/9909019 Exactly Solvable and Integrable Systems +solv-int/9909023 Exactly Solvable and Integrable Systems +solv-int/9909024 Exactly Solvable and Integrable Systems +solv-int/9909025 Exactly Solvable and Integrable Systems +solv-int/9909026 Exactly Solvable and Integrable Systems +solv-int/9910001 Exactly Solvable and Integrable Systems +solv-int/9910004 Exactly Solvable and Integrable Systems +solv-int/9910007 Exactly Solvable and Integrable Systems +solv-int/9911001 Exactly Solvable and Integrable Systems +solv-int/9911004 Exactly Solvable and Integrable Systems +solv-int/9911005 Exactly Solvable and Integrable Systems +solv-int/9911007 Exactly Solvable and Integrable Systems +solv-int/9911008 Exactly Solvable and Integrable Systems +solv-int/9912003 Exactly Solvable and Integrable Systems +solv-int/9912006 Exactly Solvable and Integrable Systems +solv-int/9912007 Exactly Solvable and Integrable Systems +solv-int/9912014 Exactly Solvable and Integrable Systems +solv-int/9912016 Exactly Solvable and Integrable Systems +0708.1558 Information Theory +0810.2824 Physics and Society +0902.1219 Mesoscale and Nanoscale Physics +0902.2248 Physics and Society +0903.1088 +0903.5421 Analysis of PDEs +0904.0372 Analysis of PDEs +0904.4492 +0906.3507 Quantitative Methods +0907.0740 High Energy Astrophysical Phenomena +astro-ph/0610761 +cond-mat/0701529 Strongly Correlated Electrons +math/0306231 Number Theory +math/0602350 Numerical Analysis +0704.0301 Computational Complexity +0709.1201 Computational Complexity +0802.1581 +0803.0392 Methodology +0803.2026 Algebraic Geometry +0805.2311 Number Theory +0805.2331 Symbolic Computation +0805.2338 Symbolic Computation +0811.4177 Theory +0902.4759 Cosmology and Nongalactic Astrophysics +0903.0064 Learning +0903.2684 Differential Geometry +0903.4225 +0903.5468 +0904.0943 Algebraic Geometry +0904.0978 Differential Geometry +math/0703872 Probability +0801.2786 +0802.3721 Fluid Dynamics +0809.3738 Representation Theory +0810.4408 +0812.0255 Statistical Mechanics +0812.4387 +0901.0775 Quantitative Methods +0902.4465 Phenomenology +0903.2789 +0906.0818 Algebraic Geometry +0907.1167 Strongly Correlated Electrons +0907.3368 Chaotic Dynamics +0907.4506 Representation Theory +0908.1772 Combinatorics +0908.4573 Strongly Correlated Electrons +0909.0982 General Topology +0909.3556 Strongly Correlated Electrons +0909.4329 Combinatorics +0910.2554 Cosmology and Nongalactic Astrophysics +cond-mat/0507098 Mesoscale and Nanoscale Physics +physics/0012008 Atomic Physics +physics/0511103 Classical Physics +physics/0603198 Optics +physics/0604128 Chemical Physics +physics/0611052 Plasma Physics +0711.4450 Algebraic Geometry +0801.1623 Fluid Dynamics +0803.3639 Representation Theory +0805.0878 Pattern Formation and Solitons +0806.0357 Probability +0807.2536 +0807.3616 +0809.2129 Pattern Formation and Solitons +0809.2927 +0809.3714 Numerical Analysis +0811.4015 Strongly Correlated Electrons +0812.0574 History and Philosophy of Physics +0812.0585 +0812.3319 Strongly Correlated Electrons +0901.0900 Algebraic Geometry +0901.4234 +0904.4049 Superconductivity +0905.0029 Superconductivity +0905.1296 Operator Algebras +0905.2684 Strongly Correlated Electrons +0905.4207 Materials Science +0906.0322 Analysis of PDEs +0906.1122 Solar and Stellar Astrophysics +0906.1461 Phenomenology +0906.4183 Group Theory +0906.4413 Strongly Correlated Electrons +0907.0037 Algebraic Geometry +0907.1544 +0907.3663 Quantum Gases +0907.5349 Quantum Gases +0908.2298 Statistical Mechanics +0908.3792 Optics +0908.3794 Strongly Correlated Electrons +0909.0652 Other Condensed Matter +0909.2402 Strongly Correlated Electrons +0909.2971 Analysis of PDEs +0909.3741 Cosmology and Nongalactic Astrophysics +0910.0584 Mesoscale and Nanoscale Physics +0910.1515 +0910.1981 Materials Science +0910.3738 Geophysics +0910.4177 Computational Finance +0910.4729 Superconductivity +0910.4932 Logic in Computer Science +0910.4962 Theory +0910.4964 Astrophysics of Galaxies +0910.4973 Analysis of PDEs +0910.4974 Probability +0910.4981 Geophysics +0910.4988 +0910.4994 Representation Theory +0910.4995 Analysis of PDEs +0910.4997 Group Theory +0910.4999 Dynamical Systems +0910.5009 Algebraic Geometry +0910.5010 Theory +0910.5011 Theory +0910.5014 Metric Geometry +0910.5017 +0910.5021 Geometric Topology +0910.5026 Representation Theory +0910.5027 Cryptography and Security +0910.5028 Algebraic Geometry +0910.5032 +0910.5033 Pricing of Securities +0910.5038 Dynamical Systems +0910.5040 Discrete Mathematics +0910.5043 Geometric Topology +0910.5046 Operating Systems +0910.5048 Strongly Correlated Electrons +0910.5050 Geometric Topology +0910.5053 Chemical Physics +0910.5054 Cosmology and Nongalactic Astrophysics +0910.5058 Operator Algebras +0910.5070 Representation Theory +0910.5084 +0910.5086 Spectral Theory +0910.5088 Numerical Analysis +0910.5090 Cosmology and Nongalactic Astrophysics +0910.5094 Experiment +0910.5096 Theory +0910.5097 Lattice +0910.5098 Optimization and Control +0910.5099 Logic in Computer Science +0910.5101 Pricing of Securities +0910.5106 Functional Analysis +0910.5108 Phenomenology +0910.5109 Materials Science +0910.5112 Popular Physics +0910.5119 Probability +0910.5129 Phenomenology +0910.5130 Algebraic Topology +0910.5135 Information Theory +0910.5137 +0910.5140 Superconductivity +0910.5141 General Physics +0910.5147 Data Structures and Algorithms +0910.5155 Theory +0910.5156 Instrumentation and Detectors +0910.5157 Analysis of PDEs +0910.5160 +0910.5172 Superconductivity +0910.5178 Theory +0910.5179 Statistical Mechanics +0910.5180 Cosmology and Nongalactic Astrophysics +0910.5184 Mesoscale and Nanoscale Physics +0910.5187 Analysis of PDEs +0910.5188 Superconductivity +0910.5190 Geometric Topology +0910.5194 +0910.5203 +0910.5205 Phenomenology +0910.5208 +0910.5211 Atomic Physics +0910.5215 Networking and Internet Architecture +acc-phys/9503001 Accelerator Physics +acc-phys/9505002 Accelerator Physics +acc-phys/9510001 Accelerator Physics +acc-phys/9607003 Accelerator Physics +adap-org/9501001 Adaptation and Self-Organizing Systems +adap-org/9501004 Adaptation and Self-Organizing Systems +adap-org/9502002 Adaptation and Self-Organizing Systems +adap-org/9502004 Adaptation and Self-Organizing Systems +adap-org/9505003 Adaptation and Self-Organizing Systems +adap-org/9506004 Adaptation and Self-Organizing Systems +adap-org/9507001 Adaptation and Self-Organizing Systems +adap-org/9507003 Adaptation and Self-Organizing Systems +adap-org/9507004 Adaptation and Self-Organizing Systems +adap-org/9507005 Adaptation and Self-Organizing Systems +adap-org/9507006 Adaptation and Self-Organizing Systems +adap-org/9508006 Adaptation and Self-Organizing Systems +adap-org/9509002 Adaptation and Self-Organizing Systems +adap-org/9510002 Adaptation and Self-Organizing Systems +adap-org/9511001 Adaptation and Self-Organizing Systems +adap-org/9511003 Adaptation and Self-Organizing Systems +adap-org/9512002 Adaptation and Self-Organizing Systems +adap-org/9601003 Adaptation and Self-Organizing Systems +adap-org/9604001 Adaptation and Self-Organizing Systems +adap-org/9605002 Adaptation and Self-Organizing Systems +adap-org/9606001 Adaptation and Self-Organizing Systems +adap-org/9606003 Adaptation and Self-Organizing Systems +adap-org/9606004 Adaptation and Self-Organizing Systems +adap-org/9606005 Adaptation and Self-Organizing Systems +adap-org/9607001 Adaptation and Self-Organizing Systems +adap-org/9608003 Adaptation and Self-Organizing Systems +adap-org/9609001 Adaptation and Self-Organizing Systems +adap-org/9609002 Adaptation and Self-Organizing Systems +adap-org/9610002 Adaptation and Self-Organizing Systems +adap-org/9611004 Adaptation and Self-Organizing Systems +alg-geom/9503016 Algebraic Geometry +alg-geom/9505029 Algebraic Geometry +alg-geom/9506004 Algebraic Geometry +alg-geom/9509006 Algebraic Geometry +alg-geom/9509009 Algebraic Geometry +alg-geom/9510013 Algebraic Geometry +alg-geom/9511001 Algebraic Geometry +alg-geom/9601005 Algebraic Geometry +alg-geom/9601010 Algebraic Geometry +alg-geom/9601016 Algebraic Geometry +alg-geom/9601025 Algebraic Geometry +alg-geom/9603007 Algebraic Geometry +alg-geom/9603012 Algebraic Geometry +alg-geom/9604001 Algebraic Geometry +alg-geom/9604014 Algebraic Geometry +alg-geom/9604024 Algebraic Geometry +alg-geom/9605005 Algebraic Geometry +ao-sci/9504001 Atmospheric and Oceanic Physics +astro-ph/0611795 +astro-ph/9501002 +astro-ph/9501005 +astro-ph/9501020 +astro-ph/9501029 +astro-ph/9501089 +astro-ph/9501093 +astro-ph/9501094 +astro-ph/9501100 +astro-ph/9501104 +astro-ph/9501116 +astro-ph/9502001 +astro-ph/9502002 +astro-ph/9502004 +astro-ph/9502014 +astro-ph/9502015 +astro-ph/9502020 +astro-ph/9502026 +astro-ph/9502031 +astro-ph/9502059 +astro-ph/9502068 +astro-ph/9502073 +astro-ph/9502085 +astro-ph/9503025 +astro-ph/9503033 +astro-ph/9503050 +astro-ph/9503067 +astro-ph/9503070 +astro-ph/9503074 +astro-ph/9503079 +astro-ph/9503080 +astro-ph/9503086 +astro-ph/9503087 +astro-ph/9503088 +astro-ph/9503102 +astro-ph/9503109 +astro-ph/9503112 +astro-ph/9503113 +astro-ph/9503118 +astro-ph/9503120 +astro-ph/9503121 +astro-ph/9503123 +astro-ph/9504001 +astro-ph/9504002 +astro-ph/9504004 +astro-ph/9504007 +astro-ph/9504008 +astro-ph/9504010 +astro-ph/9504013 +astro-ph/9504014 +astro-ph/9504021 +astro-ph/9504024 +astro-ph/9504028 +astro-ph/9504030 +astro-ph/9504031 +astro-ph/9504036 +astro-ph/9504037 +astro-ph/9504039 +astro-ph/9504041 +astro-ph/9504042 +astro-ph/9504045 +astro-ph/9504046 +astro-ph/9504047 +astro-ph/9504048 +astro-ph/9504049 +astro-ph/9504054 +astro-ph/9504055 +astro-ph/9504059 +astro-ph/9504060 +astro-ph/9504061 +astro-ph/9504062 +astro-ph/9504063 +astro-ph/9504065 +astro-ph/9504070 +astro-ph/9504072 +astro-ph/9504074 +astro-ph/9504075 +astro-ph/9504076 +astro-ph/9504078 +astro-ph/9504082 +astro-ph/9504084 +astro-ph/9504085 +astro-ph/9504086 +astro-ph/9504087 +astro-ph/9504091 +astro-ph/9504097 +astro-ph/9504100 +astro-ph/9505002 +astro-ph/9505003 +astro-ph/9505006 +astro-ph/9505007 +astro-ph/9505008 +astro-ph/9505011 +astro-ph/9505012 +astro-ph/9505013 +astro-ph/9505015 +astro-ph/9505017 +astro-ph/9505018 +astro-ph/9505019 +astro-ph/9505020 +astro-ph/9505028 +astro-ph/9505031 +astro-ph/9505033 +astro-ph/9505035 +astro-ph/9505036 +astro-ph/9505038 +astro-ph/9505040 +astro-ph/9505042 +astro-ph/9505044 +astro-ph/9505055 +astro-ph/9505056 +astro-ph/9505058 +astro-ph/9505062 +astro-ph/9505068 +astro-ph/9505069 +astro-ph/9505078 +astro-ph/9505079 +astro-ph/9505081 +astro-ph/9505082 +astro-ph/9505083 +astro-ph/9505087 +astro-ph/9505089 +astro-ph/9505090 +astro-ph/9505099 +astro-ph/9505101 +astro-ph/9505109 +astro-ph/9505111 +astro-ph/9505112 +astro-ph/9505115 +astro-ph/9505116 +astro-ph/9505125 +astro-ph/9505127 +astro-ph/9505128 +astro-ph/9505129 +astro-ph/9505134 +astro-ph/9505137 +astro-ph/9505140 +astro-ph/9505143 +astro-ph/9505145 +astro-ph/9505147 +astro-ph/9505148 +astro-ph/9506001 +astro-ph/9506005 +astro-ph/9506008 +astro-ph/9506009 +astro-ph/9506010 +astro-ph/9506018 +astro-ph/9506020 +astro-ph/9506028 +astro-ph/9506029 +astro-ph/9506030 +astro-ph/9506037 +astro-ph/9506038 +astro-ph/9506041 +astro-ph/9506042 +astro-ph/9506043 +astro-ph/9506048 +astro-ph/9506049 +astro-ph/9506053 +astro-ph/9506054 +astro-ph/9506055 +astro-ph/9506057 +astro-ph/9506058 +astro-ph/9506059 +astro-ph/9506061 +astro-ph/9506064 +astro-ph/9506068 +astro-ph/9506069 +astro-ph/9506074 +astro-ph/9506076 +astro-ph/9506079 +astro-ph/9506081 +astro-ph/9506090 +astro-ph/9506092 +astro-ph/9506094 +astro-ph/9506095 +astro-ph/9506096 +astro-ph/9506097 +astro-ph/9506104 +astro-ph/9506106 +astro-ph/9506107 +astro-ph/9506109 +astro-ph/9506113 +astro-ph/9506114 +astro-ph/9506118 +astro-ph/9506119 +astro-ph/9506121 +astro-ph/9506122 +astro-ph/9506124 +astro-ph/9506129 +astro-ph/9506130 +astro-ph/9506135 +astro-ph/9506136 +astro-ph/9506137 +astro-ph/9506139 +astro-ph/9506144 +astro-ph/9506146 +astro-ph/9506147 +astro-ph/9506148 +astro-ph/9507008 +astro-ph/9507010 +astro-ph/9507012 +astro-ph/9507013 +astro-ph/9507016 +astro-ph/9507027 +astro-ph/9507028 +astro-ph/9507030 +astro-ph/9507031 +astro-ph/9507035 +astro-ph/9507037 +astro-ph/9507039 +astro-ph/9507043 +astro-ph/9507044 +astro-ph/9507045 +astro-ph/9507046 +astro-ph/9507047 +astro-ph/9507049 +astro-ph/9507051 +astro-ph/9507053 +astro-ph/9507055 +astro-ph/9507059 +astro-ph/9507065 +astro-ph/9507066 +astro-ph/9507068 +astro-ph/9507071 +astro-ph/9507072 +astro-ph/9507073 +astro-ph/9507074 +astro-ph/9507075 +astro-ph/9507079 +astro-ph/9507080 +astro-ph/9507086 +astro-ph/9507087 +astro-ph/9507089 +astro-ph/9507090 +astro-ph/9507094 +astro-ph/9507097 +astro-ph/9507098 +astro-ph/9507101 +astro-ph/9507103 +astro-ph/9507107 +astro-ph/9507108 +astro-ph/9507109 +astro-ph/9507110 +astro-ph/9507111 +astro-ph/9507113 +astro-ph/9507117 +astro-ph/9508004 +astro-ph/9508005 +astro-ph/9508007 +astro-ph/9508011 +astro-ph/9508014 +astro-ph/9508015 +astro-ph/9508016 +astro-ph/9508017 +astro-ph/9508019 +astro-ph/9508021 +astro-ph/9508022 +astro-ph/9508029 +astro-ph/9508030 +astro-ph/9508032 +astro-ph/9508034 +astro-ph/9508036 +astro-ph/9508037 +astro-ph/9508038 +astro-ph/9508040 +astro-ph/9508044 +astro-ph/9508047 +astro-ph/9508048 +astro-ph/9508049 +astro-ph/9508050 +astro-ph/9508052 +astro-ph/9508054 +astro-ph/9508056 +astro-ph/9508059 +astro-ph/9508062 +astro-ph/9508065 +astro-ph/9508067 +astro-ph/9508068 +astro-ph/9508069 +astro-ph/9508072 +astro-ph/9508073 +astro-ph/9508074 +astro-ph/9508081 +astro-ph/9508083 +astro-ph/9508087 +astro-ph/9508088 +astro-ph/9508090 +astro-ph/9508091 +astro-ph/9508092 +astro-ph/9508093 +astro-ph/9508095 +astro-ph/9508096 +astro-ph/9508105 +astro-ph/9508113 +astro-ph/9508118 +astro-ph/9508122 +astro-ph/9508127 +astro-ph/9508130 +astro-ph/9508131 +astro-ph/9508133 +astro-ph/9508139 +astro-ph/9508141 +astro-ph/9508142 +astro-ph/9508148 +astro-ph/9508152 +astro-ph/9508155 +astro-ph/9508158 +astro-ph/9509008 +astro-ph/9509012 +astro-ph/9509017 +astro-ph/9509018 +astro-ph/9509021 +astro-ph/9509022 +astro-ph/9509023 +astro-ph/9509024 +astro-ph/9509028 +astro-ph/9509034 +astro-ph/9509037 +astro-ph/9509038 +astro-ph/9509039 +astro-ph/9509040 +astro-ph/9509042 +astro-ph/9509045 +astro-ph/9509046 +astro-ph/9509052 +astro-ph/9509062 +astro-ph/9509063 +astro-ph/9509066 +astro-ph/9509067 +astro-ph/9509071 +astro-ph/9509073 +astro-ph/9509074 +astro-ph/9509075 +astro-ph/9509078 +astro-ph/9509083 +astro-ph/9509086 +astro-ph/9509087 +astro-ph/9509088 +astro-ph/9509089 +astro-ph/9509093 +astro-ph/9509099 +astro-ph/9509100 +astro-ph/9509101 +astro-ph/9509102 +astro-ph/9509105 +astro-ph/9509106 +astro-ph/9509109 +astro-ph/9509115 +astro-ph/9509117 +astro-ph/9509118 +astro-ph/9509119 +astro-ph/9509121 +astro-ph/9509124 +astro-ph/9509125 +astro-ph/9509129 +astro-ph/9509135 +astro-ph/9509136 +astro-ph/9509137 +astro-ph/9509141 +astro-ph/9509142 +astro-ph/9509145 +astro-ph/9509147 +astro-ph/9509148 +astro-ph/9509149 +astro-ph/9509150 +astro-ph/9509158 +astro-ph/9509160 +astro-ph/9510002 +astro-ph/9510003 +astro-ph/9510005 +astro-ph/9510006 +astro-ph/9510007 +astro-ph/9510010 +astro-ph/9510017 +astro-ph/9510023 +astro-ph/9510026 +astro-ph/9510028 +astro-ph/9510030 +astro-ph/9510032 +astro-ph/9510033 +astro-ph/9510034 +astro-ph/9510039 +astro-ph/9510040 +astro-ph/9510043 +astro-ph/9510045 +astro-ph/9510046 +astro-ph/9510050 +astro-ph/9510052 +astro-ph/9510058 +astro-ph/9510060 +astro-ph/9510061 +astro-ph/9510063 +astro-ph/9510064 +astro-ph/9510065 +astro-ph/9510077 +astro-ph/9510078 +astro-ph/9510081 +astro-ph/9510083 +astro-ph/9510087 +astro-ph/9510088 +astro-ph/9510092 +astro-ph/9510093 +astro-ph/9510094 +astro-ph/9510097 +astro-ph/9510098 +astro-ph/9510099 +astro-ph/9510100 +astro-ph/9510102 +astro-ph/9510105 +astro-ph/9510107 +astro-ph/9510108 +astro-ph/9510109 +astro-ph/9510111 +astro-ph/9510112 +astro-ph/9510114 +astro-ph/9510115 +astro-ph/9510124 +astro-ph/9510135 +astro-ph/9510137 +astro-ph/9510139 +astro-ph/9510151 +astro-ph/9510155 +astro-ph/9510160 +astro-ph/9510161 +astro-ph/9511003 +astro-ph/9511004 +astro-ph/9511005 +astro-ph/9511006 +astro-ph/9511012 +astro-ph/9511013 +astro-ph/9511014 +astro-ph/9511015 +astro-ph/9511019 +astro-ph/9511021 +astro-ph/9511025 +astro-ph/9511033 +astro-ph/9511034 +astro-ph/9511037 +astro-ph/9511040 +astro-ph/9511044 +astro-ph/9511046 +astro-ph/9511047 +astro-ph/9511054 +astro-ph/9511056 +astro-ph/9511061 +astro-ph/9511062 +astro-ph/9511064 +astro-ph/9511072 +astro-ph/9511074 +astro-ph/9511075 +astro-ph/9511078 +astro-ph/9511080 +astro-ph/9511082 +astro-ph/9511085 +astro-ph/9511087 +astro-ph/9511088 +astro-ph/9511097 +astro-ph/9511107 +astro-ph/9511108 +astro-ph/9511111 +astro-ph/9511112 +astro-ph/9511116 +astro-ph/9511117 +astro-ph/9511119 +astro-ph/9511126 +astro-ph/9511127 +astro-ph/9511128 +astro-ph/9511137 +astro-ph/9511138 +astro-ph/9511140 +astro-ph/9511142 +astro-ph/9511143 +astro-ph/9511146 +astro-ph/9511147 +astro-ph/9512004 +astro-ph/9512005 +astro-ph/9512006 +astro-ph/9512007 +astro-ph/9512008 +astro-ph/9512012 +astro-ph/9512014 +astro-ph/9512015 +astro-ph/9512021 +astro-ph/9512023 +astro-ph/9512025 +astro-ph/9512026 +astro-ph/9512032 +astro-ph/9512035 +astro-ph/9512043 +astro-ph/9512051 +astro-ph/9512052 +astro-ph/9512054 +astro-ph/9512055 +astro-ph/9512063 +astro-ph/9512067 +astro-ph/9512070 +astro-ph/9512071 +astro-ph/9512076 +astro-ph/9512077 +astro-ph/9512079 +astro-ph/9512083 +astro-ph/9512087 +astro-ph/9512094 +astro-ph/9512095 +astro-ph/9512099 +astro-ph/9512100 +astro-ph/9512101 +astro-ph/9512109 +astro-ph/9512117 +astro-ph/9512118 +astro-ph/9512124 +astro-ph/9512126 +astro-ph/9512128 +astro-ph/9512129 +astro-ph/9512131 +astro-ph/9512137 +astro-ph/9512138 +astro-ph/9512139 +astro-ph/9512141 +astro-ph/9512146 +astro-ph/9512148 +astro-ph/9512156 +astro-ph/9512159 +astro-ph/9512160 +astro-ph/9512162 +astro-ph/9512164 +astro-ph/9512165 +astro-ph/9512167 +astro-ph/9512168 +astro-ph/9512169 +astro-ph/9601001 +astro-ph/9601010 +astro-ph/9601011 +astro-ph/9601012 +astro-ph/9601021 +astro-ph/9601025 +astro-ph/9601029 +astro-ph/9601030 +astro-ph/9601032 +astro-ph/9601033 +astro-ph/9601034 +astro-ph/9601035 +astro-ph/9601036 +astro-ph/9601037 +astro-ph/9601038 +astro-ph/9601042 +astro-ph/9601043 +astro-ph/9601046 +astro-ph/9601047 +astro-ph/9601050 +astro-ph/9601055 +astro-ph/9601057 +astro-ph/9601058 +astro-ph/9601060 +astro-ph/9601062 +astro-ph/9601063 +astro-ph/9601067 +astro-ph/9601069 +astro-ph/9601072 +astro-ph/9601073 +astro-ph/9601075 +astro-ph/9601077 +astro-ph/9601082 +astro-ph/9601090 +astro-ph/9601091 +astro-ph/9601094 +astro-ph/9601096 +astro-ph/9601099 +astro-ph/9601101 +astro-ph/9601106 +astro-ph/9601107 +astro-ph/9601112 +astro-ph/9601114 +astro-ph/9601117 +astro-ph/9601120 +astro-ph/9601137 +astro-ph/9601138 +astro-ph/9601139 +astro-ph/9601142 +astro-ph/9601143 +astro-ph/9601145 +astro-ph/9601146 +astro-ph/9601150 +astro-ph/9601152 +astro-ph/9601166 +astro-ph/9601167 +astro-ph/9601171 +astro-ph/9601176 +astro-ph/9601177 +astro-ph/9601178 +astro-ph/9601180 +astro-ph/9601181 +astro-ph/9601182 +astro-ph/9601183 +astro-ph/9601184 +astro-ph/9601185 +astro-ph/9601186 +astro-ph/9601188 +astro-ph/9601190 +astro-ph/9601191 +astro-ph/9601193 +astro-ph/9601194 +astro-ph/9601196 +astro-ph/9601197 +astro-ph/9602001 +astro-ph/9602006 +astro-ph/9602007 +astro-ph/9602011 +astro-ph/9602013 +astro-ph/9602024 +astro-ph/9602026 +astro-ph/9602027 +astro-ph/9602028 +astro-ph/9602029 +astro-ph/9602033 +astro-ph/9602034 +astro-ph/9602036 +astro-ph/9602037 +astro-ph/9602039 +astro-ph/9602042 +astro-ph/9602047 +astro-ph/9602048 +astro-ph/9602050 +astro-ph/9602051 +astro-ph/9602057 +astro-ph/9602060 +astro-ph/9602061 +astro-ph/9602063 +astro-ph/9602065 +astro-ph/9602068 +astro-ph/9602070 +astro-ph/9602071 +astro-ph/9602073 +astro-ph/9602079 +astro-ph/9602082 +astro-ph/9602084 +astro-ph/9602086 +astro-ph/9602088 +astro-ph/9602095 +astro-ph/9602098 +astro-ph/9602101 +astro-ph/9602102 +astro-ph/9602105 +astro-ph/9602108 +astro-ph/9602109 +astro-ph/9602117 +astro-ph/9602121 +astro-ph/9602126 +astro-ph/9602127 +astro-ph/9602129 +astro-ph/9602130 +astro-ph/9602131 +astro-ph/9602133 +astro-ph/9602135 +astro-ph/9602136 +astro-ph/9602140 +astro-ph/9602143 +astro-ph/9602146 +astro-ph/9602149 +astro-ph/9602150 +astro-ph/9602155 +astro-ph/9602156 +astro-ph/9603008 +astro-ph/9603010 +astro-ph/9603018 +astro-ph/9603020 +astro-ph/9603025 +astro-ph/9603027 +astro-ph/9603035 +astro-ph/9603038 +astro-ph/9603042 +astro-ph/9603047 +astro-ph/9603049 +astro-ph/9603050 +astro-ph/9603051 +astro-ph/9603055 +astro-ph/9603057 +astro-ph/9603059 +astro-ph/9603061 +astro-ph/9603062 +astro-ph/9603066 +astro-ph/9603069 +astro-ph/9603077 +astro-ph/9603081 +astro-ph/9603083 +astro-ph/9603084 +astro-ph/9603085 +astro-ph/9603088 +astro-ph/9603089 +astro-ph/9603090 +astro-ph/9603092 +astro-ph/9603095 +astro-ph/9603096 +astro-ph/9603097 +astro-ph/9603098 +astro-ph/9603099 +astro-ph/9603103 +astro-ph/9603108 +astro-ph/9603109 +astro-ph/9603112 +astro-ph/9603114 +astro-ph/9603121 +astro-ph/9603124 +astro-ph/9603125 +astro-ph/9603134 +astro-ph/9603136 +astro-ph/9603141 +astro-ph/9603142 +astro-ph/9603144 +astro-ph/9603147 +astro-ph/9603149 +astro-ph/9603150 +astro-ph/9603152 +astro-ph/9603156 +astro-ph/9603159 +astro-ph/9603160 +astro-ph/9604001 +astro-ph/9604002 +astro-ph/9604004 +astro-ph/9604005 +astro-ph/9604009 +astro-ph/9604012 +astro-ph/9604014 +astro-ph/9604015 +astro-ph/9604016 +astro-ph/9604017 +astro-ph/9604018 +astro-ph/9604019 +astro-ph/9604021 +astro-ph/9604022 +astro-ph/9604023 +astro-ph/9604025 +astro-ph/9604026 +astro-ph/9604027 +astro-ph/9604031 +astro-ph/9604032 +astro-ph/9604034 +astro-ph/9604041 +astro-ph/9604042 +astro-ph/9604044 +astro-ph/9604051 +astro-ph/9604060 +astro-ph/9604064 +astro-ph/9604070 +astro-ph/9604071 +astro-ph/9604075 +astro-ph/9604082 +astro-ph/9604085 +astro-ph/9604091 +astro-ph/9604092 +astro-ph/9604095 +astro-ph/9604096 +astro-ph/9604098 +astro-ph/9604099 +astro-ph/9604101 +astro-ph/9604103 +astro-ph/9604109 +astro-ph/9604111 +astro-ph/9604112 +astro-ph/9604113 +astro-ph/9604114 +astro-ph/9604116 +astro-ph/9604119 +astro-ph/9604120 +astro-ph/9604121 +astro-ph/9604123 +astro-ph/9604124 +astro-ph/9604125 +astro-ph/9604128 +astro-ph/9604129 +astro-ph/9604132 +astro-ph/9604135 +astro-ph/9604138 +astro-ph/9604139 +astro-ph/9604140 +astro-ph/9604141 +astro-ph/9604142 +astro-ph/9604144 +astro-ph/9604145 +astro-ph/9604146 +astro-ph/9604148 +astro-ph/9604149 +astro-ph/9604150 +astro-ph/9604153 +astro-ph/9604154 +astro-ph/9604155 +astro-ph/9604157 +astro-ph/9604158 +astro-ph/9604161 +astro-ph/9604163 +astro-ph/9604166 +astro-ph/9604168 +astro-ph/9604169 +astro-ph/9604171 +astro-ph/9604174 +astro-ph/9604175 +astro-ph/9604176 +astro-ph/9604177 +astro-ph/9604178 +astro-ph/9604182 +astro-ph/9604183 +astro-ph/9605001 +astro-ph/9605002 +astro-ph/9605004 +astro-ph/9605005 +astro-ph/9605006 +astro-ph/9605008 +astro-ph/9605012 +astro-ph/9605013 +astro-ph/9605015 +astro-ph/9605016 +astro-ph/9605018 +astro-ph/9605021 +astro-ph/9605023 +astro-ph/9605024 +astro-ph/9605025 +astro-ph/9605026 +astro-ph/9605027 +astro-ph/9605031 +astro-ph/9605032 +astro-ph/9605033 +astro-ph/9605041 +astro-ph/9605043 +astro-ph/9605046 +astro-ph/9605048 +astro-ph/9605051 +astro-ph/9605052 +astro-ph/9605053 +astro-ph/9605054 +astro-ph/9605056 +astro-ph/9605059 +astro-ph/9605060 +astro-ph/9605063 +astro-ph/9605065 +astro-ph/9605067 +astro-ph/9605071 +astro-ph/9605073 +astro-ph/9605074 +astro-ph/9605075 +astro-ph/9605076 +astro-ph/9605077 +astro-ph/9605080 +astro-ph/9605081 +astro-ph/9605082 +astro-ph/9605083 +astro-ph/9605084 +astro-ph/9605085 +astro-ph/9605086 +astro-ph/9605090 +astro-ph/9605093 +astro-ph/9605095 +astro-ph/9605096 +astro-ph/9605098 +astro-ph/9605099 +astro-ph/9605101 +astro-ph/9605102 +astro-ph/9605108 +astro-ph/9605110 +astro-ph/9605111 +astro-ph/9605113 +astro-ph/9605114 +astro-ph/9605115 +astro-ph/9605116 +astro-ph/9605117 +astro-ph/9605120 +astro-ph/9605121 +astro-ph/9605122 +astro-ph/9605126 +astro-ph/9605127 +astro-ph/9605132 +astro-ph/9605134 +astro-ph/9605137 +astro-ph/9605138 +astro-ph/9605140 +astro-ph/9605143 +astro-ph/9605144 +astro-ph/9605146 +astro-ph/9605147 +astro-ph/9605148 +astro-ph/9605154 +astro-ph/9605156 +astro-ph/9605157 +astro-ph/9605158 +astro-ph/9605159 +astro-ph/9605162 +astro-ph/9605165 +astro-ph/9605166 +astro-ph/9605167 +astro-ph/9605169 +astro-ph/9605170 +astro-ph/9605172 +astro-ph/9605173 +astro-ph/9605177 +astro-ph/9605180 +astro-ph/9605186 +astro-ph/9605189 +astro-ph/9605191 +astro-ph/9605197 +astro-ph/9605198 +astro-ph/9605199 +astro-ph/9605200 +astro-ph/9605203 +astro-ph/9606004 +astro-ph/9606006 +astro-ph/9606009 +astro-ph/9606010 +astro-ph/9606011 +astro-ph/9606012 +astro-ph/9606017 +astro-ph/9606018 +astro-ph/9606019 +astro-ph/9606020 +astro-ph/9606022 +astro-ph/9606023 +astro-ph/9606024 +astro-ph/9606025 +astro-ph/9606028 +astro-ph/9606030 +astro-ph/9606031 +astro-ph/9606033 +astro-ph/9606035 +astro-ph/9606036 +astro-ph/9606038 +astro-ph/9606040 +astro-ph/9606041 +astro-ph/9606042 +astro-ph/9606043 +astro-ph/9606044 +astro-ph/9606045 +astro-ph/9606046 +astro-ph/9606048 +astro-ph/9606049 +astro-ph/9606050 +astro-ph/9606055 +astro-ph/9606056 +astro-ph/9606057 +astro-ph/9606062 +astro-ph/9606066 +astro-ph/9606069 +astro-ph/9606075 +astro-ph/9606076 +astro-ph/9606078 +astro-ph/9606079 +astro-ph/9606080 +astro-ph/9606083 +astro-ph/9606084 +astro-ph/9606085 +astro-ph/9606087 +astro-ph/9606089 +astro-ph/9606093 +astro-ph/9606094 +astro-ph/9606096 +astro-ph/9606097 +astro-ph/9606101 +astro-ph/9606102 +astro-ph/9606104 +astro-ph/9606106 +astro-ph/9606107 +astro-ph/9606109 +astro-ph/9606111 +astro-ph/9606112 +astro-ph/9606116 +astro-ph/9606120 +astro-ph/9606121 +astro-ph/9606124 +astro-ph/9606134 +astro-ph/9606135 +astro-ph/9606137 +astro-ph/9606142 +astro-ph/9606143 +astro-ph/9606144 +astro-ph/9606145 +astro-ph/9606146 +astro-ph/9606148 +astro-ph/9606151 +astro-ph/9606153 +astro-ph/9606154 +astro-ph/9606157 +astro-ph/9606165 +astro-ph/9606167 +astro-ph/9606168 +astro-ph/9606169 +astro-ph/9606173 +astro-ph/9606174 +astro-ph/9606175 +astro-ph/9606176 +astro-ph/9606177 +astro-ph/9606178 +astro-ph/9606182 +astro-ph/9607002 +astro-ph/9607003 +astro-ph/9607009 +astro-ph/9607012 +astro-ph/9607019 +astro-ph/9607020 +astro-ph/9607021 +astro-ph/9607022 +astro-ph/9607025 +astro-ph/9607031 +astro-ph/9607032 +astro-ph/9607033 +astro-ph/9607037 +astro-ph/9607041 +astro-ph/9607042 +astro-ph/9607043 +astro-ph/9607045 +astro-ph/9607046 +astro-ph/9607047 +astro-ph/9607048 +astro-ph/9607049 +astro-ph/9607051 +astro-ph/9607054 +astro-ph/9607055 +astro-ph/9607058 +astro-ph/9607059 +astro-ph/9607061 +astro-ph/9607065 +astro-ph/9607067 +astro-ph/9607068 +astro-ph/9607070 +astro-ph/9607072 +astro-ph/9607074 +astro-ph/9607076 +astro-ph/9607080 +astro-ph/9607087 +astro-ph/9607093 +astro-ph/9607096 +astro-ph/9607097 +astro-ph/9607099 +astro-ph/9607107 +astro-ph/9607108 +astro-ph/9607109 +astro-ph/9607116 +astro-ph/9607119 +astro-ph/9607120 +astro-ph/9607121 +astro-ph/9607124 +astro-ph/9607125 +astro-ph/9607126 +astro-ph/9607127 +astro-ph/9607128 +astro-ph/9607131 +astro-ph/9607136 +astro-ph/9607137 +astro-ph/9607138 +astro-ph/9607145 +astro-ph/9607152 +astro-ph/9607156 +astro-ph/9607158 +astro-ph/9607159 +astro-ph/9607167 +astro-ph/9607168 +astro-ph/9607169 +astro-ph/9607170 +astro-ph/9607171 +astro-ph/9607173 +astro-ph/9607174 +astro-ph/9607175 +astro-ph/9608002 +astro-ph/9608006 +astro-ph/9608008 +astro-ph/9608010 +astro-ph/9608014 +astro-ph/9608015 +astro-ph/9608016 +astro-ph/9608017 +astro-ph/9608018 +astro-ph/9608023 +astro-ph/9608026 +astro-ph/9608028 +astro-ph/9608029 +astro-ph/9608030 +astro-ph/9608034 +astro-ph/9608036 +astro-ph/9608037 +astro-ph/9608038 +astro-ph/9608039 +astro-ph/9608041 +astro-ph/9608043 +astro-ph/9608046 +astro-ph/9608047 +astro-ph/9608048 +astro-ph/9608052 +astro-ph/9608056 +astro-ph/9608059 +astro-ph/9608070 +astro-ph/9608072 +astro-ph/9608080 +astro-ph/9608086 +astro-ph/9608087 +astro-ph/9608088 +astro-ph/9608090 +astro-ph/9608091 +astro-ph/9608095 +astro-ph/9608096 +astro-ph/9608102 +astro-ph/9608107 +astro-ph/9608108 +astro-ph/9608109 +astro-ph/9608118 +astro-ph/9608120 +astro-ph/9608121 +astro-ph/9608123 +astro-ph/9608124 +astro-ph/9608125 +astro-ph/9608130 +astro-ph/9608131 +astro-ph/9608136 +astro-ph/9608138 +astro-ph/9608156 +astro-ph/9608157 +astro-ph/9608159 +astro-ph/9608160 +astro-ph/9608161 +astro-ph/9608162 +astro-ph/9608164 +astro-ph/9608169 +astro-ph/9608172 +astro-ph/9608178 +astro-ph/9608179 +astro-ph/9608180 +astro-ph/9608181 +astro-ph/9608186 +astro-ph/9608188 +astro-ph/9608189 +astro-ph/9608195 +astro-ph/9608197 +astro-ph/9608198 +astro-ph/9608200 +astro-ph/9609009 +astro-ph/9609011 +astro-ph/9609012 +astro-ph/9609015 +astro-ph/9609020 +astro-ph/9609024 +astro-ph/9609026 +astro-ph/9609028 +astro-ph/9609039 +astro-ph/9609042 +astro-ph/9609046 +astro-ph/9609048 +astro-ph/9609050 +astro-ph/9609053 +astro-ph/9609056 +astro-ph/9609072 +astro-ph/9609080 +astro-ph/9609082 +astro-ph/9609086 +astro-ph/9609087 +astro-ph/9609088 +astro-ph/9609095 +astro-ph/9609096 +astro-ph/9609097 +astro-ph/9609102 +astro-ph/9609103 +astro-ph/9609104 +astro-ph/9609106 +astro-ph/9609107 +astro-ph/9609113 +astro-ph/9609116 +astro-ph/9609117 +astro-ph/9609118 +astro-ph/9609121 +astro-ph/9609124 +astro-ph/9609125 +astro-ph/9609127 +astro-ph/9609129 +astro-ph/9609135 +astro-ph/9609137 +astro-ph/9609139 +astro-ph/9609147 +astro-ph/9609152 +astro-ph/9609153 +astro-ph/9609154 +astro-ph/9609155 +astro-ph/9609157 +astro-ph/9609162 +astro-ph/9609164 +astro-ph/9609167 +astro-ph/9609169 +astro-ph/9609170 +astro-ph/9609171 +astro-ph/9609172 +astro-ph/9609177 +astro-ph/9609178 +astro-ph/9609182 +astro-ph/9609184 +astro-ph/9609186 +astro-ph/9609190 +astro-ph/9609194 +astro-ph/9609198 +astro-ph/9609199 +astro-ph/9609200 +astro-ph/9609203 +astro-ph/9610005 +astro-ph/9610007 +astro-ph/9610008 +astro-ph/9610011 +astro-ph/9610013 +astro-ph/9610014 +astro-ph/9610015 +astro-ph/9610016 +astro-ph/9610017 +astro-ph/9610021 +astro-ph/9610026 +astro-ph/9610034 +astro-ph/9610038 +astro-ph/9610040 +astro-ph/9610041 +astro-ph/9610042 +astro-ph/9610047 +astro-ph/9610048 +astro-ph/9610049 +astro-ph/9610055 +astro-ph/9610064 +astro-ph/9610065 +astro-ph/9610073 +astro-ph/9610074 +astro-ph/9610081 +astro-ph/9610082 +astro-ph/9610083 +astro-ph/9610084 +astro-ph/9610085 +astro-ph/9610086 +astro-ph/9610087 +astro-ph/9610088 +astro-ph/9610090 +astro-ph/9610092 +astro-ph/9610099 +astro-ph/9610102 +astro-ph/9610103 +astro-ph/9610110 +astro-ph/9610112 +astro-ph/9610118 +astro-ph/9610120 +astro-ph/9610121 +astro-ph/9610130 +astro-ph/9610131 +astro-ph/9610134 +astro-ph/9610135 +astro-ph/9610138 +astro-ph/9610139 +astro-ph/9610140 +astro-ph/9610142 +astro-ph/9610143 +astro-ph/9610144 +astro-ph/9610146 +astro-ph/9610147 +astro-ph/9610148 +astro-ph/9610151 +astro-ph/9610154 +astro-ph/9610157 +astro-ph/9610161 +astro-ph/9610163 +astro-ph/9610165 +astro-ph/9610171 +astro-ph/9610173 +astro-ph/9610175 +astro-ph/9610176 +astro-ph/9610177 +astro-ph/9610186 +astro-ph/9610191 +astro-ph/9610192 +astro-ph/9610197 +astro-ph/9610198 +astro-ph/9610201 +astro-ph/9610202 +astro-ph/9610203 +astro-ph/9610205 +astro-ph/9610208 +astro-ph/9610209 +astro-ph/9610210 +astro-ph/9610211 +astro-ph/9610212 +astro-ph/9610213 +astro-ph/9610221 +astro-ph/9610223 +astro-ph/9610224 +astro-ph/9610226 +astro-ph/9610227 +astro-ph/9610228 +astro-ph/9610232 +astro-ph/9610237 +astro-ph/9610243 +astro-ph/9610245 +astro-ph/9610248 +astro-ph/9610250 +astro-ph/9610255 +astro-ph/9610257 +astro-ph/9610270 +astro-ph/9611005 +astro-ph/9611006 +astro-ph/9611008 +astro-ph/9611013 +astro-ph/9611017 +astro-ph/9611022 +astro-ph/9611023 +astro-ph/9611024 +astro-ph/9611025 +astro-ph/9611026 +astro-ph/9611028 +astro-ph/9611035 +astro-ph/9611042 +astro-ph/9611045 +astro-ph/9611046 +astro-ph/9611049 +astro-ph/9611052 +astro-ph/9611053 +astro-ph/9611057 +astro-ph/9611058 +astro-ph/9611061 +astro-ph/9611063 +astro-ph/9611066 +astro-ph/9611076 +astro-ph/9611077 +astro-ph/9611083 +astro-ph/9611090 +astro-ph/9611094 +astro-ph/9611095 +astro-ph/9611098 +astro-ph/9611100 +astro-ph/9611103 +astro-ph/9611105 +astro-ph/9611110 +astro-ph/9611114 +astro-ph/9611125 +astro-ph/9611126 +astro-ph/9611127 +astro-ph/9611130 +astro-ph/9611133 +astro-ph/9611135 +astro-ph/9611139 +astro-ph/9611140 +astro-ph/9611141 +astro-ph/9611142 +astro-ph/9611143 +astro-ph/9611149 +astro-ph/9611150 +astro-ph/9611151 +astro-ph/9611153 +astro-ph/9611157 +astro-ph/9611158 +astro-ph/9611164 +astro-ph/9611167 +astro-ph/9611169 +astro-ph/9611172 +astro-ph/9611173 +astro-ph/9611180 +astro-ph/9611181 +astro-ph/9611182 +astro-ph/9611184 +astro-ph/9611192 +astro-ph/9611193 +astro-ph/9611198 +astro-ph/9611205 +astro-ph/9611210 +astro-ph/9611216 +astro-ph/9611219 +astro-ph/9611220 +astro-ph/9611221 +astro-ph/9611223 +astro-ph/9611224 +astro-ph/9611226 +astro-ph/9611230 +astro-ph/9611231 +astro-ph/9611233 +astro-ph/9612001 +astro-ph/9612005 +astro-ph/9612010 +astro-ph/9612014 +astro-ph/9612019 +astro-ph/9612021 +astro-ph/9612029 +astro-ph/9612039 +astro-ph/9612040 +astro-ph/9612045 +astro-ph/9612047 +astro-ph/9612048 +astro-ph/9612053 +astro-ph/9612070 +astro-ph/9612074 +astro-ph/9612076 +astro-ph/9612086 +astro-ph/9612089 +astro-ph/9612099 +astro-ph/9612106 +astro-ph/9612110 +astro-ph/9612112 +astro-ph/9612113 +astro-ph/9612114 +astro-ph/9612116 +astro-ph/9612119 +astro-ph/9612127 +astro-ph/9612128 +astro-ph/9612130 +astro-ph/9612132 +astro-ph/9612133 +astro-ph/9612134 +astro-ph/9612139 +astro-ph/9612142 +astro-ph/9612144 +astro-ph/9612147 +astro-ph/9612153 +astro-ph/9612154 +astro-ph/9612155 +astro-ph/9612157 +astro-ph/9612159 +astro-ph/9612160 +astro-ph/9612165 +astro-ph/9612167 +astro-ph/9612168 +astro-ph/9612169 +astro-ph/9612171 +astro-ph/9612172 +astro-ph/9612179 +astro-ph/9612180 +astro-ph/9612184 +astro-ph/9612185 +astro-ph/9612186 +astro-ph/9612187 +astro-ph/9612188 +astro-ph/9612191 +astro-ph/9612193 +astro-ph/9612195 +astro-ph/9612199 +astro-ph/9612201 +astro-ph/9612207 +astro-ph/9612210 +astro-ph/9612218 +astro-ph/9612221 +astro-ph/9612226 +astro-ph/9612228 +astro-ph/9612230 +astro-ph/9612234 +astro-ph/9612238 +astro-ph/9612240 +astro-ph/9612241 +atom-ph/9509001 Atomic Physics +atom-ph/9509006 Atomic Physics +atom-ph/9510001 Atomic Physics +atom-ph/9510003 Atomic Physics +atom-ph/9511002 Atomic Physics +atom-ph/9512003 Atomic Physics +atom-ph/9601001 Atomic Physics +atom-ph/9601002 Atomic Physics +atom-ph/9601003 Atomic Physics +atom-ph/9601004 Atomic Physics +atom-ph/9602002 Atomic Physics +atom-ph/9603001 Atomic Physics +atom-ph/9603003 Atomic Physics +atom-ph/9603004 Atomic Physics +atom-ph/9603005 Atomic Physics +atom-ph/9603009 Atomic Physics +atom-ph/9604002 Atomic Physics +atom-ph/9604003 Atomic Physics +atom-ph/9604004 Atomic Physics +atom-ph/9604005 Atomic Physics +atom-ph/9604008 Atomic Physics +atom-ph/9605002 Atomic Physics +atom-ph/9605003 Atomic Physics +atom-ph/9605004 Atomic Physics +atom-ph/9605006 Atomic Physics +atom-ph/9605008 Atomic Physics +atom-ph/9605009 Atomic Physics +atom-ph/9606001 Atomic Physics +atom-ph/9606002 Atomic Physics +atom-ph/9606003 Atomic Physics +atom-ph/9606004 Atomic Physics +atom-ph/9606005 Atomic Physics +atom-ph/9606006 Atomic Physics +atom-ph/9606007 Atomic Physics +atom-ph/9606008 Atomic Physics +atom-ph/9606009 Atomic Physics +atom-ph/9607005 Atomic Physics +atom-ph/9608001 Atomic Physics +atom-ph/9609001 Atomic Physics +atom-ph/9609002 Atomic Physics +bayes-an/9506003 Data Analysis, Statistics and Probability +chao-dyn/9501001 Chaotic Dynamics +chao-dyn/9501002 Chaotic Dynamics +chao-dyn/9501004 Chaotic Dynamics +chao-dyn/9501005 Chaotic Dynamics +chao-dyn/9501006 Chaotic Dynamics +chao-dyn/9501007 Chaotic Dynamics +chao-dyn/9501008 Chaotic Dynamics +chao-dyn/9501013 Chaotic Dynamics +chao-dyn/9501014 Chaotic Dynamics +chao-dyn/9501015 Chaotic Dynamics +chao-dyn/9501016 Chaotic Dynamics +chao-dyn/9501019 Chaotic Dynamics +chao-dyn/9501020 Chaotic Dynamics +chao-dyn/9501021 Chaotic Dynamics +chao-dyn/9501023 Chaotic Dynamics +chao-dyn/9501025 Chaotic Dynamics +chao-dyn/9502003 Chaotic Dynamics +chao-dyn/9502007 Chaotic Dynamics +chao-dyn/9502009 Chaotic Dynamics +chao-dyn/9502015 Chaotic Dynamics +chao-dyn/9502016 Chaotic Dynamics +chao-dyn/9502017 Chaotic Dynamics +chao-dyn/9502018 Chaotic Dynamics +chao-dyn/9502020 Chaotic Dynamics +chao-dyn/9502022 Chaotic Dynamics +chao-dyn/9503001 Chaotic Dynamics +chao-dyn/9503002 Chaotic Dynamics +chao-dyn/9503009 Chaotic Dynamics +chao-dyn/9503012 Chaotic Dynamics +chao-dyn/9504003 Chaotic Dynamics +chao-dyn/9504005 Chaotic Dynamics +chao-dyn/9504006 Chaotic Dynamics +chao-dyn/9504008 Chaotic Dynamics +chao-dyn/9504014 Chaotic Dynamics +chao-dyn/9504015 Chaotic Dynamics +chao-dyn/9504016 Chaotic Dynamics +chao-dyn/9504017 Chaotic Dynamics +chao-dyn/9505002 Chaotic Dynamics +chao-dyn/9505004 Chaotic Dynamics +chao-dyn/9505006 Chaotic Dynamics +chao-dyn/9505007 Chaotic Dynamics +chao-dyn/9505009 Chaotic Dynamics +chao-dyn/9505014 Chaotic Dynamics +chao-dyn/9506004 Chaotic Dynamics +chao-dyn/9506011 Chaotic Dynamics +chao-dyn/9506012 Chaotic Dynamics +chao-dyn/9506013 Chaotic Dynamics +chao-dyn/9506014 Chaotic Dynamics +chao-dyn/9507001 Chaotic Dynamics +chao-dyn/9507003 Chaotic Dynamics +chao-dyn/9507004 Chaotic Dynamics +chao-dyn/9507005 Chaotic Dynamics +chao-dyn/9507006 Chaotic Dynamics +chao-dyn/9507007 Chaotic Dynamics +chao-dyn/9507008 Chaotic Dynamics +chao-dyn/9507009 Chaotic Dynamics +chao-dyn/9507010 Chaotic Dynamics +chao-dyn/9508001 Chaotic Dynamics +chao-dyn/9508003 Chaotic Dynamics +chao-dyn/9508005 Chaotic Dynamics +chao-dyn/9508006 Chaotic Dynamics +chao-dyn/9508007 Chaotic Dynamics +chao-dyn/9508009 Chaotic Dynamics +chao-dyn/9509001 Chaotic Dynamics +chao-dyn/9509005 Chaotic Dynamics +chao-dyn/9509006 Chaotic Dynamics +chao-dyn/9509007 Chaotic Dynamics +chao-dyn/9509008 Chaotic Dynamics +chao-dyn/9509011 Chaotic Dynamics +chao-dyn/9509015 Chaotic Dynamics +chao-dyn/9509017 Chaotic Dynamics +chao-dyn/9509018 Chaotic Dynamics +chao-dyn/9509020 Chaotic Dynamics +chao-dyn/9510002 Chaotic Dynamics +chao-dyn/9510003 Chaotic Dynamics +chao-dyn/9510006 Chaotic Dynamics +chao-dyn/9510008 Chaotic Dynamics +chao-dyn/9510010 Chaotic Dynamics +chao-dyn/9510011 Chaotic Dynamics +chao-dyn/9510012 Chaotic Dynamics +chao-dyn/9510014 Chaotic Dynamics +chao-dyn/9510016 Chaotic Dynamics +chao-dyn/9510018 Chaotic Dynamics +chao-dyn/9510019 Chaotic Dynamics +chao-dyn/9511001 Chaotic Dynamics +chao-dyn/9511002 Chaotic Dynamics +chao-dyn/9511003 Chaotic Dynamics +chao-dyn/9511006 Chaotic Dynamics +chao-dyn/9511007 Chaotic Dynamics +chao-dyn/9511008 Chaotic Dynamics +chao-dyn/9512006 Chaotic Dynamics +chao-dyn/9601001 Chaotic Dynamics +chao-dyn/9601002 Chaotic Dynamics +chao-dyn/9601004 Chaotic Dynamics +chao-dyn/9601005 Chaotic Dynamics +chao-dyn/9601006 Chaotic Dynamics +chao-dyn/9601007 Chaotic Dynamics +chao-dyn/9601008 Chaotic Dynamics +chao-dyn/9601009 Chaotic Dynamics +chao-dyn/9601010 Chaotic Dynamics +chao-dyn/9601013 Chaotic Dynamics +chao-dyn/9601014 Chaotic Dynamics +chao-dyn/9601016 Chaotic Dynamics +chao-dyn/9601018 Chaotic Dynamics +chao-dyn/9601019 Chaotic Dynamics +chao-dyn/9602002 Chaotic Dynamics +chao-dyn/9602003 Chaotic Dynamics +chao-dyn/9602006 Chaotic Dynamics +chao-dyn/9602007 Chaotic Dynamics +chao-dyn/9602008 Chaotic Dynamics +chao-dyn/9602009 Chaotic Dynamics +chao-dyn/9602012 Chaotic Dynamics +chao-dyn/9602014 Chaotic Dynamics +chao-dyn/9602022 Chaotic Dynamics +chao-dyn/9603001 Chaotic Dynamics +chao-dyn/9603002 Chaotic Dynamics +chao-dyn/9603003 Chaotic Dynamics +chao-dyn/9603004 Chaotic Dynamics +chao-dyn/9603005 Chaotic Dynamics +chao-dyn/9603007 Chaotic Dynamics +chao-dyn/9603009 Chaotic Dynamics +chao-dyn/9603015 Chaotic Dynamics +chao-dyn/9603019 Chaotic Dynamics +chao-dyn/9603020 Chaotic Dynamics +chao-dyn/9604001 Chaotic Dynamics +chao-dyn/9604002 Chaotic Dynamics +chao-dyn/9604003 Chaotic Dynamics +chao-dyn/9604004 Chaotic Dynamics +chao-dyn/9604005 Chaotic Dynamics +chao-dyn/9604006 Chaotic Dynamics +chao-dyn/9604007 Chaotic Dynamics +chao-dyn/9604009 Chaotic Dynamics +chao-dyn/9604010 Chaotic Dynamics +chao-dyn/9604011 Chaotic Dynamics +chao-dyn/9604012 Chaotic Dynamics +chao-dyn/9604016 Chaotic Dynamics +chao-dyn/9604017 Chaotic Dynamics +chao-dyn/9604019 Chaotic Dynamics +chao-dyn/9604020 Chaotic Dynamics +chao-dyn/9605001 Chaotic Dynamics +chao-dyn/9605003 Chaotic Dynamics +chao-dyn/9605006 Chaotic Dynamics +chao-dyn/9605007 Chaotic Dynamics +chao-dyn/9605009 Chaotic Dynamics +chao-dyn/9605010 Chaotic Dynamics +chao-dyn/9605011 Chaotic Dynamics +chao-dyn/9605014 Chaotic Dynamics +chao-dyn/9605015 Chaotic Dynamics +chao-dyn/9605017 Chaotic Dynamics +chao-dyn/9606003 Chaotic Dynamics +chao-dyn/9606004 Chaotic Dynamics +chao-dyn/9606005 Chaotic Dynamics +chao-dyn/9606006 Chaotic Dynamics +chao-dyn/9606007 Chaotic Dynamics +chao-dyn/9606008 Chaotic Dynamics +chao-dyn/9606010 Chaotic Dynamics +chao-dyn/9606011 Chaotic Dynamics +chao-dyn/9606012 Chaotic Dynamics +chao-dyn/9606014 Chaotic Dynamics +chao-dyn/9606015 Chaotic Dynamics +chao-dyn/9606016 Chaotic Dynamics +chao-dyn/9606018 Chaotic Dynamics +chao-dyn/9606019 Chaotic Dynamics +chao-dyn/9606020 Chaotic Dynamics +chao-dyn/9607004 Chaotic Dynamics +chao-dyn/9607005 Chaotic Dynamics +chao-dyn/9607006 Chaotic Dynamics +chao-dyn/9607007 Chaotic Dynamics +chao-dyn/9607014 Chaotic Dynamics +chao-dyn/9607017 Chaotic Dynamics +chao-dyn/9607018 Chaotic Dynamics +chao-dyn/9607019 Chaotic Dynamics +chao-dyn/9607021 Chaotic Dynamics +chao-dyn/9608001 Chaotic Dynamics +chao-dyn/9608002 Chaotic Dynamics +chao-dyn/9608003 Chaotic Dynamics +chao-dyn/9608004 Chaotic Dynamics +chao-dyn/9608005 Chaotic Dynamics +chao-dyn/9608006 Chaotic Dynamics +chao-dyn/9608008 Chaotic Dynamics +chao-dyn/9608009 Chaotic Dynamics +chao-dyn/9608010 Chaotic Dynamics +chao-dyn/9608012 Chaotic Dynamics +chao-dyn/9608013 Chaotic Dynamics +chao-dyn/9608014 Chaotic Dynamics +chao-dyn/9608015 Chaotic Dynamics +chao-dyn/9608016 Chaotic Dynamics +chao-dyn/9608017 Chaotic Dynamics +chao-dyn/9608018 Chaotic Dynamics +chao-dyn/9609001 Chaotic Dynamics +chao-dyn/9609002 Chaotic Dynamics +chao-dyn/9609003 Chaotic Dynamics +chao-dyn/9609004 Chaotic Dynamics +chao-dyn/9609007 Chaotic Dynamics +chao-dyn/9609010 Chaotic Dynamics +chao-dyn/9609013 Chaotic Dynamics +chao-dyn/9609016 Chaotic Dynamics +chao-dyn/9609017 Chaotic Dynamics +chao-dyn/9609018 Chaotic Dynamics +chao-dyn/9610001 Chaotic Dynamics +chao-dyn/9610002 Chaotic Dynamics +chao-dyn/9610006 Chaotic Dynamics +chao-dyn/9610007 Chaotic Dynamics +chao-dyn/9610009 Chaotic Dynamics +chao-dyn/9610010 Chaotic Dynamics +chao-dyn/9610012 Chaotic Dynamics +chao-dyn/9610013 Chaotic Dynamics +chao-dyn/9610017 Chaotic Dynamics +chao-dyn/9610019 Chaotic Dynamics +chao-dyn/9611001 Chaotic Dynamics +chao-dyn/9611004 Chaotic Dynamics +chao-dyn/9611005 Chaotic Dynamics +chao-dyn/9611006 Chaotic Dynamics +chao-dyn/9611007 Chaotic Dynamics +chao-dyn/9611009 Chaotic Dynamics +chao-dyn/9611010 Chaotic Dynamics +chao-dyn/9611011 Chaotic Dynamics +chao-dyn/9611012 Chaotic Dynamics +chao-dyn/9611013 Chaotic Dynamics +chao-dyn/9611014 Chaotic Dynamics +chao-dyn/9611015 Chaotic Dynamics +chao-dyn/9611016 Chaotic Dynamics +chao-dyn/9612001 Chaotic Dynamics +chao-dyn/9612005 Chaotic Dynamics +chao-dyn/9612006 Chaotic Dynamics +chao-dyn/9612007 Chaotic Dynamics +chao-dyn/9612009 Chaotic Dynamics +chao-dyn/9612011 Chaotic Dynamics +chao-dyn/9612012 Chaotic Dynamics +chao-dyn/9612013 Chaotic Dynamics +chao-dyn/9612014 Chaotic Dynamics +chao-dyn/9612017 Chaotic Dynamics +chao-dyn/9612018 Chaotic Dynamics +chao-dyn/9612022 Chaotic Dynamics +chao-dyn/9612025 Chaotic Dynamics +chao-dyn/9612027 Chaotic Dynamics +chao-dyn/9708010 Chaotic Dynamics +chem-ph/9501001 Chemical Physics +chem-ph/9501002 Chemical Physics +chem-ph/9502009 Chemical Physics +chem-ph/9504001 Chemical Physics +chem-ph/9504003 Chemical Physics +chem-ph/9504004 Chemical Physics +chem-ph/9505001 Chemical Physics +chem-ph/9505002 Chemical Physics +chem-ph/9505003 Chemical Physics +chem-ph/9506001 Chemical Physics +chem-ph/9506003 Chemical Physics +chem-ph/9507001 Chemical Physics +chem-ph/9507002 Chemical Physics +chem-ph/9507003 Chemical Physics +chem-ph/9507005 Chemical Physics +chem-ph/9508001 Chemical Physics +chem-ph/9508003 Chemical Physics +chem-ph/9508004 Chemical Physics +chem-ph/9509001 Chemical Physics +chem-ph/9510004 Chemical Physics +chem-ph/9511002 Chemical Physics +chem-ph/9512002 Chemical Physics +chem-ph/9512003 Chemical Physics +chem-ph/9512004 Chemical Physics +chem-ph/9512006 Chemical Physics +chem-ph/9512007 Chemical Physics +chem-ph/9512008 Chemical Physics +chem-ph/9601001 Chemical Physics +chem-ph/9601003 Chemical Physics +chem-ph/9602001 Chemical Physics +chem-ph/9602002 Chemical Physics +chem-ph/9602003 Chemical Physics +chem-ph/9602005 Chemical Physics +chem-ph/9603006 Chemical Physics +chem-ph/9603007 Chemical Physics +chem-ph/9604001 Chemical Physics +chem-ph/9604002 Chemical Physics +chem-ph/9604004 Chemical Physics +chem-ph/9604005 Chemical Physics +chem-ph/9604006 Chemical Physics +chem-ph/9604007 Chemical Physics +chem-ph/9605003 Chemical Physics +chem-ph/9607001 Chemical Physics +chem-ph/9608002 Chemical Physics +chem-ph/9608003 Chemical Physics +chem-ph/9609002 Chemical Physics +cmp-lg/9606015 Computation and Language +comp-gas/9501003 Cellular Automata and Lattice Gases +comp-gas/9501004 Cellular Automata and Lattice Gases +comp-gas/9501005 Cellular Automata and Lattice Gases +comp-gas/9501006 Cellular Automata and Lattice Gases +comp-gas/9501008 Cellular Automata and Lattice Gases +comp-gas/9501010 Cellular Automata and Lattice Gases +comp-gas/9502002 Cellular Automata and Lattice Gases +comp-gas/9502003 Cellular Automata and Lattice Gases +comp-gas/9502004 Cellular Automata and Lattice Gases +comp-gas/9503001 Cellular Automata and Lattice Gases +comp-gas/9507001 Cellular Automata and Lattice Gases +comp-gas/9507004 Cellular Automata and Lattice Gases +comp-gas/9508002 Cellular Automata and Lattice Gases +comp-gas/9511001 Cellular Automata and Lattice Gases +comp-gas/9512001 Cellular Automata and Lattice Gases +comp-gas/9602001 Cellular Automata and Lattice Gases +comp-gas/9603002 Cellular Automata and Lattice Gases +comp-gas/9605001 Cellular Automata and Lattice Gases +comp-gas/9605003 Cellular Automata and Lattice Gases +comp-gas/9605004 Cellular Automata and Lattice Gases +comp-gas/9607001 Cellular Automata and Lattice Gases +comp-gas/9607002 Cellular Automata and Lattice Gases +comp-gas/9608001 Cellular Automata and Lattice Gases +comp-gas/9611001 Cellular Automata and Lattice Gases +cond-mat/9501001 +cond-mat/9501005 +cond-mat/9501008 +cond-mat/9501009 +cond-mat/9501019 +cond-mat/9501027 +cond-mat/9501034 +cond-mat/9501044 +cond-mat/9501052 +cond-mat/9501059 Statistical Mechanics +cond-mat/9501063 +cond-mat/9501069 +cond-mat/9501074 +cond-mat/9501078 +cond-mat/9501079 +cond-mat/9501097 +cond-mat/9501100 +cond-mat/9501101 +cond-mat/9501103 +cond-mat/9501104 +cond-mat/9501108 +cond-mat/9501117 +cond-mat/9501118 +cond-mat/9501122 +cond-mat/9501124 +cond-mat/9501129 +cond-mat/9501131 +cond-mat/9501133 +cond-mat/9501135 +cond-mat/9501136 +cond-mat/9501137 +cond-mat/9502001 +cond-mat/9502003 +cond-mat/9502011 +cond-mat/9502020 +cond-mat/9502021 +cond-mat/9502022 +cond-mat/9502024 +cond-mat/9502025 +cond-mat/9502027 +cond-mat/9502029 +cond-mat/9502031 +cond-mat/9502032 +cond-mat/9502038 +cond-mat/9502041 +cond-mat/9502044 +cond-mat/9502047 +cond-mat/9502049 +cond-mat/9502056 +cond-mat/9502058 +cond-mat/9502064 +cond-mat/9502072 +cond-mat/9502076 +cond-mat/9502080 +cond-mat/9502087 +cond-mat/9502090 +cond-mat/9502099 +cond-mat/9502113 +cond-mat/9502115 +cond-mat/9502116 +cond-mat/9503009 +cond-mat/9503016 +cond-mat/9503021 +cond-mat/9503028 +cond-mat/9503032 +cond-mat/9503038 +cond-mat/9503041 +cond-mat/9503061 +cond-mat/9503074 +cond-mat/9503078 +cond-mat/9503081 +cond-mat/9503092 +cond-mat/9503094 +cond-mat/9503099 +cond-mat/9503106 +cond-mat/9503110 +cond-mat/9503111 +cond-mat/9503114 +cond-mat/9503115 +cond-mat/9503116 +cond-mat/9503117 +cond-mat/9503119 +cond-mat/9503120 +cond-mat/9503121 +cond-mat/9503122 +cond-mat/9503123 +cond-mat/9503124 +cond-mat/9503126 +cond-mat/9503129 +cond-mat/9503130 +cond-mat/9503131 +cond-mat/9503135 +cond-mat/9503137 +cond-mat/9503138 +cond-mat/9503139 +cond-mat/9503140 +cond-mat/9503142 +cond-mat/9503143 +cond-mat/9503144 +cond-mat/9503145 +cond-mat/9503146 +cond-mat/9503147 +cond-mat/9503148 +cond-mat/9503149 +cond-mat/9503151 +cond-mat/9503152 +cond-mat/9503153 +cond-mat/9503154 +cond-mat/9503155 +cond-mat/9503157 +cond-mat/9503158 +cond-mat/9503159 +cond-mat/9503160 +cond-mat/9503162 +cond-mat/9503163 +cond-mat/9503164 +cond-mat/9503166 +cond-mat/9503167 +cond-mat/9503168 +cond-mat/9503170 +cond-mat/9503171 +cond-mat/9503172 +cond-mat/9503175 +cond-mat/9504001 +cond-mat/9504002 +cond-mat/9504005 +cond-mat/9504007 +cond-mat/9504009 +cond-mat/9504010 +cond-mat/9504011 +cond-mat/9504013 +cond-mat/9504014 +cond-mat/9504016 +cond-mat/9504017 +cond-mat/9504018 +cond-mat/9504019 +cond-mat/9504020 +cond-mat/9504023 +cond-mat/9504025 +cond-mat/9504026 +cond-mat/9504027 +cond-mat/9504029 +cond-mat/9504033 +cond-mat/9504034 +cond-mat/9504035 +cond-mat/9504036 +cond-mat/9504037 +cond-mat/9504038 +cond-mat/9504039 +cond-mat/9504041 +cond-mat/9504042 +cond-mat/9504043 +cond-mat/9504044 +cond-mat/9504045 +cond-mat/9504048 +cond-mat/9504049 +cond-mat/9504050 +cond-mat/9504052 +cond-mat/9504054 +cond-mat/9504055 +cond-mat/9504056 +cond-mat/9504057 +cond-mat/9504060 +cond-mat/9504061 +cond-mat/9504062 +cond-mat/9504063 +cond-mat/9504066 +cond-mat/9504067 +cond-mat/9504070 +cond-mat/9504071 +cond-mat/9504073 +cond-mat/9504074 +cond-mat/9504075 +cond-mat/9504076 +cond-mat/9504077 +cond-mat/9504078 +cond-mat/9504079 +cond-mat/9504080 +cond-mat/9504081 +cond-mat/9504082 +cond-mat/9504083 +cond-mat/9504084 +cond-mat/9504085 +cond-mat/9504087 +cond-mat/9504088 +cond-mat/9504089 +cond-mat/9504091 +cond-mat/9504092 +cond-mat/9504093 +cond-mat/9504094 +cond-mat/9504095 +cond-mat/9504096 +cond-mat/9504097 +cond-mat/9504098 +cond-mat/9504099 +cond-mat/9504102 +cond-mat/9504103 +cond-mat/9504104 +cond-mat/9504105 +cond-mat/9504106 +cond-mat/9504107 +cond-mat/9504108 +cond-mat/9504109 +cond-mat/9504110 +cond-mat/9504112 +cond-mat/9504113 +cond-mat/9504114 +cond-mat/9504116 +cond-mat/9504118 +cond-mat/9504120 +cond-mat/9504122 +cond-mat/9505001 +cond-mat/9505004 +cond-mat/9505005 +cond-mat/9505006 +cond-mat/9505007 +cond-mat/9505010 +cond-mat/9505013 +cond-mat/9505014 +cond-mat/9505015 +cond-mat/9505017 +cond-mat/9505018 +cond-mat/9505019 +cond-mat/9505020 +cond-mat/9505021 +cond-mat/9505022 +cond-mat/9505023 +cond-mat/9505024 +cond-mat/9505025 +cond-mat/9505026 +cond-mat/9505028 +cond-mat/9505030 +cond-mat/9505031 +cond-mat/9505033 +cond-mat/9505034 +cond-mat/9505035 +cond-mat/9505036 +cond-mat/9505037 +cond-mat/9505038 +cond-mat/9505039 +cond-mat/9505040 +cond-mat/9505043 +cond-mat/9505046 +cond-mat/9505047 +cond-mat/9505048 +cond-mat/9505050 +cond-mat/9505051 +cond-mat/9505052 +cond-mat/9505053 +cond-mat/9505055 +cond-mat/9505056 +cond-mat/9505059 +cond-mat/9505060 +cond-mat/9505063 +cond-mat/9505064 +cond-mat/9505065 +cond-mat/9505066 +cond-mat/9505067 +cond-mat/9505070 +cond-mat/9505071 +cond-mat/9505072 +cond-mat/9505074 +cond-mat/9505075 +cond-mat/9505076 +cond-mat/9505077 +cond-mat/9505079 +cond-mat/9505082 +cond-mat/9505084 +cond-mat/9505085 +cond-mat/9505090 +cond-mat/9505091 +cond-mat/9505092 +cond-mat/9505093 +cond-mat/9505094 +cond-mat/9505095 +cond-mat/9505096 +cond-mat/9505098 +cond-mat/9505099 +cond-mat/9505100 +cond-mat/9505101 +cond-mat/9505103 +cond-mat/9505104 +cond-mat/9505110 +cond-mat/9505112 +cond-mat/9505114 +cond-mat/9505115 +cond-mat/9505117 +cond-mat/9505118 +cond-mat/9505119 +cond-mat/9505121 +cond-mat/9505123 +cond-mat/9505126 +cond-mat/9505127 +cond-mat/9505128 +cond-mat/9505129 +cond-mat/9505130 +cond-mat/9505131 +cond-mat/9505132 +cond-mat/9505134 +cond-mat/9505135 +cond-mat/9505136 +cond-mat/9505138 +cond-mat/9505139 +cond-mat/9505140 +cond-mat/9505142 +cond-mat/9505143 +cond-mat/9505145 +cond-mat/9505146 +cond-mat/9505149 +cond-mat/9505150 +cond-mat/9505152 +cond-mat/9505153 +cond-mat/9505154 +cond-mat/9505155 +cond-mat/9505157 +cond-mat/9506002 +cond-mat/9506004 +cond-mat/9506005 +cond-mat/9506006 +cond-mat/9506009 +cond-mat/9506010 +cond-mat/9506011 +cond-mat/9506013 +cond-mat/9506019 +cond-mat/9506020 +cond-mat/9506021 +cond-mat/9506023 +cond-mat/9506026 +cond-mat/9506027 +cond-mat/9506028 +cond-mat/9506030 +cond-mat/9506032 +cond-mat/9506033 +cond-mat/9506034 +cond-mat/9506035 +cond-mat/9506036 +cond-mat/9506037 +cond-mat/9506039 +cond-mat/9506040 +cond-mat/9506041 +cond-mat/9506042 +cond-mat/9506044 +cond-mat/9506047 +cond-mat/9506049 +cond-mat/9506050 +cond-mat/9506053 +cond-mat/9506054 +cond-mat/9506055 +cond-mat/9506057 +cond-mat/9506062 +cond-mat/9506063 +cond-mat/9506064 +cond-mat/9506065 +cond-mat/9506066 +cond-mat/9506067 +cond-mat/9506069 +cond-mat/9506072 +cond-mat/9506073 +cond-mat/9506074 +cond-mat/9506075 +cond-mat/9506076 +cond-mat/9506081 +cond-mat/9506082 +cond-mat/9506083 +cond-mat/9506084 +cond-mat/9506085 +cond-mat/9506086 +cond-mat/9506087 +cond-mat/9506091 +cond-mat/9506092 +cond-mat/9506094 +cond-mat/9506095 +cond-mat/9506096 +cond-mat/9506097 +cond-mat/9506099 +cond-mat/9506100 +cond-mat/9506103 +cond-mat/9506104 +cond-mat/9506105 +cond-mat/9506107 +cond-mat/9506108 +cond-mat/9506109 +cond-mat/9506110 +cond-mat/9506111 +cond-mat/9506112 +cond-mat/9506113 +cond-mat/9506114 +cond-mat/9506116 +cond-mat/9506117 +cond-mat/9506118 +cond-mat/9506119 +cond-mat/9506120 +cond-mat/9506121 +cond-mat/9506122 +cond-mat/9506123 +cond-mat/9506124 +cond-mat/9506125 +cond-mat/9506127 +cond-mat/9506131 +cond-mat/9506133 +cond-mat/9506134 +cond-mat/9506136 +cond-mat/9506137 +cond-mat/9506138 +cond-mat/9506139 +cond-mat/9506141 +cond-mat/9506142 +cond-mat/9506144 +cond-mat/9507002 +cond-mat/9507003 Statistical Mechanics +cond-mat/9507004 +cond-mat/9507005 +cond-mat/9507006 +cond-mat/9507007 +cond-mat/9507008 +cond-mat/9507009 +cond-mat/9507012 +cond-mat/9507013 +cond-mat/9507014 +cond-mat/9507015 +cond-mat/9507016 +cond-mat/9507017 +cond-mat/9507018 +cond-mat/9507019 +cond-mat/9507020 +cond-mat/9507021 +cond-mat/9507022 +cond-mat/9507023 +cond-mat/9507025 +cond-mat/9507026 +cond-mat/9507027 +cond-mat/9507028 +cond-mat/9507029 +cond-mat/9507030 +cond-mat/9507031 +cond-mat/9507032 +cond-mat/9507034 +cond-mat/9507035 +cond-mat/9507037 +cond-mat/9507039 +cond-mat/9507041 +cond-mat/9507042 +cond-mat/9507043 +cond-mat/9507044 +cond-mat/9507046 +cond-mat/9507049 +cond-mat/9507051 +cond-mat/9507052 +cond-mat/9507054 +cond-mat/9507055 +cond-mat/9507057 +cond-mat/9507059 +cond-mat/9507060 +cond-mat/9507062 +cond-mat/9507063 +cond-mat/9507065 +cond-mat/9507066 +cond-mat/9507067 +cond-mat/9507068 +cond-mat/9507069 +cond-mat/9507071 +cond-mat/9507073 +cond-mat/9507074 +cond-mat/9507076 +cond-mat/9507077 +cond-mat/9507078 +cond-mat/9507080 +cond-mat/9507082 +cond-mat/9507083 +cond-mat/9507084 +cond-mat/9507085 +cond-mat/9507086 +cond-mat/9507087 +cond-mat/9507088 +cond-mat/9507089 +cond-mat/9507091 +cond-mat/9507092 +cond-mat/9507093 +cond-mat/9507094 +cond-mat/9507096 +cond-mat/9507097 +cond-mat/9507099 +cond-mat/9507100 +cond-mat/9507101 +cond-mat/9507103 +cond-mat/9507104 +cond-mat/9507106 +cond-mat/9507107 +cond-mat/9507108 +cond-mat/9507109 +cond-mat/9507110 +cond-mat/9507112 +cond-mat/9507114 +cond-mat/9507116 +cond-mat/9507117 +cond-mat/9507118 +cond-mat/9507119 +cond-mat/9507121 +cond-mat/9507123 +cond-mat/9507126 +cond-mat/9507129 +cond-mat/9507130 +cond-mat/9507131 +cond-mat/9507132 +cond-mat/9507133 +cond-mat/9507135 +cond-mat/9507136 +cond-mat/9507137 +cond-mat/9507138 +cond-mat/9507139 +cond-mat/9507142 +cond-mat/9507143 +cond-mat/9508002 +cond-mat/9508003 +cond-mat/9508004 +cond-mat/9508005 +cond-mat/9508006 +cond-mat/9508007 +cond-mat/9508008 +cond-mat/9508009 +cond-mat/9508010 +cond-mat/9508011 +cond-mat/9508012 +cond-mat/9508013 +cond-mat/9508015 +cond-mat/9508016 +cond-mat/9508017 +cond-mat/9508018 +cond-mat/9508019 +cond-mat/9508021 +cond-mat/9508022 +cond-mat/9508023 +cond-mat/9508024 +cond-mat/9508025 +cond-mat/9508026 +cond-mat/9508028 +cond-mat/9508029 +cond-mat/9508031 +cond-mat/9508032 +cond-mat/9508033 +cond-mat/9508034 +cond-mat/9508035 +cond-mat/9508036 +cond-mat/9508037 +cond-mat/9508038 +cond-mat/9508039 +cond-mat/9508040 +cond-mat/9508041 +cond-mat/9508042 +cond-mat/9508043 +cond-mat/9508044 +cond-mat/9508047 +cond-mat/9508048 +cond-mat/9508049 +cond-mat/9508050 +cond-mat/9508052 +cond-mat/9508056 +cond-mat/9508057 +cond-mat/9508058 +cond-mat/9508059 +cond-mat/9508060 +cond-mat/9508061 +cond-mat/9508064 +cond-mat/9508065 +cond-mat/9508066 +cond-mat/9508067 +cond-mat/9508069 +cond-mat/9508070 +cond-mat/9508071 +cond-mat/9508073 +cond-mat/9508074 +cond-mat/9508075 +cond-mat/9508077 +cond-mat/9508078 +cond-mat/9508079 +cond-mat/9508082 +cond-mat/9508083 +cond-mat/9508084 +cond-mat/9508085 +cond-mat/9508086 +cond-mat/9508087 +cond-mat/9508088 +cond-mat/9508089 +cond-mat/9508090 +cond-mat/9508091 +cond-mat/9508094 Superconductivity +cond-mat/9508098 +cond-mat/9508100 +cond-mat/9508101 +cond-mat/9508103 +cond-mat/9508104 +cond-mat/9508105 +cond-mat/9508106 +cond-mat/9508107 +cond-mat/9508108 +cond-mat/9508109 +cond-mat/9508110 +cond-mat/9508111 +cond-mat/9508112 +cond-mat/9508113 +cond-mat/9508114 +cond-mat/9508117 +cond-mat/9508118 +cond-mat/9508119 +cond-mat/9508120 +cond-mat/9508121 +cond-mat/9508122 +cond-mat/9508123 +cond-mat/9508124 +cond-mat/9508125 +cond-mat/9508127 +cond-mat/9508128 +cond-mat/9508131 +cond-mat/9508132 +cond-mat/9508133 +cond-mat/9508134 +cond-mat/9508135 +cond-mat/9508136 +cond-mat/9508137 +cond-mat/9508138 +cond-mat/9508140 +cond-mat/9508141 +cond-mat/9508142 +cond-mat/9508143 +cond-mat/9508145 +cond-mat/9508147 +cond-mat/9508148 +cond-mat/9508149 +cond-mat/9509001 +cond-mat/9509003 +cond-mat/9509004 +cond-mat/9509005 +cond-mat/9509006 +cond-mat/9509008 +cond-mat/9509009 +cond-mat/9509011 +cond-mat/9509013 +cond-mat/9509014 +cond-mat/9509016 +cond-mat/9509017 +cond-mat/9509018 +cond-mat/9509019 +cond-mat/9509022 +cond-mat/9509023 +cond-mat/9509024 +cond-mat/9509028 +cond-mat/9509029 +cond-mat/9509030 +cond-mat/9509031 +cond-mat/9509032 +cond-mat/9509034 +cond-mat/9509035 +cond-mat/9509036 +cond-mat/9509037 Materials Science +cond-mat/9509038 +cond-mat/9509044 +cond-mat/9509045 +cond-mat/9509046 +cond-mat/9509048 +cond-mat/9509050 +cond-mat/9509051 +cond-mat/9509053 +cond-mat/9509054 +cond-mat/9509055 +cond-mat/9509056 +cond-mat/9509057 +cond-mat/9509062 +cond-mat/9509063 Statistical Mechanics +cond-mat/9509065 +cond-mat/9509066 +cond-mat/9509067 +cond-mat/9509068 +cond-mat/9509069 Statistical Mechanics +cond-mat/9509070 +cond-mat/9509072 +cond-mat/9509075 +cond-mat/9509076 +cond-mat/9509077 +cond-mat/9509078 +cond-mat/9509080 +cond-mat/9509084 +cond-mat/9509086 +cond-mat/9509087 +cond-mat/9509093 +cond-mat/9509097 +cond-mat/9509098 +cond-mat/9509099 +cond-mat/9509100 +cond-mat/9509102 +cond-mat/9509103 +cond-mat/9509104 +cond-mat/9509105 +cond-mat/9509107 +cond-mat/9509109 +cond-mat/9509112 +cond-mat/9509113 +cond-mat/9509116 +cond-mat/9509117 +cond-mat/9509118 +cond-mat/9509121 +cond-mat/9509122 +cond-mat/9509123 +cond-mat/9509124 +cond-mat/9509126 +cond-mat/9509129 +cond-mat/9509130 +cond-mat/9509131 +cond-mat/9509132 +cond-mat/9509133 +cond-mat/9509135 +cond-mat/9509136 +cond-mat/9509137 +cond-mat/9509138 +cond-mat/9509139 +cond-mat/9509140 +cond-mat/9509142 +cond-mat/9509143 +cond-mat/9509144 +cond-mat/9509145 +cond-mat/9509146 +cond-mat/9509147 +cond-mat/9509148 +cond-mat/9509150 +cond-mat/9509151 +cond-mat/9509152 +cond-mat/9509153 +cond-mat/9509154 +cond-mat/9509158 +cond-mat/9509160 +cond-mat/9509161 +cond-mat/9509163 +cond-mat/9509164 +cond-mat/9509165 +cond-mat/9509166 +cond-mat/9509168 +cond-mat/9509169 +cond-mat/9509170 +cond-mat/9509171 +cond-mat/9509172 +cond-mat/9509173 +cond-mat/9509174 +cond-mat/9509176 +cond-mat/9509177 +cond-mat/9509179 +cond-mat/9509181 +cond-mat/9509182 +cond-mat/9510001 +cond-mat/9510003 +cond-mat/9510005 +cond-mat/9510007 +cond-mat/9510008 +cond-mat/9510009 +cond-mat/9510010 +cond-mat/9510011 +cond-mat/9510012 +cond-mat/9510013 +cond-mat/9510014 +cond-mat/9510015 +cond-mat/9510016 +cond-mat/9510017 +cond-mat/9510018 +cond-mat/9510019 +cond-mat/9510021 +cond-mat/9510023 +cond-mat/9510024 +cond-mat/9510025 +cond-mat/9510026 +cond-mat/9510027 +cond-mat/9510028 +cond-mat/9510029 +cond-mat/9510030 +cond-mat/9510031 +cond-mat/9510034 +cond-mat/9510036 +cond-mat/9510038 +cond-mat/9510040 +cond-mat/9510043 +cond-mat/9510044 +cond-mat/9510045 +cond-mat/9510048 +cond-mat/9510049 +cond-mat/9510050 +cond-mat/9510051 +cond-mat/9510052 +cond-mat/9510053 +cond-mat/9510054 +cond-mat/9510055 +cond-mat/9510056 +cond-mat/9510057 +cond-mat/9510060 +cond-mat/9510062 +cond-mat/9510064 +cond-mat/9510066 +cond-mat/9510067 +cond-mat/9510070 +cond-mat/9510071 +cond-mat/9510072 +cond-mat/9510073 +cond-mat/9510077 +cond-mat/9510078 +cond-mat/9510080 +cond-mat/9510083 +cond-mat/9510084 +cond-mat/9510085 +cond-mat/9510086 +cond-mat/9510087 +cond-mat/9510088 +cond-mat/9510089 +cond-mat/9510090 +cond-mat/9510092 +cond-mat/9510093 +cond-mat/9510094 +cond-mat/9510095 +cond-mat/9510096 +cond-mat/9510098 +cond-mat/9510099 +cond-mat/9510100 +cond-mat/9510102 +cond-mat/9510104 +cond-mat/9510105 +cond-mat/9510106 +cond-mat/9510107 +cond-mat/9510108 +cond-mat/9510109 +cond-mat/9510110 +cond-mat/9510112 +cond-mat/9510113 +cond-mat/9510115 +cond-mat/9510118 +cond-mat/9510119 +cond-mat/9510120 +cond-mat/9510121 +cond-mat/9510122 +cond-mat/9510123 +cond-mat/9510124 +cond-mat/9510125 +cond-mat/9510126 +cond-mat/9510127 +cond-mat/9510128 +cond-mat/9510129 +cond-mat/9510130 +cond-mat/9510131 +cond-mat/9510134 +cond-mat/9510135 +cond-mat/9510139 +cond-mat/9510140 +cond-mat/9510142 +cond-mat/9510143 +cond-mat/9510144 +cond-mat/9510145 +cond-mat/9510146 Statistical Mechanics +cond-mat/9510147 +cond-mat/9510148 +cond-mat/9510149 +cond-mat/9510151 +cond-mat/9510153 +cond-mat/9510155 +cond-mat/9510156 Mesoscale and Nanoscale Physics +cond-mat/9510158 +cond-mat/9510160 +cond-mat/9510162 +cond-mat/9510163 +cond-mat/9510165 +cond-mat/9510167 +cond-mat/9510169 +cond-mat/9510170 +cond-mat/9510172 +cond-mat/9510173 +cond-mat/9511001 +cond-mat/9511004 +cond-mat/9511006 +cond-mat/9511007 +cond-mat/9511010 +cond-mat/9511012 +cond-mat/9511013 +cond-mat/9511014 +cond-mat/9511016 +cond-mat/9511017 +cond-mat/9511021 +cond-mat/9511022 +cond-mat/9511025 +cond-mat/9511026 +cond-mat/9511027 +cond-mat/9511028 +cond-mat/9511030 +cond-mat/9511031 +cond-mat/9511032 +cond-mat/9511033 +cond-mat/9511034 +cond-mat/9511036 +cond-mat/9511039 +cond-mat/9511040 +cond-mat/9511041 +cond-mat/9511043 +cond-mat/9511044 +cond-mat/9511046 +cond-mat/9511047 +cond-mat/9511048 +cond-mat/9511049 +cond-mat/9511051 +cond-mat/9511054 +cond-mat/9511055 +cond-mat/9511056 +cond-mat/9511057 +cond-mat/9511058 +cond-mat/9511059 +cond-mat/9511060 +cond-mat/9511061 +cond-mat/9511062 +cond-mat/9511063 +cond-mat/9511067 +cond-mat/9511068 +cond-mat/9511069 +cond-mat/9511071 +cond-mat/9511072 +cond-mat/9511073 +cond-mat/9511075 +cond-mat/9511076 +cond-mat/9511077 +cond-mat/9511079 +cond-mat/9511080 +cond-mat/9511081 +cond-mat/9511082 +cond-mat/9511084 +cond-mat/9511086 +cond-mat/9511088 +cond-mat/9511089 +cond-mat/9511090 +cond-mat/9511095 +cond-mat/9511096 +cond-mat/9511097 +cond-mat/9511098 +cond-mat/9511099 +cond-mat/9511100 +cond-mat/9511102 +cond-mat/9511103 +cond-mat/9511104 +cond-mat/9511105 +cond-mat/9511106 +cond-mat/9511108 +cond-mat/9511109 +cond-mat/9511110 +cond-mat/9511111 +cond-mat/9511113 +cond-mat/9511116 +cond-mat/9511117 +cond-mat/9511119 +cond-mat/9511120 +cond-mat/9511121 +cond-mat/9511122 +cond-mat/9511123 +cond-mat/9511127 +cond-mat/9511128 +cond-mat/9511133 +cond-mat/9511134 +cond-mat/9511136 +cond-mat/9511137 +cond-mat/9512001 +cond-mat/9512004 +cond-mat/9512005 +cond-mat/9512006 +cond-mat/9512009 +cond-mat/9512013 +cond-mat/9512014 +cond-mat/9512015 +cond-mat/9512018 +cond-mat/9512019 +cond-mat/9512020 +cond-mat/9512023 +cond-mat/9512024 +cond-mat/9512026 +cond-mat/9512027 +cond-mat/9512028 +cond-mat/9512029 +cond-mat/9512030 +cond-mat/9512031 +cond-mat/9512032 +cond-mat/9512033 +cond-mat/9512034 +cond-mat/9512035 +cond-mat/9512036 +cond-mat/9512038 +cond-mat/9512039 +cond-mat/9512040 +cond-mat/9512042 +cond-mat/9512045 +cond-mat/9512046 +cond-mat/9512047 +cond-mat/9512048 +cond-mat/9512050 +cond-mat/9512051 +cond-mat/9512052 +cond-mat/9512054 +cond-mat/9512055 +cond-mat/9512057 +cond-mat/9512058 +cond-mat/9512061 +cond-mat/9512062 +cond-mat/9512064 +cond-mat/9512065 +cond-mat/9512066 +cond-mat/9512069 +cond-mat/9512070 +cond-mat/9512071 +cond-mat/9512075 +cond-mat/9512077 +cond-mat/9512079 +cond-mat/9512081 +cond-mat/9512082 +cond-mat/9512084 +cond-mat/9512085 +cond-mat/9512086 +cond-mat/9512087 +cond-mat/9512088 +cond-mat/9512089 +cond-mat/9512090 +cond-mat/9512091 +cond-mat/9512092 +cond-mat/9512094 +cond-mat/9512095 +cond-mat/9512096 +cond-mat/9512097 +cond-mat/9512100 +cond-mat/9512101 +cond-mat/9512102 +cond-mat/9512104 +cond-mat/9512105 +cond-mat/9512106 +cond-mat/9512108 +cond-mat/9512109 +cond-mat/9512111 Statistical Mechanics +cond-mat/9512112 +cond-mat/9512113 +cond-mat/9512114 +cond-mat/9512115 +cond-mat/9512116 +cond-mat/9512117 +cond-mat/9512118 +cond-mat/9512122 +cond-mat/9512123 +cond-mat/9512124 +cond-mat/9512125 +cond-mat/9512126 +cond-mat/9512127 +cond-mat/9512128 +cond-mat/9512130 +cond-mat/9512131 +cond-mat/9512133 +cond-mat/9512134 +cond-mat/9512137 +cond-mat/9512138 +cond-mat/9512141 +cond-mat/9512143 +cond-mat/9512145 +cond-mat/9512146 +cond-mat/9512148 +cond-mat/9512149 +cond-mat/9512152 +cond-mat/9512154 +cond-mat/9512157 Soft Condensed Matter +cond-mat/9512158 +cond-mat/9512159 +cond-mat/9512162 +cond-mat/9512165 +cond-mat/9512167 +cond-mat/9512170 +cond-mat/9512171 +cond-mat/9512172 +cond-mat/9512174 +cond-mat/9512175 +cond-mat/9512176 +cond-mat/9512177 +cond-mat/9512178 +cond-mat/9601001 +cond-mat/9601002 +cond-mat/9601003 +cond-mat/9601004 +cond-mat/9601005 +cond-mat/9601006 +cond-mat/9601008 Statistical Mechanics +cond-mat/9601009 +cond-mat/9601011 +cond-mat/9601012 +cond-mat/9601016 +cond-mat/9601017 +cond-mat/9601018 +cond-mat/9601020 +cond-mat/9601021 +cond-mat/9601023 +cond-mat/9601026 +cond-mat/9601027 +cond-mat/9601028 +cond-mat/9601029 +cond-mat/9601031 +cond-mat/9601032 +cond-mat/9601033 +cond-mat/9601034 +cond-mat/9601037 +cond-mat/9601038 +cond-mat/9601040 +cond-mat/9601041 +cond-mat/9601043 +cond-mat/9601044 +cond-mat/9601046 +cond-mat/9601047 +cond-mat/9601049 +cond-mat/9601050 +cond-mat/9601051 +cond-mat/9601052 +cond-mat/9601055 +cond-mat/9601056 +cond-mat/9601057 +cond-mat/9601058 +cond-mat/9601062 +cond-mat/9601063 +cond-mat/9601065 +cond-mat/9601066 +cond-mat/9601069 +cond-mat/9601071 +cond-mat/9601072 +cond-mat/9601074 +cond-mat/9601076 +cond-mat/9601077 +cond-mat/9601078 +cond-mat/9601079 +cond-mat/9601080 +cond-mat/9601083 +cond-mat/9601084 +cond-mat/9601086 +cond-mat/9601087 +cond-mat/9601088 +cond-mat/9601089 +cond-mat/9601090 +cond-mat/9601093 +cond-mat/9601095 +cond-mat/9601096 +cond-mat/9601097 +cond-mat/9601098 +cond-mat/9601099 +cond-mat/9601100 +cond-mat/9601101 +cond-mat/9601103 +cond-mat/9601105 +cond-mat/9601106 +cond-mat/9601107 +cond-mat/9601108 +cond-mat/9601110 +cond-mat/9601112 +cond-mat/9601114 +cond-mat/9601116 +cond-mat/9601117 +cond-mat/9601118 +cond-mat/9601119 +cond-mat/9601123 +cond-mat/9601124 +cond-mat/9601126 +cond-mat/9601128 +cond-mat/9601130 +cond-mat/9601131 +cond-mat/9601134 +cond-mat/9601135 +cond-mat/9601136 +cond-mat/9601137 +cond-mat/9601139 +cond-mat/9601141 +cond-mat/9601142 +cond-mat/9601143 +cond-mat/9601145 +cond-mat/9601146 +cond-mat/9601147 +cond-mat/9601149 +cond-mat/9601150 +cond-mat/9601152 +cond-mat/9601153 +cond-mat/9601155 +cond-mat/9601156 +cond-mat/9602001 +cond-mat/9602002 +cond-mat/9602003 +cond-mat/9602004 +cond-mat/9602007 +cond-mat/9602013 +cond-mat/9602014 +cond-mat/9602015 +cond-mat/9602016 +cond-mat/9602017 +cond-mat/9602018 +cond-mat/9602019 +cond-mat/9602022 +cond-mat/9602024 +cond-mat/9602025 +cond-mat/9602026 +cond-mat/9602027 +cond-mat/9602028 +cond-mat/9602029 +cond-mat/9602030 +cond-mat/9602032 +cond-mat/9602033 +cond-mat/9602034 +cond-mat/9602035 +cond-mat/9602036 +cond-mat/9602039 +cond-mat/9602040 +cond-mat/9602042 +cond-mat/9602044 +cond-mat/9602045 +cond-mat/9602046 +cond-mat/9602047 +cond-mat/9602049 +cond-mat/9602050 +cond-mat/9602051 +cond-mat/9602055 +cond-mat/9602056 +cond-mat/9602058 +cond-mat/9602060 +cond-mat/9602061 +cond-mat/9602063 +cond-mat/9602064 +cond-mat/9602066 +cond-mat/9602068 +cond-mat/9602069 +cond-mat/9602070 Disordered Systems and Neural Networks +cond-mat/9602072 +cond-mat/9602073 +cond-mat/9602074 +cond-mat/9602076 +cond-mat/9602078 +cond-mat/9602080 +cond-mat/9602082 +cond-mat/9602084 +cond-mat/9602085 +cond-mat/9602086 +cond-mat/9602088 +cond-mat/9602089 +cond-mat/9602091 +cond-mat/9602092 +cond-mat/9602094 +cond-mat/9602095 +cond-mat/9602096 +cond-mat/9602097 +cond-mat/9602098 +cond-mat/9602100 +cond-mat/9602102 +cond-mat/9602104 +cond-mat/9602105 +cond-mat/9602106 +cond-mat/9602107 +cond-mat/9602108 +cond-mat/9602111 +cond-mat/9602112 +cond-mat/9602114 +cond-mat/9602116 +cond-mat/9602117 +cond-mat/9602119 +cond-mat/9602120 +cond-mat/9602124 +cond-mat/9602126 +cond-mat/9602127 +cond-mat/9602129 +cond-mat/9602130 +cond-mat/9602132 Superconductivity +cond-mat/9602133 +cond-mat/9602134 +cond-mat/9602135 +cond-mat/9602136 +cond-mat/9602137 +cond-mat/9602138 +cond-mat/9602139 +cond-mat/9602140 +cond-mat/9602141 +cond-mat/9602142 +cond-mat/9602143 +cond-mat/9602144 Statistical Mechanics +cond-mat/9602145 +cond-mat/9602146 +cond-mat/9602147 +cond-mat/9602148 +cond-mat/9602149 +cond-mat/9602151 +cond-mat/9602152 +cond-mat/9602153 +cond-mat/9602154 +cond-mat/9602155 +cond-mat/9602157 +cond-mat/9602159 +cond-mat/9602160 +cond-mat/9602161 +cond-mat/9602162 +cond-mat/9602163 +cond-mat/9603001 +cond-mat/9603002 +cond-mat/9603003 +cond-mat/9603005 +cond-mat/9603006 +cond-mat/9603007 +cond-mat/9603008 +cond-mat/9603010 +cond-mat/9603011 +cond-mat/9603012 +cond-mat/9603014 +cond-mat/9603016 +cond-mat/9603017 +cond-mat/9603018 +cond-mat/9603020 +cond-mat/9603021 +cond-mat/9603023 +cond-mat/9603024 +cond-mat/9603025 +cond-mat/9603026 +cond-mat/9603030 +cond-mat/9603031 +cond-mat/9603032 +cond-mat/9603033 +cond-mat/9603034 +cond-mat/9603035 +cond-mat/9603036 +cond-mat/9603037 +cond-mat/9603038 +cond-mat/9603039 +cond-mat/9603040 +cond-mat/9603041 +cond-mat/9603043 +cond-mat/9603044 +cond-mat/9603050 +cond-mat/9603051 +cond-mat/9603052 +cond-mat/9603053 +cond-mat/9603054 +cond-mat/9603055 +cond-mat/9603057 +cond-mat/9603058 +cond-mat/9603059 +cond-mat/9603060 +cond-mat/9603064 +cond-mat/9603065 +cond-mat/9603068 +cond-mat/9603069 +cond-mat/9603070 +cond-mat/9603071 +cond-mat/9603072 +cond-mat/9603073 +cond-mat/9603074 +cond-mat/9603075 +cond-mat/9603076 +cond-mat/9603077 +cond-mat/9603080 +cond-mat/9603081 +cond-mat/9603082 +cond-mat/9603084 +cond-mat/9603087 +cond-mat/9603088 +cond-mat/9603089 +cond-mat/9603090 +cond-mat/9603092 +cond-mat/9603095 +cond-mat/9603096 +cond-mat/9603097 +cond-mat/9603099 +cond-mat/9603102 +cond-mat/9603104 +cond-mat/9603105 +cond-mat/9603107 +cond-mat/9603109 +cond-mat/9603110 +cond-mat/9603111 +cond-mat/9603112 +cond-mat/9603113 +cond-mat/9603114 +cond-mat/9603116 +cond-mat/9603117 +cond-mat/9603118 +cond-mat/9603119 +cond-mat/9603120 +cond-mat/9603121 +cond-mat/9603122 +cond-mat/9603123 +cond-mat/9603126 +cond-mat/9603128 +cond-mat/9603129 +cond-mat/9603130 +cond-mat/9603131 +cond-mat/9603134 +cond-mat/9603135 +cond-mat/9603136 +cond-mat/9603138 +cond-mat/9603139 +cond-mat/9603142 +cond-mat/9603143 +cond-mat/9603144 +cond-mat/9603145 +cond-mat/9603147 +cond-mat/9603148 +cond-mat/9603149 +cond-mat/9603150 +cond-mat/9603152 +cond-mat/9603154 +cond-mat/9603155 +cond-mat/9603157 +cond-mat/9603159 +cond-mat/9603160 +cond-mat/9603161 +cond-mat/9603163 +cond-mat/9603164 +cond-mat/9603167 +cond-mat/9603169 +cond-mat/9603170 +cond-mat/9603171 +cond-mat/9603172 +cond-mat/9603174 +cond-mat/9603175 +cond-mat/9603176 +cond-mat/9603177 +cond-mat/9603178 +cond-mat/9603182 +cond-mat/9603183 +cond-mat/9603184 +cond-mat/9603185 +cond-mat/9603186 +cond-mat/9603187 +cond-mat/9603188 +cond-mat/9603189 +cond-mat/9603191 +cond-mat/9603192 +cond-mat/9603193 +cond-mat/9603194 +cond-mat/9603195 +cond-mat/9603197 +cond-mat/9603199 +cond-mat/9603200 +cond-mat/9603201 +cond-mat/9603202 +cond-mat/9604001 +cond-mat/9604005 +cond-mat/9604006 +cond-mat/9604009 +cond-mat/9604010 +cond-mat/9604011 +cond-mat/9604015 +cond-mat/9604016 +cond-mat/9604017 +cond-mat/9604019 +cond-mat/9604020 +cond-mat/9604021 +cond-mat/9604022 +cond-mat/9604023 +cond-mat/9604024 +cond-mat/9604027 +cond-mat/9604029 +cond-mat/9604031 +cond-mat/9604032 +cond-mat/9604036 +cond-mat/9604037 +cond-mat/9604038 +cond-mat/9604039 +cond-mat/9604041 +cond-mat/9604042 +cond-mat/9604043 +cond-mat/9604046 +cond-mat/9604047 +cond-mat/9604048 +cond-mat/9604049 Superconductivity +cond-mat/9604050 +cond-mat/9604051 +cond-mat/9604052 +cond-mat/9604053 +cond-mat/9604054 +cond-mat/9604055 +cond-mat/9604060 +cond-mat/9604061 +cond-mat/9604063 +cond-mat/9604064 +cond-mat/9604065 Disordered Systems and Neural Networks +cond-mat/9604066 +cond-mat/9604067 +cond-mat/9604068 +cond-mat/9604069 +cond-mat/9604070 +cond-mat/9604071 +cond-mat/9604072 +cond-mat/9604075 +cond-mat/9604076 +cond-mat/9604077 +cond-mat/9604078 +cond-mat/9604079 +cond-mat/9604080 +cond-mat/9604081 +cond-mat/9604082 +cond-mat/9604085 +cond-mat/9604087 +cond-mat/9604088 +cond-mat/9604089 +cond-mat/9604090 +cond-mat/9604097 +cond-mat/9604100 +cond-mat/9604101 Mesoscale and Nanoscale Physics +cond-mat/9604102 +cond-mat/9604103 +cond-mat/9604106 +cond-mat/9604107 +cond-mat/9604108 +cond-mat/9604109 +cond-mat/9604110 +cond-mat/9604111 +cond-mat/9604114 +cond-mat/9604117 +cond-mat/9604118 +cond-mat/9604119 +cond-mat/9604123 +cond-mat/9604124 +cond-mat/9604125 +cond-mat/9604126 +cond-mat/9604127 +cond-mat/9604128 +cond-mat/9604129 +cond-mat/9604131 +cond-mat/9604133 +cond-mat/9604134 +cond-mat/9604135 +cond-mat/9604136 +cond-mat/9604137 Mesoscale and Nanoscale Physics +cond-mat/9604138 Mesoscale and Nanoscale Physics +cond-mat/9604139 +cond-mat/9604141 +cond-mat/9604142 +cond-mat/9604143 +cond-mat/9604144 +cond-mat/9604145 +cond-mat/9604146 +cond-mat/9604147 +cond-mat/9604148 +cond-mat/9604149 +cond-mat/9604150 +cond-mat/9604151 +cond-mat/9604152 +cond-mat/9604153 +cond-mat/9604154 +cond-mat/9604155 +cond-mat/9604156 +cond-mat/9604157 +cond-mat/9604158 +cond-mat/9604159 +cond-mat/9604160 +cond-mat/9604161 +cond-mat/9604162 +cond-mat/9604163 +cond-mat/9604165 +cond-mat/9604166 +cond-mat/9604167 +cond-mat/9604168 +cond-mat/9604169 +cond-mat/9604170 +cond-mat/9604171 +cond-mat/9604172 +cond-mat/9604173 +cond-mat/9604174 Statistical Mechanics +cond-mat/9604175 +cond-mat/9604176 +cond-mat/9604177 +cond-mat/9604179 +cond-mat/9604180 +cond-mat/9604181 +cond-mat/9604182 +cond-mat/9604184 +cond-mat/9604187 +cond-mat/9604188 +cond-mat/9604191 +cond-mat/9604192 +cond-mat/9604193 +cond-mat/9605001 +cond-mat/9605003 Mesoscale and Nanoscale Physics +cond-mat/9605005 +cond-mat/9605006 +cond-mat/9605007 +cond-mat/9605010 +cond-mat/9605012 +cond-mat/9605015 +cond-mat/9605016 +cond-mat/9605017 +cond-mat/9605018 +cond-mat/9605020 +cond-mat/9605021 +cond-mat/9605022 +cond-mat/9605023 +cond-mat/9605024 +cond-mat/9605025 +cond-mat/9605026 +cond-mat/9605027 +cond-mat/9605028 +cond-mat/9605029 +cond-mat/9605030 +cond-mat/9605031 +cond-mat/9605032 +cond-mat/9605033 +cond-mat/9605034 +cond-mat/9605037 +cond-mat/9605038 +cond-mat/9605039 +cond-mat/9605040 +cond-mat/9605041 +cond-mat/9605042 +cond-mat/9605043 +cond-mat/9605044 +cond-mat/9605046 +cond-mat/9605047 +cond-mat/9605048 +cond-mat/9605049 +cond-mat/9605050 +cond-mat/9605051 +cond-mat/9605052 +cond-mat/9605053 +cond-mat/9605054 +cond-mat/9605055 +cond-mat/9605056 +cond-mat/9605057 +cond-mat/9605058 +cond-mat/9605059 +cond-mat/9605061 +cond-mat/9605064 +cond-mat/9605065 +cond-mat/9605067 +cond-mat/9605068 +cond-mat/9605072 +cond-mat/9605074 +cond-mat/9605075 +cond-mat/9605076 +cond-mat/9605077 +cond-mat/9605078 +cond-mat/9605079 +cond-mat/9605080 +cond-mat/9605082 +cond-mat/9605083 +cond-mat/9605084 +cond-mat/9605085 +cond-mat/9605087 +cond-mat/9605088 +cond-mat/9605089 +cond-mat/9605090 +cond-mat/9605091 +cond-mat/9605095 +cond-mat/9605096 +cond-mat/9605099 +cond-mat/9605100 +cond-mat/9605101 +cond-mat/9605102 +cond-mat/9605103 +cond-mat/9605104 +cond-mat/9605107 +cond-mat/9605109 +cond-mat/9605113 +cond-mat/9605116 +cond-mat/9605117 +cond-mat/9605119 +cond-mat/9605123 +cond-mat/9605124 Mesoscale and Nanoscale Physics +cond-mat/9605126 +cond-mat/9605128 +cond-mat/9605129 +cond-mat/9605130 +cond-mat/9605131 +cond-mat/9605132 +cond-mat/9605133 +cond-mat/9605134 +cond-mat/9605135 +cond-mat/9605138 +cond-mat/9605139 +cond-mat/9605142 +cond-mat/9605143 +cond-mat/9605144 +cond-mat/9605145 +cond-mat/9605146 +cond-mat/9605148 +cond-mat/9605149 +cond-mat/9605150 +cond-mat/9605152 +cond-mat/9605153 +cond-mat/9605154 +cond-mat/9605155 +cond-mat/9605156 +cond-mat/9605157 +cond-mat/9605158 +cond-mat/9605159 +cond-mat/9605160 +cond-mat/9605161 +cond-mat/9605162 +cond-mat/9605163 +cond-mat/9605164 +cond-mat/9605165 +cond-mat/9605166 +cond-mat/9605167 +cond-mat/9605168 +cond-mat/9605169 +cond-mat/9605170 +cond-mat/9605171 +cond-mat/9605172 +cond-mat/9605173 +cond-mat/9605174 +cond-mat/9605175 +cond-mat/9605177 +cond-mat/9605178 +cond-mat/9605181 +cond-mat/9605182 +cond-mat/9605186 +cond-mat/9605189 +cond-mat/9605190 +cond-mat/9605191 +cond-mat/9605193 +cond-mat/9605194 +cond-mat/9605196 +cond-mat/9605197 +cond-mat/9605198 +cond-mat/9605199 +cond-mat/9605200 +cond-mat/9605203 +cond-mat/9605204 +cond-mat/9605205 +cond-mat/9606001 +cond-mat/9606002 +cond-mat/9606003 +cond-mat/9606004 +cond-mat/9606005 +cond-mat/9606006 +cond-mat/9606007 +cond-mat/9606008 +cond-mat/9606010 +cond-mat/9606012 +cond-mat/9606014 +cond-mat/9606016 +cond-mat/9606018 +cond-mat/9606019 +cond-mat/9606021 +cond-mat/9606022 +cond-mat/9606023 +cond-mat/9606024 +cond-mat/9606025 +cond-mat/9606026 +cond-mat/9606027 +cond-mat/9606030 +cond-mat/9606032 +cond-mat/9606033 Disordered Systems and Neural Networks +cond-mat/9606036 +cond-mat/9606038 +cond-mat/9606039 +cond-mat/9606041 +cond-mat/9606042 +cond-mat/9606043 +cond-mat/9606044 +cond-mat/9606046 +cond-mat/9606047 +cond-mat/9606048 +cond-mat/9606049 +cond-mat/9606050 +cond-mat/9606051 +cond-mat/9606052 +cond-mat/9606053 +cond-mat/9606054 +cond-mat/9606056 +cond-mat/9606057 +cond-mat/9606058 +cond-mat/9606059 +cond-mat/9606060 +cond-mat/9606063 +cond-mat/9606064 +cond-mat/9606066 +cond-mat/9606067 +cond-mat/9606068 +cond-mat/9606069 +cond-mat/9606070 +cond-mat/9606074 +cond-mat/9606076 +cond-mat/9606078 +cond-mat/9606081 +cond-mat/9606084 +cond-mat/9606085 +cond-mat/9606086 +cond-mat/9606087 +cond-mat/9606088 Statistical Mechanics +cond-mat/9606090 +cond-mat/9606092 +cond-mat/9606093 +cond-mat/9606095 +cond-mat/9606096 +cond-mat/9606099 +cond-mat/9606102 +cond-mat/9606103 +cond-mat/9606104 +cond-mat/9606105 +cond-mat/9606106 +cond-mat/9606108 +cond-mat/9606109 Soft Condensed Matter +cond-mat/9606110 +cond-mat/9606112 +cond-mat/9606113 +cond-mat/9606114 Mesoscale and Nanoscale Physics +cond-mat/9606116 +cond-mat/9606117 +cond-mat/9606118 +cond-mat/9606120 +cond-mat/9606122 +cond-mat/9606123 +cond-mat/9606124 +cond-mat/9606125 +cond-mat/9606126 +cond-mat/9606128 +cond-mat/9606129 +cond-mat/9606130 +cond-mat/9606135 +cond-mat/9606138 +cond-mat/9606139 +cond-mat/9606140 +cond-mat/9606143 +cond-mat/9606145 +cond-mat/9606146 +cond-mat/9606147 +cond-mat/9606148 +cond-mat/9606149 +cond-mat/9606152 +cond-mat/9606153 +cond-mat/9606154 +cond-mat/9606155 +cond-mat/9606156 +cond-mat/9606157 +cond-mat/9606159 +cond-mat/9606160 +cond-mat/9606161 +cond-mat/9606162 +cond-mat/9606163 +cond-mat/9606164 +cond-mat/9606165 +cond-mat/9606166 +cond-mat/9606168 +cond-mat/9606169 +cond-mat/9606170 +cond-mat/9606171 +cond-mat/9606174 +cond-mat/9606175 +cond-mat/9606176 +cond-mat/9606177 +cond-mat/9606178 +cond-mat/9606179 +cond-mat/9606180 +cond-mat/9606181 +cond-mat/9606182 +cond-mat/9606183 +cond-mat/9606184 +cond-mat/9606186 +cond-mat/9606188 +cond-mat/9606189 +cond-mat/9606190 +cond-mat/9606194 +cond-mat/9606195 +cond-mat/9606196 +cond-mat/9606197 +cond-mat/9606199 +cond-mat/9606200 +cond-mat/9606201 +cond-mat/9606202 +cond-mat/9606203 +cond-mat/9606205 Statistical Mechanics +cond-mat/9606206 +cond-mat/9606207 +cond-mat/9606208 +cond-mat/9606209 +cond-mat/9606210 +cond-mat/9606211 +cond-mat/9606212 +cond-mat/9606213 +cond-mat/9606215 Disordered Systems and Neural Networks +cond-mat/9606216 +cond-mat/9606220 +cond-mat/9606221 +cond-mat/9606223 +cond-mat/9607001 +cond-mat/9607002 Mesoscale and Nanoscale Physics +cond-mat/9607004 +cond-mat/9607005 +cond-mat/9607006 +cond-mat/9607007 +cond-mat/9607008 +cond-mat/9607010 +cond-mat/9607012 +cond-mat/9607013 +cond-mat/9607016 +cond-mat/9607017 +cond-mat/9607018 +cond-mat/9607019 +cond-mat/9607023 +cond-mat/9607025 +cond-mat/9607026 +cond-mat/9607027 +cond-mat/9607028 +cond-mat/9607029 +cond-mat/9607030 +cond-mat/9607032 +cond-mat/9607034 +cond-mat/9607035 +cond-mat/9607037 +cond-mat/9607038 +cond-mat/9607039 +cond-mat/9607040 +cond-mat/9607044 +cond-mat/9607045 +cond-mat/9607049 +cond-mat/9607050 +cond-mat/9607052 +cond-mat/9607053 +cond-mat/9607054 +cond-mat/9607055 +cond-mat/9607056 +cond-mat/9607057 +cond-mat/9607058 +cond-mat/9607059 +cond-mat/9607060 +cond-mat/9607061 +cond-mat/9607062 +cond-mat/9607065 +cond-mat/9607067 +cond-mat/9607069 +cond-mat/9607070 +cond-mat/9607071 +cond-mat/9607072 +cond-mat/9607073 +cond-mat/9607074 +cond-mat/9607075 +cond-mat/9607076 +cond-mat/9607078 +cond-mat/9607080 +cond-mat/9607082 +cond-mat/9607083 +cond-mat/9607084 Soft Condensed Matter +cond-mat/9607085 +cond-mat/9607086 +cond-mat/9607088 +cond-mat/9607089 +cond-mat/9607090 +cond-mat/9607092 +cond-mat/9607093 +cond-mat/9607095 +cond-mat/9607098 +cond-mat/9607100 +cond-mat/9607107 +cond-mat/9607108 +cond-mat/9607111 +cond-mat/9607112 +cond-mat/9607114 +cond-mat/9607115 +cond-mat/9607116 +cond-mat/9607117 +cond-mat/9607121 +cond-mat/9607122 +cond-mat/9607123 +cond-mat/9607124 +cond-mat/9607125 +cond-mat/9607126 +cond-mat/9607127 +cond-mat/9607128 +cond-mat/9607129 +cond-mat/9607130 +cond-mat/9607134 +cond-mat/9607139 Mesoscale and Nanoscale Physics +cond-mat/9607140 +cond-mat/9607141 +cond-mat/9607145 +cond-mat/9607146 +cond-mat/9607148 +cond-mat/9607149 +cond-mat/9607151 +cond-mat/9607152 +cond-mat/9607154 +cond-mat/9607155 +cond-mat/9607156 +cond-mat/9607158 +cond-mat/9607159 +cond-mat/9607161 +cond-mat/9607165 +cond-mat/9607166 +cond-mat/9607167 +cond-mat/9607168 +cond-mat/9607169 +cond-mat/9607170 +cond-mat/9607172 +cond-mat/9607173 +cond-mat/9607174 +cond-mat/9607175 Statistical Mechanics +cond-mat/9607176 +cond-mat/9607177 +cond-mat/9607178 +cond-mat/9607180 +cond-mat/9607182 Materials Science +cond-mat/9607183 +cond-mat/9607184 +cond-mat/9607185 +cond-mat/9607187 +cond-mat/9607188 +cond-mat/9607189 +cond-mat/9607196 +cond-mat/9607197 +cond-mat/9607201 +cond-mat/9607203 +cond-mat/9607206 +cond-mat/9607207 +cond-mat/9607208 +cond-mat/9607210 +cond-mat/9607211 +cond-mat/9607213 +cond-mat/9607214 +cond-mat/9607215 +cond-mat/9607216 +cond-mat/9607217 +cond-mat/9607219 +cond-mat/9607220 +cond-mat/9607221 +cond-mat/9607222 +cond-mat/9607223 +cond-mat/9607224 +cond-mat/9607225 +cond-mat/9608003 +cond-mat/9608004 +cond-mat/9608008 +cond-mat/9608009 +cond-mat/9608010 +cond-mat/9608012 +cond-mat/9608014 +cond-mat/9608016 +cond-mat/9608020 +cond-mat/9608022 +cond-mat/9608023 +cond-mat/9608024 +cond-mat/9608027 Mesoscale and Nanoscale Physics +cond-mat/9608028 +cond-mat/9608029 +cond-mat/9608030 +cond-mat/9608032 +cond-mat/9608034 +cond-mat/9608036 +cond-mat/9608038 +cond-mat/9608040 +cond-mat/9608041 +cond-mat/9608042 +cond-mat/9608043 +cond-mat/9608044 +cond-mat/9608048 +cond-mat/9608049 +cond-mat/9608050 +cond-mat/9608051 +cond-mat/9608052 +cond-mat/9608053 +cond-mat/9608055 +cond-mat/9608057 Superconductivity +cond-mat/9608058 +cond-mat/9608059 +cond-mat/9608063 +cond-mat/9608064 Mesoscale and Nanoscale Physics +cond-mat/9608066 +cond-mat/9608068 +cond-mat/9608070 +cond-mat/9608072 +cond-mat/9608073 Mesoscale and Nanoscale Physics +cond-mat/9608075 +cond-mat/9608076 +cond-mat/9608078 +cond-mat/9608079 +cond-mat/9608080 +cond-mat/9608081 +cond-mat/9608083 +cond-mat/9608085 +cond-mat/9608087 +cond-mat/9608089 +cond-mat/9608090 +cond-mat/9608091 +cond-mat/9608092 Disordered Systems and Neural Networks +cond-mat/9608093 +cond-mat/9608094 +cond-mat/9608095 +cond-mat/9608097 +cond-mat/9608098 +cond-mat/9608100 +cond-mat/9608101 +cond-mat/9608102 +cond-mat/9608103 +cond-mat/9608104 +cond-mat/9608105 +cond-mat/9608106 +cond-mat/9608107 +cond-mat/9608108 +cond-mat/9608109 +cond-mat/9608110 +cond-mat/9608111 Mesoscale and Nanoscale Physics +cond-mat/9608112 +cond-mat/9608113 +cond-mat/9608114 +cond-mat/9608115 +cond-mat/9608116 +cond-mat/9608117 +cond-mat/9608118 +cond-mat/9608119 +cond-mat/9608120 +cond-mat/9608121 +cond-mat/9608122 +cond-mat/9608123 +cond-mat/9608124 +cond-mat/9608125 Mesoscale and Nanoscale Physics +cond-mat/9608126 +cond-mat/9608128 +cond-mat/9608129 +cond-mat/9608130 +cond-mat/9608131 +cond-mat/9608134 +cond-mat/9608136 Disordered Systems and Neural Networks +cond-mat/9608137 +cond-mat/9608138 +cond-mat/9608139 +cond-mat/9608141 +cond-mat/9608143 +cond-mat/9608144 +cond-mat/9608145 +cond-mat/9608146 +cond-mat/9608147 +cond-mat/9608149 +cond-mat/9608151 +cond-mat/9608152 +cond-mat/9608153 +cond-mat/9608154 +cond-mat/9608156 +cond-mat/9608157 +cond-mat/9608158 +cond-mat/9608161 +cond-mat/9608163 +cond-mat/9609001 +cond-mat/9609003 +cond-mat/9609004 +cond-mat/9609006 +cond-mat/9609007 +cond-mat/9609008 +cond-mat/9609009 +cond-mat/9609010 +cond-mat/9609011 +cond-mat/9609012 +cond-mat/9609013 +cond-mat/9609015 +cond-mat/9609016 +cond-mat/9609017 +cond-mat/9609019 +cond-mat/9609020 +cond-mat/9609022 +cond-mat/9609024 +cond-mat/9609026 +cond-mat/9609027 +cond-mat/9609028 +cond-mat/9609029 +cond-mat/9609030 +cond-mat/9609031 +cond-mat/9609032 +cond-mat/9609034 +cond-mat/9609037 +cond-mat/9609038 +cond-mat/9609039 +cond-mat/9609040 +cond-mat/9609041 +cond-mat/9609042 +cond-mat/9609045 +cond-mat/9609046 +cond-mat/9609047 +cond-mat/9609049 +cond-mat/9609050 +cond-mat/9609051 +cond-mat/9609052 +cond-mat/9609053 +cond-mat/9609054 +cond-mat/9609055 +cond-mat/9609056 +cond-mat/9609058 Strongly Correlated Electrons +cond-mat/9609059 +cond-mat/9609060 +cond-mat/9609061 +cond-mat/9609062 +cond-mat/9609063 +cond-mat/9609064 +cond-mat/9609065 Superconductivity +cond-mat/9609066 +cond-mat/9609067 +cond-mat/9609068 +cond-mat/9609070 Statistical Mechanics +cond-mat/9609076 Strongly Correlated Electrons +cond-mat/9609079 +cond-mat/9609080 +cond-mat/9609081 +cond-mat/9609082 +cond-mat/9609083 +cond-mat/9609085 +cond-mat/9609086 +cond-mat/9609087 +cond-mat/9609092 +cond-mat/9609094 +cond-mat/9609095 +cond-mat/9609096 +cond-mat/9609097 +cond-mat/9609098 +cond-mat/9609101 +cond-mat/9609104 +cond-mat/9609106 +cond-mat/9609107 +cond-mat/9609108 +cond-mat/9609109 +cond-mat/9609110 +cond-mat/9609112 +cond-mat/9609113 +cond-mat/9609114 +cond-mat/9609116 +cond-mat/9609118 +cond-mat/9609119 +cond-mat/9609122 +cond-mat/9609123 +cond-mat/9609125 Soft Condensed Matter +cond-mat/9609127 +cond-mat/9609128 +cond-mat/9609129 +cond-mat/9609131 +cond-mat/9609133 +cond-mat/9609134 +cond-mat/9609135 +cond-mat/9609137 +cond-mat/9609138 +cond-mat/9609142 Superconductivity +cond-mat/9609143 +cond-mat/9609145 +cond-mat/9609146 +cond-mat/9609147 +cond-mat/9609150 +cond-mat/9609151 Statistical Mechanics +cond-mat/9609152 +cond-mat/9609153 +cond-mat/9609154 +cond-mat/9609155 +cond-mat/9609156 +cond-mat/9609157 +cond-mat/9609158 +cond-mat/9609159 +cond-mat/9609160 +cond-mat/9609161 +cond-mat/9609162 +cond-mat/9609163 +cond-mat/9609165 +cond-mat/9609166 +cond-mat/9609167 +cond-mat/9609169 +cond-mat/9609170 +cond-mat/9609171 +cond-mat/9609173 +cond-mat/9609175 +cond-mat/9609177 +cond-mat/9609179 +cond-mat/9609180 +cond-mat/9609184 +cond-mat/9609186 +cond-mat/9609187 +cond-mat/9609188 +cond-mat/9609189 +cond-mat/9609190 +cond-mat/9609191 +cond-mat/9609192 +cond-mat/9609194 +cond-mat/9609195 +cond-mat/9609198 +cond-mat/9609199 +cond-mat/9609202 +cond-mat/9609204 +cond-mat/9609206 +cond-mat/9609207 +cond-mat/9609208 +cond-mat/9609209 +cond-mat/9609210 +cond-mat/9609211 +cond-mat/9609212 +cond-mat/9609213 +cond-mat/9609214 +cond-mat/9609215 +cond-mat/9609217 +cond-mat/9609221 Statistical Mechanics +cond-mat/9609222 +cond-mat/9609223 +cond-mat/9609224 Mesoscale and Nanoscale Physics +cond-mat/9609226 +cond-mat/9609227 +cond-mat/9609229 +cond-mat/9609230 +cond-mat/9609233 +cond-mat/9609234 +cond-mat/9609236 +cond-mat/9609237 +cond-mat/9609238 +cond-mat/9609241 +cond-mat/9609243 +cond-mat/9609244 +cond-mat/9609247 +cond-mat/9609248 +cond-mat/9609249 +cond-mat/9609251 +cond-mat/9609253 +cond-mat/9609254 +cond-mat/9609255 +cond-mat/9609257 +cond-mat/9609258 +cond-mat/9609260 +cond-mat/9609261 +cond-mat/9609262 +cond-mat/9609263 +cond-mat/9609264 +cond-mat/9609267 +cond-mat/9609269 +cond-mat/9609270 +cond-mat/9609271 +cond-mat/9609273 +cond-mat/9609274 +cond-mat/9609275 +cond-mat/9609279 +cond-mat/9609280 +cond-mat/9609281 +cond-mat/9609283 +cond-mat/9609285 +cond-mat/9609287 +cond-mat/9609288 Mesoscale and Nanoscale Physics +cond-mat/9609289 +cond-mat/9609292 Statistical Mechanics +cond-mat/9610001 Materials Science +cond-mat/9610002 +cond-mat/9610003 Superconductivity +cond-mat/9610004 Statistical Mechanics +cond-mat/9610006 Superconductivity +cond-mat/9610008 Materials Science +cond-mat/9610009 Strongly Correlated Electrons +cond-mat/9610010 Statistical Mechanics +cond-mat/9610012 Mesoscale and Nanoscale Physics +cond-mat/9610013 Statistical Mechanics +cond-mat/9610014 Statistical Mechanics +cond-mat/9610015 +cond-mat/9610020 Strongly Correlated Electrons +cond-mat/9610021 Materials Science +cond-mat/9610022 +cond-mat/9610023 Materials Science +cond-mat/9610024 Statistical Mechanics +cond-mat/9610027 Strongly Correlated Electrons +cond-mat/9610028 Disordered Systems and Neural Networks +cond-mat/9610029 Statistical Mechanics +cond-mat/9610034 +cond-mat/9610035 Mesoscale and Nanoscale Physics +cond-mat/9610036 Materials Science +cond-mat/9610038 Strongly Correlated Electrons +cond-mat/9610039 Superconductivity +cond-mat/9610040 Mesoscale and Nanoscale Physics +cond-mat/9610043 Mesoscale and Nanoscale Physics +cond-mat/9610046 Materials Science +cond-mat/9610047 Soft Condensed Matter +cond-mat/9610048 Soft Condensed Matter +cond-mat/9610049 Statistical Mechanics +cond-mat/9610050 Superconductivity +cond-mat/9610052 Superconductivity +cond-mat/9610053 Statistical Mechanics +cond-mat/9610054 Mesoscale and Nanoscale Physics +cond-mat/9610055 Disordered Systems and Neural Networks +cond-mat/9610057 Statistical Mechanics +cond-mat/9610059 Statistical Mechanics +cond-mat/9610061 Materials Science +cond-mat/9610062 Statistical Mechanics +cond-mat/9610063 Superconductivity +cond-mat/9610066 Statistical Mechanics +cond-mat/9610067 Statistical Mechanics +cond-mat/9610068 Mesoscale and Nanoscale Physics +cond-mat/9610069 Soft Condensed Matter +cond-mat/9610071 Disordered Systems and Neural Networks +cond-mat/9610072 Soft Condensed Matter +cond-mat/9610073 Statistical Mechanics +cond-mat/9610075 Strongly Correlated Electrons +cond-mat/9610076 Strongly Correlated Electrons +cond-mat/9610081 Strongly Correlated Electrons +cond-mat/9610082 Soft Condensed Matter +cond-mat/9610084 Statistical Mechanics +cond-mat/9610086 Mesoscale and Nanoscale Physics +cond-mat/9610087 Strongly Correlated Electrons +cond-mat/9610088 Statistical Mechanics +cond-mat/9610089 Statistical Mechanics +cond-mat/9610090 Soft Condensed Matter +cond-mat/9610091 Superconductivity +cond-mat/9610092 +cond-mat/9610093 +cond-mat/9610096 Statistical Mechanics +cond-mat/9610097 +cond-mat/9610098 Soft Condensed Matter +cond-mat/9610099 Statistical Mechanics +cond-mat/9610100 +cond-mat/9610101 Superconductivity +cond-mat/9610102 Mesoscale and Nanoscale Physics +cond-mat/9610105 Statistical Mechanics +cond-mat/9610106 Statistical Mechanics +cond-mat/9610107 Statistical Mechanics +cond-mat/9610108 Materials Science +cond-mat/9610109 +cond-mat/9610110 Mesoscale and Nanoscale Physics +cond-mat/9610111 Materials Science +cond-mat/9610112 Mesoscale and Nanoscale Physics +cond-mat/9610114 Disordered Systems and Neural Networks +cond-mat/9610115 Strongly Correlated Electrons +cond-mat/9610116 Soft Condensed Matter +cond-mat/9610117 Statistical Mechanics +cond-mat/9610118 Materials Science +cond-mat/9610119 Mesoscale and Nanoscale Physics +cond-mat/9610121 Strongly Correlated Electrons +cond-mat/9610122 Superconductivity +cond-mat/9610123 Statistical Mechanics +cond-mat/9610126 Soft Condensed Matter +cond-mat/9610127 Statistical Mechanics +cond-mat/9610128 Statistical Mechanics +cond-mat/9610129 Statistical Mechanics +cond-mat/9610132 Statistical Mechanics +cond-mat/9610133 Statistical Mechanics +cond-mat/9610134 +cond-mat/9610135 Mesoscale and Nanoscale Physics +cond-mat/9610136 +cond-mat/9610138 Mesoscale and Nanoscale Physics +cond-mat/9610139 Statistical Mechanics +cond-mat/9610141 Superconductivity +cond-mat/9610144 Mesoscale and Nanoscale Physics +cond-mat/9610145 Materials Science +cond-mat/9610146 Superconductivity +cond-mat/9610147 Strongly Correlated Electrons +cond-mat/9610150 Disordered Systems and Neural Networks +cond-mat/9610151 Superconductivity +cond-mat/9610152 Superconductivity +cond-mat/9610154 Materials Science +cond-mat/9610156 Statistical Mechanics +cond-mat/9610157 Superconductivity +cond-mat/9610158 +cond-mat/9610160 Disordered Systems and Neural Networks +cond-mat/9610161 +cond-mat/9610163 +cond-mat/9610164 Strongly Correlated Electrons +cond-mat/9610165 Disordered Systems and Neural Networks +cond-mat/9610166 Statistical Mechanics +cond-mat/9610167 Superconductivity +cond-mat/9610169 Statistical Mechanics +cond-mat/9610170 Superconductivity +cond-mat/9610171 +cond-mat/9610172 Strongly Correlated Electrons +cond-mat/9610174 Statistical Mechanics +cond-mat/9610175 Mesoscale and Nanoscale Physics +cond-mat/9610176 +cond-mat/9610178 Statistical Mechanics +cond-mat/9610179 +cond-mat/9610180 +cond-mat/9610181 Statistical Mechanics +cond-mat/9610182 +cond-mat/9610184 Statistical Mechanics +cond-mat/9610185 Superconductivity +cond-mat/9610186 +cond-mat/9610187 +cond-mat/9610188 Strongly Correlated Electrons +cond-mat/9610189 Statistical Mechanics +cond-mat/9610191 Statistical Mechanics +cond-mat/9610192 Disordered Systems and Neural Networks +cond-mat/9610194 Mesoscale and Nanoscale Physics +cond-mat/9610195 Statistical Mechanics +cond-mat/9610196 Statistical Mechanics +cond-mat/9610197 Materials Science +cond-mat/9610199 +cond-mat/9610200 Superconductivity +cond-mat/9610202 Statistical Mechanics +cond-mat/9610205 Superconductivity +cond-mat/9610206 Statistical Mechanics +cond-mat/9610209 Statistical Mechanics +cond-mat/9610210 Mesoscale and Nanoscale Physics +cond-mat/9610211 Mesoscale and Nanoscale Physics +cond-mat/9610212 Statistical Mechanics +cond-mat/9610213 Strongly Correlated Electrons +cond-mat/9610214 Mesoscale and Nanoscale Physics +cond-mat/9610216 Strongly Correlated Electrons +cond-mat/9610217 Strongly Correlated Electrons +cond-mat/9610218 +cond-mat/9610220 Mesoscale and Nanoscale Physics +cond-mat/9610221 Statistical Mechanics +cond-mat/9610222 Strongly Correlated Electrons +cond-mat/9610224 Mesoscale and Nanoscale Physics +cond-mat/9611003 Disordered Systems and Neural Networks +cond-mat/9611004 Mesoscale and Nanoscale Physics +cond-mat/9611006 Mesoscale and Nanoscale Physics +cond-mat/9611008 +cond-mat/9611010 Superconductivity +cond-mat/9611011 Mesoscale and Nanoscale Physics +cond-mat/9611014 Statistical Mechanics +cond-mat/9611016 +cond-mat/9611017 Disordered Systems and Neural Networks +cond-mat/9611018 Strongly Correlated Electrons +cond-mat/9611019 Statistical Mechanics +cond-mat/9611020 Statistical Mechanics +cond-mat/9611021 Soft Condensed Matter +cond-mat/9611022 Disordered Systems and Neural Networks +cond-mat/9611023 +cond-mat/9611025 +cond-mat/9611027 Disordered Systems and Neural Networks +cond-mat/9611028 Statistical Mechanics +cond-mat/9611029 Materials Science +cond-mat/9611031 Strongly Correlated Electrons +cond-mat/9611033 Superconductivity +cond-mat/9611034 Disordered Systems and Neural Networks +cond-mat/9611035 Mesoscale and Nanoscale Physics +cond-mat/9611036 Superconductivity +cond-mat/9611037 Statistical Mechanics +cond-mat/9611038 Mesoscale and Nanoscale Physics +cond-mat/9611039 Soft Condensed Matter +cond-mat/9611041 Soft Condensed Matter +cond-mat/9611044 Disordered Systems and Neural Networks +cond-mat/9611045 Strongly Correlated Electrons +cond-mat/9611046 Statistical Mechanics +cond-mat/9611048 Mesoscale and Nanoscale Physics +cond-mat/9611051 Disordered Systems and Neural Networks +cond-mat/9611052 Mesoscale and Nanoscale Physics +cond-mat/9611054 +cond-mat/9611055 Materials Science +cond-mat/9611056 Strongly Correlated Electrons +cond-mat/9611058 Strongly Correlated Electrons +cond-mat/9611059 Mesoscale and Nanoscale Physics +cond-mat/9611061 +cond-mat/9611062 +cond-mat/9611063 Superconductivity +cond-mat/9611067 +cond-mat/9611068 Disordered Systems and Neural Networks +cond-mat/9611069 Superconductivity +cond-mat/9611071 Statistical Mechanics +cond-mat/9611073 Strongly Correlated Electrons +cond-mat/9611074 +cond-mat/9611075 Soft Condensed Matter +cond-mat/9611078 Disordered Systems and Neural Networks +cond-mat/9611080 Mesoscale and Nanoscale Physics +cond-mat/9611081 Strongly Correlated Electrons +cond-mat/9611085 Statistical Mechanics +cond-mat/9611086 Mesoscale and Nanoscale Physics +cond-mat/9611088 Mesoscale and Nanoscale Physics +cond-mat/9611089 Statistical Mechanics +cond-mat/9611091 Strongly Correlated Electrons +cond-mat/9611093 Materials Science +cond-mat/9611094 Mesoscale and Nanoscale Physics +cond-mat/9611096 Strongly Correlated Electrons +cond-mat/9611097 Statistical Mechanics +cond-mat/9611099 Statistical Mechanics +cond-mat/9611100 Strongly Correlated Electrons +cond-mat/9611102 Mesoscale and Nanoscale Physics +cond-mat/9611103 Strongly Correlated Electrons +cond-mat/9611104 +cond-mat/9611106 Disordered Systems and Neural Networks +cond-mat/9611107 Materials Science +cond-mat/9611109 Strongly Correlated Electrons +cond-mat/9611110 Strongly Correlated Electrons +cond-mat/9611113 Soft Condensed Matter +cond-mat/9611115 +cond-mat/9611116 Statistical Mechanics +cond-mat/9611118 Mesoscale and Nanoscale Physics +cond-mat/9611120 +cond-mat/9611121 Disordered Systems and Neural Networks +cond-mat/9611122 Materials Science +cond-mat/9611123 Superconductivity +cond-mat/9611126 Strongly Correlated Electrons +cond-mat/9611128 Statistical Mechanics +cond-mat/9611129 Strongly Correlated Electrons +cond-mat/9611133 Superconductivity +cond-mat/9611134 Statistical Mechanics +cond-mat/9611136 Superconductivity +cond-mat/9611139 Mesoscale and Nanoscale Physics +cond-mat/9611141 Mesoscale and Nanoscale Physics +cond-mat/9611142 Statistical Mechanics +cond-mat/9611143 Mesoscale and Nanoscale Physics +cond-mat/9611144 Strongly Correlated Electrons +cond-mat/9611145 Materials Science +cond-mat/9611146 Strongly Correlated Electrons +cond-mat/9611147 Mesoscale and Nanoscale Physics +cond-mat/9611148 Mesoscale and Nanoscale Physics +cond-mat/9611150 Superconductivity +cond-mat/9611155 +cond-mat/9611156 Statistical Mechanics +cond-mat/9611158 Superconductivity +cond-mat/9611160 +cond-mat/9611161 Mesoscale and Nanoscale Physics +cond-mat/9611163 Statistical Mechanics +cond-mat/9611164 +cond-mat/9611166 Strongly Correlated Electrons +cond-mat/9611169 Statistical Mechanics +cond-mat/9611170 +cond-mat/9611172 +cond-mat/9611173 Mesoscale and Nanoscale Physics +cond-mat/9611175 +cond-mat/9611176 Materials Science +cond-mat/9611178 +cond-mat/9611179 Superconductivity +cond-mat/9611180 +cond-mat/9611181 +cond-mat/9611182 +cond-mat/9611185 Mesoscale and Nanoscale Physics +cond-mat/9611187 Superconductivity +cond-mat/9611188 Statistical Mechanics +cond-mat/9611189 +cond-mat/9611193 Statistical Mechanics +cond-mat/9611194 Superconductivity +cond-mat/9611195 Strongly Correlated Electrons +cond-mat/9611196 Disordered Systems and Neural Networks +cond-mat/9611197 Statistical Mechanics +cond-mat/9611199 Mesoscale and Nanoscale Physics +cond-mat/9611200 Mesoscale and Nanoscale Physics +cond-mat/9611201 Materials Science +cond-mat/9611202 Statistical Mechanics +cond-mat/9611204 Soft Condensed Matter +cond-mat/9611205 Materials Science +cond-mat/9611206 Statistical Mechanics +cond-mat/9611209 Statistical Mechanics +cond-mat/9611210 Mesoscale and Nanoscale Physics +cond-mat/9611211 +cond-mat/9611213 Statistical Mechanics +cond-mat/9611215 +cond-mat/9611216 Strongly Correlated Electrons +cond-mat/9611217 +cond-mat/9611222 +cond-mat/9611223 Strongly Correlated Electrons +cond-mat/9611224 Soft Condensed Matter +cond-mat/9611226 Mesoscale and Nanoscale Physics +cond-mat/9611227 Statistical Mechanics +cond-mat/9611228 Soft Condensed Matter +cond-mat/9611229 +cond-mat/9611231 Strongly Correlated Electrons +cond-mat/9611232 Statistical Mechanics +cond-mat/9611234 Materials Science +cond-mat/9611236 +cond-mat/9611240 Strongly Correlated Electrons +cond-mat/9612002 Strongly Correlated Electrons +cond-mat/9612005 Materials Science +cond-mat/9612006 +cond-mat/9612007 Superconductivity +cond-mat/9612009 Statistical Mechanics +cond-mat/9612011 Superconductivity +cond-mat/9612018 +cond-mat/9612020 Mesoscale and Nanoscale Physics +cond-mat/9612022 Disordered Systems and Neural Networks +cond-mat/9612023 +cond-mat/9612024 Materials Science +cond-mat/9612025 Superconductivity +cond-mat/9612028 Mesoscale and Nanoscale Physics +cond-mat/9612029 Strongly Correlated Electrons +cond-mat/9612030 Superconductivity +cond-mat/9612031 Superconductivity +cond-mat/9612035 Mesoscale and Nanoscale Physics +cond-mat/9612036 +cond-mat/9612037 Statistical Mechanics +cond-mat/9612038 Mesoscale and Nanoscale Physics +cond-mat/9612040 Strongly Correlated Electrons +cond-mat/9612042 +cond-mat/9612043 Strongly Correlated Electrons +cond-mat/9612044 Materials Science +cond-mat/9612045 Strongly Correlated Electrons +cond-mat/9612047 Statistical Mechanics +cond-mat/9612050 +cond-mat/9612052 Superconductivity +cond-mat/9612053 Mesoscale and Nanoscale Physics +cond-mat/9612054 +cond-mat/9612056 Strongly Correlated Electrons +cond-mat/9612058 Superconductivity +cond-mat/9612061 Mesoscale and Nanoscale Physics +cond-mat/9612062 Disordered Systems and Neural Networks +cond-mat/9612064 +cond-mat/9612065 +cond-mat/9612066 +cond-mat/9612068 Mesoscale and Nanoscale Physics +cond-mat/9612070 Statistical Mechanics +cond-mat/9612073 Mesoscale and Nanoscale Physics +cond-mat/9612074 Superconductivity +cond-mat/9612075 +cond-mat/9612080 Mesoscale and Nanoscale Physics +cond-mat/9612082 +cond-mat/9612083 +cond-mat/9612084 Disordered Systems and Neural Networks +cond-mat/9612091 +cond-mat/9612092 Materials Science +cond-mat/9612095 Statistical Mechanics +cond-mat/9612097 Disordered Systems and Neural Networks +cond-mat/9612100 +cond-mat/9612101 Strongly Correlated Electrons +cond-mat/9612102 Soft Condensed Matter +cond-mat/9612105 Statistical Mechanics +cond-mat/9612106 Superconductivity +cond-mat/9612108 Strongly Correlated Electrons +cond-mat/9612110 Superconductivity +cond-mat/9612111 +cond-mat/9612112 Statistical Mechanics +cond-mat/9612113 Statistical Mechanics +cond-mat/9612115 Mesoscale and Nanoscale Physics +cond-mat/9612116 Disordered Systems and Neural Networks +cond-mat/9612118 +cond-mat/9612119 Statistical Mechanics +cond-mat/9612121 Statistical Mechanics +cond-mat/9612124 Statistical Mechanics +cond-mat/9612125 Mesoscale and Nanoscale Physics +cond-mat/9612128 Statistical Mechanics +cond-mat/9612132 Strongly Correlated Electrons +cond-mat/9612133 Superconductivity +cond-mat/9612136 Disordered Systems and Neural Networks +cond-mat/9612137 +cond-mat/9612140 Statistical Mechanics +cond-mat/9612141 Superconductivity +cond-mat/9612142 Strongly Correlated Electrons +cond-mat/9612143 Statistical Mechanics +cond-mat/9612144 +cond-mat/9612145 Superconductivity +cond-mat/9612146 +cond-mat/9612147 Mesoscale and Nanoscale Physics +cond-mat/9612148 Statistical Mechanics +cond-mat/9612150 Statistical Mechanics +cond-mat/9612155 +cond-mat/9612156 Materials Science +cond-mat/9612157 Mesoscale and Nanoscale Physics +cond-mat/9612158 Statistical Mechanics +cond-mat/9612159 Materials Science +cond-mat/9612161 Soft Condensed Matter +cond-mat/9612163 Mesoscale and Nanoscale Physics +cond-mat/9612164 +cond-mat/9612165 Superconductivity +cond-mat/9612167 Strongly Correlated Electrons +cond-mat/9612168 Statistical Mechanics +cond-mat/9612170 Materials Science +cond-mat/9612171 Strongly Correlated Electrons +cond-mat/9612174 +cond-mat/9612175 +cond-mat/9612176 Statistical Mechanics +cond-mat/9612178 Statistical Mechanics +cond-mat/9612180 Mesoscale and Nanoscale Physics +cond-mat/9612182 Soft Condensed Matter +cond-mat/9612189 Statistical Mechanics +cond-mat/9612190 Statistical Mechanics +cond-mat/9612191 Strongly Correlated Electrons +cond-mat/9612192 +cond-mat/9612193 Superconductivity +cond-mat/9612194 +cond-mat/9612195 +cond-mat/9612197 +cond-mat/9612199 Mesoscale and Nanoscale Physics +cond-mat/9612200 Mesoscale and Nanoscale Physics +cond-mat/9612201 +cond-mat/9612202 Strongly Correlated Electrons +cond-mat/9612203 Strongly Correlated Electrons +cond-mat/9612204 Statistical Mechanics +cond-mat/9612206 Statistical Mechanics +cond-mat/9612208 Disordered Systems and Neural Networks +cond-mat/9612209 Statistical Mechanics +cond-mat/9612211 Superconductivity +cond-mat/9612212 Disordered Systems and Neural Networks +cond-mat/9612213 Superconductivity +cond-mat/9612214 Statistical Mechanics +cond-mat/9612216 Statistical Mechanics +cond-mat/9612217 Statistical Mechanics +cond-mat/9612218 Mesoscale and Nanoscale Physics +cond-mat/9612220 Superconductivity +cond-mat/9612221 Superconductivity +cond-mat/9612223 Mesoscale and Nanoscale Physics +cond-mat/9612224 Statistical Mechanics +cond-mat/9612225 Disordered Systems and Neural Networks +cond-mat/9612232 Statistical Mechanics +cond-mat/9612235 Statistical Mechanics +cond-mat/9612236 +cond-mat/9612237 Statistical Mechanics +cond-mat/9612238 +cond-mat/9612240 +cond-mat/9612243 +cond-mat/9612244 Strongly Correlated Electrons +cond-mat/9612246 Superconductivity +cond-mat/9612248 Superconductivity +cond-mat/9612249 Statistical Mechanics +cond-mat/9612250 +cond-mat/9612251 +cond-mat/9612252 +dg-ga/9502007 Differential Geometry +dg-ga/9505006 Differential Geometry +dg-ga/9506001 Differential Geometry +dg-ga/9601010 Differential Geometry +dg-ga/9605001 Differential Geometry +dg-ga/9609012 Differential Geometry +dg-ga/9610017 Differential Geometry +dg-ga/9612016 Differential Geometry +funct-an/9501001 Functional Analysis +funct-an/9505002 Functional Analysis +funct-an/9506006 Functional Analysis +funct-an/9511002 Functional Analysis +funct-an/9512001 Functional Analysis +funct-an/9604010 Functional Analysis +funct-an/9607003 Functional Analysis +funct-an/9608002 Functional Analysis +funct-an/9608003 Functional Analysis +funct-an/9608004 Functional Analysis +funct-an/9608005 Functional Analysis +funct-an/9609001 Functional Analysis +funct-an/9609004 Functional Analysis +funct-an/9612010 Functional Analysis +gr-qc/0604020 +gr-qc/9501016 +gr-qc/9501022 +gr-qc/9501033 +gr-qc/9501035 +gr-qc/9502010 +gr-qc/9502020 +gr-qc/9502021 +gr-qc/9502023 +gr-qc/9502025 +gr-qc/9502028 +gr-qc/9502029 +gr-qc/9502036 +gr-qc/9503005 +gr-qc/9503009 +gr-qc/9503015 +gr-qc/9503022 +gr-qc/9503026 +gr-qc/9503038 +gr-qc/9503040 +gr-qc/9503041 +gr-qc/9503046 +gr-qc/9503047 +gr-qc/9503052 +gr-qc/9503058 +gr-qc/9503059 +gr-qc/9503060 +gr-qc/9503063 +gr-qc/9504001 +gr-qc/9504005 +gr-qc/9504007 +gr-qc/9504008 +gr-qc/9504009 +gr-qc/9504010 +gr-qc/9504012 +gr-qc/9504014 +gr-qc/9504016 +gr-qc/9504023 +gr-qc/9504025 +gr-qc/9504026 +gr-qc/9504028 +gr-qc/9504035 +gr-qc/9504038 +gr-qc/9504040 +gr-qc/9504041 +gr-qc/9504044 +gr-qc/9504045 +gr-qc/9504046 +gr-qc/9504049 +gr-qc/9505001 +gr-qc/9505004 +gr-qc/9505006 +gr-qc/9505007 +gr-qc/9505008 +gr-qc/9505009 +gr-qc/9505010 +gr-qc/9505012 +gr-qc/9505013 +gr-qc/9505019 +gr-qc/9505022 +gr-qc/9505023 +gr-qc/9505024 +gr-qc/9505026 +gr-qc/9505029 +gr-qc/9505030 +gr-qc/9505031 +gr-qc/9505036 +gr-qc/9505038 +gr-qc/9505039 +gr-qc/9505040 +gr-qc/9505042 +gr-qc/9505043 +gr-qc/9505045 +gr-qc/9505049 +gr-qc/9505051 +gr-qc/9505052 +gr-qc/9506002 +gr-qc/9506007 +gr-qc/9506011 +gr-qc/9506014 +gr-qc/9506015 +gr-qc/9506019 +gr-qc/9506020 +gr-qc/9506021 +gr-qc/9506022 +gr-qc/9506025 +gr-qc/9506026 +gr-qc/9506027 +gr-qc/9506034 +gr-qc/9506038 +gr-qc/9506039 +gr-qc/9506040 +gr-qc/9506043 +gr-qc/9506047 +gr-qc/9506052 +gr-qc/9506054 +gr-qc/9506062 +gr-qc/9506064 +gr-qc/9506066 +gr-qc/9506067 +gr-qc/9506070 +gr-qc/9506074 +gr-qc/9506077 +gr-qc/9506078 +gr-qc/9506080 +gr-qc/9506083 +gr-qc/9506085 +gr-qc/9506087 +gr-qc/9506092 +gr-qc/9506094 +gr-qc/9507001 +gr-qc/9507002 +gr-qc/9507004 +gr-qc/9507005 +gr-qc/9507007 +gr-qc/9507011 +gr-qc/9507013 +gr-qc/9507014 +gr-qc/9507015 +gr-qc/9507017 +gr-qc/9507021 +gr-qc/9507030 +gr-qc/9507033 +gr-qc/9507035 +gr-qc/9507036 +gr-qc/9507043 +gr-qc/9507045 +gr-qc/9507054 +gr-qc/9507055 +gr-qc/9508010 +gr-qc/9508018 +gr-qc/9508020 +gr-qc/9508024 +gr-qc/9508027 +gr-qc/9508033 +gr-qc/9508034 +gr-qc/9508038 +gr-qc/9508040 +gr-qc/9508044 +gr-qc/9508048 +gr-qc/9508049 +gr-qc/9508050 +gr-qc/9508055 +gr-qc/9508058 +gr-qc/9508059 +gr-qc/9508067 +gr-qc/9509001 +gr-qc/9509008 +gr-qc/9509010 +gr-qc/9509012 +gr-qc/9509015 +gr-qc/9509019 +gr-qc/9509020 +gr-qc/9509022 +gr-qc/9509023 +gr-qc/9509025 +gr-qc/9509026 +gr-qc/9509027 +gr-qc/9509028 +gr-qc/9509032 +gr-qc/9509033 +gr-qc/9509034 +gr-qc/9509036 +gr-qc/9509037 +gr-qc/9509038 +gr-qc/9509040 +gr-qc/9509044 +gr-qc/9509047 +gr-qc/9509051 +gr-qc/9509053 +gr-qc/9509055 +gr-qc/9510002 +gr-qc/9510003 +gr-qc/9510004 +gr-qc/9510007 +gr-qc/9510010 +gr-qc/9510011 +gr-qc/9510019 +gr-qc/9510020 +gr-qc/9510023 +gr-qc/9510024 +gr-qc/9510025 +gr-qc/9510027 +gr-qc/9510028 +gr-qc/9510031 +gr-qc/9510033 +gr-qc/9510034 +gr-qc/9510040 +gr-qc/9510044 +gr-qc/9510045 +gr-qc/9510046 +gr-qc/9510047 +gr-qc/9510048 +gr-qc/9510050 +gr-qc/9510052 +gr-qc/9510054 +gr-qc/9510056 +gr-qc/9510057 +gr-qc/9510058 +gr-qc/9510062 +gr-qc/9510064 +gr-qc/9510065 +gr-qc/9510066 +gr-qc/9510067 +gr-qc/9510070 +gr-qc/9510071 +gr-qc/9511003 +gr-qc/9511006 +gr-qc/9511007 +gr-qc/9511010 +gr-qc/9511011 +gr-qc/9511023 +gr-qc/9511025 +gr-qc/9511029 +gr-qc/9511034 +gr-qc/9511037 +gr-qc/9511039 +gr-qc/9511043 +gr-qc/9511044 +gr-qc/9511046 +gr-qc/9511047 +gr-qc/9511050 +gr-qc/9511051 +gr-qc/9511053 +gr-qc/9511055 +gr-qc/9511056 +gr-qc/9511057 +gr-qc/9511059 +gr-qc/9511064 +gr-qc/9511068 +gr-qc/9511069 +gr-qc/9511070 +gr-qc/9511071 +gr-qc/9512005 +gr-qc/9512006 +gr-qc/9512009 +gr-qc/9512010 +gr-qc/9512013 +gr-qc/9512014 +gr-qc/9512018 +gr-qc/9512021 +gr-qc/9512023 +gr-qc/9512026 +gr-qc/9512029 +gr-qc/9512030 +gr-qc/9512032 +gr-qc/9512040 +gr-qc/9512041 +gr-qc/9512042 +gr-qc/9512043 +gr-qc/9512044 +gr-qc/9512047 +gr-qc/9512048 +gr-qc/9601001 +gr-qc/9601003 +gr-qc/9601006 +gr-qc/9601007 +gr-qc/9601008 +gr-qc/9601010 +gr-qc/9601011 +gr-qc/9601018 +gr-qc/9601021 +gr-qc/9601024 +gr-qc/9601025 +gr-qc/9601033 +gr-qc/9601034 +gr-qc/9601035 +gr-qc/9601036 +gr-qc/9601037 +gr-qc/9601038 +gr-qc/9601039 +gr-qc/9601040 +gr-qc/9601041 +gr-qc/9601042 +gr-qc/9601043 +gr-qc/9601044 +gr-qc/9601045 +gr-qc/9601049 +gr-qc/9601050 +gr-qc/9602004 +gr-qc/9602010 +gr-qc/9602017 +gr-qc/9602021 +gr-qc/9602024 +gr-qc/9602025 +gr-qc/9602026 +gr-qc/9602027 +gr-qc/9602028 +gr-qc/9602029 +gr-qc/9602031 +gr-qc/9602033 +gr-qc/9602034 +gr-qc/9602036 +gr-qc/9602037 +gr-qc/9602040 +gr-qc/9602045 +gr-qc/9602047 +gr-qc/9602048 +gr-qc/9602049 +gr-qc/9602050 +gr-qc/9602057 +gr-qc/9602062 +gr-qc/9602063 +gr-qc/9603001 +gr-qc/9603003 +gr-qc/9603005 +gr-qc/9603010 +gr-qc/9603015 +gr-qc/9603016 +gr-qc/9603017 +gr-qc/9603018 +gr-qc/9603020 +gr-qc/9603021 +gr-qc/9603023 +gr-qc/9603025 +gr-qc/9603026 +gr-qc/9603027 +gr-qc/9603031 +gr-qc/9603033 +gr-qc/9603037 +gr-qc/9603040 +gr-qc/9603041 +gr-qc/9603046 +gr-qc/9603047 +gr-qc/9603051 +gr-qc/9603052 +gr-qc/9603053 +gr-qc/9603054 +gr-qc/9603055 +gr-qc/9603056 +gr-qc/9603058 +gr-qc/9603059 +gr-qc/9603062 +gr-qc/9603064 +gr-qc/9604005 +gr-qc/9604010 +gr-qc/9604013 +gr-qc/9604015 +gr-qc/9604019 +gr-qc/9604020 +gr-qc/9604023 +gr-qc/9604026 +gr-qc/9604027 +gr-qc/9604028 +gr-qc/9604030 +gr-qc/9604032 +gr-qc/9604035 +gr-qc/9604038 +gr-qc/9604053 +gr-qc/9604055 +gr-qc/9604056 +gr-qc/9605003 +gr-qc/9605004 +gr-qc/9605005 +gr-qc/9605007 +gr-qc/9605009 +gr-qc/9605010 +gr-qc/9605011 +gr-qc/9605012 +gr-qc/9605015 +gr-qc/9605017 +gr-qc/9605018 +gr-qc/9605021 +gr-qc/9605022 +gr-qc/9605025 +gr-qc/9605029 +gr-qc/9605031 +gr-qc/9605032 +gr-qc/9605033 +gr-qc/9605037 +gr-qc/9605040 +gr-qc/9605041 +gr-qc/9605044 +gr-qc/9605049 +gr-qc/9605050 +gr-qc/9605055 +gr-qc/9605057 +gr-qc/9605058 +gr-qc/9605060 +gr-qc/9605063 +gr-qc/9605064 +gr-qc/9605065 +gr-qc/9605068 +gr-qc/9605070 +gr-qc/9606002 +gr-qc/9606005 +gr-qc/9606006 +gr-qc/9606007 +gr-qc/9606010 +gr-qc/9606011 +gr-qc/9606013 +gr-qc/9606021 +gr-qc/9606022 +gr-qc/9606024 +gr-qc/9606032 +gr-qc/9606037 +gr-qc/9606038 +gr-qc/9606039 +gr-qc/9606041 +gr-qc/9606042 +gr-qc/9606046 +gr-qc/9606047 +gr-qc/9606056 +gr-qc/9606057 +gr-qc/9606059 +gr-qc/9606062 +gr-qc/9606064 +gr-qc/9606065 +gr-qc/9606067 +gr-qc/9606069 +gr-qc/9606072 +gr-qc/9606083 +gr-qc/9606085 +gr-qc/9606088 +gr-qc/9606090 +gr-qc/9606091 +gr-qc/9606092 +gr-qc/9607003 +gr-qc/9607009 +gr-qc/9607011 +gr-qc/9607012 +gr-qc/9607014 +gr-qc/9607015 +gr-qc/9607016 +gr-qc/9607019 +gr-qc/9607021 +gr-qc/9607027 +gr-qc/9607029 +gr-qc/9607032 +gr-qc/9607035 +gr-qc/9607037 +gr-qc/9607043 +gr-qc/9607044 +gr-qc/9607046 +gr-qc/9607048 +gr-qc/9607050 +gr-qc/9607051 +gr-qc/9607052 +gr-qc/9607054 +gr-qc/9607058 +gr-qc/9607060 +gr-qc/9607061 +gr-qc/9607062 +gr-qc/9607063 +gr-qc/9607065 +gr-qc/9607069 +gr-qc/9607072 +gr-qc/9607076 +gr-qc/9608001 +gr-qc/9608005 +gr-qc/9608007 +gr-qc/9608012 +gr-qc/9608016 +gr-qc/9608020 +gr-qc/9608022 +gr-qc/9608024 +gr-qc/9608026 +gr-qc/9608027 +gr-qc/9608029 +gr-qc/9608030 +gr-qc/9608031 +gr-qc/9608033 +gr-qc/9608035 +gr-qc/9608036 +gr-qc/9608038 +gr-qc/9608041 +gr-qc/9608043 +gr-qc/9608046 +gr-qc/9608049 +gr-qc/9608051 +gr-qc/9608053 +gr-qc/9608054 +gr-qc/9608059 +gr-qc/9608060 +gr-qc/9608064 +gr-qc/9609001 +gr-qc/9609002 +gr-qc/9609004 +gr-qc/9609012 +gr-qc/9609015 +gr-qc/9609018 +gr-qc/9609019 +gr-qc/9609021 +gr-qc/9609022 +gr-qc/9609024 +gr-qc/9609028 +gr-qc/9609036 +gr-qc/9609038 +gr-qc/9609040 +gr-qc/9609043 +gr-qc/9609047 +gr-qc/9609050 +gr-qc/9609051 +gr-qc/9609053 +gr-qc/9609055 +gr-qc/9609058 +gr-qc/9609060 +gr-qc/9609062 +gr-qc/9609066 +gr-qc/9609067 +gr-qc/9610001 +gr-qc/9610003 +gr-qc/9610004 +gr-qc/9610008 +gr-qc/9610009 +gr-qc/9610011 +gr-qc/9610012 +gr-qc/9610013 +gr-qc/9610014 +gr-qc/9610020 +gr-qc/9610021 +gr-qc/9610023 +gr-qc/9610025 +gr-qc/9610032 +gr-qc/9610034 +gr-qc/9610035 +gr-qc/9610041 +gr-qc/9610048 +gr-qc/9610050 +gr-qc/9610052 +gr-qc/9610054 +gr-qc/9610055 +gr-qc/9610058 +gr-qc/9610061 +gr-qc/9610062 +gr-qc/9610064 +gr-qc/9610069 +gr-qc/9610070 +gr-qc/9610075 +gr-qc/9610076 +gr-qc/9611002 +gr-qc/9611008 +gr-qc/9611014 +gr-qc/9611016 +gr-qc/9611017 +gr-qc/9611018 +gr-qc/9611020 +gr-qc/9611022 +gr-qc/9611026 +gr-qc/9611027 +gr-qc/9611029 +gr-qc/9611030 +gr-qc/9611032 +gr-qc/9611034 +gr-qc/9611041 +gr-qc/9611043 +gr-qc/9611045 +gr-qc/9611047 +gr-qc/9611055 +gr-qc/9611056 +gr-qc/9611058 +gr-qc/9611062 +gr-qc/9611065 +gr-qc/9611069 +gr-qc/9612005 +gr-qc/9612010 +gr-qc/9612011 +gr-qc/9612012 +gr-qc/9612014 +gr-qc/9612023 +gr-qc/9612025 +gr-qc/9612028 +gr-qc/9612034 +gr-qc/9612037 +gr-qc/9612040 +gr-qc/9612041 +gr-qc/9612046 +gr-qc/9612052 +gr-qc/9612056 +gr-qc/9612057 +gr-qc/9612062 +gr-qc/9612066 +gr-qc/9612068 +hep-ex/9504002 Experiment +hep-ex/9504010 Experiment +hep-ex/9505005 Experiment +hep-ex/9505008 Experiment +hep-ex/9506013 Experiment +hep-ex/9506014 Experiment +hep-ex/9507009 Experiment +hep-ex/9508007 Experiment +hep-ex/9508008 Experiment +hep-ex/9509002 Experiment +hep-ex/9510003 Experiment +hep-ex/9510008 Experiment +hep-ex/9512002 Experiment +hep-ex/9512010 Experiment +hep-ex/9601007 Experiment +hep-ex/9602006 Experiment +hep-ex/9605005 Experiment +hep-ex/9607004 Experiment +hep-ex/9609006 Experiment +hep-ex/9610005 Experiment +hep-ex/9610009 Experiment +hep-ex/9612014 Experiment +hep-lat/9411043 Lattice +hep-lat/9411044 Lattice +hep-lat/9411045 Lattice +hep-lat/9411046 Lattice +hep-lat/9411047 Lattice +hep-lat/9411048 Lattice +hep-lat/9411049 Lattice +hep-lat/9411050 Lattice +hep-lat/9411052 Lattice +hep-lat/9411053 Lattice +hep-lat/9411054 Lattice +hep-lat/9411056 Lattice +hep-lat/9411057 Lattice +hep-lat/9411058 Lattice +hep-lat/9411060 Lattice +hep-lat/9411062 Lattice +hep-lat/9411063 Lattice +hep-lat/9411064 Lattice +hep-lat/9411065 Lattice +hep-lat/9411068 Lattice +hep-lat/9411069 Lattice +hep-lat/9411070 Lattice +hep-lat/9411074 Lattice +hep-lat/9411076 Lattice +hep-lat/9411078 Lattice +hep-lat/9411079 Lattice +hep-lat/9411081 Lattice +hep-lat/9411083 Lattice +hep-lat/9411084 Lattice +hep-lat/9412001 Lattice +hep-lat/9412003 Lattice +hep-lat/9412004 Lattice +hep-lat/9412005 Lattice +hep-lat/9412006 Lattice +hep-lat/9412007 Lattice +hep-lat/9412008 Lattice +hep-lat/9412009 Lattice +hep-lat/9412012 Lattice +hep-lat/9412013 Lattice +hep-lat/9412014 Lattice +hep-lat/9412015 Lattice +hep-lat/9412016 Lattice +hep-lat/9412018 Lattice +hep-lat/9412019 Lattice +hep-lat/9412020 Lattice +hep-lat/9412021 Lattice +hep-lat/9412022 Lattice +hep-lat/9412023 Lattice +hep-lat/9412024 Lattice +hep-lat/9412025 Lattice +hep-lat/9412026 Lattice +hep-lat/9412027 Lattice +hep-lat/9412028 Lattice +hep-lat/9412030 Lattice +hep-lat/9412035 Lattice +hep-lat/9412036 Lattice +hep-lat/9412037 Lattice +hep-lat/9412039 Lattice +hep-lat/9412040 Lattice +hep-lat/9412041 Lattice +hep-lat/9412042 Lattice +hep-lat/9412043 Lattice +hep-lat/9412044 Lattice +hep-lat/9412045 Lattice +hep-lat/9412047 Lattice +hep-lat/9412048 Lattice +hep-lat/9412051 Lattice +hep-lat/9412052 Lattice +hep-lat/9412053 Lattice +hep-lat/9412054 Lattice +hep-lat/9412056 Lattice +hep-lat/9412057 Lattice +hep-lat/9412058 Lattice +hep-lat/9412059 Lattice +hep-lat/9412060 Lattice +hep-lat/9412061 Lattice +hep-lat/9412062 Lattice +hep-lat/9412066 Lattice +hep-lat/9412067 Lattice +hep-lat/9412068 Lattice +hep-lat/9412069 Lattice +hep-lat/9412070 Lattice +hep-lat/9412071 Lattice +hep-lat/9412072 Lattice +hep-lat/9412073 Lattice +hep-lat/9412074 Lattice +hep-lat/9412077 Lattice +hep-lat/9412078 Lattice +hep-lat/9412081 Lattice +hep-lat/9412083 Lattice +hep-lat/9412084 Lattice +hep-lat/9412085 Lattice +hep-lat/9412086 Lattice +hep-lat/9412088 Lattice +hep-lat/9412089 Lattice +hep-lat/9412090 Lattice +hep-lat/9412093 Lattice +hep-lat/9412094 Lattice +hep-lat/9412095 Lattice +hep-lat/9412096 Lattice +hep-lat/9412097 Lattice +hep-lat/9412098 Lattice +hep-lat/9412099 Lattice +hep-lat/9412100 Lattice +hep-lat/9412101 Lattice +hep-lat/9412103 Lattice +hep-lat/9412104 Lattice +hep-lat/9412105 Lattice +hep-lat/9412106 Lattice +hep-lat/9412107 Lattice +hep-lat/9412108 Lattice +hep-lat/9412109 Lattice +hep-lat/9412110 Lattice +hep-lat/9412113 Lattice +hep-lat/9412114 Lattice +hep-lat/9501005 Lattice +hep-lat/9501006 Lattice +hep-lat/9501009 Lattice +hep-lat/9501010 Lattice +hep-lat/9501020 Lattice +hep-lat/9501023 Lattice +hep-lat/9501026 Lattice +hep-lat/9501030 Lattice +hep-lat/9501035 Lattice +hep-lat/9501037 Lattice +hep-lat/9502002 Lattice +hep-lat/9502010 Lattice +hep-lat/9502013 Lattice +hep-lat/9502015 Lattice +hep-lat/9502016 Lattice +hep-lat/9503001 Lattice +hep-lat/9503017 Lattice +hep-lat/9503021 Lattice +hep-lat/9503022 Lattice +hep-lat/9503024 Lattice +hep-lat/9503025 Lattice +hep-lat/9504001 Lattice +hep-lat/9504002 Lattice +hep-lat/9504003 Lattice +hep-lat/9504005 Lattice +hep-lat/9504006 Lattice +hep-lat/9504008 Lattice +hep-lat/9504009 Lattice +hep-lat/9504011 Lattice +hep-lat/9504012 Lattice +hep-lat/9504017 Lattice +hep-lat/9504019 Lattice +hep-lat/9505002 Lattice +hep-lat/9505004 Lattice +hep-lat/9505005 Lattice +hep-lat/9505007 Lattice +hep-lat/9505008 Lattice +hep-lat/9505010 Lattice +hep-lat/9505011 Lattice +hep-lat/9505013 Lattice +hep-lat/9505014 Lattice +hep-lat/9505016 Lattice +hep-lat/9505017 Lattice +hep-lat/9505018 Lattice +hep-lat/9505021 Lattice +hep-lat/9505022 Lattice +hep-lat/9505023 Lattice +hep-lat/9505025 Lattice +hep-lat/9505027 Lattice +hep-lat/9506001 Lattice +hep-lat/9506002 Lattice +hep-lat/9506003 Lattice +hep-lat/9506007 Lattice +hep-lat/9506008 Lattice +hep-lat/9506010 Lattice +hep-lat/9506019 Lattice +hep-lat/9506020 Lattice +hep-lat/9506022 Lattice +hep-lat/9506023 Lattice +hep-lat/9506025 Lattice +hep-lat/9506026 Lattice +hep-lat/9506027 Lattice +hep-lat/9506028 Lattice +hep-lat/9506029 Lattice +hep-lat/9506030 Lattice +hep-lat/9506031 Lattice +hep-lat/9506032 Lattice +hep-lat/9507004 Lattice +hep-lat/9507005 Lattice +hep-lat/9507007 Lattice +hep-lat/9507008 Lattice +hep-lat/9507009 Lattice +hep-lat/9507010 Lattice +hep-lat/9507011 Lattice +hep-lat/9507013 Lattice +hep-lat/9507014 Lattice +hep-lat/9507016 Lattice +hep-lat/9507022 Lattice +hep-lat/9508003 Lattice +hep-lat/9508005 Lattice +hep-lat/9508008 Lattice +hep-lat/9508009 Lattice +hep-lat/9508010 Lattice +hep-lat/9508011 Lattice +hep-lat/9508012 Lattice +hep-lat/9508014 Lattice +hep-lat/9508018 Lattice +hep-lat/9508019 Lattice +hep-lat/9508021 Lattice +hep-lat/9508022 Lattice +hep-lat/9508023 Lattice +hep-lat/9508024 Lattice +hep-lat/9508025 Lattice +hep-lat/9508026 Lattice +hep-lat/9508027 Lattice +hep-lat/9508028 Lattice +hep-lat/9508029 Lattice +hep-lat/9508032 Lattice +hep-lat/9509001 Lattice +hep-lat/9509002 Lattice +hep-lat/9509003 Lattice +hep-lat/9509004 Lattice +hep-lat/9509005 Lattice +hep-lat/9509007 Lattice +hep-lat/9509009 Lattice +hep-lat/9509010 Lattice +hep-lat/9509012 Lattice +hep-lat/9509013 Lattice +hep-lat/9509014 Lattice +hep-lat/9509015 Lattice +hep-lat/9509016 Lattice +hep-lat/9509018 Lattice +hep-lat/9509019 Lattice +hep-lat/9509020 Lattice +hep-lat/9509022 Lattice +hep-lat/9509023 Lattice +hep-lat/9509024 Lattice +hep-lat/9509025 Lattice +hep-lat/9509026 Lattice +hep-lat/9509027 Lattice +hep-lat/9509028 Lattice +hep-lat/9509029 Lattice +hep-lat/9509030 Lattice +hep-lat/9509031 Lattice +hep-lat/9509032 Lattice +hep-lat/9509033 Lattice +hep-lat/9509034 Lattice +hep-lat/9509035 Lattice +hep-lat/9509036 Lattice +hep-lat/9509037 Lattice +hep-lat/9509038 Lattice +hep-lat/9509039 Lattice +hep-lat/9509040 Lattice +hep-lat/9509041 Lattice +hep-lat/9509042 Lattice +hep-lat/9509043 Lattice +hep-lat/9509046 Lattice +hep-lat/9509047 Lattice +hep-lat/9509050 Lattice +hep-lat/9509051 Lattice +hep-lat/9509052 Lattice +hep-lat/9509053 Lattice +hep-lat/9509054 Lattice +hep-lat/9509055 Lattice +hep-lat/9509056 Lattice +hep-lat/9509057 Lattice +hep-lat/9509058 Lattice +hep-lat/9509059 Lattice +hep-lat/9509062 Lattice +hep-lat/9509063 Lattice +hep-lat/9509064 Lattice +hep-lat/9509066 Lattice +hep-lat/9509067 Lattice +hep-lat/9509068 Lattice +hep-lat/9509069 Lattice +hep-lat/9509071 Lattice +hep-lat/9509072 Lattice +hep-lat/9509073 Lattice +hep-lat/9509074 Lattice +hep-lat/9509075 Lattice +hep-lat/9509080 Lattice +hep-lat/9509081 Lattice +hep-lat/9509082 Lattice +hep-lat/9509084 Lattice +hep-lat/9509086 Lattice +hep-lat/9509087 Lattice +hep-lat/9509088 Lattice +hep-lat/9509089 Lattice +hep-lat/9509091 Lattice +hep-lat/9509095 Lattice +hep-lat/9510002 Lattice +hep-lat/9510003 Lattice +hep-lat/9510007 Lattice +hep-lat/9510008 Lattice +hep-lat/9510010 Lattice +hep-lat/9510014 Lattice +hep-lat/9510015 Lattice +hep-lat/9510018 Lattice +hep-lat/9510019 Lattice +hep-lat/9510020 Lattice +hep-lat/9510021 Lattice +hep-lat/9510023 Lattice +hep-lat/9510024 Lattice +hep-lat/9510026 Lattice +hep-lat/9510027 Lattice +hep-lat/9510031 Lattice +hep-lat/9510032 Lattice +hep-lat/9510034 Lattice +hep-lat/9510037 Lattice +hep-lat/9510038 Lattice +hep-lat/9510040 Lattice +hep-lat/9510041 Lattice +hep-lat/9510042 Lattice +hep-lat/9510047 Lattice +hep-lat/9510048 Lattice +hep-lat/9510049 Lattice +hep-lat/9510050 Lattice +hep-lat/9510052 Lattice +hep-lat/9510053 Lattice +hep-lat/9511003 Lattice +hep-lat/9511004 Lattice +hep-lat/9511006 Lattice +hep-lat/9511008 Lattice +hep-lat/9511009 Lattice +hep-lat/9511011 Lattice +hep-lat/9511012 Lattice +hep-lat/9511014 Lattice +hep-lat/9511015 Lattice +hep-lat/9511016 Lattice +hep-lat/9511017 Lattice +hep-lat/9511019 Lattice +hep-lat/9511020 Lattice +hep-lat/9511023 Lattice +hep-lat/9511027 Lattice +hep-lat/9511031 Lattice +hep-lat/9512001 Lattice +hep-lat/9512002 Lattice +hep-lat/9512003 Lattice +hep-lat/9512009 Lattice +hep-lat/9512010 Lattice +hep-lat/9512012 Lattice +hep-lat/9512013 Lattice +hep-lat/9512014 Lattice +hep-lat/9512016 Lattice +hep-lat/9512018 Lattice +hep-lat/9512022 Lattice +hep-lat/9512024 Lattice +hep-lat/9512028 Lattice +hep-lat/9512030 Lattice +hep-lat/9512032 Lattice +hep-lat/9601001 Lattice +hep-lat/9601002 Lattice +hep-lat/9601004 Lattice +hep-lat/9601005 Lattice +hep-lat/9601006 Lattice +hep-lat/9601008 Lattice +hep-lat/9601010 Lattice +hep-lat/9601011 Lattice +hep-lat/9601015 Lattice +hep-lat/9601016 Lattice +hep-lat/9601017 Lattice +hep-lat/9601019 Lattice +hep-lat/9601020 Lattice +hep-lat/9601021 Lattice +hep-lat/9601023 Lattice +hep-lat/9601024 Lattice +hep-lat/9601025 Lattice +hep-lat/9601026 Lattice +hep-lat/9601028 Lattice +hep-lat/9602003 Lattice +hep-lat/9602005 Lattice +hep-lat/9602006 Lattice +hep-lat/9602007 Lattice +hep-lat/9602010 Lattice +hep-lat/9602011 Lattice +hep-lat/9602012 Lattice +hep-lat/9602013 Lattice +hep-lat/9602014 Lattice +hep-lat/9602016 Lattice +hep-lat/9602019 Lattice +hep-lat/9602020 Lattice +hep-lat/9602021 Lattice +hep-lat/9602025 Lattice +hep-lat/9602026 Lattice +hep-lat/9602027 Lattice +hep-lat/9603001 Lattice +hep-lat/9603002 Lattice +hep-lat/9603003 Lattice +hep-lat/9603004 Lattice +hep-lat/9603005 Lattice +hep-lat/9603008 Lattice +hep-lat/9603012 Lattice +hep-lat/9603013 Lattice +hep-lat/9603014 Lattice +hep-lat/9603018 Lattice +hep-lat/9603019 Lattice +hep-lat/9603020 Lattice +hep-lat/9603021 Lattice +hep-lat/9603022 Lattice +hep-lat/9603024 Lattice +hep-lat/9603025 Lattice +hep-lat/9604001 Lattice +hep-lat/9604002 Lattice +hep-lat/9604003 Lattice +hep-lat/9604006 Lattice +hep-lat/9604011 Lattice +hep-lat/9604012 Lattice +hep-lat/9604013 Lattice +hep-lat/9604014 Lattice +hep-lat/9604017 Lattice +hep-lat/9604021 Lattice +hep-lat/9604023 Lattice +hep-lat/9604025 Lattice +hep-lat/9605001 Lattice +hep-lat/9605002 Lattice +hep-lat/9605004 Lattice +hep-lat/9605005 Lattice +hep-lat/9605008 Lattice +hep-lat/9605009 Lattice +hep-lat/9605010 Lattice +hep-lat/9605012 Lattice +hep-lat/9605014 Lattice +hep-lat/9605017 Lattice +hep-lat/9605019 Lattice +hep-lat/9605020 Lattice +hep-lat/9605022 Lattice +hep-lat/9605024 Lattice +hep-lat/9605030 Lattice +hep-lat/9605031 Lattice +hep-lat/9605032 Lattice +hep-lat/9605034 Lattice +hep-lat/9605038 Lattice +hep-lat/9605040 Lattice +hep-lat/9605042 Lattice +hep-lat/9605044 Lattice +hep-lat/9605045 Lattice +hep-lat/9606004 Lattice +hep-lat/9606007 Lattice +hep-lat/9606010 Lattice +hep-lat/9606012 Lattice +hep-lat/9606013 Lattice +hep-lat/9606014 Lattice +hep-lat/9606017 Lattice +hep-lat/9606019 Lattice +hep-lat/9606020 Lattice +hep-lat/9606022 Lattice +hep-lat/9607001 Lattice +hep-lat/9607003 Lattice +hep-lat/9607005 Lattice +hep-lat/9607008 Lattice +hep-lat/9607009 Lattice +hep-lat/9607010 Lattice +hep-lat/9607011 Lattice +hep-lat/9607012 Lattice +hep-lat/9607013 Lattice +hep-lat/9607014 Lattice +hep-lat/9607015 Lattice +hep-lat/9607017 Lattice +hep-lat/9607020 Lattice +hep-lat/9607021 Lattice +hep-lat/9607022 Lattice +hep-lat/9607024 Lattice +hep-lat/9607025 Lattice +hep-lat/9607026 Lattice +hep-lat/9607027 Lattice +hep-lat/9607028 Lattice +hep-lat/9607029 Lattice +hep-lat/9607030 Lattice +hep-lat/9607032 Lattice +hep-lat/9607033 Lattice +hep-lat/9607034 Lattice +hep-lat/9607035 Lattice +hep-lat/9607036 Lattice +hep-lat/9607038 Lattice +hep-lat/9607039 Lattice +hep-lat/9607040 Lattice +hep-lat/9607041 Lattice +hep-lat/9607043 Lattice +hep-lat/9607044 Lattice +hep-lat/9607047 Lattice +hep-lat/9607048 Lattice +hep-lat/9607051 Lattice +hep-lat/9607052 Lattice +hep-lat/9607054 Lattice +hep-lat/9607057 Lattice +hep-lat/9607058 Lattice +hep-lat/9607059 Lattice +hep-lat/9607060 Lattice +hep-lat/9607061 Lattice +hep-lat/9607062 Lattice +hep-lat/9607063 Lattice +hep-lat/9607064 Lattice +hep-lat/9607066 Lattice +hep-lat/9607067 Lattice +hep-lat/9607068 Lattice +hep-lat/9607069 Lattice +hep-lat/9607070 Lattice +hep-lat/9607072 Lattice +hep-lat/9607073 Lattice +hep-lat/9607074 Lattice +hep-lat/9607075 Lattice +hep-lat/9607076 Lattice +hep-lat/9607077 Lattice +hep-lat/9607078 Lattice +hep-lat/9607079 Lattice +hep-lat/9607080 Lattice +hep-lat/9607081 Lattice +hep-lat/9607084 Lattice +hep-lat/9608001 Lattice +hep-lat/9608002 Lattice +hep-lat/9608003 Lattice +hep-lat/9608004 Lattice +hep-lat/9608006 Lattice +hep-lat/9608007 Lattice +hep-lat/9608008 Lattice +hep-lat/9608010 Lattice +hep-lat/9608012 Lattice +hep-lat/9608013 Lattice +hep-lat/9608014 Lattice +hep-lat/9608016 Lattice +hep-lat/9608018 Lattice +hep-lat/9608019 Lattice +hep-lat/9608020 Lattice +hep-lat/9608022 Lattice +hep-lat/9608023 Lattice +hep-lat/9608025 Lattice +hep-lat/9608027 Lattice +hep-lat/9608028 Lattice +hep-lat/9608029 Lattice +hep-lat/9608030 Lattice +hep-lat/9608037 Lattice +hep-lat/9608038 Lattice +hep-lat/9608041 Lattice +hep-lat/9608042 Lattice +hep-lat/9608044 Lattice +hep-lat/9608045 Lattice +hep-lat/9608047 Lattice +hep-lat/9608048 Lattice +hep-lat/9608049 Lattice +hep-lat/9608050 Lattice +hep-lat/9608051 Lattice +hep-lat/9608052 Lattice +hep-lat/9608053 Lattice +hep-lat/9608054 Lattice +hep-lat/9608055 Lattice +hep-lat/9608056 Lattice +hep-lat/9608057 Lattice +hep-lat/9608058 Lattice +hep-lat/9608060 Lattice +hep-lat/9608062 Lattice +hep-lat/9608064 Lattice +hep-lat/9608065 Lattice +hep-lat/9608066 Lattice +hep-lat/9608067 Lattice +hep-lat/9608068 Lattice +hep-lat/9608071 Lattice +hep-lat/9608072 Lattice +hep-lat/9608073 Lattice +hep-lat/9608074 Lattice +hep-lat/9608076 Lattice +hep-lat/9608077 Lattice +hep-lat/9608078 Lattice +hep-lat/9608079 Lattice +hep-lat/9608080 Lattice +hep-lat/9608082 Lattice +hep-lat/9608083 Lattice +hep-lat/9608084 Lattice +hep-lat/9608087 Lattice +hep-lat/9608091 Lattice +hep-lat/9608093 Lattice +hep-lat/9608096 Lattice +hep-lat/9608097 Lattice +hep-lat/9608099 Lattice +hep-lat/9608100 Lattice +hep-lat/9608101 Lattice +hep-lat/9608103 Lattice +hep-lat/9608104 Lattice +hep-lat/9608105 Lattice +hep-lat/9608106 Lattice +hep-lat/9608107 Lattice +hep-lat/9608108 Lattice +hep-lat/9608109 Lattice +hep-lat/9608110 Lattice +hep-lat/9608111 Lattice +hep-lat/9608114 Lattice +hep-lat/9608115 Lattice +hep-lat/9608116 Lattice +hep-lat/9608117 Lattice +hep-lat/9608118 Lattice +hep-lat/9608120 Lattice +hep-lat/9608122 Lattice +hep-lat/9608124 Lattice +hep-lat/9608125 Lattice +hep-lat/9608126 Lattice +hep-lat/9608130 Lattice +hep-lat/9608133 Lattice +hep-lat/9608134 Lattice +hep-lat/9608136 Lattice +hep-lat/9608137 Lattice +hep-lat/9608139 Lattice +hep-lat/9608141 Lattice +hep-lat/9608142 Lattice +hep-lat/9608143 Lattice +hep-lat/9608144 Lattice +hep-lat/9608148 Lattice +hep-lat/9608149 Lattice +hep-lat/9608150 Lattice +hep-lat/9609002 Lattice +hep-lat/9609004 Lattice +hep-lat/9609005 Lattice +hep-lat/9609006 Lattice +hep-lat/9609007 Lattice +hep-lat/9609009 Lattice +hep-lat/9609010 Lattice +hep-lat/9609011 Lattice +hep-lat/9609012 Lattice +hep-lat/9609013 Lattice +hep-lat/9609015 Lattice +hep-lat/9609016 Lattice +hep-lat/9609018 Lattice +hep-lat/9609020 Lattice +hep-lat/9609021 Lattice +hep-lat/9609022 Lattice +hep-lat/9609025 Lattice +hep-lat/9609026 Lattice +hep-lat/9609027 Lattice +hep-lat/9609029 Lattice +hep-lat/9609030 Lattice +hep-lat/9609031 Lattice +hep-lat/9609033 Lattice +hep-lat/9609034 Lattice +hep-lat/9609038 Lattice +hep-lat/9609044 Lattice +hep-lat/9609045 Lattice +hep-lat/9609047 Lattice +hep-lat/9610003 Lattice +hep-lat/9610004 Lattice +hep-lat/9610006 Lattice +hep-lat/9610007 Lattice +hep-lat/9610008 Lattice +hep-lat/9610013 Lattice +hep-lat/9610014 Lattice +hep-lat/9610015 Lattice +hep-lat/9610017 Lattice +hep-lat/9610018 Lattice +hep-lat/9610019 Lattice +hep-lat/9610020 Lattice +hep-lat/9610022 Lattice +hep-lat/9610027 Lattice +hep-lat/9610028 Lattice +hep-lat/9610029 Lattice +hep-lat/9610033 Lattice +hep-lat/9610037 Lattice +hep-lat/9610038 Lattice +hep-lat/9611002 Lattice +hep-lat/9611003 Lattice +hep-lat/9611006 Lattice +hep-lat/9611010 Lattice +hep-lat/9611012 Lattice +hep-lat/9611014 Lattice +hep-lat/9611019 Lattice +hep-lat/9611020 Lattice +hep-lat/9611021 Lattice +hep-lat/9611024 Lattice +hep-lat/9611025 Lattice +hep-lat/9611027 Lattice +hep-lat/9611028 Lattice +hep-lat/9611030 Lattice +hep-lat/9611032 Lattice +hep-lat/9612001 Lattice +hep-lat/9612003 Lattice +hep-lat/9612004 Lattice +hep-lat/9612007 Lattice +hep-lat/9612010 Lattice +hep-lat/9612011 Lattice +hep-lat/9612012 Lattice +hep-lat/9612013 Lattice +hep-lat/9612015 Lattice +hep-lat/9612017 Lattice +hep-lat/9612018 Lattice +hep-lat/9612019 Lattice +hep-lat/9612021 Lattice +hep-lat/9612024 Lattice +hep-ph/9401204 Phenomenology +hep-ph/9401210 Phenomenology +hep-ph/9401214 Phenomenology +hep-ph/9401215 Phenomenology +hep-ph/9401217 Phenomenology +hep-ph/9401218 Phenomenology +hep-ph/9401219 Phenomenology +hep-ph/9401223 Phenomenology +hep-ph/9401232 Phenomenology +hep-ph/9401233 Phenomenology +hep-ph/9401234 Phenomenology +hep-ph/9401236 Phenomenology +hep-ph/9401238 Phenomenology +hep-ph/9401239 Phenomenology +hep-ph/9401240 Phenomenology +hep-ph/9401241 Phenomenology +hep-ph/9401242 Phenomenology +hep-ph/9401243 Phenomenology +hep-ph/9401245 Phenomenology +hep-ph/9401250 Phenomenology +hep-ph/9401254 Phenomenology +hep-ph/9401258 Phenomenology +hep-ph/9401260 Phenomenology +hep-ph/9401261 Phenomenology +hep-ph/9401263 Phenomenology +hep-ph/9401264 Phenomenology +hep-ph/9401265 Phenomenology +hep-ph/9401266 Phenomenology +hep-ph/9401271 Phenomenology +hep-ph/9401272 Phenomenology +hep-ph/9401276 Phenomenology +hep-ph/9401278 Phenomenology +hep-ph/9401282 Phenomenology +hep-ph/9401285 Phenomenology +hep-ph/9401287 Phenomenology +hep-ph/9401288 Phenomenology +hep-ph/9401289 Phenomenology +hep-ph/9401290 Phenomenology +hep-ph/9401292 Phenomenology +hep-ph/9401294 Phenomenology +hep-ph/9401301 Phenomenology +hep-ph/9401303 Phenomenology +hep-ph/9401305 Phenomenology +hep-ph/9401306 Phenomenology +hep-ph/9401308 Phenomenology +hep-ph/9401309 Phenomenology +hep-ph/9401313 Phenomenology +hep-ph/9401315 Phenomenology +hep-ph/9401316 Phenomenology +hep-ph/9401318 Phenomenology +hep-ph/9401323 Phenomenology +hep-ph/9401327 Phenomenology +hep-ph/9401333 Phenomenology +hep-ph/9401335 Phenomenology +hep-ph/9401336 Phenomenology +hep-ph/9401338 Phenomenology +hep-ph/9401340 Phenomenology +hep-ph/9401342 Phenomenology +hep-ph/9401343 Phenomenology +hep-ph/9401344 Phenomenology +hep-ph/9401345 Phenomenology +hep-ph/9401346 Phenomenology +hep-ph/9401349 Phenomenology +hep-ph/9401351 Phenomenology +hep-ph/9401353 Phenomenology +hep-ph/9401355 Phenomenology +hep-ph/9401357 Phenomenology +hep-ph/9402201 Phenomenology +hep-ph/9402205 Phenomenology +hep-ph/9402206 Phenomenology +hep-ph/9402207 Phenomenology +hep-ph/9402208 Phenomenology +hep-ph/9402212 Phenomenology +hep-ph/9402213 Phenomenology +hep-ph/9402216 Phenomenology +hep-ph/9402218 Phenomenology +hep-ph/9402219 Phenomenology +hep-ph/9402221 Phenomenology +hep-ph/9402223 Phenomenology +hep-ph/9402225 Phenomenology +hep-ph/9402228 Phenomenology +hep-ph/9402229 Phenomenology +hep-ph/9402231 Phenomenology +hep-ph/9402236 Phenomenology +hep-ph/9402237 Phenomenology +hep-ph/9402238 Phenomenology +hep-ph/9402240 Phenomenology +hep-ph/9402246 Phenomenology +hep-ph/9402250 Phenomenology +hep-ph/9402259 Phenomenology +hep-ph/9402262 Phenomenology +hep-ph/9402264 Phenomenology +hep-ph/9402265 Phenomenology +hep-ph/9402268 Phenomenology +hep-ph/9402270 Phenomenology +hep-ph/9402274 Phenomenology +hep-ph/9402276 Phenomenology +hep-ph/9402279 Phenomenology +hep-ph/9402281 Phenomenology +hep-ph/9402285 Phenomenology +hep-ph/9402292 Phenomenology +hep-ph/9402298 Phenomenology +hep-ph/9402302 Phenomenology +hep-ph/9402304 Phenomenology +hep-ph/9402305 Phenomenology +hep-ph/9402308 Phenomenology +hep-ph/9402310 Phenomenology +hep-ph/9402313 Phenomenology +hep-ph/9402314 Phenomenology +hep-ph/9402315 Phenomenology +hep-ph/9402318 Phenomenology +hep-ph/9402319 Phenomenology +hep-ph/9402320 Phenomenology +hep-ph/9402331 Phenomenology +hep-ph/9402334 Phenomenology +hep-ph/9402337 Phenomenology +hep-ph/9402338 Phenomenology +hep-ph/9402339 Phenomenology +hep-ph/9402342 Phenomenology +hep-ph/9402343 Phenomenology +hep-ph/9402344 Phenomenology +hep-ph/9402346 Phenomenology +hep-ph/9402351 Phenomenology +hep-ph/9402361 Phenomenology +hep-ph/9402362 Phenomenology +hep-ph/9402363 Phenomenology +hep-ph/9402364 Phenomenology +hep-ph/9403201 Phenomenology +hep-ph/9403202 Phenomenology +hep-ph/9403209 Phenomenology +hep-ph/9403212 Phenomenology +hep-ph/9403216 Phenomenology +hep-ph/9403217 Phenomenology +hep-ph/9403219 Phenomenology +hep-ph/9403228 Phenomenology +hep-ph/9403231 Phenomenology +hep-ph/9403232 Phenomenology +hep-ph/9403234 Phenomenology +hep-ph/9403236 Phenomenology +hep-ph/9403237 Phenomenology +hep-ph/9403240 Phenomenology +hep-ph/9403243 Phenomenology +hep-ph/9403244 Phenomenology +hep-ph/9403246 Phenomenology +hep-ph/9403248 Phenomenology +hep-ph/9403256 Phenomenology +hep-ph/9403262 Phenomenology +hep-ph/9403271 Phenomenology +hep-ph/9403272 Phenomenology +hep-ph/9403275 Phenomenology +hep-ph/9403276 Phenomenology +hep-ph/9403277 Phenomenology +hep-ph/9403281 Phenomenology +hep-ph/9403283 Phenomenology +hep-ph/9403286 Phenomenology +hep-ph/9403287 Phenomenology +hep-ph/9403288 Phenomenology +hep-ph/9403289 Phenomenology +hep-ph/9403290 Phenomenology +hep-ph/9403291 Phenomenology +hep-ph/9403298 Phenomenology +hep-ph/9403300 Phenomenology +hep-ph/9403304 Phenomenology +hep-ph/9403305 Phenomenology +hep-ph/9403306 Phenomenology +hep-ph/9403310 Phenomenology +hep-ph/9403311 Phenomenology +hep-ph/9403312 Phenomenology +hep-ph/9403314 Phenomenology +hep-ph/9403318 Phenomenology +hep-ph/9403321 Phenomenology +hep-ph/9403324 Phenomenology +hep-ph/9403330 Phenomenology +hep-ph/9403337 Phenomenology +hep-ph/9403339 Phenomenology +hep-ph/9403340 Phenomenology +hep-ph/9403342 Phenomenology +hep-ph/9403351 Phenomenology +hep-ph/9403352 Phenomenology +hep-ph/9403353 Phenomenology +hep-ph/9403362 Phenomenology +hep-ph/9403365 Phenomenology +hep-ph/9403366 Phenomenology +hep-ph/9403370 Phenomenology +hep-ph/9403371 Phenomenology +hep-ph/9403375 Phenomenology +hep-ph/9403378 Phenomenology +hep-ph/9403380 Phenomenology +hep-ph/9403381 Phenomenology +hep-ph/9403383 Phenomenology +hep-ph/9403385 Phenomenology +hep-ph/9403388 Phenomenology +hep-ph/9403396 Phenomenology +hep-ph/9403397 Phenomenology +hep-ph/9403398 Phenomenology +hep-ph/9403399 Phenomenology +hep-ph/9403400 Phenomenology +hep-ph/9403402 Phenomenology +hep-ph/9403404 Phenomenology +hep-ph/9403405 Phenomenology +hep-ph/9403408 Phenomenology +hep-ph/9403410 Phenomenology +hep-ph/9404201 Phenomenology +hep-ph/9404204 Phenomenology +hep-ph/9404207 Phenomenology +hep-ph/9404212 Phenomenology +hep-ph/9404216 Phenomenology +hep-ph/9404218 Phenomenology +hep-ph/9404220 Phenomenology +hep-ph/9404224 Phenomenology +hep-ph/9404225 Phenomenology +hep-ph/9404226 Phenomenology +hep-ph/9404232 Phenomenology +hep-ph/9404233 Phenomenology +hep-ph/9404236 Phenomenology +hep-ph/9404237 Phenomenology +hep-ph/9404238 Phenomenology +hep-ph/9404240 Phenomenology +hep-ph/9404242 Phenomenology +hep-ph/9404244 Phenomenology +hep-ph/9404247 Phenomenology +hep-ph/9404248 Phenomenology +hep-ph/9404250 Phenomenology +hep-ph/9404251 Phenomenology +hep-ph/9404254 Phenomenology +hep-ph/9404257 Phenomenology +hep-ph/9404258 Phenomenology +hep-ph/9404266 Phenomenology +hep-ph/9404268 Phenomenology +hep-ph/9404269 Phenomenology +hep-ph/9404272 Phenomenology +hep-ph/9404273 Phenomenology +hep-ph/9404274 Phenomenology +hep-ph/9404277 Phenomenology +hep-ph/9404280 Phenomenology +hep-ph/9404289 Phenomenology +hep-ph/9404290 Phenomenology +hep-ph/9404293 Phenomenology +hep-ph/9404295 Phenomenology +hep-ph/9404301 Phenomenology +hep-ph/9404303 Phenomenology +hep-ph/9404305 Phenomenology +hep-ph/9404306 Phenomenology +hep-ph/9404307 Phenomenology +hep-ph/9404311 Phenomenology +hep-ph/9404313 Phenomenology +hep-ph/9404322 Phenomenology +hep-ph/9404324 Phenomenology +hep-ph/9404325 Phenomenology +hep-ph/9404326 Phenomenology +hep-ph/9404328 Phenomenology +hep-ph/9404331 Phenomenology +hep-ph/9404333 Phenomenology +hep-ph/9404337 Phenomenology +hep-ph/9404338 Phenomenology +hep-ph/9404339 Phenomenology +hep-ph/9404342 Phenomenology +hep-ph/9404344 Phenomenology +hep-ph/9404345 Phenomenology +hep-ph/9404354 Phenomenology +hep-ph/9404355 Phenomenology +hep-ph/9404356 Phenomenology +hep-ph/9404357 Phenomenology +hep-ph/9404359 Phenomenology +hep-ph/9404361 Phenomenology +hep-ph/9404362 Phenomenology +hep-ph/9405201 Phenomenology +hep-ph/9405202 Phenomenology +hep-ph/9405204 Phenomenology +hep-ph/9405205 Phenomenology +hep-ph/9405209 Phenomenology +hep-ph/9405211 Phenomenology +hep-ph/9405212 Phenomenology +hep-ph/9405214 Phenomenology +hep-ph/9405220 Phenomenology +hep-ph/9405221 Phenomenology +hep-ph/9405222 Phenomenology +hep-ph/9405225 Phenomenology +hep-ph/9405227 Phenomenology +hep-ph/9405231 Phenomenology +hep-ph/9405234 Phenomenology +hep-ph/9405235 Phenomenology +hep-ph/9405238 Phenomenology +hep-ph/9405239 Phenomenology +hep-ph/9405241 Phenomenology +hep-ph/9405253 Phenomenology +hep-ph/9405257 Phenomenology +hep-ph/9405262 Phenomenology +hep-ph/9405271 Phenomenology +hep-ph/9405274 Phenomenology +hep-ph/9405277 Phenomenology +hep-ph/9405281 Phenomenology +hep-ph/9405285 Phenomenology +hep-ph/9405287 Phenomenology +hep-ph/9405289 Phenomenology +hep-ph/9405290 Phenomenology +hep-ph/9405291 Phenomenology +hep-ph/9405292 Phenomenology +hep-ph/9405297 Phenomenology +hep-ph/9405299 Phenomenology +hep-ph/9405301 Phenomenology +hep-ph/9405304 Phenomenology +hep-ph/9405308 Phenomenology +hep-ph/9405309 Phenomenology +hep-ph/9405311 Phenomenology +hep-ph/9405317 Phenomenology +hep-ph/9405323 Phenomenology +hep-ph/9405324 Phenomenology +hep-ph/9405326 Phenomenology +hep-ph/9405327 Phenomenology +hep-ph/9405336 Phenomenology +hep-ph/9405338 Phenomenology +hep-ph/9405339 Phenomenology +hep-ph/9405341 Phenomenology +hep-ph/9405344 Phenomenology +hep-ph/9405346 Phenomenology +hep-ph/9405347 Phenomenology +hep-ph/9405355 Phenomenology +hep-ph/9405360 Phenomenology +hep-ph/9405365 Phenomenology +hep-ph/9405366 Phenomenology +hep-ph/9405370 Phenomenology +hep-ph/9405371 Phenomenology +hep-ph/9405375 Phenomenology +hep-ph/9405377 Phenomenology +hep-ph/9405378 Phenomenology +hep-ph/9405380 Phenomenology +hep-ph/9405386 Phenomenology +hep-ph/9405387 Phenomenology +hep-ph/9405388 Phenomenology +hep-ph/9405389 Phenomenology +hep-ph/9405391 Phenomenology +hep-ph/9405392 Phenomenology +hep-ph/9405394 Phenomenology +hep-ph/9405395 Phenomenology +hep-ph/9405398 Phenomenology +hep-ph/9405399 Phenomenology +hep-ph/9405403 Phenomenology +hep-ph/9405405 Phenomenology +hep-ph/9405412 Phenomenology +hep-ph/9405414 Phenomenology +hep-ph/9405416 Phenomenology +hep-ph/9405418 Phenomenology +hep-ph/9405421 Phenomenology +hep-ph/9405427 Phenomenology +hep-ph/9406201 Phenomenology +hep-ph/9406203 Phenomenology +hep-ph/9406208 Phenomenology +hep-ph/9406211 Phenomenology +hep-ph/9406213 Phenomenology +hep-ph/9406214 Phenomenology +hep-ph/9406220 Phenomenology +hep-ph/9406228 Phenomenology +hep-ph/9406232 Phenomenology +hep-ph/9406233 Phenomenology +hep-ph/9406235 Phenomenology +hep-ph/9406239 Phenomenology +hep-ph/9406241 Phenomenology +hep-ph/9406242 Phenomenology +hep-ph/9406244 Phenomenology +hep-ph/9406258 Phenomenology +hep-ph/9406261 Phenomenology +hep-ph/9406262 Phenomenology +hep-ph/9406263 Phenomenology +hep-ph/9406264 Phenomenology +hep-ph/9406266 Phenomenology +hep-ph/9406271 Phenomenology +hep-ph/9406274 Phenomenology +hep-ph/9406275 Phenomenology +hep-ph/9406276 Phenomenology +hep-ph/9406277 Phenomenology +hep-ph/9406279 Phenomenology +hep-ph/9406281 Phenomenology +hep-ph/9406282 Phenomenology +hep-ph/9406286 Phenomenology +hep-ph/9406290 Phenomenology +hep-ph/9406294 Phenomenology +hep-ph/9406295 Phenomenology +hep-ph/9406298 Phenomenology +hep-ph/9406303 Phenomenology +hep-ph/9406306 Phenomenology +hep-ph/9406310 Phenomenology +hep-ph/9406311 Phenomenology +hep-ph/9406312 Phenomenology +hep-ph/9406316 Phenomenology +hep-ph/9406317 Phenomenology +hep-ph/9406318 Phenomenology +hep-ph/9406320 Phenomenology +hep-ph/9406321 Phenomenology +hep-ph/9406322 Phenomenology +hep-ph/9406324 Phenomenology +hep-ph/9406326 Phenomenology +hep-ph/9406328 Phenomenology +hep-ph/9406329 Phenomenology +hep-ph/9406330 Phenomenology +hep-ph/9406331 Phenomenology +hep-ph/9406336 Phenomenology +hep-ph/9406339 Phenomenology +hep-ph/9406340 Phenomenology +hep-ph/9406342 Phenomenology +hep-ph/9406345 Phenomenology +hep-ph/9406349 Phenomenology +hep-ph/9406350 Phenomenology +hep-ph/9406357 Phenomenology +hep-ph/9406364 Phenomenology +hep-ph/9406365 Phenomenology +hep-ph/9406374 Phenomenology +hep-ph/9406377 Phenomenology +hep-ph/9406378 Phenomenology +hep-ph/9406380 Phenomenology +hep-ph/9406381 Phenomenology +hep-ph/9406385 Phenomenology +hep-ph/9406386 Phenomenology +hep-ph/9406392 Phenomenology +hep-ph/9406393 Phenomenology +hep-ph/9406400 Phenomenology +hep-ph/9406404 Phenomenology +hep-ph/9406407 Phenomenology +hep-ph/9406408 Phenomenology +hep-ph/9406412 Phenomenology +hep-ph/9406417 Phenomenology +hep-ph/9407203 Phenomenology +hep-ph/9407204 Phenomenology +hep-ph/9407216 Phenomenology +hep-ph/9407217 Phenomenology +hep-ph/9407220 Phenomenology +hep-ph/9407223 Phenomenology +hep-ph/9407227 Phenomenology +hep-ph/9407228 Phenomenology +hep-ph/9407234 Phenomenology +hep-ph/9407235 Phenomenology +hep-ph/9407244 Phenomenology +hep-ph/9407245 Phenomenology +hep-ph/9407247 Phenomenology +hep-ph/9407251 Phenomenology +hep-ph/9407252 Phenomenology +hep-ph/9407254 Phenomenology +hep-ph/9407258 Phenomenology +hep-ph/9407265 Phenomenology +hep-ph/9407266 Phenomenology +hep-ph/9407267 Phenomenology +hep-ph/9407268 Phenomenology +hep-ph/9407269 Phenomenology +hep-ph/9407274 Phenomenology +hep-ph/9407276 Phenomenology +hep-ph/9407278 Phenomenology +hep-ph/9407281 Phenomenology +hep-ph/9407283 Phenomenology +hep-ph/9407290 Phenomenology +hep-ph/9407292 Phenomenology +hep-ph/9407296 Phenomenology +hep-ph/9407298 Phenomenology +hep-ph/9407302 Phenomenology +hep-ph/9407308 Phenomenology +hep-ph/9407310 Phenomenology +hep-ph/9407314 Phenomenology +hep-ph/9407317 Phenomenology +hep-ph/9407318 Phenomenology +hep-ph/9407322 Phenomenology +hep-ph/9407324 Phenomenology +hep-ph/9407329 Phenomenology +hep-ph/9407332 Phenomenology +hep-ph/9407335 Phenomenology +hep-ph/9407337 Phenomenology +hep-ph/9407340 Phenomenology +hep-ph/9407341 Phenomenology +hep-ph/9407343 Phenomenology +hep-ph/9407347 Phenomenology +hep-ph/9407348 Phenomenology +hep-ph/9407349 Phenomenology +hep-ph/9407350 Phenomenology +hep-ph/9407352 Phenomenology +hep-ph/9407354 Phenomenology +hep-ph/9407355 Phenomenology +hep-ph/9407356 Phenomenology +hep-ph/9407369 Phenomenology +hep-ph/9407370 Phenomenology +hep-ph/9407372 Phenomenology +hep-ph/9407376 Phenomenology +hep-ph/9407379 Phenomenology +hep-ph/9407386 Phenomenology +hep-ph/9407388 Phenomenology +hep-ph/9407390 Phenomenology +hep-ph/9407393 Phenomenology +hep-ph/9407400 Phenomenology +hep-ph/9407401 Phenomenology +hep-ph/9407402 Phenomenology +hep-ph/9407407 Phenomenology +hep-ph/9407408 Phenomenology +hep-ph/9407410 Phenomenology +hep-ph/9408204 Phenomenology +hep-ph/9408206 Phenomenology +hep-ph/9408208 Phenomenology +hep-ph/9408209 Phenomenology +hep-ph/9408210 Phenomenology +hep-ph/9408211 Phenomenology +hep-ph/9408215 Phenomenology +hep-ph/9408217 Phenomenology +hep-ph/9408219 Phenomenology +hep-ph/9408221 Phenomenology +hep-ph/9408222 Phenomenology +hep-ph/9408223 Phenomenology +hep-ph/9408224 Phenomenology +hep-ph/9408225 Phenomenology +hep-ph/9408227 Phenomenology +hep-ph/9408228 Phenomenology +hep-ph/9408230 Phenomenology +hep-ph/9408231 Phenomenology +hep-ph/9408232 Phenomenology +hep-ph/9408237 Phenomenology +hep-ph/9408238 Phenomenology +hep-ph/9408239 Phenomenology +hep-ph/9408243 Phenomenology +hep-ph/9408245 Phenomenology +hep-ph/9408250 Phenomenology +hep-ph/9408256 Phenomenology +hep-ph/9408257 Phenomenology +hep-ph/9408261 Phenomenology +hep-ph/9408262 Phenomenology +hep-ph/9408264 Phenomenology +hep-ph/9408266 Phenomenology +hep-ph/9408271 Phenomenology +hep-ph/9408272 Phenomenology +hep-ph/9408273 Phenomenology +hep-ph/9408274 Phenomenology +hep-ph/9408277 Phenomenology +hep-ph/9408278 Phenomenology +hep-ph/9408281 Phenomenology +hep-ph/9408287 Phenomenology +hep-ph/9408288 Phenomenology +hep-ph/9408289 Phenomenology +hep-ph/9408292 Phenomenology +hep-ph/9408293 Phenomenology +hep-ph/9408297 Phenomenology +hep-ph/9408298 Phenomenology +hep-ph/9408299 Phenomenology +hep-ph/9408300 Phenomenology +hep-ph/9408308 Phenomenology +hep-ph/9408313 Phenomenology +hep-ph/9408317 Phenomenology +hep-ph/9408319 Phenomenology +hep-ph/9408321 Phenomenology +hep-ph/9408322 Phenomenology +hep-ph/9408323 Phenomenology +hep-ph/9408324 Phenomenology +hep-ph/9408328 Phenomenology +hep-ph/9408333 Phenomenology +hep-ph/9408336 Phenomenology +hep-ph/9408341 Phenomenology +hep-ph/9408346 Phenomenology +hep-ph/9408351 Phenomenology +hep-ph/9408353 Phenomenology +hep-ph/9408354 Phenomenology +hep-ph/9408355 Phenomenology +hep-ph/9408356 Phenomenology +hep-ph/9408360 Phenomenology +hep-ph/9408362 Phenomenology +hep-ph/9408363 Phenomenology +hep-ph/9408364 Phenomenology +hep-ph/9408365 Phenomenology +hep-ph/9408366 Phenomenology +hep-ph/9408367 Phenomenology +hep-ph/9408370 Phenomenology +hep-ph/9408374 Phenomenology +hep-ph/9408375 Phenomenology +hep-ph/9408377 Phenomenology +hep-ph/9408378 Phenomenology +hep-ph/9408380 Phenomenology +hep-ph/9408383 Phenomenology +hep-ph/9408385 Phenomenology +hep-ph/9408389 Phenomenology +hep-ph/9408394 Phenomenology +hep-ph/9408395 Phenomenology +hep-ph/9408396 Phenomenology +hep-ph/9408398 Phenomenology +hep-ph/9408403 Phenomenology +hep-ph/9409201 Phenomenology +hep-ph/9409202 Phenomenology +hep-ph/9409203 Phenomenology +hep-ph/9409215 Phenomenology +hep-ph/9409217 Phenomenology +hep-ph/9409218 Phenomenology +hep-ph/9409222 Phenomenology +hep-ph/9409227 Phenomenology +hep-ph/9409232 Phenomenology +hep-ph/9409238 Phenomenology +hep-ph/9409245 Phenomenology +hep-ph/9409246 Phenomenology +hep-ph/9409249 Phenomenology +hep-ph/9409250 Phenomenology +hep-ph/9409255 Phenomenology +hep-ph/9409260 Phenomenology +hep-ph/9409263 Phenomenology +hep-ph/9409266 Phenomenology +hep-ph/9409269 Phenomenology +hep-ph/9409271 Phenomenology +hep-ph/9409273 Phenomenology +hep-ph/9409274 Phenomenology +hep-ph/9409275 Phenomenology +hep-ph/9409291 Phenomenology +hep-ph/9409295 Phenomenology +hep-ph/9409296 Phenomenology +hep-ph/9409300 Phenomenology +hep-ph/9409302 Phenomenology +hep-ph/9409303 Phenomenology +hep-ph/9409308 Phenomenology +hep-ph/9409309 Phenomenology +hep-ph/9409320 Phenomenology +hep-ph/9409323 Phenomenology +hep-ph/9409326 Phenomenology +hep-ph/9409327 Phenomenology +hep-ph/9409329 Phenomenology +hep-ph/9409337 Phenomenology +hep-ph/9409340 Phenomenology +hep-ph/9409346 Phenomenology +hep-ph/9409356 Phenomenology +hep-ph/9409357 Phenomenology +hep-ph/9409361 Phenomenology +hep-ph/9409367 Phenomenology +hep-ph/9409371 Phenomenology +hep-ph/9409374 Phenomenology +hep-ph/9409378 Phenomenology +hep-ph/9409387 Phenomenology +hep-ph/9409391 Phenomenology +hep-ph/9409397 Phenomenology +hep-ph/9409402 Phenomenology +hep-ph/9409405 Phenomenology +hep-ph/9409410 Phenomenology +hep-ph/9409413 Phenomenology +hep-ph/9409414 Phenomenology +hep-ph/9409417 Phenomenology +hep-ph/9409423 Phenomenology +hep-ph/9409424 Phenomenology +hep-ph/9409426 Phenomenology +hep-ph/9409433 Phenomenology +hep-ph/9409438 Phenomenology +hep-ph/9409440 Phenomenology +hep-ph/9409443 Phenomenology +hep-ph/9409445 Phenomenology +hep-ph/9409446 Phenomenology +hep-ph/9409450 Phenomenology +hep-ph/9409451 Phenomenology +hep-ph/9409452 Phenomenology +hep-ph/9409455 Phenomenology +hep-ph/9409458 Phenomenology +hep-ph/9409459 Phenomenology +hep-ph/9409460 Phenomenology +hep-ph/9409463 Phenomenology +hep-ph/9410201 Phenomenology +hep-ph/9410202 Phenomenology +hep-ph/9410204 Phenomenology +hep-ph/9410214 Phenomenology +hep-ph/9410220 Phenomenology +hep-ph/9410223 Phenomenology +hep-ph/9410227 Phenomenology +hep-ph/9410229 Phenomenology +hep-ph/9410230 Phenomenology +hep-ph/9410231 Phenomenology +hep-ph/9410232 Phenomenology +hep-ph/9410235 Phenomenology +hep-ph/9410239 Phenomenology +hep-ph/9410240 Phenomenology +hep-ph/9410242 Phenomenology +hep-ph/9410243 Phenomenology +hep-ph/9410244 Phenomenology +hep-ph/9410247 Phenomenology +hep-ph/9410248 Phenomenology +hep-ph/9410254 Phenomenology +hep-ph/9410256 Phenomenology +hep-ph/9410257 Phenomenology +hep-ph/9410258 Phenomenology +hep-ph/9410261 Phenomenology +hep-ph/9410262 Phenomenology +hep-ph/9410271 Phenomenology +hep-ph/9410274 Phenomenology +hep-ph/9410277 Phenomenology +hep-ph/9410278 Phenomenology +hep-ph/9410279 Phenomenology +hep-ph/9410283 Phenomenology +hep-ph/9410289 Phenomenology +hep-ph/9410291 Phenomenology +hep-ph/9410293 Phenomenology +hep-ph/9410296 Phenomenology +hep-ph/9410302 Phenomenology +hep-ph/9410309 Phenomenology +hep-ph/9410310 Phenomenology +hep-ph/9410311 Phenomenology +hep-ph/9410318 Phenomenology +hep-ph/9410319 Phenomenology +hep-ph/9410321 Phenomenology +hep-ph/9410322 Phenomenology +hep-ph/9410324 Phenomenology +hep-ph/9410327 Phenomenology +hep-ph/9410329 Phenomenology +hep-ph/9410333 Phenomenology +hep-ph/9410338 Phenomenology +hep-ph/9410339 Phenomenology +hep-ph/9410342 Phenomenology +hep-ph/9410344 Phenomenology +hep-ph/9410347 Phenomenology +hep-ph/9410349 Phenomenology +hep-ph/9410350 Phenomenology +hep-ph/9410352 Phenomenology +hep-ph/9410356 Phenomenology +hep-ph/9410361 Phenomenology +hep-ph/9410364 Phenomenology +hep-ph/9410365 Phenomenology +hep-ph/9410368 Phenomenology +hep-ph/9410370 Phenomenology +hep-ph/9410372 Phenomenology +hep-ph/9410374 Phenomenology +hep-ph/9410377 Phenomenology +hep-ph/9410382 Phenomenology +hep-ph/9410383 Phenomenology +hep-ph/9410385 Phenomenology +hep-ph/9410386 Phenomenology +hep-ph/9410388 Phenomenology +hep-ph/9410392 Phenomenology +hep-ph/9410394 Phenomenology +hep-ph/9410395 Phenomenology +hep-ph/9410396 Phenomenology +hep-ph/9410398 Phenomenology +hep-ph/9410402 Phenomenology +hep-ph/9410404 Phenomenology +hep-ph/9410405 Phenomenology +hep-ph/9410407 Phenomenology +hep-ph/9410408 Phenomenology +hep-ph/9410409 Phenomenology +hep-ph/9410410 Phenomenology +hep-ph/9410415 Phenomenology +hep-ph/9411201 Phenomenology +hep-ph/9411202 Phenomenology +hep-ph/9411204 Phenomenology +hep-ph/9411205 Phenomenology +hep-ph/9411207 Phenomenology +hep-ph/9411208 Phenomenology +hep-ph/9411210 Phenomenology +hep-ph/9411213 Phenomenology +hep-ph/9411220 Phenomenology +hep-ph/9411224 Phenomenology +hep-ph/9411226 Phenomenology +hep-ph/9411228 Phenomenology +hep-ph/9411229 Phenomenology +hep-ph/9411230 Phenomenology +hep-ph/9411231 Phenomenology +hep-ph/9411233 Phenomenology +hep-ph/9411243 Phenomenology +hep-ph/9411244 Phenomenology +hep-ph/9411246 Phenomenology +hep-ph/9411250 Phenomenology +hep-ph/9411253 Phenomenology +hep-ph/9411254 Phenomenology +hep-ph/9411260 Phenomenology +hep-ph/9411261 Phenomenology +hep-ph/9411267 Phenomenology +hep-ph/9411269 Phenomenology +hep-ph/9411270 Phenomenology +hep-ph/9411276 Phenomenology +hep-ph/9411277 Phenomenology +hep-ph/9411278 Phenomenology +hep-ph/9411294 Phenomenology +hep-ph/9411298 Phenomenology +hep-ph/9411306 Phenomenology +hep-ph/9411314 Phenomenology +hep-ph/9411316 Phenomenology +hep-ph/9411320 Phenomenology +hep-ph/9411324 Phenomenology +hep-ph/9411330 Phenomenology +hep-ph/9411331 Phenomenology +hep-ph/9411332 Phenomenology +hep-ph/9411333 Phenomenology +hep-ph/9411334 Phenomenology +hep-ph/9411336 Phenomenology +hep-ph/9411337 Phenomenology +hep-ph/9411347 Phenomenology +hep-ph/9411348 Phenomenology +hep-ph/9411351 Phenomenology +hep-ph/9411353 Phenomenology +hep-ph/9411354 Phenomenology +hep-ph/9411355 Phenomenology +hep-ph/9411359 Phenomenology +hep-ph/9411360 Phenomenology +hep-ph/9411368 Phenomenology +hep-ph/9411370 Phenomenology +hep-ph/9411371 Phenomenology +hep-ph/9411372 Phenomenology +hep-ph/9411375 Phenomenology +hep-ph/9411377 Phenomenology +hep-ph/9411379 Phenomenology +hep-ph/9411387 Phenomenology +hep-ph/9411395 Phenomenology +hep-ph/9411405 Phenomenology +hep-ph/9411409 Phenomenology +hep-ph/9411410 Phenomenology +hep-ph/9411411 Phenomenology +hep-ph/9411412 Phenomenology +hep-ph/9411416 Phenomenology +hep-ph/9411417 Phenomenology +hep-ph/9411419 Phenomenology +hep-ph/9411421 Phenomenology +hep-ph/9411422 Phenomenology +hep-ph/9411423 Phenomenology +hep-ph/9411424 Phenomenology +hep-ph/9411428 Phenomenology +hep-ph/9411435 Phenomenology +hep-ph/9411440 Phenomenology +hep-ph/9411443 Phenomenology +hep-ph/9411445 Phenomenology +hep-ph/9412202 Phenomenology +hep-ph/9412205 Phenomenology +hep-ph/9412206 Phenomenology +hep-ph/9412207 Phenomenology +hep-ph/9412209 Phenomenology +hep-ph/9412215 Phenomenology +hep-ph/9412222 Phenomenology +hep-ph/9412224 Phenomenology +hep-ph/9412230 Phenomenology +hep-ph/9412235 Phenomenology +hep-ph/9412237 Phenomenology +hep-ph/9412240 Phenomenology +hep-ph/9412245 Phenomenology +hep-ph/9412250 Phenomenology +hep-ph/9412252 Phenomenology +hep-ph/9412256 Phenomenology +hep-ph/9412257 Phenomenology +hep-ph/9412261 Phenomenology +hep-ph/9412271 Phenomenology +hep-ph/9412272 Phenomenology +hep-ph/9412273 Phenomenology +hep-ph/9412275 Phenomenology +hep-ph/9412277 Phenomenology +hep-ph/9412281 Phenomenology +hep-ph/9412282 Phenomenology +hep-ph/9412287 Phenomenology +hep-ph/9412289 Phenomenology +hep-ph/9412291 Phenomenology +hep-ph/9412294 Phenomenology +hep-ph/9412295 Phenomenology +hep-ph/9412298 Phenomenology +hep-ph/9412301 Phenomenology +hep-ph/9412315 Phenomenology +hep-ph/9412318 Phenomenology +hep-ph/9412320 Phenomenology +hep-ph/9412326 Phenomenology +hep-ph/9412327 Phenomenology +hep-ph/9412332 Phenomenology +hep-ph/9412336 Phenomenology +hep-ph/9412337 Phenomenology +hep-ph/9412339 Phenomenology +hep-ph/9412342 Phenomenology +hep-ph/9412343 Phenomenology +hep-ph/9412345 Phenomenology +hep-ph/9412354 Phenomenology +hep-ph/9412357 Phenomenology +hep-ph/9412360 Phenomenology +hep-ph/9412365 Phenomenology +hep-ph/9412367 Phenomenology +hep-ph/9412370 Phenomenology +hep-ph/9412374 Phenomenology +hep-ph/9412380 Phenomenology +hep-ph/9412381 Phenomenology +hep-ph/9412382 Phenomenology +hep-ph/9412384 Phenomenology +hep-ph/9412385 Phenomenology +hep-ph/9412397 Phenomenology +hep-ph/9501201 Phenomenology +hep-ph/9501212 Phenomenology +hep-ph/9501221 Phenomenology +hep-ph/9501222 Phenomenology +hep-ph/9501254 Phenomenology +hep-ph/9501268 Phenomenology +hep-ph/9501284 Phenomenology +hep-ph/9501296 Phenomenology +hep-ph/9501318 Phenomenology +hep-ph/9501323 Phenomenology +hep-ph/9501324 Phenomenology +hep-ph/9501329 Phenomenology +hep-ph/9501331 Phenomenology +hep-ph/9501343 Phenomenology +hep-ph/9501350 Phenomenology +hep-ph/9501358 Phenomenology +hep-ph/9501361 Phenomenology +hep-ph/9501371 Phenomenology +hep-ph/9501382 Phenomenology +hep-ph/9501402 Phenomenology +hep-ph/9501409 Phenomenology +hep-ph/9501414 Phenomenology +hep-ph/9501417 Phenomenology +hep-ph/9502205 Phenomenology +hep-ph/9502206 Phenomenology +hep-ph/9502215 Phenomenology +hep-ph/9502222 Phenomenology +hep-ph/9502225 Phenomenology +hep-ph/9502226 Phenomenology +hep-ph/9502239 Phenomenology +hep-ph/9502245 Phenomenology +hep-ph/9502246 Phenomenology +hep-ph/9502252 Phenomenology +hep-ph/9502258 Phenomenology +hep-ph/9502271 Phenomenology +hep-ph/9502285 Phenomenology +hep-ph/9502303 Phenomenology +hep-ph/9502311 Phenomenology +hep-ph/9502317 Phenomenology +hep-ph/9502323 Phenomenology +hep-ph/9502340 Phenomenology +hep-ph/9502342 Phenomenology +hep-ph/9502380 Phenomenology +hep-ph/9502387 Phenomenology +hep-ph/9502396 Phenomenology +hep-ph/9503217 Phenomenology +hep-ph/9503231 Phenomenology +hep-ph/9503232 Phenomenology +hep-ph/9503255 Phenomenology +hep-ph/9503285 Phenomenology +hep-ph/9503290 Phenomenology +hep-ph/9503305 Phenomenology +hep-ph/9503331 Phenomenology +hep-ph/9503334 Phenomenology +hep-ph/9503337 Phenomenology +hep-ph/9503358 Phenomenology +hep-ph/9503362 Phenomenology +hep-ph/9503377 Phenomenology +hep-ph/9503382 Phenomenology +hep-ph/9503389 Phenomenology +hep-ph/9503390 Phenomenology +hep-ph/9503393 Phenomenology +hep-ph/9503395 Phenomenology +hep-ph/9503396 Phenomenology +hep-ph/9503398 Phenomenology +hep-ph/9503401 Phenomenology +hep-ph/9503402 Phenomenology +hep-ph/9503415 Phenomenology +hep-ph/9503416 Phenomenology +hep-ph/9503417 Phenomenology +hep-ph/9503428 Phenomenology +hep-ph/9503432 Phenomenology +hep-ph/9503433 Phenomenology +hep-ph/9503439 Phenomenology +hep-ph/9503440 Phenomenology +hep-ph/9503445 Phenomenology +hep-ph/9503447 Phenomenology +hep-ph/9503451 Phenomenology +hep-ph/9503452 Phenomenology +hep-ph/9503453 Phenomenology +hep-ph/9503454 Phenomenology +hep-ph/9503457 Phenomenology +hep-ph/9503459 Phenomenology +hep-ph/9503460 Phenomenology +hep-ph/9503462 Phenomenology +hep-ph/9503463 Phenomenology +hep-ph/9503465 Phenomenology +hep-ph/9503466 Phenomenology +hep-ph/9503467 Phenomenology +hep-ph/9503468 Phenomenology +hep-ph/9503470 Phenomenology +hep-ph/9503471 Phenomenology +hep-ph/9503472 Phenomenology +hep-ph/9503473 Phenomenology +hep-ph/9503475 Phenomenology +hep-ph/9503477 Phenomenology +hep-ph/9503480 Phenomenology +hep-ph/9503483 Phenomenology +hep-ph/9503485 Phenomenology +hep-ph/9503490 Phenomenology +hep-ph/9503491 Phenomenology +hep-ph/9503493 Phenomenology +hep-ph/9503494 Phenomenology +hep-ph/9504203 Phenomenology +hep-ph/9504204 Phenomenology +hep-ph/9504206 Phenomenology +hep-ph/9504208 Phenomenology +hep-ph/9504212 Phenomenology +hep-ph/9504213 Phenomenology +hep-ph/9504214 Phenomenology +hep-ph/9504215 Phenomenology +hep-ph/9504218 Phenomenology +hep-ph/9504219 Phenomenology +hep-ph/9504221 Phenomenology +hep-ph/9504225 Phenomenology +hep-ph/9504227 Phenomenology +hep-ph/9504232 Phenomenology +hep-ph/9504234 Phenomenology +hep-ph/9504238 Phenomenology +hep-ph/9504240 Phenomenology +hep-ph/9504245 Phenomenology +hep-ph/9504248 Phenomenology +hep-ph/9504252 Phenomenology +hep-ph/9504253 Phenomenology +hep-ph/9504256 Phenomenology +hep-ph/9504257 Phenomenology +hep-ph/9504259 Phenomenology +hep-ph/9504262 Phenomenology +hep-ph/9504266 Phenomenology +hep-ph/9504268 Phenomenology +hep-ph/9504272 Phenomenology +hep-ph/9504273 Phenomenology +hep-ph/9504275 Phenomenology +hep-ph/9504276 Phenomenology +hep-ph/9504277 Phenomenology +hep-ph/9504278 Phenomenology +hep-ph/9504279 Phenomenology +hep-ph/9504280 Phenomenology +hep-ph/9504281 Phenomenology +hep-ph/9504283 Phenomenology +hep-ph/9504285 Phenomenology +hep-ph/9504286 Phenomenology +hep-ph/9504291 Phenomenology +hep-ph/9504296 Phenomenology +hep-ph/9504303 Phenomenology +hep-ph/9504309 Phenomenology +hep-ph/9504312 Phenomenology +hep-ph/9504314 Phenomenology +hep-ph/9504319 Phenomenology +hep-ph/9504332 Phenomenology +hep-ph/9504335 Phenomenology +hep-ph/9504338 Phenomenology +hep-ph/9504349 Phenomenology +hep-ph/9504351 Phenomenology +hep-ph/9504352 Phenomenology +hep-ph/9504353 Phenomenology +hep-ph/9504354 Phenomenology +hep-ph/9504356 Phenomenology +hep-ph/9504359 Phenomenology +hep-ph/9504361 Phenomenology +hep-ph/9504368 Phenomenology +hep-ph/9504371 Phenomenology +hep-ph/9504379 Phenomenology +hep-ph/9504382 Phenomenology +hep-ph/9504383 Phenomenology +hep-ph/9504388 Phenomenology +hep-ph/9504389 Phenomenology +hep-ph/9504391 Phenomenology +hep-ph/9504395 Phenomenology +hep-ph/9504396 Phenomenology +hep-ph/9504401 Phenomenology +hep-ph/9504404 Phenomenology +hep-ph/9504405 Phenomenology +hep-ph/9504406 Phenomenology +hep-ph/9504408 Phenomenology +hep-ph/9504412 Phenomenology +hep-ph/9504413 Phenomenology +hep-ph/9504416 Phenomenology +hep-ph/9504417 Phenomenology +hep-ph/9504418 Phenomenology +hep-ph/9504420 Phenomenology +hep-ph/9504421 Phenomenology +hep-ph/9504422 Phenomenology +hep-ph/9504423 Phenomenology +hep-ph/9504431 Phenomenology +hep-ph/9504434 Phenomenology +hep-ph/9505202 Phenomenology +hep-ph/9505203 Phenomenology +hep-ph/9505206 Phenomenology +hep-ph/9505210 Phenomenology +hep-ph/9505211 Phenomenology +hep-ph/9505221 Phenomenology +hep-ph/9505232 Phenomenology +hep-ph/9505239 Phenomenology +hep-ph/9505241 Phenomenology +hep-ph/9505248 Phenomenology +hep-ph/9505250 Phenomenology +hep-ph/9505252 Phenomenology +hep-ph/9505255 Phenomenology +hep-ph/9505256 Phenomenology +hep-ph/9505258 Phenomenology +hep-ph/9505262 Phenomenology +hep-ph/9505266 Phenomenology +hep-ph/9505267 Phenomenology +hep-ph/9505268 Phenomenology +hep-ph/9505273 Phenomenology +hep-ph/9505275 Phenomenology +hep-ph/9505280 Phenomenology +hep-ph/9505282 Phenomenology +hep-ph/9505284 Phenomenology +hep-ph/9505285 Phenomenology +hep-ph/9505287 Phenomenology +hep-ph/9505288 Phenomenology +hep-ph/9505291 Phenomenology +hep-ph/9505292 Phenomenology +hep-ph/9505298 Phenomenology +hep-ph/9505299 Phenomenology +hep-ph/9505302 Phenomenology +hep-ph/9505303 Phenomenology +hep-ph/9505304 Phenomenology +hep-ph/9505306 Phenomenology +hep-ph/9505308 Phenomenology +hep-ph/9505311 Phenomenology +hep-ph/9505312 Phenomenology +hep-ph/9505313 Phenomenology +hep-ph/9505320 Phenomenology +hep-ph/9505324 Phenomenology +hep-ph/9505325 Phenomenology +hep-ph/9505327 Phenomenology +hep-ph/9505328 Phenomenology +hep-ph/9505330 Phenomenology +hep-ph/9505331 Phenomenology +hep-ph/9505337 Phenomenology +hep-ph/9505339 Phenomenology +hep-ph/9505341 Phenomenology +hep-ph/9505351 Phenomenology +hep-ph/9505352 Phenomenology +hep-ph/9505353 Phenomenology +hep-ph/9505354 Phenomenology +hep-ph/9505356 Phenomenology +hep-ph/9505357 Phenomenology +hep-ph/9505358 Phenomenology +hep-ph/9505359 Phenomenology +hep-ph/9505361 Phenomenology +hep-ph/9505364 Phenomenology +hep-ph/9505369 Phenomenology +hep-ph/9505372 Phenomenology +hep-ph/9505376 Phenomenology +hep-ph/9505378 Phenomenology +hep-ph/9505379 Phenomenology +hep-ph/9505383 Phenomenology +hep-ph/9505384 Phenomenology +hep-ph/9505385 Phenomenology +hep-ph/9505389 Phenomenology +hep-ph/9505392 Phenomenology +hep-ph/9505393 Phenomenology +hep-ph/9505399 Phenomenology +hep-ph/9505404 Phenomenology +hep-ph/9505407 Phenomenology +hep-ph/9505409 Phenomenology +hep-ph/9505410 Phenomenology +hep-ph/9505411 Phenomenology +hep-ph/9505418 Phenomenology +hep-ph/9505420 Phenomenology +hep-ph/9505421 Phenomenology +hep-ph/9505424 Phenomenology +hep-ph/9505426 Phenomenology +hep-ph/9505427 Phenomenology +hep-ph/9505431 Phenomenology +hep-ph/9505432 Phenomenology +hep-ph/9505433 Phenomenology +hep-ph/9505440 Phenomenology +hep-ph/9505443 Phenomenology +hep-ph/9505444 Phenomenology +hep-ph/9506201 Phenomenology +hep-ph/9506203 Phenomenology +hep-ph/9506207 Phenomenology +hep-ph/9506208 Phenomenology +hep-ph/9506215 Phenomenology +hep-ph/9506217 Phenomenology +hep-ph/9506219 Phenomenology +hep-ph/9506221 Phenomenology +hep-ph/9506227 Phenomenology +hep-ph/9506231 Phenomenology +hep-ph/9506233 Phenomenology +hep-ph/9506239 Phenomenology +hep-ph/9506242 Phenomenology +hep-ph/9506243 Phenomenology +hep-ph/9506245 Phenomenology +hep-ph/9506248 Phenomenology +hep-ph/9506254 Phenomenology +hep-ph/9506255 Phenomenology +hep-ph/9506257 Phenomenology +hep-ph/9506258 Phenomenology +hep-ph/9506260 Phenomenology +hep-ph/9506263 Phenomenology +hep-ph/9506269 Phenomenology +hep-ph/9506270 Phenomenology +hep-ph/9506271 Phenomenology +hep-ph/9506274 Phenomenology +hep-ph/9506278 Phenomenology +hep-ph/9506281 Phenomenology +hep-ph/9506282 Phenomenology +hep-ph/9506284 Phenomenology +hep-ph/9506285 Phenomenology +hep-ph/9506286 Phenomenology +hep-ph/9506287 Phenomenology +hep-ph/9506291 Phenomenology +hep-ph/9506293 Phenomenology +hep-ph/9506295 Phenomenology +hep-ph/9506298 Phenomenology +hep-ph/9506302 Phenomenology +hep-ph/9506309 Phenomenology +hep-ph/9506311 Phenomenology +hep-ph/9506314 Phenomenology +hep-ph/9506316 Phenomenology +hep-ph/9506317 Phenomenology +hep-ph/9506318 Phenomenology +hep-ph/9506324 Phenomenology +hep-ph/9506326 Phenomenology +hep-ph/9506327 Phenomenology +hep-ph/9506328 Phenomenology +hep-ph/9506329 Phenomenology +hep-ph/9506330 Phenomenology +hep-ph/9506332 Phenomenology +hep-ph/9506342 Phenomenology +hep-ph/9506345 Phenomenology +hep-ph/9506346 Phenomenology +hep-ph/9506351 Phenomenology +hep-ph/9506355 Phenomenology +hep-ph/9506358 Phenomenology +hep-ph/9506367 Phenomenology +hep-ph/9506370 Phenomenology +hep-ph/9506372 Phenomenology +hep-ph/9506378 Phenomenology +hep-ph/9506380 Phenomenology +hep-ph/9506382 Phenomenology +hep-ph/9506385 Phenomenology +hep-ph/9506386 Phenomenology +hep-ph/9506388 Phenomenology +hep-ph/9506393 Phenomenology +hep-ph/9506394 Phenomenology +hep-ph/9506398 Phenomenology +hep-ph/9506402 Phenomenology +hep-ph/9506404 Phenomenology +hep-ph/9506407 Phenomenology +hep-ph/9506411 Phenomenology +hep-ph/9506412 Phenomenology +hep-ph/9506414 Phenomenology +hep-ph/9506417 Phenomenology +hep-ph/9506420 Phenomenology +hep-ph/9506423 Phenomenology +hep-ph/9506432 Phenomenology +hep-ph/9506433 Phenomenology +hep-ph/9506437 Phenomenology +hep-ph/9506438 Phenomenology +hep-ph/9506444 Phenomenology +hep-ph/9506445 Phenomenology +hep-ph/9506449 Phenomenology +hep-ph/9506452 Phenomenology +hep-ph/9506454 Phenomenology +hep-ph/9506455 Phenomenology +hep-ph/9506456 Phenomenology +hep-ph/9506461 Phenomenology +hep-ph/9506464 Phenomenology +hep-ph/9506465 Phenomenology +hep-ph/9506466 Phenomenology +hep-ph/9506469 Phenomenology +hep-ph/9506472 Phenomenology +hep-ph/9506473 Phenomenology +hep-ph/9506476 Phenomenology +hep-ph/9506477 Phenomenology +hep-ph/9506478 Phenomenology +hep-ph/9506479 Phenomenology +hep-ph/9506480 Phenomenology +hep-ph/9507203 Phenomenology +hep-ph/9507210 Phenomenology +hep-ph/9507215 Phenomenology +hep-ph/9507216 Phenomenology +hep-ph/9507223 Phenomenology +hep-ph/9507225 Phenomenology +hep-ph/9507230 Phenomenology +hep-ph/9507231 Phenomenology +hep-ph/9507244 Phenomenology +hep-ph/9507245 Phenomenology +hep-ph/9507247 Phenomenology +hep-ph/9507249 Phenomenology +hep-ph/9507252 Phenomenology +hep-ph/9507253 Phenomenology +hep-ph/9507256 Phenomenology +hep-ph/9507258 Phenomenology +hep-ph/9507260 Phenomenology +hep-ph/9507263 Phenomenology +hep-ph/9507267 Phenomenology +hep-ph/9507268 Phenomenology +hep-ph/9507269 Phenomenology +hep-ph/9507274 Phenomenology +hep-ph/9507277 Phenomenology +hep-ph/9507278 Phenomenology +hep-ph/9507279 Phenomenology +hep-ph/9507280 Phenomenology +hep-ph/9507282 Phenomenology +hep-ph/9507283 Phenomenology +hep-ph/9507288 Phenomenology +hep-ph/9507289 Phenomenology +hep-ph/9507293 Phenomenology +hep-ph/9507294 Phenomenology +hep-ph/9507299 Phenomenology +hep-ph/9507303 Phenomenology +hep-ph/9507304 Phenomenology +hep-ph/9507305 Phenomenology +hep-ph/9507306 Phenomenology +hep-ph/9507307 Phenomenology +hep-ph/9507311 Phenomenology +hep-ph/9507314 Phenomenology +hep-ph/9507319 Phenomenology +hep-ph/9507321 Phenomenology +hep-ph/9507325 Phenomenology +hep-ph/9507327 Phenomenology +hep-ph/9507328 Phenomenology +hep-ph/9507329 Phenomenology +hep-ph/9507331 Phenomenology +hep-ph/9507334 Phenomenology +hep-ph/9507336 Phenomenology +hep-ph/9507340 Phenomenology +hep-ph/9507341 Phenomenology +hep-ph/9507342 Phenomenology +hep-ph/9507343 Phenomenology +hep-ph/9507344 Phenomenology +hep-ph/9507345 Phenomenology +hep-ph/9507347 Phenomenology +hep-ph/9507348 Phenomenology +hep-ph/9507349 Phenomenology +hep-ph/9507354 Phenomenology +hep-ph/9507357 Phenomenology +hep-ph/9507359 Phenomenology +hep-ph/9507363 Phenomenology +hep-ph/9507366 Phenomenology +hep-ph/9507368 Phenomenology +hep-ph/9507369 Phenomenology +hep-ph/9507371 Phenomenology +hep-ph/9507373 Phenomenology +hep-ph/9507377 Phenomenology +hep-ph/9507380 Phenomenology +hep-ph/9507381 Phenomenology +hep-ph/9507382 Phenomenology +hep-ph/9507393 Phenomenology +hep-ph/9507394 Phenomenology +hep-ph/9507395 Phenomenology +hep-ph/9507398 Phenomenology +hep-ph/9507399 Phenomenology +hep-ph/9507400 Phenomenology +hep-ph/9507405 Phenomenology +hep-ph/9507407 Phenomenology +hep-ph/9507409 Phenomenology +hep-ph/9507410 Phenomenology +hep-ph/9507414 Phenomenology +hep-ph/9507415 Phenomenology +hep-ph/9507416 Phenomenology +hep-ph/9507418 Phenomenology +hep-ph/9507422 Phenomenology +hep-ph/9507425 Phenomenology +hep-ph/9507428 Phenomenology +hep-ph/9507429 Phenomenology +hep-ph/9507431 Phenomenology +hep-ph/9507432 Phenomenology +hep-ph/9507436 Phenomenology +hep-ph/9507438 Phenomenology +hep-ph/9507439 Phenomenology +hep-ph/9507441 Phenomenology +hep-ph/9507442 Phenomenology +hep-ph/9507443 Phenomenology +hep-ph/9507445 Phenomenology +hep-ph/9507450 Phenomenology +hep-ph/9507451 Phenomenology +hep-ph/9507452 Phenomenology +hep-ph/9507455 Phenomenology +hep-ph/9507457 Phenomenology +hep-ph/9507459 Phenomenology +hep-ph/9507461 Phenomenology +hep-ph/9507462 Phenomenology +hep-ph/9507463 Phenomenology +hep-ph/9507466 Phenomenology +hep-ph/9507469 Phenomenology +hep-ph/9508201 Phenomenology +hep-ph/9508202 Phenomenology +hep-ph/9508204 Phenomenology +hep-ph/9508210 Phenomenology +hep-ph/9508233 Phenomenology +hep-ph/9508234 Phenomenology +hep-ph/9508241 Phenomenology +hep-ph/9508243 Phenomenology +hep-ph/9508244 Phenomenology +hep-ph/9508247 Phenomenology +hep-ph/9508251 Phenomenology +hep-ph/9508254 Phenomenology +hep-ph/9508255 Phenomenology +hep-ph/9508257 Phenomenology +hep-ph/9508261 Phenomenology +hep-ph/9508263 Phenomenology +hep-ph/9508264 Phenomenology +hep-ph/9508267 Phenomenology +hep-ph/9508268 Phenomenology +hep-ph/9508269 Phenomenology +hep-ph/9508271 Phenomenology +hep-ph/9508275 Phenomenology +hep-ph/9508285 Phenomenology +hep-ph/9508286 Phenomenology +hep-ph/9508288 Phenomenology +hep-ph/9508290 Phenomenology +hep-ph/9508300 Phenomenology +hep-ph/9508301 Phenomenology +hep-ph/9508302 Phenomenology +hep-ph/9508303 Phenomenology +hep-ph/9508306 Phenomenology +hep-ph/9508308 Phenomenology +hep-ph/9508314 Phenomenology +hep-ph/9508316 Phenomenology +hep-ph/9508317 Phenomenology +hep-ph/9508318 Phenomenology +hep-ph/9508325 Phenomenology +hep-ph/9508327 Phenomenology +hep-ph/9508336 Phenomenology +hep-ph/9508338 Phenomenology +hep-ph/9508340 Phenomenology +hep-ph/9508347 Phenomenology +hep-ph/9508350 Phenomenology +hep-ph/9508351 Phenomenology +hep-ph/9508353 Phenomenology +hep-ph/9508354 Phenomenology +hep-ph/9508356 Phenomenology +hep-ph/9508359 Phenomenology +hep-ph/9508360 Phenomenology +hep-ph/9508362 Phenomenology +hep-ph/9508366 Phenomenology +hep-ph/9508368 Phenomenology +hep-ph/9508372 Phenomenology +hep-ph/9508375 Phenomenology +hep-ph/9508377 Phenomenology +hep-ph/9508378 Phenomenology +hep-ph/9508380 Phenomenology +hep-ph/9508382 Phenomenology +hep-ph/9508383 Phenomenology +hep-ph/9508386 Phenomenology +hep-ph/9508390 Phenomenology +hep-ph/9508392 Phenomenology +hep-ph/9508393 Phenomenology +hep-ph/9508394 Phenomenology +hep-ph/9508395 Phenomenology +hep-ph/9508396 Phenomenology +hep-ph/9508397 Phenomenology +hep-ph/9508401 Phenomenology +hep-ph/9508407 Phenomenology +hep-ph/9508411 Phenomenology +hep-ph/9508414 Phenomenology +hep-ph/9509201 Phenomenology +hep-ph/9509205 Phenomenology +hep-ph/9509206 Phenomenology +hep-ph/9509211 Phenomenology +hep-ph/9509212 Phenomenology +hep-ph/9509216 Phenomenology +hep-ph/9509221 Phenomenology +hep-ph/9509222 Phenomenology +hep-ph/9509223 Phenomenology +hep-ph/9509224 Phenomenology +hep-ph/9509225 Phenomenology +hep-ph/9509226 Phenomenology +hep-ph/9509230 Phenomenology +hep-ph/9509231 Phenomenology +hep-ph/9509236 Phenomenology +hep-ph/9509237 Phenomenology +hep-ph/9509240 Phenomenology +hep-ph/9509242 Phenomenology +hep-ph/9509249 Phenomenology +hep-ph/9509252 Phenomenology +hep-ph/9509259 Phenomenology +hep-ph/9509263 Phenomenology +hep-ph/9509268 Phenomenology +hep-ph/9509269 Phenomenology +hep-ph/9509271 Phenomenology +hep-ph/9509272 Phenomenology +hep-ph/9509275 Phenomenology +hep-ph/9509278 Phenomenology +hep-ph/9509280 Phenomenology +hep-ph/9509281 Phenomenology +hep-ph/9509282 Phenomenology +hep-ph/9509297 Phenomenology +hep-ph/9509310 Phenomenology +hep-ph/9509311 Phenomenology +hep-ph/9509313 Phenomenology +hep-ph/9509315 Phenomenology +hep-ph/9509316 Phenomenology +hep-ph/9509318 Phenomenology +hep-ph/9509319 Phenomenology +hep-ph/9509320 Phenomenology +hep-ph/9509321 Phenomenology +hep-ph/9509322 Phenomenology +hep-ph/9509324 Phenomenology +hep-ph/9509332 Phenomenology +hep-ph/9509337 Phenomenology +hep-ph/9509338 Phenomenology +hep-ph/9509339 Phenomenology +hep-ph/9509341 Phenomenology +hep-ph/9509342 Phenomenology +hep-ph/9509343 Phenomenology +hep-ph/9509344 Phenomenology +hep-ph/9509346 Phenomenology +hep-ph/9509347 Phenomenology +hep-ph/9509349 Phenomenology +hep-ph/9509353 Phenomenology +hep-ph/9509355 Phenomenology +hep-ph/9509356 Phenomenology +hep-ph/9509359 Phenomenology +hep-ph/9509361 Phenomenology +hep-ph/9509365 Phenomenology +hep-ph/9509369 Phenomenology +hep-ph/9509370 Phenomenology +hep-ph/9509374 Phenomenology +hep-ph/9509379 Phenomenology +hep-ph/9509380 Phenomenology +hep-ph/9509382 Phenomenology +hep-ph/9509389 Phenomenology +hep-ph/9509393 Phenomenology +hep-ph/9509396 Phenomenology +hep-ph/9509401 Phenomenology +hep-ph/9509409 Phenomenology +hep-ph/9509413 Phenomenology +hep-ph/9509414 Phenomenology +hep-ph/9509416 Phenomenology +hep-ph/9509418 Phenomenology +hep-ph/9509421 Phenomenology +hep-ph/9509422 Phenomenology +hep-ph/9509426 Phenomenology +hep-ph/9509432 Phenomenology +hep-ph/9510201 Phenomenology +hep-ph/9510202 Phenomenology +hep-ph/9510204 Phenomenology +hep-ph/9510205 Phenomenology +hep-ph/9510207 Phenomenology +hep-ph/9510208 Phenomenology +hep-ph/9510209 Phenomenology +hep-ph/9510210 Phenomenology +hep-ph/9510211 Phenomenology +hep-ph/9510216 Phenomenology +hep-ph/9510217 Phenomenology +hep-ph/9510221 Phenomenology +hep-ph/9510227 Phenomenology +hep-ph/9510228 Phenomenology +hep-ph/9510239 Phenomenology +hep-ph/9510245 Phenomenology +hep-ph/9510248 Phenomenology +hep-ph/9510254 Phenomenology +hep-ph/9510262 Phenomenology +hep-ph/9510267 Phenomenology +hep-ph/9510271 Phenomenology +hep-ph/9510282 Phenomenology +hep-ph/9510294 Phenomenology +hep-ph/9510297 Phenomenology +hep-ph/9510300 Phenomenology +hep-ph/9510301 Phenomenology +hep-ph/9510302 Phenomenology +hep-ph/9510305 Phenomenology +hep-ph/9510309 Phenomenology +hep-ph/9510310 Phenomenology +hep-ph/9510311 Phenomenology +hep-ph/9510316 Phenomenology +hep-ph/9510322 Phenomenology +hep-ph/9510324 Phenomenology +hep-ph/9510325 Phenomenology +hep-ph/9510326 Phenomenology +hep-ph/9510332 Phenomenology +hep-ph/9510333 Phenomenology +hep-ph/9510335 Phenomenology +hep-ph/9510337 Phenomenology +hep-ph/9510342 Phenomenology +hep-ph/9510346 Phenomenology +hep-ph/9510348 Phenomenology +hep-ph/9510351 Phenomenology +hep-ph/9510353 Phenomenology +hep-ph/9510368 Phenomenology +hep-ph/9510370 Phenomenology +hep-ph/9510379 Phenomenology +hep-ph/9510381 Phenomenology +hep-ph/9510386 Phenomenology +hep-ph/9510391 Phenomenology +hep-ph/9510392 Phenomenology +hep-ph/9510393 Phenomenology +hep-ph/9510395 Phenomenology +hep-ph/9510396 Phenomenology +hep-ph/9510407 Phenomenology +hep-ph/9510426 Phenomenology +hep-ph/9510427 Phenomenology +hep-ph/9510431 Phenomenology +hep-ph/9510432 Phenomenology +hep-ph/9510434 Phenomenology +hep-ph/9510435 Phenomenology +hep-ph/9510436 Phenomenology +hep-ph/9510437 Phenomenology +hep-ph/9510439 Phenomenology +hep-ph/9510444 Phenomenology +hep-ph/9510449 Phenomenology +hep-ph/9510455 Phenomenology +hep-ph/9510461 Phenomenology +hep-ph/9511209 Phenomenology +hep-ph/9511217 Phenomenology +hep-ph/9511219 Phenomenology +hep-ph/9511220 Phenomenology +hep-ph/9511227 Phenomenology +hep-ph/9511232 Phenomenology +hep-ph/9511233 Phenomenology +hep-ph/9511239 Phenomenology +hep-ph/9511240 Phenomenology +hep-ph/9511241 Phenomenology +hep-ph/9511250 Phenomenology +hep-ph/9511255 Phenomenology +hep-ph/9511258 Phenomenology +hep-ph/9511260 Phenomenology +hep-ph/9511261 Phenomenology +hep-ph/9511262 Phenomenology +hep-ph/9511263 Phenomenology +hep-ph/9511270 Phenomenology +hep-ph/9511277 Phenomenology +hep-ph/9511280 Phenomenology +hep-ph/9511287 Phenomenology +hep-ph/9511288 Phenomenology +hep-ph/9511289 Phenomenology +hep-ph/9511290 Phenomenology +hep-ph/9511292 Phenomenology +hep-ph/9511293 Phenomenology +hep-ph/9511295 Phenomenology +hep-ph/9511298 Phenomenology +hep-ph/9511300 Phenomenology +hep-ph/9511301 Phenomenology +hep-ph/9511302 Phenomenology +hep-ph/9511309 Phenomenology +hep-ph/9511310 Phenomenology +hep-ph/9511315 Phenomenology +hep-ph/9511319 Phenomenology +hep-ph/9511324 Phenomenology +hep-ph/9511325 Phenomenology +hep-ph/9511326 Phenomenology +hep-ph/9511329 Phenomenology +hep-ph/9511338 Phenomenology +hep-ph/9511340 Phenomenology +hep-ph/9511341 Phenomenology +hep-ph/9511343 Phenomenology +hep-ph/9511347 Phenomenology +hep-ph/9511348 Phenomenology +hep-ph/9511349 Phenomenology +hep-ph/9511350 Phenomenology +hep-ph/9511351 Phenomenology +hep-ph/9511352 Phenomenology +hep-ph/9511363 Phenomenology +hep-ph/9511364 Phenomenology +hep-ph/9511367 Phenomenology +hep-ph/9511371 Phenomenology +hep-ph/9511376 Phenomenology +hep-ph/9511377 Phenomenology +hep-ph/9511384 Phenomenology +hep-ph/9511386 Phenomenology +hep-ph/9511387 Phenomenology +hep-ph/9511388 Phenomenology +hep-ph/9511389 Phenomenology +hep-ph/9511391 Phenomenology +hep-ph/9511392 Phenomenology +hep-ph/9511395 Phenomenology +hep-ph/9511396 Phenomenology +hep-ph/9511403 Phenomenology +hep-ph/9511405 Phenomenology +hep-ph/9511406 Phenomenology +hep-ph/9511414 Phenomenology +hep-ph/9511415 Phenomenology +hep-ph/9511422 Phenomenology +hep-ph/9511426 Phenomenology +hep-ph/9511429 Phenomenology +hep-ph/9511433 Phenomenology +hep-ph/9511437 Phenomenology +hep-ph/9511443 Phenomenology +hep-ph/9511448 Phenomenology +hep-ph/9511455 Phenomenology +hep-ph/9511457 Phenomenology +hep-ph/9511458 Phenomenology +hep-ph/9511460 Phenomenology +hep-ph/9511461 Phenomenology +hep-ph/9511463 Phenomenology +hep-ph/9511464 Phenomenology +hep-ph/9511465 Phenomenology +hep-ph/9511466 Phenomenology +hep-ph/9511470 Phenomenology +hep-ph/9511472 Phenomenology +hep-ph/9511474 Phenomenology +hep-ph/9512202 Phenomenology +hep-ph/9512204 Phenomenology +hep-ph/9512206 Phenomenology +hep-ph/9512207 Phenomenology +hep-ph/9512211 Phenomenology +hep-ph/9512219 Phenomenology +hep-ph/9512224 Phenomenology +hep-ph/9512227 Phenomenology +hep-ph/9512229 Phenomenology +hep-ph/9512234 Phenomenology +hep-ph/9512236 Phenomenology +hep-ph/9512241 Phenomenology +hep-ph/9512242 Phenomenology +hep-ph/9512243 Phenomenology +hep-ph/9512250 Phenomenology +hep-ph/9512252 Phenomenology +hep-ph/9512254 Phenomenology +hep-ph/9512255 Phenomenology +hep-ph/9512259 Phenomenology +hep-ph/9512261 Phenomenology +hep-ph/9512263 Phenomenology +hep-ph/9512266 Phenomenology +hep-ph/9512270 Phenomenology +hep-ph/9512271 Phenomenology +hep-ph/9512274 Phenomenology +hep-ph/9512280 Phenomenology +hep-ph/9512281 Phenomenology +hep-ph/9512283 Phenomenology +hep-ph/9512284 Phenomenology +hep-ph/9512290 Phenomenology +hep-ph/9512296 Phenomenology +hep-ph/9512298 Phenomenology +hep-ph/9512299 Phenomenology +hep-ph/9512302 Phenomenology +hep-ph/9512303 Phenomenology +hep-ph/9512307 Phenomenology +hep-ph/9512308 Phenomenology +hep-ph/9512309 Phenomenology +hep-ph/9512314 Phenomenology +hep-ph/9512316 Phenomenology +hep-ph/9512317 Phenomenology +hep-ph/9512319 Phenomenology +hep-ph/9512320 Phenomenology +hep-ph/9512323 Phenomenology +hep-ph/9512326 Phenomenology +hep-ph/9512327 Phenomenology +hep-ph/9512328 Phenomenology +hep-ph/9512330 Phenomenology +hep-ph/9512332 Phenomenology +hep-ph/9512333 Phenomenology +hep-ph/9512334 Phenomenology +hep-ph/9512336 Phenomenology +hep-ph/9512337 Phenomenology +hep-ph/9512338 Phenomenology +hep-ph/9512339 Phenomenology +hep-ph/9512343 Phenomenology +hep-ph/9512344 Phenomenology +hep-ph/9512346 Phenomenology +hep-ph/9512349 Phenomenology +hep-ph/9512353 Phenomenology +hep-ph/9512354 Phenomenology +hep-ph/9512355 Phenomenology +hep-ph/9512358 Phenomenology +hep-ph/9512361 Phenomenology +hep-ph/9512365 Phenomenology +hep-ph/9512370 Phenomenology +hep-ph/9512374 Phenomenology +hep-ph/9512375 Phenomenology +hep-ph/9512379 Phenomenology +hep-ph/9512382 Phenomenology +hep-ph/9512383 Phenomenology +hep-ph/9512384 Phenomenology +hep-ph/9512387 Phenomenology +hep-ph/9512388 Phenomenology +hep-ph/9512392 Phenomenology +hep-ph/9512397 Phenomenology +hep-ph/9512404 Phenomenology +hep-ph/9512405 Phenomenology +hep-ph/9512407 Phenomenology +hep-ph/9512410 Phenomenology +hep-ph/9512413 Phenomenology +hep-ph/9512417 Phenomenology +hep-ph/9512418 Phenomenology +hep-ph/9512423 Phenomenology +hep-ph/9512424 Phenomenology +hep-ph/9512426 Phenomenology +hep-ph/9512428 Phenomenology +hep-ph/9512434 Phenomenology +hep-ph/9512436 Phenomenology +hep-ph/9512437 Phenomenology +hep-ph/9512441 Phenomenology +hep-ph/9512442 Phenomenology +hep-ph/9601203 Phenomenology +hep-ph/9601204 Phenomenology +hep-ph/9601205 Phenomenology +hep-ph/9601209 Phenomenology +hep-ph/9601214 Phenomenology +hep-ph/9601215 Phenomenology +hep-ph/9601220 Phenomenology +hep-ph/9601223 Phenomenology +hep-ph/9601226 Phenomenology +hep-ph/9601229 Phenomenology +hep-ph/9601230 Phenomenology +hep-ph/9601234 Phenomenology +hep-ph/9601235 Phenomenology +hep-ph/9601236 Phenomenology +hep-ph/9601242 Phenomenology +hep-ph/9601243 Phenomenology +hep-ph/9601244 Phenomenology +hep-ph/9601245 Phenomenology +hep-ph/9601246 Phenomenology +hep-ph/9601247 Phenomenology +hep-ph/9601248 Phenomenology +hep-ph/9601252 Phenomenology +hep-ph/9601254 Phenomenology +hep-ph/9601259 Phenomenology +hep-ph/9601262 Phenomenology +hep-ph/9601267 Phenomenology +hep-ph/9601268 Phenomenology +hep-ph/9601270 Phenomenology +hep-ph/9601271 Phenomenology +hep-ph/9601275 Phenomenology +hep-ph/9601277 Phenomenology +hep-ph/9601279 Phenomenology +hep-ph/9601285 Phenomenology +hep-ph/9601290 Phenomenology +hep-ph/9601292 Phenomenology +hep-ph/9601294 Phenomenology +hep-ph/9601297 Phenomenology +hep-ph/9601298 Phenomenology +hep-ph/9601299 Phenomenology +hep-ph/9601305 Phenomenology +hep-ph/9601307 Phenomenology +hep-ph/9601308 Phenomenology +hep-ph/9601314 Phenomenology +hep-ph/9601320 Phenomenology +hep-ph/9601321 Phenomenology +hep-ph/9601323 Phenomenology +hep-ph/9601325 Phenomenology +hep-ph/9601328 Phenomenology +hep-ph/9601329 Phenomenology +hep-ph/9601334 Phenomenology +hep-ph/9601336 Phenomenology +hep-ph/9601337 Phenomenology +hep-ph/9601338 Phenomenology +hep-ph/9601340 Phenomenology +hep-ph/9601341 Phenomenology +hep-ph/9601346 Phenomenology +hep-ph/9601347 Phenomenology +hep-ph/9601349 Phenomenology +hep-ph/9601353 Phenomenology +hep-ph/9601356 Phenomenology +hep-ph/9601357 Phenomenology +hep-ph/9601360 Phenomenology +hep-ph/9601361 Phenomenology +hep-ph/9601362 Phenomenology +hep-ph/9601367 Phenomenology +hep-ph/9601368 Phenomenology +hep-ph/9601370 Phenomenology +hep-ph/9601374 Phenomenology +hep-ph/9601375 Phenomenology +hep-ph/9601376 Phenomenology +hep-ph/9601379 Phenomenology +hep-ph/9601380 Phenomenology +hep-ph/9601381 Phenomenology +hep-ph/9601382 Phenomenology +hep-ph/9601383 Phenomenology +hep-ph/9601385 Phenomenology +hep-ph/9601386 Phenomenology +hep-ph/9601387 Phenomenology +hep-ph/9601390 Phenomenology +hep-ph/9601392 Phenomenology +hep-ph/9602204 Phenomenology +hep-ph/9602206 Phenomenology +hep-ph/9602208 Phenomenology +hep-ph/9602210 Phenomenology +hep-ph/9602212 Phenomenology +hep-ph/9602214 Phenomenology +hep-ph/9602218 Phenomenology +hep-ph/9602225 Phenomenology +hep-ph/9602226 Phenomenology +hep-ph/9602232 Phenomenology +hep-ph/9602234 Phenomenology +hep-ph/9602241 Phenomenology +hep-ph/9602243 Phenomenology +hep-ph/9602245 Phenomenology +hep-ph/9602246 Phenomenology +hep-ph/9602253 Phenomenology +hep-ph/9602254 Phenomenology +hep-ph/9602263 Phenomenology +hep-ph/9602264 Phenomenology +hep-ph/9602265 Phenomenology +hep-ph/9602267 Phenomenology +hep-ph/9602269 Phenomenology +hep-ph/9602270 Phenomenology +hep-ph/9602274 Phenomenology +hep-ph/9602275 Phenomenology +hep-ph/9602276 Phenomenology +hep-ph/9602277 Phenomenology +hep-ph/9602278 Phenomenology +hep-ph/9602279 Phenomenology +hep-ph/9602282 Phenomenology +hep-ph/9602284 Phenomenology +hep-ph/9602287 Phenomenology +hep-ph/9602289 Phenomenology +hep-ph/9602291 Phenomenology +hep-ph/9602293 Phenomenology +hep-ph/9602295 Phenomenology +hep-ph/9602296 Phenomenology +hep-ph/9602301 Phenomenology +hep-ph/9602302 Phenomenology +hep-ph/9602305 Phenomenology +hep-ph/9602310 Phenomenology +hep-ph/9602318 Phenomenology +hep-ph/9602320 Phenomenology +hep-ph/9602322 Phenomenology +hep-ph/9602324 Phenomenology +hep-ph/9602330 Phenomenology +hep-ph/9602332 Phenomenology +hep-ph/9602334 Phenomenology +hep-ph/9602336 Phenomenology +hep-ph/9602338 Phenomenology +hep-ph/9602340 Phenomenology +hep-ph/9602341 Phenomenology +hep-ph/9602343 Phenomenology +hep-ph/9602347 Phenomenology +hep-ph/9602350 Phenomenology +hep-ph/9602353 Phenomenology +hep-ph/9602357 Phenomenology +hep-ph/9602358 Phenomenology +hep-ph/9602360 Phenomenology +hep-ph/9602361 Phenomenology +hep-ph/9602365 Phenomenology +hep-ph/9602373 Phenomenology +hep-ph/9602374 Phenomenology +hep-ph/9602377 Phenomenology +hep-ph/9602378 Phenomenology +hep-ph/9602379 Phenomenology +hep-ph/9602382 Phenomenology +hep-ph/9602383 Phenomenology +hep-ph/9602384 Phenomenology +hep-ph/9602385 Phenomenology +hep-ph/9602389 Phenomenology +hep-ph/9602391 Phenomenology +hep-ph/9602392 Phenomenology +hep-ph/9602394 Phenomenology +hep-ph/9602396 Phenomenology +hep-ph/9602400 Phenomenology +hep-ph/9602402 Phenomenology +hep-ph/9602404 Phenomenology +hep-ph/9602405 Phenomenology +hep-ph/9602406 Phenomenology +hep-ph/9602408 Phenomenology +hep-ph/9602409 Phenomenology +hep-ph/9602410 Phenomenology +hep-ph/9602411 Phenomenology +hep-ph/9602412 Phenomenology +hep-ph/9602414 Phenomenology +hep-ph/9602417 Phenomenology +hep-ph/9602418 Phenomenology +hep-ph/9602422 Phenomenology +hep-ph/9602425 Phenomenology +hep-ph/9602426 Phenomenology +hep-ph/9602435 Phenomenology +hep-ph/9602436 Phenomenology +hep-ph/9602438 Phenomenology +hep-ph/9602439 Phenomenology +hep-ph/9603203 Phenomenology +hep-ph/9603206 Phenomenology +hep-ph/9603209 Phenomenology +hep-ph/9603211 Phenomenology +hep-ph/9603216 Phenomenology +hep-ph/9603217 Phenomenology +hep-ph/9603219 Phenomenology +hep-ph/9603221 Phenomenology +hep-ph/9603222 Phenomenology +hep-ph/9603228 Phenomenology +hep-ph/9603229 Phenomenology +hep-ph/9603232 Phenomenology +hep-ph/9603233 Phenomenology +hep-ph/9603237 Phenomenology +hep-ph/9603239 Phenomenology +hep-ph/9603240 Phenomenology +hep-ph/9603244 Phenomenology +hep-ph/9603248 Phenomenology +hep-ph/9603249 Phenomenology +hep-ph/9603250 Phenomenology +hep-ph/9603257 Phenomenology +hep-ph/9603264 Phenomenology +hep-ph/9603265 Phenomenology +hep-ph/9603269 Phenomenology +hep-ph/9603270 Phenomenology +hep-ph/9603272 Phenomenology +hep-ph/9603273 Phenomenology +hep-ph/9603274 Phenomenology +hep-ph/9603276 Phenomenology +hep-ph/9603277 Phenomenology +hep-ph/9603278 Phenomenology +hep-ph/9603279 Phenomenology +hep-ph/9603281 Phenomenology +hep-ph/9603283 Phenomenology +hep-ph/9603284 Phenomenology +hep-ph/9603285 Phenomenology +hep-ph/9603287 Phenomenology +hep-ph/9603290 Phenomenology +hep-ph/9603291 Phenomenology +hep-ph/9603300 Phenomenology +hep-ph/9603303 Phenomenology +hep-ph/9603304 Phenomenology +hep-ph/9603305 Phenomenology +hep-ph/9603308 Phenomenology +hep-ph/9603310 Phenomenology +hep-ph/9603312 Phenomenology +hep-ph/9603313 Phenomenology +hep-ph/9603316 Phenomenology +hep-ph/9603317 Phenomenology +hep-ph/9603318 Phenomenology +hep-ph/9603320 Phenomenology +hep-ph/9603321 Phenomenology +hep-ph/9603324 Phenomenology +hep-ph/9603325 Phenomenology +hep-ph/9603326 Phenomenology +hep-ph/9603328 Phenomenology +hep-ph/9603330 Phenomenology +hep-ph/9603333 Phenomenology +hep-ph/9603335 Phenomenology +hep-ph/9603338 Phenomenology +hep-ph/9603340 Phenomenology +hep-ph/9603341 Phenomenology +hep-ph/9603343 Phenomenology +hep-ph/9603345 Phenomenology +hep-ph/9603346 Phenomenology +hep-ph/9603348 Phenomenology +hep-ph/9603352 Phenomenology +hep-ph/9603353 Phenomenology +hep-ph/9603354 Phenomenology +hep-ph/9603355 Phenomenology +hep-ph/9603357 Phenomenology +hep-ph/9603362 Phenomenology +hep-ph/9603363 Phenomenology +hep-ph/9603368 Phenomenology +hep-ph/9603371 Phenomenology +hep-ph/9603372 Phenomenology +hep-ph/9603374 Phenomenology +hep-ph/9603377 Phenomenology +hep-ph/9603380 Phenomenology +hep-ph/9603382 Phenomenology +hep-ph/9603384 Phenomenology +hep-ph/9603387 Phenomenology +hep-ph/9603388 Phenomenology +hep-ph/9603389 Phenomenology +hep-ph/9603396 Phenomenology +hep-ph/9603397 Phenomenology +hep-ph/9603403 Phenomenology +hep-ph/9603409 Phenomenology +hep-ph/9603411 Phenomenology +hep-ph/9603412 Phenomenology +hep-ph/9603414 Phenomenology +hep-ph/9603415 Phenomenology +hep-ph/9603416 Phenomenology +hep-ph/9603418 Phenomenology +hep-ph/9603424 Phenomenology +hep-ph/9603426 Phenomenology +hep-ph/9603428 Phenomenology +hep-ph/9603430 Phenomenology +hep-ph/9603431 Phenomenology +hep-ph/9603435 Phenomenology +hep-ph/9603444 Phenomenology +hep-ph/9603445 Phenomenology +hep-ph/9604201 Phenomenology +hep-ph/9604203 Phenomenology +hep-ph/9604207 Phenomenology +hep-ph/9604210 Phenomenology +hep-ph/9604211 Phenomenology +hep-ph/9604213 Phenomenology +hep-ph/9604214 Phenomenology +hep-ph/9604218 Phenomenology +hep-ph/9604220 Phenomenology +hep-ph/9604222 Phenomenology +hep-ph/9604223 Phenomenology +hep-ph/9604227 Phenomenology +hep-ph/9604228 Phenomenology +hep-ph/9604230 Phenomenology +hep-ph/9604231 Phenomenology +hep-ph/9604235 Phenomenology +hep-ph/9604236 Phenomenology +hep-ph/9604238 Phenomenology +hep-ph/9604239 Phenomenology +hep-ph/9604240 Phenomenology +hep-ph/9604246 Phenomenology +hep-ph/9604253 Phenomenology +hep-ph/9604256 Phenomenology +hep-ph/9604259 Phenomenology +hep-ph/9604260 Phenomenology +hep-ph/9604267 Phenomenology +hep-ph/9604275 Phenomenology +hep-ph/9604278 Phenomenology +hep-ph/9604279 Phenomenology +hep-ph/9604280 Phenomenology +hep-ph/9604283 Phenomenology +hep-ph/9604287 Phenomenology +hep-ph/9604294 Phenomenology +hep-ph/9604296 Phenomenology +hep-ph/9604297 Phenomenology +hep-ph/9604303 Phenomenology +hep-ph/9604307 Phenomenology +hep-ph/9604310 Phenomenology +hep-ph/9604312 Phenomenology +hep-ph/9604320 Phenomenology +hep-ph/9604326 Phenomenology +hep-ph/9604327 Phenomenology +hep-ph/9604329 Phenomenology +hep-ph/9604330 Phenomenology +hep-ph/9604331 Phenomenology +hep-ph/9604333 Phenomenology +hep-ph/9604335 Phenomenology +hep-ph/9604337 Phenomenology +hep-ph/9604338 Phenomenology +hep-ph/9604339 Phenomenology +hep-ph/9604346 Phenomenology +hep-ph/9604349 Phenomenology +hep-ph/9604351 Phenomenology +hep-ph/9604352 Phenomenology +hep-ph/9604353 Phenomenology +hep-ph/9604366 Phenomenology +hep-ph/9604370 Phenomenology +hep-ph/9604373 Phenomenology +hep-ph/9604376 Phenomenology +hep-ph/9604377 Phenomenology +hep-ph/9604379 Phenomenology +hep-ph/9604381 Phenomenology +hep-ph/9604382 Phenomenology +hep-ph/9604383 Phenomenology +hep-ph/9604385 Phenomenology +hep-ph/9604388 Phenomenology +hep-ph/9604390 Phenomenology +hep-ph/9604392 Phenomenology +hep-ph/9604394 Phenomenology +hep-ph/9604398 Phenomenology +hep-ph/9604399 Phenomenology +hep-ph/9604400 Phenomenology +hep-ph/9604405 Phenomenology +hep-ph/9604410 Phenomenology +hep-ph/9604416 Phenomenology +hep-ph/9604423 Phenomenology +hep-ph/9604430 Phenomenology +hep-ph/9604431 Phenomenology +hep-ph/9604434 Phenomenology +hep-ph/9604436 Phenomenology +hep-ph/9604440 Phenomenology +hep-ph/9604441 Phenomenology +hep-ph/9604444 Phenomenology +hep-ph/9604445 Phenomenology +hep-ph/9604449 Phenomenology +hep-ph/9604451 Phenomenology +hep-ph/9605202 Phenomenology +hep-ph/9605206 Phenomenology +hep-ph/9605210 Phenomenology +hep-ph/9605213 Phenomenology +hep-ph/9605216 Phenomenology +hep-ph/9605219 Phenomenology +hep-ph/9605222 Phenomenology +hep-ph/9605223 Phenomenology +hep-ph/9605228 Phenomenology +hep-ph/9605229 Phenomenology +hep-ph/9605230 Phenomenology +hep-ph/9605235 Phenomenology +hep-ph/9605237 Phenomenology +hep-ph/9605238 Phenomenology +hep-ph/9605239 Phenomenology +hep-ph/9605241 Phenomenology +hep-ph/9605244 Phenomenology +hep-ph/9605250 Phenomenology +hep-ph/9605251 Phenomenology +hep-ph/9605260 Phenomenology +hep-ph/9605267 Phenomenology +hep-ph/9605276 Phenomenology +hep-ph/9605277 Phenomenology +hep-ph/9605278 Phenomenology +hep-ph/9605285 Phenomenology +hep-ph/9605286 Phenomenology +hep-ph/9605287 Phenomenology +hep-ph/9605291 Phenomenology +hep-ph/9605295 Phenomenology +hep-ph/9605296 Phenomenology +hep-ph/9605303 Phenomenology +hep-ph/9605304 Phenomenology +hep-ph/9605308 Phenomenology +hep-ph/9605309 Phenomenology +hep-ph/9605312 Phenomenology +hep-ph/9605313 Phenomenology +hep-ph/9605314 Phenomenology +hep-ph/9605315 Phenomenology +hep-ph/9605316 Phenomenology +hep-ph/9605319 Phenomenology +hep-ph/9605321 Phenomenology +hep-ph/9605322 Phenomenology +hep-ph/9605323 Phenomenology +hep-ph/9605324 Phenomenology +hep-ph/9605325 Phenomenology +hep-ph/9605326 Phenomenology +hep-ph/9605327 Phenomenology +hep-ph/9605340 Phenomenology +hep-ph/9605346 Phenomenology +hep-ph/9605347 Phenomenology +hep-ph/9605349 Phenomenology +hep-ph/9605350 Phenomenology +hep-ph/9605353 Phenomenology +hep-ph/9605357 Phenomenology +hep-ph/9605359 Phenomenology +hep-ph/9605365 Phenomenology +hep-ph/9605371 Phenomenology +hep-ph/9605373 Phenomenology +hep-ph/9605378 Phenomenology +hep-ph/9605381 Phenomenology +hep-ph/9605382 Phenomenology +hep-ph/9605386 Phenomenology +hep-ph/9605393 Phenomenology +hep-ph/9605403 Phenomenology +hep-ph/9605405 Phenomenology +hep-ph/9605407 Phenomenology +hep-ph/9605408 Phenomenology +hep-ph/9605417 Phenomenology +hep-ph/9605418 Phenomenology +hep-ph/9605419 Phenomenology +hep-ph/9605422 Phenomenology +hep-ph/9605423 Phenomenology +hep-ph/9605429 Phenomenology +hep-ph/9605430 Phenomenology +hep-ph/9605434 Phenomenology +hep-ph/9605435 Phenomenology +hep-ph/9605439 Phenomenology +hep-ph/9605440 Phenomenology +hep-ph/9605441 Phenomenology +hep-ph/9605442 Phenomenology +hep-ph/9605443 Phenomenology +hep-ph/9605445 Phenomenology +hep-ph/9605446 Phenomenology +hep-ph/9605447 Phenomenology +hep-ph/9605449 Phenomenology +hep-ph/9605454 Phenomenology +hep-ph/9605455 Phenomenology +hep-ph/9605458 Phenomenology +hep-ph/9605461 Phenomenology +hep-ph/9605463 Phenomenology +hep-ph/9605465 Phenomenology +hep-ph/9606203 Phenomenology +hep-ph/9606207 Phenomenology +hep-ph/9606213 Phenomenology +hep-ph/9606214 Phenomenology +hep-ph/9606215 Phenomenology +hep-ph/9606216 Phenomenology +hep-ph/9606217 Phenomenology +hep-ph/9606218 Phenomenology +hep-ph/9606222 Phenomenology +hep-ph/9606229 Phenomenology +hep-ph/9606230 Phenomenology +hep-ph/9606231 Phenomenology +hep-ph/9606236 Phenomenology +hep-ph/9606237 Phenomenology +hep-ph/9606238 Phenomenology +hep-ph/9606239 Phenomenology +hep-ph/9606241 Phenomenology +hep-ph/9606246 Phenomenology +hep-ph/9606248 Phenomenology +hep-ph/9606251 Phenomenology +hep-ph/9606254 Phenomenology +hep-ph/9606257 Phenomenology +hep-ph/9606261 Phenomenology +hep-ph/9606266 Phenomenology +hep-ph/9606269 Phenomenology +hep-ph/9606274 Phenomenology +hep-ph/9606277 Phenomenology +hep-ph/9606278 Phenomenology +hep-ph/9606282 Phenomenology +hep-ph/9606284 Phenomenology +hep-ph/9606285 Phenomenology +hep-ph/9606291 Phenomenology +hep-ph/9606292 Phenomenology +hep-ph/9606299 Phenomenology +hep-ph/9606302 Phenomenology +hep-ph/9606303 Phenomenology +hep-ph/9606305 Phenomenology +hep-ph/9606307 Phenomenology +hep-ph/9606310 Phenomenology +hep-ph/9606313 Phenomenology +hep-ph/9606314 Phenomenology +hep-ph/9606319 Phenomenology +hep-ph/9606323 Phenomenology +hep-ph/9606326 Phenomenology +hep-ph/9606328 Phenomenology +hep-ph/9606337 Phenomenology +hep-ph/9606340 Phenomenology +hep-ph/9606342 Phenomenology +hep-ph/9606343 Phenomenology +hep-ph/9606344 Phenomenology +hep-ph/9606348 Phenomenology +hep-ph/9606349 Phenomenology +hep-ph/9606353 Phenomenology +hep-ph/9606356 Phenomenology +hep-ph/9606361 Phenomenology +hep-ph/9606363 Phenomenology +hep-ph/9606365 Phenomenology +hep-ph/9606368 Phenomenology +hep-ph/9606369 Phenomenology +hep-ph/9606370 Phenomenology +hep-ph/9606375 Phenomenology +hep-ph/9606377 Phenomenology +hep-ph/9606379 Phenomenology +hep-ph/9606382 Phenomenology +hep-ph/9606385 Phenomenology +hep-ph/9606387 Phenomenology +hep-ph/9606388 Phenomenology +hep-ph/9606389 Phenomenology +hep-ph/9606391 Phenomenology +hep-ph/9606392 Phenomenology +hep-ph/9606403 Phenomenology +hep-ph/9606404 Phenomenology +hep-ph/9606406 Phenomenology +hep-ph/9606409 Phenomenology +hep-ph/9606410 Phenomenology +hep-ph/9606415 Phenomenology +hep-ph/9606422 Phenomenology +hep-ph/9606423 Phenomenology +hep-ph/9606425 Phenomenology +hep-ph/9606426 Phenomenology +hep-ph/9606431 Phenomenology +hep-ph/9606435 Phenomenology +hep-ph/9606439 Phenomenology +hep-ph/9606440 Phenomenology +hep-ph/9606442 Phenomenology +hep-ph/9606444 Phenomenology +hep-ph/9606446 Phenomenology +hep-ph/9606456 Phenomenology +hep-ph/9606461 Phenomenology +hep-ph/9606462 Phenomenology +hep-ph/9606463 Phenomenology +hep-ph/9606464 Phenomenology +hep-ph/9606465 Phenomenology +hep-ph/9606466 Phenomenology +hep-ph/9606467 Phenomenology +hep-ph/9606470 Phenomenology +hep-ph/9606476 Phenomenology +hep-ph/9606477 Phenomenology +hep-ph/9607201 Phenomenology +hep-ph/9607204 Phenomenology +hep-ph/9607205 Phenomenology +hep-ph/9607206 Phenomenology +hep-ph/9607207 Phenomenology +hep-ph/9607213 Phenomenology +hep-ph/9607215 Phenomenology +hep-ph/9607219 Phenomenology +hep-ph/9607225 Phenomenology +hep-ph/9607229 Phenomenology +hep-ph/9607231 Phenomenology +hep-ph/9607233 Phenomenology +hep-ph/9607234 Phenomenology +hep-ph/9607241 Phenomenology +hep-ph/9607242 Phenomenology +hep-ph/9607244 Phenomenology +hep-ph/9607245 Phenomenology +hep-ph/9607248 Phenomenology +hep-ph/9607249 Phenomenology +hep-ph/9607250 Phenomenology +hep-ph/9607253 Phenomenology +hep-ph/9607259 Phenomenology +hep-ph/9607261 Phenomenology +hep-ph/9607265 Phenomenology +hep-ph/9607269 Phenomenology +hep-ph/9607270 Phenomenology +hep-ph/9607272 Phenomenology +hep-ph/9607275 Phenomenology +hep-ph/9607276 Phenomenology +hep-ph/9607278 Phenomenology +hep-ph/9607279 Phenomenology +hep-ph/9607280 Phenomenology +hep-ph/9607281 Phenomenology +hep-ph/9607284 Phenomenology +hep-ph/9607287 Phenomenology +hep-ph/9607293 Phenomenology +hep-ph/9607294 Phenomenology +hep-ph/9607296 Phenomenology +hep-ph/9607300 Phenomenology +hep-ph/9607309 Phenomenology +hep-ph/9607310 Phenomenology +hep-ph/9607311 Phenomenology +hep-ph/9607315 Phenomenology +hep-ph/9607326 Phenomenology +hep-ph/9607332 Phenomenology +hep-ph/9607336 Phenomenology +hep-ph/9607337 Phenomenology +hep-ph/9607342 Phenomenology +hep-ph/9607347 Phenomenology +hep-ph/9607349 Phenomenology +hep-ph/9607350 Phenomenology +hep-ph/9607353 Phenomenology +hep-ph/9607362 Phenomenology +hep-ph/9607363 Phenomenology +hep-ph/9607364 Phenomenology +hep-ph/9607366 Phenomenology +hep-ph/9607368 Phenomenology +hep-ph/9607369 Phenomenology +hep-ph/9607377 Phenomenology +hep-ph/9607382 Phenomenology +hep-ph/9607383 Phenomenology +hep-ph/9607386 Phenomenology +hep-ph/9607388 Phenomenology +hep-ph/9607389 Phenomenology +hep-ph/9607390 Phenomenology +hep-ph/9607394 Phenomenology +hep-ph/9607396 Phenomenology +hep-ph/9607400 Phenomenology +hep-ph/9607403 Phenomenology +hep-ph/9607405 Phenomenology +hep-ph/9607408 Phenomenology +hep-ph/9607409 Phenomenology +hep-ph/9607411 Phenomenology +hep-ph/9607412 Phenomenology +hep-ph/9607413 Phenomenology +hep-ph/9607417 Phenomenology +hep-ph/9607418 Phenomenology +hep-ph/9607420 Phenomenology +hep-ph/9607427 Phenomenology +hep-ph/9607428 Phenomenology +hep-ph/9607432 Phenomenology +hep-ph/9607437 Phenomenology +hep-ph/9607446 Phenomenology +hep-ph/9607448 Phenomenology +hep-ph/9607450 Phenomenology +hep-ph/9607451 Phenomenology +hep-ph/9607454 Phenomenology +hep-ph/9607457 Phenomenology +hep-ph/9607458 Phenomenology +hep-ph/9607460 Phenomenology +hep-ph/9607461 Phenomenology +hep-ph/9607462 Phenomenology +hep-ph/9607463 Phenomenology +hep-ph/9607465 Phenomenology +hep-ph/9607467 Phenomenology +hep-ph/9607470 Phenomenology +hep-ph/9607471 Phenomenology +hep-ph/9607475 Phenomenology +hep-ph/9607488 Phenomenology +hep-ph/9608204 Phenomenology +hep-ph/9608205 Phenomenology +hep-ph/9608206 Phenomenology +hep-ph/9608208 Phenomenology +hep-ph/9608211 Phenomenology +hep-ph/9608212 Phenomenology +hep-ph/9608217 Phenomenology +hep-ph/9608221 Phenomenology +hep-ph/9608223 Phenomenology +hep-ph/9608229 Phenomenology +hep-ph/9608230 Phenomenology +hep-ph/9608233 Phenomenology +hep-ph/9608235 Phenomenology +hep-ph/9608239 Phenomenology +hep-ph/9608241 Phenomenology +hep-ph/9608244 Phenomenology +hep-ph/9608246 Phenomenology +hep-ph/9608249 Phenomenology +hep-ph/9608251 Phenomenology +hep-ph/9608252 Phenomenology +hep-ph/9608254 Phenomenology +hep-ph/9608255 Phenomenology +hep-ph/9608263 Phenomenology +hep-ph/9608264 Phenomenology +hep-ph/9608268 Phenomenology +hep-ph/9608270 Phenomenology +hep-ph/9608271 Phenomenology +hep-ph/9608272 Phenomenology +hep-ph/9608273 Phenomenology +hep-ph/9608276 Phenomenology +hep-ph/9608286 Phenomenology +hep-ph/9608288 Phenomenology +hep-ph/9608289 Phenomenology +hep-ph/9608291 Phenomenology +hep-ph/9608298 Phenomenology +hep-ph/9608300 Phenomenology +hep-ph/9608301 Phenomenology +hep-ph/9608308 Phenomenology +hep-ph/9608309 Phenomenology +hep-ph/9608318 Phenomenology +hep-ph/9608320 Phenomenology +hep-ph/9608323 Phenomenology +hep-ph/9608324 Phenomenology +hep-ph/9608330 Phenomenology +hep-ph/9608331 Phenomenology +hep-ph/9608332 Phenomenology +hep-ph/9608342 Phenomenology +hep-ph/9608346 Phenomenology +hep-ph/9608347 Phenomenology +hep-ph/9608351 Phenomenology +hep-ph/9608352 Phenomenology +hep-ph/9608355 Phenomenology +hep-ph/9608357 Phenomenology +hep-ph/9608358 Phenomenology +hep-ph/9608360 Phenomenology +hep-ph/9608363 Phenomenology +hep-ph/9608366 Phenomenology +hep-ph/9608368 Phenomenology +hep-ph/9608370 Phenomenology +hep-ph/9608373 Phenomenology +hep-ph/9608374 Phenomenology +hep-ph/9608385 Phenomenology +hep-ph/9608389 Phenomenology +hep-ph/9608392 Phenomenology +hep-ph/9608394 Phenomenology +hep-ph/9608396 Phenomenology +hep-ph/9608401 Phenomenology +hep-ph/9608404 Phenomenology +hep-ph/9608407 Phenomenology +hep-ph/9608412 Phenomenology +hep-ph/9608413 Phenomenology +hep-ph/9608415 Phenomenology +hep-ph/9608416 Phenomenology +hep-ph/9608422 Phenomenology +hep-ph/9608424 Phenomenology +hep-ph/9608429 Phenomenology +hep-ph/9608433 Phenomenology +hep-ph/9608434 Phenomenology +hep-ph/9608437 Phenomenology +hep-ph/9608441 Phenomenology +hep-ph/9608448 Phenomenology +hep-ph/9608458 Phenomenology +hep-ph/9608460 Phenomenology +hep-ph/9608462 Phenomenology +hep-ph/9608466 Phenomenology +hep-ph/9608467 Phenomenology +hep-ph/9608479 Phenomenology +hep-ph/9608487 Phenomenology +hep-ph/9608490 Phenomenology +hep-ph/9609201 Phenomenology +hep-ph/9609202 Phenomenology +hep-ph/9609203 Phenomenology +hep-ph/9609205 Phenomenology +hep-ph/9609207 Phenomenology +hep-ph/9609210 Phenomenology +hep-ph/9609213 Phenomenology +hep-ph/9609218 Phenomenology +hep-ph/9609219 Phenomenology +hep-ph/9609222 Phenomenology +hep-ph/9609224 Phenomenology +hep-ph/9609226 Phenomenology +hep-ph/9609228 Phenomenology +hep-ph/9609229 Phenomenology +hep-ph/9609233 Phenomenology +hep-ph/9609234 Phenomenology +hep-ph/9609235 Phenomenology +hep-ph/9609239 Phenomenology +hep-ph/9609240 Phenomenology +hep-ph/9609241 Phenomenology +hep-ph/9609244 Phenomenology +hep-ph/9609250 Phenomenology +hep-ph/9609265 Phenomenology +hep-ph/9609266 Phenomenology +hep-ph/9609278 Phenomenology +hep-ph/9609290 Phenomenology +hep-ph/9609320 Phenomenology +hep-ph/9609321 Phenomenology +hep-ph/9609322 Phenomenology +hep-ph/9609325 Phenomenology +hep-ph/9609329 Phenomenology +hep-ph/9609333 Phenomenology +hep-ph/9609344 Phenomenology +hep-ph/9609353 Phenomenology +hep-ph/9609358 Phenomenology +hep-ph/9609364 Phenomenology +hep-ph/9609365 Phenomenology +hep-ph/9609369 Phenomenology +hep-ph/9609389 Phenomenology +hep-ph/9609391 Phenomenology +hep-ph/9609401 Phenomenology +hep-ph/9609410 Phenomenology +hep-ph/9609417 Phenomenology +hep-ph/9609421 Phenomenology +hep-ph/9609427 Phenomenology +hep-ph/9609434 Phenomenology +hep-ph/9609438 Phenomenology +hep-ph/9609442 Phenomenology +hep-ph/9609443 Phenomenology +hep-ph/9609449 Phenomenology +hep-ph/9609450 Phenomenology +hep-ph/9609462 Phenomenology +hep-ph/9609468 Phenomenology +hep-ph/9609484 Phenomenology +hep-ph/9609490 Phenomenology +hep-ph/9609491 Phenomenology +hep-ph/9609497 Phenomenology +hep-ph/9609502 Phenomenology +hep-ph/9609504 Phenomenology +hep-ph/9609506 Phenomenology +hep-ph/9609507 Phenomenology +hep-ph/9609513 Phenomenology +hep-ph/9609518 Phenomenology +hep-ph/9609525 Phenomenology +hep-ph/9609530 Phenomenology +hep-ph/9610204 Phenomenology +hep-ph/9610205 Phenomenology +hep-ph/9610209 Phenomenology +hep-ph/9610210 Phenomenology +hep-ph/9610217 Phenomenology +hep-ph/9610225 Phenomenology +hep-ph/9610228 Phenomenology +hep-ph/9610236 Phenomenology +hep-ph/9610249 Phenomenology +hep-ph/9610252 Phenomenology +hep-ph/9610253 Phenomenology +hep-ph/9610255 Phenomenology +hep-ph/9610256 Phenomenology +hep-ph/9610265 Phenomenology +hep-ph/9610268 Phenomenology +hep-ph/9610271 Phenomenology +hep-ph/9610272 Phenomenology +hep-ph/9610277 Phenomenology +hep-ph/9610281 Phenomenology +hep-ph/9610285 Phenomenology +hep-ph/9610286 Phenomenology +hep-ph/9610290 Phenomenology +hep-ph/9610292 Phenomenology +hep-ph/9610296 Phenomenology +hep-ph/9610300 Phenomenology +hep-ph/9610301 Phenomenology +hep-ph/9610302 Phenomenology +hep-ph/9610310 Phenomenology +hep-ph/9610311 Phenomenology +hep-ph/9610318 Phenomenology +hep-ph/9610322 Phenomenology +hep-ph/9610323 Phenomenology +hep-ph/9610326 Phenomenology +hep-ph/9610328 Phenomenology +hep-ph/9610329 Phenomenology +hep-ph/9610333 Phenomenology +hep-ph/9610334 Phenomenology +hep-ph/9610352 Phenomenology +hep-ph/9610354 Phenomenology +hep-ph/9610357 Phenomenology +hep-ph/9610358 Phenomenology +hep-ph/9610359 Phenomenology +hep-ph/9610360 Phenomenology +hep-ph/9610362 Phenomenology +hep-ph/9610374 Phenomenology +hep-th/9401002 Theory +hep-th/9401008 Theory +hep-th/9401012 Theory +hep-th/9401017 Theory +hep-th/9401020 Theory +hep-th/9401026 Theory +hep-th/9401027 Theory +hep-th/9401029 Theory +hep-th/9401031 Theory +hep-th/9401032 Theory +hep-th/9401038 Theory +hep-th/9401039 Theory +hep-th/9401040 Theory +hep-th/9401042 Theory +hep-th/9401044 Theory +hep-th/9401045 Theory +hep-th/9401048 Theory +hep-th/9401049 Theory +hep-th/9401051 Theory +hep-th/9401052 Theory +hep-th/9401054 Theory +hep-th/9401058 Theory +hep-th/9401061 Theory +hep-th/9401062 Theory +hep-th/9401063 Theory +hep-th/9401066 Theory +hep-th/9401074 Theory +hep-th/9401077 Theory +hep-th/9401078 Theory +hep-th/9401080 Theory +hep-th/9401082 Theory +hep-th/9401084 Theory +hep-th/9401088 Theory +hep-th/9401091 Theory +hep-th/9401092 Theory +hep-th/9401094 Theory +hep-th/9401095 Theory +hep-th/9401096 Theory +hep-th/9401100 Theory +hep-th/9401103 Theory +hep-th/9401104 Theory +hep-th/9401105 Theory +hep-th/9401106 Theory +hep-th/9401107 Theory +hep-th/9401108 Theory +hep-th/9401109 Theory +hep-th/9401110 Theory +hep-th/9401112 Theory +hep-th/9401116 Theory +hep-th/9401117 Theory +hep-th/9401118 Theory +hep-th/9401120 Theory +hep-th/9401123 Theory +hep-th/9401126 Theory +hep-th/9401128 Theory +hep-th/9401135 Theory +hep-th/9401136 Theory +hep-th/9401143 Theory +hep-th/9401144 Theory +hep-th/9401146 Theory +hep-th/9401149 Theory +hep-th/9401153 Theory +hep-th/9401156 Theory +hep-th/9401160 Theory +hep-th/9401166 Theory +hep-th/9401167 Theory +hep-th/9401168 Theory +hep-th/9402001 Theory +hep-th/9402005 Theory +hep-th/9402006 Theory +hep-th/9402007 Theory +hep-th/9402008 Theory +hep-th/9402010 Theory +hep-th/9402011 Theory +hep-th/9402012 Theory +hep-th/9402014 Theory +hep-th/9402015 Theory +hep-th/9402016 Theory +hep-th/9402017 Theory +hep-th/9402021 Theory +hep-th/9402022 Theory +hep-th/9402024 Theory +hep-th/9402027 Theory +hep-th/9402029 Theory +hep-th/9402031 Theory +hep-th/9402033 Theory +hep-th/9402034 Theory +hep-th/9402035 Theory +hep-th/9402037 Theory +hep-th/9402038 Theory +hep-th/9402040 Theory +hep-th/9402042 Theory +hep-th/9402045 Theory +hep-th/9402046 Theory +hep-th/9402047 Theory +hep-th/9402048 Theory +hep-th/9402049 Theory +hep-th/9402050 Theory +hep-th/9402051 Theory +hep-th/9402052 Theory +hep-th/9402055 Theory +hep-th/9402056 Theory +hep-th/9402061 Theory +hep-th/9402062 Theory +hep-th/9402063 Theory +hep-th/9402067 Theory +hep-th/9402069 Theory +hep-th/9402073 Theory +hep-th/9402074 Theory +hep-th/9402075 Theory +hep-th/9402076 Theory +hep-th/9402077 Theory +hep-th/9402078 Theory +hep-th/9402084 Theory +hep-th/9402091 Theory +hep-th/9402092 Theory +hep-th/9402094 Theory +hep-th/9402097 Theory +hep-th/9402101 Theory +hep-th/9402107 Theory +hep-th/9402108 Theory +hep-th/9402110 Theory +hep-th/9402112 Theory +hep-th/9402113 Theory +hep-th/9402114 Theory +hep-th/9402117 Theory +hep-th/9402118 Theory +hep-th/9402122 Theory +hep-th/9402125 Theory +hep-th/9402127 Theory +hep-th/9402128 Theory +hep-th/9402129 Theory +hep-th/9402130 Theory +hep-th/9402131 Theory +hep-th/9402132 Theory +hep-th/9402138 Theory +hep-th/9402139 Theory +hep-th/9402141 Theory +hep-th/9402145 Theory +hep-th/9402147 Theory +hep-th/9402148 Theory +hep-th/9402150 Theory +hep-th/9402155 Theory +hep-th/9403001 Theory +hep-th/9403008 Theory +hep-th/9403012 Theory +hep-th/9403016 Theory +hep-th/9403017 Theory +hep-th/9403018 Theory +hep-th/9403019 Theory +hep-th/9403020 Theory +hep-th/9403021 Theory +hep-th/9403022 Theory +hep-th/9403023 Theory +hep-th/9403024 Theory +hep-th/9403026 Theory +hep-th/9403027 Theory +hep-th/9403030 Theory +hep-th/9403032 Theory +hep-th/9403036 Theory +hep-th/9403038 Theory +hep-th/9403040 Theory +hep-th/9403044 Theory +hep-th/9403045 Theory +hep-th/9403049 Theory +hep-th/9403050 Theory +hep-th/9403051 Theory +hep-th/9403052 Theory +hep-th/9403053 Theory +hep-th/9403056 Theory +hep-th/9403058 Theory +hep-th/9403060 Theory +hep-th/9403063 Theory +hep-th/9403066 Theory +hep-th/9403067 Theory +hep-th/9403074 Theory +hep-th/9403075 Theory +hep-th/9403076 Theory +hep-th/9403077 Theory +hep-th/9403080 Theory +hep-th/9403082 Theory +hep-th/9403086 Theory +hep-th/9403088 Theory +hep-th/9403089 Theory +hep-th/9403091 Theory +hep-th/9403093 Theory +hep-th/9403094 Theory +hep-th/9403096 Theory +hep-th/9403099 Theory +hep-th/9403100 Theory +hep-th/9403102 Theory +hep-th/9403103 Theory +hep-th/9403104 Theory +hep-th/9403105 Theory +hep-th/9403108 Theory +hep-th/9403110 Theory +hep-th/9403111 Theory +hep-th/9403112 Theory +hep-th/9403115 Theory +hep-th/9403116 Theory +hep-th/9403117 Theory +hep-th/9403120 Theory +hep-th/9403124 Theory +hep-th/9403125 Theory +hep-th/9403126 Theory +hep-th/9403127 Theory +hep-th/9403130 Theory +hep-th/9403136 Theory +hep-th/9403138 Theory +hep-th/9403140 Theory +hep-th/9403141 Theory +hep-th/9403144 Theory +hep-th/9403146 Theory +hep-th/9403147 Theory +hep-th/9403150 Theory +hep-th/9403153 Theory +hep-th/9403155 Theory +hep-th/9403156 Theory +hep-th/9403158 Theory +hep-th/9403162 Theory +hep-th/9403163 Theory +hep-th/9403164 Theory +hep-th/9403171 Theory +hep-th/9403173 Theory +hep-th/9403175 Theory +hep-th/9403176 Theory +hep-th/9403177 Theory +hep-th/9403185 Theory +hep-th/9403188 Theory +hep-th/9403190 Theory +hep-th/9403191 Theory +hep-th/9403193 Theory +hep-th/9403194 Theory +hep-th/9403197 Theory +hep-th/9404001 Theory +hep-th/9404003 Theory +hep-th/9404004 Theory +hep-th/9404005 Theory +hep-th/9404007 Theory +hep-th/9404012 Theory +hep-th/9404016 Theory +hep-th/9404024 Theory +hep-th/9404027 Theory +hep-th/9404028 Theory +hep-th/9404038 Theory +hep-th/9404040 Theory +hep-th/9404041 Theory +hep-th/9404042 Theory +hep-th/9404044 Theory +hep-th/9404045 Theory +hep-th/9404048 Theory +hep-th/9404051 Theory +hep-th/9404052 Theory +hep-th/9404055 Theory +hep-th/9404056 Theory +hep-th/9404058 Theory +hep-th/9404059 Theory +hep-th/9404060 Theory +hep-th/9404065 Theory +hep-th/9404067 Theory +hep-th/9404068 Theory +hep-th/9404071 Theory +hep-th/9404077 Theory +hep-th/9404078 Theory +hep-th/9404079 Theory +hep-th/9404085 Theory +hep-th/9404087 Theory +hep-th/9404088 Theory +hep-th/9404092 Theory +hep-th/9404093 Theory +hep-th/9404094 Theory +hep-th/9404095 Theory +hep-th/9404098 Theory +hep-th/9404099 Theory +hep-th/9404105 Theory +hep-th/9404106 Theory +hep-th/9404108 Theory +hep-th/9404109 Theory +hep-th/9404112 Theory +hep-th/9404113 Theory +hep-th/9404115 Theory +hep-th/9404119 Theory +hep-th/9404120 Theory +hep-th/9404121 Theory +hep-th/9404123 Theory +hep-th/9404126 Theory +hep-th/9404131 Theory +hep-th/9404132 Theory +hep-th/9404134 Theory +hep-th/9404138 Theory +hep-th/9404140 Theory +hep-th/9404141 Theory +hep-th/9404143 Theory +hep-th/9404146 Theory +hep-th/9404147 Theory +hep-th/9404149 Theory +hep-th/9404150 Theory +hep-th/9404154 Theory +hep-th/9404158 Theory +hep-th/9404159 Theory +hep-th/9404161 Theory +hep-th/9404165 Theory +hep-th/9404166 Theory +hep-th/9404167 Theory +hep-th/9404172 Theory +hep-th/9404173 Theory +hep-th/9404174 Theory +hep-th/9404177 Theory +hep-th/9404179 Theory +hep-th/9404182 Theory +hep-th/9404186 Theory +hep-th/9404187 Theory +hep-th/9404190 Theory +hep-th/9404193 Theory +hep-th/9405001 Theory +hep-th/9405003 Theory +hep-th/9405004 Theory +hep-th/9405005 Theory +hep-th/9405008 Theory +hep-th/9405009 Theory +hep-th/9405010 Theory +hep-th/9405011 Theory +hep-th/9405014 Theory +hep-th/9405015 Theory +hep-th/9405016 Theory +hep-th/9405017 Theory +hep-th/9405018 Theory +hep-th/9405020 Theory +hep-th/9405023 Theory +hep-th/9405026 Theory +hep-th/9405030 Theory +hep-th/9405032 Theory +hep-th/9405033 Theory +hep-th/9405038 Theory +hep-th/9405042 Theory +hep-th/9405043 Theory +hep-th/9405047 Theory +hep-th/9405052 Theory +hep-th/9405053 Theory +hep-th/9405054 Theory +hep-th/9405057 Theory +hep-th/9405062 Theory +hep-th/9405064 Theory +hep-th/9405067 Theory +hep-th/9405068 Theory +hep-th/9405071 Theory +hep-th/9405072 Theory +hep-th/9405073 Theory +hep-th/9405076 Theory +hep-th/9405077 Theory +hep-th/9405083 Theory +hep-th/9405087 Theory +hep-th/9405089 Theory +hep-th/9405096 Theory +hep-th/9405097 Theory +hep-th/9405104 Theory +hep-th/9405107 Theory +hep-th/9405108 Theory +hep-th/9405112 Theory +hep-th/9405115 Theory +hep-th/9405116 Theory +hep-th/9405118 Theory +hep-th/9405119 Theory +hep-th/9405121 Theory +hep-th/9405123 Theory +hep-th/9405125 Theory +hep-th/9405126 Theory +hep-th/9405127 Theory +hep-th/9405131 Theory +hep-th/9405132 Theory +hep-th/9405135 Theory +hep-th/9405136 Theory +hep-th/9405138 Theory +hep-th/9405141 Theory +hep-th/9405143 Theory +hep-th/9405144 Theory +hep-th/9405146 Theory +hep-th/9405148 Theory +hep-th/9405150 Theory +hep-th/9405151 Theory +hep-th/9405152 Theory +hep-th/9405153 Theory +hep-th/9405154 Theory +hep-th/9405155 Theory +hep-th/9405156 Theory +hep-th/9405157 Theory +hep-th/9405158 Theory +hep-th/9405159 Theory +hep-th/9405160 Theory +hep-th/9405164 Theory +hep-th/9405166 Theory +hep-th/9405167 Theory +hep-th/9405170 Theory +hep-th/9405173 Theory +hep-th/9405174 Theory +hep-th/9405175 Theory +hep-th/9405180 Theory +hep-th/9405183 Theory +hep-th/9405185 Theory +hep-th/9405190 Theory +hep-th/9405193 Theory +hep-th/9405197 Theory +hep-th/9405201 Theory +hep-th/9406003 Theory +hep-th/9406004 Theory +hep-th/9406005 Theory +hep-th/9406007 Theory +hep-th/9406009 Theory +hep-th/9406010 Theory +hep-th/9406011 Theory +hep-th/9406013 Theory +hep-th/9406020 Theory +hep-th/9406021 Theory +hep-th/9406022 Theory +hep-th/9406024 Theory +hep-th/9406028 Theory +hep-th/9406029 Theory +hep-th/9406032 Theory +hep-th/9406033 Theory +hep-th/9406034 Theory +hep-th/9406036 Theory +hep-th/9406039 Theory +hep-th/9406040 Theory +hep-th/9406042 Theory +hep-th/9406043 Theory +hep-th/9406044 Theory +hep-th/9406046 Theory +hep-th/9406047 Theory +hep-th/9406048 Theory +hep-th/9406052 Theory +hep-th/9406055 Theory +hep-th/9406057 Theory +hep-th/9406058 Theory +hep-th/9406062 Theory +hep-th/9406063 Theory +hep-th/9406064 Theory +hep-th/9406066 Theory +hep-th/9406070 Theory +hep-th/9406073 Theory +hep-th/9406077 Theory +hep-th/9406080 Theory +hep-th/9406081 Theory +hep-th/9406082 Theory +hep-th/9406084 Theory +hep-th/9406086 Theory +hep-th/9406087 Theory +hep-th/9406092 Theory +hep-th/9406094 Theory +hep-th/9406098 Theory +hep-th/9406100 Theory +hep-th/9406101 Theory +hep-th/9406103 Theory +hep-th/9406105 Theory +hep-th/9406106 Theory +hep-th/9406111 Theory +hep-th/9406112 Theory +hep-th/9406114 Theory +hep-th/9406115 Theory +hep-th/9406116 Theory +hep-th/9406117 Theory +hep-th/9406123 Theory +hep-th/9406124 Theory +hep-th/9406125 Theory +hep-th/9406129 Theory +hep-th/9406131 Theory +hep-th/9406133 Theory +hep-th/9406138 Theory +hep-th/9406139 Theory +hep-th/9406143 Theory +hep-th/9406146 Theory +hep-th/9406147 Theory +hep-th/9406148 Theory +hep-th/9406150 Theory +hep-th/9406152 Theory +hep-th/9406153 Theory +hep-th/9406155 Theory +hep-th/9406156 Theory +hep-th/9406157 Theory +hep-th/9406160 Theory +hep-th/9406161 Theory +hep-th/9406163 Theory +hep-th/9406167 Theory +hep-th/9406170 Theory +hep-th/9406179 Theory +hep-th/9406180 Theory +hep-th/9406182 Theory +hep-th/9406184 Theory +hep-th/9406192 Theory +hep-th/9406195 Theory +hep-th/9406198 Theory +hep-th/9406199 Theory +hep-th/9406202 Theory +hep-th/9406203 Theory +hep-th/9406207 Theory +hep-th/9406212 Theory +hep-th/9406213 Theory +hep-th/9406214 Theory +hep-th/9406216 Theory +hep-th/9407002 Theory +hep-th/9407003 Theory +hep-th/9407006 Theory +hep-th/9407009 Theory +hep-th/9407010 Theory +hep-th/9407014 Theory +hep-th/9407016 Theory +hep-th/9407017 Theory +hep-th/9407020 Theory +hep-th/9407022 Theory +hep-th/9407024 Theory +hep-th/9407028 Theory +hep-th/9407032 Theory +hep-th/9407038 Theory +hep-th/9407039 Theory +hep-th/9407041 Theory +hep-th/9407042 Theory +hep-th/9407043 Theory +hep-th/9407045 Theory +hep-th/9407052 Theory +hep-th/9407054 Theory +hep-th/9407055 Theory +hep-th/9407058 Theory +hep-th/9407059 Theory +hep-th/9407060 Theory +hep-th/9407069 Theory +hep-th/9407071 Theory +hep-th/9407074 Theory +hep-th/9407075 Theory +hep-th/9407076 Theory +hep-th/9407081 Theory +hep-th/9407083 Theory +hep-th/9407085 Theory +hep-th/9407086 Theory +hep-th/9407088 Theory +hep-th/9407089 Theory +hep-th/9407090 Theory +hep-th/9407091 Theory +hep-th/9407092 Theory +hep-th/9407098 Theory +hep-th/9407105 Theory +hep-th/9407112 Theory +hep-th/9407113 Theory +hep-th/9407114 Theory +hep-th/9407119 Theory +hep-th/9407121 Theory +hep-th/9407122 Theory +hep-th/9407123 Theory +hep-th/9407125 Theory +hep-th/9407129 Theory +hep-th/9407131 Theory +hep-th/9407133 Theory +hep-th/9407135 Theory +hep-th/9407137 Theory +hep-th/9407141 Theory +hep-th/9407142 Theory +hep-th/9407143 Theory +hep-th/9407144 Theory +hep-th/9407145 Theory +hep-th/9407147 Theory +hep-th/9407150 Theory +hep-th/9407162 Theory +hep-th/9407163 Theory +hep-th/9407165 Theory +hep-th/9407166 Theory +hep-th/9407168 Theory +hep-th/9407173 Theory +hep-th/9407177 Theory +hep-th/9407182 Theory +hep-th/9407186 Theory +hep-th/9407190 Theory +hep-th/9407191 Theory +hep-th/9407193 Theory +hep-th/9407196 Theory +hep-th/9407198 Theory +hep-th/9408001 Theory +hep-th/9408002 Theory +hep-th/9408006 Theory +hep-th/9408009 Theory +hep-th/9408010 Theory +hep-th/9408011 Theory +hep-th/9408014 Theory +hep-th/9408019 Theory +hep-th/9408022 Theory +hep-th/9408027 Theory +hep-th/9408029 Theory +hep-th/9408033 Theory +hep-th/9408035 Theory +hep-th/9408036 Theory +hep-th/9408038 Theory +hep-th/9408042 Theory +hep-th/9408043 Theory +hep-th/9408045 Theory +hep-th/9408046 Theory +hep-th/9408052 Theory +hep-th/9408056 Theory +hep-th/9408057 Theory +hep-th/9408060 Theory +hep-th/9408061 Theory +hep-th/9408063 Theory +hep-th/9408066 Theory +hep-th/9408067 Theory +hep-th/9408070 Theory +hep-th/9408071 Theory +hep-th/9408072 Theory +hep-th/9408076 Theory +hep-th/9408081 Theory +hep-th/9408082 Theory +hep-th/9408084 Theory +hep-th/9408085 Theory +hep-th/9408091 Theory +hep-th/9408092 Theory +hep-th/9408096 Theory +hep-th/9408098 Theory +hep-th/9408100 Theory +hep-th/9408103 Theory +hep-th/9408104 Theory +hep-th/9408107 Theory +hep-th/9408110 Theory +hep-th/9408114 Theory +hep-th/9408115 Theory +hep-th/9408118 Theory +hep-th/9408124 Theory +hep-th/9408125 Theory +hep-th/9408126 Theory +hep-th/9408128 Theory +hep-th/9408133 Theory +hep-th/9408135 Theory +hep-th/9408139 Theory +hep-th/9408144 Theory +hep-th/9408145 Theory +hep-th/9408149 Theory +hep-th/9408156 Theory +hep-th/9408160 Theory +hep-th/9408161 Theory +hep-th/9408163 Theory +hep-th/9408164 Theory +hep-th/9408167 Theory +hep-th/9408168 Theory +hep-th/9408169 Theory +hep-th/9408173 Theory +hep-th/9408174 Theory +hep-th/9408177 Theory +hep-th/9409002 Theory +hep-th/9409003 Theory +hep-th/9409004 Theory +hep-th/9409008 Theory +hep-th/9409011 Theory +hep-th/9409019 Theory +hep-th/9409027 Theory +hep-th/9409031 Theory +hep-th/9409035 Theory +hep-th/9409037 Theory +hep-th/9409038 Theory +hep-th/9409042 Theory +hep-th/9409046 Theory +hep-th/9409047 Theory +hep-th/9409048 Theory +hep-th/9409054 Theory +hep-th/9409056 Theory +hep-th/9409058 Theory +hep-th/9409062 Theory +hep-th/9409064 Theory +hep-th/9409066 Theory +hep-th/9409069 Theory +hep-th/9409072 Theory +hep-th/9409073 Theory +hep-th/9409076 Theory +hep-th/9409080 Theory +hep-th/9409083 Theory +hep-th/9409084 Theory +hep-th/9409085 Theory +hep-th/9409087 Theory +hep-th/9409090 Theory +hep-th/9409091 Theory +hep-th/9409092 Theory +hep-th/9409094 Theory +hep-th/9409097 Theory +hep-th/9409098 Theory +hep-th/9409100 Theory +hep-th/9409102 Theory +hep-th/9409105 Theory +hep-th/9409107 Theory +hep-th/9409108 Theory +hep-th/9409110 Theory +hep-th/9409112 Theory +hep-th/9409123 Theory +hep-th/9409128 Theory +hep-th/9409132 Theory +hep-th/9409135 Theory +hep-th/9409138 Theory +hep-th/9409139 Theory +hep-th/9409141 Theory +hep-th/9409142 Theory +hep-th/9409144 Theory +hep-th/9409145 Theory +hep-th/9409148 Theory +hep-th/9409153 Theory +hep-th/9409155 Theory +hep-th/9409158 Theory +hep-th/9409160 Theory +hep-th/9409163 Theory +hep-th/9409164 Theory +hep-th/9409166 Theory +hep-th/9409170 Theory +hep-th/9409172 Theory +hep-th/9409181 Theory +hep-th/9409182 Theory +hep-th/9409183 Theory +hep-th/9409186 Theory +hep-th/9409197 Theory +hep-th/9410001 Theory +hep-th/9410004 Theory +hep-th/9410010 Theory +hep-th/9410012 Theory +hep-th/9410013 Theory +hep-th/9410015 Theory +hep-th/9410018 Theory +hep-th/9410026 Theory +hep-th/9410031 Theory +hep-th/9410033 Theory +hep-th/9410034 Theory +hep-th/9410035 Theory +hep-th/9410036 Theory +hep-th/9410039 Theory +hep-th/9410045 Theory +hep-th/9410047 Theory +hep-th/9410048 Theory +hep-th/9410049 Theory +hep-th/9410054 Theory +hep-th/9410057 Theory +hep-th/9410064 Theory +hep-th/9410067 Theory +hep-th/9410068 Theory +hep-th/9410070 Theory +hep-th/9410072 Theory +hep-th/9410080 Theory +hep-th/9410081 Theory +hep-th/9410083 Theory +hep-th/9410084 Theory +hep-th/9410085 Theory +hep-th/9410087 Theory +hep-th/9410088 Theory +hep-th/9410089 Theory +hep-th/9410091 Theory +hep-th/9410094 Theory +hep-th/9410096 Theory +hep-th/9410098 Theory +hep-th/9410100 Theory +hep-th/9410104 Theory +hep-th/9410110 Theory +hep-th/9410114 Theory +hep-th/9410116 Theory +hep-th/9410121 Theory +hep-th/9410123 Theory +hep-th/9410125 Theory +hep-th/9410126 Theory +hep-th/9410130 Theory +hep-th/9410132 Theory +hep-th/9410133 Theory +hep-th/9410138 Theory +hep-th/9410141 Theory +hep-th/9410143 Theory +hep-th/9410144 Theory +hep-th/9410145 Theory +hep-th/9410149 Theory +hep-th/9410150 Theory +hep-th/9410156 Theory +hep-th/9410161 Theory +hep-th/9410163 Theory +hep-th/9410166 Theory +hep-th/9410168 Theory +hep-th/9410170 Theory +hep-th/9410173 Theory +hep-th/9410179 Theory +hep-th/9410182 Theory +hep-th/9410184 Theory +hep-th/9410186 Theory +hep-th/9410196 Theory +hep-th/9410199 Theory +hep-th/9410200 Theory +hep-th/9410205 Theory +hep-th/9410211 Theory +hep-th/9410212 Theory +hep-th/9410213 Theory +hep-th/9410214 Theory +hep-th/9410216 Theory +hep-th/9410218 Theory +hep-th/9410220 Theory +hep-th/9410223 Theory +hep-th/9410224 Theory +hep-th/9410226 Theory +hep-th/9410231 Theory +hep-th/9411001 Theory +hep-th/9411003 Theory +hep-th/9411004 Theory +hep-th/9411005 Theory +hep-th/9411009 Theory +hep-th/9411013 Theory +hep-th/9411014 Theory +hep-th/9411015 Theory +hep-th/9411016 Theory +hep-th/9411021 Theory +hep-th/9411025 Theory +hep-th/9411026 Theory +hep-th/9411029 Theory +hep-th/9411030 Theory +hep-th/9411031 Theory +hep-th/9411032 Theory +hep-th/9411034 Theory +hep-th/9411036 Theory +hep-th/9411040 Theory +hep-th/9411046 Theory +hep-th/9411047 Theory +hep-th/9411048 Theory +hep-th/9411049 Theory +hep-th/9411052 Theory +hep-th/9411053 Theory +hep-th/9411054 Theory +hep-th/9411057 Theory +hep-th/9411061 Theory +hep-th/9411062 Theory +hep-th/9411065 Theory +hep-th/9411066 Theory +hep-th/9411069 Theory +hep-th/9411075 Theory +hep-th/9411080 Theory +hep-th/9411084 Theory +hep-th/9411087 Theory +hep-th/9411092 Theory +hep-th/9411098 Theory +hep-th/9411100 Theory +hep-th/9411105 Theory +hep-th/9411106 Theory +hep-th/9411108 Theory +hep-th/9411109 Theory +hep-th/9411112 Theory +hep-th/9411115 Theory +hep-th/9411116 Theory +hep-th/9411119 Theory +hep-th/9411121 Theory +hep-th/9411122 Theory +hep-th/9411124 Theory +hep-th/9411125 Theory +hep-th/9411128 Theory +hep-th/9411130 Theory +hep-th/9411135 Theory +hep-th/9411137 Theory +hep-th/9411138 Theory +hep-th/9411141 Theory +hep-th/9411142 Theory +hep-th/9411143 Theory +hep-th/9411147 Theory +hep-th/9411150 Theory +hep-th/9411152 Theory +hep-th/9411153 Theory +hep-th/9411154 Theory +hep-th/9411155 Theory +hep-th/9411156 Theory +hep-th/9411159 Theory +hep-th/9411164 Theory +hep-th/9411168 Theory +hep-th/9411175 Theory +hep-th/9411176 Theory +hep-th/9411190 Theory +hep-th/9411191 Theory +hep-th/9411194 Theory +hep-th/9411196 Theory +hep-th/9411199 Theory +hep-th/9411200 Theory +hep-th/9411201 Theory +hep-th/9411202 Theory +hep-th/9411203 Theory +hep-th/9411204 Theory +hep-th/9411205 Theory +hep-th/9411207 Theory +hep-th/9411214 Theory +hep-th/9411228 Theory +hep-th/9411229 Theory +hep-th/9411231 Theory +hep-th/9411232 Theory +hep-th/9411234 Theory +hep-th/9411235 Theory +hep-th/9411237 Theory +hep-th/9411241 Theory +hep-th/9411242 Theory +hep-th/9411243 Theory +hep-th/9412001 Theory +hep-th/9412002 Theory +hep-th/9412004 Theory +hep-th/9412005 Theory +hep-th/9412006 Theory +hep-th/9412007 Theory +hep-th/9412008 Theory +hep-th/9412011 Theory +hep-th/9412012 Theory +hep-th/9412014 Theory +hep-th/9412015 Theory +hep-th/9412017 Theory +hep-th/9412018 Theory +hep-th/9412020 Theory +hep-th/9412022 Theory +hep-th/9412029 Theory +hep-th/9412030 Theory +hep-th/9412032 Theory +hep-th/9412033 Theory +hep-th/9412035 Theory +hep-th/9412039 Theory +hep-th/9412042 Theory +hep-th/9412043 Theory +hep-th/9412050 Theory +hep-th/9412055 Theory +hep-th/9412056 Theory +hep-th/9412057 Theory +hep-th/9412058 Theory +hep-th/9412062 Theory +hep-th/9412064 Theory +hep-th/9412068 Theory +hep-th/9412069 Theory +hep-th/9412072 Theory +hep-th/9412073 Theory +hep-th/9412075 Theory +hep-th/9412078 Theory +hep-th/9412083 Theory +hep-th/9412084 Theory +hep-th/9412087 Theory +hep-th/9412089 Theory +hep-th/9412091 Theory +hep-th/9412095 Theory +hep-th/9412100 Theory +hep-th/9412104 Theory +hep-th/9412108 Theory +hep-th/9412113 Theory +hep-th/9412117 Theory +hep-th/9412119 Theory +hep-th/9412120 Theory +hep-th/9412124 Theory +hep-th/9412125 Theory +hep-th/9412126 Theory +hep-th/9412127 Theory +hep-th/9412129 Theory +hep-th/9412131 Theory +hep-th/9412136 Theory +hep-th/9412140 Theory +hep-th/9412142 Theory +hep-th/9412145 Theory +hep-th/9412146 Theory +hep-th/9412147 Theory +hep-th/9412152 Theory +hep-th/9412163 Theory +hep-th/9412164 Theory +hep-th/9412165 Theory +hep-th/9412166 Theory +hep-th/9412169 Theory +hep-th/9412171 Theory +hep-th/9412179 Theory +hep-th/9412180 Theory +hep-th/9412181 Theory +hep-th/9412182 Theory +hep-th/9412187 Theory +hep-th/9412188 Theory +hep-th/9412195 Theory +hep-th/9412197 Theory +hep-th/9412198 Theory +hep-th/9412203 Theory +hep-th/9412206 Theory +hep-th/9412208 Theory +hep-th/9412212 Theory +hep-th/9412215 Theory +hep-th/9412221 Theory +hep-th/9412228 Theory +hep-th/9412230 Theory +hep-th/9412233 Theory +hep-th/9412235 Theory +hep-th/9501002 Theory +hep-th/9501005 Theory +hep-th/9501015 Theory +hep-th/9501018 Theory +hep-th/9501020 Theory +hep-th/9501026 Theory +hep-th/9501045 Theory +hep-th/9501066 Theory +hep-th/9501079 Theory +hep-th/9501085 Theory +hep-th/9501095 Theory +hep-th/9501096 Theory +hep-th/9501107 Theory +hep-th/9501116 Theory +hep-th/9501118 Theory +hep-th/9501123 Theory +hep-th/9501132 Theory +hep-th/9501136 Theory +hep-th/9501137 Theory +hep-th/9502003 Theory +hep-th/9502004 Theory +hep-th/9502016 Theory +hep-th/9502017 Theory +hep-th/9502024 Theory +hep-th/9502025 Theory +hep-th/9502032 Theory +hep-th/9502035 Theory +hep-th/9502062 Theory +hep-th/9502070 Theory +hep-th/9502074 Theory +hep-th/9502075 Theory +hep-th/9502080 Theory +hep-th/9502087 Theory +hep-th/9502090 Theory +hep-th/9502094 Theory +hep-th/9502100 Theory +hep-th/9502102 Theory +hep-th/9502110 Theory +hep-th/9502116 Theory +hep-th/9502120 Theory +hep-th/9502123 Theory +hep-th/9502125 Theory +hep-th/9502133 Theory +hep-th/9502139 Theory +hep-th/9502145 Theory +hep-th/9502155 Theory +hep-th/9503012 Theory +hep-th/9503013 Theory +hep-th/9503021 Theory +hep-th/9503024 Theory +hep-th/9503042 Theory +hep-th/9503043 Theory +hep-th/9503044 Theory +hep-th/9503055 Theory +hep-th/9503062 Theory +hep-th/9503064 Theory +hep-th/9503068 Theory +hep-th/9503070 Theory +hep-th/9503072 Theory +hep-th/9503073 Theory +hep-th/9503078 Theory +hep-th/9503079 Theory +hep-th/9503088 Theory +hep-th/9503091 Theory +hep-th/9503098 Theory +hep-th/9503099 Theory +hep-th/9503105 Theory +hep-th/9503106 Theory +hep-th/9503107 Theory +hep-th/9503108 Theory +hep-th/9503113 Theory +hep-th/9503118 Theory +hep-th/9503121 Theory +hep-th/9503126 Theory +hep-th/9503128 Theory +hep-th/9503129 Theory +hep-th/9503132 Theory +hep-th/9503134 Theory +hep-th/9503138 Theory +hep-th/9503140 Theory +hep-th/9503141 Theory +hep-th/9503142 Theory +hep-th/9503143 Theory +hep-th/9503145 Theory +hep-th/9503147 Theory +hep-th/9503149 Theory +hep-th/9503150 Theory +hep-th/9503152 Theory +hep-th/9503155 Theory +hep-th/9503157 Theory +hep-th/9503164 Theory +hep-th/9503165 Theory +hep-th/9503166 Theory +hep-th/9503168 Theory +hep-th/9503170 Theory +hep-th/9503171 Theory +hep-th/9503172 Theory +hep-th/9503175 Theory +hep-th/9503181 Theory +hep-th/9503182 Theory +hep-th/9503184 Theory +hep-th/9503186 Theory +hep-th/9503188 Theory +hep-th/9503190 Theory +hep-th/9503196 Theory +hep-th/9503198 Theory +hep-th/9503199 Theory +hep-th/9503200 Theory +hep-th/9503202 Theory +hep-th/9503205 Theory +hep-th/9503207 Theory +hep-th/9503208 Theory +hep-th/9503209 Theory +hep-th/9503213 Theory +hep-th/9503217 Theory +hep-th/9503219 Theory +hep-th/9503220 Theory +hep-th/9503221 Theory +hep-th/9503224 Theory +hep-th/9503225 Theory +hep-th/9503226 Theory +hep-th/9503228 Theory +hep-th/9503229 Theory +hep-th/9503230 Theory +hep-th/9503232 Theory +hep-th/9503235 Theory +hep-th/9504003 Theory +hep-th/9504004 Theory +hep-th/9504009 Theory +hep-th/9504010 Theory +hep-th/9504012 Theory +hep-th/9504013 Theory +hep-th/9504016 Theory +hep-th/9504018 Theory +hep-th/9504020 Theory +hep-th/9504021 Theory +hep-th/9504024 Theory +hep-th/9504030 Theory +hep-th/9504031 Theory +hep-th/9504032 Theory +hep-th/9504034 Theory +hep-th/9504035 Theory +hep-th/9504041 Theory +hep-th/9504044 Theory +hep-th/9504045 Theory +hep-th/9504046 Theory +hep-th/9504048 Theory +hep-th/9504049 Theory +hep-th/9504051 Theory +hep-th/9504052 Theory +hep-th/9504053 Theory +hep-th/9504055 Theory +hep-th/9504057 Theory +hep-th/9504061 Theory +hep-th/9504063 Theory +hep-th/9504064 Theory +hep-th/9504066 Theory +hep-th/9504067 Theory +hep-th/9504069 Theory +hep-th/9504070 Theory +hep-th/9504071 Theory +hep-th/9504076 Theory +hep-th/9504077 Theory +hep-th/9504078 Theory +hep-th/9504079 Theory +hep-th/9504080 Theory +hep-th/9504081 Theory +hep-th/9504083 Theory +hep-th/9504084 Theory +hep-th/9504085 Theory +hep-th/9504087 Theory +hep-th/9504088 Theory +hep-th/9504097 Theory +hep-th/9504101 Theory +hep-th/9504102 Theory +hep-th/9504103 Theory +hep-th/9504104 Theory +hep-th/9504105 Theory +hep-th/9504107 Theory +hep-th/9504109 Theory +hep-th/9504111 Theory +hep-th/9504114 Theory +hep-th/9504116 Theory +hep-th/9504124 Theory +hep-th/9504125 Theory +hep-th/9504130 Theory +hep-th/9504132 Theory +hep-th/9504135 Theory +hep-th/9504136 Theory +hep-th/9504138 Theory +hep-th/9504139 Theory +hep-th/9504140 Theory +hep-th/9504142 Theory +hep-th/9504148 Theory +hep-th/9504152 Theory +hep-th/9504160 Theory +hep-th/9504161 Theory +hep-th/9505002 Theory +hep-th/9505003 Theory +hep-th/9505005 Theory +hep-th/9505006 Theory +hep-th/9505009 Theory +hep-th/9505011 Theory +hep-th/9505012 Theory +hep-th/9505013 Theory +hep-th/9505016 Theory +hep-th/9505017 Theory +hep-th/9505018 Theory +hep-th/9505021 Theory +hep-th/9505022 Theory +hep-th/9505024 Theory +hep-th/9505028 Theory +hep-th/9505029 Theory +hep-th/9505031 Theory +hep-th/9505033 Theory +hep-th/9505034 Theory +hep-th/9505035 Theory +hep-th/9505036 Theory +hep-th/9505037 Theory +hep-th/9505038 Theory +hep-th/9505040 Theory +hep-th/9505044 Theory +hep-th/9505046 Theory +hep-th/9505047 Theory +hep-th/9505049 Theory +hep-th/9505050 Theory +hep-th/9505051 Theory +hep-th/9505055 Theory +hep-th/9505056 Theory +hep-th/9505057 Theory +hep-th/9505060 Theory +hep-th/9505062 Theory +hep-th/9505064 Theory +hep-th/9505066 Theory +hep-th/9505067 Theory +hep-th/9505068 Theory +hep-th/9505073 Theory +hep-th/9505074 Theory +hep-th/9505076 Theory +hep-th/9505083 Theory +hep-th/9505084 Theory +hep-th/9505085 Theory +hep-th/9505086 Theory +hep-th/9505088 Theory +hep-th/9505091 Theory +hep-th/9505096 Theory +hep-th/9505099 Theory +hep-th/9505101 Theory +hep-th/9505102 Theory +hep-th/9505104 Theory +hep-th/9505106 Theory +hep-th/9505112 Theory +hep-th/9505113 Theory +hep-th/9505114 Theory +hep-th/9505115 Theory +hep-th/9505116 Theory +hep-th/9505120 Theory +hep-th/9505121 Theory +hep-th/9505122 Theory +hep-th/9505123 Theory +hep-th/9505124 Theory +hep-th/9505126 Theory +hep-th/9505127 Theory +hep-th/9505128 Theory +hep-th/9505134 Theory +hep-th/9505135 Theory +hep-th/9505136 Theory +hep-th/9505138 Theory +hep-th/9505139 Theory +hep-th/9505140 Theory +hep-th/9505142 Theory +hep-th/9505149 Theory +hep-th/9505154 Theory +hep-th/9505159 Theory +hep-th/9505161 Theory +hep-th/9505163 Theory +hep-th/9505165 Theory +hep-th/9505166 Theory +hep-th/9505167 Theory +hep-th/9505171 Theory +hep-th/9505172 Theory +hep-th/9505174 Theory +hep-th/9505182 Theory +hep-th/9505187 Theory +hep-th/9505193 Theory +hep-th/9506002 Theory +hep-th/9506004 Theory +hep-th/9506007 Theory +hep-th/9506008 Theory +hep-th/9506010 Theory +hep-th/9506013 Theory +hep-th/9506014 Theory +hep-th/9506017 Theory +hep-th/9506018 Theory +hep-th/9506020 Theory +hep-th/9506021 Theory +hep-th/9506022 Theory +hep-th/9506023 Theory +hep-th/9506024 Theory +hep-th/9506031 Theory +hep-th/9506033 Theory +hep-th/9506037 Theory +hep-th/9506038 Theory +hep-th/9506041 Theory +hep-th/9506044 Theory +hep-th/9506047 Theory +hep-th/9506050 Theory +hep-th/9506054 Theory +hep-th/9506056 Theory +hep-th/9506058 Theory +hep-th/9506060 Theory +hep-th/9506062 Theory +hep-th/9506066 Theory +hep-th/9506068 Theory +hep-th/9506070 Theory +hep-th/9506075 Theory +hep-th/9506076 Theory +hep-th/9506079 Theory +hep-th/9506088 Theory +hep-th/9506089 Theory +hep-th/9506093 Theory +hep-th/9506094 Theory +hep-th/9506102 Theory +hep-th/9506103 Theory +hep-th/9506104 Theory +hep-th/9506105 Theory +hep-th/9506110 Theory +hep-th/9506111 Theory +hep-th/9506112 Theory +hep-th/9506116 Theory +hep-th/9506118 Theory +hep-th/9506120 Theory +hep-th/9506121 Theory +hep-th/9506122 Theory +hep-th/9506126 Theory +hep-th/9506128 Theory +hep-th/9506135 Theory +hep-th/9506137 Theory +hep-th/9506141 Theory +hep-th/9506142 Theory +hep-th/9506143 Theory +hep-th/9506144 Theory +hep-th/9506146 Theory +hep-th/9506147 Theory +hep-th/9506148 Theory +hep-th/9506151 Theory +hep-th/9506152 Theory +hep-th/9506156 Theory +hep-th/9506157 Theory +hep-th/9506160 Theory +hep-th/9506162 Theory +hep-th/9506163 Theory +hep-th/9506164 Theory +hep-th/9506167 Theory +hep-th/9506169 Theory +hep-th/9506174 Theory +hep-th/9506176 Theory +hep-th/9506177 Theory +hep-th/9506180 Theory +hep-th/9506181 Theory +hep-th/9506183 Theory +hep-th/9506184 Theory +hep-th/9506186 Theory +hep-th/9506189 Theory +hep-th/9506192 Theory +hep-th/9506200 Theory +hep-th/9506202 Theory +hep-th/9506206 Theory +hep-th/9506207 Theory +hep-th/9506214 Theory +hep-th/9507001 Theory +hep-th/9507002 Theory +hep-th/9507003 Theory +hep-th/9507005 Theory +hep-th/9507006 Theory +hep-th/9507008 Theory +hep-th/9507009 Theory +hep-th/9507010 Theory +hep-th/9507011 Theory +hep-th/9507012 Theory +hep-th/9507015 Theory +hep-th/9507016 Theory +hep-th/9507017 Theory +hep-th/9507018 Theory +hep-th/9507026 Theory +hep-th/9507028 Theory +hep-th/9507031 Theory +hep-th/9507032 Theory +hep-th/9507033 Theory +hep-th/9507036 Theory +hep-th/9507038 Theory +hep-th/9507041 Theory +hep-th/9507042 Theory +hep-th/9507044 Theory +hep-th/9507046 Theory +hep-th/9507054 Theory +hep-th/9507055 Theory +hep-th/9507056 Theory +hep-th/9507057 Theory +hep-th/9507059 Theory +hep-th/9507060 Theory +hep-th/9507061 Theory +hep-th/9507062 Theory +hep-th/9507063 Theory +hep-th/9507064 Theory +hep-th/9507065 Theory +hep-th/9507072 Theory +hep-th/9507074 Theory +hep-th/9507075 Theory +hep-th/9507076 Theory +hep-th/9507077 Theory +hep-th/9507078 Theory +hep-th/9507079 Theory +hep-th/9507082 Theory +hep-th/9507083 Theory +hep-th/9507084 Theory +hep-th/9507092 Theory +hep-th/9507098 Theory +hep-th/9507105 Theory +hep-th/9507109 Theory +hep-th/9507112 Theory +hep-th/9507114 Theory +hep-th/9507117 Theory +hep-th/9507118 Theory +hep-th/9507122 Theory +hep-th/9507123 Theory +hep-th/9507124 Theory +hep-th/9507125 Theory +hep-th/9507127 Theory +hep-th/9507129 Theory +hep-th/9507130 Theory +hep-th/9507131 Theory +hep-th/9507134 Theory +hep-th/9507135 Theory +hep-th/9507136 Theory +hep-th/9507137 Theory +hep-th/9507138 Theory +hep-th/9507139 Theory +hep-th/9507140 Theory +hep-th/9507142 Theory +hep-th/9507144 Theory +hep-th/9507145 Theory +hep-th/9507147 Theory +hep-th/9507152 Theory +hep-th/9507153 Theory +hep-th/9507155 Theory +hep-th/9507156 Theory +hep-th/9507159 Theory +hep-th/9507161 Theory +hep-th/9507164 Theory +hep-th/9507167 Theory +hep-th/9507173 Theory +hep-th/9508002 Theory +hep-th/9508003 Theory +hep-th/9508005 Theory +hep-th/9508006 Theory +hep-th/9508007 Theory +hep-th/9508009 Theory +hep-th/9508011 Theory +hep-th/9508012 Theory +hep-th/9508014 Theory +hep-th/9508015 Theory +hep-th/9508016 Theory +hep-th/9508017 Theory +hep-th/9508018 Theory +hep-th/9508020 Theory +hep-th/9508021 Theory +hep-th/9508022 Theory +hep-th/9508026 Theory +hep-th/9508027 Theory +hep-th/9508029 Theory +hep-th/9508036 Theory +hep-th/9508037 Theory +hep-th/9508039 Theory +hep-th/9508040 Theory +hep-th/9508041 Theory +hep-th/9508043 Theory +hep-th/9508044 Theory +hep-th/9508045 Theory +hep-th/9508047 Theory +hep-th/9508048 Theory +hep-th/9508049 Theory +hep-th/9508050 Theory +hep-th/9508054 Theory +hep-th/9508055 Theory +hep-th/9508057 Theory +hep-th/9508066 Theory +hep-th/9508067 Theory +hep-th/9508071 Theory +hep-th/9508073 Theory +hep-th/9508075 Theory +hep-th/9508076 Theory +hep-th/9508077 Theory +hep-th/9508078 Theory +hep-th/9508079 Theory +hep-th/9508080 Theory +hep-th/9508082 Theory +hep-th/9508084 Theory +hep-th/9508086 Theory +hep-th/9508087 Theory +hep-th/9508088 Theory +hep-th/9508089 Theory +hep-th/9508094 Theory +hep-th/9508099 Theory +hep-th/9508103 Theory +hep-th/9508108 Theory +hep-th/9508112 Theory +hep-th/9508113 Theory +hep-th/9508115 Theory +hep-th/9508116 Theory +hep-th/9508117 Theory +hep-th/9508118 Theory +hep-th/9508120 Theory +hep-th/9508122 Theory +hep-th/9508123 Theory +hep-th/9508124 Theory +hep-th/9508127 Theory +hep-th/9508129 Theory +hep-th/9508131 Theory +hep-th/9508132 Theory +hep-th/9508133 Theory +hep-th/9508134 Theory +hep-th/9508135 Theory +hep-th/9508137 Theory +hep-th/9508139 Theory +hep-th/9508140 Theory +hep-th/9508142 Theory +hep-th/9508144 Theory +hep-th/9508148 Theory +hep-th/9508149 Theory +hep-th/9508150 Theory +hep-th/9508154 Theory +hep-th/9508156 Theory +hep-th/9508157 Theory +hep-th/9508166 Theory +hep-th/9508169 Theory +hep-th/9508171 Theory +hep-th/9508172 Theory +hep-th/9508176 Theory +hep-th/9509003 Theory +hep-th/9509004 Theory +hep-th/9509005 Theory +hep-th/9509007 Theory +hep-th/9509009 Theory +hep-th/9509012 Theory +hep-th/9509013 Theory +hep-th/9509020 Theory +hep-th/9509022 Theory +hep-th/9509023 Theory +hep-th/9509025 Theory +hep-th/9509027 Theory +hep-th/9509028 Theory +hep-th/9509033 Theory +hep-th/9509034 Theory +hep-th/9509035 Theory +hep-th/9509036 Theory +hep-th/9509037 Theory +hep-th/9509042 Theory +hep-th/9509048 Theory +hep-th/9509051 Theory +hep-th/9509053 Theory +hep-th/9509057 Theory +hep-th/9509058 Theory +hep-th/9509060 Theory +hep-th/9509061 Theory +hep-th/9509066 Theory +hep-th/9509068 Theory +hep-th/9509069 Theory +hep-th/9509071 Theory +hep-th/9509072 Theory +hep-th/9509073 Theory +hep-th/9509074 Theory +hep-th/9509088 Theory +hep-th/9509089 Theory +hep-th/9509091 Theory +hep-th/9509094 Theory +hep-th/9509097 Theory +hep-th/9509099 Theory +hep-th/9509100 Theory +hep-th/9509105 Theory +hep-th/9509110 Theory +hep-th/9509111 Theory +hep-th/9509112 Theory +hep-th/9509114 Theory +hep-th/9509118 Theory +hep-th/9509125 Theory +hep-th/9509129 Theory +hep-th/9509130 Theory +hep-th/9509133 Theory +hep-th/9509136 Theory +hep-th/9509139 Theory +hep-th/9509140 Theory +hep-th/9509144 Theory +hep-th/9509145 Theory +hep-th/9509146 Theory +hep-th/9509148 Theory +hep-th/9509150 Theory +hep-th/9509151 Theory +hep-th/9509152 Theory +hep-th/9509157 Theory +hep-th/9509158 Theory +hep-th/9509159 Theory +hep-th/9509160 Theory +hep-th/9509163 Theory +hep-th/9509166 Theory +hep-th/9509167 Theory +hep-th/9509173 Theory +hep-th/9509174 Theory +hep-th/9509175 Theory +hep-th/9509176 Theory +hep-th/9510003 Theory +hep-th/9510004 Theory +hep-th/9510007 Theory +hep-th/9510010 Theory +hep-th/9510012 Theory +hep-th/9510013 Theory +hep-th/9510015 Theory +hep-th/9510018 Theory +hep-th/9510028 Theory +hep-th/9510029 Theory +hep-th/9510031 Theory +hep-th/9510033 Theory +hep-th/9510034 Theory +hep-th/9510035 Theory +hep-th/9510036 Theory +hep-th/9510037 Theory +hep-th/9510038 Theory +hep-th/9510043 Theory +hep-th/9510046 Theory +hep-th/9510047 Theory +hep-th/9510048 Theory +hep-th/9510050 Theory +hep-th/9510052 Theory +hep-th/9510055 Theory +hep-th/9510057 Theory +hep-th/9510058 Theory +hep-th/9510060 Theory +hep-th/9510064 Theory +hep-th/9510067 Theory +hep-th/9510068 Theory +hep-th/9510069 Theory +hep-th/9510071 Theory +hep-th/9510074 Theory +hep-th/9510079 Theory +hep-th/9510082 Theory +hep-th/9510083 Theory +hep-th/9510084 Theory +hep-th/9510085 Theory +hep-th/9510086 Theory +hep-th/9510090 Theory +hep-th/9510092 Theory +hep-th/9510094 Theory +hep-th/9510099 Theory +hep-th/9510100 Theory +hep-th/9510106 Theory +hep-th/9510107 Theory +hep-th/9510111 Theory +hep-th/9510112 Theory +hep-th/9510113 Theory +hep-th/9510114 Theory +hep-th/9510115 Theory +hep-th/9510116 Theory +hep-th/9510121 Theory +hep-th/9510122 Theory +hep-th/9510123 Theory +hep-th/9510124 Theory +hep-th/9510127 Theory +hep-th/9510128 Theory +hep-th/9510129 Theory +hep-th/9510130 Theory +hep-th/9510131 Theory +hep-th/9510132 Theory +hep-th/9510133 Theory +hep-th/9510137 Theory +hep-th/9510138 Theory +hep-th/9510141 Theory +hep-th/9510144 Theory +hep-th/9510146 Theory +hep-th/9510148 Theory +hep-th/9510150 Theory +hep-th/9510153 Theory +hep-th/9510154 Theory +hep-th/9510155 Theory +hep-th/9510157 Theory +hep-th/9510158 Theory +hep-th/9510159 Theory +hep-th/9510166 Theory +hep-th/9510167 Theory +hep-th/9510168 Theory +hep-th/9510171 Theory +hep-th/9510174 Theory +hep-th/9510175 Theory +hep-th/9510178 Theory +hep-th/9510183 Theory +hep-th/9510184 Theory +hep-th/9510186 Theory +hep-th/9510187 Theory +hep-th/9510188 Theory +hep-th/9510190 Theory +hep-th/9510191 Theory +hep-th/9510194 Theory +hep-th/9510195 Theory +hep-th/9510197 Theory +hep-th/9510202 Theory +hep-th/9510203 Theory +hep-th/9510204 Theory +hep-th/9510205 Theory +hep-th/9510210 Theory +hep-th/9510215 Theory +hep-th/9510217 Theory +hep-th/9510218 Theory +hep-th/9510220 Theory +hep-th/9510221 Theory +hep-th/9510223 Theory +hep-th/9510224 Theory +hep-th/9510225 Theory +hep-th/9510234 Theory +hep-th/9510235 Theory +hep-th/9510240 Theory +hep-th/9510241 Theory +hep-th/9511002 Theory +hep-th/9511004 Theory +hep-th/9511008 Theory +hep-th/9511012 Theory +hep-th/9511015 Theory +hep-th/9511034 Theory +hep-th/9511035 Theory +hep-th/9511041 Theory +hep-th/9511046 Theory +hep-th/9511047 Theory +hep-th/9511048 Theory +hep-th/9511049 Theory +hep-th/9511051 Theory +hep-th/9511053 Theory +hep-th/9511055 Theory +hep-th/9511057 Theory +hep-th/9511058 Theory +hep-th/9511059 Theory +hep-th/9511062 Theory +hep-th/9511063 Theory +hep-th/9511064 Theory +hep-th/9511065 Theory +hep-th/9511066 Theory +hep-th/9511067 Theory +hep-th/9511072 Theory +hep-th/9511073 Theory +hep-th/9511074 Theory +hep-th/9511075 Theory +hep-th/9511077 Theory +hep-th/9511078 Theory +hep-th/9511088 Theory +hep-th/9511094 Theory +hep-th/9511095 Theory +hep-th/9511098 Theory +hep-th/9511099 Theory +hep-th/9511101 Theory +hep-th/9511103 Theory +hep-th/9511104 Theory +hep-th/9511110 Theory +hep-th/9511113 Theory +hep-th/9511118 Theory +hep-th/9511121 Theory +hep-th/9511126 Theory +hep-th/9511128 Theory +hep-th/9511131 Theory +hep-th/9511133 Theory +hep-th/9511134 Theory +hep-th/9511135 Theory +hep-th/9511138 Theory +hep-th/9511139 Theory +hep-th/9511142 Theory +hep-th/9511143 Theory +hep-th/9511145 Theory +hep-th/9511146 Theory +hep-th/9511149 Theory +hep-th/9511152 Theory +hep-th/9511153 Theory +hep-th/9511157 Theory +hep-th/9511158 Theory +hep-th/9511163 Theory +hep-th/9511165 Theory +hep-th/9511168 Theory +hep-th/9511170 Theory +hep-th/9511171 Theory +hep-th/9511172 Theory +hep-th/9511175 Theory +hep-th/9511184 Theory +hep-th/9511186 Theory +hep-th/9511188 Theory +hep-th/9511189 Theory +hep-th/9511192 Theory +hep-th/9511197 Theory +hep-th/9511198 Theory +hep-th/9511199 Theory +hep-th/9511205 Theory +hep-th/9511206 Theory +hep-th/9511207 Theory +hep-th/9511209 Theory +hep-th/9511213 Theory +hep-th/9511217 Theory +hep-th/9511218 Theory +hep-th/9511219 Theory +hep-th/9511220 Theory +hep-th/9511222 Theory +hep-th/9511223 Theory +hep-th/9511224 Theory +hep-th/9511227 Theory +hep-th/9511230 Theory +hep-th/9512001 Theory +hep-th/9512004 Theory +hep-th/9512006 Theory +hep-th/9512011 Theory +hep-th/9512013 Theory +hep-th/9512014 Theory +hep-th/9512015 Theory +hep-th/9512016 Theory +hep-th/9512017 Theory +hep-th/9512019 Theory +hep-th/9512020 Theory +hep-th/9512023 Theory +hep-th/9512024 Theory +hep-th/9512029 Theory +hep-th/9512030 Theory +hep-th/9512038 Theory +hep-th/9512040 Theory +hep-th/9512042 Theory +hep-th/9512043 Theory +hep-th/9512045 Theory +hep-th/9512046 Theory +hep-th/9512047 Theory +hep-th/9512048 Theory +hep-th/9512052 Theory +hep-th/9512053 Theory +hep-th/9512055 Theory +hep-th/9512056 Theory +hep-th/9512058 Theory +hep-th/9512061 Theory +hep-th/9512062 Theory +hep-th/9512063 Theory +hep-th/9512064 Theory +hep-th/9512068 Theory +hep-th/9512069 Theory +hep-th/9512075 Theory +hep-th/9512076 Theory +hep-th/9512078 Theory +hep-th/9512079 Theory +hep-th/9512080 Theory +hep-th/9512084 Theory +hep-th/9512086 Theory +hep-th/9512087 Theory +hep-th/9512089 Theory +hep-th/9512095 Theory +hep-th/9512098 Theory +hep-th/9512100 Theory +hep-th/9512101 Theory +hep-th/9512104 Theory +hep-th/9512105 Theory +hep-th/9512106 Theory +hep-th/9512107 Theory +hep-th/9512113 Theory +hep-th/9512117 Theory +hep-th/9512118 Theory +hep-th/9512122 Theory +hep-th/9512123 Theory +hep-th/9512124 Theory +hep-th/9512125 Theory +hep-th/9512126 Theory +hep-th/9512128 Theory +hep-th/9512130 Theory +hep-th/9512131 Theory +hep-th/9512135 Theory +hep-th/9512138 Theory +hep-th/9512140 Theory +hep-th/9512142 Theory +hep-th/9512143 Theory +hep-th/9512145 Theory +hep-th/9512146 Theory +hep-th/9512147 Theory +hep-th/9512149 Theory +hep-th/9512152 Theory +hep-th/9512157 Theory +hep-th/9512158 Theory +hep-th/9512161 Theory +hep-th/9512164 Theory +hep-th/9512165 Theory +hep-th/9512166 Theory +hep-th/9512173 Theory +hep-th/9512174 Theory +hep-th/9512179 Theory +hep-th/9512180 Theory +hep-th/9512187 Theory +hep-th/9512191 Theory +hep-th/9512196 Theory +hep-th/9512197 Theory +hep-th/9512204 Theory +hep-th/9512206 Theory +hep-th/9512208 Theory +hep-th/9512211 Theory +hep-th/9512214 Theory +hep-th/9512215 Theory +hep-th/9512216 Theory +hep-th/9512217 Theory +hep-th/9512223 Theory +hep-th/9512225 Theory +math/0611229 K-Theory and Homology +math/9401201 Group Theory +math/9404238 Dynamical Systems +math/9407223 Dynamical Systems +math/9411214 Number Theory +math/9502236 Functional Analysis +math/9504219 Classical Analysis and ODEs +mtrl-th/9411002 Materials Science +mtrl-th/9411003 Materials Science +mtrl-th/9411006 Materials Science +mtrl-th/9411007 Materials Science +mtrl-th/9411008 Materials Science +mtrl-th/9412001 Materials Science +mtrl-th/9412002 Materials Science +mtrl-th/9412003 Materials Science +mtrl-th/9412004 Materials Science +mtrl-th/9503004 Materials Science +mtrl-th/9503008 Materials Science +mtrl-th/9505001 Materials Science +mtrl-th/9505002 Materials Science +mtrl-th/9505003 Materials Science +mtrl-th/9505004 Materials Science +mtrl-th/9505005 Materials Science +mtrl-th/9505007 Materials Science +mtrl-th/9505009 Materials Science +mtrl-th/9505010 Materials Science +mtrl-th/9505011 Materials Science +mtrl-th/9506001 Materials Science +mtrl-th/9506002 Materials Science +mtrl-th/9506004 Materials Science +mtrl-th/9506005 Materials Science +mtrl-th/9506006 Materials Science +mtrl-th/9506007 Materials Science +mtrl-th/9506008 Materials Science +mtrl-th/9506009 Materials Science +mtrl-th/9507001 Materials Science +mtrl-th/9507002 Materials Science +mtrl-th/9508001 Materials Science +mtrl-th/9508003 Materials Science +mtrl-th/9508004 Materials Science +mtrl-th/9508005 Materials Science +mtrl-th/9508008 Materials Science +mtrl-th/9508009 Materials Science +mtrl-th/9508011 Materials Science +mtrl-th/9509001 Materials Science +mtrl-th/9509002 Materials Science +mtrl-th/9509003 Materials Science +mtrl-th/9509004 Materials Science +mtrl-th/9509005 Materials Science +mtrl-th/9509006 Materials Science +mtrl-th/9510001 Materials Science +mtrl-th/9510002 Materials Science +mtrl-th/9510005 Materials Science +mtrl-th/9510006 Materials Science +mtrl-th/9511002 Materials Science +mtrl-th/9511004 Materials Science +mtrl-th/9511005 Materials Science +mtrl-th/9511006 Materials Science +mtrl-th/9511007 Materials Science +mtrl-th/9511008 Materials Science +mtrl-th/9511009 Materials Science +mtrl-th/9512002 Materials Science +mtrl-th/9512004 Materials Science +mtrl-th/9512005 Materials Science +nlin/0209034 Pattern Formation and Solitons +nlin/0308029 Pattern Formation and Solitons +nlin/0610063 Pattern Formation and Solitons +nucl-ex/9412002 +nucl-ex/9412004 +nucl-ex/9505001 +nucl-ex/9505002 +nucl-ex/9506001 +nucl-ex/9506002 +nucl-ex/9509001 +nucl-ex/9510002 +nucl-ex/9510003 +nucl-ex/9510004 +nucl-ex/9512003 +nucl-th/9401002 +nucl-th/9401003 +nucl-th/9401006 +nucl-th/9401016 +nucl-th/9401017 +nucl-th/9401019 +nucl-th/9401021 +nucl-th/9402001 +nucl-th/9402004 +nucl-th/9402007 +nucl-th/9402009 +nucl-th/9402010 +nucl-th/9402014 +nucl-th/9402019 +nucl-th/9402033 +nucl-th/9403001 +nucl-th/9403002 +nucl-th/9403003 +nucl-th/9403006 +nucl-th/9403010 +nucl-th/9403012 +nucl-th/9403013 +nucl-th/9404002 +nucl-th/9404008 +nucl-th/9404012 +nucl-th/9404013 +nucl-th/9404015 +nucl-th/9404020 +nucl-th/9404025 +nucl-th/9404026 +nucl-th/9404027 +nucl-th/9404029 +nucl-th/9405001 +nucl-th/9405002 +nucl-th/9405007 +nucl-th/9405017 +nucl-th/9405022 +nucl-th/9405025 +nucl-th/9405027 +nucl-th/9405029 +nucl-th/9406001 +nucl-th/9406006 +nucl-th/9406012 +nucl-th/9406013 +nucl-th/9406015 +nucl-th/9406017 +nucl-th/9406021 +nucl-th/9406024 +nucl-th/9406028 +nucl-th/9406029 +nucl-th/9406030 +nucl-th/9406037 +nucl-th/9407002 +nucl-th/9407003 +nucl-th/9407004 +nucl-th/9407008 +nucl-th/9407010 +nucl-th/9407015 +nucl-th/9407016 +nucl-th/9407020 +nucl-th/9407021 +nucl-th/9407022 +nucl-th/9407023 +nucl-th/9407025 +nucl-th/9407028 +nucl-th/9407029 +nucl-th/9407031 +nucl-th/9407036 +nucl-th/9407037 +nucl-th/9407039 +nucl-th/9408003 +nucl-th/9408009 +nucl-th/9408010 +nucl-th/9408017 +nucl-th/9408020 +nucl-th/9408021 +nucl-th/9408024 +nucl-th/9408026 +nucl-th/9408027 +nucl-th/9408028 +nucl-th/9408030 +nucl-th/9409004 +nucl-th/9409009 +nucl-th/9409014 +nucl-th/9409016 +nucl-th/9409017 +nucl-th/9409021 +nucl-th/9409024 +nucl-th/9409026 +nucl-th/9410001 +nucl-th/9410013 +nucl-th/9410014 +nucl-th/9410021 +nucl-th/9410023 +nucl-th/9410024 +nucl-th/9410026 +nucl-th/9410028 +nucl-th/9410032 +nucl-th/9410038 +nucl-th/9410045 +nucl-th/9410046 +nucl-th/9410049 +nucl-th/9411001 +nucl-th/9411005 +nucl-th/9411007 +nucl-th/9411013 +nucl-th/9411020 +nucl-th/9411024 +nucl-th/9411025 +nucl-th/9411028 +nucl-th/9411032 +nucl-th/9411035 +nucl-th/9412002 +nucl-th/9412004 +nucl-th/9412005 +nucl-th/9412007 +nucl-th/9412008 +nucl-th/9412010 +nucl-th/9412012 +nucl-th/9412020 +nucl-th/9412026 +nucl-th/9412029 +nucl-th/9412034 +nucl-th/9412035 +nucl-th/9501004 +nucl-th/9501010 +nucl-th/9501020 +nucl-th/9501029 +nucl-th/9501032 +nucl-th/9502008 +nucl-th/9502042 +nucl-th/9503001 +nucl-th/9503018 +nucl-th/9503019 +nucl-th/9503022 +nucl-th/9503026 +nucl-th/9503030 +nucl-th/9504001 +nucl-th/9504002 +nucl-th/9504005 +nucl-th/9504008 +nucl-th/9504009 +nucl-th/9504010 +nucl-th/9504016 +nucl-th/9504018 +nucl-th/9504019 +nucl-th/9504020 +nucl-th/9504021 +nucl-th/9504022 +nucl-th/9504026 +nucl-th/9504027 +nucl-th/9504029 +nucl-th/9504030 +nucl-th/9504031 +nucl-th/9505002 +nucl-th/9505003 +nucl-th/9505006 +nucl-th/9505007 +nucl-th/9505008 +nucl-th/9505017 +nucl-th/9505018 +nucl-th/9505026 +nucl-th/9505033 +nucl-th/9505037 +nucl-th/9505039 +nucl-th/9505043 +nucl-th/9506002 +nucl-th/9506006 +nucl-th/9506007 +nucl-th/9506009 +nucl-th/9506013 +nucl-th/9506015 +nucl-th/9506019 +nucl-th/9506022 +nucl-th/9506024 +nucl-th/9506026 +nucl-th/9506032 +nucl-th/9507003 +nucl-th/9507011 +nucl-th/9507012 +nucl-th/9507014 +nucl-th/9507016 +nucl-th/9507017 +nucl-th/9507018 +nucl-th/9507021 +nucl-th/9507023 +nucl-th/9507026 +nucl-th/9507028 +nucl-th/9507032 +nucl-th/9507033 +nucl-th/9507036 +nucl-th/9507037 +nucl-th/9507038 +nucl-th/9507041 +nucl-th/9507045 +nucl-th/9508004 +nucl-th/9508005 +nucl-th/9508008 +nucl-th/9508012 +nucl-th/9508020 +nucl-th/9508026 +nucl-th/9508031 +nucl-th/9508033 +nucl-th/9508034 +nucl-th/9508036 +nucl-th/9508043 +nucl-th/9509004 +nucl-th/9509008 +nucl-th/9509009 +nucl-th/9509010 +nucl-th/9509011 +nucl-th/9509014 +nucl-th/9509015 +nucl-th/9509016 +nucl-th/9509019 +nucl-th/9509021 +nucl-th/9509033 +nucl-th/9509035 +nucl-th/9509041 +nucl-th/9509044 +nucl-th/9509045 +nucl-th/9510003 +nucl-th/9510005 +nucl-th/9510011 +nucl-th/9510013 +nucl-th/9510014 +nucl-th/9510015 +nucl-th/9510020 +nucl-th/9510022 +nucl-th/9510032 +nucl-th/9510034 +nucl-th/9510045 +nucl-th/9510046 +nucl-th/9510047 +nucl-th/9510050 +nucl-th/9510052 +nucl-th/9510055 +nucl-th/9510056 +nucl-th/9510058 +nucl-th/9510059 +nucl-th/9510060 +nucl-th/9511004 +nucl-th/9511007 +nucl-th/9511011 +nucl-th/9511019 +nucl-th/9511020 +nucl-th/9511021 +nucl-th/9511025 +nucl-th/9511030 +nucl-th/9511032 +nucl-th/9511033 +nucl-th/9511035 +nucl-th/9511042 +nucl-th/9512002 +nucl-th/9512005 +nucl-th/9512007 +nucl-th/9512009 +nucl-th/9512010 +nucl-th/9512015 +nucl-th/9512019 +nucl-th/9512020 +nucl-th/9512033 +nucl-th/9512034 +nucl-th/9512035 +nucl-th/9512041 +patt-sol/9401001 Pattern Formation and Solitons +patt-sol/9401002 Pattern Formation and Solitons +patt-sol/9401003 Pattern Formation and Solitons +patt-sol/9401005 Pattern Formation and Solitons +patt-sol/9402001 Pattern Formation and Solitons +patt-sol/9402002 Pattern Formation and Solitons +patt-sol/9403003 Pattern Formation and Solitons +patt-sol/9403005 Pattern Formation and Solitons +patt-sol/9404001 Pattern Formation and Solitons +patt-sol/9404004 Pattern Formation and Solitons +patt-sol/9404005 Pattern Formation and Solitons +patt-sol/9404006 Pattern Formation and Solitons +patt-sol/9404007 Pattern Formation and Solitons +patt-sol/9405001 Pattern Formation and Solitons +patt-sol/9406001 Pattern Formation and Solitons +patt-sol/9407001 Pattern Formation and Solitons +patt-sol/9408001 Pattern Formation and Solitons +patt-sol/9409004 Pattern Formation and Solitons +patt-sol/9410001 Pattern Formation and Solitons +patt-sol/9411001 Pattern Formation and Solitons +patt-sol/9411002 Pattern Formation and Solitons +patt-sol/9411003 Pattern Formation and Solitons +patt-sol/9412001 Pattern Formation and Solitons +patt-sol/9501001 Pattern Formation and Solitons +patt-sol/9501002 Pattern Formation and Solitons +patt-sol/9501004 Pattern Formation and Solitons +patt-sol/9501005 Pattern Formation and Solitons +patt-sol/9502002 Pattern Formation and Solitons +patt-sol/9502004 Pattern Formation and Solitons +patt-sol/9502005 Pattern Formation and Solitons +patt-sol/9503001 Pattern Formation and Solitons +patt-sol/9503002 Pattern Formation and Solitons +patt-sol/9504002 Pattern Formation and Solitons +patt-sol/9504003 Pattern Formation and Solitons +patt-sol/9505001 Pattern Formation and Solitons +patt-sol/9505002 Pattern Formation and Solitons +patt-sol/9505003 Pattern Formation and Solitons +patt-sol/9505004 Pattern Formation and Solitons +patt-sol/9505005 Pattern Formation and Solitons +patt-sol/9507001 Pattern Formation and Solitons +patt-sol/9507002 Pattern Formation and Solitons +patt-sol/9507003 Pattern Formation and Solitons +patt-sol/9507004 Pattern Formation and Solitons +patt-sol/9507005 Pattern Formation and Solitons +patt-sol/9508002 Pattern Formation and Solitons +patt-sol/9510001 Pattern Formation and Solitons +patt-sol/9510004 Pattern Formation and Solitons +patt-sol/9510006 Pattern Formation and Solitons +patt-sol/9511001 Pattern Formation and Solitons +patt-sol/9511002 Pattern Formation and Solitons +patt-sol/9511003 Pattern Formation and Solitons +patt-sol/9512001 Pattern Formation and Solitons +patt-sol/9512002 Pattern Formation and Solitons +patt-sol/9512003 Pattern Formation and Solitons +patt-sol/9704002 Pattern Formation and Solitons +physics/0612102 Classical Physics +physics/0612210 General Physics +plasm-ph/9503002 Plasma Physics +plasm-ph/9506001 Plasma Physics +plasm-ph/9506002 Plasma Physics +plasm-ph/9506003 Plasma Physics +plasm-ph/9506004 Plasma Physics +plasm-ph/9507001 Plasma Physics +plasm-ph/9507002 Plasma Physics +plasm-ph/9511002 Plasma Physics +plasm-ph/9512001 Plasma Physics +q-alg/9412015 Quantum Algebra +q-alg/9412016 Quantum Algebra +q-alg/9501001 Quantum Algebra +q-alg/9501009 Quantum Algebra +q-alg/9501020 Quantum Algebra +q-alg/9501021 Quantum Algebra +q-alg/9501026 Quantum Algebra +q-alg/9501027 Quantum Algebra +q-alg/9501028 Quantum Algebra +q-alg/9502009 Quantum Algebra +q-alg/9502011 Quantum Algebra +q-alg/9502019 Quantum Algebra +q-alg/9503001 Quantum Algebra +q-alg/9503002 Quantum Algebra +q-alg/9503006 Quantum Algebra +q-alg/9503017 Quantum Algebra +q-alg/9503019 Quantum Algebra +q-alg/9503020 Quantum Algebra +q-alg/9503021 Quantum Algebra +q-alg/9504005 Quantum Algebra +q-alg/9504006 Quantum Algebra +q-alg/9504008 Quantum Algebra +q-alg/9504009 Quantum Algebra +q-alg/9504015 Quantum Algebra +q-alg/9504016 Quantum Algebra +q-alg/9504020 Quantum Algebra +q-alg/9504023 Quantum Algebra +q-alg/9504027 Quantum Algebra +q-alg/9505006 Quantum Algebra +q-alg/9505007 Quantum Algebra +q-alg/9505017 Quantum Algebra +q-alg/9505021 Quantum Algebra +q-alg/9505023 Quantum Algebra +q-alg/9505025 Quantum Algebra +q-alg/9505030 Quantum Algebra +q-alg/9506006 Quantum Algebra +q-alg/9506007 Quantum Algebra +q-alg/9506014 Quantum Algebra +q-alg/9506016 Quantum Algebra +q-alg/9506019 Quantum Algebra +q-alg/9506020 Quantum Algebra +q-alg/9506022 Quantum Algebra +q-alg/9506024 Quantum Algebra +q-alg/9506026 Quantum Algebra +q-alg/9507001 Quantum Algebra +q-alg/9507003 Quantum Algebra +q-alg/9507004 Quantum Algebra +q-alg/9507005 Quantum Algebra +q-alg/9507006 Quantum Algebra +q-alg/9507008 Quantum Algebra +q-alg/9507009 Quantum Algebra +q-alg/9507012 Quantum Algebra +q-alg/9507013 Quantum Algebra +q-alg/9507014 Quantum Algebra +q-alg/9507019 Quantum Algebra +q-alg/9507025 Quantum Algebra +q-alg/9507026 Quantum Algebra +q-alg/9507028 Quantum Algebra +q-alg/9507029 Quantum Algebra +q-alg/9507030 Quantum Algebra +q-alg/9507031 Quantum Algebra +q-alg/9507032 Quantum Algebra +q-alg/9507033 Quantum Algebra +q-alg/9507034 Quantum Algebra +q-alg/9508001 Quantum Algebra +q-alg/9508003 Quantum Algebra +q-alg/9508009 Quantum Algebra +q-alg/9508010 Quantum Algebra +q-alg/9508011 Quantum Algebra +q-alg/9508014 Quantum Algebra +q-alg/9508015 Quantum Algebra +q-alg/9508021 Quantum Algebra +q-alg/9508022 Quantum Algebra +q-alg/9509003 Quantum Algebra +q-alg/9509006 Quantum Algebra +q-alg/9509008 Quantum Algebra +q-alg/9509015 Quantum Algebra +q-alg/9509018 Quantum Algebra +q-alg/9509019 Quantum Algebra +q-alg/9510001 Quantum Algebra +q-alg/9510005 Quantum Algebra +q-alg/9510007 Quantum Algebra +q-alg/9510014 Quantum Algebra +q-alg/9510018 Quantum Algebra +q-alg/9510019 Quantum Algebra +q-alg/9510021 Quantum Algebra +q-alg/9510023 Quantum Algebra +q-alg/9511002 Quantum Algebra +q-alg/9511007 Quantum Algebra +q-alg/9511009 Quantum Algebra +q-alg/9511019 Quantum Algebra +q-alg/9511028 Quantum Algebra +q-alg/9512004 Quantum Algebra +q-alg/9512008 Quantum Algebra +q-alg/9512009 Quantum Algebra +q-alg/9512011 Quantum Algebra +q-alg/9512019 Quantum Algebra +q-alg/9512020 Quantum Algebra +q-alg/9512023 Quantum Algebra +q-alg/9512025 Quantum Algebra +q-alg/9512026 Quantum Algebra +q-alg/9512032 Quantum Algebra +quant-ph/9412006 +quant-ph/9412007 +quant-ph/9412010 +quant-ph/9412011 +quant-ph/9501005 +quant-ph/9501007 +quant-ph/9501011 +quant-ph/9501012 +quant-ph/9501019 +quant-ph/9502001 +quant-ph/9502020 +quant-ph/9503005 +quant-ph/9503014 +quant-ph/9503017 +quant-ph/9503019 +quant-ph/9504002 +quant-ph/9504006 +quant-ph/9504011 +quant-ph/9504014 +quant-ph/9504017 +quant-ph/9504019 +quant-ph/9505001 +quant-ph/9505002 +quant-ph/9505003 +quant-ph/9505005 +quant-ph/9505007 +quant-ph/9505011 +quant-ph/9505012 +quant-ph/9505017 +quant-ph/9505020 +quant-ph/9505021 +quant-ph/9506003 +quant-ph/9506007 +quant-ph/9506008 +quant-ph/9506014 +quant-ph/9506016 +quant-ph/9506017 +quant-ph/9506019 +quant-ph/9506022 +quant-ph/9506027 +quant-ph/9506031 +quant-ph/9506032 +quant-ph/9506034 +quant-ph/9506037 +quant-ph/9506039 +quant-ph/9506041 +quant-ph/9507002 +quant-ph/9507004 +quant-ph/9507005 +quant-ph/9507008 +quant-ph/9507009 +quant-ph/9507012 +quant-ph/9507014 +quant-ph/9508001 +quant-ph/9508002 +quant-ph/9508004 +quant-ph/9508008 +quant-ph/9508010 +quant-ph/9508022 +quant-ph/9509001 +quant-ph/9509002 +quant-ph/9509003 +quant-ph/9509005 +quant-ph/9509006 +quant-ph/9509007 +quant-ph/9509008 +quant-ph/9509018 +quant-ph/9509019 +quant-ph/9510010 +quant-ph/9510013 +quant-ph/9510014 +quant-ph/9510015 +quant-ph/9510016 +quant-ph/9510018 +quant-ph/9510019 +quant-ph/9510021 +quant-ph/9510025 +quant-ph/9511004 +quant-ph/9511007 +quant-ph/9511008 +quant-ph/9511009 +quant-ph/9511010 +quant-ph/9511011 +quant-ph/9511018 +quant-ph/9511019 +quant-ph/9511024 +quant-ph/9511031 +quant-ph/9511033 +quant-ph/9512001 +quant-ph/9512006 +quant-ph/9512007 +quant-ph/9512008 +quant-ph/9512019 +quant-ph/9512022 +quant-ph/9512023 +quant-ph/9512024 +quant-ph/9512025 +quant-ph/9512032 +solv-int/9401001 Exactly Solvable and Integrable Systems +solv-int/9401003 Exactly Solvable and Integrable Systems +solv-int/9401004 Exactly Solvable and Integrable Systems +solv-int/9401005 Exactly Solvable and Integrable Systems +solv-int/9402001 Exactly Solvable and Integrable Systems +solv-int/9402004 Exactly Solvable and Integrable Systems +solv-int/9404003 Exactly Solvable and Integrable Systems +solv-int/9404004 Exactly Solvable and Integrable Systems +solv-int/9404005 Exactly Solvable and Integrable Systems +solv-int/9404006 Exactly Solvable and Integrable Systems +solv-int/9406001 Exactly Solvable and Integrable Systems +solv-int/9406002 Exactly Solvable and Integrable Systems +solv-int/9407001 Exactly Solvable and Integrable Systems +solv-int/9407002 Exactly Solvable and Integrable Systems +solv-int/9407004 Exactly Solvable and Integrable Systems +solv-int/9407005 Exactly Solvable and Integrable Systems +solv-int/9408001 Exactly Solvable and Integrable Systems +solv-int/9409004 Exactly Solvable and Integrable Systems +solv-int/9410003 Exactly Solvable and Integrable Systems +solv-int/9411001 Exactly Solvable and Integrable Systems +solv-int/9411002 Exactly Solvable and Integrable Systems +solv-int/9411004 Exactly Solvable and Integrable Systems +solv-int/9412004 Exactly Solvable and Integrable Systems +solv-int/9412007 Exactly Solvable and Integrable Systems +solv-int/9502004 Exactly Solvable and Integrable Systems +solv-int/9503002 Exactly Solvable and Integrable Systems +solv-int/9506005 Exactly Solvable and Integrable Systems +solv-int/9507002 Exactly Solvable and Integrable Systems +solv-int/9507003 Exactly Solvable and Integrable Systems +solv-int/9508003 Exactly Solvable and Integrable Systems +solv-int/9509001 Exactly Solvable and Integrable Systems +solv-int/9509005 Exactly Solvable and Integrable Systems +solv-int/9509008 Exactly Solvable and Integrable Systems +solv-int/9510002 Exactly Solvable and Integrable Systems +solv-int/9510004 Exactly Solvable and Integrable Systems +solv-int/9510005 Exactly Solvable and Integrable Systems +solv-int/9510006 Exactly Solvable and Integrable Systems +solv-int/9510007 Exactly Solvable and Integrable Systems +solv-int/9511001 Exactly Solvable and Integrable Systems +solv-int/9511002 Exactly Solvable and Integrable Systems +solv-int/9511005 Exactly Solvable and Integrable Systems +solv-int/9511007 Exactly Solvable and Integrable Systems +solv-int/9512001 Exactly Solvable and Integrable Systems +solv-int/9512005 Exactly Solvable and Integrable Systems +solv-int/9512006 Exactly Solvable and Integrable Systems +solv-int/9512007 Exactly Solvable and Integrable Systems +supr-con/9411002 Superconductivity +supr-con/9411003 Superconductivity +supr-con/9412001 Superconductivity +supr-con/9503001 Superconductivity +supr-con/9504002 Superconductivity +supr-con/9505001 Superconductivity +supr-con/9506001 Superconductivity +supr-con/9506002 Superconductivity +supr-con/9506003 Superconductivity +supr-con/9506004 Superconductivity +supr-con/9507001 Superconductivity +supr-con/9507002 Superconductivity +supr-con/9507003 Superconductivity +supr-con/9507004 Superconductivity +supr-con/9507005 Superconductivity +supr-con/9507006 Superconductivity +supr-con/9508001 Superconductivity +supr-con/9508002 Superconductivity +supr-con/9508003 Superconductivity +supr-con/9508004 Superconductivity +supr-con/9508006 Superconductivity +supr-con/9509001 Superconductivity +supr-con/9510001 Superconductivity +supr-con/9510002 Superconductivity +supr-con/9511002 Superconductivity +supr-con/9512001 Superconductivity +supr-con/9512002 Superconductivity +supr-con/9512003 Superconductivity +0707.1528 +0712.1381 Representation Theory +0712.3862 +0804.4589 +0805.4067 +0807.2185 Commutative Algebra +0809.2630 Atomic Physics +0901.2998 Optimization and Control +0901.3361 Algebraic Geometry +0901.4446 Instrumentation and Detectors +0902.0789 Numerical Analysis +math-ph/0609065 +math/0406591 Algebraic Geometry +math/0510470 Combinatorics +math/0611076 Geometric Topology +quant-ph/0612171 +0704.0091 Group Theory +0704.0163 Materials Science +0705.3631 Combinatorics +0707.2245 Phenomenology +0707.2736 +0708.1203 Materials Science +0708.2648 Theory +0803.0984 Mesoscale and Nanoscale Physics +0803.2368 Phenomenology +0804.2267 Analysis of PDEs +0805.1219 +0806.1602 Computational Geometry +0807.1147 Materials Science +0807.4592 Phenomenology +0808.0748 +0808.2601 +0808.2641 +0808.3185 +0808.4016 Molecular Networks +0809.2601 Phenomenology +0810.0196 Theory +0811.0403 Other Condensed Matter +0811.2153 Rings and Algebras +0812.0867 Mesoscale and Nanoscale Physics +0812.4939 +0901.4729 +0902.4607 Quantum Algebra +0903.1917 Phenomenology +0903.2884 Strongly Correlated Electrons +0905.0258 Experiment +0905.3809 Number Theory +0906.1826 Materials Science +0907.0589 Artificial Intelligence +0907.0629 Phenomenology +0907.0645 Computational Finance +0907.0701 Representation Theory +0907.0706 Numerical Analysis +0907.0714 High Energy Astrophysical Phenomena +0907.0715 High Energy Astrophysical Phenomena +0907.0725 Information Theory +0907.0729 K-Theory and Homology +0907.0734 Experiment +0907.0738 High Energy Astrophysical Phenomena +0907.0739 +0907.0741 Data Structures and Algorithms +0907.0743 Strongly Correlated Electrons +0907.0747 Functional Analysis +0907.0749 Programming Languages +0907.0750 Differential Geometry +0907.0751 Algebraic Topology +0907.0754 +0907.0759 Quantitative Methods +0907.0762 Probability +0907.0768 High Energy Astrophysical Phenomena +0907.0771 Number Theory +0907.0772 Analysis of PDEs +0907.0776 Number Theory +0907.0781 Machine Learning +0907.0782 Optics +0907.0783 Learning +0907.0784 Learning +0907.0785 Computation and Language +0907.0786 Learning +0907.0787 Group Theory +0907.0792 Mathematical Software +0907.0794 Plasma Physics +0907.0796 Mathematical Software +0907.0800 Differential Geometry +0907.0802 Logic +0907.0804 Computation and Language +0907.0805 +0907.0806 Computation and Language +0907.0807 Computation and Language +0907.0808 Learning +0907.0809 Learning +0907.0811 Representation Theory +0907.0813 Solar and Stellar Astrophysics +0907.0815 Solar and Stellar Astrophysics +0907.0821 Cryptography and Security +0907.0831 High Energy Astrophysical Phenomena +0907.0832 High Energy Astrophysical Phenomena +0907.0835 +0907.0840 Probability +0907.0849 Optics +0907.0853 Instrumentation and Methods for Astrophysics +0907.0856 Analysis of PDEs +0907.0857 Group Theory +0907.0862 Differential Geometry +0907.0865 Instrumentation and Methods for Astrophysics +0907.0870 Analysis of PDEs +0907.0873 Analysis of PDEs +0907.0876 K-Theory and Homology +0907.0882 Solar and Stellar Astrophysics +0907.0883 Phenomenology +0907.0885 Analysis of PDEs +0907.0890 +0907.0893 Cosmology and Nongalactic Astrophysics +0907.0894 Disordered Systems and Neural Networks +0907.0913 +0907.0916 Number Theory +0907.0920 Optics +0907.0927 Group Theory +0907.0929 Distributed, Parallel, and Cluster Computing +0907.0936 Representation Theory +0907.0937 Discrete Mathematics +0907.0939 Artificial Intelligence +0907.0940 Classical Physics +0907.0942 Formal Languages and Automata Theory +0907.0943 Instrumentation and Methods for Astrophysics +0907.0946 Instrumentation and Methods for Astrophysics +0907.0949 Phenomenology +0907.0959 Cosmology and Nongalactic Astrophysics +0907.0960 Instrumentation and Methods for Astrophysics +0907.0961 Experiment +0907.0964 +0907.0965 Representation Theory +0907.0968 Instrumentation and Methods for Astrophysics +0907.0973 Instrumentation and Methods for Astrophysics +0907.0974 Numerical Analysis +0907.0975 Dynamical Systems +0907.0977 +0907.0981 Strongly Correlated Electrons +0907.0986 Functional Analysis +0907.0987 High Energy Astrophysical Phenomena +0907.0988 Differential Geometry +0907.0989 Analysis of PDEs +0907.0990 Analysis of PDEs +0907.0991 Analysis of PDEs +0907.0992 High Energy Astrophysical Phenomena +0907.0993 High Energy Astrophysical Phenomena +0907.0994 High Energy Astrophysical Phenomena +0907.0995 General Mathematics +0907.0996 High Energy Astrophysical Phenomena +0907.0997 Rings and Algebras +0907.1001 High Energy Astrophysical Phenomena +0907.1003 Instrumentation and Methods for Astrophysics +0907.1004 Combinatorics +0907.1005 Information Retrieval +0907.1008 Soft Condensed Matter +0907.1009 High Energy Astrophysical Phenomena +0907.1012 Neural and Evolutionary Computing +0907.1013 Machine Learning +0907.1019 Geometric Topology +0907.1023 Astrophysics of Galaxies +0907.1026 Instrumentation and Methods for Astrophysics +0907.1038 Geometric Topology +0907.1044 Soft Condensed Matter +0907.1046 High Energy Astrophysical Phenomena +0907.1055 +0907.1056 Molecular Networks +0907.1062 +0907.1064 Statistics Theory +0907.1065 Computer Science and Game Theory +0907.1068 +0907.1071 Probability +0907.1080 Computational Geometry +astro-ph/0109459 +astro-ph/0307233 +astro-ph/0312110 +astro-ph/0312546 +astro-ph/0409616 +astro-ph/0504451 +astro-ph/0511365 +cond-mat/0609014 Other Condensed Matter +cs/0603093 Computational Geometry +cs/0703147 Computational Geometry +gr-qc/0004082 +gr-qc/0207121 +gr-qc/0307071 +gr-qc/0309002 +gr-qc/0309003 +gr-qc/0406025 +gr-qc/0406026 +gr-qc/0609129 +gr-qc/9411019 +gr-qc/9505015 +gr-qc/9506003 +gr-qc/9702057 +gr-qc/9706072 +gr-qc/9802065 +gr-qc/9803039 +gr-qc/9902067 +hep-ph/0103095 Phenomenology +hep-ph/0111299 Phenomenology +hep-ph/0405214 Phenomenology +hep-ph/0603168 Phenomenology +hep-ph/9607301 Phenomenology +hep-ph/9707498 Phenomenology +hep-th/0201051 Theory +hep-th/0406057 Theory +hep-th/0409130 Theory +hep-th/0508070 Theory +math/0309156 Metric Geometry +math/0601747 Combinatorics +math/0608039 Combinatorics +physics/0605028 Atomic Physics +0704.2250 Representation Theory +0712.2935 +0804.2281 Rings and Algebras +0806.2120 Strongly Correlated Electrons +0806.4216 +0807.2351 Algebraic Topology +0807.3787 Pattern Formation and Solitons +0810.2859 +0811.1297 Statistics Theory +0812.2712 Statistics Theory +0812.5076 Other Condensed Matter +0901.1228 Combinatorics +0904.3196 Soft Condensed Matter +0905.1437 Statistics Theory +0905.2603 Representation Theory +0905.3831 Data Analysis, Statistics and Probability +0906.3780 Exactly Solvable and Integrable Systems +0907.0410 Theory +0907.1774 Exactly Solvable and Integrable Systems +0907.3256 Mesoscale and Nanoscale Physics +0907.3672 Other Condensed Matter +0907.4030 Superconductivity +0907.4374 Phenomenology +0908.0834 Strongly Correlated Electrons +0908.4065 Superconductivity +0909.0117 Physics and Society +0909.0937 Superconductivity +0909.1386 Cosmology and Nongalactic Astrophysics +0909.2671 Statistical Mechanics +0909.2746 +0909.2876 Statistical Mechanics +0909.4090 Phenomenology +0910.0531 Algebraic Topology +0910.0902 Learning +0910.2776 Materials Science +0911.2144 +0911.2568 Representation Theory +0911.5564 Physics and Society +0911.5570 Physics and Society +0912.0160 Optics +0912.2227 Algebraic Topology +0912.2309 Materials Science +0912.2681 Phenomenology +0912.3232 Probability +0912.3619 Phenomenology +0912.3807 High Energy Astrophysical Phenomena +0912.3960 Neural and Evolutionary Computing +0912.4272 Group Theory +0912.4281 Plasma Physics +0912.4283 Cell Behavior +0912.4289 Information Theory +0912.4294 High Energy Astrophysical Phenomena +0912.4297 Geometric Topology +0912.4301 Solar and Stellar Astrophysics +0912.4303 Instrumentation and Methods for Astrophysics +0912.4304 Astrophysics of Galaxies +0912.4310 Atomic Physics +0912.4314 Differential Geometry +0912.4323 Networking and Internet Architecture +0912.4324 Networking and Internet Architecture +0912.4325 Number Theory +0912.4328 Atomic and Molecular Clusters +0912.4331 Probability +0912.4340 Spectral Theory +0912.4344 Analysis of PDEs +0912.4348 Phenomenology +0912.4354 Cosmology and Nongalactic Astrophysics +0912.4360 Programming Languages +0912.4364 +0912.4365 Statistics Theory +0912.4367 Optimization and Control +0912.4368 Analysis of PDEs +0912.4375 Algebraic Topology +0912.4379 +0912.4380 Experiment +0912.4386 Statistics Theory +0912.4390 Networking and Internet Architecture +0912.4391 Molecular Networks +0912.4393 Computational Physics +0912.4395 Atmospheric and Oceanic Physics +0912.4400 Analysis of PDEs +0912.4404 Pricing of Securities +0912.4406 Complex Variables +0912.4408 Differential Geometry +0912.4410 Lattice +0912.4413 Earth and Planetary Astrophysics +0912.4417 Instrumentation and Detectors +0912.4418 +0912.4422 Phenomenology +0912.4425 Optics +0912.4430 Symbolic Computation +0912.4431 Disordered Systems and Neural Networks +0912.4432 Superconductivity +0912.4437 Functional Analysis +0912.4439 Plasma Physics +0912.4442 Analysis of PDEs +0912.4443 Combinatorics +0912.4461 Combinatorics +0912.4470 Differential Geometry +0912.4476 Group Theory +0912.4478 Analysis of PDEs +0912.4479 Phenomenology +0912.4482 Classical Analysis and ODEs +0912.4486 Spectral Theory +0912.4487 Optics +0912.4488 Functional Analysis +0912.4492 High Energy Astrophysical Phenomena +0912.4495 +0912.4501 Differential Geometry +0912.4502 Populations and Evolution +0912.4509 Mesoscale and Nanoscale Physics +0912.4512 Algebraic Geometry +cond-mat/0701734 Superconductivity +math/0309302 Quantum Algebra +math/0309303 Representation Theory +quant-ph/0702147 +0707.2400 Logic +0802.2031 +0803.2720 Disordered Systems and Neural Networks +0804.0194 Algebraic Geometry +0804.4828 Materials Science +0807.0023 Information Retrieval +0808.3473 Superconductivity +0809.0747 Other Condensed Matter +0809.1434 +0810.0764 Information Theory +0810.2659 Networking and Internet Architecture +0810.4748 Quantum Algebra +0811.2425 Theory +0901.0749 Information Theory +0902.2534 Cosmology and Nongalactic Astrophysics +cond-mat/0702619 Materials Science +0708.1193 Classical Analysis and ODEs +0709.3131 Statistical Mechanics +0807.0996 Theory +0807.2263 +0808.2707 Exactly Solvable and Integrable Systems +0810.3278 +0811.1378 Functional Analysis +0812.1298 +0812.2884 Differential Geometry +0812.4038 Mesoscale and Nanoscale Physics +0901.0370 Differential Geometry +0901.1042 General Physics +0901.1410 Superconductivity +0901.1492 Information Theory +0902.1227 Artificial Intelligence +0904.0660 Solar and Stellar Astrophysics +0904.4472 Combinatorics +0905.1766 Instrumentation and Detectors +0905.2050 +0905.2318 Phenomenology +0906.0008 Phenomenology +0906.4685 +0906.4687 +0907.0127 Statistical Mechanics +0907.0271 Solar and Stellar Astrophysics +0907.0709 Combinatorics +0907.0801 Differential Geometry +0907.1831 +0907.3100 Soft Condensed Matter +0908.2902 Superconductivity +0908.3620 Mesoscale and Nanoscale Physics +0909.0146 Solar and Stellar Astrophysics +0909.1010 Solar and Stellar Astrophysics +0909.1513 Solar and Stellar Astrophysics +0909.1714 Quantum Gases +0909.2205 Disordered Systems and Neural Networks +0909.5638 Statistical Mechanics +0910.0835 Subcellular Processes +0910.2974 +0911.0250 Strongly Correlated Electrons +0911.0826 Quantum Gases +0911.1953 Materials Science +0911.3364 Differential Geometry +0912.0051 Group Theory +0912.1202 Phenomenology +0912.1413 +0912.1616 Phenomenology +0912.1684 Strongly Correlated Electrons +0912.1855 Physics and Society +0912.1863 Accelerator Physics +0912.1864 General Physics +0912.1878 Cosmology and Nongalactic Astrophysics +0912.1880 Combinatorics +0912.1886 Probability +0912.1889 Cosmology and Nongalactic Astrophysics +0912.1900 Logic in Computer Science +0912.1901 Logic in Computer Science +0912.1903 Logic in Computer Science +0912.1906 Pattern Formation and Solitons +0912.1909 Information Theory +0912.1911 Physics and Society +0912.1912 Logic +0912.1921 Differential Geometry +0912.1923 Differential Geometry +0912.1925 Probability +0912.1927 Cryptography and Security +0912.1928 Probability +0912.1932 Astrophysics of Galaxies +0912.1933 Phenomenology +0912.1935 Analysis of PDEs +0912.1936 Optics +0912.1940 General Physics +0912.1945 Functional Analysis +0912.1947 +0912.1950 Probability +0912.1952 Geometric Topology +0912.1957 Algebraic Geometry +0912.1958 +0912.1963 Commutative Algebra +0912.1964 Number Theory +0912.1966 Solar and Stellar Astrophysics +0912.1967 Analysis of PDEs +0912.1972 Algebraic Geometry +0912.1981 Representation Theory +0912.1986 Statistical Mechanics +0912.1987 Information Theory +0912.1990 +0912.1997 Number Theory +0912.1999 Combinatorics +0912.2001 Superconductivity +0912.2002 Metric Geometry +0912.2006 Differential Geometry +0912.2011 Cosmology and Nongalactic Astrophysics +0912.2019 Earth and Planetary Astrophysics +0912.2032 Digital Libraries +0912.2037 General Physics +0912.2038 Representation Theory +0912.2039 Functional Analysis +0912.2047 Distributed, Parallel, and Cluster Computing +0912.2048 Earth and Planetary Astrophysics +0912.2051 Algebraic Geometry +0912.2056 Popular Physics +0912.2057 Analysis of PDEs +0912.2072 Cosmology and Nongalactic Astrophysics +0912.2075 Number Theory +0912.2079 Cosmology and Nongalactic Astrophysics +0912.2085 Computational Physics +0912.2087 Materials Science +hep-ph/0607274 Phenomenology +math/0605058 Dynamical Systems +math/0702135 Number Theory +physics/0406137 History and Philosophy of Physics +0705.1728 +0811.1123 Superconductivity +0811.2518 Information Theory +0812.3359 +0902.2071 Combinatorics +0902.3201 +0902.3955 Statistical Mechanics +0903.1532 Dynamical Systems +0903.2608 Biological Physics +0903.4961 Distributed, Parallel, and Cluster Computing +0904.0352 Data Structures and Algorithms +0904.4032 Fluid Dynamics +0905.1966 Materials Science +0907.1383 Materials Science +0907.1587 Computational Physics +0907.1650 Atmospheric and Oceanic Physics +math-ph/0312007 +math/0303312 Operator Algebras +math/0405191 Operator Algebras +math/0503169 Operator Algebras +math/0509214 Algebraic Geometry +math/0606507 Operator Algebras +math/0607570 Combinatorics +quant-ph/0511069 +0708.0300 Differential Geometry +0708.4326 +0709.0071 Number Theory +0709.3495 +0709.3683 Medical Physics +0712.3703 +0801.3616 Phenomenology +0801.3850 Differential Geometry +0802.2786 Soft Condensed Matter +0803.0075 Theory +0803.4407 Plasma Physics +0804.1358 +0805.0291 +0805.0483 +0805.1132 +0805.3134 +0805.3761 Differential Geometry +0805.4279 +0806.0340 +0806.1804 +0806.1850 Phenomenology +0806.4040 +0806.4165 +0807.1517 Theory +0807.3218 +0807.3244 +0807.4093 Theory +0808.2239 Numerical Analysis +0808.2577 Data Analysis, Statistics and Probability +0808.4127 +0809.1151 Phenomenology +0809.1499 Phenomenology +0809.2148 Information Theory +0809.2966 +0810.1985 Theory +0810.2246 +0810.2898 Atomic Physics +0810.3825 Theory +0810.4380 Phenomenology +0810.5355 Theory +0810.5468 Theory +0811.0288 +0811.1423 +0811.3919 +0812.0001 Phenomenology +0812.1939 Phenomenology +0812.1943 Phenomenology +0812.2038 +0812.2904 +0812.3260 +0812.3886 Theory +0812.4229 Theory +0812.4539 Superconductivity +0901.0610 Theory +0901.0675 +0901.1128 Theory +0901.1137 Theory +0901.1641 Cosmology and Nongalactic Astrophysics +0901.1772 Theory +0901.1865 Phenomenology +0901.1934 Phenomenology +0901.2108 Theory +0901.2191 Theory +0901.2874 Theory +0901.3285 Other Condensed Matter +0901.3371 Phenomenology +0901.3412 Theory +0901.3445 Theory +0901.3498 Phenomenology +0901.3770 Other Condensed Matter +0901.4148 Theory +0901.4458 Theory +0901.4848 Theory +0901.4862 Theory +0902.0078 Theory +0902.0618 Cosmology and Nongalactic Astrophysics +0902.0650 Theory +0902.0658 +0902.0790 +0902.1326 Atmospheric and Oceanic Physics +0902.1681 Theory +0902.1983 Astrophysics of Galaxies +0902.2007 +0902.3358 Theory +0902.3410 Other Condensed Matter +0902.3412 +0902.3476 +0902.3564 +0902.3773 Algebraic Topology +0902.3915 Theory +0902.3942 +0902.3998 Earth and Planetary Astrophysics +0902.4466 Cosmology and Nongalactic Astrophysics +0902.4888 Theory +0903.0088 Theory +0903.0259 Theory +0903.0511 Theory +0903.0722 Theory +0903.0811 Atomic Physics +0903.0836 Solar and Stellar Astrophysics +0903.0851 +0903.1355 Cosmology and Nongalactic Astrophysics +0903.2228 Materials Science +0903.2358 Lattice +0903.2480 Strongly Correlated Electrons +0903.2849 Theory +0903.3201 Number Theory +0903.3362 Probability +0903.3443 Theory +0903.3645 +0903.3787 Disordered Systems and Neural Networks +0903.3851 Phenomenology +0903.4064 Superconductivity +0903.4811 Theory +0904.0270 Classical Analysis and ODEs +0904.0517 +0904.1139 +0904.1219 Phenomenology +0904.1383 Cosmology and Nongalactic Astrophysics +0904.1445 Phenomenology +0904.1709 +0904.1735 Phenomenology +0904.1738 Differential Geometry +0904.2046 Mesoscale and Nanoscale Physics +0904.2392 Solar and Stellar Astrophysics +0904.2778 Cosmology and Nongalactic Astrophysics +0904.3570 Phenomenology +0904.3599 Solar and Stellar Astrophysics +0904.3673 +0904.4080 +0904.4487 Theory +0904.4546 Solar and Stellar Astrophysics +0904.4556 Theory +0904.4917 Phenomenology +0905.0112 Other Condensed Matter +0905.0131 +0905.0700 Theory +0905.0892 Cosmology and Nongalactic Astrophysics +0905.1595 Phenomenology +0905.1686 Phenomenology +0905.2130 Theory +0905.2956 Cosmology and Nongalactic Astrophysics +0905.3695 +0905.4696 Phenomenology +0905.4704 +0906.0300 Mesoscale and Nanoscale Physics +0906.0374 Cosmology and Nongalactic Astrophysics +0906.0819 Astrophysics of Galaxies +0906.1101 +0906.1211 Cosmology and Nongalactic Astrophysics +0906.1635 High Energy Astrophysical Phenomena +0906.1911 Rings and Algebras +0906.3523 +0906.4709 Theory +0906.5425 General Physics +0907.1571 Mesoscale and Nanoscale Physics +0907.3514 Strongly Correlated Electrons +0907.4100 Artificial Intelligence +0907.4317 Functional Analysis +0907.4526 Number Theory +0907.4734 Atomic Physics +0907.4737 +0907.4860 Cosmology and Nongalactic Astrophysics +0907.5417 Materials Science +0907.5425 General Physics +0907.5426 High Energy Astrophysical Phenomena +0907.5429 Computers and Society +0907.5433 Information Retrieval +0907.5435 High Energy Astrophysical Phenomena +0907.5437 +0907.5441 Networking and Internet Architecture +0907.5442 Networking and Internet Architecture +0907.5443 Networking and Internet Architecture +0907.5448 Statistics Theory +0907.5452 Fluid Dynamics +0907.5468 Probability +0907.5469 Computer Science and Game Theory +0907.5472 Theory +0907.5474 Data Structures and Algorithms +0907.5480 High Energy Astrophysical Phenomena +0907.5481 Discrete Mathematics +0907.5492 Differential Geometry +0907.5494 Machine Learning +0907.5500 Human-Computer Interaction +0907.5501 Probability +0907.5502 General Physics +0907.5504 Probability +0907.5508 Experiment +0907.5511 Experiment +0907.5514 Instrumentation and Methods for Astrophysics +0907.5515 Cosmology and Nongalactic Astrophysics +0907.5517 High Energy Astrophysical Phenomena +0907.5520 Strongly Correlated Electrons +0907.5521 +0907.5524 Analysis of PDEs +0907.5528 Differential Geometry +0907.5530 Superconductivity +0907.5538 Information Retrieval +0907.5545 +0907.5546 +0907.5547 Superconductivity +0907.5548 +0907.5553 Combinatorics +0907.5563 Instrumentation and Methods for Astrophysics +0907.5570 Operator Algebras +0907.5577 Combinatorics +0907.5579 Group Theory +0907.5592 Group Theory +0907.5596 Metric Geometry +0907.5599 Pricing of Securities +0907.5600 Risk Management +0907.5601 Cosmology and Nongalactic Astrophysics +astro-ph/0408411 +cond-mat/0511475 Materials Science +cond-mat/0603618 Soft Condensed Matter +cond-mat/0701204 Statistical Mechanics +cond-mat/0701268 Materials Science +cs/0612033 Computation and Language +cs/0612041 Computation and Language +hep-ex/0608020 Experiment +hep-ph/0611378 Phenomenology +hep-th/0509116 Theory +hep-th/0601166 Theory +hep-th/0701131 Theory +math/0102185 Differential Geometry +math/0509620 Combinatorics +physics/0603016 History and Philosophy of Physics +physics/0610249 Instrumentation and Detectors +quant-ph/0107048 +quant-ph/0205030 +quant-ph/0206072 +quant-ph/0212150 +quant-ph/0212158 +quant-ph/0304021 +quant-ph/0401182 +quant-ph/0402023 +quant-ph/0402024 +quant-ph/0404053 +quant-ph/0407263 +quant-ph/0408024 +quant-ph/0409153 +quant-ph/0603149 +quant-ph/0605146 +0710.4916 Physics and Society +0712.0251 Statistical Mechanics +0801.1497 Superconductivity +0801.3774 Analysis of PDEs +0802.0931 Analysis of PDEs +0803.3219 Algebraic Geometry +0804.1420 General Physics +0804.1859 Strongly Correlated Electrons +0804.2694 Metric Geometry +0804.3984 Geometric Topology +0805.3602 Computation +0806.0895 Materials Science +0806.3055 Materials Science +0806.4002 Atomic Physics +0807.1648 Analysis of PDEs +0807.2770 Materials Science +0807.3144 General Physics +0808.0423 Materials Science +0809.2786 +0809.4106 Probability +0810.0082 Analysis of PDEs +0810.0911 Classical Analysis and ODEs +0810.4122 Number Theory +0811.0601 +0811.0749 Strongly Correlated Electrons +0812.1542 Combinatorics +0812.1996 Statistical Mechanics +0812.3827 +0901.0352 Analysis of PDEs +0901.1834 Strongly Correlated Electrons +0901.2636 Phenomenology +0902.0180 Phenomenology +0902.0300 Theory +0902.0372 Phenomenology +0902.1783 Optics +0902.1995 Cosmology and Nongalactic Astrophysics +0902.2003 Algebraic Geometry +0902.2009 Algebraic Geometry +0902.2012 Probability +0902.2014 Earth and Planetary Astrophysics +0902.2017 +0902.2019 Differential Geometry +0902.2034 Solar and Stellar Astrophysics +0902.2035 Atomic and Molecular Clusters +0902.2036 Information Theory +0902.2040 +0902.2042 Materials Science +0902.2043 Materials Science +0902.2045 Materials Science +0902.2047 Analysis of PDEs +0902.2054 Numerical Analysis +0902.2056 Medical Physics +0902.2064 Cosmology and Nongalactic Astrophysics +0902.2067 Instrumentation and Detectors +0902.2072 Logic in Computer Science +0902.2078 Soft Condensed Matter +0902.2083 Molecular Networks +0902.2086 Optimization and Control +0902.2090 Differential Geometry +0902.2095 +0902.2101 Probability +0902.2102 Functional Analysis +0902.2103 Statistics Theory +0902.2104 Logic in Computer Science +0902.2109 Theory +0902.2110 Probability +0902.2111 Theory +0902.2113 Data Analysis, Statistics and Probability +0902.2116 Rings and Algebras +0902.2117 Statistics Theory +0902.2125 Logic in Computer Science +0902.2130 Mesoscale and Nanoscale Physics +0902.2133 Probability +0902.2138 Complex Variables +0902.2141 Computational Complexity +0902.2144 Quantum Algebra +0902.2146 Computational Complexity +0902.2149 Computational Complexity +0902.2150 Discrete Mathematics +0902.2154 Probability +0902.2155 Commutative Algebra +0902.2160 Data Analysis, Statistics and Probability +0902.2162 +0902.2166 Discrete Mathematics +0902.2169 +0902.2176 Experiment +0902.2178 Other Condensed Matter +0902.2180 History and Overview +0902.2181 Combinatorics +0902.2184 Physics and Society +0902.2185 Probability +0902.2186 Robotics +0902.2187 Computer Vision and Pattern Recognition +0902.2188 Classical Analysis and ODEs +0902.2191 Differential Geometry +0902.2192 Instrumentation and Detectors +0902.2196 +0902.2207 Algebraic Geometry +cond-mat/0302197 Superconductivity +cond-mat/0408492 Superconductivity +hep-ph/0511194 Phenomenology +hep-th/0509122 Theory +math/0603570 Analysis of PDEs +math/0607255 Analysis of PDEs +math/0609518 Probability +math/0610063 Algebraic Geometry +math/0701231 Differential Geometry +math/0702153 Analysis of PDEs +0712.0424 Materials Science +0805.3402 Physics and Society +0806.4277 +0807.0119 +0903.0421 Superconductivity +0904.0905 Other Condensed Matter +0905.1781 Cosmology and Nongalactic Astrophysics +0905.2644 Combinatorics +0906.1119 Astrophysics of Galaxies +gr-qc/0212052 +0707.0603 +0708.0252 Complex Variables +0709.1772 Phenomenology +0710.2355 Fluid Dynamics +0710.4487 +0801.1818 Differential Geometry +0804.1642 Risk Management +0805.2335 Differential Geometry +0806.1508 General Physics +0806.3114 Phenomenology +0807.0134 Mesoscale and Nanoscale Physics +0807.1626 +0808.3875 +0809.0654 Neurons and Cognition +0809.2985 Atomic Physics +0809.3177 Atomic Physics +0809.3420 Algebraic Geometry +0811.1244 Mesoscale and Nanoscale Physics +0811.3735 Analysis of PDEs +0811.3913 Functional Analysis +0812.0509 +0812.4413 +0901.4156 Symplectic Geometry +0901.4438 Phenomenology +0902.1073 +0902.1899 Statistical Mechanics +0903.0548 Information Theory +0903.1639 Mesoscale and Nanoscale Physics +0903.3387 Mesoscale and Nanoscale Physics +0903.3790 Representation Theory +0903.4953 Materials Science +0904.2927 Quantum Gases +0904.4057 Information Theory +0905.1620 Soft Condensed Matter +0905.2269 Mesoscale and Nanoscale Physics +0905.3558 Data Analysis, Statistics and Probability +0906.0023 +0906.1879 Phenomenology +0906.1882 Classical Analysis and ODEs +0906.4158 +0907.2831 Combinatorics +0907.3251 Statistical Mechanics +0907.4427 +0907.5202 Superconductivity +0908.0335 Materials Science +0908.1430 Differential Geometry +0908.1563 Quantum Algebra +0908.3119 Strongly Correlated Electrons +0909.0762 Superconductivity +0909.1832 Statistical Mechanics +0909.1982 Analysis of PDEs +0909.3318 Mesoscale and Nanoscale Physics +0909.3649 Fluid Dynamics +0910.0146 Phenomenology +0910.0929 Materials Science +0910.1087 Theory +0910.1543 Statistical Mechanics +0910.1869 Information Retrieval +0910.2574 History and Philosophy of Physics +0910.2957 +0910.3023 Cosmology and Nongalactic Astrophysics +0910.3036 Cosmology and Nongalactic Astrophysics +0910.3418 Strongly Correlated Electrons +0910.4457 Phenomenology +0910.4592 Materials Science +0910.4596 Materials Science +0910.4597 Commutative Algebra +0910.4601 Geometric Topology +0910.4608 Experiment +0910.4610 Methodology +0910.4617 Differential Geometry +0910.4620 Analysis of PDEs +0910.4626 Fluid Dynamics +0910.4627 Learning +0910.4628 Combinatorics +0910.4629 Combinatorics +0910.4639 Commutative Algebra +0910.4641 General Physics +0910.4645 Commutative Algebra +0910.4647 Combinatorics +0910.4652 Analysis of PDEs +0910.4656 Representation Theory +0910.4662 Combinatorics +0910.4664 Discrete Mathematics +0910.4665 Mesoscale and Nanoscale Physics +0910.4666 +0910.4669 Materials Science +0910.4673 Classical Analysis and ODEs +0910.4674 Number Theory +0910.4685 Classical Physics +0910.4690 Quantum Algebra +0910.4692 Disordered Systems and Neural Networks +0910.4694 +0910.4696 Methodology +0910.4698 +0910.4699 Computer Science and Game Theory +0910.4700 Optics +0910.4706 Phenomenology +0910.4707 High Energy Astrophysical Phenomena +0910.4708 Mesoscale and Nanoscale Physics +0910.4711 Computer Vision and Pattern Recognition +0910.4715 Classical Analysis and ODEs +0910.4717 Dynamical Systems +0910.4718 Instrumentation and Methods for Astrophysics +0910.4719 Dynamical Systems +0910.4720 Analysis of PDEs +0910.4721 Analysis of PDEs +0910.4727 Experiment +0910.4730 Solar and Stellar Astrophysics +0910.4733 Solar and Stellar Astrophysics +0910.4743 Combinatorics +0910.4746 Representation Theory +0910.4749 Differential Geometry +0910.4753 Experiment +0910.4758 Representation Theory +0910.4760 Rings and Algebras +0910.4769 Information Retrieval +0910.4770 Geometric Topology +0910.4773 Astrophysics of Galaxies +0910.4776 +0910.4781 Computational Physics +0910.4788 Analysis of PDEs +0910.4789 Group Theory +0910.4790 Analysis of PDEs +0910.4792 General Mathematics +0910.4794 Combinatorics +0910.4799 Cosmology and Nongalactic Astrophysics +0910.4800 Dynamical Systems +0910.4801 History and Philosophy of Physics +0910.4807 History and Overview +0910.4809 Dynamical Systems +0910.4815 History and Overview +0910.4816 +0910.4817 Applications +0910.4823 +0910.4824 High Energy Astrophysical Phenomena +0910.4826 Quantum Algebra +0910.4834 Optimization and Control +0910.4835 Cosmology and Nongalactic Astrophysics +0910.4842 Cosmology and Nongalactic Astrophysics +0910.4847 +0910.4848 Mesoscale and Nanoscale Physics +0910.4854 Graphics +0910.4857 Group Theory +0910.4865 Performance +0910.4869 Classical Analysis and ODEs +0910.4870 Probability +0910.4874 Information Theory +0910.4877 Cosmology and Nongalactic Astrophysics +0910.4884 Phenomenology +0910.4885 Representation Theory +0910.4886 Group Theory +0910.4888 Representation Theory +0910.4889 Combinatorics +0910.4890 Statistical Mechanics +0910.4896 Fluid Dynamics +0910.4897 Fluid Dynamics +0910.4902 Statistical Mechanics +0910.4911 Probability +0910.4916 Analysis of PDEs +0910.4922 Quantum Gases +0910.4923 Chaotic Dynamics +0910.4931 Representation Theory +0910.4934 Medical Physics +0910.4935 Cosmology and Nongalactic Astrophysics +0910.4948 Algebraic Topology +0910.4955 Information Theory +astro-ph/0510763 +cond-mat/0601233 Statistical Mechanics +cond-mat/0612471 Statistical Mechanics +math/0609608 Logic +math/0609751 Complex Variables +math/0611183 Differential Geometry +0705.4480 +0708.1352 Algebraic Geometry +0710.3471 Theory +0711.1553 +0712.4299 Classical Analysis and ODEs +0801.0562 Disordered Systems and Neural Networks +0802.2494 Materials Science +0803.1467 Theory +0803.4435 Algebraic Geometry +0805.3917 +0805.4275 Strongly Correlated Electrons +0806.0954 Phenomenology +0807.0136 +0807.1618 Theory +0807.4686 Phenomenology +0808.2818 +0808.2823 +0809.1134 Phenomenology +0809.2480 Phenomenology +0809.4995 +0810.1942 Dynamical Systems +0810.2316 Theory +0810.2356 Theory +0810.2680 Phenomenology +0810.3850 +0810.4453 Phenomenology +0811.2770 +0812.0324 Lattice +0812.1882 +0812.2848 +0812.2907 Superconductivity +0812.4796 Phenomenology +0812.4904 +0901.1897 Phenomenology +0901.2054 Theory +0901.2782 Phenomenology +0901.3780 Phenomenology +0902.1597 Phenomenology +0902.1854 Strongly Correlated Electrons +0902.2443 +0902.2906 Materials Science +0902.3755 Algebraic Geometry +0902.3910 Phenomenology +0903.1378 Algebraic Geometry +0903.2440 Phenomenology +0903.3473 Phenomenology +0903.5279 Exactly Solvable and Integrable Systems +0904.1077 Phenomenology +0904.1883 Rings and Algebras +0905.0818 General Mathematics +0905.1168 Theory +0905.2813 Numerical Analysis +0905.3654 Astrophysics of Galaxies +0905.3796 Other Condensed Matter +0906.0066 +0906.0945 Lattice +0906.1506 Statistical Mechanics +0906.2484 Metric Geometry +0906.2494 Disordered Systems and Neural Networks +0906.5426 Quantum Gases +0906.5429 +0907.0538 Dynamical Systems +0907.0778 +0907.1079 Theory +0907.1237 Strongly Correlated Electrons +0907.1244 Soft Condensed Matter +0907.1323 Quantum Gases +0907.1564 Statistical Mechanics +0907.2717 Disordered Systems and Neural Networks +0907.3048 +0907.3978 Phenomenology +0907.4346 Physics and Society +0907.5009 Theory +0907.5011 Theory +0907.5036 Theory +0907.5144 Theory +0907.5159 Phenomenology +0907.5160 +0907.5256 Theory +0907.5280 Theory +0907.5307 Phenomenology +0907.5348 Accelerator Physics +0907.5555 Theory +0908.0159 Phenomenology +0908.0941 Phenomenology +0908.3158 Cosmology and Nongalactic Astrophysics +0909.0300 +0909.0320 Disordered Systems and Neural Networks +0909.0684 Classical Analysis and ODEs +0909.1745 Plasma Physics +0909.2029 Strongly Correlated Electrons +0909.2246 Physics and Society +0909.3879 +0909.4717 Commutative Algebra +0910.1291 Analysis of PDEs +0910.1408 Number Theory +0910.1680 Algebraic Geometry +0910.1989 Experiment +0910.2561 Phenomenology +0910.2695 Cosmology and Nongalactic Astrophysics +0910.2699 Cosmology and Nongalactic Astrophysics +0910.2700 Combinatorics +0910.2702 High Energy Astrophysical Phenomena +0910.2718 Information Theory +0910.2722 Probability +0910.2724 General Physics +0910.2736 General Mathematics +0910.2737 +0910.2739 Analysis of PDEs +0910.2740 Astrophysics of Galaxies +0910.2756 Theory +0910.2761 Optimization and Control +0910.2764 Solar and Stellar Astrophysics +0910.2767 Instrumentation and Detectors +0910.2769 Differential Geometry +0910.2770 Number Theory +0910.2774 +0910.2785 Algebraic Geometry +0910.2787 Superconductivity +0910.2796 +0910.2801 Optics +0910.2812 Solar and Stellar Astrophysics +0910.2814 Theory +0910.2815 Algebraic Geometry +0910.2818 Networking and Internet Architecture +0910.2820 +0910.2832 Information Theory +0910.2834 +0910.2837 Differential Geometry +0910.2838 Disordered Systems and Neural Networks +0910.2850 +0910.2856 Dynamical Systems +0910.2857 +0910.2862 Fluid Dynamics +0910.2864 Statistical Mechanics +0910.2871 +0910.2872 Geometric Topology +0910.2875 Dynamical Systems +0910.2878 Instrumentation and Detectors +0910.2884 Experiment +0910.2886 Classical Analysis and ODEs +0910.2891 Computer Science and Game Theory +0910.2898 Disordered Systems and Neural Networks +0910.2900 Representation Theory +0910.2901 Superconductivity +0910.2906 Statistical Mechanics +0910.2908 Statistical Mechanics +0910.2910 +0910.2911 Solar and Stellar Astrophysics +0910.2913 Differential Geometry +0910.2915 Differential Geometry +0910.2917 Computer Vision and Pattern Recognition +0910.2922 Probability +0910.2923 +0910.2931 +0910.2932 Probability +0910.2933 Differential Geometry +0910.2935 Instrumentation and Methods for Astrophysics +0910.2939 +0910.2941 Combinatorics +0910.2942 Distributed, Parallel, and Cluster Computing +0910.2944 Mesoscale and Nanoscale Physics +0910.2945 Experiment +0910.2946 Instrumentation and Methods for Astrophysics +0910.2948 Phenomenology +0910.2951 Analysis of PDEs +0910.2953 Solar and Stellar Astrophysics +0910.2958 General Topology +0910.2961 Information Theory +0910.2964 Experiment +0910.2968 Fluid Dynamics +0910.2972 Analysis of PDEs +0910.2973 Symbolic Computation +astro-ph/0001388 +astro-ph/0004288 +astro-ph/0104361 +astro-ph/0205051 +astro-ph/0303428 +astro-ph/0401217 +astro-ph/0401353 +astro-ph/0402325 +astro-ph/0405634 +astro-ph/0406158 +astro-ph/0406179 +astro-ph/0606295 +astro-ph/0606336 +astro-ph/0610249 +astro-ph/0610491 +astro-ph/0702507 +astro-ph/9411005 +astro-ph/9708143 +astro-ph/9709205 +astro-ph/9804062 +astro-ph/9804064 +astro-ph/9903271 +gr-qc/9503057 +hep-ex/0401016 Experiment +hep-ph/0102145 Phenomenology +hep-ph/0610196 Phenomenology +hep-th/0010148 Theory +hep-th/0010278 Theory +hep-th/9904137 Theory +quant-ph/0406066 +quant-ph/0410135 +quant-ph/0606078 +0704.2808 Information Theory +0705.4199 +0706.0825 Mesoscale and Nanoscale Physics +0706.3141 Optimization and Control +0710.4018 Phenomenology +0801.0013 +0801.3947 Statistical Mechanics +0801.4332 Optimization and Control +0804.2170 Strongly Correlated Electrons +0805.1411 K-Theory and Homology +0805.2073 Theory +0806.0933 Combinatorics +0806.3240 +0807.3128 +0808.1735 +0810.0521 +0810.5050 +0811.3675 Phenomenology +0811.4112 Analysis of PDEs +0812.2228 Commutative Algebra +0812.4154 Numerical Analysis +0812.4406 Strongly Correlated Electrons +0901.1488 +0901.4785 Statistical Mechanics +0902.0006 Phenomenology +0902.0107 Other Condensed Matter +0902.0590 Theory +0902.3276 Experiment +0902.3310 Mesoscale and Nanoscale Physics +0902.3627 Soft Condensed Matter +0902.4665 Phenomenology +0903.0419 Physics and Society +0903.1634 +0903.1920 Cosmology and Nongalactic Astrophysics +0903.2250 Phenomenology +0903.2355 Theory +0903.2551 Phenomenology +0903.2625 +0903.3051 Cosmology and Nongalactic Astrophysics +0903.3139 Phenomenology +0903.3367 Physics Education +0903.4009 Statistical Mechanics +0904.0040 Mesoscale and Nanoscale Physics +0904.0472 Cosmology and Nongalactic Astrophysics +0904.1062 Phenomenology +0904.1106 Soft Condensed Matter +0904.2976 Theory +0904.3244 Phenomenology +0904.3596 +0904.4680 Theory +0905.0125 Theory +0905.0578 +0905.1325 Theory +0905.1480 +0905.1707 Superconductivity +0905.2055 +0905.3006 Phenomenology +0905.3515 Cosmology and Nongalactic Astrophysics +0906.0028 Phenomenology +0906.0074 +0906.0662 Phenomenology +0906.2327 Phenomenology +0906.2820 Information Theory +0906.2970 Superconductivity +0906.3358 +0906.3950 Phenomenology +0906.4336 Astrophysics of Galaxies +0906.4531 Theory +0906.4776 Cosmology and Nongalactic Astrophysics +0906.5395 Cosmology and Nongalactic Astrophysics +0907.2467 Probability +0907.2493 Analysis of PDEs +0907.3565 Theory +0907.3738 Astrophysics of Galaxies +0907.5455 Strongly Correlated Electrons +0908.0378 Astrophysics of Galaxies +0908.1514 +0908.1579 Fluid Dynamics +0908.1584 Human-Computer Interaction +0908.1587 Theory +0908.1588 Materials Science +0908.1594 Differential Geometry +0908.1595 Statistical Mechanics +0908.1602 Applications +0908.1603 Tissues and Organs +0908.1607 Probability +0908.1608 Computational Geometry +0908.1611 Number Theory +0908.1613 Computer Science and Game Theory +0908.1619 Combinatorics +0908.1620 +0908.1639 Fluid Dynamics +0908.1640 Dynamical Systems +0908.1645 Algebraic Geometry +0908.1648 Cosmology and Nongalactic Astrophysics +0908.1652 Experiment +0908.1657 +0908.1667 Computer Science and Game Theory +0908.1670 Algebraic Geometry +0908.1677 Statistical Finance +0908.1680 Phenomenology +0908.1683 +0908.1686 +0908.1691 Analysis of PDEs +0908.1698 Metric Geometry +0908.1703 Theory +0908.1709 Statistics Theory +0908.1712 Statistics Theory +0908.1729 Earth and Planetary Astrophysics +0908.1734 Phenomenology +0908.1735 Applications +0908.1736 Statistics Theory +0908.1739 Statistical Mechanics +0908.1740 Materials Science +0908.1746 Phenomenology +0908.1756 Cosmology and Nongalactic Astrophysics +0908.1760 General Physics +0908.1761 Superconductivity +0908.1765 Geometric Topology +0908.1769 Learning +0908.1770 Phenomenology +0908.1776 Physics and Society +0908.1782 Dynamical Systems +astro-ph/0703455 +astro-ph/9904127 +hep-th/0004104 Theory +hep-th/0010113 Theory +hep-th/0104264 Theory +hep-th/0212159 Theory +hep-th/0310010 Theory +hep-th/0611246 Theory +hep-th/9906244 Theory +hep-th/9911119 Theory +math/0401321 Symplectic Geometry +math/0603498 Symplectic Geometry +math/0607435 Quantum Algebra +0708.3501 General Physics +0711.3927 Algebraic Geometry +0807.4736 +0811.2053 +0812.2460 Differential Geometry +0901.1491 Materials Science +0901.3886 Soft Condensed Matter +0902.2522 Superconductivity +0902.3175 Computational Complexity +0902.3186 Cosmology and Nongalactic Astrophysics +math/0408353 Geometric Topology +0705.4014 +0706.0025 +0706.0787 Computation +0706.0953 Phenomenology +0706.3554 +0707.0622 +0707.4615 +0708.1396 +0710.0617 +0710.1158 Phenomenology +0710.3683 +0710.4124 Phenomenology +0711.0176 Theory +0711.0654 +0711.1613 Phenomenology +0711.1635 +0711.2014 Phenomenology +0711.2274 +0711.2318 Theory +0711.2858 +0711.3846 +0711.4036 +0711.4522 +0711.4540 Experiment +0711.5024 +0712.0013 +0712.0317 +0712.0563 +0712.0565 +0712.0634 +0712.0746 Phenomenology +0712.0855 +0712.0971 Phenomenology +0712.1113 +0712.1231 +0712.1493 +0712.1584 Experiment +0712.1903 Probability +0712.2038 Experiment +0712.2379 Phenomenology +0712.2700 +0712.3606 +0801.0070 Phenomenology +0801.0800 +0801.0846 Theory +0801.1436 +0801.1446 +0801.1970 Experiment +0801.2094 Theory +0801.2348 +0801.2745 +0801.4245 Phenomenology +0801.4527 +0801.4887 Phenomenology +0802.0050 Experiment +0802.0157 +0802.0196 Number Theory +0802.1478 Probability +0802.1521 Computation +0802.4060 Probability +0803.0482 +0803.0514 Theory +0803.0625 Probability +0803.0688 +0803.1963 Theory +0803.2814 Theory +0803.3241 Theory +0803.3275 Phenomenology +0803.4290 +0804.0333 +0804.1051 Phenomenology +0804.1750 Phenomenology +0804.2244 Theory +0804.3922 Phenomenology +0805.0358 Exactly Solvable and Integrable Systems +0805.1797 Experiment +0805.2284 +0805.2429 Popular Physics +0805.2726 Strongly Correlated Electrons +0805.2742 Lattice +0805.2895 +0805.3177 +0805.4499 Phenomenology +0805.4549 Instrumentation and Detectors +0805.4814 +0806.0306 Number Theory +0806.0474 Mesoscale and Nanoscale Physics +0806.0650 +0806.0772 Number Theory +0806.0876 Phenomenology +0806.1534 Theory +0806.1537 +0806.1863 Number Theory +0806.2508 Theory +0806.3760 +0806.3797 Theory +0806.3820 Theory +0806.3874 Algebraic Geometry +0806.4379 General Physics +0806.4783 Lattice +0807.0959 Theory +0807.1104 Theory +0807.1450 Other Condensed Matter +0807.1749 Phenomenology +0807.2045 +0807.2051 +0807.2635 +0807.2657 Phenomenology +0807.2808 +0807.3448 Optics +0807.3471 +0807.3692 +0807.3870 Theory +0807.3965 Theory +0807.3987 +0807.4286 Materials Science +0807.4936 Phenomenology +0807.5047 Phenomenology +0808.0127 Phenomenology +0808.0324 Theory +0808.0537 Theory +0808.0842 Phenomenology +0808.0856 +0808.1034 Phenomenology +0808.1073 +0808.1523 Phenomenology +0808.2174 +0808.2533 +0808.2879 +0808.3009 +0808.3371 Phenomenology +0809.0049 +0809.0464 Theory +0809.0582 Phenomenology +0809.0792 Phenomenology +0809.0794 +0809.1035 Biological Physics +0809.1112 Phenomenology +0809.1152 +0809.1405 Theory +0809.1418 +0809.1535 Theory +0809.2048 Theory +0809.2327 Phenomenology +0809.2392 +0809.2424 Phenomenology +0809.2614 Phenomenology +0809.2798 +0809.3395 Theory +0809.3406 Theory +0809.3432 Theory +0809.3573 Phenomenology +0809.4257 Theory +0809.4818 Phenomenology +0809.4835 Phenomenology +0809.4875 Theory +0809.5033 Theory +0809.5286 Theory +0810.0746 +0810.1507 Phenomenology +0810.1585 Phenomenology +0810.1647 Phenomenology +0810.1929 +0810.2171 Theory +0810.2256 Theory +0810.2280 Strongly Correlated Electrons +0810.2648 +0810.3406 Lattice +0810.3441 +0810.3809 +0810.3899 Phenomenology +0810.3973 Lattice +0810.4136 Theory +0810.4248 Phenomenology +0810.4443 Plasma Physics +0810.4839 Populations and Evolution +0810.5178 Phenomenology +0810.5250 +0810.5419 +0810.5729 Theory +0811.0369 Experiment +0811.0444 Phenomenology +0811.0779 Theory +0811.0855 Phenomenology +0811.1421 Phenomenology +0811.1963 Complex Variables +0811.3074 Theory +0811.3224 Phenomenology +0811.3867 +0811.4117 Materials Science +0812.0422 Differential Geometry +0812.1140 Quantum Algebra +0812.1483 Soft Condensed Matter +0812.2585 Statistical Mechanics +0812.4436 +0812.4598 +0901.0449 Adaptation and Self-Organizing Systems +0901.2129 Materials Science +0901.2131 Experiment +0901.2136 Theory +0901.2139 Dynamical Systems +0901.2143 Information Theory +0901.2147 Information Theory +0901.2159 Neurons and Cognition +0901.2160 Information Theory +0901.2166 Cryptography and Security +0901.2172 Theory +0901.2173 Neurons and Cognition +0901.2178 Geometric Topology +0901.2186 Operator Algebras +0901.2188 Algebraic Geometry +0901.2193 Statistics Theory +0901.2194 Information Theory +0901.2198 Information Theory +0901.2201 Dynamical Systems +0901.2202 Rings and Algebras +0901.2208 Phenomenology +0901.2209 Materials Science +0901.2218 Information Theory +0901.2220 +0901.2228 Instrumentation and Detectors +0901.2231 Methodology +0901.2233 +0901.2240 Phenomenology +0901.2243 Materials Science +0901.2244 +0901.2245 Phenomenology +0901.2249 Plasma Physics +0901.2259 Combinatorics +0901.2264 Differential Geometry +0901.2270 Information Theory +0901.2275 Pricing of Securities +0901.2278 +0901.2280 Representation Theory +0901.2287 Materials Science +0901.2288 Geometric Topology +0901.2290 Analysis of PDEs +0901.2291 Logic +0901.2296 Representation Theory +0901.2297 Popular Physics +0901.2299 Superconductivity +0901.2303 Group Theory +0901.2305 Soft Condensed Matter +0901.2307 +0901.2310 Distributed, Parallel, and Cluster Computing +0901.2317 Group Theory +0901.2319 Geometric Topology +0901.2320 +0901.2330 +0901.2335 Quantum Algebra +0901.2337 Logic +0901.2339 Logic +0901.2343 Probability +astro-ph/0302467 +astro-ph/0702535 +gr-qc/0102110 +gr-qc/0210051 +gr-qc/0301047 +gr-qc/0404021 +gr-qc/0501091 +gr-qc/9508009 +gr-qc/9703035 +gr-qc/9705030 +gr-qc/9712011 +gr-qc/9802067 +gr-qc/9804083 +gr-qc/9908077 +gr-qc/9911004 +hep-ph/0409155 Phenomenology +hep-ph/0703100 Phenomenology +hep-th/0108099 Theory +hep-th/0602181 Theory +hep-th/0703202 Theory +hep-th/9108002 Theory +hep-th/9204022 Theory +hep-th/9207006 Theory +hep-th/9211082 Theory +hep-th/9302067 Theory +hep-th/9307033 Theory +hep-th/9407104 Theory +hep-th/9412210 Theory +hep-th/9601144 Theory +hep-th/9606098 Theory +hep-th/9606173 Theory +hep-th/9611219 Theory +hep-th/9704014 Theory +hep-th/9706066 Theory +math-ph/0008006 +math/0401007 Algebraic Topology +math/0511226 Statistics Theory +math/0610437 Algebraic Topology +0807.1985 +0812.0387 Computational Geometry +0812.3496 Commutative Algebra +0812.3974 Quantum Algebra +0903.5341 Probability +0904.0343 History and Philosophy of Physics +0905.0121 Numerical Analysis +0907.2411 Mesoscale and Nanoscale Physics +0907.5402 Networking and Internet Architecture +0908.1947 Quantum Gases +0909.3712 Functional Analysis +0909.4597 Algebraic Topology +0910.1655 Group Theory +0911.3106 Statistical Mechanics +0911.5195 +0911.5374 Optics +hep-th/9911006 Theory +math/0603619 Optimization and Control +math/0608791 Rings and Algebras +0709.3687 +0712.3000 +0801.0519 Representation Theory +0801.2525 Combinatorics +0802.4328 Numerical Analysis +0806.3222 Functional Analysis +0806.4711 Superconductivity +0809.2052 Numerical Analysis +0812.0840 Combinatorics +0901.0077 Chemical Physics +0901.3327 +0902.1106 Quantum Algebra +0903.1027 Cosmology and Nongalactic Astrophysics +0903.4982 Phenomenology +0905.0897 Statistical Mechanics +0906.0610 Combinatorics +0906.0685 Neurons and Cognition +0907.0431 Mesoscale and Nanoscale Physics +0907.0509 Probability +0907.5017 Metric Geometry +0908.1038 Strongly Correlated Electrons +0910.5823 Cosmology and Nongalactic Astrophysics +0911.5421 Statistical Mechanics +cond-mat/0412750 Statistical Mechanics +math/0502404 Symplectic Geometry +math/0611889 Group Theory +math/0703651 Representation Theory +quant-ph/0406206 +quant-ph/0504146 +0706.3500 Probability +0806.1354 Applications +0809.0345 Number Theory +0809.1817 +0811.1606 Applications +0811.3639 Applications +0811.3644 Applications +0901.2521 Subcellular Processes +0903.2313 Strongly Correlated Electrons +0904.1052 Cosmology and Nongalactic Astrophysics +0906.5235 Strongly Correlated Electrons +0907.0912 Commutative Algebra +0907.3387 Information Theory +0704.2234 Strongly Correlated Electrons +0705.2537 K-Theory and Homology +0706.1259 Theory +0708.1372 Representation Theory +0709.0303 Physics and Society +0709.2531 Phenomenology +0709.3220 Statistical Mechanics +0710.1942 +0710.1990 Theory +0710.1991 Theory +0710.2009 Theory +0710.2086 Theory +0710.2093 Theory +0710.2188 Theory +0710.2539 Theory +0710.2551 Theory +0710.2598 Theory +0710.2640 Theory +0710.3886 Theory +0710.3939 Theory +0710.4166 Theory +0710.4177 Theory +0710.4292 Theory +0710.4319 Theory +0710.4517 Theory +0710.4541 Theory +0710.4907 Theory +0710.5358 Theory +0710.5372 Theory +0710.5796 Theory +0711.0081 Number Theory +0711.0407 Theory +0711.0431 Theory +0711.0760 Theory +0711.1061 Soft Condensed Matter +0801.0325 Lattice +0802.1153 Functional Analysis +0802.2546 Mesoscale and Nanoscale Physics +0802.2550 Combinatorics +0803.3285 Probability +0804.2718 Metric Geometry +0806.0882 Statistical Mechanics +0806.3594 Adaptation and Self-Organizing Systems +0806.4345 Rings and Algebras +0807.2101 Geophysics +0808.2494 Soft Condensed Matter +0808.3496 Mesoscale and Nanoscale Physics +0809.1127 Neurons and Cognition +0810.2807 Phenomenology +0810.3506 Superconductivity +0810.3665 Phenomenology +0810.4077 Phenomenology +0810.4506 Phenomenology +0811.0610 Strongly Correlated Electrons +0811.0739 Phenomenology +0811.0775 Phenomenology +0811.1426 Data Analysis, Statistics and Probability +0811.2285 Phenomenology +0811.2559 Phenomenology +0812.0439 Mesoscale and Nanoscale Physics +0812.0467 Mesoscale and Nanoscale Physics +0812.1487 Atomic Physics +0812.1902 Phenomenology +0812.3109 Statistical Mechanics +0812.4183 Theory +0812.4428 +0812.4952 Learning +0901.1481 Combinatorics +0901.1710 Geometric Topology +0901.2149 Superconductivity +0901.4182 Mesoscale and Nanoscale Physics +0902.0091 Superconductivity +0902.1468 Strongly Correlated Electrons +0902.2041 Theory +0902.4213 Solar and Stellar Astrophysics +0903.2972 Learning +0903.4230 +0903.4345 Phenomenology +0903.4943 +0903.5030 +0903.5215 Mesoscale and Nanoscale Physics +0903.5439 +0904.1607 Superconductivity +0904.1706 Quantum Algebra +0904.1767 +0904.3782 Superconductivity +0904.4899 Superconductivity +0905.1439 History and Philosophy of Physics +0905.2144 Phenomenology +0905.2818 Cosmology and Nongalactic Astrophysics +0905.2899 Combinatorics +0905.2936 Experiment +0905.2977 Cryptography and Security +0905.2978 Solar and Stellar Astrophysics +0905.2987 Rings and Algebras +0905.2988 Materials Science +0905.2990 Information Retrieval +0905.2996 Strongly Correlated Electrons +0905.2997 Learning +0905.3012 Computer Science and Game Theory +0905.3018 Functional Analysis +0905.3019 Rings and Algebras +0905.3020 Experiment +0905.3024 +0905.3031 Strongly Correlated Electrons +0905.3034 Materials Science +0905.3045 Mesoscale and Nanoscale Physics +0905.3049 Networking and Internet Architecture +0905.3052 Classical Analysis and ODEs +0905.3054 Instrumentation and Methods for Astrophysics +0905.3061 Biological Physics +0905.3064 Fluid Dynamics +0905.3065 +0905.3070 Human-Computer Interaction +0905.3071 High Energy Astrophysical Phenomena +0905.3074 Category Theory +0905.3075 High Energy Astrophysical Phenomena +0905.3078 Cosmology and Nongalactic Astrophysics +0905.3079 Classical Physics +0905.3081 Combinatorics +0905.3082 Dynamical Systems +0905.3091 Methodology +0905.3094 Astrophysics of Galaxies +0905.3096 Data Analysis, Statistics and Probability +0905.3098 Dynamical Systems +0905.3100 Strongly Correlated Electrons +0905.3105 Analysis of PDEs +0905.3107 Data Structures and Algorithms +0905.3108 Logic in Computer Science +0905.3114 Numerical Analysis +0905.3118 Phenomenology +0905.3121 Algebraic Topology +0905.3126 Materials Science +0905.3128 Analysis of PDEs +0905.3130 Phenomenology +0905.3133 Materials Science +0905.3142 Fluid Dynamics +0905.3146 Combinatorics +0905.3151 Algebraic Topology +0905.3156 Algebraic Topology +0905.3157 Quantum Algebra +0905.3159 Analysis of PDEs +0905.3160 Atomic Physics +0905.3166 Operator Algebras +astro-ph/0001524 +astro-ph/0010090 +astro-ph/0105216 +astro-ph/9907370 +cond-mat/0506390 Mesoscale and Nanoscale Physics +gr-qc/9812008 +hep-ph/0112141 Phenomenology +hep-ph/0112226 Phenomenology +hep-ph/0305064 Phenomenology +hep-th/0112243 Theory +math/0307160 General Mathematics +math/0311130 General Mathematics +math/0607408 Number Theory +math/0608597 Differential Geometry +physics/0502062 Instrumentation and Detectors +physics/0701026 Geophysics +physics/0702037 Fluid Dynamics +0705.2133 +0705.3131 Theory +0705.3167 Theory +0705.3253 Theory +0705.4308 Theory +0706.0188 Theory +0706.2005 Theory +0706.2042 Theory +0706.2457 +0706.2742 Theory +0706.2750 Theory +0706.2766 Theory +0706.2767 Theory +0706.2785 Theory +0706.2803 Theory +0706.2816 Theory +0706.4245 Theory +0706.4476 Theory +0707.0007 Theory +0707.0052 Theory +0707.0654 Theory +0707.0668 Theory +0707.0922 Theory +0707.1394 Theory +0707.1463 Theory +0707.1464 Theory +0707.1563 Theory +0707.1574 Theory +0707.1595 Theory +0707.1603 Theory +0707.1621 Theory +0707.1676 Theory +0707.1696 Theory +0707.1885 Theory +0707.1906 Theory +0707.2310 Theory +0707.2455 Theory +0707.2717 Theory +0707.2786 Theory +0712.2966 Phenomenology +0712.3014 Phenomenology +0712.3913 Phenomenology +0712.4010 Phenomenology +0801.0918 Phenomenology +0801.1592 Phenomenology +0801.1917 Phenomenology +0801.2118 Geometric Topology +0803.0200 Classical Physics +0803.1818 General Mathematics +0804.3099 General Mathematics +0805.1489 Statistical Mechanics +0805.2901 Analysis of PDEs +0805.4575 Representation Theory +0807.3142 +0807.3654 Mesoscale and Nanoscale Physics +0808.2735 Algebraic Geometry +0809.0694 Strongly Correlated Electrons +0809.1829 +0809.2044 Phenomenology +0809.2084 Disordered Systems and Neural Networks +0809.2289 Mesoscale and Nanoscale Physics +0809.2475 Phenomenology +0809.3233 Accelerator Physics +0809.3709 Statistical Mechanics +0809.5113 Statistical Mechanics +0810.0113 Phenomenology +0810.0131 Phenomenology +0810.0462 Soft Condensed Matter +0810.0639 Phenomenology +0810.2204 Phenomenology +0810.2459 Phenomenology +0810.2598 Phenomenology +0810.2934 Phenomenology +0810.3842 Phenomenology +0811.4510 Phenomenology +0812.0257 Theory +0812.0421 Disordered Systems and Neural Networks +0812.1995 Optics +0812.3448 +0812.3826 Mesoscale and Nanoscale Physics +0812.4175 Superconductivity +0901.1900 Information Theory +0901.1905 Information Theory +0901.2062 Information Theory +0901.3428 Statistical Mechanics +0902.0671 Soft Condensed Matter +0902.1062 Group Theory +0902.1265 Lattice +0902.2296 Methodology +0902.2318 +0902.2405 Theory +0902.2489 Theory +0902.2627 Theory +0902.3940 Atomic and Molecular Clusters +0902.4223 +0902.4729 Fluid Dynamics +0902.4866 +0903.0884 Other Condensed Matter +0903.2315 Information Theory +0903.3973 General Mathematics +0903.4460 +0903.4656 Statistical Mechanics +0903.5102 Superconductivity +0903.5252 Phenomenology +0904.0240 K-Theory and Homology +0904.2231 Mesoscale and Nanoscale Physics +0904.2311 Information Theory +0904.3604 Theory +0904.3894 Information Theory +0904.4176 Discrete Mathematics +0904.4189 Dynamical Systems +0904.4362 Experiment +0904.4475 Materials Science +0904.4482 Group Theory +0904.4489 Phenomenology +0904.4495 Medical Physics +0904.4496 +0904.4499 Neurons and Cognition +0904.4512 Distributed, Parallel, and Cluster Computing +0904.4514 +0904.4516 Solar and Stellar Astrophysics +0904.4518 Optimization and Control +0904.4519 Probability +0904.4520 +0904.4522 Chemical Physics +0904.4525 Information Theory +0904.4535 Functional Analysis +0904.4537 Algebraic Geometry +0904.4542 Information Theory +0904.4548 K-Theory and Homology +0904.4552 +0904.4554 +0904.4555 Instrumentation and Detectors +0904.4557 Analysis of PDEs +0904.4562 Algebraic Geometry +0904.4563 Algebraic Geometry +0904.4569 Differential Geometry +0904.4581 Representation Theory +0904.4582 Strongly Correlated Electrons +0904.4584 Cosmology and Nongalactic Astrophysics +0904.4587 Artificial Intelligence +0904.4593 Mesoscale and Nanoscale Physics +0904.4595 Exactly Solvable and Integrable Systems +0904.4604 Representation Theory +0904.4608 Learning +0904.4614 Geometric Topology +0904.4616 +0904.4620 Risk Management +0904.4621 +0904.4623 Analysis of PDEs +0904.4624 Soft Condensed Matter +0904.4633 Chemical Physics +0904.4637 Chemical Physics +0904.4638 Astrophysics of Galaxies +0904.4646 Earth and Planetary Astrophysics +0904.4652 Algebraic Geometry +0904.4657 Group Theory +0904.4661 Rings and Algebras +0904.4665 Geometric Topology +0904.4670 Data Structures and Algorithms +0904.4678 Classical Analysis and ODEs +0904.4684 Algebraic Topology +0904.4686 Formal Languages and Automata Theory +0904.4687 Phenomenology +0904.4689 Algebraic Topology +cond-mat/0307438 Strongly Correlated Electrons +cond-mat/0412377 Mesoscale and Nanoscale Physics +cond-mat/9408073 +cond-mat/9612129 Statistical Mechanics +cond-mat/9703154 Statistical Mechanics +gr-qc/0612106 +hep-th/9410176 Theory +hep-th/9511105 Theory +math/0504305 Geometric Topology +math/0602393 Geometric Topology +math/0605631 Geometric Topology +math/0612427 Geometric Topology +math/0612838 Combinatorics +math/0703495 Dynamical Systems +physics/0206011 General Physics +physics/0504082 Classical Physics +quant-ph/0607216 +0704.1327 Number Theory +0704.3731 Combinatorics +0707.0271 Probability +0707.3526 Algebraic Topology +0710.0816 Analysis of PDEs +0710.2076 Superconductivity +0801.0011 Neurons and Cognition +0801.2227 Analysis of PDEs +0801.4142 +0803.0058 Number Theory +0803.4386 Combinatorics +0805.0135 Statistical Mechanics +0805.1502 Disordered Systems and Neural Networks +0805.2867 Number Theory +0806.0616 Analysis of PDEs +0806.1915 Probability +0806.3362 +0808.2565 Other Condensed Matter +0809.1056 Strongly Correlated Electrons +0809.1852 Superconductivity +0811.4137 Mesoscale and Nanoscale Physics +0812.3645 Superconductivity +0812.4709 Metric Geometry +0901.0889 Mesoscale and Nanoscale Physics +0901.1963 Number Theory +0901.3278 Analysis of PDEs +0901.3464 Probability +0901.3679 Theory +0901.3742 Populations and Evolution +0902.1928 Mesoscale and Nanoscale Physics +0902.2337 Other Condensed Matter +0902.2722 Rings and Algebras +0903.0244 Strongly Correlated Electrons +0903.2190 Mesoscale and Nanoscale Physics +0903.2256 Mesoscale and Nanoscale Physics +0903.2365 Theory +0903.3075 Phenomenology +0903.4142 Geometric Topology +0903.4289 Dynamical Systems +0903.4827 Theory +0903.5466 +0904.2745 Mesoscale and Nanoscale Physics +0904.4433 Cosmology and Nongalactic Astrophysics +0905.1140 Chemical Physics +0905.2838 Quantum Gases +0905.3038 Strongly Correlated Electrons +0905.3997 Statistical Mechanics +0906.0920 +0906.1994 Operator Algebras +0906.2747 Representation Theory +0906.3006 Exactly Solvable and Integrable Systems +0906.3019 Theory +0906.3029 Instrumentation and Methods for Astrophysics +0906.3037 Probability +0906.3038 Networking and Internet Architecture +0906.3045 General Physics +0906.3047 +0906.3050 Logic +0906.3053 Combinatorics +0906.3055 Logic +0906.3056 Data Structures and Algorithms +0906.3057 High Energy Astrophysical Phenomena +0906.3058 +0906.3060 +0906.3063 Statistical Mechanics +0906.3065 Symbolic Computation +0906.3068 Computer Vision and Pattern Recognition +0906.3074 Graphics +0906.3078 Strongly Correlated Electrons +0906.3079 Complex Variables +0906.3080 +0906.3082 Statistics Theory +0906.3084 Computers and Society +0906.3085 Information Retrieval +0906.3089 Discrete Mathematics +0906.3091 Statistics Theory +0906.3092 Analysis of PDEs +0906.3096 Number Theory +0906.3097 Algebraic Geometry +0906.3099 High Energy Astrophysical Phenomena +0906.3101 Computers and Society +0906.3104 Representation Theory +0906.3106 Populations and Evolution +0906.3108 Statistics Theory +0906.3110 Solar and Stellar Astrophysics +0906.3112 Information Retrieval +0906.3119 Computational Complexity +0906.3123 Statistics Theory +0906.3135 Strongly Correlated Electrons +0906.3136 Phenomenology +0906.3137 Soft Condensed Matter +0906.3143 Differential Geometry +0906.3145 Group Theory +0906.3146 Number Theory +0906.3148 Adaptation and Self-Organizing Systems +0906.3149 Artificial Intelligence +0906.3156 High Energy Astrophysical Phenomena +0906.3158 Chemical Physics +0906.3160 Chemical Physics +0906.3162 Computational Complexity +0906.3164 Analysis of PDEs +0906.3170 Chemical Physics +0906.3171 Analysis of PDEs +0906.3176 Instrumentation and Methods for Astrophysics +0906.3179 Cosmology and Nongalactic Astrophysics +0906.3182 Cosmology and Nongalactic Astrophysics +0906.3186 Computational Complexity +0906.3188 Other Condensed Matter +0906.3192 Information Theory +0906.3193 High Energy Astrophysical Phenomena +0906.3197 Computational Complexity +0906.3206 +0906.3208 Computational Complexity +0906.3212 Classical Analysis and ODEs +0906.3213 Computational Complexity +0906.3220 Formal Languages and Automata Theory +0906.3224 Human-Computer Interaction +0906.3226 +0906.3228 Computational Complexity +0906.3230 Spectral Theory +0906.3231 Computational Complexity +0906.3233 Cosmology and Nongalactic Astrophysics +0906.3235 Information Theory +0906.3238 Number Theory +0906.3241 Analysis of PDEs +0906.3244 Mesoscale and Nanoscale Physics +0906.3245 Software Engineering +0906.3248 Computational Complexity +0906.3249 Number Theory +0906.3251 Computational Complexity +0906.3255 Number Theory +0906.3256 Computer Science and Game Theory +0906.3258 Quantum Algebra +0906.3259 Methodology +0906.3264 +0906.3265 Symplectic Geometry +0906.3266 Dynamical Systems +0906.3268 +0906.3279 Complex Variables +0906.3286 Discrete Mathematics +math-ph/0110034 +math-ph/0606044 +math/0504122 Algebraic Topology +math/0601678 Combinatorics +math/0601684 Combinatorics +math/0604144 General Topology +math/0605320 Combinatorics +math/0610450 Probability +math/0611041 Number Theory +math/0612003 Combinatorics +math/0612470 Statistics Theory +quant-ph/0511180 +quant-ph/0606066 +quant-ph/0702196 +0705.2486 Quantum Algebra +0706.3462 Algebraic Geometry +0707.3073 +0709.4364 +0710.3189 +0710.5131 Other Condensed Matter +0711.2470 Theory +0711.2722 Probability +0802.3468 Theory +0803.0389 Disordered Systems and Neural Networks +0804.2953 Mesoscale and Nanoscale Physics +0805.2131 Differential Geometry +0808.1506 Other Condensed Matter +0808.2765 Superconductivity +0809.1853 Algebraic Geometry +0810.0006 +0810.1413 Mesoscale and Nanoscale Physics +0810.4319 +0811.3437 Disordered Systems and Neural Networks +0811.4680 Algebraic Geometry +0811.4757 Phenomenology +0812.2033 +0901.0726 Phenomenology +0901.0970 Number Theory +0901.2722 +0901.3504 Popular Physics +0901.4016 Software Engineering +0901.4209 Analysis of PDEs +0902.0129 +0902.1413 Materials Science +0902.2929 Materials Science +0903.1444 Algebraic Geometry +0903.1710 General Physics +0904.3009 +0904.4509 Theory +0905.1292 Lattice +0905.3002 Geometric Topology +0905.3010 +0906.0482 Soft Condensed Matter +0906.0692 Superconductivity +0906.1114 Soft Condensed Matter +0906.1530 +0906.1536 Exactly Solvable and Integrable Systems +0906.1699 Probability +0906.3151 Materials Science +0906.3447 Strongly Correlated Electrons +0906.4847 Dynamical Systems +0906.5437 Atomic Physics +0907.1144 Theory +0907.1641 Theory +0907.2209 Information Retrieval +0907.3352 Atomic Physics +0907.4516 Lattice +0907.5191 Materials Science +0908.2815 +0909.2158 Materials Science +0909.3624 Theory +0909.4257 General Physics +0909.5148 Phenomenology +0909.5644 Experiment +0910.1240 +0910.1430 Computational Finance +0910.1494 Other Computer Science +0910.1536 Information Theory +0910.1606 Representation Theory +0910.1619 Combinatorics +0910.1623 Information Theory +0910.1627 +0910.1631 +0910.1632 Cosmology and Nongalactic Astrophysics +0910.1639 Information Theory +0910.1642 Phenomenology +0910.1645 Differential Geometry +0910.1650 Learning +0910.1651 Differential Geometry +0910.1656 Applications +0910.1660 Applications +0910.1662 Atmospheric and Oceanic Physics +0910.1663 Optics +0910.1664 Applications +0910.1667 Applications +0910.1673 +0910.1676 Algebraic Geometry +0910.1683 Applications +0910.1686 Experiment +0910.1689 +0910.1691 Information Theory +0910.1693 +0910.1696 Mesoscale and Nanoscale Physics +0910.1699 Group Theory +0910.1700 Exactly Solvable and Integrable Systems +0910.1706 Theory +0910.1707 Instrumentation and Methods for Astrophysics +0910.1712 +0910.1718 Analysis of PDEs +0910.1719 Distributed, Parallel, and Cluster Computing +0910.1722 Number Theory +0910.1725 Number Theory +0910.1730 Probability +0910.1736 Biomolecules +0910.1737 Classical Analysis and ODEs +0910.1740 Experiment +0910.1741 Probability +0910.1742 +0910.1744 Mesoscale and Nanoscale Physics +0910.1747 Fluid Dynamics +0910.1753 Adaptation and Self-Organizing Systems +0910.1755 Number Theory +0910.1756 Classical Physics +0910.1757 Robotics +0910.1758 Robotics +0910.1760 Robotics +0910.1761 Robotics +0910.1762 Robotics +0910.1763 Logic in Computer Science +0910.1764 Phenomenology +0910.1765 +0910.1771 +0910.1773 Statistical Mechanics +0910.1776 Statistical Mechanics +0910.1778 Phenomenology +0910.1790 Quantum Algebra +0910.1806 Cosmology and Nongalactic Astrophysics +0910.1808 Discrete Mathematics +0910.1816 Algebraic Geometry +0910.1828 Theory +astro-ph/0103337 +astro-ph/0104293 +astro-ph/0202301 +astro-ph/0205370 +astro-ph/0302221 +astro-ph/0311510 +astro-ph/0406150 +astro-ph/0409725 +astro-ph/0606589 +astro-ph/0610406 +astro-ph/0611379 +astro-ph/9711337 +astro-ph/9808304 +astro-ph/9905370 +astro-ph/9908006 +astro-ph/9908301 +astro-ph/9911367 +cond-mat/0512577 Superconductivity +cond-mat/0608194 Superconductivity +hep-th/0611174 Theory +math/0602469 General Mathematics +math/0605122 Commutative Algebra +0704.0141 Phenomenology +0704.0922 Classical Analysis and ODEs +0704.3615 +0706.1606 +0707.0115 Spectral Theory +0707.0534 Phenomenology +0708.4047 +0710.0744 +0710.2629 Dynamical Systems +0710.3152 Representation Theory +0710.4949 +0711.4567 Atomic Physics +0712.0541 Information Theory +0712.0679 Statistics Theory +0712.1355 Phenomenology +0712.1698 Machine Learning +0712.2039 Phenomenology +0712.2170 +0712.2217 +0801.0360 Phenomenology +0801.0803 Geometric Topology +0801.0814 Phenomenology +0801.2016 Lattice +0802.1615 Atmospheric and Oceanic Physics +0802.2255 Experiment +0803.0262 Phenomenology +0803.0765 Phenomenology +0803.2251 Phenomenology +0803.2874 Discrete Mathematics +0803.3960 Lattice +0804.0196 General Physics +0804.0343 Differential Geometry +0804.1288 Phenomenology +0804.1691 Statistical Mechanics +0804.1722 General Physics +0804.2630 Phenomenology +0804.2753 Mesoscale and Nanoscale Physics +0804.2849 General Physics +0804.3627 Phenomenology +0804.4571 Phenomenology +0805.1150 Phenomenology +0805.1463 +0805.1939 Lattice +0805.3033 Theory +0805.3833 Phenomenology +0805.4063 Phenomenology +0805.4808 Phenomenology +0806.0563 Materials Science +0806.0578 Phenomenology +0806.1031 Lattice +0806.1108 Phenomenology +0806.1389 Phenomenology +0806.1512 +0806.1556 +0806.1980 Experiment +0806.2009 Phenomenology +0806.3140 Phenomenology +0806.3390 Phenomenology +0806.3527 Experiment +0806.3754 +0806.4222 Lattice +0806.4377 +0806.4411 Phenomenology +0806.4744 Lattice +0806.4779 Strongly Correlated Electrons +0807.0159 Phenomenology +0807.0185 Lattice +0807.0443 Phenomenology +0807.1306 Phenomenology +0807.1818 Statistical Finance +0807.2584 +0807.2834 +0807.2870 Phenomenology +0807.2914 +0807.3264 Phenomenology +0807.4664 Chemical Physics +0807.4917 Phenomenology +0808.0770 Phenomenology +0808.1120 Lattice +0808.1253 Statistical Mechanics +0808.2291 Theory +0808.2516 +0808.3514 Statistical Mechanics +0808.3908 Strongly Correlated Electrons +0809.0031 Strongly Correlated Electrons +0809.0657 +0809.2652 Probability +0809.3237 Theory +0809.4272 Theory +0809.4401 +0809.4786 Instrumentation and Detectors +0809.5246 Mesoscale and Nanoscale Physics +0810.0079 +0810.0393 Atomic Physics +0810.0655 Experiment +0810.0833 +0810.3187 Experiment +0810.4680 Biological Physics +0810.5600 Functional Analysis +0811.0013 Mesoscale and Nanoscale Physics +0811.0480 Theory +0811.1736 Plasma Physics +0811.2438 Phenomenology +0811.4444 Algebraic Geometry +0811.4642 Algebraic Geometry +0812.4332 Data Analysis, Statistics and Probability +0812.4361 Chemical Physics +0812.4810 +0901.0926 Materials Science +0901.0932 Dynamical Systems +0901.0945 +0901.0948 Information Theory +0901.0951 +0901.0956 +0901.0966 Commutative Algebra +0901.0967 Materials Science +0901.0976 Populations and Evolution +0901.0979 Soft Condensed Matter +0901.0983 +0901.0984 Numerical Analysis +0901.0988 Materials Science +0901.0991 +0901.0994 Physics Education +0901.1005 Atomic Physics +0901.1025 Functional Analysis +0901.1029 Materials Science +0901.1036 Functional Analysis +0901.1038 Adaptation and Self-Organizing Systems +0901.1040 General Physics +0901.1043 Information Theory +0901.1047 Superconductivity +0901.1051 Differential Geometry +0901.1061 Rings and Algebras +0901.1065 Strongly Correlated Electrons +0901.1066 Applications +0901.1068 Analysis of PDEs +0901.1071 Strongly Correlated Electrons +0901.1072 Probability +0901.1073 Instrumentation and Detectors +0901.1082 +0901.1095 Cryptography and Security +0901.1099 Pricing of Securities +0901.1102 Probability +0901.1103 +0901.1104 Classical Analysis and ODEs +0901.1105 Commutative Algebra +0901.1114 Number Theory +0901.1123 Hardware Architecture +astro-ph/0202185 +astro-ph/0210122 +astro-ph/0311397 +astro-ph/0608582 +astro-ph/0701486 +cond-mat/0302531 Mesoscale and Nanoscale Physics +cond-mat/0305405 Strongly Correlated Electrons +cond-mat/0309478 Strongly Correlated Electrons +cs/0306112 Distributed, Parallel, and Cluster Computing +cs/0607087 Multimedia +gr-qc/0406003 +hep-ex/0201047 Experiment +hep-ex/0303038 Experiment +hep-ex/0307084 Experiment +hep-ph/0512332 Phenomenology +hep-ph/0609153 Phenomenology +math/0106120 Numerical Analysis +math/0606073 Metric Geometry +physics/0106038 Atmospheric and Oceanic Physics +physics/0701171 Physics and Society +0704.3147 Geometric Topology +0705.1700 +0710.0652 Combinatorics +0710.5398 Algebraic Topology +0710.5533 Soft Condensed Matter +0802.1479 +0804.1798 Differential Geometry +0805.2977 +0806.2684 +0807.1279 Superconductivity +0807.3412 Commutative Algebra +0807.4906 +0809.3451 Phenomenology +0809.5216 +0810.0397 Strongly Correlated Electrons +0811.1496 Probability +0811.1584 Combinatorics +0811.3739 +0812.4057 Rings and Algebras +0902.1880 +0904.0959 Strongly Correlated Electrons +0904.1594 Rings and Algebras +0904.1866 Strongly Correlated Electrons +0904.2212 Mesoscale and Nanoscale Physics +0904.3303 Strongly Correlated Electrons +0905.0011 Statistical Mechanics +0905.0707 Strongly Correlated Electrons +0905.2332 Mesoscale and Nanoscale Physics +0905.2774 Theory +0905.2868 Differential Geometry +0905.4528 Cosmology and Nongalactic Astrophysics +0905.4920 Statistical Mechanics +0905.4954 Functional Analysis +0906.0971 Functional Analysis +0906.1662 Algebraic Geometry +0906.1973 Strongly Correlated Electrons +0906.2113 Statistical Mechanics +0906.3450 Group Theory +0907.1135 Strongly Correlated Electrons +0907.1289 High Energy Astrophysical Phenomena +0907.3124 Soft Condensed Matter +0907.3367 +0907.4041 High Energy Astrophysical Phenomena +0907.4735 Disordered Systems and Neural Networks +0907.5198 Statistical Mechanics +0908.1238 Mesoscale and Nanoscale Physics +0908.2721 Networking and Internet Architecture +0909.5109 High Energy Astrophysical Phenomena +0910.0359 General Physics +0910.0411 Theory +0910.2373 Soft Condensed Matter +0910.3730 Probability +0910.3830 Commutative Algebra +0910.3845 Theory +0910.4100 Differential Geometry +0910.4169 Analysis of PDEs +0910.4171 Cosmology and Nongalactic Astrophysics +0910.4172 Computational Geometry +0910.4179 Cryptography and Security +0910.4185 Dynamical Systems +0910.4186 Networking and Internet Architecture +0910.4188 +0910.4189 Differential Geometry +0910.4197 Combinatorics +0910.4209 Algebraic Geometry +0910.4211 Experiment +0910.4212 Combinatorics +0910.4214 Computer Science and Game Theory +0910.4220 Experiment +0910.4221 Strongly Correlated Electrons +0910.4223 Classical Analysis and ODEs +0910.4235 Algebraic Geometry +0910.4239 Phenomenology +0910.4250 Mesoscale and Nanoscale Physics +0910.4257 Analysis of PDEs +0910.4258 High Energy Astrophysical Phenomena +0910.4259 Phenomenology +0910.4260 High Energy Astrophysical Phenomena +0910.4265 Fluid Dynamics +0910.4269 Optics +0910.4270 Disordered Systems and Neural Networks +0910.4277 Rings and Algebras +0910.4284 Differential Geometry +0910.4294 Cosmology and Nongalactic Astrophysics +0910.4301 Experiment +0910.4304 Materials Science +0910.4306 Number Theory +0910.4308 Phenomenology +0910.4309 Soft Condensed Matter +0910.4310 Complex Variables +0910.4313 Physics and Society +0910.4317 +0910.4327 High Energy Astrophysical Phenomena +0910.4330 Cosmology and Nongalactic Astrophysics +0910.4334 Dynamical Systems +0910.4339 Instrumentation and Methods for Astrophysics +0910.4342 Cryptography and Security +0910.4344 Differential Geometry +0910.4351 Optimization and Control +0910.4353 Computational Complexity +0910.4359 Solar and Stellar Astrophysics +0910.4364 Phenomenology +0910.4368 Plasma Physics +0910.4369 +0910.4371 Dynamical Systems +0910.4373 +0910.4377 Strongly Correlated Electrons +0910.4384 Accelerator Physics +0910.4385 Mesoscale and Nanoscale Physics +0910.4386 Earth and Planetary Astrophysics +0910.4387 Lattice +cond-mat/0402386 Superconductivity +cond-mat/0501480 Superconductivity +cond-mat/0507465 Superconductivity +math/0510425 Metric Geometry +math/0602580 Combinatorics +math/0610870 Geometric Topology +math/0611617 Representation Theory +math/0701560 Symplectic Geometry +physics/0502007 General Physics +0708.1590 Differential Geometry +0710.4272 Computational Complexity +0801.3299 Number Theory +0804.1670 Materials Science +0805.3663 Other Condensed Matter +0805.3688 Metric Geometry +0805.4123 +0806.4636 +0808.1556 Instrumentation and Detectors +0808.1941 Optics +0808.2749 Algebraic Geometry +0809.2030 Phenomenology +0811.1466 +0811.1601 Superconductivity +0812.3029 Other Condensed Matter +0812.4177 Chaotic Dynamics +0901.0568 Solar and Stellar Astrophysics +0901.3668 Mesoscale and Nanoscale Physics +0902.0734 Exactly Solvable and Integrable Systems +0902.1446 Mesoscale and Nanoscale Physics +0902.2172 Fluid Dynamics +0902.2215 Theory +0902.4189 +0903.1075 Statistical Mechanics +0903.2327 Materials Science +0903.2931 Other Condensed Matter +0903.3646 Materials Science +0904.1228 Mesoscale and Nanoscale Physics +0904.1603 Symplectic Geometry +0904.2993 Theory +0904.3834 Other Condensed Matter +0904.4889 Strongly Correlated Electrons +0905.0170 Instrumentation and Detectors +0905.0467 Strongly Correlated Electrons +0906.0114 Molecular Networks +0906.1082 Mesoscale and Nanoscale Physics +0906.1918 +0906.2741 Theory +0906.2918 Analysis of PDEs +0906.3576 +0906.4742 Logic +0907.2681 Strongly Correlated Electrons +0907.3657 Materials Science +0907.3711 Data Analysis, Statistics and Probability +0907.3734 Theory +0907.3735 +0907.3740 Machine Learning +0907.3745 Instrumentation and Methods for Astrophysics +0907.3747 Experiment +0907.3750 Biological Physics +0907.3761 Functional Analysis +0907.3762 Materials Science +0907.3763 Superconductivity +0907.3765 +0907.3772 Combinatorics +0907.3776 Soft Condensed Matter +0907.3777 Networking and Internet Architecture +0907.3781 Computation and Language +0907.3787 +0907.3788 +0907.3789 Rings and Algebras +0907.3791 Data Analysis, Statistics and Probability +0907.3793 Networking and Internet Architecture +0907.3794 Dynamical Systems +0907.3795 Mesoscale and Nanoscale Physics +0907.3797 +0907.3802 +0907.3803 Number Theory +0907.3818 Algebraic Geometry +0907.3819 Networking and Internet Architecture +0907.3822 Solar and Stellar Astrophysics +0907.3824 Algebraic Geometry +0907.3826 Digital Libraries +0907.3828 Probability +0907.3829 Phenomenology +0907.3851 Classical Analysis and ODEs +0907.3853 Combinatorics +0907.3854 Strongly Correlated Electrons +0907.3858 Statistical Mechanics +0907.3859 Spectral Theory +0907.3865 Optics +0907.3873 Combinatorics +0907.3877 Phenomenology +0907.3878 Computational Physics +0907.3880 Algebraic Geometry +0907.3881 Analysis of PDEs +0907.3884 Solar and Stellar Astrophysics +0907.3895 Dynamical Systems +gr-qc/0612185 +physics/0611209 Atomic Physics +0704.0474 Materials Science +0704.0930 Theory +0704.0936 Theory +0705.0489 Theory +0705.0722 Theory +0705.0735 Theory +0705.0752 Theory +0705.1959 Theory +0705.2020 Theory +0705.2102 Theory +0705.2140 Theory +0705.2149 Theory +0705.2210 Instrumentation and Detectors +0705.2861 +0705.3112 Theory +0705.3201 Theory +0705.3388 Theory +0705.3410 Theory +0705.3529 Theory +0705.3532 Theory +0705.3549 General Physics +0705.3554 Theory +0705.3575 Theory +0705.3606 Theory +0705.3609 +0705.3641 Theory +0705.3709 Theory +0705.3780 Theory +0705.3870 Theory +0705.3874 Theory +0705.3897 Theory +0705.4104 Theory +0705.4169 Theory +0705.4431 Theory +0705.4433 Theory +0705.4514 Theory +0705.4554 Theory +0705.4567 Phenomenology +0705.4642 Theory +0705.4656 Theory +0705.4657 Theory +0705.4682 Theory +0706.0042 Theory +0706.0086 Theory +0706.0213 Theory +0706.0216 Theory +0706.0398 Theory +0706.0411 Theory +0706.0610 Theory +0706.0667 Theory +0706.0712 Theory +0706.0717 Theory +0706.0744 Theory +0706.0782 Theory +0706.0824 Theory +0706.0857 Theory +0706.1941 Theory +0706.3151 Theory +0706.3992 Theory +0706.3996 Theory +0707.0101 Theory +0707.0120 Theory +0707.2719 Theory +0707.2818 +0707.3986 Probability +0707.4476 Phenomenology +0708.0522 Networking and Internet Architecture +0709.1596 Dynamical Systems +0709.2777 General Physics +0710.0680 Phenomenology +0710.1722 Phenomenology +0710.1832 Phenomenology +0710.1931 +0710.2275 Phenomenology +0710.2555 Quantitative Methods +0710.2830 +0710.3366 +0710.3639 Phenomenology +0710.3714 Phenomenology +0710.3799 Phenomenology +0710.5871 +0711.1725 Phenomenology +0711.3217 Instrumentation and Detectors +0711.3661 Theory +0711.4082 Exactly Solvable and Integrable Systems +0712.0379 Quantum Algebra +0712.0872 +0801.1980 Phenomenology +0801.2340 Phenomenology +0801.4676 +0802.0202 Theory +0802.2064 Experiment +0802.2402 +0802.3893 +0802.4011 Exactly Solvable and Integrable Systems +0803.1466 Theory +0803.3346 Algebraic Geometry +0803.3393 +0803.3621 Theory +0803.4006 +0803.4115 +0805.2225 Instrumentation and Detectors +0805.2261 Theory +0805.2339 Statistical Mechanics +0806.1235 Phenomenology +0806.1452 Theory +0806.1940 +0806.2091 Theory +0806.2271 +0807.1189 +0807.3888 +0807.4451 Theory +0807.4956 Experiment +0808.1720 Theory +0808.1746 Theory +0808.2475 Theory +0808.2714 Superconductivity +0808.2720 Strongly Correlated Electrons +0808.3764 Phenomenology +0808.4021 Mesoscale and Nanoscale Physics +0809.0459 Pattern Formation and Solitons +0809.0614 Theory +0809.0942 Phenomenology +0809.1137 Theory +0809.1454 General Physics +0809.2137 Theory +0809.2850 Optics +0809.3684 Theory +0809.4218 +0809.4487 Phenomenology +0809.5247 +0810.1849 +0810.2015 Theory +0810.2209 +0810.3214 Superconductivity +0810.3403 Differential Geometry +0810.3502 Strongly Correlated Electrons +0810.4469 Superconductivity +0810.4554 Theory +0810.4886 +0810.5361 Phenomenology +0811.0558 +0811.0943 Theory +0811.1175 Phenomenology +0811.2225 Theory +0811.2381 Theory +0811.2416 Theory +0811.2699 Phenomenology +0811.3191 Theory +0811.3253 +0811.3468 Theory +0811.3665 Experiment +0811.3933 General Physics +0811.4023 +0811.4393 Theory +0811.4721 +0811.4766 Phenomenology +0812.0176 Theory +0812.0177 +0812.0235 +0812.0295 +0812.0432 Phenomenology +0812.0561 Strongly Correlated Electrons +0812.0981 Theory +0812.1167 Phenomenology +0812.1358 Theory +0812.1377 Theory +0812.1436 Statistical Mechanics +0812.1879 Phenomenology +0812.1887 Phenomenology +0812.2392 Phenomenology +0812.2765 +0812.2803 +0812.2835 Theory +0812.3019 Instrumentation and Detectors +0812.3399 Theory +0812.3477 Phenomenology +0812.3551 Theory +0812.3555 Phenomenology +0812.3570 Theory +0812.3629 Theory +0812.3934 +0812.4182 Theory +0812.4226 +0812.4569 Theory +0812.4716 Phenomenology +0812.4841 Theory +0812.4981 Phenomenology +0812.5103 Theory +0901.0003 Theory +0901.0283 Phenomenology +0901.0705 Theory +0901.0964 +0901.1021 Theory +0901.1211 +0901.1417 Theory +0901.1913 Data Analysis, Statistics and Probability +0901.2013 Theory +0901.2876 Theory +0901.3345 Other Condensed Matter +0901.3653 Theory +0901.3732 Phenomenology +0901.4350 Theory +0901.4374 Theory +0901.4442 Strongly Correlated Electrons +0902.0162 Phenomenology +0902.1050 +0902.1406 Theory +0902.1611 Theory +0902.1945 Theory +0902.2142 +0902.3297 Phenomenology +0902.3393 Algebraic Topology +0902.3611 Cosmology and Nongalactic Astrophysics +0902.4433 Exactly Solvable and Integrable Systems +0903.0024 +0903.0262 Theory +0903.3203 Mesoscale and Nanoscale Physics +0903.4816 Soft Condensed Matter +0904.0653 Materials Science +0904.1832 Cosmology and Nongalactic Astrophysics +0904.1967 Combinatorics +0904.2327 Cell Behavior +0904.2400 Computer Science and Game Theory +0904.2401 Information Theory +0904.2407 Combinatorics +0904.2419 Algebraic Geometry +0904.2427 Optimization and Control +0904.2428 Functional Analysis +0904.2435 Computation +0904.2436 Combinatorics +0904.2439 Adaptation and Self-Organizing Systems +0904.2445 Algebraic Geometry +0904.2447 Rings and Algebras +0904.2456 Statistics Theory +0904.2458 Astrophysics of Galaxies +0904.2461 Classical Analysis and ODEs +0904.2462 High Energy Astrophysical Phenomena +0904.2466 Genomics +0904.2467 Mesoscale and Nanoscale Physics +0904.2470 Algebraic Geometry +0904.2471 Analysis of PDEs +0904.2472 Analysis of PDEs +0904.2473 Analysis of PDEs +0904.2476 Medical Physics +0904.2477 Information Theory +0904.2479 Group Theory +0904.2480 Disordered Systems and Neural Networks +0904.2483 Representation Theory +0904.2484 Phenomenology +0904.2486 Category Theory +0904.2487 Representation Theory +0904.2488 Superconductivity +0904.2489 Dynamical Systems +0904.2491 Analysis of PDEs +0904.2492 Analysis of PDEs +0904.2493 Analysis of PDEs +0904.2494 Analysis of PDEs +0904.2495 Analysis of PDEs +0904.2501 Classical Analysis and ODEs +0904.2502 Superconductivity +0904.2503 Group Theory +0904.2507 Functional Analysis +0904.2508 Differential Geometry +0904.2522 Solar and Stellar Astrophysics +0904.2526 Fluid Dynamics +0904.2527 Functional Analysis +0904.2529 Cosmology and Nongalactic Astrophysics +0904.2530 Number Theory +0904.2545 Instrumentation and Methods for Astrophysics +0904.2549 Cosmology and Nongalactic Astrophysics +0904.2556 Materials Science +0904.2557 +0904.2560 +0904.2561 Dynamical Systems +0904.2563 K-Theory and Homology +astro-ph/0210282 +astro-ph/0303010 +astro-ph/0605308 +cond-mat/0301175 Materials Science +cond-mat/0604255 Other Condensed Matter +cs/0505088 Discrete Mathematics +gr-qc/0002085 +gr-qc/0306061 +gr-qc/0412050 +gr-qc/0505137 +gr-qc/0703094 +hep-ex/0004007 Experiment +hep-ex/0012004 Experiment +hep-ex/0204031 Experiment +hep-ex/0308022 Experiment +hep-ex/9702014 Experiment +hep-ex/9711017 Experiment +hep-ex/9910005 Experiment +hep-ph/0206219 Phenomenology +hep-ph/0304289 Phenomenology +hep-ph/0611324 Phenomenology +hep-ph/0703075 Phenomenology +hep-th/0605062 Theory +hep-th/0611164 Theory +hep-th/0702030 Theory +hep-th/0702032 Theory +math/0504017 Rings and Algebras +math/0506229 Geometric Topology +math/0508004 Geometric Topology +math/0509680 Geometric Topology +math/0611687 Probability +nucl-th/0403088 +nucl-th/0411092 +nucl-th/0501049 +nucl-th/0501061 +nucl-th/9502040 +nucl-th/9708027 +nucl-th/9709062 +nucl-th/9709066 +nucl-th/9905023 +nucl-th/9906091 +nucl-th/9910063 +physics/0111028 Accelerator Physics +physics/0410013 Accelerator Physics +physics/0508030 General Physics +physics/0703012 Accelerator Physics +physics/9901022 Accelerator Physics +0708.2781 General Physics +0710.3766 Algebraic Topology +0801.3843 Algebraic Topology +0804.4824 +0805.2745 Number Theory +0808.3411 History and Philosophy of Physics +0809.2552 Mesoscale and Nanoscale Physics +0810.1047 Disordered Systems and Neural Networks +0810.4617 Computer Vision and Pattern Recognition +0811.4127 Superconductivity +0812.3833 History and Philosophy of Physics +0901.3626 +0902.1850 Optics +0903.0835 Mesoscale and Nanoscale Physics +0903.0939 Mesoscale and Nanoscale Physics +0903.4331 Applications +0904.0289 Superconductivity +0904.0623 Representation Theory +0904.2651 Mesoscale and Nanoscale Physics +0904.3120 Functional Analysis +0904.3947 Statistical Mechanics +0905.0322 Disordered Systems and Neural Networks +0905.0532 Complex Variables +0905.1163 Disordered Systems and Neural Networks +0905.1235 Sound +0906.0039 Mesoscale and Nanoscale Physics +0906.0065 Distributed, Parallel, and Cluster Computing +0906.1249 General Mathematics +0906.2446 Cryptography and Security +0906.2447 Cryptography and Security +0906.2512 Software Engineering +0906.2878 Strongly Correlated Electrons +0906.3630 Combinatorics +0906.3942 High Energy Astrophysical Phenomena +0906.4497 Differential Geometry +0906.4707 Mesoscale and Nanoscale Physics +0906.4761 Representation Theory +0907.0852 +0907.1415 Cosmology and Nongalactic Astrophysics +0907.2885 +0907.3270 Phenomenology +0907.4005 Instrumentation and Methods for Astrophysics +0907.4152 Theory +0907.4153 Theory +0907.4170 Algebraic Geometry +0907.4172 Soft Condensed Matter +0907.4176 Cryptography and Security +0907.4178 Probability +0907.4180 Formal Languages and Automata Theory +0907.4182 General Mathematics +0907.4185 Geometric Topology +0907.4191 Mesoscale and Nanoscale Physics +0907.4200 Probability +0907.4211 Combinatorics +0907.4215 Analysis of PDEs +0907.4216 Classical Analysis and ODEs +0907.4222 Mesoscale and Nanoscale Physics +0907.4251 Networking and Internet Architecture +0907.4254 Networking and Internet Architecture +0907.4260 Probability +0907.4263 +0907.4264 Materials Science +0907.4273 Cryptography and Security +0907.4274 Solar and Stellar Astrophysics +0907.4276 Quantum Algebra +0907.4277 Cosmology and Nongalactic Astrophysics +0907.4280 +0907.4283 Data Structures and Algorithms +0907.4295 Astrophysics of Galaxies +0907.4299 Algebraic Topology +0907.4300 +0907.4301 Probability +0907.4306 Theory +0907.4310 Biological Physics +0907.4311 Computer Science and Game Theory +0907.4314 Quantum Gases +0907.4315 +0907.4316 Logic in Computer Science +0907.4324 Complex Variables +0907.4326 Classical Analysis and ODEs +0907.4327 High Energy Astrophysical Phenomena +0907.4331 Analysis of PDEs +0907.4332 High Energy Astrophysical Phenomena +0907.4337 Materials Science +0907.4342 Theory +0907.4347 Algebraic Geometry +0907.4349 Commutative Algebra +0907.4354 Computer Vision and Pattern Recognition +0907.4355 Functional Analysis +0907.4356 Computer Science and Game Theory +0907.4359 Data Analysis, Statistics and Probability +0907.4361 +0907.4368 Mesoscale and Nanoscale Physics +gr-qc/0612189 +math/0505557 Differential Geometry +math/0509284 Quantum Algebra +math/0612230 Number Theory +0802.1049 Algebraic Geometry +0805.1644 General Physics +0805.2243 Commutative Algebra +0806.4504 Analysis of PDEs +0812.4896 Number Theory +0902.0391 Exactly Solvable and Integrable Systems +0902.2896 +0902.3647 Soft Condensed Matter +0903.2584 Statistical Mechanics +0904.0835 Phenomenology +0904.3445 Theory +0905.0563 Populations and Evolution +0905.1652 Superconductivity +0905.3420 +0907.4824 Spectral Theory +0908.2297 Cosmology and Nongalactic Astrophysics +0909.2956 +0909.3380 +0705.3363 +0706.0162 Theory +0707.2610 +0708.3564 Logic in Computer Science +0709.0199 +0709.4674 +0710.1814 +0710.3868 +0710.5376 Information Theory +0711.2420 +0711.3263 Physics and Society +0801.1844 Functional Analysis +0801.3052 Statistics Theory +0801.3365 +0801.4137 Quantum Algebra +0802.0723 Theory +0802.1044 Strongly Correlated Electrons +0802.1588 +0802.1642 +0802.2068 +0803.0400 Combinatorics +0803.3469 Theory +0805.1834 +0805.2330 Theory +0805.2373 +0805.2584 +0805.2668 +0805.2941 +0805.4347 +0805.4614 +0806.1828 Phenomenology +0806.1987 Phenomenology +0806.3077 Phenomenology +0806.3096 +0806.3859 Differential Geometry +0806.4506 Computational Finance +0806.4581 Phenomenology +0807.2113 Physics and Society +0807.2317 +0807.2543 Logic in Computer Science +0807.3929 Strongly Correlated Electrons +0807.4637 Theory +0808.0855 Mesoscale and Nanoscale Physics +0809.0805 Theory +0809.1711 +0809.2154 Lattice +0809.2273 Theory +0809.2439 Combinatorics +0809.2668 Theory +0809.2923 Theory +0809.3141 Theory +0809.3892 Differential Geometry +0809.4203 Theory +0809.4572 Theory +0809.4618 Theory +0810.0105 Algebraic Geometry +0810.0194 Phenomenology +0810.1406 +0810.2607 Combinatorics +0810.2848 +0810.3060 +0810.3992 Adaptation and Self-Organizing Systems +0810.4304 +0810.4574 +0810.4731 Superconductivity +0810.5045 Analysis of PDEs +0811.0761 Superconductivity +0811.1234 Number Theory +0811.1605 Atomic Physics +0811.2224 Superconductivity +0811.2841 Databases +0812.0977 Superconductivity +0812.2332 +0812.3843 Phenomenology +0812.4560 Differential Geometry +0812.4918 Symplectic Geometry +0901.0460 +0901.2814 Solar and Stellar Astrophysics +0901.3153 Superconductivity +0901.4595 Representation Theory +0902.1367 Cosmology and Nongalactic Astrophysics +0902.2261 Differential Geometry +0902.4098 Multiagent Systems +0903.2318 Statistical Mechanics +0903.3114 Computer Vision and Pattern Recognition +0903.3143 Algebraic Geometry +0903.3237 Combinatorics +0903.3245 General Topology +0903.3250 Chemical Physics +0903.3254 General Finance +0903.3267 +0903.3279 Statistical Mechanics +0903.3283 Combinatorics +0903.3287 Computational Geometry +0903.3289 Dynamical Systems +0903.3290 Operator Algebras +0903.3297 +0903.3301 +0903.3304 +0903.3306 Strongly Correlated Electrons +0903.3309 Earth and Planetary Astrophysics +0903.3312 +0903.3313 Earth and Planetary Astrophysics +0903.3318 +0903.3322 +0903.3323 Functional Analysis +0903.3326 Spectral Theory +0903.3327 Instrumentation and Methods for Astrophysics +0903.3328 Applications +0903.3329 Learning +0903.3331 Dynamical Systems +0903.3332 Complex Variables +0903.3342 Combinatorics +0903.3343 Algebraic Geometry +0903.3346 General Finance +0903.3348 Atomic Physics +0903.3361 Classical Analysis and ODEs +0903.3376 Symplectic Geometry +0903.3383 Instrumentation and Methods for Astrophysics +0903.3384 Instrumentation and Methods for Astrophysics +0903.3386 Populations and Evolution +0903.3395 Functional Analysis +0903.3401 Functional Analysis +astro-ph/0106563 +astro-ph/0106566 +astro-ph/0107391 +astro-ph/0201381 +astro-ph/0307128 +astro-ph/0405480 +astro-ph/0604548 +astro-ph/9603105 +astro-ph/9709040 +astro-ph/9907400 +cond-mat/0601418 Disordered Systems and Neural Networks +gr-qc/0203058 +gr-qc/0607095 +gr-qc/0612051 +hep-ex/0407031 Experiment +hep-ex/0409048 Experiment +hep-ex/0411052 Experiment +hep-ex/0507055 Experiment +hep-ex/0507076 Experiment +hep-ex/0508006 Experiment +hep-lat/9610010 Lattice +hep-ph/9412284 Phenomenology +hep-ph/9702400 Phenomenology +hep-ph/9910335 Phenomenology +math/0511696 Differential Geometry +nucl-ex/0004006 +nucl-ex/0007018 +nucl-ex/0009019 +nucl-ex/0010010 +nucl-ex/0011019 +nucl-ex/0103001 +nucl-ex/0108005 +nucl-ex/0108027 +nucl-ex/0109012 +nucl-ex/0110018 +nucl-ex/0210016 +nucl-ex/0210019 +nucl-ex/0302010 +nucl-ex/0302013 +nucl-ex/0302014 +nucl-ex/0311003 +nucl-ex/0312006 +nucl-ex/0401011 +nucl-ex/0401020 +nucl-ex/0402008 +nucl-ex/0407024 +nucl-ex/0501023 +nucl-ex/0507033 +nucl-ex/0603018 +nucl-ex/0603023 +nucl-ex/0603025 +nucl-ex/9803002 +nucl-ex/9803003 +nucl-ex/9912006 +nucl-ex/9912011 +nucl-th/0201069 +nucl-th/0411009 +nucl-th/9904032 +physics/0603220 General Physics +physics/0608313 Data Analysis, Statistics and Probability +physics/0702118 General Physics +quant-ph/0507190 +0704.0027 Mesoscale and Nanoscale Physics +0704.1356 Disordered Systems and Neural Networks +0707.3340 Probability +0707.4045 Spectral Theory +0708.3931 +0709.1153 +0709.1693 +0709.1892 +0709.3904 Disordered Systems and Neural Networks +0709.4034 +0711.2889 +0712.0370 +0712.1991 Phenomenology +0801.0873 Combinatorics +0801.4366 Probability +0803.1447 +0803.2230 Disordered Systems and Neural Networks +0804.3703 Soft Condensed Matter +0805.2874 Rings and Algebras +0805.3736 Mesoscale and Nanoscale Physics +0806.0177 +0806.2835 +0806.3865 Superconductivity +0806.4669 Combinatorics +0807.0195 Superconductivity +0807.1791 Materials Science +0807.2252 +0807.2799 +0807.4082 Chemical Physics +0807.4487 +0808.1715 Materials Science +0808.2133 +0809.1168 +0809.1549 Neurons and Cognition +0809.2105 Materials Science +0809.3523 +0810.4627 Dynamical Systems +0811.2934 Phenomenology +0811.3747 +0812.0788 Phenomenology +0812.1201 Strongly Correlated Electrons +0812.2099 Physics and Society +0812.2852 Data Analysis, Statistics and Probability +0812.3405 +0812.4396 Disordered Systems and Neural Networks +0812.4649 Theory +0901.0108 +0901.0796 Theory +0901.2726 +0901.3165 Phenomenology +0901.4637 Solar and Stellar Astrophysics +0902.0274 Theory +0902.1498 Phenomenology +0902.2263 Theory +0902.3128 Theory +0902.3841 Data Analysis, Statistics and Probability +0902.4507 Phenomenology +0902.4644 Phenomenology +0903.1404 +0903.1632 Strongly Correlated Electrons +0903.1867 Disordered Systems and Neural Networks +0903.2084 Theory +0903.2293 Theory +0903.4158 Cosmology and Nongalactic Astrophysics +0903.4352 +0903.4492 Cosmology and Nongalactic Astrophysics +0903.5303 Theory +0904.1018 High Energy Astrophysical Phenomena +0904.1188 Theory +0904.1446 Information Theory +0904.1894 Mesoscale and Nanoscale Physics +0904.1942 Phenomenology +0904.2164 Phenomenology +0904.2173 Phenomenology +0904.2789 Phenomenology +0904.2860 +0904.3144 Theory +0904.3816 Phenomenology +0904.4053 High Energy Astrophysical Phenomena +0904.4264 Statistics Theory +0904.4540 Materials Science +0904.4712 +0904.4772 Theory +0905.0144 Cosmology and Nongalactic Astrophysics +0905.0763 Experiment +0905.0903 Theory +0905.1245 Cosmology and Nongalactic Astrophysics +0905.1654 +0905.2359 Theory +0905.2398 Theory +0905.3333 Disordered Systems and Neural Networks +0905.3899 High Energy Astrophysical Phenomena +0905.3945 Cosmology and Nongalactic Astrophysics +0905.4020 Cosmology and Nongalactic Astrophysics +0905.4508 Cosmology and Nongalactic Astrophysics +0906.0442 Phenomenology +0906.0941 +0906.0984 Phenomenology +0906.1198 Cosmology and Nongalactic Astrophysics +0906.1227 Strongly Correlated Electrons +0906.1361 High Energy Astrophysical Phenomena +0906.1398 Cosmology and Nongalactic Astrophysics +0906.1422 Theory +0906.1460 Phenomenology +0906.1609 Phenomenology +0906.1958 Phenomenology +0906.2065 High Energy Astrophysical Phenomena +0906.2244 High Energy Astrophysical Phenomena +0906.2588 +0906.2771 Soft Condensed Matter +0906.3059 Strongly Correlated Electrons +0906.3088 +0906.3172 Theory +0906.3261 Theory +0906.3342 +0906.3436 Phenomenology +0906.3448 Solar and Stellar Astrophysics +0906.3754 Statistical Mechanics +0906.3805 Phenomenology +0906.3806 +0906.3860 +0906.4075 Instrumentation and Detectors +0906.4361 Theory +0906.4464 Theory +0906.4525 Phenomenology +0906.4554 Cosmology and Nongalactic Astrophysics +0906.4696 Phenomenology +0906.5237 Materials Science +0906.5273 Phenomenology +0906.5569 Superconductivity +0906.5589 Phenomenology +0907.0682 Phenomenology +0907.0910 Theory +0907.0915 Solar and Stellar Astrophysics +0907.1041 Phenomenology +0907.1124 Theory +0907.1549 Cosmology and Nongalactic Astrophysics +0907.1577 Phenomenology +0907.1699 Disordered Systems and Neural Networks +0907.1841 +0907.1882 +0907.2301 Classical Physics +0907.2683 Phenomenology +0907.2801 Theory +0907.3300 Phenomenology +0907.3425 Phenomenology +0907.4129 Algebraic Geometry +0907.5559 Soft Condensed Matter +0908.0248 Quantum Gases +0908.0562 Solar and Stellar Astrophysics +0909.0590 Differential Geometry +0909.0921 Mesoscale and Nanoscale Physics +0909.1204 Phenomenology +0909.1315 Cryptography and Security +0909.2588 Symplectic Geometry +0909.3577 Materials Science +0909.3930 +0909.3940 Algebraic Geometry +0909.4073 Applications +0909.4083 Cosmology and Nongalactic Astrophysics +0909.4089 Computational Finance +0909.4095 Metric Geometry +0909.4102 Commutative Algebra +0909.4107 Dynamical Systems +0909.4108 Cosmology and Nongalactic Astrophysics +0909.4109 +0909.4111 Analysis of PDEs +0909.4112 Rings and Algebras +0909.4113 Metric Geometry +0909.4121 Solar and Stellar Astrophysics +0909.4125 Mesoscale and Nanoscale Physics +0909.4126 Information Theory +0909.4129 Computation +0909.4134 Algebraic Geometry +0909.4136 Category Theory +0909.4142 Probability +0909.4152 Experiment +0909.4158 Genomics +0909.4164 Cosmology and Nongalactic Astrophysics +0909.4165 Cosmology and Nongalactic Astrophysics +0909.4167 Cosmology and Nongalactic Astrophysics +0909.4169 +0909.4172 Geometric Topology +0909.4173 Mesoscale and Nanoscale Physics +0909.4174 Materials Science +0909.4175 Optics +0909.4176 Superconductivity +0909.4177 Information Theory +0909.4178 Classical Analysis and ODEs +0909.4190 Group Theory +0909.4192 Cosmology and Nongalactic Astrophysics +0909.4195 +0909.4196 Databases +0909.4197 Pattern Formation and Solitons +0909.4200 +0909.4202 Computers and Society +0909.4203 Information Theory +0909.4208 Strongly Correlated Electrons +0909.4213 Probability +0909.4224 Data Structures and Algorithms +0909.4232 Classical Analysis and ODEs +0909.4235 +0909.4237 Experiment +0909.4239 Quantitative Methods +0909.4242 Logic +0909.4244 Combinatorics +0909.4246 Number Theory +0909.4247 Dynamical Systems +0909.4248 Quantitative Methods +0909.4250 Dynamical Systems +0909.4258 Classical Analysis and ODEs +0909.4259 Quantum Algebra +0909.4261 Materials Science +0909.4264 Solar and Stellar Astrophysics +0909.4266 Classical Analysis and ODEs +0909.4267 Probability +0909.4272 Theory +0909.4273 Number Theory +0909.4275 Discrete Mathematics +0909.4280 Computation and Language +0909.4284 Astrophysics of Galaxies +0909.4290 Superconductivity +0909.4291 Functional Analysis +astro-ph/0411171 +cond-mat/0406573 Strongly Correlated Electrons +cond-mat/0502207 Disordered Systems and Neural Networks +cond-mat/0701495 Statistical Mechanics +cs/0611162 Information Theory +hep-ex/0412011 Experiment +hep-ph/0001045 Phenomenology +hep-ph/0008188 Phenomenology +hep-ph/0105179 Phenomenology +hep-ph/0112105 Phenomenology +hep-ph/0204149 Phenomenology +hep-ph/0209243 Phenomenology +hep-ph/0212087 Phenomenology +hep-ph/0311055 Phenomenology +hep-ph/0410153 Phenomenology +hep-ph/0507180 Phenomenology +hep-ph/0606308 Phenomenology +hep-ph/9310314 Phenomenology +hep-ph/9504239 Phenomenology +hep-ph/9609252 Phenomenology +hep-ph/9710488 Phenomenology +hep-ph/9712219 Phenomenology +hep-ph/9809501 Phenomenology +hep-th/0212068 Theory +hep-th/0401193 Theory +hep-th/0410119 Theory +hep-th/0503114 Theory +math/0505345 Group Theory +nucl-ex/0412035 +nucl-ex/0504028 +nucl-ex/0612023 +nucl-th/0612106 +0707.0597 Differential Geometry +0710.3849 Statistical Mechanics +0712.1796 +0804.2921 Other Condensed Matter +0807.2627 Analysis of PDEs +0807.4364 +0807.4972 Physics and Society +0809.1647 Phenomenology +0809.3494 Probability +0811.3340 Atomic Physics +0812.2807 Statistical Mechanics +0812.3921 Algebraic Geometry +0901.0329 Solar and Stellar Astrophysics +0902.2502 Superconductivity +0902.2869 Theory +0903.3095 Theory +0903.4141 Solar and Stellar Astrophysics +gr-qc/0610132 +hep-ph/0702271 Phenomenology +hep-th/0701030 Theory +0706.1062 Data Analysis, Statistics and Probability +0707.0794 Statistical Mechanics +0710.3069 Operator Algebras +0804.2088 Phenomenology +0804.3827 +0808.1251 Representation Theory +0812.0674 +0812.1189 +0812.4141 Mesoscale and Nanoscale Physics +0901.1863 History and Philosophy of Physics +0902.1337 Strongly Correlated Electrons +0902.1702 Algebraic Geometry +0902.1916 Statistical Mechanics +0902.2638 +0902.2802 Superconductivity +0902.3203 Algebraic Geometry +0902.3450 Strongly Correlated Electrons +0903.1308 Cosmology and Nongalactic Astrophysics +0904.1562 +0904.3768 Analysis of PDEs +0905.3791 +0906.0169 Superconductivity +0906.0974 Instrumentation and Methods for Astrophysics +0906.3125 Combinatorics +0906.3637 Phenomenology +0907.2022 Materials Science +0907.2278 General Physics +0908.0692 Quantum Gases +0908.0699 Number Theory +0908.0758 Statistical Mechanics +0909.0053 Combinatorics +0909.0891 Algebraic Geometry +0909.1616 Algebraic Topology +0909.3130 Optics +0909.5539 +0910.0321 Mesoscale and Nanoscale Physics +0910.1617 Analysis of PDEs +0910.1624 Geometric Topology +0910.2439 Spectral Theory +0910.3189 Logic +0910.3644 High Energy Astrophysical Phenomena +0910.4793 Phenomenology +0910.5224 Cosmology and Nongalactic Astrophysics +0910.5738 +0910.5779 +0911.0347 +0911.0833 Other Condensed Matter +0911.1546 Networking and Internet Architecture +0911.1859 Cosmology and Nongalactic Astrophysics +0911.1988 Experiment +0911.1993 +0911.1994 Mesoscale and Nanoscale Physics +0911.1995 Soft Condensed Matter +0911.2001 Functional Analysis +0911.2018 Combinatorics +0911.2021 Populations and Evolution +0911.2022 Information Theory +0911.2026 Commutative Algebra +0911.2028 Physics and Society +0911.2033 Formal Languages and Automata Theory +0911.2034 Logic in Computer Science +0911.2035 Logic in Computer Science +0911.2036 Cryptography and Security +0911.2039 Algebraic Geometry +0911.2046 Phenomenology +0911.2048 Group Theory +0911.2051 Combinatorics +0911.2053 Information Theory +0911.2054 Number Theory +0911.2057 Combinatorics +0911.2066 High Energy Astrophysical Phenomena +0911.2071 Adaptation and Self-Organizing Systems +0911.2073 Commutative Algebra +0911.2075 Networking and Internet Architecture +0911.2079 Solar and Stellar Astrophysics +0911.2082 Solar and Stellar Astrophysics +0911.2085 Phenomenology +0911.2086 General Physics +0911.2087 General Physics +0911.2092 Phenomenology +0911.2093 Methodology +0911.2098 +0911.2099 Combinatorics +0911.2104 Combinatorics +0911.2106 General Physics +0911.2108 Plasma Physics +0911.2124 Exactly Solvable and Integrable Systems +0911.2126 Dynamical Systems +0911.2127 Superconductivity +0911.2131 Soft Condensed Matter +0911.2134 Spectral Theory +0911.2135 +0911.2143 Mesoscale and Nanoscale Physics +0911.2160 Combinatorics +0911.2163 Representation Theory +0911.2176 Physics and Society +0911.2180 Theory +0911.2182 Rings and Algebras +0911.2184 Quantum Gases +0911.2188 Group Theory +0911.2193 Networking and Internet Architecture +0911.2203 Algebraic Geometry +0911.2210 Representation Theory +0911.2213 Differential Geometry +0911.2217 +math/0109183 Geometric Topology +math/0503643 Operator Algebras +math/0607395 Algebraic Geometry +math/0608548 Operator Algebras +math/0703199 Metric Geometry +0711.0860 Phenomenology +0801.0080 Number Theory +0902.0987 Analysis of PDEs +0903.1970 Cosmology and Nongalactic Astrophysics +0903.3022 Materials Science +0903.3991 +0904.4881 Instrumentation and Detectors +0905.1191 Quantitative Methods +0905.4822 +0906.1298 Materials Science +0906.2839 +0908.3917 Analysis of PDEs +0909.0192 Dynamical Systems +0909.3733 Number Theory +0909.4490 Probability +0909.4499 Probability +0705.1976 Adaptation and Self-Organizing Systems +0706.3130 +0708.0809 Combinatorics +0709.1928 +0710.0334 Theory +0710.1071 Classical Physics +0710.3311 Soft Condensed Matter +0712.1455 Classical Analysis and ODEs +0802.2288 Exactly Solvable and Integrable Systems +0803.3834 +0804.1619 Metric Geometry +0804.4391 Information Theory +0806.1555 Soft Condensed Matter +0807.0428 Representation Theory +0807.3377 Metric Geometry +0807.3869 Rings and Algebras +0807.4639 Statistical Finance +0808.1479 Mesoscale and Nanoscale Physics +0809.1751 Combinatorics +0809.2646 Optics +0809.5038 +0809.5271 Theory +0811.0287 +0812.0749 Algebraic Geometry +0812.2334 +0812.4372 +0901.2467 Theory +0901.3334 Theory +0902.0332 Quantum Algebra +0902.3181 Superconductivity +0903.0446 +0903.2373 Materials Science +0903.3656 Mesoscale and Nanoscale Physics +0903.3758 Materials Science +0904.1136 Instrumentation and Methods for Astrophysics +0904.4205 +0904.4866 Quantum Gases +0905.0146 Phenomenology +0905.3713 Discrete Mathematics +0905.3765 Number Theory +0905.3798 +0905.3811 +0905.3886 Algebraic Geometry +0905.4079 Phenomenology +0905.4083 Representation Theory +0905.4087 Multimedia +0905.4090 Logic in Computer Science +0905.4091 Information Theory +0905.4092 Molecular Networks +0905.4093 Metric Geometry +0905.4096 Physics and Society +0905.4098 Physics and Society +0905.4099 Chemical Physics +0905.4100 Data Structures and Algorithms +0905.4104 +0905.4106 General Physics +0905.4121 +0905.4124 +0905.4131 Computation +0905.4137 +0905.4138 Databases +0905.4139 Symplectic Geometry +0905.4147 Distributed, Parallel, and Cluster Computing +0905.4151 Classical Analysis and ODEs +0905.4152 Experiment +0905.4154 Experiment +0905.4161 Commutative Algebra +0905.4163 Information Theory +0905.4171 General Finance +0905.4173 Mesoscale and Nanoscale Physics +0905.4174 Cosmology and Nongalactic Astrophysics +0905.4183 Biomolecules +0905.4192 Analysis of PDEs +0905.4193 Formal Languages and Automata Theory +0905.4196 Probability +0905.4200 Logic in Computer Science +0905.4201 Data Structures and Algorithms +0905.4203 Other Computer Science +0905.4205 Multimedia +0905.4209 Group Theory +0905.4211 Chemical Physics +0905.4216 Combinatorics +0905.4217 Number Theory +0905.4223 Solar and Stellar Astrophysics +0905.4226 Software Engineering +0905.4234 +0905.4241 Computational Geometry +0905.4243 Lattice +0905.4247 Probability +0905.4250 Analysis of PDEs +0905.4251 Logic in Computer Science +0905.4256 Complex Variables +0905.4259 Cosmology and Nongalactic Astrophysics +0905.4262 Solar and Stellar Astrophysics +0905.4263 Complex Variables +0905.4266 Number Theory +0905.4268 Differential Geometry +0905.4273 Experiment +0905.4276 Dynamical Systems +0905.4279 Experiment +0905.4280 +0905.4281 Experiment +astro-ph/0507696 +astro-ph/0509509 +cond-mat/0403339 Other Condensed Matter +cond-mat/0505465 Statistical Mechanics +cond-mat/0508101 Disordered Systems and Neural Networks +cond-mat/0605082 Statistical Mechanics +gr-qc/0602005 +math-ph/0702006 +math/0411111 Differential Geometry +math/0509674 Category Theory +math/0607522 K-Theory and Homology +math/0702240 Number Theory +physics/0607252 Physics and Society +0704.2578 Algebraic Geometry +0708.1034 Probability +0709.3360 Analysis of PDEs +0709.4295 +0711.4431 +0711.4671 Theory +0711.4863 Theory +0711.4878 Theory +0712.0950 Exactly Solvable and Integrable Systems +0712.1895 Theory +0712.2174 Statistical Mechanics +0712.2821 Theory +0801.0729 +0801.1294 Theory +0801.2557 Theory +0801.4479 Theory +0802.2809 Theory +0802.2890 Theory +0802.3456 Theory +0802.3518 Theory +0802.3573 Theory +0802.3603 Theory +0802.3644 Theory +0802.3662 Theory +0802.3674 Theory +0802.3923 Theory +0802.3953 Theory +0802.4230 Theory +0802.4401 Theory +0802.4445 Theory +0803.0098 Theory +0803.0250 Theory +0803.0291 Theory +0803.0315 Theory +0803.0318 Theory +0803.1928 Theory +0805.0685 Adaptation and Self-Organizing Systems +0806.0738 Theory +0806.1639 Theory +0806.1960 Theory +0806.1964 Theory +0806.3180 Probability +0806.4930 +0807.1363 +0807.2234 +0807.3320 Phenomenology +0807.3942 Phenomenology +0807.4532 +0807.4932 +0807.4987 Phenomenology +0808.0470 Phenomenology +0808.0490 Phenomenology +0808.0829 Phenomenology +0808.1491 Phenomenology +0808.2253 +0808.3345 Exactly Solvable and Integrable Systems +0808.3674 Phenomenology +0809.0693 +0809.0695 +0809.0734 +0809.0800 Phenomenology +0809.0865 +0809.3190 +0810.3194 +0810.3394 +0810.3970 Theory +0810.4515 +0810.5677 +0811.0200 Phenomenology +0811.0916 Lattice +0811.0945 Soft Condensed Matter +0811.3293 Theory +0811.3459 Phenomenology +0811.3815 +0811.3823 +0811.4103 +0811.4325 Theory +0811.4534 Other Condensed Matter +0811.4635 Lattice +0812.0149 Analysis of PDEs +0812.1020 +0812.1426 Lattice +0812.2534 +0812.2699 Theory +0812.2768 +0812.2791 +0812.3238 Phenomenology +0812.3705 Risk Management +0812.4136 Phenomenology +0812.4448 Phenomenology +0812.4531 Theory +0812.4640 Phenomenology +0812.4790 Theory +0901.0114 Phenomenology +0901.0128 Statistical Mechanics +0901.0150 Phenomenology +0901.0204 Phenomenology +0901.0260 Phenomenology +0901.0307 Phenomenology +0901.0478 Phenomenology +0901.0497 Phenomenology +0901.0603 +0901.0648 Phenomenology +0901.0669 Phenomenology +0901.1081 Phenomenology +0901.1382 +0901.1513 Phenomenology +0901.1555 Phenomenology +0901.1962 Phenomenology +0901.2257 Phenomenology +0901.2427 Phenomenology +0901.2811 Commutative Algebra +0901.2873 Phenomenology +0901.3558 Theory +0901.4596 Phenomenology +0901.4677 Phenomenology +0902.0339 Theory +0902.0401 +0902.1287 +0902.1346 Physics and Society +0902.1551 +0902.1583 +0902.1796 Algebraic Geometry +0902.2145 Phenomenology +0902.2342 Phenomenology +0902.2536 Phenomenology +0902.2825 Phenomenology +0902.2951 Phenomenology +0902.3046 Theory +0902.3170 Theory +0902.3522 +0902.4407 Theory +0902.4767 +0903.0202 Phenomenology +0903.0268 Solar and Stellar Astrophysics +0903.0275 Phenomenology +0903.0953 Theory +0903.2788 Cosmology and Nongalactic Astrophysics +0903.2916 Theory +0903.3637 Theory +0903.4022 Theory +0903.4176 Theory +0903.4320 Phenomenology +0904.0046 Theory +0904.0202 Solar and Stellar Astrophysics +0904.0318 Phenomenology +0904.0839 Theory +0904.1012 Astrophysics of Galaxies +0904.1095 Theory +0904.1252 Phenomenology +0904.1272 +0904.1340 +0904.1410 Phenomenology +0904.1646 Phenomenology +0904.1721 Phenomenology +0904.1936 Theory +0904.1943 +0904.2124 Phenomenology +0904.2163 +0904.2425 Phenomenology +0904.3346 Phenomenology +0904.3389 Cosmology and Nongalactic Astrophysics +0904.4025 Phenomenology +0904.4043 Phenomenology +0904.4068 Phenomenology +0904.4262 Phenomenology +0904.4311 +0904.4346 Phenomenology +0904.4352 Phenomenology +0904.4368 +0904.4610 Quantum Gases +0904.4750 Phenomenology +0905.0091 Fluid Dynamics +0905.0473 Theory +0905.0622 Phenomenology +0905.1160 Cosmology and Nongalactic Astrophysics +0905.1541 +0905.2126 Phenomenology +0905.2567 Mesoscale and Nanoscale Physics +0905.2739 Phenomenology +0905.2797 High Energy Astrophysical Phenomena +0905.3968 +0905.4219 Combinatorics +0905.4302 Phenomenology +0905.4593 Cosmology and Nongalactic Astrophysics +0905.4660 Phenomenology +0905.4736 High Energy Astrophysical Phenomena +0905.4807 Phenomenology +0906.1200 Solar and Stellar Astrophysics +0906.1520 +0906.1768 +0906.1774 +0906.2066 +0906.2503 +0906.2573 Theory +0906.3095 +0906.3430 Solar and Stellar Astrophysics +0906.3538 Lattice +0906.3556 +0906.3868 Disordered Systems and Neural Networks +0906.4064 Earth and Planetary Astrophysics +0906.4811 Plasma Physics +0907.0227 Theory +0907.0711 Cosmology and Nongalactic Astrophysics +0907.0757 +0907.1331 Theory +0907.1824 Theory +0907.2007 Cosmology and Nongalactic Astrophysics +0907.2174 +0907.2344 +0907.3713 Experiment +0907.4145 Cosmology and Nongalactic Astrophysics +0907.4297 Statistical Mechanics +0907.5350 +0908.0242 Phenomenology +0908.0485 Theory +0908.0759 Experiment +0908.1923 Theory +0908.2249 Theory +0908.2920 Materials Science +0908.3184 Neural and Evolutionary Computing +0908.3676 Phenomenology +0908.3763 Physics and Society +0908.4339 Theory +0909.0186 +0909.0211 Strongly Correlated Electrons +0909.0334 +0909.0341 +0909.0351 +0909.0357 +0909.0923 Superconductivity +0909.0980 Theory +0909.0997 +0909.1000 Theory +0909.2233 Differential Geometry +0909.3198 Disordered Systems and Neural Networks +0909.4100 Representation Theory +0910.3110 Strongly Correlated Electrons +0910.3280 Fluid Dynamics +0910.4147 Representation Theory +0910.4266 Computational Complexity +0910.4744 Complex Variables +0910.5067 Materials Science +0910.5904 Functional Analysis +0911.0960 General Physics +0911.1067 Symplectic Geometry +0911.1091 +0911.2147 Optics +0911.2284 Computation and Language +0911.2513 Analysis of PDEs +0911.2885 Materials Science +0911.2948 Information Theory +0911.3005 Logic in Computer Science +0911.3126 Theory +0911.3167 Quantum Gases +0911.3224 Probability +0911.3399 +0911.3403 Plasma Physics +0911.3404 Analysis of PDEs +0911.3405 Logic in Computer Science +0911.3406 Adaptation and Self-Organizing Systems +0911.3407 Physics and Society +0911.3411 Computation and Language +0911.3412 Physics and Society +0911.3413 Theory +0911.3414 Physics and Society +0911.3415 Digital Libraries +0911.3416 Information Retrieval +0911.3419 Earth and Planetary Astrophysics +0911.3420 +0911.3421 Physics and Society +0911.3422 Information Retrieval +0911.3424 Physics and Society +0911.3425 Physics and Society +0911.3430 +0911.3434 Combinatorics +0911.3440 Logic in Computer Science +0911.3441 Populations and Evolution +0911.3446 Logic +0911.3449 Probability +0911.3452 General Physics +0911.3458 Exactly Solvable and Integrable Systems +0911.3463 Phenomenology +0911.3466 Rings and Algebras +0911.3469 Statistics Theory +0911.3472 Risk Management +0911.3475 Combinatorics +0911.3476 Physics and Society +0911.3477 Phenomenology +0911.3481 Statistics Theory +0911.3487 +0911.3490 +0911.3501 Statistics Theory +0911.3508 Phenomenology +0911.3511 Differential Geometry +0911.3515 Disordered Systems and Neural Networks +0911.3516 Dynamical Systems +0911.3520 Methodology +0911.3522 Number Theory +0911.3528 Networking and Internet Architecture +0911.3529 Representation Theory +0911.3531 Statistics Theory +0911.3532 Differential Geometry +0911.3533 Probability +0911.3537 Algebraic Geometry +0911.3538 Sound +0911.3543 +0911.3556 Quantum Algebra +0911.3558 Computers and Society +0911.3563 Biomolecules +0911.3565 Commutative Algebra +0911.3567 Computational Physics +0911.3569 Complex Variables +0911.3570 Rings and Algebras +0911.3572 Materials Science +0911.3574 Disordered Systems and Neural Networks +0911.3576 Instrumentation and Methods for Astrophysics +0911.3580 Fluid Dynamics +0911.3581 Computers and Society +0911.3582 Other Condensed Matter +0911.3587 Earth and Planetary Astrophysics +0911.3589 Numerical Analysis +0911.3600 Databases +0911.3603 Algebraic Topology +0911.3604 Combinatorics +0911.3624 Differential Geometry +0911.3628 K-Theory and Homology +0911.3631 Geophysics +0911.3634 Physics and Society +0911.3636 Adaptation and Self-Organizing Systems +0911.3637 Soft Condensed Matter +0911.3638 Physics and Society +0911.3641 Digital Libraries +0911.3643 Information Retrieval +0911.3644 Human-Computer Interaction +0911.3645 +0911.3646 Physics and Society +0911.3649 Materials Science +0911.3650 +astro-ph/0603255 +astro-ph/0609601 +astro-ph/9911094 +cond-mat/0701450 Statistical Mechanics +cond-mat/0702215 Statistical Mechanics +gr-qc/0202053 +gr-qc/0411026 +gr-qc/9210012 +gr-qc/9211010 +gr-qc/9512022 +gr-qc/9812013 +gr-qc/9901007 +hep-ex/0210020 Experiment +hep-ph/0003205 Phenomenology +hep-ph/0003206 Phenomenology +hep-ph/0010113 Phenomenology +hep-ph/0012150 Phenomenology +hep-ph/0204196 Phenomenology +hep-ph/9805242 Phenomenology +hep-ph/9810303 Phenomenology +hep-ph/9901406 Phenomenology +hep-ph/9905330 Phenomenology +hep-th/9712064 Theory +hep-th/9805205 Theory +hep-th/9906178 Theory +math-ph/9805020 +math-ph/9812005 +math/0504358 Differential Geometry +math/0510107 Analysis of PDEs +math/0609519 Quantum Algebra +math/0701745 Combinatorics +nlin/0404011 Adaptation and Self-Organizing Systems +nlin/0404012 Adaptation and Self-Organizing Systems +nlin/0604061 Adaptation and Self-Organizing Systems +physics/0402105 History and Philosophy of Physics +0708.4092 Phenomenology +0712.2204 Algebraic Geometry +0801.0275 Applications +0803.4176 Phenomenology +0804.1007 +0804.1377 +0804.2703 +0805.2465 Combinatorics +0806.1269 Algebraic Geometry +0806.3352 Strongly Correlated Electrons +0806.4857 Classical Analysis and ODEs +0808.0460 Algebraic Geometry +0808.2267 Dynamical Systems +0808.3625 Mesoscale and Nanoscale Physics +0809.0209 Popular Physics +0809.0485 Theory +0809.5025 Mesoscale and Nanoscale Physics +0810.2025 +0811.0575 +0811.1162 Statistical Mechanics +0811.1730 Quantum Algebra +0811.2754 Logic +0811.3701 Number Theory +0812.1296 Physics and Society +0812.1439 Other Condensed Matter +0812.2340 Algebraic Geometry +0812.3111 Optics +0812.3810 Theory +0812.4081 +0812.4114 History and Overview +0812.4673 Classical Analysis and ODEs +0901.1470 +0902.0493 Cosmology and Nongalactic Astrophysics +0902.0723 General Topology +0902.1042 Formal Languages and Automata Theory +0902.1564 Algebraic Geometry +0902.2055 Theory +0902.2091 Optimization and Control +0902.2284 +0902.2646 Combinatorics +0903.1016 Solar and Stellar Astrophysics +0903.1022 Information Theory +0903.1066 Classical Analysis and ODEs +0903.1099 Commutative Algebra +0903.1100 Astrophysics of Galaxies +0903.1107 Cosmology and Nongalactic Astrophysics +0903.1113 +0903.1114 Solar and Stellar Astrophysics +0903.1125 Learning +0903.1133 +0903.1139 Artificial Intelligence +0903.1140 Algebraic Geometry +0903.1143 Phenomenology +0903.1146 Artificial Intelligence +0903.1148 Optimization and Control +0903.1150 Artificial Intelligence +0903.1151 Mesoscale and Nanoscale Physics +0903.1152 Artificial Intelligence +0903.1155 Statistical Mechanics +0903.1156 Combinatorics +0903.1157 Information Theory +0903.1160 Functional Analysis +0903.1161 Instrumentation and Detectors +0903.1163 Atomic and Molecular Clusters +0903.1168 Functional Analysis +0903.1172 Subcellular Processes +0903.1176 Theory +0903.1181 Superconductivity +0903.1183 Information Theory +0903.1188 Representation Theory +0903.1196 Logic in Computer Science +0903.1197 Combinatorics +0903.1198 Probability +0903.1199 Disordered Systems and Neural Networks +0903.1202 Algebraic Geometry +0903.1206 Solar and Stellar Astrophysics +0903.1213 Combinatorics +0903.1221 Solar and Stellar Astrophysics +0903.1225 Theory +0903.1228 Disordered Systems and Neural Networks +0903.1233 Optics +0903.1237 Mesoscale and Nanoscale Physics +0903.1244 Numerical Analysis +0903.1245 Algebraic Geometry +0903.1254 Theory +0903.1263 Phenomenology +0903.1267 General Physics +0903.1272 Cosmology and Nongalactic Astrophysics +0903.1275 Medical Physics +0903.1277 Differential Geometry +astro-ph/0206253 +astro-ph/0207442 +astro-ph/0208274 +astro-ph/0210598 +astro-ph/0211284 +astro-ph/0308453 +astro-ph/0309112 +astro-ph/0408268 +astro-ph/0408571 +astro-ph/0601636 +astro-ph/0603729 +astro-ph/0609340 +astro-ph/0703137 +astro-ph/9912119 +hep-ex/0411018 Experiment +hep-lat/0110120 Lattice +hep-lat/0610108 Lattice +hep-lat/9510009 Lattice +hep-lat/9605033 Lattice +hep-ph/0405152 Phenomenology +hep-ph/0511306 Phenomenology +hep-ph/0512007 Phenomenology +hep-ph/9601249 Phenomenology +hep-ph/9605220 Phenomenology +hep-ph/9605221 Phenomenology +hep-th/0508173 Theory +hep-th/0610056 Theory +hep-th/9506099 Theory +hep-th/9912043 Theory +math/0202258 Quantum Algebra +math/0409312 Geometric Topology +math/0703903 Statistics Theory +physics/0608001 Accelerator Physics +q-bio/0607048 Populations and Evolution +0705.2075 Algebraic Geometry +0705.2076 Algebraic Geometry +0705.3913 Algebraic Geometry +0707.1257 +0711.0201 Group Theory +0804.1573 Metric Geometry +0804.2995 Functional Analysis +0805.2882 +0805.2902 +0807.3750 Strongly Correlated Electrons +0808.0621 Materials Science +0808.3763 Operator Algebras +0809.4717 Theory +0810.2433 Strongly Correlated Electrons +0810.2587 +0810.3531 +0812.1671 General Topology +0812.4800 Mesoscale and Nanoscale Physics +0901.0840 Mesoscale and Nanoscale Physics +0901.4547 +0902.3356 Analysis of PDEs +0902.3434 +0902.4025 +0903.2103 Disordered Systems and Neural Networks +0903.2847 Materials Science +0904.0359 Analysis of PDEs +0904.1346 Analysis of PDEs +0904.1649 +0904.3807 Mesoscale and Nanoscale Physics +0905.0307 Strongly Correlated Electrons +0905.0790 Materials Science +0905.1780 Discrete Mathematics +0905.1896 Superconductivity +0905.3878 Data Analysis, Statistics and Probability +0905.4532 Strongly Correlated Electrons +0906.2336 Materials Science +0906.3209 Classical Analysis and ODEs +0906.3970 Mesoscale and Nanoscale Physics +0906.4954 Cosmology and Nongalactic Astrophysics +0907.0122 Mesoscale and Nanoscale Physics +0907.0892 Astrophysics of Galaxies +0907.1701 +0907.1887 +0907.5037 Chaotic Dynamics +0908.0035 +0908.1919 Computer Vision and Pattern Recognition +0908.2120 Mesoscale and Nanoscale Physics +0909.4260 Other Computer Science +0909.4426 Mesoscale and Nanoscale Physics +0909.4646 Algebraic Geometry +0909.5047 Solar and Stellar Astrophysics +0909.5428 Cosmology and Nongalactic Astrophysics +0909.5437 Numerical Analysis +0909.5442 Experiment +0909.5445 Mesoscale and Nanoscale Physics +0909.5446 Differential Geometry +0909.5449 Spectral Theory +0909.5451 +0909.5452 Number Theory +0909.5453 Numerical Analysis +0909.5458 Computer Vision and Pattern Recognition +0909.5459 Combinatorics +0909.5464 Solar and Stellar Astrophysics +0909.5471 Number Theory +0909.5478 +0909.5479 Computational Complexity +0909.5487 Representation Theory +0909.5493 Materials Science +0909.5496 Materials Science +0909.5498 Materials Science +0909.5500 Cosmology and Nongalactic Astrophysics +0909.5501 Materials Science +0909.5502 Materials Science +0909.5503 Materials Science +0909.5504 Computational Physics +0909.5505 Computational Physics +0909.5506 Materials Science +0909.5507 Information Theory +0909.5509 Mesoscale and Nanoscale Physics +0909.5514 K-Theory and Homology +0909.5520 Algebraic Geometry +0909.5523 Quantum Gases +0909.5525 Superconductivity +0909.5528 Instrumentation and Methods for Astrophysics +0909.5530 Databases +0909.5536 Optics +0909.5538 Solar and Stellar Astrophysics +0909.5542 Atomic Physics +0909.5547 Algebraic Geometry +0909.5548 Algebraic Geometry +0909.5554 Other Computer Science +0909.5557 Astrophysics of Galaxies +0909.5558 +0909.5561 +0909.5562 High Energy Astrophysical Phenomena +0909.5569 Superconductivity +0909.5573 Combinatorics +0909.5578 Cosmology and Nongalactic Astrophysics +0909.5581 Combinatorics +0909.5587 High Energy Astrophysical Phenomena +0909.5589 High Energy Astrophysical Phenomena +0909.5590 Category Theory +0909.5596 Experiment +0909.5597 Phenomenology +0909.5603 Accelerator Physics +0909.5623 Logic +0909.5628 Fluid Dynamics +0909.5629 Phenomenology +0909.5643 Phenomenology +0909.5649 Data Structures and Algorithms +0909.5652 Combinatorics +0909.5653 Computer Science and Game Theory +0909.5656 Computer Vision and Pattern Recognition +0909.5663 Functional Analysis +0909.5664 Combinatorics +0909.5668 Dynamical Systems +0909.5669 Combinatorics +0909.5671 Complex Variables +0909.5675 Functional Analysis +0909.5676 Algebraic Geometry +0909.5677 Computer Science and Game Theory +0909.5678 +0909.5681 Theory +0909.5684 Computational Complexity +0909.5686 Mesoscale and Nanoscale Physics +0909.5689 Experiment +cond-mat/0304271 Strongly Correlated Electrons +hep-ex/0205004 Experiment +math/0605009 Differential Geometry +math/0612273 K-Theory and Homology +math/0702792 Differential Geometry +physics/9902048 Popular Physics +quant-ph/0602014 +0705.0054 Statistical Mechanics +0705.0844 K-Theory and Homology +0712.3498 +0802.0613 +0802.2708 +0803.1193 +0806.0330 Phenomenology +0806.2473 Analysis of PDEs +0806.4701 +0806.4863 Lattice +0808.0505 +0810.1292 Statistical Mechanics +0810.1819 Exactly Solvable and Integrable Systems +0810.2109 +0810.3812 Disordered Systems and Neural Networks +0810.5346 Theory +0811.1140 Materials Science +0812.1406 +0901.0248 Phenomenology +0901.0426 Phenomenology +0901.1059 +0901.4347 Theory +0901.4708 +0902.0099 +0902.0375 Theory +0902.0444 Instrumentation and Detectors +0902.0453 +0902.0663 Superconductivity +0902.0999 +0902.1036 +0902.1539 Theory +0902.2029 +0902.4815 Solar and Stellar Astrophysics +0903.0764 Materials Science +0903.1076 +0903.3252 History and Philosophy of Physics +0903.3564 Phenomenology +0903.4021 Materials Science +0903.4659 Algebraic Topology +0904.0088 Analysis of PDEs +0904.0867 +0904.1360 Instrumentation and Methods for Astrophysics +0904.1449 Phenomenology +0904.1605 Superconductivity +0904.1609 +0904.1611 Soft Condensed Matter +0904.1613 Computer Vision and Pattern Recognition +0904.1615 Combinatorics +0904.1616 Cryptography and Security +0904.1623 Differential Geometry +0904.1629 Robotics +0904.1631 Robotics +0904.1635 Group Theory +0904.1639 Fluid Dynamics +0904.1641 Number Theory +0904.1647 Algebraic Topology +0904.1650 Group Theory +0904.1651 Combinatorics +0904.1652 Algebraic Topology +0904.1659 Analysis of PDEs +0904.1662 Biological Physics +0904.1664 Materials Science +0904.1666 Plasma Physics +0904.1672 Artificial Intelligence +0904.1675 Soft Condensed Matter +0904.1677 +0904.1678 Category Theory +0904.1682 Numerical Analysis +0904.1684 Fluid Dynamics +0904.1696 Computer Science and Game Theory +0904.1699 +0904.1701 Logic in Computer Science +0904.1702 Experiment +0904.1703 Discrete Mathematics +0904.1705 Data Structures and Algorithms +0904.1711 Strongly Correlated Electrons +0904.1714 +0904.1717 Algebraic Geometry +0904.1719 Representation Theory +0904.1720 Analysis of PDEs +0904.1729 Networking and Internet Architecture +0904.1730 Networking and Internet Architecture +0904.1731 +0904.1737 Populations and Evolution +astro-ph/0006228 +astro-ph/0009069 +astro-ph/0012015 +astro-ph/0102213 +astro-ph/0102214 +astro-ph/0109551 +astro-ph/0111097 +astro-ph/0210373 +astro-ph/0211374 +astro-ph/0401332 +astro-ph/0403526 +astro-ph/0405178 +astro-ph/0409379 +astro-ph/0501084 +astro-ph/0503386 +astro-ph/0506545 +astro-ph/0507601 +astro-ph/0508050 +astro-ph/0604605 +astro-ph/0608311 +astro-ph/9906053 +astro-ph/9911441 +gr-qc/0002017 +gr-qc/0603044 +hep-lat/0703008 Lattice +hep-ph/0010137 Phenomenology +hep-ph/0106120 Phenomenology +hep-ph/0106198 Phenomenology +hep-ph/0111145 Phenomenology +hep-ph/0111430 Phenomenology +hep-ph/0204113 Phenomenology +hep-ph/0210077 Phenomenology +hep-ph/0306222 Phenomenology +hep-ph/0407080 Phenomenology +hep-ph/0407209 Phenomenology +hep-ph/0410303 Phenomenology +hep-ph/0507232 Phenomenology +hep-ph/0611259 Phenomenology +hep-ph/9207213 Phenomenology +hep-ph/9212241 Phenomenology +hep-ph/9305205 Phenomenology +hep-ph/9306212 Phenomenology +hep-ph/9310207 Phenomenology +hep-ph/9403332 Phenomenology +hep-ph/9505319 Phenomenology +hep-ph/9508409 Phenomenology +hep-ph/9601276 Phenomenology +hep-ph/9611324 Phenomenology +hep-ph/9805413 Phenomenology +hep-ph/9805414 Phenomenology +hep-ph/9809259 Phenomenology +hep-ph/9904416 Phenomenology +hep-ph/9906395 Phenomenology +math/0407316 Complex Variables +math/0610595 Algebraic Geometry +nucl-ex/0006012 +nucl-ex/0006013 +nucl-ex/0007001 +nucl-ex/0209029 +nucl-ex/0209030 +nucl-th/0006045 +nucl-th/0008019 +nucl-th/0110010 +physics/0002037 General Physics +physics/0408090 Instrumentation and Detectors +0705.2472 +0707.0421 Databases +0707.4638 Statistical Finance +0708.2187 Probability +0709.4518 Combinatorics +0710.3632 Combinatorics +0711.1764 Mesoscale and Nanoscale Physics +0801.0976 Probability +0801.0984 Probability +0801.2619 Strongly Correlated Electrons +0802.3145 Probability +0803.3443 Soft Condensed Matter +0804.3563 Theory +0805.3693 Strongly Correlated Electrons +0806.1546 +0806.3167 +0806.4170 +0807.1166 Strongly Correlated Electrons +0807.2867 Mesoscale and Nanoscale Physics +0807.4907 Combinatorics +0807.4953 Mesoscale and Nanoscale Physics +0809.1334 Geometric Topology +0810.1894 +0810.3876 Atomic Physics +0810.4683 Populations and Evolution +0810.5485 Mesoscale and Nanoscale Physics +0811.0635 Exactly Solvable and Integrable Systems +0811.4341 Optimization and Control +0812.0215 Combinatorics +0812.1769 Mesoscale and Nanoscale Physics +0812.2666 Phenomenology +0812.2840 +0812.2850 Chemical Physics +0812.3330 Statistical Mechanics +0901.0176 Phenomenology +0901.1224 Strongly Correlated Electrons +0901.2872 Algebraic Geometry +0901.3808 Phenomenology +0901.4250 Theory +0902.0178 General Physics +0902.1284 Learning +0902.2028 Strongly Correlated Electrons +0902.3878 Statistical Mechanics +0903.0974 Optics +0903.0993 Statistical Finance +0903.2971 Theory +0903.3633 Other Condensed Matter +0903.4362 Superconductivity +0904.0865 Optics +0904.2959 Mesoscale and Nanoscale Physics +0904.4093 Disordered Systems and Neural Networks +0905.0320 Mesoscale and Nanoscale Physics +0905.0822 Experiment +0905.2491 Atomic Physics +0905.3790 Group Theory +0905.3870 Statistical Finance +0905.3874 Statistical Finance +0905.3875 Statistical Finance +0905.4101 Physics and Society +0905.4102 Physics and Society +0905.4657 Pricing of Securities +0906.0007 Complex Variables +0906.0009 Complex Variables +0906.0012 Algebraic Topology +0906.0032 Mesoscale and Nanoscale Physics +0906.0035 Strongly Correlated Electrons +0906.0040 Experiment +0906.0041 Experiment +0906.0045 Number Theory +0906.0047 Algebraic Geometry +0906.0048 Popular Physics +0906.0049 Logic in Computer Science +0906.0052 Learning +0906.0062 Methodology +0906.0068 Earth and Planetary Astrophysics +0906.0070 Chaotic Dynamics +0906.0075 Phenomenology +0906.0076 Geometric Topology +0906.0081 Algebraic Geometry +0906.0085 Soft Condensed Matter +0906.0094 Spectral Theory +0906.0095 +0906.0100 Dynamical Systems +0906.0101 Group Theory +0906.0104 Number Theory +0906.0108 Phenomenology +0906.0111 Experiment +0906.0116 Combinatorics +0906.0119 Experiment +0906.0120 Combinatorics +0906.0126 Lattice +0906.0130 Phenomenology +0906.0136 Experiment +0906.0137 Group Theory +0906.0147 Classical Analysis and ODEs +0906.0151 Computer Science and Game Theory +0906.0153 Probability +0906.0154 Combinatorics +0906.0160 Functional Analysis +0906.0166 Differential Geometry +0906.0167 Phenomenology +0906.0168 General Physics +0906.0171 Earth and Planetary Astrophysics +0906.0172 Classical Analysis and ODEs +0906.0173 Experiment +0906.0174 +0906.0178 Solar and Stellar Astrophysics +0906.0184 +0906.0185 Superconductivity +0906.0186 Representation Theory +0906.0196 Soft Condensed Matter +0906.0198 Computation +0906.0202 Cryptography and Security +0906.0206 Disordered Systems and Neural Networks +0906.0207 Disordered Systems and Neural Networks +0906.0209 Solar and Stellar Astrophysics +0906.0219 Functional Analysis +0906.0221 Functional Analysis +0906.0226 +0906.0229 Experiment +0906.0233 +0906.0236 Cosmology and Nongalactic Astrophysics +0906.0237 Cryptography and Security +0906.0238 +0906.0241 Classical Physics +0906.0243 Statistical Mechanics +0906.0246 Mesoscale and Nanoscale Physics +0906.0247 Information Theory +0906.0251 Populations and Evolution +0906.0254 Populations and Evolution +0906.0255 Experiment +0906.0260 Dynamical Systems +0906.0268 Operating Systems +0906.0270 +0906.0271 Experiment +0906.0272 Dynamical Systems +0906.0273 Commutative Algebra +0906.0277 Classical Analysis and ODEs +0906.0281 Distributed, Parallel, and Cluster Computing +0906.0288 Classical Physics +0906.0294 +0906.0298 Information Theory +0906.0305 +0906.0308 Experiment +0906.0311 Artificial Intelligence +0906.0314 Combinatorics +0906.0318 High Energy Astrophysical Phenomena +0906.0320 +0906.0328 Data Structures and Algorithms +0906.0329 Cosmology and Nongalactic Astrophysics +0906.0330 Information Theory +0906.0334 Plasma Physics +0906.0336 Solar and Stellar Astrophysics +0906.0339 Phenomenology +0906.0340 Other Condensed Matter +0906.0346 Discrete Mathematics +0906.0347 Accelerator Physics +0906.0348 Experiment +0906.0350 Data Structures and Algorithms +cond-mat/0610746 Mesoscale and Nanoscale Physics +cs/0306027 Distributed, Parallel, and Cluster Computing +hep-ex/0008003 Experiment +hep-ex/0008068 Experiment +hep-ex/0210010 Experiment +hep-ex/0309024 Experiment +hep-ex/0410055 Experiment +hep-ex/0510047 Experiment +hep-ex/0602017 Experiment +physics/9908049 Physics Education +0707.4206 +0712.1406 Materials Science +0712.4099 Neural and Evolutionary Computing +0801.3493 +0802.0279 +0802.2410 Mesoscale and Nanoscale Physics +0804.0739 Complex Variables +0804.3806 +0805.0576 Algebraic Geometry +0805.3842 Dynamical Systems +0811.1733 Dynamical Systems +0811.3962 +0812.4444 +0901.3330 General Physics +0901.3674 Mesoscale and Nanoscale Physics +0902.2478 +0903.0697 Differential Geometry +0903.1932 Algebraic Geometry +0903.4339 +0904.0662 Genomics +0904.3656 Mesoscale and Nanoscale Physics +0904.4668 +0904.4861 +0905.0571 +0905.2157 Strongly Correlated Electrons +0905.2376 +0905.3135 Cryptography and Security +0905.3312 Quantum Gases +0905.3783 +0906.3375 Mesoscale and Nanoscale Physics +0907.0189 Phenomenology +0907.3659 Quantum Gases +0907.5030 Information Theory +0907.5216 +0908.0047 Strongly Correlated Electrons +0908.1444 Portfolio Management +0909.0692 Analysis of PDEs +0909.1847 General Mathematics +0909.2212 Category Theory +0909.2523 Theory +0909.2989 +0909.3067 Atomic Physics +0909.3313 Astrophysics of Galaxies +0909.3321 Combinatorics +0909.3326 Chemical Physics +0909.3330 Exactly Solvable and Integrable Systems +0909.3333 Probability +0909.3335 Probability +0909.3336 +0909.3339 Symplectic Geometry +0909.3342 Other Computer Science +0909.3344 Combinatorics +0909.3351 Commutative Algebra +0909.3352 Superconductivity +0909.3353 Statistical Mechanics +0909.3359 Probability +0909.3360 Number Theory +0909.3361 Classical Physics +0909.3363 Probability +0909.3367 Algebraic Geometry +0909.3370 Analysis of PDEs +0909.3373 Mesoscale and Nanoscale Physics +0909.3384 Neural and Evolutionary Computing +0909.3393 Optimization and Control +0909.3395 Computer Vision and Pattern Recognition +0909.3399 +0909.3405 Algebraic Topology +0909.3414 Software Engineering +0909.3418 +0909.3426 +0909.3429 Phenomenology +0909.3430 +0909.3431 Solar and Stellar Astrophysics +0909.3432 Mesoscale and Nanoscale Physics +0909.3433 +0909.3436 Fluid Dynamics +0909.3443 Differential Geometry +0909.3444 Computation and Language +0909.3445 Computation and Language +0909.3448 Cosmology and Nongalactic Astrophysics +0909.3451 High Energy Astrophysical Phenomena +0909.3453 Combinatorics +0909.3465 Symplectic Geometry +0909.3471 Experiment +0909.3476 Representation Theory +0909.3478 Algebraic Geometry +0909.3481 Networking and Internet Architecture +0909.3486 Combinatorics +0909.3491 Functional Analysis +0909.3494 +0909.3500 Optics +0909.3503 Analysis of PDEs +0909.3507 Combinatorics +hep-ph/0603125 Phenomenology +math/0612855 Differential Geometry +math/0703368 Representation Theory +q-bio/0702051 Molecular Networks +quant-ph/0608119 +0706.3370 Exactly Solvable and Integrable Systems +0707.2236 Probability +0707.3928 Probability +0708.2203 Geophysics +0710.2184 Exactly Solvable and Integrable Systems +0712.4022 Mesoscale and Nanoscale Physics +0803.2917 Optimization and Control +0806.3284 Information Theory +0806.4578 Analysis of PDEs +0807.2969 Phenomenology +0811.0505 Analysis of PDEs +0811.3625 Classical Physics +0812.1407 Algebraic Topology +0901.0338 Strongly Correlated Electrons +0901.1408 Information Theory +0902.1147 Strongly Correlated Electrons +0902.4247 +0903.0803 +0903.1060 Phenomenology +0903.1190 Dynamical Systems +0903.4632 +0905.3207 Strongly Correlated Electrons +0906.0193 Statistical Mechanics +0906.0520 Strongly Correlated Electrons +0906.3464 +0906.5080 Theory +0907.0267 Quantum Gases +0907.3962 Representation Theory +0907.4078 Mesoscale and Nanoscale Physics +0907.4291 Mesoscale and Nanoscale Physics +0907.4879 Astrophysics of Galaxies +0908.0266 Optimization and Control +0908.3105 Quantum Algebra +0908.3568 Disordered Systems and Neural Networks +0909.4650 Differential Geometry +0909.4855 Superconductivity +0909.5380 Quantum Gases +0909.5604 Complex Variables +0910.1739 Theory +0910.1940 Mesoscale and Nanoscale Physics +0910.2185 Chemical Physics +0910.2322 +0910.2386 +0910.2457 +0910.2470 Physics and Society +0910.2471 Statistical Mechanics +0910.2474 Statistical Finance +0910.2478 Atomic Physics +0910.2481 Mesoscale and Nanoscale Physics +0910.2482 +0910.2487 History and Overview +0910.2491 Experiment +0910.2493 Experiment +0910.2501 +0910.2502 Information Theory +0910.2504 Superconductivity +0910.2508 Number Theory +0910.2517 Statistics Theory +0910.2519 Probability +0910.2523 Algebraic Geometry +0910.2525 Information Theory +0910.2526 Populations and Evolution +0910.2529 Algebraic Geometry +0910.2534 Information Theory +0910.2536 Complex Variables +0910.2538 Classical Physics +0910.2539 Category Theory +0910.2540 Learning +0910.2550 Superconductivity +0910.2555 High Energy Astrophysical Phenomena +0910.2557 Number Theory +0910.2565 Soft Condensed Matter +0910.2573 Lattice +0910.2578 +0910.2581 Statistical Mechanics +0910.2582 Data Structures and Algorithms +0910.2583 Statistical Mechanics +0910.2584 Classical Analysis and ODEs +0910.2594 Analysis of PDEs +0910.2595 Phenomenology +0910.2599 Functional Analysis +0910.2604 Networking and Internet Architecture +0910.2605 Analysis of PDEs +0910.2606 Other Condensed Matter +0910.2608 Combinatorics +0910.2620 Number Theory +0910.2621 Populations and Evolution +0910.2625 Probability +0910.2632 Digital Libraries +0910.2638 Digital Libraries +0910.2649 Computational Complexity +0910.2654 Programming Languages +0910.2655 Computer Science and Game Theory +0910.2659 Superconductivity +0910.2660 Neurons and Cognition +0910.2667 Differential Geometry +0910.2679 +0910.2681 Cosmology and Nongalactic Astrophysics +0910.2685 Functional Analysis +0910.2691 Complex Variables +0910.2696 Pricing of Securities +0910.2698 Experiment +astro-ph/0611484 +cond-mat/0702031 Statistical Mechanics +gr-qc/0604076 +math/0612082 Geometric Topology +math/0701577 Number Theory +0709.1273 Representation Theory +0711.1471 Representation Theory +0712.3688 Probability +0802.3005 +0803.3395 Representation Theory +0804.4073 Logic in Computer Science +0810.0577 Strongly Correlated Electrons +0811.4185 +0812.0279 Quantum Algebra +0812.1880 +0812.3227 Physics and Society +0901.3203 +0902.4336 Classical Physics +0904.4654 +0905.1145 Probability +0905.2320 +math/0607816 Differential Geometry +0704.2440 Theory +0704.3354 Functional Analysis +0704.3409 Phenomenology +0705.0005 Theory +0706.1971 Lattice +0706.3775 Phenomenology +0707.0213 Metric Geometry +0708.1036 Theory +0708.4329 +0708.4375 Theory +0709.0989 Materials Science +0709.0992 Materials Science +0710.4662 Algebraic Geometry +0710.5064 +0710.5668 Superconductivity +0711.1886 +0711.2007 +0711.4868 Theory +0712.1214 Lattice +0712.2622 +0712.3713 +0712.3834 Other Condensed Matter +0801.0900 +0801.3255 Atomic Physics +0802.1974 +0802.2784 Theory +0802.3383 +0802.3758 Adaptation and Self-Organizing Systems +0802.3991 Theory +0803.0573 Algebraic Geometry +0803.2040 Phenomenology +0803.2924 Spectral Theory +0804.0357 +0804.1127 +0804.2456 Phenomenology +0804.2667 Mesoscale and Nanoscale Physics +0804.2940 Information Theory +0804.3365 +0804.4033 Phenomenology +0804.4621 +0805.0233 Phenomenology +0805.0999 Phenomenology +0805.1034 Statistical Mechanics +0805.2254 Statistical Mechanics +0805.2349 Other Condensed Matter +0805.2935 History and Philosophy of Physics +0805.3296 Phenomenology +0805.3822 Phenomenology +0805.4460 Phenomenology +0806.0049 Soft Condensed Matter +0806.0603 Theory +0806.0884 Phenomenology +0806.1286 +0806.1472 Phenomenology +0806.1484 Theory +0806.2128 Superconductivity +0806.2291 Theory +0806.2564 Theory +0806.3674 Phenomenology +0806.4620 Theory +0806.4673 Phenomenology +0807.1503 Superconductivity +0807.1800 Differential Geometry +0807.2879 Phenomenology +0807.3028 +0807.3716 +0807.3804 +0807.4238 Theory +0807.4968 Theory +0807.5114 +0808.0045 +0808.0062 Theory +0808.0280 Theory +0808.0874 Phenomenology +0808.3008 Phenomenology +0808.3083 +0808.3470 Theory +0808.3619 Phenomenology +0809.0077 Exactly Solvable and Integrable Systems +0809.0130 Phenomenology +0809.0684 Theory +0809.1005 Theory +0809.1539 Strongly Correlated Electrons +0809.1763 +0809.2450 Statistical Mechanics +0809.2474 +0809.2842 Lattice +0809.3838 +0809.4314 +0809.4335 +0809.4374 +0809.5045 Statistical Mechanics +0810.0535 +0810.0691 Theory +0810.1321 Other Condensed Matter +0810.2014 Mesoscale and Nanoscale Physics +0810.2809 Theory +0810.3067 +0810.3997 +0810.4068 Logic +0810.4719 Theory +0810.4750 Theory +0810.5155 +0810.5354 Materials Science +0810.5411 +0810.5679 Theory +0811.0014 +0811.0323 Optics +0811.0349 Theory +0811.0373 Optics +0811.0437 Phenomenology +0811.0482 Phenomenology +0811.1580 Theory +0811.2379 +0811.2669 Theory +0811.3089 +0811.3316 Statistical Mechanics +0811.3332 Theory +0811.3635 +0811.3798 +0811.4617 Theory +0811.4664 Lattice +0812.0012 +0812.0107 +0812.0109 Statistical Mechanics +0812.0161 Theory +0812.0306 +0812.0402 Strongly Correlated Electrons +0812.0526 Theory +0812.0611 Phenomenology +0812.0620 Theory +0812.0735 Phenomenology +0812.1035 +0812.1042 Phenomenology +0812.1075 Physics and Society +0812.1448 +0812.3189 Accelerator Physics +0812.3213 Theory +0812.3294 Phenomenology +0812.3368 Phenomenology +0812.3416 Phenomenology +0812.3747 Phenomenology +0812.3860 Superconductivity +0812.4063 +0812.4146 Instrumentation and Detectors +0812.4219 Theory +0901.0027 Lattice +0901.0499 Phenomenology +0901.0771 Phenomenology +0901.1153 +0901.1194 Theory +0901.1497 Data Analysis, Statistics and Probability +0901.2184 +0901.2340 +0901.4320 +0901.4516 +0901.4597 Space Physics +0901.4772 Other Condensed Matter +0902.2448 Cosmology and Nongalactic Astrophysics +0902.4207 Dynamical Systems +0903.0249 Theory +0903.0302 Information Theory +0903.1394 Theory +0903.1842 Information Theory +0903.1846 Methodology +0903.1847 Soft Condensed Matter +0903.1848 Mesoscale and Nanoscale Physics +0903.1849 +0903.1857 Discrete Mathematics +0903.1859 +0903.1860 Rings and Algebras +0903.1871 Probability +0903.1875 Phenomenology +0903.1877 Combinatorics +0903.1878 Artificial Intelligence +0903.1882 Optimization and Control +0903.1888 Differential Geometry +0903.1903 Cosmology and Nongalactic Astrophysics +0903.1909 Physics and Society +0903.1915 Biological Physics +0903.1935 Accelerator Physics +0903.1936 Accelerator Physics +0903.1937 Cosmology and Nongalactic Astrophysics +0903.1945 Information Theory +0903.1947 Theory +0903.1953 Databases +0903.1955 +0903.1959 Analysis of PDEs +0903.1962 General Physics +0903.1965 Chaotic Dynamics +0903.1969 Dynamical Systems +0903.1972 Information Theory +0903.1973 Functional Analysis +0903.1976 Optics +0903.1978 Soft Condensed Matter +0903.1981 Phenomenology +0903.1985 Strongly Correlated Electrons +0903.1995 Materials Science +0903.2000 Combinatorics +0903.2005 Algebraic Geometry +0903.2010 Algebraic Geometry +0903.2023 +0903.2029 Functional Analysis +0903.2031 +0903.2032 Representation Theory +0903.2035 Differential Geometry +0903.2036 Mesoscale and Nanoscale Physics +0903.2037 History and Overview +0903.2040 Cosmology and Nongalactic Astrophysics +cond-mat/0606105 Materials Science +cs/0305059 Distributed, Parallel, and Cluster Computing +cs/0601040 Robotics +cs/0701174 Artificial Intelligence +hep-ph/0206055 Phenomenology +hep-ph/9407397 Phenomenology +hep-ph/9606211 Phenomenology +math-ph/0607005 +math-ph/0702068 +math/0603614 Metric Geometry +math/0606131 Combinatorics +math/0701266 Representation Theory +math/0703372 Combinatorics +physics/0008198 Accelerator Physics +physics/0008202 Accelerator Physics +physics/0008203 Accelerator Physics +physics/0008211 Accelerator Physics +physics/0009025 Accelerator Physics +physics/0306038 Computational Physics +0704.3502 Operator Algebras +0710.3004 Geometric Topology +0710.4917 Statistical Mechanics +0711.1874 Methodology +0712.3143 Probability +0802.1870 Phenomenology +0805.0234 Statistics Theory +0805.1406 Statistics Theory +0805.4269 Representation Theory +0806.1329 Strongly Correlated Electrons +0806.1879 Combinatorics +0806.4485 Combinatorics +0808.2240 +0809.0299 Dynamical Systems +0809.3813 Combinatorics +0810.4058 Physics and Society +0811.0182 Statistical Finance +0811.3246 Disordered Systems and Neural Networks +0812.1648 Chaotic Dynamics +0812.1802 Probability +0901.0430 Optics +0901.4702 Materials Science +0902.3918 +0903.1173 Category Theory +0903.1238 Algebraic Geometry +0903.2761 Differential Geometry +0903.2926 Differential Geometry +0903.3138 Data Analysis, Statistics and Probability +0904.2065 Theory +0904.4521 Classical Analysis and ODEs +0905.1836 Quantum Gases +0905.2392 Information Theory +0905.3270 Cosmology and Nongalactic Astrophysics +0905.4789 Logic +0906.0639 Mesoscale and Nanoscale Physics +0906.1948 Algebraic Geometry +0907.0012 Soft Condensed Matter +0907.3003 Mesoscale and Nanoscale Physics +0908.0598 Optics +0908.2194 Experiment +0908.3842 Cosmology and Nongalactic Astrophysics +0908.4045 +0908.4061 Computational Geometry +0908.4083 Differential Geometry +0908.4098 Combinatorics +0908.4100 +0908.4103 Geometric Topology +0908.4112 Mesoscale and Nanoscale Physics +0908.4116 Cryptography and Security +0908.4117 Differential Geometry +0908.4120 Probability +0908.4130 Quantum Gases +0908.4138 Dynamical Systems +0908.4139 Probability +0908.4144 Learning +0908.4145 Molecular Networks +0908.4146 Probability +0908.4165 Phenomenology +0908.4167 Statistics Theory +0908.4168 Phenomenology +0908.4169 Strongly Correlated Electrons +0908.4180 Phenomenology +0908.4186 Geophysics +0908.4188 Cryptography and Security +0908.4191 Commutative Algebra +0908.4197 Mesoscale and Nanoscale Physics +0908.4207 Atmospheric and Oceanic Physics +0908.4208 Information Theory +0908.4209 High Energy Astrophysical Phenomena +0908.4211 Information Theory +0908.4213 Probability +0908.4217 Theory +0908.4218 Astrophysics of Galaxies +0908.4229 Materials Science +0908.4232 Cosmology and Nongalactic Astrophysics +0908.4235 Quantum Algebra +0908.4240 +0908.4244 Representation Theory +0908.4253 Strongly Correlated Electrons +0908.4256 Performance +0908.4261 Physics and Society +0908.4262 Methodology +0908.4263 Differential Geometry +0908.4267 Phenomenology +gr-qc/0610016 +math/0411454 History and Overview +math/0611311 Algebraic Geometry +0705.4444 Differential Geometry +0707.0532 Combinatorics +0711.1643 Group Theory +0711.3522 Phenomenology +0712.1262 Strongly Correlated Electrons +0801.1028 Phenomenology +0801.3001 Optimization and Control +0802.1218 Physics and Society +0802.3326 Mesoscale and Nanoscale Physics +0802.3498 Mesoscale and Nanoscale Physics +0805.3391 Quantum Algebra +0806.2781 +0806.2877 Group Theory +0806.3578 Strongly Correlated Electrons +0807.0561 Superconductivity +0807.0804 Mesoscale and Nanoscale Physics +0807.2683 Lattice +0808.4002 +0809.4468 Superconductivity +0810.0643 Other Condensed Matter +0810.0803 Computational Physics +0810.0973 Superconductivity +0810.2101 Mesoscale and Nanoscale Physics +0810.2325 Number Theory +0810.4834 Analysis of PDEs +0811.0637 Networking and Internet Architecture +0811.1091 Theory +0811.2099 Physics and Society +0811.3220 Strongly Correlated Electrons +0812.0302 Superconductivity +0812.0418 General Physics +0812.1126 Artificial Intelligence +0812.1997 Other Condensed Matter +0812.4326 Theory +0901.0263 Algebraic Topology +0901.2251 +0901.2328 Atomic Physics +0901.2653 Superconductivity +0901.3004 General Physics +0902.2819 Materials Science +0902.4513 +0903.0252 Astrophysics of Galaxies +0903.0789 Differential Geometry +0903.1014 Dynamical Systems +0903.1117 Number Theory +0903.1323 Solar and Stellar Astrophysics +0903.1635 Superconductivity +0903.1651 Algebraic Topology +0903.1658 Astrophysics of Galaxies +0903.1659 Artificial Intelligence +0903.1673 Earth and Planetary Astrophysics +0903.1675 Networking and Internet Architecture +0903.1688 +0903.1689 Geometric Topology +0903.1691 Strongly Correlated Electrons +0903.1692 Geometric Topology +0903.1695 Geometric Topology +0903.1701 Algebraic Topology +0903.1705 Algebraic Geometry +0903.1706 Cosmology and Nongalactic Astrophysics +0903.1714 Functional Analysis +0903.1716 Information Theory +0903.1719 Phenomenology +0903.1721 Statistics Theory +0903.1722 Classical Analysis and ODEs +0903.1729 General Physics +0903.1732 General Physics +0903.1733 Geometric Topology +0903.1735 Differential Geometry +0903.1737 Analysis of PDEs +0903.1738 Soft Condensed Matter +0903.1739 Soft Condensed Matter +0903.1740 Soft Condensed Matter +0903.1741 Operator Algebras +0903.1742 Number Theory +0903.1752 Dynamical Systems +0903.1762 Popular Physics +0903.1765 Probability +0903.1769 +0903.1770 Commutative Algebra +0903.1774 +0903.1775 Other Condensed Matter +0903.1778 History and Philosophy of Physics +0903.1779 Geometric Topology +0903.1783 Complex Variables +0903.1785 Group Theory +0903.1787 Complex Variables +0903.1788 Human-Computer Interaction +0903.1792 Accelerator Physics +0903.1793 Optimization and Control +0903.1795 Numerical Analysis +0903.1802 +0903.1803 Cosmology and Nongalactic Astrophysics +0903.1817 Computational Geometry +0903.1818 Discrete Mathematics +0903.1820 Information Theory +0903.1823 +0903.1835 Superconductivity +0903.1836 Chaotic Dynamics +0903.1837 Chaotic Dynamics +0903.1838 Chaotic Dynamics +0903.1839 Cosmology and Nongalactic Astrophysics +0903.1841 Quantum Algebra +astro-ph/0610266 +cs/0611166 Artificial Intelligence +hep-ph/9803307 Phenomenology +math/0606744 Dynamical Systems +math/0701810 Statistics Theory +math/0703914 Dynamical Systems +nlin/0609016 Exactly Solvable and Integrable Systems +0807.4739 Number Theory +0809.2061 Logic in Computer Science +0809.4325 Information Theory +0812.3099 Algebraic Geometry +0904.1176 Probability +0905.0318 Number Theory +0907.3133 Disordered Systems and Neural Networks +0908.1788 Theory +0910.0483 Machine Learning +0912.3970 Networking and Internet Architecture +0912.3973 Computer Vision and Pattern Recognition +0912.4683 Functional Analysis +0705.1437 +0705.3978 +0705.4216 Theory +0706.1231 Theory +0706.2930 Superconductivity +0706.3938 +0706.3952 +0707.0184 +0710.1982 Lattice +0710.2574 Differential Geometry +0711.4151 Combinatorics +0711.4551 Theory +0711.4663 Theory +0711.4787 Theory +0711.4818 Theory +0711.4934 Theory +0712.0609 Phenomenology +0712.1430 Phenomenology +0712.1850 Theory +0712.1954 Theory +0712.1986 Phenomenology +0712.2028 Theory +0712.2224 Theory +0712.2264 Phenomenology +0712.2289 Theory +0712.2345 Theory +0712.2434 Theory +0712.2455 Phenomenology +0712.2468 +0712.2485 Theory +0712.2532 Theory +0712.2666 Phenomenology +0712.2770 Phenomenology +0712.2786 Theory +0712.2802 Theory +0712.2808 Theory +0712.2938 Phenomenology +0712.3276 Theory +0712.3366 Theory +0712.3379 Theory +0712.3643 +0712.3983 Phenomenology +0712.4068 Theory +0712.4112 Theory +0712.4132 Theory +0801.0052 +0801.0197 Theory +0801.0215 +0801.0322 Theory +0801.0720 Theory +0801.2540 Theory +0801.2542 Theory +0801.4910 Theory +0801.4921 Theory +0802.1067 Theory +0802.2735 Theory +0802.3160 Theory +0802.3224 Theory +0802.3231 Theory +0802.3591 Lattice +0802.3720 Theory +0802.3979 Lattice +0803.0081 Theory +0803.0097 Phenomenology +0803.1687 Theory +0803.1703 Theory +0803.1714 +0803.2003 +0803.4036 Statistical Mechanics +0803.4037 Statistical Mechanics +0804.0056 Phenomenology +0805.2179 Logic in Computer Science +0805.2580 Pattern Formation and Solitons +0805.4407 Theory +0806.2229 Analysis of PDEs +0807.0407 Strongly Correlated Electrons +0807.3485 Theory +0808.2927 +0808.3814 Optics +0809.0177 Probability +0809.0256 Theory +0809.1341 +0809.2697 Probability +0809.4447 Optimization and Control +0809.5094 Theory +0810.0347 Probability +0810.0963 +0810.2941 +0810.5162 Phenomenology +0810.5344 +0810.5702 Phenomenology +0811.1339 +0811.4213 Superconductivity +0812.0533 +0812.2062 Differential Geometry +0812.2608 Statistical Mechanics +0812.3391 Theory +0812.4140 Theory +0901.0011 Phenomenology +0901.0265 Theory +0901.0935 Theory +0901.4396 Phenomenology +0901.4548 Numerical Analysis +0902.1628 +0902.2212 Other Condensed Matter +0902.2300 Computational Complexity +0902.3251 Theory +0902.3483 Functional Analysis +0902.3650 +0902.3799 Theory +0902.4795 High Energy Astrophysical Phenomena +0903.0257 Phenomenology +0903.0619 Theory +0903.0633 Theory +0903.2048 Theory +0903.4210 Theory +0903.4590 Phenomenology +0903.5088 Theory +0904.0002 Cosmology and Nongalactic Astrophysics +0904.0560 High Energy Astrophysical Phenomena +0904.0629 Theory +0904.1019 Strongly Correlated Electrons +0904.2045 +0904.2080 Phenomenology +0904.2865 Solar and Stellar Astrophysics +0904.3106 Theory +0904.3620 Theory +0904.4571 +0904.4725 Cosmology and Nongalactic Astrophysics +0905.0100 Theory +0905.0487 High Energy Astrophysical Phenomena +0905.0865 Phenomenology +0905.1382 +0905.1525 Cosmology and Nongalactic Astrophysics +0905.1670 +0905.1697 High Energy Astrophysical Phenomena +0905.2468 Theory +0905.2728 +0905.2768 Theory +0905.3726 Cosmology and Nongalactic Astrophysics +0905.4282 Instrumentation and Methods for Astrophysics +0906.0681 High Energy Astrophysical Phenomena +0906.2703 Theory +0906.2977 +0906.3093 Soft Condensed Matter +0906.4062 Theory +0906.4740 Superconductivity +0906.4751 Theory +0906.5026 Quantum Algebra +0906.5194 Phenomenology +0907.0082 Phenomenology +0907.0220 Number Theory +0907.1384 Experiment +0907.1434 Theory +0907.1568 Mesoscale and Nanoscale Physics +0907.1897 Earth and Planetary Astrophysics +0907.2004 Populations and Evolution +0907.2379 Phenomenology +0907.2996 Mesoscale and Nanoscale Physics +0907.5487 Phenomenology +0908.0411 Databases +0908.0520 Theory +0908.2386 Phenomenology +0908.2502 Phenomenology +0908.3350 +0908.3484 Quantum Gases +0908.4150 Theory +0908.4170 Differential Geometry +0909.0499 Theory +0909.1383 Risk Management +0909.1520 +0909.1569 Other Condensed Matter +0909.1840 Mesoscale and Nanoscale Physics +0909.2036 Theory +0909.2226 Theory +0909.2799 Phenomenology +0909.2843 +0909.3115 Algebraic Geometry +0909.3544 Instrumentation and Detectors +0909.3571 Theory +0909.3587 Experiment +0909.3838 Phenomenology +0909.3845 Theory +0909.4522 Phenomenology +0909.4617 Experiment +0909.4621 Theory +0909.4652 Phenomenology +0909.4663 Phenomenology +0909.4675 Theory +0909.4781 Solar and Stellar Astrophysics +0909.5056 Phenomenology +0909.5281 Theory +0910.1172 General Physics +0911.5386 +0911.5387 +0911.5389 +0911.5390 +0911.5393 +0911.5521 Analysis of PDEs +0912.1283 Theory +0912.1800 High Energy Astrophysical Phenomena +0912.1825 Metric Geometry +0912.2346 Cosmology and Nongalactic Astrophysics +0912.2349 Logic in Computer Science +0912.2353 Materials Science +0912.2360 Classical Physics +0912.2366 Neurons and Cognition +0912.2367 +0912.2371 Data Structures and Algorithms +0912.2374 Theory +0912.2375 Phenomenology +0912.2376 Superconductivity +0912.2381 Computational Engineering, Finance, and Science +0912.2385 Learning +0912.2389 +0912.2391 +0912.2398 Probability +0912.2400 Probability +0912.2407 Probability +0912.2413 Fluid Dynamics +0912.2415 Neural and Evolutionary Computing +0912.2424 History and Philosophy of Physics +0912.2427 General Physics +0912.2430 Networking and Internet Architecture +0912.2432 Algebraic Topology +0912.2436 Combinatorics +0912.2437 Numerical Analysis +0912.2438 Commutative Algebra +0912.2440 Soft Condensed Matter +0912.2447 +0912.2449 Theory +0912.2451 Number Theory +0912.2452 Mesoscale and Nanoscale Physics +0912.2454 Optics +0912.2455 General Physics +0912.2457 Probability +0912.2458 General Mathematics +0912.2459 Combinatorics +0912.2460 Accelerator Physics +0912.2463 General Physics +0912.2473 Complex Variables +0912.2474 +0912.2482 Earth and Planetary Astrophysics +0912.2487 Dynamical Systems +0912.2492 Machine Learning +0912.2495 Cellular Automata and Lattice Gases +0912.2496 Astrophysics of Galaxies +0912.2497 Number Theory +0912.2498 Astrophysics of Galaxies +0912.2508 Number Theory +0912.2512 General Physics +0912.2518 Materials Science +0912.2520 Number Theory +0912.2522 Materials Science +0912.2523 Discrete Mathematics +0912.2528 Number Theory +0912.2531 Populations and Evolution +0912.2532 Number Theory +0912.2538 Functional Analysis +0912.2542 Disordered Systems and Neural Networks +0912.2545 Algebraic Topology +0912.2547 +0912.2549 Distributed, Parallel, and Cluster Computing +0912.2550 Logic in Computer Science +0912.2551 Computational Engineering, Finance, and Science +0912.2552 Logic in Computer Science +0912.2553 Logic in Computer Science +0912.2554 Distributed, Parallel, and Cluster Computing +0912.2555 Distributed, Parallel, and Cluster Computing +0912.2558 General Physics +0912.2563 Artificial Intelligence +0912.2565 Computational Complexity +0912.2567 Probability +0912.2571 Phenomenology +0912.2573 Theory +0912.2576 Exactly Solvable and Integrable Systems +0912.2593 Plasma Physics +0912.2601 Computers and Society +0912.2602 Materials Science +0912.2606 Instrumentation and Methods for Astrophysics +0912.2611 Phenomenology +0912.2613 Plasma Physics +0912.2614 Differential Geometry +0912.2615 Strongly Correlated Electrons +0912.2618 Algebraic Geometry +0912.2619 Combinatorics +0912.2621 Earth and Planetary Astrophysics +0912.2624 Statistical Mechanics +0912.2627 Dynamical Systems +0912.2633 Materials Science +0912.2639 Computational Physics +0912.2645 Theory +0912.2649 Optics +0912.2666 +0912.2672 Instrumentation and Methods for Astrophysics +0912.2674 Theory +0912.2675 Materials Science +0912.2684 Dynamical Systems +0912.2685 Group Theory +0912.2688 Statistics Theory +0912.2693 Cosmology and Nongalactic Astrophysics +0912.2700 Analysis of PDEs +0912.2709 Computational Complexity +0912.2710 Statistics Theory +0912.2711 Classical Physics +astro-ph/0002360 +astro-ph/0005470 +astro-ph/0109435 +astro-ph/0606724 +astro-ph/0607009 +astro-ph/0701483 +astro-ph/0703570 +astro-ph/9701034 +astro-ph/9911277 +gr-qc/0007063 +gr-qc/0308045 +gr-qc/0603004 +gr-qc/9506005 +hep-lat/0409137 Lattice +hep-lat/9807033 Lattice +hep-ph/0007130 Phenomenology +hep-ph/0010115 Phenomenology +hep-ph/0105260 Phenomenology +hep-ph/0110137 Phenomenology +hep-ph/0212264 Phenomenology +hep-ph/0306272 Phenomenology +hep-ph/0310315 Phenomenology +hep-ph/0402078 Phenomenology +hep-ph/0410180 Phenomenology +hep-ph/0511332 Phenomenology +hep-ph/0609180 Phenomenology +hep-ph/0610396 Phenomenology +hep-ph/9304232 Phenomenology +hep-ph/9411413 Phenomenology +hep-ph/9708303 Phenomenology +hep-ph/9711312 Phenomenology +hep-ph/9903438 Phenomenology +hep-ph/9909276 Phenomenology +hep-ph/9909399 Phenomenology +hep-th/0006187 Theory +hep-th/9404101 Theory +hep-th/9706074 Theory +hep-th/9707177 Theory +math-ph/0408047 +math-ph/0610041 +math/0304121 Algebraic Geometry +math/0504070 Algebraic Geometry +math/0505670 Algebraic Geometry +nucl-ex/0202027 +nucl-th/9411034 +0704.0265 +0704.0460 +0704.1301 +0704.1408 +0704.1573 +0704.1920 +0704.1935 Theory +0704.3247 +0704.3768 +0704.3874 Strongly Correlated Electrons +0704.3895 +0705.0448 +0705.1015 +0705.1108 +0705.1350 +0705.1599 +0705.1626 +0705.1718 +0705.2195 +0705.2940 +0705.2943 +0705.2970 +0705.3003 +0705.3123 Chaotic Dynamics +0705.3451 +0705.3563 +0705.4557 +0705.4576 Experiment +0706.0210 +0706.3492 Strongly Correlated Electrons +0707.3010 Combinatorics +0803.0569 Mesoscale and Nanoscale Physics +0803.1477 Combinatorics +0803.2341 Algebraic Geometry +0806.3249 Combinatorics +0807.1916 Algebraic Geometry +0807.2987 Probability +0809.0044 Strongly Correlated Electrons +0809.1074 Dynamical Systems +0810.2906 Lattice +0811.1267 +0901.1723 Superconductivity +0902.0069 Complex Variables +0902.1809 Discrete Mathematics +0902.3987 K-Theory and Homology +0903.3884 Commutative Algebra +0903.4063 Astrophysics of Galaxies +0903.5345 Theory +0904.1073 +0904.1112 High Energy Astrophysical Phenomena +0904.1451 +0904.1726 Materials Science +0904.2071 +0905.1202 Discrete Mathematics +0905.3775 Algebraic Geometry +0905.4879 Geometric Topology +0906.0438 Materials Science +0906.0495 Classical Physics +0906.0815 Strongly Correlated Electrons +0906.2513 Superconductivity +0906.2683 Phenomenology +0906.3260 Statistical Mechanics +0906.3607 Strongly Correlated Electrons +0907.0944 Instrumentation and Methods for Astrophysics +0907.1189 +0908.1287 Mesoscale and Nanoscale Physics +0908.2036 Analysis of PDEs +0908.2855 Superconductivity +0908.3384 +0908.3853 Phenomenology +0908.4030 Lattice +0908.4426 Pattern Formation and Solitons +0909.1320 Phenomenology +0910.4095 Materials Science +0910.4473 Materials Science +0910.4980 Phenomenology +0910.5061 Experiment +0911.0282 Theory +0911.1169 Superconductivity +0911.2386 Theory +0911.2404 Theory +0911.2468 Earth and Planetary Astrophysics +0911.2472 Astrophysics of Galaxies +0911.2479 Number Theory +0911.2481 Disordered Systems and Neural Networks +0911.2486 +0911.2488 General Physics +0911.2494 Logic +0911.2501 Artificial Intelligence +0911.2503 Plasma Physics +0911.2505 Plasma Physics +0911.2508 Other Computer Science +0911.2518 Geometric Topology +0911.2523 Fluid Dynamics +0911.2524 Data Analysis, Statistics and Probability +0911.2526 Statistical Mechanics +0911.2529 History and Overview +0911.2532 +0911.2535 Instrumentation and Methods for Astrophysics +0911.2536 +0911.2537 Instrumentation and Methods for Astrophysics +0911.2538 Networking and Internet Architecture +0911.2540 Materials Science +0911.2541 Rings and Algebras +0911.2545 +0911.2549 Commutative Algebra +0911.2553 Mesoscale and Nanoscale Physics +0911.2555 Quantum Gases +0911.2556 Theory +0911.2563 Analysis of PDEs +0911.2564 Information Theory +0911.2565 Solar and Stellar Astrophysics +0911.2569 Commutative Algebra +0911.2571 Probability +0911.2573 Strongly Correlated Electrons +0911.2574 Probability +0911.2575 Statistical Mechanics +0911.2588 Theory +0911.2594 Number Theory +0911.2598 Instrumentation and Detectors +0911.2603 Computers and Society +0911.2605 Analysis of PDEs +0911.2607 Phenomenology +0911.2614 Probability +0911.2616 +0911.2619 Networking and Internet Architecture +0911.2620 Software Engineering +0911.2625 +0911.2628 Physics and Society +0911.2630 Phenomenology +0911.2632 Digital Libraries +0911.2633 +0911.2636 Combinatorics +0911.2638 Numerical Analysis +0911.2642 Phenomenology +0911.2643 Number Theory +0911.2644 Combinatorics +0911.2649 Algebraic Geometry +0911.2650 Materials Science +0911.2654 General Physics +0911.2661 Astrophysics of Galaxies +0911.2662 Phenomenology +0911.2663 Complex Variables +0911.2667 Differential Geometry +0911.2669 Phenomenology +0911.2671 Number Theory +0911.2672 Combinatorics +0911.2675 Analysis of PDEs +0911.2676 High Energy Astrophysical Phenomena +0911.2677 +0911.2680 Number Theory +0911.2682 Analysis of PDEs +0911.2683 Combinatorics +0911.2693 Atomic Physics +0911.2695 Numerical Analysis +astro-ph/0306615 +astro-ph/0308034 +astro-ph/0308328 +astro-ph/0308336 +astro-ph/0309099 +astro-ph/0309387 +astro-ph/0309506 +astro-ph/0309834 +astro-ph/0504297 +astro-ph/0506531 +astro-ph/0508513 +astro-ph/0509006 +astro-ph/0509167 +astro-ph/0509880 +astro-ph/0510651 +astro-ph/0511320 +astro-ph/0511772 +astro-ph/0512183 +astro-ph/0512424 +astro-ph/0512608 +cond-mat/0605325 Statistical Mechanics +cs/0509067 Distributed, Parallel, and Cluster Computing +hep-ph/0309221 Phenomenology +hep-th/0610177 Theory +math/0604140 Combinatorics +math/0608044 Differential Geometry +physics/0609092 Accelerator Physics +physics/0611245 Physics and Society +quant-ph/0605192 +quant-ph/0609082 +0705.1685 +0707.2347 Mathematical Software +0709.4008 +0710.3806 +0711.1709 Optimization and Control +0711.2150 Combinatorics +0803.0967 Atomic Physics +0803.1482 +0805.1144 Combinatorics +0805.3625 +0805.4136 +0805.4188 +0805.4476 Functional Analysis +0806.1593 +0806.3664 +0807.0933 Differential Geometry +0807.1732 Theory +0808.0093 +0808.0198 Space Physics +0809.1653 Phenomenology +0809.1886 Lattice +0809.4170 +0810.1330 +0810.2122 Optimization and Control +0810.2685 Theory +0810.3071 Classical Analysis and ODEs +0810.3364 Theory +0810.4849 Optics +0810.5153 Other Condensed Matter +0811.0087 Instrumentation and Detectors +0811.0277 +0811.1329 Adaptation and Self-Organizing Systems +0811.2806 Dynamical Systems +0812.0537 General Physics +0812.0780 Phenomenology +0812.0934 Phenomenology +0812.2572 Number Theory +0812.3216 Analysis of PDEs +0812.3255 +0812.3309 Strongly Correlated Electrons +0812.3608 Algebraic Geometry +0901.0736 Lattice +0901.2847 Combinatorics +0901.3121 Materials Science +0901.3294 Optics +0901.4747 Symbolic Computation +0902.1585 Theory +0902.2004 Space Physics +0902.2339 Materials Science +0902.3222 Astrophysics of Galaxies +0902.3225 Mesoscale and Nanoscale Physics +0902.4626 Disordered Systems and Neural Networks +0903.0745 Statistical Mechanics +0903.1975 +0903.3204 Information Theory +0903.3530 Other Condensed Matter +0903.3577 +0904.2609 +0904.4731 Superconductivity +0905.0589 +0905.1493 +0905.1773 Strongly Correlated Electrons +0905.1777 Strongly Correlated Electrons +0905.2036 Strongly Correlated Electrons +0905.2222 +0905.2255 Superconductivity +0905.2363 +0905.2415 +0905.2416 Information Retrieval +0905.2420 Combinatorics +0905.2422 Information Theory +0905.2428 Classical Physics +0905.2435 Artificial Intelligence +0905.2438 +0905.2439 Medical Physics +0905.2440 General Physics +0905.2447 Information Theory +0905.2449 Computers and Society +0905.2457 Differential Geometry +0905.2458 +0905.2467 +0905.2471 Commutative Algebra +0905.2473 Neural and Evolutionary Computing +0905.2478 Combinatorics +0905.2479 Dynamical Systems +0905.2484 Atomic Physics +0905.2488 Phenomenology +0905.2497 Optimization and Control +0905.2498 High Energy Astrophysical Phenomena +0905.2501 Information Retrieval +0905.2503 Experiment +0905.2506 Phenomenology +0905.2509 Computers and Society +0905.2511 Phenomenology +0905.2515 High Energy Astrophysical Phenomena +0905.2524 Statistics Theory +0905.2526 Experiment +0905.2527 Combinatorics +0905.2529 Complex Variables +0905.2530 Experiment +0905.2535 Astrophysics of Galaxies +0905.2537 Strongly Correlated Electrons +0905.2540 Data Structures and Algorithms +0905.2542 +0905.2544 Applications +0905.2546 General Finance +0905.2549 Instrumentation and Detectors +0905.2551 High Energy Astrophysical Phenomena +0905.2553 Algebraic Geometry +0905.2554 Experiment +0905.2560 Instrumentation and Detectors +0905.2565 Solar and Stellar Astrophysics +0905.2572 +0905.2576 Geometric Topology +0905.2577 Phenomenology +0905.2584 Physics Education +0905.2599 +0905.2602 Functional Analysis +0905.2604 Differential Geometry +astro-ph/0411456 +gr-qc/0204026 +hep-ex/0210013 Experiment +hep-ex/0312056 Experiment +hep-ex/0403005 Experiment +hep-ph/9704210 Phenomenology +math-ph/0406031 +math/0312414 Algebraic Geometry +math/0408235 Operator Algebras +math/0411375 Algebraic Geometry +math/0603310 Symplectic Geometry +physics/0405021 Accelerator Physics +physics/0405022 Accelerator Physics +quant-ph/0602178 +0705.2891 Differential Geometry +0705.3746 Other Condensed Matter +0706.2776 Superconductivity +0706.2779 Superconductivity +0707.0322 Methodology +0707.3914 Algebraic Geometry +0708.2602 Superconductivity +0709.2529 Combinatorics +0710.1351 +0710.2704 Analysis of PDEs +0712.4254 Algebraic Topology +0801.3142 +0802.3671 Biological Physics +0803.1587 Disordered Systems and Neural Networks +0804.1403 +0805.0444 Distributed, Parallel, and Cluster Computing +0806.3903 Statistical Mechanics +0806.3909 +0807.0690 Analysis of PDEs +0807.1216 Disordered Systems and Neural Networks +0807.2535 Atomic Physics +0807.4434 Other Condensed Matter +0808.0468 +0808.2594 Other Condensed Matter +0809.1114 Theory +0809.5152 +0810.0925 +0810.1733 Other Condensed Matter +0810.2864 Strongly Correlated Electrons +0810.4845 Other Condensed Matter +0810.5049 Materials Science +0810.5099 Dynamical Systems +0811.1992 +0812.0489 General Topology +0812.0805 Statistical Mechanics +0812.2041 Phenomenology +0812.3127 Theory +0812.3332 Materials Science +0812.4376 Strongly Correlated Electrons +0812.4634 Strongly Correlated Electrons +0901.1784 Phenomenology +0901.3045 Mesoscale and Nanoscale Physics +0901.3344 +0902.0544 Strongly Correlated Electrons +0902.0921 Spectral Theory +0902.2818 Dynamical Systems +0902.4102 Theory +0903.0004 Superconductivity +0903.4046 Other Computer Science +0904.0471 Computational Complexity +0904.0521 +0904.0644 Computational Complexity +0904.0648 Learning +0904.0650 +0904.0651 Rings and Algebras +0904.0655 Differential Geometry +0904.0666 Soft Condensed Matter +0904.0669 Quantum Algebra +0904.0685 Genomics +0904.0687 Methodology +0904.0688 Methodology +0904.0691 Methodology +0904.0693 Algebraic Geometry +0904.0694 Genomics +0904.0695 +0904.0697 Materials Science +0904.0703 Numerical Analysis +0904.0713 Chaotic Dynamics +0904.0715 Dynamical Systems +0904.0716 Operator Algebras +0904.0717 Chemical Physics +0904.0719 Human-Computer Interaction +0904.0722 Numerical Analysis +0904.0728 Chemical Physics +0904.0729 General Finance +0904.0731 Analysis of PDEs +0904.0735 Mesoscale and Nanoscale Physics +0904.0737 Phenomenology +0904.0739 Instrumentation and Methods for Astrophysics +0904.0747 Information Theory +0904.0750 Solar and Stellar Astrophysics +0904.0752 Differential Geometry +0904.0755 Optimization and Control +0904.0761 Physics and Society +0904.0765 Physics and Society +0904.0766 Solar and Stellar Astrophysics +0904.0769 Solar and Stellar Astrophysics +0904.0771 Performance +0904.0776 Machine Learning +0904.0779 Computation +0904.0782 Representation Theory +0904.0783 Algebraic Topology +0904.0785 Networking and Internet Architecture +0904.0787 Representation Theory +0904.0788 Genomics +0904.0790 General Physics +0904.0792 Analysis of PDEs +0904.0799 Fluid Dynamics +0904.0800 Algebraic Topology +0904.0803 Algebraic Topology +0904.0805 General Finance +0904.0806 +0904.0808 Probability +0904.0811 Information Theory +0904.0814 Learning +0904.0833 Optimization and Control +0904.0841 Combinatorics +0904.0843 Methodology +0904.0848 Dynamical Systems +0904.0853 Algebraic Geometry +0904.0855 Numerical Analysis +0904.0856 Soft Condensed Matter +0904.0857 Materials Science +0904.0858 Chemical Physics +0904.0861 Rings and Algebras +0904.0863 Soft Condensed Matter +0904.0868 Differential Geometry +0904.0870 Risk Management +0904.0879 Information Theory +0904.0881 +0904.0883 +0904.0884 Materials Science +0904.0887 +0904.0889 Mesoscale and Nanoscale Physics +0904.0891 +0904.0892 +0904.0893 +0904.0894 +0904.0895 +0904.0899 Algebraic Geometry +0904.0902 Symplectic Geometry +0904.0903 Disordered Systems and Neural Networks +0904.0904 Mesoscale and Nanoscale Physics +0904.0906 Rings and Algebras +0904.0909 Functional Analysis +0904.0918 +0904.0921 Phenomenology +0904.0923 +0904.0926 Group Theory +0904.0927 Algebraic Geometry +0904.0930 General Topology +0904.0936 Disordered Systems and Neural Networks +0904.0949 Probability +0904.0958 +0904.0962 Computer Vision and Pattern Recognition +0904.0965 Earth and Planetary Astrophysics +0904.0967 Number Theory +0904.0968 Representation Theory +0904.0970 Plasma Physics +0904.0977 Methodology +0904.0984 Probability +0904.0985 Experiment +0904.0986 Information Retrieval +0904.0994 Probability +cond-mat/0308088 Superconductivity +cond-mat/0311383 Superconductivity +cs/0504045 Cryptography and Security +hep-th/0612085 Theory +math/0011176 Algebraic Geometry +math/0101170 Representation Theory +math/0306333 Representation Theory +math/0506043 Representation Theory +math/0601028 Representation Theory +math/0606703 Geometric Topology +math/0608326 Algebraic Topology +math/0610452 Group Theory +math/0612804 Differential Geometry +math/0703304 Group Theory +physics/0603014 General Physics +quant-ph/0304144 +0705.2731 Geometric Topology +0706.2032 Geometric Topology +0707.4512 Mesoscale and Nanoscale Physics +0708.1897 Category Theory +0708.2283 Rings and Algebras +0710.5837 Methodology +0711.2068 +0712.1332 Number Theory +0712.1410 Theory +0712.3737 +0801.0036 Phenomenology +0801.2151 Theory +0802.3467 Probability +0802.3543 +0803.1977 +0803.3568 Materials Science +0803.4294 +0804.2361 Exactly Solvable and Integrable Systems +0804.2557 Mesoscale and Nanoscale Physics +0805.3246 Complex Variables +0805.3877 Theory +0806.1154 Algebraic Geometry +0806.3508 +0806.3883 +0806.4980 Superconductivity +0807.1805 Materials Science +0807.1895 Materials Science +0807.2676 Analysis of PDEs +0807.4876 Superconductivity +0807.5073 Chaotic Dynamics +0807.5113 Theory +0808.1677 Theory +0808.1779 Mesoscale and Nanoscale Physics +0808.2990 Algebraic Geometry +0808.3243 +0809.0825 Theory +0809.1420 Strongly Correlated Electrons +0809.1911 Strongly Correlated Electrons +0809.1930 Strongly Correlated Electrons +0809.2748 Other Condensed Matter +0809.2804 Populations and Evolution +0809.4934 Phenomenology +0810.2855 Optics +0810.3858 Geometric Topology +0810.3892 Combinatorics +0810.4362 Instrumentation and Detectors +0811.0164 History and Overview +0811.0756 +0811.1621 +0811.2171 Mesoscale and Nanoscale Physics +0811.4418 Superconductivity +0812.0123 Mesoscale and Nanoscale Physics +0812.0285 +0812.0410 General Topology +0812.1255 +0812.1910 Phenomenology +0812.1916 +0812.1975 Theory +0812.2725 Combinatorics +0812.2921 Number Theory +0812.3027 Probability +0812.3875 Materials Science +0901.1007 +0901.1954 Information Theory +0901.3356 Combinatorics +0902.0205 +0902.2114 Probability +0902.2294 +0902.2569 Probability +0902.3126 Differential Geometry +0902.3223 Learning +0902.3308 +0902.3377 Experiment +0902.3549 Multiagent Systems +0902.3566 Biological Physics +0902.3656 Methodology +0902.3668 Cosmology and Nongalactic Astrophysics +0902.3671 Cosmology and Nongalactic Astrophysics +0902.3673 Classical Physics +0902.3674 High Energy Astrophysical Phenomena +0902.3677 Cosmology and Nongalactic Astrophysics +0902.3683 Solar and Stellar Astrophysics +0902.3684 Other Condensed Matter +0902.3694 Statistical Mechanics +0902.3695 Superconductivity +0902.3696 Optics +0902.3700 Solar and Stellar Astrophysics +0902.3703 Materials Science +0902.3707 Geometric Topology +0902.3708 Plasma Physics +0902.3709 Cosmology and Nongalactic Astrophysics +0902.3710 Optimization and Control +0902.3716 Optics +0902.3723 Numerical Analysis +0902.3724 +0902.3727 +0902.3730 Artificial Intelligence +0902.3731 Spectral Theory +0902.3733 Fluid Dynamics +0902.3735 Probability +0902.3736 Superconductivity +0902.3737 +0902.3740 Experiment +0902.3751 Analysis of PDEs +0902.3752 Plasma Physics +0902.3753 Fluid Dynamics +0902.3757 Computational Complexity +0902.3758 Chemical Physics +0902.3761 Algebraic Geometry +0902.3762 Dynamical Systems +0902.3770 Combinatorics +0902.3771 Rings and Algebras +0902.3777 Quantum Algebra +0902.3781 Phenomenology +0902.3783 Biomolecules +0902.3784 Biomolecules +0902.3786 Dynamical Systems +0902.3792 Group Theory +0902.3794 Number Theory +0902.3796 Cosmology and Nongalactic Astrophysics +0902.3798 Optimization and Control +0902.3804 Analysis of PDEs +0902.3808 +0902.3810 Differential Geometry +0902.3811 Algebraic Geometry +0902.3815 +0902.3818 Discrete Mathematics +0902.3821 High Energy Astrophysical Phenomena +0902.3824 Medical Physics +0902.3828 Commutative Algebra +0902.3829 +0902.3831 Differential Geometry +0902.3836 Portfolio Management +0902.3840 Trading and Market Microstructure +0902.3843 Mesoscale and Nanoscale Physics +0902.3846 Learning +0902.3851 Analysis of PDEs +0902.3852 Earth and Planetary Astrophysics +0902.3855 General Physics +0902.3858 Logic in Computer Science +0902.3860 Combinatorics +0902.3861 Logic in Computer Science +0902.3862 +0902.3865 Logic in Computer Science +0902.3867 +0902.3871 Cosmology and Nongalactic Astrophysics +0902.3873 Algebraic Geometry +0902.3898 Theory +0902.3902 Earth and Planetary Astrophysics +0902.3912 Group Theory +0902.3931 Dynamical Systems +0902.3935 Optics +0902.3954 Exactly Solvable and Integrable Systems +0902.3956 Dynamical Systems +0902.3962 +0902.3963 Cosmology and Nongalactic Astrophysics +0902.3966 Statistical Mechanics +0902.3968 Differential Geometry +0902.3970 Atomic Physics +0902.3981 Solar and Stellar Astrophysics +0902.3985 +0902.3986 Instrumentation and Detectors +0902.3989 Operator Algebras +astro-ph/0307226 +astro-ph/0409201 +astro-ph/0604238 +cond-mat/0608633 Mesoscale and Nanoscale Physics +cs/0610110 Mathematical Software +cs/0701037 Distributed, Parallel, and Cluster Computing +gr-qc/0206083 +gr-qc/0208067 +gr-qc/0304037 +hep-ex/9708003 Experiment +hep-ph/0208045 Phenomenology +hep-ph/0701066 Phenomenology +hep-ph/0702045 Phenomenology +hep-ph/9712545 Phenomenology +hep-th/0312102 Theory +hep-th/0702092 Theory +math/0006176 Number Theory +math/0402386 Number Theory +math/0409023 Classical Analysis and ODEs +math/0506086 Number Theory +math/0509465 Classical Analysis and ODEs +math/0603313 Optimization and Control +math/0608620 Differential Geometry +math/0701223 Category Theory +0704.2144 Commutative Algebra +0704.2873 Algebraic Geometry +0708.1293 Lattice +0708.3879 Networking and Internet Architecture +0710.0485 Learning +0803.1890 Pricing of Securities +0806.0274 Algebraic Geometry +0806.2014 Combinatorics +0806.4519 Operator Algebras +0807.3675 Probability +0808.3610 Combinatorics +0810.1660 +0810.2811 +0811.3911 +0811.3997 K-Theory and Homology +0812.2640 +0812.3587 Superconductivity +0901.4099 General Physics +0902.0378 Strongly Correlated Electrons +0902.1717 Classical Analysis and ODEs +0902.3686 Mesoscale and Nanoscale Physics +0903.1831 +0903.3382 Superconductivity +0903.3520 +0903.3775 Classical Analysis and ODEs +0904.1220 Instrumentation and Detectors +0904.2958 Probability +0904.4642 +0905.0257 Quantum Gases +0905.0809 Solar and Stellar Astrophysics +0905.2656 Differential Geometry +0906.1579 Strongly Correlated Electrons +0906.1982 General Physics +0906.4503 Statistical Mechanics +0907.0230 High Energy Astrophysical Phenomena +0907.0868 Statistical Mechanics +0907.1165 +0908.1065 Instrumentation and Detectors +0908.1597 Neural and Evolutionary Computing +0908.1792 Theory +0908.1796 Theory +0908.1865 Theory +0908.2351 +0908.2888 Probability +0909.1138 Human-Computer Interaction +0909.2072 Classical Analysis and ODEs +0910.0455 Materials Science +0910.0744 +0910.0894 General Physics +0910.2876 Geometric Topology +0910.3204 Analysis of PDEs +0910.3905 Algebraic Geometry +0910.4034 +0910.4215 Algebraic Geometry +0910.5013 Phenomenology +0910.5448 +0910.5692 Phenomenology +0910.5706 Phenomenology +0910.5724 Strongly Correlated Electrons +0910.5725 Combinatorics +0910.5728 Dynamical Systems +0910.5732 Group Theory +0910.5734 +0910.5739 Soft Condensed Matter +0910.5744 Data Structures and Algorithms +0910.5747 General Physics +0910.5750 Analysis of PDEs +0910.5752 Commutative Algebra +0910.5753 Soft Condensed Matter +0910.5754 +0910.5757 Algebraic Geometry +0910.5762 Phenomenology +0910.5764 Materials Science +0910.5767 General Physics +0910.5769 +0910.5777 Mesoscale and Nanoscale Physics +0910.5780 Genomics +0910.5790 Complex Variables +0910.5791 Numerical Analysis +0910.5792 Differential Geometry +0910.5793 +0910.5794 Robotics +0910.5798 +0910.5799 Optics +0910.5802 Optics +0910.5804 Optics +0910.5805 Optics +0910.5806 Optics +0910.5807 Optics +0910.5809 Optics +0910.5810 Optics +0910.5816 Distributed, Parallel, and Cluster Computing +0910.5820 Optics +0910.5822 Molecular Networks +0910.5833 Programming Languages +0910.5834 Biological Physics +0910.5838 Differential Geometry +0910.5847 +0910.5850 Functional Analysis +0910.5851 Probability +0910.5855 Probability +0910.5861 Materials Science +0910.5862 Populations and Evolution +0910.5866 +0910.5870 History and Overview +0910.5872 Methodology +0910.5877 Phenomenology +0910.5880 Functional Analysis +0910.5882 Geometric Topology +0910.5884 Soft Condensed Matter +0910.5888 Algebraic Geometry +0910.5889 +0910.5890 Analysis of PDEs +0910.5891 +0910.5895 Analysis of PDEs +0910.5897 Combinatorics +0910.5902 Functional Analysis +0910.5906 Probability +0910.5908 +0910.5910 Astrophysics of Galaxies +0910.5920 Cryptography and Security +0910.5924 +0910.5932 Learning +0910.5933 Materials Science +0910.5934 Symplectic Geometry +0910.5937 +0910.5938 +0910.5939 Theory +0910.5940 Representation Theory +0910.5941 History and Philosophy of Physics +0910.5946 Differential Geometry +0910.5950 Information Theory +0910.5951 Rings and Algebras +0910.5952 +math/0506392 Differential Geometry +math/0612593 Dynamical Systems +0704.0053 Differential Geometry +0708.0379 Dynamical Systems +0708.0669 +0708.1348 Category Theory +0710.0280 +0711.3032 Differential Geometry +0711.4208 Quantitative Methods +0711.4737 Strongly Correlated Electrons +0712.3132 Optics +0801.2248 Numerical Analysis +0801.3715 Programming Languages +0802.1592 +0802.2270 Statistical Mechanics +0803.2758 Optimization and Control +0803.3345 Optimization and Control +0804.1696 Programming Languages +0804.3023 Logic in Computer Science +0804.4896 Networking and Internet Architecture +0805.0087 Distributed, Parallel, and Cluster Computing +0806.1298 Mesoscale and Nanoscale Physics +0806.2714 +0807.0425 Networking and Internet Architecture +0807.0993 Performance +0807.3980 Group Theory +0809.2172 Analysis of PDEs +0809.2378 Combinatorics +0811.1151 Performance +0812.2293 Materials Science +0812.2827 Superconductivity +0812.2862 Phenomenology +0812.2971 Information Theory +0812.3528 Probability +0901.1450 Phenomenology +0901.2911 General Physics +0901.3845 Cosmology and Nongalactic Astrophysics +0901.4215 Mesoscale and Nanoscale Physics +0901.4655 Combinatorics +0902.0164 Number Theory +0902.0469 Cryptography and Security +0902.0883 Materials Science +0902.1612 Symbolic Computation +0902.4100 Phenomenology +0903.2800 Superconductivity +0903.3106 Data Structures and Algorithms +0903.3821 Strongly Correlated Electrons +0903.4614 Geometric Topology +0904.1978 High Energy Astrophysical Phenomena +0904.2101 Number Theory +0904.2415 Pattern Formation and Solitons +0904.2500 Biomolecules +0904.2568 Instrumentation and Methods for Astrophysics +0904.2571 Instrumentation and Methods for Astrophysics +0904.2575 Mesoscale and Nanoscale Physics +0904.2576 Data Structures and Algorithms +0904.2578 Complex Variables +0904.2582 +0904.2584 Networking and Internet Architecture +0904.2585 Information Theory +0904.2593 Cosmology and Nongalactic Astrophysics +0904.2595 Artificial Intelligence +0904.2597 Materials Science +0904.2598 Optics +0904.2600 Combinatorics +0904.2602 +0904.2605 Dynamical Systems +0904.2613 Superconductivity +0904.2615 Cosmology and Nongalactic Astrophysics +0904.2616 +0904.2629 Probability +0904.2632 Functional Analysis +0904.2633 Popular Physics +0904.2634 Quantitative Methods +0904.2635 Statistical Mechanics +0904.2637 Quantitative Methods +0904.2639 Quantitative Methods +0904.2641 Soft Condensed Matter +0904.2643 Soft Condensed Matter +0904.2645 Classical Analysis and ODEs +0904.2647 Mesoscale and Nanoscale Physics +0904.2650 Accelerator Physics +0904.2652 Mesoscale and Nanoscale Physics +0904.2653 +0904.2654 Cosmology and Nongalactic Astrophysics +0904.2656 +0904.2658 Discrete Mathematics +0904.2664 Popular Physics +0904.2668 Genomics +0904.2671 Superconductivity +0904.2673 Earth and Planetary Astrophysics +0904.2678 Biomolecules +0904.2680 Probability +0904.2681 Superconductivity +0904.2685 Category Theory +0904.2690 Geometric Topology +0904.2691 Statistical Mechanics +0904.2692 Geometric Topology +0904.2695 Computational Engineering, Finance, and Science +0904.2696 Cosmology and Nongalactic Astrophysics +0904.2698 Group Theory +0904.2702 History and Philosophy of Physics +0904.2704 Biological Physics +0904.2712 Data Structures and Algorithms +0904.2714 Algebraic Topology +0904.2716 Networking and Internet Architecture +0904.2717 +0904.2725 Cosmology and Nongalactic Astrophysics +0904.2731 General Finance +0904.2733 Networking and Internet Architecture +0904.2734 Representation Theory +0904.2735 Quantum Gases +0904.2739 Chemical Physics +0904.2742 Chemical Physics +0904.2751 Discrete Mathematics +0904.2756 Classical Analysis and ODEs +0904.2762 Probability +cond-mat/0701514 Statistical Mechanics +math/0512355 Number Theory +math/0603566 Number Theory +math/0612745 Dynamical Systems +math/0703911 Optimization and Control +0708.1581 Algebraic Topology +0708.2382 +0709.2665 Experiment +0710.0874 +0710.3957 Number Theory +0711.0991 +0711.2806 +0801.1615 Superconductivity +0802.0635 Algebraic Geometry +0802.0952 Category Theory +0802.2124 Other Condensed Matter +0802.3427 Phenomenology +0803.1715 General Mathematics +0803.2989 Theory +0803.3359 +0804.3582 Dynamical Systems +0805.2614 Experiment +0806.1517 Quantum Gases +0806.3718 Statistical Mechanics +0806.4420 Dynamical Systems +0807.4650 +0808.0175 +0808.3800 Complex Variables +0810.3331 Number Theory +0811.0495 Plasma Physics +0811.3843 Strongly Correlated Electrons +0812.0628 Phenomenology +0812.4360 Artificial Intelligence +0812.4664 Strongly Correlated Electrons +0901.2420 Solar and Stellar Astrophysics +0901.2839 Solar and Stellar Astrophysics +0901.3761 Computational Complexity +0901.4709 +0902.0022 +0902.0237 +0902.0559 +0902.0881 +0902.1689 Phenomenology +0902.2875 Solar and Stellar Astrophysics +0902.2880 Solar and Stellar Astrophysics +0902.3859 History and Overview +0902.3888 Algebraic Topology +0903.2993 Superconductivity +0903.4945 Strongly Correlated Electrons +0903.5025 Physics and Society +0903.5073 Combinatorics +0904.0718 Combinatorics +0904.0784 Theory +0904.1367 General Topology +0904.1645 Discrete Mathematics +0904.1736 Differential Geometry +0904.1998 Algebraic Topology +0904.1999 Mesoscale and Nanoscale Physics +0904.2002 Astrophysics of Galaxies +0904.2003 Astrophysics of Galaxies +0904.2009 +0904.2012 Databases +0904.2013 Disordered Systems and Neural Networks +0904.2014 Statistics Theory +0904.2017 +0904.2021 Cosmology and Nongalactic Astrophysics +0904.2023 Cryptography and Security +0904.2024 Instrumentation and Detectors +0904.2027 Data Structures and Algorithms +0904.2028 Networking and Internet Architecture +0904.2030 Solar and Stellar Astrophysics +0904.2032 Cosmology and Nongalactic Astrophysics +0904.2036 Fluid Dynamics +0904.2038 Superconductivity +0904.2041 +0904.2053 Mesoscale and Nanoscale Physics +0904.2059 Statistical Mechanics +0904.2064 +0904.2067 +0904.2074 Functional Analysis +0904.2075 Number Theory +0904.2082 Theory +0904.2091 Materials Science +0904.2094 Probability +0904.2096 Human-Computer Interaction +0904.2097 +0904.2098 Experiment +0904.2099 +0904.2111 Materials Science +0904.2114 Superconductivity +0904.2119 Phenomenology +0904.2123 Algebraic Geometry +0904.2126 Statistical Mechanics +0904.2129 Data Structures and Algorithms +0904.2131 Quantum Algebra +0904.2132 Materials Science +0904.2133 Biological Physics +0904.2136 Programming Languages +0904.2138 Statistics Theory +0904.2139 Materials Science +0904.2141 Differential Geometry +0904.2142 Statistics Theory +0904.2146 Cosmology and Nongalactic Astrophysics +0904.2147 Statistics Theory +0904.2152 Group Theory +0904.2155 +0904.2157 Functional Analysis +0904.2160 Learning +0904.2170 Differential Geometry +0904.2176 Mesoscale and Nanoscale Physics +0904.2178 Superconductivity +astro-ph/0206114 +astro-ph/0502381 +astro-ph/0512647 +astro-ph/0603110 +astro-ph/0606294 +astro-ph/0608216 +cond-mat/0111389 Statistical Mechanics +cond-mat/0504253 Statistical Mechanics +cond-mat/0603842 Other Condensed Matter +cond-mat/0612463 Mesoscale and Nanoscale Physics +hep-ex/0008037 Experiment +hep-ex/0102037 Experiment +hep-ex/0210047 Experiment +hep-ex/0210067 Experiment +hep-ex/0307023 Experiment +hep-ex/0307064 Experiment +hep-ex/0406052 Experiment +hep-ex/0512029 Experiment +hep-ex/9806006 Experiment +hep-ex/9807013 Experiment +hep-ex/9807015 Experiment +hep-ex/9811011 Experiment +hep-ex/9907020 Experiment +hep-ex/9910062 Experiment +hep-ex/9910071 Experiment +hep-ex/9911017 Experiment +hep-ph/0103114 Phenomenology +hep-ph/0103158 Phenomenology +hep-ph/0108215 Phenomenology +hep-ph/0109225 Phenomenology +hep-ph/0206126 Phenomenology +hep-ph/0209335 Phenomenology +hep-ph/0306275 Phenomenology +hep-ph/0402046 Phenomenology +hep-ph/0405079 Phenomenology +hep-ph/0412049 Phenomenology +hep-ph/0609298 Phenomenology +hep-th/0001146 Theory +nucl-ex/0010009 +nucl-th/0103063 +physics/0306195 Instrumentation and Detectors +physics/0307070 Instrumentation and Detectors +physics/0701243 Medical Physics +physics/0701244 Medical Physics +physics/0701245 Medical Physics +0704.1371 +0705.0728 +0707.0536 Statistics Theory +0708.0131 +0709.2056 Analysis of PDEs +0709.4398 Differential Geometry +0711.3369 +0712.0577 Theory +0712.1661 +0712.4296 History and Overview +0801.3565 Strongly Correlated Electrons +0801.4935 Analysis of PDEs +0802.1938 Logic +0802.1991 Statistical Mechanics +0802.3310 Differential Geometry +0803.4434 Operator Algebras +0804.1617 Information Theory +0804.3756 Representation Theory +0804.3776 Disordered Systems and Neural Networks +0807.1799 Mesoscale and Nanoscale Physics +0807.2005 Strongly Correlated Electrons +0807.2360 +0807.3875 Other Condensed Matter +0809.2119 Materials Science +0809.2143 Combinatorics +0809.2503 Statistical Mechanics +0809.3157 +0809.3511 General Physics +0809.4414 Strongly Correlated Electrons +0809.4961 Other Condensed Matter +0810.0415 Biomolecules +0810.0680 Strongly Correlated Electrons +0810.0685 Disordered Systems and Neural Networks +0810.1403 Strongly Correlated Electrons +0810.1711 Soft Condensed Matter +0810.1821 Exactly Solvable and Integrable Systems +0811.0092 Functional Analysis +0811.0827 +0811.0928 Differential Geometry +0811.1215 Superconductivity +0811.4391 Information Theory +0812.2295 Atomic Physics +0901.0032 Operator Algebras +0901.0139 Pattern Formation and Solitons +0901.0798 Superconductivity +0901.0906 Mesoscale and Nanoscale Physics +0901.1503 Information Theory +0901.2061 Combinatorics +0901.2519 Mesoscale and Nanoscale Physics +0901.2645 Data Structures and Algorithms +0901.2656 History and Philosophy of Physics +0901.3511 +0901.3798 Cosmology and Nongalactic Astrophysics +0901.3831 Phenomenology +0901.3851 +0901.4091 +0901.4760 Probability +0902.1029 Superconductivity +0902.1255 Computational Complexity +0902.1627 Strongly Correlated Electrons +0902.1827 Mesoscale and Nanoscale Physics +0902.2399 Computational Complexity +0902.2401 Statistical Mechanics +0902.2404 Biomolecules +0902.2407 Computational Complexity +0902.2429 Trading and Market Microstructure +0902.2430 Phenomenology +0902.2433 Dynamical Systems +0902.2434 Experiment +0902.2438 Information Theory +0902.2451 +0902.2455 Phenomenology +0902.2461 Other Condensed Matter +0902.2463 Other Condensed Matter +0902.2464 Spectral Theory +0902.2466 Algebraic Topology +0902.2467 Commutative Algebra +0902.2470 +0902.2476 Earth and Planetary Astrophysics +0902.2487 Cryptography and Security +0902.2494 Astrophysics of Galaxies +0902.2496 Number Theory +0902.2500 Probability +0902.2504 Databases +0902.2507 Analysis of PDEs +0902.2508 Superconductivity +0902.2512 +0902.2527 Fluid Dynamics +0902.2528 +0902.2543 Chemical Physics +0902.2548 Solar and Stellar Astrophysics +0902.2549 Materials Science +0902.2556 Optimization and Control +0902.2557 Superconductivity +0902.2562 High Energy Astrophysical Phenomena +0902.2567 Astrophysics of Galaxies +0902.2568 Analysis of PDEs +0902.2576 Solar and Stellar Astrophysics +0902.2580 Algebraic Geometry +0902.2590 Cosmology and Nongalactic Astrophysics +0902.2591 Astrophysics of Galaxies +0902.2592 Materials Science +0902.2596 +0902.2598 Quantitative Methods +0902.2599 Cosmology and Nongalactic Astrophysics +0902.2601 Classical Analysis and ODEs +0902.2602 Solar and Stellar Astrophysics +0902.2611 Analysis of PDEs +0902.2614 Numerical Analysis +0902.2618 Statistical Mechanics +0902.2621 Programming Languages +0902.2623 Analysis of PDEs +0902.2624 Dynamical Systems +0902.2625 Functional Analysis +0902.2626 Algebraic Geometry +0902.2636 Classical Physics +0902.2641 Optics +0902.2648 Data Structures and Algorithms +0902.2649 Computational Complexity +0902.2652 Soft Condensed Matter +0902.2654 Analysis of PDEs +0902.2657 +0902.2665 +0902.2669 Number Theory +0902.2671 Cellular Automata and Lattice Gases +0902.2673 Probability +0902.2676 Solar and Stellar Astrophysics +0902.2680 +0902.2681 Probability +0902.2683 Classical Analysis and ODEs +0902.2689 Analysis of PDEs +0902.2690 Spectral Theory +0902.2691 Classical Analysis and ODEs +0902.2692 Information Theory +0902.2693 Probability +0902.2694 Instrumentation and Detectors +0902.2701 Optics +0902.2706 Mesoscale and Nanoscale Physics +0902.2707 Instrumentation and Detectors +0902.2717 Instrumentation and Detectors +0902.2718 Geometric Topology +0902.2723 Number Theory +0902.2725 Complex Variables +0902.2734 Optics +0902.2736 Computer Science and Game Theory +0902.2742 Functional Analysis +0902.2744 Solar and Stellar Astrophysics +0902.2750 Analysis of PDEs +0902.2755 Earth and Planetary Astrophysics +0902.2756 Risk Management +0902.2759 Cosmology and Nongalactic Astrophysics +0902.2765 Classical Analysis and ODEs +0902.2766 Subcellular Processes +0902.2767 Functional Analysis +0902.2770 Optimization and Control +0902.2771 Optimization and Control +0902.2772 Biological Physics +0902.2775 Instrumentation and Methods for Astrophysics +astro-ph/0612208 +cond-mat/0011267 Superconductivity +cond-mat/0607759 Mesoscale and Nanoscale Physics +cond-mat/0701356 Mesoscale and Nanoscale Physics +math-ph/0504009 +math/0702509 Combinatorics +math/0703083 Algebraic Topology +0708.4176 Logic +0712.0297 +0804.0188 Learning +0804.2250 Strongly Correlated Electrons +0807.3594 +0807.5095 Mesoscale and Nanoscale Physics +0809.0624 Phenomenology +0809.3003 Phenomenology +0809.4463 Algebraic Geometry +0810.5248 Computational Physics +0811.1868 Computational Geometry +0811.3225 Dynamical Systems +0811.3704 Computational Complexity +0901.0373 Logic in Computer Science +0901.1254 +0901.2040 Instrumentation and Methods for Astrophysics +0902.1097 +0902.2422 Computational Complexity +0902.2865 Operator Algebras +0902.3906 Populations and Evolution +0903.0082 High Energy Astrophysical Phenomena +0903.0288 Materials Science +0903.4207 Information Theory +0904.0348 Materials Science +0904.1293 Phenomenology +0904.2035 Mesoscale and Nanoscale Physics +0904.3134 Superconductivity +0904.3354 Algebraic Geometry +0904.3506 Materials Science +0904.3678 Strongly Correlated Electrons +0904.3913 General Mathematics +0905.3845 K-Theory and Homology +0905.4553 Analysis of PDEs +0906.0163 +0906.0850 Other Condensed Matter +0906.3021 +0906.3735 Strongly Correlated Electrons +0907.1510 Algebraic Geometry +0907.3620 Optics +0907.5486 Analysis of PDEs +0907.5540 Phenomenology +0908.0006 +0908.0010 Cosmology and Nongalactic Astrophysics +0908.0014 Information Theory +0908.0020 Theory +0908.0022 +0908.0024 Analysis of PDEs +0908.0026 Group Theory +0908.0029 Dynamical Systems +0908.0037 Superconductivity +0908.0041 Differential Geometry +0908.0042 Combinatorics +0908.0044 Strongly Correlated Electrons +0908.0051 Information Theory +0908.0060 Computer Science and Game Theory +0908.0064 Algebraic Topology +0908.0070 Operator Algebras +0908.0073 Combinatorics +0908.0080 Cryptography and Security +0908.0082 High Energy Astrophysical Phenomena +0908.0085 +0908.0088 General Physics +0908.0089 Artificial Intelligence +0908.0098 Combinatorics +0908.0099 Computers and Society +0908.0106 +0908.0111 Statistical Finance +0908.0118 Strongly Correlated Electrons +0908.0120 Statistical Mechanics +0908.0122 Cryptography and Security +0908.0124 Computers and Society +0908.0125 Strongly Correlated Electrons +0908.0126 Networking and Internet Architecture +0908.0127 Materials Science +0908.0135 Operator Algebras +0908.0140 Dynamical Systems +0908.0141 General Topology +0908.0142 High Energy Astrophysical Phenomena +0908.0146 Molecular Networks +0908.0148 Symplectic Geometry +0908.0151 Classical Physics +0908.0153 Geometric Topology +0908.0154 Mesoscale and Nanoscale Physics +0908.0157 History and Overview +0908.0160 Distributed, Parallel, and Cluster Computing +0908.0164 +0908.0170 Phenomenology +0908.0171 Number Theory +0908.0173 Mesoscale and Nanoscale Physics +0908.0175 Networking and Internet Architecture +0908.0179 Instrumentation and Methods for Astrophysics +0908.0182 Astrophysics of Galaxies +0908.0183 Differential Geometry +0908.0187 +0908.0191 Software Engineering +0908.0199 Analysis of PDEs +0908.0205 Fluid Dynamics +0908.0207 Dynamical Systems +0908.0211 Quantum Algebra +0908.0214 Materials Science +0908.0216 Cryptography and Security +0908.0221 Robotics +0908.0222 Cryptography and Security +0908.0232 Statistics Theory +0908.0239 Data Structures and Algorithms +0908.0255 Combinatorics +0908.0256 +0908.0262 Classical Analysis and ODEs +0908.0270 +0908.0276 Analysis of PDEs +0908.0289 Algebraic Geometry +0908.0294 Strongly Correlated Electrons +0908.0295 Functional Analysis +0908.0300 Statistical Mechanics +0908.0301 Cosmology and Nongalactic Astrophysics +0908.0302 Information Theory +0908.0307 Theory +0908.0309 Algebraic Geometry +0908.0319 Machine Learning +0908.0322 +math/0311245 Algebraic Geometry +math/0502425 History and Overview +math/0604030 Algebraic Topology +math/0604031 Algebraic Topology +math/0610474 Geometric Topology +math/0612450 Algebraic Topology +quant-ph/0107104 +quant-ph/0107107 +quant-ph/0204059 +quant-ph/0612228 +quant-ph/0702026 +0705.1960 Theory +0707.1143 Number Theory +0708.1988 Classical Physics +0708.2887 Complex Variables +0708.4046 Theory +0710.2933 Classical Physics +0710.4473 +0711.3771 Theory +0712.2703 Theory +0712.3357 Superconductivity +0801.0527 +0801.1226 +0801.2910 Superconductivity +0802.0519 Theory +0802.3933 Numerical Analysis +0803.1030 Computational Complexity +0803.2030 Theory +0803.3764 Representation Theory +0803.4087 Theory +0803.4122 Statistical Mechanics +0804.2595 Theory +0804.3041 Superconductivity +0804.3745 Phenomenology +0805.0142 Classical Physics +0805.0568 +0805.0975 +0805.2571 Superconductivity +0805.2631 +0805.4082 Experiment +0807.3639 Subcellular Processes +0807.4520 +0807.4740 Quantum Algebra +0808.2620 Strongly Correlated Electrons +0809.0404 Phenomenology +0809.2499 Strongly Correlated Electrons +0810.2068 Representation Theory +0810.3274 Superconductivity +0810.4645 +0811.0428 +0811.1023 Commutative Algebra +0811.1226 Theory +0811.2460 +0811.3491 Other Condensed Matter +0812.1852 Materials Science +0812.1977 Other Condensed Matter +0812.2004 Fluid Dynamics +0812.2663 +0812.2868 Data Structures and Algorithms +0901.1048 +0901.1853 Information Theory +0901.1967 Analysis of PDEs +0901.2073 General Physics +0901.2547 Solar and Stellar Astrophysics +0901.3652 Superconductivity +0901.3998 Optics +0901.4106 +0901.4113 Tissues and Organs +0901.4126 Soft Condensed Matter +0901.4127 Probability +0901.4132 Instrumentation and Detectors +0901.4139 Combinatorics +0901.4147 Information Theory +0901.4149 Combinatorics +0901.4150 Disordered Systems and Neural Networks +0901.4161 Algebraic Geometry +0901.4167 Materials Science +0901.4171 Analysis of PDEs +0901.4175 Phenomenology +0901.4181 +0901.4183 Instrumentation and Detectors +0901.4184 Statistics Theory +0901.4186 Statistics Theory +0901.4188 Group Theory +0901.4190 Symplectic Geometry +0901.4193 Quantum Algebra +0901.4194 Dynamical Systems +0901.4196 Materials Science +0901.4197 Classical Analysis and ODEs +0901.4198 Strongly Correlated Electrons +0901.4199 Phenomenology +0901.4201 Data Structures and Algorithms +0901.4202 Solar and Stellar Astrophysics +0901.4204 Solar and Stellar Astrophysics +0901.4205 Algebraic Geometry +0901.4208 Applications +0901.4210 Atomic Physics +0901.4212 +0901.4213 Applications +0901.4219 Applications +0901.4220 Probability +0901.4224 Artificial Intelligence +0901.4225 Algebraic Geometry +0901.4226 General Topology +0901.4230 Theory +0901.4240 Algebraic Topology +0901.4241 General Physics +0901.4252 Statistics Theory +0901.4265 Solar and Stellar Astrophysics +0901.4266 Statistics Theory +0901.4267 Information Theory +0901.4269 Solar and Stellar Astrophysics +0901.4272 Information Theory +0901.4275 Information Theory +0901.4278 Probability +0901.4279 Analysis of PDEs +0901.4280 Complex Variables +0901.4285 Geophysics +0901.4286 Analysis of PDEs +0901.4289 Strongly Correlated Electrons +0901.4291 Rings and Algebras +0901.4295 Biological Physics +0901.4298 Analysis of PDEs +0901.4299 Combinatorics +0901.4300 Astrophysics of Galaxies +0901.4301 Dynamical Systems +0901.4306 Geometric Topology +0901.4312 Exactly Solvable and Integrable Systems +0901.4314 Analysis of PDEs +0901.4321 Statistics Theory +0901.4322 Algebraic Geometry +0901.4323 Data Structures and Algorithms +0901.4329 Solar and Stellar Astrophysics +astro-ph/0507257 +astro-ph/9907324 +chao-dyn/9703010 Chaotic Dynamics +cond-mat/0601035 Mesoscale and Nanoscale Physics +hep-th/0407057 Theory +hep-th/0610016 Theory +math-ph/0512067 +math/0607185 Complex Variables +math/0701108 Statistics Theory +math/0702824 Number Theory +nlin/0208002 Exactly Solvable and Integrable Systems +0705.3409 Mesoscale and Nanoscale Physics +0705.3923 Mesoscale and Nanoscale Physics +0706.2612 Mesoscale and Nanoscale Physics +0710.1869 Phenomenology +0712.1082 Materials Science +0801.0418 Representation Theory +0801.1334 +0801.3046 Computational Engineering, Finance, and Science +0803.0664 Disordered Systems and Neural Networks +0803.3679 Probability +0805.0603 +0805.2201 +0805.2972 +0806.0338 Statistical Mechanics +0807.1992 Theory +0807.4943 +0808.2176 +0808.2509 Phenomenology +0809.0590 Disordered Systems and Neural Networks +0809.3467 Probability +0810.0487 Algebraic Geometry +0810.4864 +0810.5060 +0811.0820 +0811.1025 +0811.2619 +0811.3925 Superconductivity +0811.4594 Theory +0812.0505 +0812.2515 +0812.2981 Algebraic Topology +0901.1453 +0901.2395 Pattern Formation and Solitons +0901.3431 Theory +0901.3731 Theory +0902.4187 +0903.1169 Differential Geometry +0903.2143 Superconductivity +0903.3115 Phenomenology +0903.3231 Theory +0903.3247 Statistical Mechanics +0903.3356 Theory +0903.3506 +0903.4153 +0903.4788 Mesoscale and Nanoscale Physics +0903.4891 Solar and Stellar Astrophysics +0904.0455 Theory +0904.0495 +0904.0554 Theory +0904.1566 +0904.1949 High Energy Astrophysical Phenomena +0904.1975 Theory +0904.2330 +0904.2945 Superconductivity +0904.3443 Phenomenology +0904.3779 +0904.3914 +0904.4212 +0905.1010 Theory +0905.1095 Phenomenology +0905.1482 Astrophysics of Galaxies +0905.1602 Solar and Stellar Astrophysics +0905.1875 Superconductivity +0905.2391 +0905.2477 +0905.2493 Phenomenology +0905.2940 Theory +0905.3416 Chaotic Dynamics +0905.3513 Fluid Dynamics +0906.0414 Materials Science +0906.0432 +0906.0643 Theory +0906.2792 High Energy Astrophysical Phenomena +0906.2991 Solar and Stellar Astrophysics +0906.4563 +0906.5227 Differential Geometry +0907.0150 +0907.0152 Geometric Topology +0907.0174 Superconductivity +0907.0720 Quantum Gases +0907.0791 High Energy Astrophysical Phenomena +0907.1504 Astrophysics of Galaxies +0907.1687 Cosmology and Nongalactic Astrophysics +0907.1875 Soft Condensed Matter +0907.2124 Soft Condensed Matter +0907.2151 Solar and Stellar Astrophysics +0907.2240 Cosmology and Nongalactic Astrophysics +0907.4026 Earth and Planetary Astrophysics +0908.0110 Soft Condensed Matter +0908.0714 High Energy Astrophysical Phenomena +0908.0804 High Energy Astrophysical Phenomena +0908.1208 Information Theory +0908.1212 +0908.1389 High Energy Astrophysical Phenomena +0908.1393 Group Theory +0908.1405 Functional Analysis +0908.1409 Cosmology and Nongalactic Astrophysics +0908.1411 +0908.1412 Cosmology and Nongalactic Astrophysics +0908.1415 +0908.1416 Geometric Topology +0908.1421 Analysis of PDEs +0908.1423 Combinatorics +0908.1424 Cosmology and Nongalactic Astrophysics +0908.1427 Classical Analysis and ODEs +0908.1433 Commutative Algebra +0908.1440 +0908.1441 +0908.1446 General Physics +0908.1448 Data Structures and Algorithms +0908.1452 Combinatorics +0908.1453 Neural and Evolutionary Computing +0908.1458 Algebraic Geometry +0908.1464 Instrumentation and Methods for Astrophysics +0908.1471 Networking and Internet Architecture +0908.1474 Soft Condensed Matter +0908.1481 Instrumentation and Methods for Astrophysics +0908.1485 Optimization and Control +0908.1488 Differential Geometry +0908.1491 +0908.1493 Metric Geometry +0908.1497 Materials Science +0908.1498 Statistics Theory +0908.1500 Representation Theory +0908.1507 +0908.1510 Information Theory +0908.1512 Cosmology and Nongalactic Astrophysics +0908.1513 Analysis of PDEs +0908.1516 Geophysics +0908.1519 Differential Geometry +0908.1528 Data Structures and Algorithms +0908.1536 Materials Science +0908.1538 Geometric Topology +0908.1541 Instrumentation and Detectors +0908.1544 General Topology +0908.1546 General Mathematics +0908.1556 Cell Behavior +0908.1564 Networking and Internet Architecture +astro-ph/0205412 +hep-ex/0311019 Experiment +hep-ph/0401117 Phenomenology +hep-ph/9206257 Phenomenology +hep-ph/9303279 Phenomenology +hep-ph/9312248 Phenomenology +hep-ph/9511432 Phenomenology +math/0412109 Differential Geometry +math/0604143 Differential Geometry +quant-ph/0605090 +quant-ph/0701245 +0708.0003 Strongly Correlated Electrons +0709.4429 Materials Science +0711.3870 Complex Variables +0803.2085 Quantitative Methods +0806.0753 +0806.2068 Discrete Mathematics +0806.3941 Combinatorics +0806.4870 Complex Variables +0807.0988 Complex Variables +0807.1775 Cryptography and Security +0808.2340 Number Theory +0809.2905 +0810.0670 +0810.2186 Mesoscale and Nanoscale Physics +0810.3911 +0810.5626 +0811.0764 Information Theory +0812.1369 Analysis of PDEs +0901.2331 Operator Algebras +0901.4865 Logic +0902.1873 Analysis of PDEs +0902.3397 +0903.2006 Mesoscale and Nanoscale Physics +0903.2051 Astrophysics of Galaxies +0903.4315 General Physics +0904.0225 Atomic Physics +0904.0244 Chemical Physics +0904.3710 Phenomenology +0904.4920 +0905.0009 +0905.0135 Combinatorics +0905.0385 Information Theory +0905.1224 Soft Condensed Matter +0905.3483 Solar and Stellar Astrophysics +0905.4745 Numerical Analysis +0906.0986 +0906.3077 Cosmology and Nongalactic Astrophysics +0906.4493 Theory +0906.4719 +0907.0252 +0908.1167 Superconductivity +0908.1327 Materials Science +0908.2304 +0908.3660 Phenomenology +0908.4520 Fluid Dynamics +0909.0247 Information Theory +0909.0355 Experiment +0909.0844 Learning +0909.0854 +0909.0956 Functional Analysis +0909.0974 +0909.0978 Probability +0909.0988 +0909.0989 High Energy Astrophysical Phenomena +0909.0991 Machine Learning +0909.0995 Number Theory +0909.0999 Statistics Theory +0909.1001 +0909.1003 Complex Variables +0909.1013 High Energy Astrophysical Phenomena +0909.1014 Biological Physics +0909.1018 Solar and Stellar Astrophysics +0909.1020 +0909.1021 Artificial Intelligence +0909.1023 Atomic Physics +0909.1024 Theory +0909.1026 Astrophysics of Galaxies +0909.1029 Earth and Planetary Astrophysics +0909.1030 Data Structures and Algorithms +0909.1035 Functional Analysis +0909.1041 Complex Variables +0909.1042 Mesoscale and Nanoscale Physics +0909.1045 Networking and Internet Architecture +0909.1049 Cryptography and Security +0909.1050 Algebraic Topology +0909.1055 Statistical Mechanics +0909.1057 +0909.1058 Instrumentation and Methods for Astrophysics +0909.1060 Differential Geometry +0909.1061 +0909.1065 Group Theory +0909.1068 Quantum Gases +0909.1072 Computer Science and Game Theory +0909.1077 +0909.1083 General Mathematics +0909.1084 Probability +0909.1086 Algebraic Topology +0909.1090 Probability +0909.1094 Dynamical Systems +0909.1101 +0909.1102 Logic in Computer Science +0909.1103 Dynamical Systems +0909.1104 Pattern Formation and Solitons +0909.1107 Spectral Theory +0909.1108 Differential Geometry +0909.1109 Combinatorics +0909.1115 Information Theory +0909.1118 Geometric Topology +0909.1123 Methodology +0909.1127 Databases +0909.1131 Commutative Algebra +0909.1134 Combinatorics +0909.1139 Quantum Algebra +0909.1140 Other Condensed Matter +0909.1141 Differential Geometry +0909.1142 General Finance +0909.1144 Adaptation and Self-Organizing Systems +0909.1145 Computers and Society +0909.1146 Distributed, Parallel, and Cluster Computing +0909.1147 Computation and Language +0909.1148 Probability +0909.1150 +0909.1151 Artificial Intelligence +0909.1153 Number Theory +0909.1154 Statistics Theory +0909.1156 Number Theory +0909.1157 Statistics Theory +0909.1168 Mesoscale and Nanoscale Physics +0909.1169 Dynamical Systems +0909.1170 Theory +0909.1175 Number Theory +0909.1176 High Energy Astrophysical Phenomena +0909.1178 Number Theory +0909.1181 Solar and Stellar Astrophysics +0909.1184 Number Theory +0909.1191 Probability +0909.1200 Materials Science +0909.1201 Algebraic Topology +0909.1205 Materials Science +0909.1209 Information Theory +0909.1221 Statistics Theory +0909.1223 Astrophysics of Galaxies +0909.1225 Astrophysics of Galaxies +0909.1230 +0909.1236 General Physics +0909.1237 Functional Analysis +0909.1240 Phenomenology +0909.1245 Materials Science +0909.1253 Materials Science +0909.1254 Phenomenology +0909.1259 Rings and Algebras +0909.1260 Chaotic Dynamics +0909.1261 +0909.1279 Instrumentation and Methods for Astrophysics +0909.1284 Materials Science +0909.1286 +0909.1287 +0909.1295 Probability +0909.1300 Combinatorics +0909.1301 Combinatorics +0909.1302 High Energy Astrophysical Phenomena +0909.1306 Soft Condensed Matter +0909.1310 Numerical Analysis +0909.1311 High Energy Astrophysical Phenomena +0909.1316 High Energy Astrophysical Phenomena +0705.3268 Atomic Physics +0709.3122 Number Theory +0710.0200 Mesoscale and Nanoscale Physics +0710.2427 Phenomenology +0805.1431 Mesoscale and Nanoscale Physics +0805.2563 Rings and Algebras +0806.2362 +0808.1683 Quantum Algebra +0808.1695 Geometric Topology +0809.1060 Analysis of PDEs +0810.5175 Analysis of PDEs +0812.0258 Atmospheric and Oceanic Physics +0812.0428 +0812.4040 Dynamical Systems +0901.0628 Materials Science +0901.3331 Materials Science +0902.1746 +0902.2368 Probability +0902.4750 Phenomenology +0903.1424 +0903.4415 Mesoscale and Nanoscale Physics +0903.5172 Information Retrieval +0903.5243 Superconductivity +0904.3097 Mesoscale and Nanoscale Physics +0905.1234 Cosmology and Nongalactic Astrophysics +0905.2964 Phenomenology +0905.4064 Logic in Computer Science +0906.0044 Analysis of PDEs +0906.0240 Probability +0906.1154 Phenomenology +0906.2362 Operator Algebras +0906.2673 Chaotic Dynamics +0906.3167 Theory +0906.4095 Phenomenology +0906.4454 Quantitative Methods +0906.5446 Programming Languages +0906.5453 Phenomenology +0907.1379 Classical Analysis and ODEs +0907.2425 Cosmology and Nongalactic Astrophysics +0908.0096 Algebraic Geometry +0908.1873 General Physics +0908.2180 +0908.2230 +0908.2667 Combinatorics +0908.3251 Instrumentation and Methods for Astrophysics +0908.4327 Differential Geometry +0909.0502 +0909.0517 +0909.0523 +0909.0524 Theory +0909.0528 Materials Science +0909.0537 Computational Geometry +0909.0541 Instrumentation and Methods for Astrophysics +0909.0554 General Physics +0909.0557 Superconductivity +0909.0569 Algebraic Geometry +0909.0571 Networking and Internet Architecture +0909.0572 Information Retrieval +0909.0573 Cryptography and Security +0909.0575 Probability +0909.0576 Cryptography and Security +0909.0581 Statistics Theory +0909.0583 Cryptography and Security +0909.0588 Information Theory +0909.0594 Strongly Correlated Electrons +0909.0598 Statistics Theory +0909.0599 Sound +0909.0604 Combinatorics +0909.0607 +0909.0608 Statistics Theory +0909.0613 Statistics Theory +0909.0615 +0909.0617 Classical Analysis and ODEs +0909.0619 Classical Analysis and ODEs +0909.0623 +0909.0625 Quantum Gases +0909.0630 Soft Condensed Matter +0909.0631 High Energy Astrophysical Phenomena +0909.0633 Networking and Internet Architecture +0909.0634 Theory +0909.0635 Learning +0909.0638 Learning +0909.0644 Soft Condensed Matter +0909.0645 Statistics Theory +0909.0659 Pattern Formation and Solitons +0909.0662 Phenomenology +0909.0663 Instrumentation and Methods for Astrophysics +0909.0669 Pattern Formation and Solitons +0909.0673 Quantum Gases +0909.0679 High Energy Astrophysical Phenomena +0909.0682 Artificial Intelligence +0909.0687 Biological Physics +0909.0706 Mesoscale and Nanoscale Physics +0909.0720 Combinatorics +0909.0731 +0909.0732 Software Engineering +0909.0734 Disordered Systems and Neural Networks +0909.0738 Classical Analysis and ODEs +cond-mat/0306724 Mesoscale and Nanoscale Physics +cond-mat/0604415 Mesoscale and Nanoscale Physics +cond-mat/0702113 Mesoscale and Nanoscale Physics +math/0104114 Representation Theory +math/0404012 Algebraic Geometry +math/0501494 Representation Theory +math/0502450 Numerical Analysis +math/0502471 Numerical Analysis +quant-ph/0105022 +0706.2247 Geometric Topology +0707.2173 Combinatorics +0708.1926 +0710.5942 Algebraic Topology +0711.2164 Analysis of PDEs +0712.1047 Combinatorics +0712.1135 Analysis of PDEs +0712.1581 Analysis of PDEs +0804.2064 Statistical Finance +0805.1385 Computational Complexity +0807.2034 General Mathematics +0807.4581 Cellular Automata and Lattice Gases +0808.0988 Algebraic Geometry +0808.1685 Mesoscale and Nanoscale Physics +0808.2760 Cell Behavior +0809.0774 Optics +0809.1091 Algebraic Topology +0809.2611 Mesoscale and Nanoscale Physics +0809.4787 Phenomenology +0810.2595 Superconductivity +0810.3399 +0811.0025 Disordered Systems and Neural Networks +0811.0469 Statistical Mechanics +0811.1142 Statistical Mechanics +0811.1951 Statistical Mechanics +0812.0699 Statistical Mechanics +0812.0919 Phenomenology +0812.1166 Soft Condensed Matter +0812.1300 Functional Analysis +0812.1520 Strongly Correlated Electrons +0812.2436 Plasma Physics +0812.3293 Statistical Mechanics +0812.3832 +0901.0014 Phenomenology +0901.0952 +0901.2457 Algebraic Geometry +0901.3272 Cosmology and Nongalactic Astrophysics +0902.2231 Materials Science +0902.2982 +0903.1451 Artificial Intelligence +0903.2385 Dynamical Systems +0903.3053 Lattice +0903.4058 Strongly Correlated Electrons +0903.4227 General Mathematics +0903.4688 Materials Science +0903.4689 Algebraic Geometry +0903.4691 Logic +0903.4702 +0903.4704 Algebraic Topology +0903.4706 +0903.4708 Algebraic Topology +0903.4711 Algebraic Topology +0903.4717 +0903.4731 Disordered Systems and Neural Networks +0903.4738 Information Theory +0903.4739 Phenomenology +0903.4742 Information Theory +0903.4745 Astrophysics of Galaxies +0903.4753 Materials Science +0903.4754 Differential Geometry +0903.4755 Geophysics +0903.4764 Rings and Algebras +0903.4768 General Topology +0903.4769 Operator Algebras +0903.4770 Discrete Mathematics +0903.4773 Statistical Mechanics +0903.4784 Statistical Mechanics +0903.4785 Number Theory +0903.4792 +0903.4798 Differential Geometry +0903.4803 Classical Analysis and ODEs +0903.4807 Statistics Theory +0903.4808 Statistical Mechanics +0903.4815 Differential Geometry +0903.4819 Solar and Stellar Astrophysics +0903.4822 Functional Analysis +0903.4839 Rings and Algebras +0903.4847 Dynamical Systems +0903.4855 Experiment +0903.4856 Learning +0903.4865 Algebraic Topology +0903.4866 Combinatorics +0903.4867 Algebraic Topology +0903.4870 Algebraic Topology +0903.4876 +0903.4883 Number Theory +cond-mat/0607433 Other Condensed Matter +math/0605499 Representation Theory +math/0605500 Representation Theory +math/0606383 Geometric Topology +math/0608517 Geometric Topology +math/0609652 Functional Analysis +math/0701792 Combinatorics +math/0703132 Geometric Topology +physics/0609178 Physics and Society +physics/0611153 Physics and Society +quant-ph/0611154 +0704.0814 +0710.4006 Atomic Physics +0803.2662 Representation Theory +0804.2264 +0805.1784 Superconductivity +0806.1306 Materials Science +0806.2647 Plasma Physics +0806.2650 Plasma Physics +0809.2517 Quantum Algebra +0810.1115 Lattice +0901.2334 Solar and Stellar Astrophysics +0902.0394 Fluid Dynamics +0902.1749 Mesoscale and Nanoscale Physics +0902.4524 +0902.4790 Atomic Physics +0904.2622 Strongly Correlated Electrons +0906.0622 Superconductivity +0906.0771 Mesoscale and Nanoscale Physics +0907.2184 Probability +0907.2881 Rings and Algebras +0907.5116 +0908.0397 Soft Condensed Matter +0908.1899 Atomic Physics +0908.4242 Quantum Gases +0908.4372 Algebraic Geometry +0908.4448 Numerical Analysis +0908.4462 Numerical Analysis +0909.1360 Materials Science +0909.2723 +0909.3140 Quantum Algebra +0909.3809 Solar and Stellar Astrophysics +0909.4702 Biomolecules +0910.3368 Rings and Algebras +0910.4613 Information Theory +0911.4644 Algebraic Geometry +0912.1775 Algebraic Topology +0912.2269 Data Structures and Algorithms +0912.3772 High Energy Astrophysical Phenomena +0912.4623 Pricing of Securities +physics/0412021 Atomic Physics +0704.1103 Phenomenology +0704.1271 Phenomenology +0704.1900 Phenomenology +0704.2791 General Physics +0704.3707 Phenomenology +0704.3914 Phenomenology +0705.1809 Lattice +0705.2012 Phenomenology +0705.2360 Phenomenology +0705.2510 Phenomenology +0705.3460 Phenomenology +0705.3533 Phenomenology +0705.3686 Phenomenology +0705.4307 Phenomenology +0705.4542 Phenomenology +0705.4653 Phenomenology +0708.1228 Algebraic Geometry +0709.1083 Phenomenology +0709.4055 Phenomenology +0712.0008 Theory +0802.0261 Geometric Topology +0802.0628 Symplectic Geometry +0802.2162 Phenomenology +0803.0663 Theory +0804.4781 Strongly Correlated Electrons +0805.4723 +0806.4597 +0807.0089 +0807.1466 Superconductivity +0807.1987 +0807.3018 Algebraic Geometry +0807.4934 +0808.2786 +0809.0631 +0809.1827 Phenomenology +0809.1915 +0809.2891 Theory +0809.2919 Strongly Correlated Electrons +0809.3857 +0810.0698 +0810.1554 +0810.3305 Optimization and Control +0810.3551 Soft Condensed Matter +0811.0562 +0811.2930 Spectral Theory +0811.3298 Optics +0811.4386 +0812.1023 Strongly Correlated Electrons +0812.4032 +0812.4096 +0812.4519 +0901.0448 +0901.0584 Strongly Correlated Electrons +0901.1432 High Energy Astrophysical Phenomena +0901.1442 Astrophysics of Galaxies +0901.1654 Theory +0901.1778 Solar and Stellar Astrophysics +0901.2932 High Energy Astrophysical Phenomena +0901.4864 Theory +0902.0167 Mesoscale and Nanoscale Physics +0902.0267 +0902.0417 Information Theory +0902.0613 Cosmology and Nongalactic Astrophysics +0902.0783 +0902.1818 +0902.2715 Fluid Dynamics +0903.0568 Theory +0903.1611 Atomic Physics +0903.1613 Atomic Physics +0903.1912 Strongly Correlated Electrons +0903.3534 Plasma Physics +0903.3632 Materials Science +0903.3777 Analysis of PDEs +0903.4786 Optics +0904.1143 Group Theory +0904.1358 Group Theory +0904.1951 Theory +0904.2008 +0904.2090 Analysis of PDEs +0904.2546 +0904.2771 Mesoscale and Nanoscale Physics +0904.2777 Cosmology and Nongalactic Astrophysics +0904.2785 Discrete Mathematics +0904.2792 Combinatorics +0904.2794 Complex Variables +0904.2797 Algebraic Geometry +0904.2798 Chaotic Dynamics +0904.2810 Soft Condensed Matter +0904.2812 +0904.2813 Analysis of PDEs +0904.2814 Analysis of PDEs +0904.2816 Analysis of PDEs +0904.2817 Analysis of PDEs +0904.2824 Algebraic Geometry +0904.2837 +0904.2839 Algebraic Topology +0904.2843 Commutative Algebra +0904.2846 Commutative Algebra +0904.2847 Commutative Algebra +0904.2850 Algebraic Geometry +0904.2856 Medical Physics +0904.2861 Information Theory +0904.2862 Geometric Topology +0904.2871 Spectral Theory +0904.2874 Logic +0904.2875 Operator Algebras +0904.2876 Operator Algebras +0904.2877 Operator Algebras +0904.2880 Analysis of PDEs +0904.2884 Mesoscale and Nanoscale Physics +0904.2885 +0904.2888 Probability +0904.2889 Quantum Algebra +0904.2891 +0904.2895 Quantum Algebra +0904.2897 Rings and Algebras +0904.2899 Theory +0904.2901 Strongly Correlated Electrons +0904.2903 Group Theory +0904.2906 Methodology +0904.2908 Plasma Physics +0904.2910 Risk Management +0904.2911 General Physics +0904.2917 Fluid Dynamics +0904.2920 Superconductivity +0904.2922 Analysis of PDEs +0904.2925 Combinatorics +0904.2929 Strongly Correlated Electrons +0904.2933 +0904.2936 Algebraic Geometry +0904.2940 Functional Analysis +0904.2948 Atomic and Molecular Clusters +0904.2949 Statistics Theory +0904.2952 Statistics Theory +0904.2953 Artificial Intelligence +0904.2954 Artificial Intelligence +0904.2966 Quantum Gases +0904.2967 Chemical Physics +0904.2970 Functional Analysis +0904.2971 Optics +0904.2974 Chemical Physics +0904.2977 Statistics Theory +0904.2978 Statistics Theory +0904.2983 Mesoscale and Nanoscale Physics +0904.2984 Materials Science +0904.2987 Combinatorics +0904.3004 General Finance +0904.3005 Statistical Mechanics +0904.3010 Rings and Algebras +0904.3011 +0904.3012 History and Overview +0904.3014 Phenomenology +0904.3018 Strongly Correlated Electrons +0904.3020 Number Theory +0904.3021 Analysis of PDEs +0904.3022 Analysis of PDEs +0904.3025 Solar and Stellar Astrophysics +0904.3027 Group Theory +0904.3029 General Physics +0904.3030 Instrumentation and Methods for Astrophysics +0904.3031 Statistical Mechanics +0904.3038 Group Theory +0904.3040 Optics +0904.3051 Theory +0904.3069 Optics +0904.3070 General Physics +0904.3074 Other Computer Science +0904.3082 Computational Physics +0904.3085 Astrophysics of Galaxies +0904.3086 Probability +0904.3089 Accelerator Physics +0904.3093 Data Structures and Algorithms +cond-mat/0011501 Mesoscale and Nanoscale Physics +cond-mat/0111244 Strongly Correlated Electrons +cond-mat/0210303 +cond-mat/0504327 Soft Condensed Matter +cond-mat/0605119 Superconductivity +cond-mat/0702255 Mesoscale and Nanoscale Physics +gr-qc/0612158 +hep-ph/9403268 Phenomenology +hep-th/0312110 Theory +hep-th/0509060 Theory +math/0412147 Geometric Topology +math/0505219 Geometric Topology +math/0508385 Group Theory +math/0608415 Group Theory +math/0610004 Symplectic Geometry +nucl-th/0601030 +physics/0507211 Instrumentation and Detectors +quant-ph/0507272 +0705.4332 Instrumentation and Detectors +0706.2832 Experiment +0709.1052 Phenomenology +0709.1350 Functional Analysis +0709.1909 Complex Variables +0709.4023 Theory +0710.4612 Superconductivity +0710.5204 Differential Geometry +0712.1078 Quantum Algebra +0712.1304 Superconductivity +0712.3955 Other Condensed Matter +0712.4139 Differential Geometry +0712.4298 Mesoscale and Nanoscale Physics +0801.4143 +0804.0771 Mesoscale and Nanoscale Physics +0804.2815 +0805.3165 Phenomenology +0806.0823 Optics +0806.4350 Phenomenology +0806.4901 +0806.4938 Classical Physics +0807.1250 +0807.1401 Superconductivity +0807.1460 Statistical Mechanics +0807.2338 +0807.3341 Mesoscale and Nanoscale Physics +0807.4225 +0807.4296 Mesoscale and Nanoscale Physics +0808.0090 Algebraic Geometry +0808.2165 +0808.2420 +0808.3520 Superconductivity +0809.0149 Atomic Physics +0809.2605 Quantum Algebra +0809.3400 Statistical Mechanics +0809.4090 +0810.1338 Superconductivity +0810.2307 Chemical Physics +0810.2812 Phenomenology +0810.4277 Superconductivity +0810.5322 +0811.3285 Materials Science +0811.4628 Group Theory +0812.0850 Superconductivity +0812.3217 Atomic Physics +0901.0489 Data Analysis, Statistics and Probability +0901.1054 Algebraic Geometry +0901.1148 +0901.1151 Group Theory +0901.1152 Artificial Intelligence +0901.1157 Complex Variables +0901.1162 Information Theory +0901.1164 Other Condensed Matter +0901.1170 Physics and Society +0901.1174 Commutative Algebra +0901.1177 Geophysics +0901.1179 +0901.1181 Other Computer Science +0901.1189 Mesoscale and Nanoscale Physics +0901.1190 Numerical Analysis +0901.1191 Materials Science +0901.1196 Commutative Algebra +0901.1199 Analysis of PDEs +0901.1201 Algebraic Geometry +0901.1202 Phenomenology +0901.1205 Algebraic Geometry +0901.1208 Commutative Algebra +0901.1209 Algebraic Geometry +0901.1218 Computational Finance +0901.1226 Analysis of PDEs +0901.1230 Programming Languages +0901.1231 Instrumentation and Detectors +0901.1232 Phenomenology +0901.1233 Functional Analysis +0901.1244 Information Theory +0901.1247 Dynamical Systems +0901.1248 Biomolecules +0901.1253 Materials Science +0901.1255 Combinatorics +0901.1257 Computers and Society +0901.1260 Biological Physics +0901.1261 Cellular Automata and Lattice Gases +0901.1263 Experiment +0901.1265 Phenomenology +0901.1266 Statistics Theory +0901.1270 General Physics +0901.1273 +0901.1278 +0901.1279 +0901.1283 Dynamical Systems +0901.1287 Number Theory +0901.1290 Algebraic Geometry +0901.1293 Algebraic Geometry +0901.1298 Combinatorics +0901.1302 +0901.1304 Mesoscale and Nanoscale Physics +0901.1307 Distributed, Parallel, and Cluster Computing +0901.1308 Probability +0901.1315 Statistical Finance +astro-ph/0702426 +gr-qc/0411098 +gr-qc/0611108 +hep-ph/0205006 Phenomenology +math/0410418 Differential Geometry +math/0505476 Differential Geometry +math/0606394 Differential Geometry +math/0606646 Combinatorics +math/0611015 Complex Variables +math/0612440 Differential Geometry +quant-ph/0703210 +0707.2339 +0709.4323 Methodology +0801.1504 Statistical Mechanics +0810.1483 Probability +0812.1409 +0901.4048 Theory +0905.3531 Phenomenology +0906.4279 Molecular Networks +0907.0413 Metric Geometry +0907.4018 Computation +0910.0839 +0910.5615 Theory +0911.0645 Populations and Evolution +0911.3125 Computational Engineering, Finance, and Science +0911.3608 Portfolio Management +0911.3745 +0911.3869 +0911.3885 Medical Physics +cond-mat/0407102 Materials Science +cond-mat/0510706 Materials Science +cond-mat/0606173 Mesoscale and Nanoscale Physics +cs/0702121 Other Computer Science +gr-qc/0612079 +0708.0523 Mesoscale and Nanoscale Physics +0711.0596 Rings and Algebras +0711.4365 Optics +0712.2752 Physics and Society +0804.1896 Algebraic Topology +0808.3653 Quantum Algebra +0809.0877 Disordered Systems and Neural Networks +0809.1179 Combinatorics +0810.3805 +0811.1247 Theory +0811.4244 Soft Condensed Matter +0812.1190 Theory +0901.0079 Theory +0901.1988 Information Theory +0901.2158 Algebraic Geometry +0901.2483 Information Theory +0901.4529 +0903.4959 Networking and Internet Architecture +cond-mat/0307742 Statistical Mechanics +cond-mat/0502299 Statistical Mechanics +cond-mat/0608611 Strongly Correlated Electrons +cond-mat/0703011 Strongly Correlated Electrons +hep-th/0606283 Theory +math/0511313 General Mathematics +math/0601441 Algebraic Topology +math/0605022 Logic +math/0703758 Representation Theory +0708.0634 Group Theory +0805.4288 Materials Science +0809.1878 Methodology +0811.4270 Materials Science +0812.0623 Differential Geometry +0901.4765 Representation Theory +0902.4486 Differential Geometry +0903.2307 Algebraic Topology +0904.4477 Statistical Mechanics +0905.1496 Mesoscale and Nanoscale Physics +0906.2101 +0906.3311 Operator Algebras +0907.0318 +0907.0901 Physics and Society +0907.3732 Strongly Correlated Electrons +0908.2081 Astrophysics of Galaxies +0908.3927 Operator Algebras +0908.4296 Other Condensed Matter +0909.0309 +0909.0491 Quantum Gases +0910.2252 Functional Analysis +0910.2289 Probability +0910.2384 Strongly Correlated Electrons +0910.3215 Theory +0910.3429 Theory +0910.4324 Fluid Dynamics +hep-ex/0305008 Experiment +nlin/0609071 Exactly Solvable and Integrable Systems +quant-ph/0609184 +0704.1660 +0705.2436 Commutative Algebra +0705.2441 Algebraic Geometry +0705.2613 +0706.2440 Algebraic Geometry +0706.2441 Algebraic Geometry +0707.2371 +0707.4640 +0708.1517 +0708.4385 +0709.3785 Algebraic Geometry +0710.0290 +0712.3268 +0801.2508 +0801.4256 Phenomenology +0803.3902 General Finance +0804.1309 Geometric Topology +0804.1450 +0805.3465 Analysis of PDEs +0805.4525 Theory +0806.0183 +0806.0546 +0806.3217 +0806.4383 Strongly Correlated Electrons +0807.0467 Superconductivity +0807.3317 General Topology +0808.1101 +0808.1409 Methodology +0808.2456 +0808.2548 Information Theory +0808.3652 Differential Geometry +0809.0430 +0809.5141 Statistical Mechanics +0810.1703 Classical Physics +0810.2488 Algebraic Geometry +0810.3832 +0811.4005 Phenomenology +0812.0814 +0812.1812 Populations and Evolution +0812.2391 Soft Condensed Matter +0812.3241 Statistical Mechanics +0812.3314 Atomic Physics +0901.2342 Strongly Correlated Electrons +0901.3047 Discrete Mathematics +0902.2743 +0902.3719 +0903.0414 Mesoscale and Nanoscale Physics +0903.0527 Mesoscale and Nanoscale Physics +0903.0801 Phenomenology +0903.2360 Cosmology and Nongalactic Astrophysics +0903.2478 Cosmology and Nongalactic Astrophysics +0903.3360 Statistical Mechanics +0903.3748 Mesoscale and Nanoscale Physics +0904.0780 +0904.1033 +0904.1846 Mesoscale and Nanoscale Physics +0904.1957 General Mathematics +0904.3551 +0904.4576 +0905.1445 Theory +0905.1506 +0905.1510 Theory +0905.1545 Theory +0905.1663 Theory +0905.1688 Combinatorics +0905.2666 Physics and Society +0905.3606 Optics +0905.4002 Superconductivity +0905.4420 Mesoscale and Nanoscale Physics +0905.4894 Superconductivity +0906.1604 High Energy Astrophysical Phenomena +0906.1664 Mesoscale and Nanoscale Physics +0906.1834 Phenomenology +0906.2030 Solar and Stellar Astrophysics +0906.3223 Superconductivity +0906.4029 Materials Science +0906.4299 Materials Science +0907.2949 Distributed, Parallel, and Cluster Computing +0907.3409 Analysis of PDEs +0907.3717 Algebraic Geometry +0907.4378 Geometric Topology +0907.4382 Chemical Physics +0907.4386 Populations and Evolution +0907.4397 +0907.4401 Experiment +0907.4404 +0907.4407 Strongly Correlated Electrons +0907.4411 Solar and Stellar Astrophysics +0907.4412 Algebraic Topology +0907.4425 Algebraic Geometry +0907.4426 Neural and Evolutionary Computing +0907.4431 +0907.4437 Algebraic Geometry +0907.4440 Optics +0907.4442 +0907.4447 Networking and Internet Architecture +0907.4449 Complex Variables +0907.4451 Materials Science +0907.4453 Cosmology and Nongalactic Astrophysics +0907.4459 Combinatorics +0907.4467 Astrophysics of Galaxies +0907.4468 Networking and Internet Architecture +0907.4472 Instrumentation and Methods for Astrophysics +0907.4474 Cosmology and Nongalactic Astrophysics +0907.4479 Probability +0907.4481 +0907.4483 Probability +0907.4486 Functional Analysis +0907.4487 Disordered Systems and Neural Networks +0907.4490 Complex Variables +0907.4501 +0907.4509 Artificial Intelligence +0907.4521 Information Theory +0907.4527 Number Theory +0907.4530 Operator Algebras +0907.4531 Logic in Computer Science +0907.4539 Dynamical Systems +0907.4547 Formal Languages and Automata Theory +0907.4548 Algebraic Geometry +0907.4549 Phenomenology +0907.4551 Disordered Systems and Neural Networks +0907.4554 Formal Languages and Automata Theory +0907.4556 Combinatorics +0907.4558 +0907.4559 Logic +0907.4561 Artificial Intelligence +0907.4568 Materials Science +0907.4574 Experiment +0907.4575 Experiment +0907.4576 Formal Languages and Automata Theory +0907.4581 Experiment +0907.4583 Combinatorics +0907.4586 Optics +0907.4591 Soft Condensed Matter +0907.4599 Dynamical Systems +0907.4601 Biomolecules +0907.4605 Group Theory +0907.4613 High Energy Astrophysical Phenomena +0907.4614 Phenomenology +0907.4615 High Energy Astrophysical Phenomena +0907.4618 Optics +0907.4621 High Energy Astrophysical Phenomena +0907.4622 Distributed, Parallel, and Cluster Computing +0907.4623 Statistical Mechanics +0907.4634 Mesoscale and Nanoscale Physics +0907.4640 Programming Languages +0907.4645 Operator Algebras +0907.4648 Complex Variables +0907.4653 Information Theory +0907.4662 Optimization and Control +0907.4663 Optimization and Control +0907.4667 Combinatorics +0907.4689 Cosmology and Nongalactic Astrophysics +0907.4693 Cosmology and Nongalactic Astrophysics +0907.4694 +0907.4695 Numerical Analysis +0907.4701 General Mathematics +0907.4708 Superconductivity +0907.4711 Solar and Stellar Astrophysics +0907.4716 Methodology +0907.4721 Chemical Physics +0907.4724 Accelerator Physics +0907.4739 Quantum Gases +0907.4743 Cryptography and Security +acc-phys/9604002 Accelerator Physics +astro-ph/0001065 +astro-ph/0001156 +astro-ph/0005384 +astro-ph/0008135 +astro-ph/0011565 +astro-ph/0101485 +astro-ph/0107324 +astro-ph/0108292 +astro-ph/0112051 +astro-ph/0210590 +astro-ph/0405624 +astro-ph/0503594 +astro-ph/0504376 +astro-ph/0504456 +astro-ph/0508299 +astro-ph/0511644 +astro-ph/0601538 +astro-ph/0602228 +astro-ph/0603094 +astro-ph/0603759 +astro-ph/0610543 +astro-ph/0610686 +astro-ph/0702208 +astro-ph/9510004 +astro-ph/9605064 +astro-ph/9607078 +astro-ph/9610117 +astro-ph/9611207 +astro-ph/9704001 +astro-ph/9709019 +astro-ph/9710350 +astro-ph/9801221 +astro-ph/9802003 +astro-ph/9809307 +astro-ph/9901351 +astro-ph/9904043 +astro-ph/9905182 +astro-ph/9908363 +astro-ph/9909434 +astro-ph/9910441 +cond-mat/0607022 Mesoscale and Nanoscale Physics +hep-ex/9709015 Experiment +hep-ph/0506077 Phenomenology +hep-ph/9206242 Phenomenology +hep-ph/9207264 Phenomenology +hep-ph/9311217 Phenomenology +hep-ph/9311344 Phenomenology +hep-ph/9401320 Phenomenology +hep-ph/9411240 Phenomenology +hep-ph/9708278 Phenomenology +hep-ph/9806489 Phenomenology +hep-th/9207061 Theory +math/0104062 Algebraic Geometry +math/0108089 Algebraic Geometry +math/0212090 Algebraic Geometry +math/0308247 Algebraic Geometry +math/0406298 Differential Geometry +math/0409404 Algebraic Geometry +math/0505148 Algebraic Geometry +math/0508553 Representation Theory +math/0605145 Operator Algebras +nucl-th/0511025 +nucl-th/9310010 +physics/0501120 Atomic Physics +physics/0503196 Atomic Physics +quant-ph/0104024 +quant-ph/0107146 +quant-ph/0108084 +quant-ph/0202126 +quant-ph/0203119 +quant-ph/0205183 +quant-ph/0210079 +quant-ph/0210081 +quant-ph/0210082 +quant-ph/0303076 +quant-ph/0306073 +quant-ph/0306074 +quant-ph/0306075 +quant-ph/0306180 +quant-ph/0309172 +quant-ph/0409189 +quant-ph/0409190 +quant-ph/0409191 +quant-ph/0409192 +quant-ph/0502136 +quant-ph/0507259 +quant-ph/0507260 +quant-ph/0509027 +quant-ph/0511123 +quant-ph/0511265 +quant-ph/0608166 +quant-ph/0701191 +quant-ph/0702118 +0704.3422 Differential Geometry +0706.0255 Differential Geometry +0706.3964 Metric Geometry +0707.4098 Statistics Theory +0708.3935 Mesoscale and Nanoscale Physics +0712.0205 Statistical Mechanics +0712.3478 Classical Analysis and ODEs +0803.4026 Statistics Theory +0803.4385 Statistical Mechanics +0804.0744 Differential Geometry +0804.3328 Group Theory +0804.4170 Algebraic Geometry +0807.3476 Algebraic Geometry +0807.4607 Mesoscale and Nanoscale Physics +0807.4700 Probability +0808.0799 Statistical Mechanics +0808.2116 Probability +0808.2947 +0808.3016 Superconductivity +0809.1519 +0809.4704 +0810.3914 Superconductivity +0810.3931 +0810.3964 Popular Physics +0811.1391 Strongly Correlated Electrons +0811.1572 +0812.0132 Theory +0812.0787 +0812.1074 Atmospheric and Oceanic Physics +0812.4308 +0901.3502 Mesoscale and Nanoscale Physics +0901.4108 Solar and Stellar Astrophysics +0901.4142 Experiment +0901.4837 High Energy Astrophysical Phenomena +0902.0111 High Energy Astrophysical Phenomena +0902.1607 +0902.4702 +0903.2618 Experiment +0903.3272 Strongly Correlated Electrons +0903.3839 Algebraic Geometry +0903.4710 Earth and Planetary Astrophysics +0904.0987 +0904.1120 +0904.1169 +0904.2478 Optics +0904.3388 Strongly Correlated Electrons +0905.0883 Phenomenology +0905.1143 Phenomenology +0905.1982 Experiment +0905.2705 Theory +0905.3044 Theory +0905.3047 Theory +0905.3574 Symplectic Geometry +0905.4397 Phenomenology +0906.0158 Quantum Algebra +0906.0463 +0906.0518 Experiment +0907.0215 +0907.0495 +0907.1575 Strongly Correlated Electrons +0907.5157 Optics +0908.0843 Differential Geometry +0908.0862 Instrumentation and Methods for Astrophysics +0908.1605 Logic +0908.2470 Commutative Algebra +0908.2634 Materials Science +0908.2783 Symplectic Geometry +0908.3222 Probability +0908.3320 +0908.3348 Materials Science +0908.3420 Functional Analysis +0908.3475 Algebraic Geometry +0908.3479 Solar and Stellar Astrophysics +0908.3482 Solar and Stellar Astrophysics +0908.3494 Cosmology and Nongalactic Astrophysics +0908.3495 Cosmology and Nongalactic Astrophysics +0908.3500 Astrophysics of Galaxies +0908.3511 Number Theory +0908.3513 Mesoscale and Nanoscale Physics +0908.3518 Solar and Stellar Astrophysics +0908.3519 Operating Systems +0908.3523 Human-Computer Interaction +0908.3526 +0908.3528 Probability +0908.3529 Data Analysis, Statistics and Probability +0908.3531 Optics +0908.3535 Strongly Correlated Electrons +0908.3536 Probability +0908.3537 Dynamical Systems +0908.3539 Information Theory +0908.3541 Information Theory +0908.3544 Information Theory +0908.3549 Information Theory +0908.3551 Information Theory +0908.3552 Information Theory +0908.3553 Statistics Theory +0908.3554 Algebraic Geometry +0908.3556 Statistics Theory +0908.3560 Disordered Systems and Neural Networks +0908.3562 Information Theory +0908.3572 Rings and Algebras +0908.3576 Statistics Theory +0908.3579 Genomics +0908.3587 Cryptography and Security +0908.3590 Differential Geometry +0908.3593 Statistics Theory +0908.3595 Differential Geometry +0908.3596 Statistics Theory +0908.3598 Differential Geometry +0908.3599 Astrophysics of Galaxies +0908.3600 Molecular Networks +0908.3601 Differential Geometry +0908.3602 Differential Geometry +0908.3605 Statistics Theory +0908.3606 Differential Geometry +0908.3610 Molecular Networks +0908.3615 Statistics Theory +0908.3618 Analysis of PDEs +0908.3619 Analysis of PDEs +0908.3623 Functional Analysis +0908.3625 +0908.3626 Lattice +0908.3630 Probability +0908.3634 Logic in Computer Science +0908.3641 Phenomenology +0908.3648 Numerical Analysis +0908.3649 High Energy Astrophysical Phenomena +0908.3650 Programming Languages +0908.3652 Data Structures and Algorithms +0908.3653 Chaotic Dynamics +0908.3656 +0908.3657 Cosmology and Nongalactic Astrophysics +0908.3658 Cosmology and Nongalactic Astrophysics +0908.3659 Cosmology and Nongalactic Astrophysics +0908.3667 Number Theory +0908.3671 Group Theory +astro-ph/0509656 +astro-ph/0701480 +gr-qc/0702083 +hep-lat/0110123 Lattice +hep-lat/0412010 Lattice +hep-ph/9208236 Phenomenology +hep-th/0606223 Theory +hep-th/9810155 Theory +math/0104227 Differential Geometry +math/0203138 Differential Geometry +math/0210302 Differential Geometry +math/0301350 Differential Geometry +math/0312318 Differential Geometry +math/0409002 Algebraic Geometry +math/0409187 Differential Geometry +math/0507383 Differential Geometry +math/0602398 Algebraic Geometry +math/0611503 Functional Analysis +math/0612491 Differential Geometry +math/0703588 Classical Analysis and ODEs +nucl-th/0608063 +physics/0408026 Geophysics +0704.0600 Combinatorics +0704.1526 Quantum Algebra +0705.0038 Combinatorics +0705.0042 Combinatorics +0706.3925 Phenomenology +0706.3926 Phenomenology +0706.3929 +0706.3930 +0706.3931 Phenomenology +0707.3313 Representation Theory +0708.3142 General Physics +0710.0052 Classical Analysis and ODEs +0711.4690 +0711.4695 +0712.4356 Algebraic Geometry +0801.0940 +0802.2199 Phenomenology +0803.0953 +0804.3212 +0805.3125 Theory +0805.3717 Strongly Correlated Electrons +0806.3036 Dynamical Systems +0808.2893 Algebraic Geometry +0809.1822 Theory +0809.4499 +0810.0292 Superconductivity +0810.1458 +0810.1727 Phenomenology +0810.4942 Phenomenology +0811.1012 Adaptation and Self-Organizing Systems +0811.1030 Phenomenology +0811.3868 +0812.0891 +0901.0682 Algebraic Geometry +0902.0290 Theory +0903.0904 Theory +0903.3793 Lattice +0903.4407 +0903.4715 Phenomenology +0903.5367 +0904.0032 Phenomenology +0904.3758 Phenomenology +0904.4273 Superconductivity +0904.4466 Theory +0905.0503 Phenomenology +0905.0543 +0905.1337 Phenomenology +0905.1470 Statistical Mechanics +0905.1625 Phenomenology +0905.2388 Rings and Algebras +0905.2810 Phenomenology +0905.2966 Cosmology and Nongalactic Astrophysics +0905.3273 +0905.3547 Quantum Gases +0905.4346 Phenomenology +0905.4632 Statistical Mechanics +0905.4749 Phenomenology +0906.0538 Phenomenology +0906.0713 Theory +0906.0961 Soft Condensed Matter +0906.1445 Phenomenology +0906.1952 Theory +0906.2488 +0906.2813 Lattice +0906.2947 Cryptography and Security +0906.3388 Phenomenology +0906.3516 Phenomenology +0906.4545 Cosmology and Nongalactic Astrophysics +0906.5175 Phenomenology +0906.5611 Other Condensed Matter +0907.0168 +0907.0662 Theory +0907.0721 Soft Condensed Matter +0907.0728 Phenomenology +0907.0966 Phenomenology +0907.1463 Astrophysics of Galaxies +0907.1828 Theory +0907.1918 Phenomenology +0907.2873 High Energy Astrophysical Phenomena +0907.2972 Superconductivity +0907.2995 Mesoscale and Nanoscale Physics +0907.3423 +0907.3436 +0907.3969 Theory +0907.4045 Algebraic Geometry +0907.4123 Phenomenology +0907.4616 High Energy Astrophysical Phenomena +0907.4946 Phenomenology +0907.5090 Phenomenology +0907.5558 Cosmology and Nongalactic Astrophysics +0907.5568 Phenomenology +0908.0483 Differential Geometry +0908.0960 +0908.1559 Probability +0908.2175 Phenomenology +0908.3034 Theory +0908.3065 Theory +0908.4115 Materials Science +0909.0189 Biomolecules +0909.0278 Biomolecules +0909.1495 Phenomenology +0909.1894 Disordered Systems and Neural Networks +0909.2595 Phenomenology +0909.4350 Classical Analysis and ODEs +0909.4638 Differential Geometry +0909.5132 Probability +0909.5492 +0909.5598 Materials Science +0910.1679 Superconductivity +0910.2560 Theory +0910.4256 +0910.4400 Functional Analysis +0910.4812 +0910.5676 Differential Geometry +0911.0412 Computation +0911.1155 General Physics +0911.1228 General Physics +0911.1375 Analysis of PDEs +0911.1383 Information Theory +0911.1386 Artificial Intelligence +0911.1394 General Physics +0911.1395 +0911.1397 General Physics +0911.1398 Algebraic Geometry +0911.1401 General Physics +0911.1404 Physics and Society +0911.1421 +0911.1422 Strongly Correlated Electrons +0911.1423 Biological Physics +0911.1430 +0911.1434 Number Theory +0911.1436 Physics and Society +0911.1437 Physics and Society +0911.1438 Physics and Society +0911.1439 Physics and Society +0911.1440 Physics and Society +0911.1441 Functional Analysis +0911.1445 Physics and Society +0911.1447 Physics and Society +0911.1449 Physics and Society +0911.1451 Computation and Language +0911.1454 Physics and Society +0911.1455 Physics and Society +0911.1456 Physics and Society +0911.1458 +0911.1460 Symplectic Geometry +0911.1462 Probability +0911.1464 Experiment +0911.1469 Experiment +0911.1470 Algebraic Geometry +0911.1471 Classical Analysis and ODEs +0911.1472 Applications +0911.1474 Functional Analysis +0911.1475 Number Theory +0911.1483 Solar and Stellar Astrophysics +0911.1484 Group Theory +0911.1486 Optics +0911.1488 Phenomenology +0911.1491 Algebraic Geometry +0911.1494 Software Engineering +0911.1495 Software Engineering +0911.1496 Software Engineering +0911.1500 Numerical Analysis +0911.1502 Networking and Internet Architecture +0911.1504 Networking and Internet Architecture +0911.1505 Mesoscale and Nanoscale Physics +0911.1508 Networking and Internet Architecture +0911.1510 Networking and Internet Architecture +0911.1512 Networking and Internet Architecture +0911.1514 Computers and Society +0911.1515 Pattern Formation and Solitons +0911.1519 Statistical Mechanics +0911.1520 Computers and Society +0911.1521 Complex Variables +0911.1524 Superconductivity +0911.1538 Dynamical Systems +0911.1539 Mesoscale and Nanoscale Physics +0911.1548 Analysis of PDEs +0911.1549 Solar and Stellar Astrophysics +0911.1564 Information Theory +0911.1566 Instrumentation and Detectors +0911.1573 Exactly Solvable and Integrable Systems +0911.1575 Probability +0911.1588 Geometric Topology +0911.1590 Analysis of PDEs +0911.1594 General Physics +0911.1596 +0911.1604 +0911.1607 +0911.1608 Solar and Stellar Astrophysics +0911.1612 Cosmology and Nongalactic Astrophysics +0911.1614 Solar and Stellar Astrophysics +0911.1615 Representation Theory +0911.1616 Statistical Mechanics +0911.1618 Representation Theory +0911.1619 Computer Science and Game Theory +0911.1620 Rings and Algebras +0911.1632 Soft Condensed Matter +0911.1633 Chaotic Dynamics +0911.1638 Algebraic Geometry +0911.1641 +0911.1645 +0911.1647 Human-Computer Interaction +0911.1649 Quantum Algebra +0911.1658 +0911.1662 Pricing of Securities +0911.1663 +0911.1666 Cosmology and Nongalactic Astrophysics +0911.1670 Algebraic Geometry +0911.1671 Spectral Theory +0911.1672 Computational Engineering, Finance, and Science +0911.1677 Logic +0911.1680 Theory +0911.1683 Optics +0911.1684 Statistics Theory +0911.1685 Robotics +0911.1690 +0911.1702 Functional Analysis +0911.1703 Chaotic Dynamics +0911.1706 Classical Analysis and ODEs +0911.1707 Artificial Intelligence +0911.1710 Symplectic Geometry +0911.1713 Combinatorics +0911.1715 Atomic Physics +0911.1726 Analysis of PDEs +0911.1731 Biological Physics +0911.1734 Group Theory +0911.1739 Computational Complexity +0911.1743 Information Theory +0911.1745 Information Theory +0911.1752 Mesoscale and Nanoscale Physics +0911.1755 General Mathematics +0911.1759 Computational Physics +0911.1761 +adap-org/9704003 Adaptation and Self-Organizing Systems +astro-ph/0306356 +astro-ph/0306357 +astro-ph/0306359 +astro-ph/0306360 +astro-ph/0306361 +astro-ph/0306362 +astro-ph/0306364 +astro-ph/0306369 +astro-ph/0306370 +astro-ph/0306373 +astro-ph/0306374 +astro-ph/0306375 +astro-ph/0306376 +astro-ph/0306377 +astro-ph/0306378 +astro-ph/0306379 +astro-ph/0306380 +astro-ph/0306382 +astro-ph/0306384 +astro-ph/0306385 +astro-ph/0306386 +astro-ph/0306388 +astro-ph/0306389 +astro-ph/0306390 +astro-ph/0306392 +astro-ph/0306393 +astro-ph/0306394 +astro-ph/0306395 +astro-ph/0306397 +astro-ph/0306398 +astro-ph/0306399 +astro-ph/0306400 +astro-ph/0306401 +astro-ph/0306404 +astro-ph/0306405 +astro-ph/0306406 +astro-ph/0306407 +astro-ph/0306410 +astro-ph/0306412 +astro-ph/0306413 +astro-ph/0306415 +astro-ph/0306416 +astro-ph/0306419 +astro-ph/0306420 +astro-ph/0306421 +astro-ph/0306422 +astro-ph/0306423 +astro-ph/0306424 +astro-ph/0306426 +astro-ph/0306428 +astro-ph/0306429 +astro-ph/0306431 +astro-ph/0306433 +astro-ph/0306434 +astro-ph/0306435 +astro-ph/0306436 +astro-ph/0306437 +astro-ph/0306438 +astro-ph/0306439 +astro-ph/0306440 +astro-ph/0306441 +astro-ph/0306442 +astro-ph/0306445 +astro-ph/0306446 +astro-ph/0306447 +astro-ph/0306449 +astro-ph/0306451 +astro-ph/0306452 +astro-ph/0306453 +astro-ph/0306454 +astro-ph/0306455 +astro-ph/0306457 +astro-ph/0306460 +astro-ph/0306461 +astro-ph/0306462 +astro-ph/0306463 +astro-ph/0306464 +astro-ph/0306468 +astro-ph/0306470 +astro-ph/0306471 +astro-ph/0306472 +astro-ph/0306473 +astro-ph/0306474 +astro-ph/0306476 +astro-ph/0306479 +astro-ph/0306480 +astro-ph/0306482 +astro-ph/0306485 +astro-ph/0306486 +astro-ph/0306488 +astro-ph/0306489 +astro-ph/0306490 +astro-ph/0306491 +astro-ph/0306492 +astro-ph/0306493 +astro-ph/0306494 +astro-ph/0306495 +astro-ph/0306496 +astro-ph/0306497 +astro-ph/0306500 +astro-ph/0306502 +astro-ph/0306506 +astro-ph/0306507 +astro-ph/0306508 +astro-ph/0306510 +astro-ph/0306511 +astro-ph/0306512 +astro-ph/0306513 +astro-ph/0306514 +astro-ph/0306516 +astro-ph/0306517 +astro-ph/0306518 +astro-ph/0306519 +astro-ph/0306520 +astro-ph/0306521 +astro-ph/0306524 +astro-ph/0306526 +astro-ph/0306527 +astro-ph/0306529 +astro-ph/0306530 +astro-ph/0306531 +astro-ph/0306532 +astro-ph/0306533 +astro-ph/0306534 +astro-ph/0306535 +astro-ph/0306537 +astro-ph/0306538 +astro-ph/0306539 +astro-ph/0306540 +astro-ph/0306541 +astro-ph/0306542 +astro-ph/0306543 +astro-ph/0306544 +astro-ph/0306545 +astro-ph/0306546 +astro-ph/0306547 +astro-ph/0306548 +astro-ph/0306550 +astro-ph/0306551 +astro-ph/0306552 +astro-ph/0306555 +astro-ph/0306556 +astro-ph/0306558 +astro-ph/0306559 +astro-ph/0306560 +astro-ph/0306562 +astro-ph/0306565 +astro-ph/0306566 +astro-ph/0306568 +astro-ph/0306569 +astro-ph/0306570 +astro-ph/0306571 +astro-ph/0306572 +astro-ph/0306576 +astro-ph/0306577 +astro-ph/0306578 +astro-ph/0306579 +astro-ph/0306580 +astro-ph/0306583 +astro-ph/0306584 +astro-ph/0306585 +astro-ph/0306586 +astro-ph/0306587 +astro-ph/0306590 +astro-ph/0306591 +astro-ph/0306592 +astro-ph/0306593 +astro-ph/0306594 +astro-ph/0306595 +astro-ph/0306597 +astro-ph/0306598 +astro-ph/0306599 +astro-ph/0306600 +astro-ph/0306601 +astro-ph/0306602 +astro-ph/0306603 +astro-ph/0306604 +astro-ph/0306605 +astro-ph/0306606 +astro-ph/0306608 +astro-ph/0306609 +astro-ph/0306610 +astro-ph/0306614 +astro-ph/0306616 +astro-ph/0306618 +astro-ph/0306619 +astro-ph/0306620 +astro-ph/0306621 +astro-ph/0306622 +astro-ph/0306623 +astro-ph/0306625 +astro-ph/0306626 +astro-ph/0306627 +astro-ph/0306628 +astro-ph/0306630 +astro-ph/0306631 +astro-ph/0306632 +astro-ph/0307002 +astro-ph/0307004 +astro-ph/0307006 +astro-ph/0307008 +astro-ph/0307009 +astro-ph/0307010 +astro-ph/0307011 +astro-ph/0307013 +astro-ph/0307014 +astro-ph/0307016 +astro-ph/0307017 +astro-ph/0307018 +astro-ph/0307020 +astro-ph/0307021 +astro-ph/0307022 +astro-ph/0307023 +astro-ph/0307024 +astro-ph/0307025 +astro-ph/0307028 +astro-ph/0307030 +astro-ph/0307031 +astro-ph/0307032 +astro-ph/0307033 +astro-ph/0307036 +astro-ph/0307037 +astro-ph/0307038 +astro-ph/0307040 +astro-ph/0307041 +astro-ph/0307043 +astro-ph/0307044 +astro-ph/0307045 +astro-ph/0307046 +astro-ph/0307047 +astro-ph/0307048 +astro-ph/0307049 +astro-ph/0307050 +astro-ph/0307051 +astro-ph/0307053 +astro-ph/0307055 +astro-ph/0307056 +astro-ph/0307058 +astro-ph/0307060 +astro-ph/0307061 +astro-ph/0307062 +astro-ph/0307063 +astro-ph/0307065 +astro-ph/0307066 +astro-ph/0307068 +astro-ph/0307070 +astro-ph/0307071 +astro-ph/0307074 +astro-ph/0307075 +astro-ph/0307076 +astro-ph/0307079 +astro-ph/0307080 +astro-ph/0307081 +astro-ph/0307083 +astro-ph/0307086 +astro-ph/0307087 +astro-ph/0307088 +astro-ph/0307089 +astro-ph/0307090 +astro-ph/0307093 +astro-ph/0307094 +astro-ph/0307095 +astro-ph/0307096 +astro-ph/0307097 +astro-ph/0307098 +astro-ph/0307099 +astro-ph/0307101 +astro-ph/0307102 +astro-ph/0307103 +astro-ph/0307105 +astro-ph/0307106 +astro-ph/0307107 +astro-ph/0307108 +astro-ph/0307109 +astro-ph/0307110 +astro-ph/0307111 +astro-ph/0307112 +astro-ph/0307113 +astro-ph/0307114 +astro-ph/0307117 +astro-ph/0307119 +astro-ph/0307120 +astro-ph/0307121 +astro-ph/0307122 +astro-ph/0307125 +astro-ph/0307126 +astro-ph/0307127 +astro-ph/0307129 +astro-ph/0307135 +astro-ph/0307138 +astro-ph/0307141 +astro-ph/0307142 +astro-ph/0307143 +astro-ph/0307144 +astro-ph/0307145 +astro-ph/0307147 +astro-ph/0307151 +astro-ph/0307154 +astro-ph/0307155 +astro-ph/0307156 +astro-ph/0307157 +astro-ph/0307158 +astro-ph/0307159 +astro-ph/0307160 +astro-ph/0307161 +astro-ph/0307162 +astro-ph/0307163 +astro-ph/0307164 +astro-ph/0307165 +astro-ph/0307167 +astro-ph/0307169 +astro-ph/0307170 +astro-ph/0307171 +astro-ph/0307172 +astro-ph/0307174 +astro-ph/0307176 +astro-ph/0307178 +astro-ph/0307179 +astro-ph/0307180 +astro-ph/0307181 +astro-ph/0307182 +astro-ph/0307183 +astro-ph/0307186 +astro-ph/0307187 +astro-ph/0307188 +astro-ph/0307189 +astro-ph/0307190 +astro-ph/0307191 +astro-ph/0307192 +astro-ph/0307194 +astro-ph/0307195 +astro-ph/0307196 +astro-ph/0307197 +astro-ph/0307199 +astro-ph/0307200 +astro-ph/0307201 +astro-ph/0307202 +astro-ph/0307203 +astro-ph/0307207 +astro-ph/0307209 +astro-ph/0307210 +astro-ph/0307211 +astro-ph/0307213 +astro-ph/0307215 +astro-ph/0307216 +astro-ph/0307217 +astro-ph/0307218 +astro-ph/0307220 +astro-ph/0307221 +astro-ph/0307223 +astro-ph/0307224 +astro-ph/0307225 +astro-ph/0307228 +astro-ph/0307229 +astro-ph/0307230 +astro-ph/0307232 +astro-ph/0307234 +astro-ph/0307235 +astro-ph/0307237 +astro-ph/0307241 +astro-ph/0307242 +astro-ph/0307243 +astro-ph/0307245 +astro-ph/0307246 +astro-ph/0307247 +astro-ph/0307250 +astro-ph/0307251 +astro-ph/0307252 +astro-ph/0307253 +astro-ph/0307254 +astro-ph/0307255 +astro-ph/0307256 +astro-ph/0307260 +astro-ph/0307261 +astro-ph/0307262 +astro-ph/0307264 +astro-ph/0307265 +astro-ph/0307267 +astro-ph/0307268 +astro-ph/0307270 +astro-ph/0307271 +astro-ph/0307272 +astro-ph/0307273 +astro-ph/0307274 +astro-ph/0307275 +astro-ph/0307276 +astro-ph/0307277 +astro-ph/0307279 +astro-ph/0307283 +astro-ph/0307286 +astro-ph/0307290 +astro-ph/0307292 +astro-ph/0307293 +astro-ph/0307294 +astro-ph/0307295 +astro-ph/0307296 +astro-ph/0307297 +astro-ph/0307298 +astro-ph/0307299 +astro-ph/0307300 +astro-ph/0307301 +astro-ph/0307302 +astro-ph/0307303 +astro-ph/0307304 +astro-ph/0307305 +astro-ph/0307306 +astro-ph/0307309 +astro-ph/0307310 +astro-ph/0307311 +astro-ph/0307312 +astro-ph/0307315 +astro-ph/0307316 +astro-ph/0307317 +astro-ph/0307318 +astro-ph/0307319 +astro-ph/0307320 +astro-ph/0307321 +astro-ph/0307322 +astro-ph/0307323 +astro-ph/0307324 +astro-ph/0307326 +astro-ph/0307327 +astro-ph/0307329 +astro-ph/0307330 +astro-ph/0307332 +astro-ph/0307333 +astro-ph/0307336 +astro-ph/0307337 +astro-ph/0307339 +astro-ph/0307340 +astro-ph/0307341 +astro-ph/0307342 +astro-ph/0307343 +astro-ph/0307344 +astro-ph/0307345 +astro-ph/0307349 +astro-ph/0307351 +astro-ph/0307354 +astro-ph/0307355 +astro-ph/0307356 +astro-ph/0307359 +astro-ph/0307360 +astro-ph/0307363 +astro-ph/0307364 +astro-ph/0307365 +astro-ph/0307366 +astro-ph/0307367 +astro-ph/0307368 +astro-ph/0307369 +astro-ph/0307370 +astro-ph/0307371 +astro-ph/0307372 +astro-ph/0307373 +astro-ph/0307374 +astro-ph/0307376 +astro-ph/0307380 +astro-ph/0307381 +astro-ph/0307382 +astro-ph/0307383 +astro-ph/0307384 +astro-ph/0307385 +astro-ph/0307386 +astro-ph/0307388 +astro-ph/0307389 +astro-ph/0307390 +astro-ph/0307392 +astro-ph/0307393 +astro-ph/0307395 +astro-ph/0307396 +astro-ph/0307397 +astro-ph/0307399 +astro-ph/0307400 +astro-ph/0307401 +astro-ph/0307402 +astro-ph/0307404 +astro-ph/0307405 +astro-ph/0307407 +astro-ph/0307408 +astro-ph/0307411 +astro-ph/0307412 +astro-ph/0307414 +astro-ph/0307415 +astro-ph/0307417 +astro-ph/0307419 +astro-ph/0307422 +astro-ph/0307424 +astro-ph/0307425 +astro-ph/0307426 +astro-ph/0307427 +astro-ph/0307428 +astro-ph/0307430 +astro-ph/0307431 +astro-ph/0307432 +astro-ph/0307434 +astro-ph/0307435 +astro-ph/0307436 +astro-ph/0307437 +astro-ph/0307441 +astro-ph/0307443 +astro-ph/0307445 +astro-ph/0307446 +astro-ph/0307448 +astro-ph/0307449 +astro-ph/0307451 +astro-ph/0307453 +astro-ph/0307454 +astro-ph/0307455 +astro-ph/0307456 +astro-ph/0307457 +astro-ph/0307458 +astro-ph/0307461 +astro-ph/0307463 +astro-ph/0307464 +astro-ph/0307466 +astro-ph/0307467 +astro-ph/0307468 +astro-ph/0307470 +astro-ph/0307472 +astro-ph/0307473 +astro-ph/0307474 +astro-ph/0307476 +astro-ph/0307479 +astro-ph/0307480 +astro-ph/0307482 +astro-ph/0307483 +astro-ph/0307486 +astro-ph/0307487 +astro-ph/0307488 +astro-ph/0307489 +astro-ph/0307490 +astro-ph/0307492 +astro-ph/0307493 +astro-ph/0307497 +astro-ph/0307500 +astro-ph/0307502 +astro-ph/0307503 +astro-ph/0307505 +astro-ph/0307506 +astro-ph/0307507 +astro-ph/0307508 +astro-ph/0307509 +astro-ph/0307510 +astro-ph/0307512 +astro-ph/0307513 +astro-ph/0307514 +astro-ph/0307516 +astro-ph/0307517 +astro-ph/0307521 +astro-ph/0307523 +astro-ph/0307525 +astro-ph/0307527 +astro-ph/0307529 +astro-ph/0307530 +astro-ph/0307533 +astro-ph/0307534 +astro-ph/0307537 +astro-ph/0307539 +astro-ph/0307540 +astro-ph/0307541 +astro-ph/0307542 +astro-ph/0307544 +astro-ph/0307545 +astro-ph/0307549 +astro-ph/0307550 +astro-ph/0307552 +astro-ph/0307553 +astro-ph/0307554 +astro-ph/0307555 +astro-ph/0307556 +astro-ph/0307558 +astro-ph/0307559 +astro-ph/0307560 +astro-ph/0307561 +astro-ph/0307563 +astro-ph/0307565 +astro-ph/0307566 +astro-ph/0308001 +astro-ph/0308003 +astro-ph/0308004 +astro-ph/0308005 +astro-ph/0308008 +astro-ph/0308009 +astro-ph/0308010 +astro-ph/0308011 +astro-ph/0308013 +astro-ph/0308015 +astro-ph/0308018 +astro-ph/0308019 +astro-ph/0308021 +astro-ph/0308024 +astro-ph/0308025 +astro-ph/0308026 +astro-ph/0308028 +astro-ph/0308030 +astro-ph/0308031 +astro-ph/0308032 +astro-ph/0308035 +astro-ph/0308036 +astro-ph/0308037 +astro-ph/0308038 +astro-ph/0308039 +astro-ph/0308040 +astro-ph/0308045 +astro-ph/0308046 +astro-ph/0308048 +astro-ph/0308049 +astro-ph/0308050 +astro-ph/0308051 +astro-ph/0308057 +astro-ph/0308058 +astro-ph/0308059 +astro-ph/0308060 +astro-ph/0308062 +astro-ph/0308063 +astro-ph/0308065 +astro-ph/0308066 +astro-ph/0308067 +astro-ph/0308070 +astro-ph/0308071 +astro-ph/0308072 +astro-ph/0308073 +astro-ph/0308074 +astro-ph/0308076 +astro-ph/0308078 +astro-ph/0308080 +astro-ph/0308081 +astro-ph/0308082 +astro-ph/0308083 +astro-ph/0308084 +astro-ph/0308085 +astro-ph/0308087 +astro-ph/0308088 +astro-ph/0308089 +astro-ph/0308091 +astro-ph/0308093 +astro-ph/0308096 +astro-ph/0308097 +astro-ph/0308098 +astro-ph/0308099 +astro-ph/0308101 +astro-ph/0308102 +astro-ph/0308104 +astro-ph/0308108 +astro-ph/0308109 +astro-ph/0308112 +astro-ph/0308113 +astro-ph/0308114 +astro-ph/0308115 +astro-ph/0308116 +astro-ph/0308117 +astro-ph/0308118 +astro-ph/0308119 +astro-ph/0308121 +astro-ph/0308122 +astro-ph/0308123 +astro-ph/0308124 +astro-ph/0308125 +astro-ph/0308126 +astro-ph/0308127 +astro-ph/0308128 +astro-ph/0308129 +astro-ph/0308130 +astro-ph/0308131 +astro-ph/0308132 +astro-ph/0308133 +astro-ph/0308138 +astro-ph/0308139 +astro-ph/0308140 +astro-ph/0308143 +astro-ph/0308144 +astro-ph/0308145 +astro-ph/0308146 +astro-ph/0308147 +astro-ph/0308148 +astro-ph/0308149 +astro-ph/0308150 +astro-ph/0308151 +astro-ph/0308152 +astro-ph/0308153 +astro-ph/0308157 +astro-ph/0308160 +astro-ph/0308163 +astro-ph/0308164 +astro-ph/0308166 +astro-ph/0308167 +astro-ph/0308168 +astro-ph/0308170 +astro-ph/0308173 +astro-ph/0308174 +astro-ph/0308176 +astro-ph/0308177 +astro-ph/0308180 +astro-ph/0308181 +astro-ph/0308182 +astro-ph/0308183 +astro-ph/0308184 +astro-ph/0308188 +astro-ph/0308189 +astro-ph/0308190 +astro-ph/0308191 +astro-ph/0308192 +astro-ph/0308193 +astro-ph/0308195 +astro-ph/0308198 +astro-ph/0308200 +astro-ph/0308201 +astro-ph/0308202 +astro-ph/0308203 +astro-ph/0308205 +astro-ph/0308206 +astro-ph/0308208 +astro-ph/0308210 +astro-ph/0308211 +astro-ph/0308212 +astro-ph/0308213 +astro-ph/0308215 +astro-ph/0308216 +astro-ph/0308217 +astro-ph/0308218 +astro-ph/0308219 +astro-ph/0308220 +astro-ph/0308221 +astro-ph/0308222 +astro-ph/0308223 +astro-ph/0308224 +astro-ph/0308225 +astro-ph/0308229 +astro-ph/0308230 +astro-ph/0308231 +astro-ph/0308233 +astro-ph/0308235 +astro-ph/0308236 +astro-ph/0308238 +astro-ph/0308239 +astro-ph/0308242 +astro-ph/0308244 +astro-ph/0308245 +astro-ph/0308246 +astro-ph/0308247 +astro-ph/0308248 +astro-ph/0308249 +astro-ph/0308251 +astro-ph/0308253 +astro-ph/0308254 +astro-ph/0308256 +astro-ph/0308257 +astro-ph/0308258 +astro-ph/0308261 +astro-ph/0308262 +astro-ph/0308264 +astro-ph/0308267 +astro-ph/0308268 +astro-ph/0308271 +astro-ph/0308272 +astro-ph/0308274 +astro-ph/0308275 +astro-ph/0308276 +astro-ph/0308277 +astro-ph/0308278 +astro-ph/0308279 +astro-ph/0308280 +astro-ph/0308281 +astro-ph/0308282 +astro-ph/0308284 +astro-ph/0308285 +astro-ph/0308287 +astro-ph/0308288 +astro-ph/0308290 +astro-ph/0308291 +astro-ph/0308292 +astro-ph/0308294 +astro-ph/0308295 +astro-ph/0308296 +astro-ph/0308297 +astro-ph/0308299 +astro-ph/0308300 +astro-ph/0308303 +astro-ph/0308306 +astro-ph/0308307 +astro-ph/0308308 +astro-ph/0308309 +astro-ph/0308310 +astro-ph/0308312 +astro-ph/0308314 +astro-ph/0308316 +astro-ph/0308317 +astro-ph/0308318 +astro-ph/0308320 +astro-ph/0308322 +astro-ph/0308326 +astro-ph/0308327 +astro-ph/0308329 +astro-ph/0308330 +astro-ph/0308331 +astro-ph/0308332 +astro-ph/0308333 +astro-ph/0308335 +astro-ph/0308337 +astro-ph/0308340 +astro-ph/0308342 +astro-ph/0308344 +astro-ph/0308345 +astro-ph/0308346 +astro-ph/0308347 +astro-ph/0308348 +astro-ph/0308349 +astro-ph/0308350 +astro-ph/0308351 +astro-ph/0308353 +astro-ph/0308354 +astro-ph/0308355 +astro-ph/0308356 +astro-ph/0308357 +astro-ph/0308361 +astro-ph/0308362 +astro-ph/0308363 +astro-ph/0308364 +astro-ph/0308366 +astro-ph/0308367 +astro-ph/0308368 +astro-ph/0308369 +astro-ph/0308372 +astro-ph/0308373 +astro-ph/0308375 +astro-ph/0308376 +astro-ph/0308380 +astro-ph/0308381 +astro-ph/0308382 +astro-ph/0308383 +astro-ph/0308384 +astro-ph/0308385 +astro-ph/0308386 +astro-ph/0308388 +astro-ph/0308389 +astro-ph/0308390 +astro-ph/0308393 +astro-ph/0308394 +astro-ph/0308395 +astro-ph/0308396 +astro-ph/0308398 +astro-ph/0308401 +astro-ph/0308404 +astro-ph/0308405 +astro-ph/0308406 +astro-ph/0308408 +astro-ph/0308409 +astro-ph/0308412 +astro-ph/0308413 +astro-ph/0308414 +astro-ph/0308415 +astro-ph/0308417 +astro-ph/0308419 +astro-ph/0308420 +astro-ph/0308421 +astro-ph/0308422 +astro-ph/0308423 +astro-ph/0308424 +astro-ph/0308426 +astro-ph/0308429 +astro-ph/0308430 +astro-ph/0308431 +astro-ph/0308432 +astro-ph/0308433 +astro-ph/0308434 +astro-ph/0308435 +astro-ph/0308437 +astro-ph/0308438 +astro-ph/0308439 +astro-ph/0308440 +astro-ph/0308441 +astro-ph/0308443 +astro-ph/0308444 +astro-ph/0308445 +astro-ph/0308446 +astro-ph/0308447 +astro-ph/0308452 +astro-ph/0308455 +astro-ph/0308456 +astro-ph/0308457 +astro-ph/0308458 +astro-ph/0308459 +astro-ph/0308460 +astro-ph/0308461 +astro-ph/0308465 +astro-ph/0308466 +astro-ph/0308467 +astro-ph/0308468 +astro-ph/0308470 +astro-ph/0308472 +astro-ph/0308473 +astro-ph/0308474 +astro-ph/0308475 +astro-ph/0308476 +astro-ph/0308477 +astro-ph/0308480 +astro-ph/0308481 +astro-ph/0308482 +astro-ph/0308484 +astro-ph/0308485 +astro-ph/0308486 +astro-ph/0308488 +astro-ph/0308489 +astro-ph/0308490 +astro-ph/0308491 +astro-ph/0308495 +astro-ph/0308496 +astro-ph/0308498 +astro-ph/0308500 +astro-ph/0308502 +astro-ph/0308503 +astro-ph/0308504 +astro-ph/0308505 +astro-ph/0308507 +astro-ph/0308509 +astro-ph/0308510 +astro-ph/0308513 +astro-ph/0308514 +astro-ph/0308515 +astro-ph/0308516 +astro-ph/0308517 +astro-ph/0308518 +astro-ph/0308519 +astro-ph/0308520 +astro-ph/0308521 +astro-ph/0308522 +astro-ph/0308524 +astro-ph/0308525 +astro-ph/0308526 +astro-ph/0308527 +astro-ph/0308528 +astro-ph/0308529 +astro-ph/0308531 +astro-ph/0308535 +astro-ph/0308536 +astro-ph/0308539 +astro-ph/0308540 +astro-ph/0308541 +astro-ph/0308542 +astro-ph/0308545 +astro-ph/0308546 +astro-ph/0308547 +astro-ph/0309001 +astro-ph/0309003 +astro-ph/0309009 +astro-ph/0309011 +astro-ph/0309012 +astro-ph/0309014 +astro-ph/0309015 +astro-ph/0309016 +astro-ph/0309017 +astro-ph/0309018 +astro-ph/0309019 +astro-ph/0309020 +astro-ph/0309021 +astro-ph/0309023 +astro-ph/0309025 +astro-ph/0309026 +astro-ph/0309027 +astro-ph/0309028 +astro-ph/0309029 +astro-ph/0309030 +astro-ph/0309031 +astro-ph/0309032 +astro-ph/0309033 +astro-ph/0309035 +astro-ph/0309036 +astro-ph/0309037 +astro-ph/0309038 +astro-ph/0309039 +astro-ph/0309041 +astro-ph/0309042 +astro-ph/0309043 +astro-ph/0309045 +astro-ph/0309046 +astro-ph/0309047 +astro-ph/0309048 +astro-ph/0309049 +astro-ph/0309051 +astro-ph/0309052 +astro-ph/0309053 +astro-ph/0309054 +astro-ph/0309055 +astro-ph/0309057 +astro-ph/0309059 +astro-ph/0309060 +astro-ph/0309061 +astro-ph/0309062 +astro-ph/0309065 +astro-ph/0309066 +astro-ph/0309067 +astro-ph/0309068 +astro-ph/0309070 +astro-ph/0309071 +astro-ph/0309072 +astro-ph/0309076 +astro-ph/0309078 +astro-ph/0309079 +astro-ph/0309080 +astro-ph/0309081 +astro-ph/0309082 +astro-ph/0309083 +astro-ph/0309085 +astro-ph/0309086 +astro-ph/0309087 +astro-ph/0309088 +astro-ph/0309089 +astro-ph/0309091 +astro-ph/0309092 +astro-ph/0309093 +astro-ph/0309094 +astro-ph/0309095 +astro-ph/0309096 +astro-ph/0309097 +astro-ph/0309100 +astro-ph/0309101 +astro-ph/0309102 +astro-ph/0309103 +astro-ph/0309105 +astro-ph/0309107 +astro-ph/0309110 +astro-ph/0309114 +astro-ph/0309116 +astro-ph/0309117 +astro-ph/0309118 +astro-ph/0309123 +astro-ph/0309125 +astro-ph/0309126 +astro-ph/0309128 +astro-ph/0309129 +astro-ph/0309131 +astro-ph/0309132 +astro-ph/0309133 +astro-ph/0309135 +astro-ph/0309136 +astro-ph/0309137 +astro-ph/0309138 +astro-ph/0309140 +astro-ph/0309142 +astro-ph/0309143 +astro-ph/0309145 +astro-ph/0309149 +astro-ph/0309150 +astro-ph/0309151 +astro-ph/0309153 +astro-ph/0309154 +astro-ph/0309159 +astro-ph/0309160 +astro-ph/0309161 +astro-ph/0309162 +astro-ph/0309166 +astro-ph/0309167 +astro-ph/0309168 +astro-ph/0309171 +astro-ph/0309173 +astro-ph/0309174 +astro-ph/0309177 +astro-ph/0309178 +astro-ph/0309179 +astro-ph/0309180 +astro-ph/0309181 +astro-ph/0309182 +astro-ph/0309187 +astro-ph/0309188 +astro-ph/0309189 +astro-ph/0309190 +astro-ph/0309191 +astro-ph/0309192 +astro-ph/0309193 +astro-ph/0309194 +astro-ph/0309195 +astro-ph/0309196 +astro-ph/0309198 +astro-ph/0309199 +astro-ph/0309200 +astro-ph/0309202 +astro-ph/0309203 +astro-ph/0309206 +astro-ph/0309208 +astro-ph/0309209 +astro-ph/0309210 +astro-ph/0309212 +astro-ph/0309213 +astro-ph/0309215 +astro-ph/0309216 +astro-ph/0309218 +astro-ph/0309223 +astro-ph/0309225 +astro-ph/0309227 +astro-ph/0309229 +astro-ph/0309231 +astro-ph/0309232 +astro-ph/0309233 +astro-ph/0309234 +astro-ph/0309235 +astro-ph/0309237 +astro-ph/0309238 +astro-ph/0309239 +astro-ph/0309241 +astro-ph/0309242 +astro-ph/0309243 +astro-ph/0309245 +astro-ph/0309246 +astro-ph/0309247 +astro-ph/0309248 +astro-ph/0309251 +astro-ph/0309253 +astro-ph/0309254 +astro-ph/0309256 +astro-ph/0309258 +astro-ph/0309259 +astro-ph/0309260 +astro-ph/0309261 +astro-ph/0309263 +astro-ph/0309264 +astro-ph/0309265 +astro-ph/0309266 +astro-ph/0309267 +astro-ph/0309270 +astro-ph/0309271 +astro-ph/0309272 +astro-ph/0309273 +astro-ph/0309275 +astro-ph/0309276 +astro-ph/0309277 +astro-ph/0309278 +astro-ph/0309279 +astro-ph/0309282 +astro-ph/0309283 +astro-ph/0309285 +astro-ph/0309287 +astro-ph/0309288 +astro-ph/0309290 +astro-ph/0309291 +astro-ph/0309292 +astro-ph/0309293 +astro-ph/0309294 +astro-ph/0309295 +astro-ph/0309296 +astro-ph/0309297 +astro-ph/0309298 +astro-ph/0309299 +astro-ph/0309300 +astro-ph/0309302 +astro-ph/0309303 +astro-ph/0309304 +astro-ph/0309305 +astro-ph/0309306 +astro-ph/0309307 +astro-ph/0309309 +astro-ph/0309310 +astro-ph/0309311 +astro-ph/0309312 +astro-ph/0309314 +astro-ph/0309316 +astro-ph/0309317 +astro-ph/0309318 +astro-ph/0309321 +astro-ph/0309323 +astro-ph/0309331 +astro-ph/0309333 +astro-ph/0309335 +astro-ph/0309336 +astro-ph/0309337 +astro-ph/0309339 +astro-ph/0309340 +astro-ph/0309341 +astro-ph/0309344 +astro-ph/0309345 +astro-ph/0309346 +astro-ph/0309347 +astro-ph/0309348 +astro-ph/0309350 +astro-ph/0309351 +astro-ph/0309352 +astro-ph/0309353 +astro-ph/0309355 +astro-ph/0309358 +astro-ph/0309359 +astro-ph/0309360 +astro-ph/0309361 +astro-ph/0309362 +astro-ph/0309363 +astro-ph/0309364 +astro-ph/0309366 +astro-ph/0309367 +astro-ph/0309370 +astro-ph/0309371 +astro-ph/0309372 +astro-ph/0309373 +astro-ph/0309376 +astro-ph/0309377 +astro-ph/0309381 +astro-ph/0309383 +astro-ph/0309384 +astro-ph/0309390 +astro-ph/0309394 +astro-ph/0309396 +astro-ph/0309397 +astro-ph/0309399 +astro-ph/0309400 +astro-ph/0309401 +astro-ph/0309402 +astro-ph/0309411 +astro-ph/0309412 +astro-ph/0309415 +astro-ph/0309418 +astro-ph/0309424 +astro-ph/0309425 +astro-ph/0309426 +astro-ph/0309428 +astro-ph/0309429 +astro-ph/0309430 +astro-ph/0309431 +astro-ph/0309433 +astro-ph/0309434 +astro-ph/0309435 +astro-ph/0309436 +astro-ph/0309437 +astro-ph/0309441 +astro-ph/0309442 +astro-ph/0309445 +astro-ph/0309447 +astro-ph/0309448 +astro-ph/0309449 +astro-ph/0309450 +astro-ph/0309451 +astro-ph/0309452 +astro-ph/0309453 +astro-ph/0309455 +astro-ph/0309456 +astro-ph/0309458 +astro-ph/0309461 +astro-ph/0309462 +astro-ph/0309464 +astro-ph/0309467 +astro-ph/0309468 +astro-ph/0309469 +astro-ph/0309470 +astro-ph/0309471 +astro-ph/0309472 +astro-ph/0309473 +astro-ph/0309475 +astro-ph/0309479 +astro-ph/0309480 +astro-ph/0309483 +astro-ph/0309484 +astro-ph/0309487 +astro-ph/0309488 +astro-ph/0309493 +astro-ph/0309494 +astro-ph/0309497 +astro-ph/0309498 +astro-ph/0309500 +astro-ph/0309502 +astro-ph/0309507 +astro-ph/0309510 +astro-ph/0309511 +astro-ph/0309514 +astro-ph/0309515 +astro-ph/0309517 +astro-ph/0309518 +astro-ph/0309520 +astro-ph/0309521 +astro-ph/0309522 +astro-ph/0309523 +astro-ph/0309524 +astro-ph/0309525 +astro-ph/0309527 +astro-ph/0309529 +astro-ph/0309530 +astro-ph/0309532 +astro-ph/0309533 +astro-ph/0309534 +astro-ph/0309535 +astro-ph/0309536 +astro-ph/0309537 +astro-ph/0309539 +astro-ph/0309540 +astro-ph/0309541 +astro-ph/0309542 +astro-ph/0309544 +astro-ph/0309545 +astro-ph/0309546 +astro-ph/0309547 +astro-ph/0309550 +astro-ph/0309552 +astro-ph/0309554 +astro-ph/0309555 +astro-ph/0309558 +astro-ph/0309559 +astro-ph/0309560 +astro-ph/0309561 +astro-ph/0309562 +astro-ph/0309563 +astro-ph/0309564 +astro-ph/0309565 +astro-ph/0309568 +astro-ph/0309570 +astro-ph/0309572 +astro-ph/0309576 +astro-ph/0309578 +astro-ph/0309579 +astro-ph/0309581 +astro-ph/0309582 +astro-ph/0309583 +astro-ph/0309588 +astro-ph/0309589 +astro-ph/0309591 +astro-ph/0309592 +astro-ph/0309593 +astro-ph/0309594 +astro-ph/0309595 +astro-ph/0309597 +astro-ph/0309598 +astro-ph/0309599 +astro-ph/0309600 +astro-ph/0309604 +astro-ph/0309605 +astro-ph/0309606 +astro-ph/0309608 +astro-ph/0309611 +astro-ph/0309613 +astro-ph/0309614 +astro-ph/0309615 +astro-ph/0309616 +astro-ph/0309617 +astro-ph/0309618 +astro-ph/0309619 +astro-ph/0309620 +astro-ph/0309621 +astro-ph/0309625 +astro-ph/0309626 +astro-ph/0309632 +astro-ph/0309633 +astro-ph/0309634 +astro-ph/0309635 +astro-ph/0309639 +astro-ph/0309640 +astro-ph/0309641 +astro-ph/0309642 +astro-ph/0309643 +astro-ph/0309645 +astro-ph/0309646 +astro-ph/0309647 +astro-ph/0309648 +astro-ph/0309649 +astro-ph/0309650 +astro-ph/0309653 +astro-ph/0309654 +astro-ph/0309659 +astro-ph/0309660 +astro-ph/0309661 +astro-ph/0309663 +astro-ph/0309664 +astro-ph/0309667 +astro-ph/0309670 +astro-ph/0309671 +astro-ph/0309672 +astro-ph/0309673 +astro-ph/0309678 +astro-ph/0309680 +astro-ph/0309681 +astro-ph/0309685 +astro-ph/0309686 +astro-ph/0309687 +astro-ph/0309688 +astro-ph/0309689 +astro-ph/0309691 +astro-ph/0309692 +astro-ph/0309694 +astro-ph/0309697 +astro-ph/0309698 +astro-ph/0309699 +astro-ph/0309700 +astro-ph/0309701 +astro-ph/0309705 +astro-ph/0309706 +astro-ph/0309707 +astro-ph/0309708 +astro-ph/0309710 +astro-ph/0309715 +astro-ph/0309720 +astro-ph/0309722 +astro-ph/0309723 +astro-ph/0309725 +astro-ph/0309726 +astro-ph/0309727 +astro-ph/0309728 +astro-ph/0309729 +astro-ph/0309730 +astro-ph/0309731 +astro-ph/0309734 +astro-ph/0309735 +astro-ph/0309736 +astro-ph/0309737 +astro-ph/0309738 +astro-ph/0309741 +astro-ph/0309742 +astro-ph/0309743 +astro-ph/0309744 +astro-ph/0309745 +astro-ph/0309746 +astro-ph/0309747 +astro-ph/0309749 +astro-ph/0309754 +astro-ph/0309757 +astro-ph/0309759 +astro-ph/0309761 +astro-ph/0309763 +astro-ph/0309764 +astro-ph/0309766 +astro-ph/0309767 +astro-ph/0309768 +astro-ph/0309775 +astro-ph/0309776 +astro-ph/0309777 +astro-ph/0309780 +astro-ph/0309781 +astro-ph/0309782 +astro-ph/0309783 +astro-ph/0309786 +astro-ph/0309787 +astro-ph/0309788 +astro-ph/0309790 +astro-ph/0309792 +astro-ph/0309795 +astro-ph/0309796 +astro-ph/0309797 +astro-ph/0309798 +astro-ph/0309799 +astro-ph/0309800 +astro-ph/0309805 +astro-ph/0309806 +astro-ph/0309807 +astro-ph/0309808 +astro-ph/0309809 +astro-ph/0309810 +astro-ph/0309812 +astro-ph/0309814 +astro-ph/0309816 +astro-ph/0309819 +astro-ph/0309824 +astro-ph/0309825 +astro-ph/0309829 +astro-ph/0309832 +astro-ph/0309833 +astro-ph/0309835 +astro-ph/0310001 +astro-ph/0310002 +astro-ph/0310005 +astro-ph/0310006 +astro-ph/0310007 +astro-ph/0310009 +astro-ph/0310010 +astro-ph/0310013 +astro-ph/0310014 +astro-ph/0310017 +astro-ph/0310018 +astro-ph/0310019 +astro-ph/0310021 +astro-ph/0310024 +astro-ph/0310025 +astro-ph/0310029 +astro-ph/0310033 +astro-ph/0310035 +astro-ph/0310037 +astro-ph/0310038 +astro-ph/0310039 +astro-ph/0310040 +astro-ph/0310041 +astro-ph/0310044 +astro-ph/0310045 +astro-ph/0310048 +astro-ph/0310054 +astro-ph/0310055 +astro-ph/0310058 +astro-ph/0310059 +astro-ph/0310060 +astro-ph/0310061 +astro-ph/0310062 +astro-ph/0310063 +astro-ph/0310064 +astro-ph/0310067 +astro-ph/0310069 +astro-ph/0310071 +astro-ph/0310073 +astro-ph/0310077 +astro-ph/0310078 +astro-ph/0310079 +astro-ph/0310080 +astro-ph/0310081 +astro-ph/0310082 +astro-ph/0310083 +astro-ph/0310084 +astro-ph/0310085 +astro-ph/0310088 +astro-ph/0310089 +astro-ph/0310090 +astro-ph/0310092 +astro-ph/0310095 +astro-ph/0310097 +astro-ph/0310098 +astro-ph/0310100 +astro-ph/0310101 +astro-ph/0310103 +astro-ph/0310104 +astro-ph/0310105 +astro-ph/0310106 +astro-ph/0310107 +astro-ph/0310109 +astro-ph/0310110 +astro-ph/0310111 +astro-ph/0310113 +astro-ph/0310114 +astro-ph/0310115 +astro-ph/0310116 +astro-ph/0310117 +astro-ph/0310119 +astro-ph/0310121 +astro-ph/0310131 +astro-ph/0310132 +astro-ph/0310135 +astro-ph/0310136 +astro-ph/0310138 +astro-ph/0310141 +astro-ph/0310144 +astro-ph/0310146 +astro-ph/0310147 +astro-ph/0310149 +astro-ph/0310151 +astro-ph/0310152 +astro-ph/0310153 +astro-ph/0310155 +astro-ph/0310161 +astro-ph/0310164 +astro-ph/0310166 +astro-ph/0310168 +astro-ph/0310169 +astro-ph/0310170 +astro-ph/0310174 +astro-ph/0310175 +astro-ph/0310176 +astro-ph/0310183 +astro-ph/0310184 +astro-ph/0310185 +astro-ph/0310187 +astro-ph/0310191 +astro-ph/0310197 +astro-ph/0310201 +astro-ph/0310204 +astro-ph/0310205 +astro-ph/0310212 +astro-ph/0310218 +astro-ph/0310220 +astro-ph/0310221 +astro-ph/0310224 +astro-ph/0310226 +astro-ph/0310227 +astro-ph/0310230 +astro-ph/0310231 +astro-ph/0310233 +astro-ph/0310236 +astro-ph/0310237 +astro-ph/0310238 +astro-ph/0310240 +astro-ph/0310241 +astro-ph/0310242 +astro-ph/0310248 +astro-ph/0310250 +astro-ph/0310251 +astro-ph/0310252 +astro-ph/0310253 +astro-ph/0310254 +astro-ph/0310255 +astro-ph/0310256 +astro-ph/0310257 +astro-ph/0310258 +astro-ph/0310260 +astro-ph/0310261 +astro-ph/0310262 +astro-ph/0310264 +astro-ph/0310271 +astro-ph/0310272 +astro-ph/0310275 +astro-ph/0310276 +astro-ph/0310277 +astro-ph/0310278 +astro-ph/0310280 +astro-ph/0310281 +astro-ph/0310282 +astro-ph/0310283 +astro-ph/0310287 +astro-ph/0310291 +astro-ph/0310293 +astro-ph/0310301 +astro-ph/0310303 +astro-ph/0310304 +astro-ph/0310306 +astro-ph/0310307 +astro-ph/0310312 +astro-ph/0310313 +astro-ph/0310315 +astro-ph/0310316 +astro-ph/0310317 +astro-ph/0310320 +astro-ph/0310321 +astro-ph/0310322 +astro-ph/0310323 +astro-ph/0310327 +astro-ph/0310329 +astro-ph/0310332 +astro-ph/0310333 +astro-ph/0310335 +astro-ph/0310340 +astro-ph/0310341 +astro-ph/0310344 +astro-ph/0310346 +astro-ph/0310348 +astro-ph/0310351 +astro-ph/0310355 +astro-ph/0310359 +astro-ph/0310362 +astro-ph/0310363 +astro-ph/0310364 +astro-ph/0310365 +astro-ph/0310372 +astro-ph/0310375 +astro-ph/0310378 +astro-ph/0310381 +astro-ph/0310385 +astro-ph/0310388 +astro-ph/0310391 +astro-ph/0310394 +astro-ph/0310396 +astro-ph/0310399 +astro-ph/0310401 +astro-ph/0310402 +astro-ph/0310405 +astro-ph/0310406 +astro-ph/0310407 +astro-ph/0310410 +astro-ph/0310414 +astro-ph/0310415 +astro-ph/0310417 +astro-ph/0310418 +astro-ph/0310419 +astro-ph/0310420 +astro-ph/0310422 +astro-ph/0310423 +astro-ph/0310425 +astro-ph/0310427 +astro-ph/0310431 +astro-ph/0310432 +astro-ph/0310434 +astro-ph/0310437 +astro-ph/0310441 +astro-ph/0310442 +astro-ph/0310443 +astro-ph/0310446 +astro-ph/0310456 +astro-ph/0310461 +astro-ph/0310462 +astro-ph/0310463 +astro-ph/0310464 +astro-ph/0310465 +astro-ph/0310467 +astro-ph/0310468 +astro-ph/0310469 +astro-ph/0310470 +astro-ph/0310474 +astro-ph/0310475 +astro-ph/0310476 +astro-ph/0310479 +astro-ph/0310485 +astro-ph/0310489 +astro-ph/0310492 +astro-ph/0310493 +astro-ph/0310498 +astro-ph/0310499 +astro-ph/0310501 +astro-ph/0310503 +astro-ph/0310504 +astro-ph/0310505 +astro-ph/0310507 +astro-ph/0310508 +astro-ph/0310510 +astro-ph/0310512 +astro-ph/0310514 +astro-ph/0310516 +astro-ph/0310517 +astro-ph/0310518 +astro-ph/0310520 +astro-ph/0310521 +astro-ph/0310525 +astro-ph/0310527 +astro-ph/0310532 +astro-ph/0310536 +astro-ph/0310537 +astro-ph/0310542 +astro-ph/0310544 +astro-ph/0310548 +astro-ph/0310553 +astro-ph/0310555 +astro-ph/0310556 +astro-ph/0310563 +astro-ph/0310564 +astro-ph/0310567 +astro-ph/0310574 +astro-ph/0310576 +astro-ph/0310578 +astro-ph/0310580 +astro-ph/0310586 +astro-ph/0310590 +astro-ph/0310592 +astro-ph/0310593 +astro-ph/0310594 +astro-ph/0310598 +astro-ph/0310599 +astro-ph/0310600 +astro-ph/0310601 +astro-ph/0310604 +astro-ph/0310605 +astro-ph/0310607 +astro-ph/0310611 +astro-ph/0310612 +astro-ph/0310614 +astro-ph/0310615 +astro-ph/0310616 +astro-ph/0310620 +astro-ph/0310621 +astro-ph/0310624 +astro-ph/0310627 +astro-ph/0310628 +astro-ph/0310630 +astro-ph/0310633 +astro-ph/0310634 +astro-ph/0310635 +astro-ph/0310639 +astro-ph/0310641 +astro-ph/0310643 +astro-ph/0310644 +astro-ph/0310646 +astro-ph/0310651 +astro-ph/0310656 +astro-ph/0310657 +astro-ph/0310658 +astro-ph/0310660 +astro-ph/0310661 +astro-ph/0310663 +astro-ph/0310664 +astro-ph/0310665 +astro-ph/0310670 +astro-ph/0310673 +astro-ph/0310676 +astro-ph/0310677 +astro-ph/0310678 +astro-ph/0310679 +astro-ph/0310680 +astro-ph/0310681 +astro-ph/0310682 +astro-ph/0310684 +astro-ph/0310686 +astro-ph/0310687 +astro-ph/0310688 +astro-ph/0310689 +astro-ph/0310690 +astro-ph/0310691 +astro-ph/0310695 +astro-ph/0310697 +astro-ph/0310698 +astro-ph/0310701 +astro-ph/0310705 +astro-ph/0310711 +astro-ph/0310718 +astro-ph/0310719 +astro-ph/0310721 +astro-ph/0310722 +astro-ph/0310726 +astro-ph/0310728 +astro-ph/0310729 +astro-ph/0310732 +astro-ph/0310733 +astro-ph/0310737 +astro-ph/0310739 +astro-ph/0310740 +astro-ph/0310741 +astro-ph/0310742 +astro-ph/0310743 +astro-ph/0310744 +astro-ph/0310746 +astro-ph/0310747 +astro-ph/0310755 +astro-ph/0310758 +astro-ph/0310759 +astro-ph/0310761 +astro-ph/0310765 +astro-ph/0310769 +astro-ph/0310773 +astro-ph/0310774 +astro-ph/0310776 +astro-ph/0310778 +astro-ph/0310779 +astro-ph/0310782 +astro-ph/0310785 +astro-ph/0310786 +astro-ph/0310790 +astro-ph/0310791 +astro-ph/0310793 +astro-ph/0310794 +astro-ph/0310796 +astro-ph/0310800 +astro-ph/0310802 +astro-ph/0310804 +astro-ph/0310806 +astro-ph/0310808 +astro-ph/0310809 +astro-ph/0310810 +astro-ph/0310813 +astro-ph/0310816 +astro-ph/0310818 +astro-ph/0310819 +astro-ph/0310820 +astro-ph/0310821 +astro-ph/0310823 +astro-ph/0310825 +astro-ph/0310826 +astro-ph/0310827 +astro-ph/0310828 +astro-ph/0310830 +astro-ph/0310831 +astro-ph/0310835 +astro-ph/0310836 +astro-ph/0310841 +astro-ph/0310843 +astro-ph/0310844 +astro-ph/0310845 +astro-ph/0310846 +astro-ph/0310847 +astro-ph/0310851 +astro-ph/0310852 +astro-ph/0310853 +astro-ph/0310854 +astro-ph/0310855 +astro-ph/0310856 +astro-ph/0310861 +astro-ph/0310863 +astro-ph/0310864 +astro-ph/0310867 +astro-ph/0310869 +astro-ph/0310870 +astro-ph/0310871 +astro-ph/0310872 +astro-ph/0310873 +astro-ph/0310876 +astro-ph/0310878 +astro-ph/0310879 +astro-ph/0310882 +astro-ph/0310883 +astro-ph/0310887 +astro-ph/0310888 +astro-ph/0310889 +astro-ph/0310890 +astro-ph/0310893 +astro-ph/0310894 +astro-ph/0310896 +astro-ph/0310898 +astro-ph/0310902 +astro-ph/0310904 +astro-ph/0310906 +astro-ph/0310912 +astro-ph/0310915 +astro-ph/0310916 +astro-ph/0310917 +astro-ph/0311001 +astro-ph/0311003 +astro-ph/0311005 +astro-ph/0311006 +astro-ph/0311007 +astro-ph/0311009 +astro-ph/0311011 +astro-ph/0311014 +astro-ph/0311016 +astro-ph/0311018 +astro-ph/0311020 +astro-ph/0311021 +astro-ph/0311024 +astro-ph/0311025 +astro-ph/0311026 +astro-ph/0311029 +astro-ph/0311030 +astro-ph/0311034 +astro-ph/0311035 +astro-ph/0311040 +astro-ph/0311041 +astro-ph/0311049 +astro-ph/0311051 +astro-ph/0311054 +astro-ph/0311055 +astro-ph/0311056 +astro-ph/0311061 +astro-ph/0311064 +astro-ph/0311065 +astro-ph/0311068 +astro-ph/0311069 +astro-ph/0311070 +astro-ph/0311071 +astro-ph/0311077 +astro-ph/0311078 +astro-ph/0311079 +astro-ph/0311080 +astro-ph/0311081 +astro-ph/0311083 +astro-ph/0311084 +astro-ph/0311085 +astro-ph/0311087 +astro-ph/0311088 +astro-ph/0311091 +astro-ph/0311092 +astro-ph/0311094 +astro-ph/0311098 +astro-ph/0311099 +astro-ph/0311101 +astro-ph/0311103 +astro-ph/0311104 +astro-ph/0311106 +astro-ph/0311107 +astro-ph/0311109 +astro-ph/0311110 +astro-ph/0311112 +astro-ph/0311113 +astro-ph/0311115 +astro-ph/0311116 +astro-ph/0311118 +astro-ph/0311119 +astro-ph/0311120 +astro-ph/0311121 +astro-ph/0311123 +astro-ph/0311127 +astro-ph/0311128 +astro-ph/0311132 +astro-ph/0311133 +astro-ph/0311135 +astro-ph/0311137 +astro-ph/0311138 +astro-ph/0311139 +astro-ph/0311141 +astro-ph/0311142 +astro-ph/0311143 +astro-ph/0311147 +astro-ph/0311148 +astro-ph/0311149 +astro-ph/0311150 +astro-ph/0311151 +astro-ph/0311152 +astro-ph/0311154 +astro-ph/0311155 +astro-ph/0311156 +astro-ph/0311158 +astro-ph/0311161 +astro-ph/0311164 +astro-ph/0311166 +astro-ph/0311167 +astro-ph/0311168 +astro-ph/0311170 +astro-ph/0311171 +astro-ph/0311172 +astro-ph/0311174 +astro-ph/0311175 +astro-ph/0311176 +astro-ph/0311177 +astro-ph/0311178 +astro-ph/0311179 +astro-ph/0311181 +astro-ph/0311183 +astro-ph/0311188 +astro-ph/0311189 +astro-ph/0311190 +astro-ph/0311192 +astro-ph/0311194 +astro-ph/0311195 +astro-ph/0311200 +astro-ph/0311203 +astro-ph/0311204 +astro-ph/0311205 +astro-ph/0311208 +astro-ph/0311209 +astro-ph/0311210 +astro-ph/0311211 +astro-ph/0311212 +astro-ph/0311213 +astro-ph/0311214 +astro-ph/0311215 +astro-ph/0311219 +astro-ph/0311221 +astro-ph/0311222 +astro-ph/0311223 +astro-ph/0311224 +astro-ph/0311225 +astro-ph/0311226 +astro-ph/0311232 +astro-ph/0311233 +astro-ph/0311236 +astro-ph/0311237 +astro-ph/0311239 +astro-ph/0311241 +astro-ph/0311242 +astro-ph/0311243 +astro-ph/0311244 +astro-ph/0311246 +astro-ph/0311248 +astro-ph/0311249 +astro-ph/0311250 +astro-ph/0311251 +astro-ph/0311255 +astro-ph/0311256 +astro-ph/0311264 +astro-ph/0311265 +astro-ph/0311266 +astro-ph/0311267 +astro-ph/0311270 +astro-ph/0311271 +astro-ph/0311273 +astro-ph/0311274 +astro-ph/0311275 +astro-ph/0311276 +astro-ph/0311277 +astro-ph/0311279 +astro-ph/0311280 +astro-ph/0311281 +astro-ph/0311286 +astro-ph/0311289 +astro-ph/0311290 +astro-ph/0311291 +astro-ph/0311292 +astro-ph/0311293 +astro-ph/0311294 +astro-ph/0311295 +astro-ph/0311297 +astro-ph/0311298 +astro-ph/0311300 +astro-ph/0311301 +astro-ph/0311303 +astro-ph/0311307 +astro-ph/0311308 +astro-ph/0311309 +astro-ph/0311310 +astro-ph/0311313 +astro-ph/0311314 +astro-ph/0311315 +astro-ph/0311316 +astro-ph/0311317 +astro-ph/0311320 +astro-ph/0311322 +astro-ph/0311323 +astro-ph/0311324 +astro-ph/0311325 +astro-ph/0311326 +astro-ph/0311328 +astro-ph/0311329 +astro-ph/0311330 +astro-ph/0311331 +astro-ph/0311332 +astro-ph/0311333 +astro-ph/0311334 +astro-ph/0311335 +astro-ph/0311336 +astro-ph/0311338 +astro-ph/0311339 +astro-ph/0311341 +astro-ph/0311344 +astro-ph/0311346 +astro-ph/0311347 +astro-ph/0311349 +astro-ph/0311353 +astro-ph/0311354 +astro-ph/0311355 +astro-ph/0311356 +astro-ph/0311357 +astro-ph/0311360 +astro-ph/0311364 +astro-ph/0311365 +astro-ph/0311366 +astro-ph/0311367 +astro-ph/0311368 +astro-ph/0311372 +astro-ph/0311373 +astro-ph/0311375 +astro-ph/0311376 +astro-ph/0311377 +astro-ph/0311380 +astro-ph/0311382 +astro-ph/0311383 +astro-ph/0311384 +astro-ph/0311389 +astro-ph/0311390 +astro-ph/0311393 +astro-ph/0311395 +astro-ph/0311398 +astro-ph/0311399 +astro-ph/0311400 +astro-ph/0311401 +astro-ph/0311402 +astro-ph/0311404 +astro-ph/0311405 +astro-ph/0311406 +astro-ph/0311407 +astro-ph/0311410 +astro-ph/0311411 +astro-ph/0311412 +astro-ph/0311413 +astro-ph/0311414 +astro-ph/0311415 +astro-ph/0311416 +astro-ph/0311417 +astro-ph/0311420 +astro-ph/0311421 +astro-ph/0311422 +astro-ph/0311425 +astro-ph/0311426 +astro-ph/0311431 +astro-ph/0311432 +astro-ph/0311433 +astro-ph/0311434 +astro-ph/0311440 +astro-ph/0311441 +astro-ph/0311442 +astro-ph/0311445 +astro-ph/0311446 +astro-ph/0311447 +astro-ph/0311448 +astro-ph/0311450 +astro-ph/0311452 +astro-ph/0311453 +astro-ph/0311455 +astro-ph/0311456 +astro-ph/0311457 +astro-ph/0311458 +astro-ph/0311460 +astro-ph/0311461 +astro-ph/0311464 +astro-ph/0311466 +astro-ph/0311467 +astro-ph/0311470 +astro-ph/0311476 +astro-ph/0311477 +astro-ph/0311479 +astro-ph/0311482 +astro-ph/0311484 +astro-ph/0311485 +astro-ph/0311486 +astro-ph/0311490 +astro-ph/0311491 +astro-ph/0311492 +astro-ph/0311493 +astro-ph/0311495 +astro-ph/0311496 +astro-ph/0311497 +astro-ph/0311498 +astro-ph/0311499 +astro-ph/0311500 +astro-ph/0311501 +astro-ph/0311503 +astro-ph/0311506 +astro-ph/0311507 +astro-ph/0311509 +astro-ph/0311512 +astro-ph/0311513 +astro-ph/0311514 +astro-ph/0311515 +astro-ph/0311517 +astro-ph/0311519 +astro-ph/0311521 +astro-ph/0311523 +astro-ph/0311524 +astro-ph/0311525 +astro-ph/0311527 +astro-ph/0311529 +astro-ph/0311530 +astro-ph/0311536 +astro-ph/0311540 +astro-ph/0311542 +astro-ph/0311543 +astro-ph/0311545 +astro-ph/0311546 +astro-ph/0311548 +astro-ph/0311549 +astro-ph/0311550 +astro-ph/0311551 +astro-ph/0311553 +astro-ph/0311554 +astro-ph/0311555 +astro-ph/0311557 +astro-ph/0311559 +astro-ph/0311560 +astro-ph/0311562 +astro-ph/0311563 +astro-ph/0311564 +astro-ph/0311565 +astro-ph/0311566 +astro-ph/0311568 +astro-ph/0311569 +astro-ph/0311570 +astro-ph/0311571 +astro-ph/0311573 +astro-ph/0311577 +astro-ph/0311578 +astro-ph/0311580 +astro-ph/0311581 +astro-ph/0311583 +astro-ph/0311584 +astro-ph/0311585 +astro-ph/0311587 +astro-ph/0311590 +astro-ph/0311591 +astro-ph/0311592 +astro-ph/0311593 +astro-ph/0311594 +astro-ph/0311595 +astro-ph/0311598 +astro-ph/0311599 +astro-ph/0311601 +astro-ph/0311604 +astro-ph/0311605 +astro-ph/0311606 +astro-ph/0311607 +astro-ph/0311608 +astro-ph/0311610 +astro-ph/0311613 +astro-ph/0311616 +astro-ph/0311617 +astro-ph/0311622 +astro-ph/0311624 +astro-ph/0311625 +astro-ph/0311628 +astro-ph/0311629 +astro-ph/0311632 +astro-ph/0312003 +astro-ph/0312004 +astro-ph/0312005 +astro-ph/0312006 +astro-ph/0312008 +astro-ph/0312010 +astro-ph/0312011 +astro-ph/0312015 +astro-ph/0312016 +astro-ph/0312018 +astro-ph/0312021 +astro-ph/0312022 +astro-ph/0312023 +astro-ph/0312028 +astro-ph/0312029 +astro-ph/0312030 +astro-ph/0312031 +astro-ph/0312033 +astro-ph/0312034 +astro-ph/0312037 +astro-ph/0312039 +astro-ph/0312041 +astro-ph/0312043 +astro-ph/0312045 +astro-ph/0312048 +astro-ph/0312049 +astro-ph/0312052 +astro-ph/0312054 +astro-ph/0312055 +astro-ph/0312056 +astro-ph/0312057 +astro-ph/0312058 +astro-ph/0312060 +astro-ph/0312061 +astro-ph/0312064 +astro-ph/0312065 +astro-ph/0312067 +astro-ph/0312070 +astro-ph/0312071 +astro-ph/0312077 +astro-ph/0312078 +astro-ph/0312079 +astro-ph/0312081 +astro-ph/0312082 +astro-ph/0312083 +astro-ph/0312085 +astro-ph/0312087 +astro-ph/0312088 +astro-ph/0312089 +astro-ph/0312090 +astro-ph/0312092 +astro-ph/0312093 +astro-ph/0312094 +astro-ph/0312095 +astro-ph/0312096 +astro-ph/0312099 +astro-ph/0312101 +astro-ph/0312103 +astro-ph/0312104 +astro-ph/0312105 +astro-ph/0312106 +astro-ph/0312107 +astro-ph/0312108 +astro-ph/0312109 +astro-ph/0312111 +astro-ph/0312112 +astro-ph/0312119 +astro-ph/0312120 +astro-ph/0312125 +astro-ph/0312127 +astro-ph/0312128 +astro-ph/0312129 +astro-ph/0312130 +astro-ph/0312135 +astro-ph/0312138 +astro-ph/0312139 +astro-ph/0312140 +astro-ph/0312141 +astro-ph/0312143 +astro-ph/0312144 +astro-ph/0312145 +astro-ph/0312149 +astro-ph/0312150 +astro-ph/0312151 +astro-ph/0312152 +astro-ph/0312153 +astro-ph/0312156 +astro-ph/0312157 +astro-ph/0312161 +astro-ph/0312163 +astro-ph/0312168 +astro-ph/0312169 +astro-ph/0312170 +astro-ph/0312174 +astro-ph/0312177 +astro-ph/0312178 +astro-ph/0312180 +astro-ph/0312182 +astro-ph/0312191 +astro-ph/0312193 +astro-ph/0312194 +astro-ph/0312203 +astro-ph/0312205 +astro-ph/0312207 +astro-ph/0312208 +astro-ph/0312209 +astro-ph/0312210 +astro-ph/0312211 +astro-ph/0312212 +astro-ph/0312213 +astro-ph/0312214 +astro-ph/0312215 +astro-ph/0312216 +astro-ph/0312218 +astro-ph/0312219 +astro-ph/0312221 +astro-ph/0312222 +astro-ph/0312223 +astro-ph/0312224 +astro-ph/0312225 +astro-ph/0312226 +astro-ph/0312229 +astro-ph/0312230 +astro-ph/0312231 +astro-ph/0312232 +astro-ph/0312233 +astro-ph/0312234 +astro-ph/0312235 +astro-ph/0312236 +astro-ph/0312237 +astro-ph/0312238 +astro-ph/0312239 +astro-ph/0312240 +astro-ph/0312241 +astro-ph/0312242 +astro-ph/0312243 +astro-ph/0312244 +astro-ph/0312245 +astro-ph/0312249 +astro-ph/0312250 +astro-ph/0312251 +astro-ph/0312255 +astro-ph/0312256 +astro-ph/0312257 +astro-ph/0312258 +astro-ph/0312259 +astro-ph/0312260 +astro-ph/0312261 +astro-ph/0312265 +astro-ph/0312266 +astro-ph/0312267 +astro-ph/0312268 +astro-ph/0312269 +astro-ph/0312271 +astro-ph/0312274 +astro-ph/0312278 +astro-ph/0312279 +astro-ph/0312280 +astro-ph/0312283 +astro-ph/0312285 +astro-ph/0312286 +astro-ph/0312291 +astro-ph/0312292 +astro-ph/0312294 +astro-ph/0312296 +astro-ph/0312297 +astro-ph/0312299 +astro-ph/0312300 +astro-ph/0312303 +astro-ph/0312305 +astro-ph/0312307 +astro-ph/0312308 +astro-ph/0312309 +astro-ph/0312311 +astro-ph/0312312 +astro-ph/0312314 +astro-ph/0312317 +astro-ph/0312319 +astro-ph/0312322 +astro-ph/0312323 +astro-ph/0312324 +astro-ph/0312325 +astro-ph/0312327 +astro-ph/0312328 +astro-ph/0312329 +astro-ph/0312331 +astro-ph/0312334 +astro-ph/0312335 +astro-ph/0312336 +astro-ph/0312337 +astro-ph/0312338 +astro-ph/0312339 +astro-ph/0312340 +astro-ph/0312341 +astro-ph/0312343 +astro-ph/0312344 +astro-ph/0312345 +astro-ph/0312349 +astro-ph/0312354 +astro-ph/0312355 +astro-ph/0312358 +astro-ph/0312360 +astro-ph/0312361 +astro-ph/0312362 +astro-ph/0312365 +astro-ph/0312366 +astro-ph/0312368 +astro-ph/0312371 +astro-ph/0312372 +astro-ph/0312373 +astro-ph/0312375 +astro-ph/0312376 +astro-ph/0312377 +astro-ph/0312379 +astro-ph/0312380 +astro-ph/0312386 +astro-ph/0312387 +astro-ph/0312388 +astro-ph/0312390 +astro-ph/0312392 +astro-ph/0312393 +astro-ph/0312394 +astro-ph/0312396 +astro-ph/0312397 +astro-ph/0312401 +astro-ph/0312402 +astro-ph/0312403 +astro-ph/0312404 +astro-ph/0312405 +astro-ph/0312406 +astro-ph/0312407 +astro-ph/0312408 +astro-ph/0312409 +astro-ph/0312410 +astro-ph/0312411 +astro-ph/0312412 +astro-ph/0312413 +astro-ph/0312414 +astro-ph/0312416 +astro-ph/0312419 +astro-ph/0312421 +astro-ph/0312422 +astro-ph/0312423 +astro-ph/0312424 +astro-ph/0312426 +astro-ph/0312428 +astro-ph/0312429 +astro-ph/0312430 +astro-ph/0312433 +astro-ph/0312435 +astro-ph/0312437 +astro-ph/0312438 +astro-ph/0312439 +astro-ph/0312443 +astro-ph/0312444 +astro-ph/0312445 +astro-ph/0312447 +astro-ph/0312448 +astro-ph/0312449 +astro-ph/0312451 +astro-ph/0312452 +astro-ph/0312454 +astro-ph/0312456 +astro-ph/0312457 +astro-ph/0312458 +astro-ph/0312459 +astro-ph/0312461 +astro-ph/0312462 +astro-ph/0312464 +astro-ph/0312465 +astro-ph/0312466 +astro-ph/0312469 +astro-ph/0312470 +astro-ph/0312471 +astro-ph/0312474 +astro-ph/0312478 +astro-ph/0312479 +astro-ph/0312480 +astro-ph/0312481 +astro-ph/0312483 +astro-ph/0312484 +astro-ph/0312485 +astro-ph/0312486 +astro-ph/0312487 +astro-ph/0312488 +astro-ph/0312489 +astro-ph/0312490 +astro-ph/0312491 +astro-ph/0312494 +astro-ph/0312495 +astro-ph/0312496 +astro-ph/0312498 +astro-ph/0312507 +astro-ph/0312508 +astro-ph/0312509 +astro-ph/0312511 +astro-ph/0312512 +astro-ph/0312515 +astro-ph/0312518 +astro-ph/0312519 +astro-ph/0312520 +astro-ph/0312521 +astro-ph/0312522 +astro-ph/0312524 +astro-ph/0312525 +astro-ph/0312529 +astro-ph/0312530 +astro-ph/0312531 +astro-ph/0312532 +astro-ph/0312534 +astro-ph/0312535 +astro-ph/0312536 +astro-ph/0312540 +astro-ph/0312541 +astro-ph/0312548 +astro-ph/0312550 +astro-ph/0312551 +astro-ph/0312552 +astro-ph/0312553 +astro-ph/0312554 +astro-ph/0312555 +astro-ph/0312557 +astro-ph/0312560 +astro-ph/0312562 +astro-ph/0312564 +astro-ph/0312565 +astro-ph/0312566 +astro-ph/0312567 +astro-ph/0312568 +astro-ph/0312569 +astro-ph/0312570 +astro-ph/0312571 +astro-ph/0312572 +astro-ph/0312573 +astro-ph/0312575 +astro-ph/0312577 +astro-ph/0312578 +astro-ph/0312579 +astro-ph/0312586 +astro-ph/0312588 +astro-ph/0312590 +astro-ph/0312591 +astro-ph/0312593 +astro-ph/0312595 +astro-ph/0312597 +astro-ph/0312598 +astro-ph/0312599 +astro-ph/0312600 +astro-ph/0312603 +astro-ph/0312609 +astro-ph/0312612 +astro-ph/0312614 +astro-ph/0312615 +astro-ph/0312616 +astro-ph/0312620 +astro-ph/0312622 +astro-ph/0312623 +astro-ph/0312626 +astro-ph/0312630 +astro-ph/0312631 +astro-ph/0312633 +astro-ph/0312634 +astro-ph/0312635 +astro-ph/0312637 +astro-ph/0312640 +astro-ph/0312642 +astro-ph/0312643 +astro-ph/0312646 +astro-ph/0312648 +astro-ph/0312651 +astro-ph/0312653 +astro-ph/0312656 +astro-ph/0312657 +astro-ph/0312658 +astro-ph/0401002 +astro-ph/0401003 +astro-ph/0401004 +astro-ph/0401005 +astro-ph/0401006 +astro-ph/0401007 +astro-ph/0401008 +astro-ph/0401012 +astro-ph/0401013 +astro-ph/0401016 +astro-ph/0401017 +astro-ph/0401018 +astro-ph/0401019 +astro-ph/0401020 +astro-ph/0401021 +astro-ph/0401023 +astro-ph/0401024 +astro-ph/0401026 +astro-ph/0401028 +astro-ph/0401029 +astro-ph/0401030 +astro-ph/0401031 +astro-ph/0401033 +astro-ph/0401038 +astro-ph/0401039 +astro-ph/0401040 +astro-ph/0401042 +astro-ph/0401043 +astro-ph/0401044 +astro-ph/0401045 +astro-ph/0401046 +astro-ph/0401047 +astro-ph/0401048 +astro-ph/0401049 +astro-ph/0401050 +astro-ph/0401053 +astro-ph/0401056 +astro-ph/0401057 +astro-ph/0401058 +astro-ph/0401060 +astro-ph/0401061 +astro-ph/0401062 +astro-ph/0401063 +astro-ph/0401067 +astro-ph/0401069 +astro-ph/0401070 +astro-ph/0401071 +astro-ph/0401073 +astro-ph/0401074 +astro-ph/0401077 +astro-ph/0401078 +astro-ph/0401079 +astro-ph/0401081 +astro-ph/0401083 +astro-ph/0401091 +astro-ph/0401092 +astro-ph/0401093 +astro-ph/0401094 +astro-ph/0401095 +astro-ph/0401096 +astro-ph/0401097 +astro-ph/0401098 +astro-ph/0401100 +astro-ph/0401101 +astro-ph/0401102 +astro-ph/0401103 +astro-ph/0401104 +astro-ph/0401105 +astro-ph/0401106 +astro-ph/0401111 +astro-ph/0401112 +astro-ph/0401113 +astro-ph/0401115 +astro-ph/0401117 +astro-ph/0401118 +astro-ph/0401122 +astro-ph/0401124 +astro-ph/0401126 +astro-ph/0401127 +astro-ph/0401128 +astro-ph/0401129 +astro-ph/0401130 +astro-ph/0401131 +astro-ph/0401132 +astro-ph/0401133 +astro-ph/0401134 +astro-ph/0401137 +astro-ph/0401139 +astro-ph/0401140 +astro-ph/0401141 +astro-ph/0401142 +astro-ph/0401143 +astro-ph/0401144 +astro-ph/0401145 +astro-ph/0401146 +astro-ph/0401147 +astro-ph/0401148 +astro-ph/0401149 +astro-ph/0401150 +astro-ph/0401151 +astro-ph/0401153 +astro-ph/0401154 +astro-ph/0401155 +astro-ph/0401156 +astro-ph/0401157 +astro-ph/0401158 +astro-ph/0401159 +astro-ph/0401160 +astro-ph/0401161 +astro-ph/0401163 +astro-ph/0401164 +astro-ph/0401165 +astro-ph/0401167 +astro-ph/0401168 +astro-ph/0401169 +astro-ph/0401174 +astro-ph/0401175 +astro-ph/0401176 +astro-ph/0401177 +astro-ph/0401179 +astro-ph/0401181 +astro-ph/0401184 +astro-ph/0401187 +astro-ph/0401189 +astro-ph/0401191 +astro-ph/0401193 +astro-ph/0401194 +astro-ph/0401195 +astro-ph/0401196 +astro-ph/0401197 +astro-ph/0401198 +astro-ph/0401199 +astro-ph/0401200 +astro-ph/0401201 +astro-ph/0401204 +astro-ph/0401205 +astro-ph/0401207 +astro-ph/0401209 +astro-ph/0401210 +astro-ph/0401211 +astro-ph/0401212 +astro-ph/0401213 +astro-ph/0401214 +astro-ph/0401215 +astro-ph/0401216 +astro-ph/0401218 +astro-ph/0401220 +astro-ph/0401221 +astro-ph/0401222 +astro-ph/0401223 +astro-ph/0401224 +astro-ph/0401226 +astro-ph/0401228 +astro-ph/0401229 +astro-ph/0401233 +astro-ph/0401234 +astro-ph/0401235 +astro-ph/0401237 +astro-ph/0401238 +astro-ph/0401239 +astro-ph/0401240 +astro-ph/0401241 +astro-ph/0401243 +astro-ph/0401244 +astro-ph/0401246 +astro-ph/0401247 +astro-ph/0401248 +astro-ph/0401250 +astro-ph/0401251 +astro-ph/0401253 +astro-ph/0401254 +astro-ph/0401255 +astro-ph/0401257 +astro-ph/0401259 +astro-ph/0401260 +astro-ph/0401261 +astro-ph/0401262 +astro-ph/0401263 +astro-ph/0401264 +astro-ph/0401266 +astro-ph/0401268 +astro-ph/0401269 +astro-ph/0401270 +astro-ph/0401272 +astro-ph/0401273 +astro-ph/0401278 +astro-ph/0401280 +astro-ph/0401282 +astro-ph/0401284 +astro-ph/0401286 +astro-ph/0401287 +astro-ph/0401288 +astro-ph/0401289 +astro-ph/0401291 +astro-ph/0401294 +astro-ph/0401295 +astro-ph/0401298 +astro-ph/0401299 +astro-ph/0401300 +astro-ph/0401302 +astro-ph/0401303 +astro-ph/0401304 +astro-ph/0401305 +astro-ph/0401306 +astro-ph/0401309 +astro-ph/0401310 +astro-ph/0401311 +astro-ph/0401312 +astro-ph/0401313 +astro-ph/0401318 +astro-ph/0401319 +astro-ph/0401321 +astro-ph/0401324 +astro-ph/0401325 +astro-ph/0401326 +astro-ph/0401327 +astro-ph/0401328 +astro-ph/0401330 +astro-ph/0401331 +astro-ph/0401333 +astro-ph/0401334 +astro-ph/0401338 +astro-ph/0401339 +astro-ph/0401343 +astro-ph/0401347 +astro-ph/0401348 +astro-ph/0401349 +astro-ph/0401351 +astro-ph/0401354 +astro-ph/0401355 +astro-ph/0401356 +astro-ph/0401357 +astro-ph/0401358 +astro-ph/0401361 +astro-ph/0401363 +astro-ph/0401364 +astro-ph/0401367 +astro-ph/0401368 +astro-ph/0401370 +astro-ph/0401373 +astro-ph/0401375 +astro-ph/0401376 +astro-ph/0401377 +astro-ph/0401378 +astro-ph/0401379 +astro-ph/0401380 +astro-ph/0401381 +astro-ph/0401384 +astro-ph/0401386 +astro-ph/0401387 +astro-ph/0401388 +astro-ph/0401390 +astro-ph/0401391 +astro-ph/0401393 +astro-ph/0401394 +astro-ph/0401395 +astro-ph/0401397 +astro-ph/0401399 +astro-ph/0401400 +astro-ph/0401401 +astro-ph/0401403 +astro-ph/0401411 +astro-ph/0401412 +astro-ph/0401413 +astro-ph/0401414 +astro-ph/0401418 +astro-ph/0401419 +astro-ph/0401421 +astro-ph/0401422 +astro-ph/0401423 +astro-ph/0401425 +astro-ph/0401429 +astro-ph/0401432 +astro-ph/0401433 +astro-ph/0401435 +astro-ph/0401437 +astro-ph/0401438 +astro-ph/0401441 +astro-ph/0401443 +astro-ph/0401444 +astro-ph/0401446 +astro-ph/0401449 +astro-ph/0401450 +astro-ph/0401451 +astro-ph/0401452 +astro-ph/0401453 +astro-ph/0401454 +astro-ph/0401455 +astro-ph/0401458 +astro-ph/0401459 +astro-ph/0401460 +astro-ph/0401462 +astro-ph/0401463 +astro-ph/0401465 +astro-ph/0401467 +astro-ph/0401470 +astro-ph/0401471 +astro-ph/0401474 +astro-ph/0401475 +astro-ph/0401476 +astro-ph/0401477 +astro-ph/0401481 +astro-ph/0401482 +astro-ph/0401483 +astro-ph/0401484 +astro-ph/0401486 +astro-ph/0401487 +astro-ph/0401488 +astro-ph/0401492 +astro-ph/0401498 +astro-ph/0401499 +astro-ph/0401500 +astro-ph/0401501 +astro-ph/0401502 +astro-ph/0401504 +astro-ph/0401506 +astro-ph/0401507 +astro-ph/0401508 +astro-ph/0401510 +astro-ph/0401513 +astro-ph/0401515 +astro-ph/0401519 +astro-ph/0401521 +astro-ph/0401522 +astro-ph/0401523 +astro-ph/0401524 +astro-ph/0401525 +astro-ph/0401531 +astro-ph/0401532 +astro-ph/0401533 +astro-ph/0401534 +astro-ph/0401535 +astro-ph/0401536 +astro-ph/0401537 +astro-ph/0401539 +astro-ph/0401540 +astro-ph/0401541 +astro-ph/0401543 +astro-ph/0401544 +astro-ph/0401545 +astro-ph/0401546 +astro-ph/0401548 +astro-ph/0401550 +astro-ph/0401551 +astro-ph/0401552 +astro-ph/0401554 +astro-ph/0401558 +astro-ph/0401559 +astro-ph/0401560 +astro-ph/0401561 +astro-ph/0401562 +astro-ph/0401564 +astro-ph/0401566 +astro-ph/0401567 +astro-ph/0401568 +astro-ph/0401569 +astro-ph/0401570 +astro-ph/0401571 +astro-ph/0401572 +astro-ph/0401573 +astro-ph/0401574 +astro-ph/0401576 +astro-ph/0401580 +astro-ph/0401581 +astro-ph/0401582 +astro-ph/0401583 +astro-ph/0401584 +astro-ph/0401586 +astro-ph/0401587 +astro-ph/0401588 +astro-ph/0401589 +astro-ph/0401592 +astro-ph/0401593 +astro-ph/0401596 +astro-ph/0401597 +astro-ph/0401598 +astro-ph/0401599 +astro-ph/0401601 +astro-ph/0401602 +astro-ph/0401604 +astro-ph/0401605 +astro-ph/0401606 +astro-ph/0401610 +astro-ph/0401614 +astro-ph/0401615 +astro-ph/0401619 +astro-ph/0401626 +astro-ph/0401627 +astro-ph/0401628 +astro-ph/0401629 +astro-ph/0401630 +astro-ph/0401633 +astro-ph/0401634 +astro-ph/0401635 +astro-ph/0401636 +astro-ph/0401637 +astro-ph/0401639 +astro-ph/0401640 +astro-ph/0401641 +astro-ph/0401642 +astro-ph/0401644 +astro-ph/0402001 +astro-ph/0402003 +astro-ph/0402006 +astro-ph/0402007 +astro-ph/0402008 +astro-ph/0402022 +astro-ph/0402023 +astro-ph/0402025 +astro-ph/0402026 +astro-ph/0402027 +astro-ph/0402028 +astro-ph/0402029 +astro-ph/0402031 +astro-ph/0402033 +astro-ph/0402036 +astro-ph/0402037 +astro-ph/0402043 +astro-ph/0402046 +astro-ph/0402047 +astro-ph/0402048 +astro-ph/0402052 +astro-ph/0402053 +astro-ph/0402055 +astro-ph/0402056 +astro-ph/0402059 +astro-ph/0402061 +astro-ph/0402062 +astro-ph/0402063 +astro-ph/0402066 +astro-ph/0402067 +astro-ph/0402068 +astro-ph/0402072 +astro-ph/0402074 +astro-ph/0402075 +astro-ph/0402076 +astro-ph/0402077 +astro-ph/0402078 +astro-ph/0402082 +astro-ph/0402083 +astro-ph/0402084 +astro-ph/0402086 +astro-ph/0402088 +astro-ph/0402089 +astro-ph/0402094 +astro-ph/0402095 +astro-ph/0402097 +astro-ph/0402098 +astro-ph/0402099 +astro-ph/0402100 +astro-ph/0402102 +astro-ph/0402104 +astro-ph/0402105 +astro-ph/0402107 +astro-ph/0402108 +astro-ph/0402110 +astro-ph/0402111 +astro-ph/0402115 +astro-ph/0402116 +astro-ph/0402117 +astro-ph/0402118 +astro-ph/0402120 +astro-ph/0402123 +astro-ph/0402126 +astro-ph/0402127 +astro-ph/0402131 +astro-ph/0402133 +astro-ph/0402135 +astro-ph/0402138 +astro-ph/0402139 +astro-ph/0402140 +astro-ph/0402142 +astro-ph/0402143 +astro-ph/0402144 +astro-ph/0402147 +astro-ph/0402149 +astro-ph/0402150 +astro-ph/0402151 +astro-ph/0402152 +astro-ph/0402153 +astro-ph/0402154 +astro-ph/0402155 +astro-ph/0402157 +astro-ph/0402158 +astro-ph/0402159 +astro-ph/0402160 +astro-ph/0402161 +astro-ph/0402162 +astro-ph/0402163 +astro-ph/0402164 +astro-ph/0402165 +astro-ph/0402167 +astro-ph/0402168 +astro-ph/0402169 +astro-ph/0402171 +astro-ph/0402172 +astro-ph/0402174 +astro-ph/0402176 +astro-ph/0402183 +astro-ph/0402184 +astro-ph/0402188 +astro-ph/0402191 +astro-ph/0402192 +astro-ph/0402193 +astro-ph/0402194 +astro-ph/0402195 +astro-ph/0402197 +astro-ph/0402198 +astro-ph/0402199 +astro-ph/0402201 +astro-ph/0402204 +astro-ph/0402205 +astro-ph/0402207 +astro-ph/0402208 +astro-ph/0402211 +astro-ph/0402213 +astro-ph/0402214 +astro-ph/0402215 +astro-ph/0402216 +astro-ph/0402217 +astro-ph/0402220 +astro-ph/0402221 +astro-ph/0402222 +astro-ph/0402223 +astro-ph/0402225 +astro-ph/0402226 +astro-ph/0402227 +astro-ph/0402228 +astro-ph/0402229 +astro-ph/0402235 +astro-ph/0402236 +astro-ph/0402237 +astro-ph/0402238 +astro-ph/0402239 +astro-ph/0402241 +astro-ph/0402244 +astro-ph/0402245 +astro-ph/0402246 +astro-ph/0402247 +astro-ph/0402248 +astro-ph/0402249 +astro-ph/0402251 +astro-ph/0402253 +astro-ph/0402254 +astro-ph/0402255 +astro-ph/0402256 +astro-ph/0402258 +astro-ph/0402259 +astro-ph/0402260 +astro-ph/0402261 +astro-ph/0402262 +astro-ph/0402264 +astro-ph/0402266 +astro-ph/0402267 +astro-ph/0402268 +astro-ph/0402269 +astro-ph/0402271 +astro-ph/0402273 +astro-ph/0402275 +astro-ph/0402277 +astro-ph/0402280 +astro-ph/0402282 +astro-ph/0402284 +astro-ph/0402287 +astro-ph/0402288 +astro-ph/0402289 +astro-ph/0402291 +astro-ph/0402292 +astro-ph/0402293 +astro-ph/0402294 +astro-ph/0402298 +astro-ph/0402299 +astro-ph/0402302 +astro-ph/0402303 +astro-ph/0402305 +astro-ph/0402306 +astro-ph/0402307 +astro-ph/0402310 +astro-ph/0402311 +astro-ph/0402313 +astro-ph/0402314 +astro-ph/0402315 +astro-ph/0402316 +astro-ph/0402318 +astro-ph/0402320 +astro-ph/0402322 +astro-ph/0402323 +astro-ph/0402327 +astro-ph/0402329 +astro-ph/0402330 +astro-ph/0402332 +astro-ph/0402333 +astro-ph/0402336 +astro-ph/0402338 +astro-ph/0402340 +astro-ph/0402341 +astro-ph/0402343 +astro-ph/0402344 +astro-ph/0402348 +astro-ph/0402349 +astro-ph/0402350 +astro-ph/0402352 +astro-ph/0402353 +astro-ph/0402354 +astro-ph/0402355 +astro-ph/0402357 +astro-ph/0402358 +astro-ph/0402359 +astro-ph/0402360 +astro-ph/0402361 +astro-ph/0402362 +astro-ph/0402364 +astro-ph/0402372 +astro-ph/0402375 +astro-ph/0402376 +astro-ph/0402379 +astro-ph/0402381 +astro-ph/0402382 +astro-ph/0402383 +astro-ph/0402386 +astro-ph/0402388 +astro-ph/0402390 +astro-ph/0402391 +astro-ph/0402394 +astro-ph/0402395 +astro-ph/0402397 +astro-ph/0402398 +astro-ph/0402401 +astro-ph/0402403 +astro-ph/0402405 +astro-ph/0402406 +astro-ph/0402408 +astro-ph/0402409 +astro-ph/0402410 +astro-ph/0402411 +astro-ph/0402412 +astro-ph/0402413 +astro-ph/0402414 +astro-ph/0402415 +astro-ph/0402416 +astro-ph/0402418 +astro-ph/0402419 +astro-ph/0402420 +astro-ph/0402421 +astro-ph/0402422 +astro-ph/0402423 +astro-ph/0402424 +astro-ph/0402425 +astro-ph/0402426 +astro-ph/0402429 +astro-ph/0402430 +astro-ph/0402431 +astro-ph/0402432 +astro-ph/0402433 +astro-ph/0402434 +astro-ph/0402436 +astro-ph/0402437 +astro-ph/0402439 +astro-ph/0402440 +astro-ph/0402441 +astro-ph/0402445 +astro-ph/0402449 +astro-ph/0402450 +astro-ph/0402452 +astro-ph/0402453 +astro-ph/0402454 +astro-ph/0402456 +astro-ph/0402457 +astro-ph/0402459 +astro-ph/0402460 +astro-ph/0402461 +astro-ph/0402462 +astro-ph/0402464 +astro-ph/0402465 +astro-ph/0402467 +astro-ph/0402468 +astro-ph/0402470 +astro-ph/0402471 +astro-ph/0402472 +astro-ph/0402473 +astro-ph/0402476 +astro-ph/0402477 +astro-ph/0402478 +astro-ph/0402479 +astro-ph/0402480 +astro-ph/0402481 +astro-ph/0402483 +astro-ph/0402484 +astro-ph/0402488 +astro-ph/0402489 +astro-ph/0402491 +astro-ph/0402492 +astro-ph/0402493 +astro-ph/0402494 +astro-ph/0402496 +astro-ph/0402499 +astro-ph/0402501 +astro-ph/0402502 +astro-ph/0402503 +astro-ph/0402504 +astro-ph/0402505 +astro-ph/0402506 +astro-ph/0402507 +astro-ph/0402509 +astro-ph/0402510 +astro-ph/0402511 +astro-ph/0402513 +astro-ph/0402516 +astro-ph/0402517 +astro-ph/0402518 +astro-ph/0402519 +astro-ph/0402520 +astro-ph/0402521 +astro-ph/0402522 +astro-ph/0402523 +astro-ph/0402524 +astro-ph/0402525 +astro-ph/0402526 +astro-ph/0402527 +astro-ph/0402530 +astro-ph/0402531 +astro-ph/0402532 +astro-ph/0402534 +astro-ph/0402536 +astro-ph/0402538 +astro-ph/0402539 +astro-ph/0402540 +astro-ph/0402541 +astro-ph/0402542 +astro-ph/0402543 +astro-ph/0402544 +astro-ph/0402545 +astro-ph/0402548 +astro-ph/0402549 +astro-ph/0402550 +astro-ph/0402551 +astro-ph/0402552 +astro-ph/0402553 +astro-ph/0402555 +astro-ph/0402556 +astro-ph/0402557 +astro-ph/0402558 +astro-ph/0402560 +astro-ph/0402561 +astro-ph/0402563 +astro-ph/0402564 +astro-ph/0402565 +astro-ph/0402568 +astro-ph/0402569 +astro-ph/0402570 +astro-ph/0402571 +astro-ph/0402572 +astro-ph/0402574 +astro-ph/0402575 +astro-ph/0402576 +astro-ph/0402578 +astro-ph/0402579 +astro-ph/0402580 +astro-ph/0402581 +astro-ph/0402583 +astro-ph/0402584 +astro-ph/0402585 +astro-ph/0402586 +astro-ph/0402587 +astro-ph/0402589 +astro-ph/0402590 +astro-ph/0402591 +astro-ph/0402592 +astro-ph/0402593 +astro-ph/0402594 +astro-ph/0402595 +astro-ph/0402598 +astro-ph/0402599 +astro-ph/0402600 +astro-ph/0402601 +astro-ph/0402603 +astro-ph/0402604 +astro-ph/0402605 +astro-ph/0402607 +astro-ph/0402609 +astro-ph/0402610 +astro-ph/0402613 +astro-ph/0402615 +astro-ph/0402617 +astro-ph/0402618 +astro-ph/0402620 +astro-ph/0402621 +astro-ph/0402623 +astro-ph/0402624 +astro-ph/0402625 +astro-ph/0402627 +astro-ph/0402629 +astro-ph/0402630 +astro-ph/0402631 +astro-ph/0402633 +astro-ph/0402634 +astro-ph/0402635 +astro-ph/0402639 +astro-ph/0402640 +astro-ph/0402641 +astro-ph/0402644 +astro-ph/0402645 +astro-ph/0402646 +astro-ph/0402647 +astro-ph/0402648 +astro-ph/0402649 +astro-ph/0402650 +astro-ph/0402651 +astro-ph/0402653 +astro-ph/0402654 +astro-ph/0402656 +astro-ph/0402657 +astro-ph/0402658 +astro-ph/0402661 +astro-ph/0402662 +astro-ph/0402664 +astro-ph/0402668 +astro-ph/0402669 +astro-ph/0402670 +astro-ph/0402671 +astro-ph/0402672 +astro-ph/0402675 +astro-ph/0403002 +astro-ph/0403003 +astro-ph/0403006 +astro-ph/0403009 +astro-ph/0403010 +astro-ph/0403013 +astro-ph/0403014 +astro-ph/0403016 +astro-ph/0403019 +astro-ph/0403020 +astro-ph/0403021 +astro-ph/0403022 +astro-ph/0403023 +astro-ph/0403026 +astro-ph/0403028 +astro-ph/0403029 +astro-ph/0403032 +astro-ph/0403033 +astro-ph/0403034 +astro-ph/0403035 +astro-ph/0403039 +astro-ph/0403042 +astro-ph/0403046 +astro-ph/0403048 +astro-ph/0403049 +astro-ph/0403051 +astro-ph/0403052 +astro-ph/0403053 +astro-ph/0403054 +astro-ph/0403056 +astro-ph/0403057 +astro-ph/0403058 +astro-ph/0403059 +astro-ph/0403061 +astro-ph/0403062 +astro-ph/0403063 +astro-ph/0403065 +astro-ph/0403068 +astro-ph/0403069 +astro-ph/0403070 +astro-ph/0403071 +astro-ph/0403073 +astro-ph/0403078 +astro-ph/0403081 +astro-ph/0403083 +astro-ph/0403085 +astro-ph/0403090 +astro-ph/0403091 +astro-ph/0403092 +astro-ph/0403094 +astro-ph/0403095 +astro-ph/0403099 +astro-ph/0403101 +astro-ph/0403102 +astro-ph/0403104 +astro-ph/0403105 +astro-ph/0403106 +astro-ph/0403116 +astro-ph/0403119 +astro-ph/0403120 +astro-ph/0403121 +astro-ph/0403122 +astro-ph/0403124 +astro-ph/0403125 +astro-ph/0403126 +astro-ph/0403128 +astro-ph/0403131 +astro-ph/0403132 +astro-ph/0403133 +astro-ph/0403135 +astro-ph/0403136 +astro-ph/0403137 +astro-ph/0403138 +astro-ph/0403139 +astro-ph/0403142 +astro-ph/0403143 +astro-ph/0403144 +astro-ph/0403145 +astro-ph/0403146 +astro-ph/0403148 +astro-ph/0403149 +astro-ph/0403151 +astro-ph/0403152 +astro-ph/0403153 +astro-ph/0403154 +astro-ph/0403155 +astro-ph/0403156 +astro-ph/0403157 +astro-ph/0403158 +astro-ph/0403159 +astro-ph/0403160 +astro-ph/0403162 +astro-ph/0403164 +astro-ph/0403165 +astro-ph/0403168 +astro-ph/0403172 +astro-ph/0403173 +astro-ph/0403177 +astro-ph/0403178 +astro-ph/0403179 +astro-ph/0403183 +astro-ph/0403185 +astro-ph/0403186 +astro-ph/0403187 +astro-ph/0403189 +astro-ph/0403190 +astro-ph/0403191 +astro-ph/0403192 +astro-ph/0403193 +astro-ph/0403194 +astro-ph/0403197 +astro-ph/0403199 +astro-ph/0403203 +astro-ph/0403204 +astro-ph/0403205 +astro-ph/0403207 +astro-ph/0403209 +astro-ph/0403210 +astro-ph/0403211 +astro-ph/0403212 +astro-ph/0403213 +astro-ph/0403214 +astro-ph/0403216 +astro-ph/0403217 +astro-ph/0403218 +astro-ph/0403219 +astro-ph/0403220 +astro-ph/0403223 +astro-ph/0403224 +astro-ph/0403226 +astro-ph/0403230 +astro-ph/0403232 +astro-ph/0403233 +astro-ph/0403234 +astro-ph/0403235 +astro-ph/0403236 +astro-ph/0403237 +astro-ph/0403238 +astro-ph/0403241 +astro-ph/0403242 +astro-ph/0403243 +astro-ph/0403245 +astro-ph/0403246 +astro-ph/0403247 +astro-ph/0403248 +astro-ph/0403249 +astro-ph/0403250 +astro-ph/0403251 +astro-ph/0403254 +astro-ph/0403255 +astro-ph/0403256 +astro-ph/0403258 +astro-ph/0403259 +astro-ph/0403260 +astro-ph/0403262 +astro-ph/0403263 +astro-ph/0403264 +astro-ph/0403265 +astro-ph/0403267 +astro-ph/0403268 +astro-ph/0403269 +astro-ph/0403270 +astro-ph/0403271 +astro-ph/0403272 +astro-ph/0403274 +astro-ph/0403275 +astro-ph/0403277 +astro-ph/0403279 +astro-ph/0403281 +astro-ph/0403282 +astro-ph/0403283 +astro-ph/0403284 +astro-ph/0403285 +astro-ph/0403287 +astro-ph/0403288 +astro-ph/0403289 +astro-ph/0403294 +astro-ph/0403295 +astro-ph/0403296 +astro-ph/0403298 +astro-ph/0403300 +astro-ph/0403302 +astro-ph/0403303 +astro-ph/0403304 +astro-ph/0403305 +astro-ph/0403306 +astro-ph/0403307 +astro-ph/0403308 +astro-ph/0403309 +astro-ph/0403311 +astro-ph/0403312 +astro-ph/0403313 +astro-ph/0403315 +astro-ph/0403316 +astro-ph/0403317 +astro-ph/0403321 +astro-ph/0403322 +astro-ph/0403323 +astro-ph/0403326 +astro-ph/0403327 +astro-ph/0403330 +astro-ph/0403331 +astro-ph/0403332 +astro-ph/0403334 +astro-ph/0403335 +astro-ph/0403337 +astro-ph/0403338 +astro-ph/0403342 +astro-ph/0403343 +astro-ph/0403345 +astro-ph/0403348 +astro-ph/0403349 +astro-ph/0403350 +astro-ph/0403351 +astro-ph/0403353 +astro-ph/0403354 +astro-ph/0403355 +astro-ph/0403356 +astro-ph/0403358 +astro-ph/0403359 +astro-ph/0403360 +astro-ph/0403361 +astro-ph/0403362 +astro-ph/0403365 +astro-ph/0403367 +astro-ph/0403368 +astro-ph/0403369 +astro-ph/0403370 +astro-ph/0403371 +astro-ph/0403374 +astro-ph/0403375 +astro-ph/0403378 +astro-ph/0403379 +astro-ph/0403380 +astro-ph/0403381 +astro-ph/0403384 +astro-ph/0403387 +astro-ph/0403388 +astro-ph/0403389 +astro-ph/0403390 +astro-ph/0403394 +astro-ph/0403395 +astro-ph/0403397 +astro-ph/0403398 +astro-ph/0403400 +astro-ph/0403401 +astro-ph/0403402 +astro-ph/0403406 +astro-ph/0403407 +astro-ph/0403408 +astro-ph/0403409 +astro-ph/0403410 +astro-ph/0403412 +astro-ph/0403413 +astro-ph/0403414 +astro-ph/0403415 +astro-ph/0403416 +astro-ph/0403417 +astro-ph/0403418 +astro-ph/0403419 +astro-ph/0403420 +astro-ph/0403421 +astro-ph/0403422 +astro-ph/0403423 +astro-ph/0403424 +astro-ph/0403425 +astro-ph/0403427 +astro-ph/0403429 +astro-ph/0403430 +astro-ph/0403431 +astro-ph/0403435 +astro-ph/0403436 +astro-ph/0403439 +astro-ph/0403440 +astro-ph/0403441 +astro-ph/0403443 +astro-ph/0403444 +astro-ph/0403445 +astro-ph/0403448 +astro-ph/0403452 +astro-ph/0403453 +astro-ph/0403454 +astro-ph/0403456 +astro-ph/0403459 +astro-ph/0403460 +astro-ph/0403461 +astro-ph/0403462 +astro-ph/0403463 +astro-ph/0403464 +astro-ph/0403465 +astro-ph/0403467 +astro-ph/0403468 +astro-ph/0403470 +astro-ph/0403471 +astro-ph/0403474 +astro-ph/0403476 +astro-ph/0403477 +astro-ph/0403480 +astro-ph/0403481 +astro-ph/0403483 +astro-ph/0403484 +astro-ph/0403485 +astro-ph/0403487 +astro-ph/0403490 +astro-ph/0403491 +astro-ph/0403494 +astro-ph/0403495 +astro-ph/0403496 +astro-ph/0403499 +astro-ph/0403500 +astro-ph/0403503 +astro-ph/0403504 +astro-ph/0403507 +astro-ph/0403508 +astro-ph/0403509 +astro-ph/0403510 +astro-ph/0403512 +astro-ph/0403513 +astro-ph/0403514 +astro-ph/0403516 +astro-ph/0403517 +astro-ph/0403518 +astro-ph/0403519 +astro-ph/0403521 +astro-ph/0403522 +astro-ph/0403523 +astro-ph/0403524 +astro-ph/0403525 +astro-ph/0403528 +astro-ph/0403530 +astro-ph/0403531 +astro-ph/0403532 +astro-ph/0403534 +astro-ph/0403535 +astro-ph/0403536 +astro-ph/0403537 +astro-ph/0403538 +astro-ph/0403539 +astro-ph/0403542 +astro-ph/0403543 +astro-ph/0403544 +astro-ph/0403547 +astro-ph/0403551 +astro-ph/0403553 +astro-ph/0403554 +astro-ph/0403555 +astro-ph/0403556 +astro-ph/0403557 +astro-ph/0403558 +astro-ph/0403559 +astro-ph/0403563 +astro-ph/0403564 +astro-ph/0403566 +astro-ph/0403567 +astro-ph/0403569 +astro-ph/0403570 +astro-ph/0403572 +astro-ph/0403573 +astro-ph/0403574 +astro-ph/0403577 +astro-ph/0403578 +astro-ph/0403580 +astro-ph/0403581 +astro-ph/0403582 +astro-ph/0403585 +astro-ph/0403587 +astro-ph/0403589 +astro-ph/0403590 +astro-ph/0403591 +astro-ph/0403593 +astro-ph/0403594 +astro-ph/0403596 +astro-ph/0403597 +astro-ph/0403600 +astro-ph/0403601 +astro-ph/0403602 +astro-ph/0403603 +astro-ph/0403604 +astro-ph/0403605 +astro-ph/0403606 +astro-ph/0403607 +astro-ph/0403609 +astro-ph/0403610 +astro-ph/0403611 +astro-ph/0403612 +astro-ph/0403613 +astro-ph/0403616 +astro-ph/0403617 +astro-ph/0403620 +astro-ph/0403621 +astro-ph/0403625 +astro-ph/0403626 +astro-ph/0403627 +astro-ph/0403628 +astro-ph/0403631 +astro-ph/0403633 +astro-ph/0403634 +astro-ph/0403635 +astro-ph/0403636 +astro-ph/0403637 +astro-ph/0403639 +astro-ph/0403641 +astro-ph/0403644 +astro-ph/0403645 +astro-ph/0403648 +astro-ph/0403649 +astro-ph/0403650 +astro-ph/0403652 +astro-ph/0403653 +astro-ph/0403654 +astro-ph/0403655 +astro-ph/0403656 +astro-ph/0403658 +astro-ph/0403659 +astro-ph/0403660 +astro-ph/0403663 +astro-ph/0403664 +astro-ph/0403665 +astro-ph/0403666 +astro-ph/0403667 +astro-ph/0403668 +astro-ph/0403669 +astro-ph/0403670 +astro-ph/0403671 +astro-ph/0403672 +astro-ph/0403673 +astro-ph/0403674 +astro-ph/0403675 +astro-ph/0403677 +astro-ph/0403678 +astro-ph/0403680 +astro-ph/0403681 +astro-ph/0403684 +astro-ph/0403685 +astro-ph/0403686 +astro-ph/0403687 +astro-ph/0403688 +astro-ph/0403690 +astro-ph/0403691 +astro-ph/0403692 +astro-ph/0403697 +astro-ph/0403698 +astro-ph/0403699 +astro-ph/0403700 +astro-ph/0403701 +astro-ph/0403702 +astro-ph/0403707 +astro-ph/0403708 +astro-ph/0403713 +astro-ph/0403714 +astro-ph/0403715 +astro-ph/0403717 +astro-ph/0404001 +astro-ph/0404002 +astro-ph/0404003 +astro-ph/0404005 +astro-ph/0404006 +astro-ph/0404007 +astro-ph/0404008 +astro-ph/0404009 +astro-ph/0404010 +astro-ph/0404012 +astro-ph/0404016 +astro-ph/0404020 +astro-ph/0404021 +astro-ph/0404024 +astro-ph/0404025 +astro-ph/0404026 +astro-ph/0404028 +astro-ph/0404029 +astro-ph/0404032 +astro-ph/0404033 +astro-ph/0404034 +astro-ph/0404037 +astro-ph/0404040 +astro-ph/0404041 +astro-ph/0404042 +astro-ph/0404043 +astro-ph/0404044 +astro-ph/0404045 +astro-ph/0404047 +astro-ph/0404048 +astro-ph/0404049 +astro-ph/0404050 +astro-ph/0404051 +astro-ph/0404054 +astro-ph/0404056 +astro-ph/0404057 +astro-ph/0404059 +astro-ph/0404060 +astro-ph/0404061 +astro-ph/0404063 +astro-ph/0404065 +astro-ph/0404066 +astro-ph/0404067 +astro-ph/0404068 +astro-ph/0404071 +astro-ph/0404072 +astro-ph/0404077 +astro-ph/0404078 +astro-ph/0404080 +astro-ph/0404082 +astro-ph/0404084 +astro-ph/0404085 +astro-ph/0404086 +astro-ph/0404088 +astro-ph/0404089 +astro-ph/0404091 +astro-ph/0404092 +astro-ph/0404094 +astro-ph/0404098 +astro-ph/0404101 +astro-ph/0404102 +astro-ph/0404103 +astro-ph/0404106 +astro-ph/0404107 +astro-ph/0404109 +astro-ph/0404111 +astro-ph/0404113 +astro-ph/0404116 +astro-ph/0404117 +astro-ph/0404119 +astro-ph/0404120 +astro-ph/0404121 +astro-ph/0404123 +astro-ph/0404124 +astro-ph/0404127 +astro-ph/0404129 +astro-ph/0404132 +astro-ph/0404134 +astro-ph/0404135 +astro-ph/0404137 +astro-ph/0404138 +astro-ph/0404139 +astro-ph/0404140 +astro-ph/0404141 +astro-ph/0404142 +astro-ph/0404143 +astro-ph/0404145 +astro-ph/0404146 +astro-ph/0404147 +astro-ph/0404148 +astro-ph/0404149 +astro-ph/0404151 +astro-ph/0404152 +astro-ph/0404153 +astro-ph/0404154 +astro-ph/0404155 +astro-ph/0404158 +astro-ph/0404160 +astro-ph/0404161 +astro-ph/0404162 +astro-ph/0404163 +astro-ph/0404164 +astro-ph/0404165 +astro-ph/0404166 +astro-ph/0404170 +astro-ph/0404171 +astro-ph/0404172 +astro-ph/0404173 +astro-ph/0404174 +astro-ph/0404175 +astro-ph/0404176 +astro-ph/0404177 +astro-ph/0404178 +astro-ph/0404179 +astro-ph/0404180 +astro-ph/0404182 +astro-ph/0404183 +astro-ph/0404184 +astro-ph/0404186 +astro-ph/0404187 +astro-ph/0404193 +astro-ph/0404194 +astro-ph/0404195 +astro-ph/0404196 +astro-ph/0404198 +astro-ph/0404199 +astro-ph/0404200 +astro-ph/0404201 +astro-ph/0404202 +astro-ph/0404203 +astro-ph/0404209 +astro-ph/0404210 +astro-ph/0404211 +astro-ph/0404212 +astro-ph/0404214 +astro-ph/0404215 +astro-ph/0404216 +astro-ph/0404217 +astro-ph/0404218 +astro-ph/0404219 +astro-ph/0404222 +astro-ph/0404223 +astro-ph/0404227 +astro-ph/0404228 +astro-ph/0404229 +astro-ph/0404231 +astro-ph/0404232 +astro-ph/0404234 +astro-ph/0404235 +astro-ph/0404236 +astro-ph/0404237 +astro-ph/0404238 +astro-ph/0404239 +astro-ph/0404240 +astro-ph/0404243 +astro-ph/0404244 +astro-ph/0404245 +astro-ph/0404246 +astro-ph/0404247 +astro-ph/0404248 +astro-ph/0404249 +astro-ph/0404250 +astro-ph/0404251 +astro-ph/0404252 +astro-ph/0404253 +astro-ph/0404256 +astro-ph/0404258 +astro-ph/0404259 +astro-ph/0404260 +astro-ph/0404261 +astro-ph/0404262 +astro-ph/0404263 +astro-ph/0404264 +astro-ph/0404265 +astro-ph/0404266 +astro-ph/0404269 +astro-ph/0404273 +astro-ph/0404276 +astro-ph/0404277 +astro-ph/0404278 +astro-ph/0404280 +astro-ph/0404281 +astro-ph/0404283 +astro-ph/0404284 +astro-ph/0404285 +astro-ph/0404286 +astro-ph/0404287 +astro-ph/0404289 +astro-ph/0404290 +astro-ph/0404291 +astro-ph/0404292 +astro-ph/0404293 +astro-ph/0404294 +astro-ph/0404295 +astro-ph/0404296 +astro-ph/0404297 +astro-ph/0404298 +astro-ph/0404299 +astro-ph/0404300 +astro-ph/0404301 +astro-ph/0404302 +astro-ph/0404304 +astro-ph/0404306 +astro-ph/0404307 +astro-ph/0404308 +astro-ph/0404309 +astro-ph/0404310 +astro-ph/0404312 +astro-ph/0404313 +astro-ph/0404314 +astro-ph/0404315 +astro-ph/0404316 +astro-ph/0404317 +astro-ph/0404318 +astro-ph/0404319 +astro-ph/0404321 +astro-ph/0404323 +astro-ph/0404324 +astro-ph/0404325 +astro-ph/0404326 +astro-ph/0404328 +astro-ph/0404330 +astro-ph/0404335 +astro-ph/0404336 +astro-ph/0404337 +astro-ph/0404338 +astro-ph/0404339 +astro-ph/0404342 +astro-ph/0404343 +astro-ph/0404344 +astro-ph/0404345 +astro-ph/0404346 +astro-ph/0404347 +astro-ph/0404348 +astro-ph/0404349 +astro-ph/0404350 +astro-ph/0404351 +astro-ph/0404352 +astro-ph/0404353 +astro-ph/0404354 +astro-ph/0404355 +astro-ph/0404356 +astro-ph/0404357 +astro-ph/0404359 +astro-ph/0404360 +astro-ph/0404361 +astro-ph/0404362 +astro-ph/0404363 +astro-ph/0404364 +astro-ph/0404365 +astro-ph/0404367 +astro-ph/0404369 +astro-ph/0404372 +astro-ph/0404373 +astro-ph/0404374 +astro-ph/0404376 +astro-ph/0404377 +astro-ph/0404379 +astro-ph/0404380 +astro-ph/0404382 +astro-ph/0404383 +astro-ph/0404384 +astro-ph/0404386 +astro-ph/0404388 +astro-ph/0404389 +astro-ph/0404391 +astro-ph/0404394 +astro-ph/0404396 +astro-ph/0404397 +astro-ph/0404398 +astro-ph/0404400 +astro-ph/0404402 +astro-ph/0404403 +astro-ph/0404404 +astro-ph/0404405 +astro-ph/0404407 +astro-ph/0404409 +astro-ph/0404410 +astro-ph/0404411 +astro-ph/0404413 +astro-ph/0404414 +astro-ph/0404416 +astro-ph/0404417 +astro-ph/0404418 +astro-ph/0404419 +astro-ph/0404421 +astro-ph/0404423 +astro-ph/0404424 +astro-ph/0404426 +astro-ph/0404427 +astro-ph/0404428 +astro-ph/0404429 +astro-ph/0404430 +astro-ph/0404431 +astro-ph/0404432 +astro-ph/0404435 +astro-ph/0404436 +astro-ph/0404437 +astro-ph/0404438 +astro-ph/0404439 +astro-ph/0404441 +astro-ph/0404443 +astro-ph/0404444 +astro-ph/0404445 +astro-ph/0404447 +astro-ph/0404448 +astro-ph/0404449 +astro-ph/0404450 +astro-ph/0404452 +astro-ph/0404453 +astro-ph/0404455 +astro-ph/0404456 +astro-ph/0404457 +astro-ph/0404458 +astro-ph/0404460 +astro-ph/0404461 +astro-ph/0404465 +astro-ph/0404466 +astro-ph/0404467 +astro-ph/0404468 +astro-ph/0404470 +astro-ph/0404472 +astro-ph/0404473 +astro-ph/0404474 +astro-ph/0404475 +astro-ph/0404476 +astro-ph/0404477 +astro-ph/0404478 +astro-ph/0404481 +astro-ph/0404483 +astro-ph/0404484 +astro-ph/0404485 +astro-ph/0404486 +astro-ph/0404487 +astro-ph/0404488 +astro-ph/0404489 +astro-ph/0404493 +astro-ph/0404494 +astro-ph/0404495 +astro-ph/0404496 +astro-ph/0404498 +astro-ph/0404502 +astro-ph/0404503 +astro-ph/0404505 +astro-ph/0404506 +astro-ph/0404507 +astro-ph/0404508 +astro-ph/0404509 +astro-ph/0404511 +astro-ph/0404513 +astro-ph/0404516 +astro-ph/0404517 +astro-ph/0404521 +astro-ph/0404522 +astro-ph/0404525 +astro-ph/0404526 +astro-ph/0404527 +astro-ph/0404528 +astro-ph/0404530 +astro-ph/0404531 +astro-ph/0404532 +astro-ph/0404533 +astro-ph/0404534 +astro-ph/0404536 +astro-ph/0404537 +astro-ph/0404539 +astro-ph/0404541 +astro-ph/0404542 +astro-ph/0404543 +astro-ph/0404544 +astro-ph/0404545 +astro-ph/0404548 +astro-ph/0404550 +astro-ph/0404551 +astro-ph/0404552 +astro-ph/0404553 +astro-ph/0404555 +astro-ph/0404556 +astro-ph/0404557 +astro-ph/0404558 +astro-ph/0404559 +astro-ph/0404560 +astro-ph/0404561 +astro-ph/0404562 +astro-ph/0404565 +astro-ph/0404566 +astro-ph/0404567 +astro-ph/0404568 +astro-ph/0404570 +astro-ph/0404571 +astro-ph/0404572 +astro-ph/0404573 +astro-ph/0404575 +astro-ph/0404577 +astro-ph/0404578 +astro-ph/0404579 +astro-ph/0404580 +astro-ph/0404581 +astro-ph/0404582 +astro-ph/0404584 +astro-ph/0404587 +astro-ph/0404590 +astro-ph/0404592 +astro-ph/0404593 +astro-ph/0404597 +astro-ph/0404598 +astro-ph/0404599 +astro-ph/0404601 +astro-ph/0404602 +astro-ph/0404603 +astro-ph/0404604 +astro-ph/0404605 +astro-ph/0404607 +astro-ph/0404609 +astro-ph/0404610 +astro-ph/0404611 +astro-ph/0405002 +astro-ph/0405003 +astro-ph/0405004 +astro-ph/0405007 +astro-ph/0405009 +astro-ph/0405013 +astro-ph/0405014 +astro-ph/0405017 +astro-ph/0405018 +astro-ph/0405019 +astro-ph/0405024 +astro-ph/0405025 +astro-ph/0405027 +astro-ph/0405028 +astro-ph/0405030 +astro-ph/0405031 +astro-ph/0405034 +astro-ph/0405037 +astro-ph/0405040 +astro-ph/0405041 +astro-ph/0405042 +astro-ph/0405043 +astro-ph/0405044 +astro-ph/0405045 +astro-ph/0405046 +astro-ph/0405047 +astro-ph/0405048 +astro-ph/0405049 +astro-ph/0405050 +astro-ph/0405051 +astro-ph/0405054 +astro-ph/0405055 +astro-ph/0405056 +astro-ph/0405061 +astro-ph/0405063 +astro-ph/0405065 +astro-ph/0405069 +astro-ph/0405070 +astro-ph/0405071 +astro-ph/0405073 +astro-ph/0405074 +astro-ph/0405075 +astro-ph/0405076 +astro-ph/0405077 +astro-ph/0405078 +astro-ph/0405079 +astro-ph/0405080 +astro-ph/0405081 +astro-ph/0405082 +astro-ph/0405084 +astro-ph/0405085 +astro-ph/0405086 +astro-ph/0405088 +astro-ph/0405092 +astro-ph/0405093 +astro-ph/0405094 +astro-ph/0405095 +astro-ph/0405098 +astro-ph/0405100 +astro-ph/0405101 +astro-ph/0405102 +astro-ph/0405104 +astro-ph/0405105 +astro-ph/0405106 +astro-ph/0405107 +astro-ph/0405109 +astro-ph/0405112 +astro-ph/0405115 +astro-ph/0405116 +astro-ph/0405118 +astro-ph/0405120 +astro-ph/0405123 +astro-ph/0405124 +astro-ph/0405126 +astro-ph/0405127 +astro-ph/0405128 +astro-ph/0405129 +astro-ph/0405130 +astro-ph/0405132 +astro-ph/0405134 +astro-ph/0405136 +astro-ph/0405139 +astro-ph/0405141 +astro-ph/0405143 +astro-ph/0405145 +astro-ph/0405146 +astro-ph/0405147 +astro-ph/0405148 +astro-ph/0405149 +astro-ph/0405150 +astro-ph/0405152 +astro-ph/0405153 +astro-ph/0405154 +astro-ph/0405155 +astro-ph/0405156 +astro-ph/0405159 +astro-ph/0405161 +astro-ph/0405163 +astro-ph/0405164 +astro-ph/0405165 +astro-ph/0405166 +astro-ph/0405167 +astro-ph/0405168 +astro-ph/0405169 +astro-ph/0405173 +astro-ph/0405174 +astro-ph/0405175 +astro-ph/0405176 +astro-ph/0405177 +astro-ph/0405180 +astro-ph/0405181 +astro-ph/0405182 +astro-ph/0405183 +astro-ph/0405184 +astro-ph/0405185 +astro-ph/0405186 +astro-ph/0405188 +astro-ph/0405189 +astro-ph/0405191 +astro-ph/0405193 +astro-ph/0405195 +astro-ph/0405197 +astro-ph/0405199 +astro-ph/0405201 +astro-ph/0405202 +astro-ph/0405203 +astro-ph/0405205 +astro-ph/0405206 +astro-ph/0405210 +astro-ph/0405211 +astro-ph/0405212 +astro-ph/0405214 +astro-ph/0405215 +astro-ph/0405219 +astro-ph/0405221 +astro-ph/0405223 +astro-ph/0405224 +astro-ph/0405226 +astro-ph/0405227 +astro-ph/0405229 +astro-ph/0405230 +astro-ph/0405231 +astro-ph/0405234 +astro-ph/0405235 +astro-ph/0405236 +astro-ph/0405239 +astro-ph/0405240 +astro-ph/0405241 +astro-ph/0405243 +astro-ph/0405244 +astro-ph/0405246 +astro-ph/0405247 +astro-ph/0405248 +astro-ph/0405249 +astro-ph/0405250 +astro-ph/0405251 +astro-ph/0405252 +astro-ph/0405253 +astro-ph/0405254 +astro-ph/0405258 +astro-ph/0405259 +astro-ph/0405260 +astro-ph/0405261 +astro-ph/0405263 +astro-ph/0405264 +astro-ph/0405265 +astro-ph/0405267 +astro-ph/0405268 +astro-ph/0405269 +astro-ph/0405271 +astro-ph/0405273 +astro-ph/0405274 +astro-ph/0405275 +astro-ph/0405276 +astro-ph/0405277 +astro-ph/0405279 +astro-ph/0405280 +astro-ph/0405281 +astro-ph/0405284 +astro-ph/0405285 +astro-ph/0405286 +astro-ph/0405288 +astro-ph/0405294 +astro-ph/0405295 +astro-ph/0405299 +astro-ph/0405300 +astro-ph/0405301 +astro-ph/0405302 +astro-ph/0405303 +astro-ph/0405305 +astro-ph/0405306 +astro-ph/0405307 +astro-ph/0405309 +astro-ph/0405310 +astro-ph/0405312 +astro-ph/0405314 +astro-ph/0405315 +astro-ph/0405316 +astro-ph/0405317 +astro-ph/0405319 +astro-ph/0405321 +astro-ph/0405322 +astro-ph/0405323 +astro-ph/0405324 +astro-ph/0405325 +astro-ph/0405326 +astro-ph/0405327 +astro-ph/0405330 +astro-ph/0405331 +astro-ph/0405332 +astro-ph/0405335 +astro-ph/0405336 +astro-ph/0405338 +astro-ph/0405342 +astro-ph/0405345 +astro-ph/0405346 +astro-ph/0405348 +astro-ph/0405350 +astro-ph/0405351 +astro-ph/0405352 +astro-ph/0405354 +astro-ph/0405359 +astro-ph/0405360 +astro-ph/0405363 +astro-ph/0405365 +astro-ph/0405367 +astro-ph/0405370 +astro-ph/0405371 +astro-ph/0405377 +astro-ph/0405378 +astro-ph/0405380 +astro-ph/0405381 +astro-ph/0405383 +astro-ph/0405384 +astro-ph/0405385 +astro-ph/0405387 +astro-ph/0405388 +astro-ph/0405389 +astro-ph/0405390 +astro-ph/0405391 +astro-ph/0405393 +astro-ph/0405394 +astro-ph/0405395 +astro-ph/0405396 +astro-ph/0405397 +astro-ph/0405398 +astro-ph/0405399 +astro-ph/0405401 +astro-ph/0405402 +astro-ph/0405403 +astro-ph/0405404 +astro-ph/0405405 +astro-ph/0405407 +astro-ph/0405408 +astro-ph/0405410 +astro-ph/0405412 +astro-ph/0405414 +astro-ph/0405415 +astro-ph/0405418 +astro-ph/0405419 +astro-ph/0405420 +astro-ph/0405421 +astro-ph/0405422 +astro-ph/0405424 +astro-ph/0405425 +astro-ph/0405426 +astro-ph/0405429 +astro-ph/0405430 +astro-ph/0405431 +astro-ph/0405432 +astro-ph/0405434 +astro-ph/0405435 +astro-ph/0405436 +astro-ph/0405437 +astro-ph/0405438 +astro-ph/0405439 +astro-ph/0405441 +astro-ph/0405442 +astro-ph/0405443 +astro-ph/0405444 +astro-ph/0405445 +astro-ph/0405447 +astro-ph/0405448 +astro-ph/0405449 +astro-ph/0405450 +astro-ph/0405451 +astro-ph/0405452 +astro-ph/0405457 +astro-ph/0405458 +astro-ph/0405459 +astro-ph/0405461 +astro-ph/0405462 +astro-ph/0405463 +astro-ph/0405464 +astro-ph/0405465 +astro-ph/0405467 +astro-ph/0405468 +astro-ph/0405469 +astro-ph/0405472 +astro-ph/0405473 +astro-ph/0405474 +astro-ph/0405475 +astro-ph/0405477 +astro-ph/0405478 +astro-ph/0405479 +astro-ph/0405481 +astro-ph/0405482 +astro-ph/0405483 +astro-ph/0405484 +astro-ph/0405485 +astro-ph/0405486 +astro-ph/0405488 +astro-ph/0405489 +astro-ph/0405490 +astro-ph/0405492 +astro-ph/0405493 +astro-ph/0405494 +astro-ph/0405496 +astro-ph/0405498 +astro-ph/0405499 +astro-ph/0405500 +astro-ph/0405502 +astro-ph/0405505 +astro-ph/0405508 +astro-ph/0405509 +astro-ph/0405510 +astro-ph/0405511 +astro-ph/0405512 +astro-ph/0405514 +astro-ph/0405515 +astro-ph/0405516 +astro-ph/0405518 +astro-ph/0405520 +astro-ph/0405521 +astro-ph/0405522 +astro-ph/0405523 +astro-ph/0405526 +astro-ph/0405527 +astro-ph/0405528 +astro-ph/0405529 +astro-ph/0405530 +astro-ph/0405531 +astro-ph/0405533 +astro-ph/0405534 +astro-ph/0405535 +astro-ph/0405536 +astro-ph/0405538 +astro-ph/0405540 +astro-ph/0405542 +astro-ph/0405543 +astro-ph/0405544 +astro-ph/0405545 +astro-ph/0405546 +astro-ph/0405547 +astro-ph/0405549 +astro-ph/0405551 +astro-ph/0405553 +astro-ph/0405556 +astro-ph/0405557 +astro-ph/0405558 +astro-ph/0405561 +astro-ph/0405562 +astro-ph/0405563 +astro-ph/0405565 +astro-ph/0405567 +astro-ph/0405569 +astro-ph/0405573 +astro-ph/0405575 +astro-ph/0405581 +astro-ph/0405582 +astro-ph/0405583 +astro-ph/0405586 +astro-ph/0405587 +astro-ph/0405589 +astro-ph/0405590 +astro-ph/0405591 +astro-ph/0405594 +astro-ph/0405597 +astro-ph/0405599 +astro-ph/0405600 +astro-ph/0405602 +astro-ph/0405603 +astro-ph/0405604 +astro-ph/0405605 +astro-ph/0405606 +astro-ph/0405607 +astro-ph/0405609 +astro-ph/0405610 +astro-ph/0405611 +astro-ph/0405612 +astro-ph/0405615 +astro-ph/0405619 +astro-ph/0405620 +astro-ph/0405621 +astro-ph/0405627 +astro-ph/0405629 +astro-ph/0405631 +astro-ph/0405635 +astro-ph/0405636 +astro-ph/0405637 +astro-ph/0406001 +astro-ph/0406002 +astro-ph/0406004 +astro-ph/0406005 +astro-ph/0406007 +astro-ph/0406008 +astro-ph/0406009 +astro-ph/0406010 +astro-ph/0406011 +astro-ph/0406012 +astro-ph/0406014 +astro-ph/0406017 +astro-ph/0406020 +astro-ph/0406021 +astro-ph/0406023 +astro-ph/0406024 +astro-ph/0406025 +astro-ph/0406026 +astro-ph/0406028 +astro-ph/0406030 +astro-ph/0406035 +astro-ph/0406036 +astro-ph/0406037 +astro-ph/0406038 +astro-ph/0406041 +astro-ph/0406042 +astro-ph/0406045 +astro-ph/0406046 +astro-ph/0406047 +astro-ph/0406049 +astro-ph/0406050 +astro-ph/0406053 +astro-ph/0406054 +astro-ph/0406055 +astro-ph/0406056 +astro-ph/0406057 +astro-ph/0406060 +astro-ph/0406061 +astro-ph/0406062 +astro-ph/0406063 +astro-ph/0406065 +astro-ph/0406067 +astro-ph/0406068 +astro-ph/0406070 +astro-ph/0406071 +astro-ph/0406072 +astro-ph/0406073 +astro-ph/0406075 +astro-ph/0406077 +astro-ph/0406078 +astro-ph/0406081 +astro-ph/0406084 +astro-ph/0406087 +astro-ph/0406088 +astro-ph/0406089 +astro-ph/0406091 +astro-ph/0406098 +astro-ph/0406099 +astro-ph/0406100 +astro-ph/0406102 +astro-ph/0406103 +astro-ph/0406104 +astro-ph/0406105 +astro-ph/0406107 +astro-ph/0406108 +astro-ph/0406110 +astro-ph/0406111 +astro-ph/0406112 +astro-ph/0406113 +astro-ph/0406114 +astro-ph/0406116 +astro-ph/0406118 +astro-ph/0406119 +astro-ph/0406120 +astro-ph/0406122 +astro-ph/0406127 +astro-ph/0406128 +astro-ph/0406129 +astro-ph/0406131 +astro-ph/0406132 +astro-ph/0406135 +astro-ph/0406136 +astro-ph/0406137 +astro-ph/0406138 +astro-ph/0406140 +astro-ph/0406141 +astro-ph/0406144 +astro-ph/0406146 +astro-ph/0406147 +astro-ph/0406148 +astro-ph/0406149 +astro-ph/0406153 +astro-ph/0406154 +astro-ph/0406155 +astro-ph/0406156 +astro-ph/0406157 +astro-ph/0406160 +astro-ph/0406163 +astro-ph/0406164 +astro-ph/0406165 +astro-ph/0406166 +astro-ph/0406168 +astro-ph/0406169 +astro-ph/0406171 +astro-ph/0406172 +astro-ph/0406173 +astro-ph/0406176 +astro-ph/0406177 +astro-ph/0406180 +astro-ph/0406182 +astro-ph/0406184 +astro-ph/0406185 +astro-ph/0406187 +astro-ph/0406188 +astro-ph/0406189 +astro-ph/0406190 +astro-ph/0406191 +astro-ph/0406192 +astro-ph/0406195 +astro-ph/0406196 +astro-ph/0406197 +astro-ph/0406198 +astro-ph/0406199 +astro-ph/0406200 +astro-ph/0406201 +astro-ph/0406205 +astro-ph/0406207 +astro-ph/0406208 +astro-ph/0406209 +astro-ph/0406210 +astro-ph/0406212 +astro-ph/0406213 +astro-ph/0406214 +astro-ph/0406215 +astro-ph/0406216 +astro-ph/0406217 +astro-ph/0406219 +astro-ph/0406221 +astro-ph/0406224 +astro-ph/0406225 +astro-ph/0406226 +astro-ph/0406227 +astro-ph/0406228 +astro-ph/0406230 +astro-ph/0406231 +astro-ph/0406232 +astro-ph/0406233 +astro-ph/0406235 +astro-ph/0406237 +astro-ph/0406238 +astro-ph/0406239 +astro-ph/0406240 +astro-ph/0406243 +astro-ph/0406245 +astro-ph/0406246 +astro-ph/0406248 +astro-ph/0406249 +astro-ph/0406252 +astro-ph/0406253 +astro-ph/0406255 +astro-ph/0406259 +astro-ph/0406261 +astro-ph/0406262 +astro-ph/0406264 +astro-ph/0406265 +astro-ph/0406266 +astro-ph/0406267 +astro-ph/0406270 +astro-ph/0406273 +astro-ph/0406276 +astro-ph/0406277 +astro-ph/0406278 +astro-ph/0406279 +astro-ph/0406280 +astro-ph/0406281 +astro-ph/0406283 +astro-ph/0406284 +astro-ph/0406286 +astro-ph/0406287 +astro-ph/0406288 +astro-ph/0406289 +astro-ph/0406291 +astro-ph/0406292 +astro-ph/0406293 +astro-ph/0406295 +astro-ph/0406297 +astro-ph/0406298 +astro-ph/0406299 +astro-ph/0406300 +astro-ph/0406301 +astro-ph/0406302 +astro-ph/0406303 +astro-ph/0406304 +astro-ph/0406305 +astro-ph/0406307 +astro-ph/0406309 +astro-ph/0406310 +astro-ph/0406311 +astro-ph/0406312 +astro-ph/0406316 +astro-ph/0406317 +astro-ph/0406318 +astro-ph/0406319 +astro-ph/0406320 +astro-ph/0406322 +astro-ph/0406323 +astro-ph/0406324 +astro-ph/0406326 +astro-ph/0406328 +astro-ph/0406329 +astro-ph/0406330 +astro-ph/0406333 +astro-ph/0406334 +astro-ph/0406335 +astro-ph/0406338 +astro-ph/0406339 +astro-ph/0406340 +astro-ph/0406341 +astro-ph/0406342 +astro-ph/0406343 +astro-ph/0406344 +astro-ph/0406345 +astro-ph/0406347 +astro-ph/0406348 +astro-ph/0406350 +astro-ph/0406351 +astro-ph/0406352 +astro-ph/0406354 +astro-ph/0406356 +astro-ph/0406357 +astro-ph/0406359 +astro-ph/0406360 +astro-ph/0406361 +astro-ph/0406362 +astro-ph/0406363 +astro-ph/0406364 +astro-ph/0406366 +astro-ph/0406367 +astro-ph/0406368 +astro-ph/0406369 +astro-ph/0406370 +astro-ph/0406374 +astro-ph/0406376 +astro-ph/0406377 +astro-ph/0406378 +astro-ph/0406379 +astro-ph/0406383 +astro-ph/0406385 +astro-ph/0406386 +astro-ph/0406387 +astro-ph/0406388 +astro-ph/0406389 +astro-ph/0406390 +astro-ph/0406392 +astro-ph/0406395 +astro-ph/0406396 +astro-ph/0406397 +astro-ph/0406398 +astro-ph/0406400 +astro-ph/0406401 +astro-ph/0406402 +astro-ph/0406405 +astro-ph/0406406 +astro-ph/0406408 +astro-ph/0406410 +astro-ph/0406412 +astro-ph/0406413 +astro-ph/0406415 +astro-ph/0406418 +astro-ph/0406420 +astro-ph/0406421 +astro-ph/0406422 +astro-ph/0406424 +astro-ph/0406426 +astro-ph/0406428 +astro-ph/0406430 +astro-ph/0406431 +astro-ph/0406432 +astro-ph/0406433 +astro-ph/0406434 +astro-ph/0406438 +astro-ph/0406439 +astro-ph/0406442 +astro-ph/0406443 +astro-ph/0406445 +astro-ph/0406446 +astro-ph/0406451 +astro-ph/0406452 +astro-ph/0406454 +astro-ph/0406456 +astro-ph/0406457 +astro-ph/0406458 +astro-ph/0406459 +astro-ph/0406460 +astro-ph/0406462 +astro-ph/0406463 +astro-ph/0406464 +astro-ph/0406467 +astro-ph/0406468 +astro-ph/0406469 +astro-ph/0406472 +astro-ph/0406474 +astro-ph/0406475 +astro-ph/0406476 +astro-ph/0406477 +astro-ph/0406478 +astro-ph/0406479 +astro-ph/0406480 +astro-ph/0406481 +astro-ph/0406482 +astro-ph/0406484 +astro-ph/0406485 +astro-ph/0406486 +astro-ph/0406487 +astro-ph/0406490 +astro-ph/0406493 +astro-ph/0406495 +astro-ph/0406498 +astro-ph/0406499 +astro-ph/0406500 +astro-ph/0406501 +astro-ph/0406503 +astro-ph/0406504 +astro-ph/0406505 +astro-ph/0406506 +astro-ph/0406507 +astro-ph/0406508 +astro-ph/0406509 +astro-ph/0406510 +astro-ph/0406514 +astro-ph/0406515 +astro-ph/0406518 +astro-ph/0406519 +astro-ph/0406520 +astro-ph/0406521 +astro-ph/0406523 +astro-ph/0406524 +astro-ph/0406526 +astro-ph/0406527 +astro-ph/0406528 +astro-ph/0406529 +astro-ph/0406530 +astro-ph/0406531 +astro-ph/0406532 +astro-ph/0406533 +astro-ph/0406534 +astro-ph/0406535 +astro-ph/0406536 +astro-ph/0406539 +astro-ph/0406540 +astro-ph/0406542 +astro-ph/0406544 +astro-ph/0406545 +astro-ph/0406546 +astro-ph/0406547 +astro-ph/0406551 +astro-ph/0406553 +astro-ph/0406555 +astro-ph/0406556 +astro-ph/0406557 +astro-ph/0406558 +astro-ph/0406561 +astro-ph/0406562 +astro-ph/0406565 +astro-ph/0406566 +astro-ph/0406568 +astro-ph/0406569 +astro-ph/0406570 +astro-ph/0406571 +astro-ph/0406572 +astro-ph/0406573 +astro-ph/0406574 +astro-ph/0406575 +astro-ph/0406576 +astro-ph/0406580 +astro-ph/0406581 +astro-ph/0406582 +astro-ph/0406584 +astro-ph/0406587 +astro-ph/0406588 +astro-ph/0406589 +astro-ph/0406590 +astro-ph/0406591 +astro-ph/0406593 +astro-ph/0406595 +astro-ph/0406596 +astro-ph/0406597 +astro-ph/0406598 +astro-ph/0406599 +astro-ph/0406600 +astro-ph/0406601 +astro-ph/0406602 +astro-ph/0406603 +astro-ph/0406607 +astro-ph/0406609 +astro-ph/0406610 +astro-ph/0406612 +astro-ph/0406613 +astro-ph/0406614 +astro-ph/0406615 +astro-ph/0406617 +astro-ph/0406618 +astro-ph/0406619 +astro-ph/0406620 +astro-ph/0406621 +astro-ph/0406622 +astro-ph/0406623 +astro-ph/0406625 +astro-ph/0406626 +astro-ph/0406627 +astro-ph/0406630 +astro-ph/0406633 +astro-ph/0406634 +astro-ph/0406635 +astro-ph/0406636 +astro-ph/0406638 +astro-ph/0406640 +astro-ph/0406641 +astro-ph/0406643 +astro-ph/0406645 +astro-ph/0406646 +astro-ph/0406648 +astro-ph/0406650 +astro-ph/0406651 +astro-ph/0406653 +astro-ph/0406655 +astro-ph/0406656 +astro-ph/0406659 +astro-ph/0406660 +astro-ph/0406661 +astro-ph/0406662 +astro-ph/0406664 +astro-ph/0406665 +astro-ph/0406668 +astro-ph/0406671 +astro-ph/0406674 +astro-ph/0406675 +astro-ph/0406677 +astro-ph/0406679 +astro-ph/0406680 +astro-ph/0406684 +astro-ph/0406685 +astro-ph/0407001 +astro-ph/0407002 +astro-ph/0407003 +astro-ph/0407005 +astro-ph/0407006 +astro-ph/0407009 +astro-ph/0407010 +astro-ph/0407012 +astro-ph/0407014 +astro-ph/0407015 +astro-ph/0407016 +astro-ph/0407017 +astro-ph/0407018 +astro-ph/0407020 +astro-ph/0407021 +astro-ph/0407022 +astro-ph/0407023 +astro-ph/0407025 +astro-ph/0407026 +astro-ph/0407027 +astro-ph/0407028 +astro-ph/0407029 +astro-ph/0407030 +astro-ph/0407031 +astro-ph/0407033 +astro-ph/0407034 +astro-ph/0407035 +astro-ph/0407036 +astro-ph/0407037 +astro-ph/0407038 +astro-ph/0407039 +astro-ph/0407040 +astro-ph/0407041 +astro-ph/0407042 +astro-ph/0407045 +astro-ph/0407047 +astro-ph/0407049 +astro-ph/0407051 +astro-ph/0407052 +astro-ph/0407055 +astro-ph/0407056 +astro-ph/0407058 +astro-ph/0407059 +astro-ph/0407063 +astro-ph/0407064 +astro-ph/0407067 +astro-ph/0407069 +astro-ph/0407070 +astro-ph/0407072 +astro-ph/0407073 +astro-ph/0407075 +astro-ph/0407076 +astro-ph/0407077 +astro-ph/0407078 +astro-ph/0407079 +astro-ph/0407080 +astro-ph/0407081 +astro-ph/0407083 +astro-ph/0407084 +astro-ph/0407087 +astro-ph/0407091 +astro-ph/0407092 +astro-ph/0407094 +astro-ph/0407099 +astro-ph/0407100 +astro-ph/0407101 +astro-ph/0407102 +astro-ph/0407104 +astro-ph/0407105 +astro-ph/0407108 +astro-ph/0407109 +astro-ph/0407110 +astro-ph/0407114 +astro-ph/0407115 +astro-ph/0407116 +astro-ph/0407117 +astro-ph/0407120 +astro-ph/0407123 +astro-ph/0407124 +astro-ph/0407125 +astro-ph/0407126 +astro-ph/0407128 +astro-ph/0407131 +astro-ph/0407132 +astro-ph/0407134 +astro-ph/0407135 +astro-ph/0407136 +astro-ph/0407141 +astro-ph/0407142 +astro-ph/0407143 +astro-ph/0407144 +astro-ph/0407145 +astro-ph/0407146 +astro-ph/0407147 +astro-ph/0407151 +astro-ph/0407153 +astro-ph/0407154 +astro-ph/0407156 +astro-ph/0407157 +astro-ph/0407160 +astro-ph/0407161 +astro-ph/0407162 +astro-ph/0407163 +astro-ph/0407164 +astro-ph/0407167 +astro-ph/0407168 +astro-ph/0407169 +astro-ph/0407171 +astro-ph/0407172 +astro-ph/0407173 +astro-ph/0407174 +astro-ph/0407177 +astro-ph/0407178 +astro-ph/0407179 +astro-ph/0407180 +astro-ph/0407181 +astro-ph/0407183 +astro-ph/0407185 +astro-ph/0407186 +astro-ph/0407187 +astro-ph/0407195 +astro-ph/0407198 +astro-ph/0407199 +astro-ph/0407201 +astro-ph/0407202 +astro-ph/0407203 +astro-ph/0407207 +astro-ph/0407209 +astro-ph/0407214 +astro-ph/0407215 +astro-ph/0407216 +astro-ph/0407217 +astro-ph/0407219 +astro-ph/0407220 +astro-ph/0407223 +astro-ph/0407224 +astro-ph/0407225 +astro-ph/0407226 +astro-ph/0407227 +astro-ph/0407229 +astro-ph/0407230 +astro-ph/0407231 +astro-ph/0407233 +astro-ph/0407234 +astro-ph/0407237 +astro-ph/0407238 +astro-ph/0407240 +astro-ph/0407241 +astro-ph/0407242 +astro-ph/0407243 +astro-ph/0407244 +astro-ph/0407245 +astro-ph/0407246 +astro-ph/0407247 +astro-ph/0407248 +astro-ph/0407249 +astro-ph/0407250 +astro-ph/0407252 +astro-ph/0407253 +astro-ph/0407254 +astro-ph/0407255 +astro-ph/0407256 +astro-ph/0407257 +astro-ph/0407258 +astro-ph/0407259 +astro-ph/0407260 +astro-ph/0407261 +astro-ph/0407263 +astro-ph/0407265 +astro-ph/0407266 +astro-ph/0407268 +astro-ph/0407269 +astro-ph/0407271 +astro-ph/0407272 +astro-ph/0407274 +astro-ph/0407275 +astro-ph/0407276 +astro-ph/0407277 +astro-ph/0407279 +astro-ph/0407281 +astro-ph/0407283 +astro-ph/0407284 +astro-ph/0407285 +astro-ph/0407287 +astro-ph/0407291 +astro-ph/0407293 +astro-ph/0407294 +astro-ph/0407296 +astro-ph/0407297 +astro-ph/0407299 +astro-ph/0407302 +astro-ph/0407303 +astro-ph/0407304 +astro-ph/0407305 +astro-ph/0407307 +astro-ph/0407308 +astro-ph/0407310 +astro-ph/0407311 +astro-ph/0407312 +astro-ph/0407315 +astro-ph/0407316 +astro-ph/0407318 +astro-ph/0407328 +astro-ph/0407332 +astro-ph/0407333 +astro-ph/0407334 +astro-ph/0407336 +astro-ph/0407337 +astro-ph/0407338 +astro-ph/0407340 +astro-ph/0407342 +astro-ph/0407344 +astro-ph/0407347 +astro-ph/0407351 +astro-ph/0407354 +astro-ph/0407356 +astro-ph/0407357 +astro-ph/0407359 +astro-ph/0407361 +astro-ph/0407362 +astro-ph/0407363 +astro-ph/0407364 +astro-ph/0407365 +astro-ph/0407366 +astro-ph/0407367 +astro-ph/0407368 +astro-ph/0407371 +astro-ph/0407373 +astro-ph/0407376 +astro-ph/0407377 +astro-ph/0407378 +astro-ph/0407379 +astro-ph/0407380 +astro-ph/0407381 +astro-ph/0407383 +astro-ph/0407384 +astro-ph/0407385 +astro-ph/0407386 +astro-ph/0407387 +astro-ph/0407388 +astro-ph/0407389 +astro-ph/0407390 +astro-ph/0407391 +astro-ph/0407392 +astro-ph/0407393 +astro-ph/0407394 +astro-ph/0407395 +astro-ph/0407399 +astro-ph/0407400 +astro-ph/0407401 +astro-ph/0407402 +astro-ph/0407403 +astro-ph/0407404 +astro-ph/0407405 +astro-ph/0407406 +astro-ph/0407408 +astro-ph/0407409 +astro-ph/0407411 +astro-ph/0407412 +astro-ph/0407413 +astro-ph/0407414 +astro-ph/0407415 +astro-ph/0407416 +astro-ph/0407418 +astro-ph/0407420 +astro-ph/0407423 +astro-ph/0407425 +astro-ph/0407426 +astro-ph/0407427 +astro-ph/0407429 +astro-ph/0407433 +astro-ph/0407435 +astro-ph/0407436 +astro-ph/0407438 +astro-ph/0407441 +astro-ph/0407442 +astro-ph/0407443 +astro-ph/0407444 +astro-ph/0407445 +astro-ph/0407446 +astro-ph/0407448 +astro-ph/0407449 +astro-ph/0407450 +astro-ph/0407452 +astro-ph/0407453 +astro-ph/0407454 +astro-ph/0407455 +astro-ph/0407456 +astro-ph/0407457 +astro-ph/0407459 +astro-ph/0407460 +astro-ph/0407462 +astro-ph/0407464 +astro-ph/0407466 +astro-ph/0407469 +astro-ph/0407471 +astro-ph/0407472 +astro-ph/0407473 +astro-ph/0407474 +astro-ph/0407475 +astro-ph/0407476 +astro-ph/0407478 +astro-ph/0407479 +astro-ph/0407481 +astro-ph/0407482 +astro-ph/0407483 +astro-ph/0407485 +astro-ph/0407486 +astro-ph/0407488 +astro-ph/0407489 +astro-ph/0407490 +astro-ph/0407491 +astro-ph/0407492 +astro-ph/0407493 +astro-ph/0407496 +astro-ph/0407498 +astro-ph/0407502 +astro-ph/0407503 +astro-ph/0407504 +astro-ph/0407505 +astro-ph/0407507 +astro-ph/0407509 +astro-ph/0407511 +astro-ph/0407512 +astro-ph/0407513 +astro-ph/0407514 +astro-ph/0407515 +astro-ph/0407517 +astro-ph/0407518 +astro-ph/0407519 +astro-ph/0407520 +astro-ph/0407523 +astro-ph/0407524 +astro-ph/0407525 +astro-ph/0407528 +astro-ph/0407529 +astro-ph/0407530 +astro-ph/0407532 +astro-ph/0407534 +astro-ph/0407536 +astro-ph/0407538 +astro-ph/0407540 +astro-ph/0407541 +astro-ph/0407544 +astro-ph/0407545 +astro-ph/0407546 +astro-ph/0407548 +astro-ph/0407549 +astro-ph/0407550 +astro-ph/0407551 +astro-ph/0407552 +astro-ph/0407553 +astro-ph/0407554 +astro-ph/0407555 +astro-ph/0407556 +astro-ph/0407557 +astro-ph/0407558 +astro-ph/0407561 +astro-ph/0407563 +astro-ph/0407565 +astro-ph/0407567 +astro-ph/0407568 +astro-ph/0407571 +astro-ph/0407572 +astro-ph/0407573 +astro-ph/0407574 +astro-ph/0407575 +astro-ph/0407577 +astro-ph/0407578 +astro-ph/0407580 +astro-ph/0407587 +astro-ph/0407588 +astro-ph/0407590 +astro-ph/0407593 +astro-ph/0407595 +astro-ph/0407596 +astro-ph/0407597 +astro-ph/0407599 +astro-ph/0407602 +astro-ph/0407605 +astro-ph/0407607 +astro-ph/0407608 +astro-ph/0407609 +astro-ph/0407610 +astro-ph/0407612 +astro-ph/0407613 +astro-ph/0407614 +astro-ph/0407615 +astro-ph/0407617 +astro-ph/0407619 +astro-ph/0407626 +astro-ph/0407627 +astro-ph/0407628 +astro-ph/0407629 +astro-ph/0407630 +astro-ph/0407632 +astro-ph/0407634 +astro-ph/0407635 +astro-ph/0407637 +astro-ph/0407638 +astro-ph/0407639 +astro-ph/0407640 +astro-ph/0407641 +astro-ph/0407642 +astro-ph/0407643 +astro-ph/0407644 +astro-ph/0407645 +astro-ph/0407647 +astro-ph/0407648 +astro-ph/0407649 +astro-ph/0408001 +astro-ph/0408005 +astro-ph/0408009 +astro-ph/0408012 +astro-ph/0408013 +astro-ph/0408015 +astro-ph/0408017 +astro-ph/0408021 +astro-ph/0408022 +astro-ph/0408024 +astro-ph/0408025 +astro-ph/0408026 +astro-ph/0408027 +astro-ph/0408028 +astro-ph/0408029 +astro-ph/0408031 +astro-ph/0408032 +astro-ph/0408034 +astro-ph/0408036 +astro-ph/0408037 +astro-ph/0408040 +astro-ph/0408042 +astro-ph/0408043 +astro-ph/0408045 +astro-ph/0408048 +astro-ph/0408049 +astro-ph/0408051 +astro-ph/0408052 +astro-ph/0408057 +astro-ph/0408059 +astro-ph/0408060 +astro-ph/0408061 +astro-ph/0408062 +astro-ph/0408064 +astro-ph/0408066 +astro-ph/0408067 +astro-ph/0408068 +astro-ph/0408069 +astro-ph/0408070 +astro-ph/0408072 +astro-ph/0408078 +astro-ph/0408079 +astro-ph/0408082 +astro-ph/0408084 +astro-ph/0408085 +astro-ph/0408086 +astro-ph/0408087 +astro-ph/0408088 +astro-ph/0408089 +astro-ph/0408091 +astro-ph/0408093 +astro-ph/0408095 +astro-ph/0408096 +astro-ph/0408097 +astro-ph/0408098 +astro-ph/0408099 +astro-ph/0408100 +astro-ph/0408101 +astro-ph/0408103 +astro-ph/0408104 +astro-ph/0408105 +astro-ph/0408108 +astro-ph/0408109 +astro-ph/0408111 +astro-ph/0408112 +astro-ph/0408113 +astro-ph/0408115 +astro-ph/0408116 +astro-ph/0408118 +astro-ph/0408119 +astro-ph/0408120 +astro-ph/0408121 +astro-ph/0408122 +astro-ph/0408123 +astro-ph/0408125 +astro-ph/0408126 +astro-ph/0408128 +astro-ph/0408129 +astro-ph/0408130 +astro-ph/0408131 +astro-ph/0408133 +astro-ph/0408134 +astro-ph/0408136 +astro-ph/0408139 +astro-ph/0408143 +astro-ph/0408144 +astro-ph/0408146 +astro-ph/0408147 +astro-ph/0408148 +astro-ph/0408149 +astro-ph/0408153 +astro-ph/0408156 +astro-ph/0408157 +astro-ph/0408159 +astro-ph/0408160 +astro-ph/0408161 +astro-ph/0408162 +astro-ph/0408163 +astro-ph/0408164 +astro-ph/0408166 +astro-ph/0408169 +astro-ph/0408170 +astro-ph/0408171 +astro-ph/0408172 +astro-ph/0408173 +astro-ph/0408175 +astro-ph/0408177 +astro-ph/0408178 +astro-ph/0408179 +astro-ph/0408181 +astro-ph/0408182 +astro-ph/0408184 +astro-ph/0408185 +astro-ph/0408188 +astro-ph/0408189 +astro-ph/0408190 +astro-ph/0408191 +astro-ph/0408194 +astro-ph/0408195 +astro-ph/0408196 +astro-ph/0408197 +astro-ph/0408198 +astro-ph/0408200 +astro-ph/0408202 +astro-ph/0408203 +astro-ph/0408205 +astro-ph/0408206 +astro-ph/0408207 +astro-ph/0408208 +astro-ph/0408209 +astro-ph/0408212 +astro-ph/0408214 +astro-ph/0408215 +astro-ph/0408216 +astro-ph/0408217 +astro-ph/0408218 +astro-ph/0408219 +astro-ph/0408221 +astro-ph/0408222 +astro-ph/0408223 +astro-ph/0408226 +astro-ph/0408227 +astro-ph/0408228 +astro-ph/0408231 +astro-ph/0408234 +astro-ph/0408235 +astro-ph/0408236 +astro-ph/0408237 +astro-ph/0408238 +astro-ph/0408240 +astro-ph/0408241 +astro-ph/0408242 +astro-ph/0408249 +astro-ph/0408250 +astro-ph/0408251 +astro-ph/0408252 +astro-ph/0408253 +astro-ph/0408254 +astro-ph/0408255 +astro-ph/0408258 +astro-ph/0408259 +astro-ph/0408260 +astro-ph/0408261 +astro-ph/0408265 +astro-ph/0408266 +astro-ph/0408269 +astro-ph/0408270 +astro-ph/0408274 +astro-ph/0408275 +astro-ph/0408276 +astro-ph/0408277 +astro-ph/0408278 +astro-ph/0408280 +astro-ph/0408282 +astro-ph/0408283 +astro-ph/0408284 +astro-ph/0408285 +astro-ph/0408286 +astro-ph/0408288 +astro-ph/0408289 +astro-ph/0408290 +astro-ph/0408292 +astro-ph/0408294 +astro-ph/0408295 +astro-ph/0408296 +astro-ph/0408297 +astro-ph/0408298 +astro-ph/0408299 +astro-ph/0408300 +astro-ph/0408301 +astro-ph/0408302 +astro-ph/0408304 +astro-ph/0408305 +astro-ph/0408306 +astro-ph/0408307 +astro-ph/0408308 +astro-ph/0408309 +astro-ph/0408311 +astro-ph/0408313 +astro-ph/0408318 +astro-ph/0408319 +astro-ph/0408321 +astro-ph/0408325 +astro-ph/0408327 +astro-ph/0408328 +astro-ph/0408329 +astro-ph/0408331 +astro-ph/0408332 +astro-ph/0408333 +astro-ph/0408334 +astro-ph/0408335 +astro-ph/0408337 +astro-ph/0408338 +astro-ph/0408339 +astro-ph/0408340 +astro-ph/0408342 +astro-ph/0408345 +astro-ph/0408346 +astro-ph/0408347 +astro-ph/0408348 +astro-ph/0408349 +astro-ph/0408350 +astro-ph/0408352 +astro-ph/0408353 +astro-ph/0408355 +astro-ph/0408356 +astro-ph/0408357 +astro-ph/0408360 +astro-ph/0408361 +astro-ph/0408367 +astro-ph/0408368 +astro-ph/0408369 +astro-ph/0408370 +astro-ph/0408371 +astro-ph/0408372 +astro-ph/0408375 +astro-ph/0408376 +astro-ph/0408377 +astro-ph/0408380 +astro-ph/0408381 +astro-ph/0408382 +astro-ph/0408384 +astro-ph/0408386 +astro-ph/0408388 +astro-ph/0408390 +astro-ph/0408391 +astro-ph/0408392 +astro-ph/0408393 +astro-ph/0408394 +astro-ph/0408395 +astro-ph/0408396 +astro-ph/0408397 +astro-ph/0408398 +astro-ph/0408399 +astro-ph/0408400 +astro-ph/0408402 +astro-ph/0408403 +astro-ph/0408404 +astro-ph/0408405 +astro-ph/0408407 +astro-ph/0408409 +astro-ph/0408410 +astro-ph/0408413 +astro-ph/0408414 +astro-ph/0408417 +astro-ph/0408422 +astro-ph/0408424 +astro-ph/0408425 +astro-ph/0408426 +astro-ph/0408427 +astro-ph/0408430 +astro-ph/0408431 +astro-ph/0408433 +astro-ph/0408434 +astro-ph/0408436 +astro-ph/0408437 +astro-ph/0408438 +astro-ph/0408441 +astro-ph/0408442 +astro-ph/0408445 +astro-ph/0408446 +astro-ph/0408447 +astro-ph/0408448 +astro-ph/0408449 +astro-ph/0408450 +astro-ph/0408451 +astro-ph/0408453 +astro-ph/0408455 +astro-ph/0408457 +astro-ph/0408458 +astro-ph/0408461 +astro-ph/0408462 +astro-ph/0408464 +astro-ph/0408465 +astro-ph/0408467 +astro-ph/0408468 +astro-ph/0408469 +astro-ph/0408470 +astro-ph/0408471 +astro-ph/0408472 +astro-ph/0408476 +astro-ph/0408477 +astro-ph/0408482 +astro-ph/0408483 +astro-ph/0408486 +astro-ph/0408487 +astro-ph/0408489 +astro-ph/0408492 +astro-ph/0408493 +astro-ph/0408495 +astro-ph/0408496 +astro-ph/0408497 +astro-ph/0408498 +astro-ph/0408499 +astro-ph/0408501 +astro-ph/0408502 +astro-ph/0408503 +astro-ph/0408504 +astro-ph/0408505 +astro-ph/0408506 +astro-ph/0408507 +astro-ph/0408508 +astro-ph/0408509 +astro-ph/0408511 +astro-ph/0408512 +astro-ph/0408514 +astro-ph/0408515 +astro-ph/0408516 +astro-ph/0408517 +astro-ph/0408518 +astro-ph/0408520 +astro-ph/0408522 +astro-ph/0408523 +astro-ph/0408524 +astro-ph/0408525 +astro-ph/0408526 +astro-ph/0408527 +astro-ph/0408528 +astro-ph/0408529 +astro-ph/0408530 +astro-ph/0408531 +astro-ph/0408533 +astro-ph/0408534 +astro-ph/0408535 +astro-ph/0408537 +astro-ph/0408538 +astro-ph/0408540 +astro-ph/0408543 +astro-ph/0408544 +astro-ph/0408547 +astro-ph/0408548 +astro-ph/0408549 +astro-ph/0408550 +astro-ph/0408552 +astro-ph/0408553 +astro-ph/0408555 +astro-ph/0408556 +astro-ph/0408558 +astro-ph/0408559 +astro-ph/0408563 +astro-ph/0408567 +astro-ph/0408568 +astro-ph/0408570 +astro-ph/0408572 +astro-ph/0408574 +astro-ph/0408575 +astro-ph/0408576 +astro-ph/0408579 +astro-ph/0408580 +astro-ph/0408582 +astro-ph/0408583 +astro-ph/0408584 +astro-ph/0408585 +astro-ph/0408586 +astro-ph/0408587 +astro-ph/0408588 +astro-ph/0408589 +astro-ph/0408590 +astro-ph/0409001 +astro-ph/0409002 +astro-ph/0409003 +astro-ph/0409005 +astro-ph/0409006 +astro-ph/0409007 +astro-ph/0409008 +astro-ph/0409011 +astro-ph/0409012 +astro-ph/0409013 +astro-ph/0409014 +astro-ph/0409015 +astro-ph/0409017 +astro-ph/0409022 +astro-ph/0409023 +astro-ph/0409024 +astro-ph/0409026 +astro-ph/0409028 +astro-ph/0409029 +astro-ph/0409031 +astro-ph/0409034 +astro-ph/0409036 +astro-ph/0409037 +astro-ph/0409038 +astro-ph/0409041 +astro-ph/0409043 +astro-ph/0409044 +astro-ph/0409045 +astro-ph/0409046 +astro-ph/0409047 +astro-ph/0409048 +astro-ph/0409050 +astro-ph/0409053 +astro-ph/0409054 +astro-ph/0409056 +astro-ph/0409057 +astro-ph/0409058 +astro-ph/0409059 +astro-ph/0409060 +astro-ph/0409061 +astro-ph/0409065 +astro-ph/0409066 +astro-ph/0409067 +astro-ph/0409068 +astro-ph/0409069 +astro-ph/0409070 +astro-ph/0409072 +astro-ph/0409073 +astro-ph/0409074 +astro-ph/0409075 +astro-ph/0409078 +astro-ph/0409084 +astro-ph/0409085 +astro-ph/0409086 +astro-ph/0409087 +astro-ph/0409088 +astro-ph/0409089 +astro-ph/0409090 +astro-ph/0409092 +astro-ph/0409093 +astro-ph/0409094 +astro-ph/0409095 +astro-ph/0409097 +astro-ph/0409098 +astro-ph/0409099 +astro-ph/0409100 +astro-ph/0409102 +astro-ph/0409104 +astro-ph/0409105 +astro-ph/0409108 +astro-ph/0409110 +astro-ph/0409112 +astro-ph/0409113 +astro-ph/0409114 +astro-ph/0409115 +astro-ph/0409116 +astro-ph/0409119 +astro-ph/0409122 +astro-ph/0409123 +astro-ph/0409124 +astro-ph/0409125 +astro-ph/0409128 +astro-ph/0409135 +astro-ph/0409136 +astro-ph/0409137 +astro-ph/0409138 +astro-ph/0409139 +astro-ph/0409141 +astro-ph/0409142 +astro-ph/0409143 +astro-ph/0409144 +astro-ph/0409145 +astro-ph/0409147 +astro-ph/0409150 +astro-ph/0409155 +astro-ph/0409156 +astro-ph/0409157 +astro-ph/0409158 +astro-ph/0409160 +astro-ph/0409162 +astro-ph/0409163 +astro-ph/0409164 +astro-ph/0409167 +astro-ph/0409168 +astro-ph/0409169 +astro-ph/0409174 +astro-ph/0409175 +astro-ph/0409176 +astro-ph/0409179 +astro-ph/0409180 +astro-ph/0409181 +astro-ph/0409182 +astro-ph/0409183 +astro-ph/0409184 +astro-ph/0409185 +astro-ph/0409186 +astro-ph/0409187 +astro-ph/0409188 +astro-ph/0409189 +astro-ph/0409190 +astro-ph/0409191 +astro-ph/0409195 +astro-ph/0409197 +astro-ph/0409198 +astro-ph/0409199 +astro-ph/0409200 +astro-ph/0409204 +astro-ph/0409205 +astro-ph/0409206 +astro-ph/0409207 +astro-ph/0409208 +astro-ph/0409209 +astro-ph/0409210 +astro-ph/0409211 +astro-ph/0409215 +astro-ph/0409217 +astro-ph/0409218 +astro-ph/0409220 +astro-ph/0409221 +astro-ph/0409222 +astro-ph/0409223 +astro-ph/0409228 +astro-ph/0409229 +astro-ph/0409231 +astro-ph/0409232 +astro-ph/0409233 +astro-ph/0409235 +astro-ph/0409236 +astro-ph/0409239 +astro-ph/0409240 +astro-ph/0409241 +astro-ph/0409243 +astro-ph/0409246 +astro-ph/0409248 +astro-ph/0409249 +astro-ph/0409250 +astro-ph/0409251 +astro-ph/0409255 +astro-ph/0409256 +astro-ph/0409257 +astro-ph/0409259 +astro-ph/0409263 +astro-ph/0409265 +astro-ph/0409266 +astro-ph/0409268 +astro-ph/0409269 +astro-ph/0409270 +astro-ph/0409271 +astro-ph/0409272 +astro-ph/0409273 +astro-ph/0409276 +astro-ph/0409278 +astro-ph/0409281 +astro-ph/0409284 +astro-ph/0409285 +astro-ph/0409286 +astro-ph/0409289 +astro-ph/0409290 +astro-ph/0409291 +astro-ph/0409294 +astro-ph/0409295 +astro-ph/0409296 +astro-ph/0409298 +astro-ph/0409299 +astro-ph/0409301 +astro-ph/0409303 +astro-ph/0409305 +astro-ph/0409308 +astro-ph/0409310 +astro-ph/0409311 +astro-ph/0409312 +astro-ph/0409313 +astro-ph/0409315 +astro-ph/0409317 +astro-ph/0409320 +astro-ph/0409321 +astro-ph/0409322 +astro-ph/0409326 +astro-ph/0409332 +astro-ph/0409333 +astro-ph/0409334 +astro-ph/0409336 +astro-ph/0409338 +astro-ph/0409339 +astro-ph/0409340 +astro-ph/0409342 +astro-ph/0409345 +astro-ph/0409346 +astro-ph/0409348 +astro-ph/0409351 +astro-ph/0409352 +astro-ph/0409353 +astro-ph/0409354 +astro-ph/0409355 +astro-ph/0409358 +astro-ph/0409360 +astro-ph/0409362 +astro-ph/0409363 +astro-ph/0409364 +astro-ph/0409366 +astro-ph/0409368 +astro-ph/0409369 +astro-ph/0409370 +astro-ph/0409374 +astro-ph/0409376 +astro-ph/0409382 +astro-ph/0409383 +astro-ph/0409384 +astro-ph/0409385 +astro-ph/0409386 +astro-ph/0409387 +astro-ph/0409388 +astro-ph/0409390 +astro-ph/0409392 +astro-ph/0409393 +astro-ph/0409395 +astro-ph/0409397 +astro-ph/0409398 +astro-ph/0409400 +astro-ph/0409401 +astro-ph/0409402 +astro-ph/0409404 +astro-ph/0409405 +astro-ph/0409407 +astro-ph/0409408 +astro-ph/0409409 +astro-ph/0409410 +astro-ph/0409411 +astro-ph/0409413 +astro-ph/0409416 +astro-ph/0409418 +astro-ph/0409419 +astro-ph/0409420 +astro-ph/0409422 +astro-ph/0409425 +astro-ph/0409428 +astro-ph/0409430 +astro-ph/0409434 +astro-ph/0409435 +astro-ph/0409436 +astro-ph/0409439 +astro-ph/0409440 +astro-ph/0409441 +astro-ph/0409442 +astro-ph/0409443 +astro-ph/0409445 +astro-ph/0409446 +astro-ph/0409447 +astro-ph/0409448 +astro-ph/0409449 +astro-ph/0409450 +astro-ph/0409451 +astro-ph/0409452 +astro-ph/0409454 +astro-ph/0409455 +astro-ph/0409457 +astro-ph/0409459 +astro-ph/0409460 +astro-ph/0409461 +astro-ph/0409462 +astro-ph/0409464 +astro-ph/0409466 +astro-ph/0409467 +astro-ph/0409468 +astro-ph/0409471 +astro-ph/0409475 +astro-ph/0409477 +astro-ph/0409478 +astro-ph/0409480 +astro-ph/0409482 +astro-ph/0409484 +astro-ph/0409485 +astro-ph/0409486 +astro-ph/0409487 +astro-ph/0409488 +astro-ph/0409490 +astro-ph/0409492 +astro-ph/0409493 +astro-ph/0409494 +astro-ph/0409495 +astro-ph/0409497 +astro-ph/0409498 +astro-ph/0409500 +astro-ph/0409501 +astro-ph/0409502 +astro-ph/0409503 +astro-ph/0409504 +astro-ph/0409505 +astro-ph/0409506 +astro-ph/0409507 +astro-ph/0409510 +astro-ph/0409511 +astro-ph/0409512 +astro-ph/0409514 +astro-ph/0409515 +astro-ph/0409516 +astro-ph/0409517 +astro-ph/0409521 +astro-ph/0409522 +astro-ph/0409524 +astro-ph/0409526 +astro-ph/0409529 +astro-ph/0409530 +astro-ph/0409531 +astro-ph/0409532 +astro-ph/0409534 +astro-ph/0409535 +astro-ph/0409537 +astro-ph/0409539 +astro-ph/0409542 +astro-ph/0409544 +astro-ph/0409545 +astro-ph/0409546 +astro-ph/0409548 +astro-ph/0409550 +astro-ph/0409551 +astro-ph/0409554 +astro-ph/0409557 +astro-ph/0409564 +astro-ph/0409565 +astro-ph/0409566 +astro-ph/0409567 +astro-ph/0409568 +astro-ph/0409570 +astro-ph/0409571 +astro-ph/0409572 +astro-ph/0409575 +astro-ph/0409576 +astro-ph/0409577 +astro-ph/0409580 +astro-ph/0409581 +astro-ph/0409582 +astro-ph/0409584 +astro-ph/0409585 +astro-ph/0409587 +astro-ph/0409588 +astro-ph/0409589 +astro-ph/0409591 +astro-ph/0409592 +astro-ph/0409594 +astro-ph/0409595 +astro-ph/0409597 +astro-ph/0409598 +astro-ph/0409599 +astro-ph/0409600 +astro-ph/0409603 +astro-ph/0409604 +astro-ph/0409605 +astro-ph/0409606 +astro-ph/0409607 +astro-ph/0409608 +astro-ph/0409611 +astro-ph/0409612 +astro-ph/0409617 +astro-ph/0409618 +astro-ph/0409619 +astro-ph/0409621 +astro-ph/0409622 +astro-ph/0409623 +astro-ph/0409624 +astro-ph/0409627 +astro-ph/0409628 +astro-ph/0409637 +astro-ph/0409640 +astro-ph/0409643 +astro-ph/0409644 +astro-ph/0409646 +astro-ph/0409650 +astro-ph/0409652 +astro-ph/0409653 +astro-ph/0409654 +astro-ph/0409656 +astro-ph/0409657 +astro-ph/0409658 +astro-ph/0409662 +astro-ph/0409663 +astro-ph/0409666 +astro-ph/0409668 +astro-ph/0409669 +astro-ph/0409670 +astro-ph/0409671 +astro-ph/0409672 +astro-ph/0409673 +astro-ph/0409674 +astro-ph/0409678 +astro-ph/0409679 +astro-ph/0409680 +astro-ph/0409681 +astro-ph/0409682 +astro-ph/0409683 +astro-ph/0409684 +astro-ph/0409687 +astro-ph/0409688 +astro-ph/0409691 +astro-ph/0409692 +astro-ph/0409693 +astro-ph/0409695 +astro-ph/0409696 +astro-ph/0409697 +astro-ph/0409701 +astro-ph/0409702 +astro-ph/0409703 +astro-ph/0409704 +astro-ph/0409705 +astro-ph/0409706 +astro-ph/0409707 +astro-ph/0409708 +astro-ph/0409709 +astro-ph/0409710 +astro-ph/0409711 +astro-ph/0409713 +astro-ph/0409715 +astro-ph/0409717 +astro-ph/0409719 +astro-ph/0409720 +astro-ph/0409723 +astro-ph/0409728 +astro-ph/0409729 +astro-ph/0409730 +astro-ph/0409731 +astro-ph/0409734 +astro-ph/0409735 +astro-ph/0409736 +astro-ph/0409739 +astro-ph/0409740 +astro-ph/0409741 +astro-ph/0409745 +astro-ph/0409748 +astro-ph/0409751 +astro-ph/0409752 +astro-ph/0409753 +astro-ph/0409754 +astro-ph/0409757 +astro-ph/0409758 +astro-ph/0409759 +astro-ph/0409760 +astro-ph/0409762 +astro-ph/0409763 +astro-ph/0409764 +astro-ph/0409766 +astro-ph/0409767 +astro-ph/0409769 +astro-ph/0410002 +astro-ph/0410007 +astro-ph/0410010 +astro-ph/0410011 +astro-ph/0410012 +astro-ph/0410014 +astro-ph/0410015 +astro-ph/0410018 +astro-ph/0410019 +astro-ph/0410024 +astro-ph/0410025 +astro-ph/0410026 +astro-ph/0410027 +astro-ph/0410028 +astro-ph/0410029 +astro-ph/0410032 +astro-ph/0410040 +astro-ph/0410044 +astro-ph/0410045 +astro-ph/0410048 +astro-ph/0410049 +astro-ph/0410050 +astro-ph/0410052 +astro-ph/0410054 +astro-ph/0410057 +astro-ph/0410058 +astro-ph/0410059 +astro-ph/0410060 +astro-ph/0410061 +astro-ph/0410062 +astro-ph/0410064 +astro-ph/0410065 +astro-ph/0410066 +astro-ph/0410068 +astro-ph/0410069 +astro-ph/0410070 +astro-ph/0410071 +astro-ph/0410074 +astro-ph/0410077 +astro-ph/0410084 +astro-ph/0410086 +astro-ph/0410088 +astro-ph/0410090 +astro-ph/0410091 +astro-ph/0410092 +astro-ph/0410093 +astro-ph/0410095 +astro-ph/0410096 +astro-ph/0410099 +astro-ph/0410101 +astro-ph/0410103 +astro-ph/0410106 +astro-ph/0410108 +astro-ph/0410109 +astro-ph/0410110 +astro-ph/0410111 +astro-ph/0410112 +astro-ph/0410113 +astro-ph/0410114 +astro-ph/0410116 +astro-ph/0410117 +astro-ph/0410118 +astro-ph/0410119 +astro-ph/0410121 +astro-ph/0410126 +astro-ph/0410127 +astro-ph/0410128 +astro-ph/0410130 +astro-ph/0410132 +astro-ph/0410133 +astro-ph/0410134 +astro-ph/0410135 +astro-ph/0410137 +astro-ph/0410138 +astro-ph/0410141 +astro-ph/0410142 +astro-ph/0410148 +astro-ph/0410149 +astro-ph/0410151 +astro-ph/0410153 +astro-ph/0410156 +astro-ph/0410157 +astro-ph/0410158 +astro-ph/0410160 +astro-ph/0410162 +astro-ph/0410165 +astro-ph/0410170 +astro-ph/0410171 +astro-ph/0410174 +astro-ph/0410176 +astro-ph/0410177 +astro-ph/0410178 +astro-ph/0410179 +astro-ph/0410180 +astro-ph/0410181 +astro-ph/0410182 +astro-ph/0410183 +astro-ph/0410185 +astro-ph/0410188 +astro-ph/0410191 +astro-ph/0410193 +astro-ph/0410197 +astro-ph/0410202 +astro-ph/0410203 +astro-ph/0410204 +astro-ph/0410206 +astro-ph/0410210 +astro-ph/0410212 +astro-ph/0410219 +astro-ph/0410220 +astro-ph/0410221 +astro-ph/0410223 +astro-ph/0410224 +astro-ph/0410225 +astro-ph/0410226 +astro-ph/0410227 +astro-ph/0410228 +astro-ph/0410229 +astro-ph/0410231 +astro-ph/0410232 +astro-ph/0410233 +astro-ph/0410234 +astro-ph/0410236 +astro-ph/0410237 +astro-ph/0410240 +astro-ph/0410248 +astro-ph/0410249 +astro-ph/0410250 +astro-ph/0410251 +astro-ph/0410254 +astro-ph/0410257 +astro-ph/0410258 +astro-ph/0410259 +astro-ph/0410260 +astro-ph/0410267 +astro-ph/0410268 +astro-ph/0410269 +astro-ph/0410272 +astro-ph/0410273 +astro-ph/0410274 +astro-ph/0410276 +astro-ph/0410278 +astro-ph/0410280 +astro-ph/0410282 +astro-ph/0410283 +astro-ph/0410285 +astro-ph/0410289 +astro-ph/0410292 +astro-ph/0410293 +astro-ph/0410298 +astro-ph/0410300 +astro-ph/0410301 +astro-ph/0410305 +astro-ph/0410306 +astro-ph/0410309 +astro-ph/0410311 +astro-ph/0410314 +astro-ph/0410315 +astro-ph/0410316 +astro-ph/0410318 +astro-ph/0410319 +astro-ph/0410320 +astro-ph/0410322 +astro-ph/0410323 +astro-ph/0410324 +astro-ph/0410325 +astro-ph/0410328 +astro-ph/0410332 +astro-ph/0410333 +astro-ph/0410335 +astro-ph/0410337 +astro-ph/0410338 +astro-ph/0410339 +astro-ph/0410340 +astro-ph/0410341 +astro-ph/0410343 +astro-ph/0410344 +astro-ph/0410348 +astro-ph/0410352 +astro-ph/0410353 +astro-ph/0410357 +astro-ph/0410360 +astro-ph/0410361 +astro-ph/0410362 +astro-ph/0410366 +astro-ph/0410367 +astro-ph/0410370 +astro-ph/0410372 +astro-ph/0410374 +astro-ph/0410376 +astro-ph/0410377 +astro-ph/0410378 +astro-ph/0410379 +astro-ph/0410384 +astro-ph/0410385 +astro-ph/0410386 +astro-ph/0410387 +astro-ph/0410389 +astro-ph/0410390 +astro-ph/0410391 +astro-ph/0410392 +astro-ph/0410393 +astro-ph/0410394 +astro-ph/0410395 +astro-ph/0410396 +astro-ph/0410399 +astro-ph/0410400 +astro-ph/0410402 +astro-ph/0410403 +astro-ph/0410404 +astro-ph/0410405 +astro-ph/0410408 +astro-ph/0410410 +astro-ph/0410411 +astro-ph/0410413 +astro-ph/0410415 +astro-ph/0410418 +astro-ph/0410420 +astro-ph/0410422 +astro-ph/0410423 +astro-ph/0410424 +astro-ph/0410425 +astro-ph/0410426 +astro-ph/0410427 +astro-ph/0410428 +astro-ph/0410429 +astro-ph/0410432 +astro-ph/0410434 +astro-ph/0410436 +astro-ph/0410437 +astro-ph/0410440 +astro-ph/0410441 +astro-ph/0410442 +astro-ph/0410444 +astro-ph/0410445 +astro-ph/0410447 +astro-ph/0410449 +astro-ph/0410452 +astro-ph/0410454 +astro-ph/0410455 +astro-ph/0410456 +astro-ph/0410457 +astro-ph/0410458 +astro-ph/0410459 +astro-ph/0410462 +astro-ph/0410464 +astro-ph/0410471 +astro-ph/0410474 +astro-ph/0410475 +astro-ph/0410477 +astro-ph/0410478 +astro-ph/0410479 +astro-ph/0410481 +astro-ph/0410482 +astro-ph/0410483 +astro-ph/0410484 +astro-ph/0410486 +astro-ph/0410487 +astro-ph/0410488 +astro-ph/0410490 +astro-ph/0410491 +astro-ph/0410492 +astro-ph/0410493 +astro-ph/0410494 +astro-ph/0410495 +astro-ph/0410496 +astro-ph/0410498 +astro-ph/0410499 +astro-ph/0410500 +astro-ph/0410501 +astro-ph/0410504 +astro-ph/0410505 +astro-ph/0410506 +astro-ph/0410508 +astro-ph/0410512 +astro-ph/0410514 +astro-ph/0410515 +astro-ph/0410517 +astro-ph/0410518 +astro-ph/0410519 +astro-ph/0410524 +astro-ph/0410526 +astro-ph/0410533 +astro-ph/0410535 +astro-ph/0410537 +astro-ph/0410538 +astro-ph/0410548 +astro-ph/0410549 +astro-ph/0410550 +astro-ph/0410552 +astro-ph/0410553 +astro-ph/0410554 +astro-ph/0410556 +astro-ph/0410557 +astro-ph/0410559 +astro-ph/0410563 +astro-ph/0410564 +astro-ph/0410565 +astro-ph/0410566 +astro-ph/0410567 +astro-ph/0410568 +astro-ph/0410570 +astro-ph/0410571 +astro-ph/0410572 +astro-ph/0410575 +astro-ph/0410577 +astro-ph/0410579 +astro-ph/0410580 +astro-ph/0410581 +astro-ph/0410582 +astro-ph/0410583 +astro-ph/0410585 +astro-ph/0410589 +astro-ph/0410590 +astro-ph/0410591 +astro-ph/0410592 +astro-ph/0410593 +astro-ph/0410596 +astro-ph/0410597 +astro-ph/0410598 +astro-ph/0410599 +astro-ph/0410600 +astro-ph/0410601 +astro-ph/0410602 +astro-ph/0410603 +astro-ph/0410604 +astro-ph/0410605 +astro-ph/0410606 +astro-ph/0410610 +astro-ph/0410612 +astro-ph/0410613 +astro-ph/0410614 +astro-ph/0410616 +astro-ph/0410617 +astro-ph/0410618 +astro-ph/0410619 +astro-ph/0410625 +astro-ph/0410626 +astro-ph/0410627 +astro-ph/0410628 +astro-ph/0410629 +astro-ph/0410630 +astro-ph/0410631 +astro-ph/0410632 +astro-ph/0410633 +astro-ph/0410635 +astro-ph/0410636 +astro-ph/0410638 +astro-ph/0410639 +astro-ph/0410640 +astro-ph/0410641 +astro-ph/0410644 +astro-ph/0410647 +astro-ph/0410649 +astro-ph/0410650 +astro-ph/0410651 +astro-ph/0410655 +astro-ph/0410657 +astro-ph/0410658 +astro-ph/0410660 +astro-ph/0410662 +astro-ph/0410663 +astro-ph/0410665 +astro-ph/0410667 +astro-ph/0410669 +astro-ph/0410671 +astro-ph/0410673 +astro-ph/0410676 +astro-ph/0410677 +astro-ph/0410679 +astro-ph/0410681 +astro-ph/0410682 +astro-ph/0410686 +astro-ph/0410687 +astro-ph/0410688 +astro-ph/0410691 +astro-ph/0410692 +astro-ph/0410693 +astro-ph/0410694 +astro-ph/0410697 +astro-ph/0410704 +astro-ph/0410705 +astro-ph/0410706 +astro-ph/0410708 +astro-ph/0410709 +astro-ph/0410714 +astro-ph/0410715 +astro-ph/0410718 +astro-ph/0410719 +astro-ph/0410720 +astro-ph/0410721 +astro-ph/0410722 +astro-ph/0410723 +astro-ph/0410724 +astro-ph/0410727 +astro-ph/0410729 +astro-ph/0410730 +astro-ph/0410732 +astro-ph/0410733 +astro-ph/0410734 +astro-ph/0410737 +astro-ph/0410742 +astro-ph/0410743 +astro-ph/0410744 +astro-ph/0410747 +astro-ph/0410748 +astro-ph/0410750 +astro-ph/0411001 +astro-ph/0411003 +astro-ph/0411006 +astro-ph/0411010 +astro-ph/0411012 +astro-ph/0411016 +astro-ph/0411020 +astro-ph/0411021 +astro-ph/0411023 +astro-ph/0411024 +astro-ph/0411026 +astro-ph/0411027 +astro-ph/0411028 +astro-ph/0411029 +astro-ph/0411032 +astro-ph/0411033 +astro-ph/0411034 +astro-ph/0411035 +astro-ph/0411037 +astro-ph/0411038 +astro-ph/0411039 +astro-ph/0411041 +astro-ph/0411042 +astro-ph/0411046 +astro-ph/0411047 +astro-ph/0411048 +astro-ph/0411051 +astro-ph/0411054 +astro-ph/0411056 +astro-ph/0411058 +astro-ph/0411060 +astro-ph/0411061 +astro-ph/0411062 +astro-ph/0411063 +astro-ph/0411068 +astro-ph/0411070 +astro-ph/0411072 +astro-ph/0411073 +astro-ph/0411076 +astro-ph/0411077 +astro-ph/0411079 +astro-ph/0411080 +astro-ph/0411081 +astro-ph/0411082 +astro-ph/0411085 +astro-ph/0411086 +astro-ph/0411087 +astro-ph/0411088 +astro-ph/0411089 +astro-ph/0411094 +astro-ph/0411095 +astro-ph/0411097 +astro-ph/0411098 +astro-ph/0411099 +astro-ph/0411100 +astro-ph/0411101 +astro-ph/0411103 +astro-ph/0411105 +astro-ph/0411106 +astro-ph/0411107 +astro-ph/0411108 +astro-ph/0411109 +astro-ph/0411112 +astro-ph/0411115 +astro-ph/0411116 +astro-ph/0411117 +astro-ph/0411118 +astro-ph/0411119 +astro-ph/0411120 +astro-ph/0411121 +astro-ph/0411123 +astro-ph/0411125 +astro-ph/0411128 +astro-ph/0411129 +astro-ph/0411131 +astro-ph/0411132 +astro-ph/0411133 +astro-ph/0411135 +astro-ph/0411136 +astro-ph/0411137 +astro-ph/0411140 +astro-ph/0411141 +astro-ph/0411142 +astro-ph/0411145 +astro-ph/0411147 +astro-ph/0411148 +astro-ph/0411152 +astro-ph/0411154 +astro-ph/0411155 +astro-ph/0411156 +astro-ph/0411157 +astro-ph/0411158 +astro-ph/0411159 +astro-ph/0411162 +astro-ph/0411165 +astro-ph/0411168 +astro-ph/0411169 +astro-ph/0411170 +astro-ph/0411173 +astro-ph/0411175 +astro-ph/0411177 +astro-ph/0411178 +astro-ph/0411179 +astro-ph/0411183 +astro-ph/0411184 +astro-ph/0411185 +astro-ph/0411187 +astro-ph/0411189 +astro-ph/0411191 +astro-ph/0411196 +astro-ph/0411197 +astro-ph/0411198 +astro-ph/0411199 +astro-ph/0411202 +astro-ph/0411204 +astro-ph/0411206 +astro-ph/0411210 +astro-ph/0411212 +astro-ph/0411214 +astro-ph/0411216 +astro-ph/0411217 +astro-ph/0411219 +astro-ph/0411221 +astro-ph/0411223 +astro-ph/0411224 +astro-ph/0411230 +astro-ph/0411231 +astro-ph/0411232 +astro-ph/0411234 +astro-ph/0411235 +astro-ph/0411236 +astro-ph/0411237 +astro-ph/0411238 +astro-ph/0411239 +astro-ph/0411242 +astro-ph/0411244 +astro-ph/0411246 +astro-ph/0411248 +astro-ph/0411251 +astro-ph/0411254 +astro-ph/0411256 +astro-ph/0411259 +astro-ph/0411261 +astro-ph/0411266 +astro-ph/0411267 +astro-ph/0411270 +astro-ph/0411272 +astro-ph/0411273 +astro-ph/0411274 +astro-ph/0411277 +astro-ph/0411280 +astro-ph/0411283 +astro-ph/0411284 +astro-ph/0411286 +astro-ph/0411287 +astro-ph/0411288 +astro-ph/0411289 +astro-ph/0411291 +astro-ph/0411293 +astro-ph/0411295 +astro-ph/0411296 +astro-ph/0411297 +astro-ph/0411298 +astro-ph/0411300 +astro-ph/0411302 +astro-ph/0411304 +astro-ph/0411305 +astro-ph/0411306 +astro-ph/0411307 +astro-ph/0411308 +astro-ph/0411309 +astro-ph/0411311 +astro-ph/0411312 +astro-ph/0411313 +astro-ph/0411314 +astro-ph/0411315 +astro-ph/0411317 +astro-ph/0411318 +astro-ph/0411319 +astro-ph/0411320 +astro-ph/0411322 +astro-ph/0411323 +astro-ph/0411324 +astro-ph/0411325 +astro-ph/0411326 +astro-ph/0411328 +astro-ph/0411331 +astro-ph/0411336 +astro-ph/0411340 +astro-ph/0411341 +astro-ph/0411342 +astro-ph/0411345 +astro-ph/0411347 +astro-ph/0411348 +astro-ph/0411349 +astro-ph/0411351 +astro-ph/0411352 +astro-ph/0411354 +astro-ph/0411355 +astro-ph/0411356 +astro-ph/0411357 +astro-ph/0411359 +astro-ph/0411360 +astro-ph/0411361 +astro-ph/0411364 +astro-ph/0411365 +astro-ph/0411366 +astro-ph/0411367 +astro-ph/0411369 +astro-ph/0411370 +astro-ph/0411372 +astro-ph/0411373 +astro-ph/0411374 +astro-ph/0411375 +astro-ph/0411376 +astro-ph/0411378 +astro-ph/0411379 +astro-ph/0411383 +astro-ph/0411385 +astro-ph/0411387 +astro-ph/0411389 +astro-ph/0411392 +astro-ph/0411393 +astro-ph/0411395 +astro-ph/0411397 +astro-ph/0411398 +astro-ph/0411399 +astro-ph/0411400 +astro-ph/0411401 +astro-ph/0411407 +astro-ph/0411408 +astro-ph/0411411 +astro-ph/0411413 +astro-ph/0411417 +astro-ph/0411421 +astro-ph/0411422 +astro-ph/0411423 +astro-ph/0411424 +astro-ph/0411425 +astro-ph/0411427 +astro-ph/0411428 +astro-ph/0411429 +astro-ph/0411432 +astro-ph/0411433 +astro-ph/0411434 +astro-ph/0411435 +astro-ph/0411441 +astro-ph/0411443 +astro-ph/0411444 +astro-ph/0411445 +astro-ph/0411449 +astro-ph/0411451 +astro-ph/0411452 +astro-ph/0411455 +astro-ph/0411457 +astro-ph/0411460 +astro-ph/0411462 +astro-ph/0411464 +astro-ph/0411466 +astro-ph/0411467 +astro-ph/0411470 +astro-ph/0411471 +astro-ph/0411477 +astro-ph/0411478 +astro-ph/0411481 +astro-ph/0411482 +astro-ph/0411484 +astro-ph/0411486 +astro-ph/0411489 +astro-ph/0411490 +astro-ph/0411494 +astro-ph/0411495 +astro-ph/0411496 +astro-ph/0411499 +astro-ph/0411500 +astro-ph/0411502 +astro-ph/0411504 +astro-ph/0411505 +astro-ph/0411508 +astro-ph/0411515 +astro-ph/0411516 +astro-ph/0411521 +astro-ph/0411523 +astro-ph/0411526 +astro-ph/0411527 +astro-ph/0411528 +astro-ph/0411529 +astro-ph/0411530 +astro-ph/0411531 +astro-ph/0411535 +astro-ph/0411541 +astro-ph/0411544 +astro-ph/0411545 +astro-ph/0411547 +astro-ph/0411550 +astro-ph/0411551 +astro-ph/0411554 +astro-ph/0411555 +astro-ph/0411556 +astro-ph/0411558 +astro-ph/0411559 +astro-ph/0411560 +astro-ph/0411561 +astro-ph/0411562 +astro-ph/0411564 +astro-ph/0411565 +astro-ph/0411566 +astro-ph/0411567 +astro-ph/0411570 +astro-ph/0411571 +astro-ph/0411577 +astro-ph/0411579 +astro-ph/0411580 +astro-ph/0411583 +astro-ph/0411587 +astro-ph/0411590 +astro-ph/0411591 +astro-ph/0411592 +astro-ph/0411593 +astro-ph/0411594 +astro-ph/0411596 +astro-ph/0411598 +astro-ph/0411599 +astro-ph/0411600 +astro-ph/0411601 +astro-ph/0411603 +astro-ph/0411604 +astro-ph/0411606 +astro-ph/0411607 +astro-ph/0411610 +astro-ph/0411613 +astro-ph/0411614 +astro-ph/0411615 +astro-ph/0411616 +astro-ph/0411617 +astro-ph/0411618 +astro-ph/0411619 +astro-ph/0411621 +astro-ph/0411625 +astro-ph/0411627 +astro-ph/0411628 +astro-ph/0411631 +astro-ph/0411633 +astro-ph/0411636 +astro-ph/0411638 +astro-ph/0411639 +astro-ph/0411642 +astro-ph/0411645 +astro-ph/0411647 +astro-ph/0411648 +astro-ph/0411650 +astro-ph/0411651 +astro-ph/0411652 +astro-ph/0411653 +astro-ph/0411655 +astro-ph/0411656 +astro-ph/0411657 +astro-ph/0411660 +astro-ph/0411661 +astro-ph/0411662 +astro-ph/0411663 +astro-ph/0411667 +astro-ph/0411669 +astro-ph/0411673 +astro-ph/0411676 +astro-ph/0411677 +astro-ph/0411678 +astro-ph/0411682 +astro-ph/0411683 +astro-ph/0411684 +astro-ph/0411694 +astro-ph/0411695 +astro-ph/0411696 +astro-ph/0411697 +astro-ph/0411701 +astro-ph/0411702 +astro-ph/0411703 +astro-ph/0411704 +astro-ph/0411705 +astro-ph/0411706 +astro-ph/0411707 +astro-ph/0411709 +astro-ph/0411710 +astro-ph/0411711 +astro-ph/0411712 +astro-ph/0411713 +astro-ph/0411715 +astro-ph/0411716 +astro-ph/0411717 +astro-ph/0411720 +astro-ph/0411721 +astro-ph/0411724 +astro-ph/0411725 +astro-ph/0411726 +astro-ph/0411727 +astro-ph/0411729 +astro-ph/0411730 +astro-ph/0411731 +astro-ph/0411733 +astro-ph/0411734 +astro-ph/0411735 +astro-ph/0411736 +astro-ph/0411742 +astro-ph/0411743 +astro-ph/0411744 +astro-ph/0411747 +astro-ph/0411748 +astro-ph/0411750 +astro-ph/0411752 +astro-ph/0411753 +astro-ph/0411756 +astro-ph/0411757 +astro-ph/0411758 +astro-ph/0411760 +astro-ph/0411762 +astro-ph/0411764 +astro-ph/0411766 +astro-ph/0411767 +astro-ph/0411768 +astro-ph/0411769 +astro-ph/0411770 +astro-ph/0411771 +astro-ph/0411772 +astro-ph/0411775 +astro-ph/0411776 +astro-ph/0411778 +astro-ph/0411779 +astro-ph/0411780 +astro-ph/0411783 +astro-ph/0411784 +astro-ph/0411785 +astro-ph/0411786 +astro-ph/0411787 +astro-ph/0411788 +astro-ph/0411790 +astro-ph/0411791 +astro-ph/0411793 +astro-ph/0411795 +astro-ph/0411796 +astro-ph/0411798 +astro-ph/0411799 +astro-ph/0411800 +astro-ph/0411801 +astro-ph/0411802 +astro-ph/0412001 +astro-ph/0412004 +astro-ph/0412005 +astro-ph/0412006 +astro-ph/0412011 +astro-ph/0412013 +astro-ph/0412014 +astro-ph/0412017 +astro-ph/0412019 +astro-ph/0412020 +astro-ph/0412021 +astro-ph/0412023 +astro-ph/0412024 +astro-ph/0412027 +astro-ph/0412030 +astro-ph/0412031 +astro-ph/0412032 +astro-ph/0412033 +astro-ph/0412034 +astro-ph/0412036 +astro-ph/0412038 +astro-ph/0412039 +astro-ph/0412040 +astro-ph/0412041 +astro-ph/0412042 +astro-ph/0412043 +astro-ph/0412044 +astro-ph/0412045 +astro-ph/0412047 +astro-ph/0412051 +astro-ph/0412052 +astro-ph/0412055 +astro-ph/0412056 +astro-ph/0412057 +astro-ph/0412058 +astro-ph/0412063 +astro-ph/0412064 +astro-ph/0412068 +astro-ph/0412073 +astro-ph/0412074 +astro-ph/0412075 +astro-ph/0412076 +astro-ph/0412083 +astro-ph/0412084 +astro-ph/0412085 +astro-ph/0412086 +astro-ph/0412088 +astro-ph/0412089 +astro-ph/0412090 +astro-ph/0412091 +astro-ph/0412098 +astro-ph/0412099 +astro-ph/0412100 +astro-ph/0412102 +astro-ph/0412104 +astro-ph/0412105 +astro-ph/0412106 +astro-ph/0412107 +astro-ph/0412108 +astro-ph/0412109 +astro-ph/0412110 +astro-ph/0412111 +astro-ph/0412113 +astro-ph/0412115 +astro-ph/0412116 +astro-ph/0412118 +astro-ph/0412120 +astro-ph/0412123 +astro-ph/0412124 +astro-ph/0412125 +astro-ph/0412127 +astro-ph/0412128 +astro-ph/0412129 +astro-ph/0412131 +astro-ph/0412133 +astro-ph/0412136 +astro-ph/0412137 +astro-ph/0412140 +astro-ph/0412141 +astro-ph/0412143 +astro-ph/0412145 +astro-ph/0412146 +astro-ph/0412147 +astro-ph/0412149 +astro-ph/0412150 +astro-ph/0412152 +astro-ph/0412153 +astro-ph/0412155 +astro-ph/0412156 +astro-ph/0412157 +astro-ph/0412158 +astro-ph/0412159 +astro-ph/0412162 +astro-ph/0412163 +astro-ph/0412165 +astro-ph/0412167 +astro-ph/0412168 +astro-ph/0412169 +astro-ph/0412172 +astro-ph/0412178 +astro-ph/0412179 +astro-ph/0412183 +astro-ph/0412184 +astro-ph/0412186 +astro-ph/0412187 +astro-ph/0412188 +astro-ph/0412189 +astro-ph/0412190 +astro-ph/0412193 +astro-ph/0412194 +astro-ph/0412195 +astro-ph/0412196 +astro-ph/0412197 +astro-ph/0412199 +astro-ph/0412201 +astro-ph/0412202 +astro-ph/0412205 +astro-ph/0412207 +astro-ph/0412209 +astro-ph/0412215 +astro-ph/0412217 +astro-ph/0412219 +astro-ph/0412220 +astro-ph/0412221 +astro-ph/0412222 +astro-ph/0412223 +astro-ph/0412225 +astro-ph/0412226 +astro-ph/0412227 +astro-ph/0412228 +astro-ph/0412229 +astro-ph/0412232 +astro-ph/0412233 +astro-ph/0412235 +astro-ph/0412236 +astro-ph/0412237 +astro-ph/0412239 +astro-ph/0412240 +astro-ph/0412241 +astro-ph/0412244 +astro-ph/0412245 +astro-ph/0412248 +astro-ph/0412251 +astro-ph/0412252 +astro-ph/0412253 +astro-ph/0412254 +astro-ph/0412255 +astro-ph/0412259 +astro-ph/0412262 +astro-ph/0412263 +astro-ph/0412264 +astro-ph/0412265 +astro-ph/0412270 +astro-ph/0412272 +astro-ph/0412274 +astro-ph/0412275 +astro-ph/0412276 +astro-ph/0412277 +astro-ph/0412280 +astro-ph/0412282 +astro-ph/0412283 +astro-ph/0412284 +astro-ph/0412285 +astro-ph/0412297 +astro-ph/0412300 +astro-ph/0412304 +astro-ph/0412307 +astro-ph/0412309 +astro-ph/0412311 +astro-ph/0412314 +astro-ph/0412315 +astro-ph/0412316 +astro-ph/0412317 +astro-ph/0412318 +astro-ph/0412319 +astro-ph/0412320 +astro-ph/0412327 +astro-ph/0412328 +astro-ph/0412330 +astro-ph/0412332 +astro-ph/0412335 +astro-ph/0412336 +astro-ph/0412337 +astro-ph/0412338 +astro-ph/0412339 +astro-ph/0412340 +astro-ph/0412342 +astro-ph/0412344 +astro-ph/0412345 +astro-ph/0412350 +astro-ph/0412351 +astro-ph/0412352 +astro-ph/0412353 +astro-ph/0412355 +astro-ph/0412356 +astro-ph/0412358 +astro-ph/0412360 +astro-ph/0412361 +astro-ph/0412363 +astro-ph/0412365 +astro-ph/0412367 +astro-ph/0412368 +astro-ph/0412369 +astro-ph/0412372 +astro-ph/0412373 +astro-ph/0412374 +astro-ph/0412375 +astro-ph/0412376 +astro-ph/0412377 +astro-ph/0412381 +astro-ph/0412383 +astro-ph/0412384 +astro-ph/0412387 +astro-ph/0412389 +astro-ph/0412390 +astro-ph/0412393 +astro-ph/0412397 +astro-ph/0412400 +astro-ph/0412403 +astro-ph/0412405 +astro-ph/0412406 +astro-ph/0412407 +astro-ph/0412409 +astro-ph/0412410 +astro-ph/0412411 +astro-ph/0412412 +astro-ph/0412414 +astro-ph/0412417 +astro-ph/0412420 +astro-ph/0412422 +astro-ph/0412423 +astro-ph/0412425 +astro-ph/0412427 +astro-ph/0412428 +astro-ph/0412430 +astro-ph/0412431 +astro-ph/0412435 +astro-ph/0412436 +astro-ph/0412440 +astro-ph/0412441 +astro-ph/0412443 +astro-ph/0412446 +astro-ph/0412447 +astro-ph/0412448 +astro-ph/0412451 +astro-ph/0412452 +astro-ph/0412453 +astro-ph/0412454 +astro-ph/0412456 +astro-ph/0412460 +astro-ph/0412462 +astro-ph/0412464 +astro-ph/0412466 +astro-ph/0412468 +astro-ph/0412474 +astro-ph/0412475 +astro-ph/0412476 +astro-ph/0412477 +astro-ph/0412478 +astro-ph/0412480 +astro-ph/0412482 +astro-ph/0412483 +astro-ph/0412485 +astro-ph/0412487 +astro-ph/0412488 +astro-ph/0412489 +astro-ph/0412490 +astro-ph/0412491 +astro-ph/0412492 +astro-ph/0412493 +astro-ph/0412494 +astro-ph/0412495 +astro-ph/0412496 +astro-ph/0412499 +astro-ph/0412500 +astro-ph/0412501 +astro-ph/0412504 +astro-ph/0412506 +astro-ph/0412507 +astro-ph/0412509 +astro-ph/0412510 +astro-ph/0412514 +astro-ph/0412516 +astro-ph/0412517 +astro-ph/0412520 +astro-ph/0412521 +astro-ph/0412523 +astro-ph/0412524 +astro-ph/0412525 +astro-ph/0412526 +astro-ph/0412527 +astro-ph/0412528 +astro-ph/0412530 +astro-ph/0412531 +astro-ph/0412533 +astro-ph/0412534 +astro-ph/0412537 +astro-ph/0412539 +astro-ph/0412540 +astro-ph/0412542 +astro-ph/0412545 +astro-ph/0412547 +astro-ph/0412550 +astro-ph/0412551 +astro-ph/0412553 +astro-ph/0412554 +astro-ph/0412555 +astro-ph/0412556 +astro-ph/0412557 +astro-ph/0412560 +astro-ph/0412561 +astro-ph/0412564 +astro-ph/0412565 +astro-ph/0412566 +astro-ph/0412569 +astro-ph/0412570 +astro-ph/0412571 +astro-ph/0412575 +astro-ph/0412576 +astro-ph/0412577 +astro-ph/0412578 +astro-ph/0412579 +astro-ph/0412580 +astro-ph/0412581 +astro-ph/0412583 +astro-ph/0412586 +astro-ph/0412587 +astro-ph/0412588 +astro-ph/0412592 +astro-ph/0412594 +astro-ph/0412595 +astro-ph/0412598 +astro-ph/0412599 +astro-ph/0412600 +astro-ph/0412601 +astro-ph/0412602 +astro-ph/0412604 +astro-ph/0412606 +astro-ph/0412608 +astro-ph/0412609 +astro-ph/0412611 +astro-ph/0412614 +astro-ph/0412616 +astro-ph/0412621 +astro-ph/0412623 +astro-ph/0412625 +astro-ph/0412627 +astro-ph/0412630 +astro-ph/0412632 +astro-ph/0412633 +astro-ph/0412634 +astro-ph/0412635 +astro-ph/0412636 +astro-ph/0412637 +astro-ph/0412642 +astro-ph/0412644 +astro-ph/0412654 +astro-ph/0412662 +astro-ph/0412665 +astro-ph/0412668 +astro-ph/0412672 +astro-ph/0412697 +astro-ph/0412698 +astro-ph/0412699 +astro-ph/0412700 +astro-ph/0412705 +astro-ph/0412706 +astro-ph/0501002 +astro-ph/0501004 +astro-ph/0501005 +astro-ph/0501008 +astro-ph/0501010 +astro-ph/0501012 +astro-ph/0501021 +astro-ph/0501022 +astro-ph/0501024 +astro-ph/0501026 +astro-ph/0501029 +astro-ph/0501031 +astro-ph/0501032 +astro-ph/0501034 +astro-ph/0501036 +astro-ph/0501037 +astro-ph/0501044 +astro-ph/0501045 +astro-ph/0501047 +astro-ph/0501048 +astro-ph/0501051 +astro-ph/0501052 +astro-ph/0501053 +astro-ph/0501054 +astro-ph/0501056 +astro-ph/0501058 +astro-ph/0501060 +astro-ph/0501061 +astro-ph/0501062 +astro-ph/0501064 +astro-ph/0501066 +astro-ph/0501067 +astro-ph/0501070 +astro-ph/0501071 +astro-ph/0501075 +astro-ph/0501076 +astro-ph/0501078 +astro-ph/0501080 +astro-ph/0501083 +astro-ph/0501085 +astro-ph/0501086 +astro-ph/0501087 +astro-ph/0501088 +astro-ph/0501091 +astro-ph/0501093 +astro-ph/0501094 +astro-ph/0501095 +astro-ph/0501097 +astro-ph/0501098 +astro-ph/0501099 +astro-ph/0501100 +astro-ph/0501101 +astro-ph/0501102 +astro-ph/0501103 +astro-ph/0501105 +astro-ph/0501107 +astro-ph/0501108 +astro-ph/0501109 +astro-ph/0501110 +astro-ph/0501111 +astro-ph/0501114 +astro-ph/0501118 +astro-ph/0501120 +astro-ph/0501122 +astro-ph/0501123 +astro-ph/0501126 +astro-ph/0501127 +astro-ph/0501128 +astro-ph/0501131 +astro-ph/0501133 +astro-ph/0501134 +astro-ph/0501136 +astro-ph/0501139 +astro-ph/0501140 +astro-ph/0501141 +astro-ph/0501142 +astro-ph/0501143 +astro-ph/0501144 +astro-ph/0501145 +astro-ph/0501147 +astro-ph/0501149 +astro-ph/0501150 +astro-ph/0501151 +astro-ph/0501152 +astro-ph/0501154 +astro-ph/0501156 +astro-ph/0501158 +astro-ph/0501159 +astro-ph/0501161 +astro-ph/0501162 +astro-ph/0501163 +astro-ph/0501164 +astro-ph/0501165 +astro-ph/0501167 +astro-ph/0501169 +astro-ph/0501172 +astro-ph/0501173 +astro-ph/0501175 +astro-ph/0501177 +astro-ph/0501178 +astro-ph/0501179 +astro-ph/0501181 +astro-ph/0501182 +astro-ph/0501183 +astro-ph/0501184 +astro-ph/0501185 +astro-ph/0501186 +astro-ph/0501187 +astro-ph/0501188 +astro-ph/0501190 +astro-ph/0501193 +astro-ph/0501196 +astro-ph/0501197 +astro-ph/0501198 +astro-ph/0501199 +astro-ph/0501200 +astro-ph/0501201 +astro-ph/0501202 +astro-ph/0501204 +astro-ph/0501205 +astro-ph/0501206 +astro-ph/0501208 +astro-ph/0501210 +astro-ph/0501212 +astro-ph/0501214 +astro-ph/0501216 +astro-ph/0501217 +astro-ph/0501218 +astro-ph/0501219 +astro-ph/0501221 +astro-ph/0501225 +astro-ph/0501228 +astro-ph/0501230 +astro-ph/0501232 +astro-ph/0501233 +astro-ph/0501237 +astro-ph/0501238 +astro-ph/0501240 +astro-ph/0501241 +astro-ph/0501242 +astro-ph/0501245 +astro-ph/0501246 +astro-ph/0501248 +astro-ph/0501249 +astro-ph/0501250 +astro-ph/0501251 +astro-ph/0501253 +astro-ph/0501254 +astro-ph/0501257 +astro-ph/0501259 +astro-ph/0501262 +astro-ph/0501263 +astro-ph/0501267 +astro-ph/0501269 +astro-ph/0501270 +astro-ph/0501271 +astro-ph/0501272 +astro-ph/0501273 +astro-ph/0501277 +astro-ph/0501278 +astro-ph/0501279 +astro-ph/0501280 +astro-ph/0501281 +astro-ph/0501282 +astro-ph/0501283 +astro-ph/0501285 +astro-ph/0501286 +astro-ph/0501287 +astro-ph/0501300 +astro-ph/0501301 +astro-ph/0501304 +astro-ph/0501305 +astro-ph/0501306 +astro-ph/0501308 +astro-ph/0501309 +astro-ph/0501311 +astro-ph/0501312 +astro-ph/0501315 +astro-ph/0501318 +astro-ph/0501320 +astro-ph/0501321 +astro-ph/0501322 +astro-ph/0501323 +astro-ph/0501325 +astro-ph/0501326 +astro-ph/0501327 +astro-ph/0501328 +astro-ph/0501330 +astro-ph/0501331 +astro-ph/0501333 +astro-ph/0501336 +astro-ph/0501339 +astro-ph/0501342 +astro-ph/0501343 +astro-ph/0501344 +astro-ph/0501345 +astro-ph/0501346 +astro-ph/0501349 +astro-ph/0501350 +astro-ph/0501352 +astro-ph/0501353 +astro-ph/0501354 +astro-ph/0501356 +astro-ph/0501357 +astro-ph/0501358 +astro-ph/0501359 +astro-ph/0501360 +astro-ph/0501361 +astro-ph/0501364 +astro-ph/0501366 +astro-ph/0501370 +astro-ph/0501371 +astro-ph/0501372 +astro-ph/0501374 +astro-ph/0501375 +astro-ph/0501377 +astro-ph/0501378 +astro-ph/0501379 +astro-ph/0501380 +astro-ph/0501382 +astro-ph/0501383 +astro-ph/0501384 +astro-ph/0501385 +astro-ph/0501386 +astro-ph/0501389 +astro-ph/0501390 +astro-ph/0501391 +astro-ph/0501392 +astro-ph/0501394 +astro-ph/0501395 +astro-ph/0501396 +astro-ph/0501397 +astro-ph/0501398 +astro-ph/0501399 +astro-ph/0501401 +astro-ph/0501402 +astro-ph/0501404 +astro-ph/0501405 +astro-ph/0501406 +astro-ph/0501407 +astro-ph/0501413 +astro-ph/0501414 +astro-ph/0501415 +astro-ph/0501417 +astro-ph/0501418 +astro-ph/0501419 +astro-ph/0501421 +astro-ph/0501425 +astro-ph/0501426 +astro-ph/0501428 +astro-ph/0501432 +astro-ph/0501433 +astro-ph/0501434 +astro-ph/0501436 +astro-ph/0501442 +astro-ph/0501443 +astro-ph/0501446 +astro-ph/0501447 +astro-ph/0501448 +astro-ph/0501449 +astro-ph/0501450 +astro-ph/0501452 +astro-ph/0501453 +astro-ph/0501455 +astro-ph/0501457 +astro-ph/0501458 +astro-ph/0501461 +astro-ph/0501463 +astro-ph/0501464 +astro-ph/0501465 +astro-ph/0501469 +astro-ph/0501470 +astro-ph/0501471 +astro-ph/0501472 +astro-ph/0501473 +astro-ph/0501476 +astro-ph/0501477 +astro-ph/0501479 +astro-ph/0501480 +astro-ph/0501481 +astro-ph/0501482 +astro-ph/0501483 +astro-ph/0501484 +astro-ph/0501485 +astro-ph/0501486 +astro-ph/0501487 +astro-ph/0501489 +astro-ph/0501490 +astro-ph/0501491 +astro-ph/0501493 +astro-ph/0501497 +astro-ph/0501498 +astro-ph/0501500 +astro-ph/0501501 +astro-ph/0501502 +astro-ph/0501503 +astro-ph/0501504 +astro-ph/0501505 +astro-ph/0501508 +astro-ph/0501511 +astro-ph/0501513 +astro-ph/0501514 +astro-ph/0501516 +astro-ph/0501517 +astro-ph/0501518 +astro-ph/0501520 +astro-ph/0501523 +astro-ph/0501524 +astro-ph/0501525 +astro-ph/0501528 +astro-ph/0501532 +astro-ph/0501533 +astro-ph/0501534 +astro-ph/0501535 +astro-ph/0501536 +astro-ph/0501537 +astro-ph/0501538 +astro-ph/0501539 +astro-ph/0501541 +astro-ph/0501542 +astro-ph/0501543 +astro-ph/0501545 +astro-ph/0501546 +astro-ph/0501547 +astro-ph/0501548 +astro-ph/0501550 +astro-ph/0501551 +astro-ph/0501552 +astro-ph/0501553 +astro-ph/0501556 +astro-ph/0501557 +astro-ph/0501559 +astro-ph/0501560 +astro-ph/0501561 +astro-ph/0501562 +astro-ph/0501563 +astro-ph/0501564 +astro-ph/0501566 +astro-ph/0501567 +astro-ph/0501570 +astro-ph/0501574 +astro-ph/0501575 +astro-ph/0501576 +astro-ph/0501577 +astro-ph/0501581 +astro-ph/0501582 +astro-ph/0501583 +astro-ph/0501585 +astro-ph/0501587 +astro-ph/0501588 +astro-ph/0501589 +astro-ph/0501590 +astro-ph/0501592 +astro-ph/0501593 +astro-ph/0501595 +astro-ph/0501596 +astro-ph/0501597 +astro-ph/0501599 +astro-ph/0501602 +astro-ph/0501604 +astro-ph/0501605 +astro-ph/0501606 +astro-ph/0501608 +astro-ph/0501611 +astro-ph/0501614 +astro-ph/0501615 +astro-ph/0501619 +astro-ph/0501620 +astro-ph/0501621 +astro-ph/0501623 +astro-ph/0501624 +astro-ph/0501625 +astro-ph/0501627 +astro-ph/0501628 +astro-ph/0501629 +astro-ph/0501630 +astro-ph/0501631 +astro-ph/0501632 +astro-ph/0501633 +astro-ph/0501634 +astro-ph/0501635 +astro-ph/0501636 +astro-ph/0501638 +astro-ph/0501641 +astro-ph/0501644 +astro-ph/0501645 +astro-ph/0501646 +astro-ph/0501647 +astro-ph/0501648 +astro-ph/0501649 +astro-ph/0501650 +astro-ph/0501652 +astro-ph/0501654 +astro-ph/0501655 +astro-ph/0501657 +astro-ph/0501659 +astro-ph/0501660 +astro-ph/0501661 +astro-ph/0501662 +astro-ph/0501663 +astro-ph/0501664 +astro-ph/0501665 +astro-ph/0501666 +astro-ph/0501668 +astro-ph/0501669 +astro-ph/0501670 +astro-ph/0501671 +astro-ph/0501673 +astro-ph/0501675 +astro-ph/0501676 +astro-ph/0501677 +astro-ph/0501679 +astro-ph/0502001 +astro-ph/0502002 +astro-ph/0502004 +astro-ph/0502005 +astro-ph/0502007 +astro-ph/0502008 +astro-ph/0502009 +astro-ph/0502010 +astro-ph/0502011 +astro-ph/0502014 +astro-ph/0502015 +astro-ph/0502016 +astro-ph/0502018 +astro-ph/0502021 +astro-ph/0502023 +astro-ph/0502024 +astro-ph/0502025 +astro-ph/0502026 +astro-ph/0502027 +astro-ph/0502028 +astro-ph/0502031 +astro-ph/0502035 +astro-ph/0502036 +astro-ph/0502037 +astro-ph/0502038 +astro-ph/0502040 +astro-ph/0502041 +astro-ph/0502042 +astro-ph/0502043 +astro-ph/0502045 +astro-ph/0502047 +astro-ph/0502051 +astro-ph/0502052 +astro-ph/0502054 +astro-ph/0502055 +astro-ph/0502056 +astro-ph/0502057 +astro-ph/0502058 +astro-ph/0502059 +astro-ph/0502060 +astro-ph/0502061 +astro-ph/0502062 +astro-ph/0502063 +astro-ph/0502064 +astro-ph/0502066 +astro-ph/0502067 +astro-ph/0502068 +astro-ph/0502070 +astro-ph/0502071 +astro-ph/0502072 +astro-ph/0502073 +astro-ph/0502074 +astro-ph/0502075 +astro-ph/0502076 +astro-ph/0502077 +astro-ph/0502079 +astro-ph/0502081 +astro-ph/0502082 +astro-ph/0502083 +astro-ph/0502084 +astro-ph/0502085 +astro-ph/0502086 +astro-ph/0502089 +astro-ph/0502091 +astro-ph/0502092 +astro-ph/0502094 +astro-ph/0502095 +astro-ph/0502096 +astro-ph/0502098 +astro-ph/0502100 +astro-ph/0502101 +astro-ph/0502103 +astro-ph/0502104 +astro-ph/0502106 +astro-ph/0502107 +astro-ph/0502108 +astro-ph/0502109 +astro-ph/0502112 +astro-ph/0502113 +astro-ph/0502114 +astro-ph/0502115 +astro-ph/0502119 +astro-ph/0502120 +astro-ph/0502121 +astro-ph/0502122 +astro-ph/0502124 +astro-ph/0502125 +astro-ph/0502126 +astro-ph/0502127 +astro-ph/0502128 +astro-ph/0502129 +astro-ph/0502130 +astro-ph/0502131 +astro-ph/0502132 +astro-ph/0502134 +astro-ph/0502135 +astro-ph/0502136 +astro-ph/0502137 +astro-ph/0502142 +astro-ph/0502143 +astro-ph/0502144 +astro-ph/0502146 +astro-ph/0502151 +astro-ph/0502154 +astro-ph/0502156 +astro-ph/0502157 +astro-ph/0502158 +astro-ph/0502159 +astro-ph/0502161 +astro-ph/0502162 +astro-ph/0502163 +astro-ph/0502164 +astro-ph/0502166 +astro-ph/0502167 +astro-ph/0502168 +astro-ph/0502169 +astro-ph/0502172 +astro-ph/0502174 +astro-ph/0502177 +astro-ph/0502179 +astro-ph/0502180 +astro-ph/0502181 +astro-ph/0502182 +astro-ph/0502183 +astro-ph/0502186 +astro-ph/0502189 +astro-ph/0502190 +astro-ph/0502195 +astro-ph/0502196 +astro-ph/0502197 +astro-ph/0502198 +astro-ph/0502199 +astro-ph/0502200 +astro-ph/0502201 +astro-ph/0502202 +astro-ph/0502203 +astro-ph/0502204 +astro-ph/0502207 +astro-ph/0502209 +astro-ph/0502212 +astro-ph/0502216 +astro-ph/0502219 +astro-ph/0502221 +astro-ph/0502222 +astro-ph/0502223 +astro-ph/0502224 +astro-ph/0502226 +astro-ph/0502227 +astro-ph/0502229 +astro-ph/0502230 +astro-ph/0502232 +astro-ph/0502236 +astro-ph/0502237 +astro-ph/0502239 +astro-ph/0502240 +astro-ph/0502241 +astro-ph/0502242 +astro-ph/0502245 +astro-ph/0502246 +astro-ph/0502247 +astro-ph/0502250 +astro-ph/0502252 +astro-ph/0502257 +astro-ph/0502258 +astro-ph/0502259 +astro-ph/0502261 +astro-ph/0502262 +astro-ph/0502263 +astro-ph/0502264 +astro-ph/0502265 +astro-ph/0502266 +astro-ph/0502267 +astro-ph/0502268 +astro-ph/0502270 +astro-ph/0502272 +astro-ph/0502274 +astro-ph/0502276 +astro-ph/0502277 +astro-ph/0502278 +astro-ph/0502280 +astro-ph/0502281 +astro-ph/0502283 +astro-ph/0502285 +astro-ph/0502287 +astro-ph/0502288 +astro-ph/0502290 +astro-ph/0502291 +astro-ph/0502292 +astro-ph/0502293 +astro-ph/0502295 +astro-ph/0502296 +astro-ph/0502297 +astro-ph/0502298 +astro-ph/0502299 +astro-ph/0502300 +astro-ph/0502301 +astro-ph/0502302 +astro-ph/0502304 +astro-ph/0502305 +astro-ph/0502307 +astro-ph/0502308 +astro-ph/0502309 +astro-ph/0502311 +astro-ph/0502312 +astro-ph/0502313 +astro-ph/0502317 +astro-ph/0502319 +astro-ph/0502321 +astro-ph/0502322 +astro-ph/0502323 +astro-ph/0502324 +astro-ph/0502325 +astro-ph/0502326 +astro-ph/0502327 +astro-ph/0502328 +astro-ph/0502329 +astro-ph/0502330 +astro-ph/0502332 +astro-ph/0502333 +astro-ph/0502334 +astro-ph/0502336 +astro-ph/0502337 +astro-ph/0502338 +astro-ph/0502342 +astro-ph/0502343 +astro-ph/0502345 +astro-ph/0502347 +astro-ph/0502349 +astro-ph/0502350 +astro-ph/0502352 +astro-ph/0502353 +astro-ph/0502354 +astro-ph/0502355 +astro-ph/0502357 +astro-ph/0502358 +astro-ph/0502360 +astro-ph/0502361 +astro-ph/0502362 +astro-ph/0502364 +astro-ph/0502365 +astro-ph/0502367 +astro-ph/0502368 +astro-ph/0502374 +astro-ph/0502376 +astro-ph/0502377 +astro-ph/0502379 +astro-ph/0502384 +astro-ph/0502385 +astro-ph/0502387 +astro-ph/0502392 +astro-ph/0502393 +astro-ph/0502396 +astro-ph/0502402 +astro-ph/0502404 +astro-ph/0502405 +astro-ph/0502406 +astro-ph/0502407 +astro-ph/0502408 +astro-ph/0502409 +astro-ph/0502410 +astro-ph/0502412 +astro-ph/0502413 +astro-ph/0502415 +astro-ph/0502417 +astro-ph/0502419 +astro-ph/0502420 +astro-ph/0502421 +astro-ph/0502422 +astro-ph/0502425 +astro-ph/0502427 +astro-ph/0502428 +astro-ph/0502431 +astro-ph/0502432 +astro-ph/0502433 +astro-ph/0502434 +astro-ph/0502436 +astro-ph/0502437 +astro-ph/0502438 +astro-ph/0502440 +astro-ph/0502442 +astro-ph/0502443 +astro-ph/0502445 +astro-ph/0502446 +astro-ph/0502447 +astro-ph/0502448 +astro-ph/0502449 +astro-ph/0502451 +astro-ph/0502453 +astro-ph/0502454 +astro-ph/0502455 +astro-ph/0502458 +astro-ph/0502459 +astro-ph/0502460 +astro-ph/0502461 +astro-ph/0502462 +astro-ph/0502463 +astro-ph/0502466 +astro-ph/0502467 +astro-ph/0502470 +astro-ph/0502471 +astro-ph/0502476 +astro-ph/0502477 +astro-ph/0502479 +astro-ph/0502480 +astro-ph/0502482 +astro-ph/0502483 +astro-ph/0502484 +astro-ph/0502487 +astro-ph/0502488 +astro-ph/0502490 +astro-ph/0502491 +astro-ph/0502492 +astro-ph/0502494 +astro-ph/0502497 +astro-ph/0502498 +astro-ph/0502499 +astro-ph/0502500 +astro-ph/0502502 +astro-ph/0502503 +astro-ph/0502507 +astro-ph/0502508 +astro-ph/0502509 +astro-ph/0502511 +astro-ph/0502512 +astro-ph/0502514 +astro-ph/0502515 +astro-ph/0502516 +astro-ph/0502517 +astro-ph/0502518 +astro-ph/0502519 +astro-ph/0502522 +astro-ph/0502523 +astro-ph/0502525 +astro-ph/0502526 +astro-ph/0502528 +astro-ph/0502530 +astro-ph/0502532 +astro-ph/0502533 +astro-ph/0502534 +astro-ph/0502535 +astro-ph/0502536 +astro-ph/0502537 +astro-ph/0502539 +astro-ph/0502542 +astro-ph/0502543 +astro-ph/0502544 +astro-ph/0502545 +astro-ph/0502546 +astro-ph/0502547 +astro-ph/0502548 +astro-ph/0502551 +astro-ph/0502552 +astro-ph/0502556 +astro-ph/0502557 +astro-ph/0502558 +astro-ph/0502561 +astro-ph/0502563 +astro-ph/0502564 +astro-ph/0502565 +astro-ph/0502567 +astro-ph/0502568 +astro-ph/0502569 +astro-ph/0502570 +astro-ph/0502571 +astro-ph/0502572 +astro-ph/0502573 +astro-ph/0502576 +astro-ph/0502577 +astro-ph/0502580 +astro-ph/0502581 +astro-ph/0502584 +astro-ph/0502585 +astro-ph/0502586 +astro-ph/0502587 +astro-ph/0502589 +astro-ph/0502591 +astro-ph/0503001 +astro-ph/0503002 +astro-ph/0503005 +astro-ph/0503010 +astro-ph/0503016 +astro-ph/0503019 +astro-ph/0503022 +astro-ph/0503024 +astro-ph/0503026 +astro-ph/0503028 +astro-ph/0503029 +astro-ph/0503030 +astro-ph/0503031 +astro-ph/0503032 +astro-ph/0503034 +astro-ph/0503036 +astro-ph/0503038 +astro-ph/0503039 +astro-ph/0503040 +astro-ph/0503042 +astro-ph/0503043 +astro-ph/0503044 +astro-ph/0503045 +astro-ph/0503046 +astro-ph/0503047 +astro-ph/0503049 +astro-ph/0503050 +astro-ph/0503051 +astro-ph/0503052 +astro-ph/0503053 +astro-ph/0503054 +astro-ph/0503055 +astro-ph/0503058 +astro-ph/0503059 +astro-ph/0503060 +astro-ph/0503064 +astro-ph/0503066 +astro-ph/0503068 +astro-ph/0503069 +astro-ph/0503070 +astro-ph/0503072 +astro-ph/0503074 +astro-ph/0503075 +astro-ph/0503076 +astro-ph/0503077 +astro-ph/0503079 +astro-ph/0503080 +astro-ph/0503081 +astro-ph/0503083 +astro-ph/0503086 +astro-ph/0503087 +astro-ph/0503088 +astro-ph/0503089 +astro-ph/0503090 +astro-ph/0503092 +astro-ph/0503094 +astro-ph/0503096 +astro-ph/0503097 +astro-ph/0503100 +astro-ph/0503103 +astro-ph/0503104 +astro-ph/0503105 +astro-ph/0503106 +astro-ph/0503108 +astro-ph/0503112 +astro-ph/0503114 +astro-ph/0503116 +astro-ph/0503117 +astro-ph/0503118 +astro-ph/0503119 +astro-ph/0503122 +astro-ph/0503124 +astro-ph/0503125 +astro-ph/0503126 +astro-ph/0503128 +astro-ph/0503129 +astro-ph/0503130 +astro-ph/0503131 +astro-ph/0503133 +astro-ph/0503134 +astro-ph/0503136 +astro-ph/0503137 +astro-ph/0503138 +astro-ph/0503139 +astro-ph/0503140 +astro-ph/0503143 +astro-ph/0503144 +astro-ph/0503145 +astro-ph/0503148 +astro-ph/0503149 +astro-ph/0503150 +astro-ph/0503151 +astro-ph/0503154 +astro-ph/0503155 +astro-ph/0503156 +astro-ph/0503158 +astro-ph/0503159 +astro-ph/0503162 +astro-ph/0503163 +astro-ph/0503165 +astro-ph/0503166 +astro-ph/0503167 +astro-ph/0503168 +astro-ph/0503169 +astro-ph/0503171 +astro-ph/0503172 +astro-ph/0503173 +astro-ph/0503174 +astro-ph/0503175 +astro-ph/0503178 +astro-ph/0503179 +astro-ph/0503180 +astro-ph/0503181 +astro-ph/0503182 +astro-ph/0503183 +astro-ph/0503184 +astro-ph/0503185 +astro-ph/0503186 +astro-ph/0503187 +astro-ph/0503190 +astro-ph/0503195 +astro-ph/0503197 +astro-ph/0503199 +astro-ph/0503202 +astro-ph/0503203 +astro-ph/0503204 +astro-ph/0503205 +astro-ph/0503206 +astro-ph/0503207 +astro-ph/0503210 +astro-ph/0503211 +astro-ph/0503213 +astro-ph/0503216 +astro-ph/0503217 +astro-ph/0503220 +astro-ph/0503221 +astro-ph/0503222 +astro-ph/0503223 +astro-ph/0503224 +astro-ph/0503226 +astro-ph/0503228 +astro-ph/0503229 +astro-ph/0503233 +astro-ph/0503234 +astro-ph/0503235 +astro-ph/0503236 +astro-ph/0503238 +astro-ph/0503239 +astro-ph/0503240 +astro-ph/0503241 +astro-ph/0503242 +astro-ph/0503243 +astro-ph/0503245 +astro-ph/0503246 +astro-ph/0503247 +astro-ph/0503249 +astro-ph/0503250 +astro-ph/0503251 +astro-ph/0503252 +astro-ph/0503253 +astro-ph/0503254 +astro-ph/0503255 +astro-ph/0503256 +astro-ph/0503257 +astro-ph/0503258 +astro-ph/0503259 +astro-ph/0503263 +astro-ph/0503264 +astro-ph/0503266 +astro-ph/0503267 +astro-ph/0503268 +astro-ph/0503269 +astro-ph/0503272 +astro-ph/0503273 +astro-ph/0503274 +astro-ph/0503276 +astro-ph/0503277 +astro-ph/0503279 +astro-ph/0503280 +astro-ph/0503281 +astro-ph/0503282 +astro-ph/0503284 +astro-ph/0503286 +astro-ph/0503288 +astro-ph/0503290 +astro-ph/0503292 +astro-ph/0503293 +astro-ph/0503295 +astro-ph/0503297 +astro-ph/0503298 +astro-ph/0503301 +astro-ph/0503306 +astro-ph/0503308 +astro-ph/0503309 +astro-ph/0503311 +astro-ph/0503312 +astro-ph/0503313 +astro-ph/0503314 +astro-ph/0503315 +astro-ph/0503317 +astro-ph/0503319 +astro-ph/0503320 +astro-ph/0503321 +astro-ph/0503322 +astro-ph/0503324 +astro-ph/0503326 +astro-ph/0503327 +astro-ph/0503328 +astro-ph/0503329 +astro-ph/0503330 +astro-ph/0503331 +astro-ph/0503333 +astro-ph/0503334 +astro-ph/0503337 +astro-ph/0503339 +astro-ph/0503341 +astro-ph/0503342 +astro-ph/0503343 +astro-ph/0503344 +astro-ph/0503345 +astro-ph/0503350 +astro-ph/0503352 +astro-ph/0503355 +astro-ph/0503356 +astro-ph/0503357 +astro-ph/0503358 +astro-ph/0503359 +astro-ph/0503360 +astro-ph/0503361 +astro-ph/0503362 +astro-ph/0503365 +astro-ph/0503367 +astro-ph/0503368 +astro-ph/0503370 +astro-ph/0503372 +astro-ph/0503373 +astro-ph/0503375 +astro-ph/0503376 +astro-ph/0503377 +astro-ph/0503379 +astro-ph/0503382 +astro-ph/0503383 +astro-ph/0503388 +astro-ph/0503389 +astro-ph/0503390 +astro-ph/0503391 +astro-ph/0503392 +astro-ph/0503393 +astro-ph/0503396 +astro-ph/0503397 +astro-ph/0503400 +astro-ph/0503401 +astro-ph/0503403 +astro-ph/0503404 +astro-ph/0503406 +astro-ph/0503408 +astro-ph/0503410 +astro-ph/0503411 +astro-ph/0503412 +astro-ph/0503413 +astro-ph/0503414 +astro-ph/0503415 +astro-ph/0503416 +astro-ph/0503418 +astro-ph/0503419 +astro-ph/0503420 +astro-ph/0503421 +astro-ph/0503424 +astro-ph/0503427 +astro-ph/0503428 +astro-ph/0503429 +astro-ph/0503430 +astro-ph/0503431 +astro-ph/0503432 +astro-ph/0503434 +astro-ph/0503435 +astro-ph/0503438 +astro-ph/0503439 +astro-ph/0503441 +astro-ph/0503445 +astro-ph/0503449 +astro-ph/0503450 +astro-ph/0503451 +astro-ph/0503452 +astro-ph/0503454 +astro-ph/0503455 +astro-ph/0503456 +astro-ph/0503459 +astro-ph/0503460 +astro-ph/0503461 +astro-ph/0503464 +astro-ph/0503466 +astro-ph/0503467 +astro-ph/0503468 +astro-ph/0503469 +astro-ph/0503470 +astro-ph/0503471 +astro-ph/0503473 +astro-ph/0503474 +astro-ph/0503479 +astro-ph/0503480 +astro-ph/0503481 +astro-ph/0503482 +astro-ph/0503483 +astro-ph/0503484 +astro-ph/0503487 +astro-ph/0503488 +astro-ph/0503489 +astro-ph/0503490 +astro-ph/0503492 +astro-ph/0503493 +astro-ph/0503495 +astro-ph/0503496 +astro-ph/0503498 +astro-ph/0503499 +astro-ph/0503500 +astro-ph/0503501 +astro-ph/0503507 +astro-ph/0503509 +astro-ph/0503513 +astro-ph/0503514 +astro-ph/0503520 +astro-ph/0503521 +astro-ph/0503522 +astro-ph/0503523 +astro-ph/0503524 +astro-ph/0503525 +astro-ph/0503526 +astro-ph/0503527 +astro-ph/0503528 +astro-ph/0503529 +astro-ph/0503530 +astro-ph/0503531 +astro-ph/0503532 +astro-ph/0503533 +astro-ph/0503536 +astro-ph/0503537 +astro-ph/0503540 +astro-ph/0503542 +astro-ph/0503544 +astro-ph/0503546 +astro-ph/0503547 +astro-ph/0503550 +astro-ph/0503553 +astro-ph/0503554 +astro-ph/0503556 +astro-ph/0503557 +astro-ph/0503558 +astro-ph/0503559 +astro-ph/0503560 +astro-ph/0503561 +astro-ph/0503563 +astro-ph/0503564 +astro-ph/0503565 +astro-ph/0503567 +astro-ph/0503569 +astro-ph/0503570 +astro-ph/0503573 +astro-ph/0503574 +astro-ph/0503575 +astro-ph/0503577 +astro-ph/0503578 +astro-ph/0503579 +astro-ph/0503580 +astro-ph/0503584 +astro-ph/0503585 +astro-ph/0503586 +astro-ph/0503587 +astro-ph/0503589 +astro-ph/0503590 +astro-ph/0503591 +astro-ph/0503595 +astro-ph/0503597 +astro-ph/0503599 +astro-ph/0503605 +astro-ph/0503606 +astro-ph/0503607 +astro-ph/0503609 +astro-ph/0503610 +astro-ph/0503613 +astro-ph/0503616 +astro-ph/0503617 +astro-ph/0503618 +astro-ph/0503620 +astro-ph/0503621 +astro-ph/0503626 +astro-ph/0503628 +astro-ph/0503631 +astro-ph/0503632 +astro-ph/0503634 +astro-ph/0503635 +astro-ph/0503636 +astro-ph/0503639 +astro-ph/0503641 +astro-ph/0503642 +astro-ph/0503643 +astro-ph/0503647 +astro-ph/0503648 +astro-ph/0503649 +astro-ph/0503651 +astro-ph/0503652 +astro-ph/0503653 +astro-ph/0503654 +astro-ph/0503655 +astro-ph/0503656 +astro-ph/0503658 +astro-ph/0503659 +astro-ph/0503660 +astro-ph/0503661 +astro-ph/0503662 +astro-ph/0503663 +astro-ph/0503664 +astro-ph/0503666 +astro-ph/0503669 +astro-ph/0503670 +astro-ph/0503671 +astro-ph/0503672 +astro-ph/0503673 +astro-ph/0503674 +astro-ph/0503675 +astro-ph/0503676 +astro-ph/0503677 +astro-ph/0503678 +astro-ph/0503680 +astro-ph/0503682 +astro-ph/0503683 +astro-ph/0503684 +astro-ph/0503685 +astro-ph/0503686 +astro-ph/0503687 +astro-ph/0503689 +astro-ph/0503694 +astro-ph/0503696 +astro-ph/0503697 +astro-ph/0503698 +astro-ph/0503699 +astro-ph/0503700 +astro-ph/0503701 +astro-ph/0503703 +astro-ph/0503704 +astro-ph/0503705 +astro-ph/0503707 +astro-ph/0503709 +astro-ph/0503711 +astro-ph/0503712 +astro-ph/0503714 +astro-ph/0504003 +astro-ph/0504008 +astro-ph/0504011 +astro-ph/0504014 +astro-ph/0504015 +astro-ph/0504016 +astro-ph/0504017 +astro-ph/0504018 +astro-ph/0504019 +astro-ph/0504021 +astro-ph/0504024 +astro-ph/0504025 +astro-ph/0504026 +astro-ph/0504028 +astro-ph/0504029 +astro-ph/0504030 +astro-ph/0504031 +astro-ph/0504032 +astro-ph/0504033 +astro-ph/0504035 +astro-ph/0504036 +astro-ph/0504037 +astro-ph/0504039 +astro-ph/0504041 +astro-ph/0504042 +astro-ph/0504043 +astro-ph/0504047 +astro-ph/0504048 +astro-ph/0504054 +astro-ph/0504055 +astro-ph/0504056 +astro-ph/0504057 +astro-ph/0504061 +astro-ph/0504063 +astro-ph/0504064 +astro-ph/0504065 +astro-ph/0504066 +astro-ph/0504068 +astro-ph/0504072 +astro-ph/0504073 +astro-ph/0504074 +astro-ph/0504075 +astro-ph/0504076 +astro-ph/0504080 +astro-ph/0504081 +astro-ph/0504082 +astro-ph/0504083 +astro-ph/0504084 +astro-ph/0504085 +astro-ph/0504086 +astro-ph/0504087 +astro-ph/0504088 +astro-ph/0504089 +astro-ph/0504090 +astro-ph/0504091 +astro-ph/0504092 +astro-ph/0504094 +astro-ph/0504096 +astro-ph/0504100 +astro-ph/0504102 +astro-ph/0504104 +astro-ph/0504105 +astro-ph/0504106 +astro-ph/0504110 +astro-ph/0504111 +astro-ph/0504112 +astro-ph/0504114 +astro-ph/0504118 +astro-ph/0504119 +astro-ph/0504121 +astro-ph/0504122 +astro-ph/0504123 +astro-ph/0504124 +astro-ph/0504125 +astro-ph/0504126 +astro-ph/0504127 +astro-ph/0504128 +astro-ph/0504131 +astro-ph/0504133 +astro-ph/0504134 +astro-ph/0504135 +astro-ph/0504136 +astro-ph/0504137 +astro-ph/0504138 +astro-ph/0504141 +astro-ph/0504142 +astro-ph/0504143 +astro-ph/0504144 +astro-ph/0504145 +astro-ph/0504146 +astro-ph/0504147 +astro-ph/0504149 +astro-ph/0504150 +astro-ph/0504151 +astro-ph/0504152 +astro-ph/0504153 +astro-ph/0504154 +astro-ph/0504156 +astro-ph/0504157 +astro-ph/0504158 +astro-ph/0504159 +astro-ph/0504160 +astro-ph/0504161 +astro-ph/0504162 +astro-ph/0504165 +astro-ph/0504166 +astro-ph/0504168 +astro-ph/0504172 +astro-ph/0504173 +astro-ph/0504174 +astro-ph/0504175 +astro-ph/0504176 +astro-ph/0504177 +astro-ph/0504178 +astro-ph/0504179 +astro-ph/0504180 +astro-ph/0504181 +astro-ph/0504650 +astro-ph/0701446 +cond-mat/0211616 Mesoscale and Nanoscale Physics +cond-mat/0301002 Materials Science +cond-mat/0301006 Statistical Mechanics +cond-mat/0301007 Statistical Mechanics +cond-mat/0301008 Statistical Mechanics +cond-mat/0301009 Materials Science +cond-mat/0301012 Soft Condensed Matter +cond-mat/0301014 Strongly Correlated Electrons +cond-mat/0301015 Disordered Systems and Neural Networks +cond-mat/0301019 Superconductivity +cond-mat/0301022 Disordered Systems and Neural Networks +cond-mat/0301024 Strongly Correlated Electrons +cond-mat/0301027 Mesoscale and Nanoscale Physics +cond-mat/0301028 Soft Condensed Matter +cond-mat/0301029 Superconductivity +cond-mat/0301031 Mesoscale and Nanoscale Physics +cond-mat/0301032 +cond-mat/0301033 Strongly Correlated Electrons +cond-mat/0301035 Disordered Systems and Neural Networks +cond-mat/0301036 Superconductivity +cond-mat/0301038 Statistical Mechanics +cond-mat/0301046 Soft Condensed Matter +cond-mat/0301048 Strongly Correlated Electrons +cond-mat/0301051 Superconductivity +cond-mat/0301053 +cond-mat/0301054 Statistical Mechanics +cond-mat/0301057 Superconductivity +cond-mat/0301058 Strongly Correlated Electrons +cond-mat/0301059 Statistical Mechanics +cond-mat/0301064 Mesoscale and Nanoscale Physics +cond-mat/0301065 Statistical Mechanics +cond-mat/0301067 Statistical Mechanics +cond-mat/0301068 Statistical Mechanics +cond-mat/0301070 Mesoscale and Nanoscale Physics +cond-mat/0301071 Strongly Correlated Electrons +cond-mat/0301072 Superconductivity +cond-mat/0301074 Materials Science +cond-mat/0301077 Superconductivity +cond-mat/0301079 Mesoscale and Nanoscale Physics +cond-mat/0301080 Materials Science +cond-mat/0301081 Superconductivity +cond-mat/0301082 Soft Condensed Matter +cond-mat/0301083 +cond-mat/0301084 Materials Science +cond-mat/0301085 Soft Condensed Matter +cond-mat/0301086 Disordered Systems and Neural Networks +cond-mat/0301087 Soft Condensed Matter +cond-mat/0301088 Statistical Mechanics +cond-mat/0301090 Superconductivity +cond-mat/0301092 Strongly Correlated Electrons +cond-mat/0301093 Strongly Correlated Electrons +cond-mat/0301094 +cond-mat/0301095 Strongly Correlated Electrons +cond-mat/0301097 Superconductivity +cond-mat/0301098 Mesoscale and Nanoscale Physics +cond-mat/0301099 Soft Condensed Matter +cond-mat/0301102 Materials Science +cond-mat/0301105 Superconductivity +cond-mat/0301106 Strongly Correlated Electrons +cond-mat/0301107 Superconductivity +cond-mat/0301108 Soft Condensed Matter +cond-mat/0301109 Materials Science +cond-mat/0301111 +cond-mat/0301112 Mesoscale and Nanoscale Physics +cond-mat/0301113 Strongly Correlated Electrons +cond-mat/0301114 Materials Science +cond-mat/0301116 Soft Condensed Matter +cond-mat/0301118 Superconductivity +cond-mat/0301119 +cond-mat/0301122 Strongly Correlated Electrons +cond-mat/0301123 Soft Condensed Matter +cond-mat/0301125 Soft Condensed Matter +cond-mat/0301126 Superconductivity +cond-mat/0301127 Disordered Systems and Neural Networks +cond-mat/0301128 Mesoscale and Nanoscale Physics +cond-mat/0301130 Statistical Mechanics +cond-mat/0301131 Strongly Correlated Electrons +cond-mat/0301132 Materials Science +cond-mat/0301133 +cond-mat/0301134 +cond-mat/0301137 Strongly Correlated Electrons +cond-mat/0301140 Materials Science +cond-mat/0301143 Soft Condensed Matter +cond-mat/0301144 Soft Condensed Matter +cond-mat/0301145 Soft Condensed Matter +cond-mat/0301146 Materials Science +cond-mat/0301150 +cond-mat/0301151 Statistical Mechanics +cond-mat/0301152 Statistical Mechanics +cond-mat/0301153 Materials Science +cond-mat/0301154 +cond-mat/0301159 Soft Condensed Matter +cond-mat/0301160 Materials Science +cond-mat/0301162 Statistical Mechanics +cond-mat/0301165 Mesoscale and Nanoscale Physics +cond-mat/0301166 Disordered Systems and Neural Networks +cond-mat/0301167 Mesoscale and Nanoscale Physics +cond-mat/0301168 Mesoscale and Nanoscale Physics +cond-mat/0301169 Soft Condensed Matter +cond-mat/0301171 Statistical Mechanics +cond-mat/0301173 Statistical Mechanics +cond-mat/0301178 +cond-mat/0301179 Statistical Mechanics +cond-mat/0301180 +cond-mat/0301181 Statistical Mechanics +cond-mat/0301182 +cond-mat/0301183 Superconductivity +cond-mat/0301184 Materials Science +cond-mat/0301186 Materials Science +cond-mat/0301188 Strongly Correlated Electrons +cond-mat/0301189 Materials Science +cond-mat/0301190 Materials Science +cond-mat/0301192 Materials Science +cond-mat/0301193 Materials Science +cond-mat/0301194 Materials Science +cond-mat/0301195 Statistical Mechanics +cond-mat/0301196 Superconductivity +cond-mat/0301198 Materials Science +cond-mat/0301200 +cond-mat/0301201 Soft Condensed Matter +cond-mat/0301202 Disordered Systems and Neural Networks +cond-mat/0301203 Mesoscale and Nanoscale Physics +cond-mat/0301205 +cond-mat/0301206 Soft Condensed Matter +cond-mat/0301209 Strongly Correlated Electrons +cond-mat/0301210 Strongly Correlated Electrons +cond-mat/0301211 Strongly Correlated Electrons +cond-mat/0301212 Superconductivity +cond-mat/0301213 Mesoscale and Nanoscale Physics +cond-mat/0301215 Strongly Correlated Electrons +cond-mat/0301216 Statistical Mechanics +cond-mat/0301218 Mesoscale and Nanoscale Physics +cond-mat/0301219 Soft Condensed Matter +cond-mat/0301220 Statistical Mechanics +cond-mat/0301221 Superconductivity +cond-mat/0301222 Strongly Correlated Electrons +cond-mat/0301224 Materials Science +cond-mat/0301225 Superconductivity +cond-mat/0301227 Superconductivity +cond-mat/0301228 Strongly Correlated Electrons +cond-mat/0301231 +cond-mat/0301232 Mesoscale and Nanoscale Physics +cond-mat/0301234 Strongly Correlated Electrons +cond-mat/0301235 +cond-mat/0301236 Soft Condensed Matter +cond-mat/0301239 Statistical Mechanics +cond-mat/0301241 Superconductivity +cond-mat/0301242 Disordered Systems and Neural Networks +cond-mat/0301243 Strongly Correlated Electrons +cond-mat/0301244 Strongly Correlated Electrons +cond-mat/0301247 +cond-mat/0301248 Materials Science +cond-mat/0301250 Strongly Correlated Electrons +cond-mat/0301252 Mesoscale and Nanoscale Physics +cond-mat/0301253 Strongly Correlated Electrons +cond-mat/0301254 Strongly Correlated Electrons +cond-mat/0301255 Mesoscale and Nanoscale Physics +cond-mat/0301256 Soft Condensed Matter +cond-mat/0301259 Statistical Mechanics +cond-mat/0301261 Statistical Mechanics +cond-mat/0301262 Disordered Systems and Neural Networks +cond-mat/0301264 Mesoscale and Nanoscale Physics +cond-mat/0301266 Materials Science +cond-mat/0301271 Statistical Mechanics +cond-mat/0301272 +cond-mat/0301274 Superconductivity +cond-mat/0301275 Soft Condensed Matter +cond-mat/0301276 Statistical Mechanics +cond-mat/0301278 Mesoscale and Nanoscale Physics +cond-mat/0301280 Superconductivity +cond-mat/0301283 Strongly Correlated Electrons +cond-mat/0301284 Soft Condensed Matter +cond-mat/0301285 +cond-mat/0301287 Statistical Mechanics +cond-mat/0301288 Superconductivity +cond-mat/0301289 Statistical Mechanics +cond-mat/0301290 Superconductivity +cond-mat/0301291 Statistical Mechanics +cond-mat/0301292 Superconductivity +cond-mat/0301293 Mesoscale and Nanoscale Physics +cond-mat/0301295 Mesoscale and Nanoscale Physics +cond-mat/0301296 Mesoscale and Nanoscale Physics +cond-mat/0301297 Strongly Correlated Electrons +cond-mat/0301299 Disordered Systems and Neural Networks +cond-mat/0301301 Mesoscale and Nanoscale Physics +cond-mat/0301306 Disordered Systems and Neural Networks +cond-mat/0301307 Statistical Mechanics +cond-mat/0301308 Mesoscale and Nanoscale Physics +cond-mat/0301309 Superconductivity +cond-mat/0301310 Materials Science +cond-mat/0301314 Materials Science +cond-mat/0301315 Superconductivity +cond-mat/0301316 Statistical Mechanics +cond-mat/0301317 Disordered Systems and Neural Networks +cond-mat/0301320 Materials Science +cond-mat/0301321 +cond-mat/0301323 Mesoscale and Nanoscale Physics +cond-mat/0301324 Mesoscale and Nanoscale Physics +cond-mat/0301326 Statistical Mechanics +cond-mat/0301327 Soft Condensed Matter +cond-mat/0301328 Disordered Systems and Neural Networks +cond-mat/0301331 Soft Condensed Matter +cond-mat/0301332 Statistical Mechanics +cond-mat/0301337 Statistical Mechanics +cond-mat/0301339 Superconductivity +cond-mat/0301344 Strongly Correlated Electrons +cond-mat/0301345 Soft Condensed Matter +cond-mat/0301348 Soft Condensed Matter +cond-mat/0301349 Soft Condensed Matter +cond-mat/0301351 Mesoscale and Nanoscale Physics +cond-mat/0301353 Statistical Mechanics +cond-mat/0301356 +cond-mat/0301357 +cond-mat/0301358 Superconductivity +cond-mat/0301360 Mesoscale and Nanoscale Physics +cond-mat/0301364 Superconductivity +cond-mat/0301365 Disordered Systems and Neural Networks +cond-mat/0301367 Superconductivity +cond-mat/0301372 +cond-mat/0301373 Strongly Correlated Electrons +cond-mat/0301376 Strongly Correlated Electrons +cond-mat/0301378 Soft Condensed Matter +cond-mat/0301379 Strongly Correlated Electrons +cond-mat/0301384 Strongly Correlated Electrons +cond-mat/0301386 Statistical Mechanics +cond-mat/0301392 Materials Science +cond-mat/0301394 Statistical Mechanics +cond-mat/0301396 Mesoscale and Nanoscale Physics +cond-mat/0301398 Statistical Mechanics +cond-mat/0301400 Strongly Correlated Electrons +cond-mat/0301401 Strongly Correlated Electrons +cond-mat/0301402 Mesoscale and Nanoscale Physics +cond-mat/0301403 Disordered Systems and Neural Networks +cond-mat/0301404 Strongly Correlated Electrons +cond-mat/0301405 Materials Science +cond-mat/0301407 Statistical Mechanics +cond-mat/0301408 Statistical Mechanics +cond-mat/0301413 Strongly Correlated Electrons +cond-mat/0301415 Materials Science +cond-mat/0301418 Strongly Correlated Electrons +cond-mat/0301419 Superconductivity +cond-mat/0301420 Soft Condensed Matter +cond-mat/0301422 +cond-mat/0301423 Statistical Mechanics +cond-mat/0301424 Strongly Correlated Electrons +cond-mat/0301427 Disordered Systems and Neural Networks +cond-mat/0301428 Materials Science +cond-mat/0301429 +cond-mat/0301430 Statistical Mechanics +cond-mat/0301432 Superconductivity +cond-mat/0301433 Disordered Systems and Neural Networks +cond-mat/0301434 Superconductivity +cond-mat/0301435 Strongly Correlated Electrons +cond-mat/0301436 Soft Condensed Matter +cond-mat/0301438 Strongly Correlated Electrons +cond-mat/0301440 Materials Science +cond-mat/0301441 Mesoscale and Nanoscale Physics +cond-mat/0301442 Mesoscale and Nanoscale Physics +cond-mat/0301443 Materials Science +cond-mat/0301444 Materials Science +cond-mat/0301447 Materials Science +cond-mat/0301450 Materials Science +cond-mat/0301453 +cond-mat/0301454 Soft Condensed Matter +cond-mat/0301455 +cond-mat/0301456 +cond-mat/0301457 Disordered Systems and Neural Networks +cond-mat/0301458 Statistical Mechanics +cond-mat/0301460 Strongly Correlated Electrons +cond-mat/0301461 Disordered Systems and Neural Networks +cond-mat/0301462 Strongly Correlated Electrons +cond-mat/0301463 Mesoscale and Nanoscale Physics +cond-mat/0301464 +cond-mat/0301465 +cond-mat/0301466 +cond-mat/0301468 Statistical Mechanics +cond-mat/0301469 Soft Condensed Matter +cond-mat/0301470 Superconductivity +cond-mat/0301471 Superconductivity +cond-mat/0301472 Soft Condensed Matter +cond-mat/0301473 Statistical Mechanics +cond-mat/0301474 +cond-mat/0301477 Strongly Correlated Electrons +cond-mat/0301478 Strongly Correlated Electrons +cond-mat/0301482 Mesoscale and Nanoscale Physics +cond-mat/0301484 Statistical Mechanics +cond-mat/0301486 Disordered Systems and Neural Networks +cond-mat/0301487 Statistical Mechanics +cond-mat/0301491 Superconductivity +cond-mat/0301492 Statistical Mechanics +cond-mat/0301496 Materials Science +cond-mat/0301497 +cond-mat/0301501 Materials Science +cond-mat/0301502 Statistical Mechanics +cond-mat/0301507 Strongly Correlated Electrons +cond-mat/0301508 Materials Science +cond-mat/0301510 Disordered Systems and Neural Networks +cond-mat/0301512 +cond-mat/0301513 Statistical Mechanics +cond-mat/0301517 +cond-mat/0301518 +cond-mat/0301526 +cond-mat/0301528 +cond-mat/0301529 Statistical Mechanics +cond-mat/0301530 Superconductivity +cond-mat/0301532 Soft Condensed Matter +cond-mat/0301534 Superconductivity +cond-mat/0301539 Strongly Correlated Electrons +cond-mat/0301540 Materials Science +cond-mat/0301542 Superconductivity +cond-mat/0301543 Statistical Mechanics +cond-mat/0301544 +cond-mat/0301545 Superconductivity +cond-mat/0301546 Strongly Correlated Electrons +cond-mat/0301547 Statistical Mechanics +cond-mat/0301550 Statistical Mechanics +cond-mat/0301551 Disordered Systems and Neural Networks +cond-mat/0301552 Statistical Mechanics +cond-mat/0301556 Strongly Correlated Electrons +cond-mat/0301557 Statistical Mechanics +cond-mat/0301558 Strongly Correlated Electrons +cond-mat/0301559 Superconductivity +cond-mat/0301560 Statistical Mechanics +cond-mat/0301563 Materials Science +cond-mat/0301565 Mesoscale and Nanoscale Physics +cond-mat/0301568 Strongly Correlated Electrons +cond-mat/0301569 Mesoscale and Nanoscale Physics +cond-mat/0301575 Superconductivity +cond-mat/0301576 Materials Science +cond-mat/0301577 Strongly Correlated Electrons +cond-mat/0301578 +cond-mat/0301583 Soft Condensed Matter +cond-mat/0301584 Materials Science +cond-mat/0301585 Strongly Correlated Electrons +cond-mat/0301586 Strongly Correlated Electrons +cond-mat/0301588 Statistical Mechanics +cond-mat/0301591 Disordered Systems and Neural Networks +cond-mat/0301592 Materials Science +cond-mat/0301594 Materials Science +cond-mat/0301595 Strongly Correlated Electrons +cond-mat/0301596 Superconductivity +cond-mat/0301598 +cond-mat/0301599 Materials Science +cond-mat/0301602 Materials Science +cond-mat/0301604 Disordered Systems and Neural Networks +cond-mat/0301608 Mesoscale and Nanoscale Physics +cond-mat/0301611 Superconductivity +cond-mat/0301612 Mesoscale and Nanoscale Physics +cond-mat/0301615 Materials Science +cond-mat/0301616 Superconductivity +cond-mat/0301617 Statistical Mechanics +cond-mat/0301618 Strongly Correlated Electrons +cond-mat/0301619 +cond-mat/0301621 Statistical Mechanics +cond-mat/0301623 +cond-mat/0301624 Superconductivity +cond-mat/0301625 Statistical Mechanics +cond-mat/0301626 Strongly Correlated Electrons +cond-mat/0301629 Statistical Mechanics +cond-mat/0301630 Superconductivity +cond-mat/0301631 Statistical Mechanics +cond-mat/0302001 +cond-mat/0302003 Statistical Mechanics +cond-mat/0302006 Soft Condensed Matter +cond-mat/0302007 Mesoscale and Nanoscale Physics +cond-mat/0302010 Statistical Mechanics +cond-mat/0302011 +cond-mat/0302013 Materials Science +cond-mat/0302015 Mesoscale and Nanoscale Physics +cond-mat/0302016 Strongly Correlated Electrons +cond-mat/0302017 Superconductivity +cond-mat/0302020 Strongly Correlated Electrons +cond-mat/0302023 Disordered Systems and Neural Networks +cond-mat/0302025 Mesoscale and Nanoscale Physics +cond-mat/0302026 Statistical Mechanics +cond-mat/0302027 Materials Science +cond-mat/0302028 Superconductivity +cond-mat/0302029 Disordered Systems and Neural Networks +cond-mat/0302030 Superconductivity +cond-mat/0302039 Strongly Correlated Electrons +cond-mat/0302041 Disordered Systems and Neural Networks +cond-mat/0302042 Strongly Correlated Electrons +cond-mat/0302043 Disordered Systems and Neural Networks +cond-mat/0302044 Strongly Correlated Electrons +cond-mat/0302045 Mesoscale and Nanoscale Physics +cond-mat/0302047 Strongly Correlated Electrons +cond-mat/0302049 Strongly Correlated Electrons +cond-mat/0302051 Statistical Mechanics +cond-mat/0302054 Mesoscale and Nanoscale Physics +cond-mat/0302057 Superconductivity +cond-mat/0302059 Soft Condensed Matter +cond-mat/0302060 Materials Science +cond-mat/0302063 Mesoscale and Nanoscale Physics +cond-mat/0302065 Disordered Systems and Neural Networks +cond-mat/0302066 Soft Condensed Matter +cond-mat/0302069 Soft Condensed Matter +cond-mat/0302071 +cond-mat/0302075 Materials Science +cond-mat/0302077 Strongly Correlated Electrons +cond-mat/0302081 Mesoscale and Nanoscale Physics +cond-mat/0302083 Superconductivity +cond-mat/0302084 Mesoscale and Nanoscale Physics +cond-mat/0302085 Mesoscale and Nanoscale Physics +cond-mat/0302086 Superconductivity +cond-mat/0302087 Strongly Correlated Electrons +cond-mat/0302089 Strongly Correlated Electrons +cond-mat/0302090 Mesoscale and Nanoscale Physics +cond-mat/0302091 +cond-mat/0302092 Soft Condensed Matter +cond-mat/0302093 Materials Science +cond-mat/0302096 Soft Condensed Matter +cond-mat/0302097 Statistical Mechanics +cond-mat/0302099 Statistical Mechanics +cond-mat/0302100 Materials Science +cond-mat/0302102 Soft Condensed Matter +cond-mat/0302106 Strongly Correlated Electrons +cond-mat/0302107 Statistical Mechanics +cond-mat/0302109 Statistical Mechanics +cond-mat/0302111 Materials Science +cond-mat/0302112 Strongly Correlated Electrons +cond-mat/0302116 Superconductivity +cond-mat/0302117 Superconductivity +cond-mat/0302119 Mesoscale and Nanoscale Physics +cond-mat/0302120 Superconductivity +cond-mat/0302121 +cond-mat/0302122 Materials Science +cond-mat/0302123 Statistical Mechanics +cond-mat/0302124 Strongly Correlated Electrons +cond-mat/0302125 Mesoscale and Nanoscale Physics +cond-mat/0302126 Soft Condensed Matter +cond-mat/0302127 Superconductivity +cond-mat/0302128 Statistical Mechanics +cond-mat/0302130 Mesoscale and Nanoscale Physics +cond-mat/0302134 Superconductivity +cond-mat/0302135 Statistical Mechanics +cond-mat/0302136 Materials Science +cond-mat/0302137 Statistical Mechanics +cond-mat/0302138 Mesoscale and Nanoscale Physics +cond-mat/0302145 Statistical Mechanics +cond-mat/0302146 Mesoscale and Nanoscale Physics +cond-mat/0302149 Strongly Correlated Electrons +cond-mat/0302150 Materials Science +cond-mat/0302151 Statistical Mechanics +cond-mat/0302152 Strongly Correlated Electrons +cond-mat/0302153 Superconductivity +cond-mat/0302156 Soft Condensed Matter +cond-mat/0302158 Soft Condensed Matter +cond-mat/0302162 Mesoscale and Nanoscale Physics +cond-mat/0302164 +cond-mat/0302167 +cond-mat/0302168 Superconductivity +cond-mat/0302170 Statistical Mechanics +cond-mat/0302172 Superconductivity +cond-mat/0302173 Superconductivity +cond-mat/0302175 Materials Science +cond-mat/0302177 Statistical Mechanics +cond-mat/0302182 Strongly Correlated Electrons +cond-mat/0302185 Statistical Mechanics +cond-mat/0302186 +cond-mat/0302187 Superconductivity +cond-mat/0302188 Soft Condensed Matter +cond-mat/0302189 Materials Science +cond-mat/0302191 Superconductivity +cond-mat/0302193 Mesoscale and Nanoscale Physics +cond-mat/0302194 Mesoscale and Nanoscale Physics +cond-mat/0302195 Statistical Mechanics +cond-mat/0302196 Soft Condensed Matter +cond-mat/0302198 Mesoscale and Nanoscale Physics +cond-mat/0302199 Superconductivity +cond-mat/0302201 Mesoscale and Nanoscale Physics +cond-mat/0302202 Superconductivity +cond-mat/0302207 Disordered Systems and Neural Networks +cond-mat/0302208 Statistical Mechanics +cond-mat/0302209 Soft Condensed Matter +cond-mat/0302211 Strongly Correlated Electrons +cond-mat/0302213 Soft Condensed Matter +cond-mat/0302214 Materials Science +cond-mat/0302215 Superconductivity +cond-mat/0302216 Statistical Mechanics +cond-mat/0302217 Superconductivity +cond-mat/0302220 Strongly Correlated Electrons +cond-mat/0302221 Materials Science +cond-mat/0302223 Superconductivity +cond-mat/0302224 Statistical Mechanics +cond-mat/0302225 Superconductivity +cond-mat/0302229 Strongly Correlated Electrons +cond-mat/0302231 Materials Science +cond-mat/0302232 Statistical Mechanics +cond-mat/0302235 Mesoscale and Nanoscale Physics +cond-mat/0302237 Materials Science +cond-mat/0302238 Mesoscale and Nanoscale Physics +cond-mat/0302239 Soft Condensed Matter +cond-mat/0302240 Materials Science +cond-mat/0302241 Statistical Mechanics +cond-mat/0302243 Statistical Mechanics +cond-mat/0302244 Superconductivity +cond-mat/0302246 Soft Condensed Matter +cond-mat/0302247 Disordered Systems and Neural Networks +cond-mat/0302248 Superconductivity +cond-mat/0302250 Superconductivity +cond-mat/0302253 Strongly Correlated Electrons +cond-mat/0302254 Strongly Correlated Electrons +cond-mat/0302255 Superconductivity +cond-mat/0302256 Superconductivity +cond-mat/0302257 Disordered Systems and Neural Networks +cond-mat/0302259 Strongly Correlated Electrons +cond-mat/0302260 Statistical Mechanics +cond-mat/0302262 Materials Science +cond-mat/0302263 Strongly Correlated Electrons +cond-mat/0302264 Statistical Mechanics +cond-mat/0302265 Mesoscale and Nanoscale Physics +cond-mat/0302266 Materials Science +cond-mat/0302269 Disordered Systems and Neural Networks +cond-mat/0302271 Mesoscale and Nanoscale Physics +cond-mat/0302272 Materials Science +cond-mat/0302273 Strongly Correlated Electrons +cond-mat/0302274 Mesoscale and Nanoscale Physics +cond-mat/0302277 Materials Science +cond-mat/0302278 Mesoscale and Nanoscale Physics +cond-mat/0302280 Materials Science +cond-mat/0302281 Strongly Correlated Electrons +cond-mat/0302282 Superconductivity +cond-mat/0302284 Superconductivity +cond-mat/0302288 Statistical Mechanics +cond-mat/0302289 Statistical Mechanics +cond-mat/0302290 Materials Science +cond-mat/0302291 Materials Science +cond-mat/0302292 Mesoscale and Nanoscale Physics +cond-mat/0302293 Strongly Correlated Electrons +cond-mat/0302295 Statistical Mechanics +cond-mat/0302297 Materials Science +cond-mat/0302298 Soft Condensed Matter +cond-mat/0302299 Superconductivity +cond-mat/0302302 Statistical Mechanics +cond-mat/0302305 Soft Condensed Matter +cond-mat/0302307 Statistical Mechanics +cond-mat/0302309 Soft Condensed Matter +cond-mat/0302310 Superconductivity +cond-mat/0302313 +cond-mat/0302314 Soft Condensed Matter +cond-mat/0302316 Superconductivity +cond-mat/0302318 Superconductivity +cond-mat/0302319 Mesoscale and Nanoscale Physics +cond-mat/0302324 Statistical Mechanics +cond-mat/0302325 Strongly Correlated Electrons +cond-mat/0302326 Strongly Correlated Electrons +cond-mat/0302328 Strongly Correlated Electrons +cond-mat/0302329 Superconductivity +cond-mat/0302331 Statistical Mechanics +cond-mat/0302332 Strongly Correlated Electrons +cond-mat/0302333 Strongly Correlated Electrons +cond-mat/0302335 Materials Science +cond-mat/0302337 Materials Science +cond-mat/0302339 Materials Science +cond-mat/0302340 Materials Science +cond-mat/0302341 Mesoscale and Nanoscale Physics +cond-mat/0302344 Mesoscale and Nanoscale Physics +cond-mat/0302345 Statistical Mechanics +cond-mat/0302347 Superconductivity +cond-mat/0302350 Superconductivity +cond-mat/0302351 Statistical Mechanics +cond-mat/0302352 Materials Science +cond-mat/0302353 Materials Science +cond-mat/0302355 +cond-mat/0302356 Strongly Correlated Electrons +cond-mat/0302360 Strongly Correlated Electrons +cond-mat/0302361 +cond-mat/0302362 Strongly Correlated Electrons +cond-mat/0302363 Materials Science +cond-mat/0302365 Superconductivity +cond-mat/0302366 Statistical Mechanics +cond-mat/0302367 Superconductivity +cond-mat/0302368 Materials Science +cond-mat/0302369 Statistical Mechanics +cond-mat/0302370 Superconductivity +cond-mat/0302371 Disordered Systems and Neural Networks +cond-mat/0302372 Mesoscale and Nanoscale Physics +cond-mat/0302373 Statistical Mechanics +cond-mat/0302375 Statistical Mechanics +cond-mat/0302376 Disordered Systems and Neural Networks +cond-mat/0302378 Statistical Mechanics +cond-mat/0302379 +cond-mat/0302382 Statistical Mechanics +cond-mat/0302383 Mesoscale and Nanoscale Physics +cond-mat/0302386 Strongly Correlated Electrons +cond-mat/0302387 Soft Condensed Matter +cond-mat/0302390 Strongly Correlated Electrons +cond-mat/0302391 +cond-mat/0302392 Strongly Correlated Electrons +cond-mat/0302394 +cond-mat/0302397 Statistical Mechanics +cond-mat/0302398 +cond-mat/0302403 Superconductivity +cond-mat/0302405 Strongly Correlated Electrons +cond-mat/0302406 Superconductivity +cond-mat/0302408 Statistical Mechanics +cond-mat/0302409 Statistical Mechanics +cond-mat/0302410 Strongly Correlated Electrons +cond-mat/0302411 Superconductivity +cond-mat/0302413 Superconductivity +cond-mat/0302415 Superconductivity +cond-mat/0302419 Mesoscale and Nanoscale Physics +cond-mat/0302420 Statistical Mechanics +cond-mat/0302421 Materials Science +cond-mat/0302422 Superconductivity +cond-mat/0302424 Disordered Systems and Neural Networks +cond-mat/0302426 Strongly Correlated Electrons +cond-mat/0302427 Strongly Correlated Electrons +cond-mat/0302431 Superconductivity +cond-mat/0302435 Strongly Correlated Electrons +cond-mat/0302436 Strongly Correlated Electrons +cond-mat/0302437 Strongly Correlated Electrons +cond-mat/0302438 Strongly Correlated Electrons +cond-mat/0302439 Statistical Mechanics +cond-mat/0302444 Disordered Systems and Neural Networks +cond-mat/0302445 Mesoscale and Nanoscale Physics +cond-mat/0302446 Soft Condensed Matter +cond-mat/0302447 Statistical Mechanics +cond-mat/0302448 Statistical Mechanics +cond-mat/0302449 Superconductivity +cond-mat/0302450 Statistical Mechanics +cond-mat/0302451 Soft Condensed Matter +cond-mat/0302452 Strongly Correlated Electrons +cond-mat/0302453 Materials Science +cond-mat/0302454 Soft Condensed Matter +cond-mat/0302457 +cond-mat/0302460 Strongly Correlated Electrons +cond-mat/0302462 Materials Science +cond-mat/0302464 +cond-mat/0302465 Disordered Systems and Neural Networks +cond-mat/0302466 Superconductivity +cond-mat/0302467 Mesoscale and Nanoscale Physics +cond-mat/0302469 Superconductivity +cond-mat/0302471 Strongly Correlated Electrons +cond-mat/0302472 Soft Condensed Matter +cond-mat/0302473 Superconductivity +cond-mat/0302474 Statistical Mechanics +cond-mat/0302476 Strongly Correlated Electrons +cond-mat/0302477 Materials Science +cond-mat/0302478 Materials Science +cond-mat/0302480 Statistical Mechanics +cond-mat/0302481 Mesoscale and Nanoscale Physics +cond-mat/0302485 Mesoscale and Nanoscale Physics +cond-mat/0302486 Strongly Correlated Electrons +cond-mat/0302487 Strongly Correlated Electrons +cond-mat/0302488 +cond-mat/0302491 Materials Science +cond-mat/0302494 Superconductivity +cond-mat/0302496 Materials Science +cond-mat/0302497 Strongly Correlated Electrons +cond-mat/0302498 Superconductivity +cond-mat/0302499 Superconductivity +cond-mat/0302500 Statistical Mechanics +cond-mat/0302502 Disordered Systems and Neural Networks +cond-mat/0302503 Disordered Systems and Neural Networks +cond-mat/0302504 Mesoscale and Nanoscale Physics +cond-mat/0302506 Mesoscale and Nanoscale Physics +cond-mat/0302508 Superconductivity +cond-mat/0302509 Superconductivity +cond-mat/0302510 Superconductivity +cond-mat/0302511 Superconductivity +cond-mat/0302512 Statistical Mechanics +cond-mat/0302518 +cond-mat/0302519 Soft Condensed Matter +cond-mat/0302521 Materials Science +cond-mat/0302522 Materials Science +cond-mat/0302524 Soft Condensed Matter +cond-mat/0302527 Strongly Correlated Electrons +cond-mat/0302529 +cond-mat/0302532 Strongly Correlated Electrons +cond-mat/0302533 Mesoscale and Nanoscale Physics +cond-mat/0302535 Statistical Mechanics +cond-mat/0302537 Statistical Mechanics +cond-mat/0302538 Disordered Systems and Neural Networks +cond-mat/0302540 Superconductivity +cond-mat/0302541 Materials Science +cond-mat/0302543 +cond-mat/0302544 Disordered Systems and Neural Networks +cond-mat/0302545 Statistical Mechanics +cond-mat/0302546 Statistical Mechanics +cond-mat/0302547 +cond-mat/0302549 Soft Condensed Matter +cond-mat/0302554 Strongly Correlated Electrons +cond-mat/0302555 Superconductivity +cond-mat/0302556 Materials Science +cond-mat/0302560 Superconductivity +cond-mat/0302561 Strongly Correlated Electrons +cond-mat/0302562 Mesoscale and Nanoscale Physics +cond-mat/0302563 Strongly Correlated Electrons +cond-mat/0302565 Strongly Correlated Electrons +cond-mat/0302567 Mesoscale and Nanoscale Physics +cond-mat/0302568 +cond-mat/0302569 Mesoscale and Nanoscale Physics +cond-mat/0302570 Statistical Mechanics +cond-mat/0302572 Mesoscale and Nanoscale Physics +cond-mat/0302573 Strongly Correlated Electrons +cond-mat/0302574 Statistical Mechanics +cond-mat/0302575 Statistical Mechanics +cond-mat/0302576 Strongly Correlated Electrons +cond-mat/0302577 Superconductivity +cond-mat/0302578 Materials Science +cond-mat/0302582 Statistical Mechanics +cond-mat/0302586 Mesoscale and Nanoscale Physics +cond-mat/0302588 Statistical Mechanics +cond-mat/0302590 Statistical Mechanics +cond-mat/0302591 Superconductivity +cond-mat/0302592 Strongly Correlated Electrons +cond-mat/0302593 Statistical Mechanics +cond-mat/0302594 Statistical Mechanics +cond-mat/0302595 Soft Condensed Matter +cond-mat/0302596 Disordered Systems and Neural Networks +cond-mat/0302598 Soft Condensed Matter +cond-mat/0302599 Soft Condensed Matter +cond-mat/0302600 Strongly Correlated Electrons +cond-mat/0302601 Strongly Correlated Electrons +cond-mat/0302602 Statistical Mechanics +cond-mat/0302604 Strongly Correlated Electrons +cond-mat/0302606 Soft Condensed Matter +cond-mat/0302607 +cond-mat/0302609 Statistical Mechanics +cond-mat/0302611 Disordered Systems and Neural Networks +cond-mat/0302613 Statistical Mechanics +cond-mat/0302614 Statistical Mechanics +cond-mat/0302619 Soft Condensed Matter +cond-mat/0302622 Strongly Correlated Electrons +cond-mat/0302625 Strongly Correlated Electrons +cond-mat/0303004 Materials Science +cond-mat/0303005 Strongly Correlated Electrons +cond-mat/0303006 Materials Science +cond-mat/0303008 Strongly Correlated Electrons +cond-mat/0303009 Materials Science +cond-mat/0303010 Superconductivity +cond-mat/0303012 Materials Science +cond-mat/0303013 Superconductivity +cond-mat/0303015 Materials Science +cond-mat/0303016 Strongly Correlated Electrons +cond-mat/0303017 Materials Science +cond-mat/0303018 Strongly Correlated Electrons +cond-mat/0303020 Superconductivity +cond-mat/0303021 Superconductivity +cond-mat/0303024 Mesoscale and Nanoscale Physics +cond-mat/0303025 Mesoscale and Nanoscale Physics +cond-mat/0303027 Mesoscale and Nanoscale Physics +cond-mat/0303030 Statistical Mechanics +cond-mat/0303031 Disordered Systems and Neural Networks +cond-mat/0303032 Materials Science +cond-mat/0303033 Statistical Mechanics +cond-mat/0303035 +cond-mat/0303036 Strongly Correlated Electrons +cond-mat/0303038 +cond-mat/0303039 Mesoscale and Nanoscale Physics +cond-mat/0303040 Soft Condensed Matter +cond-mat/0303041 Disordered Systems and Neural Networks +cond-mat/0303042 Materials Science +cond-mat/0303043 Materials Science +cond-mat/0303045 Superconductivity +cond-mat/0303046 Soft Condensed Matter +cond-mat/0303047 Statistical Mechanics +cond-mat/0303048 Materials Science +cond-mat/0303049 Superconductivity +cond-mat/0303054 +cond-mat/0303058 Statistical Mechanics +cond-mat/0303060 Materials Science +cond-mat/0303062 Statistical Mechanics +cond-mat/0303064 Statistical Mechanics +cond-mat/0303065 Soft Condensed Matter +cond-mat/0303066 Strongly Correlated Electrons +cond-mat/0303067 Statistical Mechanics +cond-mat/0303069 Superconductivity +cond-mat/0303071 +cond-mat/0303072 Materials Science +cond-mat/0303075 Strongly Correlated Electrons +cond-mat/0303077 Superconductivity +cond-mat/0303079 Statistical Mechanics +cond-mat/0303080 Strongly Correlated Electrons +cond-mat/0303081 Statistical Mechanics +cond-mat/0303084 Statistical Mechanics +cond-mat/0303085 Strongly Correlated Electrons +cond-mat/0303086 Disordered Systems and Neural Networks +cond-mat/0303088 Statistical Mechanics +cond-mat/0303090 Mesoscale and Nanoscale Physics +cond-mat/0303092 Disordered Systems and Neural Networks +cond-mat/0303094 Soft Condensed Matter +cond-mat/0303095 Soft Condensed Matter +cond-mat/0303096 +cond-mat/0303097 Materials Science +cond-mat/0303099 Statistical Mechanics +cond-mat/0303102 Materials Science +cond-mat/0303103 Superconductivity +cond-mat/0303104 +cond-mat/0303106 Statistical Mechanics +cond-mat/0303107 Strongly Correlated Electrons +cond-mat/0303109 Statistical Mechanics +cond-mat/0303111 Superconductivity +cond-mat/0303112 Strongly Correlated Electrons +cond-mat/0303114 Mesoscale and Nanoscale Physics +cond-mat/0303115 +cond-mat/0303116 Disordered Systems and Neural Networks +cond-mat/0303117 Statistical Mechanics +cond-mat/0303121 Superconductivity +cond-mat/0303123 Strongly Correlated Electrons +cond-mat/0303125 +cond-mat/0303126 Statistical Mechanics +cond-mat/0303128 Statistical Mechanics +cond-mat/0303129 Soft Condensed Matter +cond-mat/0303131 Soft Condensed Matter +cond-mat/0303135 Mesoscale and Nanoscale Physics +cond-mat/0303137 Soft Condensed Matter +cond-mat/0303138 Soft Condensed Matter +cond-mat/0303142 Strongly Correlated Electrons +cond-mat/0303143 Materials Science +cond-mat/0303144 Superconductivity +cond-mat/0303145 Strongly Correlated Electrons +cond-mat/0303147 Strongly Correlated Electrons +cond-mat/0303149 Materials Science +cond-mat/0303151 Statistical Mechanics +cond-mat/0303152 Mesoscale and Nanoscale Physics +cond-mat/0303154 Strongly Correlated Electrons +cond-mat/0303155 Superconductivity +cond-mat/0303159 Strongly Correlated Electrons +cond-mat/0303160 Soft Condensed Matter +cond-mat/0303162 Statistical Mechanics +cond-mat/0303165 Mesoscale and Nanoscale Physics +cond-mat/0303166 Statistical Mechanics +cond-mat/0303167 Statistical Mechanics +cond-mat/0303168 Mesoscale and Nanoscale Physics +cond-mat/0303170 Mesoscale and Nanoscale Physics +cond-mat/0303172 Materials Science +cond-mat/0303173 Statistical Mechanics +cond-mat/0303175 Statistical Mechanics +cond-mat/0303177 Materials Science +cond-mat/0303179 Mesoscale and Nanoscale Physics +cond-mat/0303180 Mesoscale and Nanoscale Physics +cond-mat/0303182 Statistical Mechanics +cond-mat/0303183 Statistical Mechanics +cond-mat/0303184 Materials Science +cond-mat/0303187 Materials Science +cond-mat/0303188 +cond-mat/0303189 Materials Science +cond-mat/0303190 +cond-mat/0303191 Mesoscale and Nanoscale Physics +cond-mat/0303192 Superconductivity +cond-mat/0303195 Mesoscale and Nanoscale Physics +cond-mat/0303197 Superconductivity +cond-mat/0303199 Materials Science +cond-mat/0303201 Disordered Systems and Neural Networks +cond-mat/0303203 Mesoscale and Nanoscale Physics +cond-mat/0303206 Soft Condensed Matter +cond-mat/0303208 Strongly Correlated Electrons +cond-mat/0303211 Soft Condensed Matter +cond-mat/0303212 Materials Science +cond-mat/0303215 Mesoscale and Nanoscale Physics +cond-mat/0303217 Materials Science +cond-mat/0303218 +cond-mat/0303219 Strongly Correlated Electrons +cond-mat/0303220 +cond-mat/0303221 Statistical Mechanics +cond-mat/0303223 Mesoscale and Nanoscale Physics +cond-mat/0303225 Soft Condensed Matter +cond-mat/0303228 Strongly Correlated Electrons +cond-mat/0303229 Strongly Correlated Electrons +cond-mat/0303230 +cond-mat/0303237 Superconductivity +cond-mat/0303238 Superconductivity +cond-mat/0303239 +cond-mat/0303242 Strongly Correlated Electrons +cond-mat/0303244 +cond-mat/0303245 Mesoscale and Nanoscale Physics +cond-mat/0303247 Materials Science +cond-mat/0303249 Other Condensed Matter +cond-mat/0303250 Materials Science +cond-mat/0303252 Statistical Mechanics +cond-mat/0303253 Mesoscale and Nanoscale Physics +cond-mat/0303254 Disordered Systems and Neural Networks +cond-mat/0303255 Statistical Mechanics +cond-mat/0303256 Soft Condensed Matter +cond-mat/0303257 Soft Condensed Matter +cond-mat/0303258 Mesoscale and Nanoscale Physics +cond-mat/0303259 Soft Condensed Matter +cond-mat/0303260 Disordered Systems and Neural Networks +cond-mat/0303263 Statistical Mechanics +cond-mat/0303265 Soft Condensed Matter +cond-mat/0303267 Materials Science +cond-mat/0303268 Superconductivity +cond-mat/0303269 Mesoscale and Nanoscale Physics +cond-mat/0303270 +cond-mat/0303273 Statistical Mechanics +cond-mat/0303275 Statistical Mechanics +cond-mat/0303276 Soft Condensed Matter +cond-mat/0303278 Superconductivity +cond-mat/0303281 Statistical Mechanics +cond-mat/0303282 Mesoscale and Nanoscale Physics +cond-mat/0303283 Superconductivity +cond-mat/0303285 Materials Science +cond-mat/0303288 Statistical Mechanics +cond-mat/0303289 Soft Condensed Matter +cond-mat/0303290 Statistical Mechanics +cond-mat/0303291 Statistical Mechanics +cond-mat/0303292 Strongly Correlated Electrons +cond-mat/0303293 Materials Science +cond-mat/0303295 Superconductivity +cond-mat/0303296 Superconductivity +cond-mat/0303297 +cond-mat/0303300 Mesoscale and Nanoscale Physics +cond-mat/0303302 Statistical Mechanics +cond-mat/0303303 Statistical Mechanics +cond-mat/0303308 Soft Condensed Matter +cond-mat/0303310 Superconductivity +cond-mat/0303311 Strongly Correlated Electrons +cond-mat/0303316 Materials Science +cond-mat/0303319 Statistical Mechanics +cond-mat/0303320 Strongly Correlated Electrons +cond-mat/0303322 Materials Science +cond-mat/0303324 Strongly Correlated Electrons +cond-mat/0303326 Superconductivity +cond-mat/0303327 Statistical Mechanics +cond-mat/0303328 Materials Science +cond-mat/0303329 +cond-mat/0303333 Materials Science +cond-mat/0303334 Soft Condensed Matter +cond-mat/0303335 Soft Condensed Matter +cond-mat/0303337 Superconductivity +cond-mat/0303340 Strongly Correlated Electrons +cond-mat/0303343 +cond-mat/0303345 Soft Condensed Matter +cond-mat/0303346 Soft Condensed Matter +cond-mat/0303347 Mesoscale and Nanoscale Physics +cond-mat/0303348 Materials Science +cond-mat/0303350 Strongly Correlated Electrons +cond-mat/0303351 Materials Science +cond-mat/0303354 Strongly Correlated Electrons +cond-mat/0303355 Statistical Mechanics +cond-mat/0303356 Statistical Mechanics +cond-mat/0303357 Statistical Mechanics +cond-mat/0303358 +cond-mat/0303359 Mesoscale and Nanoscale Physics +cond-mat/0303361 Superconductivity +cond-mat/0303364 Strongly Correlated Electrons +cond-mat/0303365 Soft Condensed Matter +cond-mat/0303366 Soft Condensed Matter +cond-mat/0303368 Materials Science +cond-mat/0303369 Materials Science +cond-mat/0303372 Superconductivity +cond-mat/0303373 Superconductivity +cond-mat/0303374 Statistical Mechanics +cond-mat/0303376 Statistical Mechanics +cond-mat/0303379 Statistical Mechanics +cond-mat/0303380 Strongly Correlated Electrons +cond-mat/0303381 Superconductivity +cond-mat/0303383 Superconductivity +cond-mat/0303384 +cond-mat/0303386 Statistical Mechanics +cond-mat/0303387 Statistical Mechanics +cond-mat/0303389 Statistical Mechanics +cond-mat/0303390 +cond-mat/0303391 +cond-mat/0303392 +cond-mat/0303393 Strongly Correlated Electrons +cond-mat/0303396 Materials Science +cond-mat/0303399 Mesoscale and Nanoscale Physics +cond-mat/0303401 Mesoscale and Nanoscale Physics +cond-mat/0303403 Superconductivity +cond-mat/0303404 Strongly Correlated Electrons +cond-mat/0303406 Disordered Systems and Neural Networks +cond-mat/0303407 Materials Science +cond-mat/0303408 Soft Condensed Matter +cond-mat/0303410 Strongly Correlated Electrons +cond-mat/0303411 Strongly Correlated Electrons +cond-mat/0303412 Mesoscale and Nanoscale Physics +cond-mat/0303415 Disordered Systems and Neural Networks +cond-mat/0303416 +cond-mat/0303418 Statistical Mechanics +cond-mat/0303419 Superconductivity +cond-mat/0303420 Superconductivity +cond-mat/0303421 Soft Condensed Matter +cond-mat/0303422 Superconductivity +cond-mat/0303424 Soft Condensed Matter +cond-mat/0303425 Disordered Systems and Neural Networks +cond-mat/0303426 Soft Condensed Matter +cond-mat/0303428 Mesoscale and Nanoscale Physics +cond-mat/0303429 Mesoscale and Nanoscale Physics +cond-mat/0303430 Mesoscale and Nanoscale Physics +cond-mat/0303431 Disordered Systems and Neural Networks +cond-mat/0303433 Mesoscale and Nanoscale Physics +cond-mat/0303436 +cond-mat/0303437 +cond-mat/0303439 Disordered Systems and Neural Networks +cond-mat/0303440 Superconductivity +cond-mat/0303445 Disordered Systems and Neural Networks +cond-mat/0303447 Strongly Correlated Electrons +cond-mat/0303448 Mesoscale and Nanoscale Physics +cond-mat/0303449 Materials Science +cond-mat/0303450 Statistical Mechanics +cond-mat/0303451 Statistical Mechanics +cond-mat/0303452 Statistical Mechanics +cond-mat/0303453 Statistical Mechanics +cond-mat/0303458 Mesoscale and Nanoscale Physics +cond-mat/0303459 Mesoscale and Nanoscale Physics +cond-mat/0303460 Strongly Correlated Electrons +cond-mat/0303461 Materials Science +cond-mat/0303464 Strongly Correlated Electrons +cond-mat/0303466 Statistical Mechanics +cond-mat/0303467 Statistical Mechanics +cond-mat/0303468 Statistical Mechanics +cond-mat/0303470 Statistical Mechanics +cond-mat/0303471 Strongly Correlated Electrons +cond-mat/0303475 +cond-mat/0303477 Mesoscale and Nanoscale Physics +cond-mat/0303479 Statistical Mechanics +cond-mat/0303481 Statistical Mechanics +cond-mat/0303484 Statistical Mechanics +cond-mat/0303487 Mesoscale and Nanoscale Physics +cond-mat/0303488 Materials Science +cond-mat/0303489 Mesoscale and Nanoscale Physics +cond-mat/0303494 Mesoscale and Nanoscale Physics +cond-mat/0303495 +cond-mat/0303496 Soft Condensed Matter +cond-mat/0303497 +cond-mat/0303498 Mesoscale and Nanoscale Physics +cond-mat/0303499 Disordered Systems and Neural Networks +cond-mat/0303500 +cond-mat/0303503 Materials Science +cond-mat/0303504 Statistical Mechanics +cond-mat/0303505 Materials Science +cond-mat/0303507 Strongly Correlated Electrons +cond-mat/0303508 +cond-mat/0303509 Soft Condensed Matter +cond-mat/0303513 Strongly Correlated Electrons +cond-mat/0303514 Mesoscale and Nanoscale Physics +cond-mat/0303515 Soft Condensed Matter +cond-mat/0303517 Mesoscale and Nanoscale Physics +cond-mat/0303520 Soft Condensed Matter +cond-mat/0303521 Statistical Mechanics +cond-mat/0303522 Materials Science +cond-mat/0303523 Statistical Mechanics +cond-mat/0303524 Statistical Mechanics +cond-mat/0303525 Statistical Mechanics +cond-mat/0303526 Disordered Systems and Neural Networks +cond-mat/0303527 +cond-mat/0303528 Materials Science +cond-mat/0303529 Materials Science +cond-mat/0303530 Mesoscale and Nanoscale Physics +cond-mat/0303531 Mesoscale and Nanoscale Physics +cond-mat/0303532 Soft Condensed Matter +cond-mat/0303535 Disordered Systems and Neural Networks +cond-mat/0303540 Superconductivity +cond-mat/0303542 Superconductivity +cond-mat/0303543 Statistical Mechanics +cond-mat/0303544 Strongly Correlated Electrons +cond-mat/0303545 +cond-mat/0303546 Statistical Mechanics +cond-mat/0303548 Superconductivity +cond-mat/0303549 Soft Condensed Matter +cond-mat/0303552 Disordered Systems and Neural Networks +cond-mat/0303553 Mesoscale and Nanoscale Physics +cond-mat/0303554 Statistical Mechanics +cond-mat/0303555 Mesoscale and Nanoscale Physics +cond-mat/0303556 +cond-mat/0303558 +cond-mat/0303559 Materials Science +cond-mat/0303560 Soft Condensed Matter +cond-mat/0303566 Materials Science +cond-mat/0303567 Materials Science +cond-mat/0303569 Superconductivity +cond-mat/0303571 Disordered Systems and Neural Networks +cond-mat/0303574 Superconductivity +cond-mat/0303575 Mesoscale and Nanoscale Physics +cond-mat/0303577 Statistical Mechanics +cond-mat/0303579 Statistical Mechanics +cond-mat/0303581 Superconductivity +cond-mat/0303582 Disordered Systems and Neural Networks +cond-mat/0303587 Strongly Correlated Electrons +cond-mat/0303589 Disordered Systems and Neural Networks +cond-mat/0303591 Superconductivity +cond-mat/0303595 +cond-mat/0303598 Disordered Systems and Neural Networks +cond-mat/0303602 Strongly Correlated Electrons +cond-mat/0303604 Statistical Mechanics +cond-mat/0303605 Strongly Correlated Electrons +cond-mat/0303607 Statistical Mechanics +cond-mat/0303610 Strongly Correlated Electrons +cond-mat/0303611 Superconductivity +cond-mat/0303613 Strongly Correlated Electrons +cond-mat/0303614 +cond-mat/0303615 Disordered Systems and Neural Networks +cond-mat/0303616 Mesoscale and Nanoscale Physics +cond-mat/0303617 Materials Science +cond-mat/0303618 Strongly Correlated Electrons +cond-mat/0303620 Superconductivity +cond-mat/0303622 Disordered Systems and Neural Networks +cond-mat/0303623 Statistical Mechanics +cond-mat/0303624 Superconductivity +cond-mat/0303626 Soft Condensed Matter +cond-mat/0303627 Strongly Correlated Electrons +cond-mat/0303633 Materials Science +cond-mat/0303634 Mesoscale and Nanoscale Physics +cond-mat/0303643 Materials Science +cond-mat/0303644 Superconductivity +cond-mat/0303645 Materials Science +cond-mat/0303649 Strongly Correlated Electrons +cond-mat/0303653 Materials Science +cond-mat/0303654 Materials Science +cond-mat/0303656 Soft Condensed Matter +cond-mat/0304002 Soft Condensed Matter +cond-mat/0304003 Statistical Mechanics +cond-mat/0304005 Mesoscale and Nanoscale Physics +cond-mat/0304006 Materials Science +cond-mat/0304007 +cond-mat/0304008 Strongly Correlated Electrons +cond-mat/0304009 Superconductivity +cond-mat/0304010 Statistical Mechanics +cond-mat/0304011 Statistical Mechanics +cond-mat/0304012 Disordered Systems and Neural Networks +cond-mat/0304017 +cond-mat/0304018 Statistical Mechanics +cond-mat/0304019 Statistical Mechanics +cond-mat/0304021 Disordered Systems and Neural Networks +cond-mat/0304022 Mesoscale and Nanoscale Physics +cond-mat/0304024 Statistical Mechanics +cond-mat/0304025 Materials Science +cond-mat/0304027 +cond-mat/0304029 Superconductivity +cond-mat/0304030 Mesoscale and Nanoscale Physics +cond-mat/0304031 Strongly Correlated Electrons +cond-mat/0304032 Statistical Mechanics +cond-mat/0304033 Strongly Correlated Electrons +cond-mat/0304034 Strongly Correlated Electrons +cond-mat/0304035 Mesoscale and Nanoscale Physics +cond-mat/0304036 Strongly Correlated Electrons +cond-mat/0304037 Materials Science +cond-mat/0304038 Strongly Correlated Electrons +cond-mat/0304041 Soft Condensed Matter +cond-mat/0304042 Strongly Correlated Electrons +cond-mat/0304043 Superconductivity +cond-mat/0304045 Mesoscale and Nanoscale Physics +cond-mat/0304046 Superconductivity +cond-mat/0304047 Statistical Mechanics +cond-mat/0304048 Soft Condensed Matter +cond-mat/0304049 Statistical Mechanics +cond-mat/0304051 Superconductivity +cond-mat/0304053 Statistical Mechanics +cond-mat/0304056 Statistical Mechanics +cond-mat/0304058 Strongly Correlated Electrons +cond-mat/0304060 +cond-mat/0304061 Statistical Mechanics +cond-mat/0304062 Statistical Mechanics +cond-mat/0304063 Statistical Mechanics +cond-mat/0304066 Statistical Mechanics +cond-mat/0304067 Strongly Correlated Electrons +cond-mat/0304068 Statistical Mechanics +cond-mat/0304069 Mesoscale and Nanoscale Physics +cond-mat/0304072 Superconductivity +cond-mat/0304074 Superconductivity +cond-mat/0304075 Materials Science +cond-mat/0304078 Mesoscale and Nanoscale Physics +cond-mat/0304079 Strongly Correlated Electrons +cond-mat/0304083 Strongly Correlated Electrons +cond-mat/0304084 Superconductivity +cond-mat/0304085 Soft Condensed Matter +cond-mat/0304087 Soft Condensed Matter +cond-mat/0304088 Statistical Mechanics +cond-mat/0304089 Strongly Correlated Electrons +cond-mat/0304090 Mesoscale and Nanoscale Physics +cond-mat/0304091 Mesoscale and Nanoscale Physics +cond-mat/0304092 Mesoscale and Nanoscale Physics +cond-mat/0304096 Strongly Correlated Electrons +cond-mat/0304100 Disordered Systems and Neural Networks +cond-mat/0304103 Mesoscale and Nanoscale Physics +cond-mat/0304104 Statistical Mechanics +cond-mat/0304106 Strongly Correlated Electrons +cond-mat/0304110 Strongly Correlated Electrons +cond-mat/0304111 Superconductivity +cond-mat/0304113 Statistical Mechanics +cond-mat/0304115 +cond-mat/0304116 Mesoscale and Nanoscale Physics +cond-mat/0304117 Mesoscale and Nanoscale Physics +cond-mat/0304119 Soft Condensed Matter +cond-mat/0304121 Mesoscale and Nanoscale Physics +cond-mat/0304124 Materials Science +cond-mat/0304125 Mesoscale and Nanoscale Physics +cond-mat/0304126 Superconductivity +cond-mat/0304127 +cond-mat/0304129 Strongly Correlated Electrons +cond-mat/0304132 Statistical Mechanics +cond-mat/0304137 Strongly Correlated Electrons +cond-mat/0304141 +cond-mat/0304142 Superconductivity +cond-mat/0304148 +cond-mat/0304149 Statistical Mechanics +cond-mat/0304150 +cond-mat/0304152 Superconductivity +cond-mat/0304153 Statistical Mechanics +cond-mat/0304154 Statistical Mechanics +cond-mat/0304157 Materials Science +cond-mat/0304158 Strongly Correlated Electrons +cond-mat/0304159 Statistical Mechanics +cond-mat/0304160 Materials Science +cond-mat/0304161 Statistical Mechanics +cond-mat/0304162 Soft Condensed Matter +cond-mat/0304163 Superconductivity +cond-mat/0304164 Superconductivity +cond-mat/0304165 Strongly Correlated Electrons +cond-mat/0304166 Mesoscale and Nanoscale Physics +cond-mat/0304167 Superconductivity +cond-mat/0304169 Strongly Correlated Electrons +cond-mat/0304170 Statistical Mechanics +cond-mat/0304174 Statistical Mechanics +cond-mat/0304175 Strongly Correlated Electrons +cond-mat/0304176 Superconductivity +cond-mat/0304177 Mesoscale and Nanoscale Physics +cond-mat/0304180 Statistical Mechanics +cond-mat/0304181 +cond-mat/0304182 Mesoscale and Nanoscale Physics +cond-mat/0304183 Strongly Correlated Electrons +cond-mat/0304184 Materials Science +cond-mat/0304185 Mesoscale and Nanoscale Physics +cond-mat/0304186 +cond-mat/0304187 Strongly Correlated Electrons +cond-mat/0304188 Soft Condensed Matter +cond-mat/0304189 Strongly Correlated Electrons +cond-mat/0304191 Mesoscale and Nanoscale Physics +cond-mat/0304192 Disordered Systems and Neural Networks +cond-mat/0304193 Superconductivity +cond-mat/0304196 Materials Science +cond-mat/0304198 Materials Science +cond-mat/0304199 Statistical Mechanics +cond-mat/0304202 Soft Condensed Matter +cond-mat/0304203 Soft Condensed Matter +cond-mat/0304204 Strongly Correlated Electrons +cond-mat/0304206 Mesoscale and Nanoscale Physics +cond-mat/0304207 Disordered Systems and Neural Networks +cond-mat/0304208 Strongly Correlated Electrons +cond-mat/0304210 Strongly Correlated Electrons +cond-mat/0304211 Strongly Correlated Electrons +cond-mat/0304215 Materials Science +cond-mat/0304217 Mesoscale and Nanoscale Physics +cond-mat/0304218 Statistical Mechanics +cond-mat/0304219 Materials Science +cond-mat/0304220 Superconductivity +cond-mat/0304224 Statistical Mechanics +cond-mat/0304227 Mesoscale and Nanoscale Physics +cond-mat/0304228 Mesoscale and Nanoscale Physics +cond-mat/0304229 Materials Science +cond-mat/0304232 Mesoscale and Nanoscale Physics +cond-mat/0304233 Mesoscale and Nanoscale Physics +cond-mat/0304234 Strongly Correlated Electrons +cond-mat/0304236 Mesoscale and Nanoscale Physics +cond-mat/0304237 Superconductivity +cond-mat/0304238 Superconductivity +cond-mat/0304240 Superconductivity +cond-mat/0304242 Soft Condensed Matter +cond-mat/0304243 Materials Science +cond-mat/0304244 Strongly Correlated Electrons +cond-mat/0304245 Disordered Systems and Neural Networks +cond-mat/0304249 Disordered Systems and Neural Networks +cond-mat/0304250 Soft Condensed Matter +cond-mat/0304251 Statistical Mechanics +cond-mat/0304254 Statistical Mechanics +cond-mat/0304255 Superconductivity +cond-mat/0304257 Materials Science +cond-mat/0304258 Materials Science +cond-mat/0304259 Statistical Mechanics +cond-mat/0304262 Materials Science +cond-mat/0304263 Superconductivity +cond-mat/0304272 Mesoscale and Nanoscale Physics +cond-mat/0304273 Statistical Mechanics +cond-mat/0304274 Mesoscale and Nanoscale Physics +cond-mat/0304275 Mesoscale and Nanoscale Physics +cond-mat/0304276 Strongly Correlated Electrons +cond-mat/0304281 Strongly Correlated Electrons +cond-mat/0304282 Disordered Systems and Neural Networks +cond-mat/0304283 Strongly Correlated Electrons +cond-mat/0304285 Statistical Mechanics +cond-mat/0304287 Strongly Correlated Electrons +cond-mat/0304289 Materials Science +cond-mat/0304290 +cond-mat/0304291 Materials Science +cond-mat/0304295 Strongly Correlated Electrons +cond-mat/0304296 Mesoscale and Nanoscale Physics +cond-mat/0304300 Soft Condensed Matter +cond-mat/0304302 Strongly Correlated Electrons +cond-mat/0304303 Strongly Correlated Electrons +cond-mat/0304304 Mesoscale and Nanoscale Physics +cond-mat/0304306 Strongly Correlated Electrons +cond-mat/0304312 Materials Science +cond-mat/0304314 Disordered Systems and Neural Networks +cond-mat/0304315 Materials Science +cond-mat/0304317 Superconductivity +cond-mat/0304318 Mesoscale and Nanoscale Physics +cond-mat/0304319 Strongly Correlated Electrons +cond-mat/0304322 Strongly Correlated Electrons +cond-mat/0304324 Statistical Mechanics +cond-mat/0304328 Strongly Correlated Electrons +cond-mat/0304333 Statistical Mechanics +cond-mat/0304334 Soft Condensed Matter +cond-mat/0304335 Statistical Mechanics +cond-mat/0304336 Superconductivity +cond-mat/0304337 Statistical Mechanics +cond-mat/0304338 Strongly Correlated Electrons +cond-mat/0304339 Mesoscale and Nanoscale Physics +cond-mat/0304341 +cond-mat/0304343 Strongly Correlated Electrons +cond-mat/0304346 Soft Condensed Matter +cond-mat/0304349 Materials Science +cond-mat/0304351 Strongly Correlated Electrons +cond-mat/0304352 Superconductivity +cond-mat/0304353 Superconductivity +cond-mat/0304355 Statistical Mechanics +cond-mat/0304356 Soft Condensed Matter +cond-mat/0304359 +cond-mat/0304360 Strongly Correlated Electrons +cond-mat/0304361 Statistical Mechanics +cond-mat/0304362 Soft Condensed Matter +cond-mat/0304363 +cond-mat/0304364 Mesoscale and Nanoscale Physics +cond-mat/0304365 Statistical Mechanics +cond-mat/0304366 Statistical Mechanics +cond-mat/0304367 Statistical Mechanics +cond-mat/0304369 Soft Condensed Matter +cond-mat/0304372 Mesoscale and Nanoscale Physics +cond-mat/0304377 Superconductivity +cond-mat/0304379 Mesoscale and Nanoscale Physics +cond-mat/0304380 Superconductivity +cond-mat/0304381 Strongly Correlated Electrons +cond-mat/0304382 Strongly Correlated Electrons +cond-mat/0304387 Materials Science +cond-mat/0304390 Disordered Systems and Neural Networks +cond-mat/0304391 Statistical Mechanics +cond-mat/0304392 Statistical Mechanics +cond-mat/0304393 +cond-mat/0304395 Materials Science +cond-mat/0304396 +cond-mat/0304397 Mesoscale and Nanoscale Physics +cond-mat/0304399 Statistical Mechanics +cond-mat/0304400 Superconductivity +cond-mat/0304404 Mesoscale and Nanoscale Physics +cond-mat/0304405 Superconductivity +cond-mat/0304406 Strongly Correlated Electrons +cond-mat/0304407 Materials Science +cond-mat/0304410 Statistical Mechanics +cond-mat/0304411 Strongly Correlated Electrons +cond-mat/0304413 Statistical Mechanics +cond-mat/0304414 Strongly Correlated Electrons +cond-mat/0304415 Strongly Correlated Electrons +cond-mat/0304417 Mesoscale and Nanoscale Physics +cond-mat/0304420 Strongly Correlated Electrons +cond-mat/0304422 Materials Science +cond-mat/0304424 Materials Science +cond-mat/0304425 Materials Science +cond-mat/0304426 Strongly Correlated Electrons +cond-mat/0304427 Mesoscale and Nanoscale Physics +cond-mat/0304428 Soft Condensed Matter +cond-mat/0304431 Materials Science +cond-mat/0304432 Strongly Correlated Electrons +cond-mat/0304435 Superconductivity +cond-mat/0304436 Superconductivity +cond-mat/0304437 Superconductivity +cond-mat/0304441 Materials Science +cond-mat/0304443 Strongly Correlated Electrons +cond-mat/0304445 Superconductivity +cond-mat/0304446 +cond-mat/0304448 Mesoscale and Nanoscale Physics +cond-mat/0304449 +cond-mat/0304450 +cond-mat/0304451 Statistical Mechanics +cond-mat/0304452 Strongly Correlated Electrons +cond-mat/0304453 Statistical Mechanics +cond-mat/0304455 Materials Science +cond-mat/0304456 Superconductivity +cond-mat/0304460 Strongly Correlated Electrons +cond-mat/0304463 Soft Condensed Matter +cond-mat/0304464 Superconductivity +cond-mat/0304465 Disordered Systems and Neural Networks +cond-mat/0304466 Superconductivity +cond-mat/0304467 Strongly Correlated Electrons +cond-mat/0304468 Mesoscale and Nanoscale Physics +cond-mat/0304471 Statistical Mechanics +cond-mat/0304476 Statistical Mechanics +cond-mat/0304477 Superconductivity +cond-mat/0304478 Superconductivity +cond-mat/0304480 Superconductivity +cond-mat/0304481 Strongly Correlated Electrons +cond-mat/0304482 Superconductivity +cond-mat/0304485 Statistical Mechanics +cond-mat/0304486 +cond-mat/0304487 Strongly Correlated Electrons +cond-mat/0304488 Superconductivity +cond-mat/0304490 Soft Condensed Matter +cond-mat/0304493 Disordered Systems and Neural Networks +cond-mat/0304494 Strongly Correlated Electrons +cond-mat/0304495 Superconductivity +cond-mat/0304496 Mesoscale and Nanoscale Physics +cond-mat/0304497 Superconductivity +cond-mat/0304498 Superconductivity +cond-mat/0304499 Superconductivity +cond-mat/0304502 Materials Science +cond-mat/0304505 Superconductivity +cond-mat/0304506 Statistical Mechanics +cond-mat/0304509 Mesoscale and Nanoscale Physics +cond-mat/0304510 Superconductivity +cond-mat/0304511 Mesoscale and Nanoscale Physics +cond-mat/0304512 Statistical Mechanics +cond-mat/0304515 Mesoscale and Nanoscale Physics +cond-mat/0304518 Strongly Correlated Electrons +cond-mat/0304519 Materials Science +cond-mat/0304521 Statistical Mechanics +cond-mat/0304522 +cond-mat/0304523 Superconductivity +cond-mat/0304527 Soft Condensed Matter +cond-mat/0304528 Strongly Correlated Electrons +cond-mat/0304529 Mesoscale and Nanoscale Physics +cond-mat/0304530 Statistical Mechanics +cond-mat/0304532 Superconductivity +cond-mat/0304533 Strongly Correlated Electrons +cond-mat/0304534 Mesoscale and Nanoscale Physics +cond-mat/0304535 Statistical Mechanics +cond-mat/0304536 Superconductivity +cond-mat/0304537 Superconductivity +cond-mat/0304538 Superconductivity +cond-mat/0304542 Strongly Correlated Electrons +cond-mat/0304544 Mesoscale and Nanoscale Physics +cond-mat/0304547 Strongly Correlated Electrons +cond-mat/0304548 +cond-mat/0304550 Mesoscale and Nanoscale Physics +cond-mat/0304551 Strongly Correlated Electrons +cond-mat/0304552 Superconductivity +cond-mat/0304553 Disordered Systems and Neural Networks +cond-mat/0304554 Strongly Correlated Electrons +cond-mat/0304557 Materials Science +cond-mat/0304558 Disordered Systems and Neural Networks +cond-mat/0304564 +cond-mat/0304565 Materials Science +cond-mat/0304566 Superconductivity +cond-mat/0304568 Strongly Correlated Electrons +cond-mat/0304569 Superconductivity +cond-mat/0304574 Superconductivity +cond-mat/0304576 Disordered Systems and Neural Networks +cond-mat/0304577 +cond-mat/0304578 Strongly Correlated Electrons +cond-mat/0304580 Strongly Correlated Electrons +cond-mat/0304583 +cond-mat/0304588 Superconductivity +cond-mat/0304589 Soft Condensed Matter +cond-mat/0304591 Superconductivity +cond-mat/0304594 +cond-mat/0304596 Statistical Mechanics +cond-mat/0304598 Superconductivity +cond-mat/0304599 Statistical Mechanics +cond-mat/0304600 Disordered Systems and Neural Networks +cond-mat/0304602 Materials Science +cond-mat/0304603 Superconductivity +cond-mat/0304604 Mesoscale and Nanoscale Physics +cond-mat/0304606 Statistical Mechanics +cond-mat/0304607 Superconductivity +cond-mat/0304609 Statistical Mechanics +cond-mat/0304610 Mesoscale and Nanoscale Physics +cond-mat/0304611 Soft Condensed Matter +cond-mat/0304613 Statistical Mechanics +cond-mat/0304615 Soft Condensed Matter +cond-mat/0304616 Mesoscale and Nanoscale Physics +cond-mat/0304620 Strongly Correlated Electrons +cond-mat/0304621 Strongly Correlated Electrons +cond-mat/0304622 +cond-mat/0304623 Strongly Correlated Electrons +cond-mat/0304625 Strongly Correlated Electrons +cond-mat/0304626 Mesoscale and Nanoscale Physics +cond-mat/0304628 Strongly Correlated Electrons +cond-mat/0304629 Strongly Correlated Electrons +cond-mat/0304633 Statistical Mechanics +cond-mat/0304634 Strongly Correlated Electrons +cond-mat/0304637 Statistical Mechanics +cond-mat/0304641 Strongly Correlated Electrons +cond-mat/0304646 Superconductivity +cond-mat/0304647 Soft Condensed Matter +cond-mat/0304648 Mesoscale and Nanoscale Physics +cond-mat/0304649 Statistical Mechanics +cond-mat/0304651 Strongly Correlated Electrons +cond-mat/0304654 Statistical Mechanics +cond-mat/0304660 +cond-mat/0304664 Superconductivity +cond-mat/0304667 Materials Science +cond-mat/0304668 Superconductivity +cond-mat/0304671 +cond-mat/0304673 Disordered Systems and Neural Networks +cond-mat/0304674 Mesoscale and Nanoscale Physics +cond-mat/0304676 Soft Condensed Matter +cond-mat/0304678 Mesoscale and Nanoscale Physics +cond-mat/0304680 Materials Science +cond-mat/0304682 Superconductivity +cond-mat/0304683 Soft Condensed Matter +cond-mat/0304684 Statistical Mechanics +cond-mat/0304687 Mesoscale and Nanoscale Physics +cond-mat/0304692 +cond-mat/0304696 Statistical Mechanics +cond-mat/0304697 Strongly Correlated Electrons +cond-mat/0304698 Statistical Mechanics +cond-mat/0305001 Strongly Correlated Electrons +cond-mat/0305005 Materials Science +cond-mat/0305006 Superconductivity +cond-mat/0305007 Statistical Mechanics +cond-mat/0305009 +cond-mat/0305010 Disordered Systems and Neural Networks +cond-mat/0305012 Mesoscale and Nanoscale Physics +cond-mat/0305013 Soft Condensed Matter +cond-mat/0305014 Soft Condensed Matter +cond-mat/0305015 +cond-mat/0305016 Materials Science +cond-mat/0305019 Mesoscale and Nanoscale Physics +cond-mat/0305020 Superconductivity +cond-mat/0305021 Superconductivity +cond-mat/0305022 Strongly Correlated Electrons +cond-mat/0305028 +cond-mat/0305031 Strongly Correlated Electrons +cond-mat/0305034 +cond-mat/0305037 Soft Condensed Matter +cond-mat/0305040 +cond-mat/0305041 Statistical Mechanics +cond-mat/0305042 Disordered Systems and Neural Networks +cond-mat/0305044 Disordered Systems and Neural Networks +cond-mat/0305045 Soft Condensed Matter +cond-mat/0305047 Materials Science +cond-mat/0305049 Soft Condensed Matter +cond-mat/0305052 Statistical Mechanics +cond-mat/0305055 Statistical Mechanics +cond-mat/0305056 Statistical Mechanics +cond-mat/0305059 Superconductivity +cond-mat/0305063 Superconductivity +cond-mat/0305066 +cond-mat/0305069 Materials Science +cond-mat/0305070 Statistical Mechanics +cond-mat/0305071 Superconductivity +cond-mat/0305072 Statistical Mechanics +cond-mat/0305073 Disordered Systems and Neural Networks +cond-mat/0305075 Superconductivity +cond-mat/0305076 Mesoscale and Nanoscale Physics +cond-mat/0305078 Mesoscale and Nanoscale Physics +cond-mat/0305079 +cond-mat/0305080 Strongly Correlated Electrons +cond-mat/0305082 Statistical Mechanics +cond-mat/0305083 Strongly Correlated Electrons +cond-mat/0305085 Disordered Systems and Neural Networks +cond-mat/0305086 Mesoscale and Nanoscale Physics +cond-mat/0305087 Statistical Mechanics +cond-mat/0305088 Disordered Systems and Neural Networks +cond-mat/0305089 Soft Condensed Matter +cond-mat/0305090 Mesoscale and Nanoscale Physics +cond-mat/0305092 Strongly Correlated Electrons +cond-mat/0305093 Soft Condensed Matter +cond-mat/0305094 Soft Condensed Matter +cond-mat/0305095 +cond-mat/0305096 Mesoscale and Nanoscale Physics +cond-mat/0305097 Statistical Mechanics +cond-mat/0305098 Statistical Mechanics +cond-mat/0305099 Strongly Correlated Electrons +cond-mat/0305101 Statistical Mechanics +cond-mat/0305103 Materials Science +cond-mat/0305105 Materials Science +cond-mat/0305107 Mesoscale and Nanoscale Physics +cond-mat/0305108 Mesoscale and Nanoscale Physics +cond-mat/0305109 Soft Condensed Matter +cond-mat/0305111 Strongly Correlated Electrons +cond-mat/0305113 Mesoscale and Nanoscale Physics +cond-mat/0305114 Strongly Correlated Electrons +cond-mat/0305116 Materials Science +cond-mat/0305117 Superconductivity +cond-mat/0305119 Materials Science +cond-mat/0305120 Disordered Systems and Neural Networks +cond-mat/0305121 Strongly Correlated Electrons +cond-mat/0305122 Soft Condensed Matter +cond-mat/0305124 Mesoscale and Nanoscale Physics +cond-mat/0305125 Statistical Mechanics +cond-mat/0305127 Mesoscale and Nanoscale Physics +cond-mat/0305128 Statistical Mechanics +cond-mat/0305132 Statistical Mechanics +cond-mat/0305133 Statistical Mechanics +cond-mat/0305135 Superconductivity +cond-mat/0305136 Statistical Mechanics +cond-mat/0305139 Statistical Mechanics +cond-mat/0305140 Strongly Correlated Electrons +cond-mat/0305141 Strongly Correlated Electrons +cond-mat/0305142 Superconductivity +cond-mat/0305143 Superconductivity +cond-mat/0305144 Strongly Correlated Electrons +cond-mat/0305145 Superconductivity +cond-mat/0305148 +cond-mat/0305151 Superconductivity +cond-mat/0305153 Superconductivity +cond-mat/0305155 Materials Science +cond-mat/0305158 Superconductivity +cond-mat/0305160 Superconductivity +cond-mat/0305161 Superconductivity +cond-mat/0305163 Superconductivity +cond-mat/0305166 Strongly Correlated Electrons +cond-mat/0305167 Statistical Mechanics +cond-mat/0305169 +cond-mat/0305171 Statistical Mechanics +cond-mat/0305172 Disordered Systems and Neural Networks +cond-mat/0305173 Strongly Correlated Electrons +cond-mat/0305175 +cond-mat/0305176 Soft Condensed Matter +cond-mat/0305177 Disordered Systems and Neural Networks +cond-mat/0305178 Statistical Mechanics +cond-mat/0305181 Statistical Mechanics +cond-mat/0305182 Strongly Correlated Electrons +cond-mat/0305183 Materials Science +cond-mat/0305184 Soft Condensed Matter +cond-mat/0305185 Mesoscale and Nanoscale Physics +cond-mat/0305187 Disordered Systems and Neural Networks +cond-mat/0305190 Superconductivity +cond-mat/0305192 Statistical Mechanics +cond-mat/0305194 +cond-mat/0305195 Strongly Correlated Electrons +cond-mat/0305196 Statistical Mechanics +cond-mat/0305198 Superconductivity +cond-mat/0305199 Mesoscale and Nanoscale Physics +cond-mat/0305200 +cond-mat/0305201 Superconductivity +cond-mat/0305202 Mesoscale and Nanoscale Physics +cond-mat/0305207 Statistical Mechanics +cond-mat/0305208 Superconductivity +cond-mat/0305209 Statistical Mechanics +cond-mat/0305210 Soft Condensed Matter +cond-mat/0305212 Statistical Mechanics +cond-mat/0305214 Materials Science +cond-mat/0305215 Soft Condensed Matter +cond-mat/0305216 Strongly Correlated Electrons +cond-mat/0305217 Statistical Mechanics +cond-mat/0305218 +cond-mat/0305219 Statistical Mechanics +cond-mat/0305220 Materials Science +cond-mat/0305221 Materials Science +cond-mat/0305222 Materials Science +cond-mat/0305223 +cond-mat/0305224 Materials Science +cond-mat/0305225 Soft Condensed Matter +cond-mat/0305226 +cond-mat/0305227 Statistical Mechanics +cond-mat/0305229 Soft Condensed Matter +cond-mat/0305230 +cond-mat/0305231 Statistical Mechanics +cond-mat/0305233 Soft Condensed Matter +cond-mat/0305234 Soft Condensed Matter +cond-mat/0305235 +cond-mat/0305237 Strongly Correlated Electrons +cond-mat/0305239 Statistical Mechanics +cond-mat/0305240 Mesoscale and Nanoscale Physics +cond-mat/0305243 Materials Science +cond-mat/0305244 Superconductivity +cond-mat/0305245 Superconductivity +cond-mat/0305246 Mesoscale and Nanoscale Physics +cond-mat/0305247 Soft Condensed Matter +cond-mat/0305249 Superconductivity +cond-mat/0305250 +cond-mat/0305251 Statistical Mechanics +cond-mat/0305252 Materials Science +cond-mat/0305253 Superconductivity +cond-mat/0305254 Disordered Systems and Neural Networks +cond-mat/0305255 Superconductivity +cond-mat/0305256 Superconductivity +cond-mat/0305257 Superconductivity +cond-mat/0305258 Superconductivity +cond-mat/0305259 Materials Science +cond-mat/0305264 Soft Condensed Matter +cond-mat/0305266 Materials Science +cond-mat/0305267 Soft Condensed Matter +cond-mat/0305268 Soft Condensed Matter +cond-mat/0305271 Strongly Correlated Electrons +cond-mat/0305272 Strongly Correlated Electrons +cond-mat/0305278 Superconductivity +cond-mat/0305280 Soft Condensed Matter +cond-mat/0305281 Strongly Correlated Electrons +cond-mat/0305283 Statistical Mechanics +cond-mat/0305284 Mesoscale and Nanoscale Physics +cond-mat/0305288 Soft Condensed Matter +cond-mat/0305289 Mesoscale and Nanoscale Physics +cond-mat/0305290 Soft Condensed Matter +cond-mat/0305291 +cond-mat/0305293 Superconductivity +cond-mat/0305294 Statistical Mechanics +cond-mat/0305295 Mesoscale and Nanoscale Physics +cond-mat/0305297 Materials Science +cond-mat/0305298 Materials Science +cond-mat/0305299 Statistical Mechanics +cond-mat/0305301 Superconductivity +cond-mat/0305302 Mesoscale and Nanoscale Physics +cond-mat/0305304 +cond-mat/0305305 Statistical Mechanics +cond-mat/0305307 +cond-mat/0305308 Materials Science +cond-mat/0305311 Strongly Correlated Electrons +cond-mat/0305312 Materials Science +cond-mat/0305313 Mesoscale and Nanoscale Physics +cond-mat/0305314 Disordered Systems and Neural Networks +cond-mat/0305315 Mesoscale and Nanoscale Physics +cond-mat/0305316 Disordered Systems and Neural Networks +cond-mat/0305317 Strongly Correlated Electrons +cond-mat/0305322 Statistical Mechanics +cond-mat/0305323 Materials Science +cond-mat/0305324 Superconductivity +cond-mat/0305325 Mesoscale and Nanoscale Physics +cond-mat/0305326 Mesoscale and Nanoscale Physics +cond-mat/0305327 Materials Science +cond-mat/0305328 Strongly Correlated Electrons +cond-mat/0305331 Materials Science +cond-mat/0305332 +cond-mat/0305333 Materials Science +cond-mat/0305334 Soft Condensed Matter +cond-mat/0305338 Materials Science +cond-mat/0305339 Statistical Mechanics +cond-mat/0305340 Statistical Mechanics +cond-mat/0305343 +cond-mat/0305345 Strongly Correlated Electrons +cond-mat/0305346 +cond-mat/0305348 Soft Condensed Matter +cond-mat/0305350 Disordered Systems and Neural Networks +cond-mat/0305352 Strongly Correlated Electrons +cond-mat/0305357 Soft Condensed Matter +cond-mat/0305358 Mesoscale and Nanoscale Physics +cond-mat/0305359 Statistical Mechanics +cond-mat/0305360 Soft Condensed Matter +cond-mat/0305361 Mesoscale and Nanoscale Physics +cond-mat/0305363 Other Condensed Matter +cond-mat/0305364 Mesoscale and Nanoscale Physics +cond-mat/0305366 Superconductivity +cond-mat/0305367 Superconductivity +cond-mat/0305370 Materials Science +cond-mat/0305371 Mesoscale and Nanoscale Physics +cond-mat/0305373 Superconductivity +cond-mat/0305374 Soft Condensed Matter +cond-mat/0305375 Strongly Correlated Electrons +cond-mat/0305376 Statistical Mechanics +cond-mat/0305378 Soft Condensed Matter +cond-mat/0305380 Superconductivity +cond-mat/0305383 Materials Science +cond-mat/0305384 Disordered Systems and Neural Networks +cond-mat/0305385 Superconductivity +cond-mat/0305386 Statistical Mechanics +cond-mat/0305391 +cond-mat/0305394 Superconductivity +cond-mat/0305396 +cond-mat/0305399 Soft Condensed Matter +cond-mat/0305400 Materials Science +cond-mat/0305404 Disordered Systems and Neural Networks +cond-mat/0305407 Materials Science +cond-mat/0305408 Soft Condensed Matter +cond-mat/0305410 Soft Condensed Matter +cond-mat/0305412 Strongly Correlated Electrons +cond-mat/0305413 Materials Science +cond-mat/0305418 Materials Science +cond-mat/0305421 Materials Science +cond-mat/0305422 Superconductivity +cond-mat/0305424 Strongly Correlated Electrons +cond-mat/0305427 Strongly Correlated Electrons +cond-mat/0305430 Soft Condensed Matter +cond-mat/0305431 Mesoscale and Nanoscale Physics +cond-mat/0305433 Superconductivity +cond-mat/0305434 Statistical Mechanics +cond-mat/0305435 Materials Science +cond-mat/0305436 Statistical Mechanics +cond-mat/0305437 Superconductivity +cond-mat/0305438 Superconductivity +cond-mat/0305439 Mesoscale and Nanoscale Physics +cond-mat/0305440 Strongly Correlated Electrons +cond-mat/0305441 Soft Condensed Matter +cond-mat/0305443 Soft Condensed Matter +cond-mat/0305444 Statistical Mechanics +cond-mat/0305445 Disordered Systems and Neural Networks +cond-mat/0305448 Strongly Correlated Electrons +cond-mat/0305449 Soft Condensed Matter +cond-mat/0305450 Superconductivity +cond-mat/0305451 Strongly Correlated Electrons +cond-mat/0305452 Superconductivity +cond-mat/0305453 Strongly Correlated Electrons +cond-mat/0305454 Mesoscale and Nanoscale Physics +cond-mat/0305458 Disordered Systems and Neural Networks +cond-mat/0305461 Mesoscale and Nanoscale Physics +cond-mat/0305462 Statistical Mechanics +cond-mat/0305463 Strongly Correlated Electrons +cond-mat/0305465 Statistical Mechanics +cond-mat/0305466 Superconductivity +cond-mat/0305467 Mesoscale and Nanoscale Physics +cond-mat/0305468 Statistical Mechanics +cond-mat/0305470 Statistical Mechanics +cond-mat/0305471 Soft Condensed Matter +cond-mat/0305473 Materials Science +cond-mat/0305474 Superconductivity +cond-mat/0305475 Statistical Mechanics +cond-mat/0305476 Strongly Correlated Electrons +cond-mat/0305477 Superconductivity +cond-mat/0305478 Mesoscale and Nanoscale Physics +cond-mat/0305480 Materials Science +cond-mat/0305485 Superconductivity +cond-mat/0305486 Strongly Correlated Electrons +cond-mat/0305491 Disordered Systems and Neural Networks +cond-mat/0305494 Mesoscale and Nanoscale Physics +cond-mat/0305499 Mesoscale and Nanoscale Physics +cond-mat/0305500 Strongly Correlated Electrons +cond-mat/0305502 Soft Condensed Matter +cond-mat/0305503 Superconductivity +cond-mat/0305504 Soft Condensed Matter +cond-mat/0305505 Strongly Correlated Electrons +cond-mat/0305506 Soft Condensed Matter +cond-mat/0305510 Strongly Correlated Electrons +cond-mat/0305513 Statistical Mechanics +cond-mat/0305515 Disordered Systems and Neural Networks +cond-mat/0305519 Statistical Mechanics +cond-mat/0305520 Superconductivity +cond-mat/0305521 Statistical Mechanics +cond-mat/0305522 +cond-mat/0305523 Superconductivity +cond-mat/0305525 Superconductivity +cond-mat/0305526 Soft Condensed Matter +cond-mat/0305529 Strongly Correlated Electrons +cond-mat/0305530 +cond-mat/0305531 +cond-mat/0305532 Disordered Systems and Neural Networks +cond-mat/0305533 Soft Condensed Matter +cond-mat/0305535 +cond-mat/0305536 +cond-mat/0305537 Materials Science +cond-mat/0305538 Disordered Systems and Neural Networks +cond-mat/0305539 Soft Condensed Matter +cond-mat/0305541 +cond-mat/0305542 Superconductivity +cond-mat/0305548 Superconductivity +cond-mat/0305549 Statistical Mechanics +cond-mat/0305551 Superconductivity +cond-mat/0305552 +cond-mat/0305558 Soft Condensed Matter +cond-mat/0305559 Statistical Mechanics +cond-mat/0305560 Superconductivity +cond-mat/0305561 Soft Condensed Matter +cond-mat/0305563 Superconductivity +cond-mat/0305564 Disordered Systems and Neural Networks +cond-mat/0305570 Mesoscale and Nanoscale Physics +cond-mat/0305574 Superconductivity +cond-mat/0305575 Statistical Mechanics +cond-mat/0305579 Superconductivity +cond-mat/0305580 Statistical Mechanics +cond-mat/0305583 Superconductivity +cond-mat/0305585 Superconductivity +cond-mat/0305586 Superconductivity +cond-mat/0305590 Superconductivity +cond-mat/0305592 Soft Condensed Matter +cond-mat/0305596 Statistical Mechanics +cond-mat/0305597 Strongly Correlated Electrons +cond-mat/0305600 Materials Science +cond-mat/0305601 Mesoscale and Nanoscale Physics +cond-mat/0305603 Superconductivity +cond-mat/0305605 Statistical Mechanics +cond-mat/0305606 Statistical Mechanics +cond-mat/0305607 Soft Condensed Matter +cond-mat/0305608 Strongly Correlated Electrons +cond-mat/0305610 Strongly Correlated Electrons +cond-mat/0305611 Superconductivity +cond-mat/0305612 Statistical Mechanics +cond-mat/0305615 Mesoscale and Nanoscale Physics +cond-mat/0305616 Mesoscale and Nanoscale Physics +cond-mat/0305618 +cond-mat/0305621 Materials Science +cond-mat/0305622 Mesoscale and Nanoscale Physics +cond-mat/0305623 Strongly Correlated Electrons +cond-mat/0305624 +cond-mat/0305625 Statistical Mechanics +cond-mat/0305626 Soft Condensed Matter +cond-mat/0305628 Strongly Correlated Electrons +cond-mat/0305629 Statistical Mechanics +cond-mat/0305633 Statistical Mechanics +cond-mat/0305638 Materials Science +cond-mat/0305639 Statistical Mechanics +cond-mat/0305641 Statistical Mechanics +cond-mat/0305642 Mesoscale and Nanoscale Physics +cond-mat/0305643 Materials Science +cond-mat/0305644 Strongly Correlated Electrons +cond-mat/0305645 Strongly Correlated Electrons +cond-mat/0305647 Soft Condensed Matter +cond-mat/0305648 Mesoscale and Nanoscale Physics +cond-mat/0305649 Superconductivity +cond-mat/0305650 Disordered Systems and Neural Networks +cond-mat/0305651 Materials Science +cond-mat/0305652 Soft Condensed Matter +cond-mat/0305654 Materials Science +cond-mat/0305656 Strongly Correlated Electrons +cond-mat/0305657 Soft Condensed Matter +cond-mat/0305658 Materials Science +cond-mat/0305659 Soft Condensed Matter +cond-mat/0305661 Strongly Correlated Electrons +cond-mat/0305663 Disordered Systems and Neural Networks +cond-mat/0305664 Disordered Systems and Neural Networks +cond-mat/0305665 Soft Condensed Matter +cond-mat/0305666 Soft Condensed Matter +cond-mat/0305667 Statistical Mechanics +cond-mat/0305670 Statistical Mechanics +cond-mat/0305671 Strongly Correlated Electrons +cond-mat/0305679 Strongly Correlated Electrons +cond-mat/0305684 Mesoscale and Nanoscale Physics +cond-mat/0305686 +cond-mat/0305688 Materials Science +cond-mat/0305690 Materials Science +cond-mat/0305691 Statistical Mechanics +cond-mat/0305693 Mesoscale and Nanoscale Physics +cond-mat/0305694 Soft Condensed Matter +cond-mat/0305696 Strongly Correlated Electrons +cond-mat/0305703 Soft Condensed Matter +cond-mat/0305704 Materials Science +cond-mat/0305707 Mesoscale and Nanoscale Physics +cond-mat/0305708 Mesoscale and Nanoscale Physics +cond-mat/0305710 +cond-mat/0305711 Mesoscale and Nanoscale Physics +cond-mat/0305713 Mesoscale and Nanoscale Physics +cond-mat/0305714 +cond-mat/0306001 Mesoscale and Nanoscale Physics +cond-mat/0306004 Mesoscale and Nanoscale Physics +cond-mat/0306006 Strongly Correlated Electrons +cond-mat/0306011 Soft Condensed Matter +cond-mat/0306013 Superconductivity +cond-mat/0306014 Statistical Mechanics +cond-mat/0306015 Soft Condensed Matter +cond-mat/0306017 Statistical Mechanics +cond-mat/0306020 Soft Condensed Matter +cond-mat/0306023 Mesoscale and Nanoscale Physics +cond-mat/0306025 Strongly Correlated Electrons +cond-mat/0306026 Soft Condensed Matter +cond-mat/0306027 Statistical Mechanics +cond-mat/0306029 Mesoscale and Nanoscale Physics +cond-mat/0306030 Superconductivity +cond-mat/0306031 Disordered Systems and Neural Networks +cond-mat/0306032 Materials Science +cond-mat/0306033 Materials Science +cond-mat/0306034 +cond-mat/0306042 Statistical Mechanics +cond-mat/0306044 Materials Science +cond-mat/0306045 +cond-mat/0306046 Strongly Correlated Electrons +cond-mat/0306047 +cond-mat/0306048 +cond-mat/0306049 Disordered Systems and Neural Networks +cond-mat/0306050 Soft Condensed Matter +cond-mat/0306051 Mesoscale and Nanoscale Physics +cond-mat/0306052 Superconductivity +cond-mat/0306055 Materials Science +cond-mat/0306057 Superconductivity +cond-mat/0306059 Disordered Systems and Neural Networks +cond-mat/0306060 Superconductivity +cond-mat/0306061 Statistical Mechanics +cond-mat/0306064 Disordered Systems and Neural Networks +cond-mat/0306065 Soft Condensed Matter +cond-mat/0306066 Superconductivity +cond-mat/0306067 Soft Condensed Matter +cond-mat/0306069 Soft Condensed Matter +cond-mat/0306070 Superconductivity +cond-mat/0306071 Superconductivity +cond-mat/0306072 Disordered Systems and Neural Networks +cond-mat/0306073 Statistical Mechanics +cond-mat/0306075 Strongly Correlated Electrons +cond-mat/0306076 Soft Condensed Matter +cond-mat/0306077 +cond-mat/0306078 Statistical Mechanics +cond-mat/0306079 +cond-mat/0306080 Strongly Correlated Electrons +cond-mat/0306081 Superconductivity +cond-mat/0306085 Materials Science +cond-mat/0306088 Strongly Correlated Electrons +cond-mat/0306089 Disordered Systems and Neural Networks +cond-mat/0306091 Statistical Mechanics +cond-mat/0306092 Materials Science +cond-mat/0306093 Soft Condensed Matter +cond-mat/0306094 Superconductivity +cond-mat/0306096 Soft Condensed Matter +cond-mat/0306097 Superconductivity +cond-mat/0306098 Materials Science +cond-mat/0306101 Statistical Mechanics +cond-mat/0306103 Mesoscale and Nanoscale Physics +cond-mat/0306109 Materials Science +cond-mat/0306111 Strongly Correlated Electrons +cond-mat/0306112 Statistical Mechanics +cond-mat/0306114 Soft Condensed Matter +cond-mat/0306115 Statistical Mechanics +cond-mat/0306117 Superconductivity +cond-mat/0306119 +cond-mat/0306121 Soft Condensed Matter +cond-mat/0306122 Materials Science +cond-mat/0306123 Mesoscale and Nanoscale Physics +cond-mat/0306124 Superconductivity +cond-mat/0306125 Materials Science +cond-mat/0306126 Soft Condensed Matter +cond-mat/0306127 Strongly Correlated Electrons +cond-mat/0306128 +cond-mat/0306129 Materials Science +cond-mat/0306131 Strongly Correlated Electrons +cond-mat/0306132 Mesoscale and Nanoscale Physics +cond-mat/0306133 Strongly Correlated Electrons +cond-mat/0306134 Disordered Systems and Neural Networks +cond-mat/0306136 Statistical Mechanics +cond-mat/0306137 Superconductivity +cond-mat/0306138 Statistical Mechanics +cond-mat/0306139 Materials Science +cond-mat/0306141 Strongly Correlated Electrons +cond-mat/0306142 Statistical Mechanics +cond-mat/0306144 Statistical Mechanics +cond-mat/0306145 +cond-mat/0306146 Mesoscale and Nanoscale Physics +cond-mat/0306147 Strongly Correlated Electrons +cond-mat/0306149 Soft Condensed Matter +cond-mat/0306153 +cond-mat/0306154 Statistical Mechanics +cond-mat/0306156 Mesoscale and Nanoscale Physics +cond-mat/0306161 +cond-mat/0306162 +cond-mat/0306163 Superconductivity +cond-mat/0306166 Strongly Correlated Electrons +cond-mat/0306167 Statistical Mechanics +cond-mat/0306169 Materials Science +cond-mat/0306172 +cond-mat/0306175 Statistical Mechanics +cond-mat/0306177 Disordered Systems and Neural Networks +cond-mat/0306178 Strongly Correlated Electrons +cond-mat/0306179 Mesoscale and Nanoscale Physics +cond-mat/0306180 Other Condensed Matter +cond-mat/0306181 Mesoscale and Nanoscale Physics +cond-mat/0306182 Soft Condensed Matter +cond-mat/0306185 Superconductivity +cond-mat/0306186 Mesoscale and Nanoscale Physics +cond-mat/0306188 Soft Condensed Matter +cond-mat/0306192 Strongly Correlated Electrons +cond-mat/0306193 Materials Science +cond-mat/0306197 Disordered Systems and Neural Networks +cond-mat/0306198 +cond-mat/0306199 Mesoscale and Nanoscale Physics +cond-mat/0306201 Strongly Correlated Electrons +cond-mat/0306205 Materials Science +cond-mat/0306206 +cond-mat/0306207 Superconductivity +cond-mat/0306209 Superconductivity +cond-mat/0306210 Soft Condensed Matter +cond-mat/0306214 Statistical Mechanics +cond-mat/0306215 Strongly Correlated Electrons +cond-mat/0306216 +cond-mat/0306219 Materials Science +cond-mat/0306221 Soft Condensed Matter +cond-mat/0306224 Statistical Mechanics +cond-mat/0306226 Soft Condensed Matter +cond-mat/0306227 Disordered Systems and Neural Networks +cond-mat/0306228 Superconductivity +cond-mat/0306229 Strongly Correlated Electrons +cond-mat/0306231 Superconductivity +cond-mat/0306232 Superconductivity +cond-mat/0306233 Superconductivity +cond-mat/0306235 +cond-mat/0306237 Statistical Mechanics +cond-mat/0306238 Superconductivity +cond-mat/0306240 Materials Science +cond-mat/0306241 Superconductivity +cond-mat/0306243 Statistical Mechanics +cond-mat/0306244 Soft Condensed Matter +cond-mat/0306245 Soft Condensed Matter +cond-mat/0306246 Mesoscale and Nanoscale Physics +cond-mat/0306249 +cond-mat/0306250 Superconductivity +cond-mat/0306254 Statistical Mechanics +cond-mat/0306256 Statistical Mechanics +cond-mat/0306259 Materials Science +cond-mat/0306260 Materials Science +cond-mat/0306261 Materials Science +cond-mat/0306263 Soft Condensed Matter +cond-mat/0306266 Strongly Correlated Electrons +cond-mat/0306267 Disordered Systems and Neural Networks +cond-mat/0306269 +cond-mat/0306272 Statistical Mechanics +cond-mat/0306274 Statistical Mechanics +cond-mat/0306275 Statistical Mechanics +cond-mat/0306277 Statistical Mechanics +cond-mat/0306279 +cond-mat/0306280 Soft Condensed Matter +cond-mat/0306281 Soft Condensed Matter +cond-mat/0306288 +cond-mat/0306289 Statistical Mechanics +cond-mat/0306290 Disordered Systems and Neural Networks +cond-mat/0306291 Mesoscale and Nanoscale Physics +cond-mat/0306293 Superconductivity +cond-mat/0306295 Mesoscale and Nanoscale Physics +cond-mat/0306296 Strongly Correlated Electrons +cond-mat/0306297 +cond-mat/0306298 Materials Science +cond-mat/0306299 Strongly Correlated Electrons +cond-mat/0306301 Materials Science +cond-mat/0306304 Disordered Systems and Neural Networks +cond-mat/0306305 Soft Condensed Matter +cond-mat/0306306 Statistical Mechanics +cond-mat/0306307 Statistical Mechanics +cond-mat/0306308 Superconductivity +cond-mat/0306309 Mesoscale and Nanoscale Physics +cond-mat/0306310 Materials Science +cond-mat/0306314 Superconductivity +cond-mat/0306316 Strongly Correlated Electrons +cond-mat/0306317 Superconductivity +cond-mat/0306318 Statistical Mechanics +cond-mat/0306319 +cond-mat/0306320 Mesoscale and Nanoscale Physics +cond-mat/0306321 Disordered Systems and Neural Networks +cond-mat/0306322 Statistical Mechanics +cond-mat/0306323 +cond-mat/0306324 Mesoscale and Nanoscale Physics +cond-mat/0306325 Mesoscale and Nanoscale Physics +cond-mat/0306326 Disordered Systems and Neural Networks +cond-mat/0306330 Mesoscale and Nanoscale Physics +cond-mat/0306331 Statistical Mechanics +cond-mat/0306333 Strongly Correlated Electrons +cond-mat/0306334 Strongly Correlated Electrons +cond-mat/0306337 Statistical Mechanics +cond-mat/0306339 Statistical Mechanics +cond-mat/0306340 Statistical Mechanics +cond-mat/0306341 Superconductivity +cond-mat/0306343 Statistical Mechanics +cond-mat/0306344 Mesoscale and Nanoscale Physics +cond-mat/0306345 Soft Condensed Matter +cond-mat/0306346 Soft Condensed Matter +cond-mat/0306347 Statistical Mechanics +cond-mat/0306350 Superconductivity +cond-mat/0306353 +cond-mat/0306354 Statistical Mechanics +cond-mat/0306356 Mesoscale and Nanoscale Physics +cond-mat/0306357 Strongly Correlated Electrons +cond-mat/0306358 Mesoscale and Nanoscale Physics +cond-mat/0306361 Mesoscale and Nanoscale Physics +cond-mat/0306363 Superconductivity +cond-mat/0306364 Strongly Correlated Electrons +cond-mat/0306366 Strongly Correlated Electrons +cond-mat/0306367 Materials Science +cond-mat/0306368 Mesoscale and Nanoscale Physics +cond-mat/0306369 Disordered Systems and Neural Networks +cond-mat/0306371 Strongly Correlated Electrons +cond-mat/0306376 +cond-mat/0306377 Statistical Mechanics +cond-mat/0306378 Mesoscale and Nanoscale Physics +cond-mat/0306380 Statistical Mechanics +cond-mat/0306381 +cond-mat/0306382 Disordered Systems and Neural Networks +cond-mat/0306383 Strongly Correlated Electrons +cond-mat/0306386 Disordered Systems and Neural Networks +cond-mat/0306387 Materials Science +cond-mat/0306388 Mesoscale and Nanoscale Physics +cond-mat/0306393 Statistical Mechanics +cond-mat/0306394 Soft Condensed Matter +cond-mat/0306395 Superconductivity +cond-mat/0306396 Statistical Mechanics +cond-mat/0306397 Materials Science +cond-mat/0306398 Materials Science +cond-mat/0306399 Superconductivity +cond-mat/0306400 +cond-mat/0306402 Mesoscale and Nanoscale Physics +cond-mat/0306403 Statistical Mechanics +cond-mat/0306405 Superconductivity +cond-mat/0306406 Statistical Mechanics +cond-mat/0306407 +cond-mat/0306408 Superconductivity +cond-mat/0306409 Strongly Correlated Electrons +cond-mat/0306412 Strongly Correlated Electrons +cond-mat/0306413 Materials Science +cond-mat/0306415 Superconductivity +cond-mat/0306416 Superconductivity +cond-mat/0306417 Mesoscale and Nanoscale Physics +cond-mat/0306418 Mesoscale and Nanoscale Physics +cond-mat/0306419 Materials Science +cond-mat/0306420 +cond-mat/0306422 Statistical Mechanics +cond-mat/0306424 Strongly Correlated Electrons +cond-mat/0306425 Mesoscale and Nanoscale Physics +cond-mat/0306426 Strongly Correlated Electrons +cond-mat/0306428 +cond-mat/0306430 Materials Science +cond-mat/0306432 Soft Condensed Matter +cond-mat/0306433 Statistical Mechanics +cond-mat/0306435 Statistical Mechanics +cond-mat/0306437 Strongly Correlated Electrons +cond-mat/0306438 Strongly Correlated Electrons +cond-mat/0306440 Soft Condensed Matter +cond-mat/0306441 Mesoscale and Nanoscale Physics +cond-mat/0306443 +cond-mat/0306449 Materials Science +cond-mat/0306452 Materials Science +cond-mat/0306453 Superconductivity +cond-mat/0306458 Strongly Correlated Electrons +cond-mat/0306459 Soft Condensed Matter +cond-mat/0306461 Materials Science +cond-mat/0306462 Disordered Systems and Neural Networks +cond-mat/0306463 Superconductivity +cond-mat/0306465 Mesoscale and Nanoscale Physics +cond-mat/0306468 Strongly Correlated Electrons +cond-mat/0306469 Statistical Mechanics +cond-mat/0306470 Materials Science +cond-mat/0306477 Materials Science +cond-mat/0306478 +cond-mat/0306480 Mesoscale and Nanoscale Physics +cond-mat/0306481 +cond-mat/0306487 Statistical Mechanics +cond-mat/0306488 Materials Science +cond-mat/0306489 Superconductivity +cond-mat/0306490 Materials Science +cond-mat/0306491 +cond-mat/0306492 Superconductivity +cond-mat/0306500 Soft Condensed Matter +cond-mat/0306502 Statistical Mechanics +cond-mat/0306507 Disordered Systems and Neural Networks +cond-mat/0306508 Mesoscale and Nanoscale Physics +cond-mat/0306509 Statistical Mechanics +cond-mat/0306510 Materials Science +cond-mat/0306512 Disordered Systems and Neural Networks +cond-mat/0306513 Materials Science +cond-mat/0306515 Strongly Correlated Electrons +cond-mat/0306517 Statistical Mechanics +cond-mat/0306518 Mesoscale and Nanoscale Physics +cond-mat/0306519 Strongly Correlated Electrons +cond-mat/0306521 +cond-mat/0306522 +cond-mat/0306524 Mesoscale and Nanoscale Physics +cond-mat/0306525 Statistical Mechanics +cond-mat/0306526 Mesoscale and Nanoscale Physics +cond-mat/0306527 Statistical Mechanics +cond-mat/0306528 +cond-mat/0306529 Mesoscale and Nanoscale Physics +cond-mat/0306530 Disordered Systems and Neural Networks +cond-mat/0306532 Strongly Correlated Electrons +cond-mat/0306536 Soft Condensed Matter +cond-mat/0306542 Strongly Correlated Electrons +cond-mat/0306543 Disordered Systems and Neural Networks +cond-mat/0306544 Mesoscale and Nanoscale Physics +cond-mat/0306545 Strongly Correlated Electrons +cond-mat/0306546 Soft Condensed Matter +cond-mat/0306547 +cond-mat/0306548 Superconductivity +cond-mat/0306549 Soft Condensed Matter +cond-mat/0306550 Mesoscale and Nanoscale Physics +cond-mat/0306551 Superconductivity +cond-mat/0306553 Mesoscale and Nanoscale Physics +cond-mat/0306554 Statistical Mechanics +cond-mat/0306556 Strongly Correlated Electrons +cond-mat/0306558 Soft Condensed Matter +cond-mat/0306562 Statistical Mechanics +cond-mat/0306564 +cond-mat/0306565 Materials Science +cond-mat/0306566 +cond-mat/0306567 Strongly Correlated Electrons +cond-mat/0306570 Materials Science +cond-mat/0306571 Mesoscale and Nanoscale Physics +cond-mat/0306574 Superconductivity +cond-mat/0306575 Superconductivity +cond-mat/0306576 Statistical Mechanics +cond-mat/0306577 Materials Science +cond-mat/0306578 +cond-mat/0306579 Statistical Mechanics +cond-mat/0306580 Soft Condensed Matter +cond-mat/0306582 +cond-mat/0306583 Mesoscale and Nanoscale Physics +cond-mat/0306584 Soft Condensed Matter +cond-mat/0306586 Statistical Mechanics +cond-mat/0306589 Statistical Mechanics +cond-mat/0306591 Strongly Correlated Electrons +cond-mat/0306592 +cond-mat/0306594 Superconductivity +cond-mat/0306595 Statistical Mechanics +cond-mat/0306596 Soft Condensed Matter +cond-mat/0306597 Strongly Correlated Electrons +cond-mat/0306598 Strongly Correlated Electrons +cond-mat/0306599 Statistical Mechanics +cond-mat/0306601 Statistical Mechanics +cond-mat/0306604 Materials Science +cond-mat/0306606 Superconductivity +cond-mat/0306607 Mesoscale and Nanoscale Physics +cond-mat/0306609 Disordered Systems and Neural Networks +cond-mat/0306612 Disordered Systems and Neural Networks +cond-mat/0306613 Mesoscale and Nanoscale Physics +cond-mat/0306615 Mesoscale and Nanoscale Physics +cond-mat/0306616 Materials Science +cond-mat/0306617 Superconductivity +cond-mat/0306620 Mesoscale and Nanoscale Physics +cond-mat/0306621 Superconductivity +cond-mat/0306622 Statistical Mechanics +cond-mat/0306623 Strongly Correlated Electrons +cond-mat/0306624 +cond-mat/0306625 Disordered Systems and Neural Networks +cond-mat/0306626 Soft Condensed Matter +cond-mat/0306631 Strongly Correlated Electrons +cond-mat/0306634 +cond-mat/0306635 Materials Science +cond-mat/0306638 Strongly Correlated Electrons +cond-mat/0306641 Strongly Correlated Electrons +cond-mat/0306642 Statistical Mechanics +cond-mat/0306643 Superconductivity +cond-mat/0306644 Superconductivity +cond-mat/0306645 Soft Condensed Matter +cond-mat/0306647 Statistical Mechanics +cond-mat/0306648 +cond-mat/0306649 Superconductivity +cond-mat/0306650 Superconductivity +cond-mat/0306652 Superconductivity +cond-mat/0306656 Soft Condensed Matter +cond-mat/0306659 Strongly Correlated Electrons +cond-mat/0306660 Soft Condensed Matter +cond-mat/0306661 Soft Condensed Matter +cond-mat/0306662 Soft Condensed Matter +cond-mat/0306663 Disordered Systems and Neural Networks +cond-mat/0306665 Disordered Systems and Neural Networks +cond-mat/0306668 Superconductivity +cond-mat/0306669 Mesoscale and Nanoscale Physics +cond-mat/0306677 Superconductivity +cond-mat/0306679 Strongly Correlated Electrons +cond-mat/0306680 Superconductivity +cond-mat/0306681 Soft Condensed Matter +cond-mat/0306683 Soft Condensed Matter +cond-mat/0306684 +cond-mat/0306685 Strongly Correlated Electrons +cond-mat/0306686 Materials Science +cond-mat/0306687 Soft Condensed Matter +cond-mat/0306688 Superconductivity +cond-mat/0306689 Soft Condensed Matter +cond-mat/0306693 Statistical Mechanics +cond-mat/0306695 Strongly Correlated Electrons +cond-mat/0306702 Materials Science +cond-mat/0306706 Mesoscale and Nanoscale Physics +cond-mat/0306707 Soft Condensed Matter +cond-mat/0306710 Mesoscale and Nanoscale Physics +cond-mat/0306712 Superconductivity +cond-mat/0306713 Statistical Mechanics +cond-mat/0306715 Statistical Mechanics +cond-mat/0306716 Superconductivity +cond-mat/0306718 Other Condensed Matter +cond-mat/0306719 Superconductivity +cond-mat/0306720 Disordered Systems and Neural Networks +cond-mat/0306721 Disordered Systems and Neural Networks +cond-mat/0306722 Superconductivity +cond-mat/0306725 Soft Condensed Matter +cond-mat/0306727 Strongly Correlated Electrons +cond-mat/0306729 Materials Science +cond-mat/0306732 Strongly Correlated Electrons +cond-mat/0306734 Mesoscale and Nanoscale Physics +cond-mat/0306735 Statistical Mechanics +cond-mat/0306737 Soft Condensed Matter +cond-mat/0306738 +cond-mat/0306739 Statistical Mechanics +cond-mat/0306743 Disordered Systems and Neural Networks +cond-mat/0306745 Strongly Correlated Electrons +cond-mat/0306746 Disordered Systems and Neural Networks +cond-mat/0306747 Statistical Mechanics +cond-mat/0306749 Superconductivity +cond-mat/0306750 Materials Science +cond-mat/0307001 Strongly Correlated Electrons +cond-mat/0307005 Superconductivity +cond-mat/0307008 Superconductivity +cond-mat/0307012 Superconductivity +cond-mat/0307013 Superconductivity +cond-mat/0307015 Statistical Mechanics +cond-mat/0307017 Materials Science +cond-mat/0307021 Strongly Correlated Electrons +cond-mat/0307024 Mesoscale and Nanoscale Physics +cond-mat/0307026 Disordered Systems and Neural Networks +cond-mat/0307027 Mesoscale and Nanoscale Physics +cond-mat/0307028 Statistical Mechanics +cond-mat/0307029 Statistical Mechanics +cond-mat/0307030 Materials Science +cond-mat/0307032 Materials Science +cond-mat/0307034 Mesoscale and Nanoscale Physics +cond-mat/0307035 Mesoscale and Nanoscale Physics +cond-mat/0307037 Mesoscale and Nanoscale Physics +cond-mat/0307040 Disordered Systems and Neural Networks +cond-mat/0307041 Superconductivity +cond-mat/0307042 Disordered Systems and Neural Networks +cond-mat/0307043 Superconductivity +cond-mat/0307045 Soft Condensed Matter +cond-mat/0307046 Statistical Mechanics +cond-mat/0307047 Strongly Correlated Electrons +cond-mat/0307048 Soft Condensed Matter +cond-mat/0307052 Materials Science +cond-mat/0307053 Strongly Correlated Electrons +cond-mat/0307055 Strongly Correlated Electrons +cond-mat/0307057 Statistical Mechanics +cond-mat/0307059 Superconductivity +cond-mat/0307062 Mesoscale and Nanoscale Physics +cond-mat/0307063 +cond-mat/0307067 Superconductivity +cond-mat/0307068 Strongly Correlated Electrons +cond-mat/0307069 Strongly Correlated Electrons +cond-mat/0307073 Statistical Mechanics +cond-mat/0307074 +cond-mat/0307075 +cond-mat/0307079 Soft Condensed Matter +cond-mat/0307080 Statistical Mechanics +cond-mat/0307081 Mesoscale and Nanoscale Physics +cond-mat/0307082 Disordered Systems and Neural Networks +cond-mat/0307084 Strongly Correlated Electrons +cond-mat/0307085 Strongly Correlated Electrons +cond-mat/0307089 Disordered Systems and Neural Networks +cond-mat/0307091 Soft Condensed Matter +cond-mat/0307092 Superconductivity +cond-mat/0307093 Superconductivity +cond-mat/0307094 Statistical Mechanics +cond-mat/0307096 Materials Science +cond-mat/0307099 Mesoscale and Nanoscale Physics +cond-mat/0307102 +cond-mat/0307105 Soft Condensed Matter +cond-mat/0307107 Materials Science +cond-mat/0307108 Mesoscale and Nanoscale Physics +cond-mat/0307109 Superconductivity +cond-mat/0307110 Superconductivity +cond-mat/0307111 Strongly Correlated Electrons +cond-mat/0307113 Mesoscale and Nanoscale Physics +cond-mat/0307117 Mesoscale and Nanoscale Physics +cond-mat/0307118 Strongly Correlated Electrons +cond-mat/0307119 Mesoscale and Nanoscale Physics +cond-mat/0307120 Materials Science +cond-mat/0307122 +cond-mat/0307123 Superconductivity +cond-mat/0307124 Mesoscale and Nanoscale Physics +cond-mat/0307125 Superconductivity +cond-mat/0307126 Strongly Correlated Electrons +cond-mat/0307127 Superconductivity +cond-mat/0307131 Materials Science +cond-mat/0307133 Statistical Mechanics +cond-mat/0307136 Mesoscale and Nanoscale Physics +cond-mat/0307137 Statistical Mechanics +cond-mat/0307139 Statistical Mechanics +cond-mat/0307140 Materials Science +cond-mat/0307141 Disordered Systems and Neural Networks +cond-mat/0307145 Materials Science +cond-mat/0307147 Strongly Correlated Electrons +cond-mat/0307148 Statistical Mechanics +cond-mat/0307150 Soft Condensed Matter +cond-mat/0307151 Statistical Mechanics +cond-mat/0307154 Mesoscale and Nanoscale Physics +cond-mat/0307163 Statistical Mechanics +cond-mat/0307164 Strongly Correlated Electrons +cond-mat/0307165 Materials Science +cond-mat/0307166 Mesoscale and Nanoscale Physics +cond-mat/0307168 Superconductivity +cond-mat/0307169 Superconductivity +cond-mat/0307171 Strongly Correlated Electrons +cond-mat/0307172 Strongly Correlated Electrons +cond-mat/0307173 Statistical Mechanics +cond-mat/0307174 Strongly Correlated Electrons +cond-mat/0307175 +cond-mat/0307179 Mesoscale and Nanoscale Physics +cond-mat/0307181 Materials Science +cond-mat/0307183 Soft Condensed Matter +cond-mat/0307184 Statistical Mechanics +cond-mat/0307185 Materials Science +cond-mat/0307186 Strongly Correlated Electrons +cond-mat/0307188 +cond-mat/0307189 Statistical Mechanics +cond-mat/0307191 Soft Condensed Matter +cond-mat/0307192 Soft Condensed Matter +cond-mat/0307195 Strongly Correlated Electrons +cond-mat/0307196 Materials Science +cond-mat/0307199 Soft Condensed Matter +cond-mat/0307201 Statistical Mechanics +cond-mat/0307203 Superconductivity +cond-mat/0307204 Mesoscale and Nanoscale Physics +cond-mat/0307205 Soft Condensed Matter +cond-mat/0307206 Statistical Mechanics +cond-mat/0307207 Mesoscale and Nanoscale Physics +cond-mat/0307208 Materials Science +cond-mat/0307209 Materials Science +cond-mat/0307210 Superconductivity +cond-mat/0307213 Statistical Mechanics +cond-mat/0307217 Superconductivity +cond-mat/0307220 Mesoscale and Nanoscale Physics +cond-mat/0307221 Soft Condensed Matter +cond-mat/0307223 Mesoscale and Nanoscale Physics +cond-mat/0307224 +cond-mat/0307225 Statistical Mechanics +cond-mat/0307228 Superconductivity +cond-mat/0307229 +cond-mat/0307230 Mesoscale and Nanoscale Physics +cond-mat/0307235 Mesoscale and Nanoscale Physics +cond-mat/0307236 Disordered Systems and Neural Networks +cond-mat/0307237 Soft Condensed Matter +cond-mat/0307239 Superconductivity +cond-mat/0307240 Soft Condensed Matter +cond-mat/0307241 Soft Condensed Matter +cond-mat/0307243 Statistical Mechanics +cond-mat/0307245 +cond-mat/0307246 +cond-mat/0307247 Soft Condensed Matter +cond-mat/0307248 Superconductivity +cond-mat/0307249 Superconductivity +cond-mat/0307251 Statistical Mechanics +cond-mat/0307255 +cond-mat/0307257 Statistical Mechanics +cond-mat/0307258 Superconductivity +cond-mat/0307259 Soft Condensed Matter +cond-mat/0307260 Mesoscale and Nanoscale Physics +cond-mat/0307261 Soft Condensed Matter +cond-mat/0307262 Materials Science +cond-mat/0307263 Superconductivity +cond-mat/0307264 Materials Science +cond-mat/0307267 Statistical Mechanics +cond-mat/0307271 Superconductivity +cond-mat/0307273 Materials Science +cond-mat/0307276 Materials Science +cond-mat/0307277 Strongly Correlated Electrons +cond-mat/0307279 Mesoscale and Nanoscale Physics +cond-mat/0307283 Soft Condensed Matter +cond-mat/0307284 Materials Science +cond-mat/0307287 +cond-mat/0307288 Mesoscale and Nanoscale Physics +cond-mat/0307289 Materials Science +cond-mat/0307291 Statistical Mechanics +cond-mat/0307294 Materials Science +cond-mat/0307296 Materials Science +cond-mat/0307302 Materials Science +cond-mat/0307303 Mesoscale and Nanoscale Physics +cond-mat/0307304 Strongly Correlated Electrons +cond-mat/0307305 Mesoscale and Nanoscale Physics +cond-mat/0307307 Mesoscale and Nanoscale Physics +cond-mat/0307309 Materials Science +cond-mat/0307310 Superconductivity +cond-mat/0307311 Superconductivity +cond-mat/0307313 Materials Science +cond-mat/0307315 +cond-mat/0307316 Statistical Mechanics +cond-mat/0307319 Soft Condensed Matter +cond-mat/0307320 Materials Science +cond-mat/0307322 Statistical Mechanics +cond-mat/0307323 Statistical Mechanics +cond-mat/0307328 Strongly Correlated Electrons +cond-mat/0307329 Soft Condensed Matter +cond-mat/0307331 Statistical Mechanics +cond-mat/0307334 Strongly Correlated Electrons +cond-mat/0307335 Statistical Mechanics +cond-mat/0307336 Statistical Mechanics +cond-mat/0307339 Mesoscale and Nanoscale Physics +cond-mat/0307340 Superconductivity +cond-mat/0307342 Statistical Mechanics +cond-mat/0307345 Superconductivity +cond-mat/0307348 Strongly Correlated Electrons +cond-mat/0307349 Superconductivity +cond-mat/0307351 Statistical Mechanics +cond-mat/0307353 Statistical Mechanics +cond-mat/0307354 Mesoscale and Nanoscale Physics +cond-mat/0307357 Statistical Mechanics +cond-mat/0307358 +cond-mat/0307360 Superconductivity +cond-mat/0307361 Materials Science +cond-mat/0307362 Superconductivity +cond-mat/0307364 Materials Science +cond-mat/0307366 Statistical Mechanics +cond-mat/0307367 Disordered Systems and Neural Networks +cond-mat/0307368 Soft Condensed Matter +cond-mat/0307370 Mesoscale and Nanoscale Physics +cond-mat/0307373 Soft Condensed Matter +cond-mat/0307374 Superconductivity +cond-mat/0307376 Superconductivity +cond-mat/0307378 Statistical Mechanics +cond-mat/0307380 Soft Condensed Matter +cond-mat/0307381 +cond-mat/0307383 Strongly Correlated Electrons +cond-mat/0307384 +cond-mat/0307385 Mesoscale and Nanoscale Physics +cond-mat/0307387 +cond-mat/0307388 Superconductivity +cond-mat/0307389 Materials Science +cond-mat/0307390 Statistical Mechanics +cond-mat/0307391 +cond-mat/0307392 Superconductivity +cond-mat/0307393 Superconductivity +cond-mat/0307394 Strongly Correlated Electrons +cond-mat/0307397 Superconductivity +cond-mat/0307399 Superconductivity +cond-mat/0307401 Mesoscale and Nanoscale Physics +cond-mat/0307402 Soft Condensed Matter +cond-mat/0307403 Statistical Mechanics +cond-mat/0307404 Statistical Mechanics +cond-mat/0307405 Mesoscale and Nanoscale Physics +cond-mat/0307408 Strongly Correlated Electrons +cond-mat/0307410 Statistical Mechanics +cond-mat/0307414 Materials Science +cond-mat/0307416 Mesoscale and Nanoscale Physics +cond-mat/0307417 Materials Science +cond-mat/0307419 Statistical Mechanics +cond-mat/0307420 Strongly Correlated Electrons +cond-mat/0307422 +cond-mat/0307423 Mesoscale and Nanoscale Physics +cond-mat/0307424 Mesoscale and Nanoscale Physics +cond-mat/0307428 Mesoscale and Nanoscale Physics +cond-mat/0307429 Strongly Correlated Electrons +cond-mat/0307430 Superconductivity +cond-mat/0307431 Strongly Correlated Electrons +cond-mat/0307432 Superconductivity +cond-mat/0307433 Strongly Correlated Electrons +cond-mat/0307436 Materials Science +cond-mat/0307437 Mesoscale and Nanoscale Physics +cond-mat/0307442 Mesoscale and Nanoscale Physics +cond-mat/0307444 Mesoscale and Nanoscale Physics +cond-mat/0307449 Superconductivity +cond-mat/0307453 +cond-mat/0307462 Strongly Correlated Electrons +cond-mat/0307465 Statistical Mechanics +cond-mat/0307467 +cond-mat/0307468 Superconductivity +cond-mat/0307469 Strongly Correlated Electrons +cond-mat/0307473 Mesoscale and Nanoscale Physics +cond-mat/0307477 Soft Condensed Matter +cond-mat/0307479 Mesoscale and Nanoscale Physics +cond-mat/0307480 Materials Science +cond-mat/0307483 Strongly Correlated Electrons +cond-mat/0307484 Statistical Mechanics +cond-mat/0307486 Strongly Correlated Electrons +cond-mat/0307487 Mesoscale and Nanoscale Physics +cond-mat/0307488 Statistical Mechanics +cond-mat/0307489 Statistical Mechanics +cond-mat/0307490 Statistical Mechanics +cond-mat/0307491 +cond-mat/0307492 Strongly Correlated Electrons +cond-mat/0307493 Statistical Mechanics +cond-mat/0307495 +cond-mat/0307497 Strongly Correlated Electrons +cond-mat/0307498 Statistical Mechanics +cond-mat/0307499 Disordered Systems and Neural Networks +cond-mat/0307500 Mesoscale and Nanoscale Physics +cond-mat/0307503 Materials Science +cond-mat/0307505 Materials Science +cond-mat/0307507 +cond-mat/0307508 +cond-mat/0307509 Superconductivity +cond-mat/0307510 Strongly Correlated Electrons +cond-mat/0307512 +cond-mat/0307513 Materials Science +cond-mat/0307515 Strongly Correlated Electrons +cond-mat/0307516 +cond-mat/0307517 Strongly Correlated Electrons +cond-mat/0307518 +cond-mat/0307520 Superconductivity +cond-mat/0307521 Mesoscale and Nanoscale Physics +cond-mat/0307524 Materials Science +cond-mat/0307525 Disordered Systems and Neural Networks +cond-mat/0307526 Strongly Correlated Electrons +cond-mat/0307528 Mesoscale and Nanoscale Physics +cond-mat/0307529 Mesoscale and Nanoscale Physics +cond-mat/0307531 Mesoscale and Nanoscale Physics +cond-mat/0307537 Statistical Mechanics +cond-mat/0307540 Superconductivity +cond-mat/0307541 Strongly Correlated Electrons +cond-mat/0307542 Statistical Mechanics +cond-mat/0307543 Disordered Systems and Neural Networks +cond-mat/0307549 Mesoscale and Nanoscale Physics +cond-mat/0307550 Statistical Mechanics +cond-mat/0307552 Disordered Systems and Neural Networks +cond-mat/0307553 Strongly Correlated Electrons +cond-mat/0307554 Soft Condensed Matter +cond-mat/0307560 Strongly Correlated Electrons +cond-mat/0307561 Soft Condensed Matter +cond-mat/0307564 Mesoscale and Nanoscale Physics +cond-mat/0307565 Disordered Systems and Neural Networks +cond-mat/0307568 Mesoscale and Nanoscale Physics +cond-mat/0307570 Disordered Systems and Neural Networks +cond-mat/0307571 Disordered Systems and Neural Networks +cond-mat/0307573 Materials Science +cond-mat/0307574 +cond-mat/0307576 Mesoscale and Nanoscale Physics +cond-mat/0307578 Strongly Correlated Electrons +cond-mat/0307579 Statistical Mechanics +cond-mat/0307581 Materials Science +cond-mat/0307585 Soft Condensed Matter +cond-mat/0307586 Disordered Systems and Neural Networks +cond-mat/0307587 Strongly Correlated Electrons +cond-mat/0307588 Statistical Mechanics +cond-mat/0307591 Strongly Correlated Electrons +cond-mat/0307593 Disordered Systems and Neural Networks +cond-mat/0307599 Materials Science +cond-mat/0307601 Materials Science +cond-mat/0307603 Materials Science +cond-mat/0307607 Soft Condensed Matter +cond-mat/0307608 Soft Condensed Matter +cond-mat/0307609 Soft Condensed Matter +cond-mat/0307613 Statistical Mechanics +cond-mat/0307614 Soft Condensed Matter +cond-mat/0307618 Superconductivity +cond-mat/0307619 Mesoscale and Nanoscale Physics +cond-mat/0307620 Soft Condensed Matter +cond-mat/0307621 Materials Science +cond-mat/0307622 Soft Condensed Matter +cond-mat/0307623 Statistical Mechanics +cond-mat/0307627 Superconductivity +cond-mat/0307628 Materials Science +cond-mat/0307635 Other Condensed Matter +cond-mat/0307637 Strongly Correlated Electrons +cond-mat/0307641 Disordered Systems and Neural Networks +cond-mat/0307642 Statistical Mechanics +cond-mat/0307644 Soft Condensed Matter +cond-mat/0307646 Statistical Mechanics +cond-mat/0307647 Strongly Correlated Electrons +cond-mat/0307648 Superconductivity +cond-mat/0307651 Soft Condensed Matter +cond-mat/0307652 Strongly Correlated Electrons +cond-mat/0307655 Soft Condensed Matter +cond-mat/0307658 Strongly Correlated Electrons +cond-mat/0307659 Statistical Mechanics +cond-mat/0307660 Superconductivity +cond-mat/0307661 Materials Science +cond-mat/0307662 Strongly Correlated Electrons +cond-mat/0307663 Mesoscale and Nanoscale Physics +cond-mat/0307668 Superconductivity +cond-mat/0307671 +cond-mat/0307674 Soft Condensed Matter +cond-mat/0307675 Mesoscale and Nanoscale Physics +cond-mat/0307676 +cond-mat/0307677 +cond-mat/0307678 Strongly Correlated Electrons +cond-mat/0307679 Mesoscale and Nanoscale Physics +cond-mat/0307680 Statistical Mechanics +cond-mat/0307682 Strongly Correlated Electrons +cond-mat/0307683 +cond-mat/0307684 +cond-mat/0307686 Soft Condensed Matter +cond-mat/0307687 Materials Science +cond-mat/0307689 Materials Science +cond-mat/0307690 Statistical Mechanics +cond-mat/0307691 Materials Science +cond-mat/0307692 Statistical Mechanics +cond-mat/0307693 Strongly Correlated Electrons +cond-mat/0307694 Materials Science +cond-mat/0307695 Mesoscale and Nanoscale Physics +cond-mat/0307696 Materials Science +cond-mat/0307698 Statistical Mechanics +cond-mat/0307701 Materials Science +cond-mat/0307702 Mesoscale and Nanoscale Physics +cond-mat/0307703 Statistical Mechanics +cond-mat/0307704 Statistical Mechanics +cond-mat/0307705 Superconductivity +cond-mat/0307706 Mesoscale and Nanoscale Physics +cond-mat/0307707 Materials Science +cond-mat/0307709 Disordered Systems and Neural Networks +cond-mat/0307710 Statistical Mechanics +cond-mat/0307711 Mesoscale and Nanoscale Physics +cond-mat/0307712 Materials Science +cond-mat/0307715 Soft Condensed Matter +cond-mat/0307716 Mesoscale and Nanoscale Physics +cond-mat/0307717 Statistical Mechanics +cond-mat/0307720 Statistical Mechanics +cond-mat/0307721 +cond-mat/0307722 Mesoscale and Nanoscale Physics +cond-mat/0307723 Statistical Mechanics +cond-mat/0307725 Superconductivity +cond-mat/0307726 Superconductivity +cond-mat/0307727 Mesoscale and Nanoscale Physics +cond-mat/0307728 Superconductivity +cond-mat/0307730 Mesoscale and Nanoscale Physics +cond-mat/0307731 Strongly Correlated Electrons +cond-mat/0307732 Statistical Mechanics +cond-mat/0307733 Soft Condensed Matter +cond-mat/0307734 Statistical Mechanics +cond-mat/0307736 Mesoscale and Nanoscale Physics +cond-mat/0307737 Materials Science +cond-mat/0307738 +cond-mat/0307739 Mesoscale and Nanoscale Physics +cond-mat/0307740 Statistical Mechanics +cond-mat/0307741 Strongly Correlated Electrons +cond-mat/0307744 Statistical Mechanics +cond-mat/0307752 Disordered Systems and Neural Networks +cond-mat/0307753 Strongly Correlated Electrons +cond-mat/0307754 +cond-mat/0307758 Mesoscale and Nanoscale Physics +cond-mat/0307763 Mesoscale and Nanoscale Physics +cond-mat/0307764 Materials Science +cond-mat/0307765 Materials Science +cond-mat/0307766 Statistical Mechanics +cond-mat/0307768 Statistical Mechanics +cond-mat/0307769 Statistical Mechanics +cond-mat/0308001 Strongly Correlated Electrons +cond-mat/0308002 Strongly Correlated Electrons +cond-mat/0308005 Soft Condensed Matter +cond-mat/0308010 Soft Condensed Matter +cond-mat/0308012 Statistical Mechanics +cond-mat/0308013 Statistical Mechanics +cond-mat/0308018 +cond-mat/0308025 Mesoscale and Nanoscale Physics +cond-mat/0308026 +cond-mat/0308028 +cond-mat/0308029 Mesoscale and Nanoscale Physics +cond-mat/0308036 Disordered Systems and Neural Networks +cond-mat/0308038 Materials Science +cond-mat/0308040 Mesoscale and Nanoscale Physics +cond-mat/0308041 Superconductivity +cond-mat/0308042 Strongly Correlated Electrons +cond-mat/0308045 Superconductivity +cond-mat/0308047 Superconductivity +cond-mat/0308048 Materials Science +cond-mat/0308049 Superconductivity +cond-mat/0308050 Statistical Mechanics +cond-mat/0308053 Strongly Correlated Electrons +cond-mat/0308054 Soft Condensed Matter +cond-mat/0308057 Materials Science +cond-mat/0308060 Soft Condensed Matter +cond-mat/0308061 +cond-mat/0308062 +cond-mat/0308064 +cond-mat/0308066 Strongly Correlated Electrons +cond-mat/0308068 Statistical Mechanics +cond-mat/0308069 Mesoscale and Nanoscale Physics +cond-mat/0308071 Disordered Systems and Neural Networks +cond-mat/0308073 +cond-mat/0308074 Strongly Correlated Electrons +cond-mat/0308075 Superconductivity +cond-mat/0308076 Materials Science +cond-mat/0308079 Mesoscale and Nanoscale Physics +cond-mat/0308080 Superconductivity +cond-mat/0308083 Strongly Correlated Electrons +cond-mat/0308084 Superconductivity +cond-mat/0308085 Soft Condensed Matter +cond-mat/0308087 Materials Science +cond-mat/0308089 +cond-mat/0308092 Statistical Mechanics +cond-mat/0308093 Strongly Correlated Electrons +cond-mat/0308097 Soft Condensed Matter +cond-mat/0308099 Statistical Mechanics +cond-mat/0308100 Soft Condensed Matter +cond-mat/0308101 +cond-mat/0308102 Disordered Systems and Neural Networks +cond-mat/0308103 Strongly Correlated Electrons +cond-mat/0308105 Mesoscale and Nanoscale Physics +cond-mat/0308106 Superconductivity +cond-mat/0308108 Strongly Correlated Electrons +cond-mat/0308109 Statistical Mechanics +cond-mat/0308111 Soft Condensed Matter +cond-mat/0308112 Materials Science +cond-mat/0308113 +cond-mat/0308115 Mesoscale and Nanoscale Physics +cond-mat/0308116 Materials Science +cond-mat/0308119 Statistical Mechanics +cond-mat/0308120 Strongly Correlated Electrons +cond-mat/0308122 Mesoscale and Nanoscale Physics +cond-mat/0308124 +cond-mat/0308127 Statistical Mechanics +cond-mat/0308130 Superconductivity +cond-mat/0308131 Soft Condensed Matter +cond-mat/0308132 Materials Science +cond-mat/0308135 Soft Condensed Matter +cond-mat/0308138 Materials Science +cond-mat/0308139 Mesoscale and Nanoscale Physics +cond-mat/0308140 Statistical Mechanics +cond-mat/0308141 Materials Science +cond-mat/0308142 Statistical Mechanics +cond-mat/0308145 Statistical Mechanics +cond-mat/0308146 Materials Science +cond-mat/0308147 Disordered Systems and Neural Networks +cond-mat/0308148 Disordered Systems and Neural Networks +cond-mat/0308149 Superconductivity +cond-mat/0308152 Superconductivity +cond-mat/0308153 Superconductivity +cond-mat/0308154 Materials Science +cond-mat/0308155 Materials Science +cond-mat/0308158 Mesoscale and Nanoscale Physics +cond-mat/0308159 Materials Science +cond-mat/0308160 Superconductivity +cond-mat/0308163 +cond-mat/0308164 Disordered Systems and Neural Networks +cond-mat/0308165 Soft Condensed Matter +cond-mat/0308168 Superconductivity +cond-mat/0308169 Soft Condensed Matter +cond-mat/0308170 Materials Science +cond-mat/0308171 Materials Science +cond-mat/0308176 Disordered Systems and Neural Networks +cond-mat/0308186 Materials Science +cond-mat/0308187 Soft Condensed Matter +cond-mat/0308188 Strongly Correlated Electrons +cond-mat/0308190 Materials Science +cond-mat/0308191 Strongly Correlated Electrons +cond-mat/0308193 +cond-mat/0308195 Statistical Mechanics +cond-mat/0308196 Superconductivity +cond-mat/0308197 Superconductivity +cond-mat/0308202 Strongly Correlated Electrons +cond-mat/0308204 Strongly Correlated Electrons +cond-mat/0308205 Mesoscale and Nanoscale Physics +cond-mat/0308206 Mesoscale and Nanoscale Physics +cond-mat/0308208 Statistical Mechanics +cond-mat/0308209 Strongly Correlated Electrons +cond-mat/0308210 Mesoscale and Nanoscale Physics +cond-mat/0308214 Superconductivity +cond-mat/0308215 Superconductivity +cond-mat/0308217 Statistical Mechanics +cond-mat/0308218 Mesoscale and Nanoscale Physics +cond-mat/0308219 Soft Condensed Matter +cond-mat/0308225 Disordered Systems and Neural Networks +cond-mat/0308226 Materials Science +cond-mat/0308229 Superconductivity +cond-mat/0308230 Mesoscale and Nanoscale Physics +cond-mat/0308231 Statistical Mechanics +cond-mat/0308233 Mesoscale and Nanoscale Physics +cond-mat/0308235 Statistical Mechanics +cond-mat/0308236 Strongly Correlated Electrons +cond-mat/0308238 Strongly Correlated Electrons +cond-mat/0308239 +cond-mat/0308243 Mesoscale and Nanoscale Physics +cond-mat/0308245 Materials Science +cond-mat/0308250 Soft Condensed Matter +cond-mat/0308251 Statistical Mechanics +cond-mat/0308253 Superconductivity +cond-mat/0308254 Mesoscale and Nanoscale Physics +cond-mat/0308256 Superconductivity +cond-mat/0308257 Mesoscale and Nanoscale Physics +cond-mat/0308258 Superconductivity +cond-mat/0308263 Superconductivity +cond-mat/0308264 Strongly Correlated Electrons +cond-mat/0308265 Superconductivity +cond-mat/0308267 Statistical Mechanics +cond-mat/0308268 +cond-mat/0308269 Mesoscale and Nanoscale Physics +cond-mat/0308271 Materials Science +cond-mat/0308272 Strongly Correlated Electrons +cond-mat/0308273 Strongly Correlated Electrons +cond-mat/0308274 Materials Science +cond-mat/0308275 Soft Condensed Matter +cond-mat/0308279 Disordered Systems and Neural Networks +cond-mat/0308280 Strongly Correlated Electrons +cond-mat/0308281 Soft Condensed Matter +cond-mat/0308283 Mesoscale and Nanoscale Physics +cond-mat/0308284 Statistical Mechanics +cond-mat/0308285 Disordered Systems and Neural Networks +cond-mat/0308286 Strongly Correlated Electrons +cond-mat/0308287 Disordered Systems and Neural Networks +cond-mat/0308289 Materials Science +cond-mat/0308290 Strongly Correlated Electrons +cond-mat/0308293 Disordered Systems and Neural Networks +cond-mat/0308294 +cond-mat/0308295 Strongly Correlated Electrons +cond-mat/0308296 Soft Condensed Matter +cond-mat/0308299 Materials Science +cond-mat/0308301 Superconductivity +cond-mat/0308302 Other Condensed Matter +cond-mat/0308303 Mesoscale and Nanoscale Physics +cond-mat/0308304 Statistical Mechanics +cond-mat/0308306 Superconductivity +cond-mat/0308307 Statistical Mechanics +cond-mat/0308309 Strongly Correlated Electrons +cond-mat/0308310 Mesoscale and Nanoscale Physics +cond-mat/0308313 Mesoscale and Nanoscale Physics +cond-mat/0308314 Materials Science +cond-mat/0308315 Materials Science +cond-mat/0308318 +cond-mat/0308320 Materials Science +cond-mat/0308323 Mesoscale and Nanoscale Physics +cond-mat/0308326 Statistical Mechanics +cond-mat/0308327 Materials Science +cond-mat/0308328 Superconductivity +cond-mat/0308329 Strongly Correlated Electrons +cond-mat/0308334 Strongly Correlated Electrons +cond-mat/0308335 Strongly Correlated Electrons +cond-mat/0308340 Strongly Correlated Electrons +cond-mat/0308341 Other Condensed Matter +cond-mat/0308342 Soft Condensed Matter +cond-mat/0308345 Statistical Mechanics +cond-mat/0308346 Materials Science +cond-mat/0308353 Superconductivity +cond-mat/0308354 Strongly Correlated Electrons +cond-mat/0308355 +cond-mat/0308356 Soft Condensed Matter +cond-mat/0308359 +cond-mat/0308362 Mesoscale and Nanoscale Physics +cond-mat/0308364 Strongly Correlated Electrons +cond-mat/0308366 Statistical Mechanics +cond-mat/0308367 Soft Condensed Matter +cond-mat/0308368 Strongly Correlated Electrons +cond-mat/0308371 Mesoscale and Nanoscale Physics +cond-mat/0308372 Superconductivity +cond-mat/0308373 Soft Condensed Matter +cond-mat/0308374 Soft Condensed Matter +cond-mat/0308375 +cond-mat/0308376 Strongly Correlated Electrons +cond-mat/0308378 Soft Condensed Matter +cond-mat/0308383 Strongly Correlated Electrons +cond-mat/0308384 Statistical Mechanics +cond-mat/0308385 Mesoscale and Nanoscale Physics +cond-mat/0308386 Mesoscale and Nanoscale Physics +cond-mat/0308387 Mesoscale and Nanoscale Physics +cond-mat/0308390 Strongly Correlated Electrons +cond-mat/0308391 Materials Science +cond-mat/0308393 Strongly Correlated Electrons +cond-mat/0308395 Mesoscale and Nanoscale Physics +cond-mat/0308398 Strongly Correlated Electrons +cond-mat/0308400 Strongly Correlated Electrons +cond-mat/0308402 Mesoscale and Nanoscale Physics +cond-mat/0308406 Mesoscale and Nanoscale Physics +cond-mat/0308412 Statistical Mechanics +cond-mat/0308413 Mesoscale and Nanoscale Physics +cond-mat/0308415 Soft Condensed Matter +cond-mat/0308416 Strongly Correlated Electrons +cond-mat/0308417 Soft Condensed Matter +cond-mat/0308418 +cond-mat/0308420 +cond-mat/0308422 Disordered Systems and Neural Networks +cond-mat/0308424 Superconductivity +cond-mat/0308426 Mesoscale and Nanoscale Physics +cond-mat/0308428 Superconductivity +cond-mat/0308430 Mesoscale and Nanoscale Physics +cond-mat/0308431 Soft Condensed Matter +cond-mat/0308432 Strongly Correlated Electrons +cond-mat/0308434 +cond-mat/0308441 Soft Condensed Matter +cond-mat/0308442 Statistical Mechanics +cond-mat/0308443 Strongly Correlated Electrons +cond-mat/0308444 Statistical Mechanics +cond-mat/0308445 Statistical Mechanics +cond-mat/0308446 Strongly Correlated Electrons +cond-mat/0308447 Mesoscale and Nanoscale Physics +cond-mat/0308449 Superconductivity +cond-mat/0308451 Materials Science +cond-mat/0308452 Mesoscale and Nanoscale Physics +cond-mat/0308454 Superconductivity +cond-mat/0308456 Strongly Correlated Electrons +cond-mat/0308457 +cond-mat/0308459 Mesoscale and Nanoscale Physics +cond-mat/0308460 Mesoscale and Nanoscale Physics +cond-mat/0308461 Statistical Mechanics +cond-mat/0308462 Strongly Correlated Electrons +cond-mat/0308463 Materials Science +cond-mat/0308470 Strongly Correlated Electrons +cond-mat/0308472 Superconductivity +cond-mat/0308475 Other Condensed Matter +cond-mat/0308476 +cond-mat/0308478 Materials Science +cond-mat/0308479 Materials Science +cond-mat/0308480 Materials Science +cond-mat/0308484 Strongly Correlated Electrons +cond-mat/0308485 Mesoscale and Nanoscale Physics +cond-mat/0308486 Strongly Correlated Electrons +cond-mat/0308487 Strongly Correlated Electrons +cond-mat/0308491 Superconductivity +cond-mat/0308492 Soft Condensed Matter +cond-mat/0308494 Materials Science +cond-mat/0308497 Soft Condensed Matter +cond-mat/0308499 Mesoscale and Nanoscale Physics +cond-mat/0308500 Mesoscale and Nanoscale Physics +cond-mat/0308503 Statistical Mechanics +cond-mat/0308504 Superconductivity +cond-mat/0308506 Superconductivity +cond-mat/0308511 Superconductivity +cond-mat/0308512 Superconductivity +cond-mat/0308515 Statistical Mechanics +cond-mat/0308518 Strongly Correlated Electrons +cond-mat/0308519 Soft Condensed Matter +cond-mat/0308521 Strongly Correlated Electrons +cond-mat/0308526 +cond-mat/0308528 Superconductivity +cond-mat/0308529 Soft Condensed Matter +cond-mat/0308531 Soft Condensed Matter +cond-mat/0308533 +cond-mat/0308534 +cond-mat/0308535 Mesoscale and Nanoscale Physics +cond-mat/0308536 Statistical Mechanics +cond-mat/0308537 +cond-mat/0308539 Materials Science +cond-mat/0308541 Soft Condensed Matter +cond-mat/0308544 Disordered Systems and Neural Networks +cond-mat/0308545 +cond-mat/0308546 Materials Science +cond-mat/0308547 Soft Condensed Matter +cond-mat/0308549 Materials Science +cond-mat/0308551 Strongly Correlated Electrons +cond-mat/0308553 Mesoscale and Nanoscale Physics +cond-mat/0308555 Soft Condensed Matter +cond-mat/0308556 Soft Condensed Matter +cond-mat/0308557 Mesoscale and Nanoscale Physics +cond-mat/0308559 Superconductivity +cond-mat/0308560 Superconductivity +cond-mat/0308563 Materials Science +cond-mat/0308564 Mesoscale and Nanoscale Physics +cond-mat/0308566 Statistical Mechanics +cond-mat/0308567 Superconductivity +cond-mat/0308568 Materials Science +cond-mat/0308571 Materials Science +cond-mat/0308572 +cond-mat/0308574 Superconductivity +cond-mat/0308575 +cond-mat/0308577 Strongly Correlated Electrons +cond-mat/0308578 Materials Science +cond-mat/0308582 Mesoscale and Nanoscale Physics +cond-mat/0308584 +cond-mat/0308585 Soft Condensed Matter +cond-mat/0308588 Statistical Mechanics +cond-mat/0308589 Statistical Mechanics +cond-mat/0308591 Strongly Correlated Electrons +cond-mat/0308592 Mesoscale and Nanoscale Physics +cond-mat/0308594 +cond-mat/0308596 Mesoscale and Nanoscale Physics +cond-mat/0308599 Soft Condensed Matter +cond-mat/0308601 Statistical Mechanics +cond-mat/0308604 Superconductivity +cond-mat/0308605 Materials Science +cond-mat/0308606 +cond-mat/0308608 Strongly Correlated Electrons +cond-mat/0308609 Statistical Mechanics +cond-mat/0308611 +cond-mat/0308614 Statistical Mechanics +cond-mat/0308615 Soft Condensed Matter +cond-mat/0308617 Statistical Mechanics +cond-mat/0308618 Materials Science +cond-mat/0308619 +cond-mat/0308622 Soft Condensed Matter +cond-mat/0308623 +cond-mat/0308624 Other Condensed Matter +cond-mat/0308625 Strongly Correlated Electrons +cond-mat/0308630 Strongly Correlated Electrons +cond-mat/0308631 Strongly Correlated Electrons +cond-mat/0309006 Statistical Mechanics +cond-mat/0309013 Mesoscale and Nanoscale Physics +cond-mat/0309016 +cond-mat/0309017 Statistical Mechanics +cond-mat/0309020 Superconductivity +cond-mat/0309021 +cond-mat/0309022 Strongly Correlated Electrons +cond-mat/0309024 Strongly Correlated Electrons +cond-mat/0309028 Soft Condensed Matter +cond-mat/0309029 +cond-mat/0309031 Strongly Correlated Electrons +cond-mat/0309032 Strongly Correlated Electrons +cond-mat/0309033 Materials Science +cond-mat/0309034 Superconductivity +cond-mat/0309036 Superconductivity +cond-mat/0309037 Materials Science +cond-mat/0309040 Soft Condensed Matter +cond-mat/0309042 +cond-mat/0309047 +cond-mat/0309048 +cond-mat/0309049 Mesoscale and Nanoscale Physics +cond-mat/0309050 Strongly Correlated Electrons +cond-mat/0309051 Statistical Mechanics +cond-mat/0309052 Statistical Mechanics +cond-mat/0309054 +cond-mat/0309055 Mesoscale and Nanoscale Physics +cond-mat/0309056 Materials Science +cond-mat/0309057 Strongly Correlated Electrons +cond-mat/0309058 +cond-mat/0309061 +cond-mat/0309062 Mesoscale and Nanoscale Physics +cond-mat/0309064 Superconductivity +cond-mat/0309065 Strongly Correlated Electrons +cond-mat/0309067 Strongly Correlated Electrons +cond-mat/0309068 Soft Condensed Matter +cond-mat/0309070 Statistical Mechanics +cond-mat/0309074 Mesoscale and Nanoscale Physics +cond-mat/0309075 Strongly Correlated Electrons +cond-mat/0309080 Superconductivity +cond-mat/0309081 Materials Science +cond-mat/0309083 +cond-mat/0309084 Mesoscale and Nanoscale Physics +cond-mat/0309089 Soft Condensed Matter +cond-mat/0309095 Superconductivity +cond-mat/0309097 Disordered Systems and Neural Networks +cond-mat/0309101 Statistical Mechanics +cond-mat/0309102 Strongly Correlated Electrons +cond-mat/0309103 Disordered Systems and Neural Networks +cond-mat/0309108 Superconductivity +cond-mat/0309110 Statistical Mechanics +cond-mat/0309113 Disordered Systems and Neural Networks +cond-mat/0309114 Disordered Systems and Neural Networks +cond-mat/0309121 Superconductivity +cond-mat/0309122 +cond-mat/0309123 +cond-mat/0309124 Materials Science +cond-mat/0309127 +cond-mat/0309129 Strongly Correlated Electrons +cond-mat/0309130 Statistical Mechanics +cond-mat/0309132 Superconductivity +cond-mat/0309134 +cond-mat/0309135 Statistical Mechanics +cond-mat/0309136 +cond-mat/0309137 +cond-mat/0309138 Strongly Correlated Electrons +cond-mat/0309139 +cond-mat/0309141 Other Condensed Matter +cond-mat/0309144 Superconductivity +cond-mat/0309145 Disordered Systems and Neural Networks +cond-mat/0309148 Statistical Mechanics +cond-mat/0309149 Statistical Mechanics +cond-mat/0309151 Strongly Correlated Electrons +cond-mat/0309152 Mesoscale and Nanoscale Physics +cond-mat/0309153 +cond-mat/0309155 Materials Science +cond-mat/0309156 Superconductivity +cond-mat/0309158 +cond-mat/0309159 Strongly Correlated Electrons +cond-mat/0309160 +cond-mat/0309163 Mesoscale and Nanoscale Physics +cond-mat/0309164 Soft Condensed Matter +cond-mat/0309165 Statistical Mechanics +cond-mat/0309168 Mesoscale and Nanoscale Physics +cond-mat/0309169 +cond-mat/0309171 Superconductivity +cond-mat/0309172 Strongly Correlated Electrons +cond-mat/0309174 Superconductivity +cond-mat/0309176 Mesoscale and Nanoscale Physics +cond-mat/0309177 Superconductivity +cond-mat/0309178 Statistical Mechanics +cond-mat/0309180 Materials Science +cond-mat/0309181 Disordered Systems and Neural Networks +cond-mat/0309182 Strongly Correlated Electrons +cond-mat/0309183 Superconductivity +cond-mat/0309186 Strongly Correlated Electrons +cond-mat/0309187 Statistical Mechanics +cond-mat/0309189 Statistical Mechanics +cond-mat/0309190 Statistical Mechanics +cond-mat/0309191 Materials Science +cond-mat/0309192 +cond-mat/0309193 Strongly Correlated Electrons +cond-mat/0309197 Mesoscale and Nanoscale Physics +cond-mat/0309199 Statistical Mechanics +cond-mat/0309201 Strongly Correlated Electrons +cond-mat/0309203 Superconductivity +cond-mat/0309204 Soft Condensed Matter +cond-mat/0309205 Mesoscale and Nanoscale Physics +cond-mat/0309207 Soft Condensed Matter +cond-mat/0309208 Materials Science +cond-mat/0309210 +cond-mat/0309212 Other Condensed Matter +cond-mat/0309213 Strongly Correlated Electrons +cond-mat/0309214 Soft Condensed Matter +cond-mat/0309216 Soft Condensed Matter +cond-mat/0309217 Strongly Correlated Electrons +cond-mat/0309218 Soft Condensed Matter +cond-mat/0309219 +cond-mat/0309221 +cond-mat/0309223 Materials Science +cond-mat/0309226 Statistical Mechanics +cond-mat/0309227 Soft Condensed Matter +cond-mat/0309228 Mesoscale and Nanoscale Physics +cond-mat/0309229 Superconductivity +cond-mat/0309230 Mesoscale and Nanoscale Physics +cond-mat/0309234 Statistical Mechanics +cond-mat/0309235 Strongly Correlated Electrons +cond-mat/0309236 Statistical Mechanics +cond-mat/0309238 Disordered Systems and Neural Networks +cond-mat/0309241 Soft Condensed Matter +cond-mat/0309242 Mesoscale and Nanoscale Physics +cond-mat/0309243 Superconductivity +cond-mat/0309244 Statistical Mechanics +cond-mat/0309245 Statistical Mechanics +cond-mat/0309246 Materials Science +cond-mat/0309247 Strongly Correlated Electrons +cond-mat/0309248 Soft Condensed Matter +cond-mat/0309252 Mesoscale and Nanoscale Physics +cond-mat/0309253 Soft Condensed Matter +cond-mat/0309259 Materials Science +cond-mat/0309260 Strongly Correlated Electrons +cond-mat/0309261 Superconductivity +cond-mat/0309264 +cond-mat/0309265 Superconductivity +cond-mat/0309266 Disordered Systems and Neural Networks +cond-mat/0309267 Statistical Mechanics +cond-mat/0309268 Strongly Correlated Electrons +cond-mat/0309269 Statistical Mechanics +cond-mat/0309270 Statistical Mechanics +cond-mat/0309271 Materials Science +cond-mat/0309274 Materials Science +cond-mat/0309279 Statistical Mechanics +cond-mat/0309281 Superconductivity +cond-mat/0309282 Mesoscale and Nanoscale Physics +cond-mat/0309283 +cond-mat/0309285 +cond-mat/0309287 Soft Condensed Matter +cond-mat/0309289 Materials Science +cond-mat/0309291 Mesoscale and Nanoscale Physics +cond-mat/0309294 Soft Condensed Matter +cond-mat/0309295 Strongly Correlated Electrons +cond-mat/0309296 Strongly Correlated Electrons +cond-mat/0309298 Strongly Correlated Electrons +cond-mat/0309301 Strongly Correlated Electrons +cond-mat/0309302 +cond-mat/0309303 Materials Science +cond-mat/0309308 Mesoscale and Nanoscale Physics +cond-mat/0309309 Strongly Correlated Electrons +cond-mat/0309310 Soft Condensed Matter +cond-mat/0309312 +cond-mat/0309313 Superconductivity +cond-mat/0309314 Soft Condensed Matter +cond-mat/0309316 Soft Condensed Matter +cond-mat/0309317 Materials Science +cond-mat/0309318 Other Condensed Matter +cond-mat/0309321 Materials Science +cond-mat/0309322 Soft Condensed Matter +cond-mat/0309323 Strongly Correlated Electrons +cond-mat/0309325 Strongly Correlated Electrons +cond-mat/0309326 +cond-mat/0309331 +cond-mat/0309333 Superconductivity +cond-mat/0309335 Strongly Correlated Electrons +cond-mat/0309338 Statistical Mechanics +cond-mat/0309339 Statistical Mechanics +cond-mat/0309342 Statistical Mechanics +cond-mat/0309343 +cond-mat/0309344 Strongly Correlated Electrons +cond-mat/0309345 Strongly Correlated Electrons +cond-mat/0309346 Strongly Correlated Electrons +cond-mat/0309349 Statistical Mechanics +cond-mat/0309351 Strongly Correlated Electrons +cond-mat/0309353 Mesoscale and Nanoscale Physics +cond-mat/0309355 Superconductivity +cond-mat/0309356 Strongly Correlated Electrons +cond-mat/0309360 Disordered Systems and Neural Networks +cond-mat/0309362 Strongly Correlated Electrons +cond-mat/0309363 Soft Condensed Matter +cond-mat/0309365 Statistical Mechanics +cond-mat/0309366 Soft Condensed Matter +cond-mat/0309367 Strongly Correlated Electrons +cond-mat/0309368 Statistical Mechanics +cond-mat/0309375 Statistical Mechanics +cond-mat/0309376 +cond-mat/0309377 Strongly Correlated Electrons +cond-mat/0309385 Mesoscale and Nanoscale Physics +cond-mat/0309387 Soft Condensed Matter +cond-mat/0309389 Materials Science +cond-mat/0309391 +cond-mat/0309394 Strongly Correlated Electrons +cond-mat/0309397 Superconductivity +cond-mat/0309401 Statistical Mechanics +cond-mat/0309404 Statistical Mechanics +cond-mat/0309405 Strongly Correlated Electrons +cond-mat/0309408 Strongly Correlated Electrons +cond-mat/0309410 Soft Condensed Matter +cond-mat/0309412 Strongly Correlated Electrons +cond-mat/0309417 +cond-mat/0309419 Strongly Correlated Electrons +cond-mat/0309420 Mesoscale and Nanoscale Physics +cond-mat/0309421 Soft Condensed Matter +cond-mat/0309422 Statistical Mechanics +cond-mat/0309423 Disordered Systems and Neural Networks +cond-mat/0309428 Statistical Mechanics +cond-mat/0309430 Superconductivity +cond-mat/0309431 Materials Science +cond-mat/0309432 Statistical Mechanics +cond-mat/0309434 Superconductivity +cond-mat/0309436 Disordered Systems and Neural Networks +cond-mat/0309440 Strongly Correlated Electrons +cond-mat/0309441 Mesoscale and Nanoscale Physics +cond-mat/0309444 +cond-mat/0309445 Disordered Systems and Neural Networks +cond-mat/0309447 Statistical Mechanics +cond-mat/0309449 Statistical Mechanics +cond-mat/0309456 +cond-mat/0309458 Strongly Correlated Electrons +cond-mat/0309459 Statistical Mechanics +cond-mat/0309461 Strongly Correlated Electrons +cond-mat/0309462 Statistical Mechanics +cond-mat/0309464 +cond-mat/0309466 +cond-mat/0309468 Superconductivity +cond-mat/0309470 Statistical Mechanics +cond-mat/0309471 Soft Condensed Matter +cond-mat/0309472 +cond-mat/0309473 Materials Science +cond-mat/0309475 Mesoscale and Nanoscale Physics +cond-mat/0309477 Materials Science +cond-mat/0309480 Soft Condensed Matter +cond-mat/0309482 Materials Science +cond-mat/0309483 +cond-mat/0309484 Disordered Systems and Neural Networks +cond-mat/0309488 Statistical Mechanics +cond-mat/0309490 +cond-mat/0309491 Superconductivity +cond-mat/0309492 Superconductivity +cond-mat/0309493 Strongly Correlated Electrons +cond-mat/0309494 Superconductivity +cond-mat/0309496 Mesoscale and Nanoscale Physics +cond-mat/0309497 +cond-mat/0309501 Disordered Systems and Neural Networks +cond-mat/0309502 +cond-mat/0309503 Superconductivity +cond-mat/0309507 Materials Science +cond-mat/0309508 Statistical Mechanics +cond-mat/0309509 +cond-mat/0309510 Soft Condensed Matter +cond-mat/0309511 +cond-mat/0309514 Soft Condensed Matter +cond-mat/0309515 Statistical Mechanics +cond-mat/0309519 Statistical Mechanics +cond-mat/0309520 Mesoscale and Nanoscale Physics +cond-mat/0309522 +cond-mat/0309524 +cond-mat/0309525 Mesoscale and Nanoscale Physics +cond-mat/0309527 Mesoscale and Nanoscale Physics +cond-mat/0309528 Mesoscale and Nanoscale Physics +cond-mat/0309529 Mesoscale and Nanoscale Physics +cond-mat/0309534 Strongly Correlated Electrons +cond-mat/0309538 Strongly Correlated Electrons +cond-mat/0309539 +cond-mat/0309542 Materials Science +cond-mat/0309544 Statistical Mechanics +cond-mat/0309545 Superconductivity +cond-mat/0309546 Strongly Correlated Electrons +cond-mat/0309547 Materials Science +cond-mat/0309549 Soft Condensed Matter +cond-mat/0309551 +cond-mat/0309552 Strongly Correlated Electrons +cond-mat/0309557 +cond-mat/0309562 Statistical Mechanics +cond-mat/0309566 +cond-mat/0309568 Statistical Mechanics +cond-mat/0309572 Strongly Correlated Electrons +cond-mat/0309573 Disordered Systems and Neural Networks +cond-mat/0309576 Disordered Systems and Neural Networks +cond-mat/0309578 Soft Condensed Matter +cond-mat/0309579 Soft Condensed Matter +cond-mat/0309580 Strongly Correlated Electrons +cond-mat/0309581 +cond-mat/0309583 Mesoscale and Nanoscale Physics +cond-mat/0309584 +cond-mat/0309585 +cond-mat/0309586 Soft Condensed Matter +cond-mat/0309587 Soft Condensed Matter +cond-mat/0309589 Superconductivity +cond-mat/0309590 Strongly Correlated Electrons +cond-mat/0309591 Soft Condensed Matter +cond-mat/0309592 Materials Science +cond-mat/0309594 Disordered Systems and Neural Networks +cond-mat/0309595 +cond-mat/0309597 Superconductivity +cond-mat/0309601 Statistical Mechanics +cond-mat/0309602 Disordered Systems and Neural Networks +cond-mat/0309603 Soft Condensed Matter +cond-mat/0309604 +cond-mat/0309605 Superconductivity +cond-mat/0309607 +cond-mat/0309611 Disordered Systems and Neural Networks +cond-mat/0309612 Statistical Mechanics +cond-mat/0309613 +cond-mat/0309615 +cond-mat/0309618 Statistical Mechanics +cond-mat/0309621 +cond-mat/0309622 Mesoscale and Nanoscale Physics +cond-mat/0309623 Statistical Mechanics +cond-mat/0309625 Mesoscale and Nanoscale Physics +cond-mat/0309627 Statistical Mechanics +cond-mat/0309628 Superconductivity +cond-mat/0309630 +cond-mat/0309632 Soft Condensed Matter +cond-mat/0309633 Strongly Correlated Electrons +cond-mat/0309635 Strongly Correlated Electrons +cond-mat/0309639 Statistical Mechanics +cond-mat/0309642 +cond-mat/0309643 Soft Condensed Matter +cond-mat/0309644 +cond-mat/0309645 Strongly Correlated Electrons +cond-mat/0309647 Statistical Mechanics +cond-mat/0309648 Mesoscale and Nanoscale Physics +cond-mat/0309649 Materials Science +cond-mat/0309652 Statistical Mechanics +cond-mat/0309656 Statistical Mechanics +cond-mat/0309657 Statistical Mechanics +cond-mat/0309659 Statistical Mechanics +cond-mat/0309664 Superconductivity +cond-mat/0309668 Superconductivity +cond-mat/0309673 Statistical Mechanics +cond-mat/0309674 Soft Condensed Matter +cond-mat/0309677 Materials Science +cond-mat/0309678 Superconductivity +cond-mat/0309680 Strongly Correlated Electrons +cond-mat/0309682 Mesoscale and Nanoscale Physics +cond-mat/0309688 Superconductivity +cond-mat/0309694 Mesoscale and Nanoscale Physics +cond-mat/0309695 Mesoscale and Nanoscale Physics +cond-mat/0309696 Mesoscale and Nanoscale Physics +cond-mat/0309697 Mesoscale and Nanoscale Physics +cond-mat/0309699 Superconductivity +cond-mat/0309704 Materials Science +cond-mat/0309705 +cond-mat/0309708 Soft Condensed Matter +cond-mat/0309709 Soft Condensed Matter +cond-mat/0309710 Statistical Mechanics +cond-mat/0309712 Mesoscale and Nanoscale Physics +cond-mat/0309715 Strongly Correlated Electrons +cond-mat/0309716 Superconductivity +cond-mat/0309717 +cond-mat/0310001 Superconductivity +cond-mat/0310002 +cond-mat/0310003 Strongly Correlated Electrons +cond-mat/0310007 Statistical Mechanics +cond-mat/0310008 Strongly Correlated Electrons +cond-mat/0310009 Superconductivity +cond-mat/0310011 Superconductivity +cond-mat/0310013 Superconductivity +cond-mat/0310014 Statistical Mechanics +cond-mat/0310018 Superconductivity +cond-mat/0310020 Mesoscale and Nanoscale Physics +cond-mat/0310021 +cond-mat/0310024 Strongly Correlated Electrons +cond-mat/0310025 +cond-mat/0310026 +cond-mat/0310028 Strongly Correlated Electrons +cond-mat/0310030 Materials Science +cond-mat/0310031 Mesoscale and Nanoscale Physics +cond-mat/0310033 Superconductivity +cond-mat/0310034 Strongly Correlated Electrons +cond-mat/0310035 +cond-mat/0310040 Statistical Mechanics +cond-mat/0310041 +cond-mat/0310042 +cond-mat/0310044 Strongly Correlated Electrons +cond-mat/0310048 Strongly Correlated Electrons +cond-mat/0310050 Mesoscale and Nanoscale Physics +cond-mat/0310051 Statistical Mechanics +cond-mat/0310052 Soft Condensed Matter +cond-mat/0310053 Soft Condensed Matter +cond-mat/0310054 +cond-mat/0310055 Mesoscale and Nanoscale Physics +cond-mat/0310058 Statistical Mechanics +cond-mat/0310059 Mesoscale and Nanoscale Physics +cond-mat/0310061 Statistical Mechanics +cond-mat/0310062 Statistical Mechanics +cond-mat/0310063 Statistical Mechanics +cond-mat/0310064 Mesoscale and Nanoscale Physics +cond-mat/0310067 Materials Science +cond-mat/0310069 Materials Science +cond-mat/0310071 Superconductivity +cond-mat/0310073 Statistical Mechanics +cond-mat/0310075 Materials Science +cond-mat/0310076 +cond-mat/0310077 Statistical Mechanics +cond-mat/0310079 Statistical Mechanics +cond-mat/0310080 Disordered Systems and Neural Networks +cond-mat/0310081 +cond-mat/0310082 Statistical Mechanics +cond-mat/0310083 Statistical Mechanics +cond-mat/0310084 Mesoscale and Nanoscale Physics +cond-mat/0310085 Strongly Correlated Electrons +cond-mat/0310087 Disordered Systems and Neural Networks +cond-mat/0310089 Superconductivity +cond-mat/0310090 Strongly Correlated Electrons +cond-mat/0310093 Mesoscale and Nanoscale Physics +cond-mat/0310094 Statistical Mechanics +cond-mat/0310095 Materials Science +cond-mat/0310096 Superconductivity +cond-mat/0310098 Materials Science +cond-mat/0310101 Strongly Correlated Electrons +cond-mat/0310104 Materials Science +cond-mat/0310106 Materials Science +cond-mat/0310109 Materials Science +cond-mat/0310111 Mesoscale and Nanoscale Physics +cond-mat/0310112 Strongly Correlated Electrons +cond-mat/0310114 Statistical Mechanics +cond-mat/0310115 Mesoscale and Nanoscale Physics +cond-mat/0310118 +cond-mat/0310119 Superconductivity +cond-mat/0310122 Soft Condensed Matter +cond-mat/0310123 Superconductivity +cond-mat/0310128 Mesoscale and Nanoscale Physics +cond-mat/0310129 Superconductivity +cond-mat/0310130 +cond-mat/0310131 Strongly Correlated Electrons +cond-mat/0310132 Superconductivity +cond-mat/0310133 Statistical Mechanics +cond-mat/0310134 Superconductivity +cond-mat/0310135 Statistical Mechanics +cond-mat/0310136 Superconductivity +cond-mat/0310140 +cond-mat/0310141 +cond-mat/0310142 Materials Science +cond-mat/0310145 Strongly Correlated Electrons +cond-mat/0310146 Mesoscale and Nanoscale Physics +cond-mat/0310147 Strongly Correlated Electrons +cond-mat/0310149 Mesoscale and Nanoscale Physics +cond-mat/0310150 Materials Science +cond-mat/0310151 Materials Science +cond-mat/0310152 Superconductivity +cond-mat/0310157 +cond-mat/0310158 Superconductivity +cond-mat/0310160 Materials Science +cond-mat/0310161 Disordered Systems and Neural Networks +cond-mat/0310162 Materials Science +cond-mat/0310163 Statistical Mechanics +cond-mat/0310167 Materials Science +cond-mat/0310170 Statistical Mechanics +cond-mat/0310172 Mesoscale and Nanoscale Physics +cond-mat/0310179 Strongly Correlated Electrons +cond-mat/0310180 Mesoscale and Nanoscale Physics +cond-mat/0310181 Statistical Mechanics +cond-mat/0310182 Statistical Mechanics +cond-mat/0310183 Strongly Correlated Electrons +cond-mat/0310185 +cond-mat/0310186 Strongly Correlated Electrons +cond-mat/0310187 +cond-mat/0310191 +cond-mat/0310192 Materials Science +cond-mat/0310194 Materials Science +cond-mat/0310201 Superconductivity +cond-mat/0310203 Superconductivity +cond-mat/0310204 Disordered Systems and Neural Networks +cond-mat/0310207 Soft Condensed Matter +cond-mat/0310209 Mesoscale and Nanoscale Physics +cond-mat/0310210 Statistical Mechanics +cond-mat/0310212 Strongly Correlated Electrons +cond-mat/0310214 Statistical Mechanics +cond-mat/0310215 +cond-mat/0310217 +cond-mat/0310218 +cond-mat/0310219 Soft Condensed Matter +cond-mat/0310220 Materials Science +cond-mat/0310221 Superconductivity +cond-mat/0310223 Strongly Correlated Electrons +cond-mat/0310224 Mesoscale and Nanoscale Physics +cond-mat/0310228 Soft Condensed Matter +cond-mat/0310230 Strongly Correlated Electrons +cond-mat/0310231 Superconductivity +cond-mat/0310234 +cond-mat/0310235 Materials Science +cond-mat/0310236 Materials Science +cond-mat/0310238 Materials Science +cond-mat/0310239 Statistical Mechanics +cond-mat/0310245 Mesoscale and Nanoscale Physics +cond-mat/0310246 Statistical Mechanics +cond-mat/0310249 Materials Science +cond-mat/0310252 Statistical Mechanics +cond-mat/0310255 Superconductivity +cond-mat/0310256 +cond-mat/0310257 Statistical Mechanics +cond-mat/0310258 Materials Science +cond-mat/0310259 Mesoscale and Nanoscale Physics +cond-mat/0310260 Strongly Correlated Electrons +cond-mat/0310264 Mesoscale and Nanoscale Physics +cond-mat/0310274 Statistical Mechanics +cond-mat/0310276 Superconductivity +cond-mat/0310277 +cond-mat/0310279 Materials Science +cond-mat/0310280 Soft Condensed Matter +cond-mat/0310281 +cond-mat/0310283 Materials Science +cond-mat/0310284 Superconductivity +cond-mat/0310290 Statistical Mechanics +cond-mat/0310291 Soft Condensed Matter +cond-mat/0310292 Mesoscale and Nanoscale Physics +cond-mat/0310295 Statistical Mechanics +cond-mat/0310298 Superconductivity +cond-mat/0310299 Disordered Systems and Neural Networks +cond-mat/0310303 Disordered Systems and Neural Networks +cond-mat/0310304 +cond-mat/0310306 Statistical Mechanics +cond-mat/0310307 Statistical Mechanics +cond-mat/0310310 Superconductivity +cond-mat/0310311 Statistical Mechanics +cond-mat/0310314 Statistical Mechanics +cond-mat/0310315 Mesoscale and Nanoscale Physics +cond-mat/0310316 Superconductivity +cond-mat/0310319 Materials Science +cond-mat/0310321 Soft Condensed Matter +cond-mat/0310323 Mesoscale and Nanoscale Physics +cond-mat/0310324 Superconductivity +cond-mat/0310325 +cond-mat/0310327 +cond-mat/0310329 Materials Science +cond-mat/0310331 Mesoscale and Nanoscale Physics +cond-mat/0310333 Strongly Correlated Electrons +cond-mat/0310335 Materials Science +cond-mat/0310337 Materials Science +cond-mat/0310338 Mesoscale and Nanoscale Physics +cond-mat/0310341 Strongly Correlated Electrons +cond-mat/0310342 Disordered Systems and Neural Networks +cond-mat/0310345 Mesoscale and Nanoscale Physics +cond-mat/0310346 Mesoscale and Nanoscale Physics +cond-mat/0310347 Mesoscale and Nanoscale Physics +cond-mat/0310348 Disordered Systems and Neural Networks +cond-mat/0310352 Mesoscale and Nanoscale Physics +cond-mat/0310353 Mesoscale and Nanoscale Physics +cond-mat/0310356 Statistical Mechanics +cond-mat/0310357 Strongly Correlated Electrons +cond-mat/0310358 +cond-mat/0310361 Statistical Mechanics +cond-mat/0310362 Soft Condensed Matter +cond-mat/0310366 Statistical Mechanics +cond-mat/0310367 Strongly Correlated Electrons +cond-mat/0310369 Strongly Correlated Electrons +cond-mat/0310370 Superconductivity +cond-mat/0310371 Strongly Correlated Electrons +cond-mat/0310373 Materials Science +cond-mat/0310376 Superconductivity +cond-mat/0310379 Superconductivity +cond-mat/0310380 Materials Science +cond-mat/0310384 +cond-mat/0310385 Materials Science +cond-mat/0310386 +cond-mat/0310387 Strongly Correlated Electrons +cond-mat/0310390 Soft Condensed Matter +cond-mat/0310391 Strongly Correlated Electrons +cond-mat/0310392 Mesoscale and Nanoscale Physics +cond-mat/0310394 Soft Condensed Matter +cond-mat/0310397 +cond-mat/0310399 Mesoscale and Nanoscale Physics +cond-mat/0310400 Mesoscale and Nanoscale Physics +cond-mat/0310402 Mesoscale and Nanoscale Physics +cond-mat/0310407 +cond-mat/0310408 Mesoscale and Nanoscale Physics +cond-mat/0310409 Soft Condensed Matter +cond-mat/0310412 +cond-mat/0310415 Soft Condensed Matter +cond-mat/0310417 Strongly Correlated Electrons +cond-mat/0310418 Mesoscale and Nanoscale Physics +cond-mat/0310420 Superconductivity +cond-mat/0310429 Mesoscale and Nanoscale Physics +cond-mat/0310430 Superconductivity +cond-mat/0310436 Soft Condensed Matter +cond-mat/0310437 +cond-mat/0310438 Superconductivity +cond-mat/0310440 Disordered Systems and Neural Networks +cond-mat/0310443 Superconductivity +cond-mat/0310445 Disordered Systems and Neural Networks +cond-mat/0310446 Strongly Correlated Electrons +cond-mat/0310447 Disordered Systems and Neural Networks +cond-mat/0310448 Strongly Correlated Electrons +cond-mat/0310450 Materials Science +cond-mat/0310453 Disordered Systems and Neural Networks +cond-mat/0310454 Superconductivity +cond-mat/0310455 Statistical Mechanics +cond-mat/0310457 Soft Condensed Matter +cond-mat/0310459 Superconductivity +cond-mat/0310460 +cond-mat/0310461 Superconductivity +cond-mat/0310462 Soft Condensed Matter +cond-mat/0310465 +cond-mat/0310466 Statistical Mechanics +cond-mat/0310467 Materials Science +cond-mat/0310468 Disordered Systems and Neural Networks +cond-mat/0310471 Strongly Correlated Electrons +cond-mat/0310473 +cond-mat/0310474 Mesoscale and Nanoscale Physics +cond-mat/0310477 Mesoscale and Nanoscale Physics +cond-mat/0310482 Statistical Mechanics +cond-mat/0310483 Soft Condensed Matter +cond-mat/0310484 Statistical Mechanics +cond-mat/0310489 Strongly Correlated Electrons +cond-mat/0310490 Statistical Mechanics +cond-mat/0310493 Soft Condensed Matter +cond-mat/0310494 Strongly Correlated Electrons +cond-mat/0310495 Materials Science +cond-mat/0310497 Materials Science +cond-mat/0310498 Soft Condensed Matter +cond-mat/0310499 Strongly Correlated Electrons +cond-mat/0310502 Strongly Correlated Electrons +cond-mat/0310504 Strongly Correlated Electrons +cond-mat/0310506 Mesoscale and Nanoscale Physics +cond-mat/0310507 Mesoscale and Nanoscale Physics +cond-mat/0310508 Materials Science +cond-mat/0310509 Statistical Mechanics +cond-mat/0310510 Statistical Mechanics +cond-mat/0310513 Statistical Mechanics +cond-mat/0310516 Strongly Correlated Electrons +cond-mat/0310518 Soft Condensed Matter +cond-mat/0310521 Soft Condensed Matter +cond-mat/0310522 Materials Science +cond-mat/0310526 Superconductivity +cond-mat/0310528 Statistical Mechanics +cond-mat/0310529 Strongly Correlated Electrons +cond-mat/0310530 Materials Science +cond-mat/0310533 Materials Science +cond-mat/0310534 Soft Condensed Matter +cond-mat/0310535 Soft Condensed Matter +cond-mat/0310536 Statistical Mechanics +cond-mat/0310537 +cond-mat/0310538 Soft Condensed Matter +cond-mat/0310541 Materials Science +cond-mat/0310542 +cond-mat/0310543 Soft Condensed Matter +cond-mat/0310546 Statistical Mechanics +cond-mat/0310551 Materials Science +cond-mat/0310552 Strongly Correlated Electrons +cond-mat/0310553 Statistical Mechanics +cond-mat/0310554 Mesoscale and Nanoscale Physics +cond-mat/0310555 Superconductivity +cond-mat/0310561 Disordered Systems and Neural Networks +cond-mat/0310566 Soft Condensed Matter +cond-mat/0310568 Superconductivity +cond-mat/0310570 Mesoscale and Nanoscale Physics +cond-mat/0310572 Superconductivity +cond-mat/0310573 Statistical Mechanics +cond-mat/0310575 Statistical Mechanics +cond-mat/0310576 Superconductivity +cond-mat/0310578 Mesoscale and Nanoscale Physics +cond-mat/0310580 Strongly Correlated Electrons +cond-mat/0310584 Materials Science +cond-mat/0310586 Materials Science +cond-mat/0310588 Statistical Mechanics +cond-mat/0310589 Statistical Mechanics +cond-mat/0310590 Strongly Correlated Electrons +cond-mat/0310592 Superconductivity +cond-mat/0310594 +cond-mat/0310595 Superconductivity +cond-mat/0310596 +cond-mat/0310600 Statistical Mechanics +cond-mat/0310601 +cond-mat/0310603 Disordered Systems and Neural Networks +cond-mat/0310604 Materials Science +cond-mat/0310605 Other Condensed Matter +cond-mat/0310608 Mesoscale and Nanoscale Physics +cond-mat/0310611 Materials Science +cond-mat/0310615 Strongly Correlated Electrons +cond-mat/0310617 Mesoscale and Nanoscale Physics +cond-mat/0310620 Statistical Mechanics +cond-mat/0310621 Materials Science +cond-mat/0310623 Materials Science +cond-mat/0310624 Statistical Mechanics +cond-mat/0310626 Mesoscale and Nanoscale Physics +cond-mat/0310627 Materials Science +cond-mat/0310628 Strongly Correlated Electrons +cond-mat/0310629 Materials Science +cond-mat/0310630 Materials Science +cond-mat/0310631 Strongly Correlated Electrons +cond-mat/0310633 Soft Condensed Matter +cond-mat/0310635 Strongly Correlated Electrons +cond-mat/0310636 Mesoscale and Nanoscale Physics +cond-mat/0310637 Strongly Correlated Electrons +cond-mat/0310638 Statistical Mechanics +cond-mat/0310640 Materials Science +cond-mat/0310643 +cond-mat/0310645 Strongly Correlated Electrons +cond-mat/0310650 Statistical Mechanics +cond-mat/0310652 +cond-mat/0310659 Soft Condensed Matter +cond-mat/0310660 +cond-mat/0310663 Superconductivity +cond-mat/0310664 Soft Condensed Matter +cond-mat/0310665 Statistical Mechanics +cond-mat/0310666 +cond-mat/0310667 Soft Condensed Matter +cond-mat/0310668 Mesoscale and Nanoscale Physics +cond-mat/0310671 Statistical Mechanics +cond-mat/0310672 Soft Condensed Matter +cond-mat/0310674 Strongly Correlated Electrons +cond-mat/0310676 Mesoscale and Nanoscale Physics +cond-mat/0310677 +cond-mat/0310678 Soft Condensed Matter +cond-mat/0310679 Soft Condensed Matter +cond-mat/0310681 Statistical Mechanics +cond-mat/0310682 Statistical Mechanics +cond-mat/0310683 +cond-mat/0310688 Materials Science +cond-mat/0310690 Statistical Mechanics +cond-mat/0310693 Statistical Mechanics +cond-mat/0310695 Strongly Correlated Electrons +cond-mat/0310696 Mesoscale and Nanoscale Physics +cond-mat/0310698 Statistical Mechanics +cond-mat/0310699 +cond-mat/0310700 Strongly Correlated Electrons +cond-mat/0310701 Statistical Mechanics +cond-mat/0310702 Soft Condensed Matter +cond-mat/0310703 Materials Science +cond-mat/0310704 Superconductivity +cond-mat/0310705 Statistical Mechanics +cond-mat/0310706 Disordered Systems and Neural Networks +cond-mat/0310707 Soft Condensed Matter +cond-mat/0310709 Materials Science +cond-mat/0310711 Materials Science +cond-mat/0310714 Strongly Correlated Electrons +cond-mat/0310717 Superconductivity +cond-mat/0310719 Soft Condensed Matter +cond-mat/0310720 Mesoscale and Nanoscale Physics +cond-mat/0310721 Disordered Systems and Neural Networks +cond-mat/0310724 Soft Condensed Matter +cond-mat/0310725 Statistical Mechanics +cond-mat/0310728 Statistical Mechanics +cond-mat/0310730 Materials Science +cond-mat/0310731 Statistical Mechanics +cond-mat/0310732 Materials Science +cond-mat/0310733 Statistical Mechanics +cond-mat/0310737 Materials Science +cond-mat/0310739 Strongly Correlated Electrons +cond-mat/0310741 Strongly Correlated Electrons +cond-mat/0310742 Mesoscale and Nanoscale Physics +cond-mat/0310743 Statistical Mechanics +cond-mat/0310744 Strongly Correlated Electrons +cond-mat/0310746 Statistical Mechanics +cond-mat/0310747 Materials Science +cond-mat/0310749 +cond-mat/0310750 Superconductivity +cond-mat/0310751 +cond-mat/0310752 Statistical Mechanics +cond-mat/0310753 Strongly Correlated Electrons +cond-mat/0310754 Statistical Mechanics +cond-mat/0310755 Superconductivity +cond-mat/0310756 Materials Science +cond-mat/0310757 Mesoscale and Nanoscale Physics +cond-mat/0310758 Strongly Correlated Electrons +cond-mat/0310759 +cond-mat/0310763 Statistical Mechanics +cond-mat/0310764 Strongly Correlated Electrons +cond-mat/0310768 Materials Science +cond-mat/0310769 Mesoscale and Nanoscale Physics +cond-mat/0310775 Superconductivity +cond-mat/0310777 Statistical Mechanics +cond-mat/0310780 Soft Condensed Matter +cond-mat/0310781 Strongly Correlated Electrons +cond-mat/0311001 Mesoscale and Nanoscale Physics +cond-mat/0311002 Soft Condensed Matter +cond-mat/0311004 Strongly Correlated Electrons +cond-mat/0311007 Superconductivity +cond-mat/0311010 Mesoscale and Nanoscale Physics +cond-mat/0311011 Statistical Mechanics +cond-mat/0311016 Strongly Correlated Electrons +cond-mat/0311018 Mesoscale and Nanoscale Physics +cond-mat/0311019 Strongly Correlated Electrons +cond-mat/0311021 Statistical Mechanics +cond-mat/0311023 Mesoscale and Nanoscale Physics +cond-mat/0311024 +cond-mat/0311026 Statistical Mechanics +cond-mat/0311029 Materials Science +cond-mat/0311034 Superconductivity +cond-mat/0311035 Soft Condensed Matter +cond-mat/0311036 Materials Science +cond-mat/0311037 Superconductivity +cond-mat/0311040 +cond-mat/0311041 +cond-mat/0311042 Superconductivity +cond-mat/0311043 Statistical Mechanics +cond-mat/0311044 Mesoscale and Nanoscale Physics +cond-mat/0311045 Soft Condensed Matter +cond-mat/0311047 Materials Science +cond-mat/0311048 Statistical Mechanics +cond-mat/0311052 Materials Science +cond-mat/0311054 Mesoscale and Nanoscale Physics +cond-mat/0311056 Strongly Correlated Electrons +cond-mat/0311057 Materials Science +cond-mat/0311058 Superconductivity +cond-mat/0311063 Superconductivity +cond-mat/0311065 +cond-mat/0311067 Mesoscale and Nanoscale Physics +cond-mat/0311070 Strongly Correlated Electrons +cond-mat/0311072 Soft Condensed Matter +cond-mat/0311073 Statistical Mechanics +cond-mat/0311076 Soft Condensed Matter +cond-mat/0311077 Mesoscale and Nanoscale Physics +cond-mat/0311078 Strongly Correlated Electrons +cond-mat/0311079 Strongly Correlated Electrons +cond-mat/0311080 Strongly Correlated Electrons +cond-mat/0311081 Strongly Correlated Electrons +cond-mat/0311083 Superconductivity +cond-mat/0311084 Statistical Mechanics +cond-mat/0311085 Strongly Correlated Electrons +cond-mat/0311087 Strongly Correlated Electrons +cond-mat/0311088 Strongly Correlated Electrons +cond-mat/0311089 Statistical Mechanics +cond-mat/0311092 Statistical Mechanics +cond-mat/0311093 +cond-mat/0311094 Strongly Correlated Electrons +cond-mat/0311099 Mesoscale and Nanoscale Physics +cond-mat/0311101 Soft Condensed Matter +cond-mat/0311103 Statistical Mechanics +cond-mat/0311104 Mesoscale and Nanoscale Physics +cond-mat/0311105 Mesoscale and Nanoscale Physics +cond-mat/0311106 Statistical Mechanics +cond-mat/0311107 +cond-mat/0311109 +cond-mat/0311113 Statistical Mechanics +cond-mat/0311115 +cond-mat/0311116 Mesoscale and Nanoscale Physics +cond-mat/0311117 Soft Condensed Matter +cond-mat/0311119 Materials Science +cond-mat/0311120 Mesoscale and Nanoscale Physics +cond-mat/0311124 +cond-mat/0311125 Disordered Systems and Neural Networks +cond-mat/0311127 Statistical Mechanics +cond-mat/0311130 Materials Science +cond-mat/0311134 Strongly Correlated Electrons +cond-mat/0311135 Mesoscale and Nanoscale Physics +cond-mat/0311138 +cond-mat/0311141 Other Condensed Matter +cond-mat/0311142 Strongly Correlated Electrons +cond-mat/0311144 Mesoscale and Nanoscale Physics +cond-mat/0311146 Soft Condensed Matter +cond-mat/0311147 +cond-mat/0311149 Statistical Mechanics +cond-mat/0311153 Statistical Mechanics +cond-mat/0311157 Superconductivity +cond-mat/0311158 Statistical Mechanics +cond-mat/0311159 Mesoscale and Nanoscale Physics +cond-mat/0311160 +cond-mat/0311161 Strongly Correlated Electrons +cond-mat/0311162 Materials Science +cond-mat/0311164 Statistical Mechanics +cond-mat/0311166 Superconductivity +cond-mat/0311167 Superconductivity +cond-mat/0311169 Materials Science +cond-mat/0311171 Materials Science +cond-mat/0311173 Superconductivity +cond-mat/0311175 Statistical Mechanics +cond-mat/0311176 Superconductivity +cond-mat/0311179 Statistical Mechanics +cond-mat/0311180 Mesoscale and Nanoscale Physics +cond-mat/0311181 Superconductivity +cond-mat/0311182 Materials Science +cond-mat/0311183 Disordered Systems and Neural Networks +cond-mat/0311184 Disordered Systems and Neural Networks +cond-mat/0311186 +cond-mat/0311187 Mesoscale and Nanoscale Physics +cond-mat/0311188 Strongly Correlated Electrons +cond-mat/0311194 Statistical Mechanics +cond-mat/0311195 Strongly Correlated Electrons +cond-mat/0311197 Strongly Correlated Electrons +cond-mat/0311200 Strongly Correlated Electrons +cond-mat/0311201 Superconductivity +cond-mat/0311205 Statistical Mechanics +cond-mat/0311208 Statistical Mechanics +cond-mat/0311210 Statistical Mechanics +cond-mat/0311211 Statistical Mechanics +cond-mat/0311212 Statistical Mechanics +cond-mat/0311213 Mesoscale and Nanoscale Physics +cond-mat/0311214 Mesoscale and Nanoscale Physics +cond-mat/0311216 Statistical Mechanics +cond-mat/0311218 Statistical Mechanics +cond-mat/0311219 Strongly Correlated Electrons +cond-mat/0311220 Mesoscale and Nanoscale Physics +cond-mat/0311221 Mesoscale and Nanoscale Physics +cond-mat/0311222 Strongly Correlated Electrons +cond-mat/0311226 Superconductivity +cond-mat/0311227 Statistical Mechanics +cond-mat/0311228 Superconductivity +cond-mat/0311230 Soft Condensed Matter +cond-mat/0311231 Materials Science +cond-mat/0311232 Statistical Mechanics +cond-mat/0311236 Materials Science +cond-mat/0311237 Strongly Correlated Electrons +cond-mat/0311239 Mesoscale and Nanoscale Physics +cond-mat/0311241 Statistical Mechanics +cond-mat/0311244 Statistical Mechanics +cond-mat/0311245 Superconductivity +cond-mat/0311246 Statistical Mechanics +cond-mat/0311249 Strongly Correlated Electrons +cond-mat/0311250 Materials Science +cond-mat/0311251 Statistical Mechanics +cond-mat/0311252 Disordered Systems and Neural Networks +cond-mat/0311254 +cond-mat/0311255 Statistical Mechanics +cond-mat/0311258 Superconductivity +cond-mat/0311259 Disordered Systems and Neural Networks +cond-mat/0311260 Mesoscale and Nanoscale Physics +cond-mat/0311261 Statistical Mechanics +cond-mat/0311263 Statistical Mechanics +cond-mat/0311264 Disordered Systems and Neural Networks +cond-mat/0311266 Superconductivity +cond-mat/0311268 Statistical Mechanics +cond-mat/0311269 Superconductivity +cond-mat/0311272 Materials Science +cond-mat/0311275 Materials Science +cond-mat/0311276 Statistical Mechanics +cond-mat/0311278 +cond-mat/0311279 Statistical Mechanics +cond-mat/0311280 Strongly Correlated Electrons +cond-mat/0311281 Strongly Correlated Electrons +cond-mat/0311284 Statistical Mechanics +cond-mat/0311286 Statistical Mechanics +cond-mat/0311288 Statistical Mechanics +cond-mat/0311289 Superconductivity +cond-mat/0311292 Strongly Correlated Electrons +cond-mat/0311294 Materials Science +cond-mat/0311296 Strongly Correlated Electrons +cond-mat/0311297 Materials Science +cond-mat/0311298 Materials Science +cond-mat/0311299 Superconductivity +cond-mat/0311300 Superconductivity +cond-mat/0311301 Materials Science +cond-mat/0311303 Soft Condensed Matter +cond-mat/0311304 Statistical Mechanics +cond-mat/0311305 Disordered Systems and Neural Networks +cond-mat/0311306 +cond-mat/0311307 +cond-mat/0311308 Mesoscale and Nanoscale Physics +cond-mat/0311316 Materials Science +cond-mat/0311319 Strongly Correlated Electrons +cond-mat/0311320 +cond-mat/0311321 Soft Condensed Matter +cond-mat/0311324 Soft Condensed Matter +cond-mat/0311328 Mesoscale and Nanoscale Physics +cond-mat/0311329 +cond-mat/0311331 Superconductivity +cond-mat/0311338 +cond-mat/0311340 Statistical Mechanics +cond-mat/0311342 Materials Science +cond-mat/0311344 Mesoscale and Nanoscale Physics +cond-mat/0311345 Strongly Correlated Electrons +cond-mat/0311347 Soft Condensed Matter +cond-mat/0311348 Mesoscale and Nanoscale Physics +cond-mat/0311349 +cond-mat/0311351 Materials Science +cond-mat/0311352 Soft Condensed Matter +cond-mat/0311354 Strongly Correlated Electrons +cond-mat/0311361 Soft Condensed Matter +cond-mat/0311362 Strongly Correlated Electrons +cond-mat/0311364 Superconductivity +cond-mat/0311366 Superconductivity +cond-mat/0311367 Statistical Mechanics +cond-mat/0311368 Soft Condensed Matter +cond-mat/0311369 Mesoscale and Nanoscale Physics +cond-mat/0311372 Disordered Systems and Neural Networks +cond-mat/0311373 +cond-mat/0311378 Disordered Systems and Neural Networks +cond-mat/0311381 Soft Condensed Matter +cond-mat/0311385 Statistical Mechanics +cond-mat/0311388 Strongly Correlated Electrons +cond-mat/0311389 Materials Science +cond-mat/0311390 Statistical Mechanics +cond-mat/0311391 Statistical Mechanics +cond-mat/0311392 Superconductivity +cond-mat/0311393 Materials Science +cond-mat/0311394 Disordered Systems and Neural Networks +cond-mat/0311395 Mesoscale and Nanoscale Physics +cond-mat/0311397 Strongly Correlated Electrons +cond-mat/0311398 Strongly Correlated Electrons +cond-mat/0311399 Strongly Correlated Electrons +cond-mat/0311400 Mesoscale and Nanoscale Physics +cond-mat/0311403 Mesoscale and Nanoscale Physics +cond-mat/0311404 Superconductivity +cond-mat/0311406 Mesoscale and Nanoscale Physics +cond-mat/0311408 Soft Condensed Matter +cond-mat/0311410 Soft Condensed Matter +cond-mat/0311412 Strongly Correlated Electrons +cond-mat/0311416 Statistical Mechanics +cond-mat/0311417 Materials Science +cond-mat/0311418 Statistical Mechanics +cond-mat/0311422 Materials Science +cond-mat/0311423 Mesoscale and Nanoscale Physics +cond-mat/0311425 Superconductivity +cond-mat/0311426 Strongly Correlated Electrons +cond-mat/0311427 Strongly Correlated Electrons +cond-mat/0311429 Soft Condensed Matter +cond-mat/0311430 Superconductivity +cond-mat/0311432 Strongly Correlated Electrons +cond-mat/0311436 Superconductivity +cond-mat/0311437 Statistical Mechanics +cond-mat/0311438 Statistical Mechanics +cond-mat/0311439 Mesoscale and Nanoscale Physics +cond-mat/0311441 Strongly Correlated Electrons +cond-mat/0311442 Statistical Mechanics +cond-mat/0311443 Strongly Correlated Electrons +cond-mat/0311445 Mesoscale and Nanoscale Physics +cond-mat/0311447 Materials Science +cond-mat/0311448 Statistical Mechanics +cond-mat/0311449 Superconductivity +cond-mat/0311450 Soft Condensed Matter +cond-mat/0311451 Strongly Correlated Electrons +cond-mat/0311452 Strongly Correlated Electrons +cond-mat/0311454 Mesoscale and Nanoscale Physics +cond-mat/0311459 Statistical Mechanics +cond-mat/0311461 Materials Science +cond-mat/0311462 Soft Condensed Matter +cond-mat/0311464 Soft Condensed Matter +cond-mat/0311467 Strongly Correlated Electrons +cond-mat/0311469 Materials Science +cond-mat/0311470 Strongly Correlated Electrons +cond-mat/0311471 Superconductivity +cond-mat/0311472 Statistical Mechanics +cond-mat/0311475 Soft Condensed Matter +cond-mat/0311476 Materials Science +cond-mat/0311478 Statistical Mechanics +cond-mat/0311481 Statistical Mechanics +cond-mat/0311482 Statistical Mechanics +cond-mat/0311483 Statistical Mechanics +cond-mat/0311484 Mesoscale and Nanoscale Physics +cond-mat/0311485 +cond-mat/0311486 Statistical Mechanics +cond-mat/0311488 Mesoscale and Nanoscale Physics +cond-mat/0311489 Soft Condensed Matter +cond-mat/0311491 Disordered Systems and Neural Networks +cond-mat/0311493 Materials Science +cond-mat/0311494 Mesoscale and Nanoscale Physics +cond-mat/0311497 Mesoscale and Nanoscale Physics +cond-mat/0311501 Disordered Systems and Neural Networks +cond-mat/0311503 Mesoscale and Nanoscale Physics +cond-mat/0311504 Materials Science +cond-mat/0311508 Soft Condensed Matter +cond-mat/0311509 Statistical Mechanics +cond-mat/0311512 Mesoscale and Nanoscale Physics +cond-mat/0311513 Mesoscale and Nanoscale Physics +cond-mat/0311514 Soft Condensed Matter +cond-mat/0311515 Superconductivity +cond-mat/0311516 Disordered Systems and Neural Networks +cond-mat/0311519 Strongly Correlated Electrons +cond-mat/0311520 Strongly Correlated Electrons +cond-mat/0311522 Materials Science +cond-mat/0311523 Superconductivity +cond-mat/0311525 Strongly Correlated Electrons +cond-mat/0311527 Statistical Mechanics +cond-mat/0311528 Mesoscale and Nanoscale Physics +cond-mat/0311529 Materials Science +cond-mat/0311530 Soft Condensed Matter +cond-mat/0311531 Strongly Correlated Electrons +cond-mat/0311532 Statistical Mechanics +cond-mat/0311535 Statistical Mechanics +cond-mat/0311536 Statistical Mechanics +cond-mat/0311538 Strongly Correlated Electrons +cond-mat/0311541 Materials Science +cond-mat/0311547 Strongly Correlated Electrons +cond-mat/0311549 Disordered Systems and Neural Networks +cond-mat/0311551 Soft Condensed Matter +cond-mat/0311553 Strongly Correlated Electrons +cond-mat/0311554 +cond-mat/0311555 Superconductivity +cond-mat/0311556 Superconductivity +cond-mat/0311557 Strongly Correlated Electrons +cond-mat/0311558 Soft Condensed Matter +cond-mat/0311559 Strongly Correlated Electrons +cond-mat/0311562 Superconductivity +cond-mat/0311568 Statistical Mechanics +cond-mat/0311569 +cond-mat/0311570 Superconductivity +cond-mat/0311571 Statistical Mechanics +cond-mat/0311574 Soft Condensed Matter +cond-mat/0311579 Superconductivity +cond-mat/0311583 Statistical Mechanics +cond-mat/0311586 Statistical Mechanics +cond-mat/0311587 Superconductivity +cond-mat/0311591 Materials Science +cond-mat/0311592 Materials Science +cond-mat/0311593 Mesoscale and Nanoscale Physics +cond-mat/0311594 Statistical Mechanics +cond-mat/0311595 Strongly Correlated Electrons +cond-mat/0311597 Materials Science +cond-mat/0311600 Superconductivity +cond-mat/0311601 Statistical Mechanics +cond-mat/0311602 Soft Condensed Matter +cond-mat/0311606 Statistical Mechanics +cond-mat/0311608 +cond-mat/0311609 Mesoscale and Nanoscale Physics +cond-mat/0311611 Soft Condensed Matter +cond-mat/0311613 Materials Science +cond-mat/0311614 Materials Science +cond-mat/0311618 Materials Science +cond-mat/0311619 Strongly Correlated Electrons +cond-mat/0311620 Soft Condensed Matter +cond-mat/0311622 +cond-mat/0311624 Statistical Mechanics +cond-mat/0311626 Strongly Correlated Electrons +cond-mat/0311627 Disordered Systems and Neural Networks +cond-mat/0311631 Soft Condensed Matter +cond-mat/0311632 Mesoscale and Nanoscale Physics +cond-mat/0311634 Materials Science +cond-mat/0311635 Soft Condensed Matter +cond-mat/0311637 Mesoscale and Nanoscale Physics +cond-mat/0311638 Mesoscale and Nanoscale Physics +cond-mat/0311639 Strongly Correlated Electrons +cond-mat/0311641 Soft Condensed Matter +cond-mat/0311644 Mesoscale and Nanoscale Physics +cond-mat/0311645 Mesoscale and Nanoscale Physics +cond-mat/0311646 Statistical Mechanics +cond-mat/0311650 Disordered Systems and Neural Networks +cond-mat/0311653 Statistical Mechanics +cond-mat/0311654 Statistical Mechanics +cond-mat/0312002 Disordered Systems and Neural Networks +cond-mat/0312007 Materials Science +cond-mat/0312012 Strongly Correlated Electrons +cond-mat/0312016 Soft Condensed Matter +cond-mat/0312017 Statistical Mechanics +cond-mat/0312018 Strongly Correlated Electrons +cond-mat/0312020 +cond-mat/0312021 Statistical Mechanics +cond-mat/0312024 Soft Condensed Matter +cond-mat/0312026 Disordered Systems and Neural Networks +cond-mat/0312027 Statistical Mechanics +cond-mat/0312031 Statistical Mechanics +cond-mat/0312032 Superconductivity +cond-mat/0312033 Disordered Systems and Neural Networks +cond-mat/0312035 Statistical Mechanics +cond-mat/0312038 Soft Condensed Matter +cond-mat/0312040 Statistical Mechanics +cond-mat/0312042 Strongly Correlated Electrons +cond-mat/0312043 Superconductivity +cond-mat/0312044 Soft Condensed Matter +cond-mat/0312045 +cond-mat/0312048 Mesoscale and Nanoscale Physics +cond-mat/0312049 Disordered Systems and Neural Networks +cond-mat/0312051 Disordered Systems and Neural Networks +cond-mat/0312052 Strongly Correlated Electrons +cond-mat/0312055 Strongly Correlated Electrons +cond-mat/0312056 +cond-mat/0312059 Strongly Correlated Electrons +cond-mat/0312060 Mesoscale and Nanoscale Physics +cond-mat/0312061 Strongly Correlated Electrons +cond-mat/0312062 Superconductivity +cond-mat/0312064 Disordered Systems and Neural Networks +cond-mat/0312065 Soft Condensed Matter +cond-mat/0312067 Statistical Mechanics +cond-mat/0312068 Disordered Systems and Neural Networks +cond-mat/0312073 +cond-mat/0312075 Materials Science +cond-mat/0312080 Mesoscale and Nanoscale Physics +cond-mat/0312081 Soft Condensed Matter +cond-mat/0312088 +cond-mat/0312089 Superconductivity +cond-mat/0312091 Superconductivity +cond-mat/0312092 Materials Science +cond-mat/0312093 Strongly Correlated Electrons +cond-mat/0312094 Superconductivity +cond-mat/0312095 Superconductivity +cond-mat/0312098 Soft Condensed Matter +cond-mat/0312101 Mesoscale and Nanoscale Physics +cond-mat/0312106 Strongly Correlated Electrons +cond-mat/0312108 Strongly Correlated Electrons +cond-mat/0312109 Statistical Mechanics +cond-mat/0312110 Materials Science +cond-mat/0312111 Strongly Correlated Electrons +cond-mat/0312112 Strongly Correlated Electrons +cond-mat/0312113 Statistical Mechanics +cond-mat/0312115 Statistical Mechanics +cond-mat/0312116 Statistical Mechanics +cond-mat/0312117 Mesoscale and Nanoscale Physics +cond-mat/0312120 Statistical Mechanics +cond-mat/0312121 Statistical Mechanics +cond-mat/0312124 Statistical Mechanics +cond-mat/0312126 Mesoscale and Nanoscale Physics +cond-mat/0312127 Statistical Mechanics +cond-mat/0312128 +cond-mat/0312131 Statistical Mechanics +cond-mat/0312133 Mesoscale and Nanoscale Physics +cond-mat/0312134 Statistical Mechanics +cond-mat/0312136 Statistical Mechanics +cond-mat/0312137 Soft Condensed Matter +cond-mat/0312138 Materials Science +cond-mat/0312140 +cond-mat/0312142 Strongly Correlated Electrons +cond-mat/0312143 Statistical Mechanics +cond-mat/0312146 Materials Science +cond-mat/0312152 Mesoscale and Nanoscale Physics +cond-mat/0312155 Strongly Correlated Electrons +cond-mat/0312161 Soft Condensed Matter +cond-mat/0312165 Superconductivity +cond-mat/0312166 +cond-mat/0312167 Statistical Mechanics +cond-mat/0312168 Materials Science +cond-mat/0312169 Mesoscale and Nanoscale Physics +cond-mat/0312170 Statistical Mechanics +cond-mat/0312171 Statistical Mechanics +cond-mat/0312172 Strongly Correlated Electrons +cond-mat/0312174 Superconductivity +cond-mat/0312179 Disordered Systems and Neural Networks +cond-mat/0312181 Statistical Mechanics +cond-mat/0312182 Superconductivity +cond-mat/0312186 Mesoscale and Nanoscale Physics +cond-mat/0312187 Mesoscale and Nanoscale Physics +cond-mat/0312188 Statistical Mechanics +cond-mat/0312190 Superconductivity +cond-mat/0312192 Soft Condensed Matter +cond-mat/0312194 Soft Condensed Matter +cond-mat/0312197 Strongly Correlated Electrons +cond-mat/0312198 Soft Condensed Matter +cond-mat/0312199 Superconductivity +cond-mat/0312200 Superconductivity +cond-mat/0312201 Materials Science +cond-mat/0312202 Statistical Mechanics +cond-mat/0312209 Superconductivity +cond-mat/0312212 Strongly Correlated Electrons +cond-mat/0312213 Superconductivity +cond-mat/0312214 Other Condensed Matter +cond-mat/0312215 Materials Science +cond-mat/0312220 Statistical Mechanics +cond-mat/0312223 Soft Condensed Matter +cond-mat/0312225 Mesoscale and Nanoscale Physics +cond-mat/0312226 +cond-mat/0312229 Superconductivity +cond-mat/0312231 Statistical Mechanics +cond-mat/0312232 Soft Condensed Matter +cond-mat/0312233 Materials Science +cond-mat/0312235 Superconductivity +cond-mat/0312236 Statistical Mechanics +cond-mat/0312237 Superconductivity +cond-mat/0312242 Superconductivity +cond-mat/0312246 Strongly Correlated Electrons +cond-mat/0312247 Mesoscale and Nanoscale Physics +cond-mat/0312248 Mesoscale and Nanoscale Physics +cond-mat/0312249 Strongly Correlated Electrons +cond-mat/0312250 Statistical Mechanics +cond-mat/0312251 Superconductivity +cond-mat/0312254 Statistical Mechanics +cond-mat/0312255 Soft Condensed Matter +cond-mat/0312257 Strongly Correlated Electrons +cond-mat/0312259 Materials Science +cond-mat/0312260 Statistical Mechanics +cond-mat/0312261 Materials Science +cond-mat/0312262 Statistical Mechanics +cond-mat/0312263 Strongly Correlated Electrons +cond-mat/0312268 Superconductivity +cond-mat/0312269 Superconductivity +cond-mat/0312270 Superconductivity +cond-mat/0312271 Mesoscale and Nanoscale Physics +cond-mat/0312272 Mesoscale and Nanoscale Physics +cond-mat/0312275 Materials Science +cond-mat/0312278 Mesoscale and Nanoscale Physics +cond-mat/0312279 Disordered Systems and Neural Networks +cond-mat/0312280 Superconductivity +cond-mat/0312281 +cond-mat/0312282 Disordered Systems and Neural Networks +cond-mat/0312283 Strongly Correlated Electrons +cond-mat/0312284 Strongly Correlated Electrons +cond-mat/0312285 Mesoscale and Nanoscale Physics +cond-mat/0312287 Materials Science +cond-mat/0312289 Materials Science +cond-mat/0312290 Mesoscale and Nanoscale Physics +cond-mat/0312292 Mesoscale and Nanoscale Physics +cond-mat/0312293 Materials Science +cond-mat/0312295 Superconductivity +cond-mat/0312303 Strongly Correlated Electrons +cond-mat/0312304 Mesoscale and Nanoscale Physics +cond-mat/0312307 Materials Science +cond-mat/0312308 Strongly Correlated Electrons +cond-mat/0312309 Strongly Correlated Electrons +cond-mat/0312311 Disordered Systems and Neural Networks +cond-mat/0312313 Soft Condensed Matter +cond-mat/0312314 Superconductivity +cond-mat/0312318 Strongly Correlated Electrons +cond-mat/0312320 Soft Condensed Matter +cond-mat/0312321 Statistical Mechanics +cond-mat/0312325 Mesoscale and Nanoscale Physics +cond-mat/0312327 Disordered Systems and Neural Networks +cond-mat/0312331 Soft Condensed Matter +cond-mat/0312332 Mesoscale and Nanoscale Physics +cond-mat/0312333 Disordered Systems and Neural Networks +cond-mat/0312335 +cond-mat/0312338 Disordered Systems and Neural Networks +cond-mat/0312341 Superconductivity +cond-mat/0312342 Statistical Mechanics +cond-mat/0312347 Mesoscale and Nanoscale Physics +cond-mat/0312348 Superconductivity +cond-mat/0312349 Strongly Correlated Electrons +cond-mat/0312351 Mesoscale and Nanoscale Physics +cond-mat/0312352 Materials Science +cond-mat/0312356 Soft Condensed Matter +cond-mat/0312357 Statistical Mechanics +cond-mat/0312359 Statistical Mechanics +cond-mat/0312360 Statistical Mechanics +cond-mat/0312361 Statistical Mechanics +cond-mat/0312362 Statistical Mechanics +cond-mat/0312369 Strongly Correlated Electrons +cond-mat/0312370 Strongly Correlated Electrons +cond-mat/0312371 Statistical Mechanics +cond-mat/0312375 Statistical Mechanics +cond-mat/0312376 Strongly Correlated Electrons +cond-mat/0312377 Strongly Correlated Electrons +cond-mat/0312378 Superconductivity +cond-mat/0312379 Strongly Correlated Electrons +cond-mat/0312380 Disordered Systems and Neural Networks +cond-mat/0312381 Statistical Mechanics +cond-mat/0312382 Statistical Mechanics +cond-mat/0312383 Materials Science +cond-mat/0312386 Statistical Mechanics +cond-mat/0312387 Strongly Correlated Electrons +cond-mat/0312390 Strongly Correlated Electrons +cond-mat/0312392 Strongly Correlated Electrons +cond-mat/0312393 Superconductivity +cond-mat/0312394 Strongly Correlated Electrons +cond-mat/0312396 Other Condensed Matter +cond-mat/0312397 Superconductivity +cond-mat/0312398 Other Condensed Matter +cond-mat/0312399 Statistical Mechanics +cond-mat/0312400 Soft Condensed Matter +cond-mat/0312401 Superconductivity +cond-mat/0312403 Materials Science +cond-mat/0312405 Superconductivity +cond-mat/0312407 Statistical Mechanics +cond-mat/0312408 Statistical Mechanics +cond-mat/0312409 Strongly Correlated Electrons +cond-mat/0312410 Statistical Mechanics +cond-mat/0312412 Soft Condensed Matter +cond-mat/0312414 Materials Science +cond-mat/0312416 Soft Condensed Matter +cond-mat/0312418 Statistical Mechanics +cond-mat/0312419 Statistical Mechanics +cond-mat/0312420 Superconductivity +cond-mat/0312421 Superconductivity +cond-mat/0312423 Soft Condensed Matter +cond-mat/0312425 Statistical Mechanics +cond-mat/0312428 Superconductivity +cond-mat/0312429 Strongly Correlated Electrons +cond-mat/0312430 Mesoscale and Nanoscale Physics +cond-mat/0312431 Mesoscale and Nanoscale Physics +cond-mat/0312434 +cond-mat/0312436 +cond-mat/0312437 Strongly Correlated Electrons +cond-mat/0312438 Soft Condensed Matter +cond-mat/0312440 Soft Condensed Matter +cond-mat/0312441 Superconductivity +cond-mat/0312444 +cond-mat/0312445 Mesoscale and Nanoscale Physics +cond-mat/0312449 Mesoscale and Nanoscale Physics +cond-mat/0312450 Strongly Correlated Electrons +cond-mat/0312452 Superconductivity +cond-mat/0312455 Statistical Mechanics +cond-mat/0312456 Soft Condensed Matter +cond-mat/0312457 Statistical Mechanics +cond-mat/0312458 Superconductivity +cond-mat/0312459 Statistical Mechanics +cond-mat/0312462 Statistical Mechanics +cond-mat/0312464 +cond-mat/0312465 +cond-mat/0312467 Materials Science +cond-mat/0312468 Materials Science +cond-mat/0312469 Soft Condensed Matter +cond-mat/0312470 Superconductivity +cond-mat/0312472 Statistical Mechanics +cond-mat/0312473 +cond-mat/0312476 Statistical Mechanics +cond-mat/0312477 Mesoscale and Nanoscale Physics +cond-mat/0312478 Mesoscale and Nanoscale Physics +cond-mat/0312479 Strongly Correlated Electrons +cond-mat/0312480 Statistical Mechanics +cond-mat/0312482 Strongly Correlated Electrons +cond-mat/0312483 Disordered Systems and Neural Networks +cond-mat/0312484 Strongly Correlated Electrons +cond-mat/0312485 Materials Science +cond-mat/0312489 Statistical Mechanics +cond-mat/0312491 Mesoscale and Nanoscale Physics +cond-mat/0312494 Statistical Mechanics +cond-mat/0312495 Mesoscale and Nanoscale Physics +cond-mat/0312496 Statistical Mechanics +cond-mat/0312497 Superconductivity +cond-mat/0312499 Strongly Correlated Electrons +cond-mat/0312500 Statistical Mechanics +cond-mat/0312501 Statistical Mechanics +cond-mat/0312502 Soft Condensed Matter +cond-mat/0312504 Materials Science +cond-mat/0312505 Materials Science +cond-mat/0312510 +cond-mat/0312512 Superconductivity +cond-mat/0312513 +cond-mat/0312514 Strongly Correlated Electrons +cond-mat/0312515 Statistical Mechanics +cond-mat/0312519 Strongly Correlated Electrons +cond-mat/0312520 +cond-mat/0312521 Statistical Mechanics +cond-mat/0312523 Strongly Correlated Electrons +cond-mat/0312524 Statistical Mechanics +cond-mat/0312528 Materials Science +cond-mat/0312529 Superconductivity +cond-mat/0312530 Statistical Mechanics +cond-mat/0312531 Statistical Mechanics +cond-mat/0312533 Statistical Mechanics +cond-mat/0312534 Statistical Mechanics +cond-mat/0312535 Disordered Systems and Neural Networks +cond-mat/0312536 Materials Science +cond-mat/0312538 Soft Condensed Matter +cond-mat/0312539 Statistical Mechanics +cond-mat/0312542 Superconductivity +cond-mat/0312543 Materials Science +cond-mat/0312544 +cond-mat/0312545 Superconductivity +cond-mat/0312546 Mesoscale and Nanoscale Physics +cond-mat/0312547 Statistical Mechanics +cond-mat/0312549 Mesoscale and Nanoscale Physics +cond-mat/0312554 Superconductivity +cond-mat/0312556 Statistical Mechanics +cond-mat/0312557 Materials Science +cond-mat/0312558 Strongly Correlated Electrons +cond-mat/0312561 Strongly Correlated Electrons +cond-mat/0312562 Soft Condensed Matter +cond-mat/0312564 Statistical Mechanics +cond-mat/0312569 Superconductivity +cond-mat/0312570 Superconductivity +cond-mat/0312571 Mesoscale and Nanoscale Physics +cond-mat/0312572 Strongly Correlated Electrons +cond-mat/0312574 Strongly Correlated Electrons +cond-mat/0312575 Superconductivity +cond-mat/0312580 Statistical Mechanics +cond-mat/0312582 Materials Science +cond-mat/0312583 Statistical Mechanics +cond-mat/0312584 Strongly Correlated Electrons +cond-mat/0312587 Strongly Correlated Electrons +cond-mat/0312588 Strongly Correlated Electrons +cond-mat/0312589 Strongly Correlated Electrons +cond-mat/0312591 Soft Condensed Matter +cond-mat/0312592 Superconductivity +cond-mat/0312594 Superconductivity +cond-mat/0312599 Statistical Mechanics +cond-mat/0312600 Materials Science +cond-mat/0312603 Statistical Mechanics +cond-mat/0312605 Materials Science +cond-mat/0312606 Statistical Mechanics +cond-mat/0312608 Mesoscale and Nanoscale Physics +cond-mat/0312610 Superconductivity +cond-mat/0312614 +cond-mat/0312616 Statistical Mechanics +cond-mat/0312618 Superconductivity +cond-mat/0312619 Strongly Correlated Electrons +cond-mat/0312620 Statistical Mechanics +cond-mat/0312622 Superconductivity +cond-mat/0312623 Superconductivity +cond-mat/0312624 Strongly Correlated Electrons +cond-mat/0312625 Strongly Correlated Electrons +cond-mat/0312628 Strongly Correlated Electrons +cond-mat/0312629 Statistical Mechanics +cond-mat/0312630 Superconductivity +cond-mat/0312634 Materials Science +cond-mat/0312636 Mesoscale and Nanoscale Physics +cond-mat/0312638 Mesoscale and Nanoscale Physics +cond-mat/0312642 Statistical Mechanics +cond-mat/0312643 Statistical Mechanics +cond-mat/0312645 Statistical Mechanics +cond-mat/0312648 Superconductivity +cond-mat/0312649 Superconductivity +cond-mat/0312652 Superconductivity +cond-mat/0312654 Strongly Correlated Electrons +cond-mat/0312659 Mesoscale and Nanoscale Physics +cond-mat/0312660 Superconductivity +cond-mat/0312661 +cond-mat/0312662 Materials Science +cond-mat/0312664 Superconductivity +cond-mat/0312668 Mesoscale and Nanoscale Physics +cond-mat/0312669 Materials Science +cond-mat/0312672 Superconductivity +cond-mat/0312675 Disordered Systems and Neural Networks +cond-mat/0312680 Statistical Mechanics +cond-mat/0312682 Statistical Mechanics +cond-mat/0312689 +cond-mat/0312690 Strongly Correlated Electrons +cond-mat/0312699 Statistical Mechanics +cond-mat/0312700 Statistical Mechanics +cond-mat/0312702 Soft Condensed Matter +cond-mat/0312704 Materials Science +cond-mat/0312705 Mesoscale and Nanoscale Physics +cond-mat/0312706 Strongly Correlated Electrons +cond-mat/0312714 Materials Science +cond-mat/0312716 Strongly Correlated Electrons +cond-mat/0312717 Mesoscale and Nanoscale Physics +cond-mat/0312719 Materials Science +cond-mat/0312720 +cond-mat/0312721 Materials Science +cond-mat/0312722 Materials Science +cond-mat/0401003 Soft Condensed Matter +cond-mat/0401004 Strongly Correlated Electrons +cond-mat/0401006 +cond-mat/0401007 Mesoscale and Nanoscale Physics +cond-mat/0401009 Other Condensed Matter +cond-mat/0401011 Materials Science +cond-mat/0401013 Mesoscale and Nanoscale Physics +cond-mat/0401016 Superconductivity +cond-mat/0401021 Soft Condensed Matter +cond-mat/0401023 Disordered Systems and Neural Networks +cond-mat/0401033 Superconductivity +cond-mat/0401034 Superconductivity +cond-mat/0401035 Disordered Systems and Neural Networks +cond-mat/0401037 Other Condensed Matter +cond-mat/0401038 Disordered Systems and Neural Networks +cond-mat/0401041 Strongly Correlated Electrons +cond-mat/0401042 Mesoscale and Nanoscale Physics +cond-mat/0401044 Mesoscale and Nanoscale Physics +cond-mat/0401045 Statistical Mechanics +cond-mat/0401047 Statistical Mechanics +cond-mat/0401051 Materials Science +cond-mat/0401055 Statistical Mechanics +cond-mat/0401056 Materials Science +cond-mat/0401057 Disordered Systems and Neural Networks +cond-mat/0401058 Mesoscale and Nanoscale Physics +cond-mat/0401062 Statistical Mechanics +cond-mat/0401063 Superconductivity +cond-mat/0401064 Superconductivity +cond-mat/0401066 Disordered Systems and Neural Networks +cond-mat/0401067 Mesoscale and Nanoscale Physics +cond-mat/0401069 Statistical Mechanics +cond-mat/0401070 Soft Condensed Matter +cond-mat/0401076 +cond-mat/0401077 Superconductivity +cond-mat/0401080 Statistical Mechanics +cond-mat/0401082 Materials Science +cond-mat/0401084 Disordered Systems and Neural Networks +cond-mat/0401085 Mesoscale and Nanoscale Physics +cond-mat/0401086 Superconductivity +cond-mat/0401092 Statistical Mechanics +cond-mat/0401093 Statistical Mechanics +cond-mat/0401094 Statistical Mechanics +cond-mat/0401095 Materials Science +cond-mat/0401096 Strongly Correlated Electrons +cond-mat/0401097 Statistical Mechanics +cond-mat/0401098 Mesoscale and Nanoscale Physics +cond-mat/0401099 Strongly Correlated Electrons +cond-mat/0401100 Strongly Correlated Electrons +cond-mat/0401104 Strongly Correlated Electrons +cond-mat/0401105 Soft Condensed Matter +cond-mat/0401106 Mesoscale and Nanoscale Physics +cond-mat/0401107 Mesoscale and Nanoscale Physics +cond-mat/0401110 Statistical Mechanics +cond-mat/0401112 Soft Condensed Matter +cond-mat/0401114 Strongly Correlated Electrons +cond-mat/0401116 Mesoscale and Nanoscale Physics +cond-mat/0401117 +cond-mat/0401118 Soft Condensed Matter +cond-mat/0401119 Superconductivity +cond-mat/0401121 Statistical Mechanics +cond-mat/0401122 Strongly Correlated Electrons +cond-mat/0401123 Statistical Mechanics +cond-mat/0401125 Strongly Correlated Electrons +cond-mat/0401126 Statistical Mechanics +cond-mat/0401129 Statistical Mechanics +cond-mat/0401131 Soft Condensed Matter +cond-mat/0401134 Strongly Correlated Electrons +cond-mat/0401135 Statistical Mechanics +cond-mat/0401136 Strongly Correlated Electrons +cond-mat/0401138 Mesoscale and Nanoscale Physics +cond-mat/0401139 Disordered Systems and Neural Networks +cond-mat/0401141 +cond-mat/0401142 Materials Science +cond-mat/0401143 Soft Condensed Matter +cond-mat/0401144 Statistical Mechanics +cond-mat/0401145 Mesoscale and Nanoscale Physics +cond-mat/0401149 Strongly Correlated Electrons +cond-mat/0401151 Mesoscale and Nanoscale Physics +cond-mat/0401152 Disordered Systems and Neural Networks +cond-mat/0401155 Disordered Systems and Neural Networks +cond-mat/0401156 Other Condensed Matter +cond-mat/0401158 Strongly Correlated Electrons +cond-mat/0401159 Superconductivity +cond-mat/0401160 Strongly Correlated Electrons +cond-mat/0401163 Superconductivity +cond-mat/0401165 +cond-mat/0401166 Soft Condensed Matter +cond-mat/0401167 Strongly Correlated Electrons +cond-mat/0401168 Materials Science +cond-mat/0401169 Mesoscale and Nanoscale Physics +cond-mat/0401170 Statistical Mechanics +cond-mat/0401171 +cond-mat/0401173 Mesoscale and Nanoscale Physics +cond-mat/0401175 Soft Condensed Matter +cond-mat/0401176 +cond-mat/0401179 Statistical Mechanics +cond-mat/0401181 Statistical Mechanics +cond-mat/0401184 Superconductivity +cond-mat/0401190 Statistical Mechanics +cond-mat/0401192 +cond-mat/0401193 Statistical Mechanics +cond-mat/0401194 Soft Condensed Matter +cond-mat/0401196 Disordered Systems and Neural Networks +cond-mat/0401197 Materials Science +cond-mat/0401199 Strongly Correlated Electrons +cond-mat/0401205 Disordered Systems and Neural Networks +cond-mat/0401207 Strongly Correlated Electrons +cond-mat/0401209 Statistical Mechanics +cond-mat/0401210 Statistical Mechanics +cond-mat/0401211 Disordered Systems and Neural Networks +cond-mat/0401215 Strongly Correlated Electrons +cond-mat/0401216 Statistical Mechanics +cond-mat/0401217 Other Condensed Matter +cond-mat/0401218 Statistical Mechanics +cond-mat/0401220 Strongly Correlated Electrons +cond-mat/0401221 Materials Science +cond-mat/0401222 Soft Condensed Matter +cond-mat/0401223 Strongly Correlated Electrons +cond-mat/0401228 Soft Condensed Matter +cond-mat/0401229 Statistical Mechanics +cond-mat/0401231 Mesoscale and Nanoscale Physics +cond-mat/0401232 +cond-mat/0401233 Strongly Correlated Electrons +cond-mat/0401236 Strongly Correlated Electrons +cond-mat/0401240 Strongly Correlated Electrons +cond-mat/0401241 Superconductivity +cond-mat/0401243 Materials Science +cond-mat/0401244 Disordered Systems and Neural Networks +cond-mat/0401245 Statistical Mechanics +cond-mat/0401246 Strongly Correlated Electrons +cond-mat/0401252 Statistical Mechanics +cond-mat/0401256 Strongly Correlated Electrons +cond-mat/0401259 Statistical Mechanics +cond-mat/0401260 Statistical Mechanics +cond-mat/0401261 Strongly Correlated Electrons +cond-mat/0401262 Statistical Mechanics +cond-mat/0401263 Statistical Mechanics +cond-mat/0401266 Statistical Mechanics +cond-mat/0401267 +cond-mat/0401269 Statistical Mechanics +cond-mat/0401270 Disordered Systems and Neural Networks +cond-mat/0401271 Superconductivity +cond-mat/0401272 Superconductivity +cond-mat/0401274 Mesoscale and Nanoscale Physics +cond-mat/0401276 Statistical Mechanics +cond-mat/0401278 Statistical Mechanics +cond-mat/0401280 +cond-mat/0401281 Superconductivity +cond-mat/0401282 Disordered Systems and Neural Networks +cond-mat/0401284 Soft Condensed Matter +cond-mat/0401285 Soft Condensed Matter +cond-mat/0401287 Disordered Systems and Neural Networks +cond-mat/0401288 Strongly Correlated Electrons +cond-mat/0401289 Mesoscale and Nanoscale Physics +cond-mat/0401290 Statistical Mechanics +cond-mat/0401292 +cond-mat/0401293 +cond-mat/0401295 Statistical Mechanics +cond-mat/0401297 Strongly Correlated Electrons +cond-mat/0401300 Statistical Mechanics +cond-mat/0401301 Strongly Correlated Electrons +cond-mat/0401302 Statistical Mechanics +cond-mat/0401304 +cond-mat/0401310 Disordered Systems and Neural Networks +cond-mat/0401315 Mesoscale and Nanoscale Physics +cond-mat/0401316 Statistical Mechanics +cond-mat/0401317 Mesoscale and Nanoscale Physics +cond-mat/0401318 Materials Science +cond-mat/0401320 Statistical Mechanics +cond-mat/0401324 Soft Condensed Matter +cond-mat/0401325 Mesoscale and Nanoscale Physics +cond-mat/0401326 Statistical Mechanics +cond-mat/0401327 Statistical Mechanics +cond-mat/0401328 Superconductivity +cond-mat/0401330 Mesoscale and Nanoscale Physics +cond-mat/0401333 Materials Science +cond-mat/0401335 Strongly Correlated Electrons +cond-mat/0401336 Disordered Systems and Neural Networks +cond-mat/0401337 Materials Science +cond-mat/0401338 Mesoscale and Nanoscale Physics +cond-mat/0401339 Superconductivity +cond-mat/0401342 Statistical Mechanics +cond-mat/0401343 Mesoscale and Nanoscale Physics +cond-mat/0401344 Mesoscale and Nanoscale Physics +cond-mat/0401346 Soft Condensed Matter +cond-mat/0401349 Mesoscale and Nanoscale Physics +cond-mat/0401350 Superconductivity +cond-mat/0401352 Statistical Mechanics +cond-mat/0401354 Superconductivity +cond-mat/0401355 Mesoscale and Nanoscale Physics +cond-mat/0401357 Mesoscale and Nanoscale Physics +cond-mat/0401359 Soft Condensed Matter +cond-mat/0401360 Statistical Mechanics +cond-mat/0401361 Mesoscale and Nanoscale Physics +cond-mat/0401363 Statistical Mechanics +cond-mat/0401364 Superconductivity +cond-mat/0401365 Materials Science +cond-mat/0401366 Materials Science +cond-mat/0401367 Materials Science +cond-mat/0401371 Strongly Correlated Electrons +cond-mat/0401372 Statistical Mechanics +cond-mat/0401375 Strongly Correlated Electrons +cond-mat/0401377 Statistical Mechanics +cond-mat/0401380 Soft Condensed Matter +cond-mat/0401381 Superconductivity +cond-mat/0401382 Statistical Mechanics +cond-mat/0401387 Mesoscale and Nanoscale Physics +cond-mat/0401390 Materials Science +cond-mat/0401391 Mesoscale and Nanoscale Physics +cond-mat/0401392 Soft Condensed Matter +cond-mat/0401393 Statistical Mechanics +cond-mat/0401395 Statistical Mechanics +cond-mat/0401397 Mesoscale and Nanoscale Physics +cond-mat/0401398 Mesoscale and Nanoscale Physics +cond-mat/0401400 Strongly Correlated Electrons +cond-mat/0401401 Soft Condensed Matter +cond-mat/0401402 Soft Condensed Matter +cond-mat/0401406 Soft Condensed Matter +cond-mat/0401407 Materials Science +cond-mat/0401410 Superconductivity +cond-mat/0401412 Superconductivity +cond-mat/0401413 Strongly Correlated Electrons +cond-mat/0401414 Statistical Mechanics +cond-mat/0401415 Strongly Correlated Electrons +cond-mat/0401416 Superconductivity +cond-mat/0401418 Mesoscale and Nanoscale Physics +cond-mat/0401421 Soft Condensed Matter +cond-mat/0401423 Other Condensed Matter +cond-mat/0401426 Materials Science +cond-mat/0401427 Disordered Systems and Neural Networks +cond-mat/0401428 Strongly Correlated Electrons +cond-mat/0401430 Materials Science +cond-mat/0401435 Statistical Mechanics +cond-mat/0401436 Strongly Correlated Electrons +cond-mat/0401437 Materials Science +cond-mat/0401440 Soft Condensed Matter +cond-mat/0401441 Strongly Correlated Electrons +cond-mat/0401443 Statistical Mechanics +cond-mat/0401444 Soft Condensed Matter +cond-mat/0401445 Statistical Mechanics +cond-mat/0401446 Mesoscale and Nanoscale Physics +cond-mat/0401449 Statistical Mechanics +cond-mat/0401450 Disordered Systems and Neural Networks +cond-mat/0401451 Statistical Mechanics +cond-mat/0401452 Superconductivity +cond-mat/0401453 Materials Science +cond-mat/0401454 Superconductivity +cond-mat/0401455 Mesoscale and Nanoscale Physics +cond-mat/0401456 Mesoscale and Nanoscale Physics +cond-mat/0401458 Other Condensed Matter +cond-mat/0401459 Statistical Mechanics +cond-mat/0401462 Mesoscale and Nanoscale Physics +cond-mat/0401463 Strongly Correlated Electrons +cond-mat/0401464 Disordered Systems and Neural Networks +cond-mat/0401466 Mesoscale and Nanoscale Physics +cond-mat/0401467 Materials Science +cond-mat/0401468 Mesoscale and Nanoscale Physics +cond-mat/0401472 Strongly Correlated Electrons +cond-mat/0401474 Superconductivity +cond-mat/0401476 Statistical Mechanics +cond-mat/0401477 Statistical Mechanics +cond-mat/0401478 Statistical Mechanics +cond-mat/0401480 Superconductivity +cond-mat/0401482 Statistical Mechanics +cond-mat/0401483 Statistical Mechanics +cond-mat/0401484 Mesoscale and Nanoscale Physics +cond-mat/0401486 Mesoscale and Nanoscale Physics +cond-mat/0401487 Statistical Mechanics +cond-mat/0401490 Strongly Correlated Electrons +cond-mat/0401491 Statistical Mechanics +cond-mat/0401493 Statistical Mechanics +cond-mat/0401496 Materials Science +cond-mat/0401498 Materials Science +cond-mat/0401499 Statistical Mechanics +cond-mat/0401501 Strongly Correlated Electrons +cond-mat/0401502 Other Condensed Matter +cond-mat/0401510 Strongly Correlated Electrons +cond-mat/0401511 Other Condensed Matter +cond-mat/0401512 Mesoscale and Nanoscale Physics +cond-mat/0401513 Superconductivity +cond-mat/0401514 Superconductivity +cond-mat/0401516 Soft Condensed Matter +cond-mat/0401519 Superconductivity +cond-mat/0401520 Strongly Correlated Electrons +cond-mat/0401522 Other Condensed Matter +cond-mat/0401524 Materials Science +cond-mat/0401525 Materials Science +cond-mat/0401528 Soft Condensed Matter +cond-mat/0401530 Superconductivity +cond-mat/0401532 Statistical Mechanics +cond-mat/0401534 Superconductivity +cond-mat/0401535 Strongly Correlated Electrons +cond-mat/0401538 Mesoscale and Nanoscale Physics +cond-mat/0401542 Soft Condensed Matter +cond-mat/0401543 Strongly Correlated Electrons +cond-mat/0401545 Strongly Correlated Electrons +cond-mat/0401548 Statistical Mechanics +cond-mat/0401549 Materials Science +cond-mat/0401550 Statistical Mechanics +cond-mat/0401554 Statistical Mechanics +cond-mat/0401555 Strongly Correlated Electrons +cond-mat/0401556 Disordered Systems and Neural Networks +cond-mat/0401559 Materials Science +cond-mat/0401560 Soft Condensed Matter +cond-mat/0401565 Strongly Correlated Electrons +cond-mat/0401566 Superconductivity +cond-mat/0401567 Strongly Correlated Electrons +cond-mat/0401568 Statistical Mechanics +cond-mat/0401569 Superconductivity +cond-mat/0401570 Statistical Mechanics +cond-mat/0401571 Materials Science +cond-mat/0401574 Statistical Mechanics +cond-mat/0401577 Mesoscale and Nanoscale Physics +cond-mat/0401581 Superconductivity +cond-mat/0401582 Statistical Mechanics +cond-mat/0401587 Materials Science +cond-mat/0401589 Superconductivity +cond-mat/0401590 Other Condensed Matter +cond-mat/0401592 Statistical Mechanics +cond-mat/0401593 Materials Science +cond-mat/0401596 Strongly Correlated Electrons +cond-mat/0401597 Mesoscale and Nanoscale Physics +cond-mat/0401599 Materials Science +cond-mat/0401600 Statistical Mechanics +cond-mat/0401603 Other Condensed Matter +cond-mat/0401604 Strongly Correlated Electrons +cond-mat/0401605 Mesoscale and Nanoscale Physics +cond-mat/0401606 Superconductivity +cond-mat/0401609 Strongly Correlated Electrons +cond-mat/0401610 Mesoscale and Nanoscale Physics +cond-mat/0401611 Superconductivity +cond-mat/0401614 Strongly Correlated Electrons +cond-mat/0401615 Mesoscale and Nanoscale Physics +cond-mat/0401616 Strongly Correlated Electrons +cond-mat/0401620 Strongly Correlated Electrons +cond-mat/0401621 Superconductivity +cond-mat/0401625 Strongly Correlated Electrons +cond-mat/0401627 Strongly Correlated Electrons +cond-mat/0401628 Statistical Mechanics +cond-mat/0401629 Materials Science +cond-mat/0401632 Mesoscale and Nanoscale Physics +cond-mat/0401635 Statistical Mechanics +cond-mat/0401636 Superconductivity +cond-mat/0401639 Superconductivity +cond-mat/0401642 Strongly Correlated Electrons +cond-mat/0401643 Soft Condensed Matter +cond-mat/0401647 Statistical Mechanics +cond-mat/0401649 Disordered Systems and Neural Networks +cond-mat/0401650 Mesoscale and Nanoscale Physics +cond-mat/0401651 Mesoscale and Nanoscale Physics +cond-mat/0401652 Mesoscale and Nanoscale Physics +cond-mat/0402001 Superconductivity +cond-mat/0402002 Materials Science +cond-mat/0402003 Soft Condensed Matter +cond-mat/0402005 Materials Science +cond-mat/0402006 Superconductivity +cond-mat/0402007 Soft Condensed Matter +cond-mat/0402009 Disordered Systems and Neural Networks +cond-mat/0402011 Strongly Correlated Electrons +cond-mat/0402012 Materials Science +cond-mat/0402013 Materials Science +cond-mat/0402015 Materials Science +cond-mat/0402016 Strongly Correlated Electrons +cond-mat/0402022 Soft Condensed Matter +cond-mat/0402024 Strongly Correlated Electrons +cond-mat/0402025 Superconductivity +cond-mat/0402026 Mesoscale and Nanoscale Physics +cond-mat/0402027 Statistical Mechanics +cond-mat/0402028 Statistical Mechanics +cond-mat/0402030 Statistical Mechanics +cond-mat/0402032 Materials Science +cond-mat/0402034 Materials Science +cond-mat/0402036 Disordered Systems and Neural Networks +cond-mat/0402038 Materials Science +cond-mat/0402040 Statistical Mechanics +cond-mat/0402041 Soft Condensed Matter +cond-mat/0402042 Mesoscale and Nanoscale Physics +cond-mat/0402045 Mesoscale and Nanoscale Physics +cond-mat/0402046 Disordered Systems and Neural Networks +cond-mat/0402047 Disordered Systems and Neural Networks +cond-mat/0402051 Strongly Correlated Electrons +cond-mat/0402053 Superconductivity +cond-mat/0402054 Mesoscale and Nanoscale Physics +cond-mat/0402056 Superconductivity +cond-mat/0402059 Soft Condensed Matter +cond-mat/0402061 Statistical Mechanics +cond-mat/0402062 Materials Science +cond-mat/0402063 Disordered Systems and Neural Networks +cond-mat/0402064 Superconductivity +cond-mat/0402065 Statistical Mechanics +cond-mat/0402066 Strongly Correlated Electrons +cond-mat/0402068 Disordered Systems and Neural Networks +cond-mat/0402069 Disordered Systems and Neural Networks +cond-mat/0402070 Soft Condensed Matter +cond-mat/0402071 Statistical Mechanics +cond-mat/0402072 Other Condensed Matter +cond-mat/0402073 Disordered Systems and Neural Networks +cond-mat/0402075 Statistical Mechanics +cond-mat/0402076 Strongly Correlated Electrons +cond-mat/0402077 Statistical Mechanics +cond-mat/0402081 Statistical Mechanics +cond-mat/0402083 Other Condensed Matter +cond-mat/0402085 Materials Science +cond-mat/0402086 Statistical Mechanics +cond-mat/0402087 Mesoscale and Nanoscale Physics +cond-mat/0402088 Mesoscale and Nanoscale Physics +cond-mat/0402090 Soft Condensed Matter +cond-mat/0402091 Materials Science +cond-mat/0402094 Mesoscale and Nanoscale Physics +cond-mat/0402095 Superconductivity +cond-mat/0402097 Superconductivity +cond-mat/0402098 Superconductivity +cond-mat/0402100 Materials Science +cond-mat/0402102 Strongly Correlated Electrons +cond-mat/0402103 Materials Science +cond-mat/0402105 Materials Science +cond-mat/0402106 Superconductivity +cond-mat/0402110 Mesoscale and Nanoscale Physics +cond-mat/0402113 Disordered Systems and Neural Networks +cond-mat/0402115 Superconductivity +cond-mat/0402120 Disordered Systems and Neural Networks +cond-mat/0402122 Strongly Correlated Electrons +cond-mat/0402124 Strongly Correlated Electrons +cond-mat/0402125 Statistical Mechanics +cond-mat/0402126 Disordered Systems and Neural Networks +cond-mat/0402128 Statistical Mechanics +cond-mat/0402129 Statistical Mechanics +cond-mat/0402131 Superconductivity +cond-mat/0402133 Strongly Correlated Electrons +cond-mat/0402134 Superconductivity +cond-mat/0402137 Materials Science +cond-mat/0402140 Mesoscale and Nanoscale Physics +cond-mat/0402141 Superconductivity +cond-mat/0402144 Statistical Mechanics +cond-mat/0402145 Mesoscale and Nanoscale Physics +cond-mat/0402146 Materials Science +cond-mat/0402150 Strongly Correlated Electrons +cond-mat/0402151 Mesoscale and Nanoscale Physics +cond-mat/0402154 Other Condensed Matter +cond-mat/0402155 Materials Science +cond-mat/0402156 Soft Condensed Matter +cond-mat/0402157 Soft Condensed Matter +cond-mat/0402160 Superconductivity +cond-mat/0402161 Disordered Systems and Neural Networks +cond-mat/0402166 Soft Condensed Matter +cond-mat/0402168 Mesoscale and Nanoscale Physics +cond-mat/0402169 Mesoscale and Nanoscale Physics +cond-mat/0402170 Strongly Correlated Electrons +cond-mat/0402172 Materials Science +cond-mat/0402175 Materials Science +cond-mat/0402178 Other Condensed Matter +cond-mat/0402179 Strongly Correlated Electrons +cond-mat/0402180 Mesoscale and Nanoscale Physics +cond-mat/0402183 Materials Science +cond-mat/0402184 Strongly Correlated Electrons +cond-mat/0402186 Mesoscale and Nanoscale Physics +cond-mat/0402189 Strongly Correlated Electrons +cond-mat/0402190 Mesoscale and Nanoscale Physics +cond-mat/0402191 Statistical Mechanics +cond-mat/0402192 Statistical Mechanics +cond-mat/0402194 Mesoscale and Nanoscale Physics +cond-mat/0402197 Materials Science +cond-mat/0402198 Strongly Correlated Electrons +cond-mat/0402199 Superconductivity +cond-mat/0402200 Statistical Mechanics +cond-mat/0402205 Soft Condensed Matter +cond-mat/0402206 Superconductivity +cond-mat/0402208 Soft Condensed Matter +cond-mat/0402209 Other Condensed Matter +cond-mat/0402210 Other Condensed Matter +cond-mat/0402211 Strongly Correlated Electrons +cond-mat/0402212 Statistical Mechanics +cond-mat/0402214 Disordered Systems and Neural Networks +cond-mat/0402215 Statistical Mechanics +cond-mat/0402216 Mesoscale and Nanoscale Physics +cond-mat/0402218 Materials Science +cond-mat/0402219 Mesoscale and Nanoscale Physics +cond-mat/0402220 Statistical Mechanics +cond-mat/0402221 Soft Condensed Matter +cond-mat/0402225 Soft Condensed Matter +cond-mat/0402227 Statistical Mechanics +cond-mat/0402229 Materials Science +cond-mat/0402232 Superconductivity +cond-mat/0402234 Strongly Correlated Electrons +cond-mat/0402235 Superconductivity +cond-mat/0402236 Statistical Mechanics +cond-mat/0402238 Statistical Mechanics +cond-mat/0402239 Statistical Mechanics +cond-mat/0402241 Mesoscale and Nanoscale Physics +cond-mat/0402242 Statistical Mechanics +cond-mat/0402243 Statistical Mechanics +cond-mat/0402244 Superconductivity +cond-mat/0402246 Soft Condensed Matter +cond-mat/0402247 Superconductivity +cond-mat/0402248 Statistical Mechanics +cond-mat/0402251 Superconductivity +cond-mat/0402252 Soft Condensed Matter +cond-mat/0402254 Soft Condensed Matter +cond-mat/0402255 Strongly Correlated Electrons +cond-mat/0402256 Statistical Mechanics +cond-mat/0402259 Soft Condensed Matter +cond-mat/0402260 Materials Science +cond-mat/0402261 Soft Condensed Matter +cond-mat/0402264 Disordered Systems and Neural Networks +cond-mat/0402266 Mesoscale and Nanoscale Physics +cond-mat/0402269 Disordered Systems and Neural Networks +cond-mat/0402273 Materials Science +cond-mat/0402274 Soft Condensed Matter +cond-mat/0402275 Statistical Mechanics +cond-mat/0402276 Other Condensed Matter +cond-mat/0402277 Statistical Mechanics +cond-mat/0402278 Other Condensed Matter +cond-mat/0402280 Statistical Mechanics +cond-mat/0402281 Soft Condensed Matter +cond-mat/0402282 Disordered Systems and Neural Networks +cond-mat/0402285 Statistical Mechanics +cond-mat/0402287 Statistical Mechanics +cond-mat/0402290 Soft Condensed Matter +cond-mat/0402293 Mesoscale and Nanoscale Physics +cond-mat/0402294 Statistical Mechanics +cond-mat/0402296 Materials Science +cond-mat/0402298 Strongly Correlated Electrons +cond-mat/0402300 Statistical Mechanics +cond-mat/0402301 Other Condensed Matter +cond-mat/0402302 Mesoscale and Nanoscale Physics +cond-mat/0402303 Statistical Mechanics +cond-mat/0402304 Superconductivity +cond-mat/0402305 Statistical Mechanics +cond-mat/0402306 Mesoscale and Nanoscale Physics +cond-mat/0402311 Other Condensed Matter +cond-mat/0402312 Other Condensed Matter +cond-mat/0402314 Statistical Mechanics +cond-mat/0402315 Statistical Mechanics +cond-mat/0402317 Soft Condensed Matter +cond-mat/0402319 Mesoscale and Nanoscale Physics +cond-mat/0402320 Superconductivity +cond-mat/0402321 Strongly Correlated Electrons +cond-mat/0402322 Statistical Mechanics +cond-mat/0402323 Superconductivity +cond-mat/0402326 Mesoscale and Nanoscale Physics +cond-mat/0402328 Soft Condensed Matter +cond-mat/0402329 Superconductivity +cond-mat/0402330 Disordered Systems and Neural Networks +cond-mat/0402335 Materials Science +cond-mat/0402336 Other Condensed Matter +cond-mat/0402337 Mesoscale and Nanoscale Physics +cond-mat/0402340 Superconductivity +cond-mat/0402344 Strongly Correlated Electrons +cond-mat/0402345 Soft Condensed Matter +cond-mat/0402346 Strongly Correlated Electrons +cond-mat/0402348 Mesoscale and Nanoscale Physics +cond-mat/0402349 Statistical Mechanics +cond-mat/0402350 Materials Science +cond-mat/0402352 Strongly Correlated Electrons +cond-mat/0402361 Mesoscale and Nanoscale Physics +cond-mat/0402362 Mesoscale and Nanoscale Physics +cond-mat/0402364 Mesoscale and Nanoscale Physics +cond-mat/0402365 Statistical Mechanics +cond-mat/0402367 Other Condensed Matter +cond-mat/0402368 Mesoscale and Nanoscale Physics +cond-mat/0402373 Mesoscale and Nanoscale Physics +cond-mat/0402374 Strongly Correlated Electrons +cond-mat/0402375 Other Condensed Matter +cond-mat/0402376 Disordered Systems and Neural Networks +cond-mat/0402378 Soft Condensed Matter +cond-mat/0402380 Materials Science +cond-mat/0402382 Mesoscale and Nanoscale Physics +cond-mat/0402384 Materials Science +cond-mat/0402387 Mesoscale and Nanoscale Physics +cond-mat/0402393 Mesoscale and Nanoscale Physics +cond-mat/0402397 Statistical Mechanics +cond-mat/0402398 Superconductivity +cond-mat/0402400 Superconductivity +cond-mat/0402402 Disordered Systems and Neural Networks +cond-mat/0402403 Superconductivity +cond-mat/0402404 Statistical Mechanics +cond-mat/0402405 Strongly Correlated Electrons +cond-mat/0402406 Statistical Mechanics +cond-mat/0402408 Statistical Mechanics +cond-mat/0402410 Other Condensed Matter +cond-mat/0402411 Statistical Mechanics +cond-mat/0402412 Mesoscale and Nanoscale Physics +cond-mat/0402414 Soft Condensed Matter +cond-mat/0402416 Mesoscale and Nanoscale Physics +cond-mat/0402417 Mesoscale and Nanoscale Physics +cond-mat/0402419 Strongly Correlated Electrons +cond-mat/0402423 Statistical Mechanics +cond-mat/0402424 Soft Condensed Matter +cond-mat/0402425 Mesoscale and Nanoscale Physics +cond-mat/0402427 Disordered Systems and Neural Networks +cond-mat/0402428 Mesoscale and Nanoscale Physics +cond-mat/0402429 Disordered Systems and Neural Networks +cond-mat/0402430 Statistical Mechanics +cond-mat/0402432 Soft Condensed Matter +cond-mat/0402436 Superconductivity +cond-mat/0402440 Statistical Mechanics +cond-mat/0402441 Mesoscale and Nanoscale Physics +cond-mat/0402442 Mesoscale and Nanoscale Physics +cond-mat/0402443 Statistical Mechanics +cond-mat/0402445 Strongly Correlated Electrons +cond-mat/0402450 Other Condensed Matter +cond-mat/0402451 Statistical Mechanics +cond-mat/0402452 Disordered Systems and Neural Networks +cond-mat/0402453 Materials Science +cond-mat/0402454 Materials Science +cond-mat/0402455 Soft Condensed Matter +cond-mat/0402456 Other Condensed Matter +cond-mat/0402459 Mesoscale and Nanoscale Physics +cond-mat/0402462 Statistical Mechanics +cond-mat/0402464 Soft Condensed Matter +cond-mat/0402465 Strongly Correlated Electrons +cond-mat/0402469 Mesoscale and Nanoscale Physics +cond-mat/0402470 Superconductivity +cond-mat/0402473 Superconductivity +cond-mat/0402479 Strongly Correlated Electrons +cond-mat/0402480 Soft Condensed Matter +cond-mat/0402481 Strongly Correlated Electrons +cond-mat/0402487 Strongly Correlated Electrons +cond-mat/0402489 Soft Condensed Matter +cond-mat/0402490 Soft Condensed Matter +cond-mat/0402494 Statistical Mechanics +cond-mat/0402495 Strongly Correlated Electrons +cond-mat/0402496 Soft Condensed Matter +cond-mat/0402498 Strongly Correlated Electrons +cond-mat/0402499 Disordered Systems and Neural Networks +cond-mat/0402503 Superconductivity +cond-mat/0402504 Disordered Systems and Neural Networks +cond-mat/0402506 Disordered Systems and Neural Networks +cond-mat/0402507 Strongly Correlated Electrons +cond-mat/0402510 Strongly Correlated Electrons +cond-mat/0402512 Strongly Correlated Electrons +cond-mat/0402515 Statistical Mechanics +cond-mat/0402516 Mesoscale and Nanoscale Physics +cond-mat/0402517 Strongly Correlated Electrons +cond-mat/0402519 Disordered Systems and Neural Networks +cond-mat/0402520 Statistical Mechanics +cond-mat/0402522 Statistical Mechanics +cond-mat/0402527 Statistical Mechanics +cond-mat/0402528 Other Condensed Matter +cond-mat/0402532 Soft Condensed Matter +cond-mat/0402533 Statistical Mechanics +cond-mat/0402535 Strongly Correlated Electrons +cond-mat/0402543 Statistical Mechanics +cond-mat/0402547 Strongly Correlated Electrons +cond-mat/0402554 Soft Condensed Matter +cond-mat/0402555 Other Condensed Matter +cond-mat/0402556 Soft Condensed Matter +cond-mat/0402557 Statistical Mechanics +cond-mat/0402558 Soft Condensed Matter +cond-mat/0402560 Mesoscale and Nanoscale Physics +cond-mat/0402567 Statistical Mechanics +cond-mat/0402568 Materials Science +cond-mat/0402569 Strongly Correlated Electrons +cond-mat/0402570 Materials Science +cond-mat/0402571 Materials Science +cond-mat/0402572 Other Condensed Matter +cond-mat/0402574 Statistical Mechanics +cond-mat/0402575 Mesoscale and Nanoscale Physics +cond-mat/0402576 Materials Science +cond-mat/0402577 Statistical Mechanics +cond-mat/0402578 Statistical Mechanics +cond-mat/0402580 Strongly Correlated Electrons +cond-mat/0402581 Statistical Mechanics +cond-mat/0402584 Soft Condensed Matter +cond-mat/0402588 Mesoscale and Nanoscale Physics +cond-mat/0402594 Other Condensed Matter +cond-mat/0402596 Disordered Systems and Neural Networks +cond-mat/0402598 Statistical Mechanics +cond-mat/0402601 Other Condensed Matter +cond-mat/0402602 Strongly Correlated Electrons +cond-mat/0402603 Mesoscale and Nanoscale Physics +cond-mat/0402604 Statistical Mechanics +cond-mat/0402605 Soft Condensed Matter +cond-mat/0402606 Statistical Mechanics +cond-mat/0402607 Superconductivity +cond-mat/0402608 Strongly Correlated Electrons +cond-mat/0402609 Strongly Correlated Electrons +cond-mat/0402610 Superconductivity +cond-mat/0402612 Superconductivity +cond-mat/0402614 Strongly Correlated Electrons +cond-mat/0402616 Materials Science +cond-mat/0402618 Soft Condensed Matter +cond-mat/0402619 Mesoscale and Nanoscale Physics +cond-mat/0402620 Statistical Mechanics +cond-mat/0402621 Materials Science +cond-mat/0402623 Soft Condensed Matter +cond-mat/0402626 Other Condensed Matter +cond-mat/0402629 Statistical Mechanics +cond-mat/0402631 Materials Science +cond-mat/0402633 Materials Science +cond-mat/0402634 Soft Condensed Matter +cond-mat/0402635 Statistical Mechanics +cond-mat/0402636 Statistical Mechanics +cond-mat/0402637 Statistical Mechanics +cond-mat/0402638 Superconductivity +cond-mat/0402639 Mesoscale and Nanoscale Physics +cond-mat/0402642 Materials Science +cond-mat/0402644 Other Condensed Matter +cond-mat/0402645 Disordered Systems and Neural Networks +cond-mat/0402648 Other Condensed Matter +cond-mat/0402650 Statistical Mechanics +cond-mat/0402652 Mesoscale and Nanoscale Physics +cond-mat/0402653 Mesoscale and Nanoscale Physics +cond-mat/0402655 Superconductivity +cond-mat/0402656 Soft Condensed Matter +cond-mat/0402657 Disordered Systems and Neural Networks +cond-mat/0402658 Superconductivity +cond-mat/0402659 Superconductivity +cond-mat/0402660 Mesoscale and Nanoscale Physics +cond-mat/0402661 Materials Science +cond-mat/0402663 Strongly Correlated Electrons +cond-mat/0402664 Strongly Correlated Electrons +cond-mat/0402669 Soft Condensed Matter +cond-mat/0402671 Strongly Correlated Electrons +cond-mat/0402672 Strongly Correlated Electrons +cond-mat/0402673 Statistical Mechanics +cond-mat/0402674 Mesoscale and Nanoscale Physics +cond-mat/0402678 Superconductivity +cond-mat/0402679 Strongly Correlated Electrons +cond-mat/0402681 Superconductivity +cond-mat/0402682 Mesoscale and Nanoscale Physics +cond-mat/0402683 Strongly Correlated Electrons +cond-mat/0402684 Mesoscale and Nanoscale Physics +cond-mat/0402685 Strongly Correlated Electrons +cond-mat/0402687 Superconductivity +cond-mat/0403003 Superconductivity +cond-mat/0403004 Materials Science +cond-mat/0403007 Strongly Correlated Electrons +cond-mat/0403010 Other Condensed Matter +cond-mat/0403011 Statistical Mechanics +cond-mat/0403012 Statistical Mechanics +cond-mat/0403014 Soft Condensed Matter +cond-mat/0403018 Strongly Correlated Electrons +cond-mat/0403020 Disordered Systems and Neural Networks +cond-mat/0403024 Materials Science +cond-mat/0403025 Soft Condensed Matter +cond-mat/0403028 Strongly Correlated Electrons +cond-mat/0403029 Statistical Mechanics +cond-mat/0403030 Statistical Mechanics +cond-mat/0403032 Superconductivity +cond-mat/0403033 Statistical Mechanics +cond-mat/0403034 Statistical Mechanics +cond-mat/0403035 Strongly Correlated Electrons +cond-mat/0403036 Statistical Mechanics +cond-mat/0403038 Disordered Systems and Neural Networks +cond-mat/0403039 Statistical Mechanics +cond-mat/0403040 Statistical Mechanics +cond-mat/0403041 Soft Condensed Matter +cond-mat/0403046 Soft Condensed Matter +cond-mat/0403048 Statistical Mechanics +cond-mat/0403049 Soft Condensed Matter +cond-mat/0403050 Strongly Correlated Electrons +cond-mat/0403053 Disordered Systems and Neural Networks +cond-mat/0403054 Strongly Correlated Electrons +cond-mat/0403056 Materials Science +cond-mat/0403057 Disordered Systems and Neural Networks +cond-mat/0403058 Mesoscale and Nanoscale Physics +cond-mat/0403059 Materials Science +cond-mat/0403062 Statistical Mechanics +cond-mat/0403063 Strongly Correlated Electrons +cond-mat/0403066 Strongly Correlated Electrons +cond-mat/0403068 Strongly Correlated Electrons +cond-mat/0403069 Superconductivity +cond-mat/0403072 Mesoscale and Nanoscale Physics +cond-mat/0403073 Mesoscale and Nanoscale Physics +cond-mat/0403074 Strongly Correlated Electrons +cond-mat/0403076 Statistical Mechanics +cond-mat/0403079 Statistical Mechanics +cond-mat/0403080 Materials Science +cond-mat/0403081 Statistical Mechanics +cond-mat/0403082 Statistical Mechanics +cond-mat/0403085 Soft Condensed Matter +cond-mat/0403086 Strongly Correlated Electrons +cond-mat/0403088 Materials Science +cond-mat/0403089 Soft Condensed Matter +cond-mat/0403090 Statistical Mechanics +cond-mat/0403091 Statistical Mechanics +cond-mat/0403092 Materials Science +cond-mat/0403093 Strongly Correlated Electrons +cond-mat/0403094 Strongly Correlated Electrons +cond-mat/0403096 Mesoscale and Nanoscale Physics +cond-mat/0403097 Statistical Mechanics +cond-mat/0403100 Materials Science +cond-mat/0403101 Strongly Correlated Electrons +cond-mat/0403105 Materials Science +cond-mat/0403111 Mesoscale and Nanoscale Physics +cond-mat/0403112 Disordered Systems and Neural Networks +cond-mat/0403113 Materials Science +cond-mat/0403115 Superconductivity +cond-mat/0403116 Materials Science +cond-mat/0403117 Statistical Mechanics +cond-mat/0403118 Materials Science +cond-mat/0403119 Materials Science +cond-mat/0403120 Mesoscale and Nanoscale Physics +cond-mat/0403121 Strongly Correlated Electrons +cond-mat/0403122 Statistical Mechanics +cond-mat/0403124 Materials Science +cond-mat/0403127 Soft Condensed Matter +cond-mat/0403128 Other Condensed Matter +cond-mat/0403130 Superconductivity +cond-mat/0403132 Soft Condensed Matter +cond-mat/0403134 Mesoscale and Nanoscale Physics +cond-mat/0403136 Superconductivity +cond-mat/0403137 Soft Condensed Matter +cond-mat/0403138 Other Condensed Matter +cond-mat/0403140 Superconductivity +cond-mat/0403141 Materials Science +cond-mat/0403142 Statistical Mechanics +cond-mat/0403143 Statistical Mechanics +cond-mat/0403148 Strongly Correlated Electrons +cond-mat/0403149 Mesoscale and Nanoscale Physics +cond-mat/0403150 Soft Condensed Matter +cond-mat/0403151 Disordered Systems and Neural Networks +cond-mat/0403153 Materials Science +cond-mat/0403155 Strongly Correlated Electrons +cond-mat/0403156 Mesoscale and Nanoscale Physics +cond-mat/0403159 Soft Condensed Matter +cond-mat/0403160 Materials Science +cond-mat/0403162 Statistical Mechanics +cond-mat/0403164 Soft Condensed Matter +cond-mat/0403165 Strongly Correlated Electrons +cond-mat/0403172 Disordered Systems and Neural Networks +cond-mat/0403174 Strongly Correlated Electrons +cond-mat/0403178 Other Condensed Matter +cond-mat/0403179 Materials Science +cond-mat/0403180 Soft Condensed Matter +cond-mat/0403181 Strongly Correlated Electrons +cond-mat/0403182 Statistical Mechanics +cond-mat/0403185 Other Condensed Matter +cond-mat/0403187 Strongly Correlated Electrons +cond-mat/0403188 Strongly Correlated Electrons +cond-mat/0403189 Superconductivity +cond-mat/0403191 Mesoscale and Nanoscale Physics +cond-mat/0403192 Statistical Mechanics +cond-mat/0403195 Superconductivity +cond-mat/0403196 Materials Science +cond-mat/0403197 Disordered Systems and Neural Networks +cond-mat/0403198 Superconductivity +cond-mat/0403200 Soft Condensed Matter +cond-mat/0403202 Mesoscale and Nanoscale Physics +cond-mat/0403205 Soft Condensed Matter +cond-mat/0403207 Mesoscale and Nanoscale Physics +cond-mat/0403208 Other Condensed Matter +cond-mat/0403209 Statistical Mechanics +cond-mat/0403210 Other Condensed Matter +cond-mat/0403213 Soft Condensed Matter +cond-mat/0403215 Strongly Correlated Electrons +cond-mat/0403216 Soft Condensed Matter +cond-mat/0403218 Superconductivity +cond-mat/0403219 Soft Condensed Matter +cond-mat/0403220 Statistical Mechanics +cond-mat/0403221 Strongly Correlated Electrons +cond-mat/0403223 Soft Condensed Matter +cond-mat/0403224 Mesoscale and Nanoscale Physics +cond-mat/0403225 Disordered Systems and Neural Networks +cond-mat/0403227 Soft Condensed Matter +cond-mat/0403232 Strongly Correlated Electrons +cond-mat/0403233 Statistical Mechanics +cond-mat/0403234 Strongly Correlated Electrons +cond-mat/0403237 Soft Condensed Matter +cond-mat/0403240 Statistical Mechanics +cond-mat/0403241 Materials Science +cond-mat/0403246 Statistical Mechanics +cond-mat/0403248 Statistical Mechanics +cond-mat/0403250 Other Condensed Matter +cond-mat/0403253 Disordered Systems and Neural Networks +cond-mat/0403254 Soft Condensed Matter +cond-mat/0403258 Superconductivity +cond-mat/0403259 Materials Science +cond-mat/0403262 Mesoscale and Nanoscale Physics +cond-mat/0403266 Strongly Correlated Electrons +cond-mat/0403267 Statistical Mechanics +cond-mat/0403268 Statistical Mechanics +cond-mat/0403269 Disordered Systems and Neural Networks +cond-mat/0403271 Statistical Mechanics +cond-mat/0403273 Statistical Mechanics +cond-mat/0403274 Strongly Correlated Electrons +cond-mat/0403276 Materials Science +cond-mat/0403277 Statistical Mechanics +cond-mat/0403279 Materials Science +cond-mat/0403280 Statistical Mechanics +cond-mat/0403281 Materials Science +cond-mat/0403282 Materials Science +cond-mat/0403285 Superconductivity +cond-mat/0403288 Superconductivity +cond-mat/0403289 Mesoscale and Nanoscale Physics +cond-mat/0403291 Materials Science +cond-mat/0403294 Statistical Mechanics +cond-mat/0403298 Soft Condensed Matter +cond-mat/0403301 Materials Science +cond-mat/0403303 Statistical Mechanics +cond-mat/0403304 Statistical Mechanics +cond-mat/0403306 Soft Condensed Matter +cond-mat/0403308 Strongly Correlated Electrons +cond-mat/0403312 Soft Condensed Matter +cond-mat/0403313 Strongly Correlated Electrons +cond-mat/0403314 Superconductivity +cond-mat/0403315 Superconductivity +cond-mat/0403318 Mesoscale and Nanoscale Physics +cond-mat/0403319 Soft Condensed Matter +cond-mat/0403320 Soft Condensed Matter +cond-mat/0403321 Statistical Mechanics +cond-mat/0403322 Materials Science +cond-mat/0403323 Strongly Correlated Electrons +cond-mat/0403324 Superconductivity +cond-mat/0403325 Soft Condensed Matter +cond-mat/0403326 Soft Condensed Matter +cond-mat/0403331 Strongly Correlated Electrons +cond-mat/0403335 Strongly Correlated Electrons +cond-mat/0403337 Strongly Correlated Electrons +cond-mat/0403338 Superconductivity +cond-mat/0403340 Superconductivity +cond-mat/0403342 Strongly Correlated Electrons +cond-mat/0403343 Superconductivity +cond-mat/0403345 Superconductivity +cond-mat/0403349 Strongly Correlated Electrons +cond-mat/0403351 Other Condensed Matter +cond-mat/0403353 Soft Condensed Matter +cond-mat/0403354 Strongly Correlated Electrons +cond-mat/0403356 Disordered Systems and Neural Networks +cond-mat/0403357 Other Condensed Matter +cond-mat/0403360 Statistical Mechanics +cond-mat/0403361 Disordered Systems and Neural Networks +cond-mat/0403362 Statistical Mechanics +cond-mat/0403364 Strongly Correlated Electrons +cond-mat/0403365 Soft Condensed Matter +cond-mat/0403366 Soft Condensed Matter +cond-mat/0403367 Mesoscale and Nanoscale Physics +cond-mat/0403369 Materials Science +cond-mat/0403371 Materials Science +cond-mat/0403373 Mesoscale and Nanoscale Physics +cond-mat/0403375 Strongly Correlated Electrons +cond-mat/0403376 Superconductivity +cond-mat/0403378 Soft Condensed Matter +cond-mat/0403379 Superconductivity +cond-mat/0403382 Disordered Systems and Neural Networks +cond-mat/0403383 Strongly Correlated Electrons +cond-mat/0403384 Superconductivity +cond-mat/0403386 Superconductivity +cond-mat/0403390 Strongly Correlated Electrons +cond-mat/0403391 Statistical Mechanics +cond-mat/0403393 Mesoscale and Nanoscale Physics +cond-mat/0403394 Mesoscale and Nanoscale Physics +cond-mat/0403395 Other Condensed Matter +cond-mat/0403396 Strongly Correlated Electrons +cond-mat/0403397 Strongly Correlated Electrons +cond-mat/0403398 Strongly Correlated Electrons +cond-mat/0403399 Mesoscale and Nanoscale Physics +cond-mat/0403400 Materials Science +cond-mat/0403401 Mesoscale and Nanoscale Physics +cond-mat/0403404 Strongly Correlated Electrons +cond-mat/0403405 Materials Science +cond-mat/0403406 Strongly Correlated Electrons +cond-mat/0403408 Soft Condensed Matter +cond-mat/0403409 Materials Science +cond-mat/0403410 Superconductivity +cond-mat/0403411 Strongly Correlated Electrons +cond-mat/0403412 Statistical Mechanics +cond-mat/0403414 Mesoscale and Nanoscale Physics +cond-mat/0403415 Disordered Systems and Neural Networks +cond-mat/0403419 Soft Condensed Matter +cond-mat/0403420 Strongly Correlated Electrons +cond-mat/0403423 Statistical Mechanics +cond-mat/0403424 Soft Condensed Matter +cond-mat/0403426 Statistical Mechanics +cond-mat/0403427 Mesoscale and Nanoscale Physics +cond-mat/0403429 Soft Condensed Matter +cond-mat/0403430 Strongly Correlated Electrons +cond-mat/0403431 Mesoscale and Nanoscale Physics +cond-mat/0403432 Soft Condensed Matter +cond-mat/0403433 Statistical Mechanics +cond-mat/0403435 Mesoscale and Nanoscale Physics +cond-mat/0403437 Mesoscale and Nanoscale Physics +cond-mat/0403438 Statistical Mechanics +cond-mat/0403439 Superconductivity +cond-mat/0403440 Other Condensed Matter +cond-mat/0403442 Strongly Correlated Electrons +cond-mat/0403444 Mesoscale and Nanoscale Physics +cond-mat/0403445 Mesoscale and Nanoscale Physics +cond-mat/0403447 Mesoscale and Nanoscale Physics +cond-mat/0403451 Superconductivity +cond-mat/0403458 Soft Condensed Matter +cond-mat/0403460 Disordered Systems and Neural Networks +cond-mat/0403461 Statistical Mechanics +cond-mat/0403463 Materials Science +cond-mat/0403464 Mesoscale and Nanoscale Physics +cond-mat/0403466 Soft Condensed Matter +cond-mat/0403470 Soft Condensed Matter +cond-mat/0403471 Statistical Mechanics +cond-mat/0403472 Statistical Mechanics +cond-mat/0403473 Materials Science +cond-mat/0403474 Materials Science +cond-mat/0403475 Soft Condensed Matter +cond-mat/0403478 Materials Science +cond-mat/0403479 Materials Science +cond-mat/0403480 Superconductivity +cond-mat/0403481 Strongly Correlated Electrons +cond-mat/0403482 Mesoscale and Nanoscale Physics +cond-mat/0403484 Materials Science +cond-mat/0403485 Mesoscale and Nanoscale Physics +cond-mat/0403488 Soft Condensed Matter +cond-mat/0403489 Soft Condensed Matter +cond-mat/0403490 Mesoscale and Nanoscale Physics +cond-mat/0403491 Mesoscale and Nanoscale Physics +cond-mat/0403492 Statistical Mechanics +cond-mat/0403493 Mesoscale and Nanoscale Physics +cond-mat/0403495 Materials Science +cond-mat/0403497 Mesoscale and Nanoscale Physics +cond-mat/0403498 Mesoscale and Nanoscale Physics +cond-mat/0403499 Other Condensed Matter +cond-mat/0403500 Materials Science +cond-mat/0403501 Disordered Systems and Neural Networks +cond-mat/0403502 Statistical Mechanics +cond-mat/0403503 Other Condensed Matter +cond-mat/0403504 Statistical Mechanics +cond-mat/0403505 Disordered Systems and Neural Networks +cond-mat/0403507 Mesoscale and Nanoscale Physics +cond-mat/0403509 Other Condensed Matter +cond-mat/0403511 Materials Science +cond-mat/0403512 Mesoscale and Nanoscale Physics +cond-mat/0403515 Soft Condensed Matter +cond-mat/0403516 Materials Science +cond-mat/0403520 Statistical Mechanics +cond-mat/0403521 Superconductivity +cond-mat/0403523 Statistical Mechanics +cond-mat/0403525 Strongly Correlated Electrons +cond-mat/0403526 Superconductivity +cond-mat/0403527 Statistical Mechanics +cond-mat/0403528 Materials Science +cond-mat/0403532 Materials Science +cond-mat/0403533 Materials Science +cond-mat/0403535 Strongly Correlated Electrons +cond-mat/0403536 Disordered Systems and Neural Networks +cond-mat/0403537 Strongly Correlated Electrons +cond-mat/0403539 Superconductivity +cond-mat/0403540 Soft Condensed Matter +cond-mat/0403543 Strongly Correlated Electrons +cond-mat/0403544 Materials Science +cond-mat/0403545 Strongly Correlated Electrons +cond-mat/0403547 Mesoscale and Nanoscale Physics +cond-mat/0403550 Superconductivity +cond-mat/0403553 Soft Condensed Matter +cond-mat/0403554 Statistical Mechanics +cond-mat/0403555 Statistical Mechanics +cond-mat/0403556 Materials Science +cond-mat/0403559 Mesoscale and Nanoscale Physics +cond-mat/0403560 Mesoscale and Nanoscale Physics +cond-mat/0403561 Soft Condensed Matter +cond-mat/0403562 Statistical Mechanics +cond-mat/0403564 Superconductivity +cond-mat/0403566 Other Condensed Matter +cond-mat/0403568 Statistical Mechanics +cond-mat/0403570 Soft Condensed Matter +cond-mat/0403571 Soft Condensed Matter +cond-mat/0403572 Materials Science +cond-mat/0403575 Materials Science +cond-mat/0403577 Mesoscale and Nanoscale Physics +cond-mat/0403579 Statistical Mechanics +cond-mat/0403583 Statistical Mechanics +cond-mat/0403584 Mesoscale and Nanoscale Physics +cond-mat/0403586 Statistical Mechanics +cond-mat/0403588 Superconductivity +cond-mat/0403590 Superconductivity +cond-mat/0403593 Disordered Systems and Neural Networks +cond-mat/0403594 Strongly Correlated Electrons +cond-mat/0403597 Materials Science +cond-mat/0403598 Mesoscale and Nanoscale Physics +cond-mat/0403599 Other Condensed Matter +cond-mat/0403600 Materials Science +cond-mat/0403601 Superconductivity +cond-mat/0403604 Statistical Mechanics +cond-mat/0403608 Superconductivity +cond-mat/0403610 Statistical Mechanics +cond-mat/0403612 Statistical Mechanics +cond-mat/0403613 Mesoscale and Nanoscale Physics +cond-mat/0403615 Disordered Systems and Neural Networks +cond-mat/0403616 Mesoscale and Nanoscale Physics +cond-mat/0403617 Mesoscale and Nanoscale Physics +cond-mat/0403619 Statistical Mechanics +cond-mat/0403620 Disordered Systems and Neural Networks +cond-mat/0403621 Statistical Mechanics +cond-mat/0403622 Soft Condensed Matter +cond-mat/0403625 Disordered Systems and Neural Networks +cond-mat/0403629 Strongly Correlated Electrons +cond-mat/0403630 Strongly Correlated Electrons +cond-mat/0403631 Strongly Correlated Electrons +cond-mat/0403632 Disordered Systems and Neural Networks +cond-mat/0403634 Strongly Correlated Electrons +cond-mat/0403636 Mesoscale and Nanoscale Physics +cond-mat/0403637 Materials Science +cond-mat/0403640 Materials Science +cond-mat/0403645 Mesoscale and Nanoscale Physics +cond-mat/0403646 Materials Science +cond-mat/0403647 Soft Condensed Matter +cond-mat/0403648 Materials Science +cond-mat/0403649 Disordered Systems and Neural Networks +cond-mat/0403650 Materials Science +cond-mat/0403653 Materials Science +cond-mat/0403656 Statistical Mechanics +cond-mat/0403657 Materials Science +cond-mat/0403658 Superconductivity +cond-mat/0403660 Disordered Systems and Neural Networks +cond-mat/0403662 Statistical Mechanics +cond-mat/0403663 Mesoscale and Nanoscale Physics +cond-mat/0403665 Superconductivity +cond-mat/0403670 Statistical Mechanics +cond-mat/0403672 Statistical Mechanics +cond-mat/0403673 Mesoscale and Nanoscale Physics +cond-mat/0403674 Statistical Mechanics +cond-mat/0403675 Mesoscale and Nanoscale Physics +cond-mat/0403676 Soft Condensed Matter +cond-mat/0403677 Mesoscale and Nanoscale Physics +cond-mat/0403679 Statistical Mechanics +cond-mat/0403683 Superconductivity +cond-mat/0403684 Soft Condensed Matter +cond-mat/0403688 Soft Condensed Matter +cond-mat/0403689 Strongly Correlated Electrons +cond-mat/0403691 Statistical Mechanics +cond-mat/0403697 Superconductivity +cond-mat/0403699 Disordered Systems and Neural Networks +cond-mat/0403701 Disordered Systems and Neural Networks +cond-mat/0403702 Soft Condensed Matter +cond-mat/0403703 Mesoscale and Nanoscale Physics +cond-mat/0403708 Materials Science +cond-mat/0403709 Mesoscale and Nanoscale Physics +cond-mat/0403712 Superconductivity +cond-mat/0403714 Strongly Correlated Electrons +cond-mat/0403717 Disordered Systems and Neural Networks +cond-mat/0403718 Strongly Correlated Electrons +cond-mat/0403720 Soft Condensed Matter +cond-mat/0403721 Soft Condensed Matter +cond-mat/0403723 Other Condensed Matter +cond-mat/0403724 Statistical Mechanics +cond-mat/0403726 Strongly Correlated Electrons +cond-mat/0403728 Superconductivity +cond-mat/0403730 Statistical Mechanics +cond-mat/0403732 Mesoscale and Nanoscale Physics +cond-mat/0403733 Strongly Correlated Electrons +cond-mat/0403734 Statistical Mechanics +cond-mat/0403736 Strongly Correlated Electrons +cond-mat/0403737 Superconductivity +cond-mat/0403739 Other Condensed Matter +cond-mat/0403740 Soft Condensed Matter +cond-mat/0403741 Mesoscale and Nanoscale Physics +cond-mat/0403742 Materials Science +cond-mat/0403745 Statistical Mechanics +cond-mat/0403747 Statistical Mechanics +cond-mat/0403748 Disordered Systems and Neural Networks +cond-mat/0403749 Materials Science +cond-mat/0403750 Mesoscale and Nanoscale Physics +cond-mat/0403751 Strongly Correlated Electrons +cond-mat/0403752 Soft Condensed Matter +cond-mat/0403753 Superconductivity +cond-mat/0403754 Disordered Systems and Neural Networks +cond-mat/0403756 Other Condensed Matter +cond-mat/0403759 Strongly Correlated Electrons +cond-mat/0403760 Mesoscale and Nanoscale Physics +cond-mat/0403762 Statistical Mechanics +cond-mat/0403764 Superconductivity +cond-mat/0403765 Strongly Correlated Electrons +cond-mat/0403766 Superconductivity +cond-mat/0404001 Strongly Correlated Electrons +cond-mat/0404002 Materials Science +cond-mat/0404003 Materials Science +cond-mat/0404004 Soft Condensed Matter +cond-mat/0404006 Other Condensed Matter +cond-mat/0404008 Mesoscale and Nanoscale Physics +cond-mat/0404010 Mesoscale and Nanoscale Physics +cond-mat/0404013 Mesoscale and Nanoscale Physics +cond-mat/0404014 Mesoscale and Nanoscale Physics +cond-mat/0404015 Other Condensed Matter +cond-mat/0404019 Statistical Mechanics +cond-mat/0404021 Mesoscale and Nanoscale Physics +cond-mat/0404022 Superconductivity +cond-mat/0404025 Statistical Mechanics +cond-mat/0404026 Materials Science +cond-mat/0404029 Superconductivity +cond-mat/0404031 Superconductivity +cond-mat/0404032 Statistical Mechanics +cond-mat/0404033 Strongly Correlated Electrons +cond-mat/0404034 Soft Condensed Matter +cond-mat/0404035 Materials Science +cond-mat/0404037 Mesoscale and Nanoscale Physics +cond-mat/0404038 Statistical Mechanics +cond-mat/0404039 Mesoscale and Nanoscale Physics +cond-mat/0404040 Soft Condensed Matter +cond-mat/0404041 Other Condensed Matter +cond-mat/0404044 Materials Science +cond-mat/0404045 Soft Condensed Matter +cond-mat/0404050 Statistical Mechanics +cond-mat/0404051 Statistical Mechanics +cond-mat/0404052 Superconductivity +cond-mat/0404054 Statistical Mechanics +cond-mat/0404055 Strongly Correlated Electrons +cond-mat/0404056 Mesoscale and Nanoscale Physics +cond-mat/0404058 Superconductivity +cond-mat/0404059 Strongly Correlated Electrons +cond-mat/0404060 Materials Science +cond-mat/0404061 Strongly Correlated Electrons +cond-mat/0404062 Soft Condensed Matter +cond-mat/0404063 Statistical Mechanics +cond-mat/0404064 Mesoscale and Nanoscale Physics +cond-mat/0404065 Statistical Mechanics +cond-mat/0404068 Mesoscale and Nanoscale Physics +cond-mat/0404069 Mesoscale and Nanoscale Physics +cond-mat/0404070 Superconductivity +cond-mat/0404074 Superconductivity +cond-mat/0404076 Other Condensed Matter +cond-mat/0404077 Soft Condensed Matter +cond-mat/0404079 Mesoscale and Nanoscale Physics +cond-mat/0404081 Superconductivity +cond-mat/0404083 Statistical Mechanics +cond-mat/0404085 Strongly Correlated Electrons +cond-mat/0404086 Materials Science +cond-mat/0404090 Materials Science +cond-mat/0404093 Other Condensed Matter +cond-mat/0404094 Superconductivity +cond-mat/0404098 Materials Science +cond-mat/0404100 Other Condensed Matter +cond-mat/0404105 Statistical Mechanics +cond-mat/0404109 Materials Science +cond-mat/0404111 Statistical Mechanics +cond-mat/0404112 Mesoscale and Nanoscale Physics +cond-mat/0404113 Mesoscale and Nanoscale Physics +cond-mat/0404114 Soft Condensed Matter +cond-mat/0404116 Statistical Mechanics +cond-mat/0404117 Soft Condensed Matter +cond-mat/0404118 Strongly Correlated Electrons +cond-mat/0404120 Superconductivity +cond-mat/0404125 Statistical Mechanics +cond-mat/0404130 Soft Condensed Matter +cond-mat/0404131 Materials Science +cond-mat/0404132 Disordered Systems and Neural Networks +cond-mat/0404134 Soft Condensed Matter +cond-mat/0404135 Mesoscale and Nanoscale Physics +cond-mat/0404140 Statistical Mechanics +cond-mat/0404141 Materials Science +cond-mat/0404142 Statistical Mechanics +cond-mat/0404144 Soft Condensed Matter +cond-mat/0404145 Mesoscale and Nanoscale Physics +cond-mat/0404149 Soft Condensed Matter +cond-mat/0404153 Superconductivity +cond-mat/0404156 Superconductivity +cond-mat/0404157 Strongly Correlated Electrons +cond-mat/0404158 Soft Condensed Matter +cond-mat/0404159 Materials Science +cond-mat/0404161 Soft Condensed Matter +cond-mat/0404162 Materials Science +cond-mat/0404163 Materials Science +cond-mat/0404164 Materials Science +cond-mat/0404167 Statistical Mechanics +cond-mat/0404168 Superconductivity +cond-mat/0404169 Superconductivity +cond-mat/0404170 Disordered Systems and Neural Networks +cond-mat/0404172 Materials Science +cond-mat/0404173 Mesoscale and Nanoscale Physics +cond-mat/0404175 Statistical Mechanics +cond-mat/0404177 Disordered Systems and Neural Networks +cond-mat/0404179 Superconductivity +cond-mat/0404180 Superconductivity +cond-mat/0404182 Strongly Correlated Electrons +cond-mat/0404183 Strongly Correlated Electrons +cond-mat/0404185 Strongly Correlated Electrons +cond-mat/0404187 Materials Science +cond-mat/0404188 Superconductivity +cond-mat/0404190 Mesoscale and Nanoscale Physics +cond-mat/0404193 Materials Science +cond-mat/0404195 Strongly Correlated Electrons +cond-mat/0404196 Superconductivity +cond-mat/0404197 Strongly Correlated Electrons +cond-mat/0404201 Statistical Mechanics +cond-mat/0404202 Superconductivity +cond-mat/0404203 Statistical Mechanics +cond-mat/0404204 Statistical Mechanics +cond-mat/0404206 Strongly Correlated Electrons +cond-mat/0404207 Disordered Systems and Neural Networks +cond-mat/0404208 Mesoscale and Nanoscale Physics +cond-mat/0404210 Mesoscale and Nanoscale Physics +cond-mat/0404213 Mesoscale and Nanoscale Physics +cond-mat/0404214 Disordered Systems and Neural Networks +cond-mat/0404215 Mesoscale and Nanoscale Physics +cond-mat/0404216 Superconductivity +cond-mat/0404217 Statistical Mechanics +cond-mat/0404218 Mesoscale and Nanoscale Physics +cond-mat/0404220 Superconductivity +cond-mat/0404225 Materials Science +cond-mat/0404228 Materials Science +cond-mat/0404229 Superconductivity +cond-mat/0404230 Statistical Mechanics +cond-mat/0404232 Statistical Mechanics +cond-mat/0404233 Soft Condensed Matter +cond-mat/0404235 Statistical Mechanics +cond-mat/0404237 Materials Science +cond-mat/0404238 Statistical Mechanics +cond-mat/0404241 Statistical Mechanics +cond-mat/0404243 Statistical Mechanics +cond-mat/0404244 Mesoscale and Nanoscale Physics +cond-mat/0404245 Mesoscale and Nanoscale Physics +cond-mat/0404246 Mesoscale and Nanoscale Physics +cond-mat/0404247 Strongly Correlated Electrons +cond-mat/0404248 Materials Science +cond-mat/0404252 Superconductivity +cond-mat/0404254 Mesoscale and Nanoscale Physics +cond-mat/0404255 Strongly Correlated Electrons +cond-mat/0404256 Soft Condensed Matter +cond-mat/0404257 Superconductivity +cond-mat/0404258 Disordered Systems and Neural Networks +cond-mat/0404259 Soft Condensed Matter +cond-mat/0404260 Superconductivity +cond-mat/0404262 Mesoscale and Nanoscale Physics +cond-mat/0404263 Strongly Correlated Electrons +cond-mat/0404268 Strongly Correlated Electrons +cond-mat/0404269 Strongly Correlated Electrons +cond-mat/0404270 Mesoscale and Nanoscale Physics +cond-mat/0404272 Soft Condensed Matter +cond-mat/0404273 Strongly Correlated Electrons +cond-mat/0404275 Strongly Correlated Electrons +cond-mat/0404276 Soft Condensed Matter +cond-mat/0404281 Materials Science +cond-mat/0404282 Mesoscale and Nanoscale Physics +cond-mat/0404284 Soft Condensed Matter +cond-mat/0404285 Materials Science +cond-mat/0404287 Superconductivity +cond-mat/0404288 Statistical Mechanics +cond-mat/0404289 Statistical Mechanics +cond-mat/0404291 Other Condensed Matter +cond-mat/0404293 Mesoscale and Nanoscale Physics +cond-mat/0404294 Soft Condensed Matter +cond-mat/0404295 Disordered Systems and Neural Networks +cond-mat/0404297 Materials Science +cond-mat/0404298 Superconductivity +cond-mat/0404305 Soft Condensed Matter +cond-mat/0404306 Other Condensed Matter +cond-mat/0404307 Superconductivity +cond-mat/0404308 Soft Condensed Matter +cond-mat/0404309 Statistical Mechanics +cond-mat/0404313 Other Condensed Matter +cond-mat/0404314 Statistical Mechanics +cond-mat/0404315 Statistical Mechanics +cond-mat/0404317 Superconductivity +cond-mat/0404318 Soft Condensed Matter +cond-mat/0404321 Materials Science +cond-mat/0404324 Strongly Correlated Electrons +cond-mat/0404325 Strongly Correlated Electrons +cond-mat/0404327 Superconductivity +cond-mat/0404328 Strongly Correlated Electrons +cond-mat/0404329 Mesoscale and Nanoscale Physics +cond-mat/0404330 Strongly Correlated Electrons +cond-mat/0404331 Other Condensed Matter +cond-mat/0404332 Superconductivity +cond-mat/0404333 Strongly Correlated Electrons +cond-mat/0404334 Strongly Correlated Electrons +cond-mat/0404335 Superconductivity +cond-mat/0404336 Superconductivity +cond-mat/0404337 Mesoscale and Nanoscale Physics +cond-mat/0404340 Superconductivity +cond-mat/0404342 Statistical Mechanics +cond-mat/0404344 Materials Science +cond-mat/0404345 Materials Science +cond-mat/0404347 Materials Science +cond-mat/0404348 Materials Science +cond-mat/0404349 Materials Science +cond-mat/0404351 Mesoscale and Nanoscale Physics +cond-mat/0404356 Soft Condensed Matter +cond-mat/0404361 Mesoscale and Nanoscale Physics +cond-mat/0404362 Mesoscale and Nanoscale Physics +cond-mat/0404363 Materials Science +cond-mat/0404365 Strongly Correlated Electrons +cond-mat/0404368 Mesoscale and Nanoscale Physics +cond-mat/0404369 Strongly Correlated Electrons +cond-mat/0404370 Other Condensed Matter +cond-mat/0404372 Strongly Correlated Electrons +cond-mat/0404373 Statistical Mechanics +cond-mat/0404374 Materials Science +cond-mat/0404375 Strongly Correlated Electrons +cond-mat/0404376 Strongly Correlated Electrons +cond-mat/0404377 Statistical Mechanics +cond-mat/0404380 Soft Condensed Matter +cond-mat/0404381 Statistical Mechanics +cond-mat/0404383 Mesoscale and Nanoscale Physics +cond-mat/0404384 Materials Science +cond-mat/0404387 Mesoscale and Nanoscale Physics +cond-mat/0404388 Superconductivity +cond-mat/0404389 Soft Condensed Matter +cond-mat/0404391 Mesoscale and Nanoscale Physics +cond-mat/0404392 Materials Science +cond-mat/0404394 Superconductivity +cond-mat/0404395 Statistical Mechanics +cond-mat/0404396 Materials Science +cond-mat/0404397 Mesoscale and Nanoscale Physics +cond-mat/0404399 Materials Science +cond-mat/0404401 Superconductivity +cond-mat/0404403 Strongly Correlated Electrons +cond-mat/0404405 Statistical Mechanics +cond-mat/0404407 Superconductivity +cond-mat/0404408 Mesoscale and Nanoscale Physics +cond-mat/0404411 Mesoscale and Nanoscale Physics +cond-mat/0404414 Materials Science +cond-mat/0404419 Statistical Mechanics +cond-mat/0404421 Materials Science +cond-mat/0404424 Statistical Mechanics +cond-mat/0404426 Mesoscale and Nanoscale Physics +cond-mat/0404427 Strongly Correlated Electrons +cond-mat/0404428 Superconductivity +cond-mat/0404429 Statistical Mechanics +cond-mat/0404430 Other Condensed Matter +cond-mat/0404431 Mesoscale and Nanoscale Physics +cond-mat/0404432 Superconductivity +cond-mat/0404437 Statistical Mechanics +cond-mat/0404439 Disordered Systems and Neural Networks +cond-mat/0404440 Disordered Systems and Neural Networks +cond-mat/0404446 Strongly Correlated Electrons +cond-mat/0404448 Mesoscale and Nanoscale Physics +cond-mat/0404451 Superconductivity +cond-mat/0404452 Superconductivity +cond-mat/0404453 Statistical Mechanics +cond-mat/0404454 Mesoscale and Nanoscale Physics +cond-mat/0404455 Mesoscale and Nanoscale Physics +cond-mat/0404457 Soft Condensed Matter +cond-mat/0404458 Soft Condensed Matter +cond-mat/0404460 Strongly Correlated Electrons +cond-mat/0404462 Mesoscale and Nanoscale Physics +cond-mat/0404463 Other Condensed Matter +cond-mat/0404465 Other Condensed Matter +cond-mat/0404467 Strongly Correlated Electrons +cond-mat/0404468 Strongly Correlated Electrons +cond-mat/0404469 Statistical Mechanics +cond-mat/0404472 Strongly Correlated Electrons +cond-mat/0404473 Superconductivity +cond-mat/0404475 Statistical Mechanics +cond-mat/0404479 Strongly Correlated Electrons +cond-mat/0404480 Other Condensed Matter +cond-mat/0404482 Strongly Correlated Electrons +cond-mat/0404484 Strongly Correlated Electrons +cond-mat/0404485 Strongly Correlated Electrons +cond-mat/0404487 Superconductivity +cond-mat/0404491 Other Condensed Matter +cond-mat/0404493 Statistical Mechanics +cond-mat/0404494 Other Condensed Matter +cond-mat/0404495 Disordered Systems and Neural Networks +cond-mat/0404499 Soft Condensed Matter +cond-mat/0404501 Superconductivity +cond-mat/0404502 Materials Science +cond-mat/0404503 Superconductivity +cond-mat/0404504 Other Condensed Matter +cond-mat/0404505 Materials Science +cond-mat/0404506 Strongly Correlated Electrons +cond-mat/0404516 Statistical Mechanics +cond-mat/0404519 Strongly Correlated Electrons +cond-mat/0404522 Superconductivity +cond-mat/0404524 Statistical Mechanics +cond-mat/0404525 Mesoscale and Nanoscale Physics +cond-mat/0404526 Statistical Mechanics +cond-mat/0404528 Strongly Correlated Electrons +cond-mat/0404530 Disordered Systems and Neural Networks +cond-mat/0404531 Mesoscale and Nanoscale Physics +cond-mat/0404534 Materials Science +cond-mat/0404535 Materials Science +cond-mat/0404536 Superconductivity +cond-mat/0404540 Strongly Correlated Electrons +cond-mat/0404541 Strongly Correlated Electrons +cond-mat/0404542 Superconductivity +cond-mat/0404543 Strongly Correlated Electrons +cond-mat/0404544 Mesoscale and Nanoscale Physics +cond-mat/0404548 Superconductivity +cond-mat/0404549 Mesoscale and Nanoscale Physics +cond-mat/0404551 Strongly Correlated Electrons +cond-mat/0404553 Strongly Correlated Electrons +cond-mat/0404555 Statistical Mechanics +cond-mat/0404556 Strongly Correlated Electrons +cond-mat/0404557 Soft Condensed Matter +cond-mat/0404558 Superconductivity +cond-mat/0404562 Superconductivity +cond-mat/0404563 Materials Science +cond-mat/0404564 Materials Science +cond-mat/0404569 Statistical Mechanics +cond-mat/0404570 Materials Science +cond-mat/0404572 Statistical Mechanics +cond-mat/0404575 Disordered Systems and Neural Networks +cond-mat/0404580 Superconductivity +cond-mat/0404581 Strongly Correlated Electrons +cond-mat/0404583 Statistical Mechanics +cond-mat/0404584 Soft Condensed Matter +cond-mat/0404585 Superconductivity +cond-mat/0404586 Soft Condensed Matter +cond-mat/0404587 Soft Condensed Matter +cond-mat/0404589 Materials Science +cond-mat/0404591 Mesoscale and Nanoscale Physics +cond-mat/0404592 Materials Science +cond-mat/0404594 Disordered Systems and Neural Networks +cond-mat/0404598 Disordered Systems and Neural Networks +cond-mat/0404601 Soft Condensed Matter +cond-mat/0404607 Mesoscale and Nanoscale Physics +cond-mat/0404614 Strongly Correlated Electrons +cond-mat/0404616 Mesoscale and Nanoscale Physics +cond-mat/0404617 Strongly Correlated Electrons +cond-mat/0404618 Strongly Correlated Electrons +cond-mat/0404620 Mesoscale and Nanoscale Physics +cond-mat/0404622 Mesoscale and Nanoscale Physics +cond-mat/0404628 Superconductivity +cond-mat/0404629 Materials Science +cond-mat/0404630 Disordered Systems and Neural Networks +cond-mat/0404631 Materials Science +cond-mat/0404632 Mesoscale and Nanoscale Physics +cond-mat/0404633 Statistical Mechanics +cond-mat/0404635 Materials Science +cond-mat/0404636 Strongly Correlated Electrons +cond-mat/0404638 Superconductivity +cond-mat/0404640 Statistical Mechanics +cond-mat/0404643 Soft Condensed Matter +cond-mat/0404644 Strongly Correlated Electrons +cond-mat/0404649 Disordered Systems and Neural Networks +cond-mat/0404650 Statistical Mechanics +cond-mat/0404651 Statistical Mechanics +cond-mat/0404652 Statistical Mechanics +cond-mat/0404653 Soft Condensed Matter +cond-mat/0404654 Statistical Mechanics +cond-mat/0404656 Superconductivity +cond-mat/0404657 Soft Condensed Matter +cond-mat/0404658 Disordered Systems and Neural Networks +cond-mat/0404662 Soft Condensed Matter +cond-mat/0404663 Materials Science +cond-mat/0404664 Soft Condensed Matter +cond-mat/0404666 Soft Condensed Matter +cond-mat/0404670 Materials Science +cond-mat/0404672 Superconductivity +cond-mat/0404675 Materials Science +cond-mat/0404677 Mesoscale and Nanoscale Physics +cond-mat/0404682 Strongly Correlated Electrons +cond-mat/0404685 Mesoscale and Nanoscale Physics +cond-mat/0404686 Statistical Mechanics +cond-mat/0404688 Strongly Correlated Electrons +cond-mat/0404689 Soft Condensed Matter +cond-mat/0404691 Mesoscale and Nanoscale Physics +cond-mat/0404693 Materials Science +cond-mat/0404695 Strongly Correlated Electrons +cond-mat/0404696 Mesoscale and Nanoscale Physics +cond-mat/0404702 Superconductivity +cond-mat/0404703 Strongly Correlated Electrons +cond-mat/0404705 Superconductivity +cond-mat/0404707 Statistical Mechanics +cond-mat/0404710 Statistical Mechanics +cond-mat/0404711 Strongly Correlated Electrons +cond-mat/0404714 Other Condensed Matter +cond-mat/0404715 Strongly Correlated Electrons +cond-mat/0404719 Soft Condensed Matter +cond-mat/0404722 Strongly Correlated Electrons +cond-mat/0404726 Superconductivity +cond-mat/0404728 Statistical Mechanics +cond-mat/0404730 Strongly Correlated Electrons +cond-mat/0404731 Other Condensed Matter +cond-mat/0404732 Strongly Correlated Electrons +cond-mat/0404733 Soft Condensed Matter +cond-mat/0404737 Disordered Systems and Neural Networks +cond-mat/0404739 Other Condensed Matter +cond-mat/0404744 Mesoscale and Nanoscale Physics +cond-mat/0404745 Statistical Mechanics +cond-mat/0404746 Statistical Mechanics +cond-mat/0404750 Soft Condensed Matter +cond-mat/0405002 Mesoscale and Nanoscale Physics +cond-mat/0405007 Soft Condensed Matter +cond-mat/0405008 Materials Science +cond-mat/0405010 Other Condensed Matter +cond-mat/0405011 Other Condensed Matter +cond-mat/0405013 Other Condensed Matter +cond-mat/0405015 Superconductivity +cond-mat/0405016 Superconductivity +cond-mat/0405017 Statistical Mechanics +cond-mat/0405019 Materials Science +cond-mat/0405024 Mesoscale and Nanoscale Physics +cond-mat/0405025 Strongly Correlated Electrons +cond-mat/0405029 Statistical Mechanics +cond-mat/0405031 Mesoscale and Nanoscale Physics +cond-mat/0405032 Statistical Mechanics +cond-mat/0405035 Statistical Mechanics +cond-mat/0405036 Superconductivity +cond-mat/0405038 Strongly Correlated Electrons +cond-mat/0405039 Mesoscale and Nanoscale Physics +cond-mat/0405041 Superconductivity +cond-mat/0405042 Materials Science +cond-mat/0405043 Strongly Correlated Electrons +cond-mat/0405044 Statistical Mechanics +cond-mat/0405045 Other Condensed Matter +cond-mat/0405046 Other Condensed Matter +cond-mat/0405049 Statistical Mechanics +cond-mat/0405050 Statistical Mechanics +cond-mat/0405052 Superconductivity +cond-mat/0405056 Mesoscale and Nanoscale Physics +cond-mat/0405058 Disordered Systems and Neural Networks +cond-mat/0405059 Materials Science +cond-mat/0405063 Strongly Correlated Electrons +cond-mat/0405064 Soft Condensed Matter +cond-mat/0405067 Materials Science +cond-mat/0405069 Statistical Mechanics +cond-mat/0405070 Statistical Mechanics +cond-mat/0405072 Superconductivity +cond-mat/0405074 Other Condensed Matter +cond-mat/0405077 Materials Science +cond-mat/0405079 Mesoscale and Nanoscale Physics +cond-mat/0405080 Statistical Mechanics +cond-mat/0405082 Strongly Correlated Electrons +cond-mat/0405083 Statistical Mechanics +cond-mat/0405084 Other Condensed Matter +cond-mat/0405085 Strongly Correlated Electrons +cond-mat/0405087 Superconductivity +cond-mat/0405088 Superconductivity +cond-mat/0405089 Disordered Systems and Neural Networks +cond-mat/0405092 Other Condensed Matter +cond-mat/0405094 Soft Condensed Matter +cond-mat/0405095 Statistical Mechanics +cond-mat/0405097 Materials Science +cond-mat/0405098 Strongly Correlated Electrons +cond-mat/0405103 Materials Science +cond-mat/0405104 Statistical Mechanics +cond-mat/0405107 Mesoscale and Nanoscale Physics +cond-mat/0405108 Statistical Mechanics +cond-mat/0405109 Soft Condensed Matter +cond-mat/0405111 Soft Condensed Matter +cond-mat/0405113 Strongly Correlated Electrons +cond-mat/0405114 Statistical Mechanics +cond-mat/0405116 Statistical Mechanics +cond-mat/0405118 Mesoscale and Nanoscale Physics +cond-mat/0405120 Superconductivity +cond-mat/0405126 Soft Condensed Matter +cond-mat/0405128 Materials Science +cond-mat/0405129 Other Condensed Matter +cond-mat/0405130 Strongly Correlated Electrons +cond-mat/0405134 Materials Science +cond-mat/0405136 Mesoscale and Nanoscale Physics +cond-mat/0405137 Superconductivity +cond-mat/0405139 Disordered Systems and Neural Networks +cond-mat/0405141 Strongly Correlated Electrons +cond-mat/0405143 Superconductivity +cond-mat/0405144 Strongly Correlated Electrons +cond-mat/0405146 Soft Condensed Matter +cond-mat/0405149 Soft Condensed Matter +cond-mat/0405150 Other Condensed Matter +cond-mat/0405152 Materials Science +cond-mat/0405154 Disordered Systems and Neural Networks +cond-mat/0405155 Statistical Mechanics +cond-mat/0405156 Mesoscale and Nanoscale Physics +cond-mat/0405158 Strongly Correlated Electrons +cond-mat/0405159 Soft Condensed Matter +cond-mat/0405160 Materials Science +cond-mat/0405165 Soft Condensed Matter +cond-mat/0405166 Strongly Correlated Electrons +cond-mat/0405171 Materials Science +cond-mat/0405176 Mesoscale and Nanoscale Physics +cond-mat/0405179 Superconductivity +cond-mat/0405180 Strongly Correlated Electrons +cond-mat/0405181 Materials Science +cond-mat/0405182 Soft Condensed Matter +cond-mat/0405185 Materials Science +cond-mat/0405186 Mesoscale and Nanoscale Physics +cond-mat/0405187 Mesoscale and Nanoscale Physics +cond-mat/0405188 Statistical Mechanics +cond-mat/0405190 Statistical Mechanics +cond-mat/0405196 Disordered Systems and Neural Networks +cond-mat/0405200 Superconductivity +cond-mat/0405204 Superconductivity +cond-mat/0405210 Soft Condensed Matter +cond-mat/0405211 Superconductivity +cond-mat/0405212 Mesoscale and Nanoscale Physics +cond-mat/0405213 Soft Condensed Matter +cond-mat/0405214 Soft Condensed Matter +cond-mat/0405215 Mesoscale and Nanoscale Physics +cond-mat/0405216 Other Condensed Matter +cond-mat/0405217 Strongly Correlated Electrons +cond-mat/0405218 Strongly Correlated Electrons +cond-mat/0405219 Superconductivity +cond-mat/0405220 Mesoscale and Nanoscale Physics +cond-mat/0405221 Superconductivity +cond-mat/0405222 Soft Condensed Matter +cond-mat/0405225 Soft Condensed Matter +cond-mat/0405226 Mesoscale and Nanoscale Physics +cond-mat/0405227 Mesoscale and Nanoscale Physics +cond-mat/0405229 Soft Condensed Matter +cond-mat/0405231 Mesoscale and Nanoscale Physics +cond-mat/0405237 Mesoscale and Nanoscale Physics +cond-mat/0405240 Soft Condensed Matter +cond-mat/0405242 Statistical Mechanics +cond-mat/0405243 Statistical Mechanics +cond-mat/0405244 Superconductivity +cond-mat/0405245 Statistical Mechanics +cond-mat/0405248 Statistical Mechanics +cond-mat/0405251 Statistical Mechanics +cond-mat/0405252 Statistical Mechanics +cond-mat/0405253 Statistical Mechanics +cond-mat/0405260 Materials Science +cond-mat/0405262 Mesoscale and Nanoscale Physics +cond-mat/0405263 Statistical Mechanics +cond-mat/0405264 Superconductivity +cond-mat/0405265 Statistical Mechanics +cond-mat/0405266 Mesoscale and Nanoscale Physics +cond-mat/0405268 Soft Condensed Matter +cond-mat/0405269 Disordered Systems and Neural Networks +cond-mat/0405270 Mesoscale and Nanoscale Physics +cond-mat/0405271 Strongly Correlated Electrons +cond-mat/0405272 Mesoscale and Nanoscale Physics +cond-mat/0405275 Strongly Correlated Electrons +cond-mat/0405276 Disordered Systems and Neural Networks +cond-mat/0405277 Materials Science +cond-mat/0405278 Other Condensed Matter +cond-mat/0405279 Statistical Mechanics +cond-mat/0405281 Strongly Correlated Electrons +cond-mat/0405283 Materials Science +cond-mat/0405284 Superconductivity +cond-mat/0405285 Mesoscale and Nanoscale Physics +cond-mat/0405286 Superconductivity +cond-mat/0405288 Other Condensed Matter +cond-mat/0405289 Statistical Mechanics +cond-mat/0405291 Superconductivity +cond-mat/0405292 Soft Condensed Matter +cond-mat/0405296 Statistical Mechanics +cond-mat/0405297 Superconductivity +cond-mat/0405299 Strongly Correlated Electrons +cond-mat/0405302 Superconductivity +cond-mat/0405303 Mesoscale and Nanoscale Physics +cond-mat/0405306 Disordered Systems and Neural Networks +cond-mat/0405307 Superconductivity +cond-mat/0405308 Other Condensed Matter +cond-mat/0405309 Statistical Mechanics +cond-mat/0405310 Superconductivity +cond-mat/0405311 Statistical Mechanics +cond-mat/0405314 Statistical Mechanics +cond-mat/0405317 Materials Science +cond-mat/0405318 Mesoscale and Nanoscale Physics +cond-mat/0405321 Statistical Mechanics +cond-mat/0405325 Mesoscale and Nanoscale Physics +cond-mat/0405326 Soft Condensed Matter +cond-mat/0405327 Materials Science +cond-mat/0405328 Statistical Mechanics +cond-mat/0405329 Mesoscale and Nanoscale Physics +cond-mat/0405330 Materials Science +cond-mat/0405332 Materials Science +cond-mat/0405334 Soft Condensed Matter +cond-mat/0405336 Superconductivity +cond-mat/0405337 Strongly Correlated Electrons +cond-mat/0405338 Other Condensed Matter +cond-mat/0405340 Materials Science +cond-mat/0405341 Soft Condensed Matter +cond-mat/0405343 Mesoscale and Nanoscale Physics +cond-mat/0405347 Materials Science +cond-mat/0405350 Mesoscale and Nanoscale Physics +cond-mat/0405352 Mesoscale and Nanoscale Physics +cond-mat/0405353 Strongly Correlated Electrons +cond-mat/0405355 Soft Condensed Matter +cond-mat/0405359 Strongly Correlated Electrons +cond-mat/0405360 Materials Science +cond-mat/0405361 Materials Science +cond-mat/0405365 Superconductivity +cond-mat/0405368 Soft Condensed Matter +cond-mat/0405372 Other Condensed Matter +cond-mat/0405374 Mesoscale and Nanoscale Physics +cond-mat/0405377 Mesoscale and Nanoscale Physics +cond-mat/0405379 Strongly Correlated Electrons +cond-mat/0405381 Statistical Mechanics +cond-mat/0405382 Statistical Mechanics +cond-mat/0405387 Disordered Systems and Neural Networks +cond-mat/0405389 Soft Condensed Matter +cond-mat/0405393 Statistical Mechanics +cond-mat/0405394 Statistical Mechanics +cond-mat/0405395 Statistical Mechanics +cond-mat/0405397 Strongly Correlated Electrons +cond-mat/0405398 Statistical Mechanics +cond-mat/0405399 Statistical Mechanics +cond-mat/0405401 Soft Condensed Matter +cond-mat/0405402 Statistical Mechanics +cond-mat/0405405 Materials Science +cond-mat/0405407 Materials Science +cond-mat/0405410 Strongly Correlated Electrons +cond-mat/0405415 Materials Science +cond-mat/0405416 Superconductivity +cond-mat/0405417 Strongly Correlated Electrons +cond-mat/0405419 Soft Condensed Matter +cond-mat/0405420 Strongly Correlated Electrons +cond-mat/0405421 Statistical Mechanics +cond-mat/0405424 Strongly Correlated Electrons +cond-mat/0405425 Mesoscale and Nanoscale Physics +cond-mat/0405426 Soft Condensed Matter +cond-mat/0405428 Disordered Systems and Neural Networks +cond-mat/0405429 Disordered Systems and Neural Networks +cond-mat/0405430 Superconductivity +cond-mat/0405431 Strongly Correlated Electrons +cond-mat/0405432 Statistical Mechanics +cond-mat/0405433 Materials Science +cond-mat/0405434 Other Condensed Matter +cond-mat/0405435 Soft Condensed Matter +cond-mat/0405437 Statistical Mechanics +cond-mat/0405438 Strongly Correlated Electrons +cond-mat/0405439 Other Condensed Matter +cond-mat/0405441 Mesoscale and Nanoscale Physics +cond-mat/0405442 Strongly Correlated Electrons +cond-mat/0405443 Mesoscale and Nanoscale Physics +cond-mat/0405445 Superconductivity +cond-mat/0405447 Superconductivity +cond-mat/0405448 Materials Science +cond-mat/0405450 Soft Condensed Matter +cond-mat/0405457 Statistical Mechanics +cond-mat/0405459 Statistical Mechanics +cond-mat/0405460 Other Condensed Matter +cond-mat/0405461 Superconductivity +cond-mat/0405462 Soft Condensed Matter +cond-mat/0405465 Mesoscale and Nanoscale Physics +cond-mat/0405466 Statistical Mechanics +cond-mat/0405467 Disordered Systems and Neural Networks +cond-mat/0405470 Disordered Systems and Neural Networks +cond-mat/0405472 Mesoscale and Nanoscale Physics +cond-mat/0405473 Materials Science +cond-mat/0405474 Soft Condensed Matter +cond-mat/0405475 Strongly Correlated Electrons +cond-mat/0405479 Materials Science +cond-mat/0405481 Superconductivity +cond-mat/0405482 Materials Science +cond-mat/0405483 Mesoscale and Nanoscale Physics +cond-mat/0405484 Materials Science +cond-mat/0405485 Statistical Mechanics +cond-mat/0405490 Statistical Mechanics +cond-mat/0405491 Materials Science +cond-mat/0405494 Soft Condensed Matter +cond-mat/0405496 Materials Science +cond-mat/0405503 Strongly Correlated Electrons +cond-mat/0405504 Statistical Mechanics +cond-mat/0405506 Superconductivity +cond-mat/0405507 Mesoscale and Nanoscale Physics +cond-mat/0405509 Strongly Correlated Electrons +cond-mat/0405513 Strongly Correlated Electrons +cond-mat/0405514 Other Condensed Matter +cond-mat/0405522 Strongly Correlated Electrons +cond-mat/0405525 Mesoscale and Nanoscale Physics +cond-mat/0405526 Other Condensed Matter +cond-mat/0405528 Other Condensed Matter +cond-mat/0405529 Mesoscale and Nanoscale Physics +cond-mat/0405530 Other Condensed Matter +cond-mat/0405531 Mesoscale and Nanoscale Physics +cond-mat/0405532 Other Condensed Matter +cond-mat/0405533 Disordered Systems and Neural Networks +cond-mat/0405534 Statistical Mechanics +cond-mat/0405536 Statistical Mechanics +cond-mat/0405538 Mesoscale and Nanoscale Physics +cond-mat/0405545 Mesoscale and Nanoscale Physics +cond-mat/0405546 Strongly Correlated Electrons +cond-mat/0405547 Materials Science +cond-mat/0405548 Strongly Correlated Electrons +cond-mat/0405549 Mesoscale and Nanoscale Physics +cond-mat/0405550 Other Condensed Matter +cond-mat/0405551 Mesoscale and Nanoscale Physics +cond-mat/0405552 Mesoscale and Nanoscale Physics +cond-mat/0405554 Mesoscale and Nanoscale Physics +cond-mat/0405557 Strongly Correlated Electrons +cond-mat/0405558 Materials Science +cond-mat/0405559 Statistical Mechanics +cond-mat/0405560 Statistical Mechanics +cond-mat/0405561 Soft Condensed Matter +cond-mat/0405562 Soft Condensed Matter +cond-mat/0405565 Mesoscale and Nanoscale Physics +cond-mat/0405566 Statistical Mechanics +cond-mat/0405567 Superconductivity +cond-mat/0405570 Strongly Correlated Electrons +cond-mat/0405573 Soft Condensed Matter +cond-mat/0405574 Statistical Mechanics +cond-mat/0405575 Soft Condensed Matter +cond-mat/0405576 Statistical Mechanics +cond-mat/0405580 Soft Condensed Matter +cond-mat/0405582 Strongly Correlated Electrons +cond-mat/0405584 Strongly Correlated Electrons +cond-mat/0405587 Statistical Mechanics +cond-mat/0405588 Materials Science +cond-mat/0405591 Mesoscale and Nanoscale Physics +cond-mat/0405594 Other Condensed Matter +cond-mat/0405596 Strongly Correlated Electrons +cond-mat/0405597 Mesoscale and Nanoscale Physics +cond-mat/0405602 Superconductivity +cond-mat/0405605 Other Condensed Matter +cond-mat/0405607 Superconductivity +cond-mat/0405610 Mesoscale and Nanoscale Physics +cond-mat/0405611 Statistical Mechanics +cond-mat/0405612 Superconductivity +cond-mat/0405613 Mesoscale and Nanoscale Physics +cond-mat/0405614 Other Condensed Matter +cond-mat/0405616 Superconductivity +cond-mat/0405620 Materials Science +cond-mat/0405622 Materials Science +cond-mat/0405624 Mesoscale and Nanoscale Physics +cond-mat/0405626 Mesoscale and Nanoscale Physics +cond-mat/0405627 Materials Science +cond-mat/0405628 Superconductivity +cond-mat/0405629 Materials Science +cond-mat/0405630 Statistical Mechanics +cond-mat/0405631 Superconductivity +cond-mat/0405634 Mesoscale and Nanoscale Physics +cond-mat/0405635 Other Condensed Matter +cond-mat/0405637 Statistical Mechanics +cond-mat/0405638 Strongly Correlated Electrons +cond-mat/0405639 Strongly Correlated Electrons +cond-mat/0405642 Strongly Correlated Electrons +cond-mat/0405643 Superconductivity +cond-mat/0405645 Materials Science +cond-mat/0405647 Statistical Mechanics +cond-mat/0405650 Materials Science +cond-mat/0405651 Materials Science +cond-mat/0405653 Soft Condensed Matter +cond-mat/0405654 Superconductivity +cond-mat/0405655 Soft Condensed Matter +cond-mat/0405657 Materials Science +cond-mat/0405658 Statistical Mechanics +cond-mat/0405661 Superconductivity +cond-mat/0405662 Disordered Systems and Neural Networks +cond-mat/0405663 Superconductivity +cond-mat/0405664 Superconductivity +cond-mat/0405668 Soft Condensed Matter +cond-mat/0405669 Materials Science +cond-mat/0405670 Strongly Correlated Electrons +cond-mat/0405671 Other Condensed Matter +cond-mat/0405672 Superconductivity +cond-mat/0405675 Materials Science +cond-mat/0405678 Materials Science +cond-mat/0405679 Superconductivity +cond-mat/0405680 Strongly Correlated Electrons +cond-mat/0405682 Materials Science +cond-mat/0405683 Strongly Correlated Electrons +cond-mat/0405686 Superconductivity +cond-mat/0405689 Superconductivity +cond-mat/0405693 Strongly Correlated Electrons +cond-mat/0405695 Materials Science +cond-mat/0405698 Superconductivity +cond-mat/0405699 Statistical Mechanics +cond-mat/0405700 Materials Science +cond-mat/0405701 Materials Science +cond-mat/0405702 Strongly Correlated Electrons +cond-mat/0405703 Superconductivity +cond-mat/0405704 Superconductivity +cond-mat/0405705 Strongly Correlated Electrons +cond-mat/0405707 Statistical Mechanics +cond-mat/0405710 Superconductivity +cond-mat/0406001 Mesoscale and Nanoscale Physics +cond-mat/0406002 Superconductivity +cond-mat/0406005 Materials Science +cond-mat/0406007 Superconductivity +cond-mat/0406008 Mesoscale and Nanoscale Physics +cond-mat/0406009 Strongly Correlated Electrons +cond-mat/0406010 Mesoscale and Nanoscale Physics +cond-mat/0406011 Soft Condensed Matter +cond-mat/0406012 Soft Condensed Matter +cond-mat/0406013 Mesoscale and Nanoscale Physics +cond-mat/0406014 Materials Science +cond-mat/0406016 Soft Condensed Matter +cond-mat/0406017 Strongly Correlated Electrons +cond-mat/0406019 Statistical Mechanics +cond-mat/0406021 Strongly Correlated Electrons +cond-mat/0406022 Superconductivity +cond-mat/0406024 Soft Condensed Matter +cond-mat/0406025 Materials Science +cond-mat/0406026 Statistical Mechanics +cond-mat/0406028 Soft Condensed Matter +cond-mat/0406029 Mesoscale and Nanoscale Physics +cond-mat/0406033 Statistical Mechanics +cond-mat/0406034 Statistical Mechanics +cond-mat/0406036 Statistical Mechanics +cond-mat/0406040 Disordered Systems and Neural Networks +cond-mat/0406042 Strongly Correlated Electrons +cond-mat/0406043 Strongly Correlated Electrons +cond-mat/0406044 Materials Science +cond-mat/0406046 Mesoscale and Nanoscale Physics +cond-mat/0406047 Statistical Mechanics +cond-mat/0406050 Statistical Mechanics +cond-mat/0406052 Statistical Mechanics +cond-mat/0406054 Statistical Mechanics +cond-mat/0406061 Statistical Mechanics +cond-mat/0406063 Mesoscale and Nanoscale Physics +cond-mat/0406065 Statistical Mechanics +cond-mat/0406066 Strongly Correlated Electrons +cond-mat/0406067 Mesoscale and Nanoscale Physics +cond-mat/0406069 Materials Science +cond-mat/0406070 Statistical Mechanics +cond-mat/0406071 Materials Science +cond-mat/0406072 Superconductivity +cond-mat/0406074 Strongly Correlated Electrons +cond-mat/0406078 Disordered Systems and Neural Networks +cond-mat/0406080 Statistical Mechanics +cond-mat/0406081 Statistical Mechanics +cond-mat/0406083 Strongly Correlated Electrons +cond-mat/0406084 Strongly Correlated Electrons +cond-mat/0406085 Strongly Correlated Electrons +cond-mat/0406087 Superconductivity +cond-mat/0406092 Materials Science +cond-mat/0406094 Other Condensed Matter +cond-mat/0406096 Mesoscale and Nanoscale Physics +cond-mat/0406098 Disordered Systems and Neural Networks +cond-mat/0406100 Statistical Mechanics +cond-mat/0406104 Superconductivity +cond-mat/0406105 Superconductivity +cond-mat/0406106 Mesoscale and Nanoscale Physics +cond-mat/0406107 Superconductivity +cond-mat/0406108 Disordered Systems and Neural Networks +cond-mat/0406109 Superconductivity +cond-mat/0406112 Mesoscale and Nanoscale Physics +cond-mat/0406113 Soft Condensed Matter +cond-mat/0406114 Materials Science +cond-mat/0406115 Strongly Correlated Electrons +cond-mat/0406117 Strongly Correlated Electrons +cond-mat/0406119 Strongly Correlated Electrons +cond-mat/0406120 Statistical Mechanics +cond-mat/0406121 Strongly Correlated Electrons +cond-mat/0406125 Strongly Correlated Electrons +cond-mat/0406128 Statistical Mechanics +cond-mat/0406129 Soft Condensed Matter +cond-mat/0406131 Disordered Systems and Neural Networks +cond-mat/0406134 Strongly Correlated Electrons +cond-mat/0406137 Disordered Systems and Neural Networks +cond-mat/0406141 Other Condensed Matter +cond-mat/0406142 Superconductivity +cond-mat/0406145 Soft Condensed Matter +cond-mat/0406149 Soft Condensed Matter +cond-mat/0406150 Mesoscale and Nanoscale Physics +cond-mat/0406151 Other Condensed Matter +cond-mat/0406153 Other Condensed Matter +cond-mat/0406154 Statistical Mechanics +cond-mat/0406155 Statistical Mechanics +cond-mat/0406158 Disordered Systems and Neural Networks +cond-mat/0406159 Soft Condensed Matter +cond-mat/0406161 Materials Science +cond-mat/0406162 Strongly Correlated Electrons +cond-mat/0406163 Mesoscale and Nanoscale Physics +cond-mat/0406165 Other Condensed Matter +cond-mat/0406166 Strongly Correlated Electrons +cond-mat/0406167 Mesoscale and Nanoscale Physics +cond-mat/0406168 Other Condensed Matter +cond-mat/0406171 Disordered Systems and Neural Networks +cond-mat/0406172 Mesoscale and Nanoscale Physics +cond-mat/0406175 Soft Condensed Matter +cond-mat/0406176 Mesoscale and Nanoscale Physics +cond-mat/0406177 Disordered Systems and Neural Networks +cond-mat/0406179 Superconductivity +cond-mat/0406180 Superconductivity +cond-mat/0406181 Mesoscale and Nanoscale Physics +cond-mat/0406182 Mesoscale and Nanoscale Physics +cond-mat/0406183 Superconductivity +cond-mat/0406186 Other Condensed Matter +cond-mat/0406187 Soft Condensed Matter +cond-mat/0406188 Mesoscale and Nanoscale Physics +cond-mat/0406193 Other Condensed Matter +cond-mat/0406194 Other Condensed Matter +cond-mat/0406195 Superconductivity +cond-mat/0406199 Mesoscale and Nanoscale Physics +cond-mat/0406202 Soft Condensed Matter +cond-mat/0406205 Statistical Mechanics +cond-mat/0406208 Soft Condensed Matter +cond-mat/0406209 Statistical Mechanics +cond-mat/0406210 Statistical Mechanics +cond-mat/0406211 Materials Science +cond-mat/0406213 Materials Science +cond-mat/0406214 Soft Condensed Matter +cond-mat/0406216 Statistical Mechanics +cond-mat/0406220 Superconductivity +cond-mat/0406221 Mesoscale and Nanoscale Physics +cond-mat/0406223 Statistical Mechanics +cond-mat/0406227 Superconductivity +cond-mat/0406229 Strongly Correlated Electrons +cond-mat/0406230 Materials Science +cond-mat/0406232 Superconductivity +cond-mat/0406233 Statistical Mechanics +cond-mat/0406234 Statistical Mechanics +cond-mat/0406235 Superconductivity +cond-mat/0406237 Soft Condensed Matter +cond-mat/0406238 Statistical Mechanics +cond-mat/0406240 Mesoscale and Nanoscale Physics +cond-mat/0406241 Strongly Correlated Electrons +cond-mat/0406243 Mesoscale and Nanoscale Physics +cond-mat/0406244 Soft Condensed Matter +cond-mat/0406248 Materials Science +cond-mat/0406250 Superconductivity +cond-mat/0406252 Statistical Mechanics +cond-mat/0406254 Statistical Mechanics +cond-mat/0406256 Statistical Mechanics +cond-mat/0406257 Mesoscale and Nanoscale Physics +cond-mat/0406258 Mesoscale and Nanoscale Physics +cond-mat/0406259 Strongly Correlated Electrons +cond-mat/0406260 Strongly Correlated Electrons +cond-mat/0406264 Strongly Correlated Electrons +cond-mat/0406266 Strongly Correlated Electrons +cond-mat/0406267 Strongly Correlated Electrons +cond-mat/0406269 Statistical Mechanics +cond-mat/0406270 Disordered Systems and Neural Networks +cond-mat/0406272 Soft Condensed Matter +cond-mat/0406273 Mesoscale and Nanoscale Physics +cond-mat/0406274 Statistical Mechanics +cond-mat/0406277 Strongly Correlated Electrons +cond-mat/0406282 Materials Science +cond-mat/0406283 Materials Science +cond-mat/0406284 Strongly Correlated Electrons +cond-mat/0406285 Statistical Mechanics +cond-mat/0406290 Mesoscale and Nanoscale Physics +cond-mat/0406292 Strongly Correlated Electrons +cond-mat/0406294 Superconductivity +cond-mat/0406296 Materials Science +cond-mat/0406298 Mesoscale and Nanoscale Physics +cond-mat/0406300 Strongly Correlated Electrons +cond-mat/0406304 Superconductivity +cond-mat/0406306 Strongly Correlated Electrons +cond-mat/0406307 Strongly Correlated Electrons +cond-mat/0406310 Statistical Mechanics +cond-mat/0406312 Strongly Correlated Electrons +cond-mat/0406315 Strongly Correlated Electrons +cond-mat/0406319 Strongly Correlated Electrons +cond-mat/0406321 Soft Condensed Matter +cond-mat/0406322 Disordered Systems and Neural Networks +cond-mat/0406324 Disordered Systems and Neural Networks +cond-mat/0406325 Superconductivity +cond-mat/0406328 Soft Condensed Matter +cond-mat/0406329 Soft Condensed Matter +cond-mat/0406330 Mesoscale and Nanoscale Physics +cond-mat/0406333 Statistical Mechanics +cond-mat/0406338 Mesoscale and Nanoscale Physics +cond-mat/0406340 Superconductivity +cond-mat/0406341 Other Condensed Matter +cond-mat/0406342 Mesoscale and Nanoscale Physics +cond-mat/0406345 Disordered Systems and Neural Networks +cond-mat/0406347 Superconductivity +cond-mat/0406348 Materials Science +cond-mat/0406350 Statistical Mechanics +cond-mat/0406351 Strongly Correlated Electrons +cond-mat/0406352 Mesoscale and Nanoscale Physics +cond-mat/0406354 Disordered Systems and Neural Networks +cond-mat/0406355 Strongly Correlated Electrons +cond-mat/0406358 Statistical Mechanics +cond-mat/0406360 Materials Science +cond-mat/0406361 Mesoscale and Nanoscale Physics +cond-mat/0406363 Statistical Mechanics +cond-mat/0406366 Strongly Correlated Electrons +cond-mat/0406371 Superconductivity +cond-mat/0406374 Mesoscale and Nanoscale Physics +cond-mat/0406375 Materials Science +cond-mat/0406377 Superconductivity +cond-mat/0406382 Materials Science +cond-mat/0406383 Materials Science +cond-mat/0406388 Disordered Systems and Neural Networks +cond-mat/0406389 Other Condensed Matter +cond-mat/0406390 Statistical Mechanics +cond-mat/0406391 Disordered Systems and Neural Networks +cond-mat/0406392 Other Condensed Matter +cond-mat/0406395 Materials Science +cond-mat/0406397 Superconductivity +cond-mat/0406398 Superconductivity +cond-mat/0406399 Strongly Correlated Electrons +cond-mat/0406400 Superconductivity +cond-mat/0406401 Disordered Systems and Neural Networks +cond-mat/0406402 Strongly Correlated Electrons +cond-mat/0406405 Superconductivity +cond-mat/0406406 Disordered Systems and Neural Networks +cond-mat/0406407 Strongly Correlated Electrons +cond-mat/0406408 Disordered Systems and Neural Networks +cond-mat/0406409 Superconductivity +cond-mat/0406410 Mesoscale and Nanoscale Physics +cond-mat/0406411 Soft Condensed Matter +cond-mat/0406415 Superconductivity +cond-mat/0406416 Mesoscale and Nanoscale Physics +cond-mat/0406421 Disordered Systems and Neural Networks +cond-mat/0406434 Other Condensed Matter +cond-mat/0406435 Strongly Correlated Electrons +cond-mat/0406437 Strongly Correlated Electrons +cond-mat/0406438 Statistical Mechanics +cond-mat/0406440 Strongly Correlated Electrons +cond-mat/0406441 Strongly Correlated Electrons +cond-mat/0406442 Strongly Correlated Electrons +cond-mat/0406445 Superconductivity +cond-mat/0406448 Materials Science +cond-mat/0406450 Statistical Mechanics +cond-mat/0406453 Mesoscale and Nanoscale Physics +cond-mat/0406454 Statistical Mechanics +cond-mat/0406456 Strongly Correlated Electrons +cond-mat/0406457 Strongly Correlated Electrons +cond-mat/0406459 Strongly Correlated Electrons +cond-mat/0406461 Superconductivity +cond-mat/0406464 Materials Science +cond-mat/0406465 Soft Condensed Matter +cond-mat/0406466 Disordered Systems and Neural Networks +cond-mat/0406471 Soft Condensed Matter +cond-mat/0406473 Disordered Systems and Neural Networks +cond-mat/0406474 Statistical Mechanics +cond-mat/0406480 Statistical Mechanics +cond-mat/0406482 Soft Condensed Matter +cond-mat/0406483 Mesoscale and Nanoscale Physics +cond-mat/0406484 Materials Science +cond-mat/0406485 Statistical Mechanics +cond-mat/0406488 Materials Science +cond-mat/0406489 Superconductivity +cond-mat/0406492 Superconductivity +cond-mat/0406495 Mesoscale and Nanoscale Physics +cond-mat/0406499 Other Condensed Matter +cond-mat/0406500 Mesoscale and Nanoscale Physics +cond-mat/0406505 Strongly Correlated Electrons +cond-mat/0406506 Materials Science +cond-mat/0406508 Superconductivity +cond-mat/0406511 Strongly Correlated Electrons +cond-mat/0406513 Strongly Correlated Electrons +cond-mat/0406514 Other Condensed Matter +cond-mat/0406518 Mesoscale and Nanoscale Physics +cond-mat/0406524 Statistical Mechanics +cond-mat/0406525 Strongly Correlated Electrons +cond-mat/0406528 Mesoscale and Nanoscale Physics +cond-mat/0406530 Other Condensed Matter +cond-mat/0406532 Mesoscale and Nanoscale Physics +cond-mat/0406533 Mesoscale and Nanoscale Physics +cond-mat/0406534 Strongly Correlated Electrons +cond-mat/0406535 Strongly Correlated Electrons +cond-mat/0406537 Soft Condensed Matter +cond-mat/0406538 Superconductivity +cond-mat/0406539 Superconductivity +cond-mat/0406541 Superconductivity +cond-mat/0406542 Other Condensed Matter +cond-mat/0406543 Disordered Systems and Neural Networks +cond-mat/0406544 Strongly Correlated Electrons +cond-mat/0406545 Soft Condensed Matter +cond-mat/0406546 Disordered Systems and Neural Networks +cond-mat/0406548 Strongly Correlated Electrons +cond-mat/0406550 Materials Science +cond-mat/0406551 Strongly Correlated Electrons +cond-mat/0406552 Statistical Mechanics +cond-mat/0406553 Statistical Mechanics +cond-mat/0406557 Strongly Correlated Electrons +cond-mat/0406560 Strongly Correlated Electrons +cond-mat/0406561 Materials Science +cond-mat/0406563 Mesoscale and Nanoscale Physics +cond-mat/0406566 Strongly Correlated Electrons +cond-mat/0406568 Mesoscale and Nanoscale Physics +cond-mat/0406569 Materials Science +cond-mat/0406570 Strongly Correlated Electrons +cond-mat/0406571 Materials Science +cond-mat/0406574 Materials Science +cond-mat/0406575 Statistical Mechanics +cond-mat/0406578 Soft Condensed Matter +cond-mat/0406582 Materials Science +cond-mat/0406584 Other Condensed Matter +cond-mat/0406587 Mesoscale and Nanoscale Physics +cond-mat/0406588 Materials Science +cond-mat/0406589 Strongly Correlated Electrons +cond-mat/0406591 Statistical Mechanics +cond-mat/0406593 Statistical Mechanics +cond-mat/0406594 Mesoscale and Nanoscale Physics +cond-mat/0406595 Strongly Correlated Electrons +cond-mat/0406596 Statistical Mechanics +cond-mat/0406597 Strongly Correlated Electrons +cond-mat/0406599 Materials Science +cond-mat/0406600 Strongly Correlated Electrons +cond-mat/0406601 Strongly Correlated Electrons +cond-mat/0406603 Soft Condensed Matter +cond-mat/0406605 Materials Science +cond-mat/0406607 Statistical Mechanics +cond-mat/0406609 Materials Science +cond-mat/0406610 Statistical Mechanics +cond-mat/0406611 Statistical Mechanics +cond-mat/0406612 Soft Condensed Matter +cond-mat/0406614 Statistical Mechanics +cond-mat/0406615 Superconductivity +cond-mat/0406617 Statistical Mechanics +cond-mat/0406618 Mesoscale and Nanoscale Physics +cond-mat/0406619 Strongly Correlated Electrons +cond-mat/0406623 Superconductivity +cond-mat/0406624 Superconductivity +cond-mat/0406625 Materials Science +cond-mat/0406626 Mesoscale and Nanoscale Physics +cond-mat/0406630 Other Condensed Matter +cond-mat/0406633 Mesoscale and Nanoscale Physics +cond-mat/0406636 Statistical Mechanics +cond-mat/0406637 Materials Science +cond-mat/0406639 Strongly Correlated Electrons +cond-mat/0406643 Materials Science +cond-mat/0406645 Superconductivity +cond-mat/0406650 Mesoscale and Nanoscale Physics +cond-mat/0406652 Mesoscale and Nanoscale Physics +cond-mat/0406653 Strongly Correlated Electrons +cond-mat/0406655 Mesoscale and Nanoscale Physics +cond-mat/0406657 Other Condensed Matter +cond-mat/0406658 Statistical Mechanics +cond-mat/0406660 Statistical Mechanics +cond-mat/0406662 Superconductivity +cond-mat/0406666 Strongly Correlated Electrons +cond-mat/0406667 Mesoscale and Nanoscale Physics +cond-mat/0406672 Other Condensed Matter +cond-mat/0406673 Other Condensed Matter +cond-mat/0406676 Mesoscale and Nanoscale Physics +cond-mat/0406679 Mesoscale and Nanoscale Physics +cond-mat/0406684 Statistical Mechanics +cond-mat/0406685 Superconductivity +cond-mat/0406686 Other Condensed Matter +cond-mat/0406688 Mesoscale and Nanoscale Physics +cond-mat/0406690 Soft Condensed Matter +cond-mat/0406692 Disordered Systems and Neural Networks +cond-mat/0406697 Strongly Correlated Electrons +cond-mat/0406698 Statistical Mechanics +cond-mat/0406701 Other Condensed Matter +cond-mat/0406704 Other Condensed Matter +cond-mat/0406705 Materials Science +cond-mat/0406709 Mesoscale and Nanoscale Physics +cond-mat/0406710 Superconductivity +cond-mat/0406714 Superconductivity +cond-mat/0406716 Strongly Correlated Electrons +cond-mat/0406717 Strongly Correlated Electrons +cond-mat/0406718 Soft Condensed Matter +cond-mat/0406719 Materials Science +cond-mat/0406721 Disordered Systems and Neural Networks +cond-mat/0406724 Mesoscale and Nanoscale Physics +cond-mat/0406726 Other Condensed Matter +cond-mat/0406728 Statistical Mechanics +cond-mat/0406733 Mesoscale and Nanoscale Physics +cond-mat/0406736 Statistical Mechanics +cond-mat/0406737 Disordered Systems and Neural Networks +cond-mat/0406738 Soft Condensed Matter +cond-mat/0406740 Other Condensed Matter +cond-mat/0406741 Strongly Correlated Electrons +cond-mat/0406743 Superconductivity +cond-mat/0406745 Superconductivity +cond-mat/0406746 Other Condensed Matter +cond-mat/0406747 Mesoscale and Nanoscale Physics +cond-mat/0406753 Mesoscale and Nanoscale Physics +cond-mat/0406758 Strongly Correlated Electrons +cond-mat/0406759 Materials Science +cond-mat/0406760 Statistical Mechanics +cond-mat/0406763 Statistical Mechanics +cond-mat/0406764 Soft Condensed Matter +cond-mat/0406765 Disordered Systems and Neural Networks +cond-mat/0406768 Materials Science +cond-mat/0406769 Disordered Systems and Neural Networks +cond-mat/0406770 Other Condensed Matter +cond-mat/0407001 Strongly Correlated Electrons +cond-mat/0407002 Superconductivity +cond-mat/0407005 Statistical Mechanics +cond-mat/0407006 Materials Science +cond-mat/0407009 Mesoscale and Nanoscale Physics +cond-mat/0407010 Materials Science +cond-mat/0407011 Superconductivity +cond-mat/0407012 Superconductivity +cond-mat/0407013 Soft Condensed Matter +cond-mat/0407014 Statistical Mechanics +cond-mat/0407016 Strongly Correlated Electrons +cond-mat/0407017 Disordered Systems and Neural Networks +cond-mat/0407018 Materials Science +cond-mat/0407019 Disordered Systems and Neural Networks +cond-mat/0407020 Mesoscale and Nanoscale Physics +cond-mat/0407022 Other Condensed Matter +cond-mat/0407023 Mesoscale and Nanoscale Physics +cond-mat/0407025 Superconductivity +cond-mat/0407029 Mesoscale and Nanoscale Physics +cond-mat/0407032 Other Condensed Matter +cond-mat/0407033 Superconductivity +cond-mat/0407034 Other Condensed Matter +cond-mat/0407036 Mesoscale and Nanoscale Physics +cond-mat/0407039 Soft Condensed Matter +cond-mat/0407041 Materials Science +cond-mat/0407042 Materials Science +cond-mat/0407044 Materials Science +cond-mat/0407045 Other Condensed Matter +cond-mat/0407046 Mesoscale and Nanoscale Physics +cond-mat/0407048 Other Condensed Matter +cond-mat/0407049 Mesoscale and Nanoscale Physics +cond-mat/0407050 Mesoscale and Nanoscale Physics +cond-mat/0407052 Superconductivity +cond-mat/0407056 Strongly Correlated Electrons +cond-mat/0407057 Materials Science +cond-mat/0407059 Strongly Correlated Electrons +cond-mat/0407060 Materials Science +cond-mat/0407062 Disordered Systems and Neural Networks +cond-mat/0407067 Mesoscale and Nanoscale Physics +cond-mat/0407068 Mesoscale and Nanoscale Physics +cond-mat/0407069 Strongly Correlated Electrons +cond-mat/0407070 Statistical Mechanics +cond-mat/0407072 Other Condensed Matter +cond-mat/0407073 Mesoscale and Nanoscale Physics +cond-mat/0407075 Other Condensed Matter +cond-mat/0407077 Materials Science +cond-mat/0407079 Statistical Mechanics +cond-mat/0407082 Disordered Systems and Neural Networks +cond-mat/0407084 Statistical Mechanics +cond-mat/0407085 Strongly Correlated Electrons +cond-mat/0407086 Strongly Correlated Electrons +cond-mat/0407092 Other Condensed Matter +cond-mat/0407093 Disordered Systems and Neural Networks +cond-mat/0407095 Other Condensed Matter +cond-mat/0407096 Mesoscale and Nanoscale Physics +cond-mat/0407097 Soft Condensed Matter +cond-mat/0407100 Soft Condensed Matter +cond-mat/0407103 Disordered Systems and Neural Networks +cond-mat/0407104 Statistical Mechanics +cond-mat/0407109 Mesoscale and Nanoscale Physics +cond-mat/0407110 Statistical Mechanics +cond-mat/0407114 Strongly Correlated Electrons +cond-mat/0407115 Other Condensed Matter +cond-mat/0407117 Statistical Mechanics +cond-mat/0407119 Statistical Mechanics +cond-mat/0407121 Mesoscale and Nanoscale Physics +cond-mat/0407125 Strongly Correlated Electrons +cond-mat/0407126 Mesoscale and Nanoscale Physics +cond-mat/0407127 Mesoscale and Nanoscale Physics +cond-mat/0407128 Disordered Systems and Neural Networks +cond-mat/0407129 Disordered Systems and Neural Networks +cond-mat/0407130 Disordered Systems and Neural Networks +cond-mat/0407131 Strongly Correlated Electrons +cond-mat/0407133 Other Condensed Matter +cond-mat/0407135 Mesoscale and Nanoscale Physics +cond-mat/0407140 Strongly Correlated Electrons +cond-mat/0407142 Strongly Correlated Electrons +cond-mat/0407144 Superconductivity +cond-mat/0407146 Superconductivity +cond-mat/0407147 Strongly Correlated Electrons +cond-mat/0407151 Strongly Correlated Electrons +cond-mat/0407155 Strongly Correlated Electrons +cond-mat/0407156 Superconductivity +cond-mat/0407157 Materials Science +cond-mat/0407158 Materials Science +cond-mat/0407159 Superconductivity +cond-mat/0407163 Superconductivity +cond-mat/0407165 Mesoscale and Nanoscale Physics +cond-mat/0407166 Other Condensed Matter +cond-mat/0407167 Statistical Mechanics +cond-mat/0407171 Statistical Mechanics +cond-mat/0407174 Materials Science +cond-mat/0407177 Mesoscale and Nanoscale Physics +cond-mat/0407178 Materials Science +cond-mat/0407179 Strongly Correlated Electrons +cond-mat/0407180 Statistical Mechanics +cond-mat/0407181 Superconductivity +cond-mat/0407182 Other Condensed Matter +cond-mat/0407183 Materials Science +cond-mat/0407185 Mesoscale and Nanoscale Physics +cond-mat/0407188 Strongly Correlated Electrons +cond-mat/0407189 Strongly Correlated Electrons +cond-mat/0407191 Statistical Mechanics +cond-mat/0407192 Superconductivity +cond-mat/0407193 Mesoscale and Nanoscale Physics +cond-mat/0407195 Strongly Correlated Electrons +cond-mat/0407196 Materials Science +cond-mat/0407198 Statistical Mechanics +cond-mat/0407201 Statistical Mechanics +cond-mat/0407203 Strongly Correlated Electrons +cond-mat/0407206 Superconductivity +cond-mat/0407207 Mesoscale and Nanoscale Physics +cond-mat/0407214 Other Condensed Matter +cond-mat/0407216 Strongly Correlated Electrons +cond-mat/0407217 Superconductivity +cond-mat/0407218 Mesoscale and Nanoscale Physics +cond-mat/0407219 Soft Condensed Matter +cond-mat/0407220 Soft Condensed Matter +cond-mat/0407223 Strongly Correlated Electrons +cond-mat/0407224 Statistical Mechanics +cond-mat/0407225 Soft Condensed Matter +cond-mat/0407227 Other Condensed Matter +cond-mat/0407228 Superconductivity +cond-mat/0407229 Other Condensed Matter +cond-mat/0407230 Mesoscale and Nanoscale Physics +cond-mat/0407231 Mesoscale and Nanoscale Physics +cond-mat/0407232 Materials Science +cond-mat/0407235 Strongly Correlated Electrons +cond-mat/0407236 Soft Condensed Matter +cond-mat/0407237 Soft Condensed Matter +cond-mat/0407238 Superconductivity +cond-mat/0407239 Strongly Correlated Electrons +cond-mat/0407242 Strongly Correlated Electrons +cond-mat/0407245 Materials Science +cond-mat/0407248 Strongly Correlated Electrons +cond-mat/0407250 Strongly Correlated Electrons +cond-mat/0407251 Strongly Correlated Electrons +cond-mat/0407253 Statistical Mechanics +cond-mat/0407255 Strongly Correlated Electrons +cond-mat/0407256 Strongly Correlated Electrons +cond-mat/0407257 Strongly Correlated Electrons +cond-mat/0407258 Mesoscale and Nanoscale Physics +cond-mat/0407259 Statistical Mechanics +cond-mat/0407260 Materials Science +cond-mat/0407261 Statistical Mechanics +cond-mat/0407264 Strongly Correlated Electrons +cond-mat/0407265 Superconductivity +cond-mat/0407271 Superconductivity +cond-mat/0407273 Statistical Mechanics +cond-mat/0407276 Statistical Mechanics +cond-mat/0407279 Mesoscale and Nanoscale Physics +cond-mat/0407282 Superconductivity +cond-mat/0407284 Statistical Mechanics +cond-mat/0407285 Materials Science +cond-mat/0407287 Materials Science +cond-mat/0407288 Materials Science +cond-mat/0407289 Disordered Systems and Neural Networks +cond-mat/0407290 Superconductivity +cond-mat/0407292 Mesoscale and Nanoscale Physics +cond-mat/0407293 Materials Science +cond-mat/0407295 Materials Science +cond-mat/0407296 Materials Science +cond-mat/0407297 Statistical Mechanics +cond-mat/0407302 Disordered Systems and Neural Networks +cond-mat/0407305 Disordered Systems and Neural Networks +cond-mat/0407306 Superconductivity +cond-mat/0407309 Superconductivity +cond-mat/0407311 Other Condensed Matter +cond-mat/0407312 Statistical Mechanics +cond-mat/0407315 Superconductivity +cond-mat/0407316 Superconductivity +cond-mat/0407318 Superconductivity +cond-mat/0407319 Superconductivity +cond-mat/0407320 Superconductivity +cond-mat/0407322 Statistical Mechanics +cond-mat/0407324 Statistical Mechanics +cond-mat/0407325 Mesoscale and Nanoscale Physics +cond-mat/0407326 Strongly Correlated Electrons +cond-mat/0407328 Statistical Mechanics +cond-mat/0407330 Superconductivity +cond-mat/0407331 Other Condensed Matter +cond-mat/0407335 Soft Condensed Matter +cond-mat/0407336 Materials Science +cond-mat/0407337 Mesoscale and Nanoscale Physics +cond-mat/0407338 Statistical Mechanics +cond-mat/0407342 Mesoscale and Nanoscale Physics +cond-mat/0407347 Disordered Systems and Neural Networks +cond-mat/0407348 Mesoscale and Nanoscale Physics +cond-mat/0407349 Strongly Correlated Electrons +cond-mat/0407350 Strongly Correlated Electrons +cond-mat/0407352 Statistical Mechanics +cond-mat/0407353 Statistical Mechanics +cond-mat/0407354 Other Condensed Matter +cond-mat/0407355 Materials Science +cond-mat/0407357 Statistical Mechanics +cond-mat/0407359 Strongly Correlated Electrons +cond-mat/0407361 Statistical Mechanics +cond-mat/0407363 Other Condensed Matter +cond-mat/0407364 Mesoscale and Nanoscale Physics +cond-mat/0407366 Materials Science +cond-mat/0407367 Mesoscale and Nanoscale Physics +cond-mat/0407368 Strongly Correlated Electrons +cond-mat/0407371 Materials Science +cond-mat/0407372 Statistical Mechanics +cond-mat/0407374 Disordered Systems and Neural Networks +cond-mat/0407375 Mesoscale and Nanoscale Physics +cond-mat/0407376 Other Condensed Matter +cond-mat/0407377 Disordered Systems and Neural Networks +cond-mat/0407378 Disordered Systems and Neural Networks +cond-mat/0407379 Soft Condensed Matter +cond-mat/0407387 Strongly Correlated Electrons +cond-mat/0407388 Soft Condensed Matter +cond-mat/0407389 Soft Condensed Matter +cond-mat/0407390 Soft Condensed Matter +cond-mat/0407392 Statistical Mechanics +cond-mat/0407395 Statistical Mechanics +cond-mat/0407396 Disordered Systems and Neural Networks +cond-mat/0407399 Mesoscale and Nanoscale Physics +cond-mat/0407400 Soft Condensed Matter +cond-mat/0407403 Superconductivity +cond-mat/0407406 Other Condensed Matter +cond-mat/0407407 Materials Science +cond-mat/0407408 Other Condensed Matter +cond-mat/0407411 Strongly Correlated Electrons +cond-mat/0407412 Strongly Correlated Electrons +cond-mat/0407415 Mesoscale and Nanoscale Physics +cond-mat/0407417 Mesoscale and Nanoscale Physics +cond-mat/0407419 Mesoscale and Nanoscale Physics +cond-mat/0407423 Superconductivity +cond-mat/0407425 Statistical Mechanics +cond-mat/0407427 Mesoscale and Nanoscale Physics +cond-mat/0407428 Materials Science +cond-mat/0407429 Superconductivity +cond-mat/0407431 Superconductivity +cond-mat/0407432 Superconductivity +cond-mat/0407433 Superconductivity +cond-mat/0407434 Statistical Mechanics +cond-mat/0407435 Materials Science +cond-mat/0407437 Strongly Correlated Electrons +cond-mat/0407438 Superconductivity +cond-mat/0407440 Statistical Mechanics +cond-mat/0407441 Other Condensed Matter +cond-mat/0407443 Superconductivity +cond-mat/0407445 Strongly Correlated Electrons +cond-mat/0407446 Materials Science +cond-mat/0407447 Statistical Mechanics +cond-mat/0407448 Mesoscale and Nanoscale Physics +cond-mat/0407449 Mesoscale and Nanoscale Physics +cond-mat/0407450 Superconductivity +cond-mat/0407452 Mesoscale and Nanoscale Physics +cond-mat/0407457 Strongly Correlated Electrons +cond-mat/0407458 Strongly Correlated Electrons +cond-mat/0407459 Disordered Systems and Neural Networks +cond-mat/0407460 Statistical Mechanics +cond-mat/0407464 Superconductivity +cond-mat/0407466 Soft Condensed Matter +cond-mat/0407467 Soft Condensed Matter +cond-mat/0407468 Mesoscale and Nanoscale Physics +cond-mat/0407470 Strongly Correlated Electrons +cond-mat/0407471 Other Condensed Matter +cond-mat/0407473 Strongly Correlated Electrons +cond-mat/0407474 Strongly Correlated Electrons +cond-mat/0407475 Other Condensed Matter +cond-mat/0407477 Statistical Mechanics +cond-mat/0407478 Strongly Correlated Electrons +cond-mat/0407479 Other Condensed Matter +cond-mat/0407480 Soft Condensed Matter +cond-mat/0407482 Soft Condensed Matter +cond-mat/0407487 Superconductivity +cond-mat/0407488 Other Condensed Matter +cond-mat/0407491 Other Condensed Matter +cond-mat/0407492 Materials Science +cond-mat/0407493 Materials Science +cond-mat/0407497 Superconductivity +cond-mat/0407501 Superconductivity +cond-mat/0407502 Materials Science +cond-mat/0407503 Statistical Mechanics +cond-mat/0407504 Materials Science +cond-mat/0407505 Mesoscale and Nanoscale Physics +cond-mat/0407508 Statistical Mechanics +cond-mat/0407509 Statistical Mechanics +cond-mat/0407510 Mesoscale and Nanoscale Physics +cond-mat/0407511 Soft Condensed Matter +cond-mat/0407513 Other Condensed Matter +cond-mat/0407516 Other Condensed Matter +cond-mat/0407518 Strongly Correlated Electrons +cond-mat/0407519 Materials Science +cond-mat/0407520 Mesoscale and Nanoscale Physics +cond-mat/0407521 Soft Condensed Matter +cond-mat/0407524 Strongly Correlated Electrons +cond-mat/0407527 Soft Condensed Matter +cond-mat/0407528 Materials Science +cond-mat/0407529 Mesoscale and Nanoscale Physics +cond-mat/0407531 Statistical Mechanics +cond-mat/0407534 Mesoscale and Nanoscale Physics +cond-mat/0407536 Mesoscale and Nanoscale Physics +cond-mat/0407537 Soft Condensed Matter +cond-mat/0407538 Statistical Mechanics +cond-mat/0407540 Mesoscale and Nanoscale Physics +cond-mat/0407541 Materials Science +cond-mat/0407542 Materials Science +cond-mat/0407543 Strongly Correlated Electrons +cond-mat/0407545 Soft Condensed Matter +cond-mat/0407549 Strongly Correlated Electrons +cond-mat/0407551 Mesoscale and Nanoscale Physics +cond-mat/0407554 Soft Condensed Matter +cond-mat/0407555 Superconductivity +cond-mat/0407556 Superconductivity +cond-mat/0407558 Strongly Correlated Electrons +cond-mat/0407559 Strongly Correlated Electrons +cond-mat/0407560 Materials Science +cond-mat/0407562 Other Condensed Matter +cond-mat/0407563 Superconductivity +cond-mat/0407565 Disordered Systems and Neural Networks +cond-mat/0407566 Disordered Systems and Neural Networks +cond-mat/0407568 Statistical Mechanics +cond-mat/0407569 Materials Science +cond-mat/0407571 Disordered Systems and Neural Networks +cond-mat/0407575 Statistical Mechanics +cond-mat/0407576 Mesoscale and Nanoscale Physics +cond-mat/0407577 Mesoscale and Nanoscale Physics +cond-mat/0407578 Statistical Mechanics +cond-mat/0407580 Strongly Correlated Electrons +cond-mat/0407583 Mesoscale and Nanoscale Physics +cond-mat/0407584 Mesoscale and Nanoscale Physics +cond-mat/0407586 Materials Science +cond-mat/0407587 Strongly Correlated Electrons +cond-mat/0407589 Superconductivity +cond-mat/0407591 Mesoscale and Nanoscale Physics +cond-mat/0407592 Strongly Correlated Electrons +cond-mat/0407594 Mesoscale and Nanoscale Physics +cond-mat/0407596 Soft Condensed Matter +cond-mat/0407601 Strongly Correlated Electrons +cond-mat/0407604 Superconductivity +cond-mat/0407605 Superconductivity +cond-mat/0407606 Strongly Correlated Electrons +cond-mat/0407608 Materials Science +cond-mat/0407609 Materials Science +cond-mat/0407610 Superconductivity +cond-mat/0407613 Materials Science +cond-mat/0407614 Materials Science +cond-mat/0407615 Disordered Systems and Neural Networks +cond-mat/0407619 Soft Condensed Matter +cond-mat/0407621 Soft Condensed Matter +cond-mat/0407623 Disordered Systems and Neural Networks +cond-mat/0407624 Mesoscale and Nanoscale Physics +cond-mat/0407625 Materials Science +cond-mat/0407626 Other Condensed Matter +cond-mat/0407630 Strongly Correlated Electrons +cond-mat/0407631 Soft Condensed Matter +cond-mat/0407632 Other Condensed Matter +cond-mat/0407633 Materials Science +cond-mat/0407634 Other Condensed Matter +cond-mat/0407635 Statistical Mechanics +cond-mat/0407637 Statistical Mechanics +cond-mat/0407638 Mesoscale and Nanoscale Physics +cond-mat/0407639 Mesoscale and Nanoscale Physics +cond-mat/0407641 Mesoscale and Nanoscale Physics +cond-mat/0407642 Superconductivity +cond-mat/0407644 Mesoscale and Nanoscale Physics +cond-mat/0407645 Soft Condensed Matter +cond-mat/0407650 Soft Condensed Matter +cond-mat/0407651 Statistical Mechanics +cond-mat/0407652 Materials Science +cond-mat/0407654 Superconductivity +cond-mat/0407655 Mesoscale and Nanoscale Physics +cond-mat/0407656 Strongly Correlated Electrons +cond-mat/0407657 Statistical Mechanics +cond-mat/0407659 Materials Science +cond-mat/0407660 Superconductivity +cond-mat/0407661 Materials Science +cond-mat/0407663 Superconductivity +cond-mat/0407664 Disordered Systems and Neural Networks +cond-mat/0407665 Statistical Mechanics +cond-mat/0407666 Strongly Correlated Electrons +cond-mat/0407667 Superconductivity +cond-mat/0407668 Superconductivity +cond-mat/0407669 Mesoscale and Nanoscale Physics +cond-mat/0407671 Superconductivity +cond-mat/0407672 Mesoscale and Nanoscale Physics +cond-mat/0407673 Superconductivity +cond-mat/0407674 Materials Science +cond-mat/0407675 Statistical Mechanics +cond-mat/0407676 Strongly Correlated Electrons +cond-mat/0407678 Mesoscale and Nanoscale Physics +cond-mat/0407682 Strongly Correlated Electrons +cond-mat/0407684 Soft Condensed Matter +cond-mat/0407685 Mesoscale and Nanoscale Physics +cond-mat/0407689 Other Condensed Matter +cond-mat/0407690 Other Condensed Matter +cond-mat/0407691 Other Condensed Matter +cond-mat/0407692 Soft Condensed Matter +cond-mat/0407693 Materials Science +cond-mat/0407694 Materials Science +cond-mat/0407695 Superconductivity +cond-mat/0407697 Disordered Systems and Neural Networks +cond-mat/0407698 Soft Condensed Matter +cond-mat/0407700 Strongly Correlated Electrons +cond-mat/0407701 Strongly Correlated Electrons +cond-mat/0407703 Statistical Mechanics +cond-mat/0407704 Materials Science +cond-mat/0407705 Mesoscale and Nanoscale Physics +cond-mat/0407706 Strongly Correlated Electrons +cond-mat/0407707 Materials Science +cond-mat/0407709 Soft Condensed Matter +cond-mat/0407711 Mesoscale and Nanoscale Physics +cond-mat/0407713 Mesoscale and Nanoscale Physics +cond-mat/0407718 Mesoscale and Nanoscale Physics +cond-mat/0407719 Materials Science +cond-mat/0407727 Strongly Correlated Electrons +cond-mat/0407729 Mesoscale and Nanoscale Physics +cond-mat/0407732 Materials Science +cond-mat/0407735 Mesoscale and Nanoscale Physics +cond-mat/0407736 Soft Condensed Matter +cond-mat/0407737 Superconductivity +cond-mat/0407740 Superconductivity +cond-mat/0407741 Statistical Mechanics +cond-mat/0407742 Materials Science +cond-mat/0407750 Materials Science +cond-mat/0407752 Strongly Correlated Electrons +cond-mat/0407754 Statistical Mechanics +cond-mat/0407755 Soft Condensed Matter +cond-mat/0407761 Statistical Mechanics +cond-mat/0407763 Statistical Mechanics +cond-mat/0407764 Strongly Correlated Electrons +cond-mat/0407765 Other Condensed Matter +cond-mat/0407767 Strongly Correlated Electrons +cond-mat/0407768 Statistical Mechanics +cond-mat/0407770 Other Condensed Matter +cond-mat/0407772 Strongly Correlated Electrons +cond-mat/0407773 Other Condensed Matter +cond-mat/0407774 Materials Science +cond-mat/0407775 Materials Science +cond-mat/0407780 Superconductivity +cond-mat/0407781 Statistical Mechanics +cond-mat/0407782 Superconductivity +cond-mat/0407785 Strongly Correlated Electrons +cond-mat/0407786 Strongly Correlated Electrons +cond-mat/0407787 Strongly Correlated Electrons +cond-mat/0407789 Statistical Mechanics +cond-mat/0407791 Disordered Systems and Neural Networks +cond-mat/0407794 Other Condensed Matter +cond-mat/0407796 Materials Science +cond-mat/0407798 Strongly Correlated Electrons +cond-mat/0407803 Other Condensed Matter +cond-mat/0407805 Materials Science +cond-mat/0407806 Disordered Systems and Neural Networks +cond-mat/0407808 Statistical Mechanics +cond-mat/0407809 Other Condensed Matter +cond-mat/0407810 Mesoscale and Nanoscale Physics +cond-mat/0407811 Statistical Mechanics +cond-mat/0407814 Materials Science +cond-mat/0408002 Statistical Mechanics +cond-mat/0408003 Materials Science +cond-mat/0408004 Strongly Correlated Electrons +cond-mat/0408006 Superconductivity +cond-mat/0408008 Statistical Mechanics +cond-mat/0408009 Strongly Correlated Electrons +cond-mat/0408010 Soft Condensed Matter +cond-mat/0408012 Statistical Mechanics +cond-mat/0408014 Statistical Mechanics +cond-mat/0408016 Strongly Correlated Electrons +cond-mat/0408020 Mesoscale and Nanoscale Physics +cond-mat/0408021 Materials Science +cond-mat/0408022 Materials Science +cond-mat/0408026 Superconductivity +cond-mat/0408028 Materials Science +cond-mat/0408031 Materials Science +cond-mat/0408032 Superconductivity +cond-mat/0408033 Statistical Mechanics +cond-mat/0408040 Superconductivity +cond-mat/0408041 Statistical Mechanics +cond-mat/0408043 Soft Condensed Matter +cond-mat/0408045 Superconductivity +cond-mat/0408046 Materials Science +cond-mat/0408047 Other Condensed Matter +cond-mat/0408048 Disordered Systems and Neural Networks +cond-mat/0408049 Statistical Mechanics +cond-mat/0408051 Mesoscale and Nanoscale Physics +cond-mat/0408053 Mesoscale and Nanoscale Physics +cond-mat/0408055 Statistical Mechanics +cond-mat/0408057 Disordered Systems and Neural Networks +cond-mat/0408059 Strongly Correlated Electrons +cond-mat/0408060 Strongly Correlated Electrons +cond-mat/0408061 Statistical Mechanics +cond-mat/0408063 Statistical Mechanics +cond-mat/0408064 Statistical Mechanics +cond-mat/0408066 Mesoscale and Nanoscale Physics +cond-mat/0408068 Materials Science +cond-mat/0408070 Statistical Mechanics +cond-mat/0408071 Superconductivity +cond-mat/0408073 Disordered Systems and Neural Networks +cond-mat/0408075 Mesoscale and Nanoscale Physics +cond-mat/0408078 Statistical Mechanics +cond-mat/0408080 Materials Science +cond-mat/0408082 Disordered Systems and Neural Networks +cond-mat/0408085 Other Condensed Matter +cond-mat/0408088 Disordered Systems and Neural Networks +cond-mat/0408090 Materials Science +cond-mat/0408092 Materials Science +cond-mat/0408093 Statistical Mechanics +cond-mat/0408096 Mesoscale and Nanoscale Physics +cond-mat/0408097 Superconductivity +cond-mat/0408098 Statistical Mechanics +cond-mat/0408099 Statistical Mechanics +cond-mat/0408100 Superconductivity +cond-mat/0408106 Soft Condensed Matter +cond-mat/0408107 Disordered Systems and Neural Networks +cond-mat/0408109 Mesoscale and Nanoscale Physics +cond-mat/0408110 Disordered Systems and Neural Networks +cond-mat/0408113 Other Condensed Matter +cond-mat/0408115 Strongly Correlated Electrons +cond-mat/0408117 Statistical Mechanics +cond-mat/0408118 Mesoscale and Nanoscale Physics +cond-mat/0408119 Mesoscale and Nanoscale Physics +cond-mat/0408120 Mesoscale and Nanoscale Physics +cond-mat/0408121 Strongly Correlated Electrons +cond-mat/0408123 Strongly Correlated Electrons +cond-mat/0408124 Materials Science +cond-mat/0408127 Mesoscale and Nanoscale Physics +cond-mat/0408129 Materials Science +cond-mat/0408131 Materials Science +cond-mat/0408132 Materials Science +cond-mat/0408134 Materials Science +cond-mat/0408137 Mesoscale and Nanoscale Physics +cond-mat/0408140 Materials Science +cond-mat/0408141 Materials Science +cond-mat/0408144 Other Condensed Matter +cond-mat/0408145 Mesoscale and Nanoscale Physics +cond-mat/0408146 Materials Science +cond-mat/0408147 Strongly Correlated Electrons +cond-mat/0408149 Superconductivity +cond-mat/0408150 Strongly Correlated Electrons +cond-mat/0408151 Mesoscale and Nanoscale Physics +cond-mat/0408152 Mesoscale and Nanoscale Physics +cond-mat/0408153 Soft Condensed Matter +cond-mat/0408154 Disordered Systems and Neural Networks +cond-mat/0408156 Soft Condensed Matter +cond-mat/0408157 Strongly Correlated Electrons +cond-mat/0408158 Materials Science +cond-mat/0408159 Mesoscale and Nanoscale Physics +cond-mat/0408160 Mesoscale and Nanoscale Physics +cond-mat/0408161 Disordered Systems and Neural Networks +cond-mat/0408163 Materials Science +cond-mat/0408165 Statistical Mechanics +cond-mat/0408167 Disordered Systems and Neural Networks +cond-mat/0408169 Other Condensed Matter +cond-mat/0408171 Strongly Correlated Electrons +cond-mat/0408172 Strongly Correlated Electrons +cond-mat/0408173 Other Condensed Matter +cond-mat/0408174 Materials Science +cond-mat/0408175 Superconductivity +cond-mat/0408176 Superconductivity +cond-mat/0408177 Materials Science +cond-mat/0408179 Soft Condensed Matter +cond-mat/0408181 Statistical Mechanics +cond-mat/0408185 Materials Science +cond-mat/0408186 Materials Science +cond-mat/0408188 Other Condensed Matter +cond-mat/0408189 Strongly Correlated Electrons +cond-mat/0408191 Strongly Correlated Electrons +cond-mat/0408192 Materials Science +cond-mat/0408193 Mesoscale and Nanoscale Physics +cond-mat/0408194 Materials Science +cond-mat/0408197 Strongly Correlated Electrons +cond-mat/0408199 Strongly Correlated Electrons +cond-mat/0408201 Strongly Correlated Electrons +cond-mat/0408202 Statistical Mechanics +cond-mat/0408203 Superconductivity +cond-mat/0408204 Materials Science +cond-mat/0408209 Disordered Systems and Neural Networks +cond-mat/0408210 Strongly Correlated Electrons +cond-mat/0408211 Superconductivity +cond-mat/0408213 Strongly Correlated Electrons +cond-mat/0408219 Statistical Mechanics +cond-mat/0408222 Materials Science +cond-mat/0408223 Materials Science +cond-mat/0408225 Strongly Correlated Electrons +cond-mat/0408226 Strongly Correlated Electrons +cond-mat/0408228 Materials Science +cond-mat/0408229 Mesoscale and Nanoscale Physics +cond-mat/0408231 Other Condensed Matter +cond-mat/0408232 Strongly Correlated Electrons +cond-mat/0408234 Other Condensed Matter +cond-mat/0408238 Superconductivity +cond-mat/0408240 Mesoscale and Nanoscale Physics +cond-mat/0408244 Superconductivity +cond-mat/0408246 Strongly Correlated Electrons +cond-mat/0408249 Strongly Correlated Electrons +cond-mat/0408250 Strongly Correlated Electrons +cond-mat/0408253 Strongly Correlated Electrons +cond-mat/0408257 Strongly Correlated Electrons +cond-mat/0408258 Mesoscale and Nanoscale Physics +cond-mat/0408259 Statistical Mechanics +cond-mat/0408260 Soft Condensed Matter +cond-mat/0408261 Mesoscale and Nanoscale Physics +cond-mat/0408266 Strongly Correlated Electrons +cond-mat/0408267 Statistical Mechanics +cond-mat/0408269 Other Condensed Matter +cond-mat/0408270 Disordered Systems and Neural Networks +cond-mat/0408273 Superconductivity +cond-mat/0408274 Mesoscale and Nanoscale Physics +cond-mat/0408276 Mesoscale and Nanoscale Physics +cond-mat/0408277 Other Condensed Matter +cond-mat/0408278 Mesoscale and Nanoscale Physics +cond-mat/0408280 Strongly Correlated Electrons +cond-mat/0408282 Soft Condensed Matter +cond-mat/0408285 Disordered Systems and Neural Networks +cond-mat/0408288 Superconductivity +cond-mat/0408290 Statistical Mechanics +cond-mat/0408291 Other Condensed Matter +cond-mat/0408293 Mesoscale and Nanoscale Physics +cond-mat/0408295 Statistical Mechanics +cond-mat/0408302 Strongly Correlated Electrons +cond-mat/0408303 Strongly Correlated Electrons +cond-mat/0408304 Strongly Correlated Electrons +cond-mat/0408305 Strongly Correlated Electrons +cond-mat/0408306 Materials Science +cond-mat/0408308 Strongly Correlated Electrons +cond-mat/0408309 Other Condensed Matter +cond-mat/0408310 Statistical Mechanics +cond-mat/0408311 Superconductivity +cond-mat/0408312 Strongly Correlated Electrons +cond-mat/0408316 Statistical Mechanics +cond-mat/0408318 Materials Science +cond-mat/0408323 Statistical Mechanics +cond-mat/0408326 Mesoscale and Nanoscale Physics +cond-mat/0408333 Superconductivity +cond-mat/0408334 Superconductivity +cond-mat/0408339 Strongly Correlated Electrons +cond-mat/0408345 Superconductivity +cond-mat/0408346 Statistical Mechanics +cond-mat/0408348 Soft Condensed Matter +cond-mat/0408351 Strongly Correlated Electrons +cond-mat/0408352 Statistical Mechanics +cond-mat/0408357 Strongly Correlated Electrons +cond-mat/0408360 Materials Science +cond-mat/0408361 Strongly Correlated Electrons +cond-mat/0408363 Strongly Correlated Electrons +cond-mat/0408365 Strongly Correlated Electrons +cond-mat/0408366 Strongly Correlated Electrons +cond-mat/0408372 Statistical Mechanics +cond-mat/0408373 Strongly Correlated Electrons +cond-mat/0408374 Superconductivity +cond-mat/0408375 Mesoscale and Nanoscale Physics +cond-mat/0408376 Other Condensed Matter +cond-mat/0408379 Strongly Correlated Electrons +cond-mat/0408380 Soft Condensed Matter +cond-mat/0408382 Strongly Correlated Electrons +cond-mat/0408385 Statistical Mechanics +cond-mat/0408388 Materials Science +cond-mat/0408390 Strongly Correlated Electrons +cond-mat/0408394 Materials Science +cond-mat/0408395 Strongly Correlated Electrons +cond-mat/0408396 Other Condensed Matter +cond-mat/0408397 Strongly Correlated Electrons +cond-mat/0408399 Disordered Systems and Neural Networks +cond-mat/0408401 Other Condensed Matter +cond-mat/0408402 Statistical Mechanics +cond-mat/0408403 Materials Science +cond-mat/0408412 Mesoscale and Nanoscale Physics +cond-mat/0408414 Other Condensed Matter +cond-mat/0408417 Mesoscale and Nanoscale Physics +cond-mat/0408422 Strongly Correlated Electrons +cond-mat/0408423 Superconductivity +cond-mat/0408424 Strongly Correlated Electrons +cond-mat/0408426 Superconductivity +cond-mat/0408428 Superconductivity +cond-mat/0408429 Statistical Mechanics +cond-mat/0408431 Disordered Systems and Neural Networks +cond-mat/0408432 Materials Science +cond-mat/0408434 Mesoscale and Nanoscale Physics +cond-mat/0408436 Materials Science +cond-mat/0408442 Other Condensed Matter +cond-mat/0408444 Statistical Mechanics +cond-mat/0408446 Materials Science +cond-mat/0408447 Superconductivity +cond-mat/0408448 Mesoscale and Nanoscale Physics +cond-mat/0408449 Superconductivity +cond-mat/0408455 Statistical Mechanics +cond-mat/0408456 Materials Science +cond-mat/0408458 Materials Science +cond-mat/0408459 Other Condensed Matter +cond-mat/0408460 Other Condensed Matter +cond-mat/0408462 Other Condensed Matter +cond-mat/0408463 Statistical Mechanics +cond-mat/0408464 Other Condensed Matter +cond-mat/0408466 Materials Science +cond-mat/0408467 Strongly Correlated Electrons +cond-mat/0408470 Strongly Correlated Electrons +cond-mat/0408471 Mesoscale and Nanoscale Physics +cond-mat/0408475 Superconductivity +cond-mat/0408476 Other Condensed Matter +cond-mat/0408479 Strongly Correlated Electrons +cond-mat/0408483 Superconductivity +cond-mat/0408484 Disordered Systems and Neural Networks +cond-mat/0408486 Superconductivity +cond-mat/0408488 Other Condensed Matter +cond-mat/0408495 Strongly Correlated Electrons +cond-mat/0408496 Materials Science +cond-mat/0408497 Statistical Mechanics +cond-mat/0408499 Strongly Correlated Electrons +cond-mat/0408500 Other Condensed Matter +cond-mat/0408501 Materials Science +cond-mat/0408503 Statistical Mechanics +cond-mat/0408504 Strongly Correlated Electrons +cond-mat/0408506 Strongly Correlated Electrons +cond-mat/0408507 Statistical Mechanics +cond-mat/0408510 Mesoscale and Nanoscale Physics +cond-mat/0408511 Statistical Mechanics +cond-mat/0408512 Strongly Correlated Electrons +cond-mat/0408514 Other Condensed Matter +cond-mat/0408515 Other Condensed Matter +cond-mat/0408516 Strongly Correlated Electrons +cond-mat/0408517 Superconductivity +cond-mat/0408519 Superconductivity +cond-mat/0408520 Superconductivity +cond-mat/0408521 Strongly Correlated Electrons +cond-mat/0408522 Strongly Correlated Electrons +cond-mat/0408523 Soft Condensed Matter +cond-mat/0408524 Superconductivity +cond-mat/0408525 Superconductivity +cond-mat/0408527 Superconductivity +cond-mat/0408530 Strongly Correlated Electrons +cond-mat/0408531 Other Condensed Matter +cond-mat/0408532 Mesoscale and Nanoscale Physics +cond-mat/0408534 Other Condensed Matter +cond-mat/0408536 Statistical Mechanics +cond-mat/0408537 Statistical Mechanics +cond-mat/0408539 Other Condensed Matter +cond-mat/0408541 Soft Condensed Matter +cond-mat/0408545 Other Condensed Matter +cond-mat/0408546 Materials Science +cond-mat/0408548 Materials Science +cond-mat/0408549 Materials Science +cond-mat/0408550 Statistical Mechanics +cond-mat/0408552 Mesoscale and Nanoscale Physics +cond-mat/0408553 Statistical Mechanics +cond-mat/0408555 Superconductivity +cond-mat/0408559 Materials Science +cond-mat/0408562 Materials Science +cond-mat/0408563 Statistical Mechanics +cond-mat/0408564 Strongly Correlated Electrons +cond-mat/0408565 Strongly Correlated Electrons +cond-mat/0408566 Statistical Mechanics +cond-mat/0408568 Strongly Correlated Electrons +cond-mat/0408569 Other Condensed Matter +cond-mat/0408570 Mesoscale and Nanoscale Physics +cond-mat/0408575 Statistical Mechanics +cond-mat/0408583 Materials Science +cond-mat/0408584 Statistical Mechanics +cond-mat/0408585 Mesoscale and Nanoscale Physics +cond-mat/0408586 Superconductivity +cond-mat/0408587 Superconductivity +cond-mat/0408590 Mesoscale and Nanoscale Physics +cond-mat/0408591 Mesoscale and Nanoscale Physics +cond-mat/0408592 Superconductivity +cond-mat/0408594 Mesoscale and Nanoscale Physics +cond-mat/0408596 Statistical Mechanics +cond-mat/0408601 Soft Condensed Matter +cond-mat/0408602 Mesoscale and Nanoscale Physics +cond-mat/0408603 Superconductivity +cond-mat/0408604 Superconductivity +cond-mat/0408606 Superconductivity +cond-mat/0408608 Materials Science +cond-mat/0408609 Soft Condensed Matter +cond-mat/0408611 Strongly Correlated Electrons +cond-mat/0408612 Soft Condensed Matter +cond-mat/0408614 Statistical Mechanics +cond-mat/0408615 Other Condensed Matter +cond-mat/0408616 Mesoscale and Nanoscale Physics +cond-mat/0408619 Statistical Mechanics +cond-mat/0408621 Mesoscale and Nanoscale Physics +cond-mat/0408623 Other Condensed Matter +cond-mat/0408626 Soft Condensed Matter +cond-mat/0408627 Superconductivity +cond-mat/0408629 Statistical Mechanics +cond-mat/0408630 Superconductivity +cond-mat/0408632 Materials Science +cond-mat/0408636 Superconductivity +cond-mat/0408637 Materials Science +cond-mat/0408639 Mesoscale and Nanoscale Physics +cond-mat/0408640 Statistical Mechanics +cond-mat/0408643 Superconductivity +cond-mat/0408644 Mesoscale and Nanoscale Physics +cond-mat/0408645 Materials Science +cond-mat/0408647 Materials Science +cond-mat/0408648 Statistical Mechanics +cond-mat/0408649 Statistical Mechanics +cond-mat/0408650 Other Condensed Matter +cond-mat/0408651 Materials Science +cond-mat/0408658 Soft Condensed Matter +cond-mat/0408660 Statistical Mechanics +cond-mat/0408661 Mesoscale and Nanoscale Physics +cond-mat/0408664 Materials Science +cond-mat/0408665 Strongly Correlated Electrons +cond-mat/0408666 Mesoscale and Nanoscale Physics +cond-mat/0408667 Mesoscale and Nanoscale Physics +cond-mat/0408670 Strongly Correlated Electrons +cond-mat/0408672 Mesoscale and Nanoscale Physics +cond-mat/0408673 Other Condensed Matter +cond-mat/0408676 Mesoscale and Nanoscale Physics +cond-mat/0408677 Materials Science +cond-mat/0408679 Mesoscale and Nanoscale Physics +cond-mat/0408683 Materials Science +cond-mat/0408684 Strongly Correlated Electrons +cond-mat/0408686 Superconductivity +cond-mat/0408687 Strongly Correlated Electrons +cond-mat/0408688 Superconductivity +cond-mat/0408689 Statistical Mechanics +cond-mat/0408690 Strongly Correlated Electrons +cond-mat/0408691 Mesoscale and Nanoscale Physics +cond-mat/0408694 Statistical Mechanics +cond-mat/0408696 Superconductivity +cond-mat/0408698 Superconductivity +cond-mat/0408701 Materials Science +cond-mat/0408702 Superconductivity +cond-mat/0408705 Disordered Systems and Neural Networks +cond-mat/0408706 Statistical Mechanics +cond-mat/0409001 Soft Condensed Matter +cond-mat/0409003 Soft Condensed Matter +cond-mat/0409004 Superconductivity +cond-mat/0409006 Superconductivity +cond-mat/0409008 Disordered Systems and Neural Networks +cond-mat/0409010 Superconductivity +cond-mat/0409013 Materials Science +cond-mat/0409022 Statistical Mechanics +cond-mat/0409023 Mesoscale and Nanoscale Physics +cond-mat/0409024 Soft Condensed Matter +cond-mat/0409026 Materials Science +cond-mat/0409028 Soft Condensed Matter +cond-mat/0409029 Disordered Systems and Neural Networks +cond-mat/0409030 Other Condensed Matter +cond-mat/0409031 Strongly Correlated Electrons +cond-mat/0409032 Mesoscale and Nanoscale Physics +cond-mat/0409034 Strongly Correlated Electrons +cond-mat/0409035 Statistical Mechanics +cond-mat/0409038 Mesoscale and Nanoscale Physics +cond-mat/0409039 Statistical Mechanics +cond-mat/0409041 Superconductivity +cond-mat/0409042 Statistical Mechanics +cond-mat/0409044 Strongly Correlated Electrons +cond-mat/0409046 Other Condensed Matter +cond-mat/0409049 Other Condensed Matter +cond-mat/0409051 Other Condensed Matter +cond-mat/0409052 Other Condensed Matter +cond-mat/0409054 Mesoscale and Nanoscale Physics +cond-mat/0409057 Mesoscale and Nanoscale Physics +cond-mat/0409058 Materials Science +cond-mat/0409059 Disordered Systems and Neural Networks +cond-mat/0409060 Statistical Mechanics +cond-mat/0409061 Materials Science +cond-mat/0409063 Superconductivity +cond-mat/0409064 Superconductivity +cond-mat/0409066 Materials Science +cond-mat/0409068 Materials Science +cond-mat/0409069 Strongly Correlated Electrons +cond-mat/0409070 Other Condensed Matter +cond-mat/0409071 Strongly Correlated Electrons +cond-mat/0409072 Strongly Correlated Electrons +cond-mat/0409074 Strongly Correlated Electrons +cond-mat/0409079 Statistical Mechanics +cond-mat/0409081 Materials Science +cond-mat/0409082 Materials Science +cond-mat/0409085 Materials Science +cond-mat/0409086 Materials Science +cond-mat/0409089 Materials Science +cond-mat/0409098 Other Condensed Matter +cond-mat/0409101 Superconductivity +cond-mat/0409103 Materials Science +cond-mat/0409104 Strongly Correlated Electrons +cond-mat/0409105 Strongly Correlated Electrons +cond-mat/0409106 Mesoscale and Nanoscale Physics +cond-mat/0409107 Statistical Mechanics +cond-mat/0409108 Materials Science +cond-mat/0409109 Statistical Mechanics +cond-mat/0409111 Materials Science +cond-mat/0409112 Statistical Mechanics +cond-mat/0409113 Soft Condensed Matter +cond-mat/0409114 Soft Condensed Matter +cond-mat/0409123 Other Condensed Matter +cond-mat/0409124 Statistical Mechanics +cond-mat/0409125 Other Condensed Matter +cond-mat/0409126 Other Condensed Matter +cond-mat/0409128 Mesoscale and Nanoscale Physics +cond-mat/0409129 Materials Science +cond-mat/0409130 Mesoscale and Nanoscale Physics +cond-mat/0409139 Materials Science +cond-mat/0409140 Disordered Systems and Neural Networks +cond-mat/0409141 Superconductivity +cond-mat/0409143 Superconductivity +cond-mat/0409145 Other Condensed Matter +cond-mat/0409148 Superconductivity +cond-mat/0409150 Other Condensed Matter +cond-mat/0409152 Materials Science +cond-mat/0409153 Materials Science +cond-mat/0409154 Statistical Mechanics +cond-mat/0409156 Disordered Systems and Neural Networks +cond-mat/0409157 Strongly Correlated Electrons +cond-mat/0409159 Statistical Mechanics +cond-mat/0409161 Mesoscale and Nanoscale Physics +cond-mat/0409162 Strongly Correlated Electrons +cond-mat/0409163 Statistical Mechanics +cond-mat/0409165 Strongly Correlated Electrons +cond-mat/0409166 Mesoscale and Nanoscale Physics +cond-mat/0409169 Superconductivity +cond-mat/0409170 Mesoscale and Nanoscale Physics +cond-mat/0409173 Strongly Correlated Electrons +cond-mat/0409174 Strongly Correlated Electrons +cond-mat/0409175 Statistical Mechanics +cond-mat/0409177 Other Condensed Matter +cond-mat/0409180 Mesoscale and Nanoscale Physics +cond-mat/0409181 Materials Science +cond-mat/0409182 Materials Science +cond-mat/0409184 Superconductivity +cond-mat/0409185 Other Condensed Matter +cond-mat/0409186 Strongly Correlated Electrons +cond-mat/0409187 Strongly Correlated Electrons +cond-mat/0409188 Statistical Mechanics +cond-mat/0409190 Strongly Correlated Electrons +cond-mat/0409193 Statistical Mechanics +cond-mat/0409194 Soft Condensed Matter +cond-mat/0409197 Other Condensed Matter +cond-mat/0409198 Statistical Mechanics +cond-mat/0409200 Soft Condensed Matter +cond-mat/0409202 Strongly Correlated Electrons +cond-mat/0409203 Disordered Systems and Neural Networks +cond-mat/0409205 Other Condensed Matter +cond-mat/0409206 Materials Science +cond-mat/0409207 Materials Science +cond-mat/0409209 Mesoscale and Nanoscale Physics +cond-mat/0409212 Disordered Systems and Neural Networks +cond-mat/0409216 Superconductivity +cond-mat/0409219 Superconductivity +cond-mat/0409220 Materials Science +cond-mat/0409221 Materials Science +cond-mat/0409222 Strongly Correlated Electrons +cond-mat/0409225 Superconductivity +cond-mat/0409226 Superconductivity +cond-mat/0409227 Strongly Correlated Electrons +cond-mat/0409228 Mesoscale and Nanoscale Physics +cond-mat/0409231 Strongly Correlated Electrons +cond-mat/0409232 Superconductivity +cond-mat/0409233 Soft Condensed Matter +cond-mat/0409236 Superconductivity +cond-mat/0409237 Strongly Correlated Electrons +cond-mat/0409241 Other Condensed Matter +cond-mat/0409242 Mesoscale and Nanoscale Physics +cond-mat/0409243 Strongly Correlated Electrons +cond-mat/0409244 Mesoscale and Nanoscale Physics +cond-mat/0409246 Materials Science +cond-mat/0409248 Mesoscale and Nanoscale Physics +cond-mat/0409252 Strongly Correlated Electrons +cond-mat/0409254 Other Condensed Matter +cond-mat/0409255 Statistical Mechanics +cond-mat/0409258 Soft Condensed Matter +cond-mat/0409259 Superconductivity +cond-mat/0409261 Disordered Systems and Neural Networks +cond-mat/0409264 Soft Condensed Matter +cond-mat/0409265 Mesoscale and Nanoscale Physics +cond-mat/0409266 Materials Science +cond-mat/0409267 Statistical Mechanics +cond-mat/0409269 Materials Science +cond-mat/0409270 Materials Science +cond-mat/0409271 Superconductivity +cond-mat/0409278 Strongly Correlated Electrons +cond-mat/0409279 Soft Condensed Matter +cond-mat/0409280 Superconductivity +cond-mat/0409282 Other Condensed Matter +cond-mat/0409284 Superconductivity +cond-mat/0409285 Superconductivity +cond-mat/0409286 Mesoscale and Nanoscale Physics +cond-mat/0409289 Statistical Mechanics +cond-mat/0409290 Statistical Mechanics +cond-mat/0409292 Strongly Correlated Electrons +cond-mat/0409293 Strongly Correlated Electrons +cond-mat/0409295 Other Condensed Matter +cond-mat/0409296 Other Condensed Matter +cond-mat/0409297 Materials Science +cond-mat/0409299 Strongly Correlated Electrons +cond-mat/0409300 Statistical Mechanics +cond-mat/0409301 Statistical Mechanics +cond-mat/0409303 Materials Science +cond-mat/0409304 Superconductivity +cond-mat/0409306 Statistical Mechanics +cond-mat/0409309 Other Condensed Matter +cond-mat/0409313 Other Condensed Matter +cond-mat/0409315 Other Condensed Matter +cond-mat/0409321 Strongly Correlated Electrons +cond-mat/0409322 Strongly Correlated Electrons +cond-mat/0409324 Statistical Mechanics +cond-mat/0409326 Materials Science +cond-mat/0409327 Other Condensed Matter +cond-mat/0409331 Superconductivity +cond-mat/0409332 Strongly Correlated Electrons +cond-mat/0409333 Materials Science +cond-mat/0409334 Mesoscale and Nanoscale Physics +cond-mat/0409335 Superconductivity +cond-mat/0409338 Mesoscale and Nanoscale Physics +cond-mat/0409339 Mesoscale and Nanoscale Physics +cond-mat/0409345 Materials Science +cond-mat/0409346 Mesoscale and Nanoscale Physics +cond-mat/0409347 Strongly Correlated Electrons +cond-mat/0409350 Statistical Mechanics +cond-mat/0409352 Statistical Mechanics +cond-mat/0409353 Materials Science +cond-mat/0409358 Other Condensed Matter +cond-mat/0409359 Superconductivity +cond-mat/0409360 Statistical Mechanics +cond-mat/0409361 Soft Condensed Matter +cond-mat/0409366 Materials Science +cond-mat/0409367 Strongly Correlated Electrons +cond-mat/0409370 Mesoscale and Nanoscale Physics +cond-mat/0409372 Mesoscale and Nanoscale Physics +cond-mat/0409373 Strongly Correlated Electrons +cond-mat/0409374 Materials Science +cond-mat/0409377 Strongly Correlated Electrons +cond-mat/0409380 Soft Condensed Matter +cond-mat/0409381 Statistical Mechanics +cond-mat/0409383 Other Condensed Matter +cond-mat/0409386 Mesoscale and Nanoscale Physics +cond-mat/0409388 Materials Science +cond-mat/0409389 Materials Science +cond-mat/0409390 Strongly Correlated Electrons +cond-mat/0409391 Superconductivity +cond-mat/0409392 Mesoscale and Nanoscale Physics +cond-mat/0409393 Statistical Mechanics +cond-mat/0409398 Superconductivity +cond-mat/0409403 Materials Science +cond-mat/0409405 Disordered Systems and Neural Networks +cond-mat/0409406 Other Condensed Matter +cond-mat/0409408 Superconductivity +cond-mat/0409410 Strongly Correlated Electrons +cond-mat/0409411 Superconductivity +cond-mat/0409418 Soft Condensed Matter +cond-mat/0409419 Materials Science +cond-mat/0409420 Strongly Correlated Electrons +cond-mat/0409421 Strongly Correlated Electrons +cond-mat/0409422 Statistical Mechanics +cond-mat/0409423 Strongly Correlated Electrons +cond-mat/0409424 Statistical Mechanics +cond-mat/0409427 Soft Condensed Matter +cond-mat/0409428 Statistical Mechanics +cond-mat/0409432 Strongly Correlated Electrons +cond-mat/0409434 Other Condensed Matter +cond-mat/0409436 Superconductivity +cond-mat/0409437 Strongly Correlated Electrons +cond-mat/0409438 Soft Condensed Matter +cond-mat/0409442 Materials Science +cond-mat/0409444 Strongly Correlated Electrons +cond-mat/0409448 Statistical Mechanics +cond-mat/0409449 Disordered Systems and Neural Networks +cond-mat/0409450 Statistical Mechanics +cond-mat/0409452 Soft Condensed Matter +cond-mat/0409454 Disordered Systems and Neural Networks +cond-mat/0409455 Statistical Mechanics +cond-mat/0409457 Statistical Mechanics +cond-mat/0409459 Statistical Mechanics +cond-mat/0409463 Strongly Correlated Electrons +cond-mat/0409467 Soft Condensed Matter +cond-mat/0409469 Strongly Correlated Electrons +cond-mat/0409471 Superconductivity +cond-mat/0409472 Statistical Mechanics +cond-mat/0409476 Mesoscale and Nanoscale Physics +cond-mat/0409478 Other Condensed Matter +cond-mat/0409479 Other Condensed Matter +cond-mat/0409481 Superconductivity +cond-mat/0409482 Superconductivity +cond-mat/0409485 Strongly Correlated Electrons +cond-mat/0409486 Disordered Systems and Neural Networks +cond-mat/0409490 Strongly Correlated Electrons +cond-mat/0409491 Superconductivity +cond-mat/0409494 Materials Science +cond-mat/0409495 Strongly Correlated Electrons +cond-mat/0409497 Statistical Mechanics +cond-mat/0409498 Mesoscale and Nanoscale Physics +cond-mat/0409499 Strongly Correlated Electrons +cond-mat/0409500 Other Condensed Matter +cond-mat/0409503 Other Condensed Matter +cond-mat/0409505 Superconductivity +cond-mat/0409506 Superconductivity +cond-mat/0409507 Materials Science +cond-mat/0409509 Materials Science +cond-mat/0409511 Statistical Mechanics +cond-mat/0409512 Materials Science +cond-mat/0409515 Mesoscale and Nanoscale Physics +cond-mat/0409516 Materials Science +cond-mat/0409517 Strongly Correlated Electrons +cond-mat/0409518 Materials Science +cond-mat/0409522 Mesoscale and Nanoscale Physics +cond-mat/0409525 Mesoscale and Nanoscale Physics +cond-mat/0409531 Strongly Correlated Electrons +cond-mat/0409535 Statistical Mechanics +cond-mat/0409537 Statistical Mechanics +cond-mat/0409540 Soft Condensed Matter +cond-mat/0409541 Strongly Correlated Electrons +cond-mat/0409546 Mesoscale and Nanoscale Physics +cond-mat/0409548 Strongly Correlated Electrons +cond-mat/0409551 Mesoscale and Nanoscale Physics +cond-mat/0409552 Other Condensed Matter +cond-mat/0409554 Strongly Correlated Electrons +cond-mat/0409555 Strongly Correlated Electrons +cond-mat/0409556 Superconductivity +cond-mat/0409559 Strongly Correlated Electrons +cond-mat/0409560 Statistical Mechanics +cond-mat/0409561 Soft Condensed Matter +cond-mat/0409564 Superconductivity +cond-mat/0409565 Strongly Correlated Electrons +cond-mat/0409566 Statistical Mechanics +cond-mat/0409567 Strongly Correlated Electrons +cond-mat/0409568 Mesoscale and Nanoscale Physics +cond-mat/0409569 Statistical Mechanics +cond-mat/0409570 Strongly Correlated Electrons +cond-mat/0409572 Statistical Mechanics +cond-mat/0409574 Statistical Mechanics +cond-mat/0409575 Superconductivity +cond-mat/0409577 Disordered Systems and Neural Networks +cond-mat/0409579 Mesoscale and Nanoscale Physics +cond-mat/0409582 Mesoscale and Nanoscale Physics +cond-mat/0409583 Mesoscale and Nanoscale Physics +cond-mat/0409584 Statistical Mechanics +cond-mat/0409586 Strongly Correlated Electrons +cond-mat/0409587 Mesoscale and Nanoscale Physics +cond-mat/0409589 Statistical Mechanics +cond-mat/0409591 Mesoscale and Nanoscale Physics +cond-mat/0409593 Mesoscale and Nanoscale Physics +cond-mat/0409596 Superconductivity +cond-mat/0409597 Statistical Mechanics +cond-mat/0409599 Superconductivity +cond-mat/0409600 Statistical Mechanics +cond-mat/0409604 Statistical Mechanics +cond-mat/0409605 Materials Science +cond-mat/0409609 Other Condensed Matter +cond-mat/0409610 Soft Condensed Matter +cond-mat/0409618 Statistical Mechanics +cond-mat/0409619 Soft Condensed Matter +cond-mat/0409620 Statistical Mechanics +cond-mat/0409623 Soft Condensed Matter +cond-mat/0409624 Superconductivity +cond-mat/0409625 Mesoscale and Nanoscale Physics +cond-mat/0409627 Mesoscale and Nanoscale Physics +cond-mat/0409628 Materials Science +cond-mat/0409629 Mesoscale and Nanoscale Physics +cond-mat/0409630 Mesoscale and Nanoscale Physics +cond-mat/0409632 Mesoscale and Nanoscale Physics +cond-mat/0409633 Superconductivity +cond-mat/0409638 Superconductivity +cond-mat/0409640 Mesoscale and Nanoscale Physics +cond-mat/0409641 Statistical Mechanics +cond-mat/0409642 Disordered Systems and Neural Networks +cond-mat/0409643 Mesoscale and Nanoscale Physics +cond-mat/0409644 Other Condensed Matter +cond-mat/0409646 Statistical Mechanics +cond-mat/0409647 Statistical Mechanics +cond-mat/0409648 Disordered Systems and Neural Networks +cond-mat/0409649 Other Condensed Matter +cond-mat/0409651 Superconductivity +cond-mat/0409652 Statistical Mechanics +cond-mat/0409653 Other Condensed Matter +cond-mat/0409657 Materials Science +cond-mat/0409662 Superconductivity +cond-mat/0409663 Disordered Systems and Neural Networks +cond-mat/0409665 Superconductivity +cond-mat/0409666 Disordered Systems and Neural Networks +cond-mat/0409668 Materials Science +cond-mat/0409670 Statistical Mechanics +cond-mat/0409674 Other Condensed Matter +cond-mat/0409675 Superconductivity +cond-mat/0409677 Mesoscale and Nanoscale Physics +cond-mat/0409679 Statistical Mechanics +cond-mat/0409681 Other Condensed Matter +cond-mat/0409682 Soft Condensed Matter +cond-mat/0409683 Statistical Mechanics +cond-mat/0409684 Statistical Mechanics +cond-mat/0409687 Soft Condensed Matter +cond-mat/0409688 Statistical Mechanics +cond-mat/0409689 Mesoscale and Nanoscale Physics +cond-mat/0409693 Strongly Correlated Electrons +cond-mat/0409694 Strongly Correlated Electrons +cond-mat/0409699 Strongly Correlated Electrons +cond-mat/0409700 Strongly Correlated Electrons +cond-mat/0409708 Mesoscale and Nanoscale Physics +cond-mat/0409709 Soft Condensed Matter +cond-mat/0409711 Strongly Correlated Electrons +cond-mat/0409712 Materials Science +cond-mat/0409714 Mesoscale and Nanoscale Physics +cond-mat/0409715 Statistical Mechanics +cond-mat/0409719 Soft Condensed Matter +cond-mat/0409720 Strongly Correlated Electrons +cond-mat/0409721 Materials Science +cond-mat/0409722 Disordered Systems and Neural Networks +cond-mat/0409723 Mesoscale and Nanoscale Physics +cond-mat/0409724 Statistical Mechanics +cond-mat/0409725 Strongly Correlated Electrons +cond-mat/0409727 Strongly Correlated Electrons +cond-mat/0409731 Soft Condensed Matter +cond-mat/0409732 Materials Science +cond-mat/0409734 Materials Science +cond-mat/0409735 Strongly Correlated Electrons +cond-mat/0409736 Soft Condensed Matter +cond-mat/0409738 Superconductivity +cond-mat/0409739 Mesoscale and Nanoscale Physics +cond-mat/0409741 Other Condensed Matter +cond-mat/0409745 Mesoscale and Nanoscale Physics +cond-mat/0409746 Statistical Mechanics +cond-mat/0409747 Superconductivity +cond-mat/0409748 Strongly Correlated Electrons +cond-mat/0409749 Other Condensed Matter +cond-mat/0409750 Strongly Correlated Electrons +cond-mat/0409751 Other Condensed Matter +cond-mat/0409752 Mesoscale and Nanoscale Physics +cond-mat/0409755 Strongly Correlated Electrons +cond-mat/0409756 Other Condensed Matter +cond-mat/0409759 Mesoscale and Nanoscale Physics +cond-mat/0409761 Statistical Mechanics +cond-mat/0409762 Statistical Mechanics +cond-mat/0409764 Materials Science +cond-mat/0409765 Statistical Mechanics +cond-mat/0409768 Statistical Mechanics +cond-mat/0409769 Materials Science +cond-mat/0409771 Mesoscale and Nanoscale Physics +cond-mat/0409772 Mesoscale and Nanoscale Physics +cond-mat/0409775 Superconductivity +cond-mat/0409779 Superconductivity +cond-mat/0409780 Materials Science +cond-mat/0409781 Materials Science +cond-mat/0409782 Materials Science +cond-mat/0410001 Mesoscale and Nanoscale Physics +cond-mat/0410003 Materials Science +cond-mat/0410004 Materials Science +cond-mat/0410005 Strongly Correlated Electrons +cond-mat/0410011 Statistical Mechanics +cond-mat/0410014 Materials Science +cond-mat/0410016 Other Condensed Matter +cond-mat/0410017 Statistical Mechanics +cond-mat/0410019 Disordered Systems and Neural Networks +cond-mat/0410022 Materials Science +cond-mat/0410023 Strongly Correlated Electrons +cond-mat/0410024 Materials Science +cond-mat/0410027 Disordered Systems and Neural Networks +cond-mat/0410030 Superconductivity +cond-mat/0410031 Statistical Mechanics +cond-mat/0410033 Statistical Mechanics +cond-mat/0410034 Materials Science +cond-mat/0410035 Strongly Correlated Electrons +cond-mat/0410037 Strongly Correlated Electrons +cond-mat/0410038 Statistical Mechanics +cond-mat/0410045 Statistical Mechanics +cond-mat/0410046 Statistical Mechanics +cond-mat/0410049 Other Condensed Matter +cond-mat/0410052 Materials Science +cond-mat/0410055 Soft Condensed Matter +cond-mat/0410056 Other Condensed Matter +cond-mat/0410057 Superconductivity +cond-mat/0410060 Materials Science +cond-mat/0410061 Mesoscale and Nanoscale Physics +cond-mat/0410062 Mesoscale and Nanoscale Physics +cond-mat/0410064 Mesoscale and Nanoscale Physics +cond-mat/0410066 Materials Science +cond-mat/0410067 Disordered Systems and Neural Networks +cond-mat/0410068 Superconductivity +cond-mat/0410072 Superconductivity +cond-mat/0410077 Other Condensed Matter +cond-mat/0410078 Statistical Mechanics +cond-mat/0410080 Statistical Mechanics +cond-mat/0410081 Strongly Correlated Electrons +cond-mat/0410086 Statistical Mechanics +cond-mat/0410088 Materials Science +cond-mat/0410089 Mesoscale and Nanoscale Physics +cond-mat/0410091 Materials Science +cond-mat/0410092 Mesoscale and Nanoscale Physics +cond-mat/0410097 Superconductivity +cond-mat/0410100 Strongly Correlated Electrons +cond-mat/0410101 Other Condensed Matter +cond-mat/0410102 Statistical Mechanics +cond-mat/0410103 Materials Science +cond-mat/0410104 Statistical Mechanics +cond-mat/0410105 Materials Science +cond-mat/0410106 Disordered Systems and Neural Networks +cond-mat/0410107 Statistical Mechanics +cond-mat/0410110 Strongly Correlated Electrons +cond-mat/0410111 Strongly Correlated Electrons +cond-mat/0410113 Statistical Mechanics +cond-mat/0410114 Statistical Mechanics +cond-mat/0410116 Mesoscale and Nanoscale Physics +cond-mat/0410118 Disordered Systems and Neural Networks +cond-mat/0410120 Materials Science +cond-mat/0410121 Other Condensed Matter +cond-mat/0410122 Other Condensed Matter +cond-mat/0410123 Other Condensed Matter +cond-mat/0410127 Strongly Correlated Electrons +cond-mat/0410128 Statistical Mechanics +cond-mat/0410131 Other Condensed Matter +cond-mat/0410135 Superconductivity +cond-mat/0410138 Materials Science +cond-mat/0410139 Superconductivity +cond-mat/0410141 Superconductivity +cond-mat/0410145 Strongly Correlated Electrons +cond-mat/0410148 Other Condensed Matter +cond-mat/0410149 Other Condensed Matter +cond-mat/0410150 Soft Condensed Matter +cond-mat/0410151 Statistical Mechanics +cond-mat/0410152 Soft Condensed Matter +cond-mat/0410153 Soft Condensed Matter +cond-mat/0410160 Other Condensed Matter +cond-mat/0410161 Other Condensed Matter +cond-mat/0410162 Strongly Correlated Electrons +cond-mat/0410163 Strongly Correlated Electrons +cond-mat/0410165 Statistical Mechanics +cond-mat/0410166 Materials Science +cond-mat/0410167 Statistical Mechanics +cond-mat/0410174 Disordered Systems and Neural Networks +cond-mat/0410175 Soft Condensed Matter +cond-mat/0410176 Other Condensed Matter +cond-mat/0410177 Materials Science +cond-mat/0410179 Soft Condensed Matter +cond-mat/0410180 Strongly Correlated Electrons +cond-mat/0410182 Materials Science +cond-mat/0410183 Superconductivity +cond-mat/0410187 Statistical Mechanics +cond-mat/0410188 Other Condensed Matter +cond-mat/0410189 Statistical Mechanics +cond-mat/0410191 Other Condensed Matter +cond-mat/0410193 Strongly Correlated Electrons +cond-mat/0410194 Superconductivity +cond-mat/0410195 Soft Condensed Matter +cond-mat/0410196 Strongly Correlated Electrons +cond-mat/0410197 Soft Condensed Matter +cond-mat/0410198 Mesoscale and Nanoscale Physics +cond-mat/0410200 Other Condensed Matter +cond-mat/0410201 Superconductivity +cond-mat/0410204 Strongly Correlated Electrons +cond-mat/0410205 Strongly Correlated Electrons +cond-mat/0410207 Superconductivity +cond-mat/0410208 Superconductivity +cond-mat/0410209 Strongly Correlated Electrons +cond-mat/0410212 Statistical Mechanics +cond-mat/0410214 Soft Condensed Matter +cond-mat/0410220 Other Condensed Matter +cond-mat/0410221 Mesoscale and Nanoscale Physics +cond-mat/0410224 Strongly Correlated Electrons +cond-mat/0410226 Soft Condensed Matter +cond-mat/0410228 Other Condensed Matter +cond-mat/0410229 Superconductivity +cond-mat/0410233 Mesoscale and Nanoscale Physics +cond-mat/0410234 Other Condensed Matter +cond-mat/0410235 Other Condensed Matter +cond-mat/0410236 Mesoscale and Nanoscale Physics +cond-mat/0410237 Other Condensed Matter +cond-mat/0410241 Statistical Mechanics +cond-mat/0410243 Disordered Systems and Neural Networks +cond-mat/0410244 Statistical Mechanics +cond-mat/0410245 Strongly Correlated Electrons +cond-mat/0410248 Disordered Systems and Neural Networks +cond-mat/0410249 Disordered Systems and Neural Networks +cond-mat/0410250 Superconductivity +cond-mat/0410251 Statistical Mechanics +cond-mat/0410253 Statistical Mechanics +cond-mat/0410254 Statistical Mechanics +cond-mat/0410255 Strongly Correlated Electrons +cond-mat/0410256 Materials Science +cond-mat/0410257 Materials Science +cond-mat/0410258 Other Condensed Matter +cond-mat/0410259 Superconductivity +cond-mat/0410260 Statistical Mechanics +cond-mat/0410264 Superconductivity +cond-mat/0410265 Superconductivity +cond-mat/0410269 Mesoscale and Nanoscale Physics +cond-mat/0410272 Superconductivity +cond-mat/0410273 Strongly Correlated Electrons +cond-mat/0410280 Disordered Systems and Neural Networks +cond-mat/0410288 Mesoscale and Nanoscale Physics +cond-mat/0410290 Superconductivity +cond-mat/0410291 Statistical Mechanics +cond-mat/0410293 Soft Condensed Matter +cond-mat/0410297 Soft Condensed Matter +cond-mat/0410298 Strongly Correlated Electrons +cond-mat/0410299 Disordered Systems and Neural Networks +cond-mat/0410301 Superconductivity +cond-mat/0410302 Superconductivity +cond-mat/0410303 Strongly Correlated Electrons +cond-mat/0410306 Soft Condensed Matter +cond-mat/0410309 Statistical Mechanics +cond-mat/0410310 Materials Science +cond-mat/0410314 Mesoscale and Nanoscale Physics +cond-mat/0410315 Mesoscale and Nanoscale Physics +cond-mat/0410316 Mesoscale and Nanoscale Physics +cond-mat/0410317 Statistical Mechanics +cond-mat/0410318 Other Condensed Matter +cond-mat/0410319 Soft Condensed Matter +cond-mat/0410323 Other Condensed Matter +cond-mat/0410324 Materials Science +cond-mat/0410325 Mesoscale and Nanoscale Physics +cond-mat/0410331 Statistical Mechanics +cond-mat/0410334 Materials Science +cond-mat/0410335 Disordered Systems and Neural Networks +cond-mat/0410336 Materials Science +cond-mat/0410337 Materials Science +cond-mat/0410342 Superconductivity +cond-mat/0410343 Mesoscale and Nanoscale Physics +cond-mat/0410344 Statistical Mechanics +cond-mat/0410345 Other Condensed Matter +cond-mat/0410346 Statistical Mechanics +cond-mat/0410347 Other Condensed Matter +cond-mat/0410348 Materials Science +cond-mat/0410349 Other Condensed Matter +cond-mat/0410351 Mesoscale and Nanoscale Physics +cond-mat/0410354 Soft Condensed Matter +cond-mat/0410355 Statistical Mechanics +cond-mat/0410356 Superconductivity +cond-mat/0410364 Statistical Mechanics +cond-mat/0410365 Materials Science +cond-mat/0410368 Other Condensed Matter +cond-mat/0410369 Statistical Mechanics +cond-mat/0410371 Materials Science +cond-mat/0410372 Mesoscale and Nanoscale Physics +cond-mat/0410374 Soft Condensed Matter +cond-mat/0410375 Materials Science +cond-mat/0410376 Soft Condensed Matter +cond-mat/0410378 Other Condensed Matter +cond-mat/0410379 Statistical Mechanics +cond-mat/0410381 Strongly Correlated Electrons +cond-mat/0410384 Mesoscale and Nanoscale Physics +cond-mat/0410387 Mesoscale and Nanoscale Physics +cond-mat/0410388 Superconductivity +cond-mat/0410389 Superconductivity +cond-mat/0410392 Materials Science +cond-mat/0410393 Mesoscale and Nanoscale Physics +cond-mat/0410395 Statistical Mechanics +cond-mat/0410396 Superconductivity +cond-mat/0410398 Other Condensed Matter +cond-mat/0410399 Superconductivity +cond-mat/0410401 Strongly Correlated Electrons +cond-mat/0410402 Mesoscale and Nanoscale Physics +cond-mat/0410403 Materials Science +cond-mat/0410404 Soft Condensed Matter +cond-mat/0410406 Disordered Systems and Neural Networks +cond-mat/0410410 Strongly Correlated Electrons +cond-mat/0410413 Statistical Mechanics +cond-mat/0410414 Other Condensed Matter +cond-mat/0410415 Mesoscale and Nanoscale Physics +cond-mat/0410416 Statistical Mechanics +cond-mat/0410419 Statistical Mechanics +cond-mat/0410420 Mesoscale and Nanoscale Physics +cond-mat/0410422 Materials Science +cond-mat/0410423 Mesoscale and Nanoscale Physics +cond-mat/0410424 Materials Science +cond-mat/0410425 Materials Science +cond-mat/0410426 Statistical Mechanics +cond-mat/0410429 Statistical Mechanics +cond-mat/0410430 Superconductivity +cond-mat/0410431 Statistical Mechanics +cond-mat/0410432 Statistical Mechanics +cond-mat/0410434 Statistical Mechanics +cond-mat/0410439 Mesoscale and Nanoscale Physics +cond-mat/0410440 Materials Science +cond-mat/0410446 Mesoscale and Nanoscale Physics +cond-mat/0410447 Mesoscale and Nanoscale Physics +cond-mat/0410448 Materials Science +cond-mat/0410449 Statistical Mechanics +cond-mat/0410451 Superconductivity +cond-mat/0410452 Statistical Mechanics +cond-mat/0410455 Materials Science +cond-mat/0410458 Soft Condensed Matter +cond-mat/0410461 Strongly Correlated Electrons +cond-mat/0410463 Superconductivity +cond-mat/0410464 Statistical Mechanics +cond-mat/0410466 Superconductivity +cond-mat/0410468 Strongly Correlated Electrons +cond-mat/0410470 Strongly Correlated Electrons +cond-mat/0410477 Superconductivity +cond-mat/0410478 Superconductivity +cond-mat/0410479 Statistical Mechanics +cond-mat/0410480 Superconductivity +cond-mat/0410482 Other Condensed Matter +cond-mat/0410483 Other Condensed Matter +cond-mat/0410487 Strongly Correlated Electrons +cond-mat/0410489 Materials Science +cond-mat/0410491 Other Condensed Matter +cond-mat/0410492 Disordered Systems and Neural Networks +cond-mat/0410495 Mesoscale and Nanoscale Physics +cond-mat/0410498 Statistical Mechanics +cond-mat/0410502 Superconductivity +cond-mat/0410504 Superconductivity +cond-mat/0410507 Mesoscale and Nanoscale Physics +cond-mat/0410510 Materials Science +cond-mat/0410516 Other Condensed Matter +cond-mat/0410518 Statistical Mechanics +cond-mat/0410519 Statistical Mechanics +cond-mat/0410522 Strongly Correlated Electrons +cond-mat/0410523 Superconductivity +cond-mat/0410524 Materials Science +cond-mat/0410525 Statistical Mechanics +cond-mat/0410526 Statistical Mechanics +cond-mat/0410527 Statistical Mechanics +cond-mat/0410530 Statistical Mechanics +cond-mat/0410532 Strongly Correlated Electrons +cond-mat/0410536 Strongly Correlated Electrons +cond-mat/0410538 Statistical Mechanics +cond-mat/0410542 Materials Science +cond-mat/0410543 Statistical Mechanics +cond-mat/0410544 Materials Science +cond-mat/0410545 Disordered Systems and Neural Networks +cond-mat/0410546 Disordered Systems and Neural Networks +cond-mat/0410547 Superconductivity +cond-mat/0410549 Materials Science +cond-mat/0410551 Materials Science +cond-mat/0410558 Strongly Correlated Electrons +cond-mat/0410559 Superconductivity +cond-mat/0410560 Materials Science +cond-mat/0410561 Mesoscale and Nanoscale Physics +cond-mat/0410564 Materials Science +cond-mat/0410565 Soft Condensed Matter +cond-mat/0410570 Superconductivity +cond-mat/0410574 Statistical Mechanics +cond-mat/0410575 Other Condensed Matter +cond-mat/0410576 Statistical Mechanics +cond-mat/0410577 Statistical Mechanics +cond-mat/0410580 Statistical Mechanics +cond-mat/0410581 Mesoscale and Nanoscale Physics +cond-mat/0410583 Statistical Mechanics +cond-mat/0410584 Materials Science +cond-mat/0410585 Materials Science +cond-mat/0410586 Strongly Correlated Electrons +cond-mat/0410587 Superconductivity +cond-mat/0410588 Mesoscale and Nanoscale Physics +cond-mat/0410589 Materials Science +cond-mat/0410591 Soft Condensed Matter +cond-mat/0410598 Mesoscale and Nanoscale Physics +cond-mat/0410599 Statistical Mechanics +cond-mat/0410601 Superconductivity +cond-mat/0410602 Soft Condensed Matter +cond-mat/0410606 Materials Science +cond-mat/0410607 Mesoscale and Nanoscale Physics +cond-mat/0410608 Materials Science +cond-mat/0410609 Soft Condensed Matter +cond-mat/0410610 Materials Science +cond-mat/0410612 Superconductivity +cond-mat/0410613 Materials Science +cond-mat/0410614 Other Condensed Matter +cond-mat/0410615 Statistical Mechanics +cond-mat/0410619 Statistical Mechanics +cond-mat/0410620 Superconductivity +cond-mat/0410621 Mesoscale and Nanoscale Physics +cond-mat/0410622 Mesoscale and Nanoscale Physics +cond-mat/0410623 Statistical Mechanics +cond-mat/0410624 Superconductivity +cond-mat/0410626 Statistical Mechanics +cond-mat/0410627 Mesoscale and Nanoscale Physics +cond-mat/0410629 Statistical Mechanics +cond-mat/0410634 Materials Science +cond-mat/0410636 Strongly Correlated Electrons +cond-mat/0410637 Mesoscale and Nanoscale Physics +cond-mat/0410638 Superconductivity +cond-mat/0410640 Disordered Systems and Neural Networks +cond-mat/0410642 Soft Condensed Matter +cond-mat/0410645 Superconductivity +cond-mat/0410646 Statistical Mechanics +cond-mat/0410647 Statistical Mechanics +cond-mat/0410651 Other Condensed Matter +cond-mat/0410653 Statistical Mechanics +cond-mat/0410655 Superconductivity +cond-mat/0410657 Strongly Correlated Electrons +cond-mat/0410658 Mesoscale and Nanoscale Physics +cond-mat/0410659 Strongly Correlated Electrons +cond-mat/0410662 Statistical Mechanics +cond-mat/0410663 Mesoscale and Nanoscale Physics +cond-mat/0410665 Other Condensed Matter +cond-mat/0410667 Statistical Mechanics +cond-mat/0410668 Materials Science +cond-mat/0410669 Other Condensed Matter +cond-mat/0410673 Statistical Mechanics +cond-mat/0410675 Strongly Correlated Electrons +cond-mat/0410676 Disordered Systems and Neural Networks +cond-mat/0410677 Other Condensed Matter +cond-mat/0410679 Mesoscale and Nanoscale Physics +cond-mat/0410680 Strongly Correlated Electrons +cond-mat/0410682 Materials Science +cond-mat/0410684 Statistical Mechanics +cond-mat/0410686 Statistical Mechanics +cond-mat/0410690 Statistical Mechanics +cond-mat/0410691 Other Condensed Matter +cond-mat/0410692 Statistical Mechanics +cond-mat/0410696 Soft Condensed Matter +cond-mat/0410697 Disordered Systems and Neural Networks +cond-mat/0410698 Strongly Correlated Electrons +cond-mat/0410699 Statistical Mechanics +cond-mat/0410705 Superconductivity +cond-mat/0410706 Statistical Mechanics +cond-mat/0410708 Statistical Mechanics +cond-mat/0410709 Strongly Correlated Electrons +cond-mat/0410713 Strongly Correlated Electrons +cond-mat/0410714 Mesoscale and Nanoscale Physics +cond-mat/0410715 Superconductivity +cond-mat/0410720 Strongly Correlated Electrons +cond-mat/0410723 Materials Science +cond-mat/0410724 Superconductivity +cond-mat/0410725 Superconductivity +cond-mat/0410727 Soft Condensed Matter +cond-mat/0410728 Strongly Correlated Electrons +cond-mat/0410729 Statistical Mechanics +cond-mat/0410732 Materials Science +cond-mat/0410734 Disordered Systems and Neural Networks +cond-mat/0410739 Strongly Correlated Electrons +cond-mat/0410740 Materials Science +cond-mat/0410741 Statistical Mechanics +cond-mat/0410745 Materials Science +cond-mat/0410748 Materials Science +cond-mat/0410750 Superconductivity +cond-mat/0410756 Mesoscale and Nanoscale Physics +cond-mat/0410757 Strongly Correlated Electrons +cond-mat/0410758 Mesoscale and Nanoscale Physics +cond-mat/0410760 Materials Science +cond-mat/0410763 Superconductivity +cond-mat/0410766 Disordered Systems and Neural Networks +cond-mat/0410772 Statistical Mechanics +cond-mat/0410773 Mesoscale and Nanoscale Physics +cond-mat/0410775 Mesoscale and Nanoscale Physics +cond-mat/0410777 Other Condensed Matter +cond-mat/0410778 Materials Science +cond-mat/0411001 Superconductivity +cond-mat/0411002 Statistical Mechanics +cond-mat/0411004 Other Condensed Matter +cond-mat/0411006 Superconductivity +cond-mat/0411010 Mesoscale and Nanoscale Physics +cond-mat/0411011 Statistical Mechanics +cond-mat/0411013 Strongly Correlated Electrons +cond-mat/0411021 Materials Science +cond-mat/0411023 Strongly Correlated Electrons +cond-mat/0411024 Materials Science +cond-mat/0411025 Statistical Mechanics +cond-mat/0411027 Statistical Mechanics +cond-mat/0411028 Soft Condensed Matter +cond-mat/0411029 Strongly Correlated Electrons +cond-mat/0411032 Statistical Mechanics +cond-mat/0411034 Materials Science +cond-mat/0411043 Superconductivity +cond-mat/0411044 Strongly Correlated Electrons +cond-mat/0411045 Disordered Systems and Neural Networks +cond-mat/0411048 Statistical Mechanics +cond-mat/0411049 Other Condensed Matter +cond-mat/0411051 Superconductivity +cond-mat/0411054 Strongly Correlated Electrons +cond-mat/0411055 Disordered Systems and Neural Networks +cond-mat/0411056 Soft Condensed Matter +cond-mat/0411060 Statistical Mechanics +cond-mat/0411061 Superconductivity +cond-mat/0411063 Statistical Mechanics +cond-mat/0411064 Mesoscale and Nanoscale Physics +cond-mat/0411065 Superconductivity +cond-mat/0411067 Materials Science +cond-mat/0411070 Mesoscale and Nanoscale Physics +cond-mat/0411074 Strongly Correlated Electrons +cond-mat/0411075 Mesoscale and Nanoscale Physics +cond-mat/0411076 Superconductivity +cond-mat/0411078 Soft Condensed Matter +cond-mat/0411079 Disordered Systems and Neural Networks +cond-mat/0411080 Statistical Mechanics +cond-mat/0411081 Strongly Correlated Electrons +cond-mat/0411083 Mesoscale and Nanoscale Physics +cond-mat/0411085 Strongly Correlated Electrons +cond-mat/0411086 Materials Science +cond-mat/0411087 Mesoscale and Nanoscale Physics +cond-mat/0411088 Mesoscale and Nanoscale Physics +cond-mat/0411089 Soft Condensed Matter +cond-mat/0411093 Mesoscale and Nanoscale Physics +cond-mat/0411094 Strongly Correlated Electrons +cond-mat/0411095 Materials Science +cond-mat/0411097 Superconductivity +cond-mat/0411100 Strongly Correlated Electrons +cond-mat/0411102 Disordered Systems and Neural Networks +cond-mat/0411106 Statistical Mechanics +cond-mat/0411109 Strongly Correlated Electrons +cond-mat/0411111 Disordered Systems and Neural Networks +cond-mat/0411112 Other Condensed Matter +cond-mat/0411113 Other Condensed Matter +cond-mat/0411114 Other Condensed Matter +cond-mat/0411116 Superconductivity +cond-mat/0411117 Superconductivity +cond-mat/0411119 Materials Science +cond-mat/0411122 Statistical Mechanics +cond-mat/0411124 Statistical Mechanics +cond-mat/0411125 Statistical Mechanics +cond-mat/0411126 Other Condensed Matter +cond-mat/0411127 Materials Science +cond-mat/0411128 Other Condensed Matter +cond-mat/0411129 Mesoscale and Nanoscale Physics +cond-mat/0411132 Strongly Correlated Electrons +cond-mat/0411133 Statistical Mechanics +cond-mat/0411134 Materials Science +cond-mat/0411137 Superconductivity +cond-mat/0411138 Disordered Systems and Neural Networks +cond-mat/0411140 Other Condensed Matter +cond-mat/0411145 Disordered Systems and Neural Networks +cond-mat/0411149 Superconductivity +cond-mat/0411152 Superconductivity +cond-mat/0411153 Statistical Mechanics +cond-mat/0411156 Superconductivity +cond-mat/0411157 Mesoscale and Nanoscale Physics +cond-mat/0411158 Other Condensed Matter +cond-mat/0411159 Strongly Correlated Electrons +cond-mat/0411160 Disordered Systems and Neural Networks +cond-mat/0411161 Other Condensed Matter +cond-mat/0411162 Disordered Systems and Neural Networks +cond-mat/0411163 Statistical Mechanics +cond-mat/0411164 Strongly Correlated Electrons +cond-mat/0411165 Soft Condensed Matter +cond-mat/0411168 Strongly Correlated Electrons +cond-mat/0411173 Mesoscale and Nanoscale Physics +cond-mat/0411179 Materials Science +cond-mat/0411181 Mesoscale and Nanoscale Physics +cond-mat/0411182 Superconductivity +cond-mat/0411183 Disordered Systems and Neural Networks +cond-mat/0411184 Strongly Correlated Electrons +cond-mat/0411186 Strongly Correlated Electrons +cond-mat/0411190 Mesoscale and Nanoscale Physics +cond-mat/0411191 Disordered Systems and Neural Networks +cond-mat/0411193 Mesoscale and Nanoscale Physics +cond-mat/0411197 Strongly Correlated Electrons +cond-mat/0411198 Mesoscale and Nanoscale Physics +cond-mat/0411199 Superconductivity +cond-mat/0411202 Disordered Systems and Neural Networks +cond-mat/0411203 Superconductivity +cond-mat/0411206 Superconductivity +cond-mat/0411207 Materials Science +cond-mat/0411208 Materials Science +cond-mat/0411209 Statistical Mechanics +cond-mat/0411210 Statistical Mechanics +cond-mat/0411211 Statistical Mechanics +cond-mat/0411213 Strongly Correlated Electrons +cond-mat/0411214 Materials Science +cond-mat/0411216 Mesoscale and Nanoscale Physics +cond-mat/0411218 Materials Science +cond-mat/0411222 Soft Condensed Matter +cond-mat/0411226 Statistical Mechanics +cond-mat/0411227 Disordered Systems and Neural Networks +cond-mat/0411228 Other Condensed Matter +cond-mat/0411229 Disordered Systems and Neural Networks +cond-mat/0411230 Mesoscale and Nanoscale Physics +cond-mat/0411234 Disordered Systems and Neural Networks +cond-mat/0411236 Mesoscale and Nanoscale Physics +cond-mat/0411245 Materials Science +cond-mat/0411248 Disordered Systems and Neural Networks +cond-mat/0411251 Materials Science +cond-mat/0411252 Disordered Systems and Neural Networks +cond-mat/0411260 Statistical Mechanics +cond-mat/0411262 Statistical Mechanics +cond-mat/0411263 Materials Science +cond-mat/0411264 Mesoscale and Nanoscale Physics +cond-mat/0411266 Strongly Correlated Electrons +cond-mat/0411269 Materials Science +cond-mat/0411271 Materials Science +cond-mat/0411274 Statistical Mechanics +cond-mat/0411276 Materials Science +cond-mat/0411278 Soft Condensed Matter +cond-mat/0411280 Mesoscale and Nanoscale Physics +cond-mat/0411281 Other Condensed Matter +cond-mat/0411284 Soft Condensed Matter +cond-mat/0411285 Other Condensed Matter +cond-mat/0411286 Statistical Mechanics +cond-mat/0411287 Soft Condensed Matter +cond-mat/0411289 Materials Science +cond-mat/0411291 Disordered Systems and Neural Networks +cond-mat/0411292 Mesoscale and Nanoscale Physics +cond-mat/0411293 Strongly Correlated Electrons +cond-mat/0411295 Disordered Systems and Neural Networks +cond-mat/0411296 Superconductivity +cond-mat/0411297 Other Condensed Matter +cond-mat/0411298 Superconductivity +cond-mat/0411300 Mesoscale and Nanoscale Physics +cond-mat/0411301 Other Condensed Matter +cond-mat/0411303 Mesoscale and Nanoscale Physics +cond-mat/0411308 Soft Condensed Matter +cond-mat/0411311 Superconductivity +cond-mat/0411312 Materials Science +cond-mat/0411316 Soft Condensed Matter +cond-mat/0411323 Strongly Correlated Electrons +cond-mat/0411325 Mesoscale and Nanoscale Physics +cond-mat/0411330 Disordered Systems and Neural Networks +cond-mat/0411332 Statistical Mechanics +cond-mat/0411335 Statistical Mechanics +cond-mat/0411336 Statistical Mechanics +cond-mat/0411337 Materials Science +cond-mat/0411344 Strongly Correlated Electrons +cond-mat/0411345 Other Condensed Matter +cond-mat/0411346 Superconductivity +cond-mat/0411347 Other Condensed Matter +cond-mat/0411348 Mesoscale and Nanoscale Physics +cond-mat/0411350 Disordered Systems and Neural Networks +cond-mat/0411351 Superconductivity +cond-mat/0411356 Mesoscale and Nanoscale Physics +cond-mat/0411359 Strongly Correlated Electrons +cond-mat/0411360 Strongly Correlated Electrons +cond-mat/0411363 Other Condensed Matter +cond-mat/0411364 Statistical Mechanics +cond-mat/0411365 Statistical Mechanics +cond-mat/0411367 Mesoscale and Nanoscale Physics +cond-mat/0411368 Statistical Mechanics +cond-mat/0411370 Mesoscale and Nanoscale Physics +cond-mat/0411375 Mesoscale and Nanoscale Physics +cond-mat/0411376 Other Condensed Matter +cond-mat/0411377 Statistical Mechanics +cond-mat/0411380 Superconductivity +cond-mat/0411382 Statistical Mechanics +cond-mat/0411383 Superconductivity +cond-mat/0411385 Statistical Mechanics +cond-mat/0411388 Superconductivity +cond-mat/0411389 Disordered Systems and Neural Networks +cond-mat/0411392 Mesoscale and Nanoscale Physics +cond-mat/0411394 Materials Science +cond-mat/0411395 Superconductivity +cond-mat/0411396 Materials Science +cond-mat/0411403 Other Condensed Matter +cond-mat/0411406 Superconductivity +cond-mat/0411407 Mesoscale and Nanoscale Physics +cond-mat/0411408 Statistical Mechanics +cond-mat/0411409 Materials Science +cond-mat/0411410 Superconductivity +cond-mat/0411411 Soft Condensed Matter +cond-mat/0411413 Disordered Systems and Neural Networks +cond-mat/0411414 Mesoscale and Nanoscale Physics +cond-mat/0411415 Mesoscale and Nanoscale Physics +cond-mat/0411416 Mesoscale and Nanoscale Physics +cond-mat/0411418 Strongly Correlated Electrons +cond-mat/0411420 Mesoscale and Nanoscale Physics +cond-mat/0411422 Superconductivity +cond-mat/0411423 Statistical Mechanics +cond-mat/0411424 Statistical Mechanics +cond-mat/0411425 Mesoscale and Nanoscale Physics +cond-mat/0411428 Materials Science +cond-mat/0411429 Mesoscale and Nanoscale Physics +cond-mat/0411432 Superconductivity +cond-mat/0411433 Disordered Systems and Neural Networks +cond-mat/0411434 Disordered Systems and Neural Networks +cond-mat/0411435 Statistical Mechanics +cond-mat/0411436 Materials Science +cond-mat/0411437 Strongly Correlated Electrons +cond-mat/0411439 Superconductivity +cond-mat/0411441 Mesoscale and Nanoscale Physics +cond-mat/0411442 Other Condensed Matter +cond-mat/0411444 Mesoscale and Nanoscale Physics +cond-mat/0411445 Superconductivity +cond-mat/0411446 Materials Science +cond-mat/0411450 Statistical Mechanics +cond-mat/0411453 Statistical Mechanics +cond-mat/0411454 Disordered Systems and Neural Networks +cond-mat/0411457 Other Condensed Matter +cond-mat/0411458 Materials Science +cond-mat/0411459 Soft Condensed Matter +cond-mat/0411461 Materials Science +cond-mat/0411462 Mesoscale and Nanoscale Physics +cond-mat/0411465 Mesoscale and Nanoscale Physics +cond-mat/0411467 Materials Science +cond-mat/0411468 Mesoscale and Nanoscale Physics +cond-mat/0411469 Mesoscale and Nanoscale Physics +cond-mat/0411471 Materials Science +cond-mat/0411474 Materials Science +cond-mat/0411475 Strongly Correlated Electrons +cond-mat/0411478 Mesoscale and Nanoscale Physics +cond-mat/0411481 Soft Condensed Matter +cond-mat/0411482 Materials Science +cond-mat/0411483 Mesoscale and Nanoscale Physics +cond-mat/0411484 Other Condensed Matter +cond-mat/0411485 Mesoscale and Nanoscale Physics +cond-mat/0411487 Statistical Mechanics +cond-mat/0411488 Materials Science +cond-mat/0411490 Soft Condensed Matter +cond-mat/0411495 Soft Condensed Matter +cond-mat/0411496 Superconductivity +cond-mat/0411497 Statistical Mechanics +cond-mat/0411498 Soft Condensed Matter +cond-mat/0411500 Superconductivity +cond-mat/0411501 Mesoscale and Nanoscale Physics +cond-mat/0411502 Materials Science +cond-mat/0411504 Statistical Mechanics +cond-mat/0411505 Statistical Mechanics +cond-mat/0411511 Other Condensed Matter +cond-mat/0411513 Mesoscale and Nanoscale Physics +cond-mat/0411515 Superconductivity +cond-mat/0411518 Mesoscale and Nanoscale Physics +cond-mat/0411519 Strongly Correlated Electrons +cond-mat/0411520 Mesoscale and Nanoscale Physics +cond-mat/0411522 Soft Condensed Matter +cond-mat/0411525 Statistical Mechanics +cond-mat/0411531 Superconductivity +cond-mat/0411532 Strongly Correlated Electrons +cond-mat/0411535 Materials Science +cond-mat/0411537 Other Condensed Matter +cond-mat/0411540 Superconductivity +cond-mat/0411544 Mesoscale and Nanoscale Physics +cond-mat/0411546 Mesoscale and Nanoscale Physics +cond-mat/0411547 Superconductivity +cond-mat/0411550 Statistical Mechanics +cond-mat/0411554 Statistical Mechanics +cond-mat/0411560 Superconductivity +cond-mat/0411562 Mesoscale and Nanoscale Physics +cond-mat/0411567 Statistical Mechanics +cond-mat/0411568 Materials Science +cond-mat/0411569 Materials Science +cond-mat/0411571 Materials Science +cond-mat/0411575 Superconductivity +cond-mat/0411576 Mesoscale and Nanoscale Physics +cond-mat/0411577 Materials Science +cond-mat/0411578 Statistical Mechanics +cond-mat/0411580 Other Condensed Matter +cond-mat/0411582 Superconductivity +cond-mat/0411583 Strongly Correlated Electrons +cond-mat/0411584 Soft Condensed Matter +cond-mat/0411585 Other Condensed Matter +cond-mat/0411588 Strongly Correlated Electrons +cond-mat/0411589 Mesoscale and Nanoscale Physics +cond-mat/0411590 Materials Science +cond-mat/0411591 Strongly Correlated Electrons +cond-mat/0411595 Mesoscale and Nanoscale Physics +cond-mat/0411596 Mesoscale and Nanoscale Physics +cond-mat/0411598 Strongly Correlated Electrons +cond-mat/0411599 Strongly Correlated Electrons +cond-mat/0411604 Statistical Mechanics +cond-mat/0411605 Mesoscale and Nanoscale Physics +cond-mat/0411606 Mesoscale and Nanoscale Physics +cond-mat/0411608 Strongly Correlated Electrons +cond-mat/0411609 Mesoscale and Nanoscale Physics +cond-mat/0411610 Statistical Mechanics +cond-mat/0411611 Statistical Mechanics +cond-mat/0411612 Mesoscale and Nanoscale Physics +cond-mat/0411613 Statistical Mechanics +cond-mat/0411614 Strongly Correlated Electrons +cond-mat/0411615 Materials Science +cond-mat/0411616 Superconductivity +cond-mat/0411618 Materials Science +cond-mat/0411619 Materials Science +cond-mat/0411622 Mesoscale and Nanoscale Physics +cond-mat/0411624 Statistical Mechanics +cond-mat/0411631 Strongly Correlated Electrons +cond-mat/0411632 Soft Condensed Matter +cond-mat/0411633 Mesoscale and Nanoscale Physics +cond-mat/0411635 Mesoscale and Nanoscale Physics +cond-mat/0411636 Materials Science +cond-mat/0411639 Materials Science +cond-mat/0411641 Other Condensed Matter +cond-mat/0411643 Soft Condensed Matter +cond-mat/0411645 Statistical Mechanics +cond-mat/0411646 Materials Science +cond-mat/0411648 Statistical Mechanics +cond-mat/0411657 Statistical Mechanics +cond-mat/0411658 Strongly Correlated Electrons +cond-mat/0411661 Mesoscale and Nanoscale Physics +cond-mat/0411663 Other Condensed Matter +cond-mat/0411665 Mesoscale and Nanoscale Physics +cond-mat/0411666 Statistical Mechanics +cond-mat/0411670 Strongly Correlated Electrons +cond-mat/0411672 Mesoscale and Nanoscale Physics +cond-mat/0411674 Superconductivity +cond-mat/0411676 Strongly Correlated Electrons +cond-mat/0411677 Disordered Systems and Neural Networks +cond-mat/0411679 Mesoscale and Nanoscale Physics +cond-mat/0411680 Materials Science +cond-mat/0411682 Disordered Systems and Neural Networks +cond-mat/0411686 Other Condensed Matter +cond-mat/0411687 Statistical Mechanics +cond-mat/0411691 Mesoscale and Nanoscale Physics +cond-mat/0411692 Mesoscale and Nanoscale Physics +cond-mat/0411694 Superconductivity +cond-mat/0411695 Other Condensed Matter +cond-mat/0411697 Mesoscale and Nanoscale Physics +cond-mat/0411700 Strongly Correlated Electrons +cond-mat/0411702 Other Condensed Matter +cond-mat/0411710 Materials Science +cond-mat/0411711 Superconductivity +cond-mat/0411712 Other Condensed Matter +cond-mat/0411714 Strongly Correlated Electrons +cond-mat/0411715 Superconductivity +cond-mat/0411717 Mesoscale and Nanoscale Physics +cond-mat/0411718 Other Condensed Matter +cond-mat/0411719 Superconductivity +cond-mat/0411723 Soft Condensed Matter +cond-mat/0411727 Disordered Systems and Neural Networks +cond-mat/0411728 Mesoscale and Nanoscale Physics +cond-mat/0411729 Other Condensed Matter +cond-mat/0411730 Mesoscale and Nanoscale Physics +cond-mat/0411731 Soft Condensed Matter +cond-mat/0411733 Mesoscale and Nanoscale Physics +cond-mat/0411734 Soft Condensed Matter +cond-mat/0411736 Statistical Mechanics +cond-mat/0411737 Mesoscale and Nanoscale Physics +cond-mat/0411738 Strongly Correlated Electrons +cond-mat/0411739 Disordered Systems and Neural Networks +cond-mat/0411745 Strongly Correlated Electrons +cond-mat/0411747 Materials Science +cond-mat/0411749 Superconductivity +cond-mat/0411750 Other Condensed Matter +cond-mat/0411756 Statistical Mechanics +cond-mat/0411759 Soft Condensed Matter +cond-mat/0412001 Strongly Correlated Electrons +cond-mat/0412002 Materials Science +cond-mat/0412003 Mesoscale and Nanoscale Physics +cond-mat/0412006 Materials Science +cond-mat/0412007 Disordered Systems and Neural Networks +cond-mat/0412008 Statistical Mechanics +cond-mat/0412012 Mesoscale and Nanoscale Physics +cond-mat/0412013 Other Condensed Matter +cond-mat/0412016 Statistical Mechanics +cond-mat/0412017 Materials Science +cond-mat/0412019 Strongly Correlated Electrons +cond-mat/0412021 Mesoscale and Nanoscale Physics +cond-mat/0412023 Statistical Mechanics +cond-mat/0412024 Statistical Mechanics +cond-mat/0412026 Strongly Correlated Electrons +cond-mat/0412027 Mesoscale and Nanoscale Physics +cond-mat/0412029 Soft Condensed Matter +cond-mat/0412031 Superconductivity +cond-mat/0412036 Strongly Correlated Electrons +cond-mat/0412037 Statistical Mechanics +cond-mat/0412040 Disordered Systems and Neural Networks +cond-mat/0412042 Superconductivity +cond-mat/0412043 Disordered Systems and Neural Networks +cond-mat/0412046 Statistical Mechanics +cond-mat/0412049 Other Condensed Matter +cond-mat/0412050 Superconductivity +cond-mat/0412052 Mesoscale and Nanoscale Physics +cond-mat/0412058 Disordered Systems and Neural Networks +cond-mat/0412059 Disordered Systems and Neural Networks +cond-mat/0412061 Other Condensed Matter +cond-mat/0412062 Statistical Mechanics +cond-mat/0412065 Strongly Correlated Electrons +cond-mat/0412067 Strongly Correlated Electrons +cond-mat/0412068 Mesoscale and Nanoscale Physics +cond-mat/0412069 Superconductivity +cond-mat/0412070 Strongly Correlated Electrons +cond-mat/0412072 Superconductivity +cond-mat/0412073 Other Condensed Matter +cond-mat/0412074 Soft Condensed Matter +cond-mat/0412075 Strongly Correlated Electrons +cond-mat/0412078 Soft Condensed Matter +cond-mat/0412081 Statistical Mechanics +cond-mat/0412083 Disordered Systems and Neural Networks +cond-mat/0412084 Strongly Correlated Electrons +cond-mat/0412086 Soft Condensed Matter +cond-mat/0412088 Statistical Mechanics +cond-mat/0412090 Superconductivity +cond-mat/0412091 Superconductivity +cond-mat/0412092 Strongly Correlated Electrons +cond-mat/0412093 Superconductivity +cond-mat/0412095 Superconductivity +cond-mat/0412096 Strongly Correlated Electrons +cond-mat/0412099 Soft Condensed Matter +cond-mat/0412102 Superconductivity +cond-mat/0412104 Soft Condensed Matter +cond-mat/0412105 Statistical Mechanics +cond-mat/0412108 Soft Condensed Matter +cond-mat/0412117 Superconductivity +cond-mat/0412119 Materials Science +cond-mat/0412120 Statistical Mechanics +cond-mat/0412121 Mesoscale and Nanoscale Physics +cond-mat/0412122 Strongly Correlated Electrons +cond-mat/0412124 Strongly Correlated Electrons +cond-mat/0412125 Statistical Mechanics +cond-mat/0412129 Statistical Mechanics +cond-mat/0412130 Statistical Mechanics +cond-mat/0412133 Other Condensed Matter +cond-mat/0412134 Other Condensed Matter +cond-mat/0412137 Other Condensed Matter +cond-mat/0412138 Materials Science +cond-mat/0412139 Statistical Mechanics +cond-mat/0412140 Mesoscale and Nanoscale Physics +cond-mat/0412143 Mesoscale and Nanoscale Physics +cond-mat/0412145 Mesoscale and Nanoscale Physics +cond-mat/0412147 Disordered Systems and Neural Networks +cond-mat/0412148 Strongly Correlated Electrons +cond-mat/0412150 Disordered Systems and Neural Networks +cond-mat/0412151 Statistical Mechanics +cond-mat/0412152 Superconductivity +cond-mat/0412153 Superconductivity +cond-mat/0412154 Superconductivity +cond-mat/0412155 Strongly Correlated Electrons +cond-mat/0412156 Statistical Mechanics +cond-mat/0412159 Soft Condensed Matter +cond-mat/0412160 Materials Science +cond-mat/0412161 Other Condensed Matter +cond-mat/0412163 Other Condensed Matter +cond-mat/0412165 Materials Science +cond-mat/0412167 Other Condensed Matter +cond-mat/0412169 Materials Science +cond-mat/0412170 Strongly Correlated Electrons +cond-mat/0412172 Materials Science +cond-mat/0412173 Disordered Systems and Neural Networks +cond-mat/0412174 Statistical Mechanics +cond-mat/0412177 Statistical Mechanics +cond-mat/0412179 Strongly Correlated Electrons +cond-mat/0412182 Statistical Mechanics +cond-mat/0412183 Soft Condensed Matter +cond-mat/0412184 Strongly Correlated Electrons +cond-mat/0412186 Strongly Correlated Electrons +cond-mat/0412187 Materials Science +cond-mat/0412188 Soft Condensed Matter +cond-mat/0412189 Mesoscale and Nanoscale Physics +cond-mat/0412194 Mesoscale and Nanoscale Physics +cond-mat/0412198 Statistical Mechanics +cond-mat/0412200 Mesoscale and Nanoscale Physics +cond-mat/0412209 Disordered Systems and Neural Networks +cond-mat/0412210 Mesoscale and Nanoscale Physics +cond-mat/0412212 Statistical Mechanics +cond-mat/0412214 Other Condensed Matter +cond-mat/0412217 Mesoscale and Nanoscale Physics +cond-mat/0412218 Mesoscale and Nanoscale Physics +cond-mat/0412220 Mesoscale and Nanoscale Physics +cond-mat/0412222 Other Condensed Matter +cond-mat/0412223 Statistical Mechanics +cond-mat/0412228 Mesoscale and Nanoscale Physics +cond-mat/0412230 Strongly Correlated Electrons +cond-mat/0412235 Superconductivity +cond-mat/0412236 Mesoscale and Nanoscale Physics +cond-mat/0412237 Other Condensed Matter +cond-mat/0412238 Soft Condensed Matter +cond-mat/0412244 Materials Science +cond-mat/0412245 Strongly Correlated Electrons +cond-mat/0412248 Other Condensed Matter +cond-mat/0412250 Superconductivity +cond-mat/0412251 Soft Condensed Matter +cond-mat/0412252 Materials Science +cond-mat/0412253 Mesoscale and Nanoscale Physics +cond-mat/0412258 Soft Condensed Matter +cond-mat/0412259 Mesoscale and Nanoscale Physics +cond-mat/0412261 Superconductivity +cond-mat/0412263 Materials Science +cond-mat/0412266 Disordered Systems and Neural Networks +cond-mat/0412267 Materials Science +cond-mat/0412269 Superconductivity +cond-mat/0412271 Mesoscale and Nanoscale Physics +cond-mat/0412272 Other Condensed Matter +cond-mat/0412273 Strongly Correlated Electrons +cond-mat/0412275 Strongly Correlated Electrons +cond-mat/0412278 Mesoscale and Nanoscale Physics +cond-mat/0412279 Other Condensed Matter +cond-mat/0412284 Strongly Correlated Electrons +cond-mat/0412286 Mesoscale and Nanoscale Physics +cond-mat/0412287 Soft Condensed Matter +cond-mat/0412288 Strongly Correlated Electrons +cond-mat/0412289 Disordered Systems and Neural Networks +cond-mat/0412290 Strongly Correlated Electrons +cond-mat/0412291 Superconductivity +cond-mat/0412292 Superconductivity +cond-mat/0412293 Soft Condensed Matter +cond-mat/0412297 Other Condensed Matter +cond-mat/0412300 Other Condensed Matter +cond-mat/0412301 Materials Science +cond-mat/0412304 Materials Science +cond-mat/0412305 Strongly Correlated Electrons +cond-mat/0412308 Disordered Systems and Neural Networks +cond-mat/0412311 Superconductivity +cond-mat/0412312 Strongly Correlated Electrons +cond-mat/0412313 Strongly Correlated Electrons +cond-mat/0412315 Mesoscale and Nanoscale Physics +cond-mat/0412317 Statistical Mechanics +cond-mat/0412318 Materials Science +cond-mat/0412322 Statistical Mechanics +cond-mat/0412323 Materials Science +cond-mat/0412324 Materials Science +cond-mat/0412325 Superconductivity +cond-mat/0412329 Statistical Mechanics +cond-mat/0412333 Mesoscale and Nanoscale Physics +cond-mat/0412337 Soft Condensed Matter +cond-mat/0412340 Mesoscale and Nanoscale Physics +cond-mat/0412341 Soft Condensed Matter +cond-mat/0412343 Mesoscale and Nanoscale Physics +cond-mat/0412344 Strongly Correlated Electrons +cond-mat/0412345 Superconductivity +cond-mat/0412347 Materials Science +cond-mat/0412350 Superconductivity +cond-mat/0412352 Statistical Mechanics +cond-mat/0412353 Statistical Mechanics +cond-mat/0412355 Statistical Mechanics +cond-mat/0412356 Statistical Mechanics +cond-mat/0412359 Superconductivity +cond-mat/0412364 Soft Condensed Matter +cond-mat/0412365 Disordered Systems and Neural Networks +cond-mat/0412367 Disordered Systems and Neural Networks +cond-mat/0412369 Statistical Mechanics +cond-mat/0412370 Other Condensed Matter +cond-mat/0412373 Soft Condensed Matter +cond-mat/0412374 Materials Science +cond-mat/0412378 Disordered Systems and Neural Networks +cond-mat/0412380 Other Condensed Matter +cond-mat/0412381 Other Condensed Matter +cond-mat/0412383 Statistical Mechanics +cond-mat/0412384 Materials Science +cond-mat/0412386 Strongly Correlated Electrons +cond-mat/0412388 Soft Condensed Matter +cond-mat/0412389 Strongly Correlated Electrons +cond-mat/0412390 Strongly Correlated Electrons +cond-mat/0412391 Strongly Correlated Electrons +cond-mat/0412392 Mesoscale and Nanoscale Physics +cond-mat/0412398 Superconductivity +cond-mat/0412399 Disordered Systems and Neural Networks +cond-mat/0412401 Strongly Correlated Electrons +cond-mat/0412409 Strongly Correlated Electrons +cond-mat/0412410 Superconductivity +cond-mat/0412412 Soft Condensed Matter +cond-mat/0412414 Soft Condensed Matter +cond-mat/0412415 Disordered Systems and Neural Networks +cond-mat/0412419 Disordered Systems and Neural Networks +cond-mat/0412422 Materials Science +cond-mat/0412424 Superconductivity +cond-mat/0412425 Mesoscale and Nanoscale Physics +cond-mat/0412427 Statistical Mechanics +cond-mat/0412429 Statistical Mechanics +cond-mat/0412433 Materials Science +cond-mat/0412434 Mesoscale and Nanoscale Physics +cond-mat/0412436 Soft Condensed Matter +cond-mat/0412437 Statistical Mechanics +cond-mat/0412439 Soft Condensed Matter +cond-mat/0412440 Statistical Mechanics +cond-mat/0412441 Other Condensed Matter +cond-mat/0412442 Statistical Mechanics +cond-mat/0412443 Disordered Systems and Neural Networks +cond-mat/0412445 Strongly Correlated Electrons +cond-mat/0412447 Disordered Systems and Neural Networks +cond-mat/0412448 Statistical Mechanics +cond-mat/0412450 Materials Science +cond-mat/0412451 Strongly Correlated Electrons +cond-mat/0412453 Superconductivity +cond-mat/0412454 Other Condensed Matter +cond-mat/0412455 Statistical Mechanics +cond-mat/0412460 Statistical Mechanics +cond-mat/0412461 Materials Science +cond-mat/0412462 Statistical Mechanics +cond-mat/0412465 Other Condensed Matter +cond-mat/0412466 Superconductivity +cond-mat/0412468 Materials Science +cond-mat/0412472 Disordered Systems and Neural Networks +cond-mat/0412473 Strongly Correlated Electrons +cond-mat/0412474 Superconductivity +cond-mat/0412477 Superconductivity +cond-mat/0412483 Soft Condensed Matter +cond-mat/0412487 Other Condensed Matter +cond-mat/0412490 Other Condensed Matter +cond-mat/0412492 Statistical Mechanics +cond-mat/0412496 Soft Condensed Matter +cond-mat/0412499 Materials Science +cond-mat/0412502 Mesoscale and Nanoscale Physics +cond-mat/0412504 Soft Condensed Matter +cond-mat/0412505 Strongly Correlated Electrons +cond-mat/0412506 Soft Condensed Matter +cond-mat/0412507 Mesoscale and Nanoscale Physics +cond-mat/0412508 Superconductivity +cond-mat/0412509 Soft Condensed Matter +cond-mat/0412510 Materials Science +cond-mat/0412512 Other Condensed Matter +cond-mat/0412513 Strongly Correlated Electrons +cond-mat/0412516 Other Condensed Matter +cond-mat/0412517 Mesoscale and Nanoscale Physics +cond-mat/0412520 Mesoscale and Nanoscale Physics +cond-mat/0412522 Superconductivity +cond-mat/0412524 Materials Science +cond-mat/0412528 Superconductivity +cond-mat/0412533 Strongly Correlated Electrons +cond-mat/0412534 Materials Science +cond-mat/0412536 Mesoscale and Nanoscale Physics +cond-mat/0412538 Soft Condensed Matter +cond-mat/0412541 Soft Condensed Matter +cond-mat/0412546 Other Condensed Matter +cond-mat/0412551 Superconductivity +cond-mat/0412553 Superconductivity +cond-mat/0412554 Strongly Correlated Electrons +cond-mat/0412556 Strongly Correlated Electrons +cond-mat/0412559 Other Condensed Matter +cond-mat/0412562 Mesoscale and Nanoscale Physics +cond-mat/0412564 Materials Science +cond-mat/0412566 Other Condensed Matter +cond-mat/0412567 Superconductivity +cond-mat/0412568 Materials Science +cond-mat/0412569 Statistical Mechanics +cond-mat/0412570 Superconductivity +cond-mat/0412571 Materials Science +cond-mat/0412573 Superconductivity +cond-mat/0412574 Disordered Systems and Neural Networks +cond-mat/0412575 Materials Science +cond-mat/0412577 Materials Science +cond-mat/0412578 Strongly Correlated Electrons +cond-mat/0412582 Materials Science +cond-mat/0412584 Other Condensed Matter +cond-mat/0412589 Mesoscale and Nanoscale Physics +cond-mat/0412590 Strongly Correlated Electrons +cond-mat/0412591 Statistical Mechanics +cond-mat/0412593 Statistical Mechanics +cond-mat/0412598 Mesoscale and Nanoscale Physics +cond-mat/0412599 Statistical Mechanics +cond-mat/0412603 Mesoscale and Nanoscale Physics +cond-mat/0412607 Superconductivity +cond-mat/0412611 Materials Science +cond-mat/0412613 Other Condensed Matter +cond-mat/0412614 Superconductivity +cond-mat/0412615 Statistical Mechanics +cond-mat/0412617 Soft Condensed Matter +cond-mat/0412619 Strongly Correlated Electrons +cond-mat/0412620 Strongly Correlated Electrons +cond-mat/0412622 Other Condensed Matter +cond-mat/0412625 Strongly Correlated Electrons +cond-mat/0412628 Mesoscale and Nanoscale Physics +cond-mat/0412629 Materials Science +cond-mat/0412630 Materials Science +cond-mat/0412631 Superconductivity +cond-mat/0412633 Mesoscale and Nanoscale Physics +cond-mat/0412638 Disordered Systems and Neural Networks +cond-mat/0412639 Other Condensed Matter +cond-mat/0412640 Soft Condensed Matter +cond-mat/0412641 Strongly Correlated Electrons +cond-mat/0412643 Materials Science +cond-mat/0412644 Other Condensed Matter +cond-mat/0412646 Materials Science +cond-mat/0412651 Materials Science +cond-mat/0412652 Disordered Systems and Neural Networks +cond-mat/0412653 Mesoscale and Nanoscale Physics +cond-mat/0412654 Strongly Correlated Electrons +cond-mat/0412655 Soft Condensed Matter +cond-mat/0412658 Disordered Systems and Neural Networks +cond-mat/0412659 Statistical Mechanics +cond-mat/0412666 Soft Condensed Matter +cond-mat/0412669 Disordered Systems and Neural Networks +cond-mat/0412670 Disordered Systems and Neural Networks +cond-mat/0412671 Other Condensed Matter +cond-mat/0412672 Statistical Mechanics +cond-mat/0412673 Mesoscale and Nanoscale Physics +cond-mat/0412674 Disordered Systems and Neural Networks +cond-mat/0412675 Statistical Mechanics +cond-mat/0412676 Strongly Correlated Electrons +cond-mat/0412678 Soft Condensed Matter +cond-mat/0412681 Materials Science +cond-mat/0412684 Materials Science +cond-mat/0412688 Disordered Systems and Neural Networks +cond-mat/0412689 Soft Condensed Matter +cond-mat/0412693 Soft Condensed Matter +cond-mat/0412694 Mesoscale and Nanoscale Physics +cond-mat/0412702 Superconductivity +cond-mat/0412703 Other Condensed Matter +cond-mat/0412705 Mesoscale and Nanoscale Physics +cond-mat/0412706 Statistical Mechanics +cond-mat/0412707 Statistical Mechanics +cond-mat/0412708 Other Condensed Matter +cond-mat/0412710 Mesoscale and Nanoscale Physics +cond-mat/0412711 Materials Science +cond-mat/0412712 Other Condensed Matter +cond-mat/0412713 Strongly Correlated Electrons +cond-mat/0412715 Superconductivity +cond-mat/0412716 Soft Condensed Matter +cond-mat/0412717 Disordered Systems and Neural Networks +cond-mat/0412718 Strongly Correlated Electrons +cond-mat/0412719 Other Condensed Matter +cond-mat/0412720 Disordered Systems and Neural Networks +cond-mat/0412722 Superconductivity +cond-mat/0412727 Superconductivity +cond-mat/0412729 Disordered Systems and Neural Networks +cond-mat/0412731 Mesoscale and Nanoscale Physics +cond-mat/0412734 Other Condensed Matter +cond-mat/0412737 Statistical Mechanics +cond-mat/0412738 Other Condensed Matter +cond-mat/0412741 Disordered Systems and Neural Networks +cond-mat/0412742 Strongly Correlated Electrons +cond-mat/0412745 Statistical Mechanics +cond-mat/0412746 Superconductivity +cond-mat/0412747 Soft Condensed Matter +cond-mat/0412748 Statistical Mechanics +cond-mat/0412751 Statistical Mechanics +cond-mat/0412752 Statistical Mechanics +cond-mat/0412754 Statistical Mechanics +cond-mat/0412760 Soft Condensed Matter +cond-mat/0412763 Soft Condensed Matter +cond-mat/0412766 Statistical Mechanics +cond-mat/0412767 Statistical Mechanics +cond-mat/0412772 Strongly Correlated Electrons +cond-mat/0412774 Statistical Mechanics +cond-mat/0412775 Materials Science +cs/0303004 Numerical Analysis +cs/0304019 Computation and Language +cs/0306066 Databases +cs/0310045 Artificial Intelligence +cs/0312018 Information Retrieval +cs/0402014 Neural and Evolutionary Computing +cs/0402016 Databases +cs/0402029 Information Retrieval +cs/0403015 Distributed, Parallel, and Cluster Computing +cs/0404016 Computer Science and Game Theory +cs/0404017 Neural and Evolutionary Computing +cs/0404019 Neural and Evolutionary Computing +cs/0407047 Computer Vision and Pattern Recognition +cs/0411071 Artificial Intelligence +cs/0411072 Artificial Intelligence +gr-qc/0301004 +gr-qc/0301006 +gr-qc/0301007 +gr-qc/0301009 +gr-qc/0301011 +gr-qc/0301016 +gr-qc/0301018 +gr-qc/0301019 +gr-qc/0301022 +gr-qc/0301025 +gr-qc/0301035 +gr-qc/0301038 +gr-qc/0301042 +gr-qc/0301044 +gr-qc/0301048 +gr-qc/0301049 +gr-qc/0301051 +gr-qc/0301053 +gr-qc/0301056 +gr-qc/0301057 +gr-qc/0301059 +gr-qc/0301060 +gr-qc/0301062 +gr-qc/0301069 +gr-qc/0301075 +gr-qc/0301079 +gr-qc/0301080 +gr-qc/0301083 +gr-qc/0301084 +gr-qc/0301090 +gr-qc/0301096 +gr-qc/0301099 +gr-qc/0301101 +gr-qc/0301103 +gr-qc/0301104 +gr-qc/0301105 +gr-qc/0301106 +gr-qc/0301108 +gr-qc/0301110 +gr-qc/0301111 +gr-qc/0301114 +gr-qc/0301118 +gr-qc/0301119 +gr-qc/0301120 +gr-qc/0301122 +gr-qc/0301127 +gr-qc/0301128 +gr-qc/0301129 +gr-qc/0301130 +gr-qc/0302003 +gr-qc/0302010 +gr-qc/0302012 +gr-qc/0302014 +gr-qc/0302017 +gr-qc/0302019 +gr-qc/0302022 +gr-qc/0302028 +gr-qc/0302029 +gr-qc/0302033 +gr-qc/0302037 +gr-qc/0302039 +gr-qc/0302044 +gr-qc/0302045 +gr-qc/0302048 +gr-qc/0302052 +gr-qc/0302055 +gr-qc/0302057 +gr-qc/0302059 +gr-qc/0302061 +gr-qc/0302065 +gr-qc/0302067 +gr-qc/0302069 +gr-qc/0302071 +gr-qc/0302072 +gr-qc/0302073 +gr-qc/0302074 +gr-qc/0302075 +gr-qc/0302076 +gr-qc/0302077 +gr-qc/0302079 +gr-qc/0302080 +gr-qc/0302081 +gr-qc/0302082 +gr-qc/0302084 +gr-qc/0302086 +gr-qc/0302091 +gr-qc/0302093 +gr-qc/0302097 +gr-qc/0302100 +gr-qc/0302101 +gr-qc/0302103 +gr-qc/0302104 +gr-qc/0302112 +gr-qc/0302113 +gr-qc/0302115 +gr-qc/0302117 +gr-qc/0302118 +gr-qc/0303006 +gr-qc/0303009 +gr-qc/0303010 +gr-qc/0303013 +gr-qc/0303014 +gr-qc/0303017 +gr-qc/0303018 +gr-qc/0303023 +gr-qc/0303025 +gr-qc/0303028 +gr-qc/0303032 +gr-qc/0303034 +gr-qc/0303036 +gr-qc/0303038 +gr-qc/0303040 +gr-qc/0303042 +gr-qc/0303043 +gr-qc/0303044 +gr-qc/0303049 +gr-qc/0303054 +gr-qc/0303055 +gr-qc/0303056 +gr-qc/0303058 +gr-qc/0303065 +gr-qc/0303066 +gr-qc/0303067 +gr-qc/0303068 +gr-qc/0303069 +gr-qc/0303071 +gr-qc/0303072 +gr-qc/0303079 +gr-qc/0303080 +gr-qc/0303082 +gr-qc/0303084 +gr-qc/0303086 +gr-qc/0303090 +gr-qc/0303093 +gr-qc/0303096 +gr-qc/0303099 +gr-qc/0303101 +gr-qc/0303106 +gr-qc/0303109 +gr-qc/0303110 +gr-qc/0303114 +gr-qc/0303115 +gr-qc/0303116 +gr-qc/0304002 +gr-qc/0304004 +gr-qc/0304005 +gr-qc/0304006 +gr-qc/0304007 +gr-qc/0304010 +gr-qc/0304012 +gr-qc/0304019 +gr-qc/0304022 +gr-qc/0304023 +gr-qc/0304024 +gr-qc/0304029 +gr-qc/0304030 +gr-qc/0304031 +gr-qc/0304033 +gr-qc/0304035 +gr-qc/0304040 +gr-qc/0304042 +gr-qc/0304044 +gr-qc/0304046 +gr-qc/0304049 +gr-qc/0304050 +gr-qc/0304051 +gr-qc/0304053 +gr-qc/0304057 +gr-qc/0304059 +gr-qc/0304063 +gr-qc/0304066 +gr-qc/0304067 +gr-qc/0304069 +gr-qc/0304070 +gr-qc/0304072 +gr-qc/0304073 +gr-qc/0304075 +gr-qc/0304080 +gr-qc/0304083 +gr-qc/0304085 +gr-qc/0304092 +gr-qc/0304093 +gr-qc/0304094 +gr-qc/0304095 +gr-qc/0304096 +gr-qc/0304097 +gr-qc/0304100 +gr-qc/0304101 +gr-qc/0304103 +gr-qc/0304106 +gr-qc/0304107 +gr-qc/0304108 +gr-qc/0304109 +gr-qc/0304111 +gr-qc/0305003 +gr-qc/0305005 +gr-qc/0305006 +gr-qc/0305007 +gr-qc/0305009 +gr-qc/0305012 +gr-qc/0305013 +gr-qc/0305014 +gr-qc/0305018 +gr-qc/0305023 +gr-qc/0305024 +gr-qc/0305026 +gr-qc/0305027 +gr-qc/0305030 +gr-qc/0305031 +gr-qc/0305033 +gr-qc/0305036 +gr-qc/0305039 +gr-qc/0305040 +gr-qc/0305045 +gr-qc/0305049 +gr-qc/0305050 +gr-qc/0305052 +gr-qc/0305055 +gr-qc/0305056 +gr-qc/0305059 +gr-qc/0305061 +gr-qc/0305062 +gr-qc/0305063 +gr-qc/0305064 +gr-qc/0305067 +gr-qc/0305071 +gr-qc/0305073 +gr-qc/0305074 +gr-qc/0305075 +gr-qc/0305082 +gr-qc/0305088 +gr-qc/0305089 +gr-qc/0305092 +gr-qc/0305093 +gr-qc/0305102 +gr-qc/0305103 +gr-qc/0305104 +gr-qc/0305105 +gr-qc/0305106 +gr-qc/0306001 +gr-qc/0306002 +gr-qc/0306010 +gr-qc/0306011 +gr-qc/0306012 +gr-qc/0306014 +gr-qc/0306015 +gr-qc/0306016 +gr-qc/0306021 +gr-qc/0306022 +gr-qc/0306024 +gr-qc/0306027 +gr-qc/0306028 +gr-qc/0306034 +gr-qc/0306036 +gr-qc/0306038 +gr-qc/0306039 +gr-qc/0306040 +gr-qc/0306042 +gr-qc/0306044 +gr-qc/0306045 +gr-qc/0306046 +gr-qc/0306055 +gr-qc/0306058 +gr-qc/0306059 +gr-qc/0306062 +gr-qc/0306065 +gr-qc/0306069 +gr-qc/0306070 +gr-qc/0306071 +gr-qc/0306072 +gr-qc/0306073 +gr-qc/0306074 +gr-qc/0306075 +gr-qc/0306076 +gr-qc/0306077 +gr-qc/0306078 +gr-qc/0306080 +gr-qc/0306081 +gr-qc/0306084 +gr-qc/0306085 +gr-qc/0306092 +gr-qc/0306094 +gr-qc/0306095 +gr-qc/0306098 +gr-qc/0306100 +gr-qc/0306101 +gr-qc/0306103 +gr-qc/0306107 +gr-qc/0306108 +gr-qc/0306109 +gr-qc/0306112 +gr-qc/0306113 +gr-qc/0306118 +gr-qc/0306119 +gr-qc/0306121 +gr-qc/0306122 +gr-qc/0306123 +gr-qc/0306125 +gr-qc/0306126 +gr-qc/0306129 +gr-qc/0307002 +gr-qc/0307004 +gr-qc/0307005 +gr-qc/0307007 +gr-qc/0307008 +gr-qc/0307017 +gr-qc/0307019 +gr-qc/0307022 +gr-qc/0307023 +gr-qc/0307025 +gr-qc/0307028 +gr-qc/0307029 +gr-qc/0307031 +gr-qc/0307034 +gr-qc/0307035 +gr-qc/0307037 +gr-qc/0307039 +gr-qc/0307041 +gr-qc/0307043 +gr-qc/0307044 +gr-qc/0307045 +gr-qc/0307046 +gr-qc/0307050 +gr-qc/0307052 +gr-qc/0307054 +gr-qc/0307056 +gr-qc/0307059 +gr-qc/0307061 +gr-qc/0307062 +gr-qc/0307063 +gr-qc/0307064 +gr-qc/0307066 +gr-qc/0307067 +gr-qc/0307070 +gr-qc/0307073 +gr-qc/0307074 +gr-qc/0307075 +gr-qc/0307076 +gr-qc/0307077 +gr-qc/0307078 +gr-qc/0307080 +gr-qc/0307081 +gr-qc/0307083 +gr-qc/0307084 +gr-qc/0307086 +gr-qc/0307087 +gr-qc/0307088 +gr-qc/0307089 +gr-qc/0307091 +gr-qc/0307092 +gr-qc/0307094 +gr-qc/0307095 +gr-qc/0307097 +gr-qc/0307100 +gr-qc/0307101 +gr-qc/0307102 +gr-qc/0307104 +gr-qc/0307111 +gr-qc/0307113 +gr-qc/0307118 +gr-qc/0307120 +gr-qc/0307121 +gr-qc/0308002 +gr-qc/0308003 +gr-qc/0308007 +gr-qc/0308008 +gr-qc/0308009 +gr-qc/0308011 +gr-qc/0308013 +gr-qc/0308014 +gr-qc/0308015 +gr-qc/0308018 +gr-qc/0308020 +gr-qc/0308024 +gr-qc/0308028 +gr-qc/0308029 +gr-qc/0308030 +gr-qc/0308031 +gr-qc/0308032 +gr-qc/0308035 +gr-qc/0308037 +gr-qc/0308038 +gr-qc/0308039 +gr-qc/0308040 +gr-qc/0308041 +gr-qc/0308044 +gr-qc/0308049 +gr-qc/0308052 +gr-qc/0308055 +gr-qc/0308056 +gr-qc/0308059 +gr-qc/0308062 +gr-qc/0308063 +gr-qc/0308065 +gr-qc/0308066 +gr-qc/0308072 +gr-qc/0308074 +gr-qc/0308075 +gr-qc/0308077 +gr-qc/0308083 +gr-qc/0308085 +gr-qc/0308090 +gr-qc/0309001 +gr-qc/0309006 +gr-qc/0309008 +gr-qc/0309011 +gr-qc/0309012 +gr-qc/0309015 +gr-qc/0309017 +gr-qc/0309018 +gr-qc/0309019 +gr-qc/0309024 +gr-qc/0309026 +gr-qc/0309030 +gr-qc/0309033 +gr-qc/0309034 +gr-qc/0309035 +gr-qc/0309038 +gr-qc/0309039 +gr-qc/0309042 +gr-qc/0309045 +gr-qc/0309047 +gr-qc/0309048 +gr-qc/0309052 +gr-qc/0309055 +gr-qc/0309056 +gr-qc/0309057 +gr-qc/0309058 +gr-qc/0309061 +gr-qc/0309064 +gr-qc/0309066 +gr-qc/0309069 +gr-qc/0309071 +gr-qc/0309073 +gr-qc/0309075 +gr-qc/0309076 +gr-qc/0309079 +gr-qc/0309080 +gr-qc/0309081 +gr-qc/0309083 +gr-qc/0309084 +gr-qc/0309085 +gr-qc/0309086 +gr-qc/0309087 +gr-qc/0309088 +gr-qc/0309094 +gr-qc/0309098 +gr-qc/0309101 +gr-qc/0309103 +gr-qc/0309104 +gr-qc/0309107 +gr-qc/0309110 +gr-qc/0309111 +gr-qc/0309112 +gr-qc/0309118 +gr-qc/0309120 +gr-qc/0309122 +gr-qc/0309124 +gr-qc/0309126 +gr-qc/0309127 +gr-qc/0309128 +gr-qc/0309131 +gr-qc/0309134 +gr-qc/0310001 +gr-qc/0310006 +gr-qc/0310009 +gr-qc/0310011 +gr-qc/0310012 +gr-qc/0310013 +gr-qc/0310014 +gr-qc/0310016 +gr-qc/0310017 +gr-qc/0310018 +gr-qc/0310021 +gr-qc/0310022 +gr-qc/0310024 +gr-qc/0310026 +gr-qc/0310027 +gr-qc/0310028 +gr-qc/0310029 +gr-qc/0310033 +gr-qc/0310035 +gr-qc/0310036 +gr-qc/0310038 +gr-qc/0310044 +gr-qc/0310045 +gr-qc/0310047 +gr-qc/0310051 +gr-qc/0310055 +gr-qc/0310061 +gr-qc/0310062 +gr-qc/0310063 +gr-qc/0310064 +gr-qc/0310066 +gr-qc/0310069 +gr-qc/0310071 +gr-qc/0310073 +gr-qc/0310074 +gr-qc/0310077 +gr-qc/0310079 +gr-qc/0310083 +gr-qc/0310084 +gr-qc/0310087 +gr-qc/0310088 +gr-qc/0310089 +gr-qc/0310090 +gr-qc/0310095 +gr-qc/0310097 +gr-qc/0310101 +gr-qc/0310104 +gr-qc/0310107 +gr-qc/0310109 +gr-qc/0310110 +gr-qc/0310118 +gr-qc/0310119 +gr-qc/0310121 +gr-qc/0310122 +gr-qc/0310125 +gr-qc/0310127 +gr-qc/0310128 +gr-qc/0310129 +gr-qc/0310130 +gr-qc/0310131 +gr-qc/0310132 +gr-qc/0310134 +gr-qc/0311002 +gr-qc/0311010 +gr-qc/0311013 +gr-qc/0311014 +gr-qc/0311015 +gr-qc/0311017 +gr-qc/0311019 +gr-qc/0311022 +gr-qc/0311023 +gr-qc/0311026 +gr-qc/0311031 +gr-qc/0311032 +gr-qc/0311035 +gr-qc/0311037 +gr-qc/0311038 +gr-qc/0311040 +gr-qc/0311041 +gr-qc/0311046 +gr-qc/0311051 +gr-qc/0311053 +gr-qc/0311055 +gr-qc/0311056 +gr-qc/0311057 +gr-qc/0311059 +gr-qc/0311064 +gr-qc/0311067 +gr-qc/0311068 +gr-qc/0311069 +gr-qc/0311071 +gr-qc/0311072 +gr-qc/0311073 +gr-qc/0311074 +gr-qc/0311075 +gr-qc/0311076 +gr-qc/0311077 +gr-qc/0311078 +gr-qc/0311079 +gr-qc/0311080 +gr-qc/0311081 +gr-qc/0311085 +gr-qc/0311091 +gr-qc/0311092 +gr-qc/0312001 +gr-qc/0312003 +gr-qc/0312007 +gr-qc/0312011 +gr-qc/0312013 +gr-qc/0312015 +gr-qc/0312016 +gr-qc/0312019 +gr-qc/0312020 +gr-qc/0312021 +gr-qc/0312023 +gr-qc/0312028 +gr-qc/0312029 +gr-qc/0312030 +gr-qc/0312033 +gr-qc/0312036 +gr-qc/0312040 +gr-qc/0312043 +gr-qc/0312055 +gr-qc/0312057 +gr-qc/0312061 +gr-qc/0312066 +gr-qc/0312071 +gr-qc/0312075 +gr-qc/0312077 +gr-qc/0312078 +gr-qc/0312079 +gr-qc/0312080 +gr-qc/0312083 +gr-qc/0312084 +gr-qc/0312086 +gr-qc/0312089 +gr-qc/0312093 +gr-qc/0312094 +gr-qc/0312095 +gr-qc/0312097 +gr-qc/0312099 +gr-qc/0312101 +gr-qc/0312102 +gr-qc/0312104 +gr-qc/0312105 +gr-qc/0312108 +gr-qc/0312110 +gr-qc/0312117 +gr-qc/0312121 +gr-qc/0312122 +gr-qc/0312124 +gr-qc/0312126 +gr-qc/0401001 +gr-qc/0401002 +gr-qc/0401006 +gr-qc/0401008 +gr-qc/0401009 +gr-qc/0401011 +gr-qc/0401017 +gr-qc/0401020 +gr-qc/0401023 +gr-qc/0401030 +gr-qc/0401031 +gr-qc/0401033 +gr-qc/0401034 +gr-qc/0401035 +gr-qc/0401042 +gr-qc/0401044 +gr-qc/0401045 +gr-qc/0401047 +gr-qc/0401048 +gr-qc/0401049 +gr-qc/0401050 +gr-qc/0401051 +gr-qc/0401053 +gr-qc/0401054 +gr-qc/0401057 +gr-qc/0401059 +gr-qc/0401060 +gr-qc/0401063 +gr-qc/0401064 +gr-qc/0401069 +gr-qc/0401070 +gr-qc/0401071 +gr-qc/0401076 +gr-qc/0401086 +gr-qc/0401088 +gr-qc/0401092 +gr-qc/0401093 +gr-qc/0401097 +gr-qc/0401103 +gr-qc/0401106 +gr-qc/0401110 +gr-qc/0401111 +gr-qc/0401112 +gr-qc/0401113 +gr-qc/0401114 +gr-qc/0401115 +gr-qc/0401119 +gr-qc/0401120 +gr-qc/0401125 +gr-qc/0402011 +gr-qc/0402012 +gr-qc/0402013 +gr-qc/0402015 +gr-qc/0402020 +gr-qc/0402027 +gr-qc/0402029 +gr-qc/0402031 +gr-qc/0402033 +gr-qc/0402034 +gr-qc/0402036 +gr-qc/0402037 +gr-qc/0402038 +gr-qc/0402039 +gr-qc/0402042 +gr-qc/0402044 +gr-qc/0402046 +gr-qc/0402047 +gr-qc/0402048 +gr-qc/0402052 +gr-qc/0402055 +gr-qc/0402056 +gr-qc/0402059 +gr-qc/0402060 +gr-qc/0402063 +gr-qc/0402065 +gr-qc/0402069 +gr-qc/0402075 +gr-qc/0402078 +gr-qc/0402079 +gr-qc/0402080 +gr-qc/0402081 +gr-qc/0402082 +gr-qc/0402083 +gr-qc/0402085 +gr-qc/0402089 +gr-qc/0402095 +gr-qc/0402096 +gr-qc/0402097 +gr-qc/0402098 +gr-qc/0402099 +gr-qc/0402101 +gr-qc/0402104 +gr-qc/0402105 +gr-qc/0402106 +gr-qc/0402107 +gr-qc/0402108 +gr-qc/0402110 +gr-qc/0402111 +gr-qc/0402118 +gr-qc/0402119 +gr-qc/0402123 +gr-qc/0402126 +gr-qc/0403001 +gr-qc/0403002 +gr-qc/0403008 +gr-qc/0403010 +gr-qc/0403012 +gr-qc/0403014 +gr-qc/0403016 +gr-qc/0403018 +gr-qc/0403019 +gr-qc/0403020 +gr-qc/0403022 +gr-qc/0403023 +gr-qc/0403024 +gr-qc/0403026 +gr-qc/0403027 +gr-qc/0403030 +gr-qc/0403032 +gr-qc/0403035 +gr-qc/0403036 +gr-qc/0403040 +gr-qc/0403042 +gr-qc/0403043 +gr-qc/0403045 +gr-qc/0403046 +gr-qc/0403048 +gr-qc/0403054 +gr-qc/0403057 +gr-qc/0403058 +gr-qc/0403059 +gr-qc/0403061 +gr-qc/0403065 +gr-qc/0403070 +gr-qc/0403074 +gr-qc/0403075 +gr-qc/0403077 +gr-qc/0403078 +gr-qc/0403083 +gr-qc/0403084 +gr-qc/0403085 +gr-qc/0403089 +gr-qc/0403090 +gr-qc/0403091 +gr-qc/0403094 +gr-qc/0403098 +gr-qc/0403100 +gr-qc/0403102 +gr-qc/0403104 +gr-qc/0403105 +gr-qc/0403106 +gr-qc/0403108 +gr-qc/0403109 +gr-qc/0403113 +gr-qc/0403118 +gr-qc/0403119 +gr-qc/0403122 +gr-qc/0404001 +gr-qc/0404003 +gr-qc/0404005 +gr-qc/0404006 +gr-qc/0404007 +gr-qc/0404009 +gr-qc/0404012 +gr-qc/0404014 +gr-qc/0404015 +gr-qc/0404017 +gr-qc/0404027 +gr-qc/0404030 +gr-qc/0404031 +gr-qc/0404032 +gr-qc/0404033 +gr-qc/0404034 +gr-qc/0404035 +gr-qc/0404036 +gr-qc/0404043 +gr-qc/0404044 +gr-qc/0404048 +gr-qc/0404049 +gr-qc/0404053 +gr-qc/0404057 +gr-qc/0404058 +gr-qc/0404066 +gr-qc/0404068 +gr-qc/0404069 +gr-qc/0404070 +gr-qc/0404071 +gr-qc/0404072 +gr-qc/0404074 +gr-qc/0404075 +gr-qc/0404078 +gr-qc/0404080 +gr-qc/0404082 +gr-qc/0404089 +gr-qc/0404096 +gr-qc/0404100 +gr-qc/0404105 +gr-qc/0404106 +gr-qc/0404109 +gr-qc/0404111 +gr-qc/0404113 +gr-qc/0404114 +gr-qc/0404117 +gr-qc/0404124 +gr-qc/0404128 +gr-qc/0404129 +gr-qc/0405003 +gr-qc/0405004 +gr-qc/0405006 +gr-qc/0405013 +gr-qc/0405018 +gr-qc/0405019 +gr-qc/0405020 +gr-qc/0405021 +gr-qc/0405023 +gr-qc/0405024 +gr-qc/0405026 +gr-qc/0405029 +gr-qc/0405031 +gr-qc/0405033 +gr-qc/0405034 +gr-qc/0405036 +gr-qc/0405038 +gr-qc/0405040 +gr-qc/0405041 +gr-qc/0405042 +gr-qc/0405044 +gr-qc/0405049 +gr-qc/0405051 +gr-qc/0405055 +gr-qc/0405057 +gr-qc/0405063 +gr-qc/0405064 +gr-qc/0405068 +gr-qc/0405069 +gr-qc/0405070 +gr-qc/0405072 +gr-qc/0405077 +gr-qc/0405078 +gr-qc/0405082 +gr-qc/0405083 +gr-qc/0405084 +gr-qc/0405085 +gr-qc/0405086 +gr-qc/0405089 +gr-qc/0405093 +gr-qc/0405095 +gr-qc/0405096 +gr-qc/0405098 +gr-qc/0405099 +gr-qc/0405101 +gr-qc/0405104 +gr-qc/0405105 +gr-qc/0405106 +gr-qc/0405107 +gr-qc/0405109 +gr-qc/0405110 +gr-qc/0405119 +gr-qc/0405122 +gr-qc/0405123 +gr-qc/0405124 +gr-qc/0405127 +gr-qc/0405128 +gr-qc/0405129 +gr-qc/0405130 +gr-qc/0405134 +gr-qc/0405137 +gr-qc/0405140 +gr-qc/0405142 +gr-qc/0405147 +gr-qc/0405149 +gr-qc/0406005 +gr-qc/0406006 +gr-qc/0406007 +gr-qc/0406008 +gr-qc/0406013 +gr-qc/0406014 +gr-qc/0406015 +gr-qc/0406016 +gr-qc/0406018 +gr-qc/0406028 +gr-qc/0406029 +gr-qc/0406031 +gr-qc/0406033 +gr-qc/0406038 +gr-qc/0406039 +gr-qc/0406044 +gr-qc/0406045 +gr-qc/0406046 +gr-qc/0406047 +gr-qc/0406048 +gr-qc/0406049 +gr-qc/0406050 +gr-qc/0406052 +gr-qc/0406061 +gr-qc/0406063 +gr-qc/0406066 +gr-qc/0406069 +gr-qc/0406071 +gr-qc/0406072 +gr-qc/0406073 +gr-qc/0406075 +gr-qc/0406076 +gr-qc/0406077 +gr-qc/0406078 +gr-qc/0406079 +gr-qc/0406080 +gr-qc/0406082 +gr-qc/0406083 +gr-qc/0406085 +gr-qc/0406087 +gr-qc/0406091 +gr-qc/0406092 +gr-qc/0406093 +gr-qc/0406094 +gr-qc/0406095 +gr-qc/0406097 +gr-qc/0406098 +gr-qc/0406099 +gr-qc/0406101 +gr-qc/0406102 +gr-qc/0406105 +gr-qc/0406106 +gr-qc/0406111 +gr-qc/0406114 +gr-qc/0406116 +gr-qc/0406118 +gr-qc/0406120 +gr-qc/0406121 +gr-qc/0407001 +gr-qc/0407004 +gr-qc/0407006 +gr-qc/0407008 +gr-qc/0407009 +gr-qc/0407011 +gr-qc/0407012 +gr-qc/0407013 +gr-qc/0407014 +gr-qc/0407015 +gr-qc/0407020 +gr-qc/0407021 +gr-qc/0407022 +gr-qc/0407027 +gr-qc/0407028 +gr-qc/0407029 +gr-qc/0407031 +gr-qc/0407032 +gr-qc/0407034 +gr-qc/0407035 +gr-qc/0407040 +gr-qc/0407041 +gr-qc/0407043 +gr-qc/0407044 +gr-qc/0407045 +gr-qc/0407050 +gr-qc/0407051 +gr-qc/0407052 +gr-qc/0407054 +gr-qc/0407055 +gr-qc/0407056 +gr-qc/0407057 +gr-qc/0407063 +gr-qc/0407064 +gr-qc/0407069 +gr-qc/0407071 +gr-qc/0407073 +gr-qc/0407074 +gr-qc/0407078 +gr-qc/0407079 +gr-qc/0407080 +gr-qc/0407081 +gr-qc/0407085 +gr-qc/0407086 +gr-qc/0407087 +gr-qc/0407102 +gr-qc/0407105 +gr-qc/0407107 +gr-qc/0407108 +gr-qc/0407110 +gr-qc/0407111 +gr-qc/0407113 +gr-qc/0407114 +gr-qc/0407116 +gr-qc/0408003 +gr-qc/0408004 +gr-qc/0408005 +gr-qc/0408009 +gr-qc/0408010 +gr-qc/0408011 +gr-qc/0408012 +gr-qc/0408014 +gr-qc/0408015 +gr-qc/0408016 +gr-qc/0408017 +gr-qc/0408018 +gr-qc/0408019 +gr-qc/0408021 +gr-qc/0408022 +gr-qc/0408024 +gr-qc/0408026 +gr-qc/0408030 +gr-qc/0408032 +gr-qc/0408034 +gr-qc/0408035 +gr-qc/0408038 +gr-qc/0408039 +gr-qc/0408042 +gr-qc/0408044 +gr-qc/0408047 +gr-qc/0408049 +gr-qc/0408051 +gr-qc/0408055 +gr-qc/0408059 +gr-qc/0408062 +gr-qc/0408064 +gr-qc/0408066 +gr-qc/0408068 +gr-qc/0408069 +gr-qc/0408072 +gr-qc/0408073 +gr-qc/0408074 +gr-qc/0408077 +gr-qc/0408078 +gr-qc/0408079 +gr-qc/0408081 +gr-qc/0408084 +gr-qc/0408085 +gr-qc/0408088 +gr-qc/0408089 +gr-qc/0408090 +gr-qc/0408092 +gr-qc/0408093 +gr-qc/0408094 +gr-qc/0408095 +gr-qc/0408096 +gr-qc/0408100 +gr-qc/0408101 +gr-qc/0409001 +gr-qc/0409005 +gr-qc/0409006 +gr-qc/0409008 +gr-qc/0409010 +gr-qc/0409013 +gr-qc/0409014 +gr-qc/0409017 +gr-qc/0409018 +gr-qc/0409020 +gr-qc/0409022 +gr-qc/0409023 +gr-qc/0409024 +gr-qc/0409036 +gr-qc/0409041 +gr-qc/0409042 +gr-qc/0409048 +gr-qc/0409049 +gr-qc/0409052 +gr-qc/0409057 +gr-qc/0409060 +gr-qc/0409062 +gr-qc/0409063 +gr-qc/0409064 +gr-qc/0409066 +gr-qc/0409068 +gr-qc/0409069 +gr-qc/0409079 +gr-qc/0409080 +gr-qc/0409081 +gr-qc/0409084 +gr-qc/0409091 +gr-qc/0409093 +gr-qc/0409094 +gr-qc/0409095 +gr-qc/0409097 +gr-qc/0409100 +gr-qc/0409101 +gr-qc/0409107 +gr-qc/0409108 +gr-qc/0409109 +gr-qc/0409110 +gr-qc/0409112 +gr-qc/0409116 +gr-qc/0409120 +gr-qc/0409121 +gr-qc/0410005 +gr-qc/0410010 +gr-qc/0410012 +gr-qc/0410013 +gr-qc/0410015 +gr-qc/0410016 +gr-qc/0410018 +gr-qc/0410020 +gr-qc/0410021 +gr-qc/0410022 +gr-qc/0410023 +gr-qc/0410024 +gr-qc/0410025 +gr-qc/0410026 +gr-qc/0410028 +gr-qc/0410033 +gr-qc/0410035 +gr-qc/0410038 +gr-qc/0410041 +gr-qc/0410046 +gr-qc/0410049 +gr-qc/0410050 +gr-qc/0410051 +gr-qc/0410054 +gr-qc/0410057 +gr-qc/0410059 +gr-qc/0410065 +gr-qc/0410071 +gr-qc/0410074 +gr-qc/0410077 +gr-qc/0410078 +gr-qc/0410080 +gr-qc/0410081 +gr-qc/0410084 +gr-qc/0410087 +gr-qc/0410091 +gr-qc/0410092 +gr-qc/0410093 +gr-qc/0410094 +gr-qc/0410095 +gr-qc/0410098 +gr-qc/0410101 +gr-qc/0410103 +gr-qc/0410104 +gr-qc/0410105 +gr-qc/0410106 +gr-qc/0410107 +gr-qc/0410109 +gr-qc/0410113 +gr-qc/0410116 +gr-qc/0410120 +gr-qc/0410121 +gr-qc/0410122 +gr-qc/0410124 +gr-qc/0410131 +gr-qc/0410133 +gr-qc/0410134 +gr-qc/0410135 +gr-qc/0410136 +gr-qc/0410139 +gr-qc/0410140 +gr-qc/0410142 +gr-qc/0410143 +gr-qc/0410145 +gr-qc/0410146 +gr-qc/0411001 +gr-qc/0411007 +gr-qc/0411015 +gr-qc/0411017 +gr-qc/0411019 +gr-qc/0411022 +gr-qc/0411028 +gr-qc/0411029 +gr-qc/0411030 +gr-qc/0411031 +gr-qc/0411033 +gr-qc/0411035 +gr-qc/0411038 +gr-qc/0411039 +gr-qc/0411041 +gr-qc/0411044 +gr-qc/0411045 +gr-qc/0411048 +gr-qc/0411051 +gr-qc/0411059 +gr-qc/0411065 +gr-qc/0411066 +gr-qc/0411069 +gr-qc/0411070 +gr-qc/0411071 +gr-qc/0411072 +gr-qc/0411075 +gr-qc/0411086 +gr-qc/0411087 +gr-qc/0411089 +gr-qc/0411090 +gr-qc/0411091 +gr-qc/0411093 +gr-qc/0411097 +gr-qc/0411099 +gr-qc/0411102 +gr-qc/0411106 +gr-qc/0411107 +gr-qc/0411108 +gr-qc/0411110 +gr-qc/0411112 +gr-qc/0411114 +gr-qc/0411115 +gr-qc/0411117 +gr-qc/0411118 +gr-qc/0411119 +gr-qc/0411124 +gr-qc/0411125 +gr-qc/0411129 +gr-qc/0411133 +gr-qc/0411134 +gr-qc/0411135 +gr-qc/0411136 +gr-qc/0411138 +gr-qc/0411139 +gr-qc/0411140 +gr-qc/0411141 +gr-qc/0411142 +gr-qc/0411144 +gr-qc/0411145 +gr-qc/0411148 +gr-qc/0412006 +gr-qc/0412009 +gr-qc/0412012 +gr-qc/0412014 +gr-qc/0412016 +gr-qc/0412018 +gr-qc/0412022 +gr-qc/0412023 +gr-qc/0412030 +gr-qc/0412040 +gr-qc/0412042 +gr-qc/0412045 +gr-qc/0412046 +gr-qc/0412053 +gr-qc/0412056 +gr-qc/0412060 +gr-qc/0412061 +gr-qc/0412063 +gr-qc/0412070 +gr-qc/0412071 +gr-qc/0412072 +gr-qc/0412073 +gr-qc/0412087 +gr-qc/0412093 +gr-qc/0412099 +gr-qc/0412103 +gr-qc/0412104 +gr-qc/0412106 +gr-qc/0412108 +gr-qc/0412109 +gr-qc/0412116 +gr-qc/0412120 +gr-qc/0412121 +gr-qc/0412124 +gr-qc/0412125 +gr-qc/0412126 +gr-qc/0412127 +gr-qc/0412128 +gr-qc/0412129 +gr-qc/0412132 +gr-qc/0412135 +gr-qc/0412136 +gr-qc/0412137 +gr-qc/0412139 +gr-qc/0612060 +hep-ex/0301003 Experiment +hep-ex/0301010 Experiment +hep-ex/0301011 Experiment +hep-ex/0301012 Experiment +hep-ex/0301035 Experiment +hep-ex/0301036 Experiment +hep-ex/0301037 Experiment +hep-ex/0302006 Experiment +hep-ex/0302008 Experiment +hep-ex/0302013 Experiment +hep-ex/0302017 Experiment +hep-ex/0302036 Experiment +hep-ex/0302041 Experiment +hep-ex/0303001 Experiment +hep-ex/0303003 Experiment +hep-ex/0303007 Experiment +hep-ex/0303014 Experiment +hep-ex/0303045 Experiment +hep-ex/0304022 Experiment +hep-ex/0304036 Experiment +hep-ex/0306014 Experiment +hep-ex/0306021 Experiment +hep-ex/0306042 Experiment +hep-ex/0306055 Experiment +hep-ex/0307001 Experiment +hep-ex/0307008 Experiment +hep-ex/0307055 Experiment +hep-ex/0307059 Experiment +hep-ex/0307066 Experiment +hep-ex/0308002 Experiment +hep-ex/0308010 Experiment +hep-ex/0308028 Experiment +hep-ex/0308063 Experiment +hep-ex/0308069 Experiment +hep-ex/0309010 Experiment +hep-ex/0309035 Experiment +hep-ex/0309045 Experiment +hep-ex/0309054 Experiment +hep-ex/0309059 Experiment +hep-ex/0309071 Experiment +hep-ex/0309073 Experiment +hep-ex/0309074 Experiment +hep-ex/0309079 Experiment +hep-ex/0310021 Experiment +hep-ex/0310053 Experiment +hep-ex/0310059 Experiment +hep-ex/0311001 Experiment +hep-ex/0311041 Experiment +hep-ex/0311054 Experiment +hep-ex/0312003 Experiment +hep-ex/0312006 Experiment +hep-ex/0312008 Experiment +hep-ex/0312038 Experiment +hep-ex/0312041 Experiment +hep-ex/0312045 Experiment +hep-ex/0312049 Experiment +hep-ex/0312052 Experiment +hep-ex/0312054 Experiment +hep-ex/0312063 Experiment +hep-ex/0312065 Experiment +hep-ex/0401030 Experiment +hep-ex/0401037 Experiment +hep-ex/0402009 Experiment +hep-ex/0402029 Experiment +hep-ex/0402039 Experiment +hep-ex/0403014 Experiment +hep-ex/0403029 Experiment +hep-ex/0403038 Experiment +hep-ex/0403043 Experiment +hep-ex/0403048 Experiment +hep-ex/0403050 Experiment +hep-ex/0404001 Experiment +hep-ex/0404041 Experiment +hep-ex/0405007 Experiment +hep-ex/0405009 Experiment +hep-ex/0405016 Experiment +hep-ex/0405074 Experiment +hep-ex/0405076 Experiment +hep-ex/0405078 Experiment +hep-ex/0406024 Experiment +hep-ex/0406032 Experiment +hep-ex/0406072 Experiment +hep-ex/0407023 Experiment +hep-ex/0407033 Experiment +hep-ex/0407042 Experiment +hep-ex/0409003 Experiment +hep-ex/0409042 Experiment +hep-ex/0409046 Experiment +hep-ex/0409051 Experiment +hep-ex/0409060 Experiment +hep-ex/0410025 Experiment +hep-ex/0410043 Experiment +hep-ex/0410046 Experiment +hep-ex/0410074 Experiment +hep-ex/0410080 Experiment +hep-ex/0410083 Experiment +hep-ex/0410085 Experiment +hep-ex/0410087 Experiment +hep-ex/0410089 Experiment +hep-ex/0410090 Experiment +hep-ex/0411007 Experiment +hep-ex/0411023 Experiment +hep-ex/0411026 Experiment +hep-ex/0411028 Experiment +hep-ex/0411042 Experiment +hep-ex/0411055 Experiment +hep-ex/0411058 Experiment +hep-ex/0411064 Experiment +hep-ex/0411074 Experiment +hep-ex/0411075 Experiment +hep-ex/0411083 Experiment +hep-ex/0412009 Experiment +hep-ex/0412060 Experiment +hep-ex/0412070 Experiment +hep-ex/0412074 Experiment +hep-ex/0412077 Experiment +hep-lat/0301004 Lattice +hep-lat/0301005 Lattice +hep-lat/0301006 Lattice +hep-lat/0301011 Lattice +hep-lat/0301019 Lattice +hep-lat/0301020 Lattice +hep-lat/0301021 Lattice +hep-lat/0301022 Lattice +hep-lat/0301023 Lattice +hep-lat/0301025 Lattice +hep-lat/0301026 Lattice +hep-lat/0301028 Lattice +hep-lat/0301029 Lattice +hep-lat/0302002 Lattice +hep-lat/0302004 Lattice +hep-lat/0302010 Lattice +hep-lat/0302012 Lattice +hep-lat/0302013 Lattice +hep-lat/0302014 Lattice +hep-lat/0302015 Lattice +hep-lat/0302016 Lattice +hep-lat/0302017 Lattice +hep-lat/0302018 Lattice +hep-lat/0302021 Lattice +hep-lat/0302023 Lattice +hep-lat/0303003 Lattice +hep-lat/0303006 Lattice +hep-lat/0303007 Lattice +hep-lat/0303011 Lattice +hep-lat/0303013 Lattice +hep-lat/0303014 Lattice +hep-lat/0303016 Lattice +hep-lat/0303017 Lattice +hep-lat/0303021 Lattice +hep-lat/0303027 Lattice +hep-lat/0304008 Lattice +hep-lat/0304010 Lattice +hep-lat/0304012 Lattice +hep-lat/0304013 Lattice +hep-lat/0304015 Lattice +hep-lat/0304017 Lattice +hep-lat/0305002 Lattice +hep-lat/0305003 Lattice +hep-lat/0305004 Lattice +hep-lat/0305005 Lattice +hep-lat/0305009 Lattice +hep-lat/0305010 Lattice +hep-lat/0305011 Lattice +hep-lat/0305013 Lattice +hep-lat/0305017 Lattice +hep-lat/0305019 Lattice +hep-lat/0305020 Lattice +hep-lat/0305022 Lattice +hep-lat/0305026 Lattice +hep-lat/0306001 Lattice +hep-lat/0306004 Lattice +hep-lat/0306006 Lattice +hep-lat/0306008 Lattice +hep-lat/0306010 Lattice +hep-lat/0306013 Lattice +hep-lat/0306014 Lattice +hep-lat/0306015 Lattice +hep-lat/0306016 Lattice +hep-lat/0306019 Lattice +hep-lat/0306022 Lattice +hep-lat/0306024 Lattice +hep-lat/0306031 Lattice +hep-lat/0306032 Lattice +hep-lat/0306034 Lattice +hep-lat/0306035 Lattice +hep-lat/0306036 Lattice +hep-lat/0306037 Lattice +hep-lat/0307003 Lattice +hep-lat/0307006 Lattice +hep-lat/0307007 Lattice +hep-lat/0307008 Lattice +hep-lat/0307009 Lattice +hep-lat/0307012 Lattice +hep-lat/0307017 Lattice +hep-lat/0307019 Lattice +hep-lat/0307022 Lattice +hep-lat/0307023 Lattice +hep-lat/0307025 Lattice +hep-lat/0307029 Lattice +hep-lat/0307031 Lattice +hep-lat/0308002 Lattice +hep-lat/0308003 Lattice +hep-lat/0308004 Lattice +hep-lat/0308007 Lattice +hep-lat/0308009 Lattice +hep-lat/0308010 Lattice +hep-lat/0308011 Lattice +hep-lat/0308012 Lattice +hep-lat/0308016 Lattice +hep-lat/0308018 Lattice +hep-lat/0308020 Lattice +hep-lat/0308022 Lattice +hep-lat/0308023 Lattice +hep-lat/0308026 Lattice +hep-lat/0308027 Lattice +hep-lat/0308028 Lattice +hep-lat/0308030 Lattice +hep-lat/0308031 Lattice +hep-lat/0308032 Lattice +hep-lat/0308034 Lattice +hep-lat/0308035 Lattice +hep-lat/0308037 Lattice +hep-lat/0309001 Lattice +hep-lat/0309005 Lattice +hep-lat/0309006 Lattice +hep-lat/0309009 Lattice +hep-lat/0309011 Lattice +hep-lat/0309012 Lattice +hep-lat/0309013 Lattice +hep-lat/0309014 Lattice +hep-lat/0309015 Lattice +hep-lat/0309017 Lattice +hep-lat/0309018 Lattice +hep-lat/0309019 Lattice +hep-lat/0309020 Lattice +hep-lat/0309021 Lattice +hep-lat/0309023 Lattice +hep-lat/0309024 Lattice +hep-lat/0309025 Lattice +hep-lat/0309027 Lattice +hep-lat/0309029 Lattice +hep-lat/0309030 Lattice +hep-lat/0309032 Lattice +hep-lat/0309036 Lattice +hep-lat/0309037 Lattice +hep-lat/0309039 Lattice +hep-lat/0309044 Lattice +hep-lat/0309046 Lattice +hep-lat/0309048 Lattice +hep-lat/0309049 Lattice +hep-lat/0309050 Lattice +hep-lat/0309051 Lattice +hep-lat/0309052 Lattice +hep-lat/0309053 Lattice +hep-lat/0309054 Lattice +hep-lat/0309056 Lattice +hep-lat/0309061 Lattice +hep-lat/0309062 Lattice +hep-lat/0309063 Lattice +hep-lat/0309064 Lattice +hep-lat/0309067 Lattice +hep-lat/0309068 Lattice +hep-lat/0309070 Lattice +hep-lat/0309071 Lattice +hep-lat/0309072 Lattice +hep-lat/0309074 Lattice +hep-lat/0309075 Lattice +hep-lat/0309076 Lattice +hep-lat/0309077 Lattice +hep-lat/0309082 Lattice +hep-lat/0309083 Lattice +hep-lat/0309084 Lattice +hep-lat/0309085 Lattice +hep-lat/0309086 Lattice +hep-lat/0309089 Lattice +hep-lat/0309093 Lattice +hep-lat/0309097 Lattice +hep-lat/0309098 Lattice +hep-lat/0309100 Lattice +hep-lat/0309102 Lattice +hep-lat/0309104 Lattice +hep-lat/0309106 Lattice +hep-lat/0309107 Lattice +hep-lat/0309108 Lattice +hep-lat/0309109 Lattice +hep-lat/0309110 Lattice +hep-lat/0309113 Lattice +hep-lat/0309114 Lattice +hep-lat/0309115 Lattice +hep-lat/0309116 Lattice +hep-lat/0309121 Lattice +hep-lat/0309124 Lattice +hep-lat/0309125 Lattice +hep-lat/0309126 Lattice +hep-lat/0309129 Lattice +hep-lat/0309130 Lattice +hep-lat/0309131 Lattice +hep-lat/0309134 Lattice +hep-lat/0309135 Lattice +hep-lat/0309136 Lattice +hep-lat/0309140 Lattice +hep-lat/0309142 Lattice +hep-lat/0309144 Lattice +hep-lat/0309145 Lattice +hep-lat/0309146 Lattice +hep-lat/0309147 Lattice +hep-lat/0309148 Lattice +hep-lat/0309149 Lattice +hep-lat/0309150 Lattice +hep-lat/0309151 Lattice +hep-lat/0309152 Lattice +hep-lat/0309153 Lattice +hep-lat/0309157 Lattice +hep-lat/0309158 Lattice +hep-lat/0309159 Lattice +hep-lat/0309161 Lattice +hep-lat/0309163 Lattice +hep-lat/0309164 Lattice +hep-lat/0309165 Lattice +hep-lat/0309166 Lattice +hep-lat/0309168 Lattice +hep-lat/0309169 Lattice +hep-lat/0309171 Lattice +hep-lat/0309173 Lattice +hep-lat/0309174 Lattice +hep-lat/0309175 Lattice +hep-lat/0309176 Lattice +hep-lat/0309177 Lattice +hep-lat/0309178 Lattice +hep-lat/0309179 Lattice +hep-lat/0309180 Lattice +hep-lat/0309181 Lattice +hep-lat/0309182 Lattice +hep-lat/0309183 Lattice +hep-lat/0309184 Lattice +hep-lat/0309189 Lattice +hep-lat/0309190 Lattice +hep-lat/0309191 Lattice +hep-lat/0310005 Lattice +hep-lat/0310006 Lattice +hep-lat/0310007 Lattice +hep-lat/0310008 Lattice +hep-lat/0310009 Lattice +hep-lat/0310012 Lattice +hep-lat/0310014 Lattice +hep-lat/0310015 Lattice +hep-lat/0310016 Lattice +hep-lat/0310017 Lattice +hep-lat/0310019 Lattice +hep-lat/0310020 Lattice +hep-lat/0310022 Lattice +hep-lat/0310024 Lattice +hep-lat/0310026 Lattice +hep-lat/0310029 Lattice +hep-lat/0310032 Lattice +hep-lat/0310036 Lattice +hep-lat/0310040 Lattice +hep-lat/0310041 Lattice +hep-lat/0310042 Lattice +hep-lat/0310044 Lattice +hep-lat/0310045 Lattice +hep-lat/0310046 Lattice +hep-lat/0310047 Lattice +hep-lat/0310048 Lattice +hep-lat/0310049 Lattice +hep-lat/0310051 Lattice +hep-lat/0310052 Lattice +hep-lat/0310054 Lattice +hep-lat/0310055 Lattice +hep-lat/0310056 Lattice +hep-lat/0310058 Lattice +hep-lat/0310060 Lattice +hep-lat/0310062 Lattice +hep-lat/0310064 Lattice +hep-lat/0311003 Lattice +hep-lat/0311004 Lattice +hep-lat/0311005 Lattice +hep-lat/0311006 Lattice +hep-lat/0311007 Lattice +hep-lat/0311008 Lattice +hep-lat/0311011 Lattice +hep-lat/0311012 Lattice +hep-lat/0311013 Lattice +hep-lat/0311018 Lattice +hep-lat/0311020 Lattice +hep-lat/0311021 Lattice +hep-lat/0311024 Lattice +hep-lat/0311026 Lattice +hep-lat/0311027 Lattice +hep-lat/0311028 Lattice +hep-lat/0311029 Lattice +hep-lat/0311033 Lattice +hep-lat/0311034 Lattice +hep-lat/0311035 Lattice +hep-lat/0311036 Lattice +hep-lat/0311039 Lattice +hep-lat/0311041 Lattice +hep-lat/0311042 Lattice +hep-lat/0312009 Lattice +hep-lat/0312010 Lattice +hep-lat/0312012 Lattice +hep-lat/0312013 Lattice +hep-lat/0312016 Lattice +hep-lat/0312017 Lattice +hep-lat/0312018 Lattice +hep-lat/0312021 Lattice +hep-lat/0312022 Lattice +hep-lat/0312023 Lattice +hep-lat/0312025 Lattice +hep-lat/0312028 Lattice +hep-lat/0312033 Lattice +hep-lat/0312034 Lattice +hep-lat/0312037 Lattice +hep-lat/0312038 Lattice +hep-lat/0401005 Lattice +hep-lat/0401007 Lattice +hep-lat/0401009 Lattice +hep-lat/0401011 Lattice +hep-lat/0401012 Lattice +hep-lat/0401016 Lattice +hep-lat/0401017 Lattice +hep-lat/0401018 Lattice +hep-lat/0401020 Lattice +hep-lat/0401024 Lattice +hep-lat/0401027 Lattice +hep-lat/0401028 Lattice +hep-lat/0401033 Lattice +hep-lat/0402001 Lattice +hep-lat/0402004 Lattice +hep-lat/0402005 Lattice +hep-lat/0402006 Lattice +hep-lat/0402007 Lattice +hep-lat/0402008 Lattice +hep-lat/0402009 Lattice +hep-lat/0402010 Lattice +hep-lat/0402017 Lattice +hep-lat/0402018 Lattice +hep-lat/0402019 Lattice +hep-lat/0402020 Lattice +hep-lat/0402022 Lattice +hep-lat/0402027 Lattice +hep-lat/0402029 Lattice +hep-lat/0402031 Lattice +hep-lat/0402033 Lattice +hep-lat/0402037 Lattice +hep-lat/0403001 Lattice +hep-lat/0403005 Lattice +hep-lat/0403008 Lattice +hep-lat/0403010 Lattice +hep-lat/0403011 Lattice +hep-lat/0403014 Lattice +hep-lat/0403016 Lattice +hep-lat/0403017 Lattice +hep-lat/0403022 Lattice +hep-lat/0403024 Lattice +hep-lat/0403025 Lattice +hep-lat/0403026 Lattice +hep-lat/0403027 Lattice +hep-lat/0403028 Lattice +hep-lat/0403029 Lattice +hep-lat/0404001 Lattice +hep-lat/0404002 Lattice +hep-lat/0404003 Lattice +hep-lat/0404004 Lattice +hep-lat/0404008 Lattice +hep-lat/0404011 Lattice +hep-lat/0404013 Lattice +hep-lat/0404015 Lattice +hep-lat/0404017 Lattice +hep-lat/0405002 Lattice +hep-lat/0405003 Lattice +hep-lat/0405005 Lattice +hep-lat/0405006 Lattice +hep-lat/0405007 Lattice +hep-lat/0405011 Lattice +hep-lat/0405012 Lattice +hep-lat/0405013 Lattice +hep-lat/0405014 Lattice +hep-lat/0405016 Lattice +hep-lat/0405017 Lattice +hep-lat/0405019 Lattice +hep-lat/0405020 Lattice +hep-lat/0405024 Lattice +hep-lat/0406003 Lattice +hep-lat/0406005 Lattice +hep-lat/0406014 Lattice +hep-lat/0406017 Lattice +hep-lat/0406018 Lattice +hep-lat/0406019 Lattice +hep-lat/0406020 Lattice +hep-lat/0406021 Lattice +hep-lat/0406022 Lattice +hep-lat/0406024 Lattice +hep-lat/0406025 Lattice +hep-lat/0406027 Lattice +hep-lat/0406030 Lattice +hep-lat/0406034 Lattice +hep-lat/0406035 Lattice +hep-lat/0406038 Lattice +hep-lat/0406039 Lattice +hep-lat/0406040 Lattice +hep-lat/0406041 Lattice +hep-lat/0407001 Lattice +hep-lat/0407003 Lattice +hep-lat/0407005 Lattice +hep-lat/0407008 Lattice +hep-lat/0407009 Lattice +hep-lat/0407014 Lattice +hep-lat/0407019 Lattice +hep-lat/0407022 Lattice +hep-lat/0407023 Lattice +hep-lat/0407025 Lattice +hep-lat/0407027 Lattice +hep-lat/0407030 Lattice +hep-lat/0407031 Lattice +hep-lat/0407034 Lattice +hep-lat/0407035 Lattice +hep-lat/0407038 Lattice +hep-lat/0407040 Lattice +hep-lat/0408001 Lattice +hep-lat/0408004 Lattice +hep-lat/0408005 Lattice +hep-lat/0408011 Lattice +hep-lat/0408012 Lattice +hep-lat/0408013 Lattice +hep-lat/0408014 Lattice +hep-lat/0408016 Lattice +hep-lat/0408019 Lattice +hep-lat/0408020 Lattice +hep-lat/0408021 Lattice +hep-lat/0408022 Lattice +hep-lat/0408023 Lattice +hep-lat/0408026 Lattice +hep-lat/0408027 Lattice +hep-lat/0408028 Lattice +hep-lat/0408030 Lattice +hep-lat/0408033 Lattice +hep-lat/0408036 Lattice +hep-lat/0408037 Lattice +hep-lat/0408038 Lattice +hep-lat/0408039 Lattice +hep-lat/0408040 Lattice +hep-lat/0408041 Lattice +hep-lat/0408043 Lattice +hep-lat/0408045 Lattice +hep-lat/0408048 Lattice +hep-lat/0409002 Lattice +hep-lat/0409004 Lattice +hep-lat/0409005 Lattice +hep-lat/0409006 Lattice +hep-lat/0409011 Lattice +hep-lat/0409012 Lattice +hep-lat/0409013 Lattice +hep-lat/0409015 Lattice +hep-lat/0409017 Lattice +hep-lat/0409019 Lattice +hep-lat/0409021 Lattice +hep-lat/0409022 Lattice +hep-lat/0409023 Lattice +hep-lat/0409024 Lattice +hep-lat/0409027 Lattice +hep-lat/0409028 Lattice +hep-lat/0409029 Lattice +hep-lat/0409030 Lattice +hep-lat/0409031 Lattice +hep-lat/0409033 Lattice +hep-lat/0409035 Lattice +hep-lat/0409036 Lattice +hep-lat/0409037 Lattice +hep-lat/0409038 Lattice +hep-lat/0409039 Lattice +hep-lat/0409040 Lattice +hep-lat/0409042 Lattice +hep-lat/0409044 Lattice +hep-lat/0409048 Lattice +hep-lat/0409050 Lattice +hep-lat/0409052 Lattice +hep-lat/0409053 Lattice +hep-lat/0409055 Lattice +hep-lat/0409056 Lattice +hep-lat/0409057 Lattice +hep-lat/0409058 Lattice +hep-lat/0409059 Lattice +hep-lat/0409060 Lattice +hep-lat/0409062 Lattice +hep-lat/0409065 Lattice +hep-lat/0409067 Lattice +hep-lat/0409068 Lattice +hep-lat/0409070 Lattice +hep-lat/0409071 Lattice +hep-lat/0409072 Lattice +hep-lat/0409073 Lattice +hep-lat/0409074 Lattice +hep-lat/0409077 Lattice +hep-lat/0409078 Lattice +hep-lat/0409079 Lattice +hep-lat/0409085 Lattice +hep-lat/0409088 Lattice +hep-lat/0409089 Lattice +hep-lat/0409092 Lattice +hep-lat/0409094 Lattice +hep-lat/0409096 Lattice +hep-lat/0409098 Lattice +hep-lat/0409099 Lattice +hep-lat/0409100 Lattice +hep-lat/0409102 Lattice +hep-lat/0409103 Lattice +hep-lat/0409104 Lattice +hep-lat/0409105 Lattice +hep-lat/0409107 Lattice +hep-lat/0409108 Lattice +hep-lat/0409111 Lattice +hep-lat/0409112 Lattice +hep-lat/0409113 Lattice +hep-lat/0409120 Lattice +hep-lat/0409121 Lattice +hep-lat/0409123 Lattice +hep-lat/0409127 Lattice +hep-lat/0409129 Lattice +hep-lat/0409131 Lattice +hep-lat/0409135 Lattice +hep-lat/0409136 Lattice +hep-lat/0409138 Lattice +hep-lat/0409139 Lattice +hep-lat/0409140 Lattice +hep-lat/0409141 Lattice +hep-lat/0409142 Lattice +hep-lat/0409144 Lattice +hep-lat/0409146 Lattice +hep-lat/0409149 Lattice +hep-lat/0409150 Lattice +hep-lat/0409152 Lattice +hep-lat/0409156 Lattice +hep-lat/0409158 Lattice +hep-lat/0409159 Lattice +hep-lat/0409160 Lattice +hep-lat/0409167 Lattice +hep-lat/0410001 Lattice +hep-lat/0410003 Lattice +hep-lat/0410006 Lattice +hep-lat/0410007 Lattice +hep-lat/0410008 Lattice +hep-lat/0410015 Lattice +hep-lat/0410016 Lattice +hep-lat/0410018 Lattice +hep-lat/0410020 Lattice +hep-lat/0410027 Lattice +hep-lat/0410029 Lattice +hep-lat/0410032 Lattice +hep-lat/0410033 Lattice +hep-lat/0410035 Lattice +hep-lat/0410036 Lattice +hep-lat/0410037 Lattice +hep-lat/0410038 Lattice +hep-lat/0410039 Lattice +hep-lat/0410042 Lattice +hep-lat/0410043 Lattice +hep-lat/0410047 Lattice +hep-lat/0410048 Lattice +hep-lat/0410049 Lattice +hep-lat/0410050 Lattice +hep-lat/0411002 Lattice +hep-lat/0411003 Lattice +hep-lat/0411004 Lattice +hep-lat/0411005 Lattice +hep-lat/0411007 Lattice +hep-lat/0411008 Lattice +hep-lat/0411009 Lattice +hep-lat/0411011 Lattice +hep-lat/0411014 Lattice +hep-lat/0411016 Lattice +hep-lat/0411017 Lattice +hep-lat/0411018 Lattice +hep-lat/0411021 Lattice +hep-lat/0411023 Lattice +hep-lat/0411024 Lattice +hep-lat/0411030 Lattice +hep-lat/0411032 Lattice +hep-lat/0411037 Lattice +hep-lat/0411038 Lattice +hep-lat/0412001 Lattice +hep-lat/0412003 Lattice +hep-lat/0412014 Lattice +hep-lat/0412015 Lattice +hep-lat/0412020 Lattice +hep-lat/0412024 Lattice +hep-lat/0412025 Lattice +hep-lat/0412026 Lattice +hep-lat/0412027 Lattice +hep-lat/0412028 Lattice +hep-lat/0412030 Lattice +hep-lat/0412032 Lattice +hep-lat/0412033 Lattice +hep-lat/0412036 Lattice +hep-lat/0412037 Lattice +hep-lat/0412038 Lattice +hep-lat/0412039 Lattice +hep-lat/0412040 Lattice +hep-lat/0412041 Lattice +hep-ph/0301001 Phenomenology +hep-ph/0301002 Phenomenology +hep-ph/0301004 Phenomenology +hep-ph/0301007 Phenomenology +hep-ph/0301008 Phenomenology +hep-ph/0301012 Phenomenology +hep-ph/0301013 Phenomenology +hep-ph/0301021 Phenomenology +hep-ph/0301033 Phenomenology +hep-ph/0301034 Phenomenology +hep-ph/0301038 Phenomenology +hep-ph/0301040 Phenomenology +hep-ph/0301041 Phenomenology +hep-ph/0301043 Phenomenology +hep-ph/0301046 Phenomenology +hep-ph/0301049 Phenomenology +hep-ph/0301051 Phenomenology +hep-ph/0301055 Phenomenology +hep-ph/0301056 Phenomenology +hep-ph/0301057 Phenomenology +hep-ph/0301059 Phenomenology +hep-ph/0301060 Phenomenology +hep-ph/0301063 Phenomenology +hep-ph/0301069 Phenomenology +hep-ph/0301071 Phenomenology +hep-ph/0301075 Phenomenology +hep-ph/0301076 Phenomenology +hep-ph/0301077 Phenomenology +hep-ph/0301082 Phenomenology +hep-ph/0301086 Phenomenology +hep-ph/0301087 Phenomenology +hep-ph/0301088 Phenomenology +hep-ph/0301091 Phenomenology +hep-ph/0301099 Phenomenology +hep-ph/0301106 Phenomenology +hep-ph/0301108 Phenomenology +hep-ph/0301109 Phenomenology +hep-ph/0301114 Phenomenology +hep-ph/0301124 Phenomenology +hep-ph/0301133 Phenomenology +hep-ph/0301135 Phenomenology +hep-ph/0301136 Phenomenology +hep-ph/0301139 Phenomenology +hep-ph/0301141 Phenomenology +hep-ph/0301143 Phenomenology +hep-ph/0301154 Phenomenology +hep-ph/0301156 Phenomenology +hep-ph/0301159 Phenomenology +hep-ph/0301167 Phenomenology +hep-ph/0301171 Phenomenology +hep-ph/0301179 Phenomenology +hep-ph/0301184 Phenomenology +hep-ph/0301185 Phenomenology +hep-ph/0301186 Phenomenology +hep-ph/0301187 Phenomenology +hep-ph/0301197 Phenomenology +hep-ph/0301198 Phenomenology +hep-ph/0301201 Phenomenology +hep-ph/0301202 Phenomenology +hep-ph/0301203 Phenomenology +hep-ph/0301208 Phenomenology +hep-ph/0301210 Phenomenology +hep-ph/0301214 Phenomenology +hep-ph/0301216 Phenomenology +hep-ph/0301219 Phenomenology +hep-ph/0301223 Phenomenology +hep-ph/0301225 Phenomenology +hep-ph/0301226 Phenomenology +hep-ph/0301227 Phenomenology +hep-ph/0301228 Phenomenology +hep-ph/0301229 Phenomenology +hep-ph/0301234 Phenomenology +hep-ph/0301237 Phenomenology +hep-ph/0301240 Phenomenology +hep-ph/0301245 Phenomenology +hep-ph/0301247 Phenomenology +hep-ph/0301253 Phenomenology +hep-ph/0301257 Phenomenology +hep-ph/0301258 Phenomenology +hep-ph/0301260 Phenomenology +hep-ph/0301264 Phenomenology +hep-ph/0301268 Phenomenology +hep-ph/0301269 Phenomenology +hep-ph/0301270 Phenomenology +hep-ph/0301272 Phenomenology +hep-ph/0301273 Phenomenology +hep-ph/0301274 Phenomenology +hep-ph/0301277 Phenomenology +hep-ph/0302001 Phenomenology +hep-ph/0302002 Phenomenology +hep-ph/0302007 Phenomenology +hep-ph/0302014 Phenomenology +hep-ph/0302015 Phenomenology +hep-ph/0302017 Phenomenology +hep-ph/0302025 Phenomenology +hep-ph/0302026 Phenomenology +hep-ph/0302027 Phenomenology +hep-ph/0302028 Phenomenology +hep-ph/0302029 Phenomenology +hep-ph/0302033 Phenomenology +hep-ph/0302034 Phenomenology +hep-ph/0302035 Phenomenology +hep-ph/0302042 Phenomenology +hep-ph/0302043 Phenomenology +hep-ph/0302049 Phenomenology +hep-ph/0302054 Phenomenology +hep-ph/0302055 Phenomenology +hep-ph/0302056 Phenomenology +hep-ph/0302067 Phenomenology +hep-ph/0302069 Phenomenology +hep-ph/0302070 Phenomenology +hep-ph/0302071 Phenomenology +hep-ph/0302072 Phenomenology +hep-ph/0302073 Phenomenology +hep-ph/0302077 Phenomenology +hep-ph/0302078 Phenomenology +hep-ph/0302087 Phenomenology +hep-ph/0302088 Phenomenology +hep-ph/0302090 Phenomenology +hep-ph/0302091 Phenomenology +hep-ph/0302092 Phenomenology +hep-ph/0302096 Phenomenology +hep-ph/0302097 Phenomenology +hep-ph/0302100 Phenomenology +hep-ph/0302101 Phenomenology +hep-ph/0302105 Phenomenology +hep-ph/0302107 Phenomenology +hep-ph/0302110 Phenomenology +hep-ph/0302111 Phenomenology +hep-ph/0302118 Phenomenology +hep-ph/0302123 Phenomenology +hep-ph/0302126 Phenomenology +hep-ph/0302127 Phenomenology +hep-ph/0302129 Phenomenology +hep-ph/0302136 Phenomenology +hep-ph/0302142 Phenomenology +hep-ph/0302147 Phenomenology +hep-ph/0302148 Phenomenology +hep-ph/0302149 Phenomenology +hep-ph/0302152 Phenomenology +hep-ph/0302154 Phenomenology +hep-ph/0302158 Phenomenology +hep-ph/0302159 Phenomenology +hep-ph/0302163 Phenomenology +hep-ph/0302167 Phenomenology +hep-ph/0302172 Phenomenology +hep-ph/0302173 Phenomenology +hep-ph/0302180 Phenomenology +hep-ph/0302181 Phenomenology +hep-ph/0302184 Phenomenology +hep-ph/0302186 Phenomenology +hep-ph/0302193 Phenomenology +hep-ph/0302195 Phenomenology +hep-ph/0302199 Phenomenology +hep-ph/0302202 Phenomenology +hep-ph/0302203 Phenomenology +hep-ph/0302204 Phenomenology +hep-ph/0302205 Phenomenology +hep-ph/0302206 Phenomenology +hep-ph/0302207 Phenomenology +hep-ph/0302208 Phenomenology +hep-ph/0302209 Phenomenology +hep-ph/0302211 Phenomenology +hep-ph/0302216 Phenomenology +hep-ph/0302218 Phenomenology +hep-ph/0302219 Phenomenology +hep-ph/0302220 Phenomenology +hep-ph/0302222 Phenomenology +hep-ph/0302224 Phenomenology +hep-ph/0302231 Phenomenology +hep-ph/0302232 Phenomenology +hep-ph/0302235 Phenomenology +hep-ph/0302236 Phenomenology +hep-ph/0302240 Phenomenology +hep-ph/0302243 Phenomenology +hep-ph/0302246 Phenomenology +hep-ph/0302247 Phenomenology +hep-ph/0302253 Phenomenology +hep-ph/0302255 Phenomenology +hep-ph/0302256 Phenomenology +hep-ph/0302259 Phenomenology +hep-ph/0302261 Phenomenology +hep-ph/0302264 Phenomenology +hep-ph/0302266 Phenomenology +hep-ph/0302268 Phenomenology +hep-ph/0302271 Phenomenology +hep-ph/0302273 Phenomenology +hep-ph/0302274 Phenomenology +hep-ph/0303002 Phenomenology +hep-ph/0303004 Phenomenology +hep-ph/0303005 Phenomenology +hep-ph/0303007 Phenomenology +hep-ph/0303008 Phenomenology +hep-ph/0303009 Phenomenology +hep-ph/0303011 Phenomenology +hep-ph/0303012 Phenomenology +hep-ph/0303013 Phenomenology +hep-ph/0303014 Phenomenology +hep-ph/0303017 Phenomenology +hep-ph/0303019 Phenomenology +hep-ph/0303020 Phenomenology +hep-ph/0303024 Phenomenology +hep-ph/0303026 Phenomenology +hep-ph/0303027 Phenomenology +hep-ph/0303030 Phenomenology +hep-ph/0303031 Phenomenology +hep-ph/0303033 Phenomenology +hep-ph/0303035 Phenomenology +hep-ph/0303037 Phenomenology +hep-ph/0303040 Phenomenology +hep-ph/0303041 Phenomenology +hep-ph/0303042 Phenomenology +hep-ph/0303045 Phenomenology +hep-ph/0303049 Phenomenology +hep-ph/0303059 Phenomenology +hep-ph/0303061 Phenomenology +hep-ph/0303062 Phenomenology +hep-ph/0303063 Phenomenology +hep-ph/0303068 Phenomenology +hep-ph/0303069 Phenomenology +hep-ph/0303074 Phenomenology +hep-ph/0303076 Phenomenology +hep-ph/0303080 Phenomenology +hep-ph/0303084 Phenomenology +hep-ph/0303085 Phenomenology +hep-ph/0303086 Phenomenology +hep-ph/0303087 Phenomenology +hep-ph/0303089 Phenomenology +hep-ph/0303095 Phenomenology +hep-ph/0303100 Phenomenology +hep-ph/0303102 Phenomenology +hep-ph/0303105 Phenomenology +hep-ph/0303109 Phenomenology +hep-ph/0303115 Phenomenology +hep-ph/0303117 Phenomenology +hep-ph/0303119 Phenomenology +hep-ph/0303120 Phenomenology +hep-ph/0303122 Phenomenology +hep-ph/0303123 Phenomenology +hep-ph/0303124 Phenomenology +hep-ph/0303126 Phenomenology +hep-ph/0303132 Phenomenology +hep-ph/0303137 Phenomenology +hep-ph/0303142 Phenomenology +hep-ph/0303143 Phenomenology +hep-ph/0303147 Phenomenology +hep-ph/0303154 Phenomenology +hep-ph/0303156 Phenomenology +hep-ph/0303157 Phenomenology +hep-ph/0303160 Phenomenology +hep-ph/0303161 Phenomenology +hep-ph/0303162 Phenomenology +hep-ph/0303163 Phenomenology +hep-ph/0303165 Phenomenology +hep-ph/0303166 Phenomenology +hep-ph/0303167 Phenomenology +hep-ph/0303169 Phenomenology +hep-ph/0303170 Phenomenology +hep-ph/0303175 Phenomenology +hep-ph/0303177 Phenomenology +hep-ph/0303181 Phenomenology +hep-ph/0303184 Phenomenology +hep-ph/0303186 Phenomenology +hep-ph/0303187 Phenomenology +hep-ph/0303189 Phenomenology +hep-ph/0303192 Phenomenology +hep-ph/0303193 Phenomenology +hep-ph/0303195 Phenomenology +hep-ph/0303198 Phenomenology +hep-ph/0303207 Phenomenology +hep-ph/0303208 Phenomenology +hep-ph/0303210 Phenomenology +hep-ph/0303214 Phenomenology +hep-ph/0303216 Phenomenology +hep-ph/0303217 Phenomenology +hep-ph/0303219 Phenomenology +hep-ph/0303220 Phenomenology +hep-ph/0303222 Phenomenology +hep-ph/0303225 Phenomenology +hep-ph/0303226 Phenomenology +hep-ph/0303227 Phenomenology +hep-ph/0303231 Phenomenology +hep-ph/0303234 Phenomenology +hep-ph/0303240 Phenomenology +hep-ph/0303249 Phenomenology +hep-ph/0303250 Phenomenology +hep-ph/0303252 Phenomenology +hep-ph/0303258 Phenomenology +hep-ph/0304008 Phenomenology +hep-ph/0304013 Phenomenology +hep-ph/0304016 Phenomenology +hep-ph/0304019 Phenomenology +hep-ph/0304024 Phenomenology +hep-ph/0304028 Phenomenology +hep-ph/0304031 Phenomenology +hep-ph/0304033 Phenomenology +hep-ph/0304035 Phenomenology +hep-ph/0304037 Phenomenology +hep-ph/0304048 Phenomenology +hep-ph/0304052 Phenomenology +hep-ph/0304054 Phenomenology +hep-ph/0304055 Phenomenology +hep-ph/0304059 Phenomenology +hep-ph/0304066 Phenomenology +hep-ph/0304067 Phenomenology +hep-ph/0304068 Phenomenology +hep-ph/0304071 Phenomenology +hep-ph/0304072 Phenomenology +hep-ph/0304077 Phenomenology +hep-ph/0304079 Phenomenology +hep-ph/0304084 Phenomenology +hep-ph/0304088 Phenomenology +hep-ph/0304091 Phenomenology +hep-ph/0304096 Phenomenology +hep-ph/0304099 Phenomenology +hep-ph/0304104 Phenomenology +hep-ph/0304107 Phenomenology +hep-ph/0304108 Phenomenology +hep-ph/0304111 Phenomenology +hep-ph/0304112 Phenomenology +hep-ph/0304113 Phenomenology +hep-ph/0304116 Phenomenology +hep-ph/0304117 Phenomenology +hep-ph/0304121 Phenomenology +hep-ph/0304123 Phenomenology +hep-ph/0304124 Phenomenology +hep-ph/0304125 Phenomenology +hep-ph/0304126 Phenomenology +hep-ph/0304127 Phenomenology +hep-ph/0304137 Phenomenology +hep-ph/0304145 Phenomenology +hep-ph/0304147 Phenomenology +hep-ph/0304148 Phenomenology +hep-ph/0304149 Phenomenology +hep-ph/0304150 Phenomenology +hep-ph/0304152 Phenomenology +hep-ph/0304153 Phenomenology +hep-ph/0304154 Phenomenology +hep-ph/0304155 Phenomenology +hep-ph/0304156 Phenomenology +hep-ph/0304159 Phenomenology +hep-ph/0304160 Phenomenology +hep-ph/0304162 Phenomenology +hep-ph/0304163 Phenomenology +hep-ph/0304164 Phenomenology +hep-ph/0304170 Phenomenology +hep-ph/0304171 Phenomenology +hep-ph/0304174 Phenomenology +hep-ph/0304175 Phenomenology +hep-ph/0304185 Phenomenology +hep-ph/0304189 Phenomenology +hep-ph/0304191 Phenomenology +hep-ph/0304192 Phenomenology +hep-ph/0304194 Phenomenology +hep-ph/0304195 Phenomenology +hep-ph/0304207 Phenomenology +hep-ph/0304209 Phenomenology +hep-ph/0304213 Phenomenology +hep-ph/0304215 Phenomenology +hep-ph/0304219 Phenomenology +hep-ph/0304222 Phenomenology +hep-ph/0304227 Phenomenology +hep-ph/0304228 Phenomenology +hep-ph/0304230 Phenomenology +hep-ph/0304232 Phenomenology +hep-ph/0304238 Phenomenology +hep-ph/0304241 Phenomenology +hep-ph/0304243 Phenomenology +hep-ph/0304246 Phenomenology +hep-ph/0304254 Phenomenology +hep-ph/0304256 Phenomenology +hep-ph/0304265 Phenomenology +hep-ph/0304267 Phenomenology +hep-ph/0304274 Phenomenology +hep-ph/0304276 Phenomenology +hep-ph/0304282 Phenomenology +hep-ph/0304285 Phenomenology +hep-ph/0304290 Phenomenology +hep-ph/0304293 Phenomenology +hep-ph/0304294 Phenomenology +hep-ph/0304296 Phenomenology +hep-ph/0304297 Phenomenology +hep-ph/0304302 Phenomenology +hep-ph/0304304 Phenomenology +hep-ph/0305001 Phenomenology +hep-ph/0305002 Phenomenology +hep-ph/0305006 Phenomenology +hep-ph/0305007 Phenomenology +hep-ph/0305011 Phenomenology +hep-ph/0305014 Phenomenology +hep-ph/0305015 Phenomenology +hep-ph/0305017 Phenomenology +hep-ph/0305018 Phenomenology +hep-ph/0305027 Phenomenology +hep-ph/0305029 Phenomenology +hep-ph/0305030 Phenomenology +hep-ph/0305031 Phenomenology +hep-ph/0305032 Phenomenology +hep-ph/0305033 Phenomenology +hep-ph/0305037 Phenomenology +hep-ph/0305039 Phenomenology +hep-ph/0305041 Phenomenology +hep-ph/0305050 Phenomenology +hep-ph/0305052 Phenomenology +hep-ph/0305055 Phenomenology +hep-ph/0305056 Phenomenology +hep-ph/0305058 Phenomenology +hep-ph/0305059 Phenomenology +hep-ph/0305066 Phenomenology +hep-ph/0305067 Phenomenology +hep-ph/0305068 Phenomenology +hep-ph/0305070 Phenomenology +hep-ph/0305072 Phenomenology +hep-ph/0305073 Phenomenology +hep-ph/0305077 Phenomenology +hep-ph/0305078 Phenomenology +hep-ph/0305079 Phenomenology +hep-ph/0305080 Phenomenology +hep-ph/0305084 Phenomenology +hep-ph/0305086 Phenomenology +hep-ph/0305088 Phenomenology +hep-ph/0305097 Phenomenology +hep-ph/0305098 Phenomenology +hep-ph/0305099 Phenomenology +hep-ph/0305100 Phenomenology +hep-ph/0305101 Phenomenology +hep-ph/0305103 Phenomenology +hep-ph/0305110 Phenomenology +hep-ph/0305113 Phenomenology +hep-ph/0305115 Phenomenology +hep-ph/0305116 Phenomenology +hep-ph/0305118 Phenomenology +hep-ph/0305120 Phenomenology +hep-ph/0305123 Phenomenology +hep-ph/0305128 Phenomenology +hep-ph/0305132 Phenomenology +hep-ph/0305142 Phenomenology +hep-ph/0305143 Phenomenology +hep-ph/0305144 Phenomenology +hep-ph/0305155 Phenomenology +hep-ph/0305166 Phenomenology +hep-ph/0305168 Phenomenology +hep-ph/0305173 Phenomenology +hep-ph/0305174 Phenomenology +hep-ph/0305175 Phenomenology +hep-ph/0305176 Phenomenology +hep-ph/0305179 Phenomenology +hep-ph/0305180 Phenomenology +hep-ph/0305184 Phenomenology +hep-ph/0305186 Phenomenology +hep-ph/0305189 Phenomenology +hep-ph/0305190 Phenomenology +hep-ph/0305194 Phenomenology +hep-ph/0305195 Phenomenology +hep-ph/0305198 Phenomenology +hep-ph/0305199 Phenomenology +hep-ph/0305202 Phenomenology +hep-ph/0305203 Phenomenology +hep-ph/0305210 Phenomenology +hep-ph/0305211 Phenomenology +hep-ph/0305215 Phenomenology +hep-ph/0305223 Phenomenology +hep-ph/0305224 Phenomenology +hep-ph/0305225 Phenomenology +hep-ph/0305226 Phenomenology +hep-ph/0305227 Phenomenology +hep-ph/0305229 Phenomenology +hep-ph/0305233 Phenomenology +hep-ph/0305235 Phenomenology +hep-ph/0305236 Phenomenology +hep-ph/0305238 Phenomenology +hep-ph/0305248 Phenomenology +hep-ph/0305251 Phenomenology +hep-ph/0305252 Phenomenology +hep-ph/0305255 Phenomenology +hep-ph/0305256 Phenomenology +hep-ph/0305257 Phenomenology +hep-ph/0305258 Phenomenology +hep-ph/0305260 Phenomenology +hep-ph/0305265 Phenomenology +hep-ph/0305270 Phenomenology +hep-ph/0305271 Phenomenology +hep-ph/0305272 Phenomenology +hep-ph/0305276 Phenomenology +hep-ph/0305277 Phenomenology +hep-ph/0305279 Phenomenology +hep-ph/0305280 Phenomenology +hep-ph/0305281 Phenomenology +hep-ph/0305283 Phenomenology +hep-ph/0305284 Phenomenology +hep-ph/0305287 Phenomenology +hep-ph/0305290 Phenomenology +hep-ph/0305293 Phenomenology +hep-ph/0305294 Phenomenology +hep-ph/0305297 Phenomenology +hep-ph/0305298 Phenomenology +hep-ph/0305307 Phenomenology +hep-ph/0305310 Phenomenology +hep-ph/0305311 Phenomenology +hep-ph/0305316 Phenomenology +hep-ph/0305319 Phenomenology +hep-ph/0305321 Phenomenology +hep-ph/0305322 Phenomenology +hep-ph/0305324 Phenomenology +hep-ph/0305326 Phenomenology +hep-ph/0305328 Phenomenology +hep-ph/0305335 Phenomenology +hep-ph/0306003 Phenomenology +hep-ph/0306005 Phenomenology +hep-ph/0306006 Phenomenology +hep-ph/0306009 Phenomenology +hep-ph/0306012 Phenomenology +hep-ph/0306015 Phenomenology +hep-ph/0306018 Phenomenology +hep-ph/0306025 Phenomenology +hep-ph/0306026 Phenomenology +hep-ph/0306027 Phenomenology +hep-ph/0306029 Phenomenology +hep-ph/0306034 Phenomenology +hep-ph/0306036 Phenomenology +hep-ph/0306041 Phenomenology +hep-ph/0306053 Phenomenology +hep-ph/0306056 Phenomenology +hep-ph/0306059 Phenomenology +hep-ph/0306062 Phenomenology +hep-ph/0306063 Phenomenology +hep-ph/0306064 Phenomenology +hep-ph/0306069 Phenomenology +hep-ph/0306071 Phenomenology +hep-ph/0306072 Phenomenology +hep-ph/0306073 Phenomenology +hep-ph/0306074 Phenomenology +hep-ph/0306076 Phenomenology +hep-ph/0306080 Phenomenology +hep-ph/0306084 Phenomenology +hep-ph/0306087 Phenomenology +hep-ph/0306089 Phenomenology +hep-ph/0306090 Phenomenology +hep-ph/0306092 Phenomenology +hep-ph/0306094 Phenomenology +hep-ph/0306096 Phenomenology +hep-ph/0306099 Phenomenology +hep-ph/0306102 Phenomenology +hep-ph/0306105 Phenomenology +hep-ph/0306106 Phenomenology +hep-ph/0306114 Phenomenology +hep-ph/0306115 Phenomenology +hep-ph/0306117 Phenomenology +hep-ph/0306119 Phenomenology +hep-ph/0306122 Phenomenology +hep-ph/0306128 Phenomenology +hep-ph/0306129 Phenomenology +hep-ph/0306131 Phenomenology +hep-ph/0306132 Phenomenology +hep-ph/0306134 Phenomenology +hep-ph/0306138 Phenomenology +hep-ph/0306141 Phenomenology +hep-ph/0306146 Phenomenology +hep-ph/0306147 Phenomenology +hep-ph/0306150 Phenomenology +hep-ph/0306157 Phenomenology +hep-ph/0306163 Phenomenology +hep-ph/0306165 Phenomenology +hep-ph/0306166 Phenomenology +hep-ph/0306167 Phenomenology +hep-ph/0306168 Phenomenology +hep-ph/0306170 Phenomenology +hep-ph/0306172 Phenomenology +hep-ph/0306175 Phenomenology +hep-ph/0306176 Phenomenology +hep-ph/0306177 Phenomenology +hep-ph/0306178 Phenomenology +hep-ph/0306182 Phenomenology +hep-ph/0306184 Phenomenology +hep-ph/0306188 Phenomenology +hep-ph/0306193 Phenomenology +hep-ph/0306198 Phenomenology +hep-ph/0306202 Phenomenology +hep-ph/0306207 Phenomenology +hep-ph/0306208 Phenomenology +hep-ph/0306209 Phenomenology +hep-ph/0306211 Phenomenology +hep-ph/0306212 Phenomenology +hep-ph/0306216 Phenomenology +hep-ph/0306217 Phenomenology +hep-ph/0306221 Phenomenology +hep-ph/0306228 Phenomenology +hep-ph/0306229 Phenomenology +hep-ph/0306231 Phenomenology +hep-ph/0306232 Phenomenology +hep-ph/0306234 Phenomenology +hep-ph/0306243 Phenomenology +hep-ph/0306244 Phenomenology +hep-ph/0306247 Phenomenology +hep-ph/0306248 Phenomenology +hep-ph/0306252 Phenomenology +hep-ph/0306257 Phenomenology +hep-ph/0306258 Phenomenology +hep-ph/0306264 Phenomenology +hep-ph/0306268 Phenomenology +hep-ph/0306274 Phenomenology +hep-ph/0306277 Phenomenology +hep-ph/0306282 Phenomenology +hep-ph/0306283 Phenomenology +hep-ph/0306285 Phenomenology +hep-ph/0306288 Phenomenology +hep-ph/0306289 Phenomenology +hep-ph/0306293 Phenomenology +hep-ph/0306295 Phenomenology +hep-ph/0306296 Phenomenology +hep-ph/0306297 Phenomenology +hep-ph/0306304 Phenomenology +hep-ph/0306310 Phenomenology +hep-ph/0306311 Phenomenology +hep-ph/0307005 Phenomenology +hep-ph/0307008 Phenomenology +hep-ph/0307009 Phenomenology +hep-ph/0307018 Phenomenology +hep-ph/0307020 Phenomenology +hep-ph/0307021 Phenomenology +hep-ph/0307023 Phenomenology +hep-ph/0307026 Phenomenology +hep-ph/0307027 Phenomenology +hep-ph/0307028 Phenomenology +hep-ph/0307030 Phenomenology +hep-ph/0307034 Phenomenology +hep-ph/0307040 Phenomenology +hep-ph/0307043 Phenomenology +hep-ph/0307044 Phenomenology +hep-ph/0307047 Phenomenology +hep-ph/0307049 Phenomenology +hep-ph/0307050 Phenomenology +hep-ph/0307055 Phenomenology +hep-ph/0307056 Phenomenology +hep-ph/0307059 Phenomenology +hep-ph/0307060 Phenomenology +hep-ph/0307063 Phenomenology +hep-ph/0307064 Phenomenology +hep-ph/0307067 Phenomenology +hep-ph/0307068 Phenomenology +hep-ph/0307069 Phenomenology +hep-ph/0307070 Phenomenology +hep-ph/0307071 Phenomenology +hep-ph/0307073 Phenomenology +hep-ph/0307085 Phenomenology +hep-ph/0307087 Phenomenology +hep-ph/0307089 Phenomenology +hep-ph/0307094 Phenomenology +hep-ph/0307096 Phenomenology +hep-ph/0307100 Phenomenology +hep-ph/0307103 Phenomenology +hep-ph/0307110 Phenomenology +hep-ph/0307117 Phenomenology +hep-ph/0307122 Phenomenology +hep-ph/0307126 Phenomenology +hep-ph/0307131 Phenomenology +hep-ph/0307135 Phenomenology +hep-ph/0307136 Phenomenology +hep-ph/0307137 Phenomenology +hep-ph/0307139 Phenomenology +hep-ph/0307141 Phenomenology +hep-ph/0307147 Phenomenology +hep-ph/0307151 Phenomenology +hep-ph/0307155 Phenomenology +hep-ph/0307163 Phenomenology +hep-ph/0307166 Phenomenology +hep-ph/0307168 Phenomenology +hep-ph/0307169 Phenomenology +hep-ph/0307171 Phenomenology +hep-ph/0307179 Phenomenology +hep-ph/0307191 Phenomenology +hep-ph/0307196 Phenomenology +hep-ph/0307197 Phenomenology +hep-ph/0307199 Phenomenology +hep-ph/0307200 Phenomenology +hep-ph/0307205 Phenomenology +hep-ph/0307208 Phenomenology +hep-ph/0307211 Phenomenology +hep-ph/0307221 Phenomenology +hep-ph/0307226 Phenomenology +hep-ph/0307227 Phenomenology +hep-ph/0307228 Phenomenology +hep-ph/0307229 Phenomenology +hep-ph/0307230 Phenomenology +hep-ph/0307232 Phenomenology +hep-ph/0307235 Phenomenology +hep-ph/0307236 Phenomenology +hep-ph/0307241 Phenomenology +hep-ph/0307248 Phenomenology +hep-ph/0307256 Phenomenology +hep-ph/0307264 Phenomenology +hep-ph/0307269 Phenomenology +hep-ph/0307272 Phenomenology +hep-ph/0307275 Phenomenology +hep-ph/0307276 Phenomenology +hep-ph/0307278 Phenomenology +hep-ph/0307280 Phenomenology +hep-ph/0307286 Phenomenology +hep-ph/0307289 Phenomenology +hep-ph/0307291 Phenomenology +hep-ph/0307292 Phenomenology +hep-ph/0307299 Phenomenology +hep-ph/0307302 Phenomenology +hep-ph/0307305 Phenomenology +hep-ph/0307307 Phenomenology +hep-ph/0307310 Phenomenology +hep-ph/0307319 Phenomenology +hep-ph/0307321 Phenomenology +hep-ph/0307323 Phenomenology +hep-ph/0307327 Phenomenology +hep-ph/0307332 Phenomenology +hep-ph/0307336 Phenomenology +hep-ph/0307338 Phenomenology +hep-ph/0307341 Phenomenology +hep-ph/0307347 Phenomenology +hep-ph/0307348 Phenomenology +hep-ph/0307349 Phenomenology +hep-ph/0307352 Phenomenology +hep-ph/0307353 Phenomenology +hep-ph/0307354 Phenomenology +hep-ph/0307359 Phenomenology +hep-ph/0307365 Phenomenology +hep-ph/0307366 Phenomenology +hep-ph/0307369 Phenomenology +hep-ph/0307373 Phenomenology +hep-ph/0307376 Phenomenology +hep-ph/0307379 Phenomenology +hep-ph/0307380 Phenomenology +hep-ph/0307386 Phenomenology +hep-ph/0307389 Phenomenology +hep-ph/0308005 Phenomenology +hep-ph/0308007 Phenomenology +hep-ph/0308016 Phenomenology +hep-ph/0308017 Phenomenology +hep-ph/0308018 Phenomenology +hep-ph/0308022 Phenomenology +hep-ph/0308023 Phenomenology +hep-ph/0308024 Phenomenology +hep-ph/0308036 Phenomenology +hep-ph/0308037 Phenomenology +hep-ph/0308042 Phenomenology +hep-ph/0308046 Phenomenology +hep-ph/0308057 Phenomenology +hep-ph/0308059 Phenomenology +hep-ph/0308060 Phenomenology +hep-ph/0308061 Phenomenology +hep-ph/0308064 Phenomenology +hep-ph/0308065 Phenomenology +hep-ph/0308067 Phenomenology +hep-ph/0308073 Phenomenology +hep-ph/0308074 Phenomenology +hep-ph/0308082 Phenomenology +hep-ph/0308083 Phenomenology +hep-ph/0308084 Phenomenology +hep-ph/0308087 Phenomenology +hep-ph/0308088 Phenomenology +hep-ph/0308089 Phenomenology +hep-ph/0308091 Phenomenology +hep-ph/0308092 Phenomenology +hep-ph/0308095 Phenomenology +hep-ph/0308100 Phenomenology +hep-ph/0308102 Phenomenology +hep-ph/0308107 Phenomenology +hep-ph/0308109 Phenomenology +hep-ph/0308110 Phenomenology +hep-ph/0308118 Phenomenology +hep-ph/0308122 Phenomenology +hep-ph/0308125 Phenomenology +hep-ph/0308126 Phenomenology +hep-ph/0308127 Phenomenology +hep-ph/0308130 Phenomenology +hep-ph/0308131 Phenomenology +hep-ph/0308137 Phenomenology +hep-ph/0308138 Phenomenology +hep-ph/0308141 Phenomenology +hep-ph/0308145 Phenomenology +hep-ph/0308146 Phenomenology +hep-ph/0308147 Phenomenology +hep-ph/0308151 Phenomenology +hep-ph/0308154 Phenomenology +hep-ph/0308155 Phenomenology +hep-ph/0308156 Phenomenology +hep-ph/0308166 Phenomenology +hep-ph/0308169 Phenomenology +hep-ph/0308170 Phenomenology +hep-ph/0308172 Phenomenology +hep-ph/0308174 Phenomenology +hep-ph/0308175 Phenomenology +hep-ph/0308178 Phenomenology +hep-ph/0308186 Phenomenology +hep-ph/0308187 Phenomenology +hep-ph/0308189 Phenomenology +hep-ph/0308191 Phenomenology +hep-ph/0308199 Phenomenology +hep-ph/0308200 Phenomenology +hep-ph/0308202 Phenomenology +hep-ph/0308204 Phenomenology +hep-ph/0308206 Phenomenology +hep-ph/0308210 Phenomenology +hep-ph/0308211 Phenomenology +hep-ph/0308212 Phenomenology +hep-ph/0308215 Phenomenology +hep-ph/0308217 Phenomenology +hep-ph/0308218 Phenomenology +hep-ph/0308222 Phenomenology +hep-ph/0308223 Phenomenology +hep-ph/0308227 Phenomenology +hep-ph/0308234 Phenomenology +hep-ph/0308238 Phenomenology +hep-ph/0308243 Phenomenology +hep-ph/0308247 Phenomenology +hep-ph/0308252 Phenomenology +hep-ph/0308253 Phenomenology +hep-ph/0308255 Phenomenology +hep-ph/0308260 Phenomenology +hep-ph/0308267 Phenomenology +hep-ph/0308271 Phenomenology +hep-ph/0308274 Phenomenology +hep-ph/0308275 Phenomenology +hep-ph/0308276 Phenomenology +hep-ph/0308278 Phenomenology +hep-ph/0308280 Phenomenology +hep-ph/0308282 Phenomenology +hep-ph/0308283 Phenomenology +hep-ph/0308287 Phenomenology +hep-ph/0308290 Phenomenology +hep-ph/0308291 Phenomenology +hep-ph/0308295 Phenomenology +hep-ph/0308296 Phenomenology +hep-ph/0308297 Phenomenology +hep-ph/0308302 Phenomenology +hep-ph/0308311 Phenomenology +hep-ph/0309008 Phenomenology +hep-ph/0309014 Phenomenology +hep-ph/0309016 Phenomenology +hep-ph/0309019 Phenomenology +hep-ph/0309026 Phenomenology +hep-ph/0309027 Phenomenology +hep-ph/0309028 Phenomenology +hep-ph/0309031 Phenomenology +hep-ph/0309034 Phenomenology +hep-ph/0309035 Phenomenology +hep-ph/0309036 Phenomenology +hep-ph/0309041 Phenomenology +hep-ph/0309049 Phenomenology +hep-ph/0309051 Phenomenology +hep-ph/0309054 Phenomenology +hep-ph/0309055 Phenomenology +hep-ph/0309059 Phenomenology +hep-ph/0309060 Phenomenology +hep-ph/0309061 Phenomenology +hep-ph/0309062 Phenomenology +hep-ph/0309063 Phenomenology +hep-ph/0309064 Phenomenology +hep-ph/0309065 Phenomenology +hep-ph/0309072 Phenomenology +hep-ph/0309079 Phenomenology +hep-ph/0309083 Phenomenology +hep-ph/0309085 Phenomenology +hep-ph/0309086 Phenomenology +hep-ph/0309087 Phenomenology +hep-ph/0309091 Phenomenology +hep-ph/0309092 Phenomenology +hep-ph/0309094 Phenomenology +hep-ph/0309098 Phenomenology +hep-ph/0309099 Phenomenology +hep-ph/0309101 Phenomenology +hep-ph/0309105 Phenomenology +hep-ph/0309111 Phenomenology +hep-ph/0309113 Phenomenology +hep-ph/0309115 Phenomenology +hep-ph/0309116 Phenomenology +hep-ph/0309122 Phenomenology +hep-ph/0309132 Phenomenology +hep-ph/0309138 Phenomenology +hep-ph/0309142 Phenomenology +hep-ph/0309144 Phenomenology +hep-ph/0309154 Phenomenology +hep-ph/0309155 Phenomenology +hep-ph/0309157 Phenomenology +hep-ph/0309158 Phenomenology +hep-ph/0309163 Phenomenology +hep-ph/0309164 Phenomenology +hep-ph/0309168 Phenomenology +hep-ph/0309169 Phenomenology +hep-ph/0309170 Phenomenology +hep-ph/0309171 Phenomenology +hep-ph/0309172 Phenomenology +hep-ph/0309176 Phenomenology +hep-ph/0309182 Phenomenology +hep-ph/0309183 Phenomenology +hep-ph/0309187 Phenomenology +hep-ph/0309189 Phenomenology +hep-ph/0309198 Phenomenology +hep-ph/0309203 Phenomenology +hep-ph/0309206 Phenomenology +hep-ph/0309209 Phenomenology +hep-ph/0309214 Phenomenology +hep-ph/0309216 Phenomenology +hep-ph/0309218 Phenomenology +hep-ph/0309220 Phenomenology +hep-ph/0309224 Phenomenology +hep-ph/0309227 Phenomenology +hep-ph/0309233 Phenomenology +hep-ph/0309239 Phenomenology +hep-ph/0309240 Phenomenology +hep-ph/0309242 Phenomenology +hep-ph/0309244 Phenomenology +hep-ph/0309247 Phenomenology +hep-ph/0309248 Phenomenology +hep-ph/0309250 Phenomenology +hep-ph/0309255 Phenomenology +hep-ph/0309256 Phenomenology +hep-ph/0309257 Phenomenology +hep-ph/0309261 Phenomenology +hep-ph/0309265 Phenomenology +hep-ph/0309266 Phenomenology +hep-ph/0309271 Phenomenology +hep-ph/0309272 Phenomenology +hep-ph/0309278 Phenomenology +hep-ph/0309279 Phenomenology +hep-ph/0309280 Phenomenology +hep-ph/0309281 Phenomenology +hep-ph/0309282 Phenomenology +hep-ph/0309284 Phenomenology +hep-ph/0309285 Phenomenology +hep-ph/0309290 Phenomenology +hep-ph/0309293 Phenomenology +hep-ph/0309297 Phenomenology +hep-ph/0309298 Phenomenology +hep-ph/0309300 Phenomenology +hep-ph/0309302 Phenomenology +hep-ph/0309303 Phenomenology +hep-ph/0309306 Phenomenology +hep-ph/0309309 Phenomenology +hep-ph/0309313 Phenomenology +hep-ph/0309317 Phenomenology +hep-ph/0309318 Phenomenology +hep-ph/0309319 Phenomenology +hep-ph/0309322 Phenomenology +hep-ph/0309324 Phenomenology +hep-ph/0309327 Phenomenology +hep-ph/0309329 Phenomenology +hep-ph/0309332 Phenomenology +hep-ph/0309333 Phenomenology +hep-ph/0309335 Phenomenology +hep-ph/0309338 Phenomenology +hep-ph/0309339 Phenomenology +hep-ph/0309341 Phenomenology +hep-ph/0309343 Phenomenology +hep-ph/0309345 Phenomenology +hep-ph/0309346 Phenomenology +hep-ph/0310001 Phenomenology +hep-ph/0310006 Phenomenology +hep-ph/0310008 Phenomenology +hep-ph/0310010 Phenomenology +hep-ph/0310012 Phenomenology +hep-ph/0310013 Phenomenology +hep-ph/0310014 Phenomenology +hep-ph/0310015 Phenomenology +hep-ph/0310019 Phenomenology +hep-ph/0310024 Phenomenology +hep-ph/0310026 Phenomenology +hep-ph/0310030 Phenomenology +hep-ph/0310033 Phenomenology +hep-ph/0310034 Phenomenology +hep-ph/0310035 Phenomenology +hep-ph/0310039 Phenomenology +hep-ph/0310040 Phenomenology +hep-ph/0310041 Phenomenology +hep-ph/0310046 Phenomenology +hep-ph/0310047 Phenomenology +hep-ph/0310051 Phenomenology +hep-ph/0310054 Phenomenology +hep-ph/0310055 Phenomenology +hep-ph/0310062 Phenomenology +hep-ph/0310075 Phenomenology +hep-ph/0310079 Phenomenology +hep-ph/0310080 Phenomenology +hep-ph/0310082 Phenomenology +hep-ph/0310084 Phenomenology +hep-ph/0310087 Phenomenology +hep-ph/0310089 Phenomenology +hep-ph/0310091 Phenomenology +hep-ph/0310095 Phenomenology +hep-ph/0310096 Phenomenology +hep-ph/0310097 Phenomenology +hep-ph/0310100 Phenomenology +hep-ph/0310101 Phenomenology +hep-ph/0310105 Phenomenology +hep-ph/0310114 Phenomenology +hep-ph/0310116 Phenomenology +hep-ph/0310117 Phenomenology +hep-ph/0310126 Phenomenology +hep-ph/0310128 Phenomenology +hep-ph/0310132 Phenomenology +hep-ph/0310133 Phenomenology +hep-ph/0310134 Phenomenology +hep-ph/0310135 Phenomenology +hep-ph/0310136 Phenomenology +hep-ph/0310148 Phenomenology +hep-ph/0310149 Phenomenology +hep-ph/0310156 Phenomenology +hep-ph/0310157 Phenomenology +hep-ph/0310161 Phenomenology +hep-ph/0310162 Phenomenology +hep-ph/0310163 Phenomenology +hep-ph/0310166 Phenomenology +hep-ph/0310169 Phenomenology +hep-ph/0310172 Phenomenology +hep-ph/0310174 Phenomenology +hep-ph/0310178 Phenomenology +hep-ph/0310180 Phenomenology +hep-ph/0310188 Phenomenology +hep-ph/0310190 Phenomenology +hep-ph/0310192 Phenomenology +hep-ph/0310197 Phenomenology +hep-ph/0310198 Phenomenology +hep-ph/0310200 Phenomenology +hep-ph/0310204 Phenomenology +hep-ph/0310206 Phenomenology +hep-ph/0310207 Phenomenology +hep-ph/0310209 Phenomenology +hep-ph/0310210 Phenomenology +hep-ph/0310212 Phenomenology +hep-ph/0310221 Phenomenology +hep-ph/0310224 Phenomenology +hep-ph/0310228 Phenomenology +hep-ph/0310231 Phenomenology +hep-ph/0310234 Phenomenology +hep-ph/0310237 Phenomenology +hep-ph/0310240 Phenomenology +hep-ph/0310242 Phenomenology +hep-ph/0310247 Phenomenology +hep-ph/0310248 Phenomenology +hep-ph/0310249 Phenomenology +hep-ph/0310251 Phenomenology +hep-ph/0310252 Phenomenology +hep-ph/0310255 Phenomenology +hep-ph/0310263 Phenomenology +hep-ph/0310266 Phenomenology +hep-ph/0310270 Phenomenology +hep-ph/0310275 Phenomenology +hep-ph/0310279 Phenomenology +hep-ph/0310281 Phenomenology +hep-ph/0310284 Phenomenology +hep-ph/0310287 Phenomenology +hep-ph/0310288 Phenomenology +hep-ph/0310290 Phenomenology +hep-ph/0310291 Phenomenology +hep-ph/0310292 Phenomenology +hep-ph/0310298 Phenomenology +hep-ph/0310299 Phenomenology +hep-ph/0310303 Phenomenology +hep-ph/0310304 Phenomenology +hep-ph/0310305 Phenomenology +hep-ph/0310307 Phenomenology +hep-ph/0310311 Phenomenology +hep-ph/0310316 Phenomenology +hep-ph/0310319 Phenomenology +hep-ph/0310320 Phenomenology +hep-ph/0310321 Phenomenology +hep-ph/0310326 Phenomenology +hep-ph/0310333 Phenomenology +hep-ph/0310340 Phenomenology +hep-ph/0310345 Phenomenology +hep-ph/0310346 Phenomenology +hep-ph/0310354 Phenomenology +hep-ph/0310359 Phenomenology +hep-ph/0310360 Phenomenology +hep-ph/0310363 Phenomenology +hep-ph/0310364 Phenomenology +hep-ph/0310365 Phenomenology +hep-ph/0311002 Phenomenology +hep-ph/0311009 Phenomenology +hep-ph/0311011 Phenomenology +hep-ph/0311013 Phenomenology +hep-ph/0311016 Phenomenology +hep-ph/0311017 Phenomenology +hep-ph/0311021 Phenomenology +hep-ph/0311022 Phenomenology +hep-ph/0311030 Phenomenology +hep-ph/0311034 Phenomenology +hep-ph/0311036 Phenomenology +hep-ph/0311037 Phenomenology +hep-ph/0311038 Phenomenology +hep-ph/0311053 Phenomenology +hep-ph/0311058 Phenomenology +hep-ph/0311059 Phenomenology +hep-ph/0311062 Phenomenology +hep-ph/0311063 Phenomenology +hep-ph/0311066 Phenomenology +hep-ph/0311068 Phenomenology +hep-ph/0311072 Phenomenology +hep-ph/0311073 Phenomenology +hep-ph/0311083 Phenomenology +hep-ph/0311084 Phenomenology +hep-ph/0311095 Phenomenology +hep-ph/0311096 Phenomenology +hep-ph/0311098 Phenomenology +hep-ph/0311100 Phenomenology +hep-ph/0311102 Phenomenology +hep-ph/0311105 Phenomenology +hep-ph/0311108 Phenomenology +hep-ph/0311109 Phenomenology +hep-ph/0311111 Phenomenology +hep-ph/0311113 Phenomenology +hep-ph/0311116 Phenomenology +hep-ph/0311119 Phenomenology +hep-ph/0311120 Phenomenology +hep-ph/0311125 Phenomenology +hep-ph/0311126 Phenomenology +hep-ph/0311127 Phenomenology +hep-ph/0311134 Phenomenology +hep-ph/0311139 Phenomenology +hep-ph/0311144 Phenomenology +hep-ph/0311145 Phenomenology +hep-ph/0311146 Phenomenology +hep-ph/0311150 Phenomenology +hep-ph/0311154 Phenomenology +hep-ph/0311160 Phenomenology +hep-ph/0311161 Phenomenology +hep-ph/0311163 Phenomenology +hep-ph/0311164 Phenomenology +hep-ph/0311165 Phenomenology +hep-ph/0311172 Phenomenology +hep-ph/0311173 Phenomenology +hep-ph/0311179 Phenomenology +hep-ph/0311186 Phenomenology +hep-ph/0311187 Phenomenology +hep-ph/0311189 Phenomenology +hep-ph/0311190 Phenomenology +hep-ph/0311200 Phenomenology +hep-ph/0311202 Phenomenology +hep-ph/0311203 Phenomenology +hep-ph/0311204 Phenomenology +hep-ph/0311207 Phenomenology +hep-ph/0311208 Phenomenology +hep-ph/0311211 Phenomenology +hep-ph/0311213 Phenomenology +hep-ph/0311219 Phenomenology +hep-ph/0311220 Phenomenology +hep-ph/0311221 Phenomenology +hep-ph/0311228 Phenomenology +hep-ph/0311233 Phenomenology +hep-ph/0311236 Phenomenology +hep-ph/0311237 Phenomenology +hep-ph/0311240 Phenomenology +hep-ph/0311242 Phenomenology +hep-ph/0311243 Phenomenology +hep-ph/0311244 Phenomenology +hep-ph/0311248 Phenomenology +hep-ph/0311249 Phenomenology +hep-ph/0311251 Phenomenology +hep-ph/0311252 Phenomenology +hep-ph/0311253 Phenomenology +hep-ph/0311255 Phenomenology +hep-ph/0311257 Phenomenology +hep-ph/0311258 Phenomenology +hep-ph/0311259 Phenomenology +hep-ph/0311260 Phenomenology +hep-ph/0311266 Phenomenology +hep-ph/0311268 Phenomenology +hep-ph/0311272 Phenomenology +hep-ph/0311273 Phenomenology +hep-ph/0311282 Phenomenology +hep-ph/0311285 Phenomenology +hep-ph/0311286 Phenomenology +hep-ph/0311288 Phenomenology +hep-ph/0311294 Phenomenology +hep-ph/0311295 Phenomenology +hep-ph/0311302 Phenomenology +hep-ph/0311303 Phenomenology +hep-ph/0311305 Phenomenology +hep-ph/0311307 Phenomenology +hep-ph/0311308 Phenomenology +hep-ph/0311309 Phenomenology +hep-ph/0311310 Phenomenology +hep-ph/0311312 Phenomenology +hep-ph/0311313 Phenomenology +hep-ph/0311315 Phenomenology +hep-ph/0311316 Phenomenology +hep-ph/0311321 Phenomenology +hep-ph/0311324 Phenomenology +hep-ph/0311326 Phenomenology +hep-ph/0311327 Phenomenology +hep-ph/0311329 Phenomenology +hep-ph/0311330 Phenomenology +hep-ph/0311333 Phenomenology +hep-ph/0311334 Phenomenology +hep-ph/0311336 Phenomenology +hep-ph/0311337 Phenomenology +hep-ph/0311339 Phenomenology +hep-ph/0311341 Phenomenology +hep-ph/0311342 Phenomenology +hep-ph/0311344 Phenomenology +hep-ph/0311354 Phenomenology +hep-ph/0311356 Phenomenology +hep-ph/0311358 Phenomenology +hep-ph/0311359 Phenomenology +hep-ph/0311361 Phenomenology +hep-ph/0311362 Phenomenology +hep-ph/0311369 Phenomenology +hep-ph/0312005 Phenomenology +hep-ph/0312007 Phenomenology +hep-ph/0312009 Phenomenology +hep-ph/0312011 Phenomenology +hep-ph/0312014 Phenomenology +hep-ph/0312016 Phenomenology +hep-ph/0312017 Phenomenology +hep-ph/0312019 Phenomenology +hep-ph/0312020 Phenomenology +hep-ph/0312021 Phenomenology +hep-ph/0312022 Phenomenology +hep-ph/0312025 Phenomenology +hep-ph/0312027 Phenomenology +hep-ph/0312028 Phenomenology +hep-ph/0312030 Phenomenology +hep-ph/0312033 Phenomenology +hep-ph/0312034 Phenomenology +hep-ph/0312036 Phenomenology +hep-ph/0312040 Phenomenology +hep-ph/0312041 Phenomenology +hep-ph/0312042 Phenomenology +hep-ph/0312044 Phenomenology +hep-ph/0312049 Phenomenology +hep-ph/0312050 Phenomenology +hep-ph/0312052 Phenomenology +hep-ph/0312053 Phenomenology +hep-ph/0312055 Phenomenology +hep-ph/0312056 Phenomenology +hep-ph/0312058 Phenomenology +hep-ph/0312068 Phenomenology +hep-ph/0312072 Phenomenology +hep-ph/0312074 Phenomenology +hep-ph/0312076 Phenomenology +hep-ph/0312087 Phenomenology +hep-ph/0312088 Phenomenology +hep-ph/0312092 Phenomenology +hep-ph/0312103 Phenomenology +hep-ph/0312107 Phenomenology +hep-ph/0312108 Phenomenology +hep-ph/0312111 Phenomenology +hep-ph/0312115 Phenomenology +hep-ph/0312126 Phenomenology +hep-ph/0312127 Phenomenology +hep-ph/0312128 Phenomenology +hep-ph/0312129 Phenomenology +hep-ph/0312131 Phenomenology +hep-ph/0312135 Phenomenology +hep-ph/0312138 Phenomenology +hep-ph/0312146 Phenomenology +hep-ph/0312147 Phenomenology +hep-ph/0312148 Phenomenology +hep-ph/0312154 Phenomenology +hep-ph/0312156 Phenomenology +hep-ph/0312157 Phenomenology +hep-ph/0312158 Phenomenology +hep-ph/0312161 Phenomenology +hep-ph/0312163 Phenomenology +hep-ph/0312165 Phenomenology +hep-ph/0312167 Phenomenology +hep-ph/0312168 Phenomenology +hep-ph/0312175 Phenomenology +hep-ph/0312176 Phenomenology +hep-ph/0312177 Phenomenology +hep-ph/0312178 Phenomenology +hep-ph/0312179 Phenomenology +hep-ph/0312182 Phenomenology +hep-ph/0312185 Phenomenology +hep-ph/0312188 Phenomenology +hep-ph/0312191 Phenomenology +hep-ph/0312193 Phenomenology +hep-ph/0312196 Phenomenology +hep-ph/0312197 Phenomenology +hep-ph/0312206 Phenomenology +hep-ph/0312212 Phenomenology +hep-ph/0312214 Phenomenology +hep-ph/0312219 Phenomenology +hep-ph/0312222 Phenomenology +hep-ph/0312226 Phenomenology +hep-ph/0312230 Phenomenology +hep-ph/0312234 Phenomenology +hep-ph/0312246 Phenomenology +hep-ph/0312248 Phenomenology +hep-ph/0312252 Phenomenology +hep-ph/0312254 Phenomenology +hep-ph/0312259 Phenomenology +hep-ph/0312267 Phenomenology +hep-ph/0312269 Phenomenology +hep-ph/0312270 Phenomenology +hep-ph/0312272 Phenomenology +hep-ph/0312273 Phenomenology +hep-ph/0312276 Phenomenology +hep-ph/0312277 Phenomenology +hep-ph/0312282 Phenomenology +hep-ph/0312283 Phenomenology +hep-ph/0312285 Phenomenology +hep-ph/0312286 Phenomenology +hep-ph/0312287 Phenomenology +hep-ph/0312297 Phenomenology +hep-ph/0312302 Phenomenology +hep-ph/0312307 Phenomenology +hep-ph/0312308 Phenomenology +hep-ph/0312311 Phenomenology +hep-ph/0312322 Phenomenology +hep-ph/0312324 Phenomenology +hep-ph/0312325 Phenomenology +hep-ph/0312326 Phenomenology +hep-ph/0312328 Phenomenology +hep-ph/0312330 Phenomenology +hep-ph/0312331 Phenomenology +hep-ph/0312334 Phenomenology +hep-ph/0312337 Phenomenology +hep-ph/0312338 Phenomenology +hep-ph/0312339 Phenomenology +hep-ph/0312340 Phenomenology +hep-ph/0312348 Phenomenology +hep-ph/0312350 Phenomenology +hep-ph/0312359 Phenomenology +hep-ph/0312363 Phenomenology +hep-ph/0312369 Phenomenology +hep-ph/0312371 Phenomenology +hep-ph/0312373 Phenomenology +hep-ph/0312382 Phenomenology +hep-ph/0312387 Phenomenology +hep-ph/0312391 Phenomenology +hep-ph/0401006 Phenomenology +hep-ph/0401007 Phenomenology +hep-ph/0401012 Phenomenology +hep-ph/0401013 Phenomenology +hep-ph/0401021 Phenomenology +hep-ph/0401022 Phenomenology +hep-ph/0401025 Phenomenology +hep-ph/0401030 Phenomenology +hep-ph/0401036 Phenomenology +hep-ph/0401038 Phenomenology +hep-ph/0401044 Phenomenology +hep-ph/0401045 Phenomenology +hep-ph/0401048 Phenomenology +hep-ph/0401049 Phenomenology +hep-ph/0401050 Phenomenology +hep-ph/0401054 Phenomenology +hep-ph/0401058 Phenomenology +hep-ph/0401059 Phenomenology +hep-ph/0401062 Phenomenology +hep-ph/0401064 Phenomenology +hep-ph/0401067 Phenomenology +hep-ph/0401071 Phenomenology +hep-ph/0401072 Phenomenology +hep-ph/0401074 Phenomenology +hep-ph/0401076 Phenomenology +hep-ph/0401078 Phenomenology +hep-ph/0401079 Phenomenology +hep-ph/0401080 Phenomenology +hep-ph/0401082 Phenomenology +hep-ph/0401083 Phenomenology +hep-ph/0401084 Phenomenology +hep-ph/0401090 Phenomenology +hep-ph/0401094 Phenomenology +hep-ph/0401095 Phenomenology +hep-ph/0401096 Phenomenology +hep-ph/0401099 Phenomenology +hep-ph/0401100 Phenomenology +hep-ph/0401103 Phenomenology +hep-ph/0401104 Phenomenology +hep-ph/0401105 Phenomenology +hep-ph/0401108 Phenomenology +hep-ph/0401114 Phenomenology +hep-ph/0401116 Phenomenology +hep-ph/0401118 Phenomenology +hep-ph/0401119 Phenomenology +hep-ph/0401120 Phenomenology +hep-ph/0401127 Phenomenology +hep-ph/0401130 Phenomenology +hep-ph/0401132 Phenomenology +hep-ph/0401134 Phenomenology +hep-ph/0401136 Phenomenology +hep-ph/0401138 Phenomenology +hep-ph/0401140 Phenomenology +hep-ph/0401146 Phenomenology +hep-ph/0401147 Phenomenology +hep-ph/0401150 Phenomenology +hep-ph/0401151 Phenomenology +hep-ph/0401152 Phenomenology +hep-ph/0401154 Phenomenology +hep-ph/0401155 Phenomenology +hep-ph/0401156 Phenomenology +hep-ph/0401159 Phenomenology +hep-ph/0401162 Phenomenology +hep-ph/0401163 Phenomenology +hep-ph/0401165 Phenomenology +hep-ph/0401169 Phenomenology +hep-ph/0401179 Phenomenology +hep-ph/0401182 Phenomenology +hep-ph/0401186 Phenomenology +hep-ph/0401187 Phenomenology +hep-ph/0401188 Phenomenology +hep-ph/0401189 Phenomenology +hep-ph/0401192 Phenomenology +hep-ph/0401193 Phenomenology +hep-ph/0401194 Phenomenology +hep-ph/0401197 Phenomenology +hep-ph/0401199 Phenomenology +hep-ph/0401203 Phenomenology +hep-ph/0401208 Phenomenology +hep-ph/0401214 Phenomenology +hep-ph/0401220 Phenomenology +hep-ph/0401222 Phenomenology +hep-ph/0401224 Phenomenology +hep-ph/0401225 Phenomenology +hep-ph/0401229 Phenomenology +hep-ph/0401231 Phenomenology +hep-ph/0401232 Phenomenology +hep-ph/0401233 Phenomenology +hep-ph/0401238 Phenomenology +hep-ph/0401239 Phenomenology +hep-ph/0401240 Phenomenology +hep-ph/0401241 Phenomenology +hep-ph/0401242 Phenomenology +hep-ph/0401248 Phenomenology +hep-ph/0402001 Phenomenology +hep-ph/0402007 Phenomenology +hep-ph/0402008 Phenomenology +hep-ph/0402009 Phenomenology +hep-ph/0402011 Phenomenology +hep-ph/0402012 Phenomenology +hep-ph/0402014 Phenomenology +hep-ph/0402020 Phenomenology +hep-ph/0402021 Phenomenology +hep-ph/0402022 Phenomenology +hep-ph/0402024 Phenomenology +hep-ph/0402034 Phenomenology +hep-ph/0402035 Phenomenology +hep-ph/0402043 Phenomenology +hep-ph/0402044 Phenomenology +hep-ph/0402047 Phenomenology +hep-ph/0402055 Phenomenology +hep-ph/0402056 Phenomenology +hep-ph/0402060 Phenomenology +hep-ph/0402065 Phenomenology +hep-ph/0402066 Phenomenology +hep-ph/0402068 Phenomenology +hep-ph/0402069 Phenomenology +hep-ph/0402079 Phenomenology +hep-ph/0402080 Phenomenology +hep-ph/0402081 Phenomenology +hep-ph/0402083 Phenomenology +hep-ph/0402084 Phenomenology +hep-ph/0402090 Phenomenology +hep-ph/0402091 Phenomenology +hep-ph/0402094 Phenomenology +hep-ph/0402097 Phenomenology +hep-ph/0402100 Phenomenology +hep-ph/0402101 Phenomenology +hep-ph/0402106 Phenomenology +hep-ph/0402112 Phenomenology +hep-ph/0402113 Phenomenology +hep-ph/0402114 Phenomenology +hep-ph/0402117 Phenomenology +hep-ph/0402119 Phenomenology +hep-ph/0402122 Phenomenology +hep-ph/0402126 Phenomenology +hep-ph/0402129 Phenomenology +hep-ph/0402131 Phenomenology +hep-ph/0402132 Phenomenology +hep-ph/0402138 Phenomenology +hep-ph/0402140 Phenomenology +hep-ph/0402145 Phenomenology +hep-ph/0402146 Phenomenology +hep-ph/0402147 Phenomenology +hep-ph/0402151 Phenomenology +hep-ph/0402152 Phenomenology +hep-ph/0402154 Phenomenology +hep-ph/0402162 Phenomenology +hep-ph/0402164 Phenomenology +hep-ph/0402172 Phenomenology +hep-ph/0402174 Phenomenology +hep-ph/0402175 Phenomenology +hep-ph/0402176 Phenomenology +hep-ph/0402180 Phenomenology +hep-ph/0402181 Phenomenology +hep-ph/0402182 Phenomenology +hep-ph/0402185 Phenomenology +hep-ph/0402187 Phenomenology +hep-ph/0402188 Phenomenology +hep-ph/0402189 Phenomenology +hep-ph/0402196 Phenomenology +hep-ph/0402198 Phenomenology +hep-ph/0402199 Phenomenology +hep-ph/0402200 Phenomenology +hep-ph/0402211 Phenomenology +hep-ph/0402214 Phenomenology +hep-ph/0402218 Phenomenology +hep-ph/0402220 Phenomenology +hep-ph/0402223 Phenomenology +hep-ph/0402224 Phenomenology +hep-ph/0402225 Phenomenology +hep-ph/0402229 Phenomenology +hep-ph/0402233 Phenomenology +hep-ph/0402234 Phenomenology +hep-ph/0402238 Phenomenology +hep-ph/0402240 Phenomenology +hep-ph/0402244 Phenomenology +hep-ph/0402246 Phenomenology +hep-ph/0402258 Phenomenology +hep-ph/0402259 Phenomenology +hep-ph/0402261 Phenomenology +hep-ph/0402262 Phenomenology +hep-ph/0402265 Phenomenology +hep-ph/0402275 Phenomenology +hep-ph/0402276 Phenomenology +hep-ph/0402277 Phenomenology +hep-ph/0402279 Phenomenology +hep-ph/0402280 Phenomenology +hep-ph/0402287 Phenomenology +hep-ph/0402292 Phenomenology +hep-ph/0402294 Phenomenology +hep-ph/0402297 Phenomenology +hep-ph/0402299 Phenomenology +hep-ph/0403003 Phenomenology +hep-ph/0403008 Phenomenology +hep-ph/0403012 Phenomenology +hep-ph/0403015 Phenomenology +hep-ph/0403016 Phenomenology +hep-ph/0403021 Phenomenology +hep-ph/0403024 Phenomenology +hep-ph/0403025 Phenomenology +hep-ph/0403028 Phenomenology +hep-ph/0403029 Phenomenology +hep-ph/0403030 Phenomenology +hep-ph/0403031 Phenomenology +hep-ph/0403032 Phenomenology +hep-ph/0403043 Phenomenology +hep-ph/0403044 Phenomenology +hep-ph/0403049 Phenomenology +hep-ph/0403050 Phenomenology +hep-ph/0403053 Phenomenology +hep-ph/0403054 Phenomenology +hep-ph/0403059 Phenomenology +hep-ph/0403060 Phenomenology +hep-ph/0403063 Phenomenology +hep-ph/0403066 Phenomenology +hep-ph/0403067 Phenomenology +hep-ph/0403068 Phenomenology +hep-ph/0403073 Phenomenology +hep-ph/0403074 Phenomenology +hep-ph/0403075 Phenomenology +hep-ph/0403076 Phenomenology +hep-ph/0403077 Phenomenology +hep-ph/0403078 Phenomenology +hep-ph/0403079 Phenomenology +hep-ph/0403081 Phenomenology +hep-ph/0403085 Phenomenology +hep-ph/0403089 Phenomenology +hep-ph/0403091 Phenomenology +hep-ph/0403092 Phenomenology +hep-ph/0403093 Phenomenology +hep-ph/0403094 Phenomenology +hep-ph/0403099 Phenomenology +hep-ph/0403101 Phenomenology +hep-ph/0403102 Phenomenology +hep-ph/0403105 Phenomenology +hep-ph/0403106 Phenomenology +hep-ph/0403108 Phenomenology +hep-ph/0403109 Phenomenology +hep-ph/0403110 Phenomenology +hep-ph/0403114 Phenomenology +hep-ph/0403115 Phenomenology +hep-ph/0403116 Phenomenology +hep-ph/0403118 Phenomenology +hep-ph/0403120 Phenomenology +hep-ph/0403121 Phenomenology +hep-ph/0403125 Phenomenology +hep-ph/0403126 Phenomenology +hep-ph/0403127 Phenomenology +hep-ph/0403128 Phenomenology +hep-ph/0403129 Phenomenology +hep-ph/0403132 Phenomenology +hep-ph/0403135 Phenomenology +hep-ph/0403139 Phenomenology +hep-ph/0403140 Phenomenology +hep-ph/0403148 Phenomenology +hep-ph/0403151 Phenomenology +hep-ph/0403152 Phenomenology +hep-ph/0403153 Phenomenology +hep-ph/0403159 Phenomenology +hep-ph/0403161 Phenomenology +hep-ph/0403163 Phenomenology +hep-ph/0403164 Phenomenology +hep-ph/0403169 Phenomenology +hep-ph/0403172 Phenomenology +hep-ph/0403173 Phenomenology +hep-ph/0403174 Phenomenology +hep-ph/0403175 Phenomenology +hep-ph/0403176 Phenomenology +hep-ph/0403179 Phenomenology +hep-ph/0403181 Phenomenology +hep-ph/0403182 Phenomenology +hep-ph/0403183 Phenomenology +hep-ph/0403184 Phenomenology +hep-ph/0403185 Phenomenology +hep-ph/0403193 Phenomenology +hep-ph/0403196 Phenomenology +hep-ph/0403199 Phenomenology +hep-ph/0403201 Phenomenology +hep-ph/0403204 Phenomenology +hep-ph/0403205 Phenomenology +hep-ph/0403207 Phenomenology +hep-ph/0403208 Phenomenology +hep-ph/0403209 Phenomenology +hep-ph/0403213 Phenomenology +hep-ph/0403215 Phenomenology +hep-ph/0403216 Phenomenology +hep-ph/0403217 Phenomenology +hep-ph/0403219 Phenomenology +hep-ph/0403220 Phenomenology +hep-ph/0403223 Phenomenology +hep-ph/0403225 Phenomenology +hep-ph/0403227 Phenomenology +hep-ph/0403230 Phenomenology +hep-ph/0403231 Phenomenology +hep-ph/0403232 Phenomenology +hep-ph/0403234 Phenomenology +hep-ph/0403237 Phenomenology +hep-ph/0403239 Phenomenology +hep-ph/0403240 Phenomenology +hep-ph/0403242 Phenomenology +hep-ph/0403243 Phenomenology +hep-ph/0403248 Phenomenology +hep-ph/0403249 Phenomenology +hep-ph/0403251 Phenomenology +hep-ph/0403252 Phenomenology +hep-ph/0403253 Phenomenology +hep-ph/0403254 Phenomenology +hep-ph/0403255 Phenomenology +hep-ph/0403256 Phenomenology +hep-ph/0403258 Phenomenology +hep-ph/0403260 Phenomenology +hep-ph/0403261 Phenomenology +hep-ph/0403262 Phenomenology +hep-ph/0403265 Phenomenology +hep-ph/0403266 Phenomenology +hep-ph/0403267 Phenomenology +hep-ph/0403272 Phenomenology +hep-ph/0403273 Phenomenology +hep-ph/0403274 Phenomenology +hep-ph/0403276 Phenomenology +hep-ph/0403279 Phenomenology +hep-ph/0403281 Phenomenology +hep-ph/0403282 Phenomenology +hep-ph/0403285 Phenomenology +hep-ph/0403287 Phenomenology +hep-ph/0403288 Phenomenology +hep-ph/0403291 Phenomenology +hep-ph/0403293 Phenomenology +hep-ph/0403297 Phenomenology +hep-ph/0403299 Phenomenology +hep-ph/0403300 Phenomenology +hep-ph/0403303 Phenomenology +hep-ph/0403304 Phenomenology +hep-ph/0403305 Phenomenology +hep-ph/0403307 Phenomenology +hep-ph/0403308 Phenomenology +hep-ph/0404003 Phenomenology +hep-ph/0404004 Phenomenology +hep-ph/0404008 Phenomenology +hep-ph/0404009 Phenomenology +hep-ph/0404011 Phenomenology +hep-ph/0404012 Phenomenology +hep-ph/0404013 Phenomenology +hep-ph/0404014 Phenomenology +hep-ph/0404016 Phenomenology +hep-ph/0404020 Phenomenology +hep-ph/0404021 Phenomenology +hep-ph/0404023 Phenomenology +hep-ph/0404028 Phenomenology +hep-ph/0404029 Phenomenology +hep-ph/0404032 Phenomenology +hep-ph/0404037 Phenomenology +hep-ph/0404038 Phenomenology +hep-ph/0404039 Phenomenology +hep-ph/0404040 Phenomenology +hep-ph/0404042 Phenomenology +hep-ph/0404043 Phenomenology +hep-ph/0404044 Phenomenology +hep-ph/0404047 Phenomenology +hep-ph/0404050 Phenomenology +hep-ph/0404056 Phenomenology +hep-ph/0404058 Phenomenology +hep-ph/0404060 Phenomenology +hep-ph/0404065 Phenomenology +hep-ph/0404068 Phenomenology +hep-ph/0404070 Phenomenology +hep-ph/0404075 Phenomenology +hep-ph/0404077 Phenomenology +hep-ph/0404078 Phenomenology +hep-ph/0404080 Phenomenology +hep-ph/0404081 Phenomenology +hep-ph/0404083 Phenomenology +hep-ph/0404087 Phenomenology +hep-ph/0404089 Phenomenology +hep-ph/0404090 Phenomenology +hep-ph/0404091 Phenomenology +hep-ph/0404094 Phenomenology +hep-ph/0404097 Phenomenology +hep-ph/0404098 Phenomenology +hep-ph/0404102 Phenomenology +hep-ph/0404104 Phenomenology +hep-ph/0404105 Phenomenology +hep-ph/0404107 Phenomenology +hep-ph/0404109 Phenomenology +hep-ph/0404114 Phenomenology +hep-ph/0404115 Phenomenology +hep-ph/0404116 Phenomenology +hep-ph/0404117 Phenomenology +hep-ph/0404126 Phenomenology +hep-ph/0404128 Phenomenology +hep-ph/0404129 Phenomenology +hep-ph/0404133 Phenomenology +hep-ph/0404134 Phenomenology +hep-ph/0404136 Phenomenology +hep-ph/0404137 Phenomenology +hep-ph/0404138 Phenomenology +hep-ph/0404140 Phenomenology +hep-ph/0404141 Phenomenology +hep-ph/0404142 Phenomenology +hep-ph/0404144 Phenomenology +hep-ph/0404145 Phenomenology +hep-ph/0404146 Phenomenology +hep-ph/0404148 Phenomenology +hep-ph/0404152 Phenomenology +hep-ph/0404154 Phenomenology +hep-ph/0404155 Phenomenology +hep-ph/0404156 Phenomenology +hep-ph/0404159 Phenomenology +hep-ph/0404160 Phenomenology +hep-ph/0404165 Phenomenology +hep-ph/0404169 Phenomenology +hep-ph/0404170 Phenomenology +hep-ph/0404172 Phenomenology +hep-ph/0404173 Phenomenology +hep-ph/0404174 Phenomenology +hep-ph/0404178 Phenomenology +hep-ph/0404179 Phenomenology +hep-ph/0404185 Phenomenology +hep-ph/0404191 Phenomenology +hep-ph/0404194 Phenomenology +hep-ph/0404196 Phenomenology +hep-ph/0404198 Phenomenology +hep-ph/0404199 Phenomenology +hep-ph/0404201 Phenomenology +hep-ph/0404202 Phenomenology +hep-ph/0404207 Phenomenology +hep-ph/0404209 Phenomenology +hep-ph/0404210 Phenomenology +hep-ph/0404214 Phenomenology +hep-ph/0404216 Phenomenology +hep-ph/0404217 Phenomenology +hep-ph/0404218 Phenomenology +hep-ph/0404224 Phenomenology +hep-ph/0404227 Phenomenology +hep-ph/0404229 Phenomenology +hep-ph/0404230 Phenomenology +hep-ph/0404232 Phenomenology +hep-ph/0404233 Phenomenology +hep-ph/0404234 Phenomenology +hep-ph/0404238 Phenomenology +hep-ph/0404239 Phenomenology +hep-ph/0404240 Phenomenology +hep-ph/0404242 Phenomenology +hep-ph/0404245 Phenomenology +hep-ph/0404247 Phenomenology +hep-ph/0404250 Phenomenology +hep-ph/0404252 Phenomenology +hep-ph/0404253 Phenomenology +hep-ph/0404255 Phenomenology +hep-ph/0404258 Phenomenology +hep-ph/0404261 Phenomenology +hep-ph/0404262 Phenomenology +hep-ph/0404263 Phenomenology +hep-ph/0404264 Phenomenology +hep-ph/0404268 Phenomenology +hep-ph/0404272 Phenomenology +hep-ph/0404273 Phenomenology +hep-ph/0404274 Phenomenology +hep-ph/0404275 Phenomenology +hep-ph/0404276 Phenomenology +hep-ph/0404277 Phenomenology +hep-ph/0404283 Phenomenology +hep-ph/0404287 Phenomenology +hep-ph/0404288 Phenomenology +hep-ph/0404289 Phenomenology +hep-ph/0404290 Phenomenology +hep-ph/0405002 Phenomenology +hep-ph/0405005 Phenomenology +hep-ph/0405007 Phenomenology +hep-ph/0405008 Phenomenology +hep-ph/0405009 Phenomenology +hep-ph/0405010 Phenomenology +hep-ph/0405012 Phenomenology +hep-ph/0405014 Phenomenology +hep-ph/0405016 Phenomenology +hep-ph/0405017 Phenomenology +hep-ph/0405022 Phenomenology +hep-ph/0405024 Phenomenology +hep-ph/0405025 Phenomenology +hep-ph/0405027 Phenomenology +hep-ph/0405029 Phenomenology +hep-ph/0405031 Phenomenology +hep-ph/0405037 Phenomenology +hep-ph/0405039 Phenomenology +hep-ph/0405042 Phenomenology +hep-ph/0405044 Phenomenology +hep-ph/0405047 Phenomenology +hep-ph/0405048 Phenomenology +hep-ph/0405049 Phenomenology +hep-ph/0405050 Phenomenology +hep-ph/0405051 Phenomenology +hep-ph/0405052 Phenomenology +hep-ph/0405053 Phenomenology +hep-ph/0405055 Phenomenology +hep-ph/0405060 Phenomenology +hep-ph/0405061 Phenomenology +hep-ph/0405063 Phenomenology +hep-ph/0405064 Phenomenology +hep-ph/0405068 Phenomenology +hep-ph/0405071 Phenomenology +hep-ph/0405072 Phenomenology +hep-ph/0405077 Phenomenology +hep-ph/0405078 Phenomenology +hep-ph/0405081 Phenomenology +hep-ph/0405082 Phenomenology +hep-ph/0405085 Phenomenology +hep-ph/0405092 Phenomenology +hep-ph/0405093 Phenomenology +hep-ph/0405095 Phenomenology +hep-ph/0405098 Phenomenology +hep-ph/0405101 Phenomenology +hep-ph/0405103 Phenomenology +hep-ph/0405111 Phenomenology +hep-ph/0405112 Phenomenology +hep-ph/0405114 Phenomenology +hep-ph/0405116 Phenomenology +hep-ph/0405118 Phenomenology +hep-ph/0405125 Phenomenology +hep-ph/0405128 Phenomenology +hep-ph/0405129 Phenomenology +hep-ph/0405131 Phenomenology +hep-ph/0405134 Phenomenology +hep-ph/0405142 Phenomenology +hep-ph/0405148 Phenomenology +hep-ph/0405149 Phenomenology +hep-ph/0405151 Phenomenology +hep-ph/0405153 Phenomenology +hep-ph/0405154 Phenomenology +hep-ph/0405157 Phenomenology +hep-ph/0405158 Phenomenology +hep-ph/0405162 Phenomenology +hep-ph/0405166 Phenomenology +hep-ph/0405171 Phenomenology +hep-ph/0405174 Phenomenology +hep-ph/0405176 Phenomenology +hep-ph/0405177 Phenomenology +hep-ph/0405178 Phenomenology +hep-ph/0405180 Phenomenology +hep-ph/0405182 Phenomenology +hep-ph/0405183 Phenomenology +hep-ph/0405185 Phenomenology +hep-ph/0405186 Phenomenology +hep-ph/0405187 Phenomenology +hep-ph/0405188 Phenomenology +hep-ph/0405189 Phenomenology +hep-ph/0405192 Phenomenology +hep-ph/0405195 Phenomenology +hep-ph/0405197 Phenomenology +hep-ph/0405199 Phenomenology +hep-ph/0405200 Phenomenology +hep-ph/0405201 Phenomenology +hep-ph/0405202 Phenomenology +hep-ph/0405203 Phenomenology +hep-ph/0405211 Phenomenology +hep-ph/0405215 Phenomenology +hep-ph/0405218 Phenomenology +hep-ph/0405220 Phenomenology +hep-ph/0405224 Phenomenology +hep-ph/0405226 Phenomenology +hep-ph/0405228 Phenomenology +hep-ph/0405229 Phenomenology +hep-ph/0405231 Phenomenology +hep-ph/0405232 Phenomenology +hep-ph/0405233 Phenomenology +hep-ph/0405234 Phenomenology +hep-ph/0405235 Phenomenology +hep-ph/0405236 Phenomenology +hep-ph/0405240 Phenomenology +hep-ph/0405241 Phenomenology +hep-ph/0405244 Phenomenology +hep-ph/0405246 Phenomenology +hep-ph/0405248 Phenomenology +hep-ph/0405249 Phenomenology +hep-ph/0405255 Phenomenology +hep-ph/0405256 Phenomenology +hep-ph/0405257 Phenomenology +hep-ph/0405258 Phenomenology +hep-ph/0405260 Phenomenology +hep-ph/0405263 Phenomenology +hep-ph/0405267 Phenomenology +hep-ph/0405270 Phenomenology +hep-ph/0405271 Phenomenology +hep-ph/0405274 Phenomenology +hep-ph/0405275 Phenomenology +hep-ph/0405277 Phenomenology +hep-ph/0405280 Phenomenology +hep-ph/0405283 Phenomenology +hep-ph/0405288 Phenomenology +hep-ph/0405297 Phenomenology +hep-ph/0405298 Phenomenology +hep-ph/0405299 Phenomenology +hep-ph/0405300 Phenomenology +hep-ph/0406003 Phenomenology +hep-ph/0406004 Phenomenology +hep-ph/0406011 Phenomenology +hep-ph/0406012 Phenomenology +hep-ph/0406017 Phenomenology +hep-ph/0406022 Phenomenology +hep-ph/0406025 Phenomenology +hep-ph/0406026 Phenomenology +hep-ph/0406027 Phenomenology +hep-ph/0406028 Phenomenology +hep-ph/0406030 Phenomenology +hep-ph/0406031 Phenomenology +hep-ph/0406032 Phenomenology +hep-ph/0406035 Phenomenology +hep-ph/0406037 Phenomenology +hep-ph/0406041 Phenomenology +hep-ph/0406042 Phenomenology +hep-ph/0406047 Phenomenology +hep-ph/0406048 Phenomenology +hep-ph/0406051 Phenomenology +hep-ph/0406052 Phenomenology +hep-ph/0406053 Phenomenology +hep-ph/0406058 Phenomenology +hep-ph/0406059 Phenomenology +hep-ph/0406062 Phenomenology +hep-ph/0406063 Phenomenology +hep-ph/0406067 Phenomenology +hep-ph/0406069 Phenomenology +hep-ph/0406071 Phenomenology +hep-ph/0406072 Phenomenology +hep-ph/0406073 Phenomenology +hep-ph/0406077 Phenomenology +hep-ph/0406078 Phenomenology +hep-ph/0406084 Phenomenology +hep-ph/0406085 Phenomenology +hep-ph/0406089 Phenomenology +hep-ph/0406090 Phenomenology +hep-ph/0406092 Phenomenology +hep-ph/0406094 Phenomenology +hep-ph/0406095 Phenomenology +hep-ph/0406097 Phenomenology +hep-ph/0406099 Phenomenology +hep-ph/0406102 Phenomenology +hep-ph/0406103 Phenomenology +hep-ph/0406104 Phenomenology +hep-ph/0406108 Phenomenology +hep-ph/0406110 Phenomenology +hep-ph/0406112 Phenomenology +hep-ph/0406113 Phenomenology +hep-ph/0406119 Phenomenology +hep-ph/0406139 Phenomenology +hep-ph/0406141 Phenomenology +hep-ph/0406146 Phenomenology +hep-ph/0406148 Phenomenology +hep-ph/0406158 Phenomenology +hep-ph/0406159 Phenomenology +hep-ph/0406162 Phenomenology +hep-ph/0406163 Phenomenology +hep-ph/0406168 Phenomenology +hep-ph/0406169 Phenomenology +hep-ph/0406171 Phenomenology +hep-ph/0406172 Phenomenology +hep-ph/0406174 Phenomenology +hep-ph/0406177 Phenomenology +hep-ph/0406183 Phenomenology +hep-ph/0406186 Phenomenology +hep-ph/0406188 Phenomenology +hep-ph/0406189 Phenomenology +hep-ph/0406190 Phenomenology +hep-ph/0406193 Phenomenology +hep-ph/0406194 Phenomenology +hep-ph/0406199 Phenomenology +hep-ph/0406200 Phenomenology +hep-ph/0406203 Phenomenology +hep-ph/0406204 Phenomenology +hep-ph/0406206 Phenomenology +hep-ph/0406208 Phenomenology +hep-ph/0406209 Phenomenology +hep-ph/0406210 Phenomenology +hep-ph/0406211 Phenomenology +hep-ph/0406219 Phenomenology +hep-ph/0406222 Phenomenology +hep-ph/0406223 Phenomenology +hep-ph/0406231 Phenomenology +hep-ph/0406233 Phenomenology +hep-ph/0406235 Phenomenology +hep-ph/0406237 Phenomenology +hep-ph/0406240 Phenomenology +hep-ph/0406243 Phenomenology +hep-ph/0406245 Phenomenology +hep-ph/0406246 Phenomenology +hep-ph/0406253 Phenomenology +hep-ph/0406254 Phenomenology +hep-ph/0406257 Phenomenology +hep-ph/0406258 Phenomenology +hep-ph/0406263 Phenomenology +hep-ph/0406264 Phenomenology +hep-ph/0406266 Phenomenology +hep-ph/0406267 Phenomenology +hep-ph/0406269 Phenomenology +hep-ph/0406273 Phenomenology +hep-ph/0406274 Phenomenology +hep-ph/0406276 Phenomenology +hep-ph/0406277 Phenomenology +hep-ph/0406278 Phenomenology +hep-ph/0406280 Phenomenology +hep-ph/0406288 Phenomenology +hep-ph/0406290 Phenomenology +hep-ph/0406295 Phenomenology +hep-ph/0406296 Phenomenology +hep-ph/0406298 Phenomenology +hep-ph/0406299 Phenomenology +hep-ph/0406302 Phenomenology +hep-ph/0406306 Phenomenology +hep-ph/0406309 Phenomenology +hep-ph/0406310 Phenomenology +hep-ph/0406311 Phenomenology +hep-ph/0406316 Phenomenology +hep-ph/0406318 Phenomenology +hep-ph/0406320 Phenomenology +hep-ph/0406332 Phenomenology +hep-ph/0406336 Phenomenology +hep-ph/0406337 Phenomenology +hep-ph/0406338 Phenomenology +hep-ph/0407001 Phenomenology +hep-ph/0407002 Phenomenology +hep-ph/0407003 Phenomenology +hep-ph/0407004 Phenomenology +hep-ph/0407006 Phenomenology +hep-ph/0407008 Phenomenology +hep-ph/0407012 Phenomenology +hep-ph/0407016 Phenomenology +hep-ph/0407019 Phenomenology +hep-ph/0407021 Phenomenology +hep-ph/0407022 Phenomenology +hep-ph/0407024 Phenomenology +hep-ph/0407026 Phenomenology +hep-ph/0407029 Phenomenology +hep-ph/0407030 Phenomenology +hep-ph/0407033 Phenomenology +hep-ph/0407034 Phenomenology +hep-ph/0407041 Phenomenology +hep-ph/0407044 Phenomenology +hep-ph/0407045 Phenomenology +hep-ph/0407050 Phenomenology +hep-ph/0407051 Phenomenology +hep-ph/0407052 Phenomenology +hep-ph/0407058 Phenomenology +hep-ph/0407065 Phenomenology +hep-ph/0407066 Phenomenology +hep-ph/0407067 Phenomenology +hep-ph/0407068 Phenomenology +hep-ph/0407071 Phenomenology +hep-ph/0407072 Phenomenology +hep-ph/0407074 Phenomenology +hep-ph/0407077 Phenomenology +hep-ph/0407079 Phenomenology +hep-ph/0407081 Phenomenology +hep-ph/0407082 Phenomenology +hep-ph/0407083 Phenomenology +hep-ph/0407084 Phenomenology +hep-ph/0407089 Phenomenology +hep-ph/0407090 Phenomenology +hep-ph/0407093 Phenomenology +hep-ph/0407095 Phenomenology +hep-ph/0407100 Phenomenology +hep-ph/0407101 Phenomenology +hep-ph/0407103 Phenomenology +hep-ph/0407106 Phenomenology +hep-ph/0407107 Phenomenology +hep-ph/0407110 Phenomenology +hep-ph/0407112 Phenomenology +hep-ph/0407114 Phenomenology +hep-ph/0407116 Phenomenology +hep-ph/0407118 Phenomenology +hep-ph/0407126 Phenomenology +hep-ph/0407131 Phenomenology +hep-ph/0407133 Phenomenology +hep-ph/0407137 Phenomenology +hep-ph/0407138 Phenomenology +hep-ph/0407139 Phenomenology +hep-ph/0407141 Phenomenology +hep-ph/0407142 Phenomenology +hep-ph/0407144 Phenomenology +hep-ph/0407145 Phenomenology +hep-ph/0407149 Phenomenology +hep-ph/0407151 Phenomenology +hep-ph/0407153 Phenomenology +hep-ph/0407155 Phenomenology +hep-ph/0407162 Phenomenology +hep-ph/0407163 Phenomenology +hep-ph/0407168 Phenomenology +hep-ph/0407169 Phenomenology +hep-ph/0407175 Phenomenology +hep-ph/0407180 Phenomenology +hep-ph/0407182 Phenomenology +hep-ph/0407191 Phenomenology +hep-ph/0407193 Phenomenology +hep-ph/0407194 Phenomenology +hep-ph/0407201 Phenomenology +hep-ph/0407203 Phenomenology +hep-ph/0407208 Phenomenology +hep-ph/0407210 Phenomenology +hep-ph/0407211 Phenomenology +hep-ph/0407213 Phenomenology +hep-ph/0407214 Phenomenology +hep-ph/0407215 Phenomenology +hep-ph/0407217 Phenomenology +hep-ph/0407221 Phenomenology +hep-ph/0407226 Phenomenology +hep-ph/0407228 Phenomenology +hep-ph/0407230 Phenomenology +hep-ph/0407231 Phenomenology +hep-ph/0407232 Phenomenology +hep-ph/0407235 Phenomenology +hep-ph/0407237 Phenomenology +hep-ph/0407238 Phenomenology +hep-ph/0407239 Phenomenology +hep-ph/0407242 Phenomenology +hep-ph/0407243 Phenomenology +hep-ph/0407244 Phenomenology +hep-ph/0407253 Phenomenology +hep-ph/0407256 Phenomenology +hep-ph/0407265 Phenomenology +hep-ph/0407268 Phenomenology +hep-ph/0407270 Phenomenology +hep-ph/0407271 Phenomenology +hep-ph/0407272 Phenomenology +hep-ph/0407275 Phenomenology +hep-ph/0407277 Phenomenology +hep-ph/0407280 Phenomenology +hep-ph/0407282 Phenomenology +hep-ph/0407283 Phenomenology +hep-ph/0407284 Phenomenology +hep-ph/0407285 Phenomenology +hep-ph/0407288 Phenomenology +hep-ph/0407290 Phenomenology +hep-ph/0407292 Phenomenology +hep-ph/0407299 Phenomenology +hep-ph/0407300 Phenomenology +hep-ph/0407301 Phenomenology +hep-ph/0407302 Phenomenology +hep-ph/0407306 Phenomenology +hep-ph/0407307 Phenomenology +hep-ph/0407312 Phenomenology +hep-ph/0407320 Phenomenology +hep-ph/0407327 Phenomenology +hep-ph/0407329 Phenomenology +hep-ph/0407330 Phenomenology +hep-ph/0407331 Phenomenology +hep-ph/0407334 Phenomenology +hep-ph/0407336 Phenomenology +hep-ph/0407338 Phenomenology +hep-ph/0407346 Phenomenology +hep-ph/0407348 Phenomenology +hep-ph/0407349 Phenomenology +hep-ph/0407354 Phenomenology +hep-ph/0407356 Phenomenology +hep-ph/0407358 Phenomenology +hep-ph/0407359 Phenomenology +hep-ph/0407363 Phenomenology +hep-ph/0407364 Phenomenology +hep-ph/0407368 Phenomenology +hep-ph/0407369 Phenomenology +hep-ph/0407370 Phenomenology +hep-ph/0408001 Phenomenology +hep-ph/0408003 Phenomenology +hep-ph/0408009 Phenomenology +hep-ph/0408010 Phenomenology +hep-ph/0408016 Phenomenology +hep-ph/0408022 Phenomenology +hep-ph/0408026 Phenomenology +hep-ph/0408027 Phenomenology +hep-ph/0408028 Phenomenology +hep-ph/0408029 Phenomenology +hep-ph/0408030 Phenomenology +hep-ph/0408031 Phenomenology +hep-ph/0408033 Phenomenology +hep-ph/0408043 Phenomenology +hep-ph/0408046 Phenomenology +hep-ph/0408049 Phenomenology +hep-ph/0408051 Phenomenology +hep-ph/0408055 Phenomenology +hep-ph/0408057 Phenomenology +hep-ph/0408060 Phenomenology +hep-ph/0408065 Phenomenology +hep-ph/0408073 Phenomenology +hep-ph/0408075 Phenomenology +hep-ph/0408076 Phenomenology +hep-ph/0408077 Phenomenology +hep-ph/0408078 Phenomenology +hep-ph/0408080 Phenomenology +hep-ph/0408083 Phenomenology +hep-ph/0408088 Phenomenology +hep-ph/0408094 Phenomenology +hep-ph/0408099 Phenomenology +hep-ph/0408101 Phenomenology +hep-ph/0408103 Phenomenology +hep-ph/0408107 Phenomenology +hep-ph/0408108 Phenomenology +hep-ph/0408109 Phenomenology +hep-ph/0408112 Phenomenology +hep-ph/0408113 Phenomenology +hep-ph/0408115 Phenomenology +hep-ph/0408116 Phenomenology +hep-ph/0408119 Phenomenology +hep-ph/0408121 Phenomenology +hep-ph/0408127 Phenomenology +hep-ph/0408128 Phenomenology +hep-ph/0408133 Phenomenology +hep-ph/0408135 Phenomenology +hep-ph/0408137 Phenomenology +hep-ph/0408139 Phenomenology +hep-ph/0408147 Phenomenology +hep-ph/0408148 Phenomenology +hep-ph/0408150 Phenomenology +hep-ph/0408159 Phenomenology +hep-ph/0408160 Phenomenology +hep-ph/0408161 Phenomenology +hep-ph/0408163 Phenomenology +hep-ph/0408165 Phenomenology +hep-ph/0408166 Phenomenology +hep-ph/0408169 Phenomenology +hep-ph/0408171 Phenomenology +hep-ph/0408179 Phenomenology +hep-ph/0408180 Phenomenology +hep-ph/0408183 Phenomenology +hep-ph/0408185 Phenomenology +hep-ph/0408188 Phenomenology +hep-ph/0408195 Phenomenology +hep-ph/0408197 Phenomenology +hep-ph/0408198 Phenomenology +hep-ph/0408203 Phenomenology +hep-ph/0408206 Phenomenology +hep-ph/0408207 Phenomenology +hep-ph/0408208 Phenomenology +hep-ph/0408209 Phenomenology +hep-ph/0408211 Phenomenology +hep-ph/0408213 Phenomenology +hep-ph/0408216 Phenomenology +hep-ph/0408223 Phenomenology +hep-ph/0408225 Phenomenology +hep-ph/0408231 Phenomenology +hep-ph/0408233 Phenomenology +hep-ph/0408241 Phenomenology +hep-ph/0408243 Phenomenology +hep-ph/0408246 Phenomenology +hep-ph/0408249 Phenomenology +hep-ph/0408252 Phenomenology +hep-ph/0408258 Phenomenology +hep-ph/0408261 Phenomenology +hep-ph/0408262 Phenomenology +hep-ph/0408263 Phenomenology +hep-ph/0408273 Phenomenology +hep-ph/0408274 Phenomenology +hep-ph/0408275 Phenomenology +hep-ph/0408289 Phenomenology +hep-ph/0408292 Phenomenology +hep-ph/0408293 Phenomenology +hep-ph/0408298 Phenomenology +hep-ph/0408303 Phenomenology +hep-ph/0408309 Phenomenology +hep-ph/0408318 Phenomenology +hep-ph/0408319 Phenomenology +hep-ph/0408324 Phenomenology +hep-ph/0408336 Phenomenology +hep-ph/0408342 Phenomenology +hep-ph/0408348 Phenomenology +hep-ph/0408356 Phenomenology +hep-ph/0408361 Phenomenology +hep-ph/0408364 Phenomenology +hep-ph/0408365 Phenomenology +hep-ph/0409001 Phenomenology +hep-ph/0409003 Phenomenology +hep-ph/0409006 Phenomenology +hep-ph/0409011 Phenomenology +hep-ph/0409012 Phenomenology +hep-ph/0409013 Phenomenology +hep-ph/0409015 Phenomenology +hep-ph/0409019 Phenomenology +hep-ph/0409023 Phenomenology +hep-ph/0409025 Phenomenology +hep-ph/0409029 Phenomenology +hep-ph/0409035 Phenomenology +hep-ph/0409043 Phenomenology +hep-ph/0409044 Phenomenology +hep-ph/0409047 Phenomenology +hep-ph/0409048 Phenomenology +hep-ph/0409053 Phenomenology +hep-ph/0409054 Phenomenology +hep-ph/0409055 Phenomenology +hep-ph/0409059 Phenomenology +hep-ph/0409060 Phenomenology +hep-ph/0409068 Phenomenology +hep-ph/0409070 Phenomenology +hep-ph/0409072 Phenomenology +hep-ph/0409077 Phenomenology +hep-ph/0409079 Phenomenology +hep-ph/0409096 Phenomenology +hep-ph/0409098 Phenomenology +hep-ph/0409100 Phenomenology +hep-ph/0409102 Phenomenology +hep-ph/0409104 Phenomenology +hep-ph/0409107 Phenomenology +hep-ph/0409112 Phenomenology +hep-ph/0409114 Phenomenology +hep-ph/0409124 Phenomenology +hep-ph/0409131 Phenomenology +hep-ph/0409133 Phenomenology +hep-ph/0409137 Phenomenology +hep-ph/0409138 Phenomenology +hep-ph/0409139 Phenomenology +hep-ph/0409141 Phenomenology +hep-ph/0409144 Phenomenology +hep-ph/0409149 Phenomenology +hep-ph/0409151 Phenomenology +hep-ph/0409156 Phenomenology +hep-ph/0409159 Phenomenology +hep-ph/0409160 Phenomenology +hep-ph/0409164 Phenomenology +hep-ph/0409167 Phenomenology +hep-ph/0409169 Phenomenology +hep-ph/0409178 Phenomenology +hep-ph/0409183 Phenomenology +hep-ph/0409187 Phenomenology +hep-ph/0409191 Phenomenology +hep-ph/0409194 Phenomenology +hep-ph/0409203 Phenomenology +hep-ph/0409204 Phenomenology +hep-ph/0409206 Phenomenology +hep-ph/0409216 Phenomenology +hep-ph/0409218 Phenomenology +hep-ph/0409219 Phenomenology +hep-ph/0409222 Phenomenology +hep-ph/0409223 Phenomenology +hep-ph/0409226 Phenomenology +hep-ph/0409227 Phenomenology +hep-ph/0409228 Phenomenology +hep-ph/0409237 Phenomenology +hep-ph/0409238 Phenomenology +hep-ph/0409245 Phenomenology +hep-ph/0409249 Phenomenology +hep-ph/0409256 Phenomenology +hep-ph/0409261 Phenomenology +hep-ph/0409263 Phenomenology +hep-ph/0409268 Phenomenology +hep-ph/0409270 Phenomenology +hep-ph/0409274 Phenomenology +hep-ph/0409275 Phenomenology +hep-ph/0409286 Phenomenology +hep-ph/0409287 Phenomenology +hep-ph/0409289 Phenomenology +hep-ph/0409290 Phenomenology +hep-ph/0409293 Phenomenology +hep-ph/0409294 Phenomenology +hep-ph/0409296 Phenomenology +hep-ph/0409297 Phenomenology +hep-ph/0409300 Phenomenology +hep-ph/0409303 Phenomenology +hep-ph/0409304 Phenomenology +hep-ph/0409306 Phenomenology +hep-ph/0409307 Phenomenology +hep-ph/0409314 Phenomenology +hep-ph/0409316 Phenomenology +hep-ph/0409319 Phenomenology +hep-ph/0409320 Phenomenology +hep-ph/0409321 Phenomenology +hep-ph/0409322 Phenomenology +hep-ph/0409325 Phenomenology +hep-ph/0409327 Phenomenology +hep-ph/0409335 Phenomenology +hep-ph/0409341 Phenomenology +hep-ph/0409345 Phenomenology +hep-ph/0409346 Phenomenology +hep-ph/0409351 Phenomenology +hep-ph/0409354 Phenomenology +hep-ph/0409357 Phenomenology +hep-ph/0410002 Phenomenology +hep-ph/0410003 Phenomenology +hep-ph/0410005 Phenomenology +hep-ph/0410008 Phenomenology +hep-ph/0410011 Phenomenology +hep-ph/0410016 Phenomenology +hep-ph/0410018 Phenomenology +hep-ph/0410021 Phenomenology +hep-ph/0410024 Phenomenology +hep-ph/0410025 Phenomenology +hep-ph/0410030 Phenomenology +hep-ph/0410031 Phenomenology +hep-ph/0410034 Phenomenology +hep-ph/0410042 Phenomenology +hep-ph/0410044 Phenomenology +hep-ph/0410050 Phenomenology +hep-ph/0410054 Phenomenology +hep-ph/0410057 Phenomenology +hep-ph/0410059 Phenomenology +hep-ph/0410061 Phenomenology +hep-ph/0410065 Phenomenology +hep-ph/0410071 Phenomenology +hep-ph/0410074 Phenomenology +hep-ph/0410075 Phenomenology +hep-ph/0410076 Phenomenology +hep-ph/0410082 Phenomenology +hep-ph/0410083 Phenomenology +hep-ph/0410090 Phenomenology +hep-ph/0410096 Phenomenology +hep-ph/0410100 Phenomenology +hep-ph/0410101 Phenomenology +hep-ph/0410105 Phenomenology +hep-ph/0410107 Phenomenology +hep-ph/0410114 Phenomenology +hep-ph/0410116 Phenomenology +hep-ph/0410117 Phenomenology +hep-ph/0410122 Phenomenology +hep-ph/0410127 Phenomenology +hep-ph/0410129 Phenomenology +hep-ph/0410131 Phenomenology +hep-ph/0410136 Phenomenology +hep-ph/0410138 Phenomenology +hep-ph/0410141 Phenomenology +hep-ph/0410142 Phenomenology +hep-ph/0410143 Phenomenology +hep-ph/0410145 Phenomenology +hep-ph/0410146 Phenomenology +hep-ph/0410147 Phenomenology +hep-ph/0410156 Phenomenology +hep-ph/0410158 Phenomenology +hep-ph/0410161 Phenomenology +hep-ph/0410163 Phenomenology +hep-ph/0410164 Phenomenology +hep-ph/0410165 Phenomenology +hep-ph/0410167 Phenomenology +hep-ph/0410169 Phenomenology +hep-ph/0410171 Phenomenology +hep-ph/0410176 Phenomenology +hep-ph/0410179 Phenomenology +hep-ph/0410182 Phenomenology +hep-ph/0410183 Phenomenology +hep-ph/0410184 Phenomenology +hep-ph/0410188 Phenomenology +hep-ph/0410191 Phenomenology +hep-ph/0410208 Phenomenology +hep-ph/0410222 Phenomenology +hep-ph/0410223 Phenomenology +hep-ph/0410228 Phenomenology +hep-ph/0410229 Phenomenology +hep-ph/0410233 Phenomenology +hep-ph/0410239 Phenomenology +hep-ph/0410242 Phenomenology +hep-ph/0410244 Phenomenology +hep-ph/0410247 Phenomenology +hep-ph/0410259 Phenomenology +hep-ph/0410262 Phenomenology +hep-ph/0410266 Phenomenology +hep-ph/0410267 Phenomenology +hep-ph/0410268 Phenomenology +hep-ph/0410269 Phenomenology +hep-ph/0410278 Phenomenology +hep-ph/0410286 Phenomenology +hep-ph/0410289 Phenomenology +hep-ph/0410294 Phenomenology +hep-ph/0410304 Phenomenology +hep-ph/0410305 Phenomenology +hep-ph/0410306 Phenomenology +hep-ph/0410311 Phenomenology +hep-ph/0410315 Phenomenology +hep-ph/0410316 Phenomenology +hep-ph/0410319 Phenomenology +hep-ph/0410320 Phenomenology +hep-ph/0410321 Phenomenology +hep-ph/0410322 Phenomenology +hep-ph/0410323 Phenomenology +hep-ph/0410325 Phenomenology +hep-ph/0410326 Phenomenology +hep-ph/0410327 Phenomenology +hep-ph/0410333 Phenomenology +hep-ph/0410339 Phenomenology +hep-ph/0410343 Phenomenology +hep-ph/0410345 Phenomenology +hep-ph/0410349 Phenomenology +hep-ph/0410350 Phenomenology +hep-ph/0410354 Phenomenology +hep-ph/0410356 Phenomenology +hep-ph/0410358 Phenomenology +hep-ph/0410361 Phenomenology +hep-ph/0410365 Phenomenology +hep-ph/0410367 Phenomenology +hep-ph/0410369 Phenomenology +hep-ph/0410376 Phenomenology +hep-ph/0410380 Phenomenology +hep-ph/0410384 Phenomenology +hep-ph/0410385 Phenomenology +hep-ph/0410387 Phenomenology +hep-ph/0410389 Phenomenology +hep-ph/0410391 Phenomenology +hep-ph/0410392 Phenomenology +hep-ph/0410394 Phenomenology +hep-ph/0410397 Phenomenology +hep-ph/0410399 Phenomenology +hep-ph/0410402 Phenomenology +hep-ph/0410403 Phenomenology +hep-ph/0410404 Phenomenology +hep-ph/0410405 Phenomenology +hep-ph/0410408 Phenomenology +hep-ph/0410409 Phenomenology +hep-ph/0411003 Phenomenology +hep-ph/0411008 Phenomenology +hep-ph/0411009 Phenomenology +hep-ph/0411011 Phenomenology +hep-ph/0411012 Phenomenology +hep-ph/0411014 Phenomenology +hep-ph/0411015 Phenomenology +hep-ph/0411019 Phenomenology +hep-ph/0411021 Phenomenology +hep-ph/0411022 Phenomenology +hep-ph/0411023 Phenomenology +hep-ph/0411025 Phenomenology +hep-ph/0411030 Phenomenology +hep-ph/0411032 Phenomenology +hep-ph/0411037 Phenomenology +hep-ph/0411041 Phenomenology +hep-ph/0411042 Phenomenology +hep-ph/0411043 Phenomenology +hep-ph/0411044 Phenomenology +hep-ph/0411049 Phenomenology +hep-ph/0411050 Phenomenology +hep-ph/0411055 Phenomenology +hep-ph/0411068 Phenomenology +hep-ph/0411069 Phenomenology +hep-ph/0411070 Phenomenology +hep-ph/0411078 Phenomenology +hep-ph/0411079 Phenomenology +hep-ph/0411085 Phenomenology +hep-ph/0411086 Phenomenology +hep-ph/0411088 Phenomenology +hep-ph/0411090 Phenomenology +hep-ph/0411099 Phenomenology +hep-ph/0411104 Phenomenology +hep-ph/0411105 Phenomenology +hep-ph/0411115 Phenomenology +hep-ph/0411116 Phenomenology +hep-ph/0411118 Phenomenology +hep-ph/0411121 Phenomenology +hep-ph/0411123 Phenomenology +hep-ph/0411126 Phenomenology +hep-ph/0411128 Phenomenology +hep-ph/0411130 Phenomenology +hep-ph/0411131 Phenomenology +hep-ph/0411133 Phenomenology +hep-ph/0411134 Phenomenology +hep-ph/0411137 Phenomenology +hep-ph/0411139 Phenomenology +hep-ph/0411141 Phenomenology +hep-ph/0411142 Phenomenology +hep-ph/0411143 Phenomenology +hep-ph/0411144 Phenomenology +hep-ph/0411148 Phenomenology +hep-ph/0411152 Phenomenology +hep-ph/0411156 Phenomenology +hep-ph/0411157 Phenomenology +hep-ph/0411158 Phenomenology +hep-ph/0411162 Phenomenology +hep-ph/0411164 Phenomenology +hep-ph/0411169 Phenomenology +hep-ph/0411170 Phenomenology +hep-ph/0411176 Phenomenology +hep-ph/0411178 Phenomenology +hep-ph/0411180 Phenomenology +hep-ph/0411182 Phenomenology +hep-ph/0411185 Phenomenology +hep-ph/0411187 Phenomenology +hep-ph/0411190 Phenomenology +hep-ph/0411193 Phenomenology +hep-ph/0411196 Phenomenology +hep-ph/0411199 Phenomenology +hep-ph/0411201 Phenomenology +hep-ph/0411202 Phenomenology +hep-ph/0411203 Phenomenology +hep-ph/0411206 Phenomenology +hep-ph/0411207 Phenomenology +hep-ph/0411208 Phenomenology +hep-ph/0411209 Phenomenology +hep-ph/0411211 Phenomenology +hep-ph/0411212 Phenomenology +hep-ph/0411215 Phenomenology +hep-ph/0411218 Phenomenology +hep-ph/0411219 Phenomenology +hep-ph/0411220 Phenomenology +hep-ph/0411224 Phenomenology +hep-ph/0411226 Phenomenology +hep-ph/0411231 Phenomenology +hep-ph/0411235 Phenomenology +hep-ph/0411236 Phenomenology +hep-ph/0411237 Phenomenology +hep-ph/0411239 Phenomenology +hep-ph/0411240 Phenomenology +hep-ph/0411245 Phenomenology +hep-ph/0411249 Phenomenology +hep-ph/0411250 Phenomenology +hep-ph/0411252 Phenomenology +hep-ph/0411253 Phenomenology +hep-ph/0411254 Phenomenology +hep-ph/0411256 Phenomenology +hep-ph/0411257 Phenomenology +hep-ph/0411264 Phenomenology +hep-ph/0411266 Phenomenology +hep-ph/0411267 Phenomenology +hep-ph/0411272 Phenomenology +hep-ph/0411276 Phenomenology +hep-ph/0411279 Phenomenology +hep-ph/0411281 Phenomenology +hep-ph/0411282 Phenomenology +hep-ph/0411284 Phenomenology +hep-ph/0411288 Phenomenology +hep-ph/0411289 Phenomenology +hep-ph/0411290 Phenomenology +hep-ph/0411292 Phenomenology +hep-ph/0411293 Phenomenology +hep-ph/0411294 Phenomenology +hep-ph/0411296 Phenomenology +hep-ph/0411297 Phenomenology +hep-ph/0411302 Phenomenology +hep-ph/0411305 Phenomenology +hep-ph/0411306 Phenomenology +hep-ph/0411309 Phenomenology +hep-ph/0411316 Phenomenology +hep-ph/0411318 Phenomenology +hep-ph/0411319 Phenomenology +hep-ph/0411321 Phenomenology +hep-ph/0411324 Phenomenology +hep-ph/0411327 Phenomenology +hep-ph/0411328 Phenomenology +hep-ph/0411329 Phenomenology +hep-ph/0411330 Phenomenology +hep-ph/0411334 Phenomenology +hep-ph/0411339 Phenomenology +hep-ph/0411341 Phenomenology +hep-ph/0411342 Phenomenology +hep-ph/0411345 Phenomenology +hep-ph/0411346 Phenomenology +hep-ph/0411348 Phenomenology +hep-ph/0411349 Phenomenology +hep-ph/0411354 Phenomenology +hep-ph/0411356 Phenomenology +hep-ph/0411357 Phenomenology +hep-ph/0411359 Phenomenology +hep-ph/0411366 Phenomenology +hep-ph/0411368 Phenomenology +hep-ph/0411372 Phenomenology +hep-ph/0411374 Phenomenology +hep-ph/0411375 Phenomenology +hep-ph/0411376 Phenomenology +hep-ph/0411377 Phenomenology +hep-ph/0411384 Phenomenology +hep-ph/0411387 Phenomenology +hep-ph/0411388 Phenomenology +hep-ph/0411390 Phenomenology +hep-ph/0411394 Phenomenology +hep-ph/0411396 Phenomenology +hep-ph/0411399 Phenomenology +hep-ph/0411404 Phenomenology +hep-ph/0411407 Phenomenology +hep-ph/0412001 Phenomenology +hep-ph/0412006 Phenomenology +hep-ph/0412009 Phenomenology +hep-ph/0412010 Phenomenology +hep-ph/0412011 Phenomenology +hep-ph/0412012 Phenomenology +hep-ph/0412014 Phenomenology +hep-ph/0412015 Phenomenology +hep-ph/0412017 Phenomenology +hep-ph/0412020 Phenomenology +hep-ph/0412025 Phenomenology +hep-ph/0412026 Phenomenology +hep-ph/0412029 Phenomenology +hep-ph/0412031 Phenomenology +hep-ph/0412032 Phenomenology +hep-ph/0412034 Phenomenology +hep-ph/0412036 Phenomenology +hep-ph/0412037 Phenomenology +hep-ph/0412045 Phenomenology +hep-ph/0412047 Phenomenology +hep-ph/0412048 Phenomenology +hep-ph/0412052 Phenomenology +hep-ph/0412056 Phenomenology +hep-ph/0412057 Phenomenology +hep-ph/0412059 Phenomenology +hep-ph/0412061 Phenomenology +hep-ph/0412062 Phenomenology +hep-ph/0412068 Phenomenology +hep-ph/0412071 Phenomenology +hep-ph/0412072 Phenomenology +hep-ph/0412077 Phenomenology +hep-ph/0412082 Phenomenology +hep-ph/0412083 Phenomenology +hep-ph/0412085 Phenomenology +hep-ph/0412086 Phenomenology +hep-ph/0412087 Phenomenology +hep-ph/0412092 Phenomenology +hep-ph/0412096 Phenomenology +hep-ph/0412097 Phenomenology +hep-ph/0412103 Phenomenology +hep-ph/0412105 Phenomenology +hep-ph/0412106 Phenomenology +hep-ph/0412107 Phenomenology +hep-ph/0412110 Phenomenology +hep-ph/0412111 Phenomenology +hep-ph/0412117 Phenomenology +hep-ph/0412119 Phenomenology +hep-ph/0412121 Phenomenology +hep-ph/0412127 Phenomenology +hep-ph/0412129 Phenomenology +hep-ph/0412133 Phenomenology +hep-ph/0412134 Phenomenology +hep-ph/0412135 Phenomenology +hep-ph/0412137 Phenomenology +hep-ph/0412142 Phenomenology +hep-ph/0412143 Phenomenology +hep-ph/0412145 Phenomenology +hep-ph/0412147 Phenomenology +hep-ph/0412148 Phenomenology +hep-ph/0412152 Phenomenology +hep-ph/0412163 Phenomenology +hep-ph/0412164 Phenomenology +hep-ph/0412166 Phenomenology +hep-ph/0412171 Phenomenology +hep-ph/0412173 Phenomenology +hep-ph/0412174 Phenomenology +hep-ph/0412176 Phenomenology +hep-ph/0412181 Phenomenology +hep-ph/0412184 Phenomenology +hep-ph/0412185 Phenomenology +hep-ph/0412192 Phenomenology +hep-ph/0412193 Phenomenology +hep-ph/0412194 Phenomenology +hep-ph/0412196 Phenomenology +hep-ph/0412198 Phenomenology +hep-ph/0412201 Phenomenology +hep-ph/0412211 Phenomenology +hep-ph/0412213 Phenomenology +hep-ph/0412221 Phenomenology +hep-ph/0412222 Phenomenology +hep-ph/0412224 Phenomenology +hep-ph/0412225 Phenomenology +hep-ph/0412227 Phenomenology +hep-ph/0412228 Phenomenology +hep-ph/0412230 Phenomenology +hep-ph/0412235 Phenomenology +hep-ph/0412237 Phenomenology +hep-ph/0412245 Phenomenology +hep-ph/0412246 Phenomenology +hep-ph/0412248 Phenomenology +hep-ph/0412250 Phenomenology +hep-ph/0412254 Phenomenology +hep-ph/0412257 Phenomenology +hep-ph/0412258 Phenomenology +hep-ph/0412262 Phenomenology +hep-ph/0412263 Phenomenology +hep-ph/0412266 Phenomenology +hep-ph/0412276 Phenomenology +hep-ph/0412282 Phenomenology +hep-ph/0412288 Phenomenology +hep-ph/0412289 Phenomenology +hep-ph/0412290 Phenomenology +hep-ph/0412294 Phenomenology +hep-ph/0412295 Phenomenology +hep-ph/0412298 Phenomenology +hep-ph/0412299 Phenomenology +hep-ph/0412301 Phenomenology +hep-ph/0412303 Phenomenology +hep-ph/0412304 Phenomenology +hep-ph/0412305 Phenomenology +hep-ph/0412306 Phenomenology +hep-ph/0412307 Phenomenology +hep-ph/0412308 Phenomenology +hep-ph/0412311 Phenomenology +hep-ph/0412312 Phenomenology +hep-ph/0412313 Phenomenology +hep-ph/0412319 Phenomenology +hep-ph/0412320 Phenomenology +hep-ph/0412323 Phenomenology +hep-ph/0412326 Phenomenology +hep-ph/0412327 Phenomenology +hep-ph/0412328 Phenomenology +hep-ph/0412331 Phenomenology +hep-ph/0412335 Phenomenology +hep-ph/0412336 Phenomenology +hep-ph/0412338 Phenomenology +hep-ph/0412341 Phenomenology +hep-ph/0412342 Phenomenology +hep-ph/0412346 Phenomenology +hep-ph/0412353 Phenomenology +hep-ph/0412354 Phenomenology +hep-ph/0412356 Phenomenology +hep-ph/0412357 Phenomenology +hep-ph/0412359 Phenomenology +hep-ph/0412362 Phenomenology +hep-ph/0412363 Phenomenology +hep-ph/0412368 Phenomenology +hep-ph/0412370 Phenomenology +hep-ph/0412371 Phenomenology +hep-ph/0412372 Phenomenology +hep-ph/0412373 Phenomenology +hep-ph/0412374 Phenomenology +hep-ph/0412377 Phenomenology +hep-ph/0412381 Phenomenology +hep-ph/0412382 Phenomenology +hep-ph/0412391 Phenomenology +hep-ph/0412392 Phenomenology +hep-ph/0412399 Phenomenology +hep-ph/0412401 Phenomenology +hep-ph/0412403 Phenomenology +hep-ph/0412404 Phenomenology +hep-ph/0412405 Phenomenology +hep-ph/0412408 Phenomenology +hep-ph/0412410 Phenomenology +hep-ph/0412413 Phenomenology +hep-ph/0412417 Phenomenology +hep-ph/0412418 Phenomenology +hep-ph/0412420 Phenomenology +hep-ph/0412421 Phenomenology +hep-ph/0412422 Phenomenology +hep-ph/0412423 Phenomenology +hep-ph/0412424 Phenomenology +hep-ph/0412426 Phenomenology +hep-ph/0611342 Phenomenology +hep-ph/0611343 Phenomenology +hep-th/0301007 Theory +hep-th/0301008 Theory +hep-th/0301012 Theory +hep-th/0301013 Theory +hep-th/0301015 Theory +hep-th/0301019 Theory +hep-th/0301020 Theory +hep-th/0301022 Theory +hep-th/0301024 Theory +hep-th/0301025 Theory +hep-th/0301027 Theory +hep-th/0301030 Theory +hep-th/0301031 Theory +hep-th/0301032 Theory +hep-th/0301034 Theory +hep-th/0301036 Theory +hep-th/0301039 Theory +hep-th/0301043 Theory +hep-th/0301044 Theory +hep-th/0301045 Theory +hep-th/0301046 Theory +hep-th/0301047 Theory +hep-th/0301048 Theory +hep-th/0301049 Theory +hep-th/0301052 Theory +hep-th/0301053 Theory +hep-th/0301056 Theory +hep-th/0301057 Theory +hep-th/0301059 Theory +hep-th/0301060 Theory +hep-th/0301063 Theory +hep-th/0301065 Theory +hep-th/0301069 Theory +hep-th/0301072 Theory +hep-th/0301076 Theory +hep-th/0301080 Theory +hep-th/0301081 Theory +hep-th/0301082 Theory +hep-th/0301085 Theory +hep-th/0301086 Theory +hep-th/0301087 Theory +hep-th/0301088 Theory +hep-th/0301089 Theory +hep-th/0301097 Theory +hep-th/0301098 Theory +hep-th/0301099 Theory +hep-th/0301100 Theory +hep-th/0301101 Theory +hep-th/0301104 Theory +hep-th/0301105 Theory +hep-th/0301108 Theory +hep-th/0301110 Theory +hep-th/0301112 Theory +hep-th/0301115 Theory +hep-th/0301116 Theory +hep-th/0301120 Theory +hep-th/0301122 Theory +hep-th/0301124 Theory +hep-th/0301125 Theory +hep-th/0301126 Theory +hep-th/0301127 Theory +hep-th/0301130 Theory +hep-th/0301135 Theory +hep-th/0301137 Theory +hep-th/0301148 Theory +hep-th/0301149 Theory +hep-th/0301153 Theory +hep-th/0301154 Theory +hep-th/0301165 Theory +hep-th/0301168 Theory +hep-th/0301172 Theory +hep-th/0301175 Theory +hep-th/0301176 Theory +hep-th/0301177 Theory +hep-th/0301179 Theory +hep-th/0301180 Theory +hep-th/0301182 Theory +hep-th/0301183 Theory +hep-th/0301185 Theory +hep-th/0301186 Theory +hep-th/0301187 Theory +hep-th/0301188 Theory +hep-th/0301189 Theory +hep-th/0301190 Theory +hep-th/0301192 Theory +hep-th/0301195 Theory +hep-th/0301198 Theory +hep-th/0301207 Theory +hep-th/0301211 Theory +hep-th/0301212 Theory +hep-th/0301214 Theory +hep-th/0301220 Theory +hep-th/0301221 Theory +hep-th/0301222 Theory +hep-th/0301223 Theory +hep-th/0301225 Theory +hep-th/0301227 Theory +hep-th/0301230 Theory +hep-th/0301231 Theory +hep-th/0301237 Theory +hep-th/0301239 Theory +hep-th/0301242 Theory +hep-th/0301244 Theory +hep-th/0301248 Theory +hep-th/0301249 Theory +hep-th/0301251 Theory +hep-th/0301252 Theory +hep-th/0301253 Theory +hep-th/0302003 Theory +hep-th/0302005 Theory +hep-th/0302007 Theory +hep-th/0302008 Theory +hep-th/0302012 Theory +hep-th/0302013 Theory +hep-th/0302014 Theory +hep-th/0302017 Theory +hep-th/0302023 Theory +hep-th/0302024 Theory +hep-th/0302027 Theory +hep-th/0302029 Theory +hep-th/0302031 Theory +hep-th/0302033 Theory +hep-th/0302035 Theory +hep-th/0302038 Theory +hep-th/0302040 Theory +hep-th/0302041 Theory +hep-th/0302042 Theory +hep-th/0302049 Theory +hep-th/0302052 Theory +hep-th/0302053 Theory +hep-th/0302060 Theory +hep-th/0302062 Theory +hep-th/0302063 Theory +hep-th/0302064 Theory +hep-th/0302065 Theory +hep-th/0302068 Theory +hep-th/0302071 Theory +hep-th/0302072 Theory +hep-th/0302075 Theory +hep-th/0302077 Theory +hep-th/0302080 Theory +hep-th/0302081 Theory +hep-th/0302085 Theory +hep-th/0302086 Theory +hep-th/0302087 Theory +hep-th/0302090 Theory +hep-th/0302091 Theory +hep-th/0302092 Theory +hep-th/0302095 Theory +hep-th/0302096 Theory +hep-th/0302100 Theory +hep-th/0302103 Theory +hep-th/0302104 Theory +hep-th/0302105 Theory +hep-th/0302107 Theory +hep-th/0302111 Theory +hep-th/0302113 Theory +hep-th/0302116 Theory +hep-th/0302117 Theory +hep-th/0302118 Theory +hep-th/0302119 Theory +hep-th/0302127 Theory +hep-th/0302128 Theory +hep-th/0302129 Theory +hep-th/0302130 Theory +hep-th/0302131 Theory +hep-th/0302132 Theory +hep-th/0302133 Theory +hep-th/0302136 Theory +hep-th/0302137 Theory +hep-th/0302138 Theory +hep-th/0302141 Theory +hep-th/0302144 Theory +hep-th/0302146 Theory +hep-th/0302147 Theory +hep-th/0302148 Theory +hep-th/0302150 Theory +hep-th/0302151 Theory +hep-th/0302153 Theory +hep-th/0302154 Theory +hep-th/0302155 Theory +hep-th/0302156 Theory +hep-th/0302157 Theory +hep-th/0302158 Theory +hep-th/0302159 Theory +hep-th/0302162 Theory +hep-th/0302164 Theory +hep-th/0302169 Theory +hep-th/0302170 Theory +hep-th/0302171 Theory +hep-th/0302173 Theory +hep-th/0302176 Theory +hep-th/0302179 Theory +hep-th/0302180 Theory +hep-th/0302183 Theory +hep-th/0302186 Theory +hep-th/0302193 Theory +hep-th/0302196 Theory +hep-th/0302200 Theory +hep-th/0302201 Theory +hep-th/0302204 Theory +hep-th/0302205 Theory +hep-th/0302206 Theory +hep-th/0302207 Theory +hep-th/0302211 Theory +hep-th/0302212 Theory +hep-th/0302213 Theory +hep-th/0302214 Theory +hep-th/0302216 Theory +hep-th/0302217 Theory +hep-th/0302218 Theory +hep-th/0302222 Theory +hep-th/0302223 Theory +hep-th/0302224 Theory +hep-th/0302229 Theory +hep-th/0302230 Theory +hep-th/0303004 Theory +hep-th/0303005 Theory +hep-th/0303006 Theory +hep-th/0303008 Theory +hep-th/0303009 Theory +hep-th/0303010 Theory +hep-th/0303013 Theory +hep-th/0303017 Theory +hep-th/0303020 Theory +hep-th/0303022 Theory +hep-th/0303024 Theory +hep-th/0303026 Theory +hep-th/0303027 Theory +hep-th/0303028 Theory +hep-th/0303029 Theory +hep-th/0303031 Theory +hep-th/0303033 Theory +hep-th/0303035 Theory +hep-th/0303036 Theory +hep-th/0303039 Theory +hep-th/0303040 Theory +hep-th/0303041 Theory +hep-th/0303042 Theory +hep-th/0303045 Theory +hep-th/0303048 Theory +hep-th/0303049 Theory +hep-th/0303053 Theory +hep-th/0303055 Theory +hep-th/0303065 Theory +hep-th/0303071 Theory +hep-th/0303072 Theory +hep-th/0303073 Theory +hep-th/0303075 Theory +hep-th/0303076 Theory +hep-th/0303078 Theory +hep-th/0303084 Theory +hep-th/0303086 Theory +hep-th/0303087 Theory +hep-th/0303090 Theory +hep-th/0303091 Theory +hep-th/0303092 Theory +hep-th/0303093 Theory +hep-th/0303096 Theory +hep-th/0303098 Theory +hep-th/0303102 Theory +hep-th/0303107 Theory +hep-th/0303112 Theory +hep-th/0303114 Theory +hep-th/0303115 Theory +hep-th/0303119 Theory +hep-th/0303121 Theory +hep-th/0303124 Theory +hep-th/0303126 Theory +hep-th/0303131 Theory +hep-th/0303132 Theory +hep-th/0303133 Theory +hep-th/0303137 Theory +hep-th/0303142 Theory +hep-th/0303144 Theory +hep-th/0303146 Theory +hep-th/0303151 Theory +hep-th/0303152 Theory +hep-th/0303153 Theory +hep-th/0303155 Theory +hep-th/0303156 Theory +hep-th/0303159 Theory +hep-th/0303163 Theory +hep-th/0303164 Theory +hep-th/0303165 Theory +hep-th/0303169 Theory +hep-th/0303170 Theory +hep-th/0303172 Theory +hep-th/0303174 Theory +hep-th/0303176 Theory +hep-th/0303177 Theory +hep-th/0303180 Theory +hep-th/0303181 Theory +hep-th/0303184 Theory +hep-th/0303186 Theory +hep-th/0303188 Theory +hep-th/0303192 Theory +hep-th/0303194 Theory +hep-th/0303195 Theory +hep-th/0303198 Theory +hep-th/0303199 Theory +hep-th/0303200 Theory +hep-th/0303201 Theory +hep-th/0303202 Theory +hep-th/0303203 Theory +hep-th/0303205 Theory +hep-th/0303209 Theory +hep-th/0303212 Theory +hep-th/0303214 Theory +hep-th/0303223 Theory +hep-th/0303224 Theory +hep-th/0303225 Theory +hep-th/0303226 Theory +hep-th/0303227 Theory +hep-th/0303229 Theory +hep-th/0303233 Theory +hep-th/0303237 Theory +hep-th/0303239 Theory +hep-th/0303240 Theory +hep-th/0303246 Theory +hep-th/0303247 Theory +hep-th/0303249 Theory +hep-th/0303250 Theory +hep-th/0303253 Theory +hep-th/0303255 Theory +hep-th/0303260 Theory +hep-th/0303264 Theory +hep-th/0303268 Theory +hep-th/0303269 Theory +hep-th/0303270 Theory +hep-th/0304002 Theory +hep-th/0304004 Theory +hep-th/0304005 Theory +hep-th/0304006 Theory +hep-th/0304008 Theory +hep-th/0304009 Theory +hep-th/0304010 Theory +hep-th/0304013 Theory +hep-th/0304015 Theory +hep-th/0304016 Theory +hep-th/0304017 Theory +hep-th/0304021 Theory +hep-th/0304025 Theory +hep-th/0304027 Theory +hep-th/0304029 Theory +hep-th/0304030 Theory +hep-th/0304033 Theory +hep-th/0304037 Theory +hep-th/0304038 Theory +hep-th/0304039 Theory +hep-th/0304040 Theory +hep-th/0304042 Theory +hep-th/0304043 Theory +hep-th/0304046 Theory +hep-th/0304048 Theory +hep-th/0304049 Theory +hep-th/0304051 Theory +hep-th/0304054 Theory +hep-th/0304056 Theory +hep-th/0304057 Theory +hep-th/0304058 Theory +hep-th/0304060 Theory +hep-th/0304063 Theory +hep-th/0304066 Theory +hep-th/0304068 Theory +hep-th/0304069 Theory +hep-th/0304072 Theory +hep-th/0304075 Theory +hep-th/0304078 Theory +hep-th/0304081 Theory +hep-th/0304082 Theory +hep-th/0304083 Theory +hep-th/0304085 Theory +hep-th/0304087 Theory +hep-th/0304089 Theory +hep-th/0304090 Theory +hep-th/0304093 Theory +hep-th/0304103 Theory +hep-th/0304105 Theory +hep-th/0304108 Theory +hep-th/0304110 Theory +hep-th/0304112 Theory +hep-th/0304118 Theory +hep-th/0304119 Theory +hep-th/0304120 Theory +hep-th/0304121 Theory +hep-th/0304123 Theory +hep-th/0304124 Theory +hep-th/0304126 Theory +hep-th/0304129 Theory +hep-th/0304132 Theory +hep-th/0304135 Theory +hep-th/0304138 Theory +hep-th/0304141 Theory +hep-th/0304147 Theory +hep-th/0304148 Theory +hep-th/0304149 Theory +hep-th/0304150 Theory +hep-th/0304151 Theory +hep-th/0304152 Theory +hep-th/0304153 Theory +hep-th/0304154 Theory +hep-th/0304155 Theory +hep-th/0304158 Theory +hep-th/0304159 Theory +hep-th/0304163 Theory +hep-th/0304165 Theory +hep-th/0304166 Theory +hep-th/0304169 Theory +hep-th/0304170 Theory +hep-th/0304171 Theory +hep-th/0304174 Theory +hep-th/0304176 Theory +hep-th/0304177 Theory +hep-th/0304179 Theory +hep-th/0304180 Theory +hep-th/0304181 Theory +hep-th/0304182 Theory +hep-th/0304186 Theory +hep-th/0304187 Theory +hep-th/0304189 Theory +hep-th/0304194 Theory +hep-th/0304195 Theory +hep-th/0304196 Theory +hep-th/0304203 Theory +hep-th/0304208 Theory +hep-th/0304210 Theory +hep-th/0304211 Theory +hep-th/0304212 Theory +hep-th/0304213 Theory +hep-th/0304215 Theory +hep-th/0304216 Theory +hep-th/0304217 Theory +hep-th/0304218 Theory +hep-th/0304219 Theory +hep-th/0304224 Theory +hep-th/0304226 Theory +hep-th/0304227 Theory +hep-th/0304228 Theory +hep-th/0304231 Theory +hep-th/0304232 Theory +hep-th/0304233 Theory +hep-th/0304234 Theory +hep-th/0304235 Theory +hep-th/0304236 Theory +hep-th/0304241 Theory +hep-th/0304242 Theory +hep-th/0304243 Theory +hep-th/0304247 Theory +hep-th/0304248 Theory +hep-th/0304250 Theory +hep-th/0304252 Theory +hep-th/0304253 Theory +hep-th/0304261 Theory +hep-th/0304262 Theory +hep-th/0304265 Theory +hep-th/0304266 Theory +hep-th/0305003 Theory +hep-th/0305007 Theory +hep-th/0305008 Theory +hep-th/0305009 Theory +hep-th/0305010 Theory +hep-th/0305012 Theory +hep-th/0305013 Theory +hep-th/0305015 Theory +hep-th/0305016 Theory +hep-th/0305019 Theory +hep-th/0305021 Theory +hep-th/0305022 Theory +hep-th/0305024 Theory +hep-th/0305025 Theory +hep-th/0305027 Theory +hep-th/0305028 Theory +hep-th/0305029 Theory +hep-th/0305030 Theory +hep-th/0305031 Theory +hep-th/0305032 Theory +hep-th/0305034 Theory +hep-th/0305036 Theory +hep-th/0305037 Theory +hep-th/0305040 Theory +hep-th/0305041 Theory +hep-th/0305042 Theory +hep-th/0305043 Theory +hep-th/0305048 Theory +hep-th/0305049 Theory +hep-th/0305051 Theory +hep-th/0305053 Theory +hep-th/0305054 Theory +hep-th/0305055 Theory +hep-th/0305061 Theory +hep-th/0305064 Theory +hep-th/0305065 Theory +hep-th/0305066 Theory +hep-th/0305077 Theory +hep-th/0305078 Theory +hep-th/0305080 Theory +hep-th/0305082 Theory +hep-th/0305086 Theory +hep-th/0305089 Theory +hep-th/0305092 Theory +hep-th/0305094 Theory +hep-th/0305095 Theory +hep-th/0305099 Theory +hep-th/0305100 Theory +hep-th/0305101 Theory +hep-th/0305102 Theory +hep-th/0305110 Theory +hep-th/0305111 Theory +hep-th/0305112 Theory +hep-th/0305113 Theory +hep-th/0305115 Theory +hep-th/0305117 Theory +hep-th/0305122 Theory +hep-th/0305124 Theory +hep-th/0305128 Theory +hep-th/0305129 Theory +hep-th/0305130 Theory +hep-th/0305131 Theory +hep-th/0305132 Theory +hep-th/0305133 Theory +hep-th/0305134 Theory +hep-th/0305137 Theory +hep-th/0305138 Theory +hep-th/0305140 Theory +hep-th/0305142 Theory +hep-th/0305144 Theory +hep-th/0305146 Theory +hep-th/0305147 Theory +hep-th/0305149 Theory +hep-th/0305151 Theory +hep-th/0305152 Theory +hep-th/0305155 Theory +hep-th/0305156 Theory +hep-th/0305159 Theory +hep-th/0305161 Theory +hep-th/0305162 Theory +hep-th/0305164 Theory +hep-th/0305166 Theory +hep-th/0305168 Theory +hep-th/0305170 Theory +hep-th/0305171 Theory +hep-th/0305177 Theory +hep-th/0305178 Theory +hep-th/0305179 Theory +hep-th/0305181 Theory +hep-th/0305182 Theory +hep-th/0305185 Theory +hep-th/0305187 Theory +hep-th/0305189 Theory +hep-th/0305190 Theory +hep-th/0305192 Theory +hep-th/0305194 Theory +hep-th/0305197 Theory +hep-th/0305199 Theory +hep-th/0305202 Theory +hep-th/0305204 Theory +hep-th/0305207 Theory +hep-th/0305208 Theory +hep-th/0305211 Theory +hep-th/0305212 Theory +hep-th/0305215 Theory +hep-th/0305218 Theory +hep-th/0305220 Theory +hep-th/0305221 Theory +hep-th/0305222 Theory +hep-th/0305224 Theory +hep-th/0305225 Theory +hep-th/0305228 Theory +hep-th/0305229 Theory +hep-th/0305231 Theory +hep-th/0305233 Theory +hep-th/0305234 Theory +hep-th/0305237 Theory +hep-th/0305241 Theory +hep-th/0305243 Theory +hep-th/0305244 Theory +hep-th/0305245 Theory +hep-th/0305247 Theory +hep-th/0305248 Theory +hep-th/0305250 Theory +hep-th/0305251 Theory +hep-th/0305252 Theory +hep-th/0305253 Theory +hep-th/0305255 Theory +hep-th/0305256 Theory +hep-th/0305261 Theory +hep-th/0306002 Theory +hep-th/0306004 Theory +hep-th/0306005 Theory +hep-th/0306006 Theory +hep-th/0306008 Theory +hep-th/0306011 Theory +hep-th/0306013 Theory +hep-th/0306016 Theory +hep-th/0306017 Theory +hep-th/0306018 Theory +hep-th/0306021 Theory +hep-th/0306023 Theory +hep-th/0306026 Theory +hep-th/0306027 Theory +hep-th/0306028 Theory +hep-th/0306033 Theory +hep-th/0306034 Theory +hep-th/0306035 Theory +hep-th/0306036 Theory +hep-th/0306037 Theory +hep-th/0306039 Theory +hep-th/0306041 Theory +hep-th/0306042 Theory +hep-th/0306044 Theory +hep-th/0306048 Theory +hep-th/0306049 Theory +hep-th/0306051 Theory +hep-th/0306052 Theory +hep-th/0306055 Theory +hep-th/0306056 Theory +hep-th/0306057 Theory +hep-th/0306059 Theory +hep-th/0306061 Theory +hep-th/0306063 Theory +hep-th/0306064 Theory +hep-th/0306065 Theory +hep-th/0306067 Theory +hep-th/0306069 Theory +hep-th/0306070 Theory +hep-th/0306073 Theory +hep-th/0306077 Theory +hep-th/0306078 Theory +hep-th/0306079 Theory +hep-th/0306081 Theory +hep-th/0306082 Theory +hep-th/0306093 Theory +hep-th/0306094 Theory +hep-th/0306096 Theory +hep-th/0306099 Theory +hep-th/0306100 Theory +hep-th/0306103 Theory +hep-th/0306104 Theory +hep-th/0306107 Theory +hep-th/0306111 Theory +hep-th/0306112 Theory +hep-th/0306117 Theory +hep-th/0306121 Theory +hep-th/0306124 Theory +hep-th/0306125 Theory +hep-th/0306128 Theory +hep-th/0306129 Theory +hep-th/0306130 Theory +hep-th/0306131 Theory +hep-th/0306132 Theory +hep-th/0306134 Theory +hep-th/0306136 Theory +hep-th/0306144 Theory +hep-th/0306145 Theory +hep-th/0306146 Theory +hep-th/0306150 Theory +hep-th/0306151 Theory +hep-th/0306154 Theory +hep-th/0306159 Theory +hep-th/0306161 Theory +hep-th/0306162 Theory +hep-th/0306167 Theory +hep-th/0306168 Theory +hep-th/0306170 Theory +hep-th/0306172 Theory +hep-th/0306173 Theory +hep-th/0306175 Theory +hep-th/0306177 Theory +hep-th/0306179 Theory +hep-th/0306183 Theory +hep-th/0306185 Theory +hep-th/0306187 Theory +hep-th/0306192 Theory +hep-th/0306194 Theory +hep-th/0306197 Theory +hep-th/0306198 Theory +hep-th/0306200 Theory +hep-th/0306204 Theory +hep-th/0306206 Theory +hep-th/0306217 Theory +hep-th/0306218 Theory +hep-th/0306219 Theory +hep-th/0306223 Theory +hep-th/0306224 Theory +hep-th/0306226 Theory +hep-th/0306231 Theory +hep-th/0306233 Theory +hep-th/0306234 Theory +hep-th/0306237 Theory +hep-th/0306242 Theory +hep-th/0306246 Theory +hep-th/0306249 Theory +hep-th/0306252 Theory +hep-th/0306253 Theory +hep-th/0306254 Theory +hep-th/0306258 Theory +hep-th/0306261 Theory +hep-th/0306263 Theory +hep-th/0306265 Theory +hep-th/0306266 Theory +hep-th/0306267 Theory +hep-th/0306268 Theory +hep-th/0306270 Theory +hep-th/0306271 Theory +hep-th/0306274 Theory +hep-th/0306276 Theory +hep-th/0306279 Theory +hep-th/0306280 Theory +hep-th/0306284 Theory +hep-th/0306293 Theory +hep-th/0306294 Theory +hep-th/0306296 Theory +hep-th/0306297 Theory +hep-th/0306298 Theory +hep-th/0306299 Theory +hep-th/0307002 Theory +hep-th/0307008 Theory +hep-th/0307012 Theory +hep-th/0307013 Theory +hep-th/0307014 Theory +hep-th/0307016 Theory +hep-th/0307019 Theory +hep-th/0307022 Theory +hep-th/0307024 Theory +hep-th/0307027 Theory +hep-th/0307028 Theory +hep-th/0307030 Theory +hep-th/0307034 Theory +hep-th/0307036 Theory +hep-th/0307039 Theory +hep-th/0307040 Theory +hep-th/0307044 Theory +hep-th/0307048 Theory +hep-th/0307054 Theory +hep-th/0307055 Theory +hep-th/0307057 Theory +hep-th/0307064 Theory +hep-th/0307068 Theory +hep-th/0307069 Theory +hep-th/0307072 Theory +hep-th/0307073 Theory +hep-th/0307074 Theory +hep-th/0307077 Theory +hep-th/0307079 Theory +hep-th/0307080 Theory +hep-th/0307081 Theory +hep-th/0307084 Theory +hep-th/0307085 Theory +hep-th/0307086 Theory +hep-th/0307089 Theory +hep-th/0307092 Theory +hep-th/0307099 Theory +hep-th/0307101 Theory +hep-th/0307102 Theory +hep-th/0307105 Theory +hep-th/0307106 Theory +hep-th/0307107 Theory +hep-th/0307110 Theory +hep-th/0307114 Theory +hep-th/0307118 Theory +hep-th/0307122 Theory +hep-th/0307124 Theory +hep-th/0307127 Theory +hep-th/0307130 Theory +hep-th/0307133 Theory +hep-th/0307138 Theory +hep-th/0307142 Theory +hep-th/0307143 Theory +hep-th/0307144 Theory +hep-th/0307145 Theory +hep-th/0307146 Theory +hep-th/0307151 Theory +hep-th/0307154 Theory +hep-th/0307155 Theory +hep-th/0307156 Theory +hep-th/0307159 Theory +hep-th/0307161 Theory +hep-th/0307162 Theory +hep-th/0307163 Theory +hep-th/0307165 Theory +hep-th/0307173 Theory +hep-th/0307174 Theory +hep-th/0307178 Theory +hep-th/0307179 Theory +hep-th/0307180 Theory +hep-th/0307183 Theory +hep-th/0307188 Theory +hep-th/0307190 Theory +hep-th/0307192 Theory +hep-th/0307194 Theory +hep-th/0307196 Theory +hep-th/0307197 Theory +hep-th/0307198 Theory +hep-th/0307200 Theory +hep-th/0307201 Theory +hep-th/0307202 Theory +hep-th/0307205 Theory +hep-th/0307208 Theory +hep-th/0307210 Theory +hep-th/0307211 Theory +hep-th/0307213 Theory +hep-th/0307215 Theory +hep-th/0307216 Theory +hep-th/0307219 Theory +hep-th/0307220 Theory +hep-th/0307224 Theory +hep-th/0307227 Theory +hep-th/0307232 Theory +hep-th/0307234 Theory +hep-th/0307239 Theory +hep-th/0307243 Theory +hep-th/0307248 Theory +hep-th/0307249 Theory +hep-th/0307253 Theory +hep-th/0307256 Theory +hep-th/0307258 Theory +hep-th/0307263 Theory +hep-th/0307265 Theory +hep-th/0307267 Theory +hep-th/0307273 Theory +hep-th/0307274 Theory +hep-th/0307275 Theory +hep-th/0307276 Theory +hep-th/0307277 Theory +hep-th/0307278 Theory +hep-th/0307279 Theory +hep-th/0307281 Theory +hep-th/0307285 Theory +hep-th/0307292 Theory +hep-th/0307294 Theory +hep-th/0307296 Theory +hep-th/0307297 Theory +hep-th/0307298 Theory +hep-th/0307302 Theory +hep-th/0308001 Theory +hep-th/0308002 Theory +hep-th/0308004 Theory +hep-th/0308005 Theory +hep-th/0308006 Theory +hep-th/0308008 Theory +hep-th/0308012 Theory +hep-th/0308013 Theory +hep-th/0308015 Theory +hep-th/0308017 Theory +hep-th/0308019 Theory +hep-th/0308023 Theory +hep-th/0308027 Theory +hep-th/0308029 Theory +hep-th/0308034 Theory +hep-th/0308035 Theory +hep-th/0308036 Theory +hep-th/0308038 Theory +hep-th/0308043 Theory +hep-th/0308047 Theory +hep-th/0308049 Theory +hep-th/0308054 Theory +hep-th/0308057 Theory +hep-th/0308059 Theory +hep-th/0308060 Theory +hep-th/0308065 Theory +hep-th/0308066 Theory +hep-th/0308067 Theory +hep-th/0308069 Theory +hep-th/0308073 Theory +hep-th/0308078 Theory +hep-th/0308079 Theory +hep-th/0308080 Theory +hep-th/0308082 Theory +hep-th/0308086 Theory +hep-th/0308088 Theory +hep-th/0308090 Theory +hep-th/0308093 Theory +hep-th/0308095 Theory +hep-th/0308096 Theory +hep-th/0308097 Theory +hep-th/0308099 Theory +hep-th/0308102 Theory +hep-th/0308103 Theory +hep-th/0308104 Theory +hep-th/0308105 Theory +hep-th/0308108 Theory +hep-th/0308109 Theory +hep-th/0308112 Theory +hep-th/0308113 Theory +hep-th/0308116 Theory +hep-th/0308119 Theory +hep-th/0308125 Theory +hep-th/0308129 Theory +hep-th/0308132 Theory +hep-th/0308133 Theory +hep-th/0308134 Theory +hep-th/0308135 Theory +hep-th/0308136 Theory +hep-th/0308137 Theory +hep-th/0308143 Theory +hep-th/0308145 Theory +hep-th/0308147 Theory +hep-th/0308148 Theory +hep-th/0308155 Theory +hep-th/0308158 Theory +hep-th/0308164 Theory +hep-th/0308168 Theory +hep-th/0308170 Theory +hep-th/0308171 Theory +hep-th/0308172 Theory +hep-th/0308173 Theory +hep-th/0308184 Theory +hep-th/0308193 Theory +hep-th/0308195 Theory +hep-th/0308204 Theory +hep-th/0308205 Theory +hep-th/0308206 Theory +hep-th/0309001 Theory +hep-th/0309002 Theory +hep-th/0309005 Theory +hep-th/0309007 Theory +hep-th/0309010 Theory +hep-th/0309011 Theory +hep-th/0309015 Theory +hep-th/0309016 Theory +hep-th/0309017 Theory +hep-th/0309020 Theory +hep-th/0309022 Theory +hep-th/0309023 Theory +hep-th/0309024 Theory +hep-th/0309025 Theory +hep-th/0309026 Theory +hep-th/0309029 Theory +hep-th/0309030 Theory +hep-th/0309032 Theory +hep-th/0309034 Theory +hep-th/0309036 Theory +hep-th/0309038 Theory +hep-th/0309039 Theory +hep-th/0309041 Theory +hep-th/0309043 Theory +hep-th/0309044 Theory +hep-th/0309045 Theory +hep-th/0309052 Theory +hep-th/0309053 Theory +hep-th/0309056 Theory +hep-th/0309057 Theory +hep-th/0309061 Theory +hep-th/0309062 Theory +hep-th/0309063 Theory +hep-th/0309064 Theory +hep-th/0309073 Theory +hep-th/0309074 Theory +hep-th/0309075 Theory +hep-th/0309081 Theory +hep-th/0309082 Theory +hep-th/0309083 Theory +hep-th/0309086 Theory +hep-th/0309091 Theory +hep-th/0309092 Theory +hep-th/0309098 Theory +hep-th/0309102 Theory +hep-th/0309106 Theory +hep-th/0309111 Theory +hep-th/0309113 Theory +hep-th/0309114 Theory +hep-th/0309116 Theory +hep-th/0309118 Theory +hep-th/0309119 Theory +hep-th/0309120 Theory +hep-th/0309121 Theory +hep-th/0309124 Theory +hep-th/0309126 Theory +hep-th/0309127 Theory +hep-th/0309128 Theory +hep-th/0309129 Theory +hep-th/0309131 Theory +hep-th/0309134 Theory +hep-th/0309135 Theory +hep-th/0309136 Theory +hep-th/0309138 Theory +hep-th/0309139 Theory +hep-th/0309141 Theory +hep-th/0309143 Theory +hep-th/0309145 Theory +hep-th/0309152 Theory +hep-th/0309153 Theory +hep-th/0309154 Theory +hep-th/0309155 Theory +hep-th/0309157 Theory +hep-th/0309159 Theory +hep-th/0309161 Theory +hep-th/0309162 Theory +hep-th/0309163 Theory +hep-th/0309166 Theory +hep-th/0309169 Theory +hep-th/0309175 Theory +hep-th/0309177 Theory +hep-th/0309179 Theory +hep-th/0309182 Theory +hep-th/0309184 Theory +hep-th/0309186 Theory +hep-th/0309187 Theory +hep-th/0309189 Theory +hep-th/0309190 Theory +hep-th/0309191 Theory +hep-th/0309192 Theory +hep-th/0309197 Theory +hep-th/0309199 Theory +hep-th/0309202 Theory +hep-th/0309204 Theory +hep-th/0309205 Theory +hep-th/0309207 Theory +hep-th/0309209 Theory +hep-th/0309210 Theory +hep-th/0309211 Theory +hep-th/0309214 Theory +hep-th/0309218 Theory +hep-th/0309220 Theory +hep-th/0309221 Theory +hep-th/0309222 Theory +hep-th/0309229 Theory +hep-th/0309236 Theory +hep-th/0309237 Theory +hep-th/0309242 Theory +hep-th/0309244 Theory +hep-th/0309247 Theory +hep-th/0309249 Theory +hep-th/0309250 Theory +hep-th/0309251 Theory +hep-th/0309252 Theory +hep-th/0309254 Theory +hep-th/0309256 Theory +hep-th/0309259 Theory +hep-th/0309260 Theory +hep-th/0309262 Theory +hep-th/0309263 Theory +hep-th/0309264 Theory +hep-th/0310003 Theory +hep-th/0310007 Theory +hep-th/0310012 Theory +hep-th/0310013 Theory +hep-th/0310015 Theory +hep-th/0310017 Theory +hep-th/0310019 Theory +hep-th/0310022 Theory +hep-th/0310024 Theory +hep-th/0310026 Theory +hep-th/0310029 Theory +hep-th/0310030 Theory +hep-th/0310031 Theory +hep-th/0310042 Theory +hep-th/0310043 Theory +hep-th/0310044 Theory +hep-th/0310046 Theory +hep-th/0310049 Theory +hep-th/0310051 Theory +hep-th/0310052 Theory +hep-th/0310054 Theory +hep-th/0310055 Theory +hep-th/0310056 Theory +hep-th/0310059 Theory +hep-th/0310060 Theory +hep-th/0310061 Theory +hep-th/0310062 Theory +hep-th/0310063 Theory +hep-th/0310066 Theory +hep-th/0310067 Theory +hep-th/0310068 Theory +hep-th/0310072 Theory +hep-th/0310077 Theory +hep-th/0310081 Theory +hep-th/0310082 Theory +hep-th/0310083 Theory +hep-th/0310084 Theory +hep-th/0310085 Theory +hep-th/0310086 Theory +hep-th/0310088 Theory +hep-th/0310091 Theory +hep-th/0310093 Theory +hep-th/0310096 Theory +hep-th/0310097 Theory +hep-th/0310098 Theory +hep-th/0310101 Theory +hep-th/0310102 Theory +hep-th/0310104 Theory +hep-th/0310108 Theory +hep-th/0310112 Theory +hep-th/0310114 Theory +hep-th/0310122 Theory +hep-th/0310123 Theory +hep-th/0310128 Theory +hep-th/0310129 Theory +hep-th/0310130 Theory +hep-th/0310131 Theory +hep-th/0310135 Theory +hep-th/0310138 Theory +hep-th/0310140 Theory +hep-th/0310141 Theory +hep-th/0310142 Theory +hep-th/0310143 Theory +hep-th/0310144 Theory +hep-th/0310146 Theory +hep-th/0310148 Theory +hep-th/0310150 Theory +hep-th/0310151 Theory +hep-th/0310153 Theory +hep-th/0310158 Theory +hep-th/0310167 Theory +hep-th/0310168 Theory +hep-th/0310170 Theory +hep-th/0310172 Theory +hep-th/0310173 Theory +hep-th/0310175 Theory +hep-th/0310177 Theory +hep-th/0310183 Theory +hep-th/0310184 Theory +hep-th/0310189 Theory +hep-th/0310191 Theory +hep-th/0310193 Theory +hep-th/0310195 Theory +hep-th/0310196 Theory +hep-th/0310198 Theory +hep-th/0310199 Theory +hep-th/0310200 Theory +hep-th/0310208 Theory +hep-th/0310210 Theory +hep-th/0310211 Theory +hep-th/0310212 Theory +hep-th/0310213 Theory +hep-th/0310214 Theory +hep-th/0310216 Theory +hep-th/0310220 Theory +hep-th/0310223 Theory +hep-th/0310224 Theory +hep-th/0310231 Theory +hep-th/0310234 Theory +hep-th/0310235 Theory +hep-th/0310240 Theory +hep-th/0310242 Theory +hep-th/0310244 Theory +hep-th/0310245 Theory +hep-th/0310246 Theory +hep-th/0310253 Theory +hep-th/0310254 Theory +hep-th/0310258 Theory +hep-th/0310259 Theory +hep-th/0310260 Theory +hep-th/0310262 Theory +hep-th/0310264 Theory +hep-th/0310268 Theory +hep-th/0310269 Theory +hep-th/0310270 Theory +hep-th/0310271 Theory +hep-th/0310273 Theory +hep-th/0310274 Theory +hep-th/0310275 Theory +hep-th/0310276 Theory +hep-th/0310278 Theory +hep-th/0310280 Theory +hep-th/0310282 Theory +hep-th/0310283 Theory +hep-th/0310284 Theory +hep-th/0310285 Theory +hep-th/0310290 Theory +hep-th/0310291 Theory +hep-th/0310295 Theory +hep-th/0310299 Theory +hep-th/0310300 Theory +hep-th/0311005 Theory +hep-th/0311006 Theory +hep-th/0311010 Theory +hep-th/0311011 Theory +hep-th/0311018 Theory +hep-th/0311019 Theory +hep-th/0311020 Theory +hep-th/0311021 Theory +hep-th/0311024 Theory +hep-th/0311030 Theory +hep-th/0311031 Theory +hep-th/0311034 Theory +hep-th/0311036 Theory +hep-th/0311041 Theory +hep-th/0311043 Theory +hep-th/0311044 Theory +hep-th/0311046 Theory +hep-th/0311051 Theory +hep-th/0311054 Theory +hep-th/0311056 Theory +hep-th/0311059 Theory +hep-th/0311062 Theory +hep-th/0311063 Theory +hep-th/0311066 Theory +hep-th/0311068 Theory +hep-th/0311069 Theory +hep-th/0311071 Theory +hep-th/0311074 Theory +hep-th/0311076 Theory +hep-th/0311079 Theory +hep-th/0311081 Theory +hep-th/0311082 Theory +hep-th/0311083 Theory +hep-th/0311086 Theory +hep-th/0311087 Theory +hep-th/0311088 Theory +hep-th/0311089 Theory +hep-th/0311093 Theory +hep-th/0311095 Theory +hep-th/0311098 Theory +hep-th/0311099 Theory +hep-th/0311100 Theory +hep-th/0311102 Theory +hep-th/0311104 Theory +hep-th/0311105 Theory +hep-th/0311110 Theory +hep-th/0311111 Theory +hep-th/0311112 Theory +hep-th/0311115 Theory +hep-th/0311120 Theory +hep-th/0311121 Theory +hep-th/0311122 Theory +hep-th/0311129 Theory +hep-th/0311131 Theory +hep-th/0311134 Theory +hep-th/0311137 Theory +hep-th/0311141 Theory +hep-th/0311146 Theory +hep-th/0311150 Theory +hep-th/0311155 Theory +hep-th/0311156 Theory +hep-th/0311158 Theory +hep-th/0311161 Theory +hep-th/0311169 Theory +hep-th/0311171 Theory +hep-th/0311172 Theory +hep-th/0311176 Theory +hep-th/0311179 Theory +hep-th/0311180 Theory +hep-th/0311183 Theory +hep-th/0311184 Theory +hep-th/0311186 Theory +hep-th/0311194 Theory +hep-th/0311197 Theory +hep-th/0311198 Theory +hep-th/0311202 Theory +hep-th/0311205 Theory +hep-th/0311207 Theory +hep-th/0311208 Theory +hep-th/0311209 Theory +hep-th/0311212 Theory +hep-th/0311214 Theory +hep-th/0311216 Theory +hep-th/0311221 Theory +hep-th/0311222 Theory +hep-th/0311224 Theory +hep-th/0311225 Theory +hep-th/0311229 Theory +hep-th/0311232 Theory +hep-th/0311234 Theory +hep-th/0311235 Theory +hep-th/0311237 Theory +hep-th/0311239 Theory +hep-th/0311242 Theory +hep-th/0311251 Theory +hep-th/0311252 Theory +hep-th/0311254 Theory +hep-th/0311255 Theory +hep-th/0311256 Theory +hep-th/0311258 Theory +hep-th/0311260 Theory +hep-th/0311263 Theory +hep-th/0311264 Theory +hep-th/0311266 Theory +hep-th/0311267 Theory +hep-th/0311268 Theory +hep-th/0311269 Theory +hep-th/0311270 Theory +hep-th/0311271 Theory +hep-th/0311274 Theory +hep-th/0311275 Theory +hep-th/0312001 Theory +hep-th/0312003 Theory +hep-th/0312010 Theory +hep-th/0312011 Theory +hep-th/0312013 Theory +hep-th/0312014 Theory +hep-th/0312021 Theory +hep-th/0312024 Theory +hep-th/0312029 Theory +hep-th/0312030 Theory +hep-th/0312031 Theory +hep-th/0312032 Theory +hep-th/0312035 Theory +hep-th/0312038 Theory +hep-th/0312039 Theory +hep-th/0312042 Theory +hep-th/0312043 Theory +hep-th/0312045 Theory +hep-th/0312047 Theory +hep-th/0312049 Theory +hep-th/0312051 Theory +hep-th/0312057 Theory +hep-th/0312061 Theory +hep-th/0312063 Theory +hep-th/0312064 Theory +hep-th/0312065 Theory +hep-th/0312067 Theory +hep-th/0312071 Theory +hep-th/0312073 Theory +hep-th/0312080 Theory +hep-th/0312081 Theory +hep-th/0312082 Theory +hep-th/0312083 Theory +hep-th/0312086 Theory +hep-th/0312087 Theory +hep-th/0312091 Theory +hep-th/0312092 Theory +hep-th/0312094 Theory +hep-th/0312096 Theory +hep-th/0312099 Theory +hep-th/0312101 Theory +hep-th/0312104 Theory +hep-th/0312105 Theory +hep-th/0312106 Theory +hep-th/0312111 Theory +hep-th/0312112 Theory +hep-th/0312117 Theory +hep-th/0312119 Theory +hep-th/0312122 Theory +hep-th/0312129 Theory +hep-th/0312132 Theory +hep-th/0312134 Theory +hep-th/0312135 Theory +hep-th/0312136 Theory +hep-th/0312137 Theory +hep-th/0312138 Theory +hep-th/0312141 Theory +hep-th/0312142 Theory +hep-th/0312143 Theory +hep-th/0312145 Theory +hep-th/0312146 Theory +hep-th/0312148 Theory +hep-th/0312151 Theory +hep-th/0312154 Theory +hep-th/0312156 Theory +hep-th/0312163 Theory +hep-th/0312170 Theory +hep-th/0312172 Theory +hep-th/0312174 Theory +hep-th/0312175 Theory +hep-th/0312176 Theory +hep-th/0312179 Theory +hep-th/0312180 Theory +hep-th/0312181 Theory +hep-th/0312182 Theory +hep-th/0312183 Theory +hep-th/0312184 Theory +hep-th/0312185 Theory +hep-th/0312188 Theory +hep-th/0312189 Theory +hep-th/0312190 Theory +hep-th/0312191 Theory +hep-th/0312194 Theory +hep-th/0312197 Theory +hep-th/0312199 Theory +hep-th/0312203 Theory +hep-th/0312205 Theory +hep-th/0312206 Theory +hep-th/0312208 Theory +hep-th/0312209 Theory +hep-th/0312211 Theory +hep-th/0312214 Theory +hep-th/0312216 Theory +hep-th/0312217 Theory +hep-th/0312220 Theory +hep-th/0312222 Theory +hep-th/0312226 Theory +hep-th/0312234 Theory +hep-th/0312241 Theory +hep-th/0312246 Theory +hep-th/0312247 Theory +hep-th/0312248 Theory +hep-th/0312251 Theory +hep-th/0312254 Theory +hep-th/0312258 Theory +hep-th/0312259 Theory +hep-th/0312261 Theory +hep-th/0312263 Theory +hep-th/0312266 Theory +hep-th/0312268 Theory +hep-th/0312271 Theory +hep-th/0312274 Theory +hep-th/0312275 Theory +hep-th/0312276 Theory +hep-th/0312277 Theory +hep-th/0312281 Theory +hep-th/0312282 Theory +hep-th/0312285 Theory +hep-th/0312287 Theory +hep-th/0312288 Theory +hep-th/0312289 Theory +hep-th/0312290 Theory +hep-th/0312292 Theory +hep-th/0312295 Theory +hep-th/0312296 Theory +hep-th/0312298 Theory +hep-th/0312302 Theory +hep-th/0312307 Theory +hep-th/0312308 Theory +hep-th/0312311 Theory +hep-th/0312312 Theory +hep-th/0312313 Theory +hep-th/0312314 Theory +hep-th/0312315 Theory +hep-th/0312317 Theory +hep-th/0312318 Theory +hep-th/0312319 Theory +hep-th/0312323 Theory +hep-th/0312324 Theory +hep-th/0401003 Theory +hep-th/0401004 Theory +hep-th/0401009 Theory +hep-th/0401010 Theory +hep-th/0401011 Theory +hep-th/0401012 Theory +hep-th/0401016 Theory +hep-th/0401017 Theory +hep-th/0401020 Theory +hep-th/0401021 Theory +hep-th/0401022 Theory +hep-th/0401024 Theory +hep-th/0401027 Theory +hep-th/0401029 Theory +hep-th/0401031 Theory +hep-th/0401032 Theory +hep-th/0401033 Theory +hep-th/0401038 Theory +hep-th/0401039 Theory +hep-th/0401041 Theory +hep-th/0401042 Theory +hep-th/0401043 Theory +hep-th/0401046 Theory +hep-th/0401048 Theory +hep-th/0401055 Theory +hep-th/0401057 Theory +hep-th/0401061 Theory +hep-th/0401062 Theory +hep-th/0401063 Theory +hep-th/0401065 Theory +hep-th/0401066 Theory +hep-th/0401071 Theory +hep-th/0401074 Theory +hep-th/0401076 Theory +hep-th/0401079 Theory +hep-th/0401081 Theory +hep-th/0401082 Theory +hep-th/0401085 Theory +hep-th/0401087 Theory +hep-th/0401094 Theory +hep-th/0401096 Theory +hep-th/0401097 Theory +hep-th/0401098 Theory +hep-th/0401101 Theory +hep-th/0401103 Theory +hep-th/0401109 Theory +hep-th/0401116 Theory +hep-th/0401121 Theory +hep-th/0401126 Theory +hep-th/0401129 Theory +hep-th/0401130 Theory +hep-th/0401131 Theory +hep-th/0401132 Theory +hep-th/0401134 Theory +hep-th/0401143 Theory +hep-th/0401144 Theory +hep-th/0401145 Theory +hep-th/0401148 Theory +hep-th/0401149 Theory +hep-th/0401152 Theory +hep-th/0401155 Theory +hep-th/0401156 Theory +hep-th/0401158 Theory +hep-th/0401159 Theory +hep-th/0401161 Theory +hep-th/0401166 Theory +hep-th/0401167 Theory +hep-th/0401170 Theory +hep-th/0401173 Theory +hep-th/0401174 Theory +hep-th/0401178 Theory +hep-th/0401179 Theory +hep-th/0401180 Theory +hep-th/0401184 Theory +hep-th/0401186 Theory +hep-th/0401187 Theory +hep-th/0401190 Theory +hep-th/0401191 Theory +hep-th/0401192 Theory +hep-th/0401194 Theory +hep-th/0401195 Theory +hep-th/0401200 Theory +hep-th/0401205 Theory +hep-th/0401207 Theory +hep-th/0401209 Theory +hep-th/0401210 Theory +hep-th/0401211 Theory +hep-th/0401213 Theory +hep-th/0401214 Theory +hep-th/0401218 Theory +hep-th/0401219 Theory +hep-th/0401220 Theory +hep-th/0401221 Theory +hep-th/0401222 Theory +hep-th/0401226 Theory +hep-th/0401227 Theory +hep-th/0401237 Theory +hep-th/0401238 Theory +hep-th/0401239 Theory +hep-th/0401241 Theory +hep-th/0401242 Theory +hep-th/0402001 Theory +hep-th/0402003 Theory +hep-th/0402004 Theory +hep-th/0402008 Theory +hep-th/0402010 Theory +hep-th/0402011 Theory +hep-th/0402012 Theory +hep-th/0402013 Theory +hep-th/0402014 Theory +hep-th/0402015 Theory +hep-th/0402016 Theory +hep-th/0402017 Theory +hep-th/0402018 Theory +hep-th/0402019 Theory +hep-th/0402020 Theory +hep-th/0402021 Theory +hep-th/0402026 Theory +hep-th/0402028 Theory +hep-th/0402029 Theory +hep-th/0402030 Theory +hep-th/0402031 Theory +hep-th/0402032 Theory +hep-th/0402037 Theory +hep-th/0402038 Theory +hep-th/0402042 Theory +hep-th/0402044 Theory +hep-th/0402045 Theory +hep-th/0402046 Theory +hep-th/0402047 Theory +hep-th/0402050 Theory +hep-th/0402052 Theory +hep-th/0402055 Theory +hep-th/0402056 Theory +hep-th/0402057 Theory +hep-th/0402063 Theory +hep-th/0402067 Theory +hep-th/0402068 Theory +hep-th/0402071 Theory +hep-th/0402072 Theory +hep-th/0402073 Theory +hep-th/0402079 Theory +hep-th/0402080 Theory +hep-th/0402082 Theory +hep-th/0402085 Theory +hep-th/0402086 Theory +hep-th/0402090 Theory +hep-th/0402092 Theory +hep-th/0402093 Theory +hep-th/0402096 Theory +hep-th/0402100 Theory +hep-th/0402103 Theory +hep-th/0402104 Theory +hep-th/0402109 Theory +hep-th/0402110 Theory +hep-th/0402111 Theory +hep-th/0402112 Theory +hep-th/0402115 Theory +hep-th/0402116 Theory +hep-th/0402118 Theory +hep-th/0402119 Theory +hep-th/0402121 Theory +hep-th/0402125 Theory +hep-th/0402132 Theory +hep-th/0402134 Theory +hep-th/0402136 Theory +hep-th/0402137 Theory +hep-th/0402142 Theory +hep-th/0402147 Theory +hep-th/0402148 Theory +hep-th/0402149 Theory +hep-th/0402152 Theory +hep-th/0402153 Theory +hep-th/0402154 Theory +hep-th/0402157 Theory +hep-th/0402158 Theory +hep-th/0402160 Theory +hep-th/0402161 Theory +hep-th/0402162 Theory +hep-th/0402164 Theory +hep-th/0402168 Theory +hep-th/0402169 Theory +hep-th/0402172 Theory +hep-th/0402174 Theory +hep-th/0402175 Theory +hep-th/0402178 Theory +hep-th/0402180 Theory +hep-th/0402181 Theory +hep-th/0402182 Theory +hep-th/0402184 Theory +hep-th/0402185 Theory +hep-th/0402187 Theory +hep-th/0402188 Theory +hep-th/0402189 Theory +hep-th/0402192 Theory +hep-th/0402195 Theory +hep-th/0402198 Theory +hep-th/0402199 Theory +hep-th/0402201 Theory +hep-th/0402204 Theory +hep-th/0402205 Theory +hep-th/0402206 Theory +hep-th/0402207 Theory +hep-th/0402210 Theory +hep-th/0402216 Theory +hep-th/0402218 Theory +hep-th/0402220 Theory +hep-th/0402221 Theory +hep-th/0402222 Theory +hep-th/0402224 Theory +hep-th/0402225 Theory +hep-th/0402230 Theory +hep-th/0403001 Theory +hep-th/0403004 Theory +hep-th/0403008 Theory +hep-th/0403010 Theory +hep-th/0403011 Theory +hep-th/0403012 Theory +hep-th/0403017 Theory +hep-th/0403018 Theory +hep-th/0403019 Theory +hep-th/0403020 Theory +hep-th/0403021 Theory +hep-th/0403022 Theory +hep-th/0403023 Theory +hep-th/0403025 Theory +hep-th/0403028 Theory +hep-th/0403029 Theory +hep-th/0403031 Theory +hep-th/0403037 Theory +hep-th/0403045 Theory +hep-th/0403048 Theory +hep-th/0403051 Theory +hep-th/0403053 Theory +hep-th/0403057 Theory +hep-th/0403062 Theory +hep-th/0403063 Theory +hep-th/0403064 Theory +hep-th/0403065 Theory +hep-th/0403072 Theory +hep-th/0403073 Theory +hep-th/0403074 Theory +hep-th/0403075 Theory +hep-th/0403078 Theory +hep-th/0403081 Theory +hep-th/0403088 Theory +hep-th/0403089 Theory +hep-th/0403091 Theory +hep-th/0403092 Theory +hep-th/0403094 Theory +hep-th/0403096 Theory +hep-th/0403097 Theory +hep-th/0403098 Theory +hep-th/0403100 Theory +hep-th/0403101 Theory +hep-th/0403103 Theory +hep-th/0403105 Theory +hep-th/0403109 Theory +hep-th/0403110 Theory +hep-th/0403111 Theory +hep-th/0403112 Theory +hep-th/0403113 Theory +hep-th/0403114 Theory +hep-th/0403115 Theory +hep-th/0403117 Theory +hep-th/0403121 Theory +hep-th/0403122 Theory +hep-th/0403123 Theory +hep-th/0403124 Theory +hep-th/0403128 Theory +hep-th/0403129 Theory +hep-th/0403130 Theory +hep-th/0403131 Theory +hep-th/0403134 Theory +hep-th/0403135 Theory +hep-th/0403138 Theory +hep-th/0403139 Theory +hep-th/0403141 Theory +hep-th/0403142 Theory +hep-th/0403145 Theory +hep-th/0403147 Theory +hep-th/0403150 Theory +hep-th/0403155 Theory +hep-th/0403156 Theory +hep-th/0403158 Theory +hep-th/0403161 Theory +hep-th/0403163 Theory +hep-th/0403165 Theory +hep-th/0403168 Theory +hep-th/0403169 Theory +hep-th/0403170 Theory +hep-th/0403171 Theory +hep-th/0403173 Theory +hep-th/0403174 Theory +hep-th/0403175 Theory +hep-th/0403176 Theory +hep-th/0403180 Theory +hep-th/0403185 Theory +hep-th/0403186 Theory +hep-th/0403187 Theory +hep-th/0403188 Theory +hep-th/0403189 Theory +hep-th/0403191 Theory +hep-th/0403194 Theory +hep-th/0403196 Theory +hep-th/0403197 Theory +hep-th/0403200 Theory +hep-th/0403204 Theory +hep-th/0403205 Theory +hep-th/0403207 Theory +hep-th/0403208 Theory +hep-th/0403209 Theory +hep-th/0403210 Theory +hep-th/0403213 Theory +hep-th/0403214 Theory +hep-th/0403217 Theory +hep-th/0403218 Theory +hep-th/0403219 Theory +hep-th/0403223 Theory +hep-th/0403234 Theory +hep-th/0403235 Theory +hep-th/0403236 Theory +hep-th/0403237 Theory +hep-th/0403238 Theory +hep-th/0403239 Theory +hep-th/0403240 Theory +hep-th/0403241 Theory +hep-th/0403242 Theory +hep-th/0403247 Theory +hep-th/0403249 Theory +hep-th/0403251 Theory +hep-th/0403252 Theory +hep-th/0403254 Theory +hep-th/0403255 Theory +hep-th/0403256 Theory +hep-th/0403257 Theory +hep-th/0403259 Theory +hep-th/0403260 Theory +hep-th/0403262 Theory +hep-th/0403266 Theory +hep-th/0403271 Theory +hep-th/0403273 Theory +hep-th/0403275 Theory +hep-th/0403276 Theory +hep-th/0403279 Theory +hep-th/0403281 Theory +hep-th/0403282 Theory +hep-th/0403284 Theory +hep-th/0403285 Theory +hep-th/0403288 Theory +hep-th/0403289 Theory +hep-th/0403292 Theory +hep-th/0403298 Theory +hep-th/0403299 Theory +hep-th/0404002 Theory +hep-th/0404004 Theory +hep-th/0404006 Theory +hep-th/0404010 Theory +hep-th/0404012 Theory +hep-th/0404014 Theory +hep-th/0404015 Theory +hep-th/0404019 Theory +hep-th/0404020 Theory +hep-th/0404022 Theory +hep-th/0404026 Theory +hep-th/0404028 Theory +hep-th/0404029 Theory +hep-th/0404032 Theory +hep-th/0404034 Theory +hep-th/0404037 Theory +hep-th/0404039 Theory +hep-th/0404040 Theory +hep-th/0404042 Theory +hep-th/0404044 Theory +hep-th/0404045 Theory +hep-th/0404046 Theory +hep-th/0404047 Theory +hep-th/0404049 Theory +hep-th/0404050 Theory +hep-th/0404053 Theory +hep-th/0404057 Theory +hep-th/0404058 Theory +hep-th/0404060 Theory +hep-th/0404061 Theory +hep-th/0404065 Theory +hep-th/0404066 Theory +hep-th/0404067 Theory +hep-th/0404075 Theory +hep-th/0404080 Theory +hep-th/0404084 Theory +hep-th/0404086 Theory +hep-th/0404087 Theory +hep-th/0404088 Theory +hep-th/0404091 Theory +hep-th/0404093 Theory +hep-th/0404097 Theory +hep-th/0404099 Theory +hep-th/0404103 Theory +hep-th/0404105 Theory +hep-th/0404107 Theory +hep-th/0404111 Theory +hep-th/0404113 Theory +hep-th/0404115 Theory +hep-th/0404117 Theory +hep-th/0404118 Theory +hep-th/0404121 Theory +hep-th/0404122 Theory +hep-th/0404123 Theory +hep-th/0404125 Theory +hep-th/0404127 Theory +hep-th/0404128 Theory +hep-th/0404129 Theory +hep-th/0404130 Theory +hep-th/0404132 Theory +hep-th/0404133 Theory +hep-th/0404135 Theory +hep-th/0404139 Theory +hep-th/0404140 Theory +hep-th/0404141 Theory +hep-th/0404144 Theory +hep-th/0404146 Theory +hep-th/0404148 Theory +hep-th/0404149 Theory +hep-th/0404150 Theory +hep-th/0404151 Theory +hep-th/0404152 Theory +hep-th/0404154 Theory +hep-th/0404155 Theory +hep-th/0404157 Theory +hep-th/0404158 Theory +hep-th/0404161 Theory +hep-th/0404163 Theory +hep-th/0404168 Theory +hep-th/0404171 Theory +hep-th/0404175 Theory +hep-th/0404177 Theory +hep-th/0404178 Theory +hep-th/0404179 Theory +hep-th/0404180 Theory +hep-th/0404182 Theory +hep-th/0404185 Theory +hep-th/0404187 Theory +hep-th/0404197 Theory +hep-th/0404202 Theory +hep-th/0404203 Theory +hep-th/0404204 Theory +hep-th/0404207 Theory +hep-th/0404208 Theory +hep-th/0404210 Theory +hep-th/0404214 Theory +hep-th/0404216 Theory +hep-th/0404218 Theory +hep-th/0404220 Theory +hep-th/0404224 Theory +hep-th/0404225 Theory +hep-th/0404227 Theory +hep-th/0404230 Theory +hep-th/0404233 Theory +hep-th/0404236 Theory +hep-th/0404239 Theory +hep-th/0404243 Theory +hep-th/0404248 Theory +hep-th/0404249 Theory +hep-th/0404252 Theory +hep-th/0404253 Theory +hep-th/0404254 Theory +hep-th/0404256 Theory +hep-th/0404258 Theory +hep-th/0404261 Theory +hep-th/0405006 Theory +hep-th/0405007 Theory +hep-th/0405011 Theory +hep-th/0405012 Theory +hep-th/0405013 Theory +hep-th/0405015 Theory +hep-th/0405018 Theory +hep-th/0405020 Theory +hep-th/0405024 Theory +hep-th/0405026 Theory +hep-th/0405027 Theory +hep-th/0405029 Theory +hep-th/0405030 Theory +hep-th/0405032 Theory +hep-th/0405033 Theory +hep-th/0405035 Theory +hep-th/0405036 Theory +hep-th/0405038 Theory +hep-th/0405039 Theory +hep-th/0405047 Theory +hep-th/0405048 Theory +hep-th/0405052 Theory +hep-th/0405054 Theory +hep-th/0405055 Theory +hep-th/0405056 Theory +hep-th/0405063 Theory +hep-th/0405064 Theory +hep-th/0405071 Theory +hep-th/0405072 Theory +hep-th/0405076 Theory +hep-th/0405077 Theory +hep-th/0405080 Theory +hep-th/0405081 Theory +hep-th/0405082 Theory +hep-th/0405084 Theory +hep-th/0405085 Theory +hep-th/0405086 Theory +hep-th/0405089 Theory +hep-th/0405090 Theory +hep-th/0405093 Theory +hep-th/0405097 Theory +hep-th/0405099 Theory +hep-th/0405104 Theory +hep-th/0405105 Theory +hep-th/0405106 Theory +hep-th/0405110 Theory +hep-th/0405111 Theory +hep-th/0405112 Theory +hep-th/0405115 Theory +hep-th/0405119 Theory +hep-th/0405122 Theory +hep-th/0405124 Theory +hep-th/0405125 Theory +hep-th/0405126 Theory +hep-th/0405128 Theory +hep-th/0405131 Theory +hep-th/0405132 Theory +hep-th/0405135 Theory +hep-th/0405138 Theory +hep-th/0405139 Theory +hep-th/0405140 Theory +hep-th/0405141 Theory +hep-th/0405143 Theory +hep-th/0405144 Theory +hep-th/0405145 Theory +hep-th/0405147 Theory +hep-th/0405148 Theory +hep-th/0405151 Theory +hep-th/0405154 Theory +hep-th/0405155 Theory +hep-th/0405158 Theory +hep-th/0405159 Theory +hep-th/0405164 Theory +hep-th/0405166 Theory +hep-th/0405167 Theory +hep-th/0405169 Theory +hep-th/0405175 Theory +hep-th/0405182 Theory +hep-th/0405186 Theory +hep-th/0405188 Theory +hep-th/0405191 Theory +hep-th/0405192 Theory +hep-th/0405193 Theory +hep-th/0405196 Theory +hep-th/0405201 Theory +hep-th/0405202 Theory +hep-th/0405203 Theory +hep-th/0405205 Theory +hep-th/0405206 Theory +hep-th/0405208 Theory +hep-th/0405209 Theory +hep-th/0405211 Theory +hep-th/0405212 Theory +hep-th/0405213 Theory +hep-th/0405214 Theory +hep-th/0405220 Theory +hep-th/0405222 Theory +hep-th/0405225 Theory +hep-th/0405228 Theory +hep-th/0405229 Theory +hep-th/0405232 Theory +hep-th/0405233 Theory +hep-th/0405235 Theory +hep-th/0405239 Theory +hep-th/0405240 Theory +hep-th/0405242 Theory +hep-th/0405244 Theory +hep-th/0405247 Theory +hep-th/0405250 Theory +hep-th/0405253 Theory +hep-th/0405254 Theory +hep-th/0405256 Theory +hep-th/0405258 Theory +hep-th/0405263 Theory +hep-th/0405266 Theory +hep-th/0405271 Theory +hep-th/0405272 Theory +hep-th/0405273 Theory +hep-th/0405274 Theory +hep-th/0405278 Theory +hep-th/0405280 Theory +hep-th/0405281 Theory +hep-th/0405285 Theory +hep-th/0405288 Theory +hep-th/0406001 Theory +hep-th/0406004 Theory +hep-th/0406006 Theory +hep-th/0406009 Theory +hep-th/0406010 Theory +hep-th/0406011 Theory +hep-th/0406014 Theory +hep-th/0406015 Theory +hep-th/0406025 Theory +hep-th/0406026 Theory +hep-th/0406027 Theory +hep-th/0406028 Theory +hep-th/0406029 Theory +hep-th/0406031 Theory +hep-th/0406033 Theory +hep-th/0406034 Theory +hep-th/0406036 Theory +hep-th/0406037 Theory +hep-th/0406038 Theory +hep-th/0406041 Theory +hep-th/0406043 Theory +hep-th/0406044 Theory +hep-th/0406048 Theory +hep-th/0406053 Theory +hep-th/0406054 Theory +hep-th/0406064 Theory +hep-th/0406067 Theory +hep-th/0406068 Theory +hep-th/0406072 Theory +hep-th/0406074 Theory +hep-th/0406075 Theory +hep-th/0406078 Theory +hep-th/0406079 Theory +hep-th/0406080 Theory +hep-th/0406083 Theory +hep-th/0406084 Theory +hep-th/0406085 Theory +hep-th/0406088 Theory +hep-th/0406090 Theory +hep-th/0406093 Theory +hep-th/0406094 Theory +hep-th/0406095 Theory +hep-th/0406097 Theory +hep-th/0406098 Theory +hep-th/0406099 Theory +hep-th/0406100 Theory +hep-th/0406101 Theory +hep-th/0406102 Theory +hep-th/0406104 Theory +hep-th/0406107 Theory +hep-th/0406108 Theory +hep-th/0406109 Theory +hep-th/0406111 Theory +hep-th/0406112 Theory +hep-th/0406119 Theory +hep-th/0406122 Theory +hep-th/0406126 Theory +hep-th/0406128 Theory +hep-th/0406131 Theory +hep-th/0406132 Theory +hep-th/0406133 Theory +hep-th/0406134 Theory +hep-th/0406135 Theory +hep-th/0406139 Theory +hep-th/0406140 Theory +hep-th/0406142 Theory +hep-th/0406147 Theory +hep-th/0406149 Theory +hep-th/0406153 Theory +hep-th/0406157 Theory +hep-th/0406158 Theory +hep-th/0406161 Theory +hep-th/0406163 Theory +hep-th/0406167 Theory +hep-th/0406168 Theory +hep-th/0406170 Theory +hep-th/0406171 Theory +hep-th/0406172 Theory +hep-th/0406173 Theory +hep-th/0406175 Theory +hep-th/0406176 Theory +hep-th/0406179 Theory +hep-th/0406181 Theory +hep-th/0406182 Theory +hep-th/0406183 Theory +hep-th/0406184 Theory +hep-th/0406185 Theory +hep-th/0406186 Theory +hep-th/0406187 Theory +hep-th/0406188 Theory +hep-th/0406190 Theory +hep-th/0406192 Theory +hep-th/0406194 Theory +hep-th/0406198 Theory +hep-th/0406204 Theory +hep-th/0406206 Theory +hep-th/0406212 Theory +hep-th/0406215 Theory +hep-th/0406217 Theory +hep-th/0406218 Theory +hep-th/0406219 Theory +hep-th/0406220 Theory +hep-th/0406221 Theory +hep-th/0406226 Theory +hep-th/0406227 Theory +hep-th/0406235 Theory +hep-th/0406237 Theory +hep-th/0406238 Theory +hep-th/0406240 Theory +hep-th/0406241 Theory +hep-th/0406242 Theory +hep-th/0406243 Theory +hep-th/0406244 Theory +hep-th/0406256 Theory +hep-th/0406261 Theory +hep-th/0406263 Theory +hep-th/0406266 Theory +hep-th/0406267 Theory +hep-th/0406268 Theory +hep-th/0406271 Theory +hep-th/0406273 Theory +hep-th/0406274 Theory +hep-th/0406276 Theory +hep-th/0407001 Theory +hep-th/0407002 Theory +hep-th/0407004 Theory +hep-th/0407005 Theory +hep-th/0407008 Theory +hep-th/0407009 Theory +hep-th/0407010 Theory +hep-th/0407011 Theory +hep-th/0407015 Theory +hep-th/0407016 Theory +hep-th/0407019 Theory +hep-th/0407021 Theory +hep-th/0407025 Theory +hep-th/0407027 Theory +hep-th/0407031 Theory +hep-th/0407033 Theory +hep-th/0407035 Theory +hep-th/0407039 Theory +hep-th/0407040 Theory +hep-th/0407050 Theory +hep-th/0407052 Theory +hep-th/0407056 Theory +hep-th/0407061 Theory +hep-th/0407064 Theory +hep-th/0407066 Theory +hep-th/0407067 Theory +hep-th/0407070 Theory +hep-th/0407076 Theory +hep-th/0407077 Theory +hep-th/0407079 Theory +hep-th/0407080 Theory +hep-th/0407089 Theory +hep-th/0407095 Theory +hep-th/0407097 Theory +hep-th/0407101 Theory +hep-th/0407102 Theory +hep-th/0407108 Theory +hep-th/0407109 Theory +hep-th/0407111 Theory +hep-th/0407113 Theory +hep-th/0407114 Theory +hep-th/0407121 Theory +hep-th/0407124 Theory +hep-th/0407126 Theory +hep-th/0407127 Theory +hep-th/0407129 Theory +hep-th/0407130 Theory +hep-th/0407134 Theory +hep-th/0407141 Theory +hep-th/0407142 Theory +hep-th/0407147 Theory +hep-th/0407150 Theory +hep-th/0407155 Theory +hep-th/0407156 Theory +hep-th/0407157 Theory +hep-th/0407159 Theory +hep-th/0407160 Theory +hep-th/0407162 Theory +hep-th/0407164 Theory +hep-th/0407167 Theory +hep-th/0407170 Theory +hep-th/0407177 Theory +hep-th/0407180 Theory +hep-th/0407181 Theory +hep-th/0407183 Theory +hep-th/0407185 Theory +hep-th/0407187 Theory +hep-th/0407188 Theory +hep-th/0407191 Theory +hep-th/0407194 Theory +hep-th/0407199 Theory +hep-th/0407203 Theory +hep-th/0407204 Theory +hep-th/0407207 Theory +hep-th/0407210 Theory +hep-th/0407215 Theory +hep-th/0407219 Theory +hep-th/0407221 Theory +hep-th/0407225 Theory +hep-th/0407230 Theory +hep-th/0407233 Theory +hep-th/0407234 Theory +hep-th/0407235 Theory +hep-th/0407238 Theory +hep-th/0407239 Theory +hep-th/0407242 Theory +hep-th/0407245 Theory +hep-th/0407246 Theory +hep-th/0407248 Theory +hep-th/0407251 Theory +hep-th/0407252 Theory +hep-th/0407255 Theory +hep-th/0407256 Theory +hep-th/0407257 Theory +hep-th/0407258 Theory +hep-th/0407259 Theory +hep-th/0407265 Theory +hep-th/0407267 Theory +hep-th/0407270 Theory +hep-th/0407274 Theory +hep-th/0407278 Theory +hep-th/0408006 Theory +hep-th/0408007 Theory +hep-th/0408008 Theory +hep-th/0408011 Theory +hep-th/0408012 Theory +hep-th/0408015 Theory +hep-th/0408020 Theory +hep-th/0408025 Theory +hep-th/0408029 Theory +hep-th/0408031 Theory +hep-th/0408032 Theory +hep-th/0408034 Theory +hep-th/0408035 Theory +hep-th/0408038 Theory +hep-th/0408040 Theory +hep-th/0408043 Theory +hep-th/0408047 Theory +hep-th/0408050 Theory +hep-th/0408052 Theory +hep-th/0408053 Theory +hep-th/0408055 Theory +hep-th/0408057 Theory +hep-th/0408058 Theory +hep-th/0408059 Theory +hep-th/0408061 Theory +hep-th/0408071 Theory +hep-th/0408076 Theory +hep-th/0408082 Theory +hep-th/0408089 Theory +hep-th/0408091 Theory +hep-th/0408092 Theory +hep-th/0408099 Theory +hep-th/0408104 Theory +hep-th/0408111 Theory +hep-th/0408114 Theory +hep-th/0408117 Theory +hep-th/0408120 Theory +hep-th/0408122 Theory +hep-th/0408124 Theory +hep-th/0408140 Theory +hep-th/0408143 Theory +hep-th/0408145 Theory +hep-th/0408154 Theory +hep-th/0408158 Theory +hep-th/0408163 Theory +hep-th/0408171 Theory +hep-th/0408172 Theory +hep-th/0408178 Theory +hep-th/0408180 Theory +hep-th/0408181 Theory +hep-th/0408184 Theory +hep-th/0408185 Theory +hep-th/0408189 Theory +hep-th/0408191 Theory +hep-th/0408193 Theory +hep-th/0408195 Theory +hep-th/0408199 Theory +hep-th/0408203 Theory +hep-th/0408207 Theory +hep-th/0408209 Theory +hep-th/0408212 Theory +hep-th/0408216 Theory +hep-th/0408218 Theory +hep-th/0408219 Theory +hep-th/0408221 Theory +hep-th/0408222 Theory +hep-th/0408223 Theory +hep-th/0408224 Theory +hep-th/0408227 Theory +hep-th/0408237 Theory +hep-th/0408238 Theory +hep-th/0408241 Theory +hep-th/0408243 Theory +hep-th/0408244 Theory +hep-th/0409004 Theory +hep-th/0409006 Theory +hep-th/0409008 Theory +hep-th/0409012 Theory +hep-th/0409013 Theory +hep-th/0409014 Theory +hep-th/0409015 Theory +hep-th/0409025 Theory +hep-th/0409029 Theory +hep-th/0409040 Theory +hep-th/0409041 Theory +hep-th/0409044 Theory +hep-th/0409047 Theory +hep-th/0409049 Theory +hep-th/0409050 Theory +hep-th/0409055 Theory +hep-th/0409057 Theory +hep-th/0409058 Theory +hep-th/0409060 Theory +hep-th/0409063 Theory +hep-th/0409065 Theory +hep-th/0409075 Theory +hep-th/0409077 Theory +hep-th/0409084 Theory +hep-th/0409091 Theory +hep-th/0409092 Theory +hep-th/0409094 Theory +hep-th/0409096 Theory +hep-th/0409099 Theory +hep-th/0409100 Theory +hep-th/0409101 Theory +hep-th/0409106 Theory +hep-th/0409107 Theory +hep-th/0409108 Theory +hep-th/0409111 Theory +hep-th/0409114 Theory +hep-th/0409115 Theory +hep-th/0409116 Theory +hep-th/0409118 Theory +hep-th/0409125 Theory +hep-th/0409126 Theory +hep-th/0409131 Theory +hep-th/0409133 Theory +hep-th/0409134 Theory +hep-th/0409135 Theory +hep-th/0409138 Theory +hep-th/0409145 Theory +hep-th/0409148 Theory +hep-th/0409153 Theory +hep-th/0409158 Theory +hep-th/0409160 Theory +hep-th/0409161 Theory +hep-th/0409168 Theory +hep-th/0409178 Theory +hep-th/0409180 Theory +hep-th/0409183 Theory +hep-th/0409184 Theory +hep-th/0409185 Theory +hep-th/0409186 Theory +hep-th/0409187 Theory +hep-th/0409188 Theory +hep-th/0409192 Theory +hep-th/0409193 Theory +hep-th/0409198 Theory +hep-th/0409205 Theory +hep-th/0409206 Theory +hep-th/0409207 Theory +hep-th/0409209 Theory +hep-th/0409215 Theory +hep-th/0409216 Theory +hep-th/0409221 Theory +hep-th/0409224 Theory +hep-th/0409227 Theory +hep-th/0409230 Theory +hep-th/0409231 Theory +hep-th/0409232 Theory +hep-th/0409233 Theory +hep-th/0409234 Theory +hep-th/0409236 Theory +hep-th/0409240 Theory +hep-th/0409242 Theory +hep-th/0409246 Theory +hep-th/0409248 Theory +hep-th/0409252 Theory +hep-th/0409254 Theory +hep-th/0409256 Theory +hep-th/0409257 Theory +hep-th/0409260 Theory +hep-th/0409264 Theory +hep-th/0409266 Theory +hep-th/0409267 Theory +hep-th/0409271 Theory +hep-th/0409274 Theory +hep-th/0409280 Theory +hep-th/0409283 Theory +hep-th/0409287 Theory +hep-th/0409288 Theory +hep-th/0409291 Theory +hep-th/0409292 Theory +hep-th/0409294 Theory +hep-th/0409297 Theory +hep-th/0409300 Theory +hep-th/0409304 Theory +hep-th/0409310 Theory +hep-th/0409313 Theory +hep-th/0409314 Theory +hep-th/0410001 Theory +hep-th/0410006 Theory +hep-th/0410008 Theory +hep-th/0410010 Theory +hep-th/0410011 Theory +hep-th/0410012 Theory +hep-th/0410013 Theory +hep-th/0410016 Theory +hep-th/0410018 Theory +hep-th/0410020 Theory +hep-th/0410029 Theory +hep-th/0410030 Theory +hep-th/0410031 Theory +hep-th/0410032 Theory +hep-th/0410033 Theory +hep-th/0410034 Theory +hep-th/0410035 Theory +hep-th/0410039 Theory +hep-th/0410041 Theory +hep-th/0410043 Theory +hep-th/0410044 Theory +hep-th/0410046 Theory +hep-th/0410048 Theory +hep-th/0410050 Theory +hep-th/0410051 Theory +hep-th/0410052 Theory +hep-th/0410054 Theory +hep-th/0410056 Theory +hep-th/0410057 Theory +hep-th/0410058 Theory +hep-th/0410061 Theory +hep-th/0410062 Theory +hep-th/0410063 Theory +hep-th/0410065 Theory +hep-th/0410066 Theory +hep-th/0410069 Theory +hep-th/0410070 Theory +hep-th/0410075 Theory +hep-th/0410078 Theory +hep-th/0410079 Theory +hep-th/0410080 Theory +hep-th/0410085 Theory +hep-th/0410087 Theory +hep-th/0410091 Theory +hep-th/0410093 Theory +hep-th/0410095 Theory +hep-th/0410096 Theory +hep-th/0410099 Theory +hep-th/0410101 Theory +hep-th/0410105 Theory +hep-th/0410106 Theory +hep-th/0410107 Theory +hep-th/0410109 Theory +hep-th/0410112 Theory +hep-th/0410120 Theory +hep-th/0410121 Theory +hep-th/0410122 Theory +hep-th/0410126 Theory +hep-th/0410127 Theory +hep-th/0410129 Theory +hep-th/0410130 Theory +hep-th/0410131 Theory +hep-th/0410138 Theory +hep-th/0410139 Theory +hep-th/0410140 Theory +hep-th/0410142 Theory +hep-th/0410143 Theory +hep-th/0410145 Theory +hep-th/0410152 Theory +hep-th/0410154 Theory +hep-th/0410156 Theory +hep-th/0410163 Theory +hep-th/0410164 Theory +hep-th/0410169 Theory +hep-th/0410173 Theory +hep-th/0410176 Theory +hep-th/0410179 Theory +hep-th/0410181 Theory +hep-th/0410182 Theory +hep-th/0410183 Theory +hep-th/0410185 Theory +hep-th/0410190 Theory +hep-th/0410194 Theory +hep-th/0410197 Theory +hep-th/0410198 Theory +hep-th/0410200 Theory +hep-th/0410207 Theory +hep-th/0410211 Theory +hep-th/0410212 Theory +hep-th/0410214 Theory +hep-th/0410216 Theory +hep-th/0410218 Theory +hep-th/0410221 Theory +hep-th/0410222 Theory +hep-th/0410223 Theory +hep-th/0410225 Theory +hep-th/0410227 Theory +hep-th/0410229 Theory +hep-th/0410230 Theory +hep-th/0410234 Theory +hep-th/0410235 Theory +hep-th/0410239 Theory +hep-th/0410240 Theory +hep-th/0410243 Theory +hep-th/0410244 Theory +hep-th/0410246 Theory +hep-th/0410247 Theory +hep-th/0410248 Theory +hep-th/0410249 Theory +hep-th/0410250 Theory +hep-th/0410251 Theory +hep-th/0410252 Theory +hep-th/0410254 Theory +hep-th/0410256 Theory +hep-th/0410257 Theory +hep-th/0410259 Theory +hep-th/0410260 Theory +hep-th/0410263 Theory +hep-th/0410265 Theory +hep-th/0410267 Theory +hep-th/0410271 Theory +hep-th/0410273 Theory +hep-th/0410276 Theory +hep-th/0410278 Theory +hep-th/0410279 Theory +hep-th/0410281 Theory +hep-th/0410285 Theory +hep-th/0410289 Theory +hep-th/0410290 Theory +hep-th/0410292 Theory +hep-th/0411003 Theory +hep-th/0411004 Theory +hep-th/0411006 Theory +hep-th/0411007 Theory +hep-th/0411012 Theory +hep-th/0411018 Theory +hep-th/0411021 Theory +hep-th/0411022 Theory +hep-th/0411025 Theory +hep-th/0411027 Theory +hep-th/0411030 Theory +hep-th/0411033 Theory +hep-th/0411034 Theory +hep-th/0411040 Theory +hep-th/0411044 Theory +hep-th/0411049 Theory +hep-th/0411051 Theory +hep-th/0411052 Theory +hep-th/0411055 Theory +hep-th/0411056 Theory +hep-th/0411058 Theory +hep-th/0411063 Theory +hep-th/0411065 Theory +hep-th/0411067 Theory +hep-th/0411068 Theory +hep-th/0411071 Theory +hep-th/0411072 Theory +hep-th/0411078 Theory +hep-th/0411079 Theory +hep-th/0411080 Theory +hep-th/0411084 Theory +hep-th/0411085 Theory +hep-th/0411087 Theory +hep-th/0411089 Theory +hep-th/0411093 Theory +hep-th/0411098 Theory +hep-th/0411103 Theory +hep-th/0411104 Theory +hep-th/0411105 Theory +hep-th/0411107 Theory +hep-th/0411109 Theory +hep-th/0411110 Theory +hep-th/0411112 Theory +hep-th/0411113 Theory +hep-th/0411116 Theory +hep-th/0411118 Theory +hep-th/0411121 Theory +hep-th/0411124 Theory +hep-th/0411127 Theory +hep-th/0411134 Theory +hep-th/0411137 Theory +hep-th/0411138 Theory +hep-th/0411143 Theory +hep-th/0411145 Theory +hep-th/0411147 Theory +hep-th/0411152 Theory +hep-th/0411156 Theory +hep-th/0411158 Theory +hep-th/0411162 Theory +hep-th/0411163 Theory +hep-th/0411164 Theory +hep-th/0411168 Theory +hep-th/0411171 Theory +hep-th/0411174 Theory +hep-th/0411175 Theory +hep-th/0411176 Theory +hep-th/0411177 Theory +hep-th/0411178 Theory +hep-th/0411179 Theory +hep-th/0411180 Theory +hep-th/0411182 Theory +hep-th/0411185 Theory +hep-th/0411186 Theory +hep-th/0411193 Theory +hep-th/0411195 Theory +hep-th/0411197 Theory +hep-th/0411198 Theory +hep-th/0411199 Theory +hep-th/0411202 Theory +hep-th/0411203 Theory +hep-th/0411206 Theory +hep-th/0411207 Theory +hep-th/0411209 Theory +hep-th/0411211 Theory +hep-th/0411212 Theory +hep-th/0411217 Theory +hep-th/0411220 Theory +hep-th/0411222 Theory +hep-th/0411225 Theory +hep-th/0411228 Theory +hep-th/0411229 Theory +hep-th/0411230 Theory +hep-th/0411232 Theory +hep-th/0411234 Theory +hep-th/0411238 Theory +hep-th/0411241 Theory +hep-th/0411243 Theory +hep-th/0411244 Theory +hep-th/0411246 Theory +hep-th/0411248 Theory +hep-th/0411249 Theory +hep-th/0411252 Theory +hep-th/0411253 Theory +hep-th/0411255 Theory +hep-th/0411260 Theory +hep-th/0411261 Theory +hep-th/0411262 Theory +hep-th/0411264 Theory +hep-th/0411268 Theory +hep-th/0411269 Theory +hep-th/0411270 Theory +hep-th/0411271 Theory +hep-th/0411274 Theory +hep-th/0411278 Theory +hep-th/0411282 Theory +hep-th/0412001 Theory +hep-th/0412006 Theory +hep-th/0412007 Theory +hep-th/0412009 Theory +hep-th/0412010 Theory +hep-th/0412011 Theory +hep-th/0412018 Theory +hep-th/0412020 Theory +hep-th/0412026 Theory +hep-th/0412027 Theory +hep-th/0412028 Theory +hep-th/0412032 Theory +hep-th/0412033 Theory +hep-th/0412036 Theory +hep-th/0412038 Theory +hep-th/0412039 Theory +hep-th/0412041 Theory +hep-th/0412042 Theory +hep-th/0412049 Theory +hep-th/0412050 Theory +hep-th/0412051 Theory +hep-th/0412053 Theory +hep-th/0412056 Theory +hep-th/0412059 Theory +hep-th/0412061 Theory +hep-th/0412062 Theory +hep-th/0412063 Theory +hep-th/0412064 Theory +hep-th/0412067 Theory +hep-th/0412069 Theory +hep-th/0412070 Theory +hep-th/0412072 Theory +hep-th/0412073 Theory +hep-th/0412076 Theory +hep-th/0412077 Theory +hep-th/0412078 Theory +hep-th/0412081 Theory +hep-th/0412083 Theory +hep-th/0412085 Theory +hep-th/0412086 Theory +hep-th/0412089 Theory +hep-th/0412090 Theory +hep-th/0412093 Theory +hep-th/0412095 Theory +hep-th/0412096 Theory +hep-th/0412100 Theory +hep-th/0412101 Theory +hep-th/0412102 Theory +hep-th/0412103 Theory +hep-th/0412104 Theory +hep-th/0412105 Theory +hep-th/0412107 Theory +hep-th/0412110 Theory +hep-th/0412113 Theory +hep-th/0412120 Theory +hep-th/0412123 Theory +hep-th/0412124 Theory +hep-th/0412125 Theory +hep-th/0412126 Theory +hep-th/0412127 Theory +hep-th/0412130 Theory +hep-th/0412132 Theory +hep-th/0412135 Theory +hep-th/0412136 Theory +hep-th/0412137 Theory +hep-th/0412138 Theory +hep-th/0412142 Theory +hep-th/0412144 Theory +hep-th/0412148 Theory +hep-th/0412149 Theory +hep-th/0412155 Theory +hep-th/0412156 Theory +hep-th/0412157 Theory +hep-th/0412159 Theory +hep-th/0412166 Theory +hep-th/0412169 Theory +hep-th/0412170 Theory +hep-th/0412174 Theory +hep-th/0412175 Theory +hep-th/0412176 Theory +hep-th/0412177 Theory +hep-th/0412179 Theory +hep-th/0412180 Theory +hep-th/0412181 Theory +hep-th/0412182 Theory +hep-th/0412183 Theory +hep-th/0412185 Theory +hep-th/0412186 Theory +hep-th/0412188 Theory +hep-th/0412189 Theory +hep-th/0412190 Theory +hep-th/0412192 Theory +hep-th/0412193 Theory +hep-th/0412195 Theory +hep-th/0412196 Theory +hep-th/0412197 Theory +hep-th/0412201 Theory +hep-th/0412203 Theory +hep-th/0412206 Theory +hep-th/0412211 Theory +hep-th/0412218 Theory +hep-th/0412220 Theory +hep-th/0412222 Theory +hep-th/0412226 Theory +hep-th/0412227 Theory +hep-th/0412228 Theory +hep-th/0412229 Theory +hep-th/0412231 Theory +hep-th/0412243 Theory +hep-th/0412245 Theory +hep-th/0412246 Theory +hep-th/0412252 Theory +hep-th/0412253 Theory +hep-th/0412255 Theory +hep-th/0412258 Theory +hep-th/0412259 Theory +hep-th/0412261 Theory +hep-th/0412263 Theory +hep-th/0412264 Theory +hep-th/0412265 Theory +hep-th/0412269 Theory +hep-th/0412270 Theory +hep-th/0412271 Theory +hep-th/0412274 Theory +hep-th/0412279 Theory +hep-th/0412281 Theory +hep-th/0412282 Theory +hep-th/0412287 Theory +hep-th/0412288 Theory +hep-th/0412291 Theory +hep-th/0412293 Theory +hep-th/0412295 Theory +hep-th/0412296 Theory +hep-th/0412299 Theory +hep-th/0412306 Theory +hep-th/0412311 Theory +hep-th/0412313 Theory +hep-th/0412314 Theory +hep-th/0412315 Theory +hep-th/0412316 Theory +hep-th/0412319 Theory +hep-th/0412321 Theory +hep-th/0412322 Theory +hep-th/0412324 Theory +hep-th/0412327 Theory +hep-th/0412331 Theory +hep-th/0412335 Theory +hep-th/0412336 Theory +hep-th/0601043 Theory +hep-th/0606239 Theory +hep-th/0701094 Theory +math-ph/0301005 +math-ph/0301008 +math-ph/0301013 +math-ph/0301017 +math-ph/0301018 +math-ph/0301020 +math-ph/0301024 +math-ph/0301025 +math-ph/0301039 +math-ph/0301044 +math-ph/0302002 +math-ph/0302003 +math-ph/0302013 +math-ph/0302014 +math-ph/0302017 +math-ph/0302018 +math-ph/0302022 +math-ph/0302034 +math-ph/0302040 +math-ph/0302054 +math-ph/0302065 +math-ph/0302067 +math-ph/0303007 +math-ph/0303013 +math-ph/0303016 +math-ph/0303017 +math-ph/0303019 +math-ph/0303022 +math-ph/0303025 +math-ph/0303027 +math-ph/0303029 +math-ph/0303042 +math-ph/0303044 +math-ph/0303050 +math-ph/0303051 +math-ph/0303054 +math-ph/0303061 +math-ph/0303073 +math-ph/0304002 +math-ph/0304005 +math-ph/0304017 +math-ph/0304020 +math-ph/0304023 +math-ph/0304035 +math-ph/0304038 +math-ph/0304047 +math-ph/0305002 +math-ph/0305005 +math-ph/0305017 +math-ph/0305020 +math-ph/0305023 +math-ph/0305025 +math-ph/0305026 +math-ph/0305028 +math-ph/0305034 +math-ph/0305035 +math-ph/0305038 +math-ph/0305040 +math-ph/0305044 +math-ph/0305046 +math-ph/0305049 +math-ph/0305060 +math-ph/0306006 +math-ph/0306010 +math-ph/0306012 +math-ph/0306014 +math-ph/0306015 +math-ph/0306018 +math-ph/0306022 +math-ph/0306029 +math-ph/0306030 +math-ph/0306031 +math-ph/0306040 +math-ph/0306041 +math-ph/0306042 +math-ph/0306043 +math-ph/0306045 +math-ph/0306066 +math-ph/0306067 +math-ph/0306076 +math-ph/0307001 +math-ph/0307002 +math-ph/0307004 +math-ph/0307012 +math-ph/0307013 +math-ph/0307014 +math-ph/0307019 +math-ph/0307020 +math-ph/0307023 +math-ph/0307024 +math-ph/0307026 +math-ph/0307027 +math-ph/0307033 +math-ph/0307034 +math-ph/0307041 +math-ph/0307048 +math-ph/0307054 +math-ph/0307057 +math-ph/0307061 +math-ph/0307063 +math-ph/0308006 +math-ph/0308011 +math-ph/0308018 +math-ph/0308021 +math-ph/0308038 +math-ph/0308040 +math-ph/0308045 +math-ph/0309002 +math-ph/0309003 +math-ph/0309010 +math-ph/0309012 +math-ph/0309014 +math-ph/0309016 +math-ph/0309019 +math-ph/0309020 +math-ph/0309022 +math-ph/0309023 +math-ph/0309025 +math-ph/0309034 +math-ph/0309035 +math-ph/0309037 +math-ph/0309039 +math-ph/0309041 +math-ph/0309042 +math-ph/0309043 +math-ph/0309051 +math-ph/0309052 +math-ph/0309058 +math-ph/0309061 +math-ph/0309062 +math-ph/0309066 +math-ph/0310006 +math-ph/0310007 +math-ph/0310014 +math-ph/0310022 +math-ph/0310030 +math-ph/0310038 +math-ph/0310041 +math-ph/0310060 +math-ph/0310062 +math-ph/0310067 +math-ph/0311010 +math-ph/0311031 +math-ph/0311034 +math-ph/0311038 +math-ph/0311042 +math-ph/0311046 +math-ph/0312012 +math-ph/0312013 +math-ph/0312015 +math-ph/0312017 +math-ph/0312031 +math-ph/0312033 +math-ph/0312034 +math-ph/0312040 +math-ph/0312043 +math-ph/0312045 +math-ph/0312060 +math-ph/0312062 +math-ph/0401008 +math-ph/0401010 +math-ph/0401012 +math-ph/0401015 +math-ph/0401016 +math-ph/0401018 +math-ph/0401020 +math-ph/0401021 +math-ph/0401023 +math-ph/0401027 +math-ph/0401028 +math-ph/0401030 +math-ph/0401034 +math-ph/0401035 +math-ph/0401036 +math-ph/0401038 +math-ph/0401039 +math-ph/0401040 +math-ph/0401041 +math-ph/0401042 +math-ph/0401048 +math-ph/0401052 +math-ph/0402004 +math-ph/0402015 +math-ph/0402017 +math-ph/0402018 +math-ph/0402019 +math-ph/0402022 +math-ph/0402023 +math-ph/0402025 +math-ph/0402027 +math-ph/0402028 +math-ph/0402035 +math-ph/0402038 +math-ph/0402039 +math-ph/0402041 +math-ph/0402042 +math-ph/0402043 +math-ph/0402044 +math-ph/0402047 +math-ph/0402058 +math-ph/0402065 +math-ph/0402067 +math-ph/0402068 +math-ph/0402069 +math-ph/0402072 +math-ph/0403003 +math-ph/0403004 +math-ph/0403005 +math-ph/0403006 +math-ph/0403009 +math-ph/0403010 +math-ph/0403011 +math-ph/0403015 +math-ph/0403017 +math-ph/0403018 +math-ph/0403019 +math-ph/0403020 +math-ph/0403021 +math-ph/0403023 +math-ph/0403024 +math-ph/0403030 +math-ph/0403032 +math-ph/0403034 +math-ph/0403040 +math-ph/0403048 +math-ph/0403053 +math-ph/0403057 +math-ph/0404002 +math-ph/0404004 +math-ph/0404014 +math-ph/0404018 +math-ph/0404021 +math-ph/0404022 +math-ph/0404023 +math-ph/0404026 +math-ph/0404028 +math-ph/0404032 +math-ph/0404035 +math-ph/0404036 +math-ph/0404037 +math-ph/0404038 +math-ph/0404040 +math-ph/0404041 +math-ph/0404043 +math-ph/0404044 +math-ph/0404061 +math-ph/0404063 +math-ph/0404064 +math-ph/0404065 +math-ph/0404072 +math-ph/0405007 +math-ph/0405023 +math-ph/0405024 +math-ph/0405025 +math-ph/0405026 +math-ph/0405030 +math-ph/0405034 +math-ph/0405036 +math-ph/0405038 +math-ph/0405039 +math-ph/0405042 +math-ph/0405044 +math-ph/0405048 +math-ph/0405050 +math-ph/0405054 +math-ph/0405058 +math-ph/0405059 +math-ph/0405062 +math-ph/0405066 +math-ph/0406005 +math-ph/0406006 +math-ph/0406008 +math-ph/0406009 +math-ph/0406012 +math-ph/0406015 +math-ph/0406023 +math-ph/0406025 +math-ph/0406026 +math-ph/0406028 +math-ph/0406037 +math-ph/0406038 +math-ph/0406041 +math-ph/0406043 +math-ph/0406044 +math-ph/0406045 +math-ph/0406046 +math-ph/0406047 +math-ph/0406049 +math-ph/0406051 +math-ph/0406056 +math-ph/0406059 +math-ph/0406066 +math-ph/0407002 +math-ph/0407007 +math-ph/0407009 +math-ph/0407011 +math-ph/0407012 +math-ph/0407014 +math-ph/0407016 +math-ph/0407019 +math-ph/0407021 +math-ph/0407022 +math-ph/0407027 +math-ph/0407039 +math-ph/0407040 +math-ph/0407041 +math-ph/0407042 +math-ph/0407045 +math-ph/0407048 +math-ph/0407051 +math-ph/0407052 +math-ph/0407054 +math-ph/0407057 +math-ph/0407058 +math-ph/0407060 +math-ph/0407061 +math-ph/0407064 +math-ph/0407068 +math-ph/0407069 +math-ph/0407072 +math-ph/0408002 +math-ph/0408004 +math-ph/0408007 +math-ph/0408010 +math-ph/0408014 +math-ph/0408016 +math-ph/0408023 +math-ph/0408025 +math-ph/0408027 +math-ph/0408030 +math-ph/0408032 +math-ph/0408033 +math-ph/0408042 +math-ph/0408043 +math-ph/0408046 +math-ph/0408054 +math-ph/0408055 +math-ph/0408056 +math-ph/0408058 +math-ph/0408060 +math-ph/0409002 +math-ph/0409003 +math-ph/0409004 +math-ph/0409005 +math-ph/0409008 +math-ph/0409014 +math-ph/0409018 +math-ph/0409022 +math-ph/0409023 +math-ph/0409034 +math-ph/0409036 +math-ph/0409040 +math-ph/0409041 +math-ph/0409042 +math-ph/0409043 +math-ph/0409044 +math-ph/0409048 +math-ph/0409050 +math-ph/0409052 +math-ph/0409054 +math-ph/0409057 +math-ph/0409058 +math-ph/0409059 +math-ph/0409060 +math-ph/0409063 +math-ph/0409064 +math-ph/0409068 +math-ph/0409069 +math-ph/0409073 +math-ph/0409076 +math-ph/0409079 +math-ph/0409081 +math-ph/0410001 +math-ph/0410010 +math-ph/0410012 +math-ph/0410014 +math-ph/0410015 +math-ph/0410019 +math-ph/0410026 +math-ph/0410028 +math-ph/0410032 +math-ph/0410035 +math-ph/0410037 +math-ph/0410039 +math-ph/0410054 +math-ph/0410055 +math-ph/0411001 +math-ph/0411003 +math-ph/0411008 +math-ph/0411013 +math-ph/0411017 +math-ph/0411019 +math-ph/0411022 +math-ph/0411030 +math-ph/0411033 +math-ph/0411040 +math-ph/0411058 +math-ph/0411060 +math-ph/0411061 +math-ph/0411068 +math-ph/0411070 +math-ph/0411073 +math-ph/0411079 +math-ph/0411083 +math-ph/0411085 +math-ph/0411086 +math-ph/0412001 +math-ph/0412009 +math-ph/0412011 +math-ph/0412014 +math-ph/0412016 +math-ph/0412018 +math-ph/0412019 +math-ph/0412023 +math-ph/0412028 +math-ph/0412030 +math-ph/0412034 +math-ph/0412036 +math-ph/0412038 +math-ph/0412044 +math-ph/0412046 +math-ph/0412052 +math-ph/0412057 +math-ph/0412060 +math-ph/0412065 +math-ph/0412080 +math-ph/0412081 +math-ph/0412085 +math-ph/0412089 +math-ph/0412092 +math-ph/0412093 +math-ph/0412095 +math-ph/0412098 +math/0301022 Quantum Algebra +math/0301025 Quantum Algebra +math/0301052 Quantum Algebra +math/0301072 Rings and Algebras +math/0301081 Differential Geometry +math/0301123 Quantum Algebra +math/0301137 Differential Geometry +math/0301140 Algebraic Geometry +math/0301170 Differential Geometry +math/0301201 Number Theory +math/0301234 Differential Geometry +math/0301268 Optimization and Control +math/0301281 Differential Geometry +math/0301282 Complex Variables +math/0301290 Analysis of PDEs +math/0301301 Dynamical Systems +math/0301320 Geometric Topology +math/0301321 Numerical Analysis +math/0301362 Quantum Algebra +math/0301378 Dynamical Systems +math/0301379 Numerical Analysis +math/0302097 Quantum Algebra +math/0302129 Analysis of PDEs +math/0302148 Quantum Algebra +math/0302195 Spectral Theory +math/0302199 Analysis of PDEs +math/0302207 Algebraic Geometry +math/0302240 Operator Algebras +math/0302286 Analysis of PDEs +math/0302348 Analysis of PDEs +math/0303022 Dynamical Systems +math/0303045 Functional Analysis +math/0303088 Quantum Algebra +math/0303181 Differential Geometry +math/0303192 Quantum Algebra +math/0303197 Differential Geometry +math/0303244 Classical Analysis and ODEs +math/0303258 Dynamical Systems +math/0303363 Dynamical Systems +math/0304074 Quantum Algebra +math/0304149 Algebraic Topology +math/0304175 Representation Theory +math/0304189 Quantum Algebra +math/0304221 Differential Geometry +math/0304349 Probability +math/0304385 Quantum Algebra +math/0304404 Dynamical Systems +math/0304409 Spectral Theory +math/0304427 Quantum Algebra +math/0304481 Probability +math/0304498 Symplectic Geometry +math/0305123 Quantum Algebra +math/0305138 Analysis of PDEs +math/0305142 Algebraic Geometry +math/0305164 Dynamical Systems +math/0305286 Algebraic Geometry +math/0305321 Number Theory +math/0305323 Quantum Algebra +math/0305398 Probability +math/0306040 Quantum Algebra +math/0306044 Rings and Algebras +math/0306173 Analysis of PDEs +math/0306218 Dynamical Systems +math/0306255 Differential Geometry +math/0306305 Numerical Analysis +math/0306311 Algebraic Topology +math/0306331 Differential Geometry +math/0306340 Dynamical Systems +math/0306408 Differential Geometry +math/0306425 Operator Algebras +math/0307010 Differential Geometry +math/0307024 Quantum Algebra +math/0307026 Quantum Algebra +math/0307071 Dynamical Systems +math/0307088 Dynamical Systems +math/0307129 Differential Geometry +math/0307199 Differential Geometry +math/0307201 Operator Algebras +math/0307240 Dynamical Systems +math/0307244 Quantum Algebra +math/0307299 Algebraic Geometry +math/0307336 Probability +math/0307344 Analysis of PDEs +math/0307381 Quantum Algebra +math/0308017 Dynamical Systems +math/0308042 Quantum Algebra +math/0308095 Rings and Algebras +math/0308106 Algebraic Geometry +math/0308112 Probability +math/0308117 Representation Theory +math/0308122 Probability +math/0308124 Probability +math/0308152 Differential Geometry +math/0308157 Probability +math/0308179 Differential Geometry +math/0308214 Analysis of PDEs +math/0308244 Differential Geometry +math/0308248 Quantum Algebra +math/0308249 Differential Geometry +math/0308275 Quantum Algebra +math/0309040 Analysis of PDEs +math/0309121 Group Theory +math/0309126 Combinatorics +math/0309127 Differential Geometry +math/0309140 Geometric Topology +math/0309143 Quantum Algebra +math/0309174 Operator Algebras +math/0309180 Quantum Algebra +math/0309201 Quantum Algebra +math/0309215 Number Theory +math/0309263 Dynamical Systems +math/0309304 Dynamical Systems +math/0309353 Analysis of PDEs +math/0309418 Representation Theory +math/0309434 Algebraic Topology +math/0309468 Quantum Algebra +math/0310024 Differential Geometry +math/0310128 Quantum Algebra +math/0310212 Algebraic Geometry +math/0310302 Differential Geometry +math/0310307 Differential Geometry +math/0310331 Dynamical Systems +math/0310355 Probability +math/0310372 Number Theory +math/0310455 Differential Geometry +math/0311021 Category Theory +math/0311022 Quantum Algebra +math/0311055 Classical Analysis and ODEs +math/0311146 Quantum Algebra +math/0311209 Dynamical Systems +math/0311260 History and Overview +math/0311314 Quantum Algebra +math/0311395 Geometric Topology +math/0311432 Differential Geometry +math/0311439 Dynamical Systems +math/0311517 Quantum Algebra +math/0311518 Quantum Algebra +math/0312024 Representation Theory +math/0312051 Complex Variables +math/0312075 Classical Analysis and ODEs +math/0312094 Differential Geometry +math/0312118 Quantum Algebra +math/0312135 Operator Algebras +math/0312136 Dynamical Systems +math/0312138 Quantum Algebra +math/0312270 Representation Theory +math/0312274 Symplectic Geometry +math/0312323 Dynamical Systems +math/0312461 Quantum Algebra +math/0312519 Differential Geometry +math/0401022 Dynamical Systems +math/0401080 Differential Geometry +math/0401111 Complex Variables +math/0401130 Algebraic Topology +math/0401137 Quantum Algebra +math/0401146 Dynamical Systems +math/0401164 Quantum Algebra +math/0401194 Dynamical Systems +math/0401207 Quantum Algebra +math/0401264 Complex Variables +math/0401272 Quantum Algebra +math/0401279 General Mathematics +math/0401294 Differential Geometry +math/0401377 Symplectic Geometry +math/0401412 Differential Geometry +math/0402007 Differential Geometry +math/0402038 +math/0402055 Differential Geometry +math/0402076 Differential Geometry +math/0402114 Differential Geometry +math/0402144 Dynamical Systems +math/0402196 Algebraic Geometry +math/0402257 Geometric Topology +math/0402282 Differential Geometry +math/0402319 Quantum Algebra +math/0402325 Combinatorics +math/0402326 Complex Variables +math/0402358 Differential Geometry +math/0402366 Differential Geometry +math/0402367 Numerical Analysis +math/0402382 Number Theory +math/0402401 Quantum Algebra +math/0402435 Differential Geometry +math/0402449 Analysis of PDEs +math/0402461 Number Theory +math/0403131 Differential Geometry +math/0403170 Algebraic Geometry +math/0403207 Quantum Algebra +math/0403210 Operator Algebras +math/0403246 Quantum Algebra +math/0403322 Quantum Algebra +math/0403416 Quantum Algebra +math/0403425 Probability +math/0403488 Quantum Algebra +math/0404133 Probability +math/0404238 Differential Geometry +math/0404283 Analysis of PDEs +math/0404291 Analysis of PDEs +math/0404368 Dynamical Systems +math/0404484 Number Theory +math/0404493 Quantum Algebra +math/0404509 Operator Algebras +math/0405010 Spectral Theory +math/0405032 Operator Algebras +math/0405043 Quantum Algebra +math/0405142 Optimization and Control +math/0405145 Quantum Algebra +math/0405146 Differential Geometry +math/0405208 Optimization and Control +math/0405243 Quantum Algebra +math/0405270 Differential Geometry +math/0405362 Probability +math/0405365 Differential Geometry +math/0405386 Geometric Topology +math/0405425 Probability +math/0405437 Analysis of PDEs +math/0405465 Geometric Topology +math/0405468 Quantum Algebra +math/0405598 Dynamical Systems +math/0405602 Differential Geometry +math/0406003 Dynamical Systems +math/0406039 Differential Geometry +math/0406083 Probability +math/0406146 Dynamical Systems +math/0406163 Group Theory +math/0406177 Geometric Topology +math/0406201 Dynamical Systems +math/0406274 Quantum Algebra +math/0406313 Geometric Topology +math/0406399 Differential Geometry +math/0406400 Differential Geometry +math/0406582 Analysis of PDEs +math/0406607 Group Theory +math/0407011 Quantum Algebra +math/0407018 Spectral Theory +math/0407067 Differential Geometry +math/0407177 Numerical Analysis +math/0407190 Operator Algebras +math/0407228 Dynamical Systems +math/0407252 Spectral Theory +math/0407273 Quantum Algebra +math/0407305 Algebraic Geometry +math/0407342 Quantum Algebra +math/0407348 Algebraic Geometry +math/0407365 Analysis of PDEs +math/0407386 Functional Analysis +math/0407403 Geometric Topology +math/0407435 Differential Geometry +math/0407483 Quantum Algebra +math/0407495 Symplectic Geometry +math/0407528 Differential Geometry +math/0408007 Quantum Algebra +math/0408010 Dynamical Systems +math/0408096 Dynamical Systems +math/0408109 Group Theory +math/0408161 Geometric Topology +math/0408172 Analysis of PDEs +math/0408183 Spectral Theory +math/0408217 Quantum Algebra +math/0408240 Dynamical Systems +math/0408431 Dynamical Systems +math/0409031 Algebraic Geometry +math/0409066 Algebraic Geometry +math/0409076 Probability +math/0409140 Quantum Algebra +math/0409167 Differential Geometry +math/0409172 Analysis of PDEs +math/0409215 Dynamical Systems +math/0409230 Statistics Theory +math/0409258 Number Theory +math/0409326 Functional Analysis +math/0409415 Dynamical Systems +math/0409442 Spectral Theory +math/0409483 Dynamical Systems +math/0409486 Analysis of PDEs +math/0409538 Combinatorics +math/0409601 Operator Algebras +math/0410013 Differential Geometry +math/0410077 Quantum Algebra +math/0410235 Operator Algebras +math/0410239 Differential Geometry +math/0410291 Quantum Algebra +math/0410292 Number Theory +math/0410350 Quantum Algebra +math/0410392 Algebraic Geometry +math/0410460 Differential Geometry +math/0410465 Probability +math/0410564 Analysis of PDEs +math/0411070 Differential Geometry +math/0411336 Quantum Algebra +math/0411367 Algebraic Geometry +math/0411389 Quantum Algebra +math/0411401 Quantum Algebra +math/0411517 Differential Geometry +math/0411524 Quantum Algebra +math/0411609 Quantum Algebra +math/0411642 Differential Geometry +math/0412031 Analysis of PDEs +math/0412061 Operator Algebras +math/0412069 Quantum Algebra +math/0412113 Quantum Algebra +math/0412123 Differential Geometry +math/0412166 Dynamical Systems +math/0412167 Dynamical Systems +math/0412175 Dynamical Systems +math/0412261 Quantum Algebra +math/0412274 Group Theory +math/0412321 Spectral Theory +math/0412344 Statistics Theory +math/0412349 Probability +math/0412407 Probability +math/0412429 Analysis of PDEs +math/0412467 Geometric Topology +math/0412534 Analysis of PDEs +math/0412549 Quantum Algebra +math/0510363 Metric Geometry +math/0609273 Dynamical Systems +nlin/0301003 Chaotic Dynamics +nlin/0301004 Chaotic Dynamics +nlin/0301006 Chaotic Dynamics +nlin/0301007 Pattern Formation and Solitons +nlin/0301010 Exactly Solvable and Integrable Systems +nlin/0301012 Chaotic Dynamics +nlin/0301013 Pattern Formation and Solitons +nlin/0301014 Chaotic Dynamics +nlin/0301015 Pattern Formation and Solitons +nlin/0301017 Exactly Solvable and Integrable Systems +nlin/0301018 Chaotic Dynamics +nlin/0301019 Pattern Formation and Solitons +nlin/0301020 Exactly Solvable and Integrable Systems +nlin/0301022 Chaotic Dynamics +nlin/0301023 Pattern Formation and Solitons +nlin/0301024 Pattern Formation and Solitons +nlin/0301026 Chaotic Dynamics +nlin/0301031 Chaotic Dynamics +nlin/0301033 Chaotic Dynamics +nlin/0301034 Pattern Formation and Solitons +nlin/0301038 Chaotic Dynamics +nlin/0301041 Chaotic Dynamics +nlin/0301042 Exactly Solvable and Integrable Systems +nlin/0301044 Chaotic Dynamics +nlin/0301045 Chaotic Dynamics +nlin/0301047 Pattern Formation and Solitons +nlin/0301048 Exactly Solvable and Integrable Systems +nlin/0302008 Pattern Formation and Solitons +nlin/0302010 Pattern Formation and Solitons +nlin/0302011 Chaotic Dynamics +nlin/0302012 Exactly Solvable and Integrable Systems +nlin/0302013 Chaotic Dynamics +nlin/0302014 Chaotic Dynamics +nlin/0302015 Cellular Automata and Lattice Gases +nlin/0302016 Chaotic Dynamics +nlin/0302024 Pattern Formation and Solitons +nlin/0302025 Pattern Formation and Solitons +nlin/0302029 Chaotic Dynamics +nlin/0302030 Exactly Solvable and Integrable Systems +nlin/0302031 Exactly Solvable and Integrable Systems +nlin/0302033 Chaotic Dynamics +nlin/0302034 Chaotic Dynamics +nlin/0302035 Pattern Formation and Solitons +nlin/0302040 Chaotic Dynamics +nlin/0302042 Chaotic Dynamics +nlin/0302047 Chaotic Dynamics +nlin/0302048 Chaotic Dynamics +nlin/0302051 Pattern Formation and Solitons +nlin/0302054 Chaotic Dynamics +nlin/0302057 Pattern Formation and Solitons +nlin/0302060 Adaptation and Self-Organizing Systems +nlin/0302061 Exactly Solvable and Integrable Systems +nlin/0302063 Chaotic Dynamics +nlin/0303002 Chaotic Dynamics +nlin/0303003 Pattern Formation and Solitons +nlin/0303006 Chaotic Dynamics +nlin/0303008 Chaotic Dynamics +nlin/0303012 Pattern Formation and Solitons +nlin/0303015 Pattern Formation and Solitons +nlin/0303019 Exactly Solvable and Integrable Systems +nlin/0303022 Chaotic Dynamics +nlin/0303029 Chaotic Dynamics +nlin/0303030 Pattern Formation and Solitons +nlin/0303034 Chaotic Dynamics +nlin/0303035 Chaotic Dynamics +nlin/0303036 Exactly Solvable and Integrable Systems +nlin/0303037 Exactly Solvable and Integrable Systems +nlin/0303038 Exactly Solvable and Integrable Systems +nlin/0303041 Chaotic Dynamics +nlin/0303043 Exactly Solvable and Integrable Systems +nlin/0303044 Chaotic Dynamics +nlin/0303045 Chaotic Dynamics +nlin/0303051 Chaotic Dynamics +nlin/0303052 Chaotic Dynamics +nlin/0303053 Chaotic Dynamics +nlin/0303059 Chaotic Dynamics +nlin/0303061 Pattern Formation and Solitons +nlin/0303063 Exactly Solvable and Integrable Systems +nlin/0303064 Chaotic Dynamics +nlin/0303066 Cellular Automata and Lattice Gases +nlin/0303069 Exactly Solvable and Integrable Systems +nlin/0303072 Pattern Formation and Solitons +nlin/0304003 Pattern Formation and Solitons +nlin/0304005 Exactly Solvable and Integrable Systems +nlin/0304008 Pattern Formation and Solitons +nlin/0304010 Cellular Automata and Lattice Gases +nlin/0304018 Chaotic Dynamics +nlin/0304020 Pattern Formation and Solitons +nlin/0304021 Pattern Formation and Solitons +nlin/0304023 Pattern Formation and Solitons +nlin/0304024 Exactly Solvable and Integrable Systems +nlin/0304025 Exactly Solvable and Integrable Systems +nlin/0304029 Chaotic Dynamics +nlin/0304030 Exactly Solvable and Integrable Systems +nlin/0304031 Chaotic Dynamics +nlin/0304033 Exactly Solvable and Integrable Systems +nlin/0304038 Chaotic Dynamics +nlin/0304045 Chaotic Dynamics +nlin/0304046 Chaotic Dynamics +nlin/0304052 Pattern Formation and Solitons +nlin/0304054 Chaotic Dynamics +nlin/0304056 Chaotic Dynamics +nlin/0304058 Pattern Formation and Solitons +nlin/0305002 Chaotic Dynamics +nlin/0305003 Adaptation and Self-Organizing Systems +nlin/0305005 Chaotic Dynamics +nlin/0305006 Chaotic Dynamics +nlin/0305008 Chaotic Dynamics +nlin/0305010 Chaotic Dynamics +nlin/0305013 Cellular Automata and Lattice Gases +nlin/0305015 Pattern Formation and Solitons +nlin/0305016 Chaotic Dynamics +nlin/0305018 Chaotic Dynamics +nlin/0305020 Chaotic Dynamics +nlin/0305021 Chaotic Dynamics +nlin/0305022 Adaptation and Self-Organizing Systems +nlin/0305024 Chaotic Dynamics +nlin/0305025 Pattern Formation and Solitons +nlin/0305028 Chaotic Dynamics +nlin/0305029 Chaotic Dynamics +nlin/0305030 Pattern Formation and Solitons +nlin/0305032 Chaotic Dynamics +nlin/0305038 Chaotic Dynamics +nlin/0305039 Chaotic Dynamics +nlin/0305040 Chaotic Dynamics +nlin/0305044 Exactly Solvable and Integrable Systems +nlin/0305049 Exactly Solvable and Integrable Systems +nlin/0305051 Cellular Automata and Lattice Gases +nlin/0305052 Chaotic Dynamics +nlin/0305053 Chaotic Dynamics +nlin/0305055 Chaotic Dynamics +nlin/0305056 Chaotic Dynamics +nlin/0305060 Chaotic Dynamics +nlin/0306001 Pattern Formation and Solitons +nlin/0306003 Exactly Solvable and Integrable Systems +nlin/0306005 Exactly Solvable and Integrable Systems +nlin/0306009 Chaotic Dynamics +nlin/0306011 Pattern Formation and Solitons +nlin/0306013 Chaotic Dynamics +nlin/0306016 Chaotic Dynamics +nlin/0306017 Chaotic Dynamics +nlin/0306018 Pattern Formation and Solitons +nlin/0306024 Chaotic Dynamics +nlin/0306027 Exactly Solvable and Integrable Systems +nlin/0306035 Pattern Formation and Solitons +nlin/0306049 Chaotic Dynamics +nlin/0306050 Chaotic Dynamics +nlin/0306052 Exactly Solvable and Integrable Systems +nlin/0306056 Chaotic Dynamics +nlin/0306058 Exactly Solvable and Integrable Systems +nlin/0306059 Chaotic Dynamics +nlin/0306062 Chaotic Dynamics +nlin/0307002 Chaotic Dynamics +nlin/0307005 Chaotic Dynamics +nlin/0307014 Chaotic Dynamics +nlin/0307016 Cellular Automata and Lattice Gases +nlin/0307020 Chaotic Dynamics +nlin/0307024 Chaotic Dynamics +nlin/0307025 Chaotic Dynamics +nlin/0307029 Chaotic Dynamics +nlin/0307032 Chaotic Dynamics +nlin/0307035 Chaotic Dynamics +nlin/0307038 Chaotic Dynamics +nlin/0307039 Pattern Formation and Solitons +nlin/0307041 Pattern Formation and Solitons +nlin/0307042 Exactly Solvable and Integrable Systems +nlin/0307045 Exactly Solvable and Integrable Systems +nlin/0307047 Pattern Formation and Solitons +nlin/0307048 Pattern Formation and Solitons +nlin/0307049 Chaotic Dynamics +nlin/0307051 Chaotic Dynamics +nlin/0307054 Chaotic Dynamics +nlin/0307055 Pattern Formation and Solitons +nlin/0308002 Adaptation and Self-Organizing Systems +nlin/0308007 Pattern Formation and Solitons +nlin/0308008 Chaotic Dynamics +nlin/0308009 Chaotic Dynamics +nlin/0308010 Chaotic Dynamics +nlin/0308014 Chaotic Dynamics +nlin/0308016 Pattern Formation and Solitons +nlin/0308019 Chaotic Dynamics +nlin/0308020 Pattern Formation and Solitons +nlin/0308021 Pattern Formation and Solitons +nlin/0308024 Chaotic Dynamics +nlin/0308025 Chaotic Dynamics +nlin/0308026 Chaotic Dynamics +nlin/0308027 Chaotic Dynamics +nlin/0308028 Chaotic Dynamics +nlin/0308030 Chaotic Dynamics +nlin/0308033 Chaotic Dynamics +nlin/0308034 Pattern Formation and Solitons +nlin/0309001 Pattern Formation and Solitons +nlin/0309003 Pattern Formation and Solitons +nlin/0309005 Chaotic Dynamics +nlin/0309006 Chaotic Dynamics +nlin/0309008 Chaotic Dynamics +nlin/0309010 Chaotic Dynamics +nlin/0309011 Exactly Solvable and Integrable Systems +nlin/0309014 Pattern Formation and Solitons +nlin/0309016 Chaotic Dynamics +nlin/0309017 Exactly Solvable and Integrable Systems +nlin/0309018 Pattern Formation and Solitons +nlin/0309019 Chaotic Dynamics +nlin/0309020 Pattern Formation and Solitons +nlin/0309021 Chaotic Dynamics +nlin/0309025 Pattern Formation and Solitons +nlin/0309026 Chaotic Dynamics +nlin/0309027 Chaotic Dynamics +nlin/0309028 Pattern Formation and Solitons +nlin/0309032 Pattern Formation and Solitons +nlin/0309034 Pattern Formation and Solitons +nlin/0309037 Chaotic Dynamics +nlin/0309042 Pattern Formation and Solitons +nlin/0309046 Pattern Formation and Solitons +nlin/0309047 Cellular Automata and Lattice Gases +nlin/0309049 Chaotic Dynamics +nlin/0309050 Chaotic Dynamics +nlin/0309052 Pattern Formation and Solitons +nlin/0309053 Chaotic Dynamics +nlin/0309054 Pattern Formation and Solitons +nlin/0309059 Pattern Formation and Solitons +nlin/0309060 Chaotic Dynamics +nlin/0309061 Chaotic Dynamics +nlin/0309062 Pattern Formation and Solitons +nlin/0309064 Exactly Solvable and Integrable Systems +nlin/0309065 Chaotic Dynamics +nlin/0309067 Pattern Formation and Solitons +nlin/0309071 Exactly Solvable and Integrable Systems +nlin/0309072 Chaotic Dynamics +nlin/0309074 Pattern Formation and Solitons +nlin/0310002 Cellular Automata and Lattice Gases +nlin/0310004 Chaotic Dynamics +nlin/0310005 Exactly Solvable and Integrable Systems +nlin/0310006 Pattern Formation and Solitons +nlin/0310011 Adaptation and Self-Organizing Systems +nlin/0310013 Chaotic Dynamics +nlin/0310014 Exactly Solvable and Integrable Systems +nlin/0310017 Pattern Formation and Solitons +nlin/0310019 Exactly Solvable and Integrable Systems +nlin/0310020 Pattern Formation and Solitons +nlin/0310021 Exactly Solvable and Integrable Systems +nlin/0310024 Pattern Formation and Solitons +nlin/0310025 Chaotic Dynamics +nlin/0310026 Pattern Formation and Solitons +nlin/0310029 Chaotic Dynamics +nlin/0310033 Adaptation and Self-Organizing Systems +nlin/0310037 Pattern Formation and Solitons +nlin/0310038 Exactly Solvable and Integrable Systems +nlin/0310040 Pattern Formation and Solitons +nlin/0310044 Chaotic Dynamics +nlin/0310048 Chaotic Dynamics +nlin/0310049 Exactly Solvable and Integrable Systems +nlin/0311003 Exactly Solvable and Integrable Systems +nlin/0311005 Exactly Solvable and Integrable Systems +nlin/0311007 Pattern Formation and Solitons +nlin/0311010 Exactly Solvable and Integrable Systems +nlin/0311012 Chaotic Dynamics +nlin/0311015 Pattern Formation and Solitons +nlin/0311018 Exactly Solvable and Integrable Systems +nlin/0311021 Chaotic Dynamics +nlin/0311022 Chaotic Dynamics +nlin/0311023 Pattern Formation and Solitons +nlin/0311024 Exactly Solvable and Integrable Systems +nlin/0311026 Pattern Formation and Solitons +nlin/0311036 Chaotic Dynamics +nlin/0311037 Chaotic Dynamics +nlin/0311044 Chaotic Dynamics +nlin/0311045 Pattern Formation and Solitons +nlin/0311049 Pattern Formation and Solitons +nlin/0311051 Chaotic Dynamics +nlin/0311052 Chaotic Dynamics +nlin/0311057 Exactly Solvable and Integrable Systems +nlin/0312002 Exactly Solvable and Integrable Systems +nlin/0312004 Exactly Solvable and Integrable Systems +nlin/0312005 Exactly Solvable and Integrable Systems +nlin/0312007 Pattern Formation and Solitons +nlin/0312008 Pattern Formation and Solitons +nlin/0312010 Pattern Formation and Solitons +nlin/0312012 Exactly Solvable and Integrable Systems +nlin/0312013 Exactly Solvable and Integrable Systems +nlin/0312017 Pattern Formation and Solitons +nlin/0312018 Chaotic Dynamics +nlin/0312019 Chaotic Dynamics +nlin/0312021 Chaotic Dynamics +nlin/0312022 Chaotic Dynamics +nlin/0312027 Chaotic Dynamics +nlin/0312028 Chaotic Dynamics +nlin/0312034 Chaotic Dynamics +nlin/0312036 Chaotic Dynamics +nlin/0312039 Chaotic Dynamics +nlin/0312041 Pattern Formation and Solitons +nlin/0312043 Exactly Solvable and Integrable Systems +nlin/0312045 Chaotic Dynamics +nlin/0312046 Chaotic Dynamics +nlin/0312047 Chaotic Dynamics +nlin/0312051 Chaotic Dynamics +nlin/0312052 Exactly Solvable and Integrable Systems +nlin/0312053 Chaotic Dynamics +nlin/0312057 Chaotic Dynamics +nlin/0312058 Pattern Formation and Solitons +nlin/0312062 Chaotic Dynamics +nlin/0312063 Pattern Formation and Solitons +nlin/0312064 Pattern Formation and Solitons +nlin/0312067 Chaotic Dynamics +nlin/0312069 Exactly Solvable and Integrable Systems +nlin/0312070 Adaptation and Self-Organizing Systems +nlin/0312071 Chaotic Dynamics +nlin/0401001 Chaotic Dynamics +nlin/0401002 Chaotic Dynamics +nlin/0401003 Chaotic Dynamics +nlin/0401004 Chaotic Dynamics +nlin/0401006 Chaotic Dynamics +nlin/0401007 Chaotic Dynamics +nlin/0401015 Chaotic Dynamics +nlin/0401016 Chaotic Dynamics +nlin/0401017 Chaotic Dynamics +nlin/0401020 Chaotic Dynamics +nlin/0401023 Chaotic Dynamics +nlin/0401024 Chaotic Dynamics +nlin/0401026 Pattern Formation and Solitons +nlin/0401027 Pattern Formation and Solitons +nlin/0401030 Exactly Solvable and Integrable Systems +nlin/0401031 Pattern Formation and Solitons +nlin/0401036 Chaotic Dynamics +nlin/0401041 Pattern Formation and Solitons +nlin/0401042 Pattern Formation and Solitons +nlin/0402001 Pattern Formation and Solitons +nlin/0402002 Adaptation and Self-Organizing Systems +nlin/0402008 Exactly Solvable and Integrable Systems +nlin/0402009 Chaotic Dynamics +nlin/0402011 Chaotic Dynamics +nlin/0402012 Adaptation and Self-Organizing Systems +nlin/0402014 Exactly Solvable and Integrable Systems +nlin/0402015 Chaotic Dynamics +nlin/0402021 Exactly Solvable and Integrable Systems +nlin/0402022 Chaotic Dynamics +nlin/0402025 Chaotic Dynamics +nlin/0402029 Chaotic Dynamics +nlin/0402031 Chaotic Dynamics +nlin/0402039 Chaotic Dynamics +nlin/0402040 Pattern Formation and Solitons +nlin/0402041 Chaotic Dynamics +nlin/0402054 Chaotic Dynamics +nlin/0402055 Exactly Solvable and Integrable Systems +nlin/0403010 Exactly Solvable and Integrable Systems +nlin/0403011 Exactly Solvable and Integrable Systems +nlin/0403012 Pattern Formation and Solitons +nlin/0403013 Chaotic Dynamics +nlin/0403014 Pattern Formation and Solitons +nlin/0403015 Exactly Solvable and Integrable Systems +nlin/0403017 Chaotic Dynamics +nlin/0403018 Chaotic Dynamics +nlin/0403019 Pattern Formation and Solitons +nlin/0403022 Chaotic Dynamics +nlin/0403023 Exactly Solvable and Integrable Systems +nlin/0403025 Chaotic Dynamics +nlin/0403028 Exactly Solvable and Integrable Systems +nlin/0403031 Pattern Formation and Solitons +nlin/0403033 Chaotic Dynamics +nlin/0403037 Pattern Formation and Solitons +nlin/0403038 Chaotic Dynamics +nlin/0403040 Pattern Formation and Solitons +nlin/0403043 Pattern Formation and Solitons +nlin/0403045 Chaotic Dynamics +nlin/0403046 Exactly Solvable and Integrable Systems +nlin/0403049 Pattern Formation and Solitons +nlin/0403052 Exactly Solvable and Integrable Systems +nlin/0403053 Exactly Solvable and Integrable Systems +nlin/0403057 Exactly Solvable and Integrable Systems +nlin/0403058 Chaotic Dynamics +nlin/0403059 Chaotic Dynamics +nlin/0404006 Chaotic Dynamics +nlin/0404007 Chaotic Dynamics +nlin/0404008 Adaptation and Self-Organizing Systems +nlin/0404013 Exactly Solvable and Integrable Systems +nlin/0404014 Chaotic Dynamics +nlin/0404019 Chaotic Dynamics +nlin/0404022 Exactly Solvable and Integrable Systems +nlin/0404024 Adaptation and Self-Organizing Systems +nlin/0404025 Chaotic Dynamics +nlin/0404026 Exactly Solvable and Integrable Systems +nlin/0404031 Exactly Solvable and Integrable Systems +nlin/0404034 Chaotic Dynamics +nlin/0404043 Chaotic Dynamics +nlin/0404044 Pattern Formation and Solitons +nlin/0404045 Chaotic Dynamics +nlin/0404046 Pattern Formation and Solitons +nlin/0404047 Exactly Solvable and Integrable Systems +nlin/0404048 Chaotic Dynamics +nlin/0404051 Pattern Formation and Solitons +nlin/0404055 Chaotic Dynamics +nlin/0404060 Chaotic Dynamics +nlin/0405001 Chaotic Dynamics +nlin/0405004 Chaotic Dynamics +nlin/0405006 Chaotic Dynamics +nlin/0405007 Exactly Solvable and Integrable Systems +nlin/0405015 Chaotic Dynamics +nlin/0405016 Chaotic Dynamics +nlin/0405017 Pattern Formation and Solitons +nlin/0405021 Exactly Solvable and Integrable Systems +nlin/0405023 Exactly Solvable and Integrable Systems +nlin/0405024 Chaotic Dynamics +nlin/0405026 Chaotic Dynamics +nlin/0405027 Chaotic Dynamics +nlin/0405028 Exactly Solvable and Integrable Systems +nlin/0405030 Chaotic Dynamics +nlin/0405031 Chaotic Dynamics +nlin/0405032 Chaotic Dynamics +nlin/0405036 Pattern Formation and Solitons +nlin/0405039 Pattern Formation and Solitons +nlin/0405042 Exactly Solvable and Integrable Systems +nlin/0405043 Pattern Formation and Solitons +nlin/0405045 Pattern Formation and Solitons +nlin/0405047 Chaotic Dynamics +nlin/0405059 Pattern Formation and Solitons +nlin/0405060 Exactly Solvable and Integrable Systems +nlin/0405062 Chaotic Dynamics +nlin/0405063 Pattern Formation and Solitons +nlin/0405065 Exactly Solvable and Integrable Systems +nlin/0405066 Exactly Solvable and Integrable Systems +nlin/0405067 Exactly Solvable and Integrable Systems +nlin/0405068 Exactly Solvable and Integrable Systems +nlin/0406004 Adaptation and Self-Organizing Systems +nlin/0406005 Chaotic Dynamics +nlin/0406010 Chaotic Dynamics +nlin/0406011 Chaotic Dynamics +nlin/0406012 Pattern Formation and Solitons +nlin/0406013 Pattern Formation and Solitons +nlin/0406015 Chaotic Dynamics +nlin/0406018 Chaotic Dynamics +nlin/0406021 Exactly Solvable and Integrable Systems +nlin/0406022 Chaotic Dynamics +nlin/0406024 Pattern Formation and Solitons +nlin/0406027 Chaotic Dynamics +nlin/0406030 Chaotic Dynamics +nlin/0406032 Exactly Solvable and Integrable Systems +nlin/0406033 Exactly Solvable and Integrable Systems +nlin/0406034 Pattern Formation and Solitons +nlin/0406040 Exactly Solvable and Integrable Systems +nlin/0406041 Pattern Formation and Solitons +nlin/0406042 Chaotic Dynamics +nlin/0406043 Adaptation and Self-Organizing Systems +nlin/0406049 Chaotic Dynamics +nlin/0406051 Chaotic Dynamics +nlin/0406052 Pattern Formation and Solitons +nlin/0406056 Chaotic Dynamics +nlin/0406059 Exactly Solvable and Integrable Systems +nlin/0406060 Adaptation and Self-Organizing Systems +nlin/0406063 Pattern Formation and Solitons +nlin/0406064 Adaptation and Self-Organizing Systems +nlin/0406067 Exactly Solvable and Integrable Systems +nlin/0406068 Chaotic Dynamics +nlin/0407001 Pattern Formation and Solitons +nlin/0407002 Chaotic Dynamics +nlin/0407004 Chaotic Dynamics +nlin/0407010 Adaptation and Self-Organizing Systems +nlin/0407012 Chaotic Dynamics +nlin/0407013 Chaotic Dynamics +nlin/0407014 Chaotic Dynamics +nlin/0407018 Chaotic Dynamics +nlin/0407027 Exactly Solvable and Integrable Systems +nlin/0407029 Chaotic Dynamics +nlin/0407031 Chaotic Dynamics +nlin/0407034 Pattern Formation and Solitons +nlin/0407037 Pattern Formation and Solitons +nlin/0407039 Chaotic Dynamics +nlin/0407040 Adaptation and Self-Organizing Systems +nlin/0407041 Exactly Solvable and Integrable Systems +nlin/0407047 Pattern Formation and Solitons +nlin/0407049 Adaptation and Self-Organizing Systems +nlin/0407050 Exactly Solvable and Integrable Systems +nlin/0407061 Chaotic Dynamics +nlin/0407064 Exactly Solvable and Integrable Systems +nlin/0407065 Exactly Solvable and Integrable Systems +nlin/0407066 Exactly Solvable and Integrable Systems +nlin/0407068 Chaotic Dynamics +nlin/0408002 Exactly Solvable and Integrable Systems +nlin/0408003 Chaotic Dynamics +nlin/0408004 Chaotic Dynamics +nlin/0408008 Chaotic Dynamics +nlin/0408010 Chaotic Dynamics +nlin/0408013 Chaotic Dynamics +nlin/0408016 Chaotic Dynamics +nlin/0408018 Chaotic Dynamics +nlin/0408019 Chaotic Dynamics +nlin/0408020 Exactly Solvable and Integrable Systems +nlin/0408025 Pattern Formation and Solitons +nlin/0408026 Pattern Formation and Solitons +nlin/0408029 Pattern Formation and Solitons +nlin/0408031 Chaotic Dynamics +nlin/0408034 Chaotic Dynamics +nlin/0408036 Chaotic Dynamics +nlin/0408039 Adaptation and Self-Organizing Systems +nlin/0408047 Pattern Formation and Solitons +nlin/0408048 Chaotic Dynamics +nlin/0408049 Chaotic Dynamics +nlin/0408052 Adaptation and Self-Organizing Systems +nlin/0408053 Exactly Solvable and Integrable Systems +nlin/0408055 Pattern Formation and Solitons +nlin/0408057 Chaotic Dynamics +nlin/0409002 Exactly Solvable and Integrable Systems +nlin/0409003 Chaotic Dynamics +nlin/0409009 Pattern Formation and Solitons +nlin/0409010 Pattern Formation and Solitons +nlin/0409011 Chaotic Dynamics +nlin/0409016 Chaotic Dynamics +nlin/0409021 Chaotic Dynamics +nlin/0409022 Chaotic Dynamics +nlin/0409026 Pattern Formation and Solitons +nlin/0409027 Pattern Formation and Solitons +nlin/0409028 Exactly Solvable and Integrable Systems +nlin/0409030 Chaotic Dynamics +nlin/0409031 Exactly Solvable and Integrable Systems +nlin/0409032 Exactly Solvable and Integrable Systems +nlin/0409033 Adaptation and Self-Organizing Systems +nlin/0409039 Chaotic Dynamics +nlin/0409042 Pattern Formation and Solitons +nlin/0409044 Pattern Formation and Solitons +nlin/0409045 Pattern Formation and Solitons +nlin/0409047 Pattern Formation and Solitons +nlin/0409049 Pattern Formation and Solitons +nlin/0409050 Exactly Solvable and Integrable Systems +nlin/0409054 Chaotic Dynamics +nlin/0409060 Pattern Formation and Solitons +nlin/0409061 Exactly Solvable and Integrable Systems +nlin/0409062 Exactly Solvable and Integrable Systems +nlin/0409063 Exactly Solvable and Integrable Systems +nlin/0410001 Pattern Formation and Solitons +nlin/0410007 Chaotic Dynamics +nlin/0410008 Chaotic Dynamics +nlin/0410011 Pattern Formation and Solitons +nlin/0410014 Exactly Solvable and Integrable Systems +nlin/0410017 Pattern Formation and Solitons +nlin/0410021 Exactly Solvable and Integrable Systems +nlin/0410023 Chaotic Dynamics +nlin/0410030 Pattern Formation and Solitons +nlin/0410032 Chaotic Dynamics +nlin/0410033 Pattern Formation and Solitons +nlin/0410035 Chaotic Dynamics +nlin/0410036 Pattern Formation and Solitons +nlin/0410038 Chaotic Dynamics +nlin/0410039 Cellular Automata and Lattice Gases +nlin/0410041 Pattern Formation and Solitons +nlin/0410042 Exactly Solvable and Integrable Systems +nlin/0410044 Pattern Formation and Solitons +nlin/0410045 Pattern Formation and Solitons +nlin/0410047 Pattern Formation and Solitons +nlin/0410048 Chaotic Dynamics +nlin/0410051 Pattern Formation and Solitons +nlin/0410052 Adaptation and Self-Organizing Systems +nlin/0410053 Pattern Formation and Solitons +nlin/0410054 Pattern Formation and Solitons +nlin/0410056 Chaotic Dynamics +nlin/0410057 Exactly Solvable and Integrable Systems +nlin/0410059 Pattern Formation and Solitons +nlin/0410060 Pattern Formation and Solitons +nlin/0410061 Pattern Formation and Solitons +nlin/0410062 Pattern Formation and Solitons +nlin/0410063 Exactly Solvable and Integrable Systems +nlin/0410064 Chaotic Dynamics +nlin/0410065 Exactly Solvable and Integrable Systems +nlin/0410066 Chaotic Dynamics +nlin/0411001 Pattern Formation and Solitons +nlin/0411004 Chaotic Dynamics +nlin/0411005 Pattern Formation and Solitons +nlin/0411011 Adaptation and Self-Organizing Systems +nlin/0411013 Pattern Formation and Solitons +nlin/0411018 Pattern Formation and Solitons +nlin/0411020 Chaotic Dynamics +nlin/0411021 Pattern Formation and Solitons +nlin/0411024 Pattern Formation and Solitons +nlin/0411026 Chaotic Dynamics +nlin/0411029 Pattern Formation and Solitons +nlin/0411030 Chaotic Dynamics +nlin/0411031 Pattern Formation and Solitons +nlin/0411032 Chaotic Dynamics +nlin/0411034 Pattern Formation and Solitons +nlin/0411037 Pattern Formation and Solitons +nlin/0411038 Exactly Solvable and Integrable Systems +nlin/0411040 Chaotic Dynamics +nlin/0411041 Chaotic Dynamics +nlin/0411043 Pattern Formation and Solitons +nlin/0411048 Pattern Formation and Solitons +nlin/0411049 Chaotic Dynamics +nlin/0411050 Pattern Formation and Solitons +nlin/0411053 Exactly Solvable and Integrable Systems +nlin/0411054 Chaotic Dynamics +nlin/0411056 Pattern Formation and Solitons +nlin/0411059 Pattern Formation and Solitons +nlin/0411062 Chaotic Dynamics +nlin/0411064 Chaotic Dynamics +nlin/0412008 Exactly Solvable and Integrable Systems +nlin/0412011 Chaotic Dynamics +nlin/0412012 Chaotic Dynamics +nlin/0412013 Chaotic Dynamics +nlin/0412014 Pattern Formation and Solitons +nlin/0412018 Exactly Solvable and Integrable Systems +nlin/0412021 Pattern Formation and Solitons +nlin/0412024 Chaotic Dynamics +nlin/0412027 Chaotic Dynamics +nlin/0412035 Chaotic Dynamics +nlin/0412036 Exactly Solvable and Integrable Systems +nlin/0412037 Chaotic Dynamics +nlin/0412038 Chaotic Dynamics +nlin/0412041 Exactly Solvable and Integrable Systems +nlin/0412042 Chaotic Dynamics +nlin/0412046 Chaotic Dynamics +nlin/0412048 Pattern Formation and Solitons +nlin/0412051 Exactly Solvable and Integrable Systems +nlin/0412052 Pattern Formation and Solitons +nlin/0412053 Chaotic Dynamics +nlin/0412061 Pattern Formation and Solitons +nlin/0412062 Pattern Formation and Solitons +nlin/0412063 Chaotic Dynamics +nlin/0412066 Exactly Solvable and Integrable Systems +nlin/0412067 Exactly Solvable and Integrable Systems +nlin/0412069 Chaotic Dynamics +nlin/0412070 Exactly Solvable and Integrable Systems +nlin/0412071 Exactly Solvable and Integrable Systems +nlin/0412072 Exactly Solvable and Integrable Systems +nucl-ex/0301003 +nucl-ex/0301004 +nucl-ex/0301007 +nucl-ex/0301013 +nucl-ex/0301019 +nucl-ex/0302003 +nucl-ex/0302004 +nucl-ex/0302011 +nucl-ex/0302012 +nucl-ex/0302023 +nucl-ex/0302024 +nucl-ex/0302025 +nucl-ex/0302026 +nucl-ex/0302029 +nucl-ex/0302030 +nucl-ex/0303006 +nucl-ex/0303009 +nucl-ex/0303010 +nucl-ex/0303012 +nucl-ex/0303015 +nucl-ex/0303016 +nucl-ex/0304002 +nucl-ex/0304003 +nucl-ex/0304006 +nucl-ex/0304009 +nucl-ex/0304010 +nucl-ex/0304012 +nucl-ex/0304016 +nucl-ex/0304020 +nucl-ex/0305001 +nucl-ex/0305004 +nucl-ex/0305007 +nucl-ex/0305008 +nucl-ex/0305016 +nucl-ex/0305018 +nucl-ex/0305019 +nucl-ex/0305021 +nucl-ex/0305027 +nucl-ex/0305032 +nucl-ex/0305033 +nucl-ex/0306002 +nucl-ex/0306003 +nucl-ex/0306006 +nucl-ex/0306008 +nucl-ex/0306009 +nucl-ex/0306010 +nucl-ex/0306012 +nucl-ex/0306015 +nucl-ex/0306018 +nucl-ex/0306020 +nucl-ex/0306022 +nucl-ex/0306030 +nucl-ex/0306034 +nucl-ex/0307009 +nucl-ex/0307013 +nucl-ex/0307018 +nucl-ex/0307019 +nucl-ex/0307020 +nucl-ex/0307026 +nucl-ex/0308001 +nucl-ex/0308004 +nucl-ex/0308008 +nucl-ex/0308010 +nucl-ex/0308012 +nucl-ex/0308019 +nucl-ex/0308020 +nucl-ex/0308022 +nucl-ex/0308024 +nucl-ex/0308029 +nucl-ex/0309005 +nucl-ex/0309011 +nucl-ex/0309016 +nucl-ex/0309020 +nucl-ex/0309022 +nucl-ex/0310006 +nucl-ex/0310011 +nucl-ex/0310012 +nucl-ex/0310017 +nucl-ex/0310023 +nucl-ex/0310027 +nucl-ex/0310030 +nucl-ex/0310033 +nucl-ex/0311001 +nucl-ex/0311007 +nucl-ex/0311012 +nucl-ex/0311019 +nucl-ex/0311020 +nucl-ex/0312002 +nucl-ex/0312004 +nucl-ex/0312011 +nucl-ex/0401004 +nucl-ex/0401010 +nucl-ex/0401013 +nucl-ex/0401016 +nucl-ex/0401018 +nucl-ex/0401024 +nucl-ex/0401029 +nucl-ex/0401031 +nucl-ex/0401036 +nucl-ex/0401041 +nucl-ex/0402002 +nucl-ex/0402011 +nucl-ex/0402012 +nucl-ex/0402013 +nucl-ex/0402015 +nucl-ex/0402017 +nucl-ex/0402019 +nucl-ex/0402021 +nucl-ex/0402022 +nucl-ex/0402023 +nucl-ex/0403004 +nucl-ex/0403016 +nucl-ex/0403018 +nucl-ex/0403019 +nucl-ex/0403023 +nucl-ex/0403024 +nucl-ex/0403026 +nucl-ex/0403027 +nucl-ex/0403028 +nucl-ex/0403029 +nucl-ex/0403030 +nucl-ex/0403031 +nucl-ex/0403032 +nucl-ex/0403034 +nucl-ex/0403035 +nucl-ex/0403037 +nucl-ex/0403039 +nucl-ex/0403042 +nucl-ex/0403044 +nucl-ex/0403046 +nucl-ex/0403047 +nucl-ex/0403049 +nucl-ex/0403050 +nucl-ex/0403052 +nucl-ex/0403053 +nucl-ex/0403054 +nucl-ex/0403057 +nucl-ex/0403059 +nucl-ex/0404002 +nucl-ex/0404004 +nucl-ex/0404005 +nucl-ex/0404006 +nucl-ex/0404009 +nucl-ex/0404011 +nucl-ex/0404014 +nucl-ex/0404015 +nucl-ex/0404016 +nucl-ex/0404019 +nucl-ex/0404022 +nucl-ex/0404026 +nucl-ex/0404029 +nucl-ex/0404031 +nucl-ex/0404032 +nucl-ex/0404033 +nucl-ex/0404034 +nucl-ex/0404038 +nucl-ex/0404039 +nucl-ex/0405001 +nucl-ex/0405002 +nucl-ex/0405004 +nucl-ex/0405007 +nucl-ex/0405010 +nucl-ex/0405011 +nucl-ex/0405016 +nucl-ex/0405022 +nucl-ex/0405024 +nucl-ex/0405031 +nucl-ex/0405032 +nucl-ex/0405033 +nucl-ex/0405035 +nucl-ex/0406001 +nucl-ex/0406008 +nucl-ex/0406009 +nucl-ex/0406010 +nucl-ex/0406011 +nucl-ex/0406014 +nucl-ex/0406015 +nucl-ex/0406016 +nucl-ex/0406020 +nucl-ex/0406024 +nucl-ex/0406025 +nucl-ex/0406027 +nucl-ex/0406028 +nucl-ex/0406032 +nucl-ex/0407005 +nucl-ex/0407009 +nucl-ex/0407011 +nucl-ex/0407014 +nucl-ex/0407015 +nucl-ex/0407016 +nucl-ex/0407018 +nucl-ex/0408001 +nucl-ex/0408002 +nucl-ex/0408003 +nucl-ex/0408010 +nucl-ex/0408018 +nucl-ex/0408022 +nucl-ex/0409002 +nucl-ex/0409010 +nucl-ex/0409017 +nucl-ex/0409020 +nucl-ex/0409024 +nucl-ex/0409025 +nucl-ex/0409029 +nucl-ex/0409032 +nucl-ex/0410006 +nucl-ex/0410007 +nucl-ex/0410011 +nucl-ex/0410013 +nucl-ex/0410014 +nucl-ex/0410017 +nucl-ex/0410021 +nucl-ex/0410029 +nucl-ex/0410031 +nucl-ex/0410033 +nucl-ex/0410034 +nucl-ex/0410036 +nucl-ex/0410038 +nucl-ex/0410039 +nucl-ex/0410044 +nucl-ex/0411001 +nucl-ex/0411004 +nucl-ex/0411007 +nucl-ex/0411008 +nucl-ex/0411010 +nucl-ex/0411011 +nucl-ex/0411012 +nucl-ex/0411014 +nucl-ex/0411015 +nucl-ex/0411018 +nucl-ex/0411023 +nucl-ex/0411025 +nucl-ex/0411029 +nucl-ex/0411030 +nucl-ex/0411031 +nucl-ex/0411033 +nucl-ex/0411035 +nucl-ex/0411039 +nucl-ex/0411043 +nucl-ex/0411053 +nucl-ex/0411055 +nucl-ex/0412001 +nucl-ex/0412003 +nucl-ex/0412004 +nucl-ex/0412005 +nucl-ex/0412008 +nucl-ex/0412009 +nucl-ex/0412013 +nucl-ex/0412014 +nucl-ex/0412015 +nucl-ex/0412016 +nucl-ex/0412021 +nucl-ex/0412022 +nucl-ex/0412023 +nucl-ex/0412026 +nucl-ex/0412028 +nucl-ex/0412029 +nucl-ex/0412031 +nucl-ex/0412032 +nucl-ex/0412039 +nucl-ex/0412041 +nucl-ex/0412043 +nucl-ex/0412047 +nucl-ex/0412048 +nucl-ex/0412050 +nucl-ex/0412052 +nucl-th/0301002 +nucl-th/0301004 +nucl-th/0301007 +nucl-th/0301008 +nucl-th/0301012 +nucl-th/0301015 +nucl-th/0301017 +nucl-th/0301018 +nucl-th/0301019 +nucl-th/0301022 +nucl-th/0301025 +nucl-th/0301026 +nucl-th/0301029 +nucl-th/0301030 +nucl-th/0301033 +nucl-th/0301034 +nucl-th/0301038 +nucl-th/0301039 +nucl-th/0301040 +nucl-th/0301042 +nucl-th/0301043 +nucl-th/0301044 +nucl-th/0301045 +nucl-th/0301047 +nucl-th/0301048 +nucl-th/0301050 +nucl-th/0301051 +nucl-th/0301053 +nucl-th/0301056 +nucl-th/0301057 +nucl-th/0301058 +nucl-th/0301059 +nucl-th/0301061 +nucl-th/0301063 +nucl-th/0301064 +nucl-th/0301067 +nucl-th/0301070 +nucl-th/0301072 +nucl-th/0301073 +nucl-th/0301075 +nucl-th/0301080 +nucl-th/0301083 +nucl-th/0301084 +nucl-th/0301085 +nucl-th/0301086 +nucl-th/0301088 +nucl-th/0301089 +nucl-th/0301090 +nucl-th/0301091 +nucl-th/0301092 +nucl-th/0301096 +nucl-th/0301098 +nucl-th/0301099 +nucl-th/0301101 +nucl-th/0301103 +nucl-th/0302001 +nucl-th/0302008 +nucl-th/0302012 +nucl-th/0302013 +nucl-th/0302014 +nucl-th/0302017 +nucl-th/0302018 +nucl-th/0302021 +nucl-th/0302022 +nucl-th/0302023 +nucl-th/0302024 +nucl-th/0302025 +nucl-th/0302028 +nucl-th/0302029 +nucl-th/0302031 +nucl-th/0302032 +nucl-th/0302034 +nucl-th/0302035 +nucl-th/0302037 +nucl-th/0302038 +nucl-th/0302040 +nucl-th/0302041 +nucl-th/0302042 +nucl-th/0302044 +nucl-th/0302047 +nucl-th/0302048 +nucl-th/0302050 +nucl-th/0302054 +nucl-th/0302055 +nucl-th/0302058 +nucl-th/0302059 +nucl-th/0302060 +nucl-th/0302061 +nucl-th/0302063 +nucl-th/0302065 +nucl-th/0302068 +nucl-th/0302071 +nucl-th/0302072 +nucl-th/0302073 +nucl-th/0302074 +nucl-th/0302076 +nucl-th/0302080 +nucl-th/0302082 +nucl-th/0302083 +nucl-th/0303002 +nucl-th/0303003 +nucl-th/0303004 +nucl-th/0303006 +nucl-th/0303010 +nucl-th/0303011 +nucl-th/0303013 +nucl-th/0303014 +nucl-th/0303015 +nucl-th/0303016 +nucl-th/0303018 +nucl-th/0303019 +nucl-th/0303022 +nucl-th/0303024 +nucl-th/0303025 +nucl-th/0303027 +nucl-th/0303028 +nucl-th/0303029 +nucl-th/0303031 +nucl-th/0303032 +nucl-th/0303034 +nucl-th/0303035 +nucl-th/0303037 +nucl-th/0303038 +nucl-th/0303040 +nucl-th/0303042 +nucl-th/0303043 +nucl-th/0303047 +nucl-th/0303049 +nucl-th/0303050 +nucl-th/0303054 +nucl-th/0303055 +nucl-th/0303060 +nucl-th/0303061 +nucl-th/0303062 +nucl-th/0303063 +nucl-th/0303064 +nucl-th/0303066 +nucl-th/0303073 +nucl-th/0304004 +nucl-th/0304005 +nucl-th/0304006 +nucl-th/0304007 +nucl-th/0304009 +nucl-th/0304010 +nucl-th/0304011 +nucl-th/0304014 +nucl-th/0304017 +nucl-th/0304018 +nucl-th/0304019 +nucl-th/0304021 +nucl-th/0304022 +nucl-th/0304023 +nucl-th/0304024 +nucl-th/0304026 +nucl-th/0304028 +nucl-th/0304030 +nucl-th/0304032 +nucl-th/0304034 +nucl-th/0304035 +nucl-th/0304036 +nucl-th/0304038 +nucl-th/0304039 +nucl-th/0304040 +nucl-th/0304042 +nucl-th/0304043 +nucl-th/0304045 +nucl-th/0304046 +nucl-th/0304048 +nucl-th/0304049 +nucl-th/0304051 +nucl-th/0304053 +nucl-th/0304054 +nucl-th/0304055 +nucl-th/0304056 +nucl-th/0304066 +nucl-th/0304067 +nucl-th/0304068 +nucl-th/0304069 +nucl-th/0304070 +nucl-th/0304071 +nucl-th/0304073 +nucl-th/0304074 +nucl-th/0304075 +nucl-th/0304076 +nucl-th/0304077 +nucl-th/0304081 +nucl-th/0304084 +nucl-th/0304086 +nucl-th/0305001 +nucl-th/0305002 +nucl-th/0305006 +nucl-th/0305007 +nucl-th/0305009 +nucl-th/0305014 +nucl-th/0305017 +nucl-th/0305018 +nucl-th/0305020 +nucl-th/0305021 +nucl-th/0305022 +nucl-th/0305024 +nucl-th/0305027 +nucl-th/0305028 +nucl-th/0305034 +nucl-th/0305036 +nucl-th/0305043 +nucl-th/0305044 +nucl-th/0305045 +nucl-th/0305046 +nucl-th/0305049 +nucl-th/0305050 +nucl-th/0305053 +nucl-th/0305055 +nucl-th/0305056 +nucl-th/0305060 +nucl-th/0305061 +nucl-th/0305065 +nucl-th/0305067 +nucl-th/0305070 +nucl-th/0305071 +nucl-th/0305072 +nucl-th/0305073 +nucl-th/0305077 +nucl-th/0305079 +nucl-th/0305080 +nucl-th/0305086 +nucl-th/0305087 +nucl-th/0305088 +nucl-th/0305089 +nucl-th/0305090 +nucl-th/0305092 +nucl-th/0305093 +nucl-th/0305094 +nucl-th/0305095 +nucl-th/0305096 +nucl-th/0305097 +nucl-th/0305098 +nucl-th/0305099 +nucl-th/0306003 +nucl-th/0306004 +nucl-th/0306005 +nucl-th/0306006 +nucl-th/0306009 +nucl-th/0306013 +nucl-th/0306014 +nucl-th/0306015 +nucl-th/0306024 +nucl-th/0306026 +nucl-th/0306030 +nucl-th/0306031 +nucl-th/0306033 +nucl-th/0306034 +nucl-th/0306038 +nucl-th/0306039 +nucl-th/0306044 +nucl-th/0306045 +nucl-th/0306046 +nucl-th/0306048 +nucl-th/0306049 +nucl-th/0306051 +nucl-th/0306053 +nucl-th/0306055 +nucl-th/0306058 +nucl-th/0306061 +nucl-th/0306064 +nucl-th/0306071 +nucl-th/0306073 +nucl-th/0306077 +nucl-th/0306079 +nucl-th/0306080 +nucl-th/0306081 +nucl-th/0306083 +nucl-th/0306084 +nucl-th/0306088 +nucl-th/0307003 +nucl-th/0307004 +nucl-th/0307006 +nucl-th/0307009 +nucl-th/0307010 +nucl-th/0307011 +nucl-th/0307013 +nucl-th/0307015 +nucl-th/0307016 +nucl-th/0307019 +nucl-th/0307021 +nucl-th/0307026 +nucl-th/0307027 +nucl-th/0307029 +nucl-th/0307030 +nucl-th/0307032 +nucl-th/0307033 +nucl-th/0307040 +nucl-th/0307044 +nucl-th/0307050 +nucl-th/0307051 +nucl-th/0307052 +nucl-th/0307054 +nucl-th/0307057 +nucl-th/0307058 +nucl-th/0307059 +nucl-th/0307064 +nucl-th/0307066 +nucl-th/0307067 +nucl-th/0307069 +nucl-th/0307070 +nucl-th/0307071 +nucl-th/0307072 +nucl-th/0307073 +nucl-th/0307074 +nucl-th/0307075 +nucl-th/0307087 +nucl-th/0307089 +nucl-th/0307092 +nucl-th/0307093 +nucl-th/0307094 +nucl-th/0307095 +nucl-th/0307096 +nucl-th/0307098 +nucl-th/0307103 +nucl-th/0307104 +nucl-th/0307106 +nucl-th/0307110 +nucl-th/0307112 +nucl-th/0307113 +nucl-th/0307116 +nucl-th/0308005 +nucl-th/0308006 +nucl-th/0308007 +nucl-th/0308014 +nucl-th/0308015 +nucl-th/0308017 +nucl-th/0308019 +nucl-th/0308020 +nucl-th/0308021 +nucl-th/0308023 +nucl-th/0308026 +nucl-th/0308028 +nucl-th/0308033 +nucl-th/0308034 +nucl-th/0308036 +nucl-th/0308037 +nucl-th/0308038 +nucl-th/0308040 +nucl-th/0308041 +nucl-th/0308042 +nucl-th/0308045 +nucl-th/0308046 +nucl-th/0308052 +nucl-th/0308054 +nucl-th/0308057 +nucl-th/0308059 +nucl-th/0308060 +nucl-th/0308064 +nucl-th/0308066 +nucl-th/0308067 +nucl-th/0308071 +nucl-th/0308074 +nucl-th/0308075 +nucl-th/0308080 +nucl-th/0308082 +nucl-th/0308085 +nucl-th/0308087 +nucl-th/0308088 +nucl-th/0309004 +nucl-th/0309005 +nucl-th/0309006 +nucl-th/0309007 +nucl-th/0309010 +nucl-th/0309016 +nucl-th/0309017 +nucl-th/0309023 +nucl-th/0309027 +nucl-th/0309028 +nucl-th/0309032 +nucl-th/0309037 +nucl-th/0309041 +nucl-th/0309042 +nucl-th/0309045 +nucl-th/0309046 +nucl-th/0309048 +nucl-th/0309051 +nucl-th/0309054 +nucl-th/0309056 +nucl-th/0309057 +nucl-th/0309059 +nucl-th/0309060 +nucl-th/0309061 +nucl-th/0309062 +nucl-th/0309063 +nucl-th/0309064 +nucl-th/0309065 +nucl-th/0309066 +nucl-th/0309072 +nucl-th/0309074 +nucl-th/0309081 +nucl-th/0309082 +nucl-th/0309083 +nucl-th/0309084 +nucl-th/0309085 +nucl-th/0310001 +nucl-th/0310005 +nucl-th/0310006 +nucl-th/0310008 +nucl-th/0310009 +nucl-th/0310011 +nucl-th/0310012 +nucl-th/0310015 +nucl-th/0310016 +nucl-th/0310017 +nucl-th/0310019 +nucl-th/0310020 +nucl-th/0310023 +nucl-th/0310024 +nucl-th/0310028 +nucl-th/0310030 +nucl-th/0310033 +nucl-th/0310034 +nucl-th/0310035 +nucl-th/0310036 +nucl-th/0310037 +nucl-th/0310039 +nucl-th/0310040 +nucl-th/0310042 +nucl-th/0310045 +nucl-th/0310050 +nucl-th/0310051 +nucl-th/0310053 +nucl-th/0310055 +nucl-th/0310058 +nucl-th/0310061 +nucl-th/0310063 +nucl-th/0310064 +nucl-th/0310065 +nucl-th/0310066 +nucl-th/0310071 +nucl-th/0310074 +nucl-th/0310075 +nucl-th/0310077 +nucl-th/0310078 +nucl-th/0310079 +nucl-th/0310080 +nucl-th/0310082 +nucl-th/0310084 +nucl-th/0310088 +nucl-th/0310090 +nucl-th/0311001 +nucl-th/0311002 +nucl-th/0311003 +nucl-th/0311004 +nucl-th/0311006 +nucl-th/0311007 +nucl-th/0311008 +nucl-th/0311009 +nucl-th/0311012 +nucl-th/0311016 +nucl-th/0311017 +nucl-th/0311018 +nucl-th/0311020 +nucl-th/0311025 +nucl-th/0311026 +nucl-th/0311028 +nucl-th/0311029 +nucl-th/0311030 +nucl-th/0311031 +nucl-th/0311034 +nucl-th/0311035 +nucl-th/0311036 +nucl-th/0311038 +nucl-th/0311039 +nucl-th/0311040 +nucl-th/0311043 +nucl-th/0311049 +nucl-th/0311053 +nucl-th/0311054 +nucl-th/0311057 +nucl-th/0311061 +nucl-th/0311062 +nucl-th/0311063 +nucl-th/0311065 +nucl-th/0311067 +nucl-th/0311068 +nucl-th/0311069 +nucl-th/0311070 +nucl-th/0311071 +nucl-th/0311072 +nucl-th/0311074 +nucl-th/0311075 +nucl-th/0311076 +nucl-th/0311081 +nucl-th/0311082 +nucl-th/0311086 +nucl-th/0311088 +nucl-th/0311090 +nucl-th/0311092 +nucl-th/0311093 +nucl-th/0311096 +nucl-th/0311097 +nucl-th/0311098 +nucl-th/0311101 +nucl-th/0311103 +nucl-th/0311104 +nucl-th/0311105 +nucl-th/0311107 +nucl-th/0312001 +nucl-th/0312004 +nucl-th/0312006 +nucl-th/0312008 +nucl-th/0312009 +nucl-th/0312013 +nucl-th/0312015 +nucl-th/0312017 +nucl-th/0312018 +nucl-th/0312019 +nucl-th/0312020 +nucl-th/0312021 +nucl-th/0312024 +nucl-th/0312025 +nucl-th/0312029 +nucl-th/0312030 +nucl-th/0312031 +nucl-th/0312032 +nucl-th/0312034 +nucl-th/0312036 +nucl-th/0312039 +nucl-th/0312040 +nucl-th/0312042 +nucl-th/0312047 +nucl-th/0312050 +nucl-th/0312051 +nucl-th/0312056 +nucl-th/0312057 +nucl-th/0312058 +nucl-th/0312059 +nucl-th/0312060 +nucl-th/0312061 +nucl-th/0312062 +nucl-th/0312065 +nucl-th/0312068 +nucl-th/0312070 +nucl-th/0312071 +nucl-th/0312076 +nucl-th/0312078 +nucl-th/0312079 +nucl-th/0312082 +nucl-th/0312083 +nucl-th/0312085 +nucl-th/0312086 +nucl-th/0312088 +nucl-th/0312090 +nucl-th/0312092 +nucl-th/0312095 +nucl-th/0312098 +nucl-th/0312100 +nucl-th/0312101 +nucl-th/0312103 +nucl-th/0312104 +nucl-th/0312105 +nucl-th/0312106 +nucl-th/0312109 +nucl-th/0312110 +nucl-th/0312112 +nucl-th/0312116 +nucl-th/0312118 +nucl-th/0312119 +nucl-th/0312121 +nucl-th/0312122 +nucl-th/0312124 +nucl-th/0312127 +nucl-th/0312128 +nucl-th/0312129 +nucl-th/0312130 +nucl-th/0401001 +nucl-th/0401002 +nucl-th/0401003 +nucl-th/0401005 +nucl-th/0401006 +nucl-th/0401007 +nucl-th/0401008 +nucl-th/0401009 +nucl-th/0401012 +nucl-th/0401014 +nucl-th/0401015 +nucl-th/0401018 +nucl-th/0401019 +nucl-th/0401020 +nucl-th/0401022 +nucl-th/0401024 +nucl-th/0401026 +nucl-th/0401027 +nucl-th/0401028 +nucl-th/0401030 +nucl-th/0401033 +nucl-th/0401037 +nucl-th/0401039 +nucl-th/0401040 +nucl-th/0401041 +nucl-th/0401042 +nucl-th/0401044 +nucl-th/0401045 +nucl-th/0401046 +nucl-th/0401047 +nucl-th/0401048 +nucl-th/0401050 +nucl-th/0401052 +nucl-th/0401054 +nucl-th/0401056 +nucl-th/0401057 +nucl-th/0401058 +nucl-th/0401059 +nucl-th/0401060 +nucl-th/0401061 +nucl-th/0401062 +nucl-th/0401063 +nucl-th/0402001 +nucl-th/0402005 +nucl-th/0402006 +nucl-th/0402007 +nucl-th/0402008 +nucl-th/0402011 +nucl-th/0402013 +nucl-th/0402016 +nucl-th/0402017 +nucl-th/0402020 +nucl-th/0402021 +nucl-th/0402023 +nucl-th/0402024 +nucl-th/0402025 +nucl-th/0402028 +nucl-th/0402029 +nucl-th/0402030 +nucl-th/0402031 +nucl-th/0402032 +nucl-th/0402034 +nucl-th/0402042 +nucl-th/0402043 +nucl-th/0402045 +nucl-th/0402048 +nucl-th/0402049 +nucl-th/0402050 +nucl-th/0402051 +nucl-th/0402054 +nucl-th/0402057 +nucl-th/0402059 +nucl-th/0402060 +nucl-th/0402061 +nucl-th/0402063 +nucl-th/0402065 +nucl-th/0402066 +nucl-th/0402067 +nucl-th/0402068 +nucl-th/0402069 +nucl-th/0402070 +nucl-th/0402071 +nucl-th/0402072 +nucl-th/0402073 +nucl-th/0402074 +nucl-th/0402075 +nucl-th/0402076 +nucl-th/0402077 +nucl-th/0402079 +nucl-th/0402081 +nucl-th/0402085 +nucl-th/0402087 +nucl-th/0402088 +nucl-th/0402090 +nucl-th/0402091 +nucl-th/0402093 +nucl-th/0402096 +nucl-th/0402098 +nucl-th/0402104 +nucl-th/0403003 +nucl-th/0403005 +nucl-th/0403006 +nucl-th/0403008 +nucl-th/0403009 +nucl-th/0403013 +nucl-th/0403014 +nucl-th/0403015 +nucl-th/0403016 +nucl-th/0403019 +nucl-th/0403020 +nucl-th/0403021 +nucl-th/0403024 +nucl-th/0403025 +nucl-th/0403026 +nucl-th/0403027 +nucl-th/0403028 +nucl-th/0403030 +nucl-th/0403034 +nucl-th/0403035 +nucl-th/0403036 +nucl-th/0403037 +nucl-th/0403038 +nucl-th/0403039 +nucl-th/0403046 +nucl-th/0403049 +nucl-th/0403050 +nucl-th/0403052 +nucl-th/0403054 +nucl-th/0403057 +nucl-th/0403058 +nucl-th/0403066 +nucl-th/0403067 +nucl-th/0403068 +nucl-th/0403069 +nucl-th/0403071 +nucl-th/0403076 +nucl-th/0403078 +nucl-th/0403079 +nucl-th/0403080 +nucl-th/0403082 +nucl-th/0403086 +nucl-th/0403089 +nucl-th/0404002 +nucl-th/0404003 +nucl-th/0404007 +nucl-th/0404010 +nucl-th/0404014 +nucl-th/0404015 +nucl-th/0404016 +nucl-th/0404017 +nucl-th/0404019 +nucl-th/0404021 +nucl-th/0404024 +nucl-th/0404026 +nucl-th/0404028 +nucl-th/0404029 +nucl-th/0404032 +nucl-th/0404035 +nucl-th/0404036 +nucl-th/0404038 +nucl-th/0404042 +nucl-th/0404044 +nucl-th/0404045 +nucl-th/0404047 +nucl-th/0404048 +nucl-th/0404050 +nucl-th/0404054 +nucl-th/0404056 +nucl-th/0404057 +nucl-th/0404058 +nucl-th/0404061 +nucl-th/0404062 +nucl-th/0404064 +nucl-th/0404065 +nucl-th/0404066 +nucl-th/0404069 +nucl-th/0404070 +nucl-th/0404071 +nucl-th/0404073 +nucl-th/0404074 +nucl-th/0404076 +nucl-th/0404077 +nucl-th/0404078 +nucl-th/0404081 +nucl-th/0404089 +nucl-th/0404092 +nucl-th/0404093 +nucl-th/0405002 +nucl-th/0405003 +nucl-th/0405004 +nucl-th/0405005 +nucl-th/0405007 +nucl-th/0405008 +nucl-th/0405010 +nucl-th/0405012 +nucl-th/0405014 +nucl-th/0405015 +nucl-th/0405016 +nucl-th/0405017 +nucl-th/0405018 +nucl-th/0405019 +nucl-th/0405020 +nucl-th/0405022 +nucl-th/0405025 +nucl-th/0405027 +nucl-th/0405028 +nucl-th/0405029 +nucl-th/0405031 +nucl-th/0405032 +nucl-th/0405033 +nucl-th/0405034 +nucl-th/0405035 +nucl-th/0405039 +nucl-th/0405040 +nucl-th/0405041 +nucl-th/0405043 +nucl-th/0405044 +nucl-th/0405045 +nucl-th/0405047 +nucl-th/0405050 +nucl-th/0405052 +nucl-th/0405053 +nucl-th/0405054 +nucl-th/0405055 +nucl-th/0405056 +nucl-th/0405059 +nucl-th/0405062 +nucl-th/0405065 +nucl-th/0405066 +nucl-th/0405070 +nucl-th/0405072 +nucl-th/0405073 +nucl-th/0405074 +nucl-th/0405075 +nucl-th/0405077 +nucl-th/0405078 +nucl-th/0405080 +nucl-th/0405082 +nucl-th/0405083 +nucl-th/0406002 +nucl-th/0406003 +nucl-th/0406006 +nucl-th/0406008 +nucl-th/0406009 +nucl-th/0406010 +nucl-th/0406011 +nucl-th/0406013 +nucl-th/0406014 +nucl-th/0406015 +nucl-th/0406016 +nucl-th/0406020 +nucl-th/0406021 +nucl-th/0406022 +nucl-th/0406027 +nucl-th/0406034 +nucl-th/0406037 +nucl-th/0406038 +nucl-th/0406042 +nucl-th/0406043 +nucl-th/0406044 +nucl-th/0406048 +nucl-th/0406049 +nucl-th/0406056 +nucl-th/0406059 +nucl-th/0406060 +nucl-th/0406062 +nucl-th/0406063 +nucl-th/0406066 +nucl-th/0406070 +nucl-th/0406071 +nucl-th/0406075 +nucl-th/0406076 +nucl-th/0406078 +nucl-th/0406079 +nucl-th/0406080 +nucl-th/0407001 +nucl-th/0407002 +nucl-th/0407003 +nucl-th/0407004 +nucl-th/0407006 +nucl-th/0407009 +nucl-th/0407011 +nucl-th/0407012 +nucl-th/0407013 +nucl-th/0407022 +nucl-th/0407026 +nucl-th/0407029 +nucl-th/0407030 +nucl-th/0407031 +nucl-th/0407034 +nucl-th/0407036 +nucl-th/0407038 +nucl-th/0407039 +nucl-th/0407040 +nucl-th/0407048 +nucl-th/0407049 +nucl-th/0407051 +nucl-th/0407054 +nucl-th/0407056 +nucl-th/0407058 +nucl-th/0407061 +nucl-th/0407062 +nucl-th/0407063 +nucl-th/0407064 +nucl-th/0407065 +nucl-th/0407070 +nucl-th/0407071 +nucl-th/0407073 +nucl-th/0407075 +nucl-th/0407076 +nucl-th/0407081 +nucl-th/0407082 +nucl-th/0407083 +nucl-th/0407085 +nucl-th/0407088 +nucl-th/0407089 +nucl-th/0407091 +nucl-th/0407092 +nucl-th/0407094 +nucl-th/0407098 +nucl-th/0407099 +nucl-th/0407100 +nucl-th/0407101 +nucl-th/0407103 +nucl-th/0407104 +nucl-th/0407105 +nucl-th/0407106 +nucl-th/0407107 +nucl-th/0407109 +nucl-th/0407110 +nucl-th/0407116 +nucl-th/0408001 +nucl-th/0408003 +nucl-th/0408004 +nucl-th/0408006 +nucl-th/0408007 +nucl-th/0408011 +nucl-th/0408012 +nucl-th/0408016 +nucl-th/0408017 +nucl-th/0408018 +nucl-th/0408019 +nucl-th/0408020 +nucl-th/0408021 +nucl-th/0408023 +nucl-th/0408024 +nucl-th/0408025 +nucl-th/0408026 +nucl-th/0408032 +nucl-th/0408035 +nucl-th/0408036 +nucl-th/0408037 +nucl-th/0408039 +nucl-th/0408041 +nucl-th/0408042 +nucl-th/0408043 +nucl-th/0408045 +nucl-th/0408046 +nucl-th/0408048 +nucl-th/0408049 +nucl-th/0408050 +nucl-th/0408051 +nucl-th/0408052 +nucl-th/0408055 +nucl-th/0408057 +nucl-th/0408058 +nucl-th/0408062 +nucl-th/0408064 +nucl-th/0408065 +nucl-th/0408068 +nucl-th/0408069 +nucl-th/0408070 +nucl-th/0408071 +nucl-th/0408072 +nucl-th/0409001 +nucl-th/0409003 +nucl-th/0409004 +nucl-th/0409006 +nucl-th/0409007 +nucl-th/0409011 +nucl-th/0409013 +nucl-th/0409014 +nucl-th/0409018 +nucl-th/0409019 +nucl-th/0409022 +nucl-th/0409027 +nucl-th/0409030 +nucl-th/0409031 +nucl-th/0409033 +nucl-th/0409035 +nucl-th/0409036 +nucl-th/0409039 +nucl-th/0409041 +nucl-th/0409043 +nucl-th/0409047 +nucl-th/0409048 +nucl-th/0409049 +nucl-th/0409050 +nucl-th/0409053 +nucl-th/0409054 +nucl-th/0409055 +nucl-th/0409056 +nucl-th/0409057 +nucl-th/0409058 +nucl-th/0409059 +nucl-th/0409060 +nucl-th/0409061 +nucl-th/0409062 +nucl-th/0409063 +nucl-th/0409064 +nucl-th/0409066 +nucl-th/0409067 +nucl-th/0409076 +nucl-th/0409079 +nucl-th/0409080 +nucl-th/0410001 +nucl-th/0410002 +nucl-th/0410004 +nucl-th/0410005 +nucl-th/0410008 +nucl-th/0410016 +nucl-th/0410019 +nucl-th/0410021 +nucl-th/0410022 +nucl-th/0410023 +nucl-th/0410024 +nucl-th/0410027 +nucl-th/0410031 +nucl-th/0410032 +nucl-th/0410033 +nucl-th/0410034 +nucl-th/0410036 +nucl-th/0410037 +nucl-th/0410040 +nucl-th/0410041 +nucl-th/0410042 +nucl-th/0410043 +nucl-th/0410044 +nucl-th/0410045 +nucl-th/0410046 +nucl-th/0410047 +nucl-th/0410049 +nucl-th/0410050 +nucl-th/0410051 +nucl-th/0410052 +nucl-th/0410054 +nucl-th/0410057 +nucl-th/0410060 +nucl-th/0410061 +nucl-th/0410063 +nucl-th/0410064 +nucl-th/0410065 +nucl-th/0410069 +nucl-th/0410072 +nucl-th/0410073 +nucl-th/0410074 +nucl-th/0410078 +nucl-th/0410084 +nucl-th/0410085 +nucl-th/0410095 +nucl-th/0410096 +nucl-th/0410097 +nucl-th/0410098 +nucl-th/0410102 +nucl-th/0410103 +nucl-th/0410108 +nucl-th/0410111 +nucl-th/0410112 +nucl-th/0410115 +nucl-th/0411002 +nucl-th/0411006 +nucl-th/0411012 +nucl-th/0411017 +nucl-th/0411018 +nucl-th/0411019 +nucl-th/0411023 +nucl-th/0411025 +nucl-th/0411027 +nucl-th/0411028 +nucl-th/0411029 +nucl-th/0411030 +nucl-th/0411031 +nucl-th/0411032 +nucl-th/0411034 +nucl-th/0411037 +nucl-th/0411038 +nucl-th/0411039 +nucl-th/0411041 +nucl-th/0411048 +nucl-th/0411049 +nucl-th/0411051 +nucl-th/0411053 +nucl-th/0411056 +nucl-th/0411057 +nucl-th/0411058 +nucl-th/0411060 +nucl-th/0411061 +nucl-th/0411063 +nucl-th/0411068 +nucl-th/0411070 +nucl-th/0411071 +nucl-th/0411072 +nucl-th/0411074 +nucl-th/0411075 +nucl-th/0411078 +nucl-th/0411079 +nucl-th/0411080 +nucl-th/0411081 +nucl-th/0411085 +nucl-th/0411086 +nucl-th/0411091 +nucl-th/0411093 +nucl-th/0411096 +nucl-th/0411098 +nucl-th/0411100 +nucl-th/0411103 +nucl-th/0411104 +nucl-th/0411105 +nucl-th/0411106 +nucl-th/0411107 +nucl-th/0411108 +nucl-th/0411109 +nucl-th/0411117 +nucl-th/0411120 +nucl-th/0411123 +nucl-th/0411125 +nucl-th/0412001 +nucl-th/0412002 +nucl-th/0412006 +nucl-th/0412009 +nucl-th/0412010 +nucl-th/0412011 +nucl-th/0412017 +nucl-th/0412019 +nucl-th/0412021 +nucl-th/0412022 +nucl-th/0412023 +nucl-th/0412024 +nucl-th/0412030 +nucl-th/0412031 +nucl-th/0412032 +nucl-th/0412033 +nucl-th/0412038 +nucl-th/0412040 +nucl-th/0412043 +nucl-th/0412044 +nucl-th/0412045 +nucl-th/0412052 +nucl-th/0412053 +nucl-th/0412055 +nucl-th/0412058 +nucl-th/0412059 +nucl-th/0412062 +nucl-th/0412063 +nucl-th/0412064 +nucl-th/0412067 +nucl-th/0412070 +nucl-th/0412072 +nucl-th/0412074 +nucl-th/0412075 +nucl-th/0412076 +nucl-th/0412077 +nucl-th/0412084 +nucl-th/0412087 +nucl-th/0412090 +nucl-th/0412091 +nucl-th/0412093 +nucl-th/0412096 +nucl-th/0412104 +nucl-th/0412110 +physics/0301002 Physics Education +physics/0301004 Atomic Physics +physics/0301007 Physics and Society +physics/0301008 Instrumentation and Detectors +physics/0301009 Physics and Society +physics/0301011 Medical Physics +physics/0301012 Biological Physics +physics/0301017 Classical Physics +physics/0301021 Fluid Dynamics +physics/0301024 Chemical Physics +physics/0301027 Atomic Physics +physics/0301030 Data Analysis, Statistics and Probability +physics/0301032 Fluid Dynamics +physics/0301035 Optics +physics/0301036 Atomic and Molecular Clusters +physics/0301037 Plasma Physics +physics/0301039 Chemical Physics +physics/0301042 Biological Physics +physics/0301043 Fluid Dynamics +physics/0301046 Atomic Physics +physics/0301051 Atomic Physics +physics/0301053 Optics +physics/0301056 Chemical Physics +physics/0301057 Data Analysis, Statistics and Probability +physics/0301058 Data Analysis, Statistics and Probability +physics/0301064 Chemical Physics +physics/0301065 Biological Physics +physics/0301067 Optics +physics/0301068 Optics +physics/0301071 Fluid Dynamics +physics/0301073 Accelerator Physics +physics/0301076 Plasma Physics +physics/0301079 Chemical Physics +physics/0301080 Optics +physics/0301082 Optics +physics/0301083 Optics +physics/0302001 Optics +physics/0302004 Atomic Physics +physics/0302014 Atomic Physics +physics/0302017 Optics +physics/0302024 Classical Physics +physics/0302028 Optics +physics/0302030 Biological Physics +physics/0302032 Biological Physics +physics/0302036 Optics +physics/0302042 Atomic Physics +physics/0302047 Accelerator Physics +physics/0302049 Optics +physics/0302050 Biological Physics +physics/0302051 Fluid Dynamics +physics/0302052 Plasma Physics +physics/0302053 Optics +physics/0302057 Data Analysis, Statistics and Probability +physics/0302060 Atomic Physics +physics/0302064 Fluid Dynamics +physics/0302068 Chemical Physics +physics/0302074 Chemical Physics +physics/0302077 Instrumentation and Detectors +physics/0302079 Atomic Physics +physics/0302080 Optics +physics/0302084 Chemical Physics +physics/0302085 Fluid Dynamics +physics/0302088 Biological Physics +physics/0302092 Fluid Dynamics +physics/0302094 Atomic Physics +physics/0302096 Optics +physics/0302101 Atomic Physics +physics/0303006 Atomic Physics +physics/0303007 Atomic Physics +physics/0303008 Atomic Physics +physics/0303010 Classical Physics +physics/0303013 Optics +physics/0303015 Optics +physics/0303022 Accelerator Physics +physics/0303023 Atomic Physics +physics/0303024 Biological Physics +physics/0303026 Plasma Physics +physics/0303032 Atomic Physics +physics/0303037 Optics +physics/0303038 Biological Physics +physics/0303042 Atomic Physics +physics/0303046 Optics +physics/0303047 Plasma Physics +physics/0303048 Atomic Physics +physics/0303051 Optics +physics/0303052 Atomic Physics +physics/0303054 Atomic Physics +physics/0303056 Atomic Physics +physics/0303061 Fluid Dynamics +physics/0303062 Chemical Physics +physics/0303066 Plasma Physics +physics/0303068 Atomic and Molecular Clusters +physics/0303069 Computational Physics +physics/0303072 Optics +physics/0303076 Physics Education +physics/0303079 Atomic and Molecular Clusters +physics/0303080 Atomic and Molecular Clusters +physics/0303083 Optics +physics/0303084 Instrumentation and Detectors +physics/0303086 Classical Physics +physics/0303087 Biological Physics +physics/0303088 Atomic and Molecular Clusters +physics/0303089 Biological Physics +physics/0303093 Optics +physics/0303094 Atomic Physics +physics/0303096 Biological Physics +physics/0303097 Classical Physics +physics/0303099 Biological Physics +physics/0303103 Classical Physics +physics/0303105 Classical Physics +physics/0303106 Classical Physics +physics/0303108 General Physics +physics/0303109 Classical Physics +physics/0303111 Data Analysis, Statistics and Probability +physics/0303115 Computational Physics +physics/0303120 Biological Physics +physics/0303123 Space Physics +physics/0304005 Atomic Physics +physics/0304009 Fluid Dynamics +physics/0304011 Atomic Physics +physics/0304013 Atomic Physics +physics/0304021 Data Analysis, Statistics and Probability +physics/0304022 Optics +physics/0304027 Optics +physics/0304028 Atomic Physics +physics/0304029 Atomic and Molecular Clusters +physics/0304030 Optics +physics/0304031 Atomic Physics +physics/0304035 Fluid Dynamics +physics/0304036 Physics Education +physics/0304040 Physics Education +physics/0304042 Atomic Physics +physics/0304043 Computational Physics +physics/0304045 Atomic Physics +physics/0304047 Optics +physics/0304050 Biological Physics +physics/0304056 Classical Physics +physics/0304057 Atomic Physics +physics/0304059 Atomic Physics +physics/0304060 Geophysics +physics/0304061 Geophysics +physics/0304062 Biological Physics +physics/0304063 Plasma Physics +physics/0304064 Atomic Physics +physics/0304067 Physics Education +physics/0304075 Biological Physics +physics/0304076 Fluid Dynamics +physics/0304077 Fluid Dynamics +physics/0304078 Chemical Physics +physics/0304079 Plasma Physics +physics/0304081 Atomic Physics +physics/0304084 Atomic Physics +physics/0304086 Computational Physics +physics/0304088 Chemical Physics +physics/0304089 Plasma Physics +physics/0304091 Fluid Dynamics +physics/0304094 Optics +physics/0304097 Accelerator Physics +physics/0304101 Fluid Dynamics +physics/0304102 Data Analysis, Statistics and Probability +physics/0304104 Plasma Physics +physics/0304106 Computational Physics +physics/0304114 Atmospheric and Oceanic Physics +physics/0304115 Chemical Physics +physics/0305004 General Physics +physics/0305012 Classical Physics +physics/0305023 Atomic Physics +physics/0305026 Optics +physics/0305029 Classical Physics +physics/0305039 Optics +physics/0305040 Optics +physics/0305041 Space Physics +physics/0305042 Optics +physics/0305044 Optics +physics/0305045 Optics +physics/0305046 Optics +physics/0305047 Plasma Physics +physics/0305051 Optics +physics/0305054 Chemical Physics +physics/0305058 Computational Physics +physics/0305059 Biological Physics +physics/0305061 Atomic Physics +physics/0305064 Optics +physics/0305065 Optics +physics/0305067 Geophysics +physics/0305073 Atomic Physics +physics/0305074 Atomic Physics +physics/0305077 Optics +physics/0305080 Atmospheric and Oceanic Physics +physics/0305084 Instrumentation and Detectors +physics/0305085 Optics +physics/0305087 Biological Physics +physics/0305095 Physics Education +physics/0305099 Geophysics +physics/0305101 Optics +physics/0305102 Optics +physics/0305103 Atomic and Molecular Clusters +physics/0305105 Plasma Physics +physics/0305107 Accelerator Physics +physics/0305110 Atomic Physics +physics/0305111 Optics +physics/0305112 Plasma Physics +physics/0305113 Chemical Physics +physics/0305116 Optics +physics/0305122 Physics Education +physics/0305129 Plasma Physics +physics/0305131 Optics +physics/0305132 Chemical Physics +physics/0305135 Biological Physics +physics/0306004 Accelerator Physics +physics/0306006 Accelerator Physics +physics/0306011 Classical Physics +physics/0306018 Atomic Physics +physics/0306023 Atomic Physics +physics/0306027 Atomic and Molecular Clusters +physics/0306029 Fluid Dynamics +physics/0306039 Plasma Physics +physics/0306040 Atomic Physics +physics/0306044 Biological Physics +physics/0306045 Plasma Physics +physics/0306047 Biological Physics +physics/0306051 Atomic Physics +physics/0306054 Optics +physics/0306062 Atomic Physics +physics/0306065 Biological Physics +physics/0306069 Atmospheric and Oceanic Physics +physics/0306071 Atomic Physics +physics/0306095 Atomic Physics +physics/0306100 Fluid Dynamics +physics/0306102 Atomic and Molecular Clusters +physics/0306106 Accelerator Physics +physics/0306130 Accelerator Physics +physics/0306132 Optics +physics/0306145 Data Analysis, Statistics and Probability +physics/0306152 Accelerator Physics +physics/0306161 Atomic Physics +physics/0306166 Chemical Physics +physics/0306167 Atomic Physics +physics/0306172 Optics +physics/0306173 Chemical Physics +physics/0306175 Biological Physics +physics/0306181 Medical Physics +physics/0306182 Computational Physics +physics/0306186 General Physics +physics/0306187 Chemical Physics +physics/0306188 Atomic Physics +physics/0306189 Optics +physics/0306191 Instrumentation and Detectors +physics/0306194 Accelerator Physics +physics/0307002 Data Analysis, Statistics and Probability +physics/0307004 Accelerator Physics +physics/0307008 Chemical Physics +physics/0307013 Biological Physics +physics/0307015 Geophysics +physics/0307017 Chemical Physics +physics/0307018 Optics +physics/0307021 Optics +physics/0307024 Optics +physics/0307026 Atomic Physics +physics/0307028 Accelerator Physics +physics/0307032 Fluid Dynamics +physics/0307035 Optics +physics/0307038 Optics +physics/0307051 Biological Physics +physics/0307052 Optics +physics/0307055 Data Analysis, Statistics and Probability +physics/0307056 Atomic Physics +physics/0307057 Atomic Physics +physics/0307058 Atomic and Molecular Clusters +physics/0307073 Instrumentation and Detectors +physics/0307074 Atomic and Molecular Clusters +physics/0307084 Atomic Physics +physics/0307085 Atomic Physics +physics/0307086 Plasma Physics +physics/0307087 Plasma Physics +physics/0307092 Accelerator Physics +physics/0307093 Accelerator Physics +physics/0307094 Atomic Physics +physics/0307095 Atomic Physics +physics/0307098 Medical Physics +physics/0307099 Medical Physics +physics/0307102 Instrumentation and Detectors +physics/0307105 Plasma Physics +physics/0307110 Fluid Dynamics +physics/0307112 Atomic Physics +physics/0307114 Atomic Physics +physics/0307118 Physics Education +physics/0307120 Optics +physics/0307131 Data Analysis, Statistics and Probability +physics/0307134 Geophysics +physics/0307136 Biological Physics +physics/0307139 Optics +physics/0307143 Biological Physics +physics/0307157 Medical Physics +physics/0308001 Optics +physics/0308010 Instrumentation and Detectors +physics/0308011 Biological Physics +physics/0308020 Atomic Physics +physics/0308022 Atomic Physics +physics/0308023 Atomic Physics +physics/0308024 Optics +physics/0308028 Computational Physics +physics/0308030 Biological Physics +physics/0308036 Classical Physics +physics/0308047 Instrumentation and Detectors +physics/0308050 Classical Physics +physics/0308051 Atomic Physics +physics/0308052 Optics +physics/0308053 Chemical Physics +physics/0308054 Atomic Physics +physics/0308056 Chemical Physics +physics/0308057 Atmospheric and Oceanic Physics +physics/0308059 Data Analysis, Statistics and Probability +physics/0308068 Classical Physics +physics/0308070 Computational Physics +physics/0308072 Plasma Physics +physics/0308073 Space Physics +physics/0308074 Space Physics +physics/0308075 Space Physics +physics/0308079 Optics +physics/0308080 Instrumentation and Detectors +physics/0308083 Atomic Physics +physics/0308084 Chemical Physics +physics/0308085 Biological Physics +physics/0308089 Biological Physics +physics/0308090 Atomic and Molecular Clusters +physics/0308091 Biological Physics +physics/0308092 Atomic Physics +physics/0308100 Fluid Dynamics +physics/0308101 Fluid Dynamics +physics/0308102 Geophysics +physics/0308104 Atomic Physics +physics/0308114 Data Analysis, Statistics and Probability +physics/0309001 Atomic Physics +physics/0309003 Atomic Physics +physics/0309004 Atomic Physics +physics/0309012 Fluid Dynamics +physics/0309013 Instrumentation and Detectors +physics/0309015 Plasma Physics +physics/0309017 Atomic Physics +physics/0309018 Atomic Physics +physics/0309019 Optics +physics/0309020 Plasma Physics +physics/0309022 Optics +physics/0309029 Physics Education +physics/0309031 Data Analysis, Statistics and Probability +physics/0309032 Instrumentation and Detectors +physics/0309033 Data Analysis, Statistics and Probability +physics/0309034 Atomic Physics +physics/0309036 Optics +physics/0309038 Atomic and Molecular Clusters +physics/0309043 Atomic Physics +physics/0309044 Atomic Physics +physics/0309047 Fluid Dynamics +physics/0309053 Atomic Physics +physics/0309058 Plasma Physics +physics/0309061 Atomic Physics +physics/0309062 Optics +physics/0309064 Optics +physics/0309065 Atomic Physics +physics/0309067 Atomic Physics +physics/0309069 Optics +physics/0309071 Atomic Physics +physics/0309074 Atomic and Molecular Clusters +physics/0309075 Instrumentation and Detectors +physics/0309076 Atomic Physics +physics/0309081 Atomic and Molecular Clusters +physics/0309083 Classical Physics +physics/0309084 Optics +physics/0309085 Optics +physics/0309086 Computational Physics +physics/0309092 Classical Physics +physics/0309093 Atomic Physics +physics/0309094 Atomic Physics +physics/0309095 Atomic Physics +physics/0309098 Classical Physics +physics/0309101 Atomic and Molecular Clusters +physics/0309106 Fluid Dynamics +physics/0309109 Optics +physics/0309111 Plasma Physics +physics/0309112 Classical Physics +physics/0309115 Fluid Dynamics +physics/0309117 Biological Physics +physics/0309124 Chemical Physics +physics/0310003 Optics +physics/0310006 Plasma Physics +physics/0310012 Data Analysis, Statistics and Probability +physics/0310015 Physics Education +physics/0310016 Physics Education +physics/0310017 Atomic Physics +physics/0310018 Atomic and Molecular Clusters +physics/0310024 Fluid Dynamics +physics/0310033 Optics +physics/0310035 Chemical Physics +physics/0310036 Optics +physics/0310038 Plasma Physics +physics/0310040 Optics +physics/0310042 Classical Physics +physics/0310045 Atomic Physics +physics/0310046 Chemical Physics +physics/0310047 Instrumentation and Detectors +physics/0310051 Atomic Physics +physics/0310056 Accelerator Physics +physics/0310066 Atomic Physics +physics/0310067 General Physics +physics/0310068 Atomic Physics +physics/0310070 Biological Physics +physics/0310072 Fluid Dynamics +physics/0310074 Atomic Physics +physics/0310075 Biological Physics +physics/0310076 Instrumentation and Detectors +physics/0310077 Atomic Physics +physics/0310080 Plasma Physics +physics/0310084 Accelerator Physics +physics/0310085 Atomic Physics +physics/0310086 Classical Physics +physics/0310094 Atomic Physics +physics/0310095 Instrumentation and Detectors +physics/0310097 Optics +physics/0310101 Chemical Physics +physics/0310105 Atomic Physics +physics/0310111 Optics +physics/0310113 Physics and Society +physics/0310118 Accelerator Physics +physics/0310119 Plasma Physics +physics/0310120 Atomic Physics +physics/0310121 Atomic Physics +physics/0310122 Instrumentation and Detectors +physics/0310123 Atomic and Molecular Clusters +physics/0310124 Instrumentation and Detectors +physics/0310125 Biological Physics +physics/0310126 History and Philosophy of Physics +physics/0310130 Biological Physics +physics/0310140 Physics Education +physics/0310141 Atomic Physics +physics/0310144 Atomic and Molecular Clusters +physics/0310152 Atomic Physics +physics/0310157 Biological Physics +physics/0310159 Data Analysis, Statistics and Probability +physics/0310162 Plasma Physics +physics/0310163 Classical Physics +physics/0310166 Atomic and Molecular Clusters +physics/0311010 Optics +physics/0311013 Optics +physics/0311014 Optics +physics/0311015 Optics +physics/0311019 Instrumentation and Detectors +physics/0311021 Optics +physics/0311024 Chemical Physics +physics/0311025 Fluid Dynamics +physics/0311030 Optics +physics/0311032 Atomic Physics +physics/0311033 Data Analysis, Statistics and Probability +physics/0311034 Data Analysis, Statistics and Probability +physics/0311039 Atomic Physics +physics/0311051 Plasma Physics +physics/0311053 Atomic and Molecular Clusters +physics/0311055 Computational Physics +physics/0311060 Instrumentation and Detectors +physics/0311068 Optics +physics/0311071 Optics +physics/0311072 Optics +physics/0311076 Classical Physics +physics/0311079 Instrumentation and Detectors +physics/0311082 Classical Physics +physics/0311089 Optics +physics/0311090 Instrumentation and Detectors +physics/0311093 Data Analysis, Statistics and Probability +physics/0311095 Plasma Physics +physics/0311097 Chemical Physics +physics/0311099 Chemical Physics +physics/0311101 Atomic Physics +physics/0311102 Optics +physics/0311110 Medical Physics +physics/0311112 Chemical Physics +physics/0311115 Optics +physics/0311119 Instrumentation and Detectors +physics/0311123 Atmospheric and Oceanic Physics +physics/0311124 Atmospheric and Oceanic Physics +physics/0311126 Plasma Physics +physics/0311130 Fluid Dynamics +physics/0311131 Plasma Physics +physics/0312001 Optics +physics/0312003 Atomic Physics +physics/0312006 Atomic Physics +physics/0312008 Atomic Physics +physics/0312010 Physics and Society +physics/0312011 Computational Physics +physics/0312033 Atomic Physics +physics/0312035 Atomic Physics +physics/0312036 Optics +physics/0312039 Instrumentation and Detectors +physics/0312040 Optics +physics/0312041 Chemical Physics +physics/0312048 Fluid Dynamics +physics/0312049 Atomic and Molecular Clusters +physics/0312051 Fluid Dynamics +physics/0312054 Fluid Dynamics +physics/0312055 Plasma Physics +physics/0312057 Atmospheric and Oceanic Physics +physics/0312058 Optics +physics/0312060 Optics +physics/0312063 Instrumentation and Detectors +physics/0312065 Classical Physics +physics/0312071 Classical Physics +physics/0312075 Optics +physics/0312077 Atmospheric and Oceanic Physics +physics/0312078 Fluid Dynamics +physics/0312081 Instrumentation and Detectors +physics/0312084 Atomic Physics +physics/0312085 Classical Physics +physics/0312086 Optics +physics/0312091 Atomic Physics +physics/0312092 Plasma Physics +physics/0312097 Medical Physics +physics/0312103 Computational Physics +physics/0312104 Atomic Physics +physics/0312105 Atomic Physics +physics/0312106 Atomic Physics +physics/0312110 Atomic and Molecular Clusters +physics/0312112 Optics +physics/0312114 Optics +physics/0312119 Atomic Physics +physics/0312120 Atomic Physics +physics/0312121 Biological Physics +physics/0312124 Atomic Physics +physics/0312126 Optics +physics/0312131 Data Analysis, Statistics and Probability +physics/0312138 Atomic Physics +physics/0312139 Computational Physics +physics/0312140 Fluid Dynamics +physics/0312143 Plasma Physics +physics/0312144 Plasma Physics +physics/0312145 Plasma Physics +physics/0312146 Plasma Physics +physics/0312152 Fluid Dynamics +physics/0401009 Atomic Physics +physics/0401011 Atomic Physics +physics/0401012 Data Analysis, Statistics and Probability +physics/0401014 Atomic Physics +physics/0401019 Atomic Physics +physics/0401023 Instrumentation and Detectors +physics/0401025 Optics +physics/0401039 Optics +physics/0401041 Atomic Physics +physics/0401043 Atomic Physics +physics/0401054 Optics +physics/0401055 Atomic Physics +physics/0401056 Fluid Dynamics +physics/0401057 Chemical Physics +physics/0401060 Atomic Physics +physics/0401062 History and Philosophy of Physics +physics/0401063 Physics Education +physics/0401066 Atmospheric and Oceanic Physics +physics/0401071 Chemical Physics +physics/0401079 Fluid Dynamics +physics/0401083 Classical Physics +physics/0401086 Classical Physics +physics/0401088 Atomic Physics +physics/0401089 Optics +physics/0401095 Atomic Physics +physics/0401096 Atomic and Molecular Clusters +physics/0401100 Biological Physics +physics/0401102 Data Analysis, Statistics and Probability +physics/0401107 Computational Physics +physics/0401108 Computational Physics +physics/0401109 Medical Physics +physics/0401111 Accelerator Physics +physics/0401113 Atomic Physics +physics/0401116 Optics +physics/0401123 Atomic Physics +physics/0401131 Space Physics +physics/0401132 Plasma Physics +physics/0401136 Accelerator Physics +physics/0401137 Accelerator Physics +physics/0401142 Popular Physics +physics/0401145 Space Physics +physics/0401146 Classical Physics +physics/0401159 Biological Physics +physics/0401162 Plasma Physics +physics/0402001 Optics +physics/0402007 General Physics +physics/0402010 Atomic Physics +physics/0402012 Atomic Physics +physics/0402013 Optics +physics/0402015 Fluid Dynamics +physics/0402018 Optics +physics/0402020 Physics Education +physics/0402024 Classical Physics +physics/0402028 Atmospheric and Oceanic Physics +physics/0402030 Data Analysis, Statistics and Probability +physics/0402035 Plasma Physics +physics/0402036 Physics Education +physics/0402037 Optics +physics/0402039 Data Analysis, Statistics and Probability +physics/0402041 Atomic Physics +physics/0402042 Data Analysis, Statistics and Probability +physics/0402043 Instrumentation and Detectors +physics/0402047 Fluid Dynamics +physics/0402048 Physics Education +physics/0402049 Plasma Physics +physics/0402050 Plasma Physics +physics/0402052 Medical Physics +physics/0402055 Space Physics +physics/0402057 Optics +physics/0402058 Physics Education +physics/0402060 Optics +physics/0402066 Atomic Physics +physics/0402069 General Physics +physics/0402070 Data Analysis, Statistics and Probability +physics/0402071 Optics +physics/0402073 Instrumentation and Detectors +physics/0402074 Plasma Physics +physics/0402076 Biological Physics +physics/0402082 Atmospheric and Oceanic Physics +physics/0402091 Biological Physics +physics/0402095 Optics +physics/0402099 Data Analysis, Statistics and Probability +physics/0402100 Medical Physics +physics/0402101 Fluid Dynamics +physics/0402102 Atomic and Molecular Clusters +physics/0402103 Atomic and Molecular Clusters +physics/0402104 Atomic and Molecular Clusters +physics/0402107 Computational Physics +physics/0402108 Atomic Physics +physics/0402110 Optics +physics/0402113 Atomic Physics +physics/0402116 Atomic Physics +physics/0402119 Classical Physics +physics/0402121 Instrumentation and Detectors +physics/0402123 Instrumentation and Detectors +physics/0402124 Atomic Physics +physics/0402126 Instrumentation and Detectors +physics/0402128 Atomic Physics +physics/0402130 Fluid Dynamics +physics/0402132 Atomic Physics +physics/0402133 Atomic Physics +physics/0403004 Data Analysis, Statistics and Probability +physics/0403007 Optics +physics/0403011 Fluid Dynamics +physics/0403012 Atomic Physics +physics/0403020 Atomic Physics +physics/0403025 Plasma Physics +physics/0403030 Instrumentation and Detectors +physics/0403031 Data Analysis, Statistics and Probability +physics/0403032 Optics +physics/0403036 Optics +physics/0403037 Accelerator Physics +physics/0403038 Optics +physics/0403039 Plasma Physics +physics/0403040 Biological Physics +physics/0403042 Classical Physics +physics/0403045 Accelerator Physics +physics/0403048 Atomic and Molecular Clusters +physics/0403052 Chemical Physics +physics/0403059 Data Analysis, Statistics and Probability +physics/0403063 Instrumentation and Detectors +physics/0403064 General Physics +physics/0403065 Instrumentation and Detectors +physics/0403066 Instrumentation and Detectors +physics/0403067 Accelerator Physics +physics/0403068 Classical Physics +physics/0403069 Data Analysis, Statistics and Probability +physics/0403075 Computational Physics +physics/0403076 Classical Physics +physics/0403079 Instrumentation and Detectors +physics/0403081 Plasma Physics +physics/0403082 Accelerator Physics +physics/0403085 Geophysics +physics/0403089 Data Analysis, Statistics and Probability +physics/0403093 Computational Physics +physics/0403095 Medical Physics +physics/0403096 Atomic Physics +physics/0403097 Atomic Physics +physics/0403101 Atomic and Molecular Clusters +physics/0403104 Plasma Physics +physics/0403105 Space Physics +physics/0403107 Plasma Physics +physics/0403108 Instrumentation and Detectors +physics/0403111 Optics +physics/0403116 Atomic Physics +physics/0403118 Optics +physics/0403119 Plasma Physics +physics/0403120 Atmospheric and Oceanic Physics +physics/0403121 Data Analysis, Statistics and Probability +physics/0403122 Physics and Society +physics/0403126 Atomic Physics +physics/0403129 Plasma Physics +physics/0403134 Atomic Physics +physics/0403135 Chemical Physics +physics/0403136 Instrumentation and Detectors +physics/0403138 Atomic Physics +physics/0403139 Optics +physics/0403140 Optics +physics/0403141 Atomic Physics +physics/0403143 Optics +physics/0403146 Computational Physics +physics/0403147 Optics +physics/0403151 Atomic Physics +physics/0404002 Atomic Physics +physics/0404003 Plasma Physics +physics/0404012 Atomic Physics +physics/0404019 Geophysics +physics/0404021 Data Analysis, Statistics and Probability +physics/0404023 Medical Physics +physics/0404025 Atomic Physics +physics/0404026 Atomic Physics +physics/0404028 Atomic and Molecular Clusters +physics/0404034 Data Analysis, Statistics and Probability +physics/0404040 Optics +physics/0404047 Atomic Physics +physics/0404048 Fluid Dynamics +physics/0404061 Optics +physics/0404065 Optics +physics/0404069 Chemical Physics +physics/0404070 Plasma Physics +physics/0404072 Accelerator Physics +physics/0404075 Atomic Physics +physics/0404076 Atomic Physics +physics/0404086 Biological Physics +physics/0404090 Atomic Physics +physics/0404093 Biological Physics +physics/0404096 Plasma Physics +physics/0404101 Classical Physics +physics/0404102 Atomic Physics +physics/0404105 Optics +physics/0404108 Fluid Dynamics +physics/0404110 Optics +physics/0404111 Geophysics +physics/0404112 Instrumentation and Detectors +physics/0404120 Classical Physics +physics/0404121 Data Analysis, Statistics and Probability +physics/0404124 Optics +physics/0404128 Data Analysis, Statistics and Probability +physics/0404130 Fluid Dynamics +physics/0404131 Atomic Physics +physics/0404135 Optics +physics/0404138 Chemical Physics +physics/0404139 Physics Education +physics/0404140 Plasma Physics +physics/0405002 Plasma Physics +physics/0405008 Data Analysis, Statistics and Probability +physics/0405011 Chemical Physics +physics/0405012 Chemical Physics +physics/0405015 Plasma Physics +physics/0405016 Instrumentation and Detectors +physics/0405017 Atomic Physics +physics/0405024 Fluid Dynamics +physics/0405026 Computational Physics +physics/0405030 Plasma Physics +physics/0405034 Fluid Dynamics +physics/0405039 Atomic Physics +physics/0405042 Plasma Physics +physics/0405043 Atomic Physics +physics/0405045 Fluid Dynamics +physics/0405046 Atomic Physics +physics/0405048 Biological Physics +physics/0405049 Atomic Physics +physics/0405051 Chemical Physics +physics/0405052 Plasma Physics +physics/0405055 Computational Physics +physics/0405057 Atomic Physics +physics/0405058 Atomic Physics +physics/0405059 Optics +physics/0405065 Classical Physics +physics/0405067 Chemical Physics +physics/0405073 History and Philosophy of Physics +physics/0405075 History and Philosophy of Physics +physics/0405082 Atomic Physics +physics/0405086 Optics +physics/0405087 Atomic Physics +physics/0405088 Chemical Physics +physics/0405090 General Physics +physics/0405092 Atomic Physics +physics/0405093 Atomic Physics +physics/0405095 Plasma Physics +physics/0405096 Atomic Physics +physics/0405101 Atomic Physics +physics/0405102 Optics +physics/0405104 Chemical Physics +physics/0405105 Optics +physics/0405106 Accelerator Physics +physics/0405107 Accelerator Physics +physics/0405108 Accelerator Physics +physics/0405113 Atomic Physics +physics/0405118 Atomic Physics +physics/0405119 Optics +physics/0405123 Fluid Dynamics +physics/0405125 Atomic Physics +physics/0405127 Optics +physics/0405128 Atomic Physics +physics/0405129 Atomic Physics +physics/0405132 Optics +physics/0405135 Classical Physics +physics/0405136 Atomic Physics +physics/0405138 Space Physics +physics/0405140 Plasma Physics +physics/0405141 Optics +physics/0405148 Classical Physics +physics/0405150 Chemical Physics +physics/0405153 Fluid Dynamics +physics/0405156 Atomic Physics +physics/0406001 Optics +physics/0406002 Atomic Physics +physics/0406006 Atomic Physics +physics/0406008 Biological Physics +physics/0406009 History and Philosophy of Physics +physics/0406011 Plasma Physics +physics/0406013 Accelerator Physics +physics/0406016 General Physics +physics/0406018 Atomic Physics +physics/0406020 Data Analysis, Statistics and Probability +physics/0406022 Atomic Physics +physics/0406028 Optics +physics/0406030 History and Philosophy of Physics +physics/0406035 Optics +physics/0406038 Optics +physics/0406039 Atomic Physics +physics/0406042 Chemical Physics +physics/0406043 Chemical Physics +physics/0406044 Chemical Physics +physics/0406045 Medical Physics +physics/0406047 Plasma Physics +physics/0406049 Optics +physics/0406050 Fluid Dynamics +physics/0406053 Optics +physics/0406057 Atomic Physics +physics/0406058 Biological Physics +physics/0406059 Fluid Dynamics +physics/0406063 Plasma Physics +physics/0406065 Atomic Physics +physics/0406066 Computational Physics +physics/0406071 Optics +physics/0406072 Atomic Physics +physics/0406073 Atomic Physics +physics/0406081 Optics +physics/0406082 Atomic Physics +physics/0406085 Classical Physics +physics/0406086 Accelerator Physics +physics/0406088 Chemical Physics +physics/0406090 Atomic Physics +physics/0406091 Physics and Society +physics/0406095 Instrumentation and Detectors +physics/0406096 Fluid Dynamics +physics/0406100 Atomic Physics +physics/0406102 Optics +physics/0406106 Instrumentation and Detectors +physics/0406107 Atomic and Molecular Clusters +physics/0406108 Chemical Physics +physics/0406109 Optics +physics/0406110 Optics +physics/0406112 Classical Physics +physics/0406113 Fluid Dynamics +physics/0406114 Instrumentation and Detectors +physics/0406116 Popular Physics +physics/0406117 Physics and Society +physics/0406119 Geophysics +physics/0406122 Chemical Physics +physics/0406123 Fluid Dynamics +physics/0406124 Atomic Physics +physics/0406125 Accelerator Physics +physics/0406128 Classical Physics +physics/0406131 Optics +physics/0406133 Plasma Physics +physics/0406140 Atomic Physics +physics/0406142 Medical Physics +physics/0406143 Chemical Physics +physics/0406146 Accelerator Physics +physics/0406151 Atomic Physics +physics/0406152 Chemical Physics +physics/0406153 Optics +physics/0406154 Atomic Physics +physics/0406157 Medical Physics +physics/0407004 Optics +physics/0407010 Atomic Physics +physics/0407012 Optics +physics/0407013 Atomic Physics +physics/0407021 Atomic Physics +physics/0407023 Chemical Physics +physics/0407024 Accelerator Physics +physics/0407029 Optics +physics/0407033 Instrumentation and Detectors +physics/0407036 Chemical Physics +physics/0407038 Atomic Physics +physics/0407039 Atomic and Molecular Clusters +physics/0407041 Fluid Dynamics +physics/0407044 Fluid Dynamics +physics/0407048 Atomic Physics +physics/0407053 Geophysics +physics/0407054 Biological Physics +physics/0407063 Optics +physics/0407065 Atomic Physics +physics/0407070 Optics +physics/0407072 Atomic Physics +physics/0407079 Plasma Physics +physics/0407080 Physics Education +physics/0407085 Atomic Physics +physics/0407086 Atomic and Molecular Clusters +physics/0407087 Accelerator Physics +physics/0407088 Atomic and Molecular Clusters +physics/0407089 Optics +physics/0407090 Chemical Physics +physics/0407093 Optics +physics/0407100 Atomic Physics +physics/0407103 Optics +physics/0407106 Atomic and Molecular Clusters +physics/0407109 Atomic Physics +physics/0407111 Fluid Dynamics +physics/0407115 Chemical Physics +physics/0407116 Atomic Physics +physics/0407117 Atomic Physics +physics/0407118 Accelerator Physics +physics/0407127 Optics +physics/0407128 Classical Physics +physics/0407130 Optics +physics/0407131 Computational Physics +physics/0407135 Atomic Physics +physics/0407138 Atomic Physics +physics/0407145 Atmospheric and Oceanic Physics +physics/0407147 Atmospheric and Oceanic Physics +physics/0407148 Chemical Physics +physics/0407149 Accelerator Physics +physics/0407154 Physics Education +physics/0408001 Optics +physics/0408003 Optics +physics/0408006 Atomic Physics +physics/0408007 Atomic Physics +physics/0408009 Atomic Physics +physics/0408012 Atomic Physics +physics/0408013 Optics +physics/0408014 Plasma Physics +physics/0408015 Chemical Physics +physics/0408021 Optics +physics/0408028 Atomic Physics +physics/0408030 Optics +physics/0408031 Optics +physics/0408034 Physics Education +physics/0408036 Plasma Physics +physics/0408039 Data Analysis, Statistics and Probability +physics/0408042 Chemical Physics +physics/0408045 Optics +physics/0408046 Optics +physics/0408050 Optics +physics/0408051 Atomic Physics +physics/0408052 Chemical Physics +physics/0408054 Accelerator Physics +physics/0408055 Instrumentation and Detectors +physics/0408062 Atmospheric and Oceanic Physics +physics/0408063 Biological Physics +physics/0408064 Atomic Physics +physics/0408065 Atomic Physics +physics/0408074 Instrumentation and Detectors +physics/0408076 Instrumentation and Detectors +physics/0408081 Atomic Physics +physics/0408085 Biological Physics +physics/0408096 Fluid Dynamics +physics/0408102 Classical Physics +physics/0408103 Optics +physics/0408110 Atomic Physics +physics/0408112 Fluid Dynamics +physics/0408113 Fluid Dynamics +physics/0408115 Fluid Dynamics +physics/0408119 Computational Physics +physics/0408125 Atomic Physics +physics/0408127 Atomic and Molecular Clusters +physics/0408129 Instrumentation and Detectors +physics/0408135 Optics +physics/0408136 Atomic Physics +physics/0409005 Fluid Dynamics +physics/0409009 Atomic Physics +physics/0409011 Atomic Physics +physics/0409018 Fluid Dynamics +physics/0409019 Atomic Physics +physics/0409028 Plasma Physics +physics/0409037 Fluid Dynamics +physics/0409038 Atomic Physics +physics/0409041 Fluid Dynamics +physics/0409045 Atomic Physics +physics/0409052 Fluid Dynamics +physics/0409055 Instrumentation and Detectors +physics/0409058 Atomic Physics +physics/0409062 Optics +physics/0409067 Optics +physics/0409068 Optics +physics/0409074 Plasma Physics +physics/0409078 Optics +physics/0409080 Biological Physics +physics/0409081 Optics +physics/0409083 Optics +physics/0409084 Data Analysis, Statistics and Probability +physics/0409085 Biological Physics +physics/0409086 Physics Education +physics/0409089 Plasma Physics +physics/0409091 Plasma Physics +physics/0409098 General Physics +physics/0409103 Classical Physics +physics/0409106 Optics +physics/0409109 Geophysics +physics/0409110 Optics +physics/0409112 Fluid Dynamics +physics/0409118 General Physics +physics/0409120 Instrumentation and Detectors +physics/0409122 Atomic Physics +physics/0409126 Atomic and Molecular Clusters +physics/0409131 Plasma Physics +physics/0409132 Atmospheric and Oceanic Physics +physics/0409133 Atmospheric and Oceanic Physics +physics/0409138 Plasma Physics +physics/0409145 Geophysics +physics/0409147 Atomic Physics +physics/0409148 Atomic Physics +physics/0409149 Atomic Physics +physics/0409150 Atomic Physics +physics/0409151 Atomic Physics +physics/0409159 Classical Physics +physics/0410001 Optics +physics/0410004 Instrumentation and Detectors +physics/0410005 Atomic Physics +physics/0410006 Atomic Physics +physics/0410007 Optics +physics/0410012 Atomic Physics +physics/0410016 Plasma Physics +physics/0410022 General Physics +physics/0410023 Atomic Physics +physics/0410025 Atomic and Molecular Clusters +physics/0410026 Atomic Physics +physics/0410027 Chemical Physics +physics/0410030 Atomic Physics +physics/0410031 General Physics +physics/0410036 Optics +physics/0410038 Plasma Physics +physics/0410040 Optics +physics/0410043 Atomic Physics +physics/0410044 Optics +physics/0410046 Geophysics +physics/0410049 Atomic and Molecular Clusters +physics/0410052 Plasma Physics +physics/0410054 General Physics +physics/0410055 General Physics +physics/0410061 Optics +physics/0410062 Chemical Physics +physics/0410066 Optics +physics/0410070 Fluid Dynamics +physics/0410078 Atomic Physics +physics/0410079 Atomic Physics +physics/0410080 Instrumentation and Detectors +physics/0410088 Plasma Physics +physics/0410096 Biological Physics +physics/0410097 Fluid Dynamics +physics/0410099 Instrumentation and Detectors +physics/0410108 Atomic Physics +physics/0410110 Atomic Physics +physics/0410120 Plasma Physics +physics/0410122 Chemical Physics +physics/0410128 Optics +physics/0410130 Atmospheric and Oceanic Physics +physics/0410133 Instrumentation and Detectors +physics/0410140 Instrumentation and Detectors +physics/0410145 Plasma Physics +physics/0410148 Fluid Dynamics +physics/0410151 Optics +physics/0410159 Fluid Dynamics +physics/0410161 Fluid Dynamics +physics/0410168 Plasma Physics +physics/0410171 Plasma Physics +physics/0410173 Plasma Physics +physics/0410175 Plasma Physics +physics/0410181 Plasma Physics +physics/0410192 Optics +physics/0410213 Plasma Physics +physics/0410217 Plasma Physics +physics/0410220 Atomic Physics +physics/0410221 Optics +physics/0410226 Data Analysis, Statistics and Probability +physics/0410228 Plasma Physics +physics/0410234 Plasma Physics +physics/0410238 Atomic Physics +physics/0410245 Classical Physics +physics/0410246 Optics +physics/0410249 Geophysics +physics/0410250 Atomic Physics +physics/0410251 Plasma Physics +physics/0410252 Chemical Physics +physics/0410255 Data Analysis, Statistics and Probability +physics/0410257 Optics +physics/0410263 Plasma Physics +physics/0410264 Instrumentation and Detectors +physics/0410265 Space Physics +physics/0410274 Geophysics +physics/0410279 Optics +physics/0411001 Plasma Physics +physics/0411004 Atomic Physics +physics/0411007 Physics Education +physics/0411010 Atomic Physics +physics/0411011 Fluid Dynamics +physics/0411014 Chemical Physics +physics/0411017 Biological Physics +physics/0411023 Plasma Physics +physics/0411025 Optics +physics/0411028 Atomic Physics +physics/0411031 Atomic Physics +physics/0411033 Optics +physics/0411038 Classical Physics +physics/0411049 Optics +physics/0411050 Geophysics +physics/0411051 Plasma Physics +physics/0411052 Atomic Physics +physics/0411054 Plasma Physics +physics/0411059 Instrumentation and Detectors +physics/0411064 Atomic Physics +physics/0411086 Plasma Physics +physics/0411089 Plasma Physics +physics/0411090 Optics +physics/0411091 Biological Physics +physics/0411094 Atomic Physics +physics/0411096 Atomic Physics +physics/0411097 Atomic Physics +physics/0411098 Fluid Dynamics +physics/0411101 Optics +physics/0411102 Optics +physics/0411104 Chemical Physics +physics/0411107 Optics +physics/0411119 Computational Physics +physics/0411121 Optics +physics/0411122 Accelerator Physics +physics/0411125 Fluid Dynamics +physics/0411126 Biological Physics +physics/0411139 Data Analysis, Statistics and Probability +physics/0411141 Data Analysis, Statistics and Probability +physics/0411143 Instrumentation and Detectors +physics/0411144 Computational Physics +physics/0411147 Instrumentation and Detectors +physics/0411151 Data Analysis, Statistics and Probability +physics/0411161 Physics Education +physics/0411163 Atomic Physics +physics/0411168 Atomic Physics +physics/0411173 Plasma Physics +physics/0411175 Plasma Physics +physics/0411179 Fluid Dynamics +physics/0411182 Instrumentation and Detectors +physics/0411185 Instrumentation and Detectors +physics/0411187 Fluid Dynamics +physics/0411197 Atomic Physics +physics/0411198 Physics Education +physics/0411203 Biological Physics +physics/0411204 Atomic Physics +physics/0411206 Medical Physics +physics/0411209 Chemical Physics +physics/0411212 Instrumentation and Detectors +physics/0411215 Atomic Physics +physics/0411221 Atomic Physics +physics/0411223 Optics +physics/0411225 Biological Physics +physics/0411227 Instrumentation and Detectors +physics/0411232 Optics +physics/0411234 Optics +physics/0411235 Plasma Physics +physics/0411236 Instrumentation and Detectors +physics/0411247 Atomic Physics +physics/0411248 Fluid Dynamics +physics/0411249 Atomic Physics +physics/0411251 Fluid Dynamics +physics/0412003 Medical Physics +physics/0412008 Plasma Physics +physics/0412011 Atomic Physics +physics/0412014 Plasma Physics +physics/0412017 Atomic Physics +physics/0412018 Optics +physics/0412023 Atomic and Molecular Clusters +physics/0412025 Fluid Dynamics +physics/0412028 Medical Physics +physics/0412034 Optics +physics/0412035 Optics +physics/0412041 Atomic Physics +physics/0412042 Optics +physics/0412046 Plasma Physics +physics/0412047 Plasma Physics +physics/0412052 Fluid Dynamics +physics/0412054 Plasma Physics +physics/0412055 History and Philosophy of Physics +physics/0412061 Fluid Dynamics +physics/0412064 Instrumentation and Detectors +physics/0412067 Data Analysis, Statistics and Probability +physics/0412073 Atomic Physics +physics/0412074 Computational Physics +physics/0412075 Atomic Physics +physics/0412080 Instrumentation and Detectors +physics/0412085 Instrumentation and Detectors +physics/0412086 Plasma Physics +physics/0412087 Physics Education +physics/0412089 Instrumentation and Detectors +physics/0412090 Atomic Physics +physics/0412092 Instrumentation and Detectors +physics/0412093 Optics +physics/0412094 Optics +physics/0412099 Instrumentation and Detectors +physics/0412101 Accelerator Physics +physics/0412105 Chemical Physics +physics/0412106 Accelerator Physics +physics/0412111 Atomic Physics +physics/0412114 Data Analysis, Statistics and Probability +physics/0412119 Atomic Physics +physics/0412120 Fluid Dynamics +physics/0412121 Optics +physics/0412125 Atomic Physics +physics/0412130 Plasma Physics +physics/0412134 Physics Education +physics/0412137 Chemical Physics +physics/0412144 Atomic Physics +physics/0412154 Accelerator Physics +physics/0412155 Instrumentation and Detectors +physics/0412167 General Physics +physics/0412170 Atmospheric and Oceanic Physics +physics/0412171 Physics and Society +physics/0412175 Instrumentation and Detectors +physics/0412178 Fluid Dynamics +physics/0412182 Data Analysis, Statistics and Probability +q-bio/0309004 Subcellular Processes +q-bio/0309010 Biomolecules +q-bio/0309016 Cell Behavior +q-bio/0309017 Biomolecules +q-bio/0309018 Neurons and Cognition +q-bio/0309021 Quantitative Methods +q-bio/0309022 Quantitative Methods +q-bio/0309028 Neurons and Cognition +q-bio/0310006 Populations and Evolution +q-bio/0310010 Molecular Networks +q-bio/0310017 Populations and Evolution +q-bio/0310027 Genomics +q-bio/0310032 Populations and Evolution +q-bio/0310041 Molecular Networks +q-bio/0311002 Populations and Evolution +q-bio/0311009 Quantitative Methods +q-bio/0311010 Biomolecules +q-bio/0311015 Biomolecules +q-bio/0311016 Neurons and Cognition +q-bio/0311023 Biomolecules +q-bio/0311026 Neurons and Cognition +q-bio/0311035 Populations and Evolution +q-bio/0311038 Biomolecules +q-bio/0312004 Neurons and Cognition +q-bio/0312012 Molecular Networks +q-bio/0312014 Populations and Evolution +q-bio/0312019 Molecular Networks +q-bio/0312028 Subcellular Processes +q-bio/0312035 Biomolecules +q-bio/0312038 Neurons and Cognition +q-bio/0312040 Biomolecules +q-bio/0312041 Tissues and Organs +q-bio/0312043 Biomolecules +q-bio/0312044 Biomolecules +q-bio/0312045 Biomolecules +q-bio/0312046 Biomolecules +q-bio/0312048 Biomolecules +q-bio/0401002 Molecular Networks +q-bio/0401012 Biomolecules +q-bio/0401013 Neurons and Cognition +q-bio/0401014 Quantitative Methods +q-bio/0401017 Biomolecules +q-bio/0401021 Biomolecules +q-bio/0401022 Populations and Evolution +q-bio/0401026 Populations and Evolution +q-bio/0401031 Molecular Networks +q-bio/0401033 Genomics +q-bio/0401038 Biomolecules +q-bio/0401042 Subcellular Processes +q-bio/0402008 Biomolecules +q-bio/0402028 Populations and Evolution +q-bio/0402032 Tissues and Organs +q-bio/0402040 Subcellular Processes +q-bio/0402044 Genomics +q-bio/0402047 Genomics +q-bio/0403003 Biomolecules +q-bio/0403018 Genomics +q-bio/0403032 Genomics +q-bio/0403039 Genomics +q-bio/0403040 Populations and Evolution +q-bio/0403043 Populations and Evolution +q-bio/0403044 Genomics +q-bio/0404004 Biomolecules +q-bio/0404006 Molecular Networks +q-bio/0404009 Cell Behavior +q-bio/0404012 Neurons and Cognition +q-bio/0404013 Biomolecules +q-bio/0404015 Biomolecules +q-bio/0404016 Neurons and Cognition +q-bio/0404021 Neurons and Cognition +q-bio/0404023 Biomolecules +q-bio/0404024 Genomics +q-bio/0404035 Populations and Evolution +q-bio/0404038 Biomolecules +q-bio/0405003 Populations and Evolution +q-bio/0405005 Populations and Evolution +q-bio/0405008 Cell Behavior +q-bio/0405009 Biomolecules +q-bio/0405011 Molecular Networks +q-bio/0405017 Biomolecules +q-bio/0405019 Biomolecules +q-bio/0405021 Molecular Networks +q-bio/0405023 Populations and Evolution +q-bio/0406006 Molecular Networks +q-bio/0406007 Cell Behavior +q-bio/0406017 Populations and Evolution +q-bio/0406018 Molecular Networks +q-bio/0406021 Biomolecules +q-bio/0406022 Biomolecules +q-bio/0406029 Biomolecules +q-bio/0406030 Biomolecules +q-bio/0406031 Biomolecules +q-bio/0406036 Subcellular Processes +q-bio/0406038 Populations and Evolution +q-bio/0406043 Molecular Networks +q-bio/0406052 Biomolecules +q-bio/0407001 Neurons and Cognition +q-bio/0407002 Genomics +q-bio/0407005 Other Quantitative Biology +q-bio/0407007 Populations and Evolution +q-bio/0407012 Populations and Evolution +q-bio/0407013 Neurons and Cognition +q-bio/0407015 Subcellular Processes +q-bio/0407017 Biomolecules +q-bio/0407019 Quantitative Methods +q-bio/0407020 Populations and Evolution +q-bio/0407022 Quantitative Methods +q-bio/0407026 Populations and Evolution +q-bio/0407028 Biomolecules +q-bio/0407033 Populations and Evolution +q-bio/0407038 Quantitative Methods +q-bio/0407041 Molecular Networks +q-bio/0408003 Cell Behavior +q-bio/0408005 Populations and Evolution +q-bio/0408010 Quantitative Methods +q-bio/0408014 Genomics +q-bio/0408015 Biomolecules +q-bio/0408017 Genomics +q-bio/0408024 Biomolecules +q-bio/0408027 Populations and Evolution +q-bio/0409004 Neurons and Cognition +q-bio/0409005 Biomolecules +q-bio/0409006 Subcellular Processes +q-bio/0409007 Subcellular Processes +q-bio/0409010 Quantitative Methods +q-bio/0409013 Biomolecules +q-bio/0409018 Tissues and Organs +q-bio/0409019 Populations and Evolution +q-bio/0409021 Biomolecules +q-bio/0409022 Molecular Networks +q-bio/0409025 Biomolecules +q-bio/0409034 Biomolecules +q-bio/0409039 Tissues and Organs +q-bio/0410001 Other Quantitative Biology +q-bio/0410012 Genomics +q-bio/0410015 Populations and Evolution +q-bio/0410018 Biomolecules +q-bio/0410028 Biomolecules +q-bio/0410031 Biomolecules +q-bio/0410032 Biomolecules +q-bio/0411004 Biomolecules +q-bio/0411005 Biomolecules +q-bio/0411009 Neurons and Cognition +q-bio/0411012 Other Quantitative Biology +q-bio/0411013 Molecular Networks +q-bio/0411020 Genomics +q-bio/0411022 Biomolecules +q-bio/0411031 Populations and Evolution +q-bio/0411033 Quantitative Methods +q-bio/0411035 Molecular Networks +q-bio/0411037 Quantitative Methods +q-bio/0411038 Subcellular Processes +q-bio/0411039 Other Quantitative Biology +q-bio/0411047 Populations and Evolution +q-bio/0411048 Tissues and Organs +q-bio/0411050 Biomolecules +q-bio/0411052 Molecular Networks +q-bio/0412001 Biomolecules +q-bio/0412007 Biomolecules +q-bio/0412008 Biomolecules +q-bio/0412009 Biomolecules +q-bio/0412016 Biomolecules +q-bio/0412032 Biomolecules +q-bio/0412036 Neurons and Cognition +q-bio/0412037 Genomics +q-bio/0412039 Biomolecules +q-bio/0412044 Populations and Evolution +q-bio/0412049 Populations and Evolution +q-bio/0412050 Cell Behavior +quant-ph/0301003 +quant-ph/0301005 +quant-ph/0301006 +quant-ph/0301007 +quant-ph/0301012 +quant-ph/0301015 +quant-ph/0301028 +quant-ph/0301029 +quant-ph/0301034 +quant-ph/0301035 +quant-ph/0301037 +quant-ph/0301044 +quant-ph/0301052 +quant-ph/0301053 +quant-ph/0301054 +quant-ph/0301055 +quant-ph/0301056 +quant-ph/0301057 +quant-ph/0301058 +quant-ph/0301060 +quant-ph/0301066 +quant-ph/0301072 +quant-ph/0301073 +quant-ph/0301074 +quant-ph/0301081 +quant-ph/0301084 +quant-ph/0301085 +quant-ph/0301086 +quant-ph/0301089 +quant-ph/0301090 +quant-ph/0301094 +quant-ph/0301095 +quant-ph/0301099 +quant-ph/0301104 +quant-ph/0301105 +quant-ph/0301108 +quant-ph/0301109 +quant-ph/0301112 +quant-ph/0301114 +quant-ph/0301122 +quant-ph/0301124 +quant-ph/0301126 +quant-ph/0301127 +quant-ph/0301128 +quant-ph/0301130 +quant-ph/0301131 +quant-ph/0301132 +quant-ph/0301134 +quant-ph/0301135 +quant-ph/0301136 +quant-ph/0301137 +quant-ph/0301146 +quant-ph/0301149 +quant-ph/0301152 +quant-ph/0301154 +quant-ph/0301157 +quant-ph/0301164 +quant-ph/0301166 +quant-ph/0301167 +quant-ph/0301169 +quant-ph/0301171 +quant-ph/0301175 +quant-ph/0301178 +quant-ph/0301180 +quant-ph/0302004 +quant-ph/0302005 +quant-ph/0302006 +quant-ph/0302008 +quant-ph/0302010 +quant-ph/0302013 +quant-ph/0302014 +quant-ph/0302016 +quant-ph/0302017 +quant-ph/0302023 +quant-ph/0302024 +quant-ph/0302031 +quant-ph/0302032 +quant-ph/0302035 +quant-ph/0302036 +quant-ph/0302037 +quant-ph/0302039 +quant-ph/0302040 +quant-ph/0302042 +quant-ph/0302043 +quant-ph/0302048 +quant-ph/0302052 +quant-ph/0302054 +quant-ph/0302055 +quant-ph/0302056 +quant-ph/0302060 +quant-ph/0302062 +quant-ph/0302066 +quant-ph/0302067 +quant-ph/0302068 +quant-ph/0302070 +quant-ph/0302074 +quant-ph/0302076 +quant-ph/0302077 +quant-ph/0302078 +quant-ph/0302080 +quant-ph/0302081 +quant-ph/0302082 +quant-ph/0302084 +quant-ph/0302086 +quant-ph/0302087 +quant-ph/0302089 +quant-ph/0302093 +quant-ph/0302094 +quant-ph/0302096 +quant-ph/0302098 +quant-ph/0302102 +quant-ph/0302103 +quant-ph/0302104 +quant-ph/0302105 +quant-ph/0302120 +quant-ph/0302124 +quant-ph/0302126 +quant-ph/0302131 +quant-ph/0302135 +quant-ph/0302136 +quant-ph/0302137 +quant-ph/0302138 +quant-ph/0302140 +quant-ph/0302141 +quant-ph/0302144 +quant-ph/0302145 +quant-ph/0302147 +quant-ph/0302149 +quant-ph/0302151 +quant-ph/0302161 +quant-ph/0302163 +quant-ph/0302164 +quant-ph/0302168 +quant-ph/0302172 +quant-ph/0302173 +quant-ph/0302178 +quant-ph/0302179 +quant-ph/0302188 +quant-ph/0302192 +quant-ph/0302193 +quant-ph/0302194 +quant-ph/0302196 +quant-ph/0302197 +quant-ph/0302201 +quant-ph/0302202 +quant-ph/0303001 +quant-ph/0303002 +quant-ph/0303007 +quant-ph/0303008 +quant-ph/0303010 +quant-ph/0303011 +quant-ph/0303012 +quant-ph/0303015 +quant-ph/0303019 +quant-ph/0303021 +quant-ph/0303022 +quant-ph/0303023 +quant-ph/0303027 +quant-ph/0303028 +quant-ph/0303030 +quant-ph/0303031 +quant-ph/0303032 +quant-ph/0303035 +quant-ph/0303037 +quant-ph/0303038 +quant-ph/0303042 +quant-ph/0303043 +quant-ph/0303045 +quant-ph/0303046 +quant-ph/0303047 +quant-ph/0303053 +quant-ph/0303060 +quant-ph/0303061 +quant-ph/0303062 +quant-ph/0303063 +quant-ph/0303069 +quant-ph/0303070 +quant-ph/0303077 +quant-ph/0303078 +quant-ph/0303080 +quant-ph/0303081 +quant-ph/0303083 +quant-ph/0303085 +quant-ph/0303087 +quant-ph/0303088 +quant-ph/0303091 +quant-ph/0303093 +quant-ph/0303094 +quant-ph/0303095 +quant-ph/0303099 +quant-ph/0303100 +quant-ph/0303103 +quant-ph/0303105 +quant-ph/0303109 +quant-ph/0303111 +quant-ph/0303115 +quant-ph/0303116 +quant-ph/0303119 +quant-ph/0303120 +quant-ph/0303122 +quant-ph/0303125 +quant-ph/0303129 +quant-ph/0303130 +quant-ph/0303132 +quant-ph/0303133 +quant-ph/0303134 +quant-ph/0303136 +quant-ph/0303137 +quant-ph/0303139 +quant-ph/0303144 +quant-ph/0303145 +quant-ph/0303151 +quant-ph/0303155 +quant-ph/0303159 +quant-ph/0303165 +quant-ph/0303168 +quant-ph/0303171 +quant-ph/0303177 +quant-ph/0303178 +quant-ph/0303180 +quant-ph/0303182 +quant-ph/0303184 +quant-ph/0304001 +quant-ph/0304002 +quant-ph/0304003 +quant-ph/0304004 +quant-ph/0304005 +quant-ph/0304008 +quant-ph/0304009 +quant-ph/0304010 +quant-ph/0304012 +quant-ph/0304013 +quant-ph/0304015 +quant-ph/0304019 +quant-ph/0304020 +quant-ph/0304022 +quant-ph/0304027 +quant-ph/0304030 +quant-ph/0304032 +quant-ph/0304036 +quant-ph/0304037 +quant-ph/0304038 +quant-ph/0304039 +quant-ph/0304041 +quant-ph/0304043 +quant-ph/0304044 +quant-ph/0304046 +quant-ph/0304050 +quant-ph/0304053 +quant-ph/0304054 +quant-ph/0304058 +quant-ph/0304063 +quant-ph/0304066 +quant-ph/0304067 +quant-ph/0304068 +quant-ph/0304069 +quant-ph/0304071 +quant-ph/0304072 +quant-ph/0304075 +quant-ph/0304077 +quant-ph/0304083 +quant-ph/0304084 +quant-ph/0304087 +quant-ph/0304091 +quant-ph/0304092 +quant-ph/0304093 +quant-ph/0304094 +quant-ph/0304095 +quant-ph/0304097 +quant-ph/0304100 +quant-ph/0304101 +quant-ph/0304103 +quant-ph/0304104 +quant-ph/0304105 +quant-ph/0304107 +quant-ph/0304110 +quant-ph/0304111 +quant-ph/0304114 +quant-ph/0304116 +quant-ph/0304117 +quant-ph/0304120 +quant-ph/0304121 +quant-ph/0304122 +quant-ph/0304125 +quant-ph/0304126 +quant-ph/0304129 +quant-ph/0304130 +quant-ph/0304132 +quant-ph/0304133 +quant-ph/0304134 +quant-ph/0304138 +quant-ph/0304139 +quant-ph/0304141 +quant-ph/0304143 +quant-ph/0304145 +quant-ph/0304147 +quant-ph/0304151 +quant-ph/0304152 +quant-ph/0304155 +quant-ph/0304156 +quant-ph/0304160 +quant-ph/0304163 +quant-ph/0304164 +quant-ph/0304168 +quant-ph/0304169 +quant-ph/0304173 +quant-ph/0304174 +quant-ph/0304177 +quant-ph/0304181 +quant-ph/0304188 +quant-ph/0304189 +quant-ph/0304190 +quant-ph/0304191 +quant-ph/0304193 +quant-ph/0304194 +quant-ph/0304195 +quant-ph/0304197 +quant-ph/0304201 +quant-ph/0304203 +quant-ph/0304204 +quant-ph/0305001 +quant-ph/0305005 +quant-ph/0305006 +quant-ph/0305007 +quant-ph/0305008 +quant-ph/0305010 +quant-ph/0305011 +quant-ph/0305013 +quant-ph/0305018 +quant-ph/0305019 +quant-ph/0305023 +quant-ph/0305027 +quant-ph/0305033 +quant-ph/0305035 +quant-ph/0305036 +quant-ph/0305038 +quant-ph/0305039 +quant-ph/0305040 +quant-ph/0305041 +quant-ph/0305047 +quant-ph/0305048 +quant-ph/0305051 +quant-ph/0305057 +quant-ph/0305058 +quant-ph/0305060 +quant-ph/0305063 +quant-ph/0305064 +quant-ph/0305065 +quant-ph/0305066 +quant-ph/0305069 +quant-ph/0305070 +quant-ph/0305074 +quant-ph/0305075 +quant-ph/0305077 +quant-ph/0305078 +quant-ph/0305079 +quant-ph/0305082 +quant-ph/0305083 +quant-ph/0305084 +quant-ph/0305101 +quant-ph/0305102 +quant-ph/0305107 +quant-ph/0305108 +quant-ph/0305109 +quant-ph/0305115 +quant-ph/0305116 +quant-ph/0305118 +quant-ph/0305121 +quant-ph/0305122 +quant-ph/0305123 +quant-ph/0305127 +quant-ph/0305132 +quant-ph/0305133 +quant-ph/0305135 +quant-ph/0305138 +quant-ph/0305139 +quant-ph/0305145 +quant-ph/0305147 +quant-ph/0305148 +quant-ph/0305151 +quant-ph/0305156 +quant-ph/0305157 +quant-ph/0305159 +quant-ph/0305162 +quant-ph/0305163 +quant-ph/0305164 +quant-ph/0305166 +quant-ph/0305168 +quant-ph/0305171 +quant-ph/0305172 +quant-ph/0305173 +quant-ph/0305175 +quant-ph/0305177 +quant-ph/0305178 +quant-ph/0305180 +quant-ph/0305181 +quant-ph/0305184 +quant-ph/0305185 +quant-ph/0305186 +quant-ph/0305187 +quant-ph/0305190 +quant-ph/0305191 +quant-ph/0306001 +quant-ph/0306002 +quant-ph/0306004 +quant-ph/0306009 +quant-ph/0306010 +quant-ph/0306012 +quant-ph/0306013 +quant-ph/0306015 +quant-ph/0306017 +quant-ph/0306026 +quant-ph/0306029 +quant-ph/0306031 +quant-ph/0306034 +quant-ph/0306035 +quant-ph/0306037 +quant-ph/0306038 +quant-ph/0306039 +quant-ph/0306040 +quant-ph/0306041 +quant-ph/0306043 +quant-ph/0306046 +quant-ph/0306055 +quant-ph/0306056 +quant-ph/0306057 +quant-ph/0306061 +quant-ph/0306062 +quant-ph/0306063 +quant-ph/0306070 +quant-ph/0306081 +quant-ph/0306083 +quant-ph/0306084 +quant-ph/0306088 +quant-ph/0306090 +quant-ph/0306091 +quant-ph/0306093 +quant-ph/0306094 +quant-ph/0306097 +quant-ph/0306098 +quant-ph/0306099 +quant-ph/0306100 +quant-ph/0306105 +quant-ph/0306106 +quant-ph/0306108 +quant-ph/0306109 +quant-ph/0306111 +quant-ph/0306114 +quant-ph/0306116 +quant-ph/0306117 +quant-ph/0306120 +quant-ph/0306121 +quant-ph/0306123 +quant-ph/0306124 +quant-ph/0306129 +quant-ph/0306133 +quant-ph/0306134 +quant-ph/0306136 +quant-ph/0306142 +quant-ph/0306143 +quant-ph/0306144 +quant-ph/0306145 +quant-ph/0306147 +quant-ph/0306148 +quant-ph/0306152 +quant-ph/0306154 +quant-ph/0306157 +quant-ph/0306159 +quant-ph/0306160 +quant-ph/0306161 +quant-ph/0306162 +quant-ph/0306166 +quant-ph/0306168 +quant-ph/0306169 +quant-ph/0306171 +quant-ph/0306174 +quant-ph/0306175 +quant-ph/0306176 +quant-ph/0306177 +quant-ph/0306178 +quant-ph/0306184 +quant-ph/0306188 +quant-ph/0306193 +quant-ph/0306196 +quant-ph/0306198 +quant-ph/0306199 +quant-ph/0306202 +quant-ph/0306204 +quant-ph/0306205 +quant-ph/0307002 +quant-ph/0307004 +quant-ph/0307005 +quant-ph/0307006 +quant-ph/0307015 +quant-ph/0307020 +quant-ph/0307021 +quant-ph/0307024 +quant-ph/0307025 +quant-ph/0307027 +quant-ph/0307028 +quant-ph/0307033 +quant-ph/0307034 +quant-ph/0307038 +quant-ph/0307039 +quant-ph/0307040 +quant-ph/0307041 +quant-ph/0307045 +quant-ph/0307046 +quant-ph/0307052 +quant-ph/0307055 +quant-ph/0307057 +quant-ph/0307059 +quant-ph/0307060 +quant-ph/0307061 +quant-ph/0307062 +quant-ph/0307063 +quant-ph/0307064 +quant-ph/0307067 +quant-ph/0307070 +quant-ph/0307075 +quant-ph/0307078 +quant-ph/0307079 +quant-ph/0307081 +quant-ph/0307083 +quant-ph/0307084 +quant-ph/0307087 +quant-ph/0307088 +quant-ph/0307089 +quant-ph/0307091 +quant-ph/0307096 +quant-ph/0307098 +quant-ph/0307099 +quant-ph/0307105 +quant-ph/0307106 +quant-ph/0307112 +quant-ph/0307113 +quant-ph/0307114 +quant-ph/0307119 +quant-ph/0307124 +quant-ph/0307127 +quant-ph/0307131 +quant-ph/0307135 +quant-ph/0307137 +quant-ph/0307141 +quant-ph/0307142 +quant-ph/0307145 +quant-ph/0307146 +quant-ph/0307148 +quant-ph/0307151 +quant-ph/0307158 +quant-ph/0307160 +quant-ph/0307163 +quant-ph/0307164 +quant-ph/0307167 +quant-ph/0307169 +quant-ph/0307171 +quant-ph/0307174 +quant-ph/0307177 +quant-ph/0307184 +quant-ph/0307185 +quant-ph/0307186 +quant-ph/0307194 +quant-ph/0307198 +quant-ph/0307199 +quant-ph/0307200 +quant-ph/0307206 +quant-ph/0307207 +quant-ph/0307208 +quant-ph/0307209 +quant-ph/0307212 +quant-ph/0307213 +quant-ph/0307216 +quant-ph/0307219 +quant-ph/0307223 +quant-ph/0307229 +quant-ph/0307230 +quant-ph/0307231 +quant-ph/0307235 +quant-ph/0307239 +quant-ph/0308003 +quant-ph/0308005 +quant-ph/0308006 +quant-ph/0308007 +quant-ph/0308008 +quant-ph/0308012 +quant-ph/0308013 +quant-ph/0308016 +quant-ph/0308019 +quant-ph/0308024 +quant-ph/0308029 +quant-ph/0308030 +quant-ph/0308031 +quant-ph/0308035 +quant-ph/0308037 +quant-ph/0308040 +quant-ph/0308041 +quant-ph/0308042 +quant-ph/0308044 +quant-ph/0308045 +quant-ph/0308046 +quant-ph/0308057 +quant-ph/0308058 +quant-ph/0308059 +quant-ph/0308063 +quant-ph/0308064 +quant-ph/0308066 +quant-ph/0308067 +quant-ph/0308068 +quant-ph/0308071 +quant-ph/0308075 +quant-ph/0308076 +quant-ph/0308079 +quant-ph/0308080 +quant-ph/0308083 +quant-ph/0308085 +quant-ph/0308086 +quant-ph/0308087 +quant-ph/0308089 +quant-ph/0308090 +quant-ph/0308095 +quant-ph/0308099 +quant-ph/0308101 +quant-ph/0308104 +quant-ph/0308107 +quant-ph/0308111 +quant-ph/0308112 +quant-ph/0308116 +quant-ph/0308117 +quant-ph/0308118 +quant-ph/0308119 +quant-ph/0308123 +quant-ph/0308124 +quant-ph/0308127 +quant-ph/0308128 +quant-ph/0308131 +quant-ph/0308134 +quant-ph/0308135 +quant-ph/0308136 +quant-ph/0308137 +quant-ph/0308145 +quant-ph/0308151 +quant-ph/0308152 +quant-ph/0308153 +quant-ph/0308159 +quant-ph/0308164 +quant-ph/0308165 +quant-ph/0308167 +quant-ph/0308169 +quant-ph/0308171 +quant-ph/0308172 +quant-ph/0308173 +quant-ph/0308174 +quant-ph/0309001 +quant-ph/0309003 +quant-ph/0309004 +quant-ph/0309005 +quant-ph/0309007 +quant-ph/0309009 +quant-ph/0309011 +quant-ph/0309013 +quant-ph/0309015 +quant-ph/0309016 +quant-ph/0309025 +quant-ph/0309026 +quant-ph/0309028 +quant-ph/0309030 +quant-ph/0309037 +quant-ph/0309038 +quant-ph/0309039 +quant-ph/0309040 +quant-ph/0309041 +quant-ph/0309043 +quant-ph/0309050 +quant-ph/0309052 +quant-ph/0309053 +quant-ph/0309054 +quant-ph/0309058 +quant-ph/0309062 +quant-ph/0309063 +quant-ph/0309066 +quant-ph/0309067 +quant-ph/0309071 +quant-ph/0309073 +quant-ph/0309074 +quant-ph/0309075 +quant-ph/0309078 +quant-ph/0309081 +quant-ph/0309083 +quant-ph/0309084 +quant-ph/0309086 +quant-ph/0309088 +quant-ph/0309090 +quant-ph/0309091 +quant-ph/0309092 +quant-ph/0309094 +quant-ph/0309096 +quant-ph/0309098 +quant-ph/0309100 +quant-ph/0309106 +quant-ph/0309107 +quant-ph/0309110 +quant-ph/0309116 +quant-ph/0309117 +quant-ph/0309118 +quant-ph/0309119 +quant-ph/0309133 +quant-ph/0309135 +quant-ph/0309142 +quant-ph/0309143 +quant-ph/0309148 +quant-ph/0309149 +quant-ph/0309150 +quant-ph/0309151 +quant-ph/0309154 +quant-ph/0309155 +quant-ph/0309157 +quant-ph/0309158 +quant-ph/0309160 +quant-ph/0309162 +quant-ph/0309168 +quant-ph/0309170 +quant-ph/0309175 +quant-ph/0309177 +quant-ph/0309180 +quant-ph/0309181 +quant-ph/0309182 +quant-ph/0309185 +quant-ph/0309191 +quant-ph/0309192 +quant-ph/0309193 +quant-ph/0309194 +quant-ph/0309195 +quant-ph/0309197 +quant-ph/0309206 +quant-ph/0309207 +quant-ph/0309208 +quant-ph/0309209 +quant-ph/0309210 +quant-ph/0309214 +quant-ph/0309215 +quant-ph/0309216 +quant-ph/0309218 +quant-ph/0309222 +quant-ph/0310002 +quant-ph/0310003 +quant-ph/0310006 +quant-ph/0310007 +quant-ph/0310011 +quant-ph/0310020 +quant-ph/0310021 +quant-ph/0310027 +quant-ph/0310029 +quant-ph/0310032 +quant-ph/0310037 +quant-ph/0310038 +quant-ph/0310044 +quant-ph/0310047 +quant-ph/0310048 +quant-ph/0310050 +quant-ph/0310054 +quant-ph/0310058 +quant-ph/0310062 +quant-ph/0310063 +quant-ph/0310066 +quant-ph/0310072 +quant-ph/0310079 +quant-ph/0310081 +quant-ph/0310085 +quant-ph/0310086 +quant-ph/0310088 +quant-ph/0310089 +quant-ph/0310090 +quant-ph/0310091 +quant-ph/0310102 +quant-ph/0310106 +quant-ph/0310108 +quant-ph/0310109 +quant-ph/0310111 +quant-ph/0310112 +quant-ph/0310113 +quant-ph/0310118 +quant-ph/0310121 +quant-ph/0310123 +quant-ph/0310124 +quant-ph/0310125 +quant-ph/0310126 +quant-ph/0310129 +quant-ph/0310132 +quant-ph/0310139 +quant-ph/0310140 +quant-ph/0310144 +quant-ph/0310145 +quant-ph/0310147 +quant-ph/0310148 +quant-ph/0310154 +quant-ph/0310158 +quant-ph/0310160 +quant-ph/0310167 +quant-ph/0310168 +quant-ph/0310170 +quant-ph/0310171 +quant-ph/0310175 +quant-ph/0310176 +quant-ph/0310177 +quant-ph/0310180 +quant-ph/0310181 +quant-ph/0310186 +quant-ph/0310187 +quant-ph/0310193 +quant-ph/0311005 +quant-ph/0311009 +quant-ph/0311012 +quant-ph/0311015 +quant-ph/0311017 +quant-ph/0311019 +quant-ph/0311020 +quant-ph/0311021 +quant-ph/0311025 +quant-ph/0311026 +quant-ph/0311027 +quant-ph/0311029 +quant-ph/0311030 +quant-ph/0311031 +quant-ph/0311033 +quant-ph/0311034 +quant-ph/0311035 +quant-ph/0311037 +quant-ph/0311046 +quant-ph/0311053 +quant-ph/0311054 +quant-ph/0311056 +quant-ph/0311058 +quant-ph/0311062 +quant-ph/0311064 +quant-ph/0311066 +quant-ph/0311069 +quant-ph/0311070 +quant-ph/0311075 +quant-ph/0311076 +quant-ph/0311077 +quant-ph/0311083 +quant-ph/0311084 +quant-ph/0311088 +quant-ph/0311093 +quant-ph/0311095 +quant-ph/0311096 +quant-ph/0311097 +quant-ph/0311099 +quant-ph/0311103 +quant-ph/0311109 +quant-ph/0311111 +quant-ph/0311113 +quant-ph/0311114 +quant-ph/0311117 +quant-ph/0311118 +quant-ph/0311119 +quant-ph/0311120 +quant-ph/0311121 +quant-ph/0311122 +quant-ph/0311125 +quant-ph/0311129 +quant-ph/0311132 +quant-ph/0311135 +quant-ph/0311139 +quant-ph/0311144 +quant-ph/0311146 +quant-ph/0311147 +quant-ph/0311150 +quant-ph/0311151 +quant-ph/0311154 +quant-ph/0311155 +quant-ph/0311159 +quant-ph/0311160 +quant-ph/0311162 +quant-ph/0311163 +quant-ph/0311166 +quant-ph/0311168 +quant-ph/0311170 +quant-ph/0311172 +quant-ph/0311177 +quant-ph/0311179 +quant-ph/0311180 +quant-ph/0311181 +quant-ph/0311187 +quant-ph/0311197 +quant-ph/0311198 +quant-ph/0312001 +quant-ph/0312007 +quant-ph/0312016 +quant-ph/0312018 +quant-ph/0312022 +quant-ph/0312026 +quant-ph/0312027 +quant-ph/0312030 +quant-ph/0312039 +quant-ph/0312041 +quant-ph/0312047 +quant-ph/0312054 +quant-ph/0312061 +quant-ph/0312062 +quant-ph/0312064 +quant-ph/0312068 +quant-ph/0312069 +quant-ph/0312075 +quant-ph/0312079 +quant-ph/0312080 +quant-ph/0312083 +quant-ph/0312084 +quant-ph/0312085 +quant-ph/0312086 +quant-ph/0312088 +quant-ph/0312089 +quant-ph/0312092 +quant-ph/0312093 +quant-ph/0312095 +quant-ph/0312096 +quant-ph/0312097 +quant-ph/0312098 +quant-ph/0312099 +quant-ph/0312103 +quant-ph/0312104 +quant-ph/0312108 +quant-ph/0312110 +quant-ph/0312114 +quant-ph/0312116 +quant-ph/0312118 +quant-ph/0312119 +quant-ph/0312121 +quant-ph/0312122 +quant-ph/0312123 +quant-ph/0312124 +quant-ph/0312127 +quant-ph/0312128 +quant-ph/0312130 +quant-ph/0312135 +quant-ph/0312140 +quant-ph/0312142 +quant-ph/0312146 +quant-ph/0312149 +quant-ph/0312151 +quant-ph/0312153 +quant-ph/0312158 +quant-ph/0312159 +quant-ph/0312163 +quant-ph/0312171 +quant-ph/0312173 +quant-ph/0312175 +quant-ph/0312182 +quant-ph/0312185 +quant-ph/0312186 +quant-ph/0312187 +quant-ph/0312189 +quant-ph/0312193 +quant-ph/0312194 +quant-ph/0312195 +quant-ph/0312197 +quant-ph/0312200 +quant-ph/0312202 +quant-ph/0312205 +quant-ph/0312216 +quant-ph/0312217 +quant-ph/0312219 +quant-ph/0312220 +quant-ph/0312221 +quant-ph/0312222 +quant-ph/0312231 +quant-ph/0401001 +quant-ph/0401003 +quant-ph/0401005 +quant-ph/0401007 +quant-ph/0401010 +quant-ph/0401012 +quant-ph/0401014 +quant-ph/0401016 +quant-ph/0401017 +quant-ph/0401018 +quant-ph/0401021 +quant-ph/0401022 +quant-ph/0401025 +quant-ph/0401029 +quant-ph/0401031 +quant-ph/0401034 +quant-ph/0401036 +quant-ph/0401038 +quant-ph/0401039 +quant-ph/0401040 +quant-ph/0401045 +quant-ph/0401047 +quant-ph/0401048 +quant-ph/0401054 +quant-ph/0401055 +quant-ph/0401056 +quant-ph/0401061 +quant-ph/0401064 +quant-ph/0401071 +quant-ph/0401074 +quant-ph/0401075 +quant-ph/0401081 +quant-ph/0401085 +quant-ph/0401086 +quant-ph/0401087 +quant-ph/0401090 +quant-ph/0401092 +quant-ph/0401093 +quant-ph/0401097 +quant-ph/0401099 +quant-ph/0401101 +quant-ph/0401102 +quant-ph/0401106 +quant-ph/0401107 +quant-ph/0401108 +quant-ph/0401109 +quant-ph/0401111 +quant-ph/0401116 +quant-ph/0401120 +quant-ph/0401122 +quant-ph/0401130 +quant-ph/0401132 +quant-ph/0401133 +quant-ph/0401136 +quant-ph/0401137 +quant-ph/0401138 +quant-ph/0401141 +quant-ph/0401142 +quant-ph/0401143 +quant-ph/0401144 +quant-ph/0401145 +quant-ph/0401147 +quant-ph/0401149 +quant-ph/0401150 +quant-ph/0401151 +quant-ph/0401153 +quant-ph/0401155 +quant-ph/0401156 +quant-ph/0401158 +quant-ph/0401161 +quant-ph/0401163 +quant-ph/0401166 +quant-ph/0401169 +quant-ph/0401170 +quant-ph/0401171 +quant-ph/0401174 +quant-ph/0401176 +quant-ph/0401185 +quant-ph/0401187 +quant-ph/0402004 +quant-ph/0402005 +quant-ph/0402007 +quant-ph/0402009 +quant-ph/0402013 +quant-ph/0402015 +quant-ph/0402016 +quant-ph/0402017 +quant-ph/0402019 +quant-ph/0402027 +quant-ph/0402028 +quant-ph/0402031 +quant-ph/0402034 +quant-ph/0402035 +quant-ph/0402036 +quant-ph/0402042 +quant-ph/0402048 +quant-ph/0402050 +quant-ph/0402051 +quant-ph/0402052 +quant-ph/0402053 +quant-ph/0402059 +quant-ph/0402061 +quant-ph/0402063 +quant-ph/0402064 +quant-ph/0402067 +quant-ph/0402071 +quant-ph/0402073 +quant-ph/0402075 +quant-ph/0402078 +quant-ph/0402083 +quant-ph/0402087 +quant-ph/0402088 +quant-ph/0402089 +quant-ph/0402091 +quant-ph/0402093 +quant-ph/0402096 +quant-ph/0402098 +quant-ph/0402105 +quant-ph/0402106 +quant-ph/0402108 +quant-ph/0402109 +quant-ph/0402112 +quant-ph/0402114 +quant-ph/0402121 +quant-ph/0402126 +quant-ph/0402133 +quant-ph/0402138 +quant-ph/0402142 +quant-ph/0402143 +quant-ph/0402150 +quant-ph/0402152 +quant-ph/0402153 +quant-ph/0402154 +quant-ph/0402157 +quant-ph/0402158 +quant-ph/0402159 +quant-ph/0402161 +quant-ph/0402162 +quant-ph/0402165 +quant-ph/0402167 +quant-ph/0402168 +quant-ph/0402175 +quant-ph/0402176 +quant-ph/0402177 +quant-ph/0402179 +quant-ph/0402180 +quant-ph/0402184 +quant-ph/0402185 +quant-ph/0402186 +quant-ph/0402187 +quant-ph/0402189 +quant-ph/0402191 +quant-ph/0402192 +quant-ph/0402193 +quant-ph/0402195 +quant-ph/0402199 +quant-ph/0402201 +quant-ph/0402202 +quant-ph/0402206 +quant-ph/0402208 +quant-ph/0402211 +quant-ph/0402212 +quant-ph/0402213 +quant-ph/0403001 +quant-ph/0403002 +quant-ph/0403004 +quant-ph/0403010 +quant-ph/0403012 +quant-ph/0403017 +quant-ph/0403022 +quant-ph/0403023 +quant-ph/0403025 +quant-ph/0403026 +quant-ph/0403027 +quant-ph/0403028 +quant-ph/0403034 +quant-ph/0403035 +quant-ph/0403039 +quant-ph/0403041 +quant-ph/0403050 +quant-ph/0403054 +quant-ph/0403057 +quant-ph/0403059 +quant-ph/0403060 +quant-ph/0403063 +quant-ph/0403068 +quant-ph/0403075 +quant-ph/0403077 +quant-ph/0403080 +quant-ph/0403086 +quant-ph/0403089 +quant-ph/0403091 +quant-ph/0403092 +quant-ph/0403094 +quant-ph/0403095 +quant-ph/0403096 +quant-ph/0403097 +quant-ph/0403099 +quant-ph/0403102 +quant-ph/0403103 +quant-ph/0403104 +quant-ph/0403106 +quant-ph/0403107 +quant-ph/0403110 +quant-ph/0403113 +quant-ph/0403114 +quant-ph/0403115 +quant-ph/0403116 +quant-ph/0403118 +quant-ph/0403122 +quant-ph/0403123 +quant-ph/0403124 +quant-ph/0403125 +quant-ph/0403126 +quant-ph/0403131 +quant-ph/0403132 +quant-ph/0403134 +quant-ph/0403135 +quant-ph/0403136 +quant-ph/0403137 +quant-ph/0403139 +quant-ph/0403142 +quant-ph/0403143 +quant-ph/0403146 +quant-ph/0403147 +quant-ph/0403149 +quant-ph/0403151 +quant-ph/0403153 +quant-ph/0403155 +quant-ph/0403158 +quant-ph/0403163 +quant-ph/0403165 +quant-ph/0403166 +quant-ph/0403167 +quant-ph/0403170 +quant-ph/0403178 +quant-ph/0403180 +quant-ph/0403181 +quant-ph/0403183 +quant-ph/0403191 +quant-ph/0403192 +quant-ph/0403197 +quant-ph/0403205 +quant-ph/0403206 +quant-ph/0403207 +quant-ph/0403209 +quant-ph/0403212 +quant-ph/0403214 +quant-ph/0403219 +quant-ph/0403221 +quant-ph/0403222 +quant-ph/0403224 +quant-ph/0403226 +quant-ph/0403228 +quant-ph/0403229 +quant-ph/0403231 +quant-ph/0403232 +quant-ph/0403234 +quant-ph/0404005 +quant-ph/0404009 +quant-ph/0404010 +quant-ph/0404012 +quant-ph/0404013 +quant-ph/0404015 +quant-ph/0404016 +quant-ph/0404017 +quant-ph/0404018 +quant-ph/0404019 +quant-ph/0404022 +quant-ph/0404029 +quant-ph/0404037 +quant-ph/0404038 +quant-ph/0404039 +quant-ph/0404041 +quant-ph/0404042 +quant-ph/0404043 +quant-ph/0404048 +quant-ph/0404049 +quant-ph/0404051 +quant-ph/0404052 +quant-ph/0404054 +quant-ph/0404057 +quant-ph/0404065 +quant-ph/0404069 +quant-ph/0404072 +quant-ph/0404073 +quant-ph/0404074 +quant-ph/0404079 +quant-ph/0404083 +quant-ph/0404089 +quant-ph/0404095 +quant-ph/0404096 +quant-ph/0404099 +quant-ph/0404100 +quant-ph/0404101 +quant-ph/0404102 +quant-ph/0404105 +quant-ph/0404106 +quant-ph/0404107 +quant-ph/0404108 +quant-ph/0404109 +quant-ph/0404111 +quant-ph/0404115 +quant-ph/0404117 +quant-ph/0404120 +quant-ph/0404123 +quant-ph/0404124 +quant-ph/0404127 +quant-ph/0404128 +quant-ph/0404129 +quant-ph/0404131 +quant-ph/0404135 +quant-ph/0404136 +quant-ph/0404137 +quant-ph/0404139 +quant-ph/0404140 +quant-ph/0404141 +quant-ph/0404142 +quant-ph/0404149 +quant-ph/0404150 +quant-ph/0404151 +quant-ph/0404152 +quant-ph/0404155 +quant-ph/0404157 +quant-ph/0404160 +quant-ph/0404164 +quant-ph/0404168 +quant-ph/0404172 +quant-ph/0404173 +quant-ph/0404174 +quant-ph/0404176 +quant-ph/0404179 +quant-ph/0405006 +quant-ph/0405010 +quant-ph/0405012 +quant-ph/0405013 +quant-ph/0405014 +quant-ph/0405015 +quant-ph/0405017 +quant-ph/0405020 +quant-ph/0405021 +quant-ph/0405023 +quant-ph/0405031 +quant-ph/0405034 +quant-ph/0405035 +quant-ph/0405036 +quant-ph/0405037 +quant-ph/0405041 +quant-ph/0405042 +quant-ph/0405043 +quant-ph/0405046 +quant-ph/0405049 +quant-ph/0405050 +quant-ph/0405051 +quant-ph/0405054 +quant-ph/0405057 +quant-ph/0405061 +quant-ph/0405062 +quant-ph/0405065 +quant-ph/0405066 +quant-ph/0405067 +quant-ph/0405068 +quant-ph/0405072 +quant-ph/0405073 +quant-ph/0405078 +quant-ph/0405079 +quant-ph/0405080 +quant-ph/0405082 +quant-ph/0405083 +quant-ph/0405087 +quant-ph/0405091 +quant-ph/0405094 +quant-ph/0405097 +quant-ph/0405099 +quant-ph/0405100 +quant-ph/0405101 +quant-ph/0405102 +quant-ph/0405105 +quant-ph/0405109 +quant-ph/0405110 +quant-ph/0405115 +quant-ph/0405117 +quant-ph/0405118 +quant-ph/0405119 +quant-ph/0405121 +quant-ph/0405125 +quant-ph/0405126 +quant-ph/0405127 +quant-ph/0405128 +quant-ph/0405130 +quant-ph/0405131 +quant-ph/0405133 +quant-ph/0405134 +quant-ph/0405135 +quant-ph/0405136 +quant-ph/0405137 +quant-ph/0405139 +quant-ph/0405140 +quant-ph/0405141 +quant-ph/0405143 +quant-ph/0405144 +quant-ph/0405145 +quant-ph/0405147 +quant-ph/0405148 +quant-ph/0405150 +quant-ph/0405151 +quant-ph/0405153 +quant-ph/0405154 +quant-ph/0405156 +quant-ph/0405161 +quant-ph/0405162 +quant-ph/0405167 +quant-ph/0405169 +quant-ph/0405173 +quant-ph/0405177 +quant-ph/0405178 +quant-ph/0405179 +quant-ph/0405181 +quant-ph/0405188 +quant-ph/0405193 +quant-ph/0406001 +quant-ph/0406006 +quant-ph/0406007 +quant-ph/0406008 +quant-ph/0406012 +quant-ph/0406013 +quant-ph/0406014 +quant-ph/0406015 +quant-ph/0406021 +quant-ph/0406022 +quant-ph/0406023 +quant-ph/0406024 +quant-ph/0406027 +quant-ph/0406028 +quant-ph/0406029 +quant-ph/0406030 +quant-ph/0406031 +quant-ph/0406033 +quant-ph/0406038 +quant-ph/0406041 +quant-ph/0406045 +quant-ph/0406047 +quant-ph/0406049 +quant-ph/0406050 +quant-ph/0406054 +quant-ph/0406056 +quant-ph/0406057 +quant-ph/0406058 +quant-ph/0406060 +quant-ph/0406064 +quant-ph/0406065 +quant-ph/0406067 +quant-ph/0406068 +quant-ph/0406069 +quant-ph/0406070 +quant-ph/0406071 +quant-ph/0406074 +quant-ph/0406076 +quant-ph/0406078 +quant-ph/0406080 +quant-ph/0406085 +quant-ph/0406087 +quant-ph/0406091 +quant-ph/0406093 +quant-ph/0406095 +quant-ph/0406099 +quant-ph/0406100 +quant-ph/0406101 +quant-ph/0406102 +quant-ph/0406103 +quant-ph/0406105 +quant-ph/0406106 +quant-ph/0406107 +quant-ph/0406108 +quant-ph/0406111 +quant-ph/0406112 +quant-ph/0406113 +quant-ph/0406115 +quant-ph/0406117 +quant-ph/0406118 +quant-ph/0406120 +quant-ph/0406125 +quant-ph/0406137 +quant-ph/0406140 +quant-ph/0406141 +quant-ph/0406146 +quant-ph/0406150 +quant-ph/0406158 +quant-ph/0406161 +quant-ph/0406163 +quant-ph/0406169 +quant-ph/0406172 +quant-ph/0406174 +quant-ph/0406182 +quant-ph/0406183 +quant-ph/0406185 +quant-ph/0406191 +quant-ph/0406193 +quant-ph/0406196 +quant-ph/0406200 +quant-ph/0406204 +quant-ph/0406205 +quant-ph/0406207 +quant-ph/0406208 +quant-ph/0406209 +quant-ph/0406213 +quant-ph/0406214 +quant-ph/0406218 +quant-ph/0406222 +quant-ph/0406234 +quant-ph/0406236 +quant-ph/0406238 +quant-ph/0406239 +quant-ph/0407003 +quant-ph/0407004 +quant-ph/0407014 +quant-ph/0407015 +quant-ph/0407018 +quant-ph/0407019 +quant-ph/0407021 +quant-ph/0407024 +quant-ph/0407027 +quant-ph/0407028 +quant-ph/0407034 +quant-ph/0407039 +quant-ph/0407041 +quant-ph/0407042 +quant-ph/0407044 +quant-ph/0407045 +quant-ph/0407046 +quant-ph/0407047 +quant-ph/0407048 +quant-ph/0407051 +quant-ph/0407052 +quant-ph/0407053 +quant-ph/0407055 +quant-ph/0407058 +quant-ph/0407059 +quant-ph/0407060 +quant-ph/0407063 +quant-ph/0407065 +quant-ph/0407073 +quant-ph/0407076 +quant-ph/0407078 +quant-ph/0407080 +quant-ph/0407083 +quant-ph/0407086 +quant-ph/0407088 +quant-ph/0407089 +quant-ph/0407098 +quant-ph/0407101 +quant-ph/0407105 +quant-ph/0407106 +quant-ph/0407107 +quant-ph/0407111 +quant-ph/0407112 +quant-ph/0407113 +quant-ph/0407117 +quant-ph/0407121 +quant-ph/0407132 +quant-ph/0407135 +quant-ph/0407142 +quant-ph/0407144 +quant-ph/0407146 +quant-ph/0407148 +quant-ph/0407149 +quant-ph/0407151 +quant-ph/0407153 +quant-ph/0407154 +quant-ph/0407155 +quant-ph/0407157 +quant-ph/0407158 +quant-ph/0407159 +quant-ph/0407165 +quant-ph/0407168 +quant-ph/0407169 +quant-ph/0407171 +quant-ph/0407173 +quant-ph/0407174 +quant-ph/0407176 +quant-ph/0407177 +quant-ph/0407179 +quant-ph/0407181 +quant-ph/0407186 +quant-ph/0407188 +quant-ph/0407189 +quant-ph/0407192 +quant-ph/0407194 +quant-ph/0407197 +quant-ph/0407202 +quant-ph/0407203 +quant-ph/0407204 +quant-ph/0407205 +quant-ph/0407206 +quant-ph/0407207 +quant-ph/0407209 +quant-ph/0407211 +quant-ph/0407212 +quant-ph/0407213 +quant-ph/0407216 +quant-ph/0407218 +quant-ph/0407219 +quant-ph/0407220 +quant-ph/0407221 +quant-ph/0407222 +quant-ph/0407223 +quant-ph/0407224 +quant-ph/0407225 +quant-ph/0407229 +quant-ph/0407230 +quant-ph/0407231 +quant-ph/0407232 +quant-ph/0407234 +quant-ph/0407236 +quant-ph/0407241 +quant-ph/0407243 +quant-ph/0407246 +quant-ph/0407247 +quant-ph/0407257 +quant-ph/0407258 +quant-ph/0408001 +quant-ph/0408007 +quant-ph/0408008 +quant-ph/0408009 +quant-ph/0408010 +quant-ph/0408011 +quant-ph/0408012 +quant-ph/0408018 +quant-ph/0408020 +quant-ph/0408021 +quant-ph/0408026 +quant-ph/0408027 +quant-ph/0408029 +quant-ph/0408031 +quant-ph/0408032 +quant-ph/0408033 +quant-ph/0408038 +quant-ph/0408039 +quant-ph/0408040 +quant-ph/0408041 +quant-ph/0408043 +quant-ph/0408044 +quant-ph/0408047 +quant-ph/0408049 +quant-ph/0408050 +quant-ph/0408057 +quant-ph/0408058 +quant-ph/0408059 +quant-ph/0408060 +quant-ph/0408061 +quant-ph/0408062 +quant-ph/0408065 +quant-ph/0408066 +quant-ph/0408070 +quant-ph/0408080 +quant-ph/0408083 +quant-ph/0408084 +quant-ph/0408085 +quant-ph/0408087 +quant-ph/0408088 +quant-ph/0408089 +quant-ph/0408091 +quant-ph/0408093 +quant-ph/0408098 +quant-ph/0408099 +quant-ph/0408101 +quant-ph/0408103 +quant-ph/0408105 +quant-ph/0408117 +quant-ph/0408118 +quant-ph/0408120 +quant-ph/0408121 +quant-ph/0408122 +quant-ph/0408123 +quant-ph/0408125 +quant-ph/0408131 +quant-ph/0408138 +quant-ph/0408140 +quant-ph/0408141 +quant-ph/0408142 +quant-ph/0408143 +quant-ph/0408145 +quant-ph/0408149 +quant-ph/0408152 +quant-ph/0408153 +quant-ph/0408159 +quant-ph/0408161 +quant-ph/0408169 +quant-ph/0408170 +quant-ph/0408177 +quant-ph/0408181 +quant-ph/0408182 +quant-ph/0408183 +quant-ph/0408185 +quant-ph/0408188 +quant-ph/0408189 +quant-ph/0408190 +quant-ph/0409002 +quant-ph/0409003 +quant-ph/0409005 +quant-ph/0409007 +quant-ph/0409011 +quant-ph/0409014 +quant-ph/0409015 +quant-ph/0409019 +quant-ph/0409024 +quant-ph/0409027 +quant-ph/0409030 +quant-ph/0409031 +quant-ph/0409034 +quant-ph/0409036 +quant-ph/0409037 +quant-ph/0409039 +quant-ph/0409046 +quant-ph/0409048 +quant-ph/0409049 +quant-ph/0409050 +quant-ph/0409051 +quant-ph/0409053 +quant-ph/0409054 +quant-ph/0409066 +quant-ph/0409067 +quant-ph/0409069 +quant-ph/0409072 +quant-ph/0409076 +quant-ph/0409081 +quant-ph/0409083 +quant-ph/0409085 +quant-ph/0409088 +quant-ph/0409093 +quant-ph/0409095 +quant-ph/0409096 +quant-ph/0409098 +quant-ph/0409100 +quant-ph/0409102 +quant-ph/0409104 +quant-ph/0409106 +quant-ph/0409107 +quant-ph/0409108 +quant-ph/0409109 +quant-ph/0409110 +quant-ph/0409111 +quant-ph/0409114 +quant-ph/0409129 +quant-ph/0409131 +quant-ph/0409133 +quant-ph/0409134 +quant-ph/0409139 +quant-ph/0409140 +quant-ph/0409144 +quant-ph/0409147 +quant-ph/0409150 +quant-ph/0409154 +quant-ph/0409156 +quant-ph/0409157 +quant-ph/0409159 +quant-ph/0409160 +quant-ph/0409161 +quant-ph/0409163 +quant-ph/0409165 +quant-ph/0409168 +quant-ph/0409170 +quant-ph/0409171 +quant-ph/0409172 +quant-ph/0409173 +quant-ph/0409177 +quant-ph/0409178 +quant-ph/0409179 +quant-ph/0409183 +quant-ph/0409185 +quant-ph/0409186 +quant-ph/0409188 +quant-ph/0409193 +quant-ph/0409194 +quant-ph/0409196 +quant-ph/0409199 +quant-ph/0409200 +quant-ph/0409202 +quant-ph/0409206 +quant-ph/0409209 +quant-ph/0409210 +quant-ph/0409211 +quant-ph/0409213 +quant-ph/0409214 +quant-ph/0409215 +quant-ph/0409218 +quant-ph/0409219 +quant-ph/0409221 +quant-ph/0410001 +quant-ph/0410002 +quant-ph/0410005 +quant-ph/0410006 +quant-ph/0410007 +quant-ph/0410010 +quant-ph/0410011 +quant-ph/0410014 +quant-ph/0410015 +quant-ph/0410016 +quant-ph/0410017 +quant-ph/0410018 +quant-ph/0410019 +quant-ph/0410020 +quant-ph/0410022 +quant-ph/0410026 +quant-ph/0410027 +quant-ph/0410029 +quant-ph/0410030 +quant-ph/0410032 +quant-ph/0410035 +quant-ph/0410038 +quant-ph/0410039 +quant-ph/0410041 +quant-ph/0410044 +quant-ph/0410049 +quant-ph/0410055 +quant-ph/0410057 +quant-ph/0410060 +quant-ph/0410062 +quant-ph/0410065 +quant-ph/0410066 +quant-ph/0410070 +quant-ph/0410075 +quant-ph/0410078 +quant-ph/0410079 +quant-ph/0410081 +quant-ph/0410083 +quant-ph/0410085 +quant-ph/0410087 +quant-ph/0410088 +quant-ph/0410090 +quant-ph/0410092 +quant-ph/0410095 +quant-ph/0410096 +quant-ph/0410097 +quant-ph/0410099 +quant-ph/0410100 +quant-ph/0410103 +quant-ph/0410105 +quant-ph/0410106 +quant-ph/0410110 +quant-ph/0410111 +quant-ph/0410112 +quant-ph/0410113 +quant-ph/0410114 +quant-ph/0410115 +quant-ph/0410116 +quant-ph/0410117 +quant-ph/0410119 +quant-ph/0410122 +quant-ph/0410125 +quant-ph/0410126 +quant-ph/0410127 +quant-ph/0410128 +quant-ph/0410129 +quant-ph/0410130 +quant-ph/0410131 +quant-ph/0410132 +quant-ph/0410133 +quant-ph/0410138 +quant-ph/0410140 +quant-ph/0410142 +quant-ph/0410144 +quant-ph/0410145 +quant-ph/0410146 +quant-ph/0410148 +quant-ph/0410149 +quant-ph/0410151 +quant-ph/0410155 +quant-ph/0410156 +quant-ph/0410157 +quant-ph/0410158 +quant-ph/0410159 +quant-ph/0410160 +quant-ph/0410162 +quant-ph/0410163 +quant-ph/0410164 +quant-ph/0410165 +quant-ph/0410166 +quant-ph/0410167 +quant-ph/0410172 +quant-ph/0410175 +quant-ph/0410176 +quant-ph/0410177 +quant-ph/0410180 +quant-ph/0410185 +quant-ph/0410189 +quant-ph/0410194 +quant-ph/0410196 +quant-ph/0410197 +quant-ph/0410199 +quant-ph/0410202 +quant-ph/0410204 +quant-ph/0410206 +quant-ph/0410207 +quant-ph/0410208 +quant-ph/0410209 +quant-ph/0410212 +quant-ph/0410213 +quant-ph/0410215 +quant-ph/0410216 +quant-ph/0410217 +quant-ph/0410218 +quant-ph/0410221 +quant-ph/0410223 +quant-ph/0410224 +quant-ph/0410226 +quant-ph/0410227 +quant-ph/0410228 +quant-ph/0410229 +quant-ph/0410230 +quant-ph/0410232 +quant-ph/0410238 +quant-ph/0410243 +quant-ph/0410244 +quant-ph/0411003 +quant-ph/0411004 +quant-ph/0411006 +quant-ph/0411007 +quant-ph/0411009 +quant-ph/0411010 +quant-ph/0411015 +quant-ph/0411018 +quant-ph/0411021 +quant-ph/0411025 +quant-ph/0411026 +quant-ph/0411028 +quant-ph/0411029 +quant-ph/0411030 +quant-ph/0411031 +quant-ph/0411032 +quant-ph/0411033 +quant-ph/0411040 +quant-ph/0411041 +quant-ph/0411047 +quant-ph/0411048 +quant-ph/0411049 +quant-ph/0411050 +quant-ph/0411052 +quant-ph/0411053 +quant-ph/0411054 +quant-ph/0411055 +quant-ph/0411056 +quant-ph/0411057 +quant-ph/0411058 +quant-ph/0411063 +quant-ph/0411066 +quant-ph/0411068 +quant-ph/0411070 +quant-ph/0411076 +quant-ph/0411080 +quant-ph/0411082 +quant-ph/0411086 +quant-ph/0411088 +quant-ph/0411091 +quant-ph/0411094 +quant-ph/0411098 +quant-ph/0411100 +quant-ph/0411105 +quant-ph/0411106 +quant-ph/0411110 +quant-ph/0411114 +quant-ph/0411115 +quant-ph/0411117 +quant-ph/0411120 +quant-ph/0411122 +quant-ph/0411125 +quant-ph/0411126 +quant-ph/0411127 +quant-ph/0411129 +quant-ph/0411130 +quant-ph/0411132 +quant-ph/0411136 +quant-ph/0411138 +quant-ph/0411145 +quant-ph/0411151 +quant-ph/0411162 +quant-ph/0411166 +quant-ph/0411171 +quant-ph/0411179 +quant-ph/0411181 +quant-ph/0411183 +quant-ph/0411184 +quant-ph/0411186 +quant-ph/0411191 +quant-ph/0411192 +quant-ph/0411200 +quant-ph/0411201 +quant-ph/0411208 +quant-ph/0411209 +quant-ph/0412002 +quant-ph/0412004 +quant-ph/0412007 +quant-ph/0412009 +quant-ph/0412010 +quant-ph/0412012 +quant-ph/0412016 +quant-ph/0412017 +quant-ph/0412018 +quant-ph/0412021 +quant-ph/0412022 +quant-ph/0412023 +quant-ph/0412024 +quant-ph/0412025 +quant-ph/0412027 +quant-ph/0412032 +quant-ph/0412035 +quant-ph/0412041 +quant-ph/0412045 +quant-ph/0412048 +quant-ph/0412053 +quant-ph/0412055 +quant-ph/0412057 +quant-ph/0412061 +quant-ph/0412065 +quant-ph/0412068 +quant-ph/0412076 +quant-ph/0412078 +quant-ph/0412079 +quant-ph/0412085 +quant-ph/0412086 +quant-ph/0412087 +quant-ph/0412090 +quant-ph/0412093 +quant-ph/0412096 +quant-ph/0412097 +quant-ph/0412099 +quant-ph/0412102 +quant-ph/0412104 +quant-ph/0412106 +quant-ph/0412107 +quant-ph/0412108 +quant-ph/0412109 +quant-ph/0412110 +quant-ph/0412114 +quant-ph/0412115 +quant-ph/0412120 +quant-ph/0412121 +quant-ph/0412122 +quant-ph/0412124 +quant-ph/0412128 +quant-ph/0412129 +quant-ph/0412132 +quant-ph/0412133 +quant-ph/0412138 +quant-ph/0412145 +quant-ph/0412150 +quant-ph/0412151 +quant-ph/0412152 +quant-ph/0412155 +quant-ph/0412159 +quant-ph/0412162 +quant-ph/0412167 +quant-ph/0412169 +quant-ph/0412174 +quant-ph/0412176 +quant-ph/0412182 +quant-ph/0412183 +quant-ph/0412195 +quant-ph/0412201 +quant-ph/0412218 +quant-ph/0412220 +quant-ph/0412221 +quant-ph/0510065 +quant-ph/0701010 +0704.1726 General Physics +0704.2339 General Physics +0707.1512 Geometric Topology +0709.3674 +0710.0808 Theory +0802.0244 Complex Variables +0802.2076 Dynamical Systems +0803.1945 Information Theory +0803.2303 General Mathematics +0803.2715 Materials Science +0805.3575 +0807.3115 Combinatorics +0809.0372 Mesoscale and Nanoscale Physics +0809.2990 +0810.3939 +0811.0457 Phenomenology +0811.2349 Populations and Evolution +0812.1232 +0901.1998 Phenomenology +0903.0124 Superconductivity +0903.0350 +0903.1610 Phenomenology +0903.2279 +0903.2936 Mesoscale and Nanoscale Physics +0904.0624 Risk Management +0904.1518 Mesoscale and Nanoscale Physics +0904.3792 Experiment +0905.1241 Superconductivity +0905.1808 Cosmology and Nongalactic Astrophysics +0905.3465 +0906.0316 +0906.2199 Solar and Stellar Astrophysics +0906.2846 Strongly Correlated Electrons +0907.4961 Disordered Systems and Neural Networks +0907.5347 Theory +0907.5590 Combinatorics +0908.0048 Strongly Correlated Electrons +0908.0226 Strongly Correlated Electrons +0908.1737 Theory +0908.1932 Computational Complexity +0908.1936 Computational Complexity +0908.2043 +0908.2438 High Energy Astrophysical Phenomena +0908.2440 Computational Geometry +0908.2442 Computational Geometry +0908.2448 Combinatorics +0908.2449 Biological Physics +0908.2454 Instrumentation and Methods for Astrophysics +0908.2455 Portfolio Management +0908.2459 Astrophysics of Galaxies +0908.2462 Cryptography and Security +0908.2468 +0908.2471 Instrumentation and Detectors +0908.2473 Probability +0908.2474 Analysis of PDEs +0908.2476 Computational Complexity +0908.2493 Computational Geometry +0908.2496 Cryptography and Security +0908.2499 Probability +0908.2501 Analysis of PDEs +0908.2505 Information Theory +0908.2506 Software Engineering +0908.2509 Cryptography and Security +0908.2512 Number Theory +0908.2526 Optics +0908.2528 Complex Variables +0908.2538 Solar and Stellar Astrophysics +0908.2540 Symplectic Geometry +0908.2543 Combinatorics +0908.2552 Classical Analysis and ODEs +0908.2554 Mesoscale and Nanoscale Physics +0908.2556 Statistics Theory +0908.2562 +0908.2563 Combinatorics +0908.2576 Phenomenology +0908.2578 Computational Engineering, Finance, and Science +0908.2583 Group Theory +0908.2584 +0908.2587 Complex Variables +0908.2588 Databases +0908.2599 Cosmology and Nongalactic Astrophysics +0908.2604 Rings and Algebras +0908.2610 Medical Physics +0908.2612 Statistics Theory +0908.2614 Dynamical Systems +astro-ph/0604346 +cond-mat/0607248 Mesoscale and Nanoscale Physics +cs/0703052 Information Theory +math/0401246 Quantum Algebra +math/0504372 K-Theory and Homology +math/0610334 Probability +quant-ph/0510117 +quant-ph/0512235 +0704.0506 Strongly Correlated Electrons +0705.1259 Phenomenology +0705.1470 Soft Condensed Matter +0707.0356 Phenomenology +0707.1425 Phenomenology +0707.1642 Phenomenology +0707.2770 +0708.0730 Phenomenology +0708.2622 Instrumentation and Detectors +0708.2982 Instrumentation and Detectors +0708.4241 Phenomenology +0708.4383 Phenomenology +0709.0068 Phenomenology +0709.0443 Populations and Evolution +0709.0758 Instrumentation and Detectors +0709.0768 Instrumentation and Detectors +0709.0790 Instrumentation and Detectors +0709.1030 Phenomenology +0709.1333 Accelerator Physics +0709.1360 Instrumentation and Detectors +0709.1824 Phenomenology +0709.1862 Phenomenology +0709.1907 Phenomenology +0709.1908 Phenomenology +0709.2012 Instrumentation and Detectors +0709.2020 Phenomenology +0709.2248 Accelerator Physics +0709.2254 Accelerator Physics +0709.2311 Phenomenology +0709.2359 Phenomenology +0709.2411 Phenomenology +0709.2516 Instrumentation and Detectors +0709.2629 Experiment +0709.2668 Phenomenology +0709.2679 Phenomenology +0709.2683 Instrumentation and Detectors +0709.2837 Instrumentation and Detectors +0709.2859 Instrumentation and Detectors +0709.3252 Phenomenology +0709.3358 Phenomenology +0709.3886 Phenomenology +0709.4203 Phenomenology +0710.0033 Instrumentation and Detectors +0710.0205 Instrumentation and Detectors +0710.0245 Phenomenology +0710.0361 Instrumentation and Detectors +0710.0446 Instrumentation and Detectors +0710.0726 Phenomenology +0710.2373 Instrumentation and Detectors +0710.2467 Instrumentation and Detectors +0710.2602 Experiment +0710.2644 Phenomenology +0710.2669 Phenomenology +0710.2957 Phenomenology +0710.3027 +0710.3843 Phenomenology +0710.4205 Phenomenology +0710.4236 Phenomenology +0711.0134 Instrumentation and Detectors +0711.0456 Phenomenology +0711.0695 Phenomenology +0711.0731 Phenomenology +0711.2020 Phenomenology +0711.2705 Phenomenology +0711.3581 Trading and Market Microstructure +0711.4900 Phenomenology +0712.2336 Instrumentation and Detectors +0712.2343 Accelerator Physics +0712.2744 Phenomenology +0712.2969 Phenomenology +0712.3534 Materials Science +0712.4207 Phenomenology +0801.0866 Experiment +0801.4509 Instrumentation and Detectors +0801.4888 Phenomenology +0802.0956 Phenomenology +0802.2218 Theory +0802.3362 +0802.3578 Theory +0802.4374 +0802.4376 Differential Geometry +0803.0776 +0803.1293 Theory +0803.3577 Theory +0804.1511 Phenomenology +0804.4678 Superconductivity +0805.2222 Phenomenology +0805.2400 Strongly Correlated Electrons +0805.2597 Phenomenology +0805.2785 Logic in Computer Science +0805.3078 Theory +0806.1081 Theory +0806.3265 Soft Condensed Matter +0806.3363 Theory +0806.4292 Theory +0807.0156 Differential Geometry +0807.3229 +0807.3658 +0807.3969 Experiment +0808.0411 Theory +0808.1306 Experiment +0808.1891 Theory +0808.2653 Superconductivity +0808.3410 Theory +0809.0468 Theory +0809.0558 +0809.3705 Strongly Correlated Electrons +0809.4763 +0810.0699 Materials Science +0810.1291 +0810.1404 Quantitative Methods +0810.1580 Complex Variables +0810.2240 +0810.2867 Theory +0810.4318 Phenomenology +0810.4660 Theory +0811.0291 Phenomenology +0811.0295 Statistical Mechanics +0811.0581 Tissues and Organs +0811.0806 Materials Science +0811.3147 +0811.4155 +0811.4294 Group Theory +0811.4423 Theory +0811.4745 Strongly Correlated Electrons +0812.1122 Physics and Society +0812.1155 Multiagent Systems +0812.1517 +0812.2610 +0812.3353 Differential Geometry +0812.3751 Materials Science +0901.1428 Cosmology and Nongalactic Astrophysics +0901.2067 +0901.3740 High Energy Astrophysical Phenomena +0901.3785 Theory +0901.3822 Complex Variables +0901.4670 Data Analysis, Statistics and Probability +0902.0173 Classical Physics +0902.1380 Classical Analysis and ODEs +0902.1548 Algebraic Geometry +0902.2211 Cosmology and Nongalactic Astrophysics +0902.2213 Astrophysics of Galaxies +0902.2214 Cosmology and Nongalactic Astrophysics +0902.2217 Algebraic Geometry +0902.2221 Plasma Physics +0902.2224 Plasma Physics +0902.2225 Mesoscale and Nanoscale Physics +0902.2228 Differential Geometry +0902.2230 Computation and Language +0902.2235 Information Theory +0902.2238 Group Theory +0902.2250 Differential Geometry +0902.2253 Differential Geometry +0902.2257 Instrumentation and Detectors +0902.2260 Information Theory +0902.2266 Other Condensed Matter +0902.2268 Soft Condensed Matter +0902.2273 Rings and Algebras +0902.2276 Other Condensed Matter +0902.2280 Rings and Algebras +0902.2283 Differential Geometry +0902.2287 Functional Analysis +0902.2290 +0902.2291 Representation Theory +0902.2293 Cosmology and Nongalactic Astrophysics +0902.2299 Solar and Stellar Astrophysics +0902.2301 Geometric Topology +0902.2309 Statistics Theory +0902.2311 Analysis of PDEs +0902.2312 Algebraic Topology +0902.2313 Numerical Analysis +0902.2315 Dynamical Systems +0902.2317 Operator Algebras +0902.2322 Algebraic Geometry +0902.2326 Instrumentation and Methods for Astrophysics +0902.2327 Algebraic Geometry +0902.2332 Optimization and Control +0902.2340 Soft Condensed Matter +0902.2344 Functional Analysis +0902.2345 Computation and Language +0902.2351 Functional Analysis +0902.2353 Plasma Physics +0902.2354 Algebraic Geometry +0902.2356 +0902.2358 Functional Analysis +0902.2362 Artificial Intelligence +0902.2363 Functional Analysis +0902.2366 +0902.2370 Information Theory +0902.2372 Cosmology and Nongalactic Astrophysics +0902.2387 Materials Science +0902.2388 Materials Science +0902.2390 Analysis of PDEs +astro-ph/0004063 +astro-ph/0110653 +astro-ph/0406269 +astro-ph/0602572 +astro-ph/9505067 +astro-ph/9705007 +astro-ph/9904389 +cond-mat/0701190 Statistical Mechanics +gr-qc/0607113 +hep-ph/0404017 Phenomenology +hep-ph/9609346 Phenomenology +hep-ph/9609467 Phenomenology +hep-ph/9610257 Phenomenology +hep-ph/9701263 Phenomenology +math/0611902 Algebraic Geometry +math/0612702 Group Theory +math/0701363 Probability +math/0701564 Functional Analysis +physics/0411130 History and Philosophy of Physics +physics/0512096 Atomic Physics +physics/0703213 Popular Physics +0705.0547 +0705.3215 Physics and Society +0707.3058 Experiment +0708.3238 Experiment +0710.2153 Materials Science +0710.3650 Dynamical Systems +0711.2551 +0801.1909 Probability +0802.1534 Phenomenology +0803.2475 Theory +0805.1275 +0806.0631 +0806.3828 Chemical Physics +0807.4363 Phenomenology +0808.0184 +0809.0912 +0809.0913 +0809.2667 Mesoscale and Nanoscale Physics +0809.2993 +0810.2829 Physics and Society +0810.4346 Phenomenology +0811.0733 Strongly Correlated Electrons +0811.1049 Strongly Correlated Electrons +0811.3018 +0812.3529 +0812.3579 Complex Variables +0901.0303 Theory +0901.4406 Strongly Correlated Electrons +0902.2216 Theory +0902.2459 Phenomenology +0902.2854 Other Condensed Matter +0902.2979 Disordered Systems and Neural Networks +0902.3151 High Energy Astrophysical Phenomena +0903.2295 +0903.3214 Functional Analysis +0903.3521 Phenomenology +0903.4257 Theory +0904.0319 Dynamical Systems +0904.0320 High Energy Astrophysical Phenomena +0904.1113 Data Structures and Algorithms +0904.1585 Statistical Mechanics +0904.2062 Quantum Gases +0904.2564 Quantum Gases +0904.2618 Superconductivity +0904.3922 Theory +0904.4591 Theory +0904.4877 +0905.0180 Soft Condensed Matter +0905.1599 +0905.2559 Phenomenology +0905.2571 Theory +0905.4583 +0906.1031 +0906.1801 Quantum Gases +0906.3315 +0907.0881 Statistical Mechanics +0907.1401 Materials Science +0907.2469 +0907.2738 Optimization and Control +0907.3624 Fluid Dynamics +0907.4405 Theory +0907.4652 Representation Theory +0907.5351 Combinatorics +0907.5430 Networking and Internet Architecture +0908.0619 Information Theory +0908.0629 Cosmology and Nongalactic Astrophysics +0908.0732 Cosmology and Nongalactic Astrophysics +0908.0753 Information Theory +0908.0764 Information Retrieval +0908.0769 +0908.0771 Mesoscale and Nanoscale Physics +0908.0772 Learning +0908.0774 Solar and Stellar Astrophysics +0908.0778 Dynamical Systems +0908.0780 Phenomenology +0908.0785 +0908.0786 Differential Geometry +0908.0787 +0908.0788 Mesoscale and Nanoscale Physics +0908.0791 Mesoscale and Nanoscale Physics +0908.0793 Adaptation and Self-Organizing Systems +0908.0795 Accelerator Physics +0908.0796 Earth and Planetary Astrophysics +0908.0811 Instrumentation and Methods for Astrophysics +0908.0812 Networking and Internet Architecture +0908.0813 Solar and Stellar Astrophysics +0908.0814 Instrumentation and Methods for Astrophysics +0908.0815 Superconductivity +0908.0816 Instrumentation and Methods for Astrophysics +0908.0818 Instrumentation and Methods for Astrophysics +0908.0824 Phenomenology +0908.0825 Biological Physics +0908.0833 Computational Engineering, Finance, and Science +0908.0840 Pricing of Securities +0908.0851 +0908.0852 Quantum Gases +0908.0855 Instrumentation and Methods for Astrophysics +0908.0856 Information Theory +0908.0858 Instrumentation and Methods for Astrophysics +0908.0860 Instrumentation and Methods for Astrophysics +0908.0863 Instrumentation and Methods for Astrophysics +0908.0864 Instrumentation and Methods for Astrophysics +0908.0865 Probability +0908.0867 Probability +0908.0870 Physics and Society +0908.0879 Number Theory +0908.0884 Pattern Formation and Solitons +0908.0888 Probability +0908.0890 Mesoscale and Nanoscale Physics +0908.0893 Networking and Internet Architecture +0908.0894 Analysis of PDEs +0908.0897 Probability +0908.0905 Pattern Formation and Solitons +0908.0909 Cosmology and Nongalactic Astrophysics +0908.0910 Rings and Algebras +0908.0912 Information Retrieval +0908.0914 Pattern Formation and Solitons +0908.0916 Rings and Algebras +0908.0917 Analysis of PDEs +0908.0919 Information Retrieval +0908.0921 Pattern Formation and Solitons +0908.0926 High Energy Astrophysical Phenomena +0908.0928 Human-Computer Interaction +0908.0929 Algebraic Geometry +0908.0930 Human-Computer Interaction +0908.0931 High Energy Astrophysical Phenomena +0908.0932 Human-Computer Interaction +0908.0933 High Energy Astrophysical Phenomena +0908.0935 Human-Computer Interaction +0908.0939 Learning +astro-ph/0101238 +astro-ph/0403529 +astro-ph/0607355 +cs/0607139 Computational Complexity +hep-ph/0204029 Phenomenology +hep-ph/0512183 Phenomenology +hep-ph/0603056 Phenomenology +hep-ph/9507212 Phenomenology +hep-ph/9608311 Phenomenology +hep-ph/9806328 Phenomenology +hep-ph/9812273 Phenomenology +hep-ph/9812538 Phenomenology +hep-th/0603131 Theory +math/0601587 K-Theory and Homology +math/0604402 K-Theory and Homology +math/0610901 Symplectic Geometry +math/0611139 Symplectic Geometry +0706.0549 Group Theory +0706.1520 Probability +0708.3148 Theory +0708.3300 Theory +0708.3386 Theory +0708.3393 Theory +0708.3428 Theory +0709.2148 Geometric Topology +0709.2158 Theory +0709.2168 Theory +0709.2342 Theory +0709.2430 Theory +0709.2633 Theory +0709.2666 Theory +0709.3342 Theory +0709.3378 Theory +0709.3688 Theory +0709.4149 Theory +0709.4163 Theory +0710.0217 Theory +0710.0873 Theory +0710.0915 Theory +0710.1568 Theory +0710.1613 Theory +0710.1638 Theory +0711.0982 Probability +0712.2613 Operator Algebras +0712.2888 +0712.4217 Other Condensed Matter +0801.3444 Probability +0802.2280 Statistical Mechanics +0803.4162 +0803.4191 Theory +0804.0878 Other Condensed Matter +0807.0362 Statistical Mechanics +0807.2292 Information Theory +0807.4505 +0808.2508 Theory +0808.3319 Phenomenology +0808.3932 +0809.0064 Statistics Theory +0809.1190 Phenomenology +0809.1589 Mesoscale and Nanoscale Physics +0809.5019 Number Theory +0809.5114 Physics and Society +0810.1553 Optics +0810.5127 Superconductivity +0811.1827 Theory +0811.2527 Other Condensed Matter +0811.3419 Statistical Mechanics +0811.3509 +0811.3683 +0811.3688 Theory +0811.4009 Soft Condensed Matter +0811.4160 +0811.4767 +0812.0229 Analysis of PDEs +0812.1120 +0812.2504 Materials Science +0812.2885 Analysis of PDEs +0812.3132 +0812.3259 Networking and Internet Architecture +0812.3667 +0812.3812 +0901.0085 +0901.1471 Algebraic Topology +0901.1628 +0901.2931 +0901.3649 Disordered Systems and Neural Networks +0901.4027 Data Analysis, Statistics and Probability +0901.4118 Experiment +0901.4507 Strongly Correlated Electrons +0901.4696 +0901.4955 +0902.0307 +0902.0621 Classical Analysis and ODEs +0902.1001 Theory +0902.1294 Operator Algebras +0902.1686 +0902.3249 Other Condensed Matter +0902.3368 Theory +0902.3687 Mesoscale and Nanoscale Physics +0902.4499 Mesoscale and Nanoscale Physics +0902.4721 Materials Science +0903.0635 Mesoscale and Nanoscale Physics +0903.1227 Superconductivity +0903.2026 +0903.2352 Probability +0903.3193 Strongly Correlated Electrons +0903.4838 Strongly Correlated Electrons +0903.5092 +0904.0095 Superconductivity +0904.3489 Phenomenology +0904.3887 +0905.0207 Classical Analysis and ODEs +0905.1088 Statistical Mechanics +0905.2557 Representation Theory +0905.3785 +0905.4238 Statistical Mechanics +0906.0244 Classical Analysis and ODEs +0906.1566 Mesoscale and Nanoscale Physics +0906.1582 Solar and Stellar Astrophysics +0906.1588 Optimization and Control +0906.1589 Optics +0906.1591 Commutative Algebra +0906.1593 Artificial Intelligence +0906.1597 Cosmology and Nongalactic Astrophysics +0906.1598 Phenomenology +0906.1601 Geometric Topology +0906.1605 +0906.1608 Materials Science +0906.1615 High Energy Astrophysical Phenomena +0906.1620 Differential Geometry +0906.1627 +0906.1632 Probability +0906.1633 Functional Analysis +0906.1637 Applications +0906.1644 Other Computer Science +0906.1645 Theory +0906.1651 Probability +0906.1657 Differential Geometry +0906.1661 Plasma Physics +0906.1666 Experiment +0906.1667 Software Engineering +0906.1672 Combinatorics +0906.1673 Artificial Intelligence +0906.1675 Soft Condensed Matter +0906.1677 Information Theory +0906.1679 Functional Analysis +0906.1680 Performance +0906.1683 Accelerator Physics +0906.1688 Representation Theory +0906.1690 Experiment +0906.1694 Artificial Intelligence +0906.1696 Algebraic Geometry +0906.1698 Statistics Theory +0906.1700 Materials Science +0906.1702 Computational Complexity +0906.1706 Statistical Mechanics +0906.1709 Chemical Physics +0906.1710 Statistics Theory +0906.1717 Chemical Physics +0906.1718 Instrumentation and Methods for Astrophysics +0906.1720 Statistics Theory +0906.1721 Probability +0906.1734 Phenomenology +0906.1741 Number Theory +0906.1743 Geometric Topology +0906.1746 +0906.1750 Subcellular Processes +0906.1752 Cosmology and Nongalactic Astrophysics +0906.1755 Instrumentation and Methods for Astrophysics +0906.1763 Computer Vision and Pattern Recognition +0906.1769 +0906.1777 Programming Languages +0906.1780 Combinatorics +0906.1781 General Physics +0906.1782 Probability +0906.1784 Combinatorics +0906.1786 Earth and Planetary Astrophysics +0906.1788 Cosmology and Nongalactic Astrophysics +0906.1793 Algebraic Geometry +0906.1797 Classical Analysis and ODEs +0906.1798 Numerical Analysis +cs/0608049 Information Retrieval +math/0410315 K-Theory and Homology +math/0507366 Group Theory +physics/0407112 Atomic and Molecular Clusters +0708.2721 Probability +0712.2676 Probability +0801.0980 Probability +0802.0409 Analysis of PDEs +0803.2759 Combinatorics +0804.1456 Combinatorics +0805.1831 +0806.0829 Probability +0806.2819 Strongly Correlated Electrons +0808.1075 Soft Condensed Matter +0808.3798 General Physics +0808.4052 Operator Algebras +0810.1103 Information Theory +0810.2446 Functional Analysis +0810.3853 +0810.5464 Rings and Algebras +0811.4674 +0811.4722 Instrumentation and Detectors +0901.1889 Theory +0901.2592 +0901.4287 Phenomenology +0901.4922 Optics +0902.0422 Logic +0902.1068 Materials Science +0903.1751 Phenomenology +0903.5235 Algebraic Geometry +0904.0425 Phenomenology +0904.4127 Probability +0905.0902 Quantum Gases +0905.3000 Analysis of PDEs +0905.4449 Other Condensed Matter +0906.2357 Mesoscale and Nanoscale Physics +0906.2933 Strongly Correlated Electrons +0907.0241 Functional Analysis +0907.0512 Methodology +0907.0554 Statistical Finance +0907.3381 Probability +0908.1372 Algebraic Topology +0909.1164 Geometric Topology +0909.2838 Theory +0909.2970 Theory +0909.3112 Superconductivity +0909.3323 Optics +0909.3697 +0910.0634 Quantum Gases +0910.1569 Materials Science +0910.2723 Cosmology and Nongalactic Astrophysics +0910.3971 Astrophysics of Galaxies +0910.4285 Materials Science +0911.0375 Differential Geometry +0911.1333 Analysis of PDEs +0911.1981 Physics and Society +0911.2354 Complex Variables +0911.3309 Algebraic Geometry +0911.3735 Atmospheric and Oceanic Physics +0911.3961 Medical Physics +0911.3968 High Energy Astrophysical Phenomena +0911.4133 Symplectic Geometry +0911.4136 Group Theory +0911.4141 +0911.4145 Mesoscale and Nanoscale Physics +0911.4146 Computational Geometry +0911.4148 Combinatorics +0911.4150 Computer Science and Game Theory +0911.4153 +0911.4165 Probability +0911.4167 Information Theory +0911.4177 Analysis of PDEs +0911.4178 Information Retrieval +0911.4179 Mesoscale and Nanoscale Physics +0911.4183 Category Theory +0911.4185 Quantum Algebra +0911.4186 Optimization and Control +0911.4187 General Physics +0911.4196 Commutative Algebra +0911.4197 +0911.4202 Networking and Internet Architecture +0911.4203 Programming Languages +0911.4210 Functional Analysis +0911.4211 Theory +0911.4214 Rings and Algebras +0911.4219 Information Theory +0911.4221 Superconductivity +0911.4222 Information Theory +0911.4224 Analysis of PDEs +0911.4229 Materials Science +0911.4230 Computational Engineering, Finance, and Science +0911.4234 Group Theory +0911.4239 Networking and Internet Architecture +0911.4243 Group Theory +0911.4247 Group Theory +0911.4256 +0911.4258 Statistical Finance +0911.4261 Number Theory +0911.4262 Learning +0911.4264 Mesoscale and Nanoscale Physics +0911.4267 Materials Science +0911.4272 Representation Theory +0911.4273 High Energy Astrophysical Phenomena +0911.4275 Quantum Algebra +0911.4279 Analysis of PDEs +0911.4280 Analysis of PDEs +0911.4281 Analysis of PDEs +0911.4288 Networking and Internet Architecture +0911.4289 Physics and Society +0911.4290 Physics and Society +0911.4291 Physics and Society +0911.4292 Information Retrieval +0911.4293 Probability +0911.4298 Physics and Society +0911.4299 Physics and Society +0911.4300 Physics and Society +0911.4301 Statistical Mechanics +0911.4302 Digital Libraries +0911.4303 Physics and Society +0911.4305 Instrumentation and Detectors +0911.4306 Phenomenology +0911.4318 Representation Theory +0911.4321 Analysis of PDEs +0911.4322 Discrete Mathematics +0911.4329 Databases +0911.4330 +0911.4331 Combinatorics +0911.4334 Materials Science +0911.4337 Computational Complexity +0911.4341 Dynamical Systems +0911.4349 Strongly Correlated Electrons +0911.4360 Astrophysics of Galaxies +0911.4361 Metric Geometry +0911.4365 Probability +0911.4370 Combinatorics +0911.4373 Algebraic Geometry +0911.4374 Chemical Physics +0911.4380 Probability +0911.4385 Computer Vision and Pattern Recognition +0911.4388 Experiment +0911.4395 Distributed, Parallel, and Cluster Computing +0911.4396 Solar and Stellar Astrophysics +0911.4397 Machine Learning +0911.4415 General Mathematics +0911.4417 +0911.4419 +0911.4424 Earth and Planetary Astrophysics +0911.4426 Functional Analysis +0911.4429 Classical Analysis and ODEs +0911.4432 Information Theory +0911.4434 Operator Algebras +0911.4440 +0911.4446 Analysis of PDEs +0911.4452 Classical Analysis and ODEs +0911.4458 Genomics +0911.4460 Differential Geometry +0911.4461 Group Theory +0911.4462 Rings and Algebras +0911.4466 Strongly Correlated Electrons +0911.4475 Optimization and Control +0911.4477 Differential Geometry +alg-geom/9712029 Algebraic Geometry +astro-ph/0309224 +astro-ph/0309499 +astro-ph/0504251 +astro-ph/0504274 +astro-ph/0504624 +astro-ph/0504655 +astro-ph/0505013 +astro-ph/0505096 +astro-ph/0505202 +astro-ph/0505329 +astro-ph/0506272 +astro-ph/0506281 +astro-ph/0506293 +astro-ph/0511287 +astro-ph/0512497 +astro-ph/9507056 +cond-mat/0505232 Disordered Systems and Neural Networks +gr-qc/0202017 +hep-th/0010293 Theory +hep-th/0109098 Theory +hep-th/0306184 Theory +hep-th/0504029 Theory +hep-th/0611275 Theory +math/0101023 Algebraic Geometry +math/0206295 Algebraic Geometry +math/0302304 Algebraic Geometry +math/0404281 Algebraic Geometry +math/0506166 Algebraic Geometry +math/0608406 Quantum Algebra +math/0612761 Quantum Algebra +math/0702838 Algebraic Geometry +0707.3310 Group Theory +0712.0977 Theory +0802.2142 Functional Analysis +0802.2780 Functional Analysis +0804.3509 Experiment +0804.3840 +0805.2015 Machine Learning +0806.4762 Fluid Dynamics +0809.1270 Learning +0809.1683 Phenomenology +0810.5636 Learning +0811.3641 +0812.0944 Number Theory +0812.0947 Number Theory +0812.2669 Probability +0812.2774 +0812.4580 Artificial Intelligence +0812.4581 Artificial Intelligence +0901.2730 Machine Learning +0901.4137 Statistics Theory +0902.1512 Phenomenology +0902.1950 Logic +0902.3328 Optics +0902.4077 +0903.0309 Phenomenology +0903.1734 Distributed, Parallel, and Cluster Computing +0903.3257 Learning +0903.5342 Probability +0904.0126 Cosmology and Nongalactic Astrophysics +0904.1087 +0904.1450 Phenomenology +0904.2386 Theory +0904.4471 Functional Analysis +0905.1087 Theory +0905.1427 Algebraic Geometry +0905.3727 Cosmology and Nongalactic Astrophysics +0905.4760 +0906.1273 Theory +0906.1713 Learning +0906.2228 Logic in Computer Science +0906.2898 Theory +0906.3871 Cosmology and Nongalactic Astrophysics +0906.5361 High Energy Astrophysical Phenomena +0907.0100 Phenomenology +0907.0117 Phenomenology +0907.1917 Cosmology and Nongalactic Astrophysics +0907.2155 Theory +0907.2190 Phenomenology +0907.2619 +0907.2680 High Energy Astrophysical Phenomena +0907.3036 +0907.3043 Phenomenology +0907.3372 Dynamical Systems +0907.3790 Chaotic Dynamics +0907.4140 +0907.4522 Theory +0907.5274 Theory +0907.5352 +0907.5483 Phenomenology +0907.5527 Logic in Computer Science +0908.0361 +0908.2227 Metric Geometry +0908.2617 +0908.3713 Theory +0908.4122 Phenomenology +0908.4297 Phenomenology +0908.4486 +0909.0128 Phenomenology +0909.0749 Cosmology and Nongalactic Astrophysics +0909.1595 Mesoscale and Nanoscale Physics +0909.1711 Phenomenology +0909.2092 +0909.2317 +0909.3328 +0909.4016 Phenomenology +0909.4432 Strongly Correlated Electrons +0909.4433 +0909.4799 Mesoscale and Nanoscale Physics +0909.5190 Cosmology and Nongalactic Astrophysics +0909.5252 Theory +0910.1144 +0910.1428 Experiment +0910.4155 Phenomenology +0910.5202 Theory +0910.5517 Phenomenology +0910.5817 Experiment +0911.2627 Classical Analysis and ODEs +0911.2832 Number Theory +0911.4553 Phenomenology +0912.1078 +0912.1147 Cosmology and Nongalactic Astrophysics +0912.1656 Symplectic Geometry +0912.2067 Representation Theory +0912.2445 Dynamical Systems +0912.3354 High Energy Astrophysical Phenomena +0912.3771 General Finance +0912.4438 Symbolic Computation +astro-ph/0002281 +astro-ph/0003315 +astro-ph/0003350 +astro-ph/0004412 +astro-ph/0005087 +astro-ph/0006056 +astro-ph/0008175 +astro-ph/0106051 +astro-ph/0107120 +astro-ph/0111473 +astro-ph/0205510 +astro-ph/0303338 +astro-ph/0303641 +astro-ph/0311463 +astro-ph/0406444 +astro-ph/0409245 +astro-ph/0409602 +astro-ph/0412048 +astro-ph/0501519 +astro-ph/0502531 +astro-ph/0506217 +astro-ph/0603101 +astro-ph/0603816 +astro-ph/0703068 +astro-ph/9302002 +astro-ph/9303011 +astro-ph/9305029 +astro-ph/9308041 +astro-ph/9310025 +astro-ph/9310039 +astro-ph/9401002 +astro-ph/9405064 +astro-ph/9406067 +astro-ph/9601134 +astro-ph/9606065 +astro-ph/9606163 +astro-ph/9607062 +astro-ph/9607130 +astro-ph/9608175 +astro-ph/9611088 +astro-ph/9611117 +astro-ph/9702165 +astro-ph/9702236 +astro-ph/9703056 +astro-ph/9703065 +astro-ph/9704204 +astro-ph/9706258 +astro-ph/9708247 +astro-ph/9802363 +astro-ph/9804150 +astro-ph/9807183 +astro-ph/9810203 +astro-ph/9812185 +astro-ph/9901278 +astro-ph/9902222 +astro-ph/9903145 +astro-ph/9904064 +astro-ph/9906327 +astro-ph/9906494 +astro-ph/9907020 +astro-ph/9907212 +astro-ph/9907221 +astro-ph/9908340 +astro-ph/9911330 +astro-ph/9912131 +astro-ph/9912180 +cond-mat/9205005 +gr-qc/0001015 +gr-qc/0001029 +gr-qc/0001068 +gr-qc/0001081 +gr-qc/0001086 +gr-qc/0001090 +gr-qc/0003036 +gr-qc/0004071 +gr-qc/0007035 +gr-qc/0007047 +gr-qc/0008059 +gr-qc/0203071 +gr-qc/0403044 +gr-qc/0404046 +gr-qc/9208011 +gr-qc/9211009 +gr-qc/9302006 +gr-qc/9302012 +gr-qc/9305024 +gr-qc/9309001 +gr-qc/9311034 +gr-qc/9402013 +gr-qc/9402014 +gr-qc/9402027 +gr-qc/9404031 +gr-qc/9404047 +gr-qc/9405051 +gr-qc/9409055 +gr-qc/9410003 +gr-qc/9412023 +gr-qc/9501040 +gr-qc/9507016 +gr-qc/9508066 +gr-qc/9511022 +gr-qc/9511042 +gr-qc/9601048 +gr-qc/9602043 +gr-qc/9603060 +gr-qc/9606003 +gr-qc/9606054 +gr-qc/9606066 +gr-qc/9606086 +gr-qc/9606087 +gr-qc/9607068 +gr-qc/9607074 +gr-qc/9608040 +gr-qc/9609013 +gr-qc/9609025 +gr-qc/9609039 +gr-qc/9611063 +gr-qc/9701039 +gr-qc/9703081 +gr-qc/9705034 +gr-qc/9706062 +gr-qc/9707013 +gr-qc/9707059 +gr-qc/9709011 +gr-qc/9709045 +gr-qc/9710066 +gr-qc/9710113 +gr-qc/9710117 +gr-qc/9711009 +gr-qc/9711032 +gr-qc/9711079 +gr-qc/9712079 +gr-qc/9804014 +gr-qc/9804057 +gr-qc/9805026 +gr-qc/9805071 +gr-qc/9806018 +gr-qc/9806021 +gr-qc/9808076 +gr-qc/9809030 +gr-qc/9810004 +gr-qc/9810016 +gr-qc/9812015 +gr-qc/9812072 +gr-qc/9901013 +gr-qc/9901084 +gr-qc/9904077 +gr-qc/9905023 +gr-qc/9906062 +gr-qc/9907038 +gr-qc/9907066 +gr-qc/9909042 +gr-qc/9909080 +gr-qc/9910027 +gr-qc/9912010 +gr-qc/9912032 +hep-ex/0004010 Experiment +hep-ex/0209058 Experiment +hep-ex/9609016 Experiment +hep-ex/9712021 Experiment +hep-ex/9906011 Experiment +hep-lat/0002020 Lattice +hep-lat/9204016 Lattice +hep-lat/9301011 Lattice +hep-lat/9305008 Lattice +hep-lat/9406014 Lattice +hep-lat/9602015 Lattice +hep-lat/9606018 Lattice +hep-lat/9608112 Lattice +hep-lat/9608147 Lattice +hep-lat/9710083 Lattice +hep-lat/9711047 Lattice +hep-lat/9803015 Lattice +hep-lat/9804023 Lattice +hep-lat/9804030 Lattice +hep-lat/9901021 Lattice +hep-lat/9903004 Lattice +hep-lat/9905034 Lattice +hep-ph/0002077 Phenomenology +hep-ph/0002186 Phenomenology +hep-ph/0003066 Phenomenology +hep-ph/0003113 Phenomenology +hep-ph/0003203 Phenomenology +hep-ph/0003277 Phenomenology +hep-ph/0004148 Phenomenology +hep-ph/0004171 Phenomenology +hep-ph/0004244 Phenomenology +hep-ph/0005250 Phenomenology +hep-ph/0006105 Phenomenology +hep-ph/0006205 Phenomenology +hep-ph/0007322 Phenomenology +hep-ph/0309006 Phenomenology +hep-ph/0310236 Phenomenology +hep-ph/0310301 Phenomenology +hep-ph/0405113 Phenomenology +hep-ph/9206209 Phenomenology +hep-ph/9207218 Phenomenology +hep-ph/9208254 Phenomenology +hep-ph/9208260 Phenomenology +hep-ph/9209203 Phenomenology +hep-ph/9209240 Phenomenology +hep-ph/9209252 Phenomenology +hep-ph/9209294 Phenomenology +hep-ph/9209295 Phenomenology +hep-ph/9211250 Phenomenology +hep-ph/9211276 Phenomenology +hep-ph/9212204 Phenomenology +hep-ph/9212234 Phenomenology +hep-ph/9212282 Phenomenology +hep-ph/9301216 Phenomenology +hep-ph/9301240 Phenomenology +hep-ph/9302213 Phenomenology +hep-ph/9303241 Phenomenology +hep-ph/9303243 Phenomenology +hep-ph/9303316 Phenomenology +hep-ph/9304215 Phenomenology +hep-ph/9304277 Phenomenology +hep-ph/9304283 Phenomenology +hep-ph/9304308 Phenomenology +hep-ph/9305264 Phenomenology +hep-ph/9306248 Phenomenology +hep-ph/9306293 Phenomenology +hep-ph/9306336 Phenomenology +hep-ph/9307326 Phenomenology +hep-ph/9307359 Phenomenology +hep-ph/9308217 Phenomenology +hep-ph/9308253 Phenomenology +hep-ph/9309273 Phenomenology +hep-ph/9309290 Phenomenology +hep-ph/9309326 Phenomenology +hep-ph/9310222 Phenomenology +hep-ph/9310257 Phenomenology +hep-ph/9310259 Phenomenology +hep-ph/9310363 Phenomenology +hep-ph/9311350 Phenomenology +hep-ph/9312255 Phenomenology +hep-ph/9401246 Phenomenology +hep-ph/9401262 Phenomenology +hep-ph/9401304 Phenomenology +hep-ph/9401314 Phenomenology +hep-ph/9402258 Phenomenology +hep-ph/9402350 Phenomenology +hep-ph/9403293 Phenomenology +hep-ph/9403323 Phenomenology +hep-ph/9403358 Phenomenology +hep-ph/9405228 Phenomenology +hep-ph/9405369 Phenomenology +hep-ph/9406255 Phenomenology +hep-ph/9406293 Phenomenology +hep-ph/9407261 Phenomenology +hep-ph/9407289 Phenomenology +hep-ph/9407291 Phenomenology +hep-ph/9407309 Phenomenology +hep-ph/9408218 Phenomenology +hep-ph/9408282 Phenomenology +hep-ph/9408359 Phenomenology +hep-ph/9409324 Phenomenology +hep-ph/9409386 Phenomenology +hep-ph/9410226 Phenomenology +hep-ph/9410265 Phenomenology +hep-ph/9411399 Phenomenology +hep-ph/9502347 Phenomenology +hep-ph/9506381 Phenomenology +hep-ph/9507308 Phenomenology +hep-ph/9509430 Phenomenology +hep-ph/9510225 Phenomenology +hep-ph/9510289 Phenomenology +hep-ph/9510319 Phenomenology +hep-ph/9511332 Phenomenology +hep-ph/9512368 Phenomenology +hep-ph/9601311 Phenomenology +hep-ph/9601335 Phenomenology +hep-ph/9601373 Phenomenology +hep-ph/9602216 Phenomenology +hep-ph/9602248 Phenomenology +hep-ph/9602331 Phenomenology +hep-ph/9603213 Phenomenology +hep-ph/9603242 Phenomenology +hep-ph/9603361 Phenomenology +hep-ph/9605345 Phenomenology +hep-ph/9606287 Phenomenology +hep-ph/9606408 Phenomenology +hep-ph/9607361 Phenomenology +hep-ph/9608225 Phenomenology +hep-ph/9608267 Phenomenology +hep-ph/9608279 Phenomenology +hep-ph/9608344 Phenomenology +hep-ph/9611247 Phenomenology +hep-ph/9611285 Phenomenology +hep-ph/9611438 Phenomenology +hep-ph/9612358 Phenomenology +hep-ph/9612495 Phenomenology +hep-ph/9704327 Phenomenology +hep-ph/9704334 Phenomenology +hep-ph/9704364 Phenomenology +hep-ph/9704387 Phenomenology +hep-ph/9706294 Phenomenology +hep-ph/9706420 Phenomenology +hep-ph/9706453 Phenomenology +hep-ph/9707254 Phenomenology +hep-ph/9707507 Phenomenology +hep-ph/9707512 Phenomenology +hep-ph/9708274 Phenomenology +hep-ph/9708446 Phenomenology +hep-ph/9709422 Phenomenology +hep-ph/9709433 Phenomenology +hep-ph/9709443 Phenomenology +hep-ph/9711272 Phenomenology +hep-ph/9711414 Phenomenology +hep-ph/9712304 Phenomenology +hep-ph/9712392 Phenomenology +hep-ph/9712409 Phenomenology +hep-ph/9712488 Phenomenology +hep-ph/9801345 Phenomenology +hep-ph/9801437 Phenomenology +hep-ph/9803277 Phenomenology +hep-ph/9803407 Phenomenology +hep-ph/9803442 Phenomenology +hep-ph/9803460 Phenomenology +hep-ph/9804323 Phenomenology +hep-ph/9804400 Phenomenology +hep-ph/9805215 Phenomenology +hep-ph/9806357 Phenomenology +hep-ph/9806390 Phenomenology +hep-ph/9806427 Phenomenology +hep-ph/9807361 Phenomenology +hep-ph/9807466 Phenomenology +hep-ph/9807496 Phenomenology +hep-ph/9808458 Phenomenology +hep-ph/9809286 Phenomenology +hep-ph/9809328 Phenomenology +hep-ph/9809363 Phenomenology +hep-ph/9809384 Phenomenology +hep-ph/9810254 Phenomenology +hep-ph/9811215 Phenomenology +hep-ph/9811363 Phenomenology +hep-ph/9811379 Phenomenology +hep-ph/9812212 Phenomenology +hep-ph/9812361 Phenomenology +hep-ph/9812393 Phenomenology +hep-ph/9812534 Phenomenology +hep-ph/9901327 Phenomenology +hep-ph/9902369 Phenomenology +hep-ph/9903232 Phenomenology +hep-ph/9903355 Phenomenology +hep-ph/9903428 Phenomenology +hep-ph/9903435 Phenomenology +hep-ph/9904304 Phenomenology +hep-ph/9905464 Phenomenology +hep-ph/9907211 Phenomenology +hep-ph/9907277 Phenomenology +hep-ph/9907361 Phenomenology +hep-ph/9907382 Phenomenology +hep-ph/9907389 Phenomenology +hep-ph/9908489 Phenomenology +hep-ph/9909298 Phenomenology +hep-ph/9909482 Phenomenology +hep-ph/9909509 Phenomenology +hep-ph/9910352 Phenomenology +hep-ph/9911305 Phenomenology +hep-ph/9911393 Phenomenology +hep-ph/9911407 Phenomenology +hep-ph/9912363 Phenomenology +hep-ph/9912366 Phenomenology +hep-ph/9912380 Phenomenology +hep-ph/9912464 Phenomenology +hep-ph/9912510 Phenomenology +hep-th/0005045 Theory +hep-th/0309048 Theory +hep-th/0309181 Theory +hep-th/0310053 Theory +hep-th/0506075 Theory +hep-th/0603074 Theory +hep-th/9109051 Theory +hep-th/9202077 Theory +hep-th/9204014 Theory +hep-th/9210110 Theory +hep-th/9212120 Theory +hep-th/9304044 Theory +hep-th/9304079 Theory +hep-th/9304145 Theory +hep-th/9308077 Theory +hep-th/9309109 Theory +hep-th/9310155 Theory +hep-th/9401033 Theory +hep-th/9401111 Theory +hep-th/9403128 Theory +hep-th/9405171 Theory +hep-th/9409060 Theory +hep-th/9409113 Theory +hep-th/9410050 Theory +hep-th/9410117 Theory +hep-th/9410221 Theory +hep-th/9412161 Theory +hep-th/9412173 Theory +hep-th/9501012 Theory +hep-th/9506187 Theory +hep-th/9509102 Theory +hep-th/9510180 Theory +hep-th/9601110 Theory +hep-th/9602014 Theory +hep-th/9603133 Theory +hep-th/9603156 Theory +hep-th/9606093 Theory +hep-th/9608048 Theory +hep-th/9611059 Theory +hep-th/9611094 Theory +hep-th/9611103 Theory +hep-th/9705061 Theory +hep-th/9706119 Theory +hep-th/9706187 Theory +hep-th/9706201 Theory +hep-th/9710180 Theory +hep-th/9710218 Theory +hep-th/9712032 Theory +hep-th/9712080 Theory +hep-th/9712088 Theory +hep-th/9801160 Theory +hep-th/9803208 Theory +hep-th/9806044 Theory +hep-th/9807147 Theory +hep-th/9808090 Theory +hep-th/9808183 Theory +hep-th/9809184 Theory +hep-th/9810251 Theory +hep-th/9811098 Theory +hep-th/9811224 Theory +hep-th/9812040 Theory +hep-th/9812117 Theory +hep-th/9812146 Theory +hep-th/9812193 Theory +hep-th/9905016 Theory +hep-th/9907051 Theory +math-ph/0303068 +math/0701606 Analysis of PDEs +nucl-th/9312005 +nucl-th/9401011 +nucl-th/9406003 +nucl-th/9904041 +nucl-th/9907041 +physics/0211103 Accelerator Physics +quant-ph/9612039 +0706.3149 +0706.4477 Algebraic Geometry +0708.1893 Chaotic Dynamics +0708.3773 Strongly Correlated Electrons +0709.1207 Computational Complexity +0712.1597 Representation Theory +0801.4141 Group Theory +0803.1424 Phenomenology +0804.4688 Quantum Algebra +0805.0302 Superconductivity +0806.1099 +0806.2429 Mesoscale and Nanoscale Physics +0806.4660 Optics +0807.0785 +0807.3540 Statistics Theory +0808.1261 +0808.1591 +0809.0785 Phenomenology +0809.1256 Materials Science +0809.1982 Phenomenology +0809.4128 Analysis of PDEs +0809.4752 +0810.0921 Lattice +0810.1085 Theory +0810.1557 Theory +0810.2823 Strongly Correlated Electrons +0810.3288 Atomic Physics +0810.3886 Phenomenology +0811.0479 Superconductivity +0811.0621 Symplectic Geometry +0811.0707 Phenomenology +0811.1638 Theory +0811.2427 Phenomenology +0811.3174 Statistical Mechanics +0811.4563 Chemical Physics +0812.0232 Phenomenology +0812.0857 Materials Science +0812.1465 Instrumentation and Detectors +0812.2246 Theory +0812.2247 Theory +0812.2900 Theory +0812.2957 Mesoscale and Nanoscale Physics +0812.3054 Chaotic Dynamics +0812.3157 +0812.4505 +0901.0052 Phenomenology +0901.0266 Phenomenology +0901.0676 Theory +0901.0954 Mesoscale and Nanoscale Physics +0901.1847 Theory +0901.1898 Numerical Analysis +0901.4332 Phenomenology +0902.0030 Theory +0902.0238 +0902.0334 Phenomenology +0902.1079 Theory +0902.1191 Superconductivity +0902.1419 +0902.2204 Theory +0902.2844 +0902.3427 Materials Science +0902.3546 Theory +0902.4121 +0902.4122 Theory +0903.0536 Theory +0903.0988 Theory +0903.1186 Theory +0903.3224 Lattice +0903.4309 Theory +0903.4858 Other Condensed Matter +0904.2869 Theory +0904.2915 Theory +0904.3119 Materials Science +0904.3904 Analysis of PDEs +0904.3906 Analysis of PDEs +0904.4643 Cell Behavior +0904.4696 Astrophysics of Galaxies +0904.4699 Algebraic Topology +0904.4708 Software Engineering +0904.4709 Software Engineering +0904.4710 +0904.4723 Probability +0904.4726 Superconductivity +0904.4727 Artificial Intelligence +0904.4728 Metric Geometry +0904.4732 Phenomenology +0904.4735 Information Theory +0904.4739 General Topology +0904.4741 Information Theory +0904.4743 Differential Geometry +0904.4756 Logic in Computer Science +0904.4758 Statistical Mechanics +0904.4766 +0904.4773 Chemical Physics +0904.4779 +0904.4780 Optics +0904.4793 Chemical Physics +0904.4798 History and Overview +0904.4803 Instrumentation and Detectors +0904.4807 Materials Science +0904.4808 Dynamical Systems +0904.4809 Materials Science +0904.4817 +0904.4822 Pricing of Securities +0904.4825 Plasma Physics +0904.4826 Combinatorics +0904.4828 Atomic Physics +0904.4832 Soft Condensed Matter +0904.4835 Physics and Society +0904.4836 Robotics +0904.4838 Algebraic Geometry +0904.4839 General Mathematics +0904.4840 Cosmology and Nongalactic Astrophysics +0904.4850 Disordered Systems and Neural Networks +0904.4851 Combinatorics +0904.4858 Commutative Algebra +0904.4860 Fluid Dynamics +0904.4867 Solar and Stellar Astrophysics +0904.4868 Optimization and Control +0904.4880 High Energy Astrophysical Phenomena +0904.4886 Geometric Topology +0904.4900 Information Theory +0904.4913 Phenomenology +0904.4923 Probability +0904.4924 Probability +0904.4925 +0904.4926 Information Theory +0904.4927 Combinatorics +cond-mat/0307187 Superconductivity +hep-ph/0004143 Phenomenology +hep-ph/0509087 Phenomenology +hep-th/0412099 Theory +hep-th/0608228 Theory +math/0701600 Combinatorics +physics/0007040 Physics and Society +physics/0309027 History and Philosophy of Physics +physics/0312135 Instrumentation and Detectors +0704.1145 +0705.1265 Combinatorics +0705.1743 +0705.3161 Theory +0705.3332 +0705.4338 Theory +0706.0161 Phenomenology +0706.0347 +0706.1806 Classical Analysis and ODEs +0707.0380 +0707.3039 +0707.3508 +0709.0081 +0710.1940 Disordered Systems and Neural Networks +0712.1366 Classical Analysis and ODEs +0712.2011 Statistical Mechanics +0712.2573 +0801.2063 Theory +0801.2928 Other Condensed Matter +0801.3427 +0802.0255 Phenomenology +0802.1541 Soft Condensed Matter +0802.2195 Phenomenology +0802.2499 Experiment +0802.2568 Phenomenology +0802.2960 +0802.3009 Experiment +0803.2367 Experiment +0804.1277 Statistical Mechanics +0804.1439 Group Theory +0804.1562 Phenomenology +0804.2868 Optimization and Control +0805.3263 Other Condensed Matter +0806.0544 Theory +0806.1032 Mesoscale and Nanoscale Physics +0806.1075 Statistical Mechanics +0807.3785 +0807.4310 +0807.4447 +0808.0825 Mesoscale and Nanoscale Physics +0808.1688 Group Theory +0808.1998 +0808.2378 Theory +0809.2243 +0809.2453 +0809.2574 Classical Analysis and ODEs +0810.1602 Statistical Mechanics +0810.1724 +0810.1788 Strongly Correlated Electrons +0810.2495 +0810.2509 Statistical Mechanics +0810.2623 Phenomenology +0810.4000 Trading and Market Microstructure +0811.1337 +0811.2786 Theory +0811.4116 Mesoscale and Nanoscale Physics +0811.4580 Statistical Mechanics +0812.1704 Theory +0812.1739 +0812.1891 +0812.2521 Theory +0812.2600 +0812.3431 Commutative Algebra +0812.3660 +0812.4849 Theory +0901.0034 +0901.0311 Theory +0901.1083 Mesoscale and Nanoscale Physics +0901.1091 Phenomenology +0901.1664 Theory +0901.1677 Theory +0901.3512 Lattice +0901.3561 +0901.3584 Theory +0901.4324 Analysis of PDEs +0902.2168 Atomic Physics +0902.2974 Mesoscale and Nanoscale Physics +0903.0185 Experiment +0903.0317 Phenomenology +0903.0680 Computational Finance +0903.1179 Instrumentation and Methods for Astrophysics +0903.1362 Strongly Correlated Electrons +0903.2463 Instrumentation and Detectors +0903.2511 Astrophysics of Galaxies +0903.2628 +0903.3048 Combinatorics +0903.3052 Geometric Topology +0903.3055 Geometric Topology +0903.3058 Biomolecules +0903.3061 Optimization and Control +0903.3072 Databases +0903.3080 Sound +0903.3084 Mesoscale and Nanoscale Physics +0903.3096 Information Theory +0903.3100 Optimization and Control +0903.3102 Materials Science +0903.3103 Multimedia +0903.3105 Number Theory +0903.3110 +0903.3112 Differential Geometry +0903.3117 Analysis of PDEs +0903.3123 Cosmology and Nongalactic Astrophysics +0903.3131 Information Theory +0903.3136 Chaotic Dynamics +0903.3140 Probability +0903.3144 Dynamical Systems +0903.3148 Algebraic Geometry +0903.3149 Instrumentation and Methods for Astrophysics +0903.3151 Combinatorics +0903.3160 +0903.3163 Networking and Internet Architecture +0903.3165 Networking and Internet Architecture +0903.3176 +0903.3180 Methodology +0903.3182 Cryptography and Security +0903.3183 Physics Education +0903.3188 +0903.3195 High Energy Astrophysical Phenomena +0903.3196 Materials Science +0903.3197 Superconductivity +0903.3198 Sound +0903.3200 Combinatorics +0903.3206 Genomics +0903.3218 Networking and Internet Architecture +0903.3221 Number Theory +0903.3228 Instrumentation and Methods for Astrophysics +astro-ph/0302463 +astro-ph/0509250 +astro-ph/0601063 +astro-ph/0604298 +astro-ph/0607329 +astro-ph/0607426 +astro-ph/0609033 +astro-ph/0609807 +astro-ph/0610938 +astro-ph/0611115 +astro-ph/0702102 +astro-ph/0703034 +astro-ph/0703194 +astro-ph/0703214 +astro-ph/0703293 +astro-ph/0703677 +astro-ph/0703686 +cond-mat/0610468 Statistical Mechanics +cond-mat/0702056 Soft Condensed Matter +gr-qc/0507046 +gr-qc/0603104 +gr-qc/0607036 +gr-qc/0607042 +gr-qc/0608023 +gr-qc/0611018 +gr-qc/0611109 +gr-qc/0701176 +gr-qc/0702141 +gr-qc/0703113 +hep-ph/0103042 Phenomenology +hep-ph/0501246 Phenomenology +hep-ph/0502240 Phenomenology +hep-ph/0510146 Phenomenology +hep-ph/0601106 Phenomenology +hep-ph/0608289 Phenomenology +hep-ph/0609279 Phenomenology +hep-ph/0611060 Phenomenology +hep-ph/0611245 Phenomenology +hep-ph/0612326 Phenomenology +hep-th/0205146 Theory +hep-th/0305017 Theory +hep-th/0412297 Theory +hep-th/0601198 Theory +hep-th/0602065 Theory +hep-th/0604005 Theory +hep-th/0607173 Theory +hep-th/0703059 Theory +hep-th/0703060 Theory +hep-th/0703154 Theory +math-ph/0603008 +math-ph/0603076 +math/0108153 Geometric Topology +math/0209010 Group Theory +math/0402217 Geometric Topology +math/0512605 Group Theory +math/0610967 Group Theory +math/0701538 Algebraic Geometry +nucl-th/0610013 +physics/0703146 Plasma Physics +quant-ph/0203149 +quant-ph/0209086 +quant-ph/9801026 +0705.1298 Data Analysis, Statistics and Probability +0705.2476 Theory +0706.1025 Theory +0706.1030 Theory +0706.1576 +0707.1158 Theory +0707.1159 Theory +0707.3125 Theory +0708.0366 Theory +0708.0383 Theory +0708.0392 Theory +0708.0782 Theory +0708.0797 Theory +0708.0803 Theory +0708.0818 Theory +0708.0955 Theory +0708.0971 Theory +0708.1001 Theory +0708.1917 Theory +0708.3484 Theory +0708.3530 Theory +0708.3845 Theory +0708.4025 Theory +0708.4127 Theory +0708.4201 Theory +0708.4303 Theory +0709.0308 Theory +0709.0472 Theory +0709.3203 Physics and Society +0709.3206 Physics and Society +0711.1401 Neural and Evolutionary Computing +0711.2410 Disordered Systems and Neural Networks +0711.3750 Soft Condensed Matter +0712.0359 Soft Condensed Matter +0712.0620 +0712.3221 Differential Geometry +0712.3285 +0801.0379 Data Analysis, Statistics and Probability +0802.4309 Other Condensed Matter +0804.2511 Quantum Algebra +0804.3994 Strongly Correlated Electrons +0807.0732 Materials Science +0807.2767 Computation +0808.3440 Mesoscale and Nanoscale Physics +0809.0171 Statistical Mechanics +0809.3401 Soft Condensed Matter +0809.3986 +0809.5249 Strongly Correlated Electrons +0810.0426 Mesoscale and Nanoscale Physics +0810.3112 Classical Analysis and ODEs +0810.3528 +0810.4646 Materials Science +0810.4995 +0811.1024 Phenomenology +0811.1032 Strongly Correlated Electrons +0811.2382 Phenomenology +0811.3864 Superconductivity +0811.3874 Superconductivity +0812.0587 +0812.1071 Strongly Correlated Electrons +0812.3864 Theory +0901.0859 Strongly Correlated Electrons +0901.1623 Strongly Correlated Electrons +0901.1690 Earth and Planetary Astrophysics +0901.3071 Algebraic Geometry +0902.2417 Theory +0902.3037 Commutative Algebra +0902.3769 +0902.3774 +0902.3782 +0902.3972 Lattice +0903.2162 Superconductivity +0903.2285 Materials Science +0903.2482 Solar and Stellar Astrophysics +0903.2623 Astrophysics of Galaxies +0903.3032 K-Theory and Homology +0903.3661 Optics +0903.3685 Combinatorics +0903.3778 Algebraic Geometry +0903.4232 Algebraic Geometry +0903.4648 Phenomenology +0904.0078 Category Theory +0904.0082 General Mathematics +0904.0084 +0904.0125 Category Theory +0904.0193 +0904.0259 Statistical Mechanics +0904.0268 Numerical Analysis +0904.0276 +0904.0284 Probability +0904.0285 Optics +0904.0290 +0904.0292 Data Structures and Algorithms +0904.0299 Differential Geometry +0904.0300 Artificial Intelligence +0904.0301 Differential Geometry +0904.0304 Phenomenology +0904.0309 General Physics +0904.0313 Information Retrieval +0904.0314 Representation Theory +0904.0315 Classical Physics +0904.0316 Statistics Theory +0904.0317 Applications +0904.0322 Optimization and Control +0904.0329 Other Condensed Matter +0904.0330 Instrumentation and Methods for Astrophysics +0904.0333 Statistics Theory +0904.0335 Logic +0904.0338 Statistics Theory +0904.0340 Geometric Topology +0904.0344 Trading and Market Microstructure +0904.0347 Cosmology and Nongalactic Astrophysics +0904.0350 Statistics Theory +0904.0357 Chaotic Dynamics +0904.0358 Solar and Stellar Astrophysics +0904.0360 Differential Geometry +0904.0368 Earth and Planetary Astrophysics +0904.0373 Superconductivity +0904.0384 Physics and Society +0904.0389 Quantum Algebra +0904.0391 Experiment +0904.0393 Experiment +0904.0394 Experiment +0904.0397 Classical Analysis and ODEs +0904.0408 Geometric Topology +0904.0411 Experiment +0904.0416 +0904.0424 Group Theory +0904.0428 Analysis of PDEs +0904.0431 Combinatorics +0904.0435 High Energy Astrophysical Phenomena +0904.0437 Computers and Society +0904.0440 Solar and Stellar Astrophysics +0904.0441 Combinatorics +0904.0446 Atmospheric and Oceanic Physics +astro-ph/0407204 +astro-ph/0408387 +astro-ph/0501231 +astro-ph/0504479 +astro-ph/0509398 +cond-mat/0501291 Statistical Mechanics +cond-mat/0508719 Disordered Systems and Neural Networks +cond-mat/0609198 Statistical Mechanics +cond-mat/0611696 Mesoscale and Nanoscale Physics +cond-mat/0611778 Disordered Systems and Neural Networks +cond-mat/0701506 Mesoscale and Nanoscale Physics +gr-qc/0005038 +gr-qc/0101050 +gr-qc/0111014 +gr-qc/0211023 +gr-qc/0307001 +gr-qc/0402026 +gr-qc/0404119 +gr-qc/0607035 +hep-ph/0407371 Phenomenology +math-ph/0603068 +math/0002218 Differential Geometry +math/0009222 Quantum Algebra +math/0404362 Algebraic Geometry +math/0404365 Algebraic Geometry +math/0408078 Geometric Topology +math/0410545 Probability +math/0412443 Metric Geometry +math/0509222 Algebraic Geometry +math/0509223 Algebraic Geometry +math/0509224 Algebraic Geometry +math/0510260 Symplectic Geometry +math/0604161 Algebraic Topology +math/0606493 Number Theory +math/0607274 Geometric Topology +math/0607558 Algebraic Geometry +math/0609303 Combinatorics +math/0701250 Statistics Theory +math/0703360 Statistics Theory +math/0703900 Probability +physics/0701146 Physics Education +0705.0429 +0705.2224 Soft Condensed Matter +0705.3912 Algebraic Geometry +0709.3618 Strongly Correlated Electrons +0710.1022 +0710.3835 +0711.4147 Phenomenology +0802.1328 Phenomenology +0803.3561 Phenomenology +0804.1669 Combinatorics +0804.4635 Phenomenology +0805.4412 K-Theory and Homology +0805.4696 +0806.2790 +0806.2850 +0806.3098 +0806.4549 Lattice +0807.1181 Number Theory +0807.1314 Theory +0807.3226 +0807.3254 Theory +0807.3813 +0807.5044 Phenomenology +0808.0523 Phenomenology +0808.1087 Phenomenology +0808.2767 Phenomenology +0808.3787 Phenomenology +0809.0258 Lattice +0809.0687 Theory +0809.0699 Quantum Algebra +0809.1092 +0809.1093 Phenomenology +0809.1277 Theory +0809.1704 Theory +0809.3402 Theory +0809.4158 Phenomenology +0809.4235 +0809.4822 Discrete Mathematics +0810.0339 Atomic Physics +0810.0660 Phenomenology +0810.0908 Theory +0810.1497 Phenomenology +0810.2022 +0810.3687 Theory +0810.4284 Phenomenology +0810.4295 Phenomenology +0810.4917 +0810.4958 Phenomenology +0810.4967 +0810.5444 Theory +0810.5733 Phenomenology +0811.0396 +0811.1181 Theory +0811.1647 Theory +0811.2029 +0811.2388 Phenomenology +0811.2695 Phenomenology +0811.2706 Phenomenology +0811.2846 +0811.3026 Lattice +0811.3240 +0811.3524 Theory +0811.3582 +0811.4405 Phenomenology +0811.4422 Theory +0812.0050 Theory +0812.0102 +0812.0200 +0812.0583 +0812.0825 +0812.0868 Phenomenology +0812.1150 +0812.1352 Phenomenology +0812.1665 Phenomenology +0812.1666 +0812.1681 Lattice +0812.1842 Phenomenology +0812.2121 +0812.2761 Lattice +0812.2905 +0812.3396 +0812.3442 Theory +0812.3456 +0812.4042 Lattice +0812.4065 +0812.4273 Phenomenology +0812.4304 Theory +0812.4342 +0812.4359 +0812.5008 Phenomenology +0901.0010 +0901.0036 Phenomenology +0901.0933 +0901.1067 Theory +0901.1106 Phenomenology +0901.1619 Phenomenology +0901.2229 Phenomenology +0901.2746 +0901.2958 +0901.2976 Experiment +0901.3387 Phenomenology +0901.3773 Experiment +0901.3791 Phenomenology +0901.3932 Astrophysics of Galaxies +0901.4136 Theory +0901.4478 Classical Analysis and ODEs +0901.4543 Theory +0901.4936 +0902.0136 +0902.0159 +0902.0368 +0902.0376 High Energy Astrophysical Phenomena +0902.0674 Cosmology and Nongalactic Astrophysics +0902.1006 Theory +0902.1221 Theory +0902.1310 Phenomenology +0902.1851 Cosmology and Nongalactic Astrophysics +0902.1872 Analysis of PDEs +0902.1877 Analysis of PDEs +0902.2131 Cosmology and Nongalactic Astrophysics +0902.2431 Commutative Algebra +0902.2498 Theory +0902.2595 Cosmology and Nongalactic Astrophysics +0903.0111 +0903.0528 Cosmology and Nongalactic Astrophysics +0903.0617 Cosmology and Nongalactic Astrophysics +0903.1292 Cosmology and Nongalactic Astrophysics +0903.1551 Statistical Mechanics +0903.2311 Solar and Stellar Astrophysics +0903.2694 +0903.2943 +0903.2949 Phenomenology +0903.3039 Phenomenology +0903.3159 Cosmology and Nongalactic Astrophysics +0903.3243 +0903.3255 Phenomenology +0903.3463 Phenomenology +0903.3946 Phenomenology +0903.4129 +0903.4437 Theory +0903.4568 +0903.5016 Other Condensed Matter +0903.5081 Phenomenology +0904.0439 +0904.0447 +0904.0512 +0904.0515 Phenomenology +0904.0706 +0904.1032 Cosmology and Nongalactic Astrophysics +0904.1103 Phenomenology +0904.1801 +0904.1970 Phenomenology +0904.2663 +0904.2687 Phenomenology +0904.2830 +0904.3067 Phenomenology +0904.3731 Phenomenology +0904.4390 Cosmology and Nongalactic Astrophysics +0904.4501 +0904.4551 +0904.4679 Soft Condensed Matter +0904.4718 Cosmology and Nongalactic Astrophysics +0904.4775 +0905.0099 +0905.0466 Lattice +0905.0479 Cosmology and Nongalactic Astrophysics +0905.0811 Lattice +0905.0962 Lattice +0905.1022 Phenomenology +0905.1453 Phenomenology +0905.1701 Phenomenology +0905.1709 Phenomenology +0905.2105 Phenomenology +0905.2160 Lattice +0905.2408 Cosmology and Nongalactic Astrophysics +0905.2624 Theory +0905.2772 Phenomenology +0905.2801 Phenomenology +0905.2901 +0905.2981 Phenomenology +0905.3161 Cosmology and Nongalactic Astrophysics +0905.3170 Theory +0905.3306 +0905.3406 +0905.3546 +0905.3756 Atomic Physics +0905.3770 Theory +0905.3877 Theory +0905.3980 Atomic Physics +0905.4055 Cosmology and Nongalactic Astrophysics +0905.4108 +0905.4120 Lattice +0905.4795 Theory +0905.4853 Cosmology and Nongalactic Astrophysics +0906.0090 Phenomenology +0906.0093 +0906.0677 +0906.0856 +0906.0959 Phenomenology +0906.1212 Mesoscale and Nanoscale Physics +0906.1345 Cosmology and Nongalactic Astrophysics +0906.1759 +0906.1800 +0906.2019 Phenomenology +0906.2313 Theory +0906.2473 Phenomenology +0906.2500 Phenomenology +0906.3026 Phenomenology +0906.3397 Phenomenology +0906.3586 Atomic Physics +0906.3813 Theory +0906.4375 +0906.4476 +0906.4767 +0906.4772 Cosmology and Nongalactic Astrophysics +0906.5344 +0906.5362 +0906.5366 Cosmology and Nongalactic Astrophysics +0906.5403 Analysis of PDEs +0906.5502 +0906.5536 Statistical Mechanics +0907.0290 Theory +0907.0317 Soft Condensed Matter +0907.0380 Theory +0907.0622 Phenomenology +0907.0705 Cosmology and Nongalactic Astrophysics +0907.0823 +0907.0900 Physics and Society +0907.0923 +0907.1146 Phenomenology +0907.1169 +0907.1214 +0907.1411 +0907.2147 Phenomenology +0907.2160 Phenomenology +0907.2198 Instrumentation and Methods for Astrophysics +0907.2443 Cosmology and Nongalactic Astrophysics +0907.2792 Theory +0907.3052 Cosmology and Nongalactic Astrophysics +0907.3109 Phenomenology +0907.3318 Cosmology and Nongalactic Astrophysics +0907.3448 High Energy Astrophysical Phenomena +0907.3703 Cosmology and Nongalactic Astrophysics +0907.4044 Phenomenology +0907.4057 +0907.4197 Theory +0907.4202 Cosmology and Nongalactic Astrophysics +0907.4229 Theory +0907.4231 Phenomenology +0907.4367 +0907.4532 Theory +0907.4603 Strongly Correlated Electrons +0907.4778 Cosmology and Nongalactic Astrophysics +0907.4901 Phenomenology +0907.4986 Theory +0907.5139 Phenomenology +0907.5385 +0907.5392 Phenomenology +0907.5400 Cosmology and Nongalactic Astrophysics +0907.5566 Phenomenology +0908.0432 Cosmology and Nongalactic Astrophysics +0908.0534 Cosmology and Nongalactic Astrophysics +0908.0766 Experiment +0908.1301 +0908.2446 Phenomenology +0908.2457 Cosmology and Nongalactic Astrophysics +0908.2531 Phenomenology +0908.2572 Phenomenology +0908.2746 Phenomenology +0908.2756 Theory +0908.2832 +0908.2915 Instrumentation and Detectors +0908.3100 Theory +0908.3217 High Energy Astrophysical Phenomena +0908.3714 Combinatorics +0908.3852 +0909.0024 Cosmology and Nongalactic Astrophysics +0909.0323 Theory +0909.0558 Phenomenology +0909.1427 +0909.2364 +0909.2404 Mesoscale and Nanoscale Physics +0909.2509 Mesoscale and Nanoscale Physics +0909.2734 Optics +0909.3345 +0909.3708 Mesoscale and Nanoscale Physics +0909.3974 Phenomenology +0909.4288 +0910.1218 Mesoscale and Nanoscale Physics +0910.1414 Mesoscale and Nanoscale Physics +0910.1644 Mesoscale and Nanoscale Physics +0910.1911 Mesoscale and Nanoscale Physics +0910.1983 Mesoscale and Nanoscale Physics +0910.1999 Mesoscale and Nanoscale Physics +0910.5812 Statistical Mechanics +0910.5815 +0910.5892 Physics Education +0911.0298 History and Philosophy of Physics +0911.0565 Optics +0911.0671 Numerical Analysis +0911.0928 Statistical Finance +0911.0929 Instrumentation and Methods for Astrophysics +0911.0932 Analysis of PDEs +0911.0937 Statistics Theory +0911.0942 Analysis of PDEs +0911.0946 +0911.0948 Analysis of PDEs +0911.0954 Complex Variables +0911.0964 Symplectic Geometry +0911.0971 Information Theory +0911.0977 Category Theory +0911.0978 Networking and Internet Architecture +0911.0979 Group Theory +0911.0980 Astrophysics of Galaxies +0911.0982 Strongly Correlated Electrons +0911.0985 Computation +0911.0988 Analysis of PDEs +0911.0989 Physics and Society +0911.0991 Instrumentation and Methods for Astrophysics +0911.1001 Soft Condensed Matter +0911.1004 Discrete Mathematics +0911.1007 Dynamical Systems +0911.1009 Logic in Computer Science +0911.1010 Solar and Stellar Astrophysics +0911.1013 +0911.1019 Analysis of PDEs +0911.1021 Artificial Intelligence +0911.1025 Classical Analysis and ODEs +0911.1031 Phenomenology +0911.1036 Networking and Internet Architecture +0911.1037 Physics and Society +0911.1041 Physics and Society +0911.1042 Physics and Society +0911.1044 Physics and Society +0911.1045 Materials Science +0911.1048 Physics and Society +0911.1049 +0911.1051 +0911.1052 +0911.1053 Physics and Society +0911.1055 Physics and Society +0911.1056 Cosmology and Nongalactic Astrophysics +0911.1057 Physics and Society +0911.1058 Materials Science +0911.1061 +0911.1066 Quantitative Methods +0911.1074 Number Theory +0911.1082 Information Theory +0911.1085 Phenomenology +0911.1086 Phenomenology +0911.1094 Superconductivity +0911.1095 Physics and Society +0911.1099 Theory +0911.1104 Complex Variables +0911.1106 Instrumentation and Methods for Astrophysics +0911.1111 Strongly Correlated Electrons +0911.1112 Information Retrieval +0911.1115 Materials Science +0911.1117 Methodology +0911.1119 Computational Finance +0911.1122 Complex Variables +astro-ph/0012209 +astro-ph/0101003 +astro-ph/0101004 +astro-ph/0101005 +astro-ph/0101006 +astro-ph/0101007 +astro-ph/0101010 +astro-ph/0101014 +astro-ph/0101015 +astro-ph/0101017 +astro-ph/0101019 +astro-ph/0101020 +astro-ph/0101021 +astro-ph/0101022 +astro-ph/0101023 +astro-ph/0101024 +astro-ph/0101025 +astro-ph/0101026 +astro-ph/0101027 +astro-ph/0101029 +astro-ph/0101034 +astro-ph/0101037 +astro-ph/0101039 +astro-ph/0101040 +astro-ph/0101042 +astro-ph/0101043 +astro-ph/0101045 +astro-ph/0101047 +astro-ph/0101049 +astro-ph/0101050 +astro-ph/0101052 +astro-ph/0101056 +astro-ph/0101057 +astro-ph/0101058 +astro-ph/0101059 +astro-ph/0101060 +astro-ph/0101062 +astro-ph/0101063 +astro-ph/0101064 +astro-ph/0101065 +astro-ph/0101066 +astro-ph/0101067 +astro-ph/0101068 +astro-ph/0101070 +astro-ph/0101074 +astro-ph/0101079 +astro-ph/0101080 +astro-ph/0101083 +astro-ph/0101085 +astro-ph/0101089 +astro-ph/0101090 +astro-ph/0101091 +astro-ph/0101092 +astro-ph/0101094 +astro-ph/0101095 +astro-ph/0101096 +astro-ph/0101100 +astro-ph/0101102 +astro-ph/0101106 +astro-ph/0101109 +astro-ph/0101110 +astro-ph/0101111 +astro-ph/0101112 +astro-ph/0101113 +astro-ph/0101114 +astro-ph/0101115 +astro-ph/0101116 +astro-ph/0101117 +astro-ph/0101118 +astro-ph/0101119 +astro-ph/0101125 +astro-ph/0101126 +astro-ph/0101127 +astro-ph/0101130 +astro-ph/0101131 +astro-ph/0101132 +astro-ph/0101134 +astro-ph/0101137 +astro-ph/0101141 +astro-ph/0101143 +astro-ph/0101145 +astro-ph/0101146 +astro-ph/0101148 +astro-ph/0101149 +astro-ph/0101151 +astro-ph/0101152 +astro-ph/0101153 +astro-ph/0101155 +astro-ph/0101156 +astro-ph/0101158 +astro-ph/0101159 +astro-ph/0101160 +astro-ph/0101161 +astro-ph/0101163 +astro-ph/0101164 +astro-ph/0101165 +astro-ph/0101167 +astro-ph/0101168 +astro-ph/0101172 +astro-ph/0101174 +astro-ph/0101179 +astro-ph/0101182 +astro-ph/0101184 +astro-ph/0101187 +astro-ph/0101188 +astro-ph/0101189 +astro-ph/0101191 +astro-ph/0101192 +astro-ph/0101194 +astro-ph/0101196 +astro-ph/0101197 +astro-ph/0101198 +astro-ph/0101199 +astro-ph/0101201 +astro-ph/0101205 +astro-ph/0101206 +astro-ph/0101208 +astro-ph/0101210 +astro-ph/0101211 +astro-ph/0101213 +astro-ph/0101218 +astro-ph/0101219 +astro-ph/0101220 +astro-ph/0101222 +astro-ph/0101223 +astro-ph/0101224 +astro-ph/0101225 +astro-ph/0101226 +astro-ph/0101229 +astro-ph/0101230 +astro-ph/0101232 +astro-ph/0101233 +astro-ph/0101234 +astro-ph/0101239 +astro-ph/0101240 +astro-ph/0101241 +astro-ph/0101251 +astro-ph/0101253 +astro-ph/0101254 +astro-ph/0101258 +astro-ph/0101260 +astro-ph/0101261 +astro-ph/0101262 +astro-ph/0101267 +astro-ph/0101269 +astro-ph/0101270 +astro-ph/0101271 +astro-ph/0101274 +astro-ph/0101275 +astro-ph/0101276 +astro-ph/0101277 +astro-ph/0101278 +astro-ph/0101282 +astro-ph/0101287 +astro-ph/0101290 +astro-ph/0101292 +astro-ph/0101293 +astro-ph/0101294 +astro-ph/0101295 +astro-ph/0101297 +astro-ph/0101299 +astro-ph/0101300 +astro-ph/0101301 +astro-ph/0101302 +astro-ph/0101304 +astro-ph/0101306 +astro-ph/0101307 +astro-ph/0101308 +astro-ph/0101309 +astro-ph/0101312 +astro-ph/0101313 +astro-ph/0101314 +astro-ph/0101315 +astro-ph/0101316 +astro-ph/0101317 +astro-ph/0101320 +astro-ph/0101322 +astro-ph/0101324 +astro-ph/0101325 +astro-ph/0101326 +astro-ph/0101329 +astro-ph/0101331 +astro-ph/0101335 +astro-ph/0101337 +astro-ph/0101339 +astro-ph/0101340 +astro-ph/0101342 +astro-ph/0101344 +astro-ph/0101345 +astro-ph/0101346 +astro-ph/0101348 +astro-ph/0101351 +astro-ph/0101352 +astro-ph/0101353 +astro-ph/0101356 +astro-ph/0101359 +astro-ph/0101361 +astro-ph/0101363 +astro-ph/0101364 +astro-ph/0101365 +astro-ph/0101366 +astro-ph/0101371 +astro-ph/0101375 +astro-ph/0101378 +astro-ph/0101382 +astro-ph/0101385 +astro-ph/0101387 +astro-ph/0101388 +astro-ph/0101389 +astro-ph/0101391 +astro-ph/0101392 +astro-ph/0101393 +astro-ph/0101394 +astro-ph/0101396 +astro-ph/0101397 +astro-ph/0101400 +astro-ph/0101402 +astro-ph/0101403 +astro-ph/0101404 +astro-ph/0101405 +astro-ph/0101410 +astro-ph/0101411 +astro-ph/0101412 +astro-ph/0101413 +astro-ph/0101417 +astro-ph/0101418 +astro-ph/0101419 +astro-ph/0101421 +astro-ph/0101423 +astro-ph/0101424 +astro-ph/0101431 +astro-ph/0101435 +astro-ph/0101436 +astro-ph/0101437 +astro-ph/0101440 +astro-ph/0101441 +astro-ph/0101443 +astro-ph/0101444 +astro-ph/0101445 +astro-ph/0101448 +astro-ph/0101449 +astro-ph/0101450 +astro-ph/0101451 +astro-ph/0101453 +astro-ph/0101456 +astro-ph/0101458 +astro-ph/0101459 +astro-ph/0101460 +astro-ph/0101461 +astro-ph/0101464 +astro-ph/0101465 +astro-ph/0101466 +astro-ph/0101467 +astro-ph/0101470 +astro-ph/0101471 +astro-ph/0101472 +astro-ph/0101473 +astro-ph/0101477 +astro-ph/0101478 +astro-ph/0101481 +astro-ph/0101484 +astro-ph/0101488 +astro-ph/0101495 +astro-ph/0101497 +astro-ph/0101498 +astro-ph/0101499 +astro-ph/0101501 +astro-ph/0101504 +astro-ph/0101505 +astro-ph/0101506 +astro-ph/0101509 +astro-ph/0101510 +astro-ph/0101512 +astro-ph/0101513 +astro-ph/0101517 +astro-ph/0101518 +astro-ph/0101520 +astro-ph/0101523 +astro-ph/0101524 +astro-ph/0101525 +astro-ph/0101526 +astro-ph/0101528 +astro-ph/0101529 +astro-ph/0101530 +astro-ph/0101531 +astro-ph/0101534 +astro-ph/0101537 +astro-ph/0101538 +astro-ph/0101539 +astro-ph/0101541 +astro-ph/0101542 +astro-ph/0101543 +astro-ph/0101544 +astro-ph/0101545 +astro-ph/0101546 +astro-ph/0101548 +astro-ph/0101549 +astro-ph/0101550 +astro-ph/0101552 +astro-ph/0101555 +astro-ph/0101556 +astro-ph/0101557 +astro-ph/0101560 +astro-ph/0101562 +astro-ph/0101564 +astro-ph/0101566 +astro-ph/0101567 +astro-ph/0101568 +astro-ph/0101569 +astro-ph/0101571 +astro-ph/0101572 +astro-ph/0101573 +astro-ph/0102001 +astro-ph/0102002 +astro-ph/0102003 +astro-ph/0102004 +astro-ph/0102008 +astro-ph/0102010 +astro-ph/0102011 +astro-ph/0102012 +astro-ph/0102013 +astro-ph/0102014 +astro-ph/0102015 +astro-ph/0102016 +astro-ph/0102018 +astro-ph/0102019 +astro-ph/0102021 +astro-ph/0102026 +astro-ph/0102027 +astro-ph/0102028 +astro-ph/0102029 +astro-ph/0102033 +astro-ph/0102034 +astro-ph/0102035 +astro-ph/0102036 +astro-ph/0102037 +astro-ph/0102038 +astro-ph/0102041 +astro-ph/0102042 +astro-ph/0102045 +astro-ph/0102048 +astro-ph/0102050 +astro-ph/0102051 +astro-ph/0102052 +astro-ph/0102053 +astro-ph/0102054 +astro-ph/0102055 +astro-ph/0102057 +astro-ph/0102060 +astro-ph/0102061 +astro-ph/0102065 +astro-ph/0102066 +astro-ph/0102067 +astro-ph/0102068 +astro-ph/0102069 +astro-ph/0102072 +astro-ph/0102075 +astro-ph/0102076 +astro-ph/0102078 +astro-ph/0102079 +astro-ph/0102080 +astro-ph/0102081 +astro-ph/0102083 +astro-ph/0102084 +astro-ph/0102085 +astro-ph/0102087 +astro-ph/0102089 +astro-ph/0102090 +astro-ph/0102091 +astro-ph/0102092 +astro-ph/0102093 +astro-ph/0102094 +astro-ph/0102095 +astro-ph/0102099 +astro-ph/0102100 +astro-ph/0102101 +astro-ph/0102102 +astro-ph/0102106 +astro-ph/0102108 +astro-ph/0102110 +astro-ph/0102112 +astro-ph/0102113 +astro-ph/0102114 +astro-ph/0102117 +astro-ph/0102118 +astro-ph/0102119 +astro-ph/0102120 +astro-ph/0102121 +astro-ph/0102123 +astro-ph/0102124 +astro-ph/0102125 +astro-ph/0102127 +astro-ph/0102128 +astro-ph/0102129 +astro-ph/0102130 +astro-ph/0102133 +astro-ph/0102134 +astro-ph/0102137 +astro-ph/0102138 +astro-ph/0102139 +astro-ph/0102142 +astro-ph/0102143 +astro-ph/0102145 +astro-ph/0102146 +astro-ph/0102147 +astro-ph/0102148 +astro-ph/0102149 +astro-ph/0102150 +astro-ph/0102153 +astro-ph/0102156 +astro-ph/0102157 +astro-ph/0102159 +astro-ph/0102160 +astro-ph/0102161 +astro-ph/0102162 +astro-ph/0102163 +astro-ph/0102164 +astro-ph/0102165 +astro-ph/0102167 +astro-ph/0102169 +astro-ph/0102170 +astro-ph/0102171 +astro-ph/0102172 +astro-ph/0102175 +astro-ph/0102176 +astro-ph/0102178 +astro-ph/0102180 +astro-ph/0102181 +astro-ph/0102183 +astro-ph/0102184 +astro-ph/0102188 +astro-ph/0102192 +astro-ph/0102194 +astro-ph/0102195 +astro-ph/0102196 +astro-ph/0102198 +astro-ph/0102199 +astro-ph/0102201 +astro-ph/0102202 +astro-ph/0102203 +astro-ph/0102205 +astro-ph/0102206 +astro-ph/0102208 +astro-ph/0102209 +astro-ph/0102210 +astro-ph/0102211 +astro-ph/0102212 +astro-ph/0102215 +astro-ph/0102216 +astro-ph/0102217 +astro-ph/0102218 +astro-ph/0102219 +astro-ph/0102220 +astro-ph/0102221 +astro-ph/0102222 +astro-ph/0102225 +astro-ph/0102227 +astro-ph/0102228 +astro-ph/0102230 +astro-ph/0102231 +astro-ph/0102232 +astro-ph/0102233 +astro-ph/0102234 +astro-ph/0102236 +astro-ph/0102237 +astro-ph/0102238 +astro-ph/0102239 +astro-ph/0102240 +astro-ph/0102243 +astro-ph/0102244 +astro-ph/0102245 +astro-ph/0102248 +astro-ph/0102250 +astro-ph/0102253 +astro-ph/0102254 +astro-ph/0102256 +astro-ph/0102257 +astro-ph/0102258 +astro-ph/0102259 +astro-ph/0102260 +astro-ph/0102261 +astro-ph/0102262 +astro-ph/0102263 +astro-ph/0102267 +astro-ph/0102271 +astro-ph/0102272 +astro-ph/0102273 +astro-ph/0102274 +astro-ph/0102275 +astro-ph/0102276 +astro-ph/0102277 +astro-ph/0102278 +astro-ph/0102282 +astro-ph/0102283 +astro-ph/0102287 +astro-ph/0102288 +astro-ph/0102289 +astro-ph/0102290 +astro-ph/0102291 +astro-ph/0102292 +astro-ph/0102293 +astro-ph/0102296 +astro-ph/0102297 +astro-ph/0102298 +astro-ph/0102302 +astro-ph/0102303 +astro-ph/0102304 +astro-ph/0102306 +astro-ph/0102307 +astro-ph/0102309 +astro-ph/0102310 +astro-ph/0102312 +astro-ph/0102314 +astro-ph/0102316 +astro-ph/0102317 +astro-ph/0102319 +astro-ph/0102322 +astro-ph/0102323 +astro-ph/0102325 +astro-ph/0102327 +astro-ph/0102328 +astro-ph/0102329 +astro-ph/0102330 +astro-ph/0102331 +astro-ph/0102332 +astro-ph/0102333 +astro-ph/0102335 +astro-ph/0102336 +astro-ph/0102339 +astro-ph/0102342 +astro-ph/0102343 +astro-ph/0102345 +astro-ph/0102349 +astro-ph/0102350 +astro-ph/0102351 +astro-ph/0102352 +astro-ph/0102354 +astro-ph/0102355 +astro-ph/0102357 +astro-ph/0102358 +astro-ph/0102359 +astro-ph/0102361 +astro-ph/0102365 +astro-ph/0102367 +astro-ph/0102368 +astro-ph/0102369 +astro-ph/0102370 +astro-ph/0102371 +astro-ph/0102373 +astro-ph/0102375 +astro-ph/0102377 +astro-ph/0102380 +astro-ph/0102381 +astro-ph/0102384 +astro-ph/0102385 +astro-ph/0102387 +astro-ph/0102388 +astro-ph/0102393 +astro-ph/0102394 +astro-ph/0102395 +astro-ph/0102396 +astro-ph/0102397 +astro-ph/0102398 +astro-ph/0102399 +astro-ph/0102400 +astro-ph/0102401 +astro-ph/0102404 +astro-ph/0102405 +astro-ph/0102407 +astro-ph/0102408 +astro-ph/0102409 +astro-ph/0102410 +astro-ph/0102412 +astro-ph/0102413 +astro-ph/0102414 +astro-ph/0102415 +astro-ph/0102416 +astro-ph/0102417 +astro-ph/0102420 +astro-ph/0102421 +astro-ph/0102422 +astro-ph/0102424 +astro-ph/0102425 +astro-ph/0102427 +astro-ph/0102428 +astro-ph/0102433 +astro-ph/0102434 +astro-ph/0102436 +astro-ph/0102437 +astro-ph/0102438 +astro-ph/0102439 +astro-ph/0102442 +astro-ph/0102444 +astro-ph/0102448 +astro-ph/0102449 +astro-ph/0102451 +astro-ph/0102452 +astro-ph/0102453 +astro-ph/0102458 +astro-ph/0102461 +astro-ph/0102463 +astro-ph/0102464 +astro-ph/0102465 +astro-ph/0102468 +astro-ph/0102469 +astro-ph/0102470 +astro-ph/0102472 +astro-ph/0102473 +astro-ph/0102474 +astro-ph/0102475 +astro-ph/0102476 +astro-ph/0102477 +astro-ph/0102478 +astro-ph/0102479 +astro-ph/0102480 +astro-ph/0102481 +astro-ph/0102482 +astro-ph/0102483 +astro-ph/0102484 +astro-ph/0102485 +astro-ph/0102486 +astro-ph/0102487 +astro-ph/0102489 +astro-ph/0102492 +astro-ph/0102493 +astro-ph/0102494 +astro-ph/0102496 +astro-ph/0102497 +astro-ph/0102498 +astro-ph/0102499 +astro-ph/0102501 +astro-ph/0102502 +astro-ph/0102503 +astro-ph/0102504 +astro-ph/0103002 +astro-ph/0103005 +astro-ph/0103006 +astro-ph/0103007 +astro-ph/0103009 +astro-ph/0103011 +astro-ph/0103012 +astro-ph/0103013 +astro-ph/0103014 +astro-ph/0103016 +astro-ph/0103018 +astro-ph/0103019 +astro-ph/0103024 +astro-ph/0103026 +astro-ph/0103029 +astro-ph/0103030 +astro-ph/0103032 +astro-ph/0103033 +astro-ph/0103034 +astro-ph/0103035 +astro-ph/0103036 +astro-ph/0103037 +astro-ph/0103038 +astro-ph/0103039 +astro-ph/0103042 +astro-ph/0103043 +astro-ph/0103044 +astro-ph/0103045 +astro-ph/0103046 +astro-ph/0103047 +astro-ph/0103049 +astro-ph/0103050 +astro-ph/0103051 +astro-ph/0103052 +astro-ph/0103053 +astro-ph/0103055 +astro-ph/0103056 +astro-ph/0103057 +astro-ph/0103059 +astro-ph/0103060 +astro-ph/0103061 +astro-ph/0103062 +astro-ph/0103063 +astro-ph/0103065 +astro-ph/0103066 +astro-ph/0103067 +astro-ph/0103072 +astro-ph/0103075 +astro-ph/0103078 +astro-ph/0103081 +astro-ph/0103082 +astro-ph/0103083 +astro-ph/0103084 +astro-ph/0103086 +astro-ph/0103087 +astro-ph/0103088 +astro-ph/0103089 +astro-ph/0103091 +astro-ph/0103092 +astro-ph/0103093 +astro-ph/0103095 +astro-ph/0103097 +astro-ph/0103098 +astro-ph/0103099 +astro-ph/0103100 +astro-ph/0103101 +astro-ph/0103102 +astro-ph/0103103 +astro-ph/0103104 +astro-ph/0103105 +astro-ph/0103106 +astro-ph/0103107 +astro-ph/0103108 +astro-ph/0103109 +astro-ph/0103111 +astro-ph/0103113 +astro-ph/0103114 +astro-ph/0103115 +astro-ph/0103116 +astro-ph/0103118 +astro-ph/0103119 +astro-ph/0103120 +astro-ph/0103121 +astro-ph/0103122 +astro-ph/0103123 +astro-ph/0103124 +astro-ph/0103125 +astro-ph/0103126 +astro-ph/0103131 +astro-ph/0103132 +astro-ph/0103135 +astro-ph/0103136 +astro-ph/0103139 +astro-ph/0103141 +astro-ph/0103144 +astro-ph/0103146 +astro-ph/0103149 +astro-ph/0103151 +astro-ph/0103152 +astro-ph/0103154 +astro-ph/0103155 +astro-ph/0103157 +astro-ph/0103159 +astro-ph/0103161 +astro-ph/0103166 +astro-ph/0103168 +astro-ph/0103172 +astro-ph/0103175 +astro-ph/0103178 +astro-ph/0103179 +astro-ph/0103180 +astro-ph/0103182 +astro-ph/0103188 +astro-ph/0103190 +astro-ph/0103191 +astro-ph/0103192 +astro-ph/0103193 +astro-ph/0103194 +astro-ph/0103195 +astro-ph/0103196 +astro-ph/0103199 +astro-ph/0103200 +astro-ph/0103201 +astro-ph/0103202 +astro-ph/0103203 +astro-ph/0103204 +astro-ph/0103205 +astro-ph/0103206 +astro-ph/0103207 +astro-ph/0103208 +astro-ph/0103209 +astro-ph/0103210 +astro-ph/0103212 +astro-ph/0103213 +astro-ph/0103216 +astro-ph/0103219 +astro-ph/0103220 +astro-ph/0103221 +astro-ph/0103222 +astro-ph/0103223 +astro-ph/0103224 +astro-ph/0103225 +astro-ph/0103226 +astro-ph/0103227 +astro-ph/0103228 +astro-ph/0103229 +astro-ph/0103231 +astro-ph/0103232 +astro-ph/0103233 +astro-ph/0103234 +astro-ph/0103235 +astro-ph/0103237 +astro-ph/0103239 +astro-ph/0103240 +astro-ph/0103242 +astro-ph/0103243 +astro-ph/0103245 +astro-ph/0103246 +astro-ph/0103247 +astro-ph/0103248 +astro-ph/0103250 +astro-ph/0103251 +astro-ph/0103252 +astro-ph/0103253 +astro-ph/0103254 +astro-ph/0103255 +astro-ph/0103256 +astro-ph/0103258 +astro-ph/0103259 +astro-ph/0103260 +astro-ph/0103262 +astro-ph/0103263 +astro-ph/0103264 +astro-ph/0103266 +astro-ph/0103268 +astro-ph/0103270 +astro-ph/0103272 +astro-ph/0103273 +astro-ph/0103277 +astro-ph/0103278 +astro-ph/0103279 +astro-ph/0103280 +astro-ph/0103281 +astro-ph/0103282 +astro-ph/0103283 +astro-ph/0103284 +astro-ph/0103285 +astro-ph/0103286 +astro-ph/0103287 +astro-ph/0103289 +astro-ph/0103290 +astro-ph/0103292 +astro-ph/0103293 +astro-ph/0103294 +astro-ph/0103295 +astro-ph/0103296 +astro-ph/0103297 +astro-ph/0103298 +astro-ph/0103299 +astro-ph/0103303 +astro-ph/0103304 +astro-ph/0103305 +astro-ph/0103306 +astro-ph/0103307 +astro-ph/0103308 +astro-ph/0103309 +astro-ph/0103310 +astro-ph/0103311 +astro-ph/0103312 +astro-ph/0103315 +astro-ph/0103316 +astro-ph/0103318 +astro-ph/0103319 +astro-ph/0103320 +astro-ph/0103321 +astro-ph/0103322 +astro-ph/0103323 +astro-ph/0103325 +astro-ph/0103326 +astro-ph/0103328 +astro-ph/0103329 +astro-ph/0103330 +astro-ph/0103331 +astro-ph/0103332 +astro-ph/0103333 +astro-ph/0103334 +astro-ph/0103336 +astro-ph/0103338 +astro-ph/0103340 +astro-ph/0103344 +astro-ph/0103345 +astro-ph/0103346 +astro-ph/0103347 +astro-ph/0103349 +astro-ph/0103350 +astro-ph/0103351 +astro-ph/0103352 +astro-ph/0103353 +astro-ph/0103354 +astro-ph/0103355 +astro-ph/0103357 +astro-ph/0103359 +astro-ph/0103360 +astro-ph/0103361 +astro-ph/0103362 +astro-ph/0103365 +astro-ph/0103367 +astro-ph/0103368 +astro-ph/0103370 +astro-ph/0103373 +astro-ph/0103374 +astro-ph/0103376 +astro-ph/0103379 +astro-ph/0103381 +astro-ph/0103385 +astro-ph/0103386 +astro-ph/0103387 +astro-ph/0103390 +astro-ph/0103394 +astro-ph/0103399 +astro-ph/0103400 +astro-ph/0103401 +astro-ph/0103402 +astro-ph/0103403 +astro-ph/0103406 +astro-ph/0103407 +astro-ph/0103408 +astro-ph/0103410 +astro-ph/0103411 +astro-ph/0103413 +astro-ph/0103414 +astro-ph/0103415 +astro-ph/0103416 +astro-ph/0103421 +astro-ph/0103422 +astro-ph/0103423 +astro-ph/0103424 +astro-ph/0103425 +astro-ph/0103426 +astro-ph/0103427 +astro-ph/0103429 +astro-ph/0103432 +astro-ph/0103433 +astro-ph/0103434 +astro-ph/0103436 +astro-ph/0103437 +astro-ph/0103438 +astro-ph/0103441 +astro-ph/0103442 +astro-ph/0103445 +astro-ph/0103447 +astro-ph/0103448 +astro-ph/0103450 +astro-ph/0103451 +astro-ph/0103454 +astro-ph/0103458 +astro-ph/0103459 +astro-ph/0103460 +astro-ph/0103464 +astro-ph/0103465 +astro-ph/0103466 +astro-ph/0103467 +astro-ph/0103468 +astro-ph/0103469 +astro-ph/0103473 +astro-ph/0103474 +astro-ph/0103475 +astro-ph/0103476 +astro-ph/0103478 +astro-ph/0103481 +astro-ph/0103482 +astro-ph/0103483 +astro-ph/0103484 +astro-ph/0103485 +astro-ph/0103486 +astro-ph/0103487 +astro-ph/0103488 +astro-ph/0103489 +astro-ph/0103490 +astro-ph/0103491 +astro-ph/0103492 +astro-ph/0103494 +astro-ph/0103497 +astro-ph/0103498 +astro-ph/0103500 +astro-ph/0103501 +astro-ph/0103502 +astro-ph/0103503 +astro-ph/0103504 +astro-ph/0103505 +astro-ph/0103507 +astro-ph/0103512 +astro-ph/0103515 +astro-ph/0103517 +astro-ph/0103518 +astro-ph/0103519 +astro-ph/0103520 +astro-ph/0103521 +astro-ph/0103522 +astro-ph/0104001 +astro-ph/0104002 +astro-ph/0104004 +astro-ph/0104005 +astro-ph/0104006 +astro-ph/0104007 +astro-ph/0104008 +astro-ph/0104009 +astro-ph/0104010 +astro-ph/0104011 +astro-ph/0104012 +astro-ph/0104013 +astro-ph/0104014 +astro-ph/0104015 +astro-ph/0104017 +astro-ph/0104018 +astro-ph/0104019 +astro-ph/0104021 +astro-ph/0104023 +astro-ph/0104024 +astro-ph/0104027 +astro-ph/0104028 +astro-ph/0104029 +astro-ph/0104031 +astro-ph/0104033 +astro-ph/0104034 +astro-ph/0104035 +astro-ph/0104040 +astro-ph/0104042 +astro-ph/0104044 +astro-ph/0104053 +astro-ph/0104054 +astro-ph/0104059 +astro-ph/0104060 +astro-ph/0104062 +astro-ph/0104064 +astro-ph/0104065 +astro-ph/0104066 +astro-ph/0104067 +astro-ph/0104068 +astro-ph/0104069 +astro-ph/0104070 +astro-ph/0104071 +astro-ph/0104072 +astro-ph/0104073 +astro-ph/0104077 +astro-ph/0104081 +astro-ph/0104083 +astro-ph/0104084 +astro-ph/0104086 +astro-ph/0104087 +astro-ph/0104089 +astro-ph/0104090 +astro-ph/0104091 +astro-ph/0104092 +astro-ph/0104093 +astro-ph/0104094 +astro-ph/0104095 +astro-ph/0104099 +astro-ph/0104100 +astro-ph/0104101 +astro-ph/0104102 +astro-ph/0104103 +astro-ph/0104104 +astro-ph/0104105 +astro-ph/0104106 +astro-ph/0104107 +astro-ph/0104109 +astro-ph/0104110 +astro-ph/0104111 +astro-ph/0104114 +astro-ph/0104115 +astro-ph/0104121 +astro-ph/0104122 +astro-ph/0104123 +astro-ph/0104125 +astro-ph/0104126 +astro-ph/0104128 +astro-ph/0104130 +astro-ph/0104131 +astro-ph/0104132 +astro-ph/0104133 +astro-ph/0104134 +astro-ph/0104135 +astro-ph/0104136 +astro-ph/0104138 +astro-ph/0104139 +astro-ph/0104140 +astro-ph/0104141 +astro-ph/0104142 +astro-ph/0104146 +astro-ph/0104147 +astro-ph/0104148 +astro-ph/0104149 +astro-ph/0104151 +astro-ph/0104153 +astro-ph/0104155 +astro-ph/0104156 +astro-ph/0104159 +astro-ph/0104161 +astro-ph/0104163 +astro-ph/0104164 +astro-ph/0104167 +astro-ph/0104168 +astro-ph/0104169 +astro-ph/0104171 +astro-ph/0104177 +astro-ph/0104178 +astro-ph/0104179 +astro-ph/0104185 +astro-ph/0104186 +astro-ph/0104187 +astro-ph/0104188 +astro-ph/0104189 +astro-ph/0104190 +astro-ph/0104193 +astro-ph/0104194 +astro-ph/0104195 +astro-ph/0104196 +astro-ph/0104197 +astro-ph/0104200 +astro-ph/0104201 +astro-ph/0104202 +astro-ph/0104203 +astro-ph/0104206 +astro-ph/0104207 +astro-ph/0104208 +astro-ph/0104211 +astro-ph/0104215 +astro-ph/0104216 +astro-ph/0104219 +astro-ph/0104220 +astro-ph/0104221 +astro-ph/0104222 +astro-ph/0104224 +astro-ph/0104225 +astro-ph/0104226 +astro-ph/0104227 +astro-ph/0104231 +astro-ph/0104232 +astro-ph/0104233 +astro-ph/0104234 +astro-ph/0104235 +astro-ph/0104236 +astro-ph/0104238 +astro-ph/0104239 +astro-ph/0104240 +astro-ph/0104241 +astro-ph/0104244 +astro-ph/0104248 +astro-ph/0104252 +astro-ph/0104253 +astro-ph/0104257 +astro-ph/0104258 +astro-ph/0104259 +astro-ph/0104260 +astro-ph/0104261 +astro-ph/0104262 +astro-ph/0104263 +astro-ph/0104264 +astro-ph/0104265 +astro-ph/0104267 +astro-ph/0104268 +astro-ph/0104269 +astro-ph/0104270 +astro-ph/0104271 +astro-ph/0104272 +astro-ph/0104276 +astro-ph/0104279 +astro-ph/0104280 +astro-ph/0104281 +astro-ph/0104282 +astro-ph/0104284 +astro-ph/0104285 +astro-ph/0104286 +astro-ph/0104287 +astro-ph/0104289 +astro-ph/0104290 +astro-ph/0104291 +astro-ph/0104295 +astro-ph/0104296 +astro-ph/0104297 +astro-ph/0104298 +astro-ph/0104301 +astro-ph/0104302 +astro-ph/0104303 +astro-ph/0104304 +astro-ph/0104305 +astro-ph/0104306 +astro-ph/0104308 +astro-ph/0104309 +astro-ph/0104311 +astro-ph/0104312 +astro-ph/0104313 +astro-ph/0104315 +astro-ph/0104317 +astro-ph/0104318 +astro-ph/0104319 +astro-ph/0104322 +astro-ph/0104323 +astro-ph/0104324 +astro-ph/0104325 +astro-ph/0104326 +astro-ph/0104328 +astro-ph/0104329 +astro-ph/0104330 +astro-ph/0104331 +astro-ph/0104332 +astro-ph/0104333 +astro-ph/0104334 +astro-ph/0104336 +astro-ph/0104339 +astro-ph/0104342 +astro-ph/0104344 +astro-ph/0104345 +astro-ph/0104346 +astro-ph/0104347 +astro-ph/0104350 +astro-ph/0104351 +astro-ph/0104352 +astro-ph/0104353 +astro-ph/0104355 +astro-ph/0104356 +astro-ph/0104357 +astro-ph/0104360 +astro-ph/0104362 +astro-ph/0104364 +astro-ph/0104365 +astro-ph/0104366 +astro-ph/0104367 +astro-ph/0104368 +astro-ph/0104369 +astro-ph/0104371 +astro-ph/0104372 +astro-ph/0104373 +astro-ph/0104374 +astro-ph/0104375 +astro-ph/0104376 +astro-ph/0104377 +astro-ph/0104378 +astro-ph/0104379 +astro-ph/0104380 +astro-ph/0104382 +astro-ph/0104383 +astro-ph/0104384 +astro-ph/0104385 +astro-ph/0104389 +astro-ph/0104390 +astro-ph/0104391 +astro-ph/0104393 +astro-ph/0104395 +astro-ph/0104396 +astro-ph/0104397 +astro-ph/0104398 +astro-ph/0104399 +astro-ph/0104402 +astro-ph/0104403 +astro-ph/0104406 +astro-ph/0104407 +astro-ph/0104408 +astro-ph/0104409 +astro-ph/0104410 +astro-ph/0104411 +astro-ph/0104412 +astro-ph/0104413 +astro-ph/0104414 +astro-ph/0104415 +astro-ph/0104416 +astro-ph/0104417 +astro-ph/0104418 +astro-ph/0104420 +astro-ph/0104421 +astro-ph/0104422 +astro-ph/0104425 +astro-ph/0104429 +astro-ph/0104430 +astro-ph/0104431 +astro-ph/0104432 +astro-ph/0104433 +astro-ph/0104434 +astro-ph/0104436 +astro-ph/0104437 +astro-ph/0104438 +astro-ph/0104439 +astro-ph/0104440 +astro-ph/0104441 +astro-ph/0104442 +astro-ph/0104444 +astro-ph/0104445 +astro-ph/0104447 +astro-ph/0104449 +astro-ph/0104451 +astro-ph/0104453 +astro-ph/0104454 +astro-ph/0104456 +astro-ph/0104457 +astro-ph/0104458 +astro-ph/0104459 +astro-ph/0104460 +astro-ph/0104461 +astro-ph/0104462 +astro-ph/0104463 +astro-ph/0104465 +astro-ph/0104467 +astro-ph/0104468 +astro-ph/0104469 +astro-ph/0104470 +astro-ph/0104471 +astro-ph/0104474 +astro-ph/0104475 +astro-ph/0104476 +astro-ph/0104477 +astro-ph/0104478 +astro-ph/0104480 +astro-ph/0104483 +astro-ph/0104488 +astro-ph/0104489 +astro-ph/0104490 +astro-ph/0105001 +astro-ph/0105002 +astro-ph/0105003 +astro-ph/0105006 +astro-ph/0105007 +astro-ph/0105008 +astro-ph/0105009 +astro-ph/0105010 +astro-ph/0105011 +astro-ph/0105012 +astro-ph/0105013 +astro-ph/0105014 +astro-ph/0105015 +astro-ph/0105017 +astro-ph/0105018 +astro-ph/0105019 +astro-ph/0105022 +astro-ph/0105023 +astro-ph/0105024 +astro-ph/0105025 +astro-ph/0105026 +astro-ph/0105027 +astro-ph/0105028 +astro-ph/0105030 +astro-ph/0105032 +astro-ph/0105033 +astro-ph/0105034 +astro-ph/0105035 +astro-ph/0105038 +astro-ph/0105039 +astro-ph/0105040 +astro-ph/0105041 +astro-ph/0105043 +astro-ph/0105044 +astro-ph/0105047 +astro-ph/0105049 +astro-ph/0105052 +astro-ph/0105055 +astro-ph/0105056 +astro-ph/0105059 +astro-ph/0105061 +astro-ph/0105062 +astro-ph/0105063 +astro-ph/0105064 +astro-ph/0105065 +astro-ph/0105066 +astro-ph/0105067 +astro-ph/0105069 +astro-ph/0105071 +astro-ph/0105073 +astro-ph/0105075 +astro-ph/0105076 +astro-ph/0105078 +astro-ph/0105079 +astro-ph/0105080 +astro-ph/0105081 +astro-ph/0105082 +astro-ph/0105083 +astro-ph/0105086 +astro-ph/0105088 +astro-ph/0105092 +astro-ph/0105095 +astro-ph/0105097 +astro-ph/0105098 +astro-ph/0105099 +astro-ph/0105100 +astro-ph/0105101 +astro-ph/0105102 +astro-ph/0105103 +astro-ph/0105104 +astro-ph/0105105 +astro-ph/0105106 +astro-ph/0105107 +astro-ph/0105108 +astro-ph/0105109 +astro-ph/0105110 +astro-ph/0105113 +astro-ph/0105115 +astro-ph/0105117 +astro-ph/0105121 +astro-ph/0105122 +astro-ph/0105123 +astro-ph/0105125 +astro-ph/0105128 +astro-ph/0105129 +astro-ph/0105131 +astro-ph/0105133 +astro-ph/0105136 +astro-ph/0105137 +astro-ph/0105139 +astro-ph/0105140 +astro-ph/0105142 +astro-ph/0105144 +astro-ph/0105145 +astro-ph/0105146 +astro-ph/0105147 +astro-ph/0105148 +astro-ph/0105149 +astro-ph/0105151 +astro-ph/0105152 +astro-ph/0105154 +astro-ph/0105157 +astro-ph/0105159 +astro-ph/0105161 +astro-ph/0105162 +astro-ph/0105165 +astro-ph/0105166 +astro-ph/0105168 +astro-ph/0105169 +astro-ph/0105170 +astro-ph/0105171 +astro-ph/0105173 +astro-ph/0105174 +astro-ph/0105175 +astro-ph/0105176 +astro-ph/0105179 +astro-ph/0105180 +astro-ph/0105181 +astro-ph/0105182 +astro-ph/0105183 +astro-ph/0105184 +astro-ph/0105185 +astro-ph/0105186 +astro-ph/0105187 +astro-ph/0105188 +astro-ph/0105190 +astro-ph/0105194 +astro-ph/0105195 +astro-ph/0105196 +astro-ph/0105198 +astro-ph/0105199 +astro-ph/0105202 +astro-ph/0105203 +astro-ph/0105204 +astro-ph/0105206 +astro-ph/0105207 +astro-ph/0105208 +astro-ph/0105210 +astro-ph/0105211 +astro-ph/0105212 +astro-ph/0105213 +astro-ph/0105214 +astro-ph/0105218 +astro-ph/0105219 +astro-ph/0105220 +astro-ph/0105222 +astro-ph/0105223 +astro-ph/0105224 +astro-ph/0105225 +astro-ph/0105228 +astro-ph/0105229 +astro-ph/0105230 +astro-ph/0105233 +astro-ph/0105234 +astro-ph/0105237 +astro-ph/0105238 +astro-ph/0105239 +astro-ph/0105240 +astro-ph/0105243 +astro-ph/0105247 +astro-ph/0105248 +astro-ph/0105249 +astro-ph/0105254 +astro-ph/0105255 +astro-ph/0105256 +astro-ph/0105257 +astro-ph/0105258 +astro-ph/0105259 +astro-ph/0105260 +astro-ph/0105262 +astro-ph/0105263 +astro-ph/0105266 +astro-ph/0105267 +astro-ph/0105268 +astro-ph/0105270 +astro-ph/0105273 +astro-ph/0105276 +astro-ph/0105277 +astro-ph/0105278 +astro-ph/0105282 +astro-ph/0105283 +astro-ph/0105285 +astro-ph/0105286 +astro-ph/0105287 +astro-ph/0105295 +astro-ph/0105296 +astro-ph/0105297 +astro-ph/0105300 +astro-ph/0105301 +astro-ph/0105303 +astro-ph/0105304 +astro-ph/0105307 +astro-ph/0105308 +astro-ph/0105309 +astro-ph/0105310 +astro-ph/0105312 +astro-ph/0105314 +astro-ph/0105315 +astro-ph/0105316 +astro-ph/0105318 +astro-ph/0105319 +astro-ph/0105320 +astro-ph/0105321 +astro-ph/0105323 +astro-ph/0105324 +astro-ph/0105326 +astro-ph/0105327 +astro-ph/0105328 +astro-ph/0105331 +astro-ph/0105333 +astro-ph/0105334 +astro-ph/0105335 +astro-ph/0105336 +astro-ph/0105338 +astro-ph/0105340 +astro-ph/0105341 +astro-ph/0105342 +astro-ph/0105343 +astro-ph/0105345 +astro-ph/0105346 +astro-ph/0105347 +astro-ph/0105348 +astro-ph/0105349 +astro-ph/0105354 +astro-ph/0105355 +astro-ph/0105357 +astro-ph/0105360 +astro-ph/0105361 +astro-ph/0105362 +astro-ph/0105365 +astro-ph/0105366 +astro-ph/0105368 +astro-ph/0105369 +astro-ph/0105370 +astro-ph/0105371 +astro-ph/0105372 +astro-ph/0105373 +astro-ph/0105375 +astro-ph/0105376 +astro-ph/0105380 +astro-ph/0105383 +astro-ph/0105384 +astro-ph/0105385 +astro-ph/0105386 +astro-ph/0105387 +astro-ph/0105389 +astro-ph/0105391 +astro-ph/0105392 +astro-ph/0105394 +astro-ph/0105395 +astro-ph/0105399 +astro-ph/0105402 +astro-ph/0105405 +astro-ph/0105408 +astro-ph/0105411 +astro-ph/0105412 +astro-ph/0105414 +astro-ph/0105415 +astro-ph/0105416 +astro-ph/0105417 +astro-ph/0105421 +astro-ph/0105422 +astro-ph/0105423 +astro-ph/0105424 +astro-ph/0105425 +astro-ph/0105426 +astro-ph/0105427 +astro-ph/0105432 +astro-ph/0105433 +astro-ph/0105434 +astro-ph/0105441 +astro-ph/0105442 +astro-ph/0105444 +astro-ph/0105446 +astro-ph/0105447 +astro-ph/0105450 +astro-ph/0105451 +astro-ph/0105454 +astro-ph/0105455 +astro-ph/0105456 +astro-ph/0105457 +astro-ph/0105461 +astro-ph/0105462 +astro-ph/0105463 +astro-ph/0105464 +astro-ph/0105465 +astro-ph/0105466 +astro-ph/0105467 +astro-ph/0105469 +astro-ph/0105471 +astro-ph/0105472 +astro-ph/0105474 +astro-ph/0105475 +astro-ph/0105477 +astro-ph/0105478 +astro-ph/0105481 +astro-ph/0105482 +astro-ph/0105484 +astro-ph/0105485 +astro-ph/0105487 +astro-ph/0105493 +astro-ph/0105497 +astro-ph/0105501 +astro-ph/0105502 +astro-ph/0105503 +astro-ph/0105506 +astro-ph/0105507 +astro-ph/0105508 +astro-ph/0105510 +astro-ph/0105512 +astro-ph/0105514 +astro-ph/0105515 +astro-ph/0105517 +astro-ph/0105518 +astro-ph/0105519 +astro-ph/0105521 +astro-ph/0105522 +astro-ph/0105523 +astro-ph/0105524 +astro-ph/0105525 +astro-ph/0105526 +astro-ph/0105527 +astro-ph/0105528 +astro-ph/0105529 +astro-ph/0105531 +astro-ph/0105533 +astro-ph/0105534 +astro-ph/0105536 +astro-ph/0105537 +astro-ph/0105538 +astro-ph/0105539 +astro-ph/0105541 +astro-ph/0105546 +astro-ph/0105547 +astro-ph/0105551 +astro-ph/0105552 +astro-ph/0105553 +astro-ph/0105555 +astro-ph/0105556 +astro-ph/0105557 +astro-ph/0105558 +astro-ph/0105559 +astro-ph/0105564 +astro-ph/0105565 +astro-ph/0105566 +astro-ph/0106001 +astro-ph/0106003 +astro-ph/0106004 +astro-ph/0106005 +astro-ph/0106006 +astro-ph/0106007 +astro-ph/0106011 +astro-ph/0106012 +astro-ph/0106017 +astro-ph/0106019 +astro-ph/0106020 +astro-ph/0106021 +astro-ph/0106022 +astro-ph/0106023 +astro-ph/0106024 +astro-ph/0106026 +astro-ph/0106030 +astro-ph/0106031 +astro-ph/0106032 +astro-ph/0106036 +astro-ph/0106038 +astro-ph/0106043 +astro-ph/0106045 +astro-ph/0106047 +astro-ph/0106048 +astro-ph/0106050 +astro-ph/0106052 +astro-ph/0106055 +astro-ph/0106056 +astro-ph/0106058 +astro-ph/0106059 +astro-ph/0106060 +astro-ph/0106061 +astro-ph/0106066 +astro-ph/0106068 +astro-ph/0106069 +astro-ph/0106072 +astro-ph/0106073 +astro-ph/0106074 +astro-ph/0106080 +astro-ph/0106083 +astro-ph/0106084 +astro-ph/0106085 +astro-ph/0106086 +astro-ph/0106087 +astro-ph/0106090 +astro-ph/0106092 +astro-ph/0106096 +astro-ph/0106097 +astro-ph/0106101 +astro-ph/0106103 +astro-ph/0106106 +astro-ph/0106107 +astro-ph/0106109 +astro-ph/0106112 +astro-ph/0106117 +astro-ph/0106118 +astro-ph/0106120 +astro-ph/0106121 +astro-ph/0106123 +astro-ph/0106125 +astro-ph/0106131 +astro-ph/0106132 +astro-ph/0106133 +astro-ph/0106134 +astro-ph/0106135 +astro-ph/0106136 +astro-ph/0106140 +astro-ph/0106141 +astro-ph/0106142 +astro-ph/0106143 +astro-ph/0106145 +astro-ph/0106146 +astro-ph/0106147 +astro-ph/0106150 +astro-ph/0106153 +astro-ph/0106154 +astro-ph/0106157 +astro-ph/0106158 +astro-ph/0106159 +astro-ph/0106160 +astro-ph/0106162 +astro-ph/0106163 +astro-ph/0106165 +astro-ph/0106166 +astro-ph/0106167 +astro-ph/0106171 +astro-ph/0106172 +astro-ph/0106174 +astro-ph/0106175 +astro-ph/0106176 +astro-ph/0106177 +astro-ph/0106180 +astro-ph/0106181 +astro-ph/0106185 +astro-ph/0106186 +astro-ph/0106187 +astro-ph/0106188 +astro-ph/0106189 +astro-ph/0106190 +astro-ph/0106191 +astro-ph/0106192 +astro-ph/0106193 +astro-ph/0106197 +astro-ph/0106198 +astro-ph/0106202 +astro-ph/0106204 +astro-ph/0106205 +astro-ph/0106206 +astro-ph/0106209 +astro-ph/0106213 +astro-ph/0106215 +astro-ph/0106219 +astro-ph/0106220 +astro-ph/0106221 +astro-ph/0106224 +astro-ph/0106228 +astro-ph/0106229 +astro-ph/0106230 +astro-ph/0106231 +astro-ph/0106233 +astro-ph/0106235 +astro-ph/0106240 +astro-ph/0106242 +astro-ph/0106245 +astro-ph/0106246 +astro-ph/0106248 +astro-ph/0106249 +astro-ph/0106250 +astro-ph/0106251 +astro-ph/0106252 +astro-ph/0106253 +astro-ph/0106255 +astro-ph/0106256 +astro-ph/0106257 +astro-ph/0106258 +astro-ph/0106260 +astro-ph/0106261 +astro-ph/0106263 +astro-ph/0106264 +astro-ph/0106265 +astro-ph/0106267 +astro-ph/0106268 +astro-ph/0106270 +astro-ph/0106273 +astro-ph/0106274 +astro-ph/0106277 +astro-ph/0106278 +astro-ph/0106279 +astro-ph/0106281 +astro-ph/0106282 +astro-ph/0106283 +astro-ph/0106286 +astro-ph/0106288 +astro-ph/0106290 +astro-ph/0106291 +astro-ph/0106292 +astro-ph/0106293 +astro-ph/0106294 +astro-ph/0106299 +astro-ph/0106300 +astro-ph/0106301 +astro-ph/0106302 +astro-ph/0106303 +astro-ph/0106305 +astro-ph/0106306 +astro-ph/0106308 +astro-ph/0106310 +astro-ph/0106312 +astro-ph/0106315 +astro-ph/0106316 +astro-ph/0106318 +astro-ph/0106319 +astro-ph/0106320 +astro-ph/0106321 +astro-ph/0106322 +astro-ph/0106323 +astro-ph/0106325 +astro-ph/0106326 +astro-ph/0106329 +astro-ph/0106332 +astro-ph/0106334 +astro-ph/0106335 +astro-ph/0106336 +astro-ph/0106338 +astro-ph/0106339 +astro-ph/0106342 +astro-ph/0106343 +astro-ph/0106344 +astro-ph/0106348 +astro-ph/0106349 +astro-ph/0106351 +astro-ph/0106353 +astro-ph/0106354 +astro-ph/0106355 +astro-ph/0106356 +astro-ph/0106357 +astro-ph/0106361 +astro-ph/0106362 +astro-ph/0106367 +astro-ph/0106370 +astro-ph/0106371 +astro-ph/0106372 +astro-ph/0106376 +astro-ph/0106377 +astro-ph/0106378 +astro-ph/0106379 +astro-ph/0106382 +astro-ph/0106383 +astro-ph/0106384 +astro-ph/0106385 +astro-ph/0106387 +astro-ph/0106390 +astro-ph/0106391 +astro-ph/0106393 +astro-ph/0106394 +astro-ph/0106395 +astro-ph/0106399 +astro-ph/0106400 +astro-ph/0106402 +astro-ph/0106403 +astro-ph/0106406 +astro-ph/0106407 +astro-ph/0106408 +astro-ph/0106409 +astro-ph/0106415 +astro-ph/0106417 +astro-ph/0106419 +astro-ph/0106421 +astro-ph/0106423 +astro-ph/0106425 +astro-ph/0106426 +astro-ph/0106428 +astro-ph/0106429 +astro-ph/0106431 +astro-ph/0106432 +astro-ph/0106433 +astro-ph/0106434 +astro-ph/0106439 +astro-ph/0106440 +astro-ph/0106441 +astro-ph/0106443 +astro-ph/0106444 +astro-ph/0106446 +astro-ph/0106447 +astro-ph/0106450 +astro-ph/0106451 +astro-ph/0106453 +astro-ph/0106454 +astro-ph/0106456 +astro-ph/0106458 +astro-ph/0106459 +astro-ph/0106462 +astro-ph/0106463 +astro-ph/0106464 +astro-ph/0106466 +astro-ph/0106469 +astro-ph/0106470 +astro-ph/0106473 +astro-ph/0106477 +astro-ph/0106478 +astro-ph/0106480 +astro-ph/0106486 +astro-ph/0106489 +astro-ph/0106492 +astro-ph/0106493 +astro-ph/0106496 +astro-ph/0106497 +astro-ph/0106499 +astro-ph/0106506 +astro-ph/0106507 +astro-ph/0106512 +astro-ph/0106513 +astro-ph/0106514 +astro-ph/0106515 +astro-ph/0106516 +astro-ph/0106517 +astro-ph/0106518 +astro-ph/0106519 +astro-ph/0106520 +astro-ph/0106523 +astro-ph/0106524 +astro-ph/0106525 +astro-ph/0106526 +astro-ph/0106529 +astro-ph/0106530 +astro-ph/0106531 +astro-ph/0106532 +astro-ph/0106534 +astro-ph/0106536 +astro-ph/0106542 +astro-ph/0106547 +astro-ph/0106548 +astro-ph/0106550 +astro-ph/0106551 +astro-ph/0106552 +astro-ph/0106553 +astro-ph/0106554 +astro-ph/0106556 +astro-ph/0106557 +astro-ph/0106560 +astro-ph/0106562 +astro-ph/0106565 +astro-ph/0106568 +astro-ph/0106570 +astro-ph/0106571 +astro-ph/0106573 +astro-ph/0106575 +astro-ph/0107002 +astro-ph/0107005 +astro-ph/0107006 +astro-ph/0107007 +astro-ph/0107009 +astro-ph/0107011 +astro-ph/0107013 +astro-ph/0107014 +astro-ph/0107015 +astro-ph/0107017 +astro-ph/0107019 +astro-ph/0107020 +astro-ph/0107022 +astro-ph/0107026 +astro-ph/0107027 +astro-ph/0107029 +astro-ph/0107030 +astro-ph/0107031 +astro-ph/0107032 +astro-ph/0107036 +astro-ph/0107037 +astro-ph/0107038 +astro-ph/0107039 +astro-ph/0107040 +astro-ph/0107041 +astro-ph/0107045 +astro-ph/0107046 +astro-ph/0107048 +astro-ph/0107049 +astro-ph/0107050 +astro-ph/0107052 +astro-ph/0107053 +astro-ph/0107054 +astro-ph/0107055 +astro-ph/0107059 +astro-ph/0107060 +astro-ph/0107061 +astro-ph/0107062 +astro-ph/0107065 +astro-ph/0107067 +astro-ph/0107070 +astro-ph/0107071 +astro-ph/0107072 +astro-ph/0107073 +astro-ph/0107074 +astro-ph/0107075 +astro-ph/0107076 +astro-ph/0107077 +astro-ph/0107080 +astro-ph/0107081 +astro-ph/0107082 +astro-ph/0107083 +astro-ph/0107085 +astro-ph/0107086 +astro-ph/0107088 +astro-ph/0107095 +astro-ph/0107096 +astro-ph/0107097 +astro-ph/0107098 +astro-ph/0107101 +astro-ph/0107102 +astro-ph/0107103 +astro-ph/0107104 +astro-ph/0107106 +astro-ph/0107107 +astro-ph/0107108 +astro-ph/0107110 +astro-ph/0107111 +astro-ph/0107112 +astro-ph/0107113 +astro-ph/0107115 +astro-ph/0107117 +astro-ph/0107118 +astro-ph/0107119 +astro-ph/0107121 +astro-ph/0107126 +astro-ph/0107131 +astro-ph/0107132 +astro-ph/0107133 +astro-ph/0107135 +astro-ph/0107137 +astro-ph/0107138 +astro-ph/0107139 +astro-ph/0107142 +astro-ph/0107144 +astro-ph/0107145 +astro-ph/0107146 +astro-ph/0107148 +astro-ph/0107151 +astro-ph/0107153 +astro-ph/0107154 +astro-ph/0107155 +astro-ph/0107156 +astro-ph/0107158 +astro-ph/0107160 +astro-ph/0107161 +astro-ph/0107162 +astro-ph/0107163 +astro-ph/0107164 +astro-ph/0107165 +astro-ph/0107166 +astro-ph/0107168 +astro-ph/0107170 +astro-ph/0107171 +astro-ph/0107172 +astro-ph/0107175 +astro-ph/0107176 +astro-ph/0107180 +astro-ph/0107181 +astro-ph/0107184 +astro-ph/0107185 +astro-ph/0107186 +astro-ph/0107188 +astro-ph/0107189 +astro-ph/0107190 +astro-ph/0107192 +astro-ph/0107193 +astro-ph/0107195 +astro-ph/0107196 +astro-ph/0107199 +astro-ph/0107201 +astro-ph/0107202 +astro-ph/0107207 +astro-ph/0107209 +astro-ph/0107211 +astro-ph/0107213 +astro-ph/0107214 +astro-ph/0107219 +astro-ph/0107220 +astro-ph/0107221 +astro-ph/0107223 +astro-ph/0107227 +astro-ph/0107229 +astro-ph/0107235 +astro-ph/0107236 +astro-ph/0107238 +astro-ph/0107239 +astro-ph/0107240 +astro-ph/0107242 +astro-ph/0107243 +astro-ph/0107244 +astro-ph/0107247 +astro-ph/0107250 +astro-ph/0107251 +astro-ph/0107252 +astro-ph/0107257 +astro-ph/0107258 +astro-ph/0107261 +astro-ph/0107262 +astro-ph/0107264 +astro-ph/0107265 +astro-ph/0107266 +astro-ph/0107268 +astro-ph/0107269 +astro-ph/0107270 +astro-ph/0107272 +astro-ph/0107274 +astro-ph/0107275 +astro-ph/0107277 +astro-ph/0107279 +astro-ph/0107280 +astro-ph/0107282 +astro-ph/0107284 +astro-ph/0107286 +astro-ph/0107287 +astro-ph/0107288 +astro-ph/0107292 +astro-ph/0107293 +astro-ph/0107295 +astro-ph/0107296 +astro-ph/0107298 +astro-ph/0107300 +astro-ph/0107304 +astro-ph/0107307 +astro-ph/0107308 +astro-ph/0107309 +astro-ph/0107310 +astro-ph/0107312 +astro-ph/0107315 +astro-ph/0107317 +astro-ph/0107320 +astro-ph/0107322 +astro-ph/0107326 +astro-ph/0107328 +astro-ph/0107330 +astro-ph/0107331 +astro-ph/0107332 +astro-ph/0107333 +astro-ph/0107336 +astro-ph/0107338 +astro-ph/0107340 +astro-ph/0107341 +astro-ph/0107342 +astro-ph/0107343 +astro-ph/0107345 +astro-ph/0107346 +astro-ph/0107348 +astro-ph/0107349 +astro-ph/0107350 +astro-ph/0107352 +astro-ph/0107354 +astro-ph/0107355 +astro-ph/0107357 +astro-ph/0107359 +astro-ph/0107360 +astro-ph/0107361 +astro-ph/0107362 +astro-ph/0107364 +astro-ph/0107365 +astro-ph/0107368 +astro-ph/0107370 +astro-ph/0107371 +astro-ph/0107372 +astro-ph/0107373 +astro-ph/0107374 +astro-ph/0107375 +astro-ph/0107377 +astro-ph/0107378 +astro-ph/0107379 +astro-ph/0107380 +astro-ph/0107382 +astro-ph/0107384 +astro-ph/0107385 +astro-ph/0107388 +astro-ph/0107390 +astro-ph/0107392 +astro-ph/0107394 +astro-ph/0107396 +astro-ph/0107398 +astro-ph/0107402 +astro-ph/0107404 +astro-ph/0107405 +astro-ph/0107409 +astro-ph/0107410 +astro-ph/0107411 +astro-ph/0107412 +astro-ph/0107413 +astro-ph/0107414 +astro-ph/0107420 +astro-ph/0107426 +astro-ph/0107431 +astro-ph/0107432 +astro-ph/0107433 +astro-ph/0107435 +astro-ph/0107436 +astro-ph/0107437 +astro-ph/0107440 +astro-ph/0107442 +astro-ph/0107446 +astro-ph/0107447 +astro-ph/0107448 +astro-ph/0107449 +astro-ph/0107450 +astro-ph/0107453 +astro-ph/0107454 +astro-ph/0107456 +astro-ph/0107459 +astro-ph/0107460 +astro-ph/0107461 +astro-ph/0107462 +astro-ph/0107463 +astro-ph/0107464 +astro-ph/0107466 +astro-ph/0107467 +astro-ph/0107468 +astro-ph/0107470 +astro-ph/0107471 +astro-ph/0107472 +astro-ph/0107474 +astro-ph/0107475 +astro-ph/0107476 +astro-ph/0107477 +astro-ph/0107478 +astro-ph/0107479 +astro-ph/0107480 +astro-ph/0107484 +astro-ph/0107486 +astro-ph/0107487 +astro-ph/0107488 +astro-ph/0107491 +astro-ph/0107493 +astro-ph/0107497 +astro-ph/0107499 +astro-ph/0107502 +astro-ph/0107504 +astro-ph/0107505 +astro-ph/0107506 +astro-ph/0107508 +astro-ph/0107509 +astro-ph/0107510 +astro-ph/0107511 +astro-ph/0107513 +astro-ph/0107514 +astro-ph/0107515 +astro-ph/0107516 +astro-ph/0107517 +astro-ph/0107518 +astro-ph/0407190 +cond-mat/0504511 Superconductivity +cond-mat/0605085 Superconductivity +cond-mat/0608737 Superconductivity +hep-ph/0209053 Phenomenology +hep-th/0606165 Theory +math/0610285 Probability +math/0612109 Metric Geometry +nucl-ex/0012011 +nucl-th/0001002 +nucl-th/0001003 +nucl-th/0001004 +nucl-th/0001005 +nucl-th/0001007 +nucl-th/0001008 +nucl-th/0001012 +nucl-th/0001013 +nucl-th/0001015 +nucl-th/0001017 +nucl-th/0001020 +nucl-th/0001022 +nucl-th/0001023 +nucl-th/0001024 +nucl-th/0001028 +nucl-th/0001029 +nucl-th/0001030 +nucl-th/0001031 +nucl-th/0001033 +nucl-th/0001034 +nucl-th/0001035 +nucl-th/0001036 +nucl-th/0001037 +nucl-th/0001038 +nucl-th/0001039 +nucl-th/0001040 +nucl-th/0001041 +nucl-th/0001042 +nucl-th/0001043 +nucl-th/0001044 +nucl-th/0001047 +nucl-th/0001050 +nucl-th/0001051 +nucl-th/0001052 +nucl-th/0001054 +nucl-th/0001055 +nucl-th/0001056 +nucl-th/0001057 +nucl-th/0001058 +nucl-th/0001059 +nucl-th/0001061 +nucl-th/0002002 +nucl-th/0002003 +nucl-th/0002005 +nucl-th/0002006 +nucl-th/0002007 +nucl-th/0002011 +nucl-th/0002012 +nucl-th/0002013 +nucl-th/0002015 +nucl-th/0002016 +nucl-th/0002017 +nucl-th/0002018 +nucl-th/0002024 +nucl-th/0002025 +nucl-th/0002027 +nucl-th/0002028 +nucl-th/0002039 +nucl-th/0002041 +nucl-th/0002043 +nucl-th/0002045 +nucl-th/0002049 +nucl-th/0002050 +nucl-th/0002052 +nucl-th/0002055 +nucl-th/0002056 +nucl-th/0002057 +nucl-th/0002058 +nucl-th/0002062 +nucl-th/0002063 +nucl-th/0002064 +nucl-th/0003001 +nucl-th/0003002 +nucl-th/0003003 +nucl-th/0003004 +nucl-th/0003005 +nucl-th/0003006 +nucl-th/0003007 +nucl-th/0003008 +nucl-th/0003009 +nucl-th/0003010 +nucl-th/0003011 +nucl-th/0003014 +nucl-th/0003015 +nucl-th/0003016 +nucl-th/0003017 +nucl-th/0003019 +nucl-th/0003023 +nucl-th/0003024 +nucl-th/0003025 +nucl-th/0003027 +nucl-th/0003029 +nucl-th/0003030 +nucl-th/0003032 +nucl-th/0003034 +nucl-th/0003036 +nucl-th/0003037 +nucl-th/0003038 +nucl-th/0003039 +nucl-th/0003040 +nucl-th/0003041 +nucl-th/0003042 +nucl-th/0003044 +nucl-th/0003045 +nucl-th/0003047 +nucl-th/0003048 +nucl-th/0003050 +nucl-th/0003051 +nucl-th/0003052 +nucl-th/0003053 +nucl-th/0003054 +nucl-th/0003055 +nucl-th/0003057 +nucl-th/0003058 +nucl-th/0003059 +nucl-th/0003060 +nucl-th/0003062 +nucl-th/0003063 +nucl-th/0003066 +nucl-th/0003068 +nucl-th/0003069 +nucl-th/0003071 +nucl-th/0003073 +nucl-th/0003074 +nucl-th/0003075 +nucl-th/0004002 +nucl-th/0004003 +nucl-th/0004004 +nucl-th/0004007 +nucl-th/0004009 +nucl-th/0004010 +nucl-th/0004013 +nucl-th/0004017 +nucl-th/0004018 +nucl-th/0004024 +nucl-th/0004025 +nucl-th/0004026 +nucl-th/0004027 +nucl-th/0004029 +nucl-th/0004031 +nucl-th/0004034 +nucl-th/0004035 +nucl-th/0004036 +nucl-th/0004037 +nucl-th/0004038 +nucl-th/0004040 +nucl-th/0004041 +nucl-th/0004042 +nucl-th/0004043 +nucl-th/0004045 +nucl-th/0004046 +nucl-th/0004047 +nucl-th/0004048 +nucl-th/0004049 +nucl-th/0004051 +nucl-th/0004056 +nucl-th/0004057 +nucl-th/0004058 +nucl-th/0004059 +nucl-th/0004060 +nucl-th/0004062 +nucl-th/0004063 +nucl-th/0004065 +nucl-th/0005004 +nucl-th/0005006 +nucl-th/0005009 +nucl-th/0005010 +nucl-th/0005011 +nucl-th/0005012 +nucl-th/0005013 +nucl-th/0005014 +nucl-th/0005015 +nucl-th/0005016 +nucl-th/0005018 +nucl-th/0005019 +nucl-th/0005021 +nucl-th/0005022 +nucl-th/0005024 +nucl-th/0005025 +nucl-th/0005026 +nucl-th/0005027 +nucl-th/0005031 +nucl-th/0005036 +nucl-th/0005038 +nucl-th/0005039 +nucl-th/0005042 +nucl-th/0005043 +nucl-th/0005044 +nucl-th/0005045 +nucl-th/0005046 +nucl-th/0005047 +nucl-th/0005048 +nucl-th/0005052 +nucl-th/0005054 +nucl-th/0005059 +nucl-th/0005060 +nucl-th/0005062 +nucl-th/0005069 +nucl-th/0005073 +nucl-th/0005074 +nucl-th/0006001 +nucl-th/0006004 +nucl-th/0006006 +nucl-th/0006007 +nucl-th/0006013 +nucl-th/0006014 +nucl-th/0006015 +nucl-th/0006016 +nucl-th/0006018 +nucl-th/0006019 +nucl-th/0006023 +nucl-th/0006024 +nucl-th/0006027 +nucl-th/0006030 +nucl-th/0006032 +nucl-th/0006033 +nucl-th/0006034 +nucl-th/0006039 +nucl-th/0006043 +nucl-th/0006044 +nucl-th/0006048 +nucl-th/0006055 +nucl-th/0006056 +nucl-th/0006057 +nucl-th/0006059 +nucl-th/0006060 +nucl-th/0006062 +nucl-th/0006063 +nucl-th/0006066 +nucl-th/0006068 +nucl-th/0006069 +nucl-th/0006070 +nucl-th/0006076 +nucl-th/0006077 +nucl-th/0006078 +nucl-th/0006080 +nucl-th/0006086 +nucl-th/0006087 +nucl-th/0007001 +nucl-th/0007003 +nucl-th/0007004 +nucl-th/0007007 +nucl-th/0007009 +nucl-th/0007010 +nucl-th/0007012 +nucl-th/0007018 +nucl-th/0007019 +nucl-th/0007020 +nucl-th/0007022 +nucl-th/0007024 +nucl-th/0007026 +nucl-th/0007028 +nucl-th/0007029 +nucl-th/0007031 +nucl-th/0007033 +nucl-th/0007035 +nucl-th/0007036 +nucl-th/0007037 +nucl-th/0007038 +nucl-th/0007039 +nucl-th/0007041 +nucl-th/0007042 +nucl-th/0007043 +nucl-th/0007044 +nucl-th/0007048 +nucl-th/0007050 +nucl-th/0007051 +nucl-th/0007052 +nucl-th/0007057 +nucl-th/0007059 +nucl-th/0007061 +nucl-th/0007063 +nucl-th/0007064 +nucl-th/0007065 +nucl-th/0007067 +nucl-th/0007068 +nucl-th/0007072 +nucl-th/0007073 +nucl-th/0007074 +nucl-th/0008001 +nucl-th/0008002 +nucl-th/0008003 +nucl-th/0008004 +nucl-th/0008005 +nucl-th/0008008 +nucl-th/0008009 +nucl-th/0008010 +nucl-th/0008011 +nucl-th/0008012 +nucl-th/0008013 +nucl-th/0008015 +nucl-th/0008018 +nucl-th/0008020 +nucl-th/0008021 +nucl-th/0008022 +nucl-th/0008025 +nucl-th/0008027 +nucl-th/0008029 +nucl-th/0008031 +nucl-th/0008032 +nucl-th/0008034 +nucl-th/0008036 +nucl-th/0008037 +nucl-th/0008038 +nucl-th/0008040 +nucl-th/0008041 +nucl-th/0008042 +nucl-th/0008043 +nucl-th/0008047 +nucl-th/0008048 +nucl-th/0008051 +nucl-th/0008052 +nucl-th/0008053 +nucl-th/0008054 +nucl-th/0008055 +nucl-th/0008057 +nucl-th/0008060 +nucl-th/0008062 +nucl-th/0009001 +nucl-th/0009003 +nucl-th/0009004 +nucl-th/0009005 +nucl-th/0009006 +nucl-th/0009010 +nucl-th/0009014 +nucl-th/0009015 +nucl-th/0009020 +nucl-th/0009021 +nucl-th/0009023 +nucl-th/0009025 +nucl-th/0009028 +nucl-th/0009031 +nucl-th/0009032 +nucl-th/0009036 +nucl-th/0009037 +nucl-th/0009039 +nucl-th/0009042 +nucl-th/0009044 +nucl-th/0009045 +nucl-th/0009047 +nucl-th/0009050 +nucl-th/0009054 +nucl-th/0009055 +nucl-th/0009056 +nucl-th/0009057 +nucl-th/0009058 +nucl-th/0009061 +nucl-th/0009062 +nucl-th/0009066 +nucl-th/0009067 +nucl-th/0009068 +nucl-th/0009070 +nucl-th/0009071 +nucl-th/0009075 +nucl-th/0009077 +nucl-th/0009079 +nucl-th/0009081 +nucl-th/0009084 +nucl-th/0009087 +nucl-th/0009090 +nucl-th/0009091 +nucl-th/0009092 +nucl-th/0010001 +nucl-th/0010002 +nucl-th/0010003 +nucl-th/0010004 +nucl-th/0010005 +nucl-th/0010006 +nucl-th/0010007 +nucl-th/0010008 +nucl-th/0010013 +nucl-th/0010014 +nucl-th/0010017 +nucl-th/0010018 +nucl-th/0010019 +nucl-th/0010021 +nucl-th/0010023 +nucl-th/0010025 +nucl-th/0010029 +nucl-th/0010030 +nucl-th/0010033 +nucl-th/0010037 +nucl-th/0010038 +nucl-th/0010039 +nucl-th/0010041 +nucl-th/0010042 +nucl-th/0010043 +nucl-th/0010044 +nucl-th/0010045 +nucl-th/0010048 +nucl-th/0010052 +nucl-th/0010053 +nucl-th/0010054 +nucl-th/0010055 +nucl-th/0010059 +nucl-th/0010064 +nucl-th/0010065 +nucl-th/0010067 +nucl-th/0010068 +nucl-th/0010070 +nucl-th/0010071 +nucl-th/0010072 +nucl-th/0010074 +nucl-th/0010075 +nucl-th/0010077 +nucl-th/0010078 +nucl-th/0010079 +nucl-th/0010080 +nucl-th/0010081 +nucl-th/0010082 +nucl-th/0010084 +nucl-th/0010087 +nucl-th/0010090 +nucl-th/0010091 +nucl-th/0010093 +nucl-th/0010095 +nucl-th/0010096 +nucl-th/0010099 +nucl-th/0010101 +nucl-th/0010102 +nucl-th/0010106 +nucl-th/0010107 +nucl-th/0010108 +nucl-th/0011001 +nucl-th/0011007 +nucl-th/0011008 +nucl-th/0011009 +nucl-th/0011010 +nucl-th/0011015 +nucl-th/0011017 +nucl-th/0011018 +nucl-th/0011020 +nucl-th/0011024 +nucl-th/0011025 +nucl-th/0011026 +nucl-th/0011030 +nucl-th/0011031 +nucl-th/0011033 +nucl-th/0011039 +nucl-th/0011042 +nucl-th/0011043 +nucl-th/0011045 +nucl-th/0011051 +nucl-th/0011053 +nucl-th/0011054 +nucl-th/0011055 +nucl-th/0011056 +nucl-th/0011057 +nucl-th/0011060 +nucl-th/0011061 +nucl-th/0011062 +nucl-th/0011070 +nucl-th/0011072 +nucl-th/0011073 +nucl-th/0011078 +nucl-th/0011083 +nucl-th/0011085 +nucl-th/0011086 +nucl-th/0011089 +nucl-th/0011090 +nucl-th/0011091 +nucl-th/0011094 +nucl-th/0011095 +nucl-th/0011097 +nucl-th/0011098 +nucl-th/0011100 +nucl-th/0011102 +nucl-th/0012001 +nucl-th/0012005 +nucl-th/0012006 +nucl-th/0012007 +nucl-th/0012012 +nucl-th/0012013 +nucl-th/0012016 +nucl-th/0012022 +nucl-th/0012024 +nucl-th/0012025 +nucl-th/0012026 +nucl-th/0012027 +nucl-th/0012029 +nucl-th/0012030 +nucl-th/0012031 +nucl-th/0012036 +nucl-th/0012041 +nucl-th/0012046 +nucl-th/0012048 +nucl-th/0012050 +nucl-th/0012051 +nucl-th/0012052 +nucl-th/0012054 +nucl-th/0012055 +nucl-th/0012057 +nucl-th/0012059 +nucl-th/0012061 +nucl-th/0012062 +nucl-th/0012066 +nucl-th/0012069 +nucl-th/0012070 +nucl-th/0012072 +nucl-th/0012074 +nucl-th/0012075 +nucl-th/0012078 +nucl-th/0012082 +nucl-th/0012083 +nucl-th/0012085 +nucl-th/0012086 +nucl-th/0012089 +nucl-th/0012090 +nucl-th/0012091 +nucl-th/0012096 +nucl-th/0107055 +nucl-th/9906092 +nucl-th/9907076 +physics/0001006 Biological Physics +physics/0001008 Atomic Physics +physics/0001015 Atomic Physics +physics/0001017 Atomic Physics +physics/0001028 Computational Physics +physics/0001032 Atomic and Molecular Clusters +physics/0001039 General Physics +physics/0001040 Physics and Society +physics/0001044 Optics +physics/0001045 Atomic Physics +physics/0001047 Plasma Physics +physics/0001048 Computational Physics +physics/0001052 Biological Physics +physics/0001054 Biological Physics +physics/0001058 Atomic Physics +physics/0001060 Computational Physics +physics/0001061 Physics Education +physics/0001064 General Physics +physics/0001069 Data Analysis, Statistics and Probability +physics/0001070 Fluid Dynamics +physics/0002001 Biological Physics +physics/0002004 Plasma Physics +physics/0002006 Optics +physics/0002008 Computational Physics +physics/0002011 Atomic Physics +physics/0002012 Biological Physics +physics/0002014 Optics +physics/0002015 Chemical Physics +physics/0002017 Plasma Physics +physics/0002018 Fluid Dynamics +physics/0002024 Optics +physics/0002026 Atomic Physics +physics/0002031 Chemical Physics +physics/0002032 Plasma Physics +physics/0002036 Atomic Physics +physics/0002038 Atomic Physics +physics/0002039 Biological Physics +physics/0002041 Atomic Physics +physics/0002043 Fluid Dynamics +physics/0002044 Atomic Physics +physics/0002051 Atomic and Molecular Clusters +physics/0003002 Data Analysis, Statistics and Probability +physics/0003003 Atomic Physics +physics/0003004 Atomic Physics +physics/0003007 Chemical Physics +physics/0003011 Accelerator Physics +physics/0003015 Optics +physics/0003017 Chemical Physics +physics/0003021 Accelerator Physics +physics/0003025 Atomic Physics +physics/0003026 Plasma Physics +physics/0003027 Atomic Physics +physics/0003031 Chemical Physics +physics/0003033 Chemical Physics +physics/0003038 Biological Physics +physics/0003042 Atomic and Molecular Clusters +physics/0003048 Medical Physics +physics/0003049 Atomic Physics +physics/0003052 Fluid Dynamics +physics/0003055 Atomic Physics +physics/0003057 Optics +physics/0003068 Chemical Physics +physics/0003072 Chemical Physics +physics/0003075 Atomic Physics +physics/0003076 Fluid Dynamics +physics/0003077 Fluid Dynamics +physics/0003078 Computational Physics +physics/0003081 Atomic Physics +physics/0003083 Plasma Physics +physics/0003084 Biological Physics +physics/0003085 Atomic Physics +physics/0003086 Data Analysis, Statistics and Probability +physics/0003088 Atomic Physics +physics/0003089 Plasma Physics +physics/0003091 Atomic Physics +physics/0003092 Optics +physics/0003098 Data Analysis, Statistics and Probability +physics/0003100 Biological Physics +physics/0003101 Biological Physics +physics/0003102 Fluid Dynamics +physics/0003103 Classical Physics +physics/0003105 Biological Physics +physics/0004006 Instrumentation and Detectors +physics/0004008 Classical Physics +physics/0004009 Biological Physics +physics/0004010 Chemical Physics +physics/0004012 Popular Physics +physics/0004013 Computational Physics +physics/0004014 Classical Physics +physics/0004015 Instrumentation and Detectors +physics/0004016 Computational Physics +physics/0004020 Atomic and Molecular Clusters +physics/0004025 Biological Physics +physics/0004038 Chemical Physics +physics/0004046 Atomic Physics +physics/0004048 Plasma Physics +physics/0004056 Fluid Dynamics +physics/0004058 Atomic Physics +physics/0004061 Instrumentation and Detectors +physics/0004066 Atomic and Molecular Clusters +physics/0004069 Atomic Physics +physics/0004074 Computational Physics +physics/0004075 Biological Physics +physics/0004077 Accelerator Physics +physics/0005004 Fluid Dynamics +physics/0005007 Accelerator Physics +physics/0005008 Accelerator Physics +physics/0005015 Optics +physics/0005020 Atomic Physics +physics/0005022 Accelerator Physics +physics/0005023 Accelerator Physics +physics/0005025 Physics Education +physics/0005026 Optics +physics/0005028 Physics Education +physics/0005039 Instrumentation and Detectors +physics/0005040 Atomic Physics +physics/0005045 Atomic and Molecular Clusters +physics/0005053 Atomic and Molecular Clusters +physics/0005055 Classical Physics +physics/0005057 Atomic Physics +physics/0005060 Optics +physics/0005061 Instrumentation and Detectors +physics/0005066 Fluid Dynamics +physics/0005075 Fluid Dynamics +physics/0005081 Atomic Physics +physics/0005082 Atomic Physics +physics/0005083 Optics +physics/0006002 Classical Physics +physics/0006004 Optics +physics/0006007 Accelerator Physics +physics/0006011 Plasma Physics +physics/0006015 Biological Physics +physics/0006016 Atomic Physics +physics/0006018 Chemical Physics +physics/0006019 Atomic Physics +physics/0006022 Optics +physics/0006027 Plasma Physics +physics/0006028 Atomic Physics +physics/0006030 Physics Education +physics/0006059 Biological Physics +physics/0006061 Atmospheric and Oceanic Physics +physics/0006075 Classical Physics +physics/0006076 Plasma Physics +physics/0006079 Biological Physics +physics/0006082 Computational Physics +physics/0007002 Atomic Physics +physics/0007010 Fluid Dynamics +physics/0007011 Instrumentation and Detectors +physics/0007016 Atomic Physics +physics/0007018 Atomic and Molecular Clusters +physics/0007036 Geophysics +physics/0007037 Plasma Physics +physics/0007042 Popular Physics +physics/0007043 Geophysics +physics/0007045 Atomic Physics +physics/0007048 Atomic Physics +physics/0007051 Atomic Physics +physics/0007056 Atomic Physics +physics/0007059 Instrumentation and Detectors +physics/0007060 Instrumentation and Detectors +physics/0007067 Biological Physics +physics/0007071 Plasma Physics +physics/0007079 Optics +physics/0007082 Optics +physics/0007086 General Physics +physics/0007097 Optics +physics/0008002 Instrumentation and Detectors +physics/0008013 Optics +physics/0008017 Atomic Physics +physics/0008018 Accelerator Physics +physics/0008028 Optics +physics/0008039 Plasma Physics +physics/0008051 Atomic Physics +physics/0008053 Physics Education +physics/0008075 Optics +physics/0008076 Optics +physics/0008077 Instrumentation and Detectors +physics/0008083 Chemical Physics +physics/0008092 Plasma Physics +physics/0008220 Optics +physics/0008221 Chemical Physics +physics/0008226 Classical Physics +physics/0008232 Biological Physics +physics/0008233 Instrumentation and Detectors +physics/0008235 Atomic and Molecular Clusters +physics/0008236 Fluid Dynamics +physics/0008241 Chemical Physics +physics/0008243 Accelerator Physics +physics/0008245 Chemical Physics +physics/0008247 Chemical Physics +physics/0008248 Atomic Physics +physics/0009001 Atomic Physics +physics/0009002 Biological Physics +physics/0009004 Atomic Physics +physics/0009006 Optics +physics/0009008 Biological Physics +physics/0009009 Optics +physics/0009011 Atomic and Molecular Clusters +physics/0009018 Atomic Physics +physics/0009019 Data Analysis, Statistics and Probability +physics/0009020 Optics +physics/0009026 Atomic Physics +physics/0009029 Computational Physics +physics/0009040 Space Physics +physics/0009041 Fluid Dynamics +physics/0009043 Classical Physics +physics/0009044 General Physics +physics/0009048 Biological Physics +physics/0009049 Fluid Dynamics +physics/0009050 Fluid Dynamics +physics/0009053 Atomic Physics +physics/0009054 Instrumentation and Detectors +physics/0009055 Classical Physics +physics/0009057 Fluid Dynamics +physics/0009058 Plasma Physics +physics/0009059 Chemical Physics +physics/0009060 Chemical Physics +physics/0009061 Plasma Physics +physics/0009070 Chemical Physics +physics/0009071 Atomic Physics +physics/0009072 Atomic Physics +physics/0009073 Atomic Physics +physics/0009075 Accelerator Physics +physics/0009078 Atomic Physics +physics/0009086 Plasma Physics +physics/0009089 Chemical Physics +physics/0009092 Optics +physics/0009094 Fluid Dynamics +physics/0009096 Atomic Physics +physics/0009097 Fluid Dynamics +physics/0009099 Optics +physics/0010016 Optics +physics/0010017 Optics +physics/0010020 Chemical Physics +physics/0010029 Atomic Physics +physics/0010031 Atomic Physics +physics/0010032 Plasma Physics +physics/0010038 Atomic Physics +physics/0010044 Atomic Physics +physics/0010045 Biological Physics +physics/0010057 Fluid Dynamics +physics/0010058 Plasma Physics +physics/0010060 Classical Physics +physics/0010061 Atomic Physics +physics/0010062 Atomic Physics +physics/0010063 Data Analysis, Statistics and Probability +physics/0010064 Data Analysis, Statistics and Probability +physics/0010065 Atomic Physics +physics/0010066 Computational Physics +physics/0010077 Accelerator Physics +physics/0011006 Biological Physics +physics/0011007 Instrumentation and Detectors +physics/0011008 Atomic Physics +physics/0011011 Accelerator Physics +physics/0011012 Chemical Physics +physics/0011015 Classical Physics +physics/0011017 Fluid Dynamics +physics/0011026 Fluid Dynamics +physics/0011030 Chemical Physics +physics/0011033 Atomic Physics +physics/0011034 Optics +physics/0011037 Atomic Physics +physics/0011043 Chemical Physics +physics/0011044 Atomic Physics +physics/0011046 Computational Physics +physics/0011047 Chemical Physics +physics/0011050 Atomic Physics +physics/0011051 Atomic Physics +physics/0011054 Atomic Physics +physics/0011055 Atomic Physics +physics/0011063 Atomic and Molecular Clusters +physics/0011068 Computational Physics +physics/0011069 Computational Physics +physics/0011075 Accelerator Physics +physics/0012002 Atomic Physics +physics/0012005 Plasma Physics +physics/0012007 Fluid Dynamics +physics/0012010 Atomic Physics +physics/0012011 Classical Physics +physics/0012012 Chemical Physics +physics/0012016 Atomic Physics +physics/0012022 Instrumentation and Detectors +physics/0012027 Plasma Physics +physics/0012028 Optics +physics/0012031 Atomic Physics +physics/0012032 General Physics +physics/0012037 Atomic Physics +physics/0012038 Atomic Physics +physics/0012039 Atomic and Molecular Clusters +physics/0012040 Atomic Physics +physics/0012043 Optics +physics/0012044 Plasma Physics +physics/0012047 Fluid Dynamics +physics/0012050 Instrumentation and Detectors +physics/0012051 Fluid Dynamics +physics/0012052 Instrumentation and Detectors +physics/0012053 Plasma Physics +physics/0012060 Optics +physics/0102004 Physics and Society +quant-ph/0001001 +quant-ph/0001002 +quant-ph/0001003 +quant-ph/0001007 +quant-ph/0001014 +quant-ph/0001018 +quant-ph/0001020 +quant-ph/0001026 +quant-ph/0001027 +quant-ph/0001030 +quant-ph/0001031 +quant-ph/0001032 +quant-ph/0001033 +quant-ph/0001034 +quant-ph/0001035 +quant-ph/0001038 +quant-ph/0001039 +quant-ph/0001042 +quant-ph/0001051 +quant-ph/0001052 +quant-ph/0001053 +quant-ph/0001055 +quant-ph/0001056 +quant-ph/0001059 +quant-ph/0001065 +quant-ph/0001066 +quant-ph/0001067 +quant-ph/0001071 +quant-ph/0001072 +quant-ph/0001073 +quant-ph/0001076 +quant-ph/0001081 +quant-ph/0001082 +quant-ph/0001083 +quant-ph/0001084 +quant-ph/0001085 +quant-ph/0001086 +quant-ph/0001088 +quant-ph/0001089 +quant-ph/0001091 +quant-ph/0001094 +quant-ph/0001095 +quant-ph/0001102 +quant-ph/0001103 +quant-ph/0001110 +quant-ph/0001116 +quant-ph/0001117 +quant-ph/0001118 +quant-ph/0001119 +quant-ph/0002001 +quant-ph/0002002 +quant-ph/0002004 +quant-ph/0002005 +quant-ph/0002007 +quant-ph/0002011 +quant-ph/0002012 +quant-ph/0002014 +quant-ph/0002016 +quant-ph/0002020 +quant-ph/0002021 +quant-ph/0002023 +quant-ph/0002024 +quant-ph/0002025 +quant-ph/0002026 +quant-ph/0002028 +quant-ph/0002029 +quant-ph/0002032 +quant-ph/0002036 +quant-ph/0002037 +quant-ph/0002039 +quant-ph/0002040 +quant-ph/0002041 +quant-ph/0002043 +quant-ph/0002044 +quant-ph/0002047 +quant-ph/0002049 +quant-ph/0002052 +quant-ph/0002054 +quant-ph/0002055 +quant-ph/0002059 +quant-ph/0002061 +quant-ph/0002064 +quant-ph/0002065 +quant-ph/0002067 +quant-ph/0002072 +quant-ph/0002074 +quant-ph/0002075 +quant-ph/0002076 +quant-ph/0002083 +quant-ph/0002088 +quant-ph/0002089 +quant-ph/0002090 +quant-ph/0002091 +quant-ph/0002092 +quant-ph/0002093 +quant-ph/0002094 +quant-ph/0003002 +quant-ph/0003009 +quant-ph/0003011 +quant-ph/0003012 +quant-ph/0003014 +quant-ph/0003015 +quant-ph/0003017 +quant-ph/0003018 +quant-ph/0003019 +quant-ph/0003021 +quant-ph/0003024 +quant-ph/0003025 +quant-ph/0003030 +quant-ph/0003032 +quant-ph/0003033 +quant-ph/0003034 +quant-ph/0003037 +quant-ph/0003039 +quant-ph/0003040 +quant-ph/0003041 +quant-ph/0003043 +quant-ph/0003044 +quant-ph/0003045 +quant-ph/0003049 +quant-ph/0003050 +quant-ph/0003053 +quant-ph/0003054 +quant-ph/0003057 +quant-ph/0003058 +quant-ph/0003062 +quant-ph/0003063 +quant-ph/0003069 +quant-ph/0003070 +quant-ph/0003072 +quant-ph/0003075 +quant-ph/0003076 +quant-ph/0003077 +quant-ph/0003078 +quant-ph/0003079 +quant-ph/0003081 +quant-ph/0003082 +quant-ph/0003085 +quant-ph/0003086 +quant-ph/0003087 +quant-ph/0003088 +quant-ph/0003089 +quant-ph/0003090 +quant-ph/0003093 +quant-ph/0003094 +quant-ph/0003095 +quant-ph/0003103 +quant-ph/0003105 +quant-ph/0003107 +quant-ph/0003109 +quant-ph/0003111 +quant-ph/0003112 +quant-ph/0003116 +quant-ph/0003118 +quant-ph/0003119 +quant-ph/0003121 +quant-ph/0003123 +quant-ph/0003124 +quant-ph/0003131 +quant-ph/0003135 +quant-ph/0003137 +quant-ph/0003138 +quant-ph/0003139 +quant-ph/0003140 +quant-ph/0003141 +quant-ph/0003142 +quant-ph/0003147 +quant-ph/0004001 +quant-ph/0004006 +quant-ph/0004007 +quant-ph/0004008 +quant-ph/0004011 +quant-ph/0004018 +quant-ph/0004020 +quant-ph/0004022 +quant-ph/0004026 +quant-ph/0004029 +quant-ph/0004030 +quant-ph/0004035 +quant-ph/0004040 +quant-ph/0004042 +quant-ph/0004043 +quant-ph/0004046 +quant-ph/0004048 +quant-ph/0004051 +quant-ph/0004052 +quant-ph/0004055 +quant-ph/0004056 +quant-ph/0004058 +quant-ph/0004059 +quant-ph/0004060 +quant-ph/0004063 +quant-ph/0004064 +quant-ph/0004066 +quant-ph/0004068 +quant-ph/0004071 +quant-ph/0004075 +quant-ph/0004078 +quant-ph/0004079 +quant-ph/0004081 +quant-ph/0004083 +quant-ph/0004084 +quant-ph/0004085 +quant-ph/0004087 +quant-ph/0004094 +quant-ph/0004095 +quant-ph/0004096 +quant-ph/0004098 +quant-ph/0004099 +quant-ph/0004101 +quant-ph/0004102 +quant-ph/0004103 +quant-ph/0004105 +quant-ph/0004107 +quant-ph/0005005 +quant-ph/0005012 +quant-ph/0005013 +quant-ph/0005014 +quant-ph/0005015 +quant-ph/0005020 +quant-ph/0005022 +quant-ph/0005023 +quant-ph/0005027 +quant-ph/0005028 +quant-ph/0005030 +quant-ph/0005039 +quant-ph/0005040 +quant-ph/0005041 +quant-ph/0005044 +quant-ph/0005050 +quant-ph/0005052 +quant-ph/0005053 +quant-ph/0005054 +quant-ph/0005056 +quant-ph/0005057 +quant-ph/0005058 +quant-ph/0005060 +quant-ph/0005061 +quant-ph/0005062 +quant-ph/0005064 +quant-ph/0005066 +quant-ph/0005067 +quant-ph/0005068 +quant-ph/0005073 +quant-ph/0005074 +quant-ph/0005075 +quant-ph/0005076 +quant-ph/0005083 +quant-ph/0005084 +quant-ph/0005086 +quant-ph/0005088 +quant-ph/0005090 +quant-ph/0005091 +quant-ph/0005092 +quant-ph/0005093 +quant-ph/0005096 +quant-ph/0005097 +quant-ph/0005099 +quant-ph/0005100 +quant-ph/0005101 +quant-ph/0005102 +quant-ph/0005103 +quant-ph/0005107 +quant-ph/0005111 +quant-ph/0005112 +quant-ph/0005115 +quant-ph/0005116 +quant-ph/0005121 +quant-ph/0005122 +quant-ph/0005123 +quant-ph/0005124 +quant-ph/0005126 +quant-ph/0005127 +quant-ph/0005133 +quant-ph/0006001 +quant-ph/0006002 +quant-ph/0006003 +quant-ph/0006006 +quant-ph/0006007 +quant-ph/0006009 +quant-ph/0006012 +quant-ph/0006013 +quant-ph/0006015 +quant-ph/0006019 +quant-ph/0006020 +quant-ph/0006021 +quant-ph/0006022 +quant-ph/0006023 +quant-ph/0006025 +quant-ph/0006026 +quant-ph/0006027 +quant-ph/0006028 +quant-ph/0006029 +quant-ph/0006032 +quant-ph/0006035 +quant-ph/0006038 +quant-ph/0006041 +quant-ph/0006043 +quant-ph/0006044 +quant-ph/0006045 +quant-ph/0006047 +quant-ph/0006049 +quant-ph/0006050 +quant-ph/0006052 +quant-ph/0006054 +quant-ph/0006055 +quant-ph/0006056 +quant-ph/0006057 +quant-ph/0006058 +quant-ph/0006059 +quant-ph/0006061 +quant-ph/0006067 +quant-ph/0006068 +quant-ph/0006071 +quant-ph/0006072 +quant-ph/0006073 +quant-ph/0006075 +quant-ph/0006077 +quant-ph/0006078 +quant-ph/0006084 +quant-ph/0006086 +quant-ph/0006092 +quant-ph/0006094 +quant-ph/0006095 +quant-ph/0006096 +quant-ph/0006098 +quant-ph/0006100 +quant-ph/0006103 +quant-ph/0006105 +quant-ph/0006106 +quant-ph/0006110 +quant-ph/0006111 +quant-ph/0006112 +quant-ph/0006114 +quant-ph/0006116 +quant-ph/0006117 +quant-ph/0006124 +quant-ph/0006126 +quant-ph/0006127 +quant-ph/0006128 +quant-ph/0006129 +quant-ph/0006130 +quant-ph/0006131 +quant-ph/0006132 +quant-ph/0006133 +quant-ph/0006134 +quant-ph/0007002 +quant-ph/0007003 +quant-ph/0007004 +quant-ph/0007006 +quant-ph/0007008 +quant-ph/0007009 +quant-ph/0007011 +quant-ph/0007014 +quant-ph/0007017 +quant-ph/0007018 +quant-ph/0007020 +quant-ph/0007022 +quant-ph/0007024 +quant-ph/0007029 +quant-ph/0007031 +quant-ph/0007032 +quant-ph/0007033 +quant-ph/0007034 +quant-ph/0007037 +quant-ph/0007039 +quant-ph/0007040 +quant-ph/0007042 +quant-ph/0007043 +quant-ph/0007048 +quant-ph/0007049 +quant-ph/0007056 +quant-ph/0007057 +quant-ph/0007062 +quant-ph/0007064 +quant-ph/0007065 +quant-ph/0007067 +quant-ph/0007070 +quant-ph/0007073 +quant-ph/0007076 +quant-ph/0007080 +quant-ph/0007084 +quant-ph/0007085 +quant-ph/0007086 +quant-ph/0007091 +quant-ph/0007092 +quant-ph/0007094 +quant-ph/0007095 +quant-ph/0007096 +quant-ph/0007098 +quant-ph/0007100 +quant-ph/0007102 +quant-ph/0007105 +quant-ph/0007106 +quant-ph/0007107 +quant-ph/0007110 +quant-ph/0007111 +quant-ph/0007118 +quant-ph/0007120 +quant-ph/0008002 +quant-ph/0008003 +quant-ph/0008004 +quant-ph/0008005 +quant-ph/0008008 +quant-ph/0008009 +quant-ph/0008010 +quant-ph/0008011 +quant-ph/0008016 +quant-ph/0008024 +quant-ph/0008026 +quant-ph/0008027 +quant-ph/0008028 +quant-ph/0008029 +quant-ph/0008032 +quant-ph/0008035 +quant-ph/0008038 +quant-ph/0008039 +quant-ph/0008045 +quant-ph/0008046 +quant-ph/0008048 +quant-ph/0008049 +quant-ph/0008050 +quant-ph/0008053 +quant-ph/0008058 +quant-ph/0008066 +quant-ph/0008068 +quant-ph/0008069 +quant-ph/0008071 +quant-ph/0008072 +quant-ph/0008073 +quant-ph/0008074 +quant-ph/0008075 +quant-ph/0008078 +quant-ph/0008079 +quant-ph/0008080 +quant-ph/0008081 +quant-ph/0008083 +quant-ph/0008084 +quant-ph/0008085 +quant-ph/0008087 +quant-ph/0008090 +quant-ph/0008093 +quant-ph/0008097 +quant-ph/0008099 +quant-ph/0008102 +quant-ph/0008103 +quant-ph/0008104 +quant-ph/0008106 +quant-ph/0008109 +quant-ph/0008110 +quant-ph/0008113 +quant-ph/0008115 +quant-ph/0008122 +quant-ph/0008130 +quant-ph/0009003 +quant-ph/0009005 +quant-ph/0009006 +quant-ph/0009010 +quant-ph/0009016 +quant-ph/0009017 +quant-ph/0009018 +quant-ph/0009020 +quant-ph/0009021 +quant-ph/0009022 +quant-ph/0009026 +quant-ph/0009029 +quant-ph/0009030 +quant-ph/0009031 +quant-ph/0009034 +quant-ph/0009037 +quant-ph/0009041 +quant-ph/0009042 +quant-ph/0009043 +quant-ph/0009044 +quant-ph/0009045 +quant-ph/0009046 +quant-ph/0009047 +quant-ph/0009048 +quant-ph/0009050 +quant-ph/0009053 +quant-ph/0009055 +quant-ph/0009059 +quant-ph/0009060 +quant-ph/0009061 +quant-ph/0009066 +quant-ph/0009068 +quant-ph/0009074 +quant-ph/0009075 +quant-ph/0009076 +quant-ph/0009078 +quant-ph/0009082 +quant-ph/0009084 +quant-ph/0009085 +quant-ph/0009086 +quant-ph/0009088 +quant-ph/0009093 +quant-ph/0009094 +quant-ph/0009096 +quant-ph/0009098 +quant-ph/0009101 +quant-ph/0009103 +quant-ph/0009104 +quant-ph/0009105 +quant-ph/0009106 +quant-ph/0009107 +quant-ph/0009108 +quant-ph/0009109 +quant-ph/0009117 +quant-ph/0009118 +quant-ph/0009120 +quant-ph/0009121 +quant-ph/0010003 +quant-ph/0010004 +quant-ph/0010005 +quant-ph/0010015 +quant-ph/0010016 +quant-ph/0010018 +quant-ph/0010023 +quant-ph/0010024 +quant-ph/0010025 +quant-ph/0010031 +quant-ph/0010035 +quant-ph/0010037 +quant-ph/0010038 +quant-ph/0010039 +quant-ph/0010046 +quant-ph/0010051 +quant-ph/0010052 +quant-ph/0010054 +quant-ph/0010055 +quant-ph/0010061 +quant-ph/0010062 +quant-ph/0010063 +quant-ph/0010064 +quant-ph/0010066 +quant-ph/0010067 +quant-ph/0010070 +quant-ph/0010071 +quant-ph/0010073 +quant-ph/0010078 +quant-ph/0010079 +quant-ph/0010080 +quant-ph/0010081 +quant-ph/0010085 +quant-ph/0010087 +quant-ph/0010088 +quant-ph/0010092 +quant-ph/0010093 +quant-ph/0010095 +quant-ph/0010096 +quant-ph/0010102 +quant-ph/0010103 +quant-ph/0010105 +quant-ph/0010106 +quant-ph/0010109 +quant-ph/0010113 +quant-ph/0010114 +quant-ph/0011003 +quant-ph/0011009 +quant-ph/0011011 +quant-ph/0011012 +quant-ph/0011014 +quant-ph/0011018 +quant-ph/0011020 +quant-ph/0011025 +quant-ph/0011028 +quant-ph/0011031 +quant-ph/0011032 +quant-ph/0011033 +quant-ph/0011034 +quant-ph/0011035 +quant-ph/0011037 +quant-ph/0011038 +quant-ph/0011041 +quant-ph/0011042 +quant-ph/0011046 +quant-ph/0011047 +quant-ph/0011050 +quant-ph/0011051 +quant-ph/0011053 +quant-ph/0011055 +quant-ph/0011057 +quant-ph/0011058 +quant-ph/0011063 +quant-ph/0011074 +quant-ph/0011077 +quant-ph/0011081 +quant-ph/0011083 +quant-ph/0011087 +quant-ph/0011088 +quant-ph/0011089 +quant-ph/0011090 +quant-ph/0011092 +quant-ph/0011096 +quant-ph/0011097 +quant-ph/0011100 +quant-ph/0011103 +quant-ph/0011106 +quant-ph/0011107 +quant-ph/0011108 +quant-ph/0011110 +quant-ph/0011111 +quant-ph/0011113 +quant-ph/0011115 +quant-ph/0011117 +quant-ph/0011120 +quant-ph/0011121 +quant-ph/0012001 +quant-ph/0012003 +quant-ph/0012005 +quant-ph/0012006 +quant-ph/0012009 +quant-ph/0012014 +quant-ph/0012015 +quant-ph/0012016 +quant-ph/0012018 +quant-ph/0012020 +quant-ph/0012024 +quant-ph/0012025 +quant-ph/0012027 +quant-ph/0012028 +quant-ph/0012030 +quant-ph/0012031 +quant-ph/0012035 +quant-ph/0012038 +quant-ph/0012039 +quant-ph/0012040 +quant-ph/0012045 +quant-ph/0012046 +quant-ph/0012047 +quant-ph/0012048 +quant-ph/0012049 +quant-ph/0012050 +quant-ph/0012052 +quant-ph/0012055 +quant-ph/0012056 +quant-ph/0012057 +quant-ph/0012058 +quant-ph/0012059 +quant-ph/0012061 +quant-ph/0012065 +quant-ph/0012068 +quant-ph/0012070 +quant-ph/0012071 +quant-ph/0012072 +quant-ph/0012073 +quant-ph/0012075 +quant-ph/0012085 +quant-ph/0012086 +quant-ph/0012087 +quant-ph/0012091 +quant-ph/0012092 +quant-ph/0012093 +quant-ph/0012094 +quant-ph/0012095 +quant-ph/0012096 +quant-ph/0012098 +quant-ph/0012099 +quant-ph/0012100 +quant-ph/0012101 +quant-ph/0012102 +quant-ph/0012105 +quant-ph/0012106 +quant-ph/0012109 +quant-ph/0012114 +quant-ph/0012116 +quant-ph/0012125 +quant-ph/0012128 +quant-ph/0012129 +quant-ph/0012130 +quant-ph/0012131 +quant-ph/0012138 +quant-ph/0012144 +quant-ph/0012145 +quant-ph/0012146 +quant-ph/0012148 +quant-ph/0012149 +quant-ph/0012150 +quant-ph/0507247 +0705.0562 Symplectic Geometry +0708.2431 +0708.3270 Analysis of PDEs +0709.1503 Instrumentation and Detectors +0709.1843 Statistical Mechanics +0710.2705 Information Theory +0710.4791 Number Theory +0712.3849 +0801.4833 +0802.4285 Logic +0804.3968 Group Theory +0805.2520 Differential Geometry +0806.0145 Statistics Theory +0806.2907 Mesoscale and Nanoscale Physics +0806.4257 Statistical Mechanics +0807.0663 Phenomenology +0807.2873 Superconductivity +0807.3104 General Topology +0807.4030 +0807.4768 Statistical Mechanics +0808.3732 Probability +0808.3886 Geophysics +0809.0764 Other Condensed Matter +0809.0908 Information Theory +0809.1359 Phenomenology +0809.2428 +0809.4419 Other Condensed Matter +0810.2431 Soft Condensed Matter +0810.3352 Differential Geometry +0811.0210 Information Theory +0811.1507 Superconductivity +0811.2287 Other Condensed Matter +0811.2856 +0811.4694 +0812.0248 Theory +0812.0343 Superconductivity +0812.1800 +0901.3926 +0902.2140 Formal Languages and Automata Theory +0902.2152 Formal Languages and Automata Theory +0902.2923 Solar and Stellar Astrophysics +0902.3586 +0902.3765 Theory +0902.4535 Databases +0902.4610 Cosmology and Nongalactic Astrophysics +0902.4695 Cosmology and Nongalactic Astrophysics +0902.4714 Operator Algebras +0902.4717 Cosmology and Nongalactic Astrophysics +0902.4723 Logic in Computer Science +0902.4730 Distributed, Parallel, and Cluster Computing +0902.4736 +0902.4740 High Energy Astrophysical Phenomena +0902.4741 Analysis of PDEs +0902.4744 Classical Analysis and ODEs +0902.4747 Instrumentation and Methods for Astrophysics +0902.4755 Group Theory +0902.4756 Cosmology and Nongalactic Astrophysics +0902.4758 Number Theory +0902.4762 Probability +0902.4763 Algebraic Geometry +0902.4768 General Physics +0902.4773 Probability +0902.4779 Networking and Internet Architecture +0902.4780 Probability +0902.4781 Networking and Internet Architecture +0902.4784 Probability +0902.4786 Algebraic Geometry +0902.4787 +0902.4796 Probability +0902.4798 Experiment +0902.4800 Complex Variables +0902.4806 Probability +0902.4822 Distributed, Parallel, and Cluster Computing +0902.4823 Algebraic Topology +0902.4827 Statistics Theory +0902.4835 Superconductivity +0902.4838 Statistics Theory +0902.4840 Group Theory +0902.4841 High Energy Astrophysical Phenomena +0902.4842 Statistics Theory +0902.4846 Analysis of PDEs +0902.4849 Differential Geometry +0902.4850 General Physics +0902.4855 Probability +0902.4857 Cosmology and Nongalactic Astrophysics +0902.4867 Algebraic Topology +0902.4868 Spectral Theory +0902.4875 Algebraic Geometry +0902.4876 Algebraic Topology +0902.4878 Materials Science +0902.4879 Computation +0902.4882 Instrumentation and Methods for Astrophysics +0902.4884 General Physics +0902.4890 Cosmology and Nongalactic Astrophysics +0902.4891 Operator Algebras +0902.4895 Number Theory +astro-ph/0006200 +astro-ph/0406139 +astro-ph/9712135 +cond-mat/0008447 Strongly Correlated Electrons +cond-mat/0105062 Strongly Correlated Electrons +cond-mat/0410386 Statistical Mechanics +cond-mat/0501211 Superconductivity +cond-mat/0603645 Statistical Mechanics +cond-mat/0612613 Other Condensed Matter +cond-mat/9501085 +cond-mat/9910052 +hep-ph/0211127 Phenomenology +hep-ph/0306033 Phenomenology +hep-ph/0401010 Phenomenology +hep-ph/0506257 Phenomenology +hep-ph/9807216 Phenomenology +hep-ph/9807305 Phenomenology +hep-ph/9807525 Phenomenology +math/0306324 Complex Variables +math/0309137 Algebraic Topology +math/0310280 Geometric Topology +math/0402212 Differential Geometry +math/0407328 Geometric Topology +math/0502367 Geometric Topology +math/0503452 Number Theory +math/0503684 Symplectic Geometry +math/0504322 Algebraic Topology +math/0508187 Symplectic Geometry +math/0508189 Differential Geometry +math/0508405 Algebraic Topology +math/0602635 Group Theory +math/0603152 Geometric Topology +math/0605692 Geometric Topology +math/0606402 Geometric Topology +math/0609361 Number Theory +math/0702207 Metric Geometry +0705.3118 +0708.0514 Geometric Topology +0710.3553 Algebraic Topology +0711.0628 Theory +0711.2739 Number Theory +0712.3343 +0801.2057 Differential Geometry +0801.2271 +0801.2298 +0801.2318 +0801.2676 +0801.3078 +0801.3081 +0801.3941 +0802.2207 +0802.4433 +0803.2005 +0803.4471 +0804.0595 Theory +0804.0613 Theory +0804.0697 Theory +0804.0804 Theory +0804.0908 Theory +0804.0913 Theory +0804.1073 Theory +0804.1131 Theory +0804.1176 Theory +0804.1207 Theory +0804.1219 Theory +0804.1248 Theory +0804.1256 Theory +0804.1769 Theory +0804.1772 Theory +0804.1773 Theory +0804.1784 Theory +0804.1805 Theory +0804.1984 General Physics +0804.1988 Theory +0804.2017 Theory +0804.2027 Theory +0804.2028 Theory +0804.2096 Theory +0804.2110 Theory +0804.2121 Theory +0804.2148 +0804.2186 Theory +0804.2263 Theory +0805.0076 Theory +0805.0191 Theory +0805.1703 Theory +0805.1711 Theory +0805.1778 Theory +0805.1826 Theory +0805.1861 Theory +0805.3142 Theory +0806.2302 +0807.1366 Theory +0808.0864 Theory +0808.2158 Differential Geometry +0808.2451 Theory +0808.2939 Theory +0808.2959 Theory +0808.3822 Phenomenology +0808.3910 Phenomenology +0808.4017 Phenomenology +0808.4075 Phenomenology +0809.0223 Phenomenology +0809.0247 Phenomenology +0809.0411 +0809.0555 Theory +0809.0617 +0809.0977 Phenomenology +0810.0663 Lattice +0810.5634 Lattice +0811.1286 +0811.1993 Theory +0811.3068 +0812.0167 +0812.0284 Lattice +0812.0786 +0812.0892 Phenomenology +0812.1013 +0812.1081 +0812.1117 +0812.1534 Lattice +0812.2194 Soft Condensed Matter +0812.2336 Theory +0812.2783 Phenomenology +0812.2811 +0812.2917 +0812.3012 +0812.3171 +0812.3296 +0812.3299 Phenomenology +0812.4022 +0812.4721 +0901.0679 Theory +0901.0931 Theory +0901.1561 +0901.3413 Theory +0901.4087 Phenomenology +0901.4579 Theory +0902.0051 Representation Theory +0902.0355 Experiment +0902.0851 Phenomenology +0902.1495 Statistics Theory +0902.1979 Cosmology and Nongalactic Astrophysics +0902.2570 Theory +0902.2640 Theory +0902.2700 Theory +0902.3481 +0902.3805 Theory +0902.4256 +0902.4545 Lattice +0903.1218 Phenomenology +0903.1617 +0903.3264 +0903.3765 Theory +0903.3984 Lattice +0903.3985 Phenomenology +0903.4606 Phenomenology +0903.4936 Lattice +0904.0677 Superconductivity +0904.0794 Optics +0904.1089 Phenomenology +0904.1685 +0904.3331 Phenomenology +0904.4910 +0905.0020 +0905.1213 Mesoscale and Nanoscale Physics +0905.1220 Phenomenology +0905.2252 High Energy Astrophysical Phenomena +0905.2482 +0905.2738 Cosmology and Nongalactic Astrophysics +0905.3431 Phenomenology +0905.3607 Mesoscale and Nanoscale Physics +0905.4122 +0906.1463 +0906.1772 +0906.2456 Phenomenology +0906.2651 Phenomenology +0906.3196 +0907.0803 Theory +0907.1082 Astrophysics of Galaxies +0907.1419 Astrophysics of Galaxies +0907.1971 Algebraic Geometry +0907.2156 Theory +0907.2346 Phenomenology +0907.4307 High Energy Astrophysical Phenomena +0907.4983 Phenomenology +0907.4985 Phenomenology +0907.5043 Popular Physics +0907.5318 Phenomenology +0907.5389 Other Condensed Matter +0908.0907 Phenomenology +0908.0988 Theory +0908.1135 Phenomenology +0908.1156 Phenomenology +0908.1171 High Energy Astrophysical Phenomena +0908.2589 Phenomenology +0908.3142 Superconductivity +0908.3356 Quantum Gases +0908.3487 Theory +0908.3530 Phenomenology +0909.0160 Theory +0909.0584 Disordered Systems and Neural Networks +0909.0825 Phenomenology +0909.1572 +0909.1617 Theory +0909.1795 Strongly Correlated Electrons +0909.2052 Theory +0909.2075 Theory +0909.2085 Phenomenology +0909.2095 Strongly Correlated Electrons +0909.2124 Phenomenology +0909.2210 Phenomenology +0909.2348 Phenomenology +0909.2418 +0909.2505 Theory +0909.2518 Theory +0909.2822 Classical Analysis and ODEs +0909.2865 Theory +0909.3058 Phenomenology +0909.3510 Superconductivity +0909.3638 Phenomenology +0909.3781 Theory +0909.5036 Probability +0910.0019 Mesoscale and Nanoscale Physics +0910.1054 Mesoscale and Nanoscale Physics +0910.2064 Atomic Physics +0910.2093 High Energy Astrophysical Phenomena +0910.2249 High Energy Astrophysical Phenomena +0910.3565 High Energy Astrophysical Phenomena +0910.3672 Solar and Stellar Astrophysics +0910.4192 High Energy Astrophysical Phenomena +0910.4381 High Energy Astrophysical Phenomena +0910.4540 High Energy Astrophysical Phenomena +0911.2352 Materials Science +0911.3065 Numerical Analysis +0911.3071 Numerical Analysis +0911.3978 Analysis of PDEs +0911.4874 Computer Vision and Pattern Recognition +0911.5038 Plasma Physics +0911.5367 Machine Learning +0911.5368 +0911.5465 +0912.0066 +0912.0228 Logic in Computer Science +0912.0508 Biological Physics +0912.0531 Materials Science +0912.0549 Software Engineering +0912.0555 Logic in Computer Science +0912.0557 +0912.0561 Solar and Stellar Astrophysics +0912.0568 Computational Complexity +0912.0571 Theory +0912.0572 Learning +0912.0575 Optics +0912.0578 Cryptography and Security +0912.0579 Databases +0912.0580 Cryptography and Security +0912.0582 Group Theory +0912.0583 +0912.0597 Cryptography and Security +0912.0599 Networking and Internet Architecture +0912.0600 Computer Vision and Pattern Recognition +0912.0602 Networking and Internet Architecture +0912.0603 Databases +0912.0606 Operating Systems +0912.0607 Cryptography and Security +0912.0609 Optimization and Control +0912.0610 Physics and Society +0912.0613 Phenomenology +0912.0625 Networking and Internet Architecture +0912.0628 +0912.0634 Physics and Society +0912.0641 Statistical Mechanics +0912.0642 Mesoscale and Nanoscale Physics +0912.0655 Classical Physics +0912.0656 Dynamical Systems +0912.0668 Group Theory +0912.0670 Optimization and Control +0912.0671 Strongly Correlated Electrons +0912.0675 Operator Algebras +0912.0679 Quantum Algebra +0912.0683 Combinatorics +0912.0696 Complex Variables +0912.0702 Optimization and Control +0912.0706 Solar and Stellar Astrophysics +0912.0717 Neural and Evolutionary Computing +0912.0719 Probability +0912.0720 Combinatorics +0912.0721 Number Theory +0912.0726 Probability +0912.0727 Algebraic Geometry +0912.0729 Strongly Correlated Electrons +astro-ph/0702039 +astro-ph/0702337 +cond-mat/0512119 Statistical Mechanics +gr-qc/0505022 +hep-ph/0112260 Phenomenology +hep-ph/0205160 Phenomenology +hep-ph/0412016 Phenomenology +hep-ph/9806255 Phenomenology +hep-th/0512065 Theory +hep-th/0612055 Theory +hep-th/9403041 Theory +hep-th/9409106 Theory +math/0211034 Number Theory +math/0303180 Differential Geometry +math/0312265 Symplectic Geometry +math/0403268 Differential Geometry +math/0608063 Symplectic Geometry +math/0701254 Differential Geometry +nucl-th/9911048 +0709.3218 Algebraic Geometry +0805.0288 Representation Theory +0806.0666 Combinatorics +0807.2079 Number Theory +0807.4181 Differential Geometry +0809.0353 +0810.4398 Mesoscale and Nanoscale Physics +0811.1542 Analysis of PDEs +0902.0817 Instrumentation and Methods for Astrophysics +0902.1072 Combinatorics +0903.4874 Materials Science +0903.4964 +0906.0891 Mesoscale and Nanoscale Physics +0906.0892 Mesoscale and Nanoscale Physics +0906.1521 Materials Science +0906.1524 Materials Science +0906.2264 Quantum Gases +0907.2292 Mesoscale and Nanoscale Physics +0907.4003 Cosmology and Nongalactic Astrophysics +0908.1101 Quantum Gases +0908.1987 Mesoscale and Nanoscale Physics +0908.2906 Materials Science +0908.3375 Mesoscale and Nanoscale Physics +0909.1597 Statistical Mechanics +0909.1761 Numerical Analysis +0909.3128 Group Theory +0909.5204 Astrophysics of Galaxies +0910.2631 Probability +0910.2861 Complex Variables +0910.3798 +0910.4234 Theory +0911.0121 Networking and Internet Architecture +0911.0480 Networking and Internet Architecture +0911.0482 Cryptography and Security +0911.4537 Number Theory +0911.4626 Discrete Mathematics +0911.4728 Operator Algebras +0911.4733 Materials Science +0911.4737 +0911.4744 Methodology +0911.4745 Analysis of PDEs +0911.4746 Analysis of PDEs +0911.4754 +0911.4758 Superconductivity +0911.4762 Mesoscale and Nanoscale Physics +0911.4764 Phenomenology +0911.4765 +0911.4769 Numerical Analysis +0911.4772 Numerical Analysis +0911.4773 Commutative Algebra +0911.4781 K-Theory and Homology +0911.4785 Materials Science +0911.4793 Algebraic Topology +0911.4794 Solar and Stellar Astrophysics +0911.4807 Instrumentation and Detectors +0911.4811 Instrumentation and Detectors +0911.4812 +0911.4813 Biological Physics +0911.4818 Strongly Correlated Electrons +0911.4828 Differential Geometry +0911.4830 Differential Geometry +0911.4836 +0911.4837 Statistical Mechanics +0911.4838 +0911.4840 Differential Geometry +0911.4847 Phenomenology +0911.4848 General Physics +0911.4849 Number Theory +0911.4850 Phenomenology +0911.4854 Computational Engineering, Finance, and Science +0911.4860 Classical Analysis and ODEs +0911.4865 Classical Physics +0911.4866 Biological Physics +0911.4873 High Energy Astrophysical Phenomena +0911.4876 Experiment +0911.4880 Information Theory +0911.4885 Medical Physics +0911.4890 High Energy Astrophysical Phenomena +0911.4896 Information Theory +0911.4897 Complex Variables +0911.4899 Statistics Theory +0911.4900 Functional Analysis +0911.4907 History and Overview +0911.4910 Information Retrieval +0911.4929 +0911.4935 Analysis of PDEs +0911.4941 Algebraic Geometry +0911.4943 Quantum Algebra +0911.4948 Geophysics +0911.4949 Materials Science +cs/0411014 Information Theory +0708.1597 +0709.0325 Rings and Algebras +0803.2338 Logic +0804.2390 +0807.1304 Superconductivity +0808.3254 Superconductivity +0810.2194 Phenomenology +0812.2469 Superconductivity +0812.3876 Lattice +0902.0097 +0902.2605 Classical Physics +math/0112095 Geometric Topology +math/0504205 General Mathematics +math/0605592 Algebraic Geometry +0704.0388 Phenomenology +0704.1802 +0704.1821 Phenomenology +0704.3403 Phenomenology +0704.3518 Phenomenology +0705.0487 Phenomenology +0705.0633 Fluid Dynamics +0705.1953 Phenomenology +0705.2258 Phenomenology +0705.2275 Phenomenology +0705.2425 Phenomenology +0705.3736 Phenomenology +0705.4117 Phenomenology +0706.0526 Phenomenology +0706.0637 Experiment +0706.0652 Phenomenology +0706.1100 Phenomenology +0706.1964 Phenomenology +0706.2132 Phenomenology +0706.3822 Phenomenology +0706.3845 Phenomenology +0707.0187 Phenomenology +0707.1349 Theory +0707.2277 Phenomenology +0707.3182 Phenomenology +0707.3718 Phenomenology +0707.4058 Phenomenology +0707.4194 Phenomenology +0708.0008 Phenomenology +0708.0766 Dynamical Systems +0708.1197 Algebraic Topology +0708.1282 Phenomenology +0708.1405 Phenomenology +0708.1451 Phenomenology +0708.3155 Phenomenology +0709.0230 Phenomenology +0709.0470 +0709.0980 Phenomenology +0709.1980 Phenomenology +0709.2299 +0709.3898 Phenomenology +0709.4444 Phenomenology +0709.4477 Phenomenology +0709.4650 Phenomenology +0710.0587 Phenomenology +0710.0623 Phenomenology +0710.0696 Theory +0710.0704 Theory +0710.1268 Phenomenology +0710.2104 Phenomenology +0710.2484 Phenomenology +0710.3585 Phenomenology +0710.3791 Phenomenology +0710.4293 Phenomenology +0710.4528 Phenomenology +0710.4591 Phenomenology +0710.4943 Phenomenology +0710.5061 Phenomenology +0710.5892 Experiment +0710.5909 +0711.1451 Lattice +0711.2253 Phenomenology +0711.2908 Phenomenology +0711.2950 Phenomenology +0711.3160 Lattice +0711.3248 Theory +0711.3446 Theory +0711.3962 Phenomenology +0711.4421 Theory +0711.4477 +0712.0768 Phenomenology +0712.1112 Experiment +0712.1453 Phenomenology +0712.1601 +0712.2488 Phenomenology +0712.3173 Phenomenology +0712.3176 Theory +0712.3350 Trading and Market Microstructure +0712.3405 Phenomenology +0712.3559 Phenomenology +0712.3630 Phenomenology +0712.3645 Materials Science +0712.3759 Phenomenology +0712.3783 Phenomenology +0801.0428 Phenomenology +0801.0613 Chaotic Dynamics +0801.1270 Atomic Physics +0801.1794 Phenomenology +0801.1796 Phenomenology +0801.1939 Phenomenology +0801.2642 Experiment +0801.3301 Phenomenology +0801.4420 Theory +0802.0026 Phenomenology +0802.1909 Phenomenology +0802.2956 Theory +0802.3264 +0802.3384 Phenomenology +0802.3788 +0802.3847 Phenomenology +0803.0342 Phenomenology +0803.1275 Phenomenology +0803.1287 Phenomenology +0803.1567 Phenomenology +0803.1787 Phenomenology +0803.2039 Phenomenology +0803.2050 Phenomenology +0803.2417 Phenomenology +0803.3199 Physics and Society +0803.3729 Phenomenology +0803.4229 Phenomenology +0803.4477 Phenomenology +0804.1229 Trading and Market Microstructure +0804.1719 Phenomenology +0804.1954 Phenomenology +0804.2280 Superconductivity +0804.3178 Phenomenology +0804.3488 Spectral Theory +0804.3570 Theory +0804.3875 Phenomenology +0804.3971 Lattice +0804.4543 Phenomenology +0805.0212 Materials Science +0805.0491 Materials Science +0805.0643 Phenomenology +0805.1175 Phenomenology +0805.1344 Phenomenology +0805.1518 Fluid Dynamics +0805.1950 Theory +0805.2359 Phenomenology +0805.2943 Phenomenology +0805.2980 +0805.3020 Phenomenology +0805.3358 Phenomenology +0805.3549 Theory +0805.4037 Theory +0805.4634 Algebraic Geometry +0806.0164 Atomic Physics +0806.0497 Phenomenology +0806.0952 Phenomenology +0806.1012 Dynamical Systems +0806.1384 Mesoscale and Nanoscale Physics +0806.2015 Theory +0806.2832 Phenomenology +0806.2836 Phenomenology +0806.2911 +0806.3156 Phenomenology +0806.4003 Phenomenology +0806.4297 Phenomenology +0806.4415 Information Theory +0806.4534 Phenomenology +0806.4782 Superconductivity +0807.2608 Superconductivity +0807.3722 Materials Science +0807.3736 Phenomenology +0807.4295 Phenomenology +0807.4507 Phenomenology +0807.4721 Phenomenology +0807.4937 Phenomenology +0808.0092 +0808.0255 Phenomenology +0808.0256 +0808.0957 Theory +0808.2701 +0808.3365 Theory +0808.3654 +0808.3829 Strongly Correlated Electrons +0809.0226 Phenomenology +0809.0398 Strongly Correlated Electrons +0809.0531 Experiment +0809.0809 Statistical Mechanics +0809.0860 Mesoscale and Nanoscale Physics +0809.0993 Other Condensed Matter +0809.1069 Phenomenology +0809.1290 +0809.2104 Phenomenology +0809.2699 Strongly Correlated Electrons +0809.2848 Mesoscale and Nanoscale Physics +0809.3484 Exactly Solvable and Integrable Systems +0809.3854 Theory +0809.3883 Phenomenology +0809.4119 Theory +0809.4238 Theory +0810.1421 Phenomenology +0810.2120 Superconductivity +0810.2626 +0810.3003 Phenomenology +0810.4867 Group Theory +0811.0520 +0811.0641 Geometric Topology +0811.1658 Differential Geometry +0811.2613 Strongly Correlated Electrons +0812.2696 +0812.3929 Materials Science +0812.4225 +0812.4284 Metric Geometry +0812.4798 Discrete Mathematics +0901.0042 +0901.0143 Differential Geometry +0901.0290 Data Structures and Algorithms +0901.0291 Networking and Internet Architecture +0901.0292 Representation Theory +0901.0294 Superconductivity +0901.0296 Computers and Society +0901.0308 Superconductivity +0901.0309 General Physics +0901.0315 Statistical Mechanics +0901.0317 Neural and Evolutionary Computing +0901.0318 Artificial Intelligence +0901.0335 Methodology +0901.0342 Algebraic Geometry +0901.0353 Number Theory +0901.0356 Machine Learning +0901.0358 Information Retrieval +0901.0361 Differential Geometry +0901.0364 +0901.0367 Combinatorics +0901.0372 +0901.0375 +0901.0376 +0901.0377 Rings and Algebras +0901.0378 Atomic Physics +0901.0382 Dynamical Systems +0901.0383 Probability +0901.0406 Mesoscale and Nanoscale Physics +0901.0408 Phenomenology +0901.0418 Instrumentation and Detectors +0901.0421 Analysis of PDEs +0901.0422 Differential Geometry +0901.0434 Statistical Finance +0901.0435 Classical Analysis and ODEs +0901.0440 Materials Science +0901.0446 History and Overview +0901.0447 Portfolio Management +0901.0454 Optics +0901.0455 Statistics Theory +0901.0463 Statistics Theory +0901.0466 Theory +0901.0467 Geophysics +0901.0469 Probability +0901.0474 Fluid Dynamics +0901.0476 Materials Science +0901.0479 +0901.0490 Symplectic Geometry +0901.0501 Data Structures and Algorithms +0901.0510 General Physics +0901.0516 +0901.0521 Information Theory +0901.0522 Phenomenology +0901.0528 Geometric Topology +0901.0529 Other Computer Science +0901.0530 Molecular Networks +0901.0537 Atmospheric and Oceanic Physics +0901.0539 +0901.0540 Analysis of PDEs +0901.0541 Information Theory +0901.0543 +astro-ph/0101256 +astro-ph/0511809 +astro-ph/0609160 +astro-ph/0611304 +astro-ph/9902323 +cond-mat/0606021 Mesoscale and Nanoscale Physics +gr-qc/0608132 +gr-qc/0701175 +hep-ph/0110239 Phenomenology +hep-ph/0203111 Phenomenology +hep-ph/0611283 Phenomenology +hep-ph/0612311 Phenomenology +hep-ph/0701150 Phenomenology +hep-ph/0702001 Phenomenology +hep-ph/0702039 Phenomenology +hep-ph/0703056 Phenomenology +hep-ph/0703200 Phenomenology +hep-th/0209181 Theory +math-ph/0511007 +math/0602346 Statistics Theory +math/0603004 Representation Theory +math/0607603 Operator Algebras +math/0608570 Statistics Theory +math/0611339 Statistics Theory +nucl-ex/0612022 +nucl-th/0205014 +physics/0510105 General Physics +quant-ph/0407007 +quant-ph/0407119 +quant-ph/0702078 +0707.4042 Probability +0711.2137 Number Theory +0711.3533 Number Theory +0712.0585 Quantum Algebra +0801.2014 Algebraic Geometry +0802.4312 Computational Complexity +0805.0105 +0807.1324 +0807.3400 Analysis of PDEs +0808.1710 Statistical Finance +0808.2320 +0808.2912 Superconductivity +0809.1850 Materials Science +0809.3874 Strongly Correlated Electrons +0809.4559 Commutative Algebra +0810.0541 +0811.2436 Other Condensed Matter +0811.2799 +0812.1073 Mesoscale and Nanoscale Physics +0812.2736 Other Condensed Matter +0812.3317 Exactly Solvable and Integrable Systems +0812.3387 Mesoscale and Nanoscale Physics +0901.2286 Lattice +0902.0072 Cosmology and Nongalactic Astrophysics +0902.1570 Physics and Society +0902.4151 Mesoscale and Nanoscale Physics +0902.4308 +0903.0408 Number Theory +0903.0655 Mesoscale and Nanoscale Physics +0903.1895 Superconductivity +0903.2951 Theory +0903.4920 Cosmology and Nongalactic Astrophysics +0903.4989 Functional Analysis +0904.0116 Mesoscale and Nanoscale Physics +0904.1314 Superconductivity +0904.1739 Strongly Correlated Electrons +0904.2108 Optimization and Control +0904.3994 Data Analysis, Statistics and Probability +0905.1665 +0905.2109 Astrophysics of Galaxies +0905.2170 +0905.2442 +0905.2456 High Energy Astrophysical Phenomena +0905.2545 Logic +0905.2548 Experiment +0905.2617 Analysis of PDEs +0905.2627 +0905.2628 Cosmology and Nongalactic Astrophysics +0905.2632 +0905.2636 Digital Libraries +0905.2639 Information Theory +0905.2640 Information Theory +0905.2641 Theory +0905.2645 Information Theory +0905.2648 +0905.2649 Neural and Evolutionary Computing +0905.2650 Combinatorics +0905.2652 Instrumentation and Methods for Astrophysics +0905.2665 Logic +0905.2676 Information Theory +0905.2677 Functional Analysis +0905.2679 Superconductivity +0905.2681 Number Theory +0905.2685 Mesoscale and Nanoscale Physics +0905.2690 Analysis of PDEs +0905.2698 Probability +0905.2701 Atomic Physics +0905.2703 Chemical Physics +0905.2706 Strongly Correlated Electrons +0905.2709 Molecular Networks +0905.2723 +0905.2727 Experiment +0905.2729 Phenomenology +0905.2733 Materials Science +0905.2735 Phenomenology +0905.2745 Commutative Algebra +0905.2750 Differential Geometry +0905.2753 Classical Analysis and ODEs +0905.2755 Fluid Dynamics +0905.2761 Probability +0905.2780 Mesoscale and Nanoscale Physics +0905.2793 Statistical Mechanics +0905.2795 Statistical Mechanics +0905.2796 Information Theory +0905.2799 Materials Science +0905.2802 Functional Analysis +0905.2814 History and Overview +0905.2819 Applications +0905.2821 Data Analysis, Statistics and Probability +0905.2823 Combinatorics +0905.2836 Neurons and Cognition +0905.2840 +0905.2842 Phenomenology +0905.2845 +0905.2851 Phenomenology +0905.2857 Operator Algebras +0905.2860 Numerical Analysis +0905.2861 Numerical Analysis +0905.2862 Numerical Analysis +0905.2863 Combinatorics +0905.2864 Methodology +0905.2872 Analysis of PDEs +0905.2875 Biomolecules +0905.2880 Logic +0905.2882 Neural and Evolutionary Computing +0905.2884 Classical Analysis and ODEs +0905.2887 Number Theory +0905.2888 Earth and Planetary Astrophysics +0905.2892 Logic +0905.2893 Analysis of PDEs +0905.2898 Astrophysics of Galaxies +0905.2903 Astrophysics of Galaxies +0905.2904 High Energy Astrophysical Phenomena +0905.2906 Group Theory +0905.2912 History and Overview +0905.2913 Phenomenology +0905.2922 Experiment +0905.2924 Computer Vision and Pattern Recognition +0905.2927 Algebraic Geometry +0905.2938 Cosmology and Nongalactic Astrophysics +0905.2947 Algebraic Geometry +0905.2950 +0905.2951 Materials Science +0905.2954 Analysis of PDEs +0905.2959 Experiment +gr-qc/0309092 +math/0304098 Quantum Algebra +math/0404504 Quantum Algebra +math/0411221 Probability +math/0606439 Probability +math/0610726 Quantum Algebra +0706.4469 Mesoscale and Nanoscale Physics +0707.0236 Mesoscale and Nanoscale Physics +0709.3832 Strongly Correlated Electrons +0711.0053 Experiment +0712.3723 Strongly Correlated Electrons +0802.2879 Phenomenology +0806.0343 +0806.2295 Materials Science +0806.2810 Superconductivity +0809.1120 Materials Science +0809.1342 Statistical Mechanics +0809.2278 Mesoscale and Nanoscale Physics +0809.3456 Materials Science +0809.3660 Mesoscale and Nanoscale Physics +0809.3680 Quantum Gases +0811.1394 Mesoscale and Nanoscale Physics +0811.3071 Classical Physics +0811.3940 Superconductivity +0812.1536 Physics and Society +0812.2053 Theory +0812.4534 Mesoscale and Nanoscale Physics +0812.4685 Category Theory +0901.0824 Information Theory +0901.1122 Mesoscale and Nanoscale Physics +0901.2289 Mesoscale and Nanoscale Physics +0901.2981 Phenomenology +0901.2982 Phenomenology +0901.3155 Other Condensed Matter +0901.3921 Mesoscale and Nanoscale Physics +0903.2656 Quantum Gases +0903.2760 Cosmology and Nongalactic Astrophysics +0903.3374 +0903.3679 Optics +0903.4418 Differential Geometry +0903.5517 Theory +0904.1655 +0904.1946 +0904.2300 Cosmology and Nongalactic Astrophysics +0904.2399 Statistical Mechanics +0904.4547 Disordered Systems and Neural Networks +0904.4874 Rings and Algebras +0905.2671 Algebraic Topology +0905.2835 Theory +0905.3475 Combinatorics +0906.2041 Plasma Physics +0906.3270 Rings and Algebras +0906.3603 Plasma Physics +0906.4639 Theory +0906.5187 Statistical Mechanics +0907.0847 Cosmology and Nongalactic Astrophysics +0907.2141 Representation Theory +0907.2356 Group Theory +0907.2606 Number Theory +0907.3137 Neurons and Cognition +0907.3144 Cosmology and Nongalactic Astrophysics +0907.3146 Phenomenology +0907.3157 Strongly Correlated Electrons +0907.3161 +0907.3168 Combinatorics +0907.3175 Materials Science +0907.3176 Materials Science +0907.3186 Theory +0907.3190 High Energy Astrophysical Phenomena +0907.3194 General Mathematics +0907.3200 Neural and Evolutionary Computing +0907.3202 Neural and Evolutionary Computing +0907.3207 Probability +0907.3209 Computer Vision and Pattern Recognition +0907.3215 Computer Vision and Pattern Recognition +0907.3218 Computer Vision and Pattern Recognition +0907.3219 Solar and Stellar Astrophysics +0907.3220 Sound +0907.3230 Logic in Computer Science +0907.3232 +0907.3237 Theory +0907.3244 Operator Algebras +0907.3254 Combinatorics +0907.3259 Category Theory +0907.3266 Quantum Algebra +0907.3267 Superconductivity +0907.3269 Statistical Mechanics +0907.3274 Analysis of PDEs +0907.3276 Analysis of PDEs +0907.3277 Geophysics +0907.3288 Number Theory +0907.3291 Information Theory +0907.3301 Portfolio Management +0907.3305 Cosmology and Nongalactic Astrophysics +0907.3306 Number Theory +0907.3307 Complex Variables +0907.3310 Cosmology and Nongalactic Astrophysics +0907.3315 Information Retrieval +0907.3316 Representation Theory +0907.3319 Dynamical Systems +0907.3321 Functional Analysis +0907.3326 Algebraic Geometry +0907.3328 Rings and Algebras +0907.3332 Rings and Algebras +0907.3339 Dynamical Systems +0907.3340 Numerical Analysis +0907.3343 +0907.3345 +0907.3348 Discrete Mathematics +0907.3349 +0907.3351 Representation Theory +0907.3355 Methodology +0907.3357 +0907.3361 Solar and Stellar Astrophysics +0907.3370 Spectral Theory +0907.3371 Optimization and Control +0907.3373 Applications +0907.3376 Optics +0907.3378 Classical Physics +0907.3379 Plasma Physics +0907.3383 Statistical Mechanics +0907.3401 Number Theory +0907.3402 Cryptography and Security +0907.3410 Methodology +0907.3414 Computational Complexity +0907.3417 Solar and Stellar Astrophysics +0907.3420 Combinatorics +0907.3432 Earth and Planetary Astrophysics +0907.3435 Representation Theory +0907.3438 Numerical Analysis +0907.3439 +0907.3442 Numerical Analysis +0907.3445 Information Retrieval +0907.3446 Differential Geometry +0907.3452 +0907.3455 Phenomenology +0907.3456 Computers and Society +0907.3465 +0907.3475 Statistical Mechanics +cond-mat/0510013 Strongly Correlated Electrons +cond-mat/0609711 Statistical Mechanics +gr-qc/0612098 +hep-th/0701232 Theory +math/0401334 Number Theory +math/0610006 Analysis of PDEs +0704.0468 Computational Complexity +0704.2092 Learning +0706.2012 Strongly Correlated Electrons +0706.2099 Statistical Mechanics +0707.3732 Other Computer Science +0709.2437 +0712.1128 K-Theory and Homology +0712.4309 Materials Science +0801.3426 Phenomenology +0802.3666 Functional Analysis +0803.1051 Data Analysis, Statistics and Probability +0805.3675 Tissues and Organs +0805.4385 +0806.1024 Superconductivity +0809.0057 +0809.0598 Mesoscale and Nanoscale Physics +0809.1477 Strongly Correlated Electrons +0809.1564 Algebraic Geometry +0810.2362 Superconductivity +0810.2742 Phenomenology +0810.3440 Combinatorics +0810.4549 Mesoscale and Nanoscale Physics +0810.5278 Physics and Society +0811.0748 +0811.1561 Applications +0811.3122 Statistical Finance +0811.4047 Superconductivity +0812.0916 Statistical Mechanics +0812.1507 +0812.1787 +0812.2707 Strongly Correlated Electrons +0812.4203 +0812.4495 Quantum Algebra +0901.0930 Data Structures and Algorithms +0901.2152 +0901.2563 Differential Geometry +0901.4827 Algebraic Geometry +0902.1066 Superconductivity +0902.3620 Group Theory +0902.4013 Physics and Society +0902.4127 Learning +0903.1410 Phenomenology +0903.1581 Statistical Mechanics +0903.2170 Number Theory +0903.2448 Logic in Computer Science +0903.3413 Superconductivity +0903.3420 Analysis of PDEs +0903.3428 Logic +0903.3429 History and Philosophy of Physics +0903.3433 Information Theory +0903.3434 Earth and Planetary Astrophysics +0903.3439 Commutative Algebra +0903.3442 +0903.3444 +0903.3445 Materials Science +0903.3447 Instrumentation and Methods for Astrophysics +0903.3449 +0903.3452 +0903.3456 Rings and Algebras +0903.3461 Data Structures and Algorithms +0903.3462 Distributed, Parallel, and Cluster Computing +0903.3469 Algebraic Geometry +0903.3470 Statistics Theory +0903.3471 Complex Variables +0903.3478 Group Theory +0903.3483 Rings and Algebras +0903.3484 Solar and Stellar Astrophysics +0903.3486 Solar and Stellar Astrophysics +0903.3487 Information Theory +0903.3489 +0903.3492 Solar and Stellar Astrophysics +0903.3493 Soft Condensed Matter +0903.3495 Algebraic Topology +0903.3499 Numerical Analysis +0903.3502 Chemical Physics +0903.3504 +0903.3508 Analysis of PDEs +0903.3510 Differential Geometry +0903.3513 Formal Languages and Automata Theory +0903.3514 General Topology +0903.3529 Classical Physics +0903.3539 Superconductivity +0903.3540 K-Theory and Homology +0903.3544 Metric Geometry +0903.3545 Physics and Society +0903.3549 Superconductivity +0903.3557 Pattern Formation and Solitons +0903.3562 Digital Libraries +0903.3569 Commutative Algebra +0903.3575 Superconductivity +0903.3578 Optics +0903.3579 Data Structures and Algorithms +0903.3585 Combinatorics +0903.3587 Atomic and Molecular Clusters +0903.3592 Soft Condensed Matter +astro-ph/0210356 +cond-mat/0102134 Mesoscale and Nanoscale Physics +cond-mat/0603193 Strongly Correlated Electrons +cond-mat/0608448 Mesoscale and Nanoscale Physics +cond-mat/0612234 Mesoscale and Nanoscale Physics +cond-mat/0702331 Statistical Mechanics +cs/0305043 Other Computer Science +cs/0601127 Data Structures and Algorithms +cs/0603113 Other Computer Science +cs/0612140 Discrete Mathematics +math/0404459 Algebraic Geometry +math/0406404 Metric Geometry +math/0506215 Functional Analysis +math/0509312 Number Theory +math/0604160 K-Theory and Homology +math/0611437 Algebraic Topology +math/0612325 Symplectic Geometry +math/0701484 K-Theory and Homology +physics/0607102 General Physics +quant-ph/0406199 +0705.0086 Computational Geometry +0705.3137 Algebraic Geometry +0705.3983 Populations and Evolution +0705.4118 Superconductivity +0706.4267 Analysis of PDEs +0707.3739 Superconductivity +0709.0561 Subcellular Processes +0710.1037 Numerical Analysis +0710.2064 Algebraic Geometry +0710.4532 +0712.3908 Probability +0801.2609 Algebraic Geometry +0802.2922 +0805.4516 Probability +0806.2034 Algebraic Geometry +0806.2316 +0806.2940 Logic +0806.2959 Superconductivity +0807.4495 Data Analysis, Statistics and Probability +0808.0328 Superconductivity +0808.3344 Probability +0808.3609 Populations and Evolution +0809.3653 Populations and Evolution +0810.0738 Strongly Correlated Electrons +0810.4384 Mesoscale and Nanoscale Physics +0810.4449 Phenomenology +0811.0421 +0812.1447 Symplectic Geometry +0812.2430 Theory +0812.3883 Mesoscale and Nanoscale Physics +0901.1916 Plasma Physics +0901.2024 Superconductivity +0902.0498 Theory +0902.1035 Performance +0902.1340 High Energy Astrophysical Phenomena +0902.2864 Superconductivity +0902.4655 Other Condensed Matter +0903.1018 Differential Geometry +0903.1756 Combinatorics +0903.3337 Materials Science +0903.5336 +0904.0271 Mesoscale and Nanoscale Physics +0905.2348 Cosmology and Nongalactic Astrophysics +0905.2948 +0906.1481 General Topology +0906.2697 Plasma Physics +0906.2821 Analysis of PDEs +0906.5574 High Energy Astrophysical Phenomena +0907.0285 Quantitative Methods +0907.0393 Cosmology and Nongalactic Astrophysics +0907.0477 Probability +0907.0478 +0907.0480 Differential Geometry +0907.0487 Probability +0907.0488 Algebraic Geometry +0907.0499 Artificial Intelligence +0907.0503 Statistical Mechanics +0907.0505 Information Theory +0907.0513 Combinatorics +0907.0516 Neural and Evolutionary Computing +0907.0518 Differential Geometry +0907.0520 Neural and Evolutionary Computing +0907.0522 Differential Geometry +0907.0523 Analysis of PDEs +0907.0524 Phenomenology +0907.0525 Phenomenology +0907.0536 Number Theory +0907.0541 Solar and Stellar Astrophysics +0907.0542 Computers and Society +0907.0543 Solar and Stellar Astrophysics +0907.0545 Phenomenology +0907.0548 Solar and Stellar Astrophysics +0907.0550 Cosmology and Nongalactic Astrophysics +0907.0551 Cosmology and Nongalactic Astrophysics +0907.0553 Astrophysics of Galaxies +0907.0557 Solar and Stellar Astrophysics +0907.0558 Analysis of PDEs +0907.0559 High Energy Astrophysical Phenomena +0907.0561 High Energy Astrophysical Phenomena +0907.0565 High Energy Astrophysical Phenomena +0907.0577 +0907.0581 Soft Condensed Matter +0907.0590 Experiment +0907.0592 Neural and Evolutionary Computing +0907.0595 Neural and Evolutionary Computing +0907.0597 Neural and Evolutionary Computing +0907.0598 Neural and Evolutionary Computing +0907.0600 +0907.0601 +0907.0604 Materials Science +0907.0605 Classical Physics +0907.0611 Neural and Evolutionary Computing +0907.0612 Classical Physics +0907.0614 Probability +0907.0615 Formal Languages and Automata Theory +0907.0618 Operator Algebras +0907.0620 Formal Languages and Automata Theory +0907.0624 Formal Languages and Automata Theory +0907.0626 Instrumentation and Methods for Astrophysics +0907.0635 Solar and Stellar Astrophysics +0907.0636 Differential Geometry +0907.0637 Phenomenology +0907.0638 High Energy Astrophysical Phenomena +0907.0642 High Energy Astrophysical Phenomena +0907.0650 +0907.0672 Strongly Correlated Electrons +0907.0673 Materials Science +0907.0676 Probability +0907.0678 Cryptography and Security +0907.0681 Operator Algebras +0907.0684 Differential Geometry +0907.0686 Optimization and Control +0907.0687 Materials Science +0907.0688 Differential Geometry +0907.0689 +0907.0691 Computational Complexity +0907.0692 Number Theory +0907.0693 Numerical Analysis +0907.0697 Probability +0907.0698 Probability +astro-ph/0204492 +astro-ph/0211534 +astro-ph/0307003 +astro-ph/0311342 +astro-ph/0405059 +cond-mat/0604409 Statistical Mechanics +hep-th/0301144 Theory +hep-th/0506218 Theory +math/0309104 Group Theory +math/0312039 Algebraic Geometry +math/0312368 Commutative Algebra +math/0401098 Rings and Algebras +math/0404391 Algebraic Geometry +math/0504306 Algebraic Geometry +math/0508208 Geometric Topology +math/0608473 Algebraic Geometry +math/0609458 Geometric Topology +math/0610669 Algebraic Geometry +math/0703813 Algebraic Geometry +physics/0402129 Atomic Physics +0707.2068 +0707.4570 Theory +0708.0066 Geometric Topology +0710.2386 Metric Geometry +0710.2973 Metric Geometry +0710.5539 Theory +0801.3964 Representation Theory +0802.2283 Geometric Topology +0802.3208 Geometric Topology +0803.0092 Analysis of PDEs +0805.1057 Theory +0806.0726 +0808.2528 Functional Analysis +0808.3638 +0809.2496 Phenomenology +0809.2515 Phenomenology +0810.4854 +0810.5605 Dynamical Systems +0812.0953 Other Condensed Matter +0812.2703 Differential Geometry +0812.3245 Rings and Algebras +0812.3567 +0812.4553 Other Condensed Matter +0812.4913 History and Overview +0901.3931 Analysis of PDEs +0902.2521 Algebraic Geometry +0902.3204 Commutative Algebra +0903.2239 +0903.3357 Differential Geometry +0903.3686 Other Condensed Matter +0904.0296 Analysis of PDEs +0904.0332 Other Condensed Matter +0904.2694 Numerical Analysis +0904.2864 Materials Science +0904.3356 Information Theory +0905.1097 Biological Physics +0906.0716 Computation and Language +0906.1986 Mesoscale and Nanoscale Physics +0906.3666 Probability +0906.4056 Mesoscale and Nanoscale Physics +0906.4163 Strongly Correlated Electrons +0908.0634 Quantitative Methods +0908.2534 Cosmology and Nongalactic Astrophysics +0908.4114 Strongly Correlated Electrons +0908.4387 Symplectic Geometry +0909.0489 Quantum Gases +0909.1944 Strongly Correlated Electrons +0909.4282 Mesoscale and Nanoscale Physics +0910.0352 +0910.1715 +0910.2062 Combinatorics +0910.2131 Accelerator Physics +0910.2240 Information Theory +0910.2241 Operator Algebras +0910.2245 Information Theory +0910.2246 General Mathematics +0910.2251 Number Theory +0910.2254 Theory +0910.2256 Solar and Stellar Astrophysics +0910.2259 Superconductivity +0910.2261 Astrophysics of Galaxies +0910.2276 Computational Engineering, Finance, and Science +0910.2277 Functional Analysis +0910.2278 Populations and Evolution +0910.2279 Computer Vision and Pattern Recognition +0910.2280 Mesoscale and Nanoscale Physics +0910.2285 Networking and Internet Architecture +0910.2290 Fluid Dynamics +0910.2312 Functional Analysis +0910.2315 Formal Languages and Automata Theory +0910.2317 Data Structures and Algorithms +0910.2318 Logic +0910.2325 Computation +0910.2329 Superconductivity +0910.2330 Atomic Physics +0910.2331 Analysis of PDEs +0910.2334 Phenomenology +0910.2335 Operator Algebras +0910.2340 Machine Learning +0910.2345 Superconductivity +0910.2356 Algebraic Geometry +0910.2357 Rings and Algebras +0910.2358 Functional Analysis +0910.2360 Analysis of PDEs +0910.2366 Operator Algebras +0910.2368 General Physics +0910.2374 Materials Science +0910.2376 Combinatorics +0910.2378 Geometric Topology +0910.2380 +0910.2394 Optics +0910.2397 Cosmology and Nongalactic Astrophysics +0910.2400 Exactly Solvable and Integrable Systems +0910.2403 Plasma Physics +0910.2405 Information Retrieval +0910.2408 Geometric Topology +0910.2410 +0910.2411 Materials Science +0910.2414 Physics and Society +0910.2420 Mesoscale and Nanoscale Physics +0910.2421 Materials Science +0910.2428 Number Theory +0910.2436 Genomics +0910.2442 Materials Science +0910.2445 Combinatorics +0910.2446 Complex Variables +cond-mat/0504305 Strongly Correlated Electrons +cs/0201007 Mathematical Software +hep-th/9308079 Theory +math-ph/0208034 +math-ph/0601029 +math/0305068 Analysis of PDEs +math/0604059 Differential Geometry +0710.2326 Algebraic Geometry +0711.4956 Experiment +0804.1840 Computer Science and Game Theory +0807.2421 Theory +0807.3694 Differential Geometry +0809.2393 Strongly Correlated Electrons +0809.4241 Disordered Systems and Neural Networks +0810.3720 Strongly Correlated Electrons +0811.3810 Operator Algebras +0902.1976 +0902.2751 Multiagent Systems +0902.3864 Phenomenology +0902.4685 +gr-qc/0405037 +math/0306327 Complex Variables +math/0310154 Differential Geometry +math/0504474 Geometric Topology +math/0509039 Geometric Topology +math/0511644 Symplectic Geometry +math/0602175 Dynamical Systems +math/0606025 Algebraic Topology +quant-ph/0605011 +0704.0453 Superconductivity +0707.2648 Quantum Algebra +0708.3411 Statistical Mechanics +0709.2434 Probability +0710.2028 Quantum Algebra +0710.3749 Rings and Algebras +0801.0987 Theory +0802.0786 Phenomenology +0802.0807 Fluid Dynamics +0802.1606 +0803.1205 Algebraic Geometry +0803.3214 Phenomenology +0803.3356 Phenomenology +0804.1392 Computation +0804.1393 Computation +0804.1441 Learning +0805.1430 Classical Analysis and ODEs +0805.4261 Strongly Correlated Electrons +0805.4301 Theory +0805.4695 Phenomenology +0806.0216 Statistical Mechanics +0806.0383 +0806.2784 Mesoscale and Nanoscale Physics +0806.2949 Phenomenology +0807.0351 +0807.0870 Theory +0807.1312 Optics +0807.2366 Phenomenology +0807.3733 Phenomenology +0807.4142 Disordered Systems and Neural Networks +0807.4207 Phenomenology +0807.4288 Operator Algebras +0807.4884 Soft Condensed Matter +0808.0222 Phenomenology +0808.1773 Phenomenology +0808.1809 Superconductivity +0809.0599 Phenomenology +0809.1379 Information Theory +0809.1761 +0809.2319 Computational Complexity +0809.3078 Mesoscale and Nanoscale Physics +0809.3679 Other Condensed Matter +0809.3881 Category Theory +0809.4354 Phenomenology +0809.4860 Experiment +0809.5063 +0810.1280 Theory +0810.3576 Materials Science +0810.4736 Phenomenology +0810.5071 Phenomenology +0811.0147 +0811.0685 Superconductivity +0811.0846 Phenomenology +0811.0871 Phenomenology +0811.0998 Phenomenology +0811.2072 Theory +0811.2492 Strongly Correlated Electrons +0811.2583 Probability +0811.2954 Strongly Correlated Electrons +0811.3268 Superconductivity +0811.3850 +0812.0465 +0812.4191 Populations and Evolution +0901.2501 +0901.2622 +0901.3534 Combinatorics +0901.4001 Phenomenology +0901.4238 Analysis of PDEs +0901.4331 Atomic Physics +0901.4421 +0901.4551 Information Theory +0901.4552 Instrumentation and Methods for Astrophysics +0901.4560 Materials Science +0901.4562 Materials Science +0901.4564 Number Theory +0901.4568 Statistical Mechanics +0901.4569 Lattice +0901.4571 Digital Libraries +0901.4575 Cosmology and Nongalactic Astrophysics +0901.4585 Solar and Stellar Astrophysics +0901.4586 Dynamical Systems +0901.4589 Molecular Networks +0901.4594 Mesoscale and Nanoscale Physics +0901.4605 Methodology +0901.4609 Numerical Analysis +0901.4612 Information Theory +0901.4616 Probability +0901.4620 Differential Geometry +0901.4623 Optics +0901.4624 Cosmology and Nongalactic Astrophysics +0901.4625 +0901.4628 Statistics Theory +0901.4632 Solar and Stellar Astrophysics +0901.4636 Materials Science +0901.4638 Analysis of PDEs +0901.4639 Instrumentation and Detectors +0901.4646 Cryptography and Security +0901.4647 Applications +0901.4651 Strongly Correlated Electrons +0901.4656 Experiment +0901.4657 Mesoscale and Nanoscale Physics +0901.4659 Classical Analysis and ODEs +0901.4660 +0901.4664 Logic in Computer Science +0901.4678 Instrumentation and Methods for Astrophysics +0901.4679 Phenomenology +0901.4681 Phenomenology +0901.4687 Representation Theory +0901.4694 Hardware Architecture +0901.4697 Solar and Stellar Astrophysics +0901.4698 Combinatorics +0901.4700 Phenomenology +0901.4703 +0901.4707 Combinatorics +0901.4715 Methodology +0901.4723 Numerical Analysis +0901.4728 Computer Science and Game Theory +0901.4731 +0901.4732 Phenomenology +0901.4740 +0901.4741 Instrumentation and Detectors +0901.4751 Other Condensed Matter +0901.4753 High Energy Astrophysical Phenomena +0901.4754 Logic in Computer Science +0901.4755 Rings and Algebras +0901.4761 Artificial Intelligence +0901.4764 Dynamical Systems +0901.4766 Classical Analysis and ODEs +0901.4767 General Physics +0901.4768 Superconductivity +astro-ph/0406234 +cond-mat/0604521 Superconductivity +cs/0602074 Information Theory +hep-ph/0701116 Phenomenology +hep-ph/0701121 Phenomenology +hep-ph/0701147 Phenomenology +hep-th/0111224 Theory +hep-th/0511147 Theory +hep-th/0701054 Theory +hep-th/0701067 Theory +hep-th/0701128 Theory +hep-th/0701138 Theory +hep-th/0701148 Theory +hep-th/0701157 Theory +hep-th/0701203 Theory +hep-th/0701262 Theory +hep-th/0702017 Theory +math-ph/0703082 +math/0210264 Quantum Algebra +math/0211277 Logic +math/0512043 Representation Theory +math/0610278 Number Theory +physics/0702151 Fluid Dynamics +physics/0703001 Chemical Physics +0803.0533 +0805.0057 +0805.1305 Algebraic Geometry +0806.1728 Operator Algebras +0812.4362 +0902.4168 Number Theory +0903.3771 Theory +0904.2834 Algebraic Geometry +0906.2666 Classical Analysis and ODEs +0906.2980 +0906.3996 Mesoscale and Nanoscale Physics +0908.1757 K-Theory and Homology +0908.3052 Quantum Gases +0909.0015 +0909.0536 Quantum Gases +0909.2312 Theory +0910.2133 General Physics +0910.5288 Combinatorics +cond-mat/0604211 Mesoscale and Nanoscale Physics +cond-mat/0607531 Mesoscale and Nanoscale Physics +math/0511150 Differential Geometry +0704.0015 Theory +0704.0041 Quantum Algebra +0704.0046 +0704.0055 Soft Condensed Matter +0704.0056 Soft Condensed Matter +0704.0057 Strongly Correlated Electrons +0704.0082 Other Condensed Matter +0704.0084 Soft Condensed Matter +0704.0085 Theory +0704.0098 Information Theory +0704.0117 +0704.0118 Superconductivity +0704.0119 Strongly Correlated Electrons +0704.0122 Other Condensed Matter +0704.0128 +0704.0133 +0704.0150 Strongly Correlated Electrons +0704.0159 Strongly Correlated Electrons +0704.0161 Materials Science +0704.0166 Theory +0704.0170 Strongly Correlated Electrons +0704.0171 +0704.0172 Mesoscale and Nanoscale Physics +0704.0176 Other Condensed Matter +0704.0177 Optics +0704.0179 +0704.0181 Optics +0704.0183 Materials Science +0704.0188 Other Condensed Matter +0704.0192 +0704.0194 Mesoscale and Nanoscale Physics +0704.0206 Optics +0704.0210 Differential Geometry +0704.0212 Theory +0704.0216 Materials Science +0704.0226 +0704.0235 Phenomenology +0704.0239 Soft Condensed Matter +0704.0242 +0704.0243 Strongly Correlated Electrons +0704.0244 Materials Science +0704.0249 Strongly Correlated Electrons +0704.0256 +0704.0261 +0704.0262 Theory +0704.0263 Fluid Dynamics +0704.0270 +0704.0271 Statistical Mechanics +0704.0287 +0704.0289 Mesoscale and Nanoscale Physics +0704.0291 Atomic Physics +0704.0292 Phenomenology +0704.0297 +0704.0300 Mesoscale and Nanoscale Physics +0704.0311 Mesoscale and Nanoscale Physics +0704.0319 Mesoscale and Nanoscale Physics +0704.0325 Statistical Mechanics +0704.0326 Statistics Theory +0704.0327 Strongly Correlated Electrons +0704.0333 Strongly Correlated Electrons +0704.0346 +0704.0350 +0704.0351 +0704.0352 Soft Condensed Matter +0704.0355 +0704.0357 Populations and Evolution +0704.0360 +0704.0376 +0704.0381 +0704.0386 +0704.0387 +0704.0391 Mesoscale and Nanoscale Physics +0704.0396 Strongly Correlated Electrons +0704.0401 +0704.0402 Analysis of PDEs +0704.0406 Strongly Correlated Electrons +0704.0418 Disordered Systems and Neural Networks +0704.0419 Superconductivity +0704.0422 Optics +0704.0426 +0704.0442 Optics +0704.0457 Superconductivity +0704.0461 +0704.0464 Biomolecules +0704.0465 Statistical Mechanics +0704.0466 Superconductivity +0704.0475 +0704.0476 +0704.0477 +0704.0486 +0704.0489 +0704.0491 Soft Condensed Matter +0704.0493 Statistical Mechanics +0704.0518 +0704.0521 Strongly Correlated Electrons +0704.0525 +0704.0530 Theory +0704.0533 Strongly Correlated Electrons +0704.0534 Disordered Systems and Neural Networks +0704.0560 Atomic Physics +0704.0561 Superconductivity +0704.0577 Theory +0704.0578 +0704.0579 +0704.0580 Disordered Systems and Neural Networks +0704.0585 Materials Science +0704.0587 Soft Condensed Matter +0704.0592 Other Condensed Matter +0704.0599 Superconductivity +0704.0606 +0704.0609 +0704.0616 +0704.0617 +0704.0620 +0704.0624 Materials Science +0704.0627 Phenomenology +0704.0635 +0704.0636 Mesoscale and Nanoscale Physics +0704.0637 +0704.0639 +0704.0645 +0704.0647 Theory +0704.0650 Mesoscale and Nanoscale Physics +0704.0651 Materials Science +0704.0657 +0704.0658 Mesoscale and Nanoscale Physics +0704.0660 Materials Science +0704.0664 Statistical Finance +0704.0674 +0704.0678 +0704.0680 +0704.0682 +0704.0684 Disordered Systems and Neural Networks +0704.0690 Theory +0704.0692 Superconductivity +0704.0696 Materials Science +0704.0702 Mesoscale and Nanoscale Physics +0704.0703 Optics +0704.0707 Soft Condensed Matter +0704.0709 +0704.0712 Atomic Physics +0704.0713 Statistical Mechanics +0704.0714 Differential Geometry +0704.0725 Optics +0704.0726 Data Analysis, Statistics and Probability +0704.0729 Theory +0704.0735 +0704.0761 Statistical Mechanics +0704.0762 Statistical Mechanics +0704.0765 Superconductivity +0704.0769 Other Condensed Matter +0704.0776 Mesoscale and Nanoscale Physics +0704.0791 +0704.0792 +0704.0804 Statistical Mechanics +0704.0809 +0704.0816 +0704.0818 Plasma Physics +0704.0820 Optics +0704.0821 Strongly Correlated Electrons +0704.0828 Superconductivity +0704.0830 Mesoscale and Nanoscale Physics +0704.0845 Superconductivity +0704.0847 Atomic and Molecular Clusters +0704.0850 Statistical Mechanics +0704.0854 Optics +0704.0856 Atomic Physics +0704.0863 +0704.0868 Mesoscale and Nanoscale Physics +0704.0869 Statistical Mechanics +0704.0871 +0704.0890 +0704.0896 Disordered Systems and Neural Networks +0704.0899 +0704.0900 Superconductivity +0704.0912 Atomic Physics +0704.0913 Statistical Mechanics +0704.0914 Analysis of PDEs +0704.0915 Materials Science +0704.0917 +0704.0919 Mesoscale and Nanoscale Physics +0704.0925 Other Condensed Matter +0704.0931 +0704.0932 +0704.0937 +0704.0941 +0704.0946 +0704.0948 +0704.0952 +0704.0954 Information Theory +0704.0956 Superconductivity +0704.0961 +0704.0964 +0704.0974 Statistical Mechanics +0704.0975 Statistical Mechanics +0704.0976 Statistical Mechanics +0704.0977 Mesoscale and Nanoscale Physics +0704.0978 +0704.0980 Mesoscale and Nanoscale Physics +0704.0983 Phenomenology +0704.0996 Theory +0704.1016 Superconductivity +0704.1037 +0704.1051 +0704.1053 Materials Science +0704.1063 +0704.1064 Statistical Mechanics +0704.1065 Strongly Correlated Electrons +0704.1067 +0704.1069 +0704.1078 Strongly Correlated Electrons +0704.1079 Theory +0704.1093 Pattern Formation and Solitons +0704.1096 Other Condensed Matter +0704.1097 Superconductivity +0704.1098 +0704.1120 Physics and Society +0704.1125 +0704.1138 +0704.1144 Statistical Mechanics +0704.1149 +0704.1158 Computers and Society +0704.1159 +0704.1162 +0704.1164 Analysis of PDEs +0704.1172 +0704.1176 +0704.1179 Materials Science +0704.1182 +0704.1191 +0704.1197 +0704.1202 +0704.1205 Strongly Correlated Electrons +0704.1206 Materials Science +0704.1211 Statistical Mechanics +0704.1213 Mesoscale and Nanoscale Physics +0704.1215 +0704.1220 +0704.1227 Superconductivity +0704.1228 +0704.1233 Statistical Mechanics +0704.1235 Disordered Systems and Neural Networks +0704.1241 Materials Science +0704.1244 +0704.1247 Phenomenology +0704.1250 +0704.1251 Materials Science +0704.1252 +0704.1258 +0704.1260 Mesoscale and Nanoscale Physics +0704.1265 +0704.1268 Superconductivity +0704.1285 Strongly Correlated Electrons +0704.1288 Soft Condensed Matter +0704.1289 +0704.1296 +0704.1297 +0704.1305 Materials Science +0704.1319 Physics Education +0704.1332 +0704.1338 Statistical Finance +0704.1359 +0704.1364 +0704.1365 +0704.1366 +0704.1374 +0704.1376 +0704.1377 Other Condensed Matter +0704.1380 Materials Science +0704.1381 Chemical Physics +0704.1389 Strongly Correlated Electrons +0704.1398 +0704.1401 Exactly Solvable and Integrable Systems +0704.1402 Strongly Correlated Electrons +0704.1406 Chaotic Dynamics +0704.1413 Other Condensed Matter +0704.1419 Materials Science +0704.1423 Atomic Physics +0704.1425 Superconductivity +0704.1430 +0704.1434 Strongly Correlated Electrons +0704.1435 +0704.1438 Theory +0704.1441 Strongly Correlated Electrons +0704.1442 +0704.1456 +0704.1458 +0704.1462 +0704.1467 Statistical Mechanics +0704.1468 +0704.1471 +0704.1473 +0704.1479 Mesoscale and Nanoscale Physics +0704.1481 +0704.1488 +0704.1494 Materials Science +0704.1497 Disordered Systems and Neural Networks +0704.1499 Materials Science +0704.1501 Other Condensed Matter +0704.1508 Materials Science +0704.1510 +0704.1513 Optics +0704.1515 +0704.1516 +0704.1517 General Physics +0704.1521 +0704.1523 +0704.1524 Information Theory +0704.1528 Superconductivity +0704.1539 Soft Condensed Matter +0704.1542 Chemical Physics +0704.1543 Differential Geometry +0704.1544 Superconductivity +0704.1546 Biomolecules +0704.1547 Biological Physics +0704.1550 Atomic and Molecular Clusters +0704.1552 Strongly Correlated Electrons +0704.1559 +0704.1560 +0704.1562 +0704.1566 +0704.1572 Materials Science +0704.1578 +0704.1579 +0704.1589 Physics and Society +0704.1597 Strongly Correlated Electrons +0704.1600 +0704.1601 Pattern Formation and Solitons +0704.1605 +0704.1611 Chaotic Dynamics +0704.1617 +0704.1618 Strongly Correlated Electrons +0704.1620 Soft Condensed Matter +0704.1626 Disordered Systems and Neural Networks +0704.1628 Mesoscale and Nanoscale Physics +0704.1631 +0704.1648 +0704.1650 Adaptation and Self-Organizing Systems +0704.1656 Strongly Correlated Electrons +0704.1657 Theory +0704.1667 Molecular Networks +0704.1668 +0704.1672 Biological Physics +0704.1684 +0704.1687 Optics +0704.1697 Mesoscale and Nanoscale Physics +0704.1705 Disordered Systems and Neural Networks +0704.1715 +0704.1720 Phenomenology +0704.1729 +0704.1735 Other Condensed Matter +0704.1737 +0704.1742 Pattern Formation and Solitons +0704.1748 Computational Physics +0704.1752 Materials Science +0704.1754 +0704.1755 Operator Algebras +0704.1766 +0704.1775 Mesoscale and Nanoscale Physics +0704.1780 +0704.1787 Other Condensed Matter +0704.1790 Adaptation and Self-Organizing Systems +0704.1811 Quantitative Methods +0704.1812 +0704.1814 Theory +0704.1815 Strongly Correlated Electrons +0704.1820 Superconductivity +0704.1832 +0704.1840 Soft Condensed Matter +0704.1850 Materials Science +0704.1857 Statistical Mechanics +0704.1860 +0704.1864 +0704.1872 Superconductivity +0704.1875 Mesoscale and Nanoscale Physics +0704.1878 Strongly Correlated Electrons +0704.1881 +0704.1882 Statistical Mechanics +0704.1883 Mesoscale and Nanoscale Physics +0704.1886 Logic +0704.1907 +0704.1911 Soft Condensed Matter +0704.1918 +0704.1923 Materials Science +0704.1931 +0704.1939 +0704.1942 General Physics +0704.1950 Optics +0704.1953 Statistical Mechanics +0704.1958 +0704.1965 +0704.1970 Strongly Correlated Electrons +0704.1971 Soft Condensed Matter +0704.1995 Other Condensed Matter +0704.1996 Theory +0704.1999 +0704.2003 Statistical Finance +0704.2004 Disordered Systems and Neural Networks +0704.2006 Mesoscale and Nanoscale Physics +0704.2028 Materials Science +0704.2032 +0704.2033 +0704.2035 +0704.2036 Materials Science +0704.2044 +0704.2049 Plasma Physics +0704.2053 +0704.2066 +0704.2073 +0704.2077 Superconductivity +0704.2082 Superconductivity +0704.2091 +0704.2097 +0704.2098 Statistical Mechanics +0704.2100 +0704.2112 Superconductivity +0704.2116 Strongly Correlated Electrons +0704.2120 +0704.2121 Analysis of PDEs +0704.2122 +0704.2123 Analysis of PDEs +0704.2129 Materials Science +0704.2131 +0704.2133 +0704.2134 +0704.2143 +0704.2145 +0704.2150 Statistical Mechanics +0704.2151 Atomic Physics +0704.2166 +0704.2171 Statistical Mechanics +0704.2175 +0704.2177 +0704.2181 Strongly Correlated Electrons +0704.2182 +0704.2187 +0704.2189 +0704.2190 Atomic Physics +0704.2202 Materials Science +0704.2210 +0704.2211 Other Condensed Matter +0704.2215 Mesoscale and Nanoscale Physics +0704.2217 Plasma Physics +0704.2221 Soft Condensed Matter +0704.2230 Theory +0704.2239 +0704.2241 +0704.2246 +0704.2247 +0704.2255 +0704.2261 Mesoscale and Nanoscale Physics +0704.2265 Theory +0704.2268 +0704.2270 +0704.2271 +0704.2272 +0704.2280 Exactly Solvable and Integrable Systems +0704.2288 +0704.2300 Materials Science +0704.2313 Statistical Mechanics +0704.2315 +0704.2316 Statistical Mechanics +0704.2324 Physics and Society +0704.2329 Mesoscale and Nanoscale Physics +0704.2332 +0704.2335 +0704.2336 Strongly Correlated Electrons +0704.2342 +0704.2346 Biological Physics +0704.2350 +0704.2358 Superconductivity +0704.2372 Analysis of PDEs +0704.2373 Other Condensed Matter +0704.2389 Theory +0704.2392 Soft Condensed Matter +0704.2401 Materials Science +0704.2407 +0704.2412 Other Condensed Matter +0704.2414 +0704.2415 +0704.2418 +0704.2425 +0704.2427 Other Condensed Matter +0704.2432 Superconductivity +0704.2442 Materials Science +0704.2445 +0704.2451 +0704.2454 Quantitative Methods +0704.2455 +0704.2461 +0704.2462 Mesoscale and Nanoscale Physics +0704.2484 Disordered Systems and Neural Networks +0704.2485 Materials Science +0704.2501 Strongly Correlated Electrons +0704.2502 Materials Science +0704.2523 Materials Science +0704.2531 Materials Science +0704.2539 Statistical Mechanics +0704.2545 +0704.2573 +0704.2575 +0704.2581 Strongly Correlated Electrons +0704.2590 Mesoscale and Nanoscale Physics +0704.2595 +0704.2597 +0704.2598 Strongly Correlated Electrons +0704.2606 +0704.2607 +0704.2609 Geometric Topology +0704.2610 Materials Science +0704.2620 +0704.2621 Materials Science +0704.2645 Theory +0704.2648 +0704.2677 +0704.2684 Phenomenology +0704.2685 +0704.2690 +0704.2692 Dynamical Systems +0704.2699 Statistical Mechanics +0704.2704 +0704.2721 Other Condensed Matter +0704.2722 +0704.2726 Statistical Mechanics +0704.2728 Medical Physics +0704.2737 +0704.2740 +0704.2741 +0704.2742 Superconductivity +0704.2753 +0704.2767 +0704.2770 +0704.2772 Strongly Correlated Electrons +0704.2787 Soft Condensed Matter +0704.2790 Materials Science +0704.2793 Molecular Networks +0704.2806 Phenomenology +0704.2819 +0704.2821 +0704.2829 Materials Science +0704.2830 Strongly Correlated Electrons +0704.2831 Plasma Physics +0704.2835 Theory +0704.2836 +0704.2855 Mesoscale and Nanoscale Physics +0704.2859 +0704.2862 Other Condensed Matter +0704.2867 Disordered Systems and Neural Networks +0704.2893 Statistical Mechanics +0704.2907 +0704.2908 Materials Science +0704.2912 +0704.2920 Representation Theory +0704.2925 Statistical Mechanics +0704.2932 +0704.2939 +0704.2940 Statistical Mechanics +0704.2941 +0704.2952 +0704.2954 Materials Science +0704.2957 Superconductivity +0704.2962 +0704.2970 +0704.2972 Superconductivity +0704.2973 +0704.2975 Disordered Systems and Neural Networks +0704.2979 Strongly Correlated Electrons +0704.2981 +0704.2982 +0704.2987 Chemical Physics +0704.3008 +0704.3013 Theory +0704.3014 Mesoscale and Nanoscale Physics +0704.3017 Mesoscale and Nanoscale Physics +0704.3021 +0704.3024 +0704.3025 Strongly Correlated Electrons +0704.3032 Quantum Algebra +0704.3033 Strongly Correlated Electrons +0704.3037 Statistical Mechanics +0704.3041 Other Condensed Matter +0704.3050 +0704.3054 Applications +0704.3055 Soft Condensed Matter +0704.3056 +0704.3057 Exactly Solvable and Integrable Systems +0704.3060 +0704.3065 +0704.3069 +0704.3071 Quantitative Methods +0704.3079 Biological Physics +0704.3085 Biological Physics +0704.3087 Dynamical Systems +0704.3088 +0704.3100 +0704.3112 Soft Condensed Matter +0704.3114 Other Condensed Matter +0704.3116 +0704.3126 Superconductivity +0704.3131 +0704.3135 +0704.3137 Atomic Physics +0704.3138 Cell Behavior +0704.3143 Superconductivity +0704.3146 Mesoscale and Nanoscale Physics +0704.3149 +0704.3154 +0704.3162 +0704.3176 Statistical Mechanics +0704.3183 Theory +0704.3187 +0704.3191 +0704.3192 +0704.3193 Biological Physics +0704.3198 Strongly Correlated Electrons +0704.3204 +0704.3206 +0704.3209 Mesoscale and Nanoscale Physics +0704.3210 Mesoscale and Nanoscale Physics +0704.3211 Plasma Physics +0704.3212 Strongly Correlated Electrons +0704.3219 +0704.3227 Soft Condensed Matter +0704.3229 +0704.3236 +0704.3249 +0704.3261 Statistical Mechanics +0704.3266 +0704.3267 +0704.3269 +0704.3282 +0704.3297 +0704.3302 Soft Condensed Matter +0704.3305 Mesoscale and Nanoscale Physics +0704.3317 Statistical Mechanics +0704.3320 +0704.3325 Superconductivity +0704.3331 +0704.3335 +0704.3336 +0704.3337 +0704.3341 +0704.3348 +0704.3350 Chaotic Dynamics +0704.3352 Atmospheric and Oceanic Physics +0704.3361 +0704.3389 Disordered Systems and Neural Networks +0704.3394 +0704.3397 Strongly Correlated Electrons +0704.3401 Plasma Physics +0704.3405 Information Theory +0704.3412 Strongly Correlated Electrons +0704.3415 +0704.3418 +0704.3426 Theory +0704.3432 +0704.3435 Soft Condensed Matter +0704.3440 Statistical Mechanics +0704.3444 Soft Condensed Matter +0704.3446 Phenomenology +0704.3452 Statistical Mechanics +0704.3457 Strongly Correlated Electrons +0704.3458 Phenomenology +0704.3460 +0704.3463 +0704.3483 Other Condensed Matter +0704.3485 +0704.3497 Exactly Solvable and Integrable Systems +0704.3512 Strongly Correlated Electrons +0704.3531 Experiment +0704.3541 Materials Science +0704.3542 +0704.3545 +0704.3546 Statistical Mechanics +0704.3548 Strongly Correlated Electrons +0704.3549 +0704.3551 Biological Physics +0704.3552 +0704.3557 +0704.3566 Strongly Correlated Electrons +0704.3570 Theory +0704.3572 +0704.3573 Disordered Systems and Neural Networks +0704.3578 Materials Science +0704.3581 +0704.3582 Phenomenology +0704.3583 +0704.3587 +0704.3590 Statistical Mechanics +0704.3592 +0704.3601 +0704.3604 +0704.3610 Strongly Correlated Electrons +0704.3620 Mesoscale and Nanoscale Physics +0704.3622 Soft Condensed Matter +0704.3630 +0704.3636 Functional Analysis +0704.3637 +0704.3657 +0704.3658 Operator Algebras +0704.3663 +0704.3673 Superconductivity +0704.3675 +0704.3680 Strongly Correlated Electrons +0704.3682 +0704.3685 +0704.3694 Theory +0704.3701 Optics +0704.3710 +0704.3714 Superconductivity +0704.3717 Statistical Mechanics +0704.3718 +0704.3722 +0704.3723 +0704.3729 Mesoscale and Nanoscale Physics +0704.3745 Soft Condensed Matter +0704.3748 Quantitative Methods +0704.3754 Materials Science +0704.3756 +0704.3762 Soft Condensed Matter +0704.3766 Soft Condensed Matter +0704.3774 Statistical Mechanics +0704.3782 Phenomenology +0704.3786 Mesoscale and Nanoscale Physics +0704.3789 Pattern Formation and Solitons +0704.3794 Soft Condensed Matter +0704.3799 Mesoscale and Nanoscale Physics +0704.3806 Mesoscale and Nanoscale Physics +0704.3807 +0704.3808 Populations and Evolution +0704.3817 Statistical Mechanics +0704.3824 Mesoscale and Nanoscale Physics +0704.3828 Optics +0704.3831 +0704.3832 +0704.3833 +0704.3835 Data Structures and Algorithms +0704.3837 Optics +0704.3841 +0704.3842 +0704.3845 +0704.3847 Analysis of PDEs +0704.3865 Statistical Mechanics +0704.3867 Mesoscale and Nanoscale Physics +0704.3869 Strongly Correlated Electrons +0704.3870 Other Condensed Matter +0704.3871 Mesoscale and Nanoscale Physics +0704.3883 +0704.3897 Mesoscale and Nanoscale Physics +0704.3900 +0704.3906 +0704.3908 +0704.3921 Analysis of PDEs +0704.3923 Strongly Correlated Electrons +0704.3925 +0704.3926 +0704.3928 Materials Science +0704.3938 +0704.3948 Biomolecules +0704.3949 Materials Science +0704.3953 Statistical Mechanics +0704.3970 Materials Science +0704.3971 Other Condensed Matter +0704.3975 Superconductivity +0704.3982 Optics +0704.3983 Statistical Mechanics +0704.3985 Theory +0704.3990 Classical Physics +0704.3997 Pattern Formation and Solitons +0705.0002 +0705.0003 +0705.0004 +0705.0009 +0705.0010 Statistical Mechanics +0705.0022 Theory +0705.0024 Theory +0705.0052 Materials Science +0705.0058 +0705.0060 Differential Geometry +0705.0064 Other Condensed Matter +0705.0073 Chaotic Dynamics +0705.0075 Statistical Mechanics +0705.0076 Statistical Finance +0705.0080 +0705.0092 Statistical Mechanics +0705.0094 +0705.0095 Superconductivity +0705.0096 +0705.0099 +0705.0103 Materials Science +0705.0110 Mesoscale and Nanoscale Physics +0705.0121 Other Condensed Matter +0705.0127 +0705.0129 Mesoscale and Nanoscale Physics +0705.0137 Strongly Correlated Electrons +0705.0138 Statistical Mechanics +0705.0145 +0705.0146 +0705.0148 Statistical Mechanics +0705.0152 Statistical Mechanics +0705.0156 Strongly Correlated Electrons +0705.0158 General Physics +0705.0160 General Physics +0705.0161 General Finance +0705.0169 +0705.0176 Soft Condensed Matter +0705.0184 +0705.0185 +0705.0195 Materials Science +0705.0196 Other Condensed Matter +0705.0206 Mesoscale and Nanoscale Physics +0705.0208 Other Condensed Matter +0705.0217 +0705.0220 Disordered Systems and Neural Networks +0705.0224 Atomic Physics +0705.0230 Materials Science +0705.0237 Mesoscale and Nanoscale Physics +0705.0238 +0705.0243 +0705.0257 Strongly Correlated Electrons +0705.0261 Strongly Correlated Electrons +0705.0265 Theory +0705.0266 +0705.0271 Other Condensed Matter +0705.0273 +0705.0277 Mesoscale and Nanoscale Physics +0705.0278 +0705.0280 Numerical Analysis +0705.0284 +0705.0289 Mesoscale and Nanoscale Physics +0705.0292 +0705.0298 +0705.0299 Superconductivity +0705.0303 Theory +0705.0309 Materials Science +0705.0317 Statistical Mechanics +0705.0322 +0705.0324 Statistical Mechanics +0705.0330 +0705.0335 Materials Science +0705.0336 Strongly Correlated Electrons +0705.0347 Superconductivity +0705.0352 +0705.0353 Physics and Society +0705.0355 +0705.0357 +0705.0361 Optics +0705.0364 Pattern Formation and Solitons +0705.0366 Mesoscale and Nanoscale Physics +0705.0370 +0705.0371 Statistical Mechanics +0705.0375 +0705.0378 +0705.0385 +0705.0386 +0705.0387 +0705.0388 Mesoscale and Nanoscale Physics +0705.0390 Materials Science +0705.0392 Soft Condensed Matter +0705.0393 Disordered Systems and Neural Networks +0705.0407 Materials Science +0705.0417 Mesoscale and Nanoscale Physics +0705.0431 Phenomenology +0705.0433 +0705.0439 +0705.0447 +0705.0471 +0705.0474 Materials Science +0705.0479 +0705.0480 Fluid Dynamics +0705.0485 Statistical Mechanics +0705.0495 Plasma Physics +0705.0501 Statistical Mechanics +0705.0511 Instrumentation and Detectors +0705.0515 +0705.0523 Strongly Correlated Electrons +0705.0530 +0705.0537 +0705.0541 +0705.0544 +0705.0555 Superconductivity +0705.0559 +0705.0560 Other Condensed Matter +0705.0578 Superconductivity +0705.0581 Strongly Correlated Electrons +0705.0583 +0705.0594 Superconductivity +0705.0600 Statistical Mechanics +0705.0604 +0705.0607 +0705.0610 Strongly Correlated Electrons +0705.0621 Strongly Correlated Electrons +0705.0623 +0705.0634 +0705.0637 Soft Condensed Matter +0705.0639 +0705.0641 Superconductivity +0705.0649 Other Condensed Matter +0705.0654 Strongly Correlated Electrons +0705.0663 Theory +0705.0665 Quantum Algebra +0705.0668 Strongly Correlated Electrons +0705.0671 Other Condensed Matter +0705.0675 Fluid Dynamics +0705.0682 +0705.0684 Soft Condensed Matter +0705.0687 Quantum Algebra +0705.0690 Soft Condensed Matter +0705.0699 +0705.0706 +0705.0711 +0705.0713 Atomic Physics +0705.0716 +0705.0719 Analysis of PDEs +0705.0721 Chemical Physics +0705.0726 +0705.0731 Materials Science +0705.0743 Phenomenology +0705.0745 Statistical Mechanics +0705.0749 Materials Science +0705.0755 Strongly Correlated Electrons +0705.0773 Other Condensed Matter +0705.0777 +0705.0801 Atomic Physics +0705.0804 Pattern Formation and Solitons +0705.0805 +0705.0807 +0705.0809 Other Condensed Matter +0705.0818 Superconductivity +0705.0831 +0705.0833 Mesoscale and Nanoscale Physics +0705.0838 Computational Physics +0705.0847 Materials Science +0705.0848 Adaptation and Self-Organizing Systems +0705.0859 Materials Science +0705.0862 +0705.0868 Soft Condensed Matter +0705.0869 Optics +0705.0875 Pattern Formation and Solitons +0705.0885 +0705.0894 +0705.0897 Mesoscale and Nanoscale Physics +0705.0914 +0705.0918 +0705.0919 +0705.0935 +0705.0937 Other Condensed Matter +0705.0940 +0705.0955 Strongly Correlated Electrons +0705.0957 Strongly Correlated Electrons +0705.0966 +0705.0981 +0705.0986 +0705.0990 Strongly Correlated Electrons +0705.1002 +0705.1004 Theory +0705.1007 +0705.1010 +0705.1011 +0705.1018 +0705.1029 Physics Education +0705.1043 Materials Science +0705.1046 +0705.1050 +0705.1052 Superconductivity +0705.1055 +0705.1061 +0705.1065 Materials Science +0705.1073 Dynamical Systems +0705.1077 +0705.1078 Soft Condensed Matter +0705.1093 +0705.1101 +0705.1104 Mesoscale and Nanoscale Physics +0705.1123 Mesoscale and Nanoscale Physics +0705.1125 +0705.1126 Chaotic Dynamics +0705.1127 Superconductivity +0705.1138 +0705.1140 Fluid Dynamics +0705.1141 +0705.1144 +0705.1146 Theory +0705.1153 +0705.1160 Theory +0705.1165 +0705.1169 Materials Science +0705.1170 +0705.1174 Superconductivity +0705.1191 Statistical Mechanics +0705.1198 Fluid Dynamics +0705.1204 Mesoscale and Nanoscale Physics +0705.1212 Strongly Correlated Electrons +0705.1221 Plasma Physics +0705.1222 Data Analysis, Statistics and Probability +0705.1226 Other Condensed Matter +0705.1229 Mesoscale and Nanoscale Physics +0705.1230 Soft Condensed Matter +0705.1231 +0705.1236 Physics Education +0705.1249 +0705.1250 Statistical Mechanics +0705.1258 Atomic Physics +0705.1261 Optics +0705.1267 +0705.1268 Probability +0705.1276 +0705.1305 Chaotic Dynamics +0705.1314 Strongly Correlated Electrons +0705.1319 +0705.1320 Statistical Mechanics +0705.1323 +0705.1327 Mesoscale and Nanoscale Physics +0705.1328 Mesoscale and Nanoscale Physics +0705.1338 Theory +0705.1349 Soft Condensed Matter +0705.1353 +0705.1354 Strongly Correlated Electrons +0705.1373 +0705.1376 +0705.1380 Mesoscale and Nanoscale Physics +0705.1382 Strongly Correlated Electrons +0705.1383 Strongly Correlated Electrons +0705.1389 Molecular Networks +0705.1392 Functional Analysis +0705.1393 +0705.1403 +0705.1405 Superconductivity +0705.1406 Statistical Mechanics +0705.1415 Soft Condensed Matter +0705.1416 Statistical Mechanics +0705.1418 Superconductivity +0705.1426 Optics +0705.1427 +0705.1438 Superconductivity +0705.1444 +0705.1466 Mesoscale and Nanoscale Physics +0705.1471 +0705.1472 Superconductivity +0705.1479 Atomic Physics +0705.1482 Statistical Mechanics +0705.1493 Mesoscale and Nanoscale Physics +0705.1494 +0705.1502 Other Condensed Matter +0705.1506 Mesoscale and Nanoscale Physics +0705.1508 +0705.1513 +0705.1515 Mesoscale and Nanoscale Physics +0705.1516 Mesoscale and Nanoscale Physics +0705.1517 Disordered Systems and Neural Networks +0705.1523 Populations and Evolution +0705.1530 Mesoscale and Nanoscale Physics +0705.1544 +0705.1551 +0705.1558 +0705.1563 +0705.1574 +0705.1579 Mesoscale and Nanoscale Physics +0705.1608 +0705.1611 Strongly Correlated Electrons +0705.1615 +0705.1616 +0705.1623 Materials Science +0705.1625 Materials Science +0705.1628 +0705.1635 Other Condensed Matter +0705.1637 +0705.1643 Strongly Correlated Electrons +0705.1644 Statistical Mechanics +0705.1650 +0705.1657 Theory +0705.1658 +0705.1661 Superconductivity +0705.1666 Soft Condensed Matter +0705.1668 Other Condensed Matter +0705.1676 +0705.1679 Physics and Society +0705.1692 Strongly Correlated Electrons +0705.1703 Materials Science +0705.1704 Optics +0705.1713 Phenomenology +0705.1730 +0705.1737 Materials Science +0705.1742 +0705.1746 +0705.1755 +0705.1762 Materials Science +0705.1763 Spectral Theory +0705.1768 Superconductivity +0705.1775 Soft Condensed Matter +0705.1780 +0705.1784 +0705.1790 Strongly Correlated Electrons +0705.1797 Physics and Society +0705.1800 +0705.1801 Strongly Correlated Electrons +0705.1804 Materials Science +0705.1813 +0705.1814 +0705.1823 +0705.1831 Biological Physics +0705.1832 +0705.1834 Statistical Mechanics +0705.1838 Physics and Society +0705.1844 Computational Physics +0705.1858 +0705.1868 Chemical Physics +0705.1869 +0705.1873 +0705.1880 +0705.1891 +0705.1897 +0705.1898 +0705.1901 +0705.1905 +0705.1907 Atomic Physics +0705.1913 Statistical Mechanics +0705.1921 +0705.1941 +0705.1945 Statistical Mechanics +0705.1946 Superconductivity +0705.1954 Number Theory +0705.1957 Pattern Formation and Solitons +0705.1958 Atomic Physics +0705.1962 Materials Science +0705.1965 +0705.1967 Statistical Mechanics +0705.1968 +0705.1972 +0705.1973 +0705.1984 +0705.1990 Strongly Correlated Electrons +0705.1994 +0705.1996 +0705.1998 +0705.2005 +0705.2021 +0705.2024 +0705.2028 Materials Science +0705.2031 +0705.2033 Mesoscale and Nanoscale Physics +0705.2037 +0705.2038 Strongly Correlated Electrons +0705.2045 +0705.2049 Biological Physics +0705.2050 Statistical Mechanics +0705.2052 Strongly Correlated Electrons +0705.2054 +0705.2057 Statistical Mechanics +0705.2061 +0705.2069 Superconductivity +0705.2072 +0705.2080 Statistical Mechanics +0705.2087 Mesoscale and Nanoscale Physics +0705.2094 +0705.2101 Theory +0705.2104 Disordered Systems and Neural Networks +0705.2111 Mesoscale and Nanoscale Physics +0705.2115 +0705.2120 +0705.2121 +0705.2123 +0705.2130 Classical Physics +0705.2132 +0705.2138 +0705.2142 Statistical Mechanics +0705.2143 Genomics +0705.2152 +0705.2161 Strongly Correlated Electrons +0705.2162 +0705.2174 Superconductivity +0705.2181 Materials Science +0705.2187 Mesoscale and Nanoscale Physics +0705.2188 Representation Theory +0705.2194 +0705.2201 Strongly Correlated Electrons +0705.2202 +0705.2213 +0705.2215 Soft Condensed Matter +0705.2218 Soft Condensed Matter +0705.2221 Statistical Mechanics +0705.2225 +0705.2227 +0705.2231 +0705.2237 Materials Science +0705.2244 +0705.2246 +0705.2260 Materials Science +0705.2261 Strongly Correlated Electrons +0705.2264 +0705.2266 +0705.2269 +0705.2280 Exactly Solvable and Integrable Systems +0705.2295 Materials Science +0705.2296 Materials Science +0705.2303 Strongly Correlated Electrons +0705.2304 +0705.2312 +0705.2316 +0705.2318 Learning +0705.2322 Mesoscale and Nanoscale Physics +0705.2323 Group Theory +0705.2324 Other Condensed Matter +0705.2330 +0705.2341 Mesoscale and Nanoscale Physics +0705.2348 Soft Condensed Matter +0705.2349 Strongly Correlated Electrons +0705.2358 Statistical Mechanics +0705.2359 +0705.2367 +0705.2370 +0705.2374 +0705.2376 Mesoscale and Nanoscale Physics +0705.2378 +0705.2381 +0705.2383 +0705.2384 Materials Science +0705.2385 Statistical Mechanics +0705.2389 +0705.2401 Atomic Physics +0705.2414 +0705.2418 Materials Science +0705.2419 Mesoscale and Nanoscale Physics +0705.2420 Mesoscale and Nanoscale Physics +0705.2421 +0705.2423 +0705.2426 Strongly Correlated Electrons +0705.2433 +0705.2434 Materials Science +0705.2448 +0705.2450 Data Analysis, Statistics and Probability +0705.2452 Fluid Dynamics +0705.2457 +0705.2458 Optics +0705.2463 Soft Condensed Matter +0705.2464 +0705.2468 +0705.2473 Strongly Correlated Electrons +0705.2487 +0705.2491 Neurons and Cognition +0705.2497 Physics and Society +0705.2499 Other Condensed Matter +0705.2505 +0705.2506 Superconductivity +0705.2507 +0705.2509 Superconductivity +0705.2518 Other Condensed Matter +0705.2525 Theory +0705.2530 +0705.2538 +0705.2541 +0705.2543 +0705.2550 Soft Condensed Matter +0705.2551 Statistical Finance +0705.2560 Physics and Society +0705.2565 Disordered Systems and Neural Networks +0705.2573 Mesoscale and Nanoscale Physics +0705.2583 +0705.2586 Mesoscale and Nanoscale Physics +0705.2590 +0705.2599 +0705.2608 Number Theory +0705.2612 Materials Science +0705.2619 +0705.2624 Mesoscale and Nanoscale Physics +0705.2627 +0705.2631 Soft Condensed Matter +0705.2638 Plasma Physics +0705.2640 Statistical Mechanics +0705.2641 +0705.2643 Theory +0705.2648 Statistical Mechanics +0705.2652 Optics +0705.2663 +0705.2665 +0705.2667 +0705.2670 Soft Condensed Matter +0705.2679 +0705.2684 Strongly Correlated Electrons +0705.2688 Statistical Mechanics +0705.2693 +0705.2694 +0705.2697 Superconductivity +0705.2702 Strongly Correlated Electrons +0705.2706 Biomolecules +0705.2712 +0705.2713 +0705.2714 Algebraic Geometry +0705.2717 +0705.2719 +0705.2721 Geophysics +0705.2724 Physics and Society +0705.2727 Mesoscale and Nanoscale Physics +0705.2728 Mesoscale and Nanoscale Physics +0705.2732 Other Condensed Matter +0705.2736 +0705.2738 Mesoscale and Nanoscale Physics +0705.2741 +0705.2745 +0705.2749 Statistical Mechanics +0705.2750 Other Condensed Matter +0705.2756 +0705.2758 Chaotic Dynamics +0705.2761 Pattern Formation and Solitons +0705.2764 +0705.2767 Strongly Correlated Electrons +0705.2783 Disordered Systems and Neural Networks +0705.2789 +0705.2792 +0705.2794 +0705.2798 +0705.2804 +0705.2805 Materials Science +0705.2806 +0705.2808 +0705.2809 +0705.2812 Materials Science +0705.2815 Mesoscale and Nanoscale Physics +0705.2818 Mesoscale and Nanoscale Physics +0705.2821 Strongly Correlated Electrons +0705.2832 +0705.2837 Mesoscale and Nanoscale Physics +0705.2841 Chaotic Dynamics +0705.2845 Mesoscale and Nanoscale Physics +0705.2847 Information Theory +0705.2857 Statistical Mechanics +0705.2864 +0705.2866 Materials Science +0705.2868 +0705.2870 Materials Science +0705.2897 Mesoscale and Nanoscale Physics +0705.2905 Statistical Mechanics +0705.2906 +0705.2907 Subcellular Processes +0705.2912 Strongly Correlated Electrons +0705.2931 +0705.2934 Mesoscale and Nanoscale Physics +0705.2935 +0705.2942 Statistical Mechanics +0705.2944 Superconductivity +0705.2947 +0705.2951 +0705.2953 Strongly Correlated Electrons +0705.2958 +0705.2962 +0705.2965 +0705.2967 Other Condensed Matter +0705.2969 +0705.2973 Atomic Physics +0705.2974 Phenomenology +0705.2977 Other Condensed Matter +0705.2985 +0705.2986 Disordered Systems and Neural Networks +0705.2988 Soft Condensed Matter +0705.2997 Mesoscale and Nanoscale Physics +0705.3008 Optics +0705.3011 +0705.3016 +0705.3018 +0705.3019 Strongly Correlated Electrons +0705.3020 Soft Condensed Matter +0705.3029 Soft Condensed Matter +0705.3033 +0705.3034 Strongly Correlated Electrons +0705.3036 Atomic Physics +0705.3040 Materials Science +0705.3046 +0705.3056 Plasma Physics +0705.3059 +0705.3083 +0705.3088 Materials Science +0705.3102 Instrumentation and Detectors +0705.3111 +0705.3116 +0705.3135 Soft Condensed Matter +0705.3140 Other Condensed Matter +0705.3143 Other Condensed Matter +0705.3144 Computational Physics +0705.3147 Mesoscale and Nanoscale Physics +0705.3155 +0705.3166 Mesoscale and Nanoscale Physics +0705.3168 Mesoscale and Nanoscale Physics +0705.3169 +0705.3174 Mesoscale and Nanoscale Physics +0705.3175 Disordered Systems and Neural Networks +0705.3177 +0705.3180 Pattern Formation and Solitons +0705.3183 Classical Physics +0705.3189 Mesoscale and Nanoscale Physics +0705.3195 Populations and Evolution +0705.3209 +0705.3211 Optics +0705.3213 Materials Science +0705.3214 Disordered Systems and Neural Networks +0705.3216 Adaptation and Self-Organizing Systems +0705.3218 Chemical Physics +0705.3219 +0705.3226 Statistical Mechanics +0705.3234 Atomic Physics +0705.3235 +0705.3236 Exactly Solvable and Integrable Systems +0705.3239 Mesoscale and Nanoscale Physics +0705.3246 +0705.3254 +0705.3259 +0705.3276 +0705.3280 Operator Algebras +0705.3288 +0705.3293 +0705.3294 Dynamical Systems +0705.3298 Statistical Mechanics +0705.3302 Atomic Physics +0705.3304 +0705.3309 Superconductivity +0705.3313 +0705.3315 Atomic Physics +0705.3317 Soft Condensed Matter +0705.3325 +0705.3326 Soft Condensed Matter +0705.3327 Materials Science +0705.3329 Soft Condensed Matter +0705.3331 Soft Condensed Matter +0705.3341 Mesoscale and Nanoscale Physics +0705.3348 Statistical Mechanics +0705.3350 +0705.3351 Superconductivity +0705.3352 Classical Physics +0705.3354 Materials Science +0705.3361 Superconductivity +0705.3379 Optics +0705.3381 +0705.3384 Optics +0705.3414 +0705.3416 Atomic Physics +0705.3427 Chaotic Dynamics +0705.3434 Materials Science +0705.3436 +0705.3441 +0705.3449 Materials Science +0705.3455 +0705.3456 +0705.3459 +0705.3461 Optics +0705.3463 Statistical Mechanics +0705.3471 Pattern Formation and Solitons +0705.3480 +0705.3490 +0705.3492 +0705.3495 Optics +0705.3498 Fluid Dynamics +0705.3499 Strongly Correlated Electrons +0705.3500 Theory +0705.3504 Materials Science +0705.3519 +0705.3525 Soft Condensed Matter +0705.3534 +0705.3535 Mesoscale and Nanoscale Physics +0705.3547 Mesoscale and Nanoscale Physics +0705.3552 Soft Condensed Matter +0705.3558 +0705.3562 +0705.3566 +0705.3572 Classical Analysis and ODEs +0705.3577 Superconductivity +0705.3581 +0705.3584 +0705.3601 +0705.3618 Strongly Correlated Electrons +0705.3621 +0705.3622 +0705.3627 Strongly Correlated Electrons +0705.3634 +0705.3638 +0705.3639 +0705.3645 Soft Condensed Matter +0705.3647 +0705.3661 +0705.3662 +0705.3663 Soft Condensed Matter +0705.3670 Optics +0705.3676 Exactly Solvable and Integrable Systems +0705.3678 +0705.3684 +0705.3688 +0705.3700 +0705.3705 Strongly Correlated Electrons +0705.3713 +0705.3723 +0705.3726 Soft Condensed Matter +0705.3732 Disordered Systems and Neural Networks +0705.3742 Statistical Mechanics +0705.3750 Materials Science +0705.3754 Atomic and Molecular Clusters +0705.3759 Neurons and Cognition +0705.3761 Mesoscale and Nanoscale Physics +0705.3762 +0705.3776 +0705.3777 +0705.3778 +0705.3793 Atomic Physics +0705.3797 +0705.3799 +0705.3800 +0705.3801 +0705.3805 Mesoscale and Nanoscale Physics +0705.3807 Strongly Correlated Electrons +0705.3813 +0705.3818 Strongly Correlated Electrons +0705.3824 Strongly Correlated Electrons +0705.3840 Soft Condensed Matter +0705.3853 +0705.3855 +0705.3858 Other Condensed Matter +0705.3863 Statistical Mechanics +0705.3867 Strongly Correlated Electrons +0705.3872 Materials Science +0705.3875 +0705.3876 +0705.3889 +0705.3890 Materials Science +0705.3922 +0705.3926 Statistical Mechanics +0705.3952 +0705.3962 Mesoscale and Nanoscale Physics +0705.3982 +0705.3988 Superconductivity +0705.3990 Information Theory +0705.3996 Physics Education +0705.4006 Theory +0705.4013 +0705.4017 +0705.4018 +0705.4025 Trading and Market Microstructure +0705.4030 +0705.4036 +0705.4037 +0705.4040 Atomic Physics +0705.4042 Statistical Mechanics +0705.4053 +0705.4079 Populations and Evolution +0705.4083 Mesoscale and Nanoscale Physics +0705.4086 +0705.4087 Strongly Correlated Electrons +0705.4089 +0705.4090 +0705.4095 +0705.4100 +0705.4103 +0705.4105 Mesoscale and Nanoscale Physics +0705.4108 +0705.4109 +0705.4112 Statistical Finance +0705.4113 +0705.4119 +0705.4149 Phenomenology +0705.4151 Probability +0705.4152 +0705.4154 Strongly Correlated Electrons +0705.4163 +0705.4164 Other Condensed Matter +0705.4165 +0705.4168 Soft Condensed Matter +0705.4172 +0705.4173 Strongly Correlated Electrons +0705.4176 Mesoscale and Nanoscale Physics +0705.4177 +0705.4186 Classical Analysis and ODEs +0705.4187 Materials Science +0705.4192 +0705.4195 +0705.4196 +0705.4210 Fluid Dynamics +0705.4217 Superconductivity +0705.4218 +0705.4223 +0705.4225 +0705.4231 Other Condensed Matter +0705.4233 Strongly Correlated Electrons +0705.4237 Analysis of PDEs +0705.4239 Analysis of PDEs +0705.4243 Strongly Correlated Electrons +0705.4248 Statistical Mechanics +0705.4260 Materials Science +0705.4282 +0705.4284 +0705.4287 +0705.4288 +0705.4290 +0705.4291 +0705.4296 Mesoscale and Nanoscale Physics +0705.4301 Materials Science +0705.4310 Strongly Correlated Electrons +0705.4318 Atomic Physics +0705.4319 +0705.4323 Strongly Correlated Electrons +0705.4329 Data Analysis, Statistics and Probability +0705.4344 Materials Science +0705.4349 +0705.4366 Statistical Mechanics +0705.4375 Superconductivity +0705.4377 Other Condensed Matter +0705.4385 +0705.4386 Superconductivity +0705.4391 Strongly Correlated Electrons +0705.4395 Soft Condensed Matter +0705.4400 Chaotic Dynamics +0705.4403 +0705.4404 +0705.4405 Statistical Mechanics +0705.4410 +0705.4413 Mesoscale and Nanoscale Physics +0705.4416 Biological Physics +0705.4417 Disordered Systems and Neural Networks +0705.4422 +0705.4427 Populations and Evolution +0705.4430 +0705.4435 Strongly Correlated Electrons +0705.4438 Disordered Systems and Neural Networks +0705.4445 Physics and Society +0705.4447 Mesoscale and Nanoscale Physics +0705.4450 Optics +0705.4456 +0705.4466 Statistical Mechanics +0705.4467 +0705.4473 Statistical Mechanics +0705.4474 Statistical Mechanics +0705.4479 Strongly Correlated Electrons +0705.4494 +0705.4501 Strongly Correlated Electrons +0705.4503 Disordered Systems and Neural Networks +0705.4513 Other Condensed Matter +0705.4523 +0705.4540 Algebraic Geometry +0705.4541 +0705.4543 +0705.4555 Materials Science +0705.4579 Statistical Mechanics +0705.4582 Optics +0705.4587 +0705.4595 +0705.4597 +0705.4612 +0705.4623 +0705.4631 +0705.4632 +0705.4633 +0705.4635 Molecular Networks +0705.4641 +0705.4643 +0705.4646 Biological Physics +0705.4650 +0705.4651 +0705.4664 +0705.4675 Materials Science +0705.4680 +0706.0002 Strongly Correlated Electrons +0706.0003 +0706.0005 +0706.0006 +0706.0016 Strongly Correlated Electrons +0706.0024 Physics and Society +0706.0026 Strongly Correlated Electrons +0706.0030 Fluid Dynamics +0706.0032 Other Condensed Matter +0706.0043 Statistical Mechanics +0706.0044 Statistical Mechanics +0706.0047 Mesoscale and Nanoscale Physics +0706.0050 Strongly Correlated Electrons +0706.0054 +0706.0056 Materials Science +0706.0064 +0706.0065 Statistical Mechanics +0706.0067 Soft Condensed Matter +0706.0069 Chaotic Dynamics +0706.0081 +0706.0093 +0706.0095 +0706.0097 +0706.0098 +0706.0104 Atomic Physics +0706.0105 Strongly Correlated Electrons +0706.0107 Mesoscale and Nanoscale Physics +0706.0112 Strongly Correlated Electrons +0706.0116 Differential Geometry +0706.0124 +0706.0125 Mesoscale and Nanoscale Physics +0706.0126 +0706.0133 Functional Analysis +0706.0134 +0706.0147 +0706.0159 Mesoscale and Nanoscale Physics +0706.0160 Geometric Topology +0706.0164 Pattern Formation and Solitons +0706.0170 Disordered Systems and Neural Networks +0706.0176 Strongly Correlated Electrons +0706.0178 Phenomenology +0706.0185 Biomolecules +0706.0191 +0706.0197 +0706.0208 +0706.0209 +0706.0211 +0706.0215 +0706.0224 +0706.0228 +0706.0238 +0706.0241 Superconductivity +0706.0244 Strongly Correlated Electrons +0706.0247 Other Condensed Matter +0706.0251 Theory +0706.0259 Disordered Systems and Neural Networks +0706.0261 +0706.0262 +0706.0265 Strongly Correlated Electrons +0706.0266 Mesoscale and Nanoscale Physics +0706.0269 Superconductivity +0706.0270 +0706.0310 +0706.0311 Phenomenology +0706.0321 Superconductivity +0706.0326 +0706.0331 Strongly Correlated Electrons +0706.0334 Theory +0706.0336 +0706.0342 +0706.0344 +0706.0359 Classical Analysis and ODEs +0706.0361 +0706.0367 +0706.0371 Mesoscale and Nanoscale Physics +0706.0373 Mesoscale and Nanoscale Physics +0706.0376 Strongly Correlated Electrons +0706.0381 Disordered Systems and Neural Networks +0706.0388 Soft Condensed Matter +0706.0392 +0706.0393 Soft Condensed Matter +0706.0395 Soft Condensed Matter +0706.0396 Soft Condensed Matter +0706.0401 Exactly Solvable and Integrable Systems +0706.0402 Materials Science +0706.0404 Materials Science +0706.0405 Soft Condensed Matter +0706.0406 Populations and Evolution +0706.0420 Superconductivity +0706.0422 Chaotic Dynamics +0706.0425 +0706.0434 +0706.0436 Statistical Mechanics +0706.0439 Superconductivity +0706.0450 Statistical Mechanics +0706.0477 Other Condensed Matter +0706.0481 +0706.0483 +0706.0510 Chaotic Dynamics +0706.0515 +0706.0518 +0706.0521 +0706.0525 Classical Physics +0706.0527 +0706.0528 +0706.0532 Theory +0706.0540 General Physics +0706.0556 +0706.0562 Statistical Mechanics +0706.0571 Statistical Mechanics +0706.0577 Superconductivity +0706.0582 Strongly Correlated Electrons +0706.0584 Other Condensed Matter +0706.0588 Mesoscale and Nanoscale Physics +0706.0592 Exactly Solvable and Integrable Systems +0706.0598 Numerical Analysis +0706.0602 Strongly Correlated Electrons +0706.0605 Strongly Correlated Electrons +0706.0617 Plasma Physics +0706.0625 Materials Science +0706.0628 Disordered Systems and Neural Networks +0706.0642 Theory +0706.0645 +0706.0657 +0706.0659 Soft Condensed Matter +0706.0660 Atmospheric and Oceanic Physics +0706.0661 +0706.0669 +0706.0672 +0706.0689 Strongly Correlated Electrons +0706.0696 +0706.0697 +0706.0705 +0706.0719 Optics +0706.0732 +0706.0733 Statistical Mechanics +0706.0735 Mesoscale and Nanoscale Physics +0706.0736 Mesoscale and Nanoscale Physics +0706.0737 Materials Science +0706.0749 Materials Science +0706.0752 +0706.0754 +0706.0759 Other Condensed Matter +0706.0761 Strongly Correlated Electrons +0706.0765 Superconductivity +0706.0766 Strongly Correlated Electrons +0706.0791 +0706.0793 Soft Condensed Matter +0706.0794 Other Condensed Matter +0706.0795 +0706.0803 +0706.0806 +0706.0810 +0706.0811 +0706.0812 Disordered Systems and Neural Networks +0706.0816 Fluid Dynamics +0706.0823 Strongly Correlated Electrons +0706.0828 +0706.0830 +0706.0832 +0706.0837 Classical Physics +0706.0839 Other Condensed Matter +0706.0840 Materials Science +0706.0853 +0706.0856 +0706.0866 Materials Science +0706.0867 +0706.0872 +0706.0874 +0706.0875 +0706.0877 +0706.0884 Theory +0706.0887 +0706.0893 +0706.0894 +0706.0895 +0706.0896 +0706.0898 +0706.0900 +0706.0901 +0706.0906 Other Condensed Matter +0706.0911 Mesoscale and Nanoscale Physics +0706.0912 +0706.0916 Materials Science +0706.0922 Space Physics +0706.0927 +0706.0933 Strongly Correlated Electrons +0706.0934 Other Condensed Matter +0706.0945 +0706.0947 Mesoscale and Nanoscale Physics +0706.0950 +0706.0951 +0706.0959 Other Condensed Matter +0706.0960 Exactly Solvable and Integrable Systems +0706.0965 +0706.0968 Mesoscale and Nanoscale Physics +0706.0987 +0706.0996 +0706.1000 Statistical Mechanics +0706.1008 Exactly Solvable and Integrable Systems +0706.1012 Materials Science +0706.1018 Materials Science +0706.1038 +0706.1040 +0706.1050 +0706.1052 +0706.1053 +0706.1054 +0706.1056 +0706.1069 Strongly Correlated Electrons +0706.1073 +0706.1074 +0706.1076 +0706.1078 Soft Condensed Matter +0706.1090 +0706.1094 +0706.1107 Mesoscale and Nanoscale Physics +0706.1108 General Physics +0706.1116 Other Condensed Matter +0706.1117 Superconductivity +0706.1122 +0706.1128 Other Condensed Matter +0706.1129 +0706.1135 +0706.1139 +0706.1140 +0706.1144 Statistical Mechanics +0706.1145 +0706.1149 +0706.1155 +0706.1156 Strongly Correlated Electrons +0706.1165 Fluid Dynamics +0706.1168 +0706.1170 Atomic Physics +0706.1176 Statistical Mechanics +0706.1181 Other Condensed Matter +0706.1195 Mesoscale and Nanoscale Physics +0706.1202 +0706.1208 Materials Science +0706.1211 Pattern Formation and Solitons +0706.1221 +0706.1225 +0706.1228 +0706.1235 +0706.1236 Plasma Physics +0706.1237 Materials Science +0706.1243 +0706.1245 Strongly Correlated Electrons +0706.1246 +0706.1252 Materials Science +0706.1255 Other Condensed Matter +0706.1261 Statistical Mechanics +0706.1265 +0706.1268 Mesoscale and Nanoscale Physics +0706.1270 +0706.1272 +0706.1274 +0706.1275 +0706.1283 +0706.1285 +0706.1288 Mesoscale and Nanoscale Physics +0706.1291 Analysis of PDEs +0706.1292 +0706.1295 Physics Education +0706.1297 Other Condensed Matter +0706.1302 +0706.1307 Statistical Mechanics +0706.1308 Strongly Correlated Electrons +0706.1309 Superconductivity +0706.1316 Materials Science +0706.1321 +0706.1323 +0706.1329 Soft Condensed Matter +0706.1346 +0706.1350 +0706.1354 Soft Condensed Matter +0706.1362 Mesoscale and Nanoscale Physics +0706.1367 Mesoscale and Nanoscale Physics +0706.1370 Strongly Correlated Electrons +0706.1371 Computational Physics +0706.1372 +0706.1376 Superconductivity +0706.1384 Strongly Correlated Electrons +0706.1386 Soft Condensed Matter +0706.1389 Soft Condensed Matter +0706.1403 Mesoscale and Nanoscale Physics +0706.1412 +0706.1414 Materials Science +0706.1416 +0706.1433 +0706.1437 Optics +0706.1449 +0706.1451 Materials Science +0706.1453 Strongly Correlated Electrons +0706.1460 Statistical Finance +0706.1461 Optics +0706.1464 +0706.1468 Strongly Correlated Electrons +0706.1470 +0706.1471 Symplectic Geometry +0706.1475 Differential Geometry +0706.1476 Superconductivity +0706.1486 Atomic Physics +0706.1487 Mesoscale and Nanoscale Physics +0706.1500 +0706.1507 Optics +0706.1508 +0706.1510 +0706.1541 Statistical Mechanics +0706.1545 +0706.1548 +0706.1549 +0706.1552 +0706.1554 Materials Science +0706.1556 Other Condensed Matter +0706.1564 +0706.1583 +0706.1586 +0706.1596 +0706.1608 Atomic Physics +0706.1610 Materials Science +0706.1611 Neurons and Cognition +0706.1613 +0706.1615 Pattern Formation and Solitons +0706.1618 Theory +0706.1620 Strongly Correlated Electrons +0706.1622 Statistical Mechanics +0706.1623 +0706.1627 +0706.1633 Soft Condensed Matter +0706.1639 +0706.1646 +0706.1648 Superconductivity +0706.1651 Quantum Algebra +0706.1656 +0706.1659 +0706.1664 +0706.1672 Chaotic Dynamics +0706.1676 +0706.1678 Statistical Mechanics +0706.1681 Materials Science +0706.1682 +0706.1697 Statistical Mechanics +0706.1705 Atomic Physics +0706.1718 +0706.1724 +0706.1731 +0706.1735 +0706.1739 +0706.1744 Analysis of PDEs +0706.1758 Data Analysis, Statistics and Probability +0706.1759 Pattern Formation and Solitons +0706.1764 Materials Science +0706.1786 +0706.1788 +0706.1797 Other Condensed Matter +0706.1803 Materials Science +0706.1816 Atomic Physics +0706.1819 +0706.1821 Atomic Physics +0706.1826 Statistical Mechanics +0706.1831 Optics +0706.1832 Other Condensed Matter +0706.1834 +0706.1840 Mesoscale and Nanoscale Physics +0706.1852 Subcellular Processes +0706.1855 +0706.1869 +0706.1870 Mesoscale and Nanoscale Physics +0706.1872 +0706.1873 +0706.1881 Other Condensed Matter +0706.1885 +0706.1889 +0706.1895 Soft Condensed Matter +0706.1897 Strongly Correlated Electrons +0706.1900 +0706.1905 Biomolecules +0706.1911 Optics +0706.1913 +0706.1919 Materials Science +0706.1924 +0706.1925 Plasma Physics +0706.1933 Optics +0706.1944 +0706.1945 +0706.1947 Optics +0706.1950 Strongly Correlated Electrons +0706.1951 +0706.1955 Strongly Correlated Electrons +0706.1967 +0706.1970 +0706.1972 Other Condensed Matter +0706.1976 +0706.1986 Materials Science +0706.2001 Soft Condensed Matter +0706.2009 +0706.2016 +0706.2019 +0706.2022 +0706.2023 Plasma Physics +0706.2027 Soft Condensed Matter +0706.2038 Statistical Mechanics +0706.2039 +0706.2048 Disordered Systems and Neural Networks +0706.2052 Disordered Systems and Neural Networks +0706.2078 Mesoscale and Nanoscale Physics +0706.2079 Strongly Correlated Electrons +0706.2084 Mesoscale and Nanoscale Physics +0706.2087 +0706.2088 Pattern Formation and Solitons +0706.2102 +0706.2105 +0706.2111 +0706.2120 +0706.2122 Disordered Systems and Neural Networks +0706.2125 Other Condensed Matter +0706.2128 +0706.2133 Other Condensed Matter +0706.2138 Materials Science +0706.2139 +0706.2141 +0706.2143 +0706.2150 +0706.2161 Other Condensed Matter +0706.2162 Soft Condensed Matter +0706.2164 +0706.2170 +0706.2174 +0706.2177 Superconductivity +0706.2178 Statistical Mechanics +0706.2180 Superconductivity +0706.2189 +0706.2190 Other Condensed Matter +0706.2193 +0706.2197 +0706.2198 Soft Condensed Matter +0706.2201 Statistical Mechanics +0706.2202 +0706.2206 +0706.2208 +0706.2210 +0706.2212 Fluid Dynamics +0706.2214 Soft Condensed Matter +0706.2217 Strongly Correlated Electrons +0706.2220 Strongly Correlated Electrons +0706.2226 +0706.2227 +0706.2230 Physics and Society +0706.2233 Optics +0706.2238 Pattern Formation and Solitons +0706.2240 Mesoscale and Nanoscale Physics +0706.2241 Mesoscale and Nanoscale Physics +0706.2246 Superconductivity +0706.2249 +0706.2254 Other Condensed Matter +0706.2255 +0706.2256 +0706.2275 +0706.2277 Atomic Physics +0706.2279 Optics +0706.2285 Genomics +0706.2288 +0706.2295 +0706.2301 +0706.2305 Materials Science +0706.2311 Soft Condensed Matter +0706.2322 +0706.2323 +0706.2325 +0706.2326 +0706.2333 Statistical Mechanics +0706.2337 +0706.2338 +0706.2343 Classical Analysis and ODEs +0706.2344 +0706.2346 +0706.2348 Classical Analysis and ODEs +0706.2351 +0706.2352 Other Condensed Matter +0706.2353 Subcellular Processes +0706.2361 +0706.2362 Strongly Correlated Electrons +0706.2364 +0706.2365 Disordered Systems and Neural Networks +0706.2370 Dynamical Systems +0706.2372 Algebraic Geometry +0706.2374 +0706.2376 +0706.2382 +0706.2383 Subcellular Processes +0706.2386 +0706.2387 Strongly Correlated Electrons +0706.2413 Chaotic Dynamics +0706.2415 Chaotic Dynamics +0706.2417 Other Condensed Matter +0706.2427 Optics +0706.2436 Optics +0706.2442 Strongly Correlated Electrons +0706.2450 +0706.2454 Mesoscale and Nanoscale Physics +0706.2459 +0706.2461 Optics +0706.2464 Exactly Solvable and Integrable Systems +0706.2466 +0706.2467 Mesoscale and Nanoscale Physics +0706.2473 +0706.2476 +0706.2482 Mesoscale and Nanoscale Physics +0706.2487 Materials Science +0706.2492 +0706.2495 +0706.2496 +0706.2505 Other Condensed Matter +0706.2507 +0706.2515 Chaotic Dynamics +0706.2519 +0706.2527 +0706.2528 Materials Science +0706.2536 +0706.2547 +0706.2551 +0706.2555 +0706.2558 +0706.2566 +0706.2567 +0706.2568 Strongly Correlated Electrons +0706.2571 +0706.2573 +0706.2574 +0706.2583 Other Condensed Matter +0706.2590 +0706.2591 Mesoscale and Nanoscale Physics +0706.2593 +0706.2599 +0706.2607 +0706.2610 Materials Science +0706.2614 +0706.2615 +0706.2618 Strongly Correlated Electrons +0706.2622 +0706.2624 +0706.2627 +0706.2629 +0706.2637 Strongly Correlated Electrons +0706.2656 +0706.2657 Strongly Correlated Electrons +0706.2662 Materials Science +0706.2672 Atomic Physics +0706.2674 Strongly Correlated Electrons +0706.2681 Statistical Mechanics +0706.2683 +0706.2688 Materials Science +0706.2689 Atomic Physics +0706.2692 +0706.2704 +0706.2709 Phenomenology +0706.2712 +0706.2724 +0706.2729 Mesoscale and Nanoscale Physics +0706.2739 +0706.2744 Other Condensed Matter +0706.2745 +0706.2763 Strongly Correlated Electrons +0706.2768 +0706.2775 +0706.2780 +0706.2783 +0706.2784 +0706.2791 +0706.2799 +0706.2811 Other Condensed Matter +0706.2820 Soft Condensed Matter +0706.2823 +0706.2837 +0706.2849 Atomic Physics +0706.2852 Differential Geometry +0706.2853 +0706.2865 +0706.2869 Other Condensed Matter +0706.2877 +0706.2879 +0706.2884 Superconductivity +0706.2886 +0706.2889 +0706.2896 +0706.2903 +0706.2924 Materials Science +0706.2927 Mesoscale and Nanoscale Physics +0706.2928 Chaotic Dynamics +0706.2931 +0706.2932 +0706.2941 +0706.2943 Strongly Correlated Electrons +0706.2946 +0706.2948 +0706.2951 Materials Science +0706.2957 +0706.2959 +0706.2961 Materials Science +0706.2962 +0706.2968 Mesoscale and Nanoscale Physics +0706.2971 +0706.2973 Statistical Mechanics +0706.2976 +0706.2980 Biological Physics +0706.2992 +0706.2994 +0706.2998 Materials Science +0706.3000 +0706.3001 +0706.3013 Optics +0706.3014 +0706.3015 Materials Science +0706.3020 Soft Condensed Matter +0706.3030 +0706.3032 +0706.3033 Strongly Correlated Electrons +0706.3035 +0706.3040 Optics +0706.3042 Fluid Dynamics +0706.3043 +0706.3045 +0706.3046 +0706.3048 +0706.3051 +0706.3061 Chemical Physics +0706.3062 +0706.3063 Fluid Dynamics +0706.3066 Soft Condensed Matter +0706.3068 +0706.3072 +0706.3078 Theory +0706.3084 +0706.3088 Strongly Correlated Electrons +0706.3089 +0706.3090 Quantitative Methods +0706.3097 +0706.3099 Soft Condensed Matter +0706.3109 Strongly Correlated Electrons +0706.3110 +0706.3117 +0706.3122 Statistical Finance +0706.3123 +0706.3124 +0706.3126 +0706.3128 +0706.3136 Statistical Mechanics +0706.3142 +0706.3143 Superconductivity +0706.3156 Disordered Systems and Neural Networks +0706.3161 Statistical Mechanics +0706.3173 +0706.3174 +0706.3180 +0706.3187 +0706.3194 +0706.3200 +0706.3204 +0706.3213 +0706.3214 Theory +0706.3216 +0706.3222 +0706.3240 Other Condensed Matter +0706.3244 Theory +0706.3257 +0706.3260 +0706.3261 Statistical Mechanics +0706.3268 Strongly Correlated Electrons +0706.3269 +0706.3270 Superconductivity +0706.3272 +0706.3274 +0706.3275 Materials Science +0706.3277 +0706.3281 +0706.3289 Mesoscale and Nanoscale Physics +0706.3302 +0706.3308 +0706.3311 +0706.3314 +0706.3317 Statistical Mechanics +0706.3320 Statistical Mechanics +0706.3322 Statistical Mechanics +0706.3325 Chaotic Dynamics +0706.3332 +0706.3337 +0706.3339 +0706.3340 Superconductivity +0706.3344 +0706.3345 Strongly Correlated Electrons +0706.3346 +0706.3349 +0706.3353 Strongly Correlated Electrons +0706.3360 Other Condensed Matter +0706.3365 +0706.3367 +0706.3368 +0706.3372 Statistical Mechanics +0706.3374 +0706.3376 Other Condensed Matter +0706.3378 Other Condensed Matter +0706.3380 Strongly Correlated Electrons +0706.3397 +0706.3401 +0706.3402 Materials Science +0706.3403 Computational Physics +0706.3404 +0706.3406 Mesoscale and Nanoscale Physics +0706.3407 +0706.3414 Soft Condensed Matter +0706.3415 Analysis of PDEs +0706.3416 +0706.3421 +0706.3424 +0706.3426 +0706.3429 +0706.3432 Soft Condensed Matter +0706.3437 Mesoscale and Nanoscale Physics +0706.3448 +0706.3449 Materials Science +0706.3455 +0706.3456 Strongly Correlated Electrons +0706.3457 +0706.3460 +0706.3469 +0706.3470 +0706.3476 Representation Theory +0706.3481 +0706.3491 Statistical Mechanics +0706.3501 +0706.3504 Classical Physics +0706.3507 +0706.3512 Differential Geometry +0706.3513 Soft Condensed Matter +0706.3519 +0706.3522 Classical Physics +0706.3524 +0706.3529 Mesoscale and Nanoscale Physics +0706.3533 Fluid Dynamics +0706.3536 +0706.3544 +0706.3548 +0706.3557 Other Condensed Matter +0706.3559 Strongly Correlated Electrons +0706.3572 Plasma Physics +0706.3574 +0706.3577 Optics +0706.3579 Atomic Physics +0706.3583 +0706.3591 Superconductivity +0706.3593 +0706.3596 Statistical Mechanics +0706.3597 +0706.3603 Biological Physics +0706.3607 Statistical Mechanics +0706.3609 Superconductivity +0706.3610 Statistical Mechanics +0706.3613 Materials Science +0706.3614 Atomic Physics +0706.3616 +0706.3624 +0706.3629 Statistical Mechanics +0706.3631 +0706.3632 +0706.3633 +0706.3640 +0706.3641 Statistical Mechanics +0706.3649 Optics +0706.3651 +0706.3655 Fluid Dynamics +0706.3664 Statistical Mechanics +0706.3665 +0706.3668 +0706.3673 Other Condensed Matter +0706.3675 Materials Science +0706.3678 Biological Physics +0706.3683 +0706.3687 Chaotic Dynamics +0706.3689 Optics +0706.3703 +0706.3706 +0706.3713 Soft Condensed Matter +0706.3714 Probability +0706.3719 Mesoscale and Nanoscale Physics +0706.3721 +0706.3726 Mesoscale and Nanoscale Physics +0706.3727 Superconductivity +0706.3743 Soft Condensed Matter +0706.3756 +0706.3763 +0706.3764 Strongly Correlated Electrons +0706.3767 +0706.3768 Physics and Society +0706.3774 Statistical Mechanics +0706.3776 Disordered Systems and Neural Networks +0706.3777 +0706.3780 +0706.3783 Mesoscale and Nanoscale Physics +0706.3795 Mesoscale and Nanoscale Physics +0706.3798 +0706.3799 Statistical Mechanics +0706.3803 Superconductivity +0706.3813 +0706.3814 +0706.3819 Statistical Mechanics +0706.3824 +0706.3831 +0706.3839 +0706.3840 Other Condensed Matter +0706.3844 +0706.3849 Strongly Correlated Electrons +0706.3855 +0706.3857 +0706.3878 Biomolecules +0706.3881 +0706.3882 Statistical Mechanics +0706.3883 Biological Physics +0706.3888 +0706.3892 Statistical Mechanics +0706.3894 +0706.3895 +0706.3900 +0706.3901 +0706.3908 +0706.3914 Statistical Mechanics +0706.3927 +0706.3935 +0706.3941 +0706.3945 Optics +0706.3946 Other Condensed Matter +0706.3948 Strongly Correlated Electrons +0706.3949 +0706.3956 Statistical Mechanics +0706.3961 +0706.3962 +0706.3963 +0706.3966 +0706.3972 +0706.3974 Biological Physics +0706.3975 Physics and Society +0706.3983 Physics and Society +0706.3995 Other Condensed Matter +0706.4005 Atomic Physics +0706.4011 Fluid Dynamics +0706.4013 +0706.4014 +0706.4016 +0706.4022 +0706.4029 Statistical Mechanics +0706.4036 +0706.4040 Superconductivity +0706.4046 +0706.4056 Atomic Physics +0706.4058 Physics and Society +0706.4078 +0706.4089 +0706.4090 Statistical Mechanics +0706.4091 +0706.4092 Other Condensed Matter +0706.4093 +0706.4094 Strongly Correlated Electrons +0706.4096 +0706.4098 Superconductivity +0706.4108 Methodology +0706.4109 Materials Science +0706.4111 Mesoscale and Nanoscale Physics +0706.4115 +0706.4118 Analysis of PDEs +0706.4120 Materials Science +0706.4122 +0706.4124 +0706.4133 +0706.4135 Strongly Correlated Electrons +0706.4140 +0706.4145 Strongly Correlated Electrons +0706.4149 +0706.4150 Superconductivity +0706.4155 Mesoscale and Nanoscale Physics +0706.4172 Materials Science +0706.4192 Soft Condensed Matter +0706.4199 +0706.4207 +0706.4208 Superconductivity +0706.4211 +0706.4213 Other Condensed Matter +0706.4221 Plasma Physics +0706.4241 +0706.4249 Biological Physics +0706.4251 Strongly Correlated Electrons +0706.4253 Mesoscale and Nanoscale Physics +0706.4254 +0706.4256 Strongly Correlated Electrons +0706.4258 Strongly Correlated Electrons +0706.4264 Other Condensed Matter +0706.4270 Materials Science +0706.4276 Strongly Correlated Electrons +0706.4282 Superconductivity +0706.4283 +0706.4291 Biological Physics +0706.4303 +0706.4312 +0706.4314 Statistical Mechanics +0706.4317 +0706.4319 Strongly Correlated Electrons +0706.4327 Strongly Correlated Electrons +0706.4331 +0706.4336 +0706.4340 +0706.4342 Superconductivity +0706.4347 +0706.4351 +0706.4356 General Physics +0706.4360 +0706.4367 Strongly Correlated Electrons +0706.4371 +0706.4372 +0706.4374 Plasma Physics +0706.4376 Classical Physics +0706.4377 +0706.4388 +0706.4397 +0706.4398 Strongly Correlated Electrons +0706.4406 Soft Condensed Matter +0706.4410 +0706.4412 +0706.4416 +0706.4418 Superconductivity +0706.4419 +0706.4425 Mesoscale and Nanoscale Physics +0706.4436 +0706.4438 +0706.4445 Optics +0706.4453 +0706.4454 Dynamical Systems +0706.4455 Superconductivity +0706.4460 Theory +0706.4463 +0706.4467 +0706.4472 Chaotic Dynamics +0706.4473 Differential Geometry +0706.4479 +0707.0003 +0707.0010 Plasma Physics +0707.0016 +0707.0019 +0707.0024 +0707.0028 +0707.0036 Superconductivity +0707.0045 Analysis of PDEs +0707.0049 Optics +0707.0056 Other Condensed Matter +0707.0059 +0707.0062 Strongly Correlated Electrons +0707.0073 Statistical Mechanics +0707.0096 Atomic Physics +0707.0098 Probability +0707.0104 Superconductivity +0707.0107 Soft Condensed Matter +0707.0113 +0707.0117 +0707.0119 +0707.0141 Pattern Formation and Solitons +0707.0160 Strongly Correlated Electrons +0707.0169 +0707.0177 +0707.0180 Strongly Correlated Electrons +0707.0186 Differential Geometry +0707.0188 +0707.0189 Statistical Mechanics +0707.0193 +0707.0195 Statistical Mechanics +0707.0202 Differential Geometry +0707.0206 Optics +0707.0207 +0707.0210 Statistical Mechanics +0707.0220 Soft Condensed Matter +0707.0228 Materials Science +0707.0233 Theory +0707.0238 Superconductivity +0707.0243 Theory +0707.0254 Mesoscale and Nanoscale Physics +0707.0255 +0707.0264 +0707.0269 +0707.0272 +0707.0278 Materials Science +0707.0287 +0707.0306 +0707.0307 Other Condensed Matter +0707.0318 Strongly Correlated Electrons +0707.0319 Statistical Mechanics +0707.0321 Fluid Dynamics +0707.0327 +0707.0333 +0707.0334 +0707.0342 Mesoscale and Nanoscale Physics +0707.0345 Statistical Mechanics +0707.0346 +0707.0360 Materials Science +0707.0370 Other Condensed Matter +0707.0382 +0707.0385 Statistical Finance +0707.0393 +0707.0403 Other Condensed Matter +0707.0406 +0707.0407 +0707.0408 +0707.0415 Optics +0707.0417 +0707.0418 +0707.0435 Optics +0707.0440 Fluid Dynamics +0707.0441 Other Condensed Matter +0707.0449 +0707.0453 Other Condensed Matter +0707.0457 Fluid Dynamics +0707.0460 Mesoscale and Nanoscale Physics +0707.0466 Mesoscale and Nanoscale Physics +0707.0473 +0707.0478 Mesoscale and Nanoscale Physics +0707.0483 Mesoscale and Nanoscale Physics +0707.0485 +0707.0489 +0707.0490 +0707.0496 +0707.0501 +0707.0503 +0707.0504 Biological Physics +0707.0506 +0707.0510 Computational Physics +0707.0516 +0707.0517 +0707.0519 Strongly Correlated Electrons +0707.0521 +0707.0523 Superconductivity +0707.0525 +0707.0531 Statistical Mechanics +0707.0541 +0707.0542 +0707.0550 +0707.0557 Mesoscale and Nanoscale Physics +0707.0559 Materials Science +0707.0561 +0707.0566 +0707.0568 Information Theory +0707.0569 Superconductivity +0707.0572 +0707.0580 Biological Physics +0707.0583 Optics +0707.0584 Strongly Correlated Electrons +0707.0594 +0707.0598 +0707.0599 Materials Science +0707.0604 +0707.0605 +0707.0611 +0707.0617 +0707.0621 Optics +0707.0624 +0707.0625 Optics +0707.0626 Materials Science +0707.0630 Optics +0707.0631 Mesoscale and Nanoscale Physics +0707.0634 +0707.0640 Statistical Mechanics +0707.0642 Fluid Dynamics +0707.0647 +0707.0651 +0707.0656 Materials Science +0707.0665 Materials Science +0707.0670 Mesoscale and Nanoscale Physics +0707.0672 +0707.0674 Statistical Mechanics +0707.0675 Other Condensed Matter +0707.0679 +0707.0682 Mesoscale and Nanoscale Physics +0707.0684 +0707.0686 +0707.0688 Statistical Mechanics +0707.0689 +0707.0693 +0707.0694 +0707.0709 Statistical Mechanics +0707.0717 +0707.0720 +0707.0732 Superconductivity +0707.0735 Optics +0707.0737 +0707.0739 +0707.0752 Chemical Physics +0707.0753 Statistical Mechanics +0707.0758 +0707.0768 Strongly Correlated Electrons +0707.0770 +0707.0777 +0707.0786 Superconductivity +0707.0788 +0707.0791 Strongly Correlated Electrons +0707.0792 Other Condensed Matter +0707.0796 Other Computer Science +0707.0798 Mesoscale and Nanoscale Physics +0707.0800 +0707.0802 Multimedia +0707.0810 +0707.0814 Optics +0707.0826 Disordered Systems and Neural Networks +0707.0827 Superconductivity +0707.0832 +0707.0833 Statistical Mechanics +0707.0840 Functional Analysis +0707.0844 +0707.0852 +0707.0858 +0707.0871 Information Theory +0707.0872 Soft Condensed Matter +0707.0881 +0707.0885 Mesoscale and Nanoscale Physics +0707.0892 Strongly Correlated Electrons +0707.0896 +0707.0897 +0707.0901 Statistical Mechanics +0707.0903 +0707.0910 +0707.0918 +0707.0924 +0707.0927 Strongly Correlated Electrons +0707.0933 +0707.0935 Space Physics +0707.0937 +0707.0944 +0707.0952 +0707.0954 Superconductivity +0707.0956 Mesoscale and Nanoscale Physics +0707.0958 +0707.0959 +0707.0961 Theory +0707.0963 +0707.0965 Strongly Correlated Electrons +0707.0974 +0707.0977 Disordered Systems and Neural Networks +0707.0979 +0707.0981 +0707.0992 +0707.0995 +0707.0997 +0707.0998 Spectral Theory +0707.0999 +0707.1002 Materials Science +0707.1003 Materials Science +0707.1005 Disordered Systems and Neural Networks +0707.1010 +0707.1012 +0707.1016 Other Condensed Matter +0707.1018 +0707.1019 +0707.1022 +0707.1024 +0707.1027 +0707.1028 +0707.1032 +0707.1034 Optics +0707.1036 Other Condensed Matter +0707.1037 Mesoscale and Nanoscale Physics +0707.1044 +0707.1054 Strongly Correlated Electrons +0707.1060 Materials Science +0707.1087 +0707.1093 Chemical Physics +0707.1097 +0707.1113 Exactly Solvable and Integrable Systems +0707.1123 Mesoscale and Nanoscale Physics +0707.1125 Mesoscale and Nanoscale Physics +0707.1135 Cell Behavior +0707.1142 Mesoscale and Nanoscale Physics +0707.1147 +0707.1156 Theory +0707.1162 Pattern Formation and Solitons +0707.1168 +0707.1170 Mesoscale and Nanoscale Physics +0707.1171 Mesoscale and Nanoscale Physics +0707.1190 +0707.1201 Phenomenology +0707.1207 Other Condensed Matter +0707.1211 +0707.1213 Other Condensed Matter +0707.1214 +0707.1216 Classical Physics +0707.1217 Disordered Systems and Neural Networks +0707.1221 +0707.1228 Mesoscale and Nanoscale Physics +0707.1229 Mesoscale and Nanoscale Physics +0707.1233 Statistical Mechanics +0707.1236 Classical Physics +0707.1237 Mesoscale and Nanoscale Physics +0707.1244 Mesoscale and Nanoscale Physics +0707.1250 +0707.1252 +0707.1254 +0707.1262 +0707.1293 +0707.1295 Neurons and Cognition +0707.1299 Soft Condensed Matter +0707.1302 Other Condensed Matter +0707.1308 +0707.1315 Optics +0707.1319 Other Condensed Matter +0707.1328 +0707.1331 +0707.1334 +0707.1336 Mesoscale and Nanoscale Physics +0707.1348 Mesoscale and Nanoscale Physics +0707.1359 Mesoscale and Nanoscale Physics +0707.1360 +0707.1363 Mesoscale and Nanoscale Physics +0707.1366 Materials Science +0707.1367 Mesoscale and Nanoscale Physics +0707.1369 +0707.1377 Optics +0707.1383 Mesoscale and Nanoscale Physics +0707.1386 Soft Condensed Matter +0707.1392 Strongly Correlated Electrons +0707.1397 +0707.1399 +0707.1403 +0707.1405 Soft Condensed Matter +0707.1407 Molecular Networks +0707.1413 Superconductivity +0707.1433 +0707.1446 Mesoscale and Nanoscale Physics +0707.1447 Analysis of PDEs +0707.1448 Analysis of PDEs +0707.1450 Disordered Systems and Neural Networks +0707.1456 +0707.1460 +0707.1467 Superconductivity +0707.1478 +0707.1482 +0707.1492 Materials Science +0707.1498 Soft Condensed Matter +0707.1511 +0707.1517 +0707.1521 +0707.1522 Disordered Systems and Neural Networks +0707.1523 +0707.1531 Materials Science +0707.1540 Optics +0707.1541 Physics Education +0707.1547 +0707.1549 Superconductivity +0707.1551 Dynamical Systems +0707.1554 Strongly Correlated Electrons +0707.1564 Strongly Correlated Electrons +0707.1565 +0707.1567 Superconductivity +0707.1572 +0707.1573 +0707.1575 +0707.1579 Molecular Networks +0707.1581 Soft Condensed Matter +0707.1583 Soft Condensed Matter +0707.1585 Other Condensed Matter +0707.1589 Pattern Formation and Solitons +0707.1590 +0707.1594 +0707.1598 Optics +0707.1602 +0707.1604 Materials Science +0707.1611 +0707.1615 Other Condensed Matter +0707.1619 +0707.1622 Materials Science +0707.1629 +0707.1630 Strongly Correlated Electrons +0707.1631 Mesoscale and Nanoscale Physics +0707.1634 +0707.1649 Other Condensed Matter +0707.1653 +0707.1661 Superconductivity +0707.1665 Materials Science +0707.1669 Theory +0707.1672 Physics and Society +0707.1673 Physics and Society +0707.1680 Other Condensed Matter +0707.1681 Physics and Society +0707.1682 Disordered Systems and Neural Networks +0707.1684 Mesoscale and Nanoscale Physics +0707.1689 +0707.1690 +0707.1692 Mesoscale and Nanoscale Physics +0707.1693 +0707.1695 +0707.1698 +0707.1699 +0707.1707 +0707.1711 +0707.1716 Numerical Analysis +0707.1724 +0707.1725 Statistical Mechanics +0707.1727 +0707.1728 +0707.1731 +0707.1740 +0707.1752 +0707.1754 +0707.1759 +0707.1766 Algebraic Geometry +0707.1769 Strongly Correlated Electrons +0707.1778 +0707.1780 +0707.1781 +0707.1783 +0707.1784 Phenomenology +0707.1794 +0707.1798 Fluid Dynamics +0707.1802 Exactly Solvable and Integrable Systems +0707.1803 Soft Condensed Matter +0707.1804 Superconductivity +0707.1805 Superconductivity +0707.1814 +0707.1822 +0707.1826 Strongly Correlated Electrons +0707.1827 +0707.1830 Other Condensed Matter +0707.1840 Mesoscale and Nanoscale Physics +0707.1841 +0707.1855 +0707.1875 +0707.1877 +0707.1878 +0707.1879 +0707.1882 +0707.1887 +0707.1888 Other Condensed Matter +0707.1889 Strongly Correlated Electrons +0707.1891 +0707.1894 +0707.1900 +0707.1901 Other Condensed Matter +0707.1907 +0707.1911 Optics +0707.1916 Atomic Physics +0707.1923 Mesoscale and Nanoscale Physics +0707.1929 Strongly Correlated Electrons +0707.1937 +0707.1940 +0707.1942 +0707.1944 +0707.1947 +0707.1953 Materials Science +0707.1956 Mesoscale and Nanoscale Physics +0707.1965 Disordered Systems and Neural Networks +0707.1969 +0707.1971 +0707.1984 +0707.1985 +0707.1990 Computational Physics +0707.1991 +0707.1993 Mesoscale and Nanoscale Physics +0707.1994 +0707.2000 Mesoscale and Nanoscale Physics +0707.2002 Soft Condensed Matter +0707.2005 +0707.2016 +0707.2018 +0707.2019 +0707.2020 +0707.2023 Mesoscale and Nanoscale Physics +0707.2028 +0707.2032 +0707.2033 Superconductivity +0707.2035 +0707.2037 +0707.2044 Materials Science +0707.2055 +0707.2059 +0707.2062 +0707.2067 +0707.2072 Statistical Mechanics +0707.2076 Molecular Networks +0707.2078 Mesoscale and Nanoscale Physics +0707.2080 +0707.2087 Fluid Dynamics +0707.2093 +0707.2095 Statistical Mechanics +0707.2099 +0707.2100 +0707.2103 +0707.2105 +0707.2106 +0707.2107 Mesoscale and Nanoscale Physics +0707.2111 Mesoscale and Nanoscale Physics +0707.2127 Materials Science +0707.2131 Statistical Mechanics +0707.2133 Other Condensed Matter +0707.2152 Mesoscale and Nanoscale Physics +0707.2162 +0707.2163 Soft Condensed Matter +0707.2166 +0707.2170 +0707.2178 Optics +0707.2180 Superconductivity +0707.2184 Atomic and Molecular Clusters +0707.2188 +0707.2193 +0707.2196 Other Condensed Matter +0707.2197 Mesoscale and Nanoscale Physics +0707.2198 +0707.2201 Superconductivity +0707.2205 Materials Science +0707.2211 Superconductivity +0707.2215 +0707.2218 Atomic Physics +0707.2225 +0707.2230 Atomic Physics +0707.2232 Atomic Physics +0707.2234 Soft Condensed Matter +0707.2235 Soft Condensed Matter +0707.2237 +0707.2239 Superconductivity +0707.2240 +0707.2242 Materials Science +0707.2243 Other Condensed Matter +0707.2244 Materials Science +0707.2249 +0707.2250 +0707.2251 Mesoscale and Nanoscale Physics +0707.2252 +0707.2253 Strongly Correlated Electrons +0707.2258 +0707.2261 +0707.2266 Soft Condensed Matter +0707.2267 Strongly Correlated Electrons +0707.2271 +0707.2274 Chaotic Dynamics +0707.2276 Chaotic Dynamics +0707.2278 +0707.2287 Optics +0707.2288 +0707.2292 +0707.2298 Theory +0707.2301 +0707.2316 +0707.2322 +0707.2325 +0707.2328 Materials Science +0707.2331 Strongly Correlated Electrons +0707.2342 +0707.2343 +0707.2344 Mesoscale and Nanoscale Physics +0707.2345 +0707.2351 +0707.2352 Probability +0707.2354 Other Condensed Matter +0707.2359 Atomic Physics +0707.2361 +0707.2364 Strongly Correlated Electrons +0707.2366 +0707.2367 Mesoscale and Nanoscale Physics +0707.2370 Plasma Physics +0707.2382 +0707.2384 Materials Science +0707.2386 Materials Science +0707.2394 +0707.2396 Mesoscale and Nanoscale Physics +0707.2403 +0707.2409 +0707.2412 Materials Science +0707.2414 Dynamical Systems +0707.2416 Mesoscale and Nanoscale Physics +0707.2418 +0707.2422 Other Condensed Matter +0707.2423 Chaotic Dynamics +0707.2443 +0707.2460 Superconductivity +0707.2465 +0707.2469 Statistical Mechanics +0707.2470 +0707.2474 +0707.2476 +0707.2477 Spectral Theory +0707.2483 +0707.2484 Superconductivity +0707.2490 +0707.2495 Materials Science +0707.2497 Superconductivity +0707.2498 Fluid Dynamics +0707.2501 Materials Science +0707.2502 Materials Science +0707.2503 Materials Science +0707.2516 +0707.2517 Materials Science +0707.2518 Strongly Correlated Electrons +0707.2521 Soft Condensed Matter +0707.2528 +0707.2530 +0707.2538 +0707.2546 Atomic Physics +0707.2547 +0707.2552 Optics +0707.2561 Materials Science +0707.2565 Other Condensed Matter +0707.2566 +0707.2569 Computational Physics +0707.2570 Statistical Mechanics +0707.2571 Other Condensed Matter +0707.2574 Other Condensed Matter +0707.2575 Soft Condensed Matter +0707.2579 +0707.2580 +0707.2586 +0707.2597 +0707.2598 +0707.2601 +0707.2609 +0707.2614 +0707.2615 Strongly Correlated Electrons +0707.2617 +0707.2620 +0707.2628 +0707.2629 +0707.2636 +0707.2644 Mesoscale and Nanoscale Physics +0707.2647 Pattern Formation and Solitons +0707.2652 +0707.2657 +0707.2667 Statistical Mechanics +0707.2674 +0707.2677 +0707.2679 +0707.2682 Optics +0707.2684 Fluid Dynamics +0707.2685 +0707.2688 +0707.2689 Statistical Mechanics +0707.2691 +0707.2693 +0707.2697 +0707.2698 +0707.2702 +0707.2704 Strongly Correlated Electrons +0707.2705 Strongly Correlated Electrons +0707.2708 +0707.2710 +0707.2711 Disordered Systems and Neural Networks +0707.2715 Statistical Mechanics +0707.2716 +0707.2720 Materials Science +0707.2725 +0707.2744 +0707.2746 +0707.2753 Statistical Mechanics +0707.2761 Strongly Correlated Electrons +0707.2769 +0707.2771 +0707.2772 +0707.2773 +0707.2778 +0707.2782 +0707.2783 +0707.2785 Mesoscale and Nanoscale Physics +0707.2787 +0707.2790 +0707.2799 Superconductivity +0707.2802 +0707.2803 Strongly Correlated Electrons +0707.2805 Mesoscale and Nanoscale Physics +0707.2806 +0707.2808 +0707.2809 +0707.2810 +0707.2821 Geophysics +0707.2823 Pattern Formation and Solitons +0707.2826 +0707.2837 +0707.2846 +0707.2847 +0707.2852 Plasma Physics +0707.2856 +0707.2857 +0707.2858 General Physics +0707.2861 Other Condensed Matter +0707.2865 +0707.2868 +0707.2871 Mesoscale and Nanoscale Physics +0707.2875 Superconductivity +0707.2876 Optics +0707.2879 Mesoscale and Nanoscale Physics +0707.2881 +0707.2888 Mesoscale and Nanoscale Physics +0707.2892 Mesoscale and Nanoscale Physics +0707.2893 Other Condensed Matter +0707.2895 +0707.2896 +0707.2899 Strongly Correlated Electrons +0707.2901 Superconductivity +0707.2904 +0707.2905 +0707.2919 +0707.2925 +0707.2928 +0707.2930 Optics +0707.2932 Mesoscale and Nanoscale Physics +0707.2935 +0707.2938 Mesoscale and Nanoscale Physics +0707.2940 +0707.2943 Materials Science +0707.2946 Mesoscale and Nanoscale Physics +0707.2947 Statistical Mechanics +0707.2950 +0707.2951 +0707.2956 +0707.2962 +0707.2963 Atomic Physics +0707.2965 +0707.2971 +0707.2975 +0707.2978 +0707.2988 Statistical Mechanics +0707.2993 +0707.2996 Statistical Mechanics +0707.2997 Materials Science +0707.3003 Atomic Physics +0707.3004 Mesoscale and Nanoscale Physics +0707.3007 +0707.3008 Spectral Theory +0707.3016 Optics +0707.3021 +0707.3022 Other Condensed Matter +0707.3029 Strongly Correlated Electrons +0707.3034 Soft Condensed Matter +0707.3036 Quantum Algebra +0707.3037 +0707.3041 +0707.3045 Chemical Physics +0707.3061 Mesoscale and Nanoscale Physics +0707.3064 +0707.3072 Soft Condensed Matter +0707.3074 Statistical Mechanics +0707.3075 +0707.3076 Strongly Correlated Electrons +0707.3077 Other Condensed Matter +0707.3078 +0707.3095 Information Theory +0707.3109 +0707.3110 Other Condensed Matter +0707.3111 Atomic Physics +0707.3117 Optics +0707.3119 +0707.3120 Strongly Correlated Electrons +0707.3121 Strongly Correlated Electrons +0707.3123 +0707.3126 Theory +0707.3128 Strongly Correlated Electrons +0707.3131 Other Condensed Matter +0707.3132 +0707.3141 +0707.3146 +0707.3148 +0707.3153 Statistical Mechanics +0707.3154 +0707.3158 Superconductivity +0707.3165 +0707.3175 Information Theory +0707.3200 +0707.3206 Statistical Mechanics +0707.3209 Strongly Correlated Electrons +0707.3211 +0707.3212 Mesoscale and Nanoscale Physics +0707.3221 Data Analysis, Statistics and Probability +0707.3223 +0707.3232 +0707.3237 Materials Science +0707.3239 +0707.3243 +0707.3245 Mesoscale and Nanoscale Physics +0707.3256 +0707.3262 Materials Science +0707.3265 Superconductivity +0707.3273 +0707.3274 Materials Science +0707.3275 +0707.3277 +0707.3281 +0707.3282 Atomic Physics +0707.3287 +0707.3288 +0707.3289 General Physics +0707.3294 +0707.3295 +0707.3297 Superconductivity +0707.3301 +0707.3311 +0707.3312 +0707.3321 Statistical Finance +0707.3322 Superconductivity +0707.3327 Analysis of PDEs +0707.3328 +0707.3335 +0707.3338 Mesoscale and Nanoscale Physics +0707.3348 Strongly Correlated Electrons +0707.3353 Adaptation and Self-Organizing Systems +0707.3363 +0707.3368 +0707.3376 +0707.3383 +0707.3393 Materials Science +0707.3412 +0707.3415 +0707.3418 +0707.3429 +0707.3432 +0707.3434 +0707.3436 +0707.3441 +0707.3445 +0707.3454 +0707.3458 +0707.3459 Superconductivity +0707.3464 Populations and Evolution +0707.3468 Quantitative Methods +0707.3474 +0707.3480 +0707.3483 +0707.3485 +0707.3498 Mesoscale and Nanoscale Physics +0707.3503 Optics +0707.3505 +0707.3510 Chemical Physics +0707.3512 +0707.3513 Mesoscale and Nanoscale Physics +0707.3518 +0707.3520 +0707.3523 Strongly Correlated Electrons +0707.3524 +0707.3527 +0707.3529 +0707.3532 Dynamical Systems +0707.3543 Mesoscale and Nanoscale Physics +0707.3544 Soft Condensed Matter +0707.3554 Mesoscale and Nanoscale Physics +0707.3555 Mesoscale and Nanoscale Physics +0707.3556 +0707.3565 Strongly Correlated Electrons +0707.3569 Mesoscale and Nanoscale Physics +0707.3570 +0707.3580 Mesoscale and Nanoscale Physics +0707.3582 +0707.3585 Atomic Physics +0707.3586 Atomic Physics +0707.3598 Dynamical Systems +0707.3602 Soft Condensed Matter +0707.3616 Statistical Mechanics +0707.3621 Disordered Systems and Neural Networks +0707.3629 Strongly Correlated Electrons +0707.3630 Other Condensed Matter +0707.3634 +0707.3635 +0707.3636 +0707.3637 Mesoscale and Nanoscale Physics +0707.3642 Other Quantitative Biology +0707.3651 Materials Science +0707.3668 +0707.3674 Materials Science +0707.3678 +0707.3683 Strongly Correlated Electrons +0707.3695 Mesoscale and Nanoscale Physics +0707.3713 Strongly Correlated Electrons +0707.3719 Biomolecules +0707.3730 Exactly Solvable and Integrable Systems +0707.3731 Analysis of PDEs +0707.3735 Soft Condensed Matter +0707.3737 +0707.3738 +0707.3743 +0707.3752 +0707.3765 Mesoscale and Nanoscale Physics +0707.3766 Statistical Mechanics +0707.3768 Soft Condensed Matter +0707.3771 +0707.3784 Strongly Correlated Electrons +0707.3788 +0707.3795 +0707.3798 Strongly Correlated Electrons +0707.3805 +0707.3809 +0707.3813 +0707.3814 +0707.3817 Strongly Correlated Electrons +0707.3821 +0707.3823 Materials Science +0707.3824 Strongly Correlated Electrons +0707.3825 Atomic and Molecular Clusters +0707.3827 Other Condensed Matter +0707.3833 +0707.3834 +0707.3842 Other Condensed Matter +0707.3846 Atomic Physics +0707.3857 +0707.3862 Classical Analysis and ODEs +0707.3865 Statistical Mechanics +0707.3869 +0707.3870 +0707.3872 +0707.3874 Statistical Mechanics +0707.3875 Strongly Correlated Electrons +0707.3891 Strongly Correlated Electrons +0707.3896 Geometric Topology +0707.3897 Superconductivity +0707.3905 +0707.3906 Materials Science +0707.3908 Mesoscale and Nanoscale Physics +0707.3916 +0707.3917 +0707.3918 Mesoscale and Nanoscale Physics +0707.3919 +0707.3923 Mesoscale and Nanoscale Physics +0707.3930 Other Condensed Matter +0707.3931 Superconductivity +0707.3941 Chaotic Dynamics +0707.3946 +0707.3955 Mesoscale and Nanoscale Physics +0707.3957 Materials Science +0707.3961 Materials Science +0707.3964 Disordered Systems and Neural Networks +0707.3970 +0707.3971 Materials Science +0707.3975 Chaotic Dynamics +0707.3980 +0707.3984 Other Condensed Matter +0707.3988 +0707.3991 +0707.4001 +0707.4004 Soft Condensed Matter +0707.4005 +0707.4008 +0707.4009 Strongly Correlated Electrons +0707.4010 +0707.4012 Disordered Systems and Neural Networks +0707.4013 Instrumentation and Detectors +0707.4014 Soft Condensed Matter +0707.4017 +0707.4029 Quantum Algebra +0707.4031 Strongly Correlated Electrons +0707.4048 Strongly Correlated Electrons +0707.4054 Algebraic Geometry +0707.4055 Materials Science +0707.4060 +0707.4065 +0707.4068 +0707.4069 +0707.4071 Soft Condensed Matter +0707.4079 +0707.4081 Chaotic Dynamics +0707.4082 Soft Condensed Matter +0707.4088 Exactly Solvable and Integrable Systems +0707.4094 Other Condensed Matter +0707.4095 Materials Science +0707.4109 Other Condensed Matter +0707.4112 Optimization and Control +0707.4113 Disordered Systems and Neural Networks +0707.4127 +0707.4128 Materials Science +0707.4131 +0707.4132 Classical Physics +0707.4142 Phenomenology +0707.4145 +0707.4147 +0707.4153 Other Condensed Matter +0707.4155 +0707.4157 Strongly Correlated Electrons +0707.4164 +0707.4173 +0707.4176 +0707.4177 Strongly Correlated Electrons +0707.4180 Other Condensed Matter +0707.4181 Theory +0707.4182 +0707.4187 Materials Science +0707.4188 +0707.4190 +0707.4201 Differential Geometry +0707.4211 +0707.4212 Atomic Physics +0707.4216 Statistical Mechanics +0707.4220 +0707.4222 Disordered Systems and Neural Networks +0707.4225 +0707.4226 Quantum Algebra +0707.4227 Statistical Mechanics +0707.4229 Materials Science +0707.4234 +0707.4236 Mesoscale and Nanoscale Physics +0707.4243 +0707.4244 Cell Behavior +0707.4248 Mesoscale and Nanoscale Physics +0707.4259 Statistical Mechanics +0707.4263 Soft Condensed Matter +0707.4271 Mesoscale and Nanoscale Physics +0707.4279 +0707.4285 +0707.4288 +0707.4310 Algebraic Geometry +0707.4326 Statistical Mechanics +0707.4330 +0707.4341 Statistical Mechanics +0707.4343 General Finance +0707.4345 +0707.4348 Superconductivity +0707.4354 +0707.4361 +0707.4364 +0707.4365 Exactly Solvable and Integrable Systems +0707.4368 Strongly Correlated Electrons +0707.4370 +0707.4376 Chaotic Dynamics +0707.4377 Materials Science +0707.4381 +0707.4383 Statistical Mechanics +0707.4384 Computational Physics +0707.4388 Strongly Correlated Electrons +0707.4390 Statistical Mechanics +0707.4393 Statistical Mechanics +0707.4395 Superconductivity +0707.4404 Chemical Physics +0707.4406 Superconductivity +0707.4409 Optics +0707.4412 +0707.4413 Superconductivity +0707.4419 +0707.4421 +0707.4422 Strongly Correlated Electrons +0707.4426 Mesoscale and Nanoscale Physics +0707.4430 Superconductivity +0707.4435 Other Condensed Matter +0707.4438 +0707.4440 +0707.4441 +0707.4444 Statistical Mechanics +0707.4445 Strongly Correlated Electrons +0707.4452 Strongly Correlated Electrons +0707.4457 Superconductivity +0707.4474 Mesoscale and Nanoscale Physics +0707.4478 +0707.4479 +0707.4481 +0707.4482 +0707.4485 +0707.4495 Pattern Formation and Solitons +0707.4500 +0707.4503 Pattern Formation and Solitons +0707.4508 +0707.4514 +0707.4515 +0707.4516 Strongly Correlated Electrons +0707.4517 Superconductivity +0707.4519 Disordered Systems and Neural Networks +0707.4520 Statistical Mechanics +0707.4521 Mesoscale and Nanoscale Physics +0707.4530 Other Condensed Matter +0707.4531 +0707.4532 Superconductivity +0707.4533 Populations and Evolution +0707.4534 Chemical Physics +0707.4540 +0707.4555 Mesoscale and Nanoscale Physics +0707.4556 +0707.4563 +0707.4571 Mesoscale and Nanoscale Physics +0707.4573 Materials Science +0707.4598 +0707.4599 +0707.4601 Superconductivity +0707.4603 +0707.4604 Materials Science +0707.4606 Strongly Correlated Electrons +0707.4611 Soft Condensed Matter +0707.4626 +0707.4629 +0707.4635 +0707.4641 +0707.4642 Materials Science +0707.4644 Phenomenology +0707.4645 +0707.4649 Materials Science +0707.4650 +0707.4652 Other Condensed Matter +0707.4667 +0707.4670 +0707.4676 +0707.4677 +0707.4678 Soft Condensed Matter +0708.0002 +0708.0004 +0708.0006 +0708.0007 +0708.0009 Exactly Solvable and Integrable Systems +0708.0010 +0708.0011 +0708.0013 Fluid Dynamics +0708.0014 Optics +0708.0015 +0708.0027 +0708.0033 +0708.0038 +0708.0040 Strongly Correlated Electrons +0708.0041 Soft Condensed Matter +0708.0043 Strongly Correlated Electrons +0708.0049 Classical Physics +0708.0051 Statistical Mechanics +0708.0054 Materials Science +0708.0056 Materials Science +0708.0060 +0708.0076 +0708.0077 +0708.0085 +0708.0088 Materials Science +0708.0096 +0708.0097 +0708.0101 Atomic Physics +0708.0106 +0708.0112 Chaotic Dynamics +0708.0116 +0708.0126 Soft Condensed Matter +0708.0133 +0708.0140 +0708.0141 Optics +0708.0147 Chaotic Dynamics +0708.0149 +0708.0150 Statistical Mechanics +0708.0153 Disordered Systems and Neural Networks +0708.0154 Statistical Mechanics +0708.0158 +0708.0161 +0708.0184 +0708.0189 +0708.0190 +0708.0192 Soft Condensed Matter +0708.0195 +0708.0196 +0708.0198 +0708.0201 +0708.0205 Mesoscale and Nanoscale Physics +0708.0208 Soft Condensed Matter +0708.0209 Trading and Market Microstructure +0708.0217 Superconductivity +0708.0220 +0708.0226 +0708.0228 +0708.0229 +0708.0233 +0708.0236 +0708.0243 +0708.0256 +0708.0258 +0708.0259 Statistical Mechanics +0708.0263 +0708.0265 +0708.0267 Mesoscale and Nanoscale Physics +0708.0274 +0708.0277 Adaptation and Self-Organizing Systems +0708.0280 Strongly Correlated Electrons +0708.0289 +0708.0290 +0708.0292 +0708.0298 +0708.0301 +0708.0303 Mesoscale and Nanoscale Physics +0708.0306 +0708.0312 Chaotic Dynamics +0708.0323 +0708.0330 Atomic Physics +0708.0333 +0708.0335 +0708.0337 Strongly Correlated Electrons +0708.0340 Materials Science +0708.0341 Atomic and Molecular Clusters +0708.0344 Strongly Correlated Electrons +0708.0345 +0708.0347 Optimization and Control +0708.0350 Materials Science +0708.0357 +0708.0358 +0708.0375 Other Condensed Matter +0708.0377 Molecular Networks +0708.0388 +0708.0395 Statistical Mechanics +0708.0396 +0708.0399 +0708.0402 +0708.0405 +0708.0406 +0708.0407 +0708.0408 Materials Science +0708.0412 Strongly Correlated Electrons +0708.0413 +0708.0414 +0708.0417 +0708.0422 +0708.0423 +0708.0426 Biomolecules +0708.0434 +0708.0442 Other Condensed Matter +0708.0451 Superconductivity +0708.0461 Mesoscale and Nanoscale Physics +0708.0463 Other Condensed Matter +0708.0464 Superconductivity +0708.0473 +0708.0489 Statistical Mechanics +0708.0496 Statistical Mechanics +0708.0497 Statistical Mechanics +0708.0498 +0708.0500 Operator Algebras +0708.0501 +0708.0518 +0708.0520 Analysis of PDEs +0708.0526 Other Condensed Matter +0708.0527 Biomolecules +0708.0534 +0708.0542 Other Condensed Matter +0708.0543 Strongly Correlated Electrons +0708.0550 +0708.0552 +0708.0554 Strongly Correlated Electrons +0708.0568 +0708.0570 +0708.0575 Strongly Correlated Electrons +0708.0577 +0708.0582 Disordered Systems and Neural Networks +0708.0585 +0708.0595 Adaptation and Self-Organizing Systems +0708.0597 Mesoscale and Nanoscale Physics +0708.0599 +0708.0600 Data Structures and Algorithms +0708.0601 +0708.0610 Other Condensed Matter +0708.0615 +0708.0617 +0708.0622 +0708.0623 Strongly Correlated Electrons +0708.0625 +0708.0626 +0708.0631 Strongly Correlated Electrons +0708.0638 +0708.0640 Quantum Algebra +0708.0644 Strongly Correlated Electrons +0708.0647 Phenomenology +0708.0651 +0708.0660 Networking and Internet Architecture +0708.0663 Other Condensed Matter +0708.0678 Soft Condensed Matter +0708.0685 Soft Condensed Matter +0708.0695 Superconductivity +0708.0696 +0708.0698 Soft Condensed Matter +0708.0702 Exactly Solvable and Integrable Systems +0708.0706 Mesoscale and Nanoscale Physics +0708.0709 +0708.0717 Strongly Correlated Electrons +0708.0721 +0708.0725 +0708.0739 Statistical Mechanics +0708.0742 +0708.0745 Phenomenology +0708.0746 Materials Science +0708.0749 +0708.0751 +0708.0752 Atomic Physics +0708.0762 +0708.0764 +0708.0765 Fluid Dynamics +0708.0771 +0708.0772 +0708.0785 +0708.0787 +0708.0789 Superconductivity +0708.0790 +0708.0799 Soft Condensed Matter +0708.0808 +0708.0810 Statistical Mechanics +0708.0814 +0708.0821 +0708.0822 +0708.0826 +0708.0829 +0708.0832 +0708.0833 +0708.0834 +0708.0835 +0708.0839 +0708.0844 +0708.0845 +0708.0860 +0708.0863 Disordered Systems and Neural Networks +0708.0864 +0708.0870 +0708.0872 Theory +0708.0873 Other Condensed Matter +0708.0874 +0708.0876 Other Condensed Matter +0708.0885 +0708.0904 Superconductivity +0708.0908 Chaotic Dynamics +0708.0912 +0708.0915 +0708.0918 Disordered Systems and Neural Networks +0708.0919 +0708.0930 Statistical Mechanics +0708.0931 Atomic Physics +0708.0932 +0708.0939 Strongly Correlated Electrons +0708.0944 Materials Science +0708.0951 +0708.0953 +0708.0954 +0708.0956 +0708.0960 +0708.0965 Mesoscale and Nanoscale Physics +0708.0966 +0708.0969 +0708.0973 Materials Science +0708.0982 +0708.0986 +0708.0991 Other Condensed Matter +0708.0994 Other Condensed Matter +0708.0995 +0708.0997 Other Condensed Matter +0708.0999 Materials Science +0708.1004 +0708.1005 Superconductivity +0708.1006 Other Condensed Matter +0708.1007 Mesoscale and Nanoscale Physics +0708.1013 +0708.1018 Superconductivity +0708.1020 +0708.1022 +0708.1026 +0708.1031 Optics +0708.1039 +0708.1040 +0708.1042 Superconductivity +0708.1045 +0708.1046 +0708.1056 Superconductivity +0708.1066 +0708.1074 Disordered Systems and Neural Networks +0708.1081 +0708.1082 +0708.1083 +0708.1089 +0708.1092 Mesoscale and Nanoscale Physics +0708.1098 Strongly Correlated Electrons +0708.1102 Analysis of PDEs +0708.1103 Materials Science +0708.1104 Materials Science +0708.1110 +0708.1117 Statistical Mechanics +0708.1120 +0708.1124 +0708.1128 Soft Condensed Matter +0708.1134 Mesoscale and Nanoscale Physics +0708.1137 +0708.1140 Disordered Systems and Neural Networks +0708.1143 Strongly Correlated Electrons +0708.1145 +0708.1149 +0708.1157 Pattern Formation and Solitons +0708.1159 +0708.1167 Materials Science +0708.1170 Strongly Correlated Electrons +0708.1172 +0708.1175 Statistical Mechanics +0708.1181 Strongly Correlated Electrons +0708.1186 +0708.1188 +0708.1191 Adaptation and Self-Organizing Systems +0708.1194 Other Condensed Matter +0708.1196 +0708.1204 +0708.1205 Soft Condensed Matter +0708.1213 Materials Science +0708.1215 +0708.1216 +0708.1218 +0708.1219 Optics +0708.1222 Superconductivity +0708.1224 +0708.1233 +0708.1237 +0708.1238 Exactly Solvable and Integrable Systems +0708.1245 +0708.1251 +0708.1257 +0708.1267 Representation Theory +0708.1269 Symplectic Geometry +0708.1272 Strongly Correlated Electrons +0708.1275 +0708.1280 +0708.1288 +0708.1292 Chaotic Dynamics +0708.1302 Materials Science +0708.1305 +0708.1307 +0708.1308 +0708.1313 Strongly Correlated Electrons +0708.1315 Statistical Mechanics +0708.1316 +0708.1318 Optics +0708.1320 Statistical Mechanics +0708.1327 +0708.1331 +0708.1332 +0708.1335 +0708.1336 Soft Condensed Matter +0708.1337 +0708.1338 +0708.1340 Other Condensed Matter +0708.1345 Materials Science +0708.1350 Statistics Theory +0708.1351 +0708.1361 +0708.1365 +0708.1366 Strongly Correlated Electrons +0708.1367 +0708.1369 Materials Science +0708.1371 Strongly Correlated Electrons +0708.1376 +0708.1382 +0708.1385 +0708.1386 +0708.1388 Superconductivity +0708.1389 Soft Condensed Matter +0708.1392 +0708.1395 +0708.1397 Soft Condensed Matter +0708.1402 +0708.1406 Strongly Correlated Electrons +0708.1418 +0708.1422 +0708.1427 +0708.1432 Materials Science +0708.1434 Materials Science +0708.1436 Mesoscale and Nanoscale Physics +0708.1440 +0708.1449 +0708.1475 Materials Science +0708.1476 Other Condensed Matter +0708.1477 +0708.1479 +0708.1490 Physics and Society +0708.1492 +0708.1499 +0708.1508 +0708.1509 +0708.1511 +0708.1513 +0708.1514 +0708.1516 +0708.1521 +0708.1526 Strongly Correlated Electrons +0708.1530 Strongly Correlated Electrons +0708.1531 Superconductivity +0708.1532 Mesoscale and Nanoscale Physics +0708.1533 +0708.1538 Disordered Systems and Neural Networks +0708.1540 +0708.1541 Mesoscale and Nanoscale Physics +0708.1545 +0708.1546 Strongly Correlated Electrons +0708.1548 Atomic Physics +0708.1552 Optics +0708.1567 +0708.1570 Mesoscale and Nanoscale Physics +0708.1573 Strongly Correlated Electrons +0708.1578 +0708.1594 Chaotic Dynamics +0708.1599 +0708.1606 +0708.1607 +0708.1610 Other Condensed Matter +0708.1616 Statistical Mechanics +0708.1626 General Physics +0708.1628 Statistical Mechanics +0708.1636 +0708.1637 Disordered Systems and Neural Networks +0708.1638 Optics +0708.1640 Strongly Correlated Electrons +0708.1641 Statistical Mechanics +0708.1648 +0708.1650 +0708.1651 Strongly Correlated Electrons +0708.1660 Differential Geometry +0708.1662 Atomic Physics +0708.1666 Superconductivity +0708.1680 Statistical Mechanics +0708.1692 +0708.1696 Strongly Correlated Electrons +0708.1702 Strongly Correlated Electrons +0708.1710 +0708.1713 Superconductivity +0708.1724 +0708.1736 +0708.1743 Atomic Physics +0708.1744 Materials Science +0708.1748 +0708.1751 Superconductivity +0708.1755 +0708.1759 Physics Education +0708.1761 +0708.1765 Strongly Correlated Electrons +0708.1766 +0708.1775 +0708.1778 Strongly Correlated Electrons +0708.1782 +0708.1787 +0708.1791 Biological Physics +0708.1795 Materials Science +0708.1799 Mesoscale and Nanoscale Physics +0708.1800 +0708.1805 Probability +0708.1814 +0708.1832 +0708.1842 Mesoscale and Nanoscale Physics +0708.1850 Strongly Correlated Electrons +0708.1856 +0708.1861 Classical Physics +0708.1862 Physics and Society +0708.1869 +0708.1870 Statistical Mechanics +0708.1879 +0708.1888 Statistical Mechanics +0708.1889 Disordered Systems and Neural Networks +0708.1910 Other Condensed Matter +0708.1915 +0708.1932 +0708.1938 Dynamical Systems +0708.1944 Soft Condensed Matter +0708.1954 +0708.1955 Soft Condensed Matter +0708.1957 Mesoscale and Nanoscale Physics +0708.1958 +0708.1961 Soft Condensed Matter +0708.1970 +0708.1973 +0708.1978 Analysis of PDEs +0708.1996 Soft Condensed Matter +0708.2010 +0708.2017 Materials Science +0708.2019 +0708.2031 +0708.2032 Mesoscale and Nanoscale Physics +0708.2034 +0708.2036 +0708.2039 +0708.2040 Plasma Physics +0708.2049 Plasma Physics +0708.2055 Disordered Systems and Neural Networks +0708.2056 +0708.2057 +0708.2062 Soft Condensed Matter +0708.2063 +0708.2064 +0708.2065 +0708.2068 Phenomenology +0708.2069 +0708.2081 +0708.2088 Strongly Correlated Electrons +0708.2090 General Finance +0708.2091 Mesoscale and Nanoscale Physics +0708.2095 Materials Science +0708.2099 Soft Condensed Matter +0708.2103 +0708.2104 +0708.2106 +0708.2107 Disordered Systems and Neural Networks +0708.2113 +0708.2115 Strongly Correlated Electrons +0708.2117 Superconductivity +0708.2118 +0708.2125 Superconductivity +0708.2126 Mesoscale and Nanoscale Physics +0708.2128 Mesoscale and Nanoscale Physics +0708.2132 Atomic and Molecular Clusters +0708.2134 +0708.2139 Statistical Mechanics +0708.2142 +0708.2144 Theory +0708.2148 Strongly Correlated Electrons +0708.2151 +0708.2158 +0708.2159 Strongly Correlated Electrons +0708.2161 Materials Science +0708.2166 +0708.2169 Mesoscale and Nanoscale Physics +0708.2175 Mesoscale and Nanoscale Physics +0708.2178 +0708.2196 Statistical Mechanics +0708.2204 +0708.2205 +0708.2216 +0708.2222 Statistical Mechanics +0708.2224 +0708.2226 Strongly Correlated Electrons +0708.2231 Statistical Mechanics +0708.2232 Strongly Correlated Electrons +0708.2240 +0708.2242 +0708.2264 Materials Science +0708.2274 +0708.2277 +0708.2279 +0708.2289 Materials Science +0708.2291 +0708.2296 +0708.2298 Adaptation and Self-Organizing Systems +0708.2300 Materials Science +0708.2302 +0708.2306 Materials Science +0708.2314 +0708.2323 +0708.2326 Superconductivity +0708.2330 Materials Science +0708.2333 Superconductivity +0708.2334 Superconductivity +0708.2337 +0708.2338 Strongly Correlated Electrons +0708.2340 +0708.2343 +0708.2350 +0708.2352 +0708.2355 Pattern Formation and Solitons +0708.2364 +0708.2374 Superconductivity +0708.2379 +0708.2385 +0708.2388 +0708.2396 +0708.2399 +0708.2400 +0708.2401 Soft Condensed Matter +0708.2408 Other Condensed Matter +0708.2409 +0708.2412 Mesoscale and Nanoscale Physics +0708.2415 Strongly Correlated Electrons +0708.2417 Fluid Dynamics +0708.2418 Statistical Mechanics +0708.2420 +0708.2422 +0708.2424 +0708.2425 +0708.2428 +0708.2440 +0708.2444 +0708.2447 Plasma Physics +0708.2452 Soft Condensed Matter +0708.2455 Theory +0708.2470 Mesoscale and Nanoscale Physics +0708.2477 Atomic Physics +0708.2479 Materials Science +0708.2482 +0708.2486 +0708.2498 Physics Education +0708.2504 +0708.2505 +0708.2511 +0708.2516 Superconductivity +0708.2517 +0708.2519 Superconductivity +0708.2526 Statistical Mechanics +0708.2529 Chemical Physics +0708.2532 +0708.2550 Strongly Correlated Electrons +0708.2555 +0708.2560 +0708.2563 Statistical Mechanics +0708.2565 Mesoscale and Nanoscale Physics +0708.2576 +0708.2581 Mesoscale and Nanoscale Physics +0708.2595 Mesoscale and Nanoscale Physics +0708.2596 Optics +0708.2598 Data Analysis, Statistics and Probability +0708.2600 +0708.2601 +0708.2605 +0708.2606 Physics and Society +0708.2608 Physics and Society +0708.2615 Statistical Mechanics +0708.2619 Materials Science +0708.2623 Optics +0708.2629 Fluid Dynamics +0708.2631 +0708.2637 +0708.2640 +0708.2641 Atomic Physics +0708.2642 +0708.2652 Mesoscale and Nanoscale Physics +0708.2654 Strongly Correlated Electrons +0708.2660 Statistical Mechanics +0708.2662 Other Condensed Matter +0708.2670 +0708.2672 +0708.2676 +0708.2678 Materials Science +0708.2682 +0708.2700 Strongly Correlated Electrons +0708.2702 +0708.2703 +0708.2704 Mesoscale and Nanoscale Physics +0708.2711 +0708.2718 +0708.2723 +0708.2726 +0708.2729 +0708.2734 Other Condensed Matter +0708.2740 +0708.2746 Strongly Correlated Electrons +0708.2751 Disordered Systems and Neural Networks +0708.2765 Strongly Correlated Electrons +0708.2770 Differential Geometry +0708.2778 +0708.2780 Plasma Physics +0708.2791 +0708.2794 +0708.2795 Strongly Correlated Electrons +0708.2796 +0708.2797 +0708.2811 +0708.2817 Materials Science +0708.2822 +0708.2825 +0708.2826 Strongly Correlated Electrons +0708.2827 +0708.2831 +0708.2836 +0708.2842 +0708.2848 +0708.2849 Strongly Correlated Electrons +0708.2862 Materials Science +0708.2863 +0708.2869 Computational Physics +0708.2870 Materials Science +0708.2872 Strongly Correlated Electrons +0708.2873 +0708.2875 +0708.2877 +0708.2878 Other Condensed Matter +0708.2879 Data Analysis, Statistics and Probability +0708.2881 Strongly Correlated Electrons +0708.2882 Materials Science +0708.2884 +0708.2886 Theory +0708.2896 +0708.2915 Materials Science +0708.2918 +0708.2922 Atomic Physics +0708.2924 Superconductivity +0708.2925 Atomic Physics +0708.2926 Strongly Correlated Electrons +0708.2929 +0708.2930 +0708.2937 Mesoscale and Nanoscale Physics +0708.2942 +0708.2949 +0708.2954 +0708.2959 +0708.2963 +0708.2971 Physics and Society +0708.2978 Statistical Mechanics +0708.2979 Soft Condensed Matter +0708.2983 Statistical Mechanics +0708.2984 +0708.2985 Superconductivity +0708.2986 +0708.2988 +0708.2989 +0708.2992 +0708.3005 +0708.3008 +0708.3016 +0708.3018 +0708.3020 +0708.3023 Mesoscale and Nanoscale Physics +0708.3026 +0708.3029 Strongly Correlated Electrons +0708.3035 Mesoscale and Nanoscale Physics +0708.3040 +0708.3043 +0708.3044 +0708.3050 Soft Condensed Matter +0708.3054 +0708.3059 Disordered Systems and Neural Networks +0708.3073 +0708.3074 Other Condensed Matter +0708.3077 +0708.3085 Soft Condensed Matter +0708.3087 +0708.3088 +0708.3090 Materials Science +0708.3092 +0708.3093 Superconductivity +0708.3095 Statistical Mechanics +0708.3096 Soft Condensed Matter +0708.3099 +0708.3101 +0708.3109 +0708.3113 +0708.3135 +0708.3141 Optics +0708.3144 +0708.3145 +0708.3152 Numerical Analysis +0708.3158 Statistical Mechanics +0708.3163 Biological Physics +0708.3165 Disordered Systems and Neural Networks +0708.3175 Materials Science +0708.3182 Soft Condensed Matter +0708.3185 +0708.3193 Soft Condensed Matter +0708.3195 +0708.3200 Materials Science +0708.3208 +0708.3209 Classical Physics +0708.3210 +0708.3211 Strongly Correlated Electrons +0708.3213 Statistical Mechanics +0708.3215 +0708.3221 +0708.3225 Superconductivity +0708.3229 Materials Science +0708.3235 +0708.3242 +0708.3243 +0708.3253 +0708.3258 +0708.3264 +0708.3268 Mesoscale and Nanoscale Physics +0708.3269 Superconductivity +0708.3275 +0708.3282 Physics and Society +0708.3294 +0708.3298 Other Condensed Matter +0708.3304 +0708.3305 +0708.3311 +0708.3312 Materials Science +0708.3317 +0708.3318 Statistical Mechanics +0708.3323 Mesoscale and Nanoscale Physics +0708.3324 Strongly Correlated Electrons +0708.3345 Statistical Mechanics +0708.3346 Disordered Systems and Neural Networks +0708.3350 Fluid Dynamics +0708.3359 +0708.3360 Atomic Physics +0708.3361 Materials Science +0708.3366 +0708.3374 +0708.3375 +0708.3377 +0708.3382 +0708.3388 +0708.3395 +0708.3401 Materials Science +0708.3403 +0708.3406 +0708.3417 Pattern Formation and Solitons +0708.3420 Strongly Correlated Electrons +0708.3422 +0708.3429 Mesoscale and Nanoscale Physics +0708.3432 Mesoscale and Nanoscale Physics +0708.3437 Strongly Correlated Electrons +0708.3440 +0708.3445 +0708.3449 Complex Variables +0708.3450 Soft Condensed Matter +0708.3456 Spectral Theory +0708.3469 Materials Science +0708.3470 +0708.3481 +0708.3483 +0708.3488 Atomic Physics +0708.3490 +0708.3491 Soft Condensed Matter +0708.3492 +0708.3494 +0708.3533 Numerical Analysis +0708.3534 Strongly Correlated Electrons +0708.3549 +0708.3551 Other Condensed Matter +0708.3555 Strongly Correlated Electrons +0708.3570 Mesoscale and Nanoscale Physics +0708.3574 Mesoscale and Nanoscale Physics +0708.3585 Mesoscale and Nanoscale Physics +0708.3589 Materials Science +0708.3602 Materials Science +0708.3615 +0708.3616 +0708.3617 Mesoscale and Nanoscale Physics +0708.3618 Mesoscale and Nanoscale Physics +0708.3624 +0708.3627 Quantitative Methods +0708.3637 +0708.3638 Other Condensed Matter +0708.3647 Mesoscale and Nanoscale Physics +0708.3648 +0708.3653 +0708.3658 +0708.3660 +0708.3663 Soft Condensed Matter +0708.3666 Superconductivity +0708.3671 +0708.3675 +0708.3678 +0708.3683 +0708.3684 +0708.3686 +0708.3688 Materials Science +0708.3690 Mesoscale and Nanoscale Physics +0708.3694 Materials Science +0708.3698 +0708.3701 Superconductivity +0708.3708 +0708.3713 Statistical Mechanics +0708.3716 +0708.3719 +0708.3725 Strongly Correlated Electrons +0708.3732 Superconductivity +0708.3733 +0708.3735 Pattern Formation and Solitons +0708.3737 +0708.3746 Mesoscale and Nanoscale Physics +0708.3748 +0708.3750 Statistical Mechanics +0708.3753 +0708.3769 Materials Science +0708.3780 +0708.3783 +0708.3784 +0708.3785 +0708.3787 +0708.3789 +0708.3795 +0708.3798 Optics +0708.3807 Strongly Correlated Electrons +0708.3808 +0708.3816 +0708.3819 +0708.3826 +0708.3827 Classical Physics +0708.3830 Materials Science +0708.3837 +0708.3838 +0708.3840 Other Condensed Matter +0708.3841 Superconductivity +0708.3843 Mesoscale and Nanoscale Physics +0708.3853 +0708.3854 Differential Geometry +0708.3857 +0708.3858 +0708.3864 +0708.3870 +0708.3876 Materials Science +0708.3885 Superconductivity +0708.3891 +0708.3894 Materials Science +0708.3898 Superconductivity +0708.3900 Information Theory +0708.3902 +0708.3903 Soft Condensed Matter +0708.3909 +0708.3910 Biological Physics +0708.3921 Disordered Systems and Neural Networks +0708.3925 +0708.3943 Strongly Correlated Electrons +0708.3953 +0708.3955 Fluid Dynamics +0708.3963 Optics +0708.3964 Materials Science +0708.3967 +0708.3969 +0708.3971 Soft Condensed Matter +0708.3972 Optics +0708.3973 Strongly Correlated Electrons +0708.3975 Other Condensed Matter +0708.3978 +0708.3979 +0708.3982 Disordered Systems and Neural Networks +0708.3985 Chemical Physics +0708.3996 +0708.4004 Materials Science +0708.4009 Mesoscale and Nanoscale Physics +0708.4014 +0708.4015 +0708.4016 Phenomenology +0708.4021 Atomic Physics +0708.4026 +0708.4028 Pattern Formation and Solitons +0708.4030 +0708.4032 +0708.4037 +0708.4044 Optics +0708.4049 +0708.4050 Materials Science +0708.4052 Materials Science +0708.4053 Strongly Correlated Electrons +0708.4062 +0708.4065 Subcellular Processes +0708.4072 Atomic Physics +0708.4078 +0708.4079 +0708.4083 +0708.4084 Statistical Mechanics +0708.4085 Other Condensed Matter +0708.4094 +0708.4099 Superconductivity +0708.4107 +0708.4110 +0708.4117 Strongly Correlated Electrons +0708.4119 +0708.4120 +0708.4124 Statistical Mechanics +0708.4125 +0708.4131 Methodology +0708.4133 +0708.4134 +0708.4137 +0708.4142 Strongly Correlated Electrons +0708.4148 Materials Science +0708.4150 +0708.4156 Probability +0708.4160 +0708.4162 Strongly Correlated Electrons +0708.4169 +0708.4171 Disordered Systems and Neural Networks +0708.4178 Statistical Finance +0708.4181 Strongly Correlated Electrons +0708.4192 +0708.4198 Atmospheric and Oceanic Physics +0708.4203 Statistical Mechanics +0708.4206 Disordered Systems and Neural Networks +0708.4212 Populations and Evolution +0708.4220 +0708.4223 Chaotic Dynamics +0708.4224 +0708.4226 +0708.4238 +0708.4240 Strongly Correlated Electrons +0708.4245 Soft Condensed Matter +0708.4247 +0708.4248 Materials Science +0708.4249 History and Philosophy of Physics +0708.4251 +0708.4260 +0708.4267 +0708.4269 Materials Science +0708.4281 Mesoscale and Nanoscale Physics +0708.4286 Materials Science +0708.4291 Fluid Dynamics +0708.4293 Fluid Dynamics +0708.4300 +0708.4308 +0708.4330 +0708.4335 Chaotic Dynamics +0708.4338 +0708.4341 +0708.4347 Statistical Finance +0708.4359 General Finance +0708.4360 Physics and Society +0708.4362 +0708.4373 Chemical Physics +0708.4380 Soft Condensed Matter +0708.4382 Optics +0708.4393 +0708.4395 Soft Condensed Matter +0709.0001 Strongly Correlated Electrons +0709.0004 +0709.0010 +0709.0012 Other Condensed Matter +0709.0014 Atomic Physics +0709.0019 Strongly Correlated Electrons +0709.0021 +0709.0027 +0709.0029 +0709.0030 Materials Science +0709.0039 Mesoscale and Nanoscale Physics +0709.0059 Other Condensed Matter +0709.0074 +0709.0083 +0709.0089 Number Theory +0709.0091 +0709.0094 Strongly Correlated Electrons +0709.0097 +0709.0104 Combinatorics +0709.0106 Superconductivity +0709.0108 +0709.0110 Phenomenology +0709.0130 Atomic Physics +0709.0135 +0709.0143 +0709.0149 +0709.0151 Optics +0709.0153 +0709.0154 Statistical Mechanics +0709.0155 Statistical Mechanics +0709.0164 Mesoscale and Nanoscale Physics +0709.0168 +0709.0169 +0709.0177 +0709.0181 +0709.0193 Superconductivity +0709.0201 Statistical Mechanics +0709.0212 +0709.0215 +0709.0219 Chaotic Dynamics +0709.0220 Superconductivity +0709.0229 Strongly Correlated Electrons +0709.0233 +0709.0234 Fluid Dynamics +0709.0236 +0709.0248 Logic +0709.0251 +0709.0256 +0709.0262 +0709.0263 Strongly Correlated Electrons +0709.0264 +0709.0268 Materials Science +0709.0270 +0709.0273 +0709.0275 Atomic Physics +0709.0280 +0709.0281 Statistical Finance +0709.0298 +0709.0300 +0709.0302 +0709.0312 Superconductivity +0709.0336 Algebraic Geometry +0709.0337 Strongly Correlated Electrons +0709.0338 +0709.0344 +0709.0353 +0709.0356 +0709.0359 Other Condensed Matter +0709.0360 Materials Science +0709.0363 Optics +0709.0367 Computational Complexity +0709.0371 Strongly Correlated Electrons +0709.0377 +0709.0378 Statistical Mechanics +0709.0382 +0709.0396 +0709.0404 +0709.0405 Other Condensed Matter +0709.0411 +0709.0417 +0709.0423 Differential Geometry +0709.0429 +0709.0431 +0709.0444 Statistical Mechanics +0709.0445 +0709.0449 +0709.0452 +0709.0456 +0709.0461 +0709.0466 +0709.0475 Mesoscale and Nanoscale Physics +0709.0480 +0709.0485 +0709.0488 +0709.0493 Mesoscale and Nanoscale Physics +0709.0495 Chaotic Dynamics +0709.0505 +0709.0514 Differential Geometry +0709.0521 Other Condensed Matter +0709.0523 +0709.0524 +0709.0528 +0709.0529 +0709.0537 +0709.0540 +0709.0541 Mesoscale and Nanoscale Physics +0709.0542 +0709.0543 +0709.0548 +0709.0553 +0709.0554 +0709.0560 Materials Science +0709.0563 +0709.0568 Soft Condensed Matter +0709.0571 Statistical Mechanics +0709.0572 +0709.0575 Strongly Correlated Electrons +0709.0576 +0709.0583 Statistical Mechanics +0709.0585 +0709.0591 Statistical Finance +0709.0592 Mesoscale and Nanoscale Physics +0709.0593 Mesoscale and Nanoscale Physics +0709.0594 Other Condensed Matter +0709.0596 +0709.0604 +0709.0606 Statistical Mechanics +0709.0607 Other Condensed Matter +0709.0610 +0709.0619 +0709.0623 +0709.0628 Fluid Dynamics +0709.0631 +0709.0632 Superconductivity +0709.0633 +0709.0639 +0709.0645 +0709.0646 Mesoscale and Nanoscale Physics +0709.0654 +0709.0656 Strongly Correlated Electrons +0709.0658 +0709.0659 +0709.0661 Atomic Physics +0709.0676 +0709.0679 Biomolecules +0709.0691 +0709.0694 +0709.0696 Strongly Correlated Electrons +0709.0701 Physics and Society +0709.0709 Superconductivity +0709.0711 +0709.0713 Strongly Correlated Electrons +0709.0718 Mesoscale and Nanoscale Physics +0709.0723 Biological Physics +0709.0725 Mesoscale and Nanoscale Physics +0709.0729 Strongly Correlated Electrons +0709.0730 +0709.0733 +0709.0736 Pattern Formation and Solitons +0709.0753 Materials Science +0709.0755 +0709.0756 +0709.0759 +0709.0769 Soft Condensed Matter +0709.0771 Mesoscale and Nanoscale Physics +0709.0779 Mesoscale and Nanoscale Physics +0709.0786 +0709.0789 Materials Science +0709.0793 Materials Science +0709.0799 +0709.0802 +0709.0804 +0709.0806 +0709.0809 +0709.0811 +0709.0812 +0709.0813 +0709.0818 +0709.0819 +0709.0823 Molecular Networks +0709.0832 +0709.0833 +0709.0834 Superconductivity +0709.0838 Statistical Finance +0709.0839 Strongly Correlated Electrons +0709.0853 Superconductivity +0709.0854 Number Theory +0709.0855 +0709.0859 +0709.0865 +0709.0870 Analysis of PDEs +0709.0877 +0709.0881 +0709.0889 Statistical Mechanics +0709.0893 Chaotic Dynamics +0709.0905 Analysis of PDEs +0709.0908 +0709.0912 +0709.0917 Mesoscale and Nanoscale Physics +0709.0918 +0709.0920 Mesoscale and Nanoscale Physics +0709.0921 +0709.0925 +0709.0929 Disordered Systems and Neural Networks +0709.0930 Materials Science +0709.0931 +0709.0934 +0709.0944 +0709.0945 +0709.0949 +0709.0951 +0709.0952 +0709.0956 +0709.0960 Strongly Correlated Electrons +0709.0962 +0709.0963 Atomic Physics +0709.0966 +0709.0968 +0709.0970 +0709.0978 +0709.0983 +0709.1003 +0709.1009 +0709.1015 Materials Science +0709.1016 +0709.1017 Other Condensed Matter +0709.1025 Superconductivity +0709.1034 +0709.1045 +0709.1046 +0709.1048 +0709.1055 Statistical Mechanics +0709.1057 Mesoscale and Nanoscale Physics +0709.1061 +0709.1067 Data Analysis, Statistics and Probability +0709.1073 +0709.1092 General Finance +0709.1095 +0709.1101 +0709.1112 Optics +0709.1114 +0709.1120 Other Condensed Matter +0709.1130 Superconductivity +0709.1136 +0709.1137 +0709.1140 Strongly Correlated Electrons +0709.1145 +0709.1147 +0709.1148 Fluid Dynamics +0709.1156 +0709.1161 Materials Science +0709.1164 +0709.1178 +0709.1180 +0709.1182 +0709.1192 +0709.1194 Statistical Mechanics +0709.1200 Superconductivity +0709.1208 +0709.1214 Statistical Mechanics +0709.1217 Superconductivity +0709.1221 Soft Condensed Matter +0709.1234 +0709.1236 +0709.1237 Materials Science +0709.1242 +0709.1250 Optics +0709.1265 Mesoscale and Nanoscale Physics +0709.1267 +0709.1271 +0709.1275 +0709.1276 Probability +0709.1283 +0709.1287 +0709.1288 Mesoscale and Nanoscale Physics +0709.1290 +0709.1292 Disordered Systems and Neural Networks +0709.1301 +0709.1304 Fluid Dynamics +0709.1314 Superconductivity +0709.1321 +0709.1324 Mesoscale and Nanoscale Physics +0709.1326 Mesoscale and Nanoscale Physics +0709.1327 Statistical Mechanics +0709.1328 +0709.1330 Materials Science +0709.1335 +0709.1336 +0709.1338 Strongly Correlated Electrons +0709.1342 +0709.1343 Mesoscale and Nanoscale Physics +0709.1344 +0709.1347 Statistical Mechanics +0709.1349 Soft Condensed Matter +0709.1352 +0709.1354 +0709.1356 +0709.1357 +0709.1359 +0709.1361 Statistical Mechanics +0709.1373 +0709.1374 +0709.1379 Classical Physics +0709.1382 Materials Science +0709.1383 Mesoscale and Nanoscale Physics +0709.1388 +0709.1395 Dynamical Systems +0709.1406 +0709.1413 Strongly Correlated Electrons +0709.1415 Other Condensed Matter +0709.1419 Strongly Correlated Electrons +0709.1424 +0709.1438 +0709.1440 +0709.1444 Other Condensed Matter +0709.1446 Disordered Systems and Neural Networks +0709.1451 Materials Science +0709.1454 +0709.1463 Numerical Analysis +0709.1465 Soft Condensed Matter +0709.1468 +0709.1470 +0709.1471 +0709.1472 +0709.1474 +0709.1484 +0709.1487 +0709.1492 +0709.1493 +0709.1496 Soft Condensed Matter +0709.1501 +0709.1510 +0709.1511 Other Condensed Matter +0709.1527 +0709.1530 Statistical Finance +0709.1533 +0709.1540 Soft Condensed Matter +0709.1541 +0709.1543 General Finance +0709.1544 +0709.1548 Superconductivity +0709.1549 +0709.1558 Dynamical Systems +0709.1561 +0709.1564 Materials Science +0709.1571 +0709.1575 Statistical Mechanics +0709.1592 +0709.1594 +0709.1597 Complex Variables +0709.1600 Soft Condensed Matter +0709.1601 +0709.1609 +0709.1612 +0709.1613 +0709.1623 Statistical Mechanics +0709.1634 Materials Science +0709.1636 +0709.1642 Number Theory +0709.1649 +0709.1650 Strongly Correlated Electrons +0709.1651 +0709.1655 Materials Science +0709.1656 +0709.1657 +0709.1659 Probability +0709.1670 Analysis of PDEs +0709.1672 +0709.1683 Mesoscale and Nanoscale Physics +0709.1685 Statistical Mechanics +0709.1686 +0709.1690 Soft Condensed Matter +0709.1695 Optics +0709.1697 Pattern Formation and Solitons +0709.1700 Strongly Correlated Electrons +0709.1705 Strongly Correlated Electrons +0709.1707 Mesoscale and Nanoscale Physics +0709.1712 +0709.1715 Materials Science +0709.1720 +0709.1725 Statistical Finance +0709.1726 Probability +0709.1731 Mesoscale and Nanoscale Physics +0709.1732 Materials Science +0709.1735 +0709.1737 +0709.1759 Strongly Correlated Electrons +0709.1760 +0709.1761 +0709.1764 Optics +0709.1770 Other Condensed Matter +0709.1782 Soft Condensed Matter +0709.1783 +0709.1784 +0709.1790 +0709.1792 Geophysics +0709.1795 +0709.1797 +0709.1804 +0709.1809 Strongly Correlated Electrons +0709.1810 +0709.1811 +0709.1812 +0709.1825 Other Condensed Matter +0709.1829 Statistical Mechanics +0709.1832 Materials Science +0709.1833 +0709.1841 +0709.1847 +0709.1855 +0709.1877 +0709.1883 +0709.1886 +0709.1887 +0709.1889 Strongly Correlated Electrons +0709.1895 +0709.1900 Atomic Physics +0709.1901 +0709.1904 +0709.1913 Pattern Formation and Solitons +0709.1916 Populations and Evolution +0709.1921 +0709.1924 Materials Science +0709.1925 +0709.1927 Mesoscale and Nanoscale Physics +0709.1938 Other Condensed Matter +0709.1939 Fluid Dynamics +0709.1943 +0709.1945 +0709.1953 Chemical Physics +0709.1957 Symplectic Geometry +0709.1959 +0709.1961 +0709.1962 +0709.1964 +0709.1969 +0709.1972 +0709.1984 +0709.1989 Superconductivity +0709.1991 Mesoscale and Nanoscale Physics +0709.1992 +0709.1993 +0709.1997 +0709.2006 +0709.2028 +0709.2038 +0709.2043 +0709.2046 +0709.2054 Other Condensed Matter +0709.2067 Analysis of PDEs +0709.2068 Soft Condensed Matter +0709.2074 Disordered Systems and Neural Networks +0709.2076 +0709.2079 +0709.2081 +0709.2082 Analysis of PDEs +0709.2083 Statistical Finance +0709.2084 Differential Geometry +0709.2092 Phenomenology +0709.2095 +0709.2096 +0709.2100 Strongly Correlated Electrons +0709.2101 Other Condensed Matter +0709.2103 +0709.2105 Other Condensed Matter +0709.2106 +0709.2119 Soft Condensed Matter +0709.2120 Mesoscale and Nanoscale Physics +0709.2121 Other Condensed Matter +0709.2123 Physics and Society +0709.2124 Other Condensed Matter +0709.2126 +0709.2133 +0709.2143 +0709.2144 +0709.2146 Other Condensed Matter +0709.2157 Superconductivity +0709.2167 +0709.2169 Mesoscale and Nanoscale Physics +0709.2172 Soft Condensed Matter +0709.2178 Statistical Finance +0709.2179 Soft Condensed Matter +0709.2182 Soft Condensed Matter +0709.2203 +0709.2207 +0709.2210 +0709.2212 Other Condensed Matter +0709.2223 Statistical Mechanics +0709.2226 Optics +0709.2234 Optics +0709.2250 Materials Science +0709.2258 +0709.2260 +0709.2267 Phenomenology +0709.2268 +0709.2273 Superconductivity +0709.2278 Optics +0709.2280 +0709.2288 +0709.2292 +0709.2302 Materials Science +0709.2305 +0709.2310 +0709.2314 Materials Science +0709.2318 Quantum Algebra +0709.2320 Mesoscale and Nanoscale Physics +0709.2321 Superconductivity +0709.2322 Statistical Mechanics +0709.2329 +0709.2341 Mesoscale and Nanoscale Physics +0709.2343 +0709.2344 Soft Condensed Matter +0709.2350 Phenomenology +0709.2351 Superconductivity +0709.2357 +0709.2362 +0709.2364 +0709.2380 +0709.2381 +0709.2382 +0709.2386 Other Condensed Matter +0709.2389 Materials Science +0709.2402 Statistical Mechanics +0709.2403 Statistical Mechanics +0709.2410 Multiagent Systems +0709.2412 +0709.2417 +0709.2420 Populations and Evolution +0709.2421 +0709.2423 Statistical Finance +0709.2424 Atomic Physics +0709.2425 +0709.2427 +0709.2445 Information Theory +0709.2451 +0709.2462 Other Condensed Matter +0709.2481 Strongly Correlated Electrons +0709.2483 +0709.2503 Mesoscale and Nanoscale Physics +0709.2510 +0709.2515 +0709.2517 +0709.2533 +0709.2538 Mesoscale and Nanoscale Physics +0709.2543 Instrumentation and Detectors +0709.2557 +0709.2560 Statistical Mechanics +0709.2561 +0709.2563 +0709.2568 +0709.2571 +0709.2575 Optics +0709.2578 Disordered Systems and Neural Networks +0709.2579 Statistical Mechanics +0709.2581 Mesoscale and Nanoscale Physics +0709.2588 +0709.2595 +0709.2601 +0709.2604 +0709.2613 +0709.2614 Mesoscale and Nanoscale Physics +0709.2617 +0709.2620 +0709.2621 Superconductivity +0709.2623 +0709.2627 Mesoscale and Nanoscale Physics +0709.2630 General Finance +0709.2631 Superconductivity +0709.2637 +0709.2641 Superconductivity +0709.2645 +0709.2650 +0709.2652 +0709.2654 +0709.2655 Atomic Physics +0709.2658 +0709.2669 Soft Condensed Matter +0709.2674 +0709.2676 +0709.2681 Mesoscale and Nanoscale Physics +0709.2682 Materials Science +0709.2685 +0709.2686 +0709.2693 +0709.2695 Statistical Mechanics +0709.2706 Experiment +0709.2714 +0709.2716 Mesoscale and Nanoscale Physics +0709.2717 Strongly Correlated Electrons +0709.2719 +0709.2725 +0709.2733 +0709.2737 Experiment +0709.2739 +0709.2744 Atomic Physics +0709.2746 +0709.2749 +0709.2752 Disordered Systems and Neural Networks +0709.2756 Materials Science +0709.2765 +0709.2768 +0709.2774 Materials Science +0709.2783 Fluid Dynamics +0709.2785 Fluid Dynamics +0709.2796 Materials Science +0709.2804 Phenomenology +0709.2805 +0709.2808 Geophysics +0709.2828 +0709.2829 +0709.2835 +0709.2839 +0709.2848 +0709.2849 +0709.2850 Strongly Correlated Electrons +0709.2861 +0709.2862 Optics +0709.2863 Strongly Correlated Electrons +0709.2867 Optics +0709.2869 Atomic Physics +0709.2873 Atomic Physics +0709.2874 Physics and Society +0709.2875 Soft Condensed Matter +0709.2880 +0709.2885 Superconductivity +0709.2886 +0709.2887 +0709.2892 +0709.2898 Mesoscale and Nanoscale Physics +0709.2911 +0709.2915 +0709.2921 Strongly Correlated Electrons +0709.2923 +0709.2928 +0709.2937 Mesoscale and Nanoscale Physics +0709.2939 +0709.2951 +0709.2952 Soft Condensed Matter +0709.2953 +0709.2954 +0709.2958 Soft Condensed Matter +0709.2964 Chaotic Dynamics +0709.2970 Mesoscale and Nanoscale Physics +0709.2974 +0709.2998 +0709.3000 +0709.3003 Other Condensed Matter +0709.3004 +0709.3005 Trading and Market Microstructure +0709.3018 Physics and Society +0709.3023 +0709.3027 Soft Condensed Matter +0709.3031 +0709.3033 +0709.3037 Mesoscale and Nanoscale Physics +0709.3045 Physics and Society +0709.3051 Other Condensed Matter +0709.3053 +0709.3058 Materials Science +0709.3063 +0709.3064 Superconductivity +0709.3065 +0709.3071 Materials Science +0709.3073 Chaotic Dynamics +0709.3076 +0709.3078 +0709.3085 +0709.3086 +0709.3087 +0709.3088 +0709.3094 Statistical Mechanics +0709.3103 +0709.3107 +0709.3119 +0709.3124 +0709.3137 Soft Condensed Matter +0709.3143 Chaotic Dynamics +0709.3146 Other Condensed Matter +0709.3161 Mesoscale and Nanoscale Physics +0709.3168 +0709.3171 Soft Condensed Matter +0709.3172 Superconductivity +0709.3173 +0709.3175 +0709.3176 +0709.3177 +0709.3178 Statistical Mechanics +0709.3193 +0709.3197 +0709.3204 Strongly Correlated Electrons +0709.3208 Statistical Mechanics +0709.3209 Disordered Systems and Neural Networks +0709.3222 Analysis of PDEs +0709.3229 Mesoscale and Nanoscale Physics +0709.3230 Fluid Dynamics +0709.3231 Exactly Solvable and Integrable Systems +0709.3232 +0709.3233 +0709.3234 Materials Science +0709.3240 Strongly Correlated Electrons +0709.3255 +0709.3260 Mesoscale and Nanoscale Physics +0709.3261 Statistical Finance +0709.3263 +0709.3267 +0709.3274 Strongly Correlated Electrons +0709.3281 +0709.3289 Statistical Mechanics +0709.3304 +0709.3307 +0709.3313 +0709.3315 +0709.3317 Disordered Systems and Neural Networks +0709.3319 Mesoscale and Nanoscale Physics +0709.3321 +0709.3323 +0709.3329 Soft Condensed Matter +0709.3330 +0709.3335 +0709.3336 +0709.3340 +0709.3356 +0709.3359 Biomolecules +0709.3365 +0709.3367 +0709.3394 +0709.3399 Pattern Formation and Solitons +0709.3401 +0709.3405 +0709.3409 Soft Condensed Matter +0709.3410 +0709.3417 +0709.3423 +0709.3430 +0709.3433 Soft Condensed Matter +0709.3437 +0709.3439 +0709.3441 +0709.3445 +0709.3451 +0709.3454 +0709.3455 +0709.3456 +0709.3460 Mesoscale and Nanoscale Physics +0709.3467 +0709.3477 +0709.3483 Other Condensed Matter +0709.3484 +0709.3485 +0709.3492 +0709.3504 General Physics +0709.3511 +0709.3516 Superconductivity +0709.3522 Mesoscale and Nanoscale Physics +0709.3523 +0709.3529 Statistical Mechanics +0709.3536 Soft Condensed Matter +0709.3548 +0709.3550 +0709.3557 +0709.3561 +0709.3563 +0709.3564 +0709.3565 Optics +0709.3567 Materials Science +0709.3572 +0709.3579 Statistical Mechanics +0709.3580 Atomic Physics +0709.3585 Statistical Mechanics +0709.3589 Disordered Systems and Neural Networks +0709.3597 Probability +0709.3602 Quantitative Methods +0709.3608 +0709.3614 +0709.3621 +0709.3622 +0709.3624 +0709.3627 +0709.3630 Portfolio Management +0709.3632 Strongly Correlated Electrons +0709.3633 +0709.3635 +0709.3643 +0709.3653 Strongly Correlated Electrons +0709.3655 Strongly Correlated Electrons +0709.3666 +0709.3671 Soft Condensed Matter +0709.3675 Biological Physics +0709.3681 Mesoscale and Nanoscale Physics +0709.3682 +0709.3685 Strongly Correlated Electrons +0709.3697 +0709.3701 +0709.3710 General Finance +0709.3712 +0709.3718 Mesoscale and Nanoscale Physics +0709.3721 +0709.3728 +0709.3730 +0709.3731 +0709.3732 +0709.3737 Strongly Correlated Electrons +0709.3740 Quantum Gases +0709.3747 +0709.3748 +0709.3751 +0709.3754 +0709.3762 +0709.3766 +0709.3768 Mesoscale and Nanoscale Physics +0709.3771 Strongly Correlated Electrons +0709.3772 +0709.3774 Statistical Mechanics +0709.3775 Mesoscale and Nanoscale Physics +0709.3781 +0709.3789 +0709.3793 +0709.3795 +0709.3801 Statistical Mechanics +0709.3804 +0709.3809 +0709.3815 +0709.3817 +0709.3819 Strongly Correlated Electrons +0709.3822 Soft Condensed Matter +0709.3833 +0709.3838 +0709.3840 Disordered Systems and Neural Networks +0709.3842 Other Condensed Matter +0709.3843 +0709.3846 Soft Condensed Matter +0709.3847 Mesoscale and Nanoscale Physics +0709.3848 Exactly Solvable and Integrable Systems +0709.3849 Superconductivity +0709.3854 +0709.3856 +0709.3861 Atomic Physics +0709.3862 Mesoscale and Nanoscale Physics +0709.3867 +0709.3870 Superconductivity +0709.3871 +0709.3872 +0709.3873 +0709.3877 +0709.3878 +0709.3883 Statistical Mechanics +0709.3902 Atomic Physics +0709.3921 Information Theory +0709.3923 +0709.3927 Statistical Mechanics +0709.3933 +0709.3936 Soft Condensed Matter +0709.3938 Statistical Mechanics +0709.3941 +0709.3945 Other Condensed Matter +0709.3955 Statistical Mechanics +0709.3957 +0709.3959 +0709.3960 +0709.3964 +0709.3969 Materials Science +0709.3973 +0709.3978 +0709.3980 +0709.3982 Disordered Systems and Neural Networks +0709.3987 +0709.3992 +0709.3994 +0709.4001 Superconductivity +0709.4007 Superconductivity +0709.4014 +0709.4022 +0709.4025 +0709.4027 +0709.4030 +0709.4032 Atomic Physics +0709.4036 +0709.4042 Physics and Society +0709.4043 Soft Condensed Matter +0709.4047 +0709.4056 Other Condensed Matter +0709.4061 Strongly Correlated Electrons +0709.4062 +0709.4064 Statistical Mechanics +0709.4068 Materials Science +0709.4069 +0709.4080 +0709.4083 +0709.4089 +0709.4091 +0709.4095 +0709.4096 General Finance +0709.4104 Statistical Mechanics +0709.4120 Strongly Correlated Electrons +0709.4121 Superconductivity +0709.4123 Other Condensed Matter +0709.4124 Algebraic Geometry +0709.4125 Statistical Mechanics +0709.4128 Mesoscale and Nanoscale Physics +0709.4138 Materials Science +0709.4142 Soft Condensed Matter +0709.4146 Superconductivity +0709.4148 Exactly Solvable and Integrable Systems +0709.4150 Statistical Mechanics +0709.4159 +0709.4160 +0709.4162 Mesoscale and Nanoscale Physics +0709.4177 +0709.4179 Disordered Systems and Neural Networks +0709.4180 Superconductivity +0709.4183 Materials Science +0709.4185 +0709.4186 +0709.4188 Superconductivity +0709.4194 +0709.4198 +0709.4199 Strongly Correlated Electrons +0709.4211 +0709.4214 Disordered Systems and Neural Networks +0709.4217 +0709.4219 +0709.4228 Strongly Correlated Electrons +0709.4240 +0709.4242 Trading and Market Microstructure +0709.4247 +0709.4248 +0709.4252 +0709.4256 Materials Science +0709.4264 Mesoscale and Nanoscale Physics +0709.4267 Superconductivity +0709.4271 +0709.4274 +0709.4286 +0709.4287 +0709.4289 Optics +0709.4290 +0709.4301 +0709.4305 Soft Condensed Matter +0709.4306 Mesoscale and Nanoscale Physics +0709.4307 +0709.4308 +0709.4309 +0709.4310 Operator Algebras +0709.4311 Atomic Physics +0709.4314 +0709.4317 Mesoscale and Nanoscale Physics +0709.4318 +0709.4329 +0709.4330 Mesoscale and Nanoscale Physics +0709.4331 +0709.4333 +0709.4346 Superconductivity +0709.4349 +0709.4351 Other Condensed Matter +0709.4357 Other Condensed Matter +0709.4358 Portfolio Management +0709.4361 Statistical Finance +0709.4365 Materials Science +0709.4366 +0709.4371 Physics and Society +0709.4373 +0709.4375 Physics and Society +0709.4390 +0709.4394 Materials Science +0709.4402 +0709.4404 Soft Condensed Matter +0709.4409 Instrumentation and Detectors +0709.4424 Superconductivity +0709.4430 Soft Condensed Matter +0709.4435 +0709.4437 Soft Condensed Matter +0709.4441 Soft Condensed Matter +0709.4459 Pattern Formation and Solitons +0709.4463 Optics +0709.4470 +0709.4471 +0709.4473 Plasma Physics +0709.4475 Strongly Correlated Electrons +0709.4476 +0709.4481 Soft Condensed Matter +0709.4484 +0709.4489 Strongly Correlated Electrons +0709.4490 Soft Condensed Matter +0709.4496 +0709.4499 +0709.4503 Physics Education +0709.4508 +0709.4512 +0709.4520 +0709.4521 +0709.4527 Superconductivity +0709.4532 +0709.4536 Physics and Society +0709.4545 +0709.4548 +0709.4553 Materials Science +0709.4554 Other Condensed Matter +0709.4556 Mesoscale and Nanoscale Physics +0709.4557 Atomic and Molecular Clusters +0709.4560 +0709.4561 +0709.4562 +0709.4563 +0709.4568 +0709.4569 Statistical Mechanics +0709.4573 +0709.4578 +0709.4589 Mesoscale and Nanoscale Physics +0709.4601 +0709.4606 +0709.4609 Other Condensed Matter +0709.4612 Data Analysis, Statistics and Probability +0709.4614 +0709.4642 +0709.4644 +0709.4646 Dynamical Systems +0709.4647 Other Condensed Matter +0709.4649 Classical Physics +0709.4654 Other Condensed Matter +0709.4666 Other Condensed Matter +0709.4675 Atomic Physics +0710.0003 +0710.0005 +0710.0008 Chemical Physics +0710.0009 Computation and Language +0710.0015 +0710.0018 Other Condensed Matter +0710.0029 +0710.0030 Mesoscale and Nanoscale Physics +0710.0041 Disordered Systems and Neural Networks +0710.0042 Soft Condensed Matter +0710.0053 +0710.0056 Classical Analysis and ODEs +0710.0064 Plasma Physics +0710.0075 +0710.0086 Atomic Physics +0710.0096 +0710.0099 Optics +0710.0109 Superconductivity +0710.0117 Physics and Society +0710.0119 Materials Science +0710.0135 +0710.0136 Optics +0710.0137 +0710.0141 +0710.0146 +0710.0156 Classical Analysis and ODEs +0710.0161 Quantitative Methods +0710.0168 +0710.0175 Materials Science +0710.0176 Other Condensed Matter +0710.0185 +0710.0206 +0710.0208 Other Condensed Matter +0710.0215 Strongly Correlated Electrons +0710.0219 Statistical Mechanics +0710.0223 Theory +0710.0224 +0710.0231 Disordered Systems and Neural Networks +0710.0238 Strongly Correlated Electrons +0710.0246 Materials Science +0710.0247 +0710.0250 Mesoscale and Nanoscale Physics +0710.0251 +0710.0254 +0710.0261 Quantum Algebra +0710.0286 Statistical Mechanics +0710.0289 +0710.0295 Classical Physics +0710.0300 +0710.0303 Soft Condensed Matter +0710.0305 Theory +0710.0307 Classical Physics +0710.0319 +0710.0320 Superconductivity +0710.0324 +0710.0353 Superconductivity +0710.0355 +0710.0358 Strongly Correlated Electrons +0710.0365 Mesoscale and Nanoscale Physics +0710.0367 +0710.0368 +0710.0370 +0710.0371 +0710.0372 +0710.0375 +0710.0384 +0710.0389 Analysis of PDEs +0710.0398 Strongly Correlated Electrons +0710.0399 Number Theory +0710.0400 Disordered Systems and Neural Networks +0710.0402 +0710.0406 +0710.0407 +0710.0426 +0710.0430 +0710.0441 +0710.0450 +0710.0451 Strongly Correlated Electrons +0710.0463 Strongly Correlated Electrons +0710.0469 Materials Science +0710.0473 Superconductivity +0710.0482 Materials Science +0710.0484 +0710.0490 +0710.0494 +0710.0495 Materials Science +0710.0496 Strongly Correlated Electrons +0710.0499 +0710.0503 Materials Science +0710.0506 +0710.0517 Statistical Mechanics +0710.0524 Other Condensed Matter +0710.0526 Phenomenology +0710.0532 Other Condensed Matter +0710.0535 Materials Science +0710.0547 +0710.0550 Disordered Systems and Neural Networks +0710.0554 Phenomenology +0710.0561 +0710.0566 +0710.0579 +0710.0585 +0710.0588 +0710.0590 +0710.0591 +0710.0594 +0710.0598 +0710.0599 Materials Science +0710.0607 Other Condensed Matter +0710.0609 +0710.0611 Statistical Mechanics +0710.0616 Materials Science +0710.0621 +0710.0625 +0710.0629 +0710.0632 +0710.0633 Disordered Systems and Neural Networks +0710.0636 Optics +0710.0637 +0710.0641 Soft Condensed Matter +0710.0645 Mesoscale and Nanoscale Physics +0710.0661 Superconductivity +0710.0662 +0710.0663 +0710.0677 Number Theory +0710.0678 Strongly Correlated Electrons +0710.0682 Materials Science +0710.0687 +0710.0693 Superconductivity +0710.0695 Materials Science +0710.0699 +0710.0711 +0710.0712 +0710.0715 Strongly Correlated Electrons +0710.0719 +0710.0720 Disordered Systems and Neural Networks +0710.0728 Statistical Mechanics +0710.0732 Materials Science +0710.0733 Atomic Physics +0710.0738 Superconductivity +0710.0749 +0710.0750 Mesoscale and Nanoscale Physics +0710.0755 Statistical Mechanics +0710.0757 +0710.0759 +0710.0760 +0710.0761 +0710.0763 +0710.0766 +0710.0768 +0710.0770 Strongly Correlated Electrons +0710.0774 +0710.0780 +0710.0784 +0710.0790 +0710.0795 +0710.0796 +0710.0798 +0710.0801 +0710.0809 Disordered Systems and Neural Networks +0710.0817 +0710.0836 Strongly Correlated Electrons +0710.0837 +0710.0839 +0710.0840 Mesoscale and Nanoscale Physics +0710.0854 +0710.0861 Soft Condensed Matter +0710.0864 Materials Science +0710.0866 +0710.0877 Materials Science +0710.0878 +0710.0882 Statistical Mechanics +0710.0883 Statistical Mechanics +0710.0884 Mesoscale and Nanoscale Physics +0710.0898 +0710.0901 +0710.0904 +0710.0917 Physics and Society +0710.0920 +0710.0921 Materials Science +0710.0927 +0710.0932 Other Condensed Matter +0710.0934 Superconductivity +0710.0947 Superconductivity +0710.0955 +0710.0956 +0710.0957 Materials Science +0710.0961 +0710.0964 +0710.0979 +0710.0980 +0710.1003 Materials Science +0710.1005 +0710.1009 Strongly Correlated Electrons +0710.1011 +0710.1018 +0710.1021 +0710.1023 +0710.1030 Statistical Mechanics +0710.1031 Statistical Mechanics +0710.1035 Mesoscale and Nanoscale Physics +0710.1036 Biological Physics +0710.1039 +0710.1040 +0710.1045 Numerical Analysis +0710.1055 +0710.1057 Materials Science +0710.1065 +0710.1066 Statistical Mechanics +0710.1069 +0710.1073 +0710.1080 +0710.1081 Atomic Physics +0710.1082 +0710.1088 Mesoscale and Nanoscale Physics +0710.1091 Disordered Systems and Neural Networks +0710.1108 +0710.1113 +0710.1114 +0710.1117 +0710.1123 +0710.1133 Statistical Mechanics +0710.1135 +0710.1137 Statistical Mechanics +0710.1142 +0710.1145 +0710.1146 +0710.1148 +0710.1165 +0710.1167 +0710.1179 Other Condensed Matter +0710.1180 +0710.1181 +0710.1184 +0710.1189 +0710.1191 Pattern Formation and Solitons +0710.1193 +0710.1194 +0710.1199 +0710.1201 +0710.1207 +0710.1209 Geophysics +0710.1215 +0710.1226 Atomic Physics +0710.1227 Materials Science +0710.1230 Strongly Correlated Electrons +0710.1231 Superconductivity +0710.1235 Mesoscale and Nanoscale Physics +0710.1236 +0710.1245 +0710.1246 +0710.1247 Strongly Correlated Electrons +0710.1255 +0710.1259 Statistical Mechanics +0710.1274 Physics and Society +0710.1277 +0710.1285 +0710.1292 +0710.1293 +0710.1297 +0710.1303 +0710.1305 Differential Geometry +0710.1306 Strongly Correlated Electrons +0710.1308 Materials Science +0710.1317 Biological Physics +0710.1320 +0710.1335 Superconductivity +0710.1345 +0710.1352 +0710.1353 Strongly Correlated Electrons +0710.1356 Superconductivity +0710.1357 Populations and Evolution +0710.1364 Disordered Systems and Neural Networks +0710.1372 Superconductivity +0710.1376 Strongly Correlated Electrons +0710.1388 +0710.1390 Mesoscale and Nanoscale Physics +0710.1398 Logic +0710.1401 Phenomenology +0710.1405 +0710.1407 Superconductivity +0710.1409 +0710.1416 +0710.1417 Materials Science +0710.1421 Molecular Networks +0710.1431 +0710.1432 Physics and Society +0710.1433 +0710.1439 Trading and Market Microstructure +0710.1444 +0710.1452 Strongly Correlated Electrons +0710.1456 Exactly Solvable and Integrable Systems +0710.1458 +0710.1465 Soft Condensed Matter +0710.1471 +0710.1473 +0710.1480 +0710.1494 Statistical Mechanics +0710.1496 Physics and Society +0710.1500 +0710.1503 +0710.1504 +0710.1506 +0710.1509 Statistical Mechanics +0710.1511 Data Analysis, Statistics and Probability +0710.1513 Other Condensed Matter +0710.1529 Statistical Mechanics +0710.1531 +0710.1542 +0710.1546 Strongly Correlated Electrons +0710.1550 +0710.1554 +0710.1558 Soft Condensed Matter +0710.1564 +0710.1566 +0710.1571 +0710.1576 Dynamical Systems +0710.1578 Computational Physics +0710.1600 +0710.1609 +0710.1612 Soft Condensed Matter +0710.1615 +0710.1618 Mesoscale and Nanoscale Physics +0710.1627 Strongly Correlated Electrons +0710.1629 Mesoscale and Nanoscale Physics +0710.1631 +0710.1634 +0710.1650 +0710.1651 +0710.1654 +0710.1659 +0710.1666 +0710.1667 +0710.1670 Theory +0710.1674 Optics +0710.1677 +0710.1678 +0710.1686 Materials Science +0710.1687 Statistical Mechanics +0710.1693 Phenomenology +0710.1695 +0710.1697 +0710.1698 Strongly Correlated Electrons +0710.1701 Statistical Mechanics +0710.1702 Soft Condensed Matter +0710.1703 Optics +0710.1706 Atomic Physics +0710.1712 Statistical Mechanics +0710.1716 +0710.1718 +0710.1721 +0710.1723 Mesoscale and Nanoscale Physics +0710.1727 +0710.1729 General Finance +0710.1730 +0710.1731 +0710.1732 Theory +0710.1734 +0710.1737 +0710.1739 Fluid Dynamics +0710.1752 +0710.1757 Materials Science +0710.1766 Other Condensed Matter +0710.1770 +0710.1771 Statistical Mechanics +0710.1777 +0710.1778 +0710.1779 Statistical Mechanics +0710.1781 +0710.1786 +0710.1788 +0710.1794 Strongly Correlated Electrons +0710.1804 +0710.1805 +0710.1808 +0710.1811 +0710.1817 Strongly Correlated Electrons +0710.1828 +0710.1831 Statistical Mechanics +0710.1834 +0710.1840 +0710.1841 +0710.1846 +0710.1848 Other Condensed Matter +0710.1852 Mesoscale and Nanoscale Physics +0710.1855 Portfolio Management +0710.1856 +0710.1860 +0710.1863 +0710.1868 Superconductivity +0710.1872 +0710.1873 +0710.1876 +0710.1877 +0710.1885 Atomic Physics +0710.1897 +0710.1899 Exactly Solvable and Integrable Systems +0710.1908 Chaotic Dynamics +0710.1918 +0710.1925 Mesoscale and Nanoscale Physics +0710.1928 +0710.1934 +0710.1939 +0710.1943 Mesoscale and Nanoscale Physics +0710.1946 +0710.1947 +0710.1961 +0710.1980 Disordered Systems and Neural Networks +0710.1984 Other Condensed Matter +0710.1987 +0710.1993 Fluid Dynamics +0710.1995 General Finance +0710.2004 +0710.2012 Exactly Solvable and Integrable Systems +0710.2023 Physics and Society +0710.2025 Materials Science +0710.2030 +0710.2031 Mesoscale and Nanoscale Physics +0710.2053 Statistical Mechanics +0710.2102 +0710.2103 +0710.2105 +0710.2112 Materials Science +0710.2115 +0710.2116 +0710.2118 Phenomenology +0710.2126 +0710.2127 +0710.2128 +0710.2132 +0710.2135 +0710.2151 Superconductivity +0710.2161 Pattern Formation and Solitons +0710.2174 Strongly Correlated Electrons +0710.2175 +0710.2178 Other Condensed Matter +0710.2181 Materials Science +0710.2190 +0710.2192 Analysis of PDEs +0710.2199 +0710.2200 Materials Science +0710.2204 Theory +0710.2205 +0710.2215 +0710.2219 Classical Physics +0710.2225 +0710.2232 +0710.2235 Biomolecules +0710.2237 +0710.2241 +0710.2246 +0710.2248 +0710.2252 +0710.2256 Optics +0710.2259 Superconductivity +0710.2261 Statistical Mechanics +0710.2262 +0710.2274 Strongly Correlated Electrons +0710.2276 Optics +0710.2278 Strongly Correlated Electrons +0710.2283 Mesoscale and Nanoscale Physics +0710.2289 +0710.2301 Neurons and Cognition +0710.2303 +0710.2308 +0710.2313 +0710.2314 +0710.2317 +0710.2327 Mesoscale and Nanoscale Physics +0710.2331 +0710.2339 Atomic Physics +0710.2343 +0710.2346 Commutative Algebra +0710.2348 +0710.2351 +0710.2356 Statistical Mechanics +0710.2359 +0710.2366 +0710.2367 +0710.2370 +0710.2374 +0710.2398 +0710.2399 +0710.2400 +0710.2420 Strongly Correlated Electrons +0710.2421 +0710.2422 Phenomenology +0710.2431 Atomic Physics +0710.2436 +0710.2447 Materials Science +0710.2451 +0710.2455 +0710.2460 Analysis of PDEs +0710.2461 +0710.2462 Fluid Dynamics +0710.2464 +0710.2473 +0710.2476 Materials Science +0710.2477 Phenomenology +0710.2481 +0710.2491 +0710.2499 Other Condensed Matter +0710.2504 Other Condensed Matter +0710.2507 Chaotic Dynamics +0710.2510 Soft Condensed Matter +0710.2518 +0710.2526 Strongly Correlated Electrons +0710.2533 Data Analysis, Statistics and Probability +0710.2541 +0710.2542 +0710.2552 +0710.2557 +0710.2563 +0710.2567 Mesoscale and Nanoscale Physics +0710.2581 +0710.2582 +0710.2586 +0710.2587 Materials Science +0710.2597 +0710.2603 Soft Condensed Matter +0710.2613 Mesoscale and Nanoscale Physics +0710.2617 +0710.2621 Disordered Systems and Neural Networks +0710.2622 +0710.2633 +0710.2635 +0710.2638 Superconductivity +0710.2642 +0710.2648 Representation Theory +0710.2650 Disordered Systems and Neural Networks +0710.2654 +0710.2668 +0710.2683 +0710.2692 Optics +0710.2693 +0710.2695 Optics +0710.2697 +0710.2701 Mesoscale and Nanoscale Physics +0710.2703 Other Condensed Matter +0710.2710 Statistical Mechanics +0710.2711 +0710.2717 Statistical Mechanics +0710.2721 Materials Science +0710.2729 Disordered Systems and Neural Networks +0710.2737 +0710.2745 Pattern Formation and Solitons +0710.2759 Materials Science +0710.2760 Superconductivity +0710.2761 +0710.2765 +0710.2766 Strongly Correlated Electrons +0710.2776 +0710.2777 +0710.2779 Other Condensed Matter +0710.2791 Pattern Formation and Solitons +0710.2806 Mesoscale and Nanoscale Physics +0710.2811 Strongly Correlated Electrons +0710.2813 +0710.2815 +0710.2820 Optics +0710.2825 +0710.2826 Mesoscale and Nanoscale Physics +0710.2828 Strongly Correlated Electrons +0710.2829 Statistical Mechanics +0710.2833 +0710.2835 Physics and Society +0710.2839 +0710.2843 Atomic Physics +0710.2845 Strongly Correlated Electrons +0710.2854 Chemical Physics +0710.2855 +0710.2867 +0710.2873 Optics +0710.2874 Optics +0710.2882 +0710.2888 Statistical Mechanics +0710.2892 +0710.2899 +0710.2900 +0710.2902 +0710.2909 Other Condensed Matter +0710.2916 +0710.2920 Materials Science +0710.2939 Physics and Society +0710.2941 +0710.2953 Mesoscale and Nanoscale Physics +0710.2962 Superconductivity +0710.2967 Superconductivity +0710.2986 +0710.2992 Physics and Society +0710.2997 +0710.2999 Chemical Physics +0710.3010 +0710.3011 Strongly Correlated Electrons +0710.3012 +0710.3013 +0710.3029 Statistical Mechanics +0710.3030 +0710.3041 +0710.3043 +0710.3045 Mesoscale and Nanoscale Physics +0710.3054 +0710.3058 Physics and Society +0710.3059 +0710.3062 +0710.3065 +0710.3076 +0710.3081 Biological Physics +0710.3087 Statistical Mechanics +0710.3088 Strongly Correlated Electrons +0710.3092 +0710.3094 Superconductivity +0710.3097 Strongly Correlated Electrons +0710.3099 +0710.3104 +0710.3105 +0710.3110 Superconductivity +0710.3117 +0710.3118 Fluid Dynamics +0710.3120 +0710.3121 +0710.3122 +0710.3131 Superconductivity +0710.3136 +0710.3141 +0710.3145 Atomic Physics +0710.3158 Disordered Systems and Neural Networks +0710.3159 +0710.3160 +0710.3161 +0710.3164 +0710.3165 +0710.3166 +0710.3167 +0710.3176 Optics +0710.3180 +0710.3190 +0710.3192 +0710.3197 Soft Condensed Matter +0710.3202 +0710.3209 Pattern Formation and Solitons +0710.3211 Mesoscale and Nanoscale Physics +0710.3222 Mesoscale and Nanoscale Physics +0710.3223 +0710.3224 +0710.3239 Strongly Correlated Electrons +0710.3243 Soft Condensed Matter +0710.3247 Disordered Systems and Neural Networks +0710.3252 +0710.3254 Soft Condensed Matter +0710.3270 +0710.3291 Optics +0710.3295 Disordered Systems and Neural Networks +0710.3304 +0710.3307 Mesoscale and Nanoscale Physics +0710.3313 +0710.3314 +0710.3315 +0710.3317 Superconductivity +0710.3320 Disordered Systems and Neural Networks +0710.3324 +0710.3333 Soft Condensed Matter +0710.3335 +0710.3340 +0710.3345 +0710.3347 +0710.3351 +0710.3354 Materials Science +0710.3363 +0710.3364 +0710.3370 Other Condensed Matter +0710.3373 Pattern Formation and Solitons +0710.3376 Superconductivity +0710.3381 +0710.3382 Materials Science +0710.3383 +0710.3385 Atomic Physics +0710.3394 +0710.3397 +0710.3399 +0710.3400 +0710.3404 Optics +0710.3406 +0710.3411 Materials Science +0710.3417 Atomic Physics +0710.3428 +0710.3436 Populations and Evolution +0710.3437 Superconductivity +0710.3441 Instrumentation and Detectors +0710.3442 Disordered Systems and Neural Networks +0710.3448 Other Condensed Matter +0710.3450 +0710.3461 +0710.3463 Strongly Correlated Electrons +0710.3465 Statistical Mechanics +0710.3474 Mesoscale and Nanoscale Physics +0710.3477 +0710.3487 Mesoscale and Nanoscale Physics +0710.3488 Superconductivity +0710.3499 +0710.3504 +0710.3505 Superconductivity +0710.3512 +0710.3516 +0710.3530 +0710.3541 +0710.3542 Mesoscale and Nanoscale Physics +0710.3548 +0710.3557 +0710.3558 +0710.3560 +0710.3563 Plasma Physics +0710.3566 Physics and Society +0710.3578 +0710.3581 +0710.3588 +0710.3591 +0710.3599 +0710.3613 Superconductivity +0710.3615 Superconductivity +0710.3616 +0710.3618 +0710.3625 Lattice +0710.3631 +0710.3636 +0710.3646 Statistical Mechanics +0710.3648 +0710.3660 Atomic Physics +0710.3682 +0710.3686 +0710.3690 +0710.3692 Statistical Mechanics +0710.3695 Superconductivity +0710.3696 +0710.3698 +0710.3704 +0710.3721 Strongly Correlated Electrons +0710.3723 Materials Science +0710.3725 Mesoscale and Nanoscale Physics +0710.3728 Numerical Analysis +0710.3734 Soft Condensed Matter +0710.3735 Statistical Mechanics +0710.3745 +0710.3750 +0710.3753 +0710.3754 +0710.3758 Soft Condensed Matter +0710.3759 Atomic Physics +0710.3763 +0710.3803 +0710.3809 +0710.3847 +0710.3850 +0710.3852 Strongly Correlated Electrons +0710.3854 +0710.3862 Fluid Dynamics +0710.3864 Complex Variables +0710.3866 +0710.3867 +0710.3889 Molecular Networks +0710.3891 Superconductivity +0710.3893 +0710.3907 Physics and Society +0710.3910 Atomic and Molecular Clusters +0710.3914 +0710.3915 Spectral Theory +0710.3926 Strongly Correlated Electrons +0710.3932 Strongly Correlated Electrons +0710.3934 +0710.3943 Superconductivity +0710.3963 Materials Science +0710.3990 +0710.3992 Spectral Theory +0710.3999 +0710.4004 Dynamical Systems +0710.4008 Physics and Society +0710.4010 Statistical Finance +0710.4013 Strongly Correlated Electrons +0710.4014 Plasma Physics +0710.4029 +0710.4036 +0710.4039 +0710.4048 +0710.4054 +0710.4063 Chaotic Dynamics +0710.4066 Chaotic Dynamics +0710.4069 Strongly Correlated Electrons +0710.4070 +0710.4083 Statistical Mechanics +0710.4084 Algebraic Geometry +0710.4092 Other Condensed Matter +0710.4093 +0710.4097 Statistical Mechanics +0710.4104 Superconductivity +0710.4107 Soft Condensed Matter +0710.4115 +0710.4122 Materials Science +0710.4123 +0710.4129 +0710.4132 +0710.4137 +0710.4142 +0710.4144 +0710.4145 +0710.4146 +0710.4154 Materials Science +0710.4157 +0710.4163 +0710.4168 +0710.4175 Complex Variables +0710.4178 Materials Science +0710.4202 +0710.4204 Superconductivity +0710.4210 Mesoscale and Nanoscale Physics +0710.4226 +0710.4238 +0710.4254 +0710.4262 +0710.4277 Superconductivity +0710.4278 Optics +0710.4280 +0710.4281 Phenomenology +0710.4282 +0710.4294 +0710.4301 +0710.4304 +0710.4308 Mesoscale and Nanoscale Physics +0710.4313 Mesoscale and Nanoscale Physics +0710.4314 Soft Condensed Matter +0710.4321 +0710.4328 +0710.4332 Statistical Mechanics +0710.4341 Strongly Correlated Electrons +0710.4354 +0710.4359 Soft Condensed Matter +0710.4366 Differential Geometry +0710.4367 Superconductivity +0710.4371 Strongly Correlated Electrons +0710.4372 +0710.4388 Optics +0710.4397 +0710.4399 Materials Science +0710.4401 +0710.4402 +0710.4419 Other Condensed Matter +0710.4422 Lattice +0710.4425 +0710.4435 Other Condensed Matter +0710.4440 Strongly Correlated Electrons +0710.4444 Strongly Correlated Electrons +0710.4446 History and Philosophy of Physics +0710.4448 +0710.4450 +0710.4462 Strongly Correlated Electrons +0710.4465 +0710.4468 +0710.4475 Biomolecules +0710.4480 Materials Science +0710.4491 Superconductivity +0710.4503 +0710.4505 Optics +0710.4511 Atomic Physics +0710.4519 +0710.4523 +0710.4524 +0710.4527 Statistical Mechanics +0710.4545 +0710.4549 +0710.4550 Materials Science +0710.4553 +0710.4555 +0710.4556 +0710.4558 Soft Condensed Matter +0710.4559 +0710.4562 Soft Condensed Matter +0710.4567 +0710.4572 Other Condensed Matter +0710.4575 Soft Condensed Matter +0710.4578 Soft Condensed Matter +0710.4581 Superconductivity +0710.4582 +0710.4584 +0710.4588 +0710.4590 +0710.4595 Mesoscale and Nanoscale Physics +0710.4601 +0710.4602 +0710.4610 Other Condensed Matter +0710.4611 Soft Condensed Matter +0710.4650 +0710.4674 +0710.4726 +0710.4770 Strongly Correlated Electrons +0710.4776 +0710.4777 Materials Science +0710.4782 Superconductivity +0710.4785 Materials Science +0710.4786 +0710.4804 Optics +0710.4841 Materials Science +0710.4849 Plasma Physics +0710.4853 +0710.4858 +0710.4859 +0710.4863 +0710.4883 +0710.4886 Disordered Systems and Neural Networks +0710.4892 Chemical Physics +0710.4901 Other Condensed Matter +0710.4904 Chemical Physics +0710.4915 +0710.4922 +0710.4926 Materials Science +0710.4927 Soft Condensed Matter +0710.4934 +0710.4938 Strongly Correlated Electrons +0710.4941 +0710.4950 +0710.4956 +0710.4960 Soft Condensed Matter +0710.4968 +0710.4969 +0710.4972 Plasma Physics +0710.4973 Materials Science +0710.4984 Mesoscale and Nanoscale Physics +0710.4986 +0710.4988 Adaptation and Self-Organizing Systems +0710.5000 Other Condensed Matter +0710.5008 Materials Science +0710.5023 +0710.5028 +0710.5029 Strongly Correlated Electrons +0710.5033 +0710.5035 +0710.5037 +0710.5042 +0710.5045 Statistical Mechanics +0710.5047 +0710.5048 +0710.5053 Superconductivity +0710.5057 +0710.5059 Soft Condensed Matter +0710.5078 +0710.5082 +0710.5083 Other Condensed Matter +0710.5094 Statistical Mechanics +0710.5095 Mesoscale and Nanoscale Physics +0710.5096 +0710.5102 Optics +0710.5113 +0710.5122 Materials Science +0710.5123 +0710.5128 +0710.5145 +0710.5162 +0710.5163 +0710.5164 Materials Science +0710.5171 +0710.5173 +0710.5179 +0710.5183 +0710.5187 Other Condensed Matter +0710.5193 Mesoscale and Nanoscale Physics +0710.5196 Strongly Correlated Electrons +0710.5208 Materials Science +0710.5219 +0710.5220 +0710.5221 +0710.5223 Other Condensed Matter +0710.5225 +0710.5244 +0710.5248 +0710.5249 +0710.5253 +0710.5259 Mesoscale and Nanoscale Physics +0710.5260 Mesoscale and Nanoscale Physics +0710.5271 +0710.5280 Other Condensed Matter +0710.5281 Other Condensed Matter +0710.5284 Chaotic Dynamics +0710.5285 +0710.5286 +0710.5298 Statistical Mechanics +0710.5302 +0710.5306 +0710.5315 Soft Condensed Matter +0710.5316 Mesoscale and Nanoscale Physics +0710.5318 Other Condensed Matter +0710.5324 +0710.5325 Strongly Correlated Electrons +0710.5330 +0710.5334 Mesoscale and Nanoscale Physics +0710.5345 +0710.5354 +0710.5359 +0710.5377 Phenomenology +0710.5381 Quantum Algebra +0710.5383 +0710.5389 Materials Science +0710.5390 +0710.5393 +0710.5397 +0710.5401 Other Condensed Matter +0710.5411 Exactly Solvable and Integrable Systems +0710.5412 Strongly Correlated Electrons +0710.5413 Materials Science +0710.5416 Disordered Systems and Neural Networks +0710.5418 +0710.5422 Superconductivity +0710.5429 +0710.5435 +0710.5437 +0710.5440 +0710.5444 Optics +0710.5446 Chaotic Dynamics +0710.5452 +0710.5454 Symplectic Geometry +0710.5456 Exactly Solvable and Integrable Systems +0710.5459 Soft Condensed Matter +0710.5463 Instrumentation and Detectors +0710.5470 Statistical Mechanics +0710.5473 +0710.5476 +0710.5486 +0710.5488 +0710.5489 +0710.5493 +0710.5495 Statistical Mechanics +0710.5499 Chemical Physics +0710.5502 +0710.5503 +0710.5504 +0710.5506 Other Condensed Matter +0710.5507 Strongly Correlated Electrons +0710.5510 Soft Condensed Matter +0710.5513 +0710.5514 +0710.5520 +0710.5521 +0710.5526 +0710.5529 +0710.5531 +0710.5532 +0710.5538 Mesoscale and Nanoscale Physics +0710.5541 Optics +0710.5544 +0710.5548 +0710.5550 Other Condensed Matter +0710.5551 Soft Condensed Matter +0710.5554 Mesoscale and Nanoscale Physics +0710.5555 Superconductivity +0710.5558 Other Condensed Matter +0710.5560 +0710.5564 Materials Science +0710.5576 +0710.5580 +0710.5584 +0710.5591 +0710.5598 Soft Condensed Matter +0710.5604 Experiment +0710.5609 +0710.5610 +0710.5612 Plasma Physics +0710.5623 Superconductivity +0710.5626 Plasma Physics +0710.5630 Atomic Physics +0710.5644 Statistical Mechanics +0710.5651 +0710.5655 Exactly Solvable and Integrable Systems +0710.5656 +0710.5672 Chemical Physics +0710.5680 Materials Science +0710.5682 +0710.5683 Dynamical Systems +0710.5687 Dynamical Systems +0710.5701 +0710.5706 Mesoscale and Nanoscale Physics +0710.5707 +0710.5720 Strongly Correlated Electrons +0710.5726 Phenomenology +0710.5727 +0710.5732 +0710.5733 +0710.5747 Superconductivity +0710.5748 Other Condensed Matter +0710.5759 +0710.5760 Materials Science +0710.5767 +0710.5770 +0710.5776 +0710.5777 Optics +0710.5781 Superconductivity +0710.5784 Soft Condensed Matter +0710.5788 +0710.5789 +0710.5812 Other Condensed Matter +0710.5821 Superconductivity +0710.5831 +0710.5842 Strongly Correlated Electrons +0710.5854 Probability +0710.5861 Superconductivity +0710.5867 Experiment +0710.5870 Soft Condensed Matter +0710.5881 +0710.5882 +0710.5883 Soft Condensed Matter +0710.5889 Soft Condensed Matter +0710.5891 +0710.5908 +0710.5912 Statistical Mechanics +0710.5924 Mesoscale and Nanoscale Physics +0710.5930 +0710.5941 Superconductivity +0710.5945 +0711.0001 +0711.0002 +0711.0007 +0711.0010 Mesoscale and Nanoscale Physics +0711.0018 +0711.0019 +0711.0029 Other Condensed Matter +0711.0030 Statistical Mechanics +0711.0039 +0711.0040 +0711.0043 +0711.0046 Mesoscale and Nanoscale Physics +0711.0049 +0711.0050 Materials Science +0711.0051 +0711.0069 +0711.0093 Superconductivity +0711.0098 Other Condensed Matter +0711.0099 +0711.0100 Strongly Correlated Electrons +0711.0118 +0711.0121 Strongly Correlated Electrons +0711.0126 +0711.0136 Superconductivity +0711.0153 Other Condensed Matter +0711.0166 +0711.0168 Materials Science +0711.0172 Materials Science +0711.0182 Other Condensed Matter +0711.0183 Optics +0711.0190 +0711.0196 +0711.0205 Statistical Mechanics +0711.0210 Mesoscale and Nanoscale Physics +0711.0211 +0711.0213 +0711.0215 +0711.0216 Phenomenology +0711.0228 Soft Condensed Matter +0711.0231 +0711.0234 Theory +0711.0238 +0711.0246 Statistical Mechanics +0711.0247 +0711.0248 +0711.0249 +0711.0250 +0711.0253 +0711.0257 +0711.0263 +0711.0264 +0711.0265 +0711.0266 +0711.0267 +0711.0270 Statistical Mechanics +0711.0274 +0711.0283 Cell Behavior +0711.0289 Statistical Mechanics +0711.0294 Superconductivity +0711.0297 +0711.0298 Materials Science +0711.0302 +0711.0308 Soft Condensed Matter +0711.0317 +0711.0328 +0711.0329 +0711.0335 +0711.0340 Materials Science +0711.0359 +0711.0368 +0711.0369 Disordered Systems and Neural Networks +0711.0378 +0711.0379 Atomic Physics +0711.0384 +0711.0388 Soft Condensed Matter +0711.0391 +0711.0398 Biological Physics +0711.0408 +0711.0425 Superconductivity +0711.0427 +0711.0435 +0711.0437 +0711.0440 Superconductivity +0711.0452 Physics Education +0711.0454 Optics +0711.0459 Other Condensed Matter +0711.0463 Quantum Algebra +0711.0466 +0711.0468 +0711.0475 +0711.0480 Superconductivity +0711.0498 +0711.0500 +0711.0505 +0711.0507 Optics +0711.0510 +0711.0515 +0711.0516 Strongly Correlated Electrons +0711.0519 Mesoscale and Nanoscale Physics +0711.0521 Phenomenology +0711.0523 +0711.0526 +0711.0536 +0711.0539 +0711.0545 +0711.0554 Molecular Networks +0711.0559 +0711.0569 Strongly Correlated Electrons +0711.0575 +0711.0586 Mesoscale and Nanoscale Physics +0711.0592 Dynamical Systems +0711.0594 +0711.0601 +0711.0611 +0711.0633 +0711.0639 Materials Science +0711.0640 Superconductivity +0711.0643 +0711.0647 +0711.0648 +0711.0651 +0711.0652 +0711.0657 +0711.0663 +0711.0671 Strongly Correlated Electrons +0711.0677 Statistical Mechanics +0711.0682 Statistical Mechanics +0711.0684 +0711.0703 +0711.0714 +0711.0721 +0711.0726 +0711.0729 Statistical Finance +0711.0739 Strongly Correlated Electrons +0711.0751 +0711.0762 Other Condensed Matter +0711.0767 Materials Science +0711.0771 +0711.0772 Optics +0711.0773 +0711.0775 +0711.0787 Materials Science +0711.0794 +0711.0799 +0711.0803 Materials Science +0711.0806 +0711.0808 +0711.0813 Materials Science +0711.0818 Strongly Correlated Electrons +0711.0820 +0711.0823 Superconductivity +0711.0831 Statistical Mechanics +0711.0837 +0711.0839 Instrumentation and Detectors +0711.0841 +0711.0842 +0711.0851 Plasma Physics +0711.0853 Other Condensed Matter +0711.0854 Other Condensed Matter +0711.0859 +0711.0861 Other Condensed Matter +0711.0870 Disordered Systems and Neural Networks +0711.0882 +0711.0884 Pattern Formation and Solitons +0711.0888 +0711.0890 Materials Science +0711.0901 Chaotic Dynamics +0711.0912 Materials Science +0711.0918 Statistical Mechanics +0711.0920 Soft Condensed Matter +0711.0925 +0711.0926 +0711.0927 Mesoscale and Nanoscale Physics +0711.0933 +0711.0943 +0711.0954 Computational Physics +0711.0959 +0711.0967 +0711.0971 Statistical Mechanics +0711.0978 +0711.0988 +0711.0997 +0711.1005 Mesoscale and Nanoscale Physics +0711.1009 Superconductivity +0711.1018 Mesoscale and Nanoscale Physics +0711.1020 Strongly Correlated Electrons +0711.1028 Space Physics +0711.1039 Soft Condensed Matter +0711.1040 Disordered Systems and Neural Networks +0711.1042 Optics +0711.1043 +0711.1046 +0711.1051 Strongly Correlated Electrons +0711.1052 Strongly Correlated Electrons +0711.1054 +0711.1062 Superconductivity +0711.1065 Other Condensed Matter +0711.1066 Strongly Correlated Electrons +0711.1071 Atomic Physics +0711.1076 +0711.1080 Materials Science +0711.1083 +0711.1085 Statistical Mechanics +0711.1089 +0711.1093 +0711.1094 +0711.1105 +0711.1107 +0711.1109 +0711.1110 +0711.1118 +0711.1122 Optics +0711.1125 Soft Condensed Matter +0711.1128 Physics and Society +0711.1129 Mesoscale and Nanoscale Physics +0711.1133 Disordered Systems and Neural Networks +0711.1137 +0711.1139 +0711.1142 +0711.1144 +0711.1147 Exactly Solvable and Integrable Systems +0711.1148 Statistical Mechanics +0711.1152 +0711.1158 +0711.1162 +0711.1164 +0711.1167 +0711.1168 Strongly Correlated Electrons +0711.1169 Pattern Formation and Solitons +0711.1172 Mesoscale and Nanoscale Physics +0711.1173 Statistical Mechanics +0711.1184 Atomic Physics +0711.1186 Dynamical Systems +0711.1195 +0711.1196 +0711.1202 Mesoscale and Nanoscale Physics +0711.1211 +0711.1212 +0711.1216 Mesoscale and Nanoscale Physics +0711.1217 Differential Geometry +0711.1219 Soft Condensed Matter +0711.1224 Mesoscale and Nanoscale Physics +0711.1225 Statistical Mechanics +0711.1232 +0711.1234 +0711.1235 Physics and Society +0711.1237 +0711.1241 Strongly Correlated Electrons +0711.1244 +0711.1245 Biological Physics +0711.1255 Statistical Mechanics +0711.1259 Strongly Correlated Electrons +0711.1260 Disordered Systems and Neural Networks +0711.1263 Strongly Correlated Electrons +0711.1265 Classical Analysis and ODEs +0711.1267 +0711.1274 +0711.1276 +0711.1281 +0711.1283 +0711.1289 +0711.1293 Mesoscale and Nanoscale Physics +0711.1294 Mesoscale and Nanoscale Physics +0711.1301 Materials Science +0711.1303 Mesoscale and Nanoscale Physics +0711.1304 Cell Behavior +0711.1305 +0711.1310 Statistical Mechanics +0711.1314 +0711.1317 Superconductivity +0711.1320 +0711.1325 Mesoscale and Nanoscale Physics +0711.1335 Materials Science +0711.1340 +0711.1341 Other Condensed Matter +0711.1344 +0711.1354 +0711.1357 +0711.1358 +0711.1360 Physics and Society +0711.1361 +0711.1367 Atomic Physics +0711.1370 +0711.1375 +0711.1376 +0711.1377 +0711.1390 +0711.1394 +0711.1397 +0711.1411 +0711.1413 +0711.1419 +0711.1426 Materials Science +0711.1429 Fluid Dynamics +0711.1432 +0711.1434 +0711.1444 Strongly Correlated Electrons +0711.1448 Other Condensed Matter +0711.1469 Other Condensed Matter +0711.1475 Mesoscale and Nanoscale Physics +0711.1479 Analysis of PDEs +0711.1482 Mesoscale and Nanoscale Physics +0711.1486 Computational Physics +0711.1491 +0711.1493 +0711.1495 +0711.1497 Strongly Correlated Electrons +0711.1499 +0711.1502 +0711.1504 Superconductivity +0711.1507 Statistical Mechanics +0711.1510 Strongly Correlated Electrons +0711.1519 +0711.1521 +0711.1526 +0711.1528 Materials Science +0711.1540 +0711.1542 +0711.1543 Superconductivity +0711.1545 +0711.1550 +0711.1555 +0711.1558 Other Condensed Matter +0711.1572 +0711.1574 Other Condensed Matter +0711.1577 Materials Science +0711.1581 Statistical Mechanics +0711.1588 +0711.1589 +0711.1607 Soft Condensed Matter +0711.1624 +0711.1628 Soft Condensed Matter +0711.1629 Materials Science +0711.1637 +0711.1640 Mesoscale and Nanoscale Physics +0711.1646 +0711.1652 Physics and Society +0711.1653 Physics and Society +0711.1654 Physics and Society +0711.1660 Statistical Mechanics +0711.1677 +0711.1684 Classical Physics +0711.1690 Soft Condensed Matter +0711.1692 +0711.1693 Strongly Correlated Electrons +0711.1696 +0711.1702 Superconductivity +0711.1704 +0711.1706 Superconductivity +0711.1715 +0711.1724 Materials Science +0711.1726 Statistical Mechanics +0711.1729 +0711.1732 Strongly Correlated Electrons +0711.1741 Soft Condensed Matter +0711.1746 +0711.1749 +0711.1750 Geophysics +0711.1756 +0711.1770 Materials Science +0711.1775 +0711.1779 +0711.1782 Disordered Systems and Neural Networks +0711.1785 Materials Science +0711.1787 Mesoscale and Nanoscale Physics +0711.1798 Statistical Mechanics +0711.1811 Atomic Physics +0711.1813 +0711.1815 +0711.1822 Soft Condensed Matter +0711.1829 +0711.1832 +0711.1835 Statistical Mechanics +0711.1836 Physics and Society +0711.1843 +0711.1844 Strongly Correlated Electrons +0711.1848 Mesoscale and Nanoscale Physics +0711.1849 Statistical Mechanics +0711.1853 Chaotic Dynamics +0711.1857 +0711.1858 +0711.1861 +0711.1862 +0711.1864 Materials Science +0711.1865 +0711.1877 +0711.1882 +0711.1888 +0711.1895 Pattern Formation and Solitons +0711.1896 Other Condensed Matter +0711.1900 Mesoscale and Nanoscale Physics +0711.1901 +0711.1902 +0711.1903 Materials Science +0711.1907 Atomic Physics +0711.1920 Materials Science +0711.1923 +0711.1924 Soft Condensed Matter +0711.1929 +0711.1931 Statistical Mechanics +0711.1936 +0711.1947 Statistical Mechanics +0711.1958 Atomic Physics +0711.1959 +0711.1964 Atomic Physics +0711.1968 Optics +0711.1970 +0711.1980 +0711.1989 Populations and Evolution +0711.1994 +0711.1999 +0711.2001 Neurons and Cognition +0711.2002 +0711.2004 Materials Science +0711.2011 +0711.2015 +0711.2017 +0711.2021 Materials Science +0711.2022 Statistical Mechanics +0711.2024 +0711.2025 +0711.2026 +0711.2030 Other Condensed Matter +0711.2039 +0711.2040 Optics +0711.2041 +0711.2045 +0711.2049 +0711.2052 Optics +0711.2053 +0711.2055 +0711.2060 Strongly Correlated Electrons +0711.2063 Numerical Analysis +0711.2064 +0711.2066 +0711.2070 Disordered Systems and Neural Networks +0711.2071 +0711.2073 +0711.2076 +0711.2078 +0711.2083 Algebraic Geometry +0711.2085 +0711.2089 +0711.2094 +0711.2095 +0711.2103 +0711.2106 +0711.2109 +0711.2111 +0711.2124 Mesoscale and Nanoscale Physics +0711.2127 Materials Science +0711.2148 +0711.2156 +0711.2161 Superconductivity +0711.2163 +0711.2165 Adaptation and Self-Organizing Systems +0711.2166 +0711.2179 Populations and Evolution +0711.2180 +0711.2183 Statistical Mechanics +0711.2192 +0711.2193 +0711.2197 Statistical Mechanics +0711.2203 +0711.2205 Mesoscale and Nanoscale Physics +0711.2207 +0711.2210 +0711.2215 +0711.2218 Spectral Theory +0711.2219 Statistical Mechanics +0711.2220 Soft Condensed Matter +0711.2235 Strongly Correlated Electrons +0711.2242 Statistical Mechanics +0711.2249 +0711.2259 +0711.2261 +0711.2263 +0711.2264 +0711.2267 +0711.2281 +0711.2284 Fluid Dynamics +0711.2287 Atomic Physics +0711.2288 +0711.2289 +0711.2290 +0711.2294 Superconductivity +0711.2295 +0711.2302 +0711.2303 +0711.2305 +0711.2309 Other Condensed Matter +0711.2312 +0711.2317 +0711.2323 Statistical Mechanics +0711.2327 +0711.2332 Optics +0711.2333 +0711.2337 +0711.2339 Superconductivity +0711.2343 Mesoscale and Nanoscale Physics +0711.2344 +0711.2352 +0711.2355 +0711.2358 +0711.2362 +0711.2363 +0711.2365 +0711.2376 Plasma Physics +0711.2379 +0711.2380 General Physics +0711.2385 Plasma Physics +0711.2388 Statistical Mechanics +0711.2392 +0711.2393 +0711.2396 Materials Science +0711.2398 +0711.2407 Mesoscale and Nanoscale Physics +0711.2414 Mesoscale and Nanoscale Physics +0711.2416 +0711.2421 Statistical Mechanics +0711.2430 +0711.2436 Pattern Formation and Solitons +0711.2437 +0711.2438 Chaotic Dynamics +0711.2449 +0711.2456 +0711.2457 +0711.2458 +0711.2459 Strongly Correlated Electrons +0711.2471 +0711.2476 Strongly Correlated Electrons +0711.2479 Other Condensed Matter +0711.2480 +0711.2481 +0711.2482 Mesoscale and Nanoscale Physics +0711.2491 Materials Science +0711.2493 Materials Science +0711.2494 Superconductivity +0711.2497 Molecular Networks +0711.2505 +0711.2508 +0711.2509 +0711.2515 +0711.2517 +0711.2523 Materials Science +0711.2530 +0711.2537 +0711.2539 Materials Science +0711.2540 +0711.2561 +0711.2569 +0711.2572 +0711.2581 +0711.2586 Strongly Correlated Electrons +0711.2595 +0711.2596 +0711.2598 Other Condensed Matter +0711.2599 Exactly Solvable and Integrable Systems +0711.2602 Other Condensed Matter +0711.2611 Chaotic Dynamics +0711.2617 +0711.2620 +0711.2627 +0711.2631 +0711.2638 Differential Geometry +0711.2641 Statistical Mechanics +0711.2643 Disordered Systems and Neural Networks +0711.2647 +0711.2654 Biomolecules +0711.2681 Mesoscale and Nanoscale Physics +0711.2682 +0711.2685 +0711.2688 +0711.2691 Materials Science +0711.2717 Exactly Solvable and Integrable Systems +0711.2725 Mesoscale and Nanoscale Physics +0711.2729 Data Analysis, Statistics and Probability +0711.2732 Statistical Mechanics +0711.2733 Materials Science +0711.2752 +0711.2754 +0711.2757 Physics and Society +0711.2763 Soft Condensed Matter +0711.2765 +0711.2768 +0711.2773 +0711.2778 Other Condensed Matter +0711.2783 +0711.2785 Exactly Solvable and Integrable Systems +0711.2813 +0711.2827 +0711.2829 Fluid Dynamics +0711.2839 +0711.2841 +0711.2850 Chaotic Dynamics +0711.2851 Chaotic Dynamics +0711.2855 Data Analysis, Statistics and Probability +0711.2857 +0711.2864 Optics +0711.2866 +0711.2872 Pattern Formation and Solitons +0711.2874 Strongly Correlated Electrons +0711.2883 Soft Condensed Matter +0711.2886 +0711.2891 Superconductivity +0711.2896 Materials Science +0711.2900 Strongly Correlated Electrons +0711.2905 Disordered Systems and Neural Networks +0711.2919 +0711.2923 +0711.2930 Strongly Correlated Electrons +0711.2939 +0711.2943 +0711.2944 +0711.2945 Tissues and Organs +0711.2946 +0711.2963 Statistical Mechanics +0711.2976 +0711.2984 Statistical Mechanics +0711.2993 Statistical Mechanics +0711.2999 Statistical Mechanics +0711.3002 Strongly Correlated Electrons +0711.3005 +0711.3016 Disordered Systems and Neural Networks +0711.3034 +0711.3036 +0711.3055 +0711.3062 Mesoscale and Nanoscale Physics +0711.3068 Physics and Society +0711.3071 +0711.3075 Strongly Correlated Electrons +0711.3078 Superconductivity +0711.3079 +0711.3085 +0711.3088 Populations and Evolution +0711.3089 +0711.3095 Superconductivity +0711.3101 Pattern Formation and Solitons +0711.3103 Cellular Automata and Lattice Gases +0711.3112 +0711.3117 +0711.3120 +0711.3121 Atomic Physics +0711.3127 Materials Science +0711.3132 Atomic Physics +0711.3135 Statistical Mechanics +0711.3139 +0711.3140 +0711.3146 +0711.3157 Phenomenology +0711.3172 +0711.3178 Materials Science +0711.3179 +0711.3181 +0711.3182 +0711.3188 Materials Science +0711.3202 Mesoscale and Nanoscale Physics +0711.3206 Mesoscale and Nanoscale Physics +0711.3209 +0711.3212 +0711.3213 Statistical Mechanics +0711.3216 Mesoscale and Nanoscale Physics +0711.3224 Algebraic Geometry +0711.3227 +0711.3232 +0711.3238 Atomic Physics +0711.3260 +0711.3278 Mesoscale and Nanoscale Physics +0711.3283 Geophysics +0711.3307 Strongly Correlated Electrons +0711.3310 +0711.3322 +0711.3337 Disordered Systems and Neural Networks +0711.3340 Statistical Mechanics +0711.3344 +0711.3348 Statistical Mechanics +0711.3362 +0711.3394 +0711.3395 +0711.3407 +0711.3408 Theory +0711.3415 Materials Science +0711.3418 +0711.3422 Other Condensed Matter +0711.3426 Other Condensed Matter +0711.3431 Other Condensed Matter +0711.3439 +0711.3445 Disordered Systems and Neural Networks +0711.3455 +0711.3460 Strongly Correlated Electrons +0711.3467 Disordered Systems and Neural Networks +0711.3474 +0711.3477 +0711.3481 +0711.3486 +0711.3487 Strongly Correlated Electrons +0711.3489 Spectral Theory +0711.3495 Other Condensed Matter +0711.3499 +0711.3501 +0711.3505 +0711.3509 Superconductivity +0711.3511 Mesoscale and Nanoscale Physics +0711.3515 +0711.3523 +0711.3526 +0711.3529 +0711.3530 Statistical Mechanics +0711.3542 Superconductivity +0711.3543 Soft Condensed Matter +0711.3549 Other Condensed Matter +0711.3551 Pattern Formation and Solitons +0711.3555 +0711.3559 Superconductivity +0711.3560 Strongly Correlated Electrons +0711.3565 +0711.3566 Mesoscale and Nanoscale Physics +0711.3570 Optics +0711.3573 +0711.3580 Quantitative Methods +0711.3593 +0711.3601 +0711.3607 +0711.3610 Analysis of PDEs +0711.3612 +0711.3615 Physics and Society +0711.3619 Statistical Mechanics +0711.3623 Disordered Systems and Neural Networks +0711.3630 Data Analysis, Statistics and Probability +0711.3634 Materials Science +0711.3638 Mesoscale and Nanoscale Physics +0711.3647 Strongly Correlated Electrons +0711.3652 +0711.3660 +0711.3662 +0711.3667 +0711.3673 Disordered Systems and Neural Networks +0711.3676 Strongly Correlated Electrons +0711.3681 Superconductivity +0711.3697 +0711.3700 Soft Condensed Matter +0711.3710 Physics and Society +0711.3716 Disordered Systems and Neural Networks +0711.3718 Statistical Mechanics +0711.3719 Statistical Mechanics +0711.3723 +0711.3725 Plasma Physics +0711.3732 Mesoscale and Nanoscale Physics +0711.3733 Exactly Solvable and Integrable Systems +0711.3734 +0711.3737 Mesoscale and Nanoscale Physics +0711.3740 Materials Science +0711.3741 Chaotic Dynamics +0711.3747 Materials Science +0711.3748 Mesoscale and Nanoscale Physics +0711.3753 +0711.3757 Statistical Mechanics +0711.3761 +0711.3762 +0711.3769 Mesoscale and Nanoscale Physics +0711.3772 Soft Condensed Matter +0711.3775 Statistical Mechanics +0711.3777 Strongly Correlated Electrons +0711.3780 +0711.3783 +0711.3791 +0711.3793 +0711.3796 Other Condensed Matter +0711.3805 +0711.3807 Soft Condensed Matter +0711.3809 +0711.3819 +0711.3823 +0711.3824 +0711.3825 +0711.3826 Strongly Correlated Electrons +0711.3844 +0711.3848 Disordered Systems and Neural Networks +0711.3850 +0711.3853 Optics +0711.3872 Pattern Formation and Solitons +0711.3873 Probability +0711.3874 Fluid Dynamics +0711.3876 Biological Physics +0711.3887 +0711.3897 +0711.3900 Superconductivity +0711.3906 +0711.3908 +0711.3909 General Finance +0711.3912 Disordered Systems and Neural Networks +0711.3913 +0711.3921 Strongly Correlated Electrons +0711.3922 +0711.3923 Statistical Mechanics +0711.3925 +0711.3934 Disordered Systems and Neural Networks +0711.3937 +0711.3939 +0711.3952 +0711.3954 +0711.3960 Statistical Mechanics +0711.3963 Statistical Mechanics +0711.3965 +0711.3969 Mesoscale and Nanoscale Physics +0711.3977 +0711.3978 +0711.3981 Materials Science +0711.3982 Mesoscale and Nanoscale Physics +0711.3984 Materials Science +0711.3985 +0711.3993 +0711.4000 Disordered Systems and Neural Networks +0711.4002 Quantum Algebra +0711.4006 Disordered Systems and Neural Networks +0711.4010 +0711.4015 +0711.4024 Soft Condensed Matter +0711.4027 +0711.4033 Strongly Correlated Electrons +0711.4037 +0711.4041 Materials Science +0711.4051 +0711.4054 Strongly Correlated Electrons +0711.4058 Mesoscale and Nanoscale Physics +0711.4061 Probability +0711.4065 Superconductivity +0711.4069 Disordered Systems and Neural Networks +0711.4076 Mesoscale and Nanoscale Physics +0711.4077 +0711.4078 +0711.4083 Mesoscale and Nanoscale Physics +0711.4087 Biological Physics +0711.4088 Biological Physics +0711.4089 Superconductivity +0711.4090 Biological Physics +0711.4096 +0711.4099 +0711.4103 +0711.4104 +0711.4109 +0711.4111 +0711.4112 +0711.4113 +0711.4121 Strongly Correlated Electrons +0711.4123 +0711.4129 +0711.4130 +0711.4135 Chaotic Dynamics +0711.4141 +0711.4144 Operator Algebras +0711.4150 Mesoscale and Nanoscale Physics +0711.4158 +0711.4159 Optics +0711.4168 Physics and Society +0711.4170 Strongly Correlated Electrons +0711.4171 +0711.4172 Optics +0711.4173 +0711.4174 Superconductivity +0711.4177 +0711.4186 +0711.4189 Mesoscale and Nanoscale Physics +0711.4194 +0711.4196 +0711.4198 Materials Science +0711.4200 Mesoscale and Nanoscale Physics +0711.4204 +0711.4205 Mesoscale and Nanoscale Physics +0711.4206 +0711.4207 +0711.4212 +0711.4213 Superconductivity +0711.4216 +0711.4221 Superconductivity +0711.4227 Strongly Correlated Electrons +0711.4228 Metric Geometry +0711.4230 +0711.4233 Mesoscale and Nanoscale Physics +0711.4239 Optics +0711.4240 Materials Science +0711.4243 Soft Condensed Matter +0711.4245 +0711.4247 +0711.4256 +0711.4265 +0711.4267 +0711.4271 +0711.4279 Chemical Physics +0711.4283 Soft Condensed Matter +0711.4285 Other Condensed Matter +0711.4288 +0711.4289 +0711.4296 Strongly Correlated Electrons +0711.4297 +0711.4298 +0711.4299 +0711.4301 Optics +0711.4318 Statistical Mechanics +0711.4321 Atomic Physics +0711.4329 Optics +0711.4332 Atomic Physics +0711.4334 +0711.4338 Superconductivity +0711.4348 +0711.4349 +0711.4351 +0711.4352 +0711.4358 +0711.4359 +0711.4362 Chemical Physics +0711.4363 +0711.4367 +0711.4371 Materials Science +0711.4373 +0711.4378 +0711.4383 Materials Science +0711.4384 +0711.4389 +0711.4391 +0711.4395 +0711.4408 +0711.4414 Information Theory +0711.4418 Atomic Physics +0711.4425 Plasma Physics +0711.4428 Atomic Physics +0711.4434 Other Condensed Matter +0711.4445 +0711.4446 Mesoscale and Nanoscale Physics +0711.4454 +0711.4458 Other Condensed Matter +0711.4464 +0711.4470 +0711.4473 Soft Condensed Matter +0711.4476 Molecular Networks +0711.4483 +0711.4490 Soft Condensed Matter +0711.4502 +0711.4503 +0711.4506 Materials Science +0711.4509 Number Theory +0711.4512 Quantitative Methods +0711.4515 Materials Science +0711.4521 +0711.4534 +0711.4535 Other Condensed Matter +0711.4538 +0711.4542 +0711.4548 +0711.4549 +0711.4552 Mesoscale and Nanoscale Physics +0711.4553 Optics +0711.4560 Mesoscale and Nanoscale Physics +0711.4572 +0711.4580 Statistical Mechanics +0711.4589 +0711.4596 Statistical Finance +0711.4598 +0711.4604 +0711.4607 Atomic Physics +0711.4608 Other Condensed Matter +0711.4615 Atomic Physics +0711.4616 +0711.4619 +0711.4622 +0711.4626 +0711.4631 +0711.4638 Atomic Physics +0711.4639 Statistical Mechanics +0711.4640 Mesoscale and Nanoscale Physics +0711.4653 Adaptation and Self-Organizing Systems +0711.4654 Superconductivity +0711.4660 Materials Science +0711.4667 Atomic Physics +0711.4669 Materials Science +0711.4675 +0711.4676 +0711.4684 Mesoscale and Nanoscale Physics +0711.4685 +0711.4686 +0711.4693 +0711.4697 Mesoscale and Nanoscale Physics +0711.4702 Mesoscale and Nanoscale Physics +0711.4703 +0711.4704 Soft Condensed Matter +0711.4712 +0711.4718 Classical Physics +0711.4724 Populations and Evolution +0711.4731 Strongly Correlated Electrons +0711.4742 Materials Science +0711.4746 Mesoscale and Nanoscale Physics +0711.4750 +0711.4755 Mesoscale and Nanoscale Physics +0711.4757 +0711.4763 Computational Physics +0711.4765 Strongly Correlated Electrons +0711.4773 +0711.4775 Molecular Networks +0711.4776 Materials Science +0711.4780 Disordered Systems and Neural Networks +0711.4782 +0711.4783 +0711.4790 +0711.4792 Information Theory +0711.4794 +0711.4795 +0711.4799 +0711.4803 +0711.4804 Soft Condensed Matter +0711.4806 +0711.4807 +0711.4822 +0711.4823 +0711.4828 Materials Science +0711.4830 +0711.4833 +0711.4837 Materials Science +0711.4846 Atomic Physics +0711.4848 +0711.4850 +0711.4855 +0711.4856 +0711.4857 +0711.4862 Data Analysis, Statistics and Probability +0711.4865 Strongly Correlated Electrons +0711.4870 +0711.4879 Optics +0711.4881 Mesoscale and Nanoscale Physics +0711.4882 Mesoscale and Nanoscale Physics +0711.4886 +0711.4887 Populations and Evolution +0711.4888 +0711.4891 Statistical Mechanics +0711.4901 +0711.4902 Data Structures and Algorithms +0711.4903 +0711.4915 +0711.4918 Statistical Mechanics +0711.4936 Other Condensed Matter +0711.4937 Molecular Networks +0711.4938 +0711.4939 Materials Science +0711.4941 +0711.4945 Plasma Physics +0711.4958 +0711.4960 +0711.4970 +0711.4974 +0711.4975 +0711.4977 +0711.4978 Phenomenology +0711.4981 Mesoscale and Nanoscale Physics +0711.4984 +0711.4988 +0711.4989 +0711.5000 Soft Condensed Matter +0711.5016 Algebraic Topology +0711.5019 Materials Science +0712.0004 +0712.0005 Soft Condensed Matter +0712.0012 +0712.0021 +0712.0022 +0712.0023 +0712.0026 +0712.0030 Soft Condensed Matter +0712.0033 +0712.0040 +0712.0046 +0712.0055 Mesoscale and Nanoscale Physics +0712.0059 +0712.0078 Algebraic Geometry +0712.0100 +0712.0112 +0712.0119 Materials Science +0712.0129 Materials Science +0712.0133 Biological Physics +0712.0134 Superconductivity +0712.0140 +0712.0153 Physics and Society +0712.0158 Materials Science +0712.0161 Computational Physics +0712.0162 +0712.0166 +0712.0170 Molecular Networks +0712.0172 Superconductivity +0712.0174 Materials Science +0712.0183 Mesoscale and Nanoscale Physics +0712.0184 +0712.0187 +0712.0193 +0712.0197 +0712.0210 Mesoscale and Nanoscale Physics +0712.0218 +0712.0221 +0712.0225 Mesoscale and Nanoscale Physics +0712.0226 +0712.0240 +0712.0241 Numerical Analysis +0712.0244 +0712.0246 +0712.0247 +0712.0255 Soft Condensed Matter +0712.0259 +0712.0267 Statistical Mechanics +0712.0268 +0712.0269 +0712.0274 +0712.0277 +0712.0278 Statistical Mechanics +0712.0281 +0712.0284 Other Condensed Matter +0712.0286 Superconductivity +0712.0289 +0712.0290 Materials Science +0712.0293 Statistical Mechanics +0712.0295 Dynamical Systems +0712.0296 Strongly Correlated Electrons +0712.0302 Statistical Mechanics +0712.0308 Statistical Mechanics +0712.0309 +0712.0311 Mesoscale and Nanoscale Physics +0712.0312 Probability +0712.0313 +0712.0314 Materials Science +0712.0319 +0712.0325 Chaotic Dynamics +0712.0332 Probability +0712.0334 Atomic Physics +0712.0335 Chaotic Dynamics +0712.0337 Physics and Society +0712.0346 +0712.0347 +0712.0352 +0712.0355 Other Condensed Matter +0712.0358 +0712.0363 Metric Geometry +0712.0368 Other Condensed Matter +0712.0378 +0712.0380 Popular Physics +0712.0383 +0712.0384 +0712.0389 +0712.0398 +0712.0399 Materials Science +0712.0412 +0712.0416 +0712.0420 Soft Condensed Matter +0712.0421 Materials Science +0712.0422 Materials Science +0712.0423 +0712.0430 +0712.0432 Biological Physics +0712.0435 +0712.0442 Mesoscale and Nanoscale Physics +0712.0449 Strongly Correlated Electrons +0712.0455 +0712.0456 +0712.0457 +0712.0467 Chaotic Dynamics +0712.0478 +0712.0479 +0712.0482 +0712.0485 Instrumentation and Detectors +0712.0491 +0712.0496 +0712.0500 +0712.0502 Optics +0712.0504 Strongly Correlated Electrons +0712.0508 +0712.0510 +0712.0512 Disordered Systems and Neural Networks +0712.0515 +0712.0520 Quantum Algebra +0712.0523 +0712.0530 Materials Science +0712.0534 Statistical Mechanics +0712.0538 +0712.0548 Materials Science +0712.0551 Statistical Mechanics +0712.0553 +0712.0557 Mesoscale and Nanoscale Physics +0712.0559 Mesoscale and Nanoscale Physics +0712.0561 +0712.0564 Materials Science +0712.0578 +0712.0579 +0712.0581 Physics Education +0712.0582 +0712.0586 Plasma Physics +0712.0587 Disordered Systems and Neural Networks +0712.0588 +0712.0603 +0712.0606 Soft Condensed Matter +0712.0610 +0712.0612 +0712.0636 Optimization and Control +0712.0644 Strongly Correlated Electrons +0712.0650 Classical Physics +0712.0670 +0712.0671 +0712.0673 Computational Physics +0712.0680 +0712.0682 Mesoscale and Nanoscale Physics +0712.0690 +0712.0695 Atomic Physics +0712.0696 +0712.0716 Mesoscale and Nanoscale Physics +0712.0718 +0712.0720 Plasma Physics +0712.0725 +0712.0726 +0712.0737 Soft Condensed Matter +0712.0738 +0712.0739 +0712.0748 Materials Science +0712.0749 Chemical Physics +0712.0756 +0712.0761 +0712.0766 +0712.0772 +0712.0782 Optics +0712.0784 Computational Physics +0712.0793 +0712.0794 Atomic Physics +0712.0795 +0712.0797 Plasma Physics +0712.0801 Disordered Systems and Neural Networks +0712.0812 +0712.0816 +0712.0823 +0712.0824 +0712.0826 +0712.0831 Superconductivity +0712.0835 Strongly Correlated Electrons +0712.0838 Mesoscale and Nanoscale Physics +0712.0839 +0712.0842 +0712.0843 Materials Science +0712.0845 Mesoscale and Nanoscale Physics +0712.0859 +0712.0861 Materials Science +0712.0867 Other Condensed Matter +0712.0870 +0712.0879 Mesoscale and Nanoscale Physics +0712.0883 Quantitative Methods +0712.0889 +0712.0891 +0712.0899 +0712.0925 +0712.0927 +0712.0930 Mesoscale and Nanoscale Physics +0712.0935 Mesoscale and Nanoscale Physics +0712.0952 Mesoscale and Nanoscale Physics +0712.0955 Mesoscale and Nanoscale Physics +0712.0959 +0712.0961 +0712.0962 Mesoscale and Nanoscale Physics +0712.0976 Soft Condensed Matter +0712.0979 Statistical Mechanics +0712.0982 Soft Condensed Matter +0712.0983 +0712.0986 Pattern Formation and Solitons +0712.0988 +0712.0994 +0712.1005 +0712.1007 Strongly Correlated Electrons +0712.1009 Materials Science +0712.1010 Geometric Topology +0712.1017 Strongly Correlated Electrons +0712.1029 +0712.1033 +0712.1036 +0712.1037 +0712.1040 +0712.1043 Strongly Correlated Electrons +0712.1044 +0712.1045 Instrumentation and Detectors +0712.1048 +0712.1054 +0712.1055 Mesoscale and Nanoscale Physics +0712.1057 +0712.1059 +0712.1060 +0712.1063 Soft Condensed Matter +0712.1066 Materials Science +0712.1067 +0712.1068 Chemical Physics +0712.1070 Statistical Mechanics +0712.1071 +0712.1077 +0712.1084 +0712.1086 +0712.1090 Analysis of PDEs +0712.1091 Mesoscale and Nanoscale Physics +0712.1092 +0712.1094 Plasma Physics +0712.1095 Materials Science +0712.1096 Disordered Systems and Neural Networks +0712.1105 +0712.1108 +0712.1132 +0712.1139 Disordered Systems and Neural Networks +0712.1144 +0712.1145 +0712.1150 +0712.1153 Mesoscale and Nanoscale Physics +0712.1155 +0712.1160 +0712.1173 +0712.1174 +0712.1187 Physics Education +0712.1202 +0712.1203 Other Condensed Matter +0712.1212 +0712.1220 +0712.1222 Mesoscale and Nanoscale Physics +0712.1226 +0712.1229 +0712.1233 +0712.1239 +0712.1247 Materials Science +0712.1251 Other Condensed Matter +0712.1261 +0712.1263 +0712.1272 +0712.1274 +0712.1282 Statistical Mechanics +0712.1284 Statistical Mechanics +0712.1287 Statistical Mechanics +0712.1305 Materials Science +0712.1306 Materials Science +0712.1308 +0712.1322 Superconductivity +0712.1330 +0712.1333 Classical Analysis and ODEs +0712.1344 Disordered Systems and Neural Networks +0712.1348 +0712.1350 Instrumentation and Detectors +0712.1352 Pattern Formation and Solitons +0712.1354 Strongly Correlated Electrons +0712.1365 Populations and Evolution +0712.1368 +0712.1370 +0712.1373 Analysis of PDEs +0712.1374 +0712.1379 +0712.1382 +0712.1390 Other Condensed Matter +0712.1392 Mesoscale and Nanoscale Physics +0712.1395 Mesoscale and Nanoscale Physics +0712.1412 +0712.1415 Soft Condensed Matter +0712.1422 Mesoscale and Nanoscale Physics +0712.1428 +0712.1436 Statistical Mechanics +0712.1439 Soft Condensed Matter +0712.1441 +0712.1444 Materials Science +0712.1445 Other Condensed Matter +0712.1448 Statistical Mechanics +0712.1454 +0712.1461 Mesoscale and Nanoscale Physics +0712.1462 +0712.1467 Optics +0712.1470 +0712.1471 +0712.1476 +0712.1485 Theory +0712.1489 Optics +0712.1490 Mesoscale and Nanoscale Physics +0712.1498 +0712.1504 Mesoscale and Nanoscale Physics +0712.1508 +0712.1512 +0712.1526 Atomic Physics +0712.1527 +0712.1533 +0712.1536 +0712.1537 Strongly Correlated Electrons +0712.1541 +0712.1563 +0712.1571 +0712.1577 Physics Education +0712.1587 Atomic Physics +0712.1588 Strongly Correlated Electrons +0712.1591 +0712.1592 +0712.1598 Physics and Society +0712.1603 +0712.1606 +0712.1607 Strongly Correlated Electrons +0712.1612 +0712.1618 Optics +0712.1624 Statistical Finance +0712.1628 +0712.1629 +0712.1635 +0712.1643 +0712.1644 Phenomenology +0712.1655 +0712.1657 +0712.1677 Mesoscale and Nanoscale Physics +0712.1683 Soft Condensed Matter +0712.1693 +0712.1694 Optics +0712.1696 Mesoscale and Nanoscale Physics +0712.1704 Mesoscale and Nanoscale Physics +0712.1710 Accelerator Physics +0712.1714 +0712.1723 Physics and Society +0712.1724 +0712.1730 Other Condensed Matter +0712.1731 +0712.1735 Materials Science +0712.1736 Mesoscale and Nanoscale Physics +0712.1738 Optics +0712.1739 Statistical Mechanics +0712.1741 +0712.1743 +0712.1746 +0712.1747 Mesoscale and Nanoscale Physics +0712.1748 +0712.1750 Popular Physics +0712.1757 +0712.1773 Optics +0712.1783 Medical Physics +0712.1789 +0712.1798 Statistical Mechanics +0712.1801 +0712.1805 +0712.1806 Statistical Mechanics +0712.1816 +0712.1817 Other Condensed Matter +0712.1818 +0712.1819 +0712.1821 +0712.1824 +0712.1825 +0712.1827 +0712.1828 Superconductivity +0712.1829 +0712.1831 +0712.1856 +0712.1858 +0712.1868 +0712.1887 +0712.1890 Optics +0712.1891 Other Condensed Matter +0712.1893 Other Condensed Matter +0712.1904 +0712.1906 +0712.1920 Adaptation and Self-Organizing Systems +0712.1921 Statistical Mechanics +0712.1924 +0712.1926 Statistical Mechanics +0712.1942 Plasma Physics +0712.1945 Physics and Society +0712.1952 +0712.1960 Physics and Society +0712.1965 +0712.1970 Tissues and Organs +0712.1981 +0712.1989 Materials Science +0712.1995 +0712.2002 Strongly Correlated Electrons +0712.2005 +0712.2013 Strongly Correlated Electrons +0712.2015 +0712.2017 +0712.2018 +0712.2023 +0712.2024 Fluid Dynamics +0712.2029 +0712.2035 Statistical Mechanics +0712.2051 Spectral Theory +0712.2056 Superconductivity +0712.2057 Atomic Physics +0712.2059 Superconductivity +0712.2061 +0712.2062 Statistical Mechanics +0712.2064 Strongly Correlated Electrons +0712.2067 Superconductivity +0712.2073 +0712.2077 +0712.2082 Materials Science +0712.2087 Algebraic Topology +0712.2089 Optics +0712.2090 Biological Physics +0712.2093 +0712.2095 Mesoscale and Nanoscale Physics +0712.2097 Neurons and Cognition +0712.2101 Mesoscale and Nanoscale Physics +0712.2111 +0712.2116 +0712.2117 +0712.2119 +0712.2120 +0712.2121 Other Condensed Matter +0712.2134 +0712.2136 +0712.2138 Materials Science +0712.2148 Mesoscale and Nanoscale Physics +0712.2157 Physics and Society +0712.2159 +0712.2162 +0712.2181 Superconductivity +0712.2196 +0712.2199 Statistical Mechanics +0712.2203 +0712.2232 Materials Science +0712.2241 +0712.2242 +0712.2247 Statistical Mechanics +0712.2252 Mesoscale and Nanoscale Physics +0712.2253 Probability +0712.2263 Mesoscale and Nanoscale Physics +0712.2267 +0712.2271 +0712.2273 Superconductivity +0712.2287 +0712.2294 +0712.2297 +0712.2298 +0712.2300 +0712.2303 +0712.2305 Materials Science +0712.2306 Other Condensed Matter +0712.2307 +0712.2315 Mesoscale and Nanoscale Physics +0712.2317 Data Analysis, Statistics and Probability +0712.2325 Mesoscale and Nanoscale Physics +0712.2326 +0712.2335 Data Analysis, Statistics and Probability +0712.2339 +0712.2346 +0712.2352 Methodology +0712.2354 Disordered Systems and Neural Networks +0712.2375 +0712.2380 Strongly Correlated Electrons +0712.2385 Materials Science +0712.2388 Materials Science +0712.2391 +0712.2395 +0712.2396 +0712.2398 Biomolecules +0712.2414 Mesoscale and Nanoscale Physics +0712.2415 +0712.2416 Plasma Physics +0712.2426 Disordered Systems and Neural Networks +0712.2436 +0712.2446 Soft Condensed Matter +0712.2452 +0712.2457 +0712.2461 +0712.2465 Superconductivity +0712.2474 +0712.2475 Strongly Correlated Electrons +0712.2478 Biological Physics +0712.2489 +0712.2493 Statistical Mechanics +0712.2503 Exactly Solvable and Integrable Systems +0712.2506 Computational Physics +0712.2508 +0712.2509 +0712.2510 Optics +0712.2512 Experiment +0712.2513 +0712.2515 Probability +0712.2518 Strongly Correlated Electrons +0712.2520 +0712.2529 Optics +0712.2531 Computational Physics +0712.2539 Statistical Mechanics +0712.2543 Fluid Dynamics +0712.2548 +0712.2555 +0712.2564 Atmospheric and Oceanic Physics +0712.2572 +0712.2576 +0712.2584 +0712.2596 Superconductivity +0712.2621 +0712.2635 Materials Science +0712.2646 +0712.2652 Analysis of PDEs +0712.2654 Populations and Evolution +0712.2655 Superconductivity +0712.2658 Disordered Systems and Neural Networks +0712.2660 Strongly Correlated Electrons +0712.2663 +0712.2665 +0712.2669 +0712.2675 Phenomenology +0712.2679 Soft Condensed Matter +0712.2689 Soft Condensed Matter +0712.2692 +0712.2704 +0712.2705 Statistical Mechanics +0712.2706 +0712.2712 Chaotic Dynamics +0712.2713 Other Condensed Matter +0712.2715 +0712.2722 Materials Science +0712.2729 +0712.2730 Strongly Correlated Electrons +0712.2732 Plasma Physics +0712.2734 +0712.2746 Strongly Correlated Electrons +0712.2759 +0712.2760 +0712.2767 Mesoscale and Nanoscale Physics +0712.2776 +0712.2780 +0712.2782 Superconductivity +0712.2783 Mesoscale and Nanoscale Physics +0712.2784 +0712.2790 Materials Science +0712.2791 +0712.2797 Mesoscale and Nanoscale Physics +0712.2807 Optics +0712.2810 +0712.2818 +0712.2820 +0712.2823 +0712.2834 Mesoscale and Nanoscale Physics +0712.2840 Other Condensed Matter +0712.2841 Strongly Correlated Electrons +0712.2842 Pattern Formation and Solitons +0712.2852 +0712.2855 Strongly Correlated Electrons +0712.2868 Strongly Correlated Electrons +0712.2878 +0712.2882 +0712.2883 +0712.2885 +0712.2899 Pattern Formation and Solitons +0712.2901 Statistical Mechanics +0712.2902 +0712.2907 Mesoscale and Nanoscale Physics +0712.2910 Trading and Market Microstructure +0712.2911 +0712.2915 Other Condensed Matter +0712.2920 Statistical Mechanics +0712.2921 +0712.2925 Other Condensed Matter +0712.2927 General Physics +0712.2931 +0712.2934 Soft Condensed Matter +0712.2937 +0712.2939 Superconductivity +0712.2944 +0712.2945 Other Condensed Matter +0712.2949 +0712.2950 Adaptation and Self-Organizing Systems +0712.2951 Other Condensed Matter +0712.2955 Superconductivity +0712.2956 +0712.2957 +0712.2960 Soft Condensed Matter +0712.2964 +0712.2967 Superconductivity +0712.2975 +0712.2979 +0712.2983 +0712.2984 Statistical Mechanics +0712.2988 +0712.3002 Other Condensed Matter +0712.3004 +0712.3005 +0712.3012 +0712.3016 Mesoscale and Nanoscale Physics +0712.3017 +0712.3047 +0712.3051 +0712.3053 +0712.3054 +0712.3061 Materials Science +0712.3065 Mesoscale and Nanoscale Physics +0712.3080 Optics +0712.3086 Superconductivity +0712.3097 Strongly Correlated Electrons +0712.3100 Strongly Correlated Electrons +0712.3106 +0712.3108 +0712.3118 Materials Science +0712.3121 +0712.3122 Materials Science +0712.3125 +0712.3127 Differential Geometry +0712.3133 +0712.3137 Computational Complexity +0712.3138 +0712.3140 +0712.3145 Other Condensed Matter +0712.3156 Optics +0712.3159 Mesoscale and Nanoscale Physics +0712.3161 Strongly Correlated Electrons +0712.3164 +0712.3165 +0712.3168 +0712.3179 Pattern Formation and Solitons +0712.3185 Mesoscale and Nanoscale Physics +0712.3190 +0712.3195 Soft Condensed Matter +0712.3207 +0712.3208 +0712.3211 Mesoscale and Nanoscale Physics +0712.3214 Data Analysis, Statistics and Probability +0712.3219 +0712.3228 +0712.3239 +0712.3249 +0712.3250 +0712.3257 +0712.3262 Materials Science +0712.3267 Other Condensed Matter +0712.3270 +0712.3278 +0712.3279 Mesoscale and Nanoscale Physics +0712.3283 +0712.3287 Dynamical Systems +0712.3289 +0712.3290 +0712.3295 Optics +0712.3316 Atomic Physics +0712.3319 +0712.3326 Soft Condensed Matter +0712.3339 Classical Physics +0712.3344 +0712.3345 +0712.3351 Mesoscale and Nanoscale Physics +0712.3365 Materials Science +0712.3368 Disordered Systems and Neural Networks +0712.3370 Chaotic Dynamics +0712.3375 +0712.3381 Superconductivity +0712.3386 Analysis of PDEs +0712.3388 +0712.3434 +0712.3438 +0712.3445 +0712.3448 Mesoscale and Nanoscale Physics +0712.3452 +0712.3461 Quantum Algebra +0712.3472 Superconductivity +0712.3474 +0712.3479 +0712.3482 +0712.3487 +0712.3488 Physics Education +0712.3502 +0712.3511 +0712.3516 +0712.3520 Mesoscale and Nanoscale Physics +0712.3521 Other Condensed Matter +0712.3531 +0712.3535 +0712.3545 Theory +0712.3554 +0712.3558 +0712.3562 +0712.3570 +0712.3573 +0712.3578 +0712.3579 +0712.3581 Mesoscale and Nanoscale Physics +0712.3592 Computational Physics +0712.3593 Statistical Mechanics +0712.3594 +0712.3596 Soft Condensed Matter +0712.3597 Other Condensed Matter +0712.3602 +0712.3611 Trading and Market Microstructure +0712.3612 Superconductivity +0712.3613 +0712.3621 Atomic Physics +0712.3628 +0712.3632 +0712.3634 Mesoscale and Nanoscale Physics +0712.3648 Analysis of PDEs +0712.3651 Materials Science +0712.3652 Materials Science +0712.3655 Other Condensed Matter +0712.3673 Chaotic Dynamics +0712.3677 Exactly Solvable and Integrable Systems +0712.3691 Algebraic Geometry +0712.3693 +0712.3698 Mesoscale and Nanoscale Physics +0712.3702 +0712.3706 Materials Science +0712.3710 Atomic Physics +0712.3712 Atomic Physics +0712.3714 +0712.3728 +0712.3749 +0712.3763 Probability +0712.3768 General Physics +0712.3770 Chaotic Dynamics +0712.3776 Optics +0712.3785 Strongly Correlated Electrons +0712.3786 Biomolecules +0712.3788 Statistical Mechanics +0712.3791 Molecular Networks +0712.3796 +0712.3804 +0712.3810 Numerical Analysis +0712.3822 +0712.3823 +0712.3826 +0712.3832 Strongly Correlated Electrons +0712.3835 +0712.3842 Chaotic Dynamics +0712.3844 Disordered Systems and Neural Networks +0712.3845 Plasma Physics +0712.3852 Data Analysis, Statistics and Probability +0712.3853 Fluid Dynamics +0712.3854 +0712.3855 +0712.3861 Atmospheric and Oceanic Physics +0712.3874 +0712.3879 Mesoscale and Nanoscale Physics +0712.3880 Strongly Correlated Electrons +0712.3906 Physics and Society +0712.3914 Strongly Correlated Electrons +0712.3917 +0712.3928 Mesoscale and Nanoscale Physics +0712.3930 Mesoscale and Nanoscale Physics +0712.3944 Fluid Dynamics +0712.3947 Other Condensed Matter +0712.3948 Materials Science +0712.3986 Soft Condensed Matter +0712.3989 Mesoscale and Nanoscale Physics +0712.3993 Statistical Mechanics +0712.4012 Soft Condensed Matter +0712.4014 +0712.4023 +0712.4031 Physics and Society +0712.4033 Mesoscale and Nanoscale Physics +0712.4056 Pattern Formation and Solitons +0712.4058 Pattern Formation and Solitons +0712.4080 Mesoscale and Nanoscale Physics +0712.4084 +0712.4107 +0712.4128 Optics +0712.4140 +0712.4141 +0712.4149 +0712.4150 +0712.4156 Instrumentation and Detectors +0712.4163 Operator Algebras +0712.4171 +0712.4175 +0712.4182 +0712.4189 +0712.4191 Mesoscale and Nanoscale Physics +0712.4192 +0712.4194 +0712.4200 Mesoscale and Nanoscale Physics +0712.4204 +0712.4205 +0712.4225 +0712.4233 Disordered Systems and Neural Networks +0712.4235 +0712.4237 +0712.4238 Theory +0712.4257 +0712.4272 +0712.4283 +0712.4301 +0712.4306 Statistical Mechanics +0712.4307 Materials Science +0712.4312 +0712.4313 +0712.4319 +0712.4320 +0712.4335 +0712.4338 Strongly Correlated Electrons +0712.4343 +0712.4344 Fluid Dynamics +0712.4346 Materials Science +0712.4348 +0712.4349 Strongly Correlated Electrons +0712.4351 Materials Science +0712.4361 Statistical Mechanics +0712.4378 Disordered Systems and Neural Networks +0712.4393 +0712.4398 Superconductivity +0801.0002 +0801.0006 +0801.0014 Disordered Systems and Neural Networks +0801.0016 +0801.0017 +0801.0021 Strongly Correlated Electrons +0801.0031 +0801.0037 +0801.0038 +0801.0043 +0801.0048 General Physics +0801.0050 +0801.0060 Optics +0801.0064 +0801.0089 Mesoscale and Nanoscale Physics +0801.0094 +0801.0108 Statistical Finance +0801.0111 Superconductivity +0801.0112 +0801.0119 +0801.0125 Materials Science +0801.0127 +0801.0134 +0801.0144 Materials Science +0801.0150 Strongly Correlated Electrons +0801.0152 Strongly Correlated Electrons +0801.0162 Algebraic Geometry +0801.0163 +0801.0177 +0801.0180 Mesoscale and Nanoscale Physics +0801.0183 +0801.0188 +0801.0190 Strongly Correlated Electrons +0801.0201 +0801.0203 Pattern Formation and Solitons +0801.0221 +0801.0230 +0801.0243 +0801.0244 +0801.0252 Mesoscale and Nanoscale Physics +0801.0255 Mesoscale and Nanoscale Physics +0801.0265 +0801.0268 Theory +0801.0279 +0801.0292 Mesoscale and Nanoscale Physics +0801.0309 Plasma Physics +0801.0312 +0801.0321 +0801.0328 +0801.0334 +0801.0336 +0801.0338 Soft Condensed Matter +0801.0341 Statistical Mechanics +0801.0347 Fluid Dynamics +0801.0348 +0801.0357 Other Quantitative Biology +0801.0362 Atomic Physics +0801.0363 Materials Science +0801.0371 +0801.0374 +0801.0383 Other Condensed Matter +0801.0402 +0801.0405 +0801.0406 Populations and Evolution +0801.0408 Chaotic Dynamics +0801.0412 Strongly Correlated Electrons +0801.0414 Strongly Correlated Electrons +0801.0417 +0801.0420 Mesoscale and Nanoscale Physics +0801.0421 Materials Science +0801.0423 +0801.0424 +0801.0433 +0801.0436 +0801.0439 +0801.0440 +0801.0442 +0801.0447 +0801.0454 +0801.0457 +0801.0460 Geophysics +0801.0464 +0801.0477 +0801.0488 Chaotic Dynamics +0801.0489 +0801.0497 +0801.0506 +0801.0511 Mesoscale and Nanoscale Physics +0801.0520 +0801.0541 +0801.0542 Geophysics +0801.0546 Geophysics +0801.0547 +0801.0549 Materials Science +0801.0552 +0801.0561 Chemical Physics +0801.0563 Soft Condensed Matter +0801.0567 Strongly Correlated Electrons +0801.0569 +0801.0571 Materials Science +0801.0576 +0801.0583 Statistical Mechanics +0801.0589 Strongly Correlated Electrons +0801.0591 +0801.0593 +0801.0596 +0801.0598 Strongly Correlated Electrons +0801.0605 +0801.0606 Populations and Evolution +0801.0608 +0801.0611 Statistical Mechanics +0801.0618 Soft Condensed Matter +0801.0623 +0801.0627 Mesoscale and Nanoscale Physics +0801.0637 Optics +0801.0639 Atomic Physics +0801.0640 Strongly Correlated Electrons +0801.0645 +0801.0646 Statistical Mechanics +0801.0656 Other Condensed Matter +0801.0666 Mesoscale and Nanoscale Physics +0801.0670 +0801.0671 +0801.0673 Materials Science +0801.0674 +0801.0682 Superconductivity +0801.0683 +0801.0688 +0801.0704 +0801.0707 Optics +0801.0717 +0801.0721 +0801.0727 Theory +0801.0733 Materials Science +0801.0739 +0801.0741 +0801.0744 Strongly Correlated Electrons +0801.0749 Optics +0801.0752 +0801.0757 Soft Condensed Matter +0801.0765 Materials Science +0801.0790 Soft Condensed Matter +0801.0791 Statistical Mechanics +0801.0793 +0801.0794 Soft Condensed Matter +0801.0795 Soft Condensed Matter +0801.0799 +0801.0819 +0801.0831 +0801.0832 +0801.0835 Statistical Mechanics +0801.0836 Statistical Mechanics +0801.0850 Strongly Correlated Electrons +0801.0854 Strongly Correlated Electrons +0801.0860 Fluid Dynamics +0801.0864 +0801.0870 +0801.0871 +0801.0878 +0801.0881 +0801.0885 +0801.0886 Materials Science +0801.0893 +0801.0898 +0801.0901 Mesoscale and Nanoscale Physics +0801.0907 +0801.0908 +0801.0909 +0801.0910 +0801.0913 Materials Science +0801.0914 Representation Theory +0801.0923 +0801.0927 +0801.0932 +0801.0934 Soft Condensed Matter +0801.0942 Mesoscale and Nanoscale Physics +0801.0946 +0801.0947 +0801.0950 Plasma Physics +0801.0952 Strongly Correlated Electrons +0801.0959 Biological Physics +0801.0961 +0801.0962 Theory +0801.0964 +0801.0965 +0801.0966 Mesoscale and Nanoscale Physics +0801.0968 +0801.0969 General Finance +0801.0974 +0801.0975 +0801.0977 +0801.0978 Number Theory +0801.0979 +0801.0982 +0801.0985 +0801.0990 +0801.0995 +0801.1008 +0801.1011 +0801.1014 Superconductivity +0801.1016 +0801.1019 Mesoscale and Nanoscale Physics +0801.1023 +0801.1025 Other Condensed Matter +0801.1032 +0801.1035 +0801.1039 +0801.1042 Superconductivity +0801.1048 +0801.1052 +0801.1055 Pattern Formation and Solitons +0801.1061 +0801.1062 +0801.1064 +0801.1065 +0801.1068 +0801.1069 +0801.1070 +0801.1072 +0801.1075 Mesoscale and Nanoscale Physics +0801.1076 +0801.1080 +0801.1081 +0801.1082 +0801.1084 Materials Science +0801.1086 +0801.1091 +0801.1094 Mesoscale and Nanoscale Physics +0801.1096 +0801.1100 +0801.1102 Strongly Correlated Electrons +0801.1104 +0801.1105 +0801.1106 +0801.1107 +0801.1108 +0801.1109 +0801.1110 +0801.1118 +0801.1122 +0801.1131 Statistical Mechanics +0801.1135 +0801.1139 Atomic Physics +0801.1142 +0801.1144 Materials Science +0801.1145 Superconductivity +0801.1147 +0801.1150 +0801.1151 +0801.1155 Materials Science +0801.1156 +0801.1164 +0801.1170 +0801.1171 Strongly Correlated Electrons +0801.1187 +0801.1192 Materials Science +0801.1193 +0801.1198 +0801.1203 Plasma Physics +0801.1205 +0801.1213 +0801.1215 +0801.1217 +0801.1224 Disordered Systems and Neural Networks +0801.1231 Plasma Physics +0801.1236 +0801.1242 Materials Science +0801.1243 Disordered Systems and Neural Networks +0801.1244 Soft Condensed Matter +0801.1247 Strongly Correlated Electrons +0801.1250 +0801.1255 +0801.1257 +0801.1259 +0801.1264 +0801.1266 Other Condensed Matter +0801.1267 Optics +0801.1272 +0801.1273 Materials Science +0801.1281 Superconductivity +0801.1285 Materials Science +0801.1291 Materials Science +0801.1292 +0801.1293 +0801.1295 Plasma Physics +0801.1298 +0801.1305 +0801.1311 Statistical Mechanics +0801.1314 Materials Science +0801.1318 Mesoscale and Nanoscale Physics +0801.1321 +0801.1324 Mesoscale and Nanoscale Physics +0801.1329 +0801.1342 +0801.1346 +0801.1349 Statistical Mechanics +0801.1350 Strongly Correlated Electrons +0801.1351 Strongly Correlated Electrons +0801.1352 +0801.1354 Strongly Correlated Electrons +0801.1355 Materials Science +0801.1368 +0801.1369 +0801.1372 +0801.1377 Soft Condensed Matter +0801.1380 Superconductivity +0801.1381 Disordered Systems and Neural Networks +0801.1387 Statistical Mechanics +0801.1388 Atomic and Molecular Clusters +0801.1392 Subcellular Processes +0801.1393 Materials Science +0801.1395 Disordered Systems and Neural Networks +0801.1401 +0801.1402 Fluid Dynamics +0801.1403 +0801.1406 +0801.1422 +0801.1425 Phenomenology +0801.1429 +0801.1431 +0801.1433 +0801.1453 Soft Condensed Matter +0801.1458 +0801.1463 +0801.1464 Other Condensed Matter +0801.1466 Superconductivity +0801.1469 Theory +0801.1470 +0801.1474 +0801.1481 +0801.1487 +0801.1488 +0801.1494 +0801.1496 +0801.1499 +0801.1501 +0801.1503 +0801.1507 Materials Science +0801.1509 +0801.1517 +0801.1523 Statistical Mechanics +0801.1525 +0801.1537 Superconductivity +0801.1540 +0801.1545 +0801.1549 +0801.1552 Mesoscale and Nanoscale Physics +0801.1553 Fluid Dynamics +0801.1555 +0801.1557 Soft Condensed Matter +0801.1558 +0801.1563 Statistical Mechanics +0801.1564 +0801.1567 Mesoscale and Nanoscale Physics +0801.1570 Atomic Physics +0801.1576 +0801.1579 Superconductivity +0801.1585 Theory +0801.1586 +0801.1587 +0801.1588 +0801.1594 +0801.1595 +0801.1610 Disordered Systems and Neural Networks +0801.1618 Atmospheric and Oceanic Physics +0801.1622 +0801.1625 +0801.1626 Materials Science +0801.1629 +0801.1631 Mesoscale and Nanoscale Physics +0801.1633 +0801.1640 +0801.1641 Other Condensed Matter +0801.1642 +0801.1643 +0801.1644 Physics Education +0801.1646 Disordered Systems and Neural Networks +0801.1649 +0801.1670 +0801.1673 +0801.1680 +0801.1682 Superconductivity +0801.1685 +0801.1688 Strongly Correlated Electrons +0801.1689 +0801.1692 +0801.1695 Fluid Dynamics +0801.1697 Medical Physics +0801.1699 Mesoscale and Nanoscale Physics +0801.1706 +0801.1708 +0801.1712 Optics +0801.1719 Fluid Dynamics +0801.1723 Mesoscale and Nanoscale Physics +0801.1727 Soft Condensed Matter +0801.1730 Statistical Mechanics +0801.1741 Materials Science +0801.1759 Statistical Mechanics +0801.1761 +0801.1767 +0801.1773 Strongly Correlated Electrons +0801.1778 +0801.1779 Materials Science +0801.1786 Mesoscale and Nanoscale Physics +0801.1787 Strongly Correlated Electrons +0801.1790 Materials Science +0801.1795 +0801.1801 Classical Physics +0801.1806 +0801.1807 Materials Science +0801.1816 +0801.1824 +0801.1825 +0801.1834 +0801.1836 Mesoscale and Nanoscale Physics +0801.1837 Strongly Correlated Electrons +0801.1840 Materials Science +0801.1841 +0801.1842 +0801.1848 Materials Science +0801.1851 +0801.1852 +0801.1860 +0801.1863 Theory +0801.1869 +0801.1875 +0801.1894 Disordered Systems and Neural Networks +0801.1896 Physics and Society +0801.1905 +0801.1906 Operator Algebras +0801.1930 +0801.1944 +0801.1954 General Physics +0801.1956 +0801.1960 +0801.1964 Physics and Society +0801.1975 Strongly Correlated Electrons +0801.1977 +0801.1978 +0801.1990 Superconductivity +0801.1991 Materials Science +0801.1995 +0801.1996 +0801.1998 Exactly Solvable and Integrable Systems +0801.2002 Other Condensed Matter +0801.2003 +0801.2005 +0801.2015 +0801.2025 +0801.2032 Statistical Mechanics +0801.2045 Strongly Correlated Electrons +0801.2046 Optics +0801.2050 Instrumentation and Detectors +0801.2059 Biological Physics +0801.2060 Chaotic Dynamics +0801.2065 Atomic and Molecular Clusters +0801.2076 +0801.2078 +0801.2079 +0801.2084 +0801.2086 +0801.2091 +0801.2100 +0801.2104 +0801.2107 Materials Science +0801.2108 +0801.2110 +0801.2113 +0801.2117 Materials Science +0801.2119 +0801.2120 +0801.2133 +0801.2135 Materials Science +0801.2136 Mesoscale and Nanoscale Physics +0801.2138 Strongly Correlated Electrons +0801.2141 +0801.2146 Physics and Society +0801.2147 +0801.2148 Dynamical Systems +0801.2155 +0801.2158 +0801.2159 +0801.2160 +0801.2161 +0801.2162 +0801.2164 +0801.2166 +0801.2169 +0801.2174 Strongly Correlated Electrons +0801.2177 +0801.2182 Statistical Mechanics +0801.2183 +0801.2186 +0801.2188 Disordered Systems and Neural Networks +0801.2190 +0801.2203 Materials Science +0801.2208 Disordered Systems and Neural Networks +0801.2209 Rings and Algebras +0801.2212 Superconductivity +0801.2217 Mesoscale and Nanoscale Physics +0801.2223 Optics +0801.2228 Materials Science +0801.2235 Strongly Correlated Electrons +0801.2236 +0801.2241 +0801.2245 +0801.2254 Strongly Correlated Electrons +0801.2257 +0801.2258 +0801.2260 Other Condensed Matter +0801.2266 +0801.2270 +0801.2273 +0801.2275 +0801.2276 Fluid Dynamics +0801.2277 +0801.2278 +0801.2280 Strongly Correlated Electrons +0801.2283 Superconductivity +0801.2287 +0801.2292 Mesoscale and Nanoscale Physics +0801.2299 Statistical Mechanics +0801.2301 +0801.2332 Strongly Correlated Electrons +0801.2337 Other Condensed Matter +0801.2338 Mesoscale and Nanoscale Physics +0801.2342 +0801.2359 Mesoscale and Nanoscale Physics +0801.2365 Fluid Dynamics +0801.2366 Geophysics +0801.2375 +0801.2379 +0801.2380 +0801.2381 +0801.2382 +0801.2383 +0801.2386 Atomic Physics +0801.2387 +0801.2388 +0801.2389 +0801.2390 +0801.2391 +0801.2394 Mesoscale and Nanoscale Physics +0801.2395 Strongly Correlated Electrons +0801.2398 Computational Engineering, Finance, and Science +0801.2400 +0801.2402 Mesoscale and Nanoscale Physics +0801.2403 Populations and Evolution +0801.2408 Dynamical Systems +0801.2410 +0801.2416 +0801.2418 +0801.2419 +0801.2424 +0801.2428 +0801.2435 +0801.2436 Superconductivity +0801.2440 +0801.2442 Geophysics +0801.2446 Superconductivity +0801.2448 +0801.2451 +0801.2452 +0801.2454 Atomic Physics +0801.2466 Mesoscale and Nanoscale Physics +0801.2467 +0801.2473 Statistical Mechanics +0801.2478 Probability +0801.2485 +0801.2491 Statistical Mechanics +0801.2500 Other Condensed Matter +0801.2502 Superconductivity +0801.2503 +0801.2506 +0801.2514 +0801.2516 Superconductivity +0801.2519 +0801.2527 Phenomenology +0801.2529 +0801.2533 Strongly Correlated Electrons +0801.2534 +0801.2538 +0801.2547 +0801.2548 Quantum Algebra +0801.2560 +0801.2568 Materials Science +0801.2569 +0801.2574 Statistical Mechanics +0801.2578 +0801.2579 +0801.2580 Other Condensed Matter +0801.2583 Optics +0801.2584 +0801.2585 +0801.2592 Mesoscale and Nanoscale Physics +0801.2594 +0801.2595 +0801.2598 +0801.2613 +0801.2615 +0801.2620 Probability +0801.2623 Analysis of PDEs +0801.2628 Superconductivity +0801.2634 Strongly Correlated Electrons +0801.2649 +0801.2651 Strongly Correlated Electrons +0801.2652 +0801.2653 +0801.2657 +0801.2672 Strongly Correlated Electrons +0801.2674 +0801.2685 +0801.2691 +0801.2694 +0801.2699 Mesoscale and Nanoscale Physics +0801.2704 Materials Science +0801.2705 +0801.2716 Superconductivity +0801.2718 Statistical Mechanics +0801.2722 Strongly Correlated Electrons +0801.2727 Statistical Mechanics +0801.2730 Subcellular Processes +0801.2735 Strongly Correlated Electrons +0801.2737 +0801.2740 +0801.2744 Materials Science +0801.2746 +0801.2747 Other Condensed Matter +0801.2749 +0801.2757 +0801.2758 Statistical Mechanics +0801.2759 +0801.2760 Optics +0801.2764 +0801.2765 +0801.2766 +0801.2767 +0801.2768 +0801.2769 +0801.2772 Superconductivity +0801.2774 +0801.2782 +0801.2783 +0801.2787 Plasma Physics +0801.2791 Atomic Physics +0801.2792 Strongly Correlated Electrons +0801.2795 Strongly Correlated Electrons +0801.2798 Statistical Mechanics +0801.2799 +0801.2818 Representation Theory +0801.2824 Superconductivity +0801.2829 Mesoscale and Nanoscale Physics +0801.2831 Mesoscale and Nanoscale Physics +0801.2841 Chemical Physics +0801.2860 +0801.2865 Materials Science +0801.2866 Analysis of PDEs +0801.2869 Dynamical Systems +0801.2872 Other Condensed Matter +0801.2873 +0801.2876 +0801.2886 +0801.2890 Statistical Mechanics +0801.2893 Materials Science +0801.2894 +0801.2898 +0801.2903 +0801.2908 Soft Condensed Matter +0801.2915 +0801.2918 +0801.2922 Mesoscale and Nanoscale Physics +0801.2924 Fluid Dynamics +0801.2927 Chaotic Dynamics +0801.2935 Other Condensed Matter +0801.2937 +0801.2944 +0801.2956 +0801.2963 +0801.2966 +0801.2967 +0801.2969 +0801.2971 +0801.2972 +0801.2974 +0801.2975 +0801.2976 +0801.2978 +0801.2981 Fluid Dynamics +0801.2985 Experiment +0801.2993 Theory +0801.2999 Other Condensed Matter +0801.3005 +0801.3014 Chaotic Dynamics +0801.3035 +0801.3036 +0801.3043 Trading and Market Microstructure +0801.3049 Information Theory +0801.3051 Chaotic Dynamics +0801.3063 Theory +0801.3067 Biological Physics +0801.3069 +0801.3082 +0801.3092 +0801.3096 Spectral Theory +0801.3098 Materials Science +0801.3100 +0801.3106 Mesoscale and Nanoscale Physics +0801.3110 +0801.3120 Quantum Algebra +0801.3122 Mesoscale and Nanoscale Physics +0801.3125 +0801.3128 +0801.3136 +0801.3143 Disordered Systems and Neural Networks +0801.3151 Plasma Physics +0801.3152 Materials Science +0801.3154 Mesoscale and Nanoscale Physics +0801.3156 Chaotic Dynamics +0801.3159 Optics +0801.3165 +0801.3167 +0801.3168 Statistical Mechanics +0801.3169 +0801.3197 Superconductivity +0801.3198 +0801.3201 +0801.3202 Strongly Correlated Electrons +0801.3204 Statistical Mechanics +0801.3212 Soft Condensed Matter +0801.3213 Mesoscale and Nanoscale Physics +0801.3216 Physics and Society +0801.3217 Statistical Mechanics +0801.3225 +0801.3230 +0801.3231 Materials Science +0801.3241 +0801.3244 Soft Condensed Matter +0801.3246 +0801.3247 +0801.3252 Mesoscale and Nanoscale Physics +0801.3254 +0801.3259 Optics +0801.3264 +0801.3267 +0801.3268 +0801.3271 +0801.3272 Information Theory +0801.3282 +0801.3283 Spectral Theory +0801.3285 +0801.3291 Strongly Correlated Electrons +0801.3293 +0801.3302 Materials Science +0801.3303 +0801.3305 +0801.3307 Superconductivity +0801.3308 Materials Science +0801.3323 Materials Science +0801.3327 +0801.3329 +0801.3341 +0801.3344 Biomolecules +0801.3346 +0801.3347 +0801.3363 Mesoscale and Nanoscale Physics +0801.3372 Differential Geometry +0801.3377 Strongly Correlated Electrons +0801.3384 Chemical Physics +0801.3397 +0801.3403 Plasma Physics +0801.3406 Statistical Mechanics +0801.3422 +0801.3437 Other Condensed Matter +0801.3453 Plasma Physics +0801.3461 +0801.3479 +0801.3481 Superconductivity +0801.3482 +0801.3488 +0801.3489 Chaotic Dynamics +0801.3495 Superconductivity +0801.3501 +0801.3510 +0801.3515 Mesoscale and Nanoscale Physics +0801.3516 +0801.3517 Mesoscale and Nanoscale Physics +0801.3518 +0801.3524 Materials Science +0801.3530 +0801.3531 +0801.3532 Strongly Correlated Electrons +0801.3536 Other Condensed Matter +0801.3538 Atomic Physics +0801.3542 +0801.3543 +0801.3544 +0801.3546 Physics and Society +0801.3560 Portfolio Management +0801.3562 +0801.3569 +0801.3570 Phenomenology +0801.3571 Statistical Mechanics +0801.3572 +0801.3574 Optics +0801.3578 +0801.3584 Statistical Mechanics +0801.3591 +0801.3594 Materials Science +0801.3595 +0801.3599 +0801.3606 +0801.3609 +0801.3611 Optics +0801.3612 Soft Condensed Matter +0801.3614 +0801.3622 +0801.3625 +0801.3634 +0801.3638 +0801.3640 Information Theory +0801.3646 +0801.3649 +0801.3651 Neurons and Cognition +0801.3655 Mesoscale and Nanoscale Physics +0801.3659 +0801.3661 Soft Condensed Matter +0801.3663 +0801.3665 +0801.3668 Strongly Correlated Electrons +0801.3672 Physics and Society +0801.3682 +0801.3683 +0801.3685 Disordered Systems and Neural Networks +0801.3688 Statistical Mechanics +0801.3698 +0801.3699 Disordered Systems and Neural Networks +0801.3705 +0801.3717 Chaotic Dynamics +0801.3724 +0801.3729 +0801.3732 +0801.3733 +0801.3736 Soft Condensed Matter +0801.3739 Mesoscale and Nanoscale Physics +0801.3740 +0801.3743 Statistical Mechanics +0801.3744 +0801.3750 Statistical Mechanics +0801.3752 +0801.3757 Strongly Correlated Electrons +0801.3759 +0801.3760 +0801.3761 Superconductivity +0801.3765 +0801.3768 Soft Condensed Matter +0801.3772 +0801.3776 +0801.3779 Superconductivity +0801.3782 +0801.3786 +0801.3787 Materials Science +0801.3793 +0801.3795 Superconductivity +0801.3796 +0801.3806 +0801.3810 +0801.3820 +0801.3833 +0801.3846 +0801.3848 +0801.3849 +0801.3855 Strongly Correlated Electrons +0801.3856 +0801.3857 +0801.3870 +0801.3872 +0801.3876 Soft Condensed Matter +0801.3889 +0801.3898 +0801.3899 +0801.3901 Geometric Topology +0801.3910 +0801.3916 Soft Condensed Matter +0801.3919 Mesoscale and Nanoscale Physics +0801.3920 Soft Condensed Matter +0801.3927 +0801.3933 Mesoscale and Nanoscale Physics +0801.3934 Strongly Correlated Electrons +0801.3938 +0801.3950 Plasma Physics +0801.3952 +0801.3956 Optics +0801.3959 +0801.3960 Plasma Physics +0801.3968 +0801.3969 +0801.3977 Statistical Mechanics +0801.3988 +0801.3991 Soft Condensed Matter +0801.3997 Materials Science +0801.3999 Atomic Physics +0801.4003 Plasma Physics +0801.4004 +0801.4005 Statistical Mechanics +0801.4006 Mesoscale and Nanoscale Physics +0801.4010 +0801.4017 +0801.4021 Mesoscale and Nanoscale Physics +0801.4025 Soft Condensed Matter +0801.4030 +0801.4031 +0801.4045 Strongly Correlated Electrons +0801.4052 +0801.4057 Statistical Mechanics +0801.4059 Statistical Mechanics +0801.4060 Atomic Physics +0801.4078 Optics +0801.4083 +0801.4085 +0801.4086 Materials Science +0801.4091 +0801.4096 Statistical Mechanics +0801.4106 +0801.4116 +0801.4120 Mesoscale and Nanoscale Physics +0801.4124 +0801.4131 Materials Science +0801.4139 +0801.4152 Statistical Mechanics +0801.4155 Mesoscale and Nanoscale Physics +0801.4159 Superconductivity +0801.4165 +0801.4167 +0801.4169 Soft Condensed Matter +0801.4173 +0801.4176 Superconductivity +0801.4177 +0801.4178 +0801.4180 +0801.4183 +0801.4184 Strongly Correlated Electrons +0801.4191 Materials Science +0801.4193 Superconductivity +0801.4199 Optics +0801.4202 Soft Condensed Matter +0801.4204 Disordered Systems and Neural Networks +0801.4213 +0801.4226 +0801.4232 +0801.4246 +0801.4250 Statistical Mechanics +0801.4251 Optics +0801.4253 +0801.4255 +0801.4266 Fluid Dynamics +0801.4272 Strongly Correlated Electrons +0801.4273 +0801.4275 Other Condensed Matter +0801.4276 Statistical Mechanics +0801.4286 +0801.4289 +0801.4291 Computational Physics +0801.4294 +0801.4299 +0801.4302 Other Condensed Matter +0801.4305 Portfolio Management +0801.4316 +0801.4319 +0801.4323 Mesoscale and Nanoscale Physics +0801.4327 Strongly Correlated Electrons +0801.4328 +0801.4334 Other Condensed Matter +0801.4338 +0801.4341 Statistical Finance +0801.4344 Atomic Physics +0801.4348 +0801.4353 Strongly Correlated Electrons +0801.4359 Atomic Physics +0801.4362 +0801.4369 Computational Physics +0801.4370 Chaotic Dynamics +0801.4371 +0801.4372 +0801.4377 +0801.4381 +0801.4382 +0801.4391 Strongly Correlated Electrons +0801.4397 Statistical Mechanics +0801.4398 +0801.4403 +0801.4411 +0801.4413 +0801.4417 +0801.4419 Mesoscale and Nanoscale Physics +0801.4424 +0801.4431 +0801.4433 Materials Science +0801.4435 Materials Science +0801.4437 +0801.4438 +0801.4440 +0801.4446 +0801.4448 +0801.4450 Soft Condensed Matter +0801.4452 +0801.4453 +0801.4456 +0801.4464 Fluid Dynamics +0801.4468 +0801.4469 Superconductivity +0801.4473 +0801.4475 Other Condensed Matter +0801.4482 Atomic and Molecular Clusters +0801.4485 +0801.4486 +0801.4488 +0801.4490 +0801.4491 +0801.4492 +0801.4493 +0801.4505 +0801.4511 +0801.4528 Strongly Correlated Electrons +0801.4529 +0801.4535 +0801.4537 +0801.4539 +0801.4541 Mesoscale and Nanoscale Physics +0801.4547 +0801.4551 +0801.4552 +0801.4559 +0801.4560 +0801.4561 +0801.4570 +0801.4577 Materials Science +0801.4578 +0801.4580 Superconductivity +0801.4586 +0801.4595 Materials Science +0801.4598 Optics +0801.4599 Statistical Mechanics +0801.4601 +0801.4604 +0801.4630 +0801.4632 Statistical Mechanics +0801.4637 +0801.4638 +0801.4641 Strongly Correlated Electrons +0801.4643 +0801.4649 +0801.4650 Strongly Correlated Electrons +0801.4670 Materials Science +0801.4672 Other Condensed Matter +0801.4675 +0801.4679 +0801.4683 Strongly Correlated Electrons +0801.4685 +0801.4687 Adaptation and Self-Organizing Systems +0801.4689 +0801.4695 +0801.4700 Statistical Mechanics +0801.4703 +0801.4709 Networking and Internet Architecture +0801.4712 +0801.4718 Statistical Mechanics +0801.4719 Other Condensed Matter +0801.4727 Mesoscale and Nanoscale Physics +0801.4729 +0801.4732 +0801.4748 Optics +0801.4751 +0801.4755 +0801.4758 +0801.4759 +0801.4761 +0801.4762 +0801.4763 +0801.4764 +0801.4767 Statistical Mechanics +0801.4768 +0801.4776 +0801.4781 +0801.4795 +0801.4796 +0801.4801 +0801.4803 +0801.4804 Atomic Physics +0801.4814 +0801.4818 Mesoscale and Nanoscale Physics +0801.4819 Mesoscale and Nanoscale Physics +0801.4825 +0801.4827 +0801.4828 +0801.4831 Mesoscale and Nanoscale Physics +0801.4838 Data Analysis, Statistics and Probability +0801.4840 +0801.4841 Plasma Physics +0801.4849 Mesoscale and Nanoscale Physics +0801.4855 Disordered Systems and Neural Networks +0801.4856 Mesoscale and Nanoscale Physics +0801.4857 +0801.4858 Disordered Systems and Neural Networks +0801.4861 +0801.4865 +0801.4867 +0801.4873 Chaotic Dynamics +0801.4874 +0801.4875 Strongly Correlated Electrons +0801.4876 +0801.4879 +0801.4889 +0801.4898 Other Condensed Matter +0801.4901 +0801.4902 Biological Physics +0801.4903 +0801.4913 Experiment +0801.4915 +0801.4926 +0801.4933 +0801.4934 +0801.4936 +0801.4940 Statistical Mechanics +0801.4944 Disordered Systems and Neural Networks +0801.4945 Materials Science +0801.4948 Dynamical Systems +0801.4951 Atomic Physics +0801.4953 +0801.4954 +0801.4955 +0801.4960 +0801.4961 +0801.4964 Other Condensed Matter +0802.0001 +0802.0002 +0802.0004 +0802.0008 +0802.0014 Plasma Physics +0802.0018 Strongly Correlated Electrons +0802.0019 +0802.0020 Soft Condensed Matter +0802.0034 Materials Science +0802.0037 +0802.0041 Atomic and Molecular Clusters +0802.0042 +0802.0046 +0802.0048 Cell Behavior +0802.0055 Soft Condensed Matter +0802.0056 Soft Condensed Matter +0802.0061 Superconductivity +0802.0077 Statistical Mechanics +0802.0081 +0802.0085 Other Condensed Matter +0802.0089 Statistical Mechanics +0802.0092 Plasma Physics +0802.0093 Materials Science +0802.0096 +0802.0100 +0802.0101 Optics +0802.0105 Physics and Society +0802.0107 Space Physics +0802.0109 +0802.0113 +0802.0122 Atomic Physics +0802.0125 +0802.0128 Strongly Correlated Electrons +0802.0131 +0802.0133 +0802.0135 +0802.0144 +0802.0149 +0802.0152 +0802.0169 +0802.0175 +0802.0176 General Physics +0802.0178 +0802.0195 Quantum Algebra +0802.0198 +0802.0201 +0802.0206 +0802.0207 +0802.0209 Biomolecules +0802.0210 +0802.0221 +0802.0222 Atomic Physics +0802.0226 +0802.0229 Optics +0802.0231 Theory +0802.0242 Physics and Society +0802.0243 Other Condensed Matter +0802.0245 +0802.0253 +0802.0262 +0802.0263 +0802.0270 +0802.0272 Statistical Mechanics +0802.0274 +0802.0278 Disordered Systems and Neural Networks +0802.0283 Disordered Systems and Neural Networks +0802.0285 Pattern Formation and Solitons +0802.0286 +0802.0298 Other Condensed Matter +0802.0299 Strongly Correlated Electrons +0802.0303 +0802.0304 Other Condensed Matter +0802.0318 Chemical Physics +0802.0324 +0802.0327 +0802.0328 Strongly Correlated Electrons +0802.0333 +0802.0334 Materials Science +0802.0340 +0802.0345 Pattern Formation and Solitons +0802.0346 +0802.0347 Materials Science +0802.0352 Strongly Correlated Electrons +0802.0353 Mesoscale and Nanoscale Physics +0802.0370 +0802.0374 Materials Science +0802.0375 Mesoscale and Nanoscale Physics +0802.0380 Plasma Physics +0802.0390 +0802.0394 +0802.0399 +0802.0403 Physics and Society +0802.0407 Mesoscale and Nanoscale Physics +0802.0419 +0802.0422 Mesoscale and Nanoscale Physics +0802.0424 Other Condensed Matter +0802.0427 Materials Science +0802.0429 +0802.0434 +0802.0436 Applications +0802.0441 +0802.0447 Strongly Correlated Electrons +0802.0449 Soft Condensed Matter +0802.0455 Phenomenology +0802.0458 Strongly Correlated Electrons +0802.0459 +0802.0461 Atomic Physics +0802.0462 +0802.0468 Theory +0802.0475 Dynamical Systems +0802.0486 Statistical Mechanics +0802.0488 +0802.0490 +0802.0492 +0802.0493 +0802.0494 +0802.0496 +0802.0497 +0802.0499 +0802.0501 +0802.0503 +0802.0513 +0802.0515 +0802.0517 Materials Science +0802.0520 Dynamical Systems +0802.0522 Biomolecules +0802.0531 +0802.0538 +0802.0541 +0802.0553 Materials Science +0802.0559 Strongly Correlated Electrons +0802.0564 +0802.0567 +0802.0570 Plasma Physics +0802.0571 +0802.0574 Superconductivity +0802.0575 Optics +0802.0576 Strongly Correlated Electrons +0802.0577 +0802.0586 Mesoscale and Nanoscale Physics +0802.0587 +0802.0591 +0802.0592 Statistical Mechanics +0802.0594 +0802.0604 Materials Science +0802.0605 Other Condensed Matter +0802.0606 +0802.0608 Soft Condensed Matter +0802.0611 +0802.0651 Statistical Mechanics +0802.0653 Materials Science +0802.0655 Theory +0802.0667 Pattern Formation and Solitons +0802.0670 Materials Science +0802.0671 +0802.0674 +0802.0678 +0802.0682 Statistical Mechanics +0802.0683 Atomic Physics +0802.0684 +0802.0686 +0802.0689 +0802.0690 +0802.0693 +0802.0695 Other Condensed Matter +0802.0696 Plasma Physics +0802.0698 +0802.0718 +0802.0725 +0802.0732 Materials Science +0802.0735 Theory +0802.0736 Strongly Correlated Electrons +0802.0737 +0802.0757 Exactly Solvable and Integrable Systems +0802.0758 +0802.0767 +0802.0770 +0802.0781 +0802.0782 Optics +0802.0783 +0802.0787 +0802.0798 Atomic Physics +0802.0811 Materials Science +0802.0819 +0802.0825 +0802.0829 Strongly Correlated Electrons +0802.0842 Statistical Mechanics +0802.0844 Mesoscale and Nanoscale Physics +0802.0845 +0802.0846 Analysis of PDEs +0802.0847 Adaptation and Self-Organizing Systems +0802.0854 +0802.0857 Atomic Physics +0802.0870 +0802.0871 +0802.0872 +0802.0879 +0802.0881 +0802.0886 +0802.0902 +0802.0903 +0802.0904 Superconductivity +0802.0907 +0802.0909 Strongly Correlated Electrons +0802.0912 Mesoscale and Nanoscale Physics +0802.0913 +0802.0918 +0802.0921 +0802.0927 +0802.0935 Theory +0802.0938 +0802.0943 +0802.0975 +0802.0976 Mesoscale and Nanoscale Physics +0802.0983 +0802.0988 +0802.0991 Strongly Correlated Electrons +0802.1001 Statistical Mechanics +0802.1003 Materials Science +0802.1011 Strongly Correlated Electrons +0802.1012 +0802.1022 +0802.1033 +0802.1034 Soft Condensed Matter +0802.1042 +0802.1045 +0802.1050 +0802.1051 +0802.1054 Physics and Society +0802.1069 +0802.1073 +0802.1087 Soft Condensed Matter +0802.1102 Strongly Correlated Electrons +0802.1104 +0802.1108 Strongly Correlated Electrons +0802.1114 +0802.1117 Materials Science +0802.1122 +0802.1125 Other Condensed Matter +0802.1126 Geophysics +0802.1131 Soft Condensed Matter +0802.1132 Plasma Physics +0802.1134 +0802.1136 Materials Science +0802.1139 +0802.1143 +0802.1149 Strongly Correlated Electrons +0802.1157 Chemical Physics +0802.1158 +0802.1162 +0802.1165 +0802.1168 +0802.1169 Statistical Mechanics +0802.1179 Superconductivity +0802.1182 +0802.1184 +0802.1191 +0802.1204 +0802.1210 +0802.1211 +0802.1229 +0802.1234 +0802.1241 Disordered Systems and Neural Networks +0802.1246 Statistical Mechanics +0802.1251 Differential Geometry +0802.1252 Superconductivity +0802.1263 K-Theory and Homology +0802.1270 +0802.1273 +0802.1275 Materials Science +0802.1276 Statistical Mechanics +0802.1278 +0802.1280 Mesoscale and Nanoscale Physics +0802.1285 Statistical Mechanics +0802.1292 Disordered Systems and Neural Networks +0802.1297 Superconductivity +0802.1300 Materials Science +0802.1302 Disordered Systems and Neural Networks +0802.1305 Other Condensed Matter +0802.1310 +0802.1311 Cellular Automata and Lattice Gases +0802.1314 Materials Science +0802.1316 Strongly Correlated Electrons +0802.1321 +0802.1329 +0802.1339 +0802.1344 Materials Science +0802.1345 Analysis of PDEs +0802.1349 +0802.1353 Exactly Solvable and Integrable Systems +0802.1360 +0802.1364 Mesoscale and Nanoscale Physics +0802.1371 Atomic Physics +0802.1384 Optics +0802.1386 +0802.1399 +0802.1411 +0802.1418 +0802.1424 +0802.1439 Atomic Physics +0802.1441 +0802.1444 +0802.1445 +0802.1452 +0802.1457 +0802.1458 Mesoscale and Nanoscale Physics +0802.1466 Materials Science +0802.1467 Materials Science +0802.1475 +0802.1476 Disordered Systems and Neural Networks +0802.1483 +0802.1485 +0802.1488 Physics and Society +0802.1498 Strongly Correlated Electrons +0802.1500 Statistical Finance +0802.1503 Fluid Dynamics +0802.1518 Superconductivity +0802.1519 +0802.1522 +0802.1525 +0802.1528 +0802.1529 +0802.1532 +0802.1537 +0802.1542 Mesoscale and Nanoscale Physics +0802.1543 +0802.1544 Strongly Correlated Electrons +0802.1548 Statistical Mechanics +0802.1550 Fluid Dynamics +0802.1559 Superconductivity +0802.1575 Statistical Mechanics +0802.1582 Statistical Mechanics +0802.1584 +0802.1585 Atomic Physics +0802.1595 Other Condensed Matter +0802.1598 Other Condensed Matter +0802.1603 +0802.1610 +0802.1622 +0802.1628 +0802.1639 +0802.1646 Chaotic Dynamics +0802.1648 Statistical Mechanics +0802.1662 Atomic Physics +0802.1663 +0802.1666 +0802.1675 +0802.1679 +0802.1682 +0802.1683 Statistical Mechanics +0802.1692 +0802.1704 +0802.1705 +0802.1709 +0802.1723 +0802.1726 +0802.1729 +0802.1731 +0802.1737 +0802.1741 Soft Condensed Matter +0802.1743 +0802.1744 +0802.1747 Statistical Finance +0802.1748 Statistical Mechanics +0802.1750 Pattern Formation and Solitons +0802.1751 +0802.1755 Mesoscale and Nanoscale Physics +0802.1763 Strongly Correlated Electrons +0802.1767 +0802.1769 +0802.1770 +0802.1773 +0802.1774 +0802.1777 +0802.1781 +0802.1782 +0802.1783 Theory +0802.1786 +0802.1797 Statistical Mechanics +0802.1801 Materials Science +0802.1806 Phenomenology +0802.1808 +0802.1819 Soft Condensed Matter +0802.1821 Other Condensed Matter +0802.1827 Strongly Correlated Electrons +0802.1828 Strongly Correlated Electrons +0802.1832 +0802.1836 +0802.1838 +0802.1840 Statistical Mechanics +0802.1842 Mesoscale and Nanoscale Physics +0802.1843 Materials Science +0802.1846 +0802.1847 +0802.1848 Mesoscale and Nanoscale Physics +0802.1857 +0802.1863 +0802.1864 +0802.1866 +0802.1868 Strongly Correlated Electrons +0802.1880 Materials Science +0802.1881 +0802.1882 Superconductivity +0802.1890 +0802.1891 +0802.1906 +0802.1911 +0802.1913 Mesoscale and Nanoscale Physics +0802.1917 +0802.1918 +0802.1920 +0802.1921 +0802.1922 +0802.1923 +0802.1926 +0802.1927 +0802.1929 +0802.1934 +0802.1935 +0802.1940 +0802.1951 +0802.1960 Materials Science +0802.1961 +0802.1963 +0802.1971 +0802.1975 +0802.1981 +0802.1984 Exactly Solvable and Integrable Systems +0802.1996 Analysis of PDEs +0802.2000 Atomic and Molecular Clusters +0802.2002 Other Condensed Matter +0802.2003 Strongly Correlated Electrons +0802.2008 Mesoscale and Nanoscale Physics +0802.2009 Materials Science +0802.2021 +0802.2022 +0802.2026 +0802.2033 +0802.2034 +0802.2036 +0802.2042 +0802.2043 Materials Science +0802.2048 +0802.2052 +0802.2055 Mesoscale and Nanoscale Physics +0802.2057 +0802.2058 +0802.2061 Materials Science +0802.2063 +0802.2070 +0802.2074 Materials Science +0802.2077 +0802.2080 Materials Science +0802.2084 +0802.2085 +0802.2094 Operator Algebras +0802.2095 +0802.2097 +0802.2099 +0802.2101 Superconductivity +0802.2103 +0802.2104 +0802.2115 Probability +0802.2118 +0802.2119 Strongly Correlated Electrons +0802.2132 Superconductivity +0802.2138 Neural and Evolutionary Computing +0802.2141 Materials Science +0802.2148 Superconductivity +0802.2150 Strongly Correlated Electrons +0802.2153 Materials Science +0802.2168 +0802.2174 +0802.2177 +0802.2181 +0802.2185 +0802.2192 Mesoscale and Nanoscale Physics +0802.2201 Symbolic Computation +0802.2203 +0802.2211 Dynamical Systems +0802.2213 +0802.2216 Materials Science +0802.2217 +0802.2219 Mesoscale and Nanoscale Physics +0802.2222 Other Condensed Matter +0802.2223 Mesoscale and Nanoscale Physics +0802.2224 +0802.2231 Other Condensed Matter +0802.2235 Soft Condensed Matter +0802.2237 +0802.2238 +0802.2239 +0802.2242 +0802.2243 +0802.2247 Instrumentation and Detectors +0802.2253 +0802.2256 +0802.2259 +0802.2265 +0802.2267 Materials Science +0802.2282 +0802.2284 +0802.2285 +0802.2291 Strongly Correlated Electrons +0802.2298 +0802.2308 +0802.2312 +0802.2315 +0802.2328 +0802.2335 Statistical Mechanics +0802.2340 +0802.2354 +0802.2359 +0802.2363 +0802.2380 Mesoscale and Nanoscale Physics +0802.2386 +0802.2388 Soft Condensed Matter +0802.2389 Mesoscale and Nanoscale Physics +0802.2391 +0802.2393 +0802.2395 Combinatorics +0802.2404 Superconductivity +0802.2405 +0802.2415 +0802.2421 Disordered Systems and Neural Networks +0802.2423 +0802.2427 Superconductivity +0802.2436 Materials Science +0802.2446 +0802.2458 +0802.2459 +0802.2462 +0802.2466 Soft Condensed Matter +0802.2469 +0802.2471 +0802.2473 Strongly Correlated Electrons +0802.2477 +0802.2489 +0802.2497 +0802.2501 +0802.2503 Statistical Mechanics +0802.2506 +0802.2507 Fluid Dynamics +0802.2509 +0802.2514 +0802.2515 +0802.2516 Mesoscale and Nanoscale Physics +0802.2521 Pattern Formation and Solitons +0802.2524 +0802.2529 Materials Science +0802.2530 Phenomenology +0802.2535 +0802.2537 +0802.2545 +0802.2547 +0802.2549 +0802.2552 +0802.2553 Atomic Physics +0802.2556 +0802.2571 +0802.2572 +0802.2573 +0802.2577 Physics and Society +0802.2602 Plasma Physics +0802.2604 +0802.2605 Chaotic Dynamics +0802.2606 +0802.2607 +0802.2610 +0802.2613 +0802.2615 +0802.2616 Superconductivity +0802.2623 Materials Science +0802.2627 Strongly Correlated Electrons +0802.2628 Mesoscale and Nanoscale Physics +0802.2631 +0802.2633 Materials Science +0802.2639 +0802.2647 +0802.2652 +0802.2653 Strongly Correlated Electrons +0802.2663 +0802.2670 Statistical Mechanics +0802.2675 +0802.2677 +0802.2678 Other Condensed Matter +0802.2685 Networking and Internet Architecture +0802.2688 Statistical Mechanics +0802.2694 +0802.2695 Statistical Mechanics +0802.2698 +0802.2699 Statistical Mechanics +0802.2704 +0802.2710 Fluid Dynamics +0802.2711 Mesoscale and Nanoscale Physics +0802.2712 +0802.2713 +0802.2716 +0802.2718 Computational Physics +0802.2722 +0802.2724 Soft Condensed Matter +0802.2725 +0802.2729 Materials Science +0802.2732 +0802.2740 +0802.2754 Materials Science +0802.2759 Strongly Correlated Electrons +0802.2765 Superconductivity +0802.2771 Optics +0802.2775 +0802.2777 +0802.2779 +0802.2783 Superconductivity +0802.2791 Superconductivity +0802.2805 +0802.2808 Mesoscale and Nanoscale Physics +0802.2810 Data Analysis, Statistics and Probability +0802.2815 Other Condensed Matter +0802.2819 +0802.2877 Materials Science +0802.2881 Other Condensed Matter +0802.2883 Materials Science +0802.2888 Disordered Systems and Neural Networks +0802.2895 +0802.2912 +0802.2915 Materials Science +0802.2919 Phenomenology +0802.2929 Chemical Physics +0802.2930 +0802.2936 +0802.2941 +0802.2942 Superconductivity +0802.2944 +0802.2945 +0802.2949 Strongly Correlated Electrons +0802.2961 +0802.2963 +0802.2964 +0802.2966 +0802.2987 Materials Science +0802.2989 Statistical Mechanics +0802.2990 +0802.2992 +0802.2994 Superconductivity +0802.3004 +0802.3011 Statistical Mechanics +0802.3012 +0802.3020 +0802.3022 Exactly Solvable and Integrable Systems +0802.3026 +0802.3085 Other Computer Science +0802.3113 Materials Science +0802.3116 Chemical Physics +0802.3121 Chaotic Dynamics +0802.3122 Disordered Systems and Neural Networks +0802.3132 +0802.3133 Superconductivity +0802.3148 +0802.3151 Superconductivity +0802.3156 +0802.3157 Phenomenology +0802.3158 Strongly Correlated Electrons +0802.3161 +0802.3166 Superconductivity +0802.3174 Differential Geometry +0802.3175 +0802.3177 +0802.3178 +0802.3183 +0802.3184 Mesoscale and Nanoscale Physics +0802.3185 +0802.3192 Other Condensed Matter +0802.3194 Physics Education +0802.3196 Optics +0802.3199 +0802.3203 Mesoscale and Nanoscale Physics +0802.3205 +0802.3216 +0802.3219 +0802.3228 +0802.3233 Statistical Mechanics +0802.3236 Mesoscale and Nanoscale Physics +0802.3237 Number Theory +0802.3238 +0802.3239 +0802.3242 +0802.3243 +0802.3258 Strongly Correlated Electrons +0802.3262 Other Condensed Matter +0802.3269 Superconductivity +0802.3286 +0802.3295 Soft Condensed Matter +0802.3311 +0802.3312 +0802.3317 +0802.3319 +0802.3325 Atomic and Molecular Clusters +0802.3329 Statistical Mechanics +0802.3331 +0802.3334 +0802.3336 Other Condensed Matter +0802.3339 Mesoscale and Nanoscale Physics +0802.3342 Optics +0802.3345 +0802.3350 +0802.3351 +0802.3353 +0802.3357 +0802.3363 +0802.3368 +0802.3371 +0802.3380 Biomolecules +0802.3382 Strongly Correlated Electrons +0802.3387 +0802.3395 Strongly Correlated Electrons +0802.3396 +0802.3397 +0802.3399 Phenomenology +0802.3403 Differential Geometry +0802.3404 Disordered Systems and Neural Networks +0802.3416 Materials Science +0802.3425 +0802.3428 +0802.3438 Optics +0802.3446 +0802.3460 +0802.3465 +0802.3472 +0802.3482 +0802.3486 +0802.3487 Probability +0802.3494 +0802.3499 Materials Science +0802.3504 +0802.3509 +0802.3515 Materials Science +0802.3531 +0802.3533 Statistical Mechanics +0802.3534 Optics +0802.3537 Mesoscale and Nanoscale Physics +0802.3538 +0802.3540 Materials Science +0802.3542 +0802.3545 Superconductivity +0802.3551 +0802.3557 +0802.3558 +0802.3559 +0802.3560 +0802.3561 +0802.3565 Mesoscale and Nanoscale Physics +0802.3576 +0802.3581 Exactly Solvable and Integrable Systems +0802.3593 Biomolecules +0802.3598 Statistical Mechanics +0802.3604 +0802.3607 Chemical Physics +0802.3609 Phenomenology +0802.3612 +0802.3614 Dynamical Systems +0802.3619 Soft Condensed Matter +0802.3627 Disordered Systems and Neural Networks +0802.3629 +0802.3631 +0802.3632 +0802.3636 Physics and Society +0802.3645 Atomic Physics +0802.3650 +0802.3660 Strongly Correlated Electrons +0802.3668 +0802.3676 Strongly Correlated Electrons +0802.3677 +0802.3682 Atomic Physics +0802.3687 Mesoscale and Nanoscale Physics +0802.3692 +0802.3693 Superconductivity +0802.3695 +0802.3696 +0802.3697 +0802.3698 +0802.3705 +0802.3707 +0802.3710 Superconductivity +0802.3714 Fluid Dynamics +0802.3716 +0802.3723 +0802.3724 +0802.3726 +0802.3728 Materials Science +0802.3729 +0802.3732 Superconductivity +0802.3733 +0802.3739 Materials Science +0802.3742 +0802.3750 +0802.3756 Mesoscale and Nanoscale Physics +0802.3757 +0802.3764 +0802.3777 Statistical Mechanics +0802.3778 +0802.3780 Mesoscale and Nanoscale Physics +0802.3786 Differential Geometry +0802.3798 Statistical Mechanics +0802.3805 +0802.3810 +0802.3811 Statistical Mechanics +0802.3814 Mesoscale and Nanoscale Physics +0802.3818 Other Condensed Matter +0802.3831 Superconductivity +0802.3834 Chaotic Dynamics +0802.3848 +0802.3849 Plasma Physics +0802.3853 +0802.3856 +0802.3857 Theory +0802.3862 +0802.3864 +0802.3866 +0802.3867 Soft Condensed Matter +0802.3868 +0802.3872 Quantum Algebra +0802.3878 +0802.3882 +0802.3892 +0802.3899 +0802.3904 +0802.3912 +0802.3913 +0802.3914 +0802.3916 +0802.3918 +0802.3931 +0802.3935 Strongly Correlated Electrons +0802.3936 Superconductivity +0802.3945 Superconductivity +0802.3947 +0802.3949 Populations and Evolution +0802.3951 Exactly Solvable and Integrable Systems +0802.3957 +0802.3960 Soft Condensed Matter +0802.3962 Other Condensed Matter +0802.3965 Strongly Correlated Electrons +0802.3970 Soft Condensed Matter +0802.3971 Superconductivity +0802.3972 +0802.3978 +0802.3982 +0802.3985 +0802.3986 Statistical Mechanics +0802.3988 Phenomenology +0802.3989 Strongly Correlated Electrons +0802.3992 Information Theory +0802.3995 +0802.3996 +0802.4000 Phenomenology +0802.4003 +0802.4004 +0802.4005 +0802.4009 Strongly Correlated Electrons +0802.4036 Soft Condensed Matter +0802.4037 Plasma Physics +0802.4046 Soft Condensed Matter +0802.4048 +0802.4053 +0802.4054 +0802.4059 +0802.4061 +0802.4062 Mesoscale and Nanoscale Physics +0802.4064 Physics and Society +0802.4069 +0802.4075 +0802.4078 +0802.4080 Strongly Correlated Electrons +0802.4084 +0802.4088 +0802.4091 +0802.4093 Strongly Correlated Electrons +0802.4102 Mesoscale and Nanoscale Physics +0802.4103 Mesoscale and Nanoscale Physics +0802.4105 +0802.4107 Superconductivity +0802.4118 +0802.4119 +0802.4123 +0802.4127 +0802.4132 +0802.4135 Soft Condensed Matter +0802.4140 +0802.4144 +0802.4148 +0802.4149 +0802.4150 Materials Science +0802.4152 +0802.4158 +0802.4162 Materials Science +0802.4163 +0802.4165 Trading and Market Microstructure +0802.4168 +0802.4178 +0802.4182 +0802.4194 Other Condensed Matter +0802.4200 Chemical Physics +0802.4203 Superconductivity +0802.4204 Superconductivity +0802.4205 +0802.4206 Mesoscale and Nanoscale Physics +0802.4211 Chaotic Dynamics +0802.4217 Chaotic Dynamics +0802.4218 Strongly Correlated Electrons +0802.4220 +0802.4235 +0802.4238 +0802.4250 Mesoscale and Nanoscale Physics +0802.4252 Exactly Solvable and Integrable Systems +0802.4262 +0802.4265 +0802.4268 Superconductivity +0802.4271 Mesoscale and Nanoscale Physics +0802.4273 Strongly Correlated Electrons +0802.4287 +0802.4288 +0802.4292 +0802.4297 +0802.4298 Theory +0802.4321 Other Condensed Matter +0802.4322 +0802.4332 Mesoscale and Nanoscale Physics +0802.4342 +0802.4346 Disordered Systems and Neural Networks +0802.4347 +0802.4348 +0802.4351 +0802.4368 Mesoscale and Nanoscale Physics +0802.4375 +0802.4380 +0802.4387 +0802.4396 +0802.4402 Soft Condensed Matter +0802.4404 +0802.4409 +0802.4410 General Finance +0802.4412 Dynamical Systems +0802.4413 Mesoscale and Nanoscale Physics +0802.4420 +0802.4421 +0802.4422 +0802.4424 +0802.4426 Materials Science +0802.4435 Strongly Correlated Electrons +0802.4439 Differential Geometry +0802.4442 Mesoscale and Nanoscale Physics +0802.4446 +0802.4447 Disordered Systems and Neural Networks +0802.4454 Mesoscale and Nanoscale Physics +0802.4457 Superconductivity +0802.4461 +0803.0004 +0803.0026 +0803.0040 Soft Condensed Matter +0803.0042 Materials Science +0803.0051 Statistical Mechanics +0803.0080 +0803.0084 +0803.0085 Strongly Correlated Electrons +0803.0094 Chaotic Dynamics +0803.0122 +0803.0123 Geometric Topology +0803.0126 Materials Science +0803.0128 Superconductivity +0803.0130 Strongly Correlated Electrons +0803.0138 +0803.0142 +0803.0143 +0803.0147 +0803.0149 Disordered Systems and Neural Networks +0803.0155 +0803.0161 +0803.0171 Materials Science +0803.0174 Superconductivity +0803.0177 Optics +0803.0201 Atomic Physics +0803.0205 Strongly Correlated Electrons +0803.0206 Atomic Physics +0803.0209 Atomic Physics +0803.0210 Analysis of PDEs +0803.0212 +0803.0220 +0803.0238 +0803.0239 Other Condensed Matter +0803.0240 +0803.0260 Disordered Systems and Neural Networks +0803.0263 Statistical Mechanics +0803.0276 +0803.0278 Statistical Mechanics +0803.0295 +0803.0305 +0803.0307 Superconductivity +0803.0320 Materials Science +0803.0325 +0803.0326 +0803.0327 +0803.0329 +0803.0330 +0803.0332 +0803.0335 +0803.0340 Other Condensed Matter +0803.0347 +0803.0348 +0803.0350 +0803.0352 Strongly Correlated Electrons +0803.0357 +0803.0359 Statistical Mechanics +0803.0370 +0803.0373 Superconductivity +0803.0385 +0803.0393 +0803.0394 Strongly Correlated Electrons +0803.0395 +0803.0401 Mesoscale and Nanoscale Physics +0803.0406 +0803.0407 Phenomenology +0803.0414 +0803.0419 +0803.0426 +0803.0431 Plasma Physics +0803.0432 Materials Science +0803.0444 Disordered Systems and Neural Networks +0803.0445 Superconductivity +0803.0448 +0803.0454 Superconductivity +0803.0459 Statistical Mechanics +0803.0464 +0803.0466 +0803.0468 +0803.0469 Materials Science +0803.0470 +0803.0475 +0803.0478 Materials Science +0803.0479 +0803.0484 Superconductivity +0803.0485 +0803.0489 Disordered Systems and Neural Networks +0803.0493 Disordered Systems and Neural Networks +0803.0496 +0803.0505 +0803.0506 +0803.0513 Plasma Physics +0803.0516 Strongly Correlated Electrons +0803.0517 +0803.0522 Soft Condensed Matter +0803.0542 +0803.0543 +0803.0545 +0803.0548 +0803.0549 +0803.0554 +0803.0555 +0803.0558 Fluid Dynamics +0803.0560 Materials Science +0803.0561 +0803.0563 Mesoscale and Nanoscale Physics +0803.0565 +0803.0568 Mesoscale and Nanoscale Physics +0803.0576 +0803.0579 +0803.0580 Superconductivity +0803.0582 Mesoscale and Nanoscale Physics +0803.0583 Superconductivity +0803.0584 +0803.0598 +0803.0599 Other Condensed Matter +0803.0605 +0803.0607 +0803.0609 +0803.0613 +0803.0614 Data Analysis, Statistics and Probability +0803.0615 Mesoscale and Nanoscale Physics +0803.0621 +0803.0627 Superconductivity +0803.0628 +0803.0636 +0803.0638 Superconductivity +0803.0647 Materials Science +0803.0651 Other Condensed Matter +0803.0654 +0803.0662 Phenomenology +0803.0671 Mesoscale and Nanoscale Physics +0803.0674 +0803.0677 +0803.0679 +0803.0693 Materials Science +0803.0699 +0803.0704 Mesoscale and Nanoscale Physics +0803.0711 +0803.0714 Materials Science +0803.0718 Strongly Correlated Electrons +0803.0734 Mesoscale and Nanoscale Physics +0803.0737 Mesoscale and Nanoscale Physics +0803.0745 +0803.0747 Soft Condensed Matter +0803.0750 Statistical Mechanics +0803.0751 +0803.0766 +0803.0767 +0803.0768 +0803.0771 +0803.0773 +0803.0791 +0803.0794 Strongly Correlated Electrons +0803.0801 Atomic Physics +0803.0818 Statistical Mechanics +0803.0824 Symplectic Geometry +0803.0830 Mesoscale and Nanoscale Physics +0803.0832 Disordered Systems and Neural Networks +0803.0837 +0803.0838 Superconductivity +0803.0841 Statistical Mechanics +0803.0846 Other Condensed Matter +0803.0862 Symbolic Computation +0803.0863 +0803.0866 +0803.0872 Statistical Mechanics +0803.0873 +0803.0876 Atomic Physics +0803.0877 +0803.0878 Statistical Mechanics +0803.0894 Mesoscale and Nanoscale Physics +0803.0896 +0803.0907 Soft Condensed Matter +0803.0913 +0803.0916 Statistical Mechanics +0803.0918 +0803.0926 Probability +0803.0933 Superconductivity +0803.0938 +0803.0940 Atomic Physics +0803.0941 Strongly Correlated Electrons +0803.0945 Materials Science +0803.0946 Chemical Physics +0803.0948 Materials Science +0803.0949 Mesoscale and Nanoscale Physics +0803.0950 +0803.0974 Superconductivity +0803.0977 +0803.0978 Analysis of PDEs +0803.0986 Optics +0803.0989 +0803.0990 +0803.0993 Mesoscale and Nanoscale Physics +0803.0994 Materials Science +0803.0997 +0803.1000 Strongly Correlated Electrons +0803.1002 +0803.1003 Materials Science +0803.1009 +0803.1011 +0803.1016 Mesoscale and Nanoscale Physics +0803.1017 Optics +0803.1026 Superconductivity +0803.1042 Statistical Mechanics +0803.1047 +0803.1054 +0803.1062 Strongly Correlated Electrons +0803.1063 Statistical Mechanics +0803.1064 +0803.1066 +0803.1072 Strongly Correlated Electrons +0803.1078 Strongly Correlated Electrons +0803.1080 +0803.1082 Populations and Evolution +0803.1084 Materials Science +0803.1085 +0803.1089 +0803.1102 +0803.1103 Superconductivity +0803.1107 +0803.1113 +0803.1116 Statistical Mechanics +0803.1117 +0803.1123 Strongly Correlated Electrons +0803.1128 +0803.1130 +0803.1131 Mesoscale and Nanoscale Physics +0803.1132 +0803.1134 +0803.1136 Materials Science +0803.1138 +0803.1140 Mesoscale and Nanoscale Physics +0803.1149 +0803.1159 Mesoscale and Nanoscale Physics +0803.1164 +0803.1165 Materials Science +0803.1166 Strongly Correlated Electrons +0803.1169 Statistical Mechanics +0803.1172 +0803.1173 +0803.1177 +0803.1178 +0803.1181 +0803.1185 Superconductivity +0803.1198 Superconductivity +0803.1199 +0803.1204 Chaotic Dynamics +0803.1210 +0803.1211 Strongly Correlated Electrons +0803.1213 +0803.1214 +0803.1215 Other Condensed Matter +0803.1224 +0803.1232 +0803.1236 Other Condensed Matter +0803.1247 Disordered Systems and Neural Networks +0803.1263 Strongly Correlated Electrons +0803.1272 +0803.1273 Materials Science +0803.1274 +0803.1279 Strongly Correlated Electrons +0803.1294 +0803.1324 Strongly Correlated Electrons +0803.1325 Statistical Mechanics +0803.1337 Strongly Correlated Electrons +0803.1341 Superconductivity +0803.1345 Mesoscale and Nanoscale Physics +0803.1349 Statistical Mechanics +0803.1358 Materials Science +0803.1361 +0803.1373 +0803.1375 +0803.1377 Materials Science +0803.1383 +0803.1386 Atomic Physics +0803.1397 Optics +0803.1402 Mesoscale and Nanoscale Physics +0803.1404 Disordered Systems and Neural Networks +0803.1405 Other Condensed Matter +0803.1406 +0803.1411 +0803.1412 +0803.1420 +0803.1425 Exactly Solvable and Integrable Systems +0803.1426 Quantum Algebra +0803.1429 Statistical Mechanics +0803.1440 +0803.1442 Statistical Mechanics +0803.1460 +0803.1469 Optics +0803.1471 Molecular Networks +0803.1472 Plasma Physics +0803.1473 +0803.1483 +0803.1484 +0803.1486 Strongly Correlated Electrons +0803.1487 +0803.1489 +0803.1504 +0803.1505 +0803.1512 +0803.1517 Strongly Correlated Electrons +0803.1518 +0803.1539 Materials Science +0803.1543 +0803.1545 +0803.1548 Other Condensed Matter +0803.1549 +0803.1553 Disordered Systems and Neural Networks +0803.1558 Biological Physics +0803.1601 Optics +0803.1615 +0803.1623 +0803.1624 +0803.1631 Other Condensed Matter +0803.1644 +0803.1646 Materials Science +0803.1649 Optics +0803.1654 Optics +0803.1655 +0803.1656 +0803.1660 +0803.1661 +0803.1668 +0803.1669 Mesoscale and Nanoscale Physics +0803.1670 Mesoscale and Nanoscale Physics +0803.1671 +0803.1674 +0803.1675 +0803.1676 Statistical Mechanics +0803.1677 Strongly Correlated Electrons +0803.1680 +0803.1689 +0803.1690 +0803.1696 Optics +0803.1698 Superconductivity +0803.1705 +0803.1712 +0803.1721 +0803.1724 +0803.1726 +0803.1730 General Physics +0803.1738 +0803.1739 Superconductivity +0803.1747 Superconductivity +0803.1757 +0803.1760 +0803.1761 Mesoscale and Nanoscale Physics +0803.1768 +0803.1771 Optics +0803.1772 +0803.1775 +0803.1778 +0803.1782 +0803.1784 Analysis of PDEs +0803.1791 Chaotic Dynamics +0803.1793 Strongly Correlated Electrons +0803.1800 Physics and Society +0803.1802 Mesoscale and Nanoscale Physics +0803.1805 +0803.1812 Disordered Systems and Neural Networks +0803.1813 +0803.1823 +0803.1826 +0803.1831 +0803.1832 +0803.1833 +0803.1839 +0803.1840 General Physics +0803.1843 +0803.1848 Optics +0803.1851 +0803.1855 Materials Science +0803.1861 Materials Science +0803.1871 +0803.1872 +0803.1873 +0803.1878 Materials Science +0803.1884 Superconductivity +0803.1886 Optics +0803.1887 +0803.1889 Other Condensed Matter +0803.1893 +0803.1894 +0803.1904 Materials Science +0803.1905 Numerical Analysis +0803.1906 +0803.1907 +0803.1914 +0803.1916 General Finance +0803.1924 +0803.1934 +0803.1935 Superconductivity +0803.1938 Statistical Mechanics +0803.1952 +0803.1954 +0803.1955 Materials Science +0803.1958 Disordered Systems and Neural Networks +0803.1964 +0803.1965 +0803.1966 Quantitative Methods +0803.1969 Mesoscale and Nanoscale Physics +0803.1972 Atomic Physics +0803.1973 +0803.1982 +0803.1983 +0803.1984 +0803.1986 +0803.1991 +0803.2000 +0803.2007 +0803.2009 Soft Condensed Matter +0803.2013 Other Condensed Matter +0803.2016 Materials Science +0803.2020 +0803.2023 +0803.2029 +0803.2032 Other Condensed Matter +0803.2033 Soft Condensed Matter +0803.2042 +0803.2043 Probability +0803.2044 +0803.2046 Atomic Physics +0803.2053 +0803.2057 Analysis of PDEs +0803.2063 Classical Physics +0803.2078 Superconductivity +0803.2081 Strongly Correlated Electrons +0803.2087 +0803.2089 Strongly Correlated Electrons +0803.2097 +0803.2101 Mesoscale and Nanoscale Physics +0803.2104 +0803.2107 Disordered Systems and Neural Networks +0803.2115 Soft Condensed Matter +0803.2116 +0803.2117 +0803.2133 Strongly Correlated Electrons +0803.2136 Other Condensed Matter +0803.2144 Materials Science +0803.2145 +0803.2149 +0803.2152 Mesoscale and Nanoscale Physics +0803.2153 Atomic Physics +0803.2155 Statistical Mechanics +0803.2172 Spectral Theory +0803.2175 Mesoscale and Nanoscale Physics +0803.2182 +0803.2189 Physics and Society +0803.2201 General Finance +0803.2207 +0803.2208 Strongly Correlated Electrons +0803.2210 Populations and Evolution +0803.2217 +0803.2222 Materials Science +0803.2225 +0803.2229 +0803.2233 Materials Science +0803.2234 +0803.2237 +0803.2242 Theory +0803.2250 +0803.2254 Other Condensed Matter +0803.2255 +0803.2261 +0803.2264 +0803.2269 +0803.2270 Materials Science +0803.2271 +0803.2277 +0803.2279 Mesoscale and Nanoscale Physics +0803.2280 +0803.2293 Statistical Mechanics +0803.2295 +0803.2296 Soft Condensed Matter +0803.2300 Strongly Correlated Electrons +0803.2304 Atomic Physics +0803.2310 +0803.2312 Strongly Correlated Electrons +0803.2321 Materials Science +0803.2334 +0803.2339 Other Condensed Matter +0803.2354 Statistical Mechanics +0803.2359 +0803.2362 Pattern Formation and Solitons +0803.2373 Numerical Analysis +0803.2378 Plasma Physics +0803.2380 +0803.2387 +0803.2397 +0803.2404 +0803.2405 Superconductivity +0803.2408 Mesoscale and Nanoscale Physics +0803.2410 Physics and Society +0803.2416 Mesoscale and Nanoscale Physics +0803.2418 Mesoscale and Nanoscale Physics +0803.2426 Adaptation and Self-Organizing Systems +0803.2439 Other Condensed Matter +0803.2446 +0803.2452 Mesoscale and Nanoscale Physics +0803.2457 Superconductivity +0803.2473 +0803.2482 +0803.2485 Statistical Mechanics +0803.2489 +0803.2492 +0803.2493 Other Condensed Matter +0803.2499 Superconductivity +0803.2512 +0803.2516 +0803.2519 +0803.2520 +0803.2521 +0803.2523 +0803.2524 +0803.2525 +0803.2526 Theory +0803.2528 Superconductivity +0803.2533 +0803.2535 Other Condensed Matter +0803.2536 +0803.2537 Mesoscale and Nanoscale Physics +0803.2538 +0803.2539 +0803.2551 +0803.2555 Theory +0803.2558 Statistical Mechanics +0803.2573 Superconductivity +0803.2579 Superconductivity +0803.2580 Disordered Systems and Neural Networks +0803.2582 Chaotic Dynamics +0803.2590 Strongly Correlated Electrons +0803.2595 Optics +0803.2597 +0803.2600 +0803.2602 Statistical Mechanics +0803.2607 +0803.2623 Applications +0803.2631 +0803.2644 Soft Condensed Matter +0803.2646 +0803.2649 +0803.2653 +0803.2655 Statistical Mechanics +0803.2663 +0803.2672 Optics +0803.2687 Strongly Correlated Electrons +0803.2689 +0803.2691 +0803.2693 +0803.2704 +0803.2705 +0803.2714 +0803.2716 +0803.2718 +0803.2724 Materials Science +0803.2725 +0803.2727 Materials Science +0803.2739 Strongly Correlated Electrons +0803.2748 +0803.2750 Strongly Correlated Electrons +0803.2752 Materials Science +0803.2753 +0803.2767 Probability +0803.2787 Strongly Correlated Electrons +0803.2789 Statistical Mechanics +0803.2791 +0803.2792 Strongly Correlated Electrons +0803.2801 +0803.2804 Physics and Society +0803.2811 Mesoscale and Nanoscale Physics +0803.2815 Strongly Correlated Electrons +0803.2817 +0803.2818 Computational Physics +0803.2826 Soft Condensed Matter +0803.2828 +0803.2832 Strongly Correlated Electrons +0803.2840 +0803.2843 Soft Condensed Matter +0803.2845 Soft Condensed Matter +0803.2852 Superconductivity +0803.2854 Physics and Society +0803.2857 Strongly Correlated Electrons +0803.2859 Chaotic Dynamics +0803.2870 Statistical Mechanics +0803.2871 Other Condensed Matter +0803.2879 +0803.2880 Other Condensed Matter +0803.2881 Disordered Systems and Neural Networks +0803.2882 Mesoscale and Nanoscale Physics +0803.2884 +0803.2885 +0803.2886 Disordered Systems and Neural Networks +0803.2887 +0803.2891 +0803.2893 Atmospheric and Oceanic Physics +0803.2896 +0803.2897 +0803.2900 Other Condensed Matter +0803.2902 Strongly Correlated Electrons +0803.2903 Plasma Physics +0803.2907 Mesoscale and Nanoscale Physics +0803.2908 +0803.2909 Other Condensed Matter +0803.2918 Materials Science +0803.2927 Strongly Correlated Electrons +0803.2929 +0803.2933 Optics +0803.2939 Optics +0803.2940 +0803.2951 Strongly Correlated Electrons +0803.2952 Optics +0803.2953 Statistical Mechanics +0803.2954 +0803.2968 Chaotic Dynamics +0803.2982 +0803.2985 Statistical Mechanics +0803.2994 +0803.3000 +0803.3002 +0803.3003 +0803.3004 Strongly Correlated Electrons +0803.3006 +0803.3016 +0803.3022 Pattern Formation and Solitons +0803.3023 Mesoscale and Nanoscale Physics +0803.3025 +0803.3032 +0803.3033 +0803.3038 Other Condensed Matter +0803.3045 +0803.3060 Probability +0803.3067 +0803.3071 +0803.3074 Analysis of PDEs +0803.3076 Optics +0803.3077 +0803.3080 Superconductivity +0803.3081 Superconductivity +0803.3095 Other Condensed Matter +0803.3102 Mesoscale and Nanoscale Physics +0803.3115 Chaotic Dynamics +0803.3120 +0803.3137 +0803.3145 +0803.3148 +0803.3153 Soft Condensed Matter +0803.3157 Mesoscale and Nanoscale Physics +0803.3174 Superconductivity +0803.3182 Materials Science +0803.3184 +0803.3191 Materials Science +0803.3193 Materials Science +0803.3198 Probability +0803.3200 Superconductivity +0803.3202 +0803.3206 Materials Science +0803.3209 +0803.3217 +0803.3228 Mesoscale and Nanoscale Physics +0803.3239 Mesoscale and Nanoscale Physics +0803.3243 +0803.3245 Materials Science +0803.3246 +0803.3247 +0803.3251 Cellular Automata and Lattice Gases +0803.3253 Superconductivity +0803.3255 Strongly Correlated Electrons +0803.3260 +0803.3266 +0803.3267 +0803.3277 Other Condensed Matter +0803.3282 Mesoscale and Nanoscale Physics +0803.3297 Pattern Formation and Solitons +0803.3310 Mesoscale and Nanoscale Physics +0803.3324 +0803.3334 Statistical Mechanics +0803.3342 Mesoscale and Nanoscale Physics +0803.3369 +0803.3380 Strongly Correlated Electrons +0803.3381 Optics +0803.3387 Materials Science +0803.3391 +0803.3407 +0803.3410 +0803.3415 +0803.3422 Statistical Mechanics +0803.3425 Strongly Correlated Electrons +0803.3429 Soft Condensed Matter +0803.3430 +0803.3437 Biological Physics +0803.3438 Soft Condensed Matter +0803.3441 +0803.3451 Mesoscale and Nanoscale Physics +0803.3454 +0803.3460 Other Condensed Matter +0803.3464 Mesoscale and Nanoscale Physics +0803.3466 +0803.3472 +0803.3476 +0803.3478 +0803.3481 +0803.3491 Pattern Formation and Solitons +0803.3495 Materials Science +0803.3506 +0803.3509 Disordered Systems and Neural Networks +0803.3513 Analysis of PDEs +0803.3523 +0803.3527 +0803.3532 Symplectic Geometry +0803.3540 +0803.3543 Mesoscale and Nanoscale Physics +0803.3546 +0803.3548 +0803.3556 Mesoscale and Nanoscale Physics +0803.3562 Strongly Correlated Electrons +0803.3564 Mesoscale and Nanoscale Physics +0803.3567 Statistical Mechanics +0803.3569 Materials Science +0803.3571 +0803.3573 Mesoscale and Nanoscale Physics +0803.3578 Other Condensed Matter +0803.3583 +0803.3585 +0803.3595 +0803.3603 Superconductivity +0803.3606 +0803.3607 +0803.3610 Statistical Mechanics +0803.3613 +0803.3617 +0803.3618 +0803.3619 +0803.3620 +0803.3622 +0803.3623 Materials Science +0803.3625 Phenomenology +0803.3631 +0803.3634 Statistical Mechanics +0803.3635 Soft Condensed Matter +0803.3637 Physics and Society +0803.3638 +0803.3640 Materials Science +0803.3641 +0803.3648 Statistical Mechanics +0803.3654 +0803.3656 +0803.3662 +0803.3671 Statistical Mechanics +0803.3673 Atomic Physics +0803.3674 +0803.3681 +0803.3690 +0803.3700 +0803.3714 Mesoscale and Nanoscale Physics +0803.3715 +0803.3717 Molecular Networks +0803.3722 +0803.3728 +0803.3731 +0803.3735 Strongly Correlated Electrons +0803.3736 Materials Science +0803.3741 Functional Analysis +0803.3745 Mesoscale and Nanoscale Physics +0803.3749 +0803.3751 +0803.3754 Materials Science +0803.3759 +0803.3761 Statistical Mechanics +0803.3772 Superconductivity +0803.3779 Materials Science +0803.3783 Analysis of PDEs +0803.3784 +0803.3786 +0803.3791 Mesoscale and Nanoscale Physics +0803.3797 Other Condensed Matter +0803.3806 +0803.3808 +0803.3811 Phenomenology +0803.3814 +0803.3817 Mesoscale and Nanoscale Physics +0803.3823 +0803.3829 Materials Science +0803.3830 Strongly Correlated Electrons +0803.3831 +0803.3842 +0803.3843 Plasma Physics +0803.3853 +0803.3854 +0803.3856 +0803.3858 +0803.3862 Strongly Correlated Electrons +0803.3864 Mesoscale and Nanoscale Physics +0803.3869 Strongly Correlated Electrons +0803.3877 +0803.3882 +0803.3884 Statistical Finance +0803.3886 Materials Science +0803.3890 Soft Condensed Matter +0803.3901 Biological Physics +0803.3909 +0803.3910 +0803.3915 Materials Science +0803.3917 +0803.3918 Disordered Systems and Neural Networks +0803.3921 +0803.3932 +0803.3934 +0803.3944 +0803.3947 +0803.3952 +0803.3954 Classical Physics +0803.3955 Soft Condensed Matter +0803.3958 Differential Geometry +0803.3966 +0803.3971 Disordered Systems and Neural Networks +0803.3973 +0803.3974 Statistical Mechanics +0803.3975 Materials Science +0803.3977 +0803.3982 Superconductivity +0803.3983 Strongly Correlated Electrons +0803.3985 Mesoscale and Nanoscale Physics +0803.3986 Materials Science +0803.3987 +0803.4001 +0803.4009 Strongly Correlated Electrons +0803.4011 +0803.4018 Human-Computer Interaction +0803.4032 +0803.4035 +0803.4053 +0803.4062 Chaotic Dynamics +0803.4073 Optics +0803.4084 +0803.4088 Physics and Society +0803.4096 Discrete Mathematics +0803.4097 +0803.4099 +0803.4102 +0803.4107 +0803.4109 Disordered Systems and Neural Networks +0803.4116 Other Condensed Matter +0803.4127 +0803.4131 +0803.4138 +0803.4143 +0803.4148 Classical Physics +0803.4152 +0803.4154 Mesoscale and Nanoscale Physics +0803.4157 Strongly Correlated Electrons +0803.4158 +0803.4164 +0803.4181 Biological Physics +0803.4186 Statistical Mechanics +0803.4189 +0803.4198 +0803.4199 +0803.4203 +0803.4208 Strongly Correlated Electrons +0803.4213 Optics +0803.4218 +0803.4220 Statistical Mechanics +0803.4221 Other Condensed Matter +0803.4225 +0803.4228 Mesoscale and Nanoscale Physics +0803.4230 +0803.4234 Superconductivity +0803.4236 Fluid Dynamics +0803.4249 Mesoscale and Nanoscale Physics +0803.4255 Statistical Mechanics +0803.4256 Chemical Physics +0803.4258 Materials Science +0803.4262 +0803.4266 Superconductivity +0803.4269 Chaotic Dynamics +0803.4272 Dynamical Systems +0803.4275 +0803.4277 Genomics +0803.4286 Plasma Physics +0803.4298 +0803.4303 Mesoscale and Nanoscale Physics +0803.4305 Atomic Physics +0803.4310 Mesoscale and Nanoscale Physics +0803.4315 +0803.4316 +0803.4346 Superconductivity +0803.4347 Other Condensed Matter +0803.4352 +0803.4357 Popular Physics +0803.4363 Statistical Mechanics +0803.4364 +0803.4365 +0803.4371 +0803.4376 +0803.4391 +0803.4393 Materials Science +0803.4396 Statistical Mechanics +0803.4398 Pattern Formation and Solitons +0803.4400 Statistical Mechanics +0803.4402 +0803.4403 Plasma Physics +0803.4411 +0803.4419 Other Condensed Matter +0803.4422 +0803.4423 +0803.4425 Superconductivity +0803.4432 Mesoscale and Nanoscale Physics +0803.4448 Mesoscale and Nanoscale Physics +0803.4461 Atomic and Molecular Clusters +0803.4470 +0803.4481 Atomic Physics +0803.4487 Superconductivity +0803.4490 Mesoscale and Nanoscale Physics +0803.4499 Fluid Dynamics +0803.4503 Atomic Physics +0803.4506 +0803.4508 +0803.4509 Optics +0803.4514 Superconductivity +0803.4515 Optics +0803.4517 +0803.4519 +0804.0001 Mesoscale and Nanoscale Physics +0804.0004 +0804.0005 +0804.0014 +0804.0021 +0804.0032 Disordered Systems and Neural Networks +0804.0040 +0804.0042 +0804.0044 +0804.0061 Popular Physics +0804.0062 Other Condensed Matter +0804.0065 Fluid Dynamics +0804.0070 +0804.0072 +0804.0078 +0804.0082 +0804.0087 +0804.0092 +0804.0105 +0804.0115 Classical Physics +0804.0118 Chaotic Dynamics +0804.0132 +0804.0139 +0804.0147 Materials Science +0804.0148 +0804.0151 +0804.0155 +0804.0156 +0804.0181 +0804.0189 Soft Condensed Matter +0804.0192 +0804.0193 Strongly Correlated Electrons +0804.0204 +0804.0211 Strongly Correlated Electrons +0804.0219 Atomic and Molecular Clusters +0804.0220 +0804.0221 Biomolecules +0804.0224 Probability +0804.0225 Strongly Correlated Electrons +0804.0228 Other Condensed Matter +0804.0233 +0804.0235 +0804.0237 +0804.0238 +0804.0240 +0804.0241 +0804.0243 +0804.0246 Mesoscale and Nanoscale Physics +0804.0249 +0804.0254 +0804.0256 +0804.0257 +0804.0263 Optics +0804.0266 +0804.0281 Soft Condensed Matter +0804.0291 +0804.0294 +0804.0299 +0804.0312 Mesoscale and Nanoscale Physics +0804.0319 +0804.0320 Chaotic Dynamics +0804.0331 Statistical Finance +0804.0342 Mesoscale and Nanoscale Physics +0804.0344 +0804.0345 +0804.0347 +0804.0351 +0804.0354 +0804.0361 Materials Science +0804.0364 Other Condensed Matter +0804.0370 +0804.0371 +0804.0378 Materials Science +0804.0384 Soft Condensed Matter +0804.0393 Materials Science +0804.0400 Strongly Correlated Electrons +0804.0402 +0804.0406 +0804.0416 Strongly Correlated Electrons +0804.0417 Physics and Society +0804.0428 +0804.0432 +0804.0435 +0804.0437 +0804.0438 +0804.0439 +0804.0443 Materials Science +0804.0445 +0804.0448 Quantitative Methods +0804.0458 Mesoscale and Nanoscale Physics +0804.0461 Other Condensed Matter +0804.0462 +0804.0464 +0804.0467 Superconductivity +0804.0468 +0804.0471 +0804.0484 Materials Science +0804.0491 +0804.0498 +0804.0501 +0804.0502 +0804.0506 Distributed, Parallel, and Cluster Computing +0804.0514 +0804.0515 Soft Condensed Matter +0804.0519 Statistical Mechanics +0804.0520 +0804.0523 Superconductivity +0804.0531 Materials Science +0804.0532 Other Condensed Matter +0804.0535 Superconductivity +0804.0536 Superconductivity +0804.0538 Materials Science +0804.0544 Other Condensed Matter +0804.0545 Mesoscale and Nanoscale Physics +0804.0552 Theory +0804.0554 +0804.0559 Phenomenology +0804.0567 +0804.0569 Statistical Mechanics +0804.0585 Optics +0804.0586 +0804.0607 +0804.0612 Statistical Mechanics +0804.0615 +0804.0617 Strongly Correlated Electrons +0804.0622 Phenomenology +0804.0625 Statistical Mechanics +0804.0627 Soft Condensed Matter +0804.0631 Exactly Solvable and Integrable Systems +0804.0644 +0804.0649 Phenomenology +0804.0663 Other Condensed Matter +0804.0664 +0804.0665 Statistical Mechanics +0804.0667 Computational Physics +0804.0680 Strongly Correlated Electrons +0804.0681 Other Condensed Matter +0804.0684 Other Condensed Matter +0804.0691 Phenomenology +0804.0694 +0804.0707 Soft Condensed Matter +0804.0718 Phenomenology +0804.0727 Soft Condensed Matter +0804.0729 +0804.0730 Soft Condensed Matter +0804.0732 Statistical Mechanics +0804.0734 Materials Science +0804.0742 Statistical Mechanics +0804.0751 Soft Condensed Matter +0804.0760 +0804.0761 Soft Condensed Matter +0804.0762 Strongly Correlated Electrons +0804.0767 Strongly Correlated Electrons +0804.0773 +0804.0776 Chaotic Dynamics +0804.0786 Strongly Correlated Electrons +0804.0788 +0804.0798 +0804.0803 +0804.0806 +0804.0811 +0804.0812 Mesoscale and Nanoscale Physics +0804.0817 Mesoscale and Nanoscale Physics +0804.0820 Mesoscale and Nanoscale Physics +0804.0821 Strongly Correlated Electrons +0804.0822 +0804.0826 +0804.0827 Plasma Physics +0804.0835 Superconductivity +0804.0839 +0804.0843 Strongly Correlated Electrons +0804.0849 +0804.0850 Soft Condensed Matter +0804.0854 Soft Condensed Matter +0804.0857 Superconductivity +0804.0858 +0804.0866 Superconductivity +0804.0873 +0804.0880 +0804.0890 +0804.0892 +0804.0894 Materials Science +0804.0895 Strongly Correlated Electrons +0804.0897 Materials Science +0804.0902 Statistical Finance +0804.0910 +0804.0918 Mesoscale and Nanoscale Physics +0804.0921 Soft Condensed Matter +0804.0925 Classical Analysis and ODEs +0804.0928 +0804.0939 Optics +0804.0969 +0804.0971 Other Condensed Matter +0804.0973 +0804.0975 +0804.0994 Materials Science +0804.0999 Mesoscale and Nanoscale Physics +0804.1002 Statistical Mechanics +0804.1010 +0804.1013 +0804.1017 +0804.1020 Materials Science +0804.1035 Superconductivity +0804.1036 +0804.1049 +0804.1064 +0804.1066 Statistical Mechanics +0804.1069 +0804.1070 Statistical Mechanics +0804.1074 Differential Geometry +0804.1080 Molecular Networks +0804.1089 +0804.1100 +0804.1101 +0804.1113 Superconductivity +0804.1122 +0804.1123 +0804.1128 +0804.1137 Optimization and Control +0804.1138 Mesoscale and Nanoscale Physics +0804.1141 +0804.1147 +0804.1150 +0804.1166 Mesoscale and Nanoscale Physics +0804.1167 +0804.1168 Classical Physics +0804.1175 +0804.1178 +0804.1180 +0804.1182 +0804.1190 +0804.1191 +0804.1199 +0804.1205 Materials Science +0804.1212 +0804.1216 Materials Science +0804.1223 +0804.1226 +0804.1227 Biological Physics +0804.1236 Materials Science +0804.1238 +0804.1247 +0804.1253 +0804.1257 +0804.1262 Strongly Correlated Electrons +0804.1272 Other Condensed Matter +0804.1275 Analysis of PDEs +0804.1284 +0804.1295 +0804.1297 Statistical Mechanics +0804.1300 Symplectic Geometry +0804.1318 Strongly Correlated Electrons +0804.1321 +0804.1323 +0804.1331 +0804.1334 +0804.1337 +0804.1342 Statistical Mechanics +0804.1348 +0804.1363 +0804.1364 +0804.1365 +0804.1375 +0804.1378 +0804.1383 +0804.1385 +0804.1394 Computational Physics +0804.1405 General Physics +0804.1406 Exactly Solvable and Integrable Systems +0804.1433 Soft Condensed Matter +0804.1446 Materials Science +0804.1462 Statistical Mechanics +0804.1467 +0804.1477 +0804.1481 Disordered Systems and Neural Networks +0804.1482 +0804.1486 Disordered Systems and Neural Networks +0804.1498 +0804.1506 Materials Science +0804.1520 +0804.1526 Materials Science +0804.1529 +0804.1530 Soft Condensed Matter +0804.1532 +0804.1537 +0804.1538 +0804.1545 +0804.1550 +0804.1552 +0804.1555 Strongly Correlated Electrons +0804.1556 Plasma Physics +0804.1564 +0804.1578 Materials Science +0804.1586 Statistical Mechanics +0804.1590 Other Condensed Matter +0804.1592 +0804.1594 Superconductivity +0804.1595 Strongly Correlated Electrons +0804.1598 +0804.1605 Probability +0804.1612 Materials Science +0804.1613 +0804.1614 +0804.1618 Chaotic Dynamics +0804.1621 Disordered Systems and Neural Networks +0804.1625 +0804.1629 +0804.1632 +0804.1633 +0804.1640 +0804.1641 +0804.1643 +0804.1646 +0804.1648 Differential Geometry +0804.1671 Materials Science +0804.1672 Other Condensed Matter +0804.1675 +0804.1678 Strongly Correlated Electrons +0804.1680 Exactly Solvable and Integrable Systems +0804.1681 Materials Science +0804.1692 Optics +0804.1694 Disordered Systems and Neural Networks +0804.1701 Optics +0804.1702 +0804.1703 Fluid Dynamics +0804.1705 +0804.1706 +0804.1709 Analysis of PDEs +0804.1721 Analysis of PDEs +0804.1727 +0804.1731 +0804.1734 +0804.1735 Fluid Dynamics +0804.1739 Superconductivity +0804.1756 +0804.1766 +0804.1767 Chemical Physics +0804.1768 Statistical Mechanics +0804.1774 +0804.1776 Classical Physics +0804.1785 Dynamical Systems +0804.1792 +0804.1795 +0804.1799 +0804.1802 +0804.1804 +0804.1808 Strongly Correlated Electrons +0804.1809 +0804.1812 +0804.1814 History and Philosophy of Physics +0804.1816 Materials Science +0804.1821 +0804.1826 +0804.1836 Statistical Mechanics +0804.1842 +0804.1850 Mesoscale and Nanoscale Physics +0804.1851 Other Condensed Matter +0804.1856 +0804.1865 +0804.1874 Strongly Correlated Electrons +0804.1875 +0804.1878 Biological Physics +0804.1880 Statistical Mechanics +0804.1888 +0804.1891 Superconductivity +0804.1892 +0804.1895 Optics +0804.1898 Statistical Mechanics +0804.1906 +0804.1909 +0804.1913 +0804.1915 Statistical Mechanics +0804.1917 +0804.1926 Materials Science +0804.1927 Pattern Formation and Solitons +0804.1929 Disordered Systems and Neural Networks +0804.1930 Statistical Mechanics +0804.1939 +0804.1947 +0804.1951 +0804.1963 +0804.1965 +0804.1966 Statistical Mechanics +0804.1967 Soft Condensed Matter +0804.1972 Soft Condensed Matter +0804.1973 Materials Science +0804.1978 Mesoscale and Nanoscale Physics +0804.1979 +0804.1986 Chemical Physics +0804.1987 +0804.1993 +0804.2009 +0804.2010 +0804.2024 Optics +0804.2030 +0804.2055 Subcellular Processes +0804.2060 Statistical Mechanics +0804.2069 +0804.2086 +0804.2093 +0804.2106 +0804.2113 +0804.2114 Operator Algebras +0804.2130 Materials Science +0804.2133 Optics +0804.2137 Disordered Systems and Neural Networks +0804.2143 +0804.2149 Theory +0804.2152 +0804.2165 Materials Science +0804.2167 +0804.2172 Phenomenology +0804.2174 Chaotic Dynamics +0804.2175 +0804.2180 Phenomenology +0804.2184 +0804.2188 Strongly Correlated Electrons +0804.2200 Materials Science +0804.2207 +0804.2213 Materials Science +0804.2218 Soft Condensed Matter +0804.2226 Optics +0804.2231 Chaotic Dynamics +0804.2232 Strongly Correlated Electrons +0804.2235 Statistical Mechanics +0804.2257 +0804.2259 +0804.2266 +0804.2270 Biological Physics +0804.2271 +0804.2272 Mesoscale and Nanoscale Physics +0804.2276 +0804.2286 Superconductivity +0804.2294 +0804.2296 +0804.2299 +0804.2303 Superconductivity +0804.2304 +0804.2306 +0804.2308 Strongly Correlated Electrons +0804.2318 Materials Science +0804.2321 Statistical Mechanics +0804.2324 Exactly Solvable and Integrable Systems +0804.2325 +0804.2326 Chaotic Dynamics +0804.2329 Statistical Mechanics +0804.2336 +0804.2340 Statistical Mechanics +0804.2341 Phenomenology +0804.2348 Mesoscale and Nanoscale Physics +0804.2363 Superconductivity +0804.2365 Mesoscale and Nanoscale Physics +0804.2367 +0804.2375 +0804.2376 +0804.2377 +0804.2380 +0804.2383 Statistical Mechanics +0804.2392 +0804.2395 +0804.2396 +0804.2402 +0804.2403 Superconductivity +0804.2406 Strongly Correlated Electrons +0804.2410 Atomic Physics +0804.2411 Fluid Dynamics +0804.2412 Mesoscale and Nanoscale Physics +0804.2416 Materials Science +0804.2419 +0804.2421 +0804.2425 +0804.2431 Statistical Mechanics +0804.2434 Statistics Theory +0804.2438 Materials Science +0804.2445 Mesoscale and Nanoscale Physics +0804.2447 Optics +0804.2450 Strongly Correlated Electrons +0804.2454 Strongly Correlated Electrons +0804.2455 +0804.2460 Superconductivity +0804.2465 +0804.2467 +0804.2474 Pattern Formation and Solitons +0804.2476 +0804.2479 +0804.2483 Phenomenology +0804.2484 +0804.2485 Mesoscale and Nanoscale Physics +0804.2491 +0804.2495 +0804.2498 +0804.2516 +0804.2521 Strongly Correlated Electrons +0804.2523 Strongly Correlated Electrons +0804.2524 Statistical Mechanics +0804.2526 +0804.2531 Disordered Systems and Neural Networks +0804.2532 Chaotic Dynamics +0804.2538 Chaotic Dynamics +0804.2539 +0804.2542 Superconductivity +0804.2544 +0804.2549 Lattice +0804.2554 +0804.2555 +0804.2560 +0804.2565 Materials Science +0804.2567 +0804.2569 Fluid Dynamics +0804.2575 Physics and Society +0804.2577 +0804.2580 Other Condensed Matter +0804.2582 Superconductivity +0804.2586 Fluid Dynamics +0804.2587 Optics +0804.2599 Optics +0804.2600 Statistical Mechanics +0804.2605 Numerical Analysis +0804.2606 Superconductivity +0804.2607 +0804.2615 +0804.2624 Strongly Correlated Electrons +0804.2626 Strongly Correlated Electrons +0804.2628 +0804.2631 +0804.2633 +0804.2653 +0804.2654 Disordered Systems and Neural Networks +0804.2658 Superconductivity +0804.2659 +0804.2660 Disordered Systems and Neural Networks +0804.2664 Mesoscale and Nanoscale Physics +0804.2665 +0804.2666 +0804.2671 +0804.2672 +0804.2674 +0804.2675 Soft Condensed Matter +0804.2681 Analysis of PDEs +0804.2687 +0804.2693 +0804.2695 +0804.2697 Theory +0804.2702 Computational Physics +0804.2706 Mesoscale and Nanoscale Physics +0804.2712 Materials Science +0804.2716 +0804.2719 +0804.2723 Superconductivity +0804.2725 Statistical Mechanics +0804.2726 +0804.2735 Other Condensed Matter +0804.2736 Strongly Correlated Electrons +0804.2737 Soft Condensed Matter +0804.2748 Mesoscale and Nanoscale Physics +0804.2749 Biomolecules +0804.2755 Optics +0804.2760 Optics +0804.2765 Exactly Solvable and Integrable Systems +0804.2767 Exactly Solvable and Integrable Systems +0804.2771 +0804.2774 Mesoscale and Nanoscale Physics +0804.2780 +0804.2781 Strongly Correlated Electrons +0804.2782 Soft Condensed Matter +0804.2788 Disordered Systems and Neural Networks +0804.2793 +0804.2796 Materials Science +0804.2798 Data Analysis, Statistics and Probability +0804.2805 Fluid Dynamics +0804.2810 Classical Physics +0804.2824 Other Condensed Matter +0804.2826 +0804.2835 +0804.2840 Other Condensed Matter +0804.2848 Machine Learning +0804.2855 +0804.2856 +0804.2859 Complex Variables +0804.2861 Optics +0804.2862 +0804.2863 Theory +0804.2864 +0804.2866 +0804.2867 Phenomenology +0804.2871 Superconductivity +0804.2872 +0804.2874 +0804.2876 Classical Physics +0804.2880 Theory +0804.2881 Other Condensed Matter +0804.2882 +0804.2883 +0804.2892 +0804.2895 +0804.2902 Theory +0804.2903 Chaotic Dynamics +0804.2904 +0804.2909 Strongly Correlated Electrons +0804.2912 Pricing of Securities +0804.2916 +0804.2917 +0804.2920 +0804.2924 +0804.2927 +0804.2928 +0804.2942 Optics +0804.2943 +0804.2944 Other Condensed Matter +0804.2949 Atomic Physics +0804.2951 +0804.2954 +0804.2955 +0804.2963 Superconductivity +0804.2974 Strongly Correlated Electrons +0804.2976 +0804.2987 +0804.2988 Disordered Systems and Neural Networks +0804.2994 Other Condensed Matter +0804.3004 +0804.3009 Statistical Mechanics +0804.3010 Methodology +0804.3021 Atomic Physics +0804.3022 Other Condensed Matter +0804.3025 +0804.3030 +0804.3034 +0804.3039 Materials Science +0804.3042 Phenomenology +0804.3045 Superconductivity +0804.3055 Statistical Mechanics +0804.3070 +0804.3083 Mesoscale and Nanoscale Physics +0804.3087 Other Condensed Matter +0804.3091 +0804.3093 Mesoscale and Nanoscale Physics +0804.3100 +0804.3101 Dynamical Systems +0804.3107 Strongly Correlated Electrons +0804.3108 +0804.3111 +0804.3113 +0804.3114 Mesoscale and Nanoscale Physics +0804.3115 Superconductivity +0804.3119 +0804.3123 +0804.3127 +0804.3130 Optics +0804.3138 Fluid Dynamics +0804.3140 +0804.3141 +0804.3149 Classical Physics +0804.3159 +0804.3177 Fluid Dynamics +0804.3179 Statistical Mechanics +0804.3181 Physics and Society +0804.3187 +0804.3188 Strongly Correlated Electrons +0804.3190 Mesoscale and Nanoscale Physics +0804.3202 +0804.3222 +0804.3245 +0804.3253 +0804.3255 Information Theory +0804.3256 +0804.3257 +0804.3261 Information Theory +0804.3270 Chaotic Dynamics +0804.3280 Statistical Mechanics +0804.3283 Strongly Correlated Electrons +0804.3284 Strongly Correlated Electrons +0804.3287 Other Condensed Matter +0804.3295 +0804.3298 Mesoscale and Nanoscale Physics +0804.3299 Soft Condensed Matter +0804.3304 Materials Science +0804.3312 Analysis of PDEs +0804.3314 Strongly Correlated Electrons +0804.3316 +0804.3317 +0804.3324 Materials Science +0804.3327 +0804.3330 Soft Condensed Matter +0804.3332 Mesoscale and Nanoscale Physics +0804.3333 +0804.3337 Materials Science +0804.3338 +0804.3346 +0804.3350 +0804.3355 Superconductivity +0804.3356 +0804.3360 Mesoscale and Nanoscale Physics +0804.3362 Statistical Mechanics +0804.3368 +0804.3369 +0804.3371 Mesoscale and Nanoscale Physics +0804.3376 +0804.3378 +0804.3379 +0804.3381 +0804.3384 +0804.3387 Statistical Mechanics +0804.3389 Other Condensed Matter +0804.3395 Strongly Correlated Electrons +0804.3397 +0804.3398 +0804.3399 +0804.3400 +0804.3403 +0804.3412 Mesoscale and Nanoscale Physics +0804.3413 +0804.3420 +0804.3424 Other Condensed Matter +0804.3425 +0804.3427 +0804.3428 Soft Condensed Matter +0804.3433 Phenomenology +0804.3436 Materials Science +0804.3445 +0804.3457 Physics and Society +0804.3461 +0804.3462 +0804.3464 Differential Geometry +0804.3465 +0804.3468 +0804.3473 +0804.3475 +0804.3482 Strongly Correlated Electrons +0804.3483 +0804.3498 Exactly Solvable and Integrable Systems +0804.3510 Geophysics +0804.3513 Strongly Correlated Electrons +0804.3515 +0804.3517 Statistical Mechanics +0804.3521 +0804.3523 +0804.3524 Materials Science +0804.3533 Materials Science +0804.3535 Superconductivity +0804.3536 +0804.3538 +0804.3540 Plasma Physics +0804.3543 +0804.3546 Superconductivity +0804.3547 Materials Science +0804.3552 +0804.3555 Statistical Mechanics +0804.3559 Statistical Mechanics +0804.3571 Mesoscale and Nanoscale Physics +0804.3574 +0804.3576 Statistical Mechanics +0804.3589 +0804.3593 +0804.3597 +0804.3607 +0804.3609 Mesoscale and Nanoscale Physics +0804.3614 Statistical Mechanics +0804.3618 +0804.3619 +0804.3622 Statistical Mechanics +0804.3625 Strongly Correlated Electrons +0804.3626 +0804.3630 Statistical Mechanics +0804.3632 +0804.3634 +0804.3642 Superconductivity +0804.3648 Strongly Correlated Electrons +0804.3672 Probability +0804.3674 Other Condensed Matter +0804.3684 +0804.3688 +0804.3689 Mesoscale and Nanoscale Physics +0804.3691 Disordered Systems and Neural Networks +0804.3692 Mesoscale and Nanoscale Physics +0804.3699 +0804.3700 +0804.3704 Disordered Systems and Neural Networks +0804.3705 Other Condensed Matter +0804.3712 +0804.3713 Materials Science +0804.3723 Other Condensed Matter +0804.3728 +0804.3734 Adaptation and Self-Organizing Systems +0804.3743 +0804.3744 +0804.3766 +0804.3767 Optics +0804.3774 +0804.3793 Chaotic Dynamics +0804.3795 +0804.3797 +0804.3799 +0804.3803 Superconductivity +0804.3807 Soft Condensed Matter +0804.3808 +0804.3812 +0804.3823 +0804.3826 Medical Physics +0804.3829 +0804.3832 Superconductivity +0804.3837 Phenomenology +0804.3838 +0804.3843 Strongly Correlated Electrons +0804.3856 Atomic Physics +0804.3864 Mesoscale and Nanoscale Physics +0804.3877 +0804.3890 Statistical Mechanics +0804.3903 Optics +0804.3904 +0804.3905 Strongly Correlated Electrons +0804.3909 Materials Science +0804.3911 Statistical Mechanics +0804.3916 Theory +0804.3918 Materials Science +0804.3919 Mesoscale and Nanoscale Physics +0804.3923 Strongly Correlated Electrons +0804.3924 Materials Science +0804.3930 +0804.3934 Plasma Physics +0804.3937 Materials Science +0804.3940 Strongly Correlated Electrons +0804.3942 Materials Science +0804.3946 +0804.3950 Strongly Correlated Electrons +0804.3953 Materials Science +0804.3966 +0804.3967 Mesoscale and Nanoscale Physics +0804.3979 Mesoscale and Nanoscale Physics +0804.3980 Strongly Correlated Electrons +0804.3985 Materials Science +0804.3988 Disordered Systems and Neural Networks +0804.4000 Phenomenology +0804.4002 +0804.4007 +0804.4024 +0804.4034 Strongly Correlated Electrons +0804.4035 +0804.4037 +0804.4040 +0804.4049 Mesoscale and Nanoscale Physics +0804.4057 +0804.4061 +0804.4079 +0804.4081 Statistical Finance +0804.4082 +0804.4099 Statistical Mechanics +0804.4103 +0804.4105 Strongly Correlated Electrons +0804.4107 +0804.4110 +0804.4113 Mesoscale and Nanoscale Physics +0804.4117 +0804.4124 +0804.4125 Quantitative Methods +0804.4129 +0804.4130 Atomic Physics +0804.4139 +0804.4143 +0804.4151 +0804.4152 Trading and Market Microstructure +0804.4155 +0804.4163 +0804.4172 +0804.4173 Atomic Physics +0804.4175 +0804.4177 +0804.4178 Biological Physics +0804.4179 Biological Physics +0804.4180 Chaotic Dynamics +0804.4181 Mesoscale and Nanoscale Physics +0804.4182 Plasma Physics +0804.4183 +0804.4185 +0804.4186 Superconductivity +0804.4189 +0804.4190 Theory +0804.4201 +0804.4212 Statistical Mechanics +0804.4214 Quantum Algebra +0804.4228 +0804.4230 +0804.4241 +0804.4242 Optics +0804.4250 Strongly Correlated Electrons +0804.4259 +0804.4267 Phenomenology +0804.4277 +0804.4293 Strongly Correlated Electrons +0804.4303 +0804.4308 Lattice +0804.4311 +0804.4314 Classical Physics +0804.4317 Atomic Physics +0804.4318 +0804.4334 +0804.4342 Mesoscale and Nanoscale Physics +0804.4349 +0804.4351 +0804.4353 +0804.4368 Mesoscale and Nanoscale Physics +0804.4371 +0804.4373 Operator Algebras +0804.4382 Theory +0804.4390 +0804.4392 Materials Science +0804.4394 +0804.4406 +0804.4409 +0804.4411 +0804.4413 Mesoscale and Nanoscale Physics +0804.4429 +0804.4430 Superconductivity +0804.4437 Strongly Correlated Electrons +0804.4439 +0804.4447 +0804.4449 +0804.4458 Superconductivity +0804.4461 Other Condensed Matter +0804.4463 Strongly Correlated Electrons +0804.4465 +0804.4467 +0804.4471 Phenomenology +0804.4472 +0804.4473 +0804.4475 +0804.4476 +0804.4477 +0804.4478 +0804.4481 +0804.4482 +0804.4495 +0804.4503 Statistical Mechanics +0804.4507 Theory +0804.4509 Atomic Physics +0804.4510 Analysis of PDEs +0804.4513 +0804.4520 +0804.4527 Mesoscale and Nanoscale Physics +0804.4535 +0804.4536 +0804.4537 +0804.4538 Other Condensed Matter +0804.4539 +0804.4540 +0804.4541 +0804.4544 Materials Science +0804.4547 +0804.4563 +0804.4566 Chemical Physics +0804.4568 +0804.4569 Materials Science +0804.4572 +0804.4579 Strongly Correlated Electrons +0804.4580 +0804.4591 Strongly Correlated Electrons +0804.4592 Pattern Formation and Solitons +0804.4595 +0804.4597 +0804.4599 Mesoscale and Nanoscale Physics +0804.4603 Mesoscale and Nanoscale Physics +0804.4609 +0804.4610 Atomic Physics +0804.4614 Classical Physics +0804.4630 +0804.4634 Data Analysis, Statistics and Probability +0804.4641 +0804.4642 Chemical Physics +0804.4646 Strongly Correlated Electrons +0804.4649 +0804.4652 +0804.4653 +0804.4654 Other Condensed Matter +0804.4668 Superconductivity +0804.4673 +0804.4675 Phenomenology +0804.4680 +0804.4683 +0804.4687 +0804.4690 +0804.4691 Mesoscale and Nanoscale Physics +0804.4695 Materials Science +0804.4699 +0804.4713 Optics +0804.4727 +0804.4730 +0804.4732 Optics +0804.4736 Materials Science +0804.4745 Strongly Correlated Electrons +0804.4755 +0804.4758 Soft Condensed Matter +0804.4761 +0804.4762 Mesoscale and Nanoscale Physics +0804.4763 Superconductivity +0804.4765 Superconductivity +0804.4766 +0804.4769 +0804.4791 +0804.4792 Optics +0804.4797 +0804.4802 History and Philosophy of Physics +0804.4813 Atomic Physics +0804.4820 +0804.4830 Neurons and Cognition +0804.4833 Mesoscale and Nanoscale Physics +0804.4838 +0804.4839 Other Condensed Matter +0804.4840 Materials Science +0804.4844 +0804.4851 +0804.4854 Fluid Dynamics +0804.4855 Materials Science +0804.4860 +0804.4862 +0804.4867 +0804.4869 Mesoscale and Nanoscale Physics +0804.4872 +0804.4877 +0805.0001 +0805.0008 +0805.0009 Other Condensed Matter +0805.0023 Pattern Formation and Solitons +0805.0032 +0805.0037 +0805.0038 +0805.0039 Atomic Physics +0805.0044 +0805.0055 +0805.0058 +0805.0059 +0805.0061 +0805.0066 Materials Science +0805.0069 +0805.0077 Statistical Mechanics +0805.0085 +0805.0101 +0805.0110 Fluid Dynamics +0805.0115 +0805.0130 +0805.0132 +0805.0137 +0805.0138 +0805.0140 +0805.0147 Chaotic Dynamics +0805.0159 +0805.0161 Atomic Physics +0805.0175 Strongly Correlated Electrons +0805.0183 Statistical Mechanics +0805.0190 +0805.0195 Other Condensed Matter +0805.0201 +0805.0204 +0805.0218 Mesoscale and Nanoscale Physics +0805.0219 +0805.0222 +0805.0223 Tissues and Organs +0805.0227 Other Condensed Matter +0805.0235 Mesoscale and Nanoscale Physics +0805.0238 +0805.0243 Materials Science +0805.0250 +0805.0251 Optics +0805.0259 +0805.0262 +0805.0265 +0805.0277 Physics Education +0805.0279 +0805.0295 Other Condensed Matter +0805.0298 Optics +0805.0301 Mesoscale and Nanoscale Physics +0805.0307 +0805.0308 +0805.0315 +0805.0321 +0805.0326 Biological Physics +0805.0327 Other Condensed Matter +0805.0331 +0805.0338 +0805.0340 Plasma Physics +0805.0351 +0805.0370 +0805.0376 +0805.0384 Pattern Formation and Solitons +0805.0386 +0805.0392 Combinatorics +0805.0395 +0805.0397 Superconductivity +0805.0402 Disordered Systems and Neural Networks +0805.0406 Soft Condensed Matter +0805.0407 Disordered Systems and Neural Networks +0805.0420 +0805.0422 +0805.0423 +0805.0426 Plasma Physics +0805.0446 Exactly Solvable and Integrable Systems +0805.0451 +0805.0454 Mesoscale and Nanoscale Physics +0805.0469 Biological Physics +0805.0472 +0805.0475 Materials Science +0805.0500 +0805.0504 Mesoscale and Nanoscale Physics +0805.0506 Soft Condensed Matter +0805.0511 Mesoscale and Nanoscale Physics +0805.0526 Atmospheric and Oceanic Physics +0805.0528 +0805.0533 Superconductivity +0805.0537 +0805.0540 Computational Finance +0805.0549 +0805.0552 Phenomenology +0805.0559 +0805.0565 Strongly Correlated Electrons +0805.0572 Statistical Mechanics +0805.0573 +0805.0586 Statistical Mechanics +0805.0590 Strongly Correlated Electrons +0805.0591 Differential Geometry +0805.0594 +0805.0595 +0805.0596 +0805.0597 +0805.0599 +0805.0600 +0805.0604 +0805.0605 +0805.0616 Materials Science +0805.0619 +0805.0623 Statistical Mechanics +0805.0632 Superconductivity +0805.0637 +0805.0641 +0805.0652 Soft Condensed Matter +0805.0660 +0805.0661 Strongly Correlated Electrons +0805.0662 +0805.0663 Statistical Mechanics +0805.0677 Atomic Physics +0805.0678 Mesoscale and Nanoscale Physics +0805.0683 +0805.0684 Soft Condensed Matter +0805.0687 Optics +0805.0691 +0805.0694 +0805.0695 Other Quantitative Biology +0805.0699 Soft Condensed Matter +0805.0701 +0805.0708 +0805.0712 Soft Condensed Matter +0805.0714 +0805.0716 +0805.0726 +0805.0729 Probability +0805.0733 Soft Condensed Matter +0805.0740 Other Computer Science +0805.0746 Trading and Market Microstructure +0805.0755 Geophysics +0805.0759 +0805.0764 +0805.0772 +0805.0788 Mesoscale and Nanoscale Physics +0805.0789 +0805.0790 +0805.0793 +0805.0795 +0805.0796 +0805.0798 Statistical Mechanics +0805.0801 +0805.0803 Optics +0805.0806 Theory +0805.0815 Biological Physics +0805.0816 +0805.0820 +0805.0823 +0805.0827 Other Condensed Matter +0805.0831 Mesoscale and Nanoscale Physics +0805.0834 +0805.0835 Molecular Networks +0805.0836 Mesoscale and Nanoscale Physics +0805.0841 Physics and Society +0805.0842 +0805.0843 Mesoscale and Nanoscale Physics +0805.0894 Other Computer Science +0805.0923 Superconductivity +0805.0928 Plasma Physics +0805.0946 Fluid Dynamics +0805.0949 Other Condensed Matter +0805.0958 +0805.0960 +0805.0961 +0805.0976 +0805.0977 +0805.0980 Other Condensed Matter +0805.0986 +0805.0988 +0805.0989 Strongly Correlated Electrons +0805.0991 Strongly Correlated Electrons +0805.0995 +0805.1001 +0805.1011 Soft Condensed Matter +0805.1014 Superconductivity +0805.1015 Fluid Dynamics +0805.1019 +0805.1036 Other Condensed Matter +0805.1042 Superconductivity +0805.1054 +0805.1058 +0805.1059 +0805.1063 +0805.1066 +0805.1067 +0805.1068 Soft Condensed Matter +0805.1074 +0805.1075 +0805.1076 +0805.1083 Materials Science +0805.1084 +0805.1089 +0805.1091 +0805.1094 +0805.1103 +0805.1104 +0805.1105 Mesoscale and Nanoscale Physics +0805.1106 Mesoscale and Nanoscale Physics +0805.1107 Materials Science +0805.1110 +0805.1113 Strongly Correlated Electrons +0805.1121 +0805.1124 +0805.1126 Soft Condensed Matter +0805.1134 Phenomenology +0805.1137 +0805.1138 +0805.1142 +0805.1143 +0805.1145 +0805.1148 +0805.1155 Mesoscale and Nanoscale Physics +0805.1158 Mesoscale and Nanoscale Physics +0805.1164 Physics and Society +0805.1165 +0805.1167 +0805.1170 Statistical Mechanics +0805.1172 +0805.1181 Statistical Mechanics +0805.1185 Optics +0805.1189 +0805.1196 Classical Physics +0805.1199 +0805.1205 +0805.1216 Materials Science +0805.1221 Materials Science +0805.1223 Superconductivity +0805.1227 +0805.1228 +0805.1232 +0805.1233 +0805.1239 Optics +0805.1246 +0805.1250 +0805.1263 +0805.1264 +0805.1283 +0805.1285 Superconductivity +0805.1290 +0805.1294 +0805.1295 Optics +0805.1315 Optics +0805.1318 +0805.1321 Superconductivity +0805.1322 +0805.1335 +0805.1339 Theory +0805.1341 Mesoscale and Nanoscale Physics +0805.1343 +0805.1354 +0805.1355 +0805.1356 Mesoscale and Nanoscale Physics +0805.1357 +0805.1362 +0805.1365 +0805.1366 +0805.1367 Mesoscale and Nanoscale Physics +0805.1370 Differential Geometry +0805.1372 +0805.1377 +0805.1378 +0805.1380 +0805.1388 Superconductivity +0805.1407 Physics and Society +0805.1409 +0805.1413 Strongly Correlated Electrons +0805.1417 +0805.1420 +0805.1426 +0805.1433 Statistical Mechanics +0805.1436 +0805.1438 Mesoscale and Nanoscale Physics +0805.1444 +0805.1448 +0805.1449 Physics and Society +0805.1450 Superconductivity +0805.1453 Statistical Mechanics +0805.1468 +0805.1470 +0805.1476 Strongly Correlated Electrons +0805.1480 Disordered Systems and Neural Networks +0805.1492 +0805.1498 +0805.1500 Statistical Mechanics +0805.1512 +0805.1517 Optics +0805.1522 +0805.1533 +0805.1534 Other Condensed Matter +0805.1536 +0805.1542 +0805.1545 Strongly Correlated Electrons +0805.1556 +0805.1559 Mesoscale and Nanoscale Physics +0805.1568 Statistical Mechanics +0805.1578 Statistical Mechanics +0805.1579 +0805.1586 +0805.1592 +0805.1597 +0805.1602 +0805.1607 Adaptation and Self-Organizing Systems +0805.1608 +0805.1617 Plasma Physics +0805.1620 Pattern Formation and Solitons +0805.1623 +0805.1627 +0805.1641 Other Condensed Matter +0805.1653 Strongly Correlated Electrons +0805.1659 +0805.1665 +0805.1670 Strongly Correlated Electrons +0805.1676 +0805.1694 +0805.1695 +0805.1698 Materials Science +0805.1709 +0805.1712 Physics and Society +0805.1720 +0805.1724 Other Condensed Matter +0805.1730 +0805.1731 +0805.1732 +0805.1733 +0805.1734 +0805.1737 +0805.1743 +0805.1749 Superconductivity +0805.1752 Phenomenology +0805.1753 Statistical Mechanics +0805.1757 Optics +0805.1769 +0805.1771 Materials Science +0805.1783 +0805.1789 +0805.1790 Mesoscale and Nanoscale Physics +0805.1794 +0805.1801 +0805.1808 +0805.1811 +0805.1814 +0805.1817 Other Condensed Matter +0805.1818 Materials Science +0805.1822 +0805.1823 +0805.1825 Pattern Formation and Solitons +0805.1830 Mesoscale and Nanoscale Physics +0805.1832 Other Condensed Matter +0805.1836 Chaotic Dynamics +0805.1838 Statistical Mechanics +0805.1839 Disordered Systems and Neural Networks +0805.1848 +0805.1850 Materials Science +0805.1864 +0805.1869 Statistical Mechanics +0805.1873 +0805.1879 Atomic Physics +0805.1883 +0805.1894 +0805.1899 Materials Science +0805.1900 +0805.1911 Theory +0805.1913 +0805.1914 +0805.1915 Materials Science +0805.1919 +0805.1922 +0805.1923 Superconductivity +0805.1925 Soft Condensed Matter +0805.1926 +0805.1927 +0805.1930 +0805.1931 +0805.1933 +0805.1936 +0805.1938 +0805.1940 Materials Science +0805.1952 Chaotic Dynamics +0805.1955 Statistical Mechanics +0805.1962 Materials Science +0805.1966 +0805.1972 +0805.1983 +0805.1987 Chaotic Dynamics +0805.1993 +0805.2007 Statistical Mechanics +0805.2013 +0805.2021 Strongly Correlated Electrons +0805.2022 Atomic Physics +0805.2023 +0805.2035 Soft Condensed Matter +0805.2039 Soft Condensed Matter +0805.2040 +0805.2054 +0805.2059 +0805.2061 Other Condensed Matter +0805.2067 Materials Science +0805.2074 Mesoscale and Nanoscale Physics +0805.2080 Optics +0805.2089 +0805.2093 Experiment +0805.2097 +0805.2101 Strongly Correlated Electrons +0805.2102 +0805.2117 +0805.2119 Mesoscale and Nanoscale Physics +0805.2121 +0805.2123 Fluid Dynamics +0805.2126 +0805.2130 Other Condensed Matter +0805.2133 +0805.2143 +0805.2153 +0805.2157 +0805.2158 Materials Science +0805.2161 Mesoscale and Nanoscale Physics +0805.2167 Strongly Correlated Electrons +0805.2168 +0805.2169 +0805.2172 +0805.2174 +0805.2180 +0805.2182 Fluid Dynamics +0805.2183 Theory +0805.2193 +0805.2194 Statistical Finance +0805.2198 +0805.2200 +0805.2204 Superconductivity +0805.2206 Materials Science +0805.2208 +0805.2213 Other Condensed Matter +0805.2238 +0805.2251 +0805.2259 +0805.2260 Phenomenology +0805.2266 +0805.2269 Materials Science +0805.2275 +0805.2287 Plasma Physics +0805.2293 +0805.2294 +0805.2329 Materials Science +0805.2332 +0805.2333 +0805.2336 Strongly Correlated Electrons +0805.2341 +0805.2342 +0805.2352 +0805.2356 Atomic and Molecular Clusters +0805.2358 +0805.2364 +0805.2371 Statistical Mechanics +0805.2381 +0805.2389 Superconductivity +0805.2394 +0805.2396 +0805.2407 Mesoscale and Nanoscale Physics +0805.2413 +0805.2414 Mesoscale and Nanoscale Physics +0805.2415 Superconductivity +0805.2426 +0805.2432 Statistical Mechanics +0805.2436 +0805.2441 +0805.2443 +0805.2448 Materials Science +0805.2449 +0805.2458 Soft Condensed Matter +0805.2466 +0805.2484 +0805.2487 +0805.2488 Disordered Systems and Neural Networks +0805.2499 +0805.2511 Strongly Correlated Electrons +0805.2515 +0805.2519 Statistical Mechanics +0805.2532 +0805.2540 +0805.2542 +0805.2544 +0805.2558 Exactly Solvable and Integrable Systems +0805.2559 +0805.2562 Chaotic Dynamics +0805.2564 Plasma Physics +0805.2566 Plasma Physics +0805.2567 +0805.2575 Disordered Systems and Neural Networks +0805.2577 +0805.2586 +0805.2593 Other Condensed Matter +0805.2594 +0805.2603 Atomic Physics +0805.2609 +0805.2612 +0805.2616 +0805.2618 Analysis of PDEs +0805.2633 Strongly Correlated Electrons +0805.2636 +0805.2638 Pattern Formation and Solitons +0805.2642 +0805.2649 Superconductivity +0805.2654 Analysis of PDEs +0805.2655 +0805.2669 +0805.2685 +0805.2697 +0805.2698 Pattern Formation and Solitons +0805.2699 +0805.2703 Phenomenology +0805.2706 Materials Science +0805.2708 Atomic Physics +0805.2717 +0805.2724 +0805.2725 +0805.2737 Mesoscale and Nanoscale Physics +0805.2746 Materials Science +0805.2748 Statistical Mechanics +0805.2750 Other Condensed Matter +0805.2760 Dynamical Systems +0805.2768 +0805.2779 Soft Condensed Matter +0805.2787 Strongly Correlated Electrons +0805.2789 Statistical Mechanics +0805.2791 Superconductivity +0805.2798 Superconductivity +0805.2805 Fluid Dynamics +0805.2810 Symplectic Geometry +0805.2817 +0805.2818 Superconductivity +0805.2822 Materials Science +0805.2841 +0805.2842 +0805.2844 +0805.2849 Soft Condensed Matter +0805.2857 Superconductivity +0805.2861 +0805.2862 Statistical Mechanics +0805.2868 Soft Condensed Matter +0805.2870 +0805.2876 +0805.2877 +0805.2880 +0805.2884 +0805.2886 Classical Physics +0805.2887 Statistical Mechanics +0805.2896 Statistical Mechanics +0805.2905 Exactly Solvable and Integrable Systems +0805.2914 +0805.2920 Statistical Mechanics +0805.2928 +0805.2930 +0805.2937 Atomic Physics +0805.2940 +0805.2946 +0805.2947 +0805.2948 +0805.2952 +0805.2953 +0805.2958 Superconductivity +0805.2962 +0805.2964 Soft Condensed Matter +0805.2967 Materials Science +0805.2968 Soft Condensed Matter +0805.2971 Strongly Correlated Electrons +0805.2983 Superconductivity +0805.2984 Optics +0805.2985 Disordered Systems and Neural Networks +0805.2987 +0805.2989 +0805.2993 Optics +0805.3001 Superconductivity +0805.3010 +0805.3011 Numerical Analysis +0805.3016 Plasma Physics +0805.3023 Statistical Mechanics +0805.3028 +0805.3029 Soft Condensed Matter +0805.3047 Strongly Correlated Electrons +0805.3049 Superconductivity +0805.3055 Mesoscale and Nanoscale Physics +0805.3057 History and Philosophy of Physics +0805.3084 +0805.3093 +0805.3094 Soft Condensed Matter +0805.3102 Statistical Mechanics +0805.3104 Statistical Mechanics +0805.3109 +0805.3123 Optics +0805.3124 Optics +0805.3135 Classical Analysis and ODEs +0805.3139 Materials Science +0805.3141 Strongly Correlated Electrons +0805.3150 +0805.3152 +0805.3159 Strongly Correlated Electrons +0805.3160 +0805.3161 +0805.3162 +0805.3179 +0805.3185 +0805.3187 +0805.3189 Strongly Correlated Electrons +0805.3190 +0805.3207 Materials Science +0805.3212 +0805.3222 +0805.3226 Statistical Mechanics +0805.3227 Soft Condensed Matter +0805.3230 +0805.3231 +0805.3241 Strongly Correlated Electrons +0805.3255 +0805.3257 +0805.3274 +0805.3275 Mesoscale and Nanoscale Physics +0805.3283 Analysis of PDEs +0805.3297 +0805.3298 +0805.3314 +0805.3316 Optics +0805.3322 Physics and Society +0805.3328 Statistical Mechanics +0805.3331 +0805.3338 Superconductivity +0805.3341 +0805.3344 +0805.3345 +0805.3347 Strongly Correlated Electrons +0805.3348 +0805.3356 +0805.3364 Lattice +0805.3369 +0805.3374 Mesoscale and Nanoscale Physics +0805.3375 Materials Science +0805.3382 Exactly Solvable and Integrable Systems +0805.3384 Optics +0805.3389 Phenomenology +0805.3395 Mesoscale and Nanoscale Physics +0805.3396 +0805.3399 +0805.3403 Analysis of PDEs +0805.3411 +0805.3421 Chaotic Dynamics +0805.3442 +0805.3454 +0805.3455 +0805.3477 Dynamical Systems +0805.3482 +0805.3483 Strongly Correlated Electrons +0805.3489 Strongly Correlated Electrons +0805.3490 Strongly Correlated Electrons +0805.3495 Other Condensed Matter +0805.3496 +0805.3499 +0805.3508 +0805.3510 +0805.3512 +0805.3516 Probability +0805.3532 +0805.3533 +0805.3534 +0805.3538 Multimedia +0805.3543 Disordered Systems and Neural Networks +0805.3544 Biomolecules +0805.3551 +0805.3555 +0805.3562 Strongly Correlated Electrons +0805.3564 +0805.3567 Mesoscale and Nanoscale Physics +0805.3576 +0805.3585 Mesoscale and Nanoscale Physics +0805.3592 +0805.3595 Soft Condensed Matter +0805.3601 +0805.3603 +0805.3610 Materials Science +0805.3613 +0805.3617 Mesoscale and Nanoscale Physics +0805.3622 Mesoscale and Nanoscale Physics +0805.3636 Strongly Correlated Electrons +0805.3637 +0805.3646 Superconductivity +0805.3648 +0805.3650 +0805.3656 +0805.3669 +0805.3680 Superconductivity +0805.3681 Physics and Society +0805.3686 Phenomenology +0805.3695 +0805.3697 Mesoscale and Nanoscale Physics +0805.3699 +0805.3702 +0805.3704 +0805.3707 +0805.3708 Atomic Physics +0805.3709 Materials Science +0805.3710 +0805.3718 Mesoscale and Nanoscale Physics +0805.3722 +0805.3723 +0805.3731 +0805.3733 +0805.3734 Strongly Correlated Electrons +0805.3735 +0805.3748 Materials Science +0805.3749 Strongly Correlated Electrons +0805.3764 Spectral Theory +0805.3766 +0805.3769 Disordered Systems and Neural Networks +0805.3770 Statistical Mechanics +0805.3775 Superconductivity +0805.3782 +0805.3786 Statistical Mechanics +0805.3797 +0805.3801 +0805.3803 +0805.3807 +0805.3815 Atomic Physics +0805.3836 Materials Science +0805.3837 Soft Condensed Matter +0805.3840 Disordered Systems and Neural Networks +0805.3852 Strongly Correlated Electrons +0805.3855 +0805.3861 Neurons and Cognition +0805.3870 Other Condensed Matter +0805.3874 +0805.3875 Superconductivity +0805.3882 +0805.3890 Mesoscale and Nanoscale Physics +0805.3892 Strongly Correlated Electrons +0805.3894 Superconductivity +0805.3903 Materials Science +0805.3907 Optics +0805.3908 Mesoscale and Nanoscale Physics +0805.3913 Symplectic Geometry +0805.3918 Strongly Correlated Electrons +0805.3919 +0805.3920 +0805.3936 +0805.3938 Materials Science +0805.3944 Materials Science +0805.3951 +0805.3959 Materials Science +0805.3965 Materials Science +0805.3966 Strongly Correlated Electrons +0805.3967 +0805.3976 Physics and Society +0805.3983 +0805.3985 Materials Science +0805.3988 Strongly Correlated Electrons +0805.3996 +0805.4010 +0805.4011 +0805.4015 +0805.4018 +0805.4019 +0805.4026 +0805.4030 Phenomenology +0805.4032 Optics +0805.4036 +0805.4040 +0805.4045 Statistical Mechanics +0805.4048 +0805.4055 Optics +0805.4062 +0805.4073 +0805.4080 Strongly Correlated Electrons +0805.4095 Materials Science +0805.4098 +0805.4116 +0805.4117 Atomic Physics +0805.4124 +0805.4129 Strongly Correlated Electrons +0805.4152 +0805.4160 Soft Condensed Matter +0805.4176 Plasma Physics +0805.4184 +0805.4195 +0805.4197 +0805.4198 Strongly Correlated Electrons +0805.4203 Mesoscale and Nanoscale Physics +0805.4205 +0805.4206 +0805.4209 +0805.4210 Phenomenology +0805.4212 Mesoscale and Nanoscale Physics +0805.4215 +0805.4252 +0805.4260 Mesoscale and Nanoscale Physics +0805.4263 +0805.4264 +0805.4268 +0805.4283 Soft Condensed Matter +0805.4285 Statistical Mechanics +0805.4289 +0805.4291 Superconductivity +0805.4296 +0805.4297 +0805.4299 +0805.4308 Mesoscale and Nanoscale Physics +0805.4327 +0805.4330 Materials Science +0805.4335 Materials Science +0805.4376 +0805.4380 Numerical Analysis +0805.4382 +0805.4389 +0805.4391 +0805.4401 Superconductivity +0805.4402 Plasma Physics +0805.4408 +0805.4415 +0805.4416 +0805.4417 +0805.4419 +0805.4420 +0805.4421 +0805.4424 Mesoscale and Nanoscale Physics +0805.4459 +0805.4465 +0805.4480 +0805.4489 Mesoscale and Nanoscale Physics +0805.4490 Physics and Society +0805.4491 Theory +0805.4493 +0805.4495 +0805.4501 Disordered Systems and Neural Networks +0805.4509 Strongly Correlated Electrons +0805.4517 +0805.4524 Superconductivity +0805.4526 +0805.4529 +0805.4532 Soft Condensed Matter +0805.4541 +0805.4544 Other Condensed Matter +0805.4557 +0805.4561 Pattern Formation and Solitons +0805.4564 Fluid Dynamics +0805.4573 Superconductivity +0805.4574 +0805.4581 Optics +0805.4591 +0805.4593 +0805.4595 +0805.4603 +0805.4605 +0805.4607 +0805.4608 +0805.4610 +0805.4617 Plasma Physics +0805.4621 Plasma Physics +0805.4622 +0805.4625 +0805.4636 Statistical Mechanics +0805.4641 Materials Science +0805.4652 Phenomenology +0805.4655 Operator Algebras +0805.4656 +0805.4669 Strongly Correlated Electrons +0805.4670 Superconductivity +0805.4674 Plasma Physics +0805.4681 +0805.4684 Strongly Correlated Electrons +0805.4691 Plasma Physics +0805.4693 Statistical Mechanics +0805.4697 +0805.4700 +0805.4703 Statistical Mechanics +0805.4713 Mesoscale and Nanoscale Physics +0805.4715 Mesoscale and Nanoscale Physics +0805.4720 Superconductivity +0805.4728 +0805.4734 +0805.4736 +0805.4742 Statistical Mechanics +0805.4746 +0805.4753 Materials Science +0805.4757 Mesoscale and Nanoscale Physics +0805.4784 +0805.4786 Phenomenology +0805.4790 +0805.4791 +0805.4797 +0805.4815 +0805.4816 Other Condensed Matter +0805.4818 +0805.4822 Plasma Physics +0805.4826 +0805.4827 Statistical Mechanics +0805.4836 +0806.0004 Chaotic Dynamics +0806.0012 +0806.0018 +0806.0022 Mesoscale and Nanoscale Physics +0806.0025 +0806.0027 Strongly Correlated Electrons +0806.0032 +0806.0039 Other Condensed Matter +0806.0053 Theory +0806.0061 Superconductivity +0806.0067 +0806.0071 +0806.0074 +0806.0078 Superconductivity +0806.0085 Optics +0806.0095 Strongly Correlated Electrons +0806.0096 +0806.0099 +0806.0102 Theory +0806.0113 +0806.0115 +0806.0118 +0806.0121 +0806.0125 Disordered Systems and Neural Networks +0806.0135 +0806.0136 Soft Condensed Matter +0806.0139 Materials Science +0806.0147 Strongly Correlated Electrons +0806.0161 Pattern Formation and Solitons +0806.0163 +0806.0187 +0806.0194 +0806.0195 Theory +0806.0199 +0806.0203 Strongly Correlated Electrons +0806.0210 Mesoscale and Nanoscale Physics +0806.0211 +0806.0212 +0806.0217 +0806.0228 +0806.0230 Strongly Correlated Electrons +0806.0234 +0806.0235 +0806.0236 Statistical Mechanics +0806.0238 Superconductivity +0806.0243 Statistical Mechanics +0806.0245 +0806.0246 Strongly Correlated Electrons +0806.0249 Superconductivity +0806.0252 Probability +0806.0256 +0806.0265 +0806.0266 Strongly Correlated Electrons +0806.0268 Statistical Mechanics +0806.0271 Classical Analysis and ODEs +0806.0291 Superconductivity +0806.0294 +0806.0295 +0806.0298 +0806.0310 Strongly Correlated Electrons +0806.0317 Mesoscale and Nanoscale Physics +0806.0318 +0806.0319 +0806.0337 Superconductivity +0806.0348 Plasma Physics +0806.0355 Materials Science +0806.0368 +0806.0372 +0806.0374 +0806.0380 +0806.0382 +0806.0384 +0806.0392 +0806.0393 Strongly Correlated Electrons +0806.0396 Materials Science +0806.0399 +0806.0400 Fluid Dynamics +0806.0403 Materials Science +0806.0405 Physics Education +0806.0410 Superconductivity +0806.0412 +0806.0413 Superconductivity +0806.0414 Materials Science +0806.0415 +0806.0416 Optics +0806.0417 +0806.0422 Mesoscale and Nanoscale Physics +0806.0431 +0806.0432 Strongly Correlated Electrons +0806.0436 Mesoscale and Nanoscale Physics +0806.0441 +0806.0444 Exactly Solvable and Integrable Systems +0806.0452 Disordered Systems and Neural Networks +0806.0453 Statistical Mechanics +0806.0456 Materials Science +0806.0458 +0806.0460 +0806.0461 Other Condensed Matter +0806.0466 +0806.0468 +0806.0470 Other Condensed Matter +0806.0471 +0806.0472 Physics and Society +0806.0485 History and Philosophy of Physics +0806.0489 Optics +0806.0491 +0806.0505 Statistical Mechanics +0806.0506 +0806.0510 Differential Geometry +0806.0511 +0806.0514 Biomolecules +0806.0522 Materials Science +0806.0531 +0806.0534 Materials Science +0806.0545 +0806.0549 Materials Science +0806.0553 Statistical Mechanics +0806.0554 +0806.0559 Strongly Correlated Electrons +0806.0560 +0806.0565 +0806.0570 +0806.0573 Mesoscale and Nanoscale Physics +0806.0581 +0806.0588 Statistical Mechanics +0806.0589 Materials Science +0806.0593 Materials Science +0806.0598 Statistical Mechanics +0806.0609 +0806.0613 +0806.0614 Strongly Correlated Electrons +0806.0621 +0806.0622 +0806.0624 +0806.0629 +0806.0630 +0806.0633 Plasma Physics +0806.0639 Strongly Correlated Electrons +0806.0647 +0806.0654 +0806.0657 +0806.0662 +0806.0663 Atomic Physics +0806.0669 +0806.0683 +0806.0694 Strongly Correlated Electrons +0806.0695 +0806.0702 +0806.0703 +0806.0710 +0806.0714 Dynamical Systems +0806.0718 Superconductivity +0806.0719 +0806.0720 +0806.0725 +0806.0746 +0806.0748 +0806.0749 Statistical Mechanics +0806.0750 Superconductivity +0806.0751 +0806.0756 +0806.0762 +0806.0767 Strongly Correlated Electrons +0806.0775 +0806.0776 +0806.0779 +0806.0783 Fluid Dynamics +0806.0791 Statistical Mechanics +0806.0793 +0806.0801 +0806.0802 Probability +0806.0817 Statistical Mechanics +0806.0819 +0806.0820 +0806.0821 +0806.0826 Mesoscale and Nanoscale Physics +0806.0828 Superconductivity +0806.0833 Superconductivity +0806.0835 Strongly Correlated Electrons +0806.0843 +0806.0850 +0806.0851 +0806.0852 +0806.0853 +0806.0854 +0806.0855 +0806.0856 Cell Behavior +0806.0863 +0806.0865 +0806.0866 +0806.0885 Superconductivity +0806.0888 +0806.0897 +0806.0898 Plasma Physics +0806.0911 Strongly Correlated Electrons +0806.0912 Plasma Physics +0806.0925 +0806.0927 +0806.0929 +0806.0931 Chaotic Dynamics +0806.0940 +0806.0948 Statistical Mechanics +0806.0949 +0806.0951 Functional Analysis +0806.0953 +0806.0958 Statistical Mechanics +0806.0960 Materials Science +0806.0962 +0806.0968 Strongly Correlated Electrons +0806.0971 +0806.0977 Soft Condensed Matter +0806.0999 Materials Science +0806.1002 +0806.1003 Materials Science +0806.1009 +0806.1016 +0806.1020 +0806.1028 Materials Science +0806.1044 Representation Theory +0806.1045 +0806.1063 Tissues and Organs +0806.1069 Plasma Physics +0806.1074 Strongly Correlated Electrons +0806.1077 Mesoscale and Nanoscale Physics +0806.1086 +0806.1090 +0806.1094 +0806.1110 Mesoscale and Nanoscale Physics +0806.1111 Atomic Physics +0806.1112 +0806.1113 +0806.1114 Other Condensed Matter +0806.1121 Atomic Physics +0806.1129 +0806.1133 +0806.1134 Phenomenology +0806.1136 Materials Science +0806.1149 Atomic Physics +0806.1152 Pattern Formation and Solitons +0806.1158 Statistical Mechanics +0806.1161 +0806.1166 +0806.1172 +0806.1174 +0806.1179 Quantum Algebra +0806.1186 Disordered Systems and Neural Networks +0806.1193 Soft Condensed Matter +0806.1195 +0806.1196 Atomic Physics +0806.1200 +0806.1201 Other Condensed Matter +0806.1204 Physics and Society +0806.1205 Materials Science +0806.1207 Materials Science +0806.1219 Statistical Mechanics +0806.1220 Other Condensed Matter +0806.1221 +0806.1222 +0806.1223 +0806.1229 +0806.1232 +0806.1250 Statistical Mechanics +0806.1256 Physics and Society +0806.1260 +0806.1268 Exactly Solvable and Integrable Systems +0806.1272 Mesoscale and Nanoscale Physics +0806.1278 +0806.1287 Populations and Evolution +0806.1290 +0806.1295 Atomic Physics +0806.1302 Plasma Physics +0806.1303 Statistical Mechanics +0806.1313 +0806.1337 +0806.1338 Strongly Correlated Electrons +0806.1342 +0806.1344 Strongly Correlated Electrons +0806.1347 Probability +0806.1374 Optics +0806.1376 Materials Science +0806.1386 +0806.1388 Materials Science +0806.1406 +0806.1412 Superconductivity +0806.1418 +0806.1419 +0806.1421 Superconductivity +0806.1427 +0806.1430 +0806.1432 +0806.1443 Superconductivity +0806.1444 Disordered Systems and Neural Networks +0806.1459 Superconductivity +0806.1460 +0806.1462 +0806.1468 Materials Science +0806.1469 Superconductivity +0806.1478 +0806.1482 +0806.1483 +0806.1490 +0806.1497 +0806.1501 +0806.1504 Superconductivity +0806.1511 Plasma Physics +0806.1522 +0806.1524 +0806.1527 +0806.1529 +0806.1530 +0806.1548 +0806.1551 Biomolecules +0806.1559 Mesoscale and Nanoscale Physics +0806.1560 Optics +0806.1562 Mesoscale and Nanoscale Physics +0806.1575 +0806.1581 Strongly Correlated Electrons +0806.1586 Materials Science +0806.1588 Strongly Correlated Electrons +0806.1589 +0806.1599 Strongly Correlated Electrons +0806.1603 Disordered Systems and Neural Networks +0806.1604 Strongly Correlated Electrons +0806.1616 +0806.1622 Materials Science +0806.1624 Phenomenology +0806.1628 Theory +0806.1633 Mesoscale and Nanoscale Physics +0806.1637 Analysis of PDEs +0806.1638 +0806.1641 Strongly Correlated Electrons +0806.1642 Chaotic Dynamics +0806.1643 +0806.1644 +0806.1646 +0806.1648 +0806.1654 Strongly Correlated Electrons +0806.1666 +0806.1668 Superconductivity +0806.1670 +0806.1671 +0806.1673 +0806.1680 Strongly Correlated Electrons +0806.1683 +0806.1684 Mesoscale and Nanoscale Physics +0806.1685 Neurons and Cognition +0806.1686 +0806.1687 Superconductivity +0806.1689 +0806.1696 Strongly Correlated Electrons +0806.1698 +0806.1703 Chaotic Dynamics +0806.1712 +0806.1714 +0806.1719 Soft Condensed Matter +0806.1730 +0806.1732 Superconductivity +0806.1734 +0806.1735 +0806.1740 +0806.1744 Strongly Correlated Electrons +0806.1747 Other Condensed Matter +0806.1754 +0806.1755 +0806.1762 Physics and Society +0806.1764 Fluid Dynamics +0806.1775 Soft Condensed Matter +0806.1777 Other Condensed Matter +0806.1779 Dynamical Systems +0806.1780 Mesoscale and Nanoscale Physics +0806.1787 +0806.1789 Atomic Physics +0806.1790 Materials Science +0806.1792 Materials Science +0806.1793 Materials Science +0806.1795 +0806.1817 +0806.1822 Mesoscale and Nanoscale Physics +0806.1824 +0806.1830 +0806.1851 Mesoscale and Nanoscale Physics +0806.1852 Strongly Correlated Electrons +0806.1854 Numerical Analysis +0806.1855 +0806.1858 Soft Condensed Matter +0806.1859 +0806.1861 +0806.1862 Fluid Dynamics +0806.1867 Fluid Dynamics +0806.1869 Materials Science +0806.1871 +0806.1874 Superconductivity +0806.1875 Statistical Mechanics +0806.1884 +0806.1886 +0806.1888 +0806.1891 +0806.1892 +0806.1899 Mesoscale and Nanoscale Physics +0806.1900 Materials Science +0806.1906 Probability +0806.1907 Superconductivity +0806.1910 +0806.1934 Computational Physics +0806.1939 +0806.1942 Theory +0806.1947 +0806.1952 +0806.1956 +0806.1965 Soft Condensed Matter +0806.1966 Materials Science +0806.1973 +0806.1982 Atomic Physics +0806.1985 +0806.1988 Quantitative Methods +0806.1994 Materials Science +0806.2001 +0806.2002 +0806.2012 Statistical Mechanics +0806.2017 +0806.2026 +0806.2028 Materials Science +0806.2029 Strongly Correlated Electrons +0806.2040 +0806.2042 +0806.2045 +0806.2049 +0806.2050 Other Condensed Matter +0806.2052 +0806.2072 +0806.2077 Statistical Mechanics +0806.2082 Chaotic Dynamics +0806.2083 Strongly Correlated Electrons +0806.2109 Superconductivity +0806.2111 Phenomenology +0806.2115 Materials Science +0806.2123 Statistical Mechanics +0806.2127 Materials Science +0806.2137 +0806.2148 +0806.2149 +0806.2152 Mesoscale and Nanoscale Physics +0806.2153 Superconductivity +0806.2158 +0806.2160 +0806.2162 +0806.2167 Other Condensed Matter +0806.2170 Mesoscale and Nanoscale Physics +0806.2173 Mesoscale and Nanoscale Physics +0806.2178 Mesoscale and Nanoscale Physics +0806.2188 +0806.2189 +0806.2197 Strongly Correlated Electrons +0806.2199 +0806.2205 Superconductivity +0806.2218 +0806.2219 Strongly Correlated Electrons +0806.2220 Materials Science +0806.2225 Other Condensed Matter +0806.2226 Strongly Correlated Electrons +0806.2227 Other Condensed Matter +0806.2228 +0806.2232 +0806.2234 Materials Science +0806.2241 +0806.2242 Disordered Systems and Neural Networks +0806.2243 +0806.2245 Atomic Physics +0806.2251 Exactly Solvable and Integrable Systems +0806.2252 +0806.2253 +0806.2257 Strongly Correlated Electrons +0806.2262 Pattern Formation and Solitons +0806.2275 +0806.2277 Other Condensed Matter +0806.2280 +0806.2284 Other Condensed Matter +0806.2285 Strongly Correlated Electrons +0806.2288 +0806.2296 Probability +0806.2301 Phenomenology +0806.2308 Populations and Evolution +0806.2311 Superconductivity +0806.2318 +0806.2320 +0806.2325 +0806.2327 +0806.2335 Superconductivity +0806.2336 +0806.2342 Strongly Correlated Electrons +0806.2351 Networking and Internet Architecture +0806.2353 +0806.2357 Quantum Algebra +0806.2369 Materials Science +0806.2374 Superconductivity +0806.2376 +0806.2380 +0806.2382 Materials Science +0806.2387 +0806.2393 +0806.2396 Strongly Correlated Electrons +0806.2402 +0806.2404 +0806.2406 +0806.2407 +0806.2408 Superconductivity +0806.2409 Soft Condensed Matter +0806.2413 Soft Condensed Matter +0806.2435 +0806.2437 Strongly Correlated Electrons +0806.2442 Optics +0806.2446 Probability +0806.2452 Superconductivity +0806.2456 +0806.2471 +0806.2474 Strongly Correlated Electrons +0806.2475 Statistical Mechanics +0806.2479 Superconductivity +0806.2485 +0806.2488 +0806.2502 Mesoscale and Nanoscale Physics +0806.2504 Strongly Correlated Electrons +0806.2516 +0806.2519 Strongly Correlated Electrons +0806.2530 +0806.2537 +0806.2538 +0806.2543 +0806.2545 +0806.2551 +0806.2563 Strongly Correlated Electrons +0806.2566 Statistical Mechanics +0806.2573 +0806.2578 Soft Condensed Matter +0806.2579 Soft Condensed Matter +0806.2583 Chemical Physics +0806.2589 Statistical Mechanics +0806.2596 +0806.2598 +0806.2609 +0806.2616 Materials Science +0806.2627 Superconductivity +0806.2629 +0806.2630 Superconductivity +0806.2637 +0806.2639 +0806.2644 +0806.2652 Superconductivity +0806.2655 +0806.2656 +0806.2657 Mesoscale and Nanoscale Physics +0806.2658 +0806.2660 +0806.2666 +0806.2671 Phenomenology +0806.2689 Chaotic Dynamics +0806.2692 Strongly Correlated Electrons +0806.2696 Differential Geometry +0806.2701 Materials Science +0806.2708 +0806.2712 Analysis of PDEs +0806.2725 +0806.2728 +0806.2734 Mesoscale and Nanoscale Physics +0806.2736 +0806.2737 Other Condensed Matter +0806.2741 Optics +0806.2742 Optics +0806.2744 Mesoscale and Nanoscale Physics +0806.2748 Fluid Dynamics +0806.2756 Statistical Mechanics +0806.2764 +0806.2766 Other Condensed Matter +0806.2773 +0806.2777 +0806.2785 Materials Science +0806.2795 +0806.2801 +0806.2805 +0806.2806 Soft Condensed Matter +0806.2807 +0806.2811 +0806.2812 Statistical Mechanics +0806.2815 +0806.2823 +0806.2825 +0806.2830 Statistical Mechanics +0806.2842 +0806.2845 Mesoscale and Nanoscale Physics +0806.2846 +0806.2852 +0806.2853 Superconductivity +0806.2858 Other Condensed Matter +0806.2861 +0806.2863 +0806.2866 +0806.2868 +0806.2872 +0806.2875 Biological Physics +0806.2876 Superconductivity +0806.2878 +0806.2882 +0806.2883 +0806.2891 +0806.2892 Statistical Mechanics +0806.2904 Mesoscale and Nanoscale Physics +0806.2927 +0806.2932 Optics +0806.2935 Soft Condensed Matter +0806.2937 Physics and Society +0806.2946 Materials Science +0806.2955 Strongly Correlated Electrons +0806.2956 +0806.2958 Materials Science +0806.2960 Statistical Mechanics +0806.2965 +0806.2969 +0806.2971 Statistical Mechanics +0806.2973 +0806.2978 Materials Science +0806.2983 Mesoscale and Nanoscale Physics +0806.2988 +0806.3000 Mesoscale and Nanoscale Physics +0806.3002 +0806.3003 Superconductivity +0806.3004 +0806.3018 +0806.3021 +0806.3035 Optics +0806.3044 +0806.3045 +0806.3054 +0806.3058 +0806.3059 Strongly Correlated Electrons +0806.3062 Atomic Physics +0806.3069 Strongly Correlated Electrons +0806.3072 +0806.3076 +0806.3079 +0806.3080 +0806.3084 +0806.3090 +0806.3091 +0806.3101 +0806.3106 +0806.3107 +0806.3117 Strongly Correlated Electrons +0806.3119 Operator Algebras +0806.3120 +0806.3123 Soft Condensed Matter +0806.3127 +0806.3142 +0806.3143 Other Condensed Matter +0806.3144 Exactly Solvable and Integrable Systems +0806.3148 Mesoscale and Nanoscale Physics +0806.3159 Superconductivity +0806.3161 Strongly Correlated Electrons +0806.3162 Materials Science +0806.3164 +0806.3168 Soft Condensed Matter +0806.3171 Statistical Mechanics +0806.3172 Materials Science +0806.3173 Fluid Dynamics +0806.3178 Biological Physics +0806.3179 Mesoscale and Nanoscale Physics +0806.3183 Chaotic Dynamics +0806.3187 Superconductivity +0806.3192 +0806.3194 Optics +0806.3199 +0806.3202 Soft Condensed Matter +0806.3203 +0806.3211 Probability +0806.3214 Strongly Correlated Electrons +0806.3218 +0806.3226 Optics +0806.3237 +0806.3257 Representation Theory +0806.3263 +0806.3268 +0806.3271 +0806.3276 +0806.3285 Superconductivity +0806.3287 +0806.3291 Other Condensed Matter +0806.3294 +0806.3297 +0806.3304 Superconductivity +0806.3306 +0806.3308 Superconductivity +0806.3312 Chaotic Dynamics +0806.3314 Mesoscale and Nanoscale Physics +0806.3315 Mesoscale and Nanoscale Physics +0806.3319 Mesoscale and Nanoscale Physics +0806.3323 Strongly Correlated Electrons +0806.3326 Statistical Mechanics +0806.3345 Soft Condensed Matter +0806.3353 Phenomenology +0806.3354 +0806.3369 +0806.3383 +0806.3384 +0806.3385 Strongly Correlated Electrons +0806.3386 +0806.3394 +0806.3395 Other Condensed Matter +0806.3398 Strongly Correlated Electrons +0806.3403 Numerical Analysis +0806.3413 +0806.3416 Superconductivity +0806.3419 Fluid Dynamics +0806.3426 Superconductivity +0806.3430 Probability +0806.3434 +0806.3436 +0806.3438 Soft Condensed Matter +0806.3447 Soft Condensed Matter +0806.3464 Atomic Physics +0806.3482 +0806.3489 Tissues and Organs +0806.3491 +0806.3494 +0806.3501 Atomic Physics +0806.3503 Quantum Algebra +0806.3507 Quantum Algebra +0806.3509 Strongly Correlated Electrons +0806.3517 +0806.3524 Superconductivity +0806.3533 Superconductivity +0806.3544 +0806.3550 Superconductivity +0806.3557 +0806.3558 +0806.3566 Phenomenology +0806.3573 Superconductivity +0806.3576 Strongly Correlated Electrons +0806.3582 +0806.3599 +0806.3600 Strongly Correlated Electrons +0806.3608 Other Condensed Matter +0806.3610 +0806.3611 Mesoscale and Nanoscale Physics +0806.3614 +0806.3619 Materials Science +0806.3627 Materials Science +0806.3634 +0806.3637 Plasma Physics +0806.3638 +0806.3642 Statistical Mechanics +0806.3647 Mesoscale and Nanoscale Physics +0806.3652 Biomolecules +0806.3656 Optics +0806.3663 Mesoscale and Nanoscale Physics +0806.3669 +0806.3685 Statistical Mechanics +0806.3689 +0806.3691 Operator Algebras +0806.3693 +0806.3694 +0806.3698 Phenomenology +0806.3714 +0806.3715 +0806.3717 +0806.3719 Strongly Correlated Electrons +0806.3723 Atomic Physics +0806.3726 Materials Science +0806.3729 +0806.3731 Strongly Correlated Electrons +0806.3732 +0806.3742 +0806.3749 +0806.3750 +0806.3755 +0806.3756 Geophysics +0806.3763 Statistical Mechanics +0806.3766 +0806.3768 +0806.3774 Strongly Correlated Electrons +0806.3777 Mesoscale and Nanoscale Physics +0806.3779 Superconductivity +0806.3781 +0806.3788 +0806.3789 +0806.3791 +0806.3805 Materials Science +0806.3806 Other Condensed Matter +0806.3817 Optics +0806.3821 Superconductivity +0806.3825 Strongly Correlated Electrons +0806.3826 Superconductivity +0806.3829 Atomic Physics +0806.3832 +0806.3836 Materials Science +0806.3838 Pattern Formation and Solitons +0806.3842 +0806.3843 Other Condensed Matter +0806.3850 Superconductivity +0806.3856 +0806.3860 Superconductivity +0806.3863 +0806.3871 +0806.3872 Fluid Dynamics +0806.3876 +0806.3878 Superconductivity +0806.3896 Mesoscale and Nanoscale Physics +0806.3897 Subcellular Processes +0806.3899 +0806.3900 Mesoscale and Nanoscale Physics +0806.3901 Mesoscale and Nanoscale Physics +0806.3918 +0806.3923 Other Condensed Matter +0806.3932 +0806.3933 +0806.3935 Strongly Correlated Electrons +0806.3945 +0806.3948 Other Condensed Matter +0806.3954 +0806.3955 +0806.3962 Superconductivity +0806.3966 Phenomenology +0806.3967 Materials Science +0806.3971 +0806.3973 +0806.3974 +0806.3979 +0806.3981 +0806.3986 +0806.3988 +0806.3991 Other Condensed Matter +0806.3993 +0806.4005 +0806.4015 +0806.4019 +0806.4025 Strongly Correlated Electrons +0806.4038 +0806.4041 +0806.4047 Strongly Correlated Electrons +0806.4049 +0806.4053 +0806.4055 Materials Science +0806.4056 Materials Science +0806.4062 Fluid Dynamics +0806.4063 +0806.4066 Materials Science +0806.4074 Materials Science +0806.4079 Statistical Mechanics +0806.4084 Analysis of PDEs +0806.4088 +0806.4097 +0806.4101 +0806.4103 +0806.4104 Superconductivity +0806.4116 Materials Science +0806.4128 Materials Science +0806.4132 +0806.4136 +0806.4137 +0806.4142 +0806.4149 +0806.4150 +0806.4153 Analysis of PDEs +0806.4159 +0806.4162 +0806.4163 +0806.4171 Superconductivity +0806.4174 +0806.4186 +0806.4187 +0806.4188 +0806.4192 Strongly Correlated Electrons +0806.4195 +0806.4209 Other Condensed Matter +0806.4215 Superconductivity +0806.4218 +0806.4226 +0806.4227 +0806.4228 +0806.4230 +0806.4232 +0806.4233 +0806.4235 Mesoscale and Nanoscale Physics +0806.4237 Mesoscale and Nanoscale Physics +0806.4240 +0806.4244 Materials Science +0806.4249 Strongly Correlated Electrons +0806.4252 +0806.4253 +0806.4254 +0806.4261 +0806.4269 +0806.4270 +0806.4276 Populations and Evolution +0806.4279 Superconductivity +0806.4301 Statistical Mechanics +0806.4303 Statistical Mechanics +0806.4306 +0806.4312 +0806.4314 +0806.4316 +0806.4328 Strongly Correlated Electrons +0806.4332 Statistical Mechanics +0806.4336 Mesoscale and Nanoscale Physics +0806.4342 +0806.4353 +0806.4354 Materials Science +0806.4357 Superconductivity +0806.4367 +0806.4376 +0806.4380 +0806.4381 +0806.4384 +0806.4387 +0806.4388 +0806.4392 +0806.4395 Strongly Correlated Electrons +0806.4396 Optics +0806.4402 Materials Science +0806.4409 +0806.4416 Strongly Correlated Electrons +0806.4430 Mesoscale and Nanoscale Physics +0806.4438 Soft Condensed Matter +0806.4453 +0806.4454 +0806.4455 Statistical Mechanics +0806.4458 Classical Physics +0806.4461 Mesoscale and Nanoscale Physics +0806.4463 +0806.4464 Strongly Correlated Electrons +0806.4465 +0806.4474 +0806.4480 Mesoscale and Nanoscale Physics +0806.4490 +0806.4494 Strongly Correlated Electrons +0806.4514 Superconductivity +0806.4521 Mesoscale and Nanoscale Physics +0806.4522 +0806.4530 Fluid Dynamics +0806.4536 +0806.4537 +0806.4542 +0806.4543 +0806.4545 +0806.4559 Soft Condensed Matter +0806.4564 Statistical Mechanics +0806.4570 +0806.4573 Soft Condensed Matter +0806.4582 Soft Condensed Matter +0806.4584 +0806.4587 +0806.4595 Data Analysis, Statistics and Probability +0806.4603 Mesoscale and Nanoscale Physics +0806.4607 Statistical Mechanics +0806.4609 Plasma Physics +0806.4610 +0806.4611 +0806.4617 +0806.4618 +0806.4621 Superconductivity +0806.4622 +0806.4639 Superconductivity +0806.4641 +0806.4651 Materials Science +0806.4656 Mesoscale and Nanoscale Physics +0806.4657 +0806.4658 Analysis of PDEs +0806.4663 Plasma Physics +0806.4664 +0806.4674 +0806.4677 Statistical Mechanics +0806.4688 Superconductivity +0806.4690 +0806.4693 Disordered Systems and Neural Networks +0806.4714 Physics and Society +0806.4719 Mesoscale and Nanoscale Physics +0806.4720 +0806.4727 +0806.4736 Superconductivity +0806.4738 +0806.4739 +0806.4740 +0806.4741 +0806.4742 +0806.4750 Superconductivity +0806.4752 +0806.4753 Mesoscale and Nanoscale Physics +0806.4766 Optics +0806.4767 Statistical Mechanics +0806.4769 +0806.4778 +0806.4789 Chaotic Dynamics +0806.4795 +0806.4797 Superconductivity +0806.4805 Mesoscale and Nanoscale Physics +0806.4811 Fluid Dynamics +0806.4819 Plasma Physics +0806.4821 Fluid Dynamics +0806.4823 Fluid Dynamics +0806.4824 +0806.4826 Strongly Correlated Electrons +0806.4828 Superconductivity +0806.4831 +0806.4833 +0806.4836 Optics +0806.4839 Superconductivity +0806.4844 +0806.4852 +0806.4854 +0806.4855 +0806.4856 Atomic Physics +0806.4867 +0806.4868 +0806.4873 +0806.4876 Statistical Finance +0806.4880 Physics and Society +0806.4882 Fluid Dynamics +0806.4892 +0806.4893 Atomic Physics +0806.4898 Mesoscale and Nanoscale Physics +0806.4904 +0806.4923 +0806.4925 Mesoscale and Nanoscale Physics +0806.4931 Fluid Dynamics +0806.4932 Physics Education +0806.4936 +0806.4937 +0806.4943 Chemical Physics +0806.4944 +0806.4951 Phenomenology +0806.4962 Physics and Society +0806.4968 +0806.4978 Mesoscale and Nanoscale Physics +0807.0002 Other Condensed Matter +0807.0003 +0807.0005 Superconductivity +0807.0006 +0807.0009 +0807.0016 +0807.0018 Other Condensed Matter +0807.0032 Strongly Correlated Electrons +0807.0043 Mesoscale and Nanoscale Physics +0807.0049 +0807.0059 +0807.0063 Theory +0807.0071 Strongly Correlated Electrons +0807.0072 Strongly Correlated Electrons +0807.0076 Subcellular Processes +0807.0078 Other Condensed Matter +0807.0083 +0807.0085 Pattern Formation and Solitons +0807.0091 Mesoscale and Nanoscale Physics +0807.0092 +0807.0096 +0807.0100 +0807.0105 +0807.0107 Statistical Mechanics +0807.0109 +0807.0110 +0807.0111 Atomic and Molecular Clusters +0807.0113 +0807.0114 +0807.0117 Mesoscale and Nanoscale Physics +0807.0127 +0807.0128 +0807.0129 +0807.0130 +0807.0139 +0807.0143 Materials Science +0807.0146 +0807.0152 +0807.0153 Mesoscale and Nanoscale Physics +0807.0157 Mesoscale and Nanoscale Physics +0807.0162 +0807.0164 +0807.0175 +0807.0176 +0807.0183 Materials Science +0807.0194 Mesoscale and Nanoscale Physics +0807.0201 +0807.0209 +0807.0210 +0807.0215 +0807.0217 Mesoscale and Nanoscale Physics +0807.0220 +0807.0226 Strongly Correlated Electrons +0807.0227 +0807.0229 +0807.0230 +0807.0235 +0807.0238 +0807.0243 +0807.0250 +0807.0252 Mesoscale and Nanoscale Physics +0807.0266 +0807.0267 +0807.0272 Statistical Mechanics +0807.0274 Fluid Dynamics +0807.0275 Soft Condensed Matter +0807.0282 +0807.0284 Theory +0807.0290 +0807.0291 +0807.0293 +0807.0295 Mesoscale and Nanoscale Physics +0807.0301 +0807.0302 +0807.0307 Other Condensed Matter +0807.0310 Mesoscale and Nanoscale Physics +0807.0320 +0807.0322 +0807.0324 Statistical Mechanics +0807.0327 Probability +0807.0338 Theory +0807.0342 Experiment +0807.0346 Chemical Physics +0807.0348 Physics and Society +0807.0352 Strongly Correlated Electrons +0807.0356 Mesoscale and Nanoscale Physics +0807.0358 Fluid Dynamics +0807.0363 +0807.0364 Phenomenology +0807.0371 Materials Science +0807.0374 +0807.0384 Soft Condensed Matter +0807.0388 Materials Science +0807.0389 Theory +0807.0390 +0807.0392 Statistical Mechanics +0807.0393 +0807.0396 Materials Science +0807.0397 +0807.0398 Superconductivity +0807.0399 Theory +0807.0402 Statistical Mechanics +0807.0404 Geophysics +0807.0408 Statistical Mechanics +0807.0409 Statistical Mechanics +0807.0411 +0807.0416 Strongly Correlated Electrons +0807.0417 Other Condensed Matter +0807.0422 +0807.0423 +0807.0429 Statistical Mechanics +0807.0431 +0807.0440 +0807.0441 +0807.0442 +0807.0445 +0807.0446 Atomic Physics +0807.0452 Atomic Physics +0807.0456 Phenomenology +0807.0460 +0807.0469 +0807.0470 Materials Science +0807.0493 +0807.0497 +0807.0498 Superconductivity +0807.0501 +0807.0506 Other Condensed Matter +0807.0508 +0807.0518 +0807.0520 Phenomenology +0807.0522 Statistical Mechanics +0807.0523 Optics +0807.0526 Instrumentation and Detectors +0807.0531 Theory +0807.0534 +0807.0539 +0807.0542 Statistical Mechanics +0807.0550 Soft Condensed Matter +0807.0551 Soft Condensed Matter +0807.0573 +0807.0579 +0807.0582 Materials Science +0807.0585 Superconductivity +0807.0593 Phenomenology +0807.0602 Fluid Dynamics +0807.0603 +0807.0606 +0807.0616 Superconductivity +0807.0631 Space Physics +0807.0634 +0807.0636 +0807.0638 Mesoscale and Nanoscale Physics +0807.0642 Disordered Systems and Neural Networks +0807.0652 +0807.0660 +0807.0662 Superconductivity +0807.0670 Mesoscale and Nanoscale Physics +0807.0674 Soft Condensed Matter +0807.0677 Operator Algebras +0807.0680 +0807.0694 +0807.0695 +0807.0697 +0807.0698 Phenomenology +0807.0703 +0807.0705 +0807.0713 +0807.0717 +0807.0720 Soft Condensed Matter +0807.0724 Phenomenology +0807.0726 Other Condensed Matter +0807.0728 +0807.0730 +0807.0737 Strongly Correlated Electrons +0807.0738 +0807.0739 +0807.0741 +0807.0747 +0807.0752 Pattern Formation and Solitons +0807.0758 +0807.0759 Superconductivity +0807.0766 +0807.0768 Soft Condensed Matter +0807.0773 +0807.0778 Numerical Analysis +0807.0780 Subcellular Processes +0807.0781 +0807.0786 Biological Physics +0807.0790 Strongly Correlated Electrons +0807.0803 Statistical Mechanics +0807.0806 Soft Condensed Matter +0807.0809 +0807.0811 +0807.0814 +0807.0818 +0807.0819 Soft Condensed Matter +0807.0823 Superconductivity +0807.0833 Strongly Correlated Electrons +0807.0835 +0807.0838 Biological Physics +0807.0840 Chaotic Dynamics +0807.0844 Materials Science +0807.0857 +0807.0860 Lattice +0807.0863 +0807.0888 Soft Condensed Matter +0807.0893 +0807.0895 +0807.0904 +0807.0906 Materials Science +0807.0922 Superconductivity +0807.0924 +0807.0930 +0807.0935 +0807.0940 +0807.0947 Optics +0807.0948 Statistical Mechanics +0807.0962 Other Condensed Matter +0807.0968 Mesoscale and Nanoscale Physics +0807.0983 +0807.0989 +0807.1000 +0807.1006 +0807.1010 Superconductivity +0807.1018 +0807.1022 Strongly Correlated Electrons +0807.1027 Statistical Mechanics +0807.1034 Mesoscale and Nanoscale Physics +0807.1037 Superconductivity +0807.1042 Probability +0807.1049 +0807.1057 +0807.1062 +0807.1067 +0807.1069 +0807.1091 +0807.1093 +0807.1098 +0807.1103 +0807.1105 +0807.1112 +0807.1115 +0807.1116 +0807.1119 +0807.1127 +0807.1129 +0807.1134 +0807.1143 +0807.1144 +0807.1146 Strongly Correlated Electrons +0807.1149 +0807.1151 +0807.1161 +0807.1164 Materials Science +0807.1176 Materials Science +0807.1180 +0807.1184 +0807.1185 +0807.1194 Superconductivity +0807.1196 +0807.1198 Superconductivity +0807.1207 Atomic Physics +0807.1219 Atomic and Molecular Clusters +0807.1222 Optics +0807.1226 +0807.1239 +0807.1244 +0807.1261 Statistical Mechanics +0807.1264 +0807.1266 +0807.1269 +0807.1270 +0807.1274 +0807.1280 Other Condensed Matter +0807.1281 +0807.1286 Materials Science +0807.1287 Optics +0807.1298 +0807.1300 History and Philosophy of Physics +0807.1305 Disordered Systems and Neural Networks +0807.1308 +0807.1310 Classical Physics +0807.1316 +0807.1318 +0807.1319 Mesoscale and Nanoscale Physics +0807.1321 +0807.1325 Strongly Correlated Electrons +0807.1326 +0807.1331 +0807.1334 +0807.1337 +0807.1339 Materials Science +0807.1342 +0807.1344 Optics +0807.1350 Statistical Mechanics +0807.1354 +0807.1355 Analysis of PDEs +0807.1357 +0807.1360 Materials Science +0807.1361 Other Condensed Matter +0807.1362 +0807.1364 +0807.1367 Populations and Evolution +0807.1369 Chemical Physics +0807.1373 +0807.1374 +0807.1377 Materials Science +0807.1378 Optics +0807.1380 Superconductivity +0807.1383 +0807.1385 Mesoscale and Nanoscale Physics +0807.1391 Strongly Correlated Electrons +0807.1406 Statistical Mechanics +0807.1409 +0807.1410 Instrumentation and Detectors +0807.1419 +0807.1424 +0807.1433 Other Condensed Matter +0807.1437 Soft Condensed Matter +0807.1438 Atomic Physics +0807.1439 Materials Science +0807.1443 +0807.1446 +0807.1447 +0807.1452 +0807.1454 Strongly Correlated Electrons +0807.1456 +0807.1457 +0807.1458 Physics and Society +0807.1463 +0807.1467 +0807.1469 Materials Science +0807.1473 +0807.1477 +0807.1482 Materials Science +0807.1486 +0807.1499 +0807.1502 +0807.1506 Strongly Correlated Electrons +0807.1507 +0807.1515 +0807.1529 +0807.1530 +0807.1531 +0807.1532 +0807.1533 +0807.1535 +0807.1537 Optics +0807.1538 +0807.1541 +0807.1542 Strongly Correlated Electrons +0807.1545 +0807.1547 +0807.1548 +0807.1553 Classical Physics +0807.1554 Mesoscale and Nanoscale Physics +0807.1561 +0807.1563 Fluid Dynamics +0807.1565 +0807.1571 Strongly Correlated Electrons +0807.1573 +0807.1575 Materials Science +0807.1576 Disordered Systems and Neural Networks +0807.1578 Mesoscale and Nanoscale Physics +0807.1580 +0807.1584 Mesoscale and Nanoscale Physics +0807.1591 +0807.1602 +0807.1611 Materials Science +0807.1614 +0807.1617 +0807.1625 +0807.1630 Soft Condensed Matter +0807.1642 +0807.1647 Materials Science +0807.1653 Materials Science +0807.1663 Mesoscale and Nanoscale Physics +0807.1668 +0807.1678 Mesoscale and Nanoscale Physics +0807.1683 Strongly Correlated Electrons +0807.1686 +0807.1698 +0807.1699 Quantitative Methods +0807.1701 Materials Science +0807.1702 +0807.1703 +0807.1706 +0807.1708 Pattern Formation and Solitons +0807.1717 +0807.1718 Optics +0807.1721 +0807.1722 +0807.1724 +0807.1727 +0807.1745 +0807.1758 +0807.1761 +0807.1763 +0807.1766 +0807.1769 +0807.1774 Plasma Physics +0807.1776 +0807.1781 +0807.1782 Materials Science +0807.1783 Materials Science +0807.1786 +0807.1787 +0807.1794 +0807.1795 Theory +0807.1796 +0807.1809 Superconductivity +0807.1819 Classical Physics +0807.1834 +0807.1843 Physics and Society +0807.1849 Strongly Correlated Electrons +0807.1858 Theory +0807.1862 +0807.1873 Atmospheric and Oceanic Physics +0807.1874 Statistical Mechanics +0807.1882 Instrumentation and Detectors +0807.1889 Theory +0807.1890 +0807.1893 Superconductivity +0807.1901 +0807.1902 +0807.1907 Atomic Physics +0807.1910 +0807.1912 +0807.1913 +0807.1915 +0807.1920 Materials Science +0807.1928 +0807.1929 +0807.1930 +0807.1932 +0807.1934 Strongly Correlated Electrons +0807.1935 Soft Condensed Matter +0807.1936 Strongly Correlated Electrons +0807.1944 +0807.1945 +0807.1952 Optics +0807.1954 Neurons and Cognition +0807.1956 +0807.1958 +0807.1959 Phenomenology +0807.1974 +0807.1978 Materials Science +0807.1979 Analysis of PDEs +0807.1988 +0807.1996 +0807.2001 +0807.2003 Statistical Mechanics +0807.2004 Soft Condensed Matter +0807.2007 +0807.2021 +0807.2029 +0807.2035 +0807.2036 Strongly Correlated Electrons +0807.2037 Plasma Physics +0807.2042 Atomic Physics +0807.2048 Mesoscale and Nanoscale Physics +0807.2056 +0807.2057 +0807.2059 +0807.2060 +0807.2064 +0807.2067 +0807.2068 Chemical Physics +0807.2086 Instrumentation and Detectors +0807.2088 +0807.2093 +0807.2102 +0807.2103 +0807.2106 +0807.2112 Fluid Dynamics +0807.2115 Materials Science +0807.2128 +0807.2136 Strongly Correlated Electrons +0807.2142 Materials Science +0807.2145 +0807.2152 Materials Science +0807.2156 +0807.2165 Superconductivity +0807.2176 +0807.2183 Other Condensed Matter +0807.2184 Dynamical Systems +0807.2197 +0807.2213 Superconductivity +0807.2223 Superconductivity +0807.2226 Atomic Physics +0807.2229 Mesoscale and Nanoscale Physics +0807.2230 +0807.2232 +0807.2237 Superconductivity +0807.2239 +0807.2240 +0807.2241 +0807.2243 +0807.2251 +0807.2253 +0807.2255 +0807.2262 +0807.2270 Quantum Algebra +0807.2271 +0807.2278 +0807.2288 +0807.2293 +0807.2295 +0807.2296 Strongly Correlated Electrons +0807.2297 Soft Condensed Matter +0807.2299 Soft Condensed Matter +0807.2312 Strongly Correlated Electrons +0807.2313 +0807.2348 Statistical Mechanics +0807.2353 +0807.2372 +0807.2375 +0807.2379 +0807.2384 +0807.2389 +0807.2396 Geophysics +0807.2397 +0807.2398 +0807.2399 Materials Science +0807.2404 +0807.2412 Superconductivity +0807.2415 Chaotic Dynamics +0807.2418 Mesoscale and Nanoscale Physics +0807.2423 Statistical Mechanics +0807.2426 Statistical Mechanics +0807.2429 Chemical Physics +0807.2433 +0807.2434 +0807.2444 +0807.2445 Mesoscale and Nanoscale Physics +0807.2447 +0807.2451 +0807.2453 +0807.2458 Disordered Systems and Neural Networks +0807.2460 +0807.2467 +0807.2468 Mesoscale and Nanoscale Physics +0807.2476 +0807.2479 Optics +0807.2481 +0807.2483 +0807.2499 +0807.2502 +0807.2504 +0807.2515 +0807.2517 Materials Science +0807.2522 +0807.2523 +0807.2525 +0807.2530 Superconductivity +0807.2541 Strongly Correlated Electrons +0807.2546 Statistical Mechanics +0807.2553 Statistical Mechanics +0807.2556 +0807.2558 Statistical Mechanics +0807.2560 Mesoscale and Nanoscale Physics +0807.2562 +0807.2568 +0807.2573 +0807.2579 Phenomenology +0807.2580 Fluid Dynamics +0807.2583 Statistical Finance +0807.2590 Strongly Correlated Electrons +0807.2594 +0807.2596 Optimization and Control +0807.2597 Biological Physics +0807.2610 Biological Physics +0807.2614 +0807.2617 Optimization and Control +0807.2622 +0807.2623 Optics +0807.2624 Mesoscale and Nanoscale Physics +0807.2631 Strongly Correlated Electrons +0807.2632 Chaotic Dynamics +0807.2638 +0807.2645 +0807.2646 +0807.2647 +0807.2650 +0807.2651 +0807.2653 +0807.2654 Materials Science +0807.2661 Materials Science +0807.2670 +0807.2671 Superconductivity +0807.2672 Strongly Correlated Electrons +0807.2681 +0807.2684 Optics +0807.2697 +0807.2702 Operator Algebras +0807.2710 Mesoscale and Nanoscale Physics +0807.2711 +0807.2717 Mesoscale and Nanoscale Physics +0807.2723 +0807.2729 +0807.2737 +0807.2741 +0807.2749 Superconductivity +0807.2754 +0807.2760 +0807.2764 +0807.2765 Chemical Physics +0807.2768 +0807.2776 +0807.2782 +0807.2783 +0807.2798 +0807.2803 +0807.2821 +0807.2833 Superconductivity +0807.2842 Mesoscale and Nanoscale Physics +0807.2846 +0807.2852 +0807.2853 +0807.2860 +0807.2875 Computational Physics +0807.2885 Materials Science +0807.2886 Mesoscale and Nanoscale Physics +0807.2896 Strongly Correlated Electrons +0807.2898 Other Condensed Matter +0807.2899 +0807.2903 +0807.2908 Mesoscale and Nanoscale Physics +0807.2910 +0807.2919 +0807.2924 +0807.2933 Disordered Systems and Neural Networks +0807.2937 Materials Science +0807.2938 Materials Science +0807.2943 +0807.2945 +0807.2946 +0807.2949 +0807.2965 Optics +0807.2966 +0807.2970 +0807.2975 +0807.2998 +0807.3000 +0807.3005 +0807.3007 +0807.3008 Disordered Systems and Neural Networks +0807.3009 +0807.3011 Disordered Systems and Neural Networks +0807.3014 +0807.3015 Mesoscale and Nanoscale Physics +0807.3017 +0807.3019 Disordered Systems and Neural Networks +0807.3020 +0807.3021 Superconductivity +0807.3030 +0807.3031 Soft Condensed Matter +0807.3048 Soft Condensed Matter +0807.3049 +0807.3051 Mesoscale and Nanoscale Physics +0807.3053 +0807.3063 +0807.3068 Statistical Mechanics +0807.3070 +0807.3071 Materials Science +0807.3072 +0807.3074 +0807.3075 Mesoscale and Nanoscale Physics +0807.3077 +0807.3079 +0807.3084 +0807.3100 Physics and Society +0807.3114 +0807.3116 Strongly Correlated Electrons +0807.3119 Strongly Correlated Electrons +0807.3121 Statistical Mechanics +0807.3133 +0807.3137 Superconductivity +0807.3138 Mesoscale and Nanoscale Physics +0807.3145 Instrumentation and Detectors +0807.3147 Instrumentation and Detectors +0807.3159 Statistical Mechanics +0807.3162 Materials Science +0807.3165 Mesoscale and Nanoscale Physics +0807.3171 +0807.3181 Superconductivity +0807.3182 Phenomenology +0807.3190 Probability +0807.3193 Fluid Dynamics +0807.3200 +0807.3204 +0807.3206 +0807.3208 +0807.3213 +0807.3214 Mesoscale and Nanoscale Physics +0807.3219 +0807.3224 Other Condensed Matter +0807.3234 Optics +0807.3240 Algebraic Topology +0807.3255 +0807.3271 +0807.3274 Soft Condensed Matter +0807.3276 +0807.3282 +0807.3284 +0807.3290 +0807.3293 Superconductivity +0807.3301 Atomic Physics +0807.3306 Other Condensed Matter +0807.3314 +0807.3316 +0807.3324 Theory +0807.3328 +0807.3331 +0807.3335 +0807.3338 +0807.3339 +0807.3340 +0807.3342 +0807.3345 +0807.3347 +0807.3352 +0807.3366 Other Condensed Matter +0807.3370 Superconductivity +0807.3373 Statistical Mechanics +0807.3380 Strongly Correlated Electrons +0807.3382 +0807.3386 +0807.3388 Optics +0807.3390 Materials Science +0807.3393 Mesoscale and Nanoscale Physics +0807.3394 Classical Physics +0807.3399 +0807.3402 +0807.3403 +0807.3405 +0807.3407 Soft Condensed Matter +0807.3408 Atomic Physics +0807.3409 Theory +0807.3411 Mesoscale and Nanoscale Physics +0807.3414 +0807.3416 Adaptation and Self-Organizing Systems +0807.3420 Strongly Correlated Electrons +0807.3422 Superconductivity +0807.3424 Strongly Correlated Electrons +0807.3435 Other Condensed Matter +0807.3439 +0807.3442 +0807.3443 +0807.3444 Other Condensed Matter +0807.3447 +0807.3449 Superconductivity +0807.3450 Statistical Mechanics +0807.3456 Soft Condensed Matter +0807.3457 +0807.3458 +0807.3459 +0807.3460 Materials Science +0807.3473 History and Philosophy of Physics +0807.3480 Superconductivity +0807.3484 +0807.3494 Optics +0807.3497 +0807.3501 +0807.3504 Plasma Physics +0807.3512 +0807.3530 +0807.3542 +0807.3545 +0807.3547 +0807.3550 +0807.3560 +0807.3562 Materials Science +0807.3570 Soft Condensed Matter +0807.3572 +0807.3586 Strongly Correlated Electrons +0807.3588 +0807.3596 Phenomenology +0807.3597 +0807.3598 Other Condensed Matter +0807.3599 +0807.3606 Statistical Mechanics +0807.3615 Strongly Correlated Electrons +0807.3617 Statistical Mechanics +0807.3618 +0807.3624 +0807.3630 Superconductivity +0807.3631 Superconductivity +0807.3637 Mesoscale and Nanoscale Physics +0807.3640 Mesoscale and Nanoscale Physics +0807.3641 Strongly Correlated Electrons +0807.3649 +0807.3651 +0807.3652 +0807.3653 +0807.3666 Phenomenology +0807.3672 Atomic Physics +0807.3673 +0807.3674 +0807.3680 Plasma Physics +0807.3684 +0807.3686 +0807.3693 +0807.3697 +0807.3698 Disordered Systems and Neural Networks +0807.3703 +0807.3707 Materials Science +0807.3713 Plasma Physics +0807.3714 +0807.3721 Mesoscale and Nanoscale Physics +0807.3724 +0807.3726 Strongly Correlated Electrons +0807.3730 +0807.3731 Exactly Solvable and Integrable Systems +0807.3739 +0807.3743 +0807.3744 +0807.3746 +0807.3747 +0807.3749 Disordered Systems and Neural Networks +0807.3751 +0807.3752 +0807.3765 +0807.3767 +0807.3773 +0807.3774 +0807.3775 Phenomenology +0807.3776 Mesoscale and Nanoscale Physics +0807.3777 +0807.3783 +0807.3793 Materials Science +0807.3794 +0807.3796 +0807.3801 +0807.3817 +0807.3819 Mesoscale and Nanoscale Physics +0807.3820 +0807.3829 +0807.3833 Superconductivity +0807.3837 Classical Physics +0807.3838 Applications +0807.3839 +0807.3851 General Physics +0807.3862 Disordered Systems and Neural Networks +0807.3866 Mesoscale and Nanoscale Physics +0807.3871 Soft Condensed Matter +0807.3873 +0807.3876 Strongly Correlated Electrons +0807.3880 Mesoscale and Nanoscale Physics +0807.3881 Strongly Correlated Electrons +0807.3883 Phenomenology +0807.3885 +0807.3902 +0807.3909 Strongly Correlated Electrons +0807.3911 +0807.3912 Strongly Correlated Electrons +0807.3914 Mesoscale and Nanoscale Physics +0807.3915 +0807.3920 +0807.3921 Phenomenology +0807.3924 +0807.3925 Soft Condensed Matter +0807.3931 Superconductivity +0807.3941 +0807.3946 +0807.3947 Soft Condensed Matter +0807.3951 +0807.3954 +0807.3955 +0807.3957 Theory +0807.3966 +0807.3967 +0807.3971 +0807.3972 Dynamical Systems +0807.3975 +0807.3976 Soft Condensed Matter +0807.3982 +0807.3986 Rings and Algebras +0807.3989 Other Condensed Matter +0807.3997 Statistical Mechanics +0807.3999 Mesoscale and Nanoscale Physics +0807.4006 Physics and Society +0807.4021 Statistical Mechanics +0807.4027 Mesoscale and Nanoscale Physics +0807.4029 Superconductivity +0807.4035 Instrumentation and Detectors +0807.4036 +0807.4037 +0807.4047 Statistical Mechanics +0807.4050 Superconductivity +0807.4055 Optics +0807.4056 Atomic and Molecular Clusters +0807.4063 +0807.4064 Instrumentation and Detectors +0807.4077 +0807.4078 Superconductivity +0807.4087 +0807.4108 +0807.4117 +0807.4125 Plasma Physics +0807.4136 +0807.4137 Other Condensed Matter +0807.4141 +0807.4144 +0807.4155 +0807.4161 +0807.4164 +0807.4166 +0807.4172 Optics +0807.4177 +0807.4178 +0807.4179 +0807.4183 Materials Science +0807.4186 +0807.4189 +0807.4194 +0807.4195 Strongly Correlated Electrons +0807.4196 Superconductivity +0807.4211 +0807.4212 Mesoscale and Nanoscale Physics +0807.4215 Optics +0807.4220 Mesoscale and Nanoscale Physics +0807.4227 Biological Physics +0807.4233 +0807.4249 +0807.4251 +0807.4260 +0807.4261 +0807.4264 +0807.4273 +0807.4274 Soft Condensed Matter +0807.4276 +0807.4282 Mesoscale and Nanoscale Physics +0807.4284 Soft Condensed Matter +0807.4293 +0807.4300 Statistical Mechanics +0807.4331 +0807.4335 +0807.4340 +0807.4347 Mesoscale and Nanoscale Physics +0807.4354 Optics +0807.4358 Biological Physics +0807.4362 +0807.4365 +0807.4370 Materials Science +0807.4380 Phenomenology +0807.4382 +0807.4387 +0807.4393 +0807.4396 +0807.4402 +0807.4404 Superconductivity +0807.4407 +0807.4420 Physics and Society +0807.4429 Superconductivity +0807.4432 Strongly Correlated Electrons +0807.4433 Physics and Society +0807.4438 Materials Science +0807.4440 +0807.4441 Superconductivity +0807.4444 +0807.4452 +0807.4456 +0807.4460 Atomic Physics +0807.4467 +0807.4470 +0807.4472 +0807.4479 +0807.4483 +0807.4488 Superconductivity +0807.4499 Chaotic Dynamics +0807.4500 Biological Physics +0807.4502 Superconductivity +0807.4511 Subcellular Processes +0807.4512 Phenomenology +0807.4514 +0807.4516 Plasma Physics +0807.4517 Soft Condensed Matter +0807.4522 +0807.4528 +0807.4529 +0807.4530 +0807.4533 +0807.4540 Theory +0807.4541 +0807.4546 Materials Science +0807.4549 +0807.4555 Other Condensed Matter +0807.4557 +0807.4558 +0807.4559 +0807.4564 Strongly Correlated Electrons +0807.4570 +0807.4572 Superconductivity +0807.4573 +0807.4575 Mesoscale and Nanoscale Physics +0807.4579 +0807.4588 Other Condensed Matter +0807.4597 Soft Condensed Matter +0807.4611 +0807.4612 Mesoscale and Nanoscale Physics +0807.4615 +0807.4616 Strongly Correlated Electrons +0807.4617 Statistical Mechanics +0807.4622 +0807.4627 Other Condensed Matter +0807.4628 Statistical Mechanics +0807.4631 +0807.4633 Strongly Correlated Electrons +0807.4634 +0807.4636 +0807.4638 +0807.4643 Statistical Mechanics +0807.4651 Strongly Correlated Electrons +0807.4660 Mesoscale and Nanoscale Physics +0807.4666 Phenomenology +0807.4669 +0807.4677 Materials Science +0807.4687 +0807.4689 Materials Science +0807.4707 Dynamical Systems +0807.4708 +0807.4717 Pattern Formation and Solitons +0807.4750 +0807.4756 Mesoscale and Nanoscale Physics +0807.4759 Statistical Mechanics +0807.4762 +0807.4766 +0807.4767 Mesoscale and Nanoscale Physics +0807.4786 +0807.4787 Optics +0807.4789 Optics +0807.4792 Optics +0807.4793 Statistical Mechanics +0807.4796 Statistical Mechanics +0807.4806 +0807.4813 Soft Condensed Matter +0807.4816 +0807.4823 +0807.4826 Statistical Mechanics +0807.4828 +0807.4830 +0807.4833 Mesoscale and Nanoscale Physics +0807.4842 +0807.4844 +0807.4865 Mesoscale and Nanoscale Physics +0807.4866 Materials Science +0807.4868 Materials Science +0807.4870 +0807.4872 Superconductivity +0807.4880 +0807.4902 +0807.4908 Atomic and Molecular Clusters +0807.4911 Materials Science +0807.4928 +0807.4929 +0807.4931 +0807.4944 Other Condensed Matter +0807.4949 +0807.4950 +0807.4951 Superconductivity +0807.4962 Strongly Correlated Electrons +0807.4966 +0807.4967 Optics +0807.4980 Other Condensed Matter +0807.4989 +0807.4994 +0807.5004 +0807.5005 Statistical Mechanics +0807.5013 +0807.5014 Materials Science +0807.5018 +0807.5025 Materials Science +0807.5029 +0807.5031 Molecular Networks +0807.5038 Optics +0807.5046 Chemical Physics +0807.5050 +0807.5051 Phenomenology +0807.5052 +0807.5057 Strongly Correlated Electrons +0807.5061 +0807.5062 Other Condensed Matter +0807.5064 +0807.5066 Strongly Correlated Electrons +0807.5070 Strongly Correlated Electrons +0807.5079 +0807.5080 +0807.5089 +0807.5092 Soft Condensed Matter +0807.5099 +0807.5105 +0807.5108 +0807.5110 Other Condensed Matter +0807.5119 Materials Science +0807.5132 Mesoscale and Nanoscale Physics +0807.5133 +0807.5137 +0808.0003 +0808.0007 +0808.0016 +0808.0020 +0808.0026 Other Condensed Matter +0808.0027 +0808.0033 Computational Physics +0808.0038 +0808.0040 Superconductivity +0808.0042 +0808.0044 +0808.0047 Theory +0808.0054 Other Condensed Matter +0808.0057 Materials Science +0808.0061 Superconductivity +0808.0063 +0808.0068 +0808.0071 Phenomenology +0808.0072 +0808.0078 Soft Condensed Matter +0808.0079 Strongly Correlated Electrons +0808.0080 Soft Condensed Matter +0808.0081 +0808.0088 Biological Physics +0808.0089 +0808.0103 Digital Libraries +0808.0104 +0808.0106 Strongly Correlated Electrons +0808.0118 +0808.0120 Other Condensed Matter +0808.0121 +0808.0124 Mesoscale and Nanoscale Physics +0808.0129 +0808.0132 +0808.0137 +0808.0141 +0808.0152 Atomic Physics +0808.0153 +0808.0154 +0808.0161 +0808.0165 +0808.0171 +0808.0172 Adaptation and Self-Organizing Systems +0808.0176 +0808.0188 +0808.0189 +0808.0193 +0808.0195 +0808.0205 Statistical Mechanics +0808.0224 Optics +0808.0229 +0808.0230 +0808.0231 Superconductivity +0808.0232 Phenomenology +0808.0233 +0808.0238 Strongly Correlated Electrons +0808.0242 +0808.0244 +0808.0245 +0808.0260 +0808.0266 Adaptation and Self-Organizing Systems +0808.0267 +0808.0268 +0808.0270 +0808.0278 Strongly Correlated Electrons +0808.0279 +0808.0281 Strongly Correlated Electrons +0808.0288 Superconductivity +0808.0289 Superconductivity +0808.0299 Superconductivity +0808.0300 +0808.0307 +0808.0314 Statistical Mechanics +0808.0320 +0808.0323 Materials Science +0808.0325 Superconductivity +0808.0334 +0808.0365 +0808.0371 +0808.0384 +0808.0398 +0808.0401 Materials Science +0808.0403 +0808.0409 Other Condensed Matter +0808.0413 Phenomenology +0808.0434 Superconductivity +0808.0437 History and Philosophy of Physics +0808.0445 Strongly Correlated Electrons +0808.0448 Materials Science +0808.0454 Materials Science +0808.0455 +0808.0456 Exactly Solvable and Integrable Systems +0808.0464 Superconductivity +0808.0465 Mesoscale and Nanoscale Physics +0808.0472 +0808.0474 Superconductivity +0808.0476 Superconductivity +0808.0480 Soft Condensed Matter +0808.0493 +0808.0501 Other Condensed Matter +0808.0510 +0808.0511 +0808.0515 +0808.0517 +0808.0519 +0808.0524 +0808.0527 Soft Condensed Matter +0808.0529 Soft Condensed Matter +0808.0538 Mesoscale and Nanoscale Physics +0808.0541 +0808.0543 +0808.0545 Strongly Correlated Electrons +0808.0548 Information Theory +0808.0551 +0808.0553 +0808.0559 Superconductivity +0808.0561 +0808.0564 Strongly Correlated Electrons +0808.0568 Materials Science +0808.0569 Strongly Correlated Electrons +0808.0577 +0808.0580 Other Condensed Matter +0808.0584 Physics and Society +0808.0585 Materials Science +0808.0591 +0808.0601 +0808.0602 Dynamical Systems +0808.0605 +0808.0606 Materials Science +0808.0608 +0808.0609 +0808.0616 Strongly Correlated Electrons +0808.0617 +0808.0623 Disordered Systems and Neural Networks +0808.0627 Mesoscale and Nanoscale Physics +0808.0630 Populations and Evolution +0808.0633 +0808.0637 +0808.0640 Number Theory +0808.0660 Statistical Mechanics +0808.0661 Statistical Mechanics +0808.0662 Statistical Mechanics +0808.0678 Strongly Correlated Electrons +0808.0680 Superconductivity +0808.0687 Soft Condensed Matter +0808.0693 Mesoscale and Nanoscale Physics +0808.0698 +0808.0712 Strongly Correlated Electrons +0808.0713 +0808.0715 +0808.0716 +0808.0718 Superconductivity +0808.0721 +0808.0729 Materials Science +0808.0736 Strongly Correlated Electrons +0808.0740 Strongly Correlated Electrons +0808.0747 Experiment +0808.0751 Populations and Evolution +0808.0755 +0808.0757 +0808.0759 +0808.0766 Statistical Mechanics +0808.0769 +0808.0778 Mesoscale and Nanoscale Physics +0808.0779 +0808.0784 Mesoscale and Nanoscale Physics +0808.0793 +0808.0803 +0808.0805 Superconductivity +0808.0806 Superconductivity +0808.0823 Phenomenology +0808.0827 Strongly Correlated Electrons +0808.0830 Chaotic Dynamics +0808.0831 +0808.0837 +0808.0841 Materials Science +0808.0843 +0808.0857 +0808.0865 Materials Science +0808.0866 Dynamical Systems +0808.0872 Optics +0808.0875 Optics +0808.0877 Strongly Correlated Electrons +0808.0882 Pattern Formation and Solitons +0808.0886 +0808.0891 Soft Condensed Matter +0808.0892 Strongly Correlated Electrons +0808.0896 +0808.0899 +0808.0902 Mesoscale and Nanoscale Physics +0808.0903 +0808.0907 Strongly Correlated Electrons +0808.0911 +0808.0914 +0808.0918 +0808.0919 +0808.0921 +0808.0922 +0808.0925 +0808.0926 +0808.0932 +0808.0937 Statistical Mechanics +0808.0938 +0808.0942 Strongly Correlated Electrons +0808.0947 Mesoscale and Nanoscale Physics +0808.0950 Mesoscale and Nanoscale Physics +0808.0958 Exactly Solvable and Integrable Systems +0808.0963 Statistical Mechanics +0808.0966 Superconductivity +0808.0968 Exactly Solvable and Integrable Systems +0808.0983 Superconductivity +0808.0994 Soft Condensed Matter +0808.1007 +0808.1009 Strongly Correlated Electrons +0808.1014 +0808.1018 Mesoscale and Nanoscale Physics +0808.1028 Superconductivity +0808.1048 Materials Science +0808.1049 +0808.1052 +0808.1053 +0808.1063 Superconductivity +0808.1069 +0808.1072 +0808.1074 +0808.1078 +0808.1088 Atomic Physics +0808.1091 +0808.1099 +0808.1100 +0808.1102 +0808.1111 +0808.1116 Strongly Correlated Electrons +0808.1118 +0808.1131 Superconductivity +0808.1140 +0808.1145 +0808.1160 Strongly Correlated Electrons +0808.1169 Mesoscale and Nanoscale Physics +0808.1175 Strongly Correlated Electrons +0808.1180 +0808.1182 +0808.1184 +0808.1186 +0808.1194 Statistical Mechanics +0808.1196 +0808.1197 Materials Science +0808.1201 Differential Geometry +0808.1210 Statistical Mechanics +0808.1224 Statistical Mechanics +0808.1227 +0808.1230 Other Condensed Matter +0808.1258 +0808.1268 Pattern Formation and Solitons +0808.1272 +0808.1278 Strongly Correlated Electrons +0808.1284 +0808.1287 Materials Science +0808.1289 +0808.1301 +0808.1310 Mesoscale and Nanoscale Physics +0808.1312 Materials Science +0808.1314 Superconductivity +0808.1321 +0808.1322 Mesoscale and Nanoscale Physics +0808.1323 Superconductivity +0808.1324 Optics +0808.1328 Disordered Systems and Neural Networks +0808.1330 +0808.1333 Materials Science +0808.1334 Materials Science +0808.1341 +0808.1348 Superconductivity +0808.1367 +0808.1369 +0808.1381 Strongly Correlated Electrons +0808.1384 Superconductivity +0808.1393 Fluid Dynamics +0808.1396 Materials Science +0808.1397 +0808.1413 Materials Science +0808.1414 +0808.1441 +0808.1444 Exactly Solvable and Integrable Systems +0808.1450 +0808.1454 +0808.1456 +0808.1459 Mesoscale and Nanoscale Physics +0808.1464 Materials Science +0808.1466 Optics +0808.1467 Materials Science +0808.1469 Soft Condensed Matter +0808.1471 +0808.1484 Soft Condensed Matter +0808.1485 Soft Condensed Matter +0808.1488 Soft Condensed Matter +0808.1489 Mesoscale and Nanoscale Physics +0808.1499 +0808.1500 Classical Physics +0808.1501 Other Condensed Matter +0808.1510 +0808.1514 Superconductivity +0808.1520 Superconductivity +0808.1521 +0808.1524 Mesoscale and Nanoscale Physics +0808.1527 +0808.1530 Phenomenology +0808.1531 Statistical Mechanics +0808.1540 +0808.1548 Other Condensed Matter +0808.1554 Materials Science +0808.1555 +0808.1562 Strongly Correlated Electrons +0808.1565 +0808.1566 Materials Science +0808.1573 Strongly Correlated Electrons +0808.1575 +0808.1577 Materials Science +0808.1579 Superconductivity +0808.1593 +0808.1594 +0808.1607 Optics +0808.1611 +0808.1633 +0808.1634 +0808.1637 +0808.1645 Phenomenology +0808.1647 +0808.1649 +0808.1668 +0808.1674 Materials Science +0808.1675 Strongly Correlated Electrons +0808.1681 Strongly Correlated Electrons +0808.1684 Physics and Society +0808.1692 Soft Condensed Matter +0808.1694 Superconductivity +0808.1697 Strongly Correlated Electrons +0808.1699 Materials Science +0808.1703 Other Condensed Matter +0808.1704 +0808.1708 Soft Condensed Matter +0808.1712 Materials Science +0808.1716 +0808.1719 +0808.1723 Mesoscale and Nanoscale Physics +0808.1726 +0808.1728 +0808.1734 Materials Science +0808.1740 +0808.1748 Strongly Correlated Electrons +0808.1763 +0808.1765 +0808.1777 Strongly Correlated Electrons +0808.1781 Other Condensed Matter +0808.1783 Disordered Systems and Neural Networks +0808.1789 +0808.1794 +0808.1806 Other Condensed Matter +0808.1810 Strongly Correlated Electrons +0808.1811 +0808.1812 +0808.1817 +0808.1826 Atomic Physics +0808.1844 +0808.1848 +0808.1849 +0808.1851 Spectral Theory +0808.1862 Mesoscale and Nanoscale Physics +0808.1864 Superconductivity +0808.1865 Fluid Dynamics +0808.1869 Soft Condensed Matter +0808.1887 Physics Education +0808.1889 +0808.1890 +0808.1896 Soft Condensed Matter +0808.1901 +0808.1908 +0808.1909 +0808.1914 Materials Science +0808.1918 +0808.1924 Optics +0808.1927 +0808.1930 +0808.1931 +0808.1935 +0808.1939 +0808.1943 +0808.1949 +0808.1950 Lattice +0808.1953 +0808.1958 Statistical Mechanics +0808.1961 +0808.1963 Plasma Physics +0808.1968 +0808.1969 Strongly Correlated Electrons +0808.1976 +0808.1977 Statistical Mechanics +0808.1980 +0808.1984 +0808.1988 +0808.1990 +0808.1995 +0808.2009 Classical Physics +0808.2012 Classical Physics +0808.2015 Other Condensed Matter +0808.2030 Other Condensed Matter +0808.2033 +0808.2039 +0808.2048 Soft Condensed Matter +0808.2051 +0808.2053 +0808.2061 +0808.2064 Fluid Dynamics +0808.2065 Numerical Analysis +0808.2068 +0808.2072 Other Condensed Matter +0808.2074 +0808.2076 Mesoscale and Nanoscale Physics +0808.2090 +0808.2095 Statistical Mechanics +0808.2105 +0808.2111 +0808.2124 Statistical Mechanics +0808.2126 +0808.2135 +0808.2138 Statistical Mechanics +0808.2139 +0808.2140 Superconductivity +0808.2146 Exactly Solvable and Integrable Systems +0808.2148 +0808.2149 +0808.2151 Plasma Physics +0808.2156 +0808.2157 Soft Condensed Matter +0808.2159 +0808.2166 Other Condensed Matter +0808.2168 +0808.2175 Optics +0808.2177 Data Analysis, Statistics and Probability +0808.2178 +0808.2180 +0808.2188 +0808.2194 +0808.2195 Physics and Society +0808.2202 Physics and Society +0808.2209 Plasma Physics +0808.2221 Optics +0808.2226 +0808.2229 Strongly Correlated Electrons +0808.2233 +0808.2237 Materials Science +0808.2248 +0808.2250 +0808.2254 Other Condensed Matter +0808.2260 +0808.2270 Differential Geometry +0808.2273 +0808.2277 +0808.2278 Chemical Physics +0808.2280 Optics +0808.2281 Materials Science +0808.2288 +0808.2292 +0808.2294 +0808.2306 +0808.2309 Superconductivity +0808.2317 +0808.2331 Strongly Correlated Electrons +0808.2338 +0808.2346 +0808.2353 +0808.2357 Superconductivity +0808.2367 +0808.2369 Plasma Physics +0808.2370 Mesoscale and Nanoscale Physics +0808.2371 +0808.2372 Strongly Correlated Electrons +0808.2373 +0808.2375 +0808.2377 Strongly Correlated Electrons +0808.2384 +0808.2385 +0808.2386 +0808.2391 +0808.2392 Superconductivity +0808.2398 Statistical Mechanics +0808.2403 +0808.2404 +0808.2408 +0808.2422 +0808.2429 +0808.2432 +0808.2434 Statistical Mechanics +0808.2435 +0808.2436 Theory +0808.2438 +0808.2455 Superconductivity +0808.2465 +0808.2468 Phenomenology +0808.2470 +0808.2471 +0808.2480 +0808.2490 Populations and Evolution +0808.2492 +0808.2500 Strongly Correlated Electrons +0808.2505 +0808.2523 Chemical Physics +0808.2529 +0808.2531 +0808.2532 +0808.2536 +0808.2539 +0808.2542 +0808.2546 Instrumentation and Detectors +0808.2550 +0808.2554 +0808.2559 Statistical Mechanics +0808.2566 Strongly Correlated Electrons +0808.2570 Optics +0808.2582 +0808.2583 Soft Condensed Matter +0808.2585 +0808.2589 Statistical Mechanics +0808.2603 +0808.2606 Soft Condensed Matter +0808.2611 +0808.2622 Chemical Physics +0808.2625 +0808.2630 +0808.2638 Materials Science +0808.2640 +0808.2642 +0808.2643 +0808.2648 +0808.2651 +0808.2655 +0808.2661 +0808.2667 +0808.2669 +0808.2681 +0808.2687 +0808.2689 +0808.2695 Superconductivity +0808.2698 Algebraic Geometry +0808.2711 +0808.2712 +0808.2719 Strongly Correlated Electrons +0808.2721 Statistical Mechanics +0808.2722 +0808.2726 Statistical Mechanics +0808.2732 +0808.2736 Materials Science +0808.2741 Statistical Mechanics +0808.2745 +0808.2759 Strongly Correlated Electrons +0808.2770 +0808.2787 +0808.2788 +0808.2791 Materials Science +0808.2796 +0808.2806 Materials Science +0808.2810 +0808.2813 +0808.2815 +0808.2816 +0808.2824 +0808.2831 Differential Geometry +0808.2832 Materials Science +0808.2841 +0808.2842 +0808.2844 Statistical Mechanics +0808.2857 Theory +0808.2858 Other Condensed Matter +0808.2860 +0808.2864 Theory +0808.2871 Other Condensed Matter +0808.2873 Materials Science +0808.2882 Other Condensed Matter +0808.2884 +0808.2889 +0808.2896 Strongly Correlated Electrons +0808.2899 +0808.2911 Atomic Physics +0808.2913 Materials Science +0808.2914 Materials Science +0808.2917 +0808.2920 Superconductivity +0808.2930 +0808.2936 Chaotic Dynamics +0808.2945 Statistical Mechanics +0808.2973 +0808.2974 Mesoscale and Nanoscale Physics +0808.2975 +0808.2978 +0808.2982 +0808.2993 Classical Physics +0808.2994 +0808.2995 Representation Theory +0808.3001 Strongly Correlated Electrons +0808.3011 Differential Geometry +0808.3015 Superconductivity +0808.3025 +0808.3034 +0808.3036 Accelerator Physics +0808.3045 +0808.3059 Pattern Formation and Solitons +0808.3061 Fluid Dynamics +0808.3063 Materials Science +0808.3066 +0808.3087 Biological Physics +0808.3091 Strongly Correlated Electrons +0808.3103 Algebraic Geometry +0808.3106 Chemical Physics +0808.3108 Soft Condensed Matter +0808.3111 +0808.3128 Mesoscale and Nanoscale Physics +0808.3130 Optics +0808.3138 +0808.3139 +0808.3142 Strongly Correlated Electrons +0808.3152 Materials Science +0808.3153 +0808.3158 Strongly Correlated Electrons +0808.3163 Instrumentation and Detectors +0808.3164 +0808.3170 Phenomenology +0808.3195 +0808.3201 +0808.3205 Soft Condensed Matter +0808.3212 +0808.3213 +0808.3221 +0808.3227 +0808.3239 +0808.3245 Strongly Correlated Electrons +0808.3250 Strongly Correlated Electrons +0808.3256 Statistical Mechanics +0808.3284 +0808.3285 +0808.3289 Disordered Systems and Neural Networks +0808.3295 +0808.3297 Strongly Correlated Electrons +0808.3311 Statistical Mechanics +0808.3318 Physics and Society +0808.3324 +0808.3325 +0808.3327 +0808.3334 +0808.3337 +0808.3341 +0808.3343 Superconductivity +0808.3350 Statistical Mechanics +0808.3357 Optics +0808.3358 +0808.3359 Superconductivity +0808.3361 Soft Condensed Matter +0808.3364 Physics and Society +0808.3373 Materials Science +0808.3377 +0808.3387 Soft Condensed Matter +0808.3391 +0808.3393 +0808.3395 Statistical Mechanics +0808.3398 Superconductivity +0808.3403 +0808.3406 +0808.3408 Superconductivity +0808.3414 +0808.3434 Atomic Physics +0808.3443 +0808.3446 Materials Science +0808.3449 +0808.3451 +0808.3455 Plasma Physics +0808.3456 Plasma Physics +0808.3461 +0808.3463 Soft Condensed Matter +0808.3464 +0808.3465 Mesoscale and Nanoscale Physics +0808.3468 Pattern Formation and Solitons +0808.3469 Materials Science +0808.3477 Instrumentation and Detectors +0808.3485 +0808.3487 Materials Science +0808.3492 +0808.3497 Statistical Mechanics +0808.3519 Optics +0808.3523 +0808.3528 Optics +0808.3532 Materials Science +0808.3538 +0808.3556 +0808.3557 Materials Science +0808.3561 +0808.3562 Trading and Market Microstructure +0808.3565 Trading and Market Microstructure +0808.3571 +0808.3573 +0808.3576 Superconductivity +0808.3578 +0808.3579 +0808.3582 +0808.3583 Phenomenology +0808.3584 +0808.3595 Materials Science +0808.3596 Strongly Correlated Electrons +0808.3597 +0808.3600 Phenomenology +0808.3601 +0808.3602 +0808.3608 Adaptation and Self-Organizing Systems +0808.3611 +0808.3624 Lattice +0808.3633 Superconductivity +0808.3641 +0808.3655 +0808.3657 Chaotic Dynamics +0808.3663 Experiment +0808.3664 Theory +0808.3666 Superconductivity +0808.3667 Theory +0808.3670 Materials Science +0808.3678 +0808.3680 +0808.3682 +0808.3683 +0808.3686 +0808.3687 Strongly Correlated Electrons +0808.3701 +0808.3707 +0808.3708 +0808.3711 Soft Condensed Matter +0808.3713 +0808.3722 +0808.3723 +0808.3724 +0808.3728 Optics +0808.3738 Materials Science +0808.3739 Phenomenology +0808.3757 Disordered Systems and Neural Networks +0808.3758 +0808.3766 +0808.3772 +0808.3801 Statistical Mechanics +0808.3817 +0808.3823 Other Condensed Matter +0808.3834 Materials Science +0808.3853 Neurons and Cognition +0808.3860 Statistical Mechanics +0808.3868 Atomic Physics +0808.3869 Disordered Systems and Neural Networks +0808.3871 Superconductivity +0808.3883 +0808.3888 Strongly Correlated Electrons +0808.3890 +0808.3894 Disordered Systems and Neural Networks +0808.3895 +0808.3896 Superconductivity +0808.3897 +0808.3899 Strongly Correlated Electrons +0808.3900 Other Condensed Matter +0808.3903 Theory +0808.3904 +0808.3905 +0808.3917 +0808.3918 +0808.3922 Materials Science +0808.3926 Classical Analysis and ODEs +0808.3930 Fluid Dynamics +0808.3931 +0808.3933 Mesoscale and Nanoscale Physics +0808.3940 Other Condensed Matter +0808.3949 Optics +0808.3950 +0808.3951 Materials Science +0808.3957 +0808.3961 +0808.3967 Other Condensed Matter +0808.3968 +0808.3973 +0808.3987 +0808.3992 +0808.3998 +0808.4003 Statistical Mechanics +0808.4006 +0808.4007 Materials Science +0808.4008 Optics +0808.4037 Superconductivity +0808.4040 +0808.4044 +0808.4047 +0808.4053 +0808.4054 Soft Condensed Matter +0808.4061 Atomic Physics +0808.4064 +0808.4072 Chemical Physics +0808.4073 Strongly Correlated Electrons +0808.4074 Statistical Mechanics +0808.4078 Plasma Physics +0808.4086 +0808.4089 +0808.4090 Mesoscale and Nanoscale Physics +0808.4092 +0808.4095 +0808.4097 +0808.4098 +0808.4110 Chaotic Dynamics +0808.4112 Theory +0808.4113 +0808.4115 +0808.4116 +0808.4121 +0808.4125 Differential Geometry +0808.4126 +0808.4129 +0808.4130 +0808.4132 +0808.4136 +0808.4137 Statistical Mechanics +0808.4141 +0808.4143 Atomic Physics +0808.4153 +0808.4154 +0808.4158 Statistical Mechanics +0808.4159 +0809.0012 +0809.0014 Superconductivity +0809.0030 +0809.0045 Soft Condensed Matter +0809.0053 +0809.0061 +0809.0065 Materials Science +0809.0072 +0809.0079 Statistical Mechanics +0809.0081 Materials Science +0809.0094 Phenomenology +0809.0096 Strongly Correlated Electrons +0809.0107 Strongly Correlated Electrons +0809.0113 Optics +0809.0115 +0809.0129 Statistical Mechanics +0809.0133 Exactly Solvable and Integrable Systems +0809.0163 Soft Condensed Matter +0809.0167 Optics +0809.0173 Mesoscale and Nanoscale Physics +0809.0181 Chemical Physics +0809.0187 +0809.0189 +0809.0190 +0809.0192 Mesoscale and Nanoscale Physics +0809.0196 Chaotic Dynamics +0809.0202 Phenomenology +0809.0206 +0809.0212 Phenomenology +0809.0213 Optics +0809.0217 Mesoscale and Nanoscale Physics +0809.0236 +0809.0237 +0809.0238 +0809.0240 Optics +0809.0251 Chaotic Dynamics +0809.0252 Pattern Formation and Solitons +0809.0253 +0809.0254 +0809.0255 +0809.0260 +0809.0268 +0809.0269 +0809.0280 Materials Science +0809.0282 Theory +0809.0288 +0809.0292 +0809.0293 +0809.0307 +0809.0308 +0809.0310 +0809.0313 +0809.0314 +0809.0315 +0809.0316 +0809.0317 +0809.0321 +0809.0324 Biological Physics +0809.0327 +0809.0333 +0809.0334 +0809.0338 +0809.0350 Other Condensed Matter +0809.0354 +0809.0358 Chaotic Dynamics +0809.0366 Soft Condensed Matter +0809.0367 Mesoscale and Nanoscale Physics +0809.0368 Soft Condensed Matter +0809.0374 Superconductivity +0809.0392 +0809.0396 +0809.0403 +0809.0405 +0809.0413 Statistical Mechanics +0809.0414 +0809.0419 +0809.0424 +0809.0426 Data Analysis, Statistics and Probability +0809.0427 +0809.0438 Materials Science +0809.0449 Statistical Mechanics +0809.0466 Algebraic Topology +0809.0475 Superconductivity +0809.0478 Optics +0809.0479 +0809.0497 +0809.0501 Optics +0809.0503 +0809.0506 +0809.0511 +0809.0514 Physics and Society +0809.0518 +0809.0521 +0809.0526 +0809.0541 Superconductivity +0809.0547 +0809.0553 +0809.0561 +0809.0572 +0809.0583 Superconductivity +0809.0586 Other Condensed Matter +0809.0592 Fluid Dynamics +0809.0594 +0809.0595 +0809.0597 Statistical Mechanics +0809.0615 +0809.0619 Strongly Correlated Electrons +0809.0628 Mesoscale and Nanoscale Physics +0809.0630 Materials Science +0809.0634 +0809.0666 Strongly Correlated Electrons +0809.0674 Instrumentation and Detectors +0809.0681 Functional Analysis +0809.0696 +0809.0697 +0809.0716 +0809.0717 +0809.0732 Strongly Correlated Electrons +0809.0735 Superconductivity +0809.0750 +0809.0762 Strongly Correlated Electrons +0809.0768 Other Condensed Matter +0809.0769 Materials Science +0809.0770 Strongly Correlated Electrons +0809.0776 Soft Condensed Matter +0809.0780 +0809.0791 +0809.0793 Phenomenology +0809.0795 Superconductivity +0809.0796 Chaotic Dynamics +0809.0801 Strongly Correlated Electrons +0809.0807 Mesoscale and Nanoscale Physics +0809.0810 Mesoscale and Nanoscale Physics +0809.0831 Soft Condensed Matter +0809.0832 +0809.0836 +0809.0852 +0809.0857 History and Philosophy of Physics +0809.0859 +0809.0862 +0809.0863 +0809.0864 +0809.0869 Fluid Dynamics +0809.0873 Biological Physics +0809.0876 +0809.0878 Fluid Dynamics +0809.0881 +0809.0887 +0809.0890 +0809.0891 +0809.0893 +0809.0894 +0809.0897 +0809.0903 +0809.0919 +0809.0924 Superconductivity +0809.0931 Mesoscale and Nanoscale Physics +0809.0950 Strongly Correlated Electrons +0809.0952 Other Condensed Matter +0809.0955 Strongly Correlated Electrons +0809.0966 +0809.0969 Mesoscale and Nanoscale Physics +0809.0972 +0809.0976 Materials Science +0809.0983 Mesoscale and Nanoscale Physics +0809.0984 +0809.0990 +0809.0992 +0809.0996 +0809.0999 Mesoscale and Nanoscale Physics +0809.1001 +0809.1009 Atomic Physics +0809.1012 Materials Science +0809.1021 +0809.1025 Pattern Formation and Solitons +0809.1026 +0809.1029 +0809.1031 Materials Science +0809.1037 +0809.1044 Statistical Mechanics +0809.1049 +0809.1051 Strongly Correlated Electrons +0809.1057 +0809.1067 Biological Physics +0809.1070 Materials Science +0809.1080 Superconductivity +0809.1087 +0809.1105 +0809.1108 +0809.1118 Statistical Mechanics +0809.1124 +0809.1126 +0809.1155 +0809.1165 Fluid Dynamics +0809.1167 Strongly Correlated Electrons +0809.1178 Strongly Correlated Electrons +0809.1184 Statistical Mechanics +0809.1189 +0809.1191 +0809.1211 Atomic Physics +0809.1217 +0809.1234 Materials Science +0809.1237 Statistical Mechanics +0809.1239 Superconductivity +0809.1240 Materials Science +0809.1248 Strongly Correlated Electrons +0809.1253 Materials Science +0809.1259 +0809.1263 Strongly Correlated Electrons +0809.1267 +0809.1268 +0809.1274 Superconductivity +0809.1280 +0809.1287 Soft Condensed Matter +0809.1292 +0809.1306 Strongly Correlated Electrons +0809.1313 Statistical Mechanics +0809.1320 +0809.1321 +0809.1326 +0809.1331 Superconductivity +0809.1340 Theory +0809.1357 Strongly Correlated Electrons +0809.1358 Strongly Correlated Electrons +0809.1377 +0809.1389 +0809.1390 Phenomenology +0809.1402 +0809.1410 Superconductivity +0809.1415 Mesoscale and Nanoscale Physics +0809.1424 +0809.1427 +0809.1428 +0809.1432 +0809.1435 +0809.1436 +0809.1438 +0809.1439 +0809.1447 +0809.1455 Superconductivity +0809.1470 Mesoscale and Nanoscale Physics +0809.1472 Soft Condensed Matter +0809.1475 Strongly Correlated Electrons +0809.1481 Strongly Correlated Electrons +0809.1491 Other Condensed Matter +0809.1492 Superconductivity +0809.1500 +0809.1502 Materials Science +0809.1509 +0809.1510 +0809.1511 +0809.1513 +0809.1514 Mesoscale and Nanoscale Physics +0809.1515 Statistical Mechanics +0809.1517 Statistical Mechanics +0809.1530 +0809.1532 +0809.1534 General Finance +0809.1544 Chemical Physics +0809.1548 Materials Science +0809.1550 +0809.1559 +0809.1566 Superconductivity +0809.1569 Data Analysis, Statistics and Probability +0809.1571 +0809.1574 +0809.1576 Mesoscale and Nanoscale Physics +0809.1585 +0809.1587 +0809.1591 +0809.1597 Superconductivity +0809.1598 Exactly Solvable and Integrable Systems +0809.1614 Dynamical Systems +0809.1628 Statistical Mechanics +0809.1645 +0809.1652 +0809.1664 +0809.1668 +0809.1670 Mesoscale and Nanoscale Physics +0809.1673 +0809.1676 +0809.1678 +0809.1682 +0809.1713 +0809.1725 +0809.1727 Disordered Systems and Neural Networks +0809.1732 +0809.1741 +0809.1750 +0809.1753 +0809.1762 +0809.1765 Mesoscale and Nanoscale Physics +0809.1766 +0809.1772 +0809.1775 Soft Condensed Matter +0809.1779 Materials Science +0809.1780 Phenomenology +0809.1782 +0809.1785 +0809.1793 +0809.1796 +0809.1797 Biological Physics +0809.1804 Biological Physics +0809.1825 +0809.1831 +0809.1835 Materials Science +0809.1838 Mesoscale and Nanoscale Physics +0809.1841 +0809.1855 +0809.1857 +0809.1861 Superconductivity +0809.1863 Phenomenology +0809.1865 +0809.1867 +0809.1870 +0809.1875 +0809.1881 +0809.1887 Strongly Correlated Electrons +0809.1892 Strongly Correlated Electrons +0809.1905 Superconductivity +0809.1907 +0809.1912 +0809.1914 Superconductivity +0809.1926 Biological Physics +0809.1928 +0809.1939 +0809.1942 +0809.1955 +0809.1959 +0809.1964 Pattern Formation and Solitons +0809.1967 +0809.1974 Statistical Mechanics +0809.1988 +0809.1993 +0809.1999 Atomic Physics +0809.2003 Strongly Correlated Electrons +0809.2005 Materials Science +0809.2008 Materials Science +0809.2015 Statistical Mechanics +0809.2018 Differential Geometry +0809.2027 +0809.2036 +0809.2037 +0809.2039 +0809.2040 +0809.2046 Superconductivity +0809.2051 +0809.2054 Superconductivity +0809.2064 Phenomenology +0809.2066 +0809.2073 +0809.2092 +0809.2100 Strongly Correlated Electrons +0809.2103 Materials Science +0809.2108 Materials Science +0809.2109 Superconductivity +0809.2115 Pattern Formation and Solitons +0809.2117 Adaptation and Self-Organizing Systems +0809.2122 Mesoscale and Nanoscale Physics +0809.2132 +0809.2133 +0809.2140 +0809.2142 Lattice +0809.2146 +0809.2157 +0809.2159 +0809.2164 Soft Condensed Matter +0809.2170 +0809.2177 Plasma Physics +0809.2190 Other Condensed Matter +0809.2193 +0809.2198 +0809.2199 Superconductivity +0809.2201 Mesoscale and Nanoscale Physics +0809.2219 Statistical Mechanics +0809.2221 Statistical Mechanics +0809.2225 Materials Science +0809.2227 +0809.2234 Statistical Mechanics +0809.2235 Mesoscale and Nanoscale Physics +0809.2250 Materials Science +0809.2277 +0809.2283 +0809.2287 +0809.2292 Chemical Physics +0809.2297 Superconductivity +0809.2301 Adaptation and Self-Organizing Systems +0809.2314 Statistical Mechanics +0809.2317 Optics +0809.2329 Strongly Correlated Electrons +0809.2337 +0809.2339 Optics +0809.2344 Statistical Mechanics +0809.2348 Classical Physics +0809.2354 Other Condensed Matter +0809.2358 Materials Science +0809.2362 +0809.2364 +0809.2370 +0809.2377 Materials Science +0809.2379 Classical Physics +0809.2382 Plasma Physics +0809.2383 Strongly Correlated Electrons +0809.2388 Optics +0809.2403 +0809.2411 +0809.2417 +0809.2418 +0809.2423 +0809.2431 Atomic Physics +0809.2438 +0809.2456 Materials Science +0809.2460 Plasma Physics +0809.2461 Physics and Society +0809.2465 +0809.2466 Chemical Physics +0809.2467 +0809.2478 +0809.2484 +0809.2486 +0809.2487 +0809.2491 +0809.2492 +0809.2497 Atmospheric and Oceanic Physics +0809.2498 Other Condensed Matter +0809.2505 +0809.2508 Information Theory +0809.2513 +0809.2518 +0809.2520 +0809.2522 Strongly Correlated Electrons +0809.2524 Lattice +0809.2529 Materials Science +0809.2534 +0809.2538 Fluid Dynamics +0809.2543 Mesoscale and Nanoscale Physics +0809.2556 +0809.2557 +0809.2559 +0809.2561 Lattice +0809.2566 Atomic and Molecular Clusters +0809.2577 Chemical Physics +0809.2578 Mesoscale and Nanoscale Physics +0809.2580 +0809.2583 +0809.2591 +0809.2592 +0809.2599 +0809.2602 +0809.2603 +0809.2608 +0809.2609 +0809.2613 +0809.2617 Strongly Correlated Electrons +0809.2624 +0809.2631 Physics and Society +0809.2632 +0809.2635 Disordered Systems and Neural Networks +0809.2637 +0809.2640 Materials Science +0809.2657 +0809.2665 +0809.2675 Other Condensed Matter +0809.2677 +0809.2681 Chaotic Dynamics +0809.2693 +0809.2695 +0809.2702 +0809.2704 Phenomenology +0809.2706 Mesoscale and Nanoscale Physics +0809.2712 Materials Science +0809.2716 Quantum Algebra +0809.2718 Mesoscale and Nanoscale Physics +0809.2721 +0809.2724 +0809.2726 +0809.2727 Mesoscale and Nanoscale Physics +0809.2728 +0809.2732 Strongly Correlated Electrons +0809.2746 +0809.2756 +0809.2762 +0809.2764 +0809.2767 +0809.2771 Mesoscale and Nanoscale Physics +0809.2780 +0809.2783 +0809.2785 +0809.2795 +0809.2796 +0809.2800 +0809.2802 Statistical Mechanics +0809.2803 +0809.2805 +0809.2812 +0809.2817 Superconductivity +0809.2821 Strongly Correlated Electrons +0809.2824 +0809.2831 Statistical Mechanics +0809.2838 Optics +0809.2844 Statistical Mechanics +0809.2845 Statistical Mechanics +0809.2857 Statistical Mechanics +0809.2871 Biomolecules +0809.2876 +0809.2883 +0809.2892 Phenomenology +0809.2898 Superconductivity +0809.2899 +0809.2903 +0809.2906 Mesoscale and Nanoscale Physics +0809.2908 Materials Science +0809.2921 Strongly Correlated Electrons +0809.2928 +0809.2934 +0809.2939 +0809.2946 Mesoscale and Nanoscale Physics +0809.2948 +0809.2951 Materials Science +0809.2952 Space Physics +0809.2954 +0809.2962 Atomic Physics +0809.2969 Statistical Mechanics +0809.2984 Strongly Correlated Electrons +0809.2986 Biological Physics +0809.2991 +0809.3001 +0809.3005 +0809.3012 +0809.3017 +0809.3019 +0809.3020 +0809.3026 Mesoscale and Nanoscale Physics +0809.3042 Biological Physics +0809.3045 +0809.3053 +0809.3055 Strongly Correlated Electrons +0809.3056 +0809.3058 Atomic and Molecular Clusters +0809.3062 Chaotic Dynamics +0809.3073 +0809.3082 +0809.3085 Phenomenology +0809.3094 General Physics +0809.3096 Atomic and Molecular Clusters +0809.3100 +0809.3103 Mesoscale and Nanoscale Physics +0809.3125 +0809.3134 +0809.3139 +0809.3142 +0809.3145 Soft Condensed Matter +0809.3146 Statistical Mechanics +0809.3153 General Physics +0809.3189 Strongly Correlated Electrons +0809.3193 Other Condensed Matter +0809.3205 +0809.3208 +0809.3209 Mesoscale and Nanoscale Physics +0809.3210 Phenomenology +0809.3213 +0809.3228 +0809.3235 Strongly Correlated Electrons +0809.3239 Other Condensed Matter +0809.3241 +0809.3244 +0809.3247 +0809.3253 Strongly Correlated Electrons +0809.3255 +0809.3256 +0809.3265 +0809.3266 Strongly Correlated Electrons +0809.3272 Superconductivity +0809.3289 +0809.3290 +0809.3292 Materials Science +0809.3302 +0809.3313 +0809.3329 Disordered Systems and Neural Networks +0809.3336 +0809.3347 Plasma Physics +0809.3356 Classical Physics +0809.3361 Statistical Mechanics +0809.3368 +0809.3371 Neurons and Cognition +0809.3383 +0809.3393 Superconductivity +0809.3396 Superconductivity +0809.3397 +0809.3399 +0809.3407 Optics +0809.3409 Optics +0809.3411 +0809.3412 +0809.3418 General Finance +0809.3434 Spectral Theory +0809.3439 Instrumentation and Detectors +0809.3445 Statistical Mechanics +0809.3449 +0809.3473 +0809.3492 Mesoscale and Nanoscale Physics +0809.3500 Superconductivity +0809.3517 +0809.3519 Strongly Correlated Electrons +0809.3524 Strongly Correlated Electrons +0809.3525 Statistical Mechanics +0809.3551 Phenomenology +0809.3562 +0809.3567 Materials Science +0809.3569 Strongly Correlated Electrons +0809.3576 +0809.3580 Theory +0809.3582 Superconductivity +0809.3599 +0809.3603 +0809.3604 Pattern Formation and Solitons +0809.3617 Materials Science +0809.3620 +0809.3628 +0809.3636 Statistical Mechanics +0809.3640 Materials Science +0809.3642 +0809.3657 +0809.3658 Superconductivity +0809.3664 +0809.3668 +0809.3681 Physics and Society +0809.3685 +0809.3686 +0809.3693 Phenomenology +0809.3700 Adaptation and Self-Organizing Systems +0809.3706 +0809.3716 Phenomenology +0809.3732 Materials Science +0809.3736 Chemical Physics +0809.3737 +0809.3739 Materials Science +0809.3745 +0809.3751 Statistical Mechanics +0809.3752 +0809.3755 +0809.3759 +0809.3763 Optics +0809.3766 +0809.3773 Theory +0809.3774 Disordered Systems and Neural Networks +0809.3785 +0809.3787 +0809.3795 +0809.3796 Mesoscale and Nanoscale Physics +0809.3798 Biological Physics +0809.3799 Mesoscale and Nanoscale Physics +0809.3807 +0809.3833 Exactly Solvable and Integrable Systems +0809.3836 Mesoscale and Nanoscale Physics +0809.3843 Materials Science +0809.3849 +0809.3856 +0809.3858 +0809.3859 Mesoscale and Nanoscale Physics +0809.3862 +0809.3866 Phenomenology +0809.3871 +0809.3879 Lattice +0809.3885 +0809.3898 Adaptation and Self-Organizing Systems +0809.3916 +0809.3934 Plasma Physics +0809.3938 Biomolecules +0809.3939 +0809.3946 +0809.3947 +0809.3949 +0809.3954 Soft Condensed Matter +0809.3965 +0809.3968 +0809.3969 +0809.3974 Superconductivity +0809.3977 +0809.3982 +0809.3987 +0809.3995 Soft Condensed Matter +0809.4002 +0809.4007 +0809.4020 Statistical Mechanics +0809.4021 +0809.4023 Statistical Mechanics +0809.4029 +0809.4031 +0809.4035 Strongly Correlated Electrons +0809.4048 Chaotic Dynamics +0809.4051 Disordered Systems and Neural Networks +0809.4056 Mesoscale and Nanoscale Physics +0809.4063 +0809.4064 Statistical Mechanics +0809.4068 Strongly Correlated Electrons +0809.4087 Disordered Systems and Neural Networks +0809.4092 Atomic Physics +0809.4094 Mesoscale and Nanoscale Physics +0809.4114 Statistical Mechanics +0809.4117 +0809.4122 +0809.4129 +0809.4137 +0809.4140 Strongly Correlated Electrons +0809.4151 +0809.4152 +0809.4162 Mesoscale and Nanoscale Physics +0809.4167 +0809.4172 +0809.4177 +0809.4179 +0809.4180 +0809.4190 +0809.4198 Phenomenology +0809.4200 Soft Condensed Matter +0809.4206 Optics +0809.4207 +0809.4215 Mesoscale and Nanoscale Physics +0809.4217 Phenomenology +0809.4222 +0809.4224 +0809.4225 +0809.4227 +0809.4242 +0809.4245 Materials Science +0809.4252 +0809.4262 +0809.4263 +0809.4265 +0809.4268 +0809.4270 +0809.4271 Optics +0809.4276 +0809.4279 +0809.4294 Other Condensed Matter +0809.4299 +0809.4300 +0809.4301 Soft Condensed Matter +0809.4321 Mesoscale and Nanoscale Physics +0809.4329 +0809.4331 +0809.4334 +0809.4338 +0809.4356 Other Condensed Matter +0809.4361 +0809.4369 +0809.4379 Statistical Mechanics +0809.4385 +0809.4388 +0809.4391 +0809.4404 Materials Science +0809.4407 +0809.4415 +0809.4418 Physics and Society +0809.4421 +0809.4434 +0809.4444 +0809.4451 Mesoscale and Nanoscale Physics +0809.4452 Statistical Mechanics +0809.4458 +0809.4467 Strongly Correlated Electrons +0809.4470 +0809.4474 Other Condensed Matter +0809.4478 Theory +0809.4482 +0809.4489 +0809.4491 +0809.4493 +0809.4497 +0809.4510 Statistical Mechanics +0809.4531 Pattern Formation and Solitons +0809.4532 Mesoscale and Nanoscale Physics +0809.4534 Strongly Correlated Electrons +0809.4541 Theory +0809.4543 Statistical Mechanics +0809.4545 +0809.4546 +0809.4552 +0809.4565 +0809.4569 Statistical Mechanics +0809.4574 +0809.4586 Plasma Physics +0809.4588 +0809.4594 Theory +0809.4595 Materials Science +0809.4605 +0809.4607 +0809.4611 +0809.4619 +0809.4626 +0809.4636 +0809.4637 +0809.4645 +0809.4649 Instrumentation and Detectors +0809.4660 Disordered Systems and Neural Networks +0809.4665 Atomic and Molecular Clusters +0809.4671 Disordered Systems and Neural Networks +0809.4672 +0809.4688 +0809.4709 Atomic Physics +0809.4715 Strongly Correlated Electrons +0809.4718 +0809.4719 Phenomenology +0809.4720 Atomic Physics +0809.4721 +0809.4724 +0809.4730 Computational Physics +0809.4736 +0809.4740 +0809.4746 Statistical Mechanics +0809.4749 +0809.4751 Strongly Correlated Electrons +0809.4754 +0809.4760 Strongly Correlated Electrons +0809.4764 Statistical Mechanics +0809.4768 Phenomenology +0809.4789 +0809.4799 Statistical Mechanics +0809.4800 Operator Algebras +0809.4806 Statistical Mechanics +0809.4816 Superconductivity +0809.4820 +0809.4825 Strongly Correlated Electrons +0809.4848 +0809.4851 Statistical Mechanics +0809.4853 Phenomenology +0809.4857 +0809.4870 Theory +0809.4871 +0809.4876 Biological Physics +0809.4884 +0809.4894 +0809.4909 +0809.4911 Mesoscale and Nanoscale Physics +0809.4913 Mesoscale and Nanoscale Physics +0809.4918 Soft Condensed Matter +0809.4919 Other Condensed Matter +0809.4922 +0809.4923 Superconductivity +0809.4932 Superconductivity +0809.4953 +0809.4962 +0809.4971 +0809.4973 Materials Science +0809.4978 Materials Science +0809.4980 Superconductivity +0809.4988 +0809.4991 Atomic Physics +0809.4994 Physics and Society +0809.4997 Accelerator Physics +0809.4999 +0809.5020 +0809.5026 +0809.5037 Strongly Correlated Electrons +0809.5039 +0809.5041 +0809.5042 +0809.5047 Mesoscale and Nanoscale Physics +0809.5048 +0809.5051 +0809.5053 Phenomenology +0809.5059 +0809.5067 +0809.5069 Strongly Correlated Electrons +0809.5090 +0809.5092 Phenomenology +0809.5108 Strongly Correlated Electrons +0809.5111 Atomic Physics +0809.5116 +0809.5117 Strongly Correlated Electrons +0809.5121 Lattice +0809.5131 +0809.5132 +0809.5138 +0809.5151 +0809.5163 Experiment +0809.5168 Materials Science +0809.5171 +0809.5174 +0809.5178 +0809.5179 Theory +0809.5198 Pattern Formation and Solitons +0809.5199 +0809.5206 +0809.5213 Fluid Dynamics +0809.5220 +0809.5226 Theory +0809.5229 +0809.5233 +0809.5241 Strongly Correlated Electrons +0809.5242 Optics +0809.5243 Soft Condensed Matter +0809.5245 Phenomenology +0809.5248 +0809.5252 Soft Condensed Matter +0809.5253 +0809.5260 +0809.5276 +0809.5278 +0809.5280 +0809.5283 +0810.0001 Strongly Correlated Electrons +0810.0008 +0810.0010 +0810.0011 +0810.0014 +0810.0015 Soft Condensed Matter +0810.0016 +0810.0024 +0810.0035 +0810.0044 Optics +0810.0049 Materials Science +0810.0050 Strongly Correlated Electrons +0810.0056 Superconductivity +0810.0058 Exactly Solvable and Integrable Systems +0810.0061 +0810.0070 +0810.0094 +0810.0106 Theory +0810.0107 Materials Science +0810.0110 Strongly Correlated Electrons +0810.0116 +0810.0119 +0810.0120 Materials Science +0810.0128 Mesoscale and Nanoscale Physics +0810.0134 +0810.0140 Strongly Correlated Electrons +0810.0145 +0810.0146 Mesoscale and Nanoscale Physics +0810.0150 +0810.0157 +0810.0170 +0810.0182 +0810.0192 +0810.0193 Statistical Mechanics +0810.0201 +0810.0203 +0810.0205 +0810.0210 Other Condensed Matter +0810.0231 +0810.0235 +0810.0236 Materials Science +0810.0237 +0810.0247 Statistical Mechanics +0810.0267 +0810.0270 +0810.0271 +0810.0272 +0810.0275 +0810.0284 +0810.0286 +0810.0287 Superconductivity +0810.0288 +0810.0294 +0810.0299 +0810.0301 +0810.0302 +0810.0307 Other Condensed Matter +0810.0319 +0810.0321 +0810.0341 +0810.0343 Strongly Correlated Electrons +0810.0356 +0810.0357 +0810.0361 Materials Science +0810.0362 Plasma Physics +0810.0366 Phenomenology +0810.0373 Optics +0810.0376 Materials Science +0810.0378 +0810.0379 Soft Condensed Matter +0810.0387 +0810.0401 +0810.0412 Mesoscale and Nanoscale Physics +0810.0419 Mesoscale and Nanoscale Physics +0810.0424 +0810.0432 +0810.0452 Phenomenology +0810.0455 Atmospheric and Oceanic Physics +0810.0460 +0810.0466 +0810.0468 +0810.0471 +0810.0472 +0810.0473 +0810.0474 +0810.0489 +0810.0504 +0810.0512 Statistical Mechanics +0810.0513 +0810.0515 +0810.0517 +0810.0530 +0810.0539 Statistical Mechanics +0810.0544 +0810.0545 +0810.0549 +0810.0557 Computational Physics +0810.0560 +0810.0569 +0810.0570 +0810.0582 +0810.0589 Dynamical Systems +0810.0598 Phenomenology +0810.0602 +0810.0603 +0810.0609 Phenomenology +0810.0610 Mesoscale and Nanoscale Physics +0810.0612 +0810.0618 +0810.0625 +0810.0629 Materials Science +0810.0645 Theory +0810.0664 +0810.0667 Strongly Correlated Electrons +0810.0668 +0810.0682 +0810.0686 Other Condensed Matter +0810.0700 Phenomenology +0810.0708 +0810.0710 +0810.0711 +0810.0724 Spectral Theory +0810.0739 Statistical Mechanics +0810.0757 Exactly Solvable and Integrable Systems +0810.0759 +0810.0762 +0810.0775 Phenomenology +0810.0786 +0810.0793 Physics and Society +0810.0798 Strongly Correlated Electrons +0810.0799 +0810.0801 Combinatorics +0810.0816 Theory +0810.0824 +0810.0826 +0810.0827 +0810.0832 +0810.0834 Materials Science +0810.0838 Materials Science +0810.0843 +0810.0847 +0810.0848 Superconductivity +0810.0853 Representation Theory +0810.0859 Other Condensed Matter +0810.0865 +0810.0867 +0810.0869 +0810.0875 +0810.0886 Materials Science +0810.0890 Data Analysis, Statistics and Probability +0810.0893 Statistical Mechanics +0810.0910 Statistical Mechanics +0810.0918 +0810.0919 +0810.0920 Data Analysis, Statistics and Probability +0810.0929 Superconductivity +0810.0948 Statistical Mechanics +0810.0950 Soft Condensed Matter +0810.0965 +0810.0968 +0810.0980 +0810.0983 +0810.0988 +0810.0991 Disordered Systems and Neural Networks +0810.1001 Optics +0810.1003 +0810.1006 +0810.1008 Materials Science +0810.1016 Phenomenology +0810.1035 +0810.1040 +0810.1045 +0810.1048 Superconductivity +0810.1050 +0810.1054 +0810.1057 +0810.1080 +0810.1092 +0810.1094 Statistical Mechanics +0810.1112 Phenomenology +0810.1116 +0810.1134 Phenomenology +0810.1136 Soft Condensed Matter +0810.1141 +0810.1149 +0810.1153 Superconductivity +0810.1169 +0810.1175 +0810.1189 Statistical Mechanics +0810.1190 +0810.1191 Physics and Society +0810.1202 +0810.1205 Mesoscale and Nanoscale Physics +0810.1208 +0810.1210 +0810.1213 +0810.1215 Statistical Finance +0810.1218 Optics +0810.1223 Biological Physics +0810.1224 +0810.1254 Mesoscale and Nanoscale Physics +0810.1269 Materials Science +0810.1271 +0810.1281 Superconductivity +0810.1288 +0810.1293 +0810.1300 Exactly Solvable and Integrable Systems +0810.1306 Other Condensed Matter +0810.1324 Plasma Physics +0810.1333 +0810.1334 Superconductivity +0810.1340 Mesoscale and Nanoscale Physics +0810.1341 +0810.1343 +0810.1349 Soft Condensed Matter +0810.1351 +0810.1359 Materials Science +0810.1370 Statistical Mechanics +0810.1378 Computational Physics +0810.1384 Statistical Mechanics +0810.1385 +0810.1392 Statistical Mechanics +0810.1394 +0810.1399 +0810.1409 +0810.1410 Strongly Correlated Electrons +0810.1411 Disordered Systems and Neural Networks +0810.1429 +0810.1432 Biological Physics +0810.1443 +0810.1445 Superconductivity +0810.1447 Superconductivity +0810.1448 Statistical Mechanics +0810.1451 Mesoscale and Nanoscale Physics +0810.1454 Mesoscale and Nanoscale Physics +0810.1455 Other Condensed Matter +0810.1471 +0810.1472 +0810.1476 Superconductivity +0810.1480 +0810.1489 +0810.1491 +0810.1498 Strongly Correlated Electrons +0810.1505 +0810.1511 +0810.1512 +0810.1514 +0810.1515 Phenomenology +0810.1525 +0810.1535 +0810.1537 Statistical Mechanics +0810.1538 Materials Science +0810.1541 +0810.1558 Superconductivity +0810.1560 +0810.1576 Physics and Society +0810.1584 Optics +0810.1588 Other Condensed Matter +0810.1589 +0810.1590 +0810.1593 Other Condensed Matter +0810.1596 Strongly Correlated Electrons +0810.1612 +0810.1620 Pattern Formation and Solitons +0810.1627 Pattern Formation and Solitons +0810.1634 Optics +0810.1636 +0810.1641 Strongly Correlated Electrons +0810.1645 Materials Science +0810.1656 +0810.1658 +0810.1663 Atomic Physics +0810.1664 Statistical Mechanics +0810.1665 Other Condensed Matter +0810.1668 +0810.1672 Strongly Correlated Electrons +0810.1676 +0810.1685 +0810.1687 +0810.1689 Medical Physics +0810.1690 Optics +0810.1692 Materials Science +0810.1695 Materials Science +0810.1699 Statistical Mechanics +0810.1709 +0810.1710 +0810.1720 +0810.1722 +0810.1723 +0810.1730 Superconductivity +0810.1734 +0810.1741 +0810.1742 Statistical Mechanics +0810.1748 +0810.1760 +0810.1761 +0810.1765 Populations and Evolution +0810.1766 Exactly Solvable and Integrable Systems +0810.1769 +0810.1773 Information Theory +0810.1780 +0810.1782 Phenomenology +0810.1783 Soft Condensed Matter +0810.1805 +0810.1816 Statistical Mechanics +0810.1818 Superconductivity +0810.1820 Superconductivity +0810.1827 Statistical Mechanics +0810.1828 Superconductivity +0810.1835 +0810.1836 +0810.1839 +0810.1844 +0810.1847 +0810.1850 Materials Science +0810.1857 Statistical Mechanics +0810.1866 Soft Condensed Matter +0810.1868 Materials Science +0810.1878 +0810.1882 Statistical Mechanics +0810.1890 Superconductivity +0810.1897 +0810.1900 +0810.1905 +0810.1913 +0810.1916 +0810.1918 +0810.1919 +0810.1930 +0810.1932 +0810.1934 +0810.1950 +0810.1953 +0810.1956 Mesoscale and Nanoscale Physics +0810.1972 +0810.1983 +0810.1986 Exactly Solvable and Integrable Systems +0810.1992 Atomic and Molecular Clusters +0810.1996 Disordered Systems and Neural Networks +0810.2005 General Physics +0810.2007 +0810.2013 +0810.2023 +0810.2028 Other Condensed Matter +0810.2029 +0810.2036 +0810.2040 Superconductivity +0810.2044 Plasma Physics +0810.2045 +0810.2055 Other Condensed Matter +0810.2057 Materials Science +0810.2073 Mesoscale and Nanoscale Physics +0810.2083 Mesoscale and Nanoscale Physics +0810.2084 +0810.2085 Statistical Mechanics +0810.2089 Lattice +0810.2090 +0810.2092 +0810.2100 +0810.2111 +0810.2116 +0810.2118 Biomolecules +0810.2119 +0810.2140 +0810.2147 Materials Science +0810.2151 +0810.2169 Mesoscale and Nanoscale Physics +0810.2172 +0810.2176 Superconductivity +0810.2190 +0810.2195 Algebraic Geometry +0810.2200 Algebraic Geometry +0810.2205 Dynamical Systems +0810.2206 +0810.2215 Phenomenology +0810.2216 Other Condensed Matter +0810.2219 +0810.2223 +0810.2228 +0810.2237 +0810.2241 Instrumentation and Detectors +0810.2242 +0810.2243 +0810.2245 +0810.2248 +0810.2265 +0810.2266 Theory +0810.2272 +0810.2274 Mesoscale and Nanoscale Physics +0810.2287 +0810.2290 Strongly Correlated Electrons +0810.2296 +0810.2300 +0810.2304 +0810.2308 +0810.2321 Superconductivity +0810.2337 +0810.2338 +0810.2339 Mesoscale and Nanoscale Physics +0810.2342 Superconductivity +0810.2343 +0810.2345 Mesoscale and Nanoscale Physics +0810.2347 Other Condensed Matter +0810.2350 +0810.2355 +0810.2366 Mesoscale and Nanoscale Physics +0810.2367 Other Condensed Matter +0810.2372 Superconductivity +0810.2373 Atomic and Molecular Clusters +0810.2375 +0810.2387 +0810.2391 +0810.2400 Strongly Correlated Electrons +0810.2407 +0810.2410 Strongly Correlated Electrons +0810.2411 Soft Condensed Matter +0810.2413 Materials Science +0810.2415 Materials Science +0810.2420 +0810.2421 Soft Condensed Matter +0810.2424 +0810.2426 Atomic Physics +0810.2437 +0810.2447 +0810.2453 Superconductivity +0810.2455 Superconductivity +0810.2460 Plasma Physics +0810.2473 Biomolecules +0810.2474 Superconductivity +0810.2478 +0810.2494 +0810.2499 +0810.2504 Materials Science +0810.2512 +0810.2515 +0810.2518 +0810.2522 +0810.2527 Pattern Formation and Solitons +0810.2533 +0810.2536 Strongly Correlated Electrons +0810.2537 +0810.2539 Strongly Correlated Electrons +0810.2547 +0810.2548 +0810.2551 +0810.2557 +0810.2558 +0810.2562 Mesoscale and Nanoscale Physics +0810.2566 +0810.2575 +0810.2583 Strongly Correlated Electrons +0810.2586 Classical Analysis and ODEs +0810.2588 +0810.2600 +0810.2605 Superconductivity +0810.2630 Chemical Physics +0810.2635 +0810.2640 +0810.2649 Lattice +0810.2654 Chemical Physics +0810.2661 +0810.2671 Optics +0810.2672 Statistical Mechanics +0810.2674 +0810.2683 +0810.2684 +0810.2690 +0810.2693 +0810.2698 +0810.2699 Materials Science +0810.2700 +0810.2701 Materials Science +0810.2708 +0810.2713 Phenomenology +0810.2714 +0810.2716 Statistical Mechanics +0810.2718 Phenomenology +0810.2719 Statistical Mechanics +0810.2723 +0810.2724 +0810.2729 +0810.2735 Superconductivity +0810.2747 +0810.2748 Optics +0810.2755 +0810.2756 Atomic Physics +0810.2759 Superconductivity +0810.2770 Materials Science +0810.2772 Superconductivity +0810.2782 +0810.2790 +0810.2791 +0810.2792 +0810.2794 +0810.2795 +0810.2798 Phenomenology +0810.2805 Phenomenology +0810.2825 +0810.2826 +0810.2835 Materials Science +0810.2844 +0810.2851 +0810.2854 +0810.2857 Mesoscale and Nanoscale Physics +0810.2868 Exactly Solvable and Integrable Systems +0810.2870 Classical Physics +0810.2885 +0810.2887 Phenomenology +0810.2893 +0810.2913 +0810.2915 Superconductivity +0810.2918 +0810.2923 +0810.2931 +0810.2936 +0810.2950 +0810.2954 Populations and Evolution +0810.2958 Strongly Correlated Electrons +0810.2961 +0810.2973 +0810.2974 Materials Science +0810.2977 Materials Science +0810.2981 +0810.2987 +0810.3000 Disordered Systems and Neural Networks +0810.3004 +0810.3006 +0810.3008 +0810.3025 +0810.3036 Atomic Physics +0810.3048 Materials Science +0810.3050 +0810.3065 Superconductivity +0810.3084 Strongly Correlated Electrons +0810.3085 Statistical Mechanics +0810.3092 Statistical Mechanics +0810.3100 Materials Science +0810.3109 +0810.3114 +0810.3120 Mesoscale and Nanoscale Physics +0810.3153 Disordered Systems and Neural Networks +0810.3158 +0810.3183 +0810.3192 +0810.3206 Mesoscale and Nanoscale Physics +0810.3207 Atomic Physics +0810.3236 +0810.3240 +0810.3245 +0810.3250 +0810.3251 Statistical Mechanics +0810.3263 Disordered Systems and Neural Networks +0810.3272 +0810.3289 +0810.3291 Phenomenology +0810.3292 Superconductivity +0810.3311 +0810.3321 +0810.3325 Phenomenology +0810.3342 Neurons and Cognition +0810.3377 Superconductivity +0810.3379 Other Condensed Matter +0810.3385 Materials Science +0810.3391 Phenomenology +0810.3405 +0810.3414 +0810.3420 +0810.3424 Fluid Dynamics +0810.3433 Other Condensed Matter +0810.3462 Chemical Physics +0810.3469 Strongly Correlated Electrons +0810.3471 +0810.3473 Optics +0810.3480 +0810.3491 +0810.3496 +0810.3498 Superconductivity +0810.3503 +0810.3505 +0810.3511 Statistical Mechanics +0810.3520 +0810.3523 +0810.3529 +0810.3549 Phenomenology +0810.3552 Statistical Mechanics +0810.3556 +0810.3584 +0810.3585 Strongly Correlated Electrons +0810.3592 Phenomenology +0810.3597 +0810.3615 Atomic Physics +0810.3616 Materials Science +0810.3621 Pattern Formation and Solitons +0810.3622 Phenomenology +0810.3636 Soft Condensed Matter +0810.3637 Disordered Systems and Neural Networks +0810.3648 +0810.3650 +0810.3655 +0810.3659 Mesoscale and Nanoscale Physics +0810.3660 +0810.3661 +0810.3672 Materials Science +0810.3674 +0810.3680 +0810.3685 +0810.3691 +0810.3693 Phenomenology +0810.3700 +0810.3704 Mesoscale and Nanoscale Physics +0810.3712 +0810.3717 Optics +0810.3718 Analysis of PDEs +0810.3725 +0810.3728 Materials Science +0810.3750 +0810.3764 +0810.3767 +0810.3777 +0810.3788 Statistical Mechanics +0810.3790 Soft Condensed Matter +0810.3795 Lattice +0810.3799 Pattern Formation and Solitons +0810.3801 Soft Condensed Matter +0810.3819 Strongly Correlated Electrons +0810.3846 +0810.3847 Strongly Correlated Electrons +0810.3848 +0810.3851 +0810.3852 +0810.3902 +0810.3912 +0810.3918 +0810.3928 +0810.3930 +0810.3936 +0810.3944 +0810.3950 +0810.3962 +0810.3980 Superconductivity +0810.4003 Analysis of PDEs +0810.4010 +0810.4037 Other Condensed Matter +0810.4042 +0810.4043 Materials Science +0810.4051 Atomic Physics +0810.4056 Materials Science +0810.4063 +0810.4069 +0810.4075 Phenomenology +0810.4082 Soft Condensed Matter +0810.4092 Phenomenology +0810.4094 Theory +0810.4097 +0810.4099 Quantitative Methods +0810.4100 +0810.4103 Soft Condensed Matter +0810.4104 Strongly Correlated Electrons +0810.4107 Statistical Mechanics +0810.4128 Statistical Mechanics +0810.4130 Analysis of PDEs +0810.4162 +0810.4167 +0810.4169 Optics +0810.4172 Soft Condensed Matter +0810.4184 +0810.4201 +0810.4202 Strongly Correlated Electrons +0810.4207 Statistical Mechanics +0810.4209 +0810.4212 Materials Science +0810.4213 +0810.4220 Quantum Algebra +0810.4231 +0810.4239 Soft Condensed Matter +0810.4243 +0810.4247 +0810.4258 +0810.4261 +0810.4266 Optics +0810.4269 Classical Physics +0810.4270 Soft Condensed Matter +0810.4275 Computational Physics +0810.4288 +0810.4297 +0810.4310 Quantum Algebra +0810.4334 +0810.4336 +0810.4341 Information Theory +0810.4342 Mesoscale and Nanoscale Physics +0810.4347 Statistical Mechanics +0810.4350 Theory +0810.4353 +0810.4359 +0810.4361 +0810.4371 +0810.4375 +0810.4382 +0810.4396 +0810.4400 Statistical Mechanics +0810.4407 Optics +0810.4411 Disordered Systems and Neural Networks +0810.4425 Mesoscale and Nanoscale Physics +0810.4428 +0810.4444 +0810.4455 Atomic Physics +0810.4458 +0810.4463 Strongly Correlated Electrons +0810.4472 Dynamical Systems +0810.4475 Mesoscale and Nanoscale Physics +0810.4479 Statistical Mechanics +0810.4481 Superconductivity +0810.4500 Statistical Mechanics +0810.4501 +0810.4503 +0810.4514 +0810.4520 +0810.4527 +0810.4559 Instrumentation and Detectors +0810.4568 Mesoscale and Nanoscale Physics +0810.4575 +0810.4577 +0810.4584 +0810.4594 Materials Science +0810.4595 +0810.4596 +0810.4604 Materials Science +0810.4605 Materials Science +0810.4610 +0810.4614 Other Condensed Matter +0810.4619 +0810.4621 +0810.4622 +0810.4624 +0810.4625 +0810.4626 +0810.4633 Other Condensed Matter +0810.4635 Computational Physics +0810.4636 Statistical Mechanics +0810.4638 Optics +0810.4640 Phenomenology +0810.4641 +0810.4662 +0810.4676 Exactly Solvable and Integrable Systems +0810.4685 Phenomenology +0810.4688 Soft Condensed Matter +0810.4708 +0810.4715 Fluid Dynamics +0810.4716 Analysis of PDEs +0810.4739 +0810.4745 Adaptation and Self-Organizing Systems +0810.4747 Optics +0810.4753 Materials Science +0810.4758 Representation Theory +0810.4759 Theory +0810.4760 +0810.4767 Exactly Solvable and Integrable Systems +0810.4769 +0810.4772 +0810.4773 +0810.4781 +0810.4791 Statistical Mechanics +0810.4804 +0810.4818 Materials Science +0810.4827 Strongly Correlated Electrons +0810.4832 +0810.4837 Strongly Correlated Electrons +0810.4853 Phenomenology +0810.4856 Superconductivity +0810.4865 Superconductivity +0810.4872 Mesoscale and Nanoscale Physics +0810.4874 +0810.4883 Phenomenology +0810.4888 Materials Science +0810.4891 Soft Condensed Matter +0810.4892 +0810.4915 +0810.4920 Mesoscale and Nanoscale Physics +0810.4922 +0810.4927 +0810.4929 Materials Science +0810.4945 +0810.4951 +0810.4959 Pattern Formation and Solitons +0810.4977 Statistical Mechanics +0810.4981 Materials Science +0810.5020 +0810.5025 +0810.5037 +0810.5040 Statistical Mechanics +0810.5046 Other Condensed Matter +0810.5051 Mesoscale and Nanoscale Physics +0810.5062 +0810.5069 +0810.5084 Statistical Mechanics +0810.5085 +0810.5087 +0810.5092 +0810.5094 +0810.5095 +0810.5100 +0810.5106 +0810.5110 +0810.5111 Soft Condensed Matter +0810.5122 +0810.5126 Phenomenology +0810.5129 +0810.5131 +0810.5136 +0810.5137 Materials Science +0810.5144 Strongly Correlated Electrons +0810.5149 Statistical Mechanics +0810.5158 +0810.5159 +0810.5163 +0810.5168 Superconductivity +0810.5171 Materials Science +0810.5183 Optics +0810.5184 Mesoscale and Nanoscale Physics +0810.5196 Other Condensed Matter +0810.5201 +0810.5202 Materials Science +0810.5210 Statistical Mechanics +0810.5214 Materials Science +0810.5215 Materials Science +0810.5230 +0810.5247 +0810.5253 +0810.5268 Superconductivity +0810.5272 +0810.5275 Mesoscale and Nanoscale Physics +0810.5286 Biological Physics +0810.5306 General Finance +0810.5307 Phenomenology +0810.5318 +0810.5320 +0810.5345 +0810.5359 +0810.5360 +0810.5369 Superconductivity +0810.5372 +0810.5391 Other Condensed Matter +0810.5393 +0810.5402 Mesoscale and Nanoscale Physics +0810.5403 +0810.5409 Statistical Mechanics +0810.5416 +0810.5418 Materials Science +0810.5420 +0810.5436 Mesoscale and Nanoscale Physics +0810.5437 +0810.5445 Materials Science +0810.5450 +0810.5455 +0810.5457 +0810.5459 Other Condensed Matter +0810.5461 +0810.5462 Mesoscale and Nanoscale Physics +0810.5466 Disordered Systems and Neural Networks +0810.5475 +0810.5483 +0810.5498 +0810.5501 +0810.5503 Other Condensed Matter +0810.5504 Optics +0810.5505 Statistical Mechanics +0810.5511 +0810.5519 Superconductivity +0810.5528 +0810.5530 +0810.5534 +0810.5538 +0810.5539 Statistical Mechanics +0810.5543 Statistical Mechanics +0810.5554 +0810.5555 +0810.5558 +0810.5561 +0810.5579 Mesoscale and Nanoscale Physics +0810.5585 Optics +0810.5593 Materials Science +0810.5624 Strongly Correlated Electrons +0810.5625 Statistical Mechanics +0810.5627 Materials Science +0810.5637 +0810.5642 Strongly Correlated Electrons +0810.5649 Mesoscale and Nanoscale Physics +0810.5656 Phenomenology +0810.5665 Other Condensed Matter +0810.5668 Exactly Solvable and Integrable Systems +0810.5672 +0810.5678 +0810.5687 Other Condensed Matter +0810.5690 Other Condensed Matter +0810.5696 +0810.5699 Statistical Mechanics +0810.5707 +0810.5713 Dynamical Systems +0810.5722 +0810.5723 +0810.5731 +0810.5747 Optics +0811.0004 +0811.0006 +0811.0008 +0811.0010 Other Condensed Matter +0811.0011 Phenomenology +0811.0012 +0811.0020 +0811.0045 +0811.0049 +0811.0060 +0811.0097 +0811.0118 +0811.0138 +0811.0151 +0811.0161 +0811.0167 +0811.0170 +0811.0173 Mesoscale and Nanoscale Physics +0811.0179 Phenomenology +0811.0188 +0811.0193 +0811.0195 Superconductivity +0811.0196 Information Theory +0811.0205 +0811.0216 Atomic Physics +0811.0231 Soft Condensed Matter +0811.0234 +0811.0239 Materials Science +0811.0251 Plasma Physics +0811.0264 +0811.0267 Mesoscale and Nanoscale Physics +0811.0269 Strongly Correlated Electrons +0811.0275 +0811.0284 +0811.0293 +0811.0305 +0811.0306 Phenomenology +0811.0307 Statistical Mechanics +0811.0313 +0811.0314 Other Condensed Matter +0811.0315 +0811.0322 +0811.0328 +0811.0329 +0811.0350 Materials Science +0811.0353 Materials Science +0811.0371 +0811.0385 Materials Science +0811.0386 Strongly Correlated Electrons +0811.0388 Strongly Correlated Electrons +0811.0392 +0811.0398 +0811.0401 Fluid Dynamics +0811.0408 +0811.0410 Atomic Physics +0811.0425 Materials Science +0811.0429 +0811.0434 Optics +0811.0442 Phenomenology +0811.0447 Strongly Correlated Electrons +0811.0452 Information Theory +0811.0458 Optics +0811.0461 +0811.0491 Phenomenology +0811.0492 +0811.0493 +0811.0497 +0811.0511 +0811.0513 Data Analysis, Statistics and Probability +0811.0521 Phenomenology +0811.0536 Soft Condensed Matter +0811.0545 +0811.0551 Optics +0811.0568 +0811.0570 +0811.0574 Mesoscale and Nanoscale Physics +0811.0583 Chemical Physics +0811.0588 +0811.0589 Superconductivity +0811.0611 +0811.0619 +0811.0628 Materials Science +0811.0631 +0811.0634 Superconductivity +0811.0665 +0811.0673 +0811.0681 +0811.0690 Plasma Physics +0811.0693 +0811.0700 +0811.0713 +0811.0716 Other Condensed Matter +0811.0720 Other Condensed Matter +0811.0727 +0811.0738 +0811.0742 Strongly Correlated Electrons +0811.0743 +0811.0744 Strongly Correlated Electrons +0811.0745 +0811.0750 +0811.0776 +0811.0786 +0811.0787 +0811.0789 +0811.0795 Statistical Mechanics +0811.0798 Superconductivity +0811.0818 Theory +0811.0825 +0811.0826 +0811.0829 +0811.0831 Experiment +0811.0844 Other Condensed Matter +0811.0857 +0811.0863 Phenomenology +0811.0873 Experiment +0811.0874 Superconductivity +0811.0878 Atomic Physics +0811.0884 Statistical Mechanics +0811.0908 Statistical Mechanics +0811.0915 +0811.0924 Exactly Solvable and Integrable Systems +0811.0925 +0811.0931 +0811.0934 Mesoscale and Nanoscale Physics +0811.0939 +0811.0969 Phenomenology +0811.0978 +0811.0981 +0811.0983 +0811.0988 Biological Physics +0811.0996 Mesoscale and Nanoscale Physics +0811.0999 Materials Science +0811.1001 +0811.1004 Materials Science +0811.1005 Biomolecules +0811.1017 Soft Condensed Matter +0811.1021 Other Condensed Matter +0811.1035 +0811.1037 +0811.1038 +0811.1039 +0811.1043 +0811.1045 +0811.1057 Strongly Correlated Electrons +0811.1073 +0811.1090 +0811.1096 +0811.1098 Strongly Correlated Electrons +0811.1101 +0811.1106 +0811.1110 +0811.1120 +0811.1126 +0811.1127 Materials Science +0811.1134 +0811.1137 +0811.1146 +0811.1148 Strongly Correlated Electrons +0811.1150 Chaotic Dynamics +0811.1156 +0811.1159 Other Condensed Matter +0811.1166 +0811.1180 +0811.1184 +0811.1197 +0811.1202 Phenomenology +0811.1216 +0811.1222 +0811.1223 +0811.1232 +0811.1236 Statistical Mechanics +0811.1238 Soft Condensed Matter +0811.1243 +0811.1253 Superconductivity +0811.1259 +0811.1280 Other Condensed Matter +0811.1282 Materials Science +0811.1308 Optics +0811.1309 +0811.1332 Superconductivity +0811.1334 Physics and Society +0811.1347 Phenomenology +0811.1381 +0811.1383 +0811.1392 Statistical Mechanics +0811.1407 Fluid Dynamics +0811.1420 Soft Condensed Matter +0811.1425 +0811.1437 +0811.1442 +0811.1445 +0811.1447 Soft Condensed Matter +0811.1450 +0811.1452 +0811.1456 Phenomenology +0811.1461 Materials Science +0811.1467 +0811.1470 +0811.1471 Biological Physics +0811.1473 +0811.1481 Phenomenology +0811.1488 +0811.1497 +0811.1506 +0811.1509 Pattern Formation and Solitons +0811.1516 +0811.1523 Materials Science +0811.1538 +0811.1552 +0811.1557 +0811.1559 +0811.1576 +0811.1578 +0811.1585 Superconductivity +0811.1589 Phenomenology +0811.1591 +0811.1594 +0811.1598 Phenomenology +0811.1608 Mesoscale and Nanoscale Physics +0811.1611 +0811.1623 Exactly Solvable and Integrable Systems +0811.1626 Disordered Systems and Neural Networks +0811.1627 Populations and Evolution +0811.1631 Fluid Dynamics +0811.1648 Mesoscale and Nanoscale Physics +0811.1653 +0811.1656 Superconductivity +0811.1659 +0811.1666 +0811.1672 Other Condensed Matter +0811.1680 +0811.1682 +0811.1685 Mesoscale and Nanoscale Physics +0811.1690 Theory +0811.1707 Phenomenology +0811.1718 Statistical Mechanics +0811.1722 +0811.1732 Strongly Correlated Electrons +0811.1735 Statistical Mechanics +0811.1740 +0811.1749 +0811.1753 +0811.1754 +0811.1757 Mesoscale and Nanoscale Physics +0811.1760 Plasma Physics +0811.1761 Computational Physics +0811.1767 Superconductivity +0811.1769 +0811.1775 Superconductivity +0811.1776 +0811.1777 +0811.1778 +0811.1781 +0811.1795 +0811.1800 +0811.1804 +0811.1808 +0811.1816 Atomic Physics +0811.1821 +0811.1823 Chaotic Dynamics +0811.1834 Superconductivity +0811.1844 +0811.1850 Phenomenology +0811.1856 Materials Science +0811.1861 +0811.1872 +0811.1883 +0811.1891 Other Condensed Matter +0811.1894 Superconductivity +0811.1903 +0811.1906 +0811.1912 +0811.1920 +0811.1928 Statistical Mechanics +0811.1942 +0811.1945 Statistical Mechanics +0811.1954 +0811.1956 Strongly Correlated Electrons +0811.1977 Statistical Mechanics +0811.1981 +0811.1982 Disordered Systems and Neural Networks +0811.1984 +0811.1990 +0811.2000 +0811.2003 +0811.2008 +0811.2010 Plasma Physics +0811.2017 +0811.2022 Pattern Formation and Solitons +0811.2027 +0811.2032 +0811.2034 +0811.2036 Mesoscale and Nanoscale Physics +0811.2038 +0811.2042 Statistical Mechanics +0811.2056 Strongly Correlated Electrons +0811.2068 +0811.2074 Instrumentation and Detectors +0811.2079 +0811.2084 Trading and Market Microstructure +0811.2085 +0811.2087 Materials Science +0811.2088 Theory +0811.2095 +0811.2096 +0811.2104 +0811.2109 +0811.2116 +0811.2120 Soft Condensed Matter +0811.2144 Fluid Dynamics +0811.2178 Statistical Mechanics +0811.2185 Atomic Physics +0811.2194 Superconductivity +0811.2199 +0811.2200 Computational Physics +0811.2202 Statistical Mechanics +0811.2203 +0811.2222 +0811.2228 +0811.2231 Strongly Correlated Electrons +0811.2239 +0811.2240 +0811.2266 Strongly Correlated Electrons +0811.2271 +0811.2292 Superconductivity +0811.2295 Phenomenology +0811.2298 +0811.2300 Strongly Correlated Electrons +0811.2303 Materials Science +0811.2305 Theory +0811.2308 Materials Science +0811.2312 +0811.2315 +0811.2318 +0811.2319 +0811.2327 +0811.2328 Materials Science +0811.2332 +0811.2338 Fluid Dynamics +0811.2344 Materials Science +0811.2351 Superconductivity +0811.2360 +0811.2368 Phenomenology +0811.2369 +0811.2372 +0811.2377 +0811.2387 Optics +0811.2392 +0811.2394 Phenomenology +0811.2396 +0811.2397 +0811.2413 Phenomenology +0811.2414 +0811.2426 +0811.2433 +0811.2448 +0811.2452 Atomic Physics +0811.2456 Strongly Correlated Electrons +0811.2462 Superconductivity +0811.2465 Materials Science +0811.2472 +0811.2484 +0811.2485 +0811.2486 +0811.2488 Phenomenology +0811.2489 Chaotic Dynamics +0811.2490 Instrumentation and Detectors +0811.2494 Superconductivity +0811.2506 +0811.2510 Theory +0811.2531 Statistical Mechanics +0811.2553 +0811.2554 Superconductivity +0811.2561 +0811.2567 Superconductivity +0811.2568 Soft Condensed Matter +0811.2571 Superconductivity +0811.2576 +0811.2592 Mesoscale and Nanoscale Physics +0811.2602 Superconductivity +0811.2604 Superconductivity +0811.2621 Superconductivity +0811.2633 +0811.2636 Phenomenology +0811.2647 +0811.2658 +0811.2665 Strongly Correlated Electrons +0811.2681 Instrumentation and Detectors +0811.2686 +0811.2687 +0811.2700 +0811.2707 Soft Condensed Matter +0811.2718 Disordered Systems and Neural Networks +0811.2720 Populations and Evolution +0811.2724 +0811.2732 +0811.2736 +0811.2744 +0811.2747 +0811.2753 +0811.2755 Superconductivity +0811.2758 Other Condensed Matter +0811.2771 +0811.2791 Subcellular Processes +0811.2794 +0811.2796 +0811.2810 +0811.2814 +0811.2816 +0811.2831 Soft Condensed Matter +0811.2836 Strongly Correlated Electrons +0811.2837 Biomolecules +0811.2838 Subcellular Processes +0811.2848 Soft Condensed Matter +0811.2857 +0811.2859 +0811.2862 +0811.2863 +0811.2869 Strongly Correlated Electrons +0811.2872 Optics +0811.2874 Atomic Physics +0811.2882 Theory +0811.2883 Superconductivity +0811.2890 Statistical Mechanics +0811.2893 +0811.2894 Phenomenology +0811.2897 +0811.2902 +0811.2903 +0811.2906 +0811.2925 +0811.2928 Optics +0811.2929 Fluid Dynamics +0811.2932 +0811.2941 +0811.2942 Other Condensed Matter +0811.2944 Statistical Mechanics +0811.2946 +0811.2949 +0811.2953 +0811.2965 Algebraic Geometry +0811.2972 Strongly Correlated Electrons +0811.2977 +0811.2987 Subcellular Processes +0811.2988 Probability +0811.2993 Statistical Mechanics +0811.3028 Fluid Dynamics +0811.3029 Materials Science +0811.3037 +0811.3039 +0811.3041 Materials Science +0811.3070 Materials Science +0811.3078 Statistical Mechanics +0811.3084 Strongly Correlated Electrons +0811.3098 +0811.3104 +0811.3105 +0811.3111 +0811.3114 Mesoscale and Nanoscale Physics +0811.3119 Superconductivity +0811.3120 Statistical Mechanics +0811.3123 +0811.3143 +0811.3167 Superconductivity +0811.3172 Optics +0811.3173 +0811.3178 Superconductivity +0811.3180 Differential Geometry +0811.3183 Statistical Mechanics +0811.3194 Mesoscale and Nanoscale Physics +0811.3197 +0811.3198 +0811.3203 +0811.3204 +0811.3209 +0811.3213 +0811.3214 +0811.3217 +0811.3221 +0811.3222 Mesoscale and Nanoscale Physics +0811.3223 +0811.3230 +0811.3234 +0811.3248 +0811.3249 Phenomenology +0811.3260 +0811.3265 Mesoscale and Nanoscale Physics +0811.3277 +0811.3278 Materials Science +0811.3279 +0811.3282 Materials Science +0811.3289 +0811.3291 Strongly Correlated Electrons +0811.3295 +0811.3313 Materials Science +0811.3314 Mesoscale and Nanoscale Physics +0811.3334 Superconductivity +0811.3339 Subcellular Processes +0811.3344 +0811.3349 +0811.3354 Mesoscale and Nanoscale Physics +0811.3369 Strongly Correlated Electrons +0811.3371 Neurons and Cognition +0811.3377 +0811.3378 Strongly Correlated Electrons +0811.3420 +0811.3432 Soft Condensed Matter +0811.3438 +0811.3439 Strongly Correlated Electrons +0811.3445 +0811.3447 +0811.3461 Mesoscale and Nanoscale Physics +0811.3466 Superconductivity +0811.3469 Chaotic Dynamics +0811.3483 Superconductivity +0811.3489 Mesoscale and Nanoscale Physics +0811.3495 +0811.3504 Strongly Correlated Electrons +0811.3505 +0811.3511 +0811.3516 +0811.3523 +0811.3534 +0811.3548 Plasma Physics +0811.3550 Atomic Physics +0811.3557 +0811.3564 +0811.3565 Materials Science +0811.3566 +0811.3571 Superconductivity +0811.3573 +0811.3592 Materials Science +0811.3593 +0811.3596 +0811.3598 Statistical Mechanics +0811.3607 +0811.3611 Materials Science +0811.3614 +0811.3629 +0811.3634 +0811.3638 +0811.3640 Lattice +0811.3651 Plasma Physics +0811.3656 Strongly Correlated Electrons +0811.3692 Disordered Systems and Neural Networks +0811.3698 Quantum Algebra +0811.3720 Superconductivity +0811.3730 +0811.3732 +0811.3757 Strongly Correlated Electrons +0811.3768 +0811.3803 Chaotic Dynamics +0811.3807 +0811.3826 Experiment +0811.3827 Statistical Mechanics +0811.3829 +0811.3873 +0811.3875 +0811.3879 Phenomenology +0811.3885 General Finance +0811.3886 Materials Science +0811.3890 +0811.3891 +0811.3893 +0811.3907 +0811.3908 +0811.3910 +0811.3914 +0811.3923 +0811.3929 +0811.3931 Superconductivity +0811.3936 +0811.3941 +0811.3968 +0811.3971 +0811.3973 Strongly Correlated Electrons +0811.3974 +0811.3989 +0811.3996 Statistical Mechanics +0811.4002 Strongly Correlated Electrons +0811.4010 Atomic Physics +0811.4011 Strongly Correlated Electrons +0811.4026 Theory +0811.4041 +0811.4043 +0811.4045 +0811.4049 +0811.4050 +0811.4054 +0811.4058 +0811.4071 +0811.4085 +0811.4104 Superconductivity +0811.4108 Mesoscale and Nanoscale Physics +0811.4118 Materials Science +0811.4136 +0811.4142 +0811.4143 Mesoscale and Nanoscale Physics +0811.4154 +0811.4158 +0811.4165 Experiment +0811.4173 +0811.4181 Materials Science +0811.4183 Statistical Mechanics +0811.4198 +0811.4224 Superconductivity +0811.4226 Strongly Correlated Electrons +0811.4240 Superconductivity +0811.4246 +0811.4251 Soft Condensed Matter +0811.4256 Physics and Society +0811.4260 +0811.4262 +0811.4278 +0811.4282 Atomic Physics +0811.4293 Phenomenology +0811.4301 Phenomenology +0811.4306 Chaotic Dynamics +0811.4313 Soft Condensed Matter +0811.4315 +0811.4320 Materials Science +0811.4337 +0811.4344 Strongly Correlated Electrons +0811.4347 +0811.4362 Optics +0811.4369 Phenomenology +0811.4389 +0811.4399 +0811.4404 Strongly Correlated Electrons +0811.4424 +0811.4430 Materials Science +0811.4449 Mesoscale and Nanoscale Physics +0811.4474 Pattern Formation and Solitons +0811.4475 Superconductivity +0811.4480 +0811.4505 Other Condensed Matter +0811.4508 Superconductivity +0811.4515 Strongly Correlated Electrons +0811.4521 +0811.4524 +0811.4528 +0811.4531 Strongly Correlated Electrons +0811.4555 Materials Science +0811.4567 Other Condensed Matter +0811.4575 Statistical Mechanics +0811.4582 +0811.4584 +0811.4598 Superconductivity +0811.4610 +0811.4611 +0811.4639 Materials Science +0811.4665 +0811.4671 +0811.4705 +0811.4707 +0811.4710 Strongly Correlated Electrons +0811.4719 Disordered Systems and Neural Networks +0811.4727 Space Physics +0811.4735 Strongly Correlated Electrons +0811.4742 +0811.4747 +0811.4755 Superconductivity +0812.0002 +0812.0004 Other Condensed Matter +0812.0018 +0812.0021 +0812.0023 +0812.0025 Molecular Networks +0812.0026 Materials Science +0812.0028 +0812.0029 +0812.0074 +0812.0090 Atomic Physics +0812.0116 +0812.0130 +0812.0137 Superconductivity +0812.0138 +0812.0141 +0812.0163 +0812.0178 +0812.0181 Disordered Systems and Neural Networks +0812.0231 Atomic Physics +0812.0234 Strongly Correlated Electrons +0812.0242 +0812.0245 Soft Condensed Matter +0812.0251 +0812.0268 Other Condensed Matter +0812.0281 +0812.0304 +0812.0310 +0812.0311 +0812.0318 +0812.0331 Statistical Mechanics +0812.0341 +0812.0356 Strongly Correlated Electrons +0812.0362 +0812.0363 +0812.0364 +0812.0388 +0812.0391 Classical Physics +0812.0393 Computational Physics +0812.0396 Optics +0812.0405 +0812.0419 +0812.0427 +0812.0473 +0812.0485 +0812.0487 +0812.0502 Materials Science +0812.0521 +0812.0525 Optics +0812.0535 Strongly Correlated Electrons +0812.0541 Other Condensed Matter +0812.0558 +0812.0566 Computational Physics +0812.0571 Materials Science +0812.0572 +0812.0575 +0812.0590 +0812.0599 +0812.0603 +0812.0631 +0812.0632 +0812.0645 +0812.0648 +0812.0663 Superconductivity +0812.0675 Statistical Mechanics +0812.0679 Materials Science +0812.0680 Phenomenology +0812.0693 Soft Condensed Matter +0812.0700 Plasma Physics +0812.0703 Plasma Physics +0812.0710 Plasma Physics +0812.0717 Differential Geometry +0812.0719 Plasma Physics +0812.0753 +0812.0762 +0812.0766 +0812.0774 Superconductivity +0812.0782 +0812.0813 +0812.0839 +0812.0842 +0812.0854 +0812.0880 +0812.0887 +0812.0903 +0812.0911 +0812.0912 Materials Science +0812.0923 +0812.0926 +0812.0945 +0812.0963 +0812.0973 Other Condensed Matter +0812.0984 +0812.1037 +0812.1039 Quantum Algebra +0812.1041 +0812.1060 +0812.1109 Mesoscale and Nanoscale Physics +0812.1132 +0812.1133 Soft Condensed Matter +0812.1137 Strongly Correlated Electrons +0812.1149 +0812.1156 +0812.1159 +0812.1160 Atomic Physics +0812.1162 Statistical Mechanics +0812.1175 Phenomenology +0812.1178 Optics +0812.1185 Functional Analysis +0812.1210 +0812.1231 +0812.1252 Optics +0812.1262 +0812.1271 Biomolecules +0812.1272 General Physics +0812.1274 Biomolecules +0812.1283 +0812.1306 +0812.1308 +0812.1313 +0812.1322 Strongly Correlated Electrons +0812.1338 +0812.1350 +0812.1353 +0812.1361 Superconductivity +0812.1381 Materials Science +0812.1384 Probability +0812.1400 +0812.1415 +0812.1417 +0812.1425 Strongly Correlated Electrons +0812.1457 +0812.1472 +0812.1473 Other Condensed Matter +0812.1476 Mesoscale and Nanoscale Physics +0812.1494 +0812.1495 +0812.1505 Materials Science +0812.1514 +0812.1515 Other Condensed Matter +0812.1516 +0812.1522 Other Condensed Matter +0812.1524 Atomic Physics +0812.1559 +0812.1562 +0812.1565 +0812.1580 +0812.1591 +0812.1593 +0812.1608 +0812.1614 Statistical Mechanics +0812.1631 +0812.1636 +0812.1650 +0812.1652 +0812.1663 +0812.1667 +0812.1668 +0812.1669 Materials Science +0812.1693 +0812.1696 Strongly Correlated Electrons +0812.1707 Soft Condensed Matter +0812.1708 +0812.1714 +0812.1718 +0812.1723 Mesoscale and Nanoscale Physics +0812.1727 +0812.1738 +0812.1744 Mesoscale and Nanoscale Physics +0812.1750 +0812.1755 +0812.1771 +0812.1797 +0812.1799 +0812.1814 +0812.1815 Plasma Physics +0812.1828 +0812.1830 +0812.1834 +0812.1836 Materials Science +0812.1850 +0812.1860 +0812.1877 Other Condensed Matter +0812.1886 +0812.1896 +0812.1909 +0812.1912 Superconductivity +0812.1924 Pattern Formation and Solitons +0812.1928 Strongly Correlated Electrons +0812.1930 +0812.1932 +0812.1956 Statistical Mechanics +0812.1959 +0812.1960 +0812.1964 +0812.1974 +0812.1990 Mesoscale and Nanoscale Physics +0812.1998 +0812.2007 +0812.2008 Mesoscale and Nanoscale Physics +0812.2034 +0812.2036 +0812.2052 +0812.2069 Superconductivity +0812.2071 Strongly Correlated Electrons +0812.2083 Materials Science +0812.2091 Superconductivity +0812.2100 Superconductivity +0812.2113 Phenomenology +0812.2123 Instrumentation and Detectors +0812.2128 Strongly Correlated Electrons +0812.2130 Other Condensed Matter +0812.2131 Strongly Correlated Electrons +0812.2139 +0812.2142 Optics +0812.2146 +0812.2170 +0812.2175 Materials Science +0812.2177 +0812.2181 +0812.2182 Plasma Physics +0812.2186 +0812.2197 Strongly Correlated Electrons +0812.2213 +0812.2225 Quantum Algebra +0812.2230 Disordered Systems and Neural Networks +0812.2231 Superconductivity +0812.2233 +0812.2237 Optics +0812.2239 +0812.2252 +0812.2253 +0812.2264 +0812.2270 Pattern Formation and Solitons +0812.2282 +0812.2284 +0812.2294 +0812.2296 Materials Science +0812.2297 Theory +0812.2308 Statistical Mechanics +0812.2317 Materials Science +0812.2325 +0812.2328 +0812.2344 Phenomenology +0812.2345 Populations and Evolution +0812.2347 Mesoscale and Nanoscale Physics +0812.2356 +0812.2360 +0812.2363 +0812.2365 +0812.2375 Soft Condensed Matter +0812.2383 Strongly Correlated Electrons +0812.2398 +0812.2400 Materials Science +0812.2408 Cellular Automata and Lattice Gases +0812.2424 +0812.2437 +0812.2448 +0812.2450 +0812.2464 +0812.2475 +0812.2476 +0812.2492 Materials Science +0812.2493 +0812.2507 Fluid Dynamics +0812.2509 Materials Science +0812.2510 +0812.2516 +0812.2523 +0812.2527 Other Condensed Matter +0812.2530 Materials Science +0812.2531 +0812.2561 +0812.2577 Pattern Formation and Solitons +0812.2584 +0812.2609 +0812.2618 +0812.2626 +0812.2629 Statistical Mechanics +0812.2652 General Physics +0812.2679 Phenomenology +0812.2684 +0812.2700 Materials Science +0812.2716 Soft Condensed Matter +0812.2755 Popular Physics +0812.2764 +0812.2777 Lattice +0812.2802 Plasma Physics +0812.2812 +0812.2822 Superconductivity +0812.2836 +0812.2837 Statistical Mechanics +0812.2847 +0812.2890 +0812.2894 Superconductivity +0812.2910 +0812.2911 +0812.2929 +0812.2935 +0812.2943 +0812.2946 +0812.2949 +0812.2960 +0812.2962 +0812.2984 +0812.2986 Experiment +0812.3004 +0812.3005 Other Condensed Matter +0812.3008 Mesoscale and Nanoscale Physics +0812.3010 Theory +0812.3024 Strongly Correlated Electrons +0812.3026 Phenomenology +0812.3032 +0812.3040 +0812.3047 +0812.3049 +0812.3081 +0812.3091 Soft Condensed Matter +0812.3092 Other Condensed Matter +0812.3107 Quantum Algebra +0812.3123 Experiment +0812.3125 Phenomenology +0812.3126 +0812.3151 +0812.3164 +0812.3174 +0812.3187 +0812.3193 Other Condensed Matter +0812.3198 Superconductivity +0812.3224 +0812.3230 Statistical Mechanics +0812.3235 +0812.3237 +0812.3272 +0812.3273 Theory +0812.3303 Fluid Dynamics +0812.3327 +0812.3349 +0812.3376 Phenomenology +0812.3383 Other Condensed Matter +0812.3388 Theory +0812.3390 Statistical Mechanics +0812.3392 +0812.3426 Biomolecules +0812.3432 Statistical Mechanics +0812.3439 Optics +0812.3451 +0812.3452 +0812.3455 +0812.3468 Soft Condensed Matter +0812.3481 Mesoscale and Nanoscale Physics +0812.3484 Mesoscale and Nanoscale Physics +0812.3492 Soft Condensed Matter +0812.3497 Pattern Formation and Solitons +0812.3517 +0812.3542 +0812.3546 +0812.3547 +0812.3549 +0812.3568 +0812.3569 +0812.3586 Phenomenology +0812.3588 +0812.3590 Mesoscale and Nanoscale Physics +0812.3591 Disordered Systems and Neural Networks +0812.3603 +0812.3610 Phenomenology +0812.3624 +0812.3650 +0812.3664 +0812.3673 +0812.3690 Atomic and Molecular Clusters +0812.3696 +0812.3706 Statistical Mechanics +0812.3733 +0812.3741 +0812.3748 +0812.3749 +0812.3767 Mesoscale and Nanoscale Physics +0812.3769 +0812.3774 Superconductivity +0812.3781 +0812.3789 Accelerator Physics +0812.3793 Atomic Physics +0812.3797 Materials Science +0812.3800 Atomic Physics +0812.3801 Strongly Correlated Electrons +0812.3802 Phenomenology +0812.3805 +0812.3808 +0812.3838 +0812.3847 Soft Condensed Matter +0812.3849 +0812.3854 Soft Condensed Matter +0812.3855 Statistical Mechanics +0812.3872 +0812.3884 Materials Science +0812.3905 Mesoscale and Nanoscale Physics +0812.3916 +0812.3940 Other Condensed Matter +0812.3953 Superconductivity +0812.3956 +0812.3959 +0812.3966 +0812.3969 Statistical Mechanics +0812.3971 +0812.3990 Biological Physics +0812.4008 Optics +0812.4018 +0812.4027 +0812.4043 +0812.4056 Superconductivity +0812.4075 Other Condensed Matter +0812.4078 +0812.4079 +0812.4085 +0812.4094 +0812.4100 Strongly Correlated Electrons +0812.4106 +0812.4118 +0812.4119 Plasma Physics +0812.4123 Materials Science +0812.4128 +0812.4134 Disordered Systems and Neural Networks +0812.4145 +0812.4151 +0812.4160 Statistical Mechanics +0812.4162 Statistical Mechanics +0812.4173 +0812.4184 Materials Science +0812.4213 +0812.4218 +0812.4221 Statistical Mechanics +0812.4237 Superconductivity +0812.4257 Statistical Mechanics +0812.4270 +0812.4288 +0812.4292 Superconductivity +0812.4335 Atomic Physics +0812.4337 +0812.4348 Superconductivity +0812.4357 Strongly Correlated Electrons +0812.4378 History and Philosophy of Physics +0812.4385 Other Condensed Matter +0812.4411 +0812.4412 Phenomenology +0812.4421 Materials Science +0812.4422 Strongly Correlated Electrons +0812.4425 Atomic Physics +0812.4427 Optics +0812.4468 Materials Science +0812.4481 Adaptation and Self-Organizing Systems +0812.4514 +0812.4517 +0812.4521 Pattern Formation and Solitons +0812.4525 +0812.4526 Strongly Correlated Electrons +0812.4528 +0812.4536 Pattern Formation and Solitons +0812.4537 +0812.4540 Strongly Correlated Electrons +0812.4554 Chemical Physics +0812.4566 +0812.4599 Superconductivity +0812.4603 +0812.4605 +0812.4608 Superconductivity +0812.4612 +0812.4621 +0812.4631 +0812.4632 +0812.4654 Disordered Systems and Neural Networks +0812.4693 Theory +0812.4705 Phenomenology +0812.4718 Exactly Solvable and Integrable Systems +0812.4741 Optics +0812.4767 Theory +0812.4789 Classical Physics +0812.4791 +0812.4801 Superconductivity +0812.4806 Superconductivity +0812.4817 +0812.4824 +0812.4828 Materials Science +0812.4832 Materials Science +0812.4837 Strongly Correlated Electrons +0812.4840 Strongly Correlated Electrons +0812.4853 Statistical Mechanics +0812.4909 Theory +0812.4925 +0812.4931 +0812.4936 Superconductivity +0812.4941 +0812.4951 +0812.4953 Materials Science +0812.4961 Statistical Mechanics +0812.4992 +0812.4997 Materials Science +0812.5000 Materials Science +0812.5009 +0812.5035 Statistical Mechanics +0812.5046 +0812.5048 Mesoscale and Nanoscale Physics +0812.5095 +0901.0035 Solar and Stellar Astrophysics +0901.0038 Superconductivity +0901.0045 Solar and Stellar Astrophysics +0901.0053 Mesoscale and Nanoscale Physics +0901.0083 Superconductivity +0901.0086 Biomolecules +0901.0106 Astrophysics of Galaxies +0901.0107 Plasma Physics +0901.0111 Astrophysics of Galaxies +0901.0116 Astrophysics of Galaxies +0901.0129 Classical Physics +0901.0149 High Energy Astrophysical Phenomena +0901.0167 High Energy Astrophysical Phenomena +0901.0177 Superconductivity +0901.0183 Statistical Mechanics +0901.0190 +0901.0198 Solar and Stellar Astrophysics +0901.0223 Solar and Stellar Astrophysics +0901.0239 Instrumentation and Methods for Astrophysics +0901.0250 Astrophysics of Galaxies +0901.0257 High Energy Astrophysical Phenomena +0901.0268 Superconductivity +0901.0274 Mesoscale and Nanoscale Physics +0901.0278 +0901.0289 Optics +0901.0293 Materials Science +0901.0314 High Energy Astrophysical Phenomena +0901.0343 Solar and Stellar Astrophysics +0901.0349 Networking and Internet Architecture +0901.0365 Optics +0901.0387 Disordered Systems and Neural Networks +0901.0390 Exactly Solvable and Integrable Systems +0901.0403 Astrophysics of Galaxies +0901.0410 High Energy Astrophysical Phenomena +0901.0427 Astrophysics of Galaxies +0901.0445 Strongly Correlated Electrons +0901.0462 High Energy Astrophysical Phenomena +0901.0465 Solar and Stellar Astrophysics +0901.0482 Earth and Planetary Astrophysics +0901.0483 Statistical Mechanics +0901.0484 Chaotic Dynamics +0901.0500 Materials Science +0901.0502 Superconductivity +0901.0514 Cosmology and Nongalactic Astrophysics +0901.0515 Geophysics +0901.0525 +0901.0531 Solar and Stellar Astrophysics +0901.0547 Cosmology and Nongalactic Astrophysics +0901.0548 Astrophysics of Galaxies +0901.0556 High Energy Astrophysical Phenomena +0901.0564 Solar and Stellar Astrophysics +0901.0565 Astrophysics of Galaxies +0901.0576 Statistical Mechanics +0901.0582 Earth and Planetary Astrophysics +0901.0592 Solar and Stellar Astrophysics +0901.0594 Superconductivity +0901.0613 Phenomenology +0901.0635 +0901.0636 Statistical Mechanics +0901.0641 Astrophysics of Galaxies +0901.0642 Astrophysics of Galaxies +0901.0653 Solar and Stellar Astrophysics +0901.0673 Materials Science +0901.0689 Superconductivity +0901.0698 Solar and Stellar Astrophysics +0901.0704 Astrophysics of Galaxies +0901.0707 Solar and Stellar Astrophysics +0901.0714 Solar and Stellar Astrophysics +0901.0715 Astrophysics of Galaxies +0901.0718 Astrophysics of Galaxies +0901.0723 Astrophysics of Galaxies +0901.0730 Solar and Stellar Astrophysics +0901.0731 High Energy Astrophysical Phenomena +0901.0743 Statistical Mechanics +0901.0750 Plasma Physics +0901.0757 Cosmology and Nongalactic Astrophysics +0901.0758 Strongly Correlated Electrons +0901.0767 Solar and Stellar Astrophysics +0901.0773 Solar and Stellar Astrophysics +0901.0801 +0901.0808 Solar and Stellar Astrophysics +0901.0818 Theory +0901.0836 +0901.0845 Astrophysics of Galaxies +0901.0878 Strongly Correlated Electrons +0901.0894 Strongly Correlated Electrons +0901.0965 Disordered Systems and Neural Networks +0901.0974 Cosmology and Nongalactic Astrophysics +0901.0995 Solar and Stellar Astrophysics +0901.0996 +0901.1006 High Energy Astrophysical Phenomena +0901.1012 Experiment +0901.1027 High Energy Astrophysical Phenomena +0901.1032 Cosmology and Nongalactic Astrophysics +0901.1033 Optics +0901.1049 Instrumentation and Methods for Astrophysics +0901.1055 Solar and Stellar Astrophysics +0901.1085 Astrophysics of Galaxies +0901.1113 Astrophysics of Galaxies +0901.1116 Astrophysics of Galaxies +0901.1118 Solar and Stellar Astrophysics +0901.1131 Mesoscale and Nanoscale Physics +0901.1134 Mesoscale and Nanoscale Physics +0901.1139 Mesoscale and Nanoscale Physics +0901.1141 Astrophysics of Galaxies +0901.1142 Theory +0901.1165 Astrophysics of Galaxies +0901.1182 Theory +0901.1184 Astrophysics of Galaxies +0901.1204 Solar and Stellar Astrophysics +0901.1207 Astrophysics of Galaxies +0901.1222 Superconductivity +0901.1229 Astrophysics of Galaxies +0901.1262 Solar and Stellar Astrophysics +0901.1282 Superconductivity +0901.1285 Astrophysics of Galaxies +0901.1286 High Energy Astrophysical Phenomena +0901.1296 High Energy Astrophysical Phenomena +0901.1306 Astrophysics of Galaxies +0901.1309 Astrophysics of Galaxies +0901.1310 Optics +0901.1313 Solar and Stellar Astrophysics +0901.1318 Cosmology and Nongalactic Astrophysics +0901.1327 High Energy Astrophysical Phenomena +0901.1346 High Energy Astrophysical Phenomena +0901.1350 Optics +0901.1351 Astrophysics of Galaxies +0901.1355 Astrophysics of Galaxies +0901.1385 Astrophysics of Galaxies +0901.1405 High Energy Astrophysical Phenomena +0901.1476 Mesoscale and Nanoscale Physics +0901.1485 +0901.1502 Statistical Mechanics +0901.1514 Materials Science +0901.1519 Statistical Mechanics +0901.1530 Astrophysics of Galaxies +0901.1532 High Energy Astrophysical Phenomena +0901.1533 Superconductivity +0901.1537 Solar and Stellar Astrophysics +0901.1543 Cosmology and Nongalactic Astrophysics +0901.1547 Earth and Planetary Astrophysics +0901.1559 High Energy Astrophysical Phenomena +0901.1564 Astrophysics of Galaxies +0901.1566 High Energy Astrophysical Phenomena +0901.1581 Theory +0901.1589 High Energy Astrophysical Phenomena +0901.1599 Chemical Physics +0901.1601 Astrophysics of Galaxies +0901.1617 Earth and Planetary Astrophysics +0901.1634 Solar and Stellar Astrophysics +0901.1638 Earth and Planetary Astrophysics +0901.1658 Astrophysics of Galaxies +0901.1659 Solar and Stellar Astrophysics +0901.1667 Astrophysics of Galaxies +0901.1668 Solar and Stellar Astrophysics +0901.1674 High Energy Astrophysical Phenomena +0901.1679 +0901.1680 Solar and Stellar Astrophysics +0901.1693 Astrophysics of Galaxies +0901.1719 Solar and Stellar Astrophysics +0901.1746 Astrophysics of Galaxies +0901.1749 Strongly Correlated Electrons +0901.1764 Astrophysics of Galaxies +0901.1790 +0901.1826 Solar and Stellar Astrophysics +0901.1836 Solar and Stellar Astrophysics +0901.1837 Disordered Systems and Neural Networks +0901.1850 Solar and Stellar Astrophysics +0901.1876 Earth and Planetary Astrophysics +0901.1877 High Energy Astrophysical Phenomena +0901.1878 Earth and Planetary Astrophysics +0901.1882 High Energy Astrophysical Phenomena +0901.1932 +0901.1940 Statistical Mechanics +0901.1942 Mesoscale and Nanoscale Physics +0901.1944 Mesoscale and Nanoscale Physics +0901.1951 Strongly Correlated Electrons +0901.1961 Superconductivity +0901.1975 Astrophysics of Galaxies +0901.1978 Plasma Physics +0901.1987 Astrophysics of Galaxies +0901.2002 Other Condensed Matter +0901.2003 Theory +0901.2015 Plasma Physics +0901.2020 Plasma Physics +0901.2026 Solar and Stellar Astrophysics +0901.2034 Solar and Stellar Astrophysics +0901.2035 Cosmology and Nongalactic Astrophysics +0901.2037 Plasma Physics +0901.2043 Plasma Physics +0901.2047 Astrophysics of Galaxies +0901.2048 Earth and Planetary Astrophysics +0901.2049 Plasma Physics +0901.2051 Solar and Stellar Astrophysics +0901.2053 Solar and Stellar Astrophysics +0901.2056 Phenomenology +0901.2060 Materials Science +0901.2071 Chaotic Dynamics +0901.2075 Astrophysics of Galaxies +0901.2077 Mesoscale and Nanoscale Physics +0901.2113 Solar and Stellar Astrophysics +0901.2142 High Energy Astrophysical Phenomena +0901.2144 High Energy Astrophysical Phenomena +0901.2145 Astrophysics of Galaxies +0901.2148 Solar and Stellar Astrophysics +0901.2150 Astrophysics of Galaxies +0901.2171 Cosmology and Nongalactic Astrophysics +0901.2174 Statistical Mechanics +0901.2181 Strongly Correlated Electrons +0901.2183 Materials Science +0901.2215 Astrophysics of Galaxies +0901.2219 High Energy Astrophysical Phenomena +0901.2222 Solar and Stellar Astrophysics +0901.2235 Plasma Physics +0901.2237 Strongly Correlated Electrons +0901.2238 Materials Science +0901.2239 Plasma Physics +0901.2241 High Energy Astrophysical Phenomena +0901.2242 Plasma Physics +0901.2247 Plasma Physics +0901.2250 Statistical Mechanics +0901.2263 Earth and Planetary Astrophysics +0901.2265 Earth and Planetary Astrophysics +0901.2266 Instrumentation and Methods for Astrophysics +0901.2268 High Energy Astrophysical Phenomena +0901.2274 Astrophysics of Galaxies +0901.2277 Astrophysics of Galaxies +0901.2282 Statistical Mechanics +0901.2308 Solar and Stellar Astrophysics +0901.2345 Solar and Stellar Astrophysics +0901.2346 Astrophysics of Galaxies +0901.2347 High Energy Astrophysical Phenomena +0901.2354 Exactly Solvable and Integrable Systems +0901.2368 Solar and Stellar Astrophysics +0901.2382 Strongly Correlated Electrons +0901.2419 Strongly Correlated Electrons +0901.2421 Materials Science +0901.2463 High Energy Astrophysical Phenomena +0901.2471 Solar and Stellar Astrophysics +0901.2486 Instrumentation and Methods for Astrophysics +0901.2499 Astrophysics of Galaxies +0901.2517 Cosmology and Nongalactic Astrophysics +0901.2541 Solar and Stellar Astrophysics +0901.2573 Instrumentation and Methods for Astrophysics +0901.2585 +0901.2587 Cosmology and Nongalactic Astrophysics +0901.2618 +0901.2627 Mesoscale and Nanoscale Physics +0901.2633 Atomic Physics +0901.2649 +0901.2659 Statistical Mechanics +0901.2662 +0901.2665 Computational Engineering, Finance, and Science +0901.2673 Astrophysics of Galaxies +0901.2677 Solar and Stellar Astrophysics +0901.2678 Mesoscale and Nanoscale Physics +0901.2691 Superconductivity +0901.2706 Strongly Correlated Electrons +0901.2743 Solar and Stellar Astrophysics +0901.2758 Superconductivity +0901.2770 Astrophysics of Galaxies +0901.2779 Atomic Physics +0901.2786 Computational Physics +0901.2803 Mesoscale and Nanoscale Physics +0901.2805 Instrumentation and Methods for Astrophysics +0901.2813 Disordered Systems and Neural Networks +0901.2823 Phenomenology +0901.2829 Astrophysics of Galaxies +0901.2833 Optics +0901.2841 Solar and Stellar Astrophysics +0901.2845 Plasma Physics +0901.2846 Materials Science +0901.2848 +0901.2854 Solar and Stellar Astrophysics +0901.2855 Strongly Correlated Electrons +0901.2857 Physics and Society +0901.2858 High Energy Astrophysical Phenomena +0901.2891 Soft Condensed Matter +0901.2894 +0901.2901 Mesoscale and Nanoscale Physics +0901.2919 Cosmology and Nongalactic Astrophysics +0901.2950 Solar and Stellar Astrophysics +0901.2952 Instrumentation and Methods for Astrophysics +0901.2968 Astrophysics of Galaxies +0901.2970 Disordered Systems and Neural Networks +0901.3002 High Energy Astrophysical Phenomena +0901.3006 +0901.3027 Solar and Stellar Astrophysics +0901.3032 Solar and Stellar Astrophysics +0901.3034 Solar and Stellar Astrophysics +0901.3061 Strongly Correlated Electrons +0901.3065 Cosmology and Nongalactic Astrophysics +0901.3068 Cosmology and Nongalactic Astrophysics +0901.3093 Materials Science +0901.3095 Astrophysics of Galaxies +0901.3108 Cosmology and Nongalactic Astrophysics +0901.3118 Instrumentation and Methods for Astrophysics +0901.3122 Solar and Stellar Astrophysics +0901.3123 Cosmology and Nongalactic Astrophysics +0901.3129 +0901.3142 High Energy Astrophysical Phenomena +0901.3144 Earth and Planetary Astrophysics +0901.3146 Solar and Stellar Astrophysics +0901.3177 Astrophysics of Galaxies +0901.3182 Group Theory +0901.3185 Astrophysics of Galaxies +0901.3216 +0901.3217 Classical Physics +0901.3223 Optics +0901.3228 Astrophysics of Galaxies +0901.3250 Optics +0901.3274 +0901.3276 Instrumentation and Methods for Astrophysics +0901.3286 Strongly Correlated Electrons +0901.3288 Solar and Stellar Astrophysics +0901.3307 Solar and Stellar Astrophysics +0901.3311 Pattern Formation and Solitons +0901.3320 Solar and Stellar Astrophysics +0901.3323 Solar and Stellar Astrophysics +0901.3326 Methodology +0901.3351 High Energy Astrophysical Phenomena +0901.3353 Cosmology and Nongalactic Astrophysics +0901.3357 Cosmology and Nongalactic Astrophysics +0901.3363 Superconductivity +0901.3382 Solar and Stellar Astrophysics +0901.3386 Theory +0901.3390 Cosmology and Nongalactic Astrophysics +0901.3401 Earth and Planetary Astrophysics +0901.3417 Cosmology and Nongalactic Astrophysics +0901.3438 Other Condensed Matter +0901.3453 High Energy Astrophysical Phenomena +0901.3480 Pattern Formation and Solitons +0901.3483 Cosmology and Nongalactic Astrophysics +0901.3516 Astrophysics of Galaxies +0901.3525 Superconductivity +0901.3533 Chaotic Dynamics +0901.3554 Cosmology and Nongalactic Astrophysics +0901.3562 Astrophysics of Galaxies +0901.3570 Solar and Stellar Astrophysics +0901.3576 High Energy Astrophysical Phenomena +0901.3597 High Energy Astrophysical Phenomena +0901.3656 Soft Condensed Matter +0901.3658 Analysis of PDEs +0901.3672 Atmospheric and Oceanic Physics +0901.3676 Cosmology and Nongalactic Astrophysics +0901.3684 Solar and Stellar Astrophysics +0901.3712 Astrophysics of Galaxies +0901.3723 Astrophysics of Galaxies +0901.3733 Cosmology and Nongalactic Astrophysics +0901.3752 Lattice +0901.3756 Solar and Stellar Astrophysics +0901.3779 Astrophysics of Galaxies +0901.3788 Theory +0901.3792 Cosmology and Nongalactic Astrophysics +0901.3811 Superconductivity +0901.3853 Solar and Stellar Astrophysics +0901.3867 Solar and Stellar Astrophysics +0901.3871 Materials Science +0901.3875 Earth and Planetary Astrophysics +0901.3935 Materials Science +0901.3938 +0901.3942 Atomic Physics +0901.3959 Mesoscale and Nanoscale Physics +0901.3991 High Energy Astrophysical Phenomena +0901.3993 Astrophysics of Galaxies +0901.4018 Solar and Stellar Astrophysics +0901.4026 Instrumentation and Methods for Astrophysics +0901.4050 Plasma Physics +0901.4097 Strongly Correlated Electrons +0901.4109 Phenomenology +0901.4116 Astrophysics of Galaxies +0901.4119 High Energy Astrophysical Phenomena +0901.4120 Solar and Stellar Astrophysics +0901.4123 Materials Science +0901.4133 High Energy Astrophysical Phenomena +0901.4135 Cosmology and Nongalactic Astrophysics +0901.4153 Soft Condensed Matter +0901.4154 Cosmology and Nongalactic Astrophysics +0901.4158 Optics +0901.4173 Earth and Planetary Astrophysics +0901.4177 Mesoscale and Nanoscale Physics +0901.4207 Astrophysics of Galaxies +0901.4222 Cosmology and Nongalactic Astrophysics +0901.4231 Solar and Stellar Astrophysics +0901.4235 Earth and Planetary Astrophysics +0901.4258 High Energy Astrophysical Phenomena +0901.4262 Instrumentation and Methods for Astrophysics +0901.4292 Statistical Mechanics +0901.4311 Astrophysics of Galaxies +0901.4335 Astrophysics of Galaxies +0901.4339 Cosmology and Nongalactic Astrophysics +0901.4346 Earth and Planetary Astrophysics +0901.4351 Cosmology and Nongalactic Astrophysics +0901.4353 Fluid Dynamics +0901.4361 Fluid Dynamics +0901.4384 Disordered Systems and Neural Networks +0901.4387 Mesoscale and Nanoscale Physics +0901.4389 +0901.4427 Superconductivity +0901.4434 Earth and Planetary Astrophysics +0901.4436 Statistical Mechanics +0901.4437 Other Condensed Matter +0901.4445 Solar and Stellar Astrophysics +0901.4451 Solar and Stellar Astrophysics +0901.4464 Solar and Stellar Astrophysics +0901.4482 Soft Condensed Matter +0901.4510 +0901.4519 Theory +0901.4523 Solar and Stellar Astrophysics +0901.4553 Solar and Stellar Astrophysics +0901.4557 Earth and Planetary Astrophysics +0901.4567 Mesoscale and Nanoscale Physics +0901.4570 Superconductivity +0901.4577 Mesoscale and Nanoscale Physics +0901.4590 Materials Science +0901.4592 Astrophysics of Galaxies +0901.4593 Pattern Formation and Solitons +0901.4600 Other Condensed Matter +0901.4608 Theory +0901.4619 Other Condensed Matter +0901.4621 Statistical Mechanics +0901.4648 Information Theory +0901.4658 Strongly Correlated Electrons +0901.4669 +0901.4675 Instrumentation and Detectors +0901.4774 Earth and Planetary Astrophysics +0901.4783 Cosmology and Nongalactic Astrophysics +0901.4834 Theory +0901.4836 Fluid Dynamics +0901.4882 Earth and Planetary Astrophysics +0901.4902 Solar and Stellar Astrophysics +0901.4929 Cosmology and Nongalactic Astrophysics +0901.4935 Cosmology and Nongalactic Astrophysics +0901.4947 Statistical Mechanics +0901.4974 +0902.0029 Fluid Dynamics +0902.0031 Fluid Dynamics +0902.0050 Solar and Stellar Astrophysics +0902.0060 Optics +0902.0083 +0902.0128 Cosmology and Nongalactic Astrophysics +0902.0150 Strongly Correlated Electrons +0902.0151 Strongly Correlated Electrons +0902.0191 Earth and Planetary Astrophysics +0902.0211 High Energy Astrophysical Phenomena +0902.0228 Materials Science +0902.0328 High Energy Astrophysical Phenomena +0902.0338 Solar and Stellar Astrophysics +0902.0365 Solar and Stellar Astrophysics +0902.0379 Materials Science +0902.0389 Biomolecules +0902.0414 High Energy Astrophysical Phenomena +0902.0420 Mesoscale and Nanoscale Physics +0902.0424 Solar and Stellar Astrophysics +0902.0450 Astrophysics of Galaxies +0902.0456 +0902.0460 Mesoscale and Nanoscale Physics +0902.0463 Atomic Physics +0902.0503 Superconductivity +0902.0516 Materials Science +0902.0527 Solar and Stellar Astrophysics +0902.0555 Astrophysics of Galaxies +0902.0560 +0902.0571 Astrophysics of Galaxies +0902.0572 Solar and Stellar Astrophysics +0902.0574 Instrumentation and Methods for Astrophysics +0902.0577 Cosmology and Nongalactic Astrophysics +0902.0602 Neurons and Cognition +0902.0604 Astrophysics of Galaxies +0902.0612 Cosmology and Nongalactic Astrophysics +0902.0627 Astrophysics of Galaxies +0902.0638 Solar and Stellar Astrophysics +0902.0639 Cosmology and Nongalactic Astrophysics +0902.0643 Cosmology and Nongalactic Astrophysics +0902.0644 Mesoscale and Nanoscale Physics +0902.0651 High Energy Astrophysical Phenomena +0902.0652 Physics and Society +0902.0662 Astrophysics of Galaxies +0902.0665 Theory +0902.0667 Earth and Planetary Astrophysics +0902.0693 Exactly Solvable and Integrable Systems +0902.0720 High Energy Astrophysical Phenomena +0902.0745 Solar and Stellar Astrophysics +0902.0758 Solar and Stellar Astrophysics +0902.0761 High Energy Astrophysical Phenomena +0902.0791 Optics +0902.0796 Cosmology and Nongalactic Astrophysics +0902.0804 +0902.0823 +0902.0846 Solar and Stellar Astrophysics +0902.0854 Materials Science +0902.0862 Astrophysics of Galaxies +0902.0863 Cosmology and Nongalactic Astrophysics +0902.0867 Strongly Correlated Electrons +0902.0898 High Energy Astrophysical Phenomena +0902.0903 Astrophysics of Galaxies +0902.0929 Strongly Correlated Electrons +0902.0930 High Energy Astrophysical Phenomena +0902.0933 Astrophysics of Galaxies +0902.0974 Strongly Correlated Electrons +0902.0983 High Energy Astrophysical Phenomena +0902.0988 Strongly Correlated Electrons +0902.0989 Astrophysics of Galaxies +0902.0995 Solar and Stellar Astrophysics +0902.0996 Solar and Stellar Astrophysics +0902.0997 Superconductivity +0902.1009 Superconductivity +0902.1018 Cosmology and Nongalactic Astrophysics +0902.1020 Superconductivity +0902.1023 Cosmology and Nongalactic Astrophysics +0902.1049 Solar and Stellar Astrophysics +0902.1052 Molecular Networks +0902.1076 Strongly Correlated Electrons +0902.1081 +0902.1092 Solar and Stellar Astrophysics +0902.1094 High Energy Astrophysical Phenomena +0902.1099 Computational Physics +0902.1101 Solar and Stellar Astrophysics +0902.1102 +0902.1108 Strongly Correlated Electrons +0902.1124 Cosmology and Nongalactic Astrophysics +0902.1159 Solar and Stellar Astrophysics +0902.1166 Astrophysics of Galaxies +0902.1187 Astrophysics of Galaxies +0902.1197 Materials Science +0902.1204 Statistical Mechanics +0902.1210 Exactly Solvable and Integrable Systems +0902.1212 Solar and Stellar Astrophysics +0902.1225 Superconductivity +0902.1228 Solar and Stellar Astrophysics +0902.1281 Materials Science +0902.1283 Materials Science +0902.1289 Solar and Stellar Astrophysics +0902.1292 Biomolecules +0902.1314 Solar and Stellar Astrophysics +0902.1341 Cosmology and Nongalactic Astrophysics +0902.1370 Astrophysics of Galaxies +0902.1372 +0902.1386 Astrophysics of Galaxies +0902.1395 High Energy Astrophysical Phenomena +0902.1411 Strongly Correlated Electrons +0902.1431 Strongly Correlated Electrons +0902.1449 Mesoscale and Nanoscale Physics +0902.1451 Materials Science +0902.1463 Solar and Stellar Astrophysics +0902.1482 High Energy Astrophysical Phenomena +0902.1490 High Energy Astrophysical Phenomena +0902.1519 Superconductivity +0902.1521 Cosmology and Nongalactic Astrophysics +0902.1523 Cosmology and Nongalactic Astrophysics +0902.1526 Solar and Stellar Astrophysics +0902.1528 Cosmology and Nongalactic Astrophysics +0902.1531 Astrophysics of Galaxies +0902.1562 High Energy Astrophysical Phenomena +0902.1572 Materials Science +0902.1589 +0902.1618 Superconductivity +0902.1645 Solar and Stellar Astrophysics +0902.1648 Astrophysics of Galaxies +0902.1652 Cosmology and Nongalactic Astrophysics +0902.1654 Statistical Mechanics +0902.1660 +0902.1675 Solar and Stellar Astrophysics +0902.1679 Materials Science +0902.1687 Materials Science +0902.1747 Cosmology and Nongalactic Astrophysics +0902.1751 Solar and Stellar Astrophysics +0902.1753 Solar and Stellar Astrophysics +0902.1762 Plasma Physics +0902.1773 Solar and Stellar Astrophysics +0902.1789 High Energy Astrophysical Phenomena +0902.1799 Solar and Stellar Astrophysics +0902.1802 Cosmology and Nongalactic Astrophysics +0902.1812 Solar and Stellar Astrophysics +0902.1822 Statistical Mechanics +0902.1831 Materials Science +0902.1867 Solar and Stellar Astrophysics +0902.1876 Solar and Stellar Astrophysics +0902.1888 Statistical Mechanics +0902.1897 Cosmology and Nongalactic Astrophysics +0902.1914 +0902.1934 Cosmology and Nongalactic Astrophysics +0902.1943 Optics +0902.1952 Superconductivity +0902.1953 Materials Science +0902.1991 Cosmology and Nongalactic Astrophysics +0902.2005 Astrophysics of Galaxies +0902.2022 Cosmology and Nongalactic Astrophysics +0902.2044 Materials Science +0902.2046 Materials Science +0902.2057 Cosmology and Nongalactic Astrophysics +0902.2060 Statistical Mechanics +0902.2065 Trading and Market Microstructure +0902.2070 Trading and Market Microstructure +0902.2075 Disordered Systems and Neural Networks +0902.2100 Cosmology and Nongalactic Astrophysics +0902.2124 Solar and Stellar Astrophysics +0902.2127 Astrophysics of Galaxies +0902.2158 Instrumentation and Methods for Astrophysics +0902.2170 Superconductivity +0902.2171 Other Condensed Matter +0902.2177 Solar and Stellar Astrophysics +0902.2199 High Energy Astrophysical Phenomena +0902.2201 Theory +0902.2208 Other Condensed Matter +0902.2210 Instrumentation and Methods for Astrophysics +0902.2219 Earth and Planetary Astrophysics +0902.2239 Biomolecules +0902.2240 Superconductivity +0902.2265 Solar and Stellar Astrophysics +0902.2282 High Energy Astrophysical Phenomena +0902.2288 Materials Science +0902.2324 Astrophysics of Galaxies +0902.2336 Cosmology and Nongalactic Astrophysics +0902.2347 Astrophysics of Galaxies +0902.2374 Solar and Stellar Astrophysics +0902.2421 +0902.2424 Solar and Stellar Astrophysics +0902.2426 Astrophysics of Galaxies +0902.2439 +0902.2452 Solar and Stellar Astrophysics +0902.2475 Astrophysics of Galaxies +0902.2484 +0902.2492 Astrophysics of Galaxies +0902.2517 Cosmology and Nongalactic Astrophysics +0902.2553 Optics +0902.2558 Atomic Physics +0902.2560 Biological Physics +0902.2572 Superconductivity +0902.2582 Solar and Stellar Astrophysics +0902.2597 Cosmology and Nongalactic Astrophysics +0902.2630 Cosmology and Nongalactic Astrophysics +0902.2632 Fluid Dynamics +0902.2642 Solar and Stellar Astrophysics +0902.2644 Optics +0902.2651 Earth and Planetary Astrophysics +0902.2661 Instrumentation and Methods for Astrophysics +0902.2662 Strongly Correlated Electrons +0902.2678 Superconductivity +0902.2710 Plasma Physics +0902.2721 Other Condensed Matter +0902.2733 High Energy Astrophysical Phenomena +0902.2753 Solar and Stellar Astrophysics +0902.2763 Soft Condensed Matter +0902.2780 Cosmology and Nongalactic Astrophysics +0902.2781 Cosmology and Nongalactic Astrophysics +0902.2793 High Energy Astrophysical Phenomena +0902.2806 Cosmology and Nongalactic Astrophysics +0902.2824 Solar and Stellar Astrophysics +0902.2828 Mesoscale and Nanoscale Physics +0902.2834 +0902.2872 Superconductivity +0902.2873 Earth and Planetary Astrophysics +0902.2883 Superconductivity +0902.2894 Statistical Mechanics +0902.2927 Astrophysics of Galaxies +0902.2978 +0902.2994 Methodology +0902.2997 Earth and Planetary Astrophysics +0902.3003 Cosmology and Nongalactic Astrophysics +0902.3007 High Energy Astrophysical Phenomena +0902.3010 Cosmology and Nongalactic Astrophysics +0902.3049 High Energy Astrophysical Phenomena +0902.3063 Atomic Physics +0902.3083 Solar and Stellar Astrophysics +0902.3092 Instrumentation and Methods for Astrophysics +0902.3094 Materials Science +0902.3101 +0902.3107 +0902.3117 Cosmology and Nongalactic Astrophysics +0902.3162 Pattern Formation and Solitons +0902.3168 Astrophysics of Galaxies +0902.3189 Other Condensed Matter +0902.3195 Cosmology and Nongalactic Astrophysics +0902.3211 Disordered Systems and Neural Networks +0902.3240 Materials Science +0902.3247 Earth and Planetary Astrophysics +0902.3268 Materials Science +0902.3279 Superconductivity +0902.3281 Solar and Stellar Astrophysics +0902.3285 High Energy Astrophysical Phenomena +0902.3305 Mesoscale and Nanoscale Physics +0902.3326 Astrophysics of Galaxies +0902.3327 Solar and Stellar Astrophysics +0902.3337 +0902.3349 Cosmology and Nongalactic Astrophysics +0902.3367 Solar and Stellar Astrophysics +0902.3369 Cosmology and Nongalactic Astrophysics +0902.3374 Astrophysics of Galaxies +0902.3379 Superconductivity +0902.3385 High Energy Astrophysical Phenomena +0902.3388 Cosmology and Nongalactic Astrophysics +0902.3403 Astrophysics of Galaxies +0902.3457 Earth and Planetary Astrophysics +0902.3459 Earth and Planetary Astrophysics +0902.3509 Solar and Stellar Astrophysics +0902.3511 Mesoscale and Nanoscale Physics +0902.3524 Pattern Formation and Solitons +0902.3540 High Energy Astrophysical Phenomena +0902.3574 Solar and Stellar Astrophysics +0902.3575 Superconductivity +0902.3600 +0902.3621 Solar and Stellar Astrophysics +0902.3667 Cosmology and Nongalactic Astrophysics +0902.3678 Materials Science +0902.3679 Astrophysics of Galaxies +0902.3682 Earth and Planetary Astrophysics +0902.3691 Superconductivity +0902.3697 Materials Science +0902.3698 Solar and Stellar Astrophysics +0902.3712 +0902.3797 +0902.3803 Strongly Correlated Electrons +0902.3813 +0902.3816 +0902.3856 Solar and Stellar Astrophysics +0902.3869 Solar and Stellar Astrophysics +0902.3872 Pattern Formation and Solitons +0902.3907 Solar and Stellar Astrophysics +0902.3936 Soft Condensed Matter +0902.3943 Astrophysics of Galaxies +0902.3960 High Energy Astrophysical Phenomena +0902.3997 Cosmology and Nongalactic Astrophysics +0902.4005 Astrophysics of Galaxies +0902.4007 High Energy Astrophysical Phenomena +0902.4021 Molecular Networks +0902.4023 Astrophysics of Galaxies +0902.4039 High Energy Astrophysical Phenomena +0902.4057 Solar and Stellar Astrophysics +0902.4071 Cosmology and Nongalactic Astrophysics +0902.4080 Cosmology and Nongalactic Astrophysics +0902.4090 Superconductivity +0902.4096 Solar and Stellar Astrophysics +0902.4138 Astrophysics of Galaxies +0902.4158 Optics +0902.4162 Astrophysics of Galaxies +0902.4198 Statistical Mechanics +0902.4203 Populations and Evolution +0902.4230 Astrophysics of Galaxies +0902.4236 Astrophysics of Galaxies +0902.4241 Superconductivity +0902.4242 Astrophysics of Galaxies +0902.4259 Solar and Stellar Astrophysics +0902.4261 Solar and Stellar Astrophysics +0902.4264 High Energy Astrophysical Phenomena +0902.4279 Solar and Stellar Astrophysics +0902.4315 Earth and Planetary Astrophysics +0902.4331 Geophysics +0902.4356 Solar and Stellar Astrophysics +0902.4384 +0902.4398 High Energy Astrophysical Phenomena +0902.4404 +0902.4414 +0902.4420 Space Physics +0902.4426 Solar and Stellar Astrophysics +0902.4464 Astrophysics of Galaxies +0902.4469 Solar and Stellar Astrophysics +0902.4470 Astrophysics of Galaxies +0902.4484 High Energy Astrophysical Phenomena +0902.4536 Differential Geometry +0902.4550 Mesoscale and Nanoscale Physics +0902.4554 Earth and Planetary Astrophysics +0902.4580 Materials Science +0902.4593 +0902.4603 +0902.4616 Earth and Planetary Astrophysics +0902.4629 Cosmology and Nongalactic Astrophysics +0902.4633 Strongly Correlated Electrons +0902.4634 Theory +0902.4659 Fluid Dynamics +0902.4687 Earth and Planetary Astrophysics +0902.4689 Astrophysics of Galaxies +0902.4705 Optics +0902.4718 Cosmology and Nongalactic Astrophysics +0902.4720 Astrophysics of Galaxies +0902.4727 Solar and Stellar Astrophysics +0902.4734 Statistical Mechanics +0902.4735 Other Condensed Matter +0902.4737 Superconductivity +0902.4751 Astrophysics of Galaxies +0902.4760 +0902.4769 Biological Physics +0902.4778 Solar and Stellar Astrophysics +0902.4810 +0902.4826 Solar and Stellar Astrophysics +0902.4828 +0902.4837 Strongly Correlated Electrons +0902.4844 Plasma Physics +0902.4853 Solar and Stellar Astrophysics +0902.4872 Solar and Stellar Astrophysics +0902.4897 Materials Science +0903.0009 +0903.0021 +0903.0066 +0903.0127 Neurons and Cognition +0903.0129 +0903.0183 Astrophysics of Galaxies +0903.0193 +0903.0204 Astrophysics of Galaxies +0903.0215 Astrophysics of Galaxies +0903.0253 +0903.0325 Solar and Stellar Astrophysics +0903.0329 High Energy Astrophysical Phenomena +0903.0341 Astrophysics of Galaxies +0903.0360 High Energy Astrophysical Phenomena +0903.0368 Astrophysics of Galaxies +0903.0376 Astrophysics of Galaxies +0903.0378 Cosmology and Nongalactic Astrophysics +0903.0382 Cosmology and Nongalactic Astrophysics +0903.0387 Astrophysics of Galaxies +0903.0425 Probability +0903.0432 +0903.0452 Cosmology and Nongalactic Astrophysics +0903.0462 Disordered Systems and Neural Networks +0903.0512 Other Condensed Matter +0903.0557 Mesoscale and Nanoscale Physics +0903.0558 Soft Condensed Matter +0903.0567 Theory +0903.0603 Astrophysics of Galaxies +0903.0611 Solar and Stellar Astrophysics +0903.0637 Atomic Physics +0903.0652 Earth and Planetary Astrophysics +0903.0672 Astrophysics of Galaxies +0903.0681 Materials Science +0903.0716 High Energy Astrophysical Phenomena +0903.0718 Cosmology and Nongalactic Astrophysics +0903.0725 Superconductivity +0903.0746 Soft Condensed Matter +0903.0773 Optics +0903.0785 Materials Science +0903.0788 Materials Science +0903.0858 Solar and Stellar Astrophysics +0903.0860 Earth and Planetary Astrophysics +0903.0862 Cosmology and Nongalactic Astrophysics +0903.0879 +0903.0890 Astrophysics of Galaxies +0903.0943 Statistical Mechanics +0903.0966 Solar and Stellar Astrophysics +0903.0972 High Energy Astrophysical Phenomena +0903.0990 Materials Science +0903.1008 Solar and Stellar Astrophysics +0903.1045 Solar and Stellar Astrophysics +0903.1085 +0903.1101 Earth and Planetary Astrophysics +0903.1104 Solar and Stellar Astrophysics +0903.1121 Biological Physics +0903.1135 Cosmology and Nongalactic Astrophysics +0903.1149 +0903.1167 Strongly Correlated Electrons +0903.1210 +0903.1217 Phenomenology +0903.1230 Mesoscale and Nanoscale Physics +0903.1253 Statistical Mechanics +0903.1276 Other Condensed Matter +0903.1290 Materials Science +0903.1304 Statistical Mechanics +0903.1317 Earth and Planetary Astrophysics +0903.1333 Solar and Stellar Astrophysics +0903.1347 Strongly Correlated Electrons +0903.1351 Solar and Stellar Astrophysics +0903.1354 Instrumentation and Methods for Astrophysics +0903.1357 Solar and Stellar Astrophysics +0903.1360 Mesoscale and Nanoscale Physics +0903.1382 Superconductivity +0903.1395 Superconductivity +0903.1414 High Energy Astrophysical Phenomena +0903.1421 Superconductivity +0903.1510 +0903.1516 Cosmology and Nongalactic Astrophysics +0903.1567 Solar and Stellar Astrophysics +0903.1589 Cosmology and Nongalactic Astrophysics +0903.1623 Solar and Stellar Astrophysics +0903.1644 Astrophysics of Galaxies +0903.1661 Cosmology and Nongalactic Astrophysics +0903.1720 Earth and Planetary Astrophysics +0903.1745 Materials Science +0903.1749 Solar and Stellar Astrophysics +0903.1754 Astrophysics of Galaxies +0903.1806 Mesoscale and Nanoscale Physics +0903.1843 Astrophysics of Galaxies +0903.1853 Materials Science +0903.1858 Cosmology and Nongalactic Astrophysics +0903.1870 Astrophysics of Galaxies +0903.1887 Mesoscale and Nanoscale Physics +0903.1898 Other Condensed Matter +0903.1899 Astrophysics of Galaxies +0903.1901 Astrophysics of Galaxies +0903.1905 Astrophysics of Galaxies +0903.1926 Solar and Stellar Astrophysics +0903.1946 Astrophysics of Galaxies +0903.1948 Solar and Stellar Astrophysics +0903.1977 +0903.1982 Solar and Stellar Astrophysics +0903.1990 Atomic Physics +0903.2008 Cosmology and Nongalactic Astrophysics +0903.2151 Superconductivity +0903.2233 Cosmology and Nongalactic Astrophysics +0903.2260 Solar and Stellar Astrophysics +0903.2304 +0903.2333 Disordered Systems and Neural Networks +0903.2340 Solar and Stellar Astrophysics +0903.2348 Materials Science +0903.2424 +0903.2496 Astrophysics of Galaxies +0903.2505 Earth and Planetary Astrophysics +0903.2521 Solar and Stellar Astrophysics +0903.2522 Mesoscale and Nanoscale Physics +0903.2558 Solar and Stellar Astrophysics +0903.2576 Solar and Stellar Astrophysics +0903.2586 Strongly Correlated Electrons +0903.2590 Soft Condensed Matter +0903.2616 Materials Science +0903.2639 Materials Science +0903.2650 Materials Science +0903.2655 +0903.2697 Solar and Stellar Astrophysics +0903.2736 Statistical Mechanics +0903.2751 Other Condensed Matter +0903.2758 Superconductivity +0903.2787 Statistical Mechanics +0903.2939 Chaotic Dynamics +0903.2988 Earth and Planetary Astrophysics +0903.3011 Astrophysics of Galaxies +0903.3023 High Energy Astrophysical Phenomena +0903.3040 Solar and Stellar Astrophysics +0903.3045 +0903.3082 Solar and Stellar Astrophysics +0903.3085 +0903.3092 +0903.3104 +0903.3145 +0903.3210 High Energy Astrophysical Phenomena +0903.3238 +0903.3273 Cosmology and Nongalactic Astrophysics +0903.3320 Materials Science +0903.3403 Cosmology and Nongalactic Astrophysics +0903.3417 +0903.3430 Solar and Stellar Astrophysics +0903.3440 Solar and Stellar Astrophysics +0903.3448 +0903.3546 Solar and Stellar Astrophysics +0903.3563 Astrophysics of Galaxies +0903.3597 Earth and Planetary Astrophysics +0903.3712 +0903.3713 +0903.3739 Other Condensed Matter +0903.3770 Soft Condensed Matter +0903.3776 Solar and Stellar Astrophysics +0903.3779 Theory +0903.3811 Solar and Stellar Astrophysics +0903.3948 Cosmology and Nongalactic Astrophysics +0903.3957 +0903.3981 High Energy Astrophysical Phenomena +0903.3999 +0903.4031 Solar and Stellar Astrophysics +0903.4066 +0903.4167 Astrophysics of Galaxies +0903.4186 Solar and Stellar Astrophysics +0903.4187 Earth and Planetary Astrophysics +0903.4191 Cosmology and Nongalactic Astrophysics +0903.4209 Cosmology and Nongalactic Astrophysics +0903.4220 Mesoscale and Nanoscale Physics +0903.4269 Quantum Gases +0903.4448 Astrophysics of Galaxies +0903.4531 Astrophysics of Galaxies +0903.4600 +0903.4751 Strongly Correlated Electrons +0903.4791 +0903.4795 +0903.5011 Cosmology and Nongalactic Astrophysics +0903.5019 +0903.5082 +0903.5121 Earth and Planetary Astrophysics +0903.5188 +0903.5214 Materials Science +0903.5222 Cosmology and Nongalactic Astrophysics +0903.5385 Optics +0903.5386 High Energy Astrophysical Phenomena +0903.5394 Soft Condensed Matter +0903.5395 Soft Condensed Matter +0903.5414 Soft Condensed Matter +0903.5435 Analysis of PDEs +0903.5457 +0903.5520 Theory +0903.5529 +0904.0063 +0904.0089 Theory +0904.0122 Instrumentation and Detectors +0904.0130 Materials Science +0904.0181 Other Condensed Matter +0904.0195 +0904.0198 +0904.0206 Soft Condensed Matter +0904.0207 +0904.0248 Cosmology and Nongalactic Astrophysics +0904.0286 Astrophysics of Galaxies +0904.0294 Strongly Correlated Electrons +0904.0303 Algebraic Geometry +0904.0476 Mesoscale and Nanoscale Physics +0904.0553 Cosmology and Nongalactic Astrophysics +0904.0670 Astrophysics of Galaxies +0904.0774 Cosmology and Nongalactic Astrophysics +0904.0781 +0904.0836 Chemical Physics +0904.0840 Theory +0904.0875 Chemical Physics +0904.0882 +0904.0896 General Finance +0904.0898 +0904.0931 +0904.1029 High Energy Astrophysical Phenomena +0904.1111 +0904.1133 Theory +0904.1146 Solar and Stellar Astrophysics +0904.1209 Cosmology and Nongalactic Astrophysics +0904.1217 Solar and Stellar Astrophysics +0904.1231 Cosmology and Nongalactic Astrophysics +0904.1244 Solar and Stellar Astrophysics +0904.1335 Mesoscale and Nanoscale Physics +0904.1348 Quantum Gases +0904.1404 Statistical Finance +0904.1425 Astrophysics of Galaxies +0904.1661 Earth and Planetary Astrophysics +0904.1713 High Energy Astrophysical Phenomena +0904.1791 +0904.1822 Solar and Stellar Astrophysics +0904.1905 Mesoscale and Nanoscale Physics +0904.2011 Cosmology and Nongalactic Astrophysics +0904.2145 Fluid Dynamics +0904.2239 Adaptation and Self-Organizing Systems +0904.2297 Theory +0904.2412 Soft Condensed Matter +0904.2434 Pattern Formation and Solitons +0904.2468 +0904.2531 Cosmology and Nongalactic Astrophysics +0904.2590 Cosmology and Nongalactic Astrophysics +0904.2610 Materials Science +0904.2670 +0904.2729 Statistical Mechanics +0904.2773 Solar and Stellar Astrophysics +0904.2859 History and Philosophy of Physics +0904.3194 Cosmology and Nongalactic Astrophysics +0904.3210 Trading and Market Microstructure +0904.3250 +0904.3437 Theory +0904.3450 Lattice +0904.3546 Cosmology and Nongalactic Astrophysics +0904.3550 Cosmology and Nongalactic Astrophysics +0904.3579 Mesoscale and Nanoscale Physics +0904.3597 Mesoscale and Nanoscale Physics +0904.3642 Information Theory +0904.3725 Solar and Stellar Astrophysics +0904.3896 Materials Science +0904.3901 Astrophysics of Galaxies +0904.4031 Cosmology and Nongalactic Astrophysics +0904.4270 Theory +0904.4421 Instrumentation and Detectors +0904.4597 Mesoscale and Nanoscale Physics +0904.4601 Theory +0904.4612 Quantum Gases +0904.4618 Chemical Physics +0904.4622 Chemical Physics +0904.4629 Chemical Physics +0904.4649 Astrophysics of Galaxies +0904.4704 Earth and Planetary Astrophysics +0904.4734 Materials Science +0904.4771 Chemical Physics +0904.4914 Other Condensed Matter +0905.0529 Solar and Stellar Astrophysics +0905.0535 +0905.0623 +0905.3072 Phenomenology +0905.3408 +0905.4078 +0905.4445 +0905.4538 Theory +0905.4886 +0906.0043 Combinatorics +0906.0946 Atomic Physics +0906.1654 Astrophysics of Galaxies +0906.1789 Theory +0906.2441 Theory +0906.2546 Theory +0906.2750 Soft Condensed Matter +0906.3285 High Energy Astrophysical Phenomena +0906.3477 Theory +0906.4108 Cosmology and Nongalactic Astrophysics +0906.4116 Cosmology and Nongalactic Astrophysics +0906.4765 High Energy Astrophysical Phenomena +0906.4976 Cosmology and Nongalactic Astrophysics +0906.5048 Phenomenology +0907.0015 Cosmology and Nongalactic Astrophysics +0907.0151 Theory +0907.0735 Cosmology and Nongalactic Astrophysics +0907.1354 High Energy Astrophysical Phenomena +0907.1550 Analysis of PDEs +0907.1756 Phenomenology +0907.2189 Theory +0907.2647 Theory +0907.2880 Theory +0907.2988 Phenomenology +0907.3496 Phenomenology +0907.3648 General Physics +0907.3665 Theory +0907.4543 Theory +0908.0161 Phenomenology +0908.0417 Theory +0908.0532 Phenomenology +0908.0934 Materials Science +0908.1738 Theory +0908.1897 Phenomenology +0908.2121 Theory +0908.2378 Biomolecules +0908.2688 Strongly Correlated Electrons +0908.3149 Theory +0908.3323 +0908.3399 Phenomenology +0908.3406 Phenomenology +0908.4259 Phenomenology +0908.4270 Experiment +0908.4272 Phenomenology +0909.0070 +0909.0152 +0909.0163 Theory +0909.0190 +0909.0242 Instrumentation and Detectors +0909.1958 +0909.2304 Algebraic Geometry +0909.2900 Phenomenology +0909.4377 Solar and Stellar Astrophysics +0909.4479 +0909.4902 Superconductivity +0909.4955 Symbolic Computation +0909.5551 Phenomenology +0910.0141 Strongly Correlated Electrons +0910.1138 Strongly Correlated Electrons +0910.3490 Information Retrieval +0910.4150 Physics and Society +0910.4676 Number Theory +0910.5037 Symplectic Geometry +0910.5489 Group Theory +0911.1286 Representation Theory +0911.1346 Multiagent Systems +0911.1664 +0911.1774 Cosmology and Nongalactic Astrophysics +0911.2150 Instrumentation and Methods for Astrophysics +0911.2170 Astrophysics of Galaxies +0911.2227 Probability +0911.2233 Formal Languages and Automata Theory +0911.2250 Commutative Algebra +0911.2256 Complex Variables +0911.2259 Soft Condensed Matter +0911.2262 Probability +0911.2263 Complex Variables +0911.2265 Soft Condensed Matter +0911.2266 Complex Variables +0911.2268 Materials Science +0911.2270 Numerical Analysis +0911.2275 Complex Variables +0911.2277 Complex Variables +0911.2286 Atmospheric and Oceanic Physics +0911.2293 Cryptography and Security +0911.2294 Analysis of PDEs +0911.2307 +0911.2309 Phenomenology +0911.2313 Analysis of PDEs +0911.2317 Computational Complexity +0911.2319 Logic in Computer Science +0911.2320 Formal Languages and Automata Theory +0911.2322 Discrete Mathematics +0911.2323 Logic in Computer Science +0911.2324 Neural and Evolutionary Computing +0911.2325 Computational Complexity +0911.2327 Programming Languages +0911.2330 Computational Engineering, Finance, and Science +0911.2342 Methodology +0911.2343 Algebraic Geometry +0911.2346 Information Theory +0911.2347 +0911.2358 Solar and Stellar Astrophysics +0911.2360 +0911.2364 Digital Libraries +0911.2369 Representation Theory +0911.2381 Data Analysis, Statistics and Probability +0911.2384 Combinatorics +0911.2385 Probability +0911.2387 Neurons and Cognition +0911.2388 Physics and Society +0911.2390 Artificial Intelligence +0911.2400 Mesoscale and Nanoscale Physics +0911.2405 Artificial Intelligence +0911.2413 Strongly Correlated Electrons +0911.2418 Probability +0911.2421 Theory +0911.2423 Programming Languages +0911.2424 Metric Geometry +0911.2431 Astrophysics of Galaxies +0911.2432 +0911.2436 Probability +0911.2439 Chaotic Dynamics +0911.2442 Geometric Topology +0911.2445 +0911.2451 +0911.2455 Combinatorics +0911.2457 Phenomenology +0911.2466 Discrete Mathematics +astro-ph/0506407 +astro-ph/0506408 +astro-ph/0506409 +astro-ph/0506410 +astro-ph/0506417 +astro-ph/0506419 +astro-ph/0506423 +astro-ph/0506425 +astro-ph/0506426 +astro-ph/0506432 +astro-ph/0506433 +astro-ph/0506434 +astro-ph/0506435 +astro-ph/0506436 +astro-ph/0506438 +astro-ph/0506439 +astro-ph/0506440 +astro-ph/0506442 +astro-ph/0506449 +astro-ph/0506451 +astro-ph/0506452 +astro-ph/0506454 +astro-ph/0506455 +astro-ph/0506462 +astro-ph/0506464 +astro-ph/0506465 +astro-ph/0506466 +astro-ph/0506469 +astro-ph/0506470 +astro-ph/0506471 +astro-ph/0506473 +astro-ph/0506474 +astro-ph/0506476 +astro-ph/0506478 +astro-ph/0506482 +astro-ph/0506486 +astro-ph/0506489 +astro-ph/0506490 +astro-ph/0506492 +astro-ph/0506493 +astro-ph/0506495 +astro-ph/0506498 +astro-ph/0506500 +astro-ph/0506501 +astro-ph/0506502 +astro-ph/0506511 +astro-ph/0506513 +astro-ph/0506515 +astro-ph/0506516 +astro-ph/0506518 +astro-ph/0506520 +astro-ph/0506527 +astro-ph/0506528 +astro-ph/0506529 +astro-ph/0506532 +astro-ph/0506533 +astro-ph/0506535 +astro-ph/0506537 +astro-ph/0506547 +astro-ph/0506549 +astro-ph/0506550 +astro-ph/0506552 +astro-ph/0506554 +astro-ph/0506555 +astro-ph/0506558 +astro-ph/0506560 +astro-ph/0506563 +astro-ph/0506564 +astro-ph/0506565 +astro-ph/0506566 +astro-ph/0506571 +astro-ph/0506572 +astro-ph/0506574 +astro-ph/0506575 +astro-ph/0506578 +astro-ph/0506580 +astro-ph/0506594 +astro-ph/0506599 +astro-ph/0506600 +astro-ph/0506601 +astro-ph/0506602 +astro-ph/0506607 +astro-ph/0506609 +astro-ph/0506612 +astro-ph/0506614 +astro-ph/0506615 +astro-ph/0506616 +astro-ph/0506619 +astro-ph/0506621 +astro-ph/0506625 +astro-ph/0506626 +astro-ph/0506627 +astro-ph/0506629 +astro-ph/0506630 +astro-ph/0506640 +astro-ph/0506641 +astro-ph/0506643 +astro-ph/0506644 +astro-ph/0506645 +astro-ph/0506647 +astro-ph/0506654 +astro-ph/0506657 +astro-ph/0506658 +astro-ph/0506659 +astro-ph/0506661 +astro-ph/0506663 +astro-ph/0506664 +astro-ph/0506665 +astro-ph/0506667 +astro-ph/0506670 +astro-ph/0506671 +astro-ph/0506673 +astro-ph/0506674 +astro-ph/0506681 +astro-ph/0506682 +astro-ph/0506684 +astro-ph/0506685 +astro-ph/0506687 +astro-ph/0506689 +astro-ph/0506691 +astro-ph/0506693 +astro-ph/0506694 +astro-ph/0506696 +astro-ph/0506698 +astro-ph/0506699 +astro-ph/0506702 +astro-ph/0506703 +astro-ph/0506704 +astro-ph/0506707 +astro-ph/0506711 +astro-ph/0506712 +astro-ph/0506713 +astro-ph/0506715 +astro-ph/0506716 +astro-ph/0506717 +astro-ph/0506720 +astro-ph/0506723 +astro-ph/0506724 +astro-ph/0506725 +astro-ph/0506726 +astro-ph/0506727 +astro-ph/0506735 +astro-ph/0506736 +astro-ph/0506739 +astro-ph/0506742 +astro-ph/0506747 +astro-ph/0506748 +astro-ph/0506753 +astro-ph/0506757 +astro-ph/0506763 +astro-ph/0506764 +astro-ph/0506765 +astro-ph/0506766 +astro-ph/0507003 +astro-ph/0507005 +astro-ph/0507007 +astro-ph/0507009 +astro-ph/0507012 +astro-ph/0507015 +astro-ph/0507022 +astro-ph/0507033 +astro-ph/0507037 +astro-ph/0507038 +astro-ph/0507040 +astro-ph/0507041 +astro-ph/0507047 +astro-ph/0507048 +astro-ph/0507049 +astro-ph/0507050 +astro-ph/0507052 +astro-ph/0507053 +astro-ph/0507054 +astro-ph/0507057 +astro-ph/0507058 +astro-ph/0507059 +astro-ph/0507062 +astro-ph/0507063 +astro-ph/0507067 +astro-ph/0507069 +astro-ph/0507073 +astro-ph/0507078 +astro-ph/0507079 +astro-ph/0507080 +astro-ph/0507081 +astro-ph/0507084 +astro-ph/0507087 +astro-ph/0507090 +astro-ph/0507091 +astro-ph/0507094 +astro-ph/0507095 +astro-ph/0507096 +astro-ph/0507097 +astro-ph/0507098 +astro-ph/0507100 +astro-ph/0507102 +astro-ph/0507104 +astro-ph/0507106 +astro-ph/0507110 +astro-ph/0507114 +astro-ph/0507122 +astro-ph/0507125 +astro-ph/0507126 +astro-ph/0507129 +astro-ph/0507136 +astro-ph/0507137 +astro-ph/0507146 +astro-ph/0507147 +astro-ph/0507151 +astro-ph/0507152 +astro-ph/0507154 +astro-ph/0507156 +astro-ph/0507169 +astro-ph/0507174 +astro-ph/0507177 +astro-ph/0507181 +astro-ph/0507182 +astro-ph/0507183 +astro-ph/0507185 +astro-ph/0507186 +astro-ph/0507191 +astro-ph/0507192 +astro-ph/0507193 +astro-ph/0507195 +astro-ph/0507204 +astro-ph/0507205 +astro-ph/0507208 +astro-ph/0507210 +astro-ph/0507212 +astro-ph/0507213 +astro-ph/0507215 +astro-ph/0507218 +astro-ph/0507219 +astro-ph/0507221 +astro-ph/0507223 +astro-ph/0507225 +astro-ph/0507227 +astro-ph/0507229 +astro-ph/0507230 +astro-ph/0507237 +astro-ph/0507239 +astro-ph/0507241 +astro-ph/0507245 +astro-ph/0507250 +astro-ph/0507256 +astro-ph/0507259 +astro-ph/0507260 +astro-ph/0507262 +astro-ph/0507265 +astro-ph/0507266 +astro-ph/0507269 +astro-ph/0507273 +astro-ph/0507274 +astro-ph/0507281 +astro-ph/0507284 +astro-ph/0507290 +astro-ph/0507292 +astro-ph/0507294 +astro-ph/0507297 +astro-ph/0507298 +astro-ph/0507301 +astro-ph/0507302 +astro-ph/0507306 +astro-ph/0507309 +astro-ph/0507310 +astro-ph/0507312 +astro-ph/0507322 +astro-ph/0507324 +astro-ph/0507325 +astro-ph/0507326 +astro-ph/0507327 +astro-ph/0507328 +astro-ph/0507330 +astro-ph/0507332 +astro-ph/0507335 +astro-ph/0507336 +astro-ph/0507337 +astro-ph/0507338 +astro-ph/0507341 +astro-ph/0507345 +astro-ph/0507346 +astro-ph/0507348 +astro-ph/0507349 +astro-ph/0507350 +astro-ph/0507351 +astro-ph/0507353 +astro-ph/0507354 +astro-ph/0507355 +astro-ph/0507357 +astro-ph/0507358 +astro-ph/0507360 +astro-ph/0507361 +astro-ph/0507365 +astro-ph/0507368 +astro-ph/0507369 +astro-ph/0507370 +astro-ph/0507372 +astro-ph/0507377 +astro-ph/0507383 +astro-ph/0507384 +astro-ph/0507386 +astro-ph/0507389 +astro-ph/0507391 +astro-ph/0507392 +astro-ph/0507394 +astro-ph/0507396 +astro-ph/0507397 +astro-ph/0507406 +astro-ph/0507408 +astro-ph/0507411 +astro-ph/0507416 +astro-ph/0507420 +astro-ph/0507421 +astro-ph/0507422 +astro-ph/0507424 +astro-ph/0507425 +astro-ph/0507426 +astro-ph/0507428 +astro-ph/0507429 +astro-ph/0507431 +astro-ph/0507434 +astro-ph/0507438 +astro-ph/0507439 +astro-ph/0507442 +astro-ph/0507443 +astro-ph/0507444 +astro-ph/0507453 +astro-ph/0507454 +astro-ph/0507461 +astro-ph/0507462 +astro-ph/0507466 +astro-ph/0507468 +astro-ph/0507469 +astro-ph/0507471 +astro-ph/0507473 +astro-ph/0507477 +astro-ph/0507478 +astro-ph/0507480 +astro-ph/0507487 +astro-ph/0507489 +astro-ph/0507491 +astro-ph/0507493 +astro-ph/0507495 +astro-ph/0507497 +astro-ph/0507500 +astro-ph/0507504 +astro-ph/0507506 +astro-ph/0507508 +astro-ph/0507511 +astro-ph/0507513 +astro-ph/0507519 +astro-ph/0507520 +astro-ph/0507521 +astro-ph/0507523 +astro-ph/0507524 +astro-ph/0507529 +astro-ph/0507530 +astro-ph/0507531 +astro-ph/0507533 +astro-ph/0507535 +astro-ph/0507536 +astro-ph/0507539 +astro-ph/0507541 +astro-ph/0507543 +astro-ph/0507544 +astro-ph/0507546 +astro-ph/0507551 +astro-ph/0507553 +astro-ph/0507558 +astro-ph/0507561 +astro-ph/0507562 +astro-ph/0507564 +astro-ph/0507565 +astro-ph/0507566 +astro-ph/0507567 +astro-ph/0507569 +astro-ph/0507575 +astro-ph/0507576 +astro-ph/0507579 +astro-ph/0507581 +astro-ph/0507586 +astro-ph/0507587 +astro-ph/0507589 +astro-ph/0507593 +astro-ph/0507595 +astro-ph/0507596 +astro-ph/0507598 +astro-ph/0507599 +astro-ph/0507608 +astro-ph/0507610 +astro-ph/0507611 +astro-ph/0507616 +astro-ph/0507621 +astro-ph/0507623 +astro-ph/0507624 +astro-ph/0507625 +astro-ph/0507626 +astro-ph/0507628 +astro-ph/0507630 +astro-ph/0507634 +astro-ph/0507637 +astro-ph/0507638 +astro-ph/0507640 +astro-ph/0507641 +astro-ph/0507642 +astro-ph/0507643 +astro-ph/0507644 +astro-ph/0507646 +astro-ph/0507647 +astro-ph/0507651 +astro-ph/0507653 +astro-ph/0507654 +astro-ph/0507657 +astro-ph/0507660 +astro-ph/0507661 +astro-ph/0507662 +astro-ph/0507670 +astro-ph/0507671 +astro-ph/0507673 +astro-ph/0507674 +astro-ph/0507676 +astro-ph/0507683 +astro-ph/0507684 +astro-ph/0507685 +astro-ph/0507687 +astro-ph/0507689 +astro-ph/0507694 +astro-ph/0507699 +astro-ph/0507702 +astro-ph/0507707 +astro-ph/0507718 +astro-ph/0507719 +astro-ph/0508003 +astro-ph/0508009 +astro-ph/0508012 +astro-ph/0508021 +astro-ph/0508022 +astro-ph/0508026 +astro-ph/0508030 +astro-ph/0508034 +astro-ph/0508038 +astro-ph/0508039 +astro-ph/0508041 +astro-ph/0508042 +astro-ph/0508043 +astro-ph/0508048 +astro-ph/0508053 +astro-ph/0508056 +astro-ph/0508059 +astro-ph/0508066 +astro-ph/0508067 +astro-ph/0508079 +astro-ph/0508080 +astro-ph/0508082 +astro-ph/0508085 +astro-ph/0508086 +astro-ph/0508087 +astro-ph/0508088 +astro-ph/0508089 +astro-ph/0508090 +astro-ph/0508092 +astro-ph/0508095 +astro-ph/0508097 +astro-ph/0508100 +astro-ph/0508102 +astro-ph/0508103 +astro-ph/0508106 +astro-ph/0508108 +astro-ph/0508112 +astro-ph/0508116 +astro-ph/0508117 +astro-ph/0508118 +astro-ph/0508119 +astro-ph/0508120 +astro-ph/0508123 +astro-ph/0508125 +astro-ph/0508126 +astro-ph/0508128 +astro-ph/0508132 +astro-ph/0508133 +astro-ph/0508134 +astro-ph/0508136 +astro-ph/0508140 +astro-ph/0508141 +astro-ph/0508142 +astro-ph/0508143 +astro-ph/0508144 +astro-ph/0508146 +astro-ph/0508147 +astro-ph/0508148 +astro-ph/0508160 +astro-ph/0508165 +astro-ph/0508167 +astro-ph/0508169 +astro-ph/0508172 +astro-ph/0508175 +astro-ph/0508176 +astro-ph/0508179 +astro-ph/0508180 +astro-ph/0508182 +astro-ph/0508186 +astro-ph/0508187 +astro-ph/0508189 +astro-ph/0508190 +astro-ph/0508192 +astro-ph/0508194 +astro-ph/0508195 +astro-ph/0508199 +astro-ph/0508200 +astro-ph/0508201 +astro-ph/0508206 +astro-ph/0508207 +astro-ph/0508213 +astro-ph/0508216 +astro-ph/0508217 +astro-ph/0508220 +astro-ph/0508225 +astro-ph/0508228 +astro-ph/0508230 +astro-ph/0508231 +astro-ph/0508233 +astro-ph/0508234 +astro-ph/0508236 +astro-ph/0508239 +astro-ph/0508243 +astro-ph/0508247 +astro-ph/0508248 +astro-ph/0508249 +astro-ph/0508251 +astro-ph/0508254 +astro-ph/0508256 +astro-ph/0508259 +astro-ph/0508262 +astro-ph/0508264 +astro-ph/0508268 +astro-ph/0508269 +astro-ph/0508271 +astro-ph/0508272 +astro-ph/0508277 +astro-ph/0508278 +astro-ph/0508287 +astro-ph/0508289 +astro-ph/0508293 +astro-ph/0508295 +astro-ph/0508297 +astro-ph/0508302 +astro-ph/0508303 +astro-ph/0508304 +astro-ph/0508305 +astro-ph/0508308 +astro-ph/0508309 +astro-ph/0508310 +astro-ph/0508311 +astro-ph/0508316 +astro-ph/0508321 +astro-ph/0508323 +astro-ph/0508324 +astro-ph/0508326 +astro-ph/0508327 +astro-ph/0508328 +astro-ph/0508329 +astro-ph/0508330 +astro-ph/0508331 +astro-ph/0508335 +astro-ph/0508336 +astro-ph/0508339 +astro-ph/0508342 +astro-ph/0508343 +astro-ph/0508344 +astro-ph/0508346 +astro-ph/0508353 +astro-ph/0508357 +astro-ph/0508359 +astro-ph/0508364 +astro-ph/0508365 +astro-ph/0508366 +astro-ph/0508369 +astro-ph/0508372 +astro-ph/0508373 +astro-ph/0508374 +astro-ph/0508376 +astro-ph/0508380 +astro-ph/0508381 +astro-ph/0508382 +astro-ph/0508383 +astro-ph/0508384 +astro-ph/0508386 +astro-ph/0508387 +astro-ph/0508388 +astro-ph/0508391 +astro-ph/0508397 +astro-ph/0508398 +astro-ph/0508400 +astro-ph/0508402 +astro-ph/0508403 +astro-ph/0508405 +astro-ph/0508406 +astro-ph/0508409 +astro-ph/0508411 +astro-ph/0508412 +astro-ph/0508420 +astro-ph/0508421 +astro-ph/0508422 +astro-ph/0508424 +astro-ph/0508426 +astro-ph/0508428 +astro-ph/0508431 +astro-ph/0508439 +astro-ph/0508440 +astro-ph/0508442 +astro-ph/0508443 +astro-ph/0508444 +astro-ph/0508448 +astro-ph/0508449 +astro-ph/0508454 +astro-ph/0508457 +astro-ph/0508458 +astro-ph/0508461 +astro-ph/0508463 +astro-ph/0508464 +astro-ph/0508470 +astro-ph/0508474 +astro-ph/0508475 +astro-ph/0508478 +astro-ph/0508479 +astro-ph/0508481 +astro-ph/0508484 +astro-ph/0508487 +astro-ph/0508488 +astro-ph/0508493 +astro-ph/0508495 +astro-ph/0508496 +astro-ph/0508498 +astro-ph/0508502 +astro-ph/0508503 +astro-ph/0508507 +astro-ph/0508508 +astro-ph/0508510 +astro-ph/0508515 +astro-ph/0508519 +astro-ph/0508521 +astro-ph/0508523 +astro-ph/0508524 +astro-ph/0508525 +astro-ph/0508526 +astro-ph/0508527 +astro-ph/0508528 +astro-ph/0508531 +astro-ph/0508532 +astro-ph/0508534 +astro-ph/0508538 +astro-ph/0508540 +astro-ph/0508542 +astro-ph/0508543 +astro-ph/0508544 +astro-ph/0508547 +astro-ph/0508548 +astro-ph/0508550 +astro-ph/0508553 +astro-ph/0508555 +astro-ph/0508556 +astro-ph/0508557 +astro-ph/0508558 +astro-ph/0508560 +astro-ph/0508561 +astro-ph/0508563 +astro-ph/0508566 +astro-ph/0508567 +astro-ph/0508569 +astro-ph/0508578 +astro-ph/0508579 +astro-ph/0508584 +astro-ph/0508586 +astro-ph/0508589 +astro-ph/0508590 +astro-ph/0508594 +astro-ph/0508595 +astro-ph/0508596 +astro-ph/0508597 +astro-ph/0508598 +astro-ph/0508600 +astro-ph/0508601 +astro-ph/0508602 +astro-ph/0508606 +astro-ph/0508608 +astro-ph/0508609 +astro-ph/0508611 +astro-ph/0508612 +astro-ph/0508617 +astro-ph/0508625 +astro-ph/0508626 +astro-ph/0508631 +astro-ph/0508633 +astro-ph/0508634 +astro-ph/0508639 +astro-ph/0508640 +astro-ph/0508647 +astro-ph/0508654 +astro-ph/0508656 +astro-ph/0508658 +astro-ph/0508660 +astro-ph/0508661 +astro-ph/0508665 +astro-ph/0508668 +astro-ph/0508669 +astro-ph/0508670 +astro-ph/0508671 +astro-ph/0508678 +astro-ph/0508680 +astro-ph/0508683 +astro-ph/0508686 +astro-ph/0508688 +astro-ph/0508689 +astro-ph/0508693 +astro-ph/0509003 +astro-ph/0509004 +astro-ph/0509005 +astro-ph/0509007 +astro-ph/0509009 +astro-ph/0509016 +astro-ph/0509019 +astro-ph/0509024 +astro-ph/0509026 +astro-ph/0509027 +astro-ph/0509032 +astro-ph/0509033 +astro-ph/0509034 +astro-ph/0509036 +astro-ph/0509037 +astro-ph/0509038 +astro-ph/0509044 +astro-ph/0509050 +astro-ph/0509051 +astro-ph/0509053 +astro-ph/0509055 +astro-ph/0509056 +astro-ph/0509058 +astro-ph/0509062 +astro-ph/0509063 +astro-ph/0509064 +astro-ph/0509065 +astro-ph/0509066 +astro-ph/0509072 +astro-ph/0509073 +astro-ph/0509075 +astro-ph/0509076 +astro-ph/0509077 +astro-ph/0509078 +astro-ph/0509079 +astro-ph/0509082 +astro-ph/0509083 +astro-ph/0509087 +astro-ph/0509091 +astro-ph/0509094 +astro-ph/0509096 +astro-ph/0509099 +astro-ph/0509101 +astro-ph/0509102 +astro-ph/0509105 +astro-ph/0509108 +astro-ph/0509109 +astro-ph/0509116 +astro-ph/0509122 +astro-ph/0509126 +astro-ph/0509127 +astro-ph/0509130 +astro-ph/0509132 +astro-ph/0509133 +astro-ph/0509136 +astro-ph/0509137 +astro-ph/0509141 +astro-ph/0509142 +astro-ph/0509143 +astro-ph/0509148 +astro-ph/0509149 +astro-ph/0509151 +astro-ph/0509155 +astro-ph/0509156 +astro-ph/0509157 +astro-ph/0509158 +astro-ph/0509160 +astro-ph/0509176 +astro-ph/0509177 +astro-ph/0509181 +astro-ph/0509185 +astro-ph/0509187 +astro-ph/0509188 +astro-ph/0509190 +astro-ph/0509192 +astro-ph/0509193 +astro-ph/0509195 +astro-ph/0509198 +astro-ph/0509199 +astro-ph/0509200 +astro-ph/0509201 +astro-ph/0509202 +astro-ph/0509205 +astro-ph/0509206 +astro-ph/0509209 +astro-ph/0509212 +astro-ph/0509214 +astro-ph/0509216 +astro-ph/0509218 +astro-ph/0509220 +astro-ph/0509221 +astro-ph/0509225 +astro-ph/0509228 +astro-ph/0509230 +astro-ph/0509232 +astro-ph/0509233 +astro-ph/0509235 +astro-ph/0509236 +astro-ph/0509237 +astro-ph/0509240 +astro-ph/0509243 +astro-ph/0509245 +astro-ph/0509246 +astro-ph/0509247 +astro-ph/0509254 +astro-ph/0509257 +astro-ph/0509260 +astro-ph/0509262 +astro-ph/0509265 +astro-ph/0509266 +astro-ph/0509268 +astro-ph/0509270 +astro-ph/0509272 +astro-ph/0509275 +astro-ph/0509276 +astro-ph/0509279 +astro-ph/0509280 +astro-ph/0509282 +astro-ph/0509283 +astro-ph/0509286 +astro-ph/0509289 +astro-ph/0509291 +astro-ph/0509293 +astro-ph/0509298 +astro-ph/0509304 +astro-ph/0509305 +astro-ph/0509308 +astro-ph/0509311 +astro-ph/0509313 +astro-ph/0509317 +astro-ph/0509318 +astro-ph/0509320 +astro-ph/0509321 +astro-ph/0509327 +astro-ph/0509335 +astro-ph/0509338 +astro-ph/0509341 +astro-ph/0509343 +astro-ph/0509345 +astro-ph/0509346 +astro-ph/0509348 +astro-ph/0509349 +astro-ph/0509351 +astro-ph/0509352 +astro-ph/0509355 +astro-ph/0509356 +astro-ph/0509357 +astro-ph/0509359 +astro-ph/0509361 +astro-ph/0509363 +astro-ph/0509365 +astro-ph/0509367 +astro-ph/0509369 +astro-ph/0509370 +astro-ph/0509372 +astro-ph/0509384 +astro-ph/0509389 +astro-ph/0509402 +astro-ph/0509403 +astro-ph/0509406 +astro-ph/0509408 +astro-ph/0509409 +astro-ph/0509411 +astro-ph/0509412 +astro-ph/0509413 +astro-ph/0509416 +astro-ph/0509418 +astro-ph/0509419 +astro-ph/0509429 +astro-ph/0509430 +astro-ph/0509448 +astro-ph/0509452 +astro-ph/0509456 +astro-ph/0509457 +astro-ph/0509459 +astro-ph/0509461 +astro-ph/0509463 +astro-ph/0509468 +astro-ph/0509469 +astro-ph/0509471 +astro-ph/0509474 +astro-ph/0509478 +astro-ph/0509480 +astro-ph/0509483 +astro-ph/0509490 +astro-ph/0509495 +astro-ph/0509497 +astro-ph/0509505 +astro-ph/0509506 +astro-ph/0509507 +astro-ph/0509508 +astro-ph/0509511 +astro-ph/0509512 +astro-ph/0509514 +astro-ph/0509525 +astro-ph/0509527 +astro-ph/0509547 +astro-ph/0509548 +astro-ph/0509549 +astro-ph/0509552 +astro-ph/0509554 +astro-ph/0509557 +astro-ph/0509559 +astro-ph/0509562 +astro-ph/0509564 +astro-ph/0509566 +astro-ph/0509568 +astro-ph/0509571 +astro-ph/0509574 +astro-ph/0509579 +astro-ph/0509587 +astro-ph/0509593 +astro-ph/0509594 +astro-ph/0509596 +astro-ph/0509599 +astro-ph/0509603 +astro-ph/0509611 +astro-ph/0509614 +astro-ph/0509617 +astro-ph/0509621 +astro-ph/0509626 +astro-ph/0509630 +astro-ph/0509632 +astro-ph/0509636 +astro-ph/0509646 +astro-ph/0509651 +astro-ph/0509652 +astro-ph/0509655 +astro-ph/0509659 +astro-ph/0509662 +astro-ph/0509664 +astro-ph/0509667 +astro-ph/0509668 +astro-ph/0509670 +astro-ph/0509673 +astro-ph/0509674 +astro-ph/0509677 +astro-ph/0509678 +astro-ph/0509682 +astro-ph/0509683 +astro-ph/0509685 +astro-ph/0509686 +astro-ph/0509689 +astro-ph/0509692 +astro-ph/0509696 +astro-ph/0509699 +astro-ph/0509701 +astro-ph/0509711 +astro-ph/0509717 +astro-ph/0509718 +astro-ph/0509719 +astro-ph/0509720 +astro-ph/0509722 +astro-ph/0509727 +astro-ph/0509731 +astro-ph/0509740 +astro-ph/0509744 +astro-ph/0509745 +astro-ph/0509749 +astro-ph/0509750 +astro-ph/0509752 +astro-ph/0509754 +astro-ph/0509755 +astro-ph/0509758 +astro-ph/0509760 +astro-ph/0509762 +astro-ph/0509767 +astro-ph/0509773 +astro-ph/0509776 +astro-ph/0509777 +astro-ph/0509781 +astro-ph/0509784 +astro-ph/0509786 +astro-ph/0509787 +astro-ph/0509788 +astro-ph/0509794 +astro-ph/0509795 +astro-ph/0509796 +astro-ph/0509800 +astro-ph/0509801 +astro-ph/0509805 +astro-ph/0509810 +astro-ph/0509813 +astro-ph/0509814 +astro-ph/0509817 +astro-ph/0509822 +astro-ph/0509824 +astro-ph/0509826 +astro-ph/0509828 +astro-ph/0509829 +astro-ph/0509832 +astro-ph/0509837 +astro-ph/0509838 +astro-ph/0509840 +astro-ph/0509843 +astro-ph/0509845 +astro-ph/0509848 +astro-ph/0509860 +astro-ph/0509863 +astro-ph/0509865 +astro-ph/0509870 +astro-ph/0509872 +astro-ph/0509878 +astro-ph/0509885 +astro-ph/0509889 +astro-ph/0509890 +astro-ph/0509892 +astro-ph/0509893 +astro-ph/0509895 +astro-ph/0509913 +astro-ph/0509914 +astro-ph/0510002 +astro-ph/0510004 +astro-ph/0510006 +astro-ph/0510007 +astro-ph/0510013 +astro-ph/0510014 +astro-ph/0510016 +astro-ph/0510018 +astro-ph/0510021 +astro-ph/0510022 +astro-ph/0510028 +astro-ph/0510035 +astro-ph/0510039 +astro-ph/0510041 +astro-ph/0510044 +astro-ph/0510057 +astro-ph/0510061 +astro-ph/0510064 +astro-ph/0510066 +astro-ph/0510070 +astro-ph/0510071 +astro-ph/0510085 +astro-ph/0510087 +astro-ph/0510097 +astro-ph/0510101 +astro-ph/0510102 +astro-ph/0510105 +astro-ph/0510106 +astro-ph/0510107 +astro-ph/0510111 +astro-ph/0510114 +astro-ph/0510116 +astro-ph/0510118 +astro-ph/0510120 +astro-ph/0510127 +astro-ph/0510129 +astro-ph/0510133 +astro-ph/0510137 +astro-ph/0510142 +astro-ph/0510148 +astro-ph/0510151 +astro-ph/0510156 +astro-ph/0510162 +astro-ph/0510164 +astro-ph/0510176 +astro-ph/0510184 +astro-ph/0510188 +astro-ph/0510196 +astro-ph/0510200 +astro-ph/0510201 +astro-ph/0510202 +astro-ph/0510203 +astro-ph/0510204 +astro-ph/0510206 +astro-ph/0510208 +astro-ph/0510213 +astro-ph/0510218 +astro-ph/0510220 +astro-ph/0510221 +astro-ph/0510222 +astro-ph/0510225 +astro-ph/0510229 +astro-ph/0510230 +astro-ph/0510231 +astro-ph/0510232 +astro-ph/0510237 +astro-ph/0510242 +astro-ph/0510243 +astro-ph/0510244 +astro-ph/0510248 +astro-ph/0510250 +astro-ph/0510253 +astro-ph/0510254 +astro-ph/0510255 +astro-ph/0510258 +astro-ph/0510259 +astro-ph/0510260 +astro-ph/0510262 +astro-ph/0510270 +astro-ph/0510274 +astro-ph/0510276 +astro-ph/0510278 +astro-ph/0510279 +astro-ph/0510280 +astro-ph/0510282 +astro-ph/0510291 +astro-ph/0510294 +astro-ph/0510295 +astro-ph/0510297 +astro-ph/0510298 +astro-ph/0510299 +astro-ph/0510300 +astro-ph/0510304 +astro-ph/0510305 +astro-ph/0510306 +astro-ph/0510308 +astro-ph/0510309 +astro-ph/0510310 +astro-ph/0510311 +astro-ph/0510324 +astro-ph/0510326 +astro-ph/0510331 +astro-ph/0510332 +astro-ph/0510333 +astro-ph/0510338 +astro-ph/0510341 +astro-ph/0510343 +astro-ph/0510347 +astro-ph/0510351 +astro-ph/0510356 +astro-ph/0510361 +astro-ph/0510362 +astro-ph/0510365 +astro-ph/0510366 +astro-ph/0510367 +astro-ph/0510369 +astro-ph/0510386 +astro-ph/0510395 +astro-ph/0510396 +astro-ph/0510399 +astro-ph/0510403 +astro-ph/0510408 +astro-ph/0510418 +astro-ph/0510429 +astro-ph/0510430 +astro-ph/0510438 +astro-ph/0510442 +astro-ph/0510443 +astro-ph/0510444 +astro-ph/0510448 +astro-ph/0510465 +astro-ph/0510471 +astro-ph/0510472 +astro-ph/0510475 +astro-ph/0510479 +astro-ph/0510483 +astro-ph/0510487 +astro-ph/0510493 +astro-ph/0510500 +astro-ph/0510503 +astro-ph/0510512 +astro-ph/0510522 +astro-ph/0510525 +astro-ph/0510529 +astro-ph/0510530 +astro-ph/0510531 +astro-ph/0510533 +astro-ph/0510537 +astro-ph/0510542 +astro-ph/0510543 +astro-ph/0510547 +astro-ph/0510548 +astro-ph/0510551 +astro-ph/0510553 +astro-ph/0510556 +astro-ph/0510559 +astro-ph/0510562 +astro-ph/0510564 +astro-ph/0510565 +astro-ph/0510571 +astro-ph/0510573 +astro-ph/0510574 +astro-ph/0510577 +astro-ph/0510578 +astro-ph/0510580 +astro-ph/0510581 +astro-ph/0510582 +astro-ph/0510583 +astro-ph/0510587 +astro-ph/0510588 +astro-ph/0510589 +astro-ph/0510590 +astro-ph/0510591 +astro-ph/0510593 +astro-ph/0510595 +astro-ph/0510597 +astro-ph/0510599 +astro-ph/0510600 +astro-ph/0510603 +astro-ph/0510607 +astro-ph/0510608 +astro-ph/0510609 +astro-ph/0510616 +astro-ph/0510619 +astro-ph/0510621 +astro-ph/0510622 +astro-ph/0510624 +astro-ph/0510626 +astro-ph/0510629 +astro-ph/0510631 +astro-ph/0510634 +astro-ph/0510635 +astro-ph/0510637 +astro-ph/0510639 +astro-ph/0510642 +astro-ph/0510645 +astro-ph/0510648 +astro-ph/0510650 +astro-ph/0510652 +astro-ph/0510654 +astro-ph/0510656 +astro-ph/0510657 +astro-ph/0510658 +astro-ph/0510659 +astro-ph/0510661 +astro-ph/0510662 +astro-ph/0510663 +astro-ph/0510664 +astro-ph/0510665 +astro-ph/0510666 +astro-ph/0510667 +astro-ph/0510668 +astro-ph/0510669 +astro-ph/0510670 +astro-ph/0510671 +astro-ph/0510672 +astro-ph/0510673 +astro-ph/0510675 +astro-ph/0510680 +astro-ph/0510684 +astro-ph/0510693 +astro-ph/0510698 +astro-ph/0510701 +astro-ph/0510703 +astro-ph/0510707 +astro-ph/0510711 +astro-ph/0510713 +astro-ph/0510714 +astro-ph/0510722 +astro-ph/0510725 +astro-ph/0510726 +astro-ph/0510727 +astro-ph/0510728 +astro-ph/0510730 +astro-ph/0510737 +astro-ph/0510739 +astro-ph/0510740 +astro-ph/0510741 +astro-ph/0510742 +astro-ph/0510743 +astro-ph/0510744 +astro-ph/0510746 +astro-ph/0510748 +astro-ph/0510758 +astro-ph/0510759 +astro-ph/0510762 +astro-ph/0510765 +astro-ph/0510767 +astro-ph/0510768 +astro-ph/0510769 +astro-ph/0510771 +astro-ph/0510773 +astro-ph/0510775 +astro-ph/0510776 +astro-ph/0510783 +astro-ph/0510786 +astro-ph/0510787 +astro-ph/0510800 +astro-ph/0510808 +astro-ph/0510811 +astro-ph/0510814 +astro-ph/0510816 +astro-ph/0510827 +astro-ph/0510835 +astro-ph/0510836 +astro-ph/0510837 +astro-ph/0510838 +astro-ph/0510841 +astro-ph/0510842 +astro-ph/0510843 +astro-ph/0510851 +astro-ph/0510853 +astro-ph/0510856 +astro-ph/0510859 +astro-ph/0510860 +astro-ph/0510861 +astro-ph/0511001 +astro-ph/0511003 +astro-ph/0511004 +astro-ph/0511013 +astro-ph/0511014 +astro-ph/0511015 +astro-ph/0511025 +astro-ph/0511034 +astro-ph/0511042 +astro-ph/0511043 +astro-ph/0511044 +astro-ph/0511045 +astro-ph/0511046 +astro-ph/0511049 +astro-ph/0511050 +astro-ph/0511051 +astro-ph/0511054 +astro-ph/0511059 +astro-ph/0511061 +astro-ph/0511062 +astro-ph/0511066 +astro-ph/0511068 +astro-ph/0511069 +astro-ph/0511070 +astro-ph/0511076 +astro-ph/0511079 +astro-ph/0511084 +astro-ph/0511092 +astro-ph/0511101 +astro-ph/0511102 +astro-ph/0511105 +astro-ph/0511106 +astro-ph/0511109 +astro-ph/0511114 +astro-ph/0511116 +astro-ph/0511118 +astro-ph/0511120 +astro-ph/0511122 +astro-ph/0511128 +astro-ph/0511138 +astro-ph/0511140 +astro-ph/0511141 +astro-ph/0511146 +astro-ph/0511151 +astro-ph/0511152 +astro-ph/0511154 +astro-ph/0511155 +astro-ph/0511158 +astro-ph/0511163 +astro-ph/0511165 +astro-ph/0511179 +astro-ph/0511189 +astro-ph/0511190 +astro-ph/0511192 +astro-ph/0511193 +astro-ph/0511194 +astro-ph/0511197 +astro-ph/0511203 +astro-ph/0511206 +astro-ph/0511210 +astro-ph/0511211 +astro-ph/0511212 +astro-ph/0511214 +astro-ph/0511217 +astro-ph/0511219 +astro-ph/0511224 +astro-ph/0511227 +astro-ph/0511232 +astro-ph/0511242 +astro-ph/0511244 +astro-ph/0511245 +astro-ph/0511246 +astro-ph/0511247 +astro-ph/0511249 +astro-ph/0511250 +astro-ph/0511252 +astro-ph/0511253 +astro-ph/0511254 +astro-ph/0511255 +astro-ph/0511262 +astro-ph/0511265 +astro-ph/0511283 +astro-ph/0511284 +astro-ph/0511285 +astro-ph/0511286 +astro-ph/0511288 +astro-ph/0511291 +astro-ph/0511293 +astro-ph/0511294 +astro-ph/0511296 +astro-ph/0511300 +astro-ph/0511302 +astro-ph/0511303 +astro-ph/0511305 +astro-ph/0511308 +astro-ph/0511312 +astro-ph/0511314 +astro-ph/0511315 +astro-ph/0511316 +astro-ph/0511317 +astro-ph/0511321 +astro-ph/0511323 +astro-ph/0511325 +astro-ph/0511330 +astro-ph/0511331 +astro-ph/0511333 +astro-ph/0511334 +astro-ph/0511341 +astro-ph/0511348 +astro-ph/0511353 +astro-ph/0511356 +astro-ph/0511360 +astro-ph/0511361 +astro-ph/0511364 +astro-ph/0511366 +astro-ph/0511373 +astro-ph/0511375 +astro-ph/0511376 +astro-ph/0511378 +astro-ph/0511380 +astro-ph/0511381 +astro-ph/0511385 +astro-ph/0511386 +astro-ph/0511389 +astro-ph/0511393 +astro-ph/0511396 +astro-ph/0511401 +astro-ph/0511406 +astro-ph/0511411 +astro-ph/0511413 +astro-ph/0511415 +astro-ph/0511417 +astro-ph/0511421 +astro-ph/0511422 +astro-ph/0511423 +astro-ph/0511424 +astro-ph/0511426 +astro-ph/0511427 +astro-ph/0511428 +astro-ph/0511429 +astro-ph/0511430 +astro-ph/0511434 +astro-ph/0511440 +astro-ph/0511441 +astro-ph/0511442 +astro-ph/0511447 +astro-ph/0511452 +astro-ph/0511459 +astro-ph/0511462 +astro-ph/0511463 +astro-ph/0511466 +astro-ph/0511467 +astro-ph/0511469 +astro-ph/0511470 +astro-ph/0511473 +astro-ph/0511474 +astro-ph/0511475 +astro-ph/0511476 +astro-ph/0511478 +astro-ph/0511480 +astro-ph/0511481 +astro-ph/0511483 +astro-ph/0511484 +astro-ph/0511486 +astro-ph/0511487 +astro-ph/0511490 +astro-ph/0511494 +astro-ph/0511496 +astro-ph/0511497 +astro-ph/0511501 +astro-ph/0511503 +astro-ph/0511504 +astro-ph/0511505 +astro-ph/0511506 +astro-ph/0511509 +astro-ph/0511511 +astro-ph/0511512 +astro-ph/0511513 +astro-ph/0511515 +astro-ph/0511517 +astro-ph/0511518 +astro-ph/0511520 +astro-ph/0511525 +astro-ph/0511526 +astro-ph/0511528 +astro-ph/0511535 +astro-ph/0511539 +astro-ph/0511540 +astro-ph/0511541 +astro-ph/0511542 +astro-ph/0511543 +astro-ph/0511544 +astro-ph/0511548 +astro-ph/0511550 +astro-ph/0511554 +astro-ph/0511557 +astro-ph/0511560 +astro-ph/0511562 +astro-ph/0511564 +astro-ph/0511566 +astro-ph/0511567 +astro-ph/0511569 +astro-ph/0511571 +astro-ph/0511580 +astro-ph/0511581 +astro-ph/0511584 +astro-ph/0511588 +astro-ph/0511590 +astro-ph/0511591 +astro-ph/0511594 +astro-ph/0511595 +astro-ph/0511596 +astro-ph/0511597 +astro-ph/0511598 +astro-ph/0511600 +astro-ph/0511603 +astro-ph/0511606 +astro-ph/0511610 +astro-ph/0511612 +astro-ph/0511615 +astro-ph/0511619 +astro-ph/0511620 +astro-ph/0511622 +astro-ph/0511623 +astro-ph/0511625 +astro-ph/0511631 +astro-ph/0511634 +astro-ph/0511637 +astro-ph/0511640 +astro-ph/0511641 +astro-ph/0511642 +astro-ph/0511643 +astro-ph/0511645 +astro-ph/0511646 +astro-ph/0511649 +astro-ph/0511653 +astro-ph/0511658 +astro-ph/0511660 +astro-ph/0511664 +astro-ph/0511667 +astro-ph/0511671 +astro-ph/0511677 +astro-ph/0511680 +astro-ph/0511681 +astro-ph/0511683 +astro-ph/0511685 +astro-ph/0511688 +astro-ph/0511690 +astro-ph/0511692 +astro-ph/0511695 +astro-ph/0511696 +astro-ph/0511697 +astro-ph/0511698 +astro-ph/0511705 +astro-ph/0511707 +astro-ph/0511710 +astro-ph/0511711 +astro-ph/0511712 +astro-ph/0511714 +astro-ph/0511716 +astro-ph/0511717 +astro-ph/0511718 +astro-ph/0511723 +astro-ph/0511727 +astro-ph/0511732 +astro-ph/0511734 +astro-ph/0511735 +astro-ph/0511738 +astro-ph/0511740 +astro-ph/0511742 +astro-ph/0511745 +astro-ph/0511748 +astro-ph/0511755 +astro-ph/0511759 +astro-ph/0511760 +astro-ph/0511768 +astro-ph/0511770 +astro-ph/0511777 +astro-ph/0511784 +astro-ph/0511785 +astro-ph/0511786 +astro-ph/0511791 +astro-ph/0511793 +astro-ph/0511795 +astro-ph/0511797 +astro-ph/0511798 +astro-ph/0511800 +astro-ph/0511806 +astro-ph/0511807 +astro-ph/0511808 +astro-ph/0511813 +astro-ph/0511821 +astro-ph/0511823 +astro-ph/0511824 +astro-ph/0511826 +astro-ph/0511827 +astro-ph/0511830 +astro-ph/0511831 +astro-ph/0511832 +astro-ph/0512001 +astro-ph/0512002 +astro-ph/0512003 +astro-ph/0512007 +astro-ph/0512010 +astro-ph/0512012 +astro-ph/0512015 +astro-ph/0512016 +astro-ph/0512017 +astro-ph/0512021 +astro-ph/0512023 +astro-ph/0512027 +astro-ph/0512028 +astro-ph/0512031 +astro-ph/0512034 +astro-ph/0512038 +astro-ph/0512041 +astro-ph/0512045 +astro-ph/0512046 +astro-ph/0512047 +astro-ph/0512049 +astro-ph/0512050 +astro-ph/0512051 +astro-ph/0512055 +astro-ph/0512056 +astro-ph/0512063 +astro-ph/0512064 +astro-ph/0512068 +astro-ph/0512069 +astro-ph/0512070 +astro-ph/0512072 +astro-ph/0512077 +astro-ph/0512084 +astro-ph/0512089 +astro-ph/0512090 +astro-ph/0512093 +astro-ph/0512094 +astro-ph/0512096 +astro-ph/0512104 +astro-ph/0512106 +astro-ph/0512110 +astro-ph/0512113 +astro-ph/0512117 +astro-ph/0512122 +astro-ph/0512125 +astro-ph/0512132 +astro-ph/0512135 +astro-ph/0512137 +astro-ph/0512140 +astro-ph/0512143 +astro-ph/0512144 +astro-ph/0512147 +astro-ph/0512149 +astro-ph/0512158 +astro-ph/0512159 +astro-ph/0512162 +astro-ph/0512163 +astro-ph/0512166 +astro-ph/0512171 +astro-ph/0512177 +astro-ph/0512180 +astro-ph/0512185 +astro-ph/0512188 +astro-ph/0512192 +astro-ph/0512194 +astro-ph/0512195 +astro-ph/0512197 +astro-ph/0512200 +astro-ph/0512202 +astro-ph/0512203 +astro-ph/0512205 +astro-ph/0512210 +astro-ph/0512211 +astro-ph/0512215 +astro-ph/0512222 +astro-ph/0512223 +astro-ph/0512225 +astro-ph/0512226 +astro-ph/0512227 +astro-ph/0512230 +astro-ph/0512231 +astro-ph/0512234 +astro-ph/0512238 +astro-ph/0512241 +astro-ph/0512242 +astro-ph/0512251 +astro-ph/0512252 +astro-ph/0512253 +astro-ph/0512257 +astro-ph/0512259 +astro-ph/0512267 +astro-ph/0512268 +astro-ph/0512271 +astro-ph/0512272 +astro-ph/0512274 +astro-ph/0512278 +astro-ph/0512279 +astro-ph/0512283 +astro-ph/0512284 +astro-ph/0512286 +astro-ph/0512288 +astro-ph/0512295 +astro-ph/0512304 +astro-ph/0512305 +astro-ph/0512306 +astro-ph/0512311 +astro-ph/0512312 +astro-ph/0512313 +astro-ph/0512315 +astro-ph/0512317 +astro-ph/0512320 +astro-ph/0512324 +astro-ph/0512327 +astro-ph/0512328 +astro-ph/0512329 +astro-ph/0512330 +astro-ph/0512332 +astro-ph/0512335 +astro-ph/0512336 +astro-ph/0512337 +astro-ph/0512338 +astro-ph/0512341 +astro-ph/0512342 +astro-ph/0512343 +astro-ph/0512351 +astro-ph/0512352 +astro-ph/0512355 +astro-ph/0512356 +astro-ph/0512357 +astro-ph/0512361 +astro-ph/0512363 +astro-ph/0512368 +astro-ph/0512370 +astro-ph/0512372 +astro-ph/0512374 +astro-ph/0512376 +astro-ph/0512377 +astro-ph/0512382 +astro-ph/0512383 +astro-ph/0512385 +astro-ph/0512386 +astro-ph/0512387 +astro-ph/0512389 +astro-ph/0512398 +astro-ph/0512402 +astro-ph/0512403 +astro-ph/0512404 +astro-ph/0512406 +astro-ph/0512410 +astro-ph/0512415 +astro-ph/0512417 +astro-ph/0512418 +astro-ph/0512420 +astro-ph/0512426 +astro-ph/0512427 +astro-ph/0512428 +astro-ph/0512430 +astro-ph/0512433 +astro-ph/0512451 +astro-ph/0512455 +astro-ph/0512456 +astro-ph/0512458 +astro-ph/0512462 +astro-ph/0512466 +astro-ph/0512467 +astro-ph/0512469 +astro-ph/0512475 +astro-ph/0512481 +astro-ph/0512486 +astro-ph/0512492 +astro-ph/0512493 +astro-ph/0512496 +astro-ph/0512498 +astro-ph/0512505 +astro-ph/0512506 +astro-ph/0512507 +astro-ph/0512508 +astro-ph/0512515 +astro-ph/0512517 +astro-ph/0512524 +astro-ph/0512532 +astro-ph/0512533 +astro-ph/0512537 +astro-ph/0512540 +astro-ph/0512542 +astro-ph/0512543 +astro-ph/0512546 +astro-ph/0512547 +astro-ph/0512548 +astro-ph/0512551 +astro-ph/0512567 +astro-ph/0512570 +astro-ph/0512575 +astro-ph/0512577 +astro-ph/0512579 +astro-ph/0512580 +astro-ph/0512581 +astro-ph/0512582 +astro-ph/0512583 +astro-ph/0512587 +astro-ph/0512591 +astro-ph/0512593 +astro-ph/0512595 +astro-ph/0512598 +astro-ph/0512600 +astro-ph/0512601 +astro-ph/0512607 +astro-ph/0512609 +astro-ph/0512616 +astro-ph/0512628 +astro-ph/0512629 +astro-ph/0512632 +astro-ph/0512634 +astro-ph/0512636 +astro-ph/0512641 +astro-ph/0512642 +astro-ph/0512643 +astro-ph/0512646 +astro-ph/0512649 +astro-ph/0512650 +astro-ph/0512656 +astro-ph/0512657 +astro-ph/0605639 +astro-ph/0701011 +astro-ph/0701023 +astro-ph/0701026 +astro-ph/0701029 +astro-ph/0701032 +astro-ph/0701033 +astro-ph/0701042 +astro-ph/0701056 +astro-ph/0701057 +astro-ph/0701063 +astro-ph/0701066 +astro-ph/0701067 +astro-ph/0701069 +astro-ph/0701072 +astro-ph/0701083 +astro-ph/0701087 +astro-ph/0701089 +astro-ph/0701091 +astro-ph/0701095 +astro-ph/0701098 +astro-ph/0701110 +astro-ph/0701112 +astro-ph/0701125 +astro-ph/0701127 +astro-ph/0701134 +astro-ph/0701155 +astro-ph/0701160 +astro-ph/0701165 +astro-ph/0701170 +astro-ph/0701172 +astro-ph/0701173 +astro-ph/0701174 +astro-ph/0701175 +astro-ph/0701176 +astro-ph/0701180 +astro-ph/0701182 +astro-ph/0701195 +astro-ph/0701196 +astro-ph/0701197 +astro-ph/0701198 +astro-ph/0701199 +astro-ph/0701200 +astro-ph/0701204 +astro-ph/0701205 +astro-ph/0701208 +astro-ph/0701209 +astro-ph/0701226 +astro-ph/0701232 +astro-ph/0701233 +astro-ph/0701238 +astro-ph/0701254 +astro-ph/0701256 +astro-ph/0701277 +astro-ph/0701284 +astro-ph/0701291 +astro-ph/0701316 +astro-ph/0701323 +astro-ph/0701325 +astro-ph/0701330 +astro-ph/0701341 +astro-ph/0701362 +astro-ph/0701368 +astro-ph/0701371 +astro-ph/0701382 +astro-ph/0701385 +astro-ph/0701391 +astro-ph/0701392 +astro-ph/0701393 +astro-ph/0701394 +astro-ph/0701400 +astro-ph/0701401 +astro-ph/0701403 +astro-ph/0701411 +astro-ph/0701413 +astro-ph/0701415 +astro-ph/0701416 +astro-ph/0701422 +astro-ph/0701430 +astro-ph/0701436 +astro-ph/0701451 +astro-ph/0701455 +astro-ph/0701456 +astro-ph/0701459 +astro-ph/0701462 +astro-ph/0701473 +astro-ph/0701482 +astro-ph/0701488 +astro-ph/0701499 +astro-ph/0701504 +astro-ph/0701505 +astro-ph/0701512 +astro-ph/0701519 +astro-ph/0701524 +astro-ph/0701526 +astro-ph/0701540 +astro-ph/0701544 +astro-ph/0701545 +astro-ph/0701546 +astro-ph/0701559 +astro-ph/0701570 +astro-ph/0701572 +astro-ph/0701575 +astro-ph/0701579 +astro-ph/0701581 +astro-ph/0701586 +astro-ph/0701588 +astro-ph/0701592 +astro-ph/0701599 +astro-ph/0701603 +astro-ph/0701606 +astro-ph/0701608 +astro-ph/0701610 +astro-ph/0701613 +astro-ph/0701619 +astro-ph/0701631 +astro-ph/0701639 +astro-ph/0701643 +astro-ph/0701652 +astro-ph/0701655 +astro-ph/0701657 +astro-ph/0701659 +astro-ph/0701663 +astro-ph/0701665 +astro-ph/0701675 +astro-ph/0701678 +astro-ph/0701687 +astro-ph/0701689 +astro-ph/0701697 +astro-ph/0701704 +astro-ph/0701705 +astro-ph/0701706 +astro-ph/0701708 +astro-ph/0701709 +astro-ph/0701713 +astro-ph/0701716 +astro-ph/0701717 +astro-ph/0701718 +astro-ph/0701723 +astro-ph/0701727 +astro-ph/0701732 +astro-ph/0701738 +astro-ph/0701742 +astro-ph/0701743 +astro-ph/0701746 +astro-ph/0701749 +astro-ph/0701750 +astro-ph/0701758 +astro-ph/0701763 +astro-ph/0701765 +astro-ph/0701767 +astro-ph/0701776 +astro-ph/0701777 +astro-ph/0701779 +astro-ph/0701780 +astro-ph/0701785 +astro-ph/0701787 +astro-ph/0701789 +astro-ph/0701791 +astro-ph/0701794 +astro-ph/0701797 +astro-ph/0701799 +astro-ph/0701808 +astro-ph/0701810 +astro-ph/0701814 +astro-ph/0701819 +astro-ph/0701823 +astro-ph/0701825 +astro-ph/0701830 +astro-ph/0701833 +astro-ph/0701836 +astro-ph/0701840 +astro-ph/0701846 +astro-ph/0701847 +astro-ph/0701848 +astro-ph/0701853 +astro-ph/0701854 +astro-ph/0701861 +astro-ph/0701868 +astro-ph/0701870 +astro-ph/0701873 +astro-ph/0701878 +astro-ph/0701881 +astro-ph/0701882 +astro-ph/0701883 +astro-ph/0701888 +astro-ph/0701891 +astro-ph/0701892 +astro-ph/0701893 +astro-ph/0701895 +astro-ph/0701897 +astro-ph/0701899 +astro-ph/0701910 +astro-ph/0701911 +astro-ph/0701913 +astro-ph/0701916 +astro-ph/0701918 +astro-ph/0702011 +astro-ph/0702014 +astro-ph/0702016 +astro-ph/0702019 +astro-ph/0702023 +astro-ph/0702025 +astro-ph/0702028 +astro-ph/0702031 +astro-ph/0702033 +astro-ph/0702035 +astro-ph/0702046 +astro-ph/0702047 +astro-ph/0702052 +astro-ph/0702054 +astro-ph/0702055 +astro-ph/0702057 +astro-ph/0702059 +astro-ph/0702066 +astro-ph/0702071 +astro-ph/0702075 +astro-ph/0702083 +astro-ph/0702086 +astro-ph/0702089 +astro-ph/0702099 +astro-ph/0702101 +astro-ph/0702103 +astro-ph/0702110 +astro-ph/0702111 +astro-ph/0702114 +astro-ph/0702115 +astro-ph/0702116 +astro-ph/0702120 +astro-ph/0702128 +astro-ph/0702129 +astro-ph/0702134 +astro-ph/0702137 +astro-ph/0702140 +astro-ph/0702141 +astro-ph/0702151 +astro-ph/0702164 +astro-ph/0702168 +astro-ph/0702169 +astro-ph/0702175 +astro-ph/0702183 +astro-ph/0702190 +astro-ph/0702192 +astro-ph/0702194 +astro-ph/0702195 +astro-ph/0702212 +astro-ph/0702215 +astro-ph/0702216 +astro-ph/0702219 +astro-ph/0702222 +astro-ph/0702226 +astro-ph/0702227 +astro-ph/0702230 +astro-ph/0702237 +astro-ph/0702243 +astro-ph/0702246 +astro-ph/0702251 +astro-ph/0702252 +astro-ph/0702253 +astro-ph/0702256 +astro-ph/0702262 +astro-ph/0702263 +astro-ph/0702268 +astro-ph/0702281 +astro-ph/0702294 +astro-ph/0702296 +astro-ph/0702303 +astro-ph/0702307 +astro-ph/0702309 +astro-ph/0702311 +astro-ph/0702313 +astro-ph/0702314 +astro-ph/0702318 +astro-ph/0702320 +astro-ph/0702321 +astro-ph/0702322 +astro-ph/0702325 +astro-ph/0702326 +astro-ph/0702328 +astro-ph/0702331 +astro-ph/0702332 +astro-ph/0702336 +astro-ph/0702339 +astro-ph/0702341 +astro-ph/0702342 +astro-ph/0702343 +astro-ph/0702344 +astro-ph/0702345 +astro-ph/0702352 +astro-ph/0702353 +astro-ph/0702356 +astro-ph/0702357 +astro-ph/0702359 +astro-ph/0702371 +astro-ph/0702377 +astro-ph/0702387 +astro-ph/0702388 +astro-ph/0702394 +astro-ph/0702403 +astro-ph/0702405 +astro-ph/0702407 +astro-ph/0702411 +astro-ph/0702414 +astro-ph/0702415 +astro-ph/0702421 +astro-ph/0702422 +astro-ph/0702424 +astro-ph/0702431 +astro-ph/0702433 +astro-ph/0702434 +astro-ph/0702438 +astro-ph/0702447 +astro-ph/0702448 +astro-ph/0702449 +astro-ph/0702452 +astro-ph/0702458 +astro-ph/0702459 +astro-ph/0702461 +astro-ph/0702462 +astro-ph/0702465 +astro-ph/0702474 +astro-ph/0702477 +astro-ph/0702480 +astro-ph/0702482 +astro-ph/0702483 +astro-ph/0702486 +astro-ph/0702490 +astro-ph/0702496 +astro-ph/0702497 +astro-ph/0702502 +astro-ph/0702512 +astro-ph/0702513 +astro-ph/0702515 +astro-ph/0702521 +astro-ph/0702531 +astro-ph/0702534 +astro-ph/0702536 +astro-ph/0702540 +astro-ph/0702541 +astro-ph/0702547 +astro-ph/0702548 +astro-ph/0702549 +astro-ph/0702557 +astro-ph/0702558 +astro-ph/0702560 +astro-ph/0702561 +astro-ph/0702564 +astro-ph/0702568 +astro-ph/0702569 +astro-ph/0702570 +astro-ph/0702571 +astro-ph/0702574 +astro-ph/0702578 +astro-ph/0702579 +astro-ph/0702590 +astro-ph/0702592 +astro-ph/0702593 +astro-ph/0702594 +astro-ph/0702596 +astro-ph/0702605 +astro-ph/0702609 +astro-ph/0702616 +astro-ph/0702622 +astro-ph/0702631 +astro-ph/0702634 +astro-ph/0702636 +astro-ph/0702638 +astro-ph/0702639 +astro-ph/0702640 +astro-ph/0702641 +astro-ph/0702646 +astro-ph/0702652 +astro-ph/0702654 +astro-ph/0702657 +astro-ph/0702665 +astro-ph/0702666 +astro-ph/0702667 +astro-ph/0702669 +astro-ph/0702675 +astro-ph/0702681 +astro-ph/0702682 +astro-ph/0702684 +astro-ph/0702685 +astro-ph/0702686 +astro-ph/0702687 +astro-ph/0702688 +astro-ph/0702689 +astro-ph/0702692 +astro-ph/0702694 +astro-ph/0702696 +astro-ph/0702702 +astro-ph/0702711 +astro-ph/0702712 +astro-ph/0702713 +astro-ph/0702715 +astro-ph/0702721 +astro-ph/0702727 +astro-ph/0702729 +astro-ph/0702732 +astro-ph/0702737 +astro-ph/0702738 +astro-ph/0702739 +astro-ph/0702743 +astro-ph/0702746 +astro-ph/0702747 +astro-ph/0702748 +astro-ph/0702755 +astro-ph/0703002 +astro-ph/0703007 +astro-ph/0703013 +astro-ph/0703014 +astro-ph/0703015 +astro-ph/0703018 +astro-ph/0703023 +astro-ph/0703026 +astro-ph/0703027 +astro-ph/0703029 +astro-ph/0703030 +astro-ph/0703038 +astro-ph/0703041 +astro-ph/0703042 +astro-ph/0703046 +astro-ph/0703048 +astro-ph/0703053 +astro-ph/0703054 +astro-ph/0703058 +astro-ph/0703060 +astro-ph/0703064 +astro-ph/0703065 +astro-ph/0703067 +astro-ph/0703076 +astro-ph/0703077 +astro-ph/0703078 +astro-ph/0703079 +astro-ph/0703081 +astro-ph/0703084 +astro-ph/0703094 +astro-ph/0703096 +astro-ph/0703097 +astro-ph/0703098 +astro-ph/0703101 +astro-ph/0703105 +astro-ph/0703106 +astro-ph/0703111 +astro-ph/0703112 +astro-ph/0703117 +astro-ph/0703118 +astro-ph/0703119 +astro-ph/0703120 +astro-ph/0703122 +astro-ph/0703125 +astro-ph/0703127 +astro-ph/0703128 +astro-ph/0703130 +astro-ph/0703131 +astro-ph/0703141 +astro-ph/0703142 +astro-ph/0703146 +astro-ph/0703149 +astro-ph/0703150 +astro-ph/0703156 +astro-ph/0703161 +astro-ph/0703170 +astro-ph/0703172 +astro-ph/0703173 +astro-ph/0703178 +astro-ph/0703180 +astro-ph/0703181 +astro-ph/0703185 +astro-ph/0703186 +astro-ph/0703188 +astro-ph/0703190 +astro-ph/0703195 +astro-ph/0703199 +astro-ph/0703207 +astro-ph/0703211 +astro-ph/0703212 +astro-ph/0703215 +astro-ph/0703218 +astro-ph/0703219 +astro-ph/0703220 +astro-ph/0703222 +astro-ph/0703223 +astro-ph/0703224 +astro-ph/0703225 +astro-ph/0703229 +astro-ph/0703242 +astro-ph/0703247 +astro-ph/0703249 +astro-ph/0703252 +astro-ph/0703256 +astro-ph/0703258 +astro-ph/0703263 +astro-ph/0703270 +astro-ph/0703272 +astro-ph/0703276 +astro-ph/0703284 +astro-ph/0703290 +astro-ph/0703299 +astro-ph/0703302 +astro-ph/0703304 +astro-ph/0703306 +astro-ph/0703307 +astro-ph/0703313 +astro-ph/0703320 +astro-ph/0703322 +astro-ph/0703329 +astro-ph/0703339 +astro-ph/0703341 +astro-ph/0703345 +astro-ph/0703346 +astro-ph/0703349 +astro-ph/0703356 +astro-ph/0703358 +astro-ph/0703362 +astro-ph/0703363 +astro-ph/0703366 +astro-ph/0703367 +astro-ph/0703368 +astro-ph/0703371 +astro-ph/0703374 +astro-ph/0703376 +astro-ph/0703379 +astro-ph/0703385 +astro-ph/0703387 +astro-ph/0703389 +astro-ph/0703394 +astro-ph/0703395 +astro-ph/0703398 +astro-ph/0703399 +astro-ph/0703400 +astro-ph/0703402 +astro-ph/0703405 +astro-ph/0703408 +astro-ph/0703410 +astro-ph/0703412 +astro-ph/0703420 +astro-ph/0703423 +astro-ph/0703424 +astro-ph/0703425 +astro-ph/0703426 +astro-ph/0703429 +astro-ph/0703432 +astro-ph/0703433 +astro-ph/0703436 +astro-ph/0703437 +astro-ph/0703438 +astro-ph/0703443 +astro-ph/0703445 +astro-ph/0703446 +astro-ph/0703451 +astro-ph/0703452 +astro-ph/0703463 +astro-ph/0703470 +astro-ph/0703471 +astro-ph/0703475 +astro-ph/0703478 +astro-ph/0703479 +astro-ph/0703480 +astro-ph/0703481 +astro-ph/0703489 +astro-ph/0703490 +astro-ph/0703491 +astro-ph/0703499 +astro-ph/0703502 +astro-ph/0703503 +astro-ph/0703504 +astro-ph/0703506 +astro-ph/0703508 +astro-ph/0703510 +astro-ph/0703514 +astro-ph/0703518 +astro-ph/0703523 +astro-ph/0703524 +astro-ph/0703530 +astro-ph/0703535 +astro-ph/0703548 +astro-ph/0703550 +astro-ph/0703555 +astro-ph/0703561 +astro-ph/0703568 +astro-ph/0703577 +astro-ph/0703578 +astro-ph/0703588 +astro-ph/0703590 +astro-ph/0703594 +astro-ph/0703597 +astro-ph/0703599 +astro-ph/0703606 +astro-ph/0703607 +astro-ph/0703610 +astro-ph/0703611 +astro-ph/0703617 +astro-ph/0703626 +astro-ph/0703629 +astro-ph/0703631 +astro-ph/0703632 +astro-ph/0703633 +astro-ph/0703639 +astro-ph/0703641 +astro-ph/0703644 +astro-ph/0703650 +astro-ph/0703652 +astro-ph/0703654 +astro-ph/0703656 +astro-ph/0703657 +astro-ph/0703666 +astro-ph/0703668 +astro-ph/0703672 +astro-ph/0703674 +astro-ph/0703676 +astro-ph/0703679 +astro-ph/0703681 +astro-ph/0703683 +astro-ph/0703689 +astro-ph/0703692 +astro-ph/0703696 +astro-ph/0703701 +astro-ph/0703703 +astro-ph/0703712 +astro-ph/0703714 +astro-ph/0703715 +astro-ph/0703717 +astro-ph/0703718 +astro-ph/0703725 +astro-ph/0703726 +astro-ph/0703732 +astro-ph/0703734 +astro-ph/0703736 +astro-ph/0703740 +astro-ph/0703741 +astro-ph/0703742 +astro-ph/0703748 +astro-ph/0703752 +astro-ph/0703754 +astro-ph/0703755 +astro-ph/0703756 +astro-ph/0703766 +astro-ph/0703770 +astro-ph/0703771 +astro-ph/0703794 +astro-ph/0703795 +astro-ph/0703796 +astro-ph/0703798 +astro-ph/0703801 +astro-ph/0703802 +astro-ph/0703805 +cond-mat/0002155 Mesoscale and Nanoscale Physics +cond-mat/0007054 Mesoscale and Nanoscale Physics +cond-mat/0105496 Mesoscale and Nanoscale Physics +cond-mat/0701007 Superconductivity +cond-mat/0701010 Mesoscale and Nanoscale Physics +cond-mat/0701012 Mesoscale and Nanoscale Physics +cond-mat/0701014 Strongly Correlated Electrons +cond-mat/0701015 Materials Science +cond-mat/0701017 Mesoscale and Nanoscale Physics +cond-mat/0701020 Strongly Correlated Electrons +cond-mat/0701023 Mesoscale and Nanoscale Physics +cond-mat/0701030 Soft Condensed Matter +cond-mat/0701037 Statistical Mechanics +cond-mat/0701038 Strongly Correlated Electrons +cond-mat/0701043 Statistical Mechanics +cond-mat/0701044 Superconductivity +cond-mat/0701045 Mesoscale and Nanoscale Physics +cond-mat/0701048 Soft Condensed Matter +cond-mat/0701049 Other Condensed Matter +cond-mat/0701054 Mesoscale and Nanoscale Physics +cond-mat/0701055 Strongly Correlated Electrons +cond-mat/0701056 Soft Condensed Matter +cond-mat/0701057 Other Condensed Matter +cond-mat/0701060 Strongly Correlated Electrons +cond-mat/0701063 Mesoscale and Nanoscale Physics +cond-mat/0701070 Statistical Mechanics +cond-mat/0701071 Statistical Mechanics +cond-mat/0701072 Soft Condensed Matter +cond-mat/0701076 Statistical Mechanics +cond-mat/0701078 Mesoscale and Nanoscale Physics +cond-mat/0701082 Materials Science +cond-mat/0701085 Superconductivity +cond-mat/0701086 Mesoscale and Nanoscale Physics +cond-mat/0701090 Strongly Correlated Electrons +cond-mat/0701092 Strongly Correlated Electrons +cond-mat/0701095 Mesoscale and Nanoscale Physics +cond-mat/0701098 Other Condensed Matter +cond-mat/0701099 Other Condensed Matter +cond-mat/0701101 Materials Science +cond-mat/0701102 Mesoscale and Nanoscale Physics +cond-mat/0701103 Other Condensed Matter +cond-mat/0701109 Mesoscale and Nanoscale Physics +cond-mat/0701111 Mesoscale and Nanoscale Physics +cond-mat/0701114 Strongly Correlated Electrons +cond-mat/0701116 Disordered Systems and Neural Networks +cond-mat/0701117 Strongly Correlated Electrons +cond-mat/0701118 Materials Science +cond-mat/0701125 Soft Condensed Matter +cond-mat/0701127 Strongly Correlated Electrons +cond-mat/0701130 Statistical Mechanics +cond-mat/0701133 Statistical Mechanics +cond-mat/0701142 Soft Condensed Matter +cond-mat/0701143 Materials Science +cond-mat/0701146 Materials Science +cond-mat/0701149 Strongly Correlated Electrons +cond-mat/0701156 Statistical Mechanics +cond-mat/0701160 Superconductivity +cond-mat/0701161 Mesoscale and Nanoscale Physics +cond-mat/0701162 Mesoscale and Nanoscale Physics +cond-mat/0701163 Mesoscale and Nanoscale Physics +cond-mat/0701166 Superconductivity +cond-mat/0701168 Soft Condensed Matter +cond-mat/0701169 Soft Condensed Matter +cond-mat/0701170 Materials Science +cond-mat/0701179 Materials Science +cond-mat/0701180 Other Condensed Matter +cond-mat/0701198 Superconductivity +cond-mat/0701201 Soft Condensed Matter +cond-mat/0701205 Materials Science +cond-mat/0701211 Disordered Systems and Neural Networks +cond-mat/0701212 Other Condensed Matter +cond-mat/0701214 Other Condensed Matter +cond-mat/0701216 Disordered Systems and Neural Networks +cond-mat/0701219 Strongly Correlated Electrons +cond-mat/0701225 Materials Science +cond-mat/0701226 Mesoscale and Nanoscale Physics +cond-mat/0701227 Mesoscale and Nanoscale Physics +cond-mat/0701228 Strongly Correlated Electrons +cond-mat/0701229 Soft Condensed Matter +cond-mat/0701233 Statistical Mechanics +cond-mat/0701235 Strongly Correlated Electrons +cond-mat/0701236 Statistical Mechanics +cond-mat/0701240 Strongly Correlated Electrons +cond-mat/0701241 Materials Science +cond-mat/0701246 Statistical Mechanics +cond-mat/0701250 Statistical Mechanics +cond-mat/0701256 Disordered Systems and Neural Networks +cond-mat/0701258 Soft Condensed Matter +cond-mat/0701260 Mesoscale and Nanoscale Physics +cond-mat/0701261 Soft Condensed Matter +cond-mat/0701263 Strongly Correlated Electrons +cond-mat/0701264 Soft Condensed Matter +cond-mat/0701265 Disordered Systems and Neural Networks +cond-mat/0701269 Strongly Correlated Electrons +cond-mat/0701274 Mesoscale and Nanoscale Physics +cond-mat/0701275 Disordered Systems and Neural Networks +cond-mat/0701279 Mesoscale and Nanoscale Physics +cond-mat/0701280 Statistical Mechanics +cond-mat/0701281 Superconductivity +cond-mat/0701284 Materials Science +cond-mat/0701285 Statistical Mechanics +cond-mat/0701288 Strongly Correlated Electrons +cond-mat/0701289 Strongly Correlated Electrons +cond-mat/0701290 Strongly Correlated Electrons +cond-mat/0701292 Statistical Mechanics +cond-mat/0701293 Mesoscale and Nanoscale Physics +cond-mat/0701294 Mesoscale and Nanoscale Physics +cond-mat/0701295 Mesoscale and Nanoscale Physics +cond-mat/0701303 Statistical Mechanics +cond-mat/0701305 Superconductivity +cond-mat/0701316 Mesoscale and Nanoscale Physics +cond-mat/0701317 Strongly Correlated Electrons +cond-mat/0701318 Mesoscale and Nanoscale Physics +cond-mat/0701320 Mesoscale and Nanoscale Physics +cond-mat/0701321 Other Condensed Matter +cond-mat/0701322 Strongly Correlated Electrons +cond-mat/0701326 Other Condensed Matter +cond-mat/0701327 Strongly Correlated Electrons +cond-mat/0701334 Mesoscale and Nanoscale Physics +cond-mat/0701337 Other Condensed Matter +cond-mat/0701338 Other Condensed Matter +cond-mat/0701340 Statistical Mechanics +cond-mat/0701341 Mesoscale and Nanoscale Physics +cond-mat/0701344 Mesoscale and Nanoscale Physics +cond-mat/0701346 Other Condensed Matter +cond-mat/0701354 Strongly Correlated Electrons +cond-mat/0701355 Mesoscale and Nanoscale Physics +cond-mat/0701358 Materials Science +cond-mat/0701359 Mesoscale and Nanoscale Physics +cond-mat/0701360 Mesoscale and Nanoscale Physics +cond-mat/0701361 Strongly Correlated Electrons +cond-mat/0701363 Mesoscale and Nanoscale Physics +cond-mat/0701364 Statistical Mechanics +cond-mat/0701371 Statistical Mechanics +cond-mat/0701374 Other Condensed Matter +cond-mat/0701376 Superconductivity +cond-mat/0701377 Statistical Mechanics +cond-mat/0701380 Strongly Correlated Electrons +cond-mat/0701381 Disordered Systems and Neural Networks +cond-mat/0701384 Statistical Mechanics +cond-mat/0701390 Other Condensed Matter +cond-mat/0701395 Materials Science +cond-mat/0701402 Strongly Correlated Electrons +cond-mat/0701404 Superconductivity +cond-mat/0701405 Statistical Mechanics +cond-mat/0701407 Statistical Mechanics +cond-mat/0701408 Statistical Mechanics +cond-mat/0701410 Materials Science +cond-mat/0701413 Strongly Correlated Electrons +cond-mat/0701418 Strongly Correlated Electrons +cond-mat/0701419 Soft Condensed Matter +cond-mat/0701423 Materials Science +cond-mat/0701426 Materials Science +cond-mat/0701428 Strongly Correlated Electrons +cond-mat/0701430 Strongly Correlated Electrons +cond-mat/0701431 Mesoscale and Nanoscale Physics +cond-mat/0701433 Strongly Correlated Electrons +cond-mat/0701436 Mesoscale and Nanoscale Physics +cond-mat/0701443 Other Condensed Matter +cond-mat/0701446 Other Condensed Matter +cond-mat/0701447 Strongly Correlated Electrons +cond-mat/0701451 Mesoscale and Nanoscale Physics +cond-mat/0701453 Mesoscale and Nanoscale Physics +cond-mat/0701458 Mesoscale and Nanoscale Physics +cond-mat/0701468 Statistical Mechanics +cond-mat/0701470 Other Condensed Matter +cond-mat/0701476 Strongly Correlated Electrons +cond-mat/0701477 Mesoscale and Nanoscale Physics +cond-mat/0701479 Mesoscale and Nanoscale Physics +cond-mat/0701480 Mesoscale and Nanoscale Physics +cond-mat/0701481 Other Condensed Matter +cond-mat/0701482 Other Condensed Matter +cond-mat/0701483 Superconductivity +cond-mat/0701484 Superconductivity +cond-mat/0701486 Strongly Correlated Electrons +cond-mat/0701487 Strongly Correlated Electrons +cond-mat/0701489 Statistical Mechanics +cond-mat/0701492 Strongly Correlated Electrons +cond-mat/0701496 Materials Science +cond-mat/0701499 Mesoscale and Nanoscale Physics +cond-mat/0701503 Other Condensed Matter +cond-mat/0701505 Statistical Mechanics +cond-mat/0701507 Mesoscale and Nanoscale Physics +cond-mat/0701509 Strongly Correlated Electrons +cond-mat/0701513 Materials Science +cond-mat/0701516 Statistical Mechanics +cond-mat/0701521 Other Condensed Matter +cond-mat/0701524 Superconductivity +cond-mat/0701525 Mesoscale and Nanoscale Physics +cond-mat/0701527 Statistical Mechanics +cond-mat/0701528 Strongly Correlated Electrons +cond-mat/0701531 Soft Condensed Matter +cond-mat/0701532 Superconductivity +cond-mat/0701533 Mesoscale and Nanoscale Physics +cond-mat/0701535 Mesoscale and Nanoscale Physics +cond-mat/0701541 Mesoscale and Nanoscale Physics +cond-mat/0701549 Materials Science +cond-mat/0701553 Statistical Mechanics +cond-mat/0701554 Statistical Mechanics +cond-mat/0701555 Soft Condensed Matter +cond-mat/0701557 Strongly Correlated Electrons +cond-mat/0701558 Statistical Mechanics +cond-mat/0701561 Soft Condensed Matter +cond-mat/0701562 Statistical Mechanics +cond-mat/0701567 Soft Condensed Matter +cond-mat/0701568 Statistical Mechanics +cond-mat/0701569 Materials Science +cond-mat/0701570 Mesoscale and Nanoscale Physics +cond-mat/0701579 Strongly Correlated Electrons +cond-mat/0701580 Statistical Mechanics +cond-mat/0701581 Mesoscale and Nanoscale Physics +cond-mat/0701587 Other Condensed Matter +cond-mat/0701589 Statistical Mechanics +cond-mat/0701593 Other Condensed Matter +cond-mat/0701595 Strongly Correlated Electrons +cond-mat/0701596 Statistical Mechanics +cond-mat/0701597 Materials Science +cond-mat/0701604 Soft Condensed Matter +cond-mat/0701612 Statistical Mechanics +cond-mat/0701614 Strongly Correlated Electrons +cond-mat/0701616 Other Condensed Matter +cond-mat/0701617 Mesoscale and Nanoscale Physics +cond-mat/0701620 Mesoscale and Nanoscale Physics +cond-mat/0701623 Materials Science +cond-mat/0701624 Mesoscale and Nanoscale Physics +cond-mat/0701625 Superconductivity +cond-mat/0701628 Strongly Correlated Electrons +cond-mat/0701629 Mesoscale and Nanoscale Physics +cond-mat/0701630 Statistical Mechanics +cond-mat/0701632 Materials Science +cond-mat/0701633 Materials Science +cond-mat/0701635 Strongly Correlated Electrons +cond-mat/0701642 Strongly Correlated Electrons +cond-mat/0701644 Materials Science +cond-mat/0701646 Statistical Mechanics +cond-mat/0701649 Strongly Correlated Electrons +cond-mat/0701650 Superconductivity +cond-mat/0701651 Statistical Mechanics +cond-mat/0701653 Statistical Mechanics +cond-mat/0701658 Strongly Correlated Electrons +cond-mat/0701660 Superconductivity +cond-mat/0701665 Statistical Mechanics +cond-mat/0701666 Materials Science +cond-mat/0701668 Other Condensed Matter +cond-mat/0701670 Mesoscale and Nanoscale Physics +cond-mat/0701675 Materials Science +cond-mat/0701679 Statistical Mechanics +cond-mat/0701681 Disordered Systems and Neural Networks +cond-mat/0701684 Statistical Mechanics +cond-mat/0701685 Statistical Mechanics +cond-mat/0701686 Mesoscale and Nanoscale Physics +cond-mat/0701687 Other Condensed Matter +cond-mat/0701688 Other Condensed Matter +cond-mat/0701689 Other Condensed Matter +cond-mat/0701696 Strongly Correlated Electrons +cond-mat/0701698 Superconductivity +cond-mat/0701701 Mesoscale and Nanoscale Physics +cond-mat/0701704 Disordered Systems and Neural Networks +cond-mat/0701714 Strongly Correlated Electrons +cond-mat/0701715 Statistical Mechanics +cond-mat/0701717 Materials Science +cond-mat/0701720 Superconductivity +cond-mat/0701721 Superconductivity +cond-mat/0701722 Statistical Mechanics +cond-mat/0701725 Strongly Correlated Electrons +cond-mat/0701730 Strongly Correlated Electrons +cond-mat/0701739 Statistical Mechanics +cond-mat/0701742 Strongly Correlated Electrons +cond-mat/0701745 Statistical Mechanics +cond-mat/0701746 Mesoscale and Nanoscale Physics +cond-mat/0701747 Statistical Mechanics +cond-mat/0701749 Materials Science +cond-mat/0701753 Disordered Systems and Neural Networks +cond-mat/0701757 Statistical Mechanics +cond-mat/0701760 Strongly Correlated Electrons +cond-mat/0701763 Statistical Mechanics +cond-mat/0701771 Materials Science +cond-mat/0701773 Statistical Mechanics +cond-mat/0701774 Soft Condensed Matter +cond-mat/0701775 Other Condensed Matter +cond-mat/0701777 Materials Science +cond-mat/0701778 Materials Science +cond-mat/0701782 Statistical Mechanics +cond-mat/0701783 Statistical Mechanics +cond-mat/0701784 Superconductivity +cond-mat/0702006 Statistical Mechanics +cond-mat/0702007 Materials Science +cond-mat/0702015 Soft Condensed Matter +cond-mat/0702020 Materials Science +cond-mat/0702021 Other Condensed Matter +cond-mat/0702025 Superconductivity +cond-mat/0702026 Strongly Correlated Electrons +cond-mat/0702027 Superconductivity +cond-mat/0702029 Strongly Correlated Electrons +cond-mat/0702032 Mesoscale and Nanoscale Physics +cond-mat/0702035 Superconductivity +cond-mat/0702040 Superconductivity +cond-mat/0702042 Mesoscale and Nanoscale Physics +cond-mat/0702045 Other Condensed Matter +cond-mat/0702046 Statistical Mechanics +cond-mat/0702048 Materials Science +cond-mat/0702049 Strongly Correlated Electrons +cond-mat/0702054 Materials Science +cond-mat/0702062 Superconductivity +cond-mat/0702064 Strongly Correlated Electrons +cond-mat/0702066 Strongly Correlated Electrons +cond-mat/0702068 Mesoscale and Nanoscale Physics +cond-mat/0702069 Materials Science +cond-mat/0702071 Statistical Mechanics +cond-mat/0702080 Strongly Correlated Electrons +cond-mat/0702082 Materials Science +cond-mat/0702083 Soft Condensed Matter +cond-mat/0702089 Strongly Correlated Electrons +cond-mat/0702090 Strongly Correlated Electrons +cond-mat/0702095 Mesoscale and Nanoscale Physics +cond-mat/0702098 Superconductivity +cond-mat/0702103 Statistical Mechanics +cond-mat/0702105 Superconductivity +cond-mat/0702108 Soft Condensed Matter +cond-mat/0702109 Statistical Mechanics +cond-mat/0702110 Statistical Mechanics +cond-mat/0702111 Superconductivity +cond-mat/0702126 Other Condensed Matter +cond-mat/0702128 Superconductivity +cond-mat/0702130 Superconductivity +cond-mat/0702132 Mesoscale and Nanoscale Physics +cond-mat/0702137 Mesoscale and Nanoscale Physics +cond-mat/0702142 Superconductivity +cond-mat/0702145 Statistical Mechanics +cond-mat/0702146 Statistical Mechanics +cond-mat/0702147 Other Condensed Matter +cond-mat/0702149 Soft Condensed Matter +cond-mat/0702150 Superconductivity +cond-mat/0702151 Disordered Systems and Neural Networks +cond-mat/0702155 Materials Science +cond-mat/0702160 Soft Condensed Matter +cond-mat/0702161 Mesoscale and Nanoscale Physics +cond-mat/0702163 Strongly Correlated Electrons +cond-mat/0702164 Strongly Correlated Electrons +cond-mat/0702168 Materials Science +cond-mat/0702173 Materials Science +cond-mat/0702174 Strongly Correlated Electrons +cond-mat/0702175 Other Condensed Matter +cond-mat/0702179 Mesoscale and Nanoscale Physics +cond-mat/0702181 Strongly Correlated Electrons +cond-mat/0702182 Statistical Mechanics +cond-mat/0702185 Disordered Systems and Neural Networks +cond-mat/0702186 Mesoscale and Nanoscale Physics +cond-mat/0702189 Superconductivity +cond-mat/0702194 Materials Science +cond-mat/0702203 Soft Condensed Matter +cond-mat/0702212 Statistical Mechanics +cond-mat/0702220 Mesoscale and Nanoscale Physics +cond-mat/0702225 Superconductivity +cond-mat/0702226 Superconductivity +cond-mat/0702227 Mesoscale and Nanoscale Physics +cond-mat/0702229 Statistical Mechanics +cond-mat/0702230 Mesoscale and Nanoscale Physics +cond-mat/0702231 Disordered Systems and Neural Networks +cond-mat/0702233 Mesoscale and Nanoscale Physics +cond-mat/0702238 Mesoscale and Nanoscale Physics +cond-mat/0702240 Soft Condensed Matter +cond-mat/0702243 Disordered Systems and Neural Networks +cond-mat/0702244 Statistical Mechanics +cond-mat/0702246 Materials Science +cond-mat/0702247 Mesoscale and Nanoscale Physics +cond-mat/0702256 Strongly Correlated Electrons +cond-mat/0702260 Mesoscale and Nanoscale Physics +cond-mat/0702261 Materials Science +cond-mat/0702266 Strongly Correlated Electrons +cond-mat/0702268 Materials Science +cond-mat/0702273 Statistical Mechanics +cond-mat/0702280 Superconductivity +cond-mat/0702281 Other Condensed Matter +cond-mat/0702282 Superconductivity +cond-mat/0702283 Materials Science +cond-mat/0702285 Materials Science +cond-mat/0702286 Other Condensed Matter +cond-mat/0702288 Strongly Correlated Electrons +cond-mat/0702292 Mesoscale and Nanoscale Physics +cond-mat/0702296 Materials Science +cond-mat/0702301 Mesoscale and Nanoscale Physics +cond-mat/0702302 Disordered Systems and Neural Networks +cond-mat/0702307 Strongly Correlated Electrons +cond-mat/0702310 Statistical Mechanics +cond-mat/0702313 Other Condensed Matter +cond-mat/0702315 Statistical Mechanics +cond-mat/0702317 Mesoscale and Nanoscale Physics +cond-mat/0702319 Strongly Correlated Electrons +cond-mat/0702320 Soft Condensed Matter +cond-mat/0702323 Soft Condensed Matter +cond-mat/0702325 Statistical Mechanics +cond-mat/0702327 Materials Science +cond-mat/0702328 Materials Science +cond-mat/0702330 Other Condensed Matter +cond-mat/0702332 Mesoscale and Nanoscale Physics +cond-mat/0702333 Mesoscale and Nanoscale Physics +cond-mat/0702334 Other Condensed Matter +cond-mat/0702336 Materials Science +cond-mat/0702342 Strongly Correlated Electrons +cond-mat/0702344 Superconductivity +cond-mat/0702347 Statistical Mechanics +cond-mat/0702349 Other Condensed Matter +cond-mat/0702350 Strongly Correlated Electrons +cond-mat/0702352 Superconductivity +cond-mat/0702355 Strongly Correlated Electrons +cond-mat/0702357 Mesoscale and Nanoscale Physics +cond-mat/0702361 Mesoscale and Nanoscale Physics +cond-mat/0702368 Mesoscale and Nanoscale Physics +cond-mat/0702373 Superconductivity +cond-mat/0702378 Materials Science +cond-mat/0702386 Materials Science +cond-mat/0702394 Superconductivity +cond-mat/0702397 Materials Science +cond-mat/0702398 Statistical Mechanics +cond-mat/0702401 Mesoscale and Nanoscale Physics +cond-mat/0702402 Materials Science +cond-mat/0702404 Superconductivity +cond-mat/0702409 Mesoscale and Nanoscale Physics +cond-mat/0702411 Strongly Correlated Electrons +cond-mat/0702412 Superconductivity +cond-mat/0702413 Materials Science +cond-mat/0702414 Statistical Mechanics +cond-mat/0702425 Mesoscale and Nanoscale Physics +cond-mat/0702427 Disordered Systems and Neural Networks +cond-mat/0702429 Mesoscale and Nanoscale Physics +cond-mat/0702431 Other Condensed Matter +cond-mat/0702433 Mesoscale and Nanoscale Physics +cond-mat/0702438 Soft Condensed Matter +cond-mat/0702439 Statistical Mechanics +cond-mat/0702443 Strongly Correlated Electrons +cond-mat/0702444 Materials Science +cond-mat/0702447 Strongly Correlated Electrons +cond-mat/0702448 Soft Condensed Matter +cond-mat/0702451 Materials Science +cond-mat/0702453 Superconductivity +cond-mat/0702457 Strongly Correlated Electrons +cond-mat/0702458 Statistical Mechanics +cond-mat/0702461 Superconductivity +cond-mat/0702465 Strongly Correlated Electrons +cond-mat/0702476 Mesoscale and Nanoscale Physics +cond-mat/0702478 Superconductivity +cond-mat/0702479 Superconductivity +cond-mat/0702481 Superconductivity +cond-mat/0702483 Materials Science +cond-mat/0702487 Mesoscale and Nanoscale Physics +cond-mat/0702488 Strongly Correlated Electrons +cond-mat/0702490 Mesoscale and Nanoscale Physics +cond-mat/0702492 Materials Science +cond-mat/0702496 Mesoscale and Nanoscale Physics +cond-mat/0702497 Statistical Mechanics +cond-mat/0702499 Superconductivity +cond-mat/0702500 Strongly Correlated Electrons +cond-mat/0702503 Soft Condensed Matter +cond-mat/0702508 Mesoscale and Nanoscale Physics +cond-mat/0702511 Mesoscale and Nanoscale Physics +cond-mat/0702513 Materials Science +cond-mat/0702517 Statistical Mechanics +cond-mat/0702521 Materials Science +cond-mat/0702522 Materials Science +cond-mat/0702530 Soft Condensed Matter +cond-mat/0702531 Materials Science +cond-mat/0702534 Superconductivity +cond-mat/0702538 Mesoscale and Nanoscale Physics +cond-mat/0702539 Mesoscale and Nanoscale Physics +cond-mat/0702540 Materials Science +cond-mat/0702550 Materials Science +cond-mat/0702554 Materials Science +cond-mat/0702555 Statistical Mechanics +cond-mat/0702556 Statistical Mechanics +cond-mat/0702559 Strongly Correlated Electrons +cond-mat/0702562 Other Condensed Matter +cond-mat/0702563 Soft Condensed Matter +cond-mat/0702564 Strongly Correlated Electrons +cond-mat/0702566 Other Condensed Matter +cond-mat/0702567 Disordered Systems and Neural Networks +cond-mat/0702570 Strongly Correlated Electrons +cond-mat/0702571 Strongly Correlated Electrons +cond-mat/0702582 Strongly Correlated Electrons +cond-mat/0702583 Mesoscale and Nanoscale Physics +cond-mat/0702584 Statistical Mechanics +cond-mat/0702585 Superconductivity +cond-mat/0702586 Strongly Correlated Electrons +cond-mat/0702588 Materials Science +cond-mat/0702591 Other Condensed Matter +cond-mat/0702597 Superconductivity +cond-mat/0702604 Other Condensed Matter +cond-mat/0702606 Materials Science +cond-mat/0702608 Strongly Correlated Electrons +cond-mat/0702609 Superconductivity +cond-mat/0702611 Mesoscale and Nanoscale Physics +cond-mat/0702614 Mesoscale and Nanoscale Physics +cond-mat/0702615 Materials Science +cond-mat/0702617 Soft Condensed Matter +cond-mat/0702621 Strongly Correlated Electrons +cond-mat/0702631 Statistical Mechanics +cond-mat/0702632 Other Condensed Matter +cond-mat/0702633 Statistical Mechanics +cond-mat/0702635 Disordered Systems and Neural Networks +cond-mat/0702641 Other Condensed Matter +cond-mat/0702642 Strongly Correlated Electrons +cond-mat/0702643 Strongly Correlated Electrons +cond-mat/0702647 Other Condensed Matter +cond-mat/0702648 Mesoscale and Nanoscale Physics +cond-mat/0702649 Other Condensed Matter +cond-mat/0702650 Soft Condensed Matter +cond-mat/0702651 Soft Condensed Matter +cond-mat/0702652 Materials Science +cond-mat/0702653 Statistical Mechanics +cond-mat/0702658 Soft Condensed Matter +cond-mat/0702665 Other Condensed Matter +cond-mat/0702666 Mesoscale and Nanoscale Physics +cond-mat/0702667 Mesoscale and Nanoscale Physics +cond-mat/0702668 Other Condensed Matter +cond-mat/0702672 Statistical Mechanics +cond-mat/0702674 Mesoscale and Nanoscale Physics +cond-mat/0702676 Statistical Mechanics +cond-mat/0702678 Strongly Correlated Electrons +cond-mat/0702679 Other Condensed Matter +cond-mat/0702680 Strongly Correlated Electrons +cond-mat/0702686 Materials Science +cond-mat/0702687 Superconductivity +cond-mat/0702690 Statistical Mechanics +cond-mat/0702691 Statistical Mechanics +cond-mat/0702692 Soft Condensed Matter +cond-mat/0702693 Materials Science +cond-mat/0703007 Other Condensed Matter +cond-mat/0703010 Strongly Correlated Electrons +cond-mat/0703012 Superconductivity +cond-mat/0703013 Mesoscale and Nanoscale Physics +cond-mat/0703014 Statistical Mechanics +cond-mat/0703015 Superconductivity +cond-mat/0703018 Disordered Systems and Neural Networks +cond-mat/0703020 Soft Condensed Matter +cond-mat/0703023 Statistical Mechanics +cond-mat/0703024 Other Condensed Matter +cond-mat/0703025 Materials Science +cond-mat/0703026 Mesoscale and Nanoscale Physics +cond-mat/0703027 Strongly Correlated Electrons +cond-mat/0703029 Materials Science +cond-mat/0703030 Materials Science +cond-mat/0703031 Strongly Correlated Electrons +cond-mat/0703038 Disordered Systems and Neural Networks +cond-mat/0703042 Mesoscale and Nanoscale Physics +cond-mat/0703043 Statistical Mechanics +cond-mat/0703044 Other Condensed Matter +cond-mat/0703045 Other Condensed Matter +cond-mat/0703048 Mesoscale and Nanoscale Physics +cond-mat/0703050 Mesoscale and Nanoscale Physics +cond-mat/0703052 Mesoscale and Nanoscale Physics +cond-mat/0703053 Mesoscale and Nanoscale Physics +cond-mat/0703055 Statistical Mechanics +cond-mat/0703062 Materials Science +cond-mat/0703064 Strongly Correlated Electrons +cond-mat/0703066 Materials Science +cond-mat/0703071 Materials Science +cond-mat/0703073 Materials Science +cond-mat/0703076 Strongly Correlated Electrons +cond-mat/0703078 Materials Science +cond-mat/0703079 Mesoscale and Nanoscale Physics +cond-mat/0703082 Mesoscale and Nanoscale Physics +cond-mat/0703089 Superconductivity +cond-mat/0703093 Other Condensed Matter +cond-mat/0703097 Strongly Correlated Electrons +cond-mat/0703098 Mesoscale and Nanoscale Physics +cond-mat/0703100 Mesoscale and Nanoscale Physics +cond-mat/0703107 Other Condensed Matter +cond-mat/0703124 Strongly Correlated Electrons +cond-mat/0703126 Materials Science +cond-mat/0703128 Strongly Correlated Electrons +cond-mat/0703132 Materials Science +cond-mat/0703139 Mesoscale and Nanoscale Physics +cond-mat/0703142 Superconductivity +cond-mat/0703144 Statistical Mechanics +cond-mat/0703147 Statistical Mechanics +cond-mat/0703149 Disordered Systems and Neural Networks +cond-mat/0703150 Mesoscale and Nanoscale Physics +cond-mat/0703151 Soft Condensed Matter +cond-mat/0703154 Soft Condensed Matter +cond-mat/0703155 Statistical Mechanics +cond-mat/0703164 Statistical Mechanics +cond-mat/0703165 Soft Condensed Matter +cond-mat/0703166 Superconductivity +cond-mat/0703167 Strongly Correlated Electrons +cond-mat/0703169 Other Condensed Matter +cond-mat/0703170 Other Condensed Matter +cond-mat/0703173 Soft Condensed Matter +cond-mat/0703179 Mesoscale and Nanoscale Physics +cond-mat/0703180 Disordered Systems and Neural Networks +cond-mat/0703181 Strongly Correlated Electrons +cond-mat/0703186 Mesoscale and Nanoscale Physics +cond-mat/0703189 Statistical Mechanics +cond-mat/0703191 Disordered Systems and Neural Networks +cond-mat/0703192 Mesoscale and Nanoscale Physics +cond-mat/0703193 Superconductivity +cond-mat/0703197 Mesoscale and Nanoscale Physics +cond-mat/0703198 Statistical Mechanics +cond-mat/0703199 Disordered Systems and Neural Networks +cond-mat/0703200 Other Condensed Matter +cond-mat/0703202 Mesoscale and Nanoscale Physics +cond-mat/0703204 Statistical Mechanics +cond-mat/0703205 Other Condensed Matter +cond-mat/0703207 Strongly Correlated Electrons +cond-mat/0703208 Mesoscale and Nanoscale Physics +cond-mat/0703209 Statistical Mechanics +cond-mat/0703220 Statistical Mechanics +cond-mat/0703221 Strongly Correlated Electrons +cond-mat/0703222 Strongly Correlated Electrons +cond-mat/0703224 Soft Condensed Matter +cond-mat/0703225 Strongly Correlated Electrons +cond-mat/0703227 Soft Condensed Matter +cond-mat/0703229 Statistical Mechanics +cond-mat/0703230 Other Condensed Matter +cond-mat/0703233 Statistical Mechanics +cond-mat/0703239 Materials Science +cond-mat/0703244 Statistical Mechanics +cond-mat/0703249 Strongly Correlated Electrons +cond-mat/0703250 Soft Condensed Matter +cond-mat/0703255 Strongly Correlated Electrons +cond-mat/0703257 Materials Science +cond-mat/0703258 Superconductivity +cond-mat/0703259 Mesoscale and Nanoscale Physics +cond-mat/0703261 Strongly Correlated Electrons +cond-mat/0703262 Statistical Mechanics +cond-mat/0703264 Mesoscale and Nanoscale Physics +cond-mat/0703265 Superconductivity +cond-mat/0703268 Materials Science +cond-mat/0703270 Strongly Correlated Electrons +cond-mat/0703271 Materials Science +cond-mat/0703272 Materials Science +cond-mat/0703273 Materials Science +cond-mat/0703279 Superconductivity +cond-mat/0703281 Materials Science +cond-mat/0703283 Soft Condensed Matter +cond-mat/0703284 Strongly Correlated Electrons +cond-mat/0703289 Materials Science +cond-mat/0703296 Other Condensed Matter +cond-mat/0703299 Other Condensed Matter +cond-mat/0703300 Materials Science +cond-mat/0703302 Materials Science +cond-mat/0703303 Superconductivity +cond-mat/0703306 Strongly Correlated Electrons +cond-mat/0703307 Materials Science +cond-mat/0703308 Soft Condensed Matter +cond-mat/0703312 Statistical Mechanics +cond-mat/0703314 Statistical Mechanics +cond-mat/0703317 Materials Science +cond-mat/0703320 Soft Condensed Matter +cond-mat/0703321 Soft Condensed Matter +cond-mat/0703325 Mesoscale and Nanoscale Physics +cond-mat/0703327 Other Condensed Matter +cond-mat/0703330 Superconductivity +cond-mat/0703334 Mesoscale and Nanoscale Physics +cond-mat/0703335 Statistical Mechanics +cond-mat/0703336 Materials Science +cond-mat/0703340 Disordered Systems and Neural Networks +cond-mat/0703343 Disordered Systems and Neural Networks +cond-mat/0703347 Statistical Mechanics +cond-mat/0703349 Soft Condensed Matter +cond-mat/0703352 Strongly Correlated Electrons +cond-mat/0703354 Materials Science +cond-mat/0703358 Strongly Correlated Electrons +cond-mat/0703359 Strongly Correlated Electrons +cond-mat/0703362 Superconductivity +cond-mat/0703368 Materials Science +cond-mat/0703369 Disordered Systems and Neural Networks +cond-mat/0703370 Materials Science +cond-mat/0703378 Soft Condensed Matter +cond-mat/0703379 Statistical Mechanics +cond-mat/0703380 Mesoscale and Nanoscale Physics +cond-mat/0703382 Materials Science +cond-mat/0703383 Soft Condensed Matter +cond-mat/0703385 Strongly Correlated Electrons +cond-mat/0703386 Mesoscale and Nanoscale Physics +cond-mat/0703394 Soft Condensed Matter +cond-mat/0703395 Mesoscale and Nanoscale Physics +cond-mat/0703402 Materials Science +cond-mat/0703403 Statistical Mechanics +cond-mat/0703408 Statistical Mechanics +cond-mat/0703409 Soft Condensed Matter +cond-mat/0703410 Mesoscale and Nanoscale Physics +cond-mat/0703412 Mesoscale and Nanoscale Physics +cond-mat/0703413 Superconductivity +cond-mat/0703419 Mesoscale and Nanoscale Physics +cond-mat/0703423 Superconductivity +cond-mat/0703424 Materials Science +cond-mat/0703427 Mesoscale and Nanoscale Physics +cond-mat/0703429 Materials Science +cond-mat/0703430 Statistical Mechanics +cond-mat/0703432 Mesoscale and Nanoscale Physics +cond-mat/0703435 Statistical Mechanics +cond-mat/0703436 Materials Science +cond-mat/0703441 Other Condensed Matter +cond-mat/0703447 Mesoscale and Nanoscale Physics +cond-mat/0703448 Materials Science +cond-mat/0703451 Materials Science +cond-mat/0703454 Materials Science +cond-mat/0703456 Strongly Correlated Electrons +cond-mat/0703458 Mesoscale and Nanoscale Physics +cond-mat/0703460 Strongly Correlated Electrons +cond-mat/0703461 Materials Science +cond-mat/0703464 Statistical Mechanics +cond-mat/0703467 Disordered Systems and Neural Networks +cond-mat/0703468 Mesoscale and Nanoscale Physics +cond-mat/0703472 Mesoscale and Nanoscale Physics +cond-mat/0703475 Superconductivity +cond-mat/0703477 Materials Science +cond-mat/0703478 Statistical Mechanics +cond-mat/0703481 Strongly Correlated Electrons +cond-mat/0703485 Other Condensed Matter +cond-mat/0703486 Materials Science +cond-mat/0703487 Strongly Correlated Electrons +cond-mat/0703494 Soft Condensed Matter +cond-mat/0703496 Strongly Correlated Electrons +cond-mat/0703506 Strongly Correlated Electrons +cond-mat/0703513 Materials Science +cond-mat/0703514 Mesoscale and Nanoscale Physics +cond-mat/0703518 Soft Condensed Matter +cond-mat/0703523 Other Condensed Matter +cond-mat/0703524 Materials Science +cond-mat/0703525 Statistical Mechanics +cond-mat/0703528 Materials Science +cond-mat/0703534 Disordered Systems and Neural Networks +cond-mat/0703535 Strongly Correlated Electrons +cond-mat/0703536 Mesoscale and Nanoscale Physics +cond-mat/0703543 Soft Condensed Matter +cond-mat/0703545 Strongly Correlated Electrons +cond-mat/0703546 Mesoscale and Nanoscale Physics +cond-mat/0703549 Strongly Correlated Electrons +cond-mat/0703554 Soft Condensed Matter +cond-mat/0703559 Mesoscale and Nanoscale Physics +cond-mat/0703572 Statistical Mechanics +cond-mat/0703577 Materials Science +cond-mat/0703581 Statistical Mechanics +cond-mat/0703583 Soft Condensed Matter +cond-mat/0703584 Strongly Correlated Electrons +cond-mat/0703591 Mesoscale and Nanoscale Physics +cond-mat/0703593 Superconductivity +cond-mat/0703596 Mesoscale and Nanoscale Physics +cond-mat/0703599 Superconductivity +cond-mat/0703600 Materials Science +cond-mat/0703603 Disordered Systems and Neural Networks +cond-mat/0703605 Mesoscale and Nanoscale Physics +cond-mat/0703606 Soft Condensed Matter +cond-mat/0703610 Other Condensed Matter +cond-mat/0703613 Strongly Correlated Electrons +cond-mat/0703619 Materials Science +cond-mat/0703621 Materials Science +cond-mat/0703624 Superconductivity +cond-mat/0703626 Mesoscale and Nanoscale Physics +cond-mat/0703632 Superconductivity +cond-mat/0703633 Statistical Mechanics +cond-mat/0703634 Disordered Systems and Neural Networks +cond-mat/0703635 Superconductivity +cond-mat/0703643 Superconductivity +cond-mat/0703644 Strongly Correlated Electrons +cond-mat/0703647 Strongly Correlated Electrons +cond-mat/0703648 Superconductivity +cond-mat/0703649 Mesoscale and Nanoscale Physics +cond-mat/0703651 Strongly Correlated Electrons +cond-mat/0703652 Materials Science +cond-mat/0703658 Superconductivity +cond-mat/0703663 Statistical Mechanics +cond-mat/0703666 Materials Science +cond-mat/0703670 Mesoscale and Nanoscale Physics +cond-mat/0703671 Strongly Correlated Electrons +cond-mat/0703673 Superconductivity +cond-mat/0703675 Materials Science +cond-mat/0703677 Materials Science +cond-mat/0703678 Strongly Correlated Electrons +cond-mat/0703680 Materials Science +cond-mat/0703687 Statistical Mechanics +cond-mat/0703689 Mesoscale and Nanoscale Physics +cond-mat/0703694 Strongly Correlated Electrons +cond-mat/0703698 Soft Condensed Matter +cond-mat/0703705 Mesoscale and Nanoscale Physics +cond-mat/0703710 Other Condensed Matter +cond-mat/0703711 Mesoscale and Nanoscale Physics +cond-mat/0703714 Other Condensed Matter +cond-mat/0703719 Mesoscale and Nanoscale Physics +cond-mat/0703723 Materials Science +cond-mat/0703724 Superconductivity +cond-mat/0703725 Statistical Mechanics +cond-mat/0703727 Strongly Correlated Electrons +cond-mat/0703728 Strongly Correlated Electrons +cond-mat/0703730 Superconductivity +cond-mat/0703732 Superconductivity +cond-mat/0703735 Superconductivity +cond-mat/0703739 Other Condensed Matter +cond-mat/0703741 Materials Science +cond-mat/0703743 Other Condensed Matter +cond-mat/0703745 Mesoscale and Nanoscale Physics +cond-mat/0703746 Materials Science +cond-mat/0703747 Strongly Correlated Electrons +cond-mat/0703749 Materials Science +cond-mat/0703752 Superconductivity +cond-mat/0703754 Soft Condensed Matter +cond-mat/0703760 Materials Science +cond-mat/0703761 Superconductivity +cond-mat/0703762 Statistical Mechanics +cond-mat/0703764 Soft Condensed Matter +cond-mat/0703765 Strongly Correlated Electrons +cond-mat/0703769 Strongly Correlated Electrons +cond-mat/0703770 Disordered Systems and Neural Networks +cond-mat/0703773 Statistical Mechanics +cond-mat/0703774 Strongly Correlated Electrons +cond-mat/0703776 Strongly Correlated Electrons +cond-mat/0703778 Mesoscale and Nanoscale Physics +cond-mat/0703782 Other Condensed Matter +cond-mat/0703786 Materials Science +cond-mat/0703788 Strongly Correlated Electrons +cond-mat/0703792 Statistical Mechanics +cond-mat/0703793 Materials Science +cond-mat/0703796 Soft Condensed Matter +cond-mat/0703799 Materials Science +cond-mat/0703805 Other Condensed Matter +cond-mat/0703808 Soft Condensed Matter +cond-mat/0703809 Superconductivity +cond-mat/0703812 Other Condensed Matter +cond-mat/0703814 Strongly Correlated Electrons +cond-mat/0703817 Superconductivity +cond-mat/0703819 Other Condensed Matter +cond-mat/0703820 Disordered Systems and Neural Networks +cond-mat/0703821 Soft Condensed Matter +cs/0701017 Information Theory +cs/0701196 Information Theory +cs/0703046 Information Theory +gr-qc/0701023 +gr-qc/0701030 +gr-qc/0701031 +gr-qc/0701045 +gr-qc/0701088 +gr-qc/0701107 +gr-qc/0701112 +gr-qc/0701164 +gr-qc/0702034 +gr-qc/0702065 +gr-qc/0703033 +gr-qc/0703101 +hep-ex/0701010 Experiment +hep-ex/0701018 Experiment +hep-lat/0409115 Lattice +hep-lat/0411006 Lattice +hep-lat/0610052 Lattice +hep-lat/0610119 Lattice +hep-lat/0701017 Lattice +hep-lat/0703005 Lattice +hep-ph/0701172 Phenomenology +hep-ph/0701210 Phenomenology +hep-ph/0701229 Phenomenology +hep-ph/0701252 Phenomenology +hep-ph/0702004 Phenomenology +hep-ph/0702006 Phenomenology +hep-ph/0702062 Phenomenology +hep-ph/0702080 Phenomenology +hep-ph/0702091 Phenomenology +hep-ph/0702150 Phenomenology +hep-ph/0702228 Phenomenology +hep-ph/0702277 Phenomenology +hep-ph/0702280 Phenomenology +hep-ph/0703023 Phenomenology +hep-ph/0703109 Phenomenology +hep-ph/0703110 Phenomenology +hep-ph/0703113 Phenomenology +hep-ph/0703116 Phenomenology +hep-ph/0703123 Phenomenology +hep-ph/0703128 Phenomenology +hep-ph/0703208 Phenomenology +hep-ph/0703271 Phenomenology +hep-th/0701010 Theory +hep-th/0701023 Theory +hep-th/0701031 Theory +hep-th/0701051 Theory +hep-th/0701052 Theory +hep-th/0701062 Theory +hep-th/0701063 Theory +hep-th/0701064 Theory +hep-th/0701074 Theory +hep-th/0701083 Theory +hep-th/0701087 Theory +hep-th/0701090 Theory +hep-th/0701140 Theory +hep-th/0701158 Theory +hep-th/0701256 Theory +hep-th/0701258 Theory +hep-th/0701269 Theory +hep-th/0701277 Theory +hep-th/0701287 Theory +hep-th/0701292 Theory +hep-th/0702009 Theory +hep-th/0702021 Theory +hep-th/0702025 Theory +hep-th/0702026 Theory +hep-th/0702028 Theory +hep-th/0702036 Theory +hep-th/0702040 Theory +hep-th/0702041 Theory +hep-th/0702042 Theory +hep-th/0702046 Theory +hep-th/0702053 Theory +hep-th/0702083 Theory +hep-th/0702103 Theory +hep-th/0702110 Theory +hep-th/0702111 Theory +hep-th/0702122 Theory +hep-th/0702126 Theory +hep-th/0702141 Theory +hep-th/0702142 Theory +hep-th/0702143 Theory +hep-th/0702147 Theory +hep-th/0702149 Theory +hep-th/0702188 Theory +hep-th/0702193 Theory +hep-th/0702196 Theory +hep-th/0702197 Theory +hep-th/0702219 Theory +hep-th/0703003 Theory +hep-th/0703105 Theory +hep-th/0703109 Theory +hep-th/0703143 Theory +hep-th/0703157 Theory +hep-th/0703168 Theory +hep-th/0703236 Theory +hep-th/0703254 Theory +math-ph/0701002 +math-ph/0701014 +math-ph/0701016 +math-ph/0701027 +math-ph/0701029 +math-ph/0701031 +math-ph/0701032 +math-ph/0701044 +math-ph/0701045 +math-ph/0701046 +math-ph/0701050 +math-ph/0701056 +math-ph/0701062 +math-ph/0701065 +math-ph/0701066 +math-ph/0701074 +math-ph/0701075 +math-ph/0701077 +math-ph/0702007 +math-ph/0702035 +math-ph/0702039 +math-ph/0702046 +math-ph/0702051 +math-ph/0702054 +math-ph/0702072 +math-ph/0702075 +math-ph/0702080 +math-ph/0702081 +math-ph/0702083 +math-ph/0702085 +math-ph/0702091 +math-ph/0702092 +math-ph/0702093 +math-ph/0703009 +math-ph/0703014 +math-ph/0703017 +math-ph/0703020 +math-ph/0703025 +math-ph/0703037 +math-ph/0703040 +math-ph/0703043 +math-ph/0703048 +math-ph/0703051 +math-ph/0703058 +math-ph/0703067 +math-ph/0703079 +math-ph/0703086 +math-ph/0703087 +math/0701041 Analysis of PDEs +math/0701050 Complex Variables +math/0701076 Differential Geometry +math/0701100 Analysis of PDEs +math/0701116 Differential Geometry +math/0701163 Symplectic Geometry +math/0701180 Probability +math/0701201 Probability +math/0701236 Analysis of PDEs +math/0701320 Quantum Algebra +math/0701337 Numerical Analysis +math/0701349 Differential Geometry +math/0701434 K-Theory and Homology +math/0701437 Spectral Theory +math/0701476 Differential Geometry +math/0701563 Numerical Analysis +math/0701575 Dynamical Systems +math/0701623 Dynamical Systems +math/0701664 Geometric Topology +math/0701700 Group Theory +math/0701756 Spectral Theory +math/0701777 Metric Geometry +math/0701783 Symplectic Geometry +math/0701785 Analysis of PDEs +math/0701843 Differential Geometry +math/0701848 Analysis of PDEs +math/0701883 Classical Analysis and ODEs +math/0701894 Algebraic Geometry +math/0701902 Quantum Algebra +math/0701933 Analysis of PDEs +math/0702009 Functional Analysis +math/0702022 Analysis of PDEs +math/0702024 Analysis of PDEs +math/0702076 Differential Geometry +math/0702169 Optimization and Control +math/0702225 Statistics Theory +math/0702260 Probability +math/0702268 Quantum Algebra +math/0702284 Statistics Theory +math/0702289 Differential Geometry +math/0702337 Representation Theory +math/0702397 Quantum Algebra +math/0702420 Spectral Theory +math/0702438 Analysis of PDEs +math/0702481 Probability +math/0702589 Analysis of PDEs +math/0702704 Functional Analysis +math/0702791 Analysis of PDEs +math/0702827 Dynamical Systems +math/0702848 Algebraic Geometry +math/0703097 Dynamical Systems +math/0703127 Complex Variables +math/0703152 Commutative Algebra +math/0703191 Spectral Theory +math/0703193 Differential Geometry +math/0703235 Analysis of PDEs +math/0703259 Differential Geometry +math/0703270 Dynamical Systems +math/0703305 Algebraic Geometry +math/0703399 Analysis of PDEs +math/0703500 Analysis of PDEs +math/0703506 Analysis of PDEs +math/0703525 Symplectic Geometry +math/0703537 Analysis of PDEs +math/0703674 Operator Algebras +math/0703684 Spectral Theory +math/0703715 Statistics Theory +math/0703733 Geometric Topology +math/0703772 Probability +math/0703863 Analysis of PDEs +math/0703881 Analysis of PDEs +nlin/0701001 Exactly Solvable and Integrable Systems +nlin/0701002 Adaptation and Self-Organizing Systems +nlin/0701007 Pattern Formation and Solitons +nlin/0701009 Pattern Formation and Solitons +nlin/0701013 Exactly Solvable and Integrable Systems +nlin/0701021 Pattern Formation and Solitons +nlin/0701022 Pattern Formation and Solitons +nlin/0701029 Exactly Solvable and Integrable Systems +nlin/0701031 Exactly Solvable and Integrable Systems +nlin/0701033 Chaotic Dynamics +nlin/0701036 Chaotic Dynamics +nlin/0701038 Exactly Solvable and Integrable Systems +nlin/0701041 Chaotic Dynamics +nlin/0701043 Pattern Formation and Solitons +nlin/0701052 Exactly Solvable and Integrable Systems +nlin/0701053 Pattern Formation and Solitons +nlin/0701055 Exactly Solvable and Integrable Systems +nlin/0701060 Pattern Formation and Solitons +nlin/0702014 Exactly Solvable and Integrable Systems +nlin/0702020 Exactly Solvable and Integrable Systems +nlin/0702022 Chaotic Dynamics +nlin/0702023 Pattern Formation and Solitons +nlin/0702024 Chaotic Dynamics +nlin/0702025 Chaotic Dynamics +nlin/0702027 Chaotic Dynamics +nlin/0702028 Exactly Solvable and Integrable Systems +nlin/0702029 Chaotic Dynamics +nlin/0702031 Chaotic Dynamics +nlin/0702032 Chaotic Dynamics +nlin/0702034 Chaotic Dynamics +nlin/0702036 Adaptation and Self-Organizing Systems +nlin/0702037 Chaotic Dynamics +nlin/0702040 Exactly Solvable and Integrable Systems +nlin/0702041 Exactly Solvable and Integrable Systems +nlin/0702043 Pattern Formation and Solitons +nlin/0702046 Cellular Automata and Lattice Gases +nlin/0702051 Exactly Solvable and Integrable Systems +nlin/0702054 Chaotic Dynamics +nlin/0702057 Pattern Formation and Solitons +nlin/0703003 Exactly Solvable and Integrable Systems +nlin/0703005 Chaotic Dynamics +nlin/0703006 Pattern Formation and Solitons +nlin/0703007 Pattern Formation and Solitons +nlin/0703008 Pattern Formation and Solitons +nlin/0703009 Chaotic Dynamics +nlin/0703010 Chaotic Dynamics +nlin/0703012 Adaptation and Self-Organizing Systems +nlin/0703014 Chaotic Dynamics +nlin/0703021 Pattern Formation and Solitons +nlin/0703027 Exactly Solvable and Integrable Systems +nlin/0703030 Chaotic Dynamics +nlin/0703032 Pattern Formation and Solitons +nlin/0703038 Adaptation and Self-Organizing Systems +nlin/0703040 Pattern Formation and Solitons +nlin/0703041 Exactly Solvable and Integrable Systems +nlin/0703045 Pattern Formation and Solitons +nlin/0703047 Chaotic Dynamics +nlin/0703049 Pattern Formation and Solitons +nlin/0703060 Pattern Formation and Solitons +nlin/0703063 Chaotic Dynamics +nlin/0703064 Pattern Formation and Solitons +nlin/0703067 Chaotic Dynamics +nucl-ex/0701007 +nucl-ex/0701016 +nucl-ex/0702006 +nucl-ex/0703010 +nucl-ex/0703015 +nucl-ex/0703017 +nucl-ex/0703018 +nucl-ex/0703019 +nucl-th/0701039 +nucl-th/0701043 +nucl-th/0701097 +nucl-th/0703011 +nucl-th/0703013 +nucl-th/0703026 +nucl-th/0703077 +nucl-th/0703090 +physics/0607026 Atmospheric and Oceanic Physics +physics/0607028 Optics +physics/0607032 Optics +physics/0607035 Atomic Physics +physics/0607039 Optics +physics/0607040 Atomic Physics +physics/0607049 Geophysics +physics/0607052 Optics +physics/0607055 Optics +physics/0607057 Optics +physics/0607061 Atomic Physics +physics/0607062 Chemical Physics +physics/0607063 Chemical Physics +physics/0607070 Atomic Physics +physics/0607077 Atomic Physics +physics/0607081 Chemical Physics +physics/0607084 Atomic Physics +physics/0607092 Optics +physics/0607095 Physics and Society +physics/0607101 Physics and Society +physics/0607104 Optics +physics/0607110 Atomic Physics +physics/0607121 Optics +physics/0607123 Physics and Society +physics/0607125 Plasma Physics +physics/0607127 Plasma Physics +physics/0607128 Space Physics +physics/0607130 Optics +physics/0607135 Optics +physics/0607140 Atomic Physics +physics/0607141 Optics +physics/0607147 Optics +physics/0607150 Physics and Society +physics/0607151 Physics and Society +physics/0607153 Atomic Physics +physics/0607157 Geophysics +physics/0607162 Chemical Physics +physics/0607166 Physics and Society +physics/0607167 Physics and Society +physics/0607168 Atomic Physics +physics/0607169 Optics +physics/0607171 Optics +physics/0607174 Physics and Society +physics/0607175 Physics and Society +physics/0607177 Optics +physics/0607184 Atomic and Molecular Clusters +physics/0607185 Atomic and Molecular Clusters +physics/0607186 General Physics +physics/0607191 Instrumentation and Detectors +physics/0607192 Physics and Society +physics/0607193 Atomic and Molecular Clusters +physics/0607195 Optics +physics/0607198 Optics +physics/0607202 Computational Physics +physics/0607203 Plasma Physics +physics/0607205 Optics +physics/0607206 Data Analysis, Statistics and Probability +physics/0607210 Physics and Society +physics/0607215 Atomic Physics +physics/0607216 Optics +physics/0607221 Optics +physics/0607222 Physics and Society +physics/0607226 Physics and Society +physics/0607230 Geophysics +physics/0607236 Physics and Society +physics/0607243 Atmospheric and Oceanic Physics +physics/0607248 Atomic Physics +physics/0607250 Data Analysis, Statistics and Probability +physics/0607254 Optics +physics/0607257 Accelerator Physics +physics/0607258 Physics and Society +physics/0607260 Optics +physics/0607262 General Physics +physics/0607263 Fluid Dynamics +physics/0607264 Physics and Society +physics/0607271 Physics and Society +physics/0607273 Data Analysis, Statistics and Probability +physics/0607274 Optics +physics/0607277 Optics +physics/0607280 Fluid Dynamics +physics/0607281 Optics +physics/0607287 Physics and Society +physics/0607290 Computational Physics +physics/0607292 Optics +physics/0607295 Fluid Dynamics +physics/0608002 Instrumentation and Detectors +physics/0608008 Physics and Society +physics/0608013 Physics and Society +physics/0608014 Space Physics +physics/0608015 Atomic Physics +physics/0608016 Physics and Society +physics/0608018 Physics and Society +physics/0608019 Physics and Society +physics/0608025 Geophysics +physics/0608028 Atomic Physics +physics/0608029 Classical Physics +physics/0608033 Fluid Dynamics +physics/0608035 Physics and Society +physics/0608036 Physics and Society +physics/0608039 Biological Physics +physics/0608041 Optics +physics/0608044 Optics +physics/0608046 Instrumentation and Detectors +physics/0608047 Instrumentation and Detectors +physics/0608048 Instrumentation and Detectors +physics/0608049 Instrumentation and Detectors +physics/0608055 Atomic Physics +physics/0608060 Optics +physics/0608069 Data Analysis, Statistics and Probability +physics/0608070 Optics +physics/0608076 Fluid Dynamics +physics/0608078 Atomic Physics +physics/0608082 Plasma Physics +physics/0608084 Physics and Society +physics/0608087 Physics and Society +physics/0608088 Atomic Physics +physics/0608092 Physics Education +physics/0608094 Geophysics +physics/0608099 Physics and Society +physics/0608103 Data Analysis, Statistics and Probability +physics/0608109 Classical Physics +physics/0608112 Computational Physics +physics/0608115 Physics and Society +physics/0608119 Plasma Physics +physics/0608120 Optics +physics/0608122 Atomic Physics +physics/0608124 Instrumentation and Detectors +physics/0608125 Physics and Society +physics/0608131 Optics +physics/0608132 Optics +physics/0608134 Optics +physics/0608139 Chemical Physics +physics/0608149 Optics +physics/0608161 Geophysics +physics/0608170 Optics +physics/0608173 Accelerator Physics +physics/0608175 Plasma Physics +physics/0608179 Physics and Society +physics/0608180 Biological Physics +physics/0608182 Atomic Physics +physics/0608184 Instrumentation and Detectors +physics/0608185 Data Analysis, Statistics and Probability +physics/0608194 Atomic Physics +physics/0608199 Instrumentation and Detectors +physics/0608201 Physics and Society +physics/0608207 Biological Physics +physics/0608212 Atomic Physics +physics/0608215 Physics and Society +physics/0608216 Atomic Physics +physics/0608220 Fluid Dynamics +physics/0608221 Physics and Society +physics/0608225 Optics +physics/0608227 Space Physics +physics/0608232 Physics and Society +physics/0608234 Biological Physics +physics/0608235 Atomic Physics +physics/0608237 Optics +physics/0608239 Physics Education +physics/0608242 Physics and Society +physics/0608243 Atomic Physics +physics/0608248 Instrumentation and Detectors +physics/0608249 Data Analysis, Statistics and Probability +physics/0608251 Plasma Physics +physics/0608256 Optics +physics/0608263 Plasma Physics +physics/0608270 Optics +physics/0608271 Physics and Society +physics/0608283 Fluid Dynamics +physics/0608284 Physics and Society +physics/0608291 Optics +physics/0608295 Physics Education +physics/0608297 Physics and Society +physics/0608300 Chemical Physics +physics/0608302 Instrumentation and Detectors +physics/0608309 General Physics +physics/0609002 Biological Physics +physics/0609009 Optics +physics/0609010 Atomic Physics +physics/0609011 Data Analysis, Statistics and Probability +physics/0609013 Atomic Physics +physics/0609019 Atmospheric and Oceanic Physics +physics/0609020 Physics and Society +physics/0609025 Chemical Physics +physics/0609028 Atomic Physics +physics/0609029 Chemical Physics +physics/0609032 Optics +physics/0609034 Optics +physics/0609036 Physics and Society +physics/0609037 Chemical Physics +physics/0609038 Physics and Society +physics/0609041 Atomic Physics +physics/0609046 Data Analysis, Statistics and Probability +physics/0609069 Physics and Society +physics/0609077 Computational Physics +physics/0609080 Optics +physics/0609087 Atomic Physics +physics/0609090 Chemical Physics +physics/0609094 Optics +physics/0609107 Atomic Physics +physics/0609112 Fluid Dynamics +physics/0609121 Atomic Physics +physics/0609126 Biological Physics +physics/0609127 Physics and Society +physics/0609130 Physics and Society +physics/0609132 Optics +physics/0609138 Fluid Dynamics +physics/0609141 Classical Physics +physics/0609143 Optics +physics/0609151 Accelerator Physics +physics/0609158 Optics +physics/0609160 Optics +physics/0609162 Optics +physics/0609165 Optics +physics/0609167 Optics +physics/0609172 Biological Physics +physics/0609173 Optics +physics/0609189 Atmospheric and Oceanic Physics +physics/0609191 Computational Physics +physics/0609193 Optics +physics/0609197 Instrumentation and Detectors +physics/0609198 Physics and Society +physics/0609199 Optics +physics/0609201 Instrumentation and Detectors +physics/0609203 Atomic Physics +physics/0609208 Fluid Dynamics +physics/0609220 Atomic Physics +physics/0609224 Optics +physics/0609228 Geophysics +physics/0609234 Optics +physics/0609238 Optics +physics/0609241 Physics and Society +physics/0609246 Optics +physics/0609256 Atmospheric and Oceanic Physics +physics/0610004 Optics +physics/0610006 Data Analysis, Statistics and Probability +physics/0610026 Physics and Society +physics/0610033 Computational Physics +physics/0610034 General Physics +physics/0610036 Biological Physics +physics/0610037 Optics +physics/0610046 General Physics +physics/0610056 Atomic Physics +physics/0610063 Optics +physics/0610072 Optics +physics/0610086 Fluid Dynamics +physics/0610088 Plasma Physics +physics/0610091 Instrumentation and Detectors +physics/0610093 Biological Physics +physics/0610096 Atomic Physics +physics/0610098 Atomic Physics +physics/0610100 Atomic Physics +physics/0610103 Fluid Dynamics +physics/0610104 Physics and Society +physics/0610108 Physics and Society +physics/0610110 Physics and Society +physics/0610118 Optics +physics/0610119 Atomic Physics +physics/0610122 Atomic Physics +physics/0610128 Instrumentation and Detectors +physics/0610129 Optics +physics/0610130 Optics +physics/0610131 Chemical Physics +physics/0610146 Biological Physics +physics/0610148 Atomic Physics +physics/0610149 Physics and Society +physics/0610152 Atomic Physics +physics/0610158 Optics +physics/0610164 Atomic Physics +physics/0610172 Classical Physics +physics/0610183 Classical Physics +physics/0610194 Atomic Physics +physics/0610200 Optics +physics/0610207 Atomic Physics +physics/0610211 Data Analysis, Statistics and Probability +physics/0610212 Optics +physics/0610216 Optics +physics/0610228 Optics +physics/0610230 Optics +physics/0610236 Optics +physics/0610242 Instrumentation and Detectors +physics/0610252 Optics +physics/0610254 Atomic Physics +physics/0610258 Fluid Dynamics +physics/0610262 Plasma Physics +physics/0610264 Atomic Physics +physics/0610265 Plasma Physics +physics/0610272 Atomic Physics +physics/0610274 Optics +physics/0610275 Data Analysis, Statistics and Probability +physics/0610283 Physics and Society +physics/0610289 Atomic Physics +physics/0611003 Atomic Physics +physics/0611004 Fluid Dynamics +physics/0611009 Fluid Dynamics +physics/0611014 Atomic Physics +physics/0611017 Optics +physics/0611021 Optics +physics/0611023 Physics and Society +physics/0611028 Optics +physics/0611035 Atomic Physics +physics/0611039 Optics +physics/0611042 Fluid Dynamics +physics/0611047 Optics +physics/0611048 Physics and Society +physics/0611053 Optics +physics/0611054 Fluid Dynamics +physics/0611058 Atomic Physics +physics/0611059 Optics +physics/0611060 Atomic Physics +physics/0611061 Optics +physics/0611062 Optics +physics/0611063 Optics +physics/0611067 Atomic Physics +physics/0611072 Atomic Physics +physics/0611078 Physics and Society +physics/0611090 Fluid Dynamics +physics/0611093 Physics and Society +physics/0611094 Plasma Physics +physics/0611101 Classical Physics +physics/0611102 Data Analysis, Statistics and Probability +physics/0611105 Instrumentation and Detectors +physics/0611109 Optics +physics/0611126 Optics +physics/0611127 Optics +physics/0611137 Medical Physics +physics/0611140 Fluid Dynamics +physics/0611145 Physics and Society +physics/0611147 Physics and Society +physics/0611149 Optics +physics/0611150 Optics +physics/0611155 Atomic Physics +physics/0611160 Optics +physics/0611163 Optics +physics/0611165 Fluid Dynamics +physics/0611166 Fluid Dynamics +physics/0611167 Classical Physics +physics/0611175 Atomic Physics +physics/0611184 Optics +physics/0611187 Optics +physics/0611188 Physics and Society +physics/0611189 Physics and Society +physics/0611191 Optics +physics/0611196 Atomic Physics +physics/0611201 Computational Physics +physics/0611208 Fluid Dynamics +physics/0611214 Optics +physics/0611217 Optics +physics/0611225 Instrumentation and Detectors +physics/0611243 Computational Physics +physics/0611244 Physics and Society +physics/0611252 Chemical Physics +physics/0611257 Optics +physics/0611258 Chemical Physics +physics/0611263 Atomic Physics +physics/0611264 Atomic Physics +physics/0611265 Atomic Physics +physics/0611270 Optics +physics/0611272 Instrumentation and Detectors +physics/0611275 Fluid Dynamics +physics/0611280 Atomic Physics +physics/0611285 Medical Physics +physics/0611292 Optics +physics/0611297 Medical Physics +physics/0612001 Optics +physics/0612002 Fluid Dynamics +physics/0612006 Physics and Society +physics/0612009 Atomic and Molecular Clusters +physics/0612016 Physics and Society +physics/0612020 Accelerator Physics +physics/0612029 Physics Education +physics/0612030 Physics and Society +physics/0612032 Physics and Society +physics/0612033 Chemical Physics +physics/0612037 Physics and Society +physics/0612042 Atmospheric and Oceanic Physics +physics/0612052 Atomic Physics +physics/0612054 Biological Physics +physics/0612056 Data Analysis, Statistics and Probability +physics/0612057 Optics +physics/0612058 Geophysics +physics/0612059 Data Analysis, Statistics and Probability +physics/0612065 Computational Physics +physics/0612069 Physics and Society +physics/0612071 Atomic Physics +physics/0612086 History and Philosophy of Physics +physics/0612095 Physics and Society +physics/0612097 Atomic Physics +physics/0612098 Optics +physics/0612104 Computational Physics +physics/0612105 Instrumentation and Detectors +physics/0612109 Physics Education +physics/0612110 Atomic Physics +physics/0612122 Physics and Society +physics/0612131 Fluid Dynamics +physics/0612133 Atomic Physics +physics/0612140 Physics and Society +physics/0612157 Plasma Physics +physics/0612163 Atomic Physics +physics/0612167 Classical Physics +physics/0612169 Physics and Society +physics/0612172 Optics +physics/0612173 Optics +physics/0612174 Computational Physics +physics/0612176 Classical Physics +physics/0612192 Optics +physics/0612195 Atomic Physics +physics/0612198 Data Analysis, Statistics and Probability +physics/0612207 Fluid Dynamics +physics/0612209 Atmospheric and Oceanic Physics +physics/0612211 Biological Physics +physics/0612215 Plasma Physics +physics/0612219 Atomic Physics +physics/0612223 Physics and Society +physics/0612224 Biological Physics +physics/0612225 Physics and Society +physics/0612231 Data Analysis, Statistics and Probability +physics/0612237 Optics +physics/0612245 Physics and Society +physics/0612247 Optics +physics/0612252 Optics +physics/0701004 Physics and Society +physics/0701005 Classical Physics +physics/0701008 Data Analysis, Statistics and Probability +physics/0701010 Optics +physics/0701015 Physics Education +physics/0701021 Classical Physics +physics/0701023 Atomic Physics +physics/0701024 Atomic Physics +physics/0701035 Classical Physics +physics/0701037 Optics +physics/0701041 Optics +physics/0701045 Optics +physics/0701051 Physics and Society +physics/0701052 Fluid Dynamics +physics/0701062 Physics and Society +physics/0701075 Fluid Dynamics +physics/0701080 Fluid Dynamics +physics/0701086 Atomic Physics +physics/0701087 Physics and Society +physics/0701096 Classical Physics +physics/0701106 Fluid Dynamics +physics/0701113 Atomic Physics +physics/0701124 Plasma Physics +physics/0701128 Computational Physics +physics/0701129 Optics +physics/0701140 Physics and Society +physics/0701144 Optics +physics/0701148 Physics and Society +physics/0701156 Physics and Society +physics/0701158 Physics and Society +physics/0701160 Atomic Physics +physics/0701169 Physics and Society +physics/0701174 Biological Physics +physics/0701177 Physics and Society +physics/0701180 Classical Physics +physics/0701182 Physics and Society +physics/0701185 Plasma Physics +physics/0701189 Data Analysis, Statistics and Probability +physics/0701191 Atomic Physics +physics/0701193 Optics +physics/0701194 Atomic Physics +physics/0701196 Medical Physics +physics/0701197 Plasma Physics +physics/0701201 Fluid Dynamics +physics/0701210 Optics +physics/0701217 Atomic Physics +physics/0701219 Fluid Dynamics +physics/0701238 Data Analysis, Statistics and Probability +physics/0701239 Atomic Physics +physics/0701252 Optics +physics/0701253 Plasma Physics +physics/0701256 Optics +physics/0701262 Optics +physics/0701264 Physics and Society +physics/0701276 Optics +physics/0701277 Instrumentation and Detectors +physics/0701288 Plasma Physics +physics/0701290 Physics and Society +physics/0701297 Optics +physics/0701302 Physics and Society +physics/0701304 Optics +physics/0701319 Fluid Dynamics +physics/0701320 Atomic Physics +physics/0701321 Optics +physics/0701323 Physics and Society +physics/0701324 Plasma Physics +physics/0701326 Data Analysis, Statistics and Probability +physics/0701334 Plasma Physics +physics/0701336 Plasma Physics +physics/0701344 Physics Education +physics/0701345 Atmospheric and Oceanic Physics +physics/0701348 Data Analysis, Statistics and Probability +physics/0702001 Physics and Society +physics/0702005 Chemical Physics +physics/0702013 Atomic Physics +physics/0702016 Classical Physics +physics/0702018 Accelerator Physics +physics/0702020 Biological Physics +physics/0702023 Plasma Physics +physics/0702025 Atomic Physics +physics/0702029 Data Analysis, Statistics and Probability +physics/0702031 Physics and Society +physics/0702038 Optics +physics/0702039 Optics +physics/0702049 Optics +physics/0702051 Computational Physics +physics/0702052 Atomic Physics +physics/0702057 Space Physics +physics/0702058 General Physics +physics/0702062 Physics Education +physics/0702063 Optics +physics/0702066 Atomic Physics +physics/0702067 Atmospheric and Oceanic Physics +physics/0702074 Atomic Physics +physics/0702076 Physics and Society +physics/0702079 Optics +physics/0702082 Fluid Dynamics +physics/0702090 Atomic Physics +physics/0702096 Physics and Society +physics/0702097 Physics and Society +physics/0702105 Optics +physics/0702109 Fluid Dynamics +physics/0702116 Plasma Physics +physics/0702117 Plasma Physics +physics/0702122 Atomic Physics +physics/0702133 Computational Physics +physics/0702139 Optics +physics/0702144 Chemical Physics +physics/0702149 Biological Physics +physics/0702158 Physics and Society +physics/0702160 Physics and Society +physics/0702179 History and Philosophy of Physics +physics/0702180 Biological Physics +physics/0702202 Physics and Society +physics/0702207 Classical Physics +physics/0702212 Classical Physics +physics/0702213 Computational Physics +physics/0702225 Optics +physics/0702226 Optics +physics/0702228 Geophysics +physics/0702230 Optics +physics/0702238 Atomic and Molecular Clusters +physics/0702243 Optics +physics/0702245 Optics +physics/0702248 Physics and Society +physics/0702252 Optics +physics/0703007 Biological Physics +physics/0703010 Geophysics +physics/0703011 Optics +physics/0703021 Physics and Society +physics/0703024 Fluid Dynamics +physics/0703026 Biological Physics +physics/0703030 Chemical Physics +physics/0703036 Optics +physics/0703040 Physics and Society +physics/0703041 Instrumentation and Detectors +physics/0703046 Optics +physics/0703047 Plasma Physics +physics/0703048 Physics and Society +physics/0703057 Fluid Dynamics +physics/0703061 Physics and Society +physics/0703065 Optics +physics/0703067 Atomic Physics +physics/0703072 Fluid Dynamics +physics/0703079 Instrumentation and Detectors +physics/0703080 Optics +physics/0703089 Biological Physics +physics/0703090 Atomic Physics +physics/0703101 Space Physics +physics/0703102 Atomic Physics +physics/0703104 Atomic Physics +physics/0703107 Optics +physics/0703108 Classical Physics +physics/0703111 Atomic and Molecular Clusters +physics/0703112 Atomic Physics +physics/0703119 Classical Physics +physics/0703121 Atomic Physics +physics/0703129 Biological Physics +physics/0703132 Optics +physics/0703136 Chemical Physics +physics/0703150 Optics +physics/0703153 Data Analysis, Statistics and Probability +physics/0703165 Optics +physics/0703172 Atomic Physics +physics/0703174 Optics +physics/0703175 General Physics +physics/0703186 Instrumentation and Detectors +physics/0703189 Physics and Society +physics/0703195 Atmospheric and Oceanic Physics +physics/0703196 Atmospheric and Oceanic Physics +physics/0703203 Fluid Dynamics +physics/0703205 Atomic Physics +physics/0703208 Physics and Society +physics/0703210 Fluid Dynamics +physics/0703215 Optics +physics/0703216 Fluid Dynamics +physics/0703217 Data Analysis, Statistics and Probability +physics/0703224 Physics Education +physics/0703225 Computational Physics +physics/0703230 Optics +physics/0703232 Instrumentation and Detectors +physics/0703246 Chemical Physics +physics/0703251 Optics +physics/0703257 Biological Physics +physics/0703261 Physics and Society +physics/0703263 Atomic Physics +physics/0703265 Chemical Physics +physics/0703267 Atomic and Molecular Clusters +physics/0703268 Physics and Society +physics/0703282 Fluid Dynamics +q-bio/0601003 Neurons and Cognition +q-bio/0601004 Neurons and Cognition +q-bio/0601010 Quantitative Methods +q-bio/0601016 Other Quantitative Biology +q-bio/0601017 Cell Behavior +q-bio/0601022 Subcellular Processes +q-bio/0601023 Populations and Evolution +q-bio/0601031 Populations and Evolution +q-bio/0601034 Biomolecules +q-bio/0601039 Populations and Evolution +q-bio/0601043 Biomolecules +q-bio/0601045 Cell Behavior +q-bio/0601049 Biomolecules +q-bio/0601051 Quantitative Methods +q-bio/0602003 Cell Behavior +q-bio/0602006 Quantitative Methods +q-bio/0602011 Biomolecules +q-bio/0602014 Neurons and Cognition +q-bio/0602015 Populations and Evolution +q-bio/0602022 Biomolecules +q-bio/0602026 Neurons and Cognition +q-bio/0602027 Populations and Evolution +q-bio/0603009 Quantitative Methods +q-bio/0603010 Populations and Evolution +q-bio/0603018 Biomolecules +q-bio/0603024 Biomolecules +q-bio/0603026 Molecular Networks +q-bio/0603027 Biomolecules +q-bio/0603029 Populations and Evolution +q-bio/0603037 Tissues and Organs +q-bio/0604001 Cell Behavior +q-bio/0604003 Biomolecules +q-bio/0604007 Biomolecules +q-bio/0604014 Biomolecules +q-bio/0604015 Genomics +q-bio/0604018 Neurons and Cognition +q-bio/0604026 Molecular Networks +q-bio/0604032 Biomolecules +q-bio/0605001 Populations and Evolution +q-bio/0605011 Molecular Networks +q-bio/0605012 Neurons and Cognition +q-bio/0605022 Neurons and Cognition +q-bio/0605033 Molecular Networks +q-bio/0605036 Populations and Evolution +q-bio/0605037 Biomolecules +q-bio/0606006 Quantitative Methods +q-bio/0606014 Biomolecules +q-bio/0606022 Quantitative Methods +q-bio/0606023 Quantitative Methods +q-bio/0606026 Biomolecules +q-bio/0606028 Genomics +q-bio/0606033 Populations and Evolution +q-bio/0606038 Other Quantitative Biology +q-bio/0606041 Neurons and Cognition +q-bio/0607005 Populations and Evolution +q-bio/0607012 Populations and Evolution +q-bio/0607024 Molecular Networks +q-bio/0607025 Quantitative Methods +q-bio/0607028 Molecular Networks +q-bio/0607041 Tissues and Organs +q-bio/0607046 Quantitative Methods +q-bio/0607050 Biomolecules +q-bio/0608020 Biomolecules +q-bio/0608026 Neurons and Cognition +q-bio/0608031 Quantitative Methods +q-bio/0608036 Biomolecules +q-bio/0608038 Quantitative Methods +q-bio/0608042 Quantitative Methods +q-bio/0609015 Molecular Networks +q-bio/0609026 Quantitative Methods +q-bio/0609029 Biomolecules +q-bio/0609031 Populations and Evolution +q-bio/0609035 Biomolecules +q-bio/0609041 Biomolecules +q-bio/0609047 Populations and Evolution +q-bio/0610002 Populations and Evolution +q-bio/0610007 Biomolecules +q-bio/0610011 Quantitative Methods +q-bio/0610015 Cell Behavior +q-bio/0610018 Populations and Evolution +q-bio/0610025 Molecular Networks +q-bio/0610034 Populations and Evolution +q-bio/0610037 Neurons and Cognition +q-bio/0610046 Biomolecules +q-bio/0610050 Quantitative Methods +q-bio/0610052 Quantitative Methods +q-bio/0610057 Quantitative Methods +q-bio/0611025 Populations and Evolution +q-bio/0611026 Molecular Networks +q-bio/0611031 Populations and Evolution +q-bio/0611038 Molecular Networks +q-bio/0611040 Neurons and Cognition +q-bio/0611045 Cell Behavior +q-bio/0611049 Populations and Evolution +q-bio/0611057 Tissues and Organs +q-bio/0611063 Populations and Evolution +q-bio/0611066 Biomolecules +q-bio/0611069 Molecular Networks +q-bio/0611080 Biomolecules +q-bio/0611085 Subcellular Processes +q-bio/0611090 Biomolecules +q-bio/0611094 Biomolecules +q-bio/0612017 Molecular Networks +q-bio/0612018 Quantitative Methods +q-bio/0612020 Biomolecules +q-bio/0612021 Populations and Evolution +q-bio/0612027 Populations and Evolution +q-bio/0612035 Cell Behavior +q-bio/0612047 Populations and Evolution +q-bio/0701007 Quantitative Methods +q-bio/0701014 Biomolecules +q-bio/0701024 Populations and Evolution +q-bio/0701028 Quantitative Methods +q-bio/0701035 Molecular Networks +q-bio/0701037 Biomolecules +q-bio/0701043 Subcellular Processes +q-bio/0701047 Neurons and Cognition +q-bio/0701052 Molecular Networks +q-bio/0701053 Neurons and Cognition +q-bio/0702007 Quantitative Methods +q-bio/0702012 Biomolecules +q-bio/0702021 Subcellular Processes +q-bio/0702029 Molecular Networks +q-bio/0702041 Populations and Evolution +q-bio/0702043 Biomolecules +q-bio/0702059 Molecular Networks +q-bio/0703002 Neurons and Cognition +q-bio/0703009 Molecular Networks +q-bio/0703016 Populations and Evolution +q-bio/0703017 Neurons and Cognition +q-bio/0703019 Populations and Evolution +q-bio/0703027 Biomolecules +q-bio/0703033 Populations and Evolution +q-bio/0703043 Quantitative Methods +q-bio/0703045 Populations and Evolution +q-bio/0703047 Molecular Networks +q-bio/0703048 Quantitative Methods +q-bio/0703054 Populations and Evolution +q-bio/0703060 Biomolecules +quant-ph/0601003 +quant-ph/0601006 +quant-ph/0601011 +quant-ph/0601013 +quant-ph/0601018 +quant-ph/0601021 +quant-ph/0601022 +quant-ph/0601024 +quant-ph/0601027 +quant-ph/0601028 +quant-ph/0601029 +quant-ph/0601030 +quant-ph/0601032 +quant-ph/0601037 +quant-ph/0601038 +quant-ph/0601039 +quant-ph/0601041 +quant-ph/0601042 +quant-ph/0601046 +quant-ph/0601053 +quant-ph/0601055 +quant-ph/0601059 +quant-ph/0601060 +quant-ph/0601063 +quant-ph/0601066 +quant-ph/0601067 +quant-ph/0601072 +quant-ph/0601077 +quant-ph/0601079 +quant-ph/0601081 +quant-ph/0601085 +quant-ph/0601094 +quant-ph/0601096 +quant-ph/0601098 +quant-ph/0601100 +quant-ph/0601101 +quant-ph/0601102 +quant-ph/0601104 +quant-ph/0601107 +quant-ph/0601108 +quant-ph/0601110 +quant-ph/0601113 +quant-ph/0601119 +quant-ph/0601120 +quant-ph/0601121 +quant-ph/0601122 +quant-ph/0601124 +quant-ph/0601125 +quant-ph/0601126 +quant-ph/0601128 +quant-ph/0601129 +quant-ph/0601133 +quant-ph/0601134 +quant-ph/0601139 +quant-ph/0601142 +quant-ph/0601146 +quant-ph/0601147 +quant-ph/0601148 +quant-ph/0601154 +quant-ph/0601156 +quant-ph/0601159 +quant-ph/0601163 +quant-ph/0601164 +quant-ph/0601165 +quant-ph/0601166 +quant-ph/0601167 +quant-ph/0601171 +quant-ph/0601173 +quant-ph/0601175 +quant-ph/0601177 +quant-ph/0601178 +quant-ph/0601179 +quant-ph/0601180 +quant-ph/0601181 +quant-ph/0601183 +quant-ph/0601184 +quant-ph/0601187 +quant-ph/0601189 +quant-ph/0601193 +quant-ph/0601198 +quant-ph/0601199 +quant-ph/0601203 +quant-ph/0601204 +quant-ph/0601206 +quant-ph/0601208 +quant-ph/0601209 +quant-ph/0601213 +quant-ph/0602003 +quant-ph/0602004 +quant-ph/0602010 +quant-ph/0602013 +quant-ph/0602015 +quant-ph/0602016 +quant-ph/0602017 +quant-ph/0602023 +quant-ph/0602025 +quant-ph/0602026 +quant-ph/0602030 +quant-ph/0602033 +quant-ph/0602038 +quant-ph/0602039 +quant-ph/0602041 +quant-ph/0602042 +quant-ph/0602045 +quant-ph/0602046 +quant-ph/0602048 +quant-ph/0602049 +quant-ph/0602050 +quant-ph/0602058 +quant-ph/0602059 +quant-ph/0602060 +quant-ph/0602061 +quant-ph/0602062 +quant-ph/0602066 +quant-ph/0602076 +quant-ph/0602077 +quant-ph/0602079 +quant-ph/0602080 +quant-ph/0602082 +quant-ph/0602083 +quant-ph/0602084 +quant-ph/0602085 +quant-ph/0602089 +quant-ph/0602090 +quant-ph/0602093 +quant-ph/0602097 +quant-ph/0602099 +quant-ph/0602101 +quant-ph/0602105 +quant-ph/0602106 +quant-ph/0602110 +quant-ph/0602111 +quant-ph/0602113 +quant-ph/0602114 +quant-ph/0602120 +quant-ph/0602121 +quant-ph/0602123 +quant-ph/0602124 +quant-ph/0602128 +quant-ph/0602130 +quant-ph/0602131 +quant-ph/0602132 +quant-ph/0602133 +quant-ph/0602135 +quant-ph/0602137 +quant-ph/0602148 +quant-ph/0602150 +quant-ph/0602153 +quant-ph/0602154 +quant-ph/0602158 +quant-ph/0602160 +quant-ph/0602162 +quant-ph/0602164 +quant-ph/0602165 +quant-ph/0602166 +quant-ph/0602168 +quant-ph/0602170 +quant-ph/0602175 +quant-ph/0602181 +quant-ph/0602182 +quant-ph/0602187 +quant-ph/0602193 +quant-ph/0602195 +quant-ph/0602200 +quant-ph/0602202 +quant-ph/0602205 +quant-ph/0602208 +quant-ph/0602210 +quant-ph/0602212 +quant-ph/0602215 +quant-ph/0602216 +quant-ph/0602218 +quant-ph/0602220 +quant-ph/0602223 +quant-ph/0602226 +quant-ph/0602236 +quant-ph/0603003 +quant-ph/0603006 +quant-ph/0603008 +quant-ph/0603016 +quant-ph/0603017 +quant-ph/0603022 +quant-ph/0603023 +quant-ph/0603024 +quant-ph/0603028 +quant-ph/0603033 +quant-ph/0603036 +quant-ph/0603037 +quant-ph/0603038 +quant-ph/0603041 +quant-ph/0603044 +quant-ph/0603046 +quant-ph/0603049 +quant-ph/0603050 +quant-ph/0603052 +quant-ph/0603053 +quant-ph/0603054 +quant-ph/0603055 +quant-ph/0603056 +quant-ph/0603057 +quant-ph/0603063 +quant-ph/0603064 +quant-ph/0603067 +quant-ph/0603071 +quant-ph/0603074 +quant-ph/0603076 +quant-ph/0603080 +quant-ph/0603081 +quant-ph/0603082 +quant-ph/0603086 +quant-ph/0603091 +quant-ph/0603097 +quant-ph/0603100 +quant-ph/0603103 +quant-ph/0603104 +quant-ph/0603105 +quant-ph/0603106 +quant-ph/0603109 +quant-ph/0603111 +quant-ph/0603113 +quant-ph/0603114 +quant-ph/0603118 +quant-ph/0603119 +quant-ph/0603125 +quant-ph/0603127 +quant-ph/0603128 +quant-ph/0603131 +quant-ph/0603133 +quant-ph/0603138 +quant-ph/0603139 +quant-ph/0603141 +quant-ph/0603150 +quant-ph/0603152 +quant-ph/0603156 +quant-ph/0603157 +quant-ph/0603160 +quant-ph/0603161 +quant-ph/0603164 +quant-ph/0603165 +quant-ph/0603171 +quant-ph/0603174 +quant-ph/0603176 +quant-ph/0603177 +quant-ph/0603181 +quant-ph/0603184 +quant-ph/0603188 +quant-ph/0603192 +quant-ph/0603194 +quant-ph/0603196 +quant-ph/0603197 +quant-ph/0603198 +quant-ph/0603203 +quant-ph/0603206 +quant-ph/0603212 +quant-ph/0603213 +quant-ph/0603215 +quant-ph/0603219 +quant-ph/0603220 +quant-ph/0603221 +quant-ph/0603222 +quant-ph/0603223 +quant-ph/0603225 +quant-ph/0603227 +quant-ph/0603237 +quant-ph/0603241 +quant-ph/0603242 +quant-ph/0603243 +quant-ph/0603247 +quant-ph/0603248 +quant-ph/0603249 +quant-ph/0603252 +quant-ph/0603254 +quant-ph/0603259 +quant-ph/0603261 +quant-ph/0603263 +quant-ph/0603269 +quant-ph/0603270 +quant-ph/0603271 +quant-ph/0603272 +quant-ph/0603276 +quant-ph/0603279 +quant-ph/0603280 +quant-ph/0603281 +quant-ph/0603285 +quant-ph/0604002 +quant-ph/0604005 +quant-ph/0604008 +quant-ph/0604011 +quant-ph/0604014 +quant-ph/0604017 +quant-ph/0604018 +quant-ph/0604019 +quant-ph/0604020 +quant-ph/0604029 +quant-ph/0604031 +quant-ph/0604033 +quant-ph/0604038 +quant-ph/0604041 +quant-ph/0604042 +quant-ph/0604044 +quant-ph/0604051 +quant-ph/0604053 +quant-ph/0604058 +quant-ph/0604061 +quant-ph/0604065 +quant-ph/0604066 +quant-ph/0604067 +quant-ph/0604068 +quant-ph/0604079 +quant-ph/0604088 +quant-ph/0604096 +quant-ph/0604098 +quant-ph/0604099 +quant-ph/0604106 +quant-ph/0604108 +quant-ph/0604111 +quant-ph/0604119 +quant-ph/0604120 +quant-ph/0604123 +quant-ph/0604129 +quant-ph/0604134 +quant-ph/0604138 +quant-ph/0604143 +quant-ph/0604144 +quant-ph/0604149 +quant-ph/0604150 +quant-ph/0604158 +quant-ph/0604160 +quant-ph/0604163 +quant-ph/0604168 +quant-ph/0604173 +quant-ph/0604176 +quant-ph/0604178 +quant-ph/0604179 +quant-ph/0604180 +quant-ph/0604182 +quant-ph/0604184 +quant-ph/0604186 +quant-ph/0604187 +quant-ph/0604192 +quant-ph/0604199 +quant-ph/0604200 +quant-ph/0604205 +quant-ph/0604207 +quant-ph/0604209 +quant-ph/0604211 +quant-ph/0604213 +quant-ph/0605002 +quant-ph/0605005 +quant-ph/0605006 +quant-ph/0605012 +quant-ph/0605016 +quant-ph/0605019 +quant-ph/0605020 +quant-ph/0605023 +quant-ph/0605025 +quant-ph/0605029 +quant-ph/0605037 +quant-ph/0605040 +quant-ph/0605042 +quant-ph/0605046 +quant-ph/0605049 +quant-ph/0605050 +quant-ph/0605056 +quant-ph/0605058 +quant-ph/0605059 +quant-ph/0605062 +quant-ph/0605063 +quant-ph/0605064 +quant-ph/0605065 +quant-ph/0605074 +quant-ph/0605076 +quant-ph/0605081 +quant-ph/0605082 +quant-ph/0605085 +quant-ph/0605088 +quant-ph/0605093 +quant-ph/0605095 +quant-ph/0605098 +quant-ph/0605099 +quant-ph/0605100 +quant-ph/0605101 +quant-ph/0605108 +quant-ph/0605117 +quant-ph/0605122 +quant-ph/0605125 +quant-ph/0605134 +quant-ph/0605138 +quant-ph/0605139 +quant-ph/0605140 +quant-ph/0605145 +quant-ph/0605148 +quant-ph/0605149 +quant-ph/0605151 +quant-ph/0605154 +quant-ph/0605160 +quant-ph/0605164 +quant-ph/0605165 +quant-ph/0605172 +quant-ph/0605174 +quant-ph/0605175 +quant-ph/0605177 +quant-ph/0605186 +quant-ph/0605193 +quant-ph/0605194 +quant-ph/0605196 +quant-ph/0605199 +quant-ph/0605202 +quant-ph/0605205 +quant-ph/0605209 +quant-ph/0605211 +quant-ph/0605212 +quant-ph/0605216 +quant-ph/0605221 +quant-ph/0605223 +quant-ph/0605231 +quant-ph/0605232 +quant-ph/0605236 +quant-ph/0605237 +quant-ph/0605238 +quant-ph/0605245 +quant-ph/0605248 +quant-ph/0605252 +quant-ph/0605253 +quant-ph/0606006 +quant-ph/0606008 +quant-ph/0606010 +quant-ph/0606013 +quant-ph/0606018 +quant-ph/0606021 +quant-ph/0606023 +quant-ph/0606024 +quant-ph/0606026 +quant-ph/0606035 +quant-ph/0606036 +quant-ph/0606037 +quant-ph/0606041 +quant-ph/0606042 +quant-ph/0606044 +quant-ph/0606050 +quant-ph/0606052 +quant-ph/0606053 +quant-ph/0606054 +quant-ph/0606055 +quant-ph/0606058 +quant-ph/0606060 +quant-ph/0606062 +quant-ph/0606063 +quant-ph/0606065 +quant-ph/0606079 +quant-ph/0606081 +quant-ph/0606082 +quant-ph/0606083 +quant-ph/0606085 +quant-ph/0606087 +quant-ph/0606094 +quant-ph/0606096 +quant-ph/0606098 +quant-ph/0606104 +quant-ph/0606112 +quant-ph/0606115 +quant-ph/0606117 +quant-ph/0606123 +quant-ph/0606126 +quant-ph/0606132 +quant-ph/0606133 +quant-ph/0606134 +quant-ph/0606138 +quant-ph/0606146 +quant-ph/0606151 +quant-ph/0606154 +quant-ph/0606155 +quant-ph/0606156 +quant-ph/0606157 +quant-ph/0606162 +quant-ph/0606173 +quant-ph/0606175 +quant-ph/0606182 +quant-ph/0606183 +quant-ph/0606184 +quant-ph/0606186 +quant-ph/0606188 +quant-ph/0606191 +quant-ph/0606192 +quant-ph/0606194 +quant-ph/0606195 +quant-ph/0606196 +quant-ph/0606197 +quant-ph/0606198 +quant-ph/0606201 +quant-ph/0606203 +quant-ph/0606205 +quant-ph/0606207 +quant-ph/0606209 +quant-ph/0606210 +quant-ph/0606212 +quant-ph/0606214 +quant-ph/0606219 +quant-ph/0606222 +quant-ph/0606226 +quant-ph/0606227 +quant-ph/0606233 +quant-ph/0606237 +quant-ph/0606239 +quant-ph/0606241 +quant-ph/0606245 +quant-ph/0606249 +quant-ph/0607004 +quant-ph/0607007 +quant-ph/0607011 +quant-ph/0607012 +quant-ph/0607015 +quant-ph/0607019 +quant-ph/0607020 +quant-ph/0607024 +quant-ph/0607037 +quant-ph/0607041 +quant-ph/0607042 +quant-ph/0607057 +quant-ph/0607058 +quant-ph/0607060 +quant-ph/0607061 +quant-ph/0607062 +quant-ph/0607063 +quant-ph/0607066 +quant-ph/0607067 +quant-ph/0607068 +quant-ph/0607070 +quant-ph/0607074 +quant-ph/0607075 +quant-ph/0607077 +quant-ph/0607078 +quant-ph/0607079 +quant-ph/0607080 +quant-ph/0607083 +quant-ph/0607084 +quant-ph/0607086 +quant-ph/0607087 +quant-ph/0607088 +quant-ph/0607091 +quant-ph/0607092 +quant-ph/0607094 +quant-ph/0607095 +quant-ph/0607097 +quant-ph/0607099 +quant-ph/0607103 +quant-ph/0607104 +quant-ph/0607106 +quant-ph/0607108 +quant-ph/0607109 +quant-ph/0607117 +quant-ph/0607121 +quant-ph/0607122 +quant-ph/0607125 +quant-ph/0607126 +quant-ph/0607128 +quant-ph/0607130 +quant-ph/0607136 +quant-ph/0607137 +quant-ph/0607142 +quant-ph/0607145 +quant-ph/0607147 +quant-ph/0607149 +quant-ph/0607153 +quant-ph/0607154 +quant-ph/0607158 +quant-ph/0607159 +quant-ph/0607164 +quant-ph/0607170 +quant-ph/0607171 +quant-ph/0607177 +quant-ph/0607181 +quant-ph/0607183 +quant-ph/0607184 +quant-ph/0607187 +quant-ph/0607188 +quant-ph/0607192 +quant-ph/0607193 +quant-ph/0607197 +quant-ph/0607199 +quant-ph/0607200 +quant-ph/0607202 +quant-ph/0607205 +quant-ph/0607208 +quant-ph/0607212 +quant-ph/0607213 +quant-ph/0607215 +quant-ph/0607217 +quant-ph/0607219 +quant-ph/0607220 +quant-ph/0607221 +quant-ph/0608005 +quant-ph/0608012 +quant-ph/0608019 +quant-ph/0608020 +quant-ph/0608029 +quant-ph/0608032 +quant-ph/0608033 +quant-ph/0608034 +quant-ph/0608038 +quant-ph/0608040 +quant-ph/0608051 +quant-ph/0608055 +quant-ph/0608059 +quant-ph/0608060 +quant-ph/0608067 +quant-ph/0608068 +quant-ph/0608069 +quant-ph/0608077 +quant-ph/0608078 +quant-ph/0608082 +quant-ph/0608084 +quant-ph/0608089 +quant-ph/0608091 +quant-ph/0608092 +quant-ph/0608094 +quant-ph/0608095 +quant-ph/0608096 +quant-ph/0608098 +quant-ph/0608100 +quant-ph/0608102 +quant-ph/0608109 +quant-ph/0608113 +quant-ph/0608114 +quant-ph/0608115 +quant-ph/0608116 +quant-ph/0608121 +quant-ph/0608129 +quant-ph/0608134 +quant-ph/0608142 +quant-ph/0608147 +quant-ph/0608160 +quant-ph/0608163 +quant-ph/0608173 +quant-ph/0608174 +quant-ph/0608177 +quant-ph/0608179 +quant-ph/0608188 +quant-ph/0608193 +quant-ph/0608203 +quant-ph/0608204 +quant-ph/0608207 +quant-ph/0608210 +quant-ph/0608211 +quant-ph/0608214 +quant-ph/0608224 +quant-ph/0608227 +quant-ph/0608229 +quant-ph/0608234 +quant-ph/0608237 +quant-ph/0608239 +quant-ph/0608242 +quant-ph/0608247 +quant-ph/0608249 +quant-ph/0609004 +quant-ph/0609008 +quant-ph/0609009 +quant-ph/0609012 +quant-ph/0609013 +quant-ph/0609024 +quant-ph/0609031 +quant-ph/0609036 +quant-ph/0609038 +quant-ph/0609042 +quant-ph/0609046 +quant-ph/0609053 +quant-ph/0609054 +quant-ph/0609055 +quant-ph/0609059 +quant-ph/0609060 +quant-ph/0609061 +quant-ph/0609076 +quant-ph/0609081 +quant-ph/0609083 +quant-ph/0609085 +quant-ph/0609087 +quant-ph/0609095 +quant-ph/0609099 +quant-ph/0609100 +quant-ph/0609101 +quant-ph/0609104 +quant-ph/0609105 +quant-ph/0609106 +quant-ph/0609114 +quant-ph/0609115 +quant-ph/0609116 +quant-ph/0609117 +quant-ph/0609123 +quant-ph/0609137 +quant-ph/0609141 +quant-ph/0609143 +quant-ph/0609144 +quant-ph/0609145 +quant-ph/0609149 +quant-ph/0609150 +quant-ph/0609155 +quant-ph/0609157 +quant-ph/0609169 +quant-ph/0609182 +quant-ph/0609187 +quant-ph/0609194 +quant-ph/0609200 +quant-ph/0609205 +quant-ph/0609206 +quant-ph/0609210 +quant-ph/0609211 +quant-ph/0609212 +quant-ph/0609216 +quant-ph/0609218 +quant-ph/0609221 +quant-ph/0609225 +quant-ph/0609233 +quant-ph/0609235 +quant-ph/0610005 +quant-ph/0610006 +quant-ph/0610011 +quant-ph/0610015 +quant-ph/0610022 +quant-ph/0610034 +quant-ph/0610035 +quant-ph/0610036 +quant-ph/0610038 +quant-ph/0610039 +quant-ph/0610045 +quant-ph/0610047 +quant-ph/0610049 +quant-ph/0610059 +quant-ph/0610065 +quant-ph/0610068 +quant-ph/0610070 +quant-ph/0610074 +quant-ph/0610083 +quant-ph/0610084 +quant-ph/0610093 +quant-ph/0610094 +quant-ph/0610099 +quant-ph/0610101 +quant-ph/0610104 +quant-ph/0610112 +quant-ph/0610118 +quant-ph/0610119 +quant-ph/0610124 +quant-ph/0610126 +quant-ph/0610132 +quant-ph/0610135 +quant-ph/0610139 +quant-ph/0610146 +quant-ph/0610148 +quant-ph/0610152 +quant-ph/0610156 +quant-ph/0610160 +quant-ph/0610162 +quant-ph/0610168 +quant-ph/0610169 +quant-ph/0610171 +quant-ph/0610172 +quant-ph/0610177 +quant-ph/0610179 +quant-ph/0610180 +quant-ph/0610182 +quant-ph/0610183 +quant-ph/0610188 +quant-ph/0610189 +quant-ph/0610191 +quant-ph/0610197 +quant-ph/0610205 +quant-ph/0610207 +quant-ph/0610211 +quant-ph/0610212 +quant-ph/0610217 +quant-ph/0610219 +quant-ph/0610221 +quant-ph/0610224 +quant-ph/0610225 +quant-ph/0610230 +quant-ph/0610236 +quant-ph/0610237 +quant-ph/0610238 +quant-ph/0610247 +quant-ph/0610248 +quant-ph/0610250 +quant-ph/0610252 +quant-ph/0610257 +quant-ph/0610260 +quant-ph/0610265 +quant-ph/0611002 +quant-ph/0611009 +quant-ph/0611012 +quant-ph/0611013 +quant-ph/0611015 +quant-ph/0611018 +quant-ph/0611025 +quant-ph/0611033 +quant-ph/0611040 +quant-ph/0611041 +quant-ph/0611044 +quant-ph/0611045 +quant-ph/0611047 +quant-ph/0611048 +quant-ph/0611059 +quant-ph/0611067 +quant-ph/0611069 +quant-ph/0611071 +quant-ph/0611075 +quant-ph/0611081 +quant-ph/0611084 +quant-ph/0611087 +quant-ph/0611088 +quant-ph/0611090 +quant-ph/0611095 +quant-ph/0611096 +quant-ph/0611097 +quant-ph/0611098 +quant-ph/0611106 +quant-ph/0611108 +quant-ph/0611112 +quant-ph/0611113 +quant-ph/0611115 +quant-ph/0611117 +quant-ph/0611118 +quant-ph/0611121 +quant-ph/0611122 +quant-ph/0611127 +quant-ph/0611129 +quant-ph/0611130 +quant-ph/0611132 +quant-ph/0611135 +quant-ph/0611136 +quant-ph/0611137 +quant-ph/0611138 +quant-ph/0611140 +quant-ph/0611141 +quant-ph/0611145 +quant-ph/0611148 +quant-ph/0611151 +quant-ph/0611152 +quant-ph/0611159 +quant-ph/0611161 +quant-ph/0611164 +quant-ph/0611165 +quant-ph/0611166 +quant-ph/0611169 +quant-ph/0611178 +quant-ph/0611179 +quant-ph/0611181 +quant-ph/0611192 +quant-ph/0611198 +quant-ph/0611199 +quant-ph/0611205 +quant-ph/0611212 +quant-ph/0611219 +quant-ph/0611220 +quant-ph/0611221 +quant-ph/0611229 +quant-ph/0611232 +quant-ph/0611235 +quant-ph/0611236 +quant-ph/0611237 +quant-ph/0611240 +quant-ph/0611241 +quant-ph/0611244 +quant-ph/0611247 +quant-ph/0611248 +quant-ph/0611256 +quant-ph/0611260 +quant-ph/0611265 +quant-ph/0611267 +quant-ph/0611288 +quant-ph/0611292 +quant-ph/0612002 +quant-ph/0612006 +quant-ph/0612007 +quant-ph/0612011 +quant-ph/0612026 +quant-ph/0612028 +quant-ph/0612038 +quant-ph/0612042 +quant-ph/0612044 +quant-ph/0612046 +quant-ph/0612058 +quant-ph/0612062 +quant-ph/0612069 +quant-ph/0612074 +quant-ph/0612080 +quant-ph/0612086 +quant-ph/0612087 +quant-ph/0612088 +quant-ph/0612097 +quant-ph/0612098 +quant-ph/0612100 +quant-ph/0612104 +quant-ph/0612110 +quant-ph/0612113 +quant-ph/0612114 +quant-ph/0612116 +quant-ph/0612119 +quant-ph/0612124 +quant-ph/0612126 +quant-ph/0612132 +quant-ph/0612135 +quant-ph/0612136 +quant-ph/0612140 +quant-ph/0612143 +quant-ph/0612144 +quant-ph/0612145 +quant-ph/0612148 +quant-ph/0612152 +quant-ph/0612154 +quant-ph/0612157 +quant-ph/0612172 +quant-ph/0612176 +quant-ph/0612177 +quant-ph/0612180 +quant-ph/0612193 +quant-ph/0612194 +quant-ph/0612198 +quant-ph/0612205 +quant-ph/0612207 +quant-ph/0612218 +quant-ph/0612220 +quant-ph/0612223 +quant-ph/0612227 +quant-ph/0701005 +quant-ph/0701007 +quant-ph/0701009 +quant-ph/0701012 +quant-ph/0701016 +quant-ph/0701021 +quant-ph/0701023 +quant-ph/0701024 +quant-ph/0701025 +quant-ph/0701026 +quant-ph/0701030 +quant-ph/0701036 +quant-ph/0701038 +quant-ph/0701040 +quant-ph/0701042 +quant-ph/0701044 +quant-ph/0701046 +quant-ph/0701050 +quant-ph/0701053 +quant-ph/0701057 +quant-ph/0701060 +quant-ph/0701065 +quant-ph/0701068 +quant-ph/0701071 +quant-ph/0701072 +quant-ph/0701073 +quant-ph/0701077 +quant-ph/0701078 +quant-ph/0701084 +quant-ph/0701088 +quant-ph/0701091 +quant-ph/0701093 +quant-ph/0701095 +quant-ph/0701102 +quant-ph/0701105 +quant-ph/0701117 +quant-ph/0701121 +quant-ph/0701122 +quant-ph/0701125 +quant-ph/0701130 +quant-ph/0701131 +quant-ph/0701137 +quant-ph/0701142 +quant-ph/0701146 +quant-ph/0701157 +quant-ph/0701158 +quant-ph/0701164 +quant-ph/0701165 +quant-ph/0701167 +quant-ph/0701173 +quant-ph/0701182 +quant-ph/0701183 +quant-ph/0701184 +quant-ph/0701185 +quant-ph/0701188 +quant-ph/0701192 +quant-ph/0701193 +quant-ph/0701195 +quant-ph/0701196 +quant-ph/0701203 +quant-ph/0701205 +quant-ph/0701210 +quant-ph/0701212 +quant-ph/0701214 +quant-ph/0701216 +quant-ph/0701217 +quant-ph/0701220 +quant-ph/0701228 +quant-ph/0701237 +quant-ph/0701239 +quant-ph/0701240 +quant-ph/0701242 +quant-ph/0701246 +quant-ph/0702002 +quant-ph/0702011 +quant-ph/0702014 +quant-ph/0702015 +quant-ph/0702020 +quant-ph/0702023 +quant-ph/0702025 +quant-ph/0702029 +quant-ph/0702030 +quant-ph/0702036 +quant-ph/0702040 +quant-ph/0702049 +quant-ph/0702051 +quant-ph/0702052 +quant-ph/0702053 +quant-ph/0702066 +quant-ph/0702067 +quant-ph/0702071 +quant-ph/0702077 +quant-ph/0702080 +quant-ph/0702081 +quant-ph/0702086 +quant-ph/0702095 +quant-ph/0702100 +quant-ph/0702102 +quant-ph/0702103 +quant-ph/0702109 +quant-ph/0702110 +quant-ph/0702115 +quant-ph/0702117 +quant-ph/0702120 +quant-ph/0702123 +quant-ph/0702126 +quant-ph/0702130 +quant-ph/0702139 +quant-ph/0702151 +quant-ph/0702159 +quant-ph/0702168 +quant-ph/0702170 +quant-ph/0702172 +quant-ph/0702174 +quant-ph/0702186 +quant-ph/0702191 +quant-ph/0702198 +quant-ph/0702199 +quant-ph/0702204 +quant-ph/0702206 +quant-ph/0702207 +quant-ph/0702213 +quant-ph/0702217 +quant-ph/0702218 +quant-ph/0702220 +quant-ph/0702226 +quant-ph/0702228 +quant-ph/0702230 +quant-ph/0702231 +quant-ph/0702232 +quant-ph/0702234 +quant-ph/0702235 +quant-ph/0702242 +quant-ph/0702245 +quant-ph/0702247 +quant-ph/0702248 +quant-ph/0702249 +quant-ph/0702250 +quant-ph/0702251 +quant-ph/0702259 +quant-ph/0703001 +quant-ph/0703004 +quant-ph/0703008 +quant-ph/0703010 +quant-ph/0703019 +quant-ph/0703021 +quant-ph/0703028 +quant-ph/0703031 +quant-ph/0703033 +quant-ph/0703038 +quant-ph/0703040 +quant-ph/0703043 +quant-ph/0703045 +quant-ph/0703048 +quant-ph/0703049 +quant-ph/0703055 +quant-ph/0703057 +quant-ph/0703059 +quant-ph/0703063 +quant-ph/0703074 +quant-ph/0703075 +quant-ph/0703076 +quant-ph/0703077 +quant-ph/0703089 +quant-ph/0703098 +quant-ph/0703101 +quant-ph/0703102 +quant-ph/0703106 +quant-ph/0703107 +quant-ph/0703108 +quant-ph/0703111 +quant-ph/0703114 +quant-ph/0703115 +quant-ph/0703119 +quant-ph/0703127 +quant-ph/0703130 +quant-ph/0703135 +quant-ph/0703142 +quant-ph/0703145 +quant-ph/0703147 +quant-ph/0703151 +quant-ph/0703155 +quant-ph/0703156 +quant-ph/0703160 +quant-ph/0703164 +quant-ph/0703165 +quant-ph/0703166 +quant-ph/0703169 +quant-ph/0703171 +quant-ph/0703173 +quant-ph/0703178 +quant-ph/0703183 +quant-ph/0703184 +quant-ph/0703186 +quant-ph/0703193 +quant-ph/0703198 +quant-ph/0703199 +quant-ph/0703205 +quant-ph/0703212 +quant-ph/0703213 +quant-ph/0703220 +quant-ph/0703233 +quant-ph/0703234 +quant-ph/0703241 +quant-ph/0703242 +quant-ph/0703243 +quant-ph/0703246 +quant-ph/0703247 +quant-ph/0703250 +quant-ph/0703252 +quant-ph/0703253 +quant-ph/0703265 +quant-ph/0703266 +quant-ph/0703269 +quant-ph/0703272 +quant-ph/0703273 +quant-ph/0703274 +quant-ph/0703278 +0805.4824 Statistical Mechanics +0807.3364 Combinatorics +0808.1657 Discrete Mathematics +0808.1964 Soft Condensed Matter +0810.1704 Other Condensed Matter +0811.0304 Popular Physics +0811.3133 Symplectic Geometry +0811.3994 Superconductivity +0812.4971 Soft Condensed Matter +0901.1397 Combinatorics +0901.1429 Mesoscale and Nanoscale Physics +0901.3763 Computational Complexity +0902.1192 +0902.3790 General Physics +0903.2270 +0903.4530 Numerical Analysis +math/0503163 Geometric Topology +math/0603705 Geometric Topology +math/0606024 Algebraic Topology +math/0701102 Functional Analysis +0707.2224 Analysis of PDEs +0708.2962 General Physics +0708.4371 Complex Variables +0805.0133 Geometric Topology +0805.1964 Combinatorics +0811.1397 Mesoscale and Nanoscale Physics +0811.1451 Mesoscale and Nanoscale Physics +0812.3566 Combinatorics +0812.4895 Differential Geometry +0901.0879 Mesoscale and Nanoscale Physics +0901.1838 Algebraic Topology +0903.2784 Mesoscale and Nanoscale Physics +0906.0170 Differential Geometry +0906.3755 Earth and Planetary Astrophysics +0906.4823 Methodology +0907.3114 High Energy Astrophysical Phenomena +0909.3869 Logic +0909.4845 Algebraic Topology +0909.4973 Algebraic Topology +0909.5293 Computer Science and Game Theory +0909.5441 Phenomenology +cs/0607007 Neural and Evolutionary Computing +math-ph/0312006 +math/0609620 Probability +0704.1625 Probability +0705.4671 Other Condensed Matter +0708.1077 Theory +0709.2635 Distributed, Parallel, and Cluster Computing +0709.4399 Other Condensed Matter +0710.0709 Theory +0711.1403 Optics +0712.0186 Phenomenology +0801.2170 Other Condensed Matter +0801.2709 Space Physics +0802.1577 Analysis of PDEs +0802.2447 +0803.2256 Physics and Society +0803.4433 Statistical Mechanics +0804.2931 +0804.3442 +0804.4502 Mesoscale and Nanoscale Physics +0806.4236 Soft Condensed Matter +0807.0875 Materials Science +0807.2002 Other Condensed Matter +0807.2935 Strongly Correlated Electrons +0808.0598 +0808.0906 Mesoscale and Nanoscale Physics +0808.1522 Logic +0809.0266 General Physics +0809.3024 Strongly Correlated Electrons +0809.3136 Algebraic Geometry +0809.3358 +0810.1310 +0810.2332 Materials Science +0810.2538 Mesoscale and Nanoscale Physics +0810.2900 Strongly Correlated Electrons +0810.3357 Neural and Evolutionary Computing +0811.2105 Phenomenology +0811.2284 Functional Analysis +0811.3957 Phenomenology +0812.0660 +0812.0862 Materials Science +0812.2323 Superconductivity +0812.3184 Other Condensed Matter +0901.0605 Cosmology and Nongalactic Astrophysics +0901.1594 Strongly Correlated Electrons +0901.4408 Quantum Algebra +0901.4453 Strongly Correlated Electrons +0902.0265 Superconductivity +0902.0860 Plasma Physics +0902.0945 Superconductivity +0902.3641 Differential Geometry +0902.4341 Theory +0902.4479 Functional Analysis +0903.2938 Strongly Correlated Electrons +0903.3768 History and Philosophy of Physics +0903.3987 Cosmology and Nongalactic Astrophysics +0903.4233 Quantum Algebra +0903.4549 Atomic Physics +0903.4922 Phenomenology +0903.5306 Combinatorics +0903.5309 +0903.5310 High Energy Astrophysical Phenomena +0903.5313 Medical Physics +0903.5314 Algebraic Geometry +0903.5320 Cosmology and Nongalactic Astrophysics +0903.5321 Cosmology and Nongalactic Astrophysics +0903.5327 Statistical Mechanics +0903.5328 Learning +0903.5334 Plasma Physics +0903.5339 Analysis of PDEs +0903.5346 Databases +0903.5350 Combinatorics +0903.5351 Combinatorics +0903.5352 Combinatorics +0903.5353 Combinatorics +0903.5359 Materials Science +0903.5361 Metric Geometry +0903.5362 Statistical Mechanics +0903.5371 Quantum Gases +0903.5373 Statistics Theory +0903.5374 Algebraic Geometry +0903.5375 Algebraic Geometry +0903.5376 +0903.5377 Cosmology and Nongalactic Astrophysics +0903.5378 +0903.5388 Soft Condensed Matter +0903.5389 Soft Condensed Matter +0903.5391 Strongly Correlated Electrons +0903.5393 Optics +0903.5397 Fluid Dynamics +0903.5399 Information Theory +0903.5406 +0903.5410 Soft Condensed Matter +0903.5415 Statistical Mechanics +0903.5426 Information Theory +0903.5431 Rings and Algebras +0903.5432 Soft Condensed Matter +0903.5446 +0903.5452 +0903.5455 Pattern Formation and Solitons +0903.5456 +0903.5458 +0903.5460 +0903.5462 +0903.5465 +0903.5467 +0903.5469 +0903.5470 Experiment +0903.5471 Materials Science +0903.5472 Geometric Topology +0903.5474 Statistics Theory +0903.5479 Analysis of PDEs +0903.5480 Statistics Theory +0903.5481 Other Condensed Matter +0903.5482 Analysis of PDEs +0903.5487 Optics +0903.5488 Algebraic Geometry +0903.5495 Phenomenology +0903.5498 Probability +0903.5502 Theory +0903.5507 Soft Condensed Matter +0903.5513 Analysis of PDEs +0903.5516 Differential Geometry +0903.5518 Instrumentation and Methods for Astrophysics +0903.5526 Probability +0903.5528 Differential Geometry +0903.5531 Analysis of PDEs +0903.5533 Theory +0903.5537 Number Theory +0903.5542 General Physics +0903.5543 Geometric Topology +math/0510386 Geometric Topology +math/0603594 Number Theory +math/0610865 Geometric Topology +math/0611264 Differential Geometry +nlin/0105073 Pattern Formation and Solitons +nlin/0108033 Pattern Formation and Solitons +nlin/0208036 Pattern Formation and Solitons +nlin/0208043 Pattern Formation and Solitons +nlin/0303054 Pattern Formation and Solitons +nlin/0303055 Pattern Formation and Solitons +nlin/0511053 Pattern Formation and Solitons +nlin/0604021 Pattern Formation and Solitons +nlin/0608058 Pattern Formation and Solitons +physics/0412151 Optics +physics/0503226 Optics +physics/0511227 Optics +physics/0601037 Optics +physics/0604031 Optics +physics/0604232 Optics +physics/0611287 Optics +physics/0612015 Optics +0704.0130 Representation Theory +0705.0406 Materials Science +0705.0508 Materials Science +0706.3707 Algebraic Geometry +0707.4258 Computational Geometry +0708.0827 +0709.4058 Symplectic Geometry +0806.0244 Other Condensed Matter +0808.2258 +0808.3220 Symplectic Geometry +0809.0910 Superconductivity +0809.1570 Discrete Mathematics +0809.2792 Learning +0810.0304 Algebraic Geometry +0810.5166 Phenomenology +0811.1550 +0811.3113 Theory +0812.1913 Probability +0812.4807 Number Theory +0812.5086 +0901.0389 Algebraic Geometry +0901.1627 Category Theory +0901.3810 Superconductivity +0901.4896 +0902.3371 +0902.3572 Differential Geometry +0902.3914 Materials Science +0903.2362 Mesoscale and Nanoscale Physics +0903.4146 Materials Science +0903.5124 Superconductivity +0904.0036 +0904.0664 Theory +0904.2100 Superconductivity +0905.1913 Statistical Mechanics +0905.4257 Algebraic Geometry +0905.4334 Probability +0906.0089 Theory +0906.0781 Geophysics +0906.0782 Fluid Dynamics +0906.2405 +0906.2614 History and Overview +0906.3044 Theory +0906.3741 Computation and Language +0906.3846 Networking and Internet Architecture +0906.4114 Instrumentation and Methods for Astrophysics +0906.4117 Cosmology and Nongalactic Astrophysics +0906.4123 Instrumentation and Methods for Astrophysics +0906.4125 Human-Computer Interaction +0906.4131 Computer Vision and Pattern Recognition +0906.4136 Solar and Stellar Astrophysics +0906.4144 High Energy Astrophysical Phenomena +0906.4149 Software Engineering +0906.4162 Computational Complexity +0906.4165 Methodology +0906.4166 Statistical Mechanics +0906.4172 Databases +0906.4173 Logic in Computer Science +0906.4176 High Energy Astrophysical Phenomena +0906.4177 Number Theory +0906.4178 Analysis of PDEs +0906.4182 +0906.4184 Algebraic Geometry +0906.4185 Algebraic Geometry +0906.4186 Fluid Dynamics +0906.4188 Mesoscale and Nanoscale Physics +0906.4193 +0906.4196 Functional Analysis +0906.4200 Experiment +0906.4201 Optics +0906.4202 Probability +0906.4203 Mesoscale and Nanoscale Physics +0906.4204 Strongly Correlated Electrons +0906.4208 Algebraic Geometry +0906.4212 Cosmology and Nongalactic Astrophysics +0906.4216 Logic in Computer Science +0906.4217 Cryptography and Security +0906.4227 Mesoscale and Nanoscale Physics +0906.4232 High Energy Astrophysical Phenomena +0906.4233 Analysis of PDEs +0906.4238 Probability +0906.4242 Probability +0906.4245 Geometric Topology +0906.4246 Astrophysics of Galaxies +0906.4249 Probability +0906.4253 Combinatorics +0906.4254 Probability +0906.4255 Operator Algebras +0906.4259 Quantum Gases +0906.4265 +0906.4266 Biological Physics +0906.4271 Combinatorics +0906.4273 +0906.4277 Phenomenology +0906.4291 Computational Complexity +0906.4302 Distributed, Parallel, and Cluster Computing +0906.4306 Phenomenology +0906.4316 Computer Science and Game Theory +0906.4319 Theory +0906.4321 Artificial Intelligence +0906.4326 Artificial Intelligence +0906.4327 Databases +math/0405029 Symplectic Geometry +math/0506515 Rings and Algebras +math/0511154 Probability +0707.0480 Disordered Systems and Neural Networks +0707.0713 +0708.1940 Dynamical Systems +0712.3079 Optimization and Control +0803.0368 Mesoscale and Nanoscale Physics +0803.1849 Mesoscale and Nanoscale Physics +0804.0469 Chaotic Dynamics +0804.1215 +0804.2287 Soft Condensed Matter +0806.2345 Optimization and Control +0807.1193 Mesoscale and Nanoscale Physics +0808.2829 +0810.2067 Number Theory +0810.4787 Mesoscale and Nanoscale Physics +0811.0565 Mesoscale and Nanoscale Physics +0811.0781 Biomolecules +0811.1410 Representation Theory +0811.2776 Materials Science +0812.0695 Phenomenology +0812.5012 +math-ph/0201058 +math/0605694 Differential Geometry +math/0611711 Commutative Algebra +0704.2488 Analysis of PDEs +0704.3208 Theory +0705.2488 Fluid Dynamics +0705.4075 Phenomenology +0706.3558 Probability +0708.0174 Phenomenology +0709.3954 Soft Condensed Matter +0710.5815 K-Theory and Homology +0711.3293 Physics Education +0711.3926 Information Theory +0801.0342 +0802.3181 Mesoscale and Nanoscale Physics +0804.4746 +0805.3387 Experiment +0806.1761 Strongly Correlated Electrons +0806.4552 +0807.2958 Materials Science +0808.1979 Mesoscale and Nanoscale Physics +0808.3379 Theory +0809.2671 +0809.3662 Mesoscale and Nanoscale Physics +0809.4134 Theory +0809.5268 +0810.4018 Theory +0810.4768 Mesoscale and Nanoscale Physics +0811.1056 Superconductivity +0811.1520 Robotics +0811.1909 Theory +0811.4119 Phenomenology +0812.1147 Quantum Algebra +0901.0639 Phenomenology +0901.1163 Theory +0901.1431 Experiment +0901.1553 Phenomenology +0901.2775 Experiment +0901.3952 Geometric Topology +0902.0569 Theory +0902.0902 Commutative Algebra +0902.1056 +0902.1770 Theory +0902.2218 Cosmology and Nongalactic Astrophysics +0902.4010 Theory +0902.4630 Theory +0903.0289 +0903.0293 Algebraic Geometry +0903.1322 Quantum Algebra +0903.1428 +0903.1537 Theory +0903.3697 Experiment +0903.3960 Rings and Algebras +0903.4387 Materials Science +0903.4390 Combinatorics +0903.4956 Experiment +0903.5521 Lattice +0904.0016 Computers and Society +0904.0045 +0904.0055 +0904.0725 High Energy Astrophysical Phenomena +0904.0733 Theory +0904.0955 Theory +0904.1707 Strongly Correlated Electrons +0904.2260 +0904.2499 Experiment +0904.2505 Biological Physics +0904.2558 Quantum Algebra +0904.2738 Theory +0904.2905 Computational Physics +0904.3404 Superconductivity +0904.3820 Phenomenology +0904.3872 +0904.4042 Phenomenology +0904.4905 Theory +0905.0157 Theory +0905.0388 Phenomenology +0905.0481 Cosmology and Nongalactic Astrophysics +0905.0915 Theory +0905.1254 Mesoscale and Nanoscale Physics +0905.1355 +0905.1733 Phenomenology +0905.1800 Exactly Solvable and Integrable Systems +0905.1954 Theory +0905.3554 Cosmology and Nongalactic Astrophysics +0905.3638 Theory +0905.3842 Mesoscale and Nanoscale Physics +0905.4034 Phenomenology +0905.4264 Representation Theory +0905.4330 Theory +0905.4364 Solar and Stellar Astrophysics +0905.4393 Mesoscale and Nanoscale Physics +0906.0212 +0906.0302 Phenomenology +0906.0342 Theory +0906.0388 +0906.0560 Differential Geometry +0906.0679 Theory +0906.1289 Theory +0906.1313 Theory +0906.1464 Experiment +0906.1903 Phenomenology +0906.3165 Cosmology and Nongalactic Astrophysics +0906.3328 +0906.4207 Statistical Mechanics +0906.4867 Mesoscale and Nanoscale Physics +0906.4913 Information Theory +0906.5509 Theory +0906.5531 Lattice +0906.5537 Mesoscale and Nanoscale Physics +0907.1016 Phenomenology +0907.1347 +0907.1620 +0907.2104 Geometric Topology +0907.2117 Phenomenology +0907.2754 Phenomenology +0907.2773 Theory +0907.2877 Soft Condensed Matter +0907.4395 Probability +0907.4443 Cosmology and Nongalactic Astrophysics +0908.0465 Statistical Mechanics +0908.4158 Probability +0909.0080 Analysis of PDEs +0909.0262 Cosmology and Nongalactic Astrophysics +0909.0478 Differential Geometry +0909.2517 Other Computer Science +0909.3423 Multiagent Systems +0909.3717 Networking and Internet Architecture +0909.3904 Superconductivity +0909.4135 Theory +0909.4794 Experiment +0909.5260 Dynamical Systems +0909.5381 Mesoscale and Nanoscale Physics +0910.0362 +0910.0397 Disordered Systems and Neural Networks +0910.0464 +0910.0468 Earth and Planetary Astrophysics +0910.0473 Phenomenology +0910.0476 Complex Variables +0910.0481 Solar and Stellar Astrophysics +0910.0484 Earth and Planetary Astrophysics +0910.0487 Numerical Analysis +0910.0493 Software Engineering +0910.0499 Combinatorics +0910.0502 +0910.0506 Differential Geometry +0910.0513 Computer Science and Game Theory +0910.0514 Group Theory +0910.0515 Theory +0910.0518 Numerical Analysis +0910.0519 Strongly Correlated Electrons +0910.0523 Combinatorics +0910.0526 Computation +0910.0533 Combinatorics +0910.0536 Rings and Algebras +0910.0537 Computation and Language +0910.0538 +0910.0539 Analysis of PDEs +0910.0541 Theory +0910.0542 Artificial Intelligence +0910.0548 Optimization and Control +0910.0550 Rings and Algebras +0910.0553 Data Structures and Algorithms +0910.0560 History and Philosophy of Physics +0910.0565 Quantum Gases +0910.0567 Materials Science +0910.0568 Materials Science +0910.0571 Number Theory +0910.0572 Analysis of PDEs +0910.0583 Commutative Algebra +0910.0586 +0910.0593 Mesoscale and Nanoscale Physics +0910.0598 Phenomenology +0910.0600 +0910.0608 History and Overview +0910.0621 Theory +0910.0625 Phenomenology +0910.0626 Distributed, Parallel, and Cluster Computing +0910.0631 Classical Analysis and ODEs +0910.0632 Instrumentation and Methods for Astrophysics +0910.0635 Differential Geometry +0910.0636 Spectral Theory +0910.0639 Spectral Theory +0910.0643 Astrophysics of Galaxies +0910.0646 Neural and Evolutionary Computing +0910.0647 Dynamical Systems +0910.0649 General Physics +0910.0653 Information Theory +0910.0654 High Energy Astrophysical Phenomena +0910.0656 Algebraic Geometry +0910.0658 Complex Variables +0910.0659 Superconductivity +0910.0664 Number Theory +0910.0674 Neural and Evolutionary Computing +0910.0678 High Energy Astrophysical Phenomena +0910.0680 Representation Theory +0910.0684 Algebraic Geometry +0910.0688 Representation Theory +0910.0689 Theory +0910.0690 Functional Analysis +0910.0691 Solar and Stellar Astrophysics +0910.0698 Superconductivity +0910.0700 Rings and Algebras +0910.0702 Probability +0910.0703 Networking and Internet Architecture +0910.0708 Distributed, Parallel, and Cluster Computing +0910.0713 Group Theory +0910.0724 Cosmology and Nongalactic Astrophysics +0910.0725 Group Theory +0910.0728 +0910.0729 +0910.0732 Group Theory +0910.0735 Other Computer Science +0910.0737 Complex Variables +0910.0738 High Energy Astrophysical Phenomena +0910.0739 Number Theory +0910.0740 Disordered Systems and Neural Networks +0910.0747 Logic in Computer Science +0910.0750 Discrete Mathematics +0910.0758 +0910.0763 Probability +0910.0766 Theory +0910.0768 Cosmology and Nongalactic Astrophysics +0910.0778 Theory +0910.0779 +0910.0780 High Energy Astrophysical Phenomena +0910.0783 General Physics +0910.0784 Strongly Correlated Electrons +0910.0787 Number Theory +0910.0788 +0910.0795 Group Theory +0910.0796 Phenomenology +0910.0800 Cosmology and Nongalactic Astrophysics +0910.0806 Cosmology and Nongalactic Astrophysics +0910.0810 +0910.0817 Cryptography and Security +0910.0818 Instrumentation and Detectors +0910.0819 Performance +0910.0824 General Topology +0910.0825 +0910.0833 Computational Physics +astro-ph/0606077 +astro-ph/0609422 +cond-mat/0509669 Superconductivity +cond-mat/0611213 Other Condensed Matter +cs/0607029 Information Theory +cs/0701146 Information Theory +gr-qc/0606068 +math/0507231 Number Theory +nlin/0703055 Chaotic Dynamics +physics/0608113 Plasma Physics +quant-ph/0301013 +quant-ph/9611004 +quant-ph/9611021 +quant-ph/9812049 +0704.2922 Other Condensed Matter +0708.0586 Operator Algebras +0710.4936 +0710.5559 Phenomenology +0710.5566 Operator Algebras +0711.0103 Geometric Topology +0712.2156 Phenomenology +0801.2399 Phenomenology +0803.4251 Geometric Topology +0804.2608 Differential Geometry +0805.1309 Disordered Systems and Neural Networks +0805.3172 Quantum Algebra +0807.0929 +0807.2250 Phenomenology +0808.0335 Materials Science +0808.2680 +0809.2391 Classical Analysis and ODEs +0809.2419 Phenomenology +0809.3800 Strongly Correlated Electrons +0810.4354 Theory +0811.1212 Mesoscale and Nanoscale Physics +0811.3972 Phenomenology +0811.4318 +0811.4743 Theory +0812.0906 +0812.3268 Lattice +0812.3863 Algebraic Geometry +0901.1536 Statistical Mechanics +0901.1809 Algebraic Geometry +0901.2370 Information Theory +0901.3465 Solar and Stellar Astrophysics +0901.4112 Superconductivity +0901.4631 Other Condensed Matter +0902.0683 Soft Condensed Matter +0902.1502 +0902.1836 Materials Science +0902.2503 Superconductivity +0902.3411 Statistical Mechanics +0902.3763 +0902.3822 Mesoscale and Nanoscale Physics +0902.3949 +0902.4409 Analysis of PDEs +0903.2242 Mesoscale and Nanoscale Physics +0903.3715 Information Theory +0903.5130 +0904.2506 Disordered Systems and Neural Networks +0904.2750 Theory +0904.3706 Experiment +0904.4429 Combinatorics +0905.1129 Combinatorics +0905.2720 Theory +0905.3013 Number Theory +0905.3014 Number Theory +0905.3102 +0905.3371 History and Overview +0905.3380 Combinatorics +0905.3393 Soft Condensed Matter +0905.3398 Mesoscale and Nanoscale Physics +0905.3405 Probability +0905.3414 Materials Science +0905.3422 Optics +0905.3424 Differential Geometry +0905.3429 Computer Science and Game Theory +0905.3432 Programming Languages +0905.3433 +0905.3434 Information Theory +0905.3437 Astrophysics of Galaxies +0905.3438 Functional Analysis +0905.3449 Solar and Stellar Astrophysics +0905.3456 Experiment +0905.3458 +0905.3459 Number Theory +0905.3473 Phenomenology +0905.3478 Analysis of PDEs +0905.3488 Geometric Topology +0905.3489 Phenomenology +0905.3491 Representation Theory +0905.3493 Statistical Mechanics +0905.3516 Experiment +0905.3520 Functional Analysis +0905.3524 Superconductivity +0905.3537 Popular Physics +0905.3538 Group Theory +0905.3544 Phenomenology +0905.3545 Probability +cs/0702082 Computer Vision and Pattern Recognition +hep-ex/0209011 Experiment +hep-ex/0612042 Experiment +hep-ph/0406232 Phenomenology +hep-ph/0510301 Phenomenology +math/0606436 Quantum Algebra +math/0611067 General Mathematics +0705.3602 Probability +0710.0085 +0710.0845 Machine Learning +0801.3567 Dynamical Systems +0802.0901 Mesoscale and Nanoscale Physics +0802.1761 Differential Geometry +0802.3594 Analysis of PDEs +0803.2252 Chaotic Dynamics +0803.2717 +0805.3468 Soft Condensed Matter +0808.3622 Populations and Evolution +0809.1231 Populations and Evolution +0810.3724 Machine Learning +0810.4302 +0810.4699 Theory +0812.0608 Disordered Systems and Neural Networks +0812.1925 Materials Science +0812.2127 +0812.4658 Differential Geometry +0901.0212 Algebraic Geometry +0901.3206 +0901.4319 Physics Education +0902.0779 Algebraic Geometry +0902.4661 Physics and Society +0902.4704 Cosmology and Nongalactic Astrophysics +0903.0047 Atomic and Molecular Clusters +0903.2715 +0903.4595 Materials Science +0903.4903 Algebraic Geometry +0904.0990 Differential Geometry +0904.1498 Statistical Mechanics +0904.2683 +0904.4794 Analysis of PDEs +0905.1497 +0905.4892 Combinatorics +0906.1354 Strongly Correlated Electrons +0906.1437 Computational Geometry +0906.2768 +0906.3489 Neurons and Cognition +0906.3838 Rings and Algebras +0906.5041 Differential Geometry +0907.0644 Optimization and Control +0907.1246 Theory +0907.2152 Strongly Correlated Electrons +0907.4980 Solar and Stellar Astrophysics +0907.5550 +0908.0683 Soft Condensed Matter +0908.1109 Astrophysics of Galaxies +0908.2645 Theory +0908.2946 Theory +0908.3027 +0908.3633 Computers and Society +0908.3681 Classical Analysis and ODEs +0908.3682 Spectral Theory +0908.3683 Theory +0908.3686 +0908.3689 Cryptography and Security +0908.3698 Statistical Mechanics +0908.3700 Fluid Dynamics +0908.3702 Information Theory +0908.3706 Cosmology and Nongalactic Astrophysics +0908.3707 Optics +0908.3708 Earth and Planetary Astrophysics +0908.3709 Combinatorics +0908.3710 Information Theory +0908.3712 Cosmology and Nongalactic Astrophysics +0908.3716 Computational Geometry +0908.3718 Quantum Algebra +0908.3725 Metric Geometry +0908.3730 Soft Condensed Matter +0908.3736 Probability +0908.3737 Logic in Computer Science +0908.3740 Data Structures and Algorithms +0908.3743 Algebraic Geometry +0908.3746 Solar and Stellar Astrophysics +0908.3748 General Physics +0908.3750 Statistics Theory +0908.3758 Solar and Stellar Astrophysics +0908.3767 Statistics Theory +0908.3776 +0908.3777 Optics +0908.3778 Probability +0908.3783 Statistical Mechanics +0908.3784 Formal Languages and Automata Theory +0908.3785 Optics +0908.3788 Differential Geometry +0908.3790 +0908.3799 Dynamical Systems +0908.3803 Solar and Stellar Astrophysics +0908.3806 Operator Algebras +0908.3820 Number Theory +0908.3825 Algebraic Topology +0908.3827 Algebraic Topology +0908.3828 Strongly Correlated Electrons +0908.3829 Differential Geometry +0908.3831 Instrumentation and Methods for Astrophysics +0908.3832 Number Theory +0908.3834 Physics and Society +0908.3843 Functional Analysis +0908.3866 General Mathematics +0908.3879 Symplectic Geometry +0908.3882 Methodology +0908.3885 +0908.3886 Information Theory +0908.3887 Strongly Correlated Electrons +cs/0602081 Information Theory +cs/0609117 Information Theory +hep-ph/0701228 Phenomenology +hep-ph/9705323 Phenomenology +hep-ph/9707305 Phenomenology +hep-ph/9802338 Phenomenology +math-ph/0602020 +math/0502159 Geometric Topology +math/0602476 Geometric Topology +math/0612530 Combinatorics +0707.1320 Differential Geometry +0708.1685 Algebraic Geometry +0812.0989 +0902.3078 Operator Algebras +0904.4762 +0906.2354 Instrumentation and Methods for Astrophysics +0906.4211 Strongly Correlated Electrons +0907.0980 +0907.1553 +cond-mat/9304024 +cond-mat/9701067 Soft Condensed Matter +hep-th/9211141 Theory +hep-th/9304063 Theory +hep-th/9306042 Theory +hep-th/9309017 Theory +math/9811154 Combinatorics +math/9904042 Combinatorics +solv-int/9506006 Exactly Solvable and Integrable Systems +solv-int/9509003 Exactly Solvable and Integrable Systems +solv-int/9804004 Exactly Solvable and Integrable Systems +0710.4242 Computation +0710.5483 Theory +0712.2443 Statistical Mechanics +0801.1994 +0802.0593 +0803.1223 Phenomenology +0804.3118 +0804.4315 Phenomenology +0805.2739 Digital Libraries +0805.3666 +0806.1079 Category Theory +0806.3081 +0807.0475 +0807.0826 Strongly Correlated Electrons +0807.0932 +0807.3815 Geometric Topology +0808.0628 +0808.2405 +0808.2885 +0809.2659 +0809.3955 Phenomenology +0809.4261 +0810.1076 Theory +0810.2821 Probability +0810.4946 Data Structures and Algorithms +0810.5301 Analysis of PDEs +0811.0984 Phenomenology +0811.1290 Representation Theory +0811.1406 Lattice +0811.3216 +0812.1813 Theory +0812.2556 +0812.2651 Mesoscale and Nanoscale Physics +0812.2737 +0901.0384 +0901.0457 Superconductivity +0901.0737 Theory +0901.0919 Cosmology and Nongalactic Astrophysics +0901.1168 Theory +0901.1240 +0901.4884 Fluid Dynamics +0902.2156 Superconductivity +0902.2798 Astrophysics of Galaxies +0902.3277 Mesoscale and Nanoscale Physics +0902.3539 Solar and Stellar Astrophysics +0902.4286 +0902.4443 Phenomenology +0902.4592 Algebraic Geometry +0903.2412 Dynamical Systems +0903.2538 Mesoscale and Nanoscale Physics +0903.3480 Information Theory +0903.3910 +0903.5029 Atomic Physics +0904.1860 Phenomenology +0904.1956 Information Theory +0904.2179 Number Theory +0904.2315 +0904.3103 Phenomenology +0904.3806 Phenomenology +0904.3822 +0904.3837 +0904.3910 +0904.4770 +0905.0063 Theory +0905.0982 +0905.2336 Experiment +0905.4005 Other Condensed Matter +0905.4208 +0906.0586 Atomic Physics +0906.0784 Biological Physics +0906.1265 Superconductivity +0906.1356 Data Structures and Algorithms +0906.1452 Phenomenology +0906.2184 +0906.2427 Solar and Stellar Astrophysics +0906.2587 Theory +0906.3610 +0906.4248 +0906.4630 +0906.4705 Phenomenology +0906.5214 Optics +0906.5323 Phenomenology +0907.0007 Earth and Planetary Astrophysics +0907.0010 Solar and Stellar Astrophysics +0907.0560 Superconductivity +0907.0640 +0907.0897 Probability +0907.1427 Differential Geometry +0907.3678 Cosmology and Nongalactic Astrophysics +0907.4456 Superconductivity +0907.4866 Probability +0908.1755 +0908.1826 Information Theory +0908.2016 Biological Physics +0908.2048 Symplectic Geometry +0908.2086 General Finance +0908.2132 Group Theory +0908.2135 Analysis of PDEs +0908.2137 Solar and Stellar Astrophysics +0908.2141 Information Theory +0908.2149 Complex Variables +0908.2151 Probability +0908.2156 +0908.2163 Physics and Society +0908.2168 Category Theory +0908.2174 Information Theory +0908.2184 Atomic and Molecular Clusters +0908.2185 Quantum Algebra +0908.2195 Geometric Topology +0908.2196 Applications +0908.2197 Phenomenology +0908.2198 Information Theory +0908.2199 Phenomenology +0908.2201 Functional Analysis +0908.2203 Information Theory +0908.2210 Superconductivity +0908.2215 Phenomenology +0908.2221 General Topology +0908.2222 Distributed, Parallel, and Cluster Computing +0908.2226 Analysis of PDEs +0908.2234 Dynamical Systems +0908.2237 Discrete Mathematics +0908.2245 Strongly Correlated Electrons +0908.2254 +0908.2257 Group Theory +0908.2258 Phenomenology +0908.2260 Geometric Topology +0908.2262 Functional Analysis +0908.2264 Differential Geometry +0908.2276 Solar and Stellar Astrophysics +0908.2284 Machine Learning +0908.2286 Mesoscale and Nanoscale Physics +0908.2290 Populations and Evolution +0908.2291 Combinatorics +0908.2293 +0908.2296 Applications +0908.2300 Applications +0908.2303 Cosmology and Nongalactic Astrophysics +0908.2310 Applications +0908.2313 Applications +0908.2314 +0908.2315 General Physics +0908.2327 Analysis of PDEs +0908.2328 Information Theory +0908.2335 Mesoscale and Nanoscale Physics +0908.2352 +0908.2354 +0908.2358 Atomic and Molecular Clusters +0908.2364 Algebraic Geometry +0908.2365 Solar and Stellar Astrophysics +0908.2366 Quantum Algebra +0908.2369 Computational Geometry +0908.2376 Logic +0908.2377 +0908.2382 +0908.2384 Strongly Correlated Electrons +0908.2398 Representation Theory +0908.2406 Functional Analysis +0908.2408 Information Theory +0908.2410 Algebraic Geometry +0908.2413 Differential Geometry +0908.2417 Mesoscale and Nanoscale Physics +0908.2418 +0908.2419 Analysis of PDEs +astro-ph/0001247 +astro-ph/0003483 +astro-ph/0004003 +astro-ph/0004385 +astro-ph/0005085 +astro-ph/0008214 +astro-ph/0009381 +astro-ph/0011495 +astro-ph/0012420 +astro-ph/0012421 +astro-ph/0012422 +astro-ph/0101086 +astro-ph/0101519 +astro-ph/0102334 +astro-ph/0106364 +astro-ph/0206091 +astro-ph/0209409 +astro-ph/0209488 +astro-ph/0210531 +astro-ph/0210532 +astro-ph/0212228 +astro-ph/0306483 +astro-ph/0308186 +astro-ph/0310318 +astro-ph/0310892 +astro-ph/0402004 +astro-ph/0403075 +astro-ph/0407011 +astro-ph/0407579 +astro-ph/0409063 +astro-ph/0410215 +astro-ph/0412497 +astro-ph/0412649 +astro-ph/0501132 +astro-ph/0501454 +astro-ph/0604001 +astro-ph/0604361 +astro-ph/0606643 +astro-ph/9204002 +astro-ph/9306029 +astro-ph/9503054 +astro-ph/9508157 +astro-ph/9512155 +astro-ph/9601158 +astro-ph/9601170 +astro-ph/9602019 +astro-ph/9602020 +astro-ph/9605193 +astro-ph/9609079 +astro-ph/9609105 +astro-ph/9701138 +astro-ph/9702170 +astro-ph/9706147 +astro-ph/9709066 +astro-ph/9712195 +astro-ph/9802211 +astro-ph/9802295 +astro-ph/9803165 +astro-ph/9806362 +astro-ph/9810446 +astro-ph/9901028 +astro-ph/9901052 +cond-mat/0603607 Other Condensed Matter +cond-mat/9707016 Statistical Mechanics +gr-qc/0001022 +gr-qc/0312065 +gr-qc/0506028 +hep-ex/0506002 Experiment +hep-ph/0203202 Phenomenology +hep-ph/0204134 Phenomenology +hep-ph/0206124 Phenomenology +hep-ph/0402098 Phenomenology +hep-ph/0701253 Phenomenology +hep-ph/9203213 Phenomenology +hep-ph/9205212 Phenomenology +hep-ph/9709251 Phenomenology +hep-th/0112039 Theory +hep-th/0207016 Theory +hep-th/0304173 Theory +hep-th/0411097 Theory +hep-th/0511149 Theory +hep-th/0512038 Theory +hep-th/0603070 Theory +hep-th/9310035 Theory +hep-th/9401133 Theory +hep-th/9607019 Theory +hep-th/9608053 Theory +hep-th/9702084 Theory +hep-th/9705030 Theory +hep-th/9705044 Theory +hep-th/9707148 Theory +hep-th/9707160 Theory +hep-th/9708016 Theory +hep-th/9712233 Theory +hep-th/9806012 Theory +math-ph/0502041 +math/0601352 Algebraic Geometry +math/0602069 Spectral Theory +nucl-th/0208073 +nucl-th/0312035 +nucl-th/0412012 +nucl-th/0502032 +nucl-th/0503040 +nucl-th/0510075 +nucl-th/0604045 +nucl-th/0606025 +nucl-th/9412028 +nucl-th/9603046 +nucl-th/9912010 +physics/0005038 Atomic Physics +physics/0112093 Atomic Physics +physics/0305068 Atomic Physics +physics/0309054 Atomic Physics +physics/0507062 Atomic Physics +physics/0507067 Atomic Physics +physics/0608261 Atomic Physics +physics/0701220 Atomic Physics +physics/9808021 Atomic Physics +quant-ph/0102088 +0704.3313 Data Structures and Algorithms +0708.2278 Symplectic Geometry +0712.2905 +0802.1999 +0805.0316 Superconductivity +0805.3714 Lattice +0805.3909 Physics and Society +0806.0146 Dynamical Systems +0808.3144 Phenomenology +0808.3356 Strongly Correlated Electrons +0809.1729 Biological Physics +0810.1036 +0811.0063 Cryptography and Security +0811.4123 Atomic Physics +0811.4495 +0812.3841 Differential Geometry +0812.3964 Statistical Mechanics +0901.0921 Astrophysics of Galaxies +0901.2164 Information Theory +0901.3774 Group Theory +0901.4239 Geometric Topology +0902.1246 Strongly Correlated Electrons +0902.3192 Optics +0903.0008 Superconductivity +0903.0915 +0903.4878 Statistical Mechanics +0903.5216 Superconductivity +0903.5265 Quantum Gases +0904.0044 Mesoscale and Nanoscale Physics +0904.0136 Phenomenology +0904.1245 Symplectic Geometry +0904.2449 Classical Physics +0904.2972 Theory +0904.3192 Physics and Society +0905.0688 Theory +0905.0786 Chemical Physics +0905.1269 Mesoscale and Nanoscale Physics +0905.1810 Exactly Solvable and Integrable Systems +0905.3103 Materials Science +0906.0182 +0906.0338 +0906.0549 Theory +0906.2504 Biomolecules +0906.5027 Mesoscale and Nanoscale Physics +0906.5130 +0907.0025 Phenomenology +0907.1069 Solar and Stellar Astrophysics +0907.1493 Dynamical Systems +0907.4738 High Energy Astrophysical Phenomena +0908.2188 Spectral Theory +0908.3543 Theory +0908.3876 Materials Science +0908.4543 +0909.0922 Probability +0909.1187 Distributed, Parallel, and Cluster Computing +0909.1450 Theory +0909.1543 Instrumentation and Methods for Astrophysics +0909.1552 Computational Geometry +0909.1563 Neurons and Cognition +0909.1565 Cosmology and Nongalactic Astrophysics +0909.1579 Superconductivity +0909.1582 Populations and Evolution +0909.1584 +0909.1588 +0909.1590 Cryptography and Security +0909.1591 Superconductivity +0909.1598 Operator Algebras +0909.1604 Earth and Planetary Astrophysics +0909.1612 Combinatorics +0909.1614 Number Theory +0909.1620 Functional Analysis +0909.1627 +0909.1630 +0909.1638 Information Theory +0909.1639 Cryptography and Security +0909.1640 Cryptography and Security +0909.1641 Differential Geometry +0909.1642 Algebraic Geometry +0909.1646 Numerical Analysis +0909.1647 Logic in Computer Science +0909.1648 Materials Science +0909.1649 Soft Condensed Matter +0909.1650 Analysis of PDEs +0909.1651 Data Analysis, Statistics and Probability +0909.1662 Analysis of PDEs +0909.1664 Physics and Society +0909.1666 Number Theory +0909.1668 Geophysics +0909.1674 Geophysics +0909.1676 Materials Science +0909.1681 Geophysics +0909.1684 +0909.1686 +0909.1690 Trading and Market Microstructure +0909.1694 Number Theory +0909.1699 Analysis of PDEs +0909.1700 Geophysics +0909.1704 Statistical Mechanics +0909.1710 Group Theory +0909.1713 Networking and Internet Architecture +0909.1716 Materials Science +0909.1723 Dynamical Systems +0909.1727 Algebraic Geometry +0909.1732 Rings and Algebras +0909.1735 Representation Theory +0909.1736 Analysis of PDEs +0909.1741 +0909.1744 Number Theory +0909.1746 Solar and Stellar Astrophysics +0909.1757 Materials Science +0909.1789 Networking and Internet Architecture +0909.1792 Networking and Internet Architecture +0909.1793 Category Theory +0909.1794 Earth and Planetary Astrophysics +0909.1799 Theory +0909.1801 Information Theory +astro-ph/0606233 +cond-mat/0206436 Mesoscale and Nanoscale Physics +cond-mat/0501111 Statistical Mechanics +cond-mat/0507177 Statistical Mechanics +cond-mat/0509182 Statistical Mechanics +cond-mat/0602461 Statistical Mechanics +hep-lat/0203004 Lattice +hep-ph/0411071 Phenomenology +hep-th/0702218 Theory +math/0408250 Symplectic Geometry +math/0502429 Symplectic Geometry +math/0607421 Differential Geometry +math/0701829 Geometric Topology +0806.3799 Information Theory +0809.0957 +0811.1324 Chaotic Dynamics +0901.3107 +0904.3077 Phenomenology +0905.1521 Statistical Mechanics +0908.1827 Phenomenology +0909.0353 High Energy Astrophysical Phenomena +0909.0432 High Energy Astrophysical Phenomena +0910.0201 Quantum Algebra +hep-th/0601080 Theory +math-ph/0301036 +math-ph/0301037 +math-ph/0604025 +0705.0082 Theory +0705.0362 Theory +0705.0373 Theory +0705.0442 Phenomenology +0705.0994 Theory +0705.1066 Theory +0705.1074 Theory +0705.1238 Theory +0705.1304 Theory +0705.1433 Theory +0705.1500 Phenomenology +0705.1504 Phenomenology +0705.1557 Theory +0705.1683 Theory +0705.1736 Phenomenology +0705.1764 +0705.2191 Theory +0705.2647 Phenomenology +0705.2768 Theory +0705.2771 Theory +0705.2858 Theory +0705.2961 Phenomenology +0705.3426 Phenomenology +0705.3884 Phenomenology +0706.0017 Phenomenology +0706.1848 Phenomenology +0708.3457 +0709.4363 Differential Geometry +0711.2985 Soft Condensed Matter +0712.2590 Geometric Topology +0801.4937 Geometric Topology +0802.2176 Theory +0803.0120 Optics +0803.1043 Classical Physics +0804.0440 Combinatorics +0805.4661 Soft Condensed Matter +0806.1416 Computational Geometry +0806.1773 Strongly Correlated Electrons +0806.4633 +0807.0336 Computational Geometry +0807.4459 Optics +0807.4743 Soft Condensed Matter +0807.5006 +0808.2811 Theory +0809.1324 Phenomenology +0809.2373 Algebraic Topology +0809.3429 Theory +0810.2146 Algebraic Geometry +0810.2311 Artificial Intelligence +0810.2768 Theory +0810.3607 Phenomenology +0810.4629 Neurons and Cognition +0810.5328 Theory +0810.5771 Phenomenology +0811.0274 Phenomenology +0811.1191 Phenomenology +0811.1480 History and Overview +0811.2138 Phenomenology +0811.2322 +0811.2756 +0811.2920 Superconductivity +0811.3751 Superconductivity +0811.4625 Strongly Correlated Electrons +0812.0064 Phenomenology +0812.0099 Strongly Correlated Electrons +0812.2059 Representation Theory +0812.3282 +0812.4928 +0901.0443 Representation Theory +0901.1487 Theory +0901.1812 Phenomenology +0901.2095 Geometric Topology +0901.2197 Other Condensed Matter +0901.2292 +0901.2961 +0901.3775 Theory +0902.1434 Phenomenology +0902.2877 Atomic Physics +0902.3159 +0902.3603 Other Condensed Matter +0902.4154 Phenomenology +0902.4160 Superconductivity +0902.4287 Phenomenology +0902.4746 Other Condensed Matter +0903.0394 Metric Geometry +0903.0575 Superconductivity +0903.1789 Geometric Topology +0903.2880 Phenomenology +0903.2887 Statistical Mechanics +0903.3608 +0903.3914 Soft Condensed Matter +0903.4321 +0903.4721 Superconductivity +0904.0798 Differential Geometry +0904.1303 +0904.1710 Functional Analysis +0904.2934 Theory +0904.3000 Probability +0904.3015 Statistical Mechanics +0904.3095 Cosmology and Nongalactic Astrophysics +0904.3104 Logic +0904.3117 Phenomenology +0904.3118 Combinatorics +0904.3122 Statistical Mechanics +0904.3128 Superconductivity +0904.3129 Geometric Topology +0904.3130 Functional Analysis +0904.3137 Category Theory +0904.3148 Hardware Architecture +0904.3151 Data Structures and Algorithms +0904.3155 +0904.3157 Logic in Computer Science +0904.3165 Information Theory +0904.3168 Optics +0904.3169 Data Structures and Algorithms +0904.3174 Superconductivity +0904.3178 Functional Analysis +0904.3181 Rings and Algebras +0904.3183 Data Structures and Algorithms +0904.3185 Astrophysics of Galaxies +0904.3191 Computational Physics +0904.3207 Probability +0904.3211 +0904.3215 Networking and Internet Architecture +0904.3219 Differential Geometry +0904.3222 Networking and Internet Architecture +0904.3223 Chemical Physics +0904.3228 Differential Geometry +0904.3231 Neurons and Cognition +0904.3232 General Physics +0904.3233 Biomolecules +0904.3234 Mesoscale and Nanoscale Physics +0904.3237 Cosmology and Nongalactic Astrophysics +0904.3239 Combinatorics +0904.3243 General Literature +0904.3245 +0904.3247 Probability +0904.3251 Data Structures and Algorithms +0904.3254 Biomolecules +0904.3255 Phenomenology +0904.3256 Algebraic Geometry +0904.3259 Analysis of PDEs +0904.3265 +0904.3269 Algebraic Topology +0904.3270 Experiment +0904.3271 Analysis of PDEs +0904.3274 Probability +0904.3277 Superconductivity +0904.3283 Analysis of PDEs +0904.3285 Dynamical Systems +0904.3286 +0904.3287 Analysis of PDEs +0904.3291 Rings and Algebras +0904.3295 Statistics Theory +0904.3296 +0904.3300 Algebraic Topology +0904.3301 Classical Analysis and ODEs +0904.3306 Metric Geometry +0904.3307 +0904.3311 Differential Geometry +0904.3316 Databases +0904.3319 Databases +0904.3320 Databases +0904.3321 Databases +astro-ph/0104143 +astro-ph/0204112 +astro-ph/0611467 +cs/0306106 Computer Science and Game Theory +cs/0702089 Logic in Computer Science +cs/0703109 Data Structures and Algorithms +gr-qc/0511095 +gr-qc/0606022 +gr-qc/0606028 +gr-qc/0612016 +hep-ph/0702016 Phenomenology +hep-th/0702002 Theory +hep-th/0702012 Theory +hep-th/0702014 Theory +hep-th/0702128 Theory +hep-th/0702195 Theory +hep-th/0702210 Theory +math/0406040 Geometric Topology +math/0504005 Algebraic Geometry +math/0509701 Dynamical Systems +math/0601396 Geometric Topology +math/0602080 Algebraic Geometry +math/0607510 Geometric Topology +math/0609352 Differential Geometry +0704.3613 Theory +0704.3638 Theory +0704.3978 Phenomenology +0705.2481 Phenomenology +0707.0014 Phenomenology +0708.2398 Phenomenology +0709.0681 Theory +0709.1714 Phenomenology +0709.4071 Analysis of PDEs +0709.4192 Accelerator Physics +0710.1668 Phenomenology +0710.3946 Experiment +0711.0707 Theory +0711.3653 +0711.4124 Phenomenology +0712.0852 Phenomenology +0712.0996 Algebraic Geometry +0801.1149 +0801.1847 Theory +0801.2237 Phenomenology +0801.3440 Phenomenology +0801.3819 Geometric Topology +0802.0504 Accelerator Physics +0802.0532 +0802.0733 Physics and Society +0802.0967 +0802.1489 Phenomenology +0802.1672 Theory +0803.3963 Other Condensed Matter +0804.1014 Phenomenology +0804.1120 Theory +0804.2208 Probability +0804.2407 Accelerator Physics +0804.2886 +0804.3170 Phenomenology +0805.0019 +0805.0822 Phenomenology +0805.2372 +0807.2575 Theory +0807.2693 Differential Geometry +0807.3061 Phenomenology +0808.0500 Theory +0808.2472 Phenomenology +0809.4038 Theory +0810.1870 +0810.5470 +0811.2606 +0811.4017 +0811.4191 Information Theory +0812.1773 Theory +0812.2665 Experiment +0901.0385 Combinatorics +0901.1999 Probability +0901.2777 Probability +0901.3150 Learning +0902.1456 Strongly Correlated Electrons +0902.2118 Mesoscale and Nanoscale Physics +0902.3959 Phenomenology +0903.1310 High Energy Astrophysical Phenomena +0903.3368 +0903.4596 Phenomenology +0903.4804 Functional Analysis +0903.5305 Phenomenology +0903.5433 Quantum Algebra +0904.1350 Other Condensed Matter +0904.3860 +0905.1233 +0906.0525 +0906.2613 Superconductivity +0906.2737 Mesoscale and Nanoscale Physics +0906.2901 Instrumentation and Methods for Astrophysics +0906.2937 +0906.3678 Neurons and Cognition +0906.4041 +0906.4228 Databases +0906.4419 Probability +0906.5302 Experiment +0907.0116 Dynamical Systems +0907.0259 Dynamical Systems +0907.2472 Mesoscale and Nanoscale Physics +0907.4471 Information Theory +0908.1720 Astrophysics of Galaxies +0908.2341 +0908.4108 +0909.0150 Mesoscale and Nanoscale Physics +0909.0336 +0909.0468 Soft Condensed Matter +0909.1039 Combinatorics +0909.1155 +0909.1669 Theory +0909.2869 Cosmology and Nongalactic Astrophysics +0909.2885 Statistical Finance +0909.2891 Computational Geometry +0909.2892 Mesoscale and Nanoscale Physics +0909.2899 Geometric Topology +0909.2901 Superconductivity +0909.2902 Analysis of PDEs +0909.2907 +0909.2909 Combinatorics +0909.2910 Cosmology and Nongalactic Astrophysics +0909.2917 Strongly Correlated Electrons +0909.2922 Disordered Systems and Neural Networks +0909.2926 Disordered Systems and Neural Networks +0909.2928 +0909.2930 Optimization and Control +0909.2934 Learning +0909.2935 Representation Theory +0909.2936 Chaotic Dynamics +0909.2944 Analysis of PDEs +0909.2946 Solar and Stellar Astrophysics +0909.2947 Soft Condensed Matter +0909.2950 Materials Science +0909.2953 Soft Condensed Matter +0909.2967 Group Theory +0909.2973 Solar and Stellar Astrophysics +0909.2977 Optics +0909.2993 Number Theory +0909.2994 +0909.2999 Number Theory +0909.3001 Cosmology and Nongalactic Astrophysics +0909.3002 Number Theory +0909.3004 Superconductivity +0909.3006 +0909.3008 Exactly Solvable and Integrable Systems +0909.3013 Cosmology and Nongalactic Astrophysics +0909.3015 Phenomenology +0909.3020 Algebraic Topology +0909.3022 Cosmology and Nongalactic Astrophysics +0909.3027 Computation and Language +0909.3028 Computation and Language +0909.3031 Statistical Mechanics +0909.3034 Statistics Theory +0909.3037 Materials Science +0909.3038 Cosmology and Nongalactic Astrophysics +0909.3049 Mesoscale and Nanoscale Physics +0909.3050 Soft Condensed Matter +0909.3052 Methodology +0909.3055 Information Theory +0909.3078 Other Condensed Matter +0909.3079 +0909.3082 Superconductivity +astro-ph/0001322 +astro-ph/0002015 +astro-ph/0003191 +astro-ph/0005242 +astro-ph/0006427 +astro-ph/0008019 +astro-ph/0009498 +astro-ph/0010162 +astro-ph/0011121 +astro-ph/0011360 +astro-ph/0011500 +astro-ph/0011566 +astro-ph/0101288 +astro-ph/0102040 +astro-ph/0103214 +astro-ph/0103417 +astro-ph/0104175 +astro-ph/0104223 +astro-ph/0106067 +astro-ph/0107311 +astro-ph/0108342 +astro-ph/0108373 +astro-ph/0109050 +astro-ph/0109337 +astro-ph/0110367 +astro-ph/0111027 +astro-ph/0111418 +astro-ph/0112451 +astro-ph/0202071 +astro-ph/0202148 +astro-ph/0202432 +astro-ph/0203052 +astro-ph/0203455 +astro-ph/0206170 +astro-ph/0206379 +astro-ph/0206382 +astro-ph/0206433 +astro-ph/0207290 +astro-ph/0207339 +astro-ph/0208187 +astro-ph/0209583 +astro-ph/0210054 +astro-ph/0211129 +astro-ph/0211232 +astro-ph/0211421 +astro-ph/0301172 +astro-ph/0301468 +astro-ph/0302108 +astro-ph/0302288 +astro-ph/0302355 +astro-ph/0303143 +astro-ph/0303418 +astro-ph/0304218 +astro-ph/0305329 +astro-ph/0306139 +astro-ph/0307394 +astro-ph/0308352 +astro-ph/0309064 +astro-ph/0309169 +astro-ph/0309432 +astro-ph/0310366 +astro-ph/0310617 +astro-ph/0310772 +astro-ph/0310784 +astro-ph/0311008 +astro-ph/0311037 +astro-ph/0312298 +astro-ph/0401297 +astro-ph/0402660 +astro-ph/0402674 +astro-ph/0405119 +astro-ph/0405160 +astro-ph/0405374 +astro-ph/0405570 +astro-ph/0406094 +astro-ph/0406657 +astro-ph/0407346 +astro-ph/0407484 +astro-ph/0409293 +astro-ph/0409689 +astro-ph/0410154 +astro-ph/0410255 +astro-ph/0410261 +astro-ph/0411066 +astro-ph/0411446 +astro-ph/0412224 +astro-ph/0412266 +astro-ph/0412695 +astro-ph/0501222 +astro-ph/0501347 +astro-ph/0503232 +astro-ph/0503318 +astro-ph/0503623 +astro-ph/0504472 +astro-ph/0505069 +astro-ph/0506082 +astro-ph/0506119 +astro-ph/0506305 +astro-ph/0507627 +astro-ph/0508229 +astro-ph/0510247 +astro-ph/0510476 +astro-ph/0510858 +astro-ph/0511457 +astro-ph/0512022 +astro-ph/0512331 +astro-ph/0512549 +astro-ph/0601180 +astro-ph/0602191 +astro-ph/0602272 +astro-ph/0602323 +astro-ph/0602355 +astro-ph/0602466 +astro-ph/0602605 +astro-ph/0602622 +astro-ph/0603383 +astro-ph/0604575 +astro-ph/0605320 +astro-ph/0605747 +astro-ph/0606238 +astro-ph/0606262 +astro-ph/0607113 +astro-ph/0607501 +astro-ph/0608425 +astro-ph/0608466 +astro-ph/9811181 +astro-ph/9903057 +astro-ph/9907352 +astro-ph/9909239 +astro-ph/9910122 +astro-ph/9910188 +astro-ph/9911002 +astro-ph/9912321 +astro-ph/9912394 +gr-qc/0105114 +gr-qc/0504054 +gr-qc/9306005 +gr-qc/9306023 +gr-qc/9505027 +gr-qc/9505047 +gr-qc/9507027 +gr-qc/9508041 +gr-qc/9806034 +gr-qc/9904035 +gr-qc/9905073 +hep-lat/0503011 Lattice +hep-lat/0510073 Lattice +hep-ph/0001039 Phenomenology +hep-ph/0002147 Phenomenology +hep-ph/0002264 Phenomenology +hep-ph/0005259 Phenomenology +hep-ph/0007157 Phenomenology +hep-ph/0009066 Phenomenology +hep-ph/0009350 Phenomenology +hep-ph/0010299 Phenomenology +hep-ph/0011248 Phenomenology +hep-ph/0101207 Phenomenology +hep-ph/0103017 Phenomenology +hep-ph/0104040 Phenomenology +hep-ph/0105010 Phenomenology +hep-ph/0106044 Phenomenology +hep-ph/0107266 Phenomenology +hep-ph/0108145 Phenomenology +hep-ph/0108193 Phenomenology +hep-ph/0111224 Phenomenology +hep-ph/0111311 Phenomenology +hep-ph/0112103 Phenomenology +hep-ph/0112160 Phenomenology +hep-ph/0112212 Phenomenology +hep-ph/0112310 Phenomenology +hep-ph/0204109 Phenomenology +hep-ph/0205252 Phenomenology +hep-ph/0206292 Phenomenology +hep-ph/0207227 Phenomenology +hep-ph/0207334 Phenomenology +hep-ph/0209047 Phenomenology +hep-ph/0209368 Phenomenology +hep-ph/0211124 Phenomenology +hep-ph/0212129 Phenomenology +hep-ph/0301061 Phenomenology +hep-ph/0302030 Phenomenology +hep-ph/0303236 Phenomenology +hep-ph/0307192 Phenomenology +hep-ph/0309130 Phenomenology +hep-ph/0310355 Phenomenology +hep-ph/0310366 Phenomenology +hep-ph/0311014 Phenomenology +hep-ph/0405015 Phenomenology +hep-ph/0405172 Phenomenology +hep-ph/0406040 Phenomenology +hep-ph/0406066 Phenomenology +hep-ph/0409126 Phenomenology +hep-ph/0410103 Phenomenology +hep-ph/0411129 Phenomenology +hep-ph/0505001 Phenomenology +hep-ph/0508067 Phenomenology +hep-ph/0509280 Phenomenology +hep-ph/0510294 Phenomenology +hep-ph/0512195 Phenomenology +hep-ph/0512360 Phenomenology +hep-ph/0601041 Phenomenology +hep-ph/0604218 Phenomenology +hep-ph/0608101 Phenomenology +hep-ph/0610247 Phenomenology +hep-ph/9207269 Phenomenology +hep-ph/9211258 Phenomenology +hep-ph/9301231 Phenomenology +hep-ph/9303219 Phenomenology +hep-ph/9303299 Phenomenology +hep-ph/9304255 Phenomenology +hep-ph/9308251 Phenomenology +hep-ph/9309214 Phenomenology +hep-ph/9312278 Phenomenology +hep-ph/9312329 Phenomenology +hep-ph/9509254 Phenomenology +hep-ph/9511378 Phenomenology +hep-ph/9601269 Phenomenology +hep-ph/9602209 Phenomenology +hep-ph/9602307 Phenomenology +hep-ph/9602369 Phenomenology +hep-ph/9602424 Phenomenology +hep-ph/9604244 Phenomenology +hep-ph/9605301 Phenomenology +hep-ph/9606256 Phenomenology +hep-ph/9606414 Phenomenology +hep-ph/9606445 Phenomenology +hep-ph/9607208 Phenomenology +hep-ph/9607401 Phenomenology +hep-ph/9608307 Phenomenology +hep-ph/9610507 Phenomenology +hep-ph/9612277 Phenomenology +hep-ph/9612436 Phenomenology +hep-ph/9701420 Phenomenology +hep-ph/9702231 Phenomenology +hep-ph/9702372 Phenomenology +hep-ph/9705391 Phenomenology +hep-ph/9706315 Phenomenology +hep-ph/9707395 Phenomenology +hep-ph/9709299 Phenomenology +hep-ph/9709362 Phenomenology +hep-ph/9709365 Phenomenology +hep-ph/9710545 Phenomenology +hep-ph/9711316 Phenomenology +hep-ph/9711374 Phenomenology +hep-ph/9712215 Phenomenology +hep-ph/9712238 Phenomenology +hep-ph/9712454 Phenomenology +hep-ph/9712455 Phenomenology +hep-ph/9712487 Phenomenology +hep-ph/9801368 Phenomenology +hep-ph/9801391 Phenomenology +hep-ph/9803378 Phenomenology +hep-ph/9806382 Phenomenology +hep-ph/9807321 Phenomenology +hep-ph/9807479 Phenomenology +hep-ph/9808297 Phenomenology +hep-ph/9808314 Phenomenology +hep-ph/9808321 Phenomenology +hep-ph/9808412 Phenomenology +hep-ph/9809531 Phenomenology +hep-ph/9811355 Phenomenology +hep-ph/9812463 Phenomenology +hep-ph/9903319 Phenomenology +hep-ph/9903473 Phenomenology +hep-ph/9903474 Phenomenology +hep-ph/9905405 Phenomenology +hep-ph/9906343 Phenomenology +hep-ph/9906378 Phenomenology +hep-ph/9906469 Phenomenology +hep-ph/9906513 Phenomenology +hep-ph/9908286 Phenomenology +hep-ph/9909212 Phenomenology +hep-ph/9911224 Phenomenology +hep-ph/9911349 Phenomenology +hep-th/0001002 Theory +hep-th/0001053 Theory +hep-th/0001122 Theory +hep-th/0001159 Theory +hep-th/0001192 Theory +hep-th/0002056 Theory +hep-th/0002076 Theory +hep-th/0002099 Theory +hep-th/0003020 Theory +hep-th/0003076 Theory +hep-th/0003148 Theory +hep-th/0003286 Theory +hep-th/0004097 Theory +hep-th/0004133 Theory +hep-th/0004201 Theory +hep-th/0005127 Theory +hep-th/0005137 Theory +hep-th/0005197 Theory +hep-th/0005246 Theory +hep-th/0006049 Theory +hep-th/0006115 Theory +hep-th/0007036 Theory +hep-th/0007086 Theory +hep-th/0007109 Theory +hep-th/0007205 Theory +hep-th/0007209 Theory +hep-th/0008160 Theory +hep-th/0009015 Theory +hep-th/0009059 Theory +hep-th/0009171 Theory +hep-th/0009183 Theory +hep-th/0009202 Theory +hep-th/0009226 Theory +hep-th/0010091 Theory +hep-th/0011023 Theory +hep-th/0011033 Theory +hep-th/0011115 Theory +hep-th/0011167 Theory +hep-th/0011182 Theory +hep-th/0011191 Theory +hep-th/0012034 Theory +hep-th/0012105 Theory +hep-th/0012218 Theory +hep-th/0101003 Theory +hep-th/0101007 Theory +hep-th/0101043 Theory +hep-th/0101096 Theory +hep-th/0102032 Theory +hep-th/0102082 Theory +hep-th/0102185 Theory +hep-th/0103078 Theory +hep-th/0104036 Theory +hep-th/0104238 Theory +hep-th/0105052 Theory +hep-th/0105068 Theory +hep-th/0105096 Theory +hep-th/0105117 Theory +hep-th/0105300 Theory +hep-th/0105311 Theory +hep-th/0106162 Theory +hep-th/0106241 Theory +hep-th/0107166 Theory +hep-th/0108106 Theory +hep-th/0108172 Theory +hep-th/0108245 Theory +hep-th/0109122 Theory +hep-th/0110051 Theory +hep-th/0110064 Theory +hep-th/0110173 Theory +hep-th/0110188 Theory +hep-th/0111017 Theory +hep-th/0111096 Theory +hep-th/0111128 Theory +hep-th/0111135 Theory +hep-th/0112098 Theory +hep-th/0112138 Theory +hep-th/0112152 Theory +hep-th/0112188 Theory +hep-th/0112218 Theory +hep-th/0201112 Theory +hep-th/0201210 Theory +hep-th/0202098 Theory +hep-th/0202109 Theory +hep-th/0202145 Theory +hep-th/0202157 Theory +hep-th/0203082 Theory +hep-th/0203229 Theory +hep-th/0204064 Theory +hep-th/0204065 Theory +hep-th/0204112 Theory +hep-th/0205187 Theory +hep-th/0205247 Theory +hep-th/0205282 Theory +hep-th/0206115 Theory +hep-th/0206151 Theory +hep-th/0206180 Theory +hep-th/0207009 Theory +hep-th/0207241 Theory +hep-th/0208095 Theory +hep-th/0209066 Theory +hep-th/0209116 Theory +hep-th/0210094 Theory +hep-th/0211023 Theory +hep-th/0212047 Theory +hep-th/0212177 Theory +hep-th/0212277 Theory +hep-th/0212306 Theory +hep-th/0301038 Theory +hep-th/0301133 Theory +hep-th/0302054 Theory +hep-th/0302109 Theory +hep-th/0303011 Theory +hep-th/0303063 Theory +hep-th/0303067 Theory +hep-th/0303117 Theory +hep-th/0303197 Theory +hep-th/0303208 Theory +hep-th/0303221 Theory +hep-th/0303266 Theory +hep-th/0304131 Theory +hep-th/0304139 Theory +hep-th/0304198 Theory +hep-th/0304255 Theory +hep-th/0306031 Theory +hep-th/0306143 Theory +hep-th/0306212 Theory +hep-th/0307071 Theory +hep-th/0307191 Theory +hep-th/0308026 Theory +hep-th/0308045 Theory +hep-th/0308176 Theory +hep-th/0310045 Theory +hep-th/0310118 Theory +hep-th/0310296 Theory +hep-th/0311004 Theory +hep-th/0312269 Theory +hep-th/0401151 Theory +hep-th/0401203 Theory +hep-th/0403050 Theory +hep-th/0403061 Theory +hep-th/0403120 Theory +hep-th/0403162 Theory +hep-th/0404101 Theory +hep-th/0404215 Theory +hep-th/0405034 Theory +hep-th/0405092 Theory +hep-th/0405146 Theory +hep-th/0406121 Theory +hep-th/0406189 Theory +hep-th/0406196 Theory +hep-th/0407058 Theory +hep-th/0408170 Theory +hep-th/0408187 Theory +hep-th/0409177 Theory +hep-th/0409244 Theory +hep-th/0411045 Theory +hep-th/0411187 Theory +hep-th/0411280 Theory +hep-th/0412030 Theory +hep-th/0412094 Theory +hep-th/0501025 Theory +hep-th/0501096 Theory +hep-th/0501203 Theory +hep-th/0502082 Theory +hep-th/0502095 Theory +hep-th/0502154 Theory +hep-th/0502211 Theory +hep-th/0503185 Theory +hep-th/0504052 Theory +hep-th/0504136 Theory +hep-th/0504225 Theory +hep-th/0505112 Theory +hep-th/0505223 Theory +hep-th/0506212 Theory +hep-th/0507021 Theory +hep-th/0508098 Theory +hep-th/0509071 Theory +hep-th/0510183 Theory +hep-th/0601213 Theory +hep-th/0602046 Theory +hep-th/0603062 Theory +hep-th/0606025 Theory +hep-th/0607010 Theory +hep-th/0701204 Theory +hep-th/0703133 Theory +hep-th/9108006 Theory +hep-th/9108020 Theory +hep-th/9109048 Theory +hep-th/9111056 Theory +hep-th/9112072 Theory +hep-th/9201007 Theory +hep-th/9201021 Theory +hep-th/9202004 Theory +hep-th/9202075 Theory +hep-th/9203033 Theory +hep-th/9203042 Theory +hep-th/9205028 Theory +hep-th/9205029 Theory +hep-th/9205048 Theory +hep-th/9205049 Theory +hep-th/9205050 Theory +hep-th/9205058 Theory +hep-th/9205060 Theory +hep-th/9205090 Theory +hep-th/9206004 Theory +hep-th/9206043 Theory +hep-th/9207034 Theory +hep-th/9207046 Theory +hep-th/9209021 Theory +hep-th/9209023 Theory +hep-th/9210015 Theory +hep-th/9210028 Theory +hep-th/9210085 Theory +hep-th/9210123 Theory +hep-th/9211008 Theory +hep-th/9211030 Theory +hep-th/9211061 Theory +hep-th/9212020 Theory +hep-th/9212097 Theory +hep-th/9212139 Theory +hep-th/9212140 Theory +hep-th/9301015 Theory +hep-th/9302074 Theory +hep-th/9302080 Theory +hep-th/9302083 Theory +hep-th/9302103 Theory +hep-th/9303061 Theory +hep-th/9303125 Theory +hep-th/9304062 Theory +hep-th/9304071 Theory +hep-th/9304091 Theory +hep-th/9304148 Theory +hep-th/9305008 Theory +hep-th/9305083 Theory +hep-th/9306023 Theory +hep-th/9306123 Theory +hep-th/9307059 Theory +hep-th/9307079 Theory +hep-th/9307123 Theory +hep-th/9308018 Theory +hep-th/9308019 Theory +hep-th/9308020 Theory +hep-th/9308042 Theory +hep-th/9309140 Theory +hep-th/9309152 Theory +hep-th/9310159 Theory +hep-th/9311012 Theory +hep-th/9311062 Theory +hep-th/9311079 Theory +hep-th/9311087 Theory +hep-th/9312017 Theory +hep-th/9312164 Theory +hep-th/9401057 Theory +hep-th/9402120 Theory +hep-th/9402154 Theory +hep-th/9403062 Theory +hep-th/9403132 Theory +hep-th/9403184 Theory +hep-th/9403186 Theory +hep-th/9404020 Theory +hep-th/9404063 Theory +hep-th/9404084 Theory +hep-th/9404180 Theory +hep-th/9404191 Theory +hep-th/9406067 Theory +hep-th/9406193 Theory +hep-th/9407008 Theory +hep-th/9408040 Theory +hep-th/9408095 Theory +hep-th/9408101 Theory +hep-th/9410191 Theory +hep-th/9410215 Theory +hep-th/9411012 Theory +hep-th/9411024 Theory +hep-th/9411099 Theory +hep-th/9411170 Theory +hep-th/9411198 Theory +hep-th/9502107 Theory +hep-th/9503081 Theory +hep-th/9503082 Theory +hep-th/9503130 Theory +hep-th/9504014 Theory +hep-th/9504047 Theory +hep-th/9504090 Theory +hep-th/9504093 Theory +hep-th/9504145 Theory +hep-th/9505045 Theory +hep-th/9505065 Theory +hep-th/9505129 Theory +hep-th/9505183 Theory +hep-th/9506061 Theory +hep-th/9506071 Theory +hep-th/9506117 Theory +hep-th/9507090 Theory +hep-th/9507158 Theory +hep-th/9507160 Theory +hep-th/9508068 Theory +hep-th/9508072 Theory +hep-th/9509050 Theory +hep-th/9509064 Theory +hep-th/9509123 Theory +hep-th/9510041 Theory +hep-th/9510097 Theory +hep-th/9510098 Theory +hep-th/9510173 Theory +hep-th/9510207 Theory +hep-th/9510227 Theory +hep-th/9511031 Theory +hep-th/9511164 Theory +hep-th/9511167 Theory +hep-th/9512059 Theory +hep-th/9512081 Theory +hep-th/9512127 Theory +hep-th/9512188 Theory +hep-th/9601101 Theory +hep-th/9601177 Theory +hep-th/9602051 Theory +hep-th/9602064 Theory +hep-th/9602110 Theory +hep-th/9602111 Theory +hep-th/9603060 Theory +hep-th/9603078 Theory +hep-th/9603099 Theory +hep-th/9603100 Theory +hep-th/9603109 Theory +hep-th/9603147 Theory +hep-th/9603172 Theory +hep-th/9604035 Theory +hep-th/9604061 Theory +hep-th/9604089 Theory +hep-th/9604163 Theory +hep-th/9605091 Theory +hep-th/9606016 Theory +hep-th/9606033 Theory +hep-th/9606051 Theory +hep-th/9606112 Theory +hep-th/9606193 Theory +hep-th/9606198 Theory +hep-th/9607038 Theory +hep-th/9607107 Theory +hep-th/9607189 Theory +hep-th/9607210 Theory +hep-th/9608079 Theory +hep-th/9608116 Theory +hep-th/9609212 Theory +hep-th/9611047 Theory +hep-th/9611063 Theory +hep-th/9611111 Theory +hep-th/9611151 Theory +hep-th/9612131 Theory +hep-th/9612164 Theory +hep-th/9612207 Theory +hep-th/9612229 Theory +hep-th/9701032 Theory +hep-th/9701125 Theory +hep-th/9701191 Theory +hep-th/9702015 Theory +hep-th/9702097 Theory +hep-th/9702163 Theory +hep-th/9702203 Theory +hep-th/9702205 Theory +hep-th/9703134 Theory +hep-th/9703144 Theory +hep-th/9703204 Theory +hep-th/9704067 Theory +hep-th/9704112 Theory +hep-th/9704127 Theory +hep-th/9705008 Theory +hep-th/9705120 Theory +hep-th/9705192 Theory +hep-th/9705220 Theory +hep-th/9706009 Theory +hep-th/9706062 Theory +hep-th/9706071 Theory +hep-th/9706072 Theory +hep-th/9706143 Theory +hep-th/9706195 Theory +hep-th/9707134 Theory +hep-th/9707142 Theory +hep-th/9708082 Theory +hep-th/9708136 Theory +hep-th/9708139 Theory +hep-th/9709033 Theory +hep-th/9709077 Theory +hep-th/9709087 Theory +hep-th/9709123 Theory +hep-th/9709211 Theory +hep-th/9710010 Theory +hep-th/9710105 Theory +hep-th/9710137 Theory +hep-th/9710178 Theory +hep-th/9711143 Theory +hep-th/9711178 Theory +hep-th/9712015 Theory +hep-th/9712060 Theory +hep-th/9712118 Theory +hep-th/9712221 Theory +hep-th/9801052 Theory +hep-th/9801060 Theory +hep-th/9801071 Theory +hep-th/9801120 Theory +hep-th/9801173 Theory +hep-th/9801180 Theory +hep-th/9801207 Theory +hep-th/9802005 Theory +hep-th/9802043 Theory +hep-th/9802116 Theory +hep-th/9802133 Theory +hep-th/9802160 Theory +hep-th/9803103 Theory +hep-th/9804033 Theory +hep-th/9804061 Theory +hep-th/9804083 Theory +hep-th/9805028 Theory +hep-th/9805097 Theory +hep-th/9805129 Theory +hep-th/9805133 Theory +hep-th/9805146 Theory +hep-th/9805156 Theory +hep-th/9806055 Theory +hep-th/9806095 Theory +hep-th/9806116 Theory +hep-th/9806141 Theory +hep-th/9807097 Theory +hep-th/9808109 Theory +hep-th/9809032 Theory +hep-th/9810008 Theory +hep-th/9810014 Theory +hep-th/9810123 Theory +hep-th/9810186 Theory +hep-th/9810227 Theory +hep-th/9811035 Theory +hep-th/9811107 Theory +hep-th/9811232 Theory +hep-th/9812017 Theory +hep-th/9812089 Theory +hep-th/9812164 Theory +hep-th/9901002 Theory +hep-th/9901026 Theory +hep-th/9901119 Theory +hep-th/9902035 Theory +hep-th/9902067 Theory +hep-th/9902095 Theory +hep-th/9903091 Theory +hep-th/9903214 Theory +hep-th/9903243 Theory +hep-th/9904036 Theory +hep-th/9904135 Theory +hep-th/9904146 Theory +hep-th/9904191 Theory +hep-th/9905096 Theory +hep-th/9905200 Theory +hep-th/9906057 Theory +hep-th/9906141 Theory +hep-th/9907191 Theory +hep-th/9908065 Theory +hep-th/9908066 Theory +hep-th/9908186 Theory +hep-th/9909040 Theory +hep-th/9909058 Theory +hep-th/9909121 Theory +hep-th/9910113 Theory +hep-th/9910252 Theory +hep-th/9911135 Theory +hep-th/9911152 Theory +hep-th/9911221 Theory +hep-th/9911246 Theory +hep-th/9911253 Theory +hep-th/9912123 Theory +hep-th/9912187 Theory +hep-th/9912191 Theory +math/0105119 Differential Geometry +math/0612464 Commutative Algebra +quant-ph/0605061 +quant-ph/0612141 +0704.1947 Quantum Algebra +0705.1949 Portfolio Management +0706.0059 General Physics +0706.4067 +0708.1446 Other Condensed Matter +0708.2313 Strongly Correlated Electrons +0708.4258 Probability +0710.4408 +0804.1108 Probability +0804.2179 +0804.2194 +0804.4611 Algebraic Geometry +0806.0902 Statistical Mechanics +0806.0906 Combinatorics +0806.3564 +0807.1444 Theory +0807.3173 Other Condensed Matter +0807.3564 Mesoscale and Nanoscale Physics +0807.4328 Superconductivity +0807.4878 Strongly Correlated Electrons +0807.4882 Superconductivity +0808.0177 Algebraic Geometry +0808.2204 Biomolecules +0809.1109 Strongly Correlated Electrons +0809.2222 Instrumentation and Detectors +0809.2634 +0809.4340 Algebraic Geometry +0810.0556 Exactly Solvable and Integrable Systems +0810.5315 Statistical Mechanics +0811.0217 Pattern Formation and Solitons +0811.0563 Phenomenology +0811.1652 +0811.1717 Differential Geometry +0811.4014 Mesoscale and Nanoscale Physics +0811.4031 Theory +0811.4161 Theory +0812.3229 Strongly Correlated Electrons +0812.3612 Methodology +0812.5096 Theory +0901.2556 Phenomenology +0901.2917 Statistical Mechanics +0901.3399 Plasma Physics +0901.3984 Databases +0902.0480 Phenomenology +0902.0640 Functional Analysis +0902.2938 Disordered Systems and Neural Networks +0902.2961 Statistical Mechanics +0902.4457 Earth and Planetary Astrophysics +0902.4476 Superconductivity +0903.1372 Chaotic Dynamics +0903.1408 Phenomenology +0903.1914 +0903.4730 Probability +0904.0744 Differential Geometry +0904.3216 Operator Algebras +0904.3769 Statistics Theory +0904.3858 +0904.4592 Molecular Networks +0904.4757 Astrophysics of Galaxies +0905.0139 History and Philosophy of Physics +0905.0374 Information Theory +0905.0470 Analysis of PDEs +0905.0471 Atmospheric and Oceanic Physics +0905.0475 Soft Condensed Matter +0905.0482 Disordered Systems and Neural Networks +0905.0484 Human-Computer Interaction +0905.0485 Accelerator Physics +0905.0489 Combinatorics +0905.0497 Astrophysics of Galaxies +0905.0501 Cosmology and Nongalactic Astrophysics +0905.0505 Statistical Mechanics +0905.0506 Differential Geometry +0905.0519 Solar and Stellar Astrophysics +0905.0528 Phenomenology +0905.0530 Analysis of PDEs +0905.0533 Materials Science +0905.0541 Information Theory +0905.0544 +0905.0546 Number Theory +0905.0549 Logic +0905.0550 Logic +0905.0551 Logic +0905.0552 Logic +0905.0556 Differential Geometry +0905.0558 Cell Behavior +0905.0559 Probability +0905.0561 Combinatorics +0905.0566 Mesoscale and Nanoscale Physics +0905.0568 Superconductivity +0905.0574 Logic +0905.0575 Logic +0905.0581 K-Theory and Homology +0905.0583 Operator Algebras +0905.0586 Mathematical Software +0905.0594 Symplectic Geometry +0905.0602 Computational Complexity +0905.0604 Functional Analysis +0905.0606 Information Theory +0905.0612 Chemical Physics +0905.0615 Dynamical Systems +0905.0617 Combinatorics +0905.0621 Rings and Algebras +0905.0646 Statistical Mechanics +0905.0649 +0905.0656 Functional Analysis +0905.0657 Optics +0905.0659 Instrumentation and Methods for Astrophysics +0905.0666 Fluid Dynamics +0905.0675 Solar and Stellar Astrophysics +0905.0676 Cosmology and Nongalactic Astrophysics +0905.0677 Neural and Evolutionary Computing +0905.0680 Operator Algebras +0905.0686 Representation Theory +0707.4267 Combinatorics +0709.1703 Probability +0709.3713 Probability +0710.0165 Experiment +0710.3895 Theory +0710.4987 Information Theory +0711.0304 +0711.1575 General Physics +0712.4032 Combinatorics +0801.2900 Algebraic Geometry +0801.3706 Metric Geometry +0801.4532 Analysis of PDEs +0802.1895 Functional Analysis +0802.3473 Combinatorics +0803.3218 Theory +0803.3424 Algebraic Geometry +0804.1220 Superconductivity +0804.3880 Classical Analysis and ODEs +0805.0749 Analysis of PDEs +0805.1193 Phenomenology +0805.3652 Statistical Mechanics +0806.1456 Superconductivity +0806.4814 Superconductivity +0807.0872 History and Overview +0807.2918 +0807.3040 Theory +0807.4106 Theory +0807.4644 Statistical Mechanics +0808.0531 +0808.3474 Theory +0808.3882 K-Theory and Homology +0809.0773 Subcellular Processes +0809.1202 Phenomenology +0809.1815 +0809.2013 Theory +0809.2854 Theory +0809.3128 Theory +0809.4707 Data Analysis, Statistics and Probability +0809.4941 Theory +0810.1143 Experiment +0810.1194 +0810.1270 +0810.1450 Experiment +0810.2096 Strongly Correlated Electrons +0810.3204 +0810.3532 Theory +0810.5121 Mesoscale and Nanoscale Physics +0811.1270 +0811.1272 +0811.1583 Theory +0811.1968 Theory +0811.2320 Theory +0811.2390 Superconductivity +0811.3766 +0812.0375 +0812.0677 Lattice +0812.1000 +0812.1088 Dynamical Systems +0812.1456 Statistical Mechanics +0812.1854 Phenomenology +0812.1863 Fluid Dynamics +0812.2133 Phenomenology +0812.2172 Theory +0812.2256 Mesoscale and Nanoscale Physics +0812.3712 Phenomenology +0812.4758 Fluid Dynamics +0901.0012 Theory +0901.0061 Materials Science +0901.0949 Theory +0901.1256 Theory +0901.1334 Phenomenology +0901.2179 Theory +0901.2311 Theory +0901.2559 Phenomenology +0901.2560 Phenomenology +0901.3094 Theory +0901.3426 Theory +0902.0971 Superconductivity +0902.1201 +0903.1487 Strongly Correlated Electrons +0903.2274 Analysis of PDEs +0903.4250 +0903.4709 Materials Science +0903.5275 Cosmology and Nongalactic Astrophysics +0903.5380 Materials Science +0903.5512 Commutative Algebra +0904.0003 +0904.0014 Geometric Topology +0904.0017 Geometric Topology +0904.0019 Logic in Computer Science +0904.0021 Numerical Analysis +0904.0022 Functional Analysis +0904.0029 Artificial Intelligence +0904.0033 +0904.0034 Logic in Computer Science +0904.0039 Algebraic Geometry +0904.0047 Group Theory +0904.0048 Fluid Dynamics +0904.0052 Robotics +0904.0058 Robotics +0904.0061 Dynamical Systems +0904.0072 Algebraic Geometry +0904.0073 General Topology +0904.0076 Statistics Theory +0904.0077 Group Theory +0904.0079 Combinatorics +0904.0080 Statistics Theory +0904.0081 Physics and Society +0904.0091 Statistics Theory +0904.0094 Differential Geometry +0904.0097 Mesoscale and Nanoscale Physics +0904.0098 Numerical Analysis +0904.0100 Plasma Physics +0904.0103 Operator Algebras +0904.0106 Statistics Theory +0904.0107 +0904.0108 Chemical Physics +0904.0112 Instrumentation and Methods for Astrophysics +0904.0113 Logic +0904.0117 Superconductivity +0904.0118 High Energy Astrophysical Phenomena +0904.0124 Other Condensed Matter +0904.0127 Atomic Physics +0904.0131 Earth and Planetary Astrophysics +0904.0133 Algebraic Geometry +0904.0134 Representation Theory +0904.0145 Robotics +0904.0146 Mesoscale and Nanoscale Physics +0904.0152 Cosmology and Nongalactic Astrophysics +0904.0153 Optics +0904.0156 Statistics Theory +0904.0159 Differential Geometry +0904.0160 Numerical Analysis +0904.0163 +0904.0170 +0904.0171 Functional Analysis +0904.0176 Materials Science +0904.0177 Differential Geometry +0904.0179 Functional Analysis +0904.0180 Representation Theory +0904.0182 Geometric Topology +0904.0185 Probability +0904.0190 Cosmology and Nongalactic Astrophysics +0904.0191 Geometric Topology +0904.0192 +0904.0194 +0904.0197 +0904.0199 +0904.0201 +0904.0205 +0904.0212 Statistical Mechanics +0904.0217 Networking and Internet Architecture +0904.0218 Classical Analysis and ODEs +0904.0228 Artificial Intelligence +0904.0235 Algebraic Geometry +0904.0237 Geometric Topology +0904.0242 Geometric Topology +hep-ex/0212009 Experiment +hep-ex/0308045 Experiment +hep-ex/0410092 Experiment +hep-ex/0411017 Experiment +hep-ex/0411029 Experiment +hep-ex/0411089 Experiment +hep-ex/0412002 Experiment +hep-ex/0412065 Experiment +hep-ex/0502021 Experiment +hep-ex/0605046 Experiment +hep-ph/0504035 Phenomenology +hep-ph/0505056 Phenomenology +hep-th/0508077 Theory +hep-th/0603209 Theory +math/0311328 Algebraic Topology +math/0511181 Algebraic Topology +math/0602507 Combinatorics +math/0604430 Combinatorics +math/0605069 Algebraic Topology +math/0607571 Representation Theory +physics/0409069 Computational Physics +physics/0606016 Physics and Society +0704.1420 Theory +0705.2238 +0705.2582 +0705.4021 Theory +0707.0454 Information Theory +0708.0268 Phenomenology +0708.3084 Strongly Correlated Electrons +0708.3768 +0709.0209 +0709.1351 Phenomenology +0712.1609 Multiagent Systems +0712.1756 Theory +0712.3638 Probability +0801.1190 +0802.1395 Theory +0802.2561 Atomic Physics +0802.3297 Disordered Systems and Neural Networks +0804.3278 +0804.4380 Theory +0804.4829 Complex Variables +0805.0004 +0805.0027 Data Analysis, Statistics and Probability +0805.0114 Theory +0805.0598 +0805.1197 Theory +0805.2721 +0805.4434 Algebraic Geometry +0806.3008 Optimization and Control +0806.3510 +0807.0824 +0807.0954 Phenomenology +0807.1714 Theory +0807.2779 +0807.4536 +0807.5075 +0808.1335 Theory +0808.1576 Soft Condensed Matter +0808.1971 +0808.2330 Theory +0808.3308 +0808.3435 Theory +0809.0883 +0809.2734 Theory +0809.3788 +0809.3867 +0809.4981 Complex Variables +0809.5158 Phenomenology +0810.2464 Lattice +0810.2502 Mesoscale and Nanoscale Physics +0810.3359 +0810.4189 Experiment +0810.5506 +0811.0041 +0811.0955 Statistical Mechanics +0811.1491 Phenomenology +0811.2371 Theory +0811.2871 Functional Analysis +0811.3357 +0811.4135 +0812.0175 Theory +0812.0812 +0812.1118 Chaotic Dynamics +0812.1635 +0812.1866 Theory +0812.1920 +0812.2158 Theory +0812.2267 +0812.3652 +0812.3825 +0812.4135 Probability +0812.4543 Experiment +0812.4856 +0812.4873 +0812.5074 Theory +0901.0007 Theory +0901.0431 Astrophysics of Galaxies +0901.0487 Algebraic Geometry +0901.0614 Theory +0901.0646 Experiment +0901.1150 Cosmology and Nongalactic Astrophysics +0901.1169 Theory +0901.1317 Cosmology and Nongalactic Astrophysics +0901.1509 Theory +0901.2137 Experiment +0901.2327 Cosmology and Nongalactic Astrophysics +0901.2458 Astrophysics of Galaxies +0901.2572 Cosmology and Nongalactic Astrophysics +0901.2736 Theory +0901.3462 Theory +0901.3934 Cosmology and Nongalactic Astrophysics +0901.4040 Theory +0901.4055 +0901.4187 Phenomenology +0901.4487 Strongly Correlated Electrons +0901.4554 Cosmology and Nongalactic Astrophysics +0901.4777 Phenomenology +0902.0023 Cosmology and Nongalactic Astrophysics +0902.1140 Phenomenology +0902.1859 +0902.1915 Phenomenology +0902.2112 High Energy Astrophysical Phenomena +0902.2252 +0902.2343 Cosmology and Nongalactic Astrophysics +0902.3425 +0902.3704 High Energy Astrophysical Phenomena +0902.3857 Theory +0902.3930 Theory +0902.3941 Other Condensed Matter +0902.4082 Phenomenology +0902.4318 +0902.4429 +0902.4738 Cosmology and Nongalactic Astrophysics +0903.0040 Theory +0903.0621 Solar and Stellar Astrophysics +0903.1303 Theory +0903.1342 +0903.1346 +0903.1813 Phenomenology +0903.2087 +0903.2268 Mesoscale and Nanoscale Physics +0903.2290 +0903.2842 High Energy Astrophysical Phenomena +0903.3018 +0903.3169 High Energy Astrophysical Phenomena +0903.3431 Theory +0903.4422 Theory +0903.4677 Phenomenology +0903.4861 Cosmology and Nongalactic Astrophysics +0903.5062 Theory +0903.5095 Cosmology and Nongalactic Astrophysics +0903.5160 +0903.5284 Theory +0903.5326 Phenomenology +0903.5464 Phenomenology +0904.0012 Theory +0904.0024 Cosmology and Nongalactic Astrophysics +0904.0251 Cosmology and Nongalactic Astrophysics +0904.0414 +0904.0420 Phenomenology +0904.0448 Cosmology and Nongalactic Astrophysics +0904.0459 Theory +0904.0464 Theory +0904.0497 Cosmology and Nongalactic Astrophysics +0904.0588 Theory +0904.0601 Theory +0904.1203 Cosmology and Nongalactic Astrophysics +0904.1204 Cosmology and Nongalactic Astrophysics +0904.1334 Theory +0904.1563 Superconductivity +0904.1640 Phenomenology +0904.1960 +0904.2004 Solar and Stellar Astrophysics +0904.2201 Phenomenology +0904.2534 Phenomenology +0904.2879 Theory +0904.2919 Theory +0904.3017 Mesoscale and Nanoscale Physics +0904.3112 Phenomenology +0904.3218 Phenomenology +0904.3665 Theory +0904.3905 Theory +0904.3970 Cosmology and Nongalactic Astrophysics +0904.4124 Phenomenology +0904.4253 Theory +0904.4500 High Energy Astrophysical Phenomena +0904.4574 Phenomenology +0904.4590 Phenomenology +0904.4605 Theory +0904.4644 Phenomenology +0904.4674 Theory +0905.0027 High Energy Astrophysical Phenomena +0905.0211 Statistical Mechanics +0905.0457 Solar and Stellar Astrophysics +0905.0490 Phenomenology +0905.0629 Superconductivity +0905.0636 High Energy Astrophysical Phenomena +0905.0689 Strongly Correlated Electrons +0905.0751 Theory +0905.0781 Risk Management +0905.0842 Phenomenology +0905.0956 Phenomenology +0905.1028 High Energy Astrophysical Phenomena +0905.1030 Theory +0905.1120 Earth and Planetary Astrophysics +0905.1243 +0905.1263 +0905.1333 Phenomenology +0905.1395 Solar and Stellar Astrophysics +0905.1435 Soft Condensed Matter +0905.1468 Theory +0905.1523 Theory +0905.1593 Astrophysics of Galaxies +0905.1748 Theory +0905.1914 Solar and Stellar Astrophysics +0905.2273 Theory +0905.2365 Earth and Planetary Astrophysics +0905.2453 Instrumentation and Methods for Astrophysics +0905.2483 Phenomenology +0905.2534 Theory +0905.2579 Theory +0905.2696 Phenomenology +0905.2804 Solar and Stellar Astrophysics +0905.2889 Phenomenology +0905.3053 +0905.3190 High Energy Astrophysical Phenomena +0905.3292 +0905.3411 Instrumentation and Detectors +0905.3462 Solar and Stellar Astrophysics +0905.3512 Cosmology and Nongalactic Astrophysics +0905.3529 Phenomenology +0905.3586 Lattice +0905.3639 Mesoscale and Nanoscale Physics +0905.3981 Solar and Stellar Astrophysics +0905.4328 Phenomenology +0905.4377 Theory +0905.4390 Phenomenology +0905.4500 Cosmology and Nongalactic Astrophysics +0905.4585 +0905.4651 Theory +0905.4702 Theory +0905.4716 Theory +0905.4951 Theory +0905.4952 Astrophysics of Galaxies +0906.0013 Theory +0906.0020 Astrophysics of Galaxies +0906.0132 High Energy Astrophysical Phenomena +0906.0134 +0906.0142 +0906.0149 High Energy Astrophysical Phenomena +0906.0217 Cosmology and Nongalactic Astrophysics +0906.0264 Theory +0906.0359 Theory +0906.0366 High Energy Astrophysical Phenomena +0906.0372 Phenomenology +0906.0521 Theory +0906.0576 Cosmology and Nongalactic Astrophysics +0906.0583 Phenomenology +0906.0753 Chaotic Dynamics +0906.0954 Phenomenology +0906.1098 +0906.1204 Earth and Planetary Astrophysics +0906.1243 Theory +0906.1323 High Energy Astrophysical Phenomena +0906.1349 Cosmology and Nongalactic Astrophysics +0906.1394 High Energy Astrophysical Phenomena +0906.1543 +0906.1656 Phenomenology +0906.1747 Superconductivity +0906.1757 Phenomenology +0906.2144 Instrumentation and Methods for Astrophysics +0906.2267 Theory +0906.2376 Theory +0906.2380 Theory +0906.2417 Phenomenology +0906.2449 Solar and Stellar Astrophysics +0906.2533 Phenomenology +0906.2595 Phenomenology +0906.2847 Theory +0906.2978 Theory +0906.3009 Phenomenology +0906.3013 Theory +0906.3015 Lattice +0906.3023 Neurons and Cognition +0906.3052 Phenomenology +0906.3288 Cosmology and Nongalactic Astrophysics +0906.3297 Theory +0906.3371 Theory +0906.3503 Theory +0906.3547 +0906.3640 Phenomenology +0906.3726 Phenomenology +0906.3800 Theory +0906.4043 Theory +0906.4133 +0906.4160 Theory +0906.4257 Theory +0906.4263 +0906.4276 +0906.4310 Mesoscale and Nanoscale Physics +0906.4333 Theory +0906.4343 Solar and Stellar Astrophysics +0906.4450 Phenomenology +0906.4512 Theory +0906.4572 Theory +0906.4667 Phenomenology +0906.4746 Theory +0906.5069 Theory +0906.5156 Theory +0906.5287 +0906.5368 Cosmology and Nongalactic Astrophysics +0906.5433 Lattice +0906.5471 Phenomenology +0906.5477 Theory +0906.5586 Phenomenology +0907.0097 Phenomenology +0907.0101 High Energy Astrophysical Phenomena +0907.0133 Cosmology and Nongalactic Astrophysics +0907.0205 Phenomenology +0907.0703 Cosmology and Nongalactic Astrophysics +0907.0710 Solar and Stellar Astrophysics +0907.0723 Soft Condensed Matter +0907.1011 Solar and Stellar Astrophysics +0907.1030 Cosmology and Nongalactic Astrophysics +0907.1083 High Energy Astrophysical Phenomena +0907.1089 Solar and Stellar Astrophysics +0907.1133 Theory +0907.1268 Earth and Planetary Astrophysics +0907.1412 Phenomenology +0907.1451 Phenomenology +0907.1489 Cosmology and Nongalactic Astrophysics +0907.1651 Theory +0907.1655 High Energy Astrophysical Phenomena +0907.1672 High Energy Astrophysical Phenomena +0907.1709 Cosmology and Nongalactic Astrophysics +0907.1804 Theory +0907.1846 Theory +0907.1898 Solar and Stellar Astrophysics +0907.1935 Astrophysics of Galaxies +0907.2118 Solar and Stellar Astrophysics +0907.2153 Solar and Stellar Astrophysics +0907.2290 Cosmology and Nongalactic Astrophysics +0907.2332 Phenomenology +0907.2522 Theory +0907.2957 +0907.2997 Phenomenology +0907.2998 Phenomenology +0907.3014 Phenomenology +0907.3285 Phenomenology +0907.3467 Statistical Mechanics +0908.2437 Theory +0908.2575 Atomic Physics +0908.4508 Molecular Networks +0909.0597 Superconductivity +0909.1232 +0909.3325 Rings and Algebras +0909.3508 Information Theory +0909.3808 Number Theory +0909.3972 Number Theory +0909.4141 Phenomenology +0909.4541 Phenomenology +0909.4558 Number Theory +0909.4561 Classical Analysis and ODEs +0909.4563 General Topology +0909.4564 Analysis of PDEs +0909.4573 Information Theory +0909.4574 Phenomenology +0909.4581 Differential Geometry +0909.4589 Information Theory +0909.4590 Instrumentation and Methods for Astrophysics +0909.4591 Differential Geometry +0909.4594 Mesoscale and Nanoscale Physics +0909.4603 Learning +0909.4605 Algebraic Geometry +0909.4607 Computational Complexity +0909.4612 Materials Science +0909.4616 Optics +0909.4619 Materials Science +0909.4622 Materials Science +0909.4623 +0909.4626 Accelerator Physics +0909.4634 Mesoscale and Nanoscale Physics +0909.4637 Logic in Computer Science +0909.4639 Group Theory +0909.4649 +0909.4651 High Energy Astrophysical Phenomena +0909.4665 Phenomenology +0909.4669 Probability +0909.4671 Analysis of PDEs +0909.4679 Cosmology and Nongalactic Astrophysics +0909.4686 Computer Science and Game Theory +0909.4691 Atomic and Molecular Clusters +0909.4692 Data Structures and Algorithms +0909.4696 Analysis of PDEs +0909.4698 Phenomenology +0909.4705 Solar and Stellar Astrophysics +0909.4707 Quantum Algebra +0909.4708 +0909.4709 Quantum Algebra +0909.4719 Discrete Mathematics +0909.4721 Phenomenology +0909.4722 Category Theory +0909.4726 Rings and Algebras +0909.4728 Differential Geometry +0909.4730 Portfolio Management +0909.4740 Cosmology and Nongalactic Astrophysics +0909.4747 +0909.4752 Pattern Formation and Solitons +0909.4755 Statistical Mechanics +0909.4757 Chemical Physics +0909.4760 Group Theory +0909.4768 Analysis of PDEs +0909.4770 Dynamical Systems +0909.4774 Group Theory +astro-ph/0001237 +astro-ph/0001527 +astro-ph/0004078 +astro-ph/0005215 +astro-ph/0006185 +astro-ph/0105486 +astro-ph/0107441 +astro-ph/0108169 +astro-ph/0109023 +astro-ph/0204024 +astro-ph/0207607 +astro-ph/0210568 +astro-ph/0309186 +astro-ph/0403103 +astro-ph/0403501 +astro-ph/0411327 +astro-ph/0502378 +astro-ph/0503189 +astro-ph/0512391 +astro-ph/0611921 +astro-ph/0612011 +astro-ph/9609136 +astro-ph/9610066 +astro-ph/9704027 +astro-ph/9707173 +astro-ph/9708253 +astro-ph/9805327 +astro-ph/9808105 +astro-ph/9809239 +astro-ph/9810022 +astro-ph/9902180 +astro-ph/9908114 +gr-qc/0603126 +hep-ex/0010027 Experiment +hep-ph/0007354 Phenomenology +hep-ph/9512398 Phenomenology +hep-th/0201042 Theory +math/0103193 Category Theory +math/0603185 Number Theory +math/0702857 Functional Analysis +0707.0126 Mesoscale and Nanoscale Physics +0711.4600 Theory +0801.1820 Mesoscale and Nanoscale Physics +0803.0367 Populations and Evolution +0806.0831 +0806.4540 Geometric Topology +0808.0073 Phenomenology +0808.0756 +0808.1975 Theory +0809.5098 +0809.5137 Theory +0809.5143 Theory +0809.5180 Theory +0809.5208 Theory +0809.5211 Phenomenology +0809.5218 Theory +0810.0742 +0810.1129 Lattice +0810.1633 Theory +0810.2004 Analysis of PDEs +0810.2810 Commutative Algebra +0810.4761 Representation Theory +0810.5179 Number Theory +0811.0286 General Physics +0811.2847 Numerical Analysis +0811.4153 Phenomenology +0812.0815 Strongly Correlated Electrons +0812.4298 Plasma Physics +0901.2988 Combinatorics +0901.3238 Mesoscale and Nanoscale Physics +0901.4079 Theory +0903.0314 Artificial Intelligence +0903.0372 +0903.3488 Biological Physics +0903.3555 +0903.5427 Statistical Mechanics +0904.3977 Combinatorics +0905.1472 Theory +0905.3425 Phenomenology +0905.3747 Phenomenology +0905.3752 High Energy Astrophysical Phenomena +0905.3754 Logic +0905.3755 Artificial Intelligence +0905.3757 Artificial Intelligence +0905.3760 Differential Geometry +0905.3761 Combinatorics +0905.3763 Artificial Intelligence +0905.3764 Combinatorics +0905.3766 Artificial Intelligence +0905.3769 Artificial Intelligence +0905.3771 Neural and Evolutionary Computing +0905.3789 Biological Physics +0905.3792 Biological Physics +0905.3794 General Physics +0905.3795 Statistical Mechanics +0905.3799 Spectral Theory +0905.3802 Logic in Computer Science +0905.3806 Combinatorics +0905.3810 +0905.3813 Disordered Systems and Neural Networks +0905.3816 Combinatorics +0905.3817 Earth and Planetary Astrophysics +0905.3823 Cosmology and Nongalactic Astrophysics +0905.3826 +0905.3827 Rings and Algebras +0905.3833 +0905.3840 Differential Geometry +0905.3841 Differential Geometry +0905.3843 +0905.3846 Group Theory +0905.3851 Soft Condensed Matter +0905.3852 Soft Condensed Matter +0905.3853 Soft Condensed Matter +0905.3855 Soft Condensed Matter +0905.3858 Information Theory +0905.3861 +0905.3868 Differential Geometry +0905.3869 Differential Geometry +0905.3871 General Finance +0905.3873 General Finance +0905.3889 Functional Analysis +0905.3891 Portfolio Management +0905.3896 General Physics +0905.3902 Dynamical Systems +0905.3910 Solar and Stellar Astrophysics +0905.3911 Medical Physics +0905.3912 +0905.3944 Combinatorics +0905.3946 Distributed, Parallel, and Cluster Computing +0905.3948 Geometric Topology +0905.3958 Phenomenology +0905.3966 General Physics +0905.3967 Distributed, Parallel, and Cluster Computing +0905.3976 Plasma Physics +0905.3979 Phenomenology +0905.3991 Differential Geometry +0905.3998 Logic in Computer Science +0905.4008 +0905.4009 Statistical Mechanics +0905.4010 Algebraic Geometry +0905.4017 Materials Science +0905.4021 Networking and Internet Architecture +0905.4022 Learning +0905.4025 Materials Science +0905.4028 General Physics +0905.4033 Classical Analysis and ODEs +0905.4035 Analysis of PDEs +0905.4036 +0905.4039 Computation and Language +0905.4042 Quantitative Methods +0905.4045 General Physics +0905.4050 +0905.4056 Functional Analysis +0905.4062 Logic in Computer Science +0905.4063 Logic in Computer Science +0905.4066 Logic in Computer Science +cond-mat/0608534 Materials Science +math/0508152 Algebraic Topology +math/0508434 Geometric Topology +math/0702116 Numerical Analysis +physics/0607008 Atomic Physics +quant-ph/0702001 +0704.1391 Soft Condensed Matter +0704.2278 Statistics Theory +0706.0666 Algebraic Geometry +0709.0170 Computational Geometry +0710.1560 Number Theory +0711.3896 Disordered Systems and Neural Networks +0712.0743 Theory +0712.2355 Phenomenology +0712.3241 Superconductivity +0801.1206 Theory +0801.3687 Theory +0802.0213 Methodology +0802.2426 Methodology +0802.3575 +0802.3983 +0803.1806 Materials Science +0804.0487 Statistical Mechanics +0804.1753 Phenomenology +0804.3005 +0804.3898 +0804.4431 Combinatorics +0805.1237 +0805.2226 Theory +0805.3831 Methodology +0805.4452 Theory +0805.4504 Phenomenology +0805.4683 Theory +0806.1930 Theory +0806.2180 +0806.2755 +0806.2778 Materials Science +0806.3124 Lattice +0806.3337 Instrumentation and Detectors +0806.3493 Statistical Mechanics +0806.4600 Phenomenology +0807.0133 Theory +0807.1615 Geometric Topology +0807.3113 Methodology +0807.3309 +0807.4371 Operator Algebras +0808.0025 +0808.0571 Combinatorics +0808.2054 Theory +0808.2155 Theory +0808.2918 Theory +0808.3047 Lattice +0809.2590 +0809.3820 Phenomenology +0809.4347 Optics +0809.4370 Optics +0809.4553 Statistical Mechanics +0809.5034 Theory +0810.0072 +0810.0214 Lattice +0810.1236 Mesoscale and Nanoscale Physics +0810.1597 Phenomenology +0810.2581 Quantum Algebra +0810.2962 Strongly Correlated Electrons +0810.3329 Theory +0810.3786 Statistical Mechanics +0810.4088 General Physics +0810.4140 Strongly Correlated Electrons +0810.4265 General Physics +0810.5133 Phenomenology +0810.5606 +0810.5756 Phenomenology +0810.5768 Theory +0811.0534 Soft Condensed Matter +0811.0538 Theory +0811.0559 Superconductivity +0811.0815 +0811.1203 Lattice +0811.1287 +0811.1310 Combinatorics +0811.1312 Combinatorics +0811.1634 +0811.1752 Phenomenology +0811.1852 Instrumentation and Detectors +0811.4097 +0811.4541 General Physics +0812.1197 Algebraic Geometry +0812.2713 Data Analysis, Statistics and Probability +0901.0310 Materials Science +0901.0912 Functional Analysis +0901.3635 +0901.3638 +0901.3759 Statistical Mechanics +0901.3787 Functional Analysis +0901.3793 Adaptation and Self-Organizing Systems +0901.3806 Applications +0901.3817 Classical Physics +0901.3825 Commutative Algebra +0901.3828 Logic in Computer Science +0901.3832 Number Theory +0901.3840 +0901.3841 Dynamical Systems +0901.3842 Classical Physics +0901.3843 Symbolic Computation +0901.3849 Differential Geometry +0901.3856 Representation Theory +0901.3859 Probability +0901.3861 +0901.3864 +0901.3872 Materials Science +0901.3873 Optimization and Control +0901.3877 Applications +0901.3878 Accelerator Physics +0901.3881 +0901.3882 Discrete Mathematics +0901.3883 Plasma Physics +0901.3887 Analysis of PDEs +0901.3889 Algebraic Geometry +0901.3893 Theory +0901.3898 General Physics +0901.3899 Commutative Algebra +0901.3901 +0901.3902 Sound +0901.3905 Theory +0901.3906 Programming Languages +0901.3908 Representation Theory +0901.3910 Subcellular Processes +0901.3912 Combinatorics +0901.3914 Neurons and Cognition +0901.3920 +0901.3923 Networking and Internet Architecture +0901.3924 Computational Geometry +0901.3925 Complex Variables +0901.3939 Digital Libraries +0901.3940 +0901.3941 Geometric Topology +0901.3946 +0901.3948 Information Theory +0901.3950 Information Theory +0901.3953 Phenomenology +0901.3955 Statistical Mechanics +0901.3961 +0901.3963 Statistical Mechanics +0901.3964 +0901.3968 +0901.3970 +0901.3971 +0901.3975 Quantum Algebra +0901.3978 Analysis of PDEs +0901.3980 Applications +0901.3981 Mesoscale and Nanoscale Physics +0901.3982 Analysis of PDEs +0901.3985 Numerical Analysis +0901.3986 Analysis of PDEs +0901.3988 Applications +0901.3989 Analysis of PDEs +0901.3990 Computation and Language +0901.3994 Soft Condensed Matter +0901.3995 Analysis of PDEs +0901.3996 +0901.3999 Applications +0901.4002 Data Structures and Algorithms +0901.4004 Artificial Intelligence +0901.4007 Applications +0901.4011 Applications +0901.4020 Data Analysis, Statistics and Probability +0901.4023 Computational Complexity +0901.4024 Analysis of PDEs +0901.4036 Instrumentation and Methods for Astrophysics +0901.4041 Analysis of PDEs +0901.4047 History and Overview +0901.4054 History and Overview +0901.4060 Number Theory +0901.4077 Soft Condensed Matter +0901.4080 Logic in Computer Science +0901.4081 Hardware Architecture +0901.4082 Spectral Theory +0901.4084 Classical Analysis and ODEs +0901.4090 Phenomenology +cond-mat/0607030 Disordered Systems and Neural Networks +cond-mat/0703488 Soft Condensed Matter +hep-lat/0110221 Lattice +hep-th/0201222 Theory +hep-th/0212006 Theory +hep-th/0408204 Theory +hep-th/0610035 Theory +math-ph/0612052 +math/0508190 Probability +math/0603495 Statistics Theory +math/0609609 Commutative Algebra +math/0703338 Representation Theory +nlin/0303009 Exactly Solvable and Integrable Systems +quant-ph/0408063 +0709.3884 Statistical Finance +0801.3369 Dynamical Systems +0802.2788 Superconductivity +0803.2364 Operator Algebras +0803.3737 Number Theory +0806.1132 Dynamical Systems +0806.2107 Algebraic Geometry +0807.2009 Superconductivity +0809.2995 Disordered Systems and Neural Networks +0810.1924 Algebraic Geometry +0810.4814 +0811.3165 Computational Complexity +0811.3729 +0901.3749 Statistics Theory +0901.3904 Differential Geometry +math/0608526 Differential Geometry +math/0609422 Algebraic Geometry +math/0610009 Algebraic Topology +math/0701683 Algebraic Geometry +0705.3149 +0705.4045 Information Theory +0706.1883 Strongly Correlated Electrons +0706.2981 Differential Geometry +0706.3841 Differential Geometry +0708.2162 Geometric Topology +0709.2918 Superconductivity +0710.3756 Theory +0801.4235 Phenomenology +0801.4548 Metric Geometry +0802.0963 Number Theory +0802.4028 Phenomenology +0802.4030 +0803.3361 Representation Theory +0803.3887 Phenomenology +0803.4188 Theory +0804.3606 +0804.3992 Phenomenology +0804.4109 Differential Geometry +0804.4114 Theory +0805.2070 +0805.3143 Superconductivity +0806.0715 Atmospheric and Oceanic Physics +0806.2553 Theory +0806.2626 Theory +0806.2786 Mesoscale and Nanoscale Physics +0806.4107 Statistical Mechanics +0807.0567 Theory +0807.2496 Computer Science and Game Theory +0807.2745 Theory +0807.3513 Disordered Systems and Neural Networks +0807.3748 +0807.4863 Theory +0808.2235 Statistical Mechanics +0808.2364 Strongly Correlated Electrons +0808.2898 Strongly Correlated Electrons +0809.0086 Algebraic Geometry +0809.0985 Theory +0809.2245 Theory +0809.4885 Theory +0810.1043 +0810.5545 Mesoscale and Nanoscale Physics +0811.3612 +0812.1031 Superconductivity +0812.2064 Operator Algebras +0812.3563 Digital Libraries +0812.3788 Databases +0812.3892 Strongly Correlated Electrons +0901.0536 Information Theory +0901.1813 Phenomenology +0901.2769 Phenomenology +0901.3127 +0901.3303 Atomic Physics +0901.3556 Populations and Evolution +0901.3569 Materials Science +0901.3571 Materials Science +0901.3580 Information Theory +0901.3585 Logic in Computer Science +0901.3596 Information Theory +0901.3599 Combinatorics +0901.3607 Dynamical Systems +0901.3608 Artificial Intelligence +0901.3611 Networking and Internet Architecture +0901.3615 Computer Science and Game Theory +0901.3616 General Physics +0901.3617 +0901.3618 Adaptation and Self-Organizing Systems +0901.3620 Software Engineering +0901.3623 Functional Analysis +0901.3624 Materials Science +0901.3628 Materials Science +0901.3630 Information Theory +0901.3632 Solar and Stellar Astrophysics +0901.3633 Algebraic Geometry +0901.3636 Materials Science +0901.3639 Symplectic Geometry +0901.3640 +0901.3641 Number Theory +0901.3643 Phenomenology +0901.3644 Statistical Mechanics +0901.3645 Materials Science +0901.3646 Operator Algebras +0901.3657 Symbolic Computation +0901.3661 General Topology +0901.3663 Materials Science +0901.3665 Applications +0901.3670 Applications +0901.3671 Representation Theory +0901.3678 +0901.3681 Algebraic Geometry +0901.3686 Theory +0901.3689 Number Theory +0901.3694 Strongly Correlated Electrons +0901.3699 Discrete Mathematics +0901.3701 Analysis of PDEs +0901.3708 Data Analysis, Statistics and Probability +0901.3709 Classical Physics +0901.3710 Classical Physics +0901.3713 Number Theory +0901.3714 Number Theory +0901.3715 Classical Physics +0901.3716 Classical Physics +0901.3717 Classical Physics +0901.3718 Classical Physics +0901.3725 Atmospheric and Oceanic Physics +0901.3726 Classical Physics +0901.3728 Materials Science +0901.3729 Instrumentation and Methods for Astrophysics +0901.3735 Number Theory +0901.3747 Plasma Physics +0901.3754 Computer Science and Game Theory +0901.3757 Materials Science +0901.3765 +0901.3769 Artificial Intelligence +0901.3771 +0901.3772 Adaptation and Self-Organizing Systems +cond-mat/0306159 Strongly Correlated Electrons +cond-mat/0502030 Strongly Correlated Electrons +cond-mat/0603628 Strongly Correlated Electrons +hep-ph/0511019 Phenomenology +math/0212324 Algebraic Geometry +math/0505225 Group Theory +math/0509448 Algebraic Geometry +math/0603743 Group Theory +math/0606268 Representation Theory +math/0606508 Geometric Topology +math/0606742 Complex Variables +math/0703781 Probability +0705.3590 Combinatorics +0709.2813 Information Theory +0711.3416 +0711.3829 Phenomenology +0711.4536 Atomic Physics +0806.4725 +0811.0389 Medical Physics +0901.2750 +0903.0153 Information Retrieval +0903.1725 +0903.2611 +0903.5107 Mesoscale and Nanoscale Physics +0904.0239 Geometric Topology +0906.5258 Atomic Physics +0907.0586 +0907.0599 Strongly Correlated Electrons +0907.0790 Algebraic Geometry +0907.1324 Phenomenology +0907.1833 Materials Science +0907.2823 Mesoscale and Nanoscale Physics +math/0411587 History and Overview +math/0512210 Group Theory +math/0610480 Complex Variables +math/0611466 Combinatorics +math/0702770 Combinatorics +0705.2253 Probability +0708.4000 Theory +0711.3261 Statistical Mechanics +0802.4076 Classical Analysis and ODEs +0803.1496 Spectral Theory +0803.3360 Probability +0804.2885 Probability +0806.2906 Fluid Dynamics +0807.0706 Commutative Algebra +0807.3175 Combinatorics +0807.4289 Phenomenology +0808.2098 +0809.0377 Fluid Dynamics +0809.0745 Information Theory +0810.2378 Statistical Mechanics +0810.5229 Soft Condensed Matter +0811.1067 Machine Learning +0812.1025 +0812.1113 Soft Condensed Matter +0812.1873 Algebraic Geometry +0812.2752 Metric Geometry +0901.1037 Statistical Mechanics +0901.2675 Applications +0901.2933 Phenomenology +0901.3470 High Energy Astrophysical Phenomena +0902.0682 General Physics +0902.2026 Probability +0903.0933 Statistical Mechanics +0903.1663 Earth and Planetary Astrophysics +0903.1684 Networking and Internet Architecture +0903.2593 General Topology +0903.4824 Other Condensed Matter +0904.0620 +0904.0828 Information Theory +0904.1740 Cosmology and Nongalactic Astrophysics +0904.1783 Computational Geometry +0904.3503 Data Structures and Algorithms +0905.0601 +0905.2712 Superconductivity +0905.3559 Superconductivity +0906.0024 Cosmology and Nongalactic Astrophysics +0906.0055 High Energy Astrophysical Phenomena +0906.0214 Solar and Stellar Astrophysics +0906.0312 High Energy Astrophysical Phenomena +0906.2639 Superconductivity +0906.4759 Astrophysics of Galaxies +0906.5364 High Energy Astrophysical Phenomena +0907.0508 Strongly Correlated Electrons +0907.1249 Astrophysics of Galaxies +0907.1349 Phenomenology +0907.1874 Solar and Stellar Astrophysics +0907.3165 +0907.3325 Fluid Dynamics +0907.4351 +0907.5594 Group Theory +0908.0063 Materials Science +0908.0729 Functional Analysis +0908.0923 Analysis of PDEs +0908.0956 Materials Science +0908.0957 +0908.0971 Commutative Algebra +0908.0979 Cryptography and Security +0908.0980 Networking and Internet Architecture +0908.0981 Cryptography and Security +0908.0982 Computers and Society +0908.0984 Databases +0908.0986 Networking and Internet Architecture +0908.0993 Information Theory +0908.0994 Cryptography and Security +0908.0995 Geometric Topology +0908.0999 Probability +0908.1002 Superconductivity +0908.1004 Information Theory +0908.1010 High Energy Astrophysical Phenomena +0908.1012 Statistical Mechanics +0908.1014 Portfolio Management +0908.1021 Probability +0908.1027 +0908.1029 Solar and Stellar Astrophysics +0908.1033 Networking and Internet Architecture +0908.1036 +0908.1037 Other Quantitative Biology +0908.1044 Quantum Algebra +0908.1045 Probability +0908.1046 Quantum Algebra +0908.1056 Networking and Internet Architecture +0908.1057 Performance +0908.1058 Probability +0908.1059 Computers and Society +0908.1060 Analysis of PDEs +0908.1061 Phenomenology +0908.1067 Geometric Topology +0908.1072 Probability +0908.1074 Probability +0908.1075 Materials Science +0908.1076 Multiagent Systems +0908.1081 Statistical Mechanics +0908.1083 Probability +0908.1090 Networking and Internet Architecture +0908.1091 Representation Theory +0908.1093 Spectral Theory +0908.1097 Classical Analysis and ODEs +0908.1102 Dynamical Systems +cs/0609054 Information Theory +hep-th/0610021 Theory +math/0505629 History and Overview +math/0607475 Algebraic Geometry +physics/0508219 Fluid Dynamics +0706.0196 Biological Physics +0706.2967 Mesoscale and Nanoscale Physics +0708.0573 Theory +0709.1162 +0711.3048 +0801.2296 Phenomenology +0801.3973 General Finance +0802.0624 +0802.0998 +0802.1294 Theory +0802.4245 +0802.4253 +0803.1648 Logic +0803.3706 Combinatorics +0805.2632 +0805.3642 +0806.0267 Quantum Algebra +0807.3002 Populations and Evolution +0808.1060 Functional Analysis +0808.1421 +0809.0007 Phenomenology +0809.3040 Biological Physics +0809.3455 +0810.0527 Theory +0810.2613 Combinatorics +0810.3087 Theory +0810.4939 +0811.0068 Theory +0811.2107 Logic +0811.3166 +0811.3610 +0811.3690 +0811.3901 Statistical Mechanics +0812.0353 Phenomenology +0812.0542 Strongly Correlated Electrons +0812.0545 +0812.3411 +0812.3658 +0812.3893 Computational Geometry +0812.4432 Theory +0901.0037 Exactly Solvable and Integrable Systems +0901.1058 Classical Physics +0901.1592 Theory +0901.2713 Cosmology and Nongalactic Astrophysics +0901.2937 Theory +0901.3147 Theory +0901.3237 Theory +0901.4338 Solar and Stellar Astrophysics +0901.4739 Earth and Planetary Astrophysics +0902.1756 High Energy Astrophysical Phenomena +0902.1774 Solar and Stellar Astrophysics +0902.1908 High Energy Astrophysical Phenomena +0902.2419 High Energy Astrophysical Phenomena +0902.3299 Theory +0902.4706 Phenomenology +0903.1037 Phenomenology +0903.1207 Mesoscale and Nanoscale Physics +0903.1420 Cosmology and Nongalactic Astrophysics +0903.1523 Phenomenology +0903.1598 Programming Languages +0903.1758 +0903.1776 Phenomenology +0903.2557 High Energy Astrophysical Phenomena +0903.2591 Disordered Systems and Neural Networks +0903.2619 Phenomenology +0903.2980 Phenomenology +0903.4088 Cosmology and Nongalactic Astrophysics +0903.4198 Experiment +0903.4337 +0903.4962 Phenomenology +0904.0378 Phenomenology +0904.0631 Molecular Networks +0904.0726 Phenomenology +0904.0829 Theory +0904.0922 Representation Theory +0904.1328 +0904.1482 Phenomenology +0904.1504 Phenomenology +0904.1670 Phenomenology +0904.2217 Phenomenology +0904.2430 +0904.2555 Phenomenology +0904.3003 Phenomenology +0904.3142 Functional Analysis +0904.3471 Theory +0904.3737 Solar and Stellar Astrophysics +0904.3744 Theory +0904.4005 Number Theory +0904.4112 Theory +0904.4145 Complex Variables +0904.4180 Statistical Mechanics +0904.4367 +0904.4664 Theory +0904.4883 Theory +0904.4915 Theory +0904.4929 Theory +0905.0078 Strongly Correlated Electrons +0905.1399 Phenomenology +0905.1403 Phenomenology +0905.1574 Phenomenology +0905.1703 Optics +0905.2006 High Energy Astrophysical Phenomena +0905.2034 Experiment +0905.2492 Phenomenology +0905.3113 Statistical Mechanics +0905.3455 Phenomenology +0905.3560 Cosmology and Nongalactic Astrophysics +0905.4088 Phenomenology +0905.4417 Lattice +0905.4480 Theory +0905.4488 Instrumentation and Methods for Astrophysics +0905.4834 Phenomenology +0906.0057 +0906.0124 Cosmology and Nongalactic Astrophysics +0906.0401 Theory +0906.0596 Theory +0906.0694 Experiment +0906.1177 Theory +0906.1551 +0906.1852 Phenomenology +0906.1920 Theory +0906.1925 Phenomenology +0906.2211 Solar and Stellar Astrophysics +0906.2226 Astrophysics of Galaxies +0906.2430 Theory +0906.2561 Theory +0906.2622 +0906.2689 Phenomenology +0906.2772 Solar and Stellar Astrophysics +0906.2800 Mesoscale and Nanoscale Physics +0906.2995 Formal Languages and Automata Theory +0906.3180 High Energy Astrophysical Phenomena +0906.3495 Theory +0906.3648 Astrophysics of Galaxies +0906.3693 Theory +0906.3743 Theory +0906.3818 +0906.3865 Strongly Correlated Electrons +0906.4017 Cosmology and Nongalactic Astrophysics +0906.4060 Solar and Stellar Astrophysics +0906.4317 Solar and Stellar Astrophysics +0906.4393 Theory +0906.4839 Cosmology and Nongalactic Astrophysics +0906.5079 Cosmology and Nongalactic Astrophysics +0906.5354 Cosmology and Nongalactic Astrophysics +0906.5507 Astrophysics of Galaxies +0906.5566 +0907.1024 Optimization and Control +0907.1139 Solar and Stellar Astrophysics +0907.1311 +0907.1417 Solar and Stellar Astrophysics +0907.1594 High Energy Astrophysical Phenomena +0907.1625 Theory +0907.1766 Solar and Stellar Astrophysics +0907.1892 Theory +0907.2070 Phenomenology +0907.2120 Phenomenology +0907.2441 Theory +0907.2593 Theory +0907.2736 Other Condensed Matter +0907.2977 Theory +0907.3397 Rings and Algebras +0907.3603 Lattice +0907.3640 Theory +0907.3706 Instrumentation and Detectors +0907.3816 +0907.3832 Theory +0907.4049 Phenomenology +0908.0563 Populations and Evolution +0908.0974 Solar and Stellar Astrophysics +0908.1235 Instrumentation and Methods for Astrophysics +0908.4002 Superconductivity +0909.0424 Statistical Mechanics +0909.0952 +0909.2496 Information Retrieval +0909.4571 Phenomenology +0909.5219 Phenomenology +0909.5417 Other Computer Science +0910.0006 Solar and Stellar Astrophysics +0910.0013 Data Structures and Algorithms +0910.0038 +0910.0040 Combinatorics +0910.0047 Differential Geometry +0910.0049 Number Theory +0910.0054 Atmospheric and Oceanic Physics +0910.0057 Spectral Theory +0910.0065 Number Theory +0910.0067 Probability +0910.0068 Phenomenology +0910.0070 Number Theory +0910.0086 +0910.0089 Dynamical Systems +0910.0092 +0910.0093 Classical Analysis and ODEs +0910.0096 Group Theory +0910.0097 Instrumentation and Detectors +0910.0098 Group Theory +0910.0104 Soft Condensed Matter +0910.0110 Data Structures and Algorithms +0910.0115 Machine Learning +0910.0120 Algebraic Geometry +0910.0123 Fluid Dynamics +0910.0124 Experiment +0910.0135 Cosmology and Nongalactic Astrophysics +0910.0142 Number Theory +0910.0149 +0910.0153 Phenomenology +0910.0156 Probability +0910.0160 Cosmology and Nongalactic Astrophysics +0910.0167 Instrumentation and Methods for Astrophysics +0910.0170 Differential Geometry +0910.0172 Analysis of PDEs +0910.0176 Pattern Formation and Solitons +0910.0177 Representation Theory +0910.0178 Experiment +0910.0179 Multimedia +0910.0183 Astrophysics of Galaxies +0910.0186 Mesoscale and Nanoscale Physics +0910.0187 Distributed, Parallel, and Cluster Computing +0910.0188 Quantum Algebra +0910.0189 Mesoscale and Nanoscale Physics +0910.0193 Experiment +0910.0197 History and Overview +0910.0198 Cosmology and Nongalactic Astrophysics +0910.0208 Quantum Algebra +0910.0211 Analysis of PDEs +0910.0215 High Energy Astrophysical Phenomena +0910.0223 Phenomenology +0910.0227 Cryptography and Security +0910.0229 Symplectic Geometry +0910.0233 Superconductivity +0910.0234 Functional Analysis +0910.0237 Dynamical Systems +0910.0238 Statistical Mechanics +0910.0242 Popular Physics +astro-ph/0210581 +astro-ph/0406448 +cmp-lg/9704003 Computation and Language +cond-mat/0003012 Soft Condensed Matter +cs/0001005 Networking and Internet Architecture +cs/0003010 Programming Languages +cs/0012012 Software Engineering +cs/0101008 Software Engineering +hep-lat/0409032 Lattice +hep-ph/0506113 Phenomenology +hep-ph/9505347 Phenomenology +hep-th/0011137 Theory +hep-th/0105226 Theory +hep-th/0111173 Theory +hep-th/0205063 Theory +hep-th/0210170 Theory +hep-th/0212267 Theory +hep-th/0303088 Theory +hep-th/0306222 Theory +hep-th/0402127 Theory +hep-th/0409222 Theory +hep-th/0505053 Theory +hep-th/0702060 Theory +hep-th/9109055 Theory +hep-th/9203027 Theory +hep-th/9210060 Theory +hep-th/9305067 Theory +hep-th/9401006 Theory +hep-th/9601096 Theory +hep-th/9704037 Theory +hep-th/9711183 Theory +hep-th/9912238 Theory +math-ph/0408012 +math-ph/0507072 +math/0603635 Differential Geometry +math/9802129 Functional Analysis +physics/0005059 Computational Physics +physics/0311020 Data Analysis, Statistics and Probability +physics/0411220 Biological Physics +quant-ph/0302106 +0705.1733 +0706.1306 Neurons and Cognition +0708.3546 +0708.4321 Theory +0709.4565 Discrete Mathematics +0710.3546 Quantum Algebra +0711.4919 Strongly Correlated Electrons +0712.4388 Algebraic Geometry +0804.3081 Physics and Society +0805.1402 +0805.2290 Strongly Correlated Electrons +0807.1130 +0807.1231 Atomic Physics +0807.3238 Neurons and Cognition +0807.3330 Theory +0807.4120 Theory +0808.0274 Statistical Mechanics +0808.3211 Mesoscale and Nanoscale Physics +0809.1046 Theory +0809.2682 +0809.4188 +0810.0062 Functional Analysis +0810.1425 Algebraic Geometry +0810.1539 Combinatorics +0810.4312 Disordered Systems and Neural Networks +0811.0929 +0811.0933 +0811.0953 Phenomenology +0811.2822 Theory +0811.3909 Mesoscale and Nanoscale Physics +0812.1024 Mesoscale and Nanoscale Physics +0812.1393 Mesoscale and Nanoscale Physics +0901.0595 Information Theory +0901.1121 +0901.1459 Strongly Correlated Electrons +0901.2558 Materials Science +0901.2605 Numerical Analysis +0901.3054 Phenomenology +0901.3305 Experiment +0901.3402 Lattice +0901.3702 Other Condensed Matter +0902.2025 Operator Algebras +0903.1641 +0903.2380 Theory +0903.3171 Theory +0903.3435 General Topology +0903.3810 Earth and Planetary Astrophysics +0904.1236 Mesoscale and Nanoscale Physics +0904.3543 High Energy Astrophysical Phenomena +0904.3956 +0904.3976 +0904.4052 Disordered Systems and Neural Networks +0904.4265 Differential Geometry +0904.4268 High Energy Astrophysical Phenomena +0904.4269 Differential Geometry +0904.4277 High Energy Astrophysical Phenomena +0904.4282 Materials Science +0904.4283 Information Theory +0904.4284 Materials Science +0904.4286 Logic +0904.4291 Operator Algebras +0904.4293 Fluid Dynamics +0904.4294 Symplectic Geometry +0904.4296 Operator Algebras +0904.4298 Populations and Evolution +0904.4302 Strongly Correlated Electrons +0904.4303 Astrophysics of Galaxies +0904.4309 Strongly Correlated Electrons +0904.4312 Computational Geometry +0904.4321 Chemical Physics +0904.4322 Functional Analysis +0904.4325 Functional Analysis +0904.4326 Differential Geometry +0904.4327 Mesoscale and Nanoscale Physics +0904.4330 Algebraic Geometry +0904.4332 Differential Geometry +0904.4339 Quantum Gases +0904.4340 Optics +0904.4341 Other Condensed Matter +0904.4345 Quantum Gases +0904.4347 Metric Geometry +0904.4350 Materials Science +0904.4354 Strongly Correlated Electrons +0904.4355 K-Theory and Homology +0904.4356 Metric Geometry +0904.4359 Chaotic Dynamics +0904.4360 Molecular Networks +0904.4361 Geometric Topology +0904.4365 Dynamical Systems +0904.4369 Phenomenology +0904.4370 Dynamical Systems +0904.4376 High Energy Astrophysical Phenomena +0904.4385 Mesoscale and Nanoscale Physics +0904.4386 Probability +0904.4387 Materials Science +0904.4391 Chemical Physics +0904.4393 Dynamical Systems +0904.4394 High Energy Astrophysical Phenomena +0904.4399 Materials Science +0904.4403 Materials Science +0904.4406 General Physics +0904.4407 Lattice +0904.4411 Software Engineering +0904.4412 Cryptography and Security +0904.4413 Algebraic Geometry +0904.4416 Methodology +0904.4424 Soft Condensed Matter +0904.4426 Physics and Society +0904.4434 Other Condensed Matter +0904.4436 Chemical Physics +0904.4438 Materials Science +0904.4440 Strongly Correlated Electrons +0904.4441 Numerical Analysis +0904.4449 Information Theory +0904.4454 +0904.4456 +0904.4457 Algebraic Geometry +0904.4459 Analysis of PDEs +astro-ph/0504171 +cond-mat/0611139 Statistical Mechanics +math/0211075 Number Theory +math/0605413 Operator Algebras +math/0701365 Group Theory +math/0702671 Algebraic Geometry +nucl-ex/0610002 +physics/0703118 Medical Physics +quant-ph/0611029 +quant-ph/0701136 +0704.1263 +0704.3298 Algebraic Topology +0710.1604 Analysis of PDEs +0712.2440 Algebraic Geometry +0801.3834 Algebraic Geometry +0801.4558 Mesoscale and Nanoscale Physics +0802.2974 Materials Science +0805.0583 Operator Algebras +0809.3637 Materials Science +0810.2732 Combinatorics +0810.2890 Probability +0811.1167 Materials Science +0811.2564 Soft Condensed Matter +0811.2705 +0811.3650 Optimization and Control +0811.4099 Materials Science +0812.4593 Strongly Correlated Electrons +0901.2092 Optics +0901.2126 Mesoscale and Nanoscale Physics +0902.0271 Information Theory +0902.1353 Other Condensed Matter +0902.1416 Strongly Correlated Electrons +0902.2885 Quantitative Methods +0902.3034 +0902.3590 General Physics +0902.4153 Statistical Mechanics +0903.0544 Data Structures and Algorithms +0903.0631 Cosmology and Nongalactic Astrophysics +0903.0740 Disordered Systems and Neural Networks +0903.1503 Astrophysics of Galaxies +0903.3888 Superconductivity +0904.0634 Category Theory +0904.1201 Cosmology and Nongalactic Astrophysics +0904.2319 High Energy Astrophysical Phenomena +0904.2849 Computational Physics +0904.3974 Algebraic Geometry +0905.1228 Experiment +0905.1363 +0905.1366 Spectral Theory +0905.2668 Rings and Algebras +0905.3178 Combinatorics +0905.3179 Solar and Stellar Astrophysics +0905.3184 Geometric Topology +0905.3185 Experiment +0905.3186 Mesoscale and Nanoscale Physics +0905.3191 Computer Science and Game Theory +0905.3193 Phenomenology +0905.3197 Combinatorics +0905.3201 Information Theory +0905.3227 Differential Geometry +0905.3228 Strongly Correlated Electrons +0905.3241 Combinatorics +0905.3242 Spectral Theory +0905.3245 Information Theory +0905.3247 Number Theory +0905.3254 +0905.3261 Cosmology and Nongalactic Astrophysics +0905.3266 Strongly Correlated Electrons +0905.3267 Computer Science and Game Theory +0905.3268 Combinatorics +0905.3275 Analysis of PDEs +0905.3277 Mesoscale and Nanoscale Physics +0905.3280 +0905.3281 Combinatorics +0905.3283 Complex Variables +0905.3285 +0905.3286 Mesoscale and Nanoscale Physics +0905.3287 Software Engineering +0905.3293 Combinatorics +0905.3294 Statistical Mechanics +0905.3296 Software Engineering +0905.3299 Analysis of PDEs +0905.3300 Materials Science +0905.3304 Algebraic Geometry +0905.3307 Optics +0905.3311 Materials Science +0905.3313 Geophysics +0905.3315 High Energy Astrophysical Phenomena +0905.3316 Classical Analysis and ODEs +0905.3317 Fluid Dynamics +0905.3318 Computation and Language +0905.3325 Analysis of PDEs +0905.3326 Pricing of Securities +0905.3329 Phenomenology +0905.3332 Materials Science +0905.3336 Optics +0905.3346 Number Theory +0905.3347 Computer Vision and Pattern Recognition +0905.3348 Computer Science and Game Theory +0905.3350 Quantitative Methods +0905.3356 Information Retrieval +0905.3358 Probability +0905.3359 Discrete Mathematics +0905.3366 Classical Analysis and ODEs +0905.3370 Materials Science +0905.3372 Classical Analysis and ODEs +astro-ph/0702163 +cond-mat/0510203 Materials Science +cond-mat/0510210 Materials Science +cond-mat/0605221 Statistical Mechanics +cond-mat/0611120 Materials Science +cond-mat/0612241 Materials Science +gr-qc/0507045 +math/0511453 Algebraic Topology +math/0603347 Geometric Topology +math/0604084 Geometric Topology +math/0604238 General Topology +0705.2483 K-Theory and Homology +0711.0543 Mesoscale and Nanoscale Physics +0711.3843 Theory +0803.2808 Statistical Mechanics +0804.3214 Representation Theory +0804.3273 +0806.3311 Algebraic Geometry +0807.1283 Statistical Mechanics +0808.3873 Quantitative Methods +0809.0166 Combinatorics +0809.2202 Strongly Correlated Electrons +0809.4549 Other Condensed Matter +0809.4630 Mesoscale and Nanoscale Physics +0810.3470 Symplectic Geometry +0810.4004 Probability +0810.4071 Statistics Theory +0811.0209 Quantum Algebra +0811.0791 +0811.3376 +0812.1380 Dynamical Systems +0812.3602 Phenomenology +0902.4335 Statistical Mechanics +0903.0039 Atomic Physics +0903.1759 Mesoscale and Nanoscale Physics +0903.2432 +0903.2450 Superconductivity +0903.2709 Mesoscale and Nanoscale Physics +0903.3308 Algebraic Geometry +0903.4537 Superconductivity +0903.4756 Rings and Algebras +0904.1155 Differential Geometry +0904.2623 Learning +0905.1645 Numerical Analysis +0905.3084 Biological Physics +0905.4618 Analysis of PDEs +0906.0121 +0906.0344 Classical Analysis and ODEs +0906.0519 Theory +0906.0708 Methodology +0906.0768 Quantum Gases +0906.0773 Astrophysics of Galaxies +0906.0780 Exactly Solvable and Integrable Systems +0906.0789 Mesoscale and Nanoscale Physics +0906.0790 Algebraic Geometry +0906.0798 Neural and Evolutionary Computing +0906.0802 Phenomenology +0906.0806 +0906.0808 Experiment +0906.0809 History and Overview +0906.0812 Mesoscale and Nanoscale Physics +0906.0814 High Energy Astrophysical Phenomena +0906.0816 High Energy Astrophysical Phenomena +0906.0817 Superconductivity +0906.0820 High Energy Astrophysical Phenomena +0906.0822 Operator Algebras +0906.0824 Strongly Correlated Electrons +0906.0827 Combinatorics +0906.0830 General Physics +0906.0832 Chaotic Dynamics +0906.0835 Probability +0906.0840 Information Theory +0906.0843 Functional Analysis +0906.0845 Networking and Internet Architecture +0906.0847 Soft Condensed Matter +0906.0851 Other Computer Science +0906.0854 Solar and Stellar Astrophysics +0906.0859 Discrete Mathematics +0906.0861 Learning +0906.0863 Other Computer Science +0906.0865 Statistics Theory +0906.0866 Multimedia +0906.0867 Digital Libraries +0906.0869 Other Computer Science +0906.0870 Rings and Algebras +0906.0871 Other Computer Science +0906.0872 Learning +0906.0877 Other Computer Science +0906.0884 Analysis of PDEs +0906.0885 Databases +0906.0886 Other Quantitative Biology +0906.0887 Optimization and Control +0906.0895 Combinatorics +0906.0904 Mesoscale and Nanoscale Physics +0906.0909 Commutative Algebra +0906.0910 Databases +0906.0911 Commutative Algebra +0906.0915 Materials Science +0906.0916 +0906.0917 Other Quantitative Biology +0906.0923 +0906.0931 Quantum Gases +0906.0937 Discrete Mathematics +0906.0938 +0906.0947 Representation Theory +0906.0950 Chemical Physics +0906.0952 Statistical Mechanics +0906.0963 General Physics +0906.0964 Information Theory +0906.0966 Optics +0906.0968 +0906.0970 Algebraic Geometry +0906.0973 High Energy Astrophysical Phenomena +cond-mat/0304593 Statistical Mechanics +cond-mat/0701711 Superconductivity +math/0701391 Metric Geometry +0704.3651 Operator Algebras +0705.1877 General Physics +0707.1569 Molecular Networks +0707.4245 Rings and Algebras +0708.1760 +0708.4298 Differential Geometry +0711.0928 Statistics Theory +0711.3778 Combinatorics +0712.2344 Number Theory +0801.4516 +0803.3651 +0805.2008 +0806.0547 Mesoscale and Nanoscale Physics +0806.1975 Symplectic Geometry +0806.4953 +0807.0370 +0807.1743 Superconductivity +0807.2459 Phenomenology +0807.3659 +0807.3894 +0807.4052 Discrete Mathematics +0807.5074 +0809.0275 Combinatorics +0809.1423 Strongly Correlated Electrons +0810.1196 Algebraic Topology +0810.3149 +0810.3166 Lattice +0810.4006 +0810.5119 +0811.2519 Computers and Society +0811.2761 Physics and Society +0811.3581 +0811.4377 Chemical Physics +0812.0684 Other Condensed Matter +0812.1328 +0812.2030 Lattice +0812.2210 +0812.2614 +0812.2842 +0812.4684 Differential Geometry +0812.5080 Theory +0901.1947 +0901.2023 Astrophysics of Galaxies +0901.2041 Biological Physics +0901.2304 Mesoscale and Nanoscale Physics +0901.4540 Cosmology and Nongalactic Astrophysics +0902.0617 General Mathematics +0902.0795 Astrophysics of Galaxies +0902.0797 Analysis of PDEs +0902.0798 Artificial Intelligence +0902.0800 Classical Physics +0902.0803 +0902.0805 Strongly Correlated Electrons +0902.0807 Analysis of PDEs +0902.0808 Rings and Algebras +0902.0815 Rings and Algebras +0902.0816 Cosmology and Nongalactic Astrophysics +0902.0820 Astrophysics of Galaxies +0902.0822 Cryptography and Security +0902.0826 Plasma Physics +0902.0827 Computational Physics +0902.0828 Computational Complexity +0902.0829 Geometric Topology +0902.0837 Combinatorics +0902.0842 Logic +0902.0845 Logic +0902.0847 Combinatorics +0902.0849 Rings and Algebras +0902.0850 Discrete Mathematics +0902.0852 Numerical Analysis +0902.0858 Superconductivity +0902.0861 Differential Geometry +0902.0865 Phenomenology +0902.0871 Data Analysis, Statistics and Probability +0902.0875 Materials Science +0902.0879 Probability +0902.0884 Probability +0902.0886 Probability +0902.0896 Soft Condensed Matter +0902.0899 Artificial Intelligence +0902.0901 Other Computer Science +0902.0909 Optics +0902.0910 +0902.0913 Solar and Stellar Astrophysics +0902.0914 Mesoscale and Nanoscale Physics +0902.0915 Instrumentation and Methods for Astrophysics +0902.0919 Networking and Internet Architecture +0902.0920 Networking and Internet Architecture +0902.0922 Networking and Internet Architecture +0902.0923 Number Theory +0902.0924 Software Engineering +0902.0925 Classical Physics +0902.0931 Statistical Mechanics +0902.0937 Combinatorics +0902.0939 Materials Science +0902.0940 Probability +0902.0960 Solar and Stellar Astrophysics +0902.0966 Information Theory +0902.0968 Mesoscale and Nanoscale Physics +0902.0969 High Energy Astrophysical Phenomena +0902.0970 Populations and Evolution +astro-ph/0608480 +cond-mat/0003482 Statistical Mechanics +cond-mat/0101339 Statistical Mechanics +cond-mat/0104056 Mesoscale and Nanoscale Physics +cond-mat/0104364 Statistical Mechanics +cond-mat/0204029 Statistical Mechanics +cond-mat/0204440 Superconductivity +cond-mat/0204602 Strongly Correlated Electrons +cond-mat/0301273 +cond-mat/0304246 Mesoscale and Nanoscale Physics +cond-mat/0305635 Strongly Correlated Electrons +cond-mat/0310503 Statistical Mechanics +cond-mat/0402466 Disordered Systems and Neural Networks +cond-mat/0403051 Disordered Systems and Neural Networks +cond-mat/0407272 Strongly Correlated Electrons +cond-mat/0408685 Superconductivity +cond-mat/0507729 Other Condensed Matter +cond-mat/0509163 Strongly Correlated Electrons +cond-mat/9910086 Statistical Mechanics +cs/0702132 Networking and Internet Architecture +hep-ph/0307217 Phenomenology +hep-th/0407018 Theory +math-ph/0510075 +math-ph/0702071 +math/0209254 Algebraic Geometry +math/0301045 Algebraic Topology +math/0508419 Probability +math/0508420 Analysis of PDEs +math/0610856 Metric Geometry +math/0701519 Combinatorics +math/0702441 Number Theory +math/0703059 Differential Geometry +nlin/0101047 Chaotic Dynamics +nucl-ex/0008006 +nucl-th/0108071 +nucl-th/0611094 +physics/0502066 Physics and Society +physics/0701030 Physics and Society +physics/0703151 General Physics +quant-ph/0002038 +quant-ph/0105068 +quant-ph/0206098 +0705.1663 Exactly Solvable and Integrable Systems +0705.2176 Phenomenology +0705.3757 Experiment +0705.4500 Experiment +0706.1172 Probability +0706.4169 Statistics Theory +0706.4198 +0707.0570 Representation Theory +0707.1562 +0707.3491 Experiment +0707.3706 Phenomenology +0709.1203 Experiment +0709.2769 Experiment +0709.2818 Phenomenology +0709.3408 Differential Geometry +0709.4616 Experiment +0710.3485 Exactly Solvable and Integrable Systems +0710.3555 Phenomenology +0711.4947 +0712.2599 Probability +0801.2346 +0802.1256 Operator Algebras +0803.4327 General Physics +0804.0662 Materials Science +0804.3969 K-Theory and Homology +0804.4405 Theory +0805.1651 +0806.0535 Computer Science and Game Theory +0806.2055 Phenomenology +0806.2191 Strongly Correlated Electrons +0806.2925 Artificial Intelligence +0806.4121 Theory +0807.0150 Statistical Mechanics +0807.4646 Theory +0808.1621 Other Condensed Matter +0809.0445 Statistics Theory +0810.0490 Soft Condensed Matter +0810.3500 +0810.3519 Experiment +0810.4949 Chaotic Dynamics +0811.0039 Mesoscale and Nanoscale Physics +0811.1875 Data Structures and Algorithms +0811.2177 Methodology +0811.2206 Materials Science +0811.3480 +0812.0612 Experiment +0812.0996 Phenomenology +0812.1191 Other Condensed Matter +0901.0201 General Physics +0901.0238 Superconductivity +0901.0590 +0901.0644 +0901.4475 +0901.4559 Solar and Stellar Astrophysics +0902.0545 Phenomenology +0902.1837 Theory +0902.2119 Group Theory +0902.3284 +0902.3739 +0902.4248 +0902.4385 Strongly Correlated Electrons +0903.0260 Quantum Gases +0903.2560 +0903.2602 Materials Science +0903.3311 Logic in Computer Science +0903.4958 Classical Analysis and ODEs +0904.0445 Mesoscale and Nanoscale Physics +0905.1499 Geometric Topology +0905.4887 Algebraic Topology +0906.0425 Mesoscale and Nanoscale Physics +0906.1276 Other Condensed Matter +0906.1922 Analysis of PDEs +0906.2017 Operator Algebras +0906.2025 Materials Science +0906.2026 Rings and Algebras +0906.2034 Machine Learning +0906.2036 Optics +0906.2037 Statistics Theory +0906.2040 Combinatorics +0906.2043 Analysis of PDEs +0906.2045 Superconductivity +0906.2048 Data Structures and Algorithms +0906.2050 Analysis of PDEs +0906.2059 Geometric Topology +0906.2060 +0906.2061 Information Theory +0906.2062 Probability +0906.2068 Phenomenology +0906.2074 Experiment +0906.2079 Phenomenology +0906.2080 Statistics Theory +0906.2081 Complex Variables +0906.2084 Theory +0906.2086 Analysis of PDEs +0906.2095 Statistical Mechanics +0906.2099 Statistics Theory +0906.2104 Numerical Analysis +0906.2111 Differential Geometry +0906.2115 Quantum Gases +0906.2128 Statistics Theory +0906.2131 Atmospheric and Oceanic Physics +0906.2133 Logic +0906.2135 Digital Libraries +0906.2137 Optics +0906.2143 Distributed, Parallel, and Cluster Computing +0906.2147 +0906.2160 Functional Analysis +0906.2166 Dynamical Systems +0906.2170 +0906.2171 Neurons and Cognition +0906.2176 Dynamical Systems +0906.2185 General Mathematics +0906.2186 Instrumentation and Methods for Astrophysics +0906.2187 +0906.2188 Accelerator Physics +0906.2190 Cosmology and Nongalactic Astrophysics +0906.2191 Atmospheric and Oceanic Physics +astro-ph/0507583 +astro-ph/0610597 +astro-ph/0611784 +cond-mat/0702673 Strongly Correlated Electrons +gr-qc/0505010 +hep-ex/0506076 Experiment +hep-ex/0604052 Experiment +hep-ex/0606057 Experiment +hep-ph/0101024 Phenomenology +hep-ph/0101305 Phenomenology +hep-ph/0108084 Phenomenology +hep-ph/0310066 Phenomenology +hep-ph/0411398 Phenomenology +hep-ph/0507253 Phenomenology +hep-ph/9803236 Phenomenology +hep-th/0703022 Theory +math/0504457 Algebraic Geometry +math/0602213 Algebraic Geometry +math/0703339 Functional Analysis +math/0703600 Combinatorics +nucl-ex/0605017 +0705.2206 +0707.1674 Differential Geometry +0707.3087 Information Theory +0709.0884 +0709.3276 +0709.3390 +0710.2450 +0710.2990 +0710.3780 +0710.4533 Theory +0711.1515 +0711.3430 Theory +0712.3218 +0801.4949 Phenomenology +0802.2040 Theory +0802.2182 Phenomenology +0802.3654 Probability +0803.0646 Phenomenology +0803.1301 +0803.1538 +0803.2658 Theory +0803.2847 Phenomenology +0803.3319 +0803.3554 Quantum Algebra +0803.4110 Phenomenology +0803.4120 Phenomenology +0804.1031 +0804.2046 +0804.3564 Theory +0804.4097 Probability +0804.4631 Other Condensed Matter +0805.0134 Theory +0805.0499 Phenomenology +0805.1108 +0805.1182 Theory +0805.1245 Theory +0805.3349 Mesoscale and Nanoscale Physics +0805.4033 +0805.4121 Phenomenology +0805.4540 +0805.4562 +0806.2179 +0806.3830 Phenomenology +0806.4539 +0806.4551 Phenomenology +0807.0008 +0807.0118 +0807.0300 +0807.0380 +0807.0450 Superconductivity +0807.0600 Phenomenology +0807.0945 +0807.1076 +0807.1183 Theory +0807.1904 +0807.3102 General Topology +0807.3334 +0807.3478 Theory +0807.4266 +0807.4537 Phenomenology +0808.0082 Theory +0808.0376 +0808.0870 Geometric Topology +0808.0923 Theory +0808.1114 Theory +0808.1141 Operator Algebras +0808.1285 +0808.1286 Theory +0808.1377 Mesoscale and Nanoscale Physics +0808.2624 +0808.2702 +0808.2769 +0808.2850 +0808.2925 +0808.3137 +0808.3710 Phenomenology +0808.3742 Superconductivity +0808.3969 Phenomenology +0808.4096 +0809.0436 +0809.0446 +0809.1145 Phenomenology +0809.1311 Theory +0809.1419 +0809.1462 +0809.1609 +0809.1671 +0809.1884 Phenomenology +0809.2001 Theory +0809.2091 +0809.2123 +0809.2288 +0809.3000 Phenomenology +0809.3004 Phenomenology +0809.3031 Quantum Algebra +0809.3038 Phenomenology +0809.3340 Phenomenology +0809.3547 +0809.3703 +0809.3769 +0809.3850 Theory +0809.3880 +0809.3951 Theory +0809.4394 +0809.4428 Phenomenology +0809.4433 Phenomenology +0809.4475 +0809.5093 +0809.5200 +0809.5237 Phenomenology +0809.5261 +0810.0017 +0810.0051 +0810.0258 Lattice +0810.0297 +0810.0488 +0810.0500 +0810.0562 +0810.0628 +0810.0704 Theory +0810.1023 Theory +0810.1193 Phenomenology +0810.1219 +0810.1284 +0810.1427 Theory +0810.1482 Theory +0810.1490 Dynamical Systems +0810.1768 +0810.2572 Phenomenology +0810.3052 Phenomenology +0810.3185 Phenomenology +0810.3530 +0810.4014 +0810.4193 Theory +0810.4519 Theory +0810.4566 +0810.4823 +0810.4828 +0810.5165 Representation Theory +0810.5324 +0810.5414 +0811.0207 +0811.0337 Phenomenology +0811.0439 +0811.0450 Theory +0811.0532 +0811.0651 +0811.0790 Phenomenology +0811.0816 +0811.1040 +0811.1465 Theory +0811.1517 +0811.1592 Experiment +0811.1848 +0811.1904 Theory +0811.2101 Disordered Systems and Neural Networks +0811.2129 +0811.2137 Differential Geometry +0811.2154 Strongly Correlated Electrons +0811.2259 Number Theory +0811.2311 +0811.2670 Phenomenology +0811.2692 Phenomenology +0811.2737 Classical Physics +0811.3294 Theory +0811.3363 +0811.3624 Theory +0811.3866 Theory +0811.4333 Strongly Correlated Electrons +0812.0196 Methodology +0812.0424 +0812.0491 +0812.0592 +0812.0646 +0812.0781 Theory +0812.0922 Data Analysis, Statistics and Probability +0812.1034 +0812.1151 +0812.1258 Theory +0812.1279 Populations and Evolution +0812.1644 Theory +0812.1899 Phenomenology +0812.1942 +0812.2006 +0812.2339 Plasma Physics +0812.3043 +0812.3053 +0812.3583 Lattice +0812.3615 Theory +0812.3649 +0812.3729 +0812.3912 +0812.4260 Phenomenology +0812.4438 Theory +0812.4596 Mesoscale and Nanoscale Physics +0812.4637 Algebraic Topology +0812.4813 +0812.4860 +0812.4874 +0812.4877 +0901.0217 Theory +0901.0233 Phenomenology +0901.0259 Theory +0901.0692 +0901.0815 Theory +0901.0867 Theory +0901.0924 Theory +0901.1030 Solar and Stellar Astrophysics +0901.1045 Phenomenology +0901.1517 Phenomenology +0901.1621 Solar and Stellar Astrophysics +0901.1648 Experiment +0901.1760 Superconductivity +0901.1777 Solar and Stellar Astrophysics +0901.1887 Experiment +0901.2324 Solar and Stellar Astrophysics +0901.2325 Solar and Stellar Astrophysics +0901.2338 Theory +0901.2537 Theory +0901.2584 Cosmology and Nongalactic Astrophysics +0901.2740 High Energy Astrophysical Phenomena +0901.3055 Theory +0901.3176 Experiment +0901.3487 Solar and Stellar Astrophysics +0901.3489 Solar and Stellar Astrophysics +0901.3524 Phenomenology +0901.3537 Theory +0901.3559 +0901.3564 High Energy Astrophysical Phenomena +0901.3762 +0901.3997 Phenomenology +0901.4599 Phenomenology +0901.4704 Phenomenology +0901.4787 Cosmology and Nongalactic Astrophysics +0901.4804 Cosmology and Nongalactic Astrophysics +0902.0371 Cosmology and Nongalactic Astrophysics +0902.0733 Theory +0902.0765 Theory +0902.0889 Materials Science +0902.0982 Theory +0902.1109 +0902.1132 Theory +0902.1307 Theory +0902.1385 Theory +0902.1444 Theory +0902.1566 Theory +0902.1718 +0902.1743 Theory +0902.1819 Phenomenology +0902.2123 Phenomenology +0902.2189 +0902.2232 Strongly Correlated Electrons +0902.2267 Theory +0902.2346 Lattice +0902.2578 Phenomenology +0902.2747 +0902.2787 Solar and Stellar Astrophysics +0902.2816 Experiment +0902.2989 Phenomenology +0902.3032 Experiment +0902.3067 Phenomenology +0902.3179 Theory +0902.3461 Earth and Planetary Astrophysics +0902.3764 Phenomenology +0902.3817 Theory +0902.3820 Phenomenology +0902.3823 Theory +0902.3924 +0902.3995 Earth and Planetary Astrophysics +0902.4135 Lattice +0902.4186 Theory +0902.4231 Classical Physics +0902.4265 Exactly Solvable and Integrable Systems +0902.4446 Phenomenology +0902.4833 Theory +0903.0404 High Energy Astrophysical Phenomena +0903.0509 Theory +0903.0654 High Energy Astrophysical Phenomena +0903.0719 Theory +0903.0986 +0903.1106 Cosmology and Nongalactic Astrophysics +0903.1226 Solar and Stellar Astrophysics +0903.1234 Strongly Correlated Electrons +0903.1273 Theory +0903.1403 Other Condensed Matter +0903.1405 Materials Science +0903.1432 Experiment +0903.1458 Theory +0903.1512 Phenomenology +0903.1666 +0903.1840 Theory +0903.2013 Phenomenology +0903.2047 Theory +0903.2159 Solar and Stellar Astrophysics +0903.2187 Phenomenology +0903.2344 High Energy Astrophysical Phenomena +0903.2548 Theory +0903.2597 Theory +0903.2631 Phenomenology +0903.2669 Cosmology and Nongalactic Astrophysics +0903.2815 +0903.2822 Phenomenology +0903.2850 Experiment +0903.2924 High Energy Astrophysical Phenomena +0903.3116 High Energy Astrophysical Phenomena +0903.3186 Phenomenology +0903.3389 Theory +0903.3602 Cosmology and Nongalactic Astrophysics +0903.3605 Theory +0903.3769 Theory +0903.3925 Theory +0903.4065 Solar and Stellar Astrophysics +0903.4155 Lattice +0903.4297 Phenomenology +0903.4430 Superconductivity +0903.4705 Phenomenology +0903.4716 High Energy Astrophysical Phenomena +0903.4800 Experiment +0903.4864 Astrophysics of Galaxies +0903.4888 Theory +0903.4985 Phenomenology +0903.5048 Phenomenology +0903.5173 +0903.5209 Phenomenology +0903.5247 Phenomenology +0903.5335 Solar and Stellar Astrophysics +0903.5357 Solar and Stellar Astrophysics +0903.5358 High Energy Astrophysical Phenomena +0903.5398 Lattice +0903.5494 Phenomenology +0904.0364 Theory +0904.0370 Theory +0904.0380 Theory +0904.0606 Phenomenology +0904.0610 Cosmology and Nongalactic Astrophysics +0904.0675 Phenomenology +0904.0702 Phenomenology +0904.0862 Theory +0904.0983 Solar and Stellar Astrophysics +0904.1145 Phenomenology +0904.1182 Phenomenology +0904.1190 +0904.1344 Theory +0904.1353 Lattice +0904.1460 Theory +0904.1753 Phenomenology +0904.1804 Quantum Gases +0904.2047 Phenomenology +0904.2092 Cosmology and Nongalactic Astrophysics +0904.2149 Theory +0904.2303 Theory +0904.2370 Geometric Topology +0904.2631 Phenomenology +0904.2779 High Energy Astrophysical Phenomena +0904.2821 Cosmology and Nongalactic Astrophysics +0904.2998 Solar and Stellar Astrophysics +0904.3052 Phenomenology +0904.3140 Solar and Stellar Astrophysics +0904.3177 Phenomenology +0904.3241 Phenomenology +0904.3260 Theory +0904.3297 Phenomenology +0904.3304 Theory +0904.3563 Phenomenology +0904.3643 Quantum Gases +0904.3655 Cosmology and Nongalactic Astrophysics +0904.3729 Phenomenology +0904.3752 High Energy Astrophysical Phenomena +0904.3879 Solar and Stellar Astrophysics +0904.3983 Theory +0904.3992 Cosmology and Nongalactic Astrophysics +0904.4011 High Energy Astrophysical Phenomena +0904.4377 High Energy Astrophysical Phenomena +0904.4396 Cosmology and Nongalactic Astrophysics +0904.4464 Theory +0904.4479 Cosmology and Nongalactic Astrophysics +0904.4511 Solar and Stellar Astrophysics +0904.4594 Solar and Stellar Astrophysics +0904.4682 High Energy Astrophysical Phenomena +0904.4690 Solar and Stellar Astrophysics +0904.4721 Cosmology and Nongalactic Astrophysics +0904.4907 Solar and Stellar Astrophysics +0905.0117 Solar and Stellar Astrophysics +0905.0133 Astrophysics of Galaxies +0905.0329 Solar and Stellar Astrophysics +0905.0330 Earth and Planetary Astrophysics +0905.0331 Solar and Stellar Astrophysics +0905.0433 Earth and Planetary Astrophysics +0905.0491 Solar and Stellar Astrophysics +0905.0614 +0905.0628 Solar and Stellar Astrophysics +0905.0640 Solar and Stellar Astrophysics +0905.0651 Solar and Stellar Astrophysics +0905.0697 Cosmology and Nongalactic Astrophysics +0905.0723 Astrophysics of Galaxies +0905.0800 Astrophysics of Galaxies +0905.0930 Solar and Stellar Astrophysics +0905.0951 Phenomenology +0905.0987 Phenomenology +0905.0998 +0905.1098 Theory +0905.1122 Cosmology and Nongalactic Astrophysics +0905.1298 +0905.1474 Solar and Stellar Astrophysics +0905.1584 Statistical Mechanics +0905.1646 Cosmology and Nongalactic Astrophysics +0905.1692 Cosmology and Nongalactic Astrophysics +0905.1693 Astrophysics of Galaxies +0905.1774 Solar and Stellar Astrophysics +0905.1889 Astrophysics of Galaxies +0905.1941 Cosmology and Nongalactic Astrophysics +0905.1945 Solar and Stellar Astrophysics +0905.1956 Cosmology and Nongalactic Astrophysics +0905.1996 Solar and Stellar Astrophysics +0905.2180 Cosmology and Nongalactic Astrophysics +0905.2186 Cosmology and Nongalactic Astrophysics +0905.2192 Cosmology and Nongalactic Astrophysics +0905.2228 Astrophysics of Galaxies +0905.2411 Cosmology and Nongalactic Astrophysics +0905.2532 Cosmology and Nongalactic Astrophysics +0905.2552 Theory +0905.2580 Solar and Stellar Astrophysics +0905.2582 Cosmology and Nongalactic Astrophysics +0905.2586 Cosmology and Nongalactic Astrophysics +0905.2618 Solar and Stellar Astrophysics +0905.2654 Astrophysics of Galaxies +0905.2687 Phenomenology +0905.2691 Solar and Stellar Astrophysics +0905.2699 Cosmology and Nongalactic Astrophysics +0905.2791 Cosmology and Nongalactic Astrophysics +0905.2908 High Energy Astrophysical Phenomena +0905.3083 +0905.3104 Solar and Stellar Astrophysics +0905.3173 Astrophysics of Galaxies +0905.3192 Cosmology and Nongalactic Astrophysics +0905.3284 Theory +0905.3320 Cosmology and Nongalactic Astrophysics +0905.3339 +0905.3426 Earth and Planetary Astrophysics +0905.3495 Solar and Stellar Astrophysics +0905.3496 Astrophysics of Galaxies +0905.3542 Solar and Stellar Astrophysics +0905.3681 Solar and Stellar Astrophysics +0905.3719 Solar and Stellar Astrophysics +0905.3737 Astrophysics of Galaxies +0905.3741 Earth and Planetary Astrophysics +0905.3742 Earth and Planetary Astrophysics +0905.3743 Solar and Stellar Astrophysics +0905.3745 Solar and Stellar Astrophysics +0905.3748 Cosmology and Nongalactic Astrophysics +0905.3773 High Energy Astrophysical Phenomena +0905.3864 Cosmology and Nongalactic Astrophysics +0905.3933 High Energy Astrophysical Phenomena +0905.3982 Cosmology and Nongalactic Astrophysics +0905.4041 Astrophysics of Galaxies +0905.4274 Cosmology and Nongalactic Astrophysics +0905.4283 Astrophysics of Galaxies +0905.4337 Solar and Stellar Astrophysics +0905.4400 High Energy Astrophysical Phenomena +0905.4502 Astrophysics of Galaxies +0905.4503 Cosmology and Nongalactic Astrophysics +0905.4504 Cosmology and Nongalactic Astrophysics +0905.4680 Earth and Planetary Astrophysics +0905.4738 Cosmology and Nongalactic Astrophysics +0905.4784 Solar and Stellar Astrophysics +0906.0001 Cosmology and Nongalactic Astrophysics +0906.0331 Astrophysics of Galaxies +0906.0364 Earth and Planetary Astrophysics +0906.0367 Cosmology and Nongalactic Astrophysics +0906.0468 Phenomenology +0906.0544 Earth and Planetary Astrophysics +0906.0567 Solar and Stellar Astrophysics +0906.0584 Solar and Stellar Astrophysics +0906.0588 Solar and Stellar Astrophysics +0906.0616 Astrophysics of Galaxies +0906.0700 Solar and Stellar Astrophysics +0906.0722 Solar and Stellar Astrophysics +0906.0730 Earth and Planetary Astrophysics +0906.0766 Solar and Stellar Astrophysics +0906.0799 High Energy Astrophysical Phenomena +0906.0940 Astrophysics of Galaxies +0906.0951 Cosmology and Nongalactic Astrophysics +0906.0977 Solar and Stellar Astrophysics +0906.1010 Astrophysics of Galaxies +0906.1012 Astrophysics of Galaxies +0906.1054 High Energy Astrophysical Phenomena +0906.1061 High Energy Astrophysical Phenomena +0906.1090 High Energy Astrophysical Phenomena +0906.1110 Quantum Gases +0906.1158 Atomic Physics +0906.1375 Earth and Planetary Astrophysics +0906.1448 +0906.1587 Solar and Stellar Astrophysics +0906.1616 Cosmology and Nongalactic Astrophysics +0906.2005 Astrophysics of Galaxies +0906.2044 +0906.2091 High Energy Astrophysical Phenomena +0906.2181 Cosmology and Nongalactic Astrophysics +0906.2602 Cosmology and Nongalactic Astrophysics +0906.2663 Solar and Stellar Astrophysics +0906.3291 Astrophysics of Galaxies +0906.3545 Astrophysics of Galaxies +0906.3641 Solar and Stellar Astrophysics +0906.3893 Earth and Planetary Astrophysics +0906.4082 Logic +0906.4414 Solar and Stellar Astrophysics +0906.4530 High Energy Astrophysical Phenomena +0906.4794 Solar and Stellar Astrophysics +0906.4806 Astrophysics of Galaxies +0906.5109 Solar and Stellar Astrophysics +0906.5197 Astrophysics of Galaxies +0906.5404 General Physics +0907.0028 Solar and Stellar Astrophysics +0907.0063 Solar and Stellar Astrophysics +0907.0137 High Energy Astrophysical Phenomena +0907.0234 Earth and Planetary Astrophysics +0907.0573 Cosmology and Nongalactic Astrophysics +0907.0866 +0907.1408 Astrophysics of Galaxies +0907.1422 Cosmology and Nongalactic Astrophysics +0907.1656 Cosmology and Nongalactic Astrophysics +0907.2914 Instrumentation and Methods for Astrophysics +0907.3164 Functional Analysis +0907.3480 Solar and Stellar Astrophysics +0907.3483 Experiment +0907.3484 Mesoscale and Nanoscale Physics +0907.3487 Algebraic Geometry +0907.3489 Astrophysics of Galaxies +0907.3492 Number Theory +0907.3493 Information Theory +0907.3494 Cosmology and Nongalactic Astrophysics +0907.3497 Discrete Mathematics +0907.3511 Combinatorics +0907.3524 Optimization and Control +0907.3527 Algebraic Geometry +0907.3530 Geometric Topology +0907.3536 Materials Science +0907.3537 Other Quantitative Biology +0907.3542 Commutative Algebra +0907.3543 Strongly Correlated Electrons +0907.3547 Algebraic Geometry +0907.3551 +0907.3558 Algebraic Geometry +0907.3559 Earth and Planetary Astrophysics +0907.3561 Instrumentation and Methods for Astrophysics +0907.3569 Rings and Algebras +0907.3573 Numerical Analysis +0907.3597 Algebraic Geometry +0907.3598 +0907.3599 Logic in Computer Science +0907.3600 Physics and Society +0907.3601 Plasma Physics +0907.3602 High Energy Astrophysical Phenomena +0907.3604 Computer Vision and Pattern Recognition +0907.3605 Theory +0907.3613 Solar and Stellar Astrophysics +0907.3616 Networking and Internet Architecture +0907.3622 Rings and Algebras +0907.3631 Data Structures and Algorithms +0907.3637 Probability +0907.3641 Algebraic Geometry +0907.3642 +0907.3653 Mesoscale and Nanoscale Physics +0907.3656 Mesoscale and Nanoscale Physics +0907.3658 Experiment +0907.3666 Information Theory +0907.3668 Probability +0907.3670 Instrumentation and Methods for Astrophysics +0907.3675 General Mathematics +0907.3676 Materials Science +0907.3679 Information Theory +0907.3683 Classical Analysis and ODEs +0907.3687 Statistical Mechanics +0907.3692 Functional Analysis +0907.3693 Classical Analysis and ODEs +0907.3694 +0907.3698 Algebraic Topology +0907.3700 Probability +0907.3701 Rings and Algebras +0907.3710 Networking and Internet Architecture +0907.3720 Other Condensed Matter +0907.3723 Number Theory +astro-ph/0004160 +astro-ph/0210635 +astro-ph/0410155 +astro-ph/0411260 +astro-ph/0502478 +astro-ph/0510818 +astro-ph/0606564 +astro-ph/0610519 +astro-ph/0612742 +astro-ph/9412076 +astro-ph/9510117 +cond-mat/0212626 Mesoscale and Nanoscale Physics +gr-qc/0608005 +hep-ph/0607075 Phenomenology +hep-ph/9405429 Phenomenology +hep-th/0702212 Theory +hep-th/9508128 Theory +math/0003069 Representation Theory +math/0003070 Representation Theory +math/0003122 General Mathematics +math/0003183 Representation Theory +math/0004006 Quantum Algebra +math/0511343 Combinatorics +physics/0107032 General Physics +physics/0511214 General Physics +0707.0607 Combinatorics +0711.2381 Classical Analysis and ODEs +0712.2562 General Physics +0801.2429 +0804.4253 General Physics +0805.1473 Artificial Intelligence +0805.2585 Mesoscale and Nanoscale Physics +0809.4103 Materials Science +0810.2656 +0810.5488 +0812.0377 Numerical Analysis +0812.3605 Superconductivity +0901.0423 Superconductivity +0903.1489 +0903.3692 Dynamical Systems +0904.1509 Strongly Correlated Electrons +physics/0602041 General Physics +0712.3154 Quantum Algebra +0804.1940 Quantum Algebra +0805.2546 Materials Science +0809.3864 Materials Science +0810.5290 +0810.5332 Physics and Society +0811.4350 +0812.0445 Theory +0901.1087 +0903.4093 Mesoscale and Nanoscale Physics +0904.3838 Statistical Mechanics +0905.1597 Phenomenology +0905.2025 Materials Science +math/0601155 Representation Theory +nlin/0506029 Exactly Solvable and Integrable Systems +0709.4227 Phenomenology +0710.5592 +0712.2546 Geometric Topology +0802.0071 Probability +0802.2128 Logic +0802.2330 Molecular Networks +0803.1075 Chaotic Dynamics +0803.2624 Data Analysis, Statistics and Probability +0805.2177 Statistical Mechanics +0806.1485 Materials Science +0806.3033 Discrete Mathematics +0806.4217 Chaotic Dynamics +0807.0412 Strongly Correlated Electrons +0807.3958 +0807.4025 +0808.2519 Lattice +0808.3079 Phenomenology +0808.3750 Superconductivity +0808.3927 Disordered Systems and Neural Networks +0809.2189 Dynamical Systems +0810.3797 Other Condensed Matter +0810.4816 Statistical Mechanics +0810.5234 Theory +0810.5648 Spectral Theory +0811.1027 +0811.1220 Strongly Correlated Electrons +0812.1192 Superconductivity +0812.2428 +0812.2494 +0812.3992 Phenomenology +0812.4723 Phenomenology +0812.5088 Theory +0901.0005 Strongly Correlated Electrons +0901.1418 +0901.3136 +0901.4103 Strongly Correlated Electrons +0902.1925 Mesoscale and Nanoscale Physics +0902.2958 Materials Science +0902.3911 Strongly Correlated Electrons +0903.0476 Phenomenology +0903.1578 Theory +0903.2189 Plasma Physics +0903.2883 Molecular Networks +0903.4306 Materials Science +0903.5382 +0904.1326 Mesoscale and Nanoscale Physics +0904.2349 Differential Geometry +0904.2389 Physics and Society +0904.3336 Earth and Planetary Astrophysics +0904.3340 Information Theory +0904.3351 Information Theory +0904.3352 Artificial Intelligence +0904.3353 +0904.3355 Commutative Algebra +0904.3361 General Mathematics +0904.3365 Number Theory +0904.3366 Formal Languages and Automata Theory +0904.3371 Algebraic Geometry +0904.3372 Algebraic Geometry +0904.3374 Algebraic Geometry +0904.3377 +0904.3382 High Energy Astrophysical Phenomena +0904.3385 High Energy Astrophysical Phenomena +0904.3387 Pattern Formation and Solitons +0904.3394 Computational Physics +0904.3396 Other Quantitative Biology +0904.3397 Statistical Mechanics +0904.3398 Strongly Correlated Electrons +0904.3399 Geometric Topology +0904.3400 Operator Algebras +0904.3401 Geometric Topology +0904.3403 Solar and Stellar Astrophysics +0904.3408 Experiment +0904.3411 Group Theory +0904.3413 Computational Physics +0904.3419 High Energy Astrophysical Phenomena +0904.3424 Exactly Solvable and Integrable Systems +0904.3430 Algebraic Geometry +0904.3431 General Mathematics +0904.3433 Combinatorics +0904.3434 +0904.3444 Information Theory +0904.3446 +0904.3447 Fluid Dynamics +0904.3452 Group Theory +0904.3453 Classical Analysis and ODEs +0904.3457 Complex Variables +0904.3458 Cryptography and Security +0904.3460 Dynamical Systems +0904.3461 Mesoscale and Nanoscale Physics +0904.3462 Functional Analysis +0904.3465 Commutative Algebra +0904.3468 Probability +0904.3470 General Topology +0904.3478 Geometric Topology +0904.3480 Algebraic Geometry +0904.3493 Differential Geometry +0904.3500 Algebraic Geometry +0904.3501 Computer Science and Game Theory +0904.3504 Differential Geometry +0904.3505 Differential Geometry +0904.3509 Optimization and Control +0904.3514 Number Theory +0904.3518 Probability +0904.3520 +0904.3521 Strongly Correlated Electrons +0904.3525 Logic in Computer Science +0904.3526 Number Theory +0904.3527 Statistical Mechanics +0904.3532 Superconductivity +0904.3534 Genomics +0904.3535 Genomics +0904.3536 Chemical Physics +0904.3537 Soft Condensed Matter +0904.3538 Chemical Physics +0904.3539 Chemical Physics +astro-ph/0603772 +cond-mat/0504702 Materials Science +math/0303317 Combinatorics +math/0507498 Geometric Topology +math/0509007 Geometric Topology +math/0509504 Group Theory +math/0510105 Geometric Topology +math/0512001 Group Theory +math/0601561 Geometric Topology +math/0604358 Geometric Topology +math/0605312 Geometric Topology +math/0611920 Metric Geometry +math/0612591 Algebraic Topology +math/0702113 Algebraic Topology +nlin/0701014 Adaptation and Self-Organizing Systems +0704.0596 Differential Geometry +0711.3859 Differential Geometry +0801.0005 Quantum Algebra +0801.0915 Number Theory +0803.3518 Probability +0803.4147 Number Theory +0803.4370 Distributed, Parallel, and Cluster Computing +0804.3288 Numerical Analysis +0804.3363 Representation Theory +0804.4123 Probability +0805.1168 Number Theory +0805.2186 Superconductivity +0805.3765 Classical Analysis and ODEs +0805.4741 +0806.0841 Phenomenology +0807.1044 Superconductivity +0807.3242 Materials Science +0808.3134 Phenomenology +0808.3397 Biological Physics +0809.3863 Mesoscale and Nanoscale Physics +0811.1355 Numerical Analysis +0811.1526 Soft Condensed Matter +0812.0070 Robotics +0812.0851 Populations and Evolution +0812.1492 Algebraic Geometry +0812.3507 Theory +0812.4281 Superconductivity +0812.4323 +0903.0331 Exactly Solvable and Integrable Systems +0903.0741 +0903.0843 Artificial Intelligence +0903.0859 Quantitative Methods +0903.0873 Earth and Planetary Astrophysics +0903.0875 Other Condensed Matter +0903.0876 Dynamical Systems +0903.0877 Probability +0903.0880 Earth and Planetary Astrophysics +0903.0889 Software Engineering +0903.0892 Rings and Algebras +0903.0897 Combinatorics +0903.0898 Combinatorics +0903.0902 Cosmology and Nongalactic Astrophysics +0903.0906 Space Physics +0903.0907 Numerical Analysis +0903.0908 +0903.0909 Probability +0903.0910 Probability +0903.0911 Operator Algebras +0903.0912 Combinatorics +0903.0913 Statistics Theory +0903.0914 Software Engineering +0903.0919 +0903.0921 Superconductivity +0903.0922 Lattice +0903.0923 Earth and Planetary Astrophysics +0903.0924 Populations and Evolution +0903.0925 Superconductivity +0903.0927 Materials Science +0903.0928 Physics and Society +0903.0931 Operator Algebras +0903.0932 Cosmology and Nongalactic Astrophysics +0903.0935 Materials Science +0903.0936 +0903.0938 Data Structures and Algorithms +0903.0941 Dynamical Systems +0903.0946 Astrophysics of Galaxies +0903.0947 Phenomenology +0903.0952 Chaotic Dynamics +0903.0960 Other Computer Science +0903.0962 Discrete Mathematics +0903.0963 Other Condensed Matter +0903.0964 Analysis of PDEs +0903.0970 Soft Condensed Matter +0903.0975 Astrophysics of Galaxies +0903.0979 Solar and Stellar Astrophysics +0903.0980 Materials Science +0903.0981 Analysis of PDEs +0903.0984 Analysis of PDEs +0903.0987 Physics and Society +0903.0994 Strongly Correlated Electrons +0903.0997 +0903.0998 Atomic and Molecular Clusters +0903.0999 Cosmology and Nongalactic Astrophysics +0903.1000 Statistics Theory +0903.1002 Networking and Internet Architecture +0903.1005 Probability +0903.1017 Discrete Mathematics +0903.1033 Information Theory +0903.1034 Mesoscale and Nanoscale Physics +0903.1035 K-Theory and Homology +0903.1039 Representation Theory +0903.1040 Analysis of PDEs +0903.1041 Complex Variables +0903.1042 Materials Science +0903.1043 Representation Theory +0903.1044 Complex Variables +0903.1046 Superconductivity +0903.1049 Classical Physics +0903.1051 Probability +0903.1052 Differential Geometry +0903.1058 Complex Variables +0903.1062 Representation Theory +0903.1064 Other Condensed Matter +0903.1067 Other Condensed Matter +0903.1068 Algebraic Geometry +0903.1071 Probability +0903.1078 Data Analysis, Statistics and Probability +0903.1080 Mesoscale and Nanoscale Physics +0903.1082 Functional Analysis +0903.1086 Solar and Stellar Astrophysics +alg-geom/9712017 Algebraic Geometry +astro-ph/0612382 +cs/0611073 Information Theory +math/0401421 Geometric Topology +math/0404548 Geometric Topology +math/0409529 Geometric Topology +math/0504116 Geometric Topology +math/0504605 Geometric Topology +math/0508090 Symplectic Geometry +math/0512611 Functional Analysis +math/0610775 Geometric Topology +math/0612138 Geometric Topology +math/0702744 Probability +0804.4777 Materials Science +0806.4112 Statistical Mechanics +0808.3675 Strongly Correlated Electrons +0907.1017 High Energy Astrophysical Phenomena +0907.1091 General Mathematics +0907.1096 Quantum Gases +0907.1098 High Energy Astrophysical Phenomena +0907.1103 Data Structures and Algorithms +0907.1106 Representation Theory +0907.1107 Exactly Solvable and Integrable Systems +0907.1108 Algebraic Geometry +0907.1110 General Mathematics +0907.1116 Probability +0907.1119 Optics +0907.1121 Optics +0907.1122 Combinatorics +0907.1126 Quantum Gases +0907.1128 Theory +0907.1131 Computational Geometry +0907.1136 Algebraic Geometry +0907.1137 Representation Theory +0907.1138 +0907.1141 Rings and Algebras +0907.1142 Physics and Society +0907.1143 Functional Analysis +0907.1147 Classical Physics +0907.1152 Combinatorics +0907.1159 Genomics +0907.1161 Mesoscale and Nanoscale Physics +0907.1162 Materials Science +0907.1164 High Energy Astrophysical Phenomena +0907.1166 Combinatorics +0907.1168 High Energy Astrophysical Phenomena +0907.1172 Functional Analysis +0907.1175 Statistical Mechanics +0907.1181 Strongly Correlated Electrons +0907.1183 Quantum Algebra +0907.1184 Atomic Physics +0907.1194 Functional Analysis +0907.1195 Operator Algebras +0907.1201 Dynamical Systems +0907.1204 Biological Physics +0907.1205 Analysis of PDEs +0907.1206 Optimization and Control +0907.1207 Phenomenology +0907.1209 Biological Physics +0907.1210 General Physics +0907.1211 Instrumentation and Methods for Astrophysics +0907.1213 Optimization and Control +0907.1218 Solar and Stellar Astrophysics +0907.1219 Phenomenology +0907.1227 Cryptography and Security +0907.1230 Strongly Correlated Electrons +0907.1233 Strongly Correlated Electrons +0907.1235 Analysis of PDEs +0907.1238 Software Engineering +0907.1240 Exactly Solvable and Integrable Systems +0907.1241 Soft Condensed Matter +0907.1245 Human-Computer Interaction +0907.1251 Human-Computer Interaction +0907.1256 Cryptography and Security +0907.1266 Information Theory +0907.1273 Disordered Systems and Neural Networks +0907.1274 Optimization and Control +0907.1279 Logic +0907.1280 Computational Geometry +0907.1281 Combinatorics +cs/0604034 Computational Geometry +0704.1493 Combinatorics +0708.1139 Strongly Correlated Electrons +0712.2524 Quantum Algebra +0809.3712 +0903.0187 +0903.0698 Astrophysics of Galaxies +0903.1484 Information Theory +0903.2462 Rings and Algebras +0903.2484 Strongly Correlated Electrons +cond-mat/0006468 Mesoscale and Nanoscale Physics +cs/0410032 Computational Complexity +math/0601311 Group Theory +math/0610067 Combinatorics +0704.0014 Classical Analysis and ODEs +0704.0038 Optics +0704.0047 Neural and Evolutionary Computing +0704.0268 +0704.0306 +0704.0405 Probability +0704.0414 Optics +0704.0455 +0704.0456 +0704.0467 +0704.0472 Statistical Mechanics +0704.0527 Theory +0704.0602 Phenomenology +0704.0832 +0704.0877 +0704.0894 +0704.1033 Symplectic Geometry +0704.1154 Theory +0704.1304 +0704.1352 Analysis of PDEs +0704.1407 Materials Science +0704.1682 Materials Science +0704.1783 Logic in Computer Science +0704.2340 +0704.2348 Other Condensed Matter +0704.2388 General Mathematics +0704.2518 Combinatorics +0704.2659 Information Theory +0704.2670 +0704.2784 Metric Geometry +0704.3240 Lattice +0704.3286 Geometric Topology +0704.3736 +0705.0117 Theory +0705.0164 Theory +0705.0287 +0705.0295 Optics +0705.0443 Phenomenology +0705.1270 Statistics Theory +0705.1489 Phenomenology +0705.1537 +0705.1587 Strongly Correlated Electrons +0705.1932 Statistical Mechanics +0705.2171 +0705.2363 Machine Learning +0705.2589 +0705.3321 Probability +0705.3404 Theory +0705.3557 Mesoscale and Nanoscale Physics +0705.4005 Analysis of PDEs +0705.4066 +0705.4162 +0705.4230 Methodology +0705.4342 Physics and Society +0705.4394 Mesoscale and Nanoscale Physics +0705.4458 Experiment +0705.4605 Soft Condensed Matter +0706.0337 Soft Condensed Matter +0706.0604 Representation Theory +0706.0760 Quantitative Methods +0706.0826 Statistics Theory +0706.0880 +0706.1041 Other Condensed Matter +0706.1093 Statistical Mechanics +0706.1310 Theory +0706.1401 Applications +0706.1408 Methodology +0706.1498 Algebraic Geometry +0706.1783 Strongly Correlated Electrons +0706.2639 +0706.2677 Phenomenology +0706.2797 Information Retrieval +0706.2964 +0706.3137 Biomolecules +0706.3545 Commutative Algebra +0706.3601 Materials Science +0706.3959 +0707.0069 Materials Science +0707.0917 Algebraic Geometry +0707.1297 +0707.1342 Experiment +0707.1755 Superconductivity +0707.1966 Optimization and Control +0707.2084 Strongly Correlated Electrons +0707.2108 +0707.2387 Data Analysis, Statistics and Probability +0707.2630 Distributed, Parallel, and Cluster Computing +0707.2848 Theory +0707.2884 Statistics Theory +0707.3056 Differential Geometry +0707.3071 Instrumentation and Detectors +0707.3860 Probability +0707.3866 Probability +0707.3936 Networking and Internet Architecture +0707.3972 Computation and Language +0707.4043 Superconductivity +0707.4096 +0707.4358 Probability +0707.4387 Probability +0707.4542 Probability +0707.4596 Probability +0707.4600 Probability +0707.4621 Statistics Theory +0708.0089 Risk Management +0708.0098 Risk Management +0708.0132 Risk Management +0708.0135 Statistics Theory +0708.0175 Statistics Theory +0708.0177 Statistics Theory +0708.0285 Methodology +0708.0293 Methodology +0708.0295 Methodology +0708.0317 Methodology +0708.0336 Methodology +0708.0338 Methodology +0708.0346 Methodology +0708.0355 Methodology +0708.0390 Statistics Theory +0708.0425 Subcellular Processes +0708.0462 Statistics Theory +0708.0471 Statistics Theory +0708.0481 Statistics Theory +0708.0485 Statistics Theory +0708.0491 Statistics Theory +0708.0503 Statistics Theory +0708.0506 Statistics Theory +0708.0519 Statistics Theory +0708.0539 Mesoscale and Nanoscale Physics +0708.0715 Statistics Theory +0708.0907 Combinatorics +0708.0909 Data Structures and Algorithms +0708.0974 Applications +0708.0976 Statistics Theory +0708.0978 Methodology +0708.0980 Methodology +0708.0981 Statistics Theory +0708.0983 Statistics Theory +0708.1033 +0708.1054 Statistics Theory +0708.1070 Statistics Theory +0708.1079 Methodology +0708.1107 Methodology +0708.1358 Superconductivity +0708.1429 +0708.1665 Mesoscale and Nanoscale Physics +0708.1671 Probability +0708.1676 Probability +0708.1770 Theory +0708.1820 Statistics Theory +0708.1827 Experiment +0708.1885 Statistics Theory +0708.1896 Statistics Theory +0708.1901 Statistics Theory +0708.1913 Statistics Theory +0708.1966 Superconductivity +0708.2143 Materials Science +0708.2149 Statistics Theory +0708.2177 Statistics Theory +0708.2207 Statistics Theory +0708.2219 Statistics Theory +0708.2227 Statistics Theory +0708.2303 Artificial Intelligence +0708.2321 Statistics Theory +0708.2363 Discrete Mathematics +0708.2380 Statistics Theory +0708.2429 Materials Science +0708.2462 Information Theory +0708.2805 General Finance +0708.2880 +0708.3025 Complex Variables +0708.3545 Applications +0708.3601 Applications +0708.3777 Methodology +0708.3779 Methodology +0708.3781 Methodology +0708.3796 Methodology +0708.3965 Methodology +0708.3974 Methodology +0708.3986 Materials Science +0708.4039 Geometric Topology +0708.4081 Statistics Theory +0708.4138 Probability +0708.4152 Computation +0708.4165 Statistics Theory +0708.4186 Probability +0708.4236 Phenomenology +0708.4272 Statistics Theory +0708.4273 +0708.4283 Statistics Theory +0708.4350 Applications +0709.0166 +0709.0244 +0709.0304 Fluid Dynamics +0709.0322 Physics and Society +0709.0366 Applications +0709.0427 Applications +0709.0620 Probability +0709.0626 Statistics Theory +0709.0627 Probability +0709.0637 Probability +0709.0727 Mesoscale and Nanoscale Physics +0709.1039 Probability +0709.1047 Combinatorics +0709.1118 Differential Geometry +0709.1243 Symplectic Geometry +0709.1309 Computation +0709.1408 +0709.1459 +0709.1513 +0709.1587 Materials Science +0709.1893 Phenomenology +0709.2010 Dynamical Systems +0709.2233 Probability +0709.2500 +0709.2612 Probability +0709.3246 Statistics Theory +0709.3584 Classical Physics +0709.3665 Soft Condensed Matter +0709.3765 Methodology +0709.3948 Theory +0709.4038 +0709.4263 Combinatorics +0709.4297 Probability +0709.4372 Materials Science +0709.4613 +0710.0236 Probability +0710.1543 Differential Geometry +0710.1548 Theory +0710.1596 Probability +0710.1606 Probability +0710.1784 Distributed, Parallel, and Cluster Computing +0710.1803 Mesoscale and Nanoscale Physics +0710.2058 Phenomenology +0710.2069 Optics +0710.2111 Experiment +0710.2213 Phenomenology +0710.2479 Other Condensed Matter +0710.2591 +0710.3205 +0710.3458 Statistics Theory +0710.3491 Statistics Theory +0710.3509 Statistics Theory +0710.3640 Probability +0710.3654 Statistics Theory +0710.3676 Statistics Theory +0710.3679 Statistics Theory +0710.3848 Mesoscale and Nanoscale Physics +0710.4217 Statistics Theory +0710.4303 K-Theory and Homology +0710.4389 Probability +0710.4423 Lattice +0710.4459 Methodology +0710.4563 +0710.4618 Methodology +0710.4622 Methodology +0710.5004 Statistics Theory +0710.5009 Methodology +0710.5013 Methodology +0710.5016 Methodology +0710.5019 Methodology +0710.5072 Methodology +0710.5077 Methodology +0710.5081 Methodology +0710.5348 Distributed, Parallel, and Cluster Computing +0710.5380 Probability +0710.5404 Probability +0710.5434 Probability +0710.5477 Mesoscale and Nanoscale Physics +0710.5594 Probability +0710.5602 Probability +0710.5750 Phenomenology +0711.0120 Strongly Correlated Electrons +0711.0174 Materials Science +0711.0292 Materials Science +0711.0352 K-Theory and Homology +0711.0467 +0711.0474 Materials Science +0711.0580 +0711.0649 Probability +0711.0720 Analysis of PDEs +0711.0807 Statistics Theory +0711.0951 Analysis of PDEs +0711.1141 Quantitative Methods +0711.1174 Theory +0711.1261 Physics and Society +0711.1484 Statistical Mechanics +0711.1530 +0711.1557 +0711.1965 Statistics Theory +0711.2340 Materials Science +0711.2434 Machine Learning +0711.2488 Optimization and Control +0711.2621 +0711.3041 +0711.3118 Phenomenology +0711.3271 Methodology +0711.3345 Exactly Solvable and Integrable Systems +0711.3396 Phenomenology +0711.3577 Statistics Theory +0711.3589 Statistics Theory +0711.3624 Instrumentation and Detectors +0711.3672 Distributed, Parallel, and Cluster Computing +0711.3714 +0711.3941 Cryptography and Security +0711.4442 Probability +0711.4486 Statistics Theory +0711.4532 Theory +0712.0111 Combinatorics +0712.0200 +0712.0283 Methodology +0712.0315 +0712.0511 +0712.0721 Statistics Theory +0712.0788 Representation Theory +0712.0830 Accelerator Physics +0712.0892 Statistics Theory +0712.0898 Statistics Theory +0712.0974 Applications +0712.1106 Applications +0712.1124 Applications +0712.1458 Applications +0712.1477 Applications +0712.1486 Applications +0712.1497 Probability +0712.1610 Theory +0712.1950 Accelerator Physics +0712.2021 Algebraic Geometry +0712.2040 Theory +0712.2065 Mesoscale and Nanoscale Physics +0712.2115 Applications +0712.2118 Theory +0712.2124 Applications +0712.2150 Applications +0712.2366 Statistical Mechanics +0712.2657 Methodology +0712.3126 Biological Physics +0712.3353 Probability +0712.3428 Trading and Market Microstructure +0712.3440 Probability +0712.3442 Probability +0712.3459 Probability +0712.3615 Theory +0712.3633 Phenomenology +0712.3900 Quantitative Methods +0712.4288 Physics and Society +0801.0084 Analysis of PDEs +0801.0186 Statistical Mechanics +0801.0689 +0801.0754 Plasma Physics +0801.0993 Phenomenology +0801.1126 Information Theory +0801.1158 Statistics Theory +0801.1435 Theory +0801.1784 Discrete Mathematics +0801.1827 +0801.1941 +0801.2233 Information Theory +0801.2289 +0801.2313 +0801.2328 +0801.2367 Mesoscale and Nanoscale Physics +0801.2602 +0801.2624 Statistics Theory +0801.2909 +0801.3145 Probability +0801.3184 Probability +0801.3326 Theory +0801.3443 Soft Condensed Matter +0801.3886 +0801.4068 Physics and Society +0801.4207 Methodology +0801.4258 +0801.4263 Methodology +0801.4288 Algebraic Geometry +0801.4400 Probability +0801.4416 Number Theory +0801.4442 Methodology +0802.0069 Statistics Theory +0802.0137 Databases +0802.0145 Mesoscale and Nanoscale Physics +0802.0277 Algebraic Geometry +0802.0537 +0802.0746 Methodology +0802.0747 Methodology +0802.0749 Methodology +0802.0752 Methodology +0802.0836 Atomic Physics +0802.0875 Materials Science +0802.0920 Strongly Correlated Electrons +0802.1123 Distributed, Parallel, and Cluster Computing +0802.2050 Machine Learning +0802.2129 Superconductivity +0802.2297 +0802.2361 +0802.2504 +0802.2787 +0802.2906 Machine Learning +0802.4259 Biomolecules +0802.4378 +0803.0052 Materials Science +0803.0213 Materials Science +0803.0456 +0803.0661 Computational Complexity +0803.0696 Phenomenology +0803.0802 Quantitative Methods +0803.0883 Phenomenology +0803.1394 +0803.1509 +0803.1556 Phenomenology +0803.1708 Statistics Theory +0803.1718 Statistics Theory +0803.2071 Geometric Topology +0803.2283 Risk Management +0803.2478 +0803.2754 Differential Geometry +0803.3158 +0803.3216 Other Condensed Matter +0803.3589 Chaotic Dynamics +0803.3644 Materials Science +0803.3851 +0803.3874 Strongly Correlated Electrons +0803.4183 Theory +0803.4259 Combinatorics +0803.4306 +0803.4474 Theory +0803.4502 +0804.0017 Computational Physics +0804.0212 Instrumentation and Detectors +0804.0303 Chaotic Dynamics +0804.0340 Analysis of PDEs +0804.0412 Theory +0804.0540 +0804.0795 Superconductivity +0804.1102 +0804.1121 Phenomenology +0804.1800 +0804.1822 Experiment +0804.1928 Computers and Society +0804.1969 +0804.2442 Physics and Society +0804.2639 Strongly Correlated Electrons +0804.2742 +0804.3097 Materials Science +0804.3128 Other Quantitative Biology +0804.3271 Information Theory +0804.3319 Physics and Society +0804.3901 Dynamical Systems +0804.3920 Differential Geometry +0804.4457 +0804.4556 +0804.4701 Information Theory +0804.4723 +0805.0024 +0805.0176 Statistical Mechanics +0805.0269 +0805.0851 Data Structures and Algorithms +0805.0972 Statistical Mechanics +0805.1166 +0805.1183 +0805.1632 +0805.2055 Statistical Mechanics +0805.2137 Phenomenology +0805.2627 Other Computer Science +0805.2976 Physics and Society +0805.3086 +0805.3439 Phenomenology +0805.4165 +0805.4182 Strongly Correlated Electrons +0805.4223 Physics Education +0805.4425 Information Theory +0805.4528 Experiment +0805.4638 +0805.4668 Superconductivity +0805.4716 Algebraic Geometry +0805.4833 Instrumentation and Detectors +0806.0464 +0806.0527 Mesoscale and Nanoscale Physics +0806.0599 Physics Education +0806.0734 Analysis of PDEs +0806.0809 Theory +0806.0814 Other Condensed Matter +0806.0972 Theory +0806.1039 Disordered Systems and Neural Networks +0806.1051 Theory +0806.1292 Genomics +0806.1781 +0806.1799 Other Condensed Matter +0806.1923 Phenomenology +0806.2011 Algebraic Geometry +0806.2565 Phenomenology +0806.2981 +0806.3626 Combinatorics +0806.3738 Neurons and Cognition +0806.3741 Neurons and Cognition +0806.3885 Computer Vision and Pattern Recognition +0806.4058 +0806.4251 +0806.4290 Phenomenology +0806.4449 Populations and Evolution +0807.0057 +0807.0144 Mesoscale and Nanoscale Physics +0807.0149 Phenomenology +0807.0946 Materials Science +0807.1077 Strongly Correlated Electrons +0807.1210 +0807.1243 Mesoscale and Nanoscale Physics +0807.1263 Superconductivity +0807.1434 Superconductivity +0807.1519 Data Analysis, Statistics and Probability +0807.1637 +0807.1673 Superconductivity +0807.1975 Number Theory +0807.2070 Fluid Dynamics +0807.2071 Fluid Dynamics +0807.2172 General Physics +0807.2472 Computational Geometry +0807.2636 Logic in Computer Science +0807.2678 Digital Libraries +0807.2805 Soft Condensed Matter +0807.2857 Theory +0807.2920 Instrumentation and Detectors +0807.3164 Mesoscale and Nanoscale Physics +0807.3349 Phenomenology +0807.3455 Statistical Mechanics +0807.3500 +0807.3622 Computation and Language +0807.3760 +0807.4163 Data Analysis, Statistics and Probability +0807.4344 Biomolecules +0807.4534 Other Condensed Matter +0807.4705 Soft Condensed Matter +0807.4783 Medical Physics +0807.4924 Theory +0807.4973 Optics +0807.5054 Materials Science +0808.0200 Materials Science +0808.0262 Symplectic Geometry +0808.0396 Geometric Topology +0808.0540 Logic in Computer Science +0808.0663 Popular Physics +0808.0664 Experiment +0808.1094 Phenomenology +0808.1259 Optics +0808.1263 Atomic and Molecular Clusters +0808.1626 General Physics +0808.1905 Plasma Physics +0808.2205 Mesoscale and Nanoscale Physics +0808.2282 +0808.2428 Digital Libraries +0808.2828 Superconductivity +0808.3233 +0808.3296 Digital Libraries +0808.3392 Geometric Topology +0808.3563 Computation and Language +0808.3569 Multiagent Systems +0808.3793 +0808.3795 Experiment +0808.3954 Chaotic Dynamics +0808.4068 Experiment +0809.0369 Algebraic Geometry +0809.0371 +0809.0629 +0809.0656 Dynamical Systems +0809.0664 +0809.0837 Experiment +0809.0884 Human-Computer Interaction +0809.1062 +0809.1205 Information Theory +0809.1407 Experiment +0809.1484 +0809.1643 Numerical Analysis +0809.1941 Optimization and Control +0809.1966 Superconductivity +0809.2192 Strongly Correlated Electrons +0809.2214 Logic in Computer Science +0809.2306 Quantum Algebra +0809.2526 Experiment +0809.2663 Plasma Physics +0809.3027 Artificial Intelligence +0809.3083 Computer Vision and Pattern Recognition +0809.3211 Strongly Correlated Electrons +0809.3252 +0809.3486 Statistics Theory +0809.3694 +0809.3840 +0809.3847 Theory +0809.3886 Phenomenology +0809.4996 +0809.5023 Information Theory +0809.5072 +0809.5096 Information Theory +0810.0649 Computational Physics +0810.0941 +0810.1015 +0810.1105 Information Theory +0810.1183 +0810.1216 Instrumentation and Detectors +0810.1601 Fluid Dynamics +0810.1802 Phenomenology +0810.2129 Chemical Physics +0810.2275 Atmospheric and Oceanic Physics +0810.2531 Superconductivity +0810.3058 Data Structures and Algorithms +0810.3444 Experiment +0810.3453 Distributed, Parallel, and Cluster Computing +0810.3527 Experiment +0810.3673 Theory +0810.3974 +0810.4199 Other Condensed Matter +0810.4366 Information Theory +0810.4401 Learning +0810.4436 Superconductivity +0810.4461 +0810.4611 Learning +0810.4694 Operator Algebras +0810.4724 Tissues and Organs +0810.5021 +0810.5323 Medical Physics +0810.5467 Instrumentation and Detectors +0810.5535 Information Theory +0811.0122 Materials Science +0811.0241 Information Theory +0811.0335 Artificial Intelligence +0811.0488 Probability +0811.0777 Information Theory +0811.0845 +0811.1018 Experiment +0811.1171 +0811.1810 Differential Geometry +0811.1815 Instrumentation and Detectors +0811.2654 +0811.2734 Optics +0811.2809 Strongly Correlated Electrons +0811.2936 Theory +0811.3025 Accelerator Physics +0811.3366 Commutative Algebra +0811.3367 Strongly Correlated Electrons +0811.3417 Theory +0811.3762 Mesoscale and Nanoscale Physics +0811.3824 Lattice +0811.3835 +0811.4013 Physics and Society +0811.4052 Space Physics +0811.4731 +0812.0394 General Physics +0812.0397 General Physics +0812.0443 Probability +0812.0690 Mesoscale and Nanoscale Physics +0812.0709 +0812.0875 Statistics Theory +0812.1010 +0812.1093 Networking and Internet Architecture +0812.1819 +0812.2070 Statistical Mechanics +0812.2495 Chaotic Dynamics +0812.3625 Theory +0812.4388 Experiment +0812.4407 Theory +0812.4485 Cryptography and Security +0812.4496 Phenomenology +0812.4714 +0812.4861 Combinatorics +0812.4864 Quantum Algebra +0812.4973 Programming Languages +0812.4980 Instrumentation and Detectors +0812.5049 Materials Science +0812.5111 +0901.1236 Statistical Mechanics +0901.2926 Phenomenology +0901.3974 Statistical Mechanics +0901.4096 Superconductivity +0902.0599 Strongly Correlated Electrons +0902.0687 Statistical Mechanics +0902.1764 Phenomenology +0902.2564 Algebraic Topology +0902.2860 +0903.2042 Theory +0903.2062 Cosmology and Nongalactic Astrophysics +0903.4790 Fluid Dynamics +0903.4892 Cosmology and Nongalactic Astrophysics +0904.0491 Representation Theory +0904.3965 Probability +0904.4219 Statistical Mechanics +0905.0521 Soft Condensed Matter +0905.0853 Phenomenology +0905.1575 Fluid Dynamics +0905.1635 Chemical Physics +0905.1711 Superconductivity +0905.3592 Superconductivity +0905.4378 Statistics Theory +0905.4656 Information Theory +0906.0857 Formal Languages and Automata Theory +0906.0929 Soft Condensed Matter +0906.3440 +0906.3505 Metric Geometry +0906.3721 Materials Science +0906.4876 Phenomenology +0906.4909 +0906.4926 Theory +0906.4959 Theory +0906.4961 Theory +0906.4978 Theory +0906.5568 +0907.0652 Quantum Gases +0907.2017 Solar and Stellar Astrophysics +0907.2687 Quantum Gases +0907.3928 Combinatorics +0908.3280 Information Retrieval +0908.3499 Representation Theory +0909.1312 +0909.1382 +0909.2964 Algebraic Geometry +0909.3054 +0909.3834 +0909.3937 Quantum Gases +0909.4555 Physics and Society +0909.4644 Quantum Gases +0909.4724 Physics and Society +0909.4797 Solar and Stellar Astrophysics +0909.4800 Instrumentation and Detectors +0909.4806 Number Theory +0909.4807 Information Theory +0909.4808 Data Structures and Algorithms +0909.4815 Dynamical Systems +0909.4818 Commutative Algebra +0909.4823 +0909.4830 Functional Analysis +0909.4835 Quantum Algebra +0909.4836 Atomic Physics +0909.4844 Representation Theory +0909.4848 K-Theory and Homology +0909.4854 Functional Analysis +0909.4858 Networking and Internet Architecture +0909.4860 Cryptography and Security +0909.4863 Commutative Algebra +0909.4865 Algebraic Geometry +0909.4866 Theory +0909.4867 Phenomenology +0909.4868 Geophysics +0909.4869 Number Theory +0909.4870 Optics +0909.4871 Optimization and Control +0909.4872 Accelerator Physics +0909.4874 Instrumentation and Detectors +0909.4875 Soft Condensed Matter +0909.4876 Logic +0909.4877 Representation Theory +0909.4881 Probability +0909.4883 +0909.4884 Functional Analysis +0909.4887 +0909.4888 Mathematical Software +0909.4889 Cryptography and Security +0909.4890 +0909.4892 Number Theory +0909.4894 Experiment +0909.4897 Phenomenology +0909.4898 Differential Geometry +0909.4904 +0909.4906 +0909.4907 +0909.4909 +0909.4918 +0909.4920 Materials Science +0909.4921 General Physics +0909.4923 Combinatorics +0909.4926 Functional Analysis +0909.4930 Accelerator Physics +0909.4933 Probability +0909.4934 Networking and Internet Architecture +0909.4935 Probability +0909.4937 Complex Variables +0909.4941 Fluid Dynamics +0909.4946 Logic +0909.4951 Fluid Dynamics +0909.4953 Astrophysics of Galaxies +0909.4956 Symbolic Computation +0909.4960 Combinatorics +0909.4962 Metric Geometry +0909.4967 Metric Geometry +0909.4969 Data Structures and Algorithms +0909.4970 Phenomenology +0909.4974 Instrumentation and Detectors +0909.4982 Materials Science +0909.4987 Data Analysis, Statistics and Probability +0909.4989 +0909.4991 +0909.4992 +0909.4995 Information Theory +0909.4999 High Energy Astrophysical Phenomena +0909.5000 Learning +0909.5004 General Topology +0909.5005 Geometric Topology +0909.5007 Information Theory +0909.5010 Category Theory +0909.5012 Software Engineering +0909.5013 +0909.5015 Classical Physics +0909.5016 Classical Physics +0909.5017 Classical Physics +0909.5018 Classical Physics +0909.5019 Classical Physics +0909.5020 Classical Physics +0909.5021 Analysis of PDEs +0909.5022 Classical Physics +0909.5023 Classical Physics +0909.5024 Number Theory +0909.5029 Computational Complexity +0909.5032 Discrete Mathematics +0909.5033 Discrete Mathematics +0909.5038 Computational Complexity +0909.5042 Analysis of PDEs +0909.5043 Mesoscale and Nanoscale Physics +0909.5051 High Energy Astrophysical Phenomena +0909.5055 Phenomenology +0909.5062 Fluid Dynamics +0909.5064 Operating Systems +0909.5067 Soft Condensed Matter +0909.5071 Rings and Algebras +0909.5072 History and Overview +0909.5074 Computational Physics +0909.5085 General Topology +0909.5087 Software Engineering +0909.5089 Geophysics +0909.5091 Software Engineering +0909.5093 Numerical Analysis +0909.5099 Artificial Intelligence +0909.5103 +0909.5106 Numerical Analysis +0909.5110 Fluid Dynamics +0909.5120 Information Theory +0909.5137 Combinatorics +0909.5142 Statistical Mechanics +0909.5144 Plasma Physics +0909.5151 Functional Analysis +0909.5153 Algebraic Geometry +0909.5156 Phenomenology +0909.5159 +0909.5163 Solar and Stellar Astrophysics +0909.5166 Information Retrieval +0909.5168 Statistics Theory +0909.5169 Geometric Topology +0909.5170 Algebraic Geometry +0909.5173 Data Analysis, Statistics and Probability +0909.5179 Information Theory +astro-ph/0005111 +astro-ph/0201224 +astro-ph/0201421 +astro-ph/0201525 +astro-ph/0203316 +astro-ph/0203522 +astro-ph/0204220 +astro-ph/0204320 +astro-ph/0204411 +astro-ph/0205388 +astro-ph/0205520 +astro-ph/0206110 +astro-ph/0206320 +astro-ph/0206412 +astro-ph/0207156 +astro-ph/0207517 +astro-ph/0207636 +astro-ph/0207653 +astro-ph/0207671 +astro-ph/0209021 +astro-ph/0209596 +astro-ph/0211571 +astro-ph/0211621 +astro-ph/0212147 +astro-ph/0212334 +astro-ph/0301087 +astro-ph/0301324 +astro-ph/0301388 +astro-ph/0301394 +astro-ph/0301407 +astro-ph/0301507 +astro-ph/0301520 +astro-ph/0302216 +astro-ph/0302461 +astro-ph/0302495 +astro-ph/0303232 +astro-ph/0303233 +astro-ph/0303245 +astro-ph/0303339 +astro-ph/0303623 +astro-ph/0303636 +astro-ph/0304048 +astro-ph/0304257 +astro-ph/0304533 +astro-ph/0305021 +astro-ph/0305095 +astro-ph/0305177 +astro-ph/0305345 +astro-ph/0305418 +astro-ph/0305419 +astro-ph/0305467 +astro-ph/0305603 +astro-ph/0306079 +astro-ph/0306240 +astro-ph/0306247 +astro-ph/0306342 +astro-ph/0306365 +astro-ph/0307019 +astro-ph/0307185 +astro-ph/0307287 +astro-ph/0307357 +astro-ph/0307447 +astro-ph/0307501 +astro-ph/0308079 +astro-ph/0308100 +astro-ph/0308228 +astro-ph/0308266 +astro-ph/0309543 +astro-ph/0309629 +astro-ph/0310124 +astro-ph/0310243 +astro-ph/0310506 +astro-ph/0310910 +astro-ph/0311022 +astro-ph/0311108 +astro-ph/0311173 +astro-ph/0311381 +astro-ph/0311473 +astro-ph/0311528 +astro-ph/0312183 +astro-ph/0312369 +astro-ph/0312576 +astro-ph/0312647 +astro-ph/0401180 +astro-ph/0401420 +astro-ph/0401473 +astro-ph/0401509 +astro-ph/0401517 +astro-ph/0401530 +astro-ph/0402173 +astro-ph/0402482 +astro-ph/0402597 +astro-ph/0402673 +astro-ph/0403041 +astro-ph/0403198 +astro-ph/0403215 +astro-ph/0403221 +astro-ph/0403240 +astro-ph/0403324 +astro-ph/0403340 +astro-ph/0403404 +astro-ph/0403447 +astro-ph/0403632 +astro-ph/0403712 +astro-ph/0404099 +astro-ph/0404112 +astro-ph/0404159 +astro-ph/0404392 +astro-ph/0405103 +astro-ph/0405208 +astro-ph/0405232 +astro-ph/0405446 +astro-ph/0405487 +astro-ph/0405596 +astro-ph/0406502 +astro-ph/0406550 +astro-ph/0406552 +astro-ph/0407096 +astro-ph/0407140 +astro-ph/0407228 +astro-ph/0407232 +astro-ph/0407343 +astro-ph/0407516 +astro-ph/0408039 +astro-ph/0408071 +astro-ph/0408519 +astro-ph/0408573 +astro-ph/0409009 +astro-ph/0409264 +astro-ph/0409620 +astro-ph/0410115 +astro-ph/0410161 +astro-ph/0410275 +astro-ph/0410297 +astro-ph/0410713 +astro-ph/0411022 +astro-ph/0411071 +astro-ph/0411205 +astro-ph/0411553 +astro-ph/0411605 +astro-ph/0412434 +astro-ph/0501460 +astro-ph/0501549 +astro-ph/0502105 +astro-ph/0502351 +astro-ph/0502423 +astro-ph/0503014 +astro-ph/0503152 +astro-ph/0503417 +astro-ph/0503504 +astro-ph/0503592 +astro-ph/0503622 +astro-ph/0503706 +astro-ph/0504117 +astro-ph/0504257 +astro-ph/0504397 +astro-ph/0504487 +astro-ph/0504506 +astro-ph/0504516 +astro-ph/0504524 +astro-ph/0505295 +astro-ph/0505391 +astro-ph/0505458 +astro-ph/0505484 +astro-ph/0505529 +astro-ph/0505604 +astro-ph/0506065 +astro-ph/0506110 +astro-ph/0506260 +astro-ph/0506556 +astro-ph/0506559 +astro-ph/0506675 +astro-ph/0506700 +astro-ph/0506706 +astro-ph/0506709 +astro-ph/0506731 +astro-ph/0507120 +astro-ph/0507472 +astro-ph/0507555 +astro-ph/0507701 +astro-ph/0508061 +astro-ph/0508666 +astro-ph/0509353 +astro-ph/0509484 +astro-ph/0509516 +astro-ph/0509542 +astro-ph/0509803 +astro-ph/0509812 +astro-ph/0510292 +astro-ph/0510349 +astro-ph/0510382 +astro-ph/0510721 +astro-ph/0511030 +astro-ph/0511112 +astro-ph/0511169 +astro-ph/0511666 +astro-ph/0511839 +astro-ph/0512256 +astro-ph/0512645 +astro-ph/0601406 +astro-ph/0601456 +astro-ph/0602225 +astro-ph/0602330 +astro-ph/0602373 +astro-ph/0602374 +astro-ph/0602398 +astro-ph/0603360 +astro-ph/0603449 +astro-ph/0603451 +astro-ph/0604063 +astro-ph/0604184 +astro-ph/0604249 +astro-ph/0604430 +astro-ph/0604507 +astro-ph/0605357 +astro-ph/0605636 +astro-ph/0605719 +astro-ph/0606033 +astro-ph/0606561 +astro-ph/0606697 +astro-ph/0607057 +astro-ph/0607061 +astro-ph/0607563 +astro-ph/0608006 +astro-ph/0608060 +astro-ph/0608242 +astro-ph/0608697 +astro-ph/0609097 +astro-ph/0609198 +astro-ph/0609417 +astro-ph/0610050 +astro-ph/0610259 +astro-ph/0610412 +astro-ph/0610792 +astro-ph/0610796 +astro-ph/0610805 +astro-ph/0610906 +astro-ph/0611037 +astro-ph/0611113 +astro-ph/0611221 +astro-ph/0611256 +astro-ph/0611351 +astro-ph/0611364 +astro-ph/0611586 +astro-ph/0611623 +astro-ph/0612090 +astro-ph/0612334 +astro-ph/0612462 +astro-ph/0612667 +astro-ph/0701333 +astro-ph/0701434 +astro-ph/0701772 +astro-ph/0702127 +astro-ph/0702146 +astro-ph/0702370 +astro-ph/0703693 +astro-ph/9307002 +astro-ph/9312039 +astro-ph/9402031 +astro-ph/9610219 +astro-ph/9612141 +astro-ph/9701173 +astro-ph/9901135 +cond-mat/0201404 Soft Condensed Matter +cond-mat/0201499 Superconductivity +cond-mat/0202064 +cond-mat/0202368 Superconductivity +cond-mat/0203045 +cond-mat/0203397 +cond-mat/0205019 Strongly Correlated Electrons +cond-mat/0205544 Mesoscale and Nanoscale Physics +cond-mat/0205574 Soft Condensed Matter +cond-mat/0206217 Superconductivity +cond-mat/0207138 Statistical Mechanics +cond-mat/0207545 Disordered Systems and Neural Networks +cond-mat/0208107 Disordered Systems and Neural Networks +cond-mat/0208325 Materials Science +cond-mat/0208344 Disordered Systems and Neural Networks +cond-mat/0208456 Statistical Mechanics +cond-mat/0209084 Mesoscale and Nanoscale Physics +cond-mat/0209569 Statistical Mechanics +cond-mat/0209622 Statistical Mechanics +cond-mat/0210021 Disordered Systems and Neural Networks +cond-mat/0210117 Statistical Mechanics +cond-mat/0210584 Strongly Correlated Electrons +cond-mat/0211005 Superconductivity +cond-mat/0211480 +cond-mat/0212121 Materials Science +cond-mat/0301207 Superconductivity +cond-mat/0301263 Strongly Correlated Electrons +cond-mat/0301406 Statistical Mechanics +cond-mat/0301511 Mesoscale and Nanoscale Physics +cond-mat/0302161 Disordered Systems and Neural Networks +cond-mat/0302258 +cond-mat/0303089 Statistical Mechanics +cond-mat/0304147 Strongly Correlated Electrons +cond-mat/0304270 Mesoscale and Nanoscale Physics +cond-mat/0304412 Mesoscale and Nanoscale Physics +cond-mat/0305036 Statistical Mechanics +cond-mat/0305409 Superconductivity +cond-mat/0305565 Disordered Systems and Neural Networks +cond-mat/0305712 Superconductivity +cond-mat/0306082 Mesoscale and Nanoscale Physics +cond-mat/0306104 Strongly Correlated Electrons +cond-mat/0306590 Soft Condensed Matter +cond-mat/0306672 Strongly Correlated Electrons +cond-mat/0306675 +cond-mat/0307025 Strongly Correlated Electrons +cond-mat/0307178 Materials Science +cond-mat/0307278 Disordered Systems and Neural Networks +cond-mat/0307356 +cond-mat/0307363 Statistical Mechanics +cond-mat/0307474 Materials Science +cond-mat/0307602 Strongly Correlated Electrons +cond-mat/0307735 Statistical Mechanics +cond-mat/0309025 +cond-mat/0309077 Materials Science +cond-mat/0309588 Materials Science +cond-mat/0310505 Soft Condensed Matter +cond-mat/0311473 Strongly Correlated Electrons +cond-mat/0312252 Soft Condensed Matter +cond-mat/0312312 +cond-mat/0312463 Statistical Mechanics +cond-mat/0312498 Soft Condensed Matter +cond-mat/0312540 Strongly Correlated Electrons +cond-mat/0312686 Mesoscale and Nanoscale Physics +cond-mat/0401273 Superconductivity +cond-mat/0401351 Disordered Systems and Neural Networks +cond-mat/0401469 Disordered Systems and Neural Networks +cond-mat/0402143 Disordered Systems and Neural Networks +cond-mat/0402217 Statistical Mechanics +cond-mat/0402514 Mesoscale and Nanoscale Physics +cond-mat/0402538 Disordered Systems and Neural Networks +cond-mat/0403022 Other Condensed Matter +cond-mat/0403109 Soft Condensed Matter +cond-mat/0403123 Strongly Correlated Electrons +cond-mat/0403144 Mesoscale and Nanoscale Physics +cond-mat/0403249 Mesoscale and Nanoscale Physics +cond-mat/0403450 Mesoscale and Nanoscale Physics +cond-mat/0403693 Other Condensed Matter +cond-mat/0404005 Superconductivity +cond-mat/0404049 Mesoscale and Nanoscale Physics +cond-mat/0404390 Mesoscale and Nanoscale Physics +cond-mat/0404393 Materials Science +cond-mat/0404512 Materials Science +cond-mat/0405261 Mesoscale and Nanoscale Physics +cond-mat/0405406 Statistical Mechanics +cond-mat/0405453 Mesoscale and Nanoscale Physics +cond-mat/0405463 Materials Science +cond-mat/0405556 Strongly Correlated Electrons +cond-mat/0405687 Mesoscale and Nanoscale Physics +cond-mat/0406089 Superconductivity +cond-mat/0406246 Soft Condensed Matter +cond-mat/0406320 Materials Science +cond-mat/0406491 Superconductivity +cond-mat/0407148 Disordered Systems and Neural Networks +cond-mat/0407222 Materials Science +cond-mat/0407269 Superconductivity +cond-mat/0407333 Statistical Mechanics +cond-mat/0407339 Disordered Systems and Neural Networks +cond-mat/0408011 Superconductivity +cond-mat/0408083 Strongly Correlated Electrons +cond-mat/0408252 Soft Condensed Matter +cond-mat/0408313 Strongly Correlated Electrons +cond-mat/0408415 Superconductivity +cond-mat/0408678 Materials Science +cond-mat/0409127 Disordered Systems and Neural Networks +cond-mat/0409492 Soft Condensed Matter +cond-mat/0409523 Mesoscale and Nanoscale Physics +cond-mat/0409543 Materials Science +cond-mat/0409613 Statistical Mechanics +cond-mat/0409692 Statistical Mechanics +cond-mat/0410074 Statistical Mechanics +cond-mat/0410147 Strongly Correlated Electrons +cond-mat/0410155 Mesoscale and Nanoscale Physics +cond-mat/0410211 Materials Science +cond-mat/0410445 Strongly Correlated Electrons +cond-mat/0410493 Soft Condensed Matter +cond-mat/0411499 Mesoscale and Nanoscale Physics +cond-mat/0411671 Strongly Correlated Electrons +cond-mat/0412056 Other Condensed Matter +cond-mat/0412113 Materials Science +cond-mat/0412132 Statistical Mechanics +cond-mat/0412176 Statistical Mechanics +cond-mat/0412444 Materials Science +cond-mat/0412482 Disordered Systems and Neural Networks +cond-mat/0412495 Statistical Mechanics +cond-mat/0412649 Other Condensed Matter +cond-mat/0412690 Superconductivity +cond-mat/0501313 Strongly Correlated Electrons +cond-mat/0501581 Mesoscale and Nanoscale Physics +cond-mat/0502150 Materials Science +cond-mat/0502465 Materials Science +cond-mat/0503130 Other Condensed Matter +cond-mat/0503295 Mesoscale and Nanoscale Physics +cond-mat/0503337 Statistical Mechanics +cond-mat/0503445 Mesoscale and Nanoscale Physics +cond-mat/0503521 Materials Science +cond-mat/0504034 Strongly Correlated Electrons +cond-mat/0504290 Superconductivity +cond-mat/0504292 Materials Science +cond-mat/0504374 Strongly Correlated Electrons +cond-mat/0504396 Strongly Correlated Electrons +cond-mat/0504413 Statistical Mechanics +cond-mat/0505185 Disordered Systems and Neural Networks +cond-mat/0505672 Mesoscale and Nanoscale Physics +cond-mat/0507023 Other Condensed Matter +cond-mat/0507053 Strongly Correlated Electrons +cond-mat/0507216 Disordered Systems and Neural Networks +cond-mat/0507226 Strongly Correlated Electrons +cond-mat/0507500 Superconductivity +cond-mat/0508163 Mesoscale and Nanoscale Physics +cond-mat/0508330 Statistical Mechanics +cond-mat/0508749 Materials Science +cond-mat/0508762 Soft Condensed Matter +cond-mat/0509240 Strongly Correlated Electrons +cond-mat/0509298 Materials Science +cond-mat/0509455 Materials Science +cond-mat/0510121 Other Condensed Matter +cond-mat/0510156 Mesoscale and Nanoscale Physics +cond-mat/0510169 Disordered Systems and Neural Networks +cond-mat/0510557 Disordered Systems and Neural Networks +cond-mat/0510607 Disordered Systems and Neural Networks +cond-mat/0510668 Disordered Systems and Neural Networks +cond-mat/0510699 Statistical Mechanics +cond-mat/0511119 Disordered Systems and Neural Networks +cond-mat/0511293 Strongly Correlated Electrons +cond-mat/0511474 Statistical Mechanics +cond-mat/0511526 Statistical Mechanics +cond-mat/0511587 Other Condensed Matter +cond-mat/0511596 Superconductivity +cond-mat/0511639 Mesoscale and Nanoscale Physics +cond-mat/0512003 Materials Science +cond-mat/0512097 Other Condensed Matter +cond-mat/0512309 Disordered Systems and Neural Networks +cond-mat/0512332 Other Condensed Matter +cond-mat/0512590 Materials Science +cond-mat/0601004 Other Condensed Matter +cond-mat/0601167 Statistical Mechanics +cond-mat/0601278 Statistical Mechanics +cond-mat/0602292 Mesoscale and Nanoscale Physics +cond-mat/0602300 Disordered Systems and Neural Networks +cond-mat/0602371 Soft Condensed Matter +cond-mat/0603136 Materials Science +cond-mat/0603137 Statistical Mechanics +cond-mat/0603388 Other Condensed Matter +cond-mat/0603414 Statistical Mechanics +cond-mat/0603670 Materials Science +cond-mat/0604020 Strongly Correlated Electrons +cond-mat/0604122 Strongly Correlated Electrons +cond-mat/0604284 Strongly Correlated Electrons +cond-mat/0604484 Materials Science +cond-mat/0604504 Soft Condensed Matter +cond-mat/0605375 Superconductivity +cond-mat/0605497 Disordered Systems and Neural Networks +cond-mat/0606118 Statistical Mechanics +cond-mat/0606174 Strongly Correlated Electrons +cond-mat/0606248 Superconductivity +cond-mat/0606433 Strongly Correlated Electrons +cond-mat/0606492 Strongly Correlated Electrons +cond-mat/0607110 Mesoscale and Nanoscale Physics +cond-mat/0607120 Other Condensed Matter +cond-mat/0607335 Materials Science +cond-mat/0607604 Superconductivity +cond-mat/0607690 Soft Condensed Matter +cond-mat/0607739 Mesoscale and Nanoscale Physics +cond-mat/0608066 Superconductivity +cond-mat/0608490 Superconductivity +cond-mat/0608531 Strongly Correlated Electrons +cond-mat/0608538 Mesoscale and Nanoscale Physics +cond-mat/0608580 Mesoscale and Nanoscale Physics +cond-mat/0609079 Statistical Mechanics +cond-mat/0609128 Materials Science +cond-mat/0609419 Mesoscale and Nanoscale Physics +cond-mat/0609443 Superconductivity +cond-mat/0610154 Soft Condensed Matter +cond-mat/0610442 Superconductivity +cond-mat/0610505 Statistical Mechanics +cond-mat/0610672 Superconductivity +cond-mat/0610781 Soft Condensed Matter +cond-mat/0611151 Other Condensed Matter +cond-mat/0611654 Disordered Systems and Neural Networks +cond-mat/0612169 Superconductivity +cond-mat/0612200 Materials Science +cond-mat/0612249 Materials Science +cond-mat/0612261 Statistical Mechanics +cond-mat/0612366 Materials Science +cond-mat/0701313 Materials Science +cond-mat/0701325 Other Condensed Matter +cond-mat/0701452 Strongly Correlated Electrons +cond-mat/0702152 Soft Condensed Matter +cond-mat/0702257 Mesoscale and Nanoscale Physics +cond-mat/0703120 Statistical Mechanics +cond-mat/0703131 Superconductivity +cond-mat/0703188 Other Condensed Matter +cond-mat/0703232 Disordered Systems and Neural Networks +cond-mat/0703421 Superconductivity +cs/0201005 Learning +cs/0202006 Logic in Computer Science +cs/0204018 Programming Languages +cs/0205018 Programming Languages +cs/0205062 Performance +cs/0205072 Computation and Language +cs/0205076 Computer Science and Game Theory +cs/0206009 Data Structures and Algorithms +cs/0207049 Software Engineering +cs/0207057 Computational Geometry +cs/0209007 Computational Geometry +cs/0209022 Artificial Intelligence +cs/0210008 Computational Complexity +cs/0210017 Distributed, Parallel, and Cluster Computing +cs/0211018 Data Structures and Algorithms +cs/0302028 Discrete Mathematics +cs/0303001 Computational Geometry +cs/0305057 Graphics +cs/0305064 Networking and Internet Architecture +cs/0306001 Distributed, Parallel, and Cluster Computing +cs/0306002 Distributed, Parallel, and Cluster Computing +cs/0306014 Other Computer Science +cs/0306023 Databases +cs/0306104 Data Structures and Algorithms +cs/0306117 Logic in Computer Science +cs/0307002 Computer Science and Game Theory +cs/0307003 Computer Science and Game Theory +cs/0307006 Computer Science and Game Theory +cs/0307016 Computer Science and Game Theory +cs/0307018 Computer Science and Game Theory +cs/0307029 Cryptography and Security +cs/0308030 Multiagent Systems +cs/0309029 Software Engineering +cs/0310016 Software Engineering +cs/0310024 Software Engineering +cs/0310051 Data Structures and Algorithms +cs/0311001 Artificial Intelligence +cs/0311018 Logic in Computer Science +cs/0311019 Robotics +cs/0311025 Cryptography and Security +cs/0312060 Computation and Language +cs/0401012 Symbolic Computation +cs/0402007 Databases +cs/0402008 Databases +cs/0402011 Networking and Internet Architecture +cs/0402030 Neural and Evolutionary Computing +cs/0402032 Neural and Evolutionary Computing +cs/0402035 Artificial Intelligence +cs/0402043 Programming Languages +cs/0404014 Distributed, Parallel, and Cluster Computing +cs/0404043 Performance +cs/0404058 Data Structures and Algorithms +cs/0405063 Neural and Evolutionary Computing +cs/0405083 Programming Languages +cs/0405090 Artificial Intelligence +cs/0405100 Programming Languages +cs/0406003 Computation and Language +cs/0406054 Computation and Language +cs/0407038 Software Engineering +cs/0407053 Information Retrieval +cs/0408008 Information Theory +cs/0410013 Discrete Mathematics +cs/0410029 Logic in Computer Science +cs/0410030 Logic in Computer Science +cs/0410034 Logic in Computer Science +cs/0411019 Networking and Internet Architecture +cs/0411047 Numerical Analysis +cs/0411049 Numerical Analysis +cs/0411065 Cryptography and Security +cs/0411067 Cryptography and Security +cs/0411069 Networking and Internet Architecture +cs/0411083 Networking and Internet Architecture +cs/0411084 Networking and Internet Architecture +cs/0411085 Networking and Internet Architecture +cs/0411086 Networking and Internet Architecture +cs/0411087 Networking and Internet Architecture +cs/0411088 Networking and Internet Architecture +cs/0411089 Networking and Internet Architecture +cs/0412009 Numerical Analysis +cs/0412038 Distributed, Parallel, and Cluster Computing +cs/0412044 Cryptography and Security +cs/0412113 Information Theory +cs/0502042 Information Theory +cs/0502056 Digital Libraries +cs/0502069 Distributed, Parallel, and Cluster Computing +cs/0502075 Data Structures and Algorithms +cs/0503011 Information Retrieval +cs/0503080 Cryptography and Security +cs/0504007 Networking and Internet Architecture +cs/0504038 Computational Complexity +cs/0504079 Information Theory +cs/0505072 Cryptography and Security +cs/0506013 Information Theory +cs/0506021 Networking and Internet Architecture +cs/0506072 Information Theory +cs/0506073 Information Theory +cs/0506077 Information Theory +cs/0506080 Logic in Computer Science +cs/0507004 Information Theory +cs/0507015 Information Theory +cs/0508009 Networking and Internet Architecture +cs/0508058 Information Theory +cs/0508096 Information Theory +cs/0508132 Artificial Intelligence +cs/0509058 Artificial Intelligence +cs/0509081 Computer Vision and Pattern Recognition +cs/0510055 Information Theory +cs/0510061 Logic in Computer Science +cs/0510092 Logic in Computer Science +cs/0511006 Logic in Computer Science +cs/0511038 Artificial Intelligence +cs/0512006 Information Theory +cs/0512065 Programming Languages +cs/0512083 Computer Science and Game Theory +cs/0512087 Information Theory +cs/0601072 Programming Languages +cs/0602002 Data Structures and Algorithms +cs/0602006 Databases +cs/0602016 Data Structures and Algorithms +cs/0602020 Information Theory +cs/0602029 Computational Geometry +cs/0602034 Networking and Internet Architecture +cs/0602080 Computational Geometry +cs/0603011 Cryptography and Security +cs/0603034 Artificial Intelligence +cs/0604063 Information Theory +cs/0604065 Data Structures and Algorithms +cs/0605089 Networking and Internet Architecture +cs/0606008 Digital Libraries +cs/0606036 Computational Geometry +cs/0606040 Data Structures and Algorithms +cs/0606098 Graphics +cs/0606124 Data Structures and Algorithms +cs/0607035 Cryptography and Security +cs/0608014 Networking and Internet Architecture +cs/0608033 Learning +cs/0608070 Information Theory +cs/0608109 Networking and Internet Architecture +cs/0609011 Networking and Internet Architecture +cs/0609096 Computational Complexity +cs/0609103 Data Structures and Algorithms +cs/0609129 Mathematical Software +cs/0610009 Computational Complexity +cs/0610047 Information Theory +cs/0611001 Data Structures and Algorithms +cs/0701053 Information Theory +cs/0701064 Distributed, Parallel, and Cluster Computing +cs/0701122 Computational Geometry +cs/0701177 Sound +cs/0702026 Graphics +cs/0702087 Computational Geometry +cs/0702108 Information Theory +cs/0703024 Information Theory +cs/0703113 Databases +cs/0703135 Computation and Language +cs/0703150 Numerical Analysis +gr-qc/0202094 +gr-qc/0210065 +gr-qc/0210097 +gr-qc/0210103 +gr-qc/0301039 +gr-qc/0301082 +gr-qc/0303078 +gr-qc/0306033 +gr-qc/0310004 +gr-qc/0310102 +gr-qc/0401038 +gr-qc/0403013 +gr-qc/0403072 +gr-qc/0404022 +gr-qc/0404028 +gr-qc/0404093 +gr-qc/0406001 +gr-qc/0407025 +gr-qc/0407109 +gr-qc/0409061 +gr-qc/0410029 +gr-qc/0410079 +gr-qc/0410126 +gr-qc/0412119 +gr-qc/0503070 +gr-qc/0505020 +gr-qc/0505054 +gr-qc/0508073 +gr-qc/0509019 +gr-qc/0509129 +gr-qc/0602099 +gr-qc/0602113 +gr-qc/0607126 +gr-qc/0612076 +gr-qc/0612084 +gr-qc/9304015 +gr-qc/9306035 +gr-qc/9504022 +gr-qc/9511058 +gr-qc/9601005 +gr-qc/9802038 +gr-qc/9803068 +hep-ex/0201018 Experiment +hep-ex/0202001 Experiment +hep-ex/0202004 Experiment +hep-ex/0202007 Experiment +hep-ex/0205025 Experiment +hep-ex/0205045 Experiment +hep-ex/0205070 Experiment +hep-ex/0207031 Experiment +hep-ex/0207055 Experiment +hep-ex/0207069 Experiment +hep-ex/0207071 Experiment +hep-ex/0207076 Experiment +hep-ex/0212003 Experiment +hep-ex/0212005 Experiment +hep-ex/0212007 Experiment +hep-ex/0212011 Experiment +hep-ex/0212024 Experiment +hep-ex/0302003 Experiment +hep-ex/0303029 Experiment +hep-ex/0303039 Experiment +hep-ex/0304030 Experiment +hep-ex/0305103 Experiment +hep-ex/0306039 Experiment +hep-ex/0307032 Experiment +hep-ex/0308007 Experiment +hep-ex/0308015 Experiment +hep-ex/0308017 Experiment +hep-ex/0308020 Experiment +hep-ex/0308026 Experiment +hep-ex/0308053 Experiment +hep-ex/0309039 Experiment +hep-ex/0310015 Experiment +hep-ex/0310044 Experiment +hep-ex/0310054 Experiment +hep-ex/0312046 Experiment +hep-ex/0402022 Experiment +hep-ex/0402041 Experiment +hep-ex/0404017 Experiment +hep-ex/0405025 Experiment +hep-ex/0405041 Experiment +hep-ex/0405047 Experiment +hep-ex/0405054 Experiment +hep-ex/0406071 Experiment +hep-ex/0408010 Experiment +hep-ex/0408054 Experiment +hep-ex/0408055 Experiment +hep-ex/0408065 Experiment +hep-ex/0408068 Experiment +hep-ex/0408069 Experiment +hep-ex/0408071 Experiment +hep-ex/0408091 Experiment +hep-ex/0408121 Experiment +hep-ex/0410045 Experiment +hep-ex/0410047 Experiment +hep-ex/0410064 Experiment +hep-ex/0412026 Experiment +hep-ex/0412045 Experiment +hep-ex/0412056 Experiment +hep-ex/0501010 Experiment +hep-ex/0501029 Experiment +hep-ex/0501061 Experiment +hep-ex/0502001 Experiment +hep-ex/0502019 Experiment +hep-ex/0502025 Experiment +hep-ex/0503011 Experiment +hep-ex/0504059 Experiment +hep-ex/0504060 Experiment +hep-ex/0505087 Experiment +hep-ex/0507029 Experiment +hep-ex/0509003 Experiment +hep-ex/0509010 Experiment +hep-ex/0510009 Experiment +hep-ex/0511029 Experiment +hep-ex/0511048 Experiment +hep-ex/0512030 Experiment +hep-ex/0512043 Experiment +hep-ex/0512044 Experiment +hep-ex/0601038 Experiment +hep-ex/0605019 Experiment +hep-ex/0605053 Experiment +hep-ex/0605066 Experiment +hep-ex/0605092 Experiment +hep-ex/0605122 Experiment +hep-ex/0606036 Experiment +hep-ex/0607026 Experiment +hep-ex/0608054 Experiment +hep-ex/0609002 Experiment +hep-ex/0611008 Experiment +hep-ex/0611012 Experiment +hep-ex/0612010 Experiment +hep-ex/0701006 Experiment +hep-ex/0703011 Experiment +hep-ex/9606003 Experiment +hep-lat/0204025 Lattice +hep-lat/0205020 Lattice +hep-lat/0304016 Lattice +hep-lat/0304018 Lattice +hep-lat/0306017 Lattice +hep-lat/0306038 Lattice +hep-lat/0307013 Lattice +hep-lat/0307015 Lattice +hep-lat/0308025 Lattice +hep-lat/0309059 Lattice +hep-lat/0309133 Lattice +hep-lat/0401004 Lattice +hep-lat/0403006 Lattice +hep-lat/0407028 Lattice +hep-lat/0503008 Lattice +hep-lat/0503029 Lattice +hep-lat/0506019 Lattice +hep-lat/0506032 Lattice +hep-lat/0508002 Lattice +hep-lat/0509125 Lattice +hep-lat/0509160 Lattice +hep-lat/0510011 Lattice +hep-lat/0510019 Lattice +hep-lat/0510055 Lattice +hep-lat/0510081 Lattice +hep-lat/0510087 Lattice +hep-lat/0510097 Lattice +hep-lat/0607035 Lattice +hep-lat/0609014 Lattice +hep-lat/0609051 Lattice +hep-lat/0609054 Lattice +hep-lat/0609056 Lattice +hep-lat/0609060 Lattice +hep-lat/0609069 Lattice +hep-lat/0610001 Lattice +hep-lat/0610033 Lattice +hep-lat/0610035 Lattice +hep-lat/0610053 Lattice +hep-lat/0610088 Lattice +hep-lat/0610109 Lattice +hep-lat/0610128 Lattice +hep-lat/0612011 Lattice +hep-ph/0001304 Phenomenology +hep-ph/0002286 Phenomenology +hep-ph/0004182 Phenomenology +hep-ph/0005211 Phenomenology +hep-ph/0007018 Phenomenology +hep-ph/0009174 Phenomenology +hep-ph/0010178 Phenomenology +hep-ph/0011311 Phenomenology +hep-ph/0012075 Phenomenology +hep-ph/0012275 Phenomenology +hep-ph/0103125 Phenomenology +hep-ph/0107255 Phenomenology +hep-ph/0108104 Phenomenology +hep-ph/0108170 Phenomenology +hep-ph/0109004 Phenomenology +hep-ph/0109030 Phenomenology +hep-ph/0110040 Phenomenology +hep-ph/0111068 Phenomenology +hep-ph/0112001 Phenomenology +hep-ph/0201022 Phenomenology +hep-ph/0201071 Phenomenology +hep-ph/0201126 Phenomenology +hep-ph/0201134 Phenomenology +hep-ph/0201261 Phenomenology +hep-ph/0202058 Phenomenology +hep-ph/0202067 Phenomenology +hep-ph/0202107 Phenomenology +hep-ph/0202134 Phenomenology +hep-ph/0202192 Phenomenology +hep-ph/0202200 Phenomenology +hep-ph/0203005 Phenomenology +hep-ph/0203053 Phenomenology +hep-ph/0203113 Phenomenology +hep-ph/0203121 Phenomenology +hep-ph/0203250 Phenomenology +hep-ph/0204040 Phenomenology +hep-ph/0204062 Phenomenology +hep-ph/0204104 Phenomenology +hep-ph/0205062 Phenomenology +hep-ph/0205067 Phenomenology +hep-ph/0205111 Phenomenology +hep-ph/0206163 Phenomenology +hep-ph/0206177 Phenomenology +hep-ph/0206286 Phenomenology +hep-ph/0207043 Phenomenology +hep-ph/0207079 Phenomenology +hep-ph/0207349 Phenomenology +hep-ph/0208005 Phenomenology +hep-ph/0208153 Phenomenology +hep-ph/0208200 Phenomenology +hep-ph/0208276 Phenomenology +hep-ph/0210205 Phenomenology +hep-ph/0211019 Phenomenology +hep-ph/0211126 Phenomenology +hep-ph/0211369 Phenomenology +hep-ph/0212025 Phenomenology +hep-ph/0212134 Phenomenology +hep-ph/0212135 Phenomenology +hep-ph/0212179 Phenomenology +hep-ph/0212180 Phenomenology +hep-ph/0212307 Phenomenology +hep-ph/0301010 Phenomenology +hep-ph/0301050 Phenomenology +hep-ph/0302076 Phenomenology +hep-ph/0302183 Phenomenology +hep-ph/0303015 Phenomenology +hep-ph/0303191 Phenomenology +hep-ph/0304197 Phenomenology +hep-ph/0304233 Phenomenology +hep-ph/0305047 Phenomenology +hep-ph/0305191 Phenomenology +hep-ph/0305261 Phenomenology +hep-ph/0306254 Phenomenology +hep-ph/0306259 Phenomenology +hep-ph/0307127 Phenomenology +hep-ph/0308103 Phenomenology +hep-ph/0308262 Phenomenology +hep-ph/0309114 Phenomenology +hep-ph/0309117 Phenomenology +hep-ph/0310153 Phenomenology +hep-ph/0310269 Phenomenology +hep-ph/0310274 Phenomenology +hep-ph/0310339 Phenomenology +hep-ph/0311349 Phenomenology +hep-ph/0311353 Phenomenology +hep-ph/0312008 Phenomenology +hep-ph/0312012 Phenomenology +hep-ph/0312080 Phenomenology +hep-ph/0312096 Phenomenology +hep-ph/0312124 Phenomenology +hep-ph/0312174 Phenomenology +hep-ph/0312247 Phenomenology +hep-ph/0401028 Phenomenology +hep-ph/0401111 Phenomenology +hep-ph/0401200 Phenomenology +hep-ph/0402031 Phenomenology +hep-ph/0402215 Phenomenology +hep-ph/0402295 Phenomenology +hep-ph/0403167 Phenomenology +hep-ph/0403171 Phenomenology +hep-ph/0403198 Phenomenology +hep-ph/0403226 Phenomenology +hep-ph/0404062 Phenomenology +hep-ph/0404164 Phenomenology +hep-ph/0404228 Phenomenology +hep-ph/0404260 Phenomenology +hep-ph/0404270 Phenomenology +hep-ph/0405038 Phenomenology +hep-ph/0405097 Phenomenology +hep-ph/0405132 Phenomenology +hep-ph/0405230 Phenomenology +hep-ph/0405262 Phenomenology +hep-ph/0406006 Phenomenology +hep-ph/0406061 Phenomenology +hep-ph/0406142 Phenomenology +hep-ph/0406152 Phenomenology +hep-ph/0406303 Phenomenology +hep-ph/0407035 Phenomenology +hep-ph/0408162 Phenomenology +hep-ph/0408174 Phenomenology +hep-ph/0408329 Phenomenology +hep-ph/0408349 Phenomenology +hep-ph/0408357 Phenomenology +hep-ph/0409082 Phenomenology +hep-ph/0409145 Phenomenology +hep-ph/0409269 Phenomenology +hep-ph/0410022 Phenomenology +hep-ph/0410140 Phenomenology +hep-ph/0411002 Phenomenology +hep-ph/0411229 Phenomenology +hep-ph/0411364 Phenomenology +hep-ph/0412069 Phenomenology +hep-ph/0412158 Phenomenology +hep-ph/0412200 Phenomenology +hep-ph/0412251 Phenomenology +hep-ph/0501087 Phenomenology +hep-ph/0502123 Phenomenology +hep-ph/0502176 Phenomenology +hep-ph/0503172 Phenomenology +hep-ph/0503173 Phenomenology +hep-ph/0503194 Phenomenology +hep-ph/0503217 Phenomenology +hep-ph/0504030 Phenomenology +hep-ph/0504031 Phenomenology +hep-ph/0504045 Phenomenology +hep-ph/0504095 Phenomenology +hep-ph/0504246 Phenomenology +hep-ph/0504248 Phenomenology +hep-ph/0505243 Phenomenology +hep-ph/0506082 Phenomenology +hep-ph/0506271 Phenomenology +hep-ph/0508143 Phenomenology +hep-ph/0509039 Phenomenology +hep-ph/0509059 Phenomenology +hep-ph/0509221 Phenomenology +hep-ph/0509243 Phenomenology +hep-ph/0509244 Phenomenology +hep-ph/0509309 Phenomenology +hep-ph/0510173 Phenomenology +hep-ph/0510187 Phenomenology +hep-ph/0510368 Phenomenology +hep-ph/0511119 Phenomenology +hep-ph/0511141 Phenomenology +hep-ph/0512072 Phenomenology +hep-ph/0512121 Phenomenology +hep-ph/0512307 Phenomenology +hep-ph/0601182 Phenomenology +hep-ph/0601238 Phenomenology +hep-ph/0602096 Phenomenology +hep-ph/0603026 Phenomenology +hep-ph/0603167 Phenomenology +hep-ph/0603203 Phenomenology +hep-ph/0604048 Phenomenology +hep-ph/0604049 Phenomenology +hep-ph/0604120 Phenomenology +hep-ph/0604242 Phenomenology +hep-ph/0605303 Phenomenology +hep-ph/0606177 Phenomenology +hep-ph/0606199 Phenomenology +hep-ph/0607030 Phenomenology +hep-ph/0607046 Phenomenology +hep-ph/0607105 Phenomenology +hep-ph/0607181 Phenomenology +hep-ph/0607219 Phenomenology +hep-ph/0608121 Phenomenology +hep-ph/0608290 Phenomenology +hep-ph/0609008 Phenomenology +hep-ph/0609039 Phenomenology +hep-ph/0609045 Phenomenology +hep-ph/0609130 Phenomenology +hep-ph/0610103 Phenomenology +hep-ph/0610104 Phenomenology +hep-ph/0610201 Phenomenology +hep-ph/0611040 Phenomenology +hep-ph/0611142 Phenomenology +hep-ph/0611148 Phenomenology +hep-ph/0611224 Phenomenology +hep-ph/0612014 Phenomenology +hep-ph/0612028 Phenomenology +hep-ph/0612039 Phenomenology +hep-ph/0612136 Phenomenology +hep-ph/0612172 Phenomenology +hep-ph/0612188 Phenomenology +hep-ph/0612293 Phenomenology +hep-ph/0612318 Phenomenology +hep-ph/0702046 Phenomenology +hep-ph/0703050 Phenomenology +hep-ph/0703127 Phenomenology +hep-ph/0703216 Phenomenology +hep-ph/9203201 Phenomenology +hep-ph/9203203 Phenomenology +hep-ph/9203214 Phenomenology +hep-ph/9207279 Phenomenology +hep-ph/9306268 Phenomenology +hep-ph/9310297 Phenomenology +hep-ph/9311326 Phenomenology +hep-ph/9402254 Phenomenology +hep-ph/9406245 Phenomenology +hep-ph/9406397 Phenomenology +hep-ph/9406423 Phenomenology +hep-ph/9411256 Phenomenology +hep-ph/9504393 Phenomenology +hep-ph/9508296 Phenomenology +hep-ph/9510219 Phenomenology +hep-ph/9510327 Phenomenology +hep-ph/9601295 Phenomenology +hep-ph/9602364 Phenomenology +hep-ph/9606260 Phenomenology +hep-ph/9606416 Phenomenology +hep-ph/9607298 Phenomenology +hep-ph/9610383 Phenomenology +hep-ph/9701244 Phenomenology +hep-ph/9703259 Phenomenology +hep-ph/9704452 Phenomenology +hep-ph/9705347 Phenomenology +hep-ph/9708377 Phenomenology +hep-ph/9710279 Phenomenology +hep-ph/9711264 Phenomenology +hep-ph/9711360 Phenomenology +hep-ph/9803481 Phenomenology +hep-ph/9804216 Phenomenology +hep-ph/9804425 Phenomenology +hep-ph/9805209 Phenomenology +hep-ph/9805346 Phenomenology +hep-ph/9806218 Phenomenology +hep-ph/9807325 Phenomenology +hep-ph/9807493 Phenomenology +hep-ph/9809409 Phenomenology +hep-ph/9809426 Phenomenology +hep-ph/9810411 Phenomenology +hep-ph/9810468 Phenomenology +hep-ph/9812289 Phenomenology +hep-ph/9812307 Phenomenology +hep-ph/9901345 Phenomenology +hep-ph/9903207 Phenomenology +hep-ph/9903334 Phenomenology +hep-ph/9903350 Phenomenology +hep-ph/9903363 Phenomenology +hep-ph/9904303 Phenomenology +hep-ph/9904399 Phenomenology +hep-ph/9906226 Phenomenology +hep-ph/9908240 Phenomenology +hep-ph/9909562 Phenomenology +hep-ph/9911324 Phenomenology +hep-ph/9911341 Phenomenology +hep-ph/9911462 Phenomenology +hep-th/0004151 Theory +hep-th/0005076 Theory +hep-th/0006179 Theory +hep-th/0008172 Theory +hep-th/0012222 Theory +hep-th/0104073 Theory +hep-th/0106179 Theory +hep-th/0106187 Theory +hep-th/0106255 Theory +hep-th/0107245 Theory +hep-th/0110089 Theory +hep-th/0112178 Theory +hep-th/0202017 Theory +hep-th/0203092 Theory +hep-th/0204216 Theory +hep-th/0204258 Theory +hep-th/0207114 Theory +hep-th/0207223 Theory +hep-th/0208156 Theory +hep-th/0208157 Theory +hep-th/0209230 Theory +hep-th/0211099 Theory +hep-th/0212147 Theory +hep-th/0212315 Theory +hep-th/0301234 Theory +hep-th/0302192 Theory +hep-th/0303001 Theory +hep-th/0304225 Theory +hep-th/0306058 Theory +hep-th/0308055 Theory +hep-th/0308083 Theory +hep-th/0308117 Theory +hep-th/0310034 Theory +hep-th/0310119 Theory +hep-th/0310197 Theory +hep-th/0312304 Theory +hep-th/0401040 Theory +hep-th/0402051 Theory +hep-th/0402095 Theory +hep-th/0403118 Theory +hep-th/0404016 Theory +hep-th/0405070 Theory +hep-th/0405252 Theory +hep-th/0406230 Theory +hep-th/0407200 Theory +hep-th/0407218 Theory +hep-th/0408125 Theory +hep-th/0408164 Theory +hep-th/0409016 Theory +hep-th/0409038 Theory +hep-th/0409202 Theory +hep-th/0409265 Theory +hep-th/0411008 Theory +hep-th/0411227 Theory +hep-th/0412031 Theory +hep-th/0412171 Theory +hep-th/0412298 Theory +hep-th/0501080 Theory +hep-th/0501124 Theory +hep-th/0503092 Theory +hep-th/0503203 Theory +hep-th/0506002 Theory +hep-th/0506162 Theory +hep-th/0506186 Theory +hep-th/0507219 Theory +hep-th/0508080 Theory +hep-th/0508242 Theory +hep-th/0509024 Theory +hep-th/0509221 Theory +hep-th/0512200 Theory +hep-th/0601158 Theory +hep-th/0602155 Theory +hep-th/0602240 Theory +hep-th/0603251 Theory +hep-th/0604161 Theory +hep-th/0605169 Theory +hep-th/0605240 Theory +hep-th/0606087 Theory +hep-th/0606221 Theory +hep-th/0607088 Theory +hep-th/0609022 Theory +hep-th/0610098 Theory +hep-th/0611006 Theory +hep-th/0611343 Theory +hep-th/0612100 Theory +hep-th/0612205 Theory +hep-th/0701149 Theory +hep-th/0702069 Theory +hep-th/9110037 Theory +hep-th/9112010 Theory +hep-th/9204095 Theory +hep-th/9205027 Theory +hep-th/9206014 Theory +hep-th/9206063 Theory +hep-th/9208040 Theory +hep-th/9301118 Theory +hep-th/9302027 Theory +hep-th/9305003 Theory +hep-th/9311128 Theory +hep-th/9401030 Theory +hep-th/9402115 Theory +hep-th/9405187 Theory +hep-th/9406056 Theory +hep-th/9408023 Theory +hep-th/9410157 Theory +hep-th/9502069 Theory +hep-th/9503097 Theory +hep-th/9504113 Theory +hep-th/9507013 Theory +hep-th/9507022 Theory +hep-th/9510119 Theory +hep-th/9511115 Theory +hep-th/9601011 Theory +hep-th/9601083 Theory +hep-th/9603009 Theory +hep-th/9604103 Theory +hep-th/9611161 Theory +hep-th/9611215 Theory +hep-th/9702154 Theory +hep-th/9702173 Theory +hep-th/9703100 Theory +hep-th/9703215 Theory +hep-th/9704170 Theory +hep-th/9708044 Theory +hep-th/9709118 Theory +hep-th/9712035 Theory +hep-th/9801073 Theory +hep-th/9803167 Theory +hep-th/9806157 Theory +hep-th/9809106 Theory +hep-th/9809173 Theory +hep-th/9810020 Theory +hep-th/9811141 Theory +hep-th/9901088 Theory +hep-th/9901134 Theory +hep-th/9904120 Theory +hep-th/9905148 Theory +hep-th/9907124 Theory +hep-th/9907206 Theory +hep-th/9910090 Theory +hep-th/9911147 Theory +math-ph/0204008 +math-ph/0209019 +math-ph/0302048 +math-ph/0304015 +math-ph/0306065 +math-ph/0310057 +math-ph/0411007 +math-ph/0503005 +math-ph/0504076 +math-ph/0601008 +math-ph/0606052 +math-ph/0608060 +math-ph/0701059 +math/0201121 Geometric Topology +math/0201308 Numerical Analysis +math/0202059 Quantum Algebra +math/0203179 Geometric Topology +math/0203245 General Mathematics +math/0203249 Probability +math/0204039 Geometric Topology +math/0204040 Geometric Topology +math/0204288 Differential Geometry +math/0204350 Numerical Analysis +math/0205131 Geometric Topology +math/0205185 Quantum Algebra +math/0205214 Algebraic Geometry +math/0205235 Numerical Analysis +math/0205329 Geometric Topology +math/0206028 Numerical Analysis +math/0206058 Spectral Theory +math/0206094 Algebraic Topology +math/0206196 Geometric Topology +math/0207068 Commutative Algebra +math/0207250 Rings and Algebras +math/0209058 Group Theory +math/0209097 Numerical Analysis +math/0209298 Commutative Algebra +math/0210048 Algebraic Geometry +math/0210432 Quantum Algebra +math/0211041 Differential Geometry +math/0211094 Algebraic Geometry +math/0211148 Classical Analysis and ODEs +math/0211385 Logic +math/0212121 Combinatorics +math/0212326 Quantum Algebra +math/0212400 Numerical Analysis +math/0301020 Quantum Algebra +math/0301091 Algebraic Geometry +math/0301126 Functional Analysis +math/0301127 Functional Analysis +math/0301188 Dynamical Systems +math/0301253 Quantum Algebra +math/0301317 Logic +math/0301357 Spectral Theory +math/0301387 Number Theory +math/0302324 Quantum Algebra +math/0303287 Quantum Algebra +math/0304108 Classical Analysis and ODEs +math/0304126 Combinatorics +math/0304186 Quantum Algebra +math/0304214 Analysis of PDEs +math/0304363 Representation Theory +math/0305062 Quantum Algebra +math/0305261 Operator Algebras +math/0305295 Classical Analysis and ODEs +math/0305310 General Mathematics +math/0305326 General Mathematics +math/0305422 Algebraic Geometry +math/0305431 Functional Analysis +math/0306200 General Mathematics +math/0307177 Geometric Topology +math/0307282 Differential Geometry +math/0307296 Algebraic Geometry +math/0307302 Geometric Topology +math/0307347 Combinatorics +math/0308006 Algebraic Geometry +math/0308080 Algebraic Geometry +math/0308169 Functional Analysis +math/0308194 Number Theory +math/0308262 Metric Geometry +math/0309010 Algebraic Geometry +math/0309021 Differential Geometry +math/0309060 Dynamical Systems +math/0309072 Differential Geometry +math/0309217 Algebraic Geometry +math/0309220 Combinatorics +math/0309282 Geometric Topology +math/0309354 Functional Analysis +math/0309431 General Mathematics +math/0309437 Geometric Topology +math/0309453 Quantum Algebra +math/0309466 Geometric Topology +math/0310014 History and Overview +math/0310116 Algebraic Geometry +math/0310175 Logic +math/0310273 Geometric Topology +math/0310402 Dynamical Systems +math/0310413 Probability +math/0310417 Number Theory +math/0310434 Number Theory +math/0310478 Algebraic Geometry +math/0310495 Complex Variables +math/0310496 Complex Variables +math/0311244 Quantum Algebra +math/0311280 Probability +math/0311363 Numerical Analysis +math/0311499 Geometric Topology +math/0311502 Operator Algebras +math/0311511 Geometric Topology +math/0312036 Classical Analysis and ODEs +math/0312132 Probability +math/0312161 Dynamical Systems +math/0312163 Differential Geometry +math/0312356 Dynamical Systems +math/0312363 Geometric Topology +math/0312377 Representation Theory +math/0312379 Geometric Topology +math/0401015 Classical Analysis and ODEs +math/0401142 Complex Variables +math/0401344 Algebraic Geometry +math/0401378 Algebraic Geometry +math/0401404 Combinatorics +math/0402028 Differential Geometry +math/0402029 Differential Geometry +math/0402036 Geometric Topology +math/0402247 Metric Geometry +math/0402266 Quantum Algebra +math/0402336 Logic +math/0403276 Quantum Algebra +math/0403282 Quantum Algebra +math/0403384 Complex Variables +math/0403403 K-Theory and Homology +math/0403464 Algebraic Geometry +math/0403505 Combinatorics +math/0403541 Combinatorics +math/0404033 Probability +math/0404056 Quantum Algebra +math/0404105 Probability +math/0404295 Operator Algebras +math/0404309 Geometric Topology +math/0405030 Geometric Topology +math/0405236 Algebraic Geometry +math/0405287 Probability +math/0405289 Probability +math/0405291 Probability +math/0405372 Classical Analysis and ODEs +math/0405441 Metric Geometry +math/0405511 Statistics Theory +math/0406087 Probability +math/0406157 Combinatorics +math/0406184 Probability +math/0406214 Dynamical Systems +math/0406243 Number Theory +math/0406272 Representation Theory +math/0406279 Algebraic Geometry +math/0406281 Algebraic Geometry +math/0407179 Differential Geometry +math/0407292 Combinatorics +math/0407330 Classical Analysis and ODEs +math/0407379 Number Theory +math/0407381 Number Theory +math/0407392 Geometric Topology +math/0407436 Quantum Algebra +math/0407493 Geometric Topology +math/0407499 Differential Geometry +math/0407517 Classical Analysis and ODEs +math/0408129 Group Theory +math/0408247 Combinatorics +math/0408374 Geometric Topology +math/0409028 Combinatorics +math/0409044 Operator Algebras +math/0409077 Algebraic Geometry +math/0409573 K-Theory and Homology +math/0410413 Differential Geometry +math/0410559 Differential Geometry +math/0411037 Algebraic Geometry +math/0411092 Metric Geometry +math/0411110 Algebraic Geometry +math/0411178 Operator Algebras +math/0411371 Dynamical Systems +math/0411431 Geometric Topology +math/0411479 Differential Geometry +math/0412104 Number Theory +math/0412226 Geometric Topology +math/0412244 Combinatorics +math/0412249 Algebraic Topology +math/0412268 Statistics Theory +math/0412276 Geometric Topology +math/0412280 Combinatorics +math/0412441 Algebraic Geometry +math/0412469 Metric Geometry +math/0501094 Algebraic Geometry +math/0501448 Dynamical Systems +math/0501485 Functional Analysis +math/0501497 Combinatorics +math/0502150 Quantum Algebra +math/0502155 Algebraic Topology +math/0502219 Differential Geometry +math/0502446 Combinatorics +math/0502468 Algebraic Geometry +math/0503109 Probability +math/0503139 Probability +math/0504110 Probability +math/0504143 Representation Theory +math/0504370 Analysis of PDEs +math/0504602 Representation Theory +math/0505038 Combinatorics +math/0505222 Algebraic Geometry +math/0505223 Numerical Analysis +math/0505292 Probability +math/0505341 Logic +math/0505524 Classical Analysis and ODEs +math/0506081 Statistics Theory +math/0506149 Analysis of PDEs +math/0506159 Representation Theory +math/0506341 Complex Variables +math/0506386 General Mathematics +math/0506393 Geometric Topology +math/0506527 Quantum Algebra +math/0506529 Quantum Algebra +math/0507010 Representation Theory +math/0507015 Geometric Topology +math/0507091 Dynamical Systems +math/0507167 Dynamical Systems +math/0507172 Probability +math/0507178 Probability +math/0507408 Combinatorics +math/0507457 Probability +math/0507490 Geometric Topology +math/0507517 Probability +math/0507585 Probability +math/0508193 Differential Geometry +math/0508271 Geometric Topology +math/0508338 Differential Geometry +math/0508365 Numerical Analysis +math/0508538 Probability +math/0509081 Statistics Theory +math/0509132 Statistics Theory +math/0509270 Probability +math/0509292 Dynamical Systems +math/0509385 Probability +math/0509636 Differential Geometry +math/0509696 Statistics Theory +math/0510064 Functional Analysis +math/0510172 Symplectic Geometry +math/0510208 Probability +math/0510243 Geometric Topology +math/0510329 General Mathematics +math/0510416 Geometric Topology +math/0510521 Statistics Theory +math/0511105 Statistics Theory +math/0511287 Probability +math/0511304 Combinatorics +math/0511739 Probability +math/0512038 Geometric Topology +math/0512324 Differential Geometry +math/0512548 Combinatorics +math/0512573 Algebraic Geometry +math/0601007 Probability +math/0601031 Numerical Analysis +math/0601032 Probability +math/0601054 Quantum Algebra +math/0601122 Probability +math/0601278 Probability +math/0601296 Probability +math/0601313 Probability +math/0601505 Probability +math/0601544 Probability +math/0601547 Symplectic Geometry +math/0601639 Algebraic Geometry +math/0601656 Probability +math/0601750 Geometric Topology +math/0602085 Algebraic Topology +math/0602093 Dynamical Systems +math/0602277 Dynamical Systems +math/0602306 Probability +math/0602311 Statistics Theory +math/0602314 Metric Geometry +math/0602477 Algebraic Geometry +math/0602479 Probability +math/0603022 Probability +math/0603060 Probability +math/0603096 Classical Analysis and ODEs +math/0603355 Dynamical Systems +math/0603589 Geometric Topology +math/0604067 Probability +math/0604082 Probability +math/0604094 Quantum Algebra +math/0604200 Probability +math/0604315 Probability +math/0604350 Probability +math/0604397 Probability +math/0604416 Category Theory +math/0604480 General Mathematics +math/0604483 General Mathematics +math/0605112 Category Theory +math/0605134 Statistics Theory +math/0605282 Statistics Theory +math/0605619 Analysis of PDEs +math/0605642 Probability +math/0606251 Combinatorics +math/0606279 Rings and Algebras +math/0606313 Probability +math/0606527 Probability +math/0606599 Statistics Theory +math/0606604 Probability +math/0606702 General Mathematics +math/0607019 Probability +math/0607045 Algebraic Geometry +math/0607095 General Mathematics +math/0607321 Probability +math/0607467 Probability +math/0607672 Probability +math/0607786 Quantum Algebra +math/0607790 General Mathematics +math/0607791 General Mathematics +math/0607805 Probability +math/0607821 Differential Geometry +math/0608057 Combinatorics +math/0608060 Operator Algebras +math/0608258 Probability +math/0608417 Statistics Theory +math/0609068 Probability +math/0609277 Statistics Theory +math/0609299 Dynamical Systems +math/0609347 Statistics Theory +math/0609434 Probability +math/0609488 Probability +math/0609527 Optimization and Control +math/0609534 Probability +math/0609549 Statistics Theory +math/0609644 Combinatorics +math/0609798 Numerical Analysis +math/0610024 Probability +math/0610115 Statistics Theory +math/0610304 Probability +math/0610307 General Mathematics +math/0610551 Probability +math/0610625 Probability +math/0610667 Statistics Theory +math/0610779 Combinatorics +math/0610847 Classical Analysis and ODEs +math/0611029 Statistics Theory +math/0611114 Probability +math/0611140 Probability +math/0611144 Probability +math/0611181 Geometric Topology +math/0611213 Probability +math/0611511 Geometric Topology +math/0611525 Probability +math/0611604 Algebraic Geometry +math/0611637 Probability +math/0611692 Statistics Theory +math/0611720 Probability +math/0611914 Statistics Theory +math/0612024 Analysis of PDEs +math/0612040 Probability +math/0612191 Statistics Theory +math/0612260 Statistics Theory +math/0612326 Metric Geometry +math/0612361 Statistics Theory +math/0612422 Statistics Theory +math/0612469 Differential Geometry +math/0612551 Classical Analysis and ODEs +math/0612580 Differential Geometry +math/0612623 Statistics Theory +math/0612677 Statistics Theory +math/0612760 General Mathematics +math/0612827 Probability +math/0701016 Combinatorics +math/0701253 Probability +math/0701316 Probability +math/0701418 Probability +math/0701555 Probability +math/0701568 Geometric Topology +math/0701628 K-Theory and Homology +math/0701718 Probability +math/0701907 Statistics Theory +math/0702020 Probability +math/0702057 Geometric Topology +math/0702100 Probability +math/0702112 Probability +math/0702123 Statistics Theory +math/0702314 Probability +math/0702326 Statistics Theory +math/0702495 Group Theory +math/0702668 Commutative Algebra +math/0703265 Probability +math/0703688 General Mathematics +math/0703746 Statistics Theory +math/0703794 Probability +nlin/0207009 Chaotic Dynamics +nlin/0210026 Adaptation and Self-Organizing Systems +nlin/0301029 Pattern Formation and Solitons +nlin/0301043 Exactly Solvable and Integrable Systems +nlin/0305007 Exactly Solvable and Integrable Systems +nlin/0307017 Adaptation and Self-Organizing Systems +nlin/0311032 Chaotic Dynamics +nlin/0402030 Pattern Formation and Solitons +nlin/0405061 Cellular Automata and Lattice Gases +nlin/0408006 Adaptation and Self-Organizing Systems +nlin/0408014 Cellular Automata and Lattice Gases +nlin/0408017 Chaotic Dynamics +nlin/0408038 Chaotic Dynamics +nlin/0408043 Adaptation and Self-Organizing Systems +nlin/0501049 Chaotic Dynamics +nlin/0502019 Chaotic Dynamics +nlin/0502027 Chaotic Dynamics +nlin/0503037 Chaotic Dynamics +nlin/0506053 Chaotic Dynamics +nlin/0509036 Exactly Solvable and Integrable Systems +nlin/0510066 Chaotic Dynamics +nlin/0603006 Adaptation and Self-Organizing Systems +nlin/0603026 Adaptation and Self-Organizing Systems +nlin/0605002 Chaotic Dynamics +nlin/0605046 Cellular Automata and Lattice Gases +nucl-ex/0203004 +nucl-ex/0207003 +nucl-ex/0210009 +nucl-ex/0210039 +nucl-ex/0302020 +nucl-ex/0306031 +nucl-ex/0307005 +nucl-ex/0308028 +nucl-ex/0309003 +nucl-ex/0309021 +nucl-ex/0401030 +nucl-ex/0402014 +nucl-ex/0403002 +nucl-ex/0405006 +nucl-ex/0407020 +nucl-ex/0410003 +nucl-ex/0412010 +nucl-ex/0501009 +nucl-ex/0502004 +nucl-ex/0506026 +nucl-ex/0508009 +nucl-ex/0510011 +nucl-ex/0510014 +nucl-ex/0510022 +nucl-ex/0510065 +nucl-ex/0511039 +nucl-ex/0601008 +nucl-ex/0607009 +nucl-ex/0609019 +nucl-ex/0610006 +nucl-ex/0610049 +nucl-ex/0611012 +nucl-ex/0611035 +nucl-ex/0612017 +nucl-th/0201027 +nucl-th/0203046 +nucl-th/0204047 +nucl-th/0206020 +nucl-th/0210016 +nucl-th/0210031 +nucl-th/0212021 +nucl-th/0303048 +nucl-th/0303059 +nucl-th/0304016 +nucl-th/0305004 +nucl-th/0305052 +nucl-th/0306008 +nucl-th/0309078 +nucl-th/0311023 +nucl-th/0311100 +nucl-th/0403043 +nucl-th/0403062 +nucl-th/0405026 +nucl-th/0406035 +nucl-th/0407059 +nucl-th/0408009 +nucl-th/0408022 +nucl-th/0410038 +nucl-th/0410068 +nucl-th/0411021 +nucl-th/0412060 +nucl-th/0412111 +nucl-th/0503067 +nucl-th/0506017 +nucl-th/0506075 +nucl-th/0508036 +nucl-th/0508060 +nucl-th/0509035 +nucl-th/0510055 +nucl-th/0510084 +nucl-th/0512019 +nucl-th/0512100 +nucl-th/0602026 +nucl-th/0602047 +nucl-th/0604040 +nucl-th/0605075 +nucl-th/0605082 +nucl-th/0607015 +nucl-th/0609011 +nucl-th/0610044 +nucl-th/0610122 +nucl-th/0701081 +nucl-th/0701096 +physics/0112011 Atomic and Molecular Clusters +physics/0202061 General Physics +physics/0204032 Instrumentation and Detectors +physics/0206020 Atomic Physics +physics/0206067 Computational Physics +physics/0207085 Atomic and Molecular Clusters +physics/0207126 Plasma Physics +physics/0209014 Fluid Dynamics +physics/0209034 General Physics +physics/0210010 Accelerator Physics +physics/0210016 Accelerator Physics +physics/0211018 Accelerator Physics +physics/0211027 Atomic and Molecular Clusters +physics/0211057 Chemical Physics +physics/0211075 Physics Education +physics/0212005 Instrumentation and Detectors +physics/0212080 Fluid Dynamics +physics/0212100 Classical Physics +physics/0212114 Biological Physics +physics/0302044 Physics Education +physics/0303077 Computational Physics +physics/0304014 Instrumentation and Detectors +physics/0304066 Accelerator Physics +physics/0304110 Fluid Dynamics +physics/0305069 Computational Physics +physics/0305134 Data Analysis, Statistics and Probability +physics/0305137 Instrumentation and Detectors +physics/0306034 Data Analysis, Statistics and Probability +physics/0306063 Data Analysis, Statistics and Probability +physics/0306089 Instrumentation and Detectors +physics/0306135 Accelerator Physics +physics/0306154 Chemical Physics +physics/0306185 Atomic and Molecular Clusters +physics/0307154 Atomic Physics +physics/0308040 Computational Physics +physics/0309040 General Physics +physics/0310010 Classical Physics +physics/0310069 Physics Education +physics/0311109 Atomic and Molecular Clusters +physics/0312128 Instrumentation and Detectors +physics/0312132 Instrumentation and Detectors +physics/0401119 Atmospheric and Oceanic Physics +physics/0402077 Chemical Physics +physics/0402115 Instrumentation and Detectors +physics/0403041 Medical Physics +physics/0403109 History and Philosophy of Physics +physics/0404062 Data Analysis, Statistics and Probability +physics/0404073 Optics +physics/0404144 Chemical Physics +physics/0405062 Optics +physics/0406067 Accelerator Physics +physics/0406075 Chemical Physics +physics/0408107 Atomic Physics +physics/0408123 Atomic Physics +physics/0409108 Computational Physics +physics/0409152 Atomic Physics +physics/0411022 Computational Physics +physics/0411123 Accelerator Physics +physics/0411216 Popular Physics +physics/0412036 Instrumentation and Detectors +physics/0412091 Plasma Physics +physics/0412107 Physics Education +physics/0412124 Atomic Physics +physics/0412179 Optics +physics/0412181 Atomic Physics +physics/0412183 Chemical Physics +physics/0501124 Plasma Physics +physics/0501131 General Physics +physics/0502015 Atomic and Molecular Clusters +physics/0502023 Optics +physics/0503035 Fluid Dynamics +physics/0503147 Physics and Society +physics/0503151 Instrumentation and Detectors +physics/0504035 Instrumentation and Detectors +physics/0504075 Classical Physics +physics/0505027 General Physics +physics/0505088 Popular Physics +physics/0505107 Biological Physics +physics/0505147 Physics and Society +physics/0506030 Data Analysis, Statistics and Probability +physics/0506079 Optics +physics/0506145 Plasma Physics +physics/0506231 Optics +physics/0507103 Medical Physics +physics/0507127 Physics and Society +physics/0508053 Accelerator Physics +physics/0509090 Physics and Society +physics/0509170 Fluid Dynamics +physics/0509246 Atomic Physics +physics/0511028 Data Analysis, Statistics and Probability +physics/0511032 Physics Education +physics/0511209 Popular Physics +physics/0512019 Atomic Physics +physics/0601189 Physics and Society +physics/0602037 General Physics +physics/0602068 Instrumentation and Detectors +physics/0603007 Physics and Society +physics/0603269 Accelerator Physics +physics/0604007 Atomic Physics +physics/0607229 Instrumentation and Detectors +physics/0608024 Atomic Physics +physics/0608079 Fluid Dynamics +physics/0608257 Fluid Dynamics +physics/0608258 Fluid Dynamics +physics/0608259 Fluid Dynamics +physics/0609103 Chemical Physics +physics/0610286 Instrumentation and Detectors +physics/0611008 Physics and Society +physics/0611011 Medical Physics +physics/0611075 Instrumentation and Detectors +physics/0611178 Instrumentation and Detectors +physics/0612027 Optics +physics/0701002 Instrumentation and Detectors +physics/0701016 General Physics +physics/0701141 Fluid Dynamics +physics/0701204 Physics and Society +physics/0701291 Instrumentation and Detectors +physics/0702170 Data Analysis, Statistics and Probability +physics/0703062 Physics Education +q-bio/0310014 Cell Behavior +q-bio/0311012 Molecular Networks +q-bio/0312034 Biomolecules +q-bio/0405024 Subcellular Processes +q-bio/0407037 Genomics +q-bio/0410023 Molecular Networks +q-bio/0501009 Populations and Evolution +q-bio/0505006 Molecular Networks +q-bio/0505029 Neurons and Cognition +q-bio/0506031 Biomolecules +q-bio/0508002 Populations and Evolution +q-bio/0508037 Biomolecules +q-bio/0510015 Neurons and Cognition +q-bio/0511042 Quantitative Methods +q-bio/0602008 Biomolecules +q-bio/0605027 Neurons and Cognition +q-bio/0607027 Cell Behavior +q-bio/0608022 Quantitative Methods +q-bio/0610006 Populations and Evolution +q-bio/0610008 Molecular Networks +quant-ph/0005082 +quant-ph/0105150 +quant-ph/0203036 +quant-ph/0204113 +quant-ph/0205193 +quant-ph/0207162 +quant-ph/0208064 +quant-ph/0212065 +quant-ph/0301049 +quant-ph/0303059 +quant-ph/0303181 +quant-ph/0305024 +quant-ph/0307022 +quant-ph/0307048 +quant-ph/0308129 +quant-ph/0309056 +quant-ph/0309077 +quant-ph/0310101 +quant-ph/0312071 +quant-ph/0312226 +quant-ph/0402130 +quant-ph/0402145 +quant-ph/0402182 +quant-ph/0404061 +quant-ph/0404132 +quant-ph/0405025 +quant-ph/0405030 +quant-ph/0406152 +quant-ph/0408081 +quant-ph/0411108 +quant-ph/0411175 +quant-ph/0412028 +quant-ph/0501071 +quant-ph/0501182 +quant-ph/0503072 +quant-ph/0503178 +quant-ph/0504202 +quant-ph/0505053 +quant-ph/0505226 +quant-ph/0507040 +quant-ph/0507100 +quant-ph/0509097 +quant-ph/0509142 +quant-ph/0509143 +quant-ph/0509146 +quant-ph/0512202 +quant-ph/0512211 +quant-ph/0602107 +quant-ph/0603124 +quant-ph/0603217 +quant-ph/0605007 +quant-ph/0605052 +quant-ph/0605133 +quant-ph/0607123 +quant-ph/0608013 +quant-ph/0608035 +quant-ph/0608140 +quant-ph/0609017 +quant-ph/0609127 +quant-ph/0609167 +quant-ph/0610115 +quant-ph/0610178 +quant-ph/0701230 +quant-ph/0702044 +quant-ph/0703271 +0709.2667 Dynamical Systems +0710.1093 +0711.1685 Differential Geometry +0712.2214 Group Theory +0712.4083 +0802.0038 Mesoscale and Nanoscale Physics +0804.2513 Mesoscale and Nanoscale Physics +0806.0919 Differential Geometry +0807.0750 Physics and Society +0807.4797 +0808.3811 Dynamical Systems +0809.0034 +0809.3036 +0810.3372 Mesoscale and Nanoscale Physics +0811.1034 Differential Geometry +0811.2990 Spectral Theory +0812.1540 Dynamical Systems +0901.1921 +0901.2176 Theory +0901.2492 Experiment +0901.3724 +0901.4242 Mesoscale and Nanoscale Physics +0901.4391 +0902.0685 History and Overview +0902.3345 Optimization and Control +0902.4651 Statistical Mechanics +0903.3515 Superconductivity +0904.0356 Statistical Mechanics +0905.3016 Soft Condensed Matter +0906.2425 Fluid Dynamics +0907.0834 Phenomenology +0907.1948 Computer Science and Game Theory +0907.2760 +0908.0245 Astrophysics of Galaxies +0908.0904 Mesoscale and Nanoscale Physics +0908.1311 Lattice +0908.2731 Solar and Stellar Astrophysics +0908.3768 Analysis of PDEs +0908.3890 High Energy Astrophysical Phenomena +0908.4565 Operator Algebras +0909.1550 +0909.1854 Populations and Evolution +0909.2222 Soft Condensed Matter +0909.3381 Mesoscale and Nanoscale Physics +0909.3529 Soft Condensed Matter +0909.4547 Combinatorics +0909.5322 Symplectic Geometry +0910.0280 Statistical Mechanics +0910.3753 Strongly Correlated Electrons +0910.4419 Algebraic Topology +0910.4909 Materials Science +0911.1195 Phenomenology +0911.1287 Analysis of PDEs +0911.2519 Probability +0911.2700 Cosmology and Nongalactic Astrophysics +0911.3178 Dynamical Systems +0911.3693 +0912.0346 Astrophysics of Galaxies +0912.0761 Mesoscale and Nanoscale Physics +0912.2857 +0912.3255 High Energy Astrophysical Phenomena +0912.3258 Cosmology and Nongalactic Astrophysics +0912.3266 Differential Geometry +0912.3268 Machine Learning +0912.3269 History and Overview +0912.3271 Differential Geometry +0912.3273 Quantum Gases +0912.3275 Computer Science and Game Theory +0912.3277 High Energy Astrophysical Phenomena +0912.3282 Geometric Topology +0912.3285 Solar and Stellar Astrophysics +0912.3290 Probability +0912.3297 Optimization and Control +0912.3301 Machine Learning +0912.3309 Artificial Intelligence +0912.3316 Optics +0912.3321 Dynamical Systems +0912.3324 General Physics +0912.3329 Instrumentation and Methods for Astrophysics +0912.3333 Algebraic Geometry +0912.3336 Quantum Gases +0912.3341 Superconductivity +0912.3344 Soft Condensed Matter +0912.3346 High Energy Astrophysical Phenomena +0912.3352 Differential Geometry +0912.3353 Experiment +0912.3355 Classical Physics +0912.3359 Rings and Algebras +0912.3371 Optics +0912.3373 Differential Geometry +0912.3381 Dynamical Systems +0912.3383 Classical Physics +0912.3387 Algebraic Geometry +0912.3391 High Energy Astrophysical Phenomena +0912.3395 Chaotic Dynamics +0912.3398 Mathematical Software +0912.3402 Biological Physics +0912.3408 Machine Learning +0912.3414 Fluid Dynamics +0912.3415 Representation Theory +0912.3423 Complex Variables +0912.3425 Probability +0912.3426 Neurons and Cognition +0912.3433 General Physics +0912.3437 +0912.3439 Materials Science +0912.3442 General Physics +0912.3443 +0912.3448 Instrumentation and Methods for Astrophysics +0912.3452 Quantum Algebra +0912.3465 Analysis of PDEs +0912.3467 Solar and Stellar Astrophysics +0912.3469 Disordered Systems and Neural Networks +0912.3471 Metric Geometry +0912.3473 Cosmology and Nongalactic Astrophysics +0912.3478 High Energy Astrophysical Phenomena +0912.3493 Fluid Dynamics +0912.3495 Phenomenology +0912.3498 High Energy Astrophysical Phenomena +0912.3509 +0912.3514 Combinatorics +astro-ph/0702006 +cond-mat/0003264 Materials Science +cond-mat/0004372 Materials Science +cond-mat/0205442 Materials Science +cond-mat/0501265 Materials Science +cond-mat/0501548 Materials Science +math/0104103 Dynamical Systems +math/0202207 Dynamical Systems +math/0202233 Dynamical Systems +math/0206128 Rings and Algebras +math/0206189 Dynamical Systems +math/0210178 Dynamical Systems +math/0408344 Dynamical Systems +math/0510232 Dynamical Systems +math/0611397 Dynamical Systems +nlin/0101044 Pattern Formation and Solitons +0707.3448 Probability +0711.4747 Phenomenology +0711.4952 +0711.4953 +0801.2907 +0801.3896 Commutative Algebra +0802.4013 Data Analysis, Statistics and Probability +0804.1904 +0806.2051 Theory +0807.3375 Chaotic Dynamics +0807.3963 +0808.1189 Complex Variables +0809.1526 Statistical Mechanics +0809.2977 Phenomenology +0810.4466 Mesoscale and Nanoscale Physics +0810.4861 Phenomenology +0811.1356 Mesoscale and Nanoscale Physics +0811.2731 Discrete Mathematics +0811.2801 Theory +0812.1976 +0812.2913 +0812.4131 +0901.0579 +0901.0626 Differential Geometry +0901.2453 Probability +0901.4062 Other Condensed Matter +0902.4066 Cosmology and Nongalactic Astrophysics +0902.4438 Theory +0902.4553 Cosmology and Nongalactic Astrophysics +0902.4628 +0903.0234 +0903.0456 Mesoscale and Nanoscale Physics +0903.0662 Quantitative Methods +0903.1998 Materials Science +0903.2596 Theory +0903.3941 Phenomenology +0903.5500 Geometric Topology +0904.4378 Strongly Correlated Electrons +0905.1121 High Energy Astrophysical Phenomena +0905.3573 Statistics Theory +0907.0323 Statistical Mechanics +0907.0928 Differential Geometry +0907.3950 Combinatorics +0908.1417 Analysis of PDEs +0908.1829 Mesoscale and Nanoscale Physics +0908.1901 Strongly Correlated Electrons +0908.2319 Number Theory +0908.3297 Astrophysics of Galaxies +0908.3491 +0909.0273 Group Theory +0909.0286 Computational Physics +0909.0292 Experiment +0909.0293 Quantum Algebra +0909.0298 Complex Variables +0909.0299 +0909.0301 Combinatorics +0909.0303 Combinatorics +0909.0317 Cosmology and Nongalactic Astrophysics +0909.0321 Group Theory +0909.0326 Rings and Algebras +0909.0328 Combinatorics +0909.0330 Representation Theory +0909.0331 Classical Physics +0909.0335 Dynamical Systems +0909.0338 Probability +0909.0340 Number Theory +0909.0343 Statistics Theory +0909.0347 Computer Science and Game Theory +0909.0348 Commutative Algebra +0909.0349 Statistics Theory +0909.0352 Mesoscale and Nanoscale Physics +0909.0359 Statistics Theory +0909.0362 Number Theory +0909.0363 Numerical Analysis +0909.0365 Commutative Algebra +0909.0368 Optimization and Control +0909.0375 +0909.0378 Mesoscale and Nanoscale Physics +0909.0384 Statistics Theory +0909.0386 High Energy Astrophysical Phenomena +0909.0387 Classical Analysis and ODEs +0909.0388 +0909.0389 Computation +0909.0394 High Energy Astrophysical Phenomena +0909.0400 Genomics +0909.0409 +0909.0411 Statistics Theory +0909.0413 Combinatorics +0909.0419 Phenomenology +0909.0421 Rings and Algebras +0909.0429 +0909.0430 Differential Geometry +0909.0433 Statistics Theory +0909.0435 Quantum Algebra +0909.0436 K-Theory and Homology +0909.0438 Number Theory +0909.0439 Statistics Theory +0909.0442 Robotics +0909.0443 Statistics Theory +0909.0445 Instrumentation and Methods for Astrophysics +0909.0447 Soft Condensed Matter +0909.0450 Physics and Society +0909.0453 Algebraic Geometry +0909.0462 Probability +0909.0469 Combinatorics +0909.0470 Solar and Stellar Astrophysics +0909.0471 Combinatorics +0909.0477 Soft Condensed Matter +0909.0480 Superconductivity +0909.0488 Probability +0909.0492 Analysis of PDEs +0909.0493 Experiment +0909.0497 +cond-mat/0310648 Statistical Mechanics +hep-ph/9711424 Phenomenology +math/0503670 Group Theory +quant-ph/0606225 +0705.0729 +0706.3025 Phenomenology +0707.4420 +0801.0155 Probability +0802.0097 Category Theory +0803.2244 Differential Geometry +0804.1932 Computational Complexity +0805.2152 Phenomenology +0806.2131 Superconductivity +0806.2642 Superconductivity +0806.3866 +0807.0339 Representation Theory +0807.0379 +0807.1570 Theory +0807.1754 General Physics +0807.3678 Soft Condensed Matter +0807.3994 Mesoscale and Nanoscale Physics +0808.2686 Group Theory +0808.3876 Other Condensed Matter +0809.0875 Atmospheric and Oceanic Physics +0809.2689 Strongly Correlated Electrons +0809.3101 +0810.0422 Operator Algebras +0810.5718 Mesoscale and Nanoscale Physics +0811.1918 +0811.2219 Other Condensed Matter +0811.2877 +0812.2285 Phenomenology +0812.3052 +0812.3140 Mesoscale and Nanoscale Physics +0812.3324 Experiment +0812.3783 Phenomenology +0812.4733 Materials Science +0901.4388 Complex Variables +0901.4711 Phenomenology +0902.0140 Data Structures and Algorithms +0902.2050 Representation Theory +0902.3832 Superconductivity +0903.0905 Combinatorics +0903.3002 Methodology +0903.4744 +0904.0499 Representation Theory +0904.0873 Fluid Dynamics +0904.2448 Discrete Mathematics +0904.4443 Phenomenology +0904.4714 Solar and Stellar Astrophysics +0905.0081 Soft Condensed Matter +0905.0142 Theory +0905.0153 Soft Condensed Matter +0905.0156 Combinatorics +0905.0168 Phenomenology +0905.0190 Classical Physics +0905.0191 Combinatorics +0905.0192 Artificial Intelligence +0905.0195 Combinatorics +0905.0196 Materials Science +0905.0201 +0905.0202 Materials Science +0905.0206 Phenomenology +0905.0210 Applications +0905.0212 Chaotic Dynamics +0905.0215 Classical Analysis and ODEs +0905.0216 Differential Geometry +0905.0217 Commutative Algebra +0905.0219 Geometric Topology +0905.0221 Phenomenology +0905.0224 Symplectic Geometry +0905.0226 +0905.0227 General Mathematics +0905.0229 Solar and Stellar Astrophysics +0905.0230 Numerical Analysis +0905.0234 +0905.0236 Representation Theory +0905.0238 Geophysics +0905.0239 Geophysics +0905.0243 Number Theory +0905.0244 Number Theory +0905.0245 +0905.0253 High Energy Astrophysical Phenomena +0905.0256 Group Theory +0905.0261 +0905.0263 Optics +0905.0264 Classical Analysis and ODEs +0905.0265 Classical Analysis and ODEs +0905.0270 Spectral Theory +0905.0275 Algebraic Geometry +0905.0276 Plasma Physics +0905.0280 Differential Geometry +0905.0281 Materials Science +0905.0283 Data Structures and Algorithms +0905.0294 Number Theory +0905.0295 Group Theory +0905.0297 Mesoscale and Nanoscale Physics +0905.0299 Category Theory +0905.0309 Mesoscale and Nanoscale Physics +0905.0311 Strongly Correlated Electrons +0905.0312 +0905.0319 Algebraic Geometry +0905.0327 Phenomenology +0905.0339 Rings and Algebras +0905.0341 Materials Science +0905.0350 Combinatorics +0905.0354 Logic +0905.0356 Functional Analysis +0905.0357 Logic +0905.0358 Logic +0905.0360 Instrumentation and Methods for Astrophysics +0905.0361 Instrumentation and Methods for Astrophysics +0905.0362 Differential Geometry +0905.0369 Logic +0905.0370 Differential Geometry +0905.0371 Logic +0905.0376 Statistical Mechanics +0905.0383 Biomolecules +0905.0387 +0905.0394 +0905.0397 Information Theory +0905.0401 Number Theory +0905.0407 Representation Theory +0905.0409 Number Theory +0905.0415 Plasma Physics +0905.0417 Information Theory +0905.0419 Phenomenology +0905.0422 Representation Theory +0905.0429 +0905.0432 Representation Theory +0905.0442 Cosmology and Nongalactic Astrophysics +0905.0444 High Energy Astrophysical Phenomena +0905.0445 Applications +0905.0449 Cosmology and Nongalactic Astrophysics +0905.0451 Discrete Mathematics +0905.0452 Cosmology and Nongalactic Astrophysics +0905.0454 Applications +0905.0455 Analysis of PDEs +0905.0456 Logic +0905.0458 Logic +0905.0459 Category Theory +0905.0461 Combinatorics +0905.0464 Strongly Correlated Electrons +0905.0465 Category Theory +0905.0468 General Finance +cond-mat/0007417 Disordered Systems and Neural Networks +cond-mat/0112421 Mesoscale and Nanoscale Physics +cond-mat/0209254 Disordered Systems and Neural Networks +cond-mat/0502210 Other Condensed Matter +cond-mat/0609038 Superconductivity +hep-ph/0204075 Phenomenology +hep-ph/0204083 Phenomenology +hep-ph/0204084 Phenomenology +hep-ph/0301220 Phenomenology +hep-ph/0407124 Phenomenology +hep-ph/0502070 Phenomenology +hep-ph/0509332 Phenomenology +hep-ph/0609293 Phenomenology +hep-ph/9210239 Phenomenology +hep-ph/9512364 Phenomenology +hep-ph/9602371 Phenomenology +hep-ph/9704321 Phenomenology +hep-ph/9807264 Phenomenology +hep-ph/9905369 Phenomenology +hep-th/0504154 Theory +hep-th/0701266 Theory +math-ph/0407006 +physics/0006010 Accelerator Physics +0706.2584 Superconductivity +0711.1193 Other Quantitative Biology +0803.3807 +0809.1102 Algebraic Geometry +0810.0644 Functional Analysis +0812.0022 Probability +0812.3573 Other Condensed Matter +0812.5061 Statistics Theory +0901.4775 High Energy Astrophysical Phenomena +0901.4776 High Energy Astrophysical Phenomena +0903.1326 Other Condensed Matter +0906.1013 Mesoscale and Nanoscale Physics +0906.4334 Functional Analysis +0906.4721 Optics +0907.1151 +0908.0542 Quantum Algebra +0908.2551 Quantum Gases +0910.3579 Fluid Dynamics +0911.3473 Computational Complexity +cond-mat/0512719 Superconductivity +cond-mat/9305035 +math/0202001 Group Theory +math/0410492 Operator Algebras +math/0508573 K-Theory and Homology +math/0509092 Number Theory +0704.0362 +0704.0421 +0704.2479 Atomic Physics +0704.3010 Atomic Physics +0706.1358 Phenomenology +0707.1988 Instrumentation and Detectors +0707.2972 Algebraic Geometry +0708.0271 Information Theory +0711.2088 +0712.1524 +0712.2362 +0712.3672 Other Condensed Matter +0801.0045 Phenomenology +0801.0217 Differential Geometry +0803.4047 Differential Geometry +0803.4160 Differential Geometry +0804.2934 General Mathematics +0806.0373 Differential Geometry +0807.1229 Algebraic Geometry +0807.4510 +0809.0032 Information Theory +0809.0169 +0809.3293 Geometric Topology +0809.3327 Differential Geometry +0810.2711 Complex Variables +0810.4109 Materials Science +0810.4690 Pattern Formation and Solitons +0810.5326 K-Theory and Homology +0812.0243 Differential Geometry +0812.1123 Data Structures and Algorithms +0812.1633 Computational Physics +0812.3264 Statistical Mechanics +0812.4087 Operator Algebras +0901.2114 +0901.2119 Solar and Stellar Astrophysics +0901.4229 Astrophysics of Galaxies +0902.1296 Differential Geometry +0902.3722 Logic in Computer Science +0902.4839 Mesoscale and Nanoscale Physics +0903.1703 +0903.2967 Combinatorics +0903.4762 Instrumentation and Detectors +0904.0074 Materials Science +0904.0663 Theory +0904.1406 Differential Geometry +0904.2836 Theory +0904.3439 Mesoscale and Nanoscale Physics +0905.0685 Commutative Algebra +0905.1655 General Mathematics +0905.2048 +0905.2322 Theory +0905.2424 +0905.3399 +0905.3423 Theory +0905.4195 Lattice +0906.1454 Phenomenology +0906.1875 Algebraic Geometry +0906.2525 Theory +0906.2791 Mesoscale and Nanoscale Physics +0906.5466 Fluid Dynamics +0907.0307 Experiment +0907.0579 Phenomenology +0907.1070 Geometric Topology +0907.1500 Solar and Stellar Astrophysics +0907.2140 Theory +0907.2296 Theory +0907.2989 Theory +0907.3084 Lattice +0907.3143 Phenomenology +0907.3566 Theory +0907.3773 Soft Condensed Matter +0907.4793 Phenomenology +0907.5331 +0908.0055 Theory +0908.0100 Artificial Intelligence +0908.0631 Phenomenology +0908.0900 Theory +0908.1561 Chemical Physics +0908.2154 Phenomenology +0908.2346 Theory +0909.0021 Phenomenology +0909.0139 Strongly Correlated Electrons +0909.1074 +0909.2170 +0909.3127 Computational Geometry +0909.3718 Experiment +0909.3721 +0909.4064 Cosmology and Nongalactic Astrophysics +0909.4171 Mesoscale and Nanoscale Physics +0909.4948 Probability +0910.1476 Algebraic Geometry +0910.3056 Physics and Society +0910.5620 Theory +0911.1402 General Physics +0911.1611 Analysis of PDEs +0911.3236 Theory +0911.3648 Algebraic Geometry +0911.3671 +0911.3894 +0911.3895 Probability +0911.3908 Algebraic Geometry +0911.3911 Cosmology and Nongalactic Astrophysics +0911.3913 +0911.3919 Representation Theory +0911.3924 Algebraic Geometry +0911.3925 Chaotic Dynamics +0911.3932 Mesoscale and Nanoscale Physics +0911.3939 General Physics +0911.3941 Atmospheric and Oceanic Physics +0911.3942 Instrumentation and Methods for Astrophysics +0911.3949 +0911.3951 Operator Algebras +0911.3952 Analysis of PDEs +0911.3955 Analysis of PDEs +0911.3956 Materials Science +0911.3957 +0911.3972 Metric Geometry +0911.3973 Functional Analysis +0911.3979 Information Retrieval +0911.3980 Fluid Dynamics +0911.3982 Metric Geometry +0911.3987 +0911.3992 Information Theory +0911.3993 Representation Theory +0911.3996 +0911.3998 Chemical Physics +0911.4000 Combinatorics +0911.4003 Combinatorics +0911.4004 High Energy Astrophysical Phenomena +0911.4005 +0911.4007 +0911.4008 Combinatorics +0911.4009 +0911.4010 Combinatorics +0911.4012 Astrophysics of Galaxies +0911.4014 Other Quantitative Biology +0911.4017 Mesoscale and Nanoscale Physics +0911.4018 Astrophysics of Galaxies +0911.4021 Statistics Theory +0911.4027 Statistics Theory +0911.4030 Risk Management +0911.4033 Cryptography and Security +0911.4035 Mesoscale and Nanoscale Physics +0911.4038 Probability +0911.4039 General Finance +0911.4047 Programming Languages +0911.4048 Category Theory +0911.4049 Disordered Systems and Neural Networks +0911.4050 Commutative Algebra +0911.4051 Logic in Computer Science +0911.4058 +0911.4079 Plasma Physics +0911.4080 Statistics Theory +0911.4083 Dynamical Systems +0911.4088 History and Philosophy of Physics +0911.4089 Superconductivity +0911.4090 +0911.4092 Probability +0911.4097 Statistics Theory +0911.4100 Combinatorics +0911.4102 Superconductivity +0911.4108 Numerical Analysis +0911.4116 Medical Physics +0911.4118 Rings and Algebras +astro-ph/0306525 +astro-ph/0307379 +astro-ph/0308397 +astro-ph/0508094 +astro-ph/0508592 +astro-ph/0508593 +astro-ph/0510251 +hep-ph/0311123 Phenomenology +math-ph/0602033 +math/0406332 Differential Geometry +math/0502322 Differential Geometry +math/0601150 Quantum Algebra +math/0603500 K-Theory and Homology +math/0608331 General Mathematics +math/0611789 Rings and Algebras +0712.4311 +0803.3274 Mesoscale and Nanoscale Physics +0803.4104 Phenomenology +0804.3275 Biological Physics +0804.3839 Theory +0809.1833 Quantitative Methods +0810.1548 +0810.2658 Populations and Evolution +0810.3197 Probability +0811.4225 +0812.0113 Optics +0901.2787 Strongly Correlated Electrons +0901.3474 Phenomenology +math/0601714 Combinatorics +0707.0285 Information Theory +0803.4366 +0809.4160 +0811.1543 Statistical Mechanics +0811.2560 +0812.3691 Methodology +0812.3697 Probability +0902.0055 +0903.2620 Theory +0903.3388 Operator Algebras +0904.1124 +0905.4944 +0906.4318 Cosmology and Nongalactic Astrophysics +0908.3738 Representation Theory +hep-ph/0307130 Phenomenology +math/0612811 Statistics Theory +quant-ph/0703267 +0706.1015 Theory +0710.4536 Methodology +0711.4637 +0712.4090 Theory +0802.3669 Algebraic Geometry +0802.4302 Algebraic Geometry +0803.4399 Algebraic Geometry +0804.3419 Number Theory +0804.3758 Optics +0805.1706 Dynamical Systems +0805.2428 Superconductivity +0805.2670 +0805.4014 +0806.1211 Mesoscale and Nanoscale Physics +0807.4299 Phenomenology +0808.0173 Atomic Physics +0808.2036 Data Analysis, Statistics and Probability +0809.0533 Networking and Internet Architecture +0809.1161 Disordered Systems and Neural Networks +0809.4332 Disordered Systems and Neural Networks +0809.4410 Rings and Algebras +0810.0584 Disordered Systems and Neural Networks +0810.0677 Probability +0810.4474 Atomic Physics +0810.4953 +0810.5452 Strongly Correlated Electrons +0811.3860 +0812.0044 +0812.0133 Strongly Correlated Electrons +0812.2338 +0812.4035 Medical Physics +0812.4947 Statistical Mechanics +0901.0587 Theory +0901.2962 Machine Learning +0901.3854 General Physics +0902.1277 +0902.2577 Data Analysis, Statistics and Probability +0902.2581 Data Analysis, Statistics and Probability +0902.2837 Representation Theory +0903.0059 Differential Geometry +0903.0138 Group Theory +0903.1800 History and Philosophy of Physics +0903.2345 Probability +0903.2476 Theory +0903.2485 Astrophysics of Galaxies +0903.2487 Phenomenology +0903.2492 Materials Science +0903.2494 Combinatorics +0903.2495 Group Theory +0903.2500 Other Condensed Matter +0903.2504 Mesoscale and Nanoscale Physics +0903.2506 Combinatorics +0903.2507 Combinatorics +0903.2508 Combinatorics +0903.2509 Combinatorics +0903.2510 Combinatorics +0903.2515 Statistics Theory +0903.2516 Neural and Evolutionary Computing +0903.2520 Number Theory +0903.2524 +0903.2525 Distributed, Parallel, and Cluster Computing +0903.2528 Artificial Intelligence +0903.2531 Classical Analysis and ODEs +0903.2532 Cosmology and Nongalactic Astrophysics +0903.2533 Physics and Society +0903.2537 Statistical Mechanics +0903.2543 Multiagent Systems +0903.2546 Computational Physics +0903.2549 Cosmology and Nongalactic Astrophysics +0903.2555 Combinatorics +0903.2566 Commutative Algebra +0903.2567 Commutative Algebra +0903.2569 Neurons and Cognition +0903.2572 Probability +0903.2578 Combinatorics +0903.2579 Combinatorics +0903.2582 +0903.2585 Optics +0903.2601 +0903.2603 Solar and Stellar Astrophysics +0903.2614 Classical Analysis and ODEs +0903.2615 History and Overview +0903.2621 Dynamical Systems +0903.2630 Materials Science +0903.2635 Representation Theory +0903.2637 Combinatorics +0903.2638 Subcellular Processes +0903.2642 +0903.2643 Combinatorics +0903.2647 Classical Analysis and ODEs +0903.2648 +0903.2649 Soft Condensed Matter +0903.2651 Methodology +0903.2654 Methodology +0903.2657 Statistical Mechanics +0903.2659 General Topology +0903.2664 +0903.2668 Cosmology and Nongalactic Astrophysics +0903.2673 Dynamical Systems +0903.2675 Information Theory +0903.2677 Rings and Algebras +0903.2678 +0903.2679 Combinatorics +0903.2682 Cryptography and Security +0903.2689 General Physics +0903.2692 Probability +0903.2695 Robotics +0903.2696 Probability +0903.2698 Soft Condensed Matter +0903.2699 Spectral Theory +0903.2700 Materials Science +0903.2705 +0903.2708 Operator Algebras +0903.2712 Number Theory +0903.2713 Analysis of PDEs +0903.2717 Biological Physics +0903.2725 +0903.2726 Cosmology and Nongalactic Astrophysics +0903.2730 Instrumentation and Methods for Astrophysics +0903.2734 Instrumentation and Methods for Astrophysics +0903.2737 +0903.2742 Discrete Mathematics +0903.2747 Dynamical Systems +0903.2748 Geophysics +0903.2750 Astrophysics of Galaxies +0903.2762 Cosmology and Nongalactic Astrophysics +0903.2765 Mesoscale and Nanoscale Physics +0903.2767 Logic +0903.2772 Statistical Mechanics +0903.2773 Combinatorics +0903.2776 Solar and Stellar Astrophysics +0903.2778 Phenomenology +0903.2779 Commutative Algebra +0903.2782 Analysis of PDEs +0903.2791 Information Theory +0903.2799 Cosmology and Nongalactic Astrophysics +0903.2803 Instrumentation and Detectors +0903.2809 Functional Analysis +0903.2810 Number Theory +0903.2813 Algebraic Topology +0903.2816 Numerical Analysis +0903.2818 Algebraic Topology +0903.2819 Algebraic Topology +0903.2821 Functional Analysis +0903.2824 Analysis of PDEs +0903.2825 Computational Complexity +0903.2826 Optimization and Control +0903.2828 Astrophysics of Galaxies +0903.2836 Metric Geometry +math/0202287 Algebraic Topology +math/0503718 Geometric Topology +math/0506208 Geometric Topology +math/0603312 Algebraic Geometry +math/0703561 Logic +0711.1203 Algebraic Geometry +0804.0242 Geometric Topology +0809.2026 Materials Science +0809.2737 Materials Science +0811.4068 Analysis of PDEs +0901.4395 +0902.4107 Operator Algebras +0904.0438 Biological Physics +0904.1226 Statistics Theory +0905.1751 Neural and Evolutionary Computing +0905.2016 +0906.1510 Materials Science +0907.1779 Data Structures and Algorithms +0908.2251 Algebraic Geometry +0908.2753 Statistical Mechanics +0909.0968 Geometric Topology +0909.1076 Operator Algebras +0909.1457 Optics +0909.2949 Statistical Mechanics +0909.5178 Quantum Algebra +0910.0761 Materials Science +0910.2250 Combinatorics +0910.4243 Instrumentation and Methods for Astrophysics +cond-mat/9611108 Statistical Mechanics +cond-mat/9710228 Mesoscale and Nanoscale Physics +math/0702069 General Mathematics +quant-ph/0208026 +0705.2632 Theory +0710.4253 Geometric Topology +0711.1135 Representation Theory +0801.1569 Commutative Algebra +0802.3948 Combinatorics +0803.3108 Differential Geometry +0803.4023 General Mathematics +0803.4254 General Topology +0804.1024 Differential Geometry +0804.1239 Superconductivity +0804.2877 Commutative Algebra +0807.0937 +0808.2368 Number Theory +0809.0157 Analysis of PDEs +0809.0337 +0809.1759 +0809.3683 Representation Theory +0810.2785 +0810.3386 Mesoscale and Nanoscale Physics +0810.4538 +0810.4964 Algebraic Geometry +0810.5187 +0811.0676 Mesoscale and Nanoscale Physics +0811.1065 Strongly Correlated Electrons +0811.2193 Soft Condensed Matter +0811.3545 Mesoscale and Nanoscale Physics +0812.1512 Statistical Finance +0812.2993 +0812.3210 Atomic Physics +0812.3983 Superconductivity +0901.0779 Statistical Mechanics +0901.3180 Operator Algebras +0901.3247 Strongly Correlated Electrons +0901.3394 Superconductivity +0901.4504 +0902.1096 General Physics +0902.1808 Materials Science +0902.2128 Astrophysics of Galaxies +0902.2193 Differential Geometry +0902.2757 Rings and Algebras +0902.3488 High Energy Astrophysical Phenomena +0902.3928 Astrophysics of Galaxies +0902.3932 Astrophysics of Galaxies +0903.1057 Medical Physics +0903.1059 Databases +0903.1061 Computers and Society +0903.1241 Soft Condensed Matter +0903.1242 Materials Science +0903.1300 Solar and Stellar Astrophysics +0903.1306 Superconductivity +0903.1314 Statistics Theory +0903.1316 Theory +0903.1320 Differential Geometry +0903.1321 Differential Geometry +0903.1325 Dynamical Systems +0903.1329 Earth and Planetary Astrophysics +0903.1331 Soft Condensed Matter +0903.1332 Soft Condensed Matter +0903.1338 Logic +0903.1339 +0903.1345 Physics and Society +0903.1350 General Mathematics +0903.1359 Combinatorics +0903.1364 Solar and Stellar Astrophysics +0903.1365 Solar and Stellar Astrophysics +0903.1367 Logic +0903.1368 Differential Geometry +0903.1375 +0903.1380 General Mathematics +0903.1386 Distributed, Parallel, and Cluster Computing +0903.1389 Distributed, Parallel, and Cluster Computing +0903.1390 Solar and Stellar Astrophysics +0903.1396 Combinatorics +0903.1397 Dynamical Systems +0903.1400 Theory +0903.1407 Discrete Mathematics +0903.1419 Representation Theory +0903.1425 General Topology +0903.1426 Dynamical Systems +0903.1429 +0903.1433 Probability +0903.1434 Applications +0903.1435 Analysis of PDEs +0903.1436 Analysis of PDEs +0903.1437 Analysis of PDEs +0903.1447 Instrumentation and Methods for Astrophysics +0903.1448 Computer Vision and Pattern Recognition +0903.1455 Complex Variables +0903.1466 +0903.1467 Probability +0903.1469 +0903.1475 Biomolecules +0903.1476 Information Theory +0903.1482 High Energy Astrophysical Phenomena +0903.1496 Information Theory +0903.1504 Functional Analysis +0903.1506 Networking and Internet Architecture +0903.1509 Networking and Internet Architecture +0903.1511 Networking and Internet Architecture +0903.1514 Optics +0903.1515 Dynamical Systems +0903.1517 Theory +0903.1519 Populations and Evolution +0903.1525 Statistical Finance +0903.1526 Metric Geometry +0903.1529 Logic +0903.1531 Statistical Finance +0903.1539 +0903.1548 High Energy Astrophysical Phenomena +0903.1550 Materials Science +0903.1552 Probability +0903.1554 Rings and Algebras +0903.1555 Popular Physics +0903.1556 Information Theory +0903.1559 +0903.1563 Superconductivity +0903.1565 Materials Science +0903.1569 Functional Analysis +0903.1571 Statistical Mechanics +0903.1572 Statistical Mechanics +0903.1573 Group Theory +0903.1574 Functional Analysis +0903.1577 Functional Analysis +0903.1580 +0903.1583 +0903.1585 Numerical Analysis +0903.1586 Group Theory +0903.1592 Computational Finance +0903.1594 Analysis of PDEs +0903.1595 Complex Variables +0903.1599 +0903.1600 Complex Variables +0903.1601 Optics +0903.1604 Quantum Algebra +0903.1605 Instrumentation and Detectors +0903.1609 Classical Analysis and ODEs +0903.1616 Accelerator Physics +0903.1619 Cosmology and Nongalactic Astrophysics +0903.1620 Optimization and Control +0903.1626 Rings and Algebras +0903.1628 Earth and Planetary Astrophysics +gr-qc/0002027 +gr-qc/0009060 +gr-qc/0109034 +gr-qc/0209085 +gr-qc/0303027 +gr-qc/0403051 +gr-qc/0507138 +gr-qc/9809031 +gr-qc/9902011 +gr-qc/9909022 +hep-ph/0404064 Phenomenology +hep-ph/9811469 Phenomenology +math/0204075 Quantum Algebra +math/0204165 General Topology +math/0211030 Representation Theory +math/0303321 Probability +math/0304352 Algebraic Geometry +math/0309455 Algebraic Topology +math/0405093 Algebraic Geometry +math/0406242 Geometric Topology +math/0409607 Number Theory +math/0412513 Geometric Topology +math/0504473 Geometric Topology +math/0505361 Geometric Topology +math/0507260 Geometric Topology +math/0507440 Geometric Topology +math/0511135 Number Theory +math/0601705 Algebraic Geometry +math/0604097 Number Theory +math/0604108 Representation Theory +math/0609304 Algebraic Topology +math/0609414 Commutative Algebra +math/0609691 Differential Geometry +math/0610907 Algebraic Topology +math/0611297 Dynamical Systems +math/9810042 Geometric Topology +math/9811155 Algebraic Geometry +math/9904032 Algebraic Geometry +math/9911163 Quantum Algebra +math/9912088 Algebraic Topology +plasm-ph/9502002 Plasma Physics +plasm-ph/9503001 Plasma Physics +plasm-ph/9505001 Plasma Physics +quant-ph/0605185 +quant-ph/0608189 +0705.4399 +0707.0063 +0707.1058 Algebraic Geometry +0710.3256 Physics and Society +0712.0653 Learning +0712.2928 Materials Science +0801.0948 Differential Geometry +0802.1222 Atomic Physics +0802.1780 Chaotic Dynamics +0804.0016 +0805.2075 Strongly Correlated Electrons +0806.2326 Probability +0806.2417 Differential Geometry +0806.2721 Optics +0807.0628 +0807.5126 +0808.3906 Geophysics +0809.4008 Theory +0810.0338 Differential Geometry +0811.0728 Dynamical Systems +0811.2350 Superconductivity +0811.3408 +0812.0713 Theory +0812.0951 Superconductivity +0812.3191 Strongly Correlated Electrons +0901.2442 Algebraic Geometry +0901.2895 Mesoscale and Nanoscale Physics +0902.0062 Geometric Topology +0903.4083 General Physics +0904.1704 Superconductivity +0904.2148 +0904.3111 Tissues and Organs +0904.4669 Experiment +0905.1127 Strongly Correlated Electrons +0905.1128 Optics +0905.1130 Information Retrieval +0905.1136 Theory +0905.1149 +0905.1152 Dynamical Systems +0905.1155 Rings and Algebras +0905.1157 Optics +0905.1159 Other Condensed Matter +0905.1167 Differential Geometry +0905.1169 Materials Science +0905.1178 Geometric Topology +0905.1183 Analysis of PDEs +0905.1186 Probability +0905.1192 Fluid Dynamics +0905.1194 K-Theory and Homology +0905.1203 Dynamical Systems +0905.1211 Experiment +0905.1216 Phenomenology +0905.1222 Experiment +0905.1226 Differential Geometry +0905.1227 +0905.1229 Number Theory +0905.1236 +0905.1237 Materials Science +0905.1238 Optimization and Control +0905.1240 Solar and Stellar Astrophysics +0905.1246 Complex Variables +0905.1248 Formal Languages and Automata Theory +0905.1250 Solar and Stellar Astrophysics +0905.1252 Instrumentation and Methods for Astrophysics +0905.1255 Quantum Gases +0905.1257 Analysis of PDEs +0905.1260 Strongly Correlated Electrons +0905.1268 Materials Science +0905.1270 Optimization and Control +0905.1271 Formal Languages and Automata Theory +0905.1277 Spectral Theory +0905.1283 Popular Physics +0905.1287 High Energy Astrophysical Phenomena +0905.1288 Number Theory +0905.1289 Phenomenology +0905.1294 Classical Analysis and ODEs +0905.1297 Probability +0905.1299 Analysis of PDEs +0905.1300 Computational Complexity +0905.1301 Experiment +0905.1303 Analysis of PDEs +0905.1305 Information Theory +0905.1307 Cryptography and Security +0905.1308 Classical Analysis and ODEs +0905.1313 Combinatorics +0905.1319 Algebraic Topology +astro-ph/0105135 +astro-ph/0109317 +astro-ph/0302209 +astro-ph/0306274 +astro-ph/0410523 +astro-ph/0507423 +astro-ph/0608513 +astro-ph/0703369 +astro-ph/9901102 +astro-ph/9907430 +hep-ex/0603033 Experiment +hep-ph/0001293 Phenomenology +hep-ph/0111272 Phenomenology +hep-ph/0211154 Phenomenology +hep-ph/0511068 Phenomenology +hep-ph/9711261 Phenomenology +math-ph/0606024 +math/0509244 Logic +math/0603128 Symplectic Geometry +math/0605630 Geometric Topology +math/0608190 Group Theory +math/0703357 Differential Geometry +nlin/0610004 Chaotic Dynamics +nucl-th/0006037 +physics/0312080 Classical Physics +physics/0511092 Accelerator Physics +physics/0602171 Physics and Society +quant-ph/0601050 +0704.0408 Mesoscale and Nanoscale Physics +0705.3285 Mesoscale and Nanoscale Physics +0709.3588 Mesoscale and Nanoscale Physics +0712.0084 Logic in Computer Science +0712.2045 Strongly Correlated Electrons +0712.3646 Soft Condensed Matter +0801.0058 Biological Physics +0801.1323 Mesoscale and Nanoscale Physics +0801.2144 +0801.2150 +0802.1414 +0804.2480 Superconductivity +0808.0305 Superconductivity +0810.4091 Operator Algebras +0811.4491 Mesoscale and Nanoscale Physics +0812.1259 Number Theory +0812.2486 Group Theory +0901.1311 Atomic Physics +0901.1319 +0903.1442 Logic +0905.2805 +0905.2881 Probability +cond-mat/0401637 Superconductivity +cond-mat/0408430 Superconductivity +cond-mat/0508470 Mesoscale and Nanoscale Physics +cond-mat/0607505 Mesoscale and Nanoscale Physics +cond-mat/0608132 Mesoscale and Nanoscale Physics +cond-mat/0702477 Mesoscale and Nanoscale Physics +quant-ph/0703112 +quant-ph/0703113 +quant-ph/0703181 +quant-ph/0703182 +0710.3765 Geometric Topology +0807.1330 Phenomenology +0901.0071 Number Theory +0903.1457 +0904.1215 Quantitative Methods +0904.2589 +0904.2603 Strongly Correlated Electrons +0907.2645 +cond-mat/0609637 Mesoscale and Nanoscale Physics +math/0612257 Algebraic Topology +0704.0542 Combinatorics +0704.0623 Soft Condensed Matter +0704.0857 +0704.1056 Phenomenology +0704.1885 Populations and Evolution +0704.2376 Algebraic Geometry +0704.2548 Instrumentation and Detectors +0704.2996 Analysis of PDEs +0704.3589 +0705.0043 Information Theory +0705.0965 Cryptography and Security +0705.1154 Phenomenology +0705.1241 Statistical Mechanics +0705.1977 Phenomenology +0705.2346 Theory +0705.3015 Performance +0705.3423 History and Overview +0705.4640 History and Overview +0706.0014 Symbolic Computation +0706.0184 Strongly Correlated Electrons +0706.0387 +0706.0665 Phenomenology +0706.0836 +0706.2017 Geometric Topology +0706.2437 Probability +0706.3438 Phenomenology +0706.3442 Phenomenology +0706.3561 Phenomenology +0706.3838 +0706.3852 Probability +0706.4059 Experiment +0706.4175 Networking and Internet Architecture +0706.4306 Representation Theory +0707.0110 +0707.0266 Other Condensed Matter +0707.1174 Metric Geometry +0707.3342 Phenomenology +0707.3499 Algebraic Topology +0707.3542 Materials Science +0707.3567 Phenomenology +0707.4235 Materials Science +0708.0935 Lattice +0708.0975 Networking and Internet Architecture +0708.3021 +0708.3218 Dynamical Systems +0709.0313 Geometric Topology +0710.1366 Combinatorics +0710.4930 Classical Analysis and ODEs +0712.0349 Algebraic Geometry +0712.0916 +0801.2989 +0802.3131 +0803.1903 Numerical Analysis +0804.1501 Lattice +0805.3397 Portfolio Management +0806.2110 +0806.3542 Networking and Internet Architecture +0807.4383 +0808.2544 Combinatorics +0809.0319 Pattern Formation and Solitons +0809.1364 +0809.3522 Probability +0810.1628 Information Theory +0810.1631 Information Theory +0810.1729 Information Theory +0810.1736 Information Theory +0810.4649 Geometric Topology +0811.0280 Mesoscale and Nanoscale Physics +0811.2803 +0811.4000 Mesoscale and Nanoscale Physics +0811.4168 Phenomenology +0811.4612 Strongly Correlated Electrons +0901.0110 Phenomenology +0901.1605 Data Analysis, Statistics and Probability +0901.1845 Cosmology and Nongalactic Astrophysics +0901.3519 Mesoscale and Nanoscale Physics +0901.4738 Number Theory +0902.0949 Other Condensed Matter +0902.3313 Optics +0903.2674 Algebraic Geometry +0903.2676 Solar and Stellar Astrophysics +0903.2718 Theory +0903.4419 Number Theory +0904.2191 Probability +0904.2195 Cosmology and Nongalactic Astrophysics +0904.2196 Analysis of PDEs +0904.2198 Mesoscale and Nanoscale Physics +0904.2199 Logic +0904.2205 Theory +0904.2206 Cosmology and Nongalactic Astrophysics +0904.2222 +0904.2228 Solar and Stellar Astrophysics +0904.2229 Methodology +0904.2232 Numerical Analysis +0904.2237 Information Theory +0904.2241 Statistical Mechanics +0904.2242 Materials Science +0904.2243 Number Theory +0904.2244 Optimization and Control +0904.2249 Mesoscale and Nanoscale Physics +0904.2250 Chemical Physics +0904.2252 Molecular Networks +0904.2253 Statistical Mechanics +0904.2254 Molecular Networks +0904.2255 Statistical Mechanics +0904.2257 Formal Languages and Automata Theory +0904.2258 Combinatorics +0904.2263 Materials Science +0904.2264 Mesoscale and Nanoscale Physics +0904.2268 Algebraic Geometry +0904.2273 Commutative Algebra +0904.2274 Mesoscale and Nanoscale Physics +0904.2278 Mesoscale and Nanoscale Physics +0904.2279 Mesoscale and Nanoscale Physics +0904.2281 Analysis of PDEs +0904.2282 Combinatorics +0904.2285 General Physics +0904.2286 +0904.2288 Probability +0904.2290 Networking and Internet Architecture +0904.2302 Networking and Internet Architecture +0904.2308 Analysis of PDEs +0904.2312 Solar and Stellar Astrophysics +0904.2316 Probability +0904.2318 Strongly Correlated Electrons +0904.2320 Multiagent Systems +0904.2322 Functional Analysis +0904.2323 Symbolic Computation +0904.2325 +0904.2332 Geometric Topology +0904.2336 Algebraic Geometry +0904.2341 Mesoscale and Nanoscale Physics +0904.2343 +0904.2345 +0904.2353 Complex Variables +0904.2354 Representation Theory +0904.2366 Solar and Stellar Astrophysics +0904.2374 Algebraic Geometry +0904.2375 Information Theory +0904.2376 Pricing of Securities +0904.2377 Classical Physics +0904.2378 Mesoscale and Nanoscale Physics +astro-ph/0212108 +astro-ph/0508173 +astro-ph/9501049 +gr-qc/0302025 +math/0702499 Rings and Algebras +physics/0502059 Optics +physics/0605053 Biological Physics +quant-ph/0702200 +0712.3620 +0803.4052 Superconductivity +0803.4165 Group Theory +0808.2628 Quantum Algebra +0810.2277 Strongly Correlated Electrons +0812.2668 +0812.5104 Information Theory +0903.4899 Fluid Dynamics +0904.2767 Atmospheric and Oceanic Physics +0904.3258 +0905.0171 +0908.0163 Information Theory +0908.1557 Functional Analysis +0908.1942 Logic +quant-ph/0508007 +0708.2478 Combinatorics +0710.1347 Differential Geometry +0801.1461 Representation Theory +0802.2721 Number Theory +0803.3712 Probability +0804.2578 Group Theory +0804.2870 Materials Science +0805.1717 Number Theory +0807.0141 Mesoscale and Nanoscale Physics +0807.1566 +0808.2521 Probability +0812.0550 Materials Science +0812.3998 Number Theory +0902.0703 +0902.1947 Information Theory +0902.3919 Populations and Evolution +0902.4813 Rings and Algebras +0903.1129 +0903.1707 Mesoscale and Nanoscale Physics +0903.5293 +0903.5424 Phenomenology +0904.2497 +0905.0905 Theory +0905.0919 Spectral Theory +0905.1075 Strongly Correlated Electrons +0905.3111 Dynamical Systems +0905.3383 Cosmology and Nongalactic Astrophysics +0905.3499 Biological Physics +0905.3999 Strongly Correlated Electrons +0905.4816 Disordered Systems and Neural Networks +0906.1508 Strongly Correlated Electrons +0906.2444 Symplectic Geometry +0906.3553 +0906.4698 Statistical Mechanics +0906.4906 Mesoscale and Nanoscale Physics +0906.5261 Analysis of PDEs +0907.0555 Plasma Physics +0907.0608 Solar and Stellar Astrophysics +0907.1523 Information Theory +0907.3120 Superconductivity +0907.3807 Mesoscale and Nanoscale Physics +0907.5541 Differential Geometry +0908.0608 Quantum Gases +0909.0501 Functional Analysis +0909.1611 Mesoscale and Nanoscale Physics +0909.3856 Instrumentation and Methods for Astrophysics +0909.3866 Cosmology and Nongalactic Astrophysics +0909.3871 Optimization and Control +0909.3872 Quantum Algebra +0909.3877 Discrete Mathematics +0909.3882 Solar and Stellar Astrophysics +0909.3883 Phenomenology +0909.3889 Materials Science +0909.3890 General Finance +0909.3891 Portfolio Management +0909.3894 Theory +0909.3897 Analysis of PDEs +0909.3898 Cosmology and Nongalactic Astrophysics +0909.3901 Analysis of PDEs +0909.3902 Spectral Theory +0909.3910 Combinatorics +0909.3911 Computer Vision and Pattern Recognition +0909.3917 Robotics +0909.3920 Disordered Systems and Neural Networks +0909.3921 Probability +0909.3926 Phenomenology +0909.3928 Classical Analysis and ODEs +0909.3931 Cryptography and Security +0909.3932 Classical Physics +0909.3935 Quantum Algebra +0909.3939 Mesoscale and Nanoscale Physics +0909.3942 Algebraic Geometry +0909.3945 Cosmology and Nongalactic Astrophysics +0909.3951 Operator Algebras +0909.3956 Phenomenology +0909.3958 +0909.3961 Combinatorics +0909.3965 Differential Geometry +0909.3967 Cosmology and Nongalactic Astrophysics +0909.3969 Phenomenology +0909.3970 +0909.3975 Geometric Topology +0909.3979 +0909.3980 Fluid Dynamics +0909.3982 Experiment +0909.3985 Probability +0909.3987 Solar and Stellar Astrophysics +0909.3989 Group Theory +0909.3992 Atomic Physics +0909.3993 Soft Condensed Matter +0909.3997 Discrete Mathematics +0909.4002 Phenomenology +0909.4003 Representation Theory +0909.4007 +0909.4008 Algebraic Geometry +0909.4009 Combinatorics +0909.4011 Data Structures and Algorithms +0909.4015 Other Quantitative Biology +0909.4017 Information Theory +0909.4021 Data Structures and Algorithms +0909.4025 General Physics +0909.4026 Experiment +0909.4027 Group Theory +0909.4030 Combinatorics +0909.4032 Quantum Algebra +0909.4039 +0909.4041 Statistical Mechanics +0909.4042 Phenomenology +0909.4046 Methodology +0909.4052 Phenomenology +0909.4057 Theory +0909.4062 Dynamical Systems +0909.4067 Symplectic Geometry +0909.4070 Dynamical Systems +gr-qc/0207051 +hep-th/9803116 Theory +math/0611864 Probability +math/0612370 Differential Geometry +quant-ph/0606014 +0706.4148 +0711.1313 Probability +0801.0157 Category Theory +0801.1535 Combinatorics +0802.1152 Probability +0803.0458 Probability +0806.2274 Discrete Mathematics +0806.2425 Probability +0807.1351 Classical Analysis and ODEs +0807.2738 Differential Geometry +0809.2147 Information Theory +0810.1229 +0810.2739 Analysis of PDEs +0810.3449 Geophysics +0812.0398 +0901.0760 Learning +0903.0094 Computer Science and Game Theory +0903.3274 High Energy Astrophysical Phenomena +0905.0233 Information Theory +0905.1870 Optimization and Control +0905.2707 Algebraic Geometry +0905.3778 +0906.2090 Soft Condensed Matter +0906.2317 Cosmology and Nongalactic Astrophysics +0906.5255 +0907.1586 Experiment +0907.2167 Physics and Society +0907.2418 Soft Condensed Matter +0907.5532 Strongly Correlated Electrons +0908.0976 Statistical Mechanics +0908.3978 Analysis of PDEs +0909.0181 Cosmology and Nongalactic Astrophysics +0909.1908 Mesoscale and Nanoscale Physics +0909.2498 Phenomenology +0910.5867 Phenomenology +0911.0039 Human-Computer Interaction +0911.1167 Complex Variables +0911.4034 Cryptography and Security +0911.5382 Theory +0912.0589 +0912.0773 Cosmology and Nongalactic Astrophysics +0912.0914 Cosmology and Nongalactic Astrophysics +0912.1129 Phenomenology +0912.1140 Classical Analysis and ODEs +0912.1347 Earth and Planetary Astrophysics +0912.1351 Cosmology and Nongalactic Astrophysics +0912.1354 Dynamical Systems +0912.1357 Computers and Society +0912.1361 Combinatorics +0912.1363 Logic +0912.1368 Computers and Society +0912.1369 Computers and Society +0912.1370 Computers and Society +0912.1371 Digital Libraries +0912.1372 Computers and Society +0912.1373 Complex Variables +0912.1374 Lattice +0912.1375 Computational Physics +0912.1379 Numerical Analysis +0912.1387 Quantitative Methods +0912.1388 Analysis of PDEs +0912.1391 Superconductivity +0912.1392 Probability +0912.1394 Earth and Planetary Astrophysics +0912.1397 Theory +0912.1399 Commutative Algebra +0912.1405 Solar and Stellar Astrophysics +0912.1407 High Energy Astrophysical Phenomena +0912.1410 Chemical Physics +0912.1411 Combinatorics +0912.1412 Information Theory +0912.1417 Phenomenology +0912.1418 History and Overview +0912.1420 Robotics +0912.1421 Information Retrieval +0912.1428 Statistical Mechanics +0912.1438 Optics +0912.1442 Optics +0912.1443 Analysis of PDEs +0912.1448 Probability +0912.1450 Mesoscale and Nanoscale Physics +0912.1451 Differential Geometry +0912.1452 Discrete Mathematics +0912.1453 Classical Analysis and ODEs +0912.1469 Dynamical Systems +0912.1473 High Energy Astrophysical Phenomena +0912.1475 +0912.1476 Dynamical Systems +0912.1478 High Energy Astrophysical Phenomena +0912.1479 Statistics Theory +0912.1480 Atmospheric and Oceanic Physics +0912.1486 Atmospheric and Oceanic Physics +0912.1487 High Energy Astrophysical Phenomena +0912.1500 Adaptation and Self-Organizing Systems +0912.1513 Superconductivity +0912.1518 Number Theory +0912.1524 Representation Theory +0912.1531 Exactly Solvable and Integrable Systems +0912.1540 Geometric Topology +0912.1542 Exactly Solvable and Integrable Systems +0912.1543 +0912.1555 Data Analysis, Statistics and Probability +0912.1560 Dynamical Systems +0912.1561 Probability +0912.1563 Superconductivity +0912.1573 High Energy Astrophysical Phenomena +0912.1576 Materials Science +0912.1578 Combinatorics +0912.1579 Superconductivity +0912.1580 Computational Geometry +0912.1582 Representation Theory +0912.1584 Accelerator Physics +hep-lat/0111057 Lattice +math/0302320 Combinatorics +math/0701826 Analysis of PDEs +0704.2038 +0705.4358 Theory +0707.3399 Space Physics +0709.0609 Mesoscale and Nanoscale Physics +0709.1296 Algebraic Geometry +0711.1074 Theory +0711.3272 Phenomenology +0712.4246 Phenomenology +0803.3098 Probability +0803.3305 Theory +0804.4011 Phenomenology +0805.1330 Probability +0805.3633 Fluid Dynamics +0806.2222 Probability +0806.2780 Probability +0806.3431 +0806.4089 +0807.1241 Quantum Algebra +0807.1528 Representation Theory +0808.0227 +0809.2604 Theory +0809.3166 Strongly Correlated Electrons +0809.3304 Theory +0809.4698 Probability +0810.1833 Molecular Networks +0811.0252 +0811.1022 Theory +0811.1995 +0811.2329 Physics and Society +0811.3272 Networking and Internet Architecture +0812.0822 Representation Theory +0812.3011 Molecular Networks +0812.3042 Theory +0812.4471 Information Theory +0901.2298 +0901.2407 Phenomenology +0902.3134 Materials Science +0902.3582 +0903.1928 Representation Theory +0903.1943 Materials Science +0903.3068 Analysis of PDEs +0903.3800 Theory +0903.4968 Statistical Mechanics +0903.5419 +0904.1546 +0904.1588 Solar and Stellar Astrophysics +0904.2806 Superconductivity +0904.3519 Strongly Correlated Electrons +0904.4019 Mesoscale and Nanoscale Physics +0904.4050 +0905.0527 Cosmology and Nongalactic Astrophysics +0905.2748 Mesoscale and Nanoscale Physics +0905.2969 Theory +0905.4351 Other Condensed Matter +0906.0015 Algebraic Topology +0906.0222 Phenomenology +0906.0628 Cosmology and Nongalactic Astrophysics +0906.1220 Phenomenology +0906.2010 Theory +0906.3579 Phenomenology +0906.3618 +0906.3671 Phenomenology +0906.3718 Quantum Gases +0906.3892 Theory +0906.4272 +0906.5081 +0906.5597 Materials Science +0907.0493 +0907.1364 Theory +0907.1696 Phenomenology +0907.1901 +0907.2128 Materials Science +0907.2242 Theory +0907.2672 Cosmology and Nongalactic Astrophysics +0907.3136 Theory +0907.3289 High Energy Astrophysical Phenomena +0907.4723 Phenomenology +0908.0095 Cosmology and Nongalactic Astrophysics +0908.3488 Materials Science +0909.0372 Phenomenology +0909.0829 Atomic Physics +0909.3463 +0909.4019 Physics and Society +0909.4314 Networking and Internet Architecture +0909.4315 Combinatorics +0909.4316 Symplectic Geometry +0909.4318 Cosmology and Nongalactic Astrophysics +0909.4325 Superconductivity +0909.4326 Symplectic Geometry +0909.4332 Analysis of PDEs +0909.4336 Classical Analysis and ODEs +0909.4341 Data Structures and Algorithms +0909.4342 Combinatorics +0909.4344 Experiment +0909.4349 Multiagent Systems +0909.4354 Classical Analysis and ODEs +0909.4360 Experiment +0909.4362 Computer Science and Game Theory +0909.4364 Quantum Algebra +0909.4366 Classical Analysis and ODEs +0909.4367 Combinatorics +0909.4368 Commutative Algebra +0909.4369 Data Structures and Algorithms +0909.4371 Statistics Theory +0909.4372 Optimization and Control +0909.4374 Optimization and Control +0909.4376 Solar and Stellar Astrophysics +0909.4379 Classical Physics +0909.4380 Quantitative Methods +0909.4386 Machine Learning +0909.4388 Group Theory +0909.4393 Group Theory +0909.4395 Machine Learning +0909.4396 General Mathematics +0909.4399 +0909.4409 Databases +0909.4412 Databases +0909.4416 Information Retrieval +0909.4420 Solar and Stellar Astrophysics +0909.4421 Phenomenology +0909.4422 Probability +0909.4424 Theory +0909.4425 Algebraic Geometry +0909.4429 Quantum Gases +0909.4431 Probability +0909.4436 General Mathematics +0909.4437 Artificial Intelligence +0909.4446 Artificial Intelligence +0909.4449 Optics +0909.4452 Artificial Intelligence +0909.4453 +0909.4456 Artificial Intelligence +0909.4457 Physics and Society +0909.4463 Solar and Stellar Astrophysics +0909.4478 Materials Science +0909.4480 Materials Science +0909.4484 Information Theory +0909.4488 +0909.4489 Representation Theory +0909.4501 Geometric Topology +0909.4503 Instrumentation and Methods for Astrophysics +0909.4509 Complex Variables +0909.4516 Cryptography and Security +0909.4518 Experiment +0909.4529 +acc-phys/9504002 Accelerator Physics +acc-phys/9507001 Accelerator Physics +adap-org/9405001 Adaptation and Self-Organizing Systems +adap-org/9705004 Adaptation and Self-Organizing Systems +adap-org/9901002 Adaptation and Self-Organizing Systems +alg-geom/9509001 Algebraic Geometry +alg-geom/9509002 Algebraic Geometry +alg-geom/9606018 Algebraic Geometry +alg-geom/9609021 Algebraic Geometry +alg-geom/9611016 Algebraic Geometry +alg-geom/9703037 Algebraic Geometry +alg-geom/9705010 Algebraic Geometry +alg-geom/9706005 Algebraic Geometry +alg-geom/9707013 Algebraic Geometry +alg-geom/9708023 Algebraic Geometry +alg-geom/9709025 Algebraic Geometry +alg-geom/9711016 Algebraic Geometry +alg-geom/9712011 Algebraic Geometry +astro-ph/0001117 +astro-ph/0001123 +astro-ph/0001241 +astro-ph/0001288 +astro-ph/0001528 +astro-ph/0002091 +astro-ph/0002249 +astro-ph/0002283 +astro-ph/0002352 +astro-ph/0002410 +astro-ph/0002482 +astro-ph/0003039 +astro-ph/0003120 +astro-ph/0003162 +astro-ph/0003219 +astro-ph/0003332 +astro-ph/0003428 +astro-ph/0004040 +astro-ph/0004170 +astro-ph/0004223 +astro-ph/0005003 +astro-ph/0005259 +astro-ph/0005260 +astro-ph/0005315 +astro-ph/0005365 +astro-ph/0005485 +astro-ph/0006066 +astro-ph/0006140 +astro-ph/0006282 +astro-ph/0007092 +astro-ph/0007175 +astro-ph/0008102 +astro-ph/0008255 +astro-ph/0008380 +astro-ph/0008431 +astro-ph/0008474 +astro-ph/0008523 +astro-ph/0009071 +astro-ph/0009093 +astro-ph/0009479 +astro-ph/0010039 +astro-ph/0010290 +astro-ph/0010519 +astro-ph/0010525 +astro-ph/0010627 +astro-ph/0011126 +astro-ph/0011194 +astro-ph/0011199 +astro-ph/0011212 +astro-ph/0011405 +astro-ph/0012027 +astro-ph/0012055 +astro-ph/0012130 +astro-ph/0012227 +astro-ph/0012349 +astro-ph/0012449 +astro-ph/0012535 +astro-ph/0101245 +astro-ph/0101514 +astro-ph/0102046 +astro-ph/0102154 +astro-ph/0102443 +astro-ph/0103317 +astro-ph/0104076 +astro-ph/0104129 +astro-ph/0104283 +astro-ph/0105091 +astro-ph/0105281 +astro-ph/0105325 +astro-ph/0105431 +astro-ph/0106317 +astro-ph/0106424 +astro-ph/0106574 +astro-ph/0107289 +astro-ph/0107367 +astro-ph/0107395 +astro-ph/0107498 +astro-ph/0108025 +astro-ph/0108384 +astro-ph/0108385 +astro-ph/0108390 +astro-ph/0108392 +astro-ph/0108393 +astro-ph/0108394 +astro-ph/0109003 +astro-ph/0111008 +astro-ph/0111070 +astro-ph/0111087 +astro-ph/0111431 +astro-ph/0111490 +astro-ph/0111562 +astro-ph/0112168 +astro-ph/0112310 +astro-ph/0112497 +astro-ph/0112521 +astro-ph/0112541 +astro-ph/0201095 +astro-ph/0201289 +astro-ph/0202341 +astro-ph/0205070 +astro-ph/0207243 +astro-ph/0207448 +astro-ph/0208041 +astro-ph/0212003 +astro-ph/0301527 +astro-ph/0304239 +astro-ph/0305191 +astro-ph/0306205 +astro-ph/0307026 +astro-ph/0309127 +astro-ph/0309623 +astro-ph/0311060 +astro-ph/0312499 +astro-ph/0402044 +astro-ph/0404589 +astro-ph/0405010 +astro-ph/0405537 +astro-ph/0406218 +astro-ph/0503003 +astro-ph/0504038 +astro-ph/0504097 +astro-ph/0509873 +astro-ph/0509874 +astro-ph/0510405 +astro-ph/0511028 +astro-ph/0602065 +astro-ph/0604443 +astro-ph/0604524 +astro-ph/0607492 +astro-ph/9303014 +astro-ph/9304007 +astro-ph/9307013 +astro-ph/9307038 +astro-ph/9308039 +astro-ph/9309018 +astro-ph/9309030 +astro-ph/9310019 +astro-ph/9311005 +astro-ph/9311006 +astro-ph/9311019 +astro-ph/9312009 +astro-ph/9401015 +astro-ph/9401016 +astro-ph/9401043 +astro-ph/9402009 +astro-ph/9402023 +astro-ph/9402026 +astro-ph/9402038 +astro-ph/9402041 +astro-ph/9402043 +astro-ph/9402060 +astro-ph/9403023 +astro-ph/9403049 +astro-ph/9403061 +astro-ph/9403064 +astro-ph/9404006 +astro-ph/9404018 +astro-ph/9405018 +astro-ph/9405022 +astro-ph/9405025 +astro-ph/9405027 +astro-ph/9405034 +astro-ph/9405036 +astro-ph/9406012 +astro-ph/9406029 +astro-ph/9406058 +astro-ph/9406074 +astro-ph/9406075 +astro-ph/9407019 +astro-ph/9407024 +astro-ph/9407037 +astro-ph/9407072 +astro-ph/9407073 +astro-ph/9407099 +astro-ph/9408017 +astro-ph/9408026 +astro-ph/9408094 +astro-ph/9408095 +astro-ph/9409041 +astro-ph/9410007 +astro-ph/9410022 +astro-ph/9410037 +astro-ph/9410038 +astro-ph/9410043 +astro-ph/9410058 +astro-ph/9410059 +astro-ph/9410073 +astro-ph/9410087 +astro-ph/9410095 +astro-ph/9410097 +astro-ph/9411008 +astro-ph/9411010 +astro-ph/9411092 +astro-ph/9411099 +astro-ph/9412012 +astro-ph/9412035 +astro-ph/9412039 +astro-ph/9412052 +astro-ph/9412098 +astro-ph/9502019 +astro-ph/9502033 +astro-ph/9502035 +astro-ph/9504020 +astro-ph/9504022 +astro-ph/9504040 +astro-ph/9504098 +astro-ph/9505084 +astro-ph/9505098 +astro-ph/9506023 +astro-ph/9512142 +astro-ph/9601122 +astro-ph/9602093 +astro-ph/9602114 +astro-ph/9606001 +astro-ph/9606181 +astro-ph/9607154 +astro-ph/9611199 +astro-ph/9612046 +astro-ph/9612136 +astro-ph/9612204 +astro-ph/9701207 +astro-ph/9702013 +astro-ph/9702043 +astro-ph/9702046 +astro-ph/9702109 +astro-ph/9702144 +astro-ph/9702156 +astro-ph/9703016 +astro-ph/9703054 +astro-ph/9704036 +astro-ph/9704039 +astro-ph/9704047 +astro-ph/9704060 +astro-ph/9704227 +astro-ph/9704230 +astro-ph/9704289 +astro-ph/9705018 +astro-ph/9705042 +astro-ph/9705045 +astro-ph/9705046 +astro-ph/9705077 +astro-ph/9705106 +astro-ph/9705132 +astro-ph/9705150 +astro-ph/9705222 +astro-ph/9706052 +astro-ph/9706066 +astro-ph/9706079 +astro-ph/9706090 +astro-ph/9706161 +astro-ph/9706197 +astro-ph/9707074 +astro-ph/9707142 +astro-ph/9707154 +astro-ph/9707183 +astro-ph/9707218 +astro-ph/9707227 +astro-ph/9707253 +astro-ph/9707256 +astro-ph/9707270 +astro-ph/9707274 +astro-ph/9707338 +astro-ph/9708008 +astro-ph/9708066 +astro-ph/9708123 +astro-ph/9708137 +astro-ph/9708245 +astro-ph/9708267 +astro-ph/9709017 +astro-ph/9709177 +astro-ph/9709206 +astro-ph/9709250 +astro-ph/9709254 +astro-ph/9709269 +astro-ph/9709289 +astro-ph/9710091 +astro-ph/9710125 +astro-ph/9711024 +astro-ph/9711028 +astro-ph/9711148 +astro-ph/9711158 +astro-ph/9711281 +astro-ph/9711342 +astro-ph/9712014 +astro-ph/9712036 +astro-ph/9712093 +astro-ph/9712132 +astro-ph/9712141 +astro-ph/9712164 +astro-ph/9712198 +astro-ph/9712204 +astro-ph/9712205 +astro-ph/9801197 +astro-ph/9801208 +astro-ph/9801272 +astro-ph/9801296 +astro-ph/9801320 +astro-ph/9802048 +astro-ph/9802053 +astro-ph/9802064 +astro-ph/9802198 +astro-ph/9802236 +astro-ph/9802268 +astro-ph/9802294 +astro-ph/9802360 +astro-ph/9803227 +astro-ph/9803252 +astro-ph/9804080 +astro-ph/9804290 +astro-ph/9805036 +astro-ph/9805050 +astro-ph/9805136 +astro-ph/9805158 +astro-ph/9805161 +astro-ph/9805224 +astro-ph/9805237 +astro-ph/9805287 +astro-ph/9806049 +astro-ph/9806378 +astro-ph/9807165 +astro-ph/9807227 +astro-ph/9807241 +astro-ph/9807348 +astro-ph/9808003 +astro-ph/9808074 +astro-ph/9808078 +astro-ph/9808197 +astro-ph/9808345 +astro-ph/9809010 +astro-ph/9809112 +astro-ph/9809168 +astro-ph/9809219 +astro-ph/9809278 +astro-ph/9809300 +astro-ph/9809412 +astro-ph/9810021 +astro-ph/9810110 +astro-ph/9810199 +astro-ph/9810271 +astro-ph/9810348 +astro-ph/9810408 +astro-ph/9811081 +astro-ph/9811093 +astro-ph/9811225 +astro-ph/9811280 +astro-ph/9811341 +astro-ph/9811458 +astro-ph/9812009 +astro-ph/9812119 +astro-ph/9812120 +astro-ph/9812123 +astro-ph/9812140 +astro-ph/9812149 +astro-ph/9812156 +astro-ph/9901002 +astro-ph/9901040 +astro-ph/9901063 +astro-ph/9901071 +astro-ph/9901120 +astro-ph/9901123 +astro-ph/9901158 +astro-ph/9901178 +astro-ph/9901191 +astro-ph/9901193 +astro-ph/9901205 +astro-ph/9901229 +astro-ph/9901263 +astro-ph/9902142 +astro-ph/9902259 +astro-ph/9903014 +astro-ph/9903019 +astro-ph/9903138 +astro-ph/9903382 +astro-ph/9904377 +astro-ph/9905071 +astro-ph/9906035 +astro-ph/9906242 +astro-ph/9906254 +astro-ph/9906332 +astro-ph/9906450 +astro-ph/9906469 +astro-ph/9906500 +astro-ph/9907015 +astro-ph/9907090 +astro-ph/9907143 +astro-ph/9907149 +astro-ph/9907290 +astro-ph/9907392 +astro-ph/9907436 +astro-ph/9909088 +astro-ph/9909191 +astro-ph/9909275 +astro-ph/9909428 +astro-ph/9909438 +astro-ph/9910077 +astro-ph/9910204 +astro-ph/9910271 +astro-ph/9910399 +astro-ph/9910454 +astro-ph/9910550 +astro-ph/9911006 +astro-ph/9911017 +astro-ph/9911070 +astro-ph/9911088 +astro-ph/9911093 +astro-ph/9911152 +astro-ph/9911274 +astro-ph/9911365 +astro-ph/9911374 +astro-ph/9911391 +astro-ph/9911484 +astro-ph/9912036 +astro-ph/9912073 +astro-ph/9912075 +astro-ph/9912115 +astro-ph/9912258 +astro-ph/9912363 +astro-ph/9912398 +astro-ph/9912460 +atom-ph/9605010 Atomic Physics +chao-dyn/9307016 Chaotic Dynamics +chao-dyn/9705019 Chaotic Dynamics +chao-dyn/9707012 Chaotic Dynamics +chao-dyn/9708005 Chaotic Dynamics +chao-dyn/9711011 Chaotic Dynamics +chao-dyn/9803012 Chaotic Dynamics +chao-dyn/9806028 Chaotic Dynamics +chao-dyn/9807033 Chaotic Dynamics +chao-dyn/9811018 Chaotic Dynamics +chao-dyn/9905004 Chaotic Dynamics +chao-dyn/9905040 Chaotic Dynamics +chem-ph/9408001 Chemical Physics +cmp-lg/9404001 Computation and Language +cmp-lg/9406036 Computation and Language +cmp-lg/9407004 Computation and Language +cmp-lg/9407024 Computation and Language +cmp-lg/9410031 Computation and Language +cmp-lg/9411017 Computation and Language +cmp-lg/9503012 Computation and Language +cmp-lg/9503020 Computation and Language +cmp-lg/9505040 Computation and Language +cmp-lg/9506011 Computation and Language +cmp-lg/9611001 Computation and Language +cmp-lg/9702003 Computation and Language +cmp-lg/9706002 Computation and Language +cmp-lg/9706009 Computation and Language +cmp-lg/9708004 Computation and Language +cmp-lg/9804001 Computation and Language +cmp-lg/9805001 Computation and Language +cmp-lg/9805009 Computation and Language +cmp-lg/9807012 Computation and Language +cmp-lg/9808009 Computation and Language +comp-gas/9905002 Cellular Automata and Lattice Gases +cond-mat/0001285 +cond-mat/0001347 Statistical Mechanics +cond-mat/0003163 Strongly Correlated Electrons +cond-mat/0003479 Statistical Mechanics +cond-mat/0003485 Mesoscale and Nanoscale Physics +cond-mat/0004127 +cond-mat/0004389 Strongly Correlated Electrons +cond-mat/0005215 Strongly Correlated Electrons +cond-mat/0006016 Superconductivity +cond-mat/0006118 Soft Condensed Matter +cond-mat/0007296 Superconductivity +cond-mat/0007470 Strongly Correlated Electrons +cond-mat/0008115 Disordered Systems and Neural Networks +cond-mat/0008453 Strongly Correlated Electrons +cond-mat/0009427 Strongly Correlated Electrons +cond-mat/0010050 +cond-mat/0010058 Mesoscale and Nanoscale Physics +cond-mat/0010206 Superconductivity +cond-mat/0010423 Disordered Systems and Neural Networks +cond-mat/0012018 Strongly Correlated Electrons +cond-mat/0012119 Statistical Mechanics +cond-mat/0012185 Statistical Mechanics +cond-mat/0012263 Disordered Systems and Neural Networks +cond-mat/0012311 +cond-mat/0012441 Statistical Mechanics +cond-mat/0012487 Statistical Mechanics +cond-mat/0012512 Strongly Correlated Electrons +cond-mat/0101142 Soft Condensed Matter +cond-mat/0101154 Materials Science +cond-mat/0101299 +cond-mat/0101314 Soft Condensed Matter +cond-mat/0101424 Soft Condensed Matter +cond-mat/0102213 Soft Condensed Matter +cond-mat/0102387 Strongly Correlated Electrons +cond-mat/0102498 Superconductivity +cond-mat/0103063 Statistical Mechanics +cond-mat/0103411 Mesoscale and Nanoscale Physics +cond-mat/0104053 Superconductivity +cond-mat/0104057 Soft Condensed Matter +cond-mat/0105095 Statistical Mechanics +cond-mat/0105135 Strongly Correlated Electrons +cond-mat/0105364 +cond-mat/0105447 Superconductivity +cond-mat/0105517 Strongly Correlated Electrons +cond-mat/0106320 Superconductivity +cond-mat/0107095 Strongly Correlated Electrons +cond-mat/0107303 Superconductivity +cond-mat/0107384 Materials Science +cond-mat/0107530 Superconductivity +cond-mat/0108138 Strongly Correlated Electrons +cond-mat/0108268 Disordered Systems and Neural Networks +cond-mat/0108276 Mesoscale and Nanoscale Physics +cond-mat/0108293 Superconductivity +cond-mat/0109499 Statistical Mechanics +cond-mat/0110025 Materials Science +cond-mat/0110082 +cond-mat/0111462 Statistical Mechanics +cond-mat/0112235 Mesoscale and Nanoscale Physics +cond-mat/0112468 Strongly Correlated Electrons +cond-mat/9204009 +cond-mat/9207027 +cond-mat/9302028 +cond-mat/9605185 +cond-mat/9607191 +cond-mat/9607212 +cond-mat/9611040 Statistical Mechanics +cond-mat/9701171 Mesoscale and Nanoscale Physics +cond-mat/9701195 +cond-mat/9701203 Materials Science +cond-mat/9702094 +cond-mat/9703239 Mesoscale and Nanoscale Physics +cond-mat/9703240 Materials Science +cond-mat/9704053 Disordered Systems and Neural Networks +cond-mat/9704067 Soft Condensed Matter +cond-mat/9704083 Mesoscale and Nanoscale Physics +cond-mat/9704103 Strongly Correlated Electrons +cond-mat/9705186 Mesoscale and Nanoscale Physics +cond-mat/9707266 Superconductivity +cond-mat/9707321 +cond-mat/9707322 +cond-mat/9708046 Soft Condensed Matter +cond-mat/9708098 Mesoscale and Nanoscale Physics +cond-mat/9708122 Statistical Mechanics +cond-mat/9709190 Disordered Systems and Neural Networks +cond-mat/9709272 Strongly Correlated Electrons +cond-mat/9709283 Statistical Mechanics +cond-mat/9709310 +cond-mat/9709320 Statistical Mechanics +cond-mat/9710220 Mesoscale and Nanoscale Physics +cond-mat/9710321 +cond-mat/9711085 Superconductivity +cond-mat/9712323 Mesoscale and Nanoscale Physics +cond-mat/9801143 +cond-mat/9801221 Statistical Mechanics +cond-mat/9802221 Mesoscale and Nanoscale Physics +cond-mat/9802225 Soft Condensed Matter +cond-mat/9802240 +cond-mat/9803062 Disordered Systems and Neural Networks +cond-mat/9803069 Superconductivity +cond-mat/9803146 Mesoscale and Nanoscale Physics +cond-mat/9803163 Strongly Correlated Electrons +cond-mat/9804297 Disordered Systems and Neural Networks +cond-mat/9805040 Soft Condensed Matter +cond-mat/9805077 Soft Condensed Matter +cond-mat/9805141 Disordered Systems and Neural Networks +cond-mat/9805198 Strongly Correlated Electrons +cond-mat/9805260 Soft Condensed Matter +cond-mat/9805388 Materials Science +cond-mat/9806010 +cond-mat/9806076 +cond-mat/9806147 Superconductivity +cond-mat/9806230 +cond-mat/9806313 Statistical Mechanics +cond-mat/9807040 Disordered Systems and Neural Networks +cond-mat/9807095 Mesoscale and Nanoscale Physics +cond-mat/9808043 Disordered Systems and Neural Networks +cond-mat/9808086 +cond-mat/9808126 Superconductivity +cond-mat/9808217 Disordered Systems and Neural Networks +cond-mat/9808346 +cond-mat/9809125 Other Condensed Matter +cond-mat/9809357 Mesoscale and Nanoscale Physics +cond-mat/9810009 Statistical Mechanics +cond-mat/9810248 Disordered Systems and Neural Networks +cond-mat/9811070 Soft Condensed Matter +cond-mat/9811340 Statistical Mechanics +cond-mat/9811349 Superconductivity +cond-mat/9812072 +cond-mat/9812231 Soft Condensed Matter +cond-mat/9812284 Statistical Mechanics +cond-mat/9812399 Statistical Mechanics +cond-mat/9812425 Superconductivity +cond-mat/9901011 Strongly Correlated Electrons +cond-mat/9901064 Statistical Mechanics +cond-mat/9901105 Statistical Mechanics +cond-mat/9901113 Materials Science +cond-mat/9901134 +cond-mat/9901172 +cond-mat/9901352 Statistical Mechanics +cond-mat/9902200 Statistical Mechanics +cond-mat/9902254 Mesoscale and Nanoscale Physics +cond-mat/9903093 Strongly Correlated Electrons +cond-mat/9903116 Materials Science +cond-mat/9903408 Statistical Mechanics +cond-mat/9904034 +cond-mat/9904146 Statistical Mechanics +cond-mat/9904205 +cond-mat/9905066 +cond-mat/9905100 +cond-mat/9905125 Superconductivity +cond-mat/9905210 Superconductivity +cond-mat/9905221 Statistical Mechanics +cond-mat/9905226 Superconductivity +cond-mat/9907064 +cond-mat/9907226 Superconductivity +cond-mat/9907364 Soft Condensed Matter +cond-mat/9907387 Disordered Systems and Neural Networks +cond-mat/9908143 Mesoscale and Nanoscale Physics +cond-mat/9908151 Statistical Mechanics +cond-mat/9908267 Statistical Mechanics +cond-mat/9908308 Superconductivity +cond-mat/9909129 +cond-mat/9909355 Strongly Correlated Electrons +cond-mat/9910162 Soft Condensed Matter +cond-mat/9910255 Soft Condensed Matter +cond-mat/9910351 Statistical Mechanics +cond-mat/9910355 Mesoscale and Nanoscale Physics +cond-mat/9910453 Statistical Mechanics +cond-mat/9910479 Mesoscale and Nanoscale Physics +cond-mat/9911064 Soft Condensed Matter +cond-mat/9912179 Mesoscale and Nanoscale Physics +cond-mat/9912310 Strongly Correlated Electrons +cs/0003019 Logic in Computer Science +cs/0005033 Programming Languages +cs/0006010 Logic in Computer Science +cs/0006013 Computation and Language +cs/0006033 Logic in Computer Science +cs/0006035 Computational Geometry +cs/0006039 Neural and Evolutionary Computing +cs/0006044 Computation and Language +cs/0008032 Computation and Language +cs/0009011 Computation and Language +cs/0010029 Logic in Computer Science +cs/0011034 Computation and Language +cs/0011035 Computation and Language +cs/0011047 Data Structures and Algorithms +cs/0012001 Distributed, Parallel, and Cluster Computing +cs/0101003 Numerical Analysis +cs/0103010 Computation and Language +cs/0103012 Computation and Language +cs/0104007 Learning +cs/0105008 Software Engineering +cs/0105027 Learning +cs/0106015 Computation and Language +cs/0106019 Computational Complexity +cs/0108010 Computational Complexity +cs/0109035 Computers and Society +cs/0109045 Computers and Society +cs/0110043 Computers and Society +cs/0111050 Data Structures and Algorithms +cs/0111061 Discrete Mathematics +cs/0701116 Information Theory +cs/9301103 Logic in Computer Science +cs/9301105 Logic in Computer Science +cs/9311102 Artificial Intelligence +cs/9402101 Artificial Intelligence +cs/9406101 Artificial Intelligence +cs/9408101 Artificial Intelligence +cs/9412103 Artificial Intelligence +cs/9503102 Artificial Intelligence +cs/9506101 Artificial Intelligence +cs/9507101 Artificial Intelligence +cs/9508102 Artificial Intelligence +cs/9510103 Artificial Intelligence +cs/9512102 Artificial Intelligence +cs/9602102 Artificial Intelligence +cs/9603101 Artificial Intelligence +cs/9603102 Artificial Intelligence +cs/9603103 Artificial Intelligence +cs/9605104 Artificial Intelligence +cs/9606101 Artificial Intelligence +cs/9608103 Artificial Intelligence +cs/9609101 Artificial Intelligence +cs/9612102 Artificial Intelligence +cs/9701101 Artificial Intelligence +cs/9701102 Artificial Intelligence +cs/9703101 Artificial Intelligence +cs/9705101 Artificial Intelligence +cs/9706102 Artificial Intelligence +cs/9709101 Artificial Intelligence +cs/9709102 Artificial Intelligence +cs/9711102 Artificial Intelligence +cs/9711103 Artificial Intelligence +cs/9803101 Artificial Intelligence +cs/9803102 Artificial Intelligence +cs/9806102 Artificial Intelligence +cs/9808005 Artificial Intelligence +cs/9808006 Artificial Intelligence +cs/9808008 Computational Geometry +cs/9810007 Computational Geometry +cs/9812023 Human-Computer Interaction +cs/9901005 Computation and Language +cs/9902018 Digital Libraries +cs/9904012 Networking and Internet Architecture +cs/9904015 Networking and Internet Architecture +cs/9904016 Networking and Internet Architecture +cs/9905006 Networking and Internet Architecture +cs/9912006 Computation and Language +dg-ga/9408003 Differential Geometry +dg-ga/9605006 Differential Geometry +funct-an/9509001 Functional Analysis +funct-an/9708002 Functional Analysis +gr-qc/0001027 +gr-qc/0001051 +gr-qc/0002012 +gr-qc/0003030 +gr-qc/0003071 +gr-qc/0004035 +gr-qc/0008022 +gr-qc/0009088 +gr-qc/0101018 +gr-qc/0102037 +gr-qc/0104064 +gr-qc/0106063 +gr-qc/0106082 +gr-qc/0108074 +gr-qc/0110114 +gr-qc/0111004 +gr-qc/0112020 +gr-qc/0112069 +gr-qc/0604070 +gr-qc/0609107 +gr-qc/9211018 +gr-qc/9304023 +gr-qc/9308025 +gr-qc/9309022 +gr-qc/9310008 +gr-qc/9310022 +gr-qc/9310033 +gr-qc/9310036 +gr-qc/9312005 +gr-qc/9401005 +gr-qc/9402023 +gr-qc/9403029 +gr-qc/9403033 +gr-qc/9404025 +gr-qc/9404043 +gr-qc/9404050 +gr-qc/9404057 +gr-qc/9405006 +gr-qc/9405011 +gr-qc/9405019 +gr-qc/9405028 +gr-qc/9405042 +gr-qc/9405068 +gr-qc/9405075 +gr-qc/9406008 +gr-qc/9406042 +gr-qc/9407010 +gr-qc/9407013 +gr-qc/9407014 +gr-qc/9407015 +gr-qc/9408005 +gr-qc/9408030 +gr-qc/9409015 +gr-qc/9409016 +gr-qc/9410009 +gr-qc/9410017 +gr-qc/9410025 +gr-qc/9410031 +gr-qc/9410039 +gr-qc/9411015 +gr-qc/9411020 +gr-qc/9411065 +gr-qc/9412021 +gr-qc/9412022 +gr-qc/9412034 +gr-qc/9412042 +gr-qc/9503039 +gr-qc/9503055 +gr-qc/9509005 +gr-qc/9509018 +gr-qc/9510001 +gr-qc/9511060 +gr-qc/9511063 +gr-qc/9512012 +gr-qc/9512020 +gr-qc/9602013 +gr-qc/9606030 +gr-qc/9606033 +gr-qc/9608063 +gr-qc/9612045 +gr-qc/9612049 +gr-qc/9704042 +gr-qc/9706071 +gr-qc/9707012 +gr-qc/9707028 +gr-qc/9709036 +gr-qc/9711023 +gr-qc/9711084 +gr-qc/9712099 +gr-qc/9802055 +gr-qc/9803090 +gr-qc/9807036 +gr-qc/9811048 +gr-qc/9812011 +gr-qc/9812038 +gr-qc/9903024 +gr-qc/9911032 +hep-ex/0002033 Experiment +hep-ex/0002064 Experiment +hep-ex/0006023 Experiment +hep-ex/0007032 Experiment +hep-ex/0008059 Experiment +hep-ex/0008064 Experiment +hep-ex/0009024 Experiment +hep-ex/0010067 Experiment +hep-ex/0011010 Experiment +hep-ex/0011086 Experiment +hep-ex/0012046 Experiment +hep-ex/0101018 Experiment +hep-ex/0101048 Experiment +hep-ex/0102017 Experiment +hep-ex/0103023 Experiment +hep-ex/0106018 Experiment +hep-ex/0106043 Experiment +hep-ex/0106058 Experiment +hep-ex/0106074 Experiment +hep-ex/0107080 Experiment +hep-ex/0108012 Experiment +hep-ex/0108041 Experiment +hep-ex/0110035 Experiment +hep-ex/0111002 Experiment +hep-ex/0111008 Experiment +hep-ex/0111055 Experiment +hep-ex/0112015 Experiment +hep-ex/9405006 Experiment +hep-ex/9405008 Experiment +hep-ex/9408002 Experiment +hep-ex/9408004 Experiment +hep-ex/9409003 Experiment +hep-ex/9409004 Experiment +hep-ex/9409008 Experiment +hep-ex/9410010 Experiment +hep-ex/9410011 Experiment +hep-ex/9501005 Experiment +hep-ex/9501006 Experiment +hep-ex/9702002 Experiment +hep-ex/9703011 Experiment +hep-ex/9704009 Experiment +hep-ex/9704020 Experiment +hep-ex/9705013 Experiment +hep-ex/9706008 Experiment +hep-ex/9708025 Experiment +hep-ex/9710004 Experiment +hep-ex/9712013 Experiment +hep-ex/9712016 Experiment +hep-ex/9712025 Experiment +hep-ex/9801016 Experiment +hep-ex/9802001 Experiment +hep-ex/9802006 Experiment +hep-ex/9802011 Experiment +hep-ex/9803014 Experiment +hep-ex/9804012 Experiment +hep-ex/9805023 Experiment +hep-ex/9806021 Experiment +hep-ex/9809011 Experiment +hep-ex/9809017 Experiment +hep-ex/9811041 Experiment +hep-ex/9812030 Experiment +hep-ex/9901005 Experiment +hep-ex/9903018 Experiment +hep-ex/9904021 Experiment +hep-ex/9905049 Experiment +hep-ex/9907001 Experiment +hep-ex/9907026 Experiment +hep-ex/9907042 Experiment +hep-ex/9907054 Experiment +hep-ex/9908043 Experiment +hep-ex/9910054 Experiment +hep-ex/9910066 Experiment +hep-lat/0004024 Lattice +hep-lat/0103009 Lattice +hep-lat/0111002 Lattice +hep-lat/0111004 Lattice +hep-lat/0111021 Lattice +hep-lat/9302008 Lattice +hep-lat/9303001 Lattice +hep-lat/9305013 Lattice +hep-lat/9305024 Lattice +hep-lat/9305025 Lattice +hep-lat/9308006 Lattice +hep-lat/9309010 Lattice +hep-lat/9310014 Lattice +hep-lat/9310015 Lattice +hep-lat/9310020 Lattice +hep-lat/9310023 Lattice +hep-lat/9311001 Lattice +hep-lat/9311009 Lattice +hep-lat/9312027 Lattice +hep-lat/9312030 Lattice +hep-lat/9312035 Lattice +hep-lat/9312071 Lattice +hep-lat/9401036 Lattice +hep-lat/9402008 Lattice +hep-lat/9402015 Lattice +hep-lat/9403015 Lattice +hep-lat/9405011 Lattice +hep-lat/9406007 Lattice +hep-lat/9406009 Lattice +hep-lat/9407004 Lattice +hep-lat/9408007 Lattice +hep-lat/9408012 Lattice +hep-lat/9411007 Lattice +hep-lat/9411021 Lattice +hep-lat/9411051 Lattice +hep-lat/9411067 Lattice +hep-lat/9412033 Lattice +hep-lat/9412111 Lattice +hep-lat/9501036 Lattice +hep-lat/9506014 Lattice +hep-lat/9509092 Lattice +hep-lat/9706017 Lattice +hep-lat/9707035 Lattice +hep-lat/9708013 Lattice +hep-lat/9709077 Lattice +hep-lat/9709130 Lattice +hep-lat/9712028 Lattice +hep-lat/9802017 Lattice +hep-lat/9805031 Lattice +hep-lat/9806010 Lattice +hep-lat/9807034 Lattice +hep-lat/9809117 Lattice +hep-lat/9903031 Lattice +hep-ph/0001184 Phenomenology +hep-ph/0001242 Phenomenology +hep-ph/0001257 Phenomenology +hep-ph/0002258 Phenomenology +hep-ph/0002301 Phenomenology +hep-ph/0003142 Phenomenology +hep-ph/0003220 Phenomenology +hep-ph/0003238 Phenomenology +hep-ph/0004043 Phenomenology +hep-ph/0004247 Phenomenology +hep-ph/0004252 Phenomenology +hep-ph/0005219 Phenomenology +hep-ph/0006032 Phenomenology +hep-ph/0006134 Phenomenology +hep-ph/0006206 Phenomenology +hep-ph/0006221 Phenomenology +hep-ph/0006357 Phenomenology +hep-ph/0007195 Phenomenology +hep-ph/0007261 Phenomenology +hep-ph/0007318 Phenomenology +hep-ph/0008011 Phenomenology +hep-ph/0008127 Phenomenology +hep-ph/0008155 Phenomenology +hep-ph/0008176 Phenomenology +hep-ph/0008248 Phenomenology +hep-ph/0008308 Phenomenology +hep-ph/0009060 Phenomenology +hep-ph/0009065 Phenomenology +hep-ph/0009231 Phenomenology +hep-ph/0009333 Phenomenology +hep-ph/0009352 Phenomenology +hep-ph/0010318 Phenomenology +hep-ph/0010332 Phenomenology +hep-ph/0010338 Phenomenology +hep-ph/0010345 Phenomenology +hep-ph/0011335 Phenomenology +hep-ph/0012008 Phenomenology +hep-ph/0012116 Phenomenology +hep-ph/0012156 Phenomenology +hep-ph/0012288 Phenomenology +hep-ph/0012381 Phenomenology +hep-ph/0101051 Phenomenology +hep-ph/0101105 Phenomenology +hep-ph/0101342 Phenomenology +hep-ph/0102319 Phenomenology +hep-ph/0103009 Phenomenology +hep-ph/0103129 Phenomenology +hep-ph/0104120 Phenomenology +hep-ph/0104159 Phenomenology +hep-ph/0104300 Phenomenology +hep-ph/0105092 Phenomenology +hep-ph/0105276 Phenomenology +hep-ph/0106294 Phenomenology +hep-ph/0106314 Phenomenology +hep-ph/0108100 Phenomenology +hep-ph/0109062 Phenomenology +hep-ph/0109283 Phenomenology +hep-ph/0109291 Phenomenology +hep-ph/0110127 Phenomenology +hep-ph/0111026 Phenomenology +hep-ph/0111116 Phenomenology +hep-ph/0111141 Phenomenology +hep-ph/0111191 Phenomenology +hep-ph/0111276 Phenomenology +hep-ph/0112176 Phenomenology +hep-ph/0112208 Phenomenology +hep-ph/0112270 Phenomenology +hep-ph/0112280 Phenomenology +hep-ph/0204136 Phenomenology +hep-ph/0205211 Phenomenology +hep-ph/0212382 Phenomenology +hep-ph/0306190 Phenomenology +hep-ph/0309025 Phenomenology +hep-ph/0407252 Phenomenology +hep-ph/9211208 Phenomenology +hep-ph/9211255 Phenomenology +hep-ph/9301293 Phenomenology +hep-ph/9303231 Phenomenology +hep-ph/9303260 Phenomenology +hep-ph/9303312 Phenomenology +hep-ph/9304250 Phenomenology +hep-ph/9304314 Phenomenology +hep-ph/9305215 Phenomenology +hep-ph/9305220 Phenomenology +hep-ph/9305235 Phenomenology +hep-ph/9305243 Phenomenology +hep-ph/9305261 Phenomenology +hep-ph/9305270 Phenomenology +hep-ph/9305273 Phenomenology +hep-ph/9305281 Phenomenology +hep-ph/9305306 Phenomenology +hep-ph/9305311 Phenomenology +hep-ph/9305317 Phenomenology +hep-ph/9308209 Phenomenology +hep-ph/9308324 Phenomenology +hep-ph/9309207 Phenomenology +hep-ph/9309235 Phenomenology +hep-ph/9309243 Phenomenology +hep-ph/9309322 Phenomenology +hep-ph/9310205 Phenomenology +hep-ph/9310230 Phenomenology +hep-ph/9310235 Phenomenology +hep-ph/9310237 Phenomenology +hep-ph/9310254 Phenomenology +hep-ph/9310255 Phenomenology +hep-ph/9310258 Phenomenology +hep-ph/9310291 Phenomenology +hep-ph/9310292 Phenomenology +hep-ph/9310294 Phenomenology +hep-ph/9310295 Phenomenology +hep-ph/9310299 Phenomenology +hep-ph/9310303 Phenomenology +hep-ph/9310304 Phenomenology +hep-ph/9310309 Phenomenology +hep-ph/9310328 Phenomenology +hep-ph/9310348 Phenomenology +hep-ph/9310362 Phenomenology +hep-ph/9310368 Phenomenology +hep-ph/9311222 Phenomenology +hep-ph/9311231 Phenomenology +hep-ph/9311238 Phenomenology +hep-ph/9311259 Phenomenology +hep-ph/9311266 Phenomenology +hep-ph/9311268 Phenomenology +hep-ph/9311295 Phenomenology +hep-ph/9311322 Phenomenology +hep-ph/9311338 Phenomenology +hep-ph/9311348 Phenomenology +hep-ph/9311359 Phenomenology +hep-ph/9311362 Phenomenology +hep-ph/9311372 Phenomenology +hep-ph/9311378 Phenomenology +hep-ph/9312222 Phenomenology +hep-ph/9312268 Phenomenology +hep-ph/9312275 Phenomenology +hep-ph/9312287 Phenomenology +hep-ph/9312293 Phenomenology +hep-ph/9312297 Phenomenology +hep-ph/9312299 Phenomenology +hep-ph/9312310 Phenomenology +hep-ph/9312314 Phenomenology +hep-ph/9312326 Phenomenology +hep-ph/9312332 Phenomenology +hep-ph/9312338 Phenomenology +hep-ph/9312347 Phenomenology +hep-ph/9312351 Phenomenology +hep-ph/9401203 Phenomenology +hep-ph/9401205 Phenomenology +hep-ph/9401207 Phenomenology +hep-ph/9401208 Phenomenology +hep-ph/9401213 Phenomenology +hep-ph/9401220 Phenomenology +hep-ph/9401222 Phenomenology +hep-ph/9401229 Phenomenology +hep-ph/9401230 Phenomenology +hep-ph/9401244 Phenomenology +hep-ph/9401251 Phenomenology +hep-ph/9401259 Phenomenology +hep-ph/9401274 Phenomenology +hep-ph/9401275 Phenomenology +hep-ph/9401295 Phenomenology +hep-ph/9401296 Phenomenology +hep-ph/9401298 Phenomenology +hep-ph/9401302 Phenomenology +hep-ph/9401307 Phenomenology +hep-ph/9401325 Phenomenology +hep-ph/9401326 Phenomenology +hep-ph/9401328 Phenomenology +hep-ph/9401341 Phenomenology +hep-ph/9402202 Phenomenology +hep-ph/9402210 Phenomenology +hep-ph/9402211 Phenomenology +hep-ph/9402214 Phenomenology +hep-ph/9402230 Phenomenology +hep-ph/9402233 Phenomenology +hep-ph/9402239 Phenomenology +hep-ph/9402253 Phenomenology +hep-ph/9402255 Phenomenology +hep-ph/9402256 Phenomenology +hep-ph/9402260 Phenomenology +hep-ph/9402267 Phenomenology +hep-ph/9402271 Phenomenology +hep-ph/9402280 Phenomenology +hep-ph/9402283 Phenomenology +hep-ph/9402290 Phenomenology +hep-ph/9402294 Phenomenology +hep-ph/9402297 Phenomenology +hep-ph/9402303 Phenomenology +hep-ph/9402312 Phenomenology +hep-ph/9402321 Phenomenology +hep-ph/9402330 Phenomenology +hep-ph/9402332 Phenomenology +hep-ph/9402333 Phenomenology +hep-ph/9402345 Phenomenology +hep-ph/9402349 Phenomenology +hep-ph/9402354 Phenomenology +hep-ph/9403210 Phenomenology +hep-ph/9403211 Phenomenology +hep-ph/9403226 Phenomenology +hep-ph/9403255 Phenomenology +hep-ph/9403264 Phenomenology +hep-ph/9403265 Phenomenology +hep-ph/9403266 Phenomenology +hep-ph/9403278 Phenomenology +hep-ph/9403292 Phenomenology +hep-ph/9403319 Phenomenology +hep-ph/9403333 Phenomenology +hep-ph/9403334 Phenomenology +hep-ph/9403341 Phenomenology +hep-ph/9403355 Phenomenology +hep-ph/9403361 Phenomenology +hep-ph/9403363 Phenomenology +hep-ph/9403374 Phenomenology +hep-ph/9403376 Phenomenology +hep-ph/9403377 Phenomenology +hep-ph/9403390 Phenomenology +hep-ph/9403391 Phenomenology +hep-ph/9403406 Phenomenology +hep-ph/9404202 Phenomenology +hep-ph/9404203 Phenomenology +hep-ph/9404217 Phenomenology +hep-ph/9404228 Phenomenology +hep-ph/9404229 Phenomenology +hep-ph/9404230 Phenomenology +hep-ph/9404267 Phenomenology +hep-ph/9404281 Phenomenology +hep-ph/9404282 Phenomenology +hep-ph/9404299 Phenomenology +hep-ph/9404300 Phenomenology +hep-ph/9404304 Phenomenology +hep-ph/9404308 Phenomenology +hep-ph/9404316 Phenomenology +hep-ph/9404335 Phenomenology +hep-ph/9404340 Phenomenology +hep-ph/9404346 Phenomenology +hep-ph/9404350 Phenomenology +hep-ph/9404353 Phenomenology +hep-ph/9405217 Phenomenology +hep-ph/9405218 Phenomenology +hep-ph/9405230 Phenomenology +hep-ph/9405232 Phenomenology +hep-ph/9405236 Phenomenology +hep-ph/9405237 Phenomenology +hep-ph/9405245 Phenomenology +hep-ph/9405246 Phenomenology +hep-ph/9405250 Phenomenology +hep-ph/9405254 Phenomenology +hep-ph/9405268 Phenomenology +hep-ph/9405269 Phenomenology +hep-ph/9405272 Phenomenology +hep-ph/9405280 Phenomenology +hep-ph/9405282 Phenomenology +hep-ph/9405283 Phenomenology +hep-ph/9405284 Phenomenology +hep-ph/9405298 Phenomenology +hep-ph/9405310 Phenomenology +hep-ph/9405312 Phenomenology +hep-ph/9405313 Phenomenology +hep-ph/9405318 Phenomenology +hep-ph/9405319 Phenomenology +hep-ph/9405321 Phenomenology +hep-ph/9405328 Phenomenology +hep-ph/9405330 Phenomenology +hep-ph/9405331 Phenomenology +hep-ph/9405332 Phenomenology +hep-ph/9405334 Phenomenology +hep-ph/9405335 Phenomenology +hep-ph/9405340 Phenomenology +hep-ph/9405351 Phenomenology +hep-ph/9405376 Phenomenology +hep-ph/9405382 Phenomenology +hep-ph/9405384 Phenomenology +hep-ph/9405393 Phenomenology +hep-ph/9405406 Phenomenology +hep-ph/9405415 Phenomenology +hep-ph/9405422 Phenomenology +hep-ph/9405425 Phenomenology +hep-ph/9405426 Phenomenology +hep-ph/9405431 Phenomenology +hep-ph/9406209 Phenomenology +hep-ph/9406223 Phenomenology +hep-ph/9406229 Phenomenology +hep-ph/9406247 Phenomenology +hep-ph/9406250 Phenomenology +hep-ph/9406272 Phenomenology +hep-ph/9406278 Phenomenology +hep-ph/9406280 Phenomenology +hep-ph/9406302 Phenomenology +hep-ph/9406309 Phenomenology +hep-ph/9406314 Phenomenology +hep-ph/9406325 Phenomenology +hep-ph/9406332 Phenomenology +hep-ph/9406346 Phenomenology +hep-ph/9406354 Phenomenology +hep-ph/9406355 Phenomenology +hep-ph/9406361 Phenomenology +hep-ph/9406370 Phenomenology +hep-ph/9406371 Phenomenology +hep-ph/9406372 Phenomenology +hep-ph/9406376 Phenomenology +hep-ph/9406389 Phenomenology +hep-ph/9406394 Phenomenology +hep-ph/9406403 Phenomenology +hep-ph/9406410 Phenomenology +hep-ph/9406414 Phenomenology +hep-ph/9406420 Phenomenology +hep-ph/9406434 Phenomenology +hep-ph/9407201 Phenomenology +hep-ph/9407205 Phenomenology +hep-ph/9407207 Phenomenology +hep-ph/9407208 Phenomenology +hep-ph/9407209 Phenomenology +hep-ph/9407219 Phenomenology +hep-ph/9407237 Phenomenology +hep-ph/9407243 Phenomenology +hep-ph/9407246 Phenomenology +hep-ph/9407250 Phenomenology +hep-ph/9407256 Phenomenology +hep-ph/9407257 Phenomenology +hep-ph/9407262 Phenomenology +hep-ph/9407264 Phenomenology +hep-ph/9407272 Phenomenology +hep-ph/9407273 Phenomenology +hep-ph/9407275 Phenomenology +hep-ph/9407287 Phenomenology +hep-ph/9407294 Phenomenology +hep-ph/9407297 Phenomenology +hep-ph/9407304 Phenomenology +hep-ph/9407305 Phenomenology +hep-ph/9407312 Phenomenology +hep-ph/9407315 Phenomenology +hep-ph/9407325 Phenomenology +hep-ph/9407328 Phenomenology +hep-ph/9407333 Phenomenology +hep-ph/9407353 Phenomenology +hep-ph/9407361 Phenomenology +hep-ph/9407362 Phenomenology +hep-ph/9407363 Phenomenology +hep-ph/9407364 Phenomenology +hep-ph/9407366 Phenomenology +hep-ph/9407367 Phenomenology +hep-ph/9407378 Phenomenology +hep-ph/9407384 Phenomenology +hep-ph/9408205 Phenomenology +hep-ph/9408226 Phenomenology +hep-ph/9408234 Phenomenology +hep-ph/9408236 Phenomenology +hep-ph/9408249 Phenomenology +hep-ph/9408251 Phenomenology +hep-ph/9408259 Phenomenology +hep-ph/9408267 Phenomenology +hep-ph/9408280 Phenomenology +hep-ph/9408285 Phenomenology +hep-ph/9408304 Phenomenology +hep-ph/9408305 Phenomenology +hep-ph/9408318 Phenomenology +hep-ph/9408326 Phenomenology +hep-ph/9408329 Phenomenology +hep-ph/9408335 Phenomenology +hep-ph/9408342 Phenomenology +hep-ph/9408343 Phenomenology +hep-ph/9408349 Phenomenology +hep-ph/9408361 Phenomenology +hep-ph/9408369 Phenomenology +hep-ph/9408371 Phenomenology +hep-ph/9408372 Phenomenology +hep-ph/9408400 Phenomenology +hep-ph/9408402 Phenomenology +hep-ph/9409205 Phenomenology +hep-ph/9409219 Phenomenology +hep-ph/9409223 Phenomenology +hep-ph/9409228 Phenomenology +hep-ph/9409251 Phenomenology +hep-ph/9409253 Phenomenology +hep-ph/9409257 Phenomenology +hep-ph/9409261 Phenomenology +hep-ph/9409277 Phenomenology +hep-ph/9409290 Phenomenology +hep-ph/9409293 Phenomenology +hep-ph/9409294 Phenomenology +hep-ph/9409301 Phenomenology +hep-ph/9409311 Phenomenology +hep-ph/9409334 Phenomenology +hep-ph/9409345 Phenomenology +hep-ph/9409352 Phenomenology +hep-ph/9409353 Phenomenology +hep-ph/9409354 Phenomenology +hep-ph/9409360 Phenomenology +hep-ph/9409365 Phenomenology +hep-ph/9409370 Phenomenology +hep-ph/9409373 Phenomenology +hep-ph/9409379 Phenomenology +hep-ph/9409385 Phenomenology +hep-ph/9409389 Phenomenology +hep-ph/9409400 Phenomenology +hep-ph/9409401 Phenomenology +hep-ph/9409404 Phenomenology +hep-ph/9409409 Phenomenology +hep-ph/9409411 Phenomenology +hep-ph/9409416 Phenomenology +hep-ph/9409419 Phenomenology +hep-ph/9409420 Phenomenology +hep-ph/9409429 Phenomenology +hep-ph/9410207 Phenomenology +hep-ph/9410209 Phenomenology +hep-ph/9410224 Phenomenology +hep-ph/9410237 Phenomenology +hep-ph/9410238 Phenomenology +hep-ph/9410246 Phenomenology +hep-ph/9410251 Phenomenology +hep-ph/9410259 Phenomenology +hep-ph/9410260 Phenomenology +hep-ph/9410263 Phenomenology +hep-ph/9410264 Phenomenology +hep-ph/9410272 Phenomenology +hep-ph/9410273 Phenomenology +hep-ph/9410290 Phenomenology +hep-ph/9410295 Phenomenology +hep-ph/9410299 Phenomenology +hep-ph/9410300 Phenomenology +hep-ph/9410301 Phenomenology +hep-ph/9410304 Phenomenology +hep-ph/9410308 Phenomenology +hep-ph/9410314 Phenomenology +hep-ph/9410316 Phenomenology +hep-ph/9410317 Phenomenology +hep-ph/9410325 Phenomenology +hep-ph/9410331 Phenomenology +hep-ph/9410345 Phenomenology +hep-ph/9410348 Phenomenology +hep-ph/9410353 Phenomenology +hep-ph/9410354 Phenomenology +hep-ph/9410389 Phenomenology +hep-ph/9410397 Phenomenology +hep-ph/9411212 Phenomenology +hep-ph/9411223 Phenomenology +hep-ph/9411242 Phenomenology +hep-ph/9411247 Phenomenology +hep-ph/9411265 Phenomenology +hep-ph/9411287 Phenomenology +hep-ph/9411297 Phenomenology +hep-ph/9411299 Phenomenology +hep-ph/9411302 Phenomenology +hep-ph/9411308 Phenomenology +hep-ph/9411309 Phenomenology +hep-ph/9411311 Phenomenology +hep-ph/9411317 Phenomenology +hep-ph/9411326 Phenomenology +hep-ph/9411329 Phenomenology +hep-ph/9411343 Phenomenology +hep-ph/9411345 Phenomenology +hep-ph/9411346 Phenomenology +hep-ph/9411350 Phenomenology +hep-ph/9411358 Phenomenology +hep-ph/9411369 Phenomenology +hep-ph/9411391 Phenomenology +hep-ph/9411396 Phenomenology +hep-ph/9411436 Phenomenology +hep-ph/9412203 Phenomenology +hep-ph/9412219 Phenomenology +hep-ph/9412220 Phenomenology +hep-ph/9412226 Phenomenology +hep-ph/9412248 Phenomenology +hep-ph/9412253 Phenomenology +hep-ph/9412267 Phenomenology +hep-ph/9412276 Phenomenology +hep-ph/9412280 Phenomenology +hep-ph/9412288 Phenomenology +hep-ph/9412290 Phenomenology +hep-ph/9412297 Phenomenology +hep-ph/9412310 Phenomenology +hep-ph/9412312 Phenomenology +hep-ph/9412328 Phenomenology +hep-ph/9412329 Phenomenology +hep-ph/9412331 Phenomenology +hep-ph/9412335 Phenomenology +hep-ph/9412346 Phenomenology +hep-ph/9412349 Phenomenology +hep-ph/9412351 Phenomenology +hep-ph/9412359 Phenomenology +hep-ph/9412362 Phenomenology +hep-ph/9412368 Phenomenology +hep-ph/9412369 Phenomenology +hep-ph/9412376 Phenomenology +hep-ph/9412377 Phenomenology +hep-ph/9412389 Phenomenology +hep-ph/9412391 Phenomenology +hep-ph/9501210 Phenomenology +hep-ph/9501211 Phenomenology +hep-ph/9501218 Phenomenology +hep-ph/9501237 Phenomenology +hep-ph/9501310 Phenomenology +hep-ph/9501319 Phenomenology +hep-ph/9501359 Phenomenology +hep-ph/9501391 Phenomenology +hep-ph/9502228 Phenomenology +hep-ph/9502237 Phenomenology +hep-ph/9502263 Phenomenology +hep-ph/9502355 Phenomenology +hep-ph/9503293 Phenomenology +hep-ph/9503295 Phenomenology +hep-ph/9503308 Phenomenology +hep-ph/9503348 Phenomenology +hep-ph/9503357 Phenomenology +hep-ph/9503381 Phenomenology +hep-ph/9503408 Phenomenology +hep-ph/9503410 Phenomenology +hep-ph/9503418 Phenomenology +hep-ph/9503420 Phenomenology +hep-ph/9503423 Phenomenology +hep-ph/9503426 Phenomenology +hep-ph/9503430 Phenomenology +hep-ph/9503431 Phenomenology +hep-ph/9503435 Phenomenology +hep-ph/9503479 Phenomenology +hep-ph/9504202 Phenomenology +hep-ph/9504207 Phenomenology +hep-ph/9504244 Phenomenology +hep-ph/9504251 Phenomenology +hep-ph/9504269 Phenomenology +hep-ph/9504282 Phenomenology +hep-ph/9504331 Phenomenology +hep-ph/9504348 Phenomenology +hep-ph/9504370 Phenomenology +hep-ph/9504377 Phenomenology +hep-ph/9504392 Phenomenology +hep-ph/9504429 Phenomenology +hep-ph/9505212 Phenomenology +hep-ph/9505216 Phenomenology +hep-ph/9505219 Phenomenology +hep-ph/9505220 Phenomenology +hep-ph/9505227 Phenomenology +hep-ph/9505237 Phenomenology +hep-ph/9505289 Phenomenology +hep-ph/9505296 Phenomenology +hep-ph/9505315 Phenomenology +hep-ph/9505343 Phenomenology +hep-ph/9505390 Phenomenology +hep-ph/9505442 Phenomenology +hep-ph/9506232 Phenomenology +hep-ph/9506238 Phenomenology +hep-ph/9506262 Phenomenology +hep-ph/9506341 Phenomenology +hep-ph/9506353 Phenomenology +hep-ph/9506357 Phenomenology +hep-ph/9506400 Phenomenology +hep-ph/9506451 Phenomenology +hep-ph/9506458 Phenomenology +hep-ph/9507298 Phenomenology +hep-ph/9507427 Phenomenology +hep-ph/9507458 Phenomenology +hep-ph/9507467 Phenomenology +hep-ph/9508231 Phenomenology +hep-ph/9508238 Phenomenology +hep-ph/9508256 Phenomenology +hep-ph/9508307 Phenomenology +hep-ph/9508331 Phenomenology +hep-ph/9508333 Phenomenology +hep-ph/9508363 Phenomenology +hep-ph/9508388 Phenomenology +hep-ph/9508389 Phenomenology +hep-ph/9508408 Phenomenology +hep-ph/9509261 Phenomenology +hep-ph/9509329 Phenomenology +hep-ph/9509377 Phenomenology +hep-ph/9509386 Phenomenology +hep-ph/9510234 Phenomenology +hep-ph/9510237 Phenomenology +hep-ph/9510255 Phenomenology +hep-ph/9510344 Phenomenology +hep-ph/9510365 Phenomenology +hep-ph/9510377 Phenomenology +hep-ph/9510423 Phenomenology +hep-ph/9510438 Phenomenology +hep-ph/9511222 Phenomenology +hep-ph/9511333 Phenomenology +hep-ph/9511361 Phenomenology +hep-ph/9511368 Phenomenology +hep-ph/9511390 Phenomenology +hep-ph/9511394 Phenomenology +hep-ph/9511401 Phenomenology +hep-ph/9511413 Phenomenology +hep-ph/9511417 Phenomenology +hep-ph/9511442 Phenomenology +hep-ph/9511444 Phenomenology +hep-ph/9512220 Phenomenology +hep-ph/9512235 Phenomenology +hep-ph/9512275 Phenomenology +hep-ph/9512311 Phenomenology +hep-ph/9512335 Phenomenology +hep-ph/9512341 Phenomenology +hep-ph/9512402 Phenomenology +hep-ph/9512420 Phenomenology +hep-ph/9601286 Phenomenology +hep-ph/9601304 Phenomenology +hep-ph/9602207 Phenomenology +hep-ph/9602290 Phenomenology +hep-ph/9602303 Phenomenology +hep-ph/9602413 Phenomenology +hep-ph/9602440 Phenomenology +hep-ph/9603286 Phenomenology +hep-ph/9604232 Phenomenology +hep-ph/9604414 Phenomenology +hep-ph/9607320 Phenomenology +hep-ph/9607371 Phenomenology +hep-ph/9609377 Phenomenology +hep-ph/9609435 Phenomenology +hep-ph/9609494 Phenomenology +hep-ph/9609498 Phenomenology +hep-ph/9609499 Phenomenology +hep-ph/9610399 Phenomenology +hep-ph/9611234 Phenomenology +hep-ph/9611268 Phenomenology +hep-ph/9611304 Phenomenology +hep-ph/9612437 Phenomenology +hep-ph/9701386 Phenomenology +hep-ph/9701387 Phenomenology +hep-ph/9702307 Phenomenology +hep-ph/9703331 Phenomenology +hep-ph/9703455 Phenomenology +hep-ph/9703464 Phenomenology +hep-ph/9704241 Phenomenology +hep-ph/9704373 Phenomenology +hep-ph/9704433 Phenomenology +hep-ph/9705277 Phenomenology +hep-ph/9705379 Phenomenology +hep-ph/9705432 Phenomenology +hep-ph/9705442 Phenomenology +hep-ph/9705455 Phenomenology +hep-ph/9705477 Phenomenology +hep-ph/9706211 Phenomenology +hep-ph/9706353 Phenomenology +hep-ph/9706386 Phenomenology +hep-ph/9707206 Phenomenology +hep-ph/9707288 Phenomenology +hep-ph/9707321 Phenomenology +hep-ph/9707332 Phenomenology +hep-ph/9707364 Phenomenology +hep-ph/9707495 Phenomenology +hep-ph/9708260 Phenomenology +hep-ph/9708320 Phenomenology +hep-ph/9708340 Phenomenology +hep-ph/9708347 Phenomenology +hep-ph/9709206 Phenomenology +hep-ph/9709256 Phenomenology +hep-ph/9709301 Phenomenology +hep-ph/9709366 Phenomenology +hep-ph/9709463 Phenomenology +hep-ph/9709482 Phenomenology +hep-ph/9709490 Phenomenology +hep-ph/9709500 Phenomenology +hep-ph/9710241 Phenomenology +hep-ph/9710465 Phenomenology +hep-ph/9710521 Phenomenology +hep-ph/9711292 Phenomenology +hep-ph/9711337 Phenomenology +hep-ph/9711474 Phenomenology +hep-ph/9712369 Phenomenology +hep-ph/9712408 Phenomenology +hep-ph/9712505 Phenomenology +hep-ph/9712538 Phenomenology +hep-ph/9801231 Phenomenology +hep-ph/9801254 Phenomenology +hep-ph/9801322 Phenomenology +hep-ph/9801343 Phenomenology +hep-ph/9802405 Phenomenology +hep-ph/9802414 Phenomenology +hep-ph/9802428 Phenomenology +hep-ph/9803202 Phenomenology +hep-ph/9803272 Phenomenology +hep-ph/9803347 Phenomenology +hep-ph/9803418 Phenomenology +hep-ph/9803458 Phenomenology +hep-ph/9804260 Phenomenology +hep-ph/9804322 Phenomenology +hep-ph/9804365 Phenomenology +hep-ph/9804412 Phenomenology +hep-ph/9805235 Phenomenology +hep-ph/9805408 Phenomenology +hep-ph/9805410 Phenomenology +hep-ph/9805434 Phenomenology +hep-ph/9805507 Phenomenology +hep-ph/9806295 Phenomenology +hep-ph/9807217 Phenomenology +hep-ph/9807226 Phenomenology +hep-ph/9807300 Phenomenology +hep-ph/9807349 Phenomenology +hep-ph/9807498 Phenomenology +hep-ph/9807505 Phenomenology +hep-ph/9808243 Phenomenology +hep-ph/9808312 Phenomenology +hep-ph/9808373 Phenomenology +hep-ph/9808448 Phenomenology +hep-ph/9808473 Phenomenology +hep-ph/9808486 Phenomenology +hep-ph/9809390 Phenomenology +hep-ph/9809454 Phenomenology +hep-ph/9809543 Phenomenology +hep-ph/9809544 Phenomenology +hep-ph/9809572 Phenomenology +hep-ph/9809580 Phenomenology +hep-ph/9809598 Phenomenology +hep-ph/9810269 Phenomenology +hep-ph/9810335 Phenomenology +hep-ph/9810341 Phenomenology +hep-ph/9811244 Phenomenology +hep-ph/9811267 Phenomenology +hep-ph/9811317 Phenomenology +hep-ph/9811327 Phenomenology +hep-ph/9811410 Phenomenology +hep-ph/9812240 Phenomenology +hep-ph/9812293 Phenomenology +hep-ph/9812496 Phenomenology +hep-ph/9812511 Phenomenology +hep-ph/9901358 Phenomenology +hep-ph/9902250 Phenomenology +hep-ph/9903244 Phenomenology +hep-ph/9904299 Phenomenology +hep-ph/9904361 Phenomenology +hep-ph/9905273 Phenomenology +hep-ph/9905285 Phenomenology +hep-ph/9905291 Phenomenology +hep-ph/9906332 Phenomenology +hep-ph/9906487 Phenomenology +hep-ph/9906553 Phenomenology +hep-ph/9907421 Phenomenology +hep-ph/9907436 Phenomenology +hep-ph/9907531 Phenomenology +hep-ph/9907562 Phenomenology +hep-ph/9908269 Phenomenology +hep-ph/9908288 Phenomenology +hep-ph/9908504 Phenomenology +hep-ph/9908519 Phenomenology +hep-ph/9909261 Phenomenology +hep-ph/9909338 Phenomenology +hep-ph/9909500 Phenomenology +hep-ph/9909534 Phenomenology +hep-ph/9909542 Phenomenology +hep-ph/9911344 Phenomenology +hep-ph/9911345 Phenomenology +hep-ph/9911440 Phenomenology +hep-ph/9912325 Phenomenology +hep-ph/9912384 Phenomenology +hep-ph/9912451 Phenomenology +hep-ph/9912542 Phenomenology +hep-th/0002146 Theory +hep-th/0002172 Theory +hep-th/0002235 Theory +hep-th/0002243 Theory +hep-th/0002249 Theory +hep-th/0003207 Theory +hep-th/0004009 Theory +hep-th/0005188 Theory +hep-th/0008151 Theory +hep-th/0008252 Theory +hep-th/0009049 Theory +hep-th/0009080 Theory +hep-th/0009173 Theory +hep-th/0010235 Theory +hep-th/0010273 Theory +hep-th/0010284 Theory +hep-th/0103003 Theory +hep-th/0103193 Theory +hep-th/0103232 Theory +hep-th/0105082 Theory +hep-th/0106048 Theory +hep-th/0107027 Theory +hep-th/0109162 Theory +hep-th/0110127 Theory +hep-th/0201017 Theory +hep-th/0405238 Theory +hep-th/0509068 Theory +hep-th/9204031 Theory +hep-th/9209055 Theory +hep-th/9209113 Theory +hep-th/9301061 Theory +hep-th/9302120 Theory +hep-th/9303068 Theory +hep-th/9303097 Theory +hep-th/9304001 Theory +hep-th/9304155 Theory +hep-th/9305055 Theory +hep-th/9306015 Theory +hep-th/9307100 Theory +hep-th/9307118 Theory +hep-th/9310172 Theory +hep-th/9311005 Theory +hep-th/9311036 Theory +hep-th/9311046 Theory +hep-th/9311077 Theory +hep-th/9311094 Theory +hep-th/9311095 Theory +hep-th/9311175 Theory +hep-th/9312046 Theory +hep-th/9312052 Theory +hep-th/9312071 Theory +hep-th/9312104 Theory +hep-th/9312106 Theory +hep-th/9312110 Theory +hep-th/9312137 Theory +hep-th/9312184 Theory +hep-th/9401056 Theory +hep-th/9401071 Theory +hep-th/9401129 Theory +hep-th/9402066 Theory +hep-th/9402072 Theory +hep-th/9402087 Theory +hep-th/9402089 Theory +hep-th/9402143 Theory +hep-th/9403006 Theory +hep-th/9403078 Theory +hep-th/9403084 Theory +hep-th/9403119 Theory +hep-th/9403137 Theory +hep-th/9403169 Theory +hep-th/9404049 Theory +hep-th/9404086 Theory +hep-th/9404163 Theory +hep-th/9405006 Theory +hep-th/9405046 Theory +hep-th/9405084 Theory +hep-th/9405114 Theory +hep-th/9405189 Theory +hep-th/9405192 Theory +hep-th/9405195 Theory +hep-th/9405196 Theory +hep-th/9406014 Theory +hep-th/9406018 Theory +hep-th/9406023 Theory +hep-th/9406050 Theory +hep-th/9406088 Theory +hep-th/9406102 Theory +hep-th/9406135 Theory +hep-th/9406141 Theory +hep-th/9406149 Theory +hep-th/9406151 Theory +hep-th/9406204 Theory +hep-th/9406211 Theory +hep-th/9407007 Theory +hep-th/9407011 Theory +hep-th/9407062 Theory +hep-th/9407118 Theory +hep-th/9407120 Theory +hep-th/9407127 Theory +hep-th/9407161 Theory +hep-th/9407172 Theory +hep-th/9407189 Theory +hep-th/9408026 Theory +hep-th/9408050 Theory +hep-th/9408069 Theory +hep-th/9408138 Theory +hep-th/9408154 Theory +hep-th/9409022 Theory +hep-th/9409082 Theory +hep-th/9409096 Theory +hep-th/9409119 Theory +hep-th/9409122 Theory +hep-th/9409154 Theory +hep-th/9409171 Theory +hep-th/9409173 Theory +hep-th/9410028 Theory +hep-th/9410074 Theory +hep-th/9410101 Theory +hep-th/9410113 Theory +hep-th/9410175 Theory +hep-th/9410234 Theory +hep-th/9410237 Theory +hep-th/9411081 Theory +hep-th/9411117 Theory +hep-th/9411133 Theory +hep-th/9411216 Theory +hep-th/9412052 Theory +hep-th/9412096 Theory +hep-th/9412213 Theory +hep-th/9412214 Theory +hep-th/9501025 Theory +hep-th/9501032 Theory +hep-th/9501035 Theory +hep-th/9502012 Theory +hep-th/9502079 Theory +hep-th/9502131 Theory +hep-th/9502160 Theory +hep-th/9503125 Theory +hep-th/9503137 Theory +hep-th/9503223 Theory +hep-th/9504098 Theory +hep-th/9505137 Theory +hep-th/9505146 Theory +hep-th/9505191 Theory +hep-th/9507154 Theory +hep-th/9509127 Theory +hep-th/9511038 Theory +hep-th/9511179 Theory +hep-th/9512133 Theory +hep-th/9512222 Theory +hep-th/9602078 Theory +hep-th/9603035 Theory +hep-th/9605088 Theory +hep-th/9608051 Theory +hep-th/9610127 Theory +hep-th/9612211 Theory +hep-th/9701063 Theory +hep-th/9703136 Theory +hep-th/9703173 Theory +hep-th/9703187 Theory +hep-th/9704075 Theory +hep-th/9704215 Theory +hep-th/9705176 Theory +hep-th/9706036 Theory +hep-th/9706082 Theory +hep-th/9706089 Theory +hep-th/9707074 Theory +hep-th/9708043 Theory +hep-th/9708070 Theory +hep-th/9708090 Theory +hep-th/9709208 Theory +hep-th/9710016 Theory +hep-th/9710103 Theory +hep-th/9710133 Theory +hep-th/9710225 Theory +hep-th/9801196 Theory +hep-th/9802067 Theory +hep-th/9802156 Theory +hep-th/9804079 Theory +hep-th/9805093 Theory +hep-th/9806064 Theory +hep-th/9807179 Theory +hep-th/9810157 Theory +hep-th/9811020 Theory +hep-th/9811136 Theory +hep-th/9811147 Theory +hep-th/9903053 Theory +hep-th/9903171 Theory +hep-th/9903179 Theory +hep-th/9903267 Theory +hep-th/9904088 Theory +hep-th/9905060 Theory +hep-th/9906044 Theory +hep-th/9906046 Theory +hep-th/9906088 Theory +hep-th/9907198 Theory +hep-th/9908003 Theory +hep-th/9908161 Theory +hep-th/9910007 Theory +hep-th/9910221 Theory +hep-th/9911045 Theory +hep-th/9911046 Theory +hep-th/9911047 Theory +hep-th/9911049 Theory +hep-th/9912205 Theory +hep-th/9912243 Theory +hep-th/9912286 Theory +math-ph/0001031 +math-ph/0003044 +math-ph/0008013 +math-ph/0104006 +math-ph/0108028 +math-ph/0112059 +math-ph/0306056 +math-ph/9807012 +math-ph/9807015 +math-ph/9902027 +math-ph/9903048 +math-ph/9909031 +math-ph/9910010 +math-ph/9910022 +math/0001041 Differential Geometry +math/0001079 Numerical Analysis +math/0003019 Algebraic Geometry +math/0003084 Algebraic Geometry +math/0003224 Rings and Algebras +math/0003233 Analysis of PDEs +math/0004098 Functional Analysis +math/0005133 Probability +math/0005197 Quantum Algebra +math/0005204 Algebraic Geometry +math/0005300 Number Theory +math/0006156 Algebraic Geometry +math/0006216 Differential Geometry +math/0007003 Geometric Topology +math/0007053 Differential Geometry +math/0007057 Differential Geometry +math/0007058 Functional Analysis +math/0007072 Algebraic Geometry +math/0007119 Algebraic Geometry +math/0008237 Number Theory +math/0008245 Geometric Topology +math/0009048 Representation Theory +math/0009086 Category Theory +math/0009103 Representation Theory +math/0009181 Quantum Algebra +math/0010251 Representation Theory +math/0010325 Dynamical Systems +math/0011008 Probability +math/0011016 Differential Geometry +math/0011266 Complex Variables +math/0012073 Quantum Algebra +math/0012131 Number Theory +math/0012134 Number Theory +math/0012136 Number Theory +math/0012138 Number Theory +math/0012139 Number Theory +math/0012142 Number Theory +math/0012143 Number Theory +math/0012144 Number Theory +math/0012145 Number Theory +math/0012146 Number Theory +math/0012150 Number Theory +math/0012151 Number Theory +math/0012152 Number Theory +math/0012153 Number Theory +math/0012154 Number Theory +math/0012155 Number Theory +math/0012159 Number Theory +math/0012160 Number Theory +math/0012265 Combinatorics +math/0101026 Geometric Topology +math/0101144 Differential Geometry +math/0101206 Symplectic Geometry +math/0102027 Combinatorics +math/0102088 Analysis of PDEs +math/0102150 Algebraic Geometry +math/0103013 Algebraic Geometry +math/0103189 Probability +math/0104065 Geometric Topology +math/0104250 Differential Geometry +math/0105049 Algebraic Topology +math/0105130 Differential Geometry +math/0105166 Algebraic Geometry +math/0105215 Probability +math/0105217 Numerical Analysis +math/0105264 Differential Geometry +math/0106003 Logic +math/0107162 Combinatorics +math/0108003 Algebraic Geometry +math/0108082 Dynamical Systems +math/0108083 Dynamical Systems +math/0109045 Geometric Topology +math/0109209 Number Theory +math/0109210 Algebraic Geometry +math/0110006 Geometric Topology +math/0110046 Rings and Algebras +math/0110079 Combinatorics +math/0110083 Algebraic Geometry +math/0110237 Combinatorics +math/0110316 Algebraic Topology +math/0111140 Representation Theory +math/0112172 Analysis of PDEs +math/0112220 Algebraic Topology +math/0112254 Number Theory +math/0112317 Quantum Algebra +math/0605459 Quantum Algebra +math/0608278 Combinatorics +math/9201202 Functional Analysis +math/9201210 Functional Analysis +math/9201213 Functional Analysis +math/9201216 Functional Analysis +math/9201217 Metric Geometry +math/9201222 Functional Analysis +math/9201227 Operator Algebras +math/9201228 Functional Analysis +math/9201231 Functional Analysis +math/9201236 Functional Analysis +math/9201237 Functional Analysis +math/9201239 Logic +math/9201241 Logic +math/9201247 Logic +math/9201257 Quantum Algebra +math/9201270 Differential Geometry +math/9201271 Dynamical Systems +math/9201279 Dynamical Systems +math/9201292 Dynamical Systems +math/9202201 Complex Variables +math/9202204 Functional Analysis +math/9202205 Logic +math/9202210 Dynamical Systems +math/9204201 Complex Variables +math/9204207 Logic +math/9204221 Differential Geometry +math/9204225 Algebraic Geometry +math/9205203 Functional Analysis +math/9205204 Functional Analysis +math/9207201 Complex Variables +math/9207202 Complex Variables +math/9207203 Logic +math/9207204 Logic +math/9207213 Differential Geometry +math/9207218 Combinatorics +math/9207219 Dynamical Systems +math/9208204 Dynamical Systems +math/9209201 Logic +math/9209203 Logic +math/9209206 Logic +math/9209208 Logic +math/9209209 Logic +math/9209214 Functional Analysis +math/9209216 Functional Analysis +math/9210221 Group Theory +math/9210228 Dynamical Systems +math/9210229 Dynamical Systems +math/9211204 Logic +math/9211208 Functional Analysis +math/9211209 Functional Analysis +math/9211215 Dynamical Systems +math/9212202 Logic +math/9212205 Functional Analysis +math/9301206 Logic +math/9301207 Logic +math/9301214 Representation Theory +math/9301219 Operator Algebras +math/9302215 Functional Analysis +math/9304209 Geometric Topology +math/9304210 Geometric Topology +math/9305201 Group Theory +math/9305202 Logic +math/9305204 Logic +math/9305207 Dynamical Systems +math/9306201 Group Theory +math/9306212 Functional Analysis +math/9306214 Logic +math/9307205 Classical Analysis and ODEs +math/9307212 Classical Analysis and ODEs +math/9307219 Classical Analysis and ODEs +math/9307228 Geometric Topology +math/9307235 Dynamical Systems +math/9308203 Logic +math/9308212 Logic +math/9308216 Logic +math/9309202 Complex Variables +math/9309203 Logic +math/9309205 Logic +math/9309206 Logic +math/9309208 Logic +math/9310202 Group Theory +math/9310203 Group Theory +math/9310207 Group Theory +math/9310215 Functional Analysis +math/9310219 Classical Analysis and ODEs +math/9310227 Combinatorics +math/9310232 Combinatorics +math/9311204 Logic +math/9311207 Logic +math/9312202 Complex Variables +math/9312203 Logic +math/9312204 Logic +math/9312209 Functional Analysis +math/9401202 Logic +math/9401204 Logic +math/9401208 Classical Analysis and ODEs +math/9401210 Logic +math/9401214 Logic +math/9401219 Algebraic Geometry +math/9402201 Complex Variables +math/9402202 Complex Variables +math/9402203 Functional Analysis +math/9402209 Functional Analysis +math/9402215 Dynamical Systems +math/9403201 Logic +math/9404201 Complex Variables +math/9404202 Group Theory +math/9404218 Classical Analysis and ODEs +math/9404222 Classical Analysis and ODEs +math/9404227 Logic +math/9404230 Metric Geometry +math/9404231 History and Overview +math/9405201 Logic +math/9405202 Logic +math/9405203 Logic +math/9405205 Logic +math/9405208 Logic +math/9405210 Functional Analysis +math/9405214 Logic +math/9406203 Group Theory +math/9406204 Group Theory +math/9406205 Group Theory +math/9406206 Group Theory +math/9406208 Commutative Algebra +math/9406209 Functional Analysis +math/9406216 Functional Analysis +math/9406222 Classical Analysis and ODEs +math/9406223 Classical Analysis and ODEs +math/9407201 Complex Variables +math/9407221 Geometric Topology +math/9408201 Logic +math/9408203 Logic +math/9408204 Logic +math/9408207 Functional Analysis +math/9408208 Functional Analysis +math/9408215 Logic +math/9408216 Dynamical Systems +math/9409202 Logic +math/9409203 Logic +math/9409204 Logic +math/9409205 Logic +math/9409220 Combinatorics +math/9409222 Combinatorics +math/9409223 Combinatorics +math/9409230 Classical Analysis and ODEs +math/9410211 Combinatorics +math/9410213 Number Theory +math/9410216 Number Theory +math/9410220 Group Theory +math/9410222 Probability +math/9411201 Complex Variables +math/9411204 Geometric Topology +math/9411209 Commutative Algebra +math/9411211 Geometric Topology +math/9411216 Combinatorics +math/9411228 Classical Analysis and ODEs +math/9411232 Quantum Algebra +math/9412201 Complex Variables +math/9412202 Complex Variables +math/9412207 Number Theory +math/9412217 Functional Analysis +math/9412220 Number Theory +math/9412226 Classical Analysis and ODEs +math/9412228 Classical Analysis and ODEs +math/9412232 Differential Geometry +math/9501201 Complex Variables +math/9501206 Logic +math/9501212 Functional Analysis +math/9501213 Functional Analysis +math/9501214 Functional Analysis +math/9501220 Logic +math/9501225 Classical Analysis and ODEs +math/9501228 Operator Algebras +math/9502207 Functional Analysis +math/9502208 Differential Geometry +math/9502214 Combinatorics +math/9502221 Combinatorics +math/9502222 Combinatorics +math/9502225 Combinatorics +math/9502227 Classical Analysis and ODEs +math/9502231 Logic +math/9502233 Logic +math/9503202 Group Theory +math/9503205 Logic +math/9503206 Logic +math/9503220 Differential Geometry +math/9504202 Logic +math/9504203 Commutative Algebra +math/9504204 Functional Analysis +math/9504207 Differential Geometry +math/9504212 Combinatorics +math/9504221 Logic +math/9504230 Dynamical Systems +math/9505201 Complex Variables +math/9506201 Complex Variables +math/9506202 Complex Variables +math/9506204 Complex Variables +math/9506207 Group Theory +math/9506220 Representation Theory +math/9506224 Dynamical Systems +math/9507204 Group Theory +math/9507206 Group Theory +math/9507216 Geometric Topology +math/9507221 Logic +math/9507222 Dynamical Systems +math/9507224 Dynamical Systems +math/9508215 Metric Geometry +math/9508222 Probability +math/9509202 Complex Variables +math/9509203 Complex Variables +math/9509204 Group Theory +math/9509205 Group Theory +math/9509206 Group Theory +math/9509213 Functional Analysis +math/9509223 Classical Analysis and ODEs +math/9509225 Logic +math/9509227 Logic +math/9509229 Combinatorics +math/9510209 Algebraic Topology +math/9510212 Classical Analysis and ODEs +math/9510213 Classical Analysis and ODEs +math/9510218 Algebraic Topology +math/9510220 Algebraic Topology +math/9511204 Complex Variables +math/9511213 Complex Variables +math/9511219 Classical Analysis and ODEs +math/9511220 Logic +math/9511221 Dynamical Systems +math/9511222 Representation Theory +math/9511223 Representation Theory +math/9511224 Combinatorics +math/9511225 Metric Geometry +math/9512207 Functional Analysis +math/9512208 Functional Analysis +math/9512210 Operator Algebras +math/9512225 Quantum Algebra +math/9601201 Group Theory +math/9601205 Functional Analysis +math/9601207 Complex Variables +math/9601209 Functional Analysis +math/9602201 Complex Variables +math/9602202 Complex Variables +math/9602208 Functional Analysis +math/9602210 Complex Variables +math/9602211 Dynamical Systems +math/9602212 Representation Theory +math/9602217 Rings and Algebras +math/9603201 Complex Variables +math/9603202 Complex Variables +math/9603204 Group Theory +math/9603206 Logic +math/9603215 Classical Analysis and ODEs +math/9603218 Classical Analysis and ODEs +math/9604204 Complex Variables +math/9604205 Complex Variables +math/9604206 Group Theory +math/9604208 Logic +math/9604215 Functional Analysis +math/9604216 Functional Analysis +math/9604222 Number Theory +math/9604234 Dynamical Systems +math/9604241 Logic +math/9605203 Group Theory +math/9605225 Functional Analysis +math/9606213 Rings and Algebras +math/9606226 Logic +math/9606228 Logic +math/9607201 Complex Variables +math/9607202 Complex Variables +math/9607204 Logic +math/9607206 Functional Analysis +math/9607207 Functional Analysis +math/9607213 Algebraic Geometry +math/9607220 Representation Theory +math/9607221 Representation Theory +math/9607224 Algebraic Geometry +math/9607229 Rings and Algebras +math/9609204 Logic +math/9609205 Logic +math/9609213 Classical Analysis and ODEs +math/9609217 Logic +math/9609219 Rings and Algebras +math/9610202 Complex Variables +math/9610204 Complex Variables +math/9610205 Logic +math/9610210 Functional Analysis +math/9610211 Functional Analysis +math/9610212 Functional Analysis +math/9610222 Dynamical Systems +math/9611201 Complex Variables +math/9611202 Complex Variables +math/9611203 Group Theory +math/9611204 Group Theory +math/9611221 Logic +math/9611222 Differential Geometry +math/9611224 Rings and Algebras +math/9612208 Logic +math/9612220 Logic +math/9612221 Geometric Topology +math/9612222 Dynamical Systems +math/9612226 Logic +math/9701203 Functional Analysis +math/9701205 Functional Analysis +math/9701211 Geometric Topology +math/9701213 Metric Geometry +math/9701218 Representation Theory +math/9701220 Rings and Algebras +math/9701226 Probability +math/9702201 Complex Variables +math/9702203 Group Theory +math/9702210 Functional Analysis +math/9702212 Functional Analysis +math/9702220 Representation Theory +math/9702221 Algebraic Geometry +math/9702222 Algebraic Geometry +math/9702230 Rings and Algebras +math/9702233 Group Theory +math/9703208 Combinatorics +math/9703211 Geometric Topology +math/9703220 Logic +math/9703224 Complex Variables +math/9704202 Group Theory +math/9704203 Group Theory +math/9704204 Group Theory +math/9704219 Complex Variables +math/9704222 Geometric Topology +math/9704223 Geometric Topology +math/9704224 Geometric Topology +math/9704232 Differential Geometry +math/9705203 Complex Variables +math/9705204 Complex Variables +math/9705206 Group Theory +math/9705207 Group Theory +math/9705216 Algebraic Geometry +math/9705220 Combinatorics +math/9706202 Complex Variables +math/9706203 Group Theory +math/9706208 Logic +math/9706212 Functional Analysis +math/9706216 Classical Analysis and ODEs +math/9706224 Logic +math/9706228 Algebraic Topology +math/9707201 Logic +math/9707210 Metric Geometry +math/9707212 Geometric Topology +math/9707215 Dynamical Systems +math/9707219 Algebraic Topology +math/9707220 Combinatorics +math/9707221 Representation Theory +math/9707222 Combinatorics +math/9707227 Logic +math/9707228 Operator Algebras +math/9707230 Complex Variables +math/9708203 History and Overview +math/9709205 Logic +math/9709206 Functional Analysis +math/9709207 Functional Analysis +math/9709218 Geometric Topology +math/9709219 +math/9709220 Group Theory +math/9709225 Dynamical Systems +math/9709226 Dynamical Systems +math/9709229 Logic +math/9709230 Logic +math/9710202 Functional Analysis +math/9710207 Differential Geometry +math/9710215 Logic +math/9710218 Logic +math/9711201 Complex Variables +math/9711207 Functional Analysis +math/9711209 Functional Analysis +math/9711211 Functional Analysis +math/9711215 Dynamical Systems +math/9711218 Algebraic Geometry +math/9711221 Logic +math/9712262 Geometric Topology +math/9712276 Metric Geometry +math/9712281 Differential Geometry +math/9712294 Representation Theory +math/9801049 Quantum Algebra +math/9801131 Quantum Algebra +math/9801153 Logic +math/9802042 Algebraic Geometry +math/9802121 Algebraic Geometry +math/9803009 Geometric Topology +math/9803063 Quantum Algebra +math/9803130 Combinatorics +math/9803166 Classical Analysis and ODEs +math/9804043 Algebraic Geometry +math/9804046 Geometric Topology +math/9804150 Probability +math/9804157 Logic +math/9804159 Logic +math/9805030 Quantum Algebra +math/9805058 Geometric Topology +math/9805102 Category Theory +math/9805147 Logic +math/9805148 Logic +math/9805149 Logic +math/9805150 Combinatorics +math/9806019 Geometric Topology +math/9806089 Differential Geometry +math/9806166 Logic +math/9807033 Geometric Topology +math/9807082 Algebraic Geometry +math/9807108 Number Theory +math/9807162 Geometric Topology +math/9807177 Logic +math/9807178 Logic +math/9807179 Logic +math/9808013 Quantum Algebra +math/9808040 Combinatorics +math/9808138 Logic +math/9808139 Logic +math/9809021 Quantum Algebra +math/9809063 Quantum Algebra +math/9809084 Quantum Algebra +math/9809090 Number Theory +math/9809096 Dynamical Systems +math/9809105 Geometric Topology +math/9809138 Algebraic Geometry +math/9809139 Quantum Algebra +math/9809204 Probability +math/9810182 Number Theory +math/9810183 Differential Geometry +math/9810184 Group Theory +math/9810191 Geometric Topology +math/9810197 Geometric Topology +math/9810198 Geometric Topology +math/9810199 Geometric Topology +math/9810200 Geometric Topology +math/9810201 Group Theory +math/9810202 Differential Geometry +math/9810203 Differential Geometry +math/9811127 Combinatorics +math/9811128 Geometric Topology +math/9811174 Quantum Algebra +math/9811177 Logic +math/9811185 Number Theory +math/9812032 Algebraic Geometry +math/9812045 Operator Algebras +math/9812157 Differential Geometry +math/9812168 Algebraic Topology +math/9901064 Algebraic Geometry +math/9901110 Quantum Algebra +math/9901133 Geometric Topology +math/9901141 Number Theory +math/9902149 Algebraic Geometry +math/9902161 Probability +math/9902163 Number Theory +math/9903183 Quantum Algebra +math/9903194 Probability +math/9903204 Algebraic Geometry +math/9904003 Algebraic Geometry +math/9904004 Algebraic Geometry +math/9904037 Geometric Topology +math/9904047 Metric Geometry +math/9904063 Algebraic Geometry +math/9904108 Quantum Algebra +math/9904142 Quantum Algebra +math/9904150 Combinatorics +math/9904171 Algebraic Geometry +math/9905008 Algebraic Geometry +math/9905034 Algebraic Geometry +math/9905191 Rings and Algebras +math/9905201 Probability +math/9905206 Operator Algebras +math/9905209 Group Theory +math/9905213 Dynamical Systems +math/9906061 Geometric Topology +math/9906138 Geometric Topology +math/9907090 Logic +math/9907105 Differential Geometry +math/9907195 Optimization and Control +math/9907203 Algebraic Geometry +math/9908010 Differential Geometry +math/9908053 Geometric Topology +math/9908067 Quantum Algebra +math/9909104 Probability +math/9909194 Representation Theory +math/9909195 Symplectic Geometry +math/9909198 Number Theory +math/9910003 Quantum Algebra +math/9910081 Algebraic Topology +math/9910144 General Topology +math/9911117 Differential Geometry +math/9911121 Differential Geometry +math/9911174 Quantum Algebra +math/9911246 Number Theory +math/9911260 Geometric Topology +math/9911270 Number Theory +math/9912032 History and Overview +math/9912039 History and Overview +math/9912064 Algebraic Geometry +math/9912084 Quantum Algebra +math/9912162 Differential Geometry +mtrl-th/9412005 Materials Science +nlin/0001009 Adaptation and Self-Organizing Systems +nlin/0003020 Exactly Solvable and Integrable Systems +nlin/0012021 Pattern Formation and Solitons +nlin/0012060 Chaotic Dynamics +nlin/0102034 Chaotic Dynamics +nlin/0103033 Chaotic Dynamics +nlin/0104072 Exactly Solvable and Integrable Systems +nlin/0106006 Adaptation and Self-Organizing Systems +nlin/0112026 Exactly Solvable and Integrable Systems +nucl-ex/0006001 +nucl-ex/0011013 +nucl-ex/0110001 +nucl-ex/0111006 +nucl-ex/9412003 +nucl-ex/9503001 +nucl-ex/9510001 +nucl-ex/9511002 +nucl-ex/9512001 +nucl-ex/9704002 +nucl-ex/9803007 +nucl-ex/9808002 +nucl-th/0001025 +nucl-th/0001026 +nucl-th/0002033 +nucl-th/0005033 +nucl-th/0005075 +nucl-th/0006064 +nucl-th/0007011 +nucl-th/0012003 +nucl-th/0103010 +nucl-th/0103044 +nucl-th/0105055 +nucl-th/0108030 +nucl-th/0308053 +nucl-th/9303013 +nucl-th/9303021 +nucl-th/9309008 +nucl-th/9310004 +nucl-th/9310012 +nucl-th/9310023 +nucl-th/9310024 +nucl-th/9310029 +nucl-th/9311001 +nucl-th/9311005 +nucl-th/9311007 +nucl-th/9311008 +nucl-th/9311011 +nucl-th/9311012 +nucl-th/9311015 +nucl-th/9311016 +nucl-th/9311019 +nucl-th/9311022 +nucl-th/9311024 +nucl-th/9311026 +nucl-th/9311028 +nucl-th/9311029 +nucl-th/9311034 +nucl-th/9312001 +nucl-th/9312003 +nucl-th/9312006 +nucl-th/9312010 +nucl-th/9312019 +nucl-th/9312020 +nucl-th/9401001 +nucl-th/9401004 +nucl-th/9401005 +nucl-th/9401007 +nucl-th/9401008 +nucl-th/9401009 +nucl-th/9402005 +nucl-th/9402006 +nucl-th/9402015 +nucl-th/9402022 +nucl-th/9402023 +nucl-th/9402024 +nucl-th/9402028 +nucl-th/9402032 +nucl-th/9403004 +nucl-th/9403008 +nucl-th/9403009 +nucl-th/9403011 +nucl-th/9403016 +nucl-th/9404003 +nucl-th/9404009 +nucl-th/9404010 +nucl-th/9404014 +nucl-th/9404017 +nucl-th/9404018 +nucl-th/9404021 +nucl-th/9404023 +nucl-th/9404024 +nucl-th/9405003 +nucl-th/9405004 +nucl-th/9405005 +nucl-th/9405006 +nucl-th/9405010 +nucl-th/9405011 +nucl-th/9405012 +nucl-th/9405013 +nucl-th/9405015 +nucl-th/9405016 +nucl-th/9405019 +nucl-th/9405021 +nucl-th/9405028 +nucl-th/9405030 +nucl-th/9406002 +nucl-th/9406004 +nucl-th/9406005 +nucl-th/9406009 +nucl-th/9406016 +nucl-th/9406026 +nucl-th/9406036 +nucl-th/9406039 +nucl-th/9407001 +nucl-th/9407005 +nucl-th/9407012 +nucl-th/9407013 +nucl-th/9407017 +nucl-th/9407026 +nucl-th/9407027 +nucl-th/9407032 +nucl-th/9407038 +nucl-th/9407041 +nucl-th/9408001 +nucl-th/9408002 +nucl-th/9408005 +nucl-th/9408006 +nucl-th/9408008 +nucl-th/9408012 +nucl-th/9408013 +nucl-th/9408014 +nucl-th/9408015 +nucl-th/9408016 +nucl-th/9408019 +nucl-th/9408029 +nucl-th/9409001 +nucl-th/9409003 +nucl-th/9409005 +nucl-th/9409008 +nucl-th/9409015 +nucl-th/9409020 +nucl-th/9410006 +nucl-th/9410008 +nucl-th/9410010 +nucl-th/9410011 +nucl-th/9410012 +nucl-th/9410015 +nucl-th/9410022 +nucl-th/9410025 +nucl-th/9410029 +nucl-th/9410030 +nucl-th/9410033 +nucl-th/9410034 +nucl-th/9410035 +nucl-th/9410037 +nucl-th/9410040 +nucl-th/9410041 +nucl-th/9410042 +nucl-th/9410044 +nucl-th/9411002 +nucl-th/9411004 +nucl-th/9411006 +nucl-th/9411021 +nucl-th/9411022 +nucl-th/9411027 +nucl-th/9411031 +nucl-th/9412009 +nucl-th/9412011 +nucl-th/9412013 +nucl-th/9412017 +nucl-th/9412021 +nucl-th/9412023 +nucl-th/9412027 +nucl-th/9412030 +nucl-th/9412033 +nucl-th/9501034 +nucl-th/9503006 +nucl-th/9503014 +nucl-th/9503020 +nucl-th/9504004 +nucl-th/9505015 +nucl-th/9505016 +nucl-th/9505031 +nucl-th/9505036 +nucl-th/9506003 +nucl-th/9506016 +nucl-th/9506020 +nucl-th/9506021 +nucl-th/9507046 +nucl-th/9508009 +nucl-th/9508010 +nucl-th/9508030 +nucl-th/9508032 +nucl-th/9508037 +nucl-th/9508038 +nucl-th/9509001 +nucl-th/9509003 +nucl-th/9509006 +nucl-th/9509012 +nucl-th/9509020 +nucl-th/9509026 +nucl-th/9510016 +nucl-th/9510019 +nucl-th/9510033 +nucl-th/9511022 +nucl-th/9511024 +nucl-th/9511036 +nucl-th/9512018 +nucl-th/9512021 +nucl-th/9512025 +nucl-th/9601014 +nucl-th/9601016 +nucl-th/9601020 +nucl-th/9602019 +nucl-th/9602030 +nucl-th/9602039 +nucl-th/9603025 +nucl-th/9603033 +nucl-th/9604006 +nucl-th/9604019 +nucl-th/9604046 +nucl-th/9605012 +nucl-th/9605013 +nucl-th/9605014 +nucl-th/9605015 +nucl-th/9606046 +nucl-th/9607021 +nucl-th/9607030 +nucl-th/9608039 +nucl-th/9609004 +nucl-th/9609010 +nucl-th/9609016 +nucl-th/9609019 +nucl-th/9610004 +nucl-th/9610025 +nucl-th/9610041 +nucl-th/9701041 +nucl-th/9701061 +nucl-th/9702006 +nucl-th/9702035 +nucl-th/9702037 +nucl-th/9703001 +nucl-th/9703026 +nucl-th/9703039 +nucl-th/9704009 +nucl-th/9704016 +nucl-th/9704066 +nucl-th/9705004 +nucl-th/9705013 +nucl-th/9706011 +nucl-th/9706063 +nucl-th/9709005 +nucl-th/9710040 +nucl-th/9801011 +nucl-th/9801021 +nucl-th/9801053 +nucl-th/9801062 +nucl-th/9801065 +nucl-th/9802019 +nucl-th/9802022 +nucl-th/9802028 +nucl-th/9802033 +nucl-th/9802068 +nucl-th/9803028 +nucl-th/9803035 +nucl-th/9803040 +nucl-th/9803057 +nucl-th/9804026 +nucl-th/9804043 +nucl-th/9804072 +nucl-th/9805030 +nucl-th/9806056 +nucl-th/9806087 +nucl-th/9806104 +nucl-th/9807041 +nucl-th/9808018 +nucl-th/9808072 +nucl-th/9811012 +nucl-th/9811025 +nucl-th/9812064 +nucl-th/9812066 +nucl-th/9812079 +nucl-th/9901048 +nucl-th/9904048 +nucl-th/9909070 +nucl-th/9911076 +nucl-th/9911081 +patt-sol/9303002 Pattern Formation and Solitons +patt-sol/9303003 Pattern Formation and Solitons +patt-sol/9303005 Pattern Formation and Solitons +patt-sol/9804001 Pattern Formation and Solitons +patt-sol/9805005 Pattern Formation and Solitons +physics/0001037 Accelerator Physics +physics/0004063 Accelerator Physics +physics/0007049 Atomic Physics +physics/0007057 General Physics +physics/0008138 Accelerator Physics +physics/0008149 Accelerator Physics +physics/0009024 Atomic Physics +physics/0009036 Accelerator Physics +physics/0011067 Biological Physics +physics/0101015 Biological Physics +physics/0101081 Plasma Physics +physics/0102052 Physics Education +physics/0103029 Classical Physics +physics/0104033 Instrumentation and Detectors +physics/0105084 Instrumentation and Detectors +physics/0107026 Chemical Physics +physics/0107073 Instrumentation and Detectors +physics/0108005 General Physics +physics/0111160 Optics +physics/0309070 Atomic Physics +physics/0608043 Computational Physics +physics/9610012 General Physics +physics/9702017 Accelerator Physics +physics/9703025 General Physics +physics/9705038 Geophysics +physics/9705041 Computational Physics +physics/9706021 Atomic and Molecular Clusters +physics/9706028 Chemical Physics +physics/9706036 Accelerator Physics +physics/9708018 Plasma Physics +physics/9709004 Plasma Physics +physics/9709010 Atomic Physics +physics/9711018 Accelerator Physics +physics/9802023 Biological Physics +physics/9804007 Physics Education +physics/9805032 Classical Physics +physics/9805038 Optics +physics/9806030 Computational Physics +physics/9806041 Geophysics +physics/9807008 Atomic Physics +physics/9807043 General Physics +physics/9807048 Biological Physics +physics/9808010 Data Analysis, Statistics and Probability +physics/9809028 Classical Physics +physics/9811016 General Physics +physics/9812031 Atomic Physics +physics/9902003 Fluid Dynamics +physics/9908026 Biological Physics +physics/9908035 Instrumentation and Detectors +physics/9908046 Physics Education +physics/9910037 General Physics +physics/9911009 Accelerator Physics +physics/9911035 Optics +physics/9912002 Atomic Physics +physics/9912006 General Physics +q-alg/9605045 Quantum Algebra +q-alg/9705002 Quantum Algebra +q-alg/9706004 Quantum Algebra +q-alg/9706030 Quantum Algebra +quant-ph/0007019 +quant-ph/0007055 +quant-ph/0008086 +quant-ph/0008100 +quant-ph/0011085 +quant-ph/0012002 +quant-ph/0012089 +quant-ph/0101003 +quant-ph/0102068 +quant-ph/0105013 +quant-ph/0105083 +quant-ph/0106051 +quant-ph/0107070 +quant-ph/0108024 +quant-ph/0108027 +quant-ph/0110077 +quant-ph/9504012 +quant-ph/9505010 +quant-ph/9506009 +quant-ph/9506011 +quant-ph/9506029 +quant-ph/9506036 +quant-ph/9507013 +quant-ph/9508019 +quant-ph/9508020 +quant-ph/9508024 +quant-ph/9509010 +quant-ph/9509012 +quant-ph/9509013 +quant-ph/9510023 +quant-ph/9510029 +quant-ph/9512021 +quant-ph/9601006 +quant-ph/9602007 +quant-ph/9604027 +quant-ph/9608040 +quant-ph/9609001 +quant-ph/9609020 +quant-ph/9701004 +quant-ph/9701023 +quant-ph/9701024 +quant-ph/9702057 +quant-ph/9705051 +quant-ph/9705053 +quant-ph/9706059 +quant-ph/9707031 +quant-ph/9708020 +quant-ph/9709035 +quant-ph/9710006 +quant-ph/9711073 +quant-ph/9712037 +quant-ph/9801044 +quant-ph/9801047 +quant-ph/9802013 +quant-ph/9802019 +quant-ph/9804031 +quant-ph/9804034 +quant-ph/9806064 +quant-ph/9807046 +quant-ph/9808027 +quant-ph/9810015 +quant-ph/9810029 +quant-ph/9901038 +quant-ph/9902056 +quant-ph/9904079 +quant-ph/9905036 +quant-ph/9905060 +quant-ph/9906005 +quant-ph/9907065 +quant-ph/9907090 +quant-ph/9908022 +quant-ph/9908042 +quant-ph/9909090 +quant-ph/9910036 +quant-ph/9910090 +quant-ph/9911107 +quant-ph/9912044 +solv-int/9508001 Exactly Solvable and Integrable Systems +solv-int/9708004 Exactly Solvable and Integrable Systems +solv-int/9812012 Exactly Solvable and Integrable Systems +solv-int/9902004 Exactly Solvable and Integrable Systems +solv-int/9902007 Exactly Solvable and Integrable Systems +0704.2991 +0707.1527 +0708.3673 +0710.2448 Phenomenology +0710.3716 Soft Condensed Matter +0801.1299 +0801.2997 Disordered Systems and Neural Networks +0803.3278 +0804.0924 Learning +0804.3915 Theory +0807.1317 Optimization and Control +0807.4531 Strongly Correlated Electrons +0809.0930 Theory +0811.0729 Phenomenology +0811.2865 Atomic Physics +0812.0332 Lattice +0812.1792 +0901.0957 Soft Condensed Matter +0901.1819 Atomic Physics +0901.2262 Cosmology and Nongalactic Astrophysics +0901.4146 Disordered Systems and Neural Networks +0902.1167 Lattice +0902.1252 Superconductivity +0902.4113 Soft Condensed Matter +0903.1724 Information Theory +0903.2249 Statistical Mechanics +0903.4979 +0903.4998 Algebraic Geometry +0904.0267 +0904.1746 Strongly Correlated Electrons +0904.2225 Phenomenology +0904.2365 Cosmology and Nongalactic Astrophysics +0905.0881 Mesoscale and Nanoscale Physics +0905.1137 Phenomenology +0905.1495 Phenomenology +0905.1928 Mesoscale and Nanoscale Physics +0906.0242 Strongly Correlated Electrons +0906.0922 Probability +0906.2940 Strongly Correlated Electrons +0906.5396 Theory +0906.5591 Differential Geometry +0907.1140 Statistical Mechanics +0907.1517 Number Theory +0907.2724 Differential Geometry +0907.3142 Phenomenology +0907.3899 Statistical Mechanics +0907.3953 High Energy Astrophysical Phenomena +0907.4760 Formal Languages and Automata Theory +0907.4765 Tissues and Organs +0907.4767 Number Theory +0907.4792 Cosmology and Nongalactic Astrophysics +0907.4806 Earth and Planetary Astrophysics +0907.4810 Distributed, Parallel, and Cluster Computing +0907.4815 Networking and Internet Architecture +0907.4819 Biomolecules +0907.4823 +0907.4826 Instrumentation and Methods for Astrophysics +0907.4837 Statistical Mechanics +0907.4839 Combinatorics +0907.4840 Representation Theory +0907.4848 Algebraic Geometry +0907.4852 Discrete Mathematics +0907.4854 Probability +0907.4862 High Energy Astrophysical Phenomena +0907.4864 Experiment +0907.4869 Algebraic Geometry +0907.4871 Soft Condensed Matter +0907.4875 Mesoscale and Nanoscale Physics +0907.4876 Distributed, Parallel, and Cluster Computing +0907.4877 Cryptography and Security +0907.4878 Distributed, Parallel, and Cluster Computing +0907.4881 Networking and Internet Architecture +0907.4882 General Physics +0907.4883 Solar and Stellar Astrophysics +0907.4888 Strongly Correlated Electrons +0907.4889 Number Theory +0907.4899 Algebraic Geometry +0907.4903 Applications +0907.4908 Cryptography and Security +0907.4915 Methodology +0907.4918 Classical Physics +0907.4920 Differential Geometry +0907.4926 Instrumentation and Methods for Astrophysics +0907.4927 Exactly Solvable and Integrable Systems +0907.4929 +0907.4932 Phenomenology +0907.4934 Mesoscale and Nanoscale Physics +0907.4935 Populations and Evolution +0907.4943 Medical Physics +0907.4948 Geometric Topology +0907.4950 General Finance +0907.4953 General Finance +0907.4954 Solar and Stellar Astrophysics +0907.4956 Medical Physics +0907.4957 Computational Geometry +0907.4960 Programming Languages +0907.4964 General Finance +0907.4969 Commutative Algebra +0907.4973 +0907.4974 High Energy Astrophysical Phenomena +0907.4975 Instrumentation and Methods for Astrophysics +0907.4978 Cosmology and Nongalactic Astrophysics +astro-ph/0504245 +cond-mat/0509322 Other Condensed Matter +cond-mat/0610367 Other Condensed Matter +cs/0409026 Information Theory +cs/0409033 Numerical Analysis +cs/0505015 Numerical Analysis +cs/0609079 Numerical Analysis +hep-ph/0509349 Phenomenology +hep-ph/0512038 Phenomenology +math/0603421 Geometric Topology +math/0606232 Group Theory +math/0607242 Geometric Topology +math/0607252 Probability +math/0607610 Symplectic Geometry +math/0608685 Group Theory +0704.1475 Probability +0704.1990 Theory +0704.2070 Theory +0705.3369 Theory +0706.2645 Complex Variables +0706.3054 Optics +0706.3625 Mesoscale and Nanoscale Physics +0707.3593 Other Condensed Matter +0708.0621 +0708.3146 +0709.0174 +0709.0319 General Physics +0709.4423 +0710.0313 +0710.1983 +0710.2097 Theory +0710.5109 Differential Geometry +0710.5129 Phenomenology +0710.5897 +0711.1952 +0711.3436 Phenomenology +0711.3538 +0711.4462 +0712.1645 Experiment +0712.1672 Mesoscale and Nanoscale Physics +0712.2826 +0712.3670 Algebraic Geometry +0712.3885 Phenomenology +0801.0240 +0801.0550 +0801.0896 Theory +0801.1647 Data Analysis, Statistics and Probability +0801.1686 +0801.1829 Number Theory +0801.3368 +0801.4112 Theory +0801.4242 Theory +0801.4615 Theory +0801.4714 Computational Complexity +0802.0052 General Physics +0802.0897 Phenomenology +0802.2818 Phenomenology +0803.0152 Complex Variables +0803.0567 Strongly Correlated Electrons +0803.1187 Complex Variables +0803.1188 Complex Variables +0804.0170 Superconductivity +0804.1660 Algebraic Geometry +0804.2118 Theory +0804.2678 +0804.2786 +0804.3584 +0804.3999 Theory +0804.4326 +0805.2704 Phenomenology +0806.1078 Theory +0806.1433 Phenomenology +0806.2458 +0806.4649 General Physics +0806.4705 Phenomenology +0807.0325 Phenomenology +0807.0544 +0807.1421 +0807.1435 Phenomenology +0807.2333 +0807.3041 +0807.3169 Theory +0807.4112 Phenomenology +0807.4129 Phenomenology +0808.1326 Strongly Correlated Electrons +0808.1339 +0808.1600 Theory +0808.1747 Phenomenology +0808.2418 Theory +0808.3479 +0808.3770 Theory +0809.0712 Theory +0809.1360 Theory +0809.1880 Theory +0809.2510 +0809.2708 Phenomenology +0809.3022 +0809.3981 Theory +0809.4464 Theory +0809.4711 Phenomenology +0809.4750 Phenomenology +0809.4954 Theory +0810.0228 Phenomenology +0810.0499 Theory +0810.0986 Superconductivity +0810.1233 Theory +0810.1364 Superconductivity +0810.1610 Phenomenology +0810.1680 +0810.2008 Theory +0810.2306 Phenomenology +0810.2670 Phenomenology +0810.2706 Phenomenology +0810.3097 Phenomenology +0810.5410 Statistical Mechanics +0810.5762 Phenomenology +0811.0159 +0811.0201 Soft Condensed Matter +0811.0409 Lattice +0811.0445 Phenomenology +0811.0923 Theory +0811.1556 Materials Science +0811.1727 +0811.1812 Phenomenology +0811.2279 +0811.2556 Phenomenology +0811.2711 Phenomenology +0811.3353 Theory +0811.3424 Phenomenology +0811.3537 Phenomenology +0811.3662 Phenomenology +0811.3932 Mesoscale and Nanoscale Physics +0811.4457 Phenomenology +0811.4620 Phenomenology +0812.1049 Theory +0812.1050 Theory +0812.1059 +0812.1643 Phenomenology +0812.1683 Statistical Mechanics +0812.1827 +0812.2234 Theory +0812.2407 Phenomenology +0812.2413 Phenomenology +0812.2810 Theory +0812.3239 Theory +0812.3262 Phenomenology +0812.3310 +0812.3379 Complex Variables +0812.3534 Theory +0812.4254 Theory +0812.4363 Theory +0812.4443 +0812.4449 +0812.4520 Superconductivity +0901.0025 Theory +0901.0076 Phenomenology +0901.0230 +0901.0337 Theory +0901.0480 +0901.0481 Phenomenology +0901.0591 Theory +0901.0748 Lattice +0901.1063 Experiment +0901.1119 +0901.1186 Cosmology and Nongalactic Astrophysics +0901.1187 Astrophysics of Galaxies +0901.1303 +0901.1421 Theory +0901.1686 Phenomenology +0901.1757 +0901.2359 Astrophysics of Galaxies +0901.3078 Phenomenology +0901.3085 Cosmology and Nongalactic Astrophysics +0901.3447 High Energy Astrophysical Phenomena +0901.3458 Theory +0902.2024 Optics +0902.2456 +0902.3532 Databases +0902.3718 Phenomenology +0902.4684 Pricing of Securities +0902.4865 Astrophysics of Galaxies +0903.0081 +0903.0495 Theory +0903.0761 Representation Theory +0903.1200 +0903.1293 Solar and Stellar Astrophysics +0903.1584 Materials Science +0903.1743 Number Theory +0903.1883 Cosmology and Nongalactic Astrophysics +0903.2409 High Energy Astrophysical Phenomena +0903.2544 Information Retrieval +0903.3460 Complex Variables +0903.3571 Statistical Mechanics +0903.3620 Statistics Theory +0903.3621 Data Analysis, Statistics and Probability +0903.3622 Data Structures and Algorithms +0903.3627 Information Theory +0903.3638 Geometric Topology +0903.3639 Functional Analysis +0903.3648 Experiment +0903.3651 +0903.3652 Classical Analysis and ODEs +0903.3657 Pricing of Securities +0903.3659 Other Condensed Matter +0903.3660 Classical Analysis and ODEs +0903.3664 Statistical Mechanics +0903.3665 General Physics +0903.3669 Artificial Intelligence +0903.3673 Operator Algebras +0903.3675 Representation Theory +0903.3677 Complex Variables +0903.3687 Earth and Planetary Astrophysics +0903.3694 Algebraic Geometry +0903.3698 Algebraic Geometry +0903.3705 Probability +0903.3706 Differential Geometry +0903.3707 Chemical Physics +0903.3708 Chemical Physics +0903.3718 Plasma Physics +0903.3719 Quantitative Methods +0903.3722 Phenomenology +0903.3726 Number Theory +0903.3727 Solar and Stellar Astrophysics +0903.3732 Strongly Correlated Electrons +0903.3744 Representation Theory +0903.3750 Chemical Physics +0903.3751 Group Theory +0903.3752 Chemical Physics +0903.3753 Combinatorics +0903.3754 Group Theory +0903.3756 Number Theory +0903.3759 Networking and Internet Architecture +0903.3760 Statistical Mechanics +0903.3761 Functional Analysis +0903.3762 K-Theory and Homology +0903.3781 Biological Physics +0903.3784 Mesoscale and Nanoscale Physics +0903.3785 Strongly Correlated Electrons +0903.3786 Information Theory +0903.3788 +0903.3789 Soft Condensed Matter +0903.3791 +0903.3792 Theory +0903.3797 Software Engineering +0903.3798 +0903.3805 Classical Analysis and ODEs +0903.3809 Chemical Physics +0903.3812 Combinatorics +0903.3813 Mesoscale and Nanoscale Physics +0903.3815 Cosmology and Nongalactic Astrophysics +0903.3817 Representation Theory +0903.3819 +0903.3822 Classical Analysis and ODEs +0903.3824 Differential Geometry +0903.3825 Biomolecules +0903.3828 +0903.3835 Algebraic Geometry +0903.3836 +0903.3837 +0903.3842 Materials Science +0903.3843 Optimization and Control +0903.3845 Classical Analysis and ODEs +0903.3846 Cosmology and Nongalactic Astrophysics +0903.3848 Combinatorics +0903.3850 Logic in Computer Science +0903.3855 Probability +0903.3868 Operator Algebras +0903.3878 +0903.3886 Applications +0903.3887 Populations and Evolution +0903.3889 Information Theory +0903.3891 Probability +0903.3896 +0903.3898 Number Theory +0903.3900 Cryptography and Security +0903.3901 Materials Science +0903.3902 Physics and Society +0903.3904 General Mathematics +0903.3906 Mesoscale and Nanoscale Physics +0903.3913 Classical Physics +0903.3921 Functional Analysis +0903.3922 Complex Variables +0903.3926 Artificial Intelligence +0903.3931 +0903.3935 Probability +astro-ph/0411335 +astro-ph/0504211 +astro-ph/0505018 +astro-ph/0510849 +astro-ph/0611007 +cond-mat/0205178 Superconductivity +cond-mat/0206144 Soft Condensed Matter +cond-mat/0207290 Mesoscale and Nanoscale Physics +cond-mat/0305008 Soft Condensed Matter +cond-mat/0405026 Mesoscale and Nanoscale Physics +cond-mat/0501182 Other Condensed Matter +cond-mat/0511641 Strongly Correlated Electrons +cond-mat/0608455 Other Condensed Matter +cond-mat/0609390 Other Condensed Matter +cond-mat/0611566 Other Condensed Matter +gr-qc/0110023 +gr-qc/0405126 +gr-qc/0506044 +gr-qc/0509023 +gr-qc/0510123 +gr-qc/0512080 +gr-qc/0607102 +gr-qc/0607109 +gr-qc/0608008 +gr-qc/0701097 +hep-th/0608041 Theory +math/0403100 Algebraic Topology +math/0411500 Algebraic Geometry +math/0502309 Analysis of PDEs +nlin/0212023 Chaotic Dynamics +nlin/0612021 Chaotic Dynamics +quant-ph/0309027 +quant-ph/0602070 +0704.3749 Group Theory +0710.2432 Differential Geometry +0710.2434 Differential Geometry +0712.1649 +0801.4691 Strongly Correlated Electrons +0802.0284 Classical Physics +0802.1725 Atomic Physics +0803.0017 Algebraic Topology +0803.2006 Probability +0805.0588 Combinatorics +0805.3388 Other Condensed Matter +0805.4274 Theory +0806.0193 Functional Analysis +0806.2523 Chemical Physics +0806.2617 Data Analysis, Statistics and Probability +0806.4012 Combinatorics +0807.0927 Physics and Society +0807.1423 Materials Science +0807.1485 Disordered Systems and Neural Networks +0807.4147 +0808.0150 Superconductivity +0808.0379 Strongly Correlated Electrons +0808.3502 Information Theory +0808.3808 +0809.0638 Quantum Algebra +0810.1336 +0810.2405 Theory +0810.3733 Phenomenology +0810.3849 Theory +0810.5236 Theory +0811.0797 Differential Geometry +0811.1873 Other Condensed Matter +0811.2729 +0812.0088 Symbolic Computation +0901.0013 +0901.1132 Cosmology and Nongalactic Astrophysics +0901.1197 Solar and Stellar Astrophysics +0901.1212 Astrophysics of Galaxies +0901.1219 Cosmology and Nongalactic Astrophysics +0901.1221 Astrophysics of Galaxies +0901.1414 Solar and Stellar Astrophysics +0901.1493 Astrophysics of Galaxies +0901.1494 Instrumentation and Methods for Astrophysics +0901.1495 Solar and Stellar Astrophysics +0901.1570 Earth and Planetary Astrophysics +0901.1578 Astrophysics of Galaxies +0901.1579 Astrophysics of Galaxies +0901.1582 Instrumentation and Methods for Astrophysics +0901.1593 Solar and Stellar Astrophysics +0901.1639 Cosmology and Nongalactic Astrophysics +0901.1691 Solar and Stellar Astrophysics +0901.1699 Solar and Stellar Astrophysics +0901.1714 Cosmology and Nongalactic Astrophysics +0901.1747 Astrophysics of Galaxies +0901.1775 High Energy Astrophysical Phenomena +0901.1781 Solar and Stellar Astrophysics +0901.1822 Solar and Stellar Astrophysics +0901.1832 High Energy Astrophysical Phenomena +0901.1843 Earth and Planetary Astrophysics +0901.1860 Solar and Stellar Astrophysics +0901.1899 Astrophysics of Galaxies +0901.1915 Cosmology and Nongalactic Astrophysics +0901.1919 Instrumentation and Methods for Astrophysics +0901.1976 Astrophysics of Galaxies +0901.2355 Superconductivity +0901.2504 Phenomenology +0901.2695 Operator Algebras +0901.3081 +0901.3100 Instrumentation and Detectors +0901.3104 +0901.3270 +0901.3355 Atomic Physics +0901.3359 Instrumentation and Methods for Astrophysics +0901.3360 Experiment +0901.3365 Physics and Society +0901.3367 Phenomenology +0901.3375 Data Analysis, Statistics and Probability +0901.3377 Number Theory +0901.3379 Statistics Theory +0901.3389 High Energy Astrophysical Phenomena +0901.3395 Instrumentation and Detectors +0901.3396 Algebraic Topology +0901.3397 Superconductivity +0901.3398 Pricing of Securities +0901.3403 Information Theory +0901.3404 Pricing of Securities +0901.3408 Information Theory +0901.3416 Group Theory +0901.3421 Theory +0901.3423 Statistical Mechanics +0901.3427 Instrumentation and Detectors +0901.3429 Instrumentation and Detectors +0901.3435 +0901.3437 General Physics +0901.3441 Group Theory +0901.3444 Fluid Dynamics +0901.3448 Superconductivity +0901.3451 Other Condensed Matter +0901.3452 Number Theory +0901.3455 Materials Science +0901.3456 Classical Analysis and ODEs +0901.3459 General Physics +0901.3467 Information Theory +0901.3469 Applications +0901.3472 Classical Physics +0901.3473 Exactly Solvable and Integrable Systems +0901.3475 Information Theory +0901.3478 Applications +0901.3481 Materials Science +0901.3482 Cryptography and Security +0901.3484 Applications +0901.3491 Phenomenology +0901.3492 Statistical Mechanics +0901.3493 Probability +0901.3494 Applications +0901.3499 Earth and Planetary Astrophysics +0901.3501 Complex Variables +0901.3506 Functional Analysis +0901.3508 Analysis of PDEs +0901.3509 Combinatorics +0901.3510 +0901.3518 Complex Variables +0901.3523 Phenomenology +0901.3535 Plasma Physics +0901.3539 Algebraic Geometry +0901.3541 Combinatorics +0901.3542 Analysis of PDEs +0901.3547 Soft Condensed Matter +0901.3551 Mesoscale and Nanoscale Physics +acc-phys/9602002 Accelerator Physics +astro-ph/0503285 +astro-ph/0507692 +astro-ph/0609774 +astro-ph/9407044 +astro-ph/9409053 +astro-ph/9511106 +chao-dyn/9909046 Chaotic Dynamics +cond-mat/0002016 Mesoscale and Nanoscale Physics +cond-mat/0002385 Mesoscale and Nanoscale Physics +cond-mat/0003245 Mesoscale and Nanoscale Physics +cond-mat/0004018 +cond-mat/0006363 Mesoscale and Nanoscale Physics +cond-mat/0007201 +cond-mat/0009365 Statistical Mechanics +cond-mat/0010245 Strongly Correlated Electrons +cond-mat/0012202 Materials Science +cond-mat/0103310 Statistical Mechanics +cond-mat/0208435 Mesoscale and Nanoscale Physics +cond-mat/0309500 Mesoscale and Nanoscale Physics +cond-mat/0403071 Mesoscale and Nanoscale Physics +cond-mat/0412542 Mesoscale and Nanoscale Physics +cond-mat/0504569 Mesoscale and Nanoscale Physics +cond-mat/0512035 Statistical Mechanics +cond-mat/0607079 Superconductivity +cond-mat/0608087 Mesoscale and Nanoscale Physics +cond-mat/9207021 +cond-mat/9208012 +cond-mat/9208023 +cond-mat/9209006 +cond-mat/9210018 +cond-mat/9211006 +cond-mat/9212002 +cond-mat/9212027 +cond-mat/9212029 +cond-mat/9212030 +cond-mat/9301027 +cond-mat/9302030 +cond-mat/9510133 +cond-mat/9510152 +cond-mat/9602125 +cond-mat/9603158 +cond-mat/9603196 +cond-mat/9610148 Strongly Correlated Electrons +cond-mat/9702088 Mesoscale and Nanoscale Physics +cond-mat/9705002 Statistical Mechanics +cond-mat/9707027 Superconductivity +cond-mat/9707222 Statistical Mechanics +cond-mat/9709102 Strongly Correlated Electrons +cond-mat/9712320 +cond-mat/9803269 Statistical Mechanics +cond-mat/9808059 Mesoscale and Nanoscale Physics +cond-mat/9809161 Materials Science +cond-mat/9811223 +cond-mat/9902063 Mesoscale and Nanoscale Physics +cond-mat/9904190 +cond-mat/9905222 Mesoscale and Nanoscale Physics +cond-mat/9908189 +cond-mat/9908314 Statistical Mechanics +cond-mat/9911235 Statistical Mechanics +cond-mat/9911474 Disordered Systems and Neural Networks +dg-ga/9710004 Differential Geometry +gr-qc/9309026 +gr-qc/9409057 +hep-lat/9204001 Lattice +hep-lat/9304002 Lattice +hep-ph/0412264 Phenomenology +hep-ph/9607360 Phenomenology +hep-th/0612045 Theory +hep-th/9110043 Theory +hep-th/9112075 Theory +hep-th/9301052 Theory +math/0104081 Differential Geometry +math/0506551 Combinatorics +math/0703712 Operator Algebras +nucl-ex/9611003 +nucl-ex/9704010 +nucl-th/0310067 +nucl-th/9212005 +nucl-th/9310019 +nucl-th/9401010 +nucl-th/9409018 +nucl-th/9507029 +nucl-th/9511043 +nucl-th/9512027 +nucl-th/9601046 +nucl-th/9604033 +nucl-th/9604041 +nucl-th/9605040 +nucl-th/9606049 +nucl-th/9703051 +nucl-th/9704061 +nucl-th/9705028 +nucl-th/9706014 +nucl-th/9710059 +nucl-th/9803032 +nucl-th/9807012 +nucl-th/9808057 +nucl-th/9809062 +physics/0702113 General Physics +quant-ph/0003004 +quant-ph/9412009 +quant-ph/9604034 +quant-ph/9604039 +quant-ph/9605005 +quant-ph/9610026 +quant-ph/9611027 +quant-ph/9702027 +quant-ph/9702036 +quant-ph/9703002 +quant-ph/9703040 +quant-ph/9703041 +quant-ph/9703043 +quant-ph/9704028 +quant-ph/9705044 +quant-ph/9705046 +quant-ph/9706058 +quant-ph/9707027 +quant-ph/9708009 +quant-ph/9708014 +quant-ph/9708023 +quant-ph/9709029 +quant-ph/9709047 +quant-ph/9712011 +quant-ph/9712012 +quant-ph/9712019 +quant-ph/9802036 +quant-ph/9802037 +quant-ph/9802045 +quant-ph/9805071 +quant-ph/9806088 +quant-ph/9806091 +quant-ph/9807018 +quant-ph/9807070 +quant-ph/9808001 +quant-ph/9808056 +quant-ph/9810046 +quant-ph/9810075 +quant-ph/9902048 +quant-ph/9903018 +quant-ph/9903038 +quant-ph/9903044 +quant-ph/9903047 +quant-ph/9903054 +quant-ph/9904023 +quant-ph/9904029 +quant-ph/9904034 +quant-ph/9904035 +quant-ph/9905041 +quant-ph/9905045 +quant-ph/9905071 +quant-ph/9905080 +quant-ph/9906006 +quant-ph/9906019 +quant-ph/9906030 +quant-ph/9906059 +quant-ph/9906066 +quant-ph/9906092 +quant-ph/9906094 +quant-ph/9906105 +quant-ph/9906114 +quant-ph/9907041 +quant-ph/9909056 +solv-int/9706002 Exactly Solvable and Integrable Systems +0704.3761 Commutative Algebra +0707.3411 Soft Condensed Matter +0708.1990 Algebraic Geometry +0709.2107 Differential Geometry +0709.2130 +0710.4699 +0710.5631 +0711.3380 Commutative Algebra +0712.4185 Operator Algebras +0801.4550 +0801.4627 Statistics Theory +0801.4680 +0803.1627 Algebraic Geometry +0803.2866 +0804.3657 Group Theory +0805.1204 +0805.1884 Mesoscale and Nanoscale Physics +0806.0361 Operator Algebras +0806.0585 Commutative Algebra +0806.0959 +0806.3298 Algebraic Geometry +0806.3300 +0806.4756 +0807.1643 +0807.2913 Phenomenology +0807.3569 +0807.5033 Functional Analysis +0808.0908 +0808.1153 Phenomenology +0808.2152 Statistics Theory +0808.3276 Materials Science +0809.0470 Group Theory +0809.1285 +0809.1467 +0809.3018 +0809.3034 +0809.3325 +0809.3842 Other Condensed Matter +0810.1550 +0810.2927 Functional Analysis +0810.3018 Strongly Correlated Electrons +0810.4406 +0811.0032 +0811.0052 +0811.0233 +0811.3361 +0811.4261 +0811.4723 Mesoscale and Nanoscale Physics +0811.4734 Mesoscale and Nanoscale Physics +0812.0348 +0812.0459 Mesoscale and Nanoscale Physics +0812.1805 Classical Physics +0812.2537 +0812.3301 Materials Science +0812.3308 Materials Science +0812.3634 Mesoscale and Nanoscale Physics +0812.4410 +0812.4964 Symplectic Geometry +0901.0438 Mesoscale and Nanoscale Physics +0901.1352 Symplectic Geometry +0901.3352 +0901.4070 +0902.0250 Algebraic Topology +0902.0832 +0902.1705 +0902.1913 +0902.2126 Exactly Solvable and Integrable Systems +0902.2615 +0902.2820 Theory +0902.3228 Mesoscale and Nanoscale Physics +0903.0084 +0903.0792 +0903.0973 +0903.2064 History and Philosophy of Physics +0903.3150 +0904.0311 Mesoscale and Nanoscale Physics +0904.0681 High Energy Astrophysical Phenomena +0904.1465 +0904.3189 Mesoscale and Nanoscale Physics +0904.3528 Computer Science and Game Theory +0904.3787 Materials Science +0904.3796 Mesoscale and Nanoscale Physics +0904.3889 Quantum Gases +0904.3942 Statistical Mechanics +0904.3944 Computer Vision and Pattern Recognition +0904.3948 Statistical Mechanics +0904.3952 Astrophysics of Galaxies +0904.3958 Solar and Stellar Astrophysics +0904.3961 Category Theory +0904.3964 Category Theory +0904.3969 Pattern Formation and Solitons +0904.3971 Phenomenology +0904.3973 General Physics +0904.3980 Representation Theory +0904.3995 Algebraic Geometry +0904.3996 Subcellular Processes +0904.3999 Classical Physics +0904.4000 General Physics +0904.4002 Disordered Systems and Neural Networks +0904.4003 Plasma Physics +0904.4008 Soft Condensed Matter +0904.4012 Combinatorics +0904.4013 Commutative Algebra +0904.4015 Classical Physics +0904.4021 General Physics +0904.4024 Solar and Stellar Astrophysics +0904.4028 +0904.4041 Databases +0904.4044 +0904.4047 Geophysics +0904.4048 Networking and Internet Architecture +0904.4058 Cryptography and Security +0904.4059 Algebraic Geometry +0904.4061 Data Structures and Algorithms +0904.4067 Geometric Topology +0904.4072 +0904.4073 +0904.4081 Dynamical Systems +0904.4082 Optics +0904.4085 Statistical Mechanics +0904.4089 Classical Analysis and ODEs +0904.4091 Probability +0904.4094 Combinatorics +0904.4097 Statistical Mechanics +0904.4100 Biological Physics +0904.4101 Solar and Stellar Astrophysics +0904.4102 Functional Analysis +0904.4105 Analysis of PDEs +0904.4115 Probability +0904.4118 Astrophysics of Galaxies +0904.4121 Astrophysics of Galaxies +0904.4126 Solar and Stellar Astrophysics +0904.4130 Geometric Topology +0904.4132 +0904.4135 Chemical Physics +0904.4137 Chemical Physics +0904.4138 Chemical Physics +0904.4140 Complex Variables +0904.4147 Materials Science +0904.4148 +0904.4161 Combinatorics +0904.4162 Combinatorics +0904.4168 Combinatorics +0904.4177 Geometric Topology +0904.4178 Phenomenology +0904.4181 Distributed, Parallel, and Cluster Computing +0904.4186 Statistics Theory +0904.4188 Strongly Correlated Electrons +0904.4190 Analysis of PDEs +0904.4194 Materials Science +0904.4196 Rings and Algebras +0904.4197 Quantum Gases +0904.4200 +0904.4206 Combinatorics +0904.4213 +0904.4217 Chaotic Dynamics +0904.4218 Subcellular Processes +0904.4221 Phenomenology +0904.4222 Geometric Topology +0904.4223 Probability +0904.4224 Optics +0904.4225 Analysis of PDEs +0904.4229 Optimization and Control +0904.4232 Probability +0904.4233 Commutative Algebra +astro-ph/0304224 +astro-ph/0305125 +astro-ph/0310696 +astro-ph/0311362 +astro-ph/0410354 +astro-ph/0602335 +cond-mat/0503591 Materials Science +cond-mat/0505450 Statistical Mechanics +cond-mat/0609459 Soft Condensed Matter +cond-mat/0611576 Soft Condensed Matter +cond-mat/0702004 Statistical Mechanics +gr-qc/0505070 +gr-qc/0509056 +hep-ex/0304005 Experiment +hep-ph/0602048 Phenomenology +hep-ph/9807375 Phenomenology +hep-ph/9811212 Phenomenology +math-ph/0610025 +math/0107140 Probability +math/0406388 Number Theory +math/0502319 Differential Geometry +math/0512253 Geometric Topology +quant-ph/0403162 +quant-ph/0602221 +0704.1077 Functional Analysis +0708.2174 Classical Physics +0802.1296 Information Retrieval +0802.1306 Information Retrieval +0803.2294 Classical Analysis and ODEs +0807.1353 Classical Analysis and ODEs +0807.3492 Applications +0807.4332 Number Theory +0808.1933 +0809.2081 Algebraic Geometry +0809.2879 Combinatorics +0810.5089 Probability +0810.5712 Theory +0901.3268 +0904.2404 Lattice +cond-mat/0310619 Strongly Correlated Electrons +math/0503470 Dynamical Systems +math/0504278 Geometric Topology +math/0603035 Functional Analysis +math/0603183 Functional Analysis +0708.0099 Analysis of PDEs +0710.1911 Algebraic Geometry +0710.5159 Differential Geometry +0807.3984 Differential Geometry +0809.3474 Strongly Correlated Electrons +0905.1518 Statistical Finance +0905.2591 Algebraic Topology +0907.3189 +0908.1089 Statistical Finance +0908.2169 Theory +0908.4064 +0908.4477 Materials Science +0909.1568 Number Theory +0909.2987 Quantum Gases +0909.5512 Combinatorics +0910.1935 +0910.2657 Mesoscale and Nanoscale Physics +0912.0586 Quantum Algebra +0912.3541 Information Theory +0912.3818 General Physics +0912.4516 Probability +0912.4519 Mesoscale and Nanoscale Physics +0912.4520 Cosmology and Nongalactic Astrophysics +0912.4529 Numerical Analysis +0912.4532 Phenomenology +0912.4535 Probability +0912.4540 Metric Geometry +0912.4548 General Physics +0912.4553 Multiagent Systems +0912.4556 Information Theory +0912.4557 General Physics +0912.4559 Mesoscale and Nanoscale Physics +0912.4560 Combinatorics +0912.4565 Mesoscale and Nanoscale Physics +0912.4575 +0912.4577 Fluid Dynamics +0912.4583 Algebraic Geometry +0912.4584 Artificial Intelligence +0912.4598 Artificial Intelligence +0912.4606 +0912.4609 Pricing of Securities +0912.4611 Biological Physics +0912.4614 Pricing of Securities +0912.4616 Cosmology and Nongalactic Astrophysics +0912.4618 Pricing of Securities +0912.4621 Statistical Finance +0912.4624 Functional Analysis +0912.4636 Analysis of PDEs +0912.4637 Multiagent Systems +0912.4644 Cosmology and Nongalactic Astrophysics +0912.4650 Complex Variables +0912.4651 Commutative Algebra +0912.4658 Mesoscale and Nanoscale Physics +0912.4666 Rings and Algebras +0912.4668 High Energy Astrophysical Phenomena +0912.4673 Algebraic Topology +0912.4680 Materials Science +0912.4681 Experiment +0912.4686 Statistics Theory +0912.4694 Cryptography and Security +0912.4695 Statistical Mechanics +0912.4702 Soft Condensed Matter +0912.4707 Chemical Physics +0912.4708 Category Theory +0912.4713 Optimization and Control +0912.4728 High Energy Astrophysical Phenomena +0912.4729 Computation +math/0610564 Probability +math/0701526 Probability +0705.1321 Geometric Topology +0706.1227 Phenomenology +0706.1927 Geometric Topology +0707.4195 +0709.1411 Theory +0709.2239 Theory +0709.3532 Theory +0710.2609 Quantum Algebra +0710.4507 +0710.5161 Algebraic Geometry +0711.2863 Complex Variables +0712.3449 Algebraic Geometry +0801.1972 Functional Analysis +0801.2479 Superconductivity +0802.2813 Strongly Correlated Electrons +0803.0641 Phenomenology +0803.3458 Phenomenology +0804.0376 Materials Science +0805.4364 Fluid Dynamics +0806.0116 +0806.1897 Theory +0806.3758 +0807.1017 Theory +0807.4785 Phenomenology +0808.3902 Phenomenology +0809.1440 Theory +0809.1580 Phenomenology +0809.2384 Physics and Society +0809.5284 Strongly Correlated Electrons +0810.1062 Materials Science +0810.2526 Phenomenology +0810.2858 +0810.3005 Strongly Correlated Electrons +0810.3059 Superconductivity +0810.3253 Phenomenology +0810.3467 Theory +0810.3897 Theory +0810.5309 Statistical Mechanics +0810.5341 +0811.1351 Symplectic Geometry +0811.1566 Theory +0811.2086 Theory +0811.2150 Theory +0811.2262 Theory +0811.2635 Other Condensed Matter +0811.2855 Theory +0811.2998 Phenomenology +0812.0166 Theory +0812.0696 Optics +0812.0910 Phenomenology +0812.1332 Statistical Mechanics +0812.2502 +0812.3329 Phenomenology +0812.3638 Lattice +0812.3867 Soft Condensed Matter +0812.4216 Theory +0901.1384 Statistical Mechanics +0901.1540 Phenomenology +0901.3086 Materials Science +0901.3688 Analysis of PDEs +0901.3722 +0902.0490 Other Quantitative Biology +0902.2554 Category Theory +0903.1307 Soft Condensed Matter +0903.1498 Disordered Systems and Neural Networks +0903.3379 Chemical Physics +0903.4030 Theory +0903.4776 +0903.4896 +0903.4898 Performance +0903.4904 Solar and Stellar Astrophysics +0903.4908 Phenomenology +0903.4909 Algebraic Topology +0903.4910 Algebraic Topology +0903.4912 Algebraic Topology +0903.4913 Plasma Physics +0903.4914 Operator Algebras +0903.4918 Symplectic Geometry +0903.4923 Analysis of PDEs +0903.4924 Materials Science +0903.4930 Artificial Intelligence +0903.4931 Mesoscale and Nanoscale Physics +0903.4933 Rings and Algebras +0903.4934 Differential Geometry +0903.4939 Information Theory +0903.4946 Chemical Physics +0903.4947 Chemical Physics +0903.4948 Chemical Physics +0903.4954 Statistics Theory +0903.4969 Algebraic Topology +0903.4973 Algebraic Topology +0903.4975 Algebraic Topology +0903.4986 Chemical Physics +0903.4987 Representation Theory +0903.4988 Algebraic Topology +0903.4991 Instrumentation and Detectors +0903.4992 Algebraic Topology +0903.4993 Probability +0903.4994 Rings and Algebras +0903.4996 Algebraic Topology +0903.4997 Algebraic Topology +0903.5000 Algebraic Topology +0903.5002 Algebraic Topology +0903.5003 Algebraic Topology +0903.5004 Rings and Algebras +0903.5005 Probability +0903.5006 Algebraic Topology +0903.5007 +0903.5008 General Physics +0903.5014 Analysis of PDEs +0903.5015 +0903.5024 Software Engineering +0903.5026 Statistical Mechanics +0903.5033 Commutative Algebra +0903.5034 Algebraic Topology +0903.5036 Biological Physics +0903.5044 Rings and Algebras +0903.5045 Computer Vision and Pattern Recognition +0903.5046 +0903.5050 +0903.5054 Artificial Intelligence +0903.5056 Differential Geometry +0903.5064 General Finance +0903.5068 Experiment +0903.5070 +0903.5076 Mesoscale and Nanoscale Physics +0903.5084 Representation Theory +0903.5085 Probability +0903.5087 General Physics +0903.5090 Differential Geometry +0903.5093 Differential Geometry +0903.5094 Numerical Analysis +0903.5096 +0903.5101 Classical Physics +0903.5104 Materials Science +0903.5105 Geometric Topology +0903.5106 Computational Physics +0903.5110 Superconductivity +0903.5111 Analysis of PDEs +0903.5115 +0903.5119 Cosmology and Nongalactic Astrophysics +0903.5122 Computer Science and Game Theory +0903.5128 Classical Physics +0903.5138 Phenomenology +0903.5139 Earth and Planetary Astrophysics +0903.5140 Representation Theory +0903.5146 Representation Theory +0903.5147 Statistics Theory +0903.5148 +0903.5152 Algebraic Geometry +0903.5154 Category Theory +0903.5161 Statistics Theory +0903.5163 Phenomenology +0903.5165 Number Theory +0903.5168 Computation and Language +0903.5169 Combinatorics +0903.5170 Representation Theory +0903.5177 Cryptography and Security +0903.5178 Cell Behavior +0903.5180 Experiment +0903.5189 Chaotic Dynamics +0903.5191 Classical Physics +0903.5192 Materials Science +0903.5194 Analysis of PDEs +0903.5195 Materials Science +0903.5198 Soft Condensed Matter +0903.5201 Medical Physics +0903.5206 Strongly Correlated Electrons +0903.5208 Computational Geometry +0903.5210 Spectral Theory +0903.5212 Astrophysics of Galaxies +0903.5217 Algebraic Topology +0903.5220 Commutative Algebra +0903.5221 Symbolic Computation +0903.5225 +0903.5229 Statistical Mechanics +0903.5234 Phenomenology +0903.5238 Optics +0903.5239 Algebraic Topology +0903.5241 Atomic and Molecular Clusters +0903.5246 Atomic and Molecular Clusters +0903.5253 Atomic and Molecular Clusters +0903.5254 Information Retrieval +0903.5266 Statistical Mechanics +0903.5267 Robotics +0903.5268 Chemical Physics +0903.5269 Differential Geometry +0903.5272 High Energy Astrophysical Phenomena +0903.5274 Representation Theory +0903.5280 Solar and Stellar Astrophysics +0903.5283 General Physics +0903.5286 Operator Algebras +0903.5289 Artificial Intelligence +astro-ph/0301129 +astro-ph/0308169 +astro-ph/0702100 +cs/0611146 Information Theory +math/0310325 Algebraic Geometry +math/0412159 Algebraic Geometry +math/0604131 Algebraic Geometry +math/0606112 Algebraic Geometry +math/0607332 Geometric Topology +math/0608137 Geometric Topology +math/0701395 Geometric Topology +0704.0144 Theory +0704.3098 Probability +0705.1130 Theory +0707.3358 Phenomenology +0708.1703 +0709.0352 +0710.1520 Probability +0711.2408 Analysis of PDEs +0712.0471 Theory +0712.1812 Phenomenology +0712.3988 +0801.4189 Theory +0802.1954 Exactly Solvable and Integrable Systems +0803.0038 Theory +0803.0685 Theory +0803.2777 Theory +0803.4202 Phenomenology +0804.0336 Phenomenology +0804.0746 Analysis of PDEs +0804.0863 Phenomenology +0804.1466 Phenomenology +0804.1942 Representation Theory +0804.1976 Phenomenology +0804.1991 Strongly Correlated Electrons +0804.2572 Probability +0804.2613 Phenomenology +0804.2638 Soft Condensed Matter +0804.2688 Phenomenology +0804.2710 Phenomenology +0804.3296 Phenomenology +0804.3941 Phenomenology +0804.4149 Phenomenology +0804.4283 Phenomenology +0804.4573 Phenomenology +0805.0539 Disordered Systems and Neural Networks +0805.1101 Analysis of PDEs +0805.1346 Theory +0805.1573 Theory +0805.2836 Phenomenology +0805.3206 Information Theory +0805.4658 Theory +0806.0006 Theory +0806.0564 Disordered Systems and Neural Networks +0806.1769 +0806.3343 +0806.3565 Theory +0806.3914 Lattice +0806.4358 Theory +0806.4427 Superconductivity +0806.4626 Phenomenology +0806.4952 +0807.0236 Theory +0807.0262 Probability +0807.0643 Theory +0807.1597 Lattice +0807.1917 Theory +0807.2000 +0807.2063 Theory +0807.2117 Theory +0807.2337 Theory +0807.2339 Theory +0807.2377 Theory +0807.2694 Data Structures and Algorithms +0807.3058 Theory +0807.3067 Mesoscale and Nanoscale Physics +0807.3191 Theory +0807.3671 +0807.3797 Theory +0807.4728 +0808.0107 +0808.0575 +0808.1008 Mesoscale and Nanoscale Physics +0808.1212 Theory +0808.1213 Theory +0808.1277 +0808.1394 Theory +0808.1583 Theory +0808.2350 Other Condensed Matter +0808.2396 Theory +0808.3696 Phenomenology +0808.3733 Spectral Theory +0809.0005 Theory +0809.0394 Theory +0809.0840 Computational Engineering, Finance, and Science +0809.1157 Theory +0809.1568 Statistical Mechanics +0809.1595 Commutative Algebra +0809.3273 +0809.3419 Phenomenology +0809.3543 Theory +0809.3748 Theory +0809.3895 Theory +0810.0019 Strongly Correlated Electrons +0810.1044 Phenomenology +0810.1053 Theory +0810.1843 Lattice +0810.2080 Instrumentation and Detectors +0810.4648 Theory +0810.4786 +0810.4885 Theory +0810.5001 Theory +0810.5388 Theory +0811.0629 +0811.0807 Lattice +0811.0812 Phenomenology +0811.2157 Theory +0811.2405 General Mathematics +0812.1246 +0812.1420 Theory +0812.2105 Phenomenology +0812.3207 General Mathematics +0812.3354 Algebraic Geometry +0812.4834 +0901.0168 Information Theory +0901.0902 Probability +0901.3275 High Energy Astrophysical Phenomena +0901.4946 Functional Analysis +0901.4948 Analysis of PDEs +0902.0100 General Finance +0902.0197 Symplectic Geometry +0902.0282 Disordered Systems and Neural Networks +0902.0976 Cosmology and Nongalactic Astrophysics +0902.0980 Quantitative Methods +0902.0990 Methodology +0902.0993 Combinatorics +0902.1000 Solar and Stellar Astrophysics +0902.1002 Solar and Stellar Astrophysics +0902.1012 Optics +0902.1019 Exactly Solvable and Integrable Systems +0902.1021 Strongly Correlated Electrons +0902.1030 Earth and Planetary Astrophysics +0902.1031 Rings and Algebras +0902.1032 +0902.1033 Computation and Language +0902.1034 General Physics +0902.1038 Data Structures and Algorithms +0902.1045 Discrete Mathematics +0902.1047 Discrete Mathematics +0902.1048 Data Structures and Algorithms +0902.1053 Soft Condensed Matter +0902.1070 Astrophysics of Galaxies +0902.1075 Probability +0902.1078 Algebraic Geometry +0902.1080 Artificial Intelligence +0902.1090 Analysis of PDEs +0902.1093 Optics +0902.1113 Data Analysis, Statistics and Probability +0902.1115 Probability +0902.1120 Commutative Algebra +0902.1122 Theory +0902.1126 Experiment +0902.1128 Experiment +0902.1133 Differential Geometry +0902.1134 Rings and Algebras +0902.1135 +0902.1136 Differential Geometry +0902.1139 Cosmology and Nongalactic Astrophysics +0902.1144 Astrophysics of Galaxies +0902.1145 Accelerator Physics +0902.1151 Physics Education +0902.1152 Operator Algebras +0902.1153 Analysis of PDEs +0902.1154 Astrophysics of Galaxies +0902.1157 Metric Geometry +0902.1163 +0902.1165 Numerical Analysis +0902.1169 Networking and Internet Architecture +astro-ph/0204265 +astro-ph/0701242 +hep-th/0609119 Theory +math-ph/0610015 +math/0509120 Probability +math/0606041 Combinatorics +math/0610436 Symplectic Geometry +0707.1979 Other Condensed Matter +0707.2086 +0709.1163 Other Condensed Matter +0709.4051 Geometric Topology +0712.0232 Soft Condensed Matter +0712.0392 Information Theory +0712.2986 Probability +0801.2546 Superconductivity +0801.4379 +0802.0371 Mesoscale and Nanoscale Physics +0803.0095 Strongly Correlated Electrons +0804.0346 Statistical Mechanics +0804.0807 Geometric Topology +0804.1457 Mesoscale and Nanoscale Physics +0805.2676 Theory +0806.0427 Statistical Mechanics +0806.1414 Atomic Physics +0806.1607 Materials Science +0806.2774 Superconductivity +0807.0834 Strongly Correlated Electrons +0807.4417 Artificial Intelligence +0807.4690 Statistics Theory +0807.4890 Superconductivity +0808.0499 Other Condensed Matter +0808.1940 +0809.1414 +0809.2256 Statistical Mechanics +0809.5170 Superconductivity +0810.1496 +0810.4176 Phenomenology +0811.0278 Strongly Correlated Electrons +0811.3876 Statistical Mechanics +0811.4739 Number Theory +0812.0079 Statistical Mechanics +0812.2330 Statistical Mechanics +0812.3244 Physics and Society +0812.3666 Probability +0901.0288 Operator Algebras +0901.1683 Information Theory +0901.1796 Rings and Algebras +0901.1883 Number Theory +0901.1886 Information Theory +0901.1890 Computational Physics +0901.1891 Operator Algebras +0901.1901 Mesoscale and Nanoscale Physics +0901.1922 Classical Physics +0901.1925 Computation +0901.1926 Strongly Correlated Electrons +0901.1935 +0901.1936 Information Theory +0901.1948 Operator Algebras +0901.1952 Probability +0901.1953 Algebraic Geometry +0901.1956 General Physics +0901.1958 Analysis of PDEs +0901.1960 Lattice +0901.1965 Analysis of PDEs +0901.1971 Information Theory +0901.1974 Biological Physics +0901.1980 Spectral Theory +0901.1985 Phenomenology +0901.1991 Complex Variables +0901.1994 Analysis of PDEs +0901.2006 Number Theory +0901.2007 Instrumentation and Detectors +0901.2008 Combinatorics +0901.2009 +0901.2010 Probability +0901.2012 Materials Science +0901.2017 Materials Science +0901.2021 Materials Science +0901.2022 Materials Science +0901.2027 +0901.2028 Materials Science +0901.2031 +0901.2039 Biological Physics +0901.2069 Software Engineering +0901.2070 Portfolio Management +0901.2076 Number Theory +0901.2082 Information Theory +0901.2083 Classical Analysis and ODEs +0901.2084 +0901.2097 Strongly Correlated Electrons +0901.2098 Algebraic Geometry +0901.2106 Number Theory +cond-mat/0304026 Soft Condensed Matter +cond-mat/0607254 Other Condensed Matter +cond-mat/0612263 Other Condensed Matter +hep-ph/0605285 Phenomenology +math/0102184 Geometric Topology +math/0407206 Group Theory +math/0611092 Optimization and Control +math/0703118 Quantum Algebra +quant-ph/0406020 +quant-ph/0502171 +quant-ph/0506256 +quant-ph/0609228 +quant-ph/0702148 +0711.4086 Symplectic Geometry +0805.3598 Applications +0806.2319 Mesoscale and Nanoscale Physics +0809.2683 +0809.4195 Mesoscale and Nanoscale Physics +0810.1139 Networking and Internet Architecture +0810.4033 Other Condensed Matter +0810.5225 Metric Geometry +0812.0150 Category Theory +0901.0333 +0901.1167 Materials Science +0901.1271 Statistical Mechanics +0901.2216 Computation and Language +math/0503344 Operator Algebras +math/0504154 Operator Algebras +math/0610501 Geometric Topology +0704.0123 Chaotic Dynamics +0704.1788 Phenomenology +0705.0168 Probability +0705.0795 +0705.2584 +0706.0849 +0706.0930 +0707.1612 +0707.2407 +0707.2459 +0708.3554 +0709.2919 Geometric Topology +0710.0540 +0710.0647 +0711.0037 +0711.1730 +0711.2952 +0711.2955 +0712.1200 +0712.1784 +0712.1792 +0712.1809 +0712.1897 +0712.1917 +0712.2137 +0712.2971 +0712.3408 +0712.3480 +0712.3700 +0712.4350 +0801.0960 +0801.1340 +0801.1672 +0801.1684 +0801.2300 +0801.2902 +0801.2916 +0801.3089 +0801.4317 +0801.4519 +0801.4573 +0801.4661 +0801.4724 +0802.0120 +0802.0124 +0802.0431 +0802.0687 +0802.0893 +0802.1354 +0802.2249 +0802.2358 +0802.2946 Theory +0802.3146 +0802.3398 Instrumentation and Detectors +0802.3616 +0802.3852 +0802.4044 +0802.4154 +0803.1045 +0803.1053 +0803.1622 +0803.1844 +0803.2461 +0803.2463 +0803.2466 +0803.3552 +0803.3839 +0804.0598 +0804.0653 +0804.0711 +0804.1518 +0804.1717 Analysis of PDEs +0804.3870 +0804.3995 +0805.0654 +0805.4498 +0806.2293 +0806.3908 Superconductivity +0806.4087 +0806.4484 Learning +0806.4843 +0806.4906 Theory +0807.0034 Instrumentation and Detectors +0807.0237 Theory +0807.0764 Probability +0807.1518 +0807.5063 Instrumentation and Detectors +0808.1860 Logic +0808.2238 Phenomenology +0808.3706 Statistical Mechanics +0808.4157 +0809.1317 Strongly Correlated Electrons +0809.1612 Probability +0810.0320 +0810.0526 +0810.1519 +0810.3074 +0810.3376 +0810.4299 Theory +0810.4435 +0810.4526 Lattice +0810.4589 +0810.5500 Phenomenology +0810.5526 Phenomenology +0811.0022 +0811.0187 Instrumentation and Detectors +0811.0244 +0811.0415 +0811.0533 Phenomenology +0811.0721 Phenomenology +0811.1630 Phenomenology +0811.1702 +0811.1964 Lattice +0811.2081 Theory +0811.2357 +0811.2376 +0811.2730 Lattice +0811.2864 Disordered Systems and Neural Networks +0811.2919 +0811.3056 Theory +0811.3553 Phenomenology +0811.3601 +0811.4120 Instrumentation and Detectors +0811.4166 Theory +0811.4512 Phenomenology +0811.4589 +0811.4590 Phenomenology +0811.4657 Theory +0812.0323 Phenomenology +0812.0404 Phenomenology +0812.0859 +0812.0988 +0812.1038 +0812.1083 Phenomenology +0812.1130 Phenomenology +0812.1460 Phenomenology +0812.1499 Phenomenology +0812.1867 Lattice +0812.1905 Phenomenology +0812.2183 Phenomenology +0812.2199 Theory +0812.2418 Lattice +0812.2427 Phenomenology +0812.2631 Phenomenology +0812.2723 +0812.2745 Phenomenology +0812.2790 Mesoscale and Nanoscale Physics +0812.2831 Phenomenology +0812.2895 Lattice +0812.2896 Phenomenology +0812.2898 Theory +0812.2908 +0812.2966 Phenomenology +0812.2980 +0812.3014 Algebraic Geometry +0812.3061 Phenomenology +0812.3065 +0812.3073 +0812.3077 Phenomenology +0812.3114 Phenomenology +0812.3122 +0812.3172 Theory +0812.3183 Phenomenology +0812.3218 Phenomenology +0812.3225 Lattice +0812.3261 Lattice +0812.3325 Phenomenology +0812.3337 Theory +0812.3357 Phenomenology +0812.3786 Lattice +0812.3842 Theory +0812.3858 Superconductivity +0812.3926 Phenomenology +0812.3942 Phenomenology +0812.4026 Theory +0812.4039 Superconductivity +0812.4041 +0812.4165 Phenomenology +0812.4196 Phenomenology +0812.4305 +0812.4488 Lattice +0812.4627 Information Theory +0812.4633 Phenomenology +0812.4659 Theory +0812.4976 Phenomenology +0901.0051 High Energy Astrophysical Phenomena +0901.0388 +0901.0519 High Energy Astrophysical Phenomena +0901.0680 High Energy Astrophysical Phenomena +0901.0822 Lattice +0901.0916 Cosmology and Nongalactic Astrophysics +0901.1035 Phenomenology +0901.1089 Astrophysics of Galaxies +0901.2169 Experiment +0901.2260 Phenomenology +0901.2406 Phenomenology +0901.2456 Theory +0901.2535 High Energy Astrophysical Phenomena +0901.2853 Phenomenology +0901.2928 High Energy Astrophysical Phenomena +0901.2964 Phenomenology +0901.2978 +0901.3023 Lattice +0901.3171 High Energy Astrophysical Phenomena +0901.3174 High Energy Astrophysical Phenomena +0901.3495 Phenomenology +0901.3826 High Energy Astrophysical Phenomena +0901.3976 Superconductivity +0901.4043 Phenomenology +0901.4058 High Energy Astrophysical Phenomena +0901.4217 Solar and Stellar Astrophysics +0901.4246 Theory +0901.4257 Lattice +0901.4371 Instrumentation and Detectors +0901.4403 Category Theory +0901.4851 Cosmology and Nongalactic Astrophysics +0901.4920 High Energy Astrophysical Phenomena +0901.4973 High Energy Astrophysical Phenomena +0902.0233 High Energy Astrophysical Phenomena +0902.0263 High Energy Astrophysical Phenomena +0902.0309 Lattice +0902.0479 Theory +0902.0934 Other Condensed Matter +0902.1226 High Energy Astrophysical Phenomena +0902.1322 History and Philosophy of Physics +0902.1522 High Energy Astrophysical Phenomena +0902.1830 High Energy Astrophysical Phenomena +0902.1838 High Energy Astrophysical Phenomena +0902.1984 Cosmology and Nongalactic Astrophysics +0902.2015 +0902.2134 High Energy Astrophysical Phenomena +0902.2297 Disordered Systems and Neural Networks +0902.2713 Instrumentation and Methods for Astrophysics +0902.2874 Astrophysics of Galaxies +0902.3129 High Energy Astrophysical Phenomena +0902.3609 +0902.4049 Disordered Systems and Neural Networks +0902.4094 Mesoscale and Nanoscale Physics +0902.4133 +0902.4319 Astrophysics of Galaxies +0902.4321 Lattice +0902.4431 High Energy Astrophysical Phenomena +0902.4539 Astrophysics of Galaxies +0902.4710 Cosmology and Nongalactic Astrophysics +0902.4808 Strongly Correlated Electrons +0903.0251 Theory +0903.0580 High Energy Astrophysical Phenomena +0903.0991 Solar and Stellar Astrophysics +0903.1192 High Energy Astrophysical Phenomena +0903.1824 High Energy Astrophysical Phenomena +0903.2066 Instrumentation and Detectors +0903.2483 Instrumentation and Methods for Astrophysics +0903.2998 Cosmology and Nongalactic Astrophysics +0903.3234 Theory +0903.3890 Phenomenology +0903.4002 Astrophysics of Galaxies +0903.4126 Optics +0903.5256 +0903.5363 Instrumentation and Methods for Astrophysics +0903.5544 Cosmology and Nongalactic Astrophysics +0904.0417 +0904.0552 Instrumentation and Detectors +0904.0581 Probability +0904.1132 Solar and Stellar Astrophysics +0904.1825 Solar and Stellar Astrophysics +0904.2020 Solar and Stellar Astrophysics +0904.2187 High Energy Astrophysical Phenomena +0904.2210 Cosmology and Nongalactic Astrophysics +0904.2304 Phenomenology +0904.2573 Solar and Stellar Astrophysics +0904.2665 Phenomenology +0904.2699 +0904.3096 Cosmology and Nongalactic Astrophysics +0904.3133 Astrophysics of Galaxies +0904.3230 High Energy Astrophysical Phenomena +0904.3378 Phenomenology +0904.3494 Astrophysics of Galaxies +0904.3568 Solar and Stellar Astrophysics +0904.4208 Cosmology and Nongalactic Astrophysics +0904.4263 Cosmology and Nongalactic Astrophysics +0904.4423 Earth and Planetary Astrophysics +0904.4425 Commutative Algebra +0904.4431 Phenomenology +0904.4572 +0905.0166 +0905.1434 Symplectic Geometry +0905.3566 Astrophysics of Galaxies +0905.3985 +0905.4300 Solar and Stellar Astrophysics +0906.1498 Other Condensed Matter +0906.3034 Solar and Stellar Astrophysics +0906.3788 Solar and Stellar Astrophysics +0906.3949 Phenomenology +0906.3959 Earth and Planetary Astrophysics +0906.4087 Algebraic Topology +0906.4213 Representation Theory +0906.4278 Cosmology and Nongalactic Astrophysics +0906.4339 Cosmology and Nongalactic Astrophysics +0906.4345 Dynamical Systems +0906.4347 Earth and Planetary Astrophysics +0906.4353 Probability +0906.4354 Materials Science +0906.4357 Commutative Algebra +0906.4366 Earth and Planetary Astrophysics +0906.4369 Earth and Planetary Astrophysics +0906.4371 General Physics +0906.4372 Cosmology and Nongalactic Astrophysics +0906.4376 Rings and Algebras +0906.4377 Algebraic Geometry +0906.4381 Number Theory +0906.4383 Number Theory +0906.4391 Machine Learning +0906.4394 Soft Condensed Matter +0906.4401 Rings and Algebras +0906.4406 Analysis of PDEs +0906.4408 General Physics +0906.4409 Complex Variables +0906.4410 Astrophysics of Galaxies +0906.4415 Cryptography and Security +0906.4420 +0906.4421 Representation Theory +0906.4424 Number Theory +0906.4429 Number Theory +0906.4436 Symplectic Geometry +0906.4438 Analysis of PDEs +0906.4445 Rings and Algebras +0906.4453 +0906.4460 Numerical Analysis +0906.4472 +0906.4473 Analysis of PDEs +0906.4474 Programming Languages +0906.4477 Differential Geometry +0906.4478 Algebraic Geometry +0906.4480 +0906.4484 Strongly Correlated Electrons +0906.4485 Cosmology and Nongalactic Astrophysics +0906.4486 Differential Geometry +0906.4490 Experiment +0906.4492 Logic in Computer Science +0906.4505 Commutative Algebra +0906.4510 Differential Geometry +0906.4522 Classical Analysis and ODEs +0906.4535 Spectral Theory +0906.4540 Complex Variables +0906.4543 Lattice +0906.4544 +cond-mat/0603172 Other Condensed Matter +cs/0306101 Software Engineering +hep-ex/0606034 Experiment +hep-ph/0304141 Phenomenology +hep-ph/0407269 Phenomenology +hep-ph/0512257 Phenomenology +nucl-ex/0509030 +nucl-ex/0703033 +nucl-th/9910004 +0705.1601 Metric Geometry +0707.3944 +0709.2491 Theory +0709.2732 Phenomenology +0709.2793 Combinatorics +0709.2888 Theory +0709.2894 Theory +0709.2942 Theory +0709.2991 Theory +0709.3487 Theory +0709.3738 Theory +0709.3806 Theory +0709.3813 Theory +0709.3968 Theory +0709.4033 Theory +0710.1270 Theory +0710.1296 Theory +0710.1302 Theory +0710.1391 Theory +0710.1479 Theory +0710.1538 Theory +0710.1680 Theory +0710.1684 Theory +0710.5153 Phenomenology +0711.4060 +0712.1156 +0712.1925 +0802.0739 Phenomenology +0803.1335 Phenomenology +0804.1125 Theory +0804.3925 Phenomenology +0805.2103 Disordered Systems and Neural Networks +0806.2720 Phenomenology +0806.2902 Geometric Topology +0807.1522 Phenomenology +0807.3361 +0808.1911 Theory +0808.2183 Experiment +0809.0389 Mesoscale and Nanoscale Physics +0809.0632 Atmospheric and Oceanic Physics +0809.2058 Superconductivity +0809.2237 Superconductivity +0809.2340 Dynamical Systems +0809.3791 +0810.0028 Theory +0810.2627 Soft Condensed Matter +0810.3159 Theory +0810.4762 Phenomenology +0810.4944 Theory +0810.5283 Fluid Dynamics +0811.1341 Theory +0811.3647 Superconductivity +0811.4445 Phenomenology +0812.0045 Geometric Topology +0812.0629 Computer Science and Game Theory +0812.1327 Analysis of PDEs +0812.3367 Theory +0812.3671 Applications +0812.4959 Atomic Physics +0812.5106 Phenomenology +0901.0113 Theory +0901.0396 Theory +0901.0432 Strongly Correlated Electrons +0901.1483 +0901.2141 Theory +0901.2195 Theory +0901.2424 +0901.2638 Theory +0901.3266 Phenomenology +0901.4035 Lattice +0901.4105 Phenomenology +0901.4206 Biological Physics +0901.4259 Strongly Correlated Electrons +0901.4440 Phenomenology +0901.4583 +0901.4769 Quantum Gases +0901.4945 Theory +0902.0016 Phenomenology +0902.0020 Computational Physics +0902.0792 Phenomenology +0902.0855 +0902.1300 Phenomenology +0902.1415 +0902.1471 Theory +0902.1676 Theory +0902.1801 Materials Science +0902.1906 Theory +0902.2001 +0902.2006 Cosmology and Nongalactic Astrophysics +0902.2027 Strongly Correlated Electrons +0902.2305 Instrumentation and Detectors +0902.3122 Phenomenology +0902.3271 Phenomenology +0902.3463 Phenomenology +0902.3560 Theory +0902.3854 Theory +0902.4541 +0902.4903 Phenomenology +0903.0754 Phenomenology +0903.1268 Materials Science +0903.1798 Phenomenology +0903.2019 Theory +0903.3241 Phenomenology +0903.3354 Theory +0903.3364 Solar and Stellar Astrophysics +0903.4097 Differential Geometry +0903.4107 Theory +0903.4249 Phenomenology +0903.4471 Theory +0903.5483 Theory +0903.5530 Disordered Systems and Neural Networks +0904.0463 +0904.0885 Other Condensed Matter +0904.1057 +0904.1834 Experiment +0904.1874 Theory +0904.2215 Superconductivity +0904.2996 +0904.3338 Phenomenology +0904.3644 Theory +0904.4337 Superconductivity +0905.0025 High Energy Astrophysical Phenomena +0905.0731 Algebraic Topology +0905.2110 Atomic Physics +0905.3428 Learning +0905.4038 Strongly Correlated Electrons +0905.4187 Number Theory +0906.0110 Experiment +0906.2054 Mesoscale and Nanoscale Physics +0906.2684 +0906.2698 High Energy Astrophysical Phenomena +0906.2722 Number Theory +0906.2900 Cosmology and Nongalactic Astrophysics +0906.3051 Computational Complexity +0906.3124 Statistics Theory +0906.3294 Superconductivity +0906.3298 Differential Geometry +0906.3300 Spectral Theory +0906.3302 Differential Geometry +0906.3303 Optimization and Control +0906.3306 Computational Complexity +0906.3317 +0906.3319 Populations and Evolution +0906.3320 Experiment +0906.3323 Computer Vision and Pattern Recognition +0906.3324 Superconductivity +0906.3327 Computational Complexity +0906.3331 Chemical Physics +0906.3333 +0906.3334 Commutative Algebra +0906.3336 Differential Geometry +0906.3348 Optimization and Control +0906.3352 Information Theory +0906.3356 History and Philosophy of Physics +0906.3363 Optimization and Control +0906.3364 Cell Behavior +0906.3367 Mesoscale and Nanoscale Physics +0906.3377 Metric Geometry +0906.3379 Experiment +0906.3385 Combinatorics +0906.3389 Physics and Society +0906.3404 Functional Analysis +0906.3405 Combinatorics +0906.3407 Differential Geometry +0906.3409 Group Theory +0906.3410 Information Theory +0906.3412 Group Theory +0906.3416 Dynamical Systems +0906.3419 Quantum Algebra +0906.3423 Software Engineering +0906.3425 Risk Management +0906.3426 +0906.3428 Combinatorics +0906.3438 Numerical Analysis +0906.3441 Functional Analysis +0906.3445 Combinatorics +0906.3446 Statistical Mechanics +0906.3453 Number Theory +0906.3455 Probability +0906.3457 Phenomenology +0906.3466 Algebraic Geometry +0906.3467 Functional Analysis +0906.3474 Phenomenology +0906.3481 Classical Analysis and ODEs +0906.3483 Data Structures and Algorithms +0906.3486 Instrumentation and Methods for Astrophysics +0906.3490 Data Structures and Algorithms +0906.3500 Strongly Correlated Electrons +0906.3501 Methodology +0906.3506 Optimization and Control +0906.3509 Exactly Solvable and Integrable Systems +astro-ph/9508156 +astro-ph/9605094 +astro-ph/9606047 +astro-ph/9707214 +gr-qc/0703032 +gr-qc/9906082 +hep-ex/0607049 Experiment +hep-ph/0402282 Phenomenology +hep-ph/0607198 Phenomenology +hep-ph/0703305 Phenomenology +hep-ph/9702433 Phenomenology +hep-ph/9703209 Phenomenology +hep-ph/9703443 Phenomenology +hep-ph/9710526 Phenomenology +hep-ph/9803498 Phenomenology +hep-ph/9807278 Phenomenology +hep-ph/9904502 Phenomenology +hep-ph/9907435 Phenomenology +hep-th/0302108 Theory +hep-th/0602290 Theory +hep-th/0609192 Theory +math/0104077 Algebraic Geometry +math/0304407 Differential Geometry +math/0404426 Differential Geometry +math/0607031 Probability +math/0703679 Differential Geometry +physics/0310137 Instrumentation and Detectors +quant-ph/0607211 +quant-ph/9902038 +0705.1732 Algebraic Geometry +0805.3621 Algebraic Geometry +0805.3738 Commutative Algebra +0806.0987 +0806.3053 Functional Analysis +0807.4661 Commutative Algebra +0808.2737 +0810.4053 Statistical Mechanics +0812.1086 Neurons and Cognition +0901.0451 Statistical Mechanics +0901.0719 Superconductivity +0901.2452 Mesoscale and Nanoscale Physics +0902.1216 Representation Theory +0902.3660 Solar and Stellar Astrophysics +0903.5366 Quantum Gases +0904.0102 Number Theory +0904.0658 Mesoscale and Nanoscale Physics +0904.1054 +0904.3571 Biological Physics +0904.3727 Physics and Society +cond-mat/0509175 Strongly Correlated Electrons +hep-ex/0510028 Experiment +hep-ex/0512027 Experiment +hep-lat/0509080 Lattice +hep-lat/0509081 Lattice +hep-lat/0509108 Lattice +hep-lat/0509123 Lattice +hep-lat/0509145 Lattice +hep-lat/0509147 Lattice +hep-lat/0509161 Lattice +hep-lat/0510049 Lattice +hep-lat/0510095 Lattice +hep-lat/0510102 Lattice +hep-lat/0511006 Lattice +hep-ph/0510314 Phenomenology +hep-ph/0511096 Phenomenology +hep-ph/0511235 Phenomenology +hep-ph/0511322 Phenomenology +hep-ph/0512009 Phenomenology +hep-ph/0512021 Phenomenology +hep-ph/0512023 Phenomenology +hep-ph/0512031 Phenomenology +hep-ph/0512198 Phenomenology +math/0404141 Differential Geometry +math/0409458 Number Theory +math/0612475 Group Theory +0704.1192 K-Theory and Homology +0706.0958 +0706.3366 Atmospheric and Oceanic Physics +0706.4182 Experiment +0708.2485 Disordered Systems and Neural Networks +0708.2762 Instrumentation and Detectors +0709.3932 +0710.1516 +0710.2497 Category Theory +0710.4741 Fluid Dynamics +0712.4197 Other Condensed Matter +0805.2050 Classical Physics +0806.2612 Theory +0807.0299 +0807.0305 +0807.1997 Learning +0807.3636 Other Condensed Matter +0808.0327 Dynamical Systems +0808.2437 +0808.3127 Mesoscale and Nanoscale Physics +0808.3870 Quantitative Methods +0809.1932 +0809.4496 Functional Analysis +0810.0810 Theory +0810.1481 Logic in Computer Science +0810.3336 Plasma Physics +0810.3628 +0811.2591 +0811.4259 Computational Physics +0812.0194 Statistical Mechanics +0812.1972 +0812.2073 +0812.2352 Theory +0812.2823 Optics +0812.2897 Theory +0812.4499 +0901.0468 +0901.2631 Phenomenology +0901.2842 Other Condensed Matter +0901.4572 Optics +0901.4807 +0902.2389 Mesoscale and Nanoscale Physics +0902.2540 Strongly Correlated Electrons +0902.2727 Other Condensed Matter +0902.2762 Statistical Mechanics +0902.2910 Theory +0902.3119 Strongly Correlated Electrons +0902.3996 Theory +0903.2490 Rings and Algebras +0903.4747 Theory +0904.0027 Computers and Society +0904.0449 Theory +0904.0468 Cosmology and Nongalactic Astrophysics +0904.0849 Materials Science +0904.1576 Instrumentation and Detectors +0904.2601 Analysis of PDEs +0904.4911 Data Structures and Algorithms +0905.0967 Materials Science +0905.1040 +0905.1685 Analysis of PDEs +0905.1698 Cosmology and Nongalactic Astrophysics +0905.1713 Functional Analysis +0905.1718 Quantitative Methods +0905.1725 Algebraic Geometry +0905.1727 +0905.1734 Soft Condensed Matter +0905.1737 Discrete Mathematics +0905.1739 Strongly Correlated Electrons +0905.1741 Algebraic Geometry +0905.1744 Distributed, Parallel, and Cluster Computing +0905.1745 Information Theory +0905.1749 Instrumentation and Methods for Astrophysics +0905.1750 +0905.1753 Number Theory +0905.1755 Databases +0905.1758 Algebraic Geometry +0905.1760 Representation Theory +0905.1769 Discrete Mathematics +0905.1779 Algebraic Geometry +0905.1786 Distributed, Parallel, and Cluster Computing +0905.1788 Materials Science +0905.1790 Complex Variables +0905.1791 Spectral Theory +0905.1796 Representation Theory +0905.1798 Analysis of PDEs +0905.1802 Phenomenology +0905.1809 K-Theory and Homology +0905.1813 Group Theory +0905.1814 Solar and Stellar Astrophysics +0905.1815 General Physics +0905.1820 Computational Geometry +0905.1821 Disordered Systems and Neural Networks +0905.1823 Differential Geometry +0905.1824 Algebraic Geometry +0905.1829 Statistical Mechanics +0905.1830 Experiment +0905.1839 Differential Geometry +0905.1849 +0905.1850 +0905.1859 Popular Physics +0905.1862 Optimization and Control +0905.1866 Solar and Stellar Astrophysics +0905.1869 Number Theory +0905.1871 Strongly Correlated Electrons +0905.1876 Fluid Dynamics +0905.1877 Experiment +0905.1878 Phenomenology +0905.1881 Complex Variables +0905.1883 Information Theory +0905.1885 Group Theory +0905.1890 +0905.1898 Rings and Algebras +0905.1904 +0905.1905 Complex Variables +0905.1906 Data Structures and Algorithms +0905.1916 Populations and Evolution +0905.1917 +0905.1921 Earth and Planetary Astrophysics +0905.1926 Adaptation and Self-Organizing Systems +0905.1936 Earth and Planetary Astrophysics +0905.1937 Analysis of PDEs +0905.1940 Analysis of PDEs +0905.1942 Combinatorics +astro-ph/0004183 +astro-ph/0306325 +astro-ph/0307291 +astro-ph/0307416 +astro-ph/0408561 +astro-ph/9905028 +gr-qc/0404123 +hep-ph/0508065 Phenomenology +hep-th/0312088 Theory +hep-th/0404051 Theory +hep-th/0603243 Theory +math/0305369 Number Theory +math/0608538 Metric Geometry +nucl-ex/0210017 +nucl-ex/0412024 +physics/0010047 Fluid Dynamics +0706.1044 Statistical Mechanics +0706.1906 Statistical Mechanics +0708.1596 Number Theory +0710.1910 General Physics +0712.0887 Soft Condensed Matter +0801.3199 Numerical Analysis +0801.4773 Number Theory +0802.3218 Theory +0804.2981 +0805.0584 Group Theory +0805.1639 +0806.1457 Number Theory +0808.1727 +0808.2046 +0808.2906 Mesoscale and Nanoscale Physics +0809.4850 Statistical Mechanics +0810.0672 Mesoscale and Nanoscale Physics +0810.4905 Strongly Correlated Electrons +0811.3481 +0811.4269 +0811.4316 +0811.4559 Phenomenology +0812.1871 +0812.4451 Phenomenology +0812.4778 +0901.2647 +0901.3227 Superconductivity +0901.3546 Algebraic Geometry +0903.0108 Strongly Correlated Electrons +0903.1189 Group Theory +0903.1933 Soft Condensed Matter +0903.1934 Statistical Mechanics +0903.3054 Strongly Correlated Electrons +0903.4545 Robotics +0904.0025 Solar and Stellar Astrophysics +0904.0236 Other Condensed Matter +0904.0628 Optimization and Control +0904.1463 Optics +0904.1644 Phenomenology +0904.2858 Strongly Correlated Electrons +0904.4639 Theory +0904.4921 Quantum Algebra +0905.0017 +0905.0137 Statistical Mechanics +0905.3248 Strongly Correlated Electrons +0905.3259 Phenomenology +0905.3930 Optics +0906.0201 Solar and Stellar Astrophysics +0906.1282 Data Analysis, Statistics and Probability +0906.1285 Data Analysis, Statistics and Probability +0906.1294 Lattice +0906.1304 Instrumentation and Detectors +0906.3139 Complex Variables +0906.3383 Atmospheric and Oceanic Physics +0906.3625 Atmospheric and Oceanic Physics +0906.3708 Superconductivity +0907.1028 Strongly Correlated Electrons +0907.1429 Geometric Topology +0907.1449 +0907.1479 Differential Geometry +0907.2090 Information Theory +0907.3049 Functional Analysis +0907.3914 +0908.1232 General Physics +0908.2268 Populations and Evolution +0908.2481 +0908.2544 Other Condensed Matter +0908.2632 +0908.2658 Experiment +0908.2737 Group Theory +0908.2820 +0908.2852 Cosmology and Nongalactic Astrophysics +0908.2953 Biological Physics +0908.3196 Portfolio Management +0908.3200 Optics +0908.3205 +0908.3209 Instrumentation and Detectors +0908.3210 Analysis of PDEs +0908.3211 Analysis of PDEs +0908.3215 Cosmology and Nongalactic Astrophysics +0908.3219 General Physics +0908.3224 +0908.3226 High Energy Astrophysical Phenomena +0908.3233 Discrete Mathematics +0908.3234 Information Theory +0908.3238 High Energy Astrophysical Phenomena +0908.3243 Algebraic Topology +0908.3244 General Physics +0908.3245 Functional Analysis +0908.3248 Combinatorics +0908.3252 Computer Vision and Pattern Recognition +0908.3265 Computer Science and Game Theory +0908.3266 Classical Analysis and ODEs +0908.3269 Networking and Internet Architecture +0908.3271 Other Computer Science +0908.3276 Phenomenology +0908.3279 Soft Condensed Matter +0908.3282 General Physics +0908.3286 Symplectic Geometry +0908.3288 +0908.3294 Earth and Planetary Astrophysics +0908.3302 Probability +0908.3305 Combinatorics +0908.3306 Representation Theory +0908.3310 +0908.3311 Materials Science +0908.3315 Formal Languages and Automata Theory +0908.3316 Dynamical Systems +0908.3317 Computer Science and Game Theory +0908.3321 Machine Learning +0908.3324 Combinatorics +0908.3325 Algebraic Topology +0908.3326 Dynamical Systems +0908.3328 Earth and Planetary Astrophysics +0908.3329 Combinatorics +0908.3331 Combinatorics +0908.3339 Probability +0908.3341 Phenomenology +0908.3343 Instrumentation and Methods for Astrophysics +0908.3345 Cellular Automata and Lattice Gases +0908.3353 Analysis of PDEs +0908.3361 Human-Computer Interaction +0908.3362 Human-Computer Interaction +0908.3364 Probability +0908.3365 Disordered Systems and Neural Networks +0908.3382 Statistics Theory +0908.3386 Optimization and Control +0908.3389 Statistics Theory +0908.3394 Artificial Intelligence +0908.3397 Statistics Theory +0908.3405 General Mathematics +0908.3408 +0908.3410 Experiment +0908.3412 Mesoscale and Nanoscale Physics +0908.3413 Statistics Theory +0908.3418 Statistics Theory +0908.3419 Differential Geometry +0908.3424 Earth and Planetary Astrophysics +0908.3428 Statistics Theory +0908.3429 Analysis of PDEs +0908.3430 Quantum Algebra +0908.3432 Neurons and Cognition +0908.3435 Statistics Theory +0908.3438 Statistics Theory +0908.3440 Statistics Theory +0908.3444 Analysis of PDEs +0908.3445 Cosmology and Nongalactic Astrophysics +0908.3455 Data Structures and Algorithms +0908.3456 Combinatorics +0908.3458 Machine Learning +0908.3459 Data Structures and Algorithms +0908.3462 Probability +0908.3466 Analysis of PDEs +0908.3473 Combinatorics +0908.3476 Cosmology and Nongalactic Astrophysics +0908.3478 Cosmology and Nongalactic Astrophysics +astro-ph/9309048 +cs/0502030 Computational Complexity +cs/0504008 Programming Languages +cs/0504025 Programming Languages +cs/0611147 Computational Complexity +cs/0702119 Discrete Mathematics +cs/0702156 Networking and Internet Architecture +gr-qc/0008009 +hep-ph/0003096 Phenomenology +hep-ph/0004111 Phenomenology +hep-ph/0006001 Phenomenology +hep-ph/0006061 Phenomenology +hep-ph/0009038 Phenomenology +hep-ph/0012212 Phenomenology +hep-ph/0107192 Phenomenology +hep-ph/0109260 Phenomenology +hep-ph/0404163 Phenomenology +hep-ph/9207219 Phenomenology +hep-ph/9210280 Phenomenology +hep-ph/9211228 Phenomenology +hep-ph/9211286 Phenomenology +hep-ph/9302234 Phenomenology +hep-ph/9304235 Phenomenology +hep-ph/9306226 Phenomenology +hep-ph/9308266 Phenomenology +hep-ph/9311277 Phenomenology +hep-ph/9406254 Phenomenology +hep-ph/9406427 Phenomenology +hep-ph/9408345 Phenomenology +hep-ph/9601261 Phenomenology +hep-ph/9605264 Phenomenology +hep-ph/9609409 Phenomenology +hep-ph/9609524 Phenomenology +hep-ph/9610443 Phenomenology +hep-ph/9611436 Phenomenology +hep-ph/9611437 Phenomenology +hep-ph/9704378 Phenomenology +hep-ph/9707331 Phenomenology +hep-ph/9710328 Phenomenology +hep-ph/9711203 Phenomenology +hep-ph/9801384 Phenomenology +hep-ph/9802204 Phenomenology +hep-ph/9902217 Phenomenology +hep-ph/9903426 Phenomenology +hep-ph/9910294 Phenomenology +hep-th/9408142 Theory +hep-th/9610223 Theory +math/0603378 Statistics Theory +math/0604215 Probability +nucl-ex/0511055 +physics/0006040 General Physics +0706.2332 Phenomenology +0708.1285 Theory +0708.1310 Theory +0708.1324 Statistical Mechanics +0708.1391 Theory +0708.1399 Theory +0708.1410 Theory +0708.1469 Theory +0708.1611 Theory +0708.1625 Theory +0708.1679 Theory +0708.1776 Probability +0708.1873 Theory +0708.1916 Theory +0708.2058 Theory +0708.2375 Chaotic Dynamics +0708.2386 Theory +0708.2392 Theory +0708.2402 Theory +0708.2463 Theory +0708.2591 Theory +0708.2627 Theory +0708.2860 +0708.2970 Theory +0708.3170 Theory +0708.3199 Theory +0708.3233 Theory +0708.3284 Theory +0708.3695 Theory +0708.3715 Theory +0708.3806 Theory +0708.4414 Theory +0709.0245 Theory +0709.0257 Theory +0709.0261 Theory +0709.0293 Theory +0709.0295 Theory +0709.1076 Theory +0709.1482 Theory +0709.1547 Theory +0709.1551 Theory +0709.1554 Theory +0709.1805 Theory +0709.1838 Theory +0709.2186 Theory +0709.2708 Theory +0709.2810 Theory +0709.2856 Theory +0709.3106 Theory +0709.3943 Theory +0710.5149 Representation Theory +0712.0064 Biological Physics +0801.0551 Probability +0803.3850 Information Theory +0803.4016 Mesoscale and Nanoscale Physics +0805.2673 Classical Analysis and ODEs +0806.2066 Chaotic Dynamics +0807.2703 +0807.3858 +0808.2758 +0809.1640 Number Theory +0809.1876 Theory +0809.2819 Atomic Physics +0809.4213 +0809.4336 Category Theory +0810.0002 Mesoscale and Nanoscale Physics +0810.0934 Phenomenology +0810.3896 Algebraic Topology +0810.4198 Mesoscale and Nanoscale Physics +0811.1331 Group Theory +0811.2280 Algebraic Topology +0811.2969 Phenomenology +0811.3076 +0812.2420 Strongly Correlated Electrons +0812.4294 Materials Science +0901.1349 Mesoscale and Nanoscale Physics +0901.1415 Superconductivity +0901.2102 Superconductivity +0901.2755 Statistical Mechanics +0901.2804 Information Theory +0902.1423 +0902.1563 Dynamical Systems +0902.2037 Neurons and Cognition +0902.2738 Statistical Mechanics +0902.2987 Theory +0902.3588 Superconductivity +0902.3848 Strongly Correlated Electrons +0903.0427 +0903.0691 Group Theory +0903.2296 Chaotic Dynamics +0903.3783 Superconductivity +0903.4658 Phenomenology +0904.0608 Differential Geometry +0904.1796 Phenomenology +0904.2018 Networking and Internet Architecture +0904.2072 Analysis of PDEs +0904.3442 Cosmology and Nongalactic Astrophysics +0904.4234 Materials Science +0904.4796 Strongly Correlated Electrons +0905.2136 Cosmology and Nongalactic Astrophysics +0905.2430 +0905.2481 Quantitative Methods +0905.3565 Statistical Mechanics +0905.4711 Algebraic Geometry +0906.0660 +0906.0837 +0906.0949 Theory +0906.1365 Experiment +0906.1444 Applications +0906.1512 General Finance +0906.1749 Statistical Mechanics +0906.1814 Learning +0906.1821 Experiment +0906.1825 Algebraic Geometry +0906.1827 Complex Variables +0906.1828 Numerical Analysis +0906.1829 Operator Algebras +0906.1831 Operator Algebras +0906.1832 Group Theory +0906.1836 Combinatorics +0906.1841 +0906.1842 Artificial Intelligence +0906.1844 Combinatorics +0906.1845 Software Engineering +0906.1848 +0906.1850 Theory +0906.1854 Strongly Correlated Electrons +0906.1856 Probability +0906.1857 Combinatorics +0906.1859 Statistics Theory +0906.1863 Computational Physics +0906.1865 Analysis of PDEs +0906.1870 Combinatorics +0906.1873 Cosmology and Nongalactic Astrophysics +0906.1874 General Physics +0906.1876 Statistical Mechanics +0906.1883 Functional Analysis +0906.1884 +0906.1885 +0906.1886 +0906.1888 Algebraic Geometry +0906.1891 +0906.1892 Probability +0906.1894 Quantum Gases +0906.1895 Mesoscale and Nanoscale Physics +0906.1896 Optics +0906.1897 Classical Physics +0906.1900 Neural and Evolutionary Computing +0906.1906 +0906.1912 Functional Analysis +0906.1928 +0906.1929 Phenomenology +0906.1930 Statistical Mechanics +0906.1931 Geophysics +0906.1942 +0906.1947 Distributed, Parallel, and Cluster Computing +0906.1961 Optics +0906.1963 Cryptography and Security +0906.1965 Phenomenology +0906.1966 Algebraic Geometry +0906.1975 Materials Science +0906.1980 Artificial Intelligence +0906.1981 +0906.1989 +0906.1993 Superconductivity +0906.1998 +astro-ph/9803086 +gr-qc/0110057 +gr-qc/0406012 +hep-ex/0501073 Experiment +hep-ex/9912029 Experiment +hep-th/0204102 Theory +math/0512133 Number Theory +math/0604389 Differential Geometry +math/0610071 Representation Theory +nucl-ex/0511052 +0706.0997 Disordered Systems and Neural Networks +0706.3347 Metric Geometry +0709.1042 Other Condensed Matter +0710.4268 Algebraic Geometry +0711.1539 Mesoscale and Nanoscale Physics +0711.4382 Combinatorics +0711.4774 Algebraic Geometry +0712.2557 Theory +0712.4100 +0802.1065 Materials Science +0805.3068 Lattice +0806.3984 +0807.2134 Phenomenology +0808.1743 Rings and Algebras +0808.3627 Category Theory +0809.0940 +0809.1053 Probability +0809.3074 +0809.4714 General Physics +0812.2227 Theory +0812.3512 +0901.1357 Combinatorics +0901.1766 Theory +0901.3835 Dynamical Systems +0901.4644 Symplectic Geometry +0901.4818 +0902.0419 Number Theory +0902.2262 Statistical Mechanics +0903.0199 Data Structures and Algorithms +0903.2888 Statistical Mechanics +0903.3876 +0903.4951 General Physics +0903.5263 Experiment +0904.0504 Other Condensed Matter +0904.2213 Phenomenology +0905.0525 Superconductivity +0905.0653 +0905.4026 +0906.1449 Mesoscale and Nanoscale Physics +0906.2189 High Energy Astrophysical Phenomena +0906.2347 High Energy Astrophysical Phenomena +0906.3203 Cosmology and Nongalactic Astrophysics +0906.4801 General Physics +0907.0043 Phenomenology +0907.0527 Cosmology and Nongalactic Astrophysics +0907.0828 Statistical Mechanics +0907.1077 Optics +0907.1212 Biological Physics +0907.1290 Analysis of PDEs +0907.1293 Physics and Society +0907.1304 Complex Variables +0907.1309 Differential Geometry +0907.1314 Operator Algebras +0907.1318 Analysis of PDEs +0907.1334 Computer Science and Game Theory +0907.1338 Combinatorics +0907.1339 Algebraic Geometry +0907.1341 Combinatorics +0907.1343 Cosmology and Nongalactic Astrophysics +0907.1351 Theory +0907.1353 +0907.1358 Experiment +0907.1359 Category Theory +0907.1361 Materials Science +0907.1366 Strongly Correlated Electrons +0907.1368 Applications +0907.1369 Data Structures and Algorithms +0907.1375 Distributed, Parallel, and Cluster Computing +0907.1382 Other Condensed Matter +0907.1386 Pattern Formation and Solitons +0907.1394 General Physics +0907.1397 Solar and Stellar Astrophysics +0907.1400 Materials Science +0907.1403 Dynamical Systems +0907.1406 Probability +0907.1414 General Physics +0907.1432 Information Theory +0907.1440 Differential Geometry +0907.1448 Solar and Stellar Astrophysics +0907.1452 +0907.1455 Physics and Society +0907.1456 Operator Algebras +0907.1459 +0907.1460 Strongly Correlated Electrons +0907.1464 Materials Science +0907.1465 Cosmology and Nongalactic Astrophysics +0907.1466 Theory +0907.1476 Classical Physics +0907.1480 Statistical Mechanics +0907.1481 Combinatorics +0907.1482 Computer Science and Game Theory +0907.1491 +0907.1495 Probability +0907.1498 Phenomenology +0907.1499 Symplectic Geometry +0907.1506 Algebraic Geometry +0907.1509 +0907.1518 Spectral Theory +0907.1519 Statistics Theory +0907.1521 General Physics +0907.1525 Analysis of PDEs +0907.1529 Rings and Algebras +0907.1531 Machine Learning +0907.1538 Strongly Correlated Electrons +0907.1539 +0907.1540 Logic in Computer Science +0907.1541 Solar and Stellar Astrophysics +0907.1545 Computer Vision and Pattern Recognition +0907.1547 Number Theory +0907.1552 Spectral Theory +0907.1557 +0907.1561 +0907.1565 +0907.1573 Strongly Correlated Electrons +0907.1576 +0907.1578 Quantum Algebra +0907.1582 Complex Variables +0907.1583 Combinatorics +0907.1585 Analysis of PDEs +0907.1598 Probability +0907.1601 Complex Variables +0907.1603 Optimization and Control +0907.1609 Dynamical Systems +0907.1610 Phenomenology +0907.1618 Probability +0907.1622 +0907.1624 Soft Condensed Matter +0907.1628 Phenomenology +0907.1632 Databases +0907.1633 Geometric Topology +0907.1634 Mesoscale and Nanoscale Physics +astro-ph/0003401 +astro-ph/0204238 +astro-ph/0303038 +astro-ph/0308197 +astro-ph/0409749 +astro-ph/0601472 +cond-mat/0211531 +cond-mat/0304614 +cond-mat/0305634 +cond-mat/9607192 +cond-mat/9803389 +cond-mat/9807160 +cond-mat/9808330 +gr-qc/0210045 +gr-qc/9302027 +gr-qc/9307027 +gr-qc/9508014 +hep-ph/0007266 Phenomenology +hep-ph/0306112 Phenomenology +hep-ph/0606108 Phenomenology +hep-ph/9910506 Phenomenology +hep-th/0110148 Theory +hep-th/0112019 Theory +hep-th/0409162 Theory +hep-th/0411140 Theory +math/0407152 Rings and Algebras +math/0408420 Rings and Algebras +math/0412408 Metric Geometry +math/0505547 Algebraic Geometry +math/0507548 Rings and Algebras +math/0601640 Algebraic Geometry +math/0612119 Algebraic Geometry +math/0612493 Quantum Algebra +math/0703402 Rings and Algebras +nlin/0004018 Exactly Solvable and Integrable Systems +nlin/0603062 Exactly Solvable and Integrable Systems +nucl-ex/0502005 +nucl-th/0305075 +nucl-th/0403001 +nucl-th/0407021 +quant-ph/0701063 +0704.3254 Rings and Algebras +0707.0731 Phenomenology +0708.2009 Strongly Correlated Electrons +0709.1177 +0709.4502 +0710.3137 +0710.4364 +0711.2802 Operator Algebras +0712.3640 Atomic Physics +0801.0508 Classical Physics +0801.1929 Metric Geometry +0801.3373 Commutative Algebra +0802.1784 Theory +0803.3373 Algebraic Geometry +0804.2676 Phenomenology +0804.4861 +0806.1507 Algebraic Geometry +0806.4239 +0807.0879 +0807.1038 Phenomenology +0807.2570 Theory +0807.3060 Phenomenology +0807.4697 +0807.4754 +0808.3460 Superconductivity +0809.0627 Geophysics +0809.1196 +0809.2779 +0809.2998 +0809.4492 Phenomenology +0810.0479 Data Analysis, Statistics and Probability +0810.1286 +0810.1457 +0810.1804 Algebraic Geometry +0810.2758 +0811.1396 Theory +0811.1796 Algebraic Geometry +0811.1887 Phenomenology +0811.1916 +0811.2173 Experiment +0811.2316 Atomic Physics +0811.2624 Classical Analysis and ODEs +0811.3091 Materials Science +0811.3097 Statistical Mechanics +0811.3889 Probability +0812.0518 Materials Science +0812.1063 +0812.2642 Differential Geometry +0812.3305 Mesoscale and Nanoscale Physics +0812.3887 Accelerator Physics +0812.4452 Strongly Correlated Electrons +0901.0151 Experiment +0901.3823 Phenomenology +0901.3829 +0901.3848 Theory +0901.3884 +0901.4067 Dynamical Systems +0901.4073 Theory +0901.4092 Functional Analysis +0901.4461 Experiment +0901.4486 Experiment +0901.4488 Experiment +0901.4530 +0902.0160 Phenomenology +0902.2085 Astrophysics of Galaxies +0902.2566 Theory +0902.4313 Phenomenology +0902.4418 +0902.4498 +0903.3170 +0903.4780 Optics +0903.5443 Experiment +0904.0810 Geometric Topology +0904.0813 Information Theory +0904.1002 Data Structures and Algorithms +0904.1004 Algebraic Geometry +0904.1006 Algebraic Topology +0904.1013 Algebraic Topology +0904.1020 High Energy Astrophysical Phenomena +0904.1022 Geometric Topology +0904.1028 Number Theory +0904.1030 Algebraic Geometry +0904.1031 Fluid Dynamics +0904.1036 Dynamical Systems +0904.1040 +0904.1045 Representation Theory +0904.1051 Number Theory +0904.1053 Number Theory +0904.1056 Number Theory +0904.1060 Analysis of PDEs +0904.1063 Populations and Evolution +0904.1067 Risk Management +0904.1072 Mesoscale and Nanoscale Physics +0904.1075 Classical Physics +0904.1076 Classical Physics +0904.1080 +0904.1081 Operator Algebras +0904.1083 Other Computer Science +0904.1084 Other Computer Science +0904.1085 Operator Algebras +0904.1086 Commutative Algebra +0904.1094 Solar and Stellar Astrophysics +0904.1110 Cryptography and Security +0904.1125 +0904.1126 Cosmology and Nongalactic Astrophysics +0904.1128 +0904.1129 Analysis of PDEs +0904.1131 Computational Finance +0904.1137 Superconductivity +0904.1141 Number Theory +0904.1142 Dynamical Systems +0904.1147 +0904.1148 Statistics Theory +0904.1152 General Physics +0904.1157 Computational Finance +0904.1161 Biomolecules +0904.1164 Dynamical Systems +0904.1168 Soft Condensed Matter +0904.1172 Statistical Mechanics +0904.1180 Probability +0904.1181 Instrumentation and Methods for Astrophysics +0904.1186 Cryptography and Security +0904.1187 Differential Geometry +0904.1192 Differential Geometry +0904.1193 Information Theory +0904.1194 Algebraic Topology +0904.1196 Chemical Physics +0904.1197 Geometric Topology +0904.1198 Biological Physics +astro-ph/0601646 +astro-ph/0701339 +cond-mat/0605350 Superconductivity +cs/0505073 Logic in Computer Science +cs/0612106 Logic in Computer Science +gr-qc/0702129 +hep-ph/0411120 Phenomenology +hep-th/0512041 Theory +hep-th/0609129 Theory +hep-th/0702039 Theory +math/0412101 Group Theory +math/0605765 Differential Geometry +math/0606220 Geometric Topology +math/0611122 Algebraic Geometry +math/0701388 Algebraic Geometry +math/0702437 Algebraic Geometry +math/0702732 Algebraic Geometry +physics/0612048 Medical Physics +0710.2307 Classical Analysis and ODEs +0710.2546 Mesoscale and Nanoscale Physics +0712.0436 Materials Science +0712.2769 Theory +0803.2166 Commutative Algebra +0807.1788 Classical Analysis and ODEs +0807.3856 Superconductivity +0807.4553 Rings and Algebras +0808.2104 Combinatorics +0809.4399 Combinatorics +0811.0440 Mesoscale and Nanoscale Physics +0811.1311 Combinatorics +0811.3145 Classical Analysis and ODEs +0812.1240 Plasma Physics +0901.2626 Mesoscale and Nanoscale Physics +0901.3865 +0902.3413 Subcellular Processes +0902.4176 Mesoscale and Nanoscale Physics +0903.5089 Biological Physics +0904.2117 Mesoscale and Nanoscale Physics +0904.4066 Soft Condensed Matter +0904.4203 Quantum Gases +0904.4707 Soft Condensed Matter +0905.0050 Exactly Solvable and Integrable Systems +0905.1139 +0905.4396 Molecular Networks +0905.4948 Quantum Gases +0906.1693 Quantum Algebra +0906.5519 Disordered Systems and Neural Networks +0907.0528 Dynamical Systems +0907.1337 +0907.1635 +0908.3463 Information Theory +0908.4382 Mesoscale and Nanoscale Physics +0909.0903 Superconductivity +0909.2166 +0909.3513 Atomic Physics +0909.3602 Algebraic Geometry +0910.0644 Commutative Algebra +0910.1620 Statistical Mechanics +0910.2853 Logic in Computer Science +0910.3704 Phenomenology +0910.4320 Algebraic Geometry +0910.4678 Mesoscale and Nanoscale Physics +0910.4752 Differential Geometry +0910.4819 +0910.5473 Mesoscale and Nanoscale Physics +0910.5492 Dynamical Systems +0910.5493 Probability +0910.5495 General Physics +0910.5497 Cosmology and Nongalactic Astrophysics +0910.5500 Metric Geometry +0910.5506 Phenomenology +0910.5511 Strongly Correlated Electrons +0910.5515 Cosmology and Nongalactic Astrophysics +0910.5522 Quantitative Methods +0910.5524 Mesoscale and Nanoscale Physics +0910.5525 Quantum Algebra +0910.5526 Analysis of PDEs +0910.5529 Optics +0910.5537 Information Theory +0910.5542 Neural and Evolutionary Computing +0910.5551 Algebraic Geometry +0910.5559 Robotics +0910.5561 Machine Learning +0910.5566 Quantum Algebra +0910.5570 Quantum Algebra +0910.5574 Group Theory +0910.5577 Operating Systems +0910.5579 Popular Physics +0910.5585 Superconductivity +0910.5594 Analysis of PDEs +0910.5595 Cryptography and Security +0910.5601 +0910.5602 Experiment +0910.5606 General Physics +0910.5609 Solar and Stellar Astrophysics +0910.5610 Exactly Solvable and Integrable Systems +0910.5613 Probability +0910.5616 Materials Science +0910.5619 Mesoscale and Nanoscale Physics +0910.5623 Algebraic Geometry +0910.5625 Phenomenology +0910.5633 Chemical Physics +0910.5634 Combinatorics +0910.5636 +0910.5643 Computer Science and Game Theory +0910.5645 Analysis of PDEs +0910.5647 Combinatorics +0910.5648 Analysis of PDEs +0910.5651 Combinatorics +0910.5652 Group Theory +0910.5653 Experiment +0910.5656 Analysis of PDEs +0910.5662 Complex Variables +0910.5664 Representation Theory +0910.5677 Statistical Mechanics +0910.5680 Strongly Correlated Electrons +0910.5682 Computation and Language +0910.5684 Biological Physics +0910.5688 Group Theory +0910.5694 +0910.5699 Category Theory +0910.5702 Representation Theory +0910.5704 Number Theory +0910.5712 Differential Geometry +adap-org/9701001 Adaptation and Self-Organizing Systems +adap-org/9702001 Adaptation and Self-Organizing Systems +adap-org/9704001 Adaptation and Self-Organizing Systems +adap-org/9704004 Adaptation and Self-Organizing Systems +adap-org/9705001 Adaptation and Self-Organizing Systems +adap-org/9705002 Adaptation and Self-Organizing Systems +adap-org/9705003 Adaptation and Self-Organizing Systems +adap-org/9706001 Adaptation and Self-Organizing Systems +adap-org/9706002 Adaptation and Self-Organizing Systems +adap-org/9706003 Adaptation and Self-Organizing Systems +adap-org/9706004 Adaptation and Self-Organizing Systems +adap-org/9706006 Adaptation and Self-Organizing Systems +adap-org/9707001 Adaptation and Self-Organizing Systems +adap-org/9707002 Adaptation and Self-Organizing Systems +adap-org/9707004 Adaptation and Self-Organizing Systems +adap-org/9709003 Adaptation and Self-Organizing Systems +adap-org/9710002 Adaptation and Self-Organizing Systems +adap-org/9711003 Adaptation and Self-Organizing Systems +adap-org/9712002 Adaptation and Self-Organizing Systems +adap-org/9712003 Adaptation and Self-Organizing Systems +adap-org/9801002 Adaptation and Self-Organizing Systems +adap-org/9802001 Adaptation and Self-Organizing Systems +adap-org/9804001 Adaptation and Self-Organizing Systems +adap-org/9805001 Adaptation and Self-Organizing Systems +adap-org/9805002 Adaptation and Self-Organizing Systems +adap-org/9807002 Adaptation and Self-Organizing Systems +adap-org/9807004 Adaptation and Self-Organizing Systems +adap-org/9808002 Adaptation and Self-Organizing Systems +adap-org/9808004 Adaptation and Self-Organizing Systems +adap-org/9809003 Adaptation and Self-Organizing Systems +adap-org/9810005 Adaptation and Self-Organizing Systems +adap-org/9811002 Adaptation and Self-Organizing Systems +adap-org/9811004 Adaptation and Self-Organizing Systems +adap-org/9812003 Adaptation and Self-Organizing Systems +adap-org/9812004 Adaptation and Self-Organizing Systems +alg-geom/9703020 Algebraic Geometry +alg-geom/9704008 Algebraic Geometry +alg-geom/9704010 Algebraic Geometry +alg-geom/9704023 Algebraic Geometry +alg-geom/9706003 Algebraic Geometry +alg-geom/9708015 Algebraic Geometry +alg-geom/9708024 Algebraic Geometry +alg-geom/9709016 Algebraic Geometry +alg-geom/9710022 Algebraic Geometry +alg-geom/9712016 Algebraic Geometry +astro-ph/9701006 +astro-ph/9701010 +astro-ph/9701012 +astro-ph/9701013 +astro-ph/9701017 +astro-ph/9701018 +astro-ph/9701027 +astro-ph/9701030 +astro-ph/9701043 +astro-ph/9701044 +astro-ph/9701045 +astro-ph/9701046 +astro-ph/9701047 +astro-ph/9701048 +astro-ph/9701051 +astro-ph/9701054 +astro-ph/9701055 +astro-ph/9701058 +astro-ph/9701059 +astro-ph/9701061 +astro-ph/9701066 +astro-ph/9701069 +astro-ph/9701072 +astro-ph/9701075 +astro-ph/9701077 +astro-ph/9701082 +astro-ph/9701083 +astro-ph/9701090 +astro-ph/9701093 +astro-ph/9701095 +astro-ph/9701096 +astro-ph/9701098 +astro-ph/9701099 +astro-ph/9701101 +astro-ph/9701105 +astro-ph/9701106 +astro-ph/9701110 +astro-ph/9701111 +astro-ph/9701112 +astro-ph/9701114 +astro-ph/9701115 +astro-ph/9701116 +astro-ph/9701117 +astro-ph/9701119 +astro-ph/9701130 +astro-ph/9701132 +astro-ph/9701133 +astro-ph/9701136 +astro-ph/9701139 +astro-ph/9701141 +astro-ph/9701142 +astro-ph/9701143 +astro-ph/9701144 +astro-ph/9701145 +astro-ph/9701147 +astro-ph/9701150 +astro-ph/9701153 +astro-ph/9701154 +astro-ph/9701159 +astro-ph/9701160 +astro-ph/9701170 +astro-ph/9701176 +astro-ph/9701177 +astro-ph/9701179 +astro-ph/9701181 +astro-ph/9701186 +astro-ph/9701189 +astro-ph/9701193 +astro-ph/9701194 +astro-ph/9701195 +astro-ph/9701196 +astro-ph/9701201 +astro-ph/9701202 +astro-ph/9701203 +astro-ph/9701206 +astro-ph/9701209 +astro-ph/9701210 +astro-ph/9701211 +astro-ph/9701212 +astro-ph/9701215 +astro-ph/9701218 +astro-ph/9701219 +astro-ph/9701220 +astro-ph/9701223 +astro-ph/9701224 +astro-ph/9701226 +astro-ph/9701231 +astro-ph/9701235 +astro-ph/9701238 +astro-ph/9701242 +astro-ph/9701244 +astro-ph/9701245 +astro-ph/9702003 +astro-ph/9702004 +astro-ph/9702011 +astro-ph/9702014 +astro-ph/9702015 +astro-ph/9702017 +astro-ph/9702018 +astro-ph/9702026 +astro-ph/9702028 +astro-ph/9702030 +astro-ph/9702032 +astro-ph/9702033 +astro-ph/9702034 +astro-ph/9702037 +astro-ph/9702041 +astro-ph/9702047 +astro-ph/9702048 +astro-ph/9702053 +astro-ph/9702056 +astro-ph/9702063 +astro-ph/9702064 +astro-ph/9702065 +astro-ph/9702066 +astro-ph/9702068 +astro-ph/9702072 +astro-ph/9702073 +astro-ph/9702075 +astro-ph/9702077 +astro-ph/9702083 +astro-ph/9702085 +astro-ph/9702088 +astro-ph/9702089 +astro-ph/9702091 +astro-ph/9702092 +astro-ph/9702096 +astro-ph/9702097 +astro-ph/9702098 +astro-ph/9702099 +astro-ph/9702101 +astro-ph/9702106 +astro-ph/9702107 +astro-ph/9702108 +astro-ph/9702111 +astro-ph/9702112 +astro-ph/9702117 +astro-ph/9702118 +astro-ph/9702121 +astro-ph/9702122 +astro-ph/9702126 +astro-ph/9702127 +astro-ph/9702130 +astro-ph/9702138 +astro-ph/9702141 +astro-ph/9702146 +astro-ph/9702147 +astro-ph/9702149 +astro-ph/9702151 +astro-ph/9702152 +astro-ph/9702153 +astro-ph/9702154 +astro-ph/9702157 +astro-ph/9702158 +astro-ph/9702160 +astro-ph/9702161 +astro-ph/9702166 +astro-ph/9702171 +astro-ph/9702172 +astro-ph/9702173 +astro-ph/9702176 +astro-ph/9702179 +astro-ph/9702181 +astro-ph/9702182 +astro-ph/9702184 +astro-ph/9702185 +astro-ph/9702187 +astro-ph/9702188 +astro-ph/9702189 +astro-ph/9702191 +astro-ph/9702192 +astro-ph/9702194 +astro-ph/9702196 +astro-ph/9702199 +astro-ph/9702201 +astro-ph/9702203 +astro-ph/9702204 +astro-ph/9702205 +astro-ph/9702206 +astro-ph/9702208 +astro-ph/9702209 +astro-ph/9702210 +astro-ph/9702213 +astro-ph/9702216 +astro-ph/9702220 +astro-ph/9702222 +astro-ph/9702224 +astro-ph/9702227 +astro-ph/9702228 +astro-ph/9702229 +astro-ph/9702231 +astro-ph/9702234 +astro-ph/9702235 +astro-ph/9702237 +astro-ph/9702238 +astro-ph/9702239 +astro-ph/9702240 +astro-ph/9702242 +astro-ph/9703002 +astro-ph/9703005 +astro-ph/9703007 +astro-ph/9703011 +astro-ph/9703012 +astro-ph/9703013 +astro-ph/9703020 +astro-ph/9703022 +astro-ph/9703023 +astro-ph/9703024 +astro-ph/9703029 +astro-ph/9703030 +astro-ph/9703032 +astro-ph/9703033 +astro-ph/9703034 +astro-ph/9703039 +astro-ph/9703040 +astro-ph/9703041 +astro-ph/9703042 +astro-ph/9703047 +astro-ph/9703049 +astro-ph/9703053 +astro-ph/9703058 +astro-ph/9703059 +astro-ph/9703061 +astro-ph/9703066 +astro-ph/9703070 +astro-ph/9703072 +astro-ph/9703075 +astro-ph/9703077 +astro-ph/9703079 +astro-ph/9703080 +astro-ph/9703085 +astro-ph/9703086 +astro-ph/9703087 +astro-ph/9703092 +astro-ph/9703095 +astro-ph/9703096 +astro-ph/9703097 +astro-ph/9703098 +astro-ph/9703099 +astro-ph/9703105 +astro-ph/9703107 +astro-ph/9703109 +astro-ph/9703111 +astro-ph/9703113 +astro-ph/9703115 +astro-ph/9703116 +astro-ph/9703120 +astro-ph/9703121 +astro-ph/9703123 +astro-ph/9703128 +astro-ph/9703130 +astro-ph/9703131 +astro-ph/9703132 +astro-ph/9703133 +astro-ph/9703134 +astro-ph/9703136 +astro-ph/9703144 +astro-ph/9703147 +astro-ph/9703148 +astro-ph/9703150 +astro-ph/9703151 +astro-ph/9703152 +astro-ph/9703153 +astro-ph/9703156 +astro-ph/9703158 +astro-ph/9703160 +astro-ph/9703162 +astro-ph/9703163 +astro-ph/9703164 +astro-ph/9703166 +astro-ph/9703167 +astro-ph/9703168 +astro-ph/9703172 +astro-ph/9703176 +astro-ph/9703177 +astro-ph/9703178 +astro-ph/9703180 +astro-ph/9703183 +astro-ph/9703185 +astro-ph/9703187 +astro-ph/9703188 +astro-ph/9703192 +astro-ph/9703193 +astro-ph/9703200 +astro-ph/9704006 +astro-ph/9704008 +astro-ph/9704009 +astro-ph/9704013 +astro-ph/9704014 +astro-ph/9704018 +astro-ph/9704019 +astro-ph/9704021 +astro-ph/9704024 +astro-ph/9704025 +astro-ph/9704029 +astro-ph/9704032 +astro-ph/9704033 +astro-ph/9704034 +astro-ph/9704035 +astro-ph/9704041 +astro-ph/9704042 +astro-ph/9704043 +astro-ph/9704050 +astro-ph/9704051 +astro-ph/9704052 +astro-ph/9704059 +astro-ph/9704063 +astro-ph/9704068 +astro-ph/9704071 +astro-ph/9704072 +astro-ph/9704073 +astro-ph/9704076 +astro-ph/9704078 +astro-ph/9704082 +astro-ph/9704083 +astro-ph/9704084 +astro-ph/9704085 +astro-ph/9704086 +astro-ph/9704090 +astro-ph/9704093 +astro-ph/9704094 +astro-ph/9704096 +astro-ph/9704100 +astro-ph/9704101 +astro-ph/9704103 +astro-ph/9704104 +astro-ph/9704106 +astro-ph/9704108 +astro-ph/9704109 +astro-ph/9704111 +astro-ph/9704112 +astro-ph/9704114 +astro-ph/9704115 +astro-ph/9704116 +astro-ph/9704121 +astro-ph/9704122 +astro-ph/9704123 +astro-ph/9704125 +astro-ph/9704126 +astro-ph/9704130 +astro-ph/9704132 +astro-ph/9704133 +astro-ph/9704135 +astro-ph/9704148 +astro-ph/9704155 +astro-ph/9704157 +astro-ph/9704159 +astro-ph/9704169 +astro-ph/9704176 +astro-ph/9704180 +astro-ph/9704182 +astro-ph/9704184 +astro-ph/9704189 +astro-ph/9704192 +astro-ph/9704194 +astro-ph/9704195 +astro-ph/9704198 +astro-ph/9704200 +astro-ph/9704202 +astro-ph/9704205 +astro-ph/9704206 +astro-ph/9704207 +astro-ph/9704208 +astro-ph/9704210 +astro-ph/9704213 +astro-ph/9704214 +astro-ph/9704218 +astro-ph/9704220 +astro-ph/9704221 +astro-ph/9704222 +astro-ph/9704223 +astro-ph/9704233 +astro-ph/9704236 +astro-ph/9704239 +astro-ph/9704245 +astro-ph/9704246 +astro-ph/9704247 +astro-ph/9704248 +astro-ph/9704249 +astro-ph/9704254 +astro-ph/9704257 +astro-ph/9704258 +astro-ph/9704259 +astro-ph/9704262 +astro-ph/9704263 +astro-ph/9704267 +astro-ph/9704268 +astro-ph/9704269 +astro-ph/9704270 +astro-ph/9704271 +astro-ph/9704272 +astro-ph/9704278 +astro-ph/9704279 +astro-ph/9704282 +astro-ph/9704283 +astro-ph/9704292 +astro-ph/9704293 +astro-ph/9704296 +astro-ph/9704297 +astro-ph/9704298 +astro-ph/9705002 +astro-ph/9705005 +astro-ph/9705006 +astro-ph/9705010 +astro-ph/9705019 +astro-ph/9705020 +astro-ph/9705021 +astro-ph/9705022 +astro-ph/9705024 +astro-ph/9705025 +astro-ph/9705026 +astro-ph/9705030 +astro-ph/9705034 +astro-ph/9705036 +astro-ph/9705038 +astro-ph/9705039 +astro-ph/9705050 +astro-ph/9705051 +astro-ph/9705054 +astro-ph/9705055 +astro-ph/9705057 +astro-ph/9705058 +astro-ph/9705068 +astro-ph/9705070 +astro-ph/9705074 +astro-ph/9705078 +astro-ph/9705081 +astro-ph/9705082 +astro-ph/9705083 +astro-ph/9705084 +astro-ph/9705085 +astro-ph/9705087 +astro-ph/9705088 +astro-ph/9705089 +astro-ph/9705091 +astro-ph/9705102 +astro-ph/9705103 +astro-ph/9705105 +astro-ph/9705107 +astro-ph/9705108 +astro-ph/9705109 +astro-ph/9705111 +astro-ph/9705112 +astro-ph/9705113 +astro-ph/9705114 +astro-ph/9705116 +astro-ph/9705117 +astro-ph/9705118 +astro-ph/9705121 +astro-ph/9705126 +astro-ph/9705128 +astro-ph/9705129 +astro-ph/9705130 +astro-ph/9705131 +astro-ph/9705134 +astro-ph/9705136 +astro-ph/9705138 +astro-ph/9705139 +astro-ph/9705140 +astro-ph/9705141 +astro-ph/9705145 +astro-ph/9705151 +astro-ph/9705152 +astro-ph/9705156 +astro-ph/9705160 +astro-ph/9705162 +astro-ph/9705163 +astro-ph/9705164 +astro-ph/9705167 +astro-ph/9705171 +astro-ph/9705172 +astro-ph/9705174 +astro-ph/9705175 +astro-ph/9705176 +astro-ph/9705179 +astro-ph/9705180 +astro-ph/9705181 +astro-ph/9705185 +astro-ph/9705186 +astro-ph/9705187 +astro-ph/9705190 +astro-ph/9705192 +astro-ph/9705194 +astro-ph/9705195 +astro-ph/9705196 +astro-ph/9705199 +astro-ph/9705201 +astro-ph/9705203 +astro-ph/9705204 +astro-ph/9705206 +astro-ph/9705208 +astro-ph/9705211 +astro-ph/9705212 +astro-ph/9705214 +astro-ph/9705217 +astro-ph/9705218 +astro-ph/9705220 +astro-ph/9705223 +astro-ph/9705224 +astro-ph/9705225 +astro-ph/9705226 +astro-ph/9705227 +astro-ph/9705228 +astro-ph/9705235 +astro-ph/9705237 +astro-ph/9705238 +astro-ph/9705239 +astro-ph/9705240 +astro-ph/9705242 +astro-ph/9705254 +astro-ph/9705255 +astro-ph/9705256 +astro-ph/9705257 +astro-ph/9705259 +astro-ph/9706001 +astro-ph/9706007 +astro-ph/9706011 +astro-ph/9706017 +astro-ph/9706018 +astro-ph/9706022 +astro-ph/9706023 +astro-ph/9706024 +astro-ph/9706025 +astro-ph/9706030 +astro-ph/9706031 +astro-ph/9706032 +astro-ph/9706034 +astro-ph/9706037 +astro-ph/9706041 +astro-ph/9706045 +astro-ph/9706047 +astro-ph/9706048 +astro-ph/9706050 +astro-ph/9706051 +astro-ph/9706054 +astro-ph/9706055 +astro-ph/9706057 +astro-ph/9706058 +astro-ph/9706060 +astro-ph/9706062 +astro-ph/9706064 +astro-ph/9706065 +astro-ph/9706067 +astro-ph/9706072 +astro-ph/9706073 +astro-ph/9706074 +astro-ph/9706077 +astro-ph/9706082 +astro-ph/9706083 +astro-ph/9706086 +astro-ph/9706088 +astro-ph/9706089 +astro-ph/9706094 +astro-ph/9706095 +astro-ph/9706099 +astro-ph/9706100 +astro-ph/9706101 +astro-ph/9706106 +astro-ph/9706107 +astro-ph/9706111 +astro-ph/9706112 +astro-ph/9706113 +astro-ph/9706114 +astro-ph/9706116 +astro-ph/9706119 +astro-ph/9706120 +astro-ph/9706121 +astro-ph/9706123 +astro-ph/9706128 +astro-ph/9706129 +astro-ph/9706134 +astro-ph/9706139 +astro-ph/9706140 +astro-ph/9706144 +astro-ph/9706151 +astro-ph/9706152 +astro-ph/9706155 +astro-ph/9706157 +astro-ph/9706159 +astro-ph/9706162 +astro-ph/9706164 +astro-ph/9706165 +astro-ph/9706167 +astro-ph/9706169 +astro-ph/9706170 +astro-ph/9706172 +astro-ph/9706173 +astro-ph/9706175 +astro-ph/9706179 +astro-ph/9706182 +astro-ph/9706189 +astro-ph/9706191 +astro-ph/9706193 +astro-ph/9706194 +astro-ph/9706195 +astro-ph/9706200 +astro-ph/9706201 +astro-ph/9706204 +astro-ph/9706205 +astro-ph/9706206 +astro-ph/9706207 +astro-ph/9706210 +astro-ph/9706219 +astro-ph/9706220 +astro-ph/9706221 +astro-ph/9706222 +astro-ph/9706223 +astro-ph/9706225 +astro-ph/9706226 +astro-ph/9706231 +astro-ph/9706232 +astro-ph/9706233 +astro-ph/9706247 +astro-ph/9706248 +astro-ph/9706249 +astro-ph/9706252 +astro-ph/9706255 +astro-ph/9706260 +astro-ph/9706261 +astro-ph/9706262 +astro-ph/9706264 +astro-ph/9706266 +astro-ph/9706276 +astro-ph/9706277 +astro-ph/9706281 +astro-ph/9706282 +astro-ph/9706284 +astro-ph/9706285 +astro-ph/9706286 +astro-ph/9706288 +astro-ph/9706290 +astro-ph/9706291 +astro-ph/9706292 +astro-ph/9706295 +astro-ph/9706296 +astro-ph/9706298 +astro-ph/9706300 +astro-ph/9706302 +astro-ph/9707001 +astro-ph/9707004 +astro-ph/9707005 +astro-ph/9707006 +astro-ph/9707008 +astro-ph/9707009 +astro-ph/9707010 +astro-ph/9707011 +astro-ph/9707021 +astro-ph/9707023 +astro-ph/9707024 +astro-ph/9707031 +astro-ph/9707032 +astro-ph/9707035 +astro-ph/9707037 +astro-ph/9707039 +astro-ph/9707041 +astro-ph/9707042 +astro-ph/9707044 +astro-ph/9707045 +astro-ph/9707047 +astro-ph/9707048 +astro-ph/9707049 +astro-ph/9707050 +astro-ph/9707053 +astro-ph/9707062 +astro-ph/9707063 +astro-ph/9707067 +astro-ph/9707069 +astro-ph/9707070 +astro-ph/9707072 +astro-ph/9707078 +astro-ph/9707083 +astro-ph/9707084 +astro-ph/9707085 +astro-ph/9707086 +astro-ph/9707092 +astro-ph/9707093 +astro-ph/9707094 +astro-ph/9707096 +astro-ph/9707097 +astro-ph/9707100 +astro-ph/9707101 +astro-ph/9707102 +astro-ph/9707103 +astro-ph/9707104 +astro-ph/9707109 +astro-ph/9707110 +astro-ph/9707111 +astro-ph/9707114 +astro-ph/9707116 +astro-ph/9707118 +astro-ph/9707122 +astro-ph/9707123 +astro-ph/9707124 +astro-ph/9707125 +astro-ph/9707127 +astro-ph/9707128 +astro-ph/9707131 +astro-ph/9707133 +astro-ph/9707137 +astro-ph/9707138 +astro-ph/9707143 +astro-ph/9707145 +astro-ph/9707146 +astro-ph/9707147 +astro-ph/9707148 +astro-ph/9707149 +astro-ph/9707152 +astro-ph/9707153 +astro-ph/9707157 +astro-ph/9707158 +astro-ph/9707159 +astro-ph/9707166 +astro-ph/9707171 +astro-ph/9707175 +astro-ph/9707176 +astro-ph/9707179 +astro-ph/9707180 +astro-ph/9707181 +astro-ph/9707184 +astro-ph/9707185 +astro-ph/9707187 +astro-ph/9707188 +astro-ph/9707192 +astro-ph/9707193 +astro-ph/9707194 +astro-ph/9707195 +astro-ph/9707196 +astro-ph/9707197 +astro-ph/9707200 +astro-ph/9707202 +astro-ph/9707206 +astro-ph/9707207 +astro-ph/9707210 +astro-ph/9707213 +astro-ph/9707221 +astro-ph/9707222 +astro-ph/9707223 +astro-ph/9707224 +astro-ph/9707231 +astro-ph/9707233 +astro-ph/9707235 +astro-ph/9707237 +astro-ph/9707239 +astro-ph/9707240 +astro-ph/9707241 +astro-ph/9707242 +astro-ph/9707243 +astro-ph/9707244 +astro-ph/9707246 +astro-ph/9707247 +astro-ph/9707248 +astro-ph/9707250 +astro-ph/9707252 +astro-ph/9707254 +astro-ph/9707258 +astro-ph/9707259 +astro-ph/9707260 +astro-ph/9707261 +astro-ph/9707264 +astro-ph/9707271 +astro-ph/9707275 +astro-ph/9707276 +astro-ph/9707278 +astro-ph/9707280 +astro-ph/9707281 +astro-ph/9707282 +astro-ph/9707286 +astro-ph/9707288 +astro-ph/9707289 +astro-ph/9707292 +astro-ph/9707293 +astro-ph/9707295 +astro-ph/9707296 +astro-ph/9707297 +astro-ph/9707298 +astro-ph/9707299 +astro-ph/9707303 +astro-ph/9707304 +astro-ph/9707305 +astro-ph/9707306 +astro-ph/9707309 +astro-ph/9707310 +astro-ph/9707312 +astro-ph/9707313 +astro-ph/9707318 +astro-ph/9707319 +astro-ph/9707320 +astro-ph/9707321 +astro-ph/9707322 +astro-ph/9707325 +astro-ph/9707326 +astro-ph/9707327 +astro-ph/9707328 +astro-ph/9707330 +astro-ph/9707334 +astro-ph/9707335 +astro-ph/9707336 +astro-ph/9707343 +astro-ph/9707344 +astro-ph/9707345 +astro-ph/9707347 +astro-ph/9707348 +astro-ph/9707349 +astro-ph/9707352 +astro-ph/9708001 +astro-ph/9708002 +astro-ph/9708010 +astro-ph/9708011 +astro-ph/9708012 +astro-ph/9708013 +astro-ph/9708014 +astro-ph/9708015 +astro-ph/9708016 +astro-ph/9708018 +astro-ph/9708019 +astro-ph/9708022 +astro-ph/9708024 +astro-ph/9708025 +astro-ph/9708026 +astro-ph/9708027 +astro-ph/9708028 +astro-ph/9708030 +astro-ph/9708031 +astro-ph/9708032 +astro-ph/9708034 +astro-ph/9708037 +astro-ph/9708039 +astro-ph/9708043 +astro-ph/9708044 +astro-ph/9708047 +astro-ph/9708048 +astro-ph/9708049 +astro-ph/9708050 +astro-ph/9708055 +astro-ph/9708056 +astro-ph/9708057 +astro-ph/9708058 +astro-ph/9708060 +astro-ph/9708061 +astro-ph/9708062 +astro-ph/9708065 +astro-ph/9708067 +astro-ph/9708068 +astro-ph/9708070 +astro-ph/9708072 +astro-ph/9708073 +astro-ph/9708079 +astro-ph/9708080 +astro-ph/9708082 +astro-ph/9708083 +astro-ph/9708085 +astro-ph/9708087 +astro-ph/9708089 +astro-ph/9708090 +astro-ph/9708095 +astro-ph/9708096 +astro-ph/9708097 +astro-ph/9708098 +astro-ph/9708099 +astro-ph/9708105 +astro-ph/9708107 +astro-ph/9708108 +astro-ph/9708112 +astro-ph/9708114 +astro-ph/9708115 +astro-ph/9708120 +astro-ph/9708121 +astro-ph/9708125 +astro-ph/9708128 +astro-ph/9708129 +astro-ph/9708132 +astro-ph/9708133 +astro-ph/9708135 +astro-ph/9708136 +astro-ph/9708138 +astro-ph/9708139 +astro-ph/9708140 +astro-ph/9708141 +astro-ph/9708142 +astro-ph/9708147 +astro-ph/9708148 +astro-ph/9708150 +astro-ph/9708151 +astro-ph/9708152 +astro-ph/9708153 +astro-ph/9708154 +astro-ph/9708155 +astro-ph/9708156 +astro-ph/9708159 +astro-ph/9708165 +astro-ph/9708170 +astro-ph/9708175 +astro-ph/9708176 +astro-ph/9708177 +astro-ph/9708178 +astro-ph/9708179 +astro-ph/9708180 +astro-ph/9708182 +astro-ph/9708183 +astro-ph/9708186 +astro-ph/9708187 +astro-ph/9708189 +astro-ph/9708190 +astro-ph/9708191 +astro-ph/9708192 +astro-ph/9708193 +astro-ph/9708195 +astro-ph/9708198 +astro-ph/9708200 +astro-ph/9708201 +astro-ph/9708203 +astro-ph/9708207 +astro-ph/9708208 +astro-ph/9708210 +astro-ph/9708212 +astro-ph/9708215 +astro-ph/9708219 +astro-ph/9708220 +astro-ph/9708223 +astro-ph/9708224 +astro-ph/9708226 +astro-ph/9708230 +astro-ph/9708231 +astro-ph/9708232 +astro-ph/9708234 +astro-ph/9708237 +astro-ph/9708239 +astro-ph/9708241 +astro-ph/9708243 +astro-ph/9708244 +astro-ph/9708246 +astro-ph/9708248 +astro-ph/9708250 +astro-ph/9708251 +astro-ph/9708252 +astro-ph/9708254 +astro-ph/9708255 +astro-ph/9708257 +astro-ph/9708258 +astro-ph/9708259 +astro-ph/9708262 +astro-ph/9708264 +astro-ph/9708268 +astro-ph/9708269 +astro-ph/9708271 +astro-ph/9708272 +astro-ph/9708273 +astro-ph/9708274 +astro-ph/9709008 +astro-ph/9709009 +astro-ph/9709015 +astro-ph/9709016 +astro-ph/9709020 +astro-ph/9709021 +astro-ph/9709023 +astro-ph/9709024 +astro-ph/9709027 +astro-ph/9709028 +astro-ph/9709030 +astro-ph/9709033 +astro-ph/9709034 +astro-ph/9709041 +astro-ph/9709042 +astro-ph/9709043 +astro-ph/9709044 +astro-ph/9709045 +astro-ph/9709046 +astro-ph/9709048 +astro-ph/9709051 +astro-ph/9709055 +astro-ph/9709056 +astro-ph/9709057 +astro-ph/9709060 +astro-ph/9709061 +astro-ph/9709063 +astro-ph/9709067 +astro-ph/9709069 +astro-ph/9709073 +astro-ph/9709074 +astro-ph/9709076 +astro-ph/9709077 +astro-ph/9709078 +astro-ph/9709083 +astro-ph/9709085 +astro-ph/9709086 +astro-ph/9709087 +astro-ph/9709088 +astro-ph/9709090 +astro-ph/9709091 +astro-ph/9709092 +astro-ph/9709093 +astro-ph/9709096 +astro-ph/9709097 +astro-ph/9709098 +astro-ph/9709100 +astro-ph/9709102 +astro-ph/9709106 +astro-ph/9709111 +astro-ph/9709115 +astro-ph/9709120 +astro-ph/9709122 +astro-ph/9709124 +astro-ph/9709125 +astro-ph/9709127 +astro-ph/9709128 +astro-ph/9709130 +astro-ph/9709134 +astro-ph/9709138 +astro-ph/9709140 +astro-ph/9709141 +astro-ph/9709145 +astro-ph/9709146 +astro-ph/9709149 +astro-ph/9709152 +astro-ph/9709156 +astro-ph/9709158 +astro-ph/9709159 +astro-ph/9709161 +astro-ph/9709167 +astro-ph/9709172 +astro-ph/9709174 +astro-ph/9709175 +astro-ph/9709176 +astro-ph/9709178 +astro-ph/9709180 +astro-ph/9709181 +astro-ph/9709183 +astro-ph/9709184 +astro-ph/9709186 +astro-ph/9709188 +astro-ph/9709189 +astro-ph/9709190 +astro-ph/9709192 +astro-ph/9709193 +astro-ph/9709195 +astro-ph/9709198 +astro-ph/9709200 +astro-ph/9709201 +astro-ph/9709202 +astro-ph/9709203 +astro-ph/9709208 +astro-ph/9709209 +astro-ph/9709211 +astro-ph/9709213 +astro-ph/9709214 +astro-ph/9709215 +astro-ph/9709216 +astro-ph/9709220 +astro-ph/9709221 +astro-ph/9709222 +astro-ph/9709224 +astro-ph/9709226 +astro-ph/9709228 +astro-ph/9709231 +astro-ph/9709234 +astro-ph/9709237 +astro-ph/9709238 +astro-ph/9709246 +astro-ph/9709247 +astro-ph/9709249 +astro-ph/9709255 +astro-ph/9709258 +astro-ph/9709259 +astro-ph/9709261 +astro-ph/9709264 +astro-ph/9709265 +astro-ph/9709271 +astro-ph/9709273 +astro-ph/9709274 +astro-ph/9709279 +astro-ph/9709280 +astro-ph/9709281 +astro-ph/9709282 +astro-ph/9709284 +astro-ph/9709287 +astro-ph/9709288 +astro-ph/9709291 +astro-ph/9709292 +astro-ph/9709296 +astro-ph/9709298 +astro-ph/9709300 +astro-ph/9709304 +astro-ph/9709305 +astro-ph/9710002 +astro-ph/9710003 +astro-ph/9710004 +astro-ph/9710006 +astro-ph/9710009 +astro-ph/9710011 +astro-ph/9710012 +astro-ph/9710013 +astro-ph/9710014 +astro-ph/9710015 +astro-ph/9710018 +astro-ph/9710020 +astro-ph/9710022 +astro-ph/9710024 +astro-ph/9710026 +astro-ph/9710029 +astro-ph/9710031 +astro-ph/9710033 +astro-ph/9710037 +astro-ph/9710042 +astro-ph/9710045 +astro-ph/9710052 +astro-ph/9710053 +astro-ph/9710055 +astro-ph/9710056 +astro-ph/9710057 +astro-ph/9710060 +astro-ph/9710063 +astro-ph/9710064 +astro-ph/9710066 +astro-ph/9710068 +astro-ph/9710069 +astro-ph/9710071 +astro-ph/9710073 +astro-ph/9710076 +astro-ph/9710078 +astro-ph/9710081 +astro-ph/9710082 +astro-ph/9710083 +astro-ph/9710087 +astro-ph/9710088 +astro-ph/9710090 +astro-ph/9710092 +astro-ph/9710096 +astro-ph/9710100 +astro-ph/9710103 +astro-ph/9710106 +astro-ph/9710109 +astro-ph/9710110 +astro-ph/9710111 +astro-ph/9710112 +astro-ph/9710114 +astro-ph/9710116 +astro-ph/9710117 +astro-ph/9710119 +astro-ph/9710120 +astro-ph/9710121 +astro-ph/9710123 +astro-ph/9710127 +astro-ph/9710130 +astro-ph/9710131 +astro-ph/9710132 +astro-ph/9710133 +astro-ph/9710134 +astro-ph/9710141 +astro-ph/9710144 +astro-ph/9710146 +astro-ph/9710148 +astro-ph/9710149 +astro-ph/9710150 +astro-ph/9710151 +astro-ph/9710153 +astro-ph/9710154 +astro-ph/9710155 +astro-ph/9710156 +astro-ph/9710160 +astro-ph/9710162 +astro-ph/9710163 +astro-ph/9710167 +astro-ph/9710168 +astro-ph/9710169 +astro-ph/9710171 +astro-ph/9710175 +astro-ph/9710176 +astro-ph/9710177 +astro-ph/9710178 +astro-ph/9710179 +astro-ph/9710182 +astro-ph/9710185 +astro-ph/9710195 +astro-ph/9710199 +astro-ph/9710200 +astro-ph/9710203 +astro-ph/9710204 +astro-ph/9710208 +astro-ph/9710213 +astro-ph/9710214 +astro-ph/9710216 +astro-ph/9710217 +astro-ph/9710218 +astro-ph/9710219 +astro-ph/9710221 +astro-ph/9710225 +astro-ph/9710226 +astro-ph/9710227 +astro-ph/9710228 +astro-ph/9710231 +astro-ph/9710232 +astro-ph/9710233 +astro-ph/9710234 +astro-ph/9710236 +astro-ph/9710237 +astro-ph/9710238 +astro-ph/9710239 +astro-ph/9710242 +astro-ph/9710243 +astro-ph/9710247 +astro-ph/9710248 +astro-ph/9710250 +astro-ph/9710252 +astro-ph/9710257 +astro-ph/9710261 +astro-ph/9710263 +astro-ph/9710264 +astro-ph/9710266 +astro-ph/9710269 +astro-ph/9710271 +astro-ph/9710278 +astro-ph/9710279 +astro-ph/9710282 +astro-ph/9710283 +astro-ph/9710285 +astro-ph/9710286 +astro-ph/9710288 +astro-ph/9710289 +astro-ph/9710292 +astro-ph/9710299 +astro-ph/9710300 +astro-ph/9710301 +astro-ph/9710303 +astro-ph/9710304 +astro-ph/9710308 +astro-ph/9710309 +astro-ph/9710310 +astro-ph/9710313 +astro-ph/9710314 +astro-ph/9710315 +astro-ph/9710320 +astro-ph/9710323 +astro-ph/9710325 +astro-ph/9710326 +astro-ph/9710328 +astro-ph/9710330 +astro-ph/9710331 +astro-ph/9710333 +astro-ph/9710334 +astro-ph/9710335 +astro-ph/9710337 +astro-ph/9710340 +astro-ph/9710344 +astro-ph/9710346 +astro-ph/9710349 +astro-ph/9710351 +astro-ph/9710352 +astro-ph/9710354 +astro-ph/9710357 +astro-ph/9710358 +astro-ph/9710360 +astro-ph/9710363 +astro-ph/9710368 +astro-ph/9710371 +astro-ph/9710372 +astro-ph/9710373 +astro-ph/9710374 +astro-ph/9711001 +astro-ph/9711002 +astro-ph/9711004 +astro-ph/9711009 +astro-ph/9711012 +astro-ph/9711016 +astro-ph/9711017 +astro-ph/9711019 +astro-ph/9711023 +astro-ph/9711036 +astro-ph/9711041 +astro-ph/9711042 +astro-ph/9711043 +astro-ph/9711044 +astro-ph/9711045 +astro-ph/9711048 +astro-ph/9711050 +astro-ph/9711051 +astro-ph/9711053 +astro-ph/9711055 +astro-ph/9711058 +astro-ph/9711059 +astro-ph/9711060 +astro-ph/9711061 +astro-ph/9711064 +astro-ph/9711067 +astro-ph/9711068 +astro-ph/9711070 +astro-ph/9711074 +astro-ph/9711075 +astro-ph/9711081 +astro-ph/9711083 +astro-ph/9711085 +astro-ph/9711086 +astro-ph/9711087 +astro-ph/9711091 +astro-ph/9711095 +astro-ph/9711096 +astro-ph/9711098 +astro-ph/9711099 +astro-ph/9711100 +astro-ph/9711101 +astro-ph/9711107 +astro-ph/9711110 +astro-ph/9711111 +astro-ph/9711112 +astro-ph/9711116 +astro-ph/9711120 +astro-ph/9711124 +astro-ph/9711125 +astro-ph/9711127 +astro-ph/9711130 +astro-ph/9711132 +astro-ph/9711137 +astro-ph/9711139 +astro-ph/9711140 +astro-ph/9711142 +astro-ph/9711143 +astro-ph/9711151 +astro-ph/9711152 +astro-ph/9711153 +astro-ph/9711154 +astro-ph/9711161 +astro-ph/9711164 +astro-ph/9711167 +astro-ph/9711172 +astro-ph/9711173 +astro-ph/9711174 +astro-ph/9711175 +astro-ph/9711180 +astro-ph/9711187 +astro-ph/9711188 +astro-ph/9711190 +astro-ph/9711192 +astro-ph/9711193 +astro-ph/9711194 +astro-ph/9711195 +astro-ph/9711196 +astro-ph/9711200 +astro-ph/9711201 +astro-ph/9711202 +astro-ph/9711203 +astro-ph/9711205 +astro-ph/9711206 +astro-ph/9711207 +astro-ph/9711210 +astro-ph/9711211 +astro-ph/9711212 +astro-ph/9711214 +astro-ph/9711216 +astro-ph/9711217 +astro-ph/9711218 +astro-ph/9711219 +astro-ph/9711221 +astro-ph/9711224 +astro-ph/9711225 +astro-ph/9711227 +astro-ph/9711229 +astro-ph/9711230 +astro-ph/9711239 +astro-ph/9711242 +astro-ph/9711243 +astro-ph/9711245 +astro-ph/9711246 +astro-ph/9711247 +astro-ph/9711248 +astro-ph/9711250 +astro-ph/9711252 +astro-ph/9711261 +astro-ph/9711262 +astro-ph/9711263 +astro-ph/9711264 +astro-ph/9711265 +astro-ph/9711266 +astro-ph/9711267 +astro-ph/9711268 +astro-ph/9711273 +astro-ph/9711274 +astro-ph/9711279 +astro-ph/9711280 +astro-ph/9711282 +astro-ph/9711283 +astro-ph/9711284 +astro-ph/9711285 +astro-ph/9711286 +astro-ph/9711289 +astro-ph/9711290 +astro-ph/9711292 +astro-ph/9711293 +astro-ph/9711294 +astro-ph/9711296 +astro-ph/9711300 +astro-ph/9711302 +astro-ph/9711306 +astro-ph/9711307 +astro-ph/9711309 +astro-ph/9711311 +astro-ph/9711323 +astro-ph/9711324 +astro-ph/9711325 +astro-ph/9711326 +astro-ph/9711327 +astro-ph/9711328 +astro-ph/9711329 +astro-ph/9711330 +astro-ph/9711331 +astro-ph/9711332 +astro-ph/9711339 +astro-ph/9711341 +astro-ph/9711350 +astro-ph/9711354 +astro-ph/9711356 +astro-ph/9712001 +astro-ph/9712004 +astro-ph/9712005 +astro-ph/9712006 +astro-ph/9712007 +astro-ph/9712009 +astro-ph/9712010 +astro-ph/9712013 +astro-ph/9712016 +astro-ph/9712019 +astro-ph/9712021 +astro-ph/9712024 +astro-ph/9712025 +astro-ph/9712027 +astro-ph/9712028 +astro-ph/9712030 +astro-ph/9712032 +astro-ph/9712033 +astro-ph/9712035 +astro-ph/9712037 +astro-ph/9712038 +astro-ph/9712039 +astro-ph/9712042 +astro-ph/9712043 +astro-ph/9712046 +astro-ph/9712047 +astro-ph/9712049 +astro-ph/9712050 +astro-ph/9712051 +astro-ph/9712053 +astro-ph/9712054 +astro-ph/9712056 +astro-ph/9712058 +astro-ph/9712061 +astro-ph/9712063 +astro-ph/9712069 +astro-ph/9712070 +astro-ph/9712071 +astro-ph/9712072 +astro-ph/9712073 +astro-ph/9712077 +astro-ph/9712079 +astro-ph/9712080 +astro-ph/9712081 +astro-ph/9712082 +astro-ph/9712085 +astro-ph/9712086 +astro-ph/9712088 +astro-ph/9712091 +astro-ph/9712092 +astro-ph/9712094 +astro-ph/9712095 +astro-ph/9712096 +astro-ph/9712097 +astro-ph/9712098 +astro-ph/9712100 +astro-ph/9712101 +astro-ph/9712104 +astro-ph/9712108 +astro-ph/9712111 +astro-ph/9712119 +astro-ph/9712122 +astro-ph/9712124 +astro-ph/9712125 +astro-ph/9712129 +astro-ph/9712133 +astro-ph/9712138 +astro-ph/9712140 +astro-ph/9712142 +astro-ph/9712143 +astro-ph/9712144 +astro-ph/9712145 +astro-ph/9712153 +astro-ph/9712154 +astro-ph/9712156 +astro-ph/9712161 +astro-ph/9712162 +astro-ph/9712163 +astro-ph/9712165 +astro-ph/9712166 +astro-ph/9712170 +astro-ph/9712172 +astro-ph/9712175 +astro-ph/9712177 +astro-ph/9712178 +astro-ph/9712183 +astro-ph/9712184 +astro-ph/9712186 +astro-ph/9712188 +astro-ph/9712190 +astro-ph/9712191 +astro-ph/9712192 +astro-ph/9712194 +astro-ph/9712197 +astro-ph/9712199 +astro-ph/9712202 +astro-ph/9712203 +astro-ph/9712209 +astro-ph/9712210 +astro-ph/9712214 +astro-ph/9712216 +astro-ph/9712218 +astro-ph/9712220 +astro-ph/9712222 +astro-ph/9712223 +astro-ph/9712224 +astro-ph/9712226 +astro-ph/9712228 +astro-ph/9712230 +astro-ph/9712233 +astro-ph/9712235 +astro-ph/9712236 +astro-ph/9712237 +astro-ph/9712239 +astro-ph/9712240 +astro-ph/9712241 +astro-ph/9712242 +astro-ph/9712243 +astro-ph/9712247 +astro-ph/9712252 +astro-ph/9712258 +astro-ph/9712261 +astro-ph/9712263 +astro-ph/9712267 +astro-ph/9712269 +astro-ph/9712275 +astro-ph/9712276 +astro-ph/9712277 +astro-ph/9712279 +astro-ph/9712282 +astro-ph/9712283 +astro-ph/9712284 +astro-ph/9712288 +astro-ph/9712292 +astro-ph/9712294 +astro-ph/9712296 +astro-ph/9712297 +astro-ph/9712298 +astro-ph/9712300 +astro-ph/9712303 +astro-ph/9712307 +astro-ph/9712309 +astro-ph/9712312 +astro-ph/9712313 +astro-ph/9712314 +astro-ph/9712319 +astro-ph/9712323 +astro-ph/9712324 +astro-ph/9712326 +astro-ph/9712330 +astro-ph/9712332 +astro-ph/9712333 +astro-ph/9712336 +astro-ph/9712337 +astro-ph/9712347 +astro-ph/9712348 +astro-ph/9712350 +astro-ph/9712351 +astro-ph/9712353 +astro-ph/9712356 +astro-ph/9712357 +astro-ph/9801002 +astro-ph/9801006 +astro-ph/9801008 +astro-ph/9801009 +astro-ph/9801010 +astro-ph/9801012 +astro-ph/9801016 +astro-ph/9801017 +astro-ph/9801018 +astro-ph/9801020 +astro-ph/9801021 +astro-ph/9801023 +astro-ph/9801024 +astro-ph/9801026 +astro-ph/9801027 +astro-ph/9801037 +astro-ph/9801038 +astro-ph/9801040 +astro-ph/9801041 +astro-ph/9801042 +astro-ph/9801043 +astro-ph/9801045 +astro-ph/9801046 +astro-ph/9801048 +astro-ph/9801052 +astro-ph/9801053 +astro-ph/9801055 +astro-ph/9801056 +astro-ph/9801057 +astro-ph/9801059 +astro-ph/9801063 +astro-ph/9801065 +astro-ph/9801066 +astro-ph/9801067 +astro-ph/9801070 +astro-ph/9801081 +astro-ph/9801083 +astro-ph/9801084 +astro-ph/9801085 +astro-ph/9801086 +astro-ph/9801090 +astro-ph/9801093 +astro-ph/9801094 +astro-ph/9801095 +astro-ph/9801097 +astro-ph/9801098 +astro-ph/9801099 +astro-ph/9801100 +astro-ph/9801101 +astro-ph/9801104 +astro-ph/9801106 +astro-ph/9801107 +astro-ph/9801109 +astro-ph/9801110 +astro-ph/9801111 +astro-ph/9801112 +astro-ph/9801116 +astro-ph/9801124 +astro-ph/9801129 +astro-ph/9801130 +astro-ph/9801132 +astro-ph/9801133 +astro-ph/9801137 +astro-ph/9801140 +astro-ph/9801141 +astro-ph/9801142 +astro-ph/9801143 +astro-ph/9801144 +astro-ph/9801145 +astro-ph/9801148 +astro-ph/9801154 +astro-ph/9801158 +astro-ph/9801160 +astro-ph/9801166 +astro-ph/9801167 +astro-ph/9801168 +astro-ph/9801169 +astro-ph/9801171 +astro-ph/9801173 +astro-ph/9801176 +astro-ph/9801177 +astro-ph/9801178 +astro-ph/9801179 +astro-ph/9801180 +astro-ph/9801182 +astro-ph/9801183 +astro-ph/9801184 +astro-ph/9801186 +astro-ph/9801189 +astro-ph/9801191 +astro-ph/9801192 +astro-ph/9801193 +astro-ph/9801196 +astro-ph/9801199 +astro-ph/9801205 +astro-ph/9801206 +astro-ph/9801207 +astro-ph/9801212 +astro-ph/9801214 +astro-ph/9801216 +astro-ph/9801219 +astro-ph/9801220 +astro-ph/9801226 +astro-ph/9801227 +astro-ph/9801228 +astro-ph/9801230 +astro-ph/9801232 +astro-ph/9801236 +astro-ph/9801238 +astro-ph/9801240 +astro-ph/9801241 +astro-ph/9801242 +astro-ph/9801245 +astro-ph/9801246 +astro-ph/9801248 +astro-ph/9801249 +astro-ph/9801253 +astro-ph/9801254 +astro-ph/9801256 +astro-ph/9801258 +astro-ph/9801259 +astro-ph/9801260 +astro-ph/9801262 +astro-ph/9801267 +astro-ph/9801268 +astro-ph/9801270 +astro-ph/9801271 +astro-ph/9801273 +astro-ph/9801274 +astro-ph/9801277 +astro-ph/9801278 +astro-ph/9801279 +astro-ph/9801281 +astro-ph/9801282 +astro-ph/9801283 +astro-ph/9801284 +astro-ph/9801285 +astro-ph/9801286 +astro-ph/9801288 +astro-ph/9801289 +astro-ph/9801290 +astro-ph/9801291 +astro-ph/9801292 +astro-ph/9801293 +astro-ph/9801294 +astro-ph/9801295 +astro-ph/9801297 +astro-ph/9801298 +astro-ph/9801299 +astro-ph/9801301 +astro-ph/9801303 +astro-ph/9801305 +astro-ph/9801306 +astro-ph/9801307 +astro-ph/9801308 +astro-ph/9801309 +astro-ph/9801310 +astro-ph/9801315 +astro-ph/9801317 +astro-ph/9801318 +astro-ph/9801321 +astro-ph/9801322 +astro-ph/9802001 +astro-ph/9802002 +astro-ph/9802008 +astro-ph/9802011 +astro-ph/9802012 +astro-ph/9802013 +astro-ph/9802014 +astro-ph/9802017 +astro-ph/9802018 +astro-ph/9802019 +astro-ph/9802021 +astro-ph/9802022 +astro-ph/9802023 +astro-ph/9802024 +astro-ph/9802030 +astro-ph/9802031 +astro-ph/9802032 +astro-ph/9802034 +astro-ph/9802037 +astro-ph/9802038 +astro-ph/9802040 +astro-ph/9802041 +astro-ph/9802042 +astro-ph/9802043 +astro-ph/9802045 +astro-ph/9802046 +astro-ph/9802047 +astro-ph/9802052 +astro-ph/9802055 +astro-ph/9802056 +astro-ph/9802058 +astro-ph/9802059 +astro-ph/9802065 +astro-ph/9802066 +astro-ph/9802067 +astro-ph/9802069 +astro-ph/9802070 +astro-ph/9802071 +astro-ph/9802072 +astro-ph/9802078 +astro-ph/9802080 +astro-ph/9802081 +astro-ph/9802082 +astro-ph/9802085 +astro-ph/9802087 +astro-ph/9802088 +astro-ph/9802089 +astro-ph/9802090 +astro-ph/9802091 +astro-ph/9802092 +astro-ph/9802097 +astro-ph/9802099 +astro-ph/9802100 +astro-ph/9802103 +astro-ph/9802104 +astro-ph/9802105 +astro-ph/9802110 +astro-ph/9802111 +astro-ph/9802114 +astro-ph/9802115 +astro-ph/9802116 +astro-ph/9802117 +astro-ph/9802118 +astro-ph/9802119 +astro-ph/9802121 +astro-ph/9802123 +astro-ph/9802124 +astro-ph/9802128 +astro-ph/9802129 +astro-ph/9802130 +astro-ph/9802131 +astro-ph/9802132 +astro-ph/9802136 +astro-ph/9802137 +astro-ph/9802138 +astro-ph/9802143 +astro-ph/9802144 +astro-ph/9802146 +astro-ph/9802147 +astro-ph/9802151 +astro-ph/9802152 +astro-ph/9802153 +astro-ph/9802154 +astro-ph/9802155 +astro-ph/9802156 +astro-ph/9802159 +astro-ph/9802160 +astro-ph/9802161 +astro-ph/9802162 +astro-ph/9802164 +astro-ph/9802165 +astro-ph/9802166 +astro-ph/9802167 +astro-ph/9802169 +astro-ph/9802170 +astro-ph/9802173 +astro-ph/9802174 +astro-ph/9802175 +astro-ph/9802178 +astro-ph/9802179 +astro-ph/9802180 +astro-ph/9802185 +astro-ph/9802188 +astro-ph/9802190 +astro-ph/9802191 +astro-ph/9802192 +astro-ph/9802193 +astro-ph/9802194 +astro-ph/9802195 +astro-ph/9802197 +astro-ph/9802199 +astro-ph/9802200 +astro-ph/9802201 +astro-ph/9802202 +astro-ph/9802203 +astro-ph/9802204 +astro-ph/9802205 +astro-ph/9802206 +astro-ph/9802207 +astro-ph/9802208 +astro-ph/9802210 +astro-ph/9802212 +astro-ph/9802213 +astro-ph/9802215 +astro-ph/9802218 +astro-ph/9802219 +astro-ph/9802220 +astro-ph/9802224 +astro-ph/9802226 +astro-ph/9802227 +astro-ph/9802232 +astro-ph/9802233 +astro-ph/9802235 +astro-ph/9802240 +astro-ph/9802241 +astro-ph/9802242 +astro-ph/9802246 +astro-ph/9802247 +astro-ph/9802248 +astro-ph/9802249 +astro-ph/9802255 +astro-ph/9802256 +astro-ph/9802257 +astro-ph/9802261 +astro-ph/9802263 +astro-ph/9802264 +astro-ph/9802269 +astro-ph/9802271 +astro-ph/9802273 +astro-ph/9802274 +astro-ph/9802275 +astro-ph/9802276 +astro-ph/9802277 +astro-ph/9802278 +astro-ph/9802280 +astro-ph/9802283 +astro-ph/9802290 +astro-ph/9802293 +astro-ph/9802296 +astro-ph/9802297 +astro-ph/9802299 +astro-ph/9802304 +astro-ph/9802308 +astro-ph/9802309 +astro-ph/9802315 +astro-ph/9802318 +astro-ph/9802321 +astro-ph/9802324 +astro-ph/9802325 +astro-ph/9802329 +astro-ph/9802332 +astro-ph/9802333 +astro-ph/9802334 +astro-ph/9802335 +astro-ph/9802336 +astro-ph/9802337 +astro-ph/9802338 +astro-ph/9802340 +astro-ph/9802345 +astro-ph/9802346 +astro-ph/9802349 +astro-ph/9802350 +astro-ph/9802351 +astro-ph/9802353 +astro-ph/9802356 +astro-ph/9802357 +astro-ph/9802359 +astro-ph/9802361 +astro-ph/9802362 +astro-ph/9802364 +astro-ph/9803001 +astro-ph/9803003 +astro-ph/9803004 +astro-ph/9803008 +astro-ph/9803010 +astro-ph/9803011 +astro-ph/9803017 +astro-ph/9803018 +astro-ph/9803019 +astro-ph/9803020 +astro-ph/9803023 +astro-ph/9803024 +astro-ph/9803027 +astro-ph/9803028 +astro-ph/9803029 +astro-ph/9803031 +astro-ph/9803033 +astro-ph/9803036 +astro-ph/9803041 +astro-ph/9803044 +astro-ph/9803045 +astro-ph/9803047 +astro-ph/9803048 +astro-ph/9803050 +astro-ph/9803051 +astro-ph/9803053 +astro-ph/9803057 +astro-ph/9803059 +astro-ph/9803060 +astro-ph/9803061 +astro-ph/9803062 +astro-ph/9803063 +astro-ph/9803065 +astro-ph/9803067 +astro-ph/9803068 +astro-ph/9803076 +astro-ph/9803081 +astro-ph/9803085 +astro-ph/9803087 +astro-ph/9803088 +astro-ph/9803089 +astro-ph/9803092 +astro-ph/9803094 +astro-ph/9803095 +astro-ph/9803096 +astro-ph/9803097 +astro-ph/9803099 +astro-ph/9803102 +astro-ph/9803103 +astro-ph/9803104 +astro-ph/9803108 +astro-ph/9803111 +astro-ph/9803112 +astro-ph/9803113 +astro-ph/9803115 +astro-ph/9803117 +astro-ph/9803119 +astro-ph/9803120 +astro-ph/9803122 +astro-ph/9803123 +astro-ph/9803124 +astro-ph/9803128 +astro-ph/9803130 +astro-ph/9803132 +astro-ph/9803136 +astro-ph/9803140 +astro-ph/9803144 +astro-ph/9803145 +astro-ph/9803146 +astro-ph/9803149 +astro-ph/9803151 +astro-ph/9803153 +astro-ph/9803154 +astro-ph/9803157 +astro-ph/9803159 +astro-ph/9803161 +astro-ph/9803162 +astro-ph/9803163 +astro-ph/9803167 +astro-ph/9803170 +astro-ph/9803176 +astro-ph/9803178 +astro-ph/9803179 +astro-ph/9803180 +astro-ph/9803181 +astro-ph/9803182 +astro-ph/9803184 +astro-ph/9803185 +astro-ph/9803188 +astro-ph/9803192 +astro-ph/9803193 +astro-ph/9803196 +astro-ph/9803197 +astro-ph/9803198 +astro-ph/9803199 +astro-ph/9803202 +astro-ph/9803203 +astro-ph/9803205 +astro-ph/9803207 +astro-ph/9803208 +astro-ph/9803214 +astro-ph/9803215 +astro-ph/9803216 +astro-ph/9803217 +astro-ph/9803220 +astro-ph/9803221 +astro-ph/9803223 +astro-ph/9803229 +astro-ph/9803230 +astro-ph/9803235 +astro-ph/9803236 +astro-ph/9803237 +astro-ph/9803238 +astro-ph/9803239 +astro-ph/9803241 +astro-ph/9803242 +astro-ph/9803243 +astro-ph/9803245 +astro-ph/9803246 +astro-ph/9803247 +astro-ph/9803248 +astro-ph/9803249 +astro-ph/9803250 +astro-ph/9803254 +astro-ph/9803256 +astro-ph/9803257 +astro-ph/9803258 +astro-ph/9803259 +astro-ph/9803260 +astro-ph/9803262 +astro-ph/9803266 +astro-ph/9803267 +astro-ph/9803268 +astro-ph/9803270 +astro-ph/9803273 +astro-ph/9803274 +astro-ph/9803276 +astro-ph/9803278 +astro-ph/9803280 +astro-ph/9803281 +astro-ph/9803282 +astro-ph/9803283 +astro-ph/9803284 +astro-ph/9803285 +astro-ph/9803287 +astro-ph/9803288 +astro-ph/9803289 +astro-ph/9803293 +astro-ph/9803296 +astro-ph/9803300 +astro-ph/9803303 +astro-ph/9803304 +astro-ph/9803305 +astro-ph/9803306 +astro-ph/9803309 +astro-ph/9803311 +astro-ph/9803316 +astro-ph/9803318 +astro-ph/9803322 +astro-ph/9803323 +astro-ph/9803326 +astro-ph/9803327 +astro-ph/9803331 +astro-ph/9803332 +astro-ph/9803333 +astro-ph/9803340 +astro-ph/9803341 +astro-ph/9803342 +astro-ph/9803345 +astro-ph/9803346 +astro-ph/9804001 +astro-ph/9804002 +astro-ph/9804005 +astro-ph/9804006 +astro-ph/9804007 +astro-ph/9804009 +astro-ph/9804010 +astro-ph/9804011 +astro-ph/9804014 +astro-ph/9804016 +astro-ph/9804017 +astro-ph/9804018 +astro-ph/9804019 +astro-ph/9804020 +astro-ph/9804021 +astro-ph/9804022 +astro-ph/9804025 +astro-ph/9804029 +astro-ph/9804030 +astro-ph/9804032 +astro-ph/9804033 +astro-ph/9804035 +astro-ph/9804037 +astro-ph/9804038 +astro-ph/9804039 +astro-ph/9804040 +astro-ph/9804046 +astro-ph/9804049 +astro-ph/9804050 +astro-ph/9804053 +astro-ph/9804054 +astro-ph/9804058 +astro-ph/9804060 +astro-ph/9804061 +astro-ph/9804063 +astro-ph/9804065 +astro-ph/9804067 +astro-ph/9804069 +astro-ph/9804070 +astro-ph/9804071 +astro-ph/9804073 +astro-ph/9804074 +astro-ph/9804075 +astro-ph/9804076 +astro-ph/9804079 +astro-ph/9804084 +astro-ph/9804090 +astro-ph/9804091 +astro-ph/9804092 +astro-ph/9804093 +astro-ph/9804095 +astro-ph/9804096 +astro-ph/9804098 +astro-ph/9804099 +astro-ph/9804100 +astro-ph/9804101 +astro-ph/9804102 +astro-ph/9804103 +astro-ph/9804104 +astro-ph/9804106 +astro-ph/9804107 +astro-ph/9804108 +astro-ph/9804110 +astro-ph/9804112 +astro-ph/9804113 +astro-ph/9804114 +astro-ph/9804115 +astro-ph/9804116 +astro-ph/9804118 +astro-ph/9804119 +astro-ph/9804122 +astro-ph/9804127 +astro-ph/9804128 +astro-ph/9804129 +astro-ph/9804133 +astro-ph/9804135 +astro-ph/9804139 +astro-ph/9804140 +astro-ph/9804141 +astro-ph/9804142 +astro-ph/9804145 +astro-ph/9804147 +astro-ph/9804153 +astro-ph/9804154 +astro-ph/9804156 +astro-ph/9804157 +astro-ph/9804159 +astro-ph/9804160 +astro-ph/9804161 +astro-ph/9804162 +astro-ph/9804163 +astro-ph/9804164 +astro-ph/9804165 +astro-ph/9804167 +astro-ph/9804169 +astro-ph/9804170 +astro-ph/9804174 +astro-ph/9804179 +astro-ph/9804182 +astro-ph/9804183 +astro-ph/9804184 +astro-ph/9804187 +astro-ph/9804191 +astro-ph/9804192 +astro-ph/9804194 +astro-ph/9804195 +astro-ph/9804198 +astro-ph/9804200 +astro-ph/9804201 +astro-ph/9804203 +astro-ph/9804205 +astro-ph/9804206 +astro-ph/9804210 +astro-ph/9804213 +astro-ph/9804214 +astro-ph/9804215 +astro-ph/9804217 +astro-ph/9804220 +astro-ph/9804221 +astro-ph/9804222 +astro-ph/9804224 +astro-ph/9804225 +astro-ph/9804226 +astro-ph/9804228 +astro-ph/9804229 +astro-ph/9804231 +astro-ph/9804233 +astro-ph/9804234 +astro-ph/9804240 +astro-ph/9804241 +astro-ph/9804244 +astro-ph/9804245 +astro-ph/9804247 +astro-ph/9804248 +astro-ph/9804250 +astro-ph/9804251 +astro-ph/9804253 +astro-ph/9804254 +astro-ph/9804256 +astro-ph/9804259 +astro-ph/9804260 +astro-ph/9804261 +astro-ph/9804262 +astro-ph/9804263 +astro-ph/9804265 +astro-ph/9804266 +astro-ph/9804269 +astro-ph/9804271 +astro-ph/9804272 +astro-ph/9804273 +astro-ph/9804277 +astro-ph/9804281 +astro-ph/9804284 +astro-ph/9804286 +astro-ph/9804287 +astro-ph/9804288 +astro-ph/9804292 +astro-ph/9804294 +astro-ph/9804296 +astro-ph/9804300 +astro-ph/9804302 +astro-ph/9804304 +astro-ph/9804306 +astro-ph/9804308 +astro-ph/9804310 +astro-ph/9804313 +astro-ph/9804315 +astro-ph/9804317 +astro-ph/9804322 +astro-ph/9804323 +astro-ph/9804326 +astro-ph/9804327 +astro-ph/9804328 +astro-ph/9804333 +astro-ph/9804334 +astro-ph/9804335 +astro-ph/9804336 +astro-ph/9804337 +astro-ph/9804338 +astro-ph/9804339 +astro-ph/9804341 +astro-ph/9805001 +astro-ph/9805002 +astro-ph/9805006 +astro-ph/9805007 +astro-ph/9805008 +astro-ph/9805011 +astro-ph/9805012 +astro-ph/9805021 +astro-ph/9805024 +astro-ph/9805028 +astro-ph/9805029 +astro-ph/9805031 +astro-ph/9805034 +astro-ph/9805038 +astro-ph/9805044 +astro-ph/9805045 +astro-ph/9805060 +astro-ph/9805071 +astro-ph/9805077 +astro-ph/9805079 +astro-ph/9805080 +astro-ph/9805081 +astro-ph/9805082 +astro-ph/9805083 +astro-ph/9805084 +astro-ph/9805085 +astro-ph/9805086 +astro-ph/9805087 +astro-ph/9805090 +astro-ph/9805092 +astro-ph/9805093 +astro-ph/9805095 +astro-ph/9805096 +astro-ph/9805099 +astro-ph/9805101 +astro-ph/9805102 +astro-ph/9805103 +astro-ph/9805107 +astro-ph/9805109 +astro-ph/9805111 +astro-ph/9805112 +astro-ph/9805113 +astro-ph/9805115 +astro-ph/9805116 +astro-ph/9805119 +astro-ph/9805120 +astro-ph/9805122 +astro-ph/9805125 +astro-ph/9805127 +astro-ph/9805128 +astro-ph/9805129 +astro-ph/9805130 +astro-ph/9805131 +astro-ph/9805132 +astro-ph/9805133 +astro-ph/9805134 +astro-ph/9805137 +astro-ph/9805138 +astro-ph/9805139 +astro-ph/9805140 +astro-ph/9805141 +astro-ph/9805145 +astro-ph/9805147 +astro-ph/9805148 +astro-ph/9805151 +astro-ph/9805153 +astro-ph/9805154 +astro-ph/9805155 +astro-ph/9805157 +astro-ph/9805162 +astro-ph/9805163 +astro-ph/9805166 +astro-ph/9805167 +astro-ph/9805168 +astro-ph/9805169 +astro-ph/9805171 +astro-ph/9805172 +astro-ph/9805174 +astro-ph/9805175 +astro-ph/9805177 +astro-ph/9805178 +astro-ph/9805179 +astro-ph/9805182 +astro-ph/9805194 +astro-ph/9805198 +astro-ph/9805200 +astro-ph/9805202 +astro-ph/9805203 +astro-ph/9805208 +astro-ph/9805212 +astro-ph/9805216 +astro-ph/9805217 +astro-ph/9805218 +astro-ph/9805219 +astro-ph/9805220 +astro-ph/9805222 +astro-ph/9805225 +astro-ph/9805231 +astro-ph/9805236 +astro-ph/9805238 +astro-ph/9805240 +astro-ph/9805241 +astro-ph/9805242 +astro-ph/9805245 +astro-ph/9805249 +astro-ph/9805254 +astro-ph/9805256 +astro-ph/9805258 +astro-ph/9805259 +astro-ph/9805261 +astro-ph/9805262 +astro-ph/9805263 +astro-ph/9805264 +astro-ph/9805265 +astro-ph/9805267 +astro-ph/9805269 +astro-ph/9805270 +astro-ph/9805271 +astro-ph/9805273 +astro-ph/9805274 +astro-ph/9805275 +astro-ph/9805277 +astro-ph/9805278 +astro-ph/9805279 +astro-ph/9805280 +astro-ph/9805281 +astro-ph/9805282 +astro-ph/9805283 +astro-ph/9805284 +astro-ph/9805285 +astro-ph/9805286 +astro-ph/9805288 +astro-ph/9805289 +astro-ph/9805291 +astro-ph/9805293 +astro-ph/9805294 +astro-ph/9805296 +astro-ph/9805300 +astro-ph/9805301 +astro-ph/9805302 +astro-ph/9805304 +astro-ph/9805307 +astro-ph/9805308 +astro-ph/9805309 +astro-ph/9805310 +astro-ph/9805314 +astro-ph/9805315 +astro-ph/9805316 +astro-ph/9805319 +astro-ph/9805322 +astro-ph/9805323 +astro-ph/9805326 +astro-ph/9805329 +astro-ph/9805333 +astro-ph/9805334 +astro-ph/9805335 +astro-ph/9805338 +astro-ph/9805339 +astro-ph/9805340 +astro-ph/9805342 +astro-ph/9805345 +astro-ph/9805347 +astro-ph/9805353 +astro-ph/9805354 +astro-ph/9805355 +astro-ph/9805357 +astro-ph/9805358 +astro-ph/9805359 +astro-ph/9805361 +astro-ph/9805363 +astro-ph/9805370 +astro-ph/9805371 +astro-ph/9805372 +astro-ph/9806001 +astro-ph/9806004 +astro-ph/9806006 +astro-ph/9806008 +astro-ph/9806009 +astro-ph/9806010 +astro-ph/9806012 +astro-ph/9806014 +astro-ph/9806020 +astro-ph/9806021 +astro-ph/9806026 +astro-ph/9806027 +astro-ph/9806029 +astro-ph/9806030 +astro-ph/9806032 +astro-ph/9806033 +astro-ph/9806035 +astro-ph/9806036 +astro-ph/9806037 +astro-ph/9806038 +astro-ph/9806039 +astro-ph/9806040 +astro-ph/9806041 +astro-ph/9806042 +astro-ph/9806045 +astro-ph/9806046 +astro-ph/9806047 +astro-ph/9806048 +astro-ph/9806050 +astro-ph/9806052 +astro-ph/9806053 +astro-ph/9806056 +astro-ph/9806058 +astro-ph/9806059 +astro-ph/9806062 +astro-ph/9806064 +astro-ph/9806065 +astro-ph/9806067 +astro-ph/9806068 +astro-ph/9806071 +astro-ph/9806072 +astro-ph/9806073 +astro-ph/9806074 +astro-ph/9806075 +astro-ph/9806076 +astro-ph/9806077 +astro-ph/9806078 +astro-ph/9806079 +astro-ph/9806080 +astro-ph/9806081 +astro-ph/9806082 +astro-ph/9806085 +astro-ph/9806086 +astro-ph/9806088 +astro-ph/9806089 +astro-ph/9806090 +astro-ph/9806091 +astro-ph/9806093 +astro-ph/9806095 +astro-ph/9806098 +astro-ph/9806099 +astro-ph/9806100 +astro-ph/9806104 +astro-ph/9806107 +astro-ph/9806109 +astro-ph/9806112 +astro-ph/9806116 +astro-ph/9806118 +astro-ph/9806119 +astro-ph/9806120 +astro-ph/9806121 +astro-ph/9806123 +astro-ph/9806124 +astro-ph/9806128 +astro-ph/9806129 +astro-ph/9806137 +astro-ph/9806138 +astro-ph/9806139 +astro-ph/9806140 +astro-ph/9806143 +astro-ph/9806145 +astro-ph/9806146 +astro-ph/9806147 +astro-ph/9806148 +astro-ph/9806149 +astro-ph/9806153 +astro-ph/9806154 +astro-ph/9806155 +astro-ph/9806157 +astro-ph/9806158 +astro-ph/9806164 +astro-ph/9806165 +astro-ph/9806167 +astro-ph/9806168 +astro-ph/9806169 +astro-ph/9806171 +astro-ph/9806172 +astro-ph/9806174 +astro-ph/9806175 +astro-ph/9806177 +astro-ph/9806183 +astro-ph/9806185 +astro-ph/9806186 +astro-ph/9806187 +astro-ph/9806188 +astro-ph/9806189 +astro-ph/9806193 +astro-ph/9806194 +astro-ph/9806195 +astro-ph/9806196 +astro-ph/9806198 +astro-ph/9806200 +astro-ph/9806205 +astro-ph/9806206 +astro-ph/9806207 +astro-ph/9806209 +astro-ph/9806211 +astro-ph/9806212 +astro-ph/9806213 +astro-ph/9806215 +astro-ph/9806219 +astro-ph/9806224 +astro-ph/9806225 +astro-ph/9806226 +astro-ph/9806228 +astro-ph/9806230 +astro-ph/9806233 +astro-ph/9806234 +astro-ph/9806235 +astro-ph/9806236 +astro-ph/9806240 +astro-ph/9806241 +astro-ph/9806242 +astro-ph/9806243 +astro-ph/9806244 +astro-ph/9806245 +astro-ph/9806246 +astro-ph/9806248 +astro-ph/9806251 +astro-ph/9806252 +astro-ph/9806253 +astro-ph/9806255 +astro-ph/9806256 +astro-ph/9806257 +astro-ph/9806258 +astro-ph/9806259 +astro-ph/9806263 +astro-ph/9806265 +astro-ph/9806268 +astro-ph/9806269 +astro-ph/9806273 +astro-ph/9806274 +astro-ph/9806275 +astro-ph/9806276 +astro-ph/9806277 +astro-ph/9806278 +astro-ph/9806279 +astro-ph/9806280 +astro-ph/9806283 +astro-ph/9806284 +astro-ph/9806285 +astro-ph/9806286 +astro-ph/9806287 +astro-ph/9806289 +astro-ph/9806290 +astro-ph/9806291 +astro-ph/9806292 +astro-ph/9806295 +astro-ph/9806297 +astro-ph/9806298 +astro-ph/9806299 +astro-ph/9806300 +astro-ph/9806303 +astro-ph/9806305 +astro-ph/9806306 +astro-ph/9806307 +astro-ph/9806309 +astro-ph/9806310 +astro-ph/9806311 +astro-ph/9806315 +astro-ph/9806323 +astro-ph/9806324 +astro-ph/9806326 +astro-ph/9806327 +astro-ph/9806328 +astro-ph/9806329 +astro-ph/9806331 +astro-ph/9806332 +astro-ph/9806333 +astro-ph/9806334 +astro-ph/9806335 +astro-ph/9806336 +astro-ph/9806339 +astro-ph/9806341 +astro-ph/9806342 +astro-ph/9806344 +astro-ph/9806345 +astro-ph/9806347 +astro-ph/9806348 +astro-ph/9806349 +astro-ph/9806350 +astro-ph/9806353 +astro-ph/9806355 +astro-ph/9806356 +astro-ph/9806357 +astro-ph/9806361 +astro-ph/9806363 +astro-ph/9806364 +astro-ph/9806365 +astro-ph/9806366 +astro-ph/9806367 +astro-ph/9806368 +astro-ph/9806370 +astro-ph/9806372 +astro-ph/9806377 +astro-ph/9806379 +astro-ph/9806382 +astro-ph/9806383 +astro-ph/9806386 +astro-ph/9806387 +astro-ph/9806389 +astro-ph/9806390 +astro-ph/9806391 +astro-ph/9806393 +astro-ph/9806395 +astro-ph/9806396 +astro-ph/9806397 +astro-ph/9806398 +astro-ph/9806399 +astro-ph/9806401 +astro-ph/9807003 +astro-ph/9807005 +astro-ph/9807008 +astro-ph/9807009 +astro-ph/9807010 +astro-ph/9807011 +astro-ph/9807012 +astro-ph/9807013 +astro-ph/9807015 +astro-ph/9807018 +astro-ph/9807019 +astro-ph/9807020 +astro-ph/9807021 +astro-ph/9807022 +astro-ph/9807023 +astro-ph/9807025 +astro-ph/9807029 +astro-ph/9807030 +astro-ph/9807031 +astro-ph/9807032 +astro-ph/9807034 +astro-ph/9807035 +astro-ph/9807039 +astro-ph/9807040 +astro-ph/9807042 +astro-ph/9807046 +astro-ph/9807047 +astro-ph/9807050 +astro-ph/9807055 +astro-ph/9807057 +astro-ph/9807067 +astro-ph/9807068 +astro-ph/9807069 +astro-ph/9807070 +astro-ph/9807073 +astro-ph/9807074 +astro-ph/9807075 +astro-ph/9807081 +astro-ph/9807082 +astro-ph/9807083 +astro-ph/9807089 +astro-ph/9807096 +astro-ph/9807097 +astro-ph/9807098 +astro-ph/9807099 +astro-ph/9807100 +astro-ph/9807103 +astro-ph/9807107 +astro-ph/9807109 +astro-ph/9807110 +astro-ph/9807112 +astro-ph/9807115 +astro-ph/9807116 +astro-ph/9807117 +astro-ph/9807120 +astro-ph/9807125 +astro-ph/9807126 +astro-ph/9807128 +astro-ph/9807131 +astro-ph/9807133 +astro-ph/9807137 +astro-ph/9807139 +astro-ph/9807140 +astro-ph/9807142 +astro-ph/9807143 +astro-ph/9807144 +astro-ph/9807145 +astro-ph/9807146 +astro-ph/9807149 +astro-ph/9807151 +astro-ph/9807157 +astro-ph/9807161 +astro-ph/9807163 +astro-ph/9807164 +astro-ph/9807166 +astro-ph/9807174 +astro-ph/9807175 +astro-ph/9807176 +astro-ph/9807179 +astro-ph/9807180 +astro-ph/9807182 +astro-ph/9807184 +astro-ph/9807189 +astro-ph/9807190 +astro-ph/9807191 +astro-ph/9807193 +astro-ph/9807194 +astro-ph/9807195 +astro-ph/9807198 +astro-ph/9807204 +astro-ph/9807205 +astro-ph/9807206 +astro-ph/9807207 +astro-ph/9807208 +astro-ph/9807210 +astro-ph/9807211 +astro-ph/9807212 +astro-ph/9807213 +astro-ph/9807220 +astro-ph/9807221 +astro-ph/9807222 +astro-ph/9807223 +astro-ph/9807224 +astro-ph/9807225 +astro-ph/9807228 +astro-ph/9807229 +astro-ph/9807230 +astro-ph/9807232 +astro-ph/9807233 +astro-ph/9807236 +astro-ph/9807238 +astro-ph/9807240 +astro-ph/9807242 +astro-ph/9807243 +astro-ph/9807246 +astro-ph/9807247 +astro-ph/9807251 +astro-ph/9807252 +astro-ph/9807254 +astro-ph/9807256 +astro-ph/9807257 +astro-ph/9807260 +astro-ph/9807262 +astro-ph/9807263 +astro-ph/9807264 +astro-ph/9807269 +astro-ph/9807272 +astro-ph/9807273 +astro-ph/9807274 +astro-ph/9807275 +astro-ph/9807276 +astro-ph/9807277 +astro-ph/9807281 +astro-ph/9807283 +astro-ph/9807290 +astro-ph/9807291 +astro-ph/9807293 +astro-ph/9807294 +astro-ph/9807295 +astro-ph/9807299 +astro-ph/9807300 +astro-ph/9807302 +astro-ph/9807303 +astro-ph/9807304 +astro-ph/9807305 +astro-ph/9807306 +astro-ph/9807313 +astro-ph/9807314 +astro-ph/9807315 +astro-ph/9807317 +astro-ph/9807318 +astro-ph/9807322 +astro-ph/9807324 +astro-ph/9807325 +astro-ph/9807326 +astro-ph/9807329 +astro-ph/9807330 +astro-ph/9807331 +astro-ph/9807336 +astro-ph/9807337 +astro-ph/9807338 +astro-ph/9807341 +astro-ph/9807349 +astro-ph/9807350 +astro-ph/9808001 +astro-ph/9808002 +astro-ph/9808007 +astro-ph/9808008 +astro-ph/9808011 +astro-ph/9808013 +astro-ph/9808015 +astro-ph/9808016 +astro-ph/9808017 +astro-ph/9808018 +astro-ph/9808019 +astro-ph/9808020 +astro-ph/9808022 +astro-ph/9808027 +astro-ph/9808028 +astro-ph/9808031 +astro-ph/9808032 +astro-ph/9808035 +astro-ph/9808036 +astro-ph/9808038 +astro-ph/9808039 +astro-ph/9808041 +astro-ph/9808042 +astro-ph/9808043 +astro-ph/9808044 +astro-ph/9808045 +astro-ph/9808047 +astro-ph/9808054 +astro-ph/9808056 +astro-ph/9808057 +astro-ph/9808058 +astro-ph/9808060 +astro-ph/9808061 +astro-ph/9808062 +astro-ph/9808065 +astro-ph/9808069 +astro-ph/9808070 +astro-ph/9808071 +astro-ph/9808072 +astro-ph/9808073 +astro-ph/9808075 +astro-ph/9808081 +astro-ph/9808082 +astro-ph/9808085 +astro-ph/9808086 +astro-ph/9808089 +astro-ph/9808090 +astro-ph/9808091 +astro-ph/9808095 +astro-ph/9808096 +astro-ph/9808102 +astro-ph/9808103 +astro-ph/9808106 +astro-ph/9808109 +astro-ph/9808110 +astro-ph/9808113 +astro-ph/9808115 +astro-ph/9808118 +astro-ph/9808119 +astro-ph/9808120 +astro-ph/9808121 +astro-ph/9808123 +astro-ph/9808125 +astro-ph/9808126 +astro-ph/9808127 +astro-ph/9808128 +astro-ph/9808130 +astro-ph/9808135 +astro-ph/9808137 +astro-ph/9808138 +astro-ph/9808140 +astro-ph/9808143 +astro-ph/9808144 +astro-ph/9808145 +astro-ph/9808147 +astro-ph/9808148 +astro-ph/9808149 +astro-ph/9808151 +astro-ph/9808154 +astro-ph/9808155 +astro-ph/9808156 +astro-ph/9808157 +astro-ph/9808158 +astro-ph/9808159 +astro-ph/9808160 +astro-ph/9808161 +astro-ph/9808164 +astro-ph/9808168 +astro-ph/9808172 +astro-ph/9808174 +astro-ph/9808175 +astro-ph/9808176 +astro-ph/9808179 +astro-ph/9808184 +astro-ph/9808185 +astro-ph/9808187 +astro-ph/9808189 +astro-ph/9808191 +astro-ph/9808195 +astro-ph/9808199 +astro-ph/9808200 +astro-ph/9808201 +astro-ph/9808203 +astro-ph/9808206 +astro-ph/9808207 +astro-ph/9808208 +astro-ph/9808210 +astro-ph/9808211 +astro-ph/9808213 +astro-ph/9808215 +astro-ph/9808217 +astro-ph/9808218 +astro-ph/9808219 +astro-ph/9808221 +astro-ph/9808223 +astro-ph/9808224 +astro-ph/9808225 +astro-ph/9808227 +astro-ph/9808228 +astro-ph/9808229 +astro-ph/9808232 +astro-ph/9808235 +astro-ph/9808236 +astro-ph/9808237 +astro-ph/9808238 +astro-ph/9808239 +astro-ph/9808242 +astro-ph/9808244 +astro-ph/9808245 +astro-ph/9808250 +astro-ph/9808251 +astro-ph/9808253 +astro-ph/9808254 +astro-ph/9808259 +astro-ph/9808264 +astro-ph/9808265 +astro-ph/9808267 +astro-ph/9808268 +astro-ph/9808270 +astro-ph/9808271 +astro-ph/9808272 +astro-ph/9808274 +astro-ph/9808275 +astro-ph/9808276 +astro-ph/9808277 +astro-ph/9808278 +astro-ph/9808280 +astro-ph/9808281 +astro-ph/9808283 +astro-ph/9808284 +astro-ph/9808285 +astro-ph/9808286 +astro-ph/9808287 +astro-ph/9808289 +astro-ph/9808290 +astro-ph/9808291 +astro-ph/9808292 +astro-ph/9808298 +astro-ph/9808299 +astro-ph/9808301 +astro-ph/9808302 +astro-ph/9808303 +astro-ph/9808305 +astro-ph/9808306 +astro-ph/9808307 +astro-ph/9808309 +astro-ph/9808313 +astro-ph/9808314 +astro-ph/9808315 +astro-ph/9808316 +astro-ph/9808317 +astro-ph/9808319 +astro-ph/9808320 +astro-ph/9808321 +astro-ph/9808322 +astro-ph/9808323 +astro-ph/9808324 +astro-ph/9808326 +astro-ph/9808328 +astro-ph/9808331 +astro-ph/9808332 +astro-ph/9808333 +astro-ph/9808337 +astro-ph/9808338 +astro-ph/9808339 +astro-ph/9808340 +astro-ph/9808341 +astro-ph/9808344 +astro-ph/9808346 +astro-ph/9808347 +astro-ph/9808353 +astro-ph/9808354 +astro-ph/9808355 +astro-ph/9808356 +astro-ph/9808357 +astro-ph/9808359 +astro-ph/9809002 +astro-ph/9809003 +astro-ph/9809007 +astro-ph/9809012 +astro-ph/9809016 +astro-ph/9809017 +astro-ph/9809018 +astro-ph/9809019 +astro-ph/9809022 +astro-ph/9809024 +astro-ph/9809025 +astro-ph/9809026 +astro-ph/9809027 +astro-ph/9809031 +astro-ph/9809036 +astro-ph/9809039 +astro-ph/9809042 +astro-ph/9809043 +astro-ph/9809046 +astro-ph/9809047 +astro-ph/9809049 +astro-ph/9809050 +astro-ph/9809051 +astro-ph/9809053 +astro-ph/9809055 +astro-ph/9809058 +astro-ph/9809060 +astro-ph/9809061 +astro-ph/9809062 +astro-ph/9809063 +astro-ph/9809064 +astro-ph/9809065 +astro-ph/9809066 +astro-ph/9809067 +astro-ph/9809068 +astro-ph/9809069 +astro-ph/9809072 +astro-ph/9809078 +astro-ph/9809081 +astro-ph/9809082 +astro-ph/9809083 +astro-ph/9809091 +astro-ph/9809093 +astro-ph/9809094 +astro-ph/9809095 +astro-ph/9809097 +astro-ph/9809098 +astro-ph/9809099 +astro-ph/9809100 +astro-ph/9809103 +astro-ph/9809105 +astro-ph/9809106 +astro-ph/9809114 +astro-ph/9809115 +astro-ph/9809116 +astro-ph/9809122 +astro-ph/9809123 +astro-ph/9809124 +astro-ph/9809125 +astro-ph/9809126 +astro-ph/9809130 +astro-ph/9809132 +astro-ph/9809134 +astro-ph/9809135 +astro-ph/9809136 +astro-ph/9809140 +astro-ph/9809141 +astro-ph/9809144 +astro-ph/9809145 +astro-ph/9809146 +astro-ph/9809150 +astro-ph/9809151 +astro-ph/9809154 +astro-ph/9809158 +astro-ph/9809159 +astro-ph/9809160 +astro-ph/9809165 +astro-ph/9809166 +astro-ph/9809174 +astro-ph/9809175 +astro-ph/9809176 +astro-ph/9809180 +astro-ph/9809181 +astro-ph/9809182 +astro-ph/9809184 +astro-ph/9809188 +astro-ph/9809190 +astro-ph/9809191 +astro-ph/9809195 +astro-ph/9809196 +astro-ph/9809197 +astro-ph/9809199 +astro-ph/9809201 +astro-ph/9809202 +astro-ph/9809203 +astro-ph/9809204 +astro-ph/9809205 +astro-ph/9809206 +astro-ph/9809208 +astro-ph/9809210 +astro-ph/9809213 +astro-ph/9809216 +astro-ph/9809220 +astro-ph/9809221 +astro-ph/9809222 +astro-ph/9809227 +astro-ph/9809231 +astro-ph/9809232 +astro-ph/9809234 +astro-ph/9809235 +astro-ph/9809236 +astro-ph/9809237 +astro-ph/9809240 +astro-ph/9809241 +astro-ph/9809245 +astro-ph/9809246 +astro-ph/9809252 +astro-ph/9809254 +astro-ph/9809257 +astro-ph/9809258 +astro-ph/9809260 +astro-ph/9809261 +astro-ph/9809262 +astro-ph/9809264 +astro-ph/9809266 +astro-ph/9809267 +astro-ph/9809269 +astro-ph/9809271 +astro-ph/9809273 +astro-ph/9809275 +astro-ph/9809277 +astro-ph/9809279 +astro-ph/9809281 +astro-ph/9809282 +astro-ph/9809284 +astro-ph/9809289 +astro-ph/9809290 +astro-ph/9809293 +astro-ph/9809295 +astro-ph/9809298 +astro-ph/9809299 +astro-ph/9809301 +astro-ph/9809303 +astro-ph/9809304 +astro-ph/9809305 +astro-ph/9809309 +astro-ph/9809312 +astro-ph/9809314 +astro-ph/9809319 +astro-ph/9809321 +astro-ph/9809323 +astro-ph/9809324 +astro-ph/9809328 +astro-ph/9809333 +astro-ph/9809334 +astro-ph/9809335 +astro-ph/9809336 +astro-ph/9809337 +astro-ph/9809340 +astro-ph/9809344 +astro-ph/9809345 +astro-ph/9809346 +astro-ph/9809349 +astro-ph/9809350 +astro-ph/9809351 +astro-ph/9809354 +astro-ph/9809355 +astro-ph/9809357 +astro-ph/9809362 +astro-ph/9809363 +astro-ph/9809364 +astro-ph/9809365 +astro-ph/9809374 +chao-dyn/9701001 Chaotic Dynamics +chao-dyn/9701002 Chaotic Dynamics +chao-dyn/9701005 Chaotic Dynamics +chao-dyn/9701006 Chaotic Dynamics +chao-dyn/9701008 Chaotic Dynamics +chao-dyn/9701011 Chaotic Dynamics +chao-dyn/9701013 Chaotic Dynamics +chao-dyn/9701014 Chaotic Dynamics +chao-dyn/9701017 Chaotic Dynamics +chao-dyn/9701019 Chaotic Dynamics +chao-dyn/9701020 Chaotic Dynamics +chao-dyn/9701023 Chaotic Dynamics +chao-dyn/9701026 Chaotic Dynamics +chao-dyn/9702001 Chaotic Dynamics +chao-dyn/9702002 Chaotic Dynamics +chao-dyn/9702005 Chaotic Dynamics +chao-dyn/9702006 Chaotic Dynamics +chao-dyn/9702007 Chaotic Dynamics +chao-dyn/9702009 Chaotic Dynamics +chao-dyn/9702011 Chaotic Dynamics +chao-dyn/9702014 Chaotic Dynamics +chao-dyn/9702016 Chaotic Dynamics +chao-dyn/9703002 Chaotic Dynamics +chao-dyn/9703004 Chaotic Dynamics +chao-dyn/9703005 Chaotic Dynamics +chao-dyn/9703008 Chaotic Dynamics +chao-dyn/9703009 Chaotic Dynamics +chao-dyn/9703011 Chaotic Dynamics +chao-dyn/9703012 Chaotic Dynamics +chao-dyn/9703013 Chaotic Dynamics +chao-dyn/9703014 Chaotic Dynamics +chao-dyn/9703015 Chaotic Dynamics +chao-dyn/9703017 Chaotic Dynamics +chao-dyn/9703018 Chaotic Dynamics +chao-dyn/9704001 Chaotic Dynamics +chao-dyn/9704002 Chaotic Dynamics +chao-dyn/9704004 Chaotic Dynamics +chao-dyn/9704006 Chaotic Dynamics +chao-dyn/9704009 Chaotic Dynamics +chao-dyn/9704010 Chaotic Dynamics +chao-dyn/9704011 Chaotic Dynamics +chao-dyn/9704012 Chaotic Dynamics +chao-dyn/9704013 Chaotic Dynamics +chao-dyn/9704014 Chaotic Dynamics +chao-dyn/9704015 Chaotic Dynamics +chao-dyn/9704016 Chaotic Dynamics +chao-dyn/9704017 Chaotic Dynamics +chao-dyn/9704018 Chaotic Dynamics +chao-dyn/9704021 Chaotic Dynamics +chao-dyn/9705001 Chaotic Dynamics +chao-dyn/9705006 Chaotic Dynamics +chao-dyn/9705007 Chaotic Dynamics +chao-dyn/9705008 Chaotic Dynamics +chao-dyn/9705009 Chaotic Dynamics +chao-dyn/9705011 Chaotic Dynamics +chao-dyn/9705018 Chaotic Dynamics +chao-dyn/9706002 Chaotic Dynamics +chao-dyn/9706003 Chaotic Dynamics +chao-dyn/9706004 Chaotic Dynamics +chao-dyn/9706006 Chaotic Dynamics +chao-dyn/9706008 Chaotic Dynamics +chao-dyn/9706009 Chaotic Dynamics +chao-dyn/9706011 Chaotic Dynamics +chao-dyn/9706012 Chaotic Dynamics +chao-dyn/9706015 Chaotic Dynamics +chao-dyn/9706016 Chaotic Dynamics +chao-dyn/9706017 Chaotic Dynamics +chao-dyn/9706018 Chaotic Dynamics +chao-dyn/9706019 Chaotic Dynamics +chao-dyn/9706020 Chaotic Dynamics +chao-dyn/9706021 Chaotic Dynamics +chao-dyn/9706022 Chaotic Dynamics +chao-dyn/9706023 Chaotic Dynamics +chao-dyn/9706024 Chaotic Dynamics +chao-dyn/9706025 Chaotic Dynamics +chao-dyn/9706028 Chaotic Dynamics +chao-dyn/9706029 Chaotic Dynamics +chao-dyn/9707001 Chaotic Dynamics +chao-dyn/9707002 Chaotic Dynamics +chao-dyn/9707003 Chaotic Dynamics +chao-dyn/9707004 Chaotic Dynamics +chao-dyn/9707005 Chaotic Dynamics +chao-dyn/9707006 Chaotic Dynamics +chao-dyn/9707007 Chaotic Dynamics +chao-dyn/9707008 Chaotic Dynamics +chao-dyn/9707010 Chaotic Dynamics +chao-dyn/9707014 Chaotic Dynamics +chao-dyn/9707016 Chaotic Dynamics +chao-dyn/9707018 Chaotic Dynamics +chao-dyn/9707019 Chaotic Dynamics +chao-dyn/9707020 Chaotic Dynamics +chao-dyn/9707022 Chaotic Dynamics +chao-dyn/9707023 Chaotic Dynamics +chao-dyn/9707024 Chaotic Dynamics +chao-dyn/9708001 Chaotic Dynamics +chao-dyn/9708002 Chaotic Dynamics +chao-dyn/9708003 Chaotic Dynamics +chao-dyn/9708006 Chaotic Dynamics +chao-dyn/9708007 Chaotic Dynamics +chao-dyn/9708011 Chaotic Dynamics +chao-dyn/9708014 Chaotic Dynamics +chao-dyn/9708016 Chaotic Dynamics +chao-dyn/9708017 Chaotic Dynamics +chao-dyn/9708019 Chaotic Dynamics +chao-dyn/9708020 Chaotic Dynamics +chao-dyn/9709003 Chaotic Dynamics +chao-dyn/9709004 Chaotic Dynamics +chao-dyn/9709005 Chaotic Dynamics +chao-dyn/9709007 Chaotic Dynamics +chao-dyn/9709009 Chaotic Dynamics +chao-dyn/9709012 Chaotic Dynamics +chao-dyn/9709013 Chaotic Dynamics +chao-dyn/9709014 Chaotic Dynamics +chao-dyn/9709017 Chaotic Dynamics +chao-dyn/9709019 Chaotic Dynamics +chao-dyn/9709021 Chaotic Dynamics +chao-dyn/9709025 Chaotic Dynamics +chao-dyn/9709026 Chaotic Dynamics +chao-dyn/9709028 Chaotic Dynamics +chao-dyn/9709029 Chaotic Dynamics +chao-dyn/9709030 Chaotic Dynamics +chao-dyn/9709031 Chaotic Dynamics +chao-dyn/9709033 Chaotic Dynamics +chao-dyn/9709034 Chaotic Dynamics +chao-dyn/9709036 Chaotic Dynamics +chao-dyn/9709037 Chaotic Dynamics +chao-dyn/9710002 Chaotic Dynamics +chao-dyn/9710006 Chaotic Dynamics +chao-dyn/9710007 Chaotic Dynamics +chao-dyn/9710009 Chaotic Dynamics +chao-dyn/9710010 Chaotic Dynamics +chao-dyn/9710011 Chaotic Dynamics +chao-dyn/9710012 Chaotic Dynamics +chao-dyn/9710014 Chaotic Dynamics +chao-dyn/9710017 Chaotic Dynamics +chao-dyn/9710020 Chaotic Dynamics +chao-dyn/9710021 Chaotic Dynamics +chao-dyn/9710023 Chaotic Dynamics +chao-dyn/9710024 Chaotic Dynamics +chao-dyn/9710025 Chaotic Dynamics +chao-dyn/9711001 Chaotic Dynamics +chao-dyn/9711002 Chaotic Dynamics +chao-dyn/9711005 Chaotic Dynamics +chao-dyn/9711006 Chaotic Dynamics +chao-dyn/9711007 Chaotic Dynamics +chao-dyn/9711008 Chaotic Dynamics +chao-dyn/9711009 Chaotic Dynamics +chao-dyn/9711010 Chaotic Dynamics +chao-dyn/9711014 Chaotic Dynamics +chao-dyn/9711015 Chaotic Dynamics +chao-dyn/9711017 Chaotic Dynamics +chao-dyn/9711019 Chaotic Dynamics +chao-dyn/9711020 Chaotic Dynamics +chao-dyn/9711022 Chaotic Dynamics +chao-dyn/9711023 Chaotic Dynamics +chao-dyn/9711024 Chaotic Dynamics +chao-dyn/9712002 Chaotic Dynamics +chao-dyn/9712003 Chaotic Dynamics +chao-dyn/9712007 Chaotic Dynamics +chao-dyn/9712009 Chaotic Dynamics +chao-dyn/9712010 Chaotic Dynamics +chao-dyn/9712011 Chaotic Dynamics +chao-dyn/9712012 Chaotic Dynamics +chao-dyn/9712013 Chaotic Dynamics +chao-dyn/9712016 Chaotic Dynamics +chao-dyn/9712018 Chaotic Dynamics +comp-gas/9703001 Cellular Automata and Lattice Gases +comp-gas/9705001 Cellular Automata and Lattice Gases +comp-gas/9709001 Cellular Automata and Lattice Gases +comp-gas/9712001 Cellular Automata and Lattice Gases +cond-mat/9701002 Statistical Mechanics +cond-mat/9701003 Superconductivity +cond-mat/9701004 +cond-mat/9701006 Soft Condensed Matter +cond-mat/9701007 +cond-mat/9701008 Soft Condensed Matter +cond-mat/9701009 Disordered Systems and Neural Networks +cond-mat/9701010 Mesoscale and Nanoscale Physics +cond-mat/9701011 Statistical Mechanics +cond-mat/9701013 Mesoscale and Nanoscale Physics +cond-mat/9701014 Mesoscale and Nanoscale Physics +cond-mat/9701018 Statistical Mechanics +cond-mat/9701019 Statistical Mechanics +cond-mat/9701020 Statistical Mechanics +cond-mat/9701021 Disordered Systems and Neural Networks +cond-mat/9701022 Statistical Mechanics +cond-mat/9701023 Strongly Correlated Electrons +cond-mat/9701024 Mesoscale and Nanoscale Physics +cond-mat/9701025 Strongly Correlated Electrons +cond-mat/9701027 Strongly Correlated Electrons +cond-mat/9701028 Superconductivity +cond-mat/9701029 Superconductivity +cond-mat/9701030 Soft Condensed Matter +cond-mat/9701033 Statistical Mechanics +cond-mat/9701035 Strongly Correlated Electrons +cond-mat/9701036 Mesoscale and Nanoscale Physics +cond-mat/9701038 Statistical Mechanics +cond-mat/9701039 Mesoscale and Nanoscale Physics +cond-mat/9701041 Mesoscale and Nanoscale Physics +cond-mat/9701043 Statistical Mechanics +cond-mat/9701044 Disordered Systems and Neural Networks +cond-mat/9701045 Disordered Systems and Neural Networks +cond-mat/9701047 +cond-mat/9701049 Superconductivity +cond-mat/9701050 Disordered Systems and Neural Networks +cond-mat/9701051 Strongly Correlated Electrons +cond-mat/9701052 Strongly Correlated Electrons +cond-mat/9701053 +cond-mat/9701054 Soft Condensed Matter +cond-mat/9701055 Mesoscale and Nanoscale Physics +cond-mat/9701056 Mesoscale and Nanoscale Physics +cond-mat/9701057 Mesoscale and Nanoscale Physics +cond-mat/9701060 Mesoscale and Nanoscale Physics +cond-mat/9701062 Statistical Mechanics +cond-mat/9701064 Statistical Mechanics +cond-mat/9701065 Mesoscale and Nanoscale Physics +cond-mat/9701066 Statistical Mechanics +cond-mat/9701069 Statistical Mechanics +cond-mat/9701070 Mesoscale and Nanoscale Physics +cond-mat/9701071 Strongly Correlated Electrons +cond-mat/9701077 Mesoscale and Nanoscale Physics +cond-mat/9701078 Statistical Mechanics +cond-mat/9701079 Mesoscale and Nanoscale Physics +cond-mat/9701080 +cond-mat/9701081 Mesoscale and Nanoscale Physics +cond-mat/9701084 +cond-mat/9701085 +cond-mat/9701086 Statistical Mechanics +cond-mat/9701087 +cond-mat/9701088 +cond-mat/9701089 Statistical Mechanics +cond-mat/9701090 +cond-mat/9701091 Strongly Correlated Electrons +cond-mat/9701092 Statistical Mechanics +cond-mat/9701094 Strongly Correlated Electrons +cond-mat/9701095 Mesoscale and Nanoscale Physics +cond-mat/9701096 Statistical Mechanics +cond-mat/9701098 Strongly Correlated Electrons +cond-mat/9701099 Statistical Mechanics +cond-mat/9701100 Disordered Systems and Neural Networks +cond-mat/9701101 Mesoscale and Nanoscale Physics +cond-mat/9701102 Superconductivity +cond-mat/9701103 +cond-mat/9701104 Strongly Correlated Electrons +cond-mat/9701106 Statistical Mechanics +cond-mat/9701107 Strongly Correlated Electrons +cond-mat/9701108 Mesoscale and Nanoscale Physics +cond-mat/9701109 Strongly Correlated Electrons +cond-mat/9701112 +cond-mat/9701113 Statistical Mechanics +cond-mat/9701115 Materials Science +cond-mat/9701116 Materials Science +cond-mat/9701117 Statistical Mechanics +cond-mat/9701118 Statistical Mechanics +cond-mat/9701119 Mesoscale and Nanoscale Physics +cond-mat/9701123 Statistical Mechanics +cond-mat/9701125 Soft Condensed Matter +cond-mat/9701127 Strongly Correlated Electrons +cond-mat/9701130 Superconductivity +cond-mat/9701131 Strongly Correlated Electrons +cond-mat/9701132 Strongly Correlated Electrons +cond-mat/9701134 Statistical Mechanics +cond-mat/9701136 Materials Science +cond-mat/9701138 Soft Condensed Matter +cond-mat/9701140 Statistical Mechanics +cond-mat/9701141 Strongly Correlated Electrons +cond-mat/9701142 Mesoscale and Nanoscale Physics +cond-mat/9701144 Strongly Correlated Electrons +cond-mat/9701145 Mesoscale and Nanoscale Physics +cond-mat/9701146 +cond-mat/9701147 Superconductivity +cond-mat/9701148 Materials Science +cond-mat/9701149 Strongly Correlated Electrons +cond-mat/9701150 Strongly Correlated Electrons +cond-mat/9701151 Strongly Correlated Electrons +cond-mat/9701152 Strongly Correlated Electrons +cond-mat/9701153 Superconductivity +cond-mat/9701154 +cond-mat/9701155 Mesoscale and Nanoscale Physics +cond-mat/9701156 Strongly Correlated Electrons +cond-mat/9701157 +cond-mat/9701158 Strongly Correlated Electrons +cond-mat/9701159 +cond-mat/9701160 Disordered Systems and Neural Networks +cond-mat/9701162 Statistical Mechanics +cond-mat/9701163 Superconductivity +cond-mat/9701164 Disordered Systems and Neural Networks +cond-mat/9701170 Superconductivity +cond-mat/9701172 Mesoscale and Nanoscale Physics +cond-mat/9701173 Superconductivity +cond-mat/9701174 +cond-mat/9701175 +cond-mat/9701177 Disordered Systems and Neural Networks +cond-mat/9701178 Mesoscale and Nanoscale Physics +cond-mat/9701179 Strongly Correlated Electrons +cond-mat/9701180 +cond-mat/9701181 Strongly Correlated Electrons +cond-mat/9701182 Disordered Systems and Neural Networks +cond-mat/9701183 Mesoscale and Nanoscale Physics +cond-mat/9701184 Mesoscale and Nanoscale Physics +cond-mat/9701186 Mesoscale and Nanoscale Physics +cond-mat/9701187 +cond-mat/9701188 Statistical Mechanics +cond-mat/9701191 +cond-mat/9701192 Strongly Correlated Electrons +cond-mat/9701193 Statistical Mechanics +cond-mat/9701194 Materials Science +cond-mat/9701196 Strongly Correlated Electrons +cond-mat/9701197 Strongly Correlated Electrons +cond-mat/9701198 Statistical Mechanics +cond-mat/9701199 Statistical Mechanics +cond-mat/9701200 Statistical Mechanics +cond-mat/9701202 Strongly Correlated Electrons +cond-mat/9701204 Mesoscale and Nanoscale Physics +cond-mat/9701205 Mesoscale and Nanoscale Physics +cond-mat/9701210 Statistical Mechanics +cond-mat/9701211 Statistical Mechanics +cond-mat/9701212 Mesoscale and Nanoscale Physics +cond-mat/9701213 Mesoscale and Nanoscale Physics +cond-mat/9701215 Superconductivity +cond-mat/9701216 Strongly Correlated Electrons +cond-mat/9701217 Strongly Correlated Electrons +cond-mat/9701218 Superconductivity +cond-mat/9701219 Mesoscale and Nanoscale Physics +cond-mat/9701220 +cond-mat/9701223 Superconductivity +cond-mat/9701226 Mesoscale and Nanoscale Physics +cond-mat/9701227 Superconductivity +cond-mat/9702003 Strongly Correlated Electrons +cond-mat/9702004 Statistical Mechanics +cond-mat/9702010 Superconductivity +cond-mat/9702011 Soft Condensed Matter +cond-mat/9702013 Disordered Systems and Neural Networks +cond-mat/9702017 Statistical Mechanics +cond-mat/9702018 Statistical Mechanics +cond-mat/9702019 +cond-mat/9702020 +cond-mat/9702022 Strongly Correlated Electrons +cond-mat/9702023 +cond-mat/9702024 Materials Science +cond-mat/9702025 Materials Science +cond-mat/9702028 Superconductivity +cond-mat/9702029 Statistical Mechanics +cond-mat/9702030 Disordered Systems and Neural Networks +cond-mat/9702033 Superconductivity +cond-mat/9702034 Strongly Correlated Electrons +cond-mat/9702035 Mesoscale and Nanoscale Physics +cond-mat/9702036 Statistical Mechanics +cond-mat/9702038 Statistical Mechanics +cond-mat/9702040 Materials Science +cond-mat/9702042 Strongly Correlated Electrons +cond-mat/9702043 Materials Science +cond-mat/9702044 Materials Science +cond-mat/9702045 Mesoscale and Nanoscale Physics +cond-mat/9702047 Mesoscale and Nanoscale Physics +cond-mat/9702049 +cond-mat/9702052 Mesoscale and Nanoscale Physics +cond-mat/9702053 Soft Condensed Matter +cond-mat/9702054 +cond-mat/9702055 Strongly Correlated Electrons +cond-mat/9702056 Strongly Correlated Electrons +cond-mat/9702057 Strongly Correlated Electrons +cond-mat/9702058 +cond-mat/9702059 Statistical Mechanics +cond-mat/9702060 Superconductivity +cond-mat/9702063 Materials Science +cond-mat/9702065 Strongly Correlated Electrons +cond-mat/9702066 Mesoscale and Nanoscale Physics +cond-mat/9702067 Mesoscale and Nanoscale Physics +cond-mat/9702068 +cond-mat/9702071 Mesoscale and Nanoscale Physics +cond-mat/9702074 Strongly Correlated Electrons +cond-mat/9702075 Statistical Mechanics +cond-mat/9702078 Mesoscale and Nanoscale Physics +cond-mat/9702079 Strongly Correlated Electrons +cond-mat/9702080 Strongly Correlated Electrons +cond-mat/9702081 Statistical Mechanics +cond-mat/9702083 Statistical Mechanics +cond-mat/9702084 Disordered Systems and Neural Networks +cond-mat/9702085 Statistical Mechanics +cond-mat/9702086 Materials Science +cond-mat/9702089 Strongly Correlated Electrons +cond-mat/9702091 Disordered Systems and Neural Networks +cond-mat/9702093 Superconductivity +cond-mat/9702095 Disordered Systems and Neural Networks +cond-mat/9702096 Statistical Mechanics +cond-mat/9702097 Disordered Systems and Neural Networks +cond-mat/9702098 Mesoscale and Nanoscale Physics +cond-mat/9702099 +cond-mat/9702100 Strongly Correlated Electrons +cond-mat/9702101 Mesoscale and Nanoscale Physics +cond-mat/9702102 Disordered Systems and Neural Networks +cond-mat/9702104 Superconductivity +cond-mat/9702106 +cond-mat/9702107 +cond-mat/9702108 Disordered Systems and Neural Networks +cond-mat/9702109 Statistical Mechanics +cond-mat/9702110 +cond-mat/9702112 Superconductivity +cond-mat/9702113 Disordered Systems and Neural Networks +cond-mat/9702114 Statistical Mechanics +cond-mat/9702115 Statistical Mechanics +cond-mat/9702116 Superconductivity +cond-mat/9702117 Superconductivity +cond-mat/9702118 Materials Science +cond-mat/9702119 Superconductivity +cond-mat/9702120 Disordered Systems and Neural Networks +cond-mat/9702121 Mesoscale and Nanoscale Physics +cond-mat/9702123 Superconductivity +cond-mat/9702124 Strongly Correlated Electrons +cond-mat/9702126 Strongly Correlated Electrons +cond-mat/9702129 +cond-mat/9702132 Mesoscale and Nanoscale Physics +cond-mat/9702135 +cond-mat/9702137 Mesoscale and Nanoscale Physics +cond-mat/9702139 Soft Condensed Matter +cond-mat/9702141 Strongly Correlated Electrons +cond-mat/9702143 Strongly Correlated Electrons +cond-mat/9702144 Superconductivity +cond-mat/9702146 Mesoscale and Nanoscale Physics +cond-mat/9702149 Statistical Mechanics +cond-mat/9702151 Mesoscale and Nanoscale Physics +cond-mat/9702152 Statistical Mechanics +cond-mat/9702153 +cond-mat/9702154 Soft Condensed Matter +cond-mat/9702155 Strongly Correlated Electrons +cond-mat/9702157 Superconductivity +cond-mat/9702158 +cond-mat/9702160 Strongly Correlated Electrons +cond-mat/9702161 Superconductivity +cond-mat/9702162 Strongly Correlated Electrons +cond-mat/9702164 Mesoscale and Nanoscale Physics +cond-mat/9702165 Superconductivity +cond-mat/9702166 Superconductivity +cond-mat/9702168 Materials Science +cond-mat/9702169 +cond-mat/9702170 +cond-mat/9702171 Strongly Correlated Electrons +cond-mat/9702172 Statistical Mechanics +cond-mat/9702173 Superconductivity +cond-mat/9702174 Disordered Systems and Neural Networks +cond-mat/9702175 Disordered Systems and Neural Networks +cond-mat/9702176 Disordered Systems and Neural Networks +cond-mat/9702177 Superconductivity +cond-mat/9702178 Strongly Correlated Electrons +cond-mat/9702180 Superconductivity +cond-mat/9702182 +cond-mat/9702184 Mesoscale and Nanoscale Physics +cond-mat/9702185 Strongly Correlated Electrons +cond-mat/9702186 Superconductivity +cond-mat/9702187 +cond-mat/9702188 Strongly Correlated Electrons +cond-mat/9702189 Mesoscale and Nanoscale Physics +cond-mat/9702190 Superconductivity +cond-mat/9702191 Statistical Mechanics +cond-mat/9702193 Mesoscale and Nanoscale Physics +cond-mat/9702195 Strongly Correlated Electrons +cond-mat/9702196 Mesoscale and Nanoscale Physics +cond-mat/9702197 Materials Science +cond-mat/9702199 Superconductivity +cond-mat/9702200 Strongly Correlated Electrons +cond-mat/9702201 Statistical Mechanics +cond-mat/9702202 Soft Condensed Matter +cond-mat/9702203 Statistical Mechanics +cond-mat/9702209 Strongly Correlated Electrons +cond-mat/9702212 Strongly Correlated Electrons +cond-mat/9702213 Mesoscale and Nanoscale Physics +cond-mat/9702214 Strongly Correlated Electrons +cond-mat/9702215 +cond-mat/9702216 Statistical Mechanics +cond-mat/9702217 Statistical Mechanics +cond-mat/9702220 +cond-mat/9702221 Strongly Correlated Electrons +cond-mat/9702222 Strongly Correlated Electrons +cond-mat/9702223 Materials Science +cond-mat/9702224 Statistical Mechanics +cond-mat/9702225 Mesoscale and Nanoscale Physics +cond-mat/9702226 +cond-mat/9702227 +cond-mat/9702229 Strongly Correlated Electrons +cond-mat/9702230 Statistical Mechanics +cond-mat/9702231 +cond-mat/9702232 Superconductivity +cond-mat/9702233 Soft Condensed Matter +cond-mat/9702235 Superconductivity +cond-mat/9702236 Mesoscale and Nanoscale Physics +cond-mat/9702237 Strongly Correlated Electrons +cond-mat/9702238 Strongly Correlated Electrons +cond-mat/9702243 Statistical Mechanics +cond-mat/9702245 Strongly Correlated Electrons +cond-mat/9702248 Statistical Mechanics +cond-mat/9702249 Statistical Mechanics +cond-mat/9703001 Strongly Correlated Electrons +cond-mat/9703002 Materials Science +cond-mat/9703003 Mesoscale and Nanoscale Physics +cond-mat/9703007 Mesoscale and Nanoscale Physics +cond-mat/9703008 +cond-mat/9703013 +cond-mat/9703017 Strongly Correlated Electrons +cond-mat/9703018 Mesoscale and Nanoscale Physics +cond-mat/9703019 +cond-mat/9703020 +cond-mat/9703021 Superconductivity +cond-mat/9703024 Statistical Mechanics +cond-mat/9703025 Statistical Mechanics +cond-mat/9703028 +cond-mat/9703029 Disordered Systems and Neural Networks +cond-mat/9703031 Materials Science +cond-mat/9703033 +cond-mat/9703035 Superconductivity +cond-mat/9703036 Statistical Mechanics +cond-mat/9703037 +cond-mat/9703039 Mesoscale and Nanoscale Physics +cond-mat/9703040 Superconductivity +cond-mat/9703041 +cond-mat/9703042 Superconductivity +cond-mat/9703044 Strongly Correlated Electrons +cond-mat/9703045 +cond-mat/9703046 Superconductivity +cond-mat/9703047 Superconductivity +cond-mat/9703050 Statistical Mechanics +cond-mat/9703051 +cond-mat/9703055 Strongly Correlated Electrons +cond-mat/9703056 Materials Science +cond-mat/9703059 Statistical Mechanics +cond-mat/9703060 Strongly Correlated Electrons +cond-mat/9703061 +cond-mat/9703062 Statistical Mechanics +cond-mat/9703063 Statistical Mechanics +cond-mat/9703064 Materials Science +cond-mat/9703065 Statistical Mechanics +cond-mat/9703066 Mesoscale and Nanoscale Physics +cond-mat/9703067 Superconductivity +cond-mat/9703068 Superconductivity +cond-mat/9703069 +cond-mat/9703071 Mesoscale and Nanoscale Physics +cond-mat/9703074 Materials Science +cond-mat/9703075 Materials Science +cond-mat/9703076 +cond-mat/9703077 Materials Science +cond-mat/9703079 Superconductivity +cond-mat/9703081 Materials Science +cond-mat/9703082 Superconductivity +cond-mat/9703083 Superconductivity +cond-mat/9703084 Statistical Mechanics +cond-mat/9703087 +cond-mat/9703091 Disordered Systems and Neural Networks +cond-mat/9703092 +cond-mat/9703093 Soft Condensed Matter +cond-mat/9703094 Statistical Mechanics +cond-mat/9703095 Materials Science +cond-mat/9703096 Soft Condensed Matter +cond-mat/9703098 +cond-mat/9703102 +cond-mat/9703103 +cond-mat/9703107 Superconductivity +cond-mat/9703108 Mesoscale and Nanoscale Physics +cond-mat/9703110 Mesoscale and Nanoscale Physics +cond-mat/9703111 Superconductivity +cond-mat/9703112 Disordered Systems and Neural Networks +cond-mat/9703113 Statistical Mechanics +cond-mat/9703114 Superconductivity +cond-mat/9703118 +cond-mat/9703119 Mesoscale and Nanoscale Physics +cond-mat/9703120 Strongly Correlated Electrons +cond-mat/9703121 Strongly Correlated Electrons +cond-mat/9703122 +cond-mat/9703123 Mesoscale and Nanoscale Physics +cond-mat/9703125 Strongly Correlated Electrons +cond-mat/9703126 Superconductivity +cond-mat/9703127 Superconductivity +cond-mat/9703129 Superconductivity +cond-mat/9703131 +cond-mat/9703134 Soft Condensed Matter +cond-mat/9703136 +cond-mat/9703137 Soft Condensed Matter +cond-mat/9703142 +cond-mat/9703143 Superconductivity +cond-mat/9703144 Statistical Mechanics +cond-mat/9703145 Strongly Correlated Electrons +cond-mat/9703146 Strongly Correlated Electrons +cond-mat/9703147 +cond-mat/9703150 +cond-mat/9703151 Disordered Systems and Neural Networks +cond-mat/9703153 Materials Science +cond-mat/9703155 Strongly Correlated Electrons +cond-mat/9703157 Strongly Correlated Electrons +cond-mat/9703158 Mesoscale and Nanoscale Physics +cond-mat/9703159 Mesoscale and Nanoscale Physics +cond-mat/9703160 Superconductivity +cond-mat/9703163 Materials Science +cond-mat/9703165 Statistical Mechanics +cond-mat/9703167 +cond-mat/9703168 +cond-mat/9703170 Statistical Mechanics +cond-mat/9703171 Materials Science +cond-mat/9703172 Superconductivity +cond-mat/9703173 Statistical Mechanics +cond-mat/9703174 Mesoscale and Nanoscale Physics +cond-mat/9703177 Superconductivity +cond-mat/9703178 Mesoscale and Nanoscale Physics +cond-mat/9703181 Materials Science +cond-mat/9703182 Statistical Mechanics +cond-mat/9703183 Statistical Mechanics +cond-mat/9703185 Superconductivity +cond-mat/9703186 Strongly Correlated Electrons +cond-mat/9703187 Statistical Mechanics +cond-mat/9703188 Disordered Systems and Neural Networks +cond-mat/9703189 Superconductivity +cond-mat/9703190 +cond-mat/9703193 Soft Condensed Matter +cond-mat/9703194 Statistical Mechanics +cond-mat/9703197 Disordered Systems and Neural Networks +cond-mat/9703199 Statistical Mechanics +cond-mat/9703200 +cond-mat/9703201 Materials Science +cond-mat/9703202 +cond-mat/9703203 Disordered Systems and Neural Networks +cond-mat/9703204 Disordered Systems and Neural Networks +cond-mat/9703205 Strongly Correlated Electrons +cond-mat/9703206 Strongly Correlated Electrons +cond-mat/9703208 Superconductivity +cond-mat/9703211 +cond-mat/9703213 Strongly Correlated Electrons +cond-mat/9703214 Strongly Correlated Electrons +cond-mat/9703215 Mesoscale and Nanoscale Physics +cond-mat/9703216 Mesoscale and Nanoscale Physics +cond-mat/9703217 Mesoscale and Nanoscale Physics +cond-mat/9703220 Strongly Correlated Electrons +cond-mat/9703221 Superconductivity +cond-mat/9703222 Statistical Mechanics +cond-mat/9703223 Mesoscale and Nanoscale Physics +cond-mat/9703224 +cond-mat/9703226 Statistical Mechanics +cond-mat/9703228 Strongly Correlated Electrons +cond-mat/9703229 +cond-mat/9703231 Statistical Mechanics +cond-mat/9703232 +cond-mat/9703235 Disordered Systems and Neural Networks +cond-mat/9703236 Mesoscale and Nanoscale Physics +cond-mat/9703238 Superconductivity +cond-mat/9703241 Mesoscale and Nanoscale Physics +cond-mat/9703244 Soft Condensed Matter +cond-mat/9703245 +cond-mat/9703248 +cond-mat/9703249 Statistical Mechanics +cond-mat/9703250 Statistical Mechanics +cond-mat/9703251 +cond-mat/9703252 Statistical Mechanics +cond-mat/9703254 Strongly Correlated Electrons +cond-mat/9704002 Statistical Mechanics +cond-mat/9704003 Mesoscale and Nanoscale Physics +cond-mat/9704004 Strongly Correlated Electrons +cond-mat/9704005 Strongly Correlated Electrons +cond-mat/9704006 Statistical Mechanics +cond-mat/9704007 Strongly Correlated Electrons +cond-mat/9704008 Mesoscale and Nanoscale Physics +cond-mat/9704009 Materials Science +cond-mat/9704010 +cond-mat/9704011 Strongly Correlated Electrons +cond-mat/9704012 Mesoscale and Nanoscale Physics +cond-mat/9704013 +cond-mat/9704015 Strongly Correlated Electrons +cond-mat/9704016 Statistical Mechanics +cond-mat/9704019 Mesoscale and Nanoscale Physics +cond-mat/9704020 Mesoscale and Nanoscale Physics +cond-mat/9704021 Materials Science +cond-mat/9704023 Mesoscale and Nanoscale Physics +cond-mat/9704024 Strongly Correlated Electrons +cond-mat/9704025 Superconductivity +cond-mat/9704026 Statistical Mechanics +cond-mat/9704029 Mesoscale and Nanoscale Physics +cond-mat/9704030 Strongly Correlated Electrons +cond-mat/9704031 Mesoscale and Nanoscale Physics +cond-mat/9704032 Mesoscale and Nanoscale Physics +cond-mat/9704033 +cond-mat/9704034 Strongly Correlated Electrons +cond-mat/9704035 Statistical Mechanics +cond-mat/9704037 Strongly Correlated Electrons +cond-mat/9704038 Strongly Correlated Electrons +cond-mat/9704039 Statistical Mechanics +cond-mat/9704040 Statistical Mechanics +cond-mat/9704043 Mesoscale and Nanoscale Physics +cond-mat/9704044 Mesoscale and Nanoscale Physics +cond-mat/9704045 Materials Science +cond-mat/9704047 Disordered Systems and Neural Networks +cond-mat/9704049 Strongly Correlated Electrons +cond-mat/9704050 Strongly Correlated Electrons +cond-mat/9704051 +cond-mat/9704052 +cond-mat/9704056 Superconductivity +cond-mat/9704057 Strongly Correlated Electrons +cond-mat/9704058 Disordered Systems and Neural Networks +cond-mat/9704060 Soft Condensed Matter +cond-mat/9704061 +cond-mat/9704063 Statistical Mechanics +cond-mat/9704064 Strongly Correlated Electrons +cond-mat/9704065 +cond-mat/9704066 Mesoscale and Nanoscale Physics +cond-mat/9704068 Disordered Systems and Neural Networks +cond-mat/9704069 Disordered Systems and Neural Networks +cond-mat/9704070 Materials Science +cond-mat/9704071 Strongly Correlated Electrons +cond-mat/9704072 Statistical Mechanics +cond-mat/9704073 Superconductivity +cond-mat/9704074 Soft Condensed Matter +cond-mat/9704076 Strongly Correlated Electrons +cond-mat/9704077 Strongly Correlated Electrons +cond-mat/9704078 +cond-mat/9704079 Materials Science +cond-mat/9704080 Mesoscale and Nanoscale Physics +cond-mat/9704081 +cond-mat/9704082 Superconductivity +cond-mat/9704086 Disordered Systems and Neural Networks +cond-mat/9704088 +cond-mat/9704091 Disordered Systems and Neural Networks +cond-mat/9704094 Statistical Mechanics +cond-mat/9704095 +cond-mat/9704096 Mesoscale and Nanoscale Physics +cond-mat/9704097 Disordered Systems and Neural Networks +cond-mat/9704100 Statistical Mechanics +cond-mat/9704102 +cond-mat/9704104 +cond-mat/9704107 +cond-mat/9704108 Superconductivity +cond-mat/9704109 Statistical Mechanics +cond-mat/9704110 Statistical Mechanics +cond-mat/9704111 Statistical Mechanics +cond-mat/9704112 Statistical Mechanics +cond-mat/9704113 Mesoscale and Nanoscale Physics +cond-mat/9704114 +cond-mat/9704115 Strongly Correlated Electrons +cond-mat/9704117 +cond-mat/9704118 +cond-mat/9704119 Statistical Mechanics +cond-mat/9704120 Strongly Correlated Electrons +cond-mat/9704126 Soft Condensed Matter +cond-mat/9704128 Materials Science +cond-mat/9704130 +cond-mat/9704131 Superconductivity +cond-mat/9704133 Superconductivity +cond-mat/9704134 Superconductivity +cond-mat/9704135 Superconductivity +cond-mat/9704140 Statistical Mechanics +cond-mat/9704142 Disordered Systems and Neural Networks +cond-mat/9704143 Mesoscale and Nanoscale Physics +cond-mat/9704144 Soft Condensed Matter +cond-mat/9704146 Mesoscale and Nanoscale Physics +cond-mat/9704147 Superconductivity +cond-mat/9704148 +cond-mat/9704150 +cond-mat/9704153 Statistical Mechanics +cond-mat/9704155 Disordered Systems and Neural Networks +cond-mat/9704156 Mesoscale and Nanoscale Physics +cond-mat/9704157 Materials Science +cond-mat/9704158 Disordered Systems and Neural Networks +cond-mat/9704163 Statistical Mechanics +cond-mat/9704165 Superconductivity +cond-mat/9704166 Statistical Mechanics +cond-mat/9704167 Soft Condensed Matter +cond-mat/9704168 Strongly Correlated Electrons +cond-mat/9704169 Superconductivity +cond-mat/9704170 Strongly Correlated Electrons +cond-mat/9704171 Soft Condensed Matter +cond-mat/9704173 Statistical Mechanics +cond-mat/9704174 Strongly Correlated Electrons +cond-mat/9704175 Superconductivity +cond-mat/9704177 Statistical Mechanics +cond-mat/9704178 +cond-mat/9704179 Soft Condensed Matter +cond-mat/9704181 Superconductivity +cond-mat/9704182 +cond-mat/9704183 Mesoscale and Nanoscale Physics +cond-mat/9704184 Superconductivity +cond-mat/9704186 Statistical Mechanics +cond-mat/9704187 Disordered Systems and Neural Networks +cond-mat/9704189 Mesoscale and Nanoscale Physics +cond-mat/9704191 Disordered Systems and Neural Networks +cond-mat/9704192 Disordered Systems and Neural Networks +cond-mat/9704193 Strongly Correlated Electrons +cond-mat/9704194 Superconductivity +cond-mat/9704195 Mesoscale and Nanoscale Physics +cond-mat/9704196 Statistical Mechanics +cond-mat/9704197 +cond-mat/9704202 Mesoscale and Nanoscale Physics +cond-mat/9704204 Disordered Systems and Neural Networks +cond-mat/9704206 Strongly Correlated Electrons +cond-mat/9704207 Strongly Correlated Electrons +cond-mat/9704209 Strongly Correlated Electrons +cond-mat/9704210 Strongly Correlated Electrons +cond-mat/9704212 +cond-mat/9704213 Statistical Mechanics +cond-mat/9704216 Mesoscale and Nanoscale Physics +cond-mat/9704218 Disordered Systems and Neural Networks +cond-mat/9704219 Materials Science +cond-mat/9704220 +cond-mat/9704223 Strongly Correlated Electrons +cond-mat/9704224 Superconductivity +cond-mat/9704225 Soft Condensed Matter +cond-mat/9704226 Strongly Correlated Electrons +cond-mat/9704228 Statistical Mechanics +cond-mat/9704229 Strongly Correlated Electrons +cond-mat/9704231 Strongly Correlated Electrons +cond-mat/9704232 +cond-mat/9704233 Strongly Correlated Electrons +cond-mat/9704234 Statistical Mechanics +cond-mat/9704235 +cond-mat/9704237 Strongly Correlated Electrons +cond-mat/9704238 Statistical Mechanics +cond-mat/9704240 Superconductivity +cond-mat/9704241 Statistical Mechanics +cond-mat/9704242 Superconductivity +cond-mat/9704243 Statistical Mechanics +cond-mat/9704244 Soft Condensed Matter +cond-mat/9704246 +cond-mat/9704247 Superconductivity +cond-mat/9704248 +cond-mat/9704251 Materials Science +cond-mat/9704252 Superconductivity +cond-mat/9705003 Disordered Systems and Neural Networks +cond-mat/9705005 Soft Condensed Matter +cond-mat/9705006 Statistical Mechanics +cond-mat/9705007 +cond-mat/9705009 Statistical Mechanics +cond-mat/9705010 Disordered Systems and Neural Networks +cond-mat/9705011 Statistical Mechanics +cond-mat/9705014 Strongly Correlated Electrons +cond-mat/9705015 Disordered Systems and Neural Networks +cond-mat/9705016 Strongly Correlated Electrons +cond-mat/9705017 Superconductivity +cond-mat/9705018 Superconductivity +cond-mat/9705019 Disordered Systems and Neural Networks +cond-mat/9705021 +cond-mat/9705022 Superconductivity +cond-mat/9705023 Strongly Correlated Electrons +cond-mat/9705024 +cond-mat/9705028 Materials Science +cond-mat/9705031 Strongly Correlated Electrons +cond-mat/9705032 Strongly Correlated Electrons +cond-mat/9705034 Superconductivity +cond-mat/9705035 Strongly Correlated Electrons +cond-mat/9705037 Strongly Correlated Electrons +cond-mat/9705038 Statistical Mechanics +cond-mat/9705040 Materials Science +cond-mat/9705041 Disordered Systems and Neural Networks +cond-mat/9705043 Strongly Correlated Electrons +cond-mat/9705044 +cond-mat/9705048 Strongly Correlated Electrons +cond-mat/9705049 Superconductivity +cond-mat/9705050 Statistical Mechanics +cond-mat/9705051 Strongly Correlated Electrons +cond-mat/9705052 +cond-mat/9705054 Mesoscale and Nanoscale Physics +cond-mat/9705055 Mesoscale and Nanoscale Physics +cond-mat/9705058 Superconductivity +cond-mat/9705059 Statistical Mechanics +cond-mat/9705060 Materials Science +cond-mat/9705062 Statistical Mechanics +cond-mat/9705063 Strongly Correlated Electrons +cond-mat/9705064 Strongly Correlated Electrons +cond-mat/9705065 Strongly Correlated Electrons +cond-mat/9705067 Strongly Correlated Electrons +cond-mat/9705069 Strongly Correlated Electrons +cond-mat/9705070 +cond-mat/9705074 Strongly Correlated Electrons +cond-mat/9705076 Disordered Systems and Neural Networks +cond-mat/9705078 Superconductivity +cond-mat/9705079 Mesoscale and Nanoscale Physics +cond-mat/9705080 Superconductivity +cond-mat/9705081 Mesoscale and Nanoscale Physics +cond-mat/9705085 Superconductivity +cond-mat/9705088 Strongly Correlated Electrons +cond-mat/9705089 Superconductivity +cond-mat/9705090 Statistical Mechanics +cond-mat/9705091 Strongly Correlated Electrons +cond-mat/9705094 Strongly Correlated Electrons +cond-mat/9705095 +cond-mat/9705097 Statistical Mechanics +cond-mat/9705099 +cond-mat/9705100 Statistical Mechanics +cond-mat/9705102 Materials Science +cond-mat/9705103 +cond-mat/9705104 Statistical Mechanics +cond-mat/9705105 Materials Science +cond-mat/9705106 Statistical Mechanics +cond-mat/9705107 Superconductivity +cond-mat/9705109 Mesoscale and Nanoscale Physics +cond-mat/9705111 +cond-mat/9705112 Materials Science +cond-mat/9705113 Strongly Correlated Electrons +cond-mat/9705114 +cond-mat/9705115 Mesoscale and Nanoscale Physics +cond-mat/9705117 Mesoscale and Nanoscale Physics +cond-mat/9705121 +cond-mat/9705124 Superconductivity +cond-mat/9705126 Materials Science +cond-mat/9705129 Superconductivity +cond-mat/9705131 Mesoscale and Nanoscale Physics +cond-mat/9705132 Statistical Mechanics +cond-mat/9705133 +cond-mat/9705134 +cond-mat/9705136 +cond-mat/9705137 Statistical Mechanics +cond-mat/9705138 Superconductivity +cond-mat/9705139 Superconductivity +cond-mat/9705142 Statistical Mechanics +cond-mat/9705145 Strongly Correlated Electrons +cond-mat/9705146 Statistical Mechanics +cond-mat/9705147 Strongly Correlated Electrons +cond-mat/9705149 Mesoscale and Nanoscale Physics +cond-mat/9705150 Disordered Systems and Neural Networks +cond-mat/9705151 Superconductivity +cond-mat/9705152 Statistical Mechanics +cond-mat/9705153 Strongly Correlated Electrons +cond-mat/9705154 Mesoscale and Nanoscale Physics +cond-mat/9705155 Statistical Mechanics +cond-mat/9705156 Strongly Correlated Electrons +cond-mat/9705157 Strongly Correlated Electrons +cond-mat/9705158 Mesoscale and Nanoscale Physics +cond-mat/9705161 Disordered Systems and Neural Networks +cond-mat/9705163 Disordered Systems and Neural Networks +cond-mat/9705165 Strongly Correlated Electrons +cond-mat/9705166 Superconductivity +cond-mat/9705167 Mesoscale and Nanoscale Physics +cond-mat/9705168 +cond-mat/9705169 Mesoscale and Nanoscale Physics +cond-mat/9705172 Statistical Mechanics +cond-mat/9705173 Mesoscale and Nanoscale Physics +cond-mat/9705174 Statistical Mechanics +cond-mat/9705176 Strongly Correlated Electrons +cond-mat/9705177 +cond-mat/9705178 Statistical Mechanics +cond-mat/9705180 Statistical Mechanics +cond-mat/9705181 Soft Condensed Matter +cond-mat/9705182 Disordered Systems and Neural Networks +cond-mat/9705184 +cond-mat/9705185 Statistical Mechanics +cond-mat/9705187 Mesoscale and Nanoscale Physics +cond-mat/9705190 Disordered Systems and Neural Networks +cond-mat/9705193 Strongly Correlated Electrons +cond-mat/9705194 Superconductivity +cond-mat/9705195 +cond-mat/9705196 Strongly Correlated Electrons +cond-mat/9705198 Superconductivity +cond-mat/9705202 Superconductivity +cond-mat/9705203 Statistical Mechanics +cond-mat/9705205 +cond-mat/9705206 Strongly Correlated Electrons +cond-mat/9705207 Strongly Correlated Electrons +cond-mat/9705208 Mesoscale and Nanoscale Physics +cond-mat/9705210 Strongly Correlated Electrons +cond-mat/9705213 Disordered Systems and Neural Networks +cond-mat/9705218 Materials Science +cond-mat/9705220 Superconductivity +cond-mat/9705221 Soft Condensed Matter +cond-mat/9705222 Soft Condensed Matter +cond-mat/9705223 +cond-mat/9705224 Mesoscale and Nanoscale Physics +cond-mat/9705225 Superconductivity +cond-mat/9705226 Strongly Correlated Electrons +cond-mat/9705227 Mesoscale and Nanoscale Physics +cond-mat/9705229 Disordered Systems and Neural Networks +cond-mat/9705230 Statistical Mechanics +cond-mat/9705231 Strongly Correlated Electrons +cond-mat/9705232 Soft Condensed Matter +cond-mat/9705233 Soft Condensed Matter +cond-mat/9705236 +cond-mat/9705237 +cond-mat/9705238 Statistical Mechanics +cond-mat/9705240 +cond-mat/9705242 Disordered Systems and Neural Networks +cond-mat/9705245 +cond-mat/9705246 Soft Condensed Matter +cond-mat/9705247 +cond-mat/9705248 Soft Condensed Matter +cond-mat/9705249 Statistical Mechanics +cond-mat/9705250 Mesoscale and Nanoscale Physics +cond-mat/9705251 Materials Science +cond-mat/9705252 Materials Science +cond-mat/9705253 Materials Science +cond-mat/9705254 Mesoscale and Nanoscale Physics +cond-mat/9705255 Strongly Correlated Electrons +cond-mat/9705256 +cond-mat/9705258 Strongly Correlated Electrons +cond-mat/9705260 Superconductivity +cond-mat/9705261 +cond-mat/9705262 Statistical Mechanics +cond-mat/9705263 Statistical Mechanics +cond-mat/9705265 Superconductivity +cond-mat/9705268 Strongly Correlated Electrons +cond-mat/9705269 Strongly Correlated Electrons +cond-mat/9705271 Superconductivity +cond-mat/9705273 +cond-mat/9705276 Statistical Mechanics +cond-mat/9705277 +cond-mat/9705278 Soft Condensed Matter +cond-mat/9705280 Statistical Mechanics +cond-mat/9705284 Strongly Correlated Electrons +cond-mat/9705285 Soft Condensed Matter +cond-mat/9705286 Superconductivity +cond-mat/9705287 Superconductivity +cond-mat/9705288 Soft Condensed Matter +cond-mat/9705289 Disordered Systems and Neural Networks +cond-mat/9705290 +cond-mat/9705291 Materials Science +cond-mat/9705292 Statistical Mechanics +cond-mat/9705298 Statistical Mechanics +cond-mat/9705299 Statistical Mechanics +cond-mat/9705300 Statistical Mechanics +cond-mat/9705302 Strongly Correlated Electrons +cond-mat/9705303 Mesoscale and Nanoscale Physics +cond-mat/9705304 Superconductivity +cond-mat/9705306 Superconductivity +cond-mat/9705308 Mesoscale and Nanoscale Physics +cond-mat/9705309 Soft Condensed Matter +cond-mat/9705310 +cond-mat/9705312 Disordered Systems and Neural Networks +cond-mat/9705313 Strongly Correlated Electrons +cond-mat/9705314 Statistical Mechanics +cond-mat/9706002 +cond-mat/9706004 Superconductivity +cond-mat/9706006 Strongly Correlated Electrons +cond-mat/9706007 Strongly Correlated Electrons +cond-mat/9706008 Mesoscale and Nanoscale Physics +cond-mat/9706009 +cond-mat/9706010 Superconductivity +cond-mat/9706012 Superconductivity +cond-mat/9706015 Disordered Systems and Neural Networks +cond-mat/9706017 +cond-mat/9706018 +cond-mat/9706019 Superconductivity +cond-mat/9706022 Superconductivity +cond-mat/9706023 Disordered Systems and Neural Networks +cond-mat/9706024 Mesoscale and Nanoscale Physics +cond-mat/9706025 Superconductivity +cond-mat/9706026 +cond-mat/9706027 Disordered Systems and Neural Networks +cond-mat/9706030 Mesoscale and Nanoscale Physics +cond-mat/9706031 Statistical Mechanics +cond-mat/9706032 Superconductivity +cond-mat/9706034 Statistical Mechanics +cond-mat/9706035 +cond-mat/9706036 +cond-mat/9706037 Mesoscale and Nanoscale Physics +cond-mat/9706038 Statistical Mechanics +cond-mat/9706039 Soft Condensed Matter +cond-mat/9706040 +cond-mat/9706041 Statistical Mechanics +cond-mat/9706043 Disordered Systems and Neural Networks +cond-mat/9706044 Superconductivity +cond-mat/9706045 Mesoscale and Nanoscale Physics +cond-mat/9706046 Strongly Correlated Electrons +cond-mat/9706047 Strongly Correlated Electrons +cond-mat/9706048 Statistical Mechanics +cond-mat/9706049 Materials Science +cond-mat/9706051 Statistical Mechanics +cond-mat/9706052 Soft Condensed Matter +cond-mat/9706053 Strongly Correlated Electrons +cond-mat/9706054 Superconductivity +cond-mat/9706055 Disordered Systems and Neural Networks +cond-mat/9706056 Mesoscale and Nanoscale Physics +cond-mat/9706057 Statistical Mechanics +cond-mat/9706058 +cond-mat/9706060 Strongly Correlated Electrons +cond-mat/9706062 Disordered Systems and Neural Networks +cond-mat/9706063 Superconductivity +cond-mat/9706064 Statistical Mechanics +cond-mat/9706065 Statistical Mechanics +cond-mat/9706067 Strongly Correlated Electrons +cond-mat/9706069 Mesoscale and Nanoscale Physics +cond-mat/9706070 Mesoscale and Nanoscale Physics +cond-mat/9706071 +cond-mat/9706072 Statistical Mechanics +cond-mat/9706074 Mesoscale and Nanoscale Physics +cond-mat/9706075 Disordered Systems and Neural Networks +cond-mat/9706076 Strongly Correlated Electrons +cond-mat/9706079 Statistical Mechanics +cond-mat/9706082 Superconductivity +cond-mat/9706083 Statistical Mechanics +cond-mat/9706084 Mesoscale and Nanoscale Physics +cond-mat/9706085 Strongly Correlated Electrons +cond-mat/9706086 Strongly Correlated Electrons +cond-mat/9706088 Statistical Mechanics +cond-mat/9706090 Soft Condensed Matter +cond-mat/9706091 Strongly Correlated Electrons +cond-mat/9706092 Strongly Correlated Electrons +cond-mat/9706095 Superconductivity +cond-mat/9706096 Disordered Systems and Neural Networks +cond-mat/9706097 Strongly Correlated Electrons +cond-mat/9706099 Statistical Mechanics +cond-mat/9706101 Soft Condensed Matter +cond-mat/9706102 +cond-mat/9706103 +cond-mat/9706104 +cond-mat/9706107 Strongly Correlated Electrons +cond-mat/9706110 Strongly Correlated Electrons +cond-mat/9706111 Superconductivity +cond-mat/9706114 Statistical Mechanics +cond-mat/9706118 Superconductivity +cond-mat/9706119 +cond-mat/9706121 Statistical Mechanics +cond-mat/9706124 Statistical Mechanics +cond-mat/9706126 Strongly Correlated Electrons +cond-mat/9706127 Disordered Systems and Neural Networks +cond-mat/9706128 Materials Science +cond-mat/9706129 Mesoscale and Nanoscale Physics +cond-mat/9706130 Materials Science +cond-mat/9706131 Materials Science +cond-mat/9706132 Materials Science +cond-mat/9706133 Statistical Mechanics +cond-mat/9706134 Strongly Correlated Electrons +cond-mat/9706137 Mesoscale and Nanoscale Physics +cond-mat/9706138 Strongly Correlated Electrons +cond-mat/9706139 Superconductivity +cond-mat/9706140 Statistical Mechanics +cond-mat/9706143 Strongly Correlated Electrons +cond-mat/9706144 Mesoscale and Nanoscale Physics +cond-mat/9706146 Strongly Correlated Electrons +cond-mat/9706147 Strongly Correlated Electrons +cond-mat/9706148 Superconductivity +cond-mat/9706151 Superconductivity +cond-mat/9706152 Statistical Mechanics +cond-mat/9706153 +cond-mat/9706154 Statistical Mechanics +cond-mat/9706155 Strongly Correlated Electrons +cond-mat/9706157 Mesoscale and Nanoscale Physics +cond-mat/9706158 +cond-mat/9706159 Statistical Mechanics +cond-mat/9706160 Materials Science +cond-mat/9706162 Statistical Mechanics +cond-mat/9706163 Soft Condensed Matter +cond-mat/9706164 Superconductivity +cond-mat/9706165 Strongly Correlated Electrons +cond-mat/9706167 Strongly Correlated Electrons +cond-mat/9706168 Soft Condensed Matter +cond-mat/9706169 +cond-mat/9706170 +cond-mat/9706171 Statistical Mechanics +cond-mat/9706173 Strongly Correlated Electrons +cond-mat/9706174 Disordered Systems and Neural Networks +cond-mat/9706175 Strongly Correlated Electrons +cond-mat/9706177 Strongly Correlated Electrons +cond-mat/9706179 Superconductivity +cond-mat/9706182 +cond-mat/9706185 Disordered Systems and Neural Networks +cond-mat/9706186 Soft Condensed Matter +cond-mat/9706188 +cond-mat/9706189 Soft Condensed Matter +cond-mat/9706190 Statistical Mechanics +cond-mat/9706191 Strongly Correlated Electrons +cond-mat/9706192 Soft Condensed Matter +cond-mat/9706195 Statistical Mechanics +cond-mat/9706196 Mesoscale and Nanoscale Physics +cond-mat/9706200 +cond-mat/9706203 Strongly Correlated Electrons +cond-mat/9706205 Superconductivity +cond-mat/9706206 Disordered Systems and Neural Networks +cond-mat/9706207 +cond-mat/9706208 Statistical Mechanics +cond-mat/9706209 +cond-mat/9706210 Strongly Correlated Electrons +cond-mat/9706212 +cond-mat/9706214 +cond-mat/9706215 +cond-mat/9706217 Statistical Mechanics +cond-mat/9706218 Disordered Systems and Neural Networks +cond-mat/9706219 +cond-mat/9706221 Soft Condensed Matter +cond-mat/9706222 Statistical Mechanics +cond-mat/9706223 Mesoscale and Nanoscale Physics +cond-mat/9706224 Statistical Mechanics +cond-mat/9706225 Strongly Correlated Electrons +cond-mat/9706226 Soft Condensed Matter +cond-mat/9706228 Statistical Mechanics +cond-mat/9706229 Statistical Mechanics +cond-mat/9706231 Disordered Systems and Neural Networks +cond-mat/9706233 Mesoscale and Nanoscale Physics +cond-mat/9706237 Mesoscale and Nanoscale Physics +cond-mat/9706240 Superconductivity +cond-mat/9706241 Strongly Correlated Electrons +cond-mat/9706242 Disordered Systems and Neural Networks +cond-mat/9706243 Strongly Correlated Electrons +cond-mat/9706245 Superconductivity +cond-mat/9706246 +cond-mat/9706247 Strongly Correlated Electrons +cond-mat/9706249 Soft Condensed Matter +cond-mat/9706250 Superconductivity +cond-mat/9706251 Statistical Mechanics +cond-mat/9706252 Statistical Mechanics +cond-mat/9706253 Materials Science +cond-mat/9706255 Disordered Systems and Neural Networks +cond-mat/9706256 Mesoscale and Nanoscale Physics +cond-mat/9706257 Statistical Mechanics +cond-mat/9706258 Strongly Correlated Electrons +cond-mat/9706259 Superconductivity +cond-mat/9706260 Disordered Systems and Neural Networks +cond-mat/9706261 Strongly Correlated Electrons +cond-mat/9706262 Soft Condensed Matter +cond-mat/9706263 Statistical Mechanics +cond-mat/9706264 Materials Science +cond-mat/9706265 Disordered Systems and Neural Networks +cond-mat/9706267 Strongly Correlated Electrons +cond-mat/9706268 Strongly Correlated Electrons +cond-mat/9706270 Statistical Mechanics +cond-mat/9706271 Statistical Mechanics +cond-mat/9706273 +cond-mat/9706275 Strongly Correlated Electrons +cond-mat/9706276 +cond-mat/9706277 Disordered Systems and Neural Networks +cond-mat/9706278 Disordered Systems and Neural Networks +cond-mat/9706279 Materials Science +cond-mat/9706282 Statistical Mechanics +cond-mat/9706283 Strongly Correlated Electrons +cond-mat/9706284 Superconductivity +cond-mat/9706287 Mesoscale and Nanoscale Physics +cond-mat/9706288 Soft Condensed Matter +cond-mat/9706289 Strongly Correlated Electrons +cond-mat/9706290 Superconductivity +cond-mat/9706291 Mesoscale and Nanoscale Physics +cond-mat/9706295 +cond-mat/9706297 Statistical Mechanics +cond-mat/9706299 +cond-mat/9706300 Statistical Mechanics +cond-mat/9706302 Mesoscale and Nanoscale Physics +cond-mat/9706304 Disordered Systems and Neural Networks +cond-mat/9706306 +cond-mat/9706307 +cond-mat/9706308 Strongly Correlated Electrons +cond-mat/9706309 Strongly Correlated Electrons +cond-mat/9707003 Strongly Correlated Electrons +cond-mat/9707005 +cond-mat/9707006 Superconductivity +cond-mat/9707007 +cond-mat/9707008 Statistical Mechanics +cond-mat/9707009 Statistical Mechanics +cond-mat/9707010 Strongly Correlated Electrons +cond-mat/9707011 Strongly Correlated Electrons +cond-mat/9707013 Statistical Mechanics +cond-mat/9707014 Strongly Correlated Electrons +cond-mat/9707015 Statistical Mechanics +cond-mat/9707019 +cond-mat/9707024 Superconductivity +cond-mat/9707026 Superconductivity +cond-mat/9707028 Statistical Mechanics +cond-mat/9707029 Strongly Correlated Electrons +cond-mat/9707030 Superconductivity +cond-mat/9707031 +cond-mat/9707032 Strongly Correlated Electrons +cond-mat/9707034 Statistical Mechanics +cond-mat/9707035 Strongly Correlated Electrons +cond-mat/9707036 Statistical Mechanics +cond-mat/9707037 Disordered Systems and Neural Networks +cond-mat/9707040 Soft Condensed Matter +cond-mat/9707041 Soft Condensed Matter +cond-mat/9707045 Mesoscale and Nanoscale Physics +cond-mat/9707046 Disordered Systems and Neural Networks +cond-mat/9707047 Disordered Systems and Neural Networks +cond-mat/9707048 Materials Science +cond-mat/9707049 Statistical Mechanics +cond-mat/9707050 Disordered Systems and Neural Networks +cond-mat/9707052 Statistical Mechanics +cond-mat/9707054 Strongly Correlated Electrons +cond-mat/9707056 Mesoscale and Nanoscale Physics +cond-mat/9707057 Statistical Mechanics +cond-mat/9707058 +cond-mat/9707059 Disordered Systems and Neural Networks +cond-mat/9707060 Disordered Systems and Neural Networks +cond-mat/9707062 +cond-mat/9707063 Materials Science +cond-mat/9707064 Mesoscale and Nanoscale Physics +cond-mat/9707065 Mesoscale and Nanoscale Physics +cond-mat/9707066 Mesoscale and Nanoscale Physics +cond-mat/9707067 Strongly Correlated Electrons +cond-mat/9707068 Strongly Correlated Electrons +cond-mat/9707069 Disordered Systems and Neural Networks +cond-mat/9707070 +cond-mat/9707071 Superconductivity +cond-mat/9707072 Statistical Mechanics +cond-mat/9707073 Mesoscale and Nanoscale Physics +cond-mat/9707074 Statistical Mechanics +cond-mat/9707075 +cond-mat/9707076 Strongly Correlated Electrons +cond-mat/9707077 Statistical Mechanics +cond-mat/9707078 +cond-mat/9707079 Statistical Mechanics +cond-mat/9707080 Mesoscale and Nanoscale Physics +cond-mat/9707082 Strongly Correlated Electrons +cond-mat/9707084 Statistical Mechanics +cond-mat/9707086 Mesoscale and Nanoscale Physics +cond-mat/9707087 Mesoscale and Nanoscale Physics +cond-mat/9707088 Superconductivity +cond-mat/9707089 Disordered Systems and Neural Networks +cond-mat/9707090 Strongly Correlated Electrons +cond-mat/9707091 Soft Condensed Matter +cond-mat/9707094 Materials Science +cond-mat/9707095 +cond-mat/9707096 Statistical Mechanics +cond-mat/9707099 Mesoscale and Nanoscale Physics +cond-mat/9707101 Soft Condensed Matter +cond-mat/9707102 Mesoscale and Nanoscale Physics +cond-mat/9707103 +cond-mat/9707104 Disordered Systems and Neural Networks +cond-mat/9707105 Mesoscale and Nanoscale Physics +cond-mat/9707107 Statistical Mechanics +cond-mat/9707108 Strongly Correlated Electrons +cond-mat/9707109 Superconductivity +cond-mat/9707110 Disordered Systems and Neural Networks +cond-mat/9707111 +cond-mat/9707112 Strongly Correlated Electrons +cond-mat/9707113 +cond-mat/9707114 Statistical Mechanics +cond-mat/9707115 Mesoscale and Nanoscale Physics +cond-mat/9707116 Statistical Mechanics +cond-mat/9707119 Mesoscale and Nanoscale Physics +cond-mat/9707120 Statistical Mechanics +cond-mat/9707121 Statistical Mechanics +cond-mat/9707122 +cond-mat/9707124 Superconductivity +cond-mat/9707125 Soft Condensed Matter +cond-mat/9707126 Statistical Mechanics +cond-mat/9707127 Strongly Correlated Electrons +cond-mat/9707128 Superconductivity +cond-mat/9707129 Statistical Mechanics +cond-mat/9707130 +cond-mat/9707131 Strongly Correlated Electrons +cond-mat/9707132 Strongly Correlated Electrons +cond-mat/9707133 Soft Condensed Matter +cond-mat/9707134 +cond-mat/9707135 +cond-mat/9707138 Mesoscale and Nanoscale Physics +cond-mat/9707139 Materials Science +cond-mat/9707142 Materials Science +cond-mat/9707143 +cond-mat/9707144 Mesoscale and Nanoscale Physics +cond-mat/9707145 Materials Science +cond-mat/9707148 Statistical Mechanics +cond-mat/9707151 Statistical Mechanics +cond-mat/9707152 Materials Science +cond-mat/9707154 Superconductivity +cond-mat/9707155 Strongly Correlated Electrons +cond-mat/9707156 Strongly Correlated Electrons +cond-mat/9707159 +cond-mat/9707160 Materials Science +cond-mat/9707161 +cond-mat/9707164 Disordered Systems and Neural Networks +cond-mat/9707165 Superconductivity +cond-mat/9707166 +cond-mat/9707168 Disordered Systems and Neural Networks +cond-mat/9707169 Disordered Systems and Neural Networks +cond-mat/9707172 Disordered Systems and Neural Networks +cond-mat/9707173 Materials Science +cond-mat/9707174 Materials Science +cond-mat/9707175 Materials Science +cond-mat/9707177 +cond-mat/9707178 Disordered Systems and Neural Networks +cond-mat/9707179 Disordered Systems and Neural Networks +cond-mat/9707180 Statistical Mechanics +cond-mat/9707184 Materials Science +cond-mat/9707185 Disordered Systems and Neural Networks +cond-mat/9707186 +cond-mat/9707187 Mesoscale and Nanoscale Physics +cond-mat/9707190 +cond-mat/9707191 Superconductivity +cond-mat/9707192 +cond-mat/9707195 Superconductivity +cond-mat/9707196 Superconductivity +cond-mat/9707200 Disordered Systems and Neural Networks +cond-mat/9707201 +cond-mat/9707202 Superconductivity +cond-mat/9707203 Statistical Mechanics +cond-mat/9707204 +cond-mat/9707205 Statistical Mechanics +cond-mat/9707206 +cond-mat/9707207 Strongly Correlated Electrons +cond-mat/9707209 Mesoscale and Nanoscale Physics +cond-mat/9707211 Superconductivity +cond-mat/9707212 Soft Condensed Matter +cond-mat/9707213 +cond-mat/9707214 Superconductivity +cond-mat/9707215 Disordered Systems and Neural Networks +cond-mat/9707216 +cond-mat/9707218 Materials Science +cond-mat/9707219 Mesoscale and Nanoscale Physics +cond-mat/9707220 Superconductivity +cond-mat/9707224 Mesoscale and Nanoscale Physics +cond-mat/9707226 Statistical Mechanics +cond-mat/9707227 Statistical Mechanics +cond-mat/9707229 Statistical Mechanics +cond-mat/9707230 +cond-mat/9707231 +cond-mat/9707232 Mesoscale and Nanoscale Physics +cond-mat/9707235 Superconductivity +cond-mat/9707237 Soft Condensed Matter +cond-mat/9707238 Disordered Systems and Neural Networks +cond-mat/9707239 Disordered Systems and Neural Networks +cond-mat/9707240 Statistical Mechanics +cond-mat/9707241 Superconductivity +cond-mat/9707242 Materials Science +cond-mat/9707243 Disordered Systems and Neural Networks +cond-mat/9707244 +cond-mat/9707245 +cond-mat/9707246 +cond-mat/9707247 Statistical Mechanics +cond-mat/9707248 Superconductivity +cond-mat/9707249 +cond-mat/9707250 Mesoscale and Nanoscale Physics +cond-mat/9707251 Mesoscale and Nanoscale Physics +cond-mat/9707252 Materials Science +cond-mat/9707253 Statistical Mechanics +cond-mat/9707254 Statistical Mechanics +cond-mat/9707256 Disordered Systems and Neural Networks +cond-mat/9707257 Statistical Mechanics +cond-mat/9707258 +cond-mat/9707259 Soft Condensed Matter +cond-mat/9707260 Statistical Mechanics +cond-mat/9707263 Strongly Correlated Electrons +cond-mat/9707264 Strongly Correlated Electrons +cond-mat/9707268 Statistical Mechanics +cond-mat/9707269 Statistical Mechanics +cond-mat/9707270 Materials Science +cond-mat/9707272 Disordered Systems and Neural Networks +cond-mat/9707273 Statistical Mechanics +cond-mat/9707274 Mesoscale and Nanoscale Physics +cond-mat/9707275 Strongly Correlated Electrons +cond-mat/9707276 Disordered Systems and Neural Networks +cond-mat/9707277 Strongly Correlated Electrons +cond-mat/9707278 Mesoscale and Nanoscale Physics +cond-mat/9707279 Strongly Correlated Electrons +cond-mat/9707281 Disordered Systems and Neural Networks +cond-mat/9707282 Soft Condensed Matter +cond-mat/9707283 Soft Condensed Matter +cond-mat/9707285 Disordered Systems and Neural Networks +cond-mat/9707286 Strongly Correlated Electrons +cond-mat/9707289 Mesoscale and Nanoscale Physics +cond-mat/9707290 Superconductivity +cond-mat/9707292 Mesoscale and Nanoscale Physics +cond-mat/9707293 Statistical Mechanics +cond-mat/9707294 Statistical Mechanics +cond-mat/9707297 Superconductivity +cond-mat/9707298 Strongly Correlated Electrons +cond-mat/9707299 Strongly Correlated Electrons +cond-mat/9707300 +cond-mat/9707302 +cond-mat/9707304 +cond-mat/9707306 Statistical Mechanics +cond-mat/9707307 Mesoscale and Nanoscale Physics +cond-mat/9707311 Strongly Correlated Electrons +cond-mat/9707313 +cond-mat/9707314 +cond-mat/9707317 Disordered Systems and Neural Networks +cond-mat/9707318 +cond-mat/9707323 +cond-mat/9707324 Mesoscale and Nanoscale Physics +cond-mat/9707325 Statistical Mechanics +cond-mat/9707327 +cond-mat/9707329 +cond-mat/9707330 +cond-mat/9707332 +cond-mat/9707333 +cond-mat/9707336 Disordered Systems and Neural Networks +cond-mat/9707337 Strongly Correlated Electrons +cond-mat/9707340 Statistical Mechanics +cond-mat/9707342 Statistical Mechanics +cond-mat/9707343 Statistical Mechanics +cond-mat/9707344 Statistical Mechanics +cond-mat/9707345 Statistical Mechanics +cond-mat/9707346 Soft Condensed Matter +cond-mat/9708002 +cond-mat/9708004 Soft Condensed Matter +cond-mat/9708005 Statistical Mechanics +cond-mat/9708007 Strongly Correlated Electrons +cond-mat/9708008 Materials Science +cond-mat/9708010 +cond-mat/9708011 Statistical Mechanics +cond-mat/9708012 Statistical Mechanics +cond-mat/9708016 +cond-mat/9708018 Statistical Mechanics +cond-mat/9708019 +cond-mat/9708020 +cond-mat/9708021 Superconductivity +cond-mat/9708024 +cond-mat/9708026 Strongly Correlated Electrons +cond-mat/9708027 Strongly Correlated Electrons +cond-mat/9708028 +cond-mat/9708029 +cond-mat/9708030 Superconductivity +cond-mat/9708032 Statistical Mechanics +cond-mat/9708034 +cond-mat/9708035 +cond-mat/9708037 Soft Condensed Matter +cond-mat/9708038 Mesoscale and Nanoscale Physics +cond-mat/9708039 Strongly Correlated Electrons +cond-mat/9708040 Soft Condensed Matter +cond-mat/9708042 Mesoscale and Nanoscale Physics +cond-mat/9708043 Statistical Mechanics +cond-mat/9708045 Mesoscale and Nanoscale Physics +cond-mat/9708047 Soft Condensed Matter +cond-mat/9708048 Soft Condensed Matter +cond-mat/9708049 Soft Condensed Matter +cond-mat/9708051 +cond-mat/9708052 Statistical Mechanics +cond-mat/9708053 Strongly Correlated Electrons +cond-mat/9708054 Mesoscale and Nanoscale Physics +cond-mat/9708055 +cond-mat/9708056 Superconductivity +cond-mat/9708057 Statistical Mechanics +cond-mat/9708058 Disordered Systems and Neural Networks +cond-mat/9708059 Soft Condensed Matter +cond-mat/9708060 Strongly Correlated Electrons +cond-mat/9708061 Statistical Mechanics +cond-mat/9708062 Disordered Systems and Neural Networks +cond-mat/9708063 +cond-mat/9708064 Statistical Mechanics +cond-mat/9708065 +cond-mat/9708068 Materials Science +cond-mat/9708069 Soft Condensed Matter +cond-mat/9708071 Disordered Systems and Neural Networks +cond-mat/9708073 Statistical Mechanics +cond-mat/9708075 Soft Condensed Matter +cond-mat/9708076 Strongly Correlated Electrons +cond-mat/9708077 Superconductivity +cond-mat/9708079 Superconductivity +cond-mat/9708080 Soft Condensed Matter +cond-mat/9708082 Soft Condensed Matter +cond-mat/9708083 Materials Science +cond-mat/9708085 +cond-mat/9708086 Superconductivity +cond-mat/9708087 Statistical Mechanics +cond-mat/9708088 Superconductivity +cond-mat/9708089 +cond-mat/9708090 Mesoscale and Nanoscale Physics +cond-mat/9708091 Strongly Correlated Electrons +cond-mat/9708092 Mesoscale and Nanoscale Physics +cond-mat/9708093 Statistical Mechanics +cond-mat/9708094 Strongly Correlated Electrons +cond-mat/9708095 Soft Condensed Matter +cond-mat/9708097 Strongly Correlated Electrons +cond-mat/9708099 Statistical Mechanics +cond-mat/9708100 +cond-mat/9708104 +cond-mat/9708105 Disordered Systems and Neural Networks +cond-mat/9708107 Soft Condensed Matter +cond-mat/9708108 Statistical Mechanics +cond-mat/9708111 +cond-mat/9708112 +cond-mat/9708114 Statistical Mechanics +cond-mat/9708115 Superconductivity +cond-mat/9708116 Statistical Mechanics +cond-mat/9708117 Superconductivity +cond-mat/9708118 Strongly Correlated Electrons +cond-mat/9708120 Statistical Mechanics +cond-mat/9708126 Statistical Mechanics +cond-mat/9708127 Materials Science +cond-mat/9708128 Statistical Mechanics +cond-mat/9708129 Materials Science +cond-mat/9708130 Soft Condensed Matter +cond-mat/9708132 Statistical Mechanics +cond-mat/9708133 +cond-mat/9708135 Mesoscale and Nanoscale Physics +cond-mat/9708136 Soft Condensed Matter +cond-mat/9708137 Soft Condensed Matter +cond-mat/9708138 Statistical Mechanics +cond-mat/9708139 +cond-mat/9708140 +cond-mat/9708141 +cond-mat/9708144 Materials Science +cond-mat/9708145 +cond-mat/9708150 +cond-mat/9708152 Strongly Correlated Electrons +cond-mat/9708153 Statistical Mechanics +cond-mat/9708156 Strongly Correlated Electrons +cond-mat/9708158 Soft Condensed Matter +cond-mat/9708159 +cond-mat/9708160 Statistical Mechanics +cond-mat/9708161 Disordered Systems and Neural Networks +cond-mat/9708162 Mesoscale and Nanoscale Physics +cond-mat/9708166 Strongly Correlated Electrons +cond-mat/9708167 +cond-mat/9708168 Strongly Correlated Electrons +cond-mat/9708169 Soft Condensed Matter +cond-mat/9708170 Mesoscale and Nanoscale Physics +cond-mat/9708172 +cond-mat/9708173 Statistical Mechanics +cond-mat/9708174 Statistical Mechanics +cond-mat/9708175 Disordered Systems and Neural Networks +cond-mat/9708177 +cond-mat/9708178 +cond-mat/9708179 Mesoscale and Nanoscale Physics +cond-mat/9708180 Strongly Correlated Electrons +cond-mat/9708181 +cond-mat/9708182 Soft Condensed Matter +cond-mat/9708183 Soft Condensed Matter +cond-mat/9708185 Strongly Correlated Electrons +cond-mat/9708187 +cond-mat/9708188 Disordered Systems and Neural Networks +cond-mat/9708189 +cond-mat/9708190 Superconductivity +cond-mat/9708195 Strongly Correlated Electrons +cond-mat/9708196 +cond-mat/9708197 Statistical Mechanics +cond-mat/9708198 Statistical Mechanics +cond-mat/9708200 Soft Condensed Matter +cond-mat/9708201 Mesoscale and Nanoscale Physics +cond-mat/9708202 Superconductivity +cond-mat/9708203 Superconductivity +cond-mat/9708205 +cond-mat/9708206 Mesoscale and Nanoscale Physics +cond-mat/9708207 Statistical Mechanics +cond-mat/9708208 Strongly Correlated Electrons +cond-mat/9708209 Mesoscale and Nanoscale Physics +cond-mat/9708211 Mesoscale and Nanoscale Physics +cond-mat/9708213 Disordered Systems and Neural Networks +cond-mat/9708214 Disordered Systems and Neural Networks +cond-mat/9708215 Disordered Systems and Neural Networks +cond-mat/9708216 Superconductivity +cond-mat/9708217 +cond-mat/9708218 Materials Science +cond-mat/9708219 Statistical Mechanics +cond-mat/9708220 Statistical Mechanics +cond-mat/9708221 Superconductivity +cond-mat/9708222 Statistical Mechanics +cond-mat/9708224 Mesoscale and Nanoscale Physics +cond-mat/9708225 +cond-mat/9708226 Soft Condensed Matter +cond-mat/9708228 +cond-mat/9708229 Mesoscale and Nanoscale Physics +cond-mat/9708230 Superconductivity +cond-mat/9708231 Statistical Mechanics +cond-mat/9708232 Strongly Correlated Electrons +cond-mat/9708233 Soft Condensed Matter +cond-mat/9708235 Superconductivity +cond-mat/9708237 +cond-mat/9708238 Superconductivity +cond-mat/9708239 Mesoscale and Nanoscale Physics +cond-mat/9709002 Disordered Systems and Neural Networks +cond-mat/9709003 Disordered Systems and Neural Networks +cond-mat/9709004 Superconductivity +cond-mat/9709006 +cond-mat/9709007 +cond-mat/9709009 Disordered Systems and Neural Networks +cond-mat/9709010 +cond-mat/9709011 +cond-mat/9709012 Superconductivity +cond-mat/9709013 Mesoscale and Nanoscale Physics +cond-mat/9709015 Mesoscale and Nanoscale Physics +cond-mat/9709017 Superconductivity +cond-mat/9709018 Strongly Correlated Electrons +cond-mat/9709020 Mesoscale and Nanoscale Physics +cond-mat/9709021 Statistical Mechanics +cond-mat/9709023 Statistical Mechanics +cond-mat/9709024 Statistical Mechanics +cond-mat/9709025 Statistical Mechanics +cond-mat/9709026 Mesoscale and Nanoscale Physics +cond-mat/9709028 Mesoscale and Nanoscale Physics +cond-mat/9709032 +cond-mat/9709033 Superconductivity +cond-mat/9709034 Superconductivity +cond-mat/9709035 +cond-mat/9709036 Soft Condensed Matter +cond-mat/9709037 +cond-mat/9709038 +cond-mat/9709039 Statistical Mechanics +cond-mat/9709040 Mesoscale and Nanoscale Physics +cond-mat/9709041 +cond-mat/9709042 Strongly Correlated Electrons +cond-mat/9709043 +cond-mat/9709047 Strongly Correlated Electrons +cond-mat/9709048 Statistical Mechanics +cond-mat/9709049 Statistical Mechanics +cond-mat/9709050 Statistical Mechanics +cond-mat/9709051 Statistical Mechanics +cond-mat/9709052 +cond-mat/9709054 +cond-mat/9709055 Mesoscale and Nanoscale Physics +cond-mat/9709057 Statistical Mechanics +cond-mat/9709058 Statistical Mechanics +cond-mat/9709059 Statistical Mechanics +cond-mat/9709062 Soft Condensed Matter +cond-mat/9709063 +cond-mat/9709064 Statistical Mechanics +cond-mat/9709066 Superconductivity +cond-mat/9709067 +cond-mat/9709068 Statistical Mechanics +cond-mat/9709069 Statistical Mechanics +cond-mat/9709071 Superconductivity +cond-mat/9709072 Mesoscale and Nanoscale Physics +cond-mat/9709073 +cond-mat/9709074 Mesoscale and Nanoscale Physics +cond-mat/9709075 +cond-mat/9709076 +cond-mat/9709078 Soft Condensed Matter +cond-mat/9709079 Statistical Mechanics +cond-mat/9709082 Statistical Mechanics +cond-mat/9709083 Statistical Mechanics +cond-mat/9709084 Superconductivity +cond-mat/9709085 Superconductivity +cond-mat/9709088 +cond-mat/9709089 +cond-mat/9709091 Mesoscale and Nanoscale Physics +cond-mat/9709092 Disordered Systems and Neural Networks +cond-mat/9709093 Mesoscale and Nanoscale Physics +cond-mat/9709095 +cond-mat/9709096 Superconductivity +cond-mat/9709097 Superconductivity +cond-mat/9709098 Mesoscale and Nanoscale Physics +cond-mat/9709099 +cond-mat/9709100 Materials Science +cond-mat/9709103 Statistical Mechanics +cond-mat/9709104 Statistical Mechanics +cond-mat/9709106 +cond-mat/9709109 Strongly Correlated Electrons +cond-mat/9709110 Strongly Correlated Electrons +cond-mat/9709111 +cond-mat/9709112 Strongly Correlated Electrons +cond-mat/9709113 +cond-mat/9709116 Statistical Mechanics +cond-mat/9709118 Statistical Mechanics +cond-mat/9709119 Mesoscale and Nanoscale Physics +cond-mat/9709121 Strongly Correlated Electrons +cond-mat/9709125 Superconductivity +cond-mat/9709126 Mesoscale and Nanoscale Physics +cond-mat/9709129 Strongly Correlated Electrons +cond-mat/9709130 Mesoscale and Nanoscale Physics +cond-mat/9709131 Statistical Mechanics +cond-mat/9709132 Statistical Mechanics +cond-mat/9709134 Superconductivity +cond-mat/9709137 Superconductivity +cond-mat/9709138 Materials Science +cond-mat/9709139 Strongly Correlated Electrons +cond-mat/9709140 Soft Condensed Matter +cond-mat/9709145 Soft Condensed Matter +cond-mat/9709146 +cond-mat/9709147 Strongly Correlated Electrons +cond-mat/9709148 Materials Science +cond-mat/9709149 Soft Condensed Matter +cond-mat/9709151 Strongly Correlated Electrons +cond-mat/9709153 +cond-mat/9709154 Statistical Mechanics +cond-mat/9709155 +cond-mat/9709156 Statistical Mechanics +cond-mat/9709158 Statistical Mechanics +cond-mat/9709160 +cond-mat/9709161 Strongly Correlated Electrons +cond-mat/9709162 Materials Science +cond-mat/9709163 Statistical Mechanics +cond-mat/9709166 Strongly Correlated Electrons +cond-mat/9709167 Strongly Correlated Electrons +cond-mat/9709168 Strongly Correlated Electrons +cond-mat/9709169 Strongly Correlated Electrons +cond-mat/9709170 Strongly Correlated Electrons +cond-mat/9709172 Soft Condensed Matter +cond-mat/9709173 Statistical Mechanics +cond-mat/9709174 +cond-mat/9709175 Superconductivity +cond-mat/9709176 Statistical Mechanics +cond-mat/9709179 Superconductivity +cond-mat/9709180 Soft Condensed Matter +cond-mat/9709181 Soft Condensed Matter +cond-mat/9709182 +cond-mat/9709186 +cond-mat/9709187 Superconductivity +cond-mat/9709191 Materials Science +cond-mat/9709192 Statistical Mechanics +cond-mat/9709193 Mesoscale and Nanoscale Physics +cond-mat/9709196 Soft Condensed Matter +cond-mat/9709197 Disordered Systems and Neural Networks +cond-mat/9709202 Mesoscale and Nanoscale Physics +cond-mat/9709203 Strongly Correlated Electrons +cond-mat/9709206 +cond-mat/9709213 Statistical Mechanics +cond-mat/9709214 Superconductivity +cond-mat/9709215 Strongly Correlated Electrons +cond-mat/9709216 Superconductivity +cond-mat/9709218 Disordered Systems and Neural Networks +cond-mat/9709219 Disordered Systems and Neural Networks +cond-mat/9709220 Disordered Systems and Neural Networks +cond-mat/9709221 Strongly Correlated Electrons +cond-mat/9709222 Strongly Correlated Electrons +cond-mat/9709223 Mesoscale and Nanoscale Physics +cond-mat/9709224 Statistical Mechanics +cond-mat/9709225 Mesoscale and Nanoscale Physics +cond-mat/9709227 Disordered Systems and Neural Networks +cond-mat/9709228 Soft Condensed Matter +cond-mat/9709229 Strongly Correlated Electrons +cond-mat/9709231 Soft Condensed Matter +cond-mat/9709234 Materials Science +cond-mat/9709235 Strongly Correlated Electrons +cond-mat/9709238 Disordered Systems and Neural Networks +cond-mat/9709239 +cond-mat/9709240 Strongly Correlated Electrons +cond-mat/9709246 Materials Science +cond-mat/9709250 Disordered Systems and Neural Networks +cond-mat/9709252 Statistical Mechanics +cond-mat/9709253 Soft Condensed Matter +cond-mat/9709254 Soft Condensed Matter +cond-mat/9709255 Strongly Correlated Electrons +cond-mat/9709257 Strongly Correlated Electrons +cond-mat/9709258 Statistical Mechanics +cond-mat/9709259 +cond-mat/9709260 Disordered Systems and Neural Networks +cond-mat/9709262 +cond-mat/9709263 Statistical Mechanics +cond-mat/9709264 Materials Science +cond-mat/9709265 +cond-mat/9709267 Disordered Systems and Neural Networks +cond-mat/9709269 Materials Science +cond-mat/9709270 Disordered Systems and Neural Networks +cond-mat/9709271 Statistical Mechanics +cond-mat/9709273 Strongly Correlated Electrons +cond-mat/9709274 Disordered Systems and Neural Networks +cond-mat/9709277 Strongly Correlated Electrons +cond-mat/9709279 +cond-mat/9709282 Superconductivity +cond-mat/9709285 Disordered Systems and Neural Networks +cond-mat/9709286 Statistical Mechanics +cond-mat/9709287 Superconductivity +cond-mat/9709288 Mesoscale and Nanoscale Physics +cond-mat/9709289 Superconductivity +cond-mat/9709291 Materials Science +cond-mat/9709292 Statistical Mechanics +cond-mat/9709295 +cond-mat/9709296 Disordered Systems and Neural Networks +cond-mat/9709297 Strongly Correlated Electrons +cond-mat/9709298 +cond-mat/9709299 +cond-mat/9709300 Materials Science +cond-mat/9709301 +cond-mat/9709304 Statistical Mechanics +cond-mat/9709305 Strongly Correlated Electrons +cond-mat/9709306 Materials Science +cond-mat/9709307 +cond-mat/9709308 Strongly Correlated Electrons +cond-mat/9709309 Statistical Mechanics +cond-mat/9709312 Strongly Correlated Electrons +cond-mat/9709313 Materials Science +cond-mat/9709314 Superconductivity +cond-mat/9709315 Mesoscale and Nanoscale Physics +cond-mat/9709316 Strongly Correlated Electrons +cond-mat/9709317 Statistical Mechanics +cond-mat/9709319 +cond-mat/9709321 Soft Condensed Matter +cond-mat/9709323 Statistical Mechanics +cond-mat/9709324 Superconductivity +cond-mat/9709327 Statistical Mechanics +cond-mat/9709328 Strongly Correlated Electrons +cond-mat/9709332 Mesoscale and Nanoscale Physics +cond-mat/9709334 +cond-mat/9709335 +cond-mat/9709336 Strongly Correlated Electrons +cond-mat/9709337 Materials Science +cond-mat/9709338 Statistical Mechanics +cond-mat/9709339 Mesoscale and Nanoscale Physics +cond-mat/9709340 Superconductivity +cond-mat/9709341 +cond-mat/9709344 Mesoscale and Nanoscale Physics +cond-mat/9709346 Materials Science +cond-mat/9710003 Superconductivity +cond-mat/9710004 Superconductivity +cond-mat/9710005 +cond-mat/9710006 Disordered Systems and Neural Networks +cond-mat/9710007 Superconductivity +cond-mat/9710008 Materials Science +cond-mat/9710010 Disordered Systems and Neural Networks +cond-mat/9710011 Mesoscale and Nanoscale Physics +cond-mat/9710012 Statistical Mechanics +cond-mat/9710013 Strongly Correlated Electrons +cond-mat/9710014 Mesoscale and Nanoscale Physics +cond-mat/9710016 Soft Condensed Matter +cond-mat/9710017 Superconductivity +cond-mat/9710018 Statistical Mechanics +cond-mat/9710019 Strongly Correlated Electrons +cond-mat/9710020 Mesoscale and Nanoscale Physics +cond-mat/9710021 Statistical Mechanics +cond-mat/9710022 Statistical Mechanics +cond-mat/9710023 +cond-mat/9710024 Disordered Systems and Neural Networks +cond-mat/9710026 +cond-mat/9710028 Soft Condensed Matter +cond-mat/9710031 Mesoscale and Nanoscale Physics +cond-mat/9710032 Strongly Correlated Electrons +cond-mat/9710034 Materials Science +cond-mat/9710035 +cond-mat/9710038 +cond-mat/9710039 Soft Condensed Matter +cond-mat/9710040 +cond-mat/9710041 Mesoscale and Nanoscale Physics +cond-mat/9710042 Superconductivity +cond-mat/9710044 Disordered Systems and Neural Networks +cond-mat/9710045 Statistical Mechanics +cond-mat/9710046 Statistical Mechanics +cond-mat/9710049 +cond-mat/9710052 Mesoscale and Nanoscale Physics +cond-mat/9710054 +cond-mat/9710055 Statistical Mechanics +cond-mat/9710058 +cond-mat/9710059 Superconductivity +cond-mat/9710061 Strongly Correlated Electrons +cond-mat/9710062 Strongly Correlated Electrons +cond-mat/9710063 +cond-mat/9710064 Mesoscale and Nanoscale Physics +cond-mat/9710065 Strongly Correlated Electrons +cond-mat/9710069 +cond-mat/9710070 Strongly Correlated Electrons +cond-mat/9710072 Materials Science +cond-mat/9710074 Disordered Systems and Neural Networks +cond-mat/9710075 Statistical Mechanics +cond-mat/9710078 Superconductivity +cond-mat/9710079 +cond-mat/9710080 Materials Science +cond-mat/9710082 Statistical Mechanics +cond-mat/9710085 Strongly Correlated Electrons +cond-mat/9710086 Statistical Mechanics +cond-mat/9710089 +cond-mat/9710093 Disordered Systems and Neural Networks +cond-mat/9710094 Mesoscale and Nanoscale Physics +cond-mat/9710095 Mesoscale and Nanoscale Physics +cond-mat/9710096 Statistical Mechanics +cond-mat/9710097 +cond-mat/9710098 Statistical Mechanics +cond-mat/9710099 +cond-mat/9710100 +cond-mat/9710102 Statistical Mechanics +cond-mat/9710103 Statistical Mechanics +cond-mat/9710104 Disordered Systems and Neural Networks +cond-mat/9710106 +cond-mat/9710107 Mesoscale and Nanoscale Physics +cond-mat/9710108 Mesoscale and Nanoscale Physics +cond-mat/9710109 Strongly Correlated Electrons +cond-mat/9710110 Mesoscale and Nanoscale Physics +cond-mat/9710111 Strongly Correlated Electrons +cond-mat/9710112 +cond-mat/9710113 Strongly Correlated Electrons +cond-mat/9710114 Strongly Correlated Electrons +cond-mat/9710115 Superconductivity +cond-mat/9710116 Superconductivity +cond-mat/9710117 +cond-mat/9710119 Statistical Mechanics +cond-mat/9710120 Disordered Systems and Neural Networks +cond-mat/9710121 Statistical Mechanics +cond-mat/9710122 Strongly Correlated Electrons +cond-mat/9710123 Strongly Correlated Electrons +cond-mat/9710124 +cond-mat/9710125 Mesoscale and Nanoscale Physics +cond-mat/9710127 Soft Condensed Matter +cond-mat/9710128 +cond-mat/9710129 Materials Science +cond-mat/9710130 +cond-mat/9710132 Statistical Mechanics +cond-mat/9710133 Statistical Mechanics +cond-mat/9710134 +cond-mat/9710135 Mesoscale and Nanoscale Physics +cond-mat/9710136 Strongly Correlated Electrons +cond-mat/9710139 Superconductivity +cond-mat/9710140 Superconductivity +cond-mat/9710141 Strongly Correlated Electrons +cond-mat/9710142 Statistical Mechanics +cond-mat/9710144 +cond-mat/9710146 Disordered Systems and Neural Networks +cond-mat/9710148 Disordered Systems and Neural Networks +cond-mat/9710151 Materials Science +cond-mat/9710152 Statistical Mechanics +cond-mat/9710154 Disordered Systems and Neural Networks +cond-mat/9710155 Superconductivity +cond-mat/9710156 Soft Condensed Matter +cond-mat/9710158 Strongly Correlated Electrons +cond-mat/9710159 Superconductivity +cond-mat/9710160 Strongly Correlated Electrons +cond-mat/9710161 Strongly Correlated Electrons +cond-mat/9710162 Mesoscale and Nanoscale Physics +cond-mat/9710163 Superconductivity +cond-mat/9710164 Statistical Mechanics +cond-mat/9710166 Strongly Correlated Electrons +cond-mat/9710167 Materials Science +cond-mat/9710169 +cond-mat/9710170 Statistical Mechanics +cond-mat/9710171 Statistical Mechanics +cond-mat/9710173 Disordered Systems and Neural Networks +cond-mat/9710176 Disordered Systems and Neural Networks +cond-mat/9710178 Disordered Systems and Neural Networks +cond-mat/9710180 Materials Science +cond-mat/9710183 +cond-mat/9710184 Superconductivity +cond-mat/9710185 Superconductivity +cond-mat/9710186 Mesoscale and Nanoscale Physics +cond-mat/9710188 Superconductivity +cond-mat/9710189 Superconductivity +cond-mat/9710191 Statistical Mechanics +cond-mat/9710192 +cond-mat/9710194 Mesoscale and Nanoscale Physics +cond-mat/9710195 Mesoscale and Nanoscale Physics +cond-mat/9710198 Mesoscale and Nanoscale Physics +cond-mat/9710199 Statistical Mechanics +cond-mat/9710200 Superconductivity +cond-mat/9710202 Mesoscale and Nanoscale Physics +cond-mat/9710203 Statistical Mechanics +cond-mat/9710204 Superconductivity +cond-mat/9710206 +cond-mat/9710207 Superconductivity +cond-mat/9710208 Mesoscale and Nanoscale Physics +cond-mat/9710209 Mesoscale and Nanoscale Physics +cond-mat/9710210 Materials Science +cond-mat/9710211 +cond-mat/9710212 +cond-mat/9710215 Statistical Mechanics +cond-mat/9710217 +cond-mat/9710221 Strongly Correlated Electrons +cond-mat/9710222 Statistical Mechanics +cond-mat/9710224 Superconductivity +cond-mat/9710225 Materials Science +cond-mat/9710226 Mesoscale and Nanoscale Physics +cond-mat/9710227 Statistical Mechanics +cond-mat/9710229 Statistical Mechanics +cond-mat/9710230 +cond-mat/9710231 +cond-mat/9710232 Strongly Correlated Electrons +cond-mat/9710233 Strongly Correlated Electrons +cond-mat/9710235 +cond-mat/9710237 Strongly Correlated Electrons +cond-mat/9710238 +cond-mat/9710239 Mesoscale and Nanoscale Physics +cond-mat/9710240 Superconductivity +cond-mat/9710241 Superconductivity +cond-mat/9710242 Superconductivity +cond-mat/9710243 Superconductivity +cond-mat/9710244 Materials Science +cond-mat/9710245 Strongly Correlated Electrons +cond-mat/9710246 +cond-mat/9710247 Disordered Systems and Neural Networks +cond-mat/9710250 +cond-mat/9710251 Strongly Correlated Electrons +cond-mat/9710252 Statistical Mechanics +cond-mat/9710253 Superconductivity +cond-mat/9710254 Superconductivity +cond-mat/9710256 Strongly Correlated Electrons +cond-mat/9710259 Mesoscale and Nanoscale Physics +cond-mat/9710263 Statistical Mechanics +cond-mat/9710264 Mesoscale and Nanoscale Physics +cond-mat/9710266 Superconductivity +cond-mat/9710267 Materials Science +cond-mat/9710270 +cond-mat/9710272 Disordered Systems and Neural Networks +cond-mat/9710274 +cond-mat/9710279 Statistical Mechanics +cond-mat/9710281 Statistical Mechanics +cond-mat/9710282 +cond-mat/9710284 Mesoscale and Nanoscale Physics +cond-mat/9710285 Mesoscale and Nanoscale Physics +cond-mat/9710286 Strongly Correlated Electrons +cond-mat/9710289 Mesoscale and Nanoscale Physics +cond-mat/9710290 Statistical Mechanics +cond-mat/9710291 Statistical Mechanics +cond-mat/9710293 Superconductivity +cond-mat/9710294 Materials Science +cond-mat/9710298 +cond-mat/9710299 Mesoscale and Nanoscale Physics +cond-mat/9710303 Strongly Correlated Electrons +cond-mat/9710304 Materials Science +cond-mat/9710306 +cond-mat/9710309 Mesoscale and Nanoscale Physics +cond-mat/9710310 Strongly Correlated Electrons +cond-mat/9710312 Disordered Systems and Neural Networks +cond-mat/9710313 Strongly Correlated Electrons +cond-mat/9710315 Strongly Correlated Electrons +cond-mat/9710319 Superconductivity +cond-mat/9710322 +cond-mat/9710325 Statistical Mechanics +cond-mat/9710326 +cond-mat/9710328 Soft Condensed Matter +cond-mat/9710329 Statistical Mechanics +cond-mat/9710331 Mesoscale and Nanoscale Physics +cond-mat/9710332 Statistical Mechanics +cond-mat/9710333 Statistical Mechanics +cond-mat/9710334 Statistical Mechanics +cond-mat/9710335 +cond-mat/9710337 Mesoscale and Nanoscale Physics +cond-mat/9710338 Statistical Mechanics +cond-mat/9710339 Superconductivity +cond-mat/9710340 +cond-mat/9710341 Soft Condensed Matter +cond-mat/9710342 +cond-mat/9710343 Strongly Correlated Electrons +cond-mat/9710347 Statistical Mechanics +cond-mat/9710348 Soft Condensed Matter +cond-mat/9710351 +cond-mat/9710352 Disordered Systems and Neural Networks +cond-mat/9711001 +cond-mat/9711002 Soft Condensed Matter +cond-mat/9711003 Strongly Correlated Electrons +cond-mat/9711004 Superconductivity +cond-mat/9711006 +cond-mat/9711007 +cond-mat/9711009 Strongly Correlated Electrons +cond-mat/9711010 Disordered Systems and Neural Networks +cond-mat/9711011 Soft Condensed Matter +cond-mat/9711012 Disordered Systems and Neural Networks +cond-mat/9711013 Statistical Mechanics +cond-mat/9711015 +cond-mat/9711016 Mesoscale and Nanoscale Physics +cond-mat/9711017 Superconductivity +cond-mat/9711019 Statistical Mechanics +cond-mat/9711020 Mesoscale and Nanoscale Physics +cond-mat/9711021 +cond-mat/9711023 Disordered Systems and Neural Networks +cond-mat/9711025 Mesoscale and Nanoscale Physics +cond-mat/9711026 Disordered Systems and Neural Networks +cond-mat/9711027 Disordered Systems and Neural Networks +cond-mat/9711030 Mesoscale and Nanoscale Physics +cond-mat/9711032 Statistical Mechanics +cond-mat/9711034 Statistical Mechanics +cond-mat/9711037 +cond-mat/9711039 Strongly Correlated Electrons +cond-mat/9711043 Superconductivity +cond-mat/9711044 Soft Condensed Matter +cond-mat/9711045 Statistical Mechanics +cond-mat/9711046 Mesoscale and Nanoscale Physics +cond-mat/9711048 Strongly Correlated Electrons +cond-mat/9711051 Statistical Mechanics +cond-mat/9711052 Strongly Correlated Electrons +cond-mat/9711053 +cond-mat/9711054 Statistical Mechanics +cond-mat/9711055 Statistical Mechanics +cond-mat/9711056 Strongly Correlated Electrons +cond-mat/9711057 Statistical Mechanics +cond-mat/9711058 Statistical Mechanics +cond-mat/9711060 Superconductivity +cond-mat/9711061 Strongly Correlated Electrons +cond-mat/9711062 Statistical Mechanics +cond-mat/9711063 Superconductivity +cond-mat/9711065 +cond-mat/9711066 Statistical Mechanics +cond-mat/9711067 +cond-mat/9711069 Statistical Mechanics +cond-mat/9711070 Mesoscale and Nanoscale Physics +cond-mat/9711072 Statistical Mechanics +cond-mat/9711073 Superconductivity +cond-mat/9711075 Mesoscale and Nanoscale Physics +cond-mat/9711078 +cond-mat/9711079 Mesoscale and Nanoscale Physics +cond-mat/9711081 Mesoscale and Nanoscale Physics +cond-mat/9711083 Strongly Correlated Electrons +cond-mat/9711084 Statistical Mechanics +cond-mat/9711086 +cond-mat/9711087 Mesoscale and Nanoscale Physics +cond-mat/9711088 Superconductivity +cond-mat/9711090 +cond-mat/9711091 Strongly Correlated Electrons +cond-mat/9711092 Soft Condensed Matter +cond-mat/9711094 Disordered Systems and Neural Networks +cond-mat/9711095 Soft Condensed Matter +cond-mat/9711096 Statistical Mechanics +cond-mat/9711097 Mesoscale and Nanoscale Physics +cond-mat/9711102 +cond-mat/9711103 Superconductivity +cond-mat/9711104 Statistical Mechanics +cond-mat/9711105 +cond-mat/9711106 Statistical Mechanics +cond-mat/9711107 +cond-mat/9711108 +cond-mat/9711109 Mesoscale and Nanoscale Physics +cond-mat/9711110 Statistical Mechanics +cond-mat/9711111 Statistical Mechanics +cond-mat/9711112 Superconductivity +cond-mat/9711113 Disordered Systems and Neural Networks +cond-mat/9711115 Disordered Systems and Neural Networks +cond-mat/9711117 Superconductivity +cond-mat/9711118 Mesoscale and Nanoscale Physics +cond-mat/9711119 +cond-mat/9711121 Strongly Correlated Electrons +cond-mat/9711122 Disordered Systems and Neural Networks +cond-mat/9711123 Statistical Mechanics +cond-mat/9711124 Strongly Correlated Electrons +cond-mat/9711126 Materials Science +cond-mat/9711128 Superconductivity +cond-mat/9711133 +cond-mat/9711136 +cond-mat/9711138 Mesoscale and Nanoscale Physics +cond-mat/9711139 Strongly Correlated Electrons +cond-mat/9711140 +cond-mat/9711141 Mesoscale and Nanoscale Physics +cond-mat/9711142 Statistical Mechanics +cond-mat/9711144 Mesoscale and Nanoscale Physics +cond-mat/9711146 +cond-mat/9711147 Superconductivity +cond-mat/9711148 Statistical Mechanics +cond-mat/9711151 Superconductivity +cond-mat/9711152 Statistical Mechanics +cond-mat/9711153 Strongly Correlated Electrons +cond-mat/9711154 Materials Science +cond-mat/9711157 Superconductivity +cond-mat/9711158 Mesoscale and Nanoscale Physics +cond-mat/9711159 Strongly Correlated Electrons +cond-mat/9711160 Mesoscale and Nanoscale Physics +cond-mat/9711167 +cond-mat/9711168 Soft Condensed Matter +cond-mat/9711169 Statistical Mechanics +cond-mat/9711170 Superconductivity +cond-mat/9711171 Mesoscale and Nanoscale Physics +cond-mat/9711172 Strongly Correlated Electrons +cond-mat/9711173 Mesoscale and Nanoscale Physics +cond-mat/9711175 Superconductivity +cond-mat/9711178 +cond-mat/9711181 +cond-mat/9711182 Statistical Mechanics +cond-mat/9711183 Materials Science +cond-mat/9711186 Mesoscale and Nanoscale Physics +cond-mat/9711187 Materials Science +cond-mat/9711189 Materials Science +cond-mat/9711191 Statistical Mechanics +cond-mat/9711192 Strongly Correlated Electrons +cond-mat/9711193 Superconductivity +cond-mat/9711194 Superconductivity +cond-mat/9711195 Strongly Correlated Electrons +cond-mat/9711196 +cond-mat/9711198 Statistical Mechanics +cond-mat/9711201 Statistical Mechanics +cond-mat/9711202 +cond-mat/9711204 Strongly Correlated Electrons +cond-mat/9711205 Statistical Mechanics +cond-mat/9711207 Statistical Mechanics +cond-mat/9711208 Statistical Mechanics +cond-mat/9711209 Statistical Mechanics +cond-mat/9711210 Mesoscale and Nanoscale Physics +cond-mat/9711216 Strongly Correlated Electrons +cond-mat/9711218 Soft Condensed Matter +cond-mat/9711219 Mesoscale and Nanoscale Physics +cond-mat/9711221 Superconductivity +cond-mat/9711222 Statistical Mechanics +cond-mat/9711223 Mesoscale and Nanoscale Physics +cond-mat/9711224 +cond-mat/9711225 Superconductivity +cond-mat/9711226 Mesoscale and Nanoscale Physics +cond-mat/9711228 +cond-mat/9711229 Strongly Correlated Electrons +cond-mat/9711230 Statistical Mechanics +cond-mat/9711231 +cond-mat/9711232 Superconductivity +cond-mat/9711233 Strongly Correlated Electrons +cond-mat/9711234 Statistical Mechanics +cond-mat/9711237 Statistical Mechanics +cond-mat/9711238 Strongly Correlated Electrons +cond-mat/9711239 +cond-mat/9711240 +cond-mat/9711241 Superconductivity +cond-mat/9711242 Strongly Correlated Electrons +cond-mat/9711245 Materials Science +cond-mat/9711246 Superconductivity +cond-mat/9711247 Disordered Systems and Neural Networks +cond-mat/9711248 +cond-mat/9711249 Statistical Mechanics +cond-mat/9711250 Soft Condensed Matter +cond-mat/9711251 Superconductivity +cond-mat/9711254 Strongly Correlated Electrons +cond-mat/9711255 Soft Condensed Matter +cond-mat/9711257 +cond-mat/9711259 Statistical Mechanics +cond-mat/9711260 Mesoscale and Nanoscale Physics +cond-mat/9711263 Mesoscale and Nanoscale Physics +cond-mat/9711264 Strongly Correlated Electrons +cond-mat/9711266 Strongly Correlated Electrons +cond-mat/9711267 Mesoscale and Nanoscale Physics +cond-mat/9711268 +cond-mat/9711271 Disordered Systems and Neural Networks +cond-mat/9711272 Superconductivity +cond-mat/9711273 +cond-mat/9711274 +cond-mat/9711275 Statistical Mechanics +cond-mat/9711276 Mesoscale and Nanoscale Physics +cond-mat/9711285 Soft Condensed Matter +cond-mat/9711286 +cond-mat/9711287 Statistical Mechanics +cond-mat/9711288 Mesoscale and Nanoscale Physics +cond-mat/9711289 +cond-mat/9711291 +cond-mat/9711293 Materials Science +cond-mat/9711297 Statistical Mechanics +cond-mat/9711299 Statistical Mechanics +cond-mat/9711301 Strongly Correlated Electrons +cond-mat/9711302 Statistical Mechanics +cond-mat/9711303 Statistical Mechanics +cond-mat/9711305 Strongly Correlated Electrons +cond-mat/9711307 +cond-mat/9711311 Mesoscale and Nanoscale Physics +cond-mat/9711313 Statistical Mechanics +cond-mat/9711314 Soft Condensed Matter +cond-mat/9712002 Statistical Mechanics +cond-mat/9712003 Strongly Correlated Electrons +cond-mat/9712004 Soft Condensed Matter +cond-mat/9712005 Statistical Mechanics +cond-mat/9712007 +cond-mat/9712008 Materials Science +cond-mat/9712013 Strongly Correlated Electrons +cond-mat/9712014 Strongly Correlated Electrons +cond-mat/9712016 Strongly Correlated Electrons +cond-mat/9712019 +cond-mat/9712020 Mesoscale and Nanoscale Physics +cond-mat/9712021 Materials Science +cond-mat/9712022 Strongly Correlated Electrons +cond-mat/9712023 Strongly Correlated Electrons +cond-mat/9712026 +cond-mat/9712028 Strongly Correlated Electrons +cond-mat/9712029 Superconductivity +cond-mat/9712031 Mesoscale and Nanoscale Physics +cond-mat/9712035 Superconductivity +cond-mat/9712036 Mesoscale and Nanoscale Physics +cond-mat/9712037 Soft Condensed Matter +cond-mat/9712038 Soft Condensed Matter +cond-mat/9712040 Strongly Correlated Electrons +cond-mat/9712044 +cond-mat/9712045 Statistical Mechanics +cond-mat/9712046 +cond-mat/9712047 Superconductivity +cond-mat/9712049 Soft Condensed Matter +cond-mat/9712050 Disordered Systems and Neural Networks +cond-mat/9712051 Strongly Correlated Electrons +cond-mat/9712054 Mesoscale and Nanoscale Physics +cond-mat/9712057 Mesoscale and Nanoscale Physics +cond-mat/9712060 +cond-mat/9712061 +cond-mat/9712062 +cond-mat/9712063 Statistical Mechanics +cond-mat/9712064 Statistical Mechanics +cond-mat/9712066 Mesoscale and Nanoscale Physics +cond-mat/9712067 Statistical Mechanics +cond-mat/9712068 Soft Condensed Matter +cond-mat/9712069 Statistical Mechanics +cond-mat/9712070 Mesoscale and Nanoscale Physics +cond-mat/9712071 Materials Science +cond-mat/9712072 Statistical Mechanics +cond-mat/9712074 +cond-mat/9712075 Mesoscale and Nanoscale Physics +cond-mat/9712076 Statistical Mechanics +cond-mat/9712078 +cond-mat/9712080 +cond-mat/9712082 Statistical Mechanics +cond-mat/9712083 Soft Condensed Matter +cond-mat/9712084 Mesoscale and Nanoscale Physics +cond-mat/9712087 Strongly Correlated Electrons +cond-mat/9712088 Superconductivity +cond-mat/9712089 Strongly Correlated Electrons +cond-mat/9712090 +cond-mat/9712091 Superconductivity +cond-mat/9712092 Statistical Mechanics +cond-mat/9712094 +cond-mat/9712097 Soft Condensed Matter +cond-mat/9712098 +cond-mat/9712099 Statistical Mechanics +cond-mat/9712100 Superconductivity +cond-mat/9712101 +cond-mat/9712102 Superconductivity +cond-mat/9712103 Disordered Systems and Neural Networks +cond-mat/9712104 Strongly Correlated Electrons +cond-mat/9712105 Materials Science +cond-mat/9712106 Disordered Systems and Neural Networks +cond-mat/9712107 Disordered Systems and Neural Networks +cond-mat/9712109 Materials Science +cond-mat/9712110 Statistical Mechanics +cond-mat/9712112 Statistical Mechanics +cond-mat/9712114 Statistical Mechanics +cond-mat/9712115 Statistical Mechanics +cond-mat/9712116 Superconductivity +cond-mat/9712117 Soft Condensed Matter +cond-mat/9712118 Superconductivity +cond-mat/9712119 Strongly Correlated Electrons +cond-mat/9712121 Strongly Correlated Electrons +cond-mat/9712122 +cond-mat/9712123 Mesoscale and Nanoscale Physics +cond-mat/9712125 +cond-mat/9712126 +cond-mat/9712127 Statistical Mechanics +cond-mat/9712128 Superconductivity +cond-mat/9712130 Statistical Mechanics +cond-mat/9712131 +cond-mat/9712134 +cond-mat/9712135 Mesoscale and Nanoscale Physics +cond-mat/9712136 Strongly Correlated Electrons +cond-mat/9712137 +cond-mat/9712138 Soft Condensed Matter +cond-mat/9712139 Strongly Correlated Electrons +cond-mat/9712142 Materials Science +cond-mat/9712144 +cond-mat/9712145 Superconductivity +cond-mat/9712146 Disordered Systems and Neural Networks +cond-mat/9712147 Mesoscale and Nanoscale Physics +cond-mat/9712151 Mesoscale and Nanoscale Physics +cond-mat/9712152 Strongly Correlated Electrons +cond-mat/9712155 Materials Science +cond-mat/9712160 +cond-mat/9712161 Mesoscale and Nanoscale Physics +cond-mat/9712162 Strongly Correlated Electrons +cond-mat/9712163 Strongly Correlated Electrons +cond-mat/9712165 +cond-mat/9712167 +cond-mat/9712169 +cond-mat/9712171 Materials Science +cond-mat/9712172 Strongly Correlated Electrons +cond-mat/9712173 +cond-mat/9712174 Superconductivity +cond-mat/9712175 +cond-mat/9712178 Statistical Mechanics +cond-mat/9712179 Materials Science +cond-mat/9712181 Disordered Systems and Neural Networks +cond-mat/9712182 +cond-mat/9712184 Strongly Correlated Electrons +cond-mat/9712187 Superconductivity +cond-mat/9712191 Strongly Correlated Electrons +cond-mat/9712193 Strongly Correlated Electrons +cond-mat/9712194 +cond-mat/9712195 Disordered Systems and Neural Networks +cond-mat/9712196 Statistical Mechanics +cond-mat/9712197 Mesoscale and Nanoscale Physics +cond-mat/9712198 Statistical Mechanics +cond-mat/9712200 Statistical Mechanics +cond-mat/9712202 Strongly Correlated Electrons +cond-mat/9712204 +cond-mat/9712206 Statistical Mechanics +cond-mat/9712209 +cond-mat/9712210 Superconductivity +cond-mat/9712213 Statistical Mechanics +cond-mat/9712214 Superconductivity +cond-mat/9712216 +cond-mat/9712217 Disordered Systems and Neural Networks +cond-mat/9712218 Superconductivity +cond-mat/9712219 Strongly Correlated Electrons +cond-mat/9712220 Mesoscale and Nanoscale Physics +cond-mat/9712225 Statistical Mechanics +cond-mat/9712226 Statistical Mechanics +cond-mat/9712227 Disordered Systems and Neural Networks +cond-mat/9712228 Strongly Correlated Electrons +cond-mat/9712229 Superconductivity +cond-mat/9712230 Strongly Correlated Electrons +cond-mat/9712232 Materials Science +cond-mat/9712233 +cond-mat/9712236 Mesoscale and Nanoscale Physics +cond-mat/9712238 Strongly Correlated Electrons +cond-mat/9712239 Statistical Mechanics +cond-mat/9712242 Statistical Mechanics +cond-mat/9712243 Statistical Mechanics +cond-mat/9712244 +cond-mat/9712245 Materials Science +cond-mat/9712246 +cond-mat/9712247 Superconductivity +cond-mat/9712248 Mesoscale and Nanoscale Physics +cond-mat/9712249 Disordered Systems and Neural Networks +cond-mat/9712250 Disordered Systems and Neural Networks +cond-mat/9712251 Disordered Systems and Neural Networks +cond-mat/9712252 +cond-mat/9712253 Statistical Mechanics +cond-mat/9712254 +cond-mat/9712255 Superconductivity +cond-mat/9712256 Mesoscale and Nanoscale Physics +cond-mat/9712257 Strongly Correlated Electrons +cond-mat/9712258 Mesoscale and Nanoscale Physics +cond-mat/9712259 Statistical Mechanics +cond-mat/9712260 +cond-mat/9712261 Disordered Systems and Neural Networks +cond-mat/9712262 Statistical Mechanics +cond-mat/9712263 Strongly Correlated Electrons +cond-mat/9712264 Superconductivity +cond-mat/9712268 Statistical Mechanics +cond-mat/9712269 Mesoscale and Nanoscale Physics +cond-mat/9712271 Superconductivity +cond-mat/9712272 Superconductivity +cond-mat/9712273 Superconductivity +cond-mat/9712275 Mesoscale and Nanoscale Physics +cond-mat/9712276 +cond-mat/9712277 Statistical Mechanics +cond-mat/9712278 Statistical Mechanics +cond-mat/9712279 Mesoscale and Nanoscale Physics +cond-mat/9712281 Strongly Correlated Electrons +cond-mat/9712282 +cond-mat/9712288 Statistical Mechanics +cond-mat/9712289 Strongly Correlated Electrons +cond-mat/9712290 Mesoscale and Nanoscale Physics +cond-mat/9712291 Mesoscale and Nanoscale Physics +cond-mat/9712293 Strongly Correlated Electrons +cond-mat/9712297 Strongly Correlated Electrons +cond-mat/9712299 Superconductivity +cond-mat/9712300 Strongly Correlated Electrons +cond-mat/9712301 Statistical Mechanics +cond-mat/9712302 +cond-mat/9712304 Mesoscale and Nanoscale Physics +cond-mat/9712305 +cond-mat/9712306 Mesoscale and Nanoscale Physics +cond-mat/9712307 Superconductivity +cond-mat/9712309 Statistical Mechanics +cond-mat/9712310 Strongly Correlated Electrons +cond-mat/9712312 Materials Science +cond-mat/9712313 Statistical Mechanics +cond-mat/9712314 +cond-mat/9712316 Strongly Correlated Electrons +cond-mat/9712317 Statistical Mechanics +cond-mat/9712319 Strongly Correlated Electrons +cond-mat/9712321 Materials Science +cond-mat/9712325 Disordered Systems and Neural Networks +cond-mat/9712327 Materials Science +cond-mat/9712328 Mesoscale and Nanoscale Physics +dg-ga/9701007 Differential Geometry +dg-ga/9702015 Differential Geometry +dg-ga/9704002 Differential Geometry +dg-ga/9705005 Differential Geometry +dg-ga/9706004 Differential Geometry +dg-ga/9707008 Differential Geometry +dg-ga/9707013 Differential Geometry +dg-ga/9707022 Differential Geometry +dg-ga/9707025 Differential Geometry +dg-ga/9709014 Differential Geometry +dg-ga/9710007 Differential Geometry +dg-ga/9711001 Differential Geometry +dg-ga/9712021 Differential Geometry +funct-an/9705004 Functional Analysis +funct-an/9707004 Functional Analysis +gr-qc/9701002 +gr-qc/9701007 +gr-qc/9701008 +gr-qc/9701012 +gr-qc/9701015 +gr-qc/9701017 +gr-qc/9701018 +gr-qc/9701019 +gr-qc/9701020 +gr-qc/9701024 +gr-qc/9701038 +gr-qc/9701041 +gr-qc/9701043 +gr-qc/9701047 +gr-qc/9701051 +gr-qc/9701052 +gr-qc/9701057 +gr-qc/9701059 +gr-qc/9701060 +gr-qc/9701061 +gr-qc/9701064 +gr-qc/9701066 +gr-qc/9701068 +gr-qc/9702002 +gr-qc/9702005 +gr-qc/9702007 +gr-qc/9702008 +gr-qc/9702011 +gr-qc/9702019 +gr-qc/9702020 +gr-qc/9702021 +gr-qc/9702026 +gr-qc/9702027 +gr-qc/9702031 +gr-qc/9702033 +gr-qc/9702039 +gr-qc/9702041 +gr-qc/9702043 +gr-qc/9702044 +gr-qc/9702048 +gr-qc/9702051 +gr-qc/9702055 +gr-qc/9702056 +gr-qc/9702059 +gr-qc/9702060 +gr-qc/9703001 +gr-qc/9703005 +gr-qc/9703008 +gr-qc/9703012 +gr-qc/9703013 +gr-qc/9703017 +gr-qc/9703018 +gr-qc/9703024 +gr-qc/9703028 +gr-qc/9703030 +gr-qc/9703031 +gr-qc/9703033 +gr-qc/9703034 +gr-qc/9703036 +gr-qc/9703040 +gr-qc/9703041 +gr-qc/9703042 +gr-qc/9703043 +gr-qc/9703046 +gr-qc/9703051 +gr-qc/9703052 +gr-qc/9703055 +gr-qc/9703057 +gr-qc/9703058 +gr-qc/9703061 +gr-qc/9703064 +gr-qc/9703065 +gr-qc/9703068 +gr-qc/9703069 +gr-qc/9703070 +gr-qc/9703072 +gr-qc/9703073 +gr-qc/9703076 +gr-qc/9703078 +gr-qc/9703080 +gr-qc/9703082 +gr-qc/9703084 +gr-qc/9703088 +gr-qc/9704001 +gr-qc/9704005 +gr-qc/9704011 +gr-qc/9704018 +gr-qc/9704024 +gr-qc/9704026 +gr-qc/9704027 +gr-qc/9704028 +gr-qc/9704030 +gr-qc/9704032 +gr-qc/9704037 +gr-qc/9704041 +gr-qc/9704045 +gr-qc/9704046 +gr-qc/9704047 +gr-qc/9704049 +gr-qc/9704060 +gr-qc/9704064 +gr-qc/9704067 +gr-qc/9704070 +gr-qc/9704071 +gr-qc/9704073 +gr-qc/9704079 +gr-qc/9704081 +gr-qc/9704083 +gr-qc/9704085 +gr-qc/9705002 +gr-qc/9705003 +gr-qc/9705004 +gr-qc/9705007 +gr-qc/9705009 +gr-qc/9705010 +gr-qc/9705012 +gr-qc/9705013 +gr-qc/9705017 +gr-qc/9705019 +gr-qc/9705020 +gr-qc/9705023 +gr-qc/9705027 +gr-qc/9705028 +gr-qc/9705032 +gr-qc/9705035 +gr-qc/9705038 +gr-qc/9705040 +gr-qc/9705041 +gr-qc/9705042 +gr-qc/9705045 +gr-qc/9705052 +gr-qc/9705054 +gr-qc/9705056 +gr-qc/9705057 +gr-qc/9705059 +gr-qc/9705061 +gr-qc/9705063 +gr-qc/9705064 +gr-qc/9705066 +gr-qc/9705067 +gr-qc/9705068 +gr-qc/9705071 +gr-qc/9705072 +gr-qc/9705074 +gr-qc/9705075 +gr-qc/9705077 +gr-qc/9705078 +gr-qc/9705079 +gr-qc/9705080 +gr-qc/9706001 +gr-qc/9706004 +gr-qc/9706005 +gr-qc/9706006 +gr-qc/9706008 +gr-qc/9706010 +gr-qc/9706012 +gr-qc/9706015 +gr-qc/9706016 +gr-qc/9706020 +gr-qc/9706021 +gr-qc/9706023 +gr-qc/9706024 +gr-qc/9706025 +gr-qc/9706026 +gr-qc/9706027 +gr-qc/9706029 +gr-qc/9706030 +gr-qc/9706031 +gr-qc/9706032 +gr-qc/9706034 +gr-qc/9706036 +gr-qc/9706038 +gr-qc/9706042 +gr-qc/9706043 +gr-qc/9706045 +gr-qc/9706046 +gr-qc/9706047 +gr-qc/9706053 +gr-qc/9706058 +gr-qc/9706065 +gr-qc/9706067 +gr-qc/9706073 +gr-qc/9706074 +gr-qc/9706076 +gr-qc/9706077 +gr-qc/9706078 +gr-qc/9706081 +gr-qc/9707004 +gr-qc/9707007 +gr-qc/9707009 +gr-qc/9707010 +gr-qc/9707014 +gr-qc/9707017 +gr-qc/9707018 +gr-qc/9707021 +gr-qc/9707022 +gr-qc/9707023 +gr-qc/9707027 +gr-qc/9707029 +gr-qc/9707030 +gr-qc/9707036 +gr-qc/9707037 +gr-qc/9707039 +gr-qc/9707041 +gr-qc/9707042 +gr-qc/9707043 +gr-qc/9707045 +gr-qc/9707046 +gr-qc/9707048 +gr-qc/9707050 +gr-qc/9707051 +gr-qc/9707052 +gr-qc/9707053 +gr-qc/9707054 +gr-qc/9707056 +gr-qc/9707057 +gr-qc/9707058 +gr-qc/9708001 +gr-qc/9708002 +gr-qc/9708003 +gr-qc/9708005 +gr-qc/9708006 +gr-qc/9708008 +gr-qc/9708009 +gr-qc/9708010 +gr-qc/9708017 +gr-qc/9708018 +gr-qc/9708022 +gr-qc/9708025 +gr-qc/9708027 +gr-qc/9708028 +gr-qc/9708029 +gr-qc/9708030 +gr-qc/9708034 +gr-qc/9708037 +gr-qc/9708038 +gr-qc/9708039 +gr-qc/9708040 +gr-qc/9708041 +gr-qc/9708043 +gr-qc/9708044 +gr-qc/9708046 +gr-qc/9708048 +gr-qc/9708049 +gr-qc/9708051 +gr-qc/9708053 +gr-qc/9708056 +gr-qc/9708057 +gr-qc/9708064 +gr-qc/9708068 +gr-qc/9708071 +gr-qc/9709001 +gr-qc/9709003 +gr-qc/9709004 +gr-qc/9709007 +gr-qc/9709013 +gr-qc/9709015 +gr-qc/9709019 +gr-qc/9709020 +gr-qc/9709021 +gr-qc/9709027 +gr-qc/9709028 +gr-qc/9709029 +gr-qc/9709047 +gr-qc/9709048 +gr-qc/9709052 +gr-qc/9709059 +gr-qc/9709064 +gr-qc/9709065 +gr-qc/9709066 +gr-qc/9709067 +gr-qc/9709068 +gr-qc/9709069 +gr-qc/9709070 +gr-qc/9709072 +gr-qc/9709084 +gr-qc/9710004 +gr-qc/9710005 +gr-qc/9710006 +gr-qc/9710007 +gr-qc/9710010 +gr-qc/9710018 +gr-qc/9710022 +gr-qc/9710023 +gr-qc/9710025 +gr-qc/9710026 +gr-qc/9710029 +gr-qc/9710031 +gr-qc/9710032 +gr-qc/9710037 +gr-qc/9710048 +gr-qc/9710049 +gr-qc/9710053 +gr-qc/9710056 +gr-qc/9710061 +gr-qc/9710063 +gr-qc/9710065 +gr-qc/9710069 +gr-qc/9710082 +gr-qc/9710084 +gr-qc/9710093 +gr-qc/9710094 +gr-qc/9710095 +gr-qc/9710096 +gr-qc/9710097 +gr-qc/9710104 +gr-qc/9710106 +gr-qc/9710107 +gr-qc/9710109 +gr-qc/9710110 +gr-qc/9710111 +gr-qc/9710112 +gr-qc/9710118 +gr-qc/9710122 +gr-qc/9710126 +gr-qc/9710132 +gr-qc/9710133 +gr-qc/9710134 +gr-qc/9710136 +gr-qc/9710138 +gr-qc/9710139 +gr-qc/9711001 +gr-qc/9711002 +gr-qc/9711003 +gr-qc/9711005 +gr-qc/9711006 +gr-qc/9711008 +gr-qc/9711010 +gr-qc/9711025 +gr-qc/9711034 +gr-qc/9711035 +gr-qc/9711036 +gr-qc/9711037 +gr-qc/9711042 +gr-qc/9711045 +gr-qc/9711047 +gr-qc/9711049 +gr-qc/9711050 +gr-qc/9711057 +gr-qc/9711058 +gr-qc/9711072 +gr-qc/9711076 +gr-qc/9711077 +gr-qc/9711081 +gr-qc/9711082 +gr-qc/9711088 +gr-qc/9712005 +gr-qc/9712006 +gr-qc/9712009 +gr-qc/9712010 +gr-qc/9712014 +gr-qc/9712016 +gr-qc/9712017 +gr-qc/9712018 +gr-qc/9712025 +gr-qc/9712026 +gr-qc/9712027 +gr-qc/9712029 +gr-qc/9712030 +gr-qc/9712033 +gr-qc/9712034 +gr-qc/9712035 +gr-qc/9712037 +gr-qc/9712040 +gr-qc/9712041 +gr-qc/9712045 +gr-qc/9712047 +gr-qc/9712048 +gr-qc/9712049 +gr-qc/9712053 +gr-qc/9712055 +gr-qc/9712058 +gr-qc/9712061 +gr-qc/9712062 +gr-qc/9712064 +gr-qc/9712065 +gr-qc/9712071 +gr-qc/9712077 +gr-qc/9712080 +gr-qc/9712081 +gr-qc/9712082 +gr-qc/9712085 +gr-qc/9712086 +gr-qc/9712091 +gr-qc/9712093 +gr-qc/9712095 +hep-ex/9701011 Experiment +hep-ex/9701016 Experiment +hep-ex/9701018 Experiment +hep-ex/9702010 Experiment +hep-ex/9703002 Experiment +hep-ex/9703003 Experiment +hep-ex/9703017 Experiment +hep-ex/9705016 Experiment +hep-ex/9705020 Experiment +hep-ex/9706017 Experiment +hep-ex/9706021 Experiment +hep-ex/9707004 Experiment +hep-ex/9707006 Experiment +hep-ex/9707007 Experiment +hep-ex/9707008 Experiment +hep-ex/9707013 Experiment +hep-ex/9707020 Experiment +hep-ex/9707030 Experiment +hep-ex/9707032 Experiment +hep-ex/9707035 Experiment +hep-ex/9707036 Experiment +hep-ex/9707038 Experiment +hep-ex/9707039 Experiment +hep-ex/9708001 Experiment +hep-ex/9708008 Experiment +hep-ex/9708036 Experiment +hep-ex/9708037 Experiment +hep-ex/9708039 Experiment +hep-ex/9709001 Experiment +hep-ex/9709009 Experiment +hep-ex/9709024 Experiment +hep-ex/9710005 Experiment +hep-ex/9710006 Experiment +hep-ex/9710016 Experiment +hep-ex/9710025 Experiment +hep-ex/9710030 Experiment +hep-ex/9711013 Experiment +hep-ex/9711023 Experiment +hep-ex/9712002 Experiment +hep-ex/9712003 Experiment +hep-ex/9712009 Experiment +hep-lat/9701003 Lattice +hep-lat/9701004 Lattice +hep-lat/9701005 Lattice +hep-lat/9701006 Lattice +hep-lat/9701008 Lattice +hep-lat/9701011 Lattice +hep-lat/9701012 Lattice +hep-lat/9701014 Lattice +hep-lat/9701015 Lattice +hep-lat/9701016 Lattice +hep-lat/9702004 Lattice +hep-lat/9702005 Lattice +hep-lat/9702008 Lattice +hep-lat/9702010 Lattice +hep-lat/9702012 Lattice +hep-lat/9702013 Lattice +hep-lat/9702014 Lattice +hep-lat/9702016 Lattice +hep-lat/9702019 Lattice +hep-lat/9703005 Lattice +hep-lat/9703007 Lattice +hep-lat/9703009 Lattice +hep-lat/9703011 Lattice +hep-lat/9703012 Lattice +hep-lat/9703015 Lattice +hep-lat/9703016 Lattice +hep-lat/9703017 Lattice +hep-lat/9703018 Lattice +hep-lat/9703020 Lattice +hep-lat/9704001 Lattice +hep-lat/9704005 Lattice +hep-lat/9704009 Lattice +hep-lat/9704012 Lattice +hep-lat/9704015 Lattice +hep-lat/9704016 Lattice +hep-lat/9704018 Lattice +hep-lat/9705001 Lattice +hep-lat/9705002 Lattice +hep-lat/9705003 Lattice +hep-lat/9705004 Lattice +hep-lat/9705005 Lattice +hep-lat/9705006 Lattice +hep-lat/9705007 Lattice +hep-lat/9705008 Lattice +hep-lat/9705010 Lattice +hep-lat/9705012 Lattice +hep-lat/9705013 Lattice +hep-lat/9705015 Lattice +hep-lat/9705016 Lattice +hep-lat/9705020 Lattice +hep-lat/9705022 Lattice +hep-lat/9705023 Lattice +hep-lat/9705025 Lattice +hep-lat/9705026 Lattice +hep-lat/9705028 Lattice +hep-lat/9705031 Lattice +hep-lat/9705032 Lattice +hep-lat/9705034 Lattice +hep-lat/9705036 Lattice +hep-lat/9705038 Lattice +hep-lat/9705039 Lattice +hep-lat/9705040 Lattice +hep-lat/9705042 Lattice +hep-lat/9705043 Lattice +hep-lat/9706002 Lattice +hep-lat/9706006 Lattice +hep-lat/9706007 Lattice +hep-lat/9706008 Lattice +hep-lat/9706009 Lattice +hep-lat/9706010 Lattice +hep-lat/9706011 Lattice +hep-lat/9706012 Lattice +hep-lat/9706014 Lattice +hep-lat/9706019 Lattice +hep-lat/9706020 Lattice +hep-lat/9706023 Lattice +hep-lat/9707002 Lattice +hep-lat/9707004 Lattice +hep-lat/9707005 Lattice +hep-lat/9707006 Lattice +hep-lat/9707011 Lattice +hep-lat/9707012 Lattice +hep-lat/9707013 Lattice +hep-lat/9707014 Lattice +hep-lat/9707016 Lattice +hep-lat/9707017 Lattice +hep-lat/9707020 Lattice +hep-lat/9707022 Lattice +hep-lat/9707026 Lattice +hep-lat/9707028 Lattice +hep-lat/9707029 Lattice +hep-lat/9707030 Lattice +hep-lat/9707032 Lattice +hep-lat/9708002 Lattice +hep-lat/9708003 Lattice +hep-lat/9708004 Lattice +hep-lat/9708005 Lattice +hep-lat/9708006 Lattice +hep-lat/9708007 Lattice +hep-lat/9708010 Lattice +hep-lat/9708011 Lattice +hep-lat/9708014 Lattice +hep-lat/9708015 Lattice +hep-lat/9708016 Lattice +hep-lat/9708018 Lattice +hep-lat/9708019 Lattice +hep-lat/9708020 Lattice +hep-lat/9708022 Lattice +hep-lat/9708026 Lattice +hep-lat/9708027 Lattice +hep-lat/9708028 Lattice +hep-lat/9708029 Lattice +hep-lat/9709002 Lattice +hep-lat/9709003 Lattice +hep-lat/9709004 Lattice +hep-lat/9709005 Lattice +hep-lat/9709006 Lattice +hep-lat/9709007 Lattice +hep-lat/9709008 Lattice +hep-lat/9709009 Lattice +hep-lat/9709010 Lattice +hep-lat/9709011 Lattice +hep-lat/9709012 Lattice +hep-lat/9709013 Lattice +hep-lat/9709014 Lattice +hep-lat/9709015 Lattice +hep-lat/9709018 Lattice +hep-lat/9709019 Lattice +hep-lat/9709020 Lattice +hep-lat/9709021 Lattice +hep-lat/9709022 Lattice +hep-lat/9709023 Lattice +hep-lat/9709024 Lattice +hep-lat/9709025 Lattice +hep-lat/9709026 Lattice +hep-lat/9709027 Lattice +hep-lat/9709030 Lattice +hep-lat/9709031 Lattice +hep-lat/9709033 Lattice +hep-lat/9709037 Lattice +hep-lat/9709038 Lattice +hep-lat/9709039 Lattice +hep-lat/9709040 Lattice +hep-lat/9709041 Lattice +hep-lat/9709042 Lattice +hep-lat/9709044 Lattice +hep-lat/9709046 Lattice +hep-lat/9709047 Lattice +hep-lat/9709050 Lattice +hep-lat/9709052 Lattice +hep-lat/9709053 Lattice +hep-lat/9709054 Lattice +hep-lat/9709055 Lattice +hep-lat/9709056 Lattice +hep-lat/9709057 Lattice +hep-lat/9709058 Lattice +hep-lat/9709059 Lattice +hep-lat/9709060 Lattice +hep-lat/9709061 Lattice +hep-lat/9709062 Lattice +hep-lat/9709063 Lattice +hep-lat/9709064 Lattice +hep-lat/9709065 Lattice +hep-lat/9709066 Lattice +hep-lat/9709068 Lattice +hep-lat/9709069 Lattice +hep-lat/9709070 Lattice +hep-lat/9709071 Lattice +hep-lat/9709072 Lattice +hep-lat/9709073 Lattice +hep-lat/9709075 Lattice +hep-lat/9709076 Lattice +hep-lat/9709078 Lattice +hep-lat/9709080 Lattice +hep-lat/9709081 Lattice +hep-lat/9709082 Lattice +hep-lat/9709083 Lattice +hep-lat/9709084 Lattice +hep-lat/9709085 Lattice +hep-lat/9709086 Lattice +hep-lat/9709087 Lattice +hep-lat/9709088 Lattice +hep-lat/9709089 Lattice +hep-lat/9709090 Lattice +hep-lat/9709093 Lattice +hep-lat/9709094 Lattice +hep-lat/9709095 Lattice +hep-lat/9709096 Lattice +hep-lat/9709097 Lattice +hep-lat/9709098 Lattice +hep-lat/9709099 Lattice +hep-lat/9709100 Lattice +hep-lat/9709101 Lattice +hep-lat/9709102 Lattice +hep-lat/9709103 Lattice +hep-lat/9709104 Lattice +hep-lat/9709105 Lattice +hep-lat/9709106 Lattice +hep-lat/9709108 Lattice +hep-lat/9709110 Lattice +hep-lat/9709111 Lattice +hep-lat/9709112 Lattice +hep-lat/9709113 Lattice +hep-lat/9709114 Lattice +hep-lat/9709115 Lattice +hep-lat/9709117 Lattice +hep-lat/9709118 Lattice +hep-lat/9709119 Lattice +hep-lat/9709120 Lattice +hep-lat/9709121 Lattice +hep-lat/9709122 Lattice +hep-lat/9709123 Lattice +hep-lat/9709124 Lattice +hep-lat/9709125 Lattice +hep-lat/9709127 Lattice +hep-lat/9709128 Lattice +hep-lat/9709129 Lattice +hep-lat/9709131 Lattice +hep-lat/9709132 Lattice +hep-lat/9709133 Lattice +hep-lat/9709135 Lattice +hep-lat/9709136 Lattice +hep-lat/9709138 Lattice +hep-lat/9709140 Lattice +hep-lat/9709141 Lattice +hep-lat/9709143 Lattice +hep-lat/9709144 Lattice +hep-lat/9709145 Lattice +hep-lat/9709146 Lattice +hep-lat/9709147 Lattice +hep-lat/9709148 Lattice +hep-lat/9709149 Lattice +hep-lat/9709150 Lattice +hep-lat/9709151 Lattice +hep-lat/9709152 Lattice +hep-lat/9709153 Lattice +hep-lat/9709154 Lattice +hep-lat/9709155 Lattice +hep-lat/9709156 Lattice +hep-lat/9709159 Lattice +hep-lat/9709161 Lattice +hep-lat/9710002 Lattice +hep-lat/9710003 Lattice +hep-lat/9710004 Lattice +hep-lat/9710005 Lattice +hep-lat/9710006 Lattice +hep-lat/9710008 Lattice +hep-lat/9710009 Lattice +hep-lat/9710010 Lattice +hep-lat/9710013 Lattice +hep-lat/9710014 Lattice +hep-lat/9710015 Lattice +hep-lat/9710016 Lattice +hep-lat/9710017 Lattice +hep-lat/9710018 Lattice +hep-lat/9710020 Lattice +hep-lat/9710022 Lattice +hep-lat/9710023 Lattice +hep-lat/9710024 Lattice +hep-lat/9710028 Lattice +hep-lat/9710029 Lattice +hep-lat/9710031 Lattice +hep-lat/9710032 Lattice +hep-lat/9710033 Lattice +hep-lat/9710036 Lattice +hep-lat/9710040 Lattice +hep-lat/9710041 Lattice +hep-lat/9710042 Lattice +hep-lat/9710043 Lattice +hep-lat/9710045 Lattice +hep-lat/9710046 Lattice +hep-lat/9710047 Lattice +hep-lat/9710049 Lattice +hep-lat/9710050 Lattice +hep-lat/9710051 Lattice +hep-lat/9710053 Lattice +hep-lat/9710054 Lattice +hep-lat/9710055 Lattice +hep-lat/9710056 Lattice +hep-lat/9710058 Lattice +hep-lat/9710061 Lattice +hep-lat/9710062 Lattice +hep-lat/9710065 Lattice +hep-lat/9710067 Lattice +hep-lat/9710069 Lattice +hep-lat/9710070 Lattice +hep-lat/9710071 Lattice +hep-lat/9710072 Lattice +hep-lat/9710074 Lattice +hep-lat/9710075 Lattice +hep-lat/9710076 Lattice +hep-lat/9710077 Lattice +hep-lat/9710078 Lattice +hep-lat/9710079 Lattice +hep-lat/9710081 Lattice +hep-lat/9710082 Lattice +hep-lat/9710085 Lattice +hep-lat/9710086 Lattice +hep-lat/9710087 Lattice +hep-lat/9710089 Lattice +hep-lat/9710090 Lattice +hep-lat/9710091 Lattice +hep-lat/9710092 Lattice +hep-lat/9710096 Lattice +hep-lat/9710097 Lattice +hep-lat/9711001 Lattice +hep-lat/9711003 Lattice +hep-lat/9711004 Lattice +hep-lat/9711005 Lattice +hep-lat/9711008 Lattice +hep-lat/9711012 Lattice +hep-lat/9711014 Lattice +hep-lat/9711015 Lattice +hep-lat/9711016 Lattice +hep-lat/9711017 Lattice +hep-lat/9711020 Lattice +hep-lat/9711021 Lattice +hep-lat/9711022 Lattice +hep-lat/9711023 Lattice +hep-lat/9711024 Lattice +hep-lat/9711028 Lattice +hep-lat/9711029 Lattice +hep-lat/9711031 Lattice +hep-lat/9711032 Lattice +hep-lat/9711036 Lattice +hep-lat/9711037 Lattice +hep-lat/9711038 Lattice +hep-lat/9711039 Lattice +hep-lat/9711042 Lattice +hep-lat/9711045 Lattice +hep-lat/9711046 Lattice +hep-lat/9711048 Lattice +hep-lat/9711051 Lattice +hep-lat/9711052 Lattice +hep-lat/9712001 Lattice +hep-lat/9712002 Lattice +hep-lat/9712006 Lattice +hep-lat/9712008 Lattice +hep-lat/9712009 Lattice +hep-lat/9712011 Lattice +hep-lat/9712012 Lattice +hep-lat/9712013 Lattice +hep-lat/9712014 Lattice +hep-lat/9712015 Lattice +hep-lat/9712017 Lattice +hep-lat/9712018 Lattice +hep-lat/9712019 Lattice +hep-lat/9712021 Lattice +hep-lat/9712022 Lattice +hep-lat/9712025 Lattice +hep-lat/9712026 Lattice +hep-ph/9610384 Phenomenology +hep-ph/9610386 Phenomenology +hep-ph/9610400 Phenomenology +hep-ph/9610403 Phenomenology +hep-ph/9610405 Phenomenology +hep-ph/9610407 Phenomenology +hep-ph/9610412 Phenomenology +hep-ph/9610413 Phenomenology +hep-ph/9610414 Phenomenology +hep-ph/9610415 Phenomenology +hep-ph/9610416 Phenomenology +hep-ph/9610418 Phenomenology +hep-ph/9610426 Phenomenology +hep-ph/9610428 Phenomenology +hep-ph/9610431 Phenomenology +hep-ph/9610433 Phenomenology +hep-ph/9610434 Phenomenology +hep-ph/9610440 Phenomenology +hep-ph/9610441 Phenomenology +hep-ph/9610442 Phenomenology +hep-ph/9610446 Phenomenology +hep-ph/9610449 Phenomenology +hep-ph/9610453 Phenomenology +hep-ph/9610456 Phenomenology +hep-ph/9610458 Phenomenology +hep-ph/9610464 Phenomenology +hep-ph/9610471 Phenomenology +hep-ph/9610477 Phenomenology +hep-ph/9610478 Phenomenology +hep-ph/9610480 Phenomenology +hep-ph/9610481 Phenomenology +hep-ph/9610486 Phenomenology +hep-ph/9610493 Phenomenology +hep-ph/9610494 Phenomenology +hep-ph/9610498 Phenomenology +hep-ph/9610499 Phenomenology +hep-ph/9610504 Phenomenology +hep-ph/9610506 Phenomenology +hep-ph/9610509 Phenomenology +hep-ph/9610512 Phenomenology +hep-ph/9610518 Phenomenology +hep-ph/9610525 Phenomenology +hep-ph/9610527 Phenomenology +hep-ph/9610528 Phenomenology +hep-ph/9610532 Phenomenology +hep-ph/9610535 Phenomenology +hep-ph/9610538 Phenomenology +hep-ph/9610547 Phenomenology +hep-ph/9610549 Phenomenology +hep-ph/9610551 Phenomenology +hep-ph/9610552 Phenomenology +hep-ph/9611206 Phenomenology +hep-ph/9611207 Phenomenology +hep-ph/9611210 Phenomenology +hep-ph/9611219 Phenomenology +hep-ph/9611220 Phenomenology +hep-ph/9611222 Phenomenology +hep-ph/9611223 Phenomenology +hep-ph/9611225 Phenomenology +hep-ph/9611227 Phenomenology +hep-ph/9611243 Phenomenology +hep-ph/9611245 Phenomenology +hep-ph/9611248 Phenomenology +hep-ph/9611260 Phenomenology +hep-ph/9611264 Phenomenology +hep-ph/9611267 Phenomenology +hep-ph/9611270 Phenomenology +hep-ph/9611271 Phenomenology +hep-ph/9611286 Phenomenology +hep-ph/9611289 Phenomenology +hep-ph/9611294 Phenomenology +hep-ph/9611300 Phenomenology +hep-ph/9611302 Phenomenology +hep-ph/9611303 Phenomenology +hep-ph/9611305 Phenomenology +hep-ph/9611312 Phenomenology +hep-ph/9611316 Phenomenology +hep-ph/9611326 Phenomenology +hep-ph/9611329 Phenomenology +hep-ph/9611340 Phenomenology +hep-ph/9611341 Phenomenology +hep-ph/9611343 Phenomenology +hep-ph/9611345 Phenomenology +hep-ph/9611351 Phenomenology +hep-ph/9611355 Phenomenology +hep-ph/9611356 Phenomenology +hep-ph/9611357 Phenomenology +hep-ph/9611359 Phenomenology +hep-ph/9611369 Phenomenology +hep-ph/9611375 Phenomenology +hep-ph/9611377 Phenomenology +hep-ph/9611382 Phenomenology +hep-ph/9611384 Phenomenology +hep-ph/9611388 Phenomenology +hep-ph/9611393 Phenomenology +hep-ph/9611398 Phenomenology +hep-ph/9611401 Phenomenology +hep-ph/9611405 Phenomenology +hep-ph/9611414 Phenomenology +hep-ph/9611415 Phenomenology +hep-ph/9611423 Phenomenology +hep-ph/9611424 Phenomenology +hep-ph/9611425 Phenomenology +hep-ph/9611427 Phenomenology +hep-ph/9611431 Phenomenology +hep-ph/9611433 Phenomenology +hep-ph/9611434 Phenomenology +hep-ph/9611440 Phenomenology +hep-ph/9611441 Phenomenology +hep-ph/9611442 Phenomenology +hep-ph/9611444 Phenomenology +hep-ph/9611453 Phenomenology +hep-ph/9611455 Phenomenology +hep-ph/9611456 Phenomenology +hep-ph/9611461 Phenomenology +hep-ph/9611463 Phenomenology +hep-ph/9612201 Phenomenology +hep-ph/9612204 Phenomenology +hep-ph/9612205 Phenomenology +hep-ph/9612208 Phenomenology +hep-ph/9612213 Phenomenology +hep-ph/9612215 Phenomenology +hep-ph/9612222 Phenomenology +hep-ph/9612223 Phenomenology +hep-ph/9612224 Phenomenology +hep-ph/9612225 Phenomenology +hep-ph/9612227 Phenomenology +hep-ph/9612228 Phenomenology +hep-ph/9612232 Phenomenology +hep-ph/9612233 Phenomenology +hep-ph/9612234 Phenomenology +hep-ph/9612235 Phenomenology +hep-ph/9612237 Phenomenology +hep-ph/9612239 Phenomenology +hep-ph/9612241 Phenomenology +hep-ph/9612251 Phenomenology +hep-ph/9612253 Phenomenology +hep-ph/9612255 Phenomenology +hep-ph/9612256 Phenomenology +hep-ph/9612260 Phenomenology +hep-ph/9612263 Phenomenology +hep-ph/9612272 Phenomenology +hep-ph/9612291 Phenomenology +hep-ph/9612292 Phenomenology +hep-ph/9612294 Phenomenology +hep-ph/9612301 Phenomenology +hep-ph/9612309 Phenomenology +hep-ph/9612314 Phenomenology +hep-ph/9612319 Phenomenology +hep-ph/9612321 Phenomenology +hep-ph/9612324 Phenomenology +hep-ph/9612326 Phenomenology +hep-ph/9612328 Phenomenology +hep-ph/9612332 Phenomenology +hep-ph/9612335 Phenomenology +hep-ph/9612339 Phenomenology +hep-ph/9612343 Phenomenology +hep-ph/9612345 Phenomenology +hep-ph/9612346 Phenomenology +hep-ph/9612350 Phenomenology +hep-ph/9612353 Phenomenology +hep-ph/9612357 Phenomenology +hep-ph/9612364 Phenomenology +hep-ph/9612366 Phenomenology +hep-ph/9612375 Phenomenology +hep-ph/9612380 Phenomenology +hep-ph/9612383 Phenomenology +hep-ph/9612387 Phenomenology +hep-ph/9612391 Phenomenology +hep-ph/9612400 Phenomenology +hep-ph/9612401 Phenomenology +hep-ph/9612404 Phenomenology +hep-ph/9612409 Phenomenology +hep-ph/9612410 Phenomenology +hep-ph/9612415 Phenomenology +hep-ph/9612417 Phenomenology +hep-ph/9612425 Phenomenology +hep-ph/9612427 Phenomenology +hep-ph/9612429 Phenomenology +hep-ph/9612430 Phenomenology +hep-ph/9612431 Phenomenology +hep-ph/9612434 Phenomenology +hep-ph/9612435 Phenomenology +hep-ph/9612439 Phenomenology +hep-ph/9612447 Phenomenology +hep-ph/9612451 Phenomenology +hep-ph/9612452 Phenomenology +hep-ph/9612453 Phenomenology +hep-ph/9612458 Phenomenology +hep-ph/9612459 Phenomenology +hep-ph/9612462 Phenomenology +hep-ph/9612463 Phenomenology +hep-ph/9612467 Phenomenology +hep-ph/9612468 Phenomenology +hep-ph/9612470 Phenomenology +hep-ph/9612475 Phenomenology +hep-ph/9612480 Phenomenology +hep-ph/9612487 Phenomenology +hep-ph/9612490 Phenomenology +hep-ph/9612494 Phenomenology +hep-ph/9701201 Phenomenology +hep-ph/9701205 Phenomenology +hep-ph/9701208 Phenomenology +hep-ph/9701209 Phenomenology +hep-ph/9701210 Phenomenology +hep-ph/9701212 Phenomenology +hep-ph/9701214 Phenomenology +hep-ph/9701221 Phenomenology +hep-ph/9701226 Phenomenology +hep-ph/9701230 Phenomenology +hep-ph/9701232 Phenomenology +hep-ph/9701233 Phenomenology +hep-ph/9701234 Phenomenology +hep-ph/9701236 Phenomenology +hep-ph/9701240 Phenomenology +hep-ph/9701242 Phenomenology +hep-ph/9701249 Phenomenology +hep-ph/9701250 Phenomenology +hep-ph/9701251 Phenomenology +hep-ph/9701253 Phenomenology +hep-ph/9701255 Phenomenology +hep-ph/9701257 Phenomenology +hep-ph/9701266 Phenomenology +hep-ph/9701267 Phenomenology +hep-ph/9701270 Phenomenology +hep-ph/9701277 Phenomenology +hep-ph/9701279 Phenomenology +hep-ph/9701284 Phenomenology +hep-ph/9701288 Phenomenology +hep-ph/9701289 Phenomenology +hep-ph/9701290 Phenomenology +hep-ph/9701297 Phenomenology +hep-ph/9701302 Phenomenology +hep-ph/9701303 Phenomenology +hep-ph/9701306 Phenomenology +hep-ph/9701308 Phenomenology +hep-ph/9701309 Phenomenology +hep-ph/9701313 Phenomenology +hep-ph/9701314 Phenomenology +hep-ph/9701320 Phenomenology +hep-ph/9701321 Phenomenology +hep-ph/9701323 Phenomenology +hep-ph/9701328 Phenomenology +hep-ph/9701330 Phenomenology +hep-ph/9701335 Phenomenology +hep-ph/9701338 Phenomenology +hep-ph/9701340 Phenomenology +hep-ph/9701345 Phenomenology +hep-ph/9701348 Phenomenology +hep-ph/9701351 Phenomenology +hep-ph/9701356 Phenomenology +hep-ph/9701358 Phenomenology +hep-ph/9701359 Phenomenology +hep-ph/9701361 Phenomenology +hep-ph/9701363 Phenomenology +hep-ph/9701364 Phenomenology +hep-ph/9701366 Phenomenology +hep-ph/9701368 Phenomenology +hep-ph/9701370 Phenomenology +hep-ph/9701372 Phenomenology +hep-ph/9701375 Phenomenology +hep-ph/9701379 Phenomenology +hep-ph/9701381 Phenomenology +hep-ph/9701382 Phenomenology +hep-ph/9701385 Phenomenology +hep-ph/9701391 Phenomenology +hep-ph/9701394 Phenomenology +hep-ph/9701400 Phenomenology +hep-ph/9701404 Phenomenology +hep-ph/9701408 Phenomenology +hep-ph/9701410 Phenomenology +hep-ph/9701413 Phenomenology +hep-ph/9701416 Phenomenology +hep-ph/9701422 Phenomenology +hep-ph/9701424 Phenomenology +hep-ph/9702204 Phenomenology +hep-ph/9702209 Phenomenology +hep-ph/9702210 Phenomenology +hep-ph/9702211 Phenomenology +hep-ph/9702212 Phenomenology +hep-ph/9702213 Phenomenology +hep-ph/9702214 Phenomenology +hep-ph/9702216 Phenomenology +hep-ph/9702217 Phenomenology +hep-ph/9702219 Phenomenology +hep-ph/9702226 Phenomenology +hep-ph/9702233 Phenomenology +hep-ph/9702235 Phenomenology +hep-ph/9702237 Phenomenology +hep-ph/9702239 Phenomenology +hep-ph/9702242 Phenomenology +hep-ph/9702243 Phenomenology +hep-ph/9702244 Phenomenology +hep-ph/9702245 Phenomenology +hep-ph/9702248 Phenomenology +hep-ph/9702251 Phenomenology +hep-ph/9702257 Phenomenology +hep-ph/9702259 Phenomenology +hep-ph/9702262 Phenomenology +hep-ph/9702265 Phenomenology +hep-ph/9702266 Phenomenology +hep-ph/9702267 Phenomenology +hep-ph/9702271 Phenomenology +hep-ph/9702273 Phenomenology +hep-ph/9702275 Phenomenology +hep-ph/9702278 Phenomenology +hep-ph/9702282 Phenomenology +hep-ph/9702284 Phenomenology +hep-ph/9702285 Phenomenology +hep-ph/9702286 Phenomenology +hep-ph/9702291 Phenomenology +hep-ph/9702293 Phenomenology +hep-ph/9702295 Phenomenology +hep-ph/9702296 Phenomenology +hep-ph/9702299 Phenomenology +hep-ph/9702300 Phenomenology +hep-ph/9702302 Phenomenology +hep-ph/9702303 Phenomenology +hep-ph/9702304 Phenomenology +hep-ph/9702311 Phenomenology +hep-ph/9702313 Phenomenology +hep-ph/9702319 Phenomenology +hep-ph/9702324 Phenomenology +hep-ph/9702325 Phenomenology +hep-ph/9702326 Phenomenology +hep-ph/9702330 Phenomenology +hep-ph/9702333 Phenomenology +hep-ph/9702336 Phenomenology +hep-ph/9702337 Phenomenology +hep-ph/9702338 Phenomenology +hep-ph/9702342 Phenomenology +hep-ph/9702350 Phenomenology +hep-ph/9702354 Phenomenology +hep-ph/9702356 Phenomenology +hep-ph/9702357 Phenomenology +hep-ph/9702358 Phenomenology +hep-ph/9702359 Phenomenology +hep-ph/9702360 Phenomenology +hep-ph/9702361 Phenomenology +hep-ph/9702364 Phenomenology +hep-ph/9702368 Phenomenology +hep-ph/9702369 Phenomenology +hep-ph/9702376 Phenomenology +hep-ph/9702379 Phenomenology +hep-ph/9702383 Phenomenology +hep-ph/9702384 Phenomenology +hep-ph/9702388 Phenomenology +hep-ph/9702392 Phenomenology +hep-ph/9702394 Phenomenology +hep-ph/9702395 Phenomenology +hep-ph/9702396 Phenomenology +hep-ph/9702397 Phenomenology +hep-ph/9702398 Phenomenology +hep-ph/9702402 Phenomenology +hep-ph/9702403 Phenomenology +hep-ph/9702404 Phenomenology +hep-ph/9702407 Phenomenology +hep-ph/9702410 Phenomenology +hep-ph/9702411 Phenomenology +hep-ph/9702413 Phenomenology +hep-ph/9702415 Phenomenology +hep-ph/9702418 Phenomenology +hep-ph/9702420 Phenomenology +hep-ph/9702421 Phenomenology +hep-ph/9702422 Phenomenology +hep-ph/9702424 Phenomenology +hep-ph/9702425 Phenomenology +hep-ph/9702435 Phenomenology +hep-ph/9702440 Phenomenology +hep-ph/9702441 Phenomenology +hep-ph/9703210 Phenomenology +hep-ph/9703218 Phenomenology +hep-ph/9703219 Phenomenology +hep-ph/9703221 Phenomenology +hep-ph/9703226 Phenomenology +hep-ph/9703228 Phenomenology +hep-ph/9703236 Phenomenology +hep-ph/9703237 Phenomenology +hep-ph/9703241 Phenomenology +hep-ph/9703244 Phenomenology +hep-ph/9703247 Phenomenology +hep-ph/9703250 Phenomenology +hep-ph/9703255 Phenomenology +hep-ph/9703256 Phenomenology +hep-ph/9703261 Phenomenology +hep-ph/9703263 Phenomenology +hep-ph/9703265 Phenomenology +hep-ph/9703268 Phenomenology +hep-ph/9703269 Phenomenology +hep-ph/9703273 Phenomenology +hep-ph/9703278 Phenomenology +hep-ph/9703279 Phenomenology +hep-ph/9703280 Phenomenology +hep-ph/9703284 Phenomenology +hep-ph/9703285 Phenomenology +hep-ph/9703286 Phenomenology +hep-ph/9703288 Phenomenology +hep-ph/9703293 Phenomenology +hep-ph/9703296 Phenomenology +hep-ph/9703297 Phenomenology +hep-ph/9703298 Phenomenology +hep-ph/9703299 Phenomenology +hep-ph/9703300 Phenomenology +hep-ph/9703304 Phenomenology +hep-ph/9703305 Phenomenology +hep-ph/9703309 Phenomenology +hep-ph/9703312 Phenomenology +hep-ph/9703313 Phenomenology +hep-ph/9703315 Phenomenology +hep-ph/9703318 Phenomenology +hep-ph/9703319 Phenomenology +hep-ph/9703320 Phenomenology +hep-ph/9703321 Phenomenology +hep-ph/9703325 Phenomenology +hep-ph/9703332 Phenomenology +hep-ph/9703333 Phenomenology +hep-ph/9703335 Phenomenology +hep-ph/9703336 Phenomenology +hep-ph/9703337 Phenomenology +hep-ph/9703338 Phenomenology +hep-ph/9703342 Phenomenology +hep-ph/9703345 Phenomenology +hep-ph/9703350 Phenomenology +hep-ph/9703354 Phenomenology +hep-ph/9703356 Phenomenology +hep-ph/9703357 Phenomenology +hep-ph/9703361 Phenomenology +hep-ph/9703367 Phenomenology +hep-ph/9703371 Phenomenology +hep-ph/9703373 Phenomenology +hep-ph/9703374 Phenomenology +hep-ph/9703375 Phenomenology +hep-ph/9703376 Phenomenology +hep-ph/9703379 Phenomenology +hep-ph/9703380 Phenomenology +hep-ph/9703383 Phenomenology +hep-ph/9703389 Phenomenology +hep-ph/9703390 Phenomenology +hep-ph/9703392 Phenomenology +hep-ph/9703393 Phenomenology +hep-ph/9703400 Phenomenology +hep-ph/9703402 Phenomenology +hep-ph/9703403 Phenomenology +hep-ph/9703405 Phenomenology +hep-ph/9703406 Phenomenology +hep-ph/9703414 Phenomenology +hep-ph/9703415 Phenomenology +hep-ph/9703416 Phenomenology +hep-ph/9703417 Phenomenology +hep-ph/9703419 Phenomenology +hep-ph/9703420 Phenomenology +hep-ph/9703421 Phenomenology +hep-ph/9703423 Phenomenology +hep-ph/9703424 Phenomenology +hep-ph/9703430 Phenomenology +hep-ph/9703438 Phenomenology +hep-ph/9703439 Phenomenology +hep-ph/9703447 Phenomenology +hep-ph/9703452 Phenomenology +hep-ph/9703453 Phenomenology +hep-ph/9703456 Phenomenology +hep-ph/9703460 Phenomenology +hep-ph/9703461 Phenomenology +hep-ph/9703465 Phenomenology +hep-ph/9704202 Phenomenology +hep-ph/9704204 Phenomenology +hep-ph/9704206 Phenomenology +hep-ph/9704209 Phenomenology +hep-ph/9704211 Phenomenology +hep-ph/9704212 Phenomenology +hep-ph/9704218 Phenomenology +hep-ph/9704220 Phenomenology +hep-ph/9704221 Phenomenology +hep-ph/9704222 Phenomenology +hep-ph/9704223 Phenomenology +hep-ph/9704224 Phenomenology +hep-ph/9704226 Phenomenology +hep-ph/9704228 Phenomenology +hep-ph/9704229 Phenomenology +hep-ph/9704235 Phenomenology +hep-ph/9704242 Phenomenology +hep-ph/9704250 Phenomenology +hep-ph/9704252 Phenomenology +hep-ph/9704258 Phenomenology +hep-ph/9704262 Phenomenology +hep-ph/9704265 Phenomenology +hep-ph/9704268 Phenomenology +hep-ph/9704273 Phenomenology +hep-ph/9704280 Phenomenology +hep-ph/9704283 Phenomenology +hep-ph/9704290 Phenomenology +hep-ph/9704294 Phenomenology +hep-ph/9704298 Phenomenology +hep-ph/9704299 Phenomenology +hep-ph/9704300 Phenomenology +hep-ph/9704303 Phenomenology +hep-ph/9704304 Phenomenology +hep-ph/9704307 Phenomenology +hep-ph/9704308 Phenomenology +hep-ph/9704313 Phenomenology +hep-ph/9704317 Phenomenology +hep-ph/9704318 Phenomenology +hep-ph/9704320 Phenomenology +hep-ph/9704323 Phenomenology +hep-ph/9704328 Phenomenology +hep-ph/9704329 Phenomenology +hep-ph/9704330 Phenomenology +hep-ph/9704332 Phenomenology +hep-ph/9704333 Phenomenology +hep-ph/9704335 Phenomenology +hep-ph/9704336 Phenomenology +hep-ph/9704337 Phenomenology +hep-ph/9704340 Phenomenology +hep-ph/9704344 Phenomenology +hep-ph/9704346 Phenomenology +hep-ph/9704349 Phenomenology +hep-ph/9704351 Phenomenology +hep-ph/9704352 Phenomenology +hep-ph/9704359 Phenomenology +hep-ph/9704363 Phenomenology +hep-ph/9704366 Phenomenology +hep-ph/9704367 Phenomenology +hep-ph/9704368 Phenomenology +hep-ph/9704369 Phenomenology +hep-ph/9704372 Phenomenology +hep-ph/9704377 Phenomenology +hep-ph/9704382 Phenomenology +hep-ph/9704383 Phenomenology +hep-ph/9704385 Phenomenology +hep-ph/9704386 Phenomenology +hep-ph/9704389 Phenomenology +hep-ph/9704391 Phenomenology +hep-ph/9704393 Phenomenology +hep-ph/9704396 Phenomenology +hep-ph/9704399 Phenomenology +hep-ph/9704400 Phenomenology +hep-ph/9704407 Phenomenology +hep-ph/9704410 Phenomenology +hep-ph/9704413 Phenomenology +hep-ph/9704416 Phenomenology +hep-ph/9704419 Phenomenology +hep-ph/9704422 Phenomenology +hep-ph/9704428 Phenomenology +hep-ph/9704430 Phenomenology +hep-ph/9704431 Phenomenology +hep-ph/9704441 Phenomenology +hep-ph/9704443 Phenomenology +hep-ph/9704450 Phenomenology +hep-ph/9704456 Phenomenology +hep-ph/9705201 Phenomenology +hep-ph/9705202 Phenomenology +hep-ph/9705203 Phenomenology +hep-ph/9705204 Phenomenology +hep-ph/9705205 Phenomenology +hep-ph/9705206 Phenomenology +hep-ph/9705207 Phenomenology +hep-ph/9705208 Phenomenology +hep-ph/9705212 Phenomenology +hep-ph/9705215 Phenomenology +hep-ph/9705216 Phenomenology +hep-ph/9705220 Phenomenology +hep-ph/9705224 Phenomenology +hep-ph/9705229 Phenomenology +hep-ph/9705231 Phenomenology +hep-ph/9705233 Phenomenology +hep-ph/9705236 Phenomenology +hep-ph/9705240 Phenomenology +hep-ph/9705241 Phenomenology +hep-ph/9705243 Phenomenology +hep-ph/9705244 Phenomenology +hep-ph/9705245 Phenomenology +hep-ph/9705247 Phenomenology +hep-ph/9705248 Phenomenology +hep-ph/9705250 Phenomenology +hep-ph/9705251 Phenomenology +hep-ph/9705252 Phenomenology +hep-ph/9705258 Phenomenology +hep-ph/9705261 Phenomenology +hep-ph/9705263 Phenomenology +hep-ph/9705269 Phenomenology +hep-ph/9705270 Phenomenology +hep-ph/9705272 Phenomenology +hep-ph/9705273 Phenomenology +hep-ph/9705274 Phenomenology +hep-ph/9705275 Phenomenology +hep-ph/9705278 Phenomenology +hep-ph/9705279 Phenomenology +hep-ph/9705280 Phenomenology +hep-ph/9705284 Phenomenology +hep-ph/9705289 Phenomenology +hep-ph/9705296 Phenomenology +hep-ph/9705297 Phenomenology +hep-ph/9705299 Phenomenology +hep-ph/9705303 Phenomenology +hep-ph/9705304 Phenomenology +hep-ph/9705307 Phenomenology +hep-ph/9705310 Phenomenology +hep-ph/9705311 Phenomenology +hep-ph/9705313 Phenomenology +hep-ph/9705314 Phenomenology +hep-ph/9705315 Phenomenology +hep-ph/9705318 Phenomenology +hep-ph/9705324 Phenomenology +hep-ph/9705328 Phenomenology +hep-ph/9705334 Phenomenology +hep-ph/9705335 Phenomenology +hep-ph/9705336 Phenomenology +hep-ph/9705338 Phenomenology +hep-ph/9705339 Phenomenology +hep-ph/9705340 Phenomenology +hep-ph/9705345 Phenomenology +hep-ph/9705346 Phenomenology +hep-ph/9705348 Phenomenology +hep-ph/9705349 Phenomenology +hep-ph/9705359 Phenomenology +hep-ph/9705361 Phenomenology +hep-ph/9705363 Phenomenology +hep-ph/9705371 Phenomenology +hep-ph/9705372 Phenomenology +hep-ph/9705374 Phenomenology +hep-ph/9705375 Phenomenology +hep-ph/9705377 Phenomenology +hep-ph/9705378 Phenomenology +hep-ph/9705380 Phenomenology +hep-ph/9705386 Phenomenology +hep-ph/9705390 Phenomenology +hep-ph/9705394 Phenomenology +hep-ph/9705398 Phenomenology +hep-ph/9705399 Phenomenology +hep-ph/9705400 Phenomenology +hep-ph/9705402 Phenomenology +hep-ph/9705405 Phenomenology +hep-ph/9705409 Phenomenology +hep-ph/9705410 Phenomenology +hep-ph/9705412 Phenomenology +hep-ph/9705414 Phenomenology +hep-ph/9705417 Phenomenology +hep-ph/9705420 Phenomenology +hep-ph/9705422 Phenomenology +hep-ph/9705423 Phenomenology +hep-ph/9705425 Phenomenology +hep-ph/9705427 Phenomenology +hep-ph/9705429 Phenomenology +hep-ph/9705430 Phenomenology +hep-ph/9705438 Phenomenology +hep-ph/9705439 Phenomenology +hep-ph/9705443 Phenomenology +hep-ph/9705445 Phenomenology +hep-ph/9705448 Phenomenology +hep-ph/9705450 Phenomenology +hep-ph/9705452 Phenomenology +hep-ph/9705457 Phenomenology +hep-ph/9705459 Phenomenology +hep-ph/9705462 Phenomenology +hep-ph/9705464 Phenomenology +hep-ph/9705466 Phenomenology +hep-ph/9705469 Phenomenology +hep-ph/9705475 Phenomenology +hep-ph/9705476 Phenomenology +hep-ph/9705478 Phenomenology +hep-ph/9706201 Phenomenology +hep-ph/9706203 Phenomenology +hep-ph/9706206 Phenomenology +hep-ph/9706208 Phenomenology +hep-ph/9706209 Phenomenology +hep-ph/9706212 Phenomenology +hep-ph/9706215 Phenomenology +hep-ph/9706220 Phenomenology +hep-ph/9706222 Phenomenology +hep-ph/9706225 Phenomenology +hep-ph/9706229 Phenomenology +hep-ph/9706232 Phenomenology +hep-ph/9706233 Phenomenology +hep-ph/9706237 Phenomenology +hep-ph/9706238 Phenomenology +hep-ph/9706240 Phenomenology +hep-ph/9706248 Phenomenology +hep-ph/9706249 Phenomenology +hep-ph/9706258 Phenomenology +hep-ph/9706259 Phenomenology +hep-ph/9706260 Phenomenology +hep-ph/9706263 Phenomenology +hep-ph/9706267 Phenomenology +hep-ph/9706268 Phenomenology +hep-ph/9706269 Phenomenology +hep-ph/9706270 Phenomenology +hep-ph/9706272 Phenomenology +hep-ph/9706275 Phenomenology +hep-ph/9706278 Phenomenology +hep-ph/9706279 Phenomenology +hep-ph/9706282 Phenomenology +hep-ph/9706283 Phenomenology +hep-ph/9706284 Phenomenology +hep-ph/9706286 Phenomenology +hep-ph/9706287 Phenomenology +hep-ph/9706288 Phenomenology +hep-ph/9706290 Phenomenology +hep-ph/9706291 Phenomenology +hep-ph/9706296 Phenomenology +hep-ph/9706302 Phenomenology +hep-ph/9706303 Phenomenology +hep-ph/9706306 Phenomenology +hep-ph/9706310 Phenomenology +hep-ph/9706313 Phenomenology +hep-ph/9706316 Phenomenology +hep-ph/9706319 Phenomenology +hep-ph/9706321 Phenomenology +hep-ph/9706322 Phenomenology +hep-ph/9706323 Phenomenology +hep-ph/9706324 Phenomenology +hep-ph/9706326 Phenomenology +hep-ph/9706332 Phenomenology +hep-ph/9706333 Phenomenology +hep-ph/9706334 Phenomenology +hep-ph/9706337 Phenomenology +hep-ph/9706339 Phenomenology +hep-ph/9706341 Phenomenology +hep-ph/9706343 Phenomenology +hep-ph/9706350 Phenomenology +hep-ph/9706351 Phenomenology +hep-ph/9706352 Phenomenology +hep-ph/9706356 Phenomenology +hep-ph/9706357 Phenomenology +hep-ph/9706361 Phenomenology +hep-ph/9706362 Phenomenology +hep-ph/9706363 Phenomenology +hep-ph/9706365 Phenomenology +hep-ph/9706367 Phenomenology +hep-ph/9706369 Phenomenology +hep-ph/9706370 Phenomenology +hep-ph/9706371 Phenomenology +hep-ph/9706375 Phenomenology +hep-ph/9706376 Phenomenology +hep-ph/9706377 Phenomenology +hep-ph/9706378 Phenomenology +hep-ph/9706379 Phenomenology +hep-ph/9706382 Phenomenology +hep-ph/9706383 Phenomenology +hep-ph/9706387 Phenomenology +hep-ph/9706390 Phenomenology +hep-ph/9706391 Phenomenology +hep-ph/9706392 Phenomenology +hep-ph/9706393 Phenomenology +hep-ph/9706396 Phenomenology +hep-ph/9706398 Phenomenology +hep-ph/9706399 Phenomenology +hep-ph/9706400 Phenomenology +hep-ph/9706401 Phenomenology +hep-ph/9706404 Phenomenology +hep-ph/9706405 Phenomenology +hep-ph/9706407 Phenomenology +hep-ph/9706408 Phenomenology +hep-ph/9706409 Phenomenology +hep-ph/9706411 Phenomenology +hep-ph/9706413 Phenomenology +hep-ph/9706414 Phenomenology +hep-ph/9706417 Phenomenology +hep-ph/9706418 Phenomenology +hep-ph/9706419 Phenomenology +hep-ph/9706426 Phenomenology +hep-ph/9706428 Phenomenology +hep-ph/9706429 Phenomenology +hep-ph/9706430 Phenomenology +hep-ph/9706432 Phenomenology +hep-ph/9706434 Phenomenology +hep-ph/9706435 Phenomenology +hep-ph/9706437 Phenomenology +hep-ph/9706439 Phenomenology +hep-ph/9706444 Phenomenology +hep-ph/9706446 Phenomenology +hep-ph/9706447 Phenomenology +hep-ph/9706449 Phenomenology +hep-ph/9706455 Phenomenology +hep-ph/9706456 Phenomenology +hep-ph/9706457 Phenomenology +hep-ph/9706458 Phenomenology +hep-ph/9706459 Phenomenology +hep-ph/9706461 Phenomenology +hep-ph/9706468 Phenomenology +hep-ph/9706469 Phenomenology +hep-ph/9706471 Phenomenology +hep-ph/9706480 Phenomenology +hep-ph/9706483 Phenomenology +hep-ph/9706486 Phenomenology +hep-ph/9706488 Phenomenology +hep-ph/9706490 Phenomenology +hep-ph/9706491 Phenomenology +hep-ph/9706492 Phenomenology +hep-ph/9706493 Phenomenology +hep-ph/9706494 Phenomenology +hep-ph/9706496 Phenomenology +hep-ph/9706498 Phenomenology +hep-ph/9706502 Phenomenology +hep-ph/9706504 Phenomenology +hep-ph/9706505 Phenomenology +hep-ph/9706507 Phenomenology +hep-ph/9706515 Phenomenology +hep-ph/9706519 Phenomenology +hep-ph/9706527 Phenomenology +hep-ph/9706530 Phenomenology +hep-ph/9706533 Phenomenology +hep-ph/9706535 Phenomenology +hep-ph/9706536 Phenomenology +hep-ph/9706539 Phenomenology +hep-ph/9706545 Phenomenology +hep-ph/9706547 Phenomenology +hep-ph/9706550 Phenomenology +hep-ph/9706552 Phenomenology +hep-ph/9706554 Phenomenology +hep-ph/9707201 Phenomenology +hep-ph/9707202 Phenomenology +hep-ph/9707204 Phenomenology +hep-ph/9707207 Phenomenology +hep-ph/9707210 Phenomenology +hep-ph/9707211 Phenomenology +hep-ph/9707212 Phenomenology +hep-ph/9707214 Phenomenology +hep-ph/9707216 Phenomenology +hep-ph/9707218 Phenomenology +hep-ph/9707221 Phenomenology +hep-ph/9707226 Phenomenology +hep-ph/9707227 Phenomenology +hep-ph/9707228 Phenomenology +hep-ph/9707230 Phenomenology +hep-ph/9707239 Phenomenology +hep-ph/9707242 Phenomenology +hep-ph/9707244 Phenomenology +hep-ph/9707245 Phenomenology +hep-ph/9707246 Phenomenology +hep-ph/9707249 Phenomenology +hep-ph/9707252 Phenomenology +hep-ph/9707255 Phenomenology +hep-ph/9707262 Phenomenology +hep-ph/9707263 Phenomenology +hep-ph/9707265 Phenomenology +hep-ph/9707266 Phenomenology +hep-ph/9707272 Phenomenology +hep-ph/9707273 Phenomenology +hep-ph/9707274 Phenomenology +hep-ph/9707275 Phenomenology +hep-ph/9707281 Phenomenology +hep-ph/9707284 Phenomenology +hep-ph/9707285 Phenomenology +hep-ph/9707286 Phenomenology +hep-ph/9707289 Phenomenology +hep-ph/9707291 Phenomenology +hep-ph/9707292 Phenomenology +hep-ph/9707293 Phenomenology +hep-ph/9707297 Phenomenology +hep-ph/9707298 Phenomenology +hep-ph/9707299 Phenomenology +hep-ph/9707300 Phenomenology +hep-ph/9707301 Phenomenology +hep-ph/9707302 Phenomenology +hep-ph/9707303 Phenomenology +hep-ph/9707306 Phenomenology +hep-ph/9707307 Phenomenology +hep-ph/9707309 Phenomenology +hep-ph/9707313 Phenomenology +hep-ph/9707314 Phenomenology +hep-ph/9707316 Phenomenology +hep-ph/9707317 Phenomenology +hep-ph/9707318 Phenomenology +hep-ph/9707320 Phenomenology +hep-ph/9707322 Phenomenology +hep-ph/9707324 Phenomenology +hep-ph/9707326 Phenomenology +hep-ph/9707327 Phenomenology +hep-ph/9707336 Phenomenology +hep-ph/9707337 Phenomenology +hep-ph/9707338 Phenomenology +hep-ph/9707341 Phenomenology +hep-ph/9707342 Phenomenology +hep-ph/9707343 Phenomenology +hep-ph/9707344 Phenomenology +hep-ph/9707346 Phenomenology +hep-ph/9707352 Phenomenology +hep-ph/9707353 Phenomenology +hep-ph/9707356 Phenomenology +hep-ph/9707358 Phenomenology +hep-ph/9707363 Phenomenology +hep-ph/9707365 Phenomenology +hep-ph/9707367 Phenomenology +hep-ph/9707368 Phenomenology +hep-ph/9707369 Phenomenology +hep-ph/9707376 Phenomenology +hep-ph/9707378 Phenomenology +hep-ph/9707379 Phenomenology +hep-ph/9707384 Phenomenology +hep-ph/9707389 Phenomenology +hep-ph/9707390 Phenomenology +hep-ph/9707392 Phenomenology +hep-ph/9707393 Phenomenology +hep-ph/9707394 Phenomenology +hep-ph/9707398 Phenomenology +hep-ph/9707399 Phenomenology +hep-ph/9707400 Phenomenology +hep-ph/9707402 Phenomenology +hep-ph/9707403 Phenomenology +hep-ph/9707405 Phenomenology +hep-ph/9707411 Phenomenology +hep-ph/9707413 Phenomenology +hep-ph/9707414 Phenomenology +hep-ph/9707420 Phenomenology +hep-ph/9707421 Phenomenology +hep-ph/9707427 Phenomenology +hep-ph/9707428 Phenomenology +hep-ph/9707430 Phenomenology +hep-ph/9707432 Phenomenology +hep-ph/9707433 Phenomenology +hep-ph/9707434 Phenomenology +hep-ph/9707435 Phenomenology +hep-ph/9707436 Phenomenology +hep-ph/9707439 Phenomenology +hep-ph/9707442 Phenomenology +hep-ph/9707444 Phenomenology +hep-ph/9707445 Phenomenology +hep-ph/9707448 Phenomenology +hep-ph/9707450 Phenomenology +hep-ph/9707452 Phenomenology +hep-ph/9707454 Phenomenology +hep-ph/9707455 Phenomenology +hep-ph/9707457 Phenomenology +hep-ph/9707459 Phenomenology +hep-ph/9707463 Phenomenology +hep-ph/9707464 Phenomenology +hep-ph/9707465 Phenomenology +hep-ph/9707476 Phenomenology +hep-ph/9707477 Phenomenology +hep-ph/9707478 Phenomenology +hep-ph/9707479 Phenomenology +hep-ph/9707480 Phenomenology +hep-ph/9707481 Phenomenology +hep-ph/9707482 Phenomenology +hep-ph/9707486 Phenomenology +hep-ph/9707487 Phenomenology +hep-ph/9707489 Phenomenology +hep-ph/9707490 Phenomenology +hep-ph/9707492 Phenomenology +hep-ph/9707493 Phenomenology +hep-ph/9707496 Phenomenology +hep-ph/9707499 Phenomenology +hep-ph/9707500 Phenomenology +hep-ph/9707502 Phenomenology +hep-ph/9707504 Phenomenology +hep-ph/9707505 Phenomenology +hep-ph/9707510 Phenomenology +hep-ph/9707511 Phenomenology +hep-ph/9707513 Phenomenology +hep-ph/9707515 Phenomenology +hep-ph/9707516 Phenomenology +hep-ph/9707517 Phenomenology +hep-ph/9707519 Phenomenology +hep-ph/9707521 Phenomenology +hep-ph/9707525 Phenomenology +hep-ph/9707529 Phenomenology +hep-ph/9707530 Phenomenology +hep-ph/9707531 Phenomenology +hep-ph/9707532 Phenomenology +hep-ph/9707535 Phenomenology +hep-ph/9707536 Phenomenology +hep-ph/9707537 Phenomenology +hep-ph/9707540 Phenomenology +hep-ph/9707541 Phenomenology +hep-ph/9707545 Phenomenology +hep-ph/9707546 Phenomenology +hep-ph/9708205 Phenomenology +hep-ph/9708209 Phenomenology +hep-ph/9708210 Phenomenology +hep-ph/9708217 Phenomenology +hep-ph/9708220 Phenomenology +hep-ph/9708221 Phenomenology +hep-ph/9708226 Phenomenology +hep-ph/9708228 Phenomenology +hep-ph/9708231 Phenomenology +hep-ph/9708233 Phenomenology +hep-ph/9708235 Phenomenology +hep-ph/9708241 Phenomenology +hep-ph/9708245 Phenomenology +hep-ph/9708247 Phenomenology +hep-ph/9708251 Phenomenology +hep-ph/9708253 Phenomenology +hep-ph/9708255 Phenomenology +hep-ph/9708256 Phenomenology +hep-ph/9708263 Phenomenology +hep-ph/9708264 Phenomenology +hep-ph/9708267 Phenomenology +hep-ph/9708269 Phenomenology +hep-ph/9708276 Phenomenology +hep-ph/9708279 Phenomenology +hep-ph/9708283 Phenomenology +hep-ph/9708284 Phenomenology +hep-ph/9708286 Phenomenology +hep-ph/9708292 Phenomenology +hep-ph/9708294 Phenomenology +hep-ph/9708299 Phenomenology +hep-ph/9708302 Phenomenology +hep-ph/9708304 Phenomenology +hep-ph/9708306 Phenomenology +hep-ph/9708307 Phenomenology +hep-ph/9708311 Phenomenology +hep-ph/9708315 Phenomenology +hep-ph/9708318 Phenomenology +hep-ph/9708323 Phenomenology +hep-ph/9708325 Phenomenology +hep-ph/9708328 Phenomenology +hep-ph/9708329 Phenomenology +hep-ph/9708330 Phenomenology +hep-ph/9708332 Phenomenology +hep-ph/9708334 Phenomenology +hep-ph/9708335 Phenomenology +hep-ph/9708336 Phenomenology +hep-ph/9708338 Phenomenology +hep-ph/9708342 Phenomenology +hep-ph/9708344 Phenomenology +hep-ph/9708346 Phenomenology +hep-ph/9708350 Phenomenology +hep-ph/9708351 Phenomenology +hep-ph/9708352 Phenomenology +hep-ph/9708353 Phenomenology +hep-ph/9708357 Phenomenology +hep-ph/9708358 Phenomenology +hep-ph/9708364 Phenomenology +hep-ph/9708365 Phenomenology +hep-ph/9708367 Phenomenology +hep-ph/9708371 Phenomenology +hep-ph/9708372 Phenomenology +hep-ph/9708373 Phenomenology +hep-ph/9708374 Phenomenology +hep-ph/9708380 Phenomenology +hep-ph/9708382 Phenomenology +hep-ph/9708386 Phenomenology +hep-ph/9708387 Phenomenology +hep-ph/9708389 Phenomenology +hep-ph/9708391 Phenomenology +hep-ph/9708392 Phenomenology +hep-ph/9708393 Phenomenology +hep-ph/9708396 Phenomenology +hep-ph/9708398 Phenomenology +hep-ph/9708402 Phenomenology +hep-ph/9708403 Phenomenology +hep-ph/9708404 Phenomenology +hep-ph/9708407 Phenomenology +hep-ph/9708409 Phenomenology +hep-ph/9708410 Phenomenology +hep-ph/9708411 Phenomenology +hep-ph/9708412 Phenomenology +hep-ph/9708413 Phenomenology +hep-ph/9708415 Phenomenology +hep-ph/9708419 Phenomenology +hep-ph/9708420 Phenomenology +hep-ph/9708421 Phenomenology +hep-ph/9708422 Phenomenology +hep-ph/9708423 Phenomenology +hep-ph/9708425 Phenomenology +hep-ph/9708426 Phenomenology +hep-ph/9708427 Phenomenology +hep-ph/9708429 Phenomenology +hep-ph/9708432 Phenomenology +hep-ph/9708433 Phenomenology +hep-ph/9708434 Phenomenology +hep-ph/9708437 Phenomenology +hep-ph/9708438 Phenomenology +hep-ph/9708441 Phenomenology +hep-ph/9708443 Phenomenology +hep-ph/9708444 Phenomenology +hep-ph/9708449 Phenomenology +hep-ph/9708453 Phenomenology +hep-ph/9708454 Phenomenology +hep-ph/9708458 Phenomenology +hep-ph/9708460 Phenomenology +hep-ph/9708461 Phenomenology +hep-ph/9708465 Phenomenology +hep-ph/9708467 Phenomenology +hep-ph/9708472 Phenomenology +hep-ph/9708474 Phenomenology +hep-ph/9708476 Phenomenology +hep-ph/9708479 Phenomenology +hep-ph/9708480 Phenomenology +hep-ph/9708485 Phenomenology +hep-ph/9708489 Phenomenology +hep-ph/9708492 Phenomenology +hep-ph/9708494 Phenomenology +hep-ph/9708497 Phenomenology +hep-ph/9709202 Phenomenology +hep-ph/9709208 Phenomenology +hep-ph/9709209 Phenomenology +hep-ph/9709210 Phenomenology +hep-ph/9709211 Phenomenology +hep-ph/9709213 Phenomenology +hep-ph/9709221 Phenomenology +hep-ph/9709224 Phenomenology +hep-ph/9709230 Phenomenology +hep-ph/9709236 Phenomenology +hep-ph/9709239 Phenomenology +hep-ph/9709245 Phenomenology +hep-ph/9709246 Phenomenology +hep-ph/9709247 Phenomenology +hep-ph/9709250 Phenomenology +hep-ph/9709253 Phenomenology +hep-ph/9709257 Phenomenology +hep-ph/9709260 Phenomenology +hep-ph/9709262 Phenomenology +hep-ph/9709267 Phenomenology +hep-ph/9709271 Phenomenology +hep-ph/9709273 Phenomenology +hep-ph/9709275 Phenomenology +hep-ph/9709279 Phenomenology +hep-ph/9709280 Phenomenology +hep-ph/9709283 Phenomenology +hep-ph/9709284 Phenomenology +hep-ph/9709285 Phenomenology +hep-ph/9709286 Phenomenology +hep-ph/9709288 Phenomenology +hep-ph/9709289 Phenomenology +hep-ph/9709293 Phenomenology +hep-ph/9709295 Phenomenology +hep-ph/9709296 Phenomenology +hep-ph/9709297 Phenomenology +hep-ph/9709300 Phenomenology +hep-ph/9709309 Phenomenology +hep-ph/9709310 Phenomenology +hep-ph/9709311 Phenomenology +hep-ph/9709314 Phenomenology +hep-ph/9709317 Phenomenology +hep-ph/9709318 Phenomenology +hep-ph/9709325 Phenomenology +hep-ph/9709327 Phenomenology +hep-ph/9709328 Phenomenology +hep-ph/9709330 Phenomenology +hep-ph/9709337 Phenomenology +hep-ph/9709346 Phenomenology +hep-ph/9709350 Phenomenology +hep-ph/9709351 Phenomenology +hep-ph/9709352 Phenomenology +hep-ph/9709353 Phenomenology +hep-ph/9709360 Phenomenology +hep-ph/9709361 Phenomenology +hep-ph/9709367 Phenomenology +hep-ph/9709372 Phenomenology +hep-ph/9709375 Phenomenology +hep-ph/9709377 Phenomenology +hep-ph/9709380 Phenomenology +hep-ph/9709383 Phenomenology +hep-ph/9709387 Phenomenology +hep-ph/9709388 Phenomenology +hep-ph/9709389 Phenomenology +hep-ph/9709393 Phenomenology +hep-ph/9709394 Phenomenology +hep-ph/9709397 Phenomenology +hep-ph/9709398 Phenomenology +hep-ph/9709399 Phenomenology +hep-ph/9709400 Phenomenology +hep-ph/9709401 Phenomenology +hep-ph/9709402 Phenomenology +hep-ph/9709406 Phenomenology +hep-ph/9709408 Phenomenology +hep-ph/9709409 Phenomenology +hep-ph/9709415 Phenomenology +hep-ph/9709418 Phenomenology +hep-ph/9709419 Phenomenology +hep-ph/9709427 Phenomenology +hep-ph/9709431 Phenomenology +hep-ph/9709435 Phenomenology +hep-ph/9709445 Phenomenology +hep-ph/9709452 Phenomenology +hep-ph/9709456 Phenomenology +hep-ph/9709457 Phenomenology +hep-ph/9709458 Phenomenology +hep-ph/9709459 Phenomenology +hep-ph/9709467 Phenomenology +hep-ph/9709468 Phenomenology +hep-ph/9709470 Phenomenology +hep-ph/9709474 Phenomenology +hep-ph/9709479 Phenomenology +hep-ph/9709481 Phenomenology +hep-ph/9709484 Phenomenology +hep-ph/9709485 Phenomenology +hep-ph/9709486 Phenomenology +hep-ph/9709493 Phenomenology +hep-ph/9709494 Phenomenology +hep-ph/9709495 Phenomenology +hep-ph/9709501 Phenomenology +hep-ph/9709502 Phenomenology +hep-ph/9709510 Phenomenology +hep-ph/9710201 Phenomenology +hep-ph/9710204 Phenomenology +hep-ph/9710207 Phenomenology +hep-ph/9710208 Phenomenology +hep-ph/9710210 Phenomenology +hep-ph/9710212 Phenomenology +hep-ph/9710214 Phenomenology +hep-ph/9710218 Phenomenology +hep-ph/9710221 Phenomenology +hep-ph/9710222 Phenomenology +hep-ph/9710225 Phenomenology +hep-ph/9710226 Phenomenology +hep-ph/9710227 Phenomenology +hep-ph/9710228 Phenomenology +hep-ph/9710230 Phenomenology +hep-ph/9710231 Phenomenology +hep-ph/9710232 Phenomenology +hep-ph/9710234 Phenomenology +hep-ph/9710237 Phenomenology +hep-ph/9710246 Phenomenology +hep-ph/9710247 Phenomenology +hep-ph/9710250 Phenomenology +hep-ph/9710256 Phenomenology +hep-ph/9710257 Phenomenology +hep-ph/9710258 Phenomenology +hep-ph/9710261 Phenomenology +hep-ph/9710264 Phenomenology +hep-ph/9710266 Phenomenology +hep-ph/9710268 Phenomenology +hep-ph/9710270 Phenomenology +hep-ph/9710271 Phenomenology +hep-ph/9710272 Phenomenology +hep-ph/9710274 Phenomenology +hep-ph/9710277 Phenomenology +hep-ph/9710278 Phenomenology +hep-ph/9710282 Phenomenology +hep-ph/9710285 Phenomenology +hep-ph/9710290 Phenomenology +hep-ph/9710294 Phenomenology +hep-ph/9710298 Phenomenology +hep-ph/9710301 Phenomenology +hep-ph/9710304 Phenomenology +hep-ph/9710305 Phenomenology +hep-ph/9710307 Phenomenology +hep-ph/9710310 Phenomenology +hep-ph/9710315 Phenomenology +hep-ph/9710316 Phenomenology +hep-ph/9710323 Phenomenology +hep-ph/9710326 Phenomenology +hep-ph/9710334 Phenomenology +hep-ph/9710338 Phenomenology +hep-ph/9710339 Phenomenology +hep-ph/9710341 Phenomenology +hep-ph/9710342 Phenomenology +hep-ph/9710344 Phenomenology +hep-ph/9710347 Phenomenology +hep-ph/9710348 Phenomenology +hep-ph/9710350 Phenomenology +hep-ph/9710351 Phenomenology +hep-ph/9710352 Phenomenology +hep-ph/9710354 Phenomenology +hep-ph/9710358 Phenomenology +hep-ph/9710359 Phenomenology +hep-ph/9710367 Phenomenology +hep-ph/9710368 Phenomenology +hep-ph/9710371 Phenomenology +hep-ph/9710373 Phenomenology +hep-ph/9710374 Phenomenology +hep-ph/9710376 Phenomenology +hep-ph/9710380 Phenomenology +hep-ph/9710382 Phenomenology +hep-ph/9710384 Phenomenology +hep-ph/9710389 Phenomenology +hep-ph/9710391 Phenomenology +hep-ph/9710394 Phenomenology +hep-ph/9710402 Phenomenology +hep-ph/9710414 Phenomenology +hep-ph/9710415 Phenomenology +hep-ph/9710417 Phenomenology +hep-ph/9710418 Phenomenology +hep-ph/9710422 Phenomenology +hep-ph/9710424 Phenomenology +hep-ph/9710425 Phenomenology +hep-ph/9710427 Phenomenology +hep-ph/9710428 Phenomenology +hep-ph/9710430 Phenomenology +hep-ph/9710435 Phenomenology +hep-ph/9710445 Phenomenology +hep-ph/9710447 Phenomenology +hep-ph/9710449 Phenomenology +hep-ph/9710451 Phenomenology +hep-ph/9710452 Phenomenology +hep-ph/9710453 Phenomenology +hep-ph/9710457 Phenomenology +hep-ph/9710460 Phenomenology +hep-ph/9710461 Phenomenology +hep-ph/9710462 Phenomenology +hep-ph/9710466 Phenomenology +hep-ph/9710468 Phenomenology +hep-ph/9710478 Phenomenology +hep-ph/9710484 Phenomenology +hep-ph/9710492 Phenomenology +hep-ph/9710495 Phenomenology +hep-ph/9710502 Phenomenology +hep-ph/9710505 Phenomenology +hep-ph/9710506 Phenomenology +hep-ph/9710507 Phenomenology +hep-ph/9710508 Phenomenology +hep-ph/9710509 Phenomenology +hep-ph/9710511 Phenomenology +hep-ph/9710515 Phenomenology +hep-ph/9710527 Phenomenology +hep-ph/9710534 Phenomenology +hep-ph/9710536 Phenomenology +hep-ph/9710538 Phenomenology +hep-ph/9710543 Phenomenology +hep-ph/9710544 Phenomenology +hep-ph/9710547 Phenomenology +hep-ph/9710548 Phenomenology +hep-ph/9710550 Phenomenology +hep-ph/9710555 Phenomenology +hep-ph/9710556 Phenomenology +hep-ph/9710558 Phenomenology +hep-ph/9710560 Phenomenology +hep-ph/9710561 Phenomenology +hep-ph/9710563 Phenomenology +hep-ph/9710565 Phenomenology +hep-ph/9711201 Phenomenology +hep-ph/9711202 Phenomenology +hep-ph/9711206 Phenomenology +hep-ph/9711207 Phenomenology +hep-ph/9711209 Phenomenology +hep-ph/9711210 Phenomenology +hep-ph/9711211 Phenomenology +hep-ph/9711215 Phenomenology +hep-ph/9711216 Phenomenology +hep-ph/9711218 Phenomenology +hep-ph/9711222 Phenomenology +hep-ph/9711223 Phenomenology +hep-ph/9711225 Phenomenology +hep-ph/9711226 Phenomenology +hep-ph/9711230 Phenomenology +hep-ph/9711234 Phenomenology +hep-ph/9711235 Phenomenology +hep-ph/9711238 Phenomenology +hep-ph/9711240 Phenomenology +hep-ph/9711241 Phenomenology +hep-ph/9711243 Phenomenology +hep-ph/9711244 Phenomenology +hep-ph/9711249 Phenomenology +hep-ph/9711251 Phenomenology +hep-ph/9711252 Phenomenology +hep-ph/9711255 Phenomenology +hep-ph/9711256 Phenomenology +hep-ph/9711259 Phenomenology +hep-ph/9711262 Phenomenology +hep-ph/9711266 Phenomenology +hep-ph/9711267 Phenomenology +hep-ph/9711268 Phenomenology +hep-ph/9711271 Phenomenology +hep-ph/9711273 Phenomenology +hep-ph/9711277 Phenomenology +hep-ph/9711296 Phenomenology +hep-ph/9711297 Phenomenology +hep-ph/9711298 Phenomenology +hep-ph/9711300 Phenomenology +hep-ph/9711303 Phenomenology +hep-ph/9711306 Phenomenology +hep-ph/9711307 Phenomenology +hep-ph/9711311 Phenomenology +hep-ph/9711313 Phenomenology +hep-ph/9711318 Phenomenology +hep-ph/9711324 Phenomenology +hep-ph/9711326 Phenomenology +hep-ph/9711333 Phenomenology +hep-ph/9711334 Phenomenology +hep-ph/9711335 Phenomenology +hep-ph/9711339 Phenomenology +hep-ph/9711344 Phenomenology +hep-ph/9711345 Phenomenology +hep-ph/9711348 Phenomenology +hep-ph/9711355 Phenomenology +hep-ph/9711356 Phenomenology +hep-ph/9711361 Phenomenology +hep-ph/9711362 Phenomenology +hep-ph/9711368 Phenomenology +hep-ph/9711371 Phenomenology +hep-ph/9711375 Phenomenology +hep-ph/9711376 Phenomenology +hep-ph/9711377 Phenomenology +hep-ph/9711379 Phenomenology +hep-ph/9711380 Phenomenology +hep-ph/9711384 Phenomenology +hep-ph/9711387 Phenomenology +hep-ph/9711389 Phenomenology +hep-ph/9711391 Phenomenology +hep-ph/9711395 Phenomenology +hep-ph/9711396 Phenomenology +hep-ph/9711402 Phenomenology +hep-ph/9711403 Phenomenology +hep-ph/9711406 Phenomenology +hep-ph/9711410 Phenomenology +hep-ph/9711415 Phenomenology +hep-ph/9711417 Phenomenology +hep-ph/9711420 Phenomenology +hep-ph/9711425 Phenomenology +hep-ph/9711427 Phenomenology +hep-ph/9711429 Phenomenology +hep-ph/9711431 Phenomenology +hep-ph/9711440 Phenomenology +hep-ph/9711448 Phenomenology +hep-ph/9711450 Phenomenology +hep-ph/9711451 Phenomenology +hep-ph/9711453 Phenomenology +hep-ph/9711462 Phenomenology +hep-ph/9711473 Phenomenology +hep-ph/9711475 Phenomenology +hep-ph/9711479 Phenomenology +hep-ph/9711483 Phenomenology +hep-ph/9711484 Phenomenology +hep-ph/9711487 Phenomenology +hep-ph/9711490 Phenomenology +hep-ph/9711493 Phenomenology +hep-ph/9711499 Phenomenology +hep-ph/9711500 Phenomenology +hep-ph/9711503 Phenomenology +hep-ph/9711504 Phenomenology +hep-ph/9711507 Phenomenology +hep-ph/9711509 Phenomenology +hep-ph/9711514 Phenomenology +hep-ph/9711516 Phenomenology +hep-ph/9711518 Phenomenology +hep-ph/9712201 Phenomenology +hep-ph/9712202 Phenomenology +hep-ph/9712204 Phenomenology +hep-ph/9712209 Phenomenology +hep-ph/9712210 Phenomenology +hep-ph/9712217 Phenomenology +hep-ph/9712220 Phenomenology +hep-ph/9712221 Phenomenology +hep-ph/9712222 Phenomenology +hep-ph/9712228 Phenomenology +hep-ph/9712229 Phenomenology +hep-ph/9712230 Phenomenology +hep-ph/9712231 Phenomenology +hep-ph/9712233 Phenomenology +hep-ph/9712236 Phenomenology +hep-ph/9712237 Phenomenology +hep-ph/9712239 Phenomenology +hep-ph/9712240 Phenomenology +hep-ph/9712242 Phenomenology +hep-ph/9712246 Phenomenology +hep-ph/9712247 Phenomenology +hep-ph/9712248 Phenomenology +hep-ph/9712249 Phenomenology +hep-ph/9712251 Phenomenology +hep-ph/9712252 Phenomenology +hep-ph/9712254 Phenomenology +hep-ph/9712258 Phenomenology +hep-ph/9712260 Phenomenology +hep-ph/9712261 Phenomenology +hep-ph/9712266 Phenomenology +hep-ph/9712268 Phenomenology +hep-ph/9712270 Phenomenology +hep-ph/9712276 Phenomenology +hep-ph/9712278 Phenomenology +hep-ph/9712279 Phenomenology +hep-ph/9712280 Phenomenology +hep-ph/9712282 Phenomenology +hep-ph/9712284 Phenomenology +hep-ph/9712286 Phenomenology +hep-ph/9712289 Phenomenology +hep-ph/9712291 Phenomenology +hep-ph/9712294 Phenomenology +hep-ph/9712297 Phenomenology +hep-ph/9712299 Phenomenology +hep-ph/9712305 Phenomenology +hep-ph/9712307 Phenomenology +hep-ph/9712315 Phenomenology +hep-ph/9712317 Phenomenology +hep-ph/9712319 Phenomenology +hep-ph/9712321 Phenomenology +hep-ph/9712325 Phenomenology +hep-ph/9712326 Phenomenology +hep-ph/9712327 Phenomenology +hep-ph/9712329 Phenomenology +hep-ph/9712330 Phenomenology +hep-ph/9712331 Phenomenology +hep-ph/9712337 Phenomenology +hep-ph/9712338 Phenomenology +hep-ph/9712341 Phenomenology +hep-ph/9712343 Phenomenology +hep-ph/9712344 Phenomenology +hep-ph/9712347 Phenomenology +hep-ph/9712348 Phenomenology +hep-ph/9712349 Phenomenology +hep-ph/9712351 Phenomenology +hep-ph/9712359 Phenomenology +hep-ph/9712363 Phenomenology +hep-ph/9712366 Phenomenology +hep-ph/9712367 Phenomenology +hep-ph/9712375 Phenomenology +hep-ph/9712382 Phenomenology +hep-ph/9712387 Phenomenology +hep-ph/9712390 Phenomenology +hep-ph/9712393 Phenomenology +hep-ph/9712394 Phenomenology +hep-ph/9712395 Phenomenology +hep-ph/9712396 Phenomenology +hep-ph/9712398 Phenomenology +hep-ph/9712400 Phenomenology +hep-ph/9712401 Phenomenology +hep-ph/9712406 Phenomenology +hep-ph/9712412 Phenomenology +hep-ph/9712414 Phenomenology +hep-ph/9712417 Phenomenology +hep-ph/9712418 Phenomenology +hep-ph/9712419 Phenomenology +hep-ph/9712420 Phenomenology +hep-ph/9712426 Phenomenology +hep-ph/9712427 Phenomenology +hep-ph/9712428 Phenomenology +hep-ph/9712430 Phenomenology +hep-ph/9712431 Phenomenology +hep-ph/9712432 Phenomenology +hep-ph/9712433 Phenomenology +hep-ph/9712438 Phenomenology +hep-ph/9712440 Phenomenology +hep-ph/9712441 Phenomenology +hep-ph/9712443 Phenomenology +hep-ph/9712445 Phenomenology +hep-ph/9712446 Phenomenology +hep-ph/9712453 Phenomenology +hep-ph/9712462 Phenomenology +hep-ph/9712466 Phenomenology +hep-ph/9712468 Phenomenology +hep-ph/9712469 Phenomenology +hep-ph/9712473 Phenomenology +hep-ph/9712474 Phenomenology +hep-ph/9712476 Phenomenology +hep-ph/9712478 Phenomenology +hep-ph/9712479 Phenomenology +hep-ph/9712480 Phenomenology +hep-ph/9712486 Phenomenology +hep-ph/9712492 Phenomenology +hep-ph/9712503 Phenomenology +hep-ph/9712504 Phenomenology +hep-ph/9712507 Phenomenology +hep-ph/9712508 Phenomenology +hep-ph/9712510 Phenomenology +hep-ph/9712516 Phenomenology +hep-ph/9712519 Phenomenology +hep-ph/9712522 Phenomenology +hep-ph/9712523 Phenomenology +hep-ph/9712532 Phenomenology +hep-ph/9712535 Phenomenology +hep-ph/9712542 Phenomenology +hep-ph/9712546 Phenomenology +hep-ph/9712547 Phenomenology +hep-ph/9712549 Phenomenology +hep-th/9601002 Theory +hep-th/9601003 Theory +hep-th/9601005 Theory +hep-th/9601006 Theory +hep-th/9601009 Theory +hep-th/9601010 Theory +hep-th/9601014 Theory +hep-th/9601016 Theory +hep-th/9601017 Theory +hep-th/9601019 Theory +hep-th/9601023 Theory +hep-th/9601026 Theory +hep-th/9601027 Theory +hep-th/9601028 Theory +hep-th/9601033 Theory +hep-th/9601035 Theory +hep-th/9601040 Theory +hep-th/9601043 Theory +hep-th/9601045 Theory +hep-th/9601046 Theory +hep-th/9601047 Theory +hep-th/9601048 Theory +hep-th/9601049 Theory +hep-th/9601051 Theory +hep-th/9601052 Theory +hep-th/9601053 Theory +hep-th/9601056 Theory +hep-th/9601057 Theory +hep-th/9601059 Theory +hep-th/9601060 Theory +hep-th/9601061 Theory +hep-th/9601062 Theory +hep-th/9601067 Theory +hep-th/9601069 Theory +hep-th/9601070 Theory +hep-th/9601073 Theory +hep-th/9601074 Theory +hep-th/9601078 Theory +hep-th/9601079 Theory +hep-th/9601080 Theory +hep-th/9601081 Theory +hep-th/9601082 Theory +hep-th/9601084 Theory +hep-th/9601085 Theory +hep-th/9601087 Theory +hep-th/9601090 Theory +hep-th/9601091 Theory +hep-th/9601094 Theory +hep-th/9601098 Theory +hep-th/9601100 Theory +hep-th/9601103 Theory +hep-th/9601104 Theory +hep-th/9601106 Theory +hep-th/9601107 Theory +hep-th/9601111 Theory +hep-th/9601114 Theory +hep-th/9601115 Theory +hep-th/9601116 Theory +hep-th/9601118 Theory +hep-th/9601122 Theory +hep-th/9601123 Theory +hep-th/9601124 Theory +hep-th/9601125 Theory +hep-th/9601127 Theory +hep-th/9601128 Theory +hep-th/9601130 Theory +hep-th/9601132 Theory +hep-th/9601134 Theory +hep-th/9601136 Theory +hep-th/9601140 Theory +hep-th/9601142 Theory +hep-th/9601146 Theory +hep-th/9601147 Theory +hep-th/9601148 Theory +hep-th/9601152 Theory +hep-th/9601156 Theory +hep-th/9601159 Theory +hep-th/9601164 Theory +hep-th/9601166 Theory +hep-th/9601171 Theory +hep-th/9601172 Theory +hep-th/9601173 Theory +hep-th/9601174 Theory +hep-th/9601175 Theory +hep-th/9601176 Theory +hep-th/9601179 Theory +hep-th/9602002 Theory +hep-th/9602005 Theory +hep-th/9602006 Theory +hep-th/9602007 Theory +hep-th/9602008 Theory +hep-th/9602015 Theory +hep-th/9602016 Theory +hep-th/9602017 Theory +hep-th/9602018 Theory +hep-th/9602027 Theory +hep-th/9602028 Theory +hep-th/9602029 Theory +hep-th/9602030 Theory +hep-th/9602031 Theory +hep-th/9602032 Theory +hep-th/9602033 Theory +hep-th/9602035 Theory +hep-th/9602036 Theory +hep-th/9602040 Theory +hep-th/9602041 Theory +hep-th/9602049 Theory +hep-th/9602050 Theory +hep-th/9602054 Theory +hep-th/9602056 Theory +hep-th/9602057 Theory +hep-th/9602058 Theory +hep-th/9602059 Theory +hep-th/9602061 Theory +hep-th/9602062 Theory +hep-th/9602063 Theory +hep-th/9602065 Theory +hep-th/9602068 Theory +hep-th/9602069 Theory +hep-th/9602071 Theory +hep-th/9602073 Theory +hep-th/9602074 Theory +hep-th/9602075 Theory +hep-th/9602080 Theory +hep-th/9602082 Theory +hep-th/9602083 Theory +hep-th/9602084 Theory +hep-th/9602085 Theory +hep-th/9602086 Theory +hep-th/9602087 Theory +hep-th/9602088 Theory +hep-th/9602089 Theory +hep-th/9602090 Theory +hep-th/9602091 Theory +hep-th/9602095 Theory +hep-th/9602096 Theory +hep-th/9602097 Theory +hep-th/9602100 Theory +hep-th/9602101 Theory +hep-th/9602107 Theory +hep-th/9602113 Theory +hep-th/9602114 Theory +hep-th/9602116 Theory +hep-th/9602118 Theory +hep-th/9602120 Theory +hep-th/9602124 Theory +hep-th/9602125 Theory +hep-th/9602129 Theory +hep-th/9602130 Theory +hep-th/9602132 Theory +hep-th/9602137 Theory +hep-th/9602138 Theory +hep-th/9602141 Theory +hep-th/9602144 Theory +hep-th/9602149 Theory +hep-th/9602154 Theory +hep-th/9602155 Theory +hep-th/9602156 Theory +hep-th/9602158 Theory +hep-th/9602160 Theory +hep-th/9602162 Theory +hep-th/9602165 Theory +hep-th/9602167 Theory +hep-th/9602171 Theory +hep-th/9602173 Theory +hep-th/9602174 Theory +hep-th/9602175 Theory +hep-th/9602176 Theory +hep-th/9602177 Theory +hep-th/9602180 Theory +hep-th/9603001 Theory +hep-th/9603004 Theory +hep-th/9603012 Theory +hep-th/9603016 Theory +hep-th/9603020 Theory +hep-th/9603021 Theory +hep-th/9603022 Theory +hep-th/9603030 Theory +hep-th/9603031 Theory +hep-th/9603032 Theory +hep-th/9603033 Theory +hep-th/9603034 Theory +hep-th/9603041 Theory +hep-th/9603043 Theory +hep-th/9603046 Theory +hep-th/9603047 Theory +hep-th/9603048 Theory +hep-th/9603049 Theory +hep-th/9603051 Theory +hep-th/9603053 Theory +hep-th/9603055 Theory +hep-th/9603062 Theory +hep-th/9603065 Theory +hep-th/9603066 Theory +hep-th/9603069 Theory +hep-th/9603070 Theory +hep-th/9603072 Theory +hep-th/9603074 Theory +hep-th/9603075 Theory +hep-th/9603076 Theory +hep-th/9603080 Theory +hep-th/9603084 Theory +hep-th/9603085 Theory +hep-th/9603088 Theory +hep-th/9603089 Theory +hep-th/9603092 Theory +hep-th/9603093 Theory +hep-th/9603094 Theory +hep-th/9603097 Theory +hep-th/9603098 Theory +hep-th/9603101 Theory +hep-th/9603102 Theory +hep-th/9603103 Theory +hep-th/9603105 Theory +hep-th/9603106 Theory +hep-th/9603107 Theory +hep-th/9603110 Theory +hep-th/9603112 Theory +hep-th/9603114 Theory +hep-th/9603116 Theory +hep-th/9603117 Theory +hep-th/9603118 Theory +hep-th/9603122 Theory +hep-th/9603123 Theory +hep-th/9603128 Theory +hep-th/9603135 Theory +hep-th/9603138 Theory +hep-th/9603140 Theory +hep-th/9603143 Theory +hep-th/9603144 Theory +hep-th/9603151 Theory +hep-th/9603154 Theory +hep-th/9603155 Theory +hep-th/9603158 Theory +hep-th/9603159 Theory +hep-th/9603162 Theory +hep-th/9603169 Theory +hep-th/9603173 Theory +hep-th/9603175 Theory +hep-th/9603177 Theory +hep-th/9603178 Theory +hep-th/9603181 Theory +hep-th/9603182 Theory +hep-th/9603183 Theory +hep-th/9603185 Theory +hep-th/9603186 Theory +hep-th/9603188 Theory +hep-th/9603189 Theory +hep-th/9603190 Theory +hep-th/9603192 Theory +hep-th/9603194 Theory +hep-th/9603197 Theory +hep-th/9603199 Theory +hep-th/9603200 Theory +hep-th/9603201 Theory +hep-th/9603202 Theory +hep-th/9603203 Theory +hep-th/9603204 Theory +hep-th/9603206 Theory +hep-th/9604001 Theory +hep-th/9604003 Theory +hep-th/9604006 Theory +hep-th/9604007 Theory +hep-th/9604008 Theory +hep-th/9604010 Theory +hep-th/9604014 Theory +hep-th/9604015 Theory +hep-th/9604019 Theory +hep-th/9604021 Theory +hep-th/9604022 Theory +hep-th/9604023 Theory +hep-th/9604025 Theory +hep-th/9604027 Theory +hep-th/9604028 Theory +hep-th/9604032 Theory +hep-th/9604048 Theory +hep-th/9604050 Theory +hep-th/9604051 Theory +hep-th/9604054 Theory +hep-th/9604059 Theory +hep-th/9604063 Theory +hep-th/9604064 Theory +hep-th/9604066 Theory +hep-th/9604067 Theory +hep-th/9604068 Theory +hep-th/9604069 Theory +hep-th/9604071 Theory +hep-th/9604072 Theory +hep-th/9604073 Theory +hep-th/9604074 Theory +hep-th/9604076 Theory +hep-th/9604077 Theory +hep-th/9604080 Theory +hep-th/9604081 Theory +hep-th/9604086 Theory +hep-th/9604091 Theory +hep-th/9604092 Theory +hep-th/9604094 Theory +hep-th/9604097 Theory +hep-th/9604098 Theory +hep-th/9604100 Theory +hep-th/9604101 Theory +hep-th/9604102 Theory +hep-th/9604104 Theory +hep-th/9604105 Theory +hep-th/9604107 Theory +hep-th/9604108 Theory +hep-th/9604111 Theory +hep-th/9604112 Theory +hep-th/9604113 Theory +hep-th/9604114 Theory +hep-th/9604116 Theory +hep-th/9604117 Theory +hep-th/9604118 Theory +hep-th/9604119 Theory +hep-th/9604120 Theory +hep-th/9604121 Theory +hep-th/9604122 Theory +hep-th/9604124 Theory +hep-th/9604126 Theory +hep-th/9604134 Theory +hep-th/9604135 Theory +hep-th/9604136 Theory +hep-th/9604138 Theory +hep-th/9604139 Theory +hep-th/9604140 Theory +hep-th/9604141 Theory +hep-th/9604142 Theory +hep-th/9604143 Theory +hep-th/9604145 Theory +hep-th/9604146 Theory +hep-th/9604147 Theory +hep-th/9604151 Theory +hep-th/9604152 Theory +hep-th/9604153 Theory +hep-th/9604154 Theory +hep-th/9604157 Theory +hep-th/9604158 Theory +hep-th/9604164 Theory +hep-th/9604165 Theory +hep-th/9604167 Theory +hep-th/9604169 Theory +hep-th/9604170 Theory +hep-th/9604178 Theory +hep-th/9604179 Theory +hep-th/9604181 Theory +hep-th/9604182 Theory +hep-th/9604184 Theory +hep-th/9604186 Theory +hep-th/9604201 Theory +hep-th/9605002 Theory +hep-th/9605003 Theory +hep-th/9605004 Theory +hep-th/9605005 Theory +hep-th/9605007 Theory +hep-th/9605008 Theory +hep-th/9605009 Theory +hep-th/9605010 Theory +hep-th/9605013 Theory +hep-th/9605015 Theory +hep-th/9605016 Theory +hep-th/9605017 Theory +hep-th/9605018 Theory +hep-th/9605021 Theory +hep-th/9605022 Theory +hep-th/9605023 Theory +hep-th/9605025 Theory +hep-th/9605026 Theory +hep-th/9605027 Theory +hep-th/9605028 Theory +hep-th/9605030 Theory +hep-th/9605031 Theory +hep-th/9605033 Theory +hep-th/9605035 Theory +hep-th/9605038 Theory +hep-th/9605039 Theory +hep-th/9605042 Theory +hep-th/9605049 Theory +hep-th/9605050 Theory +hep-th/9605053 Theory +hep-th/9605054 Theory +hep-th/9605055 Theory +hep-th/9605056 Theory +hep-th/9605061 Theory +hep-th/9605062 Theory +hep-th/9605064 Theory +hep-th/9605065 Theory +hep-th/9605066 Theory +hep-th/9605068 Theory +hep-th/9605069 Theory +hep-th/9605070 Theory +hep-th/9605073 Theory +hep-th/9605075 Theory +hep-th/9605078 Theory +hep-th/9605079 Theory +hep-th/9605080 Theory +hep-th/9605083 Theory +hep-th/9605084 Theory +hep-th/9605087 Theory +hep-th/9605093 Theory +hep-th/9605095 Theory +hep-th/9605096 Theory +hep-th/9605097 Theory +hep-th/9605099 Theory +hep-th/9605101 Theory +hep-th/9605102 Theory +hep-th/9605104 Theory +hep-th/9605105 Theory +hep-th/9605109 Theory +hep-th/9605111 Theory +hep-th/9605113 Theory +hep-th/9605114 Theory +hep-th/9605115 Theory +hep-th/9605116 Theory +hep-th/9605118 Theory +hep-th/9605119 Theory +hep-th/9605123 Theory +hep-th/9605124 Theory +hep-th/9605125 Theory +hep-th/9605126 Theory +hep-th/9605127 Theory +hep-th/9605128 Theory +hep-th/9605131 Theory +hep-th/9605136 Theory +hep-th/9605138 Theory +hep-th/9605140 Theory +hep-th/9605141 Theory +hep-th/9605142 Theory +hep-th/9605144 Theory +hep-th/9605145 Theory +hep-th/9605147 Theory +hep-th/9605149 Theory +hep-th/9605153 Theory +hep-th/9605154 Theory +hep-th/9605157 Theory +hep-th/9605159 Theory +hep-th/9605162 Theory +hep-th/9605163 Theory +hep-th/9605164 Theory +hep-th/9605166 Theory +hep-th/9605167 Theory +hep-th/9605168 Theory +hep-th/9605171 Theory +hep-th/9605172 Theory +hep-th/9605173 Theory +hep-th/9605176 Theory +hep-th/9605177 Theory +hep-th/9605178 Theory +hep-th/9605179 Theory +hep-th/9605180 Theory +hep-th/9605181 Theory +hep-th/9605183 Theory +hep-th/9605191 Theory +hep-th/9605192 Theory +hep-th/9605193 Theory +hep-th/9605197 Theory +hep-th/9605201 Theory +hep-th/9605203 Theory +hep-th/9605204 Theory +hep-th/9605206 Theory +hep-th/9605207 Theory +hep-th/9605208 Theory +hep-th/9605209 Theory +hep-th/9605212 Theory +hep-th/9605213 Theory +hep-th/9605215 Theory +hep-th/9605216 Theory +hep-th/9605217 Theory +hep-th/9605219 Theory +hep-th/9605220 Theory +hep-th/9605221 Theory +hep-th/9605223 Theory +hep-th/9605224 Theory +hep-th/9605226 Theory +hep-th/9605229 Theory +hep-th/9605231 Theory +hep-th/9605232 Theory +hep-th/9605233 Theory +hep-th/9605234 Theory +hep-th/9606002 Theory +hep-th/9606003 Theory +hep-th/9606004 Theory +hep-th/9606005 Theory +hep-th/9606006 Theory +hep-th/9606008 Theory +hep-th/9606009 Theory +hep-th/9606011 Theory +hep-th/9606012 Theory +hep-th/9606013 Theory +hep-th/9606014 Theory +hep-th/9606015 Theory +hep-th/9606018 Theory +hep-th/9606022 Theory +hep-th/9606023 Theory +hep-th/9606025 Theory +hep-th/9606028 Theory +hep-th/9606029 Theory +hep-th/9606031 Theory +hep-th/9606032 Theory +hep-th/9606034 Theory +hep-th/9606036 Theory +hep-th/9606037 Theory +hep-th/9606043 Theory +hep-th/9606050 Theory +hep-th/9606053 Theory +hep-th/9606054 Theory +hep-th/9606056 Theory +hep-th/9606058 Theory +hep-th/9606061 Theory +hep-th/9606062 Theory +hep-th/9606066 Theory +hep-th/9606067 Theory +hep-th/9606070 Theory +hep-th/9606072 Theory +hep-th/9606077 Theory +hep-th/9606078 Theory +hep-th/9606079 Theory +hep-th/9606080 Theory +hep-th/9606081 Theory +hep-th/9606082 Theory +hep-th/9606083 Theory +hep-th/9606092 Theory +hep-th/9606097 Theory +hep-th/9606099 Theory +hep-th/9606102 Theory +hep-th/9606103 Theory +hep-th/9606106 Theory +hep-th/9606108 Theory +hep-th/9606109 Theory +hep-th/9606114 Theory +hep-th/9606115 Theory +hep-th/9606116 Theory +hep-th/9606117 Theory +hep-th/9606118 Theory +hep-th/9606121 Theory +hep-th/9606126 Theory +hep-th/9606127 Theory +hep-th/9606130 Theory +hep-th/9606132 Theory +hep-th/9606133 Theory +hep-th/9606134 Theory +hep-th/9606135 Theory +hep-th/9606136 Theory +hep-th/9606137 Theory +hep-th/9606138 Theory +hep-th/9606140 Theory +hep-th/9606141 Theory +hep-th/9606142 Theory +hep-th/9606144 Theory +hep-th/9606145 Theory +hep-th/9606146 Theory +hep-th/9606148 Theory +hep-th/9606149 Theory +hep-th/9606152 Theory +hep-th/9606153 Theory +hep-th/9606158 Theory +hep-th/9606159 Theory +hep-th/9606162 Theory +hep-th/9606163 Theory +hep-th/9606169 Theory +hep-th/9606170 Theory +hep-th/9606175 Theory +hep-th/9606176 Theory +hep-th/9606180 Theory +hep-th/9606182 Theory +hep-th/9606184 Theory +hep-th/9606185 Theory +hep-th/9606187 Theory +hep-th/9606189 Theory +hep-th/9606190 Theory +hep-th/9606192 Theory +hep-th/9606194 Theory +hep-th/9606195 Theory +hep-th/9606196 Theory +hep-th/9606197 Theory +hep-th/9606199 Theory +hep-th/9607001 Theory +hep-th/9607002 Theory +hep-th/9607003 Theory +hep-th/9607004 Theory +hep-th/9607009 Theory +hep-th/9607010 Theory +hep-th/9607011 Theory +hep-th/9607013 Theory +hep-th/9607014 Theory +hep-th/9607018 Theory +hep-th/9607020 Theory +hep-th/9607022 Theory +hep-th/9607023 Theory +hep-th/9607030 Theory +hep-th/9607035 Theory +hep-th/9607036 Theory +hep-th/9607037 Theory +hep-th/9607040 Theory +hep-th/9607041 Theory +hep-th/9607042 Theory +hep-th/9607046 Theory +hep-th/9607047 Theory +hep-th/9607049 Theory +hep-th/9607051 Theory +hep-th/9607052 Theory +hep-th/9607054 Theory +hep-th/9607055 Theory +hep-th/9607056 Theory +hep-th/9607057 Theory +hep-th/9607058 Theory +hep-th/9607059 Theory +hep-th/9607060 Theory +hep-th/9607061 Theory +hep-th/9607062 Theory +hep-th/9607064 Theory +hep-th/9607066 Theory +hep-th/9607069 Theory +hep-th/9607070 Theory +hep-th/9607071 Theory +hep-th/9607072 Theory +hep-th/9607074 Theory +hep-th/9607076 Theory +hep-th/9607079 Theory +hep-th/9607080 Theory +hep-th/9607082 Theory +hep-th/9607083 Theory +hep-th/9607085 Theory +hep-th/9607088 Theory +hep-th/9607089 Theory +hep-th/9607090 Theory +hep-th/9607093 Theory +hep-th/9607095 Theory +hep-th/9607096 Theory +hep-th/9607101 Theory +hep-th/9607102 Theory +hep-th/9607103 Theory +hep-th/9607104 Theory +hep-th/9607109 Theory +hep-th/9607110 Theory +hep-th/9607112 Theory +hep-th/9607113 Theory +hep-th/9607114 Theory +hep-th/9607116 Theory +hep-th/9607118 Theory +hep-th/9607120 Theory +hep-th/9607124 Theory +hep-th/9607128 Theory +hep-th/9607129 Theory +hep-th/9607131 Theory +hep-th/9607135 Theory +hep-th/9607137 Theory +hep-th/9607138 Theory +hep-th/9607139 Theory +hep-th/9607140 Theory +hep-th/9607141 Theory +hep-th/9607143 Theory +hep-th/9607144 Theory +hep-th/9607147 Theory +hep-th/9607148 Theory +hep-th/9607151 Theory +hep-th/9607153 Theory +hep-th/9607155 Theory +hep-th/9607157 Theory +hep-th/9607158 Theory +hep-th/9607160 Theory +hep-th/9607165 Theory +hep-th/9607168 Theory +hep-th/9607171 Theory +hep-th/9607172 Theory +hep-th/9607176 Theory +hep-th/9607177 Theory +hep-th/9607178 Theory +hep-th/9607185 Theory +hep-th/9607190 Theory +hep-th/9607197 Theory +hep-th/9607198 Theory +hep-th/9607200 Theory +hep-th/9607203 Theory +hep-th/9607206 Theory +hep-th/9607208 Theory +hep-th/9607217 Theory +hep-th/9607224 Theory +hep-th/9607225 Theory +hep-th/9607227 Theory +hep-th/9607228 Theory +hep-th/9607230 Theory +hep-th/9607232 Theory +hep-th/9607236 Theory +hep-th/9607239 Theory +hep-th/9607243 Theory +hep-th/9608001 Theory +hep-th/9608004 Theory +hep-th/9608006 Theory +hep-th/9608008 Theory +hep-th/9608010 Theory +hep-th/9608012 Theory +hep-th/9608013 Theory +hep-th/9608014 Theory +hep-th/9608018 Theory +hep-th/9608019 Theory +hep-th/9608021 Theory +hep-th/9608022 Theory +hep-th/9608023 Theory +hep-th/9608025 Theory +hep-th/9608026 Theory +hep-th/9608027 Theory +hep-th/9608028 Theory +hep-th/9608030 Theory +hep-th/9608031 Theory +hep-th/9608033 Theory +hep-th/9608034 Theory +hep-th/9608039 Theory +hep-th/9608040 Theory +hep-th/9608043 Theory +hep-th/9608044 Theory +hep-th/9608045 Theory +hep-th/9608047 Theory +hep-th/9608049 Theory +hep-th/9608054 Theory +hep-th/9608055 Theory +hep-th/9608057 Theory +hep-th/9608058 Theory +hep-th/9608060 Theory +hep-th/9608063 Theory +hep-th/9608064 Theory +hep-th/9608066 Theory +hep-th/9608074 Theory +hep-th/9608076 Theory +hep-th/9608077 Theory +hep-th/9608080 Theory +hep-th/9608082 Theory +hep-th/9608084 Theory +hep-th/9608085 Theory +hep-th/9608098 Theory +hep-th/9608104 Theory +hep-th/9608105 Theory +hep-th/9608107 Theory +hep-th/9608110 Theory +hep-th/9608112 Theory +hep-th/9608118 Theory +hep-th/9608122 Theory +hep-th/9608126 Theory +hep-th/9608127 Theory +hep-th/9608130 Theory +hep-th/9608131 Theory +hep-th/9608135 Theory +hep-th/9608136 Theory +hep-th/9608138 Theory +hep-th/9608139 Theory +hep-th/9608145 Theory +hep-th/9608147 Theory +hep-th/9608150 Theory +hep-th/9608151 Theory +hep-th/9608152 Theory +hep-th/9608155 Theory +hep-th/9608158 Theory +hep-th/9608160 Theory +hep-th/9608163 Theory +hep-th/9608166 Theory +hep-th/9608168 Theory +hep-th/9608169 Theory +hep-th/9608170 Theory +hep-th/9608174 Theory +hep-th/9608176 Theory +hep-th/9608178 Theory +hep-th/9608180 Theory +hep-th/9608182 Theory +hep-th/9608183 Theory +hep-th/9608186 Theory +hep-th/9608190 Theory +hep-th/9608192 Theory +hep-th/9608195 Theory +hep-th/9608196 Theory +hep-th/9609001 Theory +hep-th/9609002 Theory +hep-th/9609004 Theory +hep-th/9609006 Theory +hep-th/9609008 Theory +hep-th/9609009 Theory +hep-th/9609011 Theory +hep-th/9609012 Theory +hep-th/9609014 Theory +hep-th/9609015 Theory +hep-th/9609016 Theory +hep-th/9609019 Theory +hep-th/9609022 Theory +hep-th/9609027 Theory +hep-th/9609028 Theory +hep-th/9609029 Theory +hep-th/9609033 Theory +hep-th/9609034 Theory +hep-th/9609035 Theory +hep-th/9609036 Theory +hep-th/9609037 Theory +hep-th/9609038 Theory +hep-th/9609040 Theory +hep-th/9609041 Theory +hep-th/9609043 Theory +hep-th/9609045 Theory +hep-th/9609048 Theory +hep-th/9609054 Theory +hep-th/9609055 Theory +hep-th/9609059 Theory +hep-th/9609060 Theory +hep-th/9609061 Theory +hep-th/9609062 Theory +hep-th/9609065 Theory +hep-th/9609067 Theory +hep-th/9609069 Theory +hep-th/9609071 Theory +hep-th/9609072 Theory +hep-th/9609073 Theory +hep-th/9609074 Theory +hep-th/9609076 Theory +hep-th/9609077 Theory +hep-th/9609079 Theory +hep-th/9609081 Theory +hep-th/9609082 Theory +hep-th/9609084 Theory +hep-th/9609086 Theory +hep-th/9609087 Theory +hep-th/9609088 Theory +hep-th/9609089 Theory +hep-th/9609092 Theory +hep-th/9609097 Theory +hep-th/9609101 Theory +hep-th/9609104 Theory +hep-th/9609105 Theory +hep-th/9609109 Theory +hep-th/9609112 Theory +hep-th/9609113 Theory +hep-th/9609116 Theory +hep-th/9609117 Theory +hep-th/9609121 Theory +hep-th/9609123 Theory +hep-th/9609124 Theory +hep-th/9609128 Theory +hep-th/9609130 Theory +hep-th/9609131 Theory +hep-th/9609132 Theory +hep-th/9609135 Theory +hep-th/9609136 Theory +hep-th/9609139 Theory +hep-th/9609141 Theory +hep-th/9609145 Theory +hep-th/9609147 Theory +hep-th/9609150 Theory +hep-th/9609151 Theory +hep-th/9609154 Theory +hep-th/9609157 Theory +hep-th/9609163 Theory +hep-th/9609166 Theory +hep-th/9609167 Theory +hep-th/9609168 Theory +hep-th/9609169 Theory +hep-th/9609170 Theory +hep-th/9609175 Theory +hep-th/9609178 Theory +hep-th/9609181 Theory +hep-th/9609182 Theory +hep-th/9609183 Theory +hep-th/9609188 Theory +hep-th/9609189 Theory +hep-th/9609191 Theory +hep-th/9609192 Theory +hep-th/9609193 Theory +hep-th/9609196 Theory +hep-th/9609197 Theory +hep-th/9609198 Theory +hep-th/9609202 Theory +hep-th/9609205 Theory +hep-th/9609206 Theory +hep-th/9609207 Theory +hep-th/9609209 Theory +hep-th/9609210 Theory +hep-th/9609211 Theory +hep-th/9609214 Theory +hep-th/9609215 Theory +hep-th/9609216 Theory +hep-th/9609217 Theory +hep-th/9609220 Theory +hep-th/9609223 Theory +hep-th/9609225 Theory +hep-th/9609226 Theory +hep-th/9609228 Theory +hep-th/9609230 Theory +hep-th/9609231 Theory +hep-th/9609235 Theory +hep-th/9609237 Theory +hep-th/9609239 Theory +hep-th/9610001 Theory +hep-th/9610006 Theory +hep-th/9610009 Theory +hep-th/9610014 Theory +hep-th/9610015 Theory +hep-th/9610016 Theory +hep-th/9610017 Theory +hep-th/9610020 Theory +hep-th/9610021 Theory +hep-th/9610022 Theory +hep-th/9610023 Theory +hep-th/9610025 Theory +hep-th/9610026 Theory +hep-th/9610030 Theory +hep-th/9610032 Theory +hep-th/9610033 Theory +hep-th/9610034 Theory +hep-th/9610037 Theory +hep-th/9610047 Theory +hep-th/9610052 Theory +hep-th/9610056 Theory +hep-th/9610062 Theory +hep-th/9610068 Theory +hep-th/9610069 Theory +hep-th/9610075 Theory +hep-th/9610077 Theory +hep-th/9610080 Theory +hep-th/9610081 Theory +hep-th/9610082 Theory +hep-th/9610086 Theory +hep-th/9610094 Theory +hep-th/9610097 Theory +hep-th/9610100 Theory +hep-th/9610102 Theory +hep-th/9610104 Theory +hep-th/9610106 Theory +hep-th/9610113 Theory +hep-th/9610119 Theory +hep-th/9610120 Theory +hep-th/9610121 Theory +hep-th/9610124 Theory +hep-th/9610129 Theory +hep-th/9610131 Theory +hep-th/9610134 Theory +hep-th/9610135 Theory +hep-th/9610138 Theory +hep-th/9610140 Theory +hep-th/9610141 Theory +hep-th/9610142 Theory +hep-th/9610147 Theory +hep-th/9610148 Theory +hep-th/9610151 Theory +hep-th/9610152 Theory +hep-th/9610154 Theory +hep-th/9610156 Theory +hep-th/9610157 Theory +hep-th/9610162 Theory +hep-th/9610163 Theory +hep-th/9610164 Theory +hep-th/9610166 Theory +hep-th/9610170 Theory +hep-th/9610173 Theory +hep-th/9610175 Theory +hep-th/9610178 Theory +hep-th/9610179 Theory +hep-th/9610181 Theory +hep-th/9610186 Theory +hep-th/9610187 Theory +hep-th/9610188 Theory +hep-th/9610189 Theory +hep-th/9610191 Theory +hep-th/9610192 Theory +hep-th/9610195 Theory +hep-th/9610196 Theory +hep-th/9610199 Theory +hep-th/9610201 Theory +hep-th/9610203 Theory +hep-th/9610204 Theory +hep-th/9610210 Theory +hep-th/9610212 Theory +hep-th/9610214 Theory +hep-th/9610215 Theory +hep-th/9610218 Theory +hep-th/9610219 Theory +hep-th/9610221 Theory +hep-th/9610224 Theory +hep-th/9610226 Theory +hep-th/9610227 Theory +hep-th/9610228 Theory +hep-th/9610231 Theory +hep-th/9610232 Theory +hep-th/9610233 Theory +hep-th/9610236 Theory +hep-th/9610238 Theory +hep-th/9610244 Theory +hep-th/9610248 Theory +hep-th/9610249 Theory +hep-th/9610250 Theory +hep-th/9611006 Theory +hep-th/9611007 Theory +hep-th/9611008 Theory +hep-th/9611010 Theory +hep-th/9611012 Theory +hep-th/9611014 Theory +hep-th/9611016 Theory +hep-th/9611017 Theory +hep-th/9611020 Theory +hep-th/9611021 Theory +hep-th/9611024 Theory +hep-th/9611026 Theory +hep-th/9611027 Theory +hep-th/9611030 Theory +hep-th/9611033 Theory +hep-th/9611034 Theory +hep-th/9611035 Theory +hep-th/9611037 Theory +hep-th/9611038 Theory +hep-th/9611039 Theory +hep-th/9611041 Theory +hep-th/9611048 Theory +hep-th/9611052 Theory +hep-th/9611053 Theory +hep-th/9611065 Theory +hep-th/9611070 Theory +hep-th/9611071 Theory +hep-th/9611075 Theory +hep-th/9611077 Theory +hep-th/9611078 Theory +hep-th/9611082 Theory +hep-th/9611087 Theory +hep-th/9611092 Theory +hep-th/9611095 Theory +hep-th/9611097 Theory +hep-th/9611098 Theory +hep-th/9611100 Theory +hep-th/9611101 Theory +hep-th/9611102 Theory +hep-th/9611105 Theory +hep-th/9611107 Theory +hep-th/9611113 Theory +hep-th/9611119 Theory +hep-th/9611123 Theory +hep-th/9611124 Theory +hep-th/9611125 Theory +hep-th/9611126 Theory +hep-th/9611130 Theory +hep-th/9611141 Theory +hep-th/9611145 Theory +hep-th/9611146 Theory +hep-th/9611148 Theory +hep-th/9611149 Theory +hep-th/9611153 Theory +hep-th/9611155 Theory +hep-th/9611156 Theory +hep-th/9611159 Theory +hep-th/9611163 Theory +hep-th/9611168 Theory +hep-th/9611172 Theory +hep-th/9611173 Theory +hep-th/9611174 Theory +hep-th/9611175 Theory +hep-th/9611177 Theory +hep-th/9611181 Theory +hep-th/9611182 Theory +hep-th/9611183 Theory +hep-th/9611184 Theory +hep-th/9611187 Theory +hep-th/9611190 Theory +hep-th/9611193 Theory +hep-th/9611194 Theory +hep-th/9611195 Theory +hep-th/9611196 Theory +hep-th/9611197 Theory +hep-th/9611198 Theory +hep-th/9611201 Theory +hep-th/9611208 Theory +hep-th/9611209 Theory +hep-th/9611210 Theory +hep-th/9611211 Theory +hep-th/9611213 Theory +hep-th/9611224 Theory +hep-th/9611227 Theory +hep-th/9611231 Theory +hep-th/9611236 Theory +hep-th/9611238 Theory +hep-th/9612005 Theory +hep-th/9612007 Theory +hep-th/9612011 Theory +hep-th/9612014 Theory +hep-th/9612015 Theory +hep-th/9612017 Theory +hep-th/9612027 Theory +hep-th/9612029 Theory +hep-th/9612030 Theory +hep-th/9612034 Theory +hep-th/9612035 Theory +hep-th/9612040 Theory +hep-th/9612041 Theory +hep-th/9612042 Theory +hep-th/9612043 Theory +hep-th/9612047 Theory +hep-th/9612049 Theory +hep-th/9612050 Theory +hep-th/9612052 Theory +hep-th/9612053 Theory +hep-th/9612055 Theory +hep-th/9612058 Theory +hep-th/9612059 Theory +hep-th/9612062 Theory +hep-th/9612064 Theory +hep-th/9612067 Theory +hep-th/9612070 Theory +hep-th/9612073 Theory +hep-th/9612074 Theory +hep-th/9612081 Theory +hep-th/9612083 Theory +hep-th/9612086 Theory +hep-th/9612087 Theory +hep-th/9612092 Theory +hep-th/9612095 Theory +hep-th/9612096 Theory +hep-th/9612098 Theory +hep-th/9612102 Theory +hep-th/9612105 Theory +hep-th/9612107 Theory +hep-th/9612110 Theory +hep-th/9612111 Theory +hep-th/9612112 Theory +hep-th/9612115 Theory +hep-th/9612116 Theory +hep-th/9612117 Theory +hep-th/9612120 Theory +hep-th/9612122 Theory +hep-th/9612124 Theory +hep-th/9612127 Theory +hep-th/9612128 Theory +hep-th/9612129 Theory +hep-th/9612133 Theory +hep-th/9612140 Theory +hep-th/9612145 Theory +hep-th/9612147 Theory +hep-th/9612149 Theory +hep-th/9612151 Theory +hep-th/9612153 Theory +hep-th/9612159 Theory +hep-th/9612163 Theory +hep-th/9612165 Theory +hep-th/9612168 Theory +hep-th/9612170 Theory +hep-th/9612172 Theory +hep-th/9612173 Theory +hep-th/9612176 Theory +hep-th/9612178 Theory +hep-th/9612179 Theory +hep-th/9612186 Theory +hep-th/9612191 Theory +hep-th/9612193 Theory +hep-th/9612194 Theory +hep-th/9612196 Theory +hep-th/9612199 Theory +hep-th/9612200 Theory +hep-th/9612201 Theory +hep-th/9612203 Theory +hep-th/9612206 Theory +hep-th/9612212 Theory +hep-th/9612213 Theory +hep-th/9612214 Theory +hep-th/9612218 Theory +hep-th/9612221 Theory +hep-th/9612223 Theory +hep-th/9612226 Theory +hep-th/9612231 Theory +hep-th/9612234 Theory +hep-th/9612237 Theory +hep-th/9612238 Theory +hep-th/9612240 Theory +hep-th/9612242 Theory +hep-th/9612247 Theory +hep-th/9612248 Theory +hep-th/9612250 Theory +hep-th/9612251 Theory +hep-th/9612253 Theory +hep-th/9701004 Theory +hep-th/9701005 Theory +hep-th/9701007 Theory +hep-th/9701009 Theory +hep-th/9701011 Theory +hep-th/9701017 Theory +hep-th/9701018 Theory +hep-th/9701021 Theory +hep-th/9701022 Theory +hep-th/9701027 Theory +hep-th/9701028 Theory +hep-th/9701030 Theory +hep-th/9701031 Theory +hep-th/9701033 Theory +hep-th/9701035 Theory +hep-th/9701036 Theory +hep-th/9701037 Theory +hep-th/9701038 Theory +hep-th/9701045 Theory +hep-th/9701047 Theory +hep-th/9701048 Theory +hep-th/9701050 Theory +hep-th/9701051 Theory +hep-th/9701052 Theory +hep-th/9701053 Theory +hep-th/9701054 Theory +hep-th/9701055 Theory +hep-th/9701056 Theory +hep-th/9701057 Theory +hep-th/9701058 Theory +hep-th/9701059 Theory +hep-th/9701060 Theory +hep-th/9701062 Theory +hep-th/9701064 Theory +hep-th/9701065 Theory +hep-th/9701066 Theory +hep-th/9701067 Theory +hep-th/9701070 Theory +hep-th/9701072 Theory +hep-th/9701074 Theory +hep-th/9701075 Theory +hep-th/9701076 Theory +hep-th/9701080 Theory +hep-th/9701081 Theory +hep-th/9701082 Theory +hep-th/9701083 Theory +hep-th/9701085 Theory +hep-th/9701087 Theory +hep-th/9701091 Theory +hep-th/9701092 Theory +hep-th/9701093 Theory +hep-th/9701094 Theory +hep-th/9701096 Theory +hep-th/9701097 Theory +hep-th/9701100 Theory +hep-th/9701104 Theory +hep-th/9701105 Theory +hep-th/9701106 Theory +hep-th/9701113 Theory +hep-th/9701114 Theory +hep-th/9701115 Theory +hep-th/9701117 Theory +hep-th/9701118 Theory +hep-th/9701119 Theory +hep-th/9701126 Theory +hep-th/9701127 Theory +hep-th/9701130 Theory +hep-th/9701131 Theory +hep-th/9701134 Theory +hep-th/9701138 Theory +hep-th/9701139 Theory +hep-th/9701140 Theory +hep-th/9701141 Theory +hep-th/9701142 Theory +hep-th/9701145 Theory +hep-th/9701147 Theory +hep-th/9701148 Theory +hep-th/9701149 Theory +hep-th/9701150 Theory +hep-th/9701151 Theory +hep-th/9701152 Theory +hep-th/9701153 Theory +hep-th/9701154 Theory +hep-th/9701155 Theory +hep-th/9701158 Theory +hep-th/9701159 Theory +hep-th/9701161 Theory +hep-th/9701165 Theory +hep-th/9701166 Theory +hep-th/9701167 Theory +hep-th/9701169 Theory +hep-th/9701170 Theory +hep-th/9701171 Theory +hep-th/9701174 Theory +hep-th/9701175 Theory +hep-th/9701176 Theory +hep-th/9701178 Theory +hep-th/9701182 Theory +hep-th/9701183 Theory +hep-th/9701185 Theory +hep-th/9701186 Theory +hep-th/9701188 Theory +hep-th/9701190 Theory +hep-th/9701193 Theory +hep-th/9702002 Theory +hep-th/9702003 Theory +hep-th/9702005 Theory +hep-th/9702006 Theory +hep-th/9702007 Theory +hep-th/9702008 Theory +hep-th/9702010 Theory +hep-th/9702013 Theory +hep-th/9702014 Theory +hep-th/9702016 Theory +hep-th/9702019 Theory +hep-th/9702020 Theory +hep-th/9702021 Theory +hep-th/9702023 Theory +hep-th/9702024 Theory +hep-th/9702026 Theory +hep-th/9702028 Theory +hep-th/9702030 Theory +hep-th/9702034 Theory +hep-th/9702035 Theory +hep-th/9702037 Theory +hep-th/9702038 Theory +hep-th/9702040 Theory +hep-th/9702041 Theory +hep-th/9702043 Theory +hep-th/9702050 Theory +hep-th/9702051 Theory +hep-th/9702052 Theory +hep-th/9702053 Theory +hep-th/9702054 Theory +hep-th/9702057 Theory +hep-th/9702064 Theory +hep-th/9702065 Theory +hep-th/9702066 Theory +hep-th/9702067 Theory +hep-th/9702068 Theory +hep-th/9702072 Theory +hep-th/9702073 Theory +hep-th/9702074 Theory +hep-th/9702076 Theory +hep-th/9702077 Theory +hep-th/9702079 Theory +hep-th/9702080 Theory +hep-th/9702081 Theory +hep-th/9702089 Theory +hep-th/9702092 Theory +hep-th/9702093 Theory +hep-th/9702095 Theory +hep-th/9702102 Theory +hep-th/9702104 Theory +hep-th/9702105 Theory +hep-th/9702106 Theory +hep-th/9702110 Theory +hep-th/9702111 Theory +hep-th/9702112 Theory +hep-th/9702114 Theory +hep-th/9702115 Theory +hep-th/9702118 Theory +hep-th/9702119 Theory +hep-th/9702123 Theory +hep-th/9702125 Theory +hep-th/9702126 Theory +hep-th/9702129 Theory +hep-th/9702132 Theory +hep-th/9702133 Theory +hep-th/9702134 Theory +hep-th/9702135 Theory +hep-th/9702136 Theory +hep-th/9702137 Theory +hep-th/9702139 Theory +hep-th/9702141 Theory +hep-th/9702143 Theory +hep-th/9702144 Theory +hep-th/9702145 Theory +hep-th/9702151 Theory +hep-th/9702153 Theory +hep-th/9702156 Theory +hep-th/9702158 Theory +hep-th/9702159 Theory +hep-th/9702164 Theory +hep-th/9702166 Theory +hep-th/9702168 Theory +hep-th/9702172 Theory +hep-th/9702175 Theory +hep-th/9702176 Theory +hep-th/9702178 Theory +hep-th/9702179 Theory +hep-th/9702181 Theory +hep-th/9702183 Theory +hep-th/9702185 Theory +hep-th/9702188 Theory +hep-th/9702193 Theory +hep-th/9702194 Theory +hep-th/9702195 Theory +hep-th/9702196 Theory +hep-th/9702197 Theory +hep-th/9703003 Theory +hep-th/9703005 Theory +hep-th/9703006 Theory +hep-th/9703015 Theory +hep-th/9703016 Theory +hep-th/9703017 Theory +hep-th/9703019 Theory +hep-th/9703020 Theory +hep-th/9703023 Theory +hep-th/9703027 Theory +hep-th/9703029 Theory +hep-th/9703031 Theory +hep-th/9703035 Theory +hep-th/9703036 Theory +hep-th/9703038 Theory +hep-th/9703039 Theory +hep-th/9703042 Theory +hep-th/9703043 Theory +hep-th/9703044 Theory +hep-th/9703045 Theory +hep-th/9703046 Theory +hep-th/9703048 Theory +hep-th/9703049 Theory +hep-th/9703051 Theory +hep-th/9703053 Theory +hep-th/9703054 Theory +hep-th/9703057 Theory +hep-th/9703059 Theory +hep-th/9703060 Theory +hep-th/9703064 Theory +hep-th/9703065 Theory +hep-th/9703067 Theory +hep-th/9703069 Theory +hep-th/9703070 Theory +hep-th/9703071 Theory +hep-th/9703072 Theory +hep-th/9703074 Theory +hep-th/9703075 Theory +hep-th/9703077 Theory +hep-th/9703078 Theory +hep-th/9703081 Theory +hep-th/9703082 Theory +hep-th/9703083 Theory +hep-th/9703085 Theory +hep-th/9703086 Theory +hep-th/9703090 Theory +hep-th/9703091 Theory +hep-th/9703092 Theory +hep-th/9703093 Theory +hep-th/9703094 Theory +hep-th/9703097 Theory +hep-th/9703101 Theory +hep-th/9703107 Theory +hep-th/9703109 Theory +hep-th/9703114 Theory +hep-th/9703115 Theory +hep-th/9703116 Theory +hep-th/9703120 Theory +hep-th/9703121 Theory +hep-th/9703123 Theory +hep-th/9703124 Theory +hep-th/9703127 Theory +hep-th/9703128 Theory +hep-th/9703130 Theory +hep-th/9703131 Theory +hep-th/9703132 Theory +hep-th/9703133 Theory +hep-th/9703135 Theory +hep-th/9703139 Theory +hep-th/9703141 Theory +hep-th/9703142 Theory +hep-th/9703143 Theory +hep-th/9703145 Theory +hep-th/9703146 Theory +hep-th/9703147 Theory +hep-th/9703148 Theory +hep-th/9703150 Theory +hep-th/9703151 Theory +hep-th/9703154 Theory +hep-th/9703156 Theory +hep-th/9703158 Theory +hep-th/9703160 Theory +hep-th/9703161 Theory +hep-th/9703162 Theory +hep-th/9703163 Theory +hep-th/9703165 Theory +hep-th/9703168 Theory +hep-th/9703172 Theory +hep-th/9703176 Theory +hep-th/9703177 Theory +hep-th/9703180 Theory +hep-th/9703190 Theory +hep-th/9703192 Theory +hep-th/9703194 Theory +hep-th/9703196 Theory +hep-th/9703197 Theory +hep-th/9703198 Theory +hep-th/9703199 Theory +hep-th/9703200 Theory +hep-th/9703201 Theory +hep-th/9703202 Theory +hep-th/9703203 Theory +hep-th/9703205 Theory +hep-th/9703207 Theory +hep-th/9703208 Theory +hep-th/9703209 Theory +hep-th/9703210 Theory +hep-th/9703212 Theory +hep-th/9703218 Theory +hep-th/9703219 Theory +hep-th/9703224 Theory +hep-th/9703227 Theory +hep-th/9703228 Theory +hep-th/9704004 Theory +hep-th/9704006 Theory +hep-th/9704008 Theory +hep-th/9704010 Theory +hep-th/9704011 Theory +hep-th/9704012 Theory +hep-th/9704013 Theory +hep-th/9704015 Theory +hep-th/9704017 Theory +hep-th/9704021 Theory +hep-th/9704022 Theory +hep-th/9704023 Theory +hep-th/9704024 Theory +hep-th/9704027 Theory +hep-th/9704028 Theory +hep-th/9704030 Theory +hep-th/9704035 Theory +hep-th/9704036 Theory +hep-th/9704039 Theory +hep-th/9704040 Theory +hep-th/9704041 Theory +hep-th/9704043 Theory +hep-th/9704044 Theory +hep-th/9704045 Theory +hep-th/9704054 Theory +hep-th/9704055 Theory +hep-th/9704056 Theory +hep-th/9704057 Theory +hep-th/9704059 Theory +hep-th/9704062 Theory +hep-th/9704063 Theory +hep-th/9704064 Theory +hep-th/9704065 Theory +hep-th/9704071 Theory +hep-th/9704073 Theory +hep-th/9704074 Theory +hep-th/9704076 Theory +hep-th/9704078 Theory +hep-th/9704079 Theory +hep-th/9704081 Theory +hep-th/9704082 Theory +hep-th/9704083 Theory +hep-th/9704084 Theory +hep-th/9704090 Theory +hep-th/9704092 Theory +hep-th/9704093 Theory +hep-th/9704094 Theory +hep-th/9704095 Theory +hep-th/9704096 Theory +hep-th/9704097 Theory +hep-th/9704102 Theory +hep-th/9704104 Theory +hep-th/9704107 Theory +hep-th/9704108 Theory +hep-th/9704109 Theory +hep-th/9704110 Theory +hep-th/9704111 Theory +hep-th/9704113 Theory +hep-th/9704117 Theory +hep-th/9704118 Theory +hep-th/9704120 Theory +hep-th/9704121 Theory +hep-th/9704123 Theory +hep-th/9704126 Theory +hep-th/9704128 Theory +hep-th/9704130 Theory +hep-th/9704133 Theory +hep-th/9704134 Theory +hep-th/9704135 Theory +hep-th/9704137 Theory +hep-th/9704146 Theory +hep-th/9704147 Theory +hep-th/9704148 Theory +hep-th/9704149 Theory +hep-th/9704150 Theory +hep-th/9704152 Theory +hep-th/9704153 Theory +hep-th/9704156 Theory +hep-th/9704157 Theory +hep-th/9704160 Theory +hep-th/9704162 Theory +hep-th/9704165 Theory +hep-th/9704167 Theory +hep-th/9704171 Theory +hep-th/9704173 Theory +hep-th/9704174 Theory +hep-th/9704175 Theory +hep-th/9704176 Theory +hep-th/9704180 Theory +hep-th/9704183 Theory +hep-th/9704184 Theory +hep-th/9704190 Theory +hep-th/9704193 Theory +hep-th/9704197 Theory +hep-th/9704199 Theory +hep-th/9704202 Theory +hep-th/9704205 Theory +hep-th/9704206 Theory +hep-th/9704209 Theory +hep-th/9704214 Theory +hep-th/9705001 Theory +hep-th/9705002 Theory +hep-th/9705003 Theory +hep-th/9705004 Theory +hep-th/9705005 Theory +hep-th/9705009 Theory +hep-th/9705010 Theory +hep-th/9705013 Theory +hep-th/9705014 Theory +hep-th/9705019 Theory +hep-th/9705020 Theory +hep-th/9705021 Theory +hep-th/9705023 Theory +hep-th/9705025 Theory +hep-th/9705026 Theory +hep-th/9705027 Theory +hep-th/9705031 Theory +hep-th/9705036 Theory +hep-th/9705037 Theory +hep-th/9705038 Theory +hep-th/9705041 Theory +hep-th/9705042 Theory +hep-th/9705043 Theory +hep-th/9705046 Theory +hep-th/9705047 Theory +hep-th/9705049 Theory +hep-th/9705050 Theory +hep-th/9705053 Theory +hep-th/9705058 Theory +hep-th/9705059 Theory +hep-th/9705060 Theory +hep-th/9705064 Theory +hep-th/9705067 Theory +hep-th/9705068 Theory +hep-th/9705069 Theory +hep-th/9705074 Theory +hep-th/9705076 Theory +hep-th/9705077 Theory +hep-th/9705078 Theory +hep-th/9705082 Theory +hep-th/9705085 Theory +hep-th/9705086 Theory +hep-th/9705088 Theory +hep-th/9705090 Theory +hep-th/9705091 Theory +hep-th/9705092 Theory +hep-th/9705093 Theory +hep-th/9705094 Theory +hep-th/9705096 Theory +hep-th/9705099 Theory +hep-th/9705100 Theory +hep-th/9705102 Theory +hep-th/9705103 Theory +hep-th/9705104 Theory +hep-th/9705105 Theory +hep-th/9705106 Theory +hep-th/9705107 Theory +hep-th/9705108 Theory +hep-th/9705109 Theory +hep-th/9705116 Theory +hep-th/9705118 Theory +hep-th/9705119 Theory +hep-th/9705121 Theory +hep-th/9705124 Theory +hep-th/9705129 Theory +hep-th/9705130 Theory +hep-th/9705132 Theory +hep-th/9705133 Theory +hep-th/9705136 Theory +hep-th/9705138 Theory +hep-th/9705140 Theory +hep-th/9705141 Theory +hep-th/9705143 Theory +hep-th/9705144 Theory +hep-th/9705147 Theory +hep-th/9705148 Theory +hep-th/9705149 Theory +hep-th/9705150 Theory +hep-th/9705151 Theory +hep-th/9705152 Theory +hep-th/9705153 Theory +hep-th/9705157 Theory +hep-th/9705158 Theory +hep-th/9705159 Theory +hep-th/9705160 Theory +hep-th/9705161 Theory +hep-th/9705162 Theory +hep-th/9705167 Theory +hep-th/9705171 Theory +hep-th/9705173 Theory +hep-th/9705175 Theory +hep-th/9705177 Theory +hep-th/9705178 Theory +hep-th/9705179 Theory +hep-th/9705182 Theory +hep-th/9705183 Theory +hep-th/9705186 Theory +hep-th/9705188 Theory +hep-th/9705191 Theory +hep-th/9705193 Theory +hep-th/9705194 Theory +hep-th/9705196 Theory +hep-th/9705197 Theory +hep-th/9705198 Theory +hep-th/9705200 Theory +hep-th/9705202 Theory +hep-th/9705204 Theory +hep-th/9705206 Theory +hep-th/9705208 Theory +hep-th/9705210 Theory +hep-th/9705215 Theory +hep-th/9705218 Theory +hep-th/9705219 Theory +hep-th/9705223 Theory +hep-th/9705225 Theory +hep-th/9705226 Theory +hep-th/9705227 Theory +hep-th/9705229 Theory +hep-th/9705233 Theory +hep-th/9705234 Theory +hep-th/9705235 Theory +hep-th/9705236 Theory +hep-th/9705237 Theory +hep-th/9705239 Theory +hep-th/9705240 Theory +hep-th/9705241 Theory +hep-th/9706002 Theory +hep-th/9706003 Theory +hep-th/9706005 Theory +hep-th/9706007 Theory +hep-th/9706013 Theory +hep-th/9706014 Theory +hep-th/9706015 Theory +hep-th/9706016 Theory +hep-th/9706017 Theory +hep-th/9706018 Theory +hep-th/9706020 Theory +hep-th/9706021 Theory +hep-th/9706022 Theory +hep-th/9706023 Theory +hep-th/9706024 Theory +hep-th/9706025 Theory +hep-th/9706026 Theory +hep-th/9706028 Theory +hep-th/9706030 Theory +hep-th/9706035 Theory +hep-th/9706037 Theory +hep-th/9706038 Theory +hep-th/9706039 Theory +hep-th/9706042 Theory +hep-th/9706044 Theory +hep-th/9706046 Theory +hep-th/9706047 Theory +hep-th/9706050 Theory +hep-th/9706051 Theory +hep-th/9706056 Theory +hep-th/9706057 Theory +hep-th/9706061 Theory +hep-th/9706063 Theory +hep-th/9706064 Theory +hep-th/9706065 Theory +hep-th/9706069 Theory +hep-th/9706070 Theory +hep-th/9706073 Theory +hep-th/9706075 Theory +hep-th/9706077 Theory +hep-th/9706078 Theory +hep-th/9706080 Theory +hep-th/9706084 Theory +hep-th/9706085 Theory +hep-th/9706087 Theory +hep-th/9706088 Theory +hep-th/9706090 Theory +hep-th/9706091 Theory +hep-th/9706093 Theory +hep-th/9706094 Theory +hep-th/9706097 Theory +hep-th/9706101 Theory +hep-th/9706102 Theory +hep-th/9706103 Theory +hep-th/9706107 Theory +hep-th/9706108 Theory +hep-th/9706111 Theory +hep-th/9706112 Theory +hep-th/9706113 Theory +hep-th/9706114 Theory +hep-th/9706116 Theory +hep-th/9706120 Theory +hep-th/9706122 Theory +hep-th/9706124 Theory +hep-th/9706126 Theory +hep-th/9706127 Theory +hep-th/9706130 Theory +hep-th/9706134 Theory +hep-th/9706137 Theory +hep-th/9706138 Theory +hep-th/9706139 Theory +hep-th/9706140 Theory +hep-th/9706142 Theory +hep-th/9706144 Theory +hep-th/9706145 Theory +hep-th/9706148 Theory +hep-th/9706150 Theory +hep-th/9706151 Theory +hep-th/9706153 Theory +hep-th/9706154 Theory +hep-th/9706155 Theory +hep-th/9706156 Theory +hep-th/9706160 Theory +hep-th/9706162 Theory +hep-th/9706170 Theory +hep-th/9706172 Theory +hep-th/9706173 Theory +hep-th/9706176 Theory +hep-th/9706178 Theory +hep-th/9706180 Theory +hep-th/9706184 Theory +hep-th/9706190 Theory +hep-th/9706196 Theory +hep-th/9706198 Theory +hep-th/9706199 Theory +hep-th/9706200 Theory +hep-th/9706204 Theory +hep-th/9706208 Theory +hep-th/9706210 Theory +hep-th/9706211 Theory +hep-th/9706213 Theory +hep-th/9706214 Theory +hep-th/9706216 Theory +hep-th/9706218 Theory +hep-th/9706219 Theory +hep-th/9706220 Theory +hep-th/9706221 Theory +hep-th/9706223 Theory +hep-th/9706224 Theory +hep-th/9706225 Theory +hep-th/9706226 Theory +hep-th/9707003 Theory +hep-th/9707005 Theory +hep-th/9707007 Theory +hep-th/9707008 Theory +hep-th/9707010 Theory +hep-th/9707011 Theory +hep-th/9707012 Theory +hep-th/9707013 Theory +hep-th/9707015 Theory +hep-th/9707017 Theory +hep-th/9707021 Theory +hep-th/9707024 Theory +hep-th/9707027 Theory +hep-th/9707028 Theory +hep-th/9707033 Theory +hep-th/9707036 Theory +hep-th/9707040 Theory +hep-th/9707041 Theory +hep-th/9707043 Theory +hep-th/9707047 Theory +hep-th/9707050 Theory +hep-th/9707051 Theory +hep-th/9707053 Theory +hep-th/9707054 Theory +hep-th/9707057 Theory +hep-th/9707059 Theory +hep-th/9707060 Theory +hep-th/9707061 Theory +hep-th/9707062 Theory +hep-th/9707065 Theory +hep-th/9707068 Theory +hep-th/9707070 Theory +hep-th/9707072 Theory +hep-th/9707073 Theory +hep-th/9707077 Theory +hep-th/9707080 Theory +hep-th/9707081 Theory +hep-th/9707085 Theory +hep-th/9707087 Theory +hep-th/9707088 Theory +hep-th/9707090 Theory +hep-th/9707091 Theory +hep-th/9707092 Theory +hep-th/9707094 Theory +hep-th/9707095 Theory +hep-th/9707100 Theory +hep-th/9707101 Theory +hep-th/9707103 Theory +hep-th/9707107 Theory +hep-th/9707108 Theory +hep-th/9707109 Theory +hep-th/9707113 Theory +hep-th/9707115 Theory +hep-th/9707116 Theory +hep-th/9707118 Theory +hep-th/9707119 Theory +hep-th/9707120 Theory +hep-th/9707122 Theory +hep-th/9707125 Theory +hep-th/9707129 Theory +hep-th/9707130 Theory +hep-th/9707132 Theory +hep-th/9707133 Theory +hep-th/9707135 Theory +hep-th/9707137 Theory +hep-th/9707139 Theory +hep-th/9707143 Theory +hep-th/9707151 Theory +hep-th/9707153 Theory +hep-th/9707154 Theory +hep-th/9707155 Theory +hep-th/9707156 Theory +hep-th/9707159 Theory +hep-th/9707161 Theory +hep-th/9707162 Theory +hep-th/9707163 Theory +hep-th/9707164 Theory +hep-th/9707172 Theory +hep-th/9707173 Theory +hep-th/9707174 Theory +hep-th/9707175 Theory +hep-th/9707179 Theory +hep-th/9707181 Theory +hep-th/9707183 Theory +hep-th/9707184 Theory +hep-th/9707185 Theory +hep-th/9707186 Theory +hep-th/9707188 Theory +hep-th/9707189 Theory +hep-th/9707190 Theory +hep-th/9707191 Theory +hep-th/9707194 Theory +hep-th/9707197 Theory +hep-th/9707198 Theory +hep-th/9707200 Theory +hep-th/9707202 Theory +hep-th/9707204 Theory +hep-th/9707205 Theory +hep-th/9707208 Theory +hep-th/9707211 Theory +hep-th/9707213 Theory +hep-th/9707219 Theory +hep-th/9707221 Theory +hep-th/9707222 Theory +hep-th/9707223 Theory +hep-th/9707224 Theory +hep-th/9707225 Theory +hep-th/9707227 Theory +hep-th/9707228 Theory +hep-th/9707229 Theory +hep-th/9707233 Theory +hep-th/9707235 Theory +hep-th/9707236 Theory +hep-th/9707237 Theory +hep-th/9707239 Theory +hep-th/9707241 Theory +hep-th/9707245 Theory +hep-th/9707246 Theory +hep-th/9707248 Theory +hep-th/9707249 Theory +hep-th/9707253 Theory +hep-th/9707255 Theory +hep-th/9707256 Theory +hep-th/9707257 Theory +hep-th/9707259 Theory +hep-th/9707261 Theory +hep-th/9707262 Theory +hep-th/9707263 Theory +hep-th/9708001 Theory +hep-th/9708002 Theory +hep-th/9708003 Theory +hep-th/9708004 Theory +hep-th/9708006 Theory +hep-th/9708011 Theory +hep-th/9708013 Theory +hep-th/9708017 Theory +hep-th/9708023 Theory +hep-th/9708026 Theory +hep-th/9708027 Theory +hep-th/9708028 Theory +hep-th/9708030 Theory +hep-th/9708031 Theory +hep-th/9708033 Theory +hep-th/9708036 Theory +hep-th/9708040 Theory +hep-th/9708041 Theory +hep-th/9708045 Theory +hep-th/9708046 Theory +hep-th/9708047 Theory +hep-th/9708048 Theory +hep-th/9708049 Theory +hep-th/9708051 Theory +hep-th/9708056 Theory +hep-th/9708061 Theory +hep-th/9708064 Theory +hep-th/9708067 Theory +hep-th/9708068 Theory +hep-th/9708071 Theory +hep-th/9708072 Theory +hep-th/9708074 Theory +hep-th/9708075 Theory +hep-th/9708076 Theory +hep-th/9708077 Theory +hep-th/9708078 Theory +hep-th/9708079 Theory +hep-th/9708089 Theory +hep-th/9708093 Theory +hep-th/9708094 Theory +hep-th/9708097 Theory +hep-th/9708098 Theory +hep-th/9708100 Theory +hep-th/9708105 Theory +hep-th/9708106 Theory +hep-th/9708111 Theory +hep-th/9708113 Theory +hep-th/9708115 Theory +hep-th/9708118 Theory +hep-th/9708119 Theory +hep-th/9708120 Theory +hep-th/9708121 Theory +hep-th/9708122 Theory +hep-th/9708126 Theory +hep-th/9708127 Theory +hep-th/9708129 Theory +hep-th/9708130 Theory +hep-th/9708131 Theory +hep-th/9708132 Theory +hep-th/9708133 Theory +hep-th/9708134 Theory +hep-th/9708137 Theory +hep-th/9708138 Theory +hep-th/9708140 Theory +hep-th/9708141 Theory +hep-th/9708149 Theory +hep-th/9708153 Theory +hep-th/9708157 Theory +hep-th/9708160 Theory +hep-th/9708163 Theory +hep-th/9708166 Theory +hep-th/9708168 Theory +hep-th/9709003 Theory +hep-th/9709005 Theory +hep-th/9709007 Theory +hep-th/9709008 Theory +hep-th/9709012 Theory +hep-th/9709014 Theory +hep-th/9709015 Theory +hep-th/9709019 Theory +hep-th/9709020 Theory +hep-th/9709022 Theory +hep-th/9709023 Theory +hep-th/9709024 Theory +hep-th/9709028 Theory +hep-th/9709030 Theory +hep-th/9709034 Theory +hep-th/9709035 Theory +hep-th/9709036 Theory +hep-th/9709038 Theory +hep-th/9709039 Theory +hep-th/9709040 Theory +hep-th/9709041 Theory +hep-th/9709042 Theory +hep-th/9709043 Theory +hep-th/9709047 Theory +hep-th/9709050 Theory +hep-th/9709053 Theory +hep-th/9709055 Theory +hep-th/9709061 Theory +hep-th/9709063 Theory +hep-th/9709065 Theory +hep-th/9709066 Theory +hep-th/9709067 Theory +hep-th/9709068 Theory +hep-th/9709070 Theory +hep-th/9709071 Theory +hep-th/9709072 Theory +hep-th/9709075 Theory +hep-th/9709078 Theory +hep-th/9709079 Theory +hep-th/9709082 Theory +hep-th/9709085 Theory +hep-th/9709088 Theory +hep-th/9709089 Theory +hep-th/9709093 Theory +hep-th/9709097 Theory +hep-th/9709098 Theory +hep-th/9709099 Theory +hep-th/9709101 Theory +hep-th/9709103 Theory +hep-th/9709106 Theory +hep-th/9709107 Theory +hep-th/9709109 Theory +hep-th/9709110 Theory +hep-th/9709113 Theory +hep-th/9709114 Theory +hep-th/9709115 Theory +hep-th/9709116 Theory +hep-th/9709117 Theory +hep-th/9709119 Theory +hep-th/9709122 Theory +hep-th/9709125 Theory +hep-th/9709129 Theory +hep-th/9709131 Theory +hep-th/9709133 Theory +hep-th/9709134 Theory +hep-th/9709136 Theory +hep-th/9709139 Theory +hep-th/9709141 Theory +hep-th/9709142 Theory +hep-th/9709143 Theory +hep-th/9709146 Theory +hep-th/9709147 Theory +hep-th/9709148 Theory +hep-th/9709149 Theory +hep-th/9709151 Theory +hep-th/9709155 Theory +hep-th/9709157 Theory +hep-th/9709161 Theory +hep-th/9709163 Theory +hep-th/9709165 Theory +hep-th/9709168 Theory +hep-th/9709170 Theory +hep-th/9709171 Theory +hep-th/9709173 Theory +hep-th/9709174 Theory +hep-th/9709175 Theory +hep-th/9709176 Theory +hep-th/9709177 Theory +hep-th/9709180 Theory +hep-th/9709182 Theory +hep-th/9709184 Theory +hep-th/9709186 Theory +hep-th/9709189 Theory +hep-th/9709194 Theory +hep-th/9709195 Theory +hep-th/9709196 Theory +hep-th/9709197 Theory +hep-th/9709198 Theory +hep-th/9709199 Theory +hep-th/9709200 Theory +hep-th/9709202 Theory +hep-th/9709203 Theory +hep-th/9709205 Theory +hep-th/9709209 Theory +hep-th/9709210 Theory +hep-th/9709213 Theory +hep-th/9709214 Theory +hep-th/9709219 Theory +hep-th/9709221 Theory +hep-th/9709223 Theory +hep-th/9709224 Theory +hep-th/9709227 Theory +hep-th/9709228 Theory +hep-th/9709229 Theory +hep-th/9710001 Theory +hep-th/9710003 Theory +hep-th/9710005 Theory +hep-th/9710006 Theory +hep-th/9710007 Theory +hep-th/9710013 Theory +hep-th/9710014 Theory +hep-th/9710015 Theory +hep-th/9710018 Theory +hep-th/9710019 Theory +hep-th/9710020 Theory +hep-th/9710021 Theory +hep-th/9710022 Theory +hep-th/9710024 Theory +hep-th/9710025 Theory +hep-th/9710026 Theory +hep-th/9710027 Theory +hep-th/9710028 Theory +hep-th/9710029 Theory +hep-th/9710030 Theory +hep-th/9710033 Theory +hep-th/9710034 Theory +hep-th/9710035 Theory +hep-th/9710037 Theory +hep-th/9710040 Theory +hep-th/9710041 Theory +hep-th/9710042 Theory +hep-th/9710043 Theory +hep-th/9710044 Theory +hep-th/9710048 Theory +hep-th/9710050 Theory +hep-th/9710051 Theory +hep-th/9710052 Theory +hep-th/9710053 Theory +hep-th/9710054 Theory +hep-th/9710057 Theory +hep-th/9710058 Theory +hep-th/9710062 Theory +hep-th/9710064 Theory +hep-th/9710066 Theory +hep-th/9710069 Theory +hep-th/9710070 Theory +hep-th/9710074 Theory +hep-th/9710076 Theory +hep-th/9710077 Theory +hep-th/9710078 Theory +hep-th/9710079 Theory +hep-th/9710082 Theory +hep-th/9710084 Theory +hep-th/9710089 Theory +hep-th/9710091 Theory +hep-th/9710092 Theory +hep-th/9710096 Theory +hep-th/9710099 Theory +hep-th/9710102 Theory +hep-th/9710104 Theory +hep-th/9710111 Theory +hep-th/9710112 Theory +hep-th/9710115 Theory +hep-th/9710117 Theory +hep-th/9710118 Theory +hep-th/9710124 Theory +hep-th/9710126 Theory +hep-th/9710127 Theory +hep-th/9710129 Theory +hep-th/9710131 Theory +hep-th/9710132 Theory +hep-th/9710134 Theory +hep-th/9710135 Theory +hep-th/9710140 Theory +hep-th/9710141 Theory +hep-th/9710142 Theory +hep-th/9710143 Theory +hep-th/9710144 Theory +hep-th/9710145 Theory +hep-th/9710146 Theory +hep-th/9710149 Theory +hep-th/9710150 Theory +hep-th/9710153 Theory +hep-th/9710161 Theory +hep-th/9710162 Theory +hep-th/9710163 Theory +hep-th/9710164 Theory +hep-th/9710166 Theory +hep-th/9710169 Theory +hep-th/9710171 Theory +hep-th/9710172 Theory +hep-th/9710173 Theory +hep-th/9710174 Theory +hep-th/9710176 Theory +hep-th/9710179 Theory +hep-th/9710181 Theory +hep-th/9710183 Theory +hep-th/9710184 Theory +hep-th/9710185 Theory +hep-th/9710188 Theory +hep-th/9710189 Theory +hep-th/9710197 Theory +hep-th/9710199 Theory +hep-th/9710203 Theory +hep-th/9710208 Theory +hep-th/9710209 Theory +hep-th/9710210 Theory +hep-th/9710212 Theory +hep-th/9710214 Theory +hep-th/9710215 Theory +hep-th/9710219 Theory +hep-th/9710221 Theory +hep-th/9710222 Theory +hep-th/9710223 Theory +hep-th/9710224 Theory +hep-th/9710227 Theory +hep-th/9710228 Theory +hep-th/9710229 Theory +hep-th/9710230 Theory +hep-th/9710231 Theory +hep-th/9710233 Theory +hep-th/9710235 Theory +hep-th/9710237 Theory +hep-th/9710238 Theory +hep-th/9710239 Theory +hep-th/9710247 Theory +hep-th/9710248 Theory +hep-th/9710249 Theory +hep-th/9710250 Theory +hep-th/9711001 Theory +hep-th/9711002 Theory +hep-th/9711005 Theory +hep-th/9711006 Theory +hep-th/9711007 Theory +hep-th/9711009 Theory +hep-th/9711010 Theory +hep-th/9711011 Theory +hep-th/9711012 Theory +hep-th/9711015 Theory +hep-th/9711016 Theory +hep-th/9711017 Theory +hep-th/9711023 Theory +hep-th/9711024 Theory +hep-th/9711026 Theory +hep-th/9711028 Theory +hep-th/9711030 Theory +hep-th/9711031 Theory +hep-th/9711034 Theory +hep-th/9711038 Theory +hep-th/9711039 Theory +hep-th/9711040 Theory +hep-th/9711043 Theory +hep-th/9711044 Theory +hep-th/9711045 Theory +hep-th/9711046 Theory +hep-th/9711047 Theory +hep-th/9711052 Theory +hep-th/9711055 Theory +hep-th/9711057 Theory +hep-th/9711059 Theory +hep-th/9711060 Theory +hep-th/9711061 Theory +hep-th/9711064 Theory +hep-th/9711066 Theory +hep-th/9711072 Theory +hep-th/9711073 Theory +hep-th/9711074 Theory +hep-th/9711077 Theory +hep-th/9711079 Theory +hep-th/9711082 Theory +hep-th/9711088 Theory +hep-th/9711090 Theory +hep-th/9711091 Theory +hep-th/9711094 Theory +hep-th/9711095 Theory +hep-th/9711096 Theory +hep-th/9711098 Theory +hep-th/9711099 Theory +hep-th/9711100 Theory +hep-th/9711105 Theory +hep-th/9711106 Theory +hep-th/9711109 Theory +hep-th/9711110 Theory +hep-th/9711111 Theory +hep-th/9711113 Theory +hep-th/9711117 Theory +hep-th/9711119 Theory +hep-th/9711120 Theory +hep-th/9711124 Theory +hep-th/9711125 Theory +hep-th/9711127 Theory +hep-th/9711128 Theory +hep-th/9711129 Theory +hep-th/9711130 Theory +hep-th/9711131 Theory +hep-th/9711132 Theory +hep-th/9711135 Theory +hep-th/9711138 Theory +hep-th/9711139 Theory +hep-th/9711145 Theory +hep-th/9711146 Theory +hep-th/9711150 Theory +hep-th/9711151 Theory +hep-th/9711153 Theory +hep-th/9711154 Theory +hep-th/9711155 Theory +hep-th/9711156 Theory +hep-th/9711158 Theory +hep-th/9711160 Theory +hep-th/9711161 Theory +hep-th/9711164 Theory +hep-th/9711172 Theory +hep-th/9711175 Theory +hep-th/9711177 Theory +hep-th/9711180 Theory +hep-th/9711184 Theory +hep-th/9711185 Theory +hep-th/9711187 Theory +hep-th/9711189 Theory +hep-th/9711194 Theory +hep-th/9711196 Theory +hep-th/9711199 Theory +hep-th/9711202 Theory +hep-th/9711203 Theory +hep-th/9712001 Theory +hep-th/9712005 Theory +hep-th/9712006 Theory +hep-th/9712008 Theory +hep-th/9712010 Theory +hep-th/9712011 Theory +hep-th/9712012 Theory +hep-th/9712013 Theory +hep-th/9712017 Theory +hep-th/9712018 Theory +hep-th/9712019 Theory +hep-th/9712021 Theory +hep-th/9712022 Theory +hep-th/9712026 Theory +hep-th/9712030 Theory +hep-th/9712033 Theory +hep-th/9712038 Theory +hep-th/9712039 Theory +hep-th/9712040 Theory +hep-th/9712044 Theory +hep-th/9712053 Theory +hep-th/9712054 Theory +hep-th/9712058 Theory +hep-th/9712059 Theory +hep-th/9712061 Theory +hep-th/9712062 Theory +hep-th/9712063 Theory +hep-th/9712065 Theory +hep-th/9712068 Theory +hep-th/9712070 Theory +hep-th/9712077 Theory +hep-th/9712081 Theory +hep-th/9712085 Theory +hep-th/9712089 Theory +hep-th/9712090 Theory +hep-th/9712094 Theory +hep-th/9712096 Theory +hep-th/9712099 Theory +hep-th/9712101 Theory +hep-th/9712108 Theory +hep-th/9712111 Theory +hep-th/9712115 Theory +hep-th/9712116 Theory +hep-th/9712120 Theory +hep-th/9712122 Theory +hep-th/9712124 Theory +hep-th/9712125 Theory +hep-th/9712126 Theory +hep-th/9712129 Theory +hep-th/9712136 Theory +hep-th/9712137 Theory +hep-th/9712138 Theory +hep-th/9712140 Theory +hep-th/9712144 Theory +hep-th/9712145 Theory +hep-th/9712146 Theory +hep-th/9712149 Theory +hep-th/9712150 Theory +hep-th/9712151 Theory +hep-th/9712153 Theory +hep-th/9712161 Theory +hep-th/9712165 Theory +hep-th/9712169 Theory +hep-th/9712172 Theory +hep-th/9712174 Theory +hep-th/9712176 Theory +hep-th/9712177 Theory +hep-th/9712179 Theory +hep-th/9712180 Theory +hep-th/9712181 Theory +hep-th/9712182 Theory +hep-th/9712187 Theory +hep-th/9712193 Theory +hep-th/9712195 Theory +hep-th/9712197 Theory +hep-th/9712200 Theory +hep-th/9712203 Theory +hep-th/9712204 Theory +hep-th/9712210 Theory +hep-th/9712211 Theory +hep-th/9712213 Theory +hep-th/9712214 Theory +hep-th/9712218 Theory +hep-th/9712220 Theory +hep-th/9712227 Theory +hep-th/9712228 Theory +hep-th/9712232 Theory +hep-th/9712236 Theory +hep-th/9712240 Theory +hep-th/9712241 Theory +hep-th/9712242 Theory +hep-th/9712246 Theory +hep-th/9712247 Theory +hep-th/9712248 Theory +hep-th/9712249 Theory +hep-th/9712250 Theory +hep-th/9712251 Theory +hep-th/9712256 Theory +hep-th/9712257 Theory +hep-th/9712258 Theory +math/9605233 Number Theory +math/9704209 Functional Analysis +math/9708214 Number Theory +math/9709221 +math/9710210 Dynamical Systems +mtrl-th/9601001 Materials Science +mtrl-th/9601002 Materials Science +mtrl-th/9602001 Materials Science +mtrl-th/9602002 Materials Science +mtrl-th/9602004 Materials Science +mtrl-th/9603002 Materials Science +mtrl-th/9603003 Materials Science +mtrl-th/9603004 Materials Science +mtrl-th/9603005 Materials Science +mtrl-th/9603006 Materials Science +mtrl-th/9603007 Materials Science +mtrl-th/9603008 Materials Science +mtrl-th/9604001 Materials Science +mtrl-th/9604003 Materials Science +mtrl-th/9604004 Materials Science +mtrl-th/9604005 Materials Science +mtrl-th/9604006 Materials Science +mtrl-th/9604007 Materials Science +mtrl-th/9604008 Materials Science +mtrl-th/9605002 Materials Science +mtrl-th/9606001 Materials Science +mtrl-th/9606003 Materials Science +mtrl-th/9606004 Materials Science +mtrl-th/9606005 Materials Science +mtrl-th/9607001 Materials Science +mtrl-th/9607002 Materials Science +mtrl-th/9607003 Materials Science +mtrl-th/9607004 Materials Science +mtrl-th/9607005 Materials Science +mtrl-th/9607006 Materials Science +mtrl-th/9607007 Materials Science +mtrl-th/9607009 Materials Science +mtrl-th/9607010 Materials Science +mtrl-th/9607013 Materials Science +mtrl-th/9608001 Materials Science +mtrl-th/9608002 Materials Science +mtrl-th/9608003 Materials Science +mtrl-th/9608006 Materials Science +mtrl-th/9608007 Materials Science +mtrl-th/9608008 Materials Science +mtrl-th/9609001 Materials Science +mtrl-th/9609003 Materials Science +mtrl-th/9609004 Materials Science +mtrl-th/9609005 Materials Science +mtrl-th/9609007 Materials Science +mtrl-th/9609008 Materials Science +mtrl-th/9609012 Materials Science +nucl-ex/9602002 +nucl-ex/9605004 +nucl-ex/9606001 +nucl-ex/9607001 +nucl-ex/9607006 +nucl-ex/9607007 +nucl-ex/9607008 +nucl-ex/9607011 +nucl-ex/9608003 +nucl-ex/9608004 +nucl-ex/9609001 +nucl-ex/9609003 +nucl-ex/9609004 +nucl-ex/9610007 +nucl-ex/9612004 +nucl-ex/9702002 +nucl-ex/9702004 +nucl-ex/9703001 +nucl-ex/9704007 +nucl-ex/9704009 +nucl-ex/9707005 +nucl-ex/9707007 +nucl-ex/9709004 +nucl-ex/9710003 +nucl-ex/9711006 +nucl-ex/9712001 +nucl-ex/9712003 +nucl-ex/9712006 +nucl-th/9601001 +nucl-th/9601002 +nucl-th/9601010 +nucl-th/9601011 +nucl-th/9601015 +nucl-th/9601017 +nucl-th/9601018 +nucl-th/9601023 +nucl-th/9601026 +nucl-th/9601027 +nucl-th/9601032 +nucl-th/9601033 +nucl-th/9601037 +nucl-th/9601038 +nucl-th/9601039 +nucl-th/9601042 +nucl-th/9601047 +nucl-th/9602006 +nucl-th/9602008 +nucl-th/9602010 +nucl-th/9602011 +nucl-th/9602014 +nucl-th/9602015 +nucl-th/9602016 +nucl-th/9602017 +nucl-th/9602020 +nucl-th/9602025 +nucl-th/9602027 +nucl-th/9602032 +nucl-th/9602033 +nucl-th/9602034 +nucl-th/9602035 +nucl-th/9602037 +nucl-th/9602040 +nucl-th/9602043 +nucl-th/9603001 +nucl-th/9603005 +nucl-th/9603010 +nucl-th/9603014 +nucl-th/9603016 +nucl-th/9603026 +nucl-th/9603029 +nucl-th/9603037 +nucl-th/9603040 +nucl-th/9603042 +nucl-th/9603043 +nucl-th/9604001 +nucl-th/9604003 +nucl-th/9604004 +nucl-th/9604010 +nucl-th/9604013 +nucl-th/9604014 +nucl-th/9604015 +nucl-th/9604017 +nucl-th/9604023 +nucl-th/9604024 +nucl-th/9604026 +nucl-th/9604028 +nucl-th/9604032 +nucl-th/9604037 +nucl-th/9604040 +nucl-th/9604042 +nucl-th/9604043 +nucl-th/9605002 +nucl-th/9605003 +nucl-th/9605007 +nucl-th/9605018 +nucl-th/9605021 +nucl-th/9605024 +nucl-th/9605029 +nucl-th/9605043 +nucl-th/9606004 +nucl-th/9606008 +nucl-th/9606011 +nucl-th/9606013 +nucl-th/9606017 +nucl-th/9606018 +nucl-th/9606023 +nucl-th/9606032 +nucl-th/9606034 +nucl-th/9606038 +nucl-th/9606043 +nucl-th/9606047 +nucl-th/9606053 +nucl-th/9606054 +nucl-th/9606055 +nucl-th/9606061 +nucl-th/9607005 +nucl-th/9607011 +nucl-th/9607012 +nucl-th/9607023 +nucl-th/9607024 +nucl-th/9607027 +nucl-th/9607032 +nucl-th/9607033 +nucl-th/9607035 +nucl-th/9607040 +nucl-th/9607042 +nucl-th/9607046 +nucl-th/9607047 +nucl-th/9607048 +nucl-th/9607052 +nucl-th/9607054 +nucl-th/9607056 +nucl-th/9607057 +nucl-th/9607058 +nucl-th/9608001 +nucl-th/9608005 +nucl-th/9608014 +nucl-th/9608015 +nucl-th/9608017 +nucl-th/9608020 +nucl-th/9608021 +nucl-th/9608024 +nucl-th/9608025 +nucl-th/9608028 +nucl-th/9608031 +nucl-th/9608033 +nucl-th/9608034 +nucl-th/9608035 +nucl-th/9608038 +nucl-th/9608041 +nucl-th/9608042 +nucl-th/9608045 +nucl-th/9608046 +nucl-th/9608057 +nucl-th/9608064 +nucl-th/9609001 +nucl-th/9609002 +nucl-th/9609006 +nucl-th/9609007 +nucl-th/9609008 +nucl-th/9609015 +nucl-th/9609017 +nucl-th/9609032 +nucl-th/9609033 +nucl-th/9609036 +nucl-th/9609040 +nucl-th/9609044 +nucl-th/9609047 +nucl-th/9609048 +nucl-th/9609051 +nucl-th/9609053 +nucl-th/9609054 +nucl-th/9609059 +nucl-th/9610001 +nucl-th/9610003 +nucl-th/9610005 +nucl-th/9610006 +nucl-th/9610008 +nucl-th/9610009 +nucl-th/9610013 +nucl-th/9610018 +nucl-th/9610021 +nucl-th/9610022 +nucl-th/9610024 +nucl-th/9610026 +nucl-th/9610031 +nucl-th/9610037 +nucl-th/9610038 +nucl-th/9610039 +nucl-th/9610044 +nucl-th/9610046 +nucl-th/9610048 +nucl-th/9610052 +nucl-th/9611003 +nucl-th/9611004 +nucl-th/9611006 +nucl-th/9611008 +nucl-th/9611011 +nucl-th/9611013 +nucl-th/9611015 +nucl-th/9611019 +nucl-th/9611023 +nucl-th/9611024 +nucl-th/9611028 +nucl-th/9611029 +nucl-th/9611032 +nucl-th/9611035 +nucl-th/9611036 +nucl-th/9611040 +nucl-th/9611044 +nucl-th/9611046 +nucl-th/9611048 +nucl-th/9611049 +nucl-th/9611050 +nucl-th/9611051 +nucl-th/9611054 +nucl-th/9611056 +nucl-th/9612003 +nucl-th/9612005 +nucl-th/9612008 +nucl-th/9612012 +nucl-th/9612014 +nucl-th/9612016 +nucl-th/9612023 +nucl-th/9612024 +nucl-th/9612026 +nucl-th/9612030 +nucl-th/9612035 +nucl-th/9612037 +nucl-th/9612040 +nucl-th/9612041 +nucl-th/9612042 +nucl-th/9612043 +nucl-th/9612045 +nucl-th/9612048 +nucl-th/9612053 +nucl-th/9612058 +nucl-th/9612059 +nucl-th/9612060 +nucl-th/9612063 +nucl-th/9612064 +nucl-th/9701001 +nucl-th/9701004 +nucl-th/9701010 +nucl-th/9701012 +nucl-th/9701015 +nucl-th/9701016 +nucl-th/9701017 +nucl-th/9701021 +nucl-th/9701022 +nucl-th/9701024 +nucl-th/9701026 +nucl-th/9701028 +nucl-th/9701030 +nucl-th/9701031 +nucl-th/9701034 +nucl-th/9701035 +nucl-th/9701036 +nucl-th/9701037 +nucl-th/9701044 +nucl-th/9701049 +nucl-th/9701057 +nucl-th/9701059 +nucl-th/9701062 +nucl-th/9701063 +nucl-th/9701066 +nucl-th/9702001 +nucl-th/9702007 +nucl-th/9702011 +nucl-th/9702012 +nucl-th/9702013 +nucl-th/9702022 +nucl-th/9702024 +nucl-th/9702026 +nucl-th/9702034 +nucl-th/9702042 +nucl-th/9702043 +nucl-th/9702049 +nucl-th/9702052 +nucl-th/9702054 +nucl-th/9703002 +nucl-th/9703005 +nucl-th/9703010 +nucl-th/9703014 +nucl-th/9703016 +nucl-th/9703017 +nucl-th/9703019 +nucl-th/9703020 +nucl-th/9703028 +nucl-th/9703029 +nucl-th/9703030 +nucl-th/9703036 +nucl-th/9703037 +nucl-th/9703042 +nucl-th/9703047 +nucl-th/9703048 +nucl-th/9703053 +nucl-th/9703054 +nucl-th/9703055 +nucl-th/9703060 +nucl-th/9704001 +nucl-th/9704002 +nucl-th/9704006 +nucl-th/9704011 +nucl-th/9704012 +nucl-th/9704013 +nucl-th/9704014 +nucl-th/9704015 +nucl-th/9704024 +nucl-th/9704025 +nucl-th/9704030 +nucl-th/9704033 +nucl-th/9704035 +nucl-th/9704048 +nucl-th/9704049 +nucl-th/9705007 +nucl-th/9705010 +nucl-th/9705012 +nucl-th/9705017 +nucl-th/9705018 +nucl-th/9705022 +nucl-th/9705023 +nucl-th/9705025 +nucl-th/9705026 +nucl-th/9705029 +nucl-th/9705035 +nucl-th/9705043 +nucl-th/9705044 +nucl-th/9705047 +nucl-th/9705051 +nucl-th/9705054 +nucl-th/9706004 +nucl-th/9706006 +nucl-th/9706008 +nucl-th/9706020 +nucl-th/9706022 +nucl-th/9706024 +nucl-th/9706025 +nucl-th/9706027 +nucl-th/9706031 +nucl-th/9706034 +nucl-th/9706035 +nucl-th/9706040 +nucl-th/9706042 +nucl-th/9706044 +nucl-th/9706045 +nucl-th/9706046 +nucl-th/9706047 +nucl-th/9706049 +nucl-th/9706053 +nucl-th/9706056 +nucl-th/9706057 +nucl-th/9706058 +nucl-th/9706061 +nucl-th/9706067 +nucl-th/9706071 +nucl-th/9706072 +nucl-th/9706076 +nucl-th/9706077 +nucl-th/9706081 +nucl-th/9707002 +nucl-th/9707004 +nucl-th/9707007 +nucl-th/9707008 +nucl-th/9707011 +nucl-th/9707012 +nucl-th/9707021 +nucl-th/9707024 +nucl-th/9707026 +nucl-th/9707027 +nucl-th/9707029 +nucl-th/9707031 +nucl-th/9707032 +nucl-th/9707037 +nucl-th/9707038 +nucl-th/9707039 +nucl-th/9707040 +nucl-th/9707041 +nucl-th/9707045 +nucl-th/9707047 +nucl-th/9707049 +nucl-th/9707051 +nucl-th/9707053 +nucl-th/9707055 +nucl-th/9707057 +nucl-th/9708003 +nucl-th/9708004 +nucl-th/9708007 +nucl-th/9708009 +nucl-th/9708012 +nucl-th/9708013 +nucl-th/9708016 +nucl-th/9708017 +nucl-th/9708019 +nucl-th/9708021 +nucl-th/9708023 +nucl-th/9708025 +nucl-th/9708030 +nucl-th/9708031 +nucl-th/9708033 +nucl-th/9708034 +nucl-th/9708038 +nucl-th/9708039 +nucl-th/9708044 +nucl-th/9708048 +nucl-th/9708052 +nucl-th/9708057 +nucl-th/9708059 +nucl-th/9709001 +nucl-th/9709002 +nucl-th/9709006 +nucl-th/9709009 +nucl-th/9709011 +nucl-th/9709016 +nucl-th/9709017 +nucl-th/9709019 +nucl-th/9709020 +nucl-th/9709036 +nucl-th/9709038 +nucl-th/9709039 +nucl-th/9709042 +nucl-th/9709044 +nucl-th/9709048 +nucl-th/9709049 +nucl-th/9709051 +nucl-th/9709052 +nucl-th/9709054 +nucl-th/9709055 +nucl-th/9709060 +nucl-th/9709063 +nucl-th/9709064 +nucl-th/9709065 +nucl-th/9709068 +nucl-th/9709069 +nucl-th/9709072 +nucl-th/9709074 +nucl-th/9710004 +nucl-th/9710012 +nucl-th/9710013 +nucl-th/9710014 +nucl-th/9710018 +nucl-th/9710019 +nucl-th/9710024 +nucl-th/9710028 +nucl-th/9710029 +nucl-th/9710035 +nucl-th/9710038 +nucl-th/9710039 +nucl-th/9710041 +nucl-th/9710042 +nucl-th/9710043 +nucl-th/9710044 +nucl-th/9710047 +nucl-th/9710052 +nucl-th/9710054 +nucl-th/9710061 +nucl-th/9710064 +nucl-th/9710070 +nucl-th/9710071 +nucl-th/9710073 +nucl-th/9710074 +nucl-th/9711001 +nucl-th/9711002 +nucl-th/9711004 +nucl-th/9711005 +nucl-th/9711009 +nucl-th/9711011 +nucl-th/9711012 +nucl-th/9711017 +nucl-th/9711020 +nucl-th/9711021 +nucl-th/9711022 +nucl-th/9711024 +nucl-th/9711025 +nucl-th/9711026 +nucl-th/9711032 +nucl-th/9711038 +nucl-th/9711039 +nucl-th/9711044 +nucl-th/9711048 +nucl-th/9711050 +nucl-th/9711054 +nucl-th/9711055 +nucl-th/9711056 +nucl-th/9711065 +nucl-th/9711067 +nucl-th/9712002 +nucl-th/9712003 +nucl-th/9712004 +nucl-th/9712005 +nucl-th/9712007 +nucl-th/9712009 +nucl-th/9712010 +nucl-th/9712012 +nucl-th/9712013 +nucl-th/9712017 +nucl-th/9712018 +nucl-th/9712019 +nucl-th/9712020 +nucl-th/9712029 +nucl-th/9712030 +nucl-th/9712032 +nucl-th/9712038 +nucl-th/9712042 +nucl-th/9712045 +nucl-th/9712046 +nucl-th/9712051 +nucl-th/9712052 +nucl-th/9712053 +nucl-th/9712055 +nucl-th/9712056 +nucl-th/9712065 +nucl-th/9712067 +nucl-th/9712070 +nucl-th/9712072 +nucl-th/9712073 +nucl-th/9712074 +nucl-th/9712075 +patt-sol/9601002 Pattern Formation and Solitons +patt-sol/9601004 Pattern Formation and Solitons +patt-sol/9602001 Pattern Formation and Solitons +patt-sol/9602002 Pattern Formation and Solitons +patt-sol/9603001 Pattern Formation and Solitons +patt-sol/9603003 Pattern Formation and Solitons +patt-sol/9603004 Pattern Formation and Solitons +patt-sol/9603005 Pattern Formation and Solitons +patt-sol/9604005 Pattern Formation and Solitons +patt-sol/9605002 Pattern Formation and Solitons +patt-sol/9605003 Pattern Formation and Solitons +patt-sol/9605004 Pattern Formation and Solitons +patt-sol/9605005 Pattern Formation and Solitons +patt-sol/9605006 Pattern Formation and Solitons +patt-sol/9605007 Pattern Formation and Solitons +patt-sol/9605008 Pattern Formation and Solitons +patt-sol/9606002 Pattern Formation and Solitons +patt-sol/9606003 Pattern Formation and Solitons +patt-sol/9606004 Pattern Formation and Solitons +patt-sol/9606005 Pattern Formation and Solitons +patt-sol/9606006 Pattern Formation and Solitons +patt-sol/9607001 Pattern Formation and Solitons +patt-sol/9607003 Pattern Formation and Solitons +patt-sol/9607004 Pattern Formation and Solitons +patt-sol/9607005 Pattern Formation and Solitons +patt-sol/9608001 Pattern Formation and Solitons +patt-sol/9608004 Pattern Formation and Solitons +patt-sol/9608005 Pattern Formation and Solitons +patt-sol/9608006 Pattern Formation and Solitons +patt-sol/9608007 Pattern Formation and Solitons +patt-sol/9608008 Pattern Formation and Solitons +patt-sol/9608010 Pattern Formation and Solitons +patt-sol/9609001 Pattern Formation and Solitons +patt-sol/9609003 Pattern Formation and Solitons +patt-sol/9610001 Pattern Formation and Solitons +patt-sol/9610002 Pattern Formation and Solitons +patt-sol/9610004 Pattern Formation and Solitons +patt-sol/9610005 Pattern Formation and Solitons +patt-sol/9610006 Pattern Formation and Solitons +patt-sol/9610007 Pattern Formation and Solitons +patt-sol/9610008 Pattern Formation and Solitons +patt-sol/9610009 Pattern Formation and Solitons +patt-sol/9611002 Pattern Formation and Solitons +patt-sol/9612002 Pattern Formation and Solitons +patt-sol/9612003 Pattern Formation and Solitons +patt-sol/9612004 Pattern Formation and Solitons +patt-sol/9701002 Pattern Formation and Solitons +patt-sol/9701003 Pattern Formation and Solitons +patt-sol/9701004 Pattern Formation and Solitons +patt-sol/9701005 Pattern Formation and Solitons +patt-sol/9701007 Pattern Formation and Solitons +patt-sol/9701008 Pattern Formation and Solitons +patt-sol/9701010 Pattern Formation and Solitons +patt-sol/9701011 Pattern Formation and Solitons +patt-sol/9702001 Pattern Formation and Solitons +patt-sol/9702002 Pattern Formation and Solitons +patt-sol/9702004 Pattern Formation and Solitons +patt-sol/9702005 Pattern Formation and Solitons +patt-sol/9703001 Pattern Formation and Solitons +patt-sol/9703002 Pattern Formation and Solitons +patt-sol/9703004 Pattern Formation and Solitons +patt-sol/9703005 Pattern Formation and Solitons +patt-sol/9703007 Pattern Formation and Solitons +patt-sol/9703008 Pattern Formation and Solitons +patt-sol/9704005 Pattern Formation and Solitons +patt-sol/9705003 Pattern Formation and Solitons +patt-sol/9705004 Pattern Formation and Solitons +patt-sol/9705005 Pattern Formation and Solitons +patt-sol/9705006 Pattern Formation and Solitons +patt-sol/9705008 Pattern Formation and Solitons +patt-sol/9705010 Pattern Formation and Solitons +patt-sol/9706001 Pattern Formation and Solitons +patt-sol/9706002 Pattern Formation and Solitons +patt-sol/9706003 Pattern Formation and Solitons +patt-sol/9706004 Pattern Formation and Solitons +patt-sol/9706005 Pattern Formation and Solitons +patt-sol/9707003 Pattern Formation and Solitons +patt-sol/9707004 Pattern Formation and Solitons +patt-sol/9707005 Pattern Formation and Solitons +patt-sol/9707006 Pattern Formation and Solitons +patt-sol/9707007 Pattern Formation and Solitons +patt-sol/9708001 Pattern Formation and Solitons +patt-sol/9708002 Pattern Formation and Solitons +patt-sol/9708004 Pattern Formation and Solitons +patt-sol/9709001 Pattern Formation and Solitons +patt-sol/9710004 Pattern Formation and Solitons +patt-sol/9710005 Pattern Formation and Solitons +patt-sol/9711001 Pattern Formation and Solitons +patt-sol/9711003 Pattern Formation and Solitons +patt-sol/9712001 Pattern Formation and Solitons +patt-sol/9712002 Pattern Formation and Solitons +patt-sol/9712003 Pattern Formation and Solitons +physics/0701250 Atomic Physics +physics/9610001 Atomic Physics +physics/9610005 Plasma Physics +physics/9610006 Plasma Physics +physics/9610010 Chemical Physics +physics/9610015 Chemical Physics +physics/9610016 General Physics +physics/9610020 Optics +physics/9610022 Chemical Physics +physics/9611002 +physics/9611009 Classical Physics +physics/9611012 Chemical Physics +physics/9611014 Biological Physics +physics/9611015 Atomic Physics +physics/9611018 Classical Physics +physics/9611020 Atomic Physics +physics/9611023 Atomic Physics +physics/9611024 Atomic Physics +physics/9611028 Atomic Physics +physics/9612001 Chemical Physics +physics/9612005 Plasma Physics +physics/9612008 Chemical Physics +physics/9612009 +physics/9612017 Plasma Physics +physics/9612019 Plasma Physics +physics/9701001 Space Physics +physics/9701002 Atomic Physics +physics/9701003 General Physics +physics/9701008 Atomic Physics +physics/9701011 +physics/9701012 Biological Physics +physics/9701014 Atomic Physics +physics/9701015 Chemical Physics +physics/9701016 +physics/9701017 Chemical Physics +physics/9701018 Plasma Physics +physics/9701020 Plasma Physics +physics/9701021 Chemical Physics +physics/9701024 Computational Physics +physics/9701025 Optics +physics/9702001 Atomic Physics +physics/9702002 Atomic Physics +physics/9702003 Atomic Physics +physics/9702004 Chemical Physics +physics/9702006 Fluid Dynamics +physics/9702007 Atomic Physics +physics/9702010 +physics/9702011 Chemical Physics +physics/9702013 +physics/9702019 +physics/9702022 Computational Physics +physics/9702023 Computational Physics +physics/9702024 Physics Education +physics/9702028 Atomic Physics +physics/9702029 +physics/9703001 Instrumentation and Detectors +physics/9703004 Instrumentation and Detectors +physics/9703008 +physics/9703009 Chemical Physics +physics/9703011 Atomic Physics +physics/9703012 Atomic Physics +physics/9703013 Atomic Physics +physics/9703015 Atomic Physics +physics/9703016 +physics/9703018 Accelerator Physics +physics/9703024 Computational Physics +physics/9703027 Atomic Physics +physics/9703031 Classical Physics +physics/9703032 Optics +physics/9704003 Atomic Physics +physics/9704005 Optics +physics/9704006 Physics Education +physics/9704008 +physics/9704009 +physics/9704010 Plasma Physics +physics/9704012 Accelerator Physics +physics/9704013 Instrumentation and Detectors +physics/9704016 Atomic Physics +physics/9704022 Popular Physics +physics/9704025 +physics/9704026 Classical Physics +physics/9704029 Chemical Physics +physics/9705002 Chemical Physics +physics/9705005 Atomic Physics +physics/9705009 Computational Physics +physics/9705010 Atomic Physics +physics/9705012 +physics/9705013 +physics/9705026 Biological Physics +physics/9705027 Optics +physics/9705029 Atomic Physics +physics/9705037 Plasma Physics +physics/9705040 +physics/9705042 Atomic Physics +physics/9706004 +physics/9706005 Fluid Dynamics +physics/9706006 +physics/9706008 Biological Physics +physics/9706010 Atomic Physics +physics/9706014 Atomic Physics +physics/9706015 Data Analysis, Statistics and Probability +physics/9706020 Optics +physics/9706026 Atomic Physics +physics/9706027 Plasma Physics +physics/9706030 Atomic and Molecular Clusters +physics/9706031 Atomic Physics +physics/9706040 Atomic and Molecular Clusters +physics/9707006 Atomic Physics +physics/9707007 +physics/9707008 Computational Physics +physics/9707009 Atomic Physics +physics/9707011 Atomic Physics +physics/9707016 Optics +physics/9707017 Chemical Physics +physics/9707019 +physics/9707022 Fluid Dynamics +physics/9707025 Atomic Physics +physics/9708003 Chemical Physics +physics/9708007 Fluid Dynamics +physics/9708009 Computational Physics +physics/9708011 Atomic Physics +physics/9708014 Computational Physics +physics/9708021 Chemical Physics +physics/9708027 +physics/9708030 General Physics +physics/9708032 Instrumentation and Detectors +physics/9708033 Instrumentation and Detectors +physics/9708034 Instrumentation and Detectors +physics/9708036 +physics/9709003 Computational Physics +physics/9709005 Chemical Physics +physics/9709007 Plasma Physics +physics/9709009 +physics/9709019 Plasma Physics +physics/9709021 Plasma Physics +physics/9709022 Plasma Physics +physics/9709023 Computational Physics +physics/9709024 Biological Physics +physics/9709026 Computational Physics +physics/9709027 Instrumentation and Detectors +physics/9709028 Atomic Physics +physics/9709030 Atomic Physics +physics/9709031 Classical Physics +physics/9709032 Atomic and Molecular Clusters +physics/9709034 Instrumentation and Detectors +physics/9709035 Instrumentation and Detectors +physics/9709039 Atomic Physics +physics/9709040 Optics +physics/9709041 Instrumentation and Detectors +physics/9709042 Chemical Physics +physics/9709043 +physics/9710005 +physics/9710008 Atomic Physics +physics/9710009 Instrumentation and Detectors +physics/9710012 Chemical Physics +physics/9710017 Computational Physics +physics/9710021 Optics +physics/9710023 Data Analysis, Statistics and Probability +physics/9710028 Computational Physics +physics/9710029 Physics Education +physics/9710033 Chemical Physics +physics/9710036 Classical Physics +physics/9710041 Chemical Physics +physics/9710042 Chemical Physics +physics/9710043 Atomic Physics +physics/9710045 Atomic Physics +physics/9710046 Atomic Physics +physics/9711002 Plasma Physics +physics/9711003 Chemical Physics +physics/9711011 Optics +physics/9711017 Classical Physics +physics/9711019 Computational Physics +physics/9711020 Chemical Physics +physics/9711026 Atomic Physics +physics/9711028 Chemical Physics +physics/9711029 Atomic Physics +physics/9711030 Atomic Physics +physics/9712001 +physics/9712009 Atomic Physics +physics/9712012 Atomic and Molecular Clusters +physics/9712014 Classical Physics +physics/9712016 +physics/9712021 Atomic Physics +physics/9712026 +physics/9712028 Atomic Physics +physics/9712029 Optics +physics/9712030 Atomic Physics +physics/9712031 Atomic Physics +physics/9712032 +physics/9712033 +physics/9712036 Chemical Physics +physics/9712037 +physics/9712040 Chemical Physics +physics/9712043 Optics +physics/9712047 General Physics +physics/9712048 +physics/9712049 General Physics +physics/9712053 Physics Education +physics/9712055 Classical Physics +plasm-ph/9602002 Plasma Physics +plasm-ph/9604002 Plasma Physics +plasm-ph/9607001 Plasma Physics +plasm-ph/9607002 Plasma Physics +plasm-ph/9608001 Plasma Physics +plasm-ph/9608002 Plasma Physics +plasm-ph/9609001 Plasma Physics +plasm-ph/9609002 Plasma Physics +q-alg/9601003 Quantum Algebra +q-alg/9601006 Quantum Algebra +q-alg/9601007 Quantum Algebra +q-alg/9601009 Quantum Algebra +q-alg/9601010 Quantum Algebra +q-alg/9601011 Quantum Algebra +q-alg/9601012 Quantum Algebra +q-alg/9601014 Quantum Algebra +q-alg/9601023 Quantum Algebra +q-alg/9601026 Quantum Algebra +q-alg/9601028 Quantum Algebra +q-alg/9601030 Quantum Algebra +q-alg/9602001 Quantum Algebra +q-alg/9602007 Quantum Algebra +q-alg/9602008 Quantum Algebra +q-alg/9602011 Quantum Algebra +q-alg/9602014 Quantum Algebra +q-alg/9602015 Quantum Algebra +q-alg/9602020 Quantum Algebra +q-alg/9602022 Quantum Algebra +q-alg/9602029 Quantum Algebra +q-alg/9602030 Quantum Algebra +q-alg/9602035 Quantum Algebra +q-alg/9602036 Quantum Algebra +q-alg/9603008 Quantum Algebra +q-alg/9603009 Quantum Algebra +q-alg/9603010 Quantum Algebra +q-alg/9603012 Quantum Algebra +q-alg/9603017 Quantum Algebra +q-alg/9603023 Quantum Algebra +q-alg/9603032 Quantum Algebra +q-alg/9604002 Quantum Algebra +q-alg/9604009 Quantum Algebra +q-alg/9604011 Quantum Algebra +q-alg/9604012 Quantum Algebra +q-alg/9604015 Quantum Algebra +q-alg/9604019 Quantum Algebra +q-alg/9605011 Quantum Algebra +q-alg/9605015 Quantum Algebra +q-alg/9605018 Quantum Algebra +q-alg/9605021 Quantum Algebra +q-alg/9605022 Quantum Algebra +q-alg/9605024 Quantum Algebra +q-alg/9605025 Quantum Algebra +q-alg/9605031 Quantum Algebra +q-alg/9605033 Quantum Algebra +q-alg/9605047 Quantum Algebra +q-alg/9606002 Quantum Algebra +q-alg/9606004 Quantum Algebra +q-alg/9606010 Quantum Algebra +q-alg/9606012 Quantum Algebra +q-alg/9606013 Quantum Algebra +q-alg/9606014 Quantum Algebra +q-alg/9606018 Quantum Algebra +q-alg/9606022 Quantum Algebra +q-alg/9607002 Quantum Algebra +q-alg/9607009 Quantum Algebra +q-alg/9607012 Quantum Algebra +q-alg/9607027 Quantum Algebra +q-alg/9608003 Quantum Algebra +q-alg/9608004 Quantum Algebra +q-alg/9608010 Quantum Algebra +q-alg/9608011 Quantum Algebra +q-alg/9608015 Quantum Algebra +q-alg/9608017 Quantum Algebra +q-alg/9609001 Quantum Algebra +q-alg/9609002 Quantum Algebra +q-alg/9609005 Quantum Algebra +q-alg/9609006 Quantum Algebra +q-alg/9609008 Quantum Algebra +q-alg/9609011 Quantum Algebra +q-alg/9609016 Quantum Algebra +q-alg/9609017 Quantum Algebra +q-alg/9609019 Quantum Algebra +q-alg/9609020 Quantum Algebra +q-alg/9609023 Quantum Algebra +q-alg/9609025 Quantum Algebra +q-alg/9609026 Quantum Algebra +q-alg/9609028 Quantum Algebra +q-alg/9609030 Quantum Algebra +q-alg/9609032 Quantum Algebra +q-alg/9609033 Quantum Algebra +q-alg/9610002 Quantum Algebra +q-alg/9610005 Quantum Algebra +q-alg/9610007 Quantum Algebra +q-alg/9610010 Quantum Algebra +q-alg/9610011 Quantum Algebra +q-alg/9610021 Quantum Algebra +q-alg/9610025 Quantum Algebra +q-alg/9610027 Quantum Algebra +q-alg/9610031 Quantum Algebra +q-alg/9611009 Quantum Algebra +q-alg/9611010 Quantum Algebra +q-alg/9611013 Quantum Algebra +q-alg/9611020 Quantum Algebra +q-alg/9611031 Quantum Algebra +q-alg/9612006 Quantum Algebra +q-alg/9612016 Quantum Algebra +q-alg/9612020 Quantum Algebra +q-alg/9612024 Quantum Algebra +q-alg/9612031 Quantum Algebra +q-alg/9612032 Quantum Algebra +q-alg/9612033 Quantum Algebra +q-alg/9701011 Quantum Algebra +q-alg/9701014 Quantum Algebra +q-alg/9701016 Quantum Algebra +q-alg/9701018 Quantum Algebra +q-alg/9701022 Quantum Algebra +q-alg/9701026 Quantum Algebra +q-alg/9701029 Quantum Algebra +q-alg/9701030 Quantum Algebra +q-alg/9701031 Quantum Algebra +q-alg/9701037 Quantum Algebra +q-alg/9702001 Quantum Algebra +q-alg/9702002 Quantum Algebra +q-alg/9702006 Quantum Algebra +q-alg/9702008 Quantum Algebra +q-alg/9702016 Quantum Algebra +q-alg/9702018 Quantum Algebra +q-alg/9702020 Quantum Algebra +q-alg/9702023 Quantum Algebra +q-alg/9702028 Quantum Algebra +q-alg/9702029 Quantum Algebra +q-alg/9702030 Quantum Algebra +q-alg/9703008 Quantum Algebra +q-alg/9703011 Quantum Algebra +q-alg/9703012 Quantum Algebra +q-alg/9703014 Quantum Algebra +q-alg/9703016 Quantum Algebra +q-alg/9703018 Quantum Algebra +q-alg/9703020 Quantum Algebra +q-alg/9703023 Quantum Algebra +q-alg/9703027 Quantum Algebra +q-alg/9703032 Quantum Algebra +q-alg/9703034 Quantum Algebra +q-alg/9703038 Quantum Algebra +q-alg/9703039 Quantum Algebra +q-alg/9703040 Quantum Algebra +q-alg/9703046 Quantum Algebra +q-alg/9704002 Quantum Algebra +q-alg/9704005 Quantum Algebra +q-alg/9704010 Quantum Algebra +q-alg/9704011 Quantum Algebra +q-alg/9704013 Quantum Algebra +q-alg/9704015 Quantum Algebra +q-alg/9704018 Quantum Algebra +q-alg/9705018 Quantum Algebra +q-alg/9705024 Quantum Algebra +q-alg/9705028 Quantum Algebra +q-alg/9706001 Quantum Algebra +q-alg/9706011 Quantum Algebra +q-alg/9706013 Quantum Algebra +q-alg/9706014 Quantum Algebra +q-alg/9706016 Quantum Algebra +q-alg/9706019 Quantum Algebra +q-alg/9706029 Quantum Algebra +q-alg/9706031 Quantum Algebra +q-alg/9706033 Quantum Algebra +q-alg/9707002 Quantum Algebra +q-alg/9707006 Quantum Algebra +q-alg/9707007 Quantum Algebra +q-alg/9707008 Quantum Algebra +q-alg/9707011 Quantum Algebra +q-alg/9707013 Quantum Algebra +q-alg/9707015 Quantum Algebra +q-alg/9707023 Quantum Algebra +q-alg/9707026 Quantum Algebra +q-alg/9707030 Quantum Algebra +q-alg/9707031 Quantum Algebra +q-alg/9707034 Quantum Algebra +q-alg/9708003 Quantum Algebra +q-alg/9708008 Quantum Algebra +q-alg/9708011 Quantum Algebra +q-alg/9708013 Quantum Algebra +q-alg/9708014 Quantum Algebra +q-alg/9708015 Quantum Algebra +q-alg/9708016 Quantum Algebra +q-alg/9708020 Quantum Algebra +q-alg/9708022 Quantum Algebra +q-alg/9708024 Quantum Algebra +q-alg/9708025 Quantum Algebra +q-alg/9708030 Quantum Algebra +q-alg/9709003 Quantum Algebra +q-alg/9709004 Quantum Algebra +q-alg/9709005 Quantum Algebra +q-alg/9709006 Quantum Algebra +q-alg/9709007 Quantum Algebra +q-alg/9709009 Quantum Algebra +q-alg/9709012 Quantum Algebra +q-alg/9709013 Quantum Algebra +q-alg/9709022 Quantum Algebra +q-alg/9709023 Quantum Algebra +q-alg/9709024 Quantum Algebra +q-alg/9709028 Quantum Algebra +q-alg/9710006 Quantum Algebra +q-alg/9710015 Quantum Algebra +q-alg/9710020 Quantum Algebra +q-alg/9710022 Quantum Algebra +q-alg/9710026 Quantum Algebra +q-alg/9710028 Quantum Algebra +q-alg/9710030 Quantum Algebra +q-alg/9710034 Quantum Algebra +q-alg/9711001 Quantum Algebra +q-alg/9711002 Quantum Algebra +q-alg/9711012 Quantum Algebra +q-alg/9711014 Quantum Algebra +q-alg/9711022 Quantum Algebra +q-alg/9712006 Quantum Algebra +q-alg/9712008 Quantum Algebra +q-alg/9712017 Quantum Algebra +q-alg/9712022 Quantum Algebra +q-alg/9712026 Quantum Algebra +q-alg/9712035 Quantum Algebra +q-alg/9712042 Quantum Algebra +quant-ph/9601001 +quant-ph/9601005 +quant-ph/9601007 +quant-ph/9601010 +quant-ph/9601016 +quant-ph/9601017 +quant-ph/9601018 +quant-ph/9601019 +quant-ph/9601021 +quant-ph/9601026 +quant-ph/9601029 +quant-ph/9601030 +quant-ph/9602001 +quant-ph/9602004 +quant-ph/9602011 +quant-ph/9602012 +quant-ph/9602013 +quant-ph/9602015 +quant-ph/9602017 +quant-ph/9602023 +quant-ph/9603002 +quant-ph/9603008 +quant-ph/9603009 +quant-ph/9603016 +quant-ph/9603020 +quant-ph/9603021 +quant-ph/9603022 +quant-ph/9603023 +quant-ph/9603026 +quant-ph/9603030 +quant-ph/9603031 +quant-ph/9604002 +quant-ph/9604003 +quant-ph/9604004 +quant-ph/9604009 +quant-ph/9604010 +quant-ph/9604011 +quant-ph/9604015 +quant-ph/9604016 +quant-ph/9604018 +quant-ph/9604020 +quant-ph/9604021 +quant-ph/9604022 +quant-ph/9604026 +quant-ph/9604031 +quant-ph/9604033 +quant-ph/9604036 +quant-ph/9604038 +quant-ph/9604040 +quant-ph/9605006 +quant-ph/9605008 +quant-ph/9605012 +quant-ph/9605013 +quant-ph/9605022 +quant-ph/9605027 +quant-ph/9605028 +quant-ph/9605031 +quant-ph/9605033 +quant-ph/9605035 +quant-ph/9605036 +quant-ph/9605037 +quant-ph/9605038 +quant-ph/9605039 +quant-ph/9605044 +quant-ph/9605046 +quant-ph/9606002 +quant-ph/9606004 +quant-ph/9606008 +quant-ph/9606014 +quant-ph/9606015 +quant-ph/9606016 +quant-ph/9606020 +quant-ph/9606021 +quant-ph/9606022 +quant-ph/9606024 +quant-ph/9606025 +quant-ph/9606027 +quant-ph/9606029 +quant-ph/9606030 +quant-ph/9606032 +quant-ph/9606034 +quant-ph/9606035 +quant-ph/9607004 +quant-ph/9607005 +quant-ph/9607006 +quant-ph/9607007 +quant-ph/9607011 +quant-ph/9607015 +quant-ph/9607018 +quant-ph/9607021 +quant-ph/9607028 +quant-ph/9607030 +quant-ph/9608001 +quant-ph/9608004 +quant-ph/9608009 +quant-ph/9608011 +quant-ph/9608015 +quant-ph/9608019 +quant-ph/9608021 +quant-ph/9608022 +quant-ph/9608034 +quant-ph/9608035 +quant-ph/9608038 +quant-ph/9608044 +quant-ph/9608047 +quant-ph/9609002 +quant-ph/9609004 +quant-ph/9609005 +quant-ph/9609011 +quant-ph/9609012 +quant-ph/9609022 +quant-ph/9609025 +quant-ph/9609026 +quant-ph/9610002 +quant-ph/9610006 +quant-ph/9610015 +quant-ph/9610016 +quant-ph/9610023 +quant-ph/9610028 +quant-ph/9610031 +quant-ph/9610032 +quant-ph/9610035 +quant-ph/9610039 +quant-ph/9610042 +quant-ph/9610043 +quant-ph/9610044 +quant-ph/9610046 +quant-ph/9611005 +quant-ph/9611008 +quant-ph/9611013 +quant-ph/9611015 +quant-ph/9611016 +quant-ph/9611017 +quant-ph/9611022 +quant-ph/9611024 +quant-ph/9611026 +quant-ph/9611031 +quant-ph/9611034 +quant-ph/9611037 +quant-ph/9611038 +quant-ph/9611041 +quant-ph/9611042 +quant-ph/9611043 +quant-ph/9611044 +quant-ph/9611045 +quant-ph/9611047 +quant-ph/9611050 +quant-ph/9611051 +quant-ph/9611053 +quant-ph/9611054 +quant-ph/9612003 +quant-ph/9612005 +quant-ph/9612007 +quant-ph/9612008 +quant-ph/9612009 +quant-ph/9612011 +quant-ph/9612013 +quant-ph/9612027 +quant-ph/9612030 +quant-ph/9612034 +quant-ph/9612036 +quant-ph/9612042 +quant-ph/9612044 +quant-ph/9612045 +quant-ph/9612046 +quant-ph/9612047 +quant-ph/9612048 +quant-ph/9612050 +quant-ph/9701005 +quant-ph/9701007 +quant-ph/9701008 +quant-ph/9701009 +quant-ph/9701010 +quant-ph/9701012 +quant-ph/9701013 +quant-ph/9701016 +quant-ph/9701019 +quant-ph/9701025 +quant-ph/9701028 +quant-ph/9701032 +quant-ph/9701034 +quant-ph/9701037 +quant-ph/9702002 +quant-ph/9702006 +quant-ph/9702009 +quant-ph/9702011 +quant-ph/9702014 +quant-ph/9702015 +quant-ph/9702017 +quant-ph/9702021 +quant-ph/9702022 +quant-ph/9702024 +quant-ph/9702033 +quant-ph/9702035 +quant-ph/9702049 +quant-ph/9702051 +quant-ph/9702053 +quant-ph/9702058 +quant-ph/9703004 +quant-ph/9703009 +quant-ph/9703011 +quant-ph/9703012 +quant-ph/9703014 +quant-ph/9703015 +quant-ph/9703019 +quant-ph/9703022 +quant-ph/9703023 +quant-ph/9703025 +quant-ph/9703029 +quant-ph/9703032 +quant-ph/9703034 +quant-ph/9703037 +quant-ph/9703038 +quant-ph/9703039 +quant-ph/9703044 +quant-ph/9703046 +quant-ph/9703049 +quant-ph/9703051 +quant-ph/9703052 +quant-ph/9703054 +quant-ph/9704003 +quant-ph/9704009 +quant-ph/9704016 +quant-ph/9704018 +quant-ph/9704022 +quant-ph/9704023 +quant-ph/9704026 +quant-ph/9704030 +quant-ph/9704033 +quant-ph/9704034 +quant-ph/9704035 +quant-ph/9704036 +quant-ph/9704037 +quant-ph/9704038 +quant-ph/9705001 +quant-ph/9705003 +quant-ph/9705008 +quant-ph/9705009 +quant-ph/9705010 +quant-ph/9705011 +quant-ph/9705015 +quant-ph/9705019 +quant-ph/9705021 +quant-ph/9705022 +quant-ph/9705027 +quant-ph/9705028 +quant-ph/9705029 +quant-ph/9705031 +quant-ph/9705032 +quant-ph/9705034 +quant-ph/9705038 +quant-ph/9705042 +quant-ph/9705043 +quant-ph/9706001 +quant-ph/9706002 +quant-ph/9706005 +quant-ph/9706006 +quant-ph/9706007 +quant-ph/9706009 +quant-ph/9706010 +quant-ph/9706014 +quant-ph/9706016 +quant-ph/9706018 +quant-ph/9706019 +quant-ph/9706020 +quant-ph/9706022 +quant-ph/9706026 +quant-ph/9706030 +quant-ph/9706031 +quant-ph/9706034 +quant-ph/9706038 +quant-ph/9706045 +quant-ph/9706047 +quant-ph/9706048 +quant-ph/9706050 +quant-ph/9706053 +quant-ph/9706061 +quant-ph/9706062 +quant-ph/9706064 +quant-ph/9707001 +quant-ph/9707006 +quant-ph/9707009 +quant-ph/9707010 +quant-ph/9707012 +quant-ph/9707013 +quant-ph/9707014 +quant-ph/9707015 +quant-ph/9707018 +quant-ph/9707019 +quant-ph/9707021 +quant-ph/9707026 +quant-ph/9707028 +quant-ph/9707033 +quant-ph/9707037 +quant-ph/9707040 +quant-ph/9707042 +quant-ph/9707043 +quant-ph/9707046 +quant-ph/9707047 +quant-ph/9707048 +quant-ph/9707050 +quant-ph/9707060 +quant-ph/9708001 +quant-ph/9708003 +quant-ph/9708008 +quant-ph/9708010 +quant-ph/9708016 +quant-ph/9708025 +quant-ph/9708026 +quant-ph/9708028 +quant-ph/9708029 +quant-ph/9708030 +quant-ph/9708032 +quant-ph/9708033 +quant-ph/9708034 +quant-ph/9708039 +quant-ph/9708040 +quant-ph/9708041 +quant-ph/9708043 +quant-ph/9708047 +quant-ph/9708048 +quant-ph/9708052 +quant-ph/9708053 +quant-ph/9708055 +quant-ph/9708056 +quant-ph/9709001 +quant-ph/9709003 +quant-ph/9709005 +quant-ph/9709006 +quant-ph/9709007 +quant-ph/9709008 +quant-ph/9709011 +quant-ph/9709013 +quant-ph/9709014 +quant-ph/9709019 +quant-ph/9709022 +quant-ph/9709025 +quant-ph/9709027 +quant-ph/9709028 +quant-ph/9709031 +quant-ph/9709036 +quant-ph/9709046 +quant-ph/9709048 +quant-ph/9709050 +quant-ph/9709052 +quant-ph/9709056 +quant-ph/9709057 +quant-ph/9709058 +quant-ph/9710004 +quant-ph/9710013 +quant-ph/9710018 +quant-ph/9710021 +quant-ph/9710026 +quant-ph/9710038 +quant-ph/9710043 +quant-ph/9710044 +quant-ph/9710049 +quant-ph/9710055 +quant-ph/9710056 +quant-ph/9710058 +quant-ph/9710059 +quant-ph/9710064 +quant-ph/9711014 +quant-ph/9711019 +quant-ph/9711020 +quant-ph/9711021 +quant-ph/9711022 +quant-ph/9711031 +quant-ph/9711034 +quant-ph/9711039 +quant-ph/9711041 +quant-ph/9711042 +quant-ph/9711052 +quant-ph/9711053 +quant-ph/9711057 +quant-ph/9711065 +quant-ph/9711067 +quant-ph/9711068 +quant-ph/9711070 +quant-ph/9711071 +quant-ph/9712005 +quant-ph/9712008 +quant-ph/9712015 +quant-ph/9712018 +quant-ph/9712020 +quant-ph/9712021 +quant-ph/9712026 +quant-ph/9712028 +quant-ph/9712029 +quant-ph/9712035 +quant-ph/9712041 +quant-ph/9712044 +quant-ph/9712045 +quant-ph/9712055 +quant-ph/9712056 +solv-int/9601001 Exactly Solvable and Integrable Systems +solv-int/9601004 Exactly Solvable and Integrable Systems +solv-int/9601005 Exactly Solvable and Integrable Systems +solv-int/9601006 Exactly Solvable and Integrable Systems +solv-int/9602001 Exactly Solvable and Integrable Systems +solv-int/9603002 Exactly Solvable and Integrable Systems +solv-int/9603003 Exactly Solvable and Integrable Systems +solv-int/9603004 Exactly Solvable and Integrable Systems +solv-int/9603006 Exactly Solvable and Integrable Systems +solv-int/9603007 Exactly Solvable and Integrable Systems +solv-int/9603008 Exactly Solvable and Integrable Systems +solv-int/9603009 Exactly Solvable and Integrable Systems +solv-int/9604001 Exactly Solvable and Integrable Systems +solv-int/9604003 Exactly Solvable and Integrable Systems +solv-int/9605001 Exactly Solvable and Integrable Systems +solv-int/9605002 Exactly Solvable and Integrable Systems +solv-int/9605006 Exactly Solvable and Integrable Systems +solv-int/9605008 Exactly Solvable and Integrable Systems +solv-int/9605010 Exactly Solvable and Integrable Systems +solv-int/9606007 Exactly Solvable and Integrable Systems +solv-int/9606010 Exactly Solvable and Integrable Systems +solv-int/9607002 Exactly Solvable and Integrable Systems +solv-int/9607003 Exactly Solvable and Integrable Systems +solv-int/9607007 Exactly Solvable and Integrable Systems +solv-int/9607008 Exactly Solvable and Integrable Systems +solv-int/9608003 Exactly Solvable and Integrable Systems +solv-int/9608004 Exactly Solvable and Integrable Systems +solv-int/9608007 Exactly Solvable and Integrable Systems +solv-int/9608009 Exactly Solvable and Integrable Systems +solv-int/9609002 Exactly Solvable and Integrable Systems +solv-int/9609003 Exactly Solvable and Integrable Systems +solv-int/9609007 Exactly Solvable and Integrable Systems +solv-int/9609008 Exactly Solvable and Integrable Systems +solv-int/9610001 Exactly Solvable and Integrable Systems +solv-int/9610004 Exactly Solvable and Integrable Systems +solv-int/9610007 Exactly Solvable and Integrable Systems +solv-int/9610008 Exactly Solvable and Integrable Systems +solv-int/9610011 Exactly Solvable and Integrable Systems +solv-int/9611002 Exactly Solvable and Integrable Systems +solv-int/9611004 Exactly Solvable and Integrable Systems +solv-int/9611005 Exactly Solvable and Integrable Systems +solv-int/9611006 Exactly Solvable and Integrable Systems +solv-int/9611007 Exactly Solvable and Integrable Systems +solv-int/9612002 Exactly Solvable and Integrable Systems +solv-int/9612003 Exactly Solvable and Integrable Systems +solv-int/9612005 Exactly Solvable and Integrable Systems +solv-int/9612006 Exactly Solvable and Integrable Systems +solv-int/9612007 Exactly Solvable and Integrable Systems +solv-int/9612008 Exactly Solvable and Integrable Systems +solv-int/9612009 Exactly Solvable and Integrable Systems +solv-int/9701001 Exactly Solvable and Integrable Systems +solv-int/9701004 Exactly Solvable and Integrable Systems +solv-int/9701007 Exactly Solvable and Integrable Systems +solv-int/9701008 Exactly Solvable and Integrable Systems +solv-int/9701009 Exactly Solvable and Integrable Systems +solv-int/9701010 Exactly Solvable and Integrable Systems +solv-int/9701011 Exactly Solvable and Integrable Systems +solv-int/9701013 Exactly Solvable and Integrable Systems +solv-int/9701015 Exactly Solvable and Integrable Systems +solv-int/9701017 Exactly Solvable and Integrable Systems +solv-int/9701019 Exactly Solvable and Integrable Systems +solv-int/9701022 Exactly Solvable and Integrable Systems +solv-int/9702001 Exactly Solvable and Integrable Systems +solv-int/9702002 Exactly Solvable and Integrable Systems +solv-int/9702006 Exactly Solvable and Integrable Systems +solv-int/9703005 Exactly Solvable and Integrable Systems +solv-int/9703008 Exactly Solvable and Integrable Systems +solv-int/9703012 Exactly Solvable and Integrable Systems +solv-int/9703013 Exactly Solvable and Integrable Systems +solv-int/9704003 Exactly Solvable and Integrable Systems +solv-int/9704006 Exactly Solvable and Integrable Systems +solv-int/9704008 Exactly Solvable and Integrable Systems +solv-int/9704012 Exactly Solvable and Integrable Systems +solv-int/9704015 Exactly Solvable and Integrable Systems +solv-int/9704016 Exactly Solvable and Integrable Systems +solv-int/9705001 Exactly Solvable and Integrable Systems +solv-int/9705007 Exactly Solvable and Integrable Systems +solv-int/9705009 Exactly Solvable and Integrable Systems +solv-int/9705011 Exactly Solvable and Integrable Systems +solv-int/9705013 Exactly Solvable and Integrable Systems +solv-int/9705014 Exactly Solvable and Integrable Systems +solv-int/9705017 Exactly Solvable and Integrable Systems +solv-int/9706004 Exactly Solvable and Integrable Systems +solv-int/9706005 Exactly Solvable and Integrable Systems +solv-int/9707003 Exactly Solvable and Integrable Systems +solv-int/9707005 Exactly Solvable and Integrable Systems +solv-int/9707007 Exactly Solvable and Integrable Systems +solv-int/9707008 Exactly Solvable and Integrable Systems +solv-int/9707009 Exactly Solvable and Integrable Systems +solv-int/9707014 Exactly Solvable and Integrable Systems +solv-int/9707017 Exactly Solvable and Integrable Systems +solv-int/9708001 Exactly Solvable and Integrable Systems +solv-int/9708002 Exactly Solvable and Integrable Systems +solv-int/9708005 Exactly Solvable and Integrable Systems +solv-int/9708006 Exactly Solvable and Integrable Systems +solv-int/9708008 Exactly Solvable and Integrable Systems +solv-int/9708009 Exactly Solvable and Integrable Systems +solv-int/9708010 Exactly Solvable and Integrable Systems +solv-int/9709002 Exactly Solvable and Integrable Systems +solv-int/9709003 Exactly Solvable and Integrable Systems +solv-int/9709004 Exactly Solvable and Integrable Systems +solv-int/9709007 Exactly Solvable and Integrable Systems +solv-int/9709010 Exactly Solvable and Integrable Systems +solv-int/9709011 Exactly Solvable and Integrable Systems +solv-int/9710001 Exactly Solvable and Integrable Systems +solv-int/9710002 Exactly Solvable and Integrable Systems +solv-int/9710003 Exactly Solvable and Integrable Systems +solv-int/9710005 Exactly Solvable and Integrable Systems +solv-int/9710006 Exactly Solvable and Integrable Systems +solv-int/9710007 Exactly Solvable and Integrable Systems +solv-int/9710008 Exactly Solvable and Integrable Systems +solv-int/9710011 Exactly Solvable and Integrable Systems +solv-int/9710012 Exactly Solvable and Integrable Systems +solv-int/9710013 Exactly Solvable and Integrable Systems +solv-int/9710014 Exactly Solvable and Integrable Systems +solv-int/9710017 Exactly Solvable and Integrable Systems +solv-int/9710023 Exactly Solvable and Integrable Systems +solv-int/9710024 Exactly Solvable and Integrable Systems +solv-int/9710025 Exactly Solvable and Integrable Systems +solv-int/9710026 Exactly Solvable and Integrable Systems +solv-int/9711001 Exactly Solvable and Integrable Systems +solv-int/9711002 Exactly Solvable and Integrable Systems +solv-int/9711005 Exactly Solvable and Integrable Systems +solv-int/9711007 Exactly Solvable and Integrable Systems +solv-int/9711010 Exactly Solvable and Integrable Systems +solv-int/9711011 Exactly Solvable and Integrable Systems +solv-int/9711012 Exactly Solvable and Integrable Systems +solv-int/9711013 Exactly Solvable and Integrable Systems +solv-int/9711014 Exactly Solvable and Integrable Systems +solv-int/9711015 Exactly Solvable and Integrable Systems +solv-int/9712002 Exactly Solvable and Integrable Systems +solv-int/9712004 Exactly Solvable and Integrable Systems +solv-int/9712005 Exactly Solvable and Integrable Systems +solv-int/9712008 Exactly Solvable and Integrable Systems +solv-int/9712011 Exactly Solvable and Integrable Systems +solv-int/9712012 Exactly Solvable and Integrable Systems +solv-int/9712013 Exactly Solvable and Integrable Systems +solv-int/9712014 Exactly Solvable and Integrable Systems +solv-int/9712015 Exactly Solvable and Integrable Systems +solv-int/9712017 Exactly Solvable and Integrable Systems +supr-con/9602002 Superconductivity +supr-con/9604001 Superconductivity +supr-con/9605001 Superconductivity +supr-con/9605002 Superconductivity +supr-con/9606002 Superconductivity +supr-con/9606003 Superconductivity +supr-con/9607001 Superconductivity +supr-con/9607002 Superconductivity +supr-con/9607003 Superconductivity +supr-con/9607004 Superconductivity +supr-con/9607005 Superconductivity +supr-con/9607006 Superconductivity +supr-con/9607007 Superconductivity +supr-con/9608002 Superconductivity +supr-con/9608003 Superconductivity +supr-con/9608005 Superconductivity +supr-con/9608006 Superconductivity +supr-con/9608007 Superconductivity +supr-con/9608008 Superconductivity +supr-con/9609002 Superconductivity +supr-con/9609003 Superconductivity +supr-con/9609004 Superconductivity +0709.1512 +0711.1894 Mesoscale and Nanoscale Physics +0711.2815 Differential Geometry +0801.4872 +0802.1652 Algebraic Geometry +0802.2626 Exactly Solvable and Integrable Systems +0802.3450 Phenomenology +0802.4458 Logic +0803.4239 General Topology +0804.2432 Geometric Topology +0806.0502 Phenomenology +0806.3727 Theory +0807.3781 Superconductivity +0810.2000 Soft Condensed Matter +0810.4642 Space Physics +0812.2701 Atomic Physics +0812.3016 +0901.2723 Other Computer Science +0901.2738 Geometric Topology +0901.4690 Classical Physics +cond-mat/0403341 Materials Science +cs/0610108 Numerical Analysis +math/0403096 Quantum Algebra +0706.3483 Differential Geometry +0707.3373 Combinatorics +0708.4353 Disordered Systems and Neural Networks +0710.2208 Differential Geometry +0710.3859 Biological Physics +0802.0021 Statistics Theory +0802.0443 Methodology +0804.0587 +0806.0379 Superconductivity +0806.0917 Probability +0807.2027 Group Theory +0808.0359 Applications +0808.1241 +0808.2220 Computational Complexity +0809.3198 Other Condensed Matter +0809.3720 Algebraic Geometry +0810.1528 Theory +0810.4419 Logic in Computer Science +0810.4420 Logic in Computer Science +0811.2250 Databases +0812.2353 Differential Geometry +0812.4212 Atomic Physics +0901.0881 +0901.2807 Other Condensed Matter +0901.3178 Mesoscale and Nanoscale Physics +0901.4539 Theory +0901.4771 Probability +0902.1086 Superconductivity +0902.1369 +0902.1665 Neural and Evolutionary Computing +0902.3233 Mesoscale and Nanoscale Physics +0902.4698 Cosmology and Nongalactic Astrophysics +0903.1327 Mesoscale and Nanoscale Physics +0903.2206 Disordered Systems and Neural Networks +0903.3596 Phenomenology +0903.4725 Classical Analysis and ODEs +0904.0567 Atomic Physics +0904.1160 Quantum Gases +0904.3393 High Energy Astrophysical Phenomena +0905.1330 Quantum Gases +0905.3363 +0906.0652 Statistics Theory +0906.0696 Combinatorics +0906.0958 Information Theory +0906.0988 Functional Analysis +0906.0989 Statistics Theory +0906.0992 Probability +0906.0999 Portfolio Management +0906.1001 Algebraic Topology +0906.1005 Soft Condensed Matter +0906.1007 Accelerator Physics +0906.1009 Classical Physics +0906.1015 Strongly Correlated Electrons +0906.1018 Symbolic Computation +0906.1019 Computer Science and Game Theory +0906.1020 Solar and Stellar Astrophysics +0906.1022 Other Condensed Matter +0906.1029 Number Theory +0906.1033 +0906.1036 Strongly Correlated Electrons +0906.1043 Solar and Stellar Astrophysics +0906.1045 Classical Physics +0906.1046 Materials Science +0906.1048 Dynamical Systems +0906.1049 Mesoscale and Nanoscale Physics +0906.1052 History and Philosophy of Physics +0906.1058 Fluid Dynamics +0906.1059 Probability +0906.1064 Group Theory +0906.1067 Phenomenology +0906.1068 Instrumentation and Methods for Astrophysics +0906.1072 Phenomenology +0906.1074 Algebraic Geometry +0906.1075 Experiment +0906.1077 Optics +0906.1079 Information Theory +0906.1087 High Energy Astrophysical Phenomena +0906.1091 Analysis of PDEs +0906.1093 Analysis of PDEs +0906.1094 Applications +0906.1106 Materials Science +0906.1107 Applications +0906.1108 Experiment +0906.1109 Data Analysis, Statistics and Probability +0906.1111 Optics +0906.1112 Classical Physics +0906.1115 Applications +0906.1117 Applications +0906.1124 Fluid Dynamics +0906.1125 Category Theory +0906.1127 Superconductivity +0906.1128 Number Theory +0906.1131 Statistics Theory +0906.1132 Rings and Algebras +0906.1134 Plasma Physics +0906.1136 Statistics Theory +0906.1138 Complex Variables +0906.1141 Probability +0906.1151 Rings and Algebras +0906.1152 Geometric Topology +0906.1155 Plasma Physics +0906.1159 Superconductivity +0906.1162 Functional Analysis +0906.1165 Combinatorics +0906.1166 Populations and Evolution +0906.1167 +0906.1170 Rings and Algebras +0906.1171 +0906.1174 Differential Geometry +0906.1178 Metric Geometry +0906.1180 +0906.1182 Artificial Intelligence +0906.1183 Commutative Algebra +0906.1188 Cosmology and Nongalactic Astrophysics +0906.1191 Number Theory +astro-ph/0308311 +astro-ph/0406644 +astro-ph/0610091 +astro-ph/0701314 +cond-mat/0410132 Statistical Mechanics +math-ph/0603001 +math/0610457 K-Theory and Homology +math/0702594 Rings and Algebras +0708.3174 Algebraic Geometry +0709.2619 Disordered Systems and Neural Networks +0711.3773 +0712.2582 Probability +0801.0096 +0802.0673 Probability +0802.3154 Probability +0803.0748 +0803.2272 +0803.2372 Phenomenology +0804.1389 Mesoscale and Nanoscale Physics +0804.3852 +0805.0293 Phenomenology +0806.1253 Theory +0806.2054 Plasma Physics +0806.2283 +0806.3808 +0807.2336 +0807.2801 +0807.2922 Phenomenology +0807.4208 +0807.4258 +0808.0649 General Physics +0809.1250 +0809.1554 Theory +0809.1639 Classical Physics +0809.2262 Phenomenology +0809.2305 +0809.3342 +0809.3398 Theory +0810.0078 +0810.1753 +0810.2121 Theory +0810.2933 Experiment +0810.3397 Mesoscale and Nanoscale Physics +0810.3478 +0810.4539 Mesoscale and Nanoscale Physics +0811.1512 Phenomenology +0811.1662 +0811.3152 Theory +0811.3372 +0811.4076 +0811.4599 Theory +0811.4758 Phenomenology +0812.0068 Theory +0812.0307 Phenomenology +0812.0316 Soft Condensed Matter +0812.0479 Phenomenology +0812.0577 +0812.1759 Theory +0812.3488 Theory +0812.3633 Theory +0812.3708 +0812.3911 Popular Physics +0812.4068 Phenomenology +0812.4198 +0812.4510 Theory +0901.0006 Phenomenology +0901.0386 Phenomenology +0901.0511 Differential Geometry +0901.0657 Lattice +0901.0710 High Energy Astrophysical Phenomena +0901.1258 +0901.1595 Theory +0901.1681 Theory +0901.2533 Analysis of PDEs +0901.2884 +0901.2896 Theory +0901.3349 +0901.3601 Phenomenology +0901.3907 +0901.4009 +0901.4334 Cosmology and Nongalactic Astrophysics +0901.4531 Theory +0901.4634 +0902.0032 General Physics +0902.0143 Theory +0902.0660 +0902.0957 +0902.0981 Theory +0902.1087 +0902.1464 +0902.1659 +0902.1887 Earth and Planetary Astrophysics +0902.2462 +0902.2892 High Energy Astrophysical Phenomena +0902.2939 +0902.3166 Phenomenology +0902.3248 Astrophysics of Galaxies +0902.3512 Phenomenology +0902.3826 Phenomenology +0902.4283 Phenomenology +0903.0315 Superconductivity +0903.0883 Phenomenology +0903.0899 Phenomenology +0903.1015 Theory +0903.1353 Theory +0903.1668 +0903.2060 Experiment +0903.2181 Physics and Society +0903.2194 Theory +0903.2437 Solar and Stellar Astrophysics +0903.3091 Mesoscale and Nanoscale Physics +0903.3377 Phenomenology +0903.3668 Phenomenology +0903.3899 +0903.3955 Phenomenology +0903.3970 Theory +0903.4342 +0903.4810 +0904.0413 Phenomenology +0904.0565 Algebraic Geometry +0904.0661 Earth and Planetary Astrophysics +0904.0920 Phenomenology +0904.0928 Cosmology and Nongalactic Astrophysics +0904.1368 Phenomenology +0904.1933 Phenomenology +0904.2298 +0904.2512 Theory +0904.3212 Instrumentation and Methods for Astrophysics +0904.4468 Materials Science +0904.4760 Strongly Correlated Electrons +0904.4897 Theory +0905.0141 +0905.0492 Cosmology and Nongalactic Astrophysics +0905.0691 Cosmology and Nongalactic Astrophysics +0905.0698 High Energy Astrophysical Phenomena +0905.0907 Strongly Correlated Electrons +0905.0966 Cosmology and Nongalactic Astrophysics +0905.1071 High Energy Astrophysical Phenomena +0905.1295 Solar and Stellar Astrophysics +0905.1782 Phenomenology +0905.1784 Experiment +0905.1989 Cosmology and Nongalactic Astrophysics +0905.2406 Lattice +0905.2662 +0905.2762 Solar and Stellar Astrophysics +0905.2949 Lattice +0905.2980 Astrophysics of Galaxies +0905.4197 Solar and Stellar Astrophysics +0905.4298 High Energy Astrophysical Phenomena +0905.4523 Astrophysics of Galaxies +0905.4552 Cosmology and Nongalactic Astrophysics +0905.4673 Theory +0906.0019 High Energy Astrophysical Phenomena +0906.0088 Earth and Planetary Astrophysics +0906.0365 Cosmology and Nongalactic Astrophysics +0906.0585 Cosmology and Nongalactic Astrophysics +0906.1024 Earth and Planetary Astrophysics +0906.1357 Cosmology and Nongalactic Astrophysics +0906.1490 High Energy Astrophysical Phenomena +0906.1492 Cosmology and Nongalactic Astrophysics +0906.1505 Representation Theory +0906.1532 Astrophysics of Galaxies +0906.1843 Cosmology and Nongalactic Astrophysics +0906.1999 Solar and Stellar Astrophysics +0906.2149 Cosmology and Nongalactic Astrophysics +0906.2197 Cosmology and Nongalactic Astrophysics +0906.2227 Solar and Stellar Astrophysics +0906.2241 Solar and Stellar Astrophysics +0906.2544 Solar and Stellar Astrophysics +0906.2677 Solar and Stellar Astrophysics +0906.2702 Solar and Stellar Astrophysics +0907.0716 +0907.3263 Geometric Topology +0907.3918 High Energy Astrophysical Phenomena +0907.3921 High Energy Astrophysical Phenomena +0907.3927 Molecular Networks +0907.3932 Analysis of PDEs +0907.3934 Statistical Mechanics +0907.3938 Analysis of PDEs +0907.3939 Symplectic Geometry +0907.3944 Methodology +0907.3952 Mesoscale and Nanoscale Physics +0907.3954 Operator Algebras +0907.3958 High Energy Astrophysical Phenomena +0907.3959 Logic +0907.3961 Category Theory +0907.3964 Neurons and Cognition +0907.3966 Cosmology and Nongalactic Astrophysics +0907.3970 Number Theory +0907.3971 Superconductivity +0907.3972 Number Theory +0907.3974 Number Theory +0907.3976 Molecular Networks +0907.3980 Differential Geometry +0907.3999 Phenomenology +0907.4001 Superconductivity +0907.4006 Computational Complexity +0907.4010 Computation +0907.4015 Atomic and Molecular Clusters +0907.4020 Experiment +0907.4032 Other Condensed Matter +0907.4033 K-Theory and Homology +0907.4040 Algebraic Geometry +0907.4048 High Energy Astrophysical Phenomena +0907.4054 Experiment +0907.4058 Number Theory +0907.4065 +0907.4067 Statistical Mechanics +0907.4072 Differential Geometry +0907.4075 Mesoscale and Nanoscale Physics +0907.4077 Methodology +0907.4085 Cryptography and Security +0907.4086 Differential Geometry +0907.4088 Astrophysics of Galaxies +0907.4093 Risk Management +0907.4096 Number Theory +0907.4098 Analysis of PDEs +0907.4104 Earth and Planetary Astrophysics +0907.4105 Chaotic Dynamics +0907.4110 Phenomenology +0907.4114 Cell Behavior +0907.4115 Genomics +0907.4121 Algebraic Topology +0907.4122 Mesoscale and Nanoscale Physics +0907.4127 Statistical Mechanics +0907.4128 Artificial Intelligence +0907.4130 Computer Science and Game Theory +0907.4131 Optimization and Control +0907.4136 Pricing of Securities +astro-ph/0606012 +astro-ph/0611770 +gr-qc/0507083 +gr-qc/0611043 +hep-ph/0008191 Phenomenology +hep-ph/9601227 Phenomenology +hep-th/9609155 Theory +hep-th/9610050 Theory +hep-th/9701013 Theory +hep-th/9707112 Theory +nucl-th/0607041 +physics/0511106 General Physics +q-bio/0703064 Populations and Evolution +0708.0151 K-Theory and Homology +0709.1247 Differential Geometry +0711.1772 Other Condensed Matter +0801.3472 Rings and Algebras +0802.3000 Differential Geometry +0802.3656 +0804.3772 Operator Algebras +0806.3906 Combinatorics +0807.0876 Superconductivity +0808.2043 Phenomenology +0809.0211 Pattern Formation and Solitons +0809.1888 +0809.4353 Materials Science +0809.4921 Strongly Correlated Electrons +0809.5205 Rings and Algebras +0810.0416 +0810.3959 Complex Variables +0810.4843 Mesoscale and Nanoscale Physics +0811.0605 Geophysics +0811.2547 Theory +0811.3882 K-Theory and Homology +0812.0171 Optics +0812.0239 Other Condensed Matter +0812.0898 +0812.1776 Algebraic Geometry +0812.1911 Strongly Correlated Electrons +0812.2001 Mesoscale and Nanoscale Physics +0901.2579 Theory +0901.3642 Strongly Correlated Electrons +0901.4094 Biological Physics +0902.0689 Phenomenology +0902.2302 Representation Theory +0902.3721 Algebraic Geometry +0902.4382 Strongly Correlated Electrons +0903.1925 +0903.2105 +0903.2264 Astrophysics of Galaxies +0903.2265 Data Structures and Algorithms +0903.2269 Probability +0903.2272 Multimedia +0903.2282 Multiagent Systems +0903.2283 Materials Science +0903.2289 Algebraic Geometry +0903.2294 Fluid Dynamics +0903.2297 Cosmology and Nongalactic Astrophysics +0903.2300 +0903.2301 +0903.2322 Phenomenology +0903.2326 Differential Geometry +0903.2328 Complex Variables +0903.2330 Algebraic Geometry +0903.2334 Earth and Planetary Astrophysics +0903.2339 General Physics +0903.2343 +0903.2353 Programming Languages +0903.2356 Superconductivity +0903.2366 Instrumentation and Detectors +0903.2368 Algebraic Geometry +0903.2371 Classical Physics +0903.2374 Functional Analysis +0903.2378 Cell Behavior +0903.2379 Quantitative Methods +0903.2382 Discrete Mathematics +0903.2387 Differential Geometry +0903.2392 Optics +0903.2394 Dynamical Systems +0903.2396 Dynamical Systems +0903.2397 Commutative Algebra +0903.2400 Dynamical Systems +0903.2402 Materials Science +0903.2406 Group Theory +0903.2413 Differential Geometry +0903.2417 Experiment +0903.2419 Geometric Topology +0903.2425 +0903.2426 Information Theory +0903.2428 Trading and Market Microstructure +0903.2431 Instrumentation and Methods for Astrophysics +0903.2433 Solar and Stellar Astrophysics +0903.2435 Mesoscale and Nanoscale Physics +0903.2438 +0903.2442 Cosmology and Nongalactic Astrophysics +0903.2446 Cosmology and Nongalactic Astrophysics +0903.2447 Atomic Physics +0903.2453 Strongly Correlated Electrons +0903.2458 Quantum Algebra +0903.2460 Probability +0903.2471 Information Theory +cond-mat/0610621 Strongly Correlated Electrons +hep-ph/0212299 Phenomenology +hep-ph/0301151 Phenomenology +hep-ph/0302275 Phenomenology +hep-ph/0303016 Phenomenology +hep-ph/0311137 Phenomenology +hep-ph/0403026 Phenomenology +hep-ph/0511063 Phenomenology +hep-ph/0602126 Phenomenology +hep-th/0207245 Theory +hep-th/0607235 Theory +math/0501140 Geometric Topology +math/0703251 Symplectic Geometry +0705.0056 Theory +0705.4193 +0709.2063 Theory +0710.1403 +0712.0895 Disordered Systems and Neural Networks +0802.0044 Theory +0804.0916 Functional Analysis +0804.4435 +0805.1776 Molecular Networks +0805.1809 +0806.4562 Theory +0809.0922 Artificial Intelligence +0811.0949 Combinatorics +0811.2404 +0812.1387 +0812.2954 Materials Science +0812.4501 Phenomenology +0901.0461 Atmospheric and Oceanic Physics +0901.0978 +0902.1501 Disordered Systems and Neural Networks +0902.2023 +0902.4862 Quantum Algebra +0903.1383 Phenomenology +0903.2157 Theory +0903.5141 Cosmology and Nongalactic Astrophysics +0904.0756 General Finance +0904.0953 +0904.2121 Quantum Gases +0904.4235 Materials Science +0905.0300 +0905.0896 +0905.1069 Logic +0905.1410 Quantitative Methods +0905.1854 Probability +0906.0913 Earth and Planetary Astrophysics +0906.2672 Chaotic Dynamics +0906.4113 Phenomenology +0906.5339 Information Theory +0906.5375 Dynamical Systems +0907.1878 Phenomenology +0907.2434 Probability +0907.2999 Mesoscale and Nanoscale Physics +0907.5569 Materials Science +0908.0043 Computer Science and Game Theory +0908.1345 Mesoscale and Nanoscale Physics +0908.3492 Statistical Mechanics +0908.3688 Phenomenology +0909.1317 Phenomenology +0909.1369 Phenomenology +0909.1463 Phenomenology +0909.1489 Lattice +0909.1512 Phenomenology +0909.1547 Phenomenology +0909.1929 Theory +0909.3826 Optimization and Control +0910.0164 Classical Physics +0910.3484 +0911.2843 Instrumentation and Detectors +0911.4294 Phenomenology +0911.4454 Rings and Algebras +0911.4720 Solar and Stellar Astrophysics +0911.4731 Classical Analysis and ODEs +0911.4954 High Energy Astrophysical Phenomena +0911.4959 Quantum Algebra +0911.4963 Discrete Mathematics +0911.4966 Metric Geometry +0911.4968 Classical Analysis and ODEs +0911.4975 Number Theory +0911.4976 Theory +0911.4977 Representation Theory +0911.4982 Combinatorics +0911.4983 Computational Engineering, Finance, and Science +0911.4984 Computational Engineering, Finance, and Science +0911.4985 Formal Languages and Automata Theory +0911.4986 Computational Engineering, Finance, and Science +0911.4987 Computational Engineering, Finance, and Science +0911.4989 Computational Engineering, Finance, and Science +0911.4993 Dynamical Systems +0911.5005 Exactly Solvable and Integrable Systems +0911.5010 Chemical Physics +0911.5017 Computational Geometry +0911.5019 Combinatorics +0911.5023 Operator Algebras +0911.5036 Differential Geometry +0911.5043 Artificial Intelligence +0911.5044 Solar and Stellar Astrophysics +0911.5047 Strongly Correlated Electrons +0911.5053 Soft Condensed Matter +0911.5054 Soft Condensed Matter +0911.5058 +0911.5063 +0911.5066 Quantum Gases +0911.5083 Biological Physics +0911.5089 +0911.5092 Plasma Physics +0911.5094 Data Structures and Algorithms +0911.5096 +0911.5098 Numerical Analysis +0911.5099 Instrumentation and Methods for Astrophysics +0911.5103 Group Theory +0911.5107 Machine Learning +0911.5109 Combinatorics +0911.5113 Instrumentation and Methods for Astrophysics +0911.5114 Medical Physics +0911.5116 Computation and Language +0911.5126 +0911.5127 Probability +0911.5128 Differential Geometry +0911.5131 Medical Physics +0911.5133 Functional Analysis +0911.5134 Soft Condensed Matter +0911.5135 Complex Variables +0911.5140 Phenomenology +0911.5142 Quantum Gases +0911.5143 Data Structures and Algorithms +0911.5144 Disordered Systems and Neural Networks +0911.5148 Analysis of PDEs +0911.5150 Strongly Correlated Electrons +0911.5151 Combinatorics +0911.5152 Quantum Gases +0911.5156 Phenomenology +0911.5158 Phenomenology +0911.5159 Adaptation and Self-Organizing Systems +0911.5162 Optimization and Control +0911.5167 Algebraic Geometry +0911.5170 Earth and Planetary Astrophysics +0911.5172 Cosmology and Nongalactic Astrophysics +0911.5176 Mesoscale and Nanoscale Physics +0911.5182 Number Theory +0911.5184 Fluid Dynamics +0911.5185 Quantum Gases +0911.5186 General Physics +0911.5187 Fluid Dynamics +0911.5200 Category Theory +0911.5203 Programming Languages +0911.5204 Statistics Theory +0911.5211 Rings and Algebras +0911.5213 Classical Physics +0911.5216 Classical Physics +0911.5219 +0911.5222 +0911.5223 Strongly Correlated Electrons +0911.5230 Cryptography and Security +0911.5232 Statistical Mechanics +0911.5233 Earth and Planetary Astrophysics +0911.5234 Phenomenology +0911.5235 Dynamical Systems +0911.5237 K-Theory and Homology +0911.5240 Instrumentation and Detectors +0911.5241 Phenomenology +0911.5249 +0911.5255 Probability +0911.5257 Theory +0911.5258 Discrete Mathematics +0911.5259 Popular Physics +0911.5262 Computational Complexity +0911.5263 Functional Analysis +0911.5266 Classical Analysis and ODEs +0911.5268 Combinatorics +0911.5271 Representation Theory +0911.5272 General Physics +0911.5284 Representation Theory +0911.5286 Phenomenology +0911.5289 Number Theory +0911.5292 Analysis of PDEs +0911.5293 Geometric Topology +0911.5296 Probability +0911.5301 Probability +0911.5303 Molecular Networks +0911.5306 Materials Science +0911.5309 Materials Science +0911.5315 Molecular Networks +0911.5319 Metric Geometry +0911.5321 +0911.5325 +0911.5328 Representation Theory +0911.5330 Chemical Physics +0911.5331 +cs/0208018 Computational Complexity +cs/0209015 Computational Complexity +math/9812003 Algebraic Geometry +physics/0512129 Computational Physics +quant-ph/0702094 +solv-int/9904005 Exactly Solvable and Integrable Systems +0706.2336 +0708.2119 +0708.2387 Space Physics +0708.3400 Statistics Theory +0709.3091 Algebraic Topology +0709.3331 Computational Physics +0711.4735 +0801.3467 +0802.0356 Biomolecules +0804.0036 Metric Geometry +0804.3249 +0806.1972 +0808.0311 +0809.1078 +0809.1082 +0810.0626 Statistical Mechanics +0810.1417 +0810.4550 Biological Physics +0810.4737 Computational Physics +0811.2162 Computational Physics +0811.2166 +0811.4756 +0812.1601 Computational Complexity +0812.2769 Mathematical Software +0812.3022 Soft Condensed Matter +0812.3933 Data Structures and Algorithms +0812.4493 +0901.1862 Commutative Algebra +0901.3259 Strongly Correlated Electrons +0901.4850 Biomolecules +0902.1657 Phenomenology +0902.2151 Other Condensed Matter +0902.2427 +0902.3510 +0902.4307 Atomic Physics +0903.0589 Cosmology and Nongalactic Astrophysics +0903.2226 Information Theory +0903.2530 +0904.2066 Optics +0904.3184 +0904.3584 Biomolecules +0904.4781 Medical Physics +0905.0006 +0905.0015 Combinatorics +0905.0016 Materials Science +0905.0022 Algebraic Topology +0905.0024 Information Theory +0905.0026 Atomic and Molecular Clusters +0905.0033 Optics +0905.0034 Representation Theory +0905.0036 Information Theory +0905.0039 Analysis of PDEs +0905.0042 Cell Behavior +0905.0047 Algebraic Geometry +0905.0053 General Physics +0905.0058 General Physics +0905.0061 Solar and Stellar Astrophysics +0905.0074 +0905.0082 Fluid Dynamics +0905.0084 Instrumentation and Methods for Astrophysics +0905.0085 Combinatorics +0905.0092 Optimization and Control +0905.0093 Optics +0905.0095 Group Theory +0905.0096 Algebraic Geometry +0905.0109 Optics +0905.0113 +0905.0116 Methodology +0905.0123 +0905.0126 Numerical Analysis +0905.0134 Astrophysics of Galaxies +0905.0136 Group Theory +astro-ph/0611760 +cond-mat/0403245 Superconductivity +math/0301285 Quantum Algebra +math/0503377 Complex Variables +math/0701567 Complex Variables +math/0703204 Category Theory +0704.0487 General Physics +0709.1599 Experiment +0710.2016 Complex Variables +0710.3302 Exactly Solvable and Integrable Systems +0710.3434 Phenomenology +0710.3998 Phenomenology +0710.5880 Lattice +0711.0778 Phenomenology +0711.2496 Lattice +0711.4644 +0801.3086 Differential Geometry +0801.4738 +0802.0632 Complex Variables +0802.4405 Exactly Solvable and Integrable Systems +0802.4408 Phenomenology +0803.2376 Differential Geometry +0803.2637 +0803.3097 +0805.2156 Theory +0805.2681 Computational Geometry +0805.3995 Phenomenology +0806.0088 +0806.0366 Theory +0806.1583 +0806.3819 Algebraic Geometry +0807.2390 Phenomenology +0807.3130 Lattice +0807.3281 +0808.1126 Theory +0808.1776 Phenomenology +0808.2485 Theory +0808.2955 Phenomenology +0808.3000 Theory +0809.2645 Theory +0809.5225 Populations and Evolution +0810.0953 Phenomenology +0810.1180 +0810.1289 Mesoscale and Nanoscale Physics +0810.1642 +0810.1841 Lattice +0810.4049 Theory +0810.4518 Commutative Algebra +0810.4829 Phenomenology +0810.4844 Trading and Market Microstructure +0810.4928 Phenomenology +0810.5671 Classical Physics +0811.0394 Phenomenology +0811.0407 Phenomenology +0811.1614 Theory +0811.1998 +0811.2589 Phenomenology +0811.3086 Phenomenology +0811.3206 Phenomenology +0811.3623 Other Condensed Matter +0811.4264 Lattice +0811.4383 +0812.0390 Dynamical Systems +0812.0993 +0812.1205 +0812.1767 +0812.3023 +0812.3202 Phenomenology +0812.3460 Theory +0812.3806 Fluid Dynamics +0812.4247 +0812.4276 Theory +0812.4489 +0901.0828 Earth and Planetary Astrophysics +0901.1028 Solar and Stellar Astrophysics +0901.1242 +0901.1712 Theory +0901.2122 Cosmology and Nongalactic Astrophysics +0901.2363 Theory +0901.2749 Theory +0901.2765 Phenomenology +0901.3099 Phenomenology +0901.3159 Phenomenology +0901.3302 Lattice +0901.3528 Phenomenology +0901.4130 Phenomenology +0901.4614 +0901.4942 Theory +0902.0318 +0902.1003 Differential Geometry +0902.1084 Cosmology and Nongalactic Astrophysics +0902.1344 High Energy Astrophysical Phenomena +0902.1347 High Energy Astrophysical Phenomena +0902.1348 High Energy Astrophysical Phenomena +0902.1537 Phenomenology +0902.1617 Data Structures and Algorithms +0902.1842 Phenomenology +0902.1883 Phenomenology +0902.2241 Phenomenology +0902.2360 +0902.2921 +0902.3163 +0902.3291 Phenomenology +0902.3529 Theory +0902.3652 +0902.3772 Cosmology and Nongalactic Astrophysics +0902.4267 Lattice +0902.4275 Phenomenology +0902.4413 Cosmology and Nongalactic Astrophysics +0902.4568 Phenomenology +0902.4586 Theory +0903.0015 Phenomenology +0903.0030 Experiment +0903.0256 Phenomenology +0903.0287 Phenomenology +0903.0363 Phenomenology +0903.0379 Theory +0903.0541 Theory +0903.0667 Phenomenology +0903.0769 +0903.0782 Phenomenology +0903.0882 Theory +0903.0895 Statistical Mechanics +0903.1063 Theory +0903.1239 Phenomenology +0903.1299 +0903.1631 Phenomenology +0903.1723 Phenomenology +0903.1777 +0903.1796 Phenomenology +0903.1844 Theory +0903.1886 Phenomenology +0903.2014 Cosmology and Nongalactic Astrophysics +0903.2384 Phenomenology +0903.2902 +0903.2977 Cosmology and Nongalactic Astrophysics +0903.3184 Cosmology and Nongalactic Astrophysics +0903.3373 Phenomenology +0903.3568 Phenomenology +0903.3929 Phenomenology +0903.4328 Phenomenology +0903.4516 Phenomenology +0903.4598 Phenomenology +0903.4793 Metric Geometry +0903.4869 Phenomenology +0903.5028 Phenomenology +0903.5311 +0903.5416 Phenomenology +0903.5491 Phenomenology +0904.0215 +0904.0367 Theory +0904.0410 Phenomenology +0904.0820 Theory +0904.0877 Cosmology and Nongalactic Astrophysics +0904.1648 Phenomenology +0904.1770 Phenomenology +0904.2946 High Energy Astrophysical Phenomena +0904.3076 Phenomenology +0904.3209 Experiment +0904.3811 Cosmology and Nongalactic Astrophysics +0904.4402 Phenomenology +0904.4532 Theory +0904.4534 Phenomenology +0904.4588 Mesoscale and Nanoscale Physics +0905.0032 Mesoscale and Nanoscale Physics +0905.0597 Phenomenology +0905.0671 Phenomenology +0905.1061 Phenomenology +0905.1077 +0905.1286 Theory +0905.1406 +0905.1985 Phenomenology +0905.2611 High Energy Astrophysical Phenomena +0905.2834 +0905.4506 General Physics +0905.4630 Phenomenology +0905.4767 Phenomenology +0906.0711 Combinatorics +0906.2108 +0906.3016 Cosmology and Nongalactic Astrophysics +0906.3030 Solar and Stellar Astrophysics +0906.4778 Theory +0906.5602 Statistical Mechanics +0907.1615 +0907.2062 Exactly Solvable and Integrable Systems +0907.4785 Experiment +0907.4984 Computer Vision and Pattern Recognition +0907.4994 Cryptography and Security +0907.4996 Information Theory +0907.4997 High Energy Astrophysical Phenomena +0907.5000 High Energy Astrophysical Phenomena +0907.5016 Discrete Mathematics +0907.5018 Astrophysics of Galaxies +0907.5020 Astrophysics of Galaxies +0907.5022 Differential Geometry +0907.5032 Artificial Intelligence +0907.5033 Artificial Intelligence +0907.5038 Symbolic Computation +0907.5041 Algebraic Topology +0907.5046 +0907.5048 Phenomenology +0907.5055 Formal Languages and Automata Theory +0907.5058 Formal Languages and Automata Theory +0907.5059 Group Theory +0907.5063 Formal Languages and Automata Theory +0907.5066 Complex Variables +0907.5067 Materials Science +0907.5071 +0907.5072 Formal Languages and Automata Theory +0907.5077 Soft Condensed Matter +0907.5082 Complex Variables +0907.5083 Formal Languages and Automata Theory +0907.5088 Differential Geometry +0907.5089 Number Theory +0907.5093 Astrophysics of Galaxies +0907.5095 Number Theory +0907.5096 Discrete Mathematics +0907.5097 Classical Analysis and ODEs +0907.5101 Phenomenology +0907.5109 Statistical Mechanics +0907.5111 Formal Languages and Automata Theory +0907.5117 Functional Analysis +0907.5118 Instrumentation and Methods for Astrophysics +0907.5119 Formal Languages and Automata Theory +0907.5120 Formal Languages and Automata Theory +0907.5121 Formal Languages and Automata Theory +0907.5124 Formal Languages and Automata Theory +0907.5125 Logic in Computer Science +0907.5127 Formal Languages and Automata Theory +0907.5128 Formal Languages and Automata Theory +0907.5130 Formal Languages and Automata Theory +0907.5131 Materials Science +0907.5132 Formal Languages and Automata Theory +0907.5133 Phenomenology +0907.5136 Formal Languages and Automata Theory +0907.5137 Probability +0907.5141 Distributed, Parallel, and Cluster Computing +0907.5149 +0907.5153 Disordered Systems and Neural Networks +0907.5162 Programming Languages +0907.5169 Algebraic Geometry +0907.5172 Solar and Stellar Astrophysics +0907.5175 High Energy Astrophysical Phenomena +0907.5182 Algebraic Geometry +0907.5184 Operator Algebras +0907.5187 Metric Geometry +astro-ph/0005063 +astro-ph/0303363 +astro-ph/0508010 +gr-qc/0409037 +math/0507201 History and Overview +nucl-th/0702074 +0707.2273 Differential Geometry +0708.3632 History and Philosophy of Physics +0710.1208 Logic in Computer Science +0711.3933 Statistics Theory +0712.1760 Symplectic Geometry +0712.3403 +0801.1577 History and Philosophy of Physics +0804.0047 Space Physics +0804.2310 Probability +0807.3719 Machine Learning +0809.3098 Fluid Dynamics +0809.4333 Probability +0811.2735 Probability +0812.1726 Probability +0812.2709 Information Theory +0812.4108 Probability +0901.0751 Statistics Theory +0901.3373 Strongly Correlated Electrons +0902.1017 Atomic Physics +0902.1414 Metric Geometry +0902.3443 Phenomenology +0902.4171 +0903.2150 Phenomenology +0903.2885 Phenomenology +0903.4279 Probability +0904.0851 Plasma Physics +0905.0386 Quantum Gases +0905.1321 Phenomenology +0905.1502 Complex Variables +0905.1526 Phenomenology +0905.1710 Classical Analysis and ODEs +0905.1843 Theory +0905.1948 High Energy Astrophysical Phenomena +0905.1998 Cosmology and Nongalactic Astrophysics +0905.2291 Phenomenology +0905.2417 High Energy Astrophysical Phenomena +0905.2790 Materials Science +0905.3174 Spectral Theory +0906.0879 Phenomenology +0906.1479 Phenomenology +0906.2497 Algebraic Geometry +0906.2593 Mesoscale and Nanoscale Physics +0906.2875 +0906.3369 Cosmology and Nongalactic Astrophysics +0906.4119 Cosmology and Nongalactic Astrophysics +0907.4418 Statistics Theory +0907.4874 Strongly Correlated Electrons +0908.0800 Strongly Correlated Electrons +0908.1294 Algebraic Topology +0908.1887 Phenomenology +0909.0515 Phenomenology +0909.0816 Geometric Topology +0909.1177 +0909.3338 Theory +0909.3366 +0909.3642 Probability +0909.3706 Metric Geometry +0909.3745 Theory +0909.5100 Cosmology and Nongalactic Astrophysics +0909.5102 Cosmology and Nongalactic Astrophysics +0910.1565 Strongly Correlated Electrons +0910.1813 Cosmology and Nongalactic Astrophysics +0910.5049 Phenomenology +0911.1090 Information Theory +0911.1640 Mesoscale and Nanoscale Physics +0911.1660 Mesoscale and Nanoscale Physics +0911.1679 Mesoscale and Nanoscale Physics +0911.1903 Mesoscale and Nanoscale Physics +0911.1905 Mesoscale and Nanoscale Physics +0911.1933 Number Theory +0911.2042 Mesoscale and Nanoscale Physics +0911.3658 Cosmology and Nongalactic Astrophysics +0911.3664 Analysis of PDEs +0911.3666 Cosmology and Nongalactic Astrophysics +0911.3670 +0911.3672 +0911.3674 Symbolic Computation +0911.3676 Information Theory +0911.3678 Superconductivity +0911.3679 General Mathematics +0911.3682 Group Theory +0911.3684 Statistics Theory +0911.3692 Theory +0911.3695 Superconductivity +0911.3699 Earth and Planetary Astrophysics +0911.3710 Biomolecules +0911.3713 Dynamical Systems +0911.3714 Symplectic Geometry +0911.3720 Optimization and Control +0911.3723 Multiagent Systems +0911.3725 Geometric Topology +0911.3729 Superconductivity +0911.3736 Statistics Theory +0911.3749 Statistics Theory +0911.3754 Optics +0911.3764 Geophysics +0911.3765 Classical Analysis and ODEs +0911.3766 Geometric Topology +0911.3768 Mesoscale and Nanoscale Physics +0911.3769 Statistics Theory +0911.3773 Classical Analysis and ODEs +0911.3777 +0911.3781 Differential Geometry +0911.3784 Software Engineering +0911.3787 Statistics Theory +0911.3794 Representation Theory +0911.3796 Statistics Theory +0911.3800 Theory +0911.3801 Statistics Theory +0911.3803 Combinatorics +0911.3810 Combinatorics +0911.3812 General Physics +0911.3813 Analysis of PDEs +0911.3816 Analysis of PDEs +0911.3819 Physics Education +0911.3824 Probability +0911.3826 Cosmology and Nongalactic Astrophysics +0911.3827 Statistics Theory +0911.3829 Algebraic Geometry +0911.3831 Classical Analysis and ODEs +0911.3834 Logic +0911.3836 Logic +0911.3840 Phenomenology +0911.3841 Earth and Planetary Astrophysics +0911.3851 General Physics +0911.3852 Cosmology and Nongalactic Astrophysics +0911.3853 Cosmology and Nongalactic Astrophysics +0911.3860 Dynamical Systems +0911.3864 Statistical Mechanics +0911.3866 Methodology +0911.3872 Information Theory +0911.3875 +0911.3876 Dynamical Systems +0911.3880 Spectral Theory +0911.3884 Medical Physics +cond-mat/0412201 Statistical Mechanics +cond-mat/0603249 Statistical Mechanics +hep-ph/0203067 Phenomenology +hep-th/0608013 Theory +math/0209155 Geometric Topology +math/0609388 Number Theory +math/0611463 Statistics Theory +physics/0408037 History and Philosophy of Physics +physics/0411254 Fluid Dynamics +0708.0683 Disordered Systems and Neural Networks +0708.1299 Algebraic Topology +0708.1825 +0711.2651 +0711.3219 Representation Theory +0712.0937 +0804.0007 Disordered Systems and Neural Networks +0804.3386 Combinatorics +0804.4747 Phenomenology +0805.2576 Experiment +0805.3250 Other Condensed Matter +0805.4747 +0806.0083 +0806.0333 +0806.1065 +0806.1169 Phenomenology +0806.1279 +0806.1291 Probability +0806.1305 +0806.1825 +0806.3499 Differential Geometry +0806.3521 +0806.4086 +0806.4172 Phenomenology +0806.4229 +0806.4266 +0806.4272 +0806.4678 +0806.4679 +0806.4718 +0806.4745 Phenomenology +0807.0859 Experiment +0807.1092 Phenomenology +0807.1255 +0807.2391 Phenomenology +0807.2996 +0807.5112 Phenomenology +0808.0155 Theory +0808.0196 Phenomenology +0808.0949 +0808.1702 Phenomenology +0808.1888 Combinatorics +0808.3993 Classical Physics +0809.0033 Group Theory +0809.2248 +0809.3337 +0809.3783 Theory +0809.4686 +0809.4728 Theory +0810.0795 Disordered Systems and Neural Networks +0810.2996 +0810.4116 +0810.4264 Materials Science +0810.4785 +0810.4999 Theory +0810.5525 +0811.3102 Theory +0811.3441 +0811.4429 Phenomenology +0812.0576 +0812.1202 +0812.1285 Theory +0812.1294 +0812.1519 Phenomenology +0812.1947 +0812.3256 Phenomenology +0812.4711 Functional Analysis +0812.4868 +0901.0285 Cosmology and Nongalactic Astrophysics +0901.0302 +0901.0506 Theory +0901.0901 +0901.1117 +0901.1930 Theory +0901.2052 +0901.2510 Lattice +0901.3655 Cosmology and Nongalactic Astrophysics +0901.3803 Experiment +0901.3915 +0901.4313 +0901.4591 Information Theory +0901.4750 +0901.4908 +0902.0058 Information Theory +0902.0273 Theory +0902.0331 +0902.0573 +0902.0715 +0902.0780 Phenomenology +0902.1055 Phenomenology +0902.1467 Phenomenology +0902.1716 Theory +0902.1948 Algebraic Geometry +0902.2157 Experiment +0902.2183 Digital Libraries +0902.2320 Cosmology and Nongalactic Astrophysics +0902.2616 +0902.2833 Theory +0902.3519 Phenomenology +0902.4295 Phenomenology +0903.0005 Phenomenology +0903.0593 Theory +0903.1377 Phenomenology +0903.2015 Data Structures and Algorithms +0903.2118 Phenomenology +0903.2224 Theory +0903.2573 Phenomenology +0903.2610 +0903.2753 Theory +0903.3526 Theory +0903.4375 Phenomenology +0903.4703 Phenomenology +0903.4736 +0903.4750 +0903.4818 Phenomenology +0903.5204 Phenomenology +0903.5323 Phenomenology +0903.5438 +0904.0403 Theory +0904.0443 +0904.0797 +0904.0832 Superconductivity +0904.1070 Cosmology and Nongalactic Astrophysics +0904.1306 +0904.1986 Solar and Stellar Astrophysics +0904.2001 Phenomenology +0904.2411 Mesoscale and Nanoscale Physics +0904.2559 +0904.3467 High Energy Astrophysical Phenomena +0904.3761 Data Structures and Algorithms +0904.4683 Strongly Correlated Electrons +0905.1778 Information Theory +0905.2002 +0905.2514 High Energy Astrophysical Phenomena +0905.3274 High Energy Astrophysical Phenomena +0906.0181 +0906.0436 +0906.3131 Dynamical Systems +0906.4036 Computer Vision and Pattern Recognition +0906.4610 Theory +0906.4706 Computational Geometry +0906.4764 Computer Science and Game Theory +0906.4996 Experiment +0906.5003 Solar and Stellar Astrophysics +0906.5007 Information Theory +0906.5010 Data Structures and Algorithms +0906.5013 Phenomenology +0906.5028 Tissues and Organs +0906.5029 Materials Science +0906.5031 Cryptography and Security +0906.5032 Materials Science +0906.5034 Information Retrieval +0906.5038 Artificial Intelligence +0906.5039 Computer Vision and Pattern Recognition +0906.5040 Databases +0906.5051 Data Structures and Algorithms +0906.5053 Combinatorics +0906.5054 Exactly Solvable and Integrable Systems +0906.5055 Functional Analysis +0906.5056 Functional Analysis +0906.5058 General Physics +0906.5060 Cryptography and Security +0906.5061 +0906.5063 Group Theory +0906.5070 Data Structures and Algorithms +0906.5073 Multimedia +0906.5076 Geometric Topology +0906.5083 Probability +0906.5085 +0906.5089 Data Structures and Algorithms +0906.5091 Superconductivity +0906.5093 +0906.5096 Algebraic Geometry +0906.5099 Statistical Mechanics +0906.5101 Probability +0906.5102 Algebraic Geometry +0906.5105 Operator Algebras +0906.5110 Cryptography and Security +0906.5114 Computation and Language +0906.5116 Materials Science +0906.5119 Artificial Intelligence +0906.5120 Computer Vision and Pattern Recognition +0906.5123 Cryptography and Security +0906.5124 Representation Theory +0906.5125 Complex Variables +0906.5126 Strongly Correlated Electrons +0906.5131 Information Theory +0906.5133 Complex Variables +0906.5138 +0906.5140 Analysis of PDEs +0906.5143 General Mathematics +0906.5144 General Mathematics +0906.5147 Plasma Physics +0906.5148 Artificial Intelligence +0906.5149 Plasma Physics +0906.5151 Learning +0906.5152 Plasma Physics +0906.5162 Plasma Physics +0906.5172 Mesoscale and Nanoscale Physics +0906.5179 Statistics Theory +0906.5183 Theory +0906.5185 Quantum Algebra +0906.5186 Atomic Physics +0906.5190 Machine Learning +0906.5192 Differential Geometry +0906.5193 Geometric Topology +0906.5196 Combinatorics +0906.5198 Algebraic Topology +0906.5201 Fluid Dynamics +0906.5205 +0906.5208 Medical Physics +0906.5212 Optimization and Control +0906.5213 Algebraic Geometry +0906.5215 Instrumentation and Detectors +0906.5219 +0906.5229 Quantum Gases +0906.5230 Combinatorics +0906.5231 +0906.5233 Artificial Intelligence +0906.5243 Solar and Stellar Astrophysics +0906.5244 Strongly Correlated Electrons +0906.5246 Statistical Mechanics +0906.5253 Cosmology and Nongalactic Astrophysics +0906.5254 +0906.5256 Phenomenology +0906.5257 High Energy Astrophysical Phenomena +0906.5259 Instrumentation and Methods for Astrophysics +0906.5262 Analysis of PDEs +0906.5263 Machine Learning +0906.5265 Experiment +0906.5274 Chemical Physics +0906.5275 Materials Science +0906.5278 Information Theory +0906.5279 +0906.5282 Exactly Solvable and Integrable Systems +0906.5283 Representation Theory +0906.5286 Information Retrieval +0906.5288 Representation Theory +0906.5289 Information Theory +0906.5296 Probability +0906.5298 Strongly Correlated Electrons +0906.5301 +0906.5316 +0906.5322 Probability +0906.5324 Phenomenology +0906.5327 Other Condensed Matter +0906.5328 +0906.5332 Materials Science +0906.5336 Theory +0906.5337 Statistical Mechanics +0906.5341 Superconductivity +0906.5342 Phenomenology +0906.5343 Analysis of PDEs +cs/0703103 Databases +math/0502174 Algebraic Geometry +math/0505512 Algebraic Topology +math/0509439 Group Theory +math/0601265 Geometric Topology +math/0602003 Geometric Topology +math/0602204 Algebraic Topology +math/0602218 Algebraic Topology +math/0608027 Complex Variables +physics/0403127 General Physics +physics/0606254 Classical Physics +quant-ph/0603102 +0704.0229 Computational Complexity +0704.1482 Phenomenology +0704.3416 Algebraic Geometry +0705.2128 Probability +0708.3932 Probability +0709.1682 +0710.0105 Computation and Language +0711.3363 Analysis of PDEs +0712.2814 Mesoscale and Nanoscale Physics +0712.3320 +0801.3824 Mesoscale and Nanoscale Physics +0801.4635 +0801.4929 Phenomenology +0802.3463 +0803.0019 Phenomenology +0805.0244 Analysis of PDEs +0805.0964 Phenomenology +0805.1519 +0805.1800 Phenomenology +0805.2891 Learning +0806.0041 Quantum Algebra +0806.2174 +0806.2397 Physics and Society +0806.2624 Atomic Physics +0808.0190 +0808.0834 Superconductivity +0808.1266 Experiment +0808.1824 +0808.1898 +0808.2345 Statistical Mechanics +0808.2607 Mesoscale and Nanoscale Physics +0808.3363 +0808.3433 Populations and Evolution +0808.3945 Theory +0808.4014 Populations and Evolution +0809.0783 Theory +0809.1382 Materials Science +0809.2730 Distributed, Parallel, and Cluster Computing +0809.3326 Phenomenology +0809.3761 +0809.4076 +0810.0784 +0810.1081 Lattice +0810.1157 +0810.1510 Statistical Mechanics +0810.2139 Algebraic Geometry +0810.2786 Theory +0810.3782 Theory +0810.3994 Plasma Physics +0810.4126 Phenomenology +0810.4712 +0810.4914 +0810.5002 +0810.5199 Theory +0810.5258 Theory +0810.5365 Lattice +0810.5394 Theory +0810.5767 Theory +0811.1263 Quantitative Methods +0811.1422 Disordered Systems and Neural Networks +0811.2013 Superconductivity +0811.2453 +0811.2523 Superconductivity +0811.3661 General Topology +0812.0385 +0812.2382 Strongly Correlated Electrons +0812.4290 +0901.1001 High Energy Astrophysical Phenomena +0901.1008 Solar and Stellar Astrophysics +0901.1064 Astrophysics of Galaxies +0901.2029 Materials Science +0901.2506 Rings and Algebras +0901.2868 Plasma Physics +0901.3103 Rings and Algebras +0901.3143 Instrumentation and Methods for Astrophysics +0901.3149 Cosmology and Nongalactic Astrophysics +0901.3162 Solar and Stellar Astrophysics +0901.3164 Phenomenology +0901.3175 Exactly Solvable and Integrable Systems +0901.3187 Chaotic Dynamics +0901.3189 Other Computer Science +0901.3192 Information Theory +0901.3199 Networking and Internet Architecture +0901.3200 Analysis of PDEs +0901.3201 Analysis of PDEs +0901.3202 Learning +0901.3209 History and Overview +0901.3210 Mesoscale and Nanoscale Physics +0901.3211 Algebraic Geometry +0901.3212 Logic +0901.3218 Other Condensed Matter +0901.3220 Statistics Theory +0901.3224 Chemical Physics +0901.3229 Materials Science +0901.3232 Quantum Algebra +0901.3235 Number Theory +0901.3236 Metric Geometry +0901.3240 Earth and Planetary Astrophysics +0901.3242 +0901.3245 Statistics Theory +0901.3253 +0901.3261 Probability +0901.3265 +0901.3267 Statistics Theory +0901.3279 Earth and Planetary Astrophysics +0901.3282 Mesoscale and Nanoscale Physics +0901.3284 Metric Geometry +0901.3290 Statistics Theory +0901.3295 Algebraic Topology +0901.3298 Theory +0901.3301 Phenomenology +0901.3308 Algebraic Topology +0901.3309 +0901.3312 Numerical Analysis +0901.3316 +0901.3317 Solar and Stellar Astrophysics +0901.3318 Risk Management +0901.3319 Solar and Stellar Astrophysics +0901.3324 Differential Geometry +0901.3325 Differential Geometry +0901.3328 Complex Variables +0901.3329 Instrumentation and Methods for Astrophysics +0901.3332 Experiment +0901.3337 Phenomenology +0901.3338 Materials Science +0901.3340 Metric Geometry +0901.3342 Solar and Stellar Astrophysics +0901.3343 Metric Geometry +0901.3346 Number Theory +0901.3348 Data Structures and Algorithms +astro-ph/0504013 +astro-ph/0505591 +astro-ph/0605637 +astro-ph/0610127 +astro-ph/0703191 +cond-mat/0511690 Disordered Systems and Neural Networks +cond-mat/0703162 Mesoscale and Nanoscale Physics +hep-ex/0307006 Experiment +math-ph/0211076 +math-ph/0403007 +math/0208253 Functional Analysis +math/0603392 Probability +math/0605252 Combinatorics +math/0609835 Probability +math/0612081 Algebraic Geometry +math/0612510 Algebraic Geometry +math/0612791 Probability +math/0701314 Statistics Theory +math/0703434 Probability +nlin/0410043 Exactly Solvable and Integrable Systems +nucl-th/0512078 +physics/0703125 Medical Physics +0705.1614 Probability +0705.2293 Number Theory +0706.0675 Symplectic Geometry +0706.3300 +0709.3836 +0711.1374 Phenomenology +0711.1736 Phenomenology +0711.3635 +0801.1884 Analysis of PDEs +0801.3881 Soft Condensed Matter +0803.2332 Strongly Correlated Electrons +0803.4059 Superconductivity +0804.0394 Analysis of PDEs +0804.1000 Analysis of PDEs +0806.0680 Representation Theory +0806.2588 Algebraic Geometry +0806.3193 Symplectic Geometry +0806.3839 Atomic Physics +0807.0099 Theory +0807.3076 Optimization and Control +0807.5139 Geometric Topology +0808.1193 +0808.3290 Statistical Mechanics +0809.1308 Dynamical Systems +0809.1869 Experiment +0809.4248 +0811.1895 Statistical Mechanics +0811.2140 +0811.2275 Strongly Correlated Electrons +0811.2616 +0811.4385 Phenomenology +0811.4603 Digital Libraries +0812.2148 Statistical Finance +0812.3424 +0901.1280 +0901.1320 Populations and Evolution +0901.1520 High Energy Astrophysical Phenomena +0901.1902 Theory +0901.2118 +0901.2526 Astrophysics of Galaxies +0901.3513 Physics and Society +0901.3847 Strongly Correlated Electrons +0901.4218 Analysis of PDEs +0902.1110 +0902.1331 Theory +0902.2338 Strongly Correlated Electrons +0902.2752 Phenomenology +0903.0795 Disordered Systems and Neural Networks +0903.1711 Computational Physics +0903.2022 Statistical Mechanics +0903.3038 Phenomenology +0903.3303 Strongly Correlated Electrons +0903.3613 Dynamical Systems +0903.3944 Statistical Mechanics +0904.0213 Astrophysics of Galaxies +0904.3417 +0904.3440 Quantum Gases +0905.1844 Cosmology and Nongalactic Astrophysics +0905.2451 Statistical Mechanics +0905.3665 Geometric Topology +0905.4103 Physics and Society +0905.4127 Disordered Systems and Neural Networks +0906.0215 Optimization and Control +0906.1408 Strongly Correlated Electrons +0906.2705 Statistical Mechanics +0906.3861 High Energy Astrophysical Phenomena +0906.4103 Astrophysics of Galaxies +0906.4104 Astrophysics of Galaxies +0906.4105 Astrophysics of Galaxies +0906.4894 Astrophysics of Galaxies +0906.4955 Popular Physics +0906.5476 Earth and Planetary Astrophysics +0907.0004 Astrophysics of Galaxies +0907.0345 Popular Physics +0907.0606 Earth and Planetary Astrophysics +0907.0613 Earth and Planetary Astrophysics +0907.0812 Solar and Stellar Astrophysics +0907.0816 Solar and Stellar Astrophysics +0907.0817 Solar and Stellar Astrophysics +0907.0818 Solar and Stellar Astrophysics +0907.0826 +0907.0864 Earth and Planetary Astrophysics +0907.1033 Solar and Stellar Astrophysics +0907.1073 Solar and Stellar Astrophysics +0907.1398 Group Theory +0907.1453 Cosmology and Nongalactic Astrophysics +0907.1731 High Energy Astrophysical Phenomena +0907.1736 +0907.2084 Cosmology and Nongalactic Astrophysics +0907.2259 Solar and Stellar Astrophysics +0907.2334 Solar and Stellar Astrophysics +0907.2398 Solar and Stellar Astrophysics +0907.2401 +0907.2708 Complex Variables +0907.2711 Probability +0907.2718 Dynamical Systems +0907.2725 Experiment +0907.2726 Algebraic Topology +0907.2734 Superconductivity +0907.2735 Atmospheric and Oceanic Physics +0907.2740 Strongly Correlated Electrons +0907.2741 Data Structures and Algorithms +0907.2744 Functional Analysis +0907.2745 Analysis of PDEs +0907.2747 Superconductivity +0907.2748 Probability +0907.2753 Solar and Stellar Astrophysics +0907.2758 Analysis of PDEs +0907.2759 Multiagent Systems +0907.2763 General Physics +0907.2766 Number Theory +0907.2768 Instrumentation and Methods for Astrophysics +0907.2771 Instrumentation and Methods for Astrophysics +0907.2775 Artificial Intelligence +0907.2776 +0907.2781 Algebraic Geometry +0907.2782 Experiment +0907.2784 Algebraic Geometry +0907.2785 Probability +0907.2786 Number Theory +0907.2790 General Physics +0907.2791 Statistical Mechanics +0907.2794 Chaotic Dynamics +0907.2795 Medical Physics +0907.2796 +0907.2797 Phenomenology +0907.2803 Statistical Mechanics +0907.2805 Other Condensed Matter +0907.2809 Optics +0907.2815 Mesoscale and Nanoscale Physics +0907.2816 Experiment +0907.2820 Complex Variables +0907.2822 +0907.2824 Molecular Networks +0907.2829 Methodology +0907.2832 Methodology +0907.2834 Complex Variables +0907.2835 +0907.2836 Complex Variables +0907.2839 +0907.2841 Materials Science +0907.2844 Functional Analysis +0907.2851 Materials Science +0907.2854 Probability +0907.2858 Functional Analysis +0907.2859 Information Theory +0907.2860 Combinatorics +0907.2861 Functional Analysis +0907.2864 Geophysics +0907.2865 Combinatorics +0907.2868 Databases +0907.2875 Statistical Mechanics +0907.2878 +0907.2890 Cosmology and Nongalactic Astrophysics +0907.2892 Number Theory +0907.2895 General Physics +0907.2900 Astrophysics of Galaxies +0907.2903 Mesoscale and Nanoscale Physics +0907.2909 General Physics +0907.2912 Superconductivity +astro-ph/9310046 +astro-ph/9403031 +astro-ph/9407093 +astro-ph/9508126 +cond-mat/0608295 Superconductivity +math-ph/0309026 +math/0408379 Geometric Topology +math/0604310 Analysis of PDEs +math/0611405 Operator Algebras +nucl-th/0506009 +quant-ph/0609213 +quant-ph/0702032 +0709.3150 Lattice +0710.3415 +0711.2319 +0712.0710 Theory +0712.1269 Combinatorics +0712.2683 Materials Science +0804.1371 Symplectic Geometry +0805.1178 +0807.0383 Combinatorics +0807.3952 +0808.2444 Algebraic Geometry +0809.0463 Statistical Mechanics +0809.1146 Mesoscale and Nanoscale Physics +0809.3463 Probability +0810.0580 Strongly Correlated Electrons +0810.2935 Mesoscale and Nanoscale Physics +0810.4405 Statistical Mechanics +0810.5081 Other Condensed Matter +0810.5358 Materials Science +0811.0649 Chaotic Dynamics +0811.2455 Materials Science +0901.0072 Mesoscale and Nanoscale Physics +0901.2321 Machine Learning +0902.0802 Analysis of PDEs +0902.1848 Cosmology and Nongalactic Astrophysics +0903.2058 Algebraic Geometry +0904.0129 Other Condensed Matter +0904.1232 +0904.1421 Group Theory +0904.1423 Cell Behavior +0904.1428 Chaotic Dynamics +0904.1431 Adaptation and Self-Organizing Systems +0904.1435 Computational Complexity +0904.1456 Adaptation and Self-Organizing Systems +0904.1457 Differential Geometry +0904.1459 Numerical Analysis +0904.1461 Differential Geometry +0904.1462 Analysis of PDEs +0904.1468 Algebraic Geometry +0904.1469 Group Theory +0904.1475 Differential Geometry +0904.1480 Probability +0904.1483 Risk Management +0904.1488 Logic in Computer Science +0904.1489 Analysis of PDEs +0904.1490 Dynamical Systems +0904.1496 +0904.1497 +0904.1500 Statistical Finance +0904.1506 +0904.1511 +0904.1512 Mesoscale and Nanoscale Physics +0904.1514 Analysis of PDEs +0904.1519 Algebraic Geometry +0904.1520 Materials Science +0904.1525 Geometric Topology +0904.1526 Probability +0904.1529 Logic in Computer Science +0904.1531 Geometric Topology +0904.1533 Group Theory +0904.1536 Analysis of PDEs +0904.1539 Solar and Stellar Astrophysics +0904.1543 Materials Science +0904.1548 Materials Science +0904.1550 Mesoscale and Nanoscale Physics +0904.1553 Category Theory +0904.1559 Functional Analysis +0904.1560 Algebraic Geometry +0904.1561 Strongly Correlated Electrons +0904.1564 Spectral Theory +0904.1565 Materials Science +0904.1567 Classical Analysis and ODEs +0904.1571 Superconductivity +0904.1578 General Physics +0904.1579 Artificial Intelligence +0904.1584 Phenomenology +0904.1593 Algebraic Geometry +gr-qc/0701136 +0704.0433 +0704.1779 Exactly Solvable and Integrable Systems +0705.1534 +0705.1955 +0706.0343 +0706.0345 +0707.3089 +0708.1739 Probability +0708.4344 Strongly Correlated Electrons +0709.0067 +0711.0923 Statistical Mechanics +0711.3519 +0712.4300 +0801.2272 Number Theory +0802.2743 Analysis of PDEs +0803.3889 Dynamical Systems +0804.0864 Numerical Analysis +0804.3373 General Physics +0804.3511 Functional Analysis +0804.4506 Phenomenology +0805.2351 Exactly Solvable and Integrable Systems +0805.3774 Theory +0805.3977 Strongly Correlated Electrons +0805.4565 Phenomenology +0806.1903 +0806.3429 Materials Science +0806.4421 Number Theory +0806.4520 Statistical Mechanics +0807.1078 Number Theory +0807.1589 Chemical Physics +0807.4843 +0808.0514 Theory +0808.1262 +0808.2464 Phenomenology +0808.2983 Phenomenology +0808.3475 Phenomenology +0808.3490 Phenomenology +0808.3645 Theory +0809.0191 Phenomenology +0809.0842 Phenomenology +0809.0943 Phenomenology +0809.1523 +0809.1984 +0809.2325 +0809.2890 Phenomenology +0809.2972 Lattice +0810.0713 Phenomenology +0810.0836 Mesoscale and Nanoscale Physics +0810.1350 Strongly Correlated Electrons +0810.1362 Phenomenology +0810.2135 Materials Science +0810.3490 Phenomenology +0810.3916 Theory +0810.4545 Phenomenology +0810.4858 Phenomenology +0810.4962 Theory +0810.5426 +0810.5746 Lattice +0811.0099 +0811.0176 Phenomenology +0811.0657 Optics +0811.0694 Disordered Systems and Neural Networks +0811.1799 +0811.2577 Phenomenology +0811.3101 Phenomenology +0811.3364 +0811.3404 Phenomenology +0811.3488 +0811.4433 +0812.0532 Strongly Correlated Electrons +0812.0640 Combinatorics +0812.3639 Instrumentation and Detectors +0812.4395 +0812.4500 Instrumentation and Detectors +0812.4641 Theory +0812.4657 +0812.4910 Phenomenology +0901.0732 Plasma Physics +0901.0939 +0901.1069 Phenomenology +0901.1938 +0901.3244 Optics +0901.3651 Theory +0901.4500 Experiment +0902.0596 Mesoscale and Nanoscale Physics +0902.1195 Phenomenology +0902.2447 Algebraic Geometry +0902.3056 Distributed, Parallel, and Cluster Computing +0902.4043 +0902.4052 +0902.4061 +0902.4166 Atomic Physics +0902.4208 Mesoscale and Nanoscale Physics +0902.4234 Algebraic Geometry +0902.4239 High Energy Astrophysical Phenomena +0902.4245 Computational Finance +0902.4250 Information Theory +0902.4254 +0902.4255 Cosmology and Nongalactic Astrophysics +0902.4260 +0902.4273 Statistical Mechanics +0902.4274 General Finance +0902.4288 Rings and Algebras +0902.4289 Algebraic Geometry +0902.4293 Optimization and Control +0902.4298 Analysis of PDEs +0902.4299 Analysis of PDEs +0902.4300 +0902.4301 Complex Variables +0902.4303 Plasma Physics +0902.4306 Analysis of PDEs +0902.4317 Symplectic Geometry +0902.4324 Probability +0902.4326 Fluid Dynamics +0902.4327 +0902.4334 Strongly Correlated Electrons +0902.4337 Computational Geometry +0902.4339 K-Theory and Homology +0902.4340 Probability +0902.4342 Commutative Algebra +0902.4344 Statistics Theory +0902.4346 +0902.4350 Statistical Mechanics +0902.4354 Solar and Stellar Astrophysics +0902.4362 +0902.4365 K-Theory and Homology +0902.4369 Probability +0902.4374 Materials Science +0902.4375 Quantum Algebra +0902.4376 Exactly Solvable and Integrable Systems +0902.4389 Machine Learning +0902.4393 Algebraic Geometry +0902.4394 Information Theory +0902.4395 Exactly Solvable and Integrable Systems +0902.4396 Algebraic Topology +0902.4408 +0902.4410 Statistics Theory +0902.4411 +0902.4415 Optimization and Control +0902.4416 +0902.4417 Molecular Networks +0902.4419 Differential Geometry +0902.4422 Materials Science +0902.4428 Representation Theory +0902.4440 Theory +0902.4441 Combinatorics +0902.4449 Information Theory +0902.4452 Complex Variables +astro-ph/0401293 +astro-ph/0605425 +astro-ph/0609078 +astro-ph/0610181 +cond-mat/0607387 Disordered Systems and Neural Networks +cs/0404056 Logic in Computer Science +gr-qc/0611158 +hep-th/0612306 Theory +math/0109124 Complex Variables +math/0401360 Geometric Topology +math/0408087 Complex Variables +math/0410061 Symplectic Geometry +math/0412107 Operator Algebras +math/0412380 Geometric Topology +math/0506488 Algebraic Geometry +math/0601376 Algebraic Topology +nlin/0412034 Exactly Solvable and Integrable Systems +nucl-th/0301074 +quant-ph/0701138 +0706.1311 Algebraic Geometry +0707.0100 Optimization and Control +0707.3040 Probability +0709.2644 Differential Geometry +0712.0964 Probability +0712.3092 Quantum Algebra +0805.2720 Analysis of PDEs +0805.4359 Applications +0806.0131 Statistical Mechanics +0807.5072 +0808.1808 Probability +0809.1944 Mesoscale and Nanoscale Physics +0809.3624 Geometric Topology +0809.4060 +0810.0632 Mesoscale and Nanoscale Physics +0810.3355 Quantum Algebra +0810.3380 +0810.5602 +0811.3387 Networking and Internet Architecture +0901.0777 Differential Geometry +0901.0786 Artificial Intelligence +0901.1345 +0901.1398 Mesoscale and Nanoscale Physics +0901.1933 Statistical Mechanics +0901.2850 Artificial Intelligence +0901.3669 Optics +0902.0084 Discrete Mathematics +0902.0482 Algebraic Geometry +0902.1241 Geometric Topology +0902.3167 Astrophysics of Galaxies +0902.4817 Astrophysics of Galaxies +0903.1825 Superconductivity +0903.2346 Quantum Gases +0904.0342 Logic +0904.1093 +0904.1959 Populations and Evolution +0905.0292 Statistical Mechanics +0905.1572 Phenomenology +0905.1640 Complex Variables +0905.1899 Theory +0905.2009 Superconductivity +0905.3143 Differential Geometry +0905.3205 Soft Condensed Matter +0905.3229 Optimization and Control +0905.3445 Mesoscale and Nanoscale Physics +0905.3457 Mesoscale and Nanoscale Physics +0905.3555 Cosmology and Nongalactic Astrophysics +0905.3564 Numerical Analysis +0905.3568 Experiment +0905.3569 Other Computer Science +0905.3570 Operator Algebras +0905.3578 Theory +0905.3580 Algebraic Geometry +0905.3584 Computational Geometry +0905.3585 Physics and Society +0905.3590 History and Overview +0905.3604 Rings and Algebras +0905.3611 History and Overview +0905.3618 Mesoscale and Nanoscale Physics +0905.3619 Statistics Theory +0905.3620 Applications +0905.3624 Numerical Analysis +0905.3625 Astrophysics of Galaxies +0905.3631 Algebraic Geometry +0905.3633 Earth and Planetary Astrophysics +0905.3636 Probability +0905.3642 Dynamical Systems +0905.3644 Other Condensed Matter +0905.3649 Combinatorics +0905.3651 Rings and Algebras +0905.3661 Phenomenology +0905.3662 Differential Geometry +0905.3684 Experiment +0905.3693 Experiment +0905.3694 Rings and Algebras +0905.3696 Rings and Algebras +0905.3703 Metric Geometry +0905.3707 Materials Science +0905.3709 Computer Science and Game Theory +0905.3712 Instrumentation and Methods for Astrophysics +0905.3716 Combinatorics +0905.3720 Artificial Intelligence +0905.3723 Fluid Dynamics +0905.3736 Dynamical Systems +0905.3739 Theory +cond-mat/0511462 Materials Science +cond-mat/0511463 Materials Science +cond-mat/0601670 Materials Science +math/0511116 Probability +math/0606250 Algebraic Geometry +math/0611529 Probability +quant-ph/0301098 +quant-ph/0406175 +0704.0137 +0705.3217 +0707.0614 Algebraic Topology +0707.3163 Probability +0710.0183 Complex Variables +0712.1663 Methodology +0712.1836 +0801.1405 K-Theory and Homology +0801.2334 +0802.1486 Phenomenology +0804.0060 Other Condensed Matter +0806.0928 Data Structures and Algorithms +0807.1816 Applications +0808.3310 Geophysics +0809.0241 Risk Management +0809.1361 +0809.3230 Spectral Theory +0809.4142 Geometric Topology +0810.0958 +0810.3163 Combinatorics +0811.0448 Statistical Finance +0811.3512 Phenomenology +0811.4126 Soft Condensed Matter +0812.1606 +0812.3292 +0812.3609 Mesoscale and Nanoscale Physics +0812.4189 +0812.4314 +0812.4513 Statistical Mechanics +0901.0348 Statistical Mechanics +0901.1343 Mesoscale and Nanoscale Physics +0901.1374 Probability +0901.2569 Cosmology and Nongalactic Astrophysics +0901.2944 +0901.3225 Statistical Mechanics +0901.3368 Theory +0901.3621 Fluid Dynamics +0901.3846 Other Condensed Matter +0902.0887 Strongly Correlated Electrons +0902.1429 Geophysics +0902.3270 Soft Condensed Matter +0902.3775 Chemical Physics +0902.3925 Neurons and Cognition +0903.0976 Other Condensed Matter +0903.2744 +0903.4521 Data Structures and Algorithms +0903.5071 +0904.0768 Information Theory +0904.2541 Computer Science and Game Theory +0904.3912 Computational Complexity +0904.4010 Statistical Mechanics +0904.4107 Analysis of PDEs +0905.1176 Materials Science +0905.1546 Information Theory +0905.1600 Algebraic Geometry +0905.1683 Biological Physics +0905.1740 Computers and Society +0905.2129 +0905.2166 Functional Analysis +0905.2181 Numerical Analysis +0905.2190 Phenomenology +0905.2195 Logic in Computer Science +0905.2197 Classical Analysis and ODEs +0905.2198 Number Theory +0905.2200 Distributed, Parallel, and Cluster Computing +0905.2201 Experiment +0905.2203 Distributed, Parallel, and Cluster Computing +0905.2204 Materials Science +0905.2205 Phenomenology +0905.2206 High Energy Astrophysical Phenomena +0905.2214 Data Structures and Algorithms +0905.2218 Computational Physics +0905.2219 Exactly Solvable and Integrable Systems +0905.2220 Probability +0905.2226 +0905.2232 Mesoscale and Nanoscale Physics +0905.2236 Machine Learning +0905.2244 +0905.2246 +0905.2249 Computational Geometry +0905.2251 Combinatorics +0905.2256 Probability +0905.2257 Programming Languages +0905.2260 Other Condensed Matter +0905.2264 History and Philosophy of Physics +0905.2265 Probability +0905.2266 Theory +0905.2271 +0905.2274 High Energy Astrophysical Phenomena +0905.2278 Dynamical Systems +0905.2283 Rings and Algebras +0905.2285 Experiment +0905.2286 Algebraic Geometry +0905.2288 Software Engineering +0905.2293 Dynamical Systems +0905.2297 Information Theory +0905.2299 Phenomenology +0905.2301 Analysis of PDEs +0905.2303 Algebraic Geometry +0905.2305 Experiment +0905.2308 Phenomenology +0905.2314 +0905.2315 Applications +0905.2319 Other Condensed Matter +0905.2323 Experiment +0905.2333 Combinatorics +0905.2343 Complex Variables +0905.2347 Learning +0905.2350 Phenomenology +0905.2352 Cosmology and Nongalactic Astrophysics +0905.2354 K-Theory and Homology +0905.2366 Trading and Market Microstructure +0905.2367 Software Engineering +0905.2371 Differential Geometry +0905.2372 Probability +0905.2375 Differential Geometry +0905.2379 Cosmology and Nongalactic Astrophysics +0905.2383 Number Theory +0905.2384 Instrumentation and Methods for Astrophysics +0905.2390 Phenomenology +0905.2394 Phenomenology +0905.2396 Algebraic Geometry +0905.2399 Probability +0905.2400 +0905.2403 Representation Theory +0905.2404 Numerical Analysis +cond-mat/0006172 Superconductivity +gr-qc/0612050 +gr-qc/0612052 +gr-qc/0612086 +gr-qc/0612163 +math/0308279 Differential Geometry +math/0402153 Differential Geometry +math/0501189 Probability +math/0506337 Probability +math/0604260 Algebraic Topology +math/0605159 Probability +math/0703615 Probability +quant-ph/0505151 +quant-ph/0507128 +0706.2366 Materials Science +0707.0373 Experiment +0708.2173 Databases +0710.1344 +0712.3730 Analysis of PDEs +0801.4071 Materials Science +0803.0487 Theory +0804.3125 Theory +0805.4196 Theory +0806.2106 Adaptation and Self-Organizing Systems +0807.0414 +0807.1095 Theory +0807.1278 +0807.5116 +0809.4528 +0810.0435 Quantum Algebra +0812.2337 Mesoscale and Nanoscale Physics +0812.2809 Soft Condensed Matter +0812.3897 Materials Science +0812.4280 Populations and Evolution +0901.1903 Phenomenology +0901.3711 Physics and Society +0901.4491 Functional Analysis +0902.0269 Materials Science +0902.0637 Functional Analysis +0902.0722 Analysis of PDEs +0902.1591 Information Theory +0903.0949 Instrumentation and Methods for Astrophysics +0903.2182 Analysis of PDEs +0903.4797 Phenomenology +0904.1079 +0904.1415 Phenomenology +0904.1674 Analysis of PDEs +0904.4160 Earth and Planetary Astrophysics +0905.1334 Theory +0905.2221 Phenomenology +0905.3251 +0906.0807 Optimization and Control +0906.0842 High Energy Astrophysical Phenomena +0906.0908 Theory +0906.4295 Phenomenology +0906.4990 Theory +0906.5207 Phenomenology +0906.5281 +0907.0567 Statistical Mechanics +0907.0658 Phenomenology +0907.1344 Phenomenology +0907.3846 Disordered Systems and Neural Networks +0907.4259 Experiment +0907.4286 Experiment +0907.4898 Accelerator Physics +0907.5369 Experiment +0908.0409 Theory +0908.1419 Mesoscale and Nanoscale Physics +0908.2148 +0908.2274 Lattice +0908.3133 Solar and Stellar Astrophysics +0908.3156 Experiment +0908.3486 Theory +0908.4315 Phenomenology +0909.0280 Geometric Topology +0909.0520 Phenomenology +0909.1750 Phenomenology +0909.2097 Quantum Gases +0909.2886 Strongly Correlated Electrons +0909.4471 Phenomenology +0909.4610 Phenomenology +0909.4901 Theory +0909.5278 Data Structures and Algorithms +0910.4710 Statistical Mechanics +0911.2205 Optimization and Control +0912.1317 +0912.2807 Physics and Society +0912.3034 Cosmology and Nongalactic Astrophysics +0912.3325 Statistical Mechanics +0912.3497 High Energy Astrophysical Phenomena +0912.3573 Data Analysis, Statistics and Probability +0912.3794 High Energy Astrophysical Phenomena +0912.3809 High Energy Astrophysical Phenomena +0912.3811 High Energy Astrophysical Phenomena +0912.3812 Classical Analysis and ODEs +0912.3813 High Energy Astrophysical Phenomena +0912.3814 Metric Geometry +0912.3815 High Energy Astrophysical Phenomena +0912.3817 Cosmology and Nongalactic Astrophysics +0912.3821 High Energy Astrophysical Phenomena +0912.3828 High Energy Astrophysical Phenomena +0912.3830 Cosmology and Nongalactic Astrophysics +0912.3831 High Energy Astrophysical Phenomena +0912.3833 +0912.3834 Discrete Mathematics +0912.3839 Instrumentation and Methods for Astrophysics +0912.3841 Instrumentation and Methods for Astrophysics +0912.3843 High Energy Astrophysical Phenomena +0912.3846 Optics +0912.3847 High Energy Astrophysical Phenomena +0912.3848 Functional Analysis +0912.3850 High Energy Astrophysical Phenomena +0912.3852 Performance +0912.3855 High Energy Astrophysical Phenomena +0912.3856 Networking and Internet Architecture +0912.3857 High Energy Astrophysical Phenomena +0912.3859 Strongly Correlated Electrons +0912.3861 Methodology +0912.3865 Probability +0912.3867 Numerical Analysis +0912.3868 Combinatorics +0912.3870 +0912.3875 +0912.3882 Digital Libraries +0912.3887 High Energy Astrophysical Phenomena +0912.3898 Cosmology and Nongalactic Astrophysics +0912.3902 Superconductivity +0912.3908 Optics +0912.3913 Cosmology and Nongalactic Astrophysics +0912.3914 Differential Geometry +0912.3917 Computation and Language +0912.3918 Cosmology and Nongalactic Astrophysics +0912.3919 Cosmology and Nongalactic Astrophysics +0912.3920 Computer Science and Game Theory +0912.3921 Cryptography and Security +0912.3922 Other Computer Science +0912.3923 Graphics +0912.3924 Databases +0912.3926 Computers and Society +0912.3927 Numerical Analysis +0912.3928 Cosmology and Nongalactic Astrophysics +0912.3933 Algebraic Topology +0912.3939 +0912.3949 High Energy Astrophysical Phenomena +0912.3951 Optimization and Control +0912.3955 Computers and Society +0912.3956 Robotics +0912.3957 Information Retrieval +0912.3959 Other Computer Science +0912.3961 Multiagent Systems +0912.3962 Other Computer Science +0912.3963 Data Structures and Algorithms +0912.3964 Information Theory +0912.3965 Other Computer Science +0912.3966 Networking and Internet Architecture +0912.3969 Other Computer Science +0912.3971 Other Computer Science +0912.3972 Networking and Internet Architecture +0912.3974 Computational Geometry +0912.3975 Other Computer Science +0912.3978 Information Theory +0912.3980 Cryptography and Security +0912.3981 Information Theory +0912.3982 Other Computer Science +0912.3983 Learning +0912.3984 Multiagent Systems +0912.3985 Networking and Internet Architecture +0912.3986 Cryptography and Security +0912.3991 Geophysics +0912.3996 General Physics +0912.4005 Functional Analysis +0912.4010 Quantum Algebra +0912.4015 Solar and Stellar Astrophysics +0912.4017 Algebraic Geometry +0912.4018 Solar and Stellar Astrophysics +0912.4021 Theory +0912.4022 +0912.4023 Logic in Computer Science +0912.4030 Other Condensed Matter +0912.4032 Functional Analysis +0912.4041 Materials Science +0912.4044 Physics and Society +0912.4048 Combinatorics +0912.4055 Representation Theory +0912.4056 Solar and Stellar Astrophysics +0912.4062 Operating Systems +0912.4063 Differential Geometry +0912.4064 Differential Geometry +0912.4065 Probability +0912.4071 +0912.4072 Numerical Analysis +0912.4073 +0912.4075 Differential Geometry +0912.4077 Solar and Stellar Astrophysics +0912.4087 Networking and Internet Architecture +0912.4095 Differential Geometry +0912.4097 Commutative Algebra +0912.4098 +0912.4100 Combinatorics +0912.4101 Differential Geometry +0912.4102 Biological Physics +0912.4107 Information Theory +0912.4114 +0912.4120 Theory +0912.4121 Analysis of PDEs +0912.4122 Soft Condensed Matter +0912.4130 Operator Algebras +0912.4135 Analysis of PDEs +0912.4140 Numerical Analysis +0912.4141 Digital Libraries +0912.4142 High Energy Astrophysical Phenomena +0912.4145 Exactly Solvable and Integrable Systems +0912.4146 Analysis of PDEs +0912.4159 Astrophysics of Galaxies +0912.4162 Materials Science +0912.4163 High Energy Astrophysical Phenomena +0912.4169 Methodology +0912.4172 +0912.4173 Materials Science +0912.4181 Dynamical Systems +0912.4184 Logic in Computer Science +0912.4192 Cosmology and Nongalactic Astrophysics +0912.4206 Theory +0912.4214 Functional Analysis +0912.4218 Mesoscale and Nanoscale Physics +0912.4222 Experiment +0912.4227 +0912.4229 High Energy Astrophysical Phenomena +0912.4238 Other Condensed Matter +0912.4240 Combinatorics +0912.4241 Networking and Internet Architecture +0912.4246 Analysis of PDEs +0912.4247 Pattern Formation and Solitons +0912.4253 Probability +cond-mat/0402101 Materials Science +cond-mat/0506777 Materials Science +cond-mat/0511711 Materials Science +0705.3752 Algebraic Geometry +0709.1974 Complex Variables +0801.4047 Pricing of Securities +0803.1529 Quantum Algebra +0803.4196 Phenomenology +0804.3196 +0805.3869 Analysis of PDEs +0807.3451 Programming Languages +0808.0992 Theory +0811.0886 Geometric Topology +0812.1922 Strongly Correlated Electrons +0901.0681 Functional Analysis +math-ph/0701061 +math/0408286 Geometric Topology +math/0510158 Geometric Topology +math/0608739 Geometric Topology +math/0611626 Combinatorics +0705.4175 +0707.0446 Phenomenology +0707.4557 Phenomenology +0708.0241 Phenomenology +0709.3434 Phenomenology +0710.1523 Phenomenology +0711.3254 Phenomenology +0711.4237 +0712.3152 Phenomenology +0801.4118 +0802.0562 Instrumentation and Detectors +0803.3995 +0804.1544 Theory +0805.1241 +0806.0059 Materials Science +0806.1335 Experiment +0806.2367 Phenomenology +0807.0148 Experiment +0807.0594 Experiment +0807.1084 Strongly Correlated Electrons +0807.2755 +0807.4939 +0808.1960 +0809.0623 +0809.2062 Lattice +0809.2736 Lattice +0809.4441 +0810.0503 Information Theory +0810.0774 Soft Condensed Matter +0810.1077 Theory +0810.1542 Algebraic Geometry +0810.1750 Theory +0810.2167 +0810.2994 Probability +0810.3180 Theory +0811.0494 Mesoscale and Nanoscale Physics +0811.0703 Phenomenology +0811.2995 Disordered Systems and Neural Networks +0811.4459 +0811.4520 +0812.0202 Chaotic Dynamics +0812.0205 +0812.4972 General Physics +astro-ph/0110169 +astro-ph/0210501 +astro-ph/0210615 +astro-ph/0601065 +astro-ph/0703584 +cond-mat/0612491 Other Condensed Matter +hep-ph/0502157 Phenomenology +hep-ph/0503202 Phenomenology +hep-ph/0506248 Phenomenology +hep-ph/0508122 Phenomenology +hep-ph/0604244 Phenomenology +hep-ph/0607007 Phenomenology +hep-ph/0703252 Phenomenology +hep-ph/9806272 Phenomenology +hep-th/0610032 Theory +math/0611412 Algebraic Geometry +math/0611459 Algebraic Geometry +physics/0508086 Fluid Dynamics +physics/0512206 Fluid Dynamics +quant-ph/0504011 +quant-ph/0506115 +0704.3074 General Physics +0801.1608 Probability +0801.3083 Statistical Mechanics +0801.3359 Phenomenology +0803.3030 Soft Condensed Matter +0804.3765 +0805.1979 Differential Geometry +0806.0765 Soft Condensed Matter +0806.1349 +0806.2556 Strongly Correlated Electrons +0807.2417 Soft Condensed Matter +0807.3855 Materials Science +0807.4427 Materials Science +0808.1233 Biomolecules +0808.2290 Strongly Correlated Electrons +0808.2586 Cryptography and Security +0808.2654 Cryptography and Security +0808.2668 Cryptography and Security +0809.0536 Information Theory +0809.1449 Phenomenology +0809.3133 +0809.4216 Mesoscale and Nanoscale Physics +0809.4284 Materials Science +0809.4348 Operator Algebras +0809.5073 +0809.5257 Materials Science +0810.0303 +0810.0790 Superconductivity +0810.0942 +0810.1716 Superconductivity +0810.2892 Mesoscale and Nanoscale Physics +0810.5019 Statistical Mechanics +0811.0015 Atomic Physics +0811.3785 +0811.3871 Geometric Topology +0812.3817 Exactly Solvable and Integrable Systems +0812.4729 +0901.0004 Combinatorics +0901.0024 Applications +0901.0026 Machine Learning +0901.0029 Materials Science +0901.0033 Pricing of Securities +0901.0039 Probability +0901.0043 Logic in Computer Science +0901.0048 Logic in Computer Science +0901.0050 Mesoscale and Nanoscale Physics +0901.0058 Soft Condensed Matter +0901.0060 General Physics +0901.0062 Information Theory +0901.0064 Phenomenology +0901.0066 Populations and Evolution +0901.0067 Materials Science +0901.0070 Materials Science +0901.0084 Quantum Algebra +0901.0087 Materials Science +0901.0091 Trading and Market Microstructure +0901.0097 Superconductivity +0901.0099 Chaotic Dynamics +0901.0100 +0901.0109 Phenomenology +0901.0122 +0901.0123 Operator Algebras +0901.0132 General Topology +0901.0136 Instrumentation and Detectors +0901.0140 Optics +0901.0141 Quantum Algebra +0901.0144 Analysis of PDEs +0901.0147 Analysis of PDEs +0901.0153 Chaotic Dynamics +0901.0157 Materials Science +0901.0159 Statistical Mechanics +0901.0162 Strongly Correlated Electrons +0901.0172 Fluid Dynamics +0901.0174 Analysis of PDEs +0901.0175 General Topology +0901.0179 Distributed, Parallel, and Cluster Computing +0901.0182 Statistics Theory +0901.0185 Analysis of PDEs +0901.0186 Combinatorics +0901.0191 Statistical Mechanics +0901.0192 Differential Geometry +0901.0194 Classical Physics +0901.0196 Operator Algebras +0901.0205 Data Structures and Algorithms +0901.0206 Disordered Systems and Neural Networks +0901.0207 Probability +0901.0213 Digital Libraries +0901.0216 Adaptation and Self-Organizing Systems +0901.0220 Information Theory +0901.0222 Robotics +0901.0225 Methodology +0901.0227 Lattice +0901.0228 Phenomenology +0901.0229 Probability +0901.0234 Classical Analysis and ODEs +0901.0235 Quantum Algebra +0901.0237 +0901.0241 Phenomenology +0901.0246 Probability +0901.0249 Number Theory +0901.0251 Populations and Evolution +0901.0252 Information Theory +0901.0269 Information Theory +0901.0270 Fluid Dynamics +0901.0276 Atomic Physics +0901.0279 Soft Condensed Matter +hep-th/0703063 Theory +math/0506130 Metric Geometry +math/0506135 Metric Geometry +math/0508003 Representation Theory +math/0604245 Differential Geometry +math/0605217 Representation Theory +math/0607113 Differential Geometry +math/0610454 Numerical Analysis +math/0610748 Differential Geometry +physics/0504026 Physics and Society +0712.3800 +0805.3435 Mesoscale and Nanoscale Physics +0807.1848 Materials Science +0807.2307 Materials Science +0810.0318 General Mathematics +0811.4647 Analysis of PDEs +0811.4678 General Finance +0812.4512 Differential Geometry +cond-mat/0702372 Materials Science +math/0603694 K-Theory and Homology +0705.3516 Classical Analysis and ODEs +0806.1783 Theory +0807.3404 Symplectic Geometry +0811.2430 +0811.4465 Theory +0812.2485 Mesoscale and Nanoscale Physics +0901.2204 Information Theory +0901.2207 Information Theory +0902.1215 Geometric Topology +0902.1273 Representation Theory +0902.2633 Cellular Automata and Lattice Gases +0904.0500 +0904.4255 Materials Science +0905.2734 Physics and Society +0905.3397 High Energy Astrophysical Phenomena +cs/0307023 Computational Geometry +math/0304270 Algebraic Geometry +math/0412148 Algebraic Geometry +math/0503201 Representation Theory +math/0511229 Group Theory +math/0702731 Representation Theory +math/9811035 Rings and Algebras +0707.4072 Machine Learning +0710.2611 Artificial Intelligence +0711.0797 +0804.2360 Differential Geometry +0806.2323 Other Condensed Matter +0807.0377 Materials Science +0807.1827 Combinatorics +0809.1123 Mesoscale and Nanoscale Physics +0809.1818 +0809.4975 +0809.5236 Theory +0810.2731 Combinatorics +0810.3327 Combinatorics +0811.0414 Algebraic Geometry +0812.0335 Differential Geometry +0812.2111 Geometric Topology +0812.4816 Theory +0901.0409 Algebraic Geometry +0901.2348 Strongly Correlated Electrons +0901.4064 +0902.1560 Differential Geometry +0902.1845 Mesoscale and Nanoscale Physics +0902.1902 Mesoscale and Nanoscale Physics +0903.1079 Strongly Correlated Electrons +0903.2142 Differential Geometry +0903.2870 Learning +0903.3391 Quantum Algebra +0904.0911 +0904.0948 Mesoscale and Nanoscale Physics +0904.3600 Phenomenology +0905.1278 Symplectic Geometry +0905.1309 +0905.2039 Strongly Correlated Electrons +0905.3249 Superconductivity +0905.3395 Algebraic Topology +0905.3828 Theory +0906.1846 Superconductivity +0906.3116 Theory +0906.4033 Probability +0906.5390 Representation Theory +0907.3449 Cosmology and Nongalactic Astrophysics +0907.4931 Number Theory +0908.1920 Probability +0908.3647 Strongly Correlated Electrons +0909.0134 Theory +0909.1400 General Topology +0909.1491 Mesoscale and Nanoscale Physics +0909.1535 Phenomenology +0909.1917 Materials Science +0909.2049 Strongly Correlated Electrons +0910.2122 Superconductivity +0910.4460 Quantum Algebra +0911.0040 Superconductivity +0911.1028 Differential Geometry +0911.1827 Differential Geometry +0911.1858 Chemical Physics +0911.1983 Group Theory +0911.4715 +0911.4988 Logic in Computer Science +0911.5046 Information Retrieval +0911.5057 Medical Physics +0911.5118 Biological Physics +0911.5214 Numerical Analysis +0911.5246 Logic in Computer Science +0911.5339 Probability +0911.5365 Optimization and Control +0911.5369 Dynamical Systems +0911.5372 Computer Vision and Pattern Recognition +0911.5375 Materials Science +0911.5378 Information Retrieval +0911.5381 Atomic and Molecular Clusters +0911.5384 Data Structures and Algorithms +0911.5400 History and Philosophy of Physics +0911.5402 Quantum Algebra +0911.5404 Human-Computer Interaction +0911.5406 Materials Science +0911.5407 Classical Analysis and ODEs +0911.5412 Spectral Theory +0911.5423 Commutative Algebra +0911.5424 High Energy Astrophysical Phenomena +0911.5431 Rings and Algebras +0911.5433 Group Theory +0911.5435 Phenomenology +0911.5437 Instrumentation and Methods for Astrophysics +0911.5438 Distributed, Parallel, and Cluster Computing +0911.5439 Machine Learning +0911.5442 Solar and Stellar Astrophysics +0911.5444 Cryptography and Security +0911.5445 Logic in Computer Science +0911.5446 Software Engineering +0911.5447 Logic in Computer Science +0911.5449 Programming Languages +0911.5450 Probability +0911.5461 Cosmology and Nongalactic Astrophysics +0911.5469 Mesoscale and Nanoscale Physics +0911.5470 +0911.5473 Probability +0911.5474 Algebraic Geometry +0911.5475 Dynamical Systems +0911.5479 +0911.5481 Mesoscale and Nanoscale Physics +0911.5485 Atmospheric and Oceanic Physics +0911.5486 Discrete Mathematics +0911.5487 Information Theory +0911.5489 Functional Analysis +0911.5491 Materials Science +0911.5497 Plasma Physics +0911.5503 Pricing of Securities +0911.5504 Combinatorics +0911.5506 Quantum Gases +0911.5507 Atomic and Molecular Clusters +0911.5509 Information Theory +0911.5512 +0911.5513 +0911.5518 Molecular Networks +0911.5525 Logic in Computer Science +0911.5527 Information Theory +0911.5531 Disordered Systems and Neural Networks +0911.5534 Solar and Stellar Astrophysics +0911.5538 Differential Geometry +0911.5539 Phenomenology +0911.5540 Algebraic Geometry +0911.5543 Number Theory +0911.5545 Algebraic Geometry +0911.5551 Phenomenology +0911.5552 Classical Analysis and ODEs +0911.5553 Information Theory +0911.5557 +0911.5559 Functional Analysis +0911.5562 Materials Science +0911.5569 Functional Analysis +0911.5579 Pricing of Securities +0911.5590 Soft Condensed Matter +0911.5593 Distributed, Parallel, and Cluster Computing +0911.5594 Representation Theory +0911.5599 Analysis of PDEs +0911.5606 Cosmology and Nongalactic Astrophysics +0911.5613 Superconductivity +0911.5619 Mesoscale and Nanoscale Physics +0911.5620 Combinatorics +0911.5622 Mesoscale and Nanoscale Physics +0911.5627 Accelerator Physics +0911.5629 Probability +0911.5630 Atmospheric and Oceanic Physics +0911.5639 Solar and Stellar Astrophysics +0911.5645 +0911.5646 Probability +0911.5652 Human-Computer Interaction +0911.5653 Materials Science +0911.5659 Experiment +0911.5661 Algebraic Geometry +0911.5663 Cosmology and Nongalactic Astrophysics +0911.5670 Statistical Mechanics +0911.5673 Other Condensed Matter +0911.5686 +0911.5690 Chaotic Dynamics +0911.5694 Combinatorics +0911.5703 Computation and Language +0911.5707 Algebraic Geometry +0911.5708 Learning +0911.5710 Theory +0911.5715 Dynamical Systems +0911.5717 Algebraic Geometry +0911.5722 Combinatorics +0911.5724 Differential Geometry +0911.5726 Number Theory +hep-ph/0605029 Phenomenology +math/0507418 Symplectic Geometry +math/0511349 Group Theory +physics/0605146 Physics and Society +0704.3631 Commutative Algebra +0705.2234 Theory +0705.2366 Theory +0707.1998 Phenomenology +0707.2593 +0707.4270 Theory +0711.2512 Theory +0801.4457 Theory +0802.0463 Classical Analysis and ODEs +0802.0474 Classical Analysis and ODEs +0802.3276 Statistics Theory +0803.2895 Phenomenology +0804.0614 Theory +0805.3696 Theory +0805.4598 Applications +0807.0197 Theory +0807.0426 Probability +0807.3280 Soft Condensed Matter +0810.4015 Discrete Mathematics +0811.3716 Biomolecules +0812.0649 +0812.4725 Fluid Dynamics +0901.1203 Theory +0901.1314 Theory +0901.3530 Strongly Correlated Electrons +0901.3662 Optics +0902.3908 Theory +0902.4360 Mesoscale and Nanoscale Physics +0903.0628 Theory +0903.4932 Differential Geometry +0904.1355 Mesoscale and Nanoscale Physics +0904.1625 Phenomenology +0904.1989 Information Retrieval +0904.3167 Algebraic Geometry +0904.4134 Solar and Stellar Astrophysics +0904.4144 +0904.4158 Solar and Stellar Astrophysics +0904.4313 Cosmology and Nongalactic Astrophysics +0905.0582 Statistical Finance +0905.2869 Experiment +0905.3734 +0906.0557 Networking and Internet Architecture +0906.0635 Theory +0906.0636 +0906.1967 +0906.4529 +0906.5094 +0906.5135 Theory +0907.2092 Mesoscale and Nanoscale Physics +0907.2349 Statistical Mechanics +0907.3292 +0907.4880 Combinatorics +0907.5423 Astrophysics of Galaxies +0908.0911 Commutative Algebra +0908.1434 Operator Algebras +0909.0743 Number Theory +0909.2266 Rings and Algebras +0909.2383 Other Condensed Matter +0909.2400 Combinatorics +0909.3348 Theory +0909.3802 Algebraic Geometry +0909.4852 +0909.5508 Phenomenology +0910.0274 +0910.0528 Mesoscale and Nanoscale Physics +0910.0562 Differential Geometry +0910.0629 Algebraic Geometry +0910.0841 Mesoscale and Nanoscale Physics +0910.0845 Statistics Theory +0910.0859 Functional Analysis +0910.0861 Statistical Mechanics +0910.0862 Materials Science +0910.0868 Logic in Computer Science +0910.0878 Astrophysics of Galaxies +0910.0880 Multiagent Systems +0910.0881 Cryptography and Security +0910.0885 General Topology +0910.0887 Information Theory +0910.0888 Complex Variables +0910.0892 Experiment +0910.0896 Instrumentation and Methods for Astrophysics +0910.0899 Information Theory +0910.0903 Combinatorics +0910.0905 Combinatorics +0910.0910 Experiment +0910.0916 Computer Science and Game Theory +0910.0918 Information Theory +0910.0919 Commutative Algebra +0910.0920 Classical Physics +0910.0924 General Topology +0910.0928 Computational Engineering, Finance, and Science +0910.0932 Rings and Algebras +0910.0935 Differential Geometry +0910.0937 Metric Geometry +0910.0943 Probability +0910.0953 Other Condensed Matter +0910.0961 Statistical Mechanics +0910.0963 Combinatorics +0910.0966 High Energy Astrophysical Phenomena +0910.0967 Phenomenology +0910.0970 Commutative Algebra +0910.0971 Analysis of PDEs +0910.0977 Biomolecules +0910.0978 Analysis of PDEs +0910.0982 Geometric Topology +0910.0983 Databases +0910.0987 Number Theory +0910.0996 Software Engineering +0910.0997 Quantum Algebra +0910.0998 Analysis of PDEs +0910.1000 History and Overview +0910.1016 Solar and Stellar Astrophysics +0910.1020 Logic in Computer Science +0910.1023 +0910.1025 Cosmology and Nongalactic Astrophysics +0910.1026 Artificial Intelligence +0910.1027 Statistics Theory +0910.1028 Logic in Computer Science +0910.1042 +0910.1045 +0910.1047 Exactly Solvable and Integrable Systems +0910.1051 Materials Science +0910.1063 +0910.1068 Populations and Evolution +0910.1079 Other Condensed Matter +0910.1080 Experiment +astro-ph/0002238 +astro-ph/0004393 +astro-ph/0006436 +astro-ph/0008167 +astro-ph/0008329 +astro-ph/0008392 +astro-ph/0010527 +astro-ph/0010552 +astro-ph/0012120 +astro-ph/0101354 +astro-ph/0102406 +astro-ph/0104419 +astro-ph/0105068 +astro-ph/0107416 +astro-ph/0107417 +astro-ph/0107418 +astro-ph/0107419 +astro-ph/0107421 +astro-ph/0111575 +astro-ph/0201164 +astro-ph/0204021 +astro-ph/0206146 +astro-ph/0207047 +astro-ph/0207199 +astro-ph/0207338 +astro-ph/0212417 +astro-ph/0212425 +astro-ph/0301280 +astro-ph/0302496 +astro-ph/0304536 +astro-ph/0306324 +astro-ph/0310571 +astro-ph/0401249 +astro-ph/0403292 +astro-ph/0404497 +astro-ph/0406375 +astro-ph/0406594 +astro-ph/0408418 +astro-ph/0410166 +astro-ph/0410281 +astro-ph/0411557 +astro-ph/0412191 +astro-ph/0501531 +astro-ph/0603369 +astro-ph/0702206 +astro-ph/9306021 +astro-ph/9307017 +astro-ph/9307018 +astro-ph/9311053 +astro-ph/9405042 +astro-ph/9409038 +astro-ph/9502012 +astro-ph/9510129 +astro-ph/9511079 +astro-ph/9603007 +astro-ph/9603021 +astro-ph/9611174 +astro-ph/9706198 +astro-ph/9708020 +astro-ph/9709058 +astro-ph/9712057 +astro-ph/9712301 +astro-ph/9803177 +astro-ph/9807130 +astro-ph/9809001 +astro-ph/9905192 +astro-ph/9905257 +cond-mat/0612571 Disordered Systems and Neural Networks +gr-qc/0011055 +gr-qc/0412114 +gr-qc/0505134 +gr-qc/0604043 +gr-qc/0606116 +gr-qc/9302002 +gr-qc/9305018 +gr-qc/9405001 +gr-qc/9607079 +gr-qc/9612060 +hep-ph/0002053 Phenomenology +hep-ph/0002129 Phenomenology +hep-ph/0005261 Phenomenology +hep-ph/0008012 Phenomenology +hep-ph/0009269 Phenomenology +hep-ph/0009299 Phenomenology +hep-ph/0011306 Phenomenology +hep-ph/0012363 Phenomenology +hep-ph/0102288 Phenomenology +hep-ph/0102294 Phenomenology +hep-ph/0105080 Phenomenology +hep-ph/0105139 Phenomenology +hep-ph/0106247 Phenomenology +hep-ph/0110089 Phenomenology +hep-ph/0112118 Phenomenology +hep-ph/0202269 Phenomenology +hep-ph/0203138 Phenomenology +hep-ph/0206162 Phenomenology +hep-ph/0207056 Phenomenology +hep-ph/0208026 Phenomenology +hep-ph/0212127 Phenomenology +hep-ph/0304056 Phenomenology +hep-ph/0308001 Phenomenology +hep-ph/0308055 Phenomenology +hep-ph/0309100 Phenomenology +hep-ph/0401227 Phenomenology +hep-ph/0403036 Phenomenology +hep-ph/0408045 Phenomenology +hep-ph/0412046 Phenomenology +hep-ph/0503257 Phenomenology +hep-ph/0505081 Phenomenology +hep-ph/0506083 Phenomenology +hep-ph/0507100 Phenomenology +hep-ph/0609052 Phenomenology +hep-ph/0701084 Phenomenology +hep-ph/9411414 Phenomenology +hep-ph/9412210 Phenomenology +hep-ph/9504287 Phenomenology +hep-ph/9506350 Phenomenology +hep-ph/9605273 Phenomenology +hep-ph/9607251 Phenomenology +hep-ph/9607433 Phenomenology +hep-ph/9702298 Phenomenology +hep-ph/9702343 Phenomenology +hep-ph/9706228 Phenomenology +hep-ph/9706230 Phenomenology +hep-ph/9708213 Phenomenology +hep-ph/9709473 Phenomenology +hep-ph/9711421 Phenomenology +hep-ph/9801376 Phenomenology +hep-ph/9803309 Phenomenology +hep-ph/9805293 Phenomenology +hep-ph/9807233 Phenomenology +hep-ph/9807360 Phenomenology +hep-ph/9901400 Phenomenology +hep-ph/9902267 Phenomenology +hep-ph/9902371 Phenomenology +hep-ph/9904248 Phenomenology +hep-ph/9908524 Phenomenology +hep-ph/9910387 Phenomenology +hep-ph/9912231 Phenomenology +hep-th/0001089 Theory +hep-th/0001167 Theory +hep-th/0001206 Theory +hep-th/0002121 Theory +hep-th/0003024 Theory +hep-th/0003197 Theory +hep-th/0005172 Theory +hep-th/0005251 Theory +hep-th/0006047 Theory +hep-th/0006091 Theory +hep-th/0008050 Theory +hep-th/0009037 Theory +hep-th/0009061 Theory +hep-th/0009141 Theory +hep-th/0010087 Theory +hep-th/0010175 Theory +hep-th/0010198 Theory +hep-th/0011031 Theory +hep-th/0011149 Theory +hep-th/0012175 Theory +hep-th/0101045 Theory +hep-th/0101229 Theory +hep-th/0101234 Theory +hep-th/0102092 Theory +hep-th/0102128 Theory +hep-th/0103209 Theory +hep-th/0104015 Theory +hep-th/0104201 Theory +hep-th/0104239 Theory +hep-th/0106001 Theory +hep-th/0107037 Theory +hep-th/0107138 Theory +hep-th/0108191 Theory +hep-th/0109093 Theory +hep-th/0110238 Theory +hep-th/0110291 Theory +hep-th/0111165 Theory +hep-th/0202024 Theory +hep-th/0202124 Theory +hep-th/0203018 Theory +hep-th/0204008 Theory +hep-th/0204174 Theory +hep-th/0205084 Theory +hep-th/0206136 Theory +hep-th/0206202 Theory +hep-th/0208031 Theory +hep-th/0210109 Theory +hep-th/0211118 Theory +hep-th/0212106 Theory +hep-th/0212323 Theory +hep-th/0301026 Theory +hep-th/0302149 Theory +hep-th/0303016 Theory +hep-th/0305242 Theory +hep-th/0306088 Theory +hep-th/0307001 Theory +hep-th/0307052 Theory +hep-th/0308200 Theory +hep-th/0310120 Theory +hep-th/0310159 Theory +hep-th/0311124 Theory +hep-th/0311125 Theory +hep-th/0311182 Theory +hep-th/0312002 Theory +hep-th/0312155 Theory +hep-th/0401001 Theory +hep-th/0402024 Theory +hep-th/0402223 Theory +hep-th/0403079 Theory +hep-th/0404008 Theory +hep-th/0405061 Theory +hep-th/0406118 Theory +hep-th/0406214 Theory +hep-th/0407030 Theory +hep-th/0409072 Theory +hep-th/0409302 Theory +hep-th/0409307 Theory +hep-th/0410074 Theory +hep-th/0411061 Theory +hep-th/0411119 Theory +hep-th/0411173 Theory +hep-th/0411218 Theory +hep-th/0411279 Theory +hep-th/0412221 Theory +hep-th/0412250 Theory +hep-th/0501117 Theory +hep-th/0502077 Theory +hep-th/0502168 Theory +hep-th/0505129 Theory +hep-th/0506233 Theory +hep-th/0507034 Theory +hep-th/0507205 Theory +hep-th/0510081 Theory +hep-th/0510170 Theory +hep-th/0603211 Theory +hep-th/0604024 Theory +hep-th/0604125 Theory +hep-th/0605110 Theory +hep-th/0607202 Theory +hep-th/0703011 Theory +hep-th/0703184 Theory +hep-th/9109053 Theory +hep-th/9110015 Theory +hep-th/9111002 Theory +hep-th/9112014 Theory +hep-th/9201047 Theory +hep-th/9201050 Theory +hep-th/9201072 Theory +hep-th/9202046 Theory +hep-th/9202060 Theory +hep-th/9203023 Theory +hep-th/9203024 Theory +hep-th/9204038 Theory +hep-th/9204053 Theory +hep-th/9204090 Theory +hep-th/9205046 Theory +hep-th/9205054 Theory +hep-th/9205114 Theory +hep-th/9206070 Theory +hep-th/9209012 Theory +hep-th/9209111 Theory +hep-th/9212017 Theory +hep-th/9212089 Theory +hep-th/9212117 Theory +hep-th/9301099 Theory +hep-th/9302073 Theory +hep-th/9303112 Theory +hep-th/9304115 Theory +hep-th/9305030 Theory +hep-th/9306069 Theory +hep-th/9307049 Theory +hep-th/9307168 Theory +hep-th/9308100 Theory +hep-th/9308124 Theory +hep-th/9308139 Theory +hep-th/9309110 Theory +hep-th/9310118 Theory +hep-th/9311098 Theory +hep-th/9401007 Theory +hep-th/9401070 Theory +hep-th/9402133 Theory +hep-th/9402136 Theory +hep-th/9404114 Theory +hep-th/9404170 Theory +hep-th/9405002 Theory +hep-th/9405117 Theory +hep-th/9405124 Theory +hep-th/9406090 Theory +hep-th/9406091 Theory +hep-th/9409089 Theory +hep-th/9410005 Theory +hep-th/9411101 Theory +hep-th/9412079 Theory +hep-th/9501131 Theory +hep-th/9503158 Theory +hep-th/9503159 Theory +hep-th/9504006 Theory +hep-th/9504121 Theory +hep-th/9506035 Theory +hep-th/9506052 Theory +hep-th/9506131 Theory +hep-th/9506138 Theory +hep-th/9507143 Theory +hep-th/9508042 Theory +hep-th/9508096 Theory +hep-th/9508155 Theory +hep-th/9509141 Theory +hep-th/9509170 Theory +hep-th/9510022 Theory +hep-th/9511080 Theory +hep-th/9511161 Theory +hep-th/9511162 Theory +hep-th/9511193 Theory +hep-th/9511203 Theory +hep-th/9511228 Theory +hep-th/9512012 Theory +hep-th/9512129 Theory +hep-th/9512153 Theory +hep-th/9512154 Theory +hep-th/9602126 Theory +hep-th/9602140 Theory +hep-th/9603037 Theory +hep-th/9603176 Theory +hep-th/9604042 Theory +hep-th/9604052 Theory +hep-th/9604058 Theory +hep-th/9604127 Theory +hep-th/9604177 Theory +hep-th/9605077 Theory +hep-th/9605082 Theory +hep-th/9605200 Theory +hep-th/9607027 Theory +hep-th/9607108 Theory +hep-th/9607184 Theory +hep-th/9608099 Theory +hep-th/9608154 Theory +hep-th/9608167 Theory +hep-th/9608173 Theory +hep-th/9608194 Theory +hep-th/9609052 Theory +hep-th/9609075 Theory +hep-th/9609111 Theory +hep-th/9610107 Theory +hep-th/9610155 Theory +hep-th/9611079 Theory +hep-th/9611134 Theory +hep-th/9612162 Theory +hep-th/9612224 Theory +hep-th/9701177 Theory +hep-th/9702058 Theory +hep-th/9702103 Theory +hep-th/9702202 Theory +hep-th/9703012 Theory +hep-th/9703102 Theory +hep-th/9704185 Theory +hep-th/9704186 Theory +hep-th/9705169 Theory +hep-th/9705174 Theory +hep-th/9706096 Theory +hep-th/9707182 Theory +hep-th/9707207 Theory +hep-th/9708055 Theory +hep-th/9708065 Theory +hep-th/9708109 Theory +hep-th/9709027 Theory +hep-th/9709054 Theory +hep-th/9709222 Theory +hep-th/9710119 Theory +hep-th/9710121 Theory +hep-th/9710155 Theory +hep-th/9710243 Theory +hep-th/9710244 Theory +hep-th/9711063 Theory +hep-th/9711089 Theory +hep-th/9711157 Theory +hep-th/9712199 Theory +hep-th/9712223 Theory +hep-th/9802183 Theory +hep-th/9802193 Theory +hep-th/9803061 Theory +hep-th/9803163 Theory +hep-th/9803203 Theory +hep-th/9803232 Theory +hep-th/9803259 Theory +hep-th/9804074 Theory +hep-th/9805151 Theory +hep-th/9806017 Theory +hep-th/9806106 Theory +hep-th/9807006 Theory +hep-th/9807051 Theory +hep-th/9807076 Theory +hep-th/9807079 Theory +hep-th/9807173 Theory +hep-th/9809158 Theory +hep-th/9809167 Theory +hep-th/9810159 Theory +hep-th/9810179 Theory +hep-th/9810254 Theory +hep-th/9811045 Theory +hep-th/9812034 Theory +hep-th/9901041 Theory +hep-th/9901080 Theory +hep-th/9903001 Theory +hep-th/9903028 Theory +hep-th/9903057 Theory +hep-th/9903093 Theory +hep-th/9903228 Theory +hep-th/9905012 Theory +hep-th/9905161 Theory +hep-th/9905196 Theory +hep-th/9906098 Theory +hep-th/9906101 Theory +hep-th/9906161 Theory +hep-th/9906168 Theory +hep-th/9907038 Theory +hep-th/9908056 Theory +hep-th/9908135 Theory +hep-th/9908155 Theory +hep-th/9908169 Theory +hep-th/9909013 Theory +hep-th/9909130 Theory +hep-th/9909184 Theory +hep-th/9909203 Theory +hep-th/9910219 Theory +hep-th/9910258 Theory +hep-th/9911027 Theory +hep-th/9911101 Theory +hep-th/9911203 Theory +hep-th/9912049 Theory +hep-th/9912065 Theory +hep-th/9912100 Theory +hep-th/9912151 Theory +hep-th/9912225 Theory +math/0303191 Differential Geometry +math/0702533 Algebraic Geometry +math/0703875 Probability +physics/0510188 Popular Physics +quant-ph/0101077 +quant-ph/9907009 +0710.0655 +0712.4165 Statistical Mechanics +0803.2455 Symplectic Geometry +0804.0935 Number Theory +0804.1298 +0811.1352 +0812.3948 +0902.2132 +0905.0937 Materials Science +0906.5168 +0907.2489 Functional Analysis +0908.2236 +gr-qc/0702020 +math/0004002 Algebraic Geometry +math/0308201 Algebraic Geometry +math/0610974 Algebraic Geometry +0705.2377 Geometric Topology +0705.4354 Phenomenology +0707.0420 Theory +0707.4491 Probability +0708.0457 +0708.0755 +0708.1408 +0709.0080 Superconductivity +0709.1621 +0709.3375 Combinatorics +0710.5643 +0711.3968 Geometric Topology +0801.3068 Mesoscale and Nanoscale Physics +0802.3667 Superconductivity +0803.3707 Phenomenology +0804.0547 Algebraic Geometry +0804.1251 +0804.3018 Statistical Mechanics +0804.3054 +0804.3568 Phenomenology +0804.3740 Phenomenology +0805.0380 +0805.2077 Combinatorics +0805.3350 Algebraic Topology +0805.4174 Combinatorics +0806.0908 Superconductivity +0806.3822 Phenomenology +0806.3927 Other Condensed Matter +0806.3930 Other Condensed Matter +0806.4361 Data Structures and Algorithms +0806.4517 +0807.2155 Quantum Algebra +0807.2279 Superconductivity +0807.2752 Probability +0807.4897 Theory +0807.4898 Probability +0808.0039 Analysis of PDEs +0808.0916 Strongly Correlated Electrons +0808.1997 Theory +0808.2784 +0808.3803 Theory +0809.0127 Combinatorics +0809.0222 Phenomenology +0809.1607 Phenomenology +0809.1931 Phenomenology +0809.2462 Theory +0809.2815 Number Theory +0809.3084 Superconductivity +0809.4102 Theory +0809.4148 Theory +0809.4359 +0809.4378 Theory +0809.4481 Rings and Algebras +0809.4527 +0809.4592 +0810.0025 +0810.1122 Number Theory +0810.1787 Theory +0810.1931 Number Theory +0810.3843 +0810.4512 +0810.5038 +0810.5241 +0810.5487 Combinatorics +0810.5549 Metric Geometry +0810.5574 Phenomenology +0811.0747 Commutative Algebra +0811.1052 +0811.1283 +0811.1750 Theory +0811.1864 Theory +0811.1892 +0811.2296 Theory +0811.2757 Other Condensed Matter +0811.3310 Strongly Correlated Electrons +0811.4060 +0812.0078 Theory +0812.0098 +0812.0614 +0812.0637 Phenomenology +0812.0734 Experiment +0812.1076 Physics and Society +0812.1564 Theory +0812.1944 Theory +0812.2190 Phenomenology +0812.2203 Phenomenology +0812.2729 +0812.2889 Theory +0812.2958 Phenomenology +0812.3192 Phenomenology +0812.3423 Theory +0812.3521 Theory +0812.4143 +0812.4935 +0812.5047 Phenomenology +0901.0504 Statistical Mechanics +0901.0505 Phenomenology +0901.0780 Strongly Correlated Electrons +0901.0963 +0901.1015 Experiment +0901.1126 Phenomenology +0901.1210 Experiment +0901.1251 +0901.1576 +0901.1758 Theory +0901.2272 +0901.2795 Theory +0901.2849 Phenomenology +0901.2909 +0901.3074 +0901.3366 +0901.3922 +0901.3957 Experiment +0901.4078 +0901.4629 +0902.0825 +0902.0836 Strongly Correlated Electrons +0902.0907 +0902.1483 Phenomenology +0902.2550 +0902.3287 Information Theory +0902.3759 +0902.3895 +0903.0306 Theory +0903.1091 Plasma Physics +0903.1278 +0903.2033 Number Theory +0903.2317 General Physics +0903.3560 Superconductivity +0903.4388 Superconductivity +0904.0053 Quantum Gases +0904.0430 Statistics Theory +0904.2380 Theory +0904.3552 Other Computer Science +0904.3565 Instrumentation and Methods for Astrophysics +0904.3572 Analysis of PDEs +0904.3576 +0904.3577 +0904.3578 Physics and Society +0904.3583 Analysis of PDEs +0904.3585 Materials Science +0904.3586 Algebraic Geometry +0904.3588 Logic in Computer Science +0904.3589 Analysis of PDEs +0904.3590 Algebraic Geometry +0904.3591 Algebraic Geometry +0904.3593 Theory +0904.3595 Optimization and Control +0904.3606 Combinatorics +0904.3611 Networking and Internet Architecture +0904.3614 Classical Physics +0904.3615 Analysis of PDEs +0904.3616 Biomolecules +0904.3622 Differential Geometry +0904.3624 Algebraic Geometry +0904.3630 Materials Science +0904.3631 Other Computer Science +0904.3633 Software Engineering +0904.3634 Software Engineering +0904.3637 +0904.3638 Numerical Analysis +0904.3647 Instrumentation and Methods for Astrophysics +0904.3648 Software Engineering +0904.3649 Biomolecules +0904.3650 Neural and Evolutionary Computing +0904.3651 Chaotic Dynamics +0904.3652 Classical Physics +0904.3654 Biomolecules +0904.3659 Instrumentation and Methods for Astrophysics +0904.3660 +0904.3663 Chemical Physics +0904.3664 Learning +0904.3666 +0904.3667 Learning +0904.3669 Multiagent Systems +0904.3671 +0904.3674 Rings and Algebras +0904.3675 Operator Algebras +0904.3679 Chemical Physics +0904.3680 +0904.3683 Differential Geometry +0904.3684 Phenomenology +0904.3685 Instrumentation and Detectors +0904.3688 Dynamical Systems +0904.3693 Multimedia +0904.3694 Multimedia +0904.3698 Software Engineering +0904.3700 Biomolecules +0904.3701 Artificial Intelligence +0904.3705 Phenomenology +0904.3707 Strongly Correlated Electrons +0904.3711 Other Computer Science +0904.3713 Phenomenology +0904.3714 Other Computer Science +0904.3715 Other Computer Science +0904.3716 Software Engineering +0904.3718 Software Engineering +0904.3720 Strongly Correlated Electrons +0904.3721 Algebraic Geometry +0904.3726 Analysis of PDEs +0904.3740 Probability +0904.3742 Complex Variables +cond-mat/0606783 Superconductivity +cond-mat/0607093 Superconductivity +cond-mat/0612292 Mesoscale and Nanoscale Physics +gr-qc/0701032 +hep-ph/0504279 Phenomenology +hep-th/0701255 Theory +math-ph/0409007 +math-ph/0412070 +math-ph/0604001 +math-ph/0607028 +math-ph/0608003 +math/0601443 Geometric Topology +math/0603701 Geometric Topology +math/0605171 Combinatorics +math/0702513 Probability +physics/0410127 Classical Physics +0704.2161 Rings and Algebras +0709.4516 Neurons and Cognition +0711.3080 General Physics +0804.1047 Theory +0805.2478 +0807.1841 Classical Physics +0807.4356 +0809.2794 +0809.4055 Differential Geometry +0810.1165 +0811.2597 +0811.4464 Theory +0812.1215 Superconductivity +0812.2920 Superconductivity +0901.1504 Machine Learning +0901.2698 Information Theory +0901.4524 High Energy Astrophysical Phenomena +0901.4749 Phenomenology +0901.4969 +0903.2752 Superconductivity +0903.4068 Quantum Algebra +0903.4837 Other Condensed Matter +0903.5418 +0904.3823 Phenomenology +0905.1517 High Energy Astrophysical Phenomena +0905.2019 Soft Condensed Matter +0905.3467 Mesoscale and Nanoscale Physics +0905.4783 Quantum Gases +0906.0326 Superconductivity +0906.1960 Chaotic Dynamics +0906.2029 Analysis of PDEs +0906.2063 Instrumentation and Detectors +0906.2514 Superconductivity +0906.2654 Mesoscale and Nanoscale Physics +0906.4250 Cosmology and Nongalactic Astrophysics +0906.4568 Fluid Dynamics +0906.4606 Quantum Gases +0906.4612 Computational Complexity +0906.4731 Other Condensed Matter +0906.5220 Phenomenology +0907.0755 Physics and Society +0907.0843 High Energy Astrophysical Phenomena +0907.1231 Optics +0908.3685 Strongly Correlated Electrons +0909.3383 Cosmology and Nongalactic Astrophysics +0909.4598 Dynamical Systems +0909.5271 Rings and Algebras +0909.5639 Operator Algebras +0910.0134 Phenomenology +0910.0422 Materials Science +0910.0456 Information Theory +0910.0490 +0910.1492 Classical Analysis and ODEs +0910.1571 General Mathematics +0910.1576 General Mathematics +0910.1819 Computation +0910.1831 Probability +0910.1838 Cryptography and Security +0910.1844 Computer Vision and Pattern Recognition +0910.1845 Mathematical Software +0910.1849 Computer Vision and Pattern Recognition +0910.1852 Distributed, Parallel, and Cluster Computing +0910.1854 Soft Condensed Matter +0910.1857 Software Engineering +0910.1863 Information Theory +0910.1865 Multiagent Systems +0910.1866 Dynamical Systems +0910.1868 Computation and Language +0910.1871 Information Theory +0910.1872 +0910.1876 Cosmology and Nongalactic Astrophysics +0910.1880 Number Theory +0910.1884 Number Theory +0910.1890 Lattice +0910.1893 Analysis of PDEs +0910.1895 Optimization and Control +0910.1897 General Topology +0910.1899 Group Theory +0910.1901 Software Engineering +0910.1904 Strongly Correlated Electrons +0910.1905 Physics and Society +0910.1912 +0910.1918 Statistical Mechanics +0910.1921 Materials Science +0910.1922 Information Theory +0910.1923 Computational Geometry +0910.1926 Symbolic Computation +0910.1931 Experiment +0910.1938 Information Retrieval +0910.1939 Algebraic Geometry +0910.1942 Algebraic Topology +0910.1946 +0910.1947 Functional Analysis +0910.1949 Populations and Evolution +0910.1953 Genomics +0910.1954 Information Theory +0910.1959 Quantum Algebra +0910.1960 General Physics +0910.1962 Representation Theory +0910.1969 Data Structures and Algorithms +0910.1970 Dynamical Systems +0910.1971 Instrumentation and Methods for Astrophysics +0910.1980 Symplectic Geometry +0910.1982 Number Theory +0910.1984 +0910.1987 Instrumentation and Methods for Astrophysics +0910.1991 Representation Theory +0910.1995 Rings and Algebras +0910.1996 Probability +0910.2005 Information Theory +0910.2007 Networking and Internet Architecture +0910.2010 Geometric Topology +0910.2011 Fluid Dynamics +0910.2012 Analysis of PDEs +0910.2015 Differential Geometry +0910.2026 Metric Geometry +0910.2027 Astrophysics of Galaxies +0910.2028 Networking and Internet Architecture +0910.2029 Neural and Evolutionary Computing +0910.2033 Combinatorics +0910.2037 Functional Analysis +0910.2038 Geometric Topology +0910.2044 Exactly Solvable and Integrable Systems +0910.2047 Algebraic Geometry +0910.2048 Computers and Society +0910.2055 Number Theory +0910.2059 Logic +0910.2063 Differential Geometry +0910.2067 Differential Geometry +0910.2069 Probability +0910.2071 Phenomenology +0910.2072 Fluid Dynamics +0910.2073 +0910.2074 Quantum Gases +0910.2077 Representation Theory +0910.2080 Differential Geometry +0910.2081 Experiment +0910.2085 Differential Geometry +0910.2088 Geometric Topology +0910.2089 General Physics +0910.2090 Applications +0910.2091 Computational Finance +0910.2092 Numerical Analysis +0910.2095 Analysis of PDEs +0910.2096 Differential Geometry +0910.2099 Information Theory +0910.2100 Experiment +0910.2102 Number Theory +0910.2103 Soft Condensed Matter +0910.2105 Complex Variables +0910.2106 Phenomenology +0910.2107 Applications +0910.2108 Materials Science +0910.2111 +0910.2113 Computer Science and Game Theory +0910.2115 Cryptography and Security +0910.2127 Number Theory +0910.2130 Materials Science +0910.2136 Experiment +0910.2139 Complex Variables +0910.2149 Experiment +0910.2153 Cryptography and Security +0910.2154 Other Computer Science +0910.2156 Instrumentation and Methods for Astrophysics +0910.2157 +0910.2173 Information Theory +0910.2176 Experiment +0910.2179 Algebraic Geometry +0910.2181 Superconductivity +0910.2186 Probability +0910.2188 Algebraic Geometry +0910.2199 Materials Science +0910.2202 History and Philosophy of Physics +0910.2208 +0910.2211 Phenomenology +0910.2215 Experiment +0910.2217 Artificial Intelligence +0910.2221 Networking and Internet Architecture +0910.2222 Analysis of PDEs +0910.2223 Number Theory +cond-mat/9905433 Disordered Systems and Neural Networks +hep-ph/0210270 Phenomenology +hep-th/0002228 Theory +hep-th/9806042 Theory +hep-th/9810226 Theory +math/0509368 Representation Theory +math/0602112 Representation Theory +math/0701463 Complex Variables +math/0703027 Probability +quant-ph/0401112 +quant-ph/0609209 +0705.0769 +0709.0515 Rings and Algebras +0804.3596 +0805.2071 Populations and Evolution +0807.1731 +0807.2010 Strongly Correlated Electrons +0808.3149 +0809.0311 +0809.2080 Mesoscale and Nanoscale Physics +0809.3557 +0809.4792 Computer Science and Game Theory +0810.3938 Materials Science +0811.4387 Mesoscale and Nanoscale Physics +0811.4497 Logic in Computer Science +0812.1078 Representation Theory +0812.4991 Superconductivity +0902.3992 Rings and Algebras +0903.0503 Dynamical Systems +cond-mat/0206241 Soft Condensed Matter +math/0403440 Representation Theory +math/0409311 Differential Geometry +math/0701364 General Mathematics +0801.0282 +0805.1655 General Physics +0805.3975 +0809.4240 Instrumentation and Detectors +0812.4261 Theory +0903.0420 Theory +0903.4749 Probability +0904.0155 Quantum Gases +0904.0518 Operator Algebras +0705.3671 +0706.4442 +0707.3092 +0708.2943 +0709.1475 +0709.2032 +0709.2048 +0709.2605 +0710.2394 Phenomenology +0711.1586 +0711.3098 Phenomenology +0712.0039 +0712.0516 +0712.1207 +0712.1227 Phenomenology +0712.3043 +0712.3073 Operator Algebras +0712.3812 +0801.2430 Number Theory +0802.0603 Cryptography and Security +0802.1358 +0802.1632 Theory +0802.1829 Computational Complexity +0802.3655 Phenomenology +0803.0811 Numerical Analysis +0803.1162 +0803.1686 Statistical Mechanics +0803.3020 Lattice +0803.3895 Geometric Topology +0803.4002 Phenomenology +0803.4408 Operator Algebras +0804.1659 Phenomenology +0804.2344 +0804.2701 Digital Libraries +0804.3313 Functional Analysis +0805.0435 Phenomenology +0805.0953 +0805.1989 Phenomenology +0806.0120 +0806.0842 Soft Condensed Matter +0806.1230 Phenomenology +0806.1299 Theory +0806.1672 Superconductivity +0806.3458 Theory +0807.0292 Phenomenology +0807.1687 Lattice +0807.2593 +0807.4481 Theory +0808.0477 Phenomenology +0808.0828 +0808.1316 +0808.1587 Materials Science +0808.1707 Phenomenology +0808.1957 Other Condensed Matter +0808.2047 +0808.2113 Phenomenology +0808.2184 Theory +0808.3849 +0808.3891 Other Condensed Matter +0808.4085 +0809.0233 Statistical Mechanics +0809.0673 +0809.1837 Mesoscale and Nanoscale Physics +0809.1977 Phenomenology +0809.2012 Phenomenology +0809.2106 Phenomenology +0809.3240 +0809.3390 Phenomenology +0809.3427 Strongly Correlated Electrons +0809.3757 +0809.3844 +0810.0676 Lattice +0810.0987 Phenomenology +0810.1436 Statistical Mechanics +0810.1941 +0810.2039 Phenomenology +0810.2264 +0810.2615 +0810.2728 +0810.4048 Phenomenology +0810.4286 Superconductivity +0810.4653 Phenomenology +0810.5208 Phenomenology +0810.5692 Statistical Mechanics +0811.0110 Exactly Solvable and Integrable Systems +0811.0311 Physics and Society +0811.1266 +0811.1353 Phenomenology +0811.1405 Phenomenology +0811.2881 +0811.3542 Optics +0812.0946 Phenomenology +0812.1981 +0812.3276 Molecular Networks +0812.4642 Information Theory +0812.5004 Phenomenology +0901.0327 Numerical Analysis +0901.0330 +0901.0585 Physics and Society +0901.0656 Popular Physics +0901.0688 Commutative Algebra +0901.0728 Materials Science +0901.0729 Materials Science +0901.0734 Information Theory +0901.0746 +0901.0747 General Topology +0901.0752 Functional Analysis +0901.0753 Learning +0901.0755 Optics +0901.0761 Numerical Analysis +0901.0762 Methodology +0901.0764 Numerical Analysis +0901.0766 Phenomenology +0901.0768 Data Analysis, Statistics and Probability +0901.0770 Phenomenology +0901.0789 Chemical Physics +0901.0794 Functional Analysis +0901.0803 Rings and Algebras +0901.0804 +0901.0805 Group Theory +0901.0816 Analysis of PDEs +0901.0823 Rings and Algebras +0901.0825 Robotics +0901.0841 Quantum Algebra +0901.0847 Analysis of PDEs +0901.0849 Phenomenology +0901.0856 Spectral Theory +0901.0860 Accelerator Physics +0901.0866 Biological Physics +0901.0871 Commutative Algebra +0901.0886 Other Computer Science +0901.0893 Differential Geometry +0901.0907 Complex Variables +0901.0908 General Physics +0901.0910 +astro-ph/0204337 +cond-mat/0404096 Superconductivity +cond-mat/0503153 Superconductivity +cond-mat/0612614 Other Condensed Matter +hep-ph/0203115 Phenomenology +hep-ph/0703319 Phenomenology +math/0411217 Geometric Topology +math/0507252 Quantum Algebra +physics/0602110 Instrumentation and Detectors +physics/0609147 Instrumentation and Detectors +0706.0785 +0711.4426 Combinatorics +0801.3994 +0802.3019 Other Condensed Matter +0802.3584 Spectral Theory +0803.3413 Commutative Algebra +0805.2210 Other Condensed Matter +0805.2383 Probability +0806.2634 +0806.3840 Other Condensed Matter +0808.3315 Other Condensed Matter +0810.1755 Mesoscale and Nanoscale Physics +0812.0830 +0812.2490 +0812.2775 Data Structures and Algorithms +0812.3152 +0901.4386 Functional Analysis +0901.4469 Biological Physics +0902.1267 Information Theory +0902.3690 Algebraic Geometry +0903.2191 Disordered Systems and Neural Networks +0904.0975 Cosmology and Nongalactic Astrophysics +0904.4318 +0905.2207 Atomic Physics +0905.2902 +0906.0761 Representation Theory +0906.1577 Cosmology and Nongalactic Astrophysics +0906.1647 Representation Theory +0906.3578 Superconductivity +0906.4939 Analysis of PDEs +0907.1057 Cosmology and Nongalactic Astrophysics +0907.3733 Cosmology and Nongalactic Astrophysics +0907.4146 +0907.4578 High Energy Astrophysical Phenomena +0907.5598 Artificial Intelligence +0908.0810 Instrumentation and Methods for Astrophysics +0908.1018 Mesoscale and Nanoscale Physics +0908.1634 Other Condensed Matter +0908.2782 +0909.0675 Algebraic Geometry +0909.3035 Quantum Gases +0909.3086 General Topology +0909.3317 +0909.3674 +0909.5654 Computational Geometry +0910.0368 Solar and Stellar Astrophysics +0910.0530 Geometric Topology +0910.0865 Earth and Planetary Astrophysics +0910.4242 Solar and Stellar Astrophysics +0911.1922 Theory +0911.2766 Dynamical Systems +0911.3514 Information Theory +0911.3718 +0911.4350 Physics and Society +0911.4815 Astrophysics of Galaxies +0911.5073 Phenomenology +0911.5426 Theory +0911.5542 Analysis of PDEs +0911.5548 Computer Science and Game Theory +0911.5550 General Physics +0912.0009 High Energy Astrophysical Phenomena +0912.0018 Solar and Stellar Astrophysics +0912.0021 Experiment +0912.0022 High Energy Astrophysical Phenomena +0912.0024 Cosmology and Nongalactic Astrophysics +0912.0026 +0912.0032 Adaptation and Self-Organizing Systems +0912.0034 Computational Engineering, Finance, and Science +0912.0037 Biomolecules +0912.0041 Populations and Evolution +0912.0042 Group Theory +0912.0047 Probability +0912.0049 Number Theory +0912.0052 Number Theory +0912.0058 Number Theory +0912.0060 Number Theory +0912.0063 Differential Geometry +0912.0064 Differential Geometry +0912.0068 +0912.0072 Number Theory +0912.0074 Differential Geometry +0912.0076 Instrumentation and Methods for Astrophysics +0912.0082 Algebraic Geometry +0912.0083 Materials Science +0912.0084 Theory +0912.0086 Learning +0912.0091 Operator Algebras +0912.0093 Instrumentation and Methods for Astrophysics +0912.0100 Solar and Stellar Astrophysics +0912.0102 Quantum Gases +0912.0107 +0912.0112 Phenomenology +0912.0114 Differential Geometry +0912.0115 +0912.0124 Cosmology and Nongalactic Astrophysics +0912.0126 +0912.0128 +0912.0129 +0912.0130 Classical Analysis and ODEs +0912.0132 Artificial Intelligence +0912.0134 Distributed, Parallel, and Cluster Computing +0912.0135 Complex Variables +0912.0137 Group Theory +0912.0149 Networking and Internet Architecture +0912.0150 Analysis of PDEs +0912.0151 Algebraic Geometry +0912.0159 Differential Geometry +0912.0178 Mesoscale and Nanoscale Physics +0912.0185 Optimization and Control +0912.0187 Differential Geometry +0912.0210 General Physics +0912.0212 Group Theory +0912.0213 Quantum Algebra +0912.0222 Dynamical Systems +0912.0224 Artificial Intelligence +0912.0226 Discrete Mathematics +0912.0230 General Physics +0912.0233 Instrumentation and Methods for Astrophysics +0912.0249 Algebraic Topology +0912.0250 Data Structures and Algorithms +hep-ph/0701033 Phenomenology +math-ph/0505053 +math-ph/0602023 +physics/0601197 Space Physics +0711.0158 Logic +0807.2039 K-Theory and Homology +0808.1705 Phenomenology +0811.2598 Classical Physics +0903.2598 Other Computer Science +0904.0050 Statistical Mechanics +0904.4494 Soft Condensed Matter +0906.0133 Soft Condensed Matter +0906.1338 +0906.5455 +0907.0049 +0704.0390 Dynamical Systems +0704.3767 Differential Geometry +0708.3412 Probability +0709.2216 +0711.2646 +0712.3485 Pricing of Securities +0801.1112 Algebraic Geometry +0802.0728 Other Condensed Matter +0802.1214 +0803.1542 Mesoscale and Nanoscale Physics +0803.2531 +0803.2786 Mesoscale and Nanoscale Physics +0804.4054 Phenomenology +0806.4583 Strongly Correlated Electrons +0809.1536 Differential Geometry +0809.2165 Statistical Mechanics +0809.3328 Statistical Mechanics +0809.4096 Materials Science +0810.2937 +0810.3569 Superconductivity +0811.4401 Phenomenology +0811.4614 Superconductivity +0901.0621 Mesoscale and Nanoscale Physics +0901.4474 Theory +0902.3191 Phenomenology +0902.3252 +0902.4581 Symplectic Geometry +0903.0824 Cosmology and Nongalactic Astrophysics +0903.1530 Optics +0903.3049 Algebraic Geometry +0903.4564 Statistical Mechanics +0904.0876 Materials Science +0905.0044 Numerical Analysis +0905.0140 +0906.0054 Soft Condensed Matter +0906.0071 Combinatorics +0906.0091 +0906.0555 Combinatorics +0906.0642 Commutative Algebra +0906.0738 Analysis of PDEs +0906.1203 Probability +0906.1268 High Energy Astrophysical Phenomena +0906.1671 +0906.2031 Dynamical Systems +0906.2198 Analysis of PDEs +0906.2208 Combinatorics +0906.2217 Probability +0906.2218 Biological Physics +0906.2222 Geometric Topology +0906.2229 Geometric Topology +0906.2231 +0906.2236 Materials Science +0906.2243 Materials Science +0906.2250 Materials Science +0906.2252 Information Theory +0906.2255 Physics and Society +0906.2256 Atomic Physics +0906.2258 Optics +0906.2266 Statistics Theory +0906.2268 Instrumentation and Methods for Astrophysics +0906.2270 Probability +0906.2271 Statistics Theory +0906.2274 Graphics +0906.2275 Statistics Theory +0906.2277 Statistics Theory +0906.2278 Phenomenology +0906.2280 Statistics Theory +0906.2281 Genomics +0906.2283 Superconductivity +0906.2286 Superconductivity +0906.2290 Analysis of PDEs +0906.2292 Solar and Stellar Astrophysics +0906.2293 Probability +0906.2294 Analysis of PDEs +0906.2295 Number Theory +0906.2296 Analysis of PDEs +0906.2298 Symplectic Geometry +0906.2300 +0906.2301 Theory +0906.2304 Atmospheric and Oceanic Physics +0906.2305 Probability +0906.2306 +0906.2307 Human-Computer Interaction +0906.2309 +0906.2315 Symbolic Computation +0906.2318 Probability +0906.2320 Solar and Stellar Astrophysics +0906.2324 Probability +0906.2326 +0906.2329 Solar and Stellar Astrophysics +0906.2332 +0906.2333 Materials Science +0906.2334 Probability +0906.2338 Strongly Correlated Electrons +0906.2341 Probability +0906.2342 Solar and Stellar Astrophysics +0906.2344 Phenomenology +0906.2345 Analysis of PDEs +0906.2346 Materials Science +0906.2348 Solar and Stellar Astrophysics +0906.2358 Instrumentation and Methods for Astrophysics +0906.2361 Differential Geometry +0906.2363 Mesoscale and Nanoscale Physics +0906.2365 Cosmology and Nongalactic Astrophysics +0906.2370 Strongly Correlated Electrons +0906.2371 Mesoscale and Nanoscale Physics +0906.2372 Information Theory +0906.2373 Symplectic Geometry +0906.2378 Representation Theory +0906.2385 Theory +0906.2388 Metric Geometry +0906.2395 Data Structures and Algorithms +0906.2397 Soft Condensed Matter +0906.2407 Solar and Stellar Astrophysics +0906.2408 Numerical Analysis +astro-ph/0210473 +astro-ph/0302213 +astro-ph/0302404 +astro-ph/0309281 +astro-ph/0411430 +math/0405280 Dynamical Systems +math/0505220 Numerical Analysis +math/0609517 Symplectic Geometry +0707.2540 Materials Science +0709.3061 Statistical Mechanics +0711.4520 Other Condensed Matter +0801.0003 General Finance +0802.0402 +0808.3154 Materials Science +0809.1859 Phenomenology +0810.2696 Other Condensed Matter +0810.3713 Mesoscale and Nanoscale Physics +0811.1619 +0812.2290 Computation +0901.0873 +0901.1325 Astrophysics of Galaxies +0901.2101 Superconductivity +0901.3625 Other Condensed Matter +0901.4584 Other Condensed Matter +0902.0149 Symplectic Geometry +0902.1229 Probability +0902.3390 Statistical Mechanics +0903.2284 +0903.2783 Statistical Mechanics +0903.4413 +0905.2316 Cosmology and Nongalactic Astrophysics +0905.4204 Theory +0905.4455 Disordered Systems and Neural Networks +0905.4569 Statistical Mechanics +0906.5582 High Energy Astrophysical Phenomena +0907.0453 Learning +0907.2684 Experiment +0907.2705 Theory +0907.2884 Atomic Physics +0907.2919 Cosmology and Nongalactic Astrophysics +0907.2925 Logic +0907.2929 Networking and Internet Architecture +0907.2933 Quantitative Methods +0907.2935 Dynamical Systems +0907.2938 Phenomenology +0907.2943 Quantitative Methods +0907.2946 Number Theory +0907.2947 Analysis of PDEs +0907.2950 Phenomenology +0907.2951 Databases +0907.2953 Phenomenology +0907.2954 Geometric Topology +0907.2964 Functional Analysis +0907.2979 Strongly Correlated Electrons +0907.2987 Phenomenology +0907.2990 Artificial Intelligence +0907.2992 +0907.2993 Artificial Intelligence +0907.3005 Discrete Mathematics +0907.3008 Analysis of PDEs +0907.3015 Experiment +0907.3016 Discrete Mathematics +0907.3019 Logic in Computer Science +0907.3021 Experiment +0907.3023 Mesoscale and Nanoscale Physics +0907.3028 Astrophysics of Galaxies +0907.3029 Classical Physics +0907.3030 Probability +0907.3031 Astrophysics of Galaxies +0907.3033 Experiment +0907.3034 High Energy Astrophysical Phenomena +0907.3035 Number Theory +0907.3042 Soft Condensed Matter +0907.3044 Phenomenology +0907.3045 Cryptography and Security +0907.3047 Performance +0907.3055 Materials Science +0907.3056 +0907.3057 Computational Physics +0907.3059 Cosmology and Nongalactic Astrophysics +0907.3060 Classical Physics +0907.3064 Algebraic Topology +0907.3068 Computer Science and Game Theory +0907.3071 Classical Physics +0907.3076 Discrete Mathematics +0907.3079 +0907.3082 Algebraic Geometry +0907.3087 +0907.3088 Phenomenology +0907.3089 Mesoscale and Nanoscale Physics +0907.3095 Networking and Internet Architecture +0907.3098 Instrumentation and Methods for Astrophysics +0907.3099 Networking and Internet Architecture +0907.3102 Biological Physics +0907.3104 Rings and Algebras +0907.3116 +0907.3117 Computational Complexity +0907.3118 Distributed, Parallel, and Cluster Computing +0907.3119 +0907.3123 Logic in Computer Science +0907.3126 Computer Science and Game Theory +0907.3127 Other Condensed Matter +0907.3131 Atomic and Molecular Clusters +0907.3132 Computational Physics +0907.3140 Complex Variables +cond-mat/0309687 Strongly Correlated Electrons +cs/0702033 Information Theory +math/0607044 Probability +0707.2420 +0709.3297 Strongly Correlated Electrons +0810.0073 Atomic Physics +0810.4952 Populations and Evolution +0810.4968 +0902.0821 Probability +0902.2298 Superconductivity +0903.4862 Mesoscale and Nanoscale Physics +0904.1871 Number Theory +0906.1321 +0906.4509 Combinatorics +0906.5400 K-Theory and Homology +0906.5484 Number Theory +0906.5533 Theory +0704.0640 Combinatorics +0706.1973 Combinatorics +0706.2316 Commutative Algebra +0707.1291 Phenomenology +0708.4051 +0709.0513 Commutative Algebra +0709.1418 Fluid Dynamics +0711.0847 Plasma Physics +0711.1860 +0712.1692 Methodology +0804.1759 Statistical Mechanics +0805.1258 Exactly Solvable and Integrable Systems +0805.2402 +0805.4548 Probability +0806.2688 Algebraic Geometry +0806.2809 Optics +0807.1860 Strongly Correlated Electrons +0807.2179 Theory +0807.3440 +0808.3095 Mesoscale and Nanoscale Physics +0808.3381 Symplectic Geometry +0810.0184 Representation Theory +0810.0199 +0810.1276 +0810.5244 Statistical Mechanics +0811.1102 Strongly Correlated Electrons +0811.2937 +0811.3800 Mesoscale and Nanoscale Physics +0811.4763 Soft Condensed Matter +0812.0254 Algebraic Geometry +0812.0606 Analysis of PDEs +0812.3328 Chemical Physics +0812.3866 Chemical Physics +0901.0769 Optics +0901.2704 Other Condensed Matter +0901.2914 +0901.3169 Soft Condensed Matter +0902.1971 Statistical Mechanics +0902.3844 Data Analysis, Statistics and Probability +0903.1850 Algebraic Geometry +0903.2844 Optics +0903.2845 Cosmology and Nongalactic Astrophysics +0903.2854 Functional Analysis +0903.2864 Representation Theory +0903.2866 Number Theory +0903.2868 Category Theory +0903.2869 Combinatorics +0903.2871 Differential Geometry +0903.2872 Theory +0903.2875 Statistics Theory +0903.2876 Algebraic Topology +0903.2886 Superconductivity +0903.2889 Methodology +0903.2891 Astrophysics of Galaxies +0903.2892 Materials Science +0903.2898 Geometric Topology +0903.2899 Complex Variables +0903.2901 Materials Science +0903.2905 Dynamical Systems +0903.2920 Theory +0903.2929 Soft Condensed Matter +0903.2932 Chaotic Dynamics +0903.2934 Cosmology and Nongalactic Astrophysics +0903.2935 Optics +0903.2937 Spectral Theory +0903.2946 Geometric Topology +0903.2950 Differential Geometry +0903.2952 Mesoscale and Nanoscale Physics +0903.2955 Number Theory +0903.2957 Experiment +0903.2959 Accelerator Physics +0903.2960 Genomics +0903.2961 Algebraic Geometry +0903.2965 Rings and Algebras +0903.2974 Rings and Algebras +0903.2975 Statistical Mechanics +0903.2982 Materials Science +0903.2985 +0903.2996 Phenomenology +0903.3000 Information Theory +0903.3001 +0903.3004 Information Theory +0903.3005 Strongly Correlated Electrons +0903.3006 Other Condensed Matter +0903.3007 Number Theory +0903.3010 Physics and Society +0903.3014 Methodology +0903.3016 +0903.3024 Information Theory +0903.3027 Number Theory +0903.3028 Accelerator Physics +0903.3034 Algebraic Geometry +astro-ph/0111541 +astro-ph/0409742 +astro-ph/9910500 +math-ph/0612027 +math/0206104 Rings and Algebras +math/0208089 Geometric Topology +math/0310277 Geometric Topology +math/0402218 Geometric Topology +math/0403261 Geometric Topology +math/0403496 Representation Theory +math/0409159 Quantum Algebra +math/0604590 Representation Theory +math/0609262 Commutative Algebra +math/0611745 Spectral Theory +math/0703312 Combinatorics +quant-ph/0504168 +quant-ph/0611286 +0704.0363 General Physics +0704.2099 +0704.3605 Theory +0706.1580 +0708.0705 Exactly Solvable and Integrable Systems +0708.1721 +0708.4278 K-Theory and Homology +0709.0334 Statistics Theory +0709.0643 Strongly Correlated Electrons +0711.0441 Theory +0711.0825 Theory +0711.2386 +0711.2394 Differential Geometry +0711.4155 +0711.4821 Operator Algebras +0712.1393 Analysis of PDEs +0712.2671 Algebraic Geometry +0712.2970 Representation Theory +0801.0827 Theory +0801.2134 +0802.0637 +0802.2706 Lattice +0802.4055 +0803.1384 Superconductivity +0803.1591 Theory +0804.3158 +0805.1840 Theory +0805.2110 +0805.3433 Mesoscale and Nanoscale Physics +0805.4171 Phenomenology +0806.1391 +0806.2163 Phenomenology +0806.3408 +0806.3780 Mesoscale and Nanoscale Physics +0806.4030 Theory +0806.4579 Soft Condensed Matter +0806.4647 Phenomenology +0807.0639 +0807.1012 Quantum Algebra +0807.1259 Theory +0807.2858 +0807.2950 +0807.3003 +0807.4763 Instrumentation and Detectors +0808.0624 +0808.1293 Mesoscale and Nanoscale Physics +0808.1563 Biological Physics +0808.1786 Theory +0808.2052 Phenomenology +0808.2057 +0808.3340 Phenomenology +0808.4128 Phenomenology +0809.0399 Atomic Physics +0809.0520 +0809.0639 Theory +0809.2595 +0809.3531 +0810.0200 Computation and Language +0810.0835 Materials Science +0810.1033 +0810.1377 Superconductivity +0810.3887 Strongly Correlated Electrons +0810.4251 Theory +0810.4955 +0810.5491 Statistical Mechanics +0811.0184 Theory +0811.0198 Theory +0811.0218 Theory +0811.0319 +0811.0708 Phenomenology +0811.1028 Materials Science +0811.1500 Information Theory +0811.2458 +0811.2772 +0811.2833 Instrumentation and Detectors +0811.2891 Phenomenology +0811.2957 Phenomenology +0811.2964 +0811.3266 Phenomenology +0811.3672 Superconductivity +0812.0513 Theory +0812.1566 +0812.2271 Chaotic Dynamics +0812.3226 Robotics +0812.4431 Atomic Physics +0901.2182 +0901.2826 Computational Finance +0901.3758 Materials Science +0902.0103 +0902.0528 Astrophysics of Galaxies +0902.1037 Neural and Evolutionary Computing +0902.1041 Computational Complexity +0902.1064 General Mathematics +0902.1125 Solar and Stellar Astrophysics +0902.1173 +0902.1174 Group Theory +0902.1180 Number Theory +0902.1182 Discrete Mathematics +0902.1184 General Physics +0902.1186 Cosmology and Nongalactic Astrophysics +0902.1189 Functional Analysis +0902.1190 Strongly Correlated Electrons +0902.1193 Applications +0902.1202 Astrophysics of Galaxies +0902.1220 Information Theory +0902.1224 High Energy Astrophysical Phenomena +0902.1232 Other Computer Science +0902.1238 +0902.1240 Commutative Algebra +0902.1248 Symplectic Geometry +0902.1253 Discrete Mathematics +0902.1254 Data Structures and Algorithms +0902.1256 Computational Complexity +0902.1258 Learning +0902.1259 Learning +0902.1260 Data Structures and Algorithms +0902.1261 Data Structures and Algorithms +0902.1264 Number Theory +0902.1269 Combinatorics +0902.1275 Information Theory +0902.1285 Phenomenology +0902.1291 Phenomenology +0902.1297 Materials Science +0902.1302 Geometric Topology +0902.1306 Metric Geometry +0902.1308 Astrophysics of Galaxies +0902.1309 Geophysics +0902.1311 Geophysics +0902.1319 Atomic Physics +0902.1323 Machine Learning +0902.1324 Methodology +0902.1327 Combinatorics +0902.1329 Statistics Theory +0902.1342 Superconductivity +0902.1343 Computational Physics +0902.1351 Information Theory +0902.1358 Group Theory +0902.1360 Applications +0902.1362 Superconductivity +0902.1364 Discrete Mathematics +0902.1378 Data Structures and Algorithms +0902.1381 Strongly Correlated Electrons +0902.1383 Representation Theory +0902.1384 Phenomenology +0902.1387 +0902.1388 Instrumentation and Detectors +0902.1389 Classical Physics +0902.1391 Optics +0902.1392 Cosmology and Nongalactic Astrophysics +0902.1396 +0902.1397 Optics +0902.1398 Quantum Algebra +0902.1399 +0902.1400 Computer Science and Game Theory +0902.1402 Probability +0902.1403 Statistics Theory +0902.1404 Classical Analysis and ODEs +0902.1407 Probability +0902.1408 +0902.1409 Analysis of PDEs +0902.1422 Solar and Stellar Astrophysics +0902.1425 Analysis of PDEs +0902.1426 Methodology +0902.1428 +0902.1432 Plasma Physics +0902.1437 Algebraic Geometry +0902.1439 Statistics Theory +0902.1441 Dynamical Systems +0902.1443 Statistics Theory +0902.1448 Statistics Theory +0902.1450 Strongly Correlated Electrons +0902.1454 Statistical Mechanics +0902.1458 Instrumentation and Methods for Astrophysics +0902.1470 Group Theory +0902.1477 Quantitative Methods +0902.1478 Geometric Topology +0902.1481 Superconductivity +0902.1489 Mesoscale and Nanoscale Physics +0902.1496 +0902.1509 Theory +0902.1514 Materials Science +0902.1516 Instrumentation and Detectors +0902.1518 Commutative Algebra +astro-ph/0603083 +astro-ph/0606265 +astro-ph/0608348 +cond-mat/0611567 Statistical Mechanics +cond-mat/0703269 Other Condensed Matter +gr-qc/0505098 +hep-ph/0411230 Phenomenology +hep-ph/9812422 Phenomenology +hep-th/0606181 Theory +hep-th/0701231 Theory +hep-th/9607181 Theory +math/0602172 Operator Algebras +math/0609726 Group Theory +nucl-th/0207016 +nucl-th/0311102 +nucl-th/0402037 +nucl-th/0403074 +nucl-th/0509106 +quant-ph/0304166 +quant-ph/0306036 +quant-ph/0511255 +quant-ph/0512028 +quant-ph/0512030 +quant-ph/0512150 +0706.0313 General Physics +0709.4653 Statistical Mechanics +0710.2970 Cryptography and Security +0711.1006 Functional Analysis +0711.2876 Operator Algebras +0712.1400 Cryptography and Security +0801.1067 Information Theory +0802.0406 Statistical Mechanics +0804.4764 Classical Analysis and ODEs +0805.0305 Strongly Correlated Electrons +0805.1278 Cryptography and Security +0805.3858 Cryptography and Security +0805.4074 Phenomenology +0807.3383 Cryptography and Security +0808.3589 Pattern Formation and Solitons +0809.0400 Data Structures and Algorithms +0809.3793 Theory +0809.4668 Information Retrieval +0811.0074 Logic +0811.1095 Networking and Internet Architecture +0811.1335 Data Structures and Algorithms +0901.0717 Materials Science +0901.3796 Theory +0902.3006 Analysis of PDEs +0902.3214 Optics +0903.1257 Phenomenology +0903.1761 Complex Variables +0903.2627 Category Theory +0903.2832 Optics +0903.3366 +gr-qc/9310026 +0802.2360 Information Theory +0807.3294 Strongly Correlated Electrons +0809.2897 Statistical Mechanics +0812.1260 Geometric Topology +0812.1730 +0901.2620 +0901.2697 Differential Geometry +0901.4641 Other Condensed Matter +0903.4890 Cosmology and Nongalactic Astrophysics +0904.1177 +0904.2808 +0904.4241 +0904.4711 Theory +0906.1148 Information Retrieval +0906.2339 Exactly Solvable and Integrable Systems +0906.5367 Instrumentation and Methods for Astrophysics +0907.2445 Statistical Mechanics +0907.5276 Computational Finance +0908.1290 +0908.2984 Information Theory +cond-mat/0511528 Statistical Mechanics +cond-mat/0610716 Mesoscale and Nanoscale Physics +0704.0008 Materials Science +0704.3890 Distributed, Parallel, and Cluster Computing +0705.4001 Atomic Physics +0707.0298 Theory +0707.3099 +0710.0073 Theory +0710.0456 Theory +0710.2735 Phenomenology +0711.2522 Representation Theory +0712.2598 +0802.4261 Phenomenology +0803.0022 +0803.0550 Phenomenology +0803.3238 Statistical Mechanics +0804.1071 Strongly Correlated Electrons +0804.4399 Theory +0805.0425 Physics and Society +0805.1002 +0805.4142 Materials Science +0805.4333 Theory +0805.4832 Theory +0806.0493 Strongly Correlated Electrons +0806.0611 Experiment +0806.3244 Theory +0807.0344 Phenomenology +0807.1121 Phenomenology +0807.3354 Optics +0808.1398 Statistical Mechanics +0808.1818 Group Theory +0808.2425 Phenomenology +0808.3826 Other Condensed Matter +0808.4140 +0809.0395 Other Condensed Matter +0809.1314 General Physics +0809.2674 +0809.4520 Probability +0810.0052 Computational Geometry +0810.2267 Theory +0810.2503 Theory +0810.3516 Theory +0810.3663 +0810.4988 Phenomenology +0810.5015 Theory +0811.1615 Other Condensed Matter +0811.1741 Theory +0811.1940 +0811.2539 Phenomenology +0811.2722 Lattice +0811.3237 +0811.3816 Other Computer Science +0812.0225 Geometric Topology +0812.0413 Lattice +0812.1433 Theory +0901.2413 General Physics +0901.2495 Plasma Physics +0901.3748 Materials Science +0901.4633 Differential Geometry +0902.0036 Solar and Stellar Astrophysics +0902.0118 Logic +0902.0119 Logic +0902.0137 Algebraic Geometry +0902.0232 Probability +0902.0412 Theory +0902.0605 Cosmology and Nongalactic Astrophysics +0902.0606 Computation and Language +0902.0614 Theory +0902.0616 Theory +0902.0622 Quantitative Methods +0902.0623 Combinatorics +0902.0626 Strongly Correlated Electrons +0902.0630 Optimization and Control +0902.0634 High Energy Astrophysical Phenomena +0902.0642 Materials Science +0902.0654 +0902.0656 General Physics +0902.0657 Information Theory +0902.0668 Information Theory +0902.0673 History and Overview +0902.0678 Data Analysis, Statistics and Probability +0902.0681 Dynamical Systems +0902.0684 Combinatorics +0902.0691 +0902.0692 Number Theory +0902.0701 Soft Condensed Matter +0902.0713 Statistical Finance +0902.0718 Algebraic Topology +0902.0725 Plasma Physics +0902.0744 Artificial Intelligence +0902.0748 Physics Education +0902.0754 Quantum Algebra +0902.0755 Digital Libraries +0902.0763 Computational Engineering, Finance, and Science +0902.0764 Classical Physics +0902.0766 Algebraic Geometry +0902.0771 Combinatorics +0902.0776 General Physics +0902.0778 Cosmology and Nongalactic Astrophysics +0902.0787 Materials Science +0902.0788 Analysis of PDEs +cond-mat/0002269 Statistical Mechanics +cond-mat/0003081 +cond-mat/0004187 +cond-mat/0005512 +cond-mat/0009030 Superconductivity +cond-mat/0009149 Strongly Correlated Electrons +cond-mat/0009262 Strongly Correlated Electrons +cond-mat/0009450 Superconductivity +cond-mat/0012160 Superconductivity +cond-mat/0012334 +cond-mat/0103301 Statistical Mechanics +cond-mat/0111182 Superconductivity +cond-mat/0111301 Mesoscale and Nanoscale Physics +cond-mat/0202223 Mesoscale and Nanoscale Physics +cond-mat/0204334 Soft Condensed Matter +cond-mat/0305588 +cond-mat/0308325 Soft Condensed Matter +cond-mat/0308369 Other Condensed Matter +cond-mat/0312291 Soft Condensed Matter +cond-mat/0404513 Soft Condensed Matter +cond-mat/0407373 Soft Condensed Matter +cond-mat/0407579 Statistical Mechanics +cond-mat/0408634 Soft Condensed Matter +cond-mat/0409660 Statistical Mechanics +cond-mat/0501728 Superconductivity +cond-mat/0505572 Strongly Correlated Electrons +cond-mat/0509144 Other Condensed Matter +cond-mat/0601006 Other Condensed Matter +cond-mat/0607835 Other Condensed Matter +cond-mat/0608282 Statistical Mechanics +cond-mat/0608321 Other Condensed Matter +cond-mat/0608477 Other Condensed Matter +cond-mat/0610798 Other Condensed Matter +cond-mat/0702290 Other Condensed Matter +cond-mat/0703526 Superconductivity +cond-mat/9808038 Mesoscale and Nanoscale Physics +cond-mat/9808310 Strongly Correlated Electrons +cond-mat/9901241 +cond-mat/9907330 Disordered Systems and Neural Networks +cond-mat/9909127 Materials Science +cond-mat/9911056 Strongly Correlated Electrons +gr-qc/0104028 +gr-qc/0701165 +hep-ph/0006019 Phenomenology +hep-ph/0310108 Phenomenology +hep-ph/0403194 Phenomenology +hep-ph/0506289 Phenomenology +hep-th/0010149 Theory +hep-th/0503108 Theory +hep-th/0607068 Theory +math/0609075 Algebraic Geometry +nucl-th/0012038 +nucl-th/0302020 +nucl-th/0411026 +nucl-th/0412065 +nucl-th/0505052 +nucl-th/0508014 +nucl-th/0511026 +nucl-th/0602032 +nucl-th/0602050 +physics/0105098 Atomic and Molecular Clusters +physics/0202060 Atomic Physics +physics/0209025 Atomic Physics +physics/0303031 Atomic and Molecular Clusters +physics/0305066 Atomic Physics +physics/0312137 Atomic Physics +physics/0404042 Atomic Physics +physics/0404115 Atomic Physics +physics/0405004 Atomic and Molecular Clusters +physics/0411226 Atomic Physics +physics/0703190 Atomic Physics +physics/9908047 Atomic Physics +quant-ph/0005016 +quant-ph/0006087 +quant-ph/0010032 +quant-ph/0202145 +quant-ph/0204084 +quant-ph/0209043 +quant-ph/0411116 +quant-ph/0610198 +0704.1150 +0705.2763 +0706.3576 +0706.3765 Accelerator Physics +0708.1021 +0709.1453 Theory +0710.5485 Probability +0711.0620 Lattice +0712.0583 Dynamical Systems +0712.3205 Algebraic Geometry +0712.3338 +0801.1176 Theory +0801.3376 Quantum Algebra +0801.3519 Theory +0801.3621 +0801.3630 +0802.0047 Physics and Society +0802.0336 Experiment +0802.0791 +0802.1547 Experiment +0802.1659 Theory +0802.4394 Metric Geometry +0803.1022 Phenomenology +0803.2972 Phenomenology +0803.4250 Phenomenology +0803.4415 Quantitative Methods +0804.1320 +0804.3084 Phenomenology +0804.4028 Superconductivity +0804.4282 Phenomenology +0805.0399 +0805.0456 Phenomenology +0805.1758 Phenomenology +0805.2455 Mesoscale and Nanoscale Physics +0805.2677 Phenomenology +0805.2804 Phenomenology +0805.3979 +0805.4518 Phenomenology +0806.0736 +0806.4032 +0806.4477 Experiment +0807.2173 +0807.2581 Phenomenology +0807.2686 Commutative Algebra +0807.3896 +0807.3936 Superconductivity +0808.0533 +0808.2108 +0808.2665 Phenomenology +0808.4065 +0809.0799 Number Theory +0809.1038 Theory +0809.1369 +0809.1551 Databases +0809.2678 +0809.2782 +0809.3651 +0809.4517 +0809.4912 +0810.0108 +0810.0309 +0810.2173 Theory +0810.2201 Phenomenology +0810.2386 +0810.2546 +0810.2710 Phenomenology +0810.3772 Phenomenology +0810.3835 Phenomenology +0810.3924 Phenomenology +0810.4647 Theory +0810.5012 Differential Geometry +0810.5385 +0811.0377 +0811.0774 Phenomenology +0811.1010 +0811.1113 Phenomenology +0811.1188 Superconductivity +0811.1206 Phenomenology +0811.1434 Phenomenology +0811.2018 +0811.2020 Instrumentation and Detectors +0811.2122 Theory +0811.2496 +0811.2760 Theory +0811.3462 +0811.3494 Theory +0811.3540 Experiment +0811.4414 Materials Science +0812.0005 Theory +0812.0426 Theory +0812.0841 Molecular Networks +0812.0928 Analysis of PDEs +0812.1100 Phenomenology +0812.2204 +0812.2452 +0812.2484 Lattice +0812.2841 Number Theory +0812.3373 Theory +0812.4524 +0812.4585 +0901.0363 Mesoscale and Nanoscale Physics +0901.1642 Theory +0901.2498 Populations and Evolution +0901.2766 +0901.3070 Algebraic Geometry +0901.4815 Instrumentation and Detectors +0901.4903 Instrumentation and Detectors +0902.0348 +0902.0952 Earth and Planetary Astrophysics +0902.1680 Combinatorics +0902.2079 Soft Condensed Matter +0902.2428 +0902.2604 Astrophysics of Galaxies +0902.2655 Plasma Physics +0902.2886 Phenomenology +0902.2911 Numerical Analysis +0902.2940 Solar and Stellar Astrophysics +0902.2998 Earth and Planetary Astrophysics +0902.3000 Earth and Planetary Astrophysics +0902.3008 Solar and Stellar Astrophysics +0902.3011 Cosmology and Nongalactic Astrophysics +0902.3013 Algebraic Geometry +0902.3015 Superconductivity +0902.3016 Cosmology and Nongalactic Astrophysics +0902.3017 Accelerator Physics +0902.3020 Operator Algebras +0902.3022 High Energy Astrophysical Phenomena +0902.3023 Instrumentation and Detectors +0902.3024 Strongly Correlated Electrons +0902.3025 Cosmology and Nongalactic Astrophysics +0902.3027 Digital Libraries +0902.3035 Phenomenology +0902.3040 Instrumentation and Detectors +0902.3042 Experiment +0902.3044 +0902.3045 Functional Analysis +0902.3048 Phenomenology +0902.3051 Materials Science +0902.3062 Optimization and Control +0902.3065 Performance +0902.3066 Atomic Physics +0902.3072 Computation and Language +0902.3074 Combinatorics +0902.3075 Combinatorics +0902.3077 Materials Science +0902.3081 Data Structures and Algorithms +0902.3084 +0902.3088 Mathematical Software +0902.3090 Solar and Stellar Astrophysics +0902.3091 Instrumentation and Methods for Astrophysics +0902.3093 Number Theory +0902.3096 Analysis of PDEs +0902.3098 Medical Physics +0902.3102 Instrumentation and Detectors +0902.3104 Computer Science and Game Theory +0902.3105 +0902.3114 Information Theory +0902.3116 Complex Variables +0902.3120 Biological Physics +0902.3121 Data Structures and Algorithms +0902.3125 +0902.3132 Quantitative Methods +0902.3136 Software Engineering +0902.3142 Cosmology and Nongalactic Astrophysics +0902.3144 +0902.3145 Quantitative Methods +0902.3146 Quantitative Methods +0902.3147 Quantitative Methods +0902.3153 +0902.3155 Phenomenology +0902.3173 Statistical Mechanics +0902.3174 Solar and Stellar Astrophysics +0902.3178 Information Theory +0902.3182 Analysis of PDEs +0902.3184 +0902.3187 Rings and Algebras +0902.3190 +0902.3193 Classical Analysis and ODEs +0902.3196 Neural and Evolutionary Computing +0902.3197 Astrophysics of Galaxies +0902.3208 Data Structures and Algorithms +0902.3216 Analysis of PDEs +0902.3218 Atomic and Molecular Clusters +0902.3219 Cosmology and Nongalactic Astrophysics +0902.3221 Instrumentation and Detectors +0902.3229 Experiment +0902.3234 Functional Analysis +0902.3236 Astrophysics of Galaxies +0902.3238 Materials Science +0902.3239 Differential Geometry +astro-ph/0602224 +astro-ph/9708053 +astro-ph/9902113 +cond-mat/0106362 Soft Condensed Matter +cs/0511005 Computers and Society +gr-qc/9503065 +hep-ex/0305068 Experiment +hep-ex/0310018 Experiment +hep-ex/0408143 Experiment +hep-ex/0503013 Experiment +hep-ph/0209054 Phenomenology +hep-ph/9511431 Phenomenology +hep-ph/9602250 Phenomenology +math/0410082 Number Theory +math/0510344 Metric Geometry +nucl-ex/9908004 +q-bio/0605016 Subcellular Processes +q-bio/0702002 Populations and Evolution +quant-ph/0701070 +0707.4466 Numerical Analysis +0711.4085 Theory +0803.1299 Phenomenology +0804.1596 Differential Geometry +0806.3881 Operator Algebras +0811.2960 Mesoscale and Nanoscale Physics +0812.2438 Data Analysis, Statistics and Probability +0902.2289 Theory +0903.3042 +0904.0405 Classical Physics +0904.2073 Theory +0905.4029 Statistical Mechanics +0907.0502 Mesoscale and Nanoscale Physics +0907.0958 Combinatorics +0907.4893 Biological Physics +0910.4915 Populations and Evolution +0911.4804 Algebraic Geometry +alg-geom/9606006 Algebraic Geometry +math-ph/0108021 +math/0005064 Analysis of PDEs +math/0012174 Group Theory +quant-ph/0611189 +0705.0050 Representation Theory +0706.0954 Dynamical Systems +0706.3164 Theory +0706.3602 Quantum Algebra +0706.4178 Combinatorics +0707.0469 +0707.3400 History and Philosophy of Physics +0709.3787 Mesoscale and Nanoscale Physics +0710.4490 +0711.2593 +0712.4325 Differential Geometry +0801.2693 +0803.1090 Information Theory +0803.1094 Information Theory +0803.1245 Combinatorics +0803.1819 Quantitative Methods +0803.3774 Materials Science +0805.0680 Lattice +0805.1120 Materials Science +0805.4086 +0806.0636 Operator Algebras +0806.3074 +0807.1448 +0807.2811 Probability +0807.3212 Information Theory +0807.4271 Experiment +0808.3191 Optics +0808.3669 +0809.1553 Other Condensed Matter +0809.3608 Differential Geometry +0809.3719 Group Theory +0809.3963 Differential Geometry +0809.4071 Disordered Systems and Neural Networks +0810.1569 Disordered Systems and Neural Networks +0810.1811 Other Condensed Matter +0811.2015 Molecular Networks +0811.2061 Probability +0811.2788 Analysis of PDEs +0812.4663 Differential Geometry +0812.4804 Theory +0812.4998 Theory +0901.1329 General Topology +0901.1337 Combinatorics +0901.1340 Number Theory +0901.1353 +0901.1356 Combinatorics +0901.1358 Mesoscale and Nanoscale Physics +0901.1360 Other Condensed Matter +0901.1361 Genomics +0901.1362 Optics +0901.1365 Machine Learning +0901.1370 Statistical Mechanics +0901.1375 Combinatorics +0901.1376 Phenomenology +0901.1377 Soft Condensed Matter +0901.1380 Physics and Society +0901.1381 Materials Science +0901.1388 Strongly Correlated Electrons +0901.1390 Probability +0901.1393 +0901.1394 Classical Physics +0901.1407 Multimedia +0901.1409 Combinatorics +0901.1413 Mathematical Software +0901.1420 Mesoscale and Nanoscale Physics +0901.1426 Rings and Algebras +0901.1427 Computer Science and Game Theory +0901.1438 Superconductivity +0901.1440 Theory +0901.1445 Numerical Analysis +0901.1446 Classical Physics +0901.1447 Classical Physics +0901.1448 Classical Physics +0901.1452 Logic +0901.1455 Functional Analysis +0901.1461 Atmospheric and Oceanic Physics +0901.1462 Numerical Analysis +0901.1464 Genomics +0901.1466 Experiment +0901.1467 Geometric Topology +0901.1468 Classical Analysis and ODEs +0901.1474 Differential Geometry +0901.1477 Differential Geometry +0901.1479 Networking and Internet Architecture +0901.1500 General Finance +0901.1510 Statistics Theory +0901.1511 Geometric Topology +0901.1516 Theory +0901.1518 Statistics Theory +0901.1521 Probability +0901.1523 Mesoscale and Nanoscale Physics +0901.1525 Superconductivity +0901.1526 Atomic Physics +0901.1531 +0901.1542 Rings and Algebras +0901.1544 Quantitative Methods +0901.1548 Classical Analysis and ODEs +0901.1550 Superconductivity +0901.1554 Algebraic Geometry +0901.1556 Experiment +0901.1558 Superconductivity +0901.1560 Rings and Algebras +0901.1563 Discrete Mathematics +0901.1568 Mesoscale and Nanoscale Physics +0901.1577 Functional Analysis +0901.1585 Dynamical Systems +0901.1591 Materials Science +0901.1610 Neural and Evolutionary Computing +0901.1615 Analysis of PDEs +0901.1629 Networking and Internet Architecture +0901.1632 Algebraic Topology +0901.1640 Classical Physics +0901.1649 Number Theory +0901.1650 +0901.1653 Commutative Algebra +0901.1657 Populations and Evolution +math-ph/0701052 +math/0506129 Probability +math/0609406 Symplectic Geometry +math/0703752 Dynamical Systems +0704.3798 Statistical Finance +0706.3778 +0708.1504 Mesoscale and Nanoscale Physics +0710.3920 Differential Geometry +0710.3921 Differential Geometry +0801.0019 Analysis of PDEs +0801.3925 Analysis of PDEs +0807.3025 +0808.1536 +0808.1655 General Finance +0808.3662 Other Condensed Matter +0811.0189 Spectral Theory +0811.4451 Number Theory +cond-mat/0605001 Materials Science +math/0703184 Metric Geometry +physics/0409157 Plasma Physics +physics/0506071 Physics and Society +physics/0701110 Physics and Society +0709.1644 Differential Geometry +0709.2636 +0710.3642 Data Structures and Algorithms +0711.4545 Algebraic Geometry +0712.0719 Pattern Formation and Solitons +0712.3416 Probability +0801.1865 Classical Analysis and ODEs +0801.2123 Optimization and Control +0802.2313 Geometric Topology +0804.0271 Differential Geometry +0806.2587 +0808.1894 Phenomenology +0808.3740 +0809.3905 Strongly Correlated Electrons +0809.4234 Strongly Correlated Electrons +0811.3856 Statistical Mechanics +0812.1055 Superconductivity +0812.2797 Lattice +0901.3619 Programming Languages +0901.4141 Mesoscale and Nanoscale Physics +0901.4665 Classical Analysis and ODEs +0902.0067 Probability +0903.2016 Information Theory +0903.3594 Probability +0904.4004 Commutative Algebra +0905.0520 Exactly Solvable and Integrable Systems +0905.1417 Combinatorics +0905.1684 +0905.2076 Mesoscale and Nanoscale Physics +0905.2087 Mesoscale and Nanoscale Physics +0905.4640 Strongly Correlated Electrons +0906.0224 Physics and Society +0906.0779 Differential Geometry +0906.1393 Mesoscale and Nanoscale Physics +0906.4192 Algebraic Geometry +0907.0098 Quantum Gases +0907.0427 Theory +0907.2917 Cosmology and Nongalactic Astrophysics +0907.3160 Statistical Mechanics +0907.4144 Cosmology and Nongalactic Astrophysics +0908.1106 Geometric Topology +0908.2678 +0909.0773 Statistical Mechanics +0909.2142 Spectral Theory +0909.2182 Strongly Correlated Electrons +0909.2230 Geometric Topology +0909.2793 Numerical Analysis +0909.2887 Strongly Correlated Electrons +0909.2963 Experiment +0909.3107 Number Theory +0909.3114 +0909.3116 Phenomenology +0909.3117 +0909.3122 Data Structures and Algorithms +0909.3124 Mesoscale and Nanoscale Physics +0909.3133 +0909.3135 Information Theory +0909.3137 Computational Geometry +0909.3143 Combinatorics +0909.3144 Chaotic Dynamics +0909.3146 Information Theory +0909.3147 Instrumentation and Methods for Astrophysics +0909.3149 Differential Geometry +0909.3150 Statistics Theory +0909.3151 Statistics Theory +0909.3152 Experiment +0909.3153 Theory +0909.3155 Algebraic Geometry +0909.3158 Human-Computer Interaction +0909.3159 Cosmology and Nongalactic Astrophysics +0909.3162 Category Theory +0909.3165 Information Theory +0909.3166 Geometric Topology +0909.3178 Lattice +0909.3180 Data Structures and Algorithms +0909.3181 Cosmology and Nongalactic Astrophysics +0909.3184 Classical Analysis and ODEs +0909.3186 Commutative Algebra +0909.3188 +0909.3193 Physics and Society +0909.3199 Phenomenology +0909.3202 Metric Geometry +0909.3205 Probability +0909.3207 Differential Geometry +0909.3208 Combinatorics +0909.3211 Group Theory +0909.3216 Group Theory +0909.3220 Dynamical Systems +0909.3223 Theory +0909.3225 Functional Analysis +0909.3230 Algebraic Geometry +0909.3231 Functional Analysis +0909.3234 Dynamical Systems +0909.3237 Optics +0909.3238 Rings and Algebras +0909.3242 Algebraic Geometry +0909.3245 Dynamical Systems +0909.3246 Solar and Stellar Astrophysics +0909.3251 +0909.3252 Combinatorics +0909.3259 Operator Algebras +0909.3262 +0909.3264 Exactly Solvable and Integrable Systems +0909.3269 Combinatorics +0909.3273 Artificial Intelligence +0909.3275 Geometric Topology +0909.3276 Artificial Intelligence +0909.3279 Quantum Algebra +0909.3281 Geometric Topology +0909.3286 Combinatorics +0909.3288 Combinatorics +cond-mat/0605018 Materials Science +math/0701928 Algebraic Topology +math/0703645 Differential Geometry +0705.2003 Phenomenology +0706.3656 Algebraic Geometry +0707.0464 +0707.4509 +0709.2290 Algebraic Geometry +0710.0907 +0710.5043 +0711.2311 Theory +0711.2545 Computational Physics +0801.2511 Probability +0801.2640 Strongly Correlated Electrons +0801.2917 +0801.4129 Information Theory +0802.2206 +0803.2188 Algebraic Geometry +0805.1080 +0805.4143 Mesoscale and Nanoscale Physics +0806.0556 Phenomenology +0807.2321 Analysis of PDEs +0808.0246 +0808.0884 Algebraic Geometry +0808.1295 +0808.1642 +0808.2928 Statistical Mechanics +0809.1947 Strongly Correlated Electrons +0809.2238 Theory +0810.2569 Operator Algebras +0811.0190 Algebraic Geometry +0811.1952 Differential Geometry +0811.2045 Quantum Algebra +0811.2132 +0811.3177 +0812.0165 Theory +0812.0236 +0812.0252 Atmospheric and Oceanic Physics +0812.0336 Instrumentation and Detectors +0812.0451 Instrumentation and Detectors +0812.3248 Experiment +0812.3467 Phenomenology +0812.3739 +0902.0021 High Energy Astrophysical Phenomena +0902.0138 Instrumentation and Methods for Astrophysics +0902.0246 High Energy Astrophysical Phenomena +0902.0252 Instrumentation and Methods for Astrophysics +0902.0278 Phenomenology +0902.0455 Phenomenology +0902.1986 +0902.2967 Astrophysics of Galaxies +0902.3061 Representation Theory +0902.3123 High Energy Astrophysical Phenomena +0902.4613 High Energy Astrophysical Phenomena +0903.0576 High Energy Astrophysical Phenomena +0903.0850 Experiment +0903.4401 Atomic Physics +0903.5043 +0904.1420 Theory +0904.1515 Molecular Networks +0904.1698 Phenomenology +0904.3002 Phenomenology +0904.3993 History and Philosophy of Physics +0905.0932 Theory +0905.1198 Phenomenology +0905.2562 Theory +0905.3106 +0905.3214 +0905.4013 Statistical Mechanics +0906.0498 Astrophysics of Galaxies +0906.1621 Solar and Stellar Astrophysics +0906.2194 Strongly Correlated Electrons +0906.2946 Theory +0906.3075 High Energy Astrophysical Phenomena +0906.3141 +0906.4488 Experiment +0906.5087 Cosmology and Nongalactic Astrophysics +0907.0319 High Energy Astrophysical Phenomena +0907.0437 Mesoscale and Nanoscale Physics +0907.0982 +0907.2269 Phenomenology +0907.2696 Phenomenology +0907.3746 Mesoscale and Nanoscale Physics +0907.4154 Astrophysics of Galaxies +0907.4156 Cosmology and Nongalactic Astrophysics +0907.4207 +0907.4223 Plasma Physics +0907.4224 Plasma Physics +0907.4338 +0907.5575 Computational Complexity +0908.0114 +0908.3020 Theory +0908.3318 Phenomenology +0908.4070 General Physics +0909.0752 +0909.1470 Instrumentation and Methods for Astrophysics +0909.1692 Theory +0909.1719 +0909.2779 +0909.2903 Mesoscale and Nanoscale Physics +0909.3075 Phenomenology +0909.5640 Analysis of PDEs +0910.0650 Information Theory +0910.1062 +0910.1557 Astrophysics of Galaxies +0910.1727 Group Theory +0910.2614 Solar and Stellar Astrophysics +0910.5717 Cellular Automata and Lattice Gases +0911.1586 Spectral Theory +0911.1885 Algebraic Geometry +0911.2884 Commutative Algebra +0911.3948 Chaotic Dynamics +0911.4213 Number Theory +0912.0054 Solar and Stellar Astrophysics +0912.0936 Neural and Evolutionary Computing +0912.0942 Cryptography and Security +0912.0946 Networking and Internet Architecture +0912.0947 Cryptography and Security +0912.0950 Cryptography and Security +0912.0951 Cryptography and Security +0912.0954 Cryptography and Security +0912.0955 Cryptography and Security +0912.0956 Cryptography and Security +0912.0958 Algebraic Geometry +0912.0960 Functional Analysis +0912.0962 Information Theory +0912.0970 Other Computer Science +0912.0971 Cosmology and Nongalactic Astrophysics +0912.0975 Data Structures and Algorithms +0912.0978 Materials Science +0912.0979 Materials Science +0912.0981 Materials Science +0912.0982 Software Engineering +0912.0983 Software Engineering +0912.0984 Networking and Internet Architecture +0912.0985 Networking and Internet Architecture +0912.0986 Computer Vision and Pattern Recognition +0912.0988 Number Theory +0912.1004 Networking and Internet Architecture +0912.1005 Multimedia +0912.1007 Learning +0912.1008 Computers and Society +0912.1009 Computer Vision and Pattern Recognition +0912.1010 Information Retrieval +0912.1011 Multimedia +0912.1012 Category Theory +0912.1013 Networking and Internet Architecture +0912.1014 Cryptography and Security +0912.1015 Neural and Evolutionary Computing +0912.1016 Databases +0912.1017 Cryptography and Security +0912.1019 Human-Computer Interaction +0912.1020 Networking and Internet Architecture +0912.1024 Rings and Algebras +0912.1027 +0912.1028 Analysis of PDEs +0912.1030 Rings and Algebras +0912.1031 +0912.1037 General Finance +0912.1041 Phenomenology +0912.1050 Computational Complexity +0912.1051 Cosmology and Nongalactic Astrophysics +0912.1052 Quantum Algebra +0912.1053 Phenomenology +0912.1058 Classical Analysis and ODEs +0912.1059 Information Theory +0912.1062 Number Theory +0912.1064 Machine Learning +0912.1065 Number Theory +0912.1070 +0912.1071 Number Theory +0912.1083 Complex Variables +0912.1089 Commutative Algebra +0912.1091 Group Theory +0912.1092 Cryptography and Security +0912.1093 Group Theory +0912.1104 General Physics +0912.1110 Databases +0912.1122 Analysis of PDEs +0912.1123 Analysis of PDEs +0912.1124 Operator Algebras +0912.1127 Disordered Systems and Neural Networks +0912.1128 Machine Learning +0912.1130 History and Overview +0912.1131 Combinatorics +0912.1137 Data Structures and Algorithms +0912.1141 Differential Geometry +0912.1145 Number Theory +0912.1153 Mesoscale and Nanoscale Physics +0912.1154 Symplectic Geometry +0912.1156 Quantum Algebra +0912.1158 General Physics +0912.1164 Algebraic Geometry +0912.1168 Algebraic Geometry +0912.1183 Optics +0912.1185 Optimization and Control +0912.1186 Dynamical Systems +0912.1187 Differential Geometry +0912.1188 Phenomenology +0912.1189 Experiment +0912.1194 Probability +0912.1198 Learning +0912.1204 Quantum Algebra +0912.1208 Discrete Mathematics +0912.1210 Mesoscale and Nanoscale Physics +0912.1211 Solar and Stellar Astrophysics +0912.1216 Networking and Internet Architecture +0912.1217 +0912.1219 Instrumentation and Methods for Astrophysics +0912.1220 Atmospheric and Oceanic Physics +0912.1221 Digital Libraries +0912.1223 Complex Variables +0912.1224 Digital Libraries +0912.1225 Theory +0912.1226 Physics and Society +0912.1227 Digital Libraries +0912.1229 General Physics +0912.1231 Physics and Society +0912.1233 Analysis of PDEs +0912.1236 Instrumentation and Methods for Astrophysics +0912.1238 Computers and Society +0912.1253 Mesoscale and Nanoscale Physics +0912.1266 Group Theory +0912.1268 Materials Science +0912.1270 Superconductivity +0912.1273 Astrophysics of Galaxies +0912.1275 +0912.1277 Quantitative Methods +0912.1288 +0912.1289 +0912.1296 Rings and Algebras +0912.1300 +0912.1301 Probability +0912.1303 Instrumentation and Methods for Astrophysics +0912.1310 Computer Vision and Pattern Recognition +0912.1312 Probability +0912.1315 Geometric Topology +0912.1320 Quantum Algebra +0912.1321 Pricing of Securities +0912.1323 General Physics +0912.1324 Phenomenology +0912.1329 Data Structures and Algorithms +0912.1333 Information Theory +astro-ph/0004145 +astro-ph/0103218 +astro-ph/0110164 +astro-ph/0202002 +astro-ph/0204342 +astro-ph/0303345 +astro-ph/0303507 +astro-ph/0409133 +astro-ph/0506522 +astro-ph/0509454 +astro-ph/0511507 +astro-ph/0512477 +astro-ph/0611367 +astro-ph/0702203 +astro-ph/9706150 +gr-qc/9811073 +hep-ex/0106089 Experiment +hep-ph/0103220 Phenomenology +hep-ph/0407123 Phenomenology +math/0312396 Algebraic Geometry +math/0507197 Algebraic Geometry +math/0508478 Algebraic Geometry +nucl-ex/0402016 +0705.3719 Algebraic Geometry +0802.1288 Pricing of Securities +0802.2640 Materials Science +0804.0522 Theory +0804.1197 +0805.4819 Theory +0806.1392 +0807.1333 +0808.0632 +0809.1902 Data Structures and Algorithms +0810.0887 Superconductivity +0810.3425 Functional Analysis +0810.4931 +0810.5339 Mesoscale and Nanoscale Physics +0811.1380 Mesoscale and Nanoscale Physics +0811.1885 Discrete Mathematics +0811.1955 Algebraic Geometry +0812.0538 Strongly Correlated Electrons +0812.4003 Exactly Solvable and Integrable Systems +0812.4311 Theory +0901.1176 Combinatorics +0901.1711 Group Theory +0901.2681 Phenomenology +0901.4155 Optics +0901.4797 Phenomenology +0902.0007 Mesoscale and Nanoscale Physics +0902.3834 Phenomenology +0903.0574 Cosmology and Nongalactic Astrophysics +0903.1954 Mesoscale and Nanoscale Physics +0903.1967 Information Theory +0904.4001 Classical Analysis and ODEs +0905.0018 Materials Science +0905.0259 Phenomenology +0905.1125 Quantum Gases +0905.3525 Mesoscale and Nanoscale Physics +0905.4661 Geometric Topology +0906.0269 Mesoscale and Nanoscale Physics +0906.0686 Theory +0906.1232 +0906.1386 Phenomenology +0906.1901 +0906.2950 Phenomenology +0906.4355 Atomic Physics +0906.4682 Astrophysics of Galaxies +0906.5508 Experiment +0907.1090 General Mathematics +0907.1865 +0907.4235 Chemical Physics +0907.4279 Probability +0907.4638 +0907.4933 Classical Analysis and ODEs +0908.1590 Functional Analysis +0908.2193 Analysis of PDEs +0908.3075 Physics and Society +0908.3830 +0908.4307 +0909.0595 Phenomenology +0909.0786 General Mathematics +0909.1111 Number Theory +0909.1161 Dynamical Systems +0909.1331 Probability +0909.1334 Learning +0909.1350 Computational Physics +0909.1353 +0909.1355 General Physics +0909.1361 Software Engineering +0909.1364 Software Engineering +0909.1370 Quantitative Methods +0909.1372 Networking and Internet Architecture +0909.1374 Networking and Internet Architecture +0909.1375 +0909.1376 Solar and Stellar Astrophysics +0909.1377 Metric Geometry +0909.1384 Materials Science +0909.1388 Cryptography and Security +0909.1389 Theory +0909.1391 Mesoscale and Nanoscale Physics +0909.1393 Optics +0909.1397 Distributed, Parallel, and Cluster Computing +0909.1398 High Energy Astrophysical Phenomena +0909.1402 Cryptography and Security +0909.1405 Computational Engineering, Finance, and Science +0909.1406 Algebraic Geometry +0909.1410 Number Theory +0909.1412 Cryptography and Security +0909.1415 Algebraic Topology +0909.1416 Superconductivity +0909.1417 Differential Geometry +0909.1418 Machine Learning +0909.1419 Rings and Algebras +0909.1420 Probability +0909.1421 Physics and Society +0909.1424 Combinatorics +0909.1425 Dynamical Systems +0909.1434 Geometric Topology +0909.1437 Symplectic Geometry +0909.1438 Dynamical Systems +0909.1440 Machine Learning +0909.1444 Biological Physics +0909.1445 Statistical Mechanics +0909.1449 Classical Analysis and ODEs +0909.1451 Instrumentation and Detectors +0909.1460 Robotics +0909.1462 Algebraic Geometry +0909.1464 Numerical Analysis +0909.1466 +0909.1467 Analysis of PDEs +0909.1468 Statistics Theory +0909.1473 Geophysics +0909.1474 Optics +0909.1475 Robotics +0909.1476 Complex Variables +0909.1481 Disordered Systems and Neural Networks +0909.1482 Rings and Algebras +0909.1493 +0909.1494 Theory +0909.1508 General Physics +0909.1510 Statistical Mechanics +0909.1511 Cosmology and Nongalactic Astrophysics +0909.1516 Biological Physics +0909.1519 Exactly Solvable and Integrable Systems +0909.1522 Instrumentation and Methods for Astrophysics +0909.1526 General Physics +0909.1527 Methodology +0909.1528 Geophysics +0909.1529 High Energy Astrophysical Phenomena +0909.1533 Representation Theory +0909.1538 Geophysics +0909.1539 Geophysics +0909.1540 Soft Condensed Matter +cond-mat/0604580 Other Condensed Matter +hep-ex/0409028 Experiment +hep-ex/0506008 Experiment +hep-ph/0509317 Phenomenology +hep-ph/0604224 Phenomenology +hep-ph/9304263 Phenomenology +math/0202133 Algebraic Geometry +math/0603567 Algebraic Geometry +math/0701877 Algebraic Geometry +nucl-ex/0111015 +nucl-ex/0601025 +0704.0377 Phenomenology +0705.4128 +0706.1833 Analysis of PDEs +0708.0053 Information Theory +0708.2165 Probability +0708.4277 Experiment +0709.0146 Commutative Algebra +0709.1166 Databases +0710.0610 +0712.0667 Operator Algebras +0712.2890 +0712.3987 Number Theory +0801.2101 Materials Science +0801.4725 Probability +0802.0269 +0802.3298 General Physics +0803.2274 Phenomenology +0804.1376 Strongly Correlated Electrons +0804.4425 Statistical Mechanics +0805.0314 Classical Analysis and ODEs +0805.3640 General Physics +0805.3881 Probability +0806.0300 Strongly Correlated Electrons +0806.3132 +0806.3635 Operator Algebras +0807.3577 +0808.0303 Differential Geometry +0809.0705 Phenomenology +0809.1909 Theory +0809.3191 Strongly Correlated Electrons +0809.5032 Statistics Theory +0810.1842 +0811.1125 Differential Geometry +0811.2683 Strongly Correlated Electrons +0811.3801 Combinatorics +0811.4516 +0812.1428 +0812.1888 Experiment +0812.2208 Phenomenology +0812.2248 Probability +0812.2757 Statistical Mechanics +0812.3485 Statistics Theory +0812.4291 Group Theory +0812.4399 +0901.3572 Phenomenology +0901.4318 Phenomenology +0902.1112 Phenomenology +0902.1503 Lattice +0902.1923 Metric Geometry +0902.2088 +0902.2107 Differential Geometry +0902.2376 +0902.2711 Cosmology and Nongalactic Astrophysics +0902.3933 +0902.4851 Theory +0903.0077 +0903.1427 Phenomenology +0903.1654 Phenomenology +0903.1679 Cosmology and Nongalactic Astrophysics +0903.2152 +0903.3588 Theory +0903.3612 Strongly Correlated Electrons +0903.4432 Theory +0904.0086 Quantum Gases +0904.0138 Phenomenology +0904.0593 Dynamical Systems +0904.0812 High Energy Astrophysical Phenomena +0904.0826 History and Overview +0904.1481 +0904.1667 Cosmology and Nongalactic Astrophysics +0904.1918 +0904.2042 Theory +0904.2233 Analysis of PDEs +0904.2301 Phenomenology +0904.2736 High Energy Astrophysical Phenomena +0904.3456 Mesoscale and Nanoscale Physics +0904.3821 Phenomenology +0904.3829 Phenomenology +0904.4344 Phenomenology +0904.4645 Astrophysics of Galaxies +0905.0075 Cosmology and Nongalactic Astrophysics +0905.0260 +0905.1359 Superconductivity +0905.1651 Cosmology and Nongalactic Astrophysics +0905.1699 Theory +0905.1714 Cosmology and Nongalactic Astrophysics +0905.2088 Theory +0905.2578 Atomic Physics +0905.2775 Phenomenology +0905.3344 Other Condensed Matter +0905.3678 Sound +0905.4052 Cosmology and Nongalactic Astrophysics +0905.4654 Cosmology and Nongalactic Astrophysics +0905.4721 Phenomenology +0905.4925 Phenomenology +0905.4949 +0906.0684 Databases +0906.0932 +0906.1197 Cosmology and Nongalactic Astrophysics +0906.1465 +0906.1949 +0906.2645 +0906.2664 Classical Analysis and ODEs +0906.3111 Cosmology and Nongalactic Astrophysics +0906.3341 Cosmology and Nongalactic Astrophysics +0906.4901 Representation Theory +0906.5020 +0907.0631 Phenomenology +0907.1303 +0907.1785 Strongly Correlated Electrons +0907.1891 Phenomenology +0907.1944 Phenomenology +0907.2047 Rings and Algebras +0907.2304 +0907.2787 +0907.2788 +0907.3193 Theory +0907.3621 Solar and Stellar Astrophysics +0907.3628 Phenomenology +0907.4753 Cosmology and Nongalactic Astrophysics +0907.4795 Cosmology and Nongalactic Astrophysics +0907.5007 Phenomenology +0908.0588 Networking and Internet Architecture +0908.1150 +0908.1282 Materials Science +0908.1324 Strongly Correlated Electrons +0908.1333 Cosmology and Nongalactic Astrophysics +0908.2510 +0908.2865 Quantum Algebra +0908.3002 +0908.4077 Cosmology and Nongalactic Astrophysics +0908.4285 Cosmology and Nongalactic Astrophysics +0908.4289 Analysis of PDEs +0908.4290 Computers and Society +0908.4295 Analysis of PDEs +0908.4298 Fluid Dynamics +0908.4299 Pricing of Securities +0908.4303 +0908.4308 Cosmology and Nongalactic Astrophysics +0908.4309 Data Structures and Algorithms +0908.4316 +0908.4317 Phenomenology +0908.4318 Category Theory +0908.4321 Soft Condensed Matter +0908.4324 Cosmology and Nongalactic Astrophysics +0908.4325 Cryptography and Security +0908.4326 Probability +0908.4328 Instrumentation and Methods for Astrophysics +0908.4330 +0908.4331 Theory +0908.4346 Mesoscale and Nanoscale Physics +0908.4347 Combinatorics +0908.4349 Space Physics +0908.4351 Exactly Solvable and Integrable Systems +0908.4353 General Literature +0908.4363 +0908.4366 Superconductivity +0908.4370 +0908.4374 Human-Computer Interaction +0908.4378 Strongly Correlated Electrons +0908.4380 Classical Analysis and ODEs +0908.4383 Materials Science +0908.4385 Mesoscale and Nanoscale Physics +0908.4386 Computer Vision and Pattern Recognition +0908.4389 Number Theory +0908.4392 Phenomenology +0908.4395 Functional Analysis +0908.4397 Differential Geometry +0908.4400 Statistics Theory +0908.4401 Dynamical Systems +0908.4402 Numerical Analysis +0908.4406 Phenomenology +0908.4407 Combinatorics +0908.4413 Computation and Language +0908.4419 Information Theory +0908.4420 Computers and Society +0908.4422 Instrumentation and Methods for Astrophysics +0908.4423 Representation Theory +0908.4424 Group Theory +0908.4425 Machine Learning +0908.4428 Superconductivity +0908.4430 Superconductivity +0908.4431 Computation and Language +0908.4437 Classical Analysis and ODEs +0908.4439 Differential Geometry +0908.4443 Materials Science +0908.4445 Information Theory +0908.4447 Chemical Physics +0908.4449 +0908.4453 Computational Complexity +0908.4456 +0908.4457 Information Theory +0908.4459 Complex Variables +0908.4463 Instrumentation and Detectors +0908.4465 Optics +0908.4467 Probability +0908.4468 Probability +0908.4472 Probability +0908.4473 +0908.4474 Optics +0908.4479 Probability +0908.4482 Algebraic Geometry +0908.4483 Theory +0908.4484 Data Analysis, Statistics and Probability +0908.4491 Logic in Computer Science +0908.4492 Algebraic Topology +0908.4494 Information Theory +0908.4495 +0908.4500 Algebraic Geometry +0908.4501 Algebraic Topology +0908.4525 Superconductivity +0908.4530 Statistics Theory +0908.4534 +0908.4535 Materials Science +0908.4538 Probability +0908.4540 Probability +0908.4545 Differential Geometry +0908.4547 Dynamical Systems +0908.4551 Experiment +0908.4552 Experiment +0908.4554 Differential Geometry +0908.4555 Differential Geometry +0908.4562 Number Theory +0908.4567 Phenomenology +0908.4570 Dynamical Systems +0908.4571 Solar and Stellar Astrophysics +0908.4574 High Energy Astrophysical Phenomena +0908.4577 High Energy Astrophysical Phenomena +0908.4578 Classical Analysis and ODEs +0908.4579 Algebraic Geometry +0908.4580 Computational Engineering, Finance, and Science +0908.4582 Cosmology and Nongalactic Astrophysics +0908.4586 Statistics Theory +0908.4588 Number Theory +0908.4597 Cosmology and Nongalactic Astrophysics +astro-ph/0411774 +astro-ph/0509197 +astro-ph/0601208 +astro-ph/0603616 +astro-ph/0605173 +astro-ph/0605242 +astro-ph/0606069 +astro-ph/0606698 +astro-ph/0702610 +cond-mat/0603804 Soft Condensed Matter +gr-qc/0509009 +gr-qc/0509036 +gr-qc/0509070 +gr-qc/0512036 +gr-qc/0602043 +gr-qc/0606076 +hep-lat/0202023 Lattice +hep-ph/0002199 Phenomenology +hep-ph/0004170 Phenomenology +hep-ph/0007242 Phenomenology +hep-ph/0009292 Phenomenology +hep-ph/0012258 Phenomenology +hep-ph/0109151 Phenomenology +hep-ph/0205084 Phenomenology +hep-ph/0207219 Phenomenology +hep-ph/0311003 Phenomenology +hep-ph/0312139 Phenomenology +hep-ph/0403070 Phenomenology +hep-ph/0408020 Phenomenology +hep-ph/0408335 Phenomenology +hep-ph/0503055 Phenomenology +hep-ph/0510257 Phenomenology +hep-ph/9209284 Phenomenology +hep-ph/9301259 Phenomenology +hep-ph/9301265 Phenomenology +hep-ph/9302267 Phenomenology +hep-ph/9303226 Phenomenology +hep-ph/9306322 Phenomenology +hep-ph/9307232 Phenomenology +hep-ph/9310286 Phenomenology +hep-ph/9409435 Phenomenology +hep-ph/9506321 Phenomenology +hep-ph/9507426 Phenomenology +hep-ph/9509308 Phenomenology +hep-ph/9601326 Phenomenology +hep-ph/9602423 Phenomenology +hep-ph/9608313 Phenomenology +hep-ph/9609268 Phenomenology +hep-ph/9703435 Phenomenology +hep-ph/9704219 Phenomenology +hep-ph/9803275 Phenomenology +hep-ph/9808252 Phenomenology +hep-ph/9811202 Phenomenology +hep-ph/9811235 Phenomenology +hep-ph/9910465 Phenomenology +hep-th/9309136 Theory +math/0608147 Commutative Algebra +math/0611292 Probability +physics/0306061 Atomic Physics +physics/0504129 Atomic Physics +physics/0509210 Classical Physics +physics/0601131 General Physics +physics/0603135 General Physics +physics/0604010 General Physics +physics/0604089 General Physics +physics/0606101 General Physics +physics/0606135 General Physics +physics/0606188 General Physics +physics/0610065 General Physics +quant-ph/0612184 +quant-ph/9611030 +0704.0469 Algebraic Geometry +0704.1099 Statistical Finance +0710.1438 Probability +0710.2577 Experiment +0711.4293 Chaotic Dynamics +0711.4995 +0712.2291 Lattice +0712.3426 Probability +0801.2181 Disordered Systems and Neural Networks +0802.0797 Information Theory +0805.0300 Physics and Society +0806.1288 Numerical Analysis +0807.2911 +0808.1955 Symplectic Geometry +0808.2032 Representation Theory +0808.3426 Representation Theory +0809.1244 +0809.3320 Analysis of PDEs +0810.1923 +0810.5005 Plasma Physics +0811.0358 Number Theory +0811.3615 Theory +0901.0495 Trading and Market Microstructure +0901.1144 Disordered Systems and Neural Networks +0901.4450 Representation Theory +0902.1535 Cosmology and Nongalactic Astrophysics +0902.3508 General Physics +0903.0079 +0903.0929 Physics and Society +0903.1702 Materials Science +0903.1862 Mesoscale and Nanoscale Physics +0904.0496 +0904.4453 Quantum Gases +0905.1449 Superconductivity +0905.1484 Optics +0905.3232 Superconductivity +0905.4031 Statistical Mechanics +0905.4347 Phenomenology +0906.0355 High Energy Astrophysical Phenomena +0906.1497 Materials Science +0906.3354 Superconductivity +0906.4387 Combinatorics +0906.4945 Experiment +0906.4997 Group Theory +0906.5435 Experiment +0907.0666 Superconductivity +0907.2426 General Mathematics +0907.2611 Solar and Stellar Astrophysics +0907.3949 Functional Analysis +0907.4080 Materials Science +0907.4118 Theory +0907.4647 +0908.0503 +0908.2165 Statistical Mechanics +0909.1536 Algebraic Geometry +0909.4595 Functional Analysis +0909.5321 Theory +0910.2060 Differential Geometry +0910.2370 Computational Complexity +0910.2859 Other Computer Science +0910.3100 Phenomenology +0910.3412 Solar and Stellar Astrophysics +0910.3826 Statistical Mechanics +0910.3989 Earth and Planetary Astrophysics +0910.4170 Number Theory +0910.4401 Functional Analysis +0910.4402 Combinatorics +0910.4404 +0910.4409 Dynamical Systems +0910.4412 High Energy Astrophysical Phenomena +0910.4414 +0910.4416 Probability +0910.4420 Cryptography and Security +0910.4426 Differential Geometry +0910.4429 Instrumentation and Detectors +0910.4430 Rings and Algebras +0910.4432 Discrete Mathematics +0910.4435 Algebraic Geometry +0910.4436 Algebraic Geometry +0910.4438 Materials Science +0910.4441 Combinatorics +0910.4442 Differential Geometry +0910.4446 Metric Geometry +0910.4450 Metric Geometry +0910.4454 Algebraic Geometry +0910.4459 +0910.4464 High Energy Astrophysical Phenomena +0910.4465 Rings and Algebras +0910.4469 Subcellular Processes +0910.4484 High Energy Astrophysical Phenomena +0910.4485 Materials Science +0910.4490 Statistical Mechanics +0910.4493 Fluid Dynamics +0910.4499 General Physics +0910.4500 Logic in Computer Science +0910.4503 Functional Analysis +0910.4509 Experiment +0910.4511 Group Theory +0910.4515 Optimization and Control +0910.4518 Computational Complexity +0910.4520 Dynamical Systems +0910.4533 Analysis of PDEs +0910.4536 Probability +0910.4537 Analysis of PDEs +0910.4542 High Energy Astrophysical Phenomena +0910.4544 Fluid Dynamics +0910.4545 Computational Physics +0910.4550 Classical Analysis and ODEs +0910.4551 Complex Variables +0910.4555 Formal Languages and Automata Theory +0910.4556 Number Theory +0910.4558 Methodology +0910.4563 High Energy Astrophysical Phenomena +0910.4572 Networking and Internet Architecture +astro-ph/0105438 +astro-ph/0110123 +astro-ph/0112074 +astro-ph/0405361 +astro-ph/0410521 +astro-ph/0502504 +astro-ph/0510510 +astro-ph/0702544 +astro-ph/9601041 +astro-ph/9612198 +astro-ph/9706087 +astro-ph/9706242 +astro-ph/9803330 +astro-ph/9807177 +astro-ph/9902284 +astro-ph/9903102 +astro-ph/9906160 +astro-ph/9906413 +cond-mat/0308228 Superconductivity +hep-ex/0009060 Experiment +hep-ph/0010092 Phenomenology +math/0510426 Metric Geometry +math/0611024 Rings and Algebras +math/0701803 Probability +q-bio/0609013 Populations and Evolution +0708.2871 Metric Geometry +0801.0664 Computational Physics +0802.0841 Commutative Algebra +0804.3169 Probability +0810.1264 +0812.0697 Fluid Dynamics +0812.3298 Logic +0903.4040 Phenomenology +0903.5118 Theory +cond-mat/0602501 Mesoscale and Nanoscale Physics +math/0611666 Probability +physics/0611276 Physics and Society +physics/0612197 Physics and Society +0705.3657 General Physics +0706.1034 Probability +0708.0726 +0712.2815 Number Theory +0802.3267 Distributed, Parallel, and Cluster Computing +0802.3495 Information Theory +0802.3506 Optics +0805.0967 Probability +0808.1758 Materials Science +0809.1540 +0809.2628 +0810.2705 +0811.4363 Statistical Mechanics +0812.2093 Group Theory +0901.2657 Statistical Mechanics +0901.3190 +0902.0395 +0902.1813 Number Theory +math/0504197 Logic +0704.0688 Probability +0707.0258 Symplectic Geometry +0710.0244 Computational Engineering, Finance, and Science +0710.0410 Computational Engineering, Finance, and Science +0710.5319 Instrumentation and Detectors +0801.0051 Number Theory +0806.1959 Algebraic Geometry +0806.3065 +0807.4449 Statistical Mechanics +0903.1054 Statistical Mechanics +0903.3216 Quantum Algebra +0903.4054 Physics and Society +0904.0346 Statistical Mechanics +0905.0205 Combinatorics +0905.1828 Computational Physics +0906.2729 Algebraic Geometry +0906.3376 Algebraic Geometry +0906.4154 Neural and Evolutionary Computing +0906.4631 Statistical Mechanics +0908.0401 Algebraic Geometry +0908.0524 Mesoscale and Nanoscale Physics +0909.2297 Distributed, Parallel, and Cluster Computing +0911.3758 Geophysics +0911.4159 Medical Physics +0912.0309 Computational Complexity +0912.0542 +0912.0543 Phenomenology +astro-ph/0701289 +cs/0702144 Databases +math-ph/0605043 +math/0208247 Commutative Algebra +math/0208250 Commutative Algebra +0803.4342 Algebraic Topology +0805.0886 Probability +0806.3868 Probability +0808.0394 Mesoscale and Nanoscale Physics +0810.2263 Optimization and Control +0903.3291 Algebraic Geometry +0908.0681 Strongly Correlated Electrons +0908.1496 +0909.0794 Analysis of PDEs +0909.2030 Databases +0911.1487 Materials Science +0911.3657 Solar and Stellar Astrophysics +0912.0811 General Physics +0912.1753 Phenomenology +0912.1897 Formal Languages and Automata Theory +0912.1899 Logic in Computer Science +0912.1902 Logic in Computer Science +math/0604155 Differential Geometry +0704.1021 Differential Geometry +0706.1879 Geometric Topology +0706.2228 Algebraic Geometry +0706.4391 Statistical Mechanics +0707.4025 General Physics +0709.3373 Algebraic Geometry +0712.1129 +0802.4276 +0804.2242 Algebraic Geometry +0807.0369 Complex Variables +0807.0974 Differential Geometry +0807.1967 Algebraic Geometry +0808.4035 Algebraic Topology +0810.4387 Combinatorics +0811.2719 Differential Geometry +0812.0221 Differential Geometry +0901.0553 Data Analysis, Statistics and Probability +0901.2836 Other Condensed Matter +0902.0620 Computer Science and Game Theory +0902.4645 Dynamical Systems +0903.3118 +0903.3261 Information Theory +0904.3114 Superconductivity +0905.2653 +0906.0655 Rings and Algebras +0906.2233 +0906.3202 Computers and Society +0906.3290 Instrumentation and Methods for Astrophysics +0906.3764 Geophysics +0906.5098 Statistical Mechanics +0907.2756 Mesoscale and Nanoscale Physics +0907.3760 Operator Algebras +0907.3891 Soft Condensed Matter +0907.4357 Analysis of PDEs +0907.4494 +0908.0092 Atomic Physics +0908.1160 Chemical Physics +0908.1511 +0908.1540 Chemical Physics +0908.2320 Phenomenology +0909.4964 Strongly Correlated Electrons +0909.5011 Computational Complexity +0910.0421 Differential Geometry +0910.1329 +0910.2971 Cosmology and Nongalactic Astrophysics +0910.2983 Astrophysics of Galaxies +0910.2989 Logic +0910.2993 Strongly Correlated Electrons +0910.2994 +0910.3005 Experiment +0910.3009 Representation Theory +0910.3013 Experiment +0910.3014 Combinatorics +0910.3018 Fluid Dynamics +0910.3024 Combinatorics +0910.3033 Information Theory +0910.3034 Optimization and Control +0910.3038 Geometric Topology +0910.3039 Mesoscale and Nanoscale Physics +0910.3042 +0910.3047 Combinatorics +0910.3057 Analysis of PDEs +0910.3059 Spectral Theory +0910.3067 Soft Condensed Matter +0910.3080 Exactly Solvable and Integrable Systems +0910.3081 Experiment +0910.3082 Populations and Evolution +0910.3084 Information Theory +0910.3093 Representation Theory +0910.3095 Methodology +0910.3097 Cosmology and Nongalactic Astrophysics +0910.3099 Computation +0910.3101 Phenomenology +0910.3103 Differential Geometry +0910.3104 Differential Geometry +0910.3112 Methodology +0910.3114 Fluid Dynamics +0910.3119 Information Theory +0910.3121 Fluid Dynamics +0910.3126 Pattern Formation and Solitons +0910.3129 Probability +0910.3131 +0910.3135 Combinatorics +0910.3136 Analysis of PDEs +0910.3144 +0910.3146 Other Quantitative Biology +0910.3152 Digital Libraries +0910.3159 Fluid Dynamics +0910.3160 Experiment +0910.3165 Phenomenology +0910.3168 Soft Condensed Matter +0910.3175 Fluid Dynamics +0910.3177 Phenomenology +0910.3178 Fluid Dynamics +0910.3180 Mesoscale and Nanoscale Physics +0910.3183 Fluid Dynamics +0910.3185 Fluid Dynamics +0910.3188 Fluid Dynamics +0910.3191 Geometric Topology +0910.3201 Fluid Dynamics +0910.3205 +astro-ph/0104228 +astro-ph/0408475 +astro-ph/0411453 +astro-ph/0501444 +astro-ph/0603567 +astro-ph/0608322 +astro-ph/0701270 +astro-ph/9808094 +astro-ph/9902236 +gr-qc/0407075 +hep-ph/9903208 Phenomenology +hep-th/0101012 Theory +hep-th/9602044 Theory +hep-th/9612136 Theory +hep-th/9704179 Theory +hep-th/9712208 Theory +hep-th/9801068 Theory +hep-th/9809205 Theory +math/0604505 Number Theory +math/0609410 Number Theory +quant-ph/0203007 +quant-ph/0207031 +quant-ph/0211023 +0710.3703 +0806.0063 Superconductivity +0809.3550 Superconductivity +0901.2432 Differential Geometry +0901.3929 Computers and Society +0902.0071 Phenomenology +0903.2332 Strongly Correlated Electrons +0904.3960 Physics Education +0904.4847 +0906.0016 +0906.2804 Fluid Dynamics +0906.2882 Mesoscale and Nanoscale Physics +0906.2999 Methodology +0906.3852 Superconductivity +0907.3374 Phenomenology +cs/0509012 Computational Engineering, Finance, and Science +gr-qc/0703088 +hep-ph/0605124 Phenomenology +hep-ph/0605155 Phenomenology +hep-th/0601057 Theory +0706.3630 Dynamical Systems +0708.1254 Algebraic Geometry +0708.3421 Fluid Dynamics +0801.1195 Dynamical Systems +0802.3753 Mesoscale and Nanoscale Physics +0803.2356 Algebraic Geometry +0803.4075 Materials Science +0804.1627 Algebraic Geometry +0805.2361 Differential Geometry +0808.0428 Differential Geometry +0808.0996 Superconductivity +0811.1759 Functional Analysis +0811.1949 Algebraic Geometry +0811.2207 Theory +0811.3155 Materials Science +0811.4304 Category Theory +0811.4770 Algebraic Geometry +0812.3281 Numerical Analysis +0812.4073 Data Structures and Algorithms +0901.0464 Fluid Dynamics +0901.2646 Number Theory +0901.3179 Commutative Algebra +0901.3738 +0902.1445 Mesoscale and Nanoscale Physics +0902.1546 Differential Geometry +0902.2862 Optics +0902.4338 Statistical Mechanics +0902.4371 Algebraic Geometry +0903.0155 Solar and Stellar Astrophysics +0903.1614 +0903.2261 Other Condensed Matter +0903.2263 Superconductivity +0903.3296 Strongly Correlated Electrons +0904.1395 Algebraic Geometry +0904.4292 Statistical Mechanics +0905.1132 Superconductivity +0905.2751 Theory +0905.3148 Algebraic Geometry +0905.3672 Chaotic Dynamics +0905.3918 Superconductivity +0905.4876 Statistical Mechanics +0906.2966 Strongly Correlated Electrons +0906.3999 Combinatorics +0907.0072 Strongly Correlated Electrons +0907.2731 Cosmology and Nongalactic Astrophysics +0907.4035 Probability +0907.5412 Analysis of PDEs +0908.1906 Mesoscale and Nanoscale Physics +0908.3423 Statistical Mechanics +0909.1335 Strongly Correlated Electrons +0909.2385 Combinatorics +0909.2894 Information Theory +0909.3438 Disordered Systems and Neural Networks +0909.3441 Pricing of Securities +0909.3459 Combinatorics +0909.3530 Cryptography and Security +0909.3532 +0909.3533 Discrete Mathematics +0909.3554 Multimedia +0909.3558 Computer Science and Game Theory +0909.3559 Medical Physics +0909.3561 Networking and Internet Architecture +0909.3564 Symplectic Geometry +0909.3566 Differential Geometry +0909.3567 Dynamical Systems +0909.3570 Optimization and Control +0909.3573 Algebraic Geometry +0909.3575 Dynamical Systems +0909.3579 Materials Science +0909.3582 Differential Geometry +0909.3586 +0909.3591 Computation and Language +0909.3594 Astrophysics of Galaxies +0909.3595 Statistics Theory +0909.3596 Logic in Computer Science +0909.3601 Quantum Algebra +0909.3603 Superconductivity +0909.3606 Learning +0909.3609 Learning +0909.3610 Symplectic Geometry +0909.3620 Statistical Mechanics +0909.3621 Algebraic Geometry +0909.3627 Statistical Mechanics +0909.3628 Computational Physics +0909.3630 Differential Geometry +0909.3631 Cellular Automata and Lattice Gases +0909.3633 Atmospheric and Oceanic Physics +0909.3640 Soft Condensed Matter +0909.3643 Algebraic Geometry +0909.3645 Cosmology and Nongalactic Astrophysics +0909.3646 Phenomenology +0909.3652 Cosmology and Nongalactic Astrophysics +0909.3655 General Finance +0909.3657 Superconductivity +0909.3658 Cryptography and Security +0909.3660 Group Theory +0909.3662 General Mathematics +0909.3670 Astrophysics of Galaxies +0909.3673 Other Condensed Matter +0909.3678 Combinatorics +0909.3679 Mesoscale and Nanoscale Physics +0909.3680 Algebraic Geometry +0909.3682 Classical Analysis and ODEs +0909.3683 Phenomenology +0909.3690 Probability +0909.3695 Combinatorics +0909.3699 Algebraic Geometry +0909.3725 Analysis of PDEs +0909.3731 Materials Science +0909.3734 Functional Analysis +0909.3737 Astrophysics of Galaxies +0909.3739 +0909.3742 Metric Geometry +0909.3743 Quantum Algebra +0909.3744 +0909.3750 +0909.3754 Instrumentation and Methods for Astrophysics +0909.3757 High Energy Astrophysical Phenomena +0909.3766 High Energy Astrophysical Phenomena +0909.3767 +0909.3768 Probability +0909.3772 Phenomenology +0909.3779 Group Theory +0909.3786 Robotics +0909.3791 Algebraic Topology +0909.3794 Disordered Systems and Neural Networks +0909.3795 Algebraic Topology +0909.3800 +0909.3803 Analysis of PDEs +0909.3805 Operator Algebras +0909.3821 Functional Analysis +0909.3822 Probability +0909.3823 Mesoscale and Nanoscale Physics +0909.3831 Mesoscale and Nanoscale Physics +0909.3833 Mesoscale and Nanoscale Physics +math/0606164 Rings and Algebras +math/0610108 Number Theory +math/0611480 Symplectic Geometry +quant-ph/0603019 +0705.2107 Analysis of PDEs +0705.3357 Analysis of PDEs +0705.3959 Analysis of PDEs +0705.4483 Combinatorics +0707.3173 Number Theory +0801.3773 Information Theory +0801.3851 Theory +0807.0900 Symplectic Geometry +0807.1806 Analysis of PDEs +0808.3466 Computation +0809.0137 Metric Geometry +0810.5384 Theory +0901.2349 Computation and Language +0901.3092 +0901.3145 Superconductivity +0902.0081 Algebraic Geometry +0903.2746 +0903.4510 Data Structures and Algorithms +0903.5149 Algebraic Geometry +0904.1764 Algebraic Geometry +0904.1800 Combinatorics +0904.3704 Instrumentation and Methods for Astrophysics +0904.3856 Disordered Systems and Neural Networks +0905.0516 Dynamical Systems +0905.2777 Mesoscale and Nanoscale Physics +0905.3738 Theory +0905.4555 Combinatorics +0905.4747 +0906.0474 +0906.2779 Strongly Correlated Electrons +0906.2801 +0906.3850 General Mathematics +0907.1050 Physics and Society +0907.1391 Phenomenology +0907.1988 Cosmology and Nongalactic Astrophysics +0907.2833 +0907.3468 Theory +0907.4023 Mesoscale and Nanoscale Physics +0907.4650 Cosmology and Nongalactic Astrophysics +0908.0486 Phenomenology +0908.0613 Strongly Correlated Electrons +0908.3720 +0910.0369 Differential Geometry +0910.1281 Mesoscale and Nanoscale Physics +0910.2998 Phenomenology +0910.3809 +0910.3852 General Physics +0910.4008 Functional Analysis +0910.5460 Probability +0911.0751 Strongly Correlated Electrons +0911.0820 Information Theory +0911.0950 +0911.1380 Experiment +0911.1506 +0911.1792 Fluid Dynamics +0911.1796 +0911.1804 Theory +0911.1805 Symplectic Geometry +0911.1810 Algebraic Topology +0911.1816 +0911.1819 Differential Geometry +0911.1823 Cosmology and Nongalactic Astrophysics +0911.1828 Combinatorics +0911.1829 Cosmology and Nongalactic Astrophysics +0911.1832 Dynamical Systems +0911.1834 Pricing of Securities +0911.1835 Algebraic Geometry +0911.1842 Computation and Language +0911.1843 Populations and Evolution +0911.1844 Neurons and Cognition +0911.1853 Fluid Dynamics +0911.1854 Quantum Gases +0911.1862 Logic in Computer Science +0911.1863 Rings and Algebras +0911.1867 Functional Analysis +0911.1870 Numerical Analysis +0911.1872 Fluid Dynamics +0911.1873 Fluid Dynamics +0911.1875 Number Theory +0911.1878 Instrumentation and Methods for Astrophysics +0911.1879 Representation Theory +0911.1881 Combinatorics +0911.1883 Number Theory +0911.1891 Cryptography and Security +0911.1894 Methodology +0911.1898 Exactly Solvable and Integrable Systems +0911.1900 Data Structures and Algorithms +0911.1904 Atmospheric and Oceanic Physics +0911.1921 General Finance +0911.1928 Methodology +0911.1934 Information Theory +0911.1937 Classical Analysis and ODEs +0911.1938 Differential Geometry +0911.1956 +0911.1957 Statistical Mechanics +0911.1965 Computation and Language +0911.1966 Group Theory +0911.1969 Theory +0911.1972 Networking and Internet Architecture +0911.1975 Number Theory +0911.1976 Representation Theory +0911.1980 Probability +0911.1984 Dynamical Systems +0911.1986 Phenomenology +astro-ph/0309375 +astro-ph/0504182 +astro-ph/0504183 +astro-ph/0504185 +astro-ph/0504187 +astro-ph/0504189 +astro-ph/0504190 +astro-ph/0504194 +astro-ph/0504195 +astro-ph/0504197 +astro-ph/0504198 +astro-ph/0504199 +astro-ph/0504201 +astro-ph/0504202 +astro-ph/0504203 +astro-ph/0504205 +astro-ph/0504207 +astro-ph/0504209 +astro-ph/0504212 +astro-ph/0504213 +astro-ph/0504215 +astro-ph/0504219 +astro-ph/0504221 +astro-ph/0504226 +astro-ph/0504227 +astro-ph/0504230 +astro-ph/0504232 +astro-ph/0504233 +astro-ph/0504234 +astro-ph/0504235 +astro-ph/0504238 +astro-ph/0504239 +astro-ph/0504242 +astro-ph/0504243 +astro-ph/0504244 +astro-ph/0504246 +astro-ph/0504248 +astro-ph/0504250 +astro-ph/0504252 +astro-ph/0504253 +astro-ph/0504254 +astro-ph/0504255 +astro-ph/0504258 +astro-ph/0504260 +astro-ph/0504261 +astro-ph/0504265 +astro-ph/0504266 +astro-ph/0504267 +astro-ph/0504268 +astro-ph/0504269 +astro-ph/0504273 +astro-ph/0504276 +astro-ph/0504277 +astro-ph/0504279 +astro-ph/0504280 +astro-ph/0504281 +astro-ph/0504283 +astro-ph/0504284 +astro-ph/0504288 +astro-ph/0504291 +astro-ph/0504293 +astro-ph/0504294 +astro-ph/0504295 +astro-ph/0504299 +astro-ph/0504301 +astro-ph/0504302 +astro-ph/0504303 +astro-ph/0504304 +astro-ph/0504305 +astro-ph/0504307 +astro-ph/0504308 +astro-ph/0504309 +astro-ph/0504311 +astro-ph/0504312 +astro-ph/0504313 +astro-ph/0504314 +astro-ph/0504315 +astro-ph/0504316 +astro-ph/0504317 +astro-ph/0504318 +astro-ph/0504319 +astro-ph/0504320 +astro-ph/0504321 +astro-ph/0504322 +astro-ph/0504323 +astro-ph/0504327 +astro-ph/0504328 +astro-ph/0504330 +astro-ph/0504334 +astro-ph/0504335 +astro-ph/0504338 +astro-ph/0504339 +astro-ph/0504341 +astro-ph/0504342 +astro-ph/0504344 +astro-ph/0504346 +astro-ph/0504347 +astro-ph/0504349 +astro-ph/0504350 +astro-ph/0504351 +astro-ph/0504352 +astro-ph/0504353 +astro-ph/0504354 +astro-ph/0504355 +astro-ph/0504356 +astro-ph/0504358 +astro-ph/0504360 +astro-ph/0504362 +astro-ph/0504363 +astro-ph/0504365 +astro-ph/0504367 +astro-ph/0504369 +astro-ph/0504370 +astro-ph/0504374 +astro-ph/0504375 +astro-ph/0504377 +astro-ph/0504378 +astro-ph/0504382 +astro-ph/0504383 +astro-ph/0504385 +astro-ph/0504386 +astro-ph/0504387 +astro-ph/0504388 +astro-ph/0504390 +astro-ph/0504391 +astro-ph/0504392 +astro-ph/0504393 +astro-ph/0504394 +astro-ph/0504396 +astro-ph/0504398 +astro-ph/0504399 +astro-ph/0504400 +astro-ph/0504402 +astro-ph/0504403 +astro-ph/0504405 +astro-ph/0504408 +astro-ph/0504409 +astro-ph/0504410 +astro-ph/0504411 +astro-ph/0504413 +astro-ph/0504414 +astro-ph/0504415 +astro-ph/0504418 +astro-ph/0504419 +astro-ph/0504420 +astro-ph/0504421 +astro-ph/0504423 +astro-ph/0504424 +astro-ph/0504426 +astro-ph/0504427 +astro-ph/0504428 +astro-ph/0504429 +astro-ph/0504431 +astro-ph/0504432 +astro-ph/0504433 +astro-ph/0504434 +astro-ph/0504435 +astro-ph/0504436 +astro-ph/0504437 +astro-ph/0504438 +astro-ph/0504439 +astro-ph/0504440 +astro-ph/0504441 +astro-ph/0504443 +astro-ph/0504444 +astro-ph/0504445 +astro-ph/0504447 +astro-ph/0504448 +astro-ph/0504450 +astro-ph/0504453 +astro-ph/0504454 +astro-ph/0504457 +astro-ph/0504458 +astro-ph/0504459 +astro-ph/0504460 +astro-ph/0504461 +astro-ph/0504462 +astro-ph/0504463 +astro-ph/0504464 +astro-ph/0504466 +astro-ph/0504467 +astro-ph/0504468 +astro-ph/0504469 +astro-ph/0504470 +astro-ph/0504474 +astro-ph/0504475 +astro-ph/0504477 +astro-ph/0504478 +astro-ph/0504480 +astro-ph/0504481 +astro-ph/0504483 +astro-ph/0504484 +astro-ph/0504488 +astro-ph/0504491 +astro-ph/0504493 +astro-ph/0504494 +astro-ph/0504495 +astro-ph/0504496 +astro-ph/0504498 +astro-ph/0504499 +astro-ph/0504500 +astro-ph/0504502 +astro-ph/0504503 +astro-ph/0504504 +astro-ph/0504507 +astro-ph/0504508 +astro-ph/0504509 +astro-ph/0504511 +astro-ph/0504513 +astro-ph/0504518 +astro-ph/0504529 +astro-ph/0504530 +astro-ph/0504531 +astro-ph/0504532 +astro-ph/0504533 +astro-ph/0504534 +astro-ph/0504536 +astro-ph/0504537 +astro-ph/0504538 +astro-ph/0504541 +astro-ph/0504546 +astro-ph/0504547 +astro-ph/0504548 +astro-ph/0504550 +astro-ph/0504551 +astro-ph/0504552 +astro-ph/0504553 +astro-ph/0504556 +astro-ph/0504558 +astro-ph/0504559 +astro-ph/0504565 +astro-ph/0504567 +astro-ph/0504568 +astro-ph/0504569 +astro-ph/0504570 +astro-ph/0504571 +astro-ph/0504573 +astro-ph/0504574 +astro-ph/0504575 +astro-ph/0504576 +astro-ph/0504577 +astro-ph/0504578 +astro-ph/0504580 +astro-ph/0504581 +astro-ph/0504587 +astro-ph/0504589 +astro-ph/0504590 +astro-ph/0504593 +astro-ph/0504595 +astro-ph/0504596 +astro-ph/0504598 +astro-ph/0504600 +astro-ph/0504601 +astro-ph/0504602 +astro-ph/0504603 +astro-ph/0504604 +astro-ph/0504607 +astro-ph/0504608 +astro-ph/0504609 +astro-ph/0504615 +astro-ph/0504617 +astro-ph/0504618 +astro-ph/0504619 +astro-ph/0504622 +astro-ph/0504623 +astro-ph/0504625 +astro-ph/0504626 +astro-ph/0504630 +astro-ph/0504631 +astro-ph/0504632 +astro-ph/0504633 +astro-ph/0504637 +astro-ph/0504639 +astro-ph/0504640 +astro-ph/0504641 +astro-ph/0504642 +astro-ph/0504643 +astro-ph/0504645 +astro-ph/0504646 +astro-ph/0504647 +astro-ph/0504648 +astro-ph/0504649 +astro-ph/0504652 +astro-ph/0504654 +astro-ph/0504656 +astro-ph/0504657 +astro-ph/0504660 +astro-ph/0504661 +astro-ph/0504663 +astro-ph/0504664 +astro-ph/0504665 +astro-ph/0504666 +astro-ph/0504667 +astro-ph/0504668 +astro-ph/0504669 +astro-ph/0504672 +astro-ph/0505001 +astro-ph/0505002 +astro-ph/0505003 +astro-ph/0505004 +astro-ph/0505005 +astro-ph/0505008 +astro-ph/0505009 +astro-ph/0505010 +astro-ph/0505011 +astro-ph/0505012 +astro-ph/0505014 +astro-ph/0505015 +astro-ph/0505016 +astro-ph/0505017 +astro-ph/0505021 +astro-ph/0505022 +astro-ph/0505023 +astro-ph/0505024 +astro-ph/0505025 +astro-ph/0505027 +astro-ph/0505028 +astro-ph/0505029 +astro-ph/0505031 +astro-ph/0505032 +astro-ph/0505034 +astro-ph/0505036 +astro-ph/0505037 +astro-ph/0505038 +astro-ph/0505039 +astro-ph/0505040 +astro-ph/0505041 +astro-ph/0505043 +astro-ph/0505045 +astro-ph/0505047 +astro-ph/0505048 +astro-ph/0505049 +astro-ph/0505050 +astro-ph/0505051 +astro-ph/0505054 +astro-ph/0505055 +astro-ph/0505057 +astro-ph/0505058 +astro-ph/0505060 +astro-ph/0505061 +astro-ph/0505062 +astro-ph/0505064 +astro-ph/0505065 +astro-ph/0505066 +astro-ph/0505067 +astro-ph/0505068 +astro-ph/0505070 +astro-ph/0505072 +astro-ph/0505075 +astro-ph/0505076 +astro-ph/0505077 +astro-ph/0505081 +astro-ph/0505084 +astro-ph/0505086 +astro-ph/0505088 +astro-ph/0505089 +astro-ph/0505090 +astro-ph/0505091 +astro-ph/0505093 +astro-ph/0505094 +astro-ph/0505095 +astro-ph/0505097 +astro-ph/0505098 +astro-ph/0505099 +astro-ph/0505100 +astro-ph/0505104 +astro-ph/0505105 +astro-ph/0505106 +astro-ph/0505109 +astro-ph/0505110 +astro-ph/0505111 +astro-ph/0505112 +astro-ph/0505116 +astro-ph/0505117 +astro-ph/0505118 +astro-ph/0505119 +astro-ph/0505120 +astro-ph/0505121 +astro-ph/0505124 +astro-ph/0505125 +astro-ph/0505126 +astro-ph/0505128 +astro-ph/0505129 +astro-ph/0505130 +astro-ph/0505131 +astro-ph/0505134 +astro-ph/0505137 +astro-ph/0505138 +astro-ph/0505139 +astro-ph/0505142 +astro-ph/0505143 +astro-ph/0505144 +astro-ph/0505145 +astro-ph/0505148 +astro-ph/0505149 +astro-ph/0505154 +astro-ph/0505157 +astro-ph/0505160 +astro-ph/0505161 +astro-ph/0505162 +astro-ph/0505168 +astro-ph/0505170 +astro-ph/0505171 +astro-ph/0505172 +astro-ph/0505174 +astro-ph/0505175 +astro-ph/0505176 +astro-ph/0505178 +astro-ph/0505181 +astro-ph/0505183 +astro-ph/0505186 +astro-ph/0505187 +astro-ph/0505188 +astro-ph/0505190 +astro-ph/0505191 +astro-ph/0505192 +astro-ph/0505193 +astro-ph/0505196 +astro-ph/0505197 +astro-ph/0505198 +astro-ph/0505199 +astro-ph/0505200 +astro-ph/0505201 +astro-ph/0505203 +astro-ph/0505204 +astro-ph/0505205 +astro-ph/0505207 +astro-ph/0505208 +astro-ph/0505209 +astro-ph/0505210 +astro-ph/0505211 +astro-ph/0505212 +astro-ph/0505213 +astro-ph/0505216 +astro-ph/0505218 +astro-ph/0505220 +astro-ph/0505221 +astro-ph/0505222 +astro-ph/0505224 +astro-ph/0505225 +astro-ph/0505226 +astro-ph/0505227 +astro-ph/0505229 +astro-ph/0505231 +astro-ph/0505232 +astro-ph/0505233 +astro-ph/0505234 +astro-ph/0505235 +astro-ph/0505236 +astro-ph/0505238 +astro-ph/0505239 +astro-ph/0505241 +astro-ph/0505245 +astro-ph/0505248 +astro-ph/0505249 +astro-ph/0505250 +astro-ph/0505252 +astro-ph/0505255 +astro-ph/0505256 +astro-ph/0505257 +astro-ph/0505258 +astro-ph/0505259 +astro-ph/0505260 +astro-ph/0505265 +astro-ph/0505266 +astro-ph/0505268 +astro-ph/0505269 +astro-ph/0505270 +astro-ph/0505271 +astro-ph/0505272 +astro-ph/0505276 +astro-ph/0505279 +astro-ph/0505280 +astro-ph/0505281 +astro-ph/0505282 +astro-ph/0505284 +astro-ph/0505285 +astro-ph/0505286 +astro-ph/0505287 +astro-ph/0505288 +astro-ph/0505289 +astro-ph/0505291 +astro-ph/0505292 +astro-ph/0505293 +astro-ph/0505296 +astro-ph/0505297 +astro-ph/0505298 +astro-ph/0505302 +astro-ph/0505305 +astro-ph/0505306 +astro-ph/0505307 +astro-ph/0505308 +astro-ph/0505309 +astro-ph/0505312 +astro-ph/0505314 +astro-ph/0505315 +astro-ph/0505319 +astro-ph/0505320 +astro-ph/0505321 +astro-ph/0505322 +astro-ph/0505324 +astro-ph/0505326 +astro-ph/0505327 +astro-ph/0505331 +astro-ph/0505332 +astro-ph/0505333 +astro-ph/0505336 +astro-ph/0505338 +astro-ph/0505339 +astro-ph/0505341 +astro-ph/0505343 +astro-ph/0505344 +astro-ph/0505345 +astro-ph/0505346 +astro-ph/0505348 +astro-ph/0505350 +astro-ph/0505351 +astro-ph/0505352 +astro-ph/0505353 +astro-ph/0505355 +astro-ph/0505356 +astro-ph/0505357 +astro-ph/0505358 +astro-ph/0505359 +astro-ph/0505360 +astro-ph/0505363 +astro-ph/0505364 +astro-ph/0505365 +astro-ph/0505366 +astro-ph/0505367 +astro-ph/0505368 +astro-ph/0505370 +astro-ph/0505371 +astro-ph/0505372 +astro-ph/0505373 +astro-ph/0505374 +astro-ph/0505375 +astro-ph/0505376 +astro-ph/0505378 +astro-ph/0505379 +astro-ph/0505381 +astro-ph/0505383 +astro-ph/0505384 +astro-ph/0505385 +astro-ph/0505386 +astro-ph/0505387 +astro-ph/0505388 +astro-ph/0505389 +astro-ph/0505393 +astro-ph/0505394 +astro-ph/0505395 +astro-ph/0505397 +astro-ph/0505398 +astro-ph/0505399 +astro-ph/0505400 +astro-ph/0505401 +astro-ph/0505404 +astro-ph/0505405 +astro-ph/0505407 +astro-ph/0505408 +astro-ph/0505410 +astro-ph/0505411 +astro-ph/0505412 +astro-ph/0505415 +astro-ph/0505416 +astro-ph/0505417 +astro-ph/0505418 +astro-ph/0505419 +astro-ph/0505420 +astro-ph/0505421 +astro-ph/0505422 +astro-ph/0505424 +astro-ph/0505425 +astro-ph/0505427 +astro-ph/0505433 +astro-ph/0505434 +astro-ph/0505435 +astro-ph/0505438 +astro-ph/0505439 +astro-ph/0505440 +astro-ph/0505441 +astro-ph/0505443 +astro-ph/0505445 +astro-ph/0505446 +astro-ph/0505448 +astro-ph/0505450 +astro-ph/0505451 +astro-ph/0505452 +astro-ph/0505453 +astro-ph/0505454 +astro-ph/0505455 +astro-ph/0505456 +astro-ph/0505461 +astro-ph/0505462 +astro-ph/0505464 +astro-ph/0505465 +astro-ph/0505466 +astro-ph/0505467 +astro-ph/0505469 +astro-ph/0505473 +astro-ph/0505479 +astro-ph/0505480 +astro-ph/0505481 +astro-ph/0505483 +astro-ph/0505485 +astro-ph/0505488 +astro-ph/0505489 +astro-ph/0505495 +astro-ph/0505497 +astro-ph/0505499 +astro-ph/0505501 +astro-ph/0505503 +astro-ph/0505504 +astro-ph/0505506 +astro-ph/0505507 +astro-ph/0505509 +astro-ph/0505510 +astro-ph/0505511 +astro-ph/0505512 +astro-ph/0505514 +astro-ph/0505515 +astro-ph/0505517 +astro-ph/0505521 +astro-ph/0505523 +astro-ph/0505524 +astro-ph/0505527 +astro-ph/0505528 +astro-ph/0505531 +astro-ph/0505532 +astro-ph/0505534 +astro-ph/0505538 +astro-ph/0505540 +astro-ph/0505544 +astro-ph/0505545 +astro-ph/0505546 +astro-ph/0505547 +astro-ph/0505548 +astro-ph/0505549 +astro-ph/0505550 +astro-ph/0505553 +astro-ph/0505554 +astro-ph/0505556 +astro-ph/0505558 +astro-ph/0505560 +astro-ph/0505563 +astro-ph/0505565 +astro-ph/0505567 +astro-ph/0505568 +astro-ph/0505570 +astro-ph/0505571 +astro-ph/0505572 +astro-ph/0505573 +astro-ph/0505574 +astro-ph/0505580 +astro-ph/0505582 +astro-ph/0505584 +astro-ph/0505585 +astro-ph/0505587 +astro-ph/0505593 +astro-ph/0505594 +astro-ph/0505596 +astro-ph/0505598 +astro-ph/0505601 +astro-ph/0505603 +astro-ph/0505605 +astro-ph/0505606 +astro-ph/0505608 +astro-ph/0505609 +astro-ph/0505610 +astro-ph/0505611 +astro-ph/0505612 +astro-ph/0505613 +astro-ph/0505614 +astro-ph/0505615 +astro-ph/0505619 +astro-ph/0505622 +astro-ph/0505624 +astro-ph/0505626 +astro-ph/0505627 +astro-ph/0505629 +astro-ph/0506001 +astro-ph/0506002 +astro-ph/0506003 +astro-ph/0506004 +astro-ph/0506005 +astro-ph/0506006 +astro-ph/0506012 +astro-ph/0506014 +astro-ph/0506016 +astro-ph/0506017 +astro-ph/0506019 +astro-ph/0506023 +astro-ph/0506024 +astro-ph/0506025 +astro-ph/0506027 +astro-ph/0506028 +astro-ph/0506031 +astro-ph/0506032 +astro-ph/0506033 +astro-ph/0506034 +astro-ph/0506035 +astro-ph/0506039 +astro-ph/0506040 +astro-ph/0506042 +astro-ph/0506045 +astro-ph/0506049 +astro-ph/0506051 +astro-ph/0506052 +astro-ph/0506055 +astro-ph/0506057 +astro-ph/0506058 +astro-ph/0506059 +astro-ph/0506060 +astro-ph/0506066 +astro-ph/0506067 +astro-ph/0506068 +astro-ph/0506071 +astro-ph/0506072 +astro-ph/0506073 +astro-ph/0506074 +astro-ph/0506076 +astro-ph/0506077 +astro-ph/0506078 +astro-ph/0506083 +astro-ph/0506084 +astro-ph/0506085 +astro-ph/0506086 +astro-ph/0506087 +astro-ph/0506088 +astro-ph/0506089 +astro-ph/0506090 +astro-ph/0506093 +astro-ph/0506094 +astro-ph/0506095 +astro-ph/0506096 +astro-ph/0506097 +astro-ph/0506098 +astro-ph/0506100 +astro-ph/0506102 +astro-ph/0506104 +astro-ph/0506105 +astro-ph/0506106 +astro-ph/0506107 +astro-ph/0506108 +astro-ph/0506109 +astro-ph/0506111 +astro-ph/0506112 +astro-ph/0506114 +astro-ph/0506115 +astro-ph/0506116 +astro-ph/0506118 +astro-ph/0506120 +astro-ph/0506121 +astro-ph/0506122 +astro-ph/0506125 +astro-ph/0506126 +astro-ph/0506127 +astro-ph/0506131 +astro-ph/0506132 +astro-ph/0506133 +astro-ph/0506134 +astro-ph/0506135 +astro-ph/0506137 +astro-ph/0506138 +astro-ph/0506139 +astro-ph/0506140 +astro-ph/0506142 +astro-ph/0506144 +astro-ph/0506145 +astro-ph/0506146 +astro-ph/0506147 +astro-ph/0506149 +astro-ph/0506151 +astro-ph/0506153 +astro-ph/0506154 +astro-ph/0506155 +astro-ph/0506156 +astro-ph/0506158 +astro-ph/0506159 +astro-ph/0506160 +astro-ph/0506162 +astro-ph/0506164 +astro-ph/0506165 +astro-ph/0506166 +astro-ph/0506167 +astro-ph/0506168 +astro-ph/0506176 +astro-ph/0506177 +astro-ph/0506179 +astro-ph/0506180 +astro-ph/0506181 +astro-ph/0506182 +astro-ph/0506183 +astro-ph/0506184 +astro-ph/0506185 +astro-ph/0506195 +astro-ph/0506196 +astro-ph/0506197 +astro-ph/0506199 +astro-ph/0506200 +astro-ph/0506201 +astro-ph/0506206 +astro-ph/0506207 +astro-ph/0506209 +astro-ph/0506211 +astro-ph/0506212 +astro-ph/0506214 +astro-ph/0506215 +astro-ph/0506216 +astro-ph/0506219 +astro-ph/0506221 +astro-ph/0506222 +astro-ph/0506223 +astro-ph/0506225 +astro-ph/0506226 +astro-ph/0506229 +astro-ph/0506230 +astro-ph/0506232 +astro-ph/0506237 +astro-ph/0506239 +astro-ph/0506240 +astro-ph/0506241 +astro-ph/0506242 +astro-ph/0506243 +astro-ph/0506244 +astro-ph/0506245 +astro-ph/0506246 +astro-ph/0506247 +astro-ph/0506249 +astro-ph/0506252 +astro-ph/0506253 +astro-ph/0506254 +astro-ph/0506257 +astro-ph/0506258 +astro-ph/0506259 +astro-ph/0506261 +astro-ph/0506264 +astro-ph/0506266 +astro-ph/0506267 +astro-ph/0506268 +astro-ph/0506270 +astro-ph/0506271 +astro-ph/0506273 +astro-ph/0506274 +astro-ph/0506275 +astro-ph/0506276 +astro-ph/0506277 +astro-ph/0506279 +astro-ph/0506280 +astro-ph/0506282 +astro-ph/0506284 +astro-ph/0506285 +astro-ph/0506288 +astro-ph/0506291 +astro-ph/0506295 +astro-ph/0506298 +astro-ph/0506299 +astro-ph/0506300 +astro-ph/0506301 +astro-ph/0506303 +astro-ph/0506306 +astro-ph/0506307 +astro-ph/0506312 +astro-ph/0506316 +astro-ph/0506317 +astro-ph/0506320 +astro-ph/0506321 +astro-ph/0506323 +astro-ph/0506324 +astro-ph/0506325 +astro-ph/0506327 +astro-ph/0506328 +astro-ph/0506329 +astro-ph/0506330 +astro-ph/0506331 +astro-ph/0506332 +astro-ph/0506336 +astro-ph/0506337 +astro-ph/0506338 +astro-ph/0506339 +astro-ph/0506341 +astro-ph/0506342 +astro-ph/0506343 +astro-ph/0506345 +astro-ph/0506346 +astro-ph/0506347 +astro-ph/0506349 +astro-ph/0506351 +astro-ph/0506352 +astro-ph/0506353 +astro-ph/0506354 +astro-ph/0506355 +astro-ph/0506356 +astro-ph/0506357 +astro-ph/0506359 +astro-ph/0506360 +astro-ph/0506361 +astro-ph/0506362 +astro-ph/0506364 +astro-ph/0506365 +astro-ph/0506366 +astro-ph/0506367 +astro-ph/0506372 +astro-ph/0506373 +astro-ph/0506375 +astro-ph/0506376 +astro-ph/0506377 +astro-ph/0506379 +astro-ph/0506383 +astro-ph/0506384 +astro-ph/0506387 +astro-ph/0506388 +astro-ph/0506389 +astro-ph/0506390 +astro-ph/0506392 +astro-ph/0506393 +astro-ph/0506394 +astro-ph/0506396 +astro-ph/0506400 +astro-ph/0506402 +astro-ph/0506403 +astro-ph/0506404 +astro-ph/0506405 +astro-ph/0506406 +astro-ph/0506411 +astro-ph/0506415 +astro-ph/0506418 +astro-ph/0506421 +astro-ph/0506441 +astro-ph/0506444 +astro-ph/0506446 +astro-ph/0506456 +astro-ph/0506461 +astro-ph/0506468 +astro-ph/0506475 +astro-ph/0506481 +astro-ph/0506483 +astro-ph/0506485 +astro-ph/0506491 +astro-ph/0506494 +astro-ph/0506496 +astro-ph/0506497 +astro-ph/0506504 +astro-ph/0506505 +astro-ph/0506507 +astro-ph/0506512 +astro-ph/0506514 +astro-ph/0506521 +astro-ph/0506525 +astro-ph/0506538 +astro-ph/0506541 +astro-ph/0506542 +astro-ph/0506553 +astro-ph/0506561 +astro-ph/0506569 +astro-ph/0506585 +astro-ph/0506587 +astro-ph/0506589 +astro-ph/0506590 +astro-ph/0506592 +astro-ph/0506596 +astro-ph/0506603 +astro-ph/0506605 +astro-ph/0506610 +astro-ph/0506611 +astro-ph/0506617 +astro-ph/0506633 +astro-ph/0506634 +astro-ph/0506636 +astro-ph/0506638 +astro-ph/0506639 +astro-ph/0506646 +astro-ph/0506649 +astro-ph/0506650 +astro-ph/0506651 +astro-ph/0506655 +astro-ph/0506656 +astro-ph/0506666 +astro-ph/0506668 +astro-ph/0506683 +astro-ph/0506688 +astro-ph/0506690 +astro-ph/0506697 +astro-ph/0506718 +astro-ph/0506719 +astro-ph/0506722 +astro-ph/0506734 +astro-ph/0506744 +astro-ph/0506751 +astro-ph/0506759 +astro-ph/0506761 +astro-ph/0506762 +astro-ph/0506767 +astro-ph/0506768 +astro-ph/0506769 +astro-ph/0507006 +astro-ph/0507024 +astro-ph/0507030 +astro-ph/0507031 +astro-ph/0507032 +astro-ph/0507034 +astro-ph/0507035 +astro-ph/0507036 +astro-ph/0507044 +astro-ph/0507046 +astro-ph/0507066 +astro-ph/0507070 +astro-ph/0507074 +astro-ph/0507075 +astro-ph/0507077 +astro-ph/0507082 +astro-ph/0507086 +astro-ph/0507099 +astro-ph/0507101 +astro-ph/0507108 +astro-ph/0507113 +astro-ph/0507115 +astro-ph/0507117 +astro-ph/0507123 +astro-ph/0507124 +astro-ph/0507131 +astro-ph/0507138 +astro-ph/0507142 +astro-ph/0507143 +astro-ph/0507144 +astro-ph/0507148 +astro-ph/0507155 +astro-ph/0507157 +astro-ph/0507159 +astro-ph/0507161 +astro-ph/0507162 +astro-ph/0507165 +astro-ph/0507166 +astro-ph/0507167 +astro-ph/0507168 +astro-ph/0507170 +astro-ph/0507173 +astro-ph/0507179 +astro-ph/0507180 +astro-ph/0507188 +astro-ph/0507194 +astro-ph/0507198 +astro-ph/0507201 +astro-ph/0507203 +astro-ph/0507209 +astro-ph/0507214 +astro-ph/0507216 +astro-ph/0507220 +astro-ph/0507226 +astro-ph/0507228 +astro-ph/0507242 +astro-ph/0507243 +astro-ph/0507247 +astro-ph/0507248 +astro-ph/0507253 +astro-ph/0507267 +astro-ph/0507268 +astro-ph/0507272 +astro-ph/0507278 +astro-ph/0507279 +astro-ph/0507282 +astro-ph/0507283 +astro-ph/0507285 +astro-ph/0507291 +astro-ph/0507293 +astro-ph/0507296 +astro-ph/0507304 +astro-ph/0507315 +astro-ph/0507320 +astro-ph/0507321 +astro-ph/0507323 +astro-ph/0507329 +astro-ph/0507342 +astro-ph/0507343 +astro-ph/0507352 +astro-ph/0507371 +astro-ph/0507376 +astro-ph/0507378 +astro-ph/0507380 +astro-ph/0507393 +astro-ph/0507400 +astro-ph/0507403 +astro-ph/0507404 +astro-ph/0507410 +astro-ph/0507419 +astro-ph/0507430 +astro-ph/0507432 +astro-ph/0507435 +astro-ph/0507436 +astro-ph/0507452 +astro-ph/0507464 +astro-ph/0507470 +astro-ph/0507474 +astro-ph/0507475 +astro-ph/0507490 +astro-ph/0507499 +astro-ph/0507509 +astro-ph/0507510 +astro-ph/0507512 +astro-ph/0507518 +astro-ph/0507537 +astro-ph/0507540 +astro-ph/0507542 +astro-ph/0507547 +astro-ph/0507552 +astro-ph/0507556 +astro-ph/0507557 +astro-ph/0507570 +astro-ph/0507572 +astro-ph/0507573 +astro-ph/0507582 +astro-ph/0507591 +astro-ph/0507594 +astro-ph/0507602 +astro-ph/0507603 +astro-ph/0507604 +astro-ph/0507605 +astro-ph/0507607 +astro-ph/0507618 +astro-ph/0507631 +astro-ph/0507635 +astro-ph/0507650 +astro-ph/0507658 +astro-ph/0507659 +astro-ph/0507664 +astro-ph/0507668 +astro-ph/0507690 +astro-ph/0507695 +astro-ph/0507698 +astro-ph/0507703 +astro-ph/0507704 +astro-ph/0507708 +astro-ph/0507710 +astro-ph/0507716 +astro-ph/0507720 +astro-ph/0508001 +astro-ph/0508004 +astro-ph/0508007 +astro-ph/0508011 +astro-ph/0508016 +astro-ph/0508020 +astro-ph/0508027 +astro-ph/0508028 +astro-ph/0508031 +astro-ph/0508033 +astro-ph/0508037 +astro-ph/0508047 +astro-ph/0508052 +astro-ph/0508064 +astro-ph/0508068 +astro-ph/0508072 +astro-ph/0508074 +astro-ph/0508075 +astro-ph/0508077 +astro-ph/0508093 +astro-ph/0508098 +astro-ph/0508107 +astro-ph/0508109 +astro-ph/0508110 +astro-ph/0508114 +astro-ph/0508124 +astro-ph/0508129 +astro-ph/0508130 +astro-ph/0508137 +astro-ph/0508138 +astro-ph/0508151 +astro-ph/0508154 +astro-ph/0508155 +astro-ph/0508161 +astro-ph/0508164 +astro-ph/0508170 +astro-ph/0508181 +astro-ph/0508184 +astro-ph/0508185 +astro-ph/0508191 +astro-ph/0508198 +astro-ph/0508204 +astro-ph/0508211 +astro-ph/0508212 +astro-ph/0508214 +astro-ph/0508219 +astro-ph/0508222 +astro-ph/0508235 +astro-ph/0508237 +astro-ph/0508238 +astro-ph/0508240 +astro-ph/0508245 +astro-ph/0508246 +astro-ph/0508255 +astro-ph/0508258 +astro-ph/0508260 +astro-ph/0508263 +astro-ph/0508265 +astro-ph/0508266 +astro-ph/0508270 +astro-ph/0508276 +astro-ph/0508280 +astro-ph/0508281 +astro-ph/0508282 +astro-ph/0508288 +astro-ph/0508291 +astro-ph/0508306 +astro-ph/0508307 +astro-ph/0508313 +astro-ph/0508314 +astro-ph/0508315 +astro-ph/0508319 +astro-ph/0508320 +astro-ph/0508341 +astro-ph/0508351 +astro-ph/0508358 +astro-ph/0508360 +astro-ph/0508362 +astro-ph/0508368 +astro-ph/0508371 +astro-ph/0508379 +astro-ph/0508392 +astro-ph/0508393 +astro-ph/0508394 +astro-ph/0508395 +astro-ph/0508396 +astro-ph/0508408 +astro-ph/0508413 +astro-ph/0508416 +astro-ph/0508417 +astro-ph/0508418 +astro-ph/0508423 +astro-ph/0508425 +astro-ph/0508427 +astro-ph/0508430 +astro-ph/0508433 +astro-ph/0508434 +astro-ph/0508436 +astro-ph/0508438 +astro-ph/0508446 +astro-ph/0508447 +astro-ph/0508455 +astro-ph/0508469 +astro-ph/0508480 +astro-ph/0508482 +astro-ph/0508485 +astro-ph/0508486 +astro-ph/0508490 +astro-ph/0508494 +astro-ph/0508497 +astro-ph/0508500 +astro-ph/0508509 +astro-ph/0508520 +astro-ph/0508522 +astro-ph/0508530 +astro-ph/0508533 +astro-ph/0508536 +astro-ph/0508539 +astro-ph/0508545 +astro-ph/0508546 +astro-ph/0508551 +astro-ph/0508565 +astro-ph/0508574 +astro-ph/0508575 +astro-ph/0508577 +astro-ph/0508583 +astro-ph/0508585 +astro-ph/0508587 +astro-ph/0508588 +astro-ph/0508599 +astro-ph/0508605 +astro-ph/0508610 +astro-ph/0508613 +astro-ph/0508615 +astro-ph/0508619 +astro-ph/0508620 +astro-ph/0508622 +astro-ph/0508623 +astro-ph/0508624 +astro-ph/0508632 +astro-ph/0508637 +astro-ph/0508638 +astro-ph/0508641 +astro-ph/0508642 +astro-ph/0508646 +astro-ph/0508648 +astro-ph/0508650 +astro-ph/0508652 +astro-ph/0508655 +astro-ph/0508667 +astro-ph/0508674 +astro-ph/0508676 +astro-ph/0508679 +astro-ph/0508682 +astro-ph/0508684 +astro-ph/0508685 +astro-ph/0508687 +astro-ph/0508690 +astro-ph/0508692 +astro-ph/0509008 +astro-ph/0509010 +astro-ph/0509011 +astro-ph/0509015 +astro-ph/0509017 +astro-ph/0509018 +astro-ph/0509022 +astro-ph/0509029 +astro-ph/0509030 +astro-ph/0509035 +astro-ph/0509040 +astro-ph/0509042 +astro-ph/0509043 +astro-ph/0509047 +astro-ph/0509049 +astro-ph/0509061 +astro-ph/0509069 +astro-ph/0509070 +astro-ph/0509084 +astro-ph/0509085 +astro-ph/0509086 +astro-ph/0509095 +astro-ph/0509097 +astro-ph/0509104 +astro-ph/0509110 +astro-ph/0509111 +astro-ph/0509112 +astro-ph/0509113 +astro-ph/0509114 +astro-ph/0509115 +astro-ph/0509119 +astro-ph/0509121 +astro-ph/0509123 +astro-ph/0509124 +astro-ph/0509125 +astro-ph/0509128 +astro-ph/0509138 +astro-ph/0509150 +astro-ph/0509153 +astro-ph/0509162 +astro-ph/0509164 +astro-ph/0509165 +astro-ph/0509171 +astro-ph/0509174 +astro-ph/0509189 +astro-ph/0509194 +astro-ph/0509211 +astro-ph/0509215 +astro-ph/0509217 +astro-ph/0509227 +astro-ph/0509229 +astro-ph/0509241 +astro-ph/0509242 +astro-ph/0509244 +astro-ph/0509249 +astro-ph/0509252 +astro-ph/0509255 +astro-ph/0509273 +astro-ph/0509274 +astro-ph/0509277 +astro-ph/0509281 +astro-ph/0509287 +astro-ph/0509294 +astro-ph/0509295 +astro-ph/0509300 +astro-ph/0509303 +astro-ph/0509306 +astro-ph/0509312 +astro-ph/0509315 +astro-ph/0509326 +astro-ph/0509329 +astro-ph/0509331 +astro-ph/0509333 +astro-ph/0509336 +astro-ph/0509340 +astro-ph/0509342 +astro-ph/0509347 +astro-ph/0509354 +astro-ph/0509362 +astro-ph/0509364 +astro-ph/0509374 +astro-ph/0509375 +astro-ph/0509376 +astro-ph/0509379 +astro-ph/0509380 +astro-ph/0509381 +astro-ph/0509382 +astro-ph/0509383 +astro-ph/0509391 +astro-ph/0509400 +astro-ph/0509405 +astro-ph/0509407 +astro-ph/0509426 +astro-ph/0509432 +astro-ph/0509434 +astro-ph/0509435 +astro-ph/0509436 +astro-ph/0509438 +astro-ph/0509439 +astro-ph/0509441 +astro-ph/0509446 +astro-ph/0509458 +astro-ph/0509460 +astro-ph/0509462 +astro-ph/0509465 +astro-ph/0509476 +astro-ph/0509482 +astro-ph/0509486 +astro-ph/0509488 +astro-ph/0509489 +astro-ph/0509491 +astro-ph/0509492 +astro-ph/0509493 +astro-ph/0509513 +astro-ph/0509515 +astro-ph/0509517 +astro-ph/0509519 +astro-ph/0509522 +astro-ph/0509529 +astro-ph/0509530 +astro-ph/0509532 +astro-ph/0509539 +astro-ph/0509541 +astro-ph/0509544 +astro-ph/0509545 +astro-ph/0509550 +astro-ph/0509553 +astro-ph/0509555 +astro-ph/0509558 +astro-ph/0509560 +astro-ph/0509563 +astro-ph/0509567 +astro-ph/0509573 +astro-ph/0509580 +astro-ph/0509583 +astro-ph/0509584 +astro-ph/0509585 +astro-ph/0509586 +astro-ph/0509590 +astro-ph/0509598 +astro-ph/0509604 +astro-ph/0509610 +astro-ph/0509620 +astro-ph/0509633 +astro-ph/0509641 +astro-ph/0509645 +astro-ph/0509650 +astro-ph/0509653 +astro-ph/0509657 +astro-ph/0509669 +astro-ph/0509693 +astro-ph/0509697 +astro-ph/0509713 +astro-ph/0509723 +astro-ph/0509726 +astro-ph/0509735 +astro-ph/0509737 +astro-ph/0509738 +astro-ph/0509746 +astro-ph/0509761 +astro-ph/0509778 +astro-ph/0509782 +astro-ph/0509789 +astro-ph/0509792 +astro-ph/0509804 +astro-ph/0509811 +astro-ph/0509834 +astro-ph/0509836 +astro-ph/0509839 +astro-ph/0509841 +astro-ph/0509844 +astro-ph/0509849 +astro-ph/0509850 +astro-ph/0509852 +astro-ph/0509853 +astro-ph/0509857 +astro-ph/0509875 +astro-ph/0509877 +astro-ph/0509882 +astro-ph/0509902 +astro-ph/0509905 +astro-ph/0509911 +astro-ph/0510032 +astro-ph/0510042 +astro-ph/0510049 +astro-ph/0510051 +astro-ph/0510069 +astro-ph/0510074 +astro-ph/0510078 +astro-ph/0510092 +astro-ph/0510095 +astro-ph/0510117 +astro-ph/0510121 +astro-ph/0510122 +astro-ph/0510131 +astro-ph/0510138 +astro-ph/0510153 +astro-ph/0510158 +astro-ph/0510178 +astro-ph/0510182 +astro-ph/0510183 +astro-ph/0510193 +astro-ph/0510199 +astro-ph/0510209 +astro-ph/0510210 +astro-ph/0510214 +astro-ph/0510215 +astro-ph/0510216 +astro-ph/0510217 +astro-ph/0510223 +astro-ph/0510224 +astro-ph/0510234 +astro-ph/0510238 +astro-ph/0510239 +astro-ph/0510249 +astro-ph/0510261 +astro-ph/0510263 +astro-ph/0510264 +astro-ph/0510265 +astro-ph/0510267 +astro-ph/0510268 +astro-ph/0510269 +astro-ph/0510281 +astro-ph/0510283 +astro-ph/0510284 +astro-ph/0510285 +astro-ph/0510286 +astro-ph/0510287 +astro-ph/0510290 +astro-ph/0510296 +astro-ph/0510312 +astro-ph/0510313 +astro-ph/0510316 +astro-ph/0510321 +astro-ph/0510334 +astro-ph/0510339 +astro-ph/0510340 +astro-ph/0510342 +astro-ph/0510345 +astro-ph/0510350 +astro-ph/0510354 +astro-ph/0510358 +astro-ph/0510370 +astro-ph/0510376 +astro-ph/0510383 +astro-ph/0510385 +astro-ph/0510391 +astro-ph/0510393 +astro-ph/0510398 +astro-ph/0510400 +astro-ph/0510402 +astro-ph/0510413 +astro-ph/0510417 +astro-ph/0510421 +astro-ph/0510424 +astro-ph/0510425 +astro-ph/0510426 +astro-ph/0510427 +astro-ph/0510428 +astro-ph/0510431 +astro-ph/0510432 +astro-ph/0510433 +astro-ph/0510434 +astro-ph/0510439 +astro-ph/0510440 +astro-ph/0510452 +astro-ph/0510456 +astro-ph/0510458 +astro-ph/0510474 +astro-ph/0510478 +astro-ph/0510484 +astro-ph/0510486 +astro-ph/0510490 +astro-ph/0510491 +astro-ph/0510494 +astro-ph/0510495 +astro-ph/0510497 +astro-ph/0510501 +astro-ph/0510502 +astro-ph/0510507 +astro-ph/0510509 +astro-ph/0510511 +astro-ph/0510516 +astro-ph/0510526 +astro-ph/0510528 +astro-ph/0510539 +astro-ph/0510544 +astro-ph/0510546 +astro-ph/0510552 +astro-ph/0510560 +astro-ph/0510561 +astro-ph/0510563 +astro-ph/0510567 +astro-ph/0510568 +astro-ph/0510570 +astro-ph/0510572 +astro-ph/0510575 +astro-ph/0510579 +astro-ph/0510586 +astro-ph/0510594 +astro-ph/0510596 +astro-ph/0510605 +astro-ph/0510606 +astro-ph/0510610 +astro-ph/0510611 +astro-ph/0510613 +astro-ph/0510614 +astro-ph/0510615 +astro-ph/0510620 +astro-ph/0510633 +astro-ph/0510638 +astro-ph/0510640 +astro-ph/0510641 +astro-ph/0510643 +astro-ph/0510646 +astro-ph/0510647 +astro-ph/0510655 +astro-ph/0510660 +astro-ph/0510674 +astro-ph/0510679 +astro-ph/0510681 +astro-ph/0510682 +astro-ph/0510685 +astro-ph/0510699 +astro-ph/0510709 +astro-ph/0510712 +astro-ph/0510724 +astro-ph/0510735 +astro-ph/0510738 +astro-ph/0510747 +astro-ph/0510749 +astro-ph/0510751 +astro-ph/0510752 +astro-ph/0510753 +astro-ph/0510770 +astro-ph/0510781 +astro-ph/0510792 +astro-ph/0510794 +astro-ph/0510796 +astro-ph/0510797 +astro-ph/0510798 +astro-ph/0510801 +astro-ph/0510802 +astro-ph/0510804 +astro-ph/0510806 +astro-ph/0510812 +astro-ph/0510831 +astro-ph/0510847 +astro-ph/0510852 +astro-ph/0510855 +astro-ph/0511008 +astro-ph/0511011 +astro-ph/0511016 +astro-ph/0511017 +astro-ph/0511026 +astro-ph/0511031 +astro-ph/0511033 +astro-ph/0511035 +astro-ph/0511055 +astro-ph/0511074 +astro-ph/0511077 +astro-ph/0511090 +astro-ph/0511091 +astro-ph/0511093 +astro-ph/0511095 +astro-ph/0511097 +astro-ph/0511099 +astro-ph/0511100 +astro-ph/0511110 +astro-ph/0511113 +astro-ph/0511115 +astro-ph/0511117 +astro-ph/0511121 +astro-ph/0511123 +astro-ph/0511125 +astro-ph/0511126 +astro-ph/0511130 +astro-ph/0511137 +astro-ph/0511144 +astro-ph/0511149 +astro-ph/0511150 +astro-ph/0511166 +astro-ph/0511168 +astro-ph/0511172 +astro-ph/0511175 +astro-ph/0511178 +astro-ph/0511182 +astro-ph/0511185 +astro-ph/0511186 +astro-ph/0511188 +astro-ph/0511191 +astro-ph/0511195 +astro-ph/0511196 +astro-ph/0511207 +astro-ph/0511209 +astro-ph/0511216 +astro-ph/0511223 +astro-ph/0511235 +astro-ph/0511237 +astro-ph/0511238 +astro-ph/0511239 +astro-ph/0511248 +astro-ph/0511251 +astro-ph/0511273 +astro-ph/0511274 +astro-ph/0511278 +astro-ph/0511279 +astro-ph/0511280 +astro-ph/0511281 +astro-ph/0511298 +astro-ph/0511306 +astro-ph/0511307 +astro-ph/0511309 +astro-ph/0511311 +astro-ph/0511326 +astro-ph/0511328 +astro-ph/0511329 +astro-ph/0511332 +astro-ph/0511338 +astro-ph/0511339 +astro-ph/0511344 +astro-ph/0511346 +astro-ph/0511349 +astro-ph/0511350 +astro-ph/0511351 +astro-ph/0511357 +astro-ph/0511362 +astro-ph/0511363 +astro-ph/0511367 +astro-ph/0511369 +astro-ph/0511372 +astro-ph/0511382 +astro-ph/0511384 +astro-ph/0511387 +astro-ph/0511388 +astro-ph/0511392 +astro-ph/0511394 +astro-ph/0511397 +astro-ph/0511407 +astro-ph/0511409 +astro-ph/0511414 +astro-ph/0511416 +astro-ph/0511418 +astro-ph/0511425 +astro-ph/0511431 +astro-ph/0511444 +astro-ph/0511461 +astro-ph/0511472 +astro-ph/0511479 +astro-ph/0511488 +astro-ph/0511491 +astro-ph/0511492 +astro-ph/0511499 +astro-ph/0511510 +astro-ph/0511516 +astro-ph/0511522 +astro-ph/0511530 +astro-ph/0511532 +astro-ph/0511534 +astro-ph/0511538 +astro-ph/0511545 +astro-ph/0511546 +astro-ph/0511551 +astro-ph/0511553 +astro-ph/0511558 +astro-ph/0511559 +astro-ph/0511563 +astro-ph/0511572 +astro-ph/0511573 +astro-ph/0511578 +astro-ph/0511585 +astro-ph/0511586 +astro-ph/0511587 +astro-ph/0511602 +astro-ph/0511604 +astro-ph/0511605 +astro-ph/0511608 +astro-ph/0511609 +astro-ph/0511614 +astro-ph/0511635 +astro-ph/0511652 +astro-ph/0511656 +astro-ph/0511663 +astro-ph/0511665 +astro-ph/0511668 +astro-ph/0511673 +astro-ph/0511675 +astro-ph/0511679 +astro-ph/0511684 +astro-ph/0511691 +astro-ph/0511694 +astro-ph/0511704 +astro-ph/0511706 +astro-ph/0511713 +astro-ph/0511715 +astro-ph/0511720 +astro-ph/0511721 +astro-ph/0511722 +astro-ph/0511724 +astro-ph/0511725 +astro-ph/0511729 +astro-ph/0511736 +astro-ph/0511737 +astro-ph/0511746 +astro-ph/0511749 +astro-ph/0511752 +astro-ph/0511753 +astro-ph/0511754 +astro-ph/0511757 +astro-ph/0511758 +astro-ph/0511761 +astro-ph/0511765 +astro-ph/0511767 +astro-ph/0511769 +astro-ph/0511775 +astro-ph/0511781 +astro-ph/0511783 +astro-ph/0511787 +astro-ph/0511794 +astro-ph/0511799 +astro-ph/0511803 +astro-ph/0511804 +astro-ph/0511805 +astro-ph/0511810 +astro-ph/0511811 +astro-ph/0511814 +astro-ph/0511815 +astro-ph/0511816 +astro-ph/0511817 +astro-ph/0511829 +astro-ph/0511833 +astro-ph/0511835 +astro-ph/0511836 +astro-ph/0512005 +astro-ph/0512009 +astro-ph/0512019 +astro-ph/0512024 +astro-ph/0512026 +astro-ph/0512030 +astro-ph/0512035 +astro-ph/0512037 +astro-ph/0512042 +astro-ph/0512054 +astro-ph/0512057 +astro-ph/0512059 +astro-ph/0512060 +astro-ph/0512073 +astro-ph/0512074 +astro-ph/0512078 +astro-ph/0512079 +astro-ph/0512081 +astro-ph/0512083 +astro-ph/0512091 +astro-ph/0512092 +astro-ph/0512095 +astro-ph/0512107 +astro-ph/0512109 +astro-ph/0512111 +astro-ph/0512112 +astro-ph/0512115 +astro-ph/0512129 +astro-ph/0512134 +astro-ph/0512138 +astro-ph/0512141 +astro-ph/0512142 +astro-ph/0512145 +astro-ph/0512146 +astro-ph/0512156 +astro-ph/0512160 +astro-ph/0512165 +astro-ph/0512168 +astro-ph/0512172 +astro-ph/0512173 +astro-ph/0512174 +astro-ph/0512176 +astro-ph/0512178 +astro-ph/0512182 +astro-ph/0512186 +astro-ph/0512189 +astro-ph/0512190 +astro-ph/0512193 +astro-ph/0512199 +astro-ph/0512219 +astro-ph/0512221 +astro-ph/0512228 +astro-ph/0512235 +astro-ph/0512237 +astro-ph/0512244 +astro-ph/0512245 +astro-ph/0512247 +astro-ph/0512248 +astro-ph/0512255 +astro-ph/0512258 +astro-ph/0512266 +astro-ph/0512270 +astro-ph/0512273 +astro-ph/0512277 +astro-ph/0512281 +astro-ph/0512285 +astro-ph/0512287 +astro-ph/0512289 +astro-ph/0512291 +astro-ph/0512294 +astro-ph/0512296 +astro-ph/0512297 +astro-ph/0512298 +astro-ph/0512299 +astro-ph/0512314 +astro-ph/0512319 +astro-ph/0512325 +astro-ph/0512346 +astro-ph/0512349 +astro-ph/0512353 +astro-ph/0512354 +astro-ph/0512360 +astro-ph/0512362 +astro-ph/0512364 +astro-ph/0512365 +astro-ph/0512366 +astro-ph/0512371 +astro-ph/0512375 +astro-ph/0512379 +astro-ph/0512380 +astro-ph/0512381 +astro-ph/0512390 +astro-ph/0512394 +astro-ph/0512395 +astro-ph/0512397 +astro-ph/0512399 +astro-ph/0512401 +astro-ph/0512405 +astro-ph/0512412 +astro-ph/0512414 +astro-ph/0512419 +astro-ph/0512425 +astro-ph/0512429 +astro-ph/0512436 +astro-ph/0512438 +astro-ph/0512440 +astro-ph/0512444 +astro-ph/0512449 +astro-ph/0512450 +astro-ph/0512453 +astro-ph/0512457 +astro-ph/0512459 +astro-ph/0512461 +astro-ph/0512463 +astro-ph/0512470 +astro-ph/0512471 +astro-ph/0512473 +astro-ph/0512484 +astro-ph/0512489 +astro-ph/0512495 +astro-ph/0512499 +astro-ph/0512501 +astro-ph/0512502 +astro-ph/0512509 +astro-ph/0512511 +astro-ph/0512516 +astro-ph/0512525 +astro-ph/0512527 +astro-ph/0512528 +astro-ph/0512529 +astro-ph/0512530 +astro-ph/0512531 +astro-ph/0512534 +astro-ph/0512544 +astro-ph/0512557 +astro-ph/0512559 +astro-ph/0512560 +astro-ph/0512562 +astro-ph/0512563 +astro-ph/0512566 +astro-ph/0512571 +astro-ph/0512572 +astro-ph/0512573 +astro-ph/0512574 +astro-ph/0512589 +astro-ph/0512596 +astro-ph/0512606 +astro-ph/0512610 +astro-ph/0512619 +astro-ph/0512620 +astro-ph/0512626 +astro-ph/0512653 +astro-ph/0512655 +astro-ph/0512658 +astro-ph/0601002 +astro-ph/0601003 +astro-ph/0601011 +astro-ph/0601012 +astro-ph/0601013 +astro-ph/0601018 +astro-ph/0601019 +astro-ph/0601020 +astro-ph/0601022 +astro-ph/0601023 +astro-ph/0601024 +astro-ph/0601026 +astro-ph/0601027 +astro-ph/0601029 +astro-ph/0601031 +astro-ph/0601032 +astro-ph/0601033 +astro-ph/0601034 +astro-ph/0601039 +astro-ph/0601040 +astro-ph/0601041 +astro-ph/0601042 +astro-ph/0601045 +astro-ph/0601046 +astro-ph/0601048 +astro-ph/0601049 +astro-ph/0601050 +astro-ph/0601051 +astro-ph/0601052 +astro-ph/0601056 +astro-ph/0601057 +astro-ph/0601059 +astro-ph/0601060 +astro-ph/0601061 +astro-ph/0601072 +astro-ph/0601075 +astro-ph/0601077 +astro-ph/0601078 +astro-ph/0601080 +astro-ph/0601082 +astro-ph/0601085 +astro-ph/0601088 +astro-ph/0601093 +astro-ph/0601094 +astro-ph/0601096 +astro-ph/0601099 +astro-ph/0601100 +astro-ph/0601101 +astro-ph/0601102 +astro-ph/0601103 +astro-ph/0601104 +astro-ph/0601105 +astro-ph/0601106 +astro-ph/0601107 +astro-ph/0601109 +astro-ph/0601110 +astro-ph/0601113 +astro-ph/0601114 +astro-ph/0601119 +astro-ph/0601122 +astro-ph/0601123 +astro-ph/0601124 +astro-ph/0601126 +astro-ph/0601128 +astro-ph/0601129 +astro-ph/0601130 +astro-ph/0601135 +astro-ph/0601139 +astro-ph/0601140 +astro-ph/0601141 +astro-ph/0601142 +astro-ph/0601146 +astro-ph/0601151 +astro-ph/0601152 +astro-ph/0601154 +astro-ph/0601156 +astro-ph/0601159 +astro-ph/0601160 +astro-ph/0601161 +astro-ph/0601164 +astro-ph/0601166 +astro-ph/0601167 +astro-ph/0601169 +astro-ph/0601170 +astro-ph/0601171 +astro-ph/0601172 +astro-ph/0601174 +astro-ph/0601175 +astro-ph/0601176 +astro-ph/0601177 +astro-ph/0601178 +astro-ph/0601179 +astro-ph/0601181 +astro-ph/0601182 +astro-ph/0601183 +astro-ph/0601184 +astro-ph/0601185 +astro-ph/0601186 +astro-ph/0601188 +astro-ph/0601189 +astro-ph/0601192 +astro-ph/0601194 +astro-ph/0601198 +astro-ph/0601199 +astro-ph/0601200 +astro-ph/0601201 +astro-ph/0601202 +astro-ph/0601203 +astro-ph/0601204 +astro-ph/0601205 +astro-ph/0601207 +astro-ph/0601209 +astro-ph/0601210 +astro-ph/0601211 +astro-ph/0601213 +astro-ph/0601218 +astro-ph/0601219 +astro-ph/0601220 +astro-ph/0601221 +astro-ph/0601223 +astro-ph/0601224 +astro-ph/0601225 +astro-ph/0601227 +astro-ph/0601229 +astro-ph/0601230 +astro-ph/0601231 +astro-ph/0601233 +astro-ph/0601234 +astro-ph/0601235 +astro-ph/0601236 +astro-ph/0601238 +astro-ph/0601239 +astro-ph/0601240 +astro-ph/0601241 +astro-ph/0601242 +astro-ph/0601244 +astro-ph/0601248 +astro-ph/0601251 +astro-ph/0601252 +astro-ph/0601258 +astro-ph/0601259 +astro-ph/0601262 +astro-ph/0601263 +astro-ph/0601265 +astro-ph/0601266 +astro-ph/0601269 +astro-ph/0601270 +astro-ph/0601271 +astro-ph/0601275 +astro-ph/0601276 +astro-ph/0601279 +astro-ph/0601280 +astro-ph/0601281 +astro-ph/0601283 +astro-ph/0601284 +astro-ph/0601285 +astro-ph/0601286 +astro-ph/0601287 +astro-ph/0601288 +astro-ph/0601289 +astro-ph/0601290 +astro-ph/0601292 +astro-ph/0601293 +astro-ph/0601296 +astro-ph/0601298 +astro-ph/0601302 +astro-ph/0601305 +astro-ph/0601306 +astro-ph/0601308 +astro-ph/0601309 +astro-ph/0601312 +astro-ph/0601313 +astro-ph/0601314 +astro-ph/0601315 +astro-ph/0601318 +astro-ph/0601322 +astro-ph/0601323 +astro-ph/0601324 +astro-ph/0601325 +astro-ph/0601326 +astro-ph/0601327 +astro-ph/0601328 +astro-ph/0601330 +astro-ph/0601331 +astro-ph/0601332 +astro-ph/0601334 +astro-ph/0601336 +astro-ph/0601337 +astro-ph/0601338 +astro-ph/0601344 +astro-ph/0601345 +astro-ph/0601348 +astro-ph/0601353 +astro-ph/0601355 +astro-ph/0601358 +astro-ph/0601361 +astro-ph/0601363 +astro-ph/0601364 +astro-ph/0601367 +astro-ph/0601368 +astro-ph/0601370 +astro-ph/0601371 +astro-ph/0601372 +astro-ph/0601373 +astro-ph/0601374 +astro-ph/0601375 +astro-ph/0601376 +astro-ph/0601377 +astro-ph/0601378 +astro-ph/0601379 +astro-ph/0601380 +astro-ph/0601382 +astro-ph/0601383 +astro-ph/0601386 +astro-ph/0601388 +astro-ph/0601390 +astro-ph/0601391 +astro-ph/0601392 +astro-ph/0601393 +astro-ph/0601395 +astro-ph/0601396 +astro-ph/0601398 +astro-ph/0601402 +astro-ph/0601403 +astro-ph/0601404 +astro-ph/0601405 +astro-ph/0601407 +astro-ph/0601409 +astro-ph/0601410 +astro-ph/0601411 +astro-ph/0601412 +astro-ph/0601413 +astro-ph/0601414 +astro-ph/0601415 +astro-ph/0601416 +astro-ph/0601421 +astro-ph/0601424 +astro-ph/0601425 +astro-ph/0601427 +astro-ph/0601429 +astro-ph/0601435 +astro-ph/0601436 +astro-ph/0601437 +astro-ph/0601438 +astro-ph/0601439 +astro-ph/0601440 +astro-ph/0601442 +astro-ph/0601444 +astro-ph/0601446 +astro-ph/0601447 +astro-ph/0601450 +astro-ph/0601451 +astro-ph/0601454 +astro-ph/0601461 +astro-ph/0601465 +astro-ph/0601466 +astro-ph/0601467 +astro-ph/0601471 +astro-ph/0601473 +astro-ph/0601474 +astro-ph/0601475 +astro-ph/0601476 +astro-ph/0601477 +astro-ph/0601478 +astro-ph/0601479 +astro-ph/0601481 +astro-ph/0601482 +astro-ph/0601484 +astro-ph/0601486 +astro-ph/0601487 +astro-ph/0601488 +astro-ph/0601490 +astro-ph/0601492 +astro-ph/0601493 +astro-ph/0601498 +astro-ph/0601499 +astro-ph/0601500 +astro-ph/0601503 +astro-ph/0601504 +astro-ph/0601505 +astro-ph/0601508 +astro-ph/0601509 +astro-ph/0601510 +astro-ph/0601512 +astro-ph/0601515 +astro-ph/0601516 +astro-ph/0601518 +astro-ph/0601521 +astro-ph/0601522 +astro-ph/0601525 +astro-ph/0601526 +astro-ph/0601528 +astro-ph/0601530 +astro-ph/0601531 +astro-ph/0601532 +astro-ph/0601534 +astro-ph/0601535 +astro-ph/0601539 +astro-ph/0601540 +astro-ph/0601541 +astro-ph/0601543 +astro-ph/0601546 +astro-ph/0601550 +astro-ph/0601551 +astro-ph/0601554 +astro-ph/0601555 +astro-ph/0601557 +astro-ph/0601559 +astro-ph/0601560 +astro-ph/0601561 +astro-ph/0601564 +astro-ph/0601565 +astro-ph/0601567 +astro-ph/0601570 +astro-ph/0601571 +astro-ph/0601572 +astro-ph/0601573 +astro-ph/0601576 +astro-ph/0601579 +astro-ph/0601580 +astro-ph/0601581 +astro-ph/0601582 +astro-ph/0601583 +astro-ph/0601584 +astro-ph/0601586 +astro-ph/0601587 +astro-ph/0601588 +astro-ph/0601590 +astro-ph/0601591 +astro-ph/0601595 +astro-ph/0601601 +astro-ph/0601602 +astro-ph/0601603 +astro-ph/0601604 +astro-ph/0601609 +astro-ph/0601611 +astro-ph/0601612 +astro-ph/0601614 +astro-ph/0601615 +astro-ph/0601616 +astro-ph/0601617 +astro-ph/0601620 +astro-ph/0601623 +astro-ph/0601626 +astro-ph/0601627 +astro-ph/0601630 +astro-ph/0601631 +astro-ph/0601632 +astro-ph/0601633 +astro-ph/0601634 +astro-ph/0601635 +astro-ph/0601637 +astro-ph/0601640 +astro-ph/0601641 +astro-ph/0601643 +astro-ph/0601644 +astro-ph/0601649 +astro-ph/0601651 +astro-ph/0601655 +astro-ph/0601656 +astro-ph/0601657 +astro-ph/0601658 +astro-ph/0601660 +astro-ph/0601661 +astro-ph/0601662 +astro-ph/0601663 +astro-ph/0601664 +astro-ph/0601665 +astro-ph/0601667 +astro-ph/0601671 +astro-ph/0601673 +astro-ph/0601674 +astro-ph/0601675 +astro-ph/0601676 +astro-ph/0601677 +astro-ph/0601678 +astro-ph/0601679 +astro-ph/0601682 +astro-ph/0601686 +astro-ph/0601688 +astro-ph/0601689 +astro-ph/0601692 +astro-ph/0601693 +astro-ph/0601694 +astro-ph/0601695 +astro-ph/0601696 +astro-ph/0601697 +astro-ph/0601701 +astro-ph/0601702 +astro-ph/0601703 +astro-ph/0601704 +astro-ph/0601709 +astro-ph/0601711 +astro-ph/0601715 +astro-ph/0601718 +astro-ph/0602002 +astro-ph/0602004 +astro-ph/0602005 +astro-ph/0602006 +astro-ph/0602010 +astro-ph/0602014 +astro-ph/0602017 +astro-ph/0602021 +astro-ph/0602022 +astro-ph/0602023 +astro-ph/0602024 +astro-ph/0602025 +astro-ph/0602026 +astro-ph/0602027 +astro-ph/0602028 +astro-ph/0602030 +astro-ph/0602034 +astro-ph/0602035 +astro-ph/0602036 +astro-ph/0602037 +astro-ph/0602039 +astro-ph/0602040 +astro-ph/0602043 +astro-ph/0602044 +astro-ph/0602045 +astro-ph/0602046 +astro-ph/0602048 +astro-ph/0602049 +astro-ph/0602050 +astro-ph/0602051 +astro-ph/0602053 +astro-ph/0602055 +astro-ph/0602056 +astro-ph/0602058 +astro-ph/0602059 +astro-ph/0602062 +astro-ph/0602063 +astro-ph/0602064 +astro-ph/0602066 +astro-ph/0602067 +astro-ph/0602070 +astro-ph/0602071 +astro-ph/0602075 +astro-ph/0602079 +astro-ph/0602080 +astro-ph/0602081 +astro-ph/0602083 +astro-ph/0602084 +astro-ph/0602085 +astro-ph/0602087 +astro-ph/0602090 +astro-ph/0602091 +astro-ph/0602093 +astro-ph/0602094 +astro-ph/0602095 +astro-ph/0602099 +astro-ph/0602100 +astro-ph/0602101 +astro-ph/0602103 +astro-ph/0602104 +astro-ph/0602105 +astro-ph/0602106 +astro-ph/0602107 +astro-ph/0602109 +astro-ph/0602113 +astro-ph/0602114 +astro-ph/0602115 +astro-ph/0602119 +astro-ph/0602121 +astro-ph/0602123 +astro-ph/0602124 +astro-ph/0602125 +astro-ph/0602126 +astro-ph/0602127 +astro-ph/0602131 +astro-ph/0602133 +astro-ph/0602136 +astro-ph/0602138 +astro-ph/0602140 +astro-ph/0602141 +astro-ph/0602145 +astro-ph/0602152 +astro-ph/0602153 +astro-ph/0602154 +astro-ph/0602155 +astro-ph/0602158 +astro-ph/0602160 +astro-ph/0602161 +astro-ph/0602162 +astro-ph/0602165 +astro-ph/0602166 +astro-ph/0602167 +astro-ph/0602169 +astro-ph/0602172 +astro-ph/0602173 +astro-ph/0602174 +astro-ph/0602175 +astro-ph/0602176 +astro-ph/0602177 +astro-ph/0602180 +astro-ph/0602183 +astro-ph/0602185 +astro-ph/0602186 +astro-ph/0602187 +astro-ph/0602188 +astro-ph/0602189 +astro-ph/0602192 +astro-ph/0602194 +astro-ph/0602197 +astro-ph/0602198 +astro-ph/0602199 +astro-ph/0602204 +astro-ph/0602205 +astro-ph/0602206 +astro-ph/0602207 +astro-ph/0602208 +astro-ph/0602212 +astro-ph/0602213 +astro-ph/0602214 +astro-ph/0602215 +astro-ph/0602216 +astro-ph/0602217 +astro-ph/0602218 +astro-ph/0602219 +astro-ph/0602220 +astro-ph/0602221 +astro-ph/0602222 +astro-ph/0602226 +astro-ph/0602229 +astro-ph/0602230 +astro-ph/0602231 +astro-ph/0602233 +astro-ph/0602234 +astro-ph/0602235 +astro-ph/0602237 +astro-ph/0602238 +astro-ph/0602239 +astro-ph/0602247 +astro-ph/0602249 +astro-ph/0602255 +astro-ph/0602256 +astro-ph/0602259 +astro-ph/0602260 +astro-ph/0602262 +astro-ph/0602263 +astro-ph/0602265 +astro-ph/0602266 +astro-ph/0602267 +astro-ph/0602268 +astro-ph/0602271 +astro-ph/0602275 +astro-ph/0602279 +astro-ph/0602283 +astro-ph/0602285 +astro-ph/0602286 +astro-ph/0602287 +astro-ph/0602292 +astro-ph/0602293 +astro-ph/0602294 +astro-ph/0602295 +astro-ph/0602296 +astro-ph/0602298 +astro-ph/0602301 +astro-ph/0602303 +astro-ph/0602304 +astro-ph/0602305 +astro-ph/0602306 +astro-ph/0602307 +astro-ph/0602308 +astro-ph/0602309 +astro-ph/0602310 +astro-ph/0602311 +astro-ph/0602312 +astro-ph/0602313 +astro-ph/0602314 +astro-ph/0602315 +astro-ph/0602316 +astro-ph/0602321 +astro-ph/0602325 +astro-ph/0602331 +astro-ph/0602334 +astro-ph/0602338 +astro-ph/0602339 +astro-ph/0602340 +astro-ph/0602341 +astro-ph/0602342 +astro-ph/0602345 +astro-ph/0602346 +astro-ph/0602349 +astro-ph/0602350 +astro-ph/0602352 +astro-ph/0602354 +astro-ph/0602357 +astro-ph/0602359 +astro-ph/0602360 +astro-ph/0602361 +astro-ph/0602363 +astro-ph/0602365 +astro-ph/0602368 +astro-ph/0602370 +astro-ph/0602371 +astro-ph/0602372 +astro-ph/0602376 +astro-ph/0602377 +astro-ph/0602380 +astro-ph/0602384 +astro-ph/0602385 +astro-ph/0602386 +astro-ph/0602388 +astro-ph/0602389 +astro-ph/0602390 +astro-ph/0602391 +astro-ph/0602392 +astro-ph/0602393 +astro-ph/0602394 +astro-ph/0602395 +astro-ph/0602400 +astro-ph/0602403 +astro-ph/0602404 +astro-ph/0602408 +astro-ph/0602410 +astro-ph/0602412 +astro-ph/0602414 +astro-ph/0602421 +astro-ph/0602423 +astro-ph/0602424 +astro-ph/0602428 +astro-ph/0602429 +astro-ph/0602432 +astro-ph/0602434 +astro-ph/0602437 +astro-ph/0602438 +astro-ph/0602439 +astro-ph/0602442 +astro-ph/0602443 +astro-ph/0602447 +astro-ph/0602448 +astro-ph/0602450 +astro-ph/0602457 +astro-ph/0602458 +astro-ph/0602459 +astro-ph/0602462 +astro-ph/0602465 +astro-ph/0602470 +astro-ph/0602471 +astro-ph/0602472 +astro-ph/0602475 +astro-ph/0602476 +astro-ph/0602479 +astro-ph/0602481 +astro-ph/0602482 +astro-ph/0602485 +astro-ph/0602486 +astro-ph/0602487 +astro-ph/0602488 +astro-ph/0602489 +astro-ph/0602492 +astro-ph/0602493 +astro-ph/0602495 +astro-ph/0602496 +astro-ph/0602499 +astro-ph/0602501 +astro-ph/0602504 +astro-ph/0602505 +astro-ph/0602507 +astro-ph/0602509 +astro-ph/0602510 +astro-ph/0602514 +astro-ph/0602517 +astro-ph/0602518 +astro-ph/0602520 +astro-ph/0602524 +astro-ph/0602525 +astro-ph/0602527 +astro-ph/0602528 +astro-ph/0602531 +astro-ph/0602532 +astro-ph/0602533 +astro-ph/0602534 +astro-ph/0602535 +astro-ph/0602536 +astro-ph/0602537 +astro-ph/0602538 +astro-ph/0602540 +astro-ph/0602544 +astro-ph/0602546 +astro-ph/0602547 +astro-ph/0602548 +astro-ph/0602550 +astro-ph/0602552 +astro-ph/0602554 +astro-ph/0602555 +astro-ph/0602556 +astro-ph/0602558 +astro-ph/0602559 +astro-ph/0602560 +astro-ph/0602561 +astro-ph/0602562 +astro-ph/0602563 +astro-ph/0602565 +astro-ph/0602566 +astro-ph/0602567 +astro-ph/0602574 +astro-ph/0602576 +astro-ph/0602578 +astro-ph/0602583 +astro-ph/0602584 +astro-ph/0602586 +astro-ph/0602587 +astro-ph/0602588 +astro-ph/0602590 +astro-ph/0602591 +astro-ph/0602592 +astro-ph/0602593 +astro-ph/0602595 +astro-ph/0602597 +astro-ph/0602608 +astro-ph/0602609 +astro-ph/0602610 +astro-ph/0602611 +astro-ph/0602612 +astro-ph/0602615 +astro-ph/0602618 +astro-ph/0602621 +astro-ph/0602623 +astro-ph/0602625 +astro-ph/0602631 +astro-ph/0603001 +astro-ph/0603002 +astro-ph/0603003 +astro-ph/0603006 +astro-ph/0603011 +astro-ph/0603012 +astro-ph/0603013 +astro-ph/0603015 +astro-ph/0603016 +astro-ph/0603017 +astro-ph/0603023 +astro-ph/0603024 +astro-ph/0603026 +astro-ph/0603029 +astro-ph/0603030 +astro-ph/0603033 +astro-ph/0603034 +astro-ph/0603035 +astro-ph/0603036 +astro-ph/0603037 +astro-ph/0603038 +astro-ph/0603039 +astro-ph/0603040 +astro-ph/0603041 +astro-ph/0603042 +astro-ph/0603046 +astro-ph/0603048 +astro-ph/0603049 +astro-ph/0603050 +astro-ph/0603054 +astro-ph/0603056 +astro-ph/0603058 +astro-ph/0603062 +astro-ph/0603064 +astro-ph/0603065 +astro-ph/0603068 +astro-ph/0603069 +astro-ph/0603077 +astro-ph/0603078 +astro-ph/0603079 +astro-ph/0603080 +astro-ph/0603081 +astro-ph/0603082 +astro-ph/0603086 +astro-ph/0603090 +astro-ph/0603092 +astro-ph/0603095 +astro-ph/0603097 +astro-ph/0603098 +astro-ph/0603099 +astro-ph/0603102 +astro-ph/0603103 +astro-ph/0603105 +astro-ph/0603106 +astro-ph/0603107 +astro-ph/0603111 +astro-ph/0603112 +astro-ph/0603113 +astro-ph/0603115 +astro-ph/0603117 +astro-ph/0603118 +astro-ph/0603121 +astro-ph/0603122 +astro-ph/0603124 +astro-ph/0603125 +astro-ph/0603127 +astro-ph/0603129 +astro-ph/0603132 +astro-ph/0603133 +astro-ph/0603134 +astro-ph/0603136 +astro-ph/0603138 +astro-ph/0603141 +astro-ph/0603144 +astro-ph/0603145 +astro-ph/0603148 +astro-ph/0603150 +astro-ph/0603151 +astro-ph/0603153 +astro-ph/0603154 +astro-ph/0603155 +astro-ph/0603156 +astro-ph/0603157 +astro-ph/0603159 +astro-ph/0603161 +astro-ph/0603162 +astro-ph/0603165 +astro-ph/0603167 +astro-ph/0603168 +astro-ph/0603170 +astro-ph/0603172 +astro-ph/0603173 +astro-ph/0603177 +astro-ph/0603178 +astro-ph/0603180 +astro-ph/0603182 +astro-ph/0603184 +astro-ph/0603185 +astro-ph/0603186 +astro-ph/0603188 +astro-ph/0603189 +astro-ph/0603190 +astro-ph/0603192 +astro-ph/0603193 +astro-ph/0603195 +astro-ph/0603197 +astro-ph/0603198 +astro-ph/0603199 +astro-ph/0603201 +astro-ph/0603202 +astro-ph/0603203 +astro-ph/0603204 +astro-ph/0603206 +astro-ph/0603208 +astro-ph/0603210 +astro-ph/0603211 +astro-ph/0603212 +astro-ph/0603215 +astro-ph/0603216 +astro-ph/0603218 +astro-ph/0603219 +astro-ph/0603221 +astro-ph/0603222 +astro-ph/0603223 +astro-ph/0603226 +astro-ph/0603227 +astro-ph/0603228 +astro-ph/0603230 +astro-ph/0603231 +astro-ph/0603234 +astro-ph/0603237 +astro-ph/0603239 +astro-ph/0603242 +astro-ph/0603243 +astro-ph/0603244 +astro-ph/0603249 +astro-ph/0603251 +astro-ph/0603252 +astro-ph/0603253 +astro-ph/0603254 +astro-ph/0603258 +astro-ph/0603259 +astro-ph/0603260 +astro-ph/0603262 +astro-ph/0603263 +astro-ph/0603264 +astro-ph/0603266 +astro-ph/0603267 +astro-ph/0603268 +astro-ph/0603269 +astro-ph/0603270 +astro-ph/0603272 +astro-ph/0603273 +astro-ph/0603276 +astro-ph/0603277 +astro-ph/0603278 +astro-ph/0603281 +astro-ph/0603285 +astro-ph/0603288 +astro-ph/0603290 +astro-ph/0603293 +astro-ph/0603297 +astro-ph/0603301 +astro-ph/0603302 +astro-ph/0603303 +astro-ph/0603305 +astro-ph/0603306 +astro-ph/0603309 +astro-ph/0603310 +astro-ph/0603312 +astro-ph/0603314 +astro-ph/0603315 +astro-ph/0603316 +astro-ph/0603320 +astro-ph/0603321 +astro-ph/0603323 +astro-ph/0603325 +astro-ph/0603326 +astro-ph/0603328 +astro-ph/0603329 +astro-ph/0603330 +astro-ph/0603331 +astro-ph/0603332 +astro-ph/0603335 +astro-ph/0603339 +astro-ph/0603344 +astro-ph/0603345 +astro-ph/0603347 +astro-ph/0603348 +astro-ph/0603349 +astro-ph/0603350 +astro-ph/0603354 +astro-ph/0603355 +astro-ph/0603361 +astro-ph/0603362 +astro-ph/0603364 +astro-ph/0603365 +astro-ph/0603377 +astro-ph/0603378 +astro-ph/0603379 +astro-ph/0603381 +astro-ph/0603382 +astro-ph/0603384 +astro-ph/0603386 +astro-ph/0603388 +astro-ph/0603389 +astro-ph/0603393 +astro-ph/0603394 +astro-ph/0603403 +astro-ph/0603404 +astro-ph/0603406 +astro-ph/0603414 +astro-ph/0603415 +astro-ph/0603416 +astro-ph/0603417 +astro-ph/0603420 +astro-ph/0603421 +astro-ph/0603422 +astro-ph/0603423 +astro-ph/0603424 +astro-ph/0603428 +astro-ph/0603429 +astro-ph/0603430 +astro-ph/0603433 +astro-ph/0603434 +astro-ph/0603435 +astro-ph/0603436 +astro-ph/0603437 +astro-ph/0603444 +astro-ph/0603446 +astro-ph/0603454 +astro-ph/0603455 +astro-ph/0603456 +astro-ph/0603458 +astro-ph/0603459 +astro-ph/0603461 +astro-ph/0603462 +astro-ph/0603463 +astro-ph/0603466 +astro-ph/0603467 +astro-ph/0603469 +astro-ph/0603470 +astro-ph/0603471 +astro-ph/0603472 +astro-ph/0603473 +astro-ph/0603475 +astro-ph/0603480 +astro-ph/0603481 +astro-ph/0603482 +astro-ph/0603483 +astro-ph/0603484 +astro-ph/0603485 +astro-ph/0603490 +astro-ph/0603491 +astro-ph/0603492 +astro-ph/0603493 +astro-ph/0603497 +astro-ph/0603499 +astro-ph/0603501 +astro-ph/0603503 +astro-ph/0603504 +astro-ph/0603505 +astro-ph/0603506 +astro-ph/0603507 +astro-ph/0603509 +astro-ph/0603513 +astro-ph/0603514 +astro-ph/0603515 +astro-ph/0603516 +astro-ph/0603518 +astro-ph/0603520 +astro-ph/0603521 +astro-ph/0603523 +astro-ph/0603528 +astro-ph/0603531 +astro-ph/0603532 +astro-ph/0603533 +astro-ph/0603535 +astro-ph/0603538 +astro-ph/0603539 +astro-ph/0603546 +astro-ph/0603548 +astro-ph/0603549 +astro-ph/0603551 +astro-ph/0603552 +astro-ph/0603556 +astro-ph/0603561 +astro-ph/0603562 +astro-ph/0603563 +astro-ph/0603564 +astro-ph/0603565 +astro-ph/0603568 +astro-ph/0603569 +astro-ph/0603570 +astro-ph/0603571 +astro-ph/0603573 +astro-ph/0603577 +astro-ph/0603578 +astro-ph/0603579 +astro-ph/0603581 +astro-ph/0603585 +astro-ph/0603586 +astro-ph/0603596 +astro-ph/0603598 +astro-ph/0603599 +astro-ph/0603600 +astro-ph/0603602 +astro-ph/0603604 +astro-ph/0603605 +astro-ph/0603606 +astro-ph/0603608 +astro-ph/0603609 +astro-ph/0603610 +astro-ph/0603611 +astro-ph/0603612 +astro-ph/0603614 +astro-ph/0603615 +astro-ph/0603617 +astro-ph/0603618 +astro-ph/0603619 +astro-ph/0603622 +astro-ph/0603623 +astro-ph/0603627 +astro-ph/0603629 +astro-ph/0603630 +astro-ph/0603634 +astro-ph/0603636 +astro-ph/0603637 +astro-ph/0603638 +astro-ph/0603639 +astro-ph/0603640 +astro-ph/0603641 +astro-ph/0603642 +astro-ph/0603643 +astro-ph/0603645 +astro-ph/0603646 +astro-ph/0603648 +astro-ph/0603650 +astro-ph/0603652 +astro-ph/0603654 +astro-ph/0603655 +astro-ph/0603658 +astro-ph/0603659 +astro-ph/0603661 +astro-ph/0603663 +astro-ph/0603664 +astro-ph/0603666 +astro-ph/0603667 +astro-ph/0603669 +astro-ph/0603672 +astro-ph/0603674 +astro-ph/0603676 +astro-ph/0603677 +astro-ph/0603681 +astro-ph/0603682 +astro-ph/0603683 +astro-ph/0603684 +astro-ph/0603686 +astro-ph/0603687 +astro-ph/0603688 +astro-ph/0603691 +astro-ph/0603692 +astro-ph/0603693 +astro-ph/0603694 +astro-ph/0603698 +astro-ph/0603700 +astro-ph/0603701 +astro-ph/0603702 +astro-ph/0603705 +astro-ph/0603706 +astro-ph/0603707 +astro-ph/0603708 +astro-ph/0603712 +astro-ph/0603713 +astro-ph/0603714 +astro-ph/0603715 +astro-ph/0603717 +astro-ph/0603718 +astro-ph/0603719 +astro-ph/0603723 +astro-ph/0603724 +astro-ph/0603727 +astro-ph/0603731 +astro-ph/0603733 +astro-ph/0603734 +astro-ph/0603736 +astro-ph/0603740 +astro-ph/0603741 +astro-ph/0603751 +astro-ph/0603752 +astro-ph/0603754 +astro-ph/0603756 +astro-ph/0603758 +astro-ph/0603760 +astro-ph/0603765 +astro-ph/0603766 +astro-ph/0603767 +astro-ph/0603768 +astro-ph/0603771 +astro-ph/0603774 +astro-ph/0603777 +astro-ph/0603778 +astro-ph/0603780 +astro-ph/0603781 +astro-ph/0603782 +astro-ph/0603783 +astro-ph/0603785 +astro-ph/0603786 +astro-ph/0603787 +astro-ph/0603792 +astro-ph/0603798 +astro-ph/0603799 +astro-ph/0603800 +astro-ph/0603801 +astro-ph/0603802 +astro-ph/0603804 +astro-ph/0603805 +astro-ph/0603809 +astro-ph/0603811 +astro-ph/0603812 +astro-ph/0603813 +astro-ph/0603814 +astro-ph/0603815 +astro-ph/0603818 +astro-ph/0603820 +astro-ph/0603821 +astro-ph/0603822 +astro-ph/0603825 +astro-ph/0603826 +astro-ph/0603829 +astro-ph/0603831 +astro-ph/0603832 +astro-ph/0603836 +astro-ph/0603838 +astro-ph/0603839 +astro-ph/0603842 +astro-ph/0603844 +astro-ph/0603845 +astro-ph/0603847 +astro-ph/0603849 +astro-ph/0603851 +astro-ph/0603858 +astro-ph/0603860 +astro-ph/0604002 +astro-ph/0604004 +astro-ph/0604006 +astro-ph/0604013 +astro-ph/0604015 +astro-ph/0604017 +astro-ph/0604018 +astro-ph/0604020 +astro-ph/0604021 +astro-ph/0604022 +astro-ph/0604023 +astro-ph/0604028 +astro-ph/0604029 +astro-ph/0604030 +astro-ph/0604032 +astro-ph/0604034 +astro-ph/0604036 +astro-ph/0604037 +astro-ph/0604038 +astro-ph/0604040 +astro-ph/0604041 +astro-ph/0604042 +astro-ph/0604043 +astro-ph/0604046 +astro-ph/0604047 +astro-ph/0604048 +astro-ph/0604050 +astro-ph/0604052 +astro-ph/0604053 +astro-ph/0604054 +astro-ph/0604056 +astro-ph/0604059 +astro-ph/0604060 +astro-ph/0604061 +astro-ph/0604062 +astro-ph/0604064 +astro-ph/0604065 +astro-ph/0604066 +astro-ph/0604067 +astro-ph/0604071 +astro-ph/0604072 +astro-ph/0604074 +astro-ph/0604077 +astro-ph/0604079 +astro-ph/0604082 +astro-ph/0604085 +astro-ph/0604088 +astro-ph/0604090 +astro-ph/0604091 +astro-ph/0604092 +astro-ph/0604096 +astro-ph/0604097 +astro-ph/0604100 +astro-ph/0604102 +astro-ph/0604103 +astro-ph/0604104 +astro-ph/0604106 +astro-ph/0604108 +astro-ph/0604109 +astro-ph/0604110 +astro-ph/0604116 +astro-ph/0604117 +astro-ph/0604121 +astro-ph/0604122 +astro-ph/0604124 +astro-ph/0604126 +astro-ph/0604127 +astro-ph/0604128 +astro-ph/0604130 +astro-ph/0604134 +astro-ph/0604136 +astro-ph/0604137 +astro-ph/0604143 +astro-ph/0604144 +astro-ph/0604146 +astro-ph/0604147 +astro-ph/0604156 +astro-ph/0604157 +astro-ph/0604158 +astro-ph/0604160 +astro-ph/0604161 +astro-ph/0604162 +astro-ph/0604163 +astro-ph/0604164 +astro-ph/0604166 +astro-ph/0604168 +astro-ph/0604170 +astro-ph/0604174 +astro-ph/0604176 +astro-ph/0604178 +astro-ph/0604179 +astro-ph/0604180 +astro-ph/0604183 +astro-ph/0604186 +astro-ph/0604187 +astro-ph/0604190 +astro-ph/0604193 +astro-ph/0604194 +astro-ph/0604195 +astro-ph/0604196 +astro-ph/0604198 +astro-ph/0604200 +astro-ph/0604208 +astro-ph/0604212 +astro-ph/0604213 +astro-ph/0604216 +astro-ph/0604221 +astro-ph/0604223 +astro-ph/0604227 +astro-ph/0604230 +astro-ph/0604232 +astro-ph/0604233 +astro-ph/0604234 +astro-ph/0604239 +astro-ph/0604240 +astro-ph/0604241 +astro-ph/0604242 +astro-ph/0604243 +astro-ph/0604245 +astro-ph/0604248 +astro-ph/0604254 +astro-ph/0604257 +astro-ph/0604258 +astro-ph/0604261 +astro-ph/0604262 +astro-ph/0604263 +astro-ph/0604266 +astro-ph/0604270 +astro-ph/0604273 +astro-ph/0604274 +astro-ph/0604275 +astro-ph/0604278 +astro-ph/0604280 +astro-ph/0604281 +astro-ph/0604283 +astro-ph/0604290 +astro-ph/0604294 +astro-ph/0604295 +astro-ph/0604300 +astro-ph/0604302 +astro-ph/0604304 +astro-ph/0604306 +astro-ph/0604309 +astro-ph/0604312 +astro-ph/0604313 +astro-ph/0604314 +astro-ph/0604317 +astro-ph/0604319 +astro-ph/0604322 +astro-ph/0604325 +astro-ph/0604328 +astro-ph/0604331 +astro-ph/0604332 +astro-ph/0604335 +astro-ph/0604337 +astro-ph/0604340 +astro-ph/0604343 +astro-ph/0604344 +astro-ph/0604350 +astro-ph/0604351 +astro-ph/0604352 +astro-ph/0604356 +astro-ph/0604363 +astro-ph/0604366 +astro-ph/0604367 +astro-ph/0604370 +astro-ph/0604371 +astro-ph/0604372 +astro-ph/0604375 +astro-ph/0604376 +astro-ph/0604377 +astro-ph/0604378 +astro-ph/0604379 +astro-ph/0604382 +astro-ph/0604383 +astro-ph/0604384 +astro-ph/0604385 +astro-ph/0604386 +astro-ph/0604387 +astro-ph/0604396 +astro-ph/0604405 +astro-ph/0604411 +astro-ph/0604415 +astro-ph/0604423 +astro-ph/0604424 +astro-ph/0604425 +astro-ph/0604433 +astro-ph/0604434 +astro-ph/0604435 +astro-ph/0604439 +astro-ph/0604446 +astro-ph/0604447 +astro-ph/0604448 +astro-ph/0604451 +astro-ph/0604452 +astro-ph/0604455 +astro-ph/0604461 +astro-ph/0604462 +astro-ph/0604463 +astro-ph/0604464 +astro-ph/0604465 +astro-ph/0604467 +astro-ph/0604469 +astro-ph/0604470 +astro-ph/0604474 +astro-ph/0604475 +astro-ph/0604476 +astro-ph/0604479 +astro-ph/0604480 +astro-ph/0604481 +astro-ph/0604482 +astro-ph/0604486 +astro-ph/0604488 +astro-ph/0604489 +astro-ph/0604497 +astro-ph/0604499 +astro-ph/0604502 +astro-ph/0604508 +astro-ph/0604511 +astro-ph/0604512 +astro-ph/0604514 +astro-ph/0604521 +astro-ph/0604522 +astro-ph/0604529 +astro-ph/0604535 +astro-ph/0604536 +astro-ph/0604538 +astro-ph/0604540 +astro-ph/0604541 +astro-ph/0604543 +astro-ph/0604544 +astro-ph/0604545 +astro-ph/0604546 +astro-ph/0604547 +astro-ph/0604549 +astro-ph/0604550 +astro-ph/0604555 +astro-ph/0604560 +astro-ph/0604562 +astro-ph/0604565 +astro-ph/0604567 +astro-ph/0604568 +astro-ph/0604569 +astro-ph/0604571 +astro-ph/0604576 +astro-ph/0604577 +astro-ph/0604581 +astro-ph/0604582 +astro-ph/0604584 +astro-ph/0604585 +astro-ph/0604586 +astro-ph/0604589 +astro-ph/0604593 +astro-ph/0604597 +astro-ph/0604599 +astro-ph/0604600 +astro-ph/0604603 +astro-ph/0604606 +astro-ph/0604608 +astro-ph/0604609 +astro-ph/0604610 +astro-ph/0604611 +astro-ph/0604612 +astro-ph/0604614 +astro-ph/0604615 +astro-ph/0604617 +astro-ph/0604619 +astro-ph/0605002 +astro-ph/0605004 +astro-ph/0605009 +astro-ph/0605011 +astro-ph/0605012 +astro-ph/0605013 +astro-ph/0605017 +astro-ph/0605021 +astro-ph/0605031 +astro-ph/0605033 +astro-ph/0605039 +astro-ph/0605040 +astro-ph/0605041 +astro-ph/0605042 +astro-ph/0605045 +astro-ph/0605046 +astro-ph/0605048 +astro-ph/0605049 +astro-ph/0605050 +astro-ph/0605051 +astro-ph/0605052 +astro-ph/0605053 +astro-ph/0605054 +astro-ph/0605056 +astro-ph/0605058 +astro-ph/0605059 +astro-ph/0605061 +astro-ph/0605062 +astro-ph/0605063 +astro-ph/0605065 +astro-ph/0605066 +astro-ph/0605067 +astro-ph/0605068 +astro-ph/0605070 +astro-ph/0605073 +astro-ph/0605074 +astro-ph/0605079 +astro-ph/0605080 +astro-ph/0605081 +astro-ph/0605082 +astro-ph/0605083 +astro-ph/0605085 +astro-ph/0605088 +astro-ph/0605090 +astro-ph/0605091 +astro-ph/0605092 +astro-ph/0605093 +astro-ph/0605094 +astro-ph/0605095 +astro-ph/0605097 +astro-ph/0605099 +astro-ph/0605100 +astro-ph/0605101 +astro-ph/0605104 +astro-ph/0605105 +astro-ph/0605107 +astro-ph/0605108 +astro-ph/0605113 +astro-ph/0605114 +astro-ph/0605115 +astro-ph/0605117 +astro-ph/0605119 +astro-ph/0605122 +astro-ph/0605126 +astro-ph/0605127 +astro-ph/0605128 +astro-ph/0605129 +astro-ph/0605130 +astro-ph/0605133 +astro-ph/0605136 +astro-ph/0605138 +astro-ph/0605144 +astro-ph/0605146 +astro-ph/0605147 +astro-ph/0605149 +astro-ph/0605150 +astro-ph/0605151 +astro-ph/0605152 +astro-ph/0605153 +astro-ph/0605155 +astro-ph/0605156 +astro-ph/0605158 +astro-ph/0605159 +astro-ph/0605160 +astro-ph/0605161 +astro-ph/0605167 +astro-ph/0605171 +astro-ph/0605174 +astro-ph/0605180 +astro-ph/0605181 +astro-ph/0605182 +astro-ph/0605184 +astro-ph/0605185 +astro-ph/0605188 +astro-ph/0605189 +astro-ph/0605190 +astro-ph/0605194 +astro-ph/0605195 +astro-ph/0605196 +astro-ph/0605202 +astro-ph/0605207 +astro-ph/0605211 +astro-ph/0605216 +astro-ph/0605218 +astro-ph/0605219 +astro-ph/0605220 +astro-ph/0605221 +astro-ph/0605222 +astro-ph/0605225 +astro-ph/0605227 +astro-ph/0605230 +astro-ph/0605231 +astro-ph/0605234 +astro-ph/0605235 +astro-ph/0605236 +astro-ph/0605237 +astro-ph/0605238 +astro-ph/0605239 +astro-ph/0605243 +astro-ph/0605251 +astro-ph/0605253 +astro-ph/0605255 +astro-ph/0605258 +astro-ph/0605259 +astro-ph/0605260 +astro-ph/0605263 +astro-ph/0605264 +astro-ph/0605269 +astro-ph/0605270 +astro-ph/0605271 +astro-ph/0605274 +astro-ph/0605275 +astro-ph/0605276 +astro-ph/0605277 +astro-ph/0605278 +astro-ph/0605279 +astro-ph/0605285 +astro-ph/0605287 +astro-ph/0605289 +astro-ph/0605290 +astro-ph/0605291 +astro-ph/0605293 +astro-ph/0605296 +astro-ph/0605297 +astro-ph/0605298 +astro-ph/0605300 +astro-ph/0605301 +astro-ph/0605307 +astro-ph/0605309 +astro-ph/0605311 +astro-ph/0605315 +astro-ph/0605317 +astro-ph/0605319 +astro-ph/0605326 +astro-ph/0605331 +astro-ph/0605332 +astro-ph/0605334 +astro-ph/0605336 +astro-ph/0605337 +astro-ph/0605340 +astro-ph/0605341 +astro-ph/0605342 +astro-ph/0605345 +astro-ph/0605346 +astro-ph/0605347 +astro-ph/0605348 +astro-ph/0605349 +astro-ph/0605350 +astro-ph/0605352 +astro-ph/0605354 +astro-ph/0605359 +astro-ph/0605361 +astro-ph/0605363 +astro-ph/0605364 +astro-ph/0605367 +astro-ph/0605370 +astro-ph/0605375 +astro-ph/0605376 +astro-ph/0605379 +astro-ph/0605380 +astro-ph/0605383 +astro-ph/0605386 +astro-ph/0605390 +astro-ph/0605391 +astro-ph/0605393 +astro-ph/0605396 +astro-ph/0605398 +astro-ph/0605399 +astro-ph/0605400 +astro-ph/0605405 +astro-ph/0605410 +astro-ph/0605411 +astro-ph/0605412 +astro-ph/0605413 +astro-ph/0605415 +astro-ph/0605419 +astro-ph/0605420 +astro-ph/0605421 +astro-ph/0605423 +astro-ph/0605424 +astro-ph/0605428 +astro-ph/0605429 +astro-ph/0605431 +astro-ph/0605433 +astro-ph/0605442 +astro-ph/0605443 +astro-ph/0605444 +astro-ph/0605446 +astro-ph/0605448 +astro-ph/0605450 +astro-ph/0605451 +astro-ph/0605454 +astro-ph/0605457 +astro-ph/0605458 +astro-ph/0605460 +astro-ph/0605461 +astro-ph/0605463 +astro-ph/0605465 +astro-ph/0605466 +astro-ph/0605470 +astro-ph/0605471 +astro-ph/0605472 +astro-ph/0605476 +astro-ph/0605477 +astro-ph/0605479 +astro-ph/0605480 +astro-ph/0605482 +astro-ph/0605483 +astro-ph/0605484 +astro-ph/0605486 +astro-ph/0605487 +astro-ph/0605488 +astro-ph/0605489 +astro-ph/0605490 +astro-ph/0605493 +astro-ph/0605498 +astro-ph/0605500 +astro-ph/0605501 +astro-ph/0605502 +astro-ph/0605504 +astro-ph/0605506 +astro-ph/0605508 +astro-ph/0605512 +astro-ph/0605513 +astro-ph/0605518 +astro-ph/0605522 +astro-ph/0605523 +astro-ph/0605524 +astro-ph/0605526 +astro-ph/0605532 +astro-ph/0605534 +astro-ph/0605535 +astro-ph/0605539 +astro-ph/0605541 +astro-ph/0605545 +astro-ph/0605550 +astro-ph/0605551 +astro-ph/0605552 +astro-ph/0605554 +astro-ph/0605555 +astro-ph/0605557 +astro-ph/0605558 +astro-ph/0605559 +astro-ph/0605561 +astro-ph/0605562 +astro-ph/0605567 +astro-ph/0605568 +astro-ph/0605571 +astro-ph/0605576 +astro-ph/0605577 +astro-ph/0605581 +astro-ph/0605582 +astro-ph/0605583 +astro-ph/0605586 +astro-ph/0605587 +astro-ph/0605588 +astro-ph/0605590 +astro-ph/0605591 +astro-ph/0605595 +astro-ph/0605600 +astro-ph/0605602 +astro-ph/0605604 +astro-ph/0605606 +astro-ph/0605613 +astro-ph/0605614 +astro-ph/0605615 +astro-ph/0605616 +astro-ph/0605617 +astro-ph/0605618 +astro-ph/0605619 +astro-ph/0605620 +astro-ph/0605622 +astro-ph/0605624 +astro-ph/0605629 +astro-ph/0605631 +astro-ph/0605635 +astro-ph/0605638 +astro-ph/0605642 +astro-ph/0605644 +astro-ph/0605646 +astro-ph/0605652 +astro-ph/0605656 +astro-ph/0605658 +astro-ph/0605659 +astro-ph/0605661 +astro-ph/0605663 +astro-ph/0605664 +astro-ph/0605667 +astro-ph/0605668 +astro-ph/0605672 +astro-ph/0605675 +astro-ph/0605676 +astro-ph/0605677 +astro-ph/0605679 +astro-ph/0605680 +astro-ph/0605689 +astro-ph/0605693 +astro-ph/0605695 +astro-ph/0605696 +astro-ph/0605698 +astro-ph/0605703 +astro-ph/0605704 +astro-ph/0605711 +astro-ph/0605713 +astro-ph/0605715 +astro-ph/0605716 +astro-ph/0605718 +astro-ph/0605720 +astro-ph/0605721 +astro-ph/0605728 +astro-ph/0605732 +astro-ph/0605735 +astro-ph/0605736 +astro-ph/0605737 +astro-ph/0605738 +astro-ph/0605739 +astro-ph/0605741 +astro-ph/0605742 +astro-ph/0605743 +astro-ph/0605746 +astro-ph/0606003 +astro-ph/0606005 +astro-ph/0606010 +astro-ph/0606013 +astro-ph/0606014 +astro-ph/0606016 +astro-ph/0606017 +astro-ph/0606020 +astro-ph/0606024 +astro-ph/0606026 +astro-ph/0606029 +astro-ph/0606032 +astro-ph/0606035 +astro-ph/0606037 +astro-ph/0606038 +astro-ph/0606043 +astro-ph/0606044 +astro-ph/0606045 +astro-ph/0606047 +astro-ph/0606049 +astro-ph/0606050 +astro-ph/0606053 +astro-ph/0606054 +astro-ph/0606056 +astro-ph/0606057 +astro-ph/0606059 +astro-ph/0606061 +astro-ph/0606063 +astro-ph/0606065 +astro-ph/0606068 +astro-ph/0606071 +astro-ph/0606075 +astro-ph/0606080 +astro-ph/0606085 +astro-ph/0606090 +astro-ph/0606091 +astro-ph/0606094 +astro-ph/0606095 +astro-ph/0606101 +astro-ph/0606108 +astro-ph/0606109 +astro-ph/0606112 +astro-ph/0606116 +astro-ph/0606118 +astro-ph/0606120 +astro-ph/0606131 +astro-ph/0606134 +astro-ph/0606139 +astro-ph/0606141 +astro-ph/0606145 +astro-ph/0606149 +astro-ph/0606150 +astro-ph/0606151 +astro-ph/0606152 +astro-ph/0606153 +astro-ph/0606154 +astro-ph/0606155 +astro-ph/0606156 +astro-ph/0606157 +astro-ph/0606159 +astro-ph/0606161 +astro-ph/0606164 +astro-ph/0606166 +astro-ph/0606168 +astro-ph/0606172 +astro-ph/0606173 +astro-ph/0606175 +astro-ph/0606176 +astro-ph/0606177 +astro-ph/0606178 +astro-ph/0606179 +astro-ph/0606180 +astro-ph/0606182 +astro-ph/0606188 +astro-ph/0606190 +astro-ph/0606191 +astro-ph/0606193 +astro-ph/0606197 +astro-ph/0606199 +astro-ph/0606200 +astro-ph/0606202 +astro-ph/0606203 +astro-ph/0606205 +astro-ph/0606206 +astro-ph/0606210 +astro-ph/0606212 +astro-ph/0606215 +astro-ph/0606217 +astro-ph/0606222 +astro-ph/0606224 +astro-ph/0606227 +astro-ph/0606231 +astro-ph/0606234 +astro-ph/0606239 +astro-ph/0606243 +astro-ph/0606245 +astro-ph/0606248 +astro-ph/0606250 +astro-ph/0606254 +astro-ph/0606257 +astro-ph/0606258 +astro-ph/0606261 +astro-ph/0606264 +astro-ph/0606268 +astro-ph/0606269 +astro-ph/0606270 +astro-ph/0606271 +astro-ph/0606272 +astro-ph/0606273 +astro-ph/0606274 +astro-ph/0606275 +astro-ph/0606278 +astro-ph/0606280 +astro-ph/0606282 +astro-ph/0606284 +astro-ph/0606288 +astro-ph/0606290 +astro-ph/0606291 +astro-ph/0606292 +astro-ph/0606293 +astro-ph/0606296 +astro-ph/0606297 +astro-ph/0606298 +astro-ph/0606299 +astro-ph/0606300 +astro-ph/0606301 +astro-ph/0606302 +astro-ph/0606303 +astro-ph/0606304 +astro-ph/0606305 +astro-ph/0606306 +astro-ph/0606307 +astro-ph/0606309 +astro-ph/0606312 +astro-ph/0606316 +astro-ph/0606317 +astro-ph/0606319 +astro-ph/0606324 +astro-ph/0606327 +astro-ph/0606328 +astro-ph/0606332 +astro-ph/0606333 +astro-ph/0606334 +astro-ph/0606335 +astro-ph/0606338 +astro-ph/0606340 +astro-ph/0606343 +astro-ph/0606344 +astro-ph/0606345 +astro-ph/0606347 +astro-ph/0606353 +astro-ph/0606357 +astro-ph/0606361 +astro-ph/0606363 +astro-ph/0606366 +astro-ph/0606367 +astro-ph/0606368 +astro-ph/0606373 +astro-ph/0606377 +astro-ph/0606378 +astro-ph/0606379 +astro-ph/0606381 +astro-ph/0606383 +astro-ph/0606384 +astro-ph/0606385 +astro-ph/0606388 +astro-ph/0606389 +astro-ph/0606390 +astro-ph/0606391 +astro-ph/0606392 +astro-ph/0606393 +astro-ph/0606394 +astro-ph/0606395 +astro-ph/0606396 +astro-ph/0606398 +astro-ph/0606400 +astro-ph/0606401 +astro-ph/0606403 +astro-ph/0606407 +astro-ph/0606409 +astro-ph/0606411 +astro-ph/0606412 +astro-ph/0606414 +astro-ph/0606415 +astro-ph/0606418 +astro-ph/0606419 +astro-ph/0606421 +astro-ph/0606423 +astro-ph/0606427 +astro-ph/0606430 +astro-ph/0606436 +astro-ph/0606437 +astro-ph/0606438 +astro-ph/0606439 +astro-ph/0606441 +astro-ph/0606444 +astro-ph/0606445 +astro-ph/0606450 +astro-ph/0606451 +astro-ph/0606452 +astro-ph/0606453 +astro-ph/0606455 +astro-ph/0606456 +astro-ph/0606458 +astro-ph/0606463 +astro-ph/0606465 +astro-ph/0606467 +astro-ph/0606469 +astro-ph/0606470 +astro-ph/0606471 +astro-ph/0606472 +astro-ph/0606475 +astro-ph/0606480 +astro-ph/0606481 +astro-ph/0606484 +astro-ph/0606485 +astro-ph/0606488 +astro-ph/0606490 +astro-ph/0606495 +astro-ph/0606498 +astro-ph/0606501 +astro-ph/0606503 +astro-ph/0606505 +astro-ph/0606506 +astro-ph/0606507 +astro-ph/0606509 +astro-ph/0606510 +astro-ph/0606512 +astro-ph/0606513 +astro-ph/0606515 +astro-ph/0606517 +astro-ph/0606518 +astro-ph/0606520 +astro-ph/0606521 +astro-ph/0606528 +astro-ph/0606533 +astro-ph/0606534 +astro-ph/0606535 +astro-ph/0606537 +astro-ph/0606539 +astro-ph/0606540 +astro-ph/0606543 +astro-ph/0606546 +astro-ph/0606547 +astro-ph/0606550 +astro-ph/0606551 +astro-ph/0606554 +astro-ph/0606555 +astro-ph/0606557 +astro-ph/0606558 +astro-ph/0606560 +astro-ph/0606562 +astro-ph/0606566 +astro-ph/0606571 +astro-ph/0606574 +astro-ph/0606576 +astro-ph/0606578 +astro-ph/0606582 +astro-ph/0606583 +astro-ph/0606584 +astro-ph/0606587 +astro-ph/0606588 +astro-ph/0606591 +astro-ph/0606592 +astro-ph/0606593 +astro-ph/0606594 +astro-ph/0606597 +astro-ph/0606598 +astro-ph/0606600 +astro-ph/0606603 +astro-ph/0606606 +astro-ph/0606609 +astro-ph/0606611 +astro-ph/0606621 +astro-ph/0606622 +astro-ph/0606623 +astro-ph/0606626 +astro-ph/0606627 +astro-ph/0606628 +astro-ph/0606629 +astro-ph/0606631 +astro-ph/0606636 +astro-ph/0606646 +astro-ph/0606647 +astro-ph/0606650 +astro-ph/0606663 +astro-ph/0606664 +astro-ph/0606667 +astro-ph/0606668 +astro-ph/0606670 +astro-ph/0606673 +astro-ph/0606674 +astro-ph/0606675 +astro-ph/0606676 +astro-ph/0606680 +astro-ph/0606682 +astro-ph/0606684 +astro-ph/0606685 +astro-ph/0606688 +astro-ph/0606691 +astro-ph/0606692 +astro-ph/0606701 +astro-ph/0606704 +astro-ph/0606707 +astro-ph/0606708 +astro-ph/0606710 +astro-ph/0606713 +astro-ph/0606715 +astro-ph/0606718 +astro-ph/0606719 +astro-ph/0606720 +astro-ph/0606721 +astro-ph/0606722 +astro-ph/0606723 +astro-ph/0606726 +astro-ph/0606727 +astro-ph/0606728 +astro-ph/0606729 +astro-ph/0606730 +astro-ph/0606734 +astro-ph/0606735 +astro-ph/0606736 +astro-ph/0606737 +astro-ph/0606738 +astro-ph/0606741 +astro-ph/0606748 +astro-ph/0606750 +astro-ph/0606751 +astro-ph/0606753 +astro-ph/0606754 +astro-ph/0606758 +astro-ph/0606759 +astro-ph/0607001 +astro-ph/0607002 +astro-ph/0607004 +astro-ph/0607008 +astro-ph/0607010 +astro-ph/0607012 +astro-ph/0607017 +astro-ph/0607019 +astro-ph/0607020 +astro-ph/0607023 +astro-ph/0607027 +astro-ph/0607029 +astro-ph/0607030 +astro-ph/0607033 +astro-ph/0607034 +astro-ph/0607035 +astro-ph/0607037 +astro-ph/0607043 +astro-ph/0607045 +astro-ph/0607051 +astro-ph/0607056 +astro-ph/0607058 +astro-ph/0607065 +astro-ph/0607066 +astro-ph/0607068 +astro-ph/0607071 +astro-ph/0607072 +astro-ph/0607075 +astro-ph/0607076 +astro-ph/0607082 +astro-ph/0607084 +astro-ph/0607086 +astro-ph/0607087 +astro-ph/0607088 +astro-ph/0607099 +astro-ph/0607101 +astro-ph/0607102 +astro-ph/0607103 +astro-ph/0607105 +astro-ph/0607106 +astro-ph/0607107 +astro-ph/0607108 +astro-ph/0607111 +astro-ph/0607114 +astro-ph/0607123 +astro-ph/0607127 +astro-ph/0607137 +astro-ph/0607141 +astro-ph/0607143 +astro-ph/0607144 +astro-ph/0607146 +astro-ph/0607151 +astro-ph/0607152 +astro-ph/0607153 +astro-ph/0607154 +astro-ph/0607157 +astro-ph/0607162 +astro-ph/0607168 +astro-ph/0607169 +astro-ph/0607170 +astro-ph/0607171 +astro-ph/0607172 +astro-ph/0607173 +astro-ph/0607176 +astro-ph/0607177 +astro-ph/0607178 +astro-ph/0607185 +astro-ph/0607190 +astro-ph/0607195 +astro-ph/0607196 +astro-ph/0607197 +astro-ph/0607198 +astro-ph/0607200 +astro-ph/0607201 +astro-ph/0607206 +astro-ph/0607208 +astro-ph/0607210 +astro-ph/0607211 +astro-ph/0607218 +astro-ph/0607220 +astro-ph/0607221 +astro-ph/0607222 +astro-ph/0607225 +astro-ph/0607229 +astro-ph/0607230 +astro-ph/0607235 +astro-ph/0607236 +astro-ph/0607239 +astro-ph/0607240 +astro-ph/0607242 +astro-ph/0607250 +astro-ph/0607251 +astro-ph/0607252 +astro-ph/0607253 +astro-ph/0607254 +astro-ph/0607257 +astro-ph/0607258 +astro-ph/0607260 +astro-ph/0607261 +astro-ph/0607262 +astro-ph/0607263 +astro-ph/0607264 +astro-ph/0607266 +astro-ph/0607268 +astro-ph/0607270 +astro-ph/0607271 +astro-ph/0607272 +astro-ph/0607273 +astro-ph/0607276 +astro-ph/0607279 +astro-ph/0607283 +astro-ph/0607285 +astro-ph/0607287 +astro-ph/0607289 +astro-ph/0607292 +astro-ph/0607293 +astro-ph/0607296 +astro-ph/0607298 +astro-ph/0607299 +astro-ph/0607300 +astro-ph/0607302 +astro-ph/0607305 +astro-ph/0607311 +astro-ph/0607316 +astro-ph/0607317 +astro-ph/0607319 +astro-ph/0607326 +astro-ph/0607327 +astro-ph/0607328 +astro-ph/0607330 +astro-ph/0607332 +astro-ph/0607336 +astro-ph/0607339 +astro-ph/0607344 +astro-ph/0607348 +astro-ph/0607349 +astro-ph/0607351 +astro-ph/0607353 +astro-ph/0607357 +astro-ph/0607358 +astro-ph/0607360 +astro-ph/0607367 +astro-ph/0607369 +astro-ph/0607372 +astro-ph/0607373 +astro-ph/0607375 +astro-ph/0607376 +astro-ph/0607377 +astro-ph/0607379 +astro-ph/0607383 +astro-ph/0607384 +astro-ph/0607387 +astro-ph/0607388 +astro-ph/0607389 +astro-ph/0607390 +astro-ph/0607394 +astro-ph/0607395 +astro-ph/0607397 +astro-ph/0607399 +astro-ph/0607404 +astro-ph/0607406 +astro-ph/0607409 +astro-ph/0607412 +astro-ph/0607418 +astro-ph/0607419 +astro-ph/0607420 +astro-ph/0607421 +astro-ph/0607424 +astro-ph/0607425 +astro-ph/0607430 +astro-ph/0607432 +astro-ph/0607433 +astro-ph/0607434 +astro-ph/0607436 +astro-ph/0607442 +astro-ph/0607443 +astro-ph/0607445 +astro-ph/0607447 +astro-ph/0607451 +astro-ph/0607452 +astro-ph/0607455 +astro-ph/0607465 +astro-ph/0607466 +astro-ph/0607470 +astro-ph/0607472 +astro-ph/0607473 +astro-ph/0607474 +astro-ph/0607477 +astro-ph/0607478 +astro-ph/0607479 +astro-ph/0607483 +astro-ph/0607486 +astro-ph/0607487 +astro-ph/0607491 +astro-ph/0607495 +astro-ph/0607497 +astro-ph/0607500 +astro-ph/0607504 +astro-ph/0607505 +astro-ph/0607506 +astro-ph/0607525 +astro-ph/0607530 +astro-ph/0607532 +astro-ph/0607533 +astro-ph/0607534 +astro-ph/0607535 +astro-ph/0607546 +astro-ph/0607547 +astro-ph/0607548 +astro-ph/0607552 +astro-ph/0607553 +astro-ph/0607559 +astro-ph/0607560 +astro-ph/0607561 +astro-ph/0607565 +astro-ph/0607567 +astro-ph/0607569 +astro-ph/0607570 +astro-ph/0607573 +astro-ph/0607574 +astro-ph/0607577 +astro-ph/0607578 +astro-ph/0607582 +astro-ph/0607584 +astro-ph/0607589 +astro-ph/0607591 +astro-ph/0607592 +astro-ph/0607593 +astro-ph/0607596 +astro-ph/0607597 +astro-ph/0607599 +astro-ph/0607601 +astro-ph/0607608 +astro-ph/0607609 +astro-ph/0607610 +astro-ph/0607611 +astro-ph/0607612 +astro-ph/0607613 +astro-ph/0607614 +astro-ph/0607619 +astro-ph/0607623 +astro-ph/0607624 +astro-ph/0607629 +astro-ph/0607636 +astro-ph/0607638 +astro-ph/0607640 +astro-ph/0607644 +astro-ph/0607645 +astro-ph/0607657 +astro-ph/0607660 +astro-ph/0607661 +astro-ph/0607662 +astro-ph/0607663 +astro-ph/0607664 +astro-ph/0607667 +astro-ph/0607670 +astro-ph/0607671 +astro-ph/0607672 +astro-ph/0608001 +astro-ph/0608002 +astro-ph/0608010 +astro-ph/0608012 +astro-ph/0608013 +astro-ph/0608014 +astro-ph/0608015 +astro-ph/0608018 +astro-ph/0608022 +astro-ph/0608023 +astro-ph/0608027 +astro-ph/0608031 +astro-ph/0608032 +astro-ph/0608041 +astro-ph/0608043 +astro-ph/0608044 +astro-ph/0608047 +astro-ph/0608054 +astro-ph/0608055 +astro-ph/0608056 +astro-ph/0608057 +astro-ph/0608063 +astro-ph/0608064 +astro-ph/0608066 +astro-ph/0608073 +astro-ph/0608075 +astro-ph/0608077 +astro-ph/0608078 +astro-ph/0608079 +astro-ph/0608080 +astro-ph/0608084 +astro-ph/0608086 +astro-ph/0608088 +astro-ph/0608094 +astro-ph/0608095 +astro-ph/0608101 +astro-ph/0608103 +astro-ph/0608105 +astro-ph/0608106 +astro-ph/0608108 +astro-ph/0608111 +astro-ph/0608112 +astro-ph/0608113 +astro-ph/0608117 +astro-ph/0608118 +astro-ph/0608120 +astro-ph/0608121 +astro-ph/0608128 +astro-ph/0608131 +astro-ph/0608134 +astro-ph/0608135 +astro-ph/0608139 +astro-ph/0608146 +astro-ph/0608160 +astro-ph/0608163 +astro-ph/0608172 +astro-ph/0608175 +astro-ph/0608176 +astro-ph/0608177 +astro-ph/0608178 +astro-ph/0608180 +astro-ph/0608181 +astro-ph/0608186 +astro-ph/0608187 +astro-ph/0608192 +astro-ph/0608193 +astro-ph/0608198 +astro-ph/0608200 +astro-ph/0608201 +astro-ph/0608202 +astro-ph/0608203 +astro-ph/0608205 +astro-ph/0608207 +astro-ph/0608213 +astro-ph/0608217 +astro-ph/0608219 +astro-ph/0608226 +astro-ph/0608227 +astro-ph/0608233 +astro-ph/0608236 +astro-ph/0608238 +astro-ph/0608239 +astro-ph/0608240 +astro-ph/0608243 +astro-ph/0608244 +astro-ph/0608245 +astro-ph/0608248 +astro-ph/0608250 +astro-ph/0608254 +astro-ph/0608255 +astro-ph/0608259 +astro-ph/0608260 +astro-ph/0608263 +astro-ph/0608264 +astro-ph/0608265 +astro-ph/0608266 +astro-ph/0608267 +astro-ph/0608271 +astro-ph/0608275 +astro-ph/0608277 +astro-ph/0608284 +astro-ph/0608286 +astro-ph/0608291 +astro-ph/0608292 +astro-ph/0608300 +astro-ph/0608316 +astro-ph/0608317 +astro-ph/0608319 +astro-ph/0608321 +astro-ph/0608323 +astro-ph/0608331 +astro-ph/0608333 +astro-ph/0608334 +astro-ph/0608337 +astro-ph/0608342 +astro-ph/0608343 +astro-ph/0608344 +astro-ph/0608345 +astro-ph/0608346 +astro-ph/0608349 +astro-ph/0608356 +astro-ph/0608358 +astro-ph/0608367 +astro-ph/0608368 +astro-ph/0608369 +astro-ph/0608370 +astro-ph/0608371 +astro-ph/0608376 +astro-ph/0608378 +astro-ph/0608380 +astro-ph/0608381 +astro-ph/0608382 +astro-ph/0608383 +astro-ph/0608384 +astro-ph/0608392 +astro-ph/0608393 +astro-ph/0608394 +astro-ph/0608396 +astro-ph/0608397 +astro-ph/0608400 +astro-ph/0608407 +astro-ph/0608409 +astro-ph/0608413 +astro-ph/0608417 +astro-ph/0608423 +astro-ph/0608426 +astro-ph/0608427 +astro-ph/0608428 +astro-ph/0608430 +astro-ph/0608431 +astro-ph/0608432 +astro-ph/0608433 +astro-ph/0608437 +astro-ph/0608438 +astro-ph/0608439 +astro-ph/0608445 +astro-ph/0608447 +astro-ph/0608449 +astro-ph/0608450 +astro-ph/0608452 +astro-ph/0608456 +astro-ph/0608458 +astro-ph/0608459 +astro-ph/0608460 +astro-ph/0608461 +astro-ph/0608462 +astro-ph/0608464 +astro-ph/0608465 +astro-ph/0608479 +astro-ph/0608481 +astro-ph/0608482 +astro-ph/0608484 +astro-ph/0608487 +astro-ph/0608488 +astro-ph/0608491 +astro-ph/0608493 +astro-ph/0608494 +astro-ph/0608503 +astro-ph/0608504 +astro-ph/0608506 +astro-ph/0608516 +astro-ph/0608518 +astro-ph/0608523 +astro-ph/0608532 +astro-ph/0608533 +astro-ph/0608539 +astro-ph/0608542 +astro-ph/0608543 +astro-ph/0608545 +astro-ph/0608559 +astro-ph/0608560 +astro-ph/0608562 +astro-ph/0608564 +astro-ph/0608574 +astro-ph/0608581 +astro-ph/0608583 +astro-ph/0608584 +astro-ph/0608586 +astro-ph/0608590 +astro-ph/0608594 +astro-ph/0608596 +astro-ph/0608597 +astro-ph/0608598 +astro-ph/0608601 +astro-ph/0608611 +astro-ph/0608618 +astro-ph/0608620 +astro-ph/0608623 +astro-ph/0608624 +astro-ph/0608625 +astro-ph/0608627 +astro-ph/0608628 +astro-ph/0608630 +astro-ph/0608644 +astro-ph/0608648 +astro-ph/0608651 +astro-ph/0608654 +astro-ph/0608658 +astro-ph/0608659 +astro-ph/0608661 +astro-ph/0608664 +astro-ph/0608665 +astro-ph/0608668 +astro-ph/0608669 +astro-ph/0608671 +astro-ph/0608672 +astro-ph/0608673 +astro-ph/0608674 +astro-ph/0608676 +astro-ph/0608683 +astro-ph/0608687 +astro-ph/0608700 +astro-ph/0608702 +astro-ph/0608705 +astro-ph/0608708 +astro-ph/0608709 +astro-ph/0608711 +astro-ph/0608712 +astro-ph/0609005 +astro-ph/0609010 +astro-ph/0609012 +astro-ph/0609015 +astro-ph/0609019 +astro-ph/0609025 +astro-ph/0609029 +astro-ph/0609030 +astro-ph/0609032 +astro-ph/0609036 +astro-ph/0609042 +astro-ph/0609044 +astro-ph/0609047 +astro-ph/0609050 +astro-ph/0609053 +astro-ph/0609055 +astro-ph/0609056 +astro-ph/0609057 +astro-ph/0609059 +astro-ph/0609066 +astro-ph/0609067 +astro-ph/0609068 +astro-ph/0609070 +astro-ph/0609071 +astro-ph/0609076 +astro-ph/0609077 +astro-ph/0609080 +astro-ph/0609081 +astro-ph/0609085 +astro-ph/0609086 +astro-ph/0609089 +astro-ph/0609094 +astro-ph/0609098 +astro-ph/0609100 +astro-ph/0609102 +astro-ph/0609106 +astro-ph/0609107 +astro-ph/0609110 +astro-ph/0609111 +astro-ph/0609114 +astro-ph/0609116 +astro-ph/0609121 +astro-ph/0609123 +astro-ph/0609127 +astro-ph/0609128 +astro-ph/0609130 +astro-ph/0609132 +astro-ph/0609134 +astro-ph/0609135 +astro-ph/0609143 +astro-ph/0609145 +astro-ph/0609147 +astro-ph/0609150 +astro-ph/0609156 +astro-ph/0609157 +astro-ph/0609158 +astro-ph/0609161 +astro-ph/0609162 +astro-ph/0609163 +astro-ph/0609164 +astro-ph/0609165 +astro-ph/0609167 +astro-ph/0609172 +astro-ph/0609174 +astro-ph/0609178 +astro-ph/0609182 +astro-ph/0609185 +astro-ph/0609186 +astro-ph/0609191 +astro-ph/0609193 +astro-ph/0609195 +astro-ph/0609196 +astro-ph/0609202 +astro-ph/0609207 +astro-ph/0609209 +astro-ph/0609218 +astro-ph/0609219 +astro-ph/0609220 +astro-ph/0609221 +astro-ph/0609225 +astro-ph/0609226 +astro-ph/0609227 +astro-ph/0609230 +astro-ph/0609231 +astro-ph/0609232 +astro-ph/0609235 +astro-ph/0609237 +astro-ph/0609238 +astro-ph/0609240 +astro-ph/0609250 +astro-ph/0609253 +astro-ph/0609255 +astro-ph/0609256 +astro-ph/0609257 +astro-ph/0609258 +astro-ph/0609259 +astro-ph/0609263 +astro-ph/0609270 +astro-ph/0609271 +astro-ph/0609277 +astro-ph/0609278 +astro-ph/0609279 +astro-ph/0609280 +astro-ph/0609283 +astro-ph/0609286 +astro-ph/0609287 +astro-ph/0609290 +astro-ph/0609291 +astro-ph/0609292 +astro-ph/0609293 +astro-ph/0609294 +astro-ph/0609297 +astro-ph/0609298 +astro-ph/0609299 +astro-ph/0609303 +astro-ph/0609304 +astro-ph/0609305 +astro-ph/0609307 +astro-ph/0609312 +astro-ph/0609320 +astro-ph/0609322 +astro-ph/0609327 +astro-ph/0609329 +astro-ph/0609333 +astro-ph/0609343 +astro-ph/0609345 +astro-ph/0609348 +astro-ph/0609353 +astro-ph/0609354 +astro-ph/0609355 +astro-ph/0609361 +astro-ph/0609362 +astro-ph/0609363 +astro-ph/0609365 +astro-ph/0609366 +astro-ph/0609373 +astro-ph/0609377 +astro-ph/0609382 +astro-ph/0609384 +astro-ph/0609391 +astro-ph/0609392 +astro-ph/0609393 +astro-ph/0609395 +astro-ph/0609399 +astro-ph/0609401 +astro-ph/0609402 +astro-ph/0609404 +astro-ph/0609408 +astro-ph/0609415 +astro-ph/0609416 +astro-ph/0609418 +astro-ph/0609427 +astro-ph/0609428 +astro-ph/0609433 +astro-ph/0609435 +astro-ph/0609436 +astro-ph/0609438 +astro-ph/0609447 +astro-ph/0609449 +astro-ph/0609452 +astro-ph/0609454 +astro-ph/0609461 +astro-ph/0609466 +astro-ph/0609469 +astro-ph/0609471 +astro-ph/0609472 +astro-ph/0609475 +astro-ph/0609476 +astro-ph/0609477 +astro-ph/0609480 +astro-ph/0609489 +astro-ph/0609493 +astro-ph/0609494 +astro-ph/0609497 +astro-ph/0609506 +astro-ph/0609507 +astro-ph/0609508 +astro-ph/0609510 +astro-ph/0609513 +astro-ph/0609514 +astro-ph/0609516 +astro-ph/0609519 +astro-ph/0609523 +astro-ph/0609527 +astro-ph/0609529 +astro-ph/0609531 +astro-ph/0609532 +astro-ph/0609537 +astro-ph/0609542 +astro-ph/0609544 +astro-ph/0609546 +astro-ph/0609550 +astro-ph/0609553 +astro-ph/0609559 +astro-ph/0609569 +astro-ph/0609571 +astro-ph/0609572 +astro-ph/0609573 +astro-ph/0609574 +astro-ph/0609576 +astro-ph/0609580 +astro-ph/0609595 +astro-ph/0609600 +astro-ph/0609603 +astro-ph/0609606 +astro-ph/0609607 +astro-ph/0609611 +astro-ph/0609616 +astro-ph/0609618 +astro-ph/0609620 +astro-ph/0609626 +astro-ph/0609627 +astro-ph/0609634 +astro-ph/0609642 +astro-ph/0609644 +astro-ph/0609646 +astro-ph/0609652 +astro-ph/0609653 +astro-ph/0609658 +astro-ph/0609660 +astro-ph/0609666 +astro-ph/0609667 +astro-ph/0609670 +astro-ph/0609671 +astro-ph/0609680 +astro-ph/0609681 +astro-ph/0609683 +astro-ph/0609684 +astro-ph/0609689 +astro-ph/0609692 +astro-ph/0609693 +astro-ph/0609698 +astro-ph/0609706 +astro-ph/0609715 +astro-ph/0609716 +astro-ph/0609718 +astro-ph/0609720 +astro-ph/0609723 +astro-ph/0609730 +astro-ph/0609733 +astro-ph/0609734 +astro-ph/0609738 +astro-ph/0609741 +astro-ph/0609742 +astro-ph/0609746 +astro-ph/0609748 +astro-ph/0609752 +astro-ph/0609753 +astro-ph/0609758 +astro-ph/0609759 +astro-ph/0609764 +astro-ph/0609765 +astro-ph/0609766 +astro-ph/0609769 +astro-ph/0609771 +astro-ph/0609776 +astro-ph/0609778 +astro-ph/0609780 +astro-ph/0609782 +astro-ph/0609785 +astro-ph/0609786 +astro-ph/0609787 +astro-ph/0609789 +astro-ph/0609790 +astro-ph/0609797 +astro-ph/0609799 +astro-ph/0609808 +astro-ph/0609809 +astro-ph/0609813 +astro-ph/0609815 +astro-ph/0609816 +astro-ph/0609820 +astro-ph/0609821 +astro-ph/0609823 +astro-ph/0609824 +astro-ph/0610004 +astro-ph/0610005 +astro-ph/0610008 +astro-ph/0610011 +astro-ph/0610012 +astro-ph/0610016 +astro-ph/0610018 +astro-ph/0610021 +astro-ph/0610025 +astro-ph/0610028 +astro-ph/0610030 +astro-ph/0610031 +astro-ph/0610033 +astro-ph/0610035 +astro-ph/0610037 +astro-ph/0610039 +astro-ph/0610041 +astro-ph/0610042 +astro-ph/0610045 +astro-ph/0610047 +astro-ph/0610058 +astro-ph/0610062 +astro-ph/0610066 +astro-ph/0610068 +astro-ph/0610075 +astro-ph/0610081 +astro-ph/0610086 +astro-ph/0610095 +astro-ph/0610097 +astro-ph/0610098 +astro-ph/0610103 +astro-ph/0610104 +astro-ph/0610106 +astro-ph/0610109 +astro-ph/0610114 +astro-ph/0610117 +astro-ph/0610120 +astro-ph/0610121 +astro-ph/0610123 +astro-ph/0610136 +astro-ph/0610146 +astro-ph/0610147 +astro-ph/0610151 +astro-ph/0610154 +astro-ph/0610156 +astro-ph/0610158 +astro-ph/0610164 +astro-ph/0610166 +astro-ph/0610167 +astro-ph/0610179 +astro-ph/0610180 +astro-ph/0610183 +astro-ph/0610189 +astro-ph/0610193 +astro-ph/0610194 +astro-ph/0610199 +astro-ph/0610205 +astro-ph/0610217 +astro-ph/0610219 +astro-ph/0610223 +astro-ph/0610231 +astro-ph/0610233 +astro-ph/0610238 +astro-ph/0610245 +astro-ph/0610252 +astro-ph/0610264 +astro-ph/0610271 +astro-ph/0610282 +astro-ph/0610289 +astro-ph/0610293 +astro-ph/0610301 +astro-ph/0610302 +astro-ph/0610303 +astro-ph/0610305 +astro-ph/0610311 +astro-ph/0610315 +astro-ph/0610323 +astro-ph/0610330 +astro-ph/0610333 +astro-ph/0610334 +astro-ph/0610337 +astro-ph/0610339 +astro-ph/0610341 +astro-ph/0610342 +astro-ph/0610343 +astro-ph/0610346 +astro-ph/0610347 +astro-ph/0610351 +astro-ph/0610352 +astro-ph/0610354 +astro-ph/0610359 +astro-ph/0610360 +astro-ph/0610362 +astro-ph/0610366 +astro-ph/0610367 +astro-ph/0610371 +astro-ph/0610387 +astro-ph/0610389 +astro-ph/0610394 +astro-ph/0610395 +astro-ph/0610399 +astro-ph/0610401 +astro-ph/0610404 +astro-ph/0610409 +astro-ph/0610410 +astro-ph/0610411 +astro-ph/0610415 +astro-ph/0610416 +astro-ph/0610420 +astro-ph/0610425 +astro-ph/0610428 +astro-ph/0610430 +astro-ph/0610439 +astro-ph/0610442 +astro-ph/0610445 +astro-ph/0610451 +astro-ph/0610452 +astro-ph/0610456 +astro-ph/0610460 +astro-ph/0610464 +astro-ph/0610468 +astro-ph/0610469 +astro-ph/0610473 +astro-ph/0610478 +astro-ph/0610479 +astro-ph/0610482 +astro-ph/0610486 +astro-ph/0610493 +astro-ph/0610497 +astro-ph/0610499 +astro-ph/0610500 +astro-ph/0610505 +astro-ph/0610506 +astro-ph/0610507 +astro-ph/0610510 +astro-ph/0610517 +astro-ph/0610525 +astro-ph/0610527 +astro-ph/0610533 +astro-ph/0610535 +astro-ph/0610536 +astro-ph/0610537 +astro-ph/0610539 +astro-ph/0610540 +astro-ph/0610546 +astro-ph/0610547 +astro-ph/0610553 +astro-ph/0610557 +astro-ph/0610559 +astro-ph/0610561 +astro-ph/0610563 +astro-ph/0610567 +astro-ph/0610573 +astro-ph/0610579 +astro-ph/0610581 +astro-ph/0610582 +astro-ph/0610586 +astro-ph/0610592 +astro-ph/0610594 +astro-ph/0610598 +astro-ph/0610600 +astro-ph/0610601 +astro-ph/0610607 +astro-ph/0610612 +astro-ph/0610615 +astro-ph/0610619 +astro-ph/0610622 +astro-ph/0610623 +astro-ph/0610625 +astro-ph/0610629 +astro-ph/0610630 +astro-ph/0610636 +astro-ph/0610638 +astro-ph/0610640 +astro-ph/0610642 +astro-ph/0610646 +astro-ph/0610649 +astro-ph/0610652 +astro-ph/0610653 +astro-ph/0610658 +astro-ph/0610662 +astro-ph/0610666 +astro-ph/0610667 +astro-ph/0610672 +astro-ph/0610675 +astro-ph/0610684 +astro-ph/0610692 +astro-ph/0610694 +astro-ph/0610696 +astro-ph/0610702 +astro-ph/0610703 +astro-ph/0610708 +astro-ph/0610709 +astro-ph/0610716 +astro-ph/0610722 +astro-ph/0610724 +astro-ph/0610727 +astro-ph/0610731 +astro-ph/0610738 +astro-ph/0610739 +astro-ph/0610741 +astro-ph/0610745 +astro-ph/0610749 +astro-ph/0610752 +astro-ph/0610756 +astro-ph/0610758 +astro-ph/0610764 +astro-ph/0610772 +astro-ph/0610774 +astro-ph/0610778 +astro-ph/0610783 +astro-ph/0610784 +astro-ph/0610790 +astro-ph/0610803 +astro-ph/0610808 +astro-ph/0610810 +astro-ph/0610822 +astro-ph/0610823 +astro-ph/0610825 +astro-ph/0610826 +astro-ph/0610827 +astro-ph/0610828 +astro-ph/0610836 +astro-ph/0610839 +astro-ph/0610842 +astro-ph/0610847 +astro-ph/0610848 +astro-ph/0610853 +astro-ph/0610855 +astro-ph/0610858 +astro-ph/0610859 +astro-ph/0610860 +astro-ph/0610863 +astro-ph/0610873 +astro-ph/0610874 +astro-ph/0610877 +astro-ph/0610880 +astro-ph/0610883 +astro-ph/0610884 +astro-ph/0610899 +astro-ph/0610900 +astro-ph/0610901 +astro-ph/0610905 +astro-ph/0610908 +astro-ph/0610921 +astro-ph/0610929 +astro-ph/0610930 +astro-ph/0610936 +astro-ph/0610939 +astro-ph/0610942 +astro-ph/0610947 +astro-ph/0610948 +astro-ph/0610956 +astro-ph/0611003 +astro-ph/0611005 +astro-ph/0611020 +astro-ph/0611023 +astro-ph/0611024 +astro-ph/0611028 +astro-ph/0611038 +astro-ph/0611039 +astro-ph/0611047 +astro-ph/0611049 +astro-ph/0611051 +astro-ph/0611054 +astro-ph/0611056 +astro-ph/0611060 +astro-ph/0611070 +astro-ph/0611074 +astro-ph/0611086 +astro-ph/0611091 +astro-ph/0611092 +astro-ph/0611109 +astro-ph/0611121 +astro-ph/0611125 +astro-ph/0611127 +astro-ph/0611141 +astro-ph/0611143 +astro-ph/0611147 +astro-ph/0611149 +astro-ph/0611158 +astro-ph/0611162 +astro-ph/0611167 +astro-ph/0611169 +astro-ph/0611170 +astro-ph/0611172 +astro-ph/0611173 +astro-ph/0611174 +astro-ph/0611176 +astro-ph/0611179 +astro-ph/0611187 +astro-ph/0611195 +astro-ph/0611202 +astro-ph/0611203 +astro-ph/0611216 +astro-ph/0611222 +astro-ph/0611223 +astro-ph/0611229 +astro-ph/0611235 +astro-ph/0611248 +astro-ph/0611254 +astro-ph/0611257 +astro-ph/0611267 +astro-ph/0611272 +astro-ph/0611274 +astro-ph/0611277 +astro-ph/0611280 +astro-ph/0611285 +astro-ph/0611289 +astro-ph/0611290 +astro-ph/0611292 +astro-ph/0611293 +astro-ph/0611305 +astro-ph/0611306 +astro-ph/0611309 +astro-ph/0611316 +astro-ph/0611322 +astro-ph/0611323 +astro-ph/0611325 +astro-ph/0611329 +astro-ph/0611330 +astro-ph/0611332 +astro-ph/0611336 +astro-ph/0611340 +astro-ph/0611343 +astro-ph/0611344 +astro-ph/0611363 +astro-ph/0611366 +astro-ph/0611376 +astro-ph/0611377 +astro-ph/0611386 +astro-ph/0611402 +astro-ph/0611404 +astro-ph/0611407 +astro-ph/0611412 +astro-ph/0611419 +astro-ph/0611422 +astro-ph/0611424 +astro-ph/0611426 +astro-ph/0611427 +astro-ph/0611430 +astro-ph/0611433 +astro-ph/0611434 +astro-ph/0611436 +astro-ph/0611444 +astro-ph/0611445 +astro-ph/0611446 +astro-ph/0611451 +astro-ph/0611464 +astro-ph/0611470 +astro-ph/0611473 +astro-ph/0611475 +astro-ph/0611476 +astro-ph/0611477 +astro-ph/0611478 +astro-ph/0611481 +astro-ph/0611482 +astro-ph/0611485 +astro-ph/0611486 +astro-ph/0611487 +astro-ph/0611489 +astro-ph/0611491 +astro-ph/0611492 +astro-ph/0611494 +astro-ph/0611504 +astro-ph/0611509 +astro-ph/0611516 +astro-ph/0611520 +astro-ph/0611525 +astro-ph/0611526 +astro-ph/0611527 +astro-ph/0611533 +astro-ph/0611552 +astro-ph/0611553 +astro-ph/0611555 +astro-ph/0611556 +astro-ph/0611559 +astro-ph/0611560 +astro-ph/0611563 +astro-ph/0611565 +astro-ph/0611567 +astro-ph/0611571 +astro-ph/0611576 +astro-ph/0611577 +astro-ph/0611584 +astro-ph/0611588 +astro-ph/0611590 +astro-ph/0611593 +astro-ph/0611596 +astro-ph/0611600 +astro-ph/0611602 +astro-ph/0611606 +astro-ph/0611609 +astro-ph/0611613 +astro-ph/0611616 +astro-ph/0611620 +astro-ph/0611622 +astro-ph/0611624 +astro-ph/0611626 +astro-ph/0611627 +astro-ph/0611631 +astro-ph/0611632 +astro-ph/0611637 +astro-ph/0611651 +astro-ph/0611656 +astro-ph/0611662 +astro-ph/0611667 +astro-ph/0611669 +astro-ph/0611673 +astro-ph/0611680 +astro-ph/0611681 +astro-ph/0611701 +astro-ph/0611716 +astro-ph/0611724 +astro-ph/0611727 +astro-ph/0611729 +astro-ph/0611730 +astro-ph/0611731 +astro-ph/0611735 +astro-ph/0611743 +astro-ph/0611762 +astro-ph/0611765 +astro-ph/0611767 +astro-ph/0611772 +astro-ph/0611774 +astro-ph/0611781 +astro-ph/0611787 +astro-ph/0611789 +astro-ph/0611791 +astro-ph/0611804 +astro-ph/0611805 +astro-ph/0611811 +astro-ph/0611814 +astro-ph/0611825 +astro-ph/0611828 +astro-ph/0611842 +astro-ph/0611843 +astro-ph/0611846 +astro-ph/0611848 +astro-ph/0611849 +astro-ph/0611860 +astro-ph/0611866 +astro-ph/0611875 +astro-ph/0611880 +astro-ph/0611881 +astro-ph/0611883 +astro-ph/0611895 +astro-ph/0611897 +astro-ph/0611898 +astro-ph/0611901 +astro-ph/0611902 +astro-ph/0611907 +astro-ph/0611910 +astro-ph/0611913 +astro-ph/0611918 +astro-ph/0611926 +astro-ph/0611936 +astro-ph/0611938 +astro-ph/0611944 +astro-ph/0611949 +astro-ph/0611952 +astro-ph/0612003 +astro-ph/0612008 +astro-ph/0612012 +astro-ph/0612017 +astro-ph/0612019 +astro-ph/0612020 +astro-ph/0612023 +astro-ph/0612026 +astro-ph/0612027 +astro-ph/0612035 +astro-ph/0612044 +astro-ph/0612046 +astro-ph/0612055 +astro-ph/0612056 +astro-ph/0612057 +astro-ph/0612059 +astro-ph/0612064 +astro-ph/0612066 +astro-ph/0612083 +astro-ph/0612086 +astro-ph/0612088 +astro-ph/0612089 +astro-ph/0612093 +astro-ph/0612094 +astro-ph/0612097 +astro-ph/0612098 +astro-ph/0612122 +astro-ph/0612125 +astro-ph/0612127 +astro-ph/0612130 +astro-ph/0612133 +astro-ph/0612136 +astro-ph/0612146 +astro-ph/0612148 +astro-ph/0612149 +astro-ph/0612159 +astro-ph/0612165 +astro-ph/0612172 +astro-ph/0612178 +astro-ph/0612180 +astro-ph/0612183 +astro-ph/0612184 +astro-ph/0612188 +astro-ph/0612197 +astro-ph/0612203 +astro-ph/0612210 +astro-ph/0612213 +astro-ph/0612220 +astro-ph/0612221 +astro-ph/0612234 +astro-ph/0612237 +astro-ph/0612238 +astro-ph/0612240 +astro-ph/0612241 +astro-ph/0612246 +astro-ph/0612249 +astro-ph/0612250 +astro-ph/0612262 +astro-ph/0612264 +astro-ph/0612266 +astro-ph/0612269 +astro-ph/0612275 +astro-ph/0612276 +astro-ph/0612278 +astro-ph/0612286 +astro-ph/0612289 +astro-ph/0612291 +astro-ph/0612295 +astro-ph/0612296 +astro-ph/0612297 +astro-ph/0612299 +astro-ph/0612301 +astro-ph/0612305 +astro-ph/0612311 +astro-ph/0612314 +astro-ph/0612316 +astro-ph/0612338 +astro-ph/0612340 +astro-ph/0612343 +astro-ph/0612344 +astro-ph/0612345 +astro-ph/0612346 +astro-ph/0612348 +astro-ph/0612351 +astro-ph/0612356 +astro-ph/0612358 +astro-ph/0612360 +astro-ph/0612361 +astro-ph/0612369 +astro-ph/0612379 +astro-ph/0612380 +astro-ph/0612384 +astro-ph/0612388 +astro-ph/0612396 +astro-ph/0612399 +astro-ph/0612400 +astro-ph/0612401 +astro-ph/0612404 +astro-ph/0612406 +astro-ph/0612408 +astro-ph/0612409 +astro-ph/0612411 +astro-ph/0612413 +astro-ph/0612419 +astro-ph/0612433 +astro-ph/0612447 +astro-ph/0612449 +astro-ph/0612464 +astro-ph/0612482 +astro-ph/0612484 +astro-ph/0612485 +astro-ph/0612489 +astro-ph/0612491 +astro-ph/0612495 +astro-ph/0612500 +astro-ph/0612509 +astro-ph/0612529 +astro-ph/0612537 +astro-ph/0612546 +astro-ph/0612547 +astro-ph/0612548 +astro-ph/0612550 +astro-ph/0612553 +astro-ph/0612555 +astro-ph/0612563 +astro-ph/0612564 +astro-ph/0612576 +astro-ph/0612582 +astro-ph/0612585 +astro-ph/0612586 +astro-ph/0612589 +astro-ph/0612590 +astro-ph/0612592 +astro-ph/0612596 +astro-ph/0612601 +astro-ph/0612609 +astro-ph/0612614 +astro-ph/0612619 +astro-ph/0612620 +astro-ph/0612622 +astro-ph/0612624 +astro-ph/0612648 +astro-ph/0612651 +astro-ph/0612658 +astro-ph/0612661 +astro-ph/0612668 +astro-ph/0612691 +astro-ph/0612704 +astro-ph/0612706 +astro-ph/0612715 +astro-ph/0612717 +astro-ph/0612724 +astro-ph/0612729 +astro-ph/0612764 +astro-ph/0612765 +astro-ph/0612768 +astro-ph/0612769 +astro-ph/0612770 +astro-ph/0612791 +cond-mat/0501003 Materials Science +cond-mat/0501004 Strongly Correlated Electrons +cond-mat/0501005 Soft Condensed Matter +cond-mat/0501010 Disordered Systems and Neural Networks +cond-mat/0501016 Superconductivity +cond-mat/0501017 Superconductivity +cond-mat/0501018 Materials Science +cond-mat/0501019 Strongly Correlated Electrons +cond-mat/0501021 Strongly Correlated Electrons +cond-mat/0501024 Materials Science +cond-mat/0501025 Other Condensed Matter +cond-mat/0501027 Materials Science +cond-mat/0501028 Soft Condensed Matter +cond-mat/0501029 Strongly Correlated Electrons +cond-mat/0501032 Superconductivity +cond-mat/0501036 Superconductivity +cond-mat/0501038 Materials Science +cond-mat/0501039 Materials Science +cond-mat/0501040 Strongly Correlated Electrons +cond-mat/0501041 Statistical Mechanics +cond-mat/0501042 Statistical Mechanics +cond-mat/0501043 Mesoscale and Nanoscale Physics +cond-mat/0501044 Strongly Correlated Electrons +cond-mat/0501047 Soft Condensed Matter +cond-mat/0501048 Statistical Mechanics +cond-mat/0501049 Materials Science +cond-mat/0501050 Materials Science +cond-mat/0501051 Strongly Correlated Electrons +cond-mat/0501053 Statistical Mechanics +cond-mat/0501054 Superconductivity +cond-mat/0501055 Statistical Mechanics +cond-mat/0501056 Materials Science +cond-mat/0501058 Other Condensed Matter +cond-mat/0501059 Other Condensed Matter +cond-mat/0501064 Soft Condensed Matter +cond-mat/0501066 Soft Condensed Matter +cond-mat/0501067 Statistical Mechanics +cond-mat/0501070 Statistical Mechanics +cond-mat/0501071 Soft Condensed Matter +cond-mat/0501072 Statistical Mechanics +cond-mat/0501073 Soft Condensed Matter +cond-mat/0501077 Soft Condensed Matter +cond-mat/0501078 Statistical Mechanics +cond-mat/0501079 Other Condensed Matter +cond-mat/0501084 Other Condensed Matter +cond-mat/0501086 Strongly Correlated Electrons +cond-mat/0501087 Strongly Correlated Electrons +cond-mat/0501088 Strongly Correlated Electrons +cond-mat/0501090 Materials Science +cond-mat/0501091 Mesoscale and Nanoscale Physics +cond-mat/0501093 Strongly Correlated Electrons +cond-mat/0501095 Statistical Mechanics +cond-mat/0501096 Materials Science +cond-mat/0501097 Soft Condensed Matter +cond-mat/0501098 Materials Science +cond-mat/0501099 Statistical Mechanics +cond-mat/0501100 Superconductivity +cond-mat/0501103 Superconductivity +cond-mat/0501104 Materials Science +cond-mat/0501106 Statistical Mechanics +cond-mat/0501108 Strongly Correlated Electrons +cond-mat/0501109 Soft Condensed Matter +cond-mat/0501113 Superconductivity +cond-mat/0501118 Soft Condensed Matter +cond-mat/0501120 Superconductivity +cond-mat/0501121 Materials Science +cond-mat/0501123 Soft Condensed Matter +cond-mat/0501124 Soft Condensed Matter +cond-mat/0501126 Statistical Mechanics +cond-mat/0501128 Superconductivity +cond-mat/0501132 Strongly Correlated Electrons +cond-mat/0501133 Strongly Correlated Electrons +cond-mat/0501134 Soft Condensed Matter +cond-mat/0501136 Other Condensed Matter +cond-mat/0501137 Other Condensed Matter +cond-mat/0501139 Statistical Mechanics +cond-mat/0501140 Superconductivity +cond-mat/0501142 Statistical Mechanics +cond-mat/0501144 Statistical Mechanics +cond-mat/0501145 Mesoscale and Nanoscale Physics +cond-mat/0501146 Strongly Correlated Electrons +cond-mat/0501147 Superconductivity +cond-mat/0501149 Materials Science +cond-mat/0501151 Mesoscale and Nanoscale Physics +cond-mat/0501152 Soft Condensed Matter +cond-mat/0501154 Soft Condensed Matter +cond-mat/0501156 Other Condensed Matter +cond-mat/0501158 Materials Science +cond-mat/0501159 Other Condensed Matter +cond-mat/0501162 Mesoscale and Nanoscale Physics +cond-mat/0501165 Materials Science +cond-mat/0501167 Mesoscale and Nanoscale Physics +cond-mat/0501168 Materials Science +cond-mat/0501170 Mesoscale and Nanoscale Physics +cond-mat/0501171 Soft Condensed Matter +cond-mat/0501174 Mesoscale and Nanoscale Physics +cond-mat/0501175 Strongly Correlated Electrons +cond-mat/0501177 Mesoscale and Nanoscale Physics +cond-mat/0501179 Mesoscale and Nanoscale Physics +cond-mat/0501180 Statistical Mechanics +cond-mat/0501187 Mesoscale and Nanoscale Physics +cond-mat/0501189 Mesoscale and Nanoscale Physics +cond-mat/0501190 Strongly Correlated Electrons +cond-mat/0501191 Mesoscale and Nanoscale Physics +cond-mat/0501193 Strongly Correlated Electrons +cond-mat/0501195 Statistical Mechanics +cond-mat/0501199 Disordered Systems and Neural Networks +cond-mat/0501200 Superconductivity +cond-mat/0501201 Strongly Correlated Electrons +cond-mat/0501202 Strongly Correlated Electrons +cond-mat/0501203 Strongly Correlated Electrons +cond-mat/0501204 Strongly Correlated Electrons +cond-mat/0501205 Disordered Systems and Neural Networks +cond-mat/0501209 Superconductivity +cond-mat/0501214 Mesoscale and Nanoscale Physics +cond-mat/0501215 Disordered Systems and Neural Networks +cond-mat/0501216 Mesoscale and Nanoscale Physics +cond-mat/0501220 Superconductivity +cond-mat/0501221 Statistical Mechanics +cond-mat/0501224 Soft Condensed Matter +cond-mat/0501226 Statistical Mechanics +cond-mat/0501227 Statistical Mechanics +cond-mat/0501231 Superconductivity +cond-mat/0501232 Strongly Correlated Electrons +cond-mat/0501235 Soft Condensed Matter +cond-mat/0501237 Strongly Correlated Electrons +cond-mat/0501238 Mesoscale and Nanoscale Physics +cond-mat/0501239 Strongly Correlated Electrons +cond-mat/0501240 Strongly Correlated Electrons +cond-mat/0501244 Superconductivity +cond-mat/0501245 Statistical Mechanics +cond-mat/0501247 Superconductivity +cond-mat/0501248 Other Condensed Matter +cond-mat/0501249 Other Condensed Matter +cond-mat/0501250 Other Condensed Matter +cond-mat/0501252 Statistical Mechanics +cond-mat/0501253 Superconductivity +cond-mat/0501254 Superconductivity +cond-mat/0501259 Statistical Mechanics +cond-mat/0501262 Strongly Correlated Electrons +cond-mat/0501266 Soft Condensed Matter +cond-mat/0501267 Materials Science +cond-mat/0501268 Other Condensed Matter +cond-mat/0501270 Strongly Correlated Electrons +cond-mat/0501273 Strongly Correlated Electrons +cond-mat/0501274 Strongly Correlated Electrons +cond-mat/0501275 Materials Science +cond-mat/0501278 Mesoscale and Nanoscale Physics +cond-mat/0501279 Strongly Correlated Electrons +cond-mat/0501280 Superconductivity +cond-mat/0501284 Superconductivity +cond-mat/0501285 Soft Condensed Matter +cond-mat/0501290 Strongly Correlated Electrons +cond-mat/0501294 Mesoscale and Nanoscale Physics +cond-mat/0501295 Statistical Mechanics +cond-mat/0501297 Materials Science +cond-mat/0501298 Materials Science +cond-mat/0501301 Mesoscale and Nanoscale Physics +cond-mat/0501303 Mesoscale and Nanoscale Physics +cond-mat/0501305 Soft Condensed Matter +cond-mat/0501308 Statistical Mechanics +cond-mat/0501309 Statistical Mechanics +cond-mat/0501311 Disordered Systems and Neural Networks +cond-mat/0501314 Materials Science +cond-mat/0501315 Disordered Systems and Neural Networks +cond-mat/0501317 Materials Science +cond-mat/0501318 Mesoscale and Nanoscale Physics +cond-mat/0501323 Other Condensed Matter +cond-mat/0501326 Mesoscale and Nanoscale Physics +cond-mat/0501330 Soft Condensed Matter +cond-mat/0501333 Statistical Mechanics +cond-mat/0501334 Soft Condensed Matter +cond-mat/0501338 Statistical Mechanics +cond-mat/0501348 Superconductivity +cond-mat/0501350 Superconductivity +cond-mat/0501352 Materials Science +cond-mat/0501353 Materials Science +cond-mat/0501354 Materials Science +cond-mat/0501355 Statistical Mechanics +cond-mat/0501356 Superconductivity +cond-mat/0501358 Superconductivity +cond-mat/0501359 Mesoscale and Nanoscale Physics +cond-mat/0501361 Other Condensed Matter +cond-mat/0501366 Statistical Mechanics +cond-mat/0501368 Disordered Systems and Neural Networks +cond-mat/0501369 Materials Science +cond-mat/0501370 Soft Condensed Matter +cond-mat/0501371 Statistical Mechanics +cond-mat/0501373 Superconductivity +cond-mat/0501374 Materials Science +cond-mat/0501376 Strongly Correlated Electrons +cond-mat/0501377 Materials Science +cond-mat/0501378 Superconductivity +cond-mat/0501379 Soft Condensed Matter +cond-mat/0501380 Superconductivity +cond-mat/0501381 Mesoscale and Nanoscale Physics +cond-mat/0501382 Strongly Correlated Electrons +cond-mat/0501383 Mesoscale and Nanoscale Physics +cond-mat/0501384 Disordered Systems and Neural Networks +cond-mat/0501385 Mesoscale and Nanoscale Physics +cond-mat/0501387 Other Condensed Matter +cond-mat/0501392 Mesoscale and Nanoscale Physics +cond-mat/0501393 Strongly Correlated Electrons +cond-mat/0501394 Mesoscale and Nanoscale Physics +cond-mat/0501396 Statistical Mechanics +cond-mat/0501397 Mesoscale and Nanoscale Physics +cond-mat/0501399 Disordered Systems and Neural Networks +cond-mat/0501401 Statistical Mechanics +cond-mat/0501402 Materials Science +cond-mat/0501405 Superconductivity +cond-mat/0501406 Mesoscale and Nanoscale Physics +cond-mat/0501409 Disordered Systems and Neural Networks +cond-mat/0501410 Mesoscale and Nanoscale Physics +cond-mat/0501411 Soft Condensed Matter +cond-mat/0501413 Other Condensed Matter +cond-mat/0501415 Superconductivity +cond-mat/0501417 Statistical Mechanics +cond-mat/0501418 Strongly Correlated Electrons +cond-mat/0501427 Strongly Correlated Electrons +cond-mat/0501428 Disordered Systems and Neural Networks +cond-mat/0501431 Disordered Systems and Neural Networks +cond-mat/0501432 Statistical Mechanics +cond-mat/0501436 Strongly Correlated Electrons +cond-mat/0501443 Strongly Correlated Electrons +cond-mat/0501444 Soft Condensed Matter +cond-mat/0501445 Statistical Mechanics +cond-mat/0501446 Disordered Systems and Neural Networks +cond-mat/0501450 Materials Science +cond-mat/0501452 Statistical Mechanics +cond-mat/0501454 Superconductivity +cond-mat/0501455 Mesoscale and Nanoscale Physics +cond-mat/0501459 Superconductivity +cond-mat/0501461 Superconductivity +cond-mat/0501462 Strongly Correlated Electrons +cond-mat/0501463 Superconductivity +cond-mat/0501464 Strongly Correlated Electrons +cond-mat/0501466 Mesoscale and Nanoscale Physics +cond-mat/0501468 Statistical Mechanics +cond-mat/0501470 Statistical Mechanics +cond-mat/0501471 Statistical Mechanics +cond-mat/0501473 Statistical Mechanics +cond-mat/0501474 Mesoscale and Nanoscale Physics +cond-mat/0501476 Strongly Correlated Electrons +cond-mat/0501477 Mesoscale and Nanoscale Physics +cond-mat/0501481 Soft Condensed Matter +cond-mat/0501483 Statistical Mechanics +cond-mat/0501486 Superconductivity +cond-mat/0501487 Strongly Correlated Electrons +cond-mat/0501488 Statistical Mechanics +cond-mat/0501489 Materials Science +cond-mat/0501490 Statistical Mechanics +cond-mat/0501492 Mesoscale and Nanoscale Physics +cond-mat/0501493 Other Condensed Matter +cond-mat/0501495 Soft Condensed Matter +cond-mat/0501497 Other Condensed Matter +cond-mat/0501498 Soft Condensed Matter +cond-mat/0501500 Superconductivity +cond-mat/0501502 Strongly Correlated Electrons +cond-mat/0501503 Mesoscale and Nanoscale Physics +cond-mat/0501505 Strongly Correlated Electrons +cond-mat/0501506 Disordered Systems and Neural Networks +cond-mat/0501510 Other Condensed Matter +cond-mat/0501511 Superconductivity +cond-mat/0501513 Other Condensed Matter +cond-mat/0501514 Superconductivity +cond-mat/0501515 Strongly Correlated Electrons +cond-mat/0501516 Mesoscale and Nanoscale Physics +cond-mat/0501518 Soft Condensed Matter +cond-mat/0501519 Strongly Correlated Electrons +cond-mat/0501521 Materials Science +cond-mat/0501524 Other Condensed Matter +cond-mat/0501525 Statistical Mechanics +cond-mat/0501527 Statistical Mechanics +cond-mat/0501529 Disordered Systems and Neural Networks +cond-mat/0501530 Strongly Correlated Electrons +cond-mat/0501531 Mesoscale and Nanoscale Physics +cond-mat/0501533 Disordered Systems and Neural Networks +cond-mat/0501535 Soft Condensed Matter +cond-mat/0501536 Materials Science +cond-mat/0501537 Statistical Mechanics +cond-mat/0501538 Mesoscale and Nanoscale Physics +cond-mat/0501539 Strongly Correlated Electrons +cond-mat/0501540 Statistical Mechanics +cond-mat/0501542 Statistical Mechanics +cond-mat/0501543 Statistical Mechanics +cond-mat/0501544 Statistical Mechanics +cond-mat/0501546 Soft Condensed Matter +cond-mat/0501547 Statistical Mechanics +cond-mat/0501549 Superconductivity +cond-mat/0501551 Superconductivity +cond-mat/0501552 Materials Science +cond-mat/0501553 Materials Science +cond-mat/0501555 Materials Science +cond-mat/0501556 Strongly Correlated Electrons +cond-mat/0501560 Strongly Correlated Electrons +cond-mat/0501561 Other Condensed Matter +cond-mat/0501563 Soft Condensed Matter +cond-mat/0501564 Superconductivity +cond-mat/0501566 Superconductivity +cond-mat/0501567 Statistical Mechanics +cond-mat/0501571 Statistical Mechanics +cond-mat/0501575 Superconductivity +cond-mat/0501579 Mesoscale and Nanoscale Physics +cond-mat/0501580 Strongly Correlated Electrons +cond-mat/0501583 Statistical Mechanics +cond-mat/0501584 Materials Science +cond-mat/0501587 Strongly Correlated Electrons +cond-mat/0501591 Soft Condensed Matter +cond-mat/0501595 Statistical Mechanics +cond-mat/0501596 Statistical Mechanics +cond-mat/0501597 Mesoscale and Nanoscale Physics +cond-mat/0501599 Statistical Mechanics +cond-mat/0501600 Strongly Correlated Electrons +cond-mat/0501603 Strongly Correlated Electrons +cond-mat/0501604 Statistical Mechanics +cond-mat/0501605 Mesoscale and Nanoscale Physics +cond-mat/0501607 Statistical Mechanics +cond-mat/0501608 Mesoscale and Nanoscale Physics +cond-mat/0501610 Soft Condensed Matter +cond-mat/0501613 Soft Condensed Matter +cond-mat/0501615 Strongly Correlated Electrons +cond-mat/0501616 Soft Condensed Matter +cond-mat/0501617 Soft Condensed Matter +cond-mat/0501619 Statistical Mechanics +cond-mat/0501620 Strongly Correlated Electrons +cond-mat/0501625 Strongly Correlated Electrons +cond-mat/0501628 Strongly Correlated Electrons +cond-mat/0501634 Mesoscale and Nanoscale Physics +cond-mat/0501636 Other Condensed Matter +cond-mat/0501638 Statistical Mechanics +cond-mat/0501642 Mesoscale and Nanoscale Physics +cond-mat/0501643 Superconductivity +cond-mat/0501644 Statistical Mechanics +cond-mat/0501646 Materials Science +cond-mat/0501647 Strongly Correlated Electrons +cond-mat/0501648 Other Condensed Matter +cond-mat/0501651 Materials Science +cond-mat/0501654 Superconductivity +cond-mat/0501656 Strongly Correlated Electrons +cond-mat/0501659 Superconductivity +cond-mat/0501660 Superconductivity +cond-mat/0501663 Disordered Systems and Neural Networks +cond-mat/0501664 Superconductivity +cond-mat/0501666 Superconductivity +cond-mat/0501667 Materials Science +cond-mat/0501668 Statistical Mechanics +cond-mat/0501670 Statistical Mechanics +cond-mat/0501671 Superconductivity +cond-mat/0501672 Mesoscale and Nanoscale Physics +cond-mat/0501674 Superconductivity +cond-mat/0501675 Materials Science +cond-mat/0501676 Statistical Mechanics +cond-mat/0501677 Mesoscale and Nanoscale Physics +cond-mat/0501679 Superconductivity +cond-mat/0501681 Statistical Mechanics +cond-mat/0501682 Soft Condensed Matter +cond-mat/0501683 Other Condensed Matter +cond-mat/0501685 Strongly Correlated Electrons +cond-mat/0501688 Other Condensed Matter +cond-mat/0501689 Strongly Correlated Electrons +cond-mat/0501693 Strongly Correlated Electrons +cond-mat/0501695 Soft Condensed Matter +cond-mat/0501696 Statistical Mechanics +cond-mat/0501698 Strongly Correlated Electrons +cond-mat/0501702 Superconductivity +cond-mat/0501703 Superconductivity +cond-mat/0501704 Superconductivity +cond-mat/0501707 Statistical Mechanics +cond-mat/0501708 Strongly Correlated Electrons +cond-mat/0501709 Statistical Mechanics +cond-mat/0501710 Materials Science +cond-mat/0501711 Superconductivity +cond-mat/0501712 Strongly Correlated Electrons +cond-mat/0501715 Other Condensed Matter +cond-mat/0501717 Other Condensed Matter +cond-mat/0501718 Other Condensed Matter +cond-mat/0501720 Materials Science +cond-mat/0501725 Mesoscale and Nanoscale Physics +cond-mat/0501726 Mesoscale and Nanoscale Physics +cond-mat/0501727 Materials Science +cond-mat/0501729 Soft Condensed Matter +cond-mat/0501733 Mesoscale and Nanoscale Physics +cond-mat/0501735 Strongly Correlated Electrons +cond-mat/0501736 Superconductivity +cond-mat/0501737 Statistical Mechanics +cond-mat/0501740 Statistical Mechanics +cond-mat/0501742 Strongly Correlated Electrons +cond-mat/0501744 Statistical Mechanics +cond-mat/0501746 Strongly Correlated Electrons +cond-mat/0501750 Disordered Systems and Neural Networks +cond-mat/0501754 Statistical Mechanics +cond-mat/0501755 Strongly Correlated Electrons +cond-mat/0501756 Strongly Correlated Electrons +cond-mat/0501757 Strongly Correlated Electrons +cond-mat/0501759 Materials Science +cond-mat/0501761 Mesoscale and Nanoscale Physics +cond-mat/0502005 Mesoscale and Nanoscale Physics +cond-mat/0502006 Strongly Correlated Electrons +cond-mat/0502007 Mesoscale and Nanoscale Physics +cond-mat/0502011 Disordered Systems and Neural Networks +cond-mat/0502012 Materials Science +cond-mat/0502013 Mesoscale and Nanoscale Physics +cond-mat/0502014 Other Condensed Matter +cond-mat/0502015 Strongly Correlated Electrons +cond-mat/0502017 Statistical Mechanics +cond-mat/0502020 Strongly Correlated Electrons +cond-mat/0502024 Soft Condensed Matter +cond-mat/0502025 Other Condensed Matter +cond-mat/0502027 Strongly Correlated Electrons +cond-mat/0502029 Other Condensed Matter +cond-mat/0502032 Statistical Mechanics +cond-mat/0502033 Statistical Mechanics +cond-mat/0502034 Statistical Mechanics +cond-mat/0502036 Superconductivity +cond-mat/0502037 Other Condensed Matter +cond-mat/0502039 Other Condensed Matter +cond-mat/0502043 Superconductivity +cond-mat/0502044 Strongly Correlated Electrons +cond-mat/0502047 Strongly Correlated Electrons +cond-mat/0502048 Superconductivity +cond-mat/0502049 Mesoscale and Nanoscale Physics +cond-mat/0502050 Mesoscale and Nanoscale Physics +cond-mat/0502051 Disordered Systems and Neural Networks +cond-mat/0502054 Soft Condensed Matter +cond-mat/0502056 Strongly Correlated Electrons +cond-mat/0502058 Statistical Mechanics +cond-mat/0502059 Disordered Systems and Neural Networks +cond-mat/0502060 Mesoscale and Nanoscale Physics +cond-mat/0502061 Other Condensed Matter +cond-mat/0502062 Statistical Mechanics +cond-mat/0502064 Soft Condensed Matter +cond-mat/0502066 Strongly Correlated Electrons +cond-mat/0502067 Strongly Correlated Electrons +cond-mat/0502070 Superconductivity +cond-mat/0502071 Strongly Correlated Electrons +cond-mat/0502072 Materials Science +cond-mat/0502074 Superconductivity +cond-mat/0502075 Superconductivity +cond-mat/0502076 Strongly Correlated Electrons +cond-mat/0502080 Other Condensed Matter +cond-mat/0502081 Materials Science +cond-mat/0502082 Superconductivity +cond-mat/0502084 Statistical Mechanics +cond-mat/0502089 Other Condensed Matter +cond-mat/0502092 Other Condensed Matter +cond-mat/0502096 Other Condensed Matter +cond-mat/0502097 Statistical Mechanics +cond-mat/0502100 Superconductivity +cond-mat/0502101 Materials Science +cond-mat/0502102 Mesoscale and Nanoscale Physics +cond-mat/0502103 Statistical Mechanics +cond-mat/0502104 Other Condensed Matter +cond-mat/0502106 Mesoscale and Nanoscale Physics +cond-mat/0502107 Strongly Correlated Electrons +cond-mat/0502108 Statistical Mechanics +cond-mat/0502109 Other Condensed Matter +cond-mat/0502110 Other Condensed Matter +cond-mat/0502111 Superconductivity +cond-mat/0502113 Statistical Mechanics +cond-mat/0502116 Strongly Correlated Electrons +cond-mat/0502117 Superconductivity +cond-mat/0502118 Statistical Mechanics +cond-mat/0502120 Statistical Mechanics +cond-mat/0502124 Statistical Mechanics +cond-mat/0502125 Superconductivity +cond-mat/0502127 Mesoscale and Nanoscale Physics +cond-mat/0502129 Other Condensed Matter +cond-mat/0502130 Statistical Mechanics +cond-mat/0502134 Disordered Systems and Neural Networks +cond-mat/0502136 Statistical Mechanics +cond-mat/0502138 Statistical Mechanics +cond-mat/0502145 Strongly Correlated Electrons +cond-mat/0502146 Strongly Correlated Electrons +cond-mat/0502151 Statistical Mechanics +cond-mat/0502153 Superconductivity +cond-mat/0502154 Statistical Mechanics +cond-mat/0502155 Statistical Mechanics +cond-mat/0502158 Strongly Correlated Electrons +cond-mat/0502159 Strongly Correlated Electrons +cond-mat/0502160 Strongly Correlated Electrons +cond-mat/0502161 Mesoscale and Nanoscale Physics +cond-mat/0502162 Materials Science +cond-mat/0502165 Strongly Correlated Electrons +cond-mat/0502166 Other Condensed Matter +cond-mat/0502168 Statistical Mechanics +cond-mat/0502171 Mesoscale and Nanoscale Physics +cond-mat/0502173 Statistical Mechanics +cond-mat/0502178 Materials Science +cond-mat/0502181 Mesoscale and Nanoscale Physics +cond-mat/0502183 Statistical Mechanics +cond-mat/0502184 Materials Science +cond-mat/0502185 Soft Condensed Matter +cond-mat/0502188 Strongly Correlated Electrons +cond-mat/0502189 Statistical Mechanics +cond-mat/0502190 Superconductivity +cond-mat/0502191 Mesoscale and Nanoscale Physics +cond-mat/0502193 Superconductivity +cond-mat/0502194 Statistical Mechanics +cond-mat/0502196 Soft Condensed Matter +cond-mat/0502197 Materials Science +cond-mat/0502198 Statistical Mechanics +cond-mat/0502201 Disordered Systems and Neural Networks +cond-mat/0502202 Superconductivity +cond-mat/0502203 Disordered Systems and Neural Networks +cond-mat/0502208 Statistical Mechanics +cond-mat/0502212 Other Condensed Matter +cond-mat/0502216 Soft Condensed Matter +cond-mat/0502217 Statistical Mechanics +cond-mat/0502219 Statistical Mechanics +cond-mat/0502225 Materials Science +cond-mat/0502227 Statistical Mechanics +cond-mat/0502230 Statistical Mechanics +cond-mat/0502231 Mesoscale and Nanoscale Physics +cond-mat/0502233 Strongly Correlated Electrons +cond-mat/0502235 Materials Science +cond-mat/0502237 Mesoscale and Nanoscale Physics +cond-mat/0502238 Strongly Correlated Electrons +cond-mat/0502239 Mesoscale and Nanoscale Physics +cond-mat/0502240 Materials Science +cond-mat/0502241 Disordered Systems and Neural Networks +cond-mat/0502243 Mesoscale and Nanoscale Physics +cond-mat/0502247 Soft Condensed Matter +cond-mat/0502248 Materials Science +cond-mat/0502251 Other Condensed Matter +cond-mat/0502252 Strongly Correlated Electrons +cond-mat/0502253 Statistical Mechanics +cond-mat/0502254 Superconductivity +cond-mat/0502256 Strongly Correlated Electrons +cond-mat/0502257 Strongly Correlated Electrons +cond-mat/0502258 Materials Science +cond-mat/0502259 Soft Condensed Matter +cond-mat/0502266 Mesoscale and Nanoscale Physics +cond-mat/0502267 Materials Science +cond-mat/0502274 Statistical Mechanics +cond-mat/0502277 Statistical Mechanics +cond-mat/0502278 Statistical Mechanics +cond-mat/0502282 Mesoscale and Nanoscale Physics +cond-mat/0502284 Mesoscale and Nanoscale Physics +cond-mat/0502285 Other Condensed Matter +cond-mat/0502288 Mesoscale and Nanoscale Physics +cond-mat/0502290 Mesoscale and Nanoscale Physics +cond-mat/0502291 Materials Science +cond-mat/0502294 Strongly Correlated Electrons +cond-mat/0502297 Strongly Correlated Electrons +cond-mat/0502298 Statistical Mechanics +cond-mat/0502301 Soft Condensed Matter +cond-mat/0502311 Materials Science +cond-mat/0502313 Statistical Mechanics +cond-mat/0502315 Materials Science +cond-mat/0502318 Strongly Correlated Electrons +cond-mat/0502319 Mesoscale and Nanoscale Physics +cond-mat/0502321 Materials Science +cond-mat/0502326 Superconductivity +cond-mat/0502327 Superconductivity +cond-mat/0502331 Statistical Mechanics +cond-mat/0502332 Strongly Correlated Electrons +cond-mat/0502333 Soft Condensed Matter +cond-mat/0502334 Disordered Systems and Neural Networks +cond-mat/0502337 Statistical Mechanics +cond-mat/0502341 Superconductivity +cond-mat/0502344 Strongly Correlated Electrons +cond-mat/0502345 Other Condensed Matter +cond-mat/0502347 Strongly Correlated Electrons +cond-mat/0502348 Soft Condensed Matter +cond-mat/0502350 Strongly Correlated Electrons +cond-mat/0502352 Soft Condensed Matter +cond-mat/0502353 Disordered Systems and Neural Networks +cond-mat/0502354 Statistical Mechanics +cond-mat/0502357 Strongly Correlated Electrons +cond-mat/0502360 Soft Condensed Matter +cond-mat/0502361 Other Condensed Matter +cond-mat/0502365 Strongly Correlated Electrons +cond-mat/0502366 Mesoscale and Nanoscale Physics +cond-mat/0502367 Strongly Correlated Electrons +cond-mat/0502368 Materials Science +cond-mat/0502371 Soft Condensed Matter +cond-mat/0502375 Strongly Correlated Electrons +cond-mat/0502378 Other Condensed Matter +cond-mat/0502379 Mesoscale and Nanoscale Physics +cond-mat/0502380 Mesoscale and Nanoscale Physics +cond-mat/0502381 Materials Science +cond-mat/0502382 Disordered Systems and Neural Networks +cond-mat/0502383 Statistical Mechanics +cond-mat/0502384 Strongly Correlated Electrons +cond-mat/0502386 Materials Science +cond-mat/0502387 Strongly Correlated Electrons +cond-mat/0502388 Other Condensed Matter +cond-mat/0502391 Other Condensed Matter +cond-mat/0502393 Strongly Correlated Electrons +cond-mat/0502394 Statistical Mechanics +cond-mat/0502395 Statistical Mechanics +cond-mat/0502397 Soft Condensed Matter +cond-mat/0502399 Statistical Mechanics +cond-mat/0502402 Superconductivity +cond-mat/0502404 Materials Science +cond-mat/0502405 Soft Condensed Matter +cond-mat/0502408 Statistical Mechanics +cond-mat/0502409 Materials Science +cond-mat/0502411 Other Condensed Matter +cond-mat/0502413 Mesoscale and Nanoscale Physics +cond-mat/0502415 Strongly Correlated Electrons +cond-mat/0502416 Soft Condensed Matter +cond-mat/0502418 Soft Condensed Matter +cond-mat/0502424 Mesoscale and Nanoscale Physics +cond-mat/0502426 Mesoscale and Nanoscale Physics +cond-mat/0502427 Materials Science +cond-mat/0502429 Mesoscale and Nanoscale Physics +cond-mat/0502430 Superconductivity +cond-mat/0502431 Strongly Correlated Electrons +cond-mat/0502432 Materials Science +cond-mat/0502435 Superconductivity +cond-mat/0502437 Strongly Correlated Electrons +cond-mat/0502438 Statistical Mechanics +cond-mat/0502439 Mesoscale and Nanoscale Physics +cond-mat/0502440 Mesoscale and Nanoscale Physics +cond-mat/0502441 Statistical Mechanics +cond-mat/0502442 Other Condensed Matter +cond-mat/0502445 Other Condensed Matter +cond-mat/0502446 Mesoscale and Nanoscale Physics +cond-mat/0502448 Disordered Systems and Neural Networks +cond-mat/0502449 Superconductivity +cond-mat/0502450 Mesoscale and Nanoscale Physics +cond-mat/0502451 Strongly Correlated Electrons +cond-mat/0502452 Strongly Correlated Electrons +cond-mat/0502454 Soft Condensed Matter +cond-mat/0502459 Statistical Mechanics +cond-mat/0502463 Soft Condensed Matter +cond-mat/0502466 Materials Science +cond-mat/0502467 Strongly Correlated Electrons +cond-mat/0502468 Disordered Systems and Neural Networks +cond-mat/0502469 Mesoscale and Nanoscale Physics +cond-mat/0502472 Strongly Correlated Electrons +cond-mat/0502474 Soft Condensed Matter +cond-mat/0502477 Superconductivity +cond-mat/0502478 Mesoscale and Nanoscale Physics +cond-mat/0502479 Materials Science +cond-mat/0502480 Superconductivity +cond-mat/0502481 Mesoscale and Nanoscale Physics +cond-mat/0502482 Other Condensed Matter +cond-mat/0502483 Mesoscale and Nanoscale Physics +cond-mat/0502485 Statistical Mechanics +cond-mat/0502486 Other Condensed Matter +cond-mat/0502490 Superconductivity +cond-mat/0502494 Statistical Mechanics +cond-mat/0502496 Other Condensed Matter +cond-mat/0502497 Statistical Mechanics +cond-mat/0502498 Statistical Mechanics +cond-mat/0502499 Statistical Mechanics +cond-mat/0502500 Strongly Correlated Electrons +cond-mat/0502505 Statistical Mechanics +cond-mat/0502506 Materials Science +cond-mat/0502509 Statistical Mechanics +cond-mat/0502512 Strongly Correlated Electrons +cond-mat/0502513 Other Condensed Matter +cond-mat/0502517 Other Condensed Matter +cond-mat/0502518 Mesoscale and Nanoscale Physics +cond-mat/0502522 Superconductivity +cond-mat/0502524 Strongly Correlated Electrons +cond-mat/0502525 Superconductivity +cond-mat/0502526 Statistical Mechanics +cond-mat/0502530 Disordered Systems and Neural Networks +cond-mat/0502531 Soft Condensed Matter +cond-mat/0502532 Strongly Correlated Electrons +cond-mat/0502536 Strongly Correlated Electrons +cond-mat/0502537 Superconductivity +cond-mat/0502538 Mesoscale and Nanoscale Physics +cond-mat/0502539 Other Condensed Matter +cond-mat/0502540 Materials Science +cond-mat/0502541 Disordered Systems and Neural Networks +cond-mat/0502542 Strongly Correlated Electrons +cond-mat/0502545 Soft Condensed Matter +cond-mat/0502548 Strongly Correlated Electrons +cond-mat/0502552 Disordered Systems and Neural Networks +cond-mat/0502553 Strongly Correlated Electrons +cond-mat/0502554 Other Condensed Matter +cond-mat/0502556 Statistical Mechanics +cond-mat/0502558 Materials Science +cond-mat/0502560 Strongly Correlated Electrons +cond-mat/0502562 Strongly Correlated Electrons +cond-mat/0502567 Strongly Correlated Electrons +cond-mat/0502568 Strongly Correlated Electrons +cond-mat/0502571 Superconductivity +cond-mat/0502572 Mesoscale and Nanoscale Physics +cond-mat/0502573 Soft Condensed Matter +cond-mat/0502574 Disordered Systems and Neural Networks +cond-mat/0502576 Superconductivity +cond-mat/0502578 Materials Science +cond-mat/0502579 Mesoscale and Nanoscale Physics +cond-mat/0502584 Materials Science +cond-mat/0502585 Other Condensed Matter +cond-mat/0502587 Strongly Correlated Electrons +cond-mat/0502590 Materials Science +cond-mat/0502591 Other Condensed Matter +cond-mat/0502593 Mesoscale and Nanoscale Physics +cond-mat/0502594 Materials Science +cond-mat/0502595 Other Condensed Matter +cond-mat/0502597 Materials Science +cond-mat/0502598 Disordered Systems and Neural Networks +cond-mat/0502603 Superconductivity +cond-mat/0502604 Superconductivity +cond-mat/0502607 Statistical Mechanics +cond-mat/0502608 Superconductivity +cond-mat/0502609 Disordered Systems and Neural Networks +cond-mat/0502611 Disordered Systems and Neural Networks +cond-mat/0502615 Materials Science +cond-mat/0502616 Strongly Correlated Electrons +cond-mat/0502617 Soft Condensed Matter +cond-mat/0502619 Materials Science +cond-mat/0502623 Statistical Mechanics +cond-mat/0502625 Other Condensed Matter +cond-mat/0502626 Superconductivity +cond-mat/0502628 Strongly Correlated Electrons +cond-mat/0502630 Soft Condensed Matter +cond-mat/0502631 Strongly Correlated Electrons +cond-mat/0502640 Strongly Correlated Electrons +cond-mat/0502641 Mesoscale and Nanoscale Physics +cond-mat/0502642 Materials Science +cond-mat/0502647 Soft Condensed Matter +cond-mat/0502651 Other Condensed Matter +cond-mat/0502652 Strongly Correlated Electrons +cond-mat/0502653 Mesoscale and Nanoscale Physics +cond-mat/0502656 Superconductivity +cond-mat/0502659 Superconductivity +cond-mat/0502660 Statistical Mechanics +cond-mat/0502661 Statistical Mechanics +cond-mat/0502662 Disordered Systems and Neural Networks +cond-mat/0502664 Other Condensed Matter +cond-mat/0502665 Statistical Mechanics +cond-mat/0502666 Superconductivity +cond-mat/0502667 Statistical Mechanics +cond-mat/0502669 Strongly Correlated Electrons +cond-mat/0502670 Other Condensed Matter +cond-mat/0502671 Soft Condensed Matter +cond-mat/0502673 Statistical Mechanics +cond-mat/0502674 Superconductivity +cond-mat/0503004 Materials Science +cond-mat/0503006 Materials Science +cond-mat/0503007 Statistical Mechanics +cond-mat/0503009 Strongly Correlated Electrons +cond-mat/0503011 Strongly Correlated Electrons +cond-mat/0503012 Disordered Systems and Neural Networks +cond-mat/0503013 Materials Science +cond-mat/0503015 Materials Science +cond-mat/0503016 Mesoscale and Nanoscale Physics +cond-mat/0503017 Strongly Correlated Electrons +cond-mat/0503018 Materials Science +cond-mat/0503019 Other Condensed Matter +cond-mat/0503022 Superconductivity +cond-mat/0503026 Mesoscale and Nanoscale Physics +cond-mat/0503033 Statistical Mechanics +cond-mat/0503036 Mesoscale and Nanoscale Physics +cond-mat/0503037 Mesoscale and Nanoscale Physics +cond-mat/0503038 Other Condensed Matter +cond-mat/0503039 Superconductivity +cond-mat/0503045 Other Condensed Matter +cond-mat/0503048 Materials Science +cond-mat/0503049 Statistical Mechanics +cond-mat/0503050 Strongly Correlated Electrons +cond-mat/0503053 Soft Condensed Matter +cond-mat/0503055 Disordered Systems and Neural Networks +cond-mat/0503056 Strongly Correlated Electrons +cond-mat/0503059 Superconductivity +cond-mat/0503061 Superconductivity +cond-mat/0503063 Materials Science +cond-mat/0503064 Strongly Correlated Electrons +cond-mat/0503069 Disordered Systems and Neural Networks +cond-mat/0503071 Materials Science +cond-mat/0503073 Superconductivity +cond-mat/0503075 Strongly Correlated Electrons +cond-mat/0503077 Materials Science +cond-mat/0503078 Disordered Systems and Neural Networks +cond-mat/0503079 Soft Condensed Matter +cond-mat/0503080 Strongly Correlated Electrons +cond-mat/0503082 Soft Condensed Matter +cond-mat/0503085 Mesoscale and Nanoscale Physics +cond-mat/0503086 Soft Condensed Matter +cond-mat/0503088 Mesoscale and Nanoscale Physics +cond-mat/0503089 Statistical Mechanics +cond-mat/0503090 Mesoscale and Nanoscale Physics +cond-mat/0503095 Other Condensed Matter +cond-mat/0503096 Soft Condensed Matter +cond-mat/0503097 Other Condensed Matter +cond-mat/0503100 Materials Science +cond-mat/0503101 Superconductivity +cond-mat/0503108 Disordered Systems and Neural Networks +cond-mat/0503110 Other Condensed Matter +cond-mat/0503115 Strongly Correlated Electrons +cond-mat/0503116 Strongly Correlated Electrons +cond-mat/0503117 Superconductivity +cond-mat/0503120 Statistical Mechanics +cond-mat/0503122 Superconductivity +cond-mat/0503125 Mesoscale and Nanoscale Physics +cond-mat/0503127 Strongly Correlated Electrons +cond-mat/0503128 Strongly Correlated Electrons +cond-mat/0503131 Strongly Correlated Electrons +cond-mat/0503132 Disordered Systems and Neural Networks +cond-mat/0503133 Disordered Systems and Neural Networks +cond-mat/0503135 Strongly Correlated Electrons +cond-mat/0503137 Materials Science +cond-mat/0503138 Statistical Mechanics +cond-mat/0503139 Soft Condensed Matter +cond-mat/0503140 Disordered Systems and Neural Networks +cond-mat/0503141 Other Condensed Matter +cond-mat/0503142 Strongly Correlated Electrons +cond-mat/0503143 Strongly Correlated Electrons +cond-mat/0503144 Superconductivity +cond-mat/0503148 Materials Science +cond-mat/0503155 Disordered Systems and Neural Networks +cond-mat/0503156 Other Condensed Matter +cond-mat/0503157 Materials Science +cond-mat/0503160 Other Condensed Matter +cond-mat/0503161 Superconductivity +cond-mat/0503162 Materials Science +cond-mat/0503164 Superconductivity +cond-mat/0503165 Materials Science +cond-mat/0503171 Statistical Mechanics +cond-mat/0503174 Other Condensed Matter +cond-mat/0503177 Strongly Correlated Electrons +cond-mat/0503180 Soft Condensed Matter +cond-mat/0503183 Superconductivity +cond-mat/0503186 Materials Science +cond-mat/0503188 Other Condensed Matter +cond-mat/0503189 Mesoscale and Nanoscale Physics +cond-mat/0503192 Statistical Mechanics +cond-mat/0503193 Mesoscale and Nanoscale Physics +cond-mat/0503196 Materials Science +cond-mat/0503197 Materials Science +cond-mat/0503198 Statistical Mechanics +cond-mat/0503199 Soft Condensed Matter +cond-mat/0503201 Statistical Mechanics +cond-mat/0503202 Superconductivity +cond-mat/0503203 Materials Science +cond-mat/0503205 Disordered Systems and Neural Networks +cond-mat/0503206 Other Condensed Matter +cond-mat/0503207 Other Condensed Matter +cond-mat/0503209 Strongly Correlated Electrons +cond-mat/0503210 Superconductivity +cond-mat/0503211 Disordered Systems and Neural Networks +cond-mat/0503213 Statistical Mechanics +cond-mat/0503217 Superconductivity +cond-mat/0503218 Mesoscale and Nanoscale Physics +cond-mat/0503219 Superconductivity +cond-mat/0503220 Other Condensed Matter +cond-mat/0503221 Mesoscale and Nanoscale Physics +cond-mat/0503224 Statistical Mechanics +cond-mat/0503225 Strongly Correlated Electrons +cond-mat/0503228 Strongly Correlated Electrons +cond-mat/0503229 Strongly Correlated Electrons +cond-mat/0503230 Materials Science +cond-mat/0503234 Disordered Systems and Neural Networks +cond-mat/0503235 Statistical Mechanics +cond-mat/0503236 Superconductivity +cond-mat/0503237 Mesoscale and Nanoscale Physics +cond-mat/0503239 Superconductivity +cond-mat/0503241 Strongly Correlated Electrons +cond-mat/0503242 Statistical Mechanics +cond-mat/0503243 Strongly Correlated Electrons +cond-mat/0503246 Strongly Correlated Electrons +cond-mat/0503247 Mesoscale and Nanoscale Physics +cond-mat/0503249 Strongly Correlated Electrons +cond-mat/0503250 Superconductivity +cond-mat/0503251 Statistical Mechanics +cond-mat/0503252 Disordered Systems and Neural Networks +cond-mat/0503253 Strongly Correlated Electrons +cond-mat/0503255 Mesoscale and Nanoscale Physics +cond-mat/0503256 Other Condensed Matter +cond-mat/0503259 Other Condensed Matter +cond-mat/0503260 Other Condensed Matter +cond-mat/0503261 Strongly Correlated Electrons +cond-mat/0503265 Superconductivity +cond-mat/0503266 Mesoscale and Nanoscale Physics +cond-mat/0503271 Mesoscale and Nanoscale Physics +cond-mat/0503272 Other Condensed Matter +cond-mat/0503273 Statistical Mechanics +cond-mat/0503275 Soft Condensed Matter +cond-mat/0503276 Soft Condensed Matter +cond-mat/0503277 Materials Science +cond-mat/0503279 Soft Condensed Matter +cond-mat/0503281 Materials Science +cond-mat/0503282 Other Condensed Matter +cond-mat/0503287 Statistical Mechanics +cond-mat/0503288 Soft Condensed Matter +cond-mat/0503289 Superconductivity +cond-mat/0503297 Statistical Mechanics +cond-mat/0503299 Soft Condensed Matter +cond-mat/0503301 Soft Condensed Matter +cond-mat/0503304 Soft Condensed Matter +cond-mat/0503305 Soft Condensed Matter +cond-mat/0503306 Mesoscale and Nanoscale Physics +cond-mat/0503309 Mesoscale and Nanoscale Physics +cond-mat/0503311 Strongly Correlated Electrons +cond-mat/0503312 Materials Science +cond-mat/0503313 Statistical Mechanics +cond-mat/0503314 Mesoscale and Nanoscale Physics +cond-mat/0503318 Superconductivity +cond-mat/0503321 Superconductivity +cond-mat/0503324 Statistical Mechanics +cond-mat/0503326 Strongly Correlated Electrons +cond-mat/0503327 Strongly Correlated Electrons +cond-mat/0503333 Mesoscale and Nanoscale Physics +cond-mat/0503335 Statistical Mechanics +cond-mat/0503338 Superconductivity +cond-mat/0503339 Statistical Mechanics +cond-mat/0503340 Strongly Correlated Electrons +cond-mat/0503348 Materials Science +cond-mat/0503349 Other Condensed Matter +cond-mat/0503351 Soft Condensed Matter +cond-mat/0503352 Materials Science +cond-mat/0503354 Strongly Correlated Electrons +cond-mat/0503361 Statistical Mechanics +cond-mat/0503362 Materials Science +cond-mat/0503366 Strongly Correlated Electrons +cond-mat/0503367 Other Condensed Matter +cond-mat/0503368 Superconductivity +cond-mat/0503370 Mesoscale and Nanoscale Physics +cond-mat/0503371 Mesoscale and Nanoscale Physics +cond-mat/0503372 Materials Science +cond-mat/0503374 Statistical Mechanics +cond-mat/0503376 Materials Science +cond-mat/0503377 Strongly Correlated Electrons +cond-mat/0503378 Other Condensed Matter +cond-mat/0503379 Mesoscale and Nanoscale Physics +cond-mat/0503381 Materials Science +cond-mat/0503384 Mesoscale and Nanoscale Physics +cond-mat/0503389 Strongly Correlated Electrons +cond-mat/0503390 Materials Science +cond-mat/0503391 Superconductivity +cond-mat/0503395 Mesoscale and Nanoscale Physics +cond-mat/0503396 Mesoscale and Nanoscale Physics +cond-mat/0503398 Mesoscale and Nanoscale Physics +cond-mat/0503399 Strongly Correlated Electrons +cond-mat/0503400 Superconductivity +cond-mat/0503403 Mesoscale and Nanoscale Physics +cond-mat/0503404 Superconductivity +cond-mat/0503405 Strongly Correlated Electrons +cond-mat/0503408 Statistical Mechanics +cond-mat/0503409 Strongly Correlated Electrons +cond-mat/0503412 Mesoscale and Nanoscale Physics +cond-mat/0503416 Statistical Mechanics +cond-mat/0503418 Statistical Mechanics +cond-mat/0503422 Disordered Systems and Neural Networks +cond-mat/0503424 Soft Condensed Matter +cond-mat/0503429 Strongly Correlated Electrons +cond-mat/0503430 Materials Science +cond-mat/0503434 Strongly Correlated Electrons +cond-mat/0503437 Disordered Systems and Neural Networks +cond-mat/0503440 Soft Condensed Matter +cond-mat/0503441 Statistical Mechanics +cond-mat/0503443 Statistical Mechanics +cond-mat/0503444 Materials Science +cond-mat/0503446 Other Condensed Matter +cond-mat/0503447 Materials Science +cond-mat/0503448 Statistical Mechanics +cond-mat/0503450 Strongly Correlated Electrons +cond-mat/0503452 Other Condensed Matter +cond-mat/0503457 Soft Condensed Matter +cond-mat/0503458 Strongly Correlated Electrons +cond-mat/0503459 Superconductivity +cond-mat/0503462 Statistical Mechanics +cond-mat/0503463 Materials Science +cond-mat/0503465 Strongly Correlated Electrons +cond-mat/0503466 Strongly Correlated Electrons +cond-mat/0503467 Strongly Correlated Electrons +cond-mat/0503468 Soft Condensed Matter +cond-mat/0503469 Materials Science +cond-mat/0503470 Materials Science +cond-mat/0503472 Materials Science +cond-mat/0503474 Materials Science +cond-mat/0503477 Other Condensed Matter +cond-mat/0503478 Mesoscale and Nanoscale Physics +cond-mat/0503479 Materials Science +cond-mat/0503480 Statistical Mechanics +cond-mat/0503481 Mesoscale and Nanoscale Physics +cond-mat/0503482 Soft Condensed Matter +cond-mat/0503483 Materials Science +cond-mat/0503486 Disordered Systems and Neural Networks +cond-mat/0503487 Statistical Mechanics +cond-mat/0503488 Soft Condensed Matter +cond-mat/0503489 Soft Condensed Matter +cond-mat/0503491 Statistical Mechanics +cond-mat/0503492 Materials Science +cond-mat/0503493 Superconductivity +cond-mat/0503495 Materials Science +cond-mat/0503499 Strongly Correlated Electrons +cond-mat/0503500 Mesoscale and Nanoscale Physics +cond-mat/0503501 Materials Science +cond-mat/0503503 Strongly Correlated Electrons +cond-mat/0503504 Materials Science +cond-mat/0503507 Statistical Mechanics +cond-mat/0503508 Statistical Mechanics +cond-mat/0503509 Other Condensed Matter +cond-mat/0503513 Mesoscale and Nanoscale Physics +cond-mat/0503514 Mesoscale and Nanoscale Physics +cond-mat/0503516 Other Condensed Matter +cond-mat/0503517 Mesoscale and Nanoscale Physics +cond-mat/0503519 Other Condensed Matter +cond-mat/0503520 Statistical Mechanics +cond-mat/0503522 Materials Science +cond-mat/0503524 Materials Science +cond-mat/0503526 Statistical Mechanics +cond-mat/0503527 Statistical Mechanics +cond-mat/0503534 Superconductivity +cond-mat/0503535 Other Condensed Matter +cond-mat/0503536 Soft Condensed Matter +cond-mat/0503541 Mesoscale and Nanoscale Physics +cond-mat/0503543 Soft Condensed Matter +cond-mat/0503547 Superconductivity +cond-mat/0503548 Disordered Systems and Neural Networks +cond-mat/0503552 Mesoscale and Nanoscale Physics +cond-mat/0503554 Strongly Correlated Electrons +cond-mat/0503556 Other Condensed Matter +cond-mat/0503557 Materials Science +cond-mat/0503558 Strongly Correlated Electrons +cond-mat/0503560 Other Condensed Matter +cond-mat/0503561 Statistical Mechanics +cond-mat/0503565 Other Condensed Matter +cond-mat/0503566 Statistical Mechanics +cond-mat/0503572 Materials Science +cond-mat/0503574 Other Condensed Matter +cond-mat/0503575 Strongly Correlated Electrons +cond-mat/0503577 Soft Condensed Matter +cond-mat/0503578 Statistical Mechanics +cond-mat/0503583 Materials Science +cond-mat/0503584 Statistical Mechanics +cond-mat/0503586 Statistical Mechanics +cond-mat/0503588 Mesoscale and Nanoscale Physics +cond-mat/0503589 Other Condensed Matter +cond-mat/0503590 Other Condensed Matter +cond-mat/0503593 Disordered Systems and Neural Networks +cond-mat/0503594 Materials Science +cond-mat/0503595 Materials Science +cond-mat/0503597 Superconductivity +cond-mat/0503604 Statistical Mechanics +cond-mat/0503605 Mesoscale and Nanoscale Physics +cond-mat/0503608 Mesoscale and Nanoscale Physics +cond-mat/0503609 Materials Science +cond-mat/0503610 Statistical Mechanics +cond-mat/0503611 Materials Science +cond-mat/0503613 Materials Science +cond-mat/0503614 Superconductivity +cond-mat/0503619 Other Condensed Matter +cond-mat/0503621 Soft Condensed Matter +cond-mat/0503623 Soft Condensed Matter +cond-mat/0503626 Statistical Mechanics +cond-mat/0503635 Strongly Correlated Electrons +cond-mat/0503638 Materials Science +cond-mat/0503639 Soft Condensed Matter +cond-mat/0503640 Mesoscale and Nanoscale Physics +cond-mat/0503645 Materials Science +cond-mat/0503647 Disordered Systems and Neural Networks +cond-mat/0503648 Materials Science +cond-mat/0503649 Strongly Correlated Electrons +cond-mat/0503651 Strongly Correlated Electrons +cond-mat/0503652 Mesoscale and Nanoscale Physics +cond-mat/0503657 Other Condensed Matter +cond-mat/0503658 Strongly Correlated Electrons +cond-mat/0503661 Superconductivity +cond-mat/0503664 Superconductivity +cond-mat/0503665 Strongly Correlated Electrons +cond-mat/0503666 Superconductivity +cond-mat/0503667 Strongly Correlated Electrons +cond-mat/0503672 Materials Science +cond-mat/0503675 Strongly Correlated Electrons +cond-mat/0503677 Disordered Systems and Neural Networks +cond-mat/0503678 Mesoscale and Nanoscale Physics +cond-mat/0503679 Mesoscale and Nanoscale Physics +cond-mat/0503680 Other Condensed Matter +cond-mat/0503682 Soft Condensed Matter +cond-mat/0503683 Mesoscale and Nanoscale Physics +cond-mat/0503684 Statistical Mechanics +cond-mat/0503688 Mesoscale and Nanoscale Physics +cond-mat/0503689 Statistical Mechanics +cond-mat/0503692 Soft Condensed Matter +cond-mat/0503693 Strongly Correlated Electrons +cond-mat/0503696 Strongly Correlated Electrons +cond-mat/0503697 Statistical Mechanics +cond-mat/0503700 Other Condensed Matter +cond-mat/0503701 Materials Science +cond-mat/0503703 Statistical Mechanics +cond-mat/0503705 Superconductivity +cond-mat/0503706 Other Condensed Matter +cond-mat/0503708 Strongly Correlated Electrons +cond-mat/0503709 Materials Science +cond-mat/0503712 Materials Science +cond-mat/0503713 Materials Science +cond-mat/0503714 Mesoscale and Nanoscale Physics +cond-mat/0503716 Mesoscale and Nanoscale Physics +cond-mat/0503718 Strongly Correlated Electrons +cond-mat/0503719 Materials Science +cond-mat/0503721 Strongly Correlated Electrons +cond-mat/0503722 Materials Science +cond-mat/0503725 Materials Science +cond-mat/0503726 Strongly Correlated Electrons +cond-mat/0503728 Statistical Mechanics +cond-mat/0503729 Superconductivity +cond-mat/0503730 Superconductivity +cond-mat/0503733 Statistical Mechanics +cond-mat/0503735 Disordered Systems and Neural Networks +cond-mat/0503736 Other Condensed Matter +cond-mat/0503738 Strongly Correlated Electrons +cond-mat/0503739 Statistical Mechanics +cond-mat/0503740 Disordered Systems and Neural Networks +cond-mat/0503743 Disordered Systems and Neural Networks +cond-mat/0503745 Mesoscale and Nanoscale Physics +cond-mat/0503747 Other Condensed Matter +cond-mat/0503748 Statistical Mechanics +cond-mat/0503754 Mesoscale and Nanoscale Physics +cond-mat/0503755 Superconductivity +cond-mat/0503758 Superconductivity +cond-mat/0503761 Superconductivity +cond-mat/0503762 Disordered Systems and Neural Networks +cond-mat/0503768 Superconductivity +cond-mat/0503769 Mesoscale and Nanoscale Physics +cond-mat/0504003 Strongly Correlated Electrons +cond-mat/0504004 Mesoscale and Nanoscale Physics +cond-mat/0504005 Materials Science +cond-mat/0504006 Superconductivity +cond-mat/0504007 Materials Science +cond-mat/0504008 Statistical Mechanics +cond-mat/0504012 Mesoscale and Nanoscale Physics +cond-mat/0504013 Superconductivity +cond-mat/0504014 Strongly Correlated Electrons +cond-mat/0504015 Mesoscale and Nanoscale Physics +cond-mat/0504017 Strongly Correlated Electrons +cond-mat/0504023 Strongly Correlated Electrons +cond-mat/0504026 Statistical Mechanics +cond-mat/0504029 Superconductivity +cond-mat/0504030 Materials Science +cond-mat/0504032 Statistical Mechanics +cond-mat/0504036 Statistical Mechanics +cond-mat/0504037 Materials Science +cond-mat/0504038 Materials Science +cond-mat/0504041 Strongly Correlated Electrons +cond-mat/0504043 Strongly Correlated Electrons +cond-mat/0504045 Mesoscale and Nanoscale Physics +cond-mat/0504046 Mesoscale and Nanoscale Physics +cond-mat/0504048 Materials Science +cond-mat/0504050 Mesoscale and Nanoscale Physics +cond-mat/0504051 Other Condensed Matter +cond-mat/0504052 Strongly Correlated Electrons +cond-mat/0504053 Superconductivity +cond-mat/0504054 Mesoscale and Nanoscale Physics +cond-mat/0504057 Disordered Systems and Neural Networks +cond-mat/0504058 Strongly Correlated Electrons +cond-mat/0504060 Materials Science +cond-mat/0504061 Superconductivity +cond-mat/0504062 Statistical Mechanics +cond-mat/0504065 Materials Science +cond-mat/0504069 Superconductivity +cond-mat/0504071 Superconductivity +cond-mat/0504072 Other Condensed Matter +cond-mat/0504075 Strongly Correlated Electrons +cond-mat/0504076 Superconductivity +cond-mat/0504078 Strongly Correlated Electrons +cond-mat/0504079 Statistical Mechanics +cond-mat/0504080 Soft Condensed Matter +cond-mat/0504081 Other Condensed Matter +cond-mat/0504084 Materials Science +cond-mat/0504086 Mesoscale and Nanoscale Physics +cond-mat/0504087 Mesoscale and Nanoscale Physics +cond-mat/0504093 Statistical Mechanics +cond-mat/0504096 Other Condensed Matter +cond-mat/0504099 Mesoscale and Nanoscale Physics +cond-mat/0504102 Statistical Mechanics +cond-mat/0504105 Mesoscale and Nanoscale Physics +cond-mat/0504107 Statistical Mechanics +cond-mat/0504108 Soft Condensed Matter +cond-mat/0504109 Materials Science +cond-mat/0504112 Mesoscale and Nanoscale Physics +cond-mat/0504114 Other Condensed Matter +cond-mat/0504116 Superconductivity +cond-mat/0504117 Statistical Mechanics +cond-mat/0504118 Mesoscale and Nanoscale Physics +cond-mat/0504120 Mesoscale and Nanoscale Physics +cond-mat/0504123 Superconductivity +cond-mat/0504124 Soft Condensed Matter +cond-mat/0504126 Materials Science +cond-mat/0504127 Superconductivity +cond-mat/0504128 Strongly Correlated Electrons +cond-mat/0504130 Mesoscale and Nanoscale Physics +cond-mat/0504131 Statistical Mechanics +cond-mat/0504133 Materials Science +cond-mat/0504136 Statistical Mechanics +cond-mat/0504137 Mesoscale and Nanoscale Physics +cond-mat/0504140 Superconductivity +cond-mat/0504141 Strongly Correlated Electrons +cond-mat/0504142 Mesoscale and Nanoscale Physics +cond-mat/0504144 Strongly Correlated Electrons +cond-mat/0504147 Mesoscale and Nanoscale Physics +cond-mat/0504148 Mesoscale and Nanoscale Physics +cond-mat/0504151 Other Condensed Matter +cond-mat/0504152 Materials Science +cond-mat/0504153 Superconductivity +cond-mat/0504154 Superconductivity +cond-mat/0504156 Superconductivity +cond-mat/0504157 Materials Science +cond-mat/0504166 Statistical Mechanics +cond-mat/0504167 Materials Science +cond-mat/0504168 Materials Science +cond-mat/0504169 Strongly Correlated Electrons +cond-mat/0504170 Strongly Correlated Electrons +cond-mat/0504172 Materials Science +cond-mat/0504173 Statistical Mechanics +cond-mat/0504178 Other Condensed Matter +cond-mat/0504183 Mesoscale and Nanoscale Physics +cond-mat/0504184 Other Condensed Matter +cond-mat/0504190 Superconductivity +cond-mat/0504192 Statistical Mechanics +cond-mat/0504193 Strongly Correlated Electrons +cond-mat/0504195 Strongly Correlated Electrons +cond-mat/0504201 Mesoscale and Nanoscale Physics +cond-mat/0504202 Statistical Mechanics +cond-mat/0504203 Soft Condensed Matter +cond-mat/0504204 Strongly Correlated Electrons +cond-mat/0504205 Superconductivity +cond-mat/0504206 Mesoscale and Nanoscale Physics +cond-mat/0504209 Other Condensed Matter +cond-mat/0504211 Materials Science +cond-mat/0504214 Mesoscale and Nanoscale Physics +cond-mat/0504215 Soft Condensed Matter +cond-mat/0504216 Mesoscale and Nanoscale Physics +cond-mat/0504217 Other Condensed Matter +cond-mat/0504218 Mesoscale and Nanoscale Physics +cond-mat/0504220 Materials Science +cond-mat/0504223 Statistical Mechanics +cond-mat/0504224 Other Condensed Matter +cond-mat/0504225 Materials Science +cond-mat/0504226 Other Condensed Matter +cond-mat/0504229 Superconductivity +cond-mat/0504230 Statistical Mechanics +cond-mat/0504231 Mesoscale and Nanoscale Physics +cond-mat/0504232 Materials Science +cond-mat/0504233 Superconductivity +cond-mat/0504235 Mesoscale and Nanoscale Physics +cond-mat/0504237 Superconductivity +cond-mat/0504239 Strongly Correlated Electrons +cond-mat/0504240 Superconductivity +cond-mat/0504242 Other Condensed Matter +cond-mat/0504244 Strongly Correlated Electrons +cond-mat/0504246 Superconductivity +cond-mat/0504247 Soft Condensed Matter +cond-mat/0504249 Mesoscale and Nanoscale Physics +cond-mat/0504251 Mesoscale and Nanoscale Physics +cond-mat/0504252 Strongly Correlated Electrons +cond-mat/0504254 Statistical Mechanics +cond-mat/0504255 Statistical Mechanics +cond-mat/0504258 Materials Science +cond-mat/0504259 Statistical Mechanics +cond-mat/0504260 Disordered Systems and Neural Networks +cond-mat/0504261 Statistical Mechanics +cond-mat/0504263 Strongly Correlated Electrons +cond-mat/0504265 Statistical Mechanics +cond-mat/0504267 Other Condensed Matter +cond-mat/0504268 Statistical Mechanics +cond-mat/0504272 Materials Science +cond-mat/0504274 Mesoscale and Nanoscale Physics +cond-mat/0504276 Mesoscale and Nanoscale Physics +cond-mat/0504277 Superconductivity +cond-mat/0504280 Strongly Correlated Electrons +cond-mat/0504282 Strongly Correlated Electrons +cond-mat/0504284 Superconductivity +cond-mat/0504285 Strongly Correlated Electrons +cond-mat/0504289 Strongly Correlated Electrons +cond-mat/0504291 Materials Science +cond-mat/0504293 Superconductivity +cond-mat/0504294 Statistical Mechanics +cond-mat/0504295 Statistical Mechanics +cond-mat/0504297 Mesoscale and Nanoscale Physics +cond-mat/0504303 Strongly Correlated Electrons +cond-mat/0504309 Mesoscale and Nanoscale Physics +cond-mat/0504310 Mesoscale and Nanoscale Physics +cond-mat/0504313 Disordered Systems and Neural Networks +cond-mat/0504315 Mesoscale and Nanoscale Physics +cond-mat/0504316 Materials Science +cond-mat/0504318 Statistical Mechanics +cond-mat/0504319 Superconductivity +cond-mat/0504321 Mesoscale and Nanoscale Physics +cond-mat/0504328 Soft Condensed Matter +cond-mat/0504330 Materials Science +cond-mat/0504331 Superconductivity +cond-mat/0504332 Strongly Correlated Electrons +cond-mat/0504334 Materials Science +cond-mat/0504336 Other Condensed Matter +cond-mat/0504337 Materials Science +cond-mat/0504338 Statistical Mechanics +cond-mat/0504341 Mesoscale and Nanoscale Physics +cond-mat/0504342 Superconductivity +cond-mat/0504343 Superconductivity +cond-mat/0504348 Materials Science +cond-mat/0504349 Materials Science +cond-mat/0504350 Superconductivity +cond-mat/0504351 Strongly Correlated Electrons +cond-mat/0504352 Materials Science +cond-mat/0504358 Statistical Mechanics +cond-mat/0504363 Disordered Systems and Neural Networks +cond-mat/0504364 Superconductivity +cond-mat/0504366 Disordered Systems and Neural Networks +cond-mat/0504367 Statistical Mechanics +cond-mat/0504368 Materials Science +cond-mat/0504370 Statistical Mechanics +cond-mat/0504378 Strongly Correlated Electrons +cond-mat/0504379 Strongly Correlated Electrons +cond-mat/0504380 Strongly Correlated Electrons +cond-mat/0504385 Statistical Mechanics +cond-mat/0504388 Materials Science +cond-mat/0504390 Other Condensed Matter +cond-mat/0504391 Other Condensed Matter +cond-mat/0504392 Soft Condensed Matter +cond-mat/0504393 Soft Condensed Matter +cond-mat/0504395 Statistical Mechanics +cond-mat/0504397 Statistical Mechanics +cond-mat/0504398 Other Condensed Matter +cond-mat/0504399 Materials Science +cond-mat/0504400 Materials Science +cond-mat/0504402 Materials Science +cond-mat/0504405 Statistical Mechanics +cond-mat/0504406 Soft Condensed Matter +cond-mat/0504407 Soft Condensed Matter +cond-mat/0504408 Statistical Mechanics +cond-mat/0504409 Mesoscale and Nanoscale Physics +cond-mat/0504416 Mesoscale and Nanoscale Physics +cond-mat/0504417 Statistical Mechanics +cond-mat/0504418 Materials Science +cond-mat/0504419 Superconductivity +cond-mat/0504420 Strongly Correlated Electrons +cond-mat/0504421 Materials Science +cond-mat/0504422 Strongly Correlated Electrons +cond-mat/0504425 Mesoscale and Nanoscale Physics +cond-mat/0504427 Other Condensed Matter +cond-mat/0504428 Materials Science +cond-mat/0504430 Strongly Correlated Electrons +cond-mat/0504433 Superconductivity +cond-mat/0504436 Strongly Correlated Electrons +cond-mat/0504437 Soft Condensed Matter +cond-mat/0504438 Materials Science +cond-mat/0504441 Materials Science +cond-mat/0504442 Superconductivity +cond-mat/0504443 Materials Science +cond-mat/0504444 Mesoscale and Nanoscale Physics +cond-mat/0504447 Soft Condensed Matter +cond-mat/0504448 Disordered Systems and Neural Networks +cond-mat/0504450 Mesoscale and Nanoscale Physics +cond-mat/0504451 Mesoscale and Nanoscale Physics +cond-mat/0504456 Other Condensed Matter +cond-mat/0504458 Strongly Correlated Electrons +cond-mat/0504459 Statistical Mechanics +cond-mat/0504461 Strongly Correlated Electrons +cond-mat/0504463 Superconductivity +cond-mat/0504465 Statistical Mechanics +cond-mat/0504466 Strongly Correlated Electrons +cond-mat/0504467 Superconductivity +cond-mat/0504470 Strongly Correlated Electrons +cond-mat/0504472 Strongly Correlated Electrons +cond-mat/0504474 Other Condensed Matter +cond-mat/0504475 Strongly Correlated Electrons +cond-mat/0504477 Disordered Systems and Neural Networks +cond-mat/0504478 Soft Condensed Matter +cond-mat/0504480 Superconductivity +cond-mat/0504481 Strongly Correlated Electrons +cond-mat/0504483 Disordered Systems and Neural Networks +cond-mat/0504486 Other Condensed Matter +cond-mat/0504489 Materials Science +cond-mat/0504493 Other Condensed Matter +cond-mat/0504494 Materials Science +cond-mat/0504496 Materials Science +cond-mat/0504500 Strongly Correlated Electrons +cond-mat/0504503 Statistical Mechanics +cond-mat/0504504 Materials Science +cond-mat/0504505 Materials Science +cond-mat/0504508 Soft Condensed Matter +cond-mat/0504509 Disordered Systems and Neural Networks +cond-mat/0504510 Mesoscale and Nanoscale Physics +cond-mat/0504516 Statistical Mechanics +cond-mat/0504517 Mesoscale and Nanoscale Physics +cond-mat/0504518 Materials Science +cond-mat/0504522 Statistical Mechanics +cond-mat/0504525 Disordered Systems and Neural Networks +cond-mat/0504526 Statistical Mechanics +cond-mat/0504528 Mesoscale and Nanoscale Physics +cond-mat/0504529 Superconductivity +cond-mat/0504533 Strongly Correlated Electrons +cond-mat/0504536 Materials Science +cond-mat/0504539 Statistical Mechanics +cond-mat/0504540 Strongly Correlated Electrons +cond-mat/0504542 Materials Science +cond-mat/0504543 Superconductivity +cond-mat/0504544 Superconductivity +cond-mat/0504545 Materials Science +cond-mat/0504552 Strongly Correlated Electrons +cond-mat/0504553 Materials Science +cond-mat/0504555 Mesoscale and Nanoscale Physics +cond-mat/0504557 Disordered Systems and Neural Networks +cond-mat/0504558 Statistical Mechanics +cond-mat/0504560 Strongly Correlated Electrons +cond-mat/0504562 Superconductivity +cond-mat/0504567 Superconductivity +cond-mat/0504568 Statistical Mechanics +cond-mat/0504576 Strongly Correlated Electrons +cond-mat/0504577 Mesoscale and Nanoscale Physics +cond-mat/0504578 Mesoscale and Nanoscale Physics +cond-mat/0504580 Other Condensed Matter +cond-mat/0504583 Mesoscale and Nanoscale Physics +cond-mat/0504587 Materials Science +cond-mat/0504589 Disordered Systems and Neural Networks +cond-mat/0504591 Materials Science +cond-mat/0504592 Disordered Systems and Neural Networks +cond-mat/0504594 Mesoscale and Nanoscale Physics +cond-mat/0504595 Strongly Correlated Electrons +cond-mat/0504596 Strongly Correlated Electrons +cond-mat/0504601 Mesoscale and Nanoscale Physics +cond-mat/0504602 Strongly Correlated Electrons +cond-mat/0504603 Other Condensed Matter +cond-mat/0504604 Mesoscale and Nanoscale Physics +cond-mat/0504605 Statistical Mechanics +cond-mat/0504607 Materials Science +cond-mat/0504609 Superconductivity +cond-mat/0504611 Mesoscale and Nanoscale Physics +cond-mat/0504613 Soft Condensed Matter +cond-mat/0504615 Disordered Systems and Neural Networks +cond-mat/0504618 Superconductivity +cond-mat/0504619 Strongly Correlated Electrons +cond-mat/0504625 Strongly Correlated Electrons +cond-mat/0504626 Superconductivity +cond-mat/0504628 Materials Science +cond-mat/0504629 Other Condensed Matter +cond-mat/0504630 Statistical Mechanics +cond-mat/0504631 Materials Science +cond-mat/0504634 Materials Science +cond-mat/0504638 Materials Science +cond-mat/0504639 Superconductivity +cond-mat/0504640 Strongly Correlated Electrons +cond-mat/0504641 Mesoscale and Nanoscale Physics +cond-mat/0504642 Superconductivity +cond-mat/0504644 Materials Science +cond-mat/0504645 Superconductivity +cond-mat/0504646 Mesoscale and Nanoscale Physics +cond-mat/0504648 Mesoscale and Nanoscale Physics +cond-mat/0504653 Mesoscale and Nanoscale Physics +cond-mat/0504654 Soft Condensed Matter +cond-mat/0504655 Strongly Correlated Electrons +cond-mat/0504656 Disordered Systems and Neural Networks +cond-mat/0504657 Strongly Correlated Electrons +cond-mat/0504659 Materials Science +cond-mat/0504661 Mesoscale and Nanoscale Physics +cond-mat/0504662 Strongly Correlated Electrons +cond-mat/0504664 Superconductivity +cond-mat/0504665 Superconductivity +cond-mat/0504667 Materials Science +cond-mat/0504674 Strongly Correlated Electrons +cond-mat/0504676 Statistical Mechanics +cond-mat/0504678 Soft Condensed Matter +cond-mat/0504681 Statistical Mechanics +cond-mat/0504682 Superconductivity +cond-mat/0504684 Strongly Correlated Electrons +cond-mat/0504685 Materials Science +cond-mat/0504686 Other Condensed Matter +cond-mat/0504690 Disordered Systems and Neural Networks +cond-mat/0504692 Strongly Correlated Electrons +cond-mat/0504693 Superconductivity +cond-mat/0504694 Materials Science +cond-mat/0504695 Statistical Mechanics +cond-mat/0504696 Materials Science +cond-mat/0504697 Soft Condensed Matter +cond-mat/0504699 Soft Condensed Matter +cond-mat/0504704 Soft Condensed Matter +cond-mat/0504707 Superconductivity +cond-mat/0504711 Statistical Mechanics +cond-mat/0504712 Strongly Correlated Electrons +cond-mat/0504716 Statistical Mechanics +cond-mat/0504717 Strongly Correlated Electrons +cond-mat/0504719 Other Condensed Matter +cond-mat/0504720 Mesoscale and Nanoscale Physics +cond-mat/0504721 Disordered Systems and Neural Networks +cond-mat/0504722 Disordered Systems and Neural Networks +cond-mat/0504724 Statistical Mechanics +cond-mat/0504725 Other Condensed Matter +cond-mat/0504727 Superconductivity +cond-mat/0504729 Statistical Mechanics +cond-mat/0504730 Statistical Mechanics +cond-mat/0504732 Strongly Correlated Electrons +cond-mat/0504734 Statistical Mechanics +cond-mat/0504737 Statistical Mechanics +cond-mat/0504740 Statistical Mechanics +cond-mat/0504742 Other Condensed Matter +cond-mat/0504743 Mesoscale and Nanoscale Physics +cond-mat/0504744 Soft Condensed Matter +cond-mat/0504745 Superconductivity +cond-mat/0504747 Materials Science +cond-mat/0504749 Statistical Mechanics +cond-mat/0504750 Disordered Systems and Neural Networks +cond-mat/0504752 Superconductivity +cond-mat/0504753 Strongly Correlated Electrons +cond-mat/0504755 Materials Science +cond-mat/0504756 Mesoscale and Nanoscale Physics +cond-mat/0504762 Other Condensed Matter +cond-mat/0504765 Materials Science +cond-mat/0504769 Strongly Correlated Electrons +cond-mat/0504770 Statistical Mechanics +cond-mat/0504772 Materials Science +cond-mat/0504784 Statistical Mechanics +cond-mat/0504785 Other Condensed Matter +cond-mat/0504786 Mesoscale and Nanoscale Physics +cond-mat/0504789 Materials Science +cond-mat/0504792 Other Condensed Matter +cond-mat/0504793 Superconductivity +cond-mat/0505001 Soft Condensed Matter +cond-mat/0505003 Soft Condensed Matter +cond-mat/0505006 Materials Science +cond-mat/0505008 Superconductivity +cond-mat/0505010 Materials Science +cond-mat/0505011 Statistical Mechanics +cond-mat/0505012 Mesoscale and Nanoscale Physics +cond-mat/0505014 Superconductivity +cond-mat/0505015 Materials Science +cond-mat/0505016 Materials Science +cond-mat/0505018 Materials Science +cond-mat/0505022 Mesoscale and Nanoscale Physics +cond-mat/0505026 Strongly Correlated Electrons +cond-mat/0505028 Strongly Correlated Electrons +cond-mat/0505029 Other Condensed Matter +cond-mat/0505032 Disordered Systems and Neural Networks +cond-mat/0505035 Disordered Systems and Neural Networks +cond-mat/0505039 Other Condensed Matter +cond-mat/0505041 Mesoscale and Nanoscale Physics +cond-mat/0505042 Soft Condensed Matter +cond-mat/0505045 Soft Condensed Matter +cond-mat/0505046 Materials Science +cond-mat/0505047 Statistical Mechanics +cond-mat/0505048 Disordered Systems and Neural Networks +cond-mat/0505053 Mesoscale and Nanoscale Physics +cond-mat/0505056 Superconductivity +cond-mat/0505057 Superconductivity +cond-mat/0505060 Materials Science +cond-mat/0505061 Disordered Systems and Neural Networks +cond-mat/0505062 Materials Science +cond-mat/0505063 Materials Science +cond-mat/0505064 Other Condensed Matter +cond-mat/0505068 Other Condensed Matter +cond-mat/0505076 Disordered Systems and Neural Networks +cond-mat/0505078 Other Condensed Matter +cond-mat/0505082 Mesoscale and Nanoscale Physics +cond-mat/0505083 Superconductivity +cond-mat/0505086 Statistical Mechanics +cond-mat/0505087 Superconductivity +cond-mat/0505090 Materials Science +cond-mat/0505091 Soft Condensed Matter +cond-mat/0505093 Materials Science +cond-mat/0505095 Strongly Correlated Electrons +cond-mat/0505097 Soft Condensed Matter +cond-mat/0505101 Mesoscale and Nanoscale Physics +cond-mat/0505103 Mesoscale and Nanoscale Physics +cond-mat/0505105 Strongly Correlated Electrons +cond-mat/0505110 Materials Science +cond-mat/0505111 Mesoscale and Nanoscale Physics +cond-mat/0505115 Soft Condensed Matter +cond-mat/0505116 Disordered Systems and Neural Networks +cond-mat/0505117 Materials Science +cond-mat/0505120 Superconductivity +cond-mat/0505121 Strongly Correlated Electrons +cond-mat/0505122 Strongly Correlated Electrons +cond-mat/0505127 Other Condensed Matter +cond-mat/0505128 Strongly Correlated Electrons +cond-mat/0505129 Statistical Mechanics +cond-mat/0505130 Strongly Correlated Electrons +cond-mat/0505131 Mesoscale and Nanoscale Physics +cond-mat/0505135 Mesoscale and Nanoscale Physics +cond-mat/0505137 Materials Science +cond-mat/0505138 Disordered Systems and Neural Networks +cond-mat/0505142 Materials Science +cond-mat/0505143 Mesoscale and Nanoscale Physics +cond-mat/0505146 Materials Science +cond-mat/0505147 Materials Science +cond-mat/0505148 Strongly Correlated Electrons +cond-mat/0505152 Superconductivity +cond-mat/0505153 Mesoscale and Nanoscale Physics +cond-mat/0505154 Mesoscale and Nanoscale Physics +cond-mat/0505157 Statistical Mechanics +cond-mat/0505158 Statistical Mechanics +cond-mat/0505161 Statistical Mechanics +cond-mat/0505163 Disordered Systems and Neural Networks +cond-mat/0505164 Superconductivity +cond-mat/0505167 Superconductivity +cond-mat/0505173 Soft Condensed Matter +cond-mat/0505174 Soft Condensed Matter +cond-mat/0505181 Other Condensed Matter +cond-mat/0505182 Mesoscale and Nanoscale Physics +cond-mat/0505183 Mesoscale and Nanoscale Physics +cond-mat/0505184 Strongly Correlated Electrons +cond-mat/0505187 Materials Science +cond-mat/0505188 Mesoscale and Nanoscale Physics +cond-mat/0505190 Strongly Correlated Electrons +cond-mat/0505193 Statistical Mechanics +cond-mat/0505195 Mesoscale and Nanoscale Physics +cond-mat/0505196 Strongly Correlated Electrons +cond-mat/0505197 Statistical Mechanics +cond-mat/0505198 Materials Science +cond-mat/0505201 Disordered Systems and Neural Networks +cond-mat/0505202 Statistical Mechanics +cond-mat/0505203 Statistical Mechanics +cond-mat/0505204 Statistical Mechanics +cond-mat/0505205 Soft Condensed Matter +cond-mat/0505212 Statistical Mechanics +cond-mat/0505213 Superconductivity +cond-mat/0505215 Materials Science +cond-mat/0505219 Statistical Mechanics +cond-mat/0505220 Other Condensed Matter +cond-mat/0505222 Soft Condensed Matter +cond-mat/0505225 Mesoscale and Nanoscale Physics +cond-mat/0505226 Materials Science +cond-mat/0505227 Statistical Mechanics +cond-mat/0505228 Superconductivity +cond-mat/0505229 Materials Science +cond-mat/0505233 Disordered Systems and Neural Networks +cond-mat/0505237 Soft Condensed Matter +cond-mat/0505241 Strongly Correlated Electrons +cond-mat/0505243 Materials Science +cond-mat/0505248 Statistical Mechanics +cond-mat/0505249 Soft Condensed Matter +cond-mat/0505252 Materials Science +cond-mat/0505253 Strongly Correlated Electrons +cond-mat/0505258 Strongly Correlated Electrons +cond-mat/0505259 Statistical Mechanics +cond-mat/0505260 Mesoscale and Nanoscale Physics +cond-mat/0505262 Strongly Correlated Electrons +cond-mat/0505263 Materials Science +cond-mat/0505264 Mesoscale and Nanoscale Physics +cond-mat/0505266 Strongly Correlated Electrons +cond-mat/0505267 Strongly Correlated Electrons +cond-mat/0505268 Materials Science +cond-mat/0505269 Materials Science +cond-mat/0505271 Superconductivity +cond-mat/0505272 Disordered Systems and Neural Networks +cond-mat/0505274 Statistical Mechanics +cond-mat/0505275 Superconductivity +cond-mat/0505276 Soft Condensed Matter +cond-mat/0505279 Statistical Mechanics +cond-mat/0505284 Statistical Mechanics +cond-mat/0505285 Strongly Correlated Electrons +cond-mat/0505286 Other Condensed Matter +cond-mat/0505287 Disordered Systems and Neural Networks +cond-mat/0505288 Other Condensed Matter +cond-mat/0505291 Mesoscale and Nanoscale Physics +cond-mat/0505292 Statistical Mechanics +cond-mat/0505294 Soft Condensed Matter +cond-mat/0505295 Mesoscale and Nanoscale Physics +cond-mat/0505296 Superconductivity +cond-mat/0505297 Other Condensed Matter +cond-mat/0505302 Superconductivity +cond-mat/0505308 Mesoscale and Nanoscale Physics +cond-mat/0505315 Statistical Mechanics +cond-mat/0505317 Strongly Correlated Electrons +cond-mat/0505318 Statistical Mechanics +cond-mat/0505321 Mesoscale and Nanoscale Physics +cond-mat/0505322 Materials Science +cond-mat/0505323 Other Condensed Matter +cond-mat/0505324 Other Condensed Matter +cond-mat/0505325 Other Condensed Matter +cond-mat/0505327 Statistical Mechanics +cond-mat/0505328 Mesoscale and Nanoscale Physics +cond-mat/0505329 Disordered Systems and Neural Networks +cond-mat/0505330 Materials Science +cond-mat/0505332 Statistical Mechanics +cond-mat/0505333 Superconductivity +cond-mat/0505334 Superconductivity +cond-mat/0505335 Materials Science +cond-mat/0505336 Strongly Correlated Electrons +cond-mat/0505338 Other Condensed Matter +cond-mat/0505339 Superconductivity +cond-mat/0505340 Statistical Mechanics +cond-mat/0505342 Materials Science +cond-mat/0505345 Mesoscale and Nanoscale Physics +cond-mat/0505346 Statistical Mechanics +cond-mat/0505347 Statistical Mechanics +cond-mat/0505349 Disordered Systems and Neural Networks +cond-mat/0505351 Strongly Correlated Electrons +cond-mat/0505356 Materials Science +cond-mat/0505357 Soft Condensed Matter +cond-mat/0505359 Mesoscale and Nanoscale Physics +cond-mat/0505361 Strongly Correlated Electrons +cond-mat/0505365 Materials Science +cond-mat/0505370 Materials Science +cond-mat/0505371 Statistical Mechanics +cond-mat/0505375 Mesoscale and Nanoscale Physics +cond-mat/0505376 Mesoscale and Nanoscale Physics +cond-mat/0505377 Materials Science +cond-mat/0505379 Other Condensed Matter +cond-mat/0505388 Statistical Mechanics +cond-mat/0505389 Mesoscale and Nanoscale Physics +cond-mat/0505391 Materials Science +cond-mat/0505393 Strongly Correlated Electrons +cond-mat/0505394 Mesoscale and Nanoscale Physics +cond-mat/0505395 Statistical Mechanics +cond-mat/0505403 Superconductivity +cond-mat/0505405 Soft Condensed Matter +cond-mat/0505407 Materials Science +cond-mat/0505410 Strongly Correlated Electrons +cond-mat/0505411 Strongly Correlated Electrons +cond-mat/0505412 Other Condensed Matter +cond-mat/0505416 Other Condensed Matter +cond-mat/0505418 Strongly Correlated Electrons +cond-mat/0505419 Disordered Systems and Neural Networks +cond-mat/0505421 Other Condensed Matter +cond-mat/0505422 Strongly Correlated Electrons +cond-mat/0505423 Strongly Correlated Electrons +cond-mat/0505424 Mesoscale and Nanoscale Physics +cond-mat/0505425 Strongly Correlated Electrons +cond-mat/0505427 Strongly Correlated Electrons +cond-mat/0505429 Soft Condensed Matter +cond-mat/0505430 Soft Condensed Matter +cond-mat/0505432 Materials Science +cond-mat/0505434 Soft Condensed Matter +cond-mat/0505436 Mesoscale and Nanoscale Physics +cond-mat/0505437 Mesoscale and Nanoscale Physics +cond-mat/0505438 Other Condensed Matter +cond-mat/0505441 Superconductivity +cond-mat/0505442 Strongly Correlated Electrons +cond-mat/0505443 Materials Science +cond-mat/0505444 Strongly Correlated Electrons +cond-mat/0505445 Mesoscale and Nanoscale Physics +cond-mat/0505449 Mesoscale and Nanoscale Physics +cond-mat/0505451 Materials Science +cond-mat/0505456 Soft Condensed Matter +cond-mat/0505458 Strongly Correlated Electrons +cond-mat/0505461 Superconductivity +cond-mat/0505463 Strongly Correlated Electrons +cond-mat/0505467 Strongly Correlated Electrons +cond-mat/0505468 Superconductivity +cond-mat/0505469 Disordered Systems and Neural Networks +cond-mat/0505471 Strongly Correlated Electrons +cond-mat/0505472 Superconductivity +cond-mat/0505474 Mesoscale and Nanoscale Physics +cond-mat/0505476 Strongly Correlated Electrons +cond-mat/0505479 Mesoscale and Nanoscale Physics +cond-mat/0505481 Disordered Systems and Neural Networks +cond-mat/0505484 Other Condensed Matter +cond-mat/0505485 Materials Science +cond-mat/0505488 Materials Science +cond-mat/0505490 Soft Condensed Matter +cond-mat/0505493 Superconductivity +cond-mat/0505495 Other Condensed Matter +cond-mat/0505496 Soft Condensed Matter +cond-mat/0505498 Superconductivity +cond-mat/0505499 Strongly Correlated Electrons +cond-mat/0505500 Materials Science +cond-mat/0505501 Mesoscale and Nanoscale Physics +cond-mat/0505502 Disordered Systems and Neural Networks +cond-mat/0505504 Soft Condensed Matter +cond-mat/0505505 Materials Science +cond-mat/0505510 Mesoscale and Nanoscale Physics +cond-mat/0505511 Mesoscale and Nanoscale Physics +cond-mat/0505512 Soft Condensed Matter +cond-mat/0505515 Superconductivity +cond-mat/0505522 Disordered Systems and Neural Networks +cond-mat/0505527 Other Condensed Matter +cond-mat/0505530 Mesoscale and Nanoscale Physics +cond-mat/0505531 Materials Science +cond-mat/0505532 Statistical Mechanics +cond-mat/0505536 Materials Science +cond-mat/0505538 Other Condensed Matter +cond-mat/0505539 Other Condensed Matter +cond-mat/0505540 Soft Condensed Matter +cond-mat/0505543 Disordered Systems and Neural Networks +cond-mat/0505546 Other Condensed Matter +cond-mat/0505547 Strongly Correlated Electrons +cond-mat/0505549 Superconductivity +cond-mat/0505551 Superconductivity +cond-mat/0505555 Mesoscale and Nanoscale Physics +cond-mat/0505556 Materials Science +cond-mat/0505557 Mesoscale and Nanoscale Physics +cond-mat/0505558 Disordered Systems and Neural Networks +cond-mat/0505560 Disordered Systems and Neural Networks +cond-mat/0505562 Strongly Correlated Electrons +cond-mat/0505564 Soft Condensed Matter +cond-mat/0505567 Other Condensed Matter +cond-mat/0505570 Strongly Correlated Electrons +cond-mat/0505573 Strongly Correlated Electrons +cond-mat/0505577 Superconductivity +cond-mat/0505580 Statistical Mechanics +cond-mat/0505582 Other Condensed Matter +cond-mat/0505583 Superconductivity +cond-mat/0505586 Strongly Correlated Electrons +cond-mat/0505591 Materials Science +cond-mat/0505593 Materials Science +cond-mat/0505594 Strongly Correlated Electrons +cond-mat/0505595 Disordered Systems and Neural Networks +cond-mat/0505596 Soft Condensed Matter +cond-mat/0505597 Mesoscale and Nanoscale Physics +cond-mat/0505599 Statistical Mechanics +cond-mat/0505600 Other Condensed Matter +cond-mat/0505601 Strongly Correlated Electrons +cond-mat/0505603 Strongly Correlated Electrons +cond-mat/0505604 Mesoscale and Nanoscale Physics +cond-mat/0505605 Statistical Mechanics +cond-mat/0505607 Other Condensed Matter +cond-mat/0505609 Materials Science +cond-mat/0505614 Other Condensed Matter +cond-mat/0505616 Mesoscale and Nanoscale Physics +cond-mat/0505617 Strongly Correlated Electrons +cond-mat/0505618 Strongly Correlated Electrons +cond-mat/0505624 Strongly Correlated Electrons +cond-mat/0505625 Statistical Mechanics +cond-mat/0505626 Soft Condensed Matter +cond-mat/0505627 Strongly Correlated Electrons +cond-mat/0505628 Mesoscale and Nanoscale Physics +cond-mat/0505630 Soft Condensed Matter +cond-mat/0505631 Soft Condensed Matter +cond-mat/0505644 Statistical Mechanics +cond-mat/0505645 Superconductivity +cond-mat/0505647 Mesoscale and Nanoscale Physics +cond-mat/0505648 Materials Science +cond-mat/0505649 Materials Science +cond-mat/0505657 Statistical Mechanics +cond-mat/0505658 Mesoscale and Nanoscale Physics +cond-mat/0505661 Strongly Correlated Electrons +cond-mat/0505662 Soft Condensed Matter +cond-mat/0505664 Strongly Correlated Electrons +cond-mat/0505666 Strongly Correlated Electrons +cond-mat/0505670 Strongly Correlated Electrons +cond-mat/0505675 Materials Science +cond-mat/0505677 Mesoscale and Nanoscale Physics +cond-mat/0505678 Soft Condensed Matter +cond-mat/0505679 Disordered Systems and Neural Networks +cond-mat/0505681 Statistical Mechanics +cond-mat/0505684 Other Condensed Matter +cond-mat/0505685 Strongly Correlated Electrons +cond-mat/0505686 Other Condensed Matter +cond-mat/0505691 Superconductivity +cond-mat/0505693 Materials Science +cond-mat/0505694 Superconductivity +cond-mat/0505696 Superconductivity +cond-mat/0505700 Strongly Correlated Electrons +cond-mat/0505701 Materials Science +cond-mat/0505702 Materials Science +cond-mat/0505707 Superconductivity +cond-mat/0505710 Strongly Correlated Electrons +cond-mat/0505712 Superconductivity +cond-mat/0505713 Strongly Correlated Electrons +cond-mat/0505716 Mesoscale and Nanoscale Physics +cond-mat/0505720 Statistical Mechanics +cond-mat/0505723 Statistical Mechanics +cond-mat/0505724 Statistical Mechanics +cond-mat/0505726 Superconductivity +cond-mat/0505730 Other Condensed Matter +cond-mat/0505733 Other Condensed Matter +cond-mat/0505735 Strongly Correlated Electrons +cond-mat/0505736 Superconductivity +cond-mat/0505737 Strongly Correlated Electrons +cond-mat/0505739 Statistical Mechanics +cond-mat/0505740 Other Condensed Matter +cond-mat/0505743 Statistical Mechanics +cond-mat/0505744 Disordered Systems and Neural Networks +cond-mat/0505746 Mesoscale and Nanoscale Physics +cond-mat/0505747 Strongly Correlated Electrons +cond-mat/0505748 Statistical Mechanics +cond-mat/0505750 Mesoscale and Nanoscale Physics +cond-mat/0505751 Strongly Correlated Electrons +cond-mat/0505756 Superconductivity +cond-mat/0505758 Statistical Mechanics +cond-mat/0505759 Mesoscale and Nanoscale Physics +cond-mat/0505761 Mesoscale and Nanoscale Physics +cond-mat/0505762 Other Condensed Matter +cond-mat/0505763 Other Condensed Matter +cond-mat/0505764 Superconductivity +cond-mat/0505765 Strongly Correlated Electrons +cond-mat/0505767 Mesoscale and Nanoscale Physics +cond-mat/0505770 Soft Condensed Matter +cond-mat/0505771 Disordered Systems and Neural Networks +cond-mat/0505772 Superconductivity +cond-mat/0506002 Statistical Mechanics +cond-mat/0506004 Other Condensed Matter +cond-mat/0506006 Materials Science +cond-mat/0506010 Mesoscale and Nanoscale Physics +cond-mat/0506013 Soft Condensed Matter +cond-mat/0506014 Statistical Mechanics +cond-mat/0506015 Superconductivity +cond-mat/0506016 Statistical Mechanics +cond-mat/0506018 Superconductivity +cond-mat/0506020 Other Condensed Matter +cond-mat/0506026 Statistical Mechanics +cond-mat/0506029 Statistical Mechanics +cond-mat/0506030 Superconductivity +cond-mat/0506031 Strongly Correlated Electrons +cond-mat/0506033 Statistical Mechanics +cond-mat/0506034 Other Condensed Matter +cond-mat/0506037 Statistical Mechanics +cond-mat/0506040 Other Condensed Matter +cond-mat/0506043 Statistical Mechanics +cond-mat/0506047 Superconductivity +cond-mat/0506048 Materials Science +cond-mat/0506049 Strongly Correlated Electrons +cond-mat/0506050 Mesoscale and Nanoscale Physics +cond-mat/0506051 Mesoscale and Nanoscale Physics +cond-mat/0506056 Strongly Correlated Electrons +cond-mat/0506061 Strongly Correlated Electrons +cond-mat/0506063 Statistical Mechanics +cond-mat/0506064 Other Condensed Matter +cond-mat/0506065 Materials Science +cond-mat/0506066 Statistical Mechanics +cond-mat/0506068 Statistical Mechanics +cond-mat/0506069 Soft Condensed Matter +cond-mat/0506070 Strongly Correlated Electrons +cond-mat/0506071 Superconductivity +cond-mat/0506072 Materials Science +cond-mat/0506073 Materials Science +cond-mat/0506074 Statistical Mechanics +cond-mat/0506075 Mesoscale and Nanoscale Physics +cond-mat/0506076 Other Condensed Matter +cond-mat/0506077 Statistical Mechanics +cond-mat/0506083 Strongly Correlated Electrons +cond-mat/0506084 Soft Condensed Matter +cond-mat/0506087 Materials Science +cond-mat/0506093 Materials Science +cond-mat/0506094 Superconductivity +cond-mat/0506095 Mesoscale and Nanoscale Physics +cond-mat/0506096 Superconductivity +cond-mat/0506099 Other Condensed Matter +cond-mat/0506100 Soft Condensed Matter +cond-mat/0506101 Other Condensed Matter +cond-mat/0506102 Other Condensed Matter +cond-mat/0506103 Other Condensed Matter +cond-mat/0506114 Superconductivity +cond-mat/0506118 Other Condensed Matter +cond-mat/0506119 Other Condensed Matter +cond-mat/0506120 Superconductivity +cond-mat/0506122 Mesoscale and Nanoscale Physics +cond-mat/0506126 Materials Science +cond-mat/0506127 Statistical Mechanics +cond-mat/0506128 Materials Science +cond-mat/0506129 Materials Science +cond-mat/0506133 Strongly Correlated Electrons +cond-mat/0506134 Statistical Mechanics +cond-mat/0506135 Other Condensed Matter +cond-mat/0506136 Materials Science +cond-mat/0506140 Other Condensed Matter +cond-mat/0506144 Superconductivity +cond-mat/0506145 Mesoscale and Nanoscale Physics +cond-mat/0506146 Strongly Correlated Electrons +cond-mat/0506147 Superconductivity +cond-mat/0506150 Strongly Correlated Electrons +cond-mat/0506151 Strongly Correlated Electrons +cond-mat/0506153 Other Condensed Matter +cond-mat/0506154 Mesoscale and Nanoscale Physics +cond-mat/0506158 Materials Science +cond-mat/0506159 Strongly Correlated Electrons +cond-mat/0506161 Strongly Correlated Electrons +cond-mat/0506163 Strongly Correlated Electrons +cond-mat/0506164 Disordered Systems and Neural Networks +cond-mat/0506165 Mesoscale and Nanoscale Physics +cond-mat/0506172 Strongly Correlated Electrons +cond-mat/0506174 Strongly Correlated Electrons +cond-mat/0506175 Disordered Systems and Neural Networks +cond-mat/0506177 Materials Science +cond-mat/0506178 Soft Condensed Matter +cond-mat/0506179 Disordered Systems and Neural Networks +cond-mat/0506181 Materials Science +cond-mat/0506183 Superconductivity +cond-mat/0506186 Soft Condensed Matter +cond-mat/0506189 Mesoscale and Nanoscale Physics +cond-mat/0506190 Soft Condensed Matter +cond-mat/0506191 Superconductivity +cond-mat/0506192 Materials Science +cond-mat/0506193 Mesoscale and Nanoscale Physics +cond-mat/0506194 Soft Condensed Matter +cond-mat/0506195 Statistical Mechanics +cond-mat/0506196 Statistical Mechanics +cond-mat/0506200 Statistical Mechanics +cond-mat/0506201 Strongly Correlated Electrons +cond-mat/0506202 Strongly Correlated Electrons +cond-mat/0506205 Mesoscale and Nanoscale Physics +cond-mat/0506210 Other Condensed Matter +cond-mat/0506215 Strongly Correlated Electrons +cond-mat/0506216 Superconductivity +cond-mat/0506220 Strongly Correlated Electrons +cond-mat/0506221 Disordered Systems and Neural Networks +cond-mat/0506223 Mesoscale and Nanoscale Physics +cond-mat/0506224 Strongly Correlated Electrons +cond-mat/0506225 Materials Science +cond-mat/0506229 Other Condensed Matter +cond-mat/0506232 Other Condensed Matter +cond-mat/0506234 Superconductivity +cond-mat/0506237 Superconductivity +cond-mat/0506241 Disordered Systems and Neural Networks +cond-mat/0506242 Strongly Correlated Electrons +cond-mat/0506244 Mesoscale and Nanoscale Physics +cond-mat/0506245 Superconductivity +cond-mat/0506246 Superconductivity +cond-mat/0506247 Statistical Mechanics +cond-mat/0506248 Superconductivity +cond-mat/0506250 Materials Science +cond-mat/0506252 Other Condensed Matter +cond-mat/0506256 Statistical Mechanics +cond-mat/0506259 Superconductivity +cond-mat/0506263 Materials Science +cond-mat/0506266 Other Condensed Matter +cond-mat/0506267 Disordered Systems and Neural Networks +cond-mat/0506268 Strongly Correlated Electrons +cond-mat/0506273 Materials Science +cond-mat/0506274 Statistical Mechanics +cond-mat/0506278 Statistical Mechanics +cond-mat/0506279 Statistical Mechanics +cond-mat/0506280 Statistical Mechanics +cond-mat/0506282 Statistical Mechanics +cond-mat/0506283 Soft Condensed Matter +cond-mat/0506284 Soft Condensed Matter +cond-mat/0506285 Soft Condensed Matter +cond-mat/0506288 Mesoscale and Nanoscale Physics +cond-mat/0506289 Statistical Mechanics +cond-mat/0506290 Disordered Systems and Neural Networks +cond-mat/0506292 Mesoscale and Nanoscale Physics +cond-mat/0506293 Statistical Mechanics +cond-mat/0506294 Strongly Correlated Electrons +cond-mat/0506296 Statistical Mechanics +cond-mat/0506297 Statistical Mechanics +cond-mat/0506298 Strongly Correlated Electrons +cond-mat/0506300 Mesoscale and Nanoscale Physics +cond-mat/0506301 Disordered Systems and Neural Networks +cond-mat/0506302 Mesoscale and Nanoscale Physics +cond-mat/0506303 Statistical Mechanics +cond-mat/0506304 Strongly Correlated Electrons +cond-mat/0506305 Materials Science +cond-mat/0506306 Soft Condensed Matter +cond-mat/0506309 Statistical Mechanics +cond-mat/0506311 Disordered Systems and Neural Networks +cond-mat/0506316 Mesoscale and Nanoscale Physics +cond-mat/0506317 Superconductivity +cond-mat/0506318 Other Condensed Matter +cond-mat/0506321 Strongly Correlated Electrons +cond-mat/0506324 Strongly Correlated Electrons +cond-mat/0506325 Disordered Systems and Neural Networks +cond-mat/0506327 Strongly Correlated Electrons +cond-mat/0506328 Strongly Correlated Electrons +cond-mat/0506330 Disordered Systems and Neural Networks +cond-mat/0506334 Strongly Correlated Electrons +cond-mat/0506336 Strongly Correlated Electrons +cond-mat/0506337 Strongly Correlated Electrons +cond-mat/0506349 Soft Condensed Matter +cond-mat/0506350 Soft Condensed Matter +cond-mat/0506351 Materials Science +cond-mat/0506359 Other Condensed Matter +cond-mat/0506361 Strongly Correlated Electrons +cond-mat/0506364 Superconductivity +cond-mat/0506365 Statistical Mechanics +cond-mat/0506367 Soft Condensed Matter +cond-mat/0506372 Superconductivity +cond-mat/0506374 Strongly Correlated Electrons +cond-mat/0506377 Other Condensed Matter +cond-mat/0506378 Other Condensed Matter +cond-mat/0506380 Materials Science +cond-mat/0506382 Strongly Correlated Electrons +cond-mat/0506383 Other Condensed Matter +cond-mat/0506387 Superconductivity +cond-mat/0506388 Materials Science +cond-mat/0506394 Mesoscale and Nanoscale Physics +cond-mat/0506397 Mesoscale and Nanoscale Physics +cond-mat/0506398 Statistical Mechanics +cond-mat/0506400 Strongly Correlated Electrons +cond-mat/0506402 Superconductivity +cond-mat/0506405 Other Condensed Matter +cond-mat/0506406 Statistical Mechanics +cond-mat/0506408 Mesoscale and Nanoscale Physics +cond-mat/0506409 Strongly Correlated Electrons +cond-mat/0506410 Materials Science +cond-mat/0506411 Disordered Systems and Neural Networks +cond-mat/0506415 Other Condensed Matter +cond-mat/0506420 Statistical Mechanics +cond-mat/0506425 Strongly Correlated Electrons +cond-mat/0506427 Materials Science +cond-mat/0506429 Strongly Correlated Electrons +cond-mat/0506430 Strongly Correlated Electrons +cond-mat/0506431 Strongly Correlated Electrons +cond-mat/0506432 Strongly Correlated Electrons +cond-mat/0506433 Statistical Mechanics +cond-mat/0506437 Superconductivity +cond-mat/0506438 Mesoscale and Nanoscale Physics +cond-mat/0506439 Mesoscale and Nanoscale Physics +cond-mat/0506440 Mesoscale and Nanoscale Physics +cond-mat/0506444 Other Condensed Matter +cond-mat/0506445 Soft Condensed Matter +cond-mat/0506446 Mesoscale and Nanoscale Physics +cond-mat/0506448 Strongly Correlated Electrons +cond-mat/0506452 Other Condensed Matter +cond-mat/0506454 Materials Science +cond-mat/0506456 Soft Condensed Matter +cond-mat/0506457 Strongly Correlated Electrons +cond-mat/0506462 Materials Science +cond-mat/0506463 Materials Science +cond-mat/0506464 Other Condensed Matter +cond-mat/0506469 Statistical Mechanics +cond-mat/0506470 Materials Science +cond-mat/0506477 Mesoscale and Nanoscale Physics +cond-mat/0506480 Materials Science +cond-mat/0506481 Materials Science +cond-mat/0506484 Soft Condensed Matter +cond-mat/0506485 Soft Condensed Matter +cond-mat/0506487 Materials Science +cond-mat/0506488 Strongly Correlated Electrons +cond-mat/0506489 Statistical Mechanics +cond-mat/0506491 Statistical Mechanics +cond-mat/0506495 Materials Science +cond-mat/0506498 Mesoscale and Nanoscale Physics +cond-mat/0506503 Superconductivity +cond-mat/0506504 Strongly Correlated Electrons +cond-mat/0506507 Soft Condensed Matter +cond-mat/0506509 Statistical Mechanics +cond-mat/0506511 Strongly Correlated Electrons +cond-mat/0506519 Statistical Mechanics +cond-mat/0506520 Other Condensed Matter +cond-mat/0506524 Superconductivity +cond-mat/0506528 Strongly Correlated Electrons +cond-mat/0506532 Disordered Systems and Neural Networks +cond-mat/0506539 Statistical Mechanics +cond-mat/0506540 Statistical Mechanics +cond-mat/0506543 Other Condensed Matter +cond-mat/0506544 Strongly Correlated Electrons +cond-mat/0506546 Strongly Correlated Electrons +cond-mat/0506548 Superconductivity +cond-mat/0506549 Materials Science +cond-mat/0506555 Statistical Mechanics +cond-mat/0506556 Disordered Systems and Neural Networks +cond-mat/0506557 Materials Science +cond-mat/0506558 Mesoscale and Nanoscale Physics +cond-mat/0506559 Mesoscale and Nanoscale Physics +cond-mat/0506560 Superconductivity +cond-mat/0506562 Superconductivity +cond-mat/0506563 Disordered Systems and Neural Networks +cond-mat/0506564 Materials Science +cond-mat/0506566 Soft Condensed Matter +cond-mat/0506567 Disordered Systems and Neural Networks +cond-mat/0506569 Other Condensed Matter +cond-mat/0506571 Other Condensed Matter +cond-mat/0506572 Other Condensed Matter +cond-mat/0506573 Superconductivity +cond-mat/0506576 Strongly Correlated Electrons +cond-mat/0506580 Other Condensed Matter +cond-mat/0506581 Mesoscale and Nanoscale Physics +cond-mat/0506585 Other Condensed Matter +cond-mat/0506586 Soft Condensed Matter +cond-mat/0506587 Materials Science +cond-mat/0506589 Mesoscale and Nanoscale Physics +cond-mat/0506593 Strongly Correlated Electrons +cond-mat/0506594 Mesoscale and Nanoscale Physics +cond-mat/0506597 Disordered Systems and Neural Networks +cond-mat/0506598 Strongly Correlated Electrons +cond-mat/0506599 Superconductivity +cond-mat/0506601 Mesoscale and Nanoscale Physics +cond-mat/0506602 Statistical Mechanics +cond-mat/0506603 Strongly Correlated Electrons +cond-mat/0506605 Statistical Mechanics +cond-mat/0506607 Superconductivity +cond-mat/0506609 Other Condensed Matter +cond-mat/0506612 Materials Science +cond-mat/0506614 Materials Science +cond-mat/0506617 Mesoscale and Nanoscale Physics +cond-mat/0506619 Other Condensed Matter +cond-mat/0506620 Mesoscale and Nanoscale Physics +cond-mat/0506621 Materials Science +cond-mat/0506622 Other Condensed Matter +cond-mat/0506623 Mesoscale and Nanoscale Physics +cond-mat/0506626 Strongly Correlated Electrons +cond-mat/0506627 Statistical Mechanics +cond-mat/0506629 Statistical Mechanics +cond-mat/0506630 Other Condensed Matter +cond-mat/0506632 Strongly Correlated Electrons +cond-mat/0506635 Statistical Mechanics +cond-mat/0506637 Strongly Correlated Electrons +cond-mat/0506640 Soft Condensed Matter +cond-mat/0506642 Superconductivity +cond-mat/0506644 Disordered Systems and Neural Networks +cond-mat/0506650 Strongly Correlated Electrons +cond-mat/0506652 Disordered Systems and Neural Networks +cond-mat/0506654 Mesoscale and Nanoscale Physics +cond-mat/0506655 Soft Condensed Matter +cond-mat/0506661 Soft Condensed Matter +cond-mat/0506665 Statistical Mechanics +cond-mat/0506670 Other Condensed Matter +cond-mat/0506676 Mesoscale and Nanoscale Physics +cond-mat/0506677 Mesoscale and Nanoscale Physics +cond-mat/0506679 Materials Science +cond-mat/0506680 Statistical Mechanics +cond-mat/0506681 Strongly Correlated Electrons +cond-mat/0506682 Strongly Correlated Electrons +cond-mat/0506683 Materials Science +cond-mat/0506684 Strongly Correlated Electrons +cond-mat/0506696 Other Condensed Matter +cond-mat/0506697 Strongly Correlated Electrons +cond-mat/0506698 Strongly Correlated Electrons +cond-mat/0506699 Statistical Mechanics +cond-mat/0506700 Mesoscale and Nanoscale Physics +cond-mat/0506703 Soft Condensed Matter +cond-mat/0506705 Mesoscale and Nanoscale Physics +cond-mat/0506707 Materials Science +cond-mat/0506709 Strongly Correlated Electrons +cond-mat/0506711 Superconductivity +cond-mat/0506712 Superconductivity +cond-mat/0506713 Statistical Mechanics +cond-mat/0506718 Other Condensed Matter +cond-mat/0506719 Mesoscale and Nanoscale Physics +cond-mat/0506722 Statistical Mechanics +cond-mat/0506724 Mesoscale and Nanoscale Physics +cond-mat/0506725 Disordered Systems and Neural Networks +cond-mat/0506728 Mesoscale and Nanoscale Physics +cond-mat/0506729 Materials Science +cond-mat/0506732 Superconductivity +cond-mat/0506735 Disordered Systems and Neural Networks +cond-mat/0506737 Soft Condensed Matter +cond-mat/0506740 Mesoscale and Nanoscale Physics +cond-mat/0506742 Statistical Mechanics +cond-mat/0506743 Mesoscale and Nanoscale Physics +cond-mat/0506745 Superconductivity +cond-mat/0506746 Statistical Mechanics +cond-mat/0506749 Soft Condensed Matter +cond-mat/0506750 Superconductivity +cond-mat/0506751 Superconductivity +cond-mat/0506753 Mesoscale and Nanoscale Physics +cond-mat/0506755 Materials Science +cond-mat/0506756 Mesoscale and Nanoscale Physics +cond-mat/0506760 Statistical Mechanics +cond-mat/0506762 Materials Science +cond-mat/0506763 Materials Science +cond-mat/0506764 Strongly Correlated Electrons +cond-mat/0506765 Superconductivity +cond-mat/0506767 Disordered Systems and Neural Networks +cond-mat/0506769 Statistical Mechanics +cond-mat/0506770 Strongly Correlated Electrons +cond-mat/0506771 Superconductivity +cond-mat/0506772 Strongly Correlated Electrons +cond-mat/0506773 Strongly Correlated Electrons +cond-mat/0506776 Statistical Mechanics +cond-mat/0506779 Superconductivity +cond-mat/0506783 Superconductivity +cond-mat/0506784 Materials Science +cond-mat/0506787 Soft Condensed Matter +cond-mat/0506788 Strongly Correlated Electrons +cond-mat/0506789 Materials Science +cond-mat/0506792 Superconductivity +cond-mat/0506793 Superconductivity +cond-mat/0506794 Strongly Correlated Electrons +cond-mat/0506795 Disordered Systems and Neural Networks +cond-mat/0506799 Soft Condensed Matter +cond-mat/0506800 Mesoscale and Nanoscale Physics +cond-mat/0506801 Statistical Mechanics +cond-mat/0506803 Soft Condensed Matter +cond-mat/0506804 Strongly Correlated Electrons +cond-mat/0506805 Mesoscale and Nanoscale Physics +cond-mat/0506806 Mesoscale and Nanoscale Physics +cond-mat/0506807 Statistical Mechanics +cond-mat/0506808 Strongly Correlated Electrons +cond-mat/0506811 Statistical Mechanics +cond-mat/0507004 Mesoscale and Nanoscale Physics +cond-mat/0507006 Superconductivity +cond-mat/0507007 Mesoscale and Nanoscale Physics +cond-mat/0507009 Materials Science +cond-mat/0507010 Strongly Correlated Electrons +cond-mat/0507014 Superconductivity +cond-mat/0507015 Superconductivity +cond-mat/0507021 Superconductivity +cond-mat/0507022 Superconductivity +cond-mat/0507024 Soft Condensed Matter +cond-mat/0507027 Statistical Mechanics +cond-mat/0507028 Superconductivity +cond-mat/0507032 Other Condensed Matter +cond-mat/0507038 Mesoscale and Nanoscale Physics +cond-mat/0507039 Disordered Systems and Neural Networks +cond-mat/0507043 Other Condensed Matter +cond-mat/0507045 Strongly Correlated Electrons +cond-mat/0507049 Statistical Mechanics +cond-mat/0507050 Disordered Systems and Neural Networks +cond-mat/0507051 Statistical Mechanics +cond-mat/0507052 Other Condensed Matter +cond-mat/0507055 Statistical Mechanics +cond-mat/0507057 Statistical Mechanics +cond-mat/0507058 Statistical Mechanics +cond-mat/0507061 Strongly Correlated Electrons +cond-mat/0507063 Soft Condensed Matter +cond-mat/0507064 Mesoscale and Nanoscale Physics +cond-mat/0507066 Strongly Correlated Electrons +cond-mat/0507067 Materials Science +cond-mat/0507068 Strongly Correlated Electrons +cond-mat/0507069 Superconductivity +cond-mat/0507074 Mesoscale and Nanoscale Physics +cond-mat/0507075 Statistical Mechanics +cond-mat/0507077 Statistical Mechanics +cond-mat/0507081 Superconductivity +cond-mat/0507082 Mesoscale and Nanoscale Physics +cond-mat/0507084 Mesoscale and Nanoscale Physics +cond-mat/0507088 Soft Condensed Matter +cond-mat/0507089 Materials Science +cond-mat/0507091 Other Condensed Matter +cond-mat/0507092 Other Condensed Matter +cond-mat/0507094 Strongly Correlated Electrons +cond-mat/0507096 Disordered Systems and Neural Networks +cond-mat/0507097 Strongly Correlated Electrons +cond-mat/0507100 Strongly Correlated Electrons +cond-mat/0507102 Statistical Mechanics +cond-mat/0507104 Materials Science +cond-mat/0507106 Superconductivity +cond-mat/0507109 Superconductivity +cond-mat/0507110 Materials Science +cond-mat/0507111 Disordered Systems and Neural Networks +cond-mat/0507112 Statistical Mechanics +cond-mat/0507114 Statistical Mechanics +cond-mat/0507116 Other Condensed Matter +cond-mat/0507119 Materials Science +cond-mat/0507125 Statistical Mechanics +cond-mat/0507126 Mesoscale and Nanoscale Physics +cond-mat/0507128 Statistical Mechanics +cond-mat/0507130 Other Condensed Matter +cond-mat/0507133 Soft Condensed Matter +cond-mat/0507135 Mesoscale and Nanoscale Physics +cond-mat/0507136 Strongly Correlated Electrons +cond-mat/0507137 Materials Science +cond-mat/0507141 Mesoscale and Nanoscale Physics +cond-mat/0507142 Statistical Mechanics +cond-mat/0507143 Mesoscale and Nanoscale Physics +cond-mat/0507146 Strongly Correlated Electrons +cond-mat/0507151 Superconductivity +cond-mat/0507153 Disordered Systems and Neural Networks +cond-mat/0507154 Other Condensed Matter +cond-mat/0507156 Soft Condensed Matter +cond-mat/0507162 Other Condensed Matter +cond-mat/0507163 Soft Condensed Matter +cond-mat/0507164 Statistical Mechanics +cond-mat/0507166 Superconductivity +cond-mat/0507167 Mesoscale and Nanoscale Physics +cond-mat/0507168 Materials Science +cond-mat/0507169 Strongly Correlated Electrons +cond-mat/0507171 Disordered Systems and Neural Networks +cond-mat/0507180 Disordered Systems and Neural Networks +cond-mat/0507182 Statistical Mechanics +cond-mat/0507185 Superconductivity +cond-mat/0507186 Mesoscale and Nanoscale Physics +cond-mat/0507188 Strongly Correlated Electrons +cond-mat/0507190 Statistical Mechanics +cond-mat/0507197 Statistical Mechanics +cond-mat/0507198 Statistical Mechanics +cond-mat/0507199 Mesoscale and Nanoscale Physics +cond-mat/0507201 Materials Science +cond-mat/0507202 Statistical Mechanics +cond-mat/0507206 Statistical Mechanics +cond-mat/0507207 Statistical Mechanics +cond-mat/0507209 Other Condensed Matter +cond-mat/0507210 Mesoscale and Nanoscale Physics +cond-mat/0507212 Strongly Correlated Electrons +cond-mat/0507213 Superconductivity +cond-mat/0507214 Superconductivity +cond-mat/0507217 Materials Science +cond-mat/0507218 Other Condensed Matter +cond-mat/0507220 Materials Science +cond-mat/0507222 Statistical Mechanics +cond-mat/0507227 Mesoscale and Nanoscale Physics +cond-mat/0507228 Mesoscale and Nanoscale Physics +cond-mat/0507231 Disordered Systems and Neural Networks +cond-mat/0507237 Strongly Correlated Electrons +cond-mat/0507242 Strongly Correlated Electrons +cond-mat/0507243 Strongly Correlated Electrons +cond-mat/0507246 Statistical Mechanics +cond-mat/0507247 Superconductivity +cond-mat/0507249 Statistical Mechanics +cond-mat/0507250 Strongly Correlated Electrons +cond-mat/0507253 Other Condensed Matter +cond-mat/0507257 Materials Science +cond-mat/0507263 Statistical Mechanics +cond-mat/0507265 Strongly Correlated Electrons +cond-mat/0507272 Disordered Systems and Neural Networks +cond-mat/0507274 Disordered Systems and Neural Networks +cond-mat/0507275 Superconductivity +cond-mat/0507282 Mesoscale and Nanoscale Physics +cond-mat/0507284 Superconductivity +cond-mat/0507285 Disordered Systems and Neural Networks +cond-mat/0507288 Other Condensed Matter +cond-mat/0507289 Materials Science +cond-mat/0507291 Materials Science +cond-mat/0507300 Materials Science +cond-mat/0507301 Strongly Correlated Electrons +cond-mat/0507305 Superconductivity +cond-mat/0507307 Materials Science +cond-mat/0507308 Superconductivity +cond-mat/0507309 Mesoscale and Nanoscale Physics +cond-mat/0507310 Strongly Correlated Electrons +cond-mat/0507311 Statistical Mechanics +cond-mat/0507312 Strongly Correlated Electrons +cond-mat/0507314 Strongly Correlated Electrons +cond-mat/0507315 Superconductivity +cond-mat/0507316 Other Condensed Matter +cond-mat/0507318 Materials Science +cond-mat/0507319 Other Condensed Matter +cond-mat/0507320 Soft Condensed Matter +cond-mat/0507322 Disordered Systems and Neural Networks +cond-mat/0507326 Strongly Correlated Electrons +cond-mat/0507327 Superconductivity +cond-mat/0507328 Mesoscale and Nanoscale Physics +cond-mat/0507329 Other Condensed Matter +cond-mat/0507331 Soft Condensed Matter +cond-mat/0507334 Superconductivity +cond-mat/0507335 Soft Condensed Matter +cond-mat/0507337 Other Condensed Matter +cond-mat/0507338 Strongly Correlated Electrons +cond-mat/0507339 Mesoscale and Nanoscale Physics +cond-mat/0507340 Strongly Correlated Electrons +cond-mat/0507341 Strongly Correlated Electrons +cond-mat/0507342 Strongly Correlated Electrons +cond-mat/0507345 Statistical Mechanics +cond-mat/0507348 Other Condensed Matter +cond-mat/0507349 Materials Science +cond-mat/0507350 Superconductivity +cond-mat/0507352 Statistical Mechanics +cond-mat/0507355 Strongly Correlated Electrons +cond-mat/0507356 Strongly Correlated Electrons +cond-mat/0507357 Mesoscale and Nanoscale Physics +cond-mat/0507360 Soft Condensed Matter +cond-mat/0507361 Soft Condensed Matter +cond-mat/0507363 Strongly Correlated Electrons +cond-mat/0507365 Strongly Correlated Electrons +cond-mat/0507369 Statistical Mechanics +cond-mat/0507372 Strongly Correlated Electrons +cond-mat/0507374 Materials Science +cond-mat/0507375 Statistical Mechanics +cond-mat/0507384 Materials Science +cond-mat/0507385 Other Condensed Matter +cond-mat/0507387 Mesoscale and Nanoscale Physics +cond-mat/0507389 Materials Science +cond-mat/0507390 Strongly Correlated Electrons +cond-mat/0507391 Statistical Mechanics +cond-mat/0507393 Materials Science +cond-mat/0507394 Statistical Mechanics +cond-mat/0507397 Disordered Systems and Neural Networks +cond-mat/0507398 Superconductivity +cond-mat/0507401 Strongly Correlated Electrons +cond-mat/0507403 Mesoscale and Nanoscale Physics +cond-mat/0507406 Superconductivity +cond-mat/0507408 Statistical Mechanics +cond-mat/0507411 Statistical Mechanics +cond-mat/0507415 Mesoscale and Nanoscale Physics +cond-mat/0507416 Disordered Systems and Neural Networks +cond-mat/0507418 Statistical Mechanics +cond-mat/0507419 Soft Condensed Matter +cond-mat/0507421 Statistical Mechanics +cond-mat/0507422 Statistical Mechanics +cond-mat/0507423 Materials Science +cond-mat/0507425 Mesoscale and Nanoscale Physics +cond-mat/0507428 Mesoscale and Nanoscale Physics +cond-mat/0507430 Strongly Correlated Electrons +cond-mat/0507431 Strongly Correlated Electrons +cond-mat/0507434 Materials Science +cond-mat/0507436 Statistical Mechanics +cond-mat/0507437 Materials Science +cond-mat/0507438 Statistical Mechanics +cond-mat/0507442 Statistical Mechanics +cond-mat/0507444 Disordered Systems and Neural Networks +cond-mat/0507449 Superconductivity +cond-mat/0507450 Materials Science +cond-mat/0507451 Disordered Systems and Neural Networks +cond-mat/0507452 Strongly Correlated Electrons +cond-mat/0507453 Disordered Systems and Neural Networks +cond-mat/0507454 Strongly Correlated Electrons +cond-mat/0507455 Other Condensed Matter +cond-mat/0507456 Materials Science +cond-mat/0507457 Strongly Correlated Electrons +cond-mat/0507462 Superconductivity +cond-mat/0507464 Soft Condensed Matter +cond-mat/0507466 Mesoscale and Nanoscale Physics +cond-mat/0507470 Strongly Correlated Electrons +cond-mat/0507472 Strongly Correlated Electrons +cond-mat/0507473 Disordered Systems and Neural Networks +cond-mat/0507481 Materials Science +cond-mat/0507482 Superconductivity +cond-mat/0507483 Other Condensed Matter +cond-mat/0507484 Strongly Correlated Electrons +cond-mat/0507485 Statistical Mechanics +cond-mat/0507486 Soft Condensed Matter +cond-mat/0507487 Strongly Correlated Electrons +cond-mat/0507489 Superconductivity +cond-mat/0507491 Statistical Mechanics +cond-mat/0507493 Mesoscale and Nanoscale Physics +cond-mat/0507496 Superconductivity +cond-mat/0507498 Soft Condensed Matter +cond-mat/0507504 Statistical Mechanics +cond-mat/0507505 Superconductivity +cond-mat/0507511 Statistical Mechanics +cond-mat/0507514 Strongly Correlated Electrons +cond-mat/0507516 Statistical Mechanics +cond-mat/0507517 Soft Condensed Matter +cond-mat/0507518 Strongly Correlated Electrons +cond-mat/0507519 Superconductivity +cond-mat/0507520 Strongly Correlated Electrons +cond-mat/0507522 Soft Condensed Matter +cond-mat/0507523 Soft Condensed Matter +cond-mat/0507525 Statistical Mechanics +cond-mat/0507528 Mesoscale and Nanoscale Physics +cond-mat/0507529 Soft Condensed Matter +cond-mat/0507530 Disordered Systems and Neural Networks +cond-mat/0507531 Soft Condensed Matter +cond-mat/0507533 Statistical Mechanics +cond-mat/0507534 Strongly Correlated Electrons +cond-mat/0507535 Disordered Systems and Neural Networks +cond-mat/0507536 Strongly Correlated Electrons +cond-mat/0507539 Other Condensed Matter +cond-mat/0507544 Statistical Mechanics +cond-mat/0507545 Strongly Correlated Electrons +cond-mat/0507546 Strongly Correlated Electrons +cond-mat/0507547 Soft Condensed Matter +cond-mat/0507548 Superconductivity +cond-mat/0507549 Mesoscale and Nanoscale Physics +cond-mat/0507550 Statistical Mechanics +cond-mat/0507552 Strongly Correlated Electrons +cond-mat/0507560 Statistical Mechanics +cond-mat/0507564 Superconductivity +cond-mat/0507567 Statistical Mechanics +cond-mat/0507568 Strongly Correlated Electrons +cond-mat/0507569 Strongly Correlated Electrons +cond-mat/0507572 Superconductivity +cond-mat/0507579 Statistical Mechanics +cond-mat/0507582 Strongly Correlated Electrons +cond-mat/0507583 Superconductivity +cond-mat/0507585 Statistical Mechanics +cond-mat/0507588 Superconductivity +cond-mat/0507590 Soft Condensed Matter +cond-mat/0507591 Mesoscale and Nanoscale Physics +cond-mat/0507592 Mesoscale and Nanoscale Physics +cond-mat/0507595 Mesoscale and Nanoscale Physics +cond-mat/0507597 Superconductivity +cond-mat/0507599 Superconductivity +cond-mat/0507600 Statistical Mechanics +cond-mat/0507602 Soft Condensed Matter +cond-mat/0507608 Strongly Correlated Electrons +cond-mat/0507609 Soft Condensed Matter +cond-mat/0507610 Superconductivity +cond-mat/0507612 Strongly Correlated Electrons +cond-mat/0507615 Mesoscale and Nanoscale Physics +cond-mat/0507620 Statistical Mechanics +cond-mat/0507621 Superconductivity +cond-mat/0507622 Materials Science +cond-mat/0507624 Statistical Mechanics +cond-mat/0507625 Soft Condensed Matter +cond-mat/0507627 Disordered Systems and Neural Networks +cond-mat/0507628 Disordered Systems and Neural Networks +cond-mat/0507629 Disordered Systems and Neural Networks +cond-mat/0507630 Mesoscale and Nanoscale Physics +cond-mat/0507631 Mesoscale and Nanoscale Physics +cond-mat/0507635 Soft Condensed Matter +cond-mat/0507637 Soft Condensed Matter +cond-mat/0507644 Statistical Mechanics +cond-mat/0507647 Superconductivity +cond-mat/0507648 Disordered Systems and Neural Networks +cond-mat/0507649 Materials Science +cond-mat/0507651 Statistical Mechanics +cond-mat/0507652 Superconductivity +cond-mat/0507653 Strongly Correlated Electrons +cond-mat/0507654 Materials Science +cond-mat/0507658 Superconductivity +cond-mat/0507661 Superconductivity +cond-mat/0507662 Statistical Mechanics +cond-mat/0507663 Other Condensed Matter +cond-mat/0507666 Strongly Correlated Electrons +cond-mat/0507667 Materials Science +cond-mat/0507669 Materials Science +cond-mat/0507671 Superconductivity +cond-mat/0507672 Statistical Mechanics +cond-mat/0507674 Strongly Correlated Electrons +cond-mat/0507678 Superconductivity +cond-mat/0507680 Mesoscale and Nanoscale Physics +cond-mat/0507683 Soft Condensed Matter +cond-mat/0507684 Strongly Correlated Electrons +cond-mat/0507687 Disordered Systems and Neural Networks +cond-mat/0507689 Statistical Mechanics +cond-mat/0507690 Other Condensed Matter +cond-mat/0507691 Superconductivity +cond-mat/0507692 Superconductivity +cond-mat/0507694 Other Condensed Matter +cond-mat/0507695 Mesoscale and Nanoscale Physics +cond-mat/0507697 Materials Science +cond-mat/0507702 Mesoscale and Nanoscale Physics +cond-mat/0507703 Superconductivity +cond-mat/0507711 Strongly Correlated Electrons +cond-mat/0507718 Statistical Mechanics +cond-mat/0507719 Statistical Mechanics +cond-mat/0507725 Mesoscale and Nanoscale Physics +cond-mat/0507726 Other Condensed Matter +cond-mat/0507727 Mesoscale and Nanoscale Physics +cond-mat/0507728 Statistical Mechanics +cond-mat/0508001 Strongly Correlated Electrons +cond-mat/0508004 Materials Science +cond-mat/0508006 Materials Science +cond-mat/0508007 Strongly Correlated Electrons +cond-mat/0508014 Strongly Correlated Electrons +cond-mat/0508017 Strongly Correlated Electrons +cond-mat/0508019 Strongly Correlated Electrons +cond-mat/0508020 Strongly Correlated Electrons +cond-mat/0508021 Materials Science +cond-mat/0508022 Materials Science +cond-mat/0508026 Strongly Correlated Electrons +cond-mat/0508027 Other Condensed Matter +cond-mat/0508028 Disordered Systems and Neural Networks +cond-mat/0508030 Soft Condensed Matter +cond-mat/0508031 Mesoscale and Nanoscale Physics +cond-mat/0508032 Strongly Correlated Electrons +cond-mat/0508033 Soft Condensed Matter +cond-mat/0508034 Soft Condensed Matter +cond-mat/0508037 Statistical Mechanics +cond-mat/0508040 Disordered Systems and Neural Networks +cond-mat/0508042 Disordered Systems and Neural Networks +cond-mat/0508044 Superconductivity +cond-mat/0508045 Materials Science +cond-mat/0508046 Soft Condensed Matter +cond-mat/0508051 Superconductivity +cond-mat/0508054 Mesoscale and Nanoscale Physics +cond-mat/0508055 Soft Condensed Matter +cond-mat/0508057 Soft Condensed Matter +cond-mat/0508059 Superconductivity +cond-mat/0508060 Mesoscale and Nanoscale Physics +cond-mat/0508062 Superconductivity +cond-mat/0508063 Superconductivity +cond-mat/0508066 Statistical Mechanics +cond-mat/0508067 Statistical Mechanics +cond-mat/0508068 Statistical Mechanics +cond-mat/0508069 Materials Science +cond-mat/0508070 Materials Science +cond-mat/0508072 Soft Condensed Matter +cond-mat/0508074 Disordered Systems and Neural Networks +cond-mat/0508076 Mesoscale and Nanoscale Physics +cond-mat/0508077 Statistical Mechanics +cond-mat/0508081 Superconductivity +cond-mat/0508083 Other Condensed Matter +cond-mat/0508084 Superconductivity +cond-mat/0508085 Strongly Correlated Electrons +cond-mat/0508086 Strongly Correlated Electrons +cond-mat/0508088 Soft Condensed Matter +cond-mat/0508090 Statistical Mechanics +cond-mat/0508093 Mesoscale and Nanoscale Physics +cond-mat/0508094 Soft Condensed Matter +cond-mat/0508096 Superconductivity +cond-mat/0508098 Statistical Mechanics +cond-mat/0508099 Mesoscale and Nanoscale Physics +cond-mat/0508100 Statistical Mechanics +cond-mat/0508102 Soft Condensed Matter +cond-mat/0508105 Statistical Mechanics +cond-mat/0508108 Disordered Systems and Neural Networks +cond-mat/0508110 Statistical Mechanics +cond-mat/0508119 Strongly Correlated Electrons +cond-mat/0508120 Other Condensed Matter +cond-mat/0508124 Superconductivity +cond-mat/0508128 Statistical Mechanics +cond-mat/0508129 Materials Science +cond-mat/0508133 Other Condensed Matter +cond-mat/0508134 Superconductivity +cond-mat/0508135 Statistical Mechanics +cond-mat/0508136 Materials Science +cond-mat/0508138 Statistical Mechanics +cond-mat/0508146 Superconductivity +cond-mat/0508147 Strongly Correlated Electrons +cond-mat/0508153 Materials Science +cond-mat/0508154 Strongly Correlated Electrons +cond-mat/0508155 Soft Condensed Matter +cond-mat/0508158 Strongly Correlated Electrons +cond-mat/0508159 Materials Science +cond-mat/0508160 Materials Science +cond-mat/0508162 Soft Condensed Matter +cond-mat/0508164 Soft Condensed Matter +cond-mat/0508165 Statistical Mechanics +cond-mat/0508166 Strongly Correlated Electrons +cond-mat/0508172 Materials Science +cond-mat/0508173 Disordered Systems and Neural Networks +cond-mat/0508174 Disordered Systems and Neural Networks +cond-mat/0508175 Mesoscale and Nanoscale Physics +cond-mat/0508176 Mesoscale and Nanoscale Physics +cond-mat/0508177 Strongly Correlated Electrons +cond-mat/0508180 Statistical Mechanics +cond-mat/0508181 Mesoscale and Nanoscale Physics +cond-mat/0508184 Superconductivity +cond-mat/0508187 Soft Condensed Matter +cond-mat/0508189 Other Condensed Matter +cond-mat/0508190 Strongly Correlated Electrons +cond-mat/0508192 Statistical Mechanics +cond-mat/0508194 Mesoscale and Nanoscale Physics +cond-mat/0508195 Other Condensed Matter +cond-mat/0508196 Superconductivity +cond-mat/0508199 Mesoscale and Nanoscale Physics +cond-mat/0508200 Materials Science +cond-mat/0508202 Soft Condensed Matter +cond-mat/0508203 Other Condensed Matter +cond-mat/0508204 Strongly Correlated Electrons +cond-mat/0508205 Strongly Correlated Electrons +cond-mat/0508207 Statistical Mechanics +cond-mat/0508208 Mesoscale and Nanoscale Physics +cond-mat/0508209 Strongly Correlated Electrons +cond-mat/0508210 Other Condensed Matter +cond-mat/0508214 Superconductivity +cond-mat/0508221 Strongly Correlated Electrons +cond-mat/0508222 Materials Science +cond-mat/0508225 Mesoscale and Nanoscale Physics +cond-mat/0508227 Strongly Correlated Electrons +cond-mat/0508229 Disordered Systems and Neural Networks +cond-mat/0508230 Mesoscale and Nanoscale Physics +cond-mat/0508231 Statistical Mechanics +cond-mat/0508232 Materials Science +cond-mat/0508233 Strongly Correlated Electrons +cond-mat/0508234 Superconductivity +cond-mat/0508235 Mesoscale and Nanoscale Physics +cond-mat/0508237 Materials Science +cond-mat/0508239 Mesoscale and Nanoscale Physics +cond-mat/0508241 Materials Science +cond-mat/0508244 Strongly Correlated Electrons +cond-mat/0508245 Mesoscale and Nanoscale Physics +cond-mat/0508247 Other Condensed Matter +cond-mat/0508249 Materials Science +cond-mat/0508250 Disordered Systems and Neural Networks +cond-mat/0508254 Statistical Mechanics +cond-mat/0508255 Materials Science +cond-mat/0508256 Soft Condensed Matter +cond-mat/0508257 Statistical Mechanics +cond-mat/0508258 Strongly Correlated Electrons +cond-mat/0508259 Soft Condensed Matter +cond-mat/0508260 Mesoscale and Nanoscale Physics +cond-mat/0508261 Other Condensed Matter +cond-mat/0508263 Statistical Mechanics +cond-mat/0508266 Other Condensed Matter +cond-mat/0508267 Disordered Systems and Neural Networks +cond-mat/0508269 Materials Science +cond-mat/0508276 Superconductivity +cond-mat/0508278 Mesoscale and Nanoscale Physics +cond-mat/0508279 Strongly Correlated Electrons +cond-mat/0508285 Mesoscale and Nanoscale Physics +cond-mat/0508289 Materials Science +cond-mat/0508294 Superconductivity +cond-mat/0508298 Strongly Correlated Electrons +cond-mat/0508299 Soft Condensed Matter +cond-mat/0508302 Strongly Correlated Electrons +cond-mat/0508303 Mesoscale and Nanoscale Physics +cond-mat/0508305 Statistical Mechanics +cond-mat/0508309 Soft Condensed Matter +cond-mat/0508311 Strongly Correlated Electrons +cond-mat/0508312 Superconductivity +cond-mat/0508314 Materials Science +cond-mat/0508315 Disordered Systems and Neural Networks +cond-mat/0508316 Statistical Mechanics +cond-mat/0508317 Statistical Mechanics +cond-mat/0508318 Superconductivity +cond-mat/0508319 Statistical Mechanics +cond-mat/0508321 Soft Condensed Matter +cond-mat/0508323 Materials Science +cond-mat/0508325 Statistical Mechanics +cond-mat/0508327 Mesoscale and Nanoscale Physics +cond-mat/0508328 Mesoscale and Nanoscale Physics +cond-mat/0508329 Materials Science +cond-mat/0508331 Soft Condensed Matter +cond-mat/0508332 Statistical Mechanics +cond-mat/0508333 Statistical Mechanics +cond-mat/0508335 Other Condensed Matter +cond-mat/0508336 Other Condensed Matter +cond-mat/0508337 Superconductivity +cond-mat/0508338 Disordered Systems and Neural Networks +cond-mat/0508342 Other Condensed Matter +cond-mat/0508346 Materials Science +cond-mat/0508347 Materials Science +cond-mat/0508349 Strongly Correlated Electrons +cond-mat/0508350 Materials Science +cond-mat/0508354 Strongly Correlated Electrons +cond-mat/0508355 Superconductivity +cond-mat/0508360 Materials Science +cond-mat/0508361 Superconductivity +cond-mat/0508363 Statistical Mechanics +cond-mat/0508365 Other Condensed Matter +cond-mat/0508366 Superconductivity +cond-mat/0508367 Other Condensed Matter +cond-mat/0508369 Superconductivity +cond-mat/0508371 Materials Science +cond-mat/0508376 Superconductivity +cond-mat/0508379 Disordered Systems and Neural Networks +cond-mat/0508381 Superconductivity +cond-mat/0508382 Materials Science +cond-mat/0508383 Soft Condensed Matter +cond-mat/0508387 Materials Science +cond-mat/0508389 Mesoscale and Nanoscale Physics +cond-mat/0508395 Mesoscale and Nanoscale Physics +cond-mat/0508396 Mesoscale and Nanoscale Physics +cond-mat/0508398 Materials Science +cond-mat/0508399 Mesoscale and Nanoscale Physics +cond-mat/0508400 Materials Science +cond-mat/0508401 Mesoscale and Nanoscale Physics +cond-mat/0508405 Statistical Mechanics +cond-mat/0508406 Mesoscale and Nanoscale Physics +cond-mat/0508409 Disordered Systems and Neural Networks +cond-mat/0508410 Statistical Mechanics +cond-mat/0508413 Disordered Systems and Neural Networks +cond-mat/0508414 Strongly Correlated Electrons +cond-mat/0508415 Disordered Systems and Neural Networks +cond-mat/0508416 Superconductivity +cond-mat/0508420 Materials Science +cond-mat/0508424 Materials Science +cond-mat/0508426 Superconductivity +cond-mat/0508427 Materials Science +cond-mat/0508429 Superconductivity +cond-mat/0508430 Superconductivity +cond-mat/0508431 Statistical Mechanics +cond-mat/0508433 Strongly Correlated Electrons +cond-mat/0508435 Disordered Systems and Neural Networks +cond-mat/0508438 Strongly Correlated Electrons +cond-mat/0508439 Mesoscale and Nanoscale Physics +cond-mat/0508440 Superconductivity +cond-mat/0508443 Materials Science +cond-mat/0508444 Strongly Correlated Electrons +cond-mat/0508447 Mesoscale and Nanoscale Physics +cond-mat/0508449 Disordered Systems and Neural Networks +cond-mat/0508458 Mesoscale and Nanoscale Physics +cond-mat/0508459 Superconductivity +cond-mat/0508461 Soft Condensed Matter +cond-mat/0508463 Strongly Correlated Electrons +cond-mat/0508465 Strongly Correlated Electrons +cond-mat/0508466 Other Condensed Matter +cond-mat/0508467 Other Condensed Matter +cond-mat/0508473 Mesoscale and Nanoscale Physics +cond-mat/0508474 Other Condensed Matter +cond-mat/0508475 Mesoscale and Nanoscale Physics +cond-mat/0508479 Materials Science +cond-mat/0508480 Materials Science +cond-mat/0508483 Other Condensed Matter +cond-mat/0508486 Superconductivity +cond-mat/0508487 Materials Science +cond-mat/0508489 Superconductivity +cond-mat/0508492 Soft Condensed Matter +cond-mat/0508495 Soft Condensed Matter +cond-mat/0508497 Mesoscale and Nanoscale Physics +cond-mat/0508499 Statistical Mechanics +cond-mat/0508502 Superconductivity +cond-mat/0508509 Superconductivity +cond-mat/0508512 Statistical Mechanics +cond-mat/0508514 Soft Condensed Matter +cond-mat/0508515 Statistical Mechanics +cond-mat/0508517 Superconductivity +cond-mat/0508518 Superconductivity +cond-mat/0508520 Other Condensed Matter +cond-mat/0508521 Other Condensed Matter +cond-mat/0508524 Strongly Correlated Electrons +cond-mat/0508526 Mesoscale and Nanoscale Physics +cond-mat/0508527 Materials Science +cond-mat/0508531 Statistical Mechanics +cond-mat/0508532 Mesoscale and Nanoscale Physics +cond-mat/0508534 Materials Science +cond-mat/0508535 Materials Science +cond-mat/0508536 Strongly Correlated Electrons +cond-mat/0508537 Superconductivity +cond-mat/0508539 Strongly Correlated Electrons +cond-mat/0508540 Superconductivity +cond-mat/0508541 Statistical Mechanics +cond-mat/0508542 Superconductivity +cond-mat/0508543 Materials Science +cond-mat/0508544 Superconductivity +cond-mat/0508549 Materials Science +cond-mat/0508550 Statistical Mechanics +cond-mat/0508553 Soft Condensed Matter +cond-mat/0508557 Statistical Mechanics +cond-mat/0508560 Soft Condensed Matter +cond-mat/0508562 Other Condensed Matter +cond-mat/0508565 Materials Science +cond-mat/0508566 Mesoscale and Nanoscale Physics +cond-mat/0508569 Materials Science +cond-mat/0508570 Materials Science +cond-mat/0508576 Superconductivity +cond-mat/0508579 Statistical Mechanics +cond-mat/0508582 Superconductivity +cond-mat/0508584 Other Condensed Matter +cond-mat/0508585 Strongly Correlated Electrons +cond-mat/0508586 Disordered Systems and Neural Networks +cond-mat/0508590 Strongly Correlated Electrons +cond-mat/0508594 Superconductivity +cond-mat/0508597 Materials Science +cond-mat/0508599 Mesoscale and Nanoscale Physics +cond-mat/0508602 Strongly Correlated Electrons +cond-mat/0508604 Statistical Mechanics +cond-mat/0508606 Statistical Mechanics +cond-mat/0508607 Soft Condensed Matter +cond-mat/0508608 Mesoscale and Nanoscale Physics +cond-mat/0508612 Soft Condensed Matter +cond-mat/0508613 Strongly Correlated Electrons +cond-mat/0508615 Statistical Mechanics +cond-mat/0508618 Statistical Mechanics +cond-mat/0508620 Strongly Correlated Electrons +cond-mat/0508623 Statistical Mechanics +cond-mat/0508624 Other Condensed Matter +cond-mat/0508625 Materials Science +cond-mat/0508626 Strongly Correlated Electrons +cond-mat/0508627 Mesoscale and Nanoscale Physics +cond-mat/0508628 Soft Condensed Matter +cond-mat/0508629 Mesoscale and Nanoscale Physics +cond-mat/0508630 Superconductivity +cond-mat/0508631 Strongly Correlated Electrons +cond-mat/0508634 Strongly Correlated Electrons +cond-mat/0508639 Superconductivity +cond-mat/0508640 Mesoscale and Nanoscale Physics +cond-mat/0508643 Superconductivity +cond-mat/0508644 Materials Science +cond-mat/0508645 Strongly Correlated Electrons +cond-mat/0508651 Materials Science +cond-mat/0508652 Statistical Mechanics +cond-mat/0508660 Strongly Correlated Electrons +cond-mat/0508662 Mesoscale and Nanoscale Physics +cond-mat/0508663 Statistical Mechanics +cond-mat/0508665 Other Condensed Matter +cond-mat/0508672 Superconductivity +cond-mat/0508675 Materials Science +cond-mat/0508676 Mesoscale and Nanoscale Physics +cond-mat/0508679 Superconductivity +cond-mat/0508680 Other Condensed Matter +cond-mat/0508685 Strongly Correlated Electrons +cond-mat/0508688 Mesoscale and Nanoscale Physics +cond-mat/0508690 Superconductivity +cond-mat/0508692 Mesoscale and Nanoscale Physics +cond-mat/0508694 Strongly Correlated Electrons +cond-mat/0508696 Materials Science +cond-mat/0508697 Superconductivity +cond-mat/0508699 Mesoscale and Nanoscale Physics +cond-mat/0508703 Disordered Systems and Neural Networks +cond-mat/0508706 Strongly Correlated Electrons +cond-mat/0508708 Materials Science +cond-mat/0508711 Strongly Correlated Electrons +cond-mat/0508716 Superconductivity +cond-mat/0508717 Materials Science +cond-mat/0508718 Soft Condensed Matter +cond-mat/0508724 Strongly Correlated Electrons +cond-mat/0508725 Materials Science +cond-mat/0508727 Mesoscale and Nanoscale Physics +cond-mat/0508730 Materials Science +cond-mat/0508731 Strongly Correlated Electrons +cond-mat/0508732 Mesoscale and Nanoscale Physics +cond-mat/0508738 Strongly Correlated Electrons +cond-mat/0508739 Mesoscale and Nanoscale Physics +cond-mat/0508742 Strongly Correlated Electrons +cond-mat/0508743 Strongly Correlated Electrons +cond-mat/0508745 Other Condensed Matter +cond-mat/0508747 Strongly Correlated Electrons +cond-mat/0508750 Strongly Correlated Electrons +cond-mat/0508752 Strongly Correlated Electrons +cond-mat/0508753 Superconductivity +cond-mat/0508754 Superconductivity +cond-mat/0508756 Materials Science +cond-mat/0508757 Mesoscale and Nanoscale Physics +cond-mat/0508758 Statistical Mechanics +cond-mat/0508761 Materials Science +cond-mat/0508763 Strongly Correlated Electrons +cond-mat/0508765 Statistical Mechanics +cond-mat/0508767 Soft Condensed Matter +cond-mat/0508770 Materials Science +cond-mat/0508774 Mesoscale and Nanoscale Physics +cond-mat/0508775 Other Condensed Matter +cond-mat/0509004 Strongly Correlated Electrons +cond-mat/0509005 Strongly Correlated Electrons +cond-mat/0509010 Mesoscale and Nanoscale Physics +cond-mat/0509012 Statistical Mechanics +cond-mat/0509013 Strongly Correlated Electrons +cond-mat/0509015 Strongly Correlated Electrons +cond-mat/0509016 Materials Science +cond-mat/0509017 Disordered Systems and Neural Networks +cond-mat/0509019 Statistical Mechanics +cond-mat/0509022 Disordered Systems and Neural Networks +cond-mat/0509023 Soft Condensed Matter +cond-mat/0509027 Mesoscale and Nanoscale Physics +cond-mat/0509028 Statistical Mechanics +cond-mat/0509030 Statistical Mechanics +cond-mat/0509031 Statistical Mechanics +cond-mat/0509032 Statistical Mechanics +cond-mat/0509038 Mesoscale and Nanoscale Physics +cond-mat/0509041 Strongly Correlated Electrons +cond-mat/0509042 Disordered Systems and Neural Networks +cond-mat/0509043 Other Condensed Matter +cond-mat/0509044 Materials Science +cond-mat/0509046 Superconductivity +cond-mat/0509048 Other Condensed Matter +cond-mat/0509050 Strongly Correlated Electrons +cond-mat/0509051 Mesoscale and Nanoscale Physics +cond-mat/0509052 Strongly Correlated Electrons +cond-mat/0509053 Mesoscale and Nanoscale Physics +cond-mat/0509054 Materials Science +cond-mat/0509058 Other Condensed Matter +cond-mat/0509059 Strongly Correlated Electrons +cond-mat/0509062 Strongly Correlated Electrons +cond-mat/0509063 Statistical Mechanics +cond-mat/0509064 Statistical Mechanics +cond-mat/0509065 Mesoscale and Nanoscale Physics +cond-mat/0509067 Mesoscale and Nanoscale Physics +cond-mat/0509069 Soft Condensed Matter +cond-mat/0509070 Statistical Mechanics +cond-mat/0509071 Strongly Correlated Electrons +cond-mat/0509072 Strongly Correlated Electrons +cond-mat/0509074 Materials Science +cond-mat/0509075 Strongly Correlated Electrons +cond-mat/0509077 Statistical Mechanics +cond-mat/0509082 Superconductivity +cond-mat/0509083 Other Condensed Matter +cond-mat/0509086 Superconductivity +cond-mat/0509087 Other Condensed Matter +cond-mat/0509088 Superconductivity +cond-mat/0509089 Superconductivity +cond-mat/0509093 Other Condensed Matter +cond-mat/0509094 Strongly Correlated Electrons +cond-mat/0509096 Disordered Systems and Neural Networks +cond-mat/0509097 Other Condensed Matter +cond-mat/0509099 Materials Science +cond-mat/0509100 Mesoscale and Nanoscale Physics +cond-mat/0509102 Statistical Mechanics +cond-mat/0509106 Strongly Correlated Electrons +cond-mat/0509107 Strongly Correlated Electrons +cond-mat/0509108 Strongly Correlated Electrons +cond-mat/0509109 Statistical Mechanics +cond-mat/0509112 Strongly Correlated Electrons +cond-mat/0509115 Soft Condensed Matter +cond-mat/0509117 Mesoscale and Nanoscale Physics +cond-mat/0509118 Superconductivity +cond-mat/0509120 Statistical Mechanics +cond-mat/0509121 Soft Condensed Matter +cond-mat/0509122 Soft Condensed Matter +cond-mat/0509126 Soft Condensed Matter +cond-mat/0509128 Superconductivity +cond-mat/0509129 Mesoscale and Nanoscale Physics +cond-mat/0509130 Mesoscale and Nanoscale Physics +cond-mat/0509132 Other Condensed Matter +cond-mat/0509133 Disordered Systems and Neural Networks +cond-mat/0509134 Soft Condensed Matter +cond-mat/0509137 Soft Condensed Matter +cond-mat/0509138 Statistical Mechanics +cond-mat/0509140 Strongly Correlated Electrons +cond-mat/0509141 Materials Science +cond-mat/0509143 Materials Science +cond-mat/0509146 Strongly Correlated Electrons +cond-mat/0509147 Strongly Correlated Electrons +cond-mat/0509148 Mesoscale and Nanoscale Physics +cond-mat/0509149 Strongly Correlated Electrons +cond-mat/0509152 Statistical Mechanics +cond-mat/0509153 Strongly Correlated Electrons +cond-mat/0509156 Superconductivity +cond-mat/0509158 Statistical Mechanics +cond-mat/0509159 Materials Science +cond-mat/0509167 Superconductivity +cond-mat/0509169 Strongly Correlated Electrons +cond-mat/0509176 Materials Science +cond-mat/0509177 Strongly Correlated Electrons +cond-mat/0509179 Statistical Mechanics +cond-mat/0509181 Materials Science +cond-mat/0509183 Materials Science +cond-mat/0509184 Statistical Mechanics +cond-mat/0509191 Statistical Mechanics +cond-mat/0509192 Strongly Correlated Electrons +cond-mat/0509193 Mesoscale and Nanoscale Physics +cond-mat/0509195 Disordered Systems and Neural Networks +cond-mat/0509196 Disordered Systems and Neural Networks +cond-mat/0509197 Mesoscale and Nanoscale Physics +cond-mat/0509199 Statistical Mechanics +cond-mat/0509200 Other Condensed Matter +cond-mat/0509204 Materials Science +cond-mat/0509208 Other Condensed Matter +cond-mat/0509213 Soft Condensed Matter +cond-mat/0509215 Other Condensed Matter +cond-mat/0509216 Soft Condensed Matter +cond-mat/0509218 Soft Condensed Matter +cond-mat/0509226 Disordered Systems and Neural Networks +cond-mat/0509227 Materials Science +cond-mat/0509228 Mesoscale and Nanoscale Physics +cond-mat/0509231 Strongly Correlated Electrons +cond-mat/0509234 Statistical Mechanics +cond-mat/0509238 Statistical Mechanics +cond-mat/0509239 Statistical Mechanics +cond-mat/0509242 Superconductivity +cond-mat/0509243 Materials Science +cond-mat/0509246 Other Condensed Matter +cond-mat/0509249 Disordered Systems and Neural Networks +cond-mat/0509251 Mesoscale and Nanoscale Physics +cond-mat/0509252 Statistical Mechanics +cond-mat/0509254 Disordered Systems and Neural Networks +cond-mat/0509255 Statistical Mechanics +cond-mat/0509256 Other Condensed Matter +cond-mat/0509257 Other Condensed Matter +cond-mat/0509259 Strongly Correlated Electrons +cond-mat/0509263 Superconductivity +cond-mat/0509265 Other Condensed Matter +cond-mat/0509268 Strongly Correlated Electrons +cond-mat/0509271 Statistical Mechanics +cond-mat/0509275 Mesoscale and Nanoscale Physics +cond-mat/0509280 Disordered Systems and Neural Networks +cond-mat/0509282 Soft Condensed Matter +cond-mat/0509283 Statistical Mechanics +cond-mat/0509284 Strongly Correlated Electrons +cond-mat/0509286 Other Condensed Matter +cond-mat/0509288 Mesoscale and Nanoscale Physics +cond-mat/0509289 Strongly Correlated Electrons +cond-mat/0509290 Statistical Mechanics +cond-mat/0509292 Superconductivity +cond-mat/0509293 Mesoscale and Nanoscale Physics +cond-mat/0509294 Strongly Correlated Electrons +cond-mat/0509295 Strongly Correlated Electrons +cond-mat/0509297 Soft Condensed Matter +cond-mat/0509301 Disordered Systems and Neural Networks +cond-mat/0509304 Strongly Correlated Electrons +cond-mat/0509305 Other Condensed Matter +cond-mat/0509306 Strongly Correlated Electrons +cond-mat/0509307 Strongly Correlated Electrons +cond-mat/0509309 Mesoscale and Nanoscale Physics +cond-mat/0509310 Strongly Correlated Electrons +cond-mat/0509311 Superconductivity +cond-mat/0509315 Strongly Correlated Electrons +cond-mat/0509316 Mesoscale and Nanoscale Physics +cond-mat/0509317 Mesoscale and Nanoscale Physics +cond-mat/0509318 Superconductivity +cond-mat/0509321 Strongly Correlated Electrons +cond-mat/0509326 Materials Science +cond-mat/0509331 Mesoscale and Nanoscale Physics +cond-mat/0509332 Superconductivity +cond-mat/0509333 Materials Science +cond-mat/0509335 Statistical Mechanics +cond-mat/0509338 Statistical Mechanics +cond-mat/0509339 Superconductivity +cond-mat/0509340 Statistical Mechanics +cond-mat/0509353 Strongly Correlated Electrons +cond-mat/0509355 Mesoscale and Nanoscale Physics +cond-mat/0509356 Soft Condensed Matter +cond-mat/0509357 Statistical Mechanics +cond-mat/0509358 Strongly Correlated Electrons +cond-mat/0509364 Statistical Mechanics +cond-mat/0509366 Disordered Systems and Neural Networks +cond-mat/0509370 Strongly Correlated Electrons +cond-mat/0509371 Strongly Correlated Electrons +cond-mat/0509373 Other Condensed Matter +cond-mat/0509376 Mesoscale and Nanoscale Physics +cond-mat/0509381 Disordered Systems and Neural Networks +cond-mat/0509382 Strongly Correlated Electrons +cond-mat/0509383 Strongly Correlated Electrons +cond-mat/0509391 Mesoscale and Nanoscale Physics +cond-mat/0509393 Other Condensed Matter +cond-mat/0509395 Mesoscale and Nanoscale Physics +cond-mat/0509403 Soft Condensed Matter +cond-mat/0509406 Strongly Correlated Electrons +cond-mat/0509407 Strongly Correlated Electrons +cond-mat/0509408 Materials Science +cond-mat/0509412 Strongly Correlated Electrons +cond-mat/0509414 Strongly Correlated Electrons +cond-mat/0509416 Soft Condensed Matter +cond-mat/0509417 Statistical Mechanics +cond-mat/0509421 Soft Condensed Matter +cond-mat/0509423 Strongly Correlated Electrons +cond-mat/0509424 Materials Science +cond-mat/0509429 Mesoscale and Nanoscale Physics +cond-mat/0509430 Superconductivity +cond-mat/0509433 Strongly Correlated Electrons +cond-mat/0509435 Soft Condensed Matter +cond-mat/0509436 Strongly Correlated Electrons +cond-mat/0509437 Materials Science +cond-mat/0509439 Statistical Mechanics +cond-mat/0509440 Materials Science +cond-mat/0509441 Other Condensed Matter +cond-mat/0509445 Superconductivity +cond-mat/0509446 Other Condensed Matter +cond-mat/0509447 Mesoscale and Nanoscale Physics +cond-mat/0509448 Mesoscale and Nanoscale Physics +cond-mat/0509452 Mesoscale and Nanoscale Physics +cond-mat/0509457 Soft Condensed Matter +cond-mat/0509459 Soft Condensed Matter +cond-mat/0509462 Other Condensed Matter +cond-mat/0509463 Mesoscale and Nanoscale Physics +cond-mat/0509464 Statistical Mechanics +cond-mat/0509465 Statistical Mechanics +cond-mat/0509466 Superconductivity +cond-mat/0509469 Disordered Systems and Neural Networks +cond-mat/0509471 Soft Condensed Matter +cond-mat/0509473 Strongly Correlated Electrons +cond-mat/0509477 Statistical Mechanics +cond-mat/0509478 Mesoscale and Nanoscale Physics +cond-mat/0509483 Strongly Correlated Electrons +cond-mat/0509485 Statistical Mechanics +cond-mat/0509486 Statistical Mechanics +cond-mat/0509490 Other Condensed Matter +cond-mat/0509494 Disordered Systems and Neural Networks +cond-mat/0509495 Strongly Correlated Electrons +cond-mat/0509497 Strongly Correlated Electrons +cond-mat/0509498 Statistical Mechanics +cond-mat/0509499 Soft Condensed Matter +cond-mat/0509501 Other Condensed Matter +cond-mat/0509505 Other Condensed Matter +cond-mat/0509512 Materials Science +cond-mat/0509516 Other Condensed Matter +cond-mat/0509524 Superconductivity +cond-mat/0509529 Mesoscale and Nanoscale Physics +cond-mat/0509533 Strongly Correlated Electrons +cond-mat/0509535 Superconductivity +cond-mat/0509538 Materials Science +cond-mat/0509543 Mesoscale and Nanoscale Physics +cond-mat/0509549 Other Condensed Matter +cond-mat/0509552 Strongly Correlated Electrons +cond-mat/0509556 Strongly Correlated Electrons +cond-mat/0509559 Mesoscale and Nanoscale Physics +cond-mat/0509560 Other Condensed Matter +cond-mat/0509568 Mesoscale and Nanoscale Physics +cond-mat/0509570 Mesoscale and Nanoscale Physics +cond-mat/0509572 Mesoscale and Nanoscale Physics +cond-mat/0509574 Materials Science +cond-mat/0509578 Materials Science +cond-mat/0509585 Mesoscale and Nanoscale Physics +cond-mat/0509586 Strongly Correlated Electrons +cond-mat/0509587 Mesoscale and Nanoscale Physics +cond-mat/0509589 Materials Science +cond-mat/0509590 Statistical Mechanics +cond-mat/0509594 Statistical Mechanics +cond-mat/0509597 Mesoscale and Nanoscale Physics +cond-mat/0509603 Statistical Mechanics +cond-mat/0509604 Soft Condensed Matter +cond-mat/0509606 Statistical Mechanics +cond-mat/0509610 Materials Science +cond-mat/0509611 Disordered Systems and Neural Networks +cond-mat/0509612 Materials Science +cond-mat/0509614 Materials Science +cond-mat/0509615 Strongly Correlated Electrons +cond-mat/0509617 Strongly Correlated Electrons +cond-mat/0509620 Mesoscale and Nanoscale Physics +cond-mat/0509625 Materials Science +cond-mat/0509626 Statistical Mechanics +cond-mat/0509627 Mesoscale and Nanoscale Physics +cond-mat/0509628 Strongly Correlated Electrons +cond-mat/0509629 Materials Science +cond-mat/0509631 Soft Condensed Matter +cond-mat/0509633 Superconductivity +cond-mat/0509634 Strongly Correlated Electrons +cond-mat/0509635 Mesoscale and Nanoscale Physics +cond-mat/0509636 Mesoscale and Nanoscale Physics +cond-mat/0509637 Soft Condensed Matter +cond-mat/0509639 Soft Condensed Matter +cond-mat/0509640 Materials Science +cond-mat/0509641 Mesoscale and Nanoscale Physics +cond-mat/0509644 Disordered Systems and Neural Networks +cond-mat/0509645 Mesoscale and Nanoscale Physics +cond-mat/0509647 Mesoscale and Nanoscale Physics +cond-mat/0509651 Materials Science +cond-mat/0509652 Strongly Correlated Electrons +cond-mat/0509654 Mesoscale and Nanoscale Physics +cond-mat/0509655 Strongly Correlated Electrons +cond-mat/0509658 Superconductivity +cond-mat/0509659 Superconductivity +cond-mat/0509661 Statistical Mechanics +cond-mat/0509664 Soft Condensed Matter +cond-mat/0509665 Statistical Mechanics +cond-mat/0509670 Other Condensed Matter +cond-mat/0509671 Other Condensed Matter +cond-mat/0509674 Superconductivity +cond-mat/0509679 Mesoscale and Nanoscale Physics +cond-mat/0509681 Statistical Mechanics +cond-mat/0509683 Materials Science +cond-mat/0509685 Statistical Mechanics +cond-mat/0509689 Statistical Mechanics +cond-mat/0509690 Statistical Mechanics +cond-mat/0509691 Other Condensed Matter +cond-mat/0509692 Mesoscale and Nanoscale Physics +cond-mat/0509693 Mesoscale and Nanoscale Physics +cond-mat/0509694 Soft Condensed Matter +cond-mat/0509696 Soft Condensed Matter +cond-mat/0509699 Strongly Correlated Electrons +cond-mat/0509700 Disordered Systems and Neural Networks +cond-mat/0509703 Materials Science +cond-mat/0509707 Strongly Correlated Electrons +cond-mat/0509708 Superconductivity +cond-mat/0509709 Mesoscale and Nanoscale Physics +cond-mat/0509711 Disordered Systems and Neural Networks +cond-mat/0509712 Strongly Correlated Electrons +cond-mat/0509713 Statistical Mechanics +cond-mat/0509714 Statistical Mechanics +cond-mat/0509716 Mesoscale and Nanoscale Physics +cond-mat/0509717 Statistical Mechanics +cond-mat/0509719 Disordered Systems and Neural Networks +cond-mat/0509726 Statistical Mechanics +cond-mat/0509730 Materials Science +cond-mat/0509731 Mesoscale and Nanoscale Physics +cond-mat/0509733 Statistical Mechanics +cond-mat/0509739 Strongly Correlated Electrons +cond-mat/0509743 Strongly Correlated Electrons +cond-mat/0509745 Strongly Correlated Electrons +cond-mat/0509752 Other Condensed Matter +cond-mat/0509756 Materials Science +cond-mat/0509758 Strongly Correlated Electrons +cond-mat/0509761 Materials Science +cond-mat/0509763 Disordered Systems and Neural Networks +cond-mat/0509767 Statistical Mechanics +cond-mat/0509771 Mesoscale and Nanoscale Physics +cond-mat/0509773 Statistical Mechanics +cond-mat/0509776 Other Condensed Matter +cond-mat/0509777 Soft Condensed Matter +cond-mat/0509779 Other Condensed Matter +cond-mat/0509783 Statistical Mechanics +cond-mat/0509784 Statistical Mechanics +cond-mat/0509787 Superconductivity +cond-mat/0509789 Statistical Mechanics +cond-mat/0509791 Strongly Correlated Electrons +cond-mat/0509794 Disordered Systems and Neural Networks +cond-mat/0509798 Other Condensed Matter +cond-mat/0509800 Superconductivity +cond-mat/0509801 Statistical Mechanics +cond-mat/0509804 Other Condensed Matter +cond-mat/0509806 Mesoscale and Nanoscale Physics +cond-mat/0509807 Disordered Systems and Neural Networks +cond-mat/0509809 Statistical Mechanics +cond-mat/0509810 Disordered Systems and Neural Networks +cond-mat/0509811 Superconductivity +cond-mat/0509812 Superconductivity +cond-mat/0510001 Strongly Correlated Electrons +cond-mat/0510008 Superconductivity +cond-mat/0510009 Soft Condensed Matter +cond-mat/0510023 Other Condensed Matter +cond-mat/0510025 Strongly Correlated Electrons +cond-mat/0510026 Statistical Mechanics +cond-mat/0510028 Other Condensed Matter +cond-mat/0510030 Statistical Mechanics +cond-mat/0510033 Superconductivity +cond-mat/0510042 Strongly Correlated Electrons +cond-mat/0510043 Other Condensed Matter +cond-mat/0510044 Mesoscale and Nanoscale Physics +cond-mat/0510046 Strongly Correlated Electrons +cond-mat/0510047 Statistical Mechanics +cond-mat/0510050 Disordered Systems and Neural Networks +cond-mat/0510051 Strongly Correlated Electrons +cond-mat/0510052 Other Condensed Matter +cond-mat/0510065 Superconductivity +cond-mat/0510066 Mesoscale and Nanoscale Physics +cond-mat/0510069 Mesoscale and Nanoscale Physics +cond-mat/0510070 Statistical Mechanics +cond-mat/0510071 Other Condensed Matter +cond-mat/0510072 Soft Condensed Matter +cond-mat/0510078 Statistical Mechanics +cond-mat/0510080 Other Condensed Matter +cond-mat/0510081 Soft Condensed Matter +cond-mat/0510082 Soft Condensed Matter +cond-mat/0510084 Soft Condensed Matter +cond-mat/0510086 Soft Condensed Matter +cond-mat/0510090 Superconductivity +cond-mat/0510093 Superconductivity +cond-mat/0510095 Mesoscale and Nanoscale Physics +cond-mat/0510099 Superconductivity +cond-mat/0510103 Strongly Correlated Electrons +cond-mat/0510104 Statistical Mechanics +cond-mat/0510105 Statistical Mechanics +cond-mat/0510111 Statistical Mechanics +cond-mat/0510113 Soft Condensed Matter +cond-mat/0510114 Mesoscale and Nanoscale Physics +cond-mat/0510116 Other Condensed Matter +cond-mat/0510125 Statistical Mechanics +cond-mat/0510126 Materials Science +cond-mat/0510129 Statistical Mechanics +cond-mat/0510133 Materials Science +cond-mat/0510138 Soft Condensed Matter +cond-mat/0510143 Other Condensed Matter +cond-mat/0510147 Materials Science +cond-mat/0510150 Strongly Correlated Electrons +cond-mat/0510154 Statistical Mechanics +cond-mat/0510157 Materials Science +cond-mat/0510159 Superconductivity +cond-mat/0510162 Mesoscale and Nanoscale Physics +cond-mat/0510164 Strongly Correlated Electrons +cond-mat/0510166 Materials Science +cond-mat/0510167 Materials Science +cond-mat/0510170 Statistical Mechanics +cond-mat/0510171 Soft Condensed Matter +cond-mat/0510174 Materials Science +cond-mat/0510175 Strongly Correlated Electrons +cond-mat/0510176 Materials Science +cond-mat/0510178 Soft Condensed Matter +cond-mat/0510179 Other Condensed Matter +cond-mat/0510180 Soft Condensed Matter +cond-mat/0510183 Materials Science +cond-mat/0510184 Mesoscale and Nanoscale Physics +cond-mat/0510188 Mesoscale and Nanoscale Physics +cond-mat/0510189 Superconductivity +cond-mat/0510195 Strongly Correlated Electrons +cond-mat/0510197 Materials Science +cond-mat/0510201 Statistical Mechanics +cond-mat/0510204 Other Condensed Matter +cond-mat/0510206 Strongly Correlated Electrons +cond-mat/0510208 Materials Science +cond-mat/0510213 Mesoscale and Nanoscale Physics +cond-mat/0510214 Statistical Mechanics +cond-mat/0510216 Strongly Correlated Electrons +cond-mat/0510222 Materials Science +cond-mat/0510227 Superconductivity +cond-mat/0510228 Strongly Correlated Electrons +cond-mat/0510229 Mesoscale and Nanoscale Physics +cond-mat/0510235 Materials Science +cond-mat/0510236 Mesoscale and Nanoscale Physics +cond-mat/0510237 Mesoscale and Nanoscale Physics +cond-mat/0510238 Soft Condensed Matter +cond-mat/0510239 Materials Science +cond-mat/0510241 Materials Science +cond-mat/0510242 Disordered Systems and Neural Networks +cond-mat/0510243 Mesoscale and Nanoscale Physics +cond-mat/0510246 Superconductivity +cond-mat/0510247 Statistical Mechanics +cond-mat/0510248 Materials Science +cond-mat/0510249 Mesoscale and Nanoscale Physics +cond-mat/0510250 Superconductivity +cond-mat/0510251 Superconductivity +cond-mat/0510255 Strongly Correlated Electrons +cond-mat/0510257 Strongly Correlated Electrons +cond-mat/0510259 Superconductivity +cond-mat/0510262 Mesoscale and Nanoscale Physics +cond-mat/0510263 Mesoscale and Nanoscale Physics +cond-mat/0510264 Mesoscale and Nanoscale Physics +cond-mat/0510265 Statistical Mechanics +cond-mat/0510266 Disordered Systems and Neural Networks +cond-mat/0510269 Mesoscale and Nanoscale Physics +cond-mat/0510271 Mesoscale and Nanoscale Physics +cond-mat/0510272 Statistical Mechanics +cond-mat/0510273 Materials Science +cond-mat/0510277 Disordered Systems and Neural Networks +cond-mat/0510278 Statistical Mechanics +cond-mat/0510282 Superconductivity +cond-mat/0510287 Soft Condensed Matter +cond-mat/0510288 Strongly Correlated Electrons +cond-mat/0510289 Mesoscale and Nanoscale Physics +cond-mat/0510290 Strongly Correlated Electrons +cond-mat/0510292 Soft Condensed Matter +cond-mat/0510300 Other Condensed Matter +cond-mat/0510301 Mesoscale and Nanoscale Physics +cond-mat/0510303 Mesoscale and Nanoscale Physics +cond-mat/0510305 Statistical Mechanics +cond-mat/0510306 Disordered Systems and Neural Networks +cond-mat/0510309 Superconductivity +cond-mat/0510311 Strongly Correlated Electrons +cond-mat/0510315 Other Condensed Matter +cond-mat/0510316 Mesoscale and Nanoscale Physics +cond-mat/0510318 Mesoscale and Nanoscale Physics +cond-mat/0510320 Statistical Mechanics +cond-mat/0510322 Mesoscale and Nanoscale Physics +cond-mat/0510324 Mesoscale and Nanoscale Physics +cond-mat/0510325 Strongly Correlated Electrons +cond-mat/0510327 Soft Condensed Matter +cond-mat/0510328 Strongly Correlated Electrons +cond-mat/0510329 Superconductivity +cond-mat/0510331 Strongly Correlated Electrons +cond-mat/0510332 Statistical Mechanics +cond-mat/0510336 Superconductivity +cond-mat/0510337 Strongly Correlated Electrons +cond-mat/0510340 Materials Science +cond-mat/0510344 Disordered Systems and Neural Networks +cond-mat/0510345 Strongly Correlated Electrons +cond-mat/0510347 Superconductivity +cond-mat/0510348 Materials Science +cond-mat/0510349 Materials Science +cond-mat/0510350 Statistical Mechanics +cond-mat/0510351 Superconductivity +cond-mat/0510353 Materials Science +cond-mat/0510354 Statistical Mechanics +cond-mat/0510356 Statistical Mechanics +cond-mat/0510358 Soft Condensed Matter +cond-mat/0510359 Statistical Mechanics +cond-mat/0510361 Soft Condensed Matter +cond-mat/0510363 Strongly Correlated Electrons +cond-mat/0510364 Statistical Mechanics +cond-mat/0510368 Materials Science +cond-mat/0510369 Superconductivity +cond-mat/0510371 Mesoscale and Nanoscale Physics +cond-mat/0510372 Disordered Systems and Neural Networks +cond-mat/0510374 Mesoscale and Nanoscale Physics +cond-mat/0510375 Disordered Systems and Neural Networks +cond-mat/0510377 Strongly Correlated Electrons +cond-mat/0510379 Mesoscale and Nanoscale Physics +cond-mat/0510380 Superconductivity +cond-mat/0510381 Materials Science +cond-mat/0510382 Mesoscale and Nanoscale Physics +cond-mat/0510383 Strongly Correlated Electrons +cond-mat/0510384 Strongly Correlated Electrons +cond-mat/0510388 Superconductivity +cond-mat/0510389 Statistical Mechanics +cond-mat/0510390 Materials Science +cond-mat/0510393 Soft Condensed Matter +cond-mat/0510394 Mesoscale and Nanoscale Physics +cond-mat/0510396 Materials Science +cond-mat/0510398 Statistical Mechanics +cond-mat/0510399 Materials Science +cond-mat/0510400 Materials Science +cond-mat/0510401 Superconductivity +cond-mat/0510404 Mesoscale and Nanoscale Physics +cond-mat/0510408 Materials Science +cond-mat/0510411 Mesoscale and Nanoscale Physics +cond-mat/0510417 Superconductivity +cond-mat/0510418 Statistical Mechanics +cond-mat/0510422 Mesoscale and Nanoscale Physics +cond-mat/0510423 Strongly Correlated Electrons +cond-mat/0510425 Strongly Correlated Electrons +cond-mat/0510428 Statistical Mechanics +cond-mat/0510429 Statistical Mechanics +cond-mat/0510434 Statistical Mechanics +cond-mat/0510440 Materials Science +cond-mat/0510441 Statistical Mechanics +cond-mat/0510443 Soft Condensed Matter +cond-mat/0510447 Other Condensed Matter +cond-mat/0510449 Strongly Correlated Electrons +cond-mat/0510450 Mesoscale and Nanoscale Physics +cond-mat/0510455 Disordered Systems and Neural Networks +cond-mat/0510456 Statistical Mechanics +cond-mat/0510457 Superconductivity +cond-mat/0510459 Strongly Correlated Electrons +cond-mat/0510461 Statistical Mechanics +cond-mat/0510462 Soft Condensed Matter +cond-mat/0510463 Other Condensed Matter +cond-mat/0510464 Strongly Correlated Electrons +cond-mat/0510466 Statistical Mechanics +cond-mat/0510468 Strongly Correlated Electrons +cond-mat/0510469 Materials Science +cond-mat/0510470 Superconductivity +cond-mat/0510475 Materials Science +cond-mat/0510476 Superconductivity +cond-mat/0510478 Other Condensed Matter +cond-mat/0510481 Disordered Systems and Neural Networks +cond-mat/0510482 Superconductivity +cond-mat/0510483 Mesoscale and Nanoscale Physics +cond-mat/0510487 Strongly Correlated Electrons +cond-mat/0510489 Superconductivity +cond-mat/0510493 Soft Condensed Matter +cond-mat/0510495 Mesoscale and Nanoscale Physics +cond-mat/0510498 Strongly Correlated Electrons +cond-mat/0510499 Strongly Correlated Electrons +cond-mat/0510500 Statistical Mechanics +cond-mat/0510501 Strongly Correlated Electrons +cond-mat/0510504 Mesoscale and Nanoscale Physics +cond-mat/0510505 Strongly Correlated Electrons +cond-mat/0510508 Statistical Mechanics +cond-mat/0510515 Superconductivity +cond-mat/0510516 Statistical Mechanics +cond-mat/0510519 Strongly Correlated Electrons +cond-mat/0510524 Soft Condensed Matter +cond-mat/0510525 Superconductivity +cond-mat/0510526 Other Condensed Matter +cond-mat/0510528 Strongly Correlated Electrons +cond-mat/0510530 Disordered Systems and Neural Networks +cond-mat/0510531 Materials Science +cond-mat/0510535 Mesoscale and Nanoscale Physics +cond-mat/0510537 Strongly Correlated Electrons +cond-mat/0510538 Materials Science +cond-mat/0510540 Strongly Correlated Electrons +cond-mat/0510541 Superconductivity +cond-mat/0510542 Other Condensed Matter +cond-mat/0510544 Strongly Correlated Electrons +cond-mat/0510545 Superconductivity +cond-mat/0510550 Mesoscale and Nanoscale Physics +cond-mat/0510552 Strongly Correlated Electrons +cond-mat/0510554 Mesoscale and Nanoscale Physics +cond-mat/0510558 Superconductivity +cond-mat/0510561 Statistical Mechanics +cond-mat/0510564 Strongly Correlated Electrons +cond-mat/0510565 Mesoscale and Nanoscale Physics +cond-mat/0510570 Mesoscale and Nanoscale Physics +cond-mat/0510571 Statistical Mechanics +cond-mat/0510572 Superconductivity +cond-mat/0510577 Disordered Systems and Neural Networks +cond-mat/0510584 Other Condensed Matter +cond-mat/0510585 Materials Science +cond-mat/0510586 Strongly Correlated Electrons +cond-mat/0510587 Superconductivity +cond-mat/0510588 Other Condensed Matter +cond-mat/0510590 Strongly Correlated Electrons +cond-mat/0510591 Superconductivity +cond-mat/0510593 Superconductivity +cond-mat/0510594 Statistical Mechanics +cond-mat/0510595 Mesoscale and Nanoscale Physics +cond-mat/0510598 Strongly Correlated Electrons +cond-mat/0510601 Strongly Correlated Electrons +cond-mat/0510602 Strongly Correlated Electrons +cond-mat/0510604 Statistical Mechanics +cond-mat/0510606 Other Condensed Matter +cond-mat/0510608 Strongly Correlated Electrons +cond-mat/0510610 Materials Science +cond-mat/0510612 Superconductivity +cond-mat/0510613 Strongly Correlated Electrons +cond-mat/0510615 Strongly Correlated Electrons +cond-mat/0510616 Superconductivity +cond-mat/0510617 Disordered Systems and Neural Networks +cond-mat/0510618 Other Condensed Matter +cond-mat/0510619 Materials Science +cond-mat/0510621 Soft Condensed Matter +cond-mat/0510623 Statistical Mechanics +cond-mat/0510624 Statistical Mechanics +cond-mat/0510625 Materials Science +cond-mat/0510630 Other Condensed Matter +cond-mat/0510631 Soft Condensed Matter +cond-mat/0510632 Soft Condensed Matter +cond-mat/0510634 Other Condensed Matter +cond-mat/0510639 Statistical Mechanics +cond-mat/0510640 Statistical Mechanics +cond-mat/0510641 Strongly Correlated Electrons +cond-mat/0510645 Disordered Systems and Neural Networks +cond-mat/0510646 Soft Condensed Matter +cond-mat/0510649 Superconductivity +cond-mat/0510650 Disordered Systems and Neural Networks +cond-mat/0510652 Soft Condensed Matter +cond-mat/0510653 Statistical Mechanics +cond-mat/0510655 Mesoscale and Nanoscale Physics +cond-mat/0510657 Superconductivity +cond-mat/0510659 Superconductivity +cond-mat/0510663 Disordered Systems and Neural Networks +cond-mat/0510665 Superconductivity +cond-mat/0510670 Superconductivity +cond-mat/0510671 Soft Condensed Matter +cond-mat/0510672 Superconductivity +cond-mat/0510674 Superconductivity +cond-mat/0510675 Other Condensed Matter +cond-mat/0510676 Mesoscale and Nanoscale Physics +cond-mat/0510678 Soft Condensed Matter +cond-mat/0510686 Mesoscale and Nanoscale Physics +cond-mat/0510688 Mesoscale and Nanoscale Physics +cond-mat/0510692 Strongly Correlated Electrons +cond-mat/0510693 Statistical Mechanics +cond-mat/0510694 Superconductivity +cond-mat/0510697 Materials Science +cond-mat/0510700 Strongly Correlated Electrons +cond-mat/0510701 Strongly Correlated Electrons +cond-mat/0510702 Soft Condensed Matter +cond-mat/0510703 Soft Condensed Matter +cond-mat/0510705 Soft Condensed Matter +cond-mat/0510707 Superconductivity +cond-mat/0510708 Soft Condensed Matter +cond-mat/0510709 Other Condensed Matter +cond-mat/0510711 Other Condensed Matter +cond-mat/0510715 Mesoscale and Nanoscale Physics +cond-mat/0510716 Strongly Correlated Electrons +cond-mat/0510718 Materials Science +cond-mat/0510723 Statistical Mechanics +cond-mat/0510724 Statistical Mechanics +cond-mat/0510725 Other Condensed Matter +cond-mat/0510727 Disordered Systems and Neural Networks +cond-mat/0510728 Mesoscale and Nanoscale Physics +cond-mat/0510729 Disordered Systems and Neural Networks +cond-mat/0510731 Disordered Systems and Neural Networks +cond-mat/0510732 Mesoscale and Nanoscale Physics +cond-mat/0510733 Superconductivity +cond-mat/0510734 Mesoscale and Nanoscale Physics +cond-mat/0510735 Strongly Correlated Electrons +cond-mat/0510737 Soft Condensed Matter +cond-mat/0510738 Strongly Correlated Electrons +cond-mat/0510745 Mesoscale and Nanoscale Physics +cond-mat/0510747 Soft Condensed Matter +cond-mat/0510750 Other Condensed Matter +cond-mat/0510751 Other Condensed Matter +cond-mat/0510754 Disordered Systems and Neural Networks +cond-mat/0510758 Mesoscale and Nanoscale Physics +cond-mat/0510759 Materials Science +cond-mat/0510765 Mesoscale and Nanoscale Physics +cond-mat/0510766 Mesoscale and Nanoscale Physics +cond-mat/0510769 Other Condensed Matter +cond-mat/0510771 Mesoscale and Nanoscale Physics +cond-mat/0510772 Superconductivity +cond-mat/0510773 Soft Condensed Matter +cond-mat/0510778 Statistical Mechanics +cond-mat/0510784 Materials Science +cond-mat/0510785 Strongly Correlated Electrons +cond-mat/0510786 Mesoscale and Nanoscale Physics +cond-mat/0510788 Strongly Correlated Electrons +cond-mat/0510789 Mesoscale and Nanoscale Physics +cond-mat/0510790 Superconductivity +cond-mat/0510796 Materials Science +cond-mat/0510798 Mesoscale and Nanoscale Physics +cond-mat/0510799 Soft Condensed Matter +cond-mat/0510802 Mesoscale and Nanoscale Physics +cond-mat/0510805 Statistical Mechanics +cond-mat/0510807 Materials Science +cond-mat/0510810 Statistical Mechanics +cond-mat/0510811 Strongly Correlated Electrons +cond-mat/0510813 Soft Condensed Matter +cond-mat/0510814 Materials Science +cond-mat/0510815 Mesoscale and Nanoscale Physics +cond-mat/0510816 Statistical Mechanics +cond-mat/0510818 Materials Science +cond-mat/0510819 Mesoscale and Nanoscale Physics +cond-mat/0510821 Materials Science +cond-mat/0510823 Materials Science +cond-mat/0510824 Statistical Mechanics +cond-mat/0510825 Materials Science +cond-mat/0510828 Strongly Correlated Electrons +cond-mat/0510829 Superconductivity +cond-mat/0510830 Disordered Systems and Neural Networks +cond-mat/0510831 Mesoscale and Nanoscale Physics +cond-mat/0510834 Statistical Mechanics +cond-mat/0510836 Statistical Mechanics +cond-mat/0510841 Statistical Mechanics +cond-mat/0510842 Mesoscale and Nanoscale Physics +cond-mat/0511001 Strongly Correlated Electrons +cond-mat/0511002 Statistical Mechanics +cond-mat/0511003 Other Condensed Matter +cond-mat/0511004 Strongly Correlated Electrons +cond-mat/0511005 Statistical Mechanics +cond-mat/0511007 Soft Condensed Matter +cond-mat/0511009 Superconductivity +cond-mat/0511011 Other Condensed Matter +cond-mat/0511012 Superconductivity +cond-mat/0511013 Materials Science +cond-mat/0511016 Materials Science +cond-mat/0511022 Materials Science +cond-mat/0511023 Superconductivity +cond-mat/0511024 Strongly Correlated Electrons +cond-mat/0511025 Other Condensed Matter +cond-mat/0511031 Strongly Correlated Electrons +cond-mat/0511032 Soft Condensed Matter +cond-mat/0511034 Soft Condensed Matter +cond-mat/0511035 Materials Science +cond-mat/0511036 Other Condensed Matter +cond-mat/0511037 Materials Science +cond-mat/0511038 Materials Science +cond-mat/0511040 Mesoscale and Nanoscale Physics +cond-mat/0511041 Materials Science +cond-mat/0511043 Materials Science +cond-mat/0511044 Materials Science +cond-mat/0511048 Mesoscale and Nanoscale Physics +cond-mat/0511049 Statistical Mechanics +cond-mat/0511051 Strongly Correlated Electrons +cond-mat/0511055 Mesoscale and Nanoscale Physics +cond-mat/0511057 Mesoscale and Nanoscale Physics +cond-mat/0511058 Statistical Mechanics +cond-mat/0511060 Superconductivity +cond-mat/0511062 Strongly Correlated Electrons +cond-mat/0511063 Strongly Correlated Electrons +cond-mat/0511068 Strongly Correlated Electrons +cond-mat/0511070 Statistical Mechanics +cond-mat/0511073 Statistical Mechanics +cond-mat/0511077 Mesoscale and Nanoscale Physics +cond-mat/0511080 Other Condensed Matter +cond-mat/0511081 Strongly Correlated Electrons +cond-mat/0511082 Strongly Correlated Electrons +cond-mat/0511084 Materials Science +cond-mat/0511085 Strongly Correlated Electrons +cond-mat/0511086 Materials Science +cond-mat/0511087 Strongly Correlated Electrons +cond-mat/0511088 Other Condensed Matter +cond-mat/0511090 Strongly Correlated Electrons +cond-mat/0511092 Materials Science +cond-mat/0511093 Soft Condensed Matter +cond-mat/0511095 Materials Science +cond-mat/0511096 Other Condensed Matter +cond-mat/0511102 Soft Condensed Matter +cond-mat/0511103 Other Condensed Matter +cond-mat/0511106 Strongly Correlated Electrons +cond-mat/0511108 Superconductivity +cond-mat/0511109 Strongly Correlated Electrons +cond-mat/0511111 Soft Condensed Matter +cond-mat/0511116 Strongly Correlated Electrons +cond-mat/0511118 Mesoscale and Nanoscale Physics +cond-mat/0511120 Strongly Correlated Electrons +cond-mat/0511122 Statistical Mechanics +cond-mat/0511125 Strongly Correlated Electrons +cond-mat/0511129 Disordered Systems and Neural Networks +cond-mat/0511131 Statistical Mechanics +cond-mat/0511132 Superconductivity +cond-mat/0511133 Statistical Mechanics +cond-mat/0511134 Materials Science +cond-mat/0511135 Materials Science +cond-mat/0511136 Statistical Mechanics +cond-mat/0511138 Strongly Correlated Electrons +cond-mat/0511141 Statistical Mechanics +cond-mat/0511142 Superconductivity +cond-mat/0511143 Strongly Correlated Electrons +cond-mat/0511144 Mesoscale and Nanoscale Physics +cond-mat/0511148 Mesoscale and Nanoscale Physics +cond-mat/0511150 Strongly Correlated Electrons +cond-mat/0511151 Statistical Mechanics +cond-mat/0511153 Other Condensed Matter +cond-mat/0511154 Materials Science +cond-mat/0511156 Materials Science +cond-mat/0511157 Disordered Systems and Neural Networks +cond-mat/0511158 Strongly Correlated Electrons +cond-mat/0511159 Disordered Systems and Neural Networks +cond-mat/0511163 Other Condensed Matter +cond-mat/0511166 Superconductivity +cond-mat/0511167 Statistical Mechanics +cond-mat/0511168 Mesoscale and Nanoscale Physics +cond-mat/0511169 Soft Condensed Matter +cond-mat/0511171 Disordered Systems and Neural Networks +cond-mat/0511172 Soft Condensed Matter +cond-mat/0511173 Disordered Systems and Neural Networks +cond-mat/0511174 Materials Science +cond-mat/0511175 Superconductivity +cond-mat/0511177 Strongly Correlated Electrons +cond-mat/0511180 Strongly Correlated Electrons +cond-mat/0511185 Superconductivity +cond-mat/0511188 Materials Science +cond-mat/0511189 Materials Science +cond-mat/0511191 Mesoscale and Nanoscale Physics +cond-mat/0511192 Superconductivity +cond-mat/0511193 Mesoscale and Nanoscale Physics +cond-mat/0511194 Statistical Mechanics +cond-mat/0511196 Mesoscale and Nanoscale Physics +cond-mat/0511198 Soft Condensed Matter +cond-mat/0511202 Disordered Systems and Neural Networks +cond-mat/0511205 Soft Condensed Matter +cond-mat/0511206 Other Condensed Matter +cond-mat/0511208 Statistical Mechanics +cond-mat/0511209 Soft Condensed Matter +cond-mat/0511212 Superconductivity +cond-mat/0511214 Other Condensed Matter +cond-mat/0511215 Strongly Correlated Electrons +cond-mat/0511220 Strongly Correlated Electrons +cond-mat/0511221 Materials Science +cond-mat/0511222 Statistical Mechanics +cond-mat/0511224 Materials Science +cond-mat/0511225 Soft Condensed Matter +cond-mat/0511226 Mesoscale and Nanoscale Physics +cond-mat/0511227 Superconductivity +cond-mat/0511228 Statistical Mechanics +cond-mat/0511233 Soft Condensed Matter +cond-mat/0511234 Statistical Mechanics +cond-mat/0511235 Disordered Systems and Neural Networks +cond-mat/0511237 Statistical Mechanics +cond-mat/0511238 Mesoscale and Nanoscale Physics +cond-mat/0511240 Soft Condensed Matter +cond-mat/0511241 Soft Condensed Matter +cond-mat/0511242 Statistical Mechanics +cond-mat/0511243 Soft Condensed Matter +cond-mat/0511244 Strongly Correlated Electrons +cond-mat/0511245 Strongly Correlated Electrons +cond-mat/0511248 Statistical Mechanics +cond-mat/0511249 Strongly Correlated Electrons +cond-mat/0511250 Mesoscale and Nanoscale Physics +cond-mat/0511251 Materials Science +cond-mat/0511252 Strongly Correlated Electrons +cond-mat/0511258 Mesoscale and Nanoscale Physics +cond-mat/0511259 Mesoscale and Nanoscale Physics +cond-mat/0511260 Statistical Mechanics +cond-mat/0511264 Other Condensed Matter +cond-mat/0511267 Soft Condensed Matter +cond-mat/0511268 Strongly Correlated Electrons +cond-mat/0511273 Disordered Systems and Neural Networks +cond-mat/0511275 Other Condensed Matter +cond-mat/0511277 Statistical Mechanics +cond-mat/0511278 Other Condensed Matter +cond-mat/0511280 Disordered Systems and Neural Networks +cond-mat/0511281 Mesoscale and Nanoscale Physics +cond-mat/0511282 Materials Science +cond-mat/0511283 Disordered Systems and Neural Networks +cond-mat/0511284 Disordered Systems and Neural Networks +cond-mat/0511285 Mesoscale and Nanoscale Physics +cond-mat/0511286 Disordered Systems and Neural Networks +cond-mat/0511287 Mesoscale and Nanoscale Physics +cond-mat/0511288 Materials Science +cond-mat/0511297 Materials Science +cond-mat/0511310 Mesoscale and Nanoscale Physics +cond-mat/0511311 Soft Condensed Matter +cond-mat/0511316 Superconductivity +cond-mat/0511317 Statistical Mechanics +cond-mat/0511318 Materials Science +cond-mat/0511319 Mesoscale and Nanoscale Physics +cond-mat/0511321 Mesoscale and Nanoscale Physics +cond-mat/0511322 Statistical Mechanics +cond-mat/0511326 Statistical Mechanics +cond-mat/0511328 Materials Science +cond-mat/0511330 Other Condensed Matter +cond-mat/0511332 Statistical Mechanics +cond-mat/0511333 Other Condensed Matter +cond-mat/0511334 Superconductivity +cond-mat/0511335 Strongly Correlated Electrons +cond-mat/0511336 Other Condensed Matter +cond-mat/0511337 Strongly Correlated Electrons +cond-mat/0511338 Other Condensed Matter +cond-mat/0511340 Other Condensed Matter +cond-mat/0511342 Statistical Mechanics +cond-mat/0511345 Materials Science +cond-mat/0511346 Mesoscale and Nanoscale Physics +cond-mat/0511347 Statistical Mechanics +cond-mat/0511348 Materials Science +cond-mat/0511350 Mesoscale and Nanoscale Physics +cond-mat/0511351 Strongly Correlated Electrons +cond-mat/0511354 Other Condensed Matter +cond-mat/0511361 Materials Science +cond-mat/0511363 Mesoscale and Nanoscale Physics +cond-mat/0511364 Superconductivity +cond-mat/0511365 Superconductivity +cond-mat/0511366 Soft Condensed Matter +cond-mat/0511367 Strongly Correlated Electrons +cond-mat/0511368 Strongly Correlated Electrons +cond-mat/0511370 Mesoscale and Nanoscale Physics +cond-mat/0511371 Soft Condensed Matter +cond-mat/0511372 Strongly Correlated Electrons +cond-mat/0511373 Superconductivity +cond-mat/0511374 Strongly Correlated Electrons +cond-mat/0511375 Disordered Systems and Neural Networks +cond-mat/0511376 Superconductivity +cond-mat/0511378 Mesoscale and Nanoscale Physics +cond-mat/0511381 Soft Condensed Matter +cond-mat/0511384 Other Condensed Matter +cond-mat/0511388 Materials Science +cond-mat/0511391 Strongly Correlated Electrons +cond-mat/0511392 Materials Science +cond-mat/0511393 Materials Science +cond-mat/0511400 Materials Science +cond-mat/0511401 Other Condensed Matter +cond-mat/0511406 Materials Science +cond-mat/0511410 Statistical Mechanics +cond-mat/0511412 Statistical Mechanics +cond-mat/0511413 Materials Science +cond-mat/0511414 Mesoscale and Nanoscale Physics +cond-mat/0511415 Superconductivity +cond-mat/0511416 Superconductivity +cond-mat/0511422 Statistical Mechanics +cond-mat/0511424 Mesoscale and Nanoscale Physics +cond-mat/0511426 Superconductivity +cond-mat/0511430 Other Condensed Matter +cond-mat/0511432 Materials Science +cond-mat/0511433 Soft Condensed Matter +cond-mat/0511434 Mesoscale and Nanoscale Physics +cond-mat/0511436 Superconductivity +cond-mat/0511440 Materials Science +cond-mat/0511444 Other Condensed Matter +cond-mat/0511446 Strongly Correlated Electrons +cond-mat/0511448 Mesoscale and Nanoscale Physics +cond-mat/0511452 Superconductivity +cond-mat/0511454 Superconductivity +cond-mat/0511455 Materials Science +cond-mat/0511456 Statistical Mechanics +cond-mat/0511457 Mesoscale and Nanoscale Physics +cond-mat/0511461 Statistical Mechanics +cond-mat/0511468 Mesoscale and Nanoscale Physics +cond-mat/0511469 Strongly Correlated Electrons +cond-mat/0511471 Soft Condensed Matter +cond-mat/0511472 Soft Condensed Matter +cond-mat/0511477 Mesoscale and Nanoscale Physics +cond-mat/0511480 Mesoscale and Nanoscale Physics +cond-mat/0511481 Materials Science +cond-mat/0511482 Materials Science +cond-mat/0511483 Statistical Mechanics +cond-mat/0511487 Materials Science +cond-mat/0511488 Strongly Correlated Electrons +cond-mat/0511491 Mesoscale and Nanoscale Physics +cond-mat/0511495 Superconductivity +cond-mat/0511498 Materials Science +cond-mat/0511499 Materials Science +cond-mat/0511504 Statistical Mechanics +cond-mat/0511505 Mesoscale and Nanoscale Physics +cond-mat/0511506 Other Condensed Matter +cond-mat/0511507 Superconductivity +cond-mat/0511508 Superconductivity +cond-mat/0511514 Other Condensed Matter +cond-mat/0511515 Disordered Systems and Neural Networks +cond-mat/0511516 Strongly Correlated Electrons +cond-mat/0511517 Superconductivity +cond-mat/0511521 Statistical Mechanics +cond-mat/0511522 Materials Science +cond-mat/0511523 Materials Science +cond-mat/0511525 Disordered Systems and Neural Networks +cond-mat/0511530 Materials Science +cond-mat/0511533 Statistical Mechanics +cond-mat/0511536 Strongly Correlated Electrons +cond-mat/0511537 Statistical Mechanics +cond-mat/0511538 Mesoscale and Nanoscale Physics +cond-mat/0511539 Statistical Mechanics +cond-mat/0511540 Disordered Systems and Neural Networks +cond-mat/0511541 Superconductivity +cond-mat/0511544 Strongly Correlated Electrons +cond-mat/0511548 Mesoscale and Nanoscale Physics +cond-mat/0511549 Mesoscale and Nanoscale Physics +cond-mat/0511551 Soft Condensed Matter +cond-mat/0511553 Mesoscale and Nanoscale Physics +cond-mat/0511555 Mesoscale and Nanoscale Physics +cond-mat/0511557 Strongly Correlated Electrons +cond-mat/0511559 Statistical Mechanics +cond-mat/0511560 Superconductivity +cond-mat/0511561 Statistical Mechanics +cond-mat/0511562 Materials Science +cond-mat/0511564 Statistical Mechanics +cond-mat/0511565 Statistical Mechanics +cond-mat/0511566 Mesoscale and Nanoscale Physics +cond-mat/0511567 Materials Science +cond-mat/0511568 Strongly Correlated Electrons +cond-mat/0511569 Mesoscale and Nanoscale Physics +cond-mat/0511570 Statistical Mechanics +cond-mat/0511571 Disordered Systems and Neural Networks +cond-mat/0511572 Mesoscale and Nanoscale Physics +cond-mat/0511573 Soft Condensed Matter +cond-mat/0511576 Strongly Correlated Electrons +cond-mat/0511577 Mesoscale and Nanoscale Physics +cond-mat/0511579 Strongly Correlated Electrons +cond-mat/0511580 Other Condensed Matter +cond-mat/0511582 Strongly Correlated Electrons +cond-mat/0511583 Soft Condensed Matter +cond-mat/0511588 Statistical Mechanics +cond-mat/0511589 Strongly Correlated Electrons +cond-mat/0511590 Superconductivity +cond-mat/0511591 Strongly Correlated Electrons +cond-mat/0511593 Materials Science +cond-mat/0511594 Strongly Correlated Electrons +cond-mat/0511595 Statistical Mechanics +cond-mat/0511597 Statistical Mechanics +cond-mat/0511598 Disordered Systems and Neural Networks +cond-mat/0511601 Materials Science +cond-mat/0511603 Materials Science +cond-mat/0511604 Strongly Correlated Electrons +cond-mat/0511606 Statistical Mechanics +cond-mat/0511607 Strongly Correlated Electrons +cond-mat/0511611 Soft Condensed Matter +cond-mat/0511613 Statistical Mechanics +cond-mat/0511614 Statistical Mechanics +cond-mat/0511615 Strongly Correlated Electrons +cond-mat/0511616 Strongly Correlated Electrons +cond-mat/0511617 Statistical Mechanics +cond-mat/0511620 Strongly Correlated Electrons +cond-mat/0511621 Superconductivity +cond-mat/0511623 Soft Condensed Matter +cond-mat/0511627 Statistical Mechanics +cond-mat/0511628 Statistical Mechanics +cond-mat/0511629 Statistical Mechanics +cond-mat/0511630 Disordered Systems and Neural Networks +cond-mat/0511631 Mesoscale and Nanoscale Physics +cond-mat/0511640 Statistical Mechanics +cond-mat/0511642 Statistical Mechanics +cond-mat/0511643 Superconductivity +cond-mat/0511645 Statistical Mechanics +cond-mat/0511646 Statistical Mechanics +cond-mat/0511648 Disordered Systems and Neural Networks +cond-mat/0511654 Disordered Systems and Neural Networks +cond-mat/0511655 Statistical Mechanics +cond-mat/0511657 Other Condensed Matter +cond-mat/0511659 Strongly Correlated Electrons +cond-mat/0511660 Statistical Mechanics +cond-mat/0511661 Strongly Correlated Electrons +cond-mat/0511662 Strongly Correlated Electrons +cond-mat/0511664 Strongly Correlated Electrons +cond-mat/0511665 Strongly Correlated Electrons +cond-mat/0511667 Statistical Mechanics +cond-mat/0511669 Soft Condensed Matter +cond-mat/0511672 Statistical Mechanics +cond-mat/0511673 Statistical Mechanics +cond-mat/0511677 Mesoscale and Nanoscale Physics +cond-mat/0511678 Other Condensed Matter +cond-mat/0511681 Mesoscale and Nanoscale Physics +cond-mat/0511682 Materials Science +cond-mat/0511684 Other Condensed Matter +cond-mat/0511686 Statistical Mechanics +cond-mat/0511693 Soft Condensed Matter +cond-mat/0511695 Other Condensed Matter +cond-mat/0511699 Superconductivity +cond-mat/0511700 Other Condensed Matter +cond-mat/0511707 Materials Science +cond-mat/0511708 Strongly Correlated Electrons +cond-mat/0511709 Other Condensed Matter +cond-mat/0511712 Superconductivity +cond-mat/0511714 Soft Condensed Matter +cond-mat/0511717 Strongly Correlated Electrons +cond-mat/0511718 Superconductivity +cond-mat/0511719 Disordered Systems and Neural Networks +cond-mat/0511722 Materials Science +cond-mat/0511723 Mesoscale and Nanoscale Physics +cond-mat/0511724 Mesoscale and Nanoscale Physics +cond-mat/0511729 Strongly Correlated Electrons +cond-mat/0511730 Disordered Systems and Neural Networks +cond-mat/0511731 Other Condensed Matter +cond-mat/0511733 Mesoscale and Nanoscale Physics +cond-mat/0511738 Superconductivity +cond-mat/0511739 Strongly Correlated Electrons +cond-mat/0511741 Mesoscale and Nanoscale Physics +cond-mat/0511742 Materials Science +cond-mat/0511744 Strongly Correlated Electrons +cond-mat/0511745 Statistical Mechanics +cond-mat/0511747 Soft Condensed Matter +cond-mat/0511751 Other Condensed Matter +cond-mat/0511752 Other Condensed Matter +cond-mat/0512001 Strongly Correlated Electrons +cond-mat/0512002 Disordered Systems and Neural Networks +cond-mat/0512005 Statistical Mechanics +cond-mat/0512007 Other Condensed Matter +cond-mat/0512010 Superconductivity +cond-mat/0512011 Statistical Mechanics +cond-mat/0512015 Soft Condensed Matter +cond-mat/0512021 Disordered Systems and Neural Networks +cond-mat/0512029 Strongly Correlated Electrons +cond-mat/0512030 Strongly Correlated Electrons +cond-mat/0512031 Other Condensed Matter +cond-mat/0512033 Other Condensed Matter +cond-mat/0512036 Disordered Systems and Neural Networks +cond-mat/0512037 Materials Science +cond-mat/0512043 Disordered Systems and Neural Networks +cond-mat/0512048 Other Condensed Matter +cond-mat/0512049 Materials Science +cond-mat/0512050 Disordered Systems and Neural Networks +cond-mat/0512051 Statistical Mechanics +cond-mat/0512061 Strongly Correlated Electrons +cond-mat/0512062 Soft Condensed Matter +cond-mat/0512063 Superconductivity +cond-mat/0512064 Disordered Systems and Neural Networks +cond-mat/0512065 Materials Science +cond-mat/0512066 Mesoscale and Nanoscale Physics +cond-mat/0512067 Other Condensed Matter +cond-mat/0512071 Other Condensed Matter +cond-mat/0512077 Mesoscale and Nanoscale Physics +cond-mat/0512078 Strongly Correlated Electrons +cond-mat/0512080 Strongly Correlated Electrons +cond-mat/0512081 Statistical Mechanics +cond-mat/0512084 Disordered Systems and Neural Networks +cond-mat/0512089 Statistical Mechanics +cond-mat/0512091 Strongly Correlated Electrons +cond-mat/0512093 Superconductivity +cond-mat/0512094 Statistical Mechanics +cond-mat/0512096 Superconductivity +cond-mat/0512102 Other Condensed Matter +cond-mat/0512103 Statistical Mechanics +cond-mat/0512105 Superconductivity +cond-mat/0512107 Other Condensed Matter +cond-mat/0512108 Strongly Correlated Electrons +cond-mat/0512111 Strongly Correlated Electrons +cond-mat/0512114 Superconductivity +cond-mat/0512118 Superconductivity +cond-mat/0512125 Statistical Mechanics +cond-mat/0512128 Mesoscale and Nanoscale Physics +cond-mat/0512133 Strongly Correlated Electrons +cond-mat/0512138 Mesoscale and Nanoscale Physics +cond-mat/0512142 Materials Science +cond-mat/0512144 Soft Condensed Matter +cond-mat/0512150 Statistical Mechanics +cond-mat/0512151 Materials Science +cond-mat/0512152 Statistical Mechanics +cond-mat/0512154 Strongly Correlated Electrons +cond-mat/0512155 Disordered Systems and Neural Networks +cond-mat/0512156 Strongly Correlated Electrons +cond-mat/0512160 Mesoscale and Nanoscale Physics +cond-mat/0512161 Soft Condensed Matter +cond-mat/0512162 Soft Condensed Matter +cond-mat/0512163 Materials Science +cond-mat/0512167 Statistical Mechanics +cond-mat/0512169 Other Condensed Matter +cond-mat/0512170 Superconductivity +cond-mat/0512171 Statistical Mechanics +cond-mat/0512173 Superconductivity +cond-mat/0512178 Mesoscale and Nanoscale Physics +cond-mat/0512179 Strongly Correlated Electrons +cond-mat/0512180 Statistical Mechanics +cond-mat/0512182 Statistical Mechanics +cond-mat/0512185 Strongly Correlated Electrons +cond-mat/0512186 Disordered Systems and Neural Networks +cond-mat/0512188 Other Condensed Matter +cond-mat/0512196 Superconductivity +cond-mat/0512198 Superconductivity +cond-mat/0512200 Mesoscale and Nanoscale Physics +cond-mat/0512202 Strongly Correlated Electrons +cond-mat/0512203 Materials Science +cond-mat/0512204 Superconductivity +cond-mat/0512206 Superconductivity +cond-mat/0512207 Superconductivity +cond-mat/0512208 Statistical Mechanics +cond-mat/0512210 Mesoscale and Nanoscale Physics +cond-mat/0512215 Disordered Systems and Neural Networks +cond-mat/0512216 Other Condensed Matter +cond-mat/0512217 Soft Condensed Matter +cond-mat/0512218 Other Condensed Matter +cond-mat/0512221 Mesoscale and Nanoscale Physics +cond-mat/0512223 Materials Science +cond-mat/0512224 Materials Science +cond-mat/0512225 Materials Science +cond-mat/0512226 Materials Science +cond-mat/0512227 Other Condensed Matter +cond-mat/0512228 Materials Science +cond-mat/0512230 Mesoscale and Nanoscale Physics +cond-mat/0512233 Materials Science +cond-mat/0512234 Strongly Correlated Electrons +cond-mat/0512237 Soft Condensed Matter +cond-mat/0512238 Mesoscale and Nanoscale Physics +cond-mat/0512239 Mesoscale and Nanoscale Physics +cond-mat/0512240 Materials Science +cond-mat/0512244 Strongly Correlated Electrons +cond-mat/0512245 Strongly Correlated Electrons +cond-mat/0512246 Statistical Mechanics +cond-mat/0512247 Materials Science +cond-mat/0512252 Statistical Mechanics +cond-mat/0512260 Soft Condensed Matter +cond-mat/0512261 Strongly Correlated Electrons +cond-mat/0512264 Mesoscale and Nanoscale Physics +cond-mat/0512266 Statistical Mechanics +cond-mat/0512270 Strongly Correlated Electrons +cond-mat/0512271 Soft Condensed Matter +cond-mat/0512272 Strongly Correlated Electrons +cond-mat/0512274 Disordered Systems and Neural Networks +cond-mat/0512275 Mesoscale and Nanoscale Physics +cond-mat/0512276 Mesoscale and Nanoscale Physics +cond-mat/0512278 Statistical Mechanics +cond-mat/0512279 Materials Science +cond-mat/0512280 Mesoscale and Nanoscale Physics +cond-mat/0512281 Mesoscale and Nanoscale Physics +cond-mat/0512285 Superconductivity +cond-mat/0512286 Soft Condensed Matter +cond-mat/0512289 Mesoscale and Nanoscale Physics +cond-mat/0512291 Superconductivity +cond-mat/0512293 Materials Science +cond-mat/0512294 Strongly Correlated Electrons +cond-mat/0512295 Statistical Mechanics +cond-mat/0512299 Materials Science +cond-mat/0512303 Materials Science +cond-mat/0512305 Strongly Correlated Electrons +cond-mat/0512306 Other Condensed Matter +cond-mat/0512308 Disordered Systems and Neural Networks +cond-mat/0512310 Strongly Correlated Electrons +cond-mat/0512311 Other Condensed Matter +cond-mat/0512312 Mesoscale and Nanoscale Physics +cond-mat/0512313 Materials Science +cond-mat/0512315 Mesoscale and Nanoscale Physics +cond-mat/0512319 Strongly Correlated Electrons +cond-mat/0512323 Mesoscale and Nanoscale Physics +cond-mat/0512324 Mesoscale and Nanoscale Physics +cond-mat/0512325 Strongly Correlated Electrons +cond-mat/0512326 Strongly Correlated Electrons +cond-mat/0512331 Mesoscale and Nanoscale Physics +cond-mat/0512336 Strongly Correlated Electrons +cond-mat/0512340 Disordered Systems and Neural Networks +cond-mat/0512342 Strongly Correlated Electrons +cond-mat/0512343 Strongly Correlated Electrons +cond-mat/0512345 Mesoscale and Nanoscale Physics +cond-mat/0512346 Statistical Mechanics +cond-mat/0512349 Strongly Correlated Electrons +cond-mat/0512350 Strongly Correlated Electrons +cond-mat/0512352 Statistical Mechanics +cond-mat/0512355 Strongly Correlated Electrons +cond-mat/0512357 Statistical Mechanics +cond-mat/0512358 Statistical Mechanics +cond-mat/0512359 Other Condensed Matter +cond-mat/0512360 Strongly Correlated Electrons +cond-mat/0512366 Soft Condensed Matter +cond-mat/0512367 Soft Condensed Matter +cond-mat/0512372 Statistical Mechanics +cond-mat/0512374 Mesoscale and Nanoscale Physics +cond-mat/0512376 Strongly Correlated Electrons +cond-mat/0512377 Mesoscale and Nanoscale Physics +cond-mat/0512379 Statistical Mechanics +cond-mat/0512380 Statistical Mechanics +cond-mat/0512381 Statistical Mechanics +cond-mat/0512383 Disordered Systems and Neural Networks +cond-mat/0512384 Mesoscale and Nanoscale Physics +cond-mat/0512385 Mesoscale and Nanoscale Physics +cond-mat/0512388 Superconductivity +cond-mat/0512389 Strongly Correlated Electrons +cond-mat/0512395 Statistical Mechanics +cond-mat/0512400 Strongly Correlated Electrons +cond-mat/0512401 Materials Science +cond-mat/0512402 Superconductivity +cond-mat/0512412 Mesoscale and Nanoscale Physics +cond-mat/0512417 Materials Science +cond-mat/0512419 Disordered Systems and Neural Networks +cond-mat/0512421 Statistical Mechanics +cond-mat/0512427 Strongly Correlated Electrons +cond-mat/0512429 Statistical Mechanics +cond-mat/0512430 Other Condensed Matter +cond-mat/0512432 Superconductivity +cond-mat/0512435 Other Condensed Matter +cond-mat/0512437 Mesoscale and Nanoscale Physics +cond-mat/0512439 Mesoscale and Nanoscale Physics +cond-mat/0512445 Mesoscale and Nanoscale Physics +cond-mat/0512448 Disordered Systems and Neural Networks +cond-mat/0512453 Other Condensed Matter +cond-mat/0512454 Strongly Correlated Electrons +cond-mat/0512455 Strongly Correlated Electrons +cond-mat/0512457 Strongly Correlated Electrons +cond-mat/0512458 Mesoscale and Nanoscale Physics +cond-mat/0512460 Other Condensed Matter +cond-mat/0512464 Other Condensed Matter +cond-mat/0512469 Materials Science +cond-mat/0512472 Statistical Mechanics +cond-mat/0512473 Soft Condensed Matter +cond-mat/0512474 Statistical Mechanics +cond-mat/0512476 Mesoscale and Nanoscale Physics +cond-mat/0512477 Soft Condensed Matter +cond-mat/0512479 Mesoscale and Nanoscale Physics +cond-mat/0512482 Soft Condensed Matter +cond-mat/0512483 Soft Condensed Matter +cond-mat/0512488 Disordered Systems and Neural Networks +cond-mat/0512490 Materials Science +cond-mat/0512492 Statistical Mechanics +cond-mat/0512493 Superconductivity +cond-mat/0512495 Superconductivity +cond-mat/0512497 Statistical Mechanics +cond-mat/0512500 Mesoscale and Nanoscale Physics +cond-mat/0512503 Other Condensed Matter +cond-mat/0512506 Strongly Correlated Electrons +cond-mat/0512507 Strongly Correlated Electrons +cond-mat/0512510 Strongly Correlated Electrons +cond-mat/0512511 Statistical Mechanics +cond-mat/0512520 Other Condensed Matter +cond-mat/0512521 Strongly Correlated Electrons +cond-mat/0512522 Other Condensed Matter +cond-mat/0512523 Other Condensed Matter +cond-mat/0512524 Strongly Correlated Electrons +cond-mat/0512525 Mesoscale and Nanoscale Physics +cond-mat/0512527 Strongly Correlated Electrons +cond-mat/0512530 Mesoscale and Nanoscale Physics +cond-mat/0512533 Materials Science +cond-mat/0512535 Strongly Correlated Electrons +cond-mat/0512538 Mesoscale and Nanoscale Physics +cond-mat/0512539 Statistical Mechanics +cond-mat/0512540 Strongly Correlated Electrons +cond-mat/0512542 Strongly Correlated Electrons +cond-mat/0512543 Mesoscale and Nanoscale Physics +cond-mat/0512546 Strongly Correlated Electrons +cond-mat/0512547 Other Condensed Matter +cond-mat/0512550 Other Condensed Matter +cond-mat/0512551 Statistical Mechanics +cond-mat/0512552 Statistical Mechanics +cond-mat/0512553 Statistical Mechanics +cond-mat/0512554 Materials Science +cond-mat/0512560 Strongly Correlated Electrons +cond-mat/0512561 Materials Science +cond-mat/0512564 Statistical Mechanics +cond-mat/0512566 Mesoscale and Nanoscale Physics +cond-mat/0512568 Mesoscale and Nanoscale Physics +cond-mat/0512569 Soft Condensed Matter +cond-mat/0512573 Superconductivity +cond-mat/0512574 Statistical Mechanics +cond-mat/0512575 Soft Condensed Matter +cond-mat/0512576 Mesoscale and Nanoscale Physics +cond-mat/0512584 Other Condensed Matter +cond-mat/0512585 Disordered Systems and Neural Networks +cond-mat/0512587 Strongly Correlated Electrons +cond-mat/0512589 Strongly Correlated Electrons +cond-mat/0512593 Superconductivity +cond-mat/0512594 Strongly Correlated Electrons +cond-mat/0512599 Soft Condensed Matter +cond-mat/0512601 Superconductivity +cond-mat/0512605 Other Condensed Matter +cond-mat/0512607 Strongly Correlated Electrons +cond-mat/0512613 Materials Science +cond-mat/0512614 Disordered Systems and Neural Networks +cond-mat/0512617 Materials Science +cond-mat/0512618 Materials Science +cond-mat/0512621 Other Condensed Matter +cond-mat/0512622 Statistical Mechanics +cond-mat/0512630 Statistical Mechanics +cond-mat/0512631 Statistical Mechanics +cond-mat/0512632 Materials Science +cond-mat/0512635 Strongly Correlated Electrons +cond-mat/0512636 Strongly Correlated Electrons +cond-mat/0512640 Statistical Mechanics +cond-mat/0512645 Soft Condensed Matter +cond-mat/0512646 Superconductivity +cond-mat/0512650 Mesoscale and Nanoscale Physics +cond-mat/0512651 Soft Condensed Matter +cond-mat/0512652 Strongly Correlated Electrons +cond-mat/0512653 Materials Science +cond-mat/0512656 Superconductivity +cond-mat/0512657 Statistical Mechanics +cond-mat/0512660 Soft Condensed Matter +cond-mat/0512663 Disordered Systems and Neural Networks +cond-mat/0512666 Soft Condensed Matter +cond-mat/0512668 Mesoscale and Nanoscale Physics +cond-mat/0512669 Strongly Correlated Electrons +cond-mat/0512673 Materials Science +cond-mat/0512674 Strongly Correlated Electrons +cond-mat/0512679 Superconductivity +cond-mat/0512683 Superconductivity +cond-mat/0512687 Soft Condensed Matter +cond-mat/0512692 Mesoscale and Nanoscale Physics +cond-mat/0512694 Materials Science +cond-mat/0512696 Strongly Correlated Electrons +cond-mat/0512697 Mesoscale and Nanoscale Physics +cond-mat/0512699 Statistical Mechanics +cond-mat/0512700 Superconductivity +cond-mat/0512702 Strongly Correlated Electrons +cond-mat/0512703 Statistical Mechanics +cond-mat/0512704 Superconductivity +cond-mat/0512705 Materials Science +cond-mat/0512707 Soft Condensed Matter +cond-mat/0512708 Disordered Systems and Neural Networks +cond-mat/0512712 Mesoscale and Nanoscale Physics +cond-mat/0512715 Mesoscale and Nanoscale Physics +cond-mat/0512716 Other Condensed Matter +cond-mat/0512721 Materials Science +cond-mat/0512722 Statistical Mechanics +cond-mat/0512723 Statistical Mechanics +cond-mat/0512724 Statistical Mechanics +cond-mat/0512725 Materials Science +cond-mat/0512727 Strongly Correlated Electrons +cond-mat/0512728 Soft Condensed Matter +cond-mat/0512729 Disordered Systems and Neural Networks +cond-mat/0512730 Mesoscale and Nanoscale Physics +cond-mat/0601008 Superconductivity +cond-mat/0601009 Other Condensed Matter +cond-mat/0601011 Other Condensed Matter +cond-mat/0601012 Statistical Mechanics +cond-mat/0601013 Materials Science +cond-mat/0601017 Other Condensed Matter +cond-mat/0601019 Mesoscale and Nanoscale Physics +cond-mat/0601023 Materials Science +cond-mat/0601024 Superconductivity +cond-mat/0601027 Disordered Systems and Neural Networks +cond-mat/0601029 Materials Science +cond-mat/0601030 Materials Science +cond-mat/0601031 Other Condensed Matter +cond-mat/0601032 Other Condensed Matter +cond-mat/0601034 Mesoscale and Nanoscale Physics +cond-mat/0601037 Soft Condensed Matter +cond-mat/0601038 Statistical Mechanics +cond-mat/0601040 Strongly Correlated Electrons +cond-mat/0601041 Superconductivity +cond-mat/0601047 Soft Condensed Matter +cond-mat/0601050 Materials Science +cond-mat/0601051 Materials Science +cond-mat/0601052 Statistical Mechanics +cond-mat/0601055 Statistical Mechanics +cond-mat/0601057 Materials Science +cond-mat/0601059 Materials Science +cond-mat/0601060 Strongly Correlated Electrons +cond-mat/0601062 Strongly Correlated Electrons +cond-mat/0601063 Strongly Correlated Electrons +cond-mat/0601066 Strongly Correlated Electrons +cond-mat/0601068 Materials Science +cond-mat/0601069 Mesoscale and Nanoscale Physics +cond-mat/0601070 Materials Science +cond-mat/0601071 Materials Science +cond-mat/0601073 Statistical Mechanics +cond-mat/0601074 Statistical Mechanics +cond-mat/0601080 Superconductivity +cond-mat/0601082 Disordered Systems and Neural Networks +cond-mat/0601083 Strongly Correlated Electrons +cond-mat/0601087 Statistical Mechanics +cond-mat/0601089 Superconductivity +cond-mat/0601093 Materials Science +cond-mat/0601094 Soft Condensed Matter +cond-mat/0601096 Disordered Systems and Neural Networks +cond-mat/0601097 Other Condensed Matter +cond-mat/0601098 Materials Science +cond-mat/0601102 Strongly Correlated Electrons +cond-mat/0601104 Soft Condensed Matter +cond-mat/0601107 Materials Science +cond-mat/0601108 Statistical Mechanics +cond-mat/0601110 Materials Science +cond-mat/0601111 Superconductivity +cond-mat/0601112 Superconductivity +cond-mat/0601113 Strongly Correlated Electrons +cond-mat/0601114 Strongly Correlated Electrons +cond-mat/0601116 Superconductivity +cond-mat/0601117 Materials Science +cond-mat/0601119 Statistical Mechanics +cond-mat/0601121 Strongly Correlated Electrons +cond-mat/0601123 Materials Science +cond-mat/0601124 Soft Condensed Matter +cond-mat/0601125 Statistical Mechanics +cond-mat/0601127 Statistical Mechanics +cond-mat/0601130 Statistical Mechanics +cond-mat/0601132 Superconductivity +cond-mat/0601133 Other Condensed Matter +cond-mat/0601134 Strongly Correlated Electrons +cond-mat/0601135 Mesoscale and Nanoscale Physics +cond-mat/0601137 Mesoscale and Nanoscale Physics +cond-mat/0601141 Mesoscale and Nanoscale Physics +cond-mat/0601142 Superconductivity +cond-mat/0601144 Strongly Correlated Electrons +cond-mat/0601148 Superconductivity +cond-mat/0601149 Other Condensed Matter +cond-mat/0601150 Statistical Mechanics +cond-mat/0601155 Statistical Mechanics +cond-mat/0601156 Superconductivity +cond-mat/0601157 Superconductivity +cond-mat/0601159 Statistical Mechanics +cond-mat/0601161 Materials Science +cond-mat/0601162 Mesoscale and Nanoscale Physics +cond-mat/0601165 Soft Condensed Matter +cond-mat/0601168 Soft Condensed Matter +cond-mat/0601169 Strongly Correlated Electrons +cond-mat/0601171 Mesoscale and Nanoscale Physics +cond-mat/0601172 Materials Science +cond-mat/0601173 Superconductivity +cond-mat/0601174 Strongly Correlated Electrons +cond-mat/0601179 Soft Condensed Matter +cond-mat/0601181 Statistical Mechanics +cond-mat/0601189 Statistical Mechanics +cond-mat/0601191 Superconductivity +cond-mat/0601193 Disordered Systems and Neural Networks +cond-mat/0601194 Materials Science +cond-mat/0601197 Strongly Correlated Electrons +cond-mat/0601198 Other Condensed Matter +cond-mat/0601200 Mesoscale and Nanoscale Physics +cond-mat/0601202 Superconductivity +cond-mat/0601203 Strongly Correlated Electrons +cond-mat/0601206 Soft Condensed Matter +cond-mat/0601207 Statistical Mechanics +cond-mat/0601209 Statistical Mechanics +cond-mat/0601213 Superconductivity +cond-mat/0601214 Strongly Correlated Electrons +cond-mat/0601217 Superconductivity +cond-mat/0601221 Other Condensed Matter +cond-mat/0601222 Strongly Correlated Electrons +cond-mat/0601223 Superconductivity +cond-mat/0601225 Statistical Mechanics +cond-mat/0601226 Materials Science +cond-mat/0601227 Mesoscale and Nanoscale Physics +cond-mat/0601228 Other Condensed Matter +cond-mat/0601230 Statistical Mechanics +cond-mat/0601231 Strongly Correlated Electrons +cond-mat/0601232 Mesoscale and Nanoscale Physics +cond-mat/0601237 Mesoscale and Nanoscale Physics +cond-mat/0601238 Disordered Systems and Neural Networks +cond-mat/0601239 Disordered Systems and Neural Networks +cond-mat/0601245 Superconductivity +cond-mat/0601246 Other Condensed Matter +cond-mat/0601251 Statistical Mechanics +cond-mat/0601256 Mesoscale and Nanoscale Physics +cond-mat/0601257 Superconductivity +cond-mat/0601259 Disordered Systems and Neural Networks +cond-mat/0601262 Disordered Systems and Neural Networks +cond-mat/0601263 Statistical Mechanics +cond-mat/0601264 Strongly Correlated Electrons +cond-mat/0601266 Disordered Systems and Neural Networks +cond-mat/0601267 Statistical Mechanics +cond-mat/0601270 Materials Science +cond-mat/0601271 Strongly Correlated Electrons +cond-mat/0601280 Strongly Correlated Electrons +cond-mat/0601281 Mesoscale and Nanoscale Physics +cond-mat/0601283 Soft Condensed Matter +cond-mat/0601287 Soft Condensed Matter +cond-mat/0601289 Statistical Mechanics +cond-mat/0601290 Statistical Mechanics +cond-mat/0601292 Mesoscale and Nanoscale Physics +cond-mat/0601294 Mesoscale and Nanoscale Physics +cond-mat/0601296 Materials Science +cond-mat/0601298 Soft Condensed Matter +cond-mat/0601302 Strongly Correlated Electrons +cond-mat/0601305 Materials Science +cond-mat/0601306 Strongly Correlated Electrons +cond-mat/0601308 Materials Science +cond-mat/0601310 Statistical Mechanics +cond-mat/0601311 Superconductivity +cond-mat/0601312 Mesoscale and Nanoscale Physics +cond-mat/0601318 Other Condensed Matter +cond-mat/0601319 Materials Science +cond-mat/0601323 Other Condensed Matter +cond-mat/0601324 Soft Condensed Matter +cond-mat/0601326 Strongly Correlated Electrons +cond-mat/0601327 Mesoscale and Nanoscale Physics +cond-mat/0601331 Strongly Correlated Electrons +cond-mat/0601336 Soft Condensed Matter +cond-mat/0601338 Strongly Correlated Electrons +cond-mat/0601339 Superconductivity +cond-mat/0601343 Materials Science +cond-mat/0601344 Statistical Mechanics +cond-mat/0601346 Materials Science +cond-mat/0601348 Soft Condensed Matter +cond-mat/0601352 Statistical Mechanics +cond-mat/0601353 Mesoscale and Nanoscale Physics +cond-mat/0601355 Soft Condensed Matter +cond-mat/0601359 Superconductivity +cond-mat/0601361 Soft Condensed Matter +cond-mat/0601362 Statistical Mechanics +cond-mat/0601363 Strongly Correlated Electrons +cond-mat/0601364 Materials Science +cond-mat/0601366 Mesoscale and Nanoscale Physics +cond-mat/0601367 Mesoscale and Nanoscale Physics +cond-mat/0601368 Soft Condensed Matter +cond-mat/0601374 Strongly Correlated Electrons +cond-mat/0601379 Mesoscale and Nanoscale Physics +cond-mat/0601380 Mesoscale and Nanoscale Physics +cond-mat/0601383 Materials Science +cond-mat/0601386 Superconductivity +cond-mat/0601388 Soft Condensed Matter +cond-mat/0601390 Mesoscale and Nanoscale Physics +cond-mat/0601392 Other Condensed Matter +cond-mat/0601396 Strongly Correlated Electrons +cond-mat/0601400 Soft Condensed Matter +cond-mat/0601401 Materials Science +cond-mat/0601403 Disordered Systems and Neural Networks +cond-mat/0601410 Statistical Mechanics +cond-mat/0601411 Strongly Correlated Electrons +cond-mat/0601412 Superconductivity +cond-mat/0601416 Other Condensed Matter +cond-mat/0601417 Soft Condensed Matter +cond-mat/0601419 Statistical Mechanics +cond-mat/0601421 Mesoscale and Nanoscale Physics +cond-mat/0601426 Soft Condensed Matter +cond-mat/0601428 Strongly Correlated Electrons +cond-mat/0601429 Disordered Systems and Neural Networks +cond-mat/0601431 Statistical Mechanics +cond-mat/0601434 Mesoscale and Nanoscale Physics +cond-mat/0601436 Mesoscale and Nanoscale Physics +cond-mat/0601438 Mesoscale and Nanoscale Physics +cond-mat/0601439 Materials Science +cond-mat/0601441 Mesoscale and Nanoscale Physics +cond-mat/0601446 Other Condensed Matter +cond-mat/0601448 Other Condensed Matter +cond-mat/0601451 Strongly Correlated Electrons +cond-mat/0601454 Mesoscale and Nanoscale Physics +cond-mat/0601456 Superconductivity +cond-mat/0601457 Superconductivity +cond-mat/0601458 Mesoscale and Nanoscale Physics +cond-mat/0601460 Superconductivity +cond-mat/0601462 Soft Condensed Matter +cond-mat/0601463 Mesoscale and Nanoscale Physics +cond-mat/0601465 Superconductivity +cond-mat/0601466 Mesoscale and Nanoscale Physics +cond-mat/0601468 Materials Science +cond-mat/0601469 Materials Science +cond-mat/0601473 Disordered Systems and Neural Networks +cond-mat/0601474 Statistical Mechanics +cond-mat/0601478 Strongly Correlated Electrons +cond-mat/0601479 Materials Science +cond-mat/0601481 Strongly Correlated Electrons +cond-mat/0601482 Strongly Correlated Electrons +cond-mat/0601483 Other Condensed Matter +cond-mat/0601485 Other Condensed Matter +cond-mat/0601486 Strongly Correlated Electrons +cond-mat/0601487 Statistical Mechanics +cond-mat/0601488 Superconductivity +cond-mat/0601491 Strongly Correlated Electrons +cond-mat/0601494 Strongly Correlated Electrons +cond-mat/0601496 Strongly Correlated Electrons +cond-mat/0601498 Strongly Correlated Electrons +cond-mat/0601499 Other Condensed Matter +cond-mat/0601501 Superconductivity +cond-mat/0601504 Materials Science +cond-mat/0601505 Materials Science +cond-mat/0601506 Materials Science +cond-mat/0601508 Statistical Mechanics +cond-mat/0601511 Strongly Correlated Electrons +cond-mat/0601512 Mesoscale and Nanoscale Physics +cond-mat/0601513 Materials Science +cond-mat/0601517 Mesoscale and Nanoscale Physics +cond-mat/0601518 Statistical Mechanics +cond-mat/0601521 Materials Science +cond-mat/0601522 Superconductivity +cond-mat/0601524 Soft Condensed Matter +cond-mat/0601526 Superconductivity +cond-mat/0601527 Soft Condensed Matter +cond-mat/0601528 Materials Science +cond-mat/0601533 Statistical Mechanics +cond-mat/0601538 Strongly Correlated Electrons +cond-mat/0601539 Other Condensed Matter +cond-mat/0601542 Other Condensed Matter +cond-mat/0601547 Materials Science +cond-mat/0601549 Superconductivity +cond-mat/0601551 Superconductivity +cond-mat/0601556 Mesoscale and Nanoscale Physics +cond-mat/0601557 Soft Condensed Matter +cond-mat/0601560 Soft Condensed Matter +cond-mat/0601561 Disordered Systems and Neural Networks +cond-mat/0601563 Materials Science +cond-mat/0601564 Superconductivity +cond-mat/0601567 Soft Condensed Matter +cond-mat/0601568 Statistical Mechanics +cond-mat/0601571 Materials Science +cond-mat/0601573 Statistical Mechanics +cond-mat/0601574 Materials Science +cond-mat/0601575 Strongly Correlated Electrons +cond-mat/0601578 Strongly Correlated Electrons +cond-mat/0601580 Strongly Correlated Electrons +cond-mat/0601581 Superconductivity +cond-mat/0601582 Statistical Mechanics +cond-mat/0601583 Strongly Correlated Electrons +cond-mat/0601585 Statistical Mechanics +cond-mat/0601586 Statistical Mechanics +cond-mat/0601587 Strongly Correlated Electrons +cond-mat/0601591 Mesoscale and Nanoscale Physics +cond-mat/0601593 Materials Science +cond-mat/0601596 Mesoscale and Nanoscale Physics +cond-mat/0601597 Mesoscale and Nanoscale Physics +cond-mat/0601598 Mesoscale and Nanoscale Physics +cond-mat/0601601 Strongly Correlated Electrons +cond-mat/0601603 Materials Science +cond-mat/0601604 Statistical Mechanics +cond-mat/0601605 Statistical Mechanics +cond-mat/0601606 Mesoscale and Nanoscale Physics +cond-mat/0601607 Mesoscale and Nanoscale Physics +cond-mat/0601608 Materials Science +cond-mat/0601609 Statistical Mechanics +cond-mat/0601610 Other Condensed Matter +cond-mat/0601612 Strongly Correlated Electrons +cond-mat/0601613 Strongly Correlated Electrons +cond-mat/0601614 Mesoscale and Nanoscale Physics +cond-mat/0601615 Statistical Mechanics +cond-mat/0601616 Strongly Correlated Electrons +cond-mat/0601618 Statistical Mechanics +cond-mat/0601619 Materials Science +cond-mat/0601620 Materials Science +cond-mat/0601624 Other Condensed Matter +cond-mat/0601625 Strongly Correlated Electrons +cond-mat/0601628 Other Condensed Matter +cond-mat/0601630 Mesoscale and Nanoscale Physics +cond-mat/0601631 Superconductivity +cond-mat/0601632 Mesoscale and Nanoscale Physics +cond-mat/0601639 Disordered Systems and Neural Networks +cond-mat/0601640 Statistical Mechanics +cond-mat/0601646 Materials Science +cond-mat/0601647 Materials Science +cond-mat/0601650 Other Condensed Matter +cond-mat/0601654 Mesoscale and Nanoscale Physics +cond-mat/0601656 Superconductivity +cond-mat/0601657 Statistical Mechanics +cond-mat/0601658 Materials Science +cond-mat/0601659 Superconductivity +cond-mat/0601660 Statistical Mechanics +cond-mat/0601661 Materials Science +cond-mat/0601662 Materials Science +cond-mat/0601663 Materials Science +cond-mat/0601664 Other Condensed Matter +cond-mat/0601666 Soft Condensed Matter +cond-mat/0601667 Mesoscale and Nanoscale Physics +cond-mat/0601668 Materials Science +cond-mat/0601669 Superconductivity +cond-mat/0601671 Materials Science +cond-mat/0601672 Statistical Mechanics +cond-mat/0601674 Mesoscale and Nanoscale Physics +cond-mat/0601677 Materials Science +cond-mat/0601678 Mesoscale and Nanoscale Physics +cond-mat/0601683 Statistical Mechanics +cond-mat/0601687 Mesoscale and Nanoscale Physics +cond-mat/0601688 Soft Condensed Matter +cond-mat/0601689 Materials Science +cond-mat/0601690 Other Condensed Matter +cond-mat/0601691 Strongly Correlated Electrons +cond-mat/0601692 Statistical Mechanics +cond-mat/0601696 Strongly Correlated Electrons +cond-mat/0601697 Superconductivity +cond-mat/0601698 Superconductivity +cond-mat/0601700 Disordered Systems and Neural Networks +cond-mat/0601704 Mesoscale and Nanoscale Physics +cond-mat/0601705 Soft Condensed Matter +cond-mat/0601706 Mesoscale and Nanoscale Physics +cond-mat/0601707 Superconductivity +cond-mat/0601708 Soft Condensed Matter +cond-mat/0601710 Materials Science +cond-mat/0601711 Disordered Systems and Neural Networks +cond-mat/0601712 Strongly Correlated Electrons +cond-mat/0601713 Other Condensed Matter +cond-mat/0601715 Strongly Correlated Electrons +cond-mat/0601717 Mesoscale and Nanoscale Physics +cond-mat/0601719 Strongly Correlated Electrons +cond-mat/0602004 Mesoscale and Nanoscale Physics +cond-mat/0602005 Soft Condensed Matter +cond-mat/0602006 Mesoscale and Nanoscale Physics +cond-mat/0602012 Superconductivity +cond-mat/0602015 Strongly Correlated Electrons +cond-mat/0602021 Soft Condensed Matter +cond-mat/0602022 Other Condensed Matter +cond-mat/0602023 Superconductivity +cond-mat/0602025 Soft Condensed Matter +cond-mat/0602028 Materials Science +cond-mat/0602030 Strongly Correlated Electrons +cond-mat/0602031 Materials Science +cond-mat/0602033 Strongly Correlated Electrons +cond-mat/0602039 Mesoscale and Nanoscale Physics +cond-mat/0602040 Statistical Mechanics +cond-mat/0602041 Disordered Systems and Neural Networks +cond-mat/0602043 Statistical Mechanics +cond-mat/0602044 Soft Condensed Matter +cond-mat/0602046 Statistical Mechanics +cond-mat/0602047 Superconductivity +cond-mat/0602048 Other Condensed Matter +cond-mat/0602054 Soft Condensed Matter +cond-mat/0602055 Other Condensed Matter +cond-mat/0602058 Mesoscale and Nanoscale Physics +cond-mat/0602059 Statistical Mechanics +cond-mat/0602060 Strongly Correlated Electrons +cond-mat/0602061 Other Condensed Matter +cond-mat/0602063 Mesoscale and Nanoscale Physics +cond-mat/0602067 Materials Science +cond-mat/0602070 Other Condensed Matter +cond-mat/0602071 Materials Science +cond-mat/0602073 Materials Science +cond-mat/0602076 Disordered Systems and Neural Networks +cond-mat/0602078 Statistical Mechanics +cond-mat/0602080 Statistical Mechanics +cond-mat/0602084 Disordered Systems and Neural Networks +cond-mat/0602089 Strongly Correlated Electrons +cond-mat/0602091 Statistical Mechanics +cond-mat/0602093 Mesoscale and Nanoscale Physics +cond-mat/0602096 Materials Science +cond-mat/0602097 Statistical Mechanics +cond-mat/0602098 Superconductivity +cond-mat/0602101 Mesoscale and Nanoscale Physics +cond-mat/0602102 Superconductivity +cond-mat/0602103 Other Condensed Matter +cond-mat/0602104 Materials Science +cond-mat/0602105 Materials Science +cond-mat/0602106 Strongly Correlated Electrons +cond-mat/0602107 Mesoscale and Nanoscale Physics +cond-mat/0602108 Other Condensed Matter +cond-mat/0602114 Strongly Correlated Electrons +cond-mat/0602116 Materials Science +cond-mat/0602117 Materials Science +cond-mat/0602118 Soft Condensed Matter +cond-mat/0602119 Other Condensed Matter +cond-mat/0602120 Superconductivity +cond-mat/0602121 Mesoscale and Nanoscale Physics +cond-mat/0602122 Mesoscale and Nanoscale Physics +cond-mat/0602124 Soft Condensed Matter +cond-mat/0602126 Strongly Correlated Electrons +cond-mat/0602127 Materials Science +cond-mat/0602128 Strongly Correlated Electrons +cond-mat/0602130 Statistical Mechanics +cond-mat/0602132 Soft Condensed Matter +cond-mat/0602135 Mesoscale and Nanoscale Physics +cond-mat/0602137 Materials Science +cond-mat/0602142 Superconductivity +cond-mat/0602144 Statistical Mechanics +cond-mat/0602148 Disordered Systems and Neural Networks +cond-mat/0602149 Materials Science +cond-mat/0602150 Superconductivity +cond-mat/0602151 Mesoscale and Nanoscale Physics +cond-mat/0602154 Soft Condensed Matter +cond-mat/0602157 Superconductivity +cond-mat/0602161 Strongly Correlated Electrons +cond-mat/0602163 Other Condensed Matter +cond-mat/0602164 Superconductivity +cond-mat/0602167 Materials Science +cond-mat/0602171 Statistical Mechanics +cond-mat/0602172 Mesoscale and Nanoscale Physics +cond-mat/0602175 Materials Science +cond-mat/0602178 Statistical Mechanics +cond-mat/0602179 Statistical Mechanics +cond-mat/0602181 Materials Science +cond-mat/0602183 Disordered Systems and Neural Networks +cond-mat/0602185 Materials Science +cond-mat/0602188 Soft Condensed Matter +cond-mat/0602189 Strongly Correlated Electrons +cond-mat/0602190 Mesoscale and Nanoscale Physics +cond-mat/0602191 Other Condensed Matter +cond-mat/0602192 Statistical Mechanics +cond-mat/0602193 Statistical Mechanics +cond-mat/0602194 Mesoscale and Nanoscale Physics +cond-mat/0602195 Other Condensed Matter +cond-mat/0602196 Mesoscale and Nanoscale Physics +cond-mat/0602197 Mesoscale and Nanoscale Physics +cond-mat/0602198 Statistical Mechanics +cond-mat/0602199 Mesoscale and Nanoscale Physics +cond-mat/0602202 Statistical Mechanics +cond-mat/0602203 Materials Science +cond-mat/0602206 Other Condensed Matter +cond-mat/0602208 Statistical Mechanics +cond-mat/0602211 Materials Science +cond-mat/0602214 Strongly Correlated Electrons +cond-mat/0602216 Statistical Mechanics +cond-mat/0602219 Statistical Mechanics +cond-mat/0602220 Mesoscale and Nanoscale Physics +cond-mat/0602221 Mesoscale and Nanoscale Physics +cond-mat/0602222 Soft Condensed Matter +cond-mat/0602227 Superconductivity +cond-mat/0602228 Other Condensed Matter +cond-mat/0602233 Materials Science +cond-mat/0602234 Superconductivity +cond-mat/0602240 Other Condensed Matter +cond-mat/0602241 Mesoscale and Nanoscale Physics +cond-mat/0602242 Mesoscale and Nanoscale Physics +cond-mat/0602244 Statistical Mechanics +cond-mat/0602250 Soft Condensed Matter +cond-mat/0602253 Superconductivity +cond-mat/0602256 Strongly Correlated Electrons +cond-mat/0602258 Mesoscale and Nanoscale Physics +cond-mat/0602259 Statistical Mechanics +cond-mat/0602261 Mesoscale and Nanoscale Physics +cond-mat/0602263 Strongly Correlated Electrons +cond-mat/0602264 Mesoscale and Nanoscale Physics +cond-mat/0602265 Disordered Systems and Neural Networks +cond-mat/0602266 Disordered Systems and Neural Networks +cond-mat/0602267 Disordered Systems and Neural Networks +cond-mat/0602268 Statistical Mechanics +cond-mat/0602269 Other Condensed Matter +cond-mat/0602270 Materials Science +cond-mat/0602271 Mesoscale and Nanoscale Physics +cond-mat/0602272 Mesoscale and Nanoscale Physics +cond-mat/0602273 Strongly Correlated Electrons +cond-mat/0602278 Strongly Correlated Electrons +cond-mat/0602279 Mesoscale and Nanoscale Physics +cond-mat/0602284 Materials Science +cond-mat/0602288 Statistical Mechanics +cond-mat/0602289 Statistical Mechanics +cond-mat/0602290 Soft Condensed Matter +cond-mat/0602293 Soft Condensed Matter +cond-mat/0602294 Strongly Correlated Electrons +cond-mat/0602296 Strongly Correlated Electrons +cond-mat/0602298 Mesoscale and Nanoscale Physics +cond-mat/0602299 Mesoscale and Nanoscale Physics +cond-mat/0602303 Superconductivity +cond-mat/0602307 Statistical Mechanics +cond-mat/0602309 Strongly Correlated Electrons +cond-mat/0602310 Strongly Correlated Electrons +cond-mat/0602314 Statistical Mechanics +cond-mat/0602315 Statistical Mechanics +cond-mat/0602316 Statistical Mechanics +cond-mat/0602318 Statistical Mechanics +cond-mat/0602319 Other Condensed Matter +cond-mat/0602321 Soft Condensed Matter +cond-mat/0602322 Mesoscale and Nanoscale Physics +cond-mat/0602323 Superconductivity +cond-mat/0602324 Mesoscale and Nanoscale Physics +cond-mat/0602330 Mesoscale and Nanoscale Physics +cond-mat/0602333 Strongly Correlated Electrons +cond-mat/0602334 Statistical Mechanics +cond-mat/0602338 Statistical Mechanics +cond-mat/0602340 Superconductivity +cond-mat/0602344 Superconductivity +cond-mat/0602350 Statistical Mechanics +cond-mat/0602353 Statistical Mechanics +cond-mat/0602354 Statistical Mechanics +cond-mat/0602355 Soft Condensed Matter +cond-mat/0602357 Strongly Correlated Electrons +cond-mat/0602359 Superconductivity +cond-mat/0602360 Strongly Correlated Electrons +cond-mat/0602361 Materials Science +cond-mat/0602363 Soft Condensed Matter +cond-mat/0602364 Mesoscale and Nanoscale Physics +cond-mat/0602365 Soft Condensed Matter +cond-mat/0602370 Statistical Mechanics +cond-mat/0602373 Mesoscale and Nanoscale Physics +cond-mat/0602374 Strongly Correlated Electrons +cond-mat/0602377 Superconductivity +cond-mat/0602378 Materials Science +cond-mat/0602383 Mesoscale and Nanoscale Physics +cond-mat/0602384 Strongly Correlated Electrons +cond-mat/0602387 Strongly Correlated Electrons +cond-mat/0602391 Mesoscale and Nanoscale Physics +cond-mat/0602392 Materials Science +cond-mat/0602393 Disordered Systems and Neural Networks +cond-mat/0602394 Soft Condensed Matter +cond-mat/0602395 Soft Condensed Matter +cond-mat/0602397 Other Condensed Matter +cond-mat/0602398 Mesoscale and Nanoscale Physics +cond-mat/0602402 Superconductivity +cond-mat/0602403 Mesoscale and Nanoscale Physics +cond-mat/0602404 Strongly Correlated Electrons +cond-mat/0602406 Strongly Correlated Electrons +cond-mat/0602407 Strongly Correlated Electrons +cond-mat/0602408 Superconductivity +cond-mat/0602409 Statistical Mechanics +cond-mat/0602410 Mesoscale and Nanoscale Physics +cond-mat/0602412 Disordered Systems and Neural Networks +cond-mat/0602414 Materials Science +cond-mat/0602415 Strongly Correlated Electrons +cond-mat/0602416 Materials Science +cond-mat/0602425 Materials Science +cond-mat/0602428 Soft Condensed Matter +cond-mat/0602431 Disordered Systems and Neural Networks +cond-mat/0602432 Superconductivity +cond-mat/0602433 Superconductivity +cond-mat/0602435 Strongly Correlated Electrons +cond-mat/0602438 Strongly Correlated Electrons +cond-mat/0602440 Statistical Mechanics +cond-mat/0602441 Mesoscale and Nanoscale Physics +cond-mat/0602447 Materials Science +cond-mat/0602451 Strongly Correlated Electrons +cond-mat/0602452 Superconductivity +cond-mat/0602460 Superconductivity +cond-mat/0602463 Disordered Systems and Neural Networks +cond-mat/0602465 Statistical Mechanics +cond-mat/0602466 Strongly Correlated Electrons +cond-mat/0602468 Other Condensed Matter +cond-mat/0602469 Strongly Correlated Electrons +cond-mat/0602471 Materials Science +cond-mat/0602473 Mesoscale and Nanoscale Physics +cond-mat/0602474 Strongly Correlated Electrons +cond-mat/0602476 Superconductivity +cond-mat/0602477 Statistical Mechanics +cond-mat/0602482 Strongly Correlated Electrons +cond-mat/0602486 Statistical Mechanics +cond-mat/0602489 Superconductivity +cond-mat/0602490 Statistical Mechanics +cond-mat/0602493 Statistical Mechanics +cond-mat/0602494 Soft Condensed Matter +cond-mat/0602497 Mesoscale and Nanoscale Physics +cond-mat/0602499 Mesoscale and Nanoscale Physics +cond-mat/0602500 Statistical Mechanics +cond-mat/0602502 Materials Science +cond-mat/0602503 Materials Science +cond-mat/0602504 Other Condensed Matter +cond-mat/0602505 Mesoscale and Nanoscale Physics +cond-mat/0602508 Superconductivity +cond-mat/0602512 Mesoscale and Nanoscale Physics +cond-mat/0602513 Statistical Mechanics +cond-mat/0602516 Materials Science +cond-mat/0602517 Disordered Systems and Neural Networks +cond-mat/0602522 Superconductivity +cond-mat/0602527 Strongly Correlated Electrons +cond-mat/0602529 Strongly Correlated Electrons +cond-mat/0602531 Materials Science +cond-mat/0602532 Mesoscale and Nanoscale Physics +cond-mat/0602533 Materials Science +cond-mat/0602538 Mesoscale and Nanoscale Physics +cond-mat/0602539 Mesoscale and Nanoscale Physics +cond-mat/0602540 Statistical Mechanics +cond-mat/0602541 Strongly Correlated Electrons +cond-mat/0602542 Materials Science +cond-mat/0602544 Strongly Correlated Electrons +cond-mat/0602548 Statistical Mechanics +cond-mat/0602549 Soft Condensed Matter +cond-mat/0602552 Mesoscale and Nanoscale Physics +cond-mat/0602554 Soft Condensed Matter +cond-mat/0602558 Statistical Mechanics +cond-mat/0602566 Materials Science +cond-mat/0602567 Statistical Mechanics +cond-mat/0602568 Superconductivity +cond-mat/0602569 Strongly Correlated Electrons +cond-mat/0602570 Superconductivity +cond-mat/0602573 Mesoscale and Nanoscale Physics +cond-mat/0602574 Statistical Mechanics +cond-mat/0602576 Mesoscale and Nanoscale Physics +cond-mat/0602579 Superconductivity +cond-mat/0602583 Mesoscale and Nanoscale Physics +cond-mat/0602585 Mesoscale and Nanoscale Physics +cond-mat/0602586 Other Condensed Matter +cond-mat/0602591 Superconductivity +cond-mat/0602593 Other Condensed Matter +cond-mat/0602595 Statistical Mechanics +cond-mat/0602598 Mesoscale and Nanoscale Physics +cond-mat/0602599 Mesoscale and Nanoscale Physics +cond-mat/0602600 Statistical Mechanics +cond-mat/0602604 Mesoscale and Nanoscale Physics +cond-mat/0602605 Materials Science +cond-mat/0602607 Mesoscale and Nanoscale Physics +cond-mat/0602611 Statistical Mechanics +cond-mat/0602613 Strongly Correlated Electrons +cond-mat/0602614 Statistical Mechanics +cond-mat/0602617 Mesoscale and Nanoscale Physics +cond-mat/0602618 Strongly Correlated Electrons +cond-mat/0602619 Mesoscale and Nanoscale Physics +cond-mat/0602621 Statistical Mechanics +cond-mat/0602626 Other Condensed Matter +cond-mat/0602627 Strongly Correlated Electrons +cond-mat/0602629 Superconductivity +cond-mat/0602631 Statistical Mechanics +cond-mat/0602632 Materials Science +cond-mat/0602634 Mesoscale and Nanoscale Physics +cond-mat/0602638 Disordered Systems and Neural Networks +cond-mat/0602639 Disordered Systems and Neural Networks +cond-mat/0602641 Statistical Mechanics +cond-mat/0602642 Superconductivity +cond-mat/0602649 Mesoscale and Nanoscale Physics +cond-mat/0602654 Strongly Correlated Electrons +cond-mat/0602656 Strongly Correlated Electrons +cond-mat/0602657 Strongly Correlated Electrons +cond-mat/0602658 Mesoscale and Nanoscale Physics +cond-mat/0602660 Statistical Mechanics +cond-mat/0602661 Statistical Mechanics +cond-mat/0602666 Disordered Systems and Neural Networks +cond-mat/0602668 Strongly Correlated Electrons +cond-mat/0602670 Statistical Mechanics +cond-mat/0602671 Strongly Correlated Electrons +cond-mat/0602672 Superconductivity +cond-mat/0602673 Other Condensed Matter +cond-mat/0602674 Other Condensed Matter +cond-mat/0602675 Strongly Correlated Electrons +cond-mat/0602678 Strongly Correlated Electrons +cond-mat/0602680 Materials Science +cond-mat/0602681 Materials Science +cond-mat/0603003 Other Condensed Matter +cond-mat/0603004 Statistical Mechanics +cond-mat/0603007 Other Condensed Matter +cond-mat/0603010 Materials Science +cond-mat/0603012 Materials Science +cond-mat/0603015 Other Condensed Matter +cond-mat/0603017 Mesoscale and Nanoscale Physics +cond-mat/0603018 Statistical Mechanics +cond-mat/0603019 Materials Science +cond-mat/0603020 Materials Science +cond-mat/0603021 Strongly Correlated Electrons +cond-mat/0603022 Strongly Correlated Electrons +cond-mat/0603023 Soft Condensed Matter +cond-mat/0603024 Superconductivity +cond-mat/0603025 Other Condensed Matter +cond-mat/0603027 Statistical Mechanics +cond-mat/0603030 Other Condensed Matter +cond-mat/0603031 Materials Science +cond-mat/0603032 Strongly Correlated Electrons +cond-mat/0603033 Mesoscale and Nanoscale Physics +cond-mat/0603035 Mesoscale and Nanoscale Physics +cond-mat/0603036 Superconductivity +cond-mat/0603044 Other Condensed Matter +cond-mat/0603045 Strongly Correlated Electrons +cond-mat/0603046 Materials Science +cond-mat/0603047 Statistical Mechanics +cond-mat/0603048 Strongly Correlated Electrons +cond-mat/0603049 Strongly Correlated Electrons +cond-mat/0603051 Soft Condensed Matter +cond-mat/0603054 Mesoscale and Nanoscale Physics +cond-mat/0603056 Statistical Mechanics +cond-mat/0603060 Materials Science +cond-mat/0603064 Strongly Correlated Electrons +cond-mat/0603065 Statistical Mechanics +cond-mat/0603070 Other Condensed Matter +cond-mat/0603071 Statistical Mechanics +cond-mat/0603073 Mesoscale and Nanoscale Physics +cond-mat/0603076 Superconductivity +cond-mat/0603077 Soft Condensed Matter +cond-mat/0603078 Statistical Mechanics +cond-mat/0603079 Superconductivity +cond-mat/0603080 Statistical Mechanics +cond-mat/0603082 Statistical Mechanics +cond-mat/0603089 Strongly Correlated Electrons +cond-mat/0603093 Statistical Mechanics +cond-mat/0603098 Strongly Correlated Electrons +cond-mat/0603100 Strongly Correlated Electrons +cond-mat/0603102 Soft Condensed Matter +cond-mat/0603103 Statistical Mechanics +cond-mat/0603107 Mesoscale and Nanoscale Physics +cond-mat/0603108 Mesoscale and Nanoscale Physics +cond-mat/0603112 Statistical Mechanics +cond-mat/0603113 Other Condensed Matter +cond-mat/0603115 Disordered Systems and Neural Networks +cond-mat/0603119 Mesoscale and Nanoscale Physics +cond-mat/0603124 Statistical Mechanics +cond-mat/0603127 Materials Science +cond-mat/0603129 Statistical Mechanics +cond-mat/0603130 Soft Condensed Matter +cond-mat/0603138 Strongly Correlated Electrons +cond-mat/0603139 Statistical Mechanics +cond-mat/0603140 Materials Science +cond-mat/0603142 Mesoscale and Nanoscale Physics +cond-mat/0603144 Mesoscale and Nanoscale Physics +cond-mat/0603151 Statistical Mechanics +cond-mat/0603155 Mesoscale and Nanoscale Physics +cond-mat/0603156 Strongly Correlated Electrons +cond-mat/0603158 Disordered Systems and Neural Networks +cond-mat/0603163 Materials Science +cond-mat/0603164 Strongly Correlated Electrons +cond-mat/0603165 Superconductivity +cond-mat/0603171 Soft Condensed Matter +cond-mat/0603174 Mesoscale and Nanoscale Physics +cond-mat/0603175 Statistical Mechanics +cond-mat/0603178 Materials Science +cond-mat/0603180 Mesoscale and Nanoscale Physics +cond-mat/0603183 Statistical Mechanics +cond-mat/0603185 Statistical Mechanics +cond-mat/0603188 Mesoscale and Nanoscale Physics +cond-mat/0603189 Statistical Mechanics +cond-mat/0603192 Superconductivity +cond-mat/0603196 Materials Science +cond-mat/0603197 Other Condensed Matter +cond-mat/0603200 Mesoscale and Nanoscale Physics +cond-mat/0603201 Statistical Mechanics +cond-mat/0603202 Strongly Correlated Electrons +cond-mat/0603203 Strongly Correlated Electrons +cond-mat/0603204 Other Condensed Matter +cond-mat/0603206 Strongly Correlated Electrons +cond-mat/0603208 Materials Science +cond-mat/0603212 Other Condensed Matter +cond-mat/0603219 Strongly Correlated Electrons +cond-mat/0603220 Materials Science +cond-mat/0603224 Materials Science +cond-mat/0603225 Materials Science +cond-mat/0603232 Statistical Mechanics +cond-mat/0603233 Materials Science +cond-mat/0603235 Mesoscale and Nanoscale Physics +cond-mat/0603236 Superconductivity +cond-mat/0603237 Statistical Mechanics +cond-mat/0603240 Other Condensed Matter +cond-mat/0603242 Statistical Mechanics +cond-mat/0603244 Superconductivity +cond-mat/0603245 Statistical Mechanics +cond-mat/0603247 Superconductivity +cond-mat/0603248 Materials Science +cond-mat/0603251 Disordered Systems and Neural Networks +cond-mat/0603252 Statistical Mechanics +cond-mat/0603253 Strongly Correlated Electrons +cond-mat/0603255 Mesoscale and Nanoscale Physics +cond-mat/0603263 Superconductivity +cond-mat/0603265 Statistical Mechanics +cond-mat/0603266 Disordered Systems and Neural Networks +cond-mat/0603272 Disordered Systems and Neural Networks +cond-mat/0603273 Other Condensed Matter +cond-mat/0603280 Materials Science +cond-mat/0603282 Superconductivity +cond-mat/0603283 Statistical Mechanics +cond-mat/0603286 Strongly Correlated Electrons +cond-mat/0603287 Materials Science +cond-mat/0603288 Materials Science +cond-mat/0603289 Statistical Mechanics +cond-mat/0603292 Superconductivity +cond-mat/0603293 Materials Science +cond-mat/0603294 Disordered Systems and Neural Networks +cond-mat/0603295 Statistical Mechanics +cond-mat/0603298 Statistical Mechanics +cond-mat/0603299 Mesoscale and Nanoscale Physics +cond-mat/0603302 Superconductivity +cond-mat/0603303 Mesoscale and Nanoscale Physics +cond-mat/0603308 Statistical Mechanics +cond-mat/0603310 Statistical Mechanics +cond-mat/0603312 Materials Science +cond-mat/0603313 Strongly Correlated Electrons +cond-mat/0603316 Soft Condensed Matter +cond-mat/0603321 Other Condensed Matter +cond-mat/0603326 Soft Condensed Matter +cond-mat/0603329 Materials Science +cond-mat/0603334 Superconductivity +cond-mat/0603337 Mesoscale and Nanoscale Physics +cond-mat/0603339 Strongly Correlated Electrons +cond-mat/0603344 Statistical Mechanics +cond-mat/0603348 Materials Science +cond-mat/0603351 Soft Condensed Matter +cond-mat/0603352 Statistical Mechanics +cond-mat/0603353 Disordered Systems and Neural Networks +cond-mat/0603354 Materials Science +cond-mat/0603357 Mesoscale and Nanoscale Physics +cond-mat/0603360 Statistical Mechanics +cond-mat/0603361 Soft Condensed Matter +cond-mat/0603362 Mesoscale and Nanoscale Physics +cond-mat/0603363 Mesoscale and Nanoscale Physics +cond-mat/0603364 Mesoscale and Nanoscale Physics +cond-mat/0603366 Statistical Mechanics +cond-mat/0603367 Mesoscale and Nanoscale Physics +cond-mat/0603370 Materials Science +cond-mat/0603371 Materials Science +cond-mat/0603373 Soft Condensed Matter +cond-mat/0603375 Statistical Mechanics +cond-mat/0603379 Strongly Correlated Electrons +cond-mat/0603380 Materials Science +cond-mat/0603381 Soft Condensed Matter +cond-mat/0603383 Statistical Mechanics +cond-mat/0603384 Statistical Mechanics +cond-mat/0603386 Statistical Mechanics +cond-mat/0603387 Statistical Mechanics +cond-mat/0603389 Other Condensed Matter +cond-mat/0603393 Materials Science +cond-mat/0603396 Disordered Systems and Neural Networks +cond-mat/0603397 Soft Condensed Matter +cond-mat/0603402 Statistical Mechanics +cond-mat/0603403 Superconductivity +cond-mat/0603404 Superconductivity +cond-mat/0603405 Statistical Mechanics +cond-mat/0603408 Soft Condensed Matter +cond-mat/0603410 Other Condensed Matter +cond-mat/0603412 Materials Science +cond-mat/0603413 Materials Science +cond-mat/0603416 Superconductivity +cond-mat/0603418 Mesoscale and Nanoscale Physics +cond-mat/0603419 Statistical Mechanics +cond-mat/0603423 Superconductivity +cond-mat/0603424 Statistical Mechanics +cond-mat/0603427 Other Condensed Matter +cond-mat/0603429 Statistical Mechanics +cond-mat/0603430 Mesoscale and Nanoscale Physics +cond-mat/0603431 Mesoscale and Nanoscale Physics +cond-mat/0603432 Mesoscale and Nanoscale Physics +cond-mat/0603433 Strongly Correlated Electrons +cond-mat/0603434 Strongly Correlated Electrons +cond-mat/0603449 Strongly Correlated Electrons +cond-mat/0603450 Soft Condensed Matter +cond-mat/0603451 Mesoscale and Nanoscale Physics +cond-mat/0603452 Soft Condensed Matter +cond-mat/0603454 Other Condensed Matter +cond-mat/0603457 Other Condensed Matter +cond-mat/0603459 Statistical Mechanics +cond-mat/0603460 Strongly Correlated Electrons +cond-mat/0603461 Strongly Correlated Electrons +cond-mat/0603463 Other Condensed Matter +cond-mat/0603464 Mesoscale and Nanoscale Physics +cond-mat/0603468 Materials Science +cond-mat/0603469 Other Condensed Matter +cond-mat/0603471 Mesoscale and Nanoscale Physics +cond-mat/0603473 Strongly Correlated Electrons +cond-mat/0603474 Soft Condensed Matter +cond-mat/0603475 Soft Condensed Matter +cond-mat/0603477 Materials Science +cond-mat/0603478 Other Condensed Matter +cond-mat/0603484 Mesoscale and Nanoscale Physics +cond-mat/0603485 Materials Science +cond-mat/0603488 Statistical Mechanics +cond-mat/0603493 Statistical Mechanics +cond-mat/0603496 Strongly Correlated Electrons +cond-mat/0603498 Superconductivity +cond-mat/0603499 Statistical Mechanics +cond-mat/0603500 Other Condensed Matter +cond-mat/0603502 Materials Science +cond-mat/0603503 Disordered Systems and Neural Networks +cond-mat/0603504 Strongly Correlated Electrons +cond-mat/0603505 Statistical Mechanics +cond-mat/0603507 Materials Science +cond-mat/0603509 Materials Science +cond-mat/0603511 Strongly Correlated Electrons +cond-mat/0603516 Statistical Mechanics +cond-mat/0603518 Mesoscale and Nanoscale Physics +cond-mat/0603519 Strongly Correlated Electrons +cond-mat/0603527 Materials Science +cond-mat/0603532 Superconductivity +cond-mat/0603533 Disordered Systems and Neural Networks +cond-mat/0603534 Materials Science +cond-mat/0603535 Mesoscale and Nanoscale Physics +cond-mat/0603538 Mesoscale and Nanoscale Physics +cond-mat/0603539 Superconductivity +cond-mat/0603540 Mesoscale and Nanoscale Physics +cond-mat/0603541 Superconductivity +cond-mat/0603544 Strongly Correlated Electrons +cond-mat/0603548 Strongly Correlated Electrons +cond-mat/0603549 Strongly Correlated Electrons +cond-mat/0603550 Statistical Mechanics +cond-mat/0603551 Materials Science +cond-mat/0603553 Strongly Correlated Electrons +cond-mat/0603554 Materials Science +cond-mat/0603557 Soft Condensed Matter +cond-mat/0603558 Statistical Mechanics +cond-mat/0603560 Statistical Mechanics +cond-mat/0603563 Materials Science +cond-mat/0603564 Other Condensed Matter +cond-mat/0603566 Superconductivity +cond-mat/0603569 Other Condensed Matter +cond-mat/0603573 Other Condensed Matter +cond-mat/0603574 Other Condensed Matter +cond-mat/0603575 Superconductivity +cond-mat/0603577 Mesoscale and Nanoscale Physics +cond-mat/0603578 Soft Condensed Matter +cond-mat/0603582 Superconductivity +cond-mat/0603584 Disordered Systems and Neural Networks +cond-mat/0603585 Superconductivity +cond-mat/0603587 Statistical Mechanics +cond-mat/0603588 Mesoscale and Nanoscale Physics +cond-mat/0603593 Statistical Mechanics +cond-mat/0603596 Strongly Correlated Electrons +cond-mat/0603597 Mesoscale and Nanoscale Physics +cond-mat/0603599 Mesoscale and Nanoscale Physics +cond-mat/0603600 Strongly Correlated Electrons +cond-mat/0603601 Superconductivity +cond-mat/0603603 Superconductivity +cond-mat/0603604 Mesoscale and Nanoscale Physics +cond-mat/0603605 Materials Science +cond-mat/0603606 Superconductivity +cond-mat/0603608 Statistical Mechanics +cond-mat/0603610 Superconductivity +cond-mat/0603616 Materials Science +cond-mat/0603617 Strongly Correlated Electrons +cond-mat/0603620 Disordered Systems and Neural Networks +cond-mat/0603621 Materials Science +cond-mat/0603623 Superconductivity +cond-mat/0603627 Strongly Correlated Electrons +cond-mat/0603630 Mesoscale and Nanoscale Physics +cond-mat/0603632 Materials Science +cond-mat/0603633 Strongly Correlated Electrons +cond-mat/0603639 Other Condensed Matter +cond-mat/0603647 Disordered Systems and Neural Networks +cond-mat/0603649 Materials Science +cond-mat/0603652 Strongly Correlated Electrons +cond-mat/0603654 Statistical Mechanics +cond-mat/0603657 Statistical Mechanics +cond-mat/0603659 Statistical Mechanics +cond-mat/0603660 Strongly Correlated Electrons +cond-mat/0603663 Statistical Mechanics +cond-mat/0603664 Superconductivity +cond-mat/0603669 Mesoscale and Nanoscale Physics +cond-mat/0603672 Mesoscale and Nanoscale Physics +cond-mat/0603674 Materials Science +cond-mat/0603675 Other Condensed Matter +cond-mat/0603677 Statistical Mechanics +cond-mat/0603679 Statistical Mechanics +cond-mat/0603680 Statistical Mechanics +cond-mat/0603685 Disordered Systems and Neural Networks +cond-mat/0603686 Statistical Mechanics +cond-mat/0603687 Disordered Systems and Neural Networks +cond-mat/0603688 Materials Science +cond-mat/0603690 Soft Condensed Matter +cond-mat/0603691 Other Condensed Matter +cond-mat/0603693 Disordered Systems and Neural Networks +cond-mat/0603700 Materials Science +cond-mat/0603702 Materials Science +cond-mat/0603705 Strongly Correlated Electrons +cond-mat/0603706 Superconductivity +cond-mat/0603710 Mesoscale and Nanoscale Physics +cond-mat/0603713 Disordered Systems and Neural Networks +cond-mat/0603715 Soft Condensed Matter +cond-mat/0603716 Soft Condensed Matter +cond-mat/0603718 Disordered Systems and Neural Networks +cond-mat/0603720 Disordered Systems and Neural Networks +cond-mat/0603722 Mesoscale and Nanoscale Physics +cond-mat/0603723 Mesoscale and Nanoscale Physics +cond-mat/0603728 Statistical Mechanics +cond-mat/0603730 Statistical Mechanics +cond-mat/0603731 Mesoscale and Nanoscale Physics +cond-mat/0603733 Superconductivity +cond-mat/0603737 Superconductivity +cond-mat/0603738 Strongly Correlated Electrons +cond-mat/0603739 Soft Condensed Matter +cond-mat/0603740 Materials Science +cond-mat/0603747 Superconductivity +cond-mat/0603748 Soft Condensed Matter +cond-mat/0603749 Soft Condensed Matter +cond-mat/0603751 Soft Condensed Matter +cond-mat/0603752 Materials Science +cond-mat/0603755 Mesoscale and Nanoscale Physics +cond-mat/0603756 Soft Condensed Matter +cond-mat/0603759 Disordered Systems and Neural Networks +cond-mat/0603761 Soft Condensed Matter +cond-mat/0603762 Materials Science +cond-mat/0603769 Soft Condensed Matter +cond-mat/0603771 Strongly Correlated Electrons +cond-mat/0603772 Other Condensed Matter +cond-mat/0603773 Materials Science +cond-mat/0603776 Strongly Correlated Electrons +cond-mat/0603780 Statistical Mechanics +cond-mat/0603781 Superconductivity +cond-mat/0603783 Soft Condensed Matter +cond-mat/0603786 Superconductivity +cond-mat/0603789 Mesoscale and Nanoscale Physics +cond-mat/0603793 Other Condensed Matter +cond-mat/0603794 Mesoscale and Nanoscale Physics +cond-mat/0603801 Soft Condensed Matter +cond-mat/0603805 Superconductivity +cond-mat/0603811 Materials Science +cond-mat/0603813 Statistical Mechanics +cond-mat/0603815 Statistical Mechanics +cond-mat/0603821 Statistical Mechanics +cond-mat/0603822 Soft Condensed Matter +cond-mat/0603827 Statistical Mechanics +cond-mat/0603828 Soft Condensed Matter +cond-mat/0603830 Other Condensed Matter +cond-mat/0603831 Mesoscale and Nanoscale Physics +cond-mat/0603832 Materials Science +cond-mat/0603833 Statistical Mechanics +cond-mat/0603835 Mesoscale and Nanoscale Physics +cond-mat/0603837 Strongly Correlated Electrons +cond-mat/0603838 Other Condensed Matter +cond-mat/0603839 Statistical Mechanics +cond-mat/0603841 Superconductivity +cond-mat/0603844 Mesoscale and Nanoscale Physics +cond-mat/0603845 Mesoscale and Nanoscale Physics +cond-mat/0603846 Materials Science +cond-mat/0603850 Strongly Correlated Electrons +cond-mat/0603852 Materials Science +cond-mat/0603853 Superconductivity +cond-mat/0603854 Superconductivity +cond-mat/0603855 Disordered Systems and Neural Networks +cond-mat/0603856 Statistical Mechanics +cond-mat/0604001 Strongly Correlated Electrons +cond-mat/0604002 Superconductivity +cond-mat/0604003 Materials Science +cond-mat/0604006 Statistical Mechanics +cond-mat/0604007 Statistical Mechanics +cond-mat/0604009 Mesoscale and Nanoscale Physics +cond-mat/0604012 Materials Science +cond-mat/0604018 Mesoscale and Nanoscale Physics +cond-mat/0604022 Soft Condensed Matter +cond-mat/0604024 Statistical Mechanics +cond-mat/0604030 Superconductivity +cond-mat/0604031 Strongly Correlated Electrons +cond-mat/0604034 Other Condensed Matter +cond-mat/0604045 Statistical Mechanics +cond-mat/0604048 Soft Condensed Matter +cond-mat/0604049 Strongly Correlated Electrons +cond-mat/0604050 Materials Science +cond-mat/0604055 Statistical Mechanics +cond-mat/0604056 Materials Science +cond-mat/0604058 Statistical Mechanics +cond-mat/0604060 Soft Condensed Matter +cond-mat/0604064 Mesoscale and Nanoscale Physics +cond-mat/0604066 Other Condensed Matter +cond-mat/0604071 Mesoscale and Nanoscale Physics +cond-mat/0604073 Mesoscale and Nanoscale Physics +cond-mat/0604074 Strongly Correlated Electrons +cond-mat/0604075 Statistical Mechanics +cond-mat/0604077 Other Condensed Matter +cond-mat/0604085 Soft Condensed Matter +cond-mat/0604087 Statistical Mechanics +cond-mat/0604088 Strongly Correlated Electrons +cond-mat/0604095 Other Condensed Matter +cond-mat/0604098 Superconductivity +cond-mat/0604099 Soft Condensed Matter +cond-mat/0604102 Statistical Mechanics +cond-mat/0604104 Superconductivity +cond-mat/0604108 Mesoscale and Nanoscale Physics +cond-mat/0604110 Statistical Mechanics +cond-mat/0604116 Superconductivity +cond-mat/0604117 Materials Science +cond-mat/0604118 Mesoscale and Nanoscale Physics +cond-mat/0604119 Materials Science +cond-mat/0604120 Mesoscale and Nanoscale Physics +cond-mat/0604123 Other Condensed Matter +cond-mat/0604129 Soft Condensed Matter +cond-mat/0604130 Disordered Systems and Neural Networks +cond-mat/0604132 Materials Science +cond-mat/0604135 Mesoscale and Nanoscale Physics +cond-mat/0604142 Mesoscale and Nanoscale Physics +cond-mat/0604148 Soft Condensed Matter +cond-mat/0604151 Other Condensed Matter +cond-mat/0604154 Soft Condensed Matter +cond-mat/0604155 Strongly Correlated Electrons +cond-mat/0604162 Statistical Mechanics +cond-mat/0604163 Statistical Mechanics +cond-mat/0604165 Soft Condensed Matter +cond-mat/0604166 Disordered Systems and Neural Networks +cond-mat/0604167 Materials Science +cond-mat/0604168 Soft Condensed Matter +cond-mat/0604169 Soft Condensed Matter +cond-mat/0604170 Statistical Mechanics +cond-mat/0604171 Soft Condensed Matter +cond-mat/0604174 Materials Science +cond-mat/0604178 Mesoscale and Nanoscale Physics +cond-mat/0604180 Mesoscale and Nanoscale Physics +cond-mat/0604184 Superconductivity +cond-mat/0604185 Other Condensed Matter +cond-mat/0604189 Materials Science +cond-mat/0604194 Strongly Correlated Electrons +cond-mat/0604195 Mesoscale and Nanoscale Physics +cond-mat/0604198 Superconductivity +cond-mat/0604201 Materials Science +cond-mat/0604205 Disordered Systems and Neural Networks +cond-mat/0604206 Materials Science +cond-mat/0604208 Superconductivity +cond-mat/0604213 Superconductivity +cond-mat/0604214 Mesoscale and Nanoscale Physics +cond-mat/0604216 Other Condensed Matter +cond-mat/0604217 Superconductivity +cond-mat/0604223 Statistical Mechanics +cond-mat/0604224 Mesoscale and Nanoscale Physics +cond-mat/0604225 Statistical Mechanics +cond-mat/0604228 Strongly Correlated Electrons +cond-mat/0604229 Superconductivity +cond-mat/0604232 Disordered Systems and Neural Networks +cond-mat/0604233 Mesoscale and Nanoscale Physics +cond-mat/0604234 Statistical Mechanics +cond-mat/0604235 Soft Condensed Matter +cond-mat/0604240 Strongly Correlated Electrons +cond-mat/0604244 Soft Condensed Matter +cond-mat/0604245 Statistical Mechanics +cond-mat/0604254 Superconductivity +cond-mat/0604258 Strongly Correlated Electrons +cond-mat/0604261 Disordered Systems and Neural Networks +cond-mat/0604263 Disordered Systems and Neural Networks +cond-mat/0604265 Disordered Systems and Neural Networks +cond-mat/0604266 Materials Science +cond-mat/0604267 Statistical Mechanics +cond-mat/0604268 Materials Science +cond-mat/0604269 Statistical Mechanics +cond-mat/0604270 Materials Science +cond-mat/0604272 Statistical Mechanics +cond-mat/0604273 Other Condensed Matter +cond-mat/0604275 Soft Condensed Matter +cond-mat/0604280 Mesoscale and Nanoscale Physics +cond-mat/0604282 Soft Condensed Matter +cond-mat/0604283 Other Condensed Matter +cond-mat/0604285 Strongly Correlated Electrons +cond-mat/0604286 Materials Science +cond-mat/0604288 Materials Science +cond-mat/0604289 Mesoscale and Nanoscale Physics +cond-mat/0604293 Soft Condensed Matter +cond-mat/0604296 Soft Condensed Matter +cond-mat/0604297 Materials Science +cond-mat/0604299 Soft Condensed Matter +cond-mat/0604301 Statistical Mechanics +cond-mat/0604305 Strongly Correlated Electrons +cond-mat/0604307 Strongly Correlated Electrons +cond-mat/0604310 Mesoscale and Nanoscale Physics +cond-mat/0604311 Mesoscale and Nanoscale Physics +cond-mat/0604316 Superconductivity +cond-mat/0604318 Materials Science +cond-mat/0604322 Strongly Correlated Electrons +cond-mat/0604331 Mesoscale and Nanoscale Physics +cond-mat/0604332 Superconductivity +cond-mat/0604333 Statistical Mechanics +cond-mat/0604334 Soft Condensed Matter +cond-mat/0604335 Statistical Mechanics +cond-mat/0604338 Statistical Mechanics +cond-mat/0604339 Superconductivity +cond-mat/0604340 Soft Condensed Matter +cond-mat/0604343 Materials Science +cond-mat/0604345 Disordered Systems and Neural Networks +cond-mat/0604350 Soft Condensed Matter +cond-mat/0604351 Superconductivity +cond-mat/0604352 Superconductivity +cond-mat/0604357 Soft Condensed Matter +cond-mat/0604358 Other Condensed Matter +cond-mat/0604359 Mesoscale and Nanoscale Physics +cond-mat/0604364 Soft Condensed Matter +cond-mat/0604366 Materials Science +cond-mat/0604376 Strongly Correlated Electrons +cond-mat/0604377 Strongly Correlated Electrons +cond-mat/0604378 Soft Condensed Matter +cond-mat/0604380 Strongly Correlated Electrons +cond-mat/0604391 Superconductivity +cond-mat/0604392 Materials Science +cond-mat/0604393 Mesoscale and Nanoscale Physics +cond-mat/0604396 Mesoscale and Nanoscale Physics +cond-mat/0604399 Strongly Correlated Electrons +cond-mat/0604400 Superconductivity +cond-mat/0604403 Superconductivity +cond-mat/0604405 Strongly Correlated Electrons +cond-mat/0604408 Soft Condensed Matter +cond-mat/0604411 Statistical Mechanics +cond-mat/0604418 Statistical Mechanics +cond-mat/0604424 Strongly Correlated Electrons +cond-mat/0604427 Strongly Correlated Electrons +cond-mat/0604429 Statistical Mechanics +cond-mat/0604431 Superconductivity +cond-mat/0604434 Statistical Mechanics +cond-mat/0604439 Statistical Mechanics +cond-mat/0604443 Strongly Correlated Electrons +cond-mat/0604444 Statistical Mechanics +cond-mat/0604448 Disordered Systems and Neural Networks +cond-mat/0604449 Superconductivity +cond-mat/0604453 Disordered Systems and Neural Networks +cond-mat/0604454 Materials Science +cond-mat/0604456 Statistical Mechanics +cond-mat/0604457 Mesoscale and Nanoscale Physics +cond-mat/0604465 Mesoscale and Nanoscale Physics +cond-mat/0604466 Strongly Correlated Electrons +cond-mat/0604467 Strongly Correlated Electrons +cond-mat/0604468 Materials Science +cond-mat/0604470 Strongly Correlated Electrons +cond-mat/0604474 Other Condensed Matter +cond-mat/0604477 Other Condensed Matter +cond-mat/0604479 Mesoscale and Nanoscale Physics +cond-mat/0604485 Materials Science +cond-mat/0604488 Superconductivity +cond-mat/0604490 Soft Condensed Matter +cond-mat/0604501 Superconductivity +cond-mat/0604502 Mesoscale and Nanoscale Physics +cond-mat/0604505 Statistical Mechanics +cond-mat/0604512 Materials Science +cond-mat/0604515 Other Condensed Matter +cond-mat/0604516 Superconductivity +cond-mat/0604519 Materials Science +cond-mat/0604520 Mesoscale and Nanoscale Physics +cond-mat/0604522 Other Condensed Matter +cond-mat/0604523 Strongly Correlated Electrons +cond-mat/0604525 Strongly Correlated Electrons +cond-mat/0604527 Mesoscale and Nanoscale Physics +cond-mat/0604531 Materials Science +cond-mat/0604533 Mesoscale and Nanoscale Physics +cond-mat/0604535 Mesoscale and Nanoscale Physics +cond-mat/0604539 Disordered Systems and Neural Networks +cond-mat/0604541 Other Condensed Matter +cond-mat/0604542 Other Condensed Matter +cond-mat/0604543 Soft Condensed Matter +cond-mat/0604544 Strongly Correlated Electrons +cond-mat/0604546 Statistical Mechanics +cond-mat/0604547 Superconductivity +cond-mat/0604548 Statistical Mechanics +cond-mat/0604551 Materials Science +cond-mat/0604552 Statistical Mechanics +cond-mat/0604553 Strongly Correlated Electrons +cond-mat/0604555 Strongly Correlated Electrons +cond-mat/0604556 Statistical Mechanics +cond-mat/0604559 Superconductivity +cond-mat/0604563 Materials Science +cond-mat/0604564 Mesoscale and Nanoscale Physics +cond-mat/0604565 Other Condensed Matter +cond-mat/0604569 Statistical Mechanics +cond-mat/0604570 Other Condensed Matter +cond-mat/0604571 Strongly Correlated Electrons +cond-mat/0604572 Superconductivity +cond-mat/0604573 Statistical Mechanics +cond-mat/0604582 Strongly Correlated Electrons +cond-mat/0604586 Superconductivity +cond-mat/0604587 Superconductivity +cond-mat/0604588 Strongly Correlated Electrons +cond-mat/0604589 Statistical Mechanics +cond-mat/0604592 Statistical Mechanics +cond-mat/0604596 Materials Science +cond-mat/0604598 Superconductivity +cond-mat/0604599 Mesoscale and Nanoscale Physics +cond-mat/0604601 Mesoscale and Nanoscale Physics +cond-mat/0604602 Strongly Correlated Electrons +cond-mat/0604605 Superconductivity +cond-mat/0604606 Statistical Mechanics +cond-mat/0604608 Mesoscale and Nanoscale Physics +cond-mat/0604609 Strongly Correlated Electrons +cond-mat/0604617 Superconductivity +cond-mat/0604618 Materials Science +cond-mat/0604619 Materials Science +cond-mat/0604620 Disordered Systems and Neural Networks +cond-mat/0604622 Disordered Systems and Neural Networks +cond-mat/0604625 Other Condensed Matter +cond-mat/0604628 Soft Condensed Matter +cond-mat/0604630 Mesoscale and Nanoscale Physics +cond-mat/0604631 Mesoscale and Nanoscale Physics +cond-mat/0604635 Materials Science +cond-mat/0604640 Statistical Mechanics +cond-mat/0604641 Mesoscale and Nanoscale Physics +cond-mat/0604643 Materials Science +cond-mat/0604645 Superconductivity +cond-mat/0604646 Superconductivity +cond-mat/0604647 Strongly Correlated Electrons +cond-mat/0604651 Materials Science +cond-mat/0604652 Materials Science +cond-mat/0604656 Statistical Mechanics +cond-mat/0604657 Strongly Correlated Electrons +cond-mat/0604663 Statistical Mechanics +cond-mat/0604665 Superconductivity +cond-mat/0604667 Superconductivity +cond-mat/0604670 Strongly Correlated Electrons +cond-mat/0604675 Superconductivity +cond-mat/0604676 Soft Condensed Matter +cond-mat/0605004 Other Condensed Matter +cond-mat/0605007 Strongly Correlated Electrons +cond-mat/0605008 Mesoscale and Nanoscale Physics +cond-mat/0605009 Statistical Mechanics +cond-mat/0605011 Mesoscale and Nanoscale Physics +cond-mat/0605013 Materials Science +cond-mat/0605014 Other Condensed Matter +cond-mat/0605015 Superconductivity +cond-mat/0605016 Superconductivity +cond-mat/0605017 Materials Science +cond-mat/0605022 Superconductivity +cond-mat/0605023 Strongly Correlated Electrons +cond-mat/0605026 Statistical Mechanics +cond-mat/0605030 Disordered Systems and Neural Networks +cond-mat/0605032 Materials Science +cond-mat/0605033 Materials Science +cond-mat/0605034 Strongly Correlated Electrons +cond-mat/0605035 Mesoscale and Nanoscale Physics +cond-mat/0605037 Mesoscale and Nanoscale Physics +cond-mat/0605040 Statistical Mechanics +cond-mat/0605042 Materials Science +cond-mat/0605043 Materials Science +cond-mat/0605044 Strongly Correlated Electrons +cond-mat/0605045 Strongly Correlated Electrons +cond-mat/0605048 Other Condensed Matter +cond-mat/0605049 Statistical Mechanics +cond-mat/0605051 Mesoscale and Nanoscale Physics +cond-mat/0605052 Mesoscale and Nanoscale Physics +cond-mat/0605056 Statistical Mechanics +cond-mat/0605058 Soft Condensed Matter +cond-mat/0605063 Strongly Correlated Electrons +cond-mat/0605065 Soft Condensed Matter +cond-mat/0605067 Mesoscale and Nanoscale Physics +cond-mat/0605072 Other Condensed Matter +cond-mat/0605074 Soft Condensed Matter +cond-mat/0605076 Soft Condensed Matter +cond-mat/0605077 Materials Science +cond-mat/0605079 Materials Science +cond-mat/0605080 Statistical Mechanics +cond-mat/0605081 Mesoscale and Nanoscale Physics +cond-mat/0605088 Soft Condensed Matter +cond-mat/0605090 Other Condensed Matter +cond-mat/0605091 Strongly Correlated Electrons +cond-mat/0605098 Statistical Mechanics +cond-mat/0605102 Other Condensed Matter +cond-mat/0605104 Materials Science +cond-mat/0605105 Other Condensed Matter +cond-mat/0605109 Strongly Correlated Electrons +cond-mat/0605110 Statistical Mechanics +cond-mat/0605113 Other Condensed Matter +cond-mat/0605114 Mesoscale and Nanoscale Physics +cond-mat/0605115 Disordered Systems and Neural Networks +cond-mat/0605116 Strongly Correlated Electrons +cond-mat/0605120 Disordered Systems and Neural Networks +cond-mat/0605122 Superconductivity +cond-mat/0605125 Materials Science +cond-mat/0605128 Statistical Mechanics +cond-mat/0605131 Materials Science +cond-mat/0605132 Strongly Correlated Electrons +cond-mat/0605133 Strongly Correlated Electrons +cond-mat/0605134 Soft Condensed Matter +cond-mat/0605135 Materials Science +cond-mat/0605136 Statistical Mechanics +cond-mat/0605140 Other Condensed Matter +cond-mat/0605142 Mesoscale and Nanoscale Physics +cond-mat/0605148 Strongly Correlated Electrons +cond-mat/0605149 Strongly Correlated Electrons +cond-mat/0605151 Statistical Mechanics +cond-mat/0605155 Mesoscale and Nanoscale Physics +cond-mat/0605156 Materials Science +cond-mat/0605157 Strongly Correlated Electrons +cond-mat/0605158 Strongly Correlated Electrons +cond-mat/0605159 Mesoscale and Nanoscale Physics +cond-mat/0605160 Disordered Systems and Neural Networks +cond-mat/0605162 Statistical Mechanics +cond-mat/0605166 Statistical Mechanics +cond-mat/0605170 Soft Condensed Matter +cond-mat/0605171 Materials Science +cond-mat/0605175 Mesoscale and Nanoscale Physics +cond-mat/0605176 Statistical Mechanics +cond-mat/0605177 Strongly Correlated Electrons +cond-mat/0605179 Superconductivity +cond-mat/0605180 Other Condensed Matter +cond-mat/0605183 Other Condensed Matter +cond-mat/0605185 Statistical Mechanics +cond-mat/0605186 Mesoscale and Nanoscale Physics +cond-mat/0605187 Materials Science +cond-mat/0605188 Strongly Correlated Electrons +cond-mat/0605191 Strongly Correlated Electrons +cond-mat/0605192 Materials Science +cond-mat/0605193 Soft Condensed Matter +cond-mat/0605201 Soft Condensed Matter +cond-mat/0605206 Other Condensed Matter +cond-mat/0605207 Strongly Correlated Electrons +cond-mat/0605209 Strongly Correlated Electrons +cond-mat/0605216 Strongly Correlated Electrons +cond-mat/0605217 Superconductivity +cond-mat/0605218 Superconductivity +cond-mat/0605219 Superconductivity +cond-mat/0605220 Mesoscale and Nanoscale Physics +cond-mat/0605222 Materials Science +cond-mat/0605223 Mesoscale and Nanoscale Physics +cond-mat/0605225 Statistical Mechanics +cond-mat/0605226 Strongly Correlated Electrons +cond-mat/0605227 Soft Condensed Matter +cond-mat/0605228 Materials Science +cond-mat/0605229 Strongly Correlated Electrons +cond-mat/0605233 Statistical Mechanics +cond-mat/0605236 Soft Condensed Matter +cond-mat/0605237 Mesoscale and Nanoscale Physics +cond-mat/0605238 Soft Condensed Matter +cond-mat/0605240 Strongly Correlated Electrons +cond-mat/0605242 Materials Science +cond-mat/0605244 Soft Condensed Matter +cond-mat/0605245 Superconductivity +cond-mat/0605246 Soft Condensed Matter +cond-mat/0605247 Soft Condensed Matter +cond-mat/0605248 Materials Science +cond-mat/0605249 Mesoscale and Nanoscale Physics +cond-mat/0605250 Mesoscale and Nanoscale Physics +cond-mat/0605251 Soft Condensed Matter +cond-mat/0605253 Soft Condensed Matter +cond-mat/0605254 Statistical Mechanics +cond-mat/0605256 Soft Condensed Matter +cond-mat/0605257 Materials Science +cond-mat/0605260 Statistical Mechanics +cond-mat/0605261 Other Condensed Matter +cond-mat/0605262 Mesoscale and Nanoscale Physics +cond-mat/0605263 Mesoscale and Nanoscale Physics +cond-mat/0605264 Mesoscale and Nanoscale Physics +cond-mat/0605268 Materials Science +cond-mat/0605271 Materials Science +cond-mat/0605277 Strongly Correlated Electrons +cond-mat/0605280 Mesoscale and Nanoscale Physics +cond-mat/0605282 Strongly Correlated Electrons +cond-mat/0605284 Strongly Correlated Electrons +cond-mat/0605286 Mesoscale and Nanoscale Physics +cond-mat/0605287 Materials Science +cond-mat/0605288 Strongly Correlated Electrons +cond-mat/0605289 Strongly Correlated Electrons +cond-mat/0605290 Strongly Correlated Electrons +cond-mat/0605293 Statistical Mechanics +cond-mat/0605294 Other Condensed Matter +cond-mat/0605296 Soft Condensed Matter +cond-mat/0605301 Statistical Mechanics +cond-mat/0605303 Soft Condensed Matter +cond-mat/0605304 Soft Condensed Matter +cond-mat/0605305 Strongly Correlated Electrons +cond-mat/0605306 Strongly Correlated Electrons +cond-mat/0605307 Materials Science +cond-mat/0605309 Materials Science +cond-mat/0605311 Soft Condensed Matter +cond-mat/0605313 Superconductivity +cond-mat/0605315 Statistical Mechanics +cond-mat/0605317 Materials Science +cond-mat/0605318 Strongly Correlated Electrons +cond-mat/0605319 Soft Condensed Matter +cond-mat/0605320 Strongly Correlated Electrons +cond-mat/0605321 Mesoscale and Nanoscale Physics +cond-mat/0605322 Materials Science +cond-mat/0605323 Statistical Mechanics +cond-mat/0605327 Disordered Systems and Neural Networks +cond-mat/0605328 Strongly Correlated Electrons +cond-mat/0605333 Statistical Mechanics +cond-mat/0605335 Statistical Mechanics +cond-mat/0605337 Materials Science +cond-mat/0605340 Disordered Systems and Neural Networks +cond-mat/0605345 Strongly Correlated Electrons +cond-mat/0605349 Superconductivity +cond-mat/0605351 Statistical Mechanics +cond-mat/0605352 Strongly Correlated Electrons +cond-mat/0605354 Disordered Systems and Neural Networks +cond-mat/0605356 Mesoscale and Nanoscale Physics +cond-mat/0605357 Mesoscale and Nanoscale Physics +cond-mat/0605363 Statistical Mechanics +cond-mat/0605365 Mesoscale and Nanoscale Physics +cond-mat/0605366 Soft Condensed Matter +cond-mat/0605368 Materials Science +cond-mat/0605369 Statistical Mechanics +cond-mat/0605371 Materials Science +cond-mat/0605372 Superconductivity +cond-mat/0605373 Superconductivity +cond-mat/0605376 Materials Science +cond-mat/0605377 Other Condensed Matter +cond-mat/0605380 Materials Science +cond-mat/0605383 Materials Science +cond-mat/0605386 Soft Condensed Matter +cond-mat/0605387 Statistical Mechanics +cond-mat/0605388 Mesoscale and Nanoscale Physics +cond-mat/0605391 Superconductivity +cond-mat/0605393 Other Condensed Matter +cond-mat/0605394 Superconductivity +cond-mat/0605396 Strongly Correlated Electrons +cond-mat/0605397 Materials Science +cond-mat/0605401 Materials Science +cond-mat/0605404 Superconductivity +cond-mat/0605407 Other Condensed Matter +cond-mat/0605409 Statistical Mechanics +cond-mat/0605411 Statistical Mechanics +cond-mat/0605412 Other Condensed Matter +cond-mat/0605413 Statistical Mechanics +cond-mat/0605414 Materials Science +cond-mat/0605415 Strongly Correlated Electrons +cond-mat/0605421 Soft Condensed Matter +cond-mat/0605422 Statistical Mechanics +cond-mat/0605423 Mesoscale and Nanoscale Physics +cond-mat/0605425 Superconductivity +cond-mat/0605428 Strongly Correlated Electrons +cond-mat/0605430 Strongly Correlated Electrons +cond-mat/0605434 Superconductivity +cond-mat/0605437 Strongly Correlated Electrons +cond-mat/0605444 Soft Condensed Matter +cond-mat/0605446 Mesoscale and Nanoscale Physics +cond-mat/0605447 Statistical Mechanics +cond-mat/0605449 Materials Science +cond-mat/0605454 Strongly Correlated Electrons +cond-mat/0605457 Other Condensed Matter +cond-mat/0605458 Statistical Mechanics +cond-mat/0605459 Statistical Mechanics +cond-mat/0605460 Strongly Correlated Electrons +cond-mat/0605461 Disordered Systems and Neural Networks +cond-mat/0605462 Soft Condensed Matter +cond-mat/0605463 Soft Condensed Matter +cond-mat/0605464 Statistical Mechanics +cond-mat/0605465 Disordered Systems and Neural Networks +cond-mat/0605466 Statistical Mechanics +cond-mat/0605468 Superconductivity +cond-mat/0605470 Disordered Systems and Neural Networks +cond-mat/0605471 Statistical Mechanics +cond-mat/0605472 Statistical Mechanics +cond-mat/0605473 Statistical Mechanics +cond-mat/0605475 Superconductivity +cond-mat/0605476 Materials Science +cond-mat/0605478 Mesoscale and Nanoscale Physics +cond-mat/0605479 Superconductivity +cond-mat/0605480 Materials Science +cond-mat/0605481 Materials Science +cond-mat/0605484 Superconductivity +cond-mat/0605486 Other Condensed Matter +cond-mat/0605487 Superconductivity +cond-mat/0605488 Mesoscale and Nanoscale Physics +cond-mat/0605489 Materials Science +cond-mat/0605491 Strongly Correlated Electrons +cond-mat/0605503 Soft Condensed Matter +cond-mat/0605505 Statistical Mechanics +cond-mat/0605506 Other Condensed Matter +cond-mat/0605508 Other Condensed Matter +cond-mat/0605509 Other Condensed Matter +cond-mat/0605511 Statistical Mechanics +cond-mat/0605512 Soft Condensed Matter +cond-mat/0605514 Strongly Correlated Electrons +cond-mat/0605519 Materials Science +cond-mat/0605520 Materials Science +cond-mat/0605521 Mesoscale and Nanoscale Physics +cond-mat/0605522 Materials Science +cond-mat/0605524 Materials Science +cond-mat/0605525 Materials Science +cond-mat/0605526 Strongly Correlated Electrons +cond-mat/0605527 Disordered Systems and Neural Networks +cond-mat/0605528 Mesoscale and Nanoscale Physics +cond-mat/0605530 Materials Science +cond-mat/0605533 Disordered Systems and Neural Networks +cond-mat/0605539 Strongly Correlated Electrons +cond-mat/0605540 Materials Science +cond-mat/0605543 Materials Science +cond-mat/0605545 Other Condensed Matter +cond-mat/0605547 Superconductivity +cond-mat/0605551 Statistical Mechanics +cond-mat/0605553 Strongly Correlated Electrons +cond-mat/0605554 Other Condensed Matter +cond-mat/0605555 Strongly Correlated Electrons +cond-mat/0605557 Strongly Correlated Electrons +cond-mat/0605559 Materials Science +cond-mat/0605560 Statistical Mechanics +cond-mat/0605561 Materials Science +cond-mat/0605562 Superconductivity +cond-mat/0605569 Materials Science +cond-mat/0605573 Superconductivity +cond-mat/0605576 Mesoscale and Nanoscale Physics +cond-mat/0605580 Mesoscale and Nanoscale Physics +cond-mat/0605581 Superconductivity +cond-mat/0605591 Mesoscale and Nanoscale Physics +cond-mat/0605592 Materials Science +cond-mat/0605593 Materials Science +cond-mat/0605594 Materials Science +cond-mat/0605596 Superconductivity +cond-mat/0605597 Strongly Correlated Electrons +cond-mat/0605598 Disordered Systems and Neural Networks +cond-mat/0605603 Other Condensed Matter +cond-mat/0605606 Materials Science +cond-mat/0605607 Superconductivity +cond-mat/0605608 Soft Condensed Matter +cond-mat/0605611 Materials Science +cond-mat/0605613 Superconductivity +cond-mat/0605615 Strongly Correlated Electrons +cond-mat/0605617 Soft Condensed Matter +cond-mat/0605621 Statistical Mechanics +cond-mat/0605623 Statistical Mechanics +cond-mat/0605631 Superconductivity +cond-mat/0605632 Statistical Mechanics +cond-mat/0605633 Soft Condensed Matter +cond-mat/0605634 Soft Condensed Matter +cond-mat/0605637 Materials Science +cond-mat/0605640 Soft Condensed Matter +cond-mat/0605646 Superconductivity +cond-mat/0605648 Soft Condensed Matter +cond-mat/0605650 Mesoscale and Nanoscale Physics +cond-mat/0605653 Mesoscale and Nanoscale Physics +cond-mat/0605654 Strongly Correlated Electrons +cond-mat/0605655 Statistical Mechanics +cond-mat/0605657 Mesoscale and Nanoscale Physics +cond-mat/0605660 Superconductivity +cond-mat/0605662 Soft Condensed Matter +cond-mat/0605663 Soft Condensed Matter +cond-mat/0605665 Statistical Mechanics +cond-mat/0605669 Soft Condensed Matter +cond-mat/0605673 Mesoscale and Nanoscale Physics +cond-mat/0605677 Soft Condensed Matter +cond-mat/0605678 Mesoscale and Nanoscale Physics +cond-mat/0605679 Statistical Mechanics +cond-mat/0605680 Other Condensed Matter +cond-mat/0605681 Other Condensed Matter +cond-mat/0605682 Other Condensed Matter +cond-mat/0605687 Materials Science +cond-mat/0605689 Superconductivity +cond-mat/0605690 Superconductivity +cond-mat/0605692 Mesoscale and Nanoscale Physics +cond-mat/0605701 Soft Condensed Matter +cond-mat/0605703 Mesoscale and Nanoscale Physics +cond-mat/0605705 Statistical Mechanics +cond-mat/0605708 Other Condensed Matter +cond-mat/0605711 Mesoscale and Nanoscale Physics +cond-mat/0605712 Strongly Correlated Electrons +cond-mat/0605713 Statistical Mechanics +cond-mat/0605714 Soft Condensed Matter +cond-mat/0605715 Soft Condensed Matter +cond-mat/0605718 Superconductivity +cond-mat/0605720 Superconductivity +cond-mat/0605722 Soft Condensed Matter +cond-mat/0605723 Superconductivity +cond-mat/0605724 Strongly Correlated Electrons +cond-mat/0605725 Statistical Mechanics +cond-mat/0605728 Other Condensed Matter +cond-mat/0605733 Statistical Mechanics +cond-mat/0605736 Other Condensed Matter +cond-mat/0605737 Soft Condensed Matter +cond-mat/0605739 Mesoscale and Nanoscale Physics +cond-mat/0605740 Strongly Correlated Electrons +cond-mat/0605742 Mesoscale and Nanoscale Physics +cond-mat/0605743 Other Condensed Matter +cond-mat/0605745 Disordered Systems and Neural Networks +cond-mat/0605746 Disordered Systems and Neural Networks +cond-mat/0605747 Mesoscale and Nanoscale Physics +cond-mat/0605749 Materials Science +cond-mat/0605755 Disordered Systems and Neural Networks +cond-mat/0606004 Soft Condensed Matter +cond-mat/0606011 Soft Condensed Matter +cond-mat/0606012 Superconductivity +cond-mat/0606016 Mesoscale and Nanoscale Physics +cond-mat/0606017 Strongly Correlated Electrons +cond-mat/0606023 Statistical Mechanics +cond-mat/0606028 Materials Science +cond-mat/0606030 Soft Condensed Matter +cond-mat/0606034 Mesoscale and Nanoscale Physics +cond-mat/0606035 Mesoscale and Nanoscale Physics +cond-mat/0606036 Superconductivity +cond-mat/0606037 Mesoscale and Nanoscale Physics +cond-mat/0606046 Other Condensed Matter +cond-mat/0606049 Strongly Correlated Electrons +cond-mat/0606050 Statistical Mechanics +cond-mat/0606058 Materials Science +cond-mat/0606061 Materials Science +cond-mat/0606062 Materials Science +cond-mat/0606065 Materials Science +cond-mat/0606067 Superconductivity +cond-mat/0606068 Soft Condensed Matter +cond-mat/0606071 Mesoscale and Nanoscale Physics +cond-mat/0606072 Mesoscale and Nanoscale Physics +cond-mat/0606073 Statistical Mechanics +cond-mat/0606086 Mesoscale and Nanoscale Physics +cond-mat/0606088 Statistical Mechanics +cond-mat/0606090 Superconductivity +cond-mat/0606094 Strongly Correlated Electrons +cond-mat/0606097 Other Condensed Matter +cond-mat/0606099 Other Condensed Matter +cond-mat/0606101 Statistical Mechanics +cond-mat/0606111 Mesoscale and Nanoscale Physics +cond-mat/0606112 Mesoscale and Nanoscale Physics +cond-mat/0606113 Disordered Systems and Neural Networks +cond-mat/0606115 Strongly Correlated Electrons +cond-mat/0606116 Statistical Mechanics +cond-mat/0606117 Other Condensed Matter +cond-mat/0606120 Mesoscale and Nanoscale Physics +cond-mat/0606121 Materials Science +cond-mat/0606122 Disordered Systems and Neural Networks +cond-mat/0606124 Mesoscale and Nanoscale Physics +cond-mat/0606126 Statistical Mechanics +cond-mat/0606127 Soft Condensed Matter +cond-mat/0606128 Statistical Mechanics +cond-mat/0606133 Materials Science +cond-mat/0606137 Statistical Mechanics +cond-mat/0606138 Statistical Mechanics +cond-mat/0606140 Strongly Correlated Electrons +cond-mat/0606142 Materials Science +cond-mat/0606143 Strongly Correlated Electrons +cond-mat/0606149 Superconductivity +cond-mat/0606152 Strongly Correlated Electrons +cond-mat/0606161 Statistical Mechanics +cond-mat/0606162 Statistical Mechanics +cond-mat/0606163 Superconductivity +cond-mat/0606164 Statistical Mechanics +cond-mat/0606166 Mesoscale and Nanoscale Physics +cond-mat/0606168 Mesoscale and Nanoscale Physics +cond-mat/0606169 Soft Condensed Matter +cond-mat/0606171 Disordered Systems and Neural Networks +cond-mat/0606175 Superconductivity +cond-mat/0606176 Strongly Correlated Electrons +cond-mat/0606178 Superconductivity +cond-mat/0606183 Strongly Correlated Electrons +cond-mat/0606186 Disordered Systems and Neural Networks +cond-mat/0606190 Statistical Mechanics +cond-mat/0606194 Strongly Correlated Electrons +cond-mat/0606196 Other Condensed Matter +cond-mat/0606197 Other Condensed Matter +cond-mat/0606199 Disordered Systems and Neural Networks +cond-mat/0606200 Strongly Correlated Electrons +cond-mat/0606202 Superconductivity +cond-mat/0606206 Statistical Mechanics +cond-mat/0606210 Statistical Mechanics +cond-mat/0606213 Materials Science +cond-mat/0606215 Disordered Systems and Neural Networks +cond-mat/0606221 Soft Condensed Matter +cond-mat/0606222 Materials Science +cond-mat/0606223 Superconductivity +cond-mat/0606224 Statistical Mechanics +cond-mat/0606226 Superconductivity +cond-mat/0606228 Materials Science +cond-mat/0606231 Superconductivity +cond-mat/0606232 Materials Science +cond-mat/0606233 Statistical Mechanics +cond-mat/0606234 Mesoscale and Nanoscale Physics +cond-mat/0606238 Superconductivity +cond-mat/0606241 Strongly Correlated Electrons +cond-mat/0606246 Strongly Correlated Electrons +cond-mat/0606251 Other Condensed Matter +cond-mat/0606254 Soft Condensed Matter +cond-mat/0606257 Superconductivity +cond-mat/0606258 Mesoscale and Nanoscale Physics +cond-mat/0606262 Other Condensed Matter +cond-mat/0606263 Strongly Correlated Electrons +cond-mat/0606265 Other Condensed Matter +cond-mat/0606266 Mesoscale and Nanoscale Physics +cond-mat/0606272 Mesoscale and Nanoscale Physics +cond-mat/0606273 Mesoscale and Nanoscale Physics +cond-mat/0606275 Mesoscale and Nanoscale Physics +cond-mat/0606277 Statistical Mechanics +cond-mat/0606279 Strongly Correlated Electrons +cond-mat/0606280 Superconductivity +cond-mat/0606283 Statistical Mechanics +cond-mat/0606286 Materials Science +cond-mat/0606291 Strongly Correlated Electrons +cond-mat/0606292 Statistical Mechanics +cond-mat/0606293 Materials Science +cond-mat/0606296 Soft Condensed Matter +cond-mat/0606297 Superconductivity +cond-mat/0606303 Superconductivity +cond-mat/0606305 Materials Science +cond-mat/0606307 Superconductivity +cond-mat/0606309 Strongly Correlated Electrons +cond-mat/0606310 Materials Science +cond-mat/0606314 Strongly Correlated Electrons +cond-mat/0606320 Statistical Mechanics +cond-mat/0606321 Mesoscale and Nanoscale Physics +cond-mat/0606323 Statistical Mechanics +cond-mat/0606324 Strongly Correlated Electrons +cond-mat/0606326 Materials Science +cond-mat/0606329 Statistical Mechanics +cond-mat/0606336 Mesoscale and Nanoscale Physics +cond-mat/0606339 Strongly Correlated Electrons +cond-mat/0606340 Materials Science +cond-mat/0606344 Superconductivity +cond-mat/0606346 Superconductivity +cond-mat/0606351 Disordered Systems and Neural Networks +cond-mat/0606352 Soft Condensed Matter +cond-mat/0606356 Strongly Correlated Electrons +cond-mat/0606358 Disordered Systems and Neural Networks +cond-mat/0606359 Soft Condensed Matter +cond-mat/0606362 Mesoscale and Nanoscale Physics +cond-mat/0606363 Statistical Mechanics +cond-mat/0606366 Mesoscale and Nanoscale Physics +cond-mat/0606367 Statistical Mechanics +cond-mat/0606372 Superconductivity +cond-mat/0606373 Materials Science +cond-mat/0606376 Mesoscale and Nanoscale Physics +cond-mat/0606379 Mesoscale and Nanoscale Physics +cond-mat/0606387 Strongly Correlated Electrons +cond-mat/0606389 Strongly Correlated Electrons +cond-mat/0606390 Superconductivity +cond-mat/0606391 Disordered Systems and Neural Networks +cond-mat/0606392 Superconductivity +cond-mat/0606393 Superconductivity +cond-mat/0606394 Other Condensed Matter +cond-mat/0606397 Soft Condensed Matter +cond-mat/0606399 Statistical Mechanics +cond-mat/0606400 Strongly Correlated Electrons +cond-mat/0606404 Superconductivity +cond-mat/0606407 Mesoscale and Nanoscale Physics +cond-mat/0606415 Materials Science +cond-mat/0606417 Materials Science +cond-mat/0606419 Materials Science +cond-mat/0606427 Materials Science +cond-mat/0606428 Materials Science +cond-mat/0606432 Statistical Mechanics +cond-mat/0606435 Superconductivity +cond-mat/0606437 Mesoscale and Nanoscale Physics +cond-mat/0606443 Statistical Mechanics +cond-mat/0606447 Statistical Mechanics +cond-mat/0606448 Disordered Systems and Neural Networks +cond-mat/0606449 Superconductivity +cond-mat/0606450 Statistical Mechanics +cond-mat/0606461 Strongly Correlated Electrons +cond-mat/0606463 Materials Science +cond-mat/0606465 Mesoscale and Nanoscale Physics +cond-mat/0606466 Soft Condensed Matter +cond-mat/0606468 Mesoscale and Nanoscale Physics +cond-mat/0606469 Statistical Mechanics +cond-mat/0606470 Superconductivity +cond-mat/0606471 Statistical Mechanics +cond-mat/0606474 Materials Science +cond-mat/0606475 Superconductivity +cond-mat/0606476 Strongly Correlated Electrons +cond-mat/0606478 Superconductivity +cond-mat/0606481 Mesoscale and Nanoscale Physics +cond-mat/0606482 Soft Condensed Matter +cond-mat/0606484 Statistical Mechanics +cond-mat/0606490 Other Condensed Matter +cond-mat/0606497 Materials Science +cond-mat/0606499 Strongly Correlated Electrons +cond-mat/0606500 Mesoscale and Nanoscale Physics +cond-mat/0606502 Materials Science +cond-mat/0606503 Materials Science +cond-mat/0606504 Mesoscale and Nanoscale Physics +cond-mat/0606507 Disordered Systems and Neural Networks +cond-mat/0606510 Disordered Systems and Neural Networks +cond-mat/0606513 Superconductivity +cond-mat/0606515 Statistical Mechanics +cond-mat/0606516 Soft Condensed Matter +cond-mat/0606518 Strongly Correlated Electrons +cond-mat/0606519 Superconductivity +cond-mat/0606520 Superconductivity +cond-mat/0606522 Superconductivity +cond-mat/0606523 Disordered Systems and Neural Networks +cond-mat/0606532 Materials Science +cond-mat/0606536 Strongly Correlated Electrons +cond-mat/0606537 Superconductivity +cond-mat/0606539 Strongly Correlated Electrons +cond-mat/0606542 Materials Science +cond-mat/0606543 Other Condensed Matter +cond-mat/0606545 Superconductivity +cond-mat/0606546 Materials Science +cond-mat/0606547 Materials Science +cond-mat/0606548 Mesoscale and Nanoscale Physics +cond-mat/0606551 Strongly Correlated Electrons +cond-mat/0606553 Disordered Systems and Neural Networks +cond-mat/0606554 Other Condensed Matter +cond-mat/0606555 Superconductivity +cond-mat/0606557 Strongly Correlated Electrons +cond-mat/0606564 Superconductivity +cond-mat/0606565 Materials Science +cond-mat/0606567 Materials Science +cond-mat/0606568 Superconductivity +cond-mat/0606570 Statistical Mechanics +cond-mat/0606575 Statistical Mechanics +cond-mat/0606578 Strongly Correlated Electrons +cond-mat/0606580 Mesoscale and Nanoscale Physics +cond-mat/0606581 Mesoscale and Nanoscale Physics +cond-mat/0606588 Materials Science +cond-mat/0606590 Other Condensed Matter +cond-mat/0606594 Superconductivity +cond-mat/0606596 Strongly Correlated Electrons +cond-mat/0606600 Mesoscale and Nanoscale Physics +cond-mat/0606601 Statistical Mechanics +cond-mat/0606603 Mesoscale and Nanoscale Physics +cond-mat/0606607 Materials Science +cond-mat/0606609 Other Condensed Matter +cond-mat/0606610 Mesoscale and Nanoscale Physics +cond-mat/0606614 Materials Science +cond-mat/0606616 Superconductivity +cond-mat/0606617 Other Condensed Matter +cond-mat/0606618 Soft Condensed Matter +cond-mat/0606621 Strongly Correlated Electrons +cond-mat/0606628 Soft Condensed Matter +cond-mat/0606629 Superconductivity +cond-mat/0606633 Strongly Correlated Electrons +cond-mat/0606640 Materials Science +cond-mat/0606642 Other Condensed Matter +cond-mat/0606643 Superconductivity +cond-mat/0606645 Superconductivity +cond-mat/0606650 Mesoscale and Nanoscale Physics +cond-mat/0606652 Statistical Mechanics +cond-mat/0606655 Statistical Mechanics +cond-mat/0606658 Soft Condensed Matter +cond-mat/0606659 Strongly Correlated Electrons +cond-mat/0606667 Superconductivity +cond-mat/0606668 Other Condensed Matter +cond-mat/0606669 Statistical Mechanics +cond-mat/0606670 Materials Science +cond-mat/0606674 Soft Condensed Matter +cond-mat/0606678 Statistical Mechanics +cond-mat/0606680 Soft Condensed Matter +cond-mat/0606681 Materials Science +cond-mat/0606684 Other Condensed Matter +cond-mat/0606685 Superconductivity +cond-mat/0606686 Materials Science +cond-mat/0606688 Superconductivity +cond-mat/0606694 Materials Science +cond-mat/0606695 Superconductivity +cond-mat/0606698 Statistical Mechanics +cond-mat/0606701 Superconductivity +cond-mat/0606702 Superconductivity +cond-mat/0606708 Materials Science +cond-mat/0606710 Statistical Mechanics +cond-mat/0606715 Mesoscale and Nanoscale Physics +cond-mat/0606724 Statistical Mechanics +cond-mat/0606725 Other Condensed Matter +cond-mat/0606729 Mesoscale and Nanoscale Physics +cond-mat/0606732 Soft Condensed Matter +cond-mat/0606739 Statistical Mechanics +cond-mat/0606741 Mesoscale and Nanoscale Physics +cond-mat/0606746 Superconductivity +cond-mat/0606748 Strongly Correlated Electrons +cond-mat/0606749 Superconductivity +cond-mat/0606750 Superconductivity +cond-mat/0606752 Mesoscale and Nanoscale Physics +cond-mat/0606754 Disordered Systems and Neural Networks +cond-mat/0606756 Mesoscale and Nanoscale Physics +cond-mat/0606757 Other Condensed Matter +cond-mat/0606758 Mesoscale and Nanoscale Physics +cond-mat/0606765 Soft Condensed Matter +cond-mat/0606768 Statistical Mechanics +cond-mat/0606769 Statistical Mechanics +cond-mat/0606770 Mesoscale and Nanoscale Physics +cond-mat/0606772 Materials Science +cond-mat/0606773 Disordered Systems and Neural Networks +cond-mat/0606777 Materials Science +cond-mat/0606784 Superconductivity +cond-mat/0606785 Superconductivity +cond-mat/0606786 Superconductivity +cond-mat/0606789 Materials Science +cond-mat/0606792 Soft Condensed Matter +cond-mat/0606797 Disordered Systems and Neural Networks +cond-mat/0606800 Mesoscale and Nanoscale Physics +cond-mat/0606802 Mesoscale and Nanoscale Physics +cond-mat/0606804 Statistical Mechanics +cond-mat/0606811 Superconductivity +cond-mat/0606812 Soft Condensed Matter +cond-mat/0606813 Strongly Correlated Electrons +cond-mat/0606814 Strongly Correlated Electrons +cond-mat/0606816 Superconductivity +cond-mat/0606817 Soft Condensed Matter +cond-mat/0607002 Superconductivity +cond-mat/0607003 Mesoscale and Nanoscale Physics +cond-mat/0607004 Other Condensed Matter +cond-mat/0607005 Statistical Mechanics +cond-mat/0607008 Statistical Mechanics +cond-mat/0607012 Superconductivity +cond-mat/0607013 Superconductivity +cond-mat/0607014 Materials Science +cond-mat/0607018 Strongly Correlated Electrons +cond-mat/0607020 Mesoscale and Nanoscale Physics +cond-mat/0607026 Strongly Correlated Electrons +cond-mat/0607028 Mesoscale and Nanoscale Physics +cond-mat/0607029 Strongly Correlated Electrons +cond-mat/0607031 Superconductivity +cond-mat/0607032 Other Condensed Matter +cond-mat/0607034 Mesoscale and Nanoscale Physics +cond-mat/0607035 Strongly Correlated Electrons +cond-mat/0607036 Mesoscale and Nanoscale Physics +cond-mat/0607039 Mesoscale and Nanoscale Physics +cond-mat/0607042 Superconductivity +cond-mat/0607049 Materials Science +cond-mat/0607056 Disordered Systems and Neural Networks +cond-mat/0607065 Superconductivity +cond-mat/0607067 Statistical Mechanics +cond-mat/0607068 Soft Condensed Matter +cond-mat/0607069 Disordered Systems and Neural Networks +cond-mat/0607073 Superconductivity +cond-mat/0607076 Mesoscale and Nanoscale Physics +cond-mat/0607077 Other Condensed Matter +cond-mat/0607081 Other Condensed Matter +cond-mat/0607086 Soft Condensed Matter +cond-mat/0607087 Soft Condensed Matter +cond-mat/0607092 Mesoscale and Nanoscale Physics +cond-mat/0607094 Mesoscale and Nanoscale Physics +cond-mat/0607095 Materials Science +cond-mat/0607097 Disordered Systems and Neural Networks +cond-mat/0607099 Superconductivity +cond-mat/0607101 Statistical Mechanics +cond-mat/0607103 Other Condensed Matter +cond-mat/0607105 Statistical Mechanics +cond-mat/0607106 Soft Condensed Matter +cond-mat/0607112 Other Condensed Matter +cond-mat/0607113 Soft Condensed Matter +cond-mat/0607114 Materials Science +cond-mat/0607119 Soft Condensed Matter +cond-mat/0607124 Materials Science +cond-mat/0607127 Mesoscale and Nanoscale Physics +cond-mat/0607132 Strongly Correlated Electrons +cond-mat/0607133 Superconductivity +cond-mat/0607134 Superconductivity +cond-mat/0607135 Soft Condensed Matter +cond-mat/0607136 Strongly Correlated Electrons +cond-mat/0607140 Strongly Correlated Electrons +cond-mat/0607142 Statistical Mechanics +cond-mat/0607146 Statistical Mechanics +cond-mat/0607147 Superconductivity +cond-mat/0607149 Materials Science +cond-mat/0607150 Materials Science +cond-mat/0607153 Superconductivity +cond-mat/0607154 Mesoscale and Nanoscale Physics +cond-mat/0607155 Superconductivity +cond-mat/0607158 Disordered Systems and Neural Networks +cond-mat/0607159 Mesoscale and Nanoscale Physics +cond-mat/0607160 Other Condensed Matter +cond-mat/0607161 Mesoscale and Nanoscale Physics +cond-mat/0607164 Soft Condensed Matter +cond-mat/0607166 Other Condensed Matter +cond-mat/0607167 Mesoscale and Nanoscale Physics +cond-mat/0607174 Mesoscale and Nanoscale Physics +cond-mat/0607177 Materials Science +cond-mat/0607180 Mesoscale and Nanoscale Physics +cond-mat/0607184 Other Condensed Matter +cond-mat/0607186 Soft Condensed Matter +cond-mat/0607191 Strongly Correlated Electrons +cond-mat/0607193 Strongly Correlated Electrons +cond-mat/0607195 Other Condensed Matter +cond-mat/0607199 Mesoscale and Nanoscale Physics +cond-mat/0607200 Disordered Systems and Neural Networks +cond-mat/0607201 Materials Science +cond-mat/0607203 Mesoscale and Nanoscale Physics +cond-mat/0607204 Mesoscale and Nanoscale Physics +cond-mat/0607208 Mesoscale and Nanoscale Physics +cond-mat/0607213 Statistical Mechanics +cond-mat/0607214 Mesoscale and Nanoscale Physics +cond-mat/0607216 Mesoscale and Nanoscale Physics +cond-mat/0607221 Materials Science +cond-mat/0607225 Statistical Mechanics +cond-mat/0607227 Mesoscale and Nanoscale Physics +cond-mat/0607229 Disordered Systems and Neural Networks +cond-mat/0607234 Mesoscale and Nanoscale Physics +cond-mat/0607237 Mesoscale and Nanoscale Physics +cond-mat/0607243 Mesoscale and Nanoscale Physics +cond-mat/0607246 Other Condensed Matter +cond-mat/0607247 Mesoscale and Nanoscale Physics +cond-mat/0607249 Statistical Mechanics +cond-mat/0607250 Statistical Mechanics +cond-mat/0607252 Strongly Correlated Electrons +cond-mat/0607253 Strongly Correlated Electrons +cond-mat/0607256 Mesoscale and Nanoscale Physics +cond-mat/0607257 Statistical Mechanics +cond-mat/0607259 Superconductivity +cond-mat/0607265 Statistical Mechanics +cond-mat/0607266 Other Condensed Matter +cond-mat/0607267 Mesoscale and Nanoscale Physics +cond-mat/0607272 Other Condensed Matter +cond-mat/0607273 Materials Science +cond-mat/0607275 Other Condensed Matter +cond-mat/0607277 Other Condensed Matter +cond-mat/0607278 Mesoscale and Nanoscale Physics +cond-mat/0607279 Soft Condensed Matter +cond-mat/0607280 Mesoscale and Nanoscale Physics +cond-mat/0607281 Superconductivity +cond-mat/0607282 Strongly Correlated Electrons +cond-mat/0607285 Soft Condensed Matter +cond-mat/0607287 Soft Condensed Matter +cond-mat/0607289 Statistical Mechanics +cond-mat/0607292 Superconductivity +cond-mat/0607293 Strongly Correlated Electrons +cond-mat/0607294 Statistical Mechanics +cond-mat/0607298 Superconductivity +cond-mat/0607300 Mesoscale and Nanoscale Physics +cond-mat/0607301 Mesoscale and Nanoscale Physics +cond-mat/0607305 Statistical Mechanics +cond-mat/0607312 Mesoscale and Nanoscale Physics +cond-mat/0607320 Other Condensed Matter +cond-mat/0607322 Statistical Mechanics +cond-mat/0607324 Strongly Correlated Electrons +cond-mat/0607325 Disordered Systems and Neural Networks +cond-mat/0607328 Superconductivity +cond-mat/0607329 Materials Science +cond-mat/0607331 Statistical Mechanics +cond-mat/0607336 Strongly Correlated Electrons +cond-mat/0607340 Other Condensed Matter +cond-mat/0607341 Materials Science +cond-mat/0607343 Mesoscale and Nanoscale Physics +cond-mat/0607344 Statistical Mechanics +cond-mat/0607351 Statistical Mechanics +cond-mat/0607352 Soft Condensed Matter +cond-mat/0607357 Mesoscale and Nanoscale Physics +cond-mat/0607359 Mesoscale and Nanoscale Physics +cond-mat/0607361 Mesoscale and Nanoscale Physics +cond-mat/0607362 Other Condensed Matter +cond-mat/0607363 Mesoscale and Nanoscale Physics +cond-mat/0607365 Statistical Mechanics +cond-mat/0607367 Statistical Mechanics +cond-mat/0607368 Superconductivity +cond-mat/0607371 Other Condensed Matter +cond-mat/0607372 Materials Science +cond-mat/0607378 Strongly Correlated Electrons +cond-mat/0607379 Other Condensed Matter +cond-mat/0607381 Strongly Correlated Electrons +cond-mat/0607383 Superconductivity +cond-mat/0607389 Statistical Mechanics +cond-mat/0607391 Superconductivity +cond-mat/0607393 Materials Science +cond-mat/0607403 Soft Condensed Matter +cond-mat/0607404 Disordered Systems and Neural Networks +cond-mat/0607408 Mesoscale and Nanoscale Physics +cond-mat/0607409 Superconductivity +cond-mat/0607415 Superconductivity +cond-mat/0607418 Materials Science +cond-mat/0607423 Statistical Mechanics +cond-mat/0607434 Disordered Systems and Neural Networks +cond-mat/0607435 Materials Science +cond-mat/0607437 Materials Science +cond-mat/0607441 Soft Condensed Matter +cond-mat/0607442 Soft Condensed Matter +cond-mat/0607445 Statistical Mechanics +cond-mat/0607447 Mesoscale and Nanoscale Physics +cond-mat/0607449 Statistical Mechanics +cond-mat/0607452 Materials Science +cond-mat/0607454 Statistical Mechanics +cond-mat/0607460 Materials Science +cond-mat/0607462 Materials Science +cond-mat/0607463 Other Condensed Matter +cond-mat/0607464 Other Condensed Matter +cond-mat/0607467 Strongly Correlated Electrons +cond-mat/0607469 Strongly Correlated Electrons +cond-mat/0607470 Strongly Correlated Electrons +cond-mat/0607474 Strongly Correlated Electrons +cond-mat/0607475 Superconductivity +cond-mat/0607478 Statistical Mechanics +cond-mat/0607481 Strongly Correlated Electrons +cond-mat/0607484 Mesoscale and Nanoscale Physics +cond-mat/0607485 Statistical Mechanics +cond-mat/0607487 Superconductivity +cond-mat/0607489 Superconductivity +cond-mat/0607492 Soft Condensed Matter +cond-mat/0607494 Strongly Correlated Electrons +cond-mat/0607497 Strongly Correlated Electrons +cond-mat/0607499 Statistical Mechanics +cond-mat/0607501 Strongly Correlated Electrons +cond-mat/0607504 Other Condensed Matter +cond-mat/0607507 Statistical Mechanics +cond-mat/0607509 Mesoscale and Nanoscale Physics +cond-mat/0607511 Statistical Mechanics +cond-mat/0607517 Statistical Mechanics +cond-mat/0607519 Other Condensed Matter +cond-mat/0607521 Statistical Mechanics +cond-mat/0607526 Materials Science +cond-mat/0607530 Statistical Mechanics +cond-mat/0607532 Superconductivity +cond-mat/0607533 Strongly Correlated Electrons +cond-mat/0607540 Superconductivity +cond-mat/0607541 Mesoscale and Nanoscale Physics +cond-mat/0607542 Statistical Mechanics +cond-mat/0607543 Materials Science +cond-mat/0607553 Materials Science +cond-mat/0607554 Strongly Correlated Electrons +cond-mat/0607555 Mesoscale and Nanoscale Physics +cond-mat/0607559 Statistical Mechanics +cond-mat/0607560 Soft Condensed Matter +cond-mat/0607563 Strongly Correlated Electrons +cond-mat/0607564 Mesoscale and Nanoscale Physics +cond-mat/0607567 Strongly Correlated Electrons +cond-mat/0607569 Superconductivity +cond-mat/0607571 Mesoscale and Nanoscale Physics +cond-mat/0607573 Strongly Correlated Electrons +cond-mat/0607574 Disordered Systems and Neural Networks +cond-mat/0607575 Statistical Mechanics +cond-mat/0607578 Superconductivity +cond-mat/0607579 Statistical Mechanics +cond-mat/0607580 Materials Science +cond-mat/0607583 Other Condensed Matter +cond-mat/0607589 Strongly Correlated Electrons +cond-mat/0607590 Superconductivity +cond-mat/0607591 Materials Science +cond-mat/0607593 Strongly Correlated Electrons +cond-mat/0607595 Strongly Correlated Electrons +cond-mat/0607596 Statistical Mechanics +cond-mat/0607597 Materials Science +cond-mat/0607598 Superconductivity +cond-mat/0607599 Superconductivity +cond-mat/0607600 Other Condensed Matter +cond-mat/0607602 Soft Condensed Matter +cond-mat/0607605 Statistical Mechanics +cond-mat/0607607 Strongly Correlated Electrons +cond-mat/0607608 Materials Science +cond-mat/0607611 Soft Condensed Matter +cond-mat/0607619 Other Condensed Matter +cond-mat/0607626 Superconductivity +cond-mat/0607627 Other Condensed Matter +cond-mat/0607628 Statistical Mechanics +cond-mat/0607632 Statistical Mechanics +cond-mat/0607633 Strongly Correlated Electrons +cond-mat/0607636 Mesoscale and Nanoscale Physics +cond-mat/0607637 Strongly Correlated Electrons +cond-mat/0607638 Mesoscale and Nanoscale Physics +cond-mat/0607641 Materials Science +cond-mat/0607642 Disordered Systems and Neural Networks +cond-mat/0607643 Statistical Mechanics +cond-mat/0607644 Disordered Systems and Neural Networks +cond-mat/0607647 Statistical Mechanics +cond-mat/0607648 Superconductivity +cond-mat/0607649 Mesoscale and Nanoscale Physics +cond-mat/0607650 Statistical Mechanics +cond-mat/0607651 Materials Science +cond-mat/0607657 Disordered Systems and Neural Networks +cond-mat/0607658 Materials Science +cond-mat/0607663 Materials Science +cond-mat/0607666 Superconductivity +cond-mat/0607670 Mesoscale and Nanoscale Physics +cond-mat/0607672 Soft Condensed Matter +cond-mat/0607675 Statistical Mechanics +cond-mat/0607679 Materials Science +cond-mat/0607680 Mesoscale and Nanoscale Physics +cond-mat/0607682 Superconductivity +cond-mat/0607684 Superconductivity +cond-mat/0607689 Soft Condensed Matter +cond-mat/0607691 Statistical Mechanics +cond-mat/0607695 Mesoscale and Nanoscale Physics +cond-mat/0607697 Other Condensed Matter +cond-mat/0607704 Statistical Mechanics +cond-mat/0607707 Strongly Correlated Electrons +cond-mat/0607709 Materials Science +cond-mat/0607710 Materials Science +cond-mat/0607713 Soft Condensed Matter +cond-mat/0607720 Mesoscale and Nanoscale Physics +cond-mat/0607722 Strongly Correlated Electrons +cond-mat/0607725 Materials Science +cond-mat/0607726 Soft Condensed Matter +cond-mat/0607728 Mesoscale and Nanoscale Physics +cond-mat/0607729 Statistical Mechanics +cond-mat/0607730 Other Condensed Matter +cond-mat/0607731 Strongly Correlated Electrons +cond-mat/0607740 Mesoscale and Nanoscale Physics +cond-mat/0607742 Strongly Correlated Electrons +cond-mat/0607744 Materials Science +cond-mat/0607747 Statistical Mechanics +cond-mat/0607748 Materials Science +cond-mat/0607749 Statistical Mechanics +cond-mat/0607750 Strongly Correlated Electrons +cond-mat/0607752 Strongly Correlated Electrons +cond-mat/0607753 Strongly Correlated Electrons +cond-mat/0607755 Disordered Systems and Neural Networks +cond-mat/0607756 Mesoscale and Nanoscale Physics +cond-mat/0607758 Mesoscale and Nanoscale Physics +cond-mat/0607762 Superconductivity +cond-mat/0607765 Materials Science +cond-mat/0607766 Materials Science +cond-mat/0607767 Disordered Systems and Neural Networks +cond-mat/0607769 Superconductivity +cond-mat/0607770 Superconductivity +cond-mat/0607771 Materials Science +cond-mat/0607772 Mesoscale and Nanoscale Physics +cond-mat/0607773 Strongly Correlated Electrons +cond-mat/0607777 Superconductivity +cond-mat/0607781 Statistical Mechanics +cond-mat/0607792 Soft Condensed Matter +cond-mat/0607794 Mesoscale and Nanoscale Physics +cond-mat/0607795 Strongly Correlated Electrons +cond-mat/0607798 Materials Science +cond-mat/0607800 Materials Science +cond-mat/0607801 Materials Science +cond-mat/0607802 Soft Condensed Matter +cond-mat/0607803 Superconductivity +cond-mat/0607806 Other Condensed Matter +cond-mat/0607813 Strongly Correlated Electrons +cond-mat/0607825 Statistical Mechanics +cond-mat/0607828 Other Condensed Matter +cond-mat/0607829 Statistical Mechanics +cond-mat/0607832 Superconductivity +cond-mat/0607836 Mesoscale and Nanoscale Physics +cond-mat/0607837 Strongly Correlated Electrons +cond-mat/0608001 Strongly Correlated Electrons +cond-mat/0608004 Soft Condensed Matter +cond-mat/0608005 Strongly Correlated Electrons +cond-mat/0608006 Mesoscale and Nanoscale Physics +cond-mat/0608008 Strongly Correlated Electrons +cond-mat/0608011 Strongly Correlated Electrons +cond-mat/0608012 Other Condensed Matter +cond-mat/0608014 Materials Science +cond-mat/0608015 Superconductivity +cond-mat/0608017 Mesoscale and Nanoscale Physics +cond-mat/0608020 Soft Condensed Matter +cond-mat/0608026 Statistical Mechanics +cond-mat/0608034 Statistical Mechanics +cond-mat/0608037 Materials Science +cond-mat/0608038 Disordered Systems and Neural Networks +cond-mat/0608043 Mesoscale and Nanoscale Physics +cond-mat/0608046 Mesoscale and Nanoscale Physics +cond-mat/0608051 Soft Condensed Matter +cond-mat/0608052 Disordered Systems and Neural Networks +cond-mat/0608055 Superconductivity +cond-mat/0608058 Other Condensed Matter +cond-mat/0608059 Statistical Mechanics +cond-mat/0608061 Strongly Correlated Electrons +cond-mat/0608065 Strongly Correlated Electrons +cond-mat/0608072 Materials Science +cond-mat/0608073 Materials Science +cond-mat/0608074 Materials Science +cond-mat/0608075 Statistical Mechanics +cond-mat/0608076 Materials Science +cond-mat/0608090 Strongly Correlated Electrons +cond-mat/0608093 Superconductivity +cond-mat/0608100 Strongly Correlated Electrons +cond-mat/0608102 Materials Science +cond-mat/0608103 Disordered Systems and Neural Networks +cond-mat/0608106 Statistical Mechanics +cond-mat/0608107 Materials Science +cond-mat/0608109 Strongly Correlated Electrons +cond-mat/0608110 Mesoscale and Nanoscale Physics +cond-mat/0608114 Strongly Correlated Electrons +cond-mat/0608115 Superconductivity +cond-mat/0608117 Statistical Mechanics +cond-mat/0608118 Disordered Systems and Neural Networks +cond-mat/0608120 Strongly Correlated Electrons +cond-mat/0608121 Materials Science +cond-mat/0608124 Soft Condensed Matter +cond-mat/0608125 Soft Condensed Matter +cond-mat/0608127 Statistical Mechanics +cond-mat/0608133 Materials Science +cond-mat/0608134 Soft Condensed Matter +cond-mat/0608135 Other Condensed Matter +cond-mat/0608138 Statistical Mechanics +cond-mat/0608139 Statistical Mechanics +cond-mat/0608141 Materials Science +cond-mat/0608142 Strongly Correlated Electrons +cond-mat/0608144 Statistical Mechanics +cond-mat/0608146 Materials Science +cond-mat/0608147 Statistical Mechanics +cond-mat/0608149 Superconductivity +cond-mat/0608150 Soft Condensed Matter +cond-mat/0608153 Materials Science +cond-mat/0608154 Statistical Mechanics +cond-mat/0608155 Statistical Mechanics +cond-mat/0608158 Statistical Mechanics +cond-mat/0608159 Mesoscale and Nanoscale Physics +cond-mat/0608160 Statistical Mechanics +cond-mat/0608162 Statistical Mechanics +cond-mat/0608163 Soft Condensed Matter +cond-mat/0608165 Statistical Mechanics +cond-mat/0608168 Materials Science +cond-mat/0608172 Superconductivity +cond-mat/0608174 Materials Science +cond-mat/0608177 Strongly Correlated Electrons +cond-mat/0608179 Materials Science +cond-mat/0608180 Strongly Correlated Electrons +cond-mat/0608181 Soft Condensed Matter +cond-mat/0608183 Soft Condensed Matter +cond-mat/0608184 Materials Science +cond-mat/0608185 Strongly Correlated Electrons +cond-mat/0608187 Strongly Correlated Electrons +cond-mat/0608188 Disordered Systems and Neural Networks +cond-mat/0608190 Soft Condensed Matter +cond-mat/0608197 Statistical Mechanics +cond-mat/0608198 Materials Science +cond-mat/0608199 Materials Science +cond-mat/0608201 Soft Condensed Matter +cond-mat/0608202 Strongly Correlated Electrons +cond-mat/0608204 Strongly Correlated Electrons +cond-mat/0608206 Disordered Systems and Neural Networks +cond-mat/0608209 Superconductivity +cond-mat/0608210 Strongly Correlated Electrons +cond-mat/0608213 Superconductivity +cond-mat/0608221 Mesoscale and Nanoscale Physics +cond-mat/0608223 Statistical Mechanics +cond-mat/0608224 Mesoscale and Nanoscale Physics +cond-mat/0608225 Mesoscale and Nanoscale Physics +cond-mat/0608228 Mesoscale and Nanoscale Physics +cond-mat/0608230 Soft Condensed Matter +cond-mat/0608231 Strongly Correlated Electrons +cond-mat/0608232 Materials Science +cond-mat/0608233 Superconductivity +cond-mat/0608235 Strongly Correlated Electrons +cond-mat/0608237 Mesoscale and Nanoscale Physics +cond-mat/0608238 Strongly Correlated Electrons +cond-mat/0608241 Other Condensed Matter +cond-mat/0608243 Strongly Correlated Electrons +cond-mat/0608252 Mesoscale and Nanoscale Physics +cond-mat/0608254 Materials Science +cond-mat/0608256 Superconductivity +cond-mat/0608258 Other Condensed Matter +cond-mat/0608259 Statistical Mechanics +cond-mat/0608263 Superconductivity +cond-mat/0608267 Mesoscale and Nanoscale Physics +cond-mat/0608269 Statistical Mechanics +cond-mat/0608274 Materials Science +cond-mat/0608276 Superconductivity +cond-mat/0608278 Soft Condensed Matter +cond-mat/0608284 Other Condensed Matter +cond-mat/0608285 Soft Condensed Matter +cond-mat/0608288 Soft Condensed Matter +cond-mat/0608290 Materials Science +cond-mat/0608291 Other Condensed Matter +cond-mat/0608299 Statistical Mechanics +cond-mat/0608301 Other Condensed Matter +cond-mat/0608308 Superconductivity +cond-mat/0608312 Statistical Mechanics +cond-mat/0608318 Superconductivity +cond-mat/0608320 Superconductivity +cond-mat/0608322 Superconductivity +cond-mat/0608323 Superconductivity +cond-mat/0608324 Statistical Mechanics +cond-mat/0608329 Strongly Correlated Electrons +cond-mat/0608330 Statistical Mechanics +cond-mat/0608334 Materials Science +cond-mat/0608335 Other Condensed Matter +cond-mat/0608336 Disordered Systems and Neural Networks +cond-mat/0608337 Disordered Systems and Neural Networks +cond-mat/0608339 Statistical Mechanics +cond-mat/0608343 Mesoscale and Nanoscale Physics +cond-mat/0608347 Mesoscale and Nanoscale Physics +cond-mat/0608351 Other Condensed Matter +cond-mat/0608353 Soft Condensed Matter +cond-mat/0608354 Statistical Mechanics +cond-mat/0608356 Soft Condensed Matter +cond-mat/0608361 Mesoscale and Nanoscale Physics +cond-mat/0608362 Statistical Mechanics +cond-mat/0608365 Mesoscale and Nanoscale Physics +cond-mat/0608366 Statistical Mechanics +cond-mat/0608369 Statistical Mechanics +cond-mat/0608370 Other Condensed Matter +cond-mat/0608375 Materials Science +cond-mat/0608377 Statistical Mechanics +cond-mat/0608379 Disordered Systems and Neural Networks +cond-mat/0608380 Strongly Correlated Electrons +cond-mat/0608381 Strongly Correlated Electrons +cond-mat/0608383 Statistical Mechanics +cond-mat/0608389 Mesoscale and Nanoscale Physics +cond-mat/0608390 Superconductivity +cond-mat/0608392 Mesoscale and Nanoscale Physics +cond-mat/0608393 Strongly Correlated Electrons +cond-mat/0608397 Statistical Mechanics +cond-mat/0608401 Mesoscale and Nanoscale Physics +cond-mat/0608404 Superconductivity +cond-mat/0608405 Other Condensed Matter +cond-mat/0608406 Mesoscale and Nanoscale Physics +cond-mat/0608409 Superconductivity +cond-mat/0608412 Strongly Correlated Electrons +cond-mat/0608415 Statistical Mechanics +cond-mat/0608419 Strongly Correlated Electrons +cond-mat/0608421 Statistical Mechanics +cond-mat/0608422 Strongly Correlated Electrons +cond-mat/0608428 Strongly Correlated Electrons +cond-mat/0608429 Materials Science +cond-mat/0608430 Materials Science +cond-mat/0608434 Materials Science +cond-mat/0608438 Strongly Correlated Electrons +cond-mat/0608440 Superconductivity +cond-mat/0608442 Strongly Correlated Electrons +cond-mat/0608449 Other Condensed Matter +cond-mat/0608452 Other Condensed Matter +cond-mat/0608461 Statistical Mechanics +cond-mat/0608462 Strongly Correlated Electrons +cond-mat/0608463 Strongly Correlated Electrons +cond-mat/0608469 Mesoscale and Nanoscale Physics +cond-mat/0608472 Statistical Mechanics +cond-mat/0608475 Strongly Correlated Electrons +cond-mat/0608478 Mesoscale and Nanoscale Physics +cond-mat/0608482 Mesoscale and Nanoscale Physics +cond-mat/0608484 Statistical Mechanics +cond-mat/0608485 Soft Condensed Matter +cond-mat/0608486 Soft Condensed Matter +cond-mat/0608489 Statistical Mechanics +cond-mat/0608494 Superconductivity +cond-mat/0608497 Superconductivity +cond-mat/0608504 Statistical Mechanics +cond-mat/0608507 Superconductivity +cond-mat/0608508 Materials Science +cond-mat/0608512 Mesoscale and Nanoscale Physics +cond-mat/0608518 Mesoscale and Nanoscale Physics +cond-mat/0608520 Mesoscale and Nanoscale Physics +cond-mat/0608522 Statistical Mechanics +cond-mat/0608524 Statistical Mechanics +cond-mat/0608525 Materials Science +cond-mat/0608532 Other Condensed Matter +cond-mat/0608537 Soft Condensed Matter +cond-mat/0608539 Mesoscale and Nanoscale Physics +cond-mat/0608541 Mesoscale and Nanoscale Physics +cond-mat/0608547 Statistical Mechanics +cond-mat/0608548 Disordered Systems and Neural Networks +cond-mat/0608549 Superconductivity +cond-mat/0608558 Statistical Mechanics +cond-mat/0608564 Disordered Systems and Neural Networks +cond-mat/0608565 Mesoscale and Nanoscale Physics +cond-mat/0608570 Materials Science +cond-mat/0608573 Mesoscale and Nanoscale Physics +cond-mat/0608574 Statistical Mechanics +cond-mat/0608581 Disordered Systems and Neural Networks +cond-mat/0608583 Superconductivity +cond-mat/0608589 Superconductivity +cond-mat/0608592 Materials Science +cond-mat/0608593 Materials Science +cond-mat/0608594 Materials Science +cond-mat/0608597 Mesoscale and Nanoscale Physics +cond-mat/0608598 Strongly Correlated Electrons +cond-mat/0608610 Superconductivity +cond-mat/0608618 Mesoscale and Nanoscale Physics +cond-mat/0608619 Disordered Systems and Neural Networks +cond-mat/0608626 Soft Condensed Matter +cond-mat/0608629 Mesoscale and Nanoscale Physics +cond-mat/0608635 Strongly Correlated Electrons +cond-mat/0608636 Strongly Correlated Electrons +cond-mat/0608638 Materials Science +cond-mat/0608641 Soft Condensed Matter +cond-mat/0608643 Soft Condensed Matter +cond-mat/0608645 Materials Science +cond-mat/0608651 Other Condensed Matter +cond-mat/0608656 Other Condensed Matter +cond-mat/0608657 Strongly Correlated Electrons +cond-mat/0608660 Materials Science +cond-mat/0608663 Statistical Mechanics +cond-mat/0608666 Materials Science +cond-mat/0608674 Soft Condensed Matter +cond-mat/0608675 Strongly Correlated Electrons +cond-mat/0608676 Other Condensed Matter +cond-mat/0608678 Strongly Correlated Electrons +cond-mat/0608682 Mesoscale and Nanoscale Physics +cond-mat/0608683 Strongly Correlated Electrons +cond-mat/0608685 Statistical Mechanics +cond-mat/0608688 Statistical Mechanics +cond-mat/0608689 Other Condensed Matter +cond-mat/0608691 Strongly Correlated Electrons +cond-mat/0608692 Superconductivity +cond-mat/0608699 Strongly Correlated Electrons +cond-mat/0608703 Strongly Correlated Electrons +cond-mat/0608708 Strongly Correlated Electrons +cond-mat/0608711 Mesoscale and Nanoscale Physics +cond-mat/0608714 Soft Condensed Matter +cond-mat/0608715 Superconductivity +cond-mat/0608719 Soft Condensed Matter +cond-mat/0608721 Other Condensed Matter +cond-mat/0608725 Strongly Correlated Electrons +cond-mat/0608728 Mesoscale and Nanoscale Physics +cond-mat/0609003 Statistical Mechanics +cond-mat/0609004 Other Condensed Matter +cond-mat/0609005 Mesoscale and Nanoscale Physics +cond-mat/0609013 Statistical Mechanics +cond-mat/0609017 Other Condensed Matter +cond-mat/0609018 Soft Condensed Matter +cond-mat/0609021 Materials Science +cond-mat/0609029 Disordered Systems and Neural Networks +cond-mat/0609034 Superconductivity +cond-mat/0609043 Soft Condensed Matter +cond-mat/0609044 Soft Condensed Matter +cond-mat/0609045 Mesoscale and Nanoscale Physics +cond-mat/0609047 Other Condensed Matter +cond-mat/0609049 Strongly Correlated Electrons +cond-mat/0609052 Other Condensed Matter +cond-mat/0609055 Strongly Correlated Electrons +cond-mat/0609056 Materials Science +cond-mat/0609057 Other Condensed Matter +cond-mat/0609059 Statistical Mechanics +cond-mat/0609064 Materials Science +cond-mat/0609065 Materials Science +cond-mat/0609066 Materials Science +cond-mat/0609067 Other Condensed Matter +cond-mat/0609068 Other Condensed Matter +cond-mat/0609069 Statistical Mechanics +cond-mat/0609075 Mesoscale and Nanoscale Physics +cond-mat/0609077 Soft Condensed Matter +cond-mat/0609080 Materials Science +cond-mat/0609081 Soft Condensed Matter +cond-mat/0609082 Mesoscale and Nanoscale Physics +cond-mat/0609084 Soft Condensed Matter +cond-mat/0609087 Strongly Correlated Electrons +cond-mat/0609089 Mesoscale and Nanoscale Physics +cond-mat/0609090 Mesoscale and Nanoscale Physics +cond-mat/0609092 Disordered Systems and Neural Networks +cond-mat/0609095 Mesoscale and Nanoscale Physics +cond-mat/0609097 Superconductivity +cond-mat/0609101 Other Condensed Matter +cond-mat/0609107 Superconductivity +cond-mat/0609108 Other Condensed Matter +cond-mat/0609109 Materials Science +cond-mat/0609111 Mesoscale and Nanoscale Physics +cond-mat/0609113 Disordered Systems and Neural Networks +cond-mat/0609115 Other Condensed Matter +cond-mat/0609118 Statistical Mechanics +cond-mat/0609134 Mesoscale and Nanoscale Physics +cond-mat/0609135 Materials Science +cond-mat/0609136 Soft Condensed Matter +cond-mat/0609138 Superconductivity +cond-mat/0609147 Materials Science +cond-mat/0609148 Mesoscale and Nanoscale Physics +cond-mat/0609149 Strongly Correlated Electrons +cond-mat/0609151 Strongly Correlated Electrons +cond-mat/0609152 Materials Science +cond-mat/0609153 Materials Science +cond-mat/0609154 Materials Science +cond-mat/0609155 Superconductivity +cond-mat/0609159 Other Condensed Matter +cond-mat/0609162 Materials Science +cond-mat/0609163 Materials Science +cond-mat/0609167 Other Condensed Matter +cond-mat/0609170 Mesoscale and Nanoscale Physics +cond-mat/0609171 Other Condensed Matter +cond-mat/0609176 Materials Science +cond-mat/0609178 Materials Science +cond-mat/0609185 Mesoscale and Nanoscale Physics +cond-mat/0609186 Strongly Correlated Electrons +cond-mat/0609190 Mesoscale and Nanoscale Physics +cond-mat/0609195 Disordered Systems and Neural Networks +cond-mat/0609196 Mesoscale and Nanoscale Physics +cond-mat/0609214 Mesoscale and Nanoscale Physics +cond-mat/0609215 Mesoscale and Nanoscale Physics +cond-mat/0609217 Mesoscale and Nanoscale Physics +cond-mat/0609222 Materials Science +cond-mat/0609225 Superconductivity +cond-mat/0609230 Other Condensed Matter +cond-mat/0609232 Strongly Correlated Electrons +cond-mat/0609234 Disordered Systems and Neural Networks +cond-mat/0609241 Other Condensed Matter +cond-mat/0609242 Soft Condensed Matter +cond-mat/0609245 Mesoscale and Nanoscale Physics +cond-mat/0609250 Strongly Correlated Electrons +cond-mat/0609254 Statistical Mechanics +cond-mat/0609255 Materials Science +cond-mat/0609256 Strongly Correlated Electrons +cond-mat/0609257 Statistical Mechanics +cond-mat/0609260 Materials Science +cond-mat/0609261 Soft Condensed Matter +cond-mat/0609263 Mesoscale and Nanoscale Physics +cond-mat/0609264 Disordered Systems and Neural Networks +cond-mat/0609265 Mesoscale and Nanoscale Physics +cond-mat/0609275 Disordered Systems and Neural Networks +cond-mat/0609276 Soft Condensed Matter +cond-mat/0609277 Other Condensed Matter +cond-mat/0609279 Mesoscale and Nanoscale Physics +cond-mat/0609281 Statistical Mechanics +cond-mat/0609286 Mesoscale and Nanoscale Physics +cond-mat/0609288 Mesoscale and Nanoscale Physics +cond-mat/0609289 Strongly Correlated Electrons +cond-mat/0609291 Mesoscale and Nanoscale Physics +cond-mat/0609295 Soft Condensed Matter +cond-mat/0609296 Strongly Correlated Electrons +cond-mat/0609298 Mesoscale and Nanoscale Physics +cond-mat/0609302 Soft Condensed Matter +cond-mat/0609303 Statistical Mechanics +cond-mat/0609306 Materials Science +cond-mat/0609311 Mesoscale and Nanoscale Physics +cond-mat/0609313 Statistical Mechanics +cond-mat/0609318 Materials Science +cond-mat/0609319 Materials Science +cond-mat/0609320 Statistical Mechanics +cond-mat/0609337 Mesoscale and Nanoscale Physics +cond-mat/0609342 Strongly Correlated Electrons +cond-mat/0609348 Strongly Correlated Electrons +cond-mat/0609353 Superconductivity +cond-mat/0609358 Materials Science +cond-mat/0609364 Strongly Correlated Electrons +cond-mat/0609365 Materials Science +cond-mat/0609367 Disordered Systems and Neural Networks +cond-mat/0609373 Other Condensed Matter +cond-mat/0609374 Statistical Mechanics +cond-mat/0609375 Materials Science +cond-mat/0609387 Materials Science +cond-mat/0609388 Soft Condensed Matter +cond-mat/0609389 Soft Condensed Matter +cond-mat/0609391 Mesoscale and Nanoscale Physics +cond-mat/0609394 Other Condensed Matter +cond-mat/0609396 Materials Science +cond-mat/0609398 Statistical Mechanics +cond-mat/0609399 Statistical Mechanics +cond-mat/0609400 Materials Science +cond-mat/0609401 Materials Science +cond-mat/0609403 Mesoscale and Nanoscale Physics +cond-mat/0609405 Strongly Correlated Electrons +cond-mat/0609408 Strongly Correlated Electrons +cond-mat/0609412 Materials Science +cond-mat/0609415 Strongly Correlated Electrons +cond-mat/0609421 Statistical Mechanics +cond-mat/0609422 Statistical Mechanics +cond-mat/0609423 Other Condensed Matter +cond-mat/0609424 Soft Condensed Matter +cond-mat/0609427 Superconductivity +cond-mat/0609428 Materials Science +cond-mat/0609430 Materials Science +cond-mat/0609436 Strongly Correlated Electrons +cond-mat/0609442 Mesoscale and Nanoscale Physics +cond-mat/0609444 Superconductivity +cond-mat/0609446 Strongly Correlated Electrons +cond-mat/0609450 Other Condensed Matter +cond-mat/0609453 Statistical Mechanics +cond-mat/0609454 Other Condensed Matter +cond-mat/0609458 Materials Science +cond-mat/0609462 Mesoscale and Nanoscale Physics +cond-mat/0609465 Soft Condensed Matter +cond-mat/0609466 Soft Condensed Matter +cond-mat/0609467 Soft Condensed Matter +cond-mat/0609468 Other Condensed Matter +cond-mat/0609471 Materials Science +cond-mat/0609474 Other Condensed Matter +cond-mat/0609478 Other Condensed Matter +cond-mat/0609484 Statistical Mechanics +cond-mat/0609490 Other Condensed Matter +cond-mat/0609508 Mesoscale and Nanoscale Physics +cond-mat/0609512 Soft Condensed Matter +cond-mat/0609514 Soft Condensed Matter +cond-mat/0609518 Statistical Mechanics +cond-mat/0609519 Materials Science +cond-mat/0609521 Statistical Mechanics +cond-mat/0609522 Disordered Systems and Neural Networks +cond-mat/0609524 Materials Science +cond-mat/0609526 Statistical Mechanics +cond-mat/0609527 Superconductivity +cond-mat/0609530 Superconductivity +cond-mat/0609544 Mesoscale and Nanoscale Physics +cond-mat/0609547 Strongly Correlated Electrons +cond-mat/0609548 Superconductivity +cond-mat/0609551 Statistical Mechanics +cond-mat/0609553 Other Condensed Matter +cond-mat/0609560 Superconductivity +cond-mat/0609561 Superconductivity +cond-mat/0609564 Superconductivity +cond-mat/0609567 Mesoscale and Nanoscale Physics +cond-mat/0609569 Mesoscale and Nanoscale Physics +cond-mat/0609574 Mesoscale and Nanoscale Physics +cond-mat/0609581 Disordered Systems and Neural Networks +cond-mat/0609583 Strongly Correlated Electrons +cond-mat/0609590 Strongly Correlated Electrons +cond-mat/0609593 Soft Condensed Matter +cond-mat/0609597 Strongly Correlated Electrons +cond-mat/0609600 Statistical Mechanics +cond-mat/0609602 Materials Science +cond-mat/0609606 Statistical Mechanics +cond-mat/0609607 Soft Condensed Matter +cond-mat/0609613 Materials Science +cond-mat/0609616 Materials Science +cond-mat/0609618 Mesoscale and Nanoscale Physics +cond-mat/0609627 Mesoscale and Nanoscale Physics +cond-mat/0609632 Other Condensed Matter +cond-mat/0609634 Strongly Correlated Electrons +cond-mat/0609640 Materials Science +cond-mat/0609641 Statistical Mechanics +cond-mat/0609646 Materials Science +cond-mat/0609650 Statistical Mechanics +cond-mat/0609651 Statistical Mechanics +cond-mat/0609652 Disordered Systems and Neural Networks +cond-mat/0609656 Statistical Mechanics +cond-mat/0609657 Mesoscale and Nanoscale Physics +cond-mat/0609658 Statistical Mechanics +cond-mat/0609659 Soft Condensed Matter +cond-mat/0609662 Materials Science +cond-mat/0609668 Mesoscale and Nanoscale Physics +cond-mat/0609669 Superconductivity +cond-mat/0609676 Soft Condensed Matter +cond-mat/0609678 Other Condensed Matter +cond-mat/0609682 Statistical Mechanics +cond-mat/0609684 Disordered Systems and Neural Networks +cond-mat/0609685 Other Condensed Matter +cond-mat/0609687 Strongly Correlated Electrons +cond-mat/0609690 Mesoscale and Nanoscale Physics +cond-mat/0609692 Other Condensed Matter +cond-mat/0609695 Soft Condensed Matter +cond-mat/0609698 Materials Science +cond-mat/0609699 Superconductivity +cond-mat/0609702 Strongly Correlated Electrons +cond-mat/0609710 Statistical Mechanics +cond-mat/0609718 Statistical Mechanics +cond-mat/0609719 Materials Science +cond-mat/0609726 Other Condensed Matter +cond-mat/0609727 Other Condensed Matter +cond-mat/0609732 Materials Science +cond-mat/0609733 Disordered Systems and Neural Networks +cond-mat/0609735 Statistical Mechanics +cond-mat/0609743 Mesoscale and Nanoscale Physics +cond-mat/0609744 Superconductivity +cond-mat/0609746 Statistical Mechanics +cond-mat/0609748 Strongly Correlated Electrons +cond-mat/0609749 Mesoscale and Nanoscale Physics +cond-mat/0609752 Superconductivity +cond-mat/0609753 Materials Science +cond-mat/0609755 Mesoscale and Nanoscale Physics +cond-mat/0609759 Strongly Correlated Electrons +cond-mat/0609767 Strongly Correlated Electrons +cond-mat/0609773 Superconductivity +cond-mat/0609774 Disordered Systems and Neural Networks +cond-mat/0609776 Statistical Mechanics +cond-mat/0610003 Materials Science +cond-mat/0610005 Strongly Correlated Electrons +cond-mat/0610010 Soft Condensed Matter +cond-mat/0610016 Soft Condensed Matter +cond-mat/0610019 Mesoscale and Nanoscale Physics +cond-mat/0610020 Soft Condensed Matter +cond-mat/0610025 Soft Condensed Matter +cond-mat/0610029 Superconductivity +cond-mat/0610035 Disordered Systems and Neural Networks +cond-mat/0610038 Materials Science +cond-mat/0610041 Superconductivity +cond-mat/0610042 Strongly Correlated Electrons +cond-mat/0610044 Mesoscale and Nanoscale Physics +cond-mat/0610046 Other Condensed Matter +cond-mat/0610050 Soft Condensed Matter +cond-mat/0610053 Other Condensed Matter +cond-mat/0610054 Mesoscale and Nanoscale Physics +cond-mat/0610055 Superconductivity +cond-mat/0610056 Materials Science +cond-mat/0610064 Materials Science +cond-mat/0610067 Superconductivity +cond-mat/0610068 Other Condensed Matter +cond-mat/0610069 Statistical Mechanics +cond-mat/0610071 Other Condensed Matter +cond-mat/0610072 Other Condensed Matter +cond-mat/0610073 Materials Science +cond-mat/0610075 Mesoscale and Nanoscale Physics +cond-mat/0610078 Materials Science +cond-mat/0610079 Other Condensed Matter +cond-mat/0610080 Disordered Systems and Neural Networks +cond-mat/0610081 Mesoscale and Nanoscale Physics +cond-mat/0610082 Statistical Mechanics +cond-mat/0610086 Soft Condensed Matter +cond-mat/0610088 Materials Science +cond-mat/0610090 Strongly Correlated Electrons +cond-mat/0610092 Materials Science +cond-mat/0610093 Materials Science +cond-mat/0610101 Strongly Correlated Electrons +cond-mat/0610103 Strongly Correlated Electrons +cond-mat/0610105 Superconductivity +cond-mat/0610106 Strongly Correlated Electrons +cond-mat/0610112 Soft Condensed Matter +cond-mat/0610115 Superconductivity +cond-mat/0610121 Statistical Mechanics +cond-mat/0610126 Strongly Correlated Electrons +cond-mat/0610128 Mesoscale and Nanoscale Physics +cond-mat/0610129 Superconductivity +cond-mat/0610130 Superconductivity +cond-mat/0610131 Other Condensed Matter +cond-mat/0610132 Strongly Correlated Electrons +cond-mat/0610139 Strongly Correlated Electrons +cond-mat/0610144 Statistical Mechanics +cond-mat/0610145 Materials Science +cond-mat/0610146 Strongly Correlated Electrons +cond-mat/0610149 Statistical Mechanics +cond-mat/0610156 Superconductivity +cond-mat/0610161 Materials Science +cond-mat/0610164 Soft Condensed Matter +cond-mat/0610167 Materials Science +cond-mat/0610168 Mesoscale and Nanoscale Physics +cond-mat/0610169 Statistical Mechanics +cond-mat/0610172 Materials Science +cond-mat/0610173 Strongly Correlated Electrons +cond-mat/0610176 Materials Science +cond-mat/0610178 Statistical Mechanics +cond-mat/0610180 Mesoscale and Nanoscale Physics +cond-mat/0610181 Superconductivity +cond-mat/0610182 Disordered Systems and Neural Networks +cond-mat/0610188 Disordered Systems and Neural Networks +cond-mat/0610190 Materials Science +cond-mat/0610191 Strongly Correlated Electrons +cond-mat/0610199 Other Condensed Matter +cond-mat/0610200 Other Condensed Matter +cond-mat/0610204 Other Condensed Matter +cond-mat/0610205 Soft Condensed Matter +cond-mat/0610206 Mesoscale and Nanoscale Physics +cond-mat/0610207 Strongly Correlated Electrons +cond-mat/0610208 Materials Science +cond-mat/0610209 Strongly Correlated Electrons +cond-mat/0610214 Materials Science +cond-mat/0610219 Soft Condensed Matter +cond-mat/0610229 Mesoscale and Nanoscale Physics +cond-mat/0610234 Soft Condensed Matter +cond-mat/0610238 Statistical Mechanics +cond-mat/0610239 Soft Condensed Matter +cond-mat/0610240 Other Condensed Matter +cond-mat/0610244 Mesoscale and Nanoscale Physics +cond-mat/0610246 Other Condensed Matter +cond-mat/0610248 Strongly Correlated Electrons +cond-mat/0610256 Other Condensed Matter +cond-mat/0610258 Materials Science +cond-mat/0610259 Strongly Correlated Electrons +cond-mat/0610261 Soft Condensed Matter +cond-mat/0610262 Statistical Mechanics +cond-mat/0610270 Strongly Correlated Electrons +cond-mat/0610271 Strongly Correlated Electrons +cond-mat/0610280 Mesoscale and Nanoscale Physics +cond-mat/0610281 Mesoscale and Nanoscale Physics +cond-mat/0610285 Materials Science +cond-mat/0610286 Superconductivity +cond-mat/0610289 Superconductivity +cond-mat/0610294 Statistical Mechanics +cond-mat/0610296 Mesoscale and Nanoscale Physics +cond-mat/0610299 Mesoscale and Nanoscale Physics +cond-mat/0610304 Mesoscale and Nanoscale Physics +cond-mat/0610306 Superconductivity +cond-mat/0610308 Statistical Mechanics +cond-mat/0610312 Soft Condensed Matter +cond-mat/0610317 Soft Condensed Matter +cond-mat/0610318 Superconductivity +cond-mat/0610322 Materials Science +cond-mat/0610324 Materials Science +cond-mat/0610329 Statistical Mechanics +cond-mat/0610331 Other Condensed Matter +cond-mat/0610333 Statistical Mechanics +cond-mat/0610334 Superconductivity +cond-mat/0610336 Statistical Mechanics +cond-mat/0610339 Superconductivity +cond-mat/0610345 Strongly Correlated Electrons +cond-mat/0610348 Statistical Mechanics +cond-mat/0610351 Soft Condensed Matter +cond-mat/0610359 Soft Condensed Matter +cond-mat/0610365 Superconductivity +cond-mat/0610366 Other Condensed Matter +cond-mat/0610371 Other Condensed Matter +cond-mat/0610372 Materials Science +cond-mat/0610374 Other Condensed Matter +cond-mat/0610380 Other Condensed Matter +cond-mat/0610383 Materials Science +cond-mat/0610385 Strongly Correlated Electrons +cond-mat/0610386 Superconductivity +cond-mat/0610387 Statistical Mechanics +cond-mat/0610388 Materials Science +cond-mat/0610392 Superconductivity +cond-mat/0610400 Statistical Mechanics +cond-mat/0610402 Strongly Correlated Electrons +cond-mat/0610404 Materials Science +cond-mat/0610405 Other Condensed Matter +cond-mat/0610406 Materials Science +cond-mat/0610409 Statistical Mechanics +cond-mat/0610410 Statistical Mechanics +cond-mat/0610411 Statistical Mechanics +cond-mat/0610415 Statistical Mechanics +cond-mat/0610417 Mesoscale and Nanoscale Physics +cond-mat/0610418 Statistical Mechanics +cond-mat/0610424 Other Condensed Matter +cond-mat/0610429 Other Condensed Matter +cond-mat/0610430 Statistical Mechanics +cond-mat/0610432 Soft Condensed Matter +cond-mat/0610435 Strongly Correlated Electrons +cond-mat/0610439 Soft Condensed Matter +cond-mat/0610441 Strongly Correlated Electrons +cond-mat/0610446 Statistical Mechanics +cond-mat/0610447 Statistical Mechanics +cond-mat/0610450 Materials Science +cond-mat/0610452 Strongly Correlated Electrons +cond-mat/0610455 Mesoscale and Nanoscale Physics +cond-mat/0610456 Superconductivity +cond-mat/0610458 Strongly Correlated Electrons +cond-mat/0610459 Strongly Correlated Electrons +cond-mat/0610465 Disordered Systems and Neural Networks +cond-mat/0610470 Disordered Systems and Neural Networks +cond-mat/0610475 Soft Condensed Matter +cond-mat/0610478 Superconductivity +cond-mat/0610479 Materials Science +cond-mat/0610489 Soft Condensed Matter +cond-mat/0610490 Strongly Correlated Electrons +cond-mat/0610492 Disordered Systems and Neural Networks +cond-mat/0610493 Materials Science +cond-mat/0610495 Superconductivity +cond-mat/0610497 Superconductivity +cond-mat/0610499 Strongly Correlated Electrons +cond-mat/0610500 Materials Science +cond-mat/0610502 Strongly Correlated Electrons +cond-mat/0610512 Mesoscale and Nanoscale Physics +cond-mat/0610515 Mesoscale and Nanoscale Physics +cond-mat/0610516 Materials Science +cond-mat/0610519 Mesoscale and Nanoscale Physics +cond-mat/0610520 Superconductivity +cond-mat/0610523 Superconductivity +cond-mat/0610524 Mesoscale and Nanoscale Physics +cond-mat/0610526 Materials Science +cond-mat/0610527 Soft Condensed Matter +cond-mat/0610535 Materials Science +cond-mat/0610537 Strongly Correlated Electrons +cond-mat/0610545 Statistical Mechanics +cond-mat/0610548 Superconductivity +cond-mat/0610551 Materials Science +cond-mat/0610557 Disordered Systems and Neural Networks +cond-mat/0610563 Materials Science +cond-mat/0610566 Mesoscale and Nanoscale Physics +cond-mat/0610567 Materials Science +cond-mat/0610568 Materials Science +cond-mat/0610573 Superconductivity +cond-mat/0610577 Superconductivity +cond-mat/0610578 Superconductivity +cond-mat/0610579 Other Condensed Matter +cond-mat/0610586 Strongly Correlated Electrons +cond-mat/0610594 Materials Science +cond-mat/0610599 Superconductivity +cond-mat/0610601 Strongly Correlated Electrons +cond-mat/0610603 Soft Condensed Matter +cond-mat/0610607 Superconductivity +cond-mat/0610608 Superconductivity +cond-mat/0610610 Superconductivity +cond-mat/0610619 Disordered Systems and Neural Networks +cond-mat/0610626 Strongly Correlated Electrons +cond-mat/0610628 Superconductivity +cond-mat/0610629 Disordered Systems and Neural Networks +cond-mat/0610630 Mesoscale and Nanoscale Physics +cond-mat/0610635 Statistical Mechanics +cond-mat/0610637 Other Condensed Matter +cond-mat/0610640 Strongly Correlated Electrons +cond-mat/0610642 Materials Science +cond-mat/0610646 Superconductivity +cond-mat/0610649 Strongly Correlated Electrons +cond-mat/0610653 Mesoscale and Nanoscale Physics +cond-mat/0610655 Mesoscale and Nanoscale Physics +cond-mat/0610657 Mesoscale and Nanoscale Physics +cond-mat/0610659 Mesoscale and Nanoscale Physics +cond-mat/0610661 Disordered Systems and Neural Networks +cond-mat/0610663 Disordered Systems and Neural Networks +cond-mat/0610666 Statistical Mechanics +cond-mat/0610677 Materials Science +cond-mat/0610686 Statistical Mechanics +cond-mat/0610687 Strongly Correlated Electrons +cond-mat/0610690 Statistical Mechanics +cond-mat/0610693 Disordered Systems and Neural Networks +cond-mat/0610694 Mesoscale and Nanoscale Physics +cond-mat/0610701 Materials Science +cond-mat/0610706 Disordered Systems and Neural Networks +cond-mat/0610707 Mesoscale and Nanoscale Physics +cond-mat/0610709 Mesoscale and Nanoscale Physics +cond-mat/0610711 Strongly Correlated Electrons +cond-mat/0610713 Superconductivity +cond-mat/0610714 Superconductivity +cond-mat/0610717 Strongly Correlated Electrons +cond-mat/0610718 Strongly Correlated Electrons +cond-mat/0610721 Mesoscale and Nanoscale Physics +cond-mat/0610726 Disordered Systems and Neural Networks +cond-mat/0610728 Materials Science +cond-mat/0610729 Materials Science +cond-mat/0610731 Other Condensed Matter +cond-mat/0610733 Superconductivity +cond-mat/0610735 Soft Condensed Matter +cond-mat/0610737 Disordered Systems and Neural Networks +cond-mat/0610740 Materials Science +cond-mat/0610745 Materials Science +cond-mat/0610754 Statistical Mechanics +cond-mat/0610759 Strongly Correlated Electrons +cond-mat/0610760 Superconductivity +cond-mat/0610764 Materials Science +cond-mat/0610766 Other Condensed Matter +cond-mat/0610779 Mesoscale and Nanoscale Physics +cond-mat/0610780 Strongly Correlated Electrons +cond-mat/0610783 Mesoscale and Nanoscale Physics +cond-mat/0610786 Strongly Correlated Electrons +cond-mat/0610788 Strongly Correlated Electrons +cond-mat/0610790 Materials Science +cond-mat/0610794 Materials Science +cond-mat/0610796 Superconductivity +cond-mat/0610800 Soft Condensed Matter +cond-mat/0610801 Strongly Correlated Electrons +cond-mat/0610808 Other Condensed Matter +cond-mat/0610813 Disordered Systems and Neural Networks +cond-mat/0610819 Soft Condensed Matter +cond-mat/0610821 Disordered Systems and Neural Networks +cond-mat/0610822 Statistical Mechanics +cond-mat/0610825 Statistical Mechanics +cond-mat/0610826 Statistical Mechanics +cond-mat/0610827 Materials Science +cond-mat/0610830 Other Condensed Matter +cond-mat/0610832 Mesoscale and Nanoscale Physics +cond-mat/0610838 Superconductivity +cond-mat/0610843 Strongly Correlated Electrons +cond-mat/0610845 Strongly Correlated Electrons +cond-mat/0610846 Strongly Correlated Electrons +cond-mat/0610847 Mesoscale and Nanoscale Physics +cond-mat/0610849 Superconductivity +cond-mat/0610852 Soft Condensed Matter +cond-mat/0610854 Strongly Correlated Electrons +cond-mat/0610856 Statistical Mechanics +cond-mat/0610858 Disordered Systems and Neural Networks +cond-mat/0610859 Disordered Systems and Neural Networks +cond-mat/0610860 Disordered Systems and Neural Networks +cond-mat/0610861 Strongly Correlated Electrons +cond-mat/0610862 Other Condensed Matter +cond-mat/0610863 Superconductivity +cond-mat/0610865 Superconductivity +cond-mat/0610871 Mesoscale and Nanoscale Physics +cond-mat/0610873 Mesoscale and Nanoscale Physics +cond-mat/0610877 Other Condensed Matter +cond-mat/0610881 Other Condensed Matter +cond-mat/0610882 Mesoscale and Nanoscale Physics +cond-mat/0610884 Materials Science +cond-mat/0610890 Soft Condensed Matter +cond-mat/0611004 Mesoscale and Nanoscale Physics +cond-mat/0611006 Materials Science +cond-mat/0611010 Disordered Systems and Neural Networks +cond-mat/0611015 Other Condensed Matter +cond-mat/0611017 Statistical Mechanics +cond-mat/0611019 Strongly Correlated Electrons +cond-mat/0611024 Soft Condensed Matter +cond-mat/0611031 Strongly Correlated Electrons +cond-mat/0611037 Strongly Correlated Electrons +cond-mat/0611044 Disordered Systems and Neural Networks +cond-mat/0611050 Statistical Mechanics +cond-mat/0611053 Materials Science +cond-mat/0611056 Statistical Mechanics +cond-mat/0611059 Statistical Mechanics +cond-mat/0611065 Mesoscale and Nanoscale Physics +cond-mat/0611066 Superconductivity +cond-mat/0611071 Mesoscale and Nanoscale Physics +cond-mat/0611080 Soft Condensed Matter +cond-mat/0611081 Strongly Correlated Electrons +cond-mat/0611083 Mesoscale and Nanoscale Physics +cond-mat/0611084 Materials Science +cond-mat/0611085 Superconductivity +cond-mat/0611086 Mesoscale and Nanoscale Physics +cond-mat/0611087 Statistical Mechanics +cond-mat/0611091 Strongly Correlated Electrons +cond-mat/0611094 Other Condensed Matter +cond-mat/0611103 Soft Condensed Matter +cond-mat/0611106 Strongly Correlated Electrons +cond-mat/0611108 Mesoscale and Nanoscale Physics +cond-mat/0611112 Strongly Correlated Electrons +cond-mat/0611115 Soft Condensed Matter +cond-mat/0611122 Mesoscale and Nanoscale Physics +cond-mat/0611124 Materials Science +cond-mat/0611128 Materials Science +cond-mat/0611129 Soft Condensed Matter +cond-mat/0611132 Mesoscale and Nanoscale Physics +cond-mat/0611133 Superconductivity +cond-mat/0611141 Superconductivity +cond-mat/0611146 Other Condensed Matter +cond-mat/0611147 Mesoscale and Nanoscale Physics +cond-mat/0611152 Strongly Correlated Electrons +cond-mat/0611154 Strongly Correlated Electrons +cond-mat/0611156 Mesoscale and Nanoscale Physics +cond-mat/0611157 Soft Condensed Matter +cond-mat/0611158 Mesoscale and Nanoscale Physics +cond-mat/0611162 Soft Condensed Matter +cond-mat/0611167 Statistical Mechanics +cond-mat/0611168 Disordered Systems and Neural Networks +cond-mat/0611171 Superconductivity +cond-mat/0611172 Superconductivity +cond-mat/0611173 Superconductivity +cond-mat/0611175 Soft Condensed Matter +cond-mat/0611177 Statistical Mechanics +cond-mat/0611179 Materials Science +cond-mat/0611182 Strongly Correlated Electrons +cond-mat/0611184 Superconductivity +cond-mat/0611185 Mesoscale and Nanoscale Physics +cond-mat/0611188 Materials Science +cond-mat/0611190 Mesoscale and Nanoscale Physics +cond-mat/0611192 Superconductivity +cond-mat/0611196 Mesoscale and Nanoscale Physics +cond-mat/0611197 Strongly Correlated Electrons +cond-mat/0611198 Disordered Systems and Neural Networks +cond-mat/0611202 Superconductivity +cond-mat/0611207 Mesoscale and Nanoscale Physics +cond-mat/0611211 Mesoscale and Nanoscale Physics +cond-mat/0611216 Materials Science +cond-mat/0611220 Mesoscale and Nanoscale Physics +cond-mat/0611222 Other Condensed Matter +cond-mat/0611224 Strongly Correlated Electrons +cond-mat/0611227 Mesoscale and Nanoscale Physics +cond-mat/0611229 Strongly Correlated Electrons +cond-mat/0611230 Strongly Correlated Electrons +cond-mat/0611232 Strongly Correlated Electrons +cond-mat/0611233 Statistical Mechanics +cond-mat/0611237 Materials Science +cond-mat/0611239 Strongly Correlated Electrons +cond-mat/0611241 Materials Science +cond-mat/0611244 Strongly Correlated Electrons +cond-mat/0611245 Materials Science +cond-mat/0611247 Statistical Mechanics +cond-mat/0611249 Materials Science +cond-mat/0611257 Materials Science +cond-mat/0611258 Mesoscale and Nanoscale Physics +cond-mat/0611264 Strongly Correlated Electrons +cond-mat/0611266 Strongly Correlated Electrons +cond-mat/0611267 Superconductivity +cond-mat/0611269 Mesoscale and Nanoscale Physics +cond-mat/0611272 Mesoscale and Nanoscale Physics +cond-mat/0611274 Mesoscale and Nanoscale Physics +cond-mat/0611279 Statistical Mechanics +cond-mat/0611284 Materials Science +cond-mat/0611286 Other Condensed Matter +cond-mat/0611291 Superconductivity +cond-mat/0611303 Statistical Mechanics +cond-mat/0611309 Mesoscale and Nanoscale Physics +cond-mat/0611314 Mesoscale and Nanoscale Physics +cond-mat/0611324 Materials Science +cond-mat/0611326 Statistical Mechanics +cond-mat/0611338 Soft Condensed Matter +cond-mat/0611341 Mesoscale and Nanoscale Physics +cond-mat/0611349 Superconductivity +cond-mat/0611353 Statistical Mechanics +cond-mat/0611355 Superconductivity +cond-mat/0611357 Statistical Mechanics +cond-mat/0611362 Mesoscale and Nanoscale Physics +cond-mat/0611364 Soft Condensed Matter +cond-mat/0611369 Soft Condensed Matter +cond-mat/0611371 Superconductivity +cond-mat/0611375 Materials Science +cond-mat/0611376 Other Condensed Matter +cond-mat/0611377 Materials Science +cond-mat/0611378 Mesoscale and Nanoscale Physics +cond-mat/0611383 Strongly Correlated Electrons +cond-mat/0611385 Superconductivity +cond-mat/0611390 Strongly Correlated Electrons +cond-mat/0611391 Soft Condensed Matter +cond-mat/0611398 Soft Condensed Matter +cond-mat/0611399 Mesoscale and Nanoscale Physics +cond-mat/0611402 Other Condensed Matter +cond-mat/0611405 Other Condensed Matter +cond-mat/0611406 Mesoscale and Nanoscale Physics +cond-mat/0611410 Materials Science +cond-mat/0611415 Strongly Correlated Electrons +cond-mat/0611424 Soft Condensed Matter +cond-mat/0611429 Superconductivity +cond-mat/0611430 Statistical Mechanics +cond-mat/0611436 Disordered Systems and Neural Networks +cond-mat/0611439 Superconductivity +cond-mat/0611442 Statistical Mechanics +cond-mat/0611446 Other Condensed Matter +cond-mat/0611449 Statistical Mechanics +cond-mat/0611453 Strongly Correlated Electrons +cond-mat/0611457 Mesoscale and Nanoscale Physics +cond-mat/0611463 Strongly Correlated Electrons +cond-mat/0611465 Mesoscale and Nanoscale Physics +cond-mat/0611466 Materials Science +cond-mat/0611467 Strongly Correlated Electrons +cond-mat/0611469 Mesoscale and Nanoscale Physics +cond-mat/0611470 Materials Science +cond-mat/0611477 Statistical Mechanics +cond-mat/0611479 Strongly Correlated Electrons +cond-mat/0611488 Mesoscale and Nanoscale Physics +cond-mat/0611489 Soft Condensed Matter +cond-mat/0611491 Mesoscale and Nanoscale Physics +cond-mat/0611498 Materials Science +cond-mat/0611508 Mesoscale and Nanoscale Physics +cond-mat/0611514 Soft Condensed Matter +cond-mat/0611518 Disordered Systems and Neural Networks +cond-mat/0611520 Other Condensed Matter +cond-mat/0611523 Mesoscale and Nanoscale Physics +cond-mat/0611526 Soft Condensed Matter +cond-mat/0611534 Mesoscale and Nanoscale Physics +cond-mat/0611535 Mesoscale and Nanoscale Physics +cond-mat/0611537 Statistical Mechanics +cond-mat/0611546 Soft Condensed Matter +cond-mat/0611547 Strongly Correlated Electrons +cond-mat/0611550 Statistical Mechanics +cond-mat/0611556 Mesoscale and Nanoscale Physics +cond-mat/0611565 Materials Science +cond-mat/0611568 Disordered Systems and Neural Networks +cond-mat/0611571 Statistical Mechanics +cond-mat/0611573 Mesoscale and Nanoscale Physics +cond-mat/0611580 Mesoscale and Nanoscale Physics +cond-mat/0611582 Superconductivity +cond-mat/0611584 Other Condensed Matter +cond-mat/0611585 Disordered Systems and Neural Networks +cond-mat/0611587 Soft Condensed Matter +cond-mat/0611591 Disordered Systems and Neural Networks +cond-mat/0611598 Mesoscale and Nanoscale Physics +cond-mat/0611599 Mesoscale and Nanoscale Physics +cond-mat/0611600 Mesoscale and Nanoscale Physics +cond-mat/0611602 Mesoscale and Nanoscale Physics +cond-mat/0611603 Strongly Correlated Electrons +cond-mat/0611609 Statistical Mechanics +cond-mat/0611610 Materials Science +cond-mat/0611615 Disordered Systems and Neural Networks +cond-mat/0611617 Mesoscale and Nanoscale Physics +cond-mat/0611619 Mesoscale and Nanoscale Physics +cond-mat/0611621 Strongly Correlated Electrons +cond-mat/0611623 Soft Condensed Matter +cond-mat/0611629 Other Condensed Matter +cond-mat/0611641 Strongly Correlated Electrons +cond-mat/0611642 Materials Science +cond-mat/0611643 Statistical Mechanics +cond-mat/0611647 Mesoscale and Nanoscale Physics +cond-mat/0611648 Disordered Systems and Neural Networks +cond-mat/0611653 Disordered Systems and Neural Networks +cond-mat/0611656 Strongly Correlated Electrons +cond-mat/0611662 Mesoscale and Nanoscale Physics +cond-mat/0611664 Mesoscale and Nanoscale Physics +cond-mat/0611670 Other Condensed Matter +cond-mat/0611671 Materials Science +cond-mat/0611673 Statistical Mechanics +cond-mat/0611676 Superconductivity +cond-mat/0611679 Strongly Correlated Electrons +cond-mat/0611686 Mesoscale and Nanoscale Physics +cond-mat/0611687 Statistical Mechanics +cond-mat/0611694 Statistical Mechanics +cond-mat/0611698 Strongly Correlated Electrons +cond-mat/0611700 Superconductivity +cond-mat/0611701 Statistical Mechanics +cond-mat/0611704 Materials Science +cond-mat/0611705 Other Condensed Matter +cond-mat/0611709 Strongly Correlated Electrons +cond-mat/0611710 Strongly Correlated Electrons +cond-mat/0611711 Strongly Correlated Electrons +cond-mat/0611724 Strongly Correlated Electrons +cond-mat/0611725 Superconductivity +cond-mat/0611726 Mesoscale and Nanoscale Physics +cond-mat/0611727 Statistical Mechanics +cond-mat/0611729 Materials Science +cond-mat/0611732 Mesoscale and Nanoscale Physics +cond-mat/0611735 Statistical Mechanics +cond-mat/0611736 Soft Condensed Matter +cond-mat/0611750 Materials Science +cond-mat/0611756 Mesoscale and Nanoscale Physics +cond-mat/0611758 Superconductivity +cond-mat/0611760 Strongly Correlated Electrons +cond-mat/0611762 Strongly Correlated Electrons +cond-mat/0611764 Superconductivity +cond-mat/0611774 Strongly Correlated Electrons +cond-mat/0611780 Materials Science +cond-mat/0611782 Superconductivity +cond-mat/0612002 Strongly Correlated Electrons +cond-mat/0612003 Strongly Correlated Electrons +cond-mat/0612004 Statistical Mechanics +cond-mat/0612008 Strongly Correlated Electrons +cond-mat/0612015 Mesoscale and Nanoscale Physics +cond-mat/0612017 Strongly Correlated Electrons +cond-mat/0612019 Statistical Mechanics +cond-mat/0612021 Statistical Mechanics +cond-mat/0612024 Statistical Mechanics +cond-mat/0612038 Mesoscale and Nanoscale Physics +cond-mat/0612040 Superconductivity +cond-mat/0612044 Strongly Correlated Electrons +cond-mat/0612045 Mesoscale and Nanoscale Physics +cond-mat/0612048 Superconductivity +cond-mat/0612049 Other Condensed Matter +cond-mat/0612051 Superconductivity +cond-mat/0612052 Mesoscale and Nanoscale Physics +cond-mat/0612054 Disordered Systems and Neural Networks +cond-mat/0612058 Mesoscale and Nanoscale Physics +cond-mat/0612060 Materials Science +cond-mat/0612062 Materials Science +cond-mat/0612065 Mesoscale and Nanoscale Physics +cond-mat/0612067 Strongly Correlated Electrons +cond-mat/0612074 Mesoscale and Nanoscale Physics +cond-mat/0612075 Superconductivity +cond-mat/0612077 Statistical Mechanics +cond-mat/0612079 Statistical Mechanics +cond-mat/0612082 Superconductivity +cond-mat/0612083 Superconductivity +cond-mat/0612086 Disordered Systems and Neural Networks +cond-mat/0612087 Mesoscale and Nanoscale Physics +cond-mat/0612091 Strongly Correlated Electrons +cond-mat/0612095 Strongly Correlated Electrons +cond-mat/0612096 Superconductivity +cond-mat/0612097 Disordered Systems and Neural Networks +cond-mat/0612101 Mesoscale and Nanoscale Physics +cond-mat/0612102 Statistical Mechanics +cond-mat/0612106 Strongly Correlated Electrons +cond-mat/0612107 Mesoscale and Nanoscale Physics +cond-mat/0612109 Materials Science +cond-mat/0612112 Strongly Correlated Electrons +cond-mat/0612113 Materials Science +cond-mat/0612115 Mesoscale and Nanoscale Physics +cond-mat/0612117 Mesoscale and Nanoscale Physics +cond-mat/0612118 Mesoscale and Nanoscale Physics +cond-mat/0612120 Statistical Mechanics +cond-mat/0612124 Statistical Mechanics +cond-mat/0612132 Statistical Mechanics +cond-mat/0612133 Statistical Mechanics +cond-mat/0612136 Statistical Mechanics +cond-mat/0612137 Statistical Mechanics +cond-mat/0612143 Strongly Correlated Electrons +cond-mat/0612145 Superconductivity +cond-mat/0612146 Strongly Correlated Electrons +cond-mat/0612155 Mesoscale and Nanoscale Physics +cond-mat/0612156 Superconductivity +cond-mat/0612160 Materials Science +cond-mat/0612166 Strongly Correlated Electrons +cond-mat/0612168 Materials Science +cond-mat/0612172 Strongly Correlated Electrons +cond-mat/0612176 Statistical Mechanics +cond-mat/0612179 Strongly Correlated Electrons +cond-mat/0612181 Materials Science +cond-mat/0612191 Other Condensed Matter +cond-mat/0612210 Mesoscale and Nanoscale Physics +cond-mat/0612212 Mesoscale and Nanoscale Physics +cond-mat/0612218 Statistical Mechanics +cond-mat/0612230 Strongly Correlated Electrons +cond-mat/0612238 Materials Science +cond-mat/0612239 Superconductivity +cond-mat/0612240 Materials Science +cond-mat/0612243 Statistical Mechanics +cond-mat/0612244 Statistical Mechanics +cond-mat/0612245 Materials Science +cond-mat/0612247 Materials Science +cond-mat/0612250 Superconductivity +cond-mat/0612258 Statistical Mechanics +cond-mat/0612259 Materials Science +cond-mat/0612264 Soft Condensed Matter +cond-mat/0612266 Soft Condensed Matter +cond-mat/0612267 Mesoscale and Nanoscale Physics +cond-mat/0612272 Statistical Mechanics +cond-mat/0612273 Strongly Correlated Electrons +cond-mat/0612274 Mesoscale and Nanoscale Physics +cond-mat/0612275 Mesoscale and Nanoscale Physics +cond-mat/0612280 Other Condensed Matter +cond-mat/0612285 Materials Science +cond-mat/0612294 Disordered Systems and Neural Networks +cond-mat/0612300 Statistical Mechanics +cond-mat/0612302 Other Condensed Matter +cond-mat/0612304 Strongly Correlated Electrons +cond-mat/0612305 Statistical Mechanics +cond-mat/0612307 Other Condensed Matter +cond-mat/0612308 Materials Science +cond-mat/0612312 Strongly Correlated Electrons +cond-mat/0612313 Other Condensed Matter +cond-mat/0612330 Statistical Mechanics +cond-mat/0612332 Materials Science +cond-mat/0612333 Other Condensed Matter +cond-mat/0612339 Mesoscale and Nanoscale Physics +cond-mat/0612340 Superconductivity +cond-mat/0612344 Superconductivity +cond-mat/0612352 Disordered Systems and Neural Networks +cond-mat/0612353 Materials Science +cond-mat/0612356 Materials Science +cond-mat/0612358 Strongly Correlated Electrons +cond-mat/0612365 Statistical Mechanics +cond-mat/0612370 Other Condensed Matter +cond-mat/0612371 Disordered Systems and Neural Networks +cond-mat/0612376 Mesoscale and Nanoscale Physics +cond-mat/0612379 Statistical Mechanics +cond-mat/0612382 Statistical Mechanics +cond-mat/0612384 Statistical Mechanics +cond-mat/0612386 Other Condensed Matter +cond-mat/0612388 Statistical Mechanics +cond-mat/0612389 Superconductivity +cond-mat/0612393 Statistical Mechanics +cond-mat/0612396 Mesoscale and Nanoscale Physics +cond-mat/0612397 Statistical Mechanics +cond-mat/0612401 Statistical Mechanics +cond-mat/0612402 Superconductivity +cond-mat/0612403 Superconductivity +cond-mat/0612406 Statistical Mechanics +cond-mat/0612419 Superconductivity +cond-mat/0612423 Statistical Mechanics +cond-mat/0612429 Mesoscale and Nanoscale Physics +cond-mat/0612431 Superconductivity +cond-mat/0612433 Soft Condensed Matter +cond-mat/0612434 Disordered Systems and Neural Networks +cond-mat/0612439 Mesoscale and Nanoscale Physics +cond-mat/0612445 Strongly Correlated Electrons +cond-mat/0612449 Soft Condensed Matter +cond-mat/0612450 Mesoscale and Nanoscale Physics +cond-mat/0612452 Mesoscale and Nanoscale Physics +cond-mat/0612454 Disordered Systems and Neural Networks +cond-mat/0612462 Other Condensed Matter +cond-mat/0612464 Statistical Mechanics +cond-mat/0612469 Mesoscale and Nanoscale Physics +cond-mat/0612476 Disordered Systems and Neural Networks +cond-mat/0612478 Mesoscale and Nanoscale Physics +cond-mat/0612489 Materials Science +cond-mat/0612490 Mesoscale and Nanoscale Physics +cond-mat/0612492 Superconductivity +cond-mat/0612493 Soft Condensed Matter +cond-mat/0612495 Materials Science +cond-mat/0612496 Superconductivity +cond-mat/0612498 Other Condensed Matter +cond-mat/0612500 Materials Science +cond-mat/0612504 Soft Condensed Matter +cond-mat/0612508 Other Condensed Matter +cond-mat/0612509 Disordered Systems and Neural Networks +cond-mat/0612510 Statistical Mechanics +cond-mat/0612515 Superconductivity +cond-mat/0612517 Statistical Mechanics +cond-mat/0612518 Superconductivity +cond-mat/0612519 Mesoscale and Nanoscale Physics +cond-mat/0612522 Other Condensed Matter +cond-mat/0612524 Other Condensed Matter +cond-mat/0612526 Soft Condensed Matter +cond-mat/0612527 Statistical Mechanics +cond-mat/0612532 Soft Condensed Matter +cond-mat/0612535 Superconductivity +cond-mat/0612538 Statistical Mechanics +cond-mat/0612539 Strongly Correlated Electrons +cond-mat/0612540 Strongly Correlated Electrons +cond-mat/0612541 Superconductivity +cond-mat/0612545 Strongly Correlated Electrons +cond-mat/0612546 Superconductivity +cond-mat/0612548 Superconductivity +cond-mat/0612564 Strongly Correlated Electrons +cond-mat/0612565 Other Condensed Matter +cond-mat/0612568 Strongly Correlated Electrons +cond-mat/0612572 Statistical Mechanics +cond-mat/0612576 Superconductivity +cond-mat/0612577 Mesoscale and Nanoscale Physics +cond-mat/0612578 Superconductivity +cond-mat/0612579 Superconductivity +cond-mat/0612580 Strongly Correlated Electrons +cond-mat/0612582 Strongly Correlated Electrons +cond-mat/0612603 Materials Science +cond-mat/0612606 Strongly Correlated Electrons +cond-mat/0612608 Mesoscale and Nanoscale Physics +cond-mat/0612611 Disordered Systems and Neural Networks +cond-mat/0612615 Materials Science +cond-mat/0612619 Statistical Mechanics +cond-mat/0612620 Materials Science +cond-mat/0612622 Statistical Mechanics +cond-mat/0612626 Strongly Correlated Electrons +cond-mat/0612634 Mesoscale and Nanoscale Physics +cond-mat/0612637 Superconductivity +cond-mat/0612648 Materials Science +cond-mat/0612657 Strongly Correlated Electrons +cond-mat/0612658 Soft Condensed Matter +cond-mat/0612659 Other Condensed Matter +cond-mat/0612662 Mesoscale and Nanoscale Physics +cond-mat/0612665 Statistical Mechanics +cond-mat/0612666 Superconductivity +cond-mat/0612667 Statistical Mechanics +cond-mat/0612675 Statistical Mechanics +cond-mat/0612677 Soft Condensed Matter +cond-mat/0612678 Other Condensed Matter +cond-mat/0612679 Soft Condensed Matter +cond-mat/0612680 Soft Condensed Matter +cond-mat/0612682 Superconductivity +cond-mat/0612685 Other Condensed Matter +cond-mat/0612686 Other Condensed Matter +cond-mat/0612689 Materials Science +cond-mat/0612691 Statistical Mechanics +cs/0501049 Information Theory +cs/0501058 Information Theory +cs/0503010 Networking and Internet Architecture +cs/0503070 Information Theory +cs/0504015 Information Theory +cs/0505006 Computer Vision and Pattern Recognition +cs/0507003 Computational Complexity +cs/0507018 Information Theory +cs/0507039 Learning +cs/0507060 Information Theory +cs/0508060 Information Theory +cs/0509016 Computational Complexity +cs/0509070 Symbolic Computation +cs/0509086 Information Theory +cs/0509098 Information Theory +cs/0510016 Information Theory +cs/0510026 Computer Vision and Pattern Recognition +cs/0510093 Symbolic Computation +cs/0512037 Neural and Evolutionary Computing +cs/0604074 Information Theory +cs/0604112 Databases +cs/0605002 Multimedia +cs/0605069 Information Theory +cs/0606016 Information Theory +cs/0606025 Cryptography and Security +cs/0607140 Information Theory +cs/0608048 Distributed, Parallel, and Cluster Computing +cs/0610040 Networking and Internet Architecture +cs/0611012 Information Theory +cs/0611130 Digital Libraries +cs/0612042 Distributed, Parallel, and Cluster Computing +cs/0612096 Learning +cs/0612117 Learning +gr-qc/0501006 +gr-qc/0501007 +gr-qc/0501008 +gr-qc/0501010 +gr-qc/0501011 +gr-qc/0501014 +gr-qc/0501015 +gr-qc/0501016 +gr-qc/0501017 +gr-qc/0501018 +gr-qc/0501020 +gr-qc/0501021 +gr-qc/0501023 +gr-qc/0501029 +gr-qc/0501031 +gr-qc/0501032 +gr-qc/0501034 +gr-qc/0501035 +gr-qc/0501037 +gr-qc/0501038 +gr-qc/0501039 +gr-qc/0501041 +gr-qc/0501042 +gr-qc/0501046 +gr-qc/0501049 +gr-qc/0501053 +gr-qc/0501054 +gr-qc/0501058 +gr-qc/0501062 +gr-qc/0501066 +gr-qc/0501071 +gr-qc/0501072 +gr-qc/0501075 +gr-qc/0501079 +gr-qc/0501082 +gr-qc/0501084 +gr-qc/0501087 +gr-qc/0501088 +gr-qc/0501092 +gr-qc/0501095 +gr-qc/0501099 +gr-qc/0501100 +gr-qc/0501101 +gr-qc/0501102 +gr-qc/0501103 +gr-qc/0501104 +gr-qc/0501105 +gr-qc/0501106 +gr-qc/0502003 +gr-qc/0502005 +gr-qc/0502008 +gr-qc/0502011 +gr-qc/0502012 +gr-qc/0502017 +gr-qc/0502019 +gr-qc/0502023 +gr-qc/0502024 +gr-qc/0502026 +gr-qc/0502028 +gr-qc/0502034 +gr-qc/0502038 +gr-qc/0502039 +gr-qc/0502040 +gr-qc/0502045 +gr-qc/0502048 +gr-qc/0502049 +gr-qc/0502050 +gr-qc/0502053 +gr-qc/0502056 +gr-qc/0502062 +gr-qc/0502065 +gr-qc/0502066 +gr-qc/0502067 +gr-qc/0502070 +gr-qc/0502076 +gr-qc/0502078 +gr-qc/0502079 +gr-qc/0502080 +gr-qc/0502082 +gr-qc/0502084 +gr-qc/0502086 +gr-qc/0502090 +gr-qc/0502094 +gr-qc/0502100 +gr-qc/0502101 +gr-qc/0502103 +gr-qc/0502107 +gr-qc/0502108 +gr-qc/0502112 +gr-qc/0502114 +gr-qc/0502116 +gr-qc/0502118 +gr-qc/0503001 +gr-qc/0503005 +gr-qc/0503006 +gr-qc/0503007 +gr-qc/0503008 +gr-qc/0503009 +gr-qc/0503010 +gr-qc/0503012 +gr-qc/0503013 +gr-qc/0503015 +gr-qc/0503016 +gr-qc/0503017 +gr-qc/0503018 +gr-qc/0503019 +gr-qc/0503023 +gr-qc/0503024 +gr-qc/0503030 +gr-qc/0503031 +gr-qc/0503033 +gr-qc/0503035 +gr-qc/0503038 +gr-qc/0503046 +gr-qc/0503048 +gr-qc/0503056 +gr-qc/0503058 +gr-qc/0503059 +gr-qc/0503064 +gr-qc/0503067 +gr-qc/0503068 +gr-qc/0503075 +gr-qc/0503076 +gr-qc/0503077 +gr-qc/0503080 +gr-qc/0503081 +gr-qc/0503082 +gr-qc/0503087 +gr-qc/0503089 +gr-qc/0503090 +gr-qc/0503095 +gr-qc/0503100 +gr-qc/0503101 +gr-qc/0503102 +gr-qc/0503103 +gr-qc/0503106 +gr-qc/0503108 +gr-qc/0503111 +gr-qc/0503114 +gr-qc/0503115 +gr-qc/0503117 +gr-qc/0503119 +gr-qc/0503121 +gr-qc/0503123 +gr-qc/0504001 +gr-qc/0504002 +gr-qc/0504004 +gr-qc/0504008 +gr-qc/0504012 +gr-qc/0504017 +gr-qc/0504021 +gr-qc/0504022 +gr-qc/0504023 +gr-qc/0504025 +gr-qc/0504027 +gr-qc/0504028 +gr-qc/0504032 +gr-qc/0504035 +gr-qc/0504036 +gr-qc/0504040 +gr-qc/0504041 +gr-qc/0504042 +gr-qc/0504045 +gr-qc/0504046 +gr-qc/0504048 +gr-qc/0504049 +gr-qc/0504051 +gr-qc/0504061 +gr-qc/0504063 +gr-qc/0504064 +gr-qc/0504065 +gr-qc/0504066 +gr-qc/0504068 +gr-qc/0504069 +gr-qc/0504071 +gr-qc/0504074 +gr-qc/0504079 +gr-qc/0504080 +gr-qc/0504081 +gr-qc/0504082 +gr-qc/0504084 +gr-qc/0504088 +gr-qc/0504089 +gr-qc/0504093 +gr-qc/0504094 +gr-qc/0504097 +gr-qc/0504098 +gr-qc/0504102 +gr-qc/0504103 +gr-qc/0504104 +gr-qc/0504105 +gr-qc/0504106 +gr-qc/0504107 +gr-qc/0504108 +gr-qc/0504109 +gr-qc/0504110 +gr-qc/0504115 +gr-qc/0504120 +gr-qc/0504122 +gr-qc/0504128 +gr-qc/0504132 +gr-qc/0504134 +gr-qc/0504136 +gr-qc/0504137 +gr-qc/0504138 +gr-qc/0504140 +gr-qc/0504142 +gr-qc/0504143 +gr-qc/0505001 +gr-qc/0505002 +gr-qc/0505003 +gr-qc/0505007 +gr-qc/0505008 +gr-qc/0505011 +gr-qc/0505013 +gr-qc/0505014 +gr-qc/0505015 +gr-qc/0505017 +gr-qc/0505018 +gr-qc/0505021 +gr-qc/0505025 +gr-qc/0505027 +gr-qc/0505028 +gr-qc/0505030 +gr-qc/0505031 +gr-qc/0505032 +gr-qc/0505033 +gr-qc/0505034 +gr-qc/0505036 +gr-qc/0505040 +gr-qc/0505043 +gr-qc/0505044 +gr-qc/0505049 +gr-qc/0505050 +gr-qc/0505053 +gr-qc/0505055 +gr-qc/0505056 +gr-qc/0505059 +gr-qc/0505060 +gr-qc/0505062 +gr-qc/0505064 +gr-qc/0505069 +gr-qc/0505071 +gr-qc/0505072 +gr-qc/0505076 +gr-qc/0505080 +gr-qc/0505081 +gr-qc/0505082 +gr-qc/0505083 +gr-qc/0505084 +gr-qc/0505086 +gr-qc/0505090 +gr-qc/0505093 +gr-qc/0505094 +gr-qc/0505095 +gr-qc/0505096 +gr-qc/0505097 +gr-qc/0505102 +gr-qc/0505104 +gr-qc/0505105 +gr-qc/0505108 +gr-qc/0505109 +gr-qc/0505111 +gr-qc/0505112 +gr-qc/0505115 +gr-qc/0505118 +gr-qc/0505120 +gr-qc/0505124 +gr-qc/0505125 +gr-qc/0505128 +gr-qc/0505129 +gr-qc/0505130 +gr-qc/0505132 +gr-qc/0505136 +gr-qc/0505139 +gr-qc/0505144 +gr-qc/0505147 +gr-qc/0505149 +gr-qc/0505150 +gr-qc/0505156 +gr-qc/0505158 +gr-qc/0505162 +gr-qc/0505163 +gr-qc/0506001 +gr-qc/0506002 +gr-qc/0506003 +gr-qc/0506012 +gr-qc/0506013 +gr-qc/0506015 +gr-qc/0506020 +gr-qc/0506021 +gr-qc/0506022 +gr-qc/0506023 +gr-qc/0506024 +gr-qc/0506025 +gr-qc/0506026 +gr-qc/0506029 +gr-qc/0506035 +gr-qc/0506036 +gr-qc/0506037 +gr-qc/0506042 +gr-qc/0506046 +gr-qc/0506047 +gr-qc/0506048 +gr-qc/0506049 +gr-qc/0506050 +gr-qc/0506052 +gr-qc/0506053 +gr-qc/0506055 +gr-qc/0506056 +gr-qc/0506058 +gr-qc/0506059 +gr-qc/0506060 +gr-qc/0506066 +gr-qc/0506069 +gr-qc/0506070 +gr-qc/0506071 +gr-qc/0506074 +gr-qc/0506075 +gr-qc/0506076 +gr-qc/0506079 +gr-qc/0506092 +gr-qc/0506094 +gr-qc/0506095 +gr-qc/0506096 +gr-qc/0506097 +gr-qc/0506098 +gr-qc/0506099 +gr-qc/0506100 +gr-qc/0506107 +gr-qc/0506109 +gr-qc/0506111 +gr-qc/0506113 +gr-qc/0506114 +gr-qc/0506116 +gr-qc/0506118 +gr-qc/0506119 +gr-qc/0506120 +gr-qc/0506122 +gr-qc/0506126 +gr-qc/0506129 +gr-qc/0506131 +gr-qc/0506133 +gr-qc/0506136 +gr-qc/0506137 +gr-qc/0507003 +gr-qc/0507004 +gr-qc/0507006 +gr-qc/0507008 +gr-qc/0507010 +gr-qc/0507013 +gr-qc/0507019 +gr-qc/0507020 +gr-qc/0507021 +gr-qc/0507024 +gr-qc/0507025 +gr-qc/0507026 +gr-qc/0507029 +gr-qc/0507031 +gr-qc/0507032 +gr-qc/0507036 +gr-qc/0507038 +gr-qc/0507043 +gr-qc/0507047 +gr-qc/0507051 +gr-qc/0507052 +gr-qc/0507054 +gr-qc/0507056 +gr-qc/0507062 +gr-qc/0507063 +gr-qc/0507064 +gr-qc/0507066 +gr-qc/0507067 +gr-qc/0507068 +gr-qc/0507069 +gr-qc/0507072 +gr-qc/0507074 +gr-qc/0507076 +gr-qc/0507079 +gr-qc/0507084 +gr-qc/0507085 +gr-qc/0507088 +gr-qc/0507089 +gr-qc/0507091 +gr-qc/0507095 +gr-qc/0507098 +gr-qc/0507099 +gr-qc/0507102 +gr-qc/0507106 +gr-qc/0507110 +gr-qc/0507112 +gr-qc/0507114 +gr-qc/0507115 +gr-qc/0507137 +gr-qc/0507140 +gr-qc/0508004 +gr-qc/0508006 +gr-qc/0508008 +gr-qc/0508016 +gr-qc/0508017 +gr-qc/0508021 +gr-qc/0508027 +gr-qc/0508028 +gr-qc/0508029 +gr-qc/0508030 +gr-qc/0508032 +gr-qc/0508037 +gr-qc/0508038 +gr-qc/0508039 +gr-qc/0508040 +gr-qc/0508042 +gr-qc/0508044 +gr-qc/0508045 +gr-qc/0508050 +gr-qc/0508051 +gr-qc/0508054 +gr-qc/0508055 +gr-qc/0508057 +gr-qc/0508061 +gr-qc/0508062 +gr-qc/0508063 +gr-qc/0508071 +gr-qc/0508075 +gr-qc/0508080 +gr-qc/0508086 +gr-qc/0508088 +gr-qc/0508090 +gr-qc/0508091 +gr-qc/0508092 +gr-qc/0508101 +gr-qc/0508107 +gr-qc/0508108 +gr-qc/0508110 +gr-qc/0508114 +gr-qc/0508115 +gr-qc/0508116 +gr-qc/0508117 +gr-qc/0508120 +gr-qc/0508121 +gr-qc/0508125 +gr-qc/0508126 +gr-qc/0509001 +gr-qc/0509002 +gr-qc/0509007 +gr-qc/0509008 +gr-qc/0509010 +gr-qc/0509012 +gr-qc/0509013 +gr-qc/0509015 +gr-qc/0509016 +gr-qc/0509018 +gr-qc/0509020 +gr-qc/0509025 +gr-qc/0509026 +gr-qc/0509029 +gr-qc/0509032 +gr-qc/0509033 +gr-qc/0509035 +gr-qc/0509037 +gr-qc/0509041 +gr-qc/0509044 +gr-qc/0509047 +gr-qc/0509049 +gr-qc/0509054 +gr-qc/0509060 +gr-qc/0509065 +gr-qc/0509067 +gr-qc/0509072 +gr-qc/0509074 +gr-qc/0509076 +gr-qc/0509078 +gr-qc/0509080 +gr-qc/0509083 +gr-qc/0509084 +gr-qc/0509085 +gr-qc/0509087 +gr-qc/0509088 +gr-qc/0509093 +gr-qc/0509094 +gr-qc/0509095 +gr-qc/0509100 +gr-qc/0509102 +gr-qc/0509103 +gr-qc/0509107 +gr-qc/0509108 +gr-qc/0509109 +gr-qc/0509111 +gr-qc/0509112 +gr-qc/0509115 +gr-qc/0509117 +gr-qc/0509118 +gr-qc/0509121 +gr-qc/0509122 +gr-qc/0509126 +gr-qc/0509128 +gr-qc/0510002 +gr-qc/0510008 +gr-qc/0510012 +gr-qc/0510015 +gr-qc/0510018 +gr-qc/0510019 +gr-qc/0510022 +gr-qc/0510023 +gr-qc/0510027 +gr-qc/0510032 +gr-qc/0510034 +gr-qc/0510035 +gr-qc/0510039 +gr-qc/0510040 +gr-qc/0510041 +gr-qc/0510044 +gr-qc/0510045 +gr-qc/0510049 +gr-qc/0510050 +gr-qc/0510054 +gr-qc/0510057 +gr-qc/0510060 +gr-qc/0510061 +gr-qc/0510064 +gr-qc/0510067 +gr-qc/0510069 +gr-qc/0510070 +gr-qc/0510075 +gr-qc/0510078 +gr-qc/0510080 +gr-qc/0510081 +gr-qc/0510083 +gr-qc/0510087 +gr-qc/0510092 +gr-qc/0510095 +gr-qc/0510096 +gr-qc/0510099 +gr-qc/0510101 +gr-qc/0510103 +gr-qc/0510104 +gr-qc/0510107 +gr-qc/0510109 +gr-qc/0510110 +gr-qc/0510111 +gr-qc/0510116 +gr-qc/0510118 +gr-qc/0510119 +gr-qc/0510120 +gr-qc/0510122 +gr-qc/0510125 +gr-qc/0510126 +gr-qc/0510129 +gr-qc/0510130 +gr-qc/0511001 +gr-qc/0511002 +gr-qc/0511003 +gr-qc/0511006 +gr-qc/0511007 +gr-qc/0511008 +gr-qc/0511009 +gr-qc/0511010 +gr-qc/0511012 +gr-qc/0511013 +gr-qc/0511015 +gr-qc/0511017 +gr-qc/0511018 +gr-qc/0511019 +gr-qc/0511021 +gr-qc/0511022 +gr-qc/0511029 +gr-qc/0511031 +gr-qc/0511033 +gr-qc/0511039 +gr-qc/0511044 +gr-qc/0511045 +gr-qc/0511047 +gr-qc/0511049 +gr-qc/0511051 +gr-qc/0511052 +gr-qc/0511055 +gr-qc/0511056 +gr-qc/0511060 +gr-qc/0511064 +gr-qc/0511066 +gr-qc/0511067 +gr-qc/0511072 +gr-qc/0511076 +gr-qc/0511079 +gr-qc/0511080 +gr-qc/0511082 +gr-qc/0511084 +gr-qc/0511085 +gr-qc/0511087 +gr-qc/0511091 +gr-qc/0511092 +gr-qc/0511099 +gr-qc/0511100 +gr-qc/0511101 +gr-qc/0511105 +gr-qc/0511106 +gr-qc/0511107 +gr-qc/0511109 +gr-qc/0511112 +gr-qc/0511114 +gr-qc/0511117 +gr-qc/0511119 +gr-qc/0511122 +gr-qc/0511127 +gr-qc/0511128 +gr-qc/0511129 +gr-qc/0511131 +gr-qc/0511134 +gr-qc/0511135 +gr-qc/0511136 +gr-qc/0511140 +gr-qc/0511141 +gr-qc/0511144 +gr-qc/0511145 +gr-qc/0511149 +gr-qc/0511151 +gr-qc/0511152 +gr-qc/0511154 +gr-qc/0511155 +gr-qc/0511156 +gr-qc/0511157 +gr-qc/0511158 +gr-qc/0511159 +gr-qc/0511163 +gr-qc/0512004 +gr-qc/0512013 +gr-qc/0512014 +gr-qc/0512015 +gr-qc/0512021 +gr-qc/0512026 +gr-qc/0512027 +gr-qc/0512028 +gr-qc/0512030 +gr-qc/0512031 +gr-qc/0512032 +gr-qc/0512033 +gr-qc/0512034 +gr-qc/0512038 +gr-qc/0512040 +gr-qc/0512041 +gr-qc/0512042 +gr-qc/0512045 +gr-qc/0512049 +gr-qc/0512052 +gr-qc/0512057 +gr-qc/0512061 +gr-qc/0512064 +gr-qc/0512069 +gr-qc/0512071 +gr-qc/0512073 +gr-qc/0512074 +gr-qc/0512075 +gr-qc/0512077 +gr-qc/0512079 +gr-qc/0512081 +gr-qc/0512082 +gr-qc/0512083 +gr-qc/0512085 +gr-qc/0512095 +gr-qc/0512097 +gr-qc/0512099 +gr-qc/0512100 +gr-qc/0512102 +gr-qc/0512108 +gr-qc/0512109 +gr-qc/0512114 +gr-qc/0512120 +gr-qc/0512122 +gr-qc/0512124 +gr-qc/0512125 +gr-qc/0512132 +gr-qc/0512133 +gr-qc/0512134 +gr-qc/0512136 +gr-qc/0512137 +gr-qc/0512139 +gr-qc/0512142 +gr-qc/0512147 +gr-qc/0512149 +gr-qc/0512150 +gr-qc/0512153 +gr-qc/0512154 +gr-qc/0512157 +gr-qc/0512161 +gr-qc/0512166 +gr-qc/0601001 +gr-qc/0601002 +gr-qc/0601003 +gr-qc/0601005 +gr-qc/0601006 +gr-qc/0601007 +gr-qc/0601012 +gr-qc/0601013 +gr-qc/0601017 +gr-qc/0601019 +gr-qc/0601023 +gr-qc/0601025 +gr-qc/0601026 +gr-qc/0601032 +gr-qc/0601034 +gr-qc/0601037 +gr-qc/0601043 +gr-qc/0601046 +gr-qc/0601053 +gr-qc/0601054 +gr-qc/0601059 +gr-qc/0601060 +gr-qc/0601062 +gr-qc/0601063 +gr-qc/0601065 +gr-qc/0601066 +gr-qc/0601069 +gr-qc/0601072 +gr-qc/0601074 +gr-qc/0601075 +gr-qc/0601076 +gr-qc/0601077 +gr-qc/0601078 +gr-qc/0601081 +gr-qc/0601082 +gr-qc/0601083 +gr-qc/0601086 +gr-qc/0601087 +gr-qc/0601098 +gr-qc/0601100 +gr-qc/0601101 +gr-qc/0601102 +gr-qc/0601103 +gr-qc/0601104 +gr-qc/0601105 +gr-qc/0601109 +gr-qc/0601110 +gr-qc/0601112 +gr-qc/0601113 +gr-qc/0601114 +gr-qc/0601115 +gr-qc/0601117 +gr-qc/0601118 +gr-qc/0601119 +gr-qc/0601120 +gr-qc/0601124 +gr-qc/0601127 +gr-qc/0601129 +gr-qc/0601130 +gr-qc/0601132 +gr-qc/0601134 +gr-qc/0601135 +gr-qc/0601137 +gr-qc/0601138 +gr-qc/0601139 +gr-qc/0601141 +gr-qc/0601142 +gr-qc/0602002 +gr-qc/0602007 +gr-qc/0602008 +gr-qc/0602010 +gr-qc/0602011 +gr-qc/0602014 +gr-qc/0602024 +gr-qc/0602025 +gr-qc/0602027 +gr-qc/0602031 +gr-qc/0602032 +gr-qc/0602033 +gr-qc/0602036 +gr-qc/0602038 +gr-qc/0602039 +gr-qc/0602044 +gr-qc/0602045 +gr-qc/0602052 +gr-qc/0602058 +gr-qc/0602061 +gr-qc/0602062 +gr-qc/0602063 +gr-qc/0602065 +gr-qc/0602066 +gr-qc/0602069 +gr-qc/0602070 +gr-qc/0602071 +gr-qc/0602074 +gr-qc/0602075 +gr-qc/0602076 +gr-qc/0602077 +gr-qc/0602083 +gr-qc/0602084 +gr-qc/0602091 +gr-qc/0602103 +gr-qc/0602106 +gr-qc/0602109 +gr-qc/0602114 +gr-qc/0602115 +gr-qc/0602116 +gr-qc/0602117 +gr-qc/0603002 +gr-qc/0603006 +gr-qc/0603013 +gr-qc/0603023 +gr-qc/0603025 +gr-qc/0603026 +gr-qc/0603031 +gr-qc/0603038 +gr-qc/0603043 +gr-qc/0603048 +gr-qc/0603049 +gr-qc/0603052 +gr-qc/0603055 +gr-qc/0603057 +gr-qc/0603061 +gr-qc/0603067 +gr-qc/0603073 +gr-qc/0603078 +gr-qc/0603080 +gr-qc/0603084 +gr-qc/0603091 +gr-qc/0603092 +gr-qc/0603099 +gr-qc/0603101 +gr-qc/0603102 +gr-qc/0603105 +gr-qc/0603115 +gr-qc/0603120 +gr-qc/0603122 +gr-qc/0603124 +gr-qc/0603125 +gr-qc/0603128 +gr-qc/0603130 +gr-qc/0603131 +gr-qc/0604004 +gr-qc/0604005 +gr-qc/0604008 +gr-qc/0604015 +gr-qc/0604021 +gr-qc/0604022 +gr-qc/0604023 +gr-qc/0604027 +gr-qc/0604029 +gr-qc/0604031 +gr-qc/0604032 +gr-qc/0604034 +gr-qc/0604036 +gr-qc/0604037 +gr-qc/0604038 +gr-qc/0604039 +gr-qc/0604042 +gr-qc/0604046 +gr-qc/0604048 +gr-qc/0604049 +gr-qc/0604050 +gr-qc/0604051 +gr-qc/0604057 +gr-qc/0604058 +gr-qc/0604064 +gr-qc/0604072 +gr-qc/0604073 +gr-qc/0604078 +gr-qc/0604079 +gr-qc/0604084 +gr-qc/0604089 +gr-qc/0604091 +gr-qc/0604093 +gr-qc/0604094 +gr-qc/0604096 +gr-qc/0604099 +gr-qc/0604101 +gr-qc/0604106 +gr-qc/0604112 +gr-qc/0604114 +gr-qc/0604122 +gr-qc/0604126 +gr-qc/0605009 +gr-qc/0605011 +gr-qc/0605012 +gr-qc/0605013 +gr-qc/0605018 +gr-qc/0605021 +gr-qc/0605022 +gr-qc/0605024 +gr-qc/0605026 +gr-qc/0605031 +gr-qc/0605035 +gr-qc/0605049 +gr-qc/0605050 +gr-qc/0605052 +gr-qc/0605053 +gr-qc/0605056 +gr-qc/0605060 +gr-qc/0605066 +gr-qc/0605069 +gr-qc/0605071 +gr-qc/0605077 +gr-qc/0605079 +gr-qc/0605082 +gr-qc/0605084 +gr-qc/0605085 +gr-qc/0605088 +gr-qc/0605094 +gr-qc/0605096 +gr-qc/0605100 +gr-qc/0605102 +gr-qc/0605104 +gr-qc/0605107 +gr-qc/0605110 +gr-qc/0605112 +gr-qc/0605118 +gr-qc/0605125 +gr-qc/0605128 +gr-qc/0605129 +gr-qc/0605134 +gr-qc/0605141 +gr-qc/0605143 +gr-qc/0605153 +gr-qc/0606001 +gr-qc/0606002 +gr-qc/0606005 +gr-qc/0606006 +gr-qc/0606007 +gr-qc/0606008 +gr-qc/0606018 +gr-qc/0606019 +gr-qc/0606025 +gr-qc/0606026 +gr-qc/0606029 +gr-qc/0606031 +gr-qc/0606047 +gr-qc/0606050 +gr-qc/0606059 +gr-qc/0606061 +gr-qc/0606064 +gr-qc/0606065 +gr-qc/0606066 +gr-qc/0606067 +gr-qc/0606074 +gr-qc/0606081 +gr-qc/0606084 +gr-qc/0606085 +gr-qc/0606086 +gr-qc/0606090 +gr-qc/0606091 +gr-qc/0606093 +gr-qc/0606094 +gr-qc/0606097 +gr-qc/0606103 +gr-qc/0606104 +gr-qc/0606111 +gr-qc/0606114 +gr-qc/0606125 +gr-qc/0606130 +gr-qc/0607008 +gr-qc/0607009 +gr-qc/0607013 +gr-qc/0607014 +gr-qc/0607017 +gr-qc/0607024 +gr-qc/0607025 +gr-qc/0607026 +gr-qc/0607033 +gr-qc/0607034 +gr-qc/0607041 +gr-qc/0607043 +gr-qc/0607044 +gr-qc/0607045 +gr-qc/0607047 +gr-qc/0607048 +gr-qc/0607056 +gr-qc/0607058 +gr-qc/0607059 +gr-qc/0607061 +gr-qc/0607066 +gr-qc/0607074 +gr-qc/0607084 +gr-qc/0607085 +gr-qc/0607091 +gr-qc/0607092 +gr-qc/0607094 +gr-qc/0607096 +gr-qc/0607098 +gr-qc/0607104 +gr-qc/0607118 +gr-qc/0607122 +gr-qc/0607128 +gr-qc/0607133 +gr-qc/0607136 +gr-qc/0607138 +gr-qc/0607139 +gr-qc/0607143 +gr-qc/0608003 +gr-qc/0608012 +gr-qc/0608015 +gr-qc/0608017 +gr-qc/0608019 +gr-qc/0608022 +gr-qc/0608026 +gr-qc/0608027 +gr-qc/0608033 +gr-qc/0608034 +gr-qc/0608040 +gr-qc/0608048 +gr-qc/0608051 +gr-qc/0608059 +gr-qc/0608061 +gr-qc/0608064 +gr-qc/0608065 +gr-qc/0608071 +gr-qc/0608072 +gr-qc/0608079 +gr-qc/0608085 +gr-qc/0608087 +gr-qc/0608089 +gr-qc/0608103 +gr-qc/0608108 +gr-qc/0608112 +gr-qc/0608113 +gr-qc/0608114 +gr-qc/0608126 +gr-qc/0608131 +gr-qc/0608134 +gr-qc/0608138 +gr-qc/0608140 +gr-qc/0609010 +gr-qc/0609015 +gr-qc/0609018 +gr-qc/0609020 +gr-qc/0609022 +gr-qc/0609028 +gr-qc/0609037 +gr-qc/0609046 +gr-qc/0609053 +gr-qc/0609056 +gr-qc/0609065 +gr-qc/0609066 +gr-qc/0609068 +gr-qc/0609078 +gr-qc/0609102 +gr-qc/0609106 +gr-qc/0609111 +gr-qc/0610029 +gr-qc/0610031 +gr-qc/0610073 +gr-qc/0610093 +gr-qc/0611019 +gr-qc/0611021 +gr-qc/0611026 +gr-qc/0611029 +gr-qc/0611036 +gr-qc/0611039 +gr-qc/0611061 +gr-qc/0611066 +gr-qc/0611098 +gr-qc/0611138 +gr-qc/0612034 +gr-qc/0612037 +gr-qc/0612142 +gr-qc/0612147 +gr-qc/0612154 +hep-ex/0501015 Experiment +hep-ex/0501022 Experiment +hep-ex/0501046 Experiment +hep-ex/0501053 Experiment +hep-ex/0501059 Experiment +hep-ex/0501065 Experiment +hep-ex/0502011 Experiment +hep-ex/0502033 Experiment +hep-ex/0502039 Experiment +hep-ex/0503015 Experiment +hep-ex/0503017 Experiment +hep-ex/0503019 Experiment +hep-ex/0503020 Experiment +hep-ex/0503029 Experiment +hep-ex/0503054 Experiment +hep-ex/0504011 Experiment +hep-ex/0504025 Experiment +hep-ex/0504043 Experiment +hep-ex/0504050 Experiment +hep-ex/0504051 Experiment +hep-ex/0504058 Experiment +hep-ex/0505014 Experiment +hep-ex/0505082 Experiment +hep-ex/0505090 Experiment +hep-ex/0506015 Experiment +hep-ex/0506032 Experiment +hep-ex/0506050 Experiment +hep-ex/0507013 Experiment +hep-ex/0507021 Experiment +hep-ex/0507022 Experiment +hep-ex/0507028 Experiment +hep-ex/0507040 Experiment +hep-ex/0507049 Experiment +hep-ex/0507095 Experiment +hep-ex/0508026 Experiment +hep-ex/0508042 Experiment +hep-ex/0509018 Experiment +hep-ex/0509024 Experiment +hep-ex/0509028 Experiment +hep-ex/0509034 Experiment +hep-ex/0509037 Experiment +hep-ex/0510021 Experiment +hep-ex/0510035 Experiment +hep-ex/0510036 Experiment +hep-ex/0510040 Experiment +hep-ex/0510042 Experiment +hep-ex/0510044 Experiment +hep-ex/0510050 Experiment +hep-ex/0510054 Experiment +hep-ex/0510055 Experiment +hep-ex/0510056 Experiment +hep-ex/0510058 Experiment +hep-ex/0510059 Experiment +hep-ex/0510062 Experiment +hep-ex/0510075 Experiment +hep-ex/0510079 Experiment +hep-ex/0510080 Experiment +hep-ex/0510082 Experiment +hep-ex/0511001 Experiment +hep-ex/0511002 Experiment +hep-ex/0511003 Experiment +hep-ex/0511005 Experiment +hep-ex/0511008 Experiment +hep-ex/0511013 Experiment +hep-ex/0511016 Experiment +hep-ex/0511024 Experiment +hep-ex/0511052 Experiment +hep-ex/0511059 Experiment +hep-ex/0511061 Experiment +hep-ex/0511062 Experiment +hep-ex/0512008 Experiment +hep-ex/0512018 Experiment +hep-ex/0512019 Experiment +hep-ex/0512021 Experiment +hep-ex/0512026 Experiment +hep-ex/0512032 Experiment +hep-ex/0512037 Experiment +hep-ex/0512039 Experiment +hep-ex/0512040 Experiment +hep-ex/0512048 Experiment +hep-ex/0512050 Experiment +hep-ex/0512053 Experiment +hep-ex/0512058 Experiment +hep-ex/0512071 Experiment +hep-ex/0512073 Experiment +hep-ex/0601005 Experiment +hep-ex/0601006 Experiment +hep-ex/0601014 Experiment +hep-ex/0601030 Experiment +hep-ex/0601033 Experiment +hep-ex/0601037 Experiment +hep-ex/0602009 Experiment +hep-ex/0602011 Experiment +hep-ex/0602015 Experiment +hep-ex/0602018 Experiment +hep-ex/0602029 Experiment +hep-ex/0602040 Experiment +hep-ex/0602043 Experiment +hep-ex/0602050 Experiment +hep-ex/0602051 Experiment +hep-ex/0603009 Experiment +hep-ex/0603017 Experiment +hep-ex/0603030 Experiment +hep-ex/0603031 Experiment +hep-ex/0603051 Experiment +hep-ex/0604001 Experiment +hep-ex/0604010 Experiment +hep-ex/0604019 Experiment +hep-ex/0604051 Experiment +hep-ex/0605004 Experiment +hep-ex/0605013 Experiment +hep-ex/0605022 Experiment +hep-ex/0605033 Experiment +hep-ex/0605089 Experiment +hep-ex/0605102 Experiment +hep-ex/0605121 Experiment +hep-ex/0606023 Experiment +hep-ex/0607001 Experiment +hep-ex/0607014 Experiment +hep-ex/0607033 Experiment +hep-ex/0607087 Experiment +hep-ex/0608008 Experiment +hep-ex/0608040 Experiment +hep-ex/0608045 Experiment +hep-ex/0608050 Experiment +hep-ex/0610028 Experiment +hep-ex/0610034 Experiment +hep-ex/0611048 Experiment +hep-ex/0611051 Experiment +hep-lat/0501001 Lattice +hep-lat/0501002 Lattice +hep-lat/0501003 Lattice +hep-lat/0501008 Lattice +hep-lat/0501011 Lattice +hep-lat/0501012 Lattice +hep-lat/0501014 Lattice +hep-lat/0501015 Lattice +hep-lat/0501020 Lattice +hep-lat/0501023 Lattice +hep-lat/0501026 Lattice +hep-lat/0502004 Lattice +hep-lat/0502006 Lattice +hep-lat/0502013 Lattice +hep-lat/0503005 Lattice +hep-lat/0503006 Lattice +hep-lat/0503007 Lattice +hep-lat/0503009 Lattice +hep-lat/0503010 Lattice +hep-lat/0503012 Lattice +hep-lat/0503013 Lattice +hep-lat/0503015 Lattice +hep-lat/0503016 Lattice +hep-lat/0503017 Lattice +hep-lat/0503019 Lattice +hep-lat/0503020 Lattice +hep-lat/0503021 Lattice +hep-lat/0503023 Lattice +hep-lat/0503026 Lattice +hep-lat/0503027 Lattice +hep-lat/0503028 Lattice +hep-lat/0503030 Lattice +hep-lat/0503034 Lattice +hep-lat/0503036 Lattice +hep-lat/0503037 Lattice +hep-lat/0503039 Lattice +hep-lat/0504001 Lattice +hep-lat/0504002 Lattice +hep-lat/0504004 Lattice +hep-lat/0504006 Lattice +hep-lat/0504010 Lattice +hep-lat/0504011 Lattice +hep-lat/0504012 Lattice +hep-lat/0504013 Lattice +hep-lat/0504016 Lattice +hep-lat/0504018 Lattice +hep-lat/0504020 Lattice +hep-lat/0504023 Lattice +hep-lat/0505004 Lattice +hep-lat/0505006 Lattice +hep-lat/0505007 Lattice +hep-lat/0505008 Lattice +hep-lat/0505016 Lattice +hep-lat/0505017 Lattice +hep-lat/0505025 Lattice +hep-lat/0505026 Lattice +hep-lat/0506001 Lattice +hep-lat/0506004 Lattice +hep-lat/0506005 Lattice +hep-lat/0506006 Lattice +hep-lat/0506008 Lattice +hep-lat/0506009 Lattice +hep-lat/0506010 Lattice +hep-lat/0506014 Lattice +hep-lat/0506018 Lattice +hep-lat/0506021 Lattice +hep-lat/0506022 Lattice +hep-lat/0506024 Lattice +hep-lat/0506025 Lattice +hep-lat/0506026 Lattice +hep-lat/0506027 Lattice +hep-lat/0506035 Lattice +hep-lat/0507003 Lattice +hep-lat/0507004 Lattice +hep-lat/0507009 Lattice +hep-lat/0507010 Lattice +hep-lat/0507011 Lattice +hep-lat/0507012 Lattice +hep-lat/0507014 Lattice +hep-lat/0507017 Lattice +hep-lat/0507021 Lattice +hep-lat/0507023 Lattice +hep-lat/0507024 Lattice +hep-lat/0507026 Lattice +hep-lat/0507029 Lattice +hep-lat/0507034 Lattice +hep-lat/0507035 Lattice +hep-lat/0507036 Lattice +hep-lat/0507037 Lattice +hep-lat/0508004 Lattice +hep-lat/0508005 Lattice +hep-lat/0508007 Lattice +hep-lat/0508008 Lattice +hep-lat/0508013 Lattice +hep-lat/0508014 Lattice +hep-lat/0508021 Lattice +hep-lat/0508028 Lattice +hep-lat/0508029 Lattice +hep-lat/0508030 Lattice +hep-lat/0508033 Lattice +hep-lat/0508035 Lattice +hep-lat/0509011 Lattice +hep-lat/0509012 Lattice +hep-lat/0509013 Lattice +hep-lat/0509020 Lattice +hep-lat/0509027 Lattice +hep-lat/0509041 Lattice +hep-lat/0509049 Lattice +hep-lat/0509066 Lattice +hep-lat/0509067 Lattice +hep-lat/0509187 Lattice +hep-lat/0509192 Lattice +hep-lat/0510009 Lattice +hep-lat/0510029 Lattice +hep-lat/0510060 Lattice +hep-lat/0510076 Lattice +hep-lat/0510084 Lattice +hep-lat/0510088 Lattice +hep-lat/0510091 Lattice +hep-lat/0510092 Lattice +hep-lat/0510101 Lattice +hep-lat/0510105 Lattice +hep-lat/0510108 Lattice +hep-lat/0510110 Lattice +hep-lat/0510116 Lattice +hep-lat/0510117 Lattice +hep-lat/0511003 Lattice +hep-lat/0511010 Lattice +hep-lat/0511013 Lattice +hep-lat/0511014 Lattice +hep-lat/0511016 Lattice +hep-lat/0511017 Lattice +hep-lat/0511023 Lattice +hep-lat/0511029 Lattice +hep-lat/0511030 Lattice +hep-lat/0511031 Lattice +hep-lat/0511035 Lattice +hep-lat/0511037 Lattice +hep-lat/0511038 Lattice +hep-lat/0511039 Lattice +hep-lat/0511042 Lattice +hep-lat/0511043 Lattice +hep-lat/0511045 Lattice +hep-lat/0511046 Lattice +hep-lat/0511047 Lattice +hep-lat/0511050 Lattice +hep-lat/0511051 Lattice +hep-lat/0511053 Lattice +hep-lat/0511054 Lattice +hep-lat/0511056 Lattice +hep-lat/0511058 Lattice +hep-lat/0512001 Lattice +hep-lat/0512002 Lattice +hep-lat/0512003 Lattice +hep-lat/0512005 Lattice +hep-lat/0512008 Lattice +hep-lat/0512012 Lattice +hep-lat/0512013 Lattice +hep-lat/0512014 Lattice +hep-lat/0512015 Lattice +hep-lat/0512016 Lattice +hep-lat/0512018 Lattice +hep-lat/0512020 Lattice +hep-lat/0512021 Lattice +hep-lat/0512024 Lattice +hep-lat/0512025 Lattice +hep-lat/0512026 Lattice +hep-lat/0512040 Lattice +hep-lat/0512043 Lattice +hep-lat/0601003 Lattice +hep-lat/0601005 Lattice +hep-lat/0601006 Lattice +hep-lat/0601008 Lattice +hep-lat/0601009 Lattice +hep-lat/0601013 Lattice +hep-lat/0601016 Lattice +hep-lat/0601019 Lattice +hep-lat/0601020 Lattice +hep-lat/0601026 Lattice +hep-lat/0601028 Lattice +hep-lat/0601032 Lattice +hep-lat/0602001 Lattice +hep-lat/0602002 Lattice +hep-lat/0602003 Lattice +hep-lat/0602004 Lattice +hep-lat/0602005 Lattice +hep-lat/0602007 Lattice +hep-lat/0602008 Lattice +hep-lat/0602011 Lattice +hep-lat/0602014 Lattice +hep-lat/0602017 Lattice +hep-lat/0602021 Lattice +hep-lat/0602024 Lattice +hep-lat/0602025 Lattice +hep-lat/0602027 Lattice +hep-lat/0602030 Lattice +hep-lat/0602031 Lattice +hep-lat/0603002 Lattice +hep-lat/0603003 Lattice +hep-lat/0603004 Lattice +hep-lat/0603010 Lattice +hep-lat/0603011 Lattice +hep-lat/0603014 Lattice +hep-lat/0603017 Lattice +hep-lat/0603021 Lattice +hep-lat/0603022 Lattice +hep-lat/0603024 Lattice +hep-lat/0603026 Lattice +hep-lat/0603029 Lattice +hep-lat/0603030 Lattice +hep-lat/0604003 Lattice +hep-lat/0604005 Lattice +hep-lat/0604010 Lattice +hep-lat/0604014 Lattice +hep-lat/0604015 Lattice +hep-lat/0604017 Lattice +hep-lat/0604018 Lattice +hep-lat/0604019 Lattice +hep-lat/0604023 Lattice +hep-lat/0605001 Lattice +hep-lat/0605009 Lattice +hep-lat/0605013 Lattice +hep-lat/0605015 Lattice +hep-lat/0605016 Lattice +hep-lat/0605018 Lattice +hep-lat/0606001 Lattice +hep-lat/0606002 Lattice +hep-lat/0606005 Lattice +hep-lat/0606007 Lattice +hep-lat/0606008 Lattice +hep-lat/0606015 Lattice +hep-lat/0606017 Lattice +hep-lat/0606021 Lattice +hep-lat/0607003 Lattice +hep-lat/0607004 Lattice +hep-lat/0607006 Lattice +hep-lat/0607008 Lattice +hep-lat/0607010 Lattice +hep-lat/0607019 Lattice +hep-lat/0607020 Lattice +hep-lat/0607022 Lattice +hep-lat/0607028 Lattice +hep-lat/0607029 Lattice +hep-lat/0608002 Lattice +hep-lat/0608003 Lattice +hep-lat/0608004 Lattice +hep-lat/0608007 Lattice +hep-lat/0608018 Lattice +hep-lat/0608024 Lattice +hep-ph/0501001 Phenomenology +hep-ph/0501005 Phenomenology +hep-ph/0501006 Phenomenology +hep-ph/0501007 Phenomenology +hep-ph/0501010 Phenomenology +hep-ph/0501011 Phenomenology +hep-ph/0501014 Phenomenology +hep-ph/0501016 Phenomenology +hep-ph/0501017 Phenomenology +hep-ph/0501028 Phenomenology +hep-ph/0501029 Phenomenology +hep-ph/0501033 Phenomenology +hep-ph/0501036 Phenomenology +hep-ph/0501039 Phenomenology +hep-ph/0501040 Phenomenology +hep-ph/0501042 Phenomenology +hep-ph/0501044 Phenomenology +hep-ph/0501046 Phenomenology +hep-ph/0501049 Phenomenology +hep-ph/0501050 Phenomenology +hep-ph/0501052 Phenomenology +hep-ph/0501053 Phenomenology +hep-ph/0501055 Phenomenology +hep-ph/0501056 Phenomenology +hep-ph/0501066 Phenomenology +hep-ph/0501070 Phenomenology +hep-ph/0501074 Phenomenology +hep-ph/0501077 Phenomenology +hep-ph/0501078 Phenomenology +hep-ph/0501079 Phenomenology +hep-ph/0501083 Phenomenology +hep-ph/0501088 Phenomenology +hep-ph/0501089 Phenomenology +hep-ph/0501098 Phenomenology +hep-ph/0501100 Phenomenology +hep-ph/0501104 Phenomenology +hep-ph/0501107 Phenomenology +hep-ph/0501109 Phenomenology +hep-ph/0501117 Phenomenology +hep-ph/0501118 Phenomenology +hep-ph/0501119 Phenomenology +hep-ph/0501120 Phenomenology +hep-ph/0501126 Phenomenology +hep-ph/0501127 Phenomenology +hep-ph/0501129 Phenomenology +hep-ph/0501131 Phenomenology +hep-ph/0501147 Phenomenology +hep-ph/0501148 Phenomenology +hep-ph/0501149 Phenomenology +hep-ph/0501159 Phenomenology +hep-ph/0501160 Phenomenology +hep-ph/0501166 Phenomenology +hep-ph/0501168 Phenomenology +hep-ph/0501170 Phenomenology +hep-ph/0501173 Phenomenology +hep-ph/0501176 Phenomenology +hep-ph/0501180 Phenomenology +hep-ph/0501182 Phenomenology +hep-ph/0501186 Phenomenology +hep-ph/0501188 Phenomenology +hep-ph/0501192 Phenomenology +hep-ph/0501195 Phenomenology +hep-ph/0501196 Phenomenology +hep-ph/0501198 Phenomenology +hep-ph/0501200 Phenomenology +hep-ph/0501201 Phenomenology +hep-ph/0501203 Phenomenology +hep-ph/0501204 Phenomenology +hep-ph/0501206 Phenomenology +hep-ph/0501211 Phenomenology +hep-ph/0501213 Phenomenology +hep-ph/0501221 Phenomenology +hep-ph/0501232 Phenomenology +hep-ph/0501236 Phenomenology +hep-ph/0501238 Phenomenology +hep-ph/0501240 Phenomenology +hep-ph/0501241 Phenomenology +hep-ph/0501245 Phenomenology +hep-ph/0501250 Phenomenology +hep-ph/0501251 Phenomenology +hep-ph/0501252 Phenomenology +hep-ph/0501253 Phenomenology +hep-ph/0501254 Phenomenology +hep-ph/0501257 Phenomenology +hep-ph/0501258 Phenomenology +hep-ph/0501259 Phenomenology +hep-ph/0501260 Phenomenology +hep-ph/0501261 Phenomenology +hep-ph/0501267 Phenomenology +hep-ph/0501268 Phenomenology +hep-ph/0501275 Phenomenology +hep-ph/0501276 Phenomenology +hep-ph/0501277 Phenomenology +hep-ph/0501279 Phenomenology +hep-ph/0501280 Phenomenology +hep-ph/0501282 Phenomenology +hep-ph/0501283 Phenomenology +hep-ph/0501286 Phenomenology +hep-ph/0501288 Phenomenology +hep-ph/0501292 Phenomenology +hep-ph/0501293 Phenomenology +hep-ph/0501294 Phenomenology +hep-ph/0501295 Phenomenology +hep-ph/0502003 Phenomenology +hep-ph/0502006 Phenomenology +hep-ph/0502012 Phenomenology +hep-ph/0502014 Phenomenology +hep-ph/0502015 Phenomenology +hep-ph/0502017 Phenomenology +hep-ph/0502018 Phenomenology +hep-ph/0502021 Phenomenology +hep-ph/0502022 Phenomenology +hep-ph/0502024 Phenomenology +hep-ph/0502025 Phenomenology +hep-ph/0502027 Phenomenology +hep-ph/0502029 Phenomenology +hep-ph/0502030 Phenomenology +hep-ph/0502035 Phenomenology +hep-ph/0502036 Phenomenology +hep-ph/0502041 Phenomenology +hep-ph/0502044 Phenomenology +hep-ph/0502045 Phenomenology +hep-ph/0502047 Phenomenology +hep-ph/0502048 Phenomenology +hep-ph/0502052 Phenomenology +hep-ph/0502053 Phenomenology +hep-ph/0502059 Phenomenology +hep-ph/0502061 Phenomenology +hep-ph/0502062 Phenomenology +hep-ph/0502067 Phenomenology +hep-ph/0502068 Phenomenology +hep-ph/0502074 Phenomenology +hep-ph/0502075 Phenomenology +hep-ph/0502076 Phenomenology +hep-ph/0502077 Phenomenology +hep-ph/0502078 Phenomenology +hep-ph/0502079 Phenomenology +hep-ph/0502080 Phenomenology +hep-ph/0502085 Phenomenology +hep-ph/0502087 Phenomenology +hep-ph/0502089 Phenomenology +hep-ph/0502100 Phenomenology +hep-ph/0502101 Phenomenology +hep-ph/0502111 Phenomenology +hep-ph/0502115 Phenomenology +hep-ph/0502121 Phenomenology +hep-ph/0502122 Phenomenology +hep-ph/0502124 Phenomenology +hep-ph/0502136 Phenomenology +hep-ph/0502137 Phenomenology +hep-ph/0502138 Phenomenology +hep-ph/0502140 Phenomenology +hep-ph/0502146 Phenomenology +hep-ph/0502147 Phenomenology +hep-ph/0502149 Phenomenology +hep-ph/0502151 Phenomenology +hep-ph/0502154 Phenomenology +hep-ph/0502156 Phenomenology +hep-ph/0502159 Phenomenology +hep-ph/0502162 Phenomenology +hep-ph/0502169 Phenomenology +hep-ph/0502172 Phenomenology +hep-ph/0502175 Phenomenology +hep-ph/0502178 Phenomenology +hep-ph/0502179 Phenomenology +hep-ph/0502181 Phenomenology +hep-ph/0502182 Phenomenology +hep-ph/0502185 Phenomenology +hep-ph/0502193 Phenomenology +hep-ph/0502197 Phenomenology +hep-ph/0502207 Phenomenology +hep-ph/0502209 Phenomenology +hep-ph/0502214 Phenomenology +hep-ph/0502219 Phenomenology +hep-ph/0502220 Phenomenology +hep-ph/0502226 Phenomenology +hep-ph/0502227 Phenomenology +hep-ph/0502234 Phenomenology +hep-ph/0502238 Phenomenology +hep-ph/0502239 Phenomenology +hep-ph/0502246 Phenomenology +hep-ph/0502250 Phenomenology +hep-ph/0502253 Phenomenology +hep-ph/0502254 Phenomenology +hep-ph/0503002 Phenomenology +hep-ph/0503003 Phenomenology +hep-ph/0503005 Phenomenology +hep-ph/0503009 Phenomenology +hep-ph/0503012 Phenomenology +hep-ph/0503013 Phenomenology +hep-ph/0503014 Phenomenology +hep-ph/0503015 Phenomenology +hep-ph/0503027 Phenomenology +hep-ph/0503028 Phenomenology +hep-ph/0503030 Phenomenology +hep-ph/0503031 Phenomenology +hep-ph/0503032 Phenomenology +hep-ph/0503041 Phenomenology +hep-ph/0503046 Phenomenology +hep-ph/0503048 Phenomenology +hep-ph/0503050 Phenomenology +hep-ph/0503054 Phenomenology +hep-ph/0503057 Phenomenology +hep-ph/0503058 Phenomenology +hep-ph/0503060 Phenomenology +hep-ph/0503062 Phenomenology +hep-ph/0503063 Phenomenology +hep-ph/0503069 Phenomenology +hep-ph/0503071 Phenomenology +hep-ph/0503072 Phenomenology +hep-ph/0503076 Phenomenology +hep-ph/0503077 Phenomenology +hep-ph/0503081 Phenomenology +hep-ph/0503082 Phenomenology +hep-ph/0503085 Phenomenology +hep-ph/0503086 Phenomenology +hep-ph/0503090 Phenomenology +hep-ph/0503096 Phenomenology +hep-ph/0503097 Phenomenology +hep-ph/0503103 Phenomenology +hep-ph/0503109 Phenomenology +hep-ph/0503110 Phenomenology +hep-ph/0503111 Phenomenology +hep-ph/0503114 Phenomenology +hep-ph/0503115 Phenomenology +hep-ph/0503117 Phenomenology +hep-ph/0503118 Phenomenology +hep-ph/0503122 Phenomenology +hep-ph/0503123 Phenomenology +hep-ph/0503126 Phenomenology +hep-ph/0503127 Phenomenology +hep-ph/0503128 Phenomenology +hep-ph/0503130 Phenomenology +hep-ph/0503133 Phenomenology +hep-ph/0503136 Phenomenology +hep-ph/0503144 Phenomenology +hep-ph/0503146 Phenomenology +hep-ph/0503147 Phenomenology +hep-ph/0503150 Phenomenology +hep-ph/0503151 Phenomenology +hep-ph/0503153 Phenomenology +hep-ph/0503155 Phenomenology +hep-ph/0503156 Phenomenology +hep-ph/0503157 Phenomenology +hep-ph/0503159 Phenomenology +hep-ph/0503160 Phenomenology +hep-ph/0503162 Phenomenology +hep-ph/0503166 Phenomenology +hep-ph/0503168 Phenomenology +hep-ph/0503175 Phenomenology +hep-ph/0503177 Phenomenology +hep-ph/0503178 Phenomenology +hep-ph/0503181 Phenomenology +hep-ph/0503183 Phenomenology +hep-ph/0503185 Phenomenology +hep-ph/0503192 Phenomenology +hep-ph/0503193 Phenomenology +hep-ph/0503199 Phenomenology +hep-ph/0503200 Phenomenology +hep-ph/0503201 Phenomenology +hep-ph/0503203 Phenomenology +hep-ph/0503204 Phenomenology +hep-ph/0503207 Phenomenology +hep-ph/0503209 Phenomenology +hep-ph/0503212 Phenomenology +hep-ph/0503223 Phenomenology +hep-ph/0503224 Phenomenology +hep-ph/0503225 Phenomenology +hep-ph/0503227 Phenomenology +hep-ph/0503228 Phenomenology +hep-ph/0503230 Phenomenology +hep-ph/0503235 Phenomenology +hep-ph/0503237 Phenomenology +hep-ph/0503239 Phenomenology +hep-ph/0503240 Phenomenology +hep-ph/0503241 Phenomenology +hep-ph/0503242 Phenomenology +hep-ph/0503243 Phenomenology +hep-ph/0503244 Phenomenology +hep-ph/0503248 Phenomenology +hep-ph/0503252 Phenomenology +hep-ph/0503253 Phenomenology +hep-ph/0503267 Phenomenology +hep-ph/0503268 Phenomenology +hep-ph/0503269 Phenomenology +hep-ph/0503272 Phenomenology +hep-ph/0503278 Phenomenology +hep-ph/0503280 Phenomenology +hep-ph/0503281 Phenomenology +hep-ph/0503284 Phenomenology +hep-ph/0503287 Phenomenology +hep-ph/0503288 Phenomenology +hep-ph/0503290 Phenomenology +hep-ph/0503291 Phenomenology +hep-ph/0503293 Phenomenology +hep-ph/0504001 Phenomenology +hep-ph/0504004 Phenomenology +hep-ph/0504005 Phenomenology +hep-ph/0504006 Phenomenology +hep-ph/0504010 Phenomenology +hep-ph/0504014 Phenomenology +hep-ph/0504016 Phenomenology +hep-ph/0504017 Phenomenology +hep-ph/0504022 Phenomenology +hep-ph/0504024 Phenomenology +hep-ph/0504027 Phenomenology +hep-ph/0504029 Phenomenology +hep-ph/0504034 Phenomenology +hep-ph/0504036 Phenomenology +hep-ph/0504037 Phenomenology +hep-ph/0504038 Phenomenology +hep-ph/0504039 Phenomenology +hep-ph/0504044 Phenomenology +hep-ph/0504049 Phenomenology +hep-ph/0504051 Phenomenology +hep-ph/0504055 Phenomenology +hep-ph/0504056 Phenomenology +hep-ph/0504058 Phenomenology +hep-ph/0504069 Phenomenology +hep-ph/0504070 Phenomenology +hep-ph/0504072 Phenomenology +hep-ph/0504074 Phenomenology +hep-ph/0504078 Phenomenology +hep-ph/0504080 Phenomenology +hep-ph/0504082 Phenomenology +hep-ph/0504083 Phenomenology +hep-ph/0504084 Phenomenology +hep-ph/0504085 Phenomenology +hep-ph/0504086 Phenomenology +hep-ph/0504090 Phenomenology +hep-ph/0504091 Phenomenology +hep-ph/0504096 Phenomenology +hep-ph/0504097 Phenomenology +hep-ph/0504104 Phenomenology +hep-ph/0504109 Phenomenology +hep-ph/0504112 Phenomenology +hep-ph/0504113 Phenomenology +hep-ph/0504116 Phenomenology +hep-ph/0504120 Phenomenology +hep-ph/0504124 Phenomenology +hep-ph/0504126 Phenomenology +hep-ph/0504127 Phenomenology +hep-ph/0504129 Phenomenology +hep-ph/0504130 Phenomenology +hep-ph/0504134 Phenomenology +hep-ph/0504135 Phenomenology +hep-ph/0504145 Phenomenology +hep-ph/0504151 Phenomenology +hep-ph/0504153 Phenomenology +hep-ph/0504154 Phenomenology +hep-ph/0504155 Phenomenology +hep-ph/0504156 Phenomenology +hep-ph/0504158 Phenomenology +hep-ph/0504160 Phenomenology +hep-ph/0504163 Phenomenology +hep-ph/0504166 Phenomenology +hep-ph/0504173 Phenomenology +hep-ph/0504177 Phenomenology +hep-ph/0504178 Phenomenology +hep-ph/0504184 Phenomenology +hep-ph/0504185 Phenomenology +hep-ph/0504186 Phenomenology +hep-ph/0504188 Phenomenology +hep-ph/0504193 Phenomenology +hep-ph/0504201 Phenomenology +hep-ph/0504203 Phenomenology +hep-ph/0504204 Phenomenology +hep-ph/0504206 Phenomenology +hep-ph/0504208 Phenomenology +hep-ph/0504209 Phenomenology +hep-ph/0504210 Phenomenology +hep-ph/0504211 Phenomenology +hep-ph/0504218 Phenomenology +hep-ph/0504220 Phenomenology +hep-ph/0504224 Phenomenology +hep-ph/0504228 Phenomenology +hep-ph/0504234 Phenomenology +hep-ph/0504237 Phenomenology +hep-ph/0504239 Phenomenology +hep-ph/0504241 Phenomenology +hep-ph/0504244 Phenomenology +hep-ph/0504245 Phenomenology +hep-ph/0504250 Phenomenology +hep-ph/0504252 Phenomenology +hep-ph/0504254 Phenomenology +hep-ph/0504260 Phenomenology +hep-ph/0504261 Phenomenology +hep-ph/0504266 Phenomenology +hep-ph/0504268 Phenomenology +hep-ph/0504269 Phenomenology +hep-ph/0504271 Phenomenology +hep-ph/0504277 Phenomenology +hep-ph/0504281 Phenomenology +hep-ph/0504284 Phenomenology +hep-ph/0504285 Phenomenology +hep-ph/0505003 Phenomenology +hep-ph/0505008 Phenomenology +hep-ph/0505012 Phenomenology +hep-ph/0505016 Phenomenology +hep-ph/0505017 Phenomenology +hep-ph/0505019 Phenomenology +hep-ph/0505026 Phenomenology +hep-ph/0505028 Phenomenology +hep-ph/0505030 Phenomenology +hep-ph/0505033 Phenomenology +hep-ph/0505037 Phenomenology +hep-ph/0505038 Phenomenology +hep-ph/0505039 Phenomenology +hep-ph/0505041 Phenomenology +hep-ph/0505043 Phenomenology +hep-ph/0505045 Phenomenology +hep-ph/0505046 Phenomenology +hep-ph/0505047 Phenomenology +hep-ph/0505048 Phenomenology +hep-ph/0505051 Phenomenology +hep-ph/0505054 Phenomenology +hep-ph/0505060 Phenomenology +hep-ph/0505061 Phenomenology +hep-ph/0505064 Phenomenology +hep-ph/0505067 Phenomenology +hep-ph/0505070 Phenomenology +hep-ph/0505071 Phenomenology +hep-ph/0505072 Phenomenology +hep-ph/0505074 Phenomenology +hep-ph/0505080 Phenomenology +hep-ph/0505089 Phenomenology +hep-ph/0505091 Phenomenology +hep-ph/0505099 Phenomenology +hep-ph/0505102 Phenomenology +hep-ph/0505103 Phenomenology +hep-ph/0505109 Phenomenology +hep-ph/0505118 Phenomenology +hep-ph/0505123 Phenomenology +hep-ph/0505126 Phenomenology +hep-ph/0505127 Phenomenology +hep-ph/0505129 Phenomenology +hep-ph/0505131 Phenomenology +hep-ph/0505134 Phenomenology +hep-ph/0505135 Phenomenology +hep-ph/0505140 Phenomenology +hep-ph/0505142 Phenomenology +hep-ph/0505143 Phenomenology +hep-ph/0505145 Phenomenology +hep-ph/0505146 Phenomenology +hep-ph/0505149 Phenomenology +hep-ph/0505152 Phenomenology +hep-ph/0505153 Phenomenology +hep-ph/0505154 Phenomenology +hep-ph/0505155 Phenomenology +hep-ph/0505156 Phenomenology +hep-ph/0505158 Phenomenology +hep-ph/0505164 Phenomenology +hep-ph/0505166 Phenomenology +hep-ph/0505167 Phenomenology +hep-ph/0505172 Phenomenology +hep-ph/0505173 Phenomenology +hep-ph/0505178 Phenomenology +hep-ph/0505180 Phenomenology +hep-ph/0505181 Phenomenology +hep-ph/0505183 Phenomenology +hep-ph/0505185 Phenomenology +hep-ph/0505186 Phenomenology +hep-ph/0505189 Phenomenology +hep-ph/0505194 Phenomenology +hep-ph/0505196 Phenomenology +hep-ph/0505197 Phenomenology +hep-ph/0505199 Phenomenology +hep-ph/0505208 Phenomenology +hep-ph/0505214 Phenomenology +hep-ph/0505216 Phenomenology +hep-ph/0505218 Phenomenology +hep-ph/0505219 Phenomenology +hep-ph/0505229 Phenomenology +hep-ph/0505230 Phenomenology +hep-ph/0505233 Phenomenology +hep-ph/0505234 Phenomenology +hep-ph/0505241 Phenomenology +hep-ph/0505242 Phenomenology +hep-ph/0505244 Phenomenology +hep-ph/0505245 Phenomenology +hep-ph/0505246 Phenomenology +hep-ph/0505249 Phenomenology +hep-ph/0505256 Phenomenology +hep-ph/0505257 Phenomenology +hep-ph/0505260 Phenomenology +hep-ph/0505263 Phenomenology +hep-ph/0505266 Phenomenology +hep-ph/0505268 Phenomenology +hep-ph/0505270 Phenomenology +hep-ph/0506004 Phenomenology +hep-ph/0506006 Phenomenology +hep-ph/0506007 Phenomenology +hep-ph/0506014 Phenomenology +hep-ph/0506015 Phenomenology +hep-ph/0506019 Phenomenology +hep-ph/0506021 Phenomenology +hep-ph/0506023 Phenomenology +hep-ph/0506033 Phenomenology +hep-ph/0506034 Phenomenology +hep-ph/0506036 Phenomenology +hep-ph/0506042 Phenomenology +hep-ph/0506043 Phenomenology +hep-ph/0506044 Phenomenology +hep-ph/0506048 Phenomenology +hep-ph/0506056 Phenomenology +hep-ph/0506057 Phenomenology +hep-ph/0506060 Phenomenology +hep-ph/0506063 Phenomenology +hep-ph/0506065 Phenomenology +hep-ph/0506066 Phenomenology +hep-ph/0506067 Phenomenology +hep-ph/0506071 Phenomenology +hep-ph/0506076 Phenomenology +hep-ph/0506078 Phenomenology +hep-ph/0506080 Phenomenology +hep-ph/0506081 Phenomenology +hep-ph/0506085 Phenomenology +hep-ph/0506086 Phenomenology +hep-ph/0506089 Phenomenology +hep-ph/0506091 Phenomenology +hep-ph/0506093 Phenomenology +hep-ph/0506094 Phenomenology +hep-ph/0506098 Phenomenology +hep-ph/0506102 Phenomenology +hep-ph/0506105 Phenomenology +hep-ph/0506107 Phenomenology +hep-ph/0506109 Phenomenology +hep-ph/0506111 Phenomenology +hep-ph/0506112 Phenomenology +hep-ph/0506115 Phenomenology +hep-ph/0506116 Phenomenology +hep-ph/0506117 Phenomenology +hep-ph/0506119 Phenomenology +hep-ph/0506126 Phenomenology +hep-ph/0506129 Phenomenology +hep-ph/0506130 Phenomenology +hep-ph/0506131 Phenomenology +hep-ph/0506137 Phenomenology +hep-ph/0506143 Phenomenology +hep-ph/0506146 Phenomenology +hep-ph/0506148 Phenomenology +hep-ph/0506149 Phenomenology +hep-ph/0506150 Phenomenology +hep-ph/0506155 Phenomenology +hep-ph/0506156 Phenomenology +hep-ph/0506157 Phenomenology +hep-ph/0506158 Phenomenology +hep-ph/0506160 Phenomenology +hep-ph/0506164 Phenomenology +hep-ph/0506167 Phenomenology +hep-ph/0506170 Phenomenology +hep-ph/0506173 Phenomenology +hep-ph/0506175 Phenomenology +hep-ph/0506176 Phenomenology +hep-ph/0506177 Phenomenology +hep-ph/0506179 Phenomenology +hep-ph/0506183 Phenomenology +hep-ph/0506193 Phenomenology +hep-ph/0506194 Phenomenology +hep-ph/0506204 Phenomenology +hep-ph/0506205 Phenomenology +hep-ph/0506206 Phenomenology +hep-ph/0506207 Phenomenology +hep-ph/0506210 Phenomenology +hep-ph/0506217 Phenomenology +hep-ph/0506220 Phenomenology +hep-ph/0506223 Phenomenology +hep-ph/0506224 Phenomenology +hep-ph/0506225 Phenomenology +hep-ph/0506226 Phenomenology +hep-ph/0506227 Phenomenology +hep-ph/0506229 Phenomenology +hep-ph/0506232 Phenomenology +hep-ph/0506233 Phenomenology +hep-ph/0506235 Phenomenology +hep-ph/0506239 Phenomenology +hep-ph/0506245 Phenomenology +hep-ph/0506246 Phenomenology +hep-ph/0506249 Phenomenology +hep-ph/0506250 Phenomenology +hep-ph/0506251 Phenomenology +hep-ph/0506269 Phenomenology +hep-ph/0506273 Phenomenology +hep-ph/0506278 Phenomenology +hep-ph/0506280 Phenomenology +hep-ph/0506281 Phenomenology +hep-ph/0506283 Phenomenology +hep-ph/0506293 Phenomenology +hep-ph/0506297 Phenomenology +hep-ph/0506302 Phenomenology +hep-ph/0506303 Phenomenology +hep-ph/0506304 Phenomenology +hep-ph/0506312 Phenomenology +hep-ph/0506313 Phenomenology +hep-ph/0506315 Phenomenology +hep-ph/0506320 Phenomenology +hep-ph/0506321 Phenomenology +hep-ph/0506322 Phenomenology +hep-ph/0506323 Phenomenology +hep-ph/0506324 Phenomenology +hep-ph/0506331 Phenomenology +hep-ph/0506333 Phenomenology +hep-ph/0506334 Phenomenology +hep-ph/0507007 Phenomenology +hep-ph/0507008 Phenomenology +hep-ph/0507012 Phenomenology +hep-ph/0507018 Phenomenology +hep-ph/0507019 Phenomenology +hep-ph/0507020 Phenomenology +hep-ph/0507022 Phenomenology +hep-ph/0507036 Phenomenology +hep-ph/0507039 Phenomenology +hep-ph/0507041 Phenomenology +hep-ph/0507048 Phenomenology +hep-ph/0507051 Phenomenology +hep-ph/0507053 Phenomenology +hep-ph/0507055 Phenomenology +hep-ph/0507057 Phenomenology +hep-ph/0507059 Phenomenology +hep-ph/0507060 Phenomenology +hep-ph/0507063 Phenomenology +hep-ph/0507065 Phenomenology +hep-ph/0507070 Phenomenology +hep-ph/0507075 Phenomenology +hep-ph/0507080 Phenomenology +hep-ph/0507086 Phenomenology +hep-ph/0507092 Phenomenology +hep-ph/0507094 Phenomenology +hep-ph/0507095 Phenomenology +hep-ph/0507097 Phenomenology +hep-ph/0507098 Phenomenology +hep-ph/0507103 Phenomenology +hep-ph/0507105 Phenomenology +hep-ph/0507106 Phenomenology +hep-ph/0507110 Phenomenology +hep-ph/0507112 Phenomenology +hep-ph/0507113 Phenomenology +hep-ph/0507115 Phenomenology +hep-ph/0507116 Phenomenology +hep-ph/0507122 Phenomenology +hep-ph/0507125 Phenomenology +hep-ph/0507128 Phenomenology +hep-ph/0507129 Phenomenology +hep-ph/0507130 Phenomenology +hep-ph/0507132 Phenomenology +hep-ph/0507134 Phenomenology +hep-ph/0507136 Phenomenology +hep-ph/0507138 Phenomenology +hep-ph/0507141 Phenomenology +hep-ph/0507142 Phenomenology +hep-ph/0507145 Phenomenology +hep-ph/0507146 Phenomenology +hep-ph/0507147 Phenomenology +hep-ph/0507149 Phenomenology +hep-ph/0507152 Phenomenology +hep-ph/0507156 Phenomenology +hep-ph/0507158 Phenomenology +hep-ph/0507162 Phenomenology +hep-ph/0507166 Phenomenology +hep-ph/0507169 Phenomenology +hep-ph/0507172 Phenomenology +hep-ph/0507173 Phenomenology +hep-ph/0507174 Phenomenology +hep-ph/0507182 Phenomenology +hep-ph/0507186 Phenomenology +hep-ph/0507188 Phenomenology +hep-ph/0507189 Phenomenology +hep-ph/0507192 Phenomenology +hep-ph/0507193 Phenomenology +hep-ph/0507195 Phenomenology +hep-ph/0507197 Phenomenology +hep-ph/0507200 Phenomenology +hep-ph/0507205 Phenomenology +hep-ph/0507207 Phenomenology +hep-ph/0507209 Phenomenology +hep-ph/0507211 Phenomenology +hep-ph/0507212 Phenomenology +hep-ph/0507216 Phenomenology +hep-ph/0507220 Phenomenology +hep-ph/0507221 Phenomenology +hep-ph/0507223 Phenomenology +hep-ph/0507224 Phenomenology +hep-ph/0507227 Phenomenology +hep-ph/0507229 Phenomenology +hep-ph/0507231 Phenomenology +hep-ph/0507235 Phenomenology +hep-ph/0507236 Phenomenology +hep-ph/0507239 Phenomenology +hep-ph/0507256 Phenomenology +hep-ph/0507257 Phenomenology +hep-ph/0507260 Phenomenology +hep-ph/0507262 Phenomenology +hep-ph/0507267 Phenomenology +hep-ph/0507269 Phenomenology +hep-ph/0507272 Phenomenology +hep-ph/0507275 Phenomenology +hep-ph/0507279 Phenomenology +hep-ph/0507282 Phenomenology +hep-ph/0507285 Phenomenology +hep-ph/0507288 Phenomenology +hep-ph/0507290 Phenomenology +hep-ph/0507292 Phenomenology +hep-ph/0507294 Phenomenology +hep-ph/0507297 Phenomenology +hep-ph/0507302 Phenomenology +hep-ph/0507311 Phenomenology +hep-ph/0507313 Phenomenology +hep-ph/0507315 Phenomenology +hep-ph/0507316 Phenomenology +hep-ph/0507318 Phenomenology +hep-ph/0507319 Phenomenology +hep-ph/0507321 Phenomenology +hep-ph/0507322 Phenomenology +hep-ph/0507324 Phenomenology +hep-ph/0507330 Phenomenology +hep-ph/0507331 Phenomenology +hep-ph/0507333 Phenomenology +hep-ph/0507336 Phenomenology +hep-ph/0508001 Phenomenology +hep-ph/0508003 Phenomenology +hep-ph/0508004 Phenomenology +hep-ph/0508006 Phenomenology +hep-ph/0508008 Phenomenology +hep-ph/0508009 Phenomenology +hep-ph/0508010 Phenomenology +hep-ph/0508012 Phenomenology +hep-ph/0508016 Phenomenology +hep-ph/0508020 Phenomenology +hep-ph/0508025 Phenomenology +hep-ph/0508030 Phenomenology +hep-ph/0508031 Phenomenology +hep-ph/0508033 Phenomenology +hep-ph/0508035 Phenomenology +hep-ph/0508038 Phenomenology +hep-ph/0508043 Phenomenology +hep-ph/0508046 Phenomenology +hep-ph/0508054 Phenomenology +hep-ph/0508058 Phenomenology +hep-ph/0508062 Phenomenology +hep-ph/0508063 Phenomenology +hep-ph/0508071 Phenomenology +hep-ph/0508072 Phenomenology +hep-ph/0508076 Phenomenology +hep-ph/0508081 Phenomenology +hep-ph/0508085 Phenomenology +hep-ph/0508091 Phenomenology +hep-ph/0508095 Phenomenology +hep-ph/0508098 Phenomenology +hep-ph/0508099 Phenomenology +hep-ph/0508100 Phenomenology +hep-ph/0508103 Phenomenology +hep-ph/0508105 Phenomenology +hep-ph/0508112 Phenomenology +hep-ph/0508117 Phenomenology +hep-ph/0508119 Phenomenology +hep-ph/0508135 Phenomenology +hep-ph/0508137 Phenomenology +hep-ph/0508139 Phenomenology +hep-ph/0508141 Phenomenology +hep-ph/0508144 Phenomenology +hep-ph/0508146 Phenomenology +hep-ph/0508147 Phenomenology +hep-ph/0508148 Phenomenology +hep-ph/0508149 Phenomenology +hep-ph/0508162 Phenomenology +hep-ph/0508163 Phenomenology +hep-ph/0508170 Phenomenology +hep-ph/0508171 Phenomenology +hep-ph/0508172 Phenomenology +hep-ph/0508186 Phenomenology +hep-ph/0508187 Phenomenology +hep-ph/0508188 Phenomenology +hep-ph/0508192 Phenomenology +hep-ph/0508197 Phenomenology +hep-ph/0508201 Phenomenology +hep-ph/0508202 Phenomenology +hep-ph/0508206 Phenomenology +hep-ph/0508208 Phenomenology +hep-ph/0508211 Phenomenology +hep-ph/0508212 Phenomenology +hep-ph/0508213 Phenomenology +hep-ph/0508221 Phenomenology +hep-ph/0508222 Phenomenology +hep-ph/0508223 Phenomenology +hep-ph/0508228 Phenomenology +hep-ph/0508231 Phenomenology +hep-ph/0508237 Phenomenology +hep-ph/0508238 Phenomenology +hep-ph/0508240 Phenomenology +hep-ph/0508241 Phenomenology +hep-ph/0508248 Phenomenology +hep-ph/0508252 Phenomenology +hep-ph/0508253 Phenomenology +hep-ph/0508254 Phenomenology +hep-ph/0508264 Phenomenology +hep-ph/0508268 Phenomenology +hep-ph/0508273 Phenomenology +hep-ph/0508276 Phenomenology +hep-ph/0508277 Phenomenology +hep-ph/0508279 Phenomenology +hep-ph/0508283 Phenomenology +hep-ph/0508285 Phenomenology +hep-ph/0508286 Phenomenology +hep-ph/0508287 Phenomenology +hep-ph/0508291 Phenomenology +hep-ph/0508293 Phenomenology +hep-ph/0508294 Phenomenology +hep-ph/0508297 Phenomenology +hep-ph/0508298 Phenomenology +hep-ph/0508299 Phenomenology +hep-ph/0508303 Phenomenology +hep-ph/0508305 Phenomenology +hep-ph/0508307 Phenomenology +hep-ph/0508310 Phenomenology +hep-ph/0508314 Phenomenology +hep-ph/0508317 Phenomenology +hep-ph/0509001 Phenomenology +hep-ph/0509002 Phenomenology +hep-ph/0509006 Phenomenology +hep-ph/0509011 Phenomenology +hep-ph/0509014 Phenomenology +hep-ph/0509016 Phenomenology +hep-ph/0509020 Phenomenology +hep-ph/0509022 Phenomenology +hep-ph/0509025 Phenomenology +hep-ph/0509028 Phenomenology +hep-ph/0509029 Phenomenology +hep-ph/0509031 Phenomenology +hep-ph/0509035 Phenomenology +hep-ph/0509042 Phenomenology +hep-ph/0509045 Phenomenology +hep-ph/0509051 Phenomenology +hep-ph/0509052 Phenomenology +hep-ph/0509057 Phenomenology +hep-ph/0509058 Phenomenology +hep-ph/0509060 Phenomenology +hep-ph/0509062 Phenomenology +hep-ph/0509063 Phenomenology +hep-ph/0509064 Phenomenology +hep-ph/0509065 Phenomenology +hep-ph/0509067 Phenomenology +hep-ph/0509069 Phenomenology +hep-ph/0509071 Phenomenology +hep-ph/0509076 Phenomenology +hep-ph/0509078 Phenomenology +hep-ph/0509083 Phenomenology +hep-ph/0509084 Phenomenology +hep-ph/0509085 Phenomenology +hep-ph/0509092 Phenomenology +hep-ph/0509094 Phenomenology +hep-ph/0509097 Phenomenology +hep-ph/0509100 Phenomenology +hep-ph/0509105 Phenomenology +hep-ph/0509106 Phenomenology +hep-ph/0509108 Phenomenology +hep-ph/0509115 Phenomenology +hep-ph/0509118 Phenomenology +hep-ph/0509119 Phenomenology +hep-ph/0509121 Phenomenology +hep-ph/0509129 Phenomenology +hep-ph/0509131 Phenomenology +hep-ph/0509133 Phenomenology +hep-ph/0509134 Phenomenology +hep-ph/0509144 Phenomenology +hep-ph/0509147 Phenomenology +hep-ph/0509152 Phenomenology +hep-ph/0509155 Phenomenology +hep-ph/0509166 Phenomenology +hep-ph/0509168 Phenomenology +hep-ph/0509170 Phenomenology +hep-ph/0509173 Phenomenology +hep-ph/0509175 Phenomenology +hep-ph/0509177 Phenomenology +hep-ph/0509181 Phenomenology +hep-ph/0509185 Phenomenology +hep-ph/0509190 Phenomenology +hep-ph/0509193 Phenomenology +hep-ph/0509196 Phenomenology +hep-ph/0509197 Phenomenology +hep-ph/0509199 Phenomenology +hep-ph/0509200 Phenomenology +hep-ph/0509201 Phenomenology +hep-ph/0509205 Phenomenology +hep-ph/0509214 Phenomenology +hep-ph/0509218 Phenomenology +hep-ph/0509220 Phenomenology +hep-ph/0509227 Phenomenology +hep-ph/0509229 Phenomenology +hep-ph/0509231 Phenomenology +hep-ph/0509235 Phenomenology +hep-ph/0509236 Phenomenology +hep-ph/0509239 Phenomenology +hep-ph/0509251 Phenomenology +hep-ph/0509258 Phenomenology +hep-ph/0509261 Phenomenology +hep-ph/0509263 Phenomenology +hep-ph/0509265 Phenomenology +hep-ph/0509268 Phenomenology +hep-ph/0509276 Phenomenology +hep-ph/0509285 Phenomenology +hep-ph/0509287 Phenomenology +hep-ph/0509293 Phenomenology +hep-ph/0509294 Phenomenology +hep-ph/0509297 Phenomenology +hep-ph/0509298 Phenomenology +hep-ph/0509300 Phenomenology +hep-ph/0509302 Phenomenology +hep-ph/0509304 Phenomenology +hep-ph/0509305 Phenomenology +hep-ph/0509306 Phenomenology +hep-ph/0509310 Phenomenology +hep-ph/0509316 Phenomenology +hep-ph/0509321 Phenomenology +hep-ph/0509325 Phenomenology +hep-ph/0509330 Phenomenology +hep-ph/0509334 Phenomenology +hep-ph/0509337 Phenomenology +hep-ph/0509344 Phenomenology +hep-ph/0509345 Phenomenology +hep-ph/0509350 Phenomenology +hep-ph/0509353 Phenomenology +hep-ph/0509356 Phenomenology +hep-ph/0509357 Phenomenology +hep-ph/0509358 Phenomenology +hep-ph/0509365 Phenomenology +hep-ph/0509366 Phenomenology +hep-ph/0509367 Phenomenology +hep-ph/0509369 Phenomenology +hep-ph/0509370 Phenomenology +hep-ph/0510004 Phenomenology +hep-ph/0510006 Phenomenology +hep-ph/0510009 Phenomenology +hep-ph/0510011 Phenomenology +hep-ph/0510012 Phenomenology +hep-ph/0510018 Phenomenology +hep-ph/0510029 Phenomenology +hep-ph/0510032 Phenomenology +hep-ph/0510041 Phenomenology +hep-ph/0510042 Phenomenology +hep-ph/0510044 Phenomenology +hep-ph/0510047 Phenomenology +hep-ph/0510050 Phenomenology +hep-ph/0510052 Phenomenology +hep-ph/0510055 Phenomenology +hep-ph/0510057 Phenomenology +hep-ph/0510062 Phenomenology +hep-ph/0510064 Phenomenology +hep-ph/0510065 Phenomenology +hep-ph/0510068 Phenomenology +hep-ph/0510076 Phenomenology +hep-ph/0510077 Phenomenology +hep-ph/0510078 Phenomenology +hep-ph/0510079 Phenomenology +hep-ph/0510090 Phenomenology +hep-ph/0510091 Phenomenology +hep-ph/0510092 Phenomenology +hep-ph/0510094 Phenomenology +hep-ph/0510095 Phenomenology +hep-ph/0510096 Phenomenology +hep-ph/0510099 Phenomenology +hep-ph/0510101 Phenomenology +hep-ph/0510107 Phenomenology +hep-ph/0510110 Phenomenology +hep-ph/0510113 Phenomenology +hep-ph/0510118 Phenomenology +hep-ph/0510119 Phenomenology +hep-ph/0510120 Phenomenology +hep-ph/0510123 Phenomenology +hep-ph/0510125 Phenomenology +hep-ph/0510126 Phenomenology +hep-ph/0510127 Phenomenology +hep-ph/0510131 Phenomenology +hep-ph/0510134 Phenomenology +hep-ph/0510137 Phenomenology +hep-ph/0510139 Phenomenology +hep-ph/0510140 Phenomenology +hep-ph/0510142 Phenomenology +hep-ph/0510145 Phenomenology +hep-ph/0510148 Phenomenology +hep-ph/0510152 Phenomenology +hep-ph/0510160 Phenomenology +hep-ph/0510162 Phenomenology +hep-ph/0510166 Phenomenology +hep-ph/0510167 Phenomenology +hep-ph/0510168 Phenomenology +hep-ph/0510170 Phenomenology +hep-ph/0510174 Phenomenology +hep-ph/0510175 Phenomenology +hep-ph/0510176 Phenomenology +hep-ph/0510178 Phenomenology +hep-ph/0510186 Phenomenology +hep-ph/0510188 Phenomenology +hep-ph/0510190 Phenomenology +hep-ph/0510191 Phenomenology +hep-ph/0510194 Phenomenology +hep-ph/0510197 Phenomenology +hep-ph/0510201 Phenomenology +hep-ph/0510202 Phenomenology +hep-ph/0510205 Phenomenology +hep-ph/0510209 Phenomenology +hep-ph/0510210 Phenomenology +hep-ph/0510215 Phenomenology +hep-ph/0510217 Phenomenology +hep-ph/0510221 Phenomenology +hep-ph/0510223 Phenomenology +hep-ph/0510226 Phenomenology +hep-ph/0510229 Phenomenology +hep-ph/0510230 Phenomenology +hep-ph/0510231 Phenomenology +hep-ph/0510238 Phenomenology +hep-ph/0510242 Phenomenology +hep-ph/0510244 Phenomenology +hep-ph/0510245 Phenomenology +hep-ph/0510247 Phenomenology +hep-ph/0510248 Phenomenology +hep-ph/0510250 Phenomenology +hep-ph/0510252 Phenomenology +hep-ph/0510253 Phenomenology +hep-ph/0510254 Phenomenology +hep-ph/0510259 Phenomenology +hep-ph/0510260 Phenomenology +hep-ph/0510261 Phenomenology +hep-ph/0510263 Phenomenology +hep-ph/0510267 Phenomenology +hep-ph/0510268 Phenomenology +hep-ph/0510269 Phenomenology +hep-ph/0510273 Phenomenology +hep-ph/0510274 Phenomenology +hep-ph/0510276 Phenomenology +hep-ph/0510278 Phenomenology +hep-ph/0510279 Phenomenology +hep-ph/0510280 Phenomenology +hep-ph/0510283 Phenomenology +hep-ph/0510284 Phenomenology +hep-ph/0510288 Phenomenology +hep-ph/0510289 Phenomenology +hep-ph/0510291 Phenomenology +hep-ph/0510292 Phenomenology +hep-ph/0510298 Phenomenology +hep-ph/0510302 Phenomenology +hep-ph/0510304 Phenomenology +hep-ph/0510308 Phenomenology +hep-ph/0510311 Phenomenology +hep-ph/0510313 Phenomenology +hep-ph/0510318 Phenomenology +hep-ph/0510320 Phenomenology +hep-ph/0510326 Phenomenology +hep-ph/0510329 Phenomenology +hep-ph/0510330 Phenomenology +hep-ph/0510333 Phenomenology +hep-ph/0510334 Phenomenology +hep-ph/0510336 Phenomenology +hep-ph/0510337 Phenomenology +hep-ph/0510343 Phenomenology +hep-ph/0510344 Phenomenology +hep-ph/0510347 Phenomenology +hep-ph/0510350 Phenomenology +hep-ph/0510351 Phenomenology +hep-ph/0510353 Phenomenology +hep-ph/0510356 Phenomenology +hep-ph/0510365 Phenomenology +hep-ph/0510366 Phenomenology +hep-ph/0510367 Phenomenology +hep-ph/0510370 Phenomenology +hep-ph/0510371 Phenomenology +hep-ph/0510372 Phenomenology +hep-ph/0510373 Phenomenology +hep-ph/0510378 Phenomenology +hep-ph/0510380 Phenomenology +hep-ph/0510381 Phenomenology +hep-ph/0510384 Phenomenology +hep-ph/0510385 Phenomenology +hep-ph/0510390 Phenomenology +hep-ph/0510391 Phenomenology +hep-ph/0510394 Phenomenology +hep-ph/0510401 Phenomenology +hep-ph/0510403 Phenomenology +hep-ph/0510405 Phenomenology +hep-ph/0510407 Phenomenology +hep-ph/0510412 Phenomenology +hep-ph/0510414 Phenomenology +hep-ph/0510415 Phenomenology +hep-ph/0510417 Phenomenology +hep-ph/0510418 Phenomenology +hep-ph/0510419 Phenomenology +hep-ph/0510422 Phenomenology +hep-ph/0511004 Phenomenology +hep-ph/0511007 Phenomenology +hep-ph/0511010 Phenomenology +hep-ph/0511013 Phenomenology +hep-ph/0511014 Phenomenology +hep-ph/0511026 Phenomenology +hep-ph/0511028 Phenomenology +hep-ph/0511031 Phenomenology +hep-ph/0511040 Phenomenology +hep-ph/0511041 Phenomenology +hep-ph/0511042 Phenomenology +hep-ph/0511045 Phenomenology +hep-ph/0511046 Phenomenology +hep-ph/0511048 Phenomenology +hep-ph/0511053 Phenomenology +hep-ph/0511056 Phenomenology +hep-ph/0511059 Phenomenology +hep-ph/0511070 Phenomenology +hep-ph/0511072 Phenomenology +hep-ph/0511077 Phenomenology +hep-ph/0511080 Phenomenology +hep-ph/0511081 Phenomenology +hep-ph/0511082 Phenomenology +hep-ph/0511083 Phenomenology +hep-ph/0511084 Phenomenology +hep-ph/0511087 Phenomenology +hep-ph/0511092 Phenomenology +hep-ph/0511093 Phenomenology +hep-ph/0511098 Phenomenology +hep-ph/0511099 Phenomenology +hep-ph/0511101 Phenomenology +hep-ph/0511102 Phenomenology +hep-ph/0511104 Phenomenology +hep-ph/0511106 Phenomenology +hep-ph/0511108 Phenomenology +hep-ph/0511111 Phenomenology +hep-ph/0511113 Phenomenology +hep-ph/0511115 Phenomenology +hep-ph/0511118 Phenomenology +hep-ph/0511125 Phenomenology +hep-ph/0511126 Phenomenology +hep-ph/0511136 Phenomenology +hep-ph/0511143 Phenomenology +hep-ph/0511145 Phenomenology +hep-ph/0511149 Phenomenology +hep-ph/0511151 Phenomenology +hep-ph/0511152 Phenomenology +hep-ph/0511153 Phenomenology +hep-ph/0511157 Phenomenology +hep-ph/0511166 Phenomenology +hep-ph/0511171 Phenomenology +hep-ph/0511172 Phenomenology +hep-ph/0511176 Phenomenology +hep-ph/0511177 Phenomenology +hep-ph/0511182 Phenomenology +hep-ph/0511184 Phenomenology +hep-ph/0511190 Phenomenology +hep-ph/0511197 Phenomenology +hep-ph/0511203 Phenomenology +hep-ph/0511206 Phenomenology +hep-ph/0511207 Phenomenology +hep-ph/0511208 Phenomenology +hep-ph/0511214 Phenomenology +hep-ph/0511221 Phenomenology +hep-ph/0511222 Phenomenology +hep-ph/0511227 Phenomenology +hep-ph/0511229 Phenomenology +hep-ph/0511231 Phenomenology +hep-ph/0511236 Phenomenology +hep-ph/0511238 Phenomenology +hep-ph/0511239 Phenomenology +hep-ph/0511242 Phenomenology +hep-ph/0511244 Phenomenology +hep-ph/0511246 Phenomenology +hep-ph/0511254 Phenomenology +hep-ph/0511256 Phenomenology +hep-ph/0511258 Phenomenology +hep-ph/0511259 Phenomenology +hep-ph/0511260 Phenomenology +hep-ph/0511262 Phenomenology +hep-ph/0511268 Phenomenology +hep-ph/0511273 Phenomenology +hep-ph/0511276 Phenomenology +hep-ph/0511277 Phenomenology +hep-ph/0511286 Phenomenology +hep-ph/0511292 Phenomenology +hep-ph/0511293 Phenomenology +hep-ph/0511311 Phenomenology +hep-ph/0511312 Phenomenology +hep-ph/0511313 Phenomenology +hep-ph/0511314 Phenomenology +hep-ph/0511315 Phenomenology +hep-ph/0511317 Phenomenology +hep-ph/0511319 Phenomenology +hep-ph/0511327 Phenomenology +hep-ph/0511336 Phenomenology +hep-ph/0511338 Phenomenology +hep-ph/0511340 Phenomenology +hep-ph/0511342 Phenomenology +hep-ph/0511354 Phenomenology +hep-ph/0512003 Phenomenology +hep-ph/0512010 Phenomenology +hep-ph/0512016 Phenomenology +hep-ph/0512019 Phenomenology +hep-ph/0512024 Phenomenology +hep-ph/0512035 Phenomenology +hep-ph/0512042 Phenomenology +hep-ph/0512044 Phenomenology +hep-ph/0512045 Phenomenology +hep-ph/0512046 Phenomenology +hep-ph/0512052 Phenomenology +hep-ph/0512056 Phenomenology +hep-ph/0512057 Phenomenology +hep-ph/0512058 Phenomenology +hep-ph/0512062 Phenomenology +hep-ph/0512063 Phenomenology +hep-ph/0512071 Phenomenology +hep-ph/0512078 Phenomenology +hep-ph/0512079 Phenomenology +hep-ph/0512081 Phenomenology +hep-ph/0512088 Phenomenology +hep-ph/0512089 Phenomenology +hep-ph/0512096 Phenomenology +hep-ph/0512104 Phenomenology +hep-ph/0512109 Phenomenology +hep-ph/0512110 Phenomenology +hep-ph/0512113 Phenomenology +hep-ph/0512114 Phenomenology +hep-ph/0512118 Phenomenology +hep-ph/0512130 Phenomenology +hep-ph/0512136 Phenomenology +hep-ph/0512137 Phenomenology +hep-ph/0512138 Phenomenology +hep-ph/0512143 Phenomenology +hep-ph/0512144 Phenomenology +hep-ph/0512146 Phenomenology +hep-ph/0512149 Phenomenology +hep-ph/0512152 Phenomenology +hep-ph/0512156 Phenomenology +hep-ph/0512167 Phenomenology +hep-ph/0512169 Phenomenology +hep-ph/0512172 Phenomenology +hep-ph/0512173 Phenomenology +hep-ph/0512177 Phenomenology +hep-ph/0512179 Phenomenology +hep-ph/0512185 Phenomenology +hep-ph/0512190 Phenomenology +hep-ph/0512192 Phenomenology +hep-ph/0512200 Phenomenology +hep-ph/0512201 Phenomenology +hep-ph/0512204 Phenomenology +hep-ph/0512207 Phenomenology +hep-ph/0512208 Phenomenology +hep-ph/0512209 Phenomenology +hep-ph/0512211 Phenomenology +hep-ph/0512217 Phenomenology +hep-ph/0512219 Phenomenology +hep-ph/0512225 Phenomenology +hep-ph/0512227 Phenomenology +hep-ph/0512230 Phenomenology +hep-ph/0512234 Phenomenology +hep-ph/0512236 Phenomenology +hep-ph/0512240 Phenomenology +hep-ph/0512245 Phenomenology +hep-ph/0512250 Phenomenology +hep-ph/0512253 Phenomenology +hep-ph/0512259 Phenomenology +hep-ph/0512264 Phenomenology +hep-ph/0512265 Phenomenology +hep-ph/0512266 Phenomenology +hep-ph/0512267 Phenomenology +hep-ph/0512274 Phenomenology +hep-ph/0512275 Phenomenology +hep-ph/0512277 Phenomenology +hep-ph/0512279 Phenomenology +hep-ph/0512283 Phenomenology +hep-ph/0512288 Phenomenology +hep-ph/0512289 Phenomenology +hep-ph/0512294 Phenomenology +hep-ph/0512303 Phenomenology +hep-ph/0512304 Phenomenology +hep-ph/0512309 Phenomenology +hep-ph/0512312 Phenomenology +hep-ph/0512318 Phenomenology +hep-ph/0512322 Phenomenology +hep-ph/0512330 Phenomenology +hep-ph/0512331 Phenomenology +hep-ph/0512336 Phenomenology +hep-ph/0512337 Phenomenology +hep-ph/0512349 Phenomenology +hep-ph/0512352 Phenomenology +hep-ph/0512361 Phenomenology +hep-ph/0512363 Phenomenology +hep-ph/0512365 Phenomenology +hep-ph/0512369 Phenomenology +hep-ph/0512370 Phenomenology +hep-ph/0512375 Phenomenology +hep-ph/0512376 Phenomenology +hep-ph/0601005 Phenomenology +hep-ph/0601008 Phenomenology +hep-ph/0601010 Phenomenology +hep-ph/0601011 Phenomenology +hep-ph/0601018 Phenomenology +hep-ph/0601020 Phenomenology +hep-ph/0601024 Phenomenology +hep-ph/0601025 Phenomenology +hep-ph/0601027 Phenomenology +hep-ph/0601029 Phenomenology +hep-ph/0601030 Phenomenology +hep-ph/0601031 Phenomenology +hep-ph/0601036 Phenomenology +hep-ph/0601039 Phenomenology +hep-ph/0601044 Phenomenology +hep-ph/0601045 Phenomenology +hep-ph/0601047 Phenomenology +hep-ph/0601050 Phenomenology +hep-ph/0601051 Phenomenology +hep-ph/0601052 Phenomenology +hep-ph/0601054 Phenomenology +hep-ph/0601055 Phenomenology +hep-ph/0601061 Phenomenology +hep-ph/0601065 Phenomenology +hep-ph/0601070 Phenomenology +hep-ph/0601075 Phenomenology +hep-ph/0601076 Phenomenology +hep-ph/0601077 Phenomenology +hep-ph/0601081 Phenomenology +hep-ph/0601083 Phenomenology +hep-ph/0601084 Phenomenology +hep-ph/0601086 Phenomenology +hep-ph/0601087 Phenomenology +hep-ph/0601088 Phenomenology +hep-ph/0601089 Phenomenology +hep-ph/0601090 Phenomenology +hep-ph/0601092 Phenomenology +hep-ph/0601094 Phenomenology +hep-ph/0601096 Phenomenology +hep-ph/0601098 Phenomenology +hep-ph/0601099 Phenomenology +hep-ph/0601100 Phenomenology +hep-ph/0601104 Phenomenology +hep-ph/0601105 Phenomenology +hep-ph/0601107 Phenomenology +hep-ph/0601108 Phenomenology +hep-ph/0601113 Phenomenology +hep-ph/0601116 Phenomenology +hep-ph/0601117 Phenomenology +hep-ph/0601118 Phenomenology +hep-ph/0601123 Phenomenology +hep-ph/0601126 Phenomenology +hep-ph/0601130 Phenomenology +hep-ph/0601134 Phenomenology +hep-ph/0601142 Phenomenology +hep-ph/0601148 Phenomenology +hep-ph/0601149 Phenomenology +hep-ph/0601151 Phenomenology +hep-ph/0601154 Phenomenology +hep-ph/0601157 Phenomenology +hep-ph/0601159 Phenomenology +hep-ph/0601163 Phenomenology +hep-ph/0601169 Phenomenology +hep-ph/0601170 Phenomenology +hep-ph/0601173 Phenomenology +hep-ph/0601181 Phenomenology +hep-ph/0601188 Phenomenology +hep-ph/0601191 Phenomenology +hep-ph/0601197 Phenomenology +hep-ph/0601208 Phenomenology +hep-ph/0601212 Phenomenology +hep-ph/0601220 Phenomenology +hep-ph/0601222 Phenomenology +hep-ph/0601224 Phenomenology +hep-ph/0601232 Phenomenology +hep-ph/0601236 Phenomenology +hep-ph/0601237 Phenomenology +hep-ph/0601241 Phenomenology +hep-ph/0601242 Phenomenology +hep-ph/0601246 Phenomenology +hep-ph/0601248 Phenomenology +hep-ph/0601251 Phenomenology +hep-ph/0601254 Phenomenology +hep-ph/0601256 Phenomenology +hep-ph/0601263 Phenomenology +hep-ph/0601268 Phenomenology +hep-ph/0602003 Phenomenology +hep-ph/0602004 Phenomenology +hep-ph/0602005 Phenomenology +hep-ph/0602006 Phenomenology +hep-ph/0602009 Phenomenology +hep-ph/0602010 Phenomenology +hep-ph/0602012 Phenomenology +hep-ph/0602014 Phenomenology +hep-ph/0602016 Phenomenology +hep-ph/0602020 Phenomenology +hep-ph/0602027 Phenomenology +hep-ph/0602029 Phenomenology +hep-ph/0602030 Phenomenology +hep-ph/0602039 Phenomenology +hep-ph/0602044 Phenomenology +hep-ph/0602045 Phenomenology +hep-ph/0602046 Phenomenology +hep-ph/0602049 Phenomenology +hep-ph/0602051 Phenomenology +hep-ph/0602052 Phenomenology +hep-ph/0602053 Phenomenology +hep-ph/0602054 Phenomenology +hep-ph/0602056 Phenomenology +hep-ph/0602062 Phenomenology +hep-ph/0602065 Phenomenology +hep-ph/0602066 Phenomenology +hep-ph/0602068 Phenomenology +hep-ph/0602070 Phenomenology +hep-ph/0602073 Phenomenology +hep-ph/0602074 Phenomenology +hep-ph/0602078 Phenomenology +hep-ph/0602079 Phenomenology +hep-ph/0602082 Phenomenology +hep-ph/0602083 Phenomenology +hep-ph/0602087 Phenomenology +hep-ph/0602088 Phenomenology +hep-ph/0602100 Phenomenology +hep-ph/0602102 Phenomenology +hep-ph/0602107 Phenomenology +hep-ph/0602108 Phenomenology +hep-ph/0602110 Phenomenology +hep-ph/0602113 Phenomenology +hep-ph/0602114 Phenomenology +hep-ph/0602116 Phenomenology +hep-ph/0602122 Phenomenology +hep-ph/0602125 Phenomenology +hep-ph/0602127 Phenomenology +hep-ph/0602131 Phenomenology +hep-ph/0602133 Phenomenology +hep-ph/0602134 Phenomenology +hep-ph/0602139 Phenomenology +hep-ph/0602143 Phenomenology +hep-ph/0602149 Phenomenology +hep-ph/0602151 Phenomenology +hep-ph/0602154 Phenomenology +hep-ph/0602155 Phenomenology +hep-ph/0602168 Phenomenology +hep-ph/0602174 Phenomenology +hep-ph/0602177 Phenomenology +hep-ph/0602180 Phenomenology +hep-ph/0602181 Phenomenology +hep-ph/0602185 Phenomenology +hep-ph/0602192 Phenomenology +hep-ph/0602197 Phenomenology +hep-ph/0602202 Phenomenology +hep-ph/0602203 Phenomenology +hep-ph/0602204 Phenomenology +hep-ph/0602212 Phenomenology +hep-ph/0602218 Phenomenology +hep-ph/0602219 Phenomenology +hep-ph/0602220 Phenomenology +hep-ph/0602222 Phenomenology +hep-ph/0602226 Phenomenology +hep-ph/0602227 Phenomenology +hep-ph/0602230 Phenomenology +hep-ph/0602234 Phenomenology +hep-ph/0602237 Phenomenology +hep-ph/0602242 Phenomenology +hep-ph/0602247 Phenomenology +hep-ph/0603001 Phenomenology +hep-ph/0603003 Phenomenology +hep-ph/0603009 Phenomenology +hep-ph/0603016 Phenomenology +hep-ph/0603020 Phenomenology +hep-ph/0603023 Phenomenology +hep-ph/0603025 Phenomenology +hep-ph/0603028 Phenomenology +hep-ph/0603032 Phenomenology +hep-ph/0603033 Phenomenology +hep-ph/0603034 Phenomenology +hep-ph/0603042 Phenomenology +hep-ph/0603044 Phenomenology +hep-ph/0603045 Phenomenology +hep-ph/0603051 Phenomenology +hep-ph/0603055 Phenomenology +hep-ph/0603057 Phenomenology +hep-ph/0603058 Phenomenology +hep-ph/0603075 Phenomenology +hep-ph/0603076 Phenomenology +hep-ph/0603081 Phenomenology +hep-ph/0603082 Phenomenology +hep-ph/0603086 Phenomenology +hep-ph/0603091 Phenomenology +hep-ph/0603095 Phenomenology +hep-ph/0603097 Phenomenology +hep-ph/0603100 Phenomenology +hep-ph/0603104 Phenomenology +hep-ph/0603105 Phenomenology +hep-ph/0603113 Phenomenology +hep-ph/0603114 Phenomenology +hep-ph/0603116 Phenomenology +hep-ph/0603121 Phenomenology +hep-ph/0603123 Phenomenology +hep-ph/0603127 Phenomenology +hep-ph/0603129 Phenomenology +hep-ph/0603132 Phenomenology +hep-ph/0603135 Phenomenology +hep-ph/0603136 Phenomenology +hep-ph/0603137 Phenomenology +hep-ph/0603139 Phenomenology +hep-ph/0603140 Phenomenology +hep-ph/0603141 Phenomenology +hep-ph/0603148 Phenomenology +hep-ph/0603150 Phenomenology +hep-ph/0603152 Phenomenology +hep-ph/0603153 Phenomenology +hep-ph/0603155 Phenomenology +hep-ph/0603163 Phenomenology +hep-ph/0603165 Phenomenology +hep-ph/0603166 Phenomenology +hep-ph/0603169 Phenomenology +hep-ph/0603175 Phenomenology +hep-ph/0603176 Phenomenology +hep-ph/0603177 Phenomenology +hep-ph/0603179 Phenomenology +hep-ph/0603183 Phenomenology +hep-ph/0603187 Phenomenology +hep-ph/0603196 Phenomenology +hep-ph/0603200 Phenomenology +hep-ph/0603204 Phenomenology +hep-ph/0603205 Phenomenology +hep-ph/0603210 Phenomenology +hep-ph/0603212 Phenomenology +hep-ph/0603216 Phenomenology +hep-ph/0603219 Phenomenology +hep-ph/0603220 Phenomenology +hep-ph/0603225 Phenomenology +hep-ph/0603226 Phenomenology +hep-ph/0603227 Phenomenology +hep-ph/0603229 Phenomenology +hep-ph/0603230 Phenomenology +hep-ph/0603231 Phenomenology +hep-ph/0603233 Phenomenology +hep-ph/0603239 Phenomenology +hep-ph/0603241 Phenomenology +hep-ph/0603248 Phenomenology +hep-ph/0603251 Phenomenology +hep-ph/0603254 Phenomenology +hep-ph/0603255 Phenomenology +hep-ph/0603257 Phenomenology +hep-ph/0603263 Phenomenology +hep-ph/0603264 Phenomenology +hep-ph/0604005 Phenomenology +hep-ph/0604006 Phenomenology +hep-ph/0604009 Phenomenology +hep-ph/0604014 Phenomenology +hep-ph/0604015 Phenomenology +hep-ph/0604016 Phenomenology +hep-ph/0604017 Phenomenology +hep-ph/0604021 Phenomenology +hep-ph/0604033 Phenomenology +hep-ph/0604036 Phenomenology +hep-ph/0604041 Phenomenology +hep-ph/0604045 Phenomenology +hep-ph/0604046 Phenomenology +hep-ph/0604050 Phenomenology +hep-ph/0604051 Phenomenology +hep-ph/0604057 Phenomenology +hep-ph/0604058 Phenomenology +hep-ph/0604059 Phenomenology +hep-ph/0604060 Phenomenology +hep-ph/0604066 Phenomenology +hep-ph/0604072 Phenomenology +hep-ph/0604077 Phenomenology +hep-ph/0604083 Phenomenology +hep-ph/0604085 Phenomenology +hep-ph/0604086 Phenomenology +hep-ph/0604093 Phenomenology +hep-ph/0604094 Phenomenology +hep-ph/0604098 Phenomenology +hep-ph/0604099 Phenomenology +hep-ph/0604100 Phenomenology +hep-ph/0604114 Phenomenology +hep-ph/0604115 Phenomenology +hep-ph/0604122 Phenomenology +hep-ph/0604127 Phenomenology +hep-ph/0604132 Phenomenology +hep-ph/0604134 Phenomenology +hep-ph/0604136 Phenomenology +hep-ph/0604140 Phenomenology +hep-ph/0604150 Phenomenology +hep-ph/0604156 Phenomenology +hep-ph/0604157 Phenomenology +hep-ph/0604163 Phenomenology +hep-ph/0604164 Phenomenology +hep-ph/0604168 Phenomenology +hep-ph/0604169 Phenomenology +hep-ph/0604170 Phenomenology +hep-ph/0604171 Phenomenology +hep-ph/0604172 Phenomenology +hep-ph/0604173 Phenomenology +hep-ph/0604174 Phenomenology +hep-ph/0604175 Phenomenology +hep-ph/0604185 Phenomenology +hep-ph/0604188 Phenomenology +hep-ph/0604191 Phenomenology +hep-ph/0604192 Phenomenology +hep-ph/0604193 Phenomenology +hep-ph/0604205 Phenomenology +hep-ph/0604206 Phenomenology +hep-ph/0604213 Phenomenology +hep-ph/0604215 Phenomenology +hep-ph/0604216 Phenomenology +hep-ph/0604220 Phenomenology +hep-ph/0604231 Phenomenology +hep-ph/0604237 Phenomenology +hep-ph/0604243 Phenomenology +hep-ph/0604245 Phenomenology +hep-ph/0604246 Phenomenology +hep-ph/0604250 Phenomenology +hep-ph/0604251 Phenomenology +hep-ph/0604253 Phenomenology +hep-ph/0604254 Phenomenology +hep-ph/0604257 Phenomenology +hep-ph/0604259 Phenomenology +hep-ph/0604260 Phenomenology +hep-ph/0604263 Phenomenology +hep-ph/0604265 Phenomenology +hep-ph/0604267 Phenomenology +hep-ph/0605003 Phenomenology +hep-ph/0605006 Phenomenology +hep-ph/0605007 Phenomenology +hep-ph/0605011 Phenomenology +hep-ph/0605014 Phenomenology +hep-ph/0605016 Phenomenology +hep-ph/0605024 Phenomenology +hep-ph/0605026 Phenomenology +hep-ph/0605030 Phenomenology +hep-ph/0605033 Phenomenology +hep-ph/0605042 Phenomenology +hep-ph/0605051 Phenomenology +hep-ph/0605052 Phenomenology +hep-ph/0605059 Phenomenology +hep-ph/0605060 Phenomenology +hep-ph/0605061 Phenomenology +hep-ph/0605066 Phenomenology +hep-ph/0605067 Phenomenology +hep-ph/0605069 Phenomenology +hep-ph/0605071 Phenomenology +hep-ph/0605072 Phenomenology +hep-ph/0605083 Phenomenology +hep-ph/0605085 Phenomenology +hep-ph/0605090 Phenomenology +hep-ph/0605091 Phenomenology +hep-ph/0605092 Phenomenology +hep-ph/0605094 Phenomenology +hep-ph/0605100 Phenomenology +hep-ph/0605109 Phenomenology +hep-ph/0605118 Phenomenology +hep-ph/0605121 Phenomenology +hep-ph/0605122 Phenomenology +hep-ph/0605123 Phenomenology +hep-ph/0605160 Phenomenology +hep-ph/0605161 Phenomenology +hep-ph/0605179 Phenomenology +hep-ph/0605180 Phenomenology +hep-ph/0605181 Phenomenology +hep-ph/0605182 Phenomenology +hep-ph/0605183 Phenomenology +hep-ph/0605187 Phenomenology +hep-ph/0605194 Phenomenology +hep-ph/0605195 Phenomenology +hep-ph/0605206 Phenomenology +hep-ph/0605208 Phenomenology +hep-ph/0605209 Phenomenology +hep-ph/0605211 Phenomenology +hep-ph/0605219 Phenomenology +hep-ph/0605223 Phenomenology +hep-ph/0605227 Phenomenology +hep-ph/0605228 Phenomenology +hep-ph/0605233 Phenomenology +hep-ph/0605234 Phenomenology +hep-ph/0605235 Phenomenology +hep-ph/0605238 Phenomenology +hep-ph/0605246 Phenomenology +hep-ph/0605248 Phenomenology +hep-ph/0605252 Phenomenology +hep-ph/0605254 Phenomenology +hep-ph/0605259 Phenomenology +hep-ph/0605263 Phenomenology +hep-ph/0605264 Phenomenology +hep-ph/0605274 Phenomenology +hep-ph/0605280 Phenomenology +hep-ph/0605281 Phenomenology +hep-ph/0605287 Phenomenology +hep-ph/0605290 Phenomenology +hep-ph/0605292 Phenomenology +hep-ph/0605294 Phenomenology +hep-ph/0605297 Phenomenology +hep-ph/0605305 Phenomenology +hep-ph/0605307 Phenomenology +hep-ph/0605308 Phenomenology +hep-ph/0605309 Phenomenology +hep-ph/0605316 Phenomenology +hep-ph/0605322 Phenomenology +hep-ph/0605323 Phenomenology +hep-ph/0605324 Phenomenology +hep-ph/0605327 Phenomenology +hep-ph/0605329 Phenomenology +hep-ph/0605334 Phenomenology +hep-ph/0605335 Phenomenology +hep-ph/0605339 Phenomenology +hep-ph/0605342 Phenomenology +hep-ph/0606019 Phenomenology +hep-ph/0606025 Phenomenology +hep-ph/0606026 Phenomenology +hep-ph/0606048 Phenomenology +hep-ph/0606050 Phenomenology +hep-ph/0606051 Phenomenology +hep-ph/0606053 Phenomenology +hep-ph/0606057 Phenomenology +hep-ph/0606061 Phenomenology +hep-ph/0606066 Phenomenology +hep-ph/0606075 Phenomenology +hep-ph/0606078 Phenomenology +hep-ph/0606079 Phenomenology +hep-ph/0606081 Phenomenology +hep-ph/0606086 Phenomenology +hep-ph/0606089 Phenomenology +hep-ph/0606101 Phenomenology +hep-ph/0606104 Phenomenology +hep-ph/0606105 Phenomenology +hep-ph/0606106 Phenomenology +hep-ph/0606113 Phenomenology +hep-ph/0606115 Phenomenology +hep-ph/0606117 Phenomenology +hep-ph/0606121 Phenomenology +hep-ph/0606123 Phenomenology +hep-ph/0606125 Phenomenology +hep-ph/0606137 Phenomenology +hep-ph/0606139 Phenomenology +hep-ph/0606146 Phenomenology +hep-ph/0606147 Phenomenology +hep-ph/0606148 Phenomenology +hep-ph/0606156 Phenomenology +hep-ph/0606166 Phenomenology +hep-ph/0606175 Phenomenology +hep-ph/0606178 Phenomenology +hep-ph/0606181 Phenomenology +hep-ph/0606210 Phenomenology +hep-ph/0606220 Phenomenology +hep-ph/0606232 Phenomenology +hep-ph/0606241 Phenomenology +hep-ph/0606245 Phenomenology +hep-ph/0606248 Phenomenology +hep-ph/0606251 Phenomenology +hep-ph/0606262 Phenomenology +hep-ph/0606269 Phenomenology +hep-ph/0606275 Phenomenology +hep-ph/0606276 Phenomenology +hep-ph/0606282 Phenomenology +hep-ph/0606285 Phenomenology +hep-ph/0606290 Phenomenology +hep-ph/0606296 Phenomenology +hep-ph/0606297 Phenomenology +hep-ph/0606301 Phenomenology +hep-ph/0606318 Phenomenology +hep-ph/0606322 Phenomenology +hep-ph/0607006 Phenomenology +hep-ph/0607011 Phenomenology +hep-ph/0607012 Phenomenology +hep-ph/0607015 Phenomenology +hep-ph/0607020 Phenomenology +hep-ph/0607023 Phenomenology +hep-ph/0607028 Phenomenology +hep-ph/0607034 Phenomenology +hep-ph/0607037 Phenomenology +hep-ph/0607041 Phenomenology +hep-ph/0607049 Phenomenology +hep-ph/0607051 Phenomenology +hep-ph/0607052 Phenomenology +hep-ph/0607069 Phenomenology +hep-ph/0607076 Phenomenology +hep-ph/0607078 Phenomenology +hep-ph/0607081 Phenomenology +hep-ph/0607088 Phenomenology +hep-ph/0607090 Phenomenology +hep-ph/0607095 Phenomenology +hep-ph/0607096 Phenomenology +hep-ph/0607098 Phenomenology +hep-ph/0607099 Phenomenology +hep-ph/0607104 Phenomenology +hep-ph/0607112 Phenomenology +hep-ph/0607128 Phenomenology +hep-ph/0607136 Phenomenology +hep-ph/0607141 Phenomenology +hep-ph/0607148 Phenomenology +hep-ph/0607157 Phenomenology +hep-ph/0607158 Phenomenology +hep-ph/0607164 Phenomenology +hep-ph/0607169 Phenomenology +hep-ph/0607170 Phenomenology +hep-ph/0607171 Phenomenology +hep-ph/0607180 Phenomenology +hep-ph/0607187 Phenomenology +hep-ph/0607188 Phenomenology +hep-ph/0607202 Phenomenology +hep-ph/0607205 Phenomenology +hep-ph/0607214 Phenomenology +hep-ph/0607223 Phenomenology +hep-ph/0607229 Phenomenology +hep-ph/0607235 Phenomenology +hep-ph/0607238 Phenomenology +hep-ph/0607239 Phenomenology +hep-ph/0607240 Phenomenology +hep-ph/0607248 Phenomenology +hep-ph/0607261 Phenomenology +hep-ph/0607263 Phenomenology +hep-ph/0607264 Phenomenology +hep-ph/0607266 Phenomenology +hep-ph/0607267 Phenomenology +hep-ph/0607278 Phenomenology +hep-ph/0607280 Phenomenology +hep-ph/0607300 Phenomenology +hep-ph/0607303 Phenomenology +hep-ph/0607312 Phenomenology +hep-ph/0607339 Phenomenology +hep-ph/0607341 Phenomenology +hep-ph/0608016 Phenomenology +hep-ph/0608018 Phenomenology +hep-ph/0608021 Phenomenology +hep-ph/0608026 Phenomenology +hep-ph/0608052 Phenomenology +hep-ph/0608070 Phenomenology +hep-ph/0608073 Phenomenology +hep-ph/0608084 Phenomenology +hep-ph/0608095 Phenomenology +hep-ph/0608097 Phenomenology +hep-ph/0608098 Phenomenology +hep-ph/0608099 Phenomenology +hep-ph/0608103 Phenomenology +hep-ph/0608104 Phenomenology +hep-ph/0608109 Phenomenology +hep-ph/0608113 Phenomenology +hep-ph/0608114 Phenomenology +hep-ph/0608115 Phenomenology +hep-ph/0608136 Phenomenology +hep-ph/0608155 Phenomenology +hep-ph/0608156 Phenomenology +hep-ph/0608158 Phenomenology +hep-ph/0608161 Phenomenology +hep-ph/0608163 Phenomenology +hep-ph/0608166 Phenomenology +hep-ph/0608186 Phenomenology +hep-ph/0608194 Phenomenology +hep-ph/0608210 Phenomenology +hep-ph/0608216 Phenomenology +hep-ph/0608224 Phenomenology +hep-ph/0608238 Phenomenology +hep-ph/0608261 Phenomenology +hep-ph/0608263 Phenomenology +hep-ph/0608265 Phenomenology +hep-ph/0608266 Phenomenology +hep-ph/0608280 Phenomenology +hep-ph/0608286 Phenomenology +hep-ph/0608294 Phenomenology +hep-ph/0608342 Phenomenology +hep-ph/0609022 Phenomenology +hep-ph/0609026 Phenomenology +hep-ph/0609033 Phenomenology +hep-ph/0609038 Phenomenology +hep-ph/0609047 Phenomenology +hep-ph/0609051 Phenomenology +hep-ph/0609055 Phenomenology +hep-ph/0609072 Phenomenology +hep-ph/0609098 Phenomenology +hep-ph/0609099 Phenomenology +hep-ph/0609100 Phenomenology +hep-ph/0609103 Phenomenology +hep-ph/0609106 Phenomenology +hep-ph/0609110 Phenomenology +hep-ph/0609114 Phenomenology +hep-ph/0609132 Phenomenology +hep-ph/0609135 Phenomenology +hep-ph/0609138 Phenomenology +hep-ph/0609140 Phenomenology +hep-ph/0609142 Phenomenology +hep-ph/0609157 Phenomenology +hep-ph/0609169 Phenomenology +hep-ph/0609170 Phenomenology +hep-ph/0609196 Phenomenology +hep-ph/0609201 Phenomenology +hep-ph/0609211 Phenomenology +hep-ph/0609227 Phenomenology +hep-ph/0609231 Phenomenology +hep-ph/0609245 Phenomenology +hep-ph/0609275 Phenomenology +hep-ph/0609280 Phenomenology +hep-ph/0609294 Phenomenology +hep-ph/0609303 Phenomenology +hep-ph/0610017 Phenomenology +hep-ph/0610022 Phenomenology +hep-ph/0610040 Phenomenology +hep-ph/0610065 Phenomenology +hep-ph/0610076 Phenomenology +hep-ph/0610091 Phenomenology +hep-ph/0610110 Phenomenology +hep-ph/0610114 Phenomenology +hep-ph/0610129 Phenomenology +hep-ph/0610140 Phenomenology +hep-ph/0610155 Phenomenology +hep-ph/0610206 Phenomenology +hep-ph/0610234 Phenomenology +hep-ph/0610242 Phenomenology +hep-ph/0610269 Phenomenology +hep-ph/0610271 Phenomenology +hep-ph/0610275 Phenomenology +hep-ph/0610305 Phenomenology +hep-ph/0610341 Phenomenology +hep-ph/0610361 Phenomenology +hep-ph/0611041 Phenomenology +hep-ph/0611051 Phenomenology +hep-ph/0611128 Phenomenology +hep-ph/0611243 Phenomenology +hep-ph/0611248 Phenomenology +hep-ph/0611299 Phenomenology +hep-ph/0611353 Phenomenology +hep-ph/0611358 Phenomenology +hep-ph/0611359 Phenomenology +hep-ph/0612097 Phenomenology +hep-ph/0612151 Phenomenology +hep-ph/0612226 Phenomenology +hep-ph/0612241 Phenomenology +hep-ph/0612263 Phenomenology +hep-ph/0612308 Phenomenology +hep-th/0501001 Theory +hep-th/0501007 Theory +hep-th/0501009 Theory +hep-th/0501010 Theory +hep-th/0501011 Theory +hep-th/0501015 Theory +hep-th/0501016 Theory +hep-th/0501020 Theory +hep-th/0501021 Theory +hep-th/0501023 Theory +hep-th/0501026 Theory +hep-th/0501028 Theory +hep-th/0501029 Theory +hep-th/0501030 Theory +hep-th/0501031 Theory +hep-th/0501032 Theory +hep-th/0501034 Theory +hep-th/0501036 Theory +hep-th/0501038 Theory +hep-th/0501044 Theory +hep-th/0501050 Theory +hep-th/0501053 Theory +hep-th/0501055 Theory +hep-th/0501059 Theory +hep-th/0501060 Theory +hep-th/0501062 Theory +hep-th/0501063 Theory +hep-th/0501066 Theory +hep-th/0501067 Theory +hep-th/0501069 Theory +hep-th/0501073 Theory +hep-th/0501078 Theory +hep-th/0501081 Theory +hep-th/0501084 Theory +hep-th/0501086 Theory +hep-th/0501087 Theory +hep-th/0501088 Theory +hep-th/0501091 Theory +hep-th/0501092 Theory +hep-th/0501093 Theory +hep-th/0501097 Theory +hep-th/0501098 Theory +hep-th/0501100 Theory +hep-th/0501101 Theory +hep-th/0501102 Theory +hep-th/0501103 Theory +hep-th/0501108 Theory +hep-th/0501112 Theory +hep-th/0501113 Theory +hep-th/0501114 Theory +hep-th/0501119 Theory +hep-th/0501125 Theory +hep-th/0501128 Theory +hep-th/0501134 Theory +hep-th/0501135 Theory +hep-th/0501137 Theory +hep-th/0501141 Theory +hep-th/0501142 Theory +hep-th/0501143 Theory +hep-th/0501146 Theory +hep-th/0501149 Theory +hep-th/0501151 Theory +hep-th/0501152 Theory +hep-th/0501155 Theory +hep-th/0501157 Theory +hep-th/0501158 Theory +hep-th/0501164 Theory +hep-th/0501165 Theory +hep-th/0501166 Theory +hep-th/0501167 Theory +hep-th/0501169 Theory +hep-th/0501171 Theory +hep-th/0501174 Theory +hep-th/0501182 Theory +hep-th/0501183 Theory +hep-th/0501184 Theory +hep-th/0501185 Theory +hep-th/0501186 Theory +hep-th/0501190 Theory +hep-th/0501192 Theory +hep-th/0501194 Theory +hep-th/0501200 Theory +hep-th/0501201 Theory +hep-th/0501202 Theory +hep-th/0501204 Theory +hep-th/0501207 Theory +hep-th/0501208 Theory +hep-th/0501210 Theory +hep-th/0501213 Theory +hep-th/0501214 Theory +hep-th/0501216 Theory +hep-th/0501219 Theory +hep-th/0501221 Theory +hep-th/0501222 Theory +hep-th/0501225 Theory +hep-th/0501226 Theory +hep-th/0501234 Theory +hep-th/0501242 Theory +hep-th/0501244 Theory +hep-th/0501245 Theory +hep-th/0501247 Theory +hep-th/0501248 Theory +hep-th/0501249 Theory +hep-th/0501251 Theory +hep-th/0502001 Theory +hep-th/0502002 Theory +hep-th/0502007 Theory +hep-th/0502008 Theory +hep-th/0502009 Theory +hep-th/0502011 Theory +hep-th/0502012 Theory +hep-th/0502020 Theory +hep-th/0502022 Theory +hep-th/0502023 Theory +hep-th/0502025 Theory +hep-th/0502032 Theory +hep-th/0502033 Theory +hep-th/0502034 Theory +hep-th/0502039 Theory +hep-th/0502040 Theory +hep-th/0502041 Theory +hep-th/0502042 Theory +hep-th/0502043 Theory +hep-th/0502047 Theory +hep-th/0502050 Theory +hep-th/0502051 Theory +hep-th/0502054 Theory +hep-th/0502055 Theory +hep-th/0502056 Theory +hep-th/0502057 Theory +hep-th/0502060 Theory +hep-th/0502061 Theory +hep-th/0502062 Theory +hep-th/0502063 Theory +hep-th/0502065 Theory +hep-th/0502068 Theory +hep-th/0502069 Theory +hep-th/0502071 Theory +hep-th/0502072 Theory +hep-th/0502074 Theory +hep-th/0502078 Theory +hep-th/0502079 Theory +hep-th/0502080 Theory +hep-th/0502085 Theory +hep-th/0502086 Theory +hep-th/0502087 Theory +hep-th/0502089 Theory +hep-th/0502090 Theory +hep-th/0502091 Theory +hep-th/0502093 Theory +hep-th/0502097 Theory +hep-th/0502104 Theory +hep-th/0502106 Theory +hep-th/0502107 Theory +hep-th/0502109 Theory +hep-th/0502111 Theory +hep-th/0502114 Theory +hep-th/0502115 Theory +hep-th/0502116 Theory +hep-th/0502118 Theory +hep-th/0502119 Theory +hep-th/0502120 Theory +hep-th/0502126 Theory +hep-th/0502127 Theory +hep-th/0502129 Theory +hep-th/0502131 Theory +hep-th/0502132 Theory +hep-th/0502133 Theory +hep-th/0502135 Theory +hep-th/0502137 Theory +hep-th/0502142 Theory +hep-th/0502143 Theory +hep-th/0502144 Theory +hep-th/0502147 Theory +hep-th/0502148 Theory +hep-th/0502150 Theory +hep-th/0502151 Theory +hep-th/0502158 Theory +hep-th/0502159 Theory +hep-th/0502162 Theory +hep-th/0502163 Theory +hep-th/0502164 Theory +hep-th/0502165 Theory +hep-th/0502169 Theory +hep-th/0502170 Theory +hep-th/0502171 Theory +hep-th/0502174 Theory +hep-th/0502178 Theory +hep-th/0502181 Theory +hep-th/0502182 Theory +hep-th/0502187 Theory +hep-th/0502188 Theory +hep-th/0502189 Theory +hep-th/0502190 Theory +hep-th/0502194 Theory +hep-th/0502196 Theory +hep-th/0502197 Theory +hep-th/0502199 Theory +hep-th/0502202 Theory +hep-th/0502203 Theory +hep-th/0502205 Theory +hep-th/0502210 Theory +hep-th/0502216 Theory +hep-th/0502217 Theory +hep-th/0502221 Theory +hep-th/0502223 Theory +hep-th/0502224 Theory +hep-th/0502229 Theory +hep-th/0502237 Theory +hep-th/0502240 Theory +hep-th/0502242 Theory +hep-th/0502245 Theory +hep-th/0503003 Theory +hep-th/0503004 Theory +hep-th/0503007 Theory +hep-th/0503009 Theory +hep-th/0503011 Theory +hep-th/0503012 Theory +hep-th/0503015 Theory +hep-th/0503016 Theory +hep-th/0503018 Theory +hep-th/0503019 Theory +hep-th/0503021 Theory +hep-th/0503022 Theory +hep-th/0503024 Theory +hep-th/0503025 Theory +hep-th/0503027 Theory +hep-th/0503028 Theory +hep-th/0503029 Theory +hep-th/0503031 Theory +hep-th/0503032 Theory +hep-th/0503037 Theory +hep-th/0503038 Theory +hep-th/0503041 Theory +hep-th/0503042 Theory +hep-th/0503043 Theory +hep-th/0503045 Theory +hep-th/0503048 Theory +hep-th/0503049 Theory +hep-th/0503052 Theory +hep-th/0503053 Theory +hep-th/0503056 Theory +hep-th/0503057 Theory +hep-th/0503059 Theory +hep-th/0503063 Theory +hep-th/0503064 Theory +hep-th/0503067 Theory +hep-th/0503068 Theory +hep-th/0503071 Theory +hep-th/0503072 Theory +hep-th/0503073 Theory +hep-th/0503075 Theory +hep-th/0503077 Theory +hep-th/0503079 Theory +hep-th/0503082 Theory +hep-th/0503088 Theory +hep-th/0503089 Theory +hep-th/0503090 Theory +hep-th/0503093 Theory +hep-th/0503094 Theory +hep-th/0503095 Theory +hep-th/0503096 Theory +hep-th/0503097 Theory +hep-th/0503098 Theory +hep-th/0503101 Theory +hep-th/0503103 Theory +hep-th/0503106 Theory +hep-th/0503107 Theory +hep-th/0503116 Theory +hep-th/0503118 Theory +hep-th/0503123 Theory +hep-th/0503127 Theory +hep-th/0503129 Theory +hep-th/0503131 Theory +hep-th/0503134 Theory +hep-th/0503136 Theory +hep-th/0503138 Theory +hep-th/0503139 Theory +hep-th/0503140 Theory +hep-th/0503143 Theory +hep-th/0503146 Theory +hep-th/0503147 Theory +hep-th/0503152 Theory +hep-th/0503155 Theory +hep-th/0503158 Theory +hep-th/0503161 Theory +hep-th/0503166 Theory +hep-th/0503167 Theory +hep-th/0503168 Theory +hep-th/0503169 Theory +hep-th/0503170 Theory +hep-th/0503172 Theory +hep-th/0503175 Theory +hep-th/0503176 Theory +hep-th/0503180 Theory +hep-th/0503181 Theory +hep-th/0503184 Theory +hep-th/0503186 Theory +hep-th/0503190 Theory +hep-th/0503193 Theory +hep-th/0503196 Theory +hep-th/0503197 Theory +hep-th/0503198 Theory +hep-th/0503199 Theory +hep-th/0503201 Theory +hep-th/0503202 Theory +hep-th/0503208 Theory +hep-th/0503210 Theory +hep-th/0503214 Theory +hep-th/0503217 Theory +hep-th/0503218 Theory +hep-th/0503219 Theory +hep-th/0503221 Theory +hep-th/0503222 Theory +hep-th/0503223 Theory +hep-th/0503224 Theory +hep-th/0503225 Theory +hep-th/0503226 Theory +hep-th/0503230 Theory +hep-th/0503231 Theory +hep-th/0503234 Theory +hep-th/0503236 Theory +hep-th/0503237 Theory +hep-th/0503239 Theory +hep-th/0503241 Theory +hep-th/0503242 Theory +hep-th/0503243 Theory +hep-th/0503244 Theory +hep-th/0503246 Theory +hep-th/0503247 Theory +hep-th/0503248 Theory +hep-th/0504003 Theory +hep-th/0504007 Theory +hep-th/0504008 Theory +hep-th/0504010 Theory +hep-th/0504011 Theory +hep-th/0504012 Theory +hep-th/0504014 Theory +hep-th/0504017 Theory +hep-th/0504018 Theory +hep-th/0504019 Theory +hep-th/0504021 Theory +hep-th/0504023 Theory +hep-th/0504024 Theory +hep-th/0504025 Theory +hep-th/0504026 Theory +hep-th/0504027 Theory +hep-th/0504032 Theory +hep-th/0504033 Theory +hep-th/0504035 Theory +hep-th/0504039 Theory +hep-th/0504040 Theory +hep-th/0504041 Theory +hep-th/0504043 Theory +hep-th/0504044 Theory +hep-th/0504045 Theory +hep-th/0504046 Theory +hep-th/0504049 Theory +hep-th/0504050 Theory +hep-th/0504051 Theory +hep-th/0504055 Theory +hep-th/0504056 Theory +hep-th/0504057 Theory +hep-th/0504059 Theory +hep-th/0504060 Theory +hep-th/0504062 Theory +hep-th/0504065 Theory +hep-th/0504066 Theory +hep-th/0504067 Theory +hep-th/0504068 Theory +hep-th/0504069 Theory +hep-th/0504072 Theory +hep-th/0504073 Theory +hep-th/0504075 Theory +hep-th/0504076 Theory +hep-th/0504077 Theory +hep-th/0504081 Theory +hep-th/0504084 Theory +hep-th/0504086 Theory +hep-th/0504087 Theory +hep-th/0504091 Theory +hep-th/0504092 Theory +hep-th/0504093 Theory +hep-th/0504094 Theory +hep-th/0504097 Theory +hep-th/0504098 Theory +hep-th/0504104 Theory +hep-th/0504105 Theory +hep-th/0504107 Theory +hep-th/0504110 Theory +hep-th/0504117 Theory +hep-th/0504118 Theory +hep-th/0504120 Theory +hep-th/0504121 Theory +hep-th/0504122 Theory +hep-th/0504123 Theory +hep-th/0504125 Theory +hep-th/0504126 Theory +hep-th/0504127 Theory +hep-th/0504128 Theory +hep-th/0504130 Theory +hep-th/0504132 Theory +hep-th/0504133 Theory +hep-th/0504134 Theory +hep-th/0504135 Theory +hep-th/0504137 Theory +hep-th/0504139 Theory +hep-th/0504140 Theory +hep-th/0504144 Theory +hep-th/0504148 Theory +hep-th/0504149 Theory +hep-th/0504151 Theory +hep-th/0504152 Theory +hep-th/0504153 Theory +hep-th/0504155 Theory +hep-th/0504156 Theory +hep-th/0504157 Theory +hep-th/0504159 Theory +hep-th/0504166 Theory +hep-th/0504167 Theory +hep-th/0504168 Theory +hep-th/0504169 Theory +hep-th/0504170 Theory +hep-th/0504171 Theory +hep-th/0504174 Theory +hep-th/0504175 Theory +hep-th/0504176 Theory +hep-th/0504177 Theory +hep-th/0504178 Theory +hep-th/0504181 Theory +hep-th/0504184 Theory +hep-th/0504186 Theory +hep-th/0504187 Theory +hep-th/0504189 Theory +hep-th/0504193 Theory +hep-th/0504196 Theory +hep-th/0504200 Theory +hep-th/0504201 Theory +hep-th/0504202 Theory +hep-th/0504207 Theory +hep-th/0504208 Theory +hep-th/0504209 Theory +hep-th/0504210 Theory +hep-th/0504214 Theory +hep-th/0504215 Theory +hep-th/0504216 Theory +hep-th/0504217 Theory +hep-th/0504218 Theory +hep-th/0504219 Theory +hep-th/0504222 Theory +hep-th/0504223 Theory +hep-th/0504224 Theory +hep-th/0504228 Theory +hep-th/0504229 Theory +hep-th/0504231 Theory +hep-th/0504232 Theory +hep-th/0504233 Theory +hep-th/0505002 Theory +hep-th/0505004 Theory +hep-th/0505008 Theory +hep-th/0505009 Theory +hep-th/0505011 Theory +hep-th/0505012 Theory +hep-th/0505019 Theory +hep-th/0505020 Theory +hep-th/0505024 Theory +hep-th/0505025 Theory +hep-th/0505026 Theory +hep-th/0505027 Theory +hep-th/0505029 Theory +hep-th/0505031 Theory +hep-th/0505033 Theory +hep-th/0505035 Theory +hep-th/0505036 Theory +hep-th/0505037 Theory +hep-th/0505040 Theory +hep-th/0505042 Theory +hep-th/0505043 Theory +hep-th/0505044 Theory +hep-th/0505045 Theory +hep-th/0505046 Theory +hep-th/0505050 Theory +hep-th/0505054 Theory +hep-th/0505057 Theory +hep-th/0505059 Theory +hep-th/0505061 Theory +hep-th/0505064 Theory +hep-th/0505065 Theory +hep-th/0505067 Theory +hep-th/0505072 Theory +hep-th/0505073 Theory +hep-th/0505075 Theory +hep-th/0505077 Theory +hep-th/0505078 Theory +hep-th/0505079 Theory +hep-th/0505081 Theory +hep-th/0505084 Theory +hep-th/0505087 Theory +hep-th/0505089 Theory +hep-th/0505091 Theory +hep-th/0505093 Theory +hep-th/0505094 Theory +hep-th/0505097 Theory +hep-th/0505098 Theory +hep-th/0505099 Theory +hep-th/0505107 Theory +hep-th/0505110 Theory +hep-th/0505111 Theory +hep-th/0505120 Theory +hep-th/0505121 Theory +hep-th/0505122 Theory +hep-th/0505124 Theory +hep-th/0505127 Theory +hep-th/0505128 Theory +hep-th/0505132 Theory +hep-th/0505138 Theory +hep-th/0505142 Theory +hep-th/0505145 Theory +hep-th/0505150 Theory +hep-th/0505152 Theory +hep-th/0505156 Theory +hep-th/0505157 Theory +hep-th/0505158 Theory +hep-th/0505160 Theory +hep-th/0505161 Theory +hep-th/0505164 Theory +hep-th/0505165 Theory +hep-th/0505167 Theory +hep-th/0505168 Theory +hep-th/0505169 Theory +hep-th/0505170 Theory +hep-th/0505171 Theory +hep-th/0505172 Theory +hep-th/0505174 Theory +hep-th/0505175 Theory +hep-th/0505176 Theory +hep-th/0505177 Theory +hep-th/0505178 Theory +hep-th/0505180 Theory +hep-th/0505181 Theory +hep-th/0505182 Theory +hep-th/0505184 Theory +hep-th/0505185 Theory +hep-th/0505188 Theory +hep-th/0505189 Theory +hep-th/0505190 Theory +hep-th/0505191 Theory +hep-th/0505192 Theory +hep-th/0505193 Theory +hep-th/0505194 Theory +hep-th/0505197 Theory +hep-th/0505198 Theory +hep-th/0505200 Theory +hep-th/0505202 Theory +hep-th/0505203 Theory +hep-th/0505204 Theory +hep-th/0505206 Theory +hep-th/0505207 Theory +hep-th/0505211 Theory +hep-th/0505212 Theory +hep-th/0505213 Theory +hep-th/0505214 Theory +hep-th/0505217 Theory +hep-th/0505219 Theory +hep-th/0505220 Theory +hep-th/0505221 Theory +hep-th/0505222 Theory +hep-th/0505225 Theory +hep-th/0505226 Theory +hep-th/0505227 Theory +hep-th/0505228 Theory +hep-th/0505231 Theory +hep-th/0505232 Theory +hep-th/0505237 Theory +hep-th/0505240 Theory +hep-th/0505241 Theory +hep-th/0505243 Theory +hep-th/0505244 Theory +hep-th/0505246 Theory +hep-th/0505247 Theory +hep-th/0505248 Theory +hep-th/0505249 Theory +hep-th/0505250 Theory +hep-th/0505252 Theory +hep-th/0505254 Theory +hep-th/0505255 Theory +hep-th/0505256 Theory +hep-th/0505257 Theory +hep-th/0505258 Theory +hep-th/0505261 Theory +hep-th/0505262 Theory +hep-th/0505264 Theory +hep-th/0505265 Theory +hep-th/0505266 Theory +hep-th/0505268 Theory +hep-th/0505269 Theory +hep-th/0505273 Theory +hep-th/0505274 Theory +hep-th/0505275 Theory +hep-th/0505278 Theory +hep-th/0506001 Theory +hep-th/0506005 Theory +hep-th/0506008 Theory +hep-th/0506009 Theory +hep-th/0506012 Theory +hep-th/0506013 Theory +hep-th/0506016 Theory +hep-th/0506017 Theory +hep-th/0506019 Theory +hep-th/0506020 Theory +hep-th/0506022 Theory +hep-th/0506023 Theory +hep-th/0506024 Theory +hep-th/0506027 Theory +hep-th/0506030 Theory +hep-th/0506031 Theory +hep-th/0506035 Theory +hep-th/0506036 Theory +hep-th/0506037 Theory +hep-th/0506038 Theory +hep-th/0506043 Theory +hep-th/0506044 Theory +hep-th/0506046 Theory +hep-th/0506048 Theory +hep-th/0506049 Theory +hep-th/0506050 Theory +hep-th/0506051 Theory +hep-th/0506052 Theory +hep-th/0506057 Theory +hep-th/0506058 Theory +hep-th/0506059 Theory +hep-th/0506062 Theory +hep-th/0506066 Theory +hep-th/0506067 Theory +hep-th/0506068 Theory +hep-th/0506069 Theory +hep-th/0506074 Theory +hep-th/0506078 Theory +hep-th/0506080 Theory +hep-th/0506081 Theory +hep-th/0506082 Theory +hep-th/0506083 Theory +hep-th/0506085 Theory +hep-th/0506087 Theory +hep-th/0506088 Theory +hep-th/0506089 Theory +hep-th/0506092 Theory +hep-th/0506093 Theory +hep-th/0506102 Theory +hep-th/0506104 Theory +hep-th/0506110 Theory +hep-th/0506112 Theory +hep-th/0506115 Theory +hep-th/0506116 Theory +hep-th/0506117 Theory +hep-th/0506122 Theory +hep-th/0506123 Theory +hep-th/0506126 Theory +hep-th/0506128 Theory +hep-th/0506129 Theory +hep-th/0506130 Theory +hep-th/0506134 Theory +hep-th/0506138 Theory +hep-th/0506140 Theory +hep-th/0506141 Theory +hep-th/0506142 Theory +hep-th/0506144 Theory +hep-th/0506146 Theory +hep-th/0506149 Theory +hep-th/0506150 Theory +hep-th/0506151 Theory +hep-th/0506159 Theory +hep-th/0506160 Theory +hep-th/0506161 Theory +hep-th/0506164 Theory +hep-th/0506165 Theory +hep-th/0506166 Theory +hep-th/0506167 Theory +hep-th/0506171 Theory +hep-th/0506174 Theory +hep-th/0506177 Theory +hep-th/0506179 Theory +hep-th/0506180 Theory +hep-th/0506182 Theory +hep-th/0506187 Theory +hep-th/0506188 Theory +hep-th/0506192 Theory +hep-th/0506196 Theory +hep-th/0506198 Theory +hep-th/0506200 Theory +hep-th/0506202 Theory +hep-th/0506203 Theory +hep-th/0506204 Theory +hep-th/0506205 Theory +hep-th/0506207 Theory +hep-th/0506208 Theory +hep-th/0506210 Theory +hep-th/0506211 Theory +hep-th/0506213 Theory +hep-th/0506214 Theory +hep-th/0506215 Theory +hep-th/0506216 Theory +hep-th/0506219 Theory +hep-th/0506220 Theory +hep-th/0506221 Theory +hep-th/0506222 Theory +hep-th/0506224 Theory +hep-th/0506225 Theory +hep-th/0506226 Theory +hep-th/0506227 Theory +hep-th/0506228 Theory +hep-th/0506229 Theory +hep-th/0506230 Theory +hep-th/0506237 Theory +hep-th/0506238 Theory +hep-th/0506240 Theory +hep-th/0506241 Theory +hep-th/0506245 Theory +hep-th/0506246 Theory +hep-th/0506247 Theory +hep-th/0506248 Theory +hep-th/0506250 Theory +hep-th/0506252 Theory +hep-th/0506254 Theory +hep-th/0506256 Theory +hep-th/0506260 Theory +hep-th/0506266 Theory +hep-th/0506267 Theory +hep-th/0507001 Theory +hep-th/0507003 Theory +hep-th/0507004 Theory +hep-th/0507006 Theory +hep-th/0507009 Theory +hep-th/0507010 Theory +hep-th/0507011 Theory +hep-th/0507012 Theory +hep-th/0507013 Theory +hep-th/0507016 Theory +hep-th/0507018 Theory +hep-th/0507023 Theory +hep-th/0507024 Theory +hep-th/0507025 Theory +hep-th/0507028 Theory +hep-th/0507029 Theory +hep-th/0507031 Theory +hep-th/0507032 Theory +hep-th/0507035 Theory +hep-th/0507036 Theory +hep-th/0507040 Theory +hep-th/0507041 Theory +hep-th/0507042 Theory +hep-th/0507043 Theory +hep-th/0507044 Theory +hep-th/0507046 Theory +hep-th/0507047 Theory +hep-th/0507048 Theory +hep-th/0507049 Theory +hep-th/0507051 Theory +hep-th/0507052 Theory +hep-th/0507054 Theory +hep-th/0507056 Theory +hep-th/0507058 Theory +hep-th/0507064 Theory +hep-th/0507065 Theory +hep-th/0507067 Theory +hep-th/0507070 Theory +hep-th/0507071 Theory +hep-th/0507074 Theory +hep-th/0507075 Theory +hep-th/0507076 Theory +hep-th/0507077 Theory +hep-th/0507078 Theory +hep-th/0507082 Theory +hep-th/0507083 Theory +hep-th/0507085 Theory +hep-th/0507086 Theory +hep-th/0507093 Theory +hep-th/0507096 Theory +hep-th/0507098 Theory +hep-th/0507099 Theory +hep-th/0507100 Theory +hep-th/0507101 Theory +hep-th/0507102 Theory +hep-th/0507105 Theory +hep-th/0507113 Theory +hep-th/0507114 Theory +hep-th/0507117 Theory +hep-th/0507118 Theory +hep-th/0507119 Theory +hep-th/0507121 Theory +hep-th/0507123 Theory +hep-th/0507125 Theory +hep-th/0507126 Theory +hep-th/0507128 Theory +hep-th/0507131 Theory +hep-th/0507132 Theory +hep-th/0507143 Theory +hep-th/0507144 Theory +hep-th/0507147 Theory +hep-th/0507151 Theory +hep-th/0507153 Theory +hep-th/0507155 Theory +hep-th/0507156 Theory +hep-th/0507160 Theory +hep-th/0507161 Theory +hep-th/0507163 Theory +hep-th/0507164 Theory +hep-th/0507165 Theory +hep-th/0507166 Theory +hep-th/0507167 Theory +hep-th/0507170 Theory +hep-th/0507172 Theory +hep-th/0507174 Theory +hep-th/0507175 Theory +hep-th/0507176 Theory +hep-th/0507177 Theory +hep-th/0507178 Theory +hep-th/0507179 Theory +hep-th/0507181 Theory +hep-th/0507183 Theory +hep-th/0507185 Theory +hep-th/0507186 Theory +hep-th/0507187 Theory +hep-th/0507192 Theory +hep-th/0507194 Theory +hep-th/0507195 Theory +hep-th/0507196 Theory +hep-th/0507197 Theory +hep-th/0507198 Theory +hep-th/0507199 Theory +hep-th/0507200 Theory +hep-th/0507212 Theory +hep-th/0507217 Theory +hep-th/0507218 Theory +hep-th/0507220 Theory +hep-th/0507221 Theory +hep-th/0507223 Theory +hep-th/0507224 Theory +hep-th/0507225 Theory +hep-th/0507230 Theory +hep-th/0507231 Theory +hep-th/0507232 Theory +hep-th/0507241 Theory +hep-th/0507242 Theory +hep-th/0507243 Theory +hep-th/0507246 Theory +hep-th/0507247 Theory +hep-th/0507251 Theory +hep-th/0507252 Theory +hep-th/0507256 Theory +hep-th/0507260 Theory +hep-th/0507262 Theory +hep-th/0507263 Theory +hep-th/0507264 Theory +hep-th/0507265 Theory +hep-th/0507267 Theory +hep-th/0507269 Theory +hep-th/0507270 Theory +hep-th/0507271 Theory +hep-th/0507274 Theory +hep-th/0507278 Theory +hep-th/0507279 Theory +hep-th/0507280 Theory +hep-th/0507282 Theory +hep-th/0507284 Theory +hep-th/0507286 Theory +hep-th/0507287 Theory +hep-th/0507289 Theory +hep-th/0507290 Theory +hep-th/0507292 Theory +hep-th/0507293 Theory +hep-th/0508001 Theory +hep-th/0508003 Theory +hep-th/0508005 Theory +hep-th/0508008 Theory +hep-th/0508009 Theory +hep-th/0508011 Theory +hep-th/0508013 Theory +hep-th/0508016 Theory +hep-th/0508019 Theory +hep-th/0508021 Theory +hep-th/0508022 Theory +hep-th/0508025 Theory +hep-th/0508026 Theory +hep-th/0508027 Theory +hep-th/0508029 Theory +hep-th/0508031 Theory +hep-th/0508033 Theory +hep-th/0508038 Theory +hep-th/0508039 Theory +hep-th/0508040 Theory +hep-th/0508041 Theory +hep-th/0508042 Theory +hep-th/0508043 Theory +hep-th/0508047 Theory +hep-th/0508051 Theory +hep-th/0508053 Theory +hep-th/0508054 Theory +hep-th/0508055 Theory +hep-th/0508057 Theory +hep-th/0508059 Theory +hep-th/0508061 Theory +hep-th/0508062 Theory +hep-th/0508064 Theory +hep-th/0508065 Theory +hep-th/0508068 Theory +hep-th/0508071 Theory +hep-th/0508072 Theory +hep-th/0508075 Theory +hep-th/0508076 Theory +hep-th/0508078 Theory +hep-th/0508081 Theory +hep-th/0508082 Theory +hep-th/0508083 Theory +hep-th/0508085 Theory +hep-th/0508088 Theory +hep-th/0508090 Theory +hep-th/0508094 Theory +hep-th/0508097 Theory +hep-th/0508103 Theory +hep-th/0508106 Theory +hep-th/0508108 Theory +hep-th/0508110 Theory +hep-th/0508116 Theory +hep-th/0508118 Theory +hep-th/0508120 Theory +hep-th/0508121 Theory +hep-th/0508122 Theory +hep-th/0508126 Theory +hep-th/0508127 Theory +hep-th/0508131 Theory +hep-th/0508132 Theory +hep-th/0508133 Theory +hep-th/0508136 Theory +hep-th/0508138 Theory +hep-th/0508140 Theory +hep-th/0508142 Theory +hep-th/0508144 Theory +hep-th/0508145 Theory +hep-th/0508148 Theory +hep-th/0508150 Theory +hep-th/0508157 Theory +hep-th/0508159 Theory +hep-th/0508160 Theory +hep-th/0508162 Theory +hep-th/0508165 Theory +hep-th/0508168 Theory +hep-th/0508170 Theory +hep-th/0508172 Theory +hep-th/0508174 Theory +hep-th/0508175 Theory +hep-th/0508176 Theory +hep-th/0508177 Theory +hep-th/0508181 Theory +hep-th/0508183 Theory +hep-th/0508184 Theory +hep-th/0508188 Theory +hep-th/0508191 Theory +hep-th/0508192 Theory +hep-th/0508194 Theory +hep-th/0508195 Theory +hep-th/0508196 Theory +hep-th/0508197 Theory +hep-th/0508198 Theory +hep-th/0508200 Theory +hep-th/0508201 Theory +hep-th/0508202 Theory +hep-th/0508203 Theory +hep-th/0508204 Theory +hep-th/0508207 Theory +hep-th/0508208 Theory +hep-th/0508211 Theory +hep-th/0508216 Theory +hep-th/0508217 Theory +hep-th/0508219 Theory +hep-th/0508221 Theory +hep-th/0508223 Theory +hep-th/0508227 Theory +hep-th/0508228 Theory +hep-th/0508229 Theory +hep-th/0508230 Theory +hep-th/0508236 Theory +hep-th/0508239 Theory +hep-th/0508243 Theory +hep-th/0508244 Theory +hep-th/0508247 Theory +hep-th/0509001 Theory +hep-th/0509002 Theory +hep-th/0509003 Theory +hep-th/0509007 Theory +hep-th/0509008 Theory +hep-th/0509010 Theory +hep-th/0509011 Theory +hep-th/0509013 Theory +hep-th/0509014 Theory +hep-th/0509015 Theory +hep-th/0509016 Theory +hep-th/0509019 Theory +hep-th/0509023 Theory +hep-th/0509025 Theory +hep-th/0509032 Theory +hep-th/0509036 Theory +hep-th/0509040 Theory +hep-th/0509041 Theory +hep-th/0509045 Theory +hep-th/0509046 Theory +hep-th/0509047 Theory +hep-th/0509049 Theory +hep-th/0509056 Theory +hep-th/0509062 Theory +hep-th/0509065 Theory +hep-th/0509066 Theory +hep-th/0509067 Theory +hep-th/0509070 Theory +hep-th/0509072 Theory +hep-th/0509073 Theory +hep-th/0509076 Theory +hep-th/0509079 Theory +hep-th/0509082 Theory +hep-th/0509086 Theory +hep-th/0509089 Theory +hep-th/0509092 Theory +hep-th/0509093 Theory +hep-th/0509094 Theory +hep-th/0509095 Theory +hep-th/0509096 Theory +hep-th/0509100 Theory +hep-th/0509102 Theory +hep-th/0509104 Theory +hep-th/0509106 Theory +hep-th/0509107 Theory +hep-th/0509108 Theory +hep-th/0509111 Theory +hep-th/0509120 Theory +hep-th/0509121 Theory +hep-th/0509130 Theory +hep-th/0509132 Theory +hep-th/0509136 Theory +hep-th/0509140 Theory +hep-th/0509144 Theory +hep-th/0509146 Theory +hep-th/0509149 Theory +hep-th/0509152 Theory +hep-th/0509153 Theory +hep-th/0509156 Theory +hep-th/0509158 Theory +hep-th/0509160 Theory +hep-th/0509164 Theory +hep-th/0509165 Theory +hep-th/0509169 Theory +hep-th/0509171 Theory +hep-th/0509172 Theory +hep-th/0509179 Theory +hep-th/0509185 Theory +hep-th/0509188 Theory +hep-th/0509191 Theory +hep-th/0509194 Theory +hep-th/0509195 Theory +hep-th/0509196 Theory +hep-th/0509200 Theory +hep-th/0509201 Theory +hep-th/0509203 Theory +hep-th/0509204 Theory +hep-th/0509206 Theory +hep-th/0509207 Theory +hep-th/0509209 Theory +hep-th/0509211 Theory +hep-th/0509213 Theory +hep-th/0509214 Theory +hep-th/0509217 Theory +hep-th/0509219 Theory +hep-th/0509220 Theory +hep-th/0509226 Theory +hep-th/0509228 Theory +hep-th/0509229 Theory +hep-th/0509232 Theory +hep-th/0509234 Theory +hep-th/0510004 Theory +hep-th/0510009 Theory +hep-th/0510010 Theory +hep-th/0510018 Theory +hep-th/0510019 Theory +hep-th/0510020 Theory +hep-th/0510023 Theory +hep-th/0510026 Theory +hep-th/0510027 Theory +hep-th/0510030 Theory +hep-th/0510033 Theory +hep-th/0510034 Theory +hep-th/0510035 Theory +hep-th/0510047 Theory +hep-th/0510048 Theory +hep-th/0510051 Theory +hep-th/0510059 Theory +hep-th/0510060 Theory +hep-th/0510061 Theory +hep-th/0510071 Theory +hep-th/0510073 Theory +hep-th/0510077 Theory +hep-th/0510080 Theory +hep-th/0510083 Theory +hep-th/0510084 Theory +hep-th/0510087 Theory +hep-th/0510088 Theory +hep-th/0510091 Theory +hep-th/0510092 Theory +hep-th/0510093 Theory +hep-th/0510094 Theory +hep-th/0510095 Theory +hep-th/0510097 Theory +hep-th/0510099 Theory +hep-th/0510100 Theory +hep-th/0510101 Theory +hep-th/0510104 Theory +hep-th/0510105 Theory +hep-th/0510106 Theory +hep-th/0510107 Theory +hep-th/0510108 Theory +hep-th/0510110 Theory +hep-th/0510111 Theory +hep-th/0510112 Theory +hep-th/0510114 Theory +hep-th/0510118 Theory +hep-th/0510120 Theory +hep-th/0510123 Theory +hep-th/0510125 Theory +hep-th/0510127 Theory +hep-th/0510132 Theory +hep-th/0510133 Theory +hep-th/0510135 Theory +hep-th/0510136 Theory +hep-th/0510137 Theory +hep-th/0510138 Theory +hep-th/0510144 Theory +hep-th/0510146 Theory +hep-th/0510147 Theory +hep-th/0510150 Theory +hep-th/0510152 Theory +hep-th/0510153 Theory +hep-th/0510154 Theory +hep-th/0510158 Theory +hep-th/0510164 Theory +hep-th/0510167 Theory +hep-th/0510169 Theory +hep-th/0510172 Theory +hep-th/0510173 Theory +hep-th/0510174 Theory +hep-th/0510175 Theory +hep-th/0510176 Theory +hep-th/0510180 Theory +hep-th/0510181 Theory +hep-th/0510184 Theory +hep-th/0510186 Theory +hep-th/0510187 Theory +hep-th/0510189 Theory +hep-th/0510192 Theory +hep-th/0510194 Theory +hep-th/0510195 Theory +hep-th/0510200 Theory +hep-th/0510205 Theory +hep-th/0510207 Theory +hep-th/0510208 Theory +hep-th/0510211 Theory +hep-th/0510213 Theory +hep-th/0510218 Theory +hep-th/0510221 Theory +hep-th/0510224 Theory +hep-th/0510225 Theory +hep-th/0510227 Theory +hep-th/0510228 Theory +hep-th/0510229 Theory +hep-th/0510230 Theory +hep-th/0510233 Theory +hep-th/0510234 Theory +hep-th/0510236 Theory +hep-th/0510239 Theory +hep-th/0510241 Theory +hep-th/0510243 Theory +hep-th/0510244 Theory +hep-th/0510248 Theory +hep-th/0510250 Theory +hep-th/0510253 Theory +hep-th/0510254 Theory +hep-th/0510256 Theory +hep-th/0510260 Theory +hep-th/0510261 Theory +hep-th/0510264 Theory +hep-th/0510266 Theory +hep-th/0510269 Theory +hep-th/0510271 Theory +hep-th/0510272 Theory +hep-th/0511001 Theory +hep-th/0511005 Theory +hep-th/0511006 Theory +hep-th/0511007 Theory +hep-th/0511012 Theory +hep-th/0511016 Theory +hep-th/0511018 Theory +hep-th/0511019 Theory +hep-th/0511021 Theory +hep-th/0511023 Theory +hep-th/0511024 Theory +hep-th/0511026 Theory +hep-th/0511029 Theory +hep-th/0511031 Theory +hep-th/0511032 Theory +hep-th/0511034 Theory +hep-th/0511035 Theory +hep-th/0511036 Theory +hep-th/0511044 Theory +hep-th/0511045 Theory +hep-th/0511046 Theory +hep-th/0511047 Theory +hep-th/0511048 Theory +hep-th/0511049 Theory +hep-th/0511050 Theory +hep-th/0511051 Theory +hep-th/0511053 Theory +hep-th/0511061 Theory +hep-th/0511064 Theory +hep-th/0511065 Theory +hep-th/0511070 Theory +hep-th/0511071 Theory +hep-th/0511072 Theory +hep-th/0511087 Theory +hep-th/0511090 Theory +hep-th/0511091 Theory +hep-th/0511092 Theory +hep-th/0511093 Theory +hep-th/0511096 Theory +hep-th/0511103 Theory +hep-th/0511104 Theory +hep-th/0511105 Theory +hep-th/0511106 Theory +hep-th/0511107 Theory +hep-th/0511108 Theory +hep-th/0511109 Theory +hep-th/0511110 Theory +hep-th/0511112 Theory +hep-th/0511113 Theory +hep-th/0511115 Theory +hep-th/0511117 Theory +hep-th/0511120 Theory +hep-th/0511126 Theory +hep-th/0511127 Theory +hep-th/0511128 Theory +hep-th/0511129 Theory +hep-th/0511130 Theory +hep-th/0511131 Theory +hep-th/0511132 Theory +hep-th/0511135 Theory +hep-th/0511138 Theory +hep-th/0511139 Theory +hep-th/0511142 Theory +hep-th/0511144 Theory +hep-th/0511145 Theory +hep-th/0511146 Theory +hep-th/0511153 Theory +hep-th/0511156 Theory +hep-th/0511158 Theory +hep-th/0511162 Theory +hep-th/0511165 Theory +hep-th/0511166 Theory +hep-th/0511169 Theory +hep-th/0511171 Theory +hep-th/0511174 Theory +hep-th/0511177 Theory +hep-th/0511181 Theory +hep-th/0511182 Theory +hep-th/0511184 Theory +hep-th/0511186 Theory +hep-th/0511188 Theory +hep-th/0511189 Theory +hep-th/0511190 Theory +hep-th/0511191 Theory +hep-th/0511193 Theory +hep-th/0511194 Theory +hep-th/0511195 Theory +hep-th/0511196 Theory +hep-th/0511201 Theory +hep-th/0511204 Theory +hep-th/0511207 Theory +hep-th/0511214 Theory +hep-th/0511215 Theory +hep-th/0511216 Theory +hep-th/0511217 Theory +hep-th/0511218 Theory +hep-th/0511220 Theory +hep-th/0511221 Theory +hep-th/0511222 Theory +hep-th/0511223 Theory +hep-th/0511225 Theory +hep-th/0511228 Theory +hep-th/0511229 Theory +hep-th/0511233 Theory +hep-th/0511242 Theory +hep-th/0511243 Theory +hep-th/0511244 Theory +hep-th/0511247 Theory +hep-th/0511250 Theory +hep-th/0511253 Theory +hep-th/0511254 Theory +hep-th/0511255 Theory +hep-th/0511261 Theory +hep-th/0511264 Theory +hep-th/0511265 Theory +hep-th/0511267 Theory +hep-th/0511268 Theory +hep-th/0511269 Theory +hep-th/0511270 Theory +hep-th/0511272 Theory +hep-th/0511273 Theory +hep-th/0511274 Theory +hep-th/0511275 Theory +hep-th/0511277 Theory +hep-th/0511283 Theory +hep-th/0511285 Theory +hep-th/0511290 Theory +hep-th/0511294 Theory +hep-th/0511295 Theory +hep-th/0511297 Theory +hep-th/0511302 Theory +hep-th/0511304 Theory +hep-th/0511306 Theory +hep-th/0512001 Theory +hep-th/0512002 Theory +hep-th/0512007 Theory +hep-th/0512011 Theory +hep-th/0512012 Theory +hep-th/0512016 Theory +hep-th/0512018 Theory +hep-th/0512019 Theory +hep-th/0512023 Theory +hep-th/0512024 Theory +hep-th/0512028 Theory +hep-th/0512029 Theory +hep-th/0512031 Theory +hep-th/0512033 Theory +hep-th/0512036 Theory +hep-th/0512037 Theory +hep-th/0512047 Theory +hep-th/0512050 Theory +hep-th/0512051 Theory +hep-th/0512052 Theory +hep-th/0512053 Theory +hep-th/0512057 Theory +hep-th/0512066 Theory +hep-th/0512069 Theory +hep-th/0512072 Theory +hep-th/0512073 Theory +hep-th/0512076 Theory +hep-th/0512082 Theory +hep-th/0512083 Theory +hep-th/0512086 Theory +hep-th/0512087 Theory +hep-th/0512088 Theory +hep-th/0512089 Theory +hep-th/0512092 Theory +hep-th/0512093 Theory +hep-th/0512100 Theory +hep-th/0512104 Theory +hep-th/0512105 Theory +hep-th/0512106 Theory +hep-th/0512109 Theory +hep-th/0512112 Theory +hep-th/0512116 Theory +hep-th/0512119 Theory +hep-th/0512121 Theory +hep-th/0512125 Theory +hep-th/0512126 Theory +hep-th/0512135 Theory +hep-th/0512138 Theory +hep-th/0512145 Theory +hep-th/0512146 Theory +hep-th/0512148 Theory +hep-th/0512153 Theory +hep-th/0512155 Theory +hep-th/0512157 Theory +hep-th/0512158 Theory +hep-th/0512166 Theory +hep-th/0512169 Theory +hep-th/0512170 Theory +hep-th/0512173 Theory +hep-th/0512178 Theory +hep-th/0512189 Theory +hep-th/0512191 Theory +hep-th/0512192 Theory +hep-th/0512194 Theory +hep-th/0512196 Theory +hep-th/0512204 Theory +hep-th/0512206 Theory +hep-th/0512207 Theory +hep-th/0512212 Theory +hep-th/0512216 Theory +hep-th/0512217 Theory +hep-th/0512218 Theory +hep-th/0512220 Theory +hep-th/0512222 Theory +hep-th/0512223 Theory +hep-th/0512230 Theory +hep-th/0512233 Theory +hep-th/0512238 Theory +hep-th/0512239 Theory +hep-th/0512240 Theory +hep-th/0512243 Theory +hep-th/0512244 Theory +hep-th/0512245 Theory +hep-th/0512246 Theory +hep-th/0512247 Theory +hep-th/0512251 Theory +hep-th/0512252 Theory +hep-th/0512253 Theory +hep-th/0512258 Theory +hep-th/0512259 Theory +hep-th/0512260 Theory +hep-th/0512264 Theory +hep-th/0512266 Theory +hep-th/0512268 Theory +hep-th/0512269 Theory +hep-th/0512270 Theory +hep-th/0512271 Theory +hep-th/0512274 Theory +hep-th/0512276 Theory +hep-th/0512277 Theory +hep-th/0512279 Theory +hep-th/0512282 Theory +hep-th/0512286 Theory +hep-th/0512287 Theory +hep-th/0512288 Theory +hep-th/0512290 Theory +hep-th/0512292 Theory +hep-th/0512293 Theory +hep-th/0512294 Theory +hep-th/0512300 Theory +hep-th/0512302 Theory +hep-th/0512304 Theory +hep-th/0512309 Theory +hep-th/0512311 Theory +hep-th/0512312 Theory +hep-th/0512321 Theory +hep-th/0512326 Theory +hep-th/0512332 Theory +hep-th/0512335 Theory +hep-th/0512339 Theory +hep-th/0512341 Theory +hep-th/0512347 Theory +hep-th/0512354 Theory +hep-th/0601009 Theory +hep-th/0601016 Theory +hep-th/0601018 Theory +hep-th/0601021 Theory +hep-th/0601024 Theory +hep-th/0601026 Theory +hep-th/0601029 Theory +hep-th/0601031 Theory +hep-th/0601033 Theory +hep-th/0601038 Theory +hep-th/0601041 Theory +hep-th/0601047 Theory +hep-th/0601049 Theory +hep-th/0601052 Theory +hep-th/0601053 Theory +hep-th/0601055 Theory +hep-th/0601060 Theory +hep-th/0601063 Theory +hep-th/0601068 Theory +hep-th/0601069 Theory +hep-th/0601072 Theory +hep-th/0601073 Theory +hep-th/0601081 Theory +hep-th/0601088 Theory +hep-th/0601092 Theory +hep-th/0601108 Theory +hep-th/0601109 Theory +hep-th/0601110 Theory +hep-th/0601111 Theory +hep-th/0601116 Theory +hep-th/0601121 Theory +hep-th/0601123 Theory +hep-th/0601128 Theory +hep-th/0601130 Theory +hep-th/0601133 Theory +hep-th/0601135 Theory +hep-th/0601137 Theory +hep-th/0601142 Theory +hep-th/0601144 Theory +hep-th/0601150 Theory +hep-th/0601151 Theory +hep-th/0601152 Theory +hep-th/0601159 Theory +hep-th/0601162 Theory +hep-th/0601164 Theory +hep-th/0601170 Theory +hep-th/0601171 Theory +hep-th/0601176 Theory +hep-th/0601179 Theory +hep-th/0601180 Theory +hep-th/0601183 Theory +hep-th/0601190 Theory +hep-th/0601191 Theory +hep-th/0601192 Theory +hep-th/0601194 Theory +hep-th/0601195 Theory +hep-th/0601196 Theory +hep-th/0601202 Theory +hep-th/0601203 Theory +hep-th/0601205 Theory +hep-th/0601206 Theory +hep-th/0601210 Theory +hep-th/0601212 Theory +hep-th/0601214 Theory +hep-th/0601215 Theory +hep-th/0601221 Theory +hep-th/0601223 Theory +hep-th/0601226 Theory +hep-th/0601228 Theory +hep-th/0601231 Theory +hep-th/0601235 Theory +hep-th/0602003 Theory +hep-th/0602004 Theory +hep-th/0602006 Theory +hep-th/0602012 Theory +hep-th/0602013 Theory +hep-th/0602014 Theory +hep-th/0602016 Theory +hep-th/0602020 Theory +hep-th/0602021 Theory +hep-th/0602022 Theory +hep-th/0602025 Theory +hep-th/0602032 Theory +hep-th/0602033 Theory +hep-th/0602034 Theory +hep-th/0602035 Theory +hep-th/0602036 Theory +hep-th/0602037 Theory +hep-th/0602038 Theory +hep-th/0602041 Theory +hep-th/0602044 Theory +hep-th/0602045 Theory +hep-th/0602048 Theory +hep-th/0602049 Theory +hep-th/0602057 Theory +hep-th/0602059 Theory +hep-th/0602060 Theory +hep-th/0602063 Theory +hep-th/0602073 Theory +hep-th/0602074 Theory +hep-th/0602084 Theory +hep-th/0602085 Theory +hep-th/0602088 Theory +hep-th/0602090 Theory +hep-th/0602091 Theory +hep-th/0602092 Theory +hep-th/0602093 Theory +hep-th/0602097 Theory +hep-th/0602103 Theory +hep-th/0602108 Theory +hep-th/0602118 Theory +hep-th/0602119 Theory +hep-th/0602120 Theory +hep-th/0602122 Theory +hep-th/0602124 Theory +hep-th/0602125 Theory +hep-th/0602126 Theory +hep-th/0602128 Theory +hep-th/0602132 Theory +hep-th/0602135 Theory +hep-th/0602136 Theory +hep-th/0602137 Theory +hep-th/0602139 Theory +hep-th/0602141 Theory +hep-th/0602142 Theory +hep-th/0602143 Theory +hep-th/0602146 Theory +hep-th/0602147 Theory +hep-th/0602150 Theory +hep-th/0602152 Theory +hep-th/0602162 Theory +hep-th/0602163 Theory +hep-th/0602164 Theory +hep-th/0602166 Theory +hep-th/0602168 Theory +hep-th/0602169 Theory +hep-th/0602174 Theory +hep-th/0602177 Theory +hep-th/0602178 Theory +hep-th/0602185 Theory +hep-th/0602186 Theory +hep-th/0602188 Theory +hep-th/0602193 Theory +hep-th/0602197 Theory +hep-th/0602202 Theory +hep-th/0602206 Theory +hep-th/0602207 Theory +hep-th/0602211 Theory +hep-th/0602215 Theory +hep-th/0602218 Theory +hep-th/0602220 Theory +hep-th/0602221 Theory +hep-th/0602223 Theory +hep-th/0602226 Theory +hep-th/0602231 Theory +hep-th/0602234 Theory +hep-th/0602235 Theory +hep-th/0602239 Theory +hep-th/0602246 Theory +hep-th/0602249 Theory +hep-th/0602250 Theory +hep-th/0602251 Theory +hep-th/0602254 Theory +hep-th/0602255 Theory +hep-th/0602258 Theory +hep-th/0602262 Theory +hep-th/0602263 Theory +hep-th/0602270 Theory +hep-th/0602271 Theory +hep-th/0602280 Theory +hep-th/0602281 Theory +hep-th/0602283 Theory +hep-th/0602291 Theory +hep-th/0602293 Theory +hep-th/0602294 Theory +hep-th/0603004 Theory +hep-th/0603008 Theory +hep-th/0603010 Theory +hep-th/0603016 Theory +hep-th/0603028 Theory +hep-th/0603030 Theory +hep-th/0603036 Theory +hep-th/0603044 Theory +hep-th/0603046 Theory +hep-th/0603048 Theory +hep-th/0603052 Theory +hep-th/0603058 Theory +hep-th/0603063 Theory +hep-th/0603067 Theory +hep-th/0603075 Theory +hep-th/0603076 Theory +hep-th/0603079 Theory +hep-th/0603081 Theory +hep-th/0603084 Theory +hep-th/0603088 Theory +hep-th/0603089 Theory +hep-th/0603093 Theory +hep-th/0603094 Theory +hep-th/0603097 Theory +hep-th/0603100 Theory +hep-th/0603104 Theory +hep-th/0603107 Theory +hep-th/0603108 Theory +hep-th/0603109 Theory +hep-th/0603110 Theory +hep-th/0603113 Theory +hep-th/0603119 Theory +hep-th/0603121 Theory +hep-th/0603127 Theory +hep-th/0603128 Theory +hep-th/0603138 Theory +hep-th/0603141 Theory +hep-th/0603142 Theory +hep-th/0603144 Theory +hep-th/0603149 Theory +hep-th/0603152 Theory +hep-th/0603153 Theory +hep-th/0603159 Theory +hep-th/0603161 Theory +hep-th/0603166 Theory +hep-th/0603168 Theory +hep-th/0603170 Theory +hep-th/0603173 Theory +hep-th/0603175 Theory +hep-th/0603177 Theory +hep-th/0603178 Theory +hep-th/0603188 Theory +hep-th/0603191 Theory +hep-th/0603193 Theory +hep-th/0603196 Theory +hep-th/0603198 Theory +hep-th/0603204 Theory +hep-th/0603207 Theory +hep-th/0603208 Theory +hep-th/0603210 Theory +hep-th/0603217 Theory +hep-th/0603218 Theory +hep-th/0603229 Theory +hep-th/0603230 Theory +hep-th/0603233 Theory +hep-th/0603244 Theory +hep-th/0603245 Theory +hep-th/0603253 Theory +hep-th/0604006 Theory +hep-th/0604007 Theory +hep-th/0604011 Theory +hep-th/0604015 Theory +hep-th/0604020 Theory +hep-th/0604021 Theory +hep-th/0604033 Theory +hep-th/0604034 Theory +hep-th/0604044 Theory +hep-th/0604045 Theory +hep-th/0604046 Theory +hep-th/0604052 Theory +hep-th/0604054 Theory +hep-th/0604055 Theory +hep-th/0604058 Theory +hep-th/0604061 Theory +hep-th/0604062 Theory +hep-th/0604067 Theory +hep-th/0604078 Theory +hep-th/0604081 Theory +hep-th/0604083 Theory +hep-th/0604084 Theory +hep-th/0604085 Theory +hep-th/0604086 Theory +hep-th/0604087 Theory +hep-th/0604089 Theory +hep-th/0604090 Theory +hep-th/0604097 Theory +hep-th/0604100 Theory +hep-th/0604102 Theory +hep-th/0604103 Theory +hep-th/0604111 Theory +hep-th/0604115 Theory +hep-th/0604123 Theory +hep-th/0604124 Theory +hep-th/0604133 Theory +hep-th/0604135 Theory +hep-th/0604136 Theory +hep-th/0604140 Theory +hep-th/0604143 Theory +hep-th/0604144 Theory +hep-th/0604148 Theory +hep-th/0604149 Theory +hep-th/0604154 Theory +hep-th/0604155 Theory +hep-th/0604165 Theory +hep-th/0604169 Theory +hep-th/0604175 Theory +hep-th/0604180 Theory +hep-th/0604186 Theory +hep-th/0604189 Theory +hep-th/0604190 Theory +hep-th/0604192 Theory +hep-th/0604193 Theory +hep-th/0604194 Theory +hep-th/0604195 Theory +hep-th/0604197 Theory +hep-th/0604198 Theory +hep-th/0604205 Theory +hep-th/0604209 Theory +hep-th/0604216 Theory +hep-th/0604218 Theory +hep-th/0604219 Theory +hep-th/0605013 Theory +hep-th/0605014 Theory +hep-th/0605015 Theory +hep-th/0605017 Theory +hep-th/0605018 Theory +hep-th/0605020 Theory +hep-th/0605030 Theory +hep-th/0605031 Theory +hep-th/0605036 Theory +hep-th/0605045 Theory +hep-th/0605060 Theory +hep-th/0605061 Theory +hep-th/0605067 Theory +hep-th/0605068 Theory +hep-th/0605075 Theory +hep-th/0605079 Theory +hep-th/0605086 Theory +hep-th/0605092 Theory +hep-th/0605093 Theory +hep-th/0605094 Theory +hep-th/0605095 Theory +hep-th/0605096 Theory +hep-th/0605097 Theory +hep-th/0605098 Theory +hep-th/0605099 Theory +hep-th/0605106 Theory +hep-th/0605108 Theory +hep-th/0605111 Theory +hep-th/0605114 Theory +hep-th/0605116 Theory +hep-th/0605117 Theory +hep-th/0605118 Theory +hep-th/0605121 Theory +hep-th/0605122 Theory +hep-th/0605124 Theory +hep-th/0605125 Theory +hep-th/0605128 Theory +hep-th/0605130 Theory +hep-th/0605132 Theory +hep-th/0605138 Theory +hep-th/0605145 Theory +hep-th/0605146 Theory +hep-th/0605147 Theory +hep-th/0605155 Theory +hep-th/0605157 Theory +hep-th/0605158 Theory +hep-th/0605160 Theory +hep-th/0605163 Theory +hep-th/0605166 Theory +hep-th/0605170 Theory +hep-th/0605178 Theory +hep-th/0605181 Theory +hep-th/0605188 Theory +hep-th/0605189 Theory +hep-th/0605191 Theory +hep-th/0605199 Theory +hep-th/0605208 Theory +hep-th/0605209 Theory +hep-th/0605210 Theory +hep-th/0605212 Theory +hep-th/0605221 Theory +hep-th/0605225 Theory +hep-th/0605229 Theory +hep-th/0605230 Theory +hep-th/0605231 Theory +hep-th/0605234 Theory +hep-th/0605235 Theory +hep-th/0605237 Theory +hep-th/0605242 Theory +hep-th/0605247 Theory +hep-th/0605249 Theory +hep-th/0605256 Theory +hep-th/0605257 Theory +hep-th/0605259 Theory +hep-th/0605260 Theory +hep-th/0605261 Theory +hep-th/0605279 Theory +hep-th/0605280 Theory +hep-th/0605282 Theory +hep-th/0605284 Theory +hep-th/0605287 Theory +hep-th/0605292 Theory +hep-th/0605293 Theory +hep-th/0605294 Theory +hep-th/0606002 Theory +hep-th/0606006 Theory +hep-th/0606008 Theory +hep-th/0606012 Theory +hep-th/0606013 Theory +hep-th/0606014 Theory +hep-th/0606015 Theory +hep-th/0606021 Theory +hep-th/0606022 Theory +hep-th/0606027 Theory +hep-th/0606040 Theory +hep-th/0606044 Theory +hep-th/0606049 Theory +hep-th/0606051 Theory +hep-th/0606057 Theory +hep-th/0606058 Theory +hep-th/0606059 Theory +hep-th/0606062 Theory +hep-th/0606063 Theory +hep-th/0606066 Theory +hep-th/0606067 Theory +hep-th/0606069 Theory +hep-th/0606075 Theory +hep-th/0606077 Theory +hep-th/0606079 Theory +hep-th/0606082 Theory +hep-th/0606083 Theory +hep-th/0606085 Theory +hep-th/0606086 Theory +hep-th/0606089 Theory +hep-th/0606090 Theory +hep-th/0606096 Theory +hep-th/0606097 Theory +hep-th/0606103 Theory +hep-th/0606110 Theory +hep-th/0606111 Theory +hep-th/0606113 Theory +hep-th/0606123 Theory +hep-th/0606132 Theory +hep-th/0606133 Theory +hep-th/0606134 Theory +hep-th/0606135 Theory +hep-th/0606137 Theory +hep-th/0606138 Theory +hep-th/0606140 Theory +hep-th/0606145 Theory +hep-th/0606148 Theory +hep-th/0606154 Theory +hep-th/0606156 Theory +hep-th/0606161 Theory +hep-th/0606162 Theory +hep-th/0606173 Theory +hep-th/0606185 Theory +hep-th/0606188 Theory +hep-th/0606193 Theory +hep-th/0606203 Theory +hep-th/0606205 Theory +hep-th/0606209 Theory +hep-th/0606216 Theory +hep-th/0606220 Theory +hep-th/0606226 Theory +hep-th/0606230 Theory +hep-th/0606233 Theory +hep-th/0606238 Theory +hep-th/0606248 Theory +hep-th/0606251 Theory +hep-th/0606252 Theory +hep-th/0606253 Theory +hep-th/0606257 Theory +hep-th/0606259 Theory +hep-th/0606264 Theory +hep-th/0606269 Theory +hep-th/0606270 Theory +hep-th/0606271 Theory +hep-th/0606273 Theory +hep-th/0606274 Theory +hep-th/0606277 Theory +hep-th/0606278 Theory +hep-th/0606279 Theory +hep-th/0607002 Theory +hep-th/0607003 Theory +hep-th/0607008 Theory +hep-th/0607009 Theory +hep-th/0607030 Theory +hep-th/0607033 Theory +hep-th/0607034 Theory +hep-th/0607035 Theory +hep-th/0607036 Theory +hep-th/0607044 Theory +hep-th/0607045 Theory +hep-th/0607051 Theory +hep-th/0607056 Theory +hep-th/0607057 Theory +hep-th/0607060 Theory +hep-th/0607064 Theory +hep-th/0607065 Theory +hep-th/0607075 Theory +hep-th/0607076 Theory +hep-th/0607077 Theory +hep-th/0607082 Theory +hep-th/0607084 Theory +hep-th/0607085 Theory +hep-th/0607089 Theory +hep-th/0607090 Theory +hep-th/0607091 Theory +hep-th/0607093 Theory +hep-th/0607095 Theory +hep-th/0607099 Theory +hep-th/0607104 Theory +hep-th/0607105 Theory +hep-th/0607109 Theory +hep-th/0607110 Theory +hep-th/0607115 Theory +hep-th/0607123 Theory +hep-th/0607124 Theory +hep-th/0607129 Theory +hep-th/0607131 Theory +hep-th/0607135 Theory +hep-th/0607136 Theory +hep-th/0607137 Theory +hep-th/0607143 Theory +hep-th/0607146 Theory +hep-th/0607152 Theory +hep-th/0607153 Theory +hep-th/0607155 Theory +hep-th/0607156 Theory +hep-th/0607157 Theory +hep-th/0607161 Theory +hep-th/0607162 Theory +hep-th/0607165 Theory +hep-th/0607169 Theory +hep-th/0607171 Theory +hep-th/0607174 Theory +hep-th/0607176 Theory +hep-th/0607178 Theory +hep-th/0607181 Theory +hep-th/0607184 Theory +hep-th/0607185 Theory +hep-th/0607186 Theory +hep-th/0607187 Theory +hep-th/0607188 Theory +hep-th/0607192 Theory +hep-th/0607205 Theory +hep-th/0607206 Theory +hep-th/0607218 Theory +hep-th/0607219 Theory +hep-th/0607222 Theory +hep-th/0607224 Theory +hep-th/0607226 Theory +hep-th/0607227 Theory +hep-th/0607229 Theory +hep-th/0607233 Theory +hep-th/0607237 Theory +hep-th/0607244 Theory +hep-th/0608006 Theory +hep-th/0608009 Theory +hep-th/0608010 Theory +hep-th/0608026 Theory +hep-th/0608029 Theory +hep-th/0608034 Theory +hep-th/0608035 Theory +hep-th/0608038 Theory +hep-th/0608044 Theory +hep-th/0608047 Theory +hep-th/0608051 Theory +hep-th/0608054 Theory +hep-th/0608057 Theory +hep-th/0608059 Theory +hep-th/0608063 Theory +hep-th/0608076 Theory +hep-th/0608077 Theory +hep-th/0608082 Theory +hep-th/0608088 Theory +hep-th/0608096 Theory +hep-th/0608099 Theory +hep-th/0608101 Theory +hep-th/0608128 Theory +hep-th/0608141 Theory +hep-th/0608143 Theory +hep-th/0608145 Theory +hep-th/0608146 Theory +hep-th/0608157 Theory +hep-th/0608162 Theory +hep-th/0608182 Theory +hep-th/0608184 Theory +hep-th/0608200 Theory +hep-th/0608201 Theory +hep-th/0608207 Theory +hep-th/0608208 Theory +hep-th/0608209 Theory +hep-th/0608212 Theory +hep-th/0608217 Theory +hep-th/0608223 Theory +hep-th/0608226 Theory +hep-th/0609007 Theory +hep-th/0609012 Theory +hep-th/0609037 Theory +hep-th/0609043 Theory +hep-th/0609057 Theory +hep-th/0609058 Theory +hep-th/0609060 Theory +hep-th/0609062 Theory +hep-th/0609065 Theory +hep-th/0609105 Theory +hep-th/0609109 Theory +hep-th/0609120 Theory +hep-th/0609122 Theory +hep-th/0609146 Theory +hep-th/0609163 Theory +hep-th/0609165 Theory +hep-th/0609173 Theory +hep-th/0609194 Theory +hep-th/0609202 Theory +hep-th/0609207 Theory +hep-th/0609211 Theory +hep-th/0609213 Theory +hep-th/0609216 Theory +hep-th/0609221 Theory +hep-th/0610003 Theory +hep-th/0610004 Theory +hep-th/0610020 Theory +hep-th/0610037 Theory +hep-th/0610038 Theory +hep-th/0610043 Theory +hep-th/0610049 Theory +hep-th/0610057 Theory +hep-th/0610060 Theory +hep-th/0610066 Theory +hep-th/0610072 Theory +hep-th/0610075 Theory +hep-th/0610086 Theory +hep-th/0610113 Theory +hep-th/0610119 Theory +hep-th/0610131 Theory +hep-th/0610154 Theory +hep-th/0610158 Theory +hep-th/0610170 Theory +hep-th/0610212 Theory +hep-th/0610214 Theory +hep-th/0610222 Theory +hep-th/0610233 Theory +hep-th/0610265 Theory +hep-th/0610269 Theory +hep-th/0610270 Theory +hep-th/0610276 Theory +hep-th/0610331 Theory +hep-th/0610334 Theory +hep-th/0611043 Theory +hep-th/0611074 Theory +hep-th/0611102 Theory +hep-th/0611137 Theory +hep-th/0611143 Theory +hep-th/0611165 Theory +hep-th/0611166 Theory +hep-th/0611183 Theory +hep-th/0611211 Theory +hep-th/0611228 Theory +hep-th/0611254 Theory +hep-th/0611290 Theory +hep-th/0611295 Theory +hep-th/0612038 Theory +hep-th/0612043 Theory +hep-th/0612132 Theory +hep-th/0612254 Theory +math-ph/0501003 +math-ph/0501004 +math-ph/0501006 +math-ph/0501017 +math-ph/0501019 +math-ph/0501025 +math-ph/0501031 +math-ph/0501040 +math-ph/0501042 +math-ph/0501043 +math-ph/0501044 +math-ph/0501047 +math-ph/0501048 +math-ph/0501049 +math-ph/0501050 +math-ph/0501054 +math-ph/0501065 +math-ph/0502008 +math-ph/0502012 +math-ph/0502013 +math-ph/0502014 +math-ph/0502017 +math-ph/0502022 +math-ph/0502026 +math-ph/0502029 +math-ph/0502030 +math-ph/0502033 +math-ph/0502040 +math-ph/0502043 +math-ph/0502050 +math-ph/0502053 +math-ph/0503014 +math-ph/0503018 +math-ph/0503023 +math-ph/0503038 +math-ph/0503040 +math-ph/0503044 +math-ph/0503045 +math-ph/0503049 +math-ph/0503053 +math-ph/0503057 +math-ph/0503060 +math-ph/0503061 +math-ph/0503066 +math-ph/0503068 +math-ph/0503071 +math-ph/0503073 +math-ph/0504010 +math-ph/0504013 +math-ph/0504022 +math-ph/0504024 +math-ph/0504028 +math-ph/0504029 +math-ph/0504031 +math-ph/0504032 +math-ph/0504037 +math-ph/0504042 +math-ph/0504049 +math-ph/0504053 +math-ph/0504055 +math-ph/0504056 +math-ph/0504060 +math-ph/0504064 +math-ph/0504068 +math-ph/0504070 +math-ph/0504074 +math-ph/0504075 +math-ph/0505005 +math-ph/0505009 +math-ph/0505014 +math-ph/0505019 +math-ph/0505020 +math-ph/0505025 +math-ph/0505026 +math-ph/0505027 +math-ph/0505032 +math-ph/0505046 +math-ph/0505052 +math-ph/0505056 +math-ph/0505060 +math-ph/0505062 +math-ph/0505064 +math-ph/0505067 +math-ph/0505069 +math-ph/0505070 +math-ph/0505071 +math-ph/0505073 +math-ph/0505074 +math-ph/0505076 +math-ph/0505082 +math-ph/0505084 +math-ph/0506006 +math-ph/0506010 +math-ph/0506011 +math-ph/0506016 +math-ph/0506024 +math-ph/0506025 +math-ph/0506029 +math-ph/0506032 +math-ph/0506033 +math-ph/0506034 +math-ph/0506035 +math-ph/0506036 +math-ph/0506041 +math-ph/0506063 +math-ph/0506068 +math-ph/0506072 +math-ph/0507002 +math-ph/0507008 +math-ph/0507009 +math-ph/0507010 +math-ph/0507015 +math-ph/0507022 +math-ph/0507024 +math-ph/0507030 +math-ph/0507037 +math-ph/0507047 +math-ph/0507051 +math-ph/0507054 +math-ph/0507055 +math-ph/0507056 +math-ph/0507061 +math-ph/0507062 +math-ph/0507063 +math-ph/0507064 +math-ph/0507065 +math-ph/0507066 +math-ph/0507071 +math-ph/0508002 +math-ph/0508008 +math-ph/0508011 +math-ph/0508012 +math-ph/0508013 +math-ph/0508018 +math-ph/0508020 +math-ph/0508025 +math-ph/0508027 +math-ph/0508031 +math-ph/0508035 +math-ph/0508038 +math-ph/0508040 +math-ph/0508042 +math-ph/0508050 +math-ph/0508057 +math-ph/0508059 +math-ph/0508067 +math-ph/0509001 +math-ph/0509011 +math-ph/0509013 +math-ph/0509032 +math-ph/0509044 +math-ph/0509050 +math-ph/0509059 +math-ph/0509062 +math-ph/0509066 +math-ph/0509069 +math-ph/0509070 +math-ph/0510002 +math-ph/0510009 +math-ph/0510020 +math-ph/0510027 +math-ph/0510029 +math-ph/0510032 +math-ph/0510033 +math-ph/0510034 +math-ph/0510037 +math-ph/0510043 +math-ph/0510044 +math-ph/0510045 +math-ph/0510046 +math-ph/0510047 +math-ph/0510056 +math-ph/0510064 +math-ph/0510070 +math-ph/0510078 +math-ph/0510084 +math-ph/0510085 +math-ph/0510086 +math-ph/0510095 +math-ph/0511002 +math-ph/0511005 +math-ph/0511012 +math-ph/0511014 +math-ph/0511022 +math-ph/0511025 +math-ph/0511027 +math-ph/0511031 +math-ph/0511032 +math-ph/0511042 +math-ph/0511046 +math-ph/0511048 +math-ph/0511051 +math-ph/0511052 +math-ph/0511053 +math-ph/0511054 +math-ph/0511060 +math-ph/0511066 +math-ph/0511074 +math-ph/0512007 +math-ph/0512018 +math-ph/0512023 +math-ph/0512027 +math-ph/0512035 +math-ph/0512036 +math-ph/0512037 +math-ph/0512042 +math-ph/0512050 +math-ph/0512054 +math-ph/0512056 +math-ph/0512057 +math-ph/0512063 +math-ph/0512068 +math-ph/0512070 +math-ph/0512077 +math-ph/0512078 +math-ph/0512079 +math-ph/0512081 +math-ph/0512085 +math-ph/0601007 +math-ph/0601014 +math-ph/0601016 +math-ph/0601023 +math-ph/0601024 +math-ph/0601025 +math-ph/0601036 +math-ph/0601046 +math-ph/0601048 +math-ph/0601051 +math-ph/0601055 +math-ph/0601057 +math-ph/0601066 +math-ph/0601067 +math-ph/0602001 +math-ph/0602002 +math-ph/0602022 +math-ph/0602028 +math-ph/0602032 +math-ph/0602040 +math-ph/0602045 +math-ph/0602051 +math-ph/0602052 +math-ph/0602053 +math-ph/0602056 +math-ph/0602057 +math-ph/0602059 +math-ph/0602060 +math-ph/0602061 +math-ph/0602062 +math-ph/0603006 +math-ph/0603009 +math-ph/0603016 +math-ph/0603018 +math-ph/0603020 +math-ph/0603021 +math-ph/0603029 +math-ph/0603034 +math-ph/0603036 +math-ph/0603044 +math-ph/0603047 +math-ph/0603073 +math-ph/0604002 +math-ph/0604010 +math-ph/0604018 +math-ph/0604028 +math-ph/0604030 +math-ph/0604032 +math-ph/0604036 +math-ph/0604037 +math-ph/0604041 +math-ph/0604043 +math-ph/0604050 +math-ph/0604055 +math-ph/0604058 +math-ph/0604065 +math-ph/0604071 +math-ph/0604073 +math-ph/0605010 +math-ph/0605011 +math-ph/0605023 +math-ph/0605033 +math-ph/0605041 +math-ph/0605042 +math-ph/0605056 +math-ph/0605063 +math-ph/0605069 +math-ph/0605072 +math-ph/0605075 +math-ph/0605080 +math-ph/0606005 +math-ph/0606006 +math-ph/0606011 +math-ph/0606012 +math-ph/0606013 +math-ph/0606014 +math-ph/0606020 +math-ph/0606023 +math-ph/0606048 +math-ph/0606049 +math-ph/0606050 +math-ph/0606051 +math-ph/0606054 +math-ph/0606056 +math-ph/0606064 +math-ph/0607003 +math-ph/0607006 +math-ph/0607020 +math-ph/0607021 +math-ph/0607022 +math-ph/0607033 +math-ph/0607038 +math-ph/0607039 +math-ph/0607042 +math-ph/0607043 +math-ph/0607047 +math-ph/0607058 +math-ph/0607065 +math-ph/0608006 +math-ph/0608021 +math-ph/0608025 +math-ph/0608028 +math-ph/0608031 +math-ph/0608032 +math-ph/0608041 +math-ph/0608048 +math-ph/0608051 +math-ph/0608059 +math-ph/0608061 +math-ph/0608065 +math-ph/0608067 +math-ph/0609002 +math-ph/0609006 +math-ph/0609011 +math-ph/0609017 +math-ph/0609023 +math-ph/0609024 +math-ph/0609028 +math-ph/0609029 +math-ph/0609033 +math-ph/0609035 +math-ph/0609039 +math-ph/0609044 +math-ph/0609045 +math-ph/0609046 +math-ph/0609047 +math-ph/0609049 +math-ph/0609061 +math-ph/0609063 +math-ph/0609074 +math-ph/0609077 +math-ph/0609082 +math-ph/0610005 +math-ph/0610007 +math-ph/0610030 +math-ph/0610031 +math-ph/0610034 +math-ph/0610038 +math-ph/0610046 +math-ph/0610050 +math-ph/0610060 +math-ph/0610062 +math-ph/0610066 +math-ph/0610067 +math-ph/0610073 +math-ph/0610076 +math-ph/0610078 +math-ph/0610082 +math-ph/0610087 +math-ph/0611005 +math-ph/0611009 +math-ph/0611011 +math-ph/0611012 +math-ph/0611016 +math-ph/0611032 +math-ph/0611034 +math-ph/0611035 +math-ph/0611038 +math-ph/0611042 +math-ph/0611047 +math-ph/0611051 +math-ph/0611067 +math-ph/0611085 +math-ph/0612020 +math-ph/0612025 +math-ph/0612028 +math-ph/0612035 +math-ph/0612053 +math-ph/0612056 +math-ph/0612058 +math-ph/0612072 +math-ph/0612075 +math-ph/0612078 +math-ph/0612084 +math-ph/0612086 +math-ph/0612087 +math-ph/0702094 +math/0304110 Number Theory +math/0401445 Number Theory +math/0501024 Differential Geometry +math/0501029 Quantum Algebra +math/0501098 Symplectic Geometry +math/0501117 Quantum Algebra +math/0501138 Quantum Algebra +math/0501161 Dynamical Systems +math/0501164 Probability +math/0501190 Geometric Topology +math/0501251 Quantum Algebra +math/0501369 Quantum Algebra +math/0501386 Analysis of PDEs +math/0501396 Differential Geometry +math/0501410 Differential Geometry +math/0501411 Differential Geometry +math/0501467 Probability +math/0501492 Dynamical Systems +math/0502018 Operator Algebras +math/0502042 Number Theory +math/0502058 Analysis of PDEs +math/0502112 Group Theory +math/0502128 Differential Geometry +math/0502222 Number Theory +math/0502280 Algebraic Geometry +math/0502354 Dynamical Systems +math/0502362 Algebraic Geometry +math/0502407 Numerical Analysis +math/0502453 Dynamical Systems +math/0502457 Differential Geometry +math/0502482 Differential Geometry +math/0502524 Differential Geometry +math/0502566 Spectral Theory +math/0502567 Geometric Topology +math/0503010 Dynamical Systems +math/0503049 Operator Algebras +math/0503223 Dynamical Systems +math/0503225 Dynamical Systems +math/0503287 Quantum Algebra +math/0503324 Representation Theory +math/0503354 Analysis of PDEs +math/0503406 Analysis of PDEs +math/0503420 Probability +math/0503431 Analysis of PDEs +math/0503432 Differential Geometry +math/0503433 Dynamical Systems +math/0503497 Spectral Theory +math/0503584 Differential Geometry +math/0503642 Algebraic Geometry +math/0503709 Symplectic Geometry +math/0503725 Quantum Algebra +math/0503726 Quantum Algebra +math/0503727 Quantum Algebra +math/0504044 Spectral Theory +math/0504153 Combinatorics +math/0504157 Differential Geometry +math/0504202 Algebraic Geometry +math/0504311 Quantum Algebra +math/0504327 Algebraic Geometry +math/0504329 Algebraic Topology +math/0504339 Analysis of PDEs +math/0504347 Symplectic Geometry +math/0504348 Symplectic Geometry +math/0504433 Quantum Algebra +math/0504442 Dynamical Systems +math/0504493 Quantum Algebra +math/0504496 Probability +math/0504544 Rings and Algebras +math/0505036 Dynamical Systems +math/0505090 Probability +math/0505107 Quantum Algebra +math/0505122 Complex Variables +math/0505133 Number Theory +math/0505161 Dynamical Systems +math/0505200 Spectral Theory +math/0505358 Dynamical Systems +math/0505376 Differential Geometry +math/0505383 Spectral Theory +math/0505401 Dynamical Systems +math/0505513 Spectral Theory +math/0505525 Differential Geometry +math/0505541 Spectral Theory +math/0505610 Dynamical Systems +math/0506047 Differential Geometry +math/0506078 Number Theory +math/0506110 Quantum Algebra +math/0506174 Symplectic Geometry +math/0506181 Spectral Theory +math/0506280 Dynamical Systems +math/0506323 Combinatorics +math/0506328 Classical Analysis and ODEs +math/0506331 Differential Geometry +math/0506389 General Mathematics +math/0506447 Algebraic Geometry +math/0506453 Quantum Algebra +math/0506499 Quantum Algebra +math/0506503 Quantum Algebra +math/0506570 Quantum Algebra +math/0507056 Quantum Algebra +math/0507131 Classical Analysis and ODEs +math/0507160 Differential Geometry +math/0507302 Number Theory +math/0507327 Analysis of PDEs +math/0507337 Quantum Algebra +math/0507364 Quantum Algebra +math/0507365 Optimization and Control +math/0507402 Numerical Analysis +math/0507403 Numerical Analysis +math/0507538 Differential Geometry +math/0507584 Representation Theory +math/0508009 Differential Geometry +math/0508020 Numerical Analysis +math/0508023 Optimization and Control +math/0508058 Quantum Algebra +math/0508143 Quantum Algebra +math/0508169 Quantum Algebra +math/0508256 Number Theory +math/0508289 Quantum Algebra +math/0508481 Analysis of PDEs +math/0508483 Complex Variables +math/0508537 Combinatorics +math/0508627 Numerical Analysis +math/0509028 Numerical Analysis +math/0509048 Algebraic Geometry +math/0509069 Differential Geometry +math/0509260 Quantum Algebra +math/0509333 Numerical Analysis +math/0509359 Analysis of PDEs +math/0509472 Representation Theory +math/0509622 Spectral Theory +math/0509651 Quantum Algebra +math/0509675 Quantum Algebra +math/0509676 Quantum Algebra +math/0509704 Analysis of PDEs +math/0510011 Algebraic Geometry +math/0510024 Functional Analysis +math/0510099 Differential Geometry +math/0510152 Analysis of PDEs +math/0510195 Group Theory +math/0510250 Differential Geometry +math/0510288 Quantum Algebra +math/0510307 Quantum Algebra +math/0510315 Analysis of PDEs +math/0510390 Quantum Algebra +math/0510402 Analysis of PDEs +math/0510474 Dynamical Systems +math/0510504 Spectral Theory +math/0510505 Spectral Theory +math/0510522 Spectral Theory +math/0510562 Group Theory +math/0510593 Symplectic Geometry +math/0510643 Analysis of PDEs +math/0511008 Combinatorics +math/0511099 Operator Algebras +math/0511147 Metric Geometry +math/0511163 Algebraic Geometry +math/0511254 Algebraic Geometry +math/0511359 Analysis of PDEs +math/0511360 Dynamical Systems +math/0511430 Quantum Algebra +math/0511481 Quantum Algebra +math/0511521 Quantum Algebra +math/0511586 Dynamical Systems +math/0511595 Differential Geometry +math/0511662 Operator Algebras +math/0512031 Quantum Algebra +math/0512040 K-Theory and Homology +math/0512142 Classical Analysis and ODEs +math/0512169 Rings and Algebras +math/0512178 Differential Geometry +math/0512179 Probability +math/0512523 Probability +math/0601060 Analysis of PDEs +math/0601113 Analysis of PDEs +math/0601301 Quantum Algebra +math/0601310 Geometric Topology +math/0601324 Number Theory +math/0601331 Differential Geometry +math/0601355 Algebraic Topology +math/0601404 Probability +math/0601422 Number Theory +math/0601449 Dynamical Systems +math/0601465 Dynamical Systems +math/0601553 Dynamical Systems +math/0601584 Quantum Algebra +math/0601636 Analysis of PDEs +math/0601672 Dynamical Systems +math/0601708 Quantum Algebra +math/0601776 Spectral Theory +math/0602032 Algebraic Geometry +math/0602081 Functional Analysis +math/0602142 Dynamical Systems +math/0602150 Differential Geometry +math/0602168 Symplectic Geometry +math/0602187 Analysis of PDEs +math/0602225 Number Theory +math/0602270 Number Theory +math/0602344 Commutative Algebra +math/0602354 Dynamical Systems +math/0602375 Classical Analysis and ODEs +math/0602440 Classical Analysis and ODEs +math/0602481 Quantum Algebra +math/0602485 Number Theory +math/0602571 Analysis of PDEs +math/0602619 Differential Geometry +math/0602622 Differential Geometry +math/0602676 Differential Geometry +math/0603029 Analysis of PDEs +math/0603081 Quantum Algebra +math/0603088 Quantum Algebra +math/0603177 Geometric Topology +math/0603271 Statistics Theory +math/0603287 Quantum Algebra +math/0603297 Differential Geometry +math/0603398 Representation Theory +math/0603426 Quantum Algebra +math/0603432 Differential Geometry +math/0603484 Analysis of PDEs +math/0603510 Differential Geometry +math/0603542 Dynamical Systems +math/0603572 Operator Algebras +math/0603626 Geometric Topology +math/0603628 Analysis of PDEs +math/0603668 Statistics Theory +math/0604020 Algebraic Geometry +math/0604035 Classical Analysis and ODEs +math/0604066 Spectral Theory +math/0604104 Dynamical Systems +math/0604185 Analysis of PDEs +math/0604232 Number Theory +math/0604309 Dynamical Systems +math/0604348 Operator Algebras +math/0604381 Differential Geometry +math/0604449 Number Theory +math/0604472 Classical Analysis and ODEs +math/0604473 Classical Analysis and ODEs +math/0604474 Classical Analysis and ODEs +math/0604475 Classical Analysis and ODEs +math/0604531 Probability +math/0604552 Spectral Theory +math/0604563 Algebraic Geometry +math/0604574 Quantum Algebra +math/0604606 Numerical Analysis +math/0605003 Functional Analysis +math/0605014 Metric Geometry +math/0605015 Quantum Algebra +math/0605035 Probability +math/0605097 Algebraic Geometry +math/0605137 Algebraic Geometry +math/0605161 Complex Variables +math/0605191 Quantum Algebra +math/0605202 Dynamical Systems +math/0605219 Quantum Algebra +math/0605224 Statistics Theory +math/0605245 Analysis of PDEs +math/0605255 Differential Geometry +math/0605266 Probability +math/0605288 Number Theory +math/0605311 Analysis of PDEs +math/0605314 Geometric Topology +math/0605392 Quantum Algebra +math/0605395 Probability +math/0605461 Probability +math/0605521 Metric Geometry +math/0605561 Probability +math/0605576 Analysis of PDEs +math/0605655 Analysis of PDEs +math/0605748 Differential Geometry +math/0605761 Geometric Topology +math/0606029 Dynamical Systems +math/0606208 Quantum Algebra +math/0606215 Quantum Algebra +math/0606321 Operator Algebras +math/0606382 Differential Geometry +math/0606433 Dynamical Systems +math/0606459 Dynamical Systems +math/0606499 Quantum Algebra +math/0606522 Differential Geometry +math/0606562 Classical Analysis and ODEs +math/0606581 Symplectic Geometry +math/0606667 Probability +math/0606674 Quantum Algebra +math/0606677 Dynamical Systems +math/0606776 Dynamical Systems +math/0606787 Differential Geometry +math/0607027 Analysis of PDEs +math/0607030 Differential Geometry +math/0607039 Analysis of PDEs +math/0607114 Analysis of PDEs +math/0607156 Geometric Topology +math/0607181 Numerical Analysis +math/0607235 Quantum Algebra +math/0607250 Classical Analysis and ODEs +math/0607276 Differential Geometry +math/0607339 Algebraic Geometry +math/0607401 Differential Geometry +math/0607434 Dynamical Systems +math/0607506 Classical Analysis and ODEs +math/0607527 Quantum Algebra +math/0607553 Analysis of PDEs +math/0607567 Probability +math/0607588 Number Theory +math/0607680 Analysis of PDEs +math/0607707 Probability +math/0607712 Analysis of PDEs +math/0607774 Dynamical Systems +math/0607797 Probability +math/0607813 Spectral Theory +math/0608033 Dynamical Systems +math/0608094 Algebraic Geometry +math/0608122 Dynamical Systems +math/0608284 Representation Theory +math/0608336 Logic +math/0608399 Differential Geometry +math/0608486 Optimization and Control +math/0608508 Quantum Algebra +math/0608510 Analysis of PDEs +math/0608580 Numerical Analysis +math/0608649 Number Theory +math/0608701 Quantum Algebra +math/0608721 Differential Geometry +math/0608751 Probability +math/0608780 Analysis of PDEs +math/0609013 Analysis of PDEs +math/0609027 Analysis of PDEs +math/0609058 Differential Geometry +math/0609060 Differential Geometry +math/0609062 Differential Geometry +math/0609072 Algebraic Geometry +math/0609073 Quantum Algebra +math/0609205 Analysis of PDEs +math/0609310 Differential Geometry +math/0609383 Number Theory +math/0609387 Number Theory +math/0609398 Analysis of PDEs +math/0609427 Dynamical Systems +math/0609474 Spectral Theory +math/0609546 Probability +math/0609626 Dynamical Systems +math/0609628 Dynamical Systems +math/0609649 Analysis of PDEs +math/0609664 Number Theory +math/0609681 Dynamical Systems +math/0609834 Combinatorics +math/0609850 Quantum Algebra +math/0610041 Quantum Algebra +math/0610090 Analysis of PDEs +math/0610094 Functional Analysis +math/0610125 Probability +math/0610133 Analysis of PDEs +math/0610198 Numerical Analysis +math/0610223 Analysis of PDEs +math/0610263 Dynamical Systems +math/0610266 Analysis of PDEs +math/0610308 Analysis of PDEs +math/0610359 Complex Variables +math/0610362 Algebraic Geometry +math/0610434 Differential Geometry +math/0610471 Classical Analysis and ODEs +math/0610481 Geometric Topology +math/0610589 Differential Geometry +math/0610613 Differential Geometry +math/0610622 Spectral Theory +math/0610642 Numerical Analysis +math/0610681 Number Theory +math/0610788 Analysis of PDEs +math/0610810 Statistics Theory +math/0610814 Analysis of PDEs +math/0610902 Functional Analysis +math/0610951 Dynamical Systems +math/0611052 Analysis of PDEs +math/0611112 Numerical Analysis +math/0611185 Analysis of PDEs +math/0611271 Operator Algebras +math/0611327 Operator Algebras +math/0611333 Algebraic Geometry +math/0611425 Analysis of PDEs +math/0611496 Analysis of PDEs +math/0611507 Quantum Algebra +math/0611592 Symplectic Geometry +math/0611609 Spectral Theory +math/0611782 Analysis of PDEs +math/0611941 Representation Theory +math/0611957 Statistics Theory +math/0612036 Symplectic Geometry +math/0612087 Quantum Algebra +math/0612146 Differential Geometry +math/0612301 Commutative Algebra +math/0612324 Numerical Analysis +math/0612423 Quantum Algebra +math/0612574 Dynamical Systems +math/0612609 Probability +math/0612690 Representation Theory +math/0612711 Probability +math/0612737 Quantum Algebra +math/0612764 Analysis of PDEs +math/0612852 Dynamical Systems +nlin/0501001 Chaotic Dynamics +nlin/0501002 Chaotic Dynamics +nlin/0501003 Exactly Solvable and Integrable Systems +nlin/0501006 Chaotic Dynamics +nlin/0501007 Chaotic Dynamics +nlin/0501009 Pattern Formation and Solitons +nlin/0501012 Pattern Formation and Solitons +nlin/0501019 Chaotic Dynamics +nlin/0501020 Exactly Solvable and Integrable Systems +nlin/0501027 Chaotic Dynamics +nlin/0501028 Exactly Solvable and Integrable Systems +nlin/0501029 Pattern Formation and Solitons +nlin/0501031 Chaotic Dynamics +nlin/0501039 Pattern Formation and Solitons +nlin/0501042 Chaotic Dynamics +nlin/0501046 Chaotic Dynamics +nlin/0501053 Pattern Formation and Solitons +nlin/0501054 Chaotic Dynamics +nlin/0502004 Exactly Solvable and Integrable Systems +nlin/0502005 Pattern Formation and Solitons +nlin/0502006 Exactly Solvable and Integrable Systems +nlin/0502014 Chaotic Dynamics +nlin/0502021 Chaotic Dynamics +nlin/0502022 Chaotic Dynamics +nlin/0502025 Pattern Formation and Solitons +nlin/0502034 Chaotic Dynamics +nlin/0502036 Chaotic Dynamics +nlin/0502038 Exactly Solvable and Integrable Systems +nlin/0502041 Pattern Formation and Solitons +nlin/0502043 Pattern Formation and Solitons +nlin/0502046 Chaotic Dynamics +nlin/0502047 Exactly Solvable and Integrable Systems +nlin/0502048 Exactly Solvable and Integrable Systems +nlin/0502052 Chaotic Dynamics +nlin/0502055 Chaotic Dynamics +nlin/0502056 Pattern Formation and Solitons +nlin/0502059 Pattern Formation and Solitons +nlin/0502062 Exactly Solvable and Integrable Systems +nlin/0502064 Chaotic Dynamics +nlin/0503004 Exactly Solvable and Integrable Systems +nlin/0503007 Chaotic Dynamics +nlin/0503010 Pattern Formation and Solitons +nlin/0503013 Pattern Formation and Solitons +nlin/0503016 Chaotic Dynamics +nlin/0503019 Exactly Solvable and Integrable Systems +nlin/0503020 Exactly Solvable and Integrable Systems +nlin/0503021 Chaotic Dynamics +nlin/0503023 Pattern Formation and Solitons +nlin/0503026 Pattern Formation and Solitons +nlin/0503028 Chaotic Dynamics +nlin/0503032 Exactly Solvable and Integrable Systems +nlin/0503033 Exactly Solvable and Integrable Systems +nlin/0503034 Pattern Formation and Solitons +nlin/0503035 Chaotic Dynamics +nlin/0503038 Cellular Automata and Lattice Gases +nlin/0503039 Pattern Formation and Solitons +nlin/0503041 Chaotic Dynamics +nlin/0503042 Exactly Solvable and Integrable Systems +nlin/0503043 Chaotic Dynamics +nlin/0503046 Chaotic Dynamics +nlin/0503047 Pattern Formation and Solitons +nlin/0503051 Chaotic Dynamics +nlin/0503056 Exactly Solvable and Integrable Systems +nlin/0503059 Chaotic Dynamics +nlin/0503063 Pattern Formation and Solitons +nlin/0503064 Pattern Formation and Solitons +nlin/0503065 Pattern Formation and Solitons +nlin/0503067 Chaotic Dynamics +nlin/0503069 Chaotic Dynamics +nlin/0504001 Chaotic Dynamics +nlin/0504005 Chaotic Dynamics +nlin/0504008 Pattern Formation and Solitons +nlin/0504009 Pattern Formation and Solitons +nlin/0504012 Chaotic Dynamics +nlin/0504013 Chaotic Dynamics +nlin/0504016 Chaotic Dynamics +nlin/0504023 Adaptation and Self-Organizing Systems +nlin/0504027 Exactly Solvable and Integrable Systems +nlin/0504029 Exactly Solvable and Integrable Systems +nlin/0504031 Chaotic Dynamics +nlin/0504032 Chaotic Dynamics +nlin/0504035 Chaotic Dynamics +nlin/0504036 Pattern Formation and Solitons +nlin/0504038 Chaotic Dynamics +nlin/0504039 Pattern Formation and Solitons +nlin/0504040 Chaotic Dynamics +nlin/0504042 Chaotic Dynamics +nlin/0504043 Exactly Solvable and Integrable Systems +nlin/0504049 Chaotic Dynamics +nlin/0504050 Chaotic Dynamics +nlin/0504055 Exactly Solvable and Integrable Systems +nlin/0504056 Pattern Formation and Solitons +nlin/0504057 Pattern Formation and Solitons +nlin/0504061 Pattern Formation and Solitons +nlin/0504062 Exactly Solvable and Integrable Systems +nlin/0505008 Pattern Formation and Solitons +nlin/0505010 Chaotic Dynamics +nlin/0505012 Pattern Formation and Solitons +nlin/0505016 Pattern Formation and Solitons +nlin/0505019 Exactly Solvable and Integrable Systems +nlin/0505023 Pattern Formation and Solitons +nlin/0505028 Pattern Formation and Solitons +nlin/0505030 Exactly Solvable and Integrable Systems +nlin/0505031 Chaotic Dynamics +nlin/0505039 Exactly Solvable and Integrable Systems +nlin/0505040 Chaotic Dynamics +nlin/0505043 Adaptation and Self-Organizing Systems +nlin/0505046 Chaotic Dynamics +nlin/0505048 Chaotic Dynamics +nlin/0505053 Chaotic Dynamics +nlin/0505054 Chaotic Dynamics +nlin/0505055 Chaotic Dynamics +nlin/0505056 Exactly Solvable and Integrable Systems +nlin/0505057 Chaotic Dynamics +nlin/0505059 Exactly Solvable and Integrable Systems +nlin/0505061 Exactly Solvable and Integrable Systems +nlin/0506001 Pattern Formation and Solitons +nlin/0506002 Pattern Formation and Solitons +nlin/0506004 Chaotic Dynamics +nlin/0506005 Adaptation and Self-Organizing Systems +nlin/0506007 Pattern Formation and Solitons +nlin/0506008 Pattern Formation and Solitons +nlin/0506009 Chaotic Dynamics +nlin/0506013 Pattern Formation and Solitons +nlin/0506016 Exactly Solvable and Integrable Systems +nlin/0506017 Chaotic Dynamics +nlin/0506019 Pattern Formation and Solitons +nlin/0506020 Pattern Formation and Solitons +nlin/0506021 Exactly Solvable and Integrable Systems +nlin/0506024 Exactly Solvable and Integrable Systems +nlin/0506038 Chaotic Dynamics +nlin/0506039 Pattern Formation and Solitons +nlin/0506046 Pattern Formation and Solitons +nlin/0506049 Chaotic Dynamics +nlin/0506054 Pattern Formation and Solitons +nlin/0506061 Chaotic Dynamics +nlin/0507003 Chaotic Dynamics +nlin/0507006 Chaotic Dynamics +nlin/0507007 Pattern Formation and Solitons +nlin/0507008 Exactly Solvable and Integrable Systems +nlin/0507015 Chaotic Dynamics +nlin/0507016 Exactly Solvable and Integrable Systems +nlin/0507019 Pattern Formation and Solitons +nlin/0507022 Pattern Formation and Solitons +nlin/0507025 Pattern Formation and Solitons +nlin/0507028 Pattern Formation and Solitons +nlin/0507031 Pattern Formation and Solitons +nlin/0507034 Chaotic Dynamics +nlin/0507039 Exactly Solvable and Integrable Systems +nlin/0507040 Chaotic Dynamics +nlin/0507041 Chaotic Dynamics +nlin/0507047 Pattern Formation and Solitons +nlin/0507052 Chaotic Dynamics +nlin/0507053 Chaotic Dynamics +nlin/0507055 Exactly Solvable and Integrable Systems +nlin/0507056 Exactly Solvable and Integrable Systems +nlin/0507063 Chaotic Dynamics +nlin/0507065 Exactly Solvable and Integrable Systems +nlin/0508005 Exactly Solvable and Integrable Systems +nlin/0508008 Chaotic Dynamics +nlin/0508009 Chaotic Dynamics +nlin/0508012 Chaotic Dynamics +nlin/0508014 Pattern Formation and Solitons +nlin/0508016 Pattern Formation and Solitons +nlin/0508018 Chaotic Dynamics +nlin/0508019 Chaotic Dynamics +nlin/0508020 Pattern Formation and Solitons +nlin/0508022 Pattern Formation and Solitons +nlin/0508023 Chaotic Dynamics +nlin/0508029 Exactly Solvable and Integrable Systems +nlin/0508031 Pattern Formation and Solitons +nlin/0508036 Exactly Solvable and Integrable Systems +nlin/0508037 Chaotic Dynamics +nlin/0508039 Pattern Formation and Solitons +nlin/0509001 Exactly Solvable and Integrable Systems +nlin/0509002 Chaotic Dynamics +nlin/0509003 Chaotic Dynamics +nlin/0509004 Adaptation and Self-Organizing Systems +nlin/0509011 Pattern Formation and Solitons +nlin/0509016 Chaotic Dynamics +nlin/0509017 Exactly Solvable and Integrable Systems +nlin/0509025 Pattern Formation and Solitons +nlin/0509026 Pattern Formation and Solitons +nlin/0509028 Chaotic Dynamics +nlin/0509033 Exactly Solvable and Integrable Systems +nlin/0509040 Pattern Formation and Solitons +nlin/0509043 Exactly Solvable and Integrable Systems +nlin/0509044 Pattern Formation and Solitons +nlin/0509050 Exactly Solvable and Integrable Systems +nlin/0509052 Chaotic Dynamics +nlin/0509054 Chaotic Dynamics +nlin/0509055 Chaotic Dynamics +nlin/0510002 Adaptation and Self-Organizing Systems +nlin/0510004 Chaotic Dynamics +nlin/0510005 Chaotic Dynamics +nlin/0510008 Chaotic Dynamics +nlin/0510010 Pattern Formation and Solitons +nlin/0510013 Exactly Solvable and Integrable Systems +nlin/0510017 Chaotic Dynamics +nlin/0510018 Pattern Formation and Solitons +nlin/0510019 Exactly Solvable and Integrable Systems +nlin/0510020 Exactly Solvable and Integrable Systems +nlin/0510022 Exactly Solvable and Integrable Systems +nlin/0510027 Chaotic Dynamics +nlin/0510029 Pattern Formation and Solitons +nlin/0510033 Chaotic Dynamics +nlin/0510036 Exactly Solvable and Integrable Systems +nlin/0510037 Cellular Automata and Lattice Gases +nlin/0510038 Chaotic Dynamics +nlin/0510041 Pattern Formation and Solitons +nlin/0510042 Chaotic Dynamics +nlin/0510043 Chaotic Dynamics +nlin/0510045 Exactly Solvable and Integrable Systems +nlin/0510047 Pattern Formation and Solitons +nlin/0510052 Chaotic Dynamics +nlin/0510054 Chaotic Dynamics +nlin/0510060 Chaotic Dynamics +nlin/0510062 Chaotic Dynamics +nlin/0510065 Exactly Solvable and Integrable Systems +nlin/0510067 Chaotic Dynamics +nlin/0510070 Adaptation and Self-Organizing Systems +nlin/0510072 Chaotic Dynamics +nlin/0510073 Chaotic Dynamics +nlin/0511003 Pattern Formation and Solitons +nlin/0511010 Chaotic Dynamics +nlin/0511016 Pattern Formation and Solitons +nlin/0511017 Chaotic Dynamics +nlin/0511019 Pattern Formation and Solitons +nlin/0511020 Chaotic Dynamics +nlin/0511021 Pattern Formation and Solitons +nlin/0511024 Adaptation and Self-Organizing Systems +nlin/0511028 Pattern Formation and Solitons +nlin/0511029 Exactly Solvable and Integrable Systems +nlin/0511032 Chaotic Dynamics +nlin/0511036 Pattern Formation and Solitons +nlin/0511037 Chaotic Dynamics +nlin/0511043 Exactly Solvable and Integrable Systems +nlin/0511048 Adaptation and Self-Organizing Systems +nlin/0511050 Chaotic Dynamics +nlin/0511052 Pattern Formation and Solitons +nlin/0511057 Chaotic Dynamics +nlin/0511062 Exactly Solvable and Integrable Systems +nlin/0511063 Pattern Formation and Solitons +nlin/0511065 Pattern Formation and Solitons +nlin/0511067 Exactly Solvable and Integrable Systems +nlin/0511068 Exactly Solvable and Integrable Systems +nlin/0512007 Chaotic Dynamics +nlin/0512009 Adaptation and Self-Organizing Systems +nlin/0512010 Exactly Solvable and Integrable Systems +nlin/0512018 Exactly Solvable and Integrable Systems +nlin/0512019 Pattern Formation and Solitons +nlin/0512022 Chaotic Dynamics +nlin/0512023 Chaotic Dynamics +nlin/0512026 Exactly Solvable and Integrable Systems +nlin/0512028 Pattern Formation and Solitons +nlin/0512034 Chaotic Dynamics +nlin/0512036 Chaotic Dynamics +nlin/0512037 Chaotic Dynamics +nlin/0512038 Exactly Solvable and Integrable Systems +nlin/0512040 Pattern Formation and Solitons +nlin/0512045 Chaotic Dynamics +nlin/0512047 Exactly Solvable and Integrable Systems +nlin/0512050 Adaptation and Self-Organizing Systems +nlin/0512051 Exactly Solvable and Integrable Systems +nlin/0512057 Pattern Formation and Solitons +nlin/0512059 Pattern Formation and Solitons +nlin/0512061 Pattern Formation and Solitons +nlin/0512062 Exactly Solvable and Integrable Systems +nlin/0512064 Chaotic Dynamics +nlin/0512066 Exactly Solvable and Integrable Systems +nlin/0512073 Chaotic Dynamics +nlin/0512074 Exactly Solvable and Integrable Systems +nlin/0601004 Chaotic Dynamics +nlin/0601009 Chaotic Dynamics +nlin/0601010 Chaotic Dynamics +nlin/0601014 Exactly Solvable and Integrable Systems +nlin/0601017 Pattern Formation and Solitons +nlin/0601020 Chaotic Dynamics +nlin/0601021 Pattern Formation and Solitons +nlin/0601027 Chaotic Dynamics +nlin/0601040 Chaotic Dynamics +nlin/0601041 Pattern Formation and Solitons +nlin/0601044 Pattern Formation and Solitons +nlin/0601045 Adaptation and Self-Organizing Systems +nlin/0601049 Pattern Formation and Solitons +nlin/0601054 Pattern Formation and Solitons +nlin/0601055 Chaotic Dynamics +nlin/0601056 Exactly Solvable and Integrable Systems +nlin/0602002 Chaotic Dynamics +nlin/0602004 Pattern Formation and Solitons +nlin/0602007 Exactly Solvable and Integrable Systems +nlin/0602011 Adaptation and Self-Organizing Systems +nlin/0602020 Chaotic Dynamics +nlin/0602023 Pattern Formation and Solitons +nlin/0602027 Chaotic Dynamics +nlin/0602030 Pattern Formation and Solitons +nlin/0602031 Exactly Solvable and Integrable Systems +nlin/0602032 Exactly Solvable and Integrable Systems +nlin/0602033 Pattern Formation and Solitons +nlin/0602036 Pattern Formation and Solitons +nlin/0602039 Pattern Formation and Solitons +nlin/0602041 Chaotic Dynamics +nlin/0602044 Pattern Formation and Solitons +nlin/0602047 Pattern Formation and Solitons +nlin/0602050 Pattern Formation and Solitons +nlin/0602051 Exactly Solvable and Integrable Systems +nlin/0602052 Pattern Formation and Solitons +nlin/0602053 Chaotic Dynamics +nlin/0602054 Chaotic Dynamics +nlin/0602055 Chaotic Dynamics +nlin/0602056 Pattern Formation and Solitons +nlin/0602057 Pattern Formation and Solitons +nlin/0602062 Chaotic Dynamics +nlin/0603002 Chaotic Dynamics +nlin/0603005 Exactly Solvable and Integrable Systems +nlin/0603007 Exactly Solvable and Integrable Systems +nlin/0603010 Exactly Solvable and Integrable Systems +nlin/0603013 Pattern Formation and Solitons +nlin/0603015 Adaptation and Self-Organizing Systems +nlin/0603018 Exactly Solvable and Integrable Systems +nlin/0603022 Pattern Formation and Solitons +nlin/0603023 Pattern Formation and Solitons +nlin/0603032 Pattern Formation and Solitons +nlin/0603033 Exactly Solvable and Integrable Systems +nlin/0603036 Chaotic Dynamics +nlin/0603039 Chaotic Dynamics +nlin/0603040 Pattern Formation and Solitons +nlin/0603041 Chaotic Dynamics +nlin/0603042 Chaotic Dynamics +nlin/0603048 Exactly Solvable and Integrable Systems +nlin/0603049 Pattern Formation and Solitons +nlin/0603051 Chaotic Dynamics +nlin/0603052 Chaotic Dynamics +nlin/0603055 Exactly Solvable and Integrable Systems +nlin/0603058 Cellular Automata and Lattice Gases +nlin/0603059 Chaotic Dynamics +nlin/0603063 Chaotic Dynamics +nlin/0603064 Exactly Solvable and Integrable Systems +nlin/0603068 Chaotic Dynamics +nlin/0603074 Pattern Formation and Solitons +nlin/0604016 Chaotic Dynamics +nlin/0604017 Exactly Solvable and Integrable Systems +nlin/0604018 Exactly Solvable and Integrable Systems +nlin/0604019 Chaotic Dynamics +nlin/0604020 Pattern Formation and Solitons +nlin/0604024 Exactly Solvable and Integrable Systems +nlin/0604028 Chaotic Dynamics +nlin/0604029 Chaotic Dynamics +nlin/0604030 Chaotic Dynamics +nlin/0604031 Pattern Formation and Solitons +nlin/0604036 Chaotic Dynamics +nlin/0604037 Pattern Formation and Solitons +nlin/0604039 Exactly Solvable and Integrable Systems +nlin/0604040 Exactly Solvable and Integrable Systems +nlin/0604041 Pattern Formation and Solitons +nlin/0604043 Chaotic Dynamics +nlin/0604046 Exactly Solvable and Integrable Systems +nlin/0604048 Exactly Solvable and Integrable Systems +nlin/0604055 Chaotic Dynamics +nlin/0604060 Pattern Formation and Solitons +nlin/0604062 Pattern Formation and Solitons +nlin/0604065 Pattern Formation and Solitons +nlin/0604068 Chaotic Dynamics +nlin/0604075 Pattern Formation and Solitons +nlin/0605004 Adaptation and Self-Organizing Systems +nlin/0605007 Pattern Formation and Solitons +nlin/0605010 Pattern Formation and Solitons +nlin/0605012 Chaotic Dynamics +nlin/0605014 Chaotic Dynamics +nlin/0605016 Pattern Formation and Solitons +nlin/0605019 Chaotic Dynamics +nlin/0605022 Chaotic Dynamics +nlin/0605031 Pattern Formation and Solitons +nlin/0605032 Pattern Formation and Solitons +nlin/0605033 Chaotic Dynamics +nlin/0605036 Chaotic Dynamics +nlin/0605040 Chaotic Dynamics +nlin/0605049 Exactly Solvable and Integrable Systems +nlin/0605051 Chaotic Dynamics +nlin/0605052 Exactly Solvable and Integrable Systems +nlin/0605054 Chaotic Dynamics +nlin/0606002 Chaotic Dynamics +nlin/0606011 Exactly Solvable and Integrable Systems +nlin/0606014 Adaptation and Self-Organizing Systems +nlin/0606020 Pattern Formation and Solitons +nlin/0606022 Exactly Solvable and Integrable Systems +nlin/0606024 Chaotic Dynamics +nlin/0606031 Adaptation and Self-Organizing Systems +nlin/0606034 Chaotic Dynamics +nlin/0606040 Exactly Solvable and Integrable Systems +nlin/0606043 Chaotic Dynamics +nlin/0606045 Adaptation and Self-Organizing Systems +nlin/0606047 Exactly Solvable and Integrable Systems +nlin/0606050 Chaotic Dynamics +nlin/0606051 Adaptation and Self-Organizing Systems +nlin/0606058 Chaotic Dynamics +nlin/0606059 Exactly Solvable and Integrable Systems +nlin/0606060 Exactly Solvable and Integrable Systems +nlin/0606064 Adaptation and Self-Organizing Systems +nlin/0606068 Exactly Solvable and Integrable Systems +nlin/0606069 Exactly Solvable and Integrable Systems +nlin/0606070 Exactly Solvable and Integrable Systems +nlin/0607001 Pattern Formation and Solitons +nlin/0607002 Chaotic Dynamics +nlin/0607009 Pattern Formation and Solitons +nlin/0607013 Pattern Formation and Solitons +nlin/0607017 Adaptation and Self-Organizing Systems +nlin/0607019 Pattern Formation and Solitons +nlin/0607020 Chaotic Dynamics +nlin/0607021 Chaotic Dynamics +nlin/0607027 Chaotic Dynamics +nlin/0607030 Pattern Formation and Solitons +nlin/0607031 Chaotic Dynamics +nlin/0607032 Pattern Formation and Solitons +nlin/0607036 Chaotic Dynamics +nlin/0607037 Chaotic Dynamics +nlin/0607038 Chaotic Dynamics +nlin/0607040 Pattern Formation and Solitons +nlin/0607042 Exactly Solvable and Integrable Systems +nlin/0607047 Pattern Formation and Solitons +nlin/0607048 Pattern Formation and Solitons +nlin/0607062 Pattern Formation and Solitons +nlin/0607064 Chaotic Dynamics +nlin/0607068 Chaotic Dynamics +nlin/0607069 Pattern Formation and Solitons +nlin/0607070 Chaotic Dynamics +nlin/0607072 Pattern Formation and Solitons +nlin/0608009 Chaotic Dynamics +nlin/0608010 Exactly Solvable and Integrable Systems +nlin/0608017 Pattern Formation and Solitons +nlin/0608018 Exactly Solvable and Integrable Systems +nlin/0608019 Chaotic Dynamics +nlin/0608023 Pattern Formation and Solitons +nlin/0608024 Pattern Formation and Solitons +nlin/0608025 Exactly Solvable and Integrable Systems +nlin/0608031 Chaotic Dynamics +nlin/0608032 Chaotic Dynamics +nlin/0608034 Chaotic Dynamics +nlin/0608037 Exactly Solvable and Integrable Systems +nlin/0608042 Chaotic Dynamics +nlin/0608043 Adaptation and Self-Organizing Systems +nlin/0608054 Adaptation and Self-Organizing Systems +nlin/0608060 Exactly Solvable and Integrable Systems +nlin/0609006 Pattern Formation and Solitons +nlin/0609012 Exactly Solvable and Integrable Systems +nlin/0609014 Adaptation and Self-Organizing Systems +nlin/0609018 Pattern Formation and Solitons +nlin/0609019 Exactly Solvable and Integrable Systems +nlin/0609025 Chaotic Dynamics +nlin/0609035 Chaotic Dynamics +nlin/0609036 Chaotic Dynamics +nlin/0609037 Exactly Solvable and Integrable Systems +nlin/0609040 Chaotic Dynamics +nlin/0609041 Chaotic Dynamics +nlin/0609047 Chaotic Dynamics +nlin/0609051 Chaotic Dynamics +nlin/0609054 Pattern Formation and Solitons +nlin/0609061 Chaotic Dynamics +nlin/0609065 Exactly Solvable and Integrable Systems +nlin/0610003 Exactly Solvable and Integrable Systems +nlin/0610006 Pattern Formation and Solitons +nlin/0610007 Chaotic Dynamics +nlin/0610008 Pattern Formation and Solitons +nlin/0610012 Exactly Solvable and Integrable Systems +nlin/0610013 Chaotic Dynamics +nlin/0610015 Chaotic Dynamics +nlin/0610023 Chaotic Dynamics +nlin/0610026 Chaotic Dynamics +nlin/0610029 Exactly Solvable and Integrable Systems +nlin/0610030 Exactly Solvable and Integrable Systems +nlin/0610045 Exactly Solvable and Integrable Systems +nlin/0610057 Adaptation and Self-Organizing Systems +nlin/0610058 Exactly Solvable and Integrable Systems +nlin/0610064 Pattern Formation and Solitons +nlin/0610066 Exactly Solvable and Integrable Systems +nlin/0610068 Chaotic Dynamics +nlin/0610069 Pattern Formation and Solitons +nlin/0610072 Exactly Solvable and Integrable Systems +nlin/0610074 Exactly Solvable and Integrable Systems +nlin/0611001 Adaptation and Self-Organizing Systems +nlin/0611003 Exactly Solvable and Integrable Systems +nlin/0611023 Chaotic Dynamics +nlin/0611028 Pattern Formation and Solitons +nlin/0611030 Pattern Formation and Solitons +nlin/0611031 Adaptation and Self-Organizing Systems +nlin/0611038 Exactly Solvable and Integrable Systems +nlin/0611045 Chaotic Dynamics +nlin/0611051 Pattern Formation and Solitons +nlin/0611057 Chaotic Dynamics +nlin/0611059 Chaotic Dynamics +nlin/0612008 Chaotic Dynamics +nlin/0612009 Pattern Formation and Solitons +nlin/0612010 Chaotic Dynamics +nlin/0612011 Chaotic Dynamics +nlin/0612012 Pattern Formation and Solitons +nlin/0612015 Chaotic Dynamics +nlin/0612017 Pattern Formation and Solitons +nlin/0612022 Exactly Solvable and Integrable Systems +nlin/0612026 Chaotic Dynamics +nlin/0612029 Chaotic Dynamics +nlin/0612033 Chaotic Dynamics +nlin/0612036 Exactly Solvable and Integrable Systems +nlin/0612038 Exactly Solvable and Integrable Systems +nlin/0612041 Exactly Solvable and Integrable Systems +nlin/0612048 Exactly Solvable and Integrable Systems +nlin/0612052 Chaotic Dynamics +nlin/0612056 Chaotic Dynamics +nlin/0612058 Chaotic Dynamics +nlin/0612061 Chaotic Dynamics +nlin/0612065 Exactly Solvable and Integrable Systems +nucl-ex/0501003 +nucl-ex/0501005 +nucl-ex/0501006 +nucl-ex/0501007 +nucl-ex/0501013 +nucl-ex/0501014 +nucl-ex/0501021 +nucl-ex/0501022 +nucl-ex/0501024 +nucl-ex/0501025 +nucl-ex/0501028 +nucl-ex/0502001 +nucl-ex/0502002 +nucl-ex/0502010 +nucl-ex/0502011 +nucl-ex/0502014 +nucl-ex/0502022 +nucl-ex/0503001 +nucl-ex/0503006 +nucl-ex/0503011 +nucl-ex/0503012 +nucl-ex/0503013 +nucl-ex/0503023 +nucl-ex/0504002 +nucl-ex/0504003 +nucl-ex/0504004 +nucl-ex/0504007 +nucl-ex/0504013 +nucl-ex/0504017 +nucl-ex/0504019 +nucl-ex/0504020 +nucl-ex/0504023 +nucl-ex/0504024 +nucl-ex/0504030 +nucl-ex/0505005 +nucl-ex/0505014 +nucl-ex/0505021 +nucl-ex/0505022 +nucl-ex/0506006 +nucl-ex/0506013 +nucl-ex/0506017 +nucl-ex/0506019 +nucl-ex/0506023 +nucl-ex/0506024 +nucl-ex/0506027 +nucl-ex/0507008 +nucl-ex/0507009 +nucl-ex/0507011 +nucl-ex/0507014 +nucl-ex/0507015 +nucl-ex/0507017 +nucl-ex/0507020 +nucl-ex/0507023 +nucl-ex/0507024 +nucl-ex/0507025 +nucl-ex/0507026 +nucl-ex/0507027 +nucl-ex/0508010 +nucl-ex/0508013 +nucl-ex/0508015 +nucl-ex/0508017 +nucl-ex/0508018 +nucl-ex/0508020 +nucl-ex/0508021 +nucl-ex/0508029 +nucl-ex/0509006 +nucl-ex/0509007 +nucl-ex/0509008 +nucl-ex/0509009 +nucl-ex/0509012 +nucl-ex/0509013 +nucl-ex/0509017 +nucl-ex/0509018 +nucl-ex/0509020 +nucl-ex/0509022 +nucl-ex/0509024 +nucl-ex/0509025 +nucl-ex/0509026 +nucl-ex/0509027 +nucl-ex/0509028 +nucl-ex/0509037 +nucl-ex/0509038 +nucl-ex/0509041 +nucl-ex/0510012 +nucl-ex/0510019 +nucl-ex/0510027 +nucl-ex/0510029 +nucl-ex/0510035 +nucl-ex/0510037 +nucl-ex/0510040 +nucl-ex/0510048 +nucl-ex/0510052 +nucl-ex/0510058 +nucl-ex/0510060 +nucl-ex/0510061 +nucl-ex/0510062 +nucl-ex/0510077 +nucl-ex/0510080 +nucl-ex/0510083 +nucl-ex/0510085 +nucl-ex/0511006 +nucl-ex/0511008 +nucl-ex/0511013 +nucl-ex/0511014 +nucl-ex/0511020 +nucl-ex/0511027 +nucl-ex/0511029 +nucl-ex/0511030 +nucl-ex/0511032 +nucl-ex/0511033 +nucl-ex/0511043 +nucl-ex/0511048 +nucl-ex/0511053 +nucl-ex/0512001 +nucl-ex/0512002 +nucl-ex/0512008 +nucl-ex/0512009 +nucl-ex/0512010 +nucl-ex/0512011 +nucl-ex/0512012 +nucl-ex/0512017 +nucl-ex/0512023 +nucl-ex/0512029 +nucl-ex/0512031 +nucl-ex/0512032 +nucl-ex/0512042 +nucl-ex/0601002 +nucl-ex/0601004 +nucl-ex/0601005 +nucl-ex/0601009 +nucl-ex/0601010 +nucl-ex/0601015 +nucl-ex/0601016 +nucl-ex/0601017 +nucl-ex/0601019 +nucl-ex/0601021 +nucl-ex/0601022 +nucl-ex/0601023 +nucl-ex/0601024 +nucl-ex/0601026 +nucl-ex/0601028 +nucl-ex/0601029 +nucl-ex/0602001 +nucl-ex/0602005 +nucl-ex/0602009 +nucl-ex/0602013 +nucl-ex/0602016 +nucl-ex/0602017 +nucl-ex/0602019 +nucl-ex/0602020 +nucl-ex/0603005 +nucl-ex/0603007 +nucl-ex/0603008 +nucl-ex/0603012 +nucl-ex/0603019 +nucl-ex/0603022 +nucl-ex/0603024 +nucl-ex/0603031 +nucl-ex/0604005 +nucl-ex/0604008 +nucl-ex/0604012 +nucl-ex/0604013 +nucl-ex/0604016 +nucl-ex/0605004 +nucl-ex/0605010 +nucl-ex/0605019 +nucl-ex/0605026 +nucl-ex/0605034 +nucl-ex/0605035 +nucl-ex/0606002 +nucl-ex/0606004 +nucl-ex/0606005 +nucl-ex/0606008 +nucl-ex/0606012 +nucl-ex/0606020 +nucl-ex/0606025 +nucl-ex/0606031 +nucl-ex/0606034 +nucl-ex/0607002 +nucl-ex/0607010 +nucl-ex/0607011 +nucl-ex/0607013 +nucl-ex/0607016 +nucl-ex/0607021 +nucl-ex/0607026 +nucl-ex/0607030 +nucl-ex/0607031 +nucl-ex/0608007 +nucl-ex/0608015 +nucl-ex/0608016 +nucl-ex/0608019 +nucl-ex/0608021 +nucl-ex/0608026 +nucl-ex/0608030 +nucl-ex/0608034 +nucl-ex/0608037 +nucl-ex/0608040 +nucl-ex/0608043 +nucl-ex/0608045 +nucl-ex/0608048 +nucl-ex/0608052 +nucl-ex/0609011 +nucl-ex/0609012 +nucl-ex/0609014 +nucl-ex/0609018 +nucl-ex/0609031 +nucl-ex/0609036 +nucl-ex/0609043 +nucl-ex/0609046 +nucl-ex/0610019 +nucl-ex/0610038 +nucl-ex/0611011 +nucl-ex/0611014 +nucl-ex/0611021 +nucl-ex/0611039 +nucl-ex/0611041 +nucl-ex/0612003 +nucl-ex/0612018 +nucl-th/0501001 +nucl-th/0501002 +nucl-th/0501003 +nucl-th/0501006 +nucl-th/0501009 +nucl-th/0501013 +nucl-th/0501015 +nucl-th/0501017 +nucl-th/0501018 +nucl-th/0501020 +nucl-th/0501021 +nucl-th/0501023 +nucl-th/0501024 +nucl-th/0501026 +nucl-th/0501029 +nucl-th/0501030 +nucl-th/0501035 +nucl-th/0501037 +nucl-th/0501038 +nucl-th/0501039 +nucl-th/0501040 +nucl-th/0501041 +nucl-th/0501046 +nucl-th/0501050 +nucl-th/0501052 +nucl-th/0501058 +nucl-th/0501064 +nucl-th/0501066 +nucl-th/0501067 +nucl-th/0501068 +nucl-th/0501074 +nucl-th/0501075 +nucl-th/0501078 +nucl-th/0501079 +nucl-th/0501081 +nucl-th/0501082 +nucl-th/0501084 +nucl-th/0502006 +nucl-th/0502007 +nucl-th/0502008 +nucl-th/0502012 +nucl-th/0502014 +nucl-th/0502015 +nucl-th/0502016 +nucl-th/0502018 +nucl-th/0502019 +nucl-th/0502022 +nucl-th/0502025 +nucl-th/0502026 +nucl-th/0502027 +nucl-th/0502028 +nucl-th/0502030 +nucl-th/0502034 +nucl-th/0502035 +nucl-th/0502036 +nucl-th/0502038 +nucl-th/0502041 +nucl-th/0502042 +nucl-th/0502043 +nucl-th/0502045 +nucl-th/0502047 +nucl-th/0502049 +nucl-th/0502057 +nucl-th/0502060 +nucl-th/0502062 +nucl-th/0502063 +nucl-th/0502064 +nucl-th/0502067 +nucl-th/0502068 +nucl-th/0502076 +nucl-th/0502077 +nucl-th/0502080 +nucl-th/0502084 +nucl-th/0502086 +nucl-th/0503005 +nucl-th/0503006 +nucl-th/0503008 +nucl-th/0503010 +nucl-th/0503012 +nucl-th/0503013 +nucl-th/0503015 +nucl-th/0503017 +nucl-th/0503018 +nucl-th/0503024 +nucl-th/0503025 +nucl-th/0503026 +nucl-th/0503027 +nucl-th/0503031 +nucl-th/0503033 +nucl-th/0503035 +nucl-th/0503038 +nucl-th/0503039 +nucl-th/0503041 +nucl-th/0503044 +nucl-th/0503046 +nucl-th/0503052 +nucl-th/0503053 +nucl-th/0503055 +nucl-th/0503056 +nucl-th/0503057 +nucl-th/0503058 +nucl-th/0503060 +nucl-th/0503066 +nucl-th/0503069 +nucl-th/0503071 +nucl-th/0503072 +nucl-th/0503073 +nucl-th/0503074 +nucl-th/0503078 +nucl-th/0503079 +nucl-th/0503080 +nucl-th/0503086 +nucl-th/0504001 +nucl-th/0504002 +nucl-th/0504006 +nucl-th/0504010 +nucl-th/0504012 +nucl-th/0504013 +nucl-th/0504016 +nucl-th/0504017 +nucl-th/0504018 +nucl-th/0504021 +nucl-th/0504023 +nucl-th/0504024 +nucl-th/0504026 +nucl-th/0504027 +nucl-th/0504030 +nucl-th/0504031 +nucl-th/0504035 +nucl-th/0504036 +nucl-th/0504038 +nucl-th/0504042 +nucl-th/0504043 +nucl-th/0504045 +nucl-th/0504046 +nucl-th/0504048 +nucl-th/0504049 +nucl-th/0504051 +nucl-th/0504052 +nucl-th/0504054 +nucl-th/0504058 +nucl-th/0504061 +nucl-th/0504064 +nucl-th/0504065 +nucl-th/0504066 +nucl-th/0504070 +nucl-th/0504071 +nucl-th/0504074 +nucl-th/0504075 +nucl-th/0504081 +nucl-th/0504084 +nucl-th/0504088 +nucl-th/0505001 +nucl-th/0505002 +nucl-th/0505003 +nucl-th/0505005 +nucl-th/0505008 +nucl-th/0505011 +nucl-th/0505012 +nucl-th/0505014 +nucl-th/0505017 +nucl-th/0505020 +nucl-th/0505023 +nucl-th/0505024 +nucl-th/0505026 +nucl-th/0505028 +nucl-th/0505029 +nucl-th/0505030 +nucl-th/0505031 +nucl-th/0505032 +nucl-th/0505033 +nucl-th/0505035 +nucl-th/0505036 +nucl-th/0505037 +nucl-th/0505038 +nucl-th/0505039 +nucl-th/0505043 +nucl-th/0505046 +nucl-th/0505049 +nucl-th/0505055 +nucl-th/0505057 +nucl-th/0505062 +nucl-th/0505063 +nucl-th/0505065 +nucl-th/0505067 +nucl-th/0505070 +nucl-th/0505072 +nucl-th/0505075 +nucl-th/0505076 +nucl-th/0505077 +nucl-th/0505078 +nucl-th/0505082 +nucl-th/0505083 +nucl-th/0506001 +nucl-th/0506002 +nucl-th/0506003 +nucl-th/0506010 +nucl-th/0506011 +nucl-th/0506015 +nucl-th/0506016 +nucl-th/0506018 +nucl-th/0506019 +nucl-th/0506020 +nucl-th/0506021 +nucl-th/0506023 +nucl-th/0506024 +nucl-th/0506025 +nucl-th/0506028 +nucl-th/0506035 +nucl-th/0506036 +nucl-th/0506038 +nucl-th/0506042 +nucl-th/0506043 +nucl-th/0506048 +nucl-th/0506052 +nucl-th/0506054 +nucl-th/0506056 +nucl-th/0506058 +nucl-th/0506059 +nucl-th/0506061 +nucl-th/0506065 +nucl-th/0506067 +nucl-th/0506068 +nucl-th/0506069 +nucl-th/0506074 +nucl-th/0506076 +nucl-th/0506078 +nucl-th/0506086 +nucl-th/0507008 +nucl-th/0507009 +nucl-th/0507012 +nucl-th/0507015 +nucl-th/0507018 +nucl-th/0507020 +nucl-th/0507026 +nucl-th/0507032 +nucl-th/0507035 +nucl-th/0507038 +nucl-th/0507040 +nucl-th/0507042 +nucl-th/0507044 +nucl-th/0507048 +nucl-th/0507049 +nucl-th/0507051 +nucl-th/0507052 +nucl-th/0507060 +nucl-th/0507064 +nucl-th/0507065 +nucl-th/0507066 +nucl-th/0507068 +nucl-th/0507069 +nucl-th/0507071 +nucl-th/0507072 +nucl-th/0507073 +nucl-th/0507077 +nucl-th/0507078 +nucl-th/0508001 +nucl-th/0508004 +nucl-th/0508006 +nucl-th/0508007 +nucl-th/0508011 +nucl-th/0508012 +nucl-th/0508015 +nucl-th/0508017 +nucl-th/0508018 +nucl-th/0508022 +nucl-th/0508025 +nucl-th/0508027 +nucl-th/0508029 +nucl-th/0508031 +nucl-th/0508032 +nucl-th/0508034 +nucl-th/0508038 +nucl-th/0508039 +nucl-th/0508041 +nucl-th/0508042 +nucl-th/0508045 +nucl-th/0508046 +nucl-th/0508047 +nucl-th/0508050 +nucl-th/0508052 +nucl-th/0508056 +nucl-th/0508057 +nucl-th/0508058 +nucl-th/0508059 +nucl-th/0508063 +nucl-th/0508064 +nucl-th/0508065 +nucl-th/0508066 +nucl-th/0509003 +nucl-th/0509008 +nucl-th/0509009 +nucl-th/0509012 +nucl-th/0509013 +nucl-th/0509017 +nucl-th/0509018 +nucl-th/0509019 +nucl-th/0509021 +nucl-th/0509025 +nucl-th/0509026 +nucl-th/0509028 +nucl-th/0509029 +nucl-th/0509031 +nucl-th/0509036 +nucl-th/0509039 +nucl-th/0509042 +nucl-th/0509045 +nucl-th/0509047 +nucl-th/0509048 +nucl-th/0509050 +nucl-th/0509052 +nucl-th/0509059 +nucl-th/0509060 +nucl-th/0509062 +nucl-th/0509063 +nucl-th/0509066 +nucl-th/0509069 +nucl-th/0509070 +nucl-th/0509073 +nucl-th/0509074 +nucl-th/0509076 +nucl-th/0509078 +nucl-th/0509080 +nucl-th/0509081 +nucl-th/0509083 +nucl-th/0509084 +nucl-th/0509085 +nucl-th/0509095 +nucl-th/0509098 +nucl-th/0510002 +nucl-th/0510004 +nucl-th/0510008 +nucl-th/0510015 +nucl-th/0510016 +nucl-th/0510020 +nucl-th/0510027 +nucl-th/0510029 +nucl-th/0510033 +nucl-th/0510037 +nucl-th/0510038 +nucl-th/0510039 +nucl-th/0510040 +nucl-th/0510042 +nucl-th/0510044 +nucl-th/0510046 +nucl-th/0510047 +nucl-th/0510049 +nucl-th/0510051 +nucl-th/0510060 +nucl-th/0510061 +nucl-th/0510063 +nucl-th/0510065 +nucl-th/0510067 +nucl-th/0510068 +nucl-th/0510070 +nucl-th/0510071 +nucl-th/0510073 +nucl-th/0510080 +nucl-th/0510081 +nucl-th/0510082 +nucl-th/0510083 +nucl-th/0510085 +nucl-th/0510086 +nucl-th/0510087 +nucl-th/0510088 +nucl-th/0510092 +nucl-th/0510093 +nucl-th/0510095 +nucl-th/0510097 +nucl-th/0511002 +nucl-th/0511005 +nucl-th/0511008 +nucl-th/0511009 +nucl-th/0511010 +nucl-th/0511011 +nucl-th/0511013 +nucl-th/0511015 +nucl-th/0511016 +nucl-th/0511017 +nucl-th/0511018 +nucl-th/0511019 +nucl-th/0511020 +nucl-th/0511021 +nucl-th/0511022 +nucl-th/0511024 +nucl-th/0511028 +nucl-th/0511029 +nucl-th/0511032 +nucl-th/0511035 +nucl-th/0511039 +nucl-th/0511040 +nucl-th/0511041 +nucl-th/0511043 +nucl-th/0511047 +nucl-th/0511050 +nucl-th/0511052 +nucl-th/0511053 +nucl-th/0511054 +nucl-th/0511058 +nucl-th/0511059 +nucl-th/0511064 +nucl-th/0511066 +nucl-th/0511067 +nucl-th/0511068 +nucl-th/0511069 +nucl-th/0511070 +nucl-th/0511073 +nucl-th/0511074 +nucl-th/0511075 +nucl-th/0511080 +nucl-th/0511082 +nucl-th/0511084 +nucl-th/0512001 +nucl-th/0512002 +nucl-th/0512003 +nucl-th/0512005 +nucl-th/0512007 +nucl-th/0512010 +nucl-th/0512011 +nucl-th/0512012 +nucl-th/0512015 +nucl-th/0512016 +nucl-th/0512017 +nucl-th/0512021 +nucl-th/0512025 +nucl-th/0512031 +nucl-th/0512040 +nucl-th/0512041 +nucl-th/0512042 +nucl-th/0512043 +nucl-th/0512050 +nucl-th/0512052 +nucl-th/0512053 +nucl-th/0512055 +nucl-th/0512058 +nucl-th/0512061 +nucl-th/0512066 +nucl-th/0512070 +nucl-th/0512071 +nucl-th/0512075 +nucl-th/0512080 +nucl-th/0512081 +nucl-th/0512086 +nucl-th/0512090 +nucl-th/0512096 +nucl-th/0512097 +nucl-th/0512102 +nucl-th/0512104 +nucl-th/0512108 +nucl-th/0601001 +nucl-th/0601005 +nucl-th/0601006 +nucl-th/0601008 +nucl-th/0601013 +nucl-th/0601016 +nucl-th/0601017 +nucl-th/0601018 +nucl-th/0601019 +nucl-th/0601020 +nucl-th/0601021 +nucl-th/0601023 +nucl-th/0601025 +nucl-th/0601026 +nucl-th/0601033 +nucl-th/0601034 +nucl-th/0601035 +nucl-th/0601038 +nucl-th/0601043 +nucl-th/0601045 +nucl-th/0601046 +nucl-th/0601047 +nucl-th/0601049 +nucl-th/0601052 +nucl-th/0601053 +nucl-th/0601054 +nucl-th/0601056 +nucl-th/0601058 +nucl-th/0601065 +nucl-th/0601068 +nucl-th/0601069 +nucl-th/0601070 +nucl-th/0601073 +nucl-th/0601074 +nucl-th/0601077 +nucl-th/0601080 +nucl-th/0601081 +nucl-th/0601083 +nucl-th/0601085 +nucl-th/0601089 +nucl-th/0601091 +nucl-th/0601095 +nucl-th/0601097 +nucl-th/0601101 +nucl-th/0601102 +nucl-th/0602004 +nucl-th/0602005 +nucl-th/0602009 +nucl-th/0602011 +nucl-th/0602012 +nucl-th/0602015 +nucl-th/0602016 +nucl-th/0602017 +nucl-th/0602022 +nucl-th/0602025 +nucl-th/0602033 +nucl-th/0602034 +nucl-th/0602036 +nucl-th/0602039 +nucl-th/0602041 +nucl-th/0602048 +nucl-th/0602055 +nucl-th/0602057 +nucl-th/0602060 +nucl-th/0602061 +nucl-th/0602064 +nucl-th/0602068 +nucl-th/0602069 +nucl-th/0602072 +nucl-th/0602074 +nucl-th/0603002 +nucl-th/0603006 +nucl-th/0603007 +nucl-th/0603008 +nucl-th/0603010 +nucl-th/0603015 +nucl-th/0603021 +nucl-th/0603023 +nucl-th/0603024 +nucl-th/0603027 +nucl-th/0603035 +nucl-th/0603036 +nucl-th/0603038 +nucl-th/0603039 +nucl-th/0603049 +nucl-th/0603052 +nucl-th/0603053 +nucl-th/0603055 +nucl-th/0603057 +nucl-th/0603059 +nucl-th/0603062 +nucl-th/0603067 +nucl-th/0603068 +nucl-th/0603069 +nucl-th/0603071 +nucl-th/0603072 +nucl-th/0603074 +nucl-th/0604001 +nucl-th/0604004 +nucl-th/0604005 +nucl-th/0604010 +nucl-th/0604012 +nucl-th/0604015 +nucl-th/0604017 +nucl-th/0604018 +nucl-th/0604020 +nucl-th/0604021 +nucl-th/0604022 +nucl-th/0604023 +nucl-th/0604024 +nucl-th/0604033 +nucl-th/0604034 +nucl-th/0604036 +nucl-th/0604046 +nucl-th/0604047 +nucl-th/0604048 +nucl-th/0604051 +nucl-th/0604057 +nucl-th/0604058 +nucl-th/0604068 +nucl-th/0604069 +nucl-th/0604070 +nucl-th/0604072 +nucl-th/0605002 +nucl-th/0605012 +nucl-th/0605017 +nucl-th/0605019 +nucl-th/0605020 +nucl-th/0605029 +nucl-th/0605032 +nucl-th/0605035 +nucl-th/0605037 +nucl-th/0605041 +nucl-th/0605055 +nucl-th/0605059 +nucl-th/0605060 +nucl-th/0605083 +nucl-th/0606001 +nucl-th/0606002 +nucl-th/0606004 +nucl-th/0606006 +nucl-th/0606007 +nucl-th/0606009 +nucl-th/0606012 +nucl-th/0606014 +nucl-th/0606015 +nucl-th/0606016 +nucl-th/0606023 +nucl-th/0606024 +nucl-th/0606028 +nucl-th/0606032 +nucl-th/0606035 +nucl-th/0606040 +nucl-th/0606041 +nucl-th/0606051 +nucl-th/0606053 +nucl-th/0606054 +nucl-th/0606061 +nucl-th/0606063 +nucl-th/0607004 +nucl-th/0607011 +nucl-th/0607020 +nucl-th/0607021 +nucl-th/0607025 +nucl-th/0607033 +nucl-th/0607034 +nucl-th/0607043 +nucl-th/0607048 +nucl-th/0607056 +nucl-th/0607065 +nucl-th/0607066 +nucl-th/0607071 +nucl-th/0608005 +nucl-th/0608026 +nucl-th/0608027 +nucl-th/0608041 +nucl-th/0608046 +nucl-th/0608052 +nucl-th/0608071 +nucl-th/0609005 +nucl-th/0609006 +nucl-th/0609009 +nucl-th/0609016 +nucl-th/0609018 +nucl-th/0609026 +nucl-th/0609027 +nucl-th/0609028 +nucl-th/0609032 +nucl-th/0609034 +nucl-th/0609045 +nucl-th/0609049 +nucl-th/0609062 +nucl-th/0609066 +nucl-th/0609068 +nucl-th/0609082 +nucl-th/0610005 +nucl-th/0610020 +nucl-th/0610023 +nucl-th/0610029 +nucl-th/0610054 +nucl-th/0610057 +nucl-th/0610064 +nucl-th/0610077 +nucl-th/0610089 +nucl-th/0610092 +nucl-th/0611052 +nucl-th/0611102 +nucl-th/0612014 +nucl-th/0612015 +nucl-th/0612039 +nucl-th/0612040 +nucl-th/0612057 +nucl-th/0612066 +nucl-th/0612067 +nucl-th/0612073 +nucl-th/0612094 +physics/0501001 Optics +physics/0501002 Instrumentation and Detectors +physics/0501003 Instrumentation and Detectors +physics/0501005 Fluid Dynamics +physics/0501006 Accelerator Physics +physics/0501007 Atomic Physics +physics/0501008 Atomic Physics +physics/0501009 Atomic Physics +physics/0501015 Fluid Dynamics +physics/0501016 Biological Physics +physics/0501020 Plasma Physics +physics/0501022 Geophysics +physics/0501032 Atomic Physics +physics/0501038 Computational Physics +physics/0501039 Plasma Physics +physics/0501057 Atomic Physics +physics/0501062 Accelerator Physics +physics/0501065 Optics +physics/0501069 Atomic and Molecular Clusters +physics/0501072 Optics +physics/0501073 Physics and Society +physics/0501075 Optics +physics/0501076 Optics +physics/0501079 Atomic Physics +physics/0501083 History and Philosophy of Physics +physics/0501084 Plasma Physics +physics/0501085 Instrumentation and Detectors +physics/0501087 Data Analysis, Statistics and Probability +physics/0501089 Optics +physics/0501090 Atomic Physics +physics/0501092 Atomic Physics +physics/0501094 Atomic and Molecular Clusters +physics/0501099 Biological Physics +physics/0501100 Atomic Physics +physics/0501102 Geophysics +physics/0501103 Atomic Physics +physics/0501104 Atmospheric and Oceanic Physics +physics/0501105 Data Analysis, Statistics and Probability +physics/0501115 Optics +physics/0501116 Optics +physics/0501119 Optics +physics/0501121 Geophysics +physics/0501125 Atomic and Molecular Clusters +physics/0501133 Biological Physics +physics/0501135 Classical Physics +physics/0501142 Optics +physics/0502002 Computational Physics +physics/0502004 Instrumentation and Detectors +physics/0502009 Optics +physics/0502010 Atomic Physics +physics/0502016 Atomic Physics +physics/0502019 General Physics +physics/0502020 Optics +physics/0502022 Atomic and Molecular Clusters +physics/0502026 Instrumentation and Detectors +physics/0502027 Instrumentation and Detectors +physics/0502029 Biological Physics +physics/0502030 Plasma Physics +physics/0502031 Atomic Physics +physics/0502034 Optics +physics/0502039 Computational Physics +physics/0502044 Plasma Physics +physics/0502049 General Physics +physics/0502050 Atomic Physics +physics/0502053 Physics Education +physics/0502054 Physics Education +physics/0502056 Atomic Physics +physics/0502057 Optics +physics/0502060 Computational Physics +physics/0502063 Data Analysis, Statistics and Probability +physics/0502070 Optics +physics/0502071 Instrumentation and Detectors +physics/0502073 Atomic Physics +physics/0502080 Medical Physics +physics/0502081 Physics and Society +physics/0502085 Atmospheric and Oceanic Physics +physics/0502090 Atomic Physics +physics/0502093 Optics +physics/0502097 Plasma Physics +physics/0502104 Atomic Physics +physics/0502105 Optics +physics/0502108 Classical Physics +physics/0502112 Chemical Physics +physics/0502117 Atomic Physics +physics/0502119 Physics and Society +physics/0502124 Optics +physics/0502130 Optics +physics/0502144 Physics and Society +physics/0502145 Chemical Physics +physics/0502146 Fluid Dynamics +physics/0502147 Chemical Physics +physics/0502150 Data Analysis, Statistics and Probability +physics/0502152 Data Analysis, Statistics and Probability +physics/0502155 Classical Physics +physics/0503004 Physics and Society +physics/0503005 Instrumentation and Detectors +physics/0503008 Plasma Physics +physics/0503012 Instrumentation and Detectors +physics/0503013 Computational Physics +physics/0503014 Physics and Society +physics/0503015 Instrumentation and Detectors +physics/0503018 Plasma Physics +physics/0503024 Physics and Society +physics/0503025 Optics +physics/0503031 Physics and Society +physics/0503039 Optics +physics/0503040 Data Analysis, Statistics and Probability +physics/0503041 Optics +physics/0503050 Data Analysis, Statistics and Probability +physics/0503053 Data Analysis, Statistics and Probability +physics/0503054 Instrumentation and Detectors +physics/0503060 Optics +physics/0503065 Instrumentation and Detectors +physics/0503067 Plasma Physics +physics/0503071 Physics Education +physics/0503075 Classical Physics +physics/0503080 Instrumentation and Detectors +physics/0503085 Physics and Society +physics/0503088 Instrumentation and Detectors +physics/0503091 Fluid Dynamics +physics/0503093 Computational Physics +physics/0503097 Biological Physics +physics/0503100 Computational Physics +physics/0503101 Physics and Society +physics/0503103 Space Physics +physics/0503104 Atomic Physics +physics/0503115 Physics and Society +physics/0503117 Atomic Physics +physics/0503118 Optics +physics/0503122 Optics +physics/0503127 Biological Physics +physics/0503128 Physics and Society +physics/0503131 Optics +physics/0503145 Instrumentation and Detectors +physics/0503149 Physics and Society +physics/0503160 Fluid Dynamics +physics/0503162 Fluid Dynamics +physics/0503165 Fluid Dynamics +physics/0503166 Optics +physics/0503168 Physics and Society +physics/0503173 Optics +physics/0503177 Physics and Society +physics/0503178 Chemical Physics +physics/0503185 Instrumentation and Detectors +physics/0503187 Atmospheric and Oceanic Physics +physics/0503189 Physics and Society +physics/0503191 Computational Physics +physics/0503193 General Physics +physics/0503195 Atomic Physics +physics/0503202 Atomic Physics +physics/0503203 General Physics +physics/0503208 Fluid Dynamics +physics/0503209 Plasma Physics +physics/0503211 Optics +physics/0503216 Popular Physics +physics/0503217 Fluid Dynamics +physics/0503218 Chemical Physics +physics/0503219 Fluid Dynamics +physics/0503222 Atomic Physics +physics/0503223 Instrumentation and Detectors +physics/0503224 Computational Physics +physics/0503233 Fluid Dynamics +physics/0503236 Chemical Physics +physics/0503237 Instrumentation and Detectors +physics/0503240 Atomic Physics +physics/0503241 Fluid Dynamics +physics/0503243 Instrumentation and Detectors +physics/0503246 Optics +physics/0504004 Optics +physics/0504005 Plasma Physics +physics/0504011 Optics +physics/0504017 Physics and Society +physics/0504021 Plasma Physics +physics/0504022 Atomic Physics +physics/0504028 Chemical Physics +physics/0504030 Optics +physics/0504032 Optics +physics/0504033 Physics and Society +physics/0504038 Physics and Society +physics/0504039 Atomic Physics +physics/0504042 Physics and Society +physics/0504056 Fluid Dynamics +physics/0504057 Optics +physics/0504058 Biological Physics +physics/0504059 Physics and Society +physics/0504069 Optics +physics/0504072 Classical Physics +physics/0504074 Atomic Physics +physics/0504077 Optics +physics/0504081 Biological Physics +physics/0504088 Optics +physics/0504090 Atomic and Molecular Clusters +physics/0504091 Optics +physics/0504095 Classical Physics +physics/0504100 Physics and Society +physics/0504102 Optics +physics/0504103 Atomic Physics +physics/0504104 Atomic Physics +physics/0504105 Atomic Physics +physics/0504113 Atomic Physics +physics/0504114 General Physics +physics/0504115 Atomic Physics +physics/0504118 Biological Physics +physics/0504119 Optics +physics/0504125 Atomic Physics +physics/0504132 Optics +physics/0504134 Physics and Society +physics/0504135 Atomic Physics +physics/0504136 Physics and Society +physics/0504140 Biological Physics +physics/0504147 Instrumentation and Detectors +physics/0504149 Data Analysis, Statistics and Probability +physics/0504151 Instrumentation and Detectors +physics/0504152 Plasma Physics +physics/0504159 Instrumentation and Detectors +physics/0504162 Optics +physics/0504163 Physics and Society +physics/0504166 General Physics +physics/0504170 Instrumentation and Detectors +physics/0504172 Optics +physics/0504175 Data Analysis, Statistics and Probability +physics/0504183 Accelerator Physics +physics/0504184 Instrumentation and Detectors +physics/0504185 Physics and Society +physics/0504187 Physics and Society +physics/0504194 Instrumentation and Detectors +physics/0504196 Physics and Society +physics/0504203 Atmospheric and Oceanic Physics +physics/0504204 Fluid Dynamics +physics/0504207 Plasma Physics +physics/0504208 Optics +physics/0504209 Plasma Physics +physics/0504216 Atomic Physics +physics/0504220 Instrumentation and Detectors +physics/0505001 Biological Physics +physics/0505002 Biological Physics +physics/0505003 Chemical Physics +physics/0505004 Classical Physics +physics/0505006 Optics +physics/0505009 Biological Physics +physics/0505016 Optics +physics/0505019 Physics and Society +physics/0505021 Optics +physics/0505029 Atomic and Molecular Clusters +physics/0505046 Instrumentation and Detectors +physics/0505048 Atomic Physics +physics/0505051 Optics +physics/0505056 Fluid Dynamics +physics/0505057 Biological Physics +physics/0505062 Optics +physics/0505066 General Physics +physics/0505070 Plasma Physics +physics/0505071 Physics and Society +physics/0505073 Fluid Dynamics +physics/0505074 Physics and Society +physics/0505081 Atomic Physics +physics/0505092 Physics Education +physics/0505093 Computational Physics +physics/0505094 Optics +physics/0505097 Chemical Physics +physics/0505098 Optics +physics/0505101 Plasma Physics +physics/0505105 Optics +physics/0505109 Chemical Physics +physics/0505110 Instrumentation and Detectors +physics/0505114 Fluid Dynamics +physics/0505115 Physics and Society +physics/0505128 Physics and Society +physics/0505129 Fluid Dynamics +physics/0505131 Atomic and Molecular Clusters +physics/0505132 Classical Physics +physics/0505139 General Physics +physics/0505153 Optics +physics/0505155 Fluid Dynamics +physics/0505157 Physics and Society +physics/0505158 Physics and Society +physics/0505160 Atomic Physics +physics/0505167 Optics +physics/0505168 Medical Physics +physics/0505179 Biological Physics +physics/0505184 Atomic Physics +physics/0505187 Optics +physics/0505195 Classical Physics +physics/0505197 Physics and Society +physics/0505198 Optics +physics/0505202 Chemical Physics +physics/0505203 Fluid Dynamics +physics/0505205 Chemical Physics +physics/0505206 Atomic Physics +physics/0505213 Optics +physics/0506004 Optics +physics/0506006 Optics +physics/0506009 Physics and Society +physics/0506010 Data Analysis, Statistics and Probability +physics/0506011 Atomic Physics +physics/0506014 Biological Physics +physics/0506020 Computational Physics +physics/0506021 Computational Physics +physics/0506026 Fluid Dynamics +physics/0506034 Fluid Dynamics +physics/0506036 Atomic Physics +physics/0506047 Chemical Physics +physics/0506056 Physics and Society +physics/0506059 Plasma Physics +physics/0506061 Atomic Physics +physics/0506066 Physics and Society +physics/0506068 Instrumentation and Detectors +physics/0506069 Atomic Physics +physics/0506087 Biological Physics +physics/0506089 Optics +physics/0506090 Atomic Physics +physics/0506092 Optics +physics/0506094 Classical Physics +physics/0506095 Geophysics +physics/0506096 Optics +physics/0506097 Optics +physics/0506098 Physics and Society +physics/0506101 Physics and Society +physics/0506102 Optics +physics/0506104 Atomic Physics +physics/0506105 Optics +physics/0506107 Chemical Physics +physics/0506112 Optics +physics/0506113 Optics +physics/0506117 Data Analysis, Statistics and Probability +physics/0506120 Optics +physics/0506121 Atomic and Molecular Clusters +physics/0506122 Physics and Society +physics/0506126 Physics and Society +physics/0506127 Biological Physics +physics/0506129 Optics +physics/0506132 Instrumentation and Detectors +physics/0506135 Plasma Physics +physics/0506136 Optics +physics/0506139 Computational Physics +physics/0506141 Optics +physics/0506146 Computational Physics +physics/0506149 Optics +physics/0506150 Optics +physics/0506151 Physics and Society +physics/0506152 Chemical Physics +physics/0506155 Fluid Dynamics +physics/0506158 Optics +physics/0506160 General Physics +physics/0506163 Atomic Physics +physics/0506167 Optics +physics/0506170 Physics and Society +physics/0506172 Instrumentation and Detectors +physics/0506174 Optics +physics/0506175 Optics +physics/0506178 Optics +physics/0506182 Chemical Physics +physics/0506187 Atomic Physics +physics/0506196 Optics +physics/0506199 Atomic Physics +physics/0506205 Physics Education +physics/0506210 Atomic Physics +physics/0506212 Optics +physics/0506220 Atomic Physics +physics/0506221 Plasma Physics +physics/0506232 Atomic Physics +physics/0507001 Optics +physics/0507004 Physics and Society +physics/0507011 Instrumentation and Detectors +physics/0507012 Physics and Society +physics/0507013 Instrumentation and Detectors +physics/0507014 Biological Physics +physics/0507031 Atomic and Molecular Clusters +physics/0507032 Physics and Society +physics/0507039 Optics +physics/0507041 Atomic Physics +physics/0507045 Optics +physics/0507046 Atomic Physics +physics/0507048 Instrumentation and Detectors +physics/0507050 Fluid Dynamics +physics/0507052 Atomic and Molecular Clusters +physics/0507053 Fluid Dynamics +physics/0507055 Physics Education +physics/0507056 Biological Physics +physics/0507058 Instrumentation and Detectors +physics/0507066 Fluid Dynamics +physics/0507068 Optics +physics/0507079 Instrumentation and Detectors +physics/0507083 Medical Physics +physics/0507086 Fluid Dynamics +physics/0507089 Atomic Physics +physics/0507093 Physics and Society +physics/0507094 Physics and Society +physics/0507096 Atomic and Molecular Clusters +physics/0507102 General Physics +physics/0507109 Optics +physics/0507112 Atomic Physics +physics/0507117 General Physics +physics/0507119 Plasma Physics +physics/0507120 Physics and Society +physics/0507121 Plasma Physics +physics/0507122 Physics and Society +physics/0507128 Chemical Physics +physics/0507144 Fluid Dynamics +physics/0507147 Physics and Society +physics/0507149 Physics and Society +physics/0507150 Classical Physics +physics/0507151 Physics and Society +physics/0507156 Optics +physics/0507158 Physics and Society +physics/0507159 Physics and Society +physics/0507160 Physics and Society +physics/0507163 Physics and Society +physics/0507164 Geophysics +physics/0507166 Atomic Physics +physics/0507168 Physics and Society +physics/0507173 General Physics +physics/0507179 Physics and Society +physics/0507180 Atomic Physics +physics/0507181 Atomic Physics +physics/0507187 Atomic Physics +physics/0507212 Space Physics +physics/0508004 Optics +physics/0508007 Atomic Physics +physics/0508011 Biological Physics +physics/0508014 Optics +physics/0508015 Optics +physics/0508024 Chemical Physics +physics/0508027 Physics and Society +physics/0508029 Physics and Society +physics/0508038 Atomic Physics +physics/0508041 Atomic Physics +physics/0508049 History and Philosophy of Physics +physics/0508051 Optics +physics/0508057 Chemical Physics +physics/0508060 Atomic Physics +physics/0508062 Chemical Physics +physics/0508064 Instrumentation and Detectors +physics/0508065 Physics and Society +physics/0508066 Data Analysis, Statistics and Probability +physics/0508068 Data Analysis, Statistics and Probability +physics/0508069 Atomic Physics +physics/0508070 Classical Physics +physics/0508072 Optics +physics/0508073 Physics and Society +physics/0508077 Physics and Society +physics/0508078 Optics +physics/0508085 Chemical Physics +physics/0508087 Atomic Physics +physics/0508088 Fluid Dynamics +physics/0508094 Biological Physics +physics/0508095 Biological Physics +physics/0508098 Instrumentation and Detectors +physics/0508099 Classical Physics +physics/0508100 Atomic Physics +physics/0508103 Optics +physics/0508109 Plasma Physics +physics/0508110 Optics +physics/0508112 Biological Physics +physics/0508114 Physics Education +physics/0508119 Atomic Physics +physics/0508120 Atomic Physics +physics/0508122 Physics Education +physics/0508125 Plasma Physics +physics/0508127 Optics +physics/0508140 Atomic Physics +physics/0508142 Classical Physics +physics/0508145 Physics and Society +physics/0508147 Geophysics +physics/0508157 Atomic and Molecular Clusters +physics/0508159 Physics and Society +physics/0508161 Chemical Physics +physics/0508164 Physics and Society +physics/0508165 Atomic Physics +physics/0508168 Physics and Society +physics/0508178 Physics and Society +physics/0508190 Optics +physics/0508194 Physics and Society +physics/0508196 Atomic Physics +physics/0508197 Atomic Physics +physics/0508199 History and Philosophy of Physics +physics/0508200 Fluid Dynamics +physics/0508208 Optics +physics/0508212 Plasma Physics +physics/0508215 Fluid Dynamics +physics/0508216 General Physics +physics/0508217 Atomic Physics +physics/0508223 Popular Physics +physics/0508229 Physics and Society +physics/0508235 Optics +physics/0509001 Computational Physics +physics/0509002 Optics +physics/0509006 Fluid Dynamics +physics/0509010 Physics and Society +physics/0509013 Instrumentation and Detectors +physics/0509018 Physics and Society +physics/0509019 Fluid Dynamics +physics/0509025 Biological Physics +physics/0509028 Plasma Physics +physics/0509036 Optics +physics/0509050 Physics and Society +physics/0509056 Atomic Physics +physics/0509060 Optics +physics/0509063 Optics +physics/0509069 Plasma Physics +physics/0509073 Optics +physics/0509078 Physics and Society +physics/0509083 Biological Physics +physics/0509084 Atomic Physics +physics/0509087 Fluid Dynamics +physics/0509096 Accelerator Physics +physics/0509101 Medical Physics +physics/0509104 Optics +physics/0509105 Atomic Physics +physics/0509109 Atomic Physics +physics/0509110 Chemical Physics +physics/0509112 Optics +physics/0509115 Optics +physics/0509123 Atomic Physics +physics/0509124 Physics and Society +physics/0509130 Atomic Physics +physics/0509133 Fluid Dynamics +physics/0509139 Classical Physics +physics/0509140 Biological Physics +physics/0509141 Atomic and Molecular Clusters +physics/0509143 Atomic Physics +physics/0509145 Atmospheric and Oceanic Physics +physics/0509149 Optics +physics/0509152 Physics and Society +physics/0509157 Atomic Physics +physics/0509160 Chemical Physics +physics/0509162 Atomic and Molecular Clusters +physics/0509175 Accelerator Physics +physics/0509176 Atomic Physics +physics/0509180 Plasma Physics +physics/0509181 Optics +physics/0509183 Physics and Society +physics/0509185 Physics and Society +physics/0509186 Plasma Physics +physics/0509188 Optics +physics/0509189 Atomic Physics +physics/0509190 Plasma Physics +physics/0509200 Fluid Dynamics +physics/0509201 Physics Education +physics/0509208 Fluid Dynamics +physics/0509209 Optics +physics/0509211 Atomic Physics +physics/0509229 Computational Physics +physics/0509230 Physics and Society +physics/0509232 Optics +physics/0509236 Atomic Physics +physics/0509238 Plasma Physics +physics/0509243 Biological Physics +physics/0509247 Physics and Society +physics/0509256 Physics and Society +physics/0509257 Data Analysis, Statistics and Probability +physics/0509264 Optics +physics/0509266 Instrumentation and Detectors +physics/0509267 Optics +physics/0509268 Fluid Dynamics +physics/0510004 Biological Physics +physics/0510005 Biological Physics +physics/0510010 Classical Physics +physics/0510015 History and Philosophy of Physics +physics/0510019 Physics and Society +physics/0510021 Instrumentation and Detectors +physics/0510022 Optics +physics/0510034 Accelerator Physics +physics/0510038 Physics and Society +physics/0510039 General Physics +physics/0510040 Instrumentation and Detectors +physics/0510046 Instrumentation and Detectors +physics/0510048 Atomic Physics +physics/0510053 Plasma Physics +physics/0510056 Atomic Physics +physics/0510059 Fluid Dynamics +physics/0510060 Computational Physics +physics/0510061 Biological Physics +physics/0510062 Data Analysis, Statistics and Probability +physics/0510064 Physics and Society +physics/0510065 Physics and Society +physics/0510066 Physics and Society +physics/0510075 Physics and Society +physics/0510079 Atomic Physics +physics/0510081 Geophysics +physics/0510084 Atomic Physics +physics/0510092 Atomic Physics +physics/0510100 Fluid Dynamics +physics/0510102 Popular Physics +physics/0510117 Physics and Society +physics/0510127 Classical Physics +physics/0510131 Plasma Physics +physics/0510132 Optics +physics/0510134 Atomic Physics +physics/0510138 Optics +physics/0510141 Physics and Society +physics/0510146 Biological Physics +physics/0510151 Physics and Society +physics/0510152 Accelerator Physics +physics/0510155 Classical Physics +physics/0510158 Chemical Physics +physics/0510160 Atomic Physics +physics/0510161 Atomic Physics +physics/0510162 Physics and Society +physics/0510165 Instrumentation and Detectors +physics/0510166 Atomic Physics +physics/0510167 Physics and Society +physics/0510173 Medical Physics +physics/0510183 Atomic Physics +physics/0510184 Optics +physics/0510187 Atomic Physics +physics/0510189 Plasma Physics +physics/0510193 Atomic Physics +physics/0510195 Computational Physics +physics/0510200 Optics +physics/0510204 Physics Education +physics/0510207 Optics +physics/0510210 Biological Physics +physics/0510211 Atmospheric and Oceanic Physics +physics/0510212 Optics +physics/0510215 Geophysics +physics/0510217 Chemical Physics +physics/0510220 Chemical Physics +physics/0510221 Instrumentation and Detectors +physics/0510222 Optics +physics/0510223 Atomic Physics +physics/0510234 Atomic Physics +physics/0510237 Physics and Society +physics/0510238 Instrumentation and Detectors +physics/0510239 Physics and Society +physics/0510241 Atomic Physics +physics/0510244 Atomic Physics +physics/0510245 Medical Physics +physics/0510246 Atomic Physics +physics/0510247 Atomic Physics +physics/0510249 Physics and Society +physics/0510250 Instrumentation and Detectors +physics/0510252 Chemical Physics +physics/0510253 Optics +physics/0510257 Physics and Society +physics/0510260 Data Analysis, Statistics and Probability +physics/0510262 Instrumentation and Detectors +physics/0510266 Instrumentation and Detectors +physics/0510268 Atomic Physics +physics/0510270 Atomic Physics +physics/0510273 Optics +physics/0510274 Atomic Physics +physics/0510277 Atomic Physics +physics/0511003 Atomic Physics +physics/0511004 Computational Physics +physics/0511006 Physics and Society +physics/0511009 Biological Physics +physics/0511010 Optics +physics/0511011 Accelerator Physics +physics/0511015 Accelerator Physics +physics/0511016 Data Analysis, Statistics and Probability +physics/0511022 Instrumentation and Detectors +physics/0511024 Geophysics +physics/0511025 Optics +physics/0511035 Atomic Physics +physics/0511036 Biological Physics +physics/0511048 Accelerator Physics +physics/0511054 Classical Physics +physics/0511058 Biological Physics +physics/0511060 Atomic Physics +physics/0511063 Physics and Society +physics/0511070 Plasma Physics +physics/0511073 Physics and Society +physics/0511075 Fluid Dynamics +physics/0511082 Physics and Society +physics/0511084 Physics and Society +physics/0511085 Fluid Dynamics +physics/0511087 Atomic Physics +physics/0511095 Optics +physics/0511105 Physics and Society +physics/0511107 Classical Physics +physics/0511110 Optics +physics/0511113 Classical Physics +physics/0511118 Data Analysis, Statistics and Probability +physics/0511124 Plasma Physics +physics/0511125 Chemical Physics +physics/0511139 Optics +physics/0511146 Chemical Physics +physics/0511152 Biological Physics +physics/0511153 Optics +physics/0511154 Biological Physics +physics/0511155 Chemical Physics +physics/0511157 General Physics +physics/0511162 Atomic Physics +physics/0511163 Classical Physics +physics/0511166 Instrumentation and Detectors +physics/0511168 Atomic Physics +physics/0511171 Optics +physics/0511174 Fluid Dynamics +physics/0511179 Atomic Physics +physics/0511180 Atomic Physics +physics/0511184 Instrumentation and Detectors +physics/0511190 Chemical Physics +physics/0511193 Optics +physics/0511195 Plasma Physics +physics/0511196 Plasma Physics +physics/0511199 Atomic Physics +physics/0511204 Fluid Dynamics +physics/0511220 Physics and Society +physics/0511221 Instrumentation and Detectors +physics/0511234 Accelerator Physics +physics/0511237 Physics and Society +physics/0511239 Atomic Physics +physics/0511246 Optics +physics/0511251 Fluid Dynamics +physics/0512004 Instrumentation and Detectors +physics/0512005 Data Analysis, Statistics and Probability +physics/0512007 Instrumentation and Detectors +physics/0512012 Geophysics +physics/0512014 Fluid Dynamics +physics/0512027 Instrumentation and Detectors +physics/0512038 Fluid Dynamics +physics/0512040 Optics +physics/0512041 Atomic Physics +physics/0512052 Optics +physics/0512055 Optics +physics/0512058 Physics and Society +physics/0512070 Optics +physics/0512074 Computational Physics +physics/0512076 Biological Physics +physics/0512081 Data Analysis, Statistics and Probability +physics/0512083 Optics +physics/0512084 Atomic Physics +physics/0512085 Atomic and Molecular Clusters +physics/0512088 Atomic Physics +physics/0512093 Chemical Physics +physics/0512095 Fluid Dynamics +physics/0512097 Instrumentation and Detectors +physics/0512102 Fluid Dynamics +physics/0512111 Atomic Physics +physics/0512116 Atomic Physics +physics/0512119 Chemical Physics +physics/0512125 Geophysics +physics/0512126 Atomic Physics +physics/0512127 Physics and Society +physics/0512130 Chemical Physics +physics/0512136 Instrumentation and Detectors +physics/0512137 Optics +physics/0512138 Optics +physics/0512146 Optics +physics/0512148 Optics +physics/0512155 Physics and Society +physics/0512156 Optics +physics/0512157 Instrumentation and Detectors +physics/0512159 Atomic Physics +physics/0512161 Optics +physics/0512163 Data Analysis, Statistics and Probability +physics/0512167 Data Analysis, Statistics and Probability +physics/0512176 Atomic Physics +physics/0512183 Atomic Physics +physics/0512184 Atomic Physics +physics/0512185 Fluid Dynamics +physics/0512187 Physics and Society +physics/0512188 Atomic Physics +physics/0512191 Plasma Physics +physics/0512192 Instrumentation and Detectors +physics/0512210 Physics and Society +physics/0512211 Computational Physics +physics/0512212 Optics +physics/0512213 Plasma Physics +physics/0512219 Biological Physics +physics/0512226 Optics +physics/0512231 Plasma Physics +physics/0512232 Data Analysis, Statistics and Probability +physics/0512241 Atmospheric and Oceanic Physics +physics/0512242 Fluid Dynamics +physics/0512243 Classical Physics +physics/0512247 Geophysics +physics/0512249 Atomic and Molecular Clusters +physics/0512250 Atomic Physics +physics/0512251 Chemical Physics +physics/0512257 Instrumentation and Detectors +physics/0512260 Optics +physics/0512263 Popular Physics +physics/0512267 Instrumentation and Detectors +physics/0601002 Physics and Society +physics/0601014 Classical Physics +physics/0601015 Chemical Physics +physics/0601020 Instrumentation and Detectors +physics/0601021 Optics +physics/0601022 Classical Physics +physics/0601029 Optics +physics/0601030 Optics +physics/0601033 Physics and Society +physics/0601034 Atomic Physics +physics/0601036 Atomic Physics +physics/0601039 Optics +physics/0601041 Plasma Physics +physics/0601042 Optics +physics/0601044 Plasma Physics +physics/0601048 Optics +physics/0601054 Atomic Physics +physics/0601055 Optics +physics/0601057 Physics and Society +physics/0601058 Physics and Society +physics/0601061 General Physics +physics/0601071 Biological Physics +physics/0601077 Plasma Physics +physics/0601079 Atomic Physics +physics/0601081 Geophysics +physics/0601089 Physics and Society +physics/0601101 General Physics +physics/0601104 Biological Physics +physics/0601107 Optics +physics/0601118 Physics and Society +physics/0601124 Optics +physics/0601130 Fluid Dynamics +physics/0601135 Physics and Society +physics/0601137 Atomic Physics +physics/0601142 Optics +physics/0601144 Physics and Society +physics/0601146 Accelerator Physics +physics/0601152 Atomic Physics +physics/0601154 History and Philosophy of Physics +physics/0601157 Instrumentation and Detectors +physics/0601159 Instrumentation and Detectors +physics/0601160 Physics and Society +physics/0601162 Physics and Society +physics/0601163 Optics +physics/0601171 Physics and Society +physics/0601172 Optics +physics/0601180 Plasma Physics +physics/0601183 Fluid Dynamics +physics/0601184 Geophysics +physics/0601188 Fluid Dynamics +physics/0601191 Physics and Society +physics/0601196 Optics +physics/0601198 Fluid Dynamics +physics/0601200 Plasma Physics +physics/0601202 Atomic Physics +physics/0601203 Physics and Society +physics/0601206 Accelerator Physics +physics/0601211 Geophysics +physics/0601213 Atomic Physics +physics/0601216 Biological Physics +physics/0601217 Chemical Physics +physics/0601223 Data Analysis, Statistics and Probability +physics/0602002 Accelerator Physics +physics/0602009 Accelerator Physics +physics/0602016 Chemical Physics +physics/0602021 Atomic and Molecular Clusters +physics/0602022 Atomic Physics +physics/0602026 Physics and Society +physics/0602031 Optics +physics/0602033 Physics and Society +physics/0602039 Physics and Society +physics/0602045 Instrumentation and Detectors +physics/0602048 Physics and Society +physics/0602052 Physics and Society +physics/0602059 Atomic Physics +physics/0602060 Biological Physics +physics/0602062 Optics +physics/0602065 Optics +physics/0602066 Optics +physics/0602070 Atomic Physics +physics/0602071 Physics and Society +physics/0602072 Physics and Society +physics/0602073 Physics Education +physics/0602075 Atomic Physics +physics/0602076 Accelerator Physics +physics/0602077 Physics and Society +physics/0602082 Atomic Physics +physics/0602088 Biological Physics +physics/0602090 Plasma Physics +physics/0602091 Physics and Society +physics/0602094 Optics +physics/0602095 Optics +physics/0602096 Fluid Dynamics +physics/0602100 Atomic Physics +physics/0602103 Fluid Dynamics +physics/0602104 Optics +physics/0602105 General Physics +physics/0602108 Atomic Physics +physics/0602111 Atomic Physics +physics/0602113 Biological Physics +physics/0602117 Instrumentation and Detectors +physics/0602119 Optics +physics/0602121 Classical Physics +physics/0602126 Plasma Physics +physics/0602133 Optics +physics/0602135 Atomic Physics +physics/0602140 Fluid Dynamics +physics/0602141 Physics Education +physics/0602144 Physics and Society +physics/0602147 Fluid Dynamics +physics/0602148 Fluid Dynamics +physics/0602149 Physics and Society +physics/0602150 Accelerator Physics +physics/0602151 Instrumentation and Detectors +physics/0602152 Data Analysis, Statistics and Probability +physics/0602155 Plasma Physics +physics/0602160 Classical Physics +physics/0602165 Physics and Society +physics/0602168 Plasma Physics +physics/0602175 Fluid Dynamics +physics/0602176 Fluid Dynamics +physics/0602177 Accelerator Physics +physics/0602179 Space Physics +physics/0602184 Optics +physics/0602186 Optics +physics/0603003 Optics +physics/0603004 Optics +physics/0603005 Physics and Society +physics/0603018 Optics +physics/0603020 Optics +physics/0603021 Atomic Physics +physics/0603031 Atomic Physics +physics/0603034 Instrumentation and Detectors +physics/0603040 Physics and Society +physics/0603044 Physics and Society +physics/0603047 Physics and Society +physics/0603048 Plasma Physics +physics/0603050 Optics +physics/0603052 Optics +physics/0603056 Atomic Physics +physics/0603060 General Physics +physics/0603062 Physics Education +physics/0603064 Physics and Society +physics/0603069 Atomic Physics +physics/0603073 Instrumentation and Detectors +physics/0603076 Physics and Society +physics/0603077 Biological Physics +physics/0603078 Chemical Physics +physics/0603079 Optics +physics/0603081 Physics and Society +physics/0603082 Optics +physics/0603085 Fluid Dynamics +physics/0603086 Geophysics +physics/0603088 Fluid Dynamics +physics/0603089 Biological Physics +physics/0603090 Atomic Physics +physics/0603092 Optics +physics/0603096 Optics +physics/0603099 Optics +physics/0603109 Atomic Physics +physics/0603110 Classical Physics +physics/0603116 Classical Physics +physics/0603120 Atomic Physics +physics/0603121 Computational Physics +physics/0603123 Atomic Physics +physics/0603126 Data Analysis, Statistics and Probability +physics/0603127 Accelerator Physics +physics/0603128 Accelerator Physics +physics/0603133 Optics +physics/0603143 Plasma Physics +physics/0603144 Data Analysis, Statistics and Probability +physics/0603157 Atomic Physics +physics/0603158 Optics +physics/0603159 Optics +physics/0603161 Atomic and Molecular Clusters +physics/0603165 Atomic Physics +physics/0603166 Physics and Society +physics/0603171 Data Analysis, Statistics and Probability +physics/0603173 Physics and Society +physics/0603174 Optics +physics/0603178 Physics and Society +physics/0603180 Optics +physics/0603194 Atomic Physics +physics/0603202 Optics +physics/0603204 Plasma Physics +physics/0603208 Computational Physics +physics/0603210 Fluid Dynamics +physics/0603216 Optics +physics/0603221 Optics +physics/0603223 Plasma Physics +physics/0603227 Plasma Physics +physics/0603228 Optics +physics/0603234 Plasma Physics +physics/0603235 Fluid Dynamics +physics/0603239 Plasma Physics +physics/0603243 Space Physics +physics/0603245 Fluid Dynamics +physics/0603247 Optics +physics/0603248 Physics and Society +physics/0603252 Data Analysis, Statistics and Probability +physics/0603255 Atomic Physics +physics/0603264 Optics +physics/0603266 Physics and Society +physics/0603268 Atomic Physics +physics/0603273 Biological Physics +physics/0603274 Medical Physics +physics/0604001 Plasma Physics +physics/0604005 Atomic Physics +physics/0604014 Instrumentation and Detectors +physics/0604018 Geophysics +physics/0604023 Plasma Physics +physics/0604025 Classical Physics +physics/0604026 Atomic Physics +physics/0604036 Physics and Society +physics/0604039 Data Analysis, Statistics and Probability +physics/0604045 Accelerator Physics +physics/0604052 Chemical Physics +physics/0604053 Geophysics +physics/0604055 Plasma Physics +physics/0604056 Optics +physics/0604057 Optics +physics/0604061 Atomic Physics +physics/0604066 Physics and Society +physics/0604069 Atomic Physics +physics/0604071 Atomic Physics +physics/0604074 Optics +physics/0604075 Biological Physics +physics/0604078 Fluid Dynamics +physics/0604079 Atomic Physics +physics/0604082 Atomic Physics +physics/0604087 Atomic Physics +physics/0604088 Atomic Physics +physics/0604090 Chemical Physics +physics/0604091 Optics +physics/0604095 Fluid Dynamics +physics/0604099 Atomic Physics +physics/0604100 Chemical Physics +physics/0604102 Instrumentation and Detectors +physics/0604104 Atomic Physics +physics/0604121 Physics and Society +physics/0604122 Plasma Physics +physics/0604126 Optics +physics/0604129 Fluid Dynamics +physics/0604132 Accelerator Physics +physics/0604133 Atomic Physics +physics/0604135 Atomic Physics +physics/0604137 Physics and Society +physics/0604140 Atomic Physics +physics/0604142 Physics and Society +physics/0604143 Atomic and Molecular Clusters +physics/0604148 Physics and Society +physics/0604153 Popular Physics +physics/0604157 Optics +physics/0604164 Chemical Physics +physics/0604165 Accelerator Physics +physics/0604167 Data Analysis, Statistics and Probability +physics/0604168 Optics +physics/0604179 Physics and Society +physics/0604182 Physics and Society +physics/0604187 Physics and Society +physics/0604189 Atomic Physics +physics/0604191 Computational Physics +physics/0604194 Instrumentation and Detectors +physics/0604198 Instrumentation and Detectors +physics/0604202 Fluid Dynamics +physics/0604205 Atomic Physics +physics/0604206 Chemical Physics +physics/0604209 Chemical Physics +physics/0604212 Biological Physics +physics/0604213 Atomic Physics +physics/0604215 Physics and Society +physics/0604228 Plasma Physics +physics/0604231 Atomic Physics +physics/0605008 Data Analysis, Statistics and Probability +physics/0605009 Atomic Physics +physics/0605011 Fluid Dynamics +physics/0605014 Fluid Dynamics +physics/0605016 Fluid Dynamics +physics/0605017 Optics +physics/0605019 Atomic Physics +physics/0605020 Optics +physics/0605025 Optics +physics/0605026 Atomic Physics +physics/0605032 Atomic Physics +physics/0605040 Popular Physics +physics/0605042 Space Physics +physics/0605046 Optics +physics/0605048 Plasma Physics +physics/0605050 Atmospheric and Oceanic Physics +physics/0605052 Atomic Physics +physics/0605059 Atmospheric and Oceanic Physics +physics/0605071 Physics and Society +physics/0605074 Instrumentation and Detectors +physics/0605077 Computational Physics +physics/0605082 Atomic Physics +physics/0605083 Optics +physics/0605086 Fluid Dynamics +physics/0605089 Optics +physics/0605090 Fluid Dynamics +physics/0605091 Optics +physics/0605101 Classical Physics +physics/0605103 Atomic Physics +physics/0605108 Computational Physics +physics/0605110 Accelerator Physics +physics/0605112 Fluid Dynamics +physics/0605119 Data Analysis, Statistics and Probability +physics/0605144 Optics +physics/0605148 Physics Education +physics/0605150 Physics and Society +physics/0605151 Optics +physics/0605153 Optics +physics/0605155 Atmospheric and Oceanic Physics +physics/0605156 Optics +physics/0605159 Atomic Physics +physics/0605160 Atomic and Molecular Clusters +physics/0605163 Atomic Physics +physics/0605165 Optics +physics/0605166 Optics +physics/0605171 Computational Physics +physics/0605176 Atomic Physics +physics/0605178 Plasma Physics +physics/0605180 Fluid Dynamics +physics/0605181 Atomic Physics +physics/0605182 Medical Physics +physics/0605184 Atomic Physics +physics/0605185 Atomic Physics +physics/0605186 Chemical Physics +physics/0605187 Optics +physics/0605193 Optics +physics/0605195 Atomic Physics +physics/0605199 General Physics +physics/0605202 Chemical Physics +physics/0605204 Classical Physics +physics/0605205 Physics and Society +physics/0605211 Optics +physics/0605212 General Physics +physics/0605213 Optics +physics/0605225 Computational Physics +physics/0605227 Optics +physics/0605229 Biological Physics +physics/0605237 Physics and Society +physics/0605240 Plasma Physics +physics/0606002 Physics and Society +physics/0606004 Atomic Physics +physics/0606005 Physics and Society +physics/0606011 Physics and Society +physics/0606013 Atomic Physics +physics/0606027 Chemical Physics +physics/0606028 Optics +physics/0606030 Computational Physics +physics/0606038 Data Analysis, Statistics and Probability +physics/0606043 Physics and Society +physics/0606048 Atomic Physics +physics/0606049 Atomic Physics +physics/0606050 Atomic Physics +physics/0606053 Classical Physics +physics/0606060 Physics and Society +physics/0606064 Physics and Society +physics/0606067 Optics +physics/0606069 Optics +physics/0606072 Optics +physics/0606075 Atmospheric and Oceanic Physics +physics/0606076 Physics and Society +physics/0606077 Instrumentation and Detectors +physics/0606081 Optics +physics/0606083 Atomic Physics +physics/0606084 Optics +physics/0606085 Physics and Society +physics/0606087 Physics and Society +physics/0606093 Atomic Physics +physics/0606094 Atomic Physics +physics/0606100 Atomic Physics +physics/0606104 Instrumentation and Detectors +physics/0606105 Optics +physics/0606117 General Physics +physics/0606127 Fluid Dynamics +physics/0606129 Optics +physics/0606132 Physics and Society +physics/0606136 Plasma Physics +physics/0606142 Optics +physics/0606143 Medical Physics +physics/0606150 Atomic Physics +physics/0606157 Plasma Physics +physics/0606158 Optics +physics/0606159 Fluid Dynamics +physics/0606160 Optics +physics/0606164 Physics and Society +physics/0606168 Optics +physics/0606169 Chemical Physics +physics/0606170 Fluid Dynamics +physics/0606174 Optics +physics/0606175 Atomic Physics +physics/0606176 General Physics +physics/0606189 Chemical Physics +physics/0606193 Optics +physics/0606195 Atomic Physics +physics/0606205 Atomic Physics +physics/0606206 Optics +physics/0606209 Instrumentation and Detectors +physics/0606211 Optics +physics/0606212 Optics +physics/0606214 Atomic Physics +physics/0606225 Physics Education +physics/0606228 Classical Physics +physics/0606230 Optics +physics/0606239 Plasma Physics +physics/0606241 Instrumentation and Detectors +physics/0606248 Fluid Dynamics +physics/0606249 Atomic Physics +physics/0606250 Classical Physics +physics/0606257 Atomic Physics +physics/0606261 Physics Education +physics/0606262 Atomic Physics +physics/0607003 Fluid Dynamics +physics/0607006 Fluid Dynamics +physics/0607016 Optics +physics/0607020 Biological Physics +q-bio/0501002 Molecular Networks +q-bio/0501022 Populations and Evolution +q-bio/0501023 Populations and Evolution +q-bio/0501024 Subcellular Processes +q-bio/0501028 Populations and Evolution +q-bio/0501032 Subcellular Processes +q-bio/0501033 Genomics +q-bio/0502005 Molecular Networks +q-bio/0502009 Genomics +q-bio/0502011 Biomolecules +q-bio/0502012 Quantitative Methods +q-bio/0502014 Biomolecules +q-bio/0502015 Biomolecules +q-bio/0502018 Molecular Networks +q-bio/0502019 Biomolecules +q-bio/0502027 Populations and Evolution +q-bio/0502031 Neurons and Cognition +q-bio/0502033 Molecular Networks +q-bio/0502035 Molecular Networks +q-bio/0502043 Biomolecules +q-bio/0503007 Biomolecules +q-bio/0503014 Biomolecules +q-bio/0503024 Populations and Evolution +q-bio/0503029 Biomolecules +q-bio/0503034 Biomolecules +q-bio/0503035 Molecular Networks +q-bio/0503036 Populations and Evolution +q-bio/0504008 Subcellular Processes +q-bio/0504009 Tissues and Organs +q-bio/0504019 Populations and Evolution +q-bio/0504021 Populations and Evolution +q-bio/0504024 Neurons and Cognition +q-bio/0504032 Populations and Evolution +q-bio/0504033 Biomolecules +q-bio/0505004 Cell Behavior +q-bio/0505009 Neurons and Cognition +q-bio/0505012 Neurons and Cognition +q-bio/0505022 Quantitative Methods +q-bio/0505030 Biomolecules +q-bio/0505035 Populations and Evolution +q-bio/0505037 Biomolecules +q-bio/0505052 Biomolecules +q-bio/0506001 Biomolecules +q-bio/0506005 Neurons and Cognition +q-bio/0506015 Neurons and Cognition +q-bio/0506023 Tissues and Organs +q-bio/0506025 Biomolecules +q-bio/0506029 Cell Behavior +q-bio/0507006 Populations and Evolution +q-bio/0507011 Cell Behavior +q-bio/0507022 Biomolecules +q-bio/0507023 Neurons and Cognition +q-bio/0507030 Genomics +q-bio/0507031 Quantitative Methods +q-bio/0507034 Cell Behavior +q-bio/0507035 Cell Behavior +q-bio/0507044 Molecular Networks +q-bio/0507046 Subcellular Processes +q-bio/0508004 Biomolecules +q-bio/0508009 Biomolecules +q-bio/0508014 Populations and Evolution +q-bio/0508017 Populations and Evolution +q-bio/0508020 Populations and Evolution +q-bio/0508027 Molecular Networks +q-bio/0508028 Biomolecules +q-bio/0508040 Neurons and Cognition +q-bio/0508042 Biomolecules +q-bio/0509001 Molecular Networks +q-bio/0509007 Biomolecules +q-bio/0509017 Molecular Networks +q-bio/0509018 Biomolecules +q-bio/0509027 Genomics +q-bio/0509028 Neurons and Cognition +q-bio/0509029 Cell Behavior +q-bio/0509032 Populations and Evolution +q-bio/0509035 Populations and Evolution +q-bio/0509036 Quantitative Methods +q-bio/0509044 Populations and Evolution +q-bio/0510012 Molecular Networks +q-bio/0510021 Genomics +q-bio/0510022 Molecular Networks +q-bio/0510028 Biomolecules +q-bio/0510044 Tissues and Organs +q-bio/0510045 Biomolecules +q-bio/0510046 Neurons and Cognition +q-bio/0510048 Biomolecules +q-bio/0510050 Subcellular Processes +q-bio/0511002 Populations and Evolution +q-bio/0511006 Biomolecules +q-bio/0511010 Populations and Evolution +q-bio/0511016 Quantitative Methods +q-bio/0511020 Tissues and Organs +q-bio/0511021 Tissues and Organs +q-bio/0511027 Biomolecules +q-bio/0511031 Populations and Evolution +q-bio/0511032 Biomolecules +q-bio/0511036 Other Quantitative Biology +q-bio/0511037 Other Quantitative Biology +q-bio/0511043 Quantitative Methods +q-bio/0512001 Genomics +q-bio/0512013 Neurons and Cognition +q-bio/0512018 Subcellular Processes +q-bio/0512023 Quantitative Methods +q-bio/0512029 Biomolecules +q-bio/0512035 Biomolecules +q-bio/0512038 Molecular Networks +q-bio/0512041 Subcellular Processes +quant-ph/0501001 +quant-ph/0501003 +quant-ph/0501004 +quant-ph/0501005 +quant-ph/0501008 +quant-ph/0501009 +quant-ph/0501017 +quant-ph/0501019 +quant-ph/0501026 +quant-ph/0501027 +quant-ph/0501029 +quant-ph/0501032 +quant-ph/0501033 +quant-ph/0501035 +quant-ph/0501038 +quant-ph/0501040 +quant-ph/0501041 +quant-ph/0501043 +quant-ph/0501047 +quant-ph/0501049 +quant-ph/0501051 +quant-ph/0501053 +quant-ph/0501058 +quant-ph/0501061 +quant-ph/0501063 +quant-ph/0501069 +quant-ph/0501072 +quant-ph/0501075 +quant-ph/0501076 +quant-ph/0501077 +quant-ph/0501078 +quant-ph/0501080 +quant-ph/0501082 +quant-ph/0501084 +quant-ph/0501085 +quant-ph/0501086 +quant-ph/0501087 +quant-ph/0501091 +quant-ph/0501092 +quant-ph/0501094 +quant-ph/0501096 +quant-ph/0501097 +quant-ph/0501098 +quant-ph/0501100 +quant-ph/0501101 +quant-ph/0501102 +quant-ph/0501104 +quant-ph/0501105 +quant-ph/0501106 +quant-ph/0501107 +quant-ph/0501109 +quant-ph/0501113 +quant-ph/0501114 +quant-ph/0501115 +quant-ph/0501119 +quant-ph/0501122 +quant-ph/0501125 +quant-ph/0501127 +quant-ph/0501130 +quant-ph/0501132 +quant-ph/0501144 +quant-ph/0501149 +quant-ph/0501155 +quant-ph/0501160 +quant-ph/0501162 +quant-ph/0501163 +quant-ph/0501165 +quant-ph/0501167 +quant-ph/0501169 +quant-ph/0501171 +quant-ph/0501174 +quant-ph/0501175 +quant-ph/0501180 +quant-ph/0501184 +quant-ph/0502004 +quant-ph/0502008 +quant-ph/0502012 +quant-ph/0502013 +quant-ph/0502014 +quant-ph/0502019 +quant-ph/0502023 +quant-ph/0502026 +quant-ph/0502027 +quant-ph/0502028 +quant-ph/0502033 +quant-ph/0502036 +quant-ph/0502042 +quant-ph/0502047 +quant-ph/0502053 +quant-ph/0502056 +quant-ph/0502057 +quant-ph/0502058 +quant-ph/0502059 +quant-ph/0502060 +quant-ph/0502061 +quant-ph/0502062 +quant-ph/0502063 +quant-ph/0502064 +quant-ph/0502066 +quant-ph/0502069 +quant-ph/0502077 +quant-ph/0502078 +quant-ph/0502079 +quant-ph/0502080 +quant-ph/0502081 +quant-ph/0502087 +quant-ph/0502088 +quant-ph/0502089 +quant-ph/0502090 +quant-ph/0502092 +quant-ph/0502093 +quant-ph/0502094 +quant-ph/0502095 +quant-ph/0502096 +quant-ph/0502097 +quant-ph/0502105 +quant-ph/0502106 +quant-ph/0502108 +quant-ph/0502110 +quant-ph/0502112 +quant-ph/0502116 +quant-ph/0502117 +quant-ph/0502119 +quant-ph/0502120 +quant-ph/0502121 +quant-ph/0502122 +quant-ph/0502123 +quant-ph/0502129 +quant-ph/0502130 +quant-ph/0502134 +quant-ph/0502135 +quant-ph/0502140 +quant-ph/0502141 +quant-ph/0502143 +quant-ph/0502146 +quant-ph/0502156 +quant-ph/0502157 +quant-ph/0502158 +quant-ph/0502159 +quant-ph/0502161 +quant-ph/0502163 +quant-ph/0502167 +quant-ph/0502168 +quant-ph/0502169 +quant-ph/0502180 +quant-ph/0502181 +quant-ph/0502184 +quant-ph/0503005 +quant-ph/0503010 +quant-ph/0503013 +quant-ph/0503014 +quant-ph/0503016 +quant-ph/0503020 +quant-ph/0503022 +quant-ph/0503025 +quant-ph/0503028 +quant-ph/0503029 +quant-ph/0503030 +quant-ph/0503031 +quant-ph/0503037 +quant-ph/0503038 +quant-ph/0503041 +quant-ph/0503042 +quant-ph/0503044 +quant-ph/0503046 +quant-ph/0503047 +quant-ph/0503048 +quant-ph/0503049 +quant-ph/0503050 +quant-ph/0503066 +quant-ph/0503069 +quant-ph/0503074 +quant-ph/0503075 +quant-ph/0503076 +quant-ph/0503077 +quant-ph/0503080 +quant-ph/0503084 +quant-ph/0503086 +quant-ph/0503088 +quant-ph/0503090 +quant-ph/0503098 +quant-ph/0503099 +quant-ph/0503101 +quant-ph/0503102 +quant-ph/0503104 +quant-ph/0503105 +quant-ph/0503111 +quant-ph/0503117 +quant-ph/0503120 +quant-ph/0503122 +quant-ph/0503125 +quant-ph/0503126 +quant-ph/0503128 +quant-ph/0503132 +quant-ph/0503133 +quant-ph/0503135 +quant-ph/0503137 +quant-ph/0503140 +quant-ph/0503145 +quant-ph/0503147 +quant-ph/0503150 +quant-ph/0503151 +quant-ph/0503154 +quant-ph/0503155 +quant-ph/0503156 +quant-ph/0503158 +quant-ph/0503160 +quant-ph/0503164 +quant-ph/0503166 +quant-ph/0503168 +quant-ph/0503170 +quant-ph/0503174 +quant-ph/0503175 +quant-ph/0503180 +quant-ph/0503181 +quant-ph/0503182 +quant-ph/0503184 +quant-ph/0503186 +quant-ph/0503191 +quant-ph/0503192 +quant-ph/0503193 +quant-ph/0503195 +quant-ph/0503199 +quant-ph/0503200 +quant-ph/0503201 +quant-ph/0503204 +quant-ph/0503206 +quant-ph/0503207 +quant-ph/0503208 +quant-ph/0503210 +quant-ph/0503213 +quant-ph/0503215 +quant-ph/0503218 +quant-ph/0503219 +quant-ph/0503221 +quant-ph/0503222 +quant-ph/0503223 +quant-ph/0503224 +quant-ph/0503227 +quant-ph/0503231 +quant-ph/0503241 +quant-ph/0503243 +quant-ph/0504003 +quant-ph/0504004 +quant-ph/0504005 +quant-ph/0504014 +quant-ph/0504015 +quant-ph/0504019 +quant-ph/0504022 +quant-ph/0504024 +quant-ph/0504026 +quant-ph/0504027 +quant-ph/0504028 +quant-ph/0504029 +quant-ph/0504032 +quant-ph/0504038 +quant-ph/0504040 +quant-ph/0504053 +quant-ph/0504055 +quant-ph/0504057 +quant-ph/0504061 +quant-ph/0504062 +quant-ph/0504065 +quant-ph/0504066 +quant-ph/0504069 +quant-ph/0504074 +quant-ph/0504076 +quant-ph/0504079 +quant-ph/0504080 +quant-ph/0504084 +quant-ph/0504090 +quant-ph/0504095 +quant-ph/0504096 +quant-ph/0504097 +quant-ph/0504098 +quant-ph/0504102 +quant-ph/0504103 +quant-ph/0504104 +quant-ph/0504107 +quant-ph/0504113 +quant-ph/0504119 +quant-ph/0504120 +quant-ph/0504122 +quant-ph/0504123 +quant-ph/0504129 +quant-ph/0504131 +quant-ph/0504135 +quant-ph/0504137 +quant-ph/0504138 +quant-ph/0504140 +quant-ph/0504144 +quant-ph/0504147 +quant-ph/0504148 +quant-ph/0504149 +quant-ph/0504154 +quant-ph/0504164 +quant-ph/0504172 +quant-ph/0504177 +quant-ph/0504178 +quant-ph/0504179 +quant-ph/0504180 +quant-ph/0504182 +quant-ph/0504185 +quant-ph/0504188 +quant-ph/0504190 +quant-ph/0504192 +quant-ph/0504201 +quant-ph/0504203 +quant-ph/0504207 +quant-ph/0504208 +quant-ph/0504210 +quant-ph/0504212 +quant-ph/0504216 +quant-ph/0504222 +quant-ph/0504223 +quant-ph/0504225 +quant-ph/0504229 +quant-ph/0505001 +quant-ph/0505003 +quant-ph/0505010 +quant-ph/0505011 +quant-ph/0505012 +quant-ph/0505018 +quant-ph/0505021 +quant-ph/0505022 +quant-ph/0505023 +quant-ph/0505024 +quant-ph/0505025 +quant-ph/0505027 +quant-ph/0505031 +quant-ph/0505034 +quant-ph/0505035 +quant-ph/0505036 +quant-ph/0505039 +quant-ph/0505040 +quant-ph/0505041 +quant-ph/0505042 +quant-ph/0505043 +quant-ph/0505044 +quant-ph/0505045 +quant-ph/0505047 +quant-ph/0505049 +quant-ph/0505054 +quant-ph/0505056 +quant-ph/0505063 +quant-ph/0505065 +quant-ph/0505067 +quant-ph/0505071 +quant-ph/0505073 +quant-ph/0505076 +quant-ph/0505077 +quant-ph/0505078 +quant-ph/0505080 +quant-ph/0505081 +quant-ph/0505082 +quant-ph/0505083 +quant-ph/0505085 +quant-ph/0505087 +quant-ph/0505092 +quant-ph/0505096 +quant-ph/0505097 +quant-ph/0505102 +quant-ph/0505103 +quant-ph/0505106 +quant-ph/0505109 +quant-ph/0505110 +quant-ph/0505114 +quant-ph/0505115 +quant-ph/0505117 +quant-ph/0505118 +quant-ph/0505119 +quant-ph/0505122 +quant-ph/0505123 +quant-ph/0505124 +quant-ph/0505127 +quant-ph/0505130 +quant-ph/0505131 +quant-ph/0505136 +quant-ph/0505144 +quant-ph/0505145 +quant-ph/0505148 +quant-ph/0505150 +quant-ph/0505153 +quant-ph/0505155 +quant-ph/0505156 +quant-ph/0505157 +quant-ph/0505161 +quant-ph/0505162 +quant-ph/0505169 +quant-ph/0505171 +quant-ph/0505173 +quant-ph/0505174 +quant-ph/0505176 +quant-ph/0505181 +quant-ph/0505182 +quant-ph/0505183 +quant-ph/0505184 +quant-ph/0505186 +quant-ph/0505191 +quant-ph/0505194 +quant-ph/0505195 +quant-ph/0505196 +quant-ph/0505200 +quant-ph/0505201 +quant-ph/0505202 +quant-ph/0505207 +quant-ph/0505213 +quant-ph/0505220 +quant-ph/0505221 +quant-ph/0505223 +quant-ph/0505228 +quant-ph/0506002 +quant-ph/0506004 +quant-ph/0506007 +quant-ph/0506013 +quant-ph/0506014 +quant-ph/0506015 +quant-ph/0506016 +quant-ph/0506021 +quant-ph/0506022 +quant-ph/0506025 +quant-ph/0506029 +quant-ph/0506030 +quant-ph/0506032 +quant-ph/0506044 +quant-ph/0506048 +quant-ph/0506052 +quant-ph/0506053 +quant-ph/0506056 +quant-ph/0506059 +quant-ph/0506060 +quant-ph/0506062 +quant-ph/0506072 +quant-ph/0506076 +quant-ph/0506078 +quant-ph/0506085 +quant-ph/0506090 +quant-ph/0506091 +quant-ph/0506094 +quant-ph/0506097 +quant-ph/0506098 +quant-ph/0506099 +quant-ph/0506102 +quant-ph/0506104 +quant-ph/0506108 +quant-ph/0506110 +quant-ph/0506111 +quant-ph/0506114 +quant-ph/0506116 +quant-ph/0506117 +quant-ph/0506118 +quant-ph/0506119 +quant-ph/0506123 +quant-ph/0506128 +quant-ph/0506132 +quant-ph/0506135 +quant-ph/0506138 +quant-ph/0506139 +quant-ph/0506140 +quant-ph/0506144 +quant-ph/0506145 +quant-ph/0506148 +quant-ph/0506152 +quant-ph/0506154 +quant-ph/0506156 +quant-ph/0506157 +quant-ph/0506158 +quant-ph/0506161 +quant-ph/0506164 +quant-ph/0506167 +quant-ph/0506168 +quant-ph/0506169 +quant-ph/0506170 +quant-ph/0506171 +quant-ph/0506175 +quant-ph/0506177 +quant-ph/0506179 +quant-ph/0506182 +quant-ph/0506186 +quant-ph/0506187 +quant-ph/0506190 +quant-ph/0506191 +quant-ph/0506192 +quant-ph/0506193 +quant-ph/0506195 +quant-ph/0506196 +quant-ph/0506200 +quant-ph/0506204 +quant-ph/0506206 +quant-ph/0506211 +quant-ph/0506212 +quant-ph/0506214 +quant-ph/0506217 +quant-ph/0506218 +quant-ph/0506220 +quant-ph/0506225 +quant-ph/0506226 +quant-ph/0506229 +quant-ph/0506232 +quant-ph/0506234 +quant-ph/0506235 +quant-ph/0506238 +quant-ph/0506239 +quant-ph/0506244 +quant-ph/0506247 +quant-ph/0506249 +quant-ph/0506250 +quant-ph/0506252 +quant-ph/0506253 +quant-ph/0506257 +quant-ph/0506258 +quant-ph/0506259 +quant-ph/0506261 +quant-ph/0506263 +quant-ph/0506264 +quant-ph/0506267 +quant-ph/0506269 +quant-ph/0506271 +quant-ph/0507004 +quant-ph/0507005 +quant-ph/0507013 +quant-ph/0507019 +quant-ph/0507020 +quant-ph/0507033 +quant-ph/0507034 +quant-ph/0507035 +quant-ph/0507041 +quant-ph/0507042 +quant-ph/0507043 +quant-ph/0507044 +quant-ph/0507049 +quant-ph/0507057 +quant-ph/0507061 +quant-ph/0507062 +quant-ph/0507064 +quant-ph/0507065 +quant-ph/0507068 +quant-ph/0507071 +quant-ph/0507074 +quant-ph/0507076 +quant-ph/0507077 +quant-ph/0507080 +quant-ph/0507081 +quant-ph/0507084 +quant-ph/0507085 +quant-ph/0507086 +quant-ph/0507090 +quant-ph/0507091 +quant-ph/0507092 +quant-ph/0507094 +quant-ph/0507095 +quant-ph/0507099 +quant-ph/0507101 +quant-ph/0507103 +quant-ph/0507110 +quant-ph/0507111 +quant-ph/0507117 +quant-ph/0507120 +quant-ph/0507121 +quant-ph/0507123 +quant-ph/0507126 +quant-ph/0507127 +quant-ph/0507129 +quant-ph/0507134 +quant-ph/0507135 +quant-ph/0507136 +quant-ph/0507140 +quant-ph/0507142 +quant-ph/0507143 +quant-ph/0507145 +quant-ph/0507147 +quant-ph/0507148 +quant-ph/0507149 +quant-ph/0507152 +quant-ph/0507155 +quant-ph/0507156 +quant-ph/0507157 +quant-ph/0507158 +quant-ph/0507159 +quant-ph/0507160 +quant-ph/0507161 +quant-ph/0507165 +quant-ph/0507168 +quant-ph/0507179 +quant-ph/0507180 +quant-ph/0507183 +quant-ph/0507184 +quant-ph/0507186 +quant-ph/0507197 +quant-ph/0507198 +quant-ph/0507201 +quant-ph/0507207 +quant-ph/0507209 +quant-ph/0507210 +quant-ph/0507212 +quant-ph/0507213 +quant-ph/0507215 +quant-ph/0507216 +quant-ph/0507217 +quant-ph/0507226 +quant-ph/0507227 +quant-ph/0507228 +quant-ph/0507229 +quant-ph/0507232 +quant-ph/0507234 +quant-ph/0507235 +quant-ph/0507237 +quant-ph/0507240 +quant-ph/0507243 +quant-ph/0507244 +quant-ph/0507245 +quant-ph/0507246 +quant-ph/0507251 +quant-ph/0507253 +quant-ph/0507254 +quant-ph/0507255 +quant-ph/0507261 +quant-ph/0507264 +quant-ph/0507266 +quant-ph/0507267 +quant-ph/0507268 +quant-ph/0507271 +quant-ph/0507273 +quant-ph/0507277 +quant-ph/0507280 +quant-ph/0508005 +quant-ph/0508012 +quant-ph/0508016 +quant-ph/0508017 +quant-ph/0508019 +quant-ph/0508021 +quant-ph/0508023 +quant-ph/0508026 +quant-ph/0508027 +quant-ph/0508033 +quant-ph/0508034 +quant-ph/0508036 +quant-ph/0508037 +quant-ph/0508042 +quant-ph/0508047 +quant-ph/0508048 +quant-ph/0508050 +quant-ph/0508051 +quant-ph/0508053 +quant-ph/0508055 +quant-ph/0508058 +quant-ph/0508061 +quant-ph/0508065 +quant-ph/0508066 +quant-ph/0508068 +quant-ph/0508071 +quant-ph/0508073 +quant-ph/0508075 +quant-ph/0508080 +quant-ph/0508081 +quant-ph/0508084 +quant-ph/0508085 +quant-ph/0508090 +quant-ph/0508092 +quant-ph/0508093 +quant-ph/0508096 +quant-ph/0508102 +quant-ph/0508106 +quant-ph/0508108 +quant-ph/0508112 +quant-ph/0508115 +quant-ph/0508117 +quant-ph/0508121 +quant-ph/0508122 +quant-ph/0508123 +quant-ph/0508125 +quant-ph/0508127 +quant-ph/0508129 +quant-ph/0508130 +quant-ph/0508131 +quant-ph/0508132 +quant-ph/0508133 +quant-ph/0508138 +quant-ph/0508143 +quant-ph/0508144 +quant-ph/0508146 +quant-ph/0508150 +quant-ph/0508151 +quant-ph/0508155 +quant-ph/0508158 +quant-ph/0508165 +quant-ph/0508166 +quant-ph/0508172 +quant-ph/0508174 +quant-ph/0508178 +quant-ph/0508179 +quant-ph/0508182 +quant-ph/0508183 +quant-ph/0508184 +quant-ph/0508185 +quant-ph/0508187 +quant-ph/0508189 +quant-ph/0508191 +quant-ph/0508195 +quant-ph/0508196 +quant-ph/0508198 +quant-ph/0508206 +quant-ph/0508208 +quant-ph/0508209 +quant-ph/0508210 +quant-ph/0508214 +quant-ph/0508216 +quant-ph/0508218 +quant-ph/0508221 +quant-ph/0508225 +quant-ph/0508232 +quant-ph/0508238 +quant-ph/0509002 +quant-ph/0509007 +quant-ph/0509008 +quant-ph/0509010 +quant-ph/0509011 +quant-ph/0509013 +quant-ph/0509016 +quant-ph/0509019 +quant-ph/0509021 +quant-ph/0509023 +quant-ph/0509024 +quant-ph/0509026 +quant-ph/0509029 +quant-ph/0509030 +quant-ph/0509033 +quant-ph/0509035 +quant-ph/0509038 +quant-ph/0509041 +quant-ph/0509043 +quant-ph/0509050 +quant-ph/0509053 +quant-ph/0509058 +quant-ph/0509060 +quant-ph/0509061 +quant-ph/0509062 +quant-ph/0509063 +quant-ph/0509064 +quant-ph/0509066 +quant-ph/0509069 +quant-ph/0509073 +quant-ph/0509075 +quant-ph/0509077 +quant-ph/0509079 +quant-ph/0509080 +quant-ph/0509082 +quant-ph/0509094 +quant-ph/0509095 +quant-ph/0509098 +quant-ph/0509102 +quant-ph/0509106 +quant-ph/0509107 +quant-ph/0509108 +quant-ph/0509109 +quant-ph/0509114 +quant-ph/0509120 +quant-ph/0509128 +quant-ph/0509133 +quant-ph/0509134 +quant-ph/0509139 +quant-ph/0509141 +quant-ph/0509144 +quant-ph/0509147 +quant-ph/0509148 +quant-ph/0509151 +quant-ph/0509152 +quant-ph/0509154 +quant-ph/0509159 +quant-ph/0509162 +quant-ph/0509165 +quant-ph/0509167 +quant-ph/0509170 +quant-ph/0509171 +quant-ph/0509173 +quant-ph/0509174 +quant-ph/0509175 +quant-ph/0509179 +quant-ph/0509180 +quant-ph/0509187 +quant-ph/0509188 +quant-ph/0509189 +quant-ph/0509190 +quant-ph/0509192 +quant-ph/0509195 +quant-ph/0509197 +quant-ph/0509198 +quant-ph/0509201 +quant-ph/0509202 +quant-ph/0509207 +quant-ph/0509208 +quant-ph/0509210 +quant-ph/0509211 +quant-ph/0509215 +quant-ph/0509218 +quant-ph/0509219 +quant-ph/0510003 +quant-ph/0510005 +quant-ph/0510013 +quant-ph/0510014 +quant-ph/0510015 +quant-ph/0510017 +quant-ph/0510018 +quant-ph/0510019 +quant-ph/0510020 +quant-ph/0510023 +quant-ph/0510024 +quant-ph/0510025 +quant-ph/0510027 +quant-ph/0510037 +quant-ph/0510042 +quant-ph/0510046 +quant-ph/0510048 +quant-ph/0510051 +quant-ph/0510053 +quant-ph/0510054 +quant-ph/0510055 +quant-ph/0510056 +quant-ph/0510058 +quant-ph/0510059 +quant-ph/0510060 +quant-ph/0510061 +quant-ph/0510062 +quant-ph/0510064 +quant-ph/0510066 +quant-ph/0510067 +quant-ph/0510070 +quant-ph/0510077 +quant-ph/0510081 +quant-ph/0510085 +quant-ph/0510086 +quant-ph/0510088 +quant-ph/0510089 +quant-ph/0510094 +quant-ph/0510096 +quant-ph/0510097 +quant-ph/0510098 +quant-ph/0510099 +quant-ph/0510104 +quant-ph/0510105 +quant-ph/0510108 +quant-ph/0510111 +quant-ph/0510115 +quant-ph/0510119 +quant-ph/0510120 +quant-ph/0510121 +quant-ph/0510129 +quant-ph/0510136 +quant-ph/0510137 +quant-ph/0510140 +quant-ph/0510141 +quant-ph/0510142 +quant-ph/0510143 +quant-ph/0510150 +quant-ph/0510153 +quant-ph/0510157 +quant-ph/0510158 +quant-ph/0510160 +quant-ph/0510161 +quant-ph/0510162 +quant-ph/0510164 +quant-ph/0510165 +quant-ph/0510166 +quant-ph/0510168 +quant-ph/0510169 +quant-ph/0510170 +quant-ph/0510172 +quant-ph/0510173 +quant-ph/0510175 +quant-ph/0510178 +quant-ph/0510182 +quant-ph/0510183 +quant-ph/0510188 +quant-ph/0510189 +quant-ph/0510191 +quant-ph/0510192 +quant-ph/0510193 +quant-ph/0510195 +quant-ph/0510196 +quant-ph/0510197 +quant-ph/0510200 +quant-ph/0510202 +quant-ph/0510204 +quant-ph/0510209 +quant-ph/0510214 +quant-ph/0510215 +quant-ph/0510216 +quant-ph/0510218 +quant-ph/0510219 +quant-ph/0510220 +quant-ph/0510226 +quant-ph/0510228 +quant-ph/0510229 +quant-ph/0510231 +quant-ph/0510235 +quant-ph/0510236 +quant-ph/0511002 +quant-ph/0511005 +quant-ph/0511006 +quant-ph/0511007 +quant-ph/0511011 +quant-ph/0511012 +quant-ph/0511014 +quant-ph/0511015 +quant-ph/0511017 +quant-ph/0511018 +quant-ph/0511026 +quant-ph/0511027 +quant-ph/0511030 +quant-ph/0511033 +quant-ph/0511035 +quant-ph/0511037 +quant-ph/0511040 +quant-ph/0511049 +quant-ph/0511050 +quant-ph/0511052 +quant-ph/0511053 +quant-ph/0511058 +quant-ph/0511059 +quant-ph/0511064 +quant-ph/0511066 +quant-ph/0511070 +quant-ph/0511076 +quant-ph/0511077 +quant-ph/0511080 +quant-ph/0511081 +quant-ph/0511083 +quant-ph/0511085 +quant-ph/0511087 +quant-ph/0511088 +quant-ph/0511092 +quant-ph/0511093 +quant-ph/0511098 +quant-ph/0511099 +quant-ph/0511100 +quant-ph/0511101 +quant-ph/0511102 +quant-ph/0511103 +quant-ph/0511105 +quant-ph/0511106 +quant-ph/0511111 +quant-ph/0511114 +quant-ph/0511118 +quant-ph/0511120 +quant-ph/0511121 +quant-ph/0511132 +quant-ph/0511138 +quant-ph/0511139 +quant-ph/0511140 +quant-ph/0511141 +quant-ph/0511143 +quant-ph/0511144 +quant-ph/0511151 +quant-ph/0511152 +quant-ph/0511153 +quant-ph/0511157 +quant-ph/0511160 +quant-ph/0511161 +quant-ph/0511168 +quant-ph/0511173 +quant-ph/0511176 +quant-ph/0511178 +quant-ph/0511181 +quant-ph/0511182 +quant-ph/0511185 +quant-ph/0511187 +quant-ph/0511189 +quant-ph/0511193 +quant-ph/0511194 +quant-ph/0511195 +quant-ph/0511199 +quant-ph/0511202 +quant-ph/0511203 +quant-ph/0511206 +quant-ph/0511209 +quant-ph/0511213 +quant-ph/0511215 +quant-ph/0511216 +quant-ph/0511222 +quant-ph/0511230 +quant-ph/0511232 +quant-ph/0511233 +quant-ph/0511239 +quant-ph/0511242 +quant-ph/0511243 +quant-ph/0511245 +quant-ph/0511249 +quant-ph/0511252 +quant-ph/0511254 +quant-ph/0511256 +quant-ph/0511258 +quant-ph/0511262 +quant-ph/0511264 +quant-ph/0511267 +quant-ph/0511271 +quant-ph/0511272 +quant-ph/0512004 +quant-ph/0512007 +quant-ph/0512008 +quant-ph/0512010 +quant-ph/0512011 +quant-ph/0512013 +quant-ph/0512018 +quant-ph/0512024 +quant-ph/0512025 +quant-ph/0512027 +quant-ph/0512031 +quant-ph/0512032 +quant-ph/0512033 +quant-ph/0512036 +quant-ph/0512037 +quant-ph/0512041 +quant-ph/0512048 +quant-ph/0512051 +quant-ph/0512054 +quant-ph/0512055 +quant-ph/0512056 +quant-ph/0512058 +quant-ph/0512061 +quant-ph/0512063 +quant-ph/0512066 +quant-ph/0512068 +quant-ph/0512070 +quant-ph/0512072 +quant-ph/0512073 +quant-ph/0512074 +quant-ph/0512081 +quant-ph/0512083 +quant-ph/0512084 +quant-ph/0512086 +quant-ph/0512087 +quant-ph/0512089 +quant-ph/0512093 +quant-ph/0512094 +quant-ph/0512095 +quant-ph/0512096 +quant-ph/0512097 +quant-ph/0512099 +quant-ph/0512108 +quant-ph/0512110 +quant-ph/0512121 +quant-ph/0512128 +quant-ph/0512129 +quant-ph/0512134 +quant-ph/0512135 +quant-ph/0512142 +quant-ph/0512143 +quant-ph/0512144 +quant-ph/0512146 +quant-ph/0512151 +quant-ph/0512152 +quant-ph/0512153 +quant-ph/0512155 +quant-ph/0512160 +quant-ph/0512161 +quant-ph/0512163 +quant-ph/0512165 +quant-ph/0512170 +quant-ph/0512175 +quant-ph/0512177 +quant-ph/0512179 +quant-ph/0512180 +quant-ph/0512184 +quant-ph/0512185 +quant-ph/0512189 +quant-ph/0512192 +quant-ph/0512193 +quant-ph/0512194 +quant-ph/0512204 +quant-ph/0512210 +quant-ph/0512212 +quant-ph/0512213 +quant-ph/0512214 +quant-ph/0512221 +quant-ph/0512226 +quant-ph/0512227 +quant-ph/0512233 +quant-ph/0512237 +quant-ph/0512242 +quant-ph/0512243 +quant-ph/0512249 +quant-ph/0512250 +quant-ph/0512252 +quant-ph/0512253 +quant-ph/0512256 +quant-ph/0512259 +0709.2946 Functional Analysis +0710.2377 Other Condensed Matter +0801.0294 General Physics +0802.3794 Other Condensed Matter +0807.1725 +0810.5334 +0811.0174 Information Theory +0811.4643 Strongly Correlated Electrons +0812.2445 +0812.2719 Information Theory +0901.0444 +0901.4454 +0902.2964 Combinatorics +0902.3558 Differential Geometry +0903.2903 +0904.1723 Quantum Gases +0904.2642 +0905.0242 Solar and Stellar Astrophysics +0905.1290 Strongly Correlated Electrons +0906.1406 Functional Analysis +0906.2586 Probability +0907.1060 Phenomenology +0907.3174 Combinatorics +0908.2845 Superconductivity +0908.3522 +0909.1672 +0909.1965 Combinatorics +cond-mat/0607123 Other Condensed Matter +0707.1256 Functional Analysis +0708.3232 Complex Variables +0710.2054 Strongly Correlated Electrons +0801.1627 Representation Theory +0801.4415 +0804.0108 Physics and Society +0804.0933 Algebraic Geometry +0804.2591 Representation Theory +0805.0296 +0805.4120 Combinatorics +0806.3158 Phenomenology +0807.2028 Multiagent Systems +0809.0346 Geometric Topology +0809.1687 Information Theory +0809.2196 Optics +0810.0874 Software Engineering +0810.2115 +0810.2508 Statistical Finance +0810.2621 +0810.2866 +0812.1654 Disordered Systems and Neural Networks +0812.3128 Pricing of Securities +0812.3137 History and Overview +0812.4547 Data Structures and Algorithms +0901.3052 Materials Science +0901.4425 Optics +0902.2092 Materials Science +0902.2551 Plasma Physics +0903.0786 Artificial Intelligence +0903.1686 Operator Algebras +0903.1790 Materials Science +0903.2055 +0903.2061 +0903.2074 Solar and Stellar Astrophysics +0903.2076 Algebraic Geometry +0903.2080 Materials Science +0903.2088 +0903.2091 +0903.2093 Commutative Algebra +0903.2096 Group Theory +0903.2099 General Finance +0903.2104 Materials Science +0903.2108 Formal Languages and Automata Theory +0903.2112 Adaptation and Self-Organizing Systems +0903.2116 Accelerator Physics +0903.2117 +0903.2119 Performance +0903.2124 Optimization and Control +0903.2129 Chaotic Dynamics +0903.2130 Materials Science +0903.2133 Chaotic Dynamics +0903.2134 Discrete Mathematics +0903.2137 Algebraic Geometry +0903.2141 Number Theory +0903.2156 Algebraic Geometry +0903.2158 Symbolic Computation +0903.2168 Programming Languages +0903.2180 Algebraic Topology +0903.2183 Number Theory +0903.2188 Programming Languages +0903.2192 Exactly Solvable and Integrable Systems +0903.2199 Programming Languages +0903.2200 Symplectic Geometry +0903.2201 Combinatorics +0903.2202 Programming Languages +0903.2203 Information Theory +0903.2205 Programming Languages +0903.2214 Analysis of PDEs +0903.2215 Number Theory +0903.2230 Chemical Physics +0903.2235 Commutative Algebra +0903.2236 Chaotic Dynamics +0903.2237 Superconductivity +0903.2240 Commutative Algebra +0903.2251 Programming Languages +0903.2252 Programming Languages +cond-mat/0211171 Materials Science +cond-mat/0602481 Soft Condensed Matter +cond-mat/0610116 Other Condensed Matter +math/0103074 Algebraic Geometry +math/0201219 Differential Geometry +math/0405204 Algebraic Geometry +math/0412330 Symplectic Geometry +math/0502430 Algebraic Geometry +math/0504495 Geometric Topology +math/0505503 Operator Algebras +math/0512364 Numerical Analysis +math/0512488 Operator Algebras +math/0610196 Algebraic Geometry +math/0611571 Algebraic Geometry +math/0703804 Algebraic Geometry +physics/0604180 Optics +0707.3854 Phenomenology +0708.0758 Group Theory +0709.3971 Superconductivity +0710.3348 Phenomenology +0711.1121 Phenomenology +0801.0137 Disordered Systems and Neural Networks +0802.2589 Number Theory +0802.3365 +0802.4087 +0803.0216 Phenomenology +0803.2297 Geometric Topology +0804.1834 Phenomenology +0804.1923 Fluid Dynamics +0805.1645 +0805.2626 Superconductivity +0805.4020 Physics and Society +0806.0137 +0806.1263 Probability +0806.1904 Statistical Mechanics +0806.2125 +0806.3010 Geometric Topology +0806.3149 Superconductivity +0806.4866 +0807.0635 Medical Physics +0807.2466 Computers and Society +0807.2587 Atomic Physics +0807.3037 +0807.3950 Superconductivity +0807.4718 Geometric Topology +0808.1542 Accelerator Physics +0808.2382 +0808.3585 Strongly Correlated Electrons +0808.3771 +0809.1667 Statistical Mechanics +0809.2648 Mesoscale and Nanoscale Physics +0810.1287 +0810.1412 Phenomenology +0810.1622 Atmospheric and Oceanic Physics +0810.1864 +0810.3763 Statistical Mechanics +0810.4309 Phenomenology +0810.4869 Strongly Correlated Electrons +0811.0711 Superconductivity +0811.2780 +0811.2916 Classical Analysis and ODEs +0811.3574 Disordered Systems and Neural Networks +0811.3636 +0812.2560 Complex Variables +0812.2901 Theory +0812.4681 Exactly Solvable and Integrable Systems +0812.4965 General Mathematics +0901.0089 Neurons and Cognition +0901.0138 Molecular Networks +0901.0357 Statistical Mechanics +0901.0563 Theory +0901.0573 Information Theory +0901.0577 Theory +0901.0578 Exactly Solvable and Integrable Systems +0901.0583 Molecular Networks +0901.0586 Probability +0901.0588 Complex Variables +0901.0598 Neural and Evolutionary Computing +0901.0600 Chemical Physics +0901.0616 Instrumentation and Detectors +0901.0618 Category Theory +0901.0619 Number Theory +0901.0620 Superconductivity +0901.0640 +0901.0643 Information Theory +0901.0651 Algebraic Geometry +0901.0654 Statistical Mechanics +0901.0655 Statistics Theory +0901.0659 +0901.0660 Algebraic Geometry +0901.0674 Pricing of Securities +0901.0686 Commutative Algebra +0901.0687 Commutative Algebra +0901.0691 Other Condensed Matter +0901.0696 Probability +0901.0700 +astro-ph/0303213 +astro-ph/0305454 +astro-ph/0505237 +astro-ph/0604303 +cond-mat/0409337 Materials Science +cond-mat/0511626 Materials Science +cond-mat/0512177 Materials Science +cond-mat/0702316 Strongly Correlated Electrons +cond-mat/9908246 Statistical Mechanics +cs/0609034 Computers and Society +gr-qc/0009067 +gr-qc/0309096 +gr-qc/0505123 +gr-qc/0506034 +gr-qc/0512163 +gr-qc/0603108 +hep-ex/0002016 Experiment +hep-ex/0003009 Experiment +hep-ex/0006017 Experiment +hep-ex/0010016 Experiment +hep-ex/0010054 Experiment +hep-ex/0011081 Experiment +hep-ex/0012033 Experiment +hep-ex/0012049 Experiment +hep-ex/0012052 Experiment +hep-ex/0102050 Experiment +hep-ex/0105059 Experiment +hep-ex/0110056 Experiment +hep-ex/0201006 Experiment +hep-ex/0203039 Experiment +hep-ex/0205064 Experiment +hep-ex/0205065 Experiment +hep-ex/0212040 Experiment +hep-ex/0301034 Experiment +hep-ex/0302012 Experiment +hep-ex/0411062 Experiment +hep-ex/0502040 Experiment +hep-ex/0505072 Experiment +hep-ex/0507047 Experiment +hep-ex/0601048 Experiment +hep-ex/9908068 Experiment +hep-ex/9911004 Experiment +hep-lat/0006018 Lattice +hep-lat/0103037 Lattice +hep-lat/0502008 Lattice +hep-lat/0502011 Lattice +hep-lat/0502012 Lattice +hep-lat/0502014 Lattice +hep-lat/0503002 Lattice +hep-lat/0509001 Lattice +hep-lat/0512017 Lattice +hep-lat/0604004 Lattice +hep-lat/0607025 Lattice +hep-lat/9911012 Lattice +hep-ph/0001008 Phenomenology +hep-ph/0001149 Phenomenology +hep-ph/0002136 Phenomenology +hep-ph/0002184 Phenomenology +hep-ph/0002268 Phenomenology +hep-ph/0003083 Phenomenology +hep-ph/0003165 Phenomenology +hep-ph/0003244 Phenomenology +hep-ph/0003296 Phenomenology +hep-ph/0003300 Phenomenology +hep-ph/0003313 Phenomenology +hep-ph/0004084 Phenomenology +hep-ph/0004097 Phenomenology +hep-ph/0004146 Phenomenology +hep-ph/0004150 Phenomenology +hep-ph/0004199 Phenomenology +hep-ph/0004237 Phenomenology +hep-ph/0005042 Phenomenology +hep-ph/0005078 Phenomenology +hep-ph/0005121 Phenomenology +hep-ph/0005157 Phenomenology +hep-ph/0005163 Phenomenology +hep-ph/0006244 Phenomenology +hep-ph/0006249 Phenomenology +hep-ph/0006260 Phenomenology +hep-ph/0007055 Phenomenology +hep-ph/0007175 Phenomenology +hep-ph/0007216 Phenomenology +hep-ph/0007222 Phenomenology +hep-ph/0007288 Phenomenology +hep-ph/0008065 Phenomenology +hep-ph/0008259 Phenomenology +hep-ph/0008262 Phenomenology +hep-ph/0008289 Phenomenology +hep-ph/0008335 Phenomenology +hep-ph/0009082 Phenomenology +hep-ph/0009201 Phenomenology +hep-ph/0009211 Phenomenology +hep-ph/0009235 Phenomenology +hep-ph/0009251 Phenomenology +hep-ph/0010005 Phenomenology +hep-ph/0010006 Phenomenology +hep-ph/0010029 Phenomenology +hep-ph/0010104 Phenomenology +hep-ph/0010163 Phenomenology +hep-ph/0010187 Phenomenology +hep-ph/0010253 Phenomenology +hep-ph/0010254 Phenomenology +hep-ph/0010283 Phenomenology +hep-ph/0010284 Phenomenology +hep-ph/0010314 Phenomenology +hep-ph/0010344 Phenomenology +hep-ph/0010350 Phenomenology +hep-ph/0011129 Phenomenology +hep-ph/0011175 Phenomenology +hep-ph/0011221 Phenomenology +hep-ph/0011276 Phenomenology +hep-ph/0011300 Phenomenology +hep-ph/0011350 Phenomenology +hep-ph/0011366 Phenomenology +hep-ph/0011393 Phenomenology +hep-ph/0012023 Phenomenology +hep-ph/0012069 Phenomenology +hep-ph/0012132 Phenomenology +hep-ph/0012143 Phenomenology +hep-ph/0012155 Phenomenology +hep-ph/0012227 Phenomenology +hep-ph/0012231 Phenomenology +hep-ph/0012250 Phenomenology +hep-ph/0012374 Phenomenology +hep-ph/0101101 Phenomenology +hep-ph/0101128 Phenomenology +hep-ph/0101156 Phenomenology +hep-ph/0101277 Phenomenology +hep-ph/0101303 Phenomenology +hep-ph/0101335 Phenomenology +hep-ph/0101346 Phenomenology +hep-ph/0102050 Phenomenology +hep-ph/0102081 Phenomenology +hep-ph/0102163 Phenomenology +hep-ph/0102221 Phenomenology +hep-ph/0102233 Phenomenology +hep-ph/0102253 Phenomenology +hep-ph/0103006 Phenomenology +hep-ph/0103016 Phenomenology +hep-ph/0103078 Phenomenology +hep-ph/0103089 Phenomenology +hep-ph/0103113 Phenomenology +hep-ph/0103135 Phenomenology +hep-ph/0103137 Phenomenology +hep-ph/0103153 Phenomenology +hep-ph/0103161 Phenomenology +hep-ph/0103249 Phenomenology +hep-ph/0103282 Phenomenology +hep-ph/0104038 Phenomenology +hep-ph/0104057 Phenomenology +hep-ph/0104078 Phenomenology +hep-ph/0104099 Phenomenology +hep-ph/0104115 Phenomenology +hep-ph/0104118 Phenomenology +hep-ph/0104127 Phenomenology +hep-ph/0104279 Phenomenology +hep-ph/0105119 Phenomenology +hep-ph/0105145 Phenomenology +hep-ph/0105192 Phenomenology +hep-ph/0106034 Phenomenology +hep-ph/0106055 Phenomenology +hep-ph/0106112 Phenomenology +hep-ph/0106132 Phenomenology +hep-ph/0106230 Phenomenology +hep-ph/0106329 Phenomenology +hep-ph/0107068 Phenomenology +hep-ph/0109033 Phenomenology +hep-ph/0109073 Phenomenology +hep-ph/0110100 Phenomenology +hep-ph/0110117 Phenomenology +hep-ph/0110147 Phenomenology +hep-ph/0110280 Phenomenology +hep-ph/0110409 Phenomenology +hep-ph/0111201 Phenomenology +hep-ph/0111378 Phenomenology +hep-ph/0111466 Phenomenology +hep-ph/0202021 Phenomenology +hep-ph/0202135 Phenomenology +hep-ph/0202218 Phenomenology +hep-ph/0203038 Phenomenology +hep-ph/0203052 Phenomenology +hep-ph/0203130 Phenomenology +hep-ph/0203193 Phenomenology +hep-ph/0204200 Phenomenology +hep-ph/0204283 Phenomenology +hep-ph/0204317 Phenomenology +hep-ph/0204333 Phenomenology +hep-ph/0204354 Phenomenology +hep-ph/0205208 Phenomenology +hep-ph/0206017 Phenomenology +hep-ph/0206068 Phenomenology +hep-ph/0206166 Phenomenology +hep-ph/0206290 Phenomenology +hep-ph/0207173 Phenomenology +hep-ph/0207315 Phenomenology +hep-ph/0209029 Phenomenology +hep-ph/0209108 Phenomenology +hep-ph/0209213 Phenomenology +hep-ph/0209268 Phenomenology +hep-ph/0210042 Phenomenology +hep-ph/0210206 Phenomenology +hep-ph/0210258 Phenomenology +hep-ph/0210310 Phenomenology +hep-ph/0211055 Phenomenology +hep-ph/0211240 Phenomenology +hep-ph/0211425 Phenomenology +hep-ph/0212163 Phenomenology +hep-ph/0212257 Phenomenology +hep-ph/0212301 Phenomenology +hep-ph/0301078 Phenomenology +hep-ph/0301263 Phenomenology +hep-ph/0302023 Phenomenology +hep-ph/0302156 Phenomenology +hep-ph/0302214 Phenomenology +hep-ph/0302221 Phenomenology +hep-ph/0303172 Phenomenology +hep-ph/0304070 Phenomenology +hep-ph/0304083 Phenomenology +hep-ph/0307320 Phenomenology +hep-ph/0308047 Phenomenology +hep-ph/0401180 Phenomenology +hep-ph/0405080 Phenomenology +hep-ph/0405217 Phenomenology +hep-ph/0406016 Phenomenology +hep-ph/0406045 Phenomenology +hep-ph/0406256 Phenomenology +hep-ph/0407159 Phenomenology +hep-ph/0408122 Phenomenology +hep-ph/0408191 Phenomenology +hep-ph/0410093 Phenomenology +hep-ph/0410248 Phenomenology +hep-ph/0410285 Phenomenology +hep-ph/0411027 Phenomenology +hep-ph/0411077 Phenomenology +hep-ph/0411184 Phenomenology +hep-ph/0411192 Phenomenology +hep-ph/0411262 Phenomenology +hep-ph/0412219 Phenomenology +hep-ph/0412302 Phenomenology +hep-ph/0412365 Phenomenology +hep-ph/0412395 Phenomenology +hep-ph/0412407 Phenomenology +hep-ph/0501022 Phenomenology +hep-ph/0501032 Phenomenology +hep-ph/0501082 Phenomenology +hep-ph/0501125 Phenomenology +hep-ph/0501151 Phenomenology +hep-ph/0501157 Phenomenology +hep-ph/0501172 Phenomenology +hep-ph/0501214 Phenomenology +hep-ph/0501242 Phenomenology +hep-ph/0502058 Phenomenology +hep-ph/0502114 Phenomenology +hep-ph/0502167 Phenomenology +hep-ph/0502174 Phenomenology +hep-ph/0502190 Phenomenology +hep-ph/0502198 Phenomenology +hep-ph/0502204 Phenomenology +hep-ph/0502208 Phenomenology +hep-ph/0502230 Phenomenology +hep-ph/0502249 Phenomenology +hep-ph/0503007 Phenomenology +hep-ph/0503064 Phenomenology +hep-ph/0503119 Phenomenology +hep-ph/0503169 Phenomenology +hep-ph/0503191 Phenomenology +hep-ph/0503215 Phenomenology +hep-ph/0503259 Phenomenology +hep-ph/0503296 Phenomenology +hep-ph/0504003 Phenomenology +hep-ph/0504046 Phenomenology +hep-ph/0504103 Phenomenology +hep-ph/0504119 Phenomenology +hep-ph/0504122 Phenomenology +hep-ph/0504128 Phenomenology +hep-ph/0504131 Phenomenology +hep-ph/0504133 Phenomenology +hep-ph/0504139 Phenomenology +hep-ph/0504144 Phenomenology +hep-ph/0504175 Phenomenology +hep-ph/0504179 Phenomenology +hep-ph/0504180 Phenomenology +hep-ph/0504226 Phenomenology +hep-ph/0504233 Phenomenology +hep-ph/0504251 Phenomenology +hep-ph/0504253 Phenomenology +hep-ph/0505007 Phenomenology +hep-ph/0505032 Phenomenology +hep-ph/0505077 Phenomenology +hep-ph/0505157 Phenomenology +hep-ph/0505193 Phenomenology +hep-ph/0505232 Phenomenology +hep-ph/0505240 Phenomenology +hep-ph/0506005 Phenomenology +hep-ph/0506026 Phenomenology +hep-ph/0506140 Phenomenology +hep-ph/0506178 Phenomenology +hep-ph/0506189 Phenomenology +hep-ph/0506203 Phenomenology +hep-ph/0506211 Phenomenology +hep-ph/0506240 Phenomenology +hep-ph/0506264 Phenomenology +hep-ph/0506284 Phenomenology +hep-ph/0506300 Phenomenology +hep-ph/0507030 Phenomenology +hep-ph/0507038 Phenomenology +hep-ph/0507085 Phenomenology +hep-ph/0507126 Phenomenology +hep-ph/0507171 Phenomenology +hep-ph/0507183 Phenomenology +hep-ph/0507213 Phenomenology +hep-ph/0507244 Phenomenology +hep-ph/0507268 Phenomenology +hep-ph/0507280 Phenomenology +hep-ph/0507295 Phenomenology +hep-ph/0507326 Phenomenology +hep-ph/0508021 Phenomenology +hep-ph/0508074 Phenomenology +hep-ph/0508092 Phenomenology +hep-ph/0508120 Phenomenology +hep-ph/0508132 Phenomenology +hep-ph/0508133 Phenomenology +hep-ph/0508173 Phenomenology +hep-ph/0508196 Phenomenology +hep-ph/0508255 Phenomenology +hep-ph/0508275 Phenomenology +hep-ph/0508301 Phenomenology +hep-ph/0509008 Phenomenology +hep-ph/0509027 Phenomenology +hep-ph/0509096 Phenomenology +hep-ph/0509143 Phenomenology +hep-ph/0509194 Phenomenology +hep-ph/0509230 Phenomenology +hep-ph/0509234 Phenomenology +hep-ph/0510021 Phenomenology +hep-ph/0510074 Phenomenology +hep-ph/0510154 Phenomenology +hep-ph/0510157 Phenomenology +hep-ph/0510171 Phenomenology +hep-ph/0510195 Phenomenology +hep-ph/0510207 Phenomenology +hep-ph/0510222 Phenomenology +hep-ph/0510348 Phenomenology +hep-ph/0510369 Phenomenology +hep-ph/0511006 Phenomenology +hep-ph/0511021 Phenomenology +hep-ph/0511023 Phenomenology +hep-ph/0511029 Phenomenology +hep-ph/0511224 Phenomenology +hep-ph/0511288 Phenomenology +hep-ph/0511344 Phenomenology +hep-ph/0512006 Phenomenology +hep-ph/0512027 Phenomenology +hep-ph/0512032 Phenomenology +hep-ph/0512050 Phenomenology +hep-ph/0512055 Phenomenology +hep-ph/0512077 Phenomenology +hep-ph/0512095 Phenomenology +hep-ph/0512133 Phenomenology +hep-ph/0512180 Phenomenology +hep-ph/0512247 Phenomenology +hep-ph/0512254 Phenomenology +hep-ph/0601017 Phenomenology +hep-ph/0601034 Phenomenology +hep-ph/0601060 Phenomenology +hep-ph/0601062 Phenomenology +hep-ph/0601074 Phenomenology +hep-ph/0601097 Phenomenology +hep-ph/0601138 Phenomenology +hep-ph/0601139 Phenomenology +hep-ph/0601156 Phenomenology +hep-ph/0601171 Phenomenology +hep-ph/0601176 Phenomenology +hep-ph/0601210 Phenomenology +hep-ph/0601267 Phenomenology +hep-ph/0602111 Phenomenology +hep-ph/0602205 Phenomenology +hep-ph/0602215 Phenomenology +hep-ph/0602225 Phenomenology +hep-ph/0602236 Phenomenology +hep-ph/0603035 Phenomenology +hep-ph/0603071 Phenomenology +hep-ph/0603085 Phenomenology +hep-ph/0603088 Phenomenology +hep-ph/0603089 Phenomenology +hep-ph/0603133 Phenomenology +hep-ph/0603258 Phenomenology +hep-ph/0604001 Phenomenology +hep-ph/0604030 Phenomenology +hep-ph/0604125 Phenomenology +hep-ph/0604234 Phenomenology +hep-ph/0605257 Phenomenology +hep-ph/0606096 Phenomenology +hep-ph/0606319 Phenomenology +hep-ph/9810412 Phenomenology +hep-ph/9901224 Phenomenology +hep-ph/9901260 Phenomenology +hep-ph/9903236 Phenomenology +hep-ph/9903471 Phenomenology +hep-ph/9904228 Phenomenology +hep-ph/9905269 Phenomenology +hep-ph/9905343 Phenomenology +hep-ph/9905475 Phenomenology +hep-ph/9905486 Phenomenology +hep-ph/9907203 Phenomenology +hep-ph/9907207 Phenomenology +hep-ph/9907229 Phenomenology +hep-ph/9907352 Phenomenology +hep-ph/9907434 Phenomenology +hep-ph/9907451 Phenomenology +hep-ph/9908514 Phenomenology +hep-ph/9909260 Phenomenology +hep-ph/9909365 Phenomenology +hep-ph/9909386 Phenomenology +hep-ph/9910464 Phenomenology +hep-th/0001126 Theory +hep-th/0002021 Theory +hep-th/0003079 Theory +hep-th/0005255 Theory +hep-th/0007013 Theory +hep-th/0007073 Theory +hep-th/0007142 Theory +hep-th/0007156 Theory +hep-th/0008093 Theory +hep-th/0009075 Theory +hep-th/0009230 Theory +hep-th/0011050 Theory +hep-th/0011174 Theory +hep-th/0011214 Theory +hep-th/0102014 Theory +hep-th/0102115 Theory +hep-th/0102116 Theory +hep-th/0102117 Theory +hep-th/0103189 Theory +hep-th/0104210 Theory +hep-th/0105057 Theory +hep-th/0112212 Theory +hep-th/0201154 Theory +hep-th/0203080 Theory +hep-th/0209253 Theory +hep-th/0402229 Theory +hep-th/0403083 Theory +hep-th/0406013 Theory +hep-th/0407228 Theory +hep-th/0408131 Theory +hep-th/0409143 Theory +hep-th/0410148 Theory +hep-th/0411254 Theory +hep-th/0412131 Theory +hep-th/0412162 Theory +hep-th/0412208 Theory +hep-th/0502244 Theory +hep-th/0503078 Theory +hep-th/0504198 Theory +hep-th/0506109 Theory +hep-th/0507127 Theory +hep-th/0507141 Theory +hep-th/0508193 Theory +hep-th/0508224 Theory +hep-th/0508249 Theory +hep-th/0509199 Theory +hep-th/0511143 Theory +hep-th/0511205 Theory +hep-th/0511248 Theory +hep-th/0512186 Theory +hep-th/0512334 Theory +hep-th/0602095 Theory +hep-th/0602167 Theory +hep-th/0604027 Theory +hep-th/0605133 Theory +hep-th/0608011 Theory +hep-th/9906111 Theory +hep-th/9907055 Theory +hep-th/9912022 Theory +hep-th/9912131 Theory +hep-th/9912138 Theory +math-ph/0010038 +math-ph/0507027 +math/0006179 Quantum Algebra +math/0011080 Algebraic Geometry +math/0609155 Combinatorics +math/0702646 Algebraic Topology +nucl-ex/0007012 +nucl-ex/0008004 +nucl-ex/0412045 +nucl-ex/0501002 +nucl-ex/0502018 +nucl-ex/0503008 +nucl-ex/0503014 +nucl-ex/0503022 +nucl-ex/0504001 +nucl-ex/0505002 +nucl-ex/0509002 +nucl-th/0004005 +nucl-th/0102005 +nucl-th/0301077 +nucl-th/0501054 +nucl-th/0502033 +nucl-th/0503019 +nucl-th/0503034 +nucl-th/0503054 +nucl-th/0510043 +nucl-th/0512103 +nucl-th/0603029 +nucl-th/9902070 +nucl-th/9906057 +nucl-th/9909075 +physics/0509174 Instrumentation and Detectors +quant-ph/0003108 +quant-ph/0605026 +0704.3090 Algebraic Topology +0705.2923 +0705.3854 +0705.3856 +0706.0221 +0706.0882 +0708.1974 +0709.2244 Disordered Systems and Neural Networks +0709.3662 Statistical Finance +0709.4245 Mesoscale and Nanoscale Physics +0710.1359 +0801.2370 Algebraic Geometry +0801.2405 +0802.0460 +0804.2875 +0805.0320 Dynamical Systems +0806.0365 Probability +0806.1542 Disordered Systems and Neural Networks +0806.1971 Phenomenology +0807.0196 Other Condensed Matter +0807.0283 Mesoscale and Nanoscale Physics +0807.3433 Disordered Systems and Neural Networks +0808.1855 Phenomenology +0808.2454 Superconductivity +0809.0290 Physics and Society +0809.1479 Populations and Evolution +0809.2034 Group Theory +0809.4832 Phenomenology +0810.1075 Theory +0810.1107 +0810.1564 Superconductivity +0810.4283 Strongly Correlated Electrons +0810.4800 Algebraic Geometry +0811.1031 Materials Science +0811.1628 Strongly Correlated Electrons +0811.1910 +0811.3765 Strongly Correlated Electrons +0811.4604 Plasma Physics +0812.0338 Plasma Physics +0812.1163 Differential Geometry +0812.2826 Combinatorics +0812.3487 Physics and Society +0812.3643 Statistical Mechanics +0812.4034 +0812.4795 Chaotic Dynamics +0812.4825 +0901.0272 Materials Science +0901.1546 Phenomenology +0901.2412 General Physics +0901.4630 Metric Geometry +0902.0499 Chaotic Dynamics +0902.2080 Soft Condensed Matter +0902.3634 Statistical Mechanics +0902.3868 Cosmology and Nongalactic Astrophysics +0902.3994 Earth and Planetary Astrophysics +0902.4009 Experiment +0902.4016 Category Theory +0902.4026 Analysis of PDEs +0902.4042 Databases +0902.4045 Information Theory +0902.4053 Optics +0902.4059 High Energy Astrophysical Phenomena +0902.4063 Quantum Algebra +0902.4064 Classical Analysis and ODEs +0902.4065 Algebraic Geometry +0902.4067 Differential Geometry +0902.4073 Computer Vision and Pattern Recognition +0902.4075 +0902.4076 +0902.4079 +0902.4084 Combinatorics +0902.4085 Differential Geometry +0902.4088 Theory +0902.4089 Group Theory +0902.4093 High Energy Astrophysical Phenomena +0902.4112 +0902.4116 Fluid Dynamics +0902.4117 Computation +0902.4120 Dynamical Systems +0902.4123 Dynamical Systems +0902.4125 Representation Theory +0902.4128 Differential Geometry +0902.4129 Differential Geometry +0902.4130 Differential Geometry +0902.4131 Dynamical Systems +0902.4134 Statistical Mechanics +0902.4137 Methodology +0902.4144 Materials Science +0902.4148 Statistical Mechanics +0902.4152 Quantitative Methods +0902.4156 Exactly Solvable and Integrable Systems +0902.4157 Networking and Internet Architecture +0902.4161 Algebraic Geometry +0902.4172 Dynamical Systems +0902.4174 Superconductivity +0902.4175 Classical Analysis and ODEs +0902.4181 Astrophysics of Galaxies +0902.4183 Disordered Systems and Neural Networks +0902.4195 Statistical Mechanics +0902.4196 Other Condensed Matter +0902.4199 K-Theory and Homology +0902.4200 Optimization and Control +0902.4206 Instrumentation and Methods for Astrophysics +0902.4209 High Energy Astrophysical Phenomena +0902.4216 Astrophysics of Galaxies +0902.4217 Astrophysics of Galaxies +0902.4219 Astrophysics of Galaxies +0902.4220 Solar and Stellar Astrophysics +0902.4221 Networking and Internet Architecture +0902.4222 Solar and Stellar Astrophysics +0902.4224 Cosmology and Nongalactic Astrophysics +0902.4225 Number Theory +0902.4226 Cosmology and Nongalactic Astrophysics +0902.4228 Learning +0902.4232 Probability +cond-mat/0001432 Statistical Mechanics +cond-mat/0008305 Statistical Mechanics +cond-mat/0012504 +cond-mat/0605750 Mesoscale and Nanoscale Physics +cond-mat/0607436 Statistical Mechanics +cond-mat/0610305 Other Condensed Matter +cond-mat/9706029 Superconductivity +cond-mat/9706274 Mesoscale and Nanoscale Physics +cond-mat/9906276 Mesoscale and Nanoscale Physics +gr-qc/0407099 +hep-ex/0411081 Experiment +hep-ph/0103128 Phenomenology +hep-ph/0104182 Phenomenology +hep-th/0103093 Theory +hep-th/0307187 Theory +hep-th/0502191 Theory +hep-th/0610168 Theory +hep-th/9406027 Theory +hep-th/9706123 Theory +hep-th/9804119 Theory +math/0505368 Probability +math/0506437 Differential Geometry +math/0508580 Probability +math/0509104 Differential Geometry +math/0702130 Commutative Algebra +math/0702470 Commutative Algebra +math/0702846 Representation Theory +math/0703422 Representation Theory +physics/0602118 General Physics +0708.1962 Hardware Architecture +0804.3336 Rings and Algebras +0804.3750 Number Theory +0806.3796 Theory +0807.2221 Superconductivity +0807.2991 Strongly Correlated Electrons +0808.2130 Theory +0808.3404 General Physics +0809.1755 Superconductivity +0810.1795 Mesoscale and Nanoscale Physics +0810.2281 Phenomenology +0811.1390 Algebraic Geometry +0811.3853 +0812.1477 Materials Science +0901.1344 Materials Science +0901.3555 Other Condensed Matter +0902.0955 Number Theory +cond-mat/0601565 Superconductivity +hep-lat/0403004 Lattice +hep-lat/0501027 Lattice +hep-lat/0503024 Lattice +hep-lat/0510107 Lattice +hep-lat/0601023 Lattice +math/0612861 Rings and Algebras +0802.4275 Other Condensed Matter +0803.1443 Information Theory +0804.0976 +0804.2750 +0805.0353 +0806.2392 Theory +0806.3017 +0806.3753 +0807.3362 +0807.4454 +0809.1166 Statistical Mechanics +0809.3186 +0810.1461 +0810.4325 +0811.0675 Phenomenology +0811.1240 +0811.3528 +0811.4212 +0812.2205 +0812.2526 Phenomenology +0812.2999 +0812.3117 Pricing of Securities +0901.0081 +0901.0950 +0901.2985 +0901.3243 +0901.3497 +0902.3905 +0903.0343 +0903.1606 +0903.1916 +0903.3157 Probability +0903.3174 +0903.3683 Phenomenology +0903.3826 +0903.3897 +0903.4405 Combinatorics +0903.5027 +0903.5501 +0904.0548 +0904.1108 Phenomenology +0904.1487 +0904.1924 +0905.0010 +0905.3027 Theory +0906.0396 Cosmology and Nongalactic Astrophysics +0906.1795 Theory +0906.2069 +0906.2072 Theory +0906.3250 Theory +0906.3275 Theory +0906.4293 Theory +0907.0448 Mesoscale and Nanoscale Physics +0907.1920 Theory +0907.2607 +0907.3234 Theory +0907.4266 Theory +0908.2452 Phenomenology +0909.0346 Theory +0909.0403 Cosmology and Nongalactic Astrophysics +0909.0449 +0909.0721 Solar and Stellar Astrophysics +0909.1129 +0909.1960 Cosmology and Nongalactic Astrophysics +0909.4534 Superconductivity +0910.0854 Phenomenology +0910.1920 Cosmology and Nongalactic Astrophysics +0910.2419 Lattice +0910.3656 +0910.3925 Phenomenology +0910.4349 Phenomenology +0910.5856 Phenomenology +0911.2114 Phenomenology +0911.2692 Algebraic Topology +0911.3346 +0911.4343 Theory +0911.5104 Artificial Intelligence +0911.5106 Artificial Intelligence +0911.5256 Analysis of PDEs +0912.0085 Materials Science +0912.2461 +0912.3533 Differential Geometry +0912.3999 +0912.4091 Soft Condensed Matter +0912.4215 Mesoscale and Nanoscale Physics +0912.4913 General Mathematics +0912.4914 Category Theory +0912.4918 Theory +0912.4922 +0912.4923 Algebraic Geometry +0912.4931 Number Theory +0912.4934 Disordered Systems and Neural Networks +0912.4936 Computer Vision and Pattern Recognition +0912.4939 Analysis of PDEs +0912.4940 Differential Geometry +0912.4941 Logic in Computer Science +0912.4942 Materials Science +0912.4943 +0912.4951 Functional Analysis +0912.4954 Exactly Solvable and Integrable Systems +0912.4956 +0912.4960 Populations and Evolution +0912.4962 General Physics +0912.4963 +0912.4965 Strongly Correlated Electrons +0912.4966 Atomic Physics +0912.4967 Strongly Correlated Electrons +0912.4973 Pricing of Securities +0912.4974 Geometric Topology +0912.4975 Number Theory +0912.4976 Phenomenology +0912.4978 Combinatorics +0912.4989 Superconductivity +0912.4992 Optics +0912.4997 Geophysics +0912.5001 Representation Theory +0912.5003 Representation Theory +0912.5004 Representation Theory +0912.5006 Experiment +0912.5007 General Physics +0912.5010 Materials Science +0912.5014 Logic in Computer Science +0912.5019 Differential Geometry +0912.5021 Number Theory +0912.5025 +0912.5029 Learning +0912.5034 Classical Analysis and ODEs +0912.5036 Differential Geometry +0912.5040 Probability +0912.5043 Information Theory +0912.5044 Classical Physics +0912.5046 Mesoscale and Nanoscale Physics +0912.5047 K-Theory and Homology +0912.5053 +0912.5054 Mesoscale and Nanoscale Physics +0912.5056 Solar and Stellar Astrophysics +0912.5059 Experiment +0912.5062 Experiment +0912.5072 Number Theory +0912.5074 Cosmology and Nongalactic Astrophysics +0912.5077 Analysis of PDEs +0912.5079 Information Theory +0912.5089 Strongly Correlated Electrons +0912.5092 Exactly Solvable and Integrable Systems +0912.5095 Classical Analysis and ODEs +0912.5097 +0912.5100 Statistics Theory +0912.5101 Cryptography and Security +0912.5107 Geometric Topology +0912.5113 Functional Analysis +0912.5117 Probability +0912.5120 Tissues and Organs +0912.5124 Classical Analysis and ODEs +0912.5131 Analysis of PDEs +0912.5134 +0912.5136 Soft Condensed Matter +0912.5146 +0912.5151 Probability +0912.5152 Cosmology and Nongalactic Astrophysics +0912.5155 High Energy Astrophysical Phenomena +0912.5156 +0912.5166 Cryptography and Security +0912.5172 High Energy Astrophysical Phenomena +0912.5173 Statistical Mechanics +0912.5174 Probability +0912.5180 +0912.5182 Data Structures and Algorithms +0912.5183 High Energy Astrophysical Phenomena +0912.5189 General Physics +0912.5190 +0912.5192 Commutative Algebra +0912.5196 Complex Variables +0912.5202 Rings and Algebras +0912.5215 Quantum Gases +0912.5232 Neurons and Cognition +0912.5233 Optimization and Control +0912.5234 Cosmology and Nongalactic Astrophysics +0912.5235 Instrumentation and Methods for Astrophysics +0912.5237 Cryptography and Security +0912.5238 Materials Science +0912.5242 Adaptation and Self-Organizing Systems +0912.5248 Fluid Dynamics +0912.5249 Fluid Dynamics +0912.5252 Analysis of PDEs +0912.5257 Atomic Physics +0912.5258 Mesoscale and Nanoscale Physics +0912.5260 Optics +0912.5262 Phenomenology +0912.5264 Combinatorics +0912.5266 Phenomenology +0912.5269 Networking and Internet Architecture +0912.5271 Probability +0912.5273 Exactly Solvable and Integrable Systems +0912.5276 Computational Complexity +0912.5279 Number Theory +0912.5283 Strongly Correlated Electrons +0912.5287 Information Theory +0912.5288 Populations and Evolution +0912.5290 Instrumentation and Methods for Astrophysics +0912.5293 +0912.5294 Geometric Topology +0912.5308 Data Analysis, Statistics and Probability +0912.5310 Algebraic Geometry +0912.5315 Genomics +0912.5316 Mesoscale and Nanoscale Physics +0912.5320 High Energy Astrophysical Phenomena +0912.5334 Cryptography and Security +0912.5340 Databases +0912.5341 Geometric Topology +0912.5342 Computational Complexity +0912.5344 Materials Science +0912.5345 History and Overview +0912.5347 Materials Science +0912.5348 Geometric Topology +0912.5350 Materials Science +0912.5352 Physics and Society +0912.5355 High Energy Astrophysical Phenomena +0912.5356 Mesoscale and Nanoscale Physics +0912.5357 Group Theory +0912.5362 General Physics +0912.5364 Combinatorics +0912.5365 Statistical Mechanics +0912.5366 Logic +0912.5367 General Physics +0912.5369 Neurons and Cognition +0912.5380 Graphics +0912.5389 General Topology +0912.5394 +0912.5395 Combinatorics +0912.5396 General Topology +0912.5399 Phenomenology +0912.5409 Neurons and Cognition +0912.5410 Methodology +0912.5413 Number Theory +0912.5419 Dynamical Systems +0912.5426 Databases +0912.5432 Strongly Correlated Electrons +0912.5433 +0912.5435 High Energy Astrophysical Phenomena +0912.5436 +0912.5441 General Mathematics +0912.5442 High Energy Astrophysical Phenomena +0912.5449 Data Structures and Algorithms +0912.5452 +0912.5456 Information Retrieval +0912.5458 Representation Theory +0912.5459 General Physics +0912.5472 Differential Geometry +0912.5473 Data Structures and Algorithms +0912.5475 High Energy Astrophysical Phenomena +0912.5477 Number Theory +0912.5478 Combinatorics +0912.5480 Physics and Society +0912.5488 +0912.5504 History and Overview +0912.5506 Networking and Internet Architecture +0912.5511 Artificial Intelligence +0912.5518 Probability +0912.5521 Other Condensed Matter +0912.5527 Networking and Internet Architecture +0912.5530 +0912.5533 Artificial Intelligence +astro-ph/0005004 +astro-ph/0007108 +astro-ph/0008134 +astro-ph/0008363 +astro-ph/0009277 +astro-ph/0012393 +astro-ph/0101236 +astro-ph/0103452 +cond-mat/9808307 +gr-qc/0006079 +gr-qc/0007051 +gr-qc/0008004 +gr-qc/0009011 +gr-qc/0009021 +gr-qc/0009078 +gr-qc/0010033 +gr-qc/0010101 +gr-qc/0011060 +gr-qc/0011085 +gr-qc/0101022 +gr-qc/0101116 +gr-qc/9709079 +gr-qc/9904041 +hep-lat/0011076 Lattice +hep-lat/0407012 Lattice +hep-ph/0002141 Phenomenology +hep-ph/0003139 Phenomenology +hep-ph/0007158 Phenomenology +hep-ph/0008076 Phenomenology +hep-ph/0008113 Phenomenology +hep-ph/0008224 Phenomenology +hep-ph/0009215 Phenomenology +hep-ph/0011075 Phenomenology +hep-ph/0011172 Phenomenology +hep-ph/0011268 Phenomenology +hep-ph/0012244 Phenomenology +hep-ph/0012257 Phenomenology +hep-ph/0101143 Phenomenology +hep-ph/0102238 Phenomenology +hep-ph/0103162 Phenomenology +hep-ph/0103259 Phenomenology +hep-ph/0103267 Phenomenology +hep-ph/0103318 Phenomenology +hep-ph/0307288 Phenomenology +hep-ph/0412033 Phenomenology +hep-ph/0508118 Phenomenology +hep-ph/9904476 Phenomenology +hep-th/0001045 Theory +hep-th/0008208 Theory +hep-th/0101065 Theory +hep-th/0104104 Theory +hep-th/0204130 Theory +math/0305212 Dynamical Systems +math/0507217 Number Theory +math/0611672 Algebraic Geometry +physics/0008230 Atomic Physics +0704.2895 Theory +0705.0570 Probability +0705.0998 Combinatorics +0707.1120 Algebraic Geometry +0708.0278 Statistical Mechanics +0708.1025 +0708.2391 Group Theory +0709.4543 Statistics Theory +0710.4534 +0710.5686 Strongly Correlated Electrons +0711.0042 +0711.4789 Phenomenology +0712.1770 +0712.3681 Probability +0801.4243 Commutative Algebra +0802.0646 Optimization and Control +0802.3162 +0803.1416 Combinatorics +0804.0871 +0804.1230 Strongly Correlated Electrons +0804.2193 +0804.3364 Superconductivity +0805.3458 Logic +0806.4817 Fluid Dynamics +0807.0208 +0808.2003 +0808.2019 Materials Science +0808.2083 Databases +0808.2953 Programming Languages +0808.3179 Theory +0808.3747 Networking and Internet Architecture +0809.1675 Superconductivity +0809.3364 General Physics +0810.0389 Materials Science +0810.1456 +0810.2655 Mesoscale and Nanoscale Physics +0811.1322 Number Theory +0812.2329 Theory +0812.2563 Symbolic Computation +0812.3283 Phenomenology +0812.4568 Optics +0901.1762 Information Theory +0901.2042 Information Theory +0901.2085 Differential Geometry +0901.2351 Materials Science +0901.2357 Phenomenology +0901.2367 Information Theory +0901.2369 Analysis of PDEs +0901.2372 Category Theory +0901.2376 Learning +0901.2378 Quantitative Methods +0901.2389 Plasma Physics +0901.2390 Probability +0901.2391 Information Theory +0901.2392 Commutative Algebra +0901.2394 Commutative Algebra +0901.2396 Information Theory +0901.2397 Instrumentation and Detectors +0901.2403 Space Physics +0901.2408 Optimization and Control +0901.2409 Phenomenology +0901.2411 General Physics +0901.2414 Theory +0901.2415 Phenomenology +0901.2416 Sound +0901.2417 Algebraic Topology +0901.2422 Analysis of PDEs +0901.2423 +0901.2425 Statistical Mechanics +0901.2426 Analysis of PDEs +0901.2428 Dynamical Systems +0901.2433 Mesoscale and Nanoscale Physics +0901.2434 Logic in Computer Science +0901.2441 Number Theory +0901.2443 +0901.2446 Dynamical Systems +0901.2451 Probability +0901.2454 Fluid Dynamics +0901.2461 Programming Languages +0901.2464 Probability +0901.2468 Probability +0901.2473 +0901.2474 Probability +0901.2479 +0901.2480 Probability +0901.2490 Materials Science +0901.2494 Dynamical Systems +0901.2496 Statistical Mechanics +0901.2502 Algebraic Geometry +0901.2507 +0901.2508 Differential Geometry +0901.2515 Differential Geometry +0901.2522 Plasma Physics +0901.2530 Instrumentation and Detectors +0901.2538 Information Theory +0901.2545 Information Theory +0901.2550 Superconductivity +0901.2553 Statistical Mechanics +0901.2555 Classical Analysis and ODEs +0901.2557 Combinatorics +0901.2562 +astro-ph/0405369 +astro-ph/0411691 +astro-ph/0511693 +astro-ph/0512167 +astro-ph/0608051 +astro-ph/0609269 +astro-ph/0609567 +astro-ph/0610093 +astro-ph/0610102 +astro-ph/0611139 +astro-ph/0611188 +astro-ph/0611328 +astro-ph/0611334 +astro-ph/0611403 +astro-ph/0611452 +astro-ph/0611542 +astro-ph/0611625 +astro-ph/0611689 +astro-ph/0611691 +astro-ph/0611697 +astro-ph/0611748 +astro-ph/0611779 +astro-ph/0611786 +astro-ph/0611826 +astro-ph/0611833 +astro-ph/0611853 +astro-ph/0611856 +astro-ph/0611859 +astro-ph/0611939 +astro-ph/0612039 +astro-ph/0612053 +astro-ph/0612096 +astro-ph/0612099 +astro-ph/0612169 +astro-ph/0612194 +astro-ph/0612287 +astro-ph/0612445 +astro-ph/0612602 +astro-ph/0612711 +astro-ph/0701728 +astro-ph/0701781 +astro-ph/0701790 +astro-ph/0702093 +astro-ph/0702098 +astro-ph/0702211 +astro-ph/0702218 +astro-ph/0702274 +astro-ph/0702329 +astro-ph/0702367 +astro-ph/0702471 +astro-ph/0702504 +astro-ph/0703107 +cs/0702013 Computational Geometry +hep-th/0510036 Theory +hep-th/0602053 Theory +math/0104082 K-Theory and Homology +math/0512578 Combinatorics +physics/0702172 General Physics +0706.1661 Classical Physics +0706.4459 Analysis of PDEs +0707.3086 Statistical Mechanics +0709.0332 Algebraic Geometry +0710.3064 +0711.0944 Combinatorics +0712.1213 Statistical Mechanics +0803.0855 Number Theory +0806.2142 Materials Science +0806.4568 +0807.3708 Algebraic Geometry +0807.4081 Statistics Theory +0807.5041 Exactly Solvable and Integrable Systems +0809.1813 +0809.5234 Theory +0810.0436 Probability +0810.5056 Computational Complexity +0811.4676 +0812.0043 +0812.0750 Statistical Mechanics +0812.0935 Statistical Mechanics +0812.1670 Superconductivity +0812.4315 +0901.0324 Probability +0901.0622 Strongly Correlated Electrons +0901.2033 Cosmology and Nongalactic Astrophysics +0901.4140 General Physics +0902.0174 Dynamical Systems +0902.0236 Combinatorics +0902.3131 +0903.2706 Chemical Physics +0904.3770 Differential Geometry +0904.4133 Mesoscale and Nanoscale Physics +0905.1618 +0905.3149 Representation Theory +0905.4734 Cosmology and Nongalactic Astrophysics +0906.1881 Strongly Correlated Electrons +0906.2637 High Energy Astrophysical Phenomena +0906.3382 Analysis of PDEs +0906.4518 Soft Condensed Matter +0906.4804 General Physics +0907.0574 High Energy Astrophysical Phenomena +0907.0971 Cryptography and Security +0907.1051 Quantum Algebra +0907.1652 Astrophysics of Galaxies +0907.1664 Soft Condensed Matter +0907.1665 Theory +0907.1669 Combinatorics +0907.1676 Analysis of PDEs +0907.1678 Networking and Internet Architecture +0907.1683 Adaptation and Self-Organizing Systems +0907.1689 Classical Analysis and ODEs +0907.1700 +0907.1712 Mesoscale and Nanoscale Physics +0907.1713 +0907.1715 Symplectic Geometry +0907.1716 +0907.1720 Computational Physics +0907.1721 Information Theory +0907.1723 Information Theory +0907.1727 Biological Physics +0907.1730 Biological Physics +0907.1734 Algebraic Geometry +0907.1735 Geophysics +0907.1737 Information Theory +0907.1738 Group Theory +0907.1739 Information Theory +0907.1742 Phenomenology +0907.1744 Superconductivity +0907.1746 Geometric Topology +0907.1749 Optics +0907.1751 Phenomenology +0907.1753 General Physics +0907.1755 Cryptography and Security +0907.1760 Optimization and Control +0907.1767 Cosmology and Nongalactic Astrophysics +0907.1770 Superconductivity +0907.1777 Physics and Society +0907.1778 +0907.1784 +0907.1788 Information Theory +0907.1789 Combinatorics +0907.1792 +0907.1793 Combinatorics +0907.1794 Statistics Theory +0907.1798 Exactly Solvable and Integrable Systems +0907.1799 Materials Science +0907.1805 Combinatorics +0907.1806 Differential Geometry +0907.1808 Mesoscale and Nanoscale Physics +0907.1812 Learning +0907.1814 Computation and Language +0907.1815 Learning +0907.1817 Computational Geometry +0907.1823 Methodology +0907.1827 Statistical Finance +0907.1832 High Energy Astrophysical Phenomena +0907.1835 Computation +0907.1837 Optics +0907.1839 Neural and Evolutionary Computing +0907.1840 Data Structures and Algorithms +0907.1844 Numerical Analysis +0907.1853 Trading and Market Microstructure +0907.1855 Soft Condensed Matter +0907.1857 +0907.1871 Optics +0907.1872 Differential Geometry +0907.1873 Superconductivity +0907.1880 Quantum Algebra +0907.1884 +0907.1889 Differential Geometry +astro-ph/0501125 +cond-mat/0309617 Statistical Mechanics +cond-mat/0401188 Statistical Mechanics +cond-mat/0603778 Statistical Mechanics +hep-th/0602261 Theory +hep-th/9210074 Theory +math/0609584 Geometric Topology +math/0702570 Geometric Topology +quant-ph/0112148 +solv-int/9701003 Exactly Solvable and Integrable Systems +0704.3160 Theory +0705.3301 Analysis of PDEs +0706.1326 Metric Geometry +0706.4421 Group Theory +0707.1515 Numerical Analysis +0707.1553 Theory +0708.4243 Number Theory +0710.1198 +0711.1288 +0711.2202 Analysis of PDEs +0712.3789 Experiment +0801.4224 Methodology +0802.2811 Other Condensed Matter +0803.0982 +0803.3709 +0804.0492 +0804.1728 Combinatorics +0804.4166 Superconductivity +0805.2176 Fluid Dynamics +0806.2995 Number Theory +0806.4942 +0807.0098 Phenomenology +0807.0361 Phenomenology +0807.1405 Superconductivity +0807.1737 Theory +0807.4744 Phenomenology +0807.4883 Phenomenology +0808.0990 +0808.1144 Phenomenology +0808.2518 +0809.1528 +0809.2009 Superconductivity +0809.2387 Other Condensed Matter +0809.2607 +0809.2813 Experiment +0809.4899 Phenomenology +0810.0990 +0810.1925 +0810.2406 Mesoscale and Nanoscale Physics +0810.3216 Mesoscale and Nanoscale Physics +0810.3507 +0810.3889 Phenomenology +0810.4047 Atomic Physics +0810.4278 Superconductivity +0810.4778 Theory +0810.4994 +0811.0024 Experiment +0811.2290 Statistical Mechanics +0811.3149 Theory +0811.3168 Disordered Systems and Neural Networks +0812.0110 +0812.2251 Lattice +0812.2794 Soft Condensed Matter +0812.3348 Classical Physics +0812.3947 +0812.4779 Algebraic Geometry +0901.0098 +0901.1183 Mesoscale and Nanoscale Physics +0901.2187 High Energy Astrophysical Phenomena +0901.4422 Mesoscale and Nanoscale Physics +0902.0743 Probability +0902.2308 +0902.3085 Mesoscale and Nanoscale Physics +0902.3923 +0902.4092 Geophysics +0902.4460 Optimization and Control +0902.4473 Materials Science +0902.4477 Strongly Correlated Electrons +0902.4481 Performance +0902.4483 Metric Geometry +0902.4491 Materials Science +0902.4508 Information Theory +0902.4509 Information Theory +0902.4510 Information Theory +0902.4511 Information Theory +0902.4518 Algebraic Geometry +0902.4520 Applications +0902.4522 Dynamical Systems +0902.4527 Networking and Internet Architecture +0902.4529 Representation Theory +0902.4551 Earth and Planetary Astrophysics +0902.4559 +0902.4562 Numerical Analysis +0902.4567 Geometric Topology +0902.4569 Probability +0902.4570 Probability +0902.4572 Networking and Internet Architecture +0902.4576 Geometric Topology +0902.4582 Earth and Planetary Astrophysics +0902.4584 Representation Theory +0902.4587 Numerical Analysis +0902.4588 Mesoscale and Nanoscale Physics +0902.4589 Dynamical Systems +0902.4595 +0902.4596 Plasma Physics +0902.4598 Biological Physics +0902.4602 Cosmology and Nongalactic Astrophysics +0902.4604 Solar and Stellar Astrophysics +0902.4608 Representation Theory +0902.4609 Solar and Stellar Astrophysics +0902.4618 Representation Theory +0902.4619 Number Theory +0902.4620 Representation Theory +0902.4639 +0902.4640 Populations and Evolution +0902.4641 +0902.4642 Theory +0902.4647 Information Theory +0902.4648 Soft Condensed Matter +0902.4649 Dynamical Systems +0902.4650 Analysis of PDEs +0902.4656 Phenomenology +0902.4658 Computers and Society +0902.4663 Computer Vision and Pattern Recognition +0902.4671 High Energy Astrophysical Phenomena +0902.4675 +0902.4677 High Energy Astrophysical Phenomena +0902.4680 Cosmology and Nongalactic Astrophysics +0902.4683 High Energy Astrophysical Phenomena +0902.4690 Differential Geometry +0902.4692 Populations and Evolution +cond-mat/0009357 Strongly Correlated Electrons +cond-mat/0009358 Strongly Correlated Electrons +cond-mat/0109339 Strongly Correlated Electrons +cond-mat/0203555 Superconductivity +cond-mat/9406073 +cond-mat/9905032 Superconductivity +hep-th/0603165 Theory +math/0210080 Rings and Algebras +math/0303137 Differential Geometry +math/0411172 Algebraic Geometry +math/0502092 Algebraic Topology +math/0608670 Analysis of PDEs +math/0608747 Rings and Algebras +math/0702532 Differential Geometry +quant-ph/0406157 +quant-ph/9803020 +quant-ph/9806041 +0705.1591 +0706.1068 Category Theory +0707.2340 Probability +0708.3793 Logic +0709.0380 Data Analysis, Statistics and Probability +0709.1750 Populations and Evolution +0709.1970 Number Theory +0711.3861 Data Structures and Algorithms +0712.3820 +0801.2554 Algebraic Geometry +0801.3888 Probability +0803.1699 Mesoscale and Nanoscale Physics +0804.2014 Representation Theory +0804.2117 +0804.3779 Statistics Theory +0805.1416 +0805.2420 Chaotic Dynamics +0805.4028 Strongly Correlated Electrons +0806.2236 Strongly Correlated Electrons +0806.3128 Mesoscale and Nanoscale Physics +0806.3396 General Physics +0807.3970 Strongly Correlated Electrons +0808.0666 Strongly Correlated Electrons +0808.1934 +0808.3176 +0808.3332 Superconductivity +0809.0003 Mesoscale and Nanoscale Physics +0809.0645 Group Theory +0809.1291 +0809.1908 Populations and Evolution +0809.3782 Mesoscale and Nanoscale Physics +0809.4139 Statistical Finance +0809.5156 Mesoscale and Nanoscale Physics +0810.1771 Strongly Correlated Electrons +0811.0393 Phenomenology +0811.2047 +0811.3961 Strongly Correlated Electrons +0811.4509 Optics +0812.0143 Combinatorics +0812.1340 Computer Vision and Pattern Recognition +0812.2303 Chaotic Dynamics +0812.3548 Optics +0901.0782 Theory +0901.2057 General Mathematics +0901.2089 +0901.4071 +0901.4788 Algebraic Geometry +0901.4886 Category Theory +0902.0010 Materials Science +0902.0011 Astrophysics of Galaxies +0902.0013 Complex Variables +0902.0014 Geometric Topology +0902.0017 Astrophysics of Galaxies +0902.0019 Programming Languages +0902.0024 Operator Algebras +0902.0027 Solar and Stellar Astrophysics +0902.0034 Combinatorics +0902.0039 Astrophysics of Galaxies +0902.0040 High Energy Astrophysical Phenomena +0902.0041 Classical Analysis and ODEs +0902.0042 Superconductivity +0902.0046 Fluid Dynamics +0902.0047 Computational Complexity +0902.0048 Materials Science +0902.0049 +0902.0054 Probability +0902.0056 Other Computer Science +0902.0061 +0902.0070 Strongly Correlated Electrons +0902.0086 Differential Geometry +0902.0090 +0902.0094 Phenomenology +0902.0106 Dynamical Systems +0902.0108 Phenomenology +0902.0109 Atomic Physics +0902.0110 General Mathematics +0902.0117 Computation +0902.0120 Rings and Algebras +0902.0123 Space Physics +0902.0124 Numerical Analysis +0902.0126 General Mathematics +0902.0127 Geometric Topology +0902.0130 +0902.0132 Combinatorics +0902.0133 Information Theory +0902.0135 Number Theory +0902.0141 +0902.0142 Statistical Mechanics +0902.0147 Algebraic Geometry +0902.0148 +0902.0153 Strongly Correlated Electrons +0902.0157 Combinatorics +0902.0175 Combinatorics +0902.0176 General Mathematics +0902.0179 Combinatorics +0902.0181 Cosmology and Nongalactic Astrophysics +0902.0184 Experiment +0902.0188 General Finance +0902.0190 +0902.0199 Group Theory +0902.0200 Materials Science +0902.0203 Differential Geometry +0902.0206 Algebraic Geometry +0902.0209 Instrumentation and Detectors +0902.0214 Solar and Stellar Astrophysics +0902.0215 Numerical Analysis +0902.0223 Dynamical Systems +0902.0225 Strongly Correlated Electrons +0902.0226 Differential Geometry +0902.0231 Cellular Automata and Lattice Gases +0902.0235 Functional Analysis +0902.0241 Other Computer Science +0902.0244 Number Theory +0902.0247 Number Theory +0902.0248 Cosmology and Nongalactic Astrophysics +0902.0253 Analysis of PDEs +0902.0254 Strongly Correlated Electrons +0902.0255 Instrumentation and Methods for Astrophysics +0902.0257 Analysis of PDEs +0902.0259 +0902.0262 +0902.0264 General Physics +0902.0266 Experiment +0902.0268 Differential Geometry +0902.0275 Analysis of PDEs +0902.0277 Operator Algebras +0902.0279 Functional Analysis +0902.0281 Cosmology and Nongalactic Astrophysics +0902.0283 Commutative Algebra +0902.0285 Operator Algebras +0902.0286 Analysis of PDEs +0902.0289 Earth and Planetary Astrophysics +0902.0291 Instrumentation and Detectors +0902.0293 Phenomenology +0902.0296 Strongly Correlated Electrons +0902.0299 +0902.0304 Logic +0902.0306 Combinatorics +0902.0311 Cosmology and Nongalactic Astrophysics +0902.0312 Biological Physics +0902.0314 Superconductivity +0902.0315 Dynamical Systems +0902.0322 Cryptography and Security +0902.0327 Other Condensed Matter +0902.0337 Information Theory +0902.0340 Chemical Physics +0902.0342 Statistics Theory +0902.0343 Strongly Correlated Electrons +0902.0350 Metric Geometry +0902.0353 Computational Complexity +0902.0354 Information Theory +0902.0358 Instrumentation and Methods for Astrophysics +0902.0360 Combinatorics +hep-ph/0612185 Phenomenology +math/0604560 Quantum Algebra +math/0608263 Number Theory +math/0608693 Representation Theory +math/0702711 Algebraic Topology +q-bio/0603033 Biomolecules +0705.0055 Algebraic Geometry +0705.3482 Statistics Theory +0707.3144 +0710.0379 Statistics Theory +0710.2740 Applications +0710.2831 Other Condensed Matter +0711.3640 +0711.4883 Applications +0801.0345 Statistics Theory +0803.0634 +0804.1038 Methodology +0805.0117 +0805.1387 +0806.2592 Complex Variables +0806.4194 Phenomenology +0807.3431 Strongly Correlated Electrons +0807.3514 Differential Geometry +0808.2783 Spectral Theory +0809.4608 +0810.2019 Complex Variables +0811.1501 Materials Science +0811.2967 Materials Science +0811.3493 Classical Physics +0812.1690 Applications +0812.4590 +0901.1250 Geometric Topology +0901.2865 Pattern Formation and Solitons +0902.0487 Phenomenology +0902.1361 Superconductivity +0904.1532 Quantum Gases +0904.3124 Quantitative Methods +0904.4179 Complex Variables +0905.0193 Phenomenology +0905.0301 Theory +0905.0820 Statistical Mechanics +0905.2051 Phenomenology +0905.2161 Astrophysics of Galaxies +0905.2991 Cosmology and Nongalactic Astrophysics +0905.3540 Theory +0905.4953 +0906.0099 Representation Theory +0906.0532 Classical Physics +0906.2331 +0906.3437 Instrumentation and Detectors +0906.4672 Theory +0906.5329 Phenomenology +0907.0985 Earth and Planetary Astrophysics +0907.3112 Theory +0908.1842 Phenomenology +0908.2020 Phenomenology +0908.2079 Complex Variables +0908.2814 Probability +0908.2819 High Energy Astrophysical Phenomena +0908.2821 Experiment +0908.2823 Superconductivity +0908.2826 +0908.2828 Information Theory +0908.2833 Dynamical Systems +0908.2834 Data Structures and Algorithms +0908.2847 Information Theory +0908.2848 Atomic Physics +0908.2854 Cosmology and Nongalactic Astrophysics +0908.2858 Applications +0908.2859 Optimization and Control +0908.2862 Applications +0908.2864 Superconductivity +0908.2868 Cosmology and Nongalactic Astrophysics +0908.2869 Statistics Theory +0908.2871 Cryptography and Security +0908.2872 Combinatorics +0908.2877 Experiment +0908.2878 Number Theory +0908.2879 Classical Physics +0908.2883 Combinatorics +0908.2885 Populations and Evolution +0908.2886 Applications +0908.2889 Probability +0908.2890 Probability +0908.2891 Probability +0908.2892 Probability +0908.2894 Superconductivity +0908.2901 Applications +0908.2904 Applications +0908.2909 Number Theory +0908.2913 Probability +0908.2918 Statistics Theory +0908.2919 Cosmology and Nongalactic Astrophysics +0908.2928 Number Theory +0908.2930 Quantum Gases +0908.2941 Information Theory +0908.2942 Analysis of PDEs +0908.2943 General Mathematics +0908.2950 Astrophysics of Galaxies +0908.2951 Phenomenology +0908.2954 Methodology +0908.2955 Cosmology and Nongalactic Astrophysics +0908.2958 Distributed, Parallel, and Cluster Computing +0908.2964 +0908.2965 Statistics Theory +0908.2966 Cosmology and Nongalactic Astrophysics +0908.2967 Atomic Physics +0908.2974 Astrophysics of Galaxies +astro-ph/0007147 +astro-ph/0110262 +astro-ph/0112275 +astro-ph/0310339 +astro-ph/0311058 +astro-ph/0408578 +astro-ph/0605651 +astro-ph/0612102 +astro-ph/9612245 +astro-ph/9705037 +astro-ph/9902109 +astro-ph/9904148 +astro-ph/9905382 +astro-ph/9907117 +astro-ph/9912088 +cond-mat/0303609 Materials Science +cond-mat/0409585 Materials Science +cs/0612111 Databases +gr-qc/9604033 +hep-ex/0008067 Experiment +hep-ph/0002117 Phenomenology +hep-ph/0409081 Phenomenology +hep-ph/0511039 Phenomenology +math/0508600 Statistics Theory +math/0610047 Quantum Algebra +physics/0311059 Accelerator Physics +physics/9803043 Accelerator Physics +quant-ph/9807006 +0711.0513 Statistics Theory +0805.1747 Combinatorics +0806.0533 Methodology +0807.0169 Statistics Theory +0810.0032 Quantum Algebra +0811.1085 Quantum Algebra +0812.3514 Statistical Mechanics +0902.0194 Operator Algebras +0905.3941 Probability +0906.4511 +0907.2170 +0908.3464 Mesoscale and Nanoscale Physics +0910.2367 Risk Management +0911.3700 Mesoscale and Nanoscale Physics +0911.4040 Computational Geometry +0912.2144 Statistical Mechanics +math/0605530 Quantum Algebra +0707.1657 Materials Science +0709.3269 Theory +0709.4133 Classical Analysis and ODEs +0711.0836 Software Engineering +0711.1609 Statistics Theory +0711.2770 Dynamical Systems +0712.0642 +0712.1394 +0802.2065 Theory +0803.0198 Phenomenology +0804.1475 Theory +0804.1815 Experiment +0804.3781 Representation Theory +0805.1207 Statistical Mechanics +0805.2452 +0806.3757 Phenomenology +0806.4109 Theory +0806.4267 Number Theory +0807.0733 Theory +0807.4468 Theory +0808.0673 +0808.1571 Theory +0808.1921 +0808.1946 Lattice +0808.2729 Representation Theory +0808.3484 +0808.3681 Algebraic Geometry +0809.0498 Phenomenology +0809.3442 Phenomenology +0809.3561 Mesoscale and Nanoscale Physics +0809.4014 +0809.4282 Strongly Correlated Electrons +0809.4606 +0809.4642 Disordered Systems and Neural Networks +0809.4662 Theory +0810.0854 Disordered Systems and Neural Networks +0810.2065 Theory +0810.2250 +0810.3007 +0810.4214 Methodology +0810.4810 Superconductivity +0810.4887 Theory +0810.5710 +0810.5716 +0811.1358 Theory +0811.1691 +0811.1787 Phenomenology +0811.3649 Number Theory +0811.3782 Computational Complexity +0811.4174 Phenomenology +0811.4496 +0812.0264 +0812.0522 +0812.2134 Phenomenology +0812.2245 +0812.2715 +0812.3110 Phenomenology +0812.3182 Theory +0812.3413 +0812.3419 Theory +0812.4174 Other Condensed Matter +0812.4248 +0901.1626 +0901.1785 Phenomenology +0901.1795 +0901.2212 Statistics Theory +0901.2213 Statistics Theory +0901.2955 Phenomenology +0901.3148 Other Condensed Matter +0901.3380 Phenomenology +0901.3631 Earth and Planetary Astrophysics +0901.3707 Theory +0901.3720 +0901.3730 +0901.3860 +0901.3927 Phenomenology +0901.4354 Phenomenology +0901.4930 Theory +0901.4962 Theory +0902.0172 Strongly Correlated Electrons +0902.0615 Theory +0902.1127 +0902.1131 +0902.1266 Experiment +0902.1473 Phenomenology +0902.1709 Theory +0902.1944 General Topology +0902.2377 +0902.2574 Cosmology and Nongalactic Astrophysics +0902.2639 Phenomenology +0902.2682 Theory +0902.2764 +0902.2859 Programming Languages +0902.2950 +0902.3087 Phenomenology +0902.3246 Phenomenology +0902.3487 +0902.3613 Phenomenology +0902.4000 +0902.4285 Cosmology and Nongalactic Astrophysics +0903.0001 Cosmology and Nongalactic Astrophysics +0903.0451 Phenomenology +0903.0551 Phenomenology +0903.0837 Cosmology and Nongalactic Astrophysics +0903.1081 +0903.1134 +0903.1182 +0903.1191 Phenomenology +0903.1312 +0903.2120 Phenomenology +0903.2193 Theory +0903.2565 +0903.2662 Phenomenology +0903.2794 High Energy Astrophysical Phenomena +0903.2804 Phenomenology +0903.2978 Optics +0903.3223 Theory +0903.3244 Theory +0903.3263 Phenomenology +0903.3269 Cosmology and Nongalactic Astrophysics +0903.3407 Cosmology and Nongalactic Astrophysics +0903.3490 Phenomenology +0903.3649 Cosmology and Nongalactic Astrophysics +0903.3650 Phenomenology +0903.3823 Phenomenology +0903.3933 +0903.3986 Phenomenology +0903.3990 Theory +0903.4048 High Energy Astrophysical Phenomena +0903.4171 Cosmology and Nongalactic Astrophysics +0903.4379 Lattice +0903.4452 Theory +0903.4572 Phenomenology +0903.4680 Phenomenology +0903.4779 +0903.5055 +0903.5242 Theory +0903.5285 Phenomenology +0903.5296 Cosmology and Nongalactic Astrophysics +0903.5461 +0903.5524 Theory +0904.0305 Phenomenology +0904.0321 Phenomenology +0904.0759 Phenomenology +0904.0976 Strongly Correlated Electrons +0904.0998 Phenomenology +0904.1025 High Energy Astrophysical Phenomena +0904.1210 Phenomenology +0904.1341 Phenomenology +0904.1442 High Energy Astrophysical Phenomena +0904.1547 Phenomenology +0904.1554 Theory +0904.1595 Theory +0904.1715 +0904.1807 Cosmology and Nongalactic Astrophysics +0904.1930 +0904.2034 +0904.2182 Phenomenology +0904.2194 Combinatorics +0904.2749 Soft Condensed Matter +0904.2870 Phenomenology +0904.2963 Cosmology and Nongalactic Astrophysics +0904.3046 Phenomenology +0904.3047 +0904.3073 Phenomenology +0904.3206 Phenomenology +0904.3217 Theory +0904.3339 Combinatorics +0904.3542 Phenomenology +0904.3605 Theory +0904.3626 Cosmology and Nongalactic Astrophysics +0904.3746 Statistical Mechanics +0904.3773 Phenomenology +0904.3903 High Energy Astrophysical Phenomena +0904.4450 Phenomenology +0904.4702 Cosmology and Nongalactic Astrophysics +0905.0031 Phenomenology +0905.0035 Mesoscale and Nanoscale Physics +0905.0110 Phenomenology +0905.0255 Theory +0905.0282 Phenomenology +0905.0333 High Energy Astrophysical Phenomena +0905.0402 Phenomenology +0905.0413 Experiment +0905.0824 Quantum Gases +0905.1258 Phenomenology +0905.1272 Physics and Society +0905.1291 +0905.1514 Theory +0905.1687 Cosmology and Nongalactic Astrophysics +0905.1832 Phenomenology +0905.1873 +0905.1944 Phenomenology +0905.2067 Phenomenology +0905.2317 Phenomenology +0905.2412 Theory +0905.2930 Phenomenology +0905.3069 Phenomenology +0905.3080 Mesoscale and Nanoscale Physics +0905.3152 High Energy Astrophysical Phenomena +0905.3167 +0905.3221 +0905.3390 High Energy Astrophysical Phenomena +0905.3551 Cosmology and Nongalactic Astrophysics +0905.3553 +0905.3772 Theory +0905.3837 Optimization and Control +0905.4339 Phenomenology +0905.4360 Probability +0905.4557 Theory +0905.4664 Phenomenology +0905.4714 Experiment +0905.4766 Theory +0906.0064 Theory +0906.0204 Theory +0906.0235 +0906.0965 Theory +0906.1190 +0906.1263 Phenomenology +0906.1390 Phenomenology +0906.1549 Experiment +0906.1927 +0906.1976 Lattice +0906.1979 Phenomenology +0906.1990 Phenomenology +0906.2225 Phenomenology +0906.2323 Theory +0906.2400 Phenomenology +0906.2498 Lattice +0906.2569 Materials Science +0906.2616 +0906.2829 +0906.2834 Phenomenology +0906.2879 +0906.3049 Theory +0906.3602 +0906.3629 High Energy Astrophysical Phenomena +0906.3646 +0906.3686 Theory +0906.3775 +0906.4048 Theory +0906.4349 Mesoscale and Nanoscale Physics +0906.4364 Phenomenology +0906.4500 Phenomenology +0906.5567 Phenomenology +0907.0035 High Energy Astrophysical Phenomena +0907.0096 Phenomenology +0907.0269 Phenomenology +0907.0358 +0907.2555 Phenomenology +0907.2677 Theory +0907.2828 +0907.3557 +0907.4774 Phenomenology +0908.0228 +0908.0877 +0908.1008 +0908.1466 Phenomenology +0908.1848 +0908.2219 Phenomenology +0908.2380 Other Condensed Matter +0908.2642 Number Theory +0908.4464 Robotics +0908.4496 Solar and Stellar Astrophysics +0908.4569 Probability +0909.0029 Combinatorics +0909.0037 Phenomenology +0909.0039 Group Theory +0909.0055 High Energy Astrophysical Phenomena +0909.0069 Algebraic Geometry +0909.0071 Geometric Topology +0909.0074 Computers and Society +0909.0081 Number Theory +0909.0083 Numerical Analysis +0909.0084 Physics and Society +0909.0089 Chemical Physics +0909.0090 Probability +0909.0093 Networking and Internet Architecture +0909.0095 Data Structures and Algorithms +0909.0096 Number Theory +0909.0097 Data Structures and Algorithms +0909.0098 Phenomenology +0909.0099 Hardware Architecture +0909.0101 Number Theory +0909.0104 Combinatorics +0909.0106 Algebraic Geometry +0909.0108 Robotics +0909.0113 Dynamical Systems +0909.0115 Atmospheric and Oceanic Physics +0909.0118 Multimedia +0909.0119 Probability +0909.0124 Mesoscale and Nanoscale Physics +0909.0125 Cosmology and Nongalactic Astrophysics +0909.0127 Group Theory +0909.0129 +0909.0136 +0909.0153 Geometric Topology +0909.0154 Mesoscale and Nanoscale Physics +0909.0155 Representation Theory +0909.0161 Differential Geometry +0909.0162 Cosmology and Nongalactic Astrophysics +0909.0164 Solar and Stellar Astrophysics +0909.0167 Differential Geometry +0909.0170 Statistics Theory +0909.0172 Solar and Stellar Astrophysics +0909.0174 Cryptography and Security +0909.0175 +0909.0182 Analysis of PDEs +0909.0184 Statistics Theory +0909.0187 Astrophysics of Galaxies +0909.0204 Atmospheric and Oceanic Physics +0909.0205 Atmospheric and Oceanic Physics +0909.0209 Materials Science +0909.0217 Complex Variables +0909.0219 Analysis of PDEs +0909.0222 High Energy Astrophysical Phenomena +0909.0224 Cosmology and Nongalactic Astrophysics +0909.0232 Cosmology and Nongalactic Astrophysics +0909.0236 Cryptography and Security +0909.0238 Disordered Systems and Neural Networks +0909.0240 Algebraic Geometry +0909.0241 +0909.0245 Multimedia +astro-ph/0109354 +astro-ph/0202409 +gr-qc/0603045 +hep-ex/9902023 Experiment +hep-ph/9812442 Phenomenology +hep-th/9408031 Theory +math/0402085 Number Theory +math/0612368 Classical Analysis and ODEs +math/0701741 Probability +nucl-th/0410079 +nucl-th/9504023 +physics/0606091 Atomic Physics +q-bio/0506034 Quantitative Methods +0708.2523 +0708.2524 +0711.3975 +0802.2594 Computational Geometry +0803.1418 +0803.4504 +0804.1730 Analysis of PDEs +0805.4484 Other Condensed Matter +0806.1480 Combinatorics +0806.2208 Methodology +0806.3910 Combinatorics +0807.1762 Genomics +0807.4561 Theory +0808.3180 Analysis of PDEs +0810.2457 Combinatorics +0810.2955 Fluid Dynamics +0810.3545 +0810.5591 +0811.4454 Algebraic Geometry +0901.0624 Fluid Dynamics +0901.0685 Fluid Dynamics +0902.4523 +0903.0356 Phenomenology +0903.0901 Dynamical Systems +0903.2719 Chemical Physics +0903.3795 Statistics Theory +0903.5532 General Physics +0906.1153 Strongly Correlated Electrons +0906.2471 Physics and Society +0906.3730 Statistical Mechanics +0906.4378 Quantum Gases +0906.5264 +0906.5418 Digital Libraries +0907.0014 +0907.4475 Astrophysics of Galaxies +0908.1211 Portfolio Management +0908.1487 Mesoscale and Nanoscale Physics +0908.1856 Phenomenology +0908.3721 Superconductivity +0908.3893 Cosmology and Nongalactic Astrophysics +0909.0592 Astrophysics of Galaxies +0909.0806 +0909.0868 +0909.1395 Mesoscale and Nanoscale Physics +0909.2659 Theory +0909.2766 +0910.1807 Group Theory +0911.0273 Superconductivity +0911.0332 General Topology +0911.0921 High Energy Astrophysical Phenomena +0911.1368 Information Theory +0911.3384 Probability +0911.4206 +0911.4346 Number Theory +0911.4491 +0911.4503 Applications +0911.4507 Information Theory +0911.4510 Computational Engineering, Finance, and Science +0911.4511 Machine Learning +0911.4512 Cosmology and Nongalactic Astrophysics +0911.4513 Computational Engineering, Finance, and Science +0911.4516 Experiment +0911.4520 Probability +0911.4521 Computational Complexity +0911.4524 Superconductivity +0911.4530 Information Theory +0911.4531 Cosmology and Nongalactic Astrophysics +0911.4536 Superconductivity +0911.4541 Commutative Algebra +0911.4543 Commutative Algebra +0911.4547 Complex Variables +0911.4549 Complex Variables +0911.4550 Complex Variables +0911.4552 Strongly Correlated Electrons +0911.4561 Optimization and Control +0911.4566 Soft Condensed Matter +0911.4568 Representation Theory +0911.4570 Physics Education +0911.4573 Optics +0911.4576 Representation Theory +0911.4586 Theory +0911.4587 Differential Geometry +0911.4588 Superconductivity +0911.4590 Discrete Mathematics +0911.4594 Plasma Physics +0911.4596 Classical Analysis and ODEs +0911.4599 Cosmology and Nongalactic Astrophysics +0911.4611 Instrumentation and Methods for Astrophysics +0911.4615 +0911.4617 Combinatorics +0911.4618 Statistical Mechanics +0911.4619 Metric Geometry +0911.4624 Rings and Algebras +0911.4625 Optimization and Control +0911.4627 Solar and Stellar Astrophysics +0911.4631 Operator Algebras +0911.4639 Classical Physics +0911.4640 Information Theory +0911.4641 Materials Science +0911.4642 Sound +0911.4646 Statistical Mechanics +0911.4649 Differential Geometry +0911.4650 Computer Vision and Pattern Recognition +0911.4651 Biological Physics +0911.4652 Soft Condensed Matter +0911.4665 Geometric Topology +0911.4673 Statistical Mechanics +0911.4675 Dynamical Systems +0911.4676 Mesoscale and Nanoscale Physics +0911.4677 Algebraic Geometry +0911.4679 Statistical Finance +0911.4685 Mesoscale and Nanoscale Physics +0911.4687 Instrumentation and Methods for Astrophysics +0911.4690 Combinatorics +0911.4693 Algebraic Geometry +0911.4698 Phenomenology +0911.4700 Plasma Physics +0911.4703 Analysis of PDEs +0911.4704 Information Theory +0911.4706 +0911.4714 High Energy Astrophysical Phenomena +0911.4717 Materials Science +cond-mat/0508691 Strongly Correlated Electrons +hep-ph/0703203 Phenomenology +nucl-ex/0204006 +quant-ph/0305045 +0709.3123 Differential Geometry +0801.0903 Rings and Algebras +0804.3367 Methodology +0808.0212 Rings and Algebras +0808.1596 +0811.0518 Statistical Mechanics +0811.1295 Mesoscale and Nanoscale Physics +0812.0974 Mesoscale and Nanoscale Physics +0812.1551 Superconductivity +0901.0379 Mesoscale and Nanoscale Physics +0902.2164 Mesoscale and Nanoscale Physics +0902.4047 Statistical Mechanics +0903.3314 Superconductivity +0904.0825 Superconductivity +math/0309005 General Mathematics +quant-ph/0308154 +quant-ph/0509096 +0705.4238 Optics +0708.0921 Superconductivity +0708.2320 Analysis of PDEs +0709.2159 Statistical Mechanics +0802.3975 Materials Science +0804.0726 Probability +0804.1549 Analysis of PDEs +0804.2206 Classical Analysis and ODEs +0804.3748 Classical Analysis and ODEs +0806.2636 Populations and Evolution +0806.4589 Theory +0807.0387 Statistical Mechanics +0807.1051 Optics +0807.1065 Analysis of PDEs +0807.3149 Superconductivity +0807.4247 Information Theory +0808.3789 Materials Science +0809.1208 Information Theory +0810.1470 +0810.2917 Dynamical Systems +0810.4022 +0811.2588 Dynamical Systems +0811.3229 Soft Condensed Matter +0811.3560 Mesoscale and Nanoscale Physics +0811.4765 Differential Geometry +0812.0894 Combinatorics +0812.1758 +0812.4692 Biological Physics +0901.1820 Statistical Mechanics +0901.2223 Strongly Correlated Electrons +0902.0505 Superconductivity +0902.2256 Materials Science +0902.3441 Superconductivity +0902.3502 Theory +0902.4012 Category Theory +0903.0032 Atomic Physics +0903.0045 Optics +0903.0177 Chaotic Dynamics +0903.2011 Superconductivity +0903.2542 Materials Science +0903.2577 Analysis of PDEs +0903.3344 Strongly Correlated Electrons +0903.4217 Learning +0904.2153 Superconductivity +0905.0507 +0905.2622 Differential Geometry +0906.0523 Experiment +0906.0541 Combinatorics +0906.0572 Experiment +0906.0595 Theory +0906.0598 +0906.0605 Solar and Stellar Astrophysics +0906.0607 Statistical Mechanics +0906.0621 Strongly Correlated Electrons +0906.0625 Analysis of PDEs +0906.0629 Superconductivity +0906.0630 +0906.0632 Number Theory +0906.0641 Differential Geometry +0906.0645 +0906.0647 General Physics +0906.0648 Metric Geometry +0906.0649 Probability +0906.0650 Geometric Topology +0906.0654 Algebraic Geometry +0906.0665 Cosmology and Nongalactic Astrophysics +0906.0667 Multimedia +0906.0674 Combinatorics +0906.0680 Mesoscale and Nanoscale Physics +0906.0682 Solar and Stellar Astrophysics +0906.0697 Phenomenology +0906.0705 High Energy Astrophysical Phenomena +0906.0717 Differential Geometry +0906.0724 Cryptography and Security +0906.0725 Experiment +0906.0731 Distributed, Parallel, and Cluster Computing +0906.0732 Mesoscale and Nanoscale Physics +0906.0733 Analysis of PDEs +0906.0734 General Topology +0906.0739 Information Theory +0906.0740 Plasma Physics +0906.0742 General Physics +0906.0745 +0906.0748 Combinatorics +0906.0752 Probability +0906.0754 Phenomenology +0906.0755 Superconductivity +0906.0756 Neurons and Cognition +0906.0757 Cosmology and Nongalactic Astrophysics +0906.0759 Cosmology and Nongalactic Astrophysics +0906.0760 +0906.0763 Combinatorics +cond-mat/0607515 Superconductivity +math/0202160 Differential Geometry +math/0311524 Geometric Topology +math/0404525 Geometric Topology +math/0503034 Representation Theory +math/0505427 Geometric Topology +math/0505429 Geometric Topology +math/0509433 Geometric Topology +nucl-th/0510054 +physics/0609040 Classical Physics +0705.1300 Combinatorics +0707.1183 +0707.4102 Number Theory +0708.3458 Theory +0709.1542 Other Condensed Matter +0709.3211 +0710.2440 Instrumentation and Detectors +0710.4040 +0710.4260 +0711.2960 +0712.3653 +0712.3676 Algebraic Geometry +0712.4004 Theory +0801.1921 +0801.2179 Combinatorics +0802.1032 +0802.1228 Number Theory +0802.1335 Probability +0803.0428 Information Theory +0804.3893 Optimization and Control +0805.0018 Phenomenology +0805.2291 Phenomenology +0806.0153 +0806.0803 +0806.2601 Lattice +0806.3301 Computation +0806.4895 Other Condensed Matter +0807.2222 Theory +0807.4964 Mesoscale and Nanoscale Physics +0808.1372 Phenomenology +0808.3909 Phenomenology +0809.0302 Soft Condensed Matter +0809.1013 Theory +0809.2217 Strongly Correlated Electrons +0809.2564 Theory +0809.4251 Phenomenology +0809.5230 Superconductivity +0810.1303 Theory +0810.1552 Fluid Dynamics +0810.1809 Classical Physics +0810.3044 +0810.3752 +0811.0516 Atomic Physics +0811.0907 +0811.2442 Theory +0811.3736 Mesoscale and Nanoscale Physics +0811.4725 Rings and Algebras +0812.0334 Lattice +0812.0581 Networking and Internet Architecture +0812.1056 +0812.1467 Lattice +0812.2995 +0812.3304 Statistical Mechanics +0812.3445 Strongly Correlated Electrons +0812.3510 +0812.3620 Pattern Formation and Solitons +0812.4453 +0812.4668 Theory +0812.5065 +0901.0855 +0901.1715 +0901.1735 Chemical Physics +0901.1914 Disordered Systems and Neural Networks +0901.3443 Experiment +0901.4401 Theory +0902.0045 Lattice +0902.0530 Theory +0902.3054 +0902.4777 Chaotic Dynamics +0903.0359 Lattice +0903.1513 +0903.4264 Statistical Mechanics +0903.5129 Representation Theory +0904.2371 High Energy Astrophysical Phenomena +0904.3039 Probability +0904.3756 Data Structures and Algorithms +0904.4583 Biological Physics +0905.0564 Information Theory +0905.0642 Statistics Theory +0905.1047 Functional Analysis +0905.1050 Functional Analysis +0905.1332 Molecular Networks +0905.1339 Analysis of PDEs +0905.1348 Phenomenology +0905.1351 Complex Variables +0905.1353 Solar and Stellar Astrophysics +0905.1357 Optics +0905.1358 +0905.1362 Cryptography and Security +0905.1372 Adaptation and Self-Organizing Systems +0905.1373 Instrumentation and Methods for Astrophysics +0905.1377 Algebraic Geometry +0905.1383 Rings and Algebras +0905.1385 Cryptography and Security +0905.1387 Phenomenology +0905.1391 Logic +0905.1394 Combinatorics +0905.1396 Algebraic Topology +0905.1400 Rings and Algebras +0905.1402 Exactly Solvable and Integrable Systems +0905.1404 Differential Geometry +0905.1405 Biomolecules +0905.1412 Astrophysics of Galaxies +0905.1413 Probability +0905.1414 Geometric Topology +0905.1419 Probability +0905.1420 K-Theory and Homology +0905.1422 Applications +0905.1425 Phenomenology +0905.1430 Algebraic Geometry +0905.1431 Theory +0905.1433 Numerical Analysis +0905.1438 Numerical Analysis +0905.1446 Theory +0905.1448 +0905.1452 +0905.1457 Statistical Mechanics +0905.1459 Group Theory +0905.1460 Information Theory +0905.1461 Instrumentation and Methods for Astrophysics +0905.1463 +0905.1473 Theory +0905.1475 +0905.1479 Theory +0905.1485 Plasma Physics +0905.1486 Statistics Theory +0905.1489 Algebraic Topology +0905.1494 Exactly Solvable and Integrable Systems +0905.1500 Materials Science +0905.1505 Logic +0905.1507 Fluid Dynamics +0905.1508 Differential Geometry +0905.1511 Experiment +0905.1512 Information Theory +0905.1528 Metric Geometry +0905.1529 Chemical Physics +0905.1530 +0905.1532 Group Theory +0905.1533 Superconductivity +0905.1535 Superconductivity +0905.1537 Information Theory +0905.1538 Algebraic Geometry +0905.1540 Machine Learning +0905.1543 Information Theory +0905.1547 Theory +0905.1548 Theory +0905.1549 +0905.1554 Logic +0905.1555 Logic +0905.1556 Optics +0905.1557 Logic +0905.1558 Logic +0905.1559 Geophysics +0905.1565 +0905.1566 Logic +0905.1568 Functional Analysis +0905.1569 Phenomenology +0905.1571 Analysis of PDEs +0905.1579 Dynamical Systems +0905.1580 Experiment +0905.1583 Computational Geometry +0905.1585 +0905.1594 Digital Libraries +0905.1603 Theory +0905.1604 Geophysics +0905.1608 Optimization and Control +0905.1609 Computation and Language +0905.1610 Number Theory +0905.1613 Experiment +0905.1622 Statistical Mechanics +0905.1627 +0905.1631 Superconductivity +0905.1633 Superconductivity +0905.1634 Superconductivity +0905.1637 Phenomenology +0905.1641 Optics +0905.1643 Optimization and Control +0905.1656 Algebraic Geometry +0905.1658 Probability +0905.1659 Functional Analysis +0905.1660 Combinatorics +0905.1667 Theory +0905.1673 Statistics Theory +0905.1675 History and Overview +0905.1677 History and Overview +0905.1680 History and Overview +astro-ph/0404406 +astro-ph/0404412 +astro-ph/0612757 +astro-ph/9808243 +cond-mat/0610283 Superconductivity +hep-th/0105191 Theory +hep-th/0510070 Theory +math/0607499 Analysis of PDEs +physics/0503215 Fluid Dynamics +0705.4096 Theory +0706.2375 Phenomenology +0707.4062 Chaotic Dynamics +0709.3366 +0710.0350 Strongly Correlated Electrons +0710.0869 Lattice +0710.2519 Lattice +0711.1316 Theory +0711.1430 Theory +0712.1754 Differential Geometry +0712.3505 Phenomenology +0801.3657 Theory +0802.1779 Theory +0802.1877 +0804.3861 Exactly Solvable and Integrable Systems +0804.4843 Combinatorics +0805.0713 Theory +0805.0974 +0805.4572 +0807.0180 +0807.1704 Differential Geometry +0807.1923 Strongly Correlated Electrons +0808.3566 +0809.1156 Theory +0809.4515 Analysis of PDEs +0810.5066 Theory +0810.5529 +0811.2330 Strongly Correlated Electrons +0811.3744 +0812.3194 Theory +0812.4101 Strongly Correlated Electrons +0901.0394 +0902.0751 Applications +0902.4028 Phenomenology +0903.0612 +0903.0707 Other Condensed Matter +0903.1999 Combinatorics +0903.2254 Other Condensed Matter +0903.4823 Mesoscale and Nanoscale Physics +0904.0418 +0904.2409 Superconductivity +0905.3334 Statistical Mechanics +0905.4061 Strongly Correlated Electrons +0906.1732 +0906.2352 Analysis of PDEs +0906.3036 Artificial Intelligence +0907.0699 +0907.1321 Theory +0907.1374 Phenomenology +0907.1488 Theory +0907.2888 Quantum Gases +0907.4108 Algebraic Geometry +0907.4681 Theory +0907.4688 Statistical Mechanics +0907.5544 Superconductivity +0907.5574 Strongly Correlated Electrons +0908.1429 Cosmology and Nongalactic Astrophysics +0908.1633 +0908.2732 Strongly Correlated Electrons +0908.3255 Analysis of PDEs +0908.3377 Cellular Automata and Lattice Gases +0909.1218 +0909.1342 Differential Geometry +0909.3709 Soft Condensed Matter +0909.5315 Analysis of PDEs +0910.1163 Chaotic Dynamics +0910.1357 Cosmology and Nongalactic Astrophysics +0910.1359 Probability +0910.1362 History and Overview +0910.1369 Experiment +0910.1372 Numerical Analysis +0910.1376 General Mathematics +0910.1380 Classical Analysis and ODEs +0910.1386 +0910.1392 Data Structures and Algorithms +0910.1396 +0910.1398 Experiment +0910.1402 Analysis of PDEs +0910.1403 Data Structures and Algorithms +0910.1404 Artificial Intelligence +0910.1406 Programming Languages +0910.1410 Programming Languages +0910.1411 Number Theory +0910.1412 Discrete Mathematics +0910.1413 Number Theory +0910.1415 Molecular Networks +0910.1420 Operator Algebras +0910.1425 Dynamical Systems +0910.1426 Applications +0910.1429 Superconductivity +0910.1432 Applications +0910.1433 Artificial Intelligence +0910.1435 Algebraic Geometry +0910.1443 Computational Complexity +0910.1444 Theory +0910.1445 Number Theory +0910.1447 Combinatorics +0910.1449 Phenomenology +0910.1453 Instrumentation and Methods for Astrophysics +0910.1455 Applications +0910.1456 Commutative Algebra +0910.1462 Phenomenology +0910.1463 Information Theory +0910.1467 Statistical Mechanics +0910.1468 Multimedia +0910.1471 Multimedia +0910.1473 Methodology +0910.1475 Data Structures and Algorithms +0910.1479 Applications +0910.1483 Logic +0910.1484 Computation and Language +0910.1486 Representation Theory +0910.1490 Applications +0910.1495 Data Structures and Algorithms +0910.1497 Fluid Dynamics +0910.1503 +0910.1504 Phenomenology +0910.1513 +0910.1528 Formal Languages and Automata Theory +0910.1532 Information Theory +0910.1534 Number Theory +0910.1540 Experiment +0910.1541 +0910.1545 Analysis of PDEs +0910.1556 Experiment +0910.1558 Phenomenology +0910.1566 +0910.1570 Analysis of PDEs +0910.1572 Accelerator Physics +astro-ph/0008115 +astro-ph/0101406 +astro-ph/0107089 +astro-ph/0111549 +astro-ph/0210365 +astro-ph/0302055 +astro-ph/0305352 +astro-ph/0309662 +astro-ph/0403181 +astro-ph/0409052 +astro-ph/0411220 +astro-ph/0504471 +astro-ph/0506262 +astro-ph/0509793 +astro-ph/9405057 +astro-ph/9507001 +astro-ph/9605103 +astro-ph/9605104 +astro-ph/9701053 +astro-ph/9706229 +astro-ph/9811257 +cond-mat/0002278 +gr-qc/0008050 +gr-qc/0009074 +gr-qc/0010035 +gr-qc/0010036 +gr-qc/0011078 +gr-qc/0101103 +gr-qc/0104012 +gr-qc/0104033 +gr-qc/0107050 +gr-qc/0111001 +gr-qc/0111074 +gr-qc/0112027 +gr-qc/0201031 +gr-qc/0202008 +gr-qc/0208060 +gr-qc/0302106 +gr-qc/0303108 +gr-qc/0306032 +gr-qc/0306082 +gr-qc/0307068 +gr-qc/0308027 +gr-qc/0308068 +gr-qc/0312109 +gr-qc/0403069 +gr-qc/0410037 +gr-qc/0410115 +gr-qc/0411027 +gr-qc/0411150 +gr-qc/0501086 +gr-qc/0703081 +gr-qc/9402042 +gr-qc/9405062 +gr-qc/9406020 +gr-qc/9409054 +gr-qc/9412011 +gr-qc/9412025 +gr-qc/9507006 +gr-qc/9602038 +gr-qc/9603028 +gr-qc/9606018 +gr-qc/9610060 +gr-qc/9701050 +gr-qc/9801017 +gr-qc/9807046 +gr-qc/9808018 +gr-qc/9905064 +gr-qc/9910076 +gr-qc/9912096 +hep-ex/0507008 Experiment +hep-lat/0106003 Lattice +hep-lat/0411033 Lattice +hep-lat/0506016 Lattice +hep-lat/0507006 Lattice +hep-lat/0509093 Lattice +hep-lat/0510022 Lattice +hep-lat/0601014 Lattice +hep-lat/0610025 Lattice +hep-lat/0610080 Lattice +hep-lat/9205014 Lattice +hep-lat/9205017 Lattice +hep-lat/9312047 Lattice +hep-lat/9401004 Lattice +hep-lat/9411010 Lattice +hep-lat/9412049 Lattice +hep-lat/9412092 Lattice +hep-lat/9508020 Lattice +hep-lat/9509078 Lattice +hep-lat/9509085 Lattice +hep-lat/9607055 Lattice +hep-lat/9608039 Lattice +hep-lat/9705018 Lattice +hep-lat/9707009 Lattice +hep-lat/9709028 Lattice +hep-lat/9710027 Lattice +hep-lat/9805028 Lattice +hep-lat/9809083 Lattice +hep-lat/9812001 Lattice +hep-ph/0002207 Phenomenology +hep-ph/0003169 Phenomenology +hep-ph/0005203 Phenomenology +hep-ph/0006124 Phenomenology +hep-ph/0006129 Phenomenology +hep-ph/0006136 Phenomenology +hep-ph/0006150 Phenomenology +hep-ph/0006257 Phenomenology +hep-ph/0009170 Phenomenology +hep-ph/0012137 Phenomenology +hep-ph/0102146 Phenomenology +hep-ph/0103234 Phenomenology +hep-ph/0103291 Phenomenology +hep-ph/0107268 Phenomenology +hep-ph/0108275 Phenomenology +hep-ph/0109006 Phenomenology +hep-ph/0110157 Phenomenology +hep-ph/0110304 Phenomenology +hep-ph/0111295 Phenomenology +hep-ph/0112066 Phenomenology +hep-ph/0112312 Phenomenology +hep-ph/0201291 Phenomenology +hep-ph/0202106 Phenomenology +hep-ph/0205058 Phenomenology +hep-ph/0205261 Phenomenology +hep-ph/0206278 Phenomenology +hep-ph/0207036 Phenomenology +hep-ph/0207125 Phenomenology +hep-ph/0208106 Phenomenology +hep-ph/0208108 Phenomenology +hep-ph/0209161 Phenomenology +hep-ph/0209216 Phenomenology +hep-ph/0210021 Phenomenology +hep-ph/0211381 Phenomenology +hep-ph/0212162 Phenomenology +hep-ph/0308008 Phenomenology +hep-ph/0310123 Phenomenology +hep-ph/0311343 Phenomenology +hep-ph/0312203 Phenomenology +hep-ph/0401027 Phenomenology +hep-ph/0402088 Phenomenology +hep-ph/0403004 Phenomenology +hep-ph/0405040 Phenomenology +hep-ph/0407132 Phenomenology +hep-ph/0410372 Phenomenology +hep-ph/0411171 Phenomenology +hep-ph/0412278 Phenomenology +hep-ph/0502095 Phenomenology +hep-ph/0502096 Phenomenology +hep-ph/0503246 Phenomenology +hep-ph/0505124 Phenomenology +hep-ph/0507002 Phenomenology +hep-ph/0507214 Phenomenology +hep-ph/0507284 Phenomenology +hep-ph/0508161 Phenomenology +hep-ph/0508185 Phenomenology +hep-ph/0510008 Phenomenology +hep-ph/0512090 Phenomenology +hep-ph/0610057 Phenomenology +hep-ph/9212210 Phenomenology +hep-ph/9308272 Phenomenology +hep-ph/9402247 Phenomenology +hep-ph/9405259 Phenomenology +hep-ph/9405428 Phenomenology +hep-ph/9407239 Phenomenology +hep-ph/9407342 Phenomenology +hep-ph/9407394 Phenomenology +hep-ph/9407405 Phenomenology +hep-ph/9408344 Phenomenology +hep-ph/9409343 Phenomenology +hep-ph/9409349 Phenomenology +hep-ph/9411255 Phenomenology +hep-ph/9501334 Phenomenology +hep-ph/9504231 Phenomenology +hep-ph/9504373 Phenomenology +hep-ph/9506210 Phenomenology +hep-ph/9507379 Phenomenology +hep-ph/9507437 Phenomenology +hep-ph/9509331 Phenomenology +hep-ph/9509333 Phenomenology +hep-ph/9510206 Phenomenology +hep-ph/9510376 Phenomenology +hep-ph/9511305 Phenomenology +hep-ph/9603202 Phenomenology +hep-ph/9604417 Phenomenology +hep-ph/9605249 Phenomenology +hep-ph/9605336 Phenomenology +hep-ph/9605368 Phenomenology +hep-ph/9607447 Phenomenology +hep-ph/9608232 Phenomenology +hep-ph/9609286 Phenomenology +hep-ph/9609444 Phenomenology +hep-ph/9609522 Phenomenology +hep-ph/9610485 Phenomenology +hep-ph/9611204 Phenomenology +hep-ph/9611229 Phenomenology +hep-ph/9701377 Phenomenology +hep-ph/9702274 Phenomenology +hep-ph/9704275 Phenomenology +hep-ph/9704402 Phenomenology +hep-ph/9705306 Phenomenology +hep-ph/9706298 Phenomenology +hep-ph/9707225 Phenomenology +hep-ph/9707243 Phenomenology +hep-ph/9710312 Phenomenology +hep-ph/9711349 Phenomenology +hep-ph/9801221 Phenomenology +hep-ph/9801456 Phenomenology +hep-ph/9802446 Phenomenology +hep-ph/9804274 Phenomenology +hep-ph/9805275 Phenomenology +hep-ph/9806453 Phenomenology +hep-ph/9806501 Phenomenology +hep-ph/9807246 Phenomenology +hep-ph/9807247 Phenomenology +hep-ph/9808263 Phenomenology +hep-ph/9808333 Phenomenology +hep-ph/9808385 Phenomenology +hep-ph/9809511 Phenomenology +hep-ph/9811438 Phenomenology +hep-ph/9901288 Phenomenology +hep-ph/9902342 Phenomenology +hep-ph/9903238 Phenomenology +hep-ph/9904246 Phenomenology +hep-ph/9904282 Phenomenology +hep-ph/9905281 Phenomenology +hep-ph/9905312 Phenomenology +hep-ph/9906257 Phenomenology +hep-ph/9907343 Phenomenology +hep-ph/9907461 Phenomenology +hep-ph/9907505 Phenomenology +hep-ph/9908255 Phenomenology +hep-ph/9908309 Phenomenology +hep-ph/9908482 Phenomenology +hep-ph/9910275 Phenomenology +hep-ph/9910367 Phenomenology +hep-ph/9910471 Phenomenology +hep-ph/9911315 Phenomenology +hep-ph/9912301 Phenomenology +hep-th/0002007 Theory +hep-th/0002242 Theory +hep-th/0008076 Theory +hep-th/0008232 Theory +hep-th/0009211 Theory +hep-th/0011048 Theory +hep-th/0011073 Theory +hep-th/0011193 Theory +hep-th/0012044 Theory +hep-th/0104173 Theory +hep-th/0106014 Theory +hep-th/0109174 Theory +hep-th/0201029 Theory +hep-th/0201116 Theory +hep-th/0205277 Theory +hep-th/0206228 Theory +hep-th/0208051 Theory +hep-th/0208076 Theory +hep-th/0210250 Theory +hep-th/0302069 Theory +hep-th/0305184 Theory +hep-th/0404172 Theory +hep-th/0407083 Theory +hep-th/0407132 Theory +hep-th/0410083 Theory +hep-th/0410155 Theory +hep-th/0411155 Theory +hep-th/0411216 Theory +hep-th/0501177 Theory +hep-th/0503046 Theory +hep-th/0505074 Theory +hep-th/0507087 Theory +hep-th/0507239 Theory +hep-th/0603115 Theory +hep-th/0604139 Theory +hep-th/9109007 Theory +hep-th/9202033 Theory +hep-th/9202036 Theory +hep-th/9203070 Theory +hep-th/9205043 Theory +hep-th/9207066 Theory +hep-th/9209017 Theory +hep-th/9303076 Theory +hep-th/9307013 Theory +hep-th/9402079 Theory +hep-th/9402156 Theory +hep-th/9404008 Theory +hep-th/9406012 Theory +hep-th/9407031 Theory +hep-th/9408005 Theory +hep-th/9409168 Theory +hep-th/9410206 Theory +hep-th/9505032 Theory +hep-th/9505119 Theory +hep-th/9506048 Theory +hep-th/9506150 Theory +hep-th/9508033 Theory +hep-th/9508175 Theory +hep-th/9508177 Theory +hep-th/9601038 Theory +hep-th/9601150 Theory +hep-th/9602108 Theory +hep-th/9603087 Theory +hep-th/9605146 Theory +hep-th/9606055 Theory +hep-th/9606165 Theory +hep-th/9607121 Theory +hep-th/9609095 Theory +hep-th/9610099 Theory +hep-th/9612033 Theory +hep-th/9612146 Theory +hep-th/9612204 Theory +hep-th/9704029 Theory +hep-th/9705040 Theory +hep-th/9707170 Theory +hep-th/9708116 Theory +hep-th/9710072 Theory +hep-th/9710090 Theory +hep-th/9711037 Theory +hep-th/9712162 Theory +hep-th/9801158 Theory +hep-th/9802186 Theory +hep-th/9803054 Theory +hep-th/9806118 Theory +hep-th/9806177 Theory +hep-th/9806191 Theory +hep-th/9808139 Theory +hep-th/9808161 Theory +hep-th/9809016 Theory +hep-th/9809022 Theory +hep-th/9811034 Theory +hep-th/9811207 Theory +hep-th/9812104 Theory +hep-th/9905098 Theory +hep-th/9905156 Theory +hep-th/9907074 Theory +hep-th/9907086 Theory +hep-th/9910022 Theory +hep-th/9910155 Theory +hep-th/9911161 Theory +hep-th/9912118 Theory +hep-th/9912233 Theory +math-ph/0604052 +math/0010038 Differential Geometry +math/0201159 Differential Geometry +math/0410494 Differential Geometry +nucl-th/0003022 +nucl-th/0005051 +nucl-th/0006010 +nucl-th/0008014 +nucl-th/0009073 +nucl-th/0012017 +nucl-th/0012092 +nucl-th/0104018 +nucl-th/0104020 +nucl-th/0104035 +nucl-th/0104066 +nucl-th/0104073 +nucl-th/0106072 +nucl-th/0107001 +nucl-th/0108051 +nucl-th/0109063 +nucl-th/0112071 +nucl-th/0201078 +nucl-th/0204019 +nucl-th/0204062 +nucl-th/0207003 +nucl-th/0208047 +nucl-th/0209027 +nucl-th/0209089 +nucl-th/0211017 +nucl-th/0212004 +nucl-th/0212068 +nucl-th/0304083 +nucl-th/0305062 +nucl-th/0308029 +nucl-th/0310076 +nucl-th/0311048 +nucl-th/0402101 +nucl-th/0403044 +nucl-th/0404006 +nucl-th/0405013 +nucl-th/0405036 +nucl-th/0407067 +nucl-th/0407095 +nucl-th/0408056 +nucl-th/0411054 +nucl-th/0412094 +nucl-th/0503028 +nucl-th/0504011 +nucl-th/0504022 +nucl-th/0506088 +nucl-th/0509064 +nucl-th/0510096 +nucl-th/0511079 +nucl-th/0604038 +nucl-th/0611088 +nucl-th/0612105 +nucl-th/9306003 +nucl-th/9307007 +nucl-th/9406014 +nucl-th/9409006 +nucl-th/9501035 +nucl-th/9503024 +nucl-th/9509040 +nucl-th/9510041 +nucl-th/9603011 +nucl-th/9606039 +nucl-th/9606041 +nucl-th/9607044 +nucl-th/9608002 +nucl-th/9608050 +nucl-th/9609030 +nucl-th/9610016 +nucl-th/9704041 +nucl-th/9704051 +nucl-th/9707001 +nucl-th/9709025 +nucl-th/9711013 +nucl-th/9801017 +nucl-th/9801050 +nucl-th/9806008 +nucl-th/9809014 +nucl-th/9809092 +nucl-th/9810034 +nucl-th/9811011 +nucl-th/9811103 +nucl-th/9901006 +nucl-th/9901009 +nucl-th/9901094 +nucl-th/9902016 +nucl-th/9902020 +nucl-th/9904018 +nucl-th/9906003 +nucl-th/9907025 +nucl-th/9907060 +nucl-th/9907075 +nucl-th/9907089 +nucl-th/9907096 +quant-ph/0511090 +quant-ph/0612010 +quant-ph/9711058 +0706.1807 Geometric Topology +0707.0358 Superconductivity +0708.0630 Quantum Algebra +0709.1029 Phenomenology +0711.3832 Logic +0801.0718 Pricing of Securities +0801.3838 Analysis of PDEs +0806.4439 Probability +0807.1079 Group Theory +0808.0861 +0901.2774 Strongly Correlated Electrons +0901.2834 Instrumentation and Methods for Astrophysics +0902.0221 Computer Vision and Pattern Recognition +0902.0835 Operator Algebras +0902.2505 Other Condensed Matter +0903.4272 Fluid Dynamics +0903.5413 Chemical Physics +0904.0539 Quantum Algebra +0904.0912 Algebraic Geometry +0904.2525 General Mathematics +0904.4802 Theory +0905.0274 +0905.1111 +0905.2489 +0905.3535 Soft Condensed Matter +0905.3699 High Energy Astrophysical Phenomena +0905.3866 Classical Physics +0905.3867 Classical Physics +0905.4286 Strongly Correlated Electrons +0905.4880 Strongly Correlated Electrons +0906.0410 Group Theory +0906.0653 History and Philosophy of Physics +0906.0670 Other Condensed Matter +0906.1379 +0906.1748 Geometric Topology +0906.2165 Theory +0907.0506 Atomic Physics +0907.0871 Analysis of PDEs +0907.1590 Statistical Mechanics +0907.2303 Optics +0907.3108 Superconductivity +0908.0873 Optics +0908.3147 Atomic Physics +0908.3236 Differential Geometry +0908.3293 Differential Geometry +0908.3396 Statistics Theory +0908.4050 Combinatorics +0909.0158 High Energy Astrophysical Phenomena +0909.0225 Strongly Correlated Electrons +0909.1578 +0909.1986 Differential Geometry +0909.2042 Differential Geometry +0909.2048 Plasma Physics +0909.2053 Cosmology and Nongalactic Astrophysics +0909.2059 Group Theory +0909.2064 General Mathematics +0909.2068 Representation Theory +0909.2080 Number Theory +0909.2083 Dynamical Systems +0909.2090 Software Engineering +0909.2094 +0909.2101 Combinatorics +0909.2103 Software Engineering +0909.2105 General Physics +0909.2106 Classical Physics +0909.2111 Algebraic Geometry +0909.2120 Probability +0909.2123 Other Condensed Matter +0909.2126 Numerical Analysis +0909.2127 Solar and Stellar Astrophysics +0909.2135 Plasma Physics +0909.2140 Dynamical Systems +0909.2141 +0909.2143 Algebraic Topology +0909.2145 Software Engineering +0909.2146 Dynamical Systems +0909.2147 Cosmology and Nongalactic Astrophysics +0909.2151 Other Condensed Matter +0909.2152 Instrumentation and Detectors +0909.2157 Computational Geometry +0909.2172 Optimization and Control +0909.2177 Logic +0909.2183 Software Engineering +0909.2185 Human-Computer Interaction +0909.2186 Superconductivity +0909.2187 Networking and Internet Architecture +0909.2188 +0909.2194 Data Structures and Algorithms +0909.2195 Phenomenology +0909.2201 Algebraic Geometry +0909.2208 +0909.2211 Statistical Mechanics +0909.2220 Functional Analysis +0909.2225 Functional Analysis +0909.2229 +0909.2232 Analysis of PDEs +0909.2236 Atomic Physics +0909.2239 Representation Theory +0909.2244 Soft Condensed Matter +cond-mat/0512572 Superconductivity +cond-mat/0512582 Superconductivity +cond-mat/0609244 Superconductivity +cond-mat/0611755 Materials Science +cond-mat/0703241 Materials Science +math/0504469 Differential Geometry +math/0507560 Differential Geometry +math/0608688 Group Theory +math/0609818 Differential Geometry +math/0610911 Dynamical Systems +physics/0110029 General Physics +quant-ph/0605118 +0704.0446 Algebraic Geometry +0711.4824 Phenomenology +0805.1424 Algebraic Geometry +0903.3109 Dynamical Systems +0904.0757 Number Theory +0904.1336 Combinatorics +0904.3281 Number Theory +0905.3690 Neurons and Cognition +0908.2635 Theory +1002.2520 Computational Physics +1003.5533 +1010.0421 Representation Theory +1012.1426 Mesoscale and Nanoscale Physics +1012.2991 Experiment +1012.3122 +1105.3881 Functional Analysis +1106.0120 Combinatorics +1108.1988 +1109.0686 Symbolic Computation +1111.4468 Algebraic Geometry +1112.4910 Number Theory +1202.3590 Atomic Physics +1202.6283 Computational Finance +1203.4216 Probability +1205.1015 Computational Complexity +1206.0019 +1206.1195 Classical Analysis and ODEs +1206.5348 Combinatorics +1206.5402 Quantum Algebra +1208.2533 Phenomenology +1208.3126 Probability +1208.5822 Functional Analysis +1208.5944 Experiment +1209.0746 Rings and Algebras +1209.6085 +1210.4119 Materials Science +1210.4482 Information Theory +1210.4798 Probability +1210.5594 Information Theory +1211.4229 Combinatorics +1211.5284 Statistical Mechanics +1211.5671 Optics +1301.0656 Quantum Algebra +1301.6419 Group Theory +1302.2632 +1304.5777 Computational Complexity +1304.7006 Phenomenology +1305.2156 Combinatorics +1306.1820 Optimization and Control +1306.5812 +1307.0579 Commutative Algebra +1307.0810 +1307.1995 Algebraic Geometry +1307.4886 Probability +1307.5119 Cosmology and Nongalactic Astrophysics +1308.3020 Methodology +1309.1290 Discrete Mathematics +1309.2815 Mesoscale and Nanoscale Physics +1309.3471 Quantum Gases +1309.4530 +1309.5463 Phenomenology +1309.6118 Strongly Correlated Electrons +1309.7284 Theory +1310.0075 Mesoscale and Nanoscale Physics +1310.1529 Category Theory +1310.1539 Functional Analysis +1310.3357 Numerical Analysis +1310.5140 Quantum Gases +1310.5377 Optimization and Control +1310.6501 Quantum Algebra +1310.6992 Emerging Technologies +1310.8513 +1311.4623 Theory +1311.5839 Algebraic Geometry +1311.6779 Optimization and Control +1311.7110 +1312.1495 Functional Analysis +1312.1719 Networking and Internet Architecture +1312.3490 Functional Analysis +1312.7059 Superconductivity +1312.7424 Phenomenology +1401.0361 Quantum Algebra +1401.0475 Functional Analysis +1401.1723 Networking and Internet Architecture +1401.1885 Quantum Algebra +1401.1987 Phenomenology +1401.3551 K-Theory and Homology +1401.4369 Computation +1401.5482 Mesoscale and Nanoscale Physics +1401.5590 Statistical Mechanics +1401.6303 Theory +1401.7171 Logic in Computer Science +1402.1290 High Energy Astrophysical Phenomena +1402.2948 Logic in Computer Science +1402.3380 Statistical Mechanics +1402.3577 Soft Condensed Matter +1402.3869 Computer Vision and Pattern Recognition +1402.4390 +1403.0711 Computational Physics +1403.1024 Computer Vision and Pattern Recognition +1403.2421 Statistical Mechanics +1403.2777 Data Structures and Algorithms +1403.3180 +1403.4178 Neurons and Cognition +1403.4618 Mesoscale and Nanoscale Physics +1403.4700 Physics and Society +1403.5789 Algebraic Geometry +1403.7040 Number Theory +1404.0936 Other Quantitative Biology +1404.0976 High Energy Astrophysical Phenomena +1404.1256 Phenomenology +1404.1548 Biological Physics +1404.1769 Materials Science +1404.5416 Combinatorics +1404.7664 +1405.0070 +1405.1288 Combinatorics +1405.1783 Earth and Planetary Astrophysics +1405.2931 Phenomenology +1405.2953 Algebraic Geometry +1405.3471 Dynamical Systems +1405.3611 Instrumentation and Detectors +1405.3741 Numerical Analysis +1405.3751 Geometric Topology +1405.3781 Phenomenology +1405.3860 Networking and Internet Architecture +1405.3871 Experiment +1405.3962 Cosmology and Nongalactic Astrophysics +1405.3963 Phenomenology +1405.3993 Analysis of PDEs +1405.3996 Optimization and Control +1405.3997 Optimization and Control +1405.3998 Geophysics +1405.4000 Mesoscale and Nanoscale Physics +1405.4002 Optimization and Control +1405.4008 Logic in Computer Science +1405.4012 Solar and Stellar Astrophysics +1405.4013 Human-Computer Interaction +1405.4016 Plasma Physics +1405.4017 Phenomenology +1405.4021 Logic in Computer Science +1405.4024 Populations and Evolution +1405.4027 Databases +1405.4030 +1405.4034 Logic in Computer Science +1405.4042 Functional Analysis +1405.4054 Computer Vision and Pattern Recognition +1405.4057 Dynamical Systems +1405.4062 Computational Physics +1405.4064 Adaptation and Self-Organizing Systems +1405.4069 Differential Geometry +1405.4071 Atomic Physics +1405.4072 Strongly Correlated Electrons +1405.4078 Mesoscale and Nanoscale Physics +1405.4080 Strongly Correlated Electrons +1405.4084 Algebraic Geometry +1405.4092 Computers and Society +1405.4093 Rings and Algebras +1405.4094 Functional Analysis +1405.4099 Superconductivity +1405.4100 Logic in Computer Science +1405.4101 Superconductivity +1405.4102 Populations and Evolution +1405.4103 Superconductivity +1405.4104 Dynamical Systems +1405.4105 Rings and Algebras +1405.4106 Soft Condensed Matter +1405.4108 Dynamical Systems +1405.4112 Superconductivity +1405.4118 Emerging Technologies +1405.4120 Networking and Internet Architecture +1405.4121 Experiment +1405.4122 Analysis of PDEs +1405.4124 Superconductivity +1405.4126 Adaptation and Self-Organizing Systems +1405.4127 Networking and Internet Architecture +1405.4128 Earth and Planetary Astrophysics +1405.4134 Superconductivity +1405.4136 Other Statistics +1405.4142 Optics +1405.4150 High Energy Astrophysical Phenomena +1405.4152 Analysis of PDEs +1405.4156 Chemical Physics +1405.4157 Combinatorics +1405.4158 Experiment +1405.4159 Astrophysics of Galaxies +1405.4163 Quantum Gases +1405.4170 Probability +1405.4175 Probability +1405.4177 Logic +1405.4180 Artificial Intelligence +1405.4182 Applications +1405.4185 Solar and Stellar Astrophysics +1405.4186 History and Overview +1405.4187 Instrumentation and Methods for Astrophysics +1405.4188 +1405.4189 Logic in Computer Science +1405.4190 Optimization and Control +1405.4195 Phenomenology +1405.4197 Cryptography and Security +1405.4200 Systems and Control +1405.4202 Optimization and Control +1405.4206 Artificial Intelligence +1405.4210 Experiment +1405.4211 Logic in Computer Science +1405.4215 Instrumentation and Methods for Astrophysics +1405.4217 Networking and Internet Architecture +1405.4226 Accelerator Physics +1405.4230 Differential Geometry +1405.4231 Differential Geometry +1405.4234 Fluid Dynamics +1405.4235 +1405.4236 Commutative Algebra +1405.4237 Applications +1405.4239 Neurons and Cognition +1405.4241 Phenomenology +1405.4247 Combinatorics +1405.4248 Computation and Language +1405.4253 Functional Analysis +1405.4258 Statistics Theory +1405.4260 Experiment +1405.4267 Functional Analysis +1405.4268 General Physics +1405.4270 Statistics Theory +1405.4273 Computation and Language +1405.4274 Complex Variables +1405.4277 Functional Analysis +1405.4286 Cryptography and Security +math/0601063 Algebraic Geometry +physics/9803010 Atomic Physics +0807.2600 Geometric Topology +0906.3485 Commutative Algebra +0906.3758 +0907.4642 Group Theory +0910.2895 Differential Geometry +1007.0029 Earth and Planetary Astrophysics +1008.2145 Probability +1011.1356 Probability +1101.4038 Statistics Theory +1104.5276 Differential Geometry +1106.1167 Solar and Stellar Astrophysics +1108.4480 Superconductivity +1108.5196 K-Theory and Homology +1109.3746 Cosmology and Nongalactic Astrophysics +1110.1042 +1110.2524 Theory +1112.0705 Dynamical Systems +1201.4753 Differential Geometry +1201.5958 Data Structures and Algorithms +1202.4999 K-Theory and Homology +1202.6442 Geometric Topology +1203.2001 Differential Geometry +1203.4809 Numerical Analysis +1203.4926 Algebraic Geometry +1205.1341 Earth and Planetary Astrophysics +1205.4385 Software Engineering +1206.0147 +1207.0469 Analysis of PDEs +1207.1185 Superconductivity +1207.4951 Probability +1209.0181 Representation Theory +1209.0474 Phenomenology +1209.0865 Materials Science +1209.1878 +1210.2883 Probability +1210.5272 Mesoscale and Nanoscale Physics +1211.2991 Logic +1211.3171 Differential Geometry +1211.3962 High Energy Astrophysical Phenomena +1211.4129 Probability +1211.5592 +1211.5813 Exactly Solvable and Integrable Systems +1211.6216 Data Structures and Algorithms +1211.6255 Information Theory +1212.1434 Group Theory +1212.3814 +1212.5901 K-Theory and Homology +1302.4886 Machine Learning +1303.3720 Quantum Gases +1303.4926 Quantitative Methods +1303.6681 Probability +1303.6684 Probability +1303.6687 Probability +1304.1055 Analysis of PDEs +1304.3659 +1304.5329 Optics +1304.5415 Mesoscale and Nanoscale Physics +1304.6936 +1304.7032 Fluid Dynamics +1305.1893 Statistics Theory +1305.3995 Quantum Gases +1305.6539 Representation Theory +1305.7106 Probability +1306.0456 Phenomenology +1306.2578 Data Structures and Algorithms +1306.6106 +1307.0300 Rings and Algebras +1307.1064 Phenomenology +1307.1345 Quantum Gases +1307.4006 Complex Variables +1307.4253 High Energy Astrophysical Phenomena +1307.4312 Quantum Gases +1307.5181 +1307.5815 +1308.0363 Materials Science +1308.1488 Strongly Correlated Electrons +1308.3841 Mesoscale and Nanoscale Physics +1308.3936 Phenomenology +1308.4237 Strongly Correlated Electrons +1308.4362 Mesoscale and Nanoscale Physics +1308.4754 Cosmology and Nongalactic Astrophysics +1308.5371 Algebraic Geometry +1308.5718 Biomolecules +1308.5898 Algebraic Geometry +1309.1387 Probability +1309.1491 +1309.2969 Fluid Dynamics +1309.5358 +1309.6216 Methodology +1309.7283 Mesoscale and Nanoscale Physics +1309.7713 +1309.7843 Information Theory +1310.1217 Information Theory +1310.1259 Information Theory +1310.1266 Information Theory +1310.2043 +1310.2528 Biomolecules +1310.4962 Optimization and Control +1310.5037 Data Structures and Algorithms +1310.5050 Plasma Physics +1310.7794 Information Theory +1310.7813 Computer Vision and Pattern Recognition +1310.8500 High Energy Astrophysical Phenomena +1311.0239 +1311.0642 High Energy Astrophysical Phenomena +1311.0701 Machine Learning +1311.0883 Cosmology and Nongalactic Astrophysics +1311.4079 Physics and Society +1311.4983 Superconductivity +1311.5712 Theory +1311.6079 Computer Vision and Pattern Recognition +1311.7173 Phenomenology +1312.0857 Strongly Correlated Electrons +1312.1320 +1312.1639 K-Theory and Homology +1312.2109 Theory +1312.2272 Solar and Stellar Astrophysics +1312.5378 Artificial Intelligence +1312.6985 Mesoscale and Nanoscale Physics +1401.0127 Chemical Physics +1401.1744 Materials Science +1401.2917 Probability +1401.3197 Theory +1401.6283 +1401.7876 Superconductivity +1401.8039 Instrumentation and Detectors +1402.0361 Methodology +1402.0972 Cryptography and Security +1402.2073 Information Retrieval +1402.3839 Combinatorics +1402.3951 Networking and Internet Architecture +1402.4290 Soft Condensed Matter +1402.4387 Fluid Dynamics +1402.4758 Distributed, Parallel, and Cluster Computing +1402.5220 Superconductivity +1402.5270 Populations and Evolution +1402.5294 Materials Science +1402.5790 Populations and Evolution +1402.5846 Strongly Correlated Electrons +1402.6103 Experiment +1402.6519 Information Theory +1402.7025 Learning +1403.0437 Combinatorics +1403.0486 Discrete Mathematics +1403.0510 Applications +1403.0603 Information Theory +1403.0740 Statistics Theory +1403.0801 Computation and Language +1403.0948 Combinatorics +1403.0949 Networking and Internet Architecture +1403.0952 Systems and Control +1403.0955 +1403.0960 Analysis of PDEs +1403.0963 Functional Analysis +1403.0964 Analysis of PDEs +1403.0966 Mesoscale and Nanoscale Physics +1403.0967 Complex Variables +1403.0968 Distributed, Parallel, and Cluster Computing +1403.0971 Strongly Correlated Electrons +1403.0976 +1403.0981 Chemical Physics +1403.0982 Networking and Internet Architecture +1403.0984 Algebraic Geometry +1403.0986 Dynamical Systems +1403.0987 Dynamical Systems +1403.0990 Symplectic Geometry +1403.0997 Combinatorics +1403.0998 Methodology +1403.1002 Materials Science +1403.1006 Formal Languages and Automata Theory +1403.1007 Analysis of PDEs +1403.1012 Exactly Solvable and Integrable Systems +1403.1016 Optimization and Control +1403.1022 +1403.1025 Probability +1403.1026 Functional Analysis +1403.1033 Functional Analysis +1403.1043 Neurons and Cognition +1403.1045 Fluid Dynamics +1403.1047 Differential Geometry +1403.1048 Physics and Society +1403.1051 Combinatorics +1403.1052 Materials Science +1403.1056 Computer Vision and Pattern Recognition +1403.1058 Soft Condensed Matter +1403.1059 Optics +1403.1061 Other Computer Science +1403.1064 Probability +1403.1067 Materials Science +1403.1068 Dynamical Systems +1403.1073 Neural and Evolutionary Computing +1403.1084 +1403.1102 Methodology +1403.1104 Physics and Society +1403.1106 Probability +1403.1109 Plasma Physics +1403.1110 Soft Condensed Matter +1403.1111 Numerical Analysis +1403.1112 Software Engineering +1403.1113 Mesoscale and Nanoscale Physics +1403.1119 Mesoscale and Nanoscale Physics +1403.1120 Computers and Society +1403.1125 Plasma Physics +1403.1126 Complex Variables +1403.1128 Phenomenology +1403.1140 Mathematical Software +1403.1151 Analysis of PDEs +1403.1154 Mesoscale and Nanoscale Physics +1403.1155 Commutative Algebra +1403.1157 Numerical Analysis +1403.1159 Statistical Mechanics +1403.1160 Differential Geometry +1403.1163 Functional Analysis +1403.1165 Cryptography and Security +1403.1169 Artificial Intelligence +1403.1170 Networking and Internet Architecture +1403.1171 History and Philosophy of Physics +1403.1172 Commutative Algebra +1403.1173 Populations and Evolution +1403.1176 Algebraic Geometry +1403.1178 Data Structures and Algorithms +1403.1181 High Energy Astrophysical Phenomena +1403.1186 +1403.1187 Geometric Topology +1403.1188 +1403.1189 Analysis of PDEs +1403.1191 Differential Geometry +1403.1194 Computation and Language +1403.1197 Algebraic Geometry +1403.1198 +1403.1200 Classical Analysis and ODEs +1403.1210 Applications +1403.1215 Probability +1403.1218 Information Theory +1403.1220 Combinatorics +1403.1222 Optics +1403.1241 Methodology +1403.1242 Representation Theory +1403.1244 Populations and Evolution +1403.1248 Computer Science and Game Theory +1403.1249 Methodology +astro-ph/0609622 +q-bio/0701036 Biomolecules +quant-ph/0502142 +0901.2093 Number Theory +0905.4160 Information Theory +0910.2912 +0911.0219 Probability +0911.4998 Solar and Stellar Astrophysics +0912.5009 Information Theory +1001.2844 Disordered Systems and Neural Networks +1003.2857 Differential Geometry +1003.4333 Algebraic Geometry +1005.3343 +1008.2469 +1009.2253 Number Theory +1012.0368 Probability +1102.1704 Differential Geometry +1102.4122 Logic +1103.4832 +1103.4836 +1104.3347 Probability +1105.5747 Logic +1108.2394 Phenomenology +1108.5595 Number Theory +1109.3436 Algebraic Geometry +1110.1269 General Mathematics +1110.2820 Statistical Mechanics +1110.3248 Probability +1110.3250 Trading and Market Microstructure +1110.3549 Logic +1201.2605 Computer Vision and Pattern Recognition +1201.3316 Information Theory +1204.0741 +1204.4200 Artificial Intelligence +1205.1528 Theory +1205.3332 Phenomenology +1205.4980 +1206.3941 Differential Geometry +1206.5598 Mesoscale and Nanoscale Physics +1207.1672 Number Theory +1207.1673 Number Theory +1207.2290 Fluid Dynamics +1209.2559 Phenomenology +1209.3394 Information Theory +1210.2755 Theory +1211.5120 High Energy Astrophysical Phenomena +1211.6944 History and Overview +1212.1481 Geometric Topology +1212.4129 Discrete Mathematics +1212.6540 Representation Theory +1301.0354 Phenomenology +1301.6796 Combinatorics +1301.7744 Numerical Analysis +1302.0290 +1302.2522 Algebraic Geometry +1302.3206 Probability +1302.6636 Social and Information Networks +1303.0549 Number Theory +1303.1434 Computer Science and Game Theory +1303.2187 Atomic Physics +1303.7303 Adaptation and Self-Organizing Systems +1304.1060 +1304.2240 +1304.6147 Commutative Algebra +1304.6331 Fluid Dynamics +1305.4497 Strongly Correlated Electrons +1306.0112 Physics and Society +1306.2911 Fluid Dynamics +1306.5890 Fluid Dynamics +1307.0991 Information Theory +1307.1005 Statistical Mechanics +1307.4168 Mesoscale and Nanoscale Physics +1307.4846 Number Theory +1307.6209 Mathematical Software +1307.7830 Methodology +1308.1533 Physics and Society +1308.3039 Soft Condensed Matter +1309.3321 Social and Information Networks +1309.3769 Algebraic Geometry +1309.3926 Numerical Analysis +1309.4253 +1309.5059 Analysis of PDEs +1309.5066 Analysis of PDEs +1310.0622 Quantum Gases +1310.0926 Disordered Systems and Neural Networks +1310.1341 Neurons and Cognition +1310.2661 Representation Theory +1310.3600 Logic +1310.3664 Numerical Analysis +1310.5519 Logic +1310.6272 +1310.7133 Complex Variables +1310.7654 Computer Science and Game Theory +1310.7717 Networking and Internet Architecture +1311.1074 +1311.2481 Computational Physics +1311.5413 Superconductivity +1311.5653 Commutative Algebra +1311.6230 Computer Science and Game Theory +1311.7003 Number Theory +1312.0303 +1312.1174 Theory +1312.1678 Combinatorics +1312.3968 Information Theory +1312.6174 Quantum Gases +1401.0817 Optimization and Control +1401.0956 Theory +1401.1992 Algebraic Geometry +1401.2960 Computational Geometry +1401.3066 Superconductivity +1401.3653 Theory +1401.4698 Probability +1401.6819 Number Theory +1402.0306 +1402.0516 Phenomenology +1402.1010 Statistical Mechanics +1402.1493 Cosmology and Nongalactic Astrophysics +1402.2478 Soft Condensed Matter +1402.3612 Number Theory +1402.3840 +1402.5104 +1402.6430 Information Theory +1402.7211 Category Theory +1402.7337 Adaptation and Self-Organizing Systems +1403.1437 Physics and Society +1403.1790 Phenomenology +1403.3270 +1403.4153 Group Theory +1403.6175 Portfolio Management +1403.6455 Mesoscale and Nanoscale Physics +1403.6716 Group Theory +1403.6874 Theory +1403.7606 Representation Theory +1403.7787 Combinatorics +1404.0369 Phenomenology +1404.2753 +1404.3457 Instrumentation and Detectors +1404.3894 Combinatorics +1404.5094 Number Theory +1404.5215 +1404.6127 Phenomenology +1404.6133 +1404.6898 +1404.7633 +1404.7849 Theory +1405.0975 Statistical Mechanics +1405.2141 Probability +1405.2184 +1405.2412 +1405.2668 +1405.2863 Optics +1405.3982 Phenomenology +1405.4641 Numerical Analysis +1405.4710 Theory +1405.5270 Mesoscale and Nanoscale Physics +1405.6157 Information Theory +1405.6476 +1405.7085 Learning +1405.7347 Theory +1405.7683 Geometric Topology +1406.0341 Theory +1406.0820 Instrumentation and Methods for Astrophysics +1406.0875 Geometric Topology +1406.1252 Materials Science +1406.1604 Phenomenology +1406.2481 Mesoscale and Nanoscale Physics +1406.2632 Phenomenology +1406.3151 +1406.3968 +1406.4418 +1406.5556 Applications +1406.6268 Logic +1406.6512 Classical Physics +1406.6893 Strongly Correlated Electrons +1406.6964 Mesoscale and Nanoscale Physics +1406.6969 +1406.7173 Statistics Theory +1407.0329 Strongly Correlated Electrons +1407.0432 +1407.0836 Probability +1407.0839 Probability +1407.1362 Group Theory +1407.1845 Representation Theory +1407.2046 Mesoscale and Nanoscale Physics +1407.2950 Theory +1407.3587 Theory +1407.3684 Phenomenology +1407.4402 Atomic Physics +1407.5444 Cryptography and Security +1407.6295 Distributed, Parallel, and Cluster Computing +1407.6452 Strongly Correlated Electrons +1407.6474 Complex Variables +1407.8229 Statistical Mechanics +1408.0459 +1408.1064 Geometric Topology +1408.1780 Instrumentation and Detectors +1408.2170 Differential Geometry +1408.2486 Disordered Systems and Neural Networks +1408.2920 +1408.3235 Materials Science +1408.3939 Mesoscale and Nanoscale Physics +1408.4535 +1408.6734 Strongly Correlated Electrons +1409.0323 Quantum Gases +1409.1076 Optics +1409.1322 Phenomenology +1409.2618 Trading and Market Microstructure +1409.2896 Solar and Stellar Astrophysics +1409.3941 Logic in Computer Science +1409.4101 Algebraic Geometry +1409.4501 Combinatorics +1409.5632 Cosmology and Nongalactic Astrophysics +1409.6739 Data Structures and Algorithms +1409.7349 Combinatorics +1409.7509 Programming Languages +1410.0244 Optics +1410.0402 Analysis of PDEs +1410.1908 Geometric Topology +1410.1957 Complex Variables +1410.2021 Superconductivity +1410.2628 Data Structures and Algorithms +1410.2855 Optics +1410.3024 Astrophysics of Galaxies +1410.3051 Instrumentation and Methods for Astrophysics +1410.3344 Populations and Evolution +1410.3557 Theory +1410.3908 +1410.4191 Combinatorics +1410.4293 Instrumentation and Detectors +1410.4309 Theory +1410.4333 Lattice +1410.4838 Software Engineering +1410.4846 Probability +1410.4847 Risk Management +1410.4848 Chemical Physics +1410.4849 Physics and Society +1410.4855 Strongly Correlated Electrons +1410.4856 Methodology +1410.4857 Materials Science +1410.4858 Probability +1410.4859 General Mathematics +1410.4863 Computation and Language +1410.4868 Computation and Language +1410.4869 Commutative Algebra +1410.4872 Statistical Mechanics +1410.4878 Algebraic Geometry +1410.4879 Optimization and Control +1410.4882 Chemical Physics +1410.4888 Classical Analysis and ODEs +1410.4893 Atomic and Molecular Clusters +1410.4895 Atomic Physics +1410.4896 Information Theory +1410.4903 Statistical Mechanics +1410.4904 Statistical Mechanics +1410.4905 Functional Analysis +1410.4907 Materials Science +1410.4910 General Physics +1410.4913 Analysis of PDEs +1410.4914 Analysis of PDEs +1410.4915 Number Theory +1410.4919 Chaotic Dynamics +1410.4920 Dynamical Systems +1410.4924 Probability +1410.4925 Logic +1410.4927 Functional Analysis +1410.4928 Computers and Society +1410.4931 Information Theory +1410.4932 Numerical Analysis +1410.4934 Statistics Theory +1410.4939 Classical Physics +1410.4940 Phenomenology +1410.4941 Functional Analysis +1410.4945 Statistics Theory +1410.4947 General Mathematics +1410.4952 Analysis of PDEs +1410.4953 Probability +1410.4954 Information Theory +1410.4963 Data Structures and Algorithms +1410.4964 Physics and Society +1410.4966 Computation and Language +1410.4967 Software Engineering +1410.4970 Computers and Society +1410.4972 Social and Information Networks +1410.4973 Superconductivity +1410.4976 Algebraic Geometry +1410.4977 Networking and Internet Architecture +1410.4978 Cryptography and Security +1410.4983 Materials Science +1410.4984 Distributed, Parallel, and Cluster Computing +1410.4987 Networking and Internet Architecture +1410.4988 +1410.4989 Geometric Topology +1410.4990 Strongly Correlated Electrons +1410.4992 Group Theory +1410.4995 Dynamical Systems +1410.4996 Optics +1410.5002 Statistics Theory +1410.5005 Phenomenology +1410.5008 Representation Theory +1410.5013 Exactly Solvable and Integrable Systems +1410.5015 +1410.5018 Optics +1410.5019 Mesoscale and Nanoscale Physics +1410.5020 Information Theory +1410.5021 Cryptography and Security +1410.5022 Combinatorics +1410.5025 +1410.5028 Materials Science +1410.5029 Numerical Analysis +1410.5031 Optimization and Control +1410.5034 Logic +1410.5035 Quantum Gases +1410.5038 Logic in Computer Science +1410.5043 Classical Analysis and ODEs +1410.5045 Phenomenology +1410.5049 +1410.5051 Dynamical Systems +1410.5052 Group Theory +1410.5054 Probability +1410.5055 Information Theory +1410.5057 +1410.5058 Computer Vision and Pattern Recognition +1410.5061 Functional Analysis +1410.5063 Differential Geometry +1410.5064 Phenomenology +1410.5065 +1410.5066 Statistical Mechanics +1410.5069 Differential Geometry +1410.5070 Instrumentation and Methods for Astrophysics +1410.5071 +1410.5072 Social and Information Networks +1410.5073 Instrumentation and Methods for Astrophysics +1410.5077 Databases +1410.5078 Artificial Intelligence +1410.5079 +1410.5081 Geometric Topology +1410.5082 Statistics Theory +1410.5088 Logic in Computer Science +1410.5089 Logic in Computer Science +1410.5095 Logic +1410.5097 Numerical Analysis +1410.5099 Neurons and Cognition +1410.5102 Performance +1410.5103 Molecular Networks +1410.5105 Data Structures and Algorithms +1410.5106 Number Theory +1410.5107 Information Theory +1410.5110 Methodology +1410.5111 Systems and Control +1410.5112 Combinatorics +1410.5113 Solar and Stellar Astrophysics +1410.5115 Metric Geometry +1410.5119 Social and Information Networks +1410.5121 Analysis of PDEs +1410.5122 +1410.5123 Neurons and Cognition +1410.5124 +1410.5127 Networking and Internet Architecture +1410.5128 Networking and Internet Architecture +1410.5129 Computers and Society +1410.5130 Functional Analysis +1410.5132 Algebraic Geometry +1410.5133 Materials Science +1410.5139 +1410.5140 Functional Analysis +1410.5143 Functional Analysis +1410.5144 Combinatorics +1410.5145 Differential Geometry +1410.5147 +1410.5152 Social and Information Networks +1410.5153 Materials Science +1410.5155 Superconductivity +1410.5156 Algebraic Geometry +1410.5157 Analysis of PDEs +1410.5158 Physics and Society +1410.5161 Rings and Algebras +1410.5162 +1410.5163 Applications +1410.5165 Systems and Control +1410.5167 Analysis of PDEs +1410.5171 +1410.5176 Differential Geometry +1410.5179 Optimization and Control +1410.5181 Metric Geometry +1410.5182 Experiment +1410.5184 Solar and Stellar Astrophysics +1410.5185 Social and Information Networks +1410.5187 Information Theory +1410.5188 +1410.5197 Formal Languages and Automata Theory +1410.5199 +1410.5206 Information Theory +1410.5211 Group Theory +1410.5214 Mesoscale and Nanoscale Physics +1410.5215 Artificial Intelligence +1410.5217 Classical Analysis and ODEs +1410.5218 Soft Condensed Matter +1410.5219 Computational Physics +1410.5221 +1410.5223 Combinatorics +1410.5225 Solar and Stellar Astrophysics +1410.5230 Analysis of PDEs +1410.5233 Biological Physics +1410.5236 High Energy Astrophysical Phenomena +1410.5238 Instrumentation and Detectors +1410.5240 Information Theory +1410.5244 Experiment +1410.5245 Strongly Correlated Electrons +1410.5246 Optics +1410.5250 Medical Physics +1410.5252 Complex Variables +1410.5256 Phenomenology +1410.5257 Networking and Internet Architecture +1410.5259 Combinatorics +1410.5260 +1410.5261 Physics and Society +1410.5264 Strongly Correlated Electrons +1410.5268 Mesoscale and Nanoscale Physics +1410.5277 Cosmology and Nongalactic Astrophysics +1410.5282 +1410.5286 Numerical Analysis +1410.5287 Soft Condensed Matter +1410.5288 Information Theory +1410.5290 Databases +1410.5297 Group Theory +1410.5300 Combinatorics +1410.5302 Differential Geometry +1410.5306 Materials Science +1410.5308 Numerical Analysis +1410.5311 +1410.5312 Numerical Analysis +1410.5314 Superconductivity +1410.5315 Accelerator Physics +1410.5316 Computational Physics +1410.5317 Materials Science +1410.5320 Earth and Planetary Astrophysics +1410.5323 Instrumentation and Methods for Astrophysics +1410.5330 Learning +1410.5340 Popular Physics +1410.5342 Geometric Topology +1410.5344 Instrumentation and Detectors +1410.5347 Probability +1410.5349 Computers and Society +1410.5350 Exactly Solvable and Integrable Systems +1410.5353 +1410.5354 Solar and Stellar Astrophysics +1410.5361 Combinatorics +1410.5362 Neurons and Cognition +1410.5366 Differential Geometry +1410.5368 Medical Physics +1410.5371 Physics Education +1410.5372 Biological Physics +1410.5379 Operator Algebras +1410.5388 +1410.5389 Logic +1410.5392 Data Structures and Algorithms +1410.5394 Symplectic Geometry +1410.5397 Phenomenology +1410.5398 Probability +1410.5406 Probability +1410.5409 Populations and Evolution +cond-mat/0702084 Materials Science +math/0210312 Number Theory +math/0611628 Dynamical Systems +quant-ph/0607023 +0801.2941 General Mathematics +0901.2956 +1010.6039 Differential Geometry +1012.3844 Probability +1101.0448 +1107.0492 General Physics +1108.2262 K-Theory and Homology +1108.3046 +1110.3442 Optimization and Control +1110.4400 Computation +1111.1182 Numerical Analysis +1111.5117 +1112.0378 +1112.0380 +1201.0299 Number Theory +1201.1578 Methodology +1201.6548 Information Theory +1203.1460 Atomic Physics +1203.1866 Logic +1203.2741 Dynamical Systems +1203.5713 Spectral Theory +1205.1133 +1205.5136 Cryptography and Security +1205.6279 +1206.0597 High Energy Astrophysical Phenomena +1206.1388 Numerical Analysis +1207.5572 Cosmology and Nongalactic Astrophysics +1208.0993 Geometric Topology +1208.4455 Combinatorics +1208.4626 Algebraic Geometry +1209.0882 Numerical Analysis +1209.3148 Quantum Gases +1210.2565 Cosmology and Nongalactic Astrophysics +1210.4223 Numerical Analysis +1210.7031 Algebraic Topology +1210.7842 Combinatorics +1211.4131 Geometric Topology +1211.4194 Group Theory +1212.2836 Algebraic Topology +1212.3109 Differential Geometry +1212.3643 Numerical Analysis +1212.6295 Disordered Systems and Neural Networks +1212.6881 Theory +1301.2471 Optics +1301.4123 Adaptation and Self-Organizing Systems +1301.4313 Symbolic Computation +1301.7620 Classical Analysis and ODEs +1303.0551 Machine Learning +1303.4915 Statistical Mechanics +1304.0057 Applications +1304.3967 +1304.4723 Cosmology and Nongalactic Astrophysics +1304.6030 Strongly Correlated Electrons +1305.0157 +1305.0821 High Energy Astrophysical Phenomena +1305.0889 Methodology +1305.1039 +1305.3979 Superconductivity +1306.2544 Strongly Correlated Electrons +1306.3604 Information Theory +1306.3747 Combinatorics +1306.5244 Strongly Correlated Electrons +1306.5410 +1307.1293 +1307.5207 +1307.5850 Phenomenology +1307.6373 Information Theory +1307.6594 Populations and Evolution +1308.0255 Statistical Mechanics +1308.0419 Graphics +1308.6359 +1309.1355 Biological Physics +1309.2540 Phenomenology +1309.5495 Phenomenology +1309.7027 Quantum Gases +1309.7948 Commutative Algebra +1310.0546 Group Theory +1310.0944 Dynamical Systems +1310.1940 Mesoscale and Nanoscale Physics +1310.2219 Metric Geometry +1310.3595 Systems and Control +1310.5676 Quantum Gases +1310.8569 Cosmology and Nongalactic Astrophysics +1311.0082 Analysis of PDEs +1311.0435 Phenomenology +1311.3060 Statistics Theory +1311.3227 +1311.3576 Methodology +1311.3814 Soft Condensed Matter +1311.4470 Superconductivity +1312.0391 Chaotic Dynamics +1312.1972 Quantum Gases +1312.2745 +1312.4266 +1312.4319 +1312.4698 Computational Physics +1312.4786 Theory +1312.6719 +1312.7619 Cosmology and Nongalactic Astrophysics +1401.1270 Cosmology and Nongalactic Astrophysics +1401.2643 +1401.3566 Information Theory +1401.3792 Chemical Physics +1401.5911 +1401.6296 Superconductivity +1401.6458 Phenomenology +1401.8205 Populations and Evolution +1402.0209 Functional Analysis +1402.0305 Mesoscale and Nanoscale Physics +1402.0384 Phenomenology +1402.0728 Information Retrieval +1402.0937 +1402.1770 Astrophysics of Galaxies +1402.3631 Data Structures and Algorithms +1402.4578 Digital Libraries +1402.5025 +1402.6878 Soft Condensed Matter +1403.1882 Plasma Physics +1403.2057 Group Theory +1403.2999 +1403.3880 Strongly Correlated Electrons +1403.6105 Cosmology and Nongalactic Astrophysics +1403.7014 Networking and Internet Architecture +1403.7703 Number Theory +1403.7788 Superconductivity +1403.7880 Fluid Dynamics +1403.8123 Networking and Internet Architecture +1404.0039 Networking and Internet Architecture +1404.0499 Solar and Stellar Astrophysics +1404.1095 Strongly Correlated Electrons +1404.2449 Superconductivity +1404.2714 Theory +1404.3454 Networking and Internet Architecture +1404.3498 Theory +1404.3834 Numerical Analysis +1404.4613 Algebraic Geometry +1404.5057 Logic +1404.5296 +1404.6589 Plasma Physics +1404.6763 Data Structures and Algorithms +1404.7513 Software Engineering +1404.7528 Software Engineering +1404.7548 Distributed, Parallel, and Cluster Computing +1404.7763 Software Engineering +1404.7778 Software Engineering +1404.7792 Software Engineering +1404.7817 Statistical Mechanics +1405.0098 Dynamical Systems +1405.0133 Learning +1405.0319 Software Engineering +1405.0325 Software Engineering +1405.0676 Probability +1405.0857 Analysis of PDEs +1405.1373 Numerical Analysis +1405.1529 Instrumentation and Methods for Astrophysics +1405.1587 Materials Science +1405.1590 Logic in Computer Science +1405.1618 Software Engineering +1405.1687 Combinatorics +1405.1728 Phenomenology +1405.1739 Classical Physics +1405.1740 Information Retrieval +1405.1741 Dynamical Systems +1405.1743 Complex Variables +1405.1744 Statistics Theory +1405.1746 Complex Variables +1405.1747 Spectral Theory +1405.1752 Social and Information Networks +1405.1761 Information Theory +1405.1763 Lattice +1405.1764 Representation Theory +1405.1765 Combinatorics +1405.1766 +1405.1769 Earth and Planetary Astrophysics +1405.1770 Algebraic Topology +1405.1772 Logic +1405.1773 Machine Learning +1405.1774 Strongly Correlated Electrons +1405.1775 Soft Condensed Matter +1405.1777 High Energy Astrophysical Phenomena +1405.1781 Data Structures and Algorithms +1405.1789 Optimization and Control +1405.1792 Methodology +1405.1796 Computation +1405.1802 Optimization and Control +1405.1808 Representation Theory +1405.1809 Rings and Algebras +1405.1811 Networking and Internet Architecture +1405.1812 Combinatorics +1405.1814 Information Retrieval +1405.1815 Computer Vision and Pattern Recognition +1405.1816 Probability +1405.1818 Networking and Internet Architecture +1405.1820 Representation Theory +1405.1821 Robotics +1405.1823 Systems and Control +1405.1826 Statistics Theory +1405.1829 Optics +1405.1831 Numerical Analysis +1405.1832 Classical Analysis and ODEs +1405.1834 Optimization and Control +1405.1836 Systems and Control +1405.1841 Logic in Computer Science +1405.1842 Information Retrieval +1405.1845 Algebraic Geometry +1405.1851 Databases +1405.1858 Analysis of PDEs +1405.1864 Logic +1405.1866 Differential Geometry +1405.1870 General Mathematics +1405.1873 Software Engineering +1405.1875 Instrumentation and Methods for Astrophysics +1405.1876 Superconductivity +1405.1879 Systems and Control +1405.1886 +1405.1894 Computational Geometry +1405.1895 General Mathematics +1405.1898 Representation Theory +1405.1899 Group Theory +1405.1900 Representation Theory +1405.1902 Graphics +1405.1905 Physics and Society +1405.1907 Materials Science +1405.1910 High Energy Astrophysical Phenomena +1405.1912 Databases +1405.1914 Combinatorics +1405.1916 Performance +1405.1917 Operator Algebras +1405.1921 Fluid Dynamics +1405.1924 Computation and Language +1405.1925 Phenomenology +1405.1929 Materials Science +1405.1932 Distributed, Parallel, and Cluster Computing +1405.1943 Analysis of PDEs +1405.1949 Number Theory +1405.1957 Numerical Analysis +1405.1964 Computer Science and Game Theory +1405.1965 Computer Vision and Pattern Recognition +1405.1966 Computer Vision and Pattern Recognition +1405.1967 Computer Vision and Pattern Recognition +1405.1970 Theory +1405.1971 Probability +1405.1976 Applications +1405.1980 Discrete Mathematics +1405.1982 Popular Physics +1405.1983 Solar and Stellar Astrophysics +1405.1989 Dynamical Systems +1405.1993 Networking and Internet Architecture +1405.1999 Computer Vision and Pattern Recognition +1405.2003 Representation Theory +1405.2005 Strongly Correlated Electrons +1405.2011 Distributed, Parallel, and Cluster Computing +1405.2016 Earth and Planetary Astrophysics +1405.2019 +1405.2022 Fluid Dynamics +1405.2027 Fluid Dynamics +1405.2031 Emerging Technologies +1405.2042 Representation Theory +1405.2048 Information Retrieval +1405.2049 Information Theory +1405.2051 Economics +1405.2052 General Physics +1405.2058 Artificial Intelligence +1405.2059 General Physics +1405.2061 Information Theory +1405.2062 Computer Vision and Pattern Recognition +1405.2063 Other Computer Science +1405.2064 Combinatorics +1405.2066 Software Engineering +math/0406498 Geometric Topology +1006.1352 Theory +1007.2438 Operator Algebras +1010.3379 Operator Algebras +1102.0414 Quantum Gases +1104.4779 Computational Complexity +1107.1597 +1110.1082 +1112.0638 +1201.6648 +1203.6323 Algebraic Geometry +1204.1332 Algebraic Geometry +1205.2509 Distributed, Parallel, and Cluster Computing +1207.5921 +1209.1018 Number Theory +1209.4329 Number Theory +1210.7642 Computational Finance +1210.7844 Combinatorics +1211.5430 Superconductivity +1301.2956 +1301.3689 Metric Geometry +1301.6920 Statistical Mechanics +1303.7264 Learning +1304.1079 General Physics +1304.1606 Classical Analysis and ODEs +1304.4287 Logic in Computer Science +1304.5038 Information Theory +1304.6649 Optimization and Control +1304.7950 Solar and Stellar Astrophysics +1305.2409 +1305.5635 Numerical Analysis +1306.3151 +1307.0293 Machine Learning +1307.2812 Soft Condensed Matter +1307.3201 Numerical Analysis +1307.3533 Logic +1307.3993 Statistical Mechanics +1307.5140 +1307.6842 Classical Analysis and ODEs +1307.6868 Solar and Stellar Astrophysics +1308.3010 Solar and Stellar Astrophysics +1308.3951 Quantum Algebra +1309.5346 Dynamical Systems +1309.5898 +1309.5973 Theory +1309.6192 +1310.1595 Probability +1310.5172 Combinatorics +1310.7458 Probability +1310.8564 Number Theory +1311.3832 Numerical Analysis +1312.5920 Statistical Mechanics +1401.0173 Group Theory +1401.1472 Computational Geometry +1401.1828 Atomic Physics +1401.2761 Commutative Algebra +1401.2903 Operator Algebras +1401.3057 Algebraic Geometry +1401.3065 Combinatorics +1401.3946 Physics and Society +1401.7722 Probability +1402.0136 Applications +1402.2061 Numerical Analysis +1402.4070 +1402.4572 Information Theory +1402.5143 Phenomenology +1402.6574 Methodology +1403.0212 Algebraic Geometry +1403.2084 +1403.3220 Soft Condensed Matter +1403.3364 Soft Condensed Matter +1403.6338 High Energy Astrophysical Phenomena +1403.6347 Computational Complexity +1403.7210 Mesoscale and Nanoscale Physics +1403.8018 Risk Management +1404.0622 Phenomenology +1404.0658 +1404.1730 Statistical Finance +1404.3041 Systems and Control +1404.3154 K-Theory and Homology +1404.3544 Operator Algebras +1404.4064 Combinatorics +1404.5758 Phenomenology +1404.6161 Phenomenology +1405.4374 Group Theory +1405.5123 Plasma Physics +1405.7272 Cosmology and Nongalactic Astrophysics +1406.0261 Materials Science +1406.1242 Quantum Gases +1406.2489 Physics and Society +1406.2501 Methodology +1406.3293 Probability +1406.5471 Analysis of PDEs +1406.6695 Mesoscale and Nanoscale Physics +1407.2871 +1407.2925 Mathematical Software +1407.3430 Mesoscale and Nanoscale Physics +1407.3650 Phenomenology +1407.4034 Cosmology and Nongalactic Astrophysics +1407.4178 +1407.4644 +1407.4782 Disordered Systems and Neural Networks +1407.5875 Superconductivity +1407.6555 Chaotic Dynamics +1407.7414 Phenomenology +1407.7592 Computational Complexity +1408.3512 Phenomenology +1408.3604 Logic +1408.4603 Cosmology and Nongalactic Astrophysics +1408.5086 Lattice +1408.6025 Analysis of PDEs +1409.2979 Optimization and Control +1409.3080 Combinatorics +1409.3112 Probability +1409.4542 Combinatorics +1409.4724 +1409.4912 Number Theory +1409.8512 +1410.0097 Materials Science +1410.0832 Superconductivity +1410.1317 Algebraic Geometry +1410.1544 Astrophysics of Galaxies +1410.1758 Dynamical Systems +1410.2294 Astrophysics of Galaxies +1410.4196 Earth and Planetary Astrophysics +1410.4417 Geometric Topology +1410.4787 Statistics Theory +1410.5126 +1410.5213 +1410.5632 Materials Science +1410.6002 Other Statistics +1410.6437 Instrumentation and Detectors +1410.6445 Optimization and Control +1410.6787 Accelerator Physics +1410.6827 Plasma Physics +1410.7149 Data Analysis, Statistics and Probability +1410.7295 Information Theory +1410.7555 Chaotic Dynamics +1410.7597 Lattice +1410.7669 Discrete Mathematics +1410.7679 Computer Vision and Pattern Recognition +1410.7709 Learning +1410.7777 +1410.7782 Superconductivity +1410.7786 Probability +1410.7787 Computation and Language +1410.7789 Number Theory +1410.7792 Optics +1410.7795 Medical Physics +1410.7796 Popular Physics +1410.7799 Computation +1410.7801 Functional Analysis +1410.7802 Mesoscale and Nanoscale Physics +1410.7805 Experiment +1410.7806 Metric Geometry +1410.7810 Optimization and Control +1410.7815 Distributed, Parallel, and Cluster Computing +1410.7820 Experiment +1410.7825 +1410.7828 Quantum Gases +1410.7837 Applications +1410.7840 High Energy Astrophysical Phenomena +1410.7842 Discrete Mathematics +1410.7843 Cosmology and Nongalactic Astrophysics +1410.7846 Soft Condensed Matter +1410.7849 Artificial Intelligence +1410.7850 Logic in Computer Science +1410.7851 Computational Engineering, Finance, and Science +1410.7855 Statistics Theory +1410.7859 Strongly Correlated Electrons +1410.7864 Differential Geometry +1410.7867 Information Theory +1410.7868 Optimization and Control +1410.7871 Data Structures and Algorithms +1410.7875 Molecular Networks +1410.7878 Differential Geometry +1410.7880 Analysis of PDEs +1410.7881 Neural and Evolutionary Computing +1410.7883 Neural and Evolutionary Computing +1410.7884 Algebraic Geometry +1410.7890 Learning +1410.7895 Emerging Technologies +1410.7897 Materials Science +1410.7901 Atomic Physics +1410.7902 Functional Analysis +1410.7906 Instrumentation and Detectors +1410.7907 Differential Geometry +1410.7913 Numerical Analysis +1410.7917 Lattice +1410.7918 Information Theory +1410.7920 Physics and Society +1410.7922 Computer Vision and Pattern Recognition +1410.7924 Networking and Internet Architecture +1410.7925 +1410.7927 Discrete Mathematics +1410.7930 Logic in Computer Science +1410.7938 High Energy Astrophysical Phenomena +1410.7939 Phenomenology +1410.7945 Group Theory +1410.7946 Cosmology and Nongalactic Astrophysics +1410.7947 General Topology +1410.7950 Symplectic Geometry +1410.7953 Artificial Intelligence +1410.7955 Networking and Internet Architecture +1410.7960 Number Theory +1410.7961 Mathematical Finance +1410.7962 Earth and Planetary Astrophysics +1410.7964 Probability +1410.7965 Commutative Algebra +1410.7967 Information Theory +1410.7968 Optics +1410.7974 Accelerator Physics +1410.7975 Classical Analysis and ODEs +1410.7977 Classical Analysis and ODEs +1410.7978 Classical Analysis and ODEs +1410.7981 Representation Theory +1410.7982 +1410.7986 Algebraic Geometry +1410.7987 Experiment +1410.7989 Analysis of PDEs +1410.7990 Databases +1410.7991 Accelerator Physics +1410.7992 Lattice +1410.7997 Fluid Dynamics +1410.8004 +1410.8005 Data Analysis, Statistics and Probability +1410.8007 Networking and Internet Architecture +1410.8011 Analysis of PDEs +1410.8014 Accelerator Physics +1410.8015 Materials Science +1410.8016 Materials Science +1410.8017 Combinatorics +1410.8019 +1410.8024 Information Theory +1410.8025 Number Theory +1410.8028 Lattice +1410.8030 Differential Geometry +1410.8034 Learning +1410.8039 Networking and Internet Architecture +1410.8040 Biomolecules +1410.8042 Portfolio Management +1410.8045 Optimization and Control +1410.8048 Solar and Stellar Astrophysics +1410.8053 Experiment +1410.8055 Classical Analysis and ODEs +1410.8058 Experiment +1410.8059 Statistical Mechanics +1410.8061 Differential Geometry +1410.8067 +1410.8068 Information Retrieval +1410.8070 Algebraic Geometry +1410.8071 Populations and Evolution +1410.8074 Quantum Algebra +1410.8082 Cryptography and Security +1410.8085 +1410.8087 Cell Behavior +1410.8088 K-Theory and Homology +1410.8090 Accelerator Physics +1410.8091 Populations and Evolution +1410.8099 Social and Information Networks +1410.8108 Algebraic Geometry +1410.8110 Number Theory +1410.8118 Strongly Correlated Electrons +1410.8119 Systems and Control +1410.8123 Probability +1410.8125 Phenomenology +1410.8126 Probability +1410.8127 Systems and Control +gr-qc/0605127 +physics/0609050 General Physics +0704.3863 Strongly Correlated Electrons +0705.4590 Algebraic Geometry +0803.0179 Algebraic Geometry +0804.2290 Mesoscale and Nanoscale Physics +0807.4788 +0901.0320 Algebraic Geometry +0906.1215 +1001.1757 Theory +1001.4859 Superconductivity +1003.2502 Differential Geometry +1003.3740 Materials Science +1008.3281 Analysis of PDEs +1008.4196 Soft Condensed Matter +1010.3569 Differential Geometry +1011.3056 +1102.0375 Algebraic Geometry +1102.0539 Differential Geometry +1102.1779 Combinatorics +1104.4288 Algebraic Topology +1104.4333 Algebraic Geometry +1104.4461 Physics Education +1106.1378 Algebraic Geometry +1106.2240 +1107.5502 Mesoscale and Nanoscale Physics +1108.2764 Algebraic Geometry +1108.2818 Number Theory +1108.5853 Algebraic Topology +1201.0351 Computational Engineering, Finance, and Science +1203.6422 Algebraic Topology +1204.3967 +1204.5374 Analysis of PDEs +1205.1926 Numerical Analysis +1205.2567 Atomic Physics +1205.6728 Differential Geometry +1207.4361 +1207.4736 Probability +1209.2045 Differential Geometry +1209.5242 Populations and Evolution +1210.0234 Genomics +1210.0512 +1210.6294 Probability +1211.1309 Statistics Theory +1211.4491 Solar and Stellar Astrophysics +1211.5790 Statistical Mechanics +1212.4342 Strongly Correlated Electrons +1212.5728 Theory +1301.1317 Analysis of PDEs +1301.3094 Mesoscale and Nanoscale Physics +1301.4860 Mesoscale and Nanoscale Physics +1301.5710 +1301.6861 +1302.4713 Computer Science and Game Theory +1302.6049 High Energy Astrophysical Phenomena +1303.4652 +1303.5152 Superconductivity +1303.5530 +1303.5615 +1304.0363 Cosmology and Nongalactic Astrophysics +1304.1256 Combinatorics +1304.5406 Statistical Mechanics +1304.6550 +1304.7480 Information Theory +1305.0087 Data Structures and Algorithms +1305.2175 Dynamical Systems +1305.3081 Statistical Mechanics +1305.3166 +1305.6070 Functional Analysis +1305.6445 +1305.7183 Phenomenology +1306.0933 +1306.2682 Classical Physics +1306.3124 Strongly Correlated Electrons +1306.3753 Differential Geometry +1306.5083 Phenomenology +1306.6691 Mesoscale and Nanoscale Physics +1307.0081 Plasma Physics +1307.0089 Group Theory +1307.0629 Differential Geometry +1307.3275 Symplectic Geometry +1307.3288 +1307.3746 +1307.3873 Fluid Dynamics +1307.4235 Other Condensed Matter +1307.4326 +1307.4888 Fluid Dynamics +1307.5586 Chemical Physics +1307.7321 Mesoscale and Nanoscale Physics +1307.7482 Algebraic Geometry +1307.7871 Materials Science +1308.0098 Phenomenology +1308.1395 Mesoscale and Nanoscale Physics +1308.2351 Superconductivity +1308.2518 Phenomenology +1308.2630 Neurons and Cognition +1308.4076 Atomic and Molecular Clusters +1308.4468 +1308.5677 +1308.5860 Mesoscale and Nanoscale Physics +1308.6731 Cosmology and Nongalactic Astrophysics +1309.0272 Quantum Gases +1309.1106 +1309.2175 Physics and Society +1309.3208 +1309.3870 Combinatorics +1309.5071 Probability +1309.7323 Superconductivity +1310.2589 Quantum Gases +1310.4004 Materials Science +1310.4024 Superconductivity +1310.5594 +1310.6485 Cryptography and Security +1310.7145 +1310.7551 Mesoscale and Nanoscale Physics +1311.0097 Mesoscale and Nanoscale Physics +1311.1564 +1311.1918 Classical Analysis and ODEs +1311.1947 Quantum Gases +1311.3498 Earth and Planetary Astrophysics +1311.5659 Pattern Formation and Solitons +1311.6643 Astrophysics of Galaxies +1312.3156 Materials Science +1312.3948 Instrumentation and Methods for Astrophysics +1312.4021 +1312.4507 Logic in Computer Science +1312.4662 Quantum Gases +1312.4955 High Energy Astrophysical Phenomena +1312.6324 Strongly Correlated Electrons +1312.7037 Number Theory +1401.0086 Machine Learning +1401.0296 Group Theory +1401.0404 Methodology +1401.0498 History and Philosophy of Physics +1401.0533 Cosmology and Nongalactic Astrophysics +1401.0694 Networking and Internet Architecture +1401.0889 Robotics +1401.0983 +1401.1052 Applications +1401.1102 Popular Physics +1401.1140 Data Structures and Algorithms +1401.1199 Materials Science +1401.1206 Information Theory +1401.1221 High Energy Astrophysical Phenomena +1401.1222 Phenomenology +1401.1225 Combinatorics +1401.1226 Functional Analysis +1401.1232 Cryptography and Security +1401.1234 Analysis of PDEs +1401.1236 Data Analysis, Statistics and Probability +1401.1237 Mesoscale and Nanoscale Physics +1401.1242 Superconductivity +1401.1243 Probability +1401.1251 Analysis of PDEs +1401.1255 Optimization and Control +1401.1260 Cosmology and Nongalactic Astrophysics +1401.1263 Combinatorics +1401.1264 Statistics Theory +1401.1267 Statistics Theory +1401.1269 Computation +1401.1276 Optics +1401.1283 Algebraic Geometry +1401.1289 Software Engineering +1401.1290 Mathematical Software +1401.1291 Differential Geometry +1401.1292 Statistical Finance +1401.1298 Phenomenology +1401.1299 Optics +1401.1302 Databases +1401.1303 Group Theory +1401.1304 Statistical Mechanics +1401.1305 Optics +1401.1307 Networking and Internet Architecture +1401.1310 Materials Science +1401.1312 High Energy Astrophysical Phenomena +1401.1313 Systems and Control +1401.1317 Astrophysics of Galaxies +1401.1318 Cryptography and Security +1401.1320 Spectral Theory +1401.1321 Physics and Society +1401.1322 Optics +1401.1326 Software Engineering +1401.1329 Differential Geometry +1401.1330 Combinatorics +1401.1331 Number Theory +1401.1333 Neural and Evolutionary Computing +1401.1336 Metric Geometry +1401.1337 +1401.1340 Number Theory +1401.1341 Analysis of PDEs +1401.1345 +1401.1347 Networking and Internet Architecture +1401.1348 +1401.1349 Networking and Internet Architecture +1401.1353 Functional Analysis +1401.1360 Statistical Mechanics +1401.1362 Lattice +1401.1366 +1401.1369 Optimization and Control +1401.1370 +1401.1372 Solar and Stellar Astrophysics +1401.1373 Computational Physics +1401.1375 +1401.1376 Robotics +1401.1377 Combinatorics +1401.1379 +1401.1380 Analysis of PDEs +1401.1381 Information Theory +1401.1382 Analysis of PDEs +1401.1383 Statistics Theory +1401.1389 Cosmology and Nongalactic Astrophysics +1401.1392 Strongly Correlated Electrons +1401.1395 Differential Geometry +1401.1396 Exactly Solvable and Integrable Systems +1401.1397 Statistics Theory +1401.1400 +1401.1401 Theory +1401.1403 Methodology +1401.1405 Solar and Stellar Astrophysics +1401.1407 Representation Theory +1401.1408 Exactly Solvable and Integrable Systems +1401.1409 Algebraic Geometry +1401.1410 Superconductivity +1401.1414 Lattice +1401.1416 Superconductivity +1401.1417 Functional Analysis +1401.1419 Materials Science +1401.1420 Soft Condensed Matter +1401.1424 Networking and Internet Architecture +1401.1428 Networking and Internet Architecture +1401.1430 Classical Analysis and ODEs +1401.1434 Computational Geometry +1401.1446 Quantum Gases +1401.1447 Phenomenology +1401.1450 Data Structures and Algorithms +1401.1451 Other Computer Science +1401.1452 +1401.1454 Differential Geometry +1401.1465 Artificial Intelligence +1401.1466 Combinatorics +1401.1467 Information Theory +1401.1468 History and Overview +1401.1471 Combinatorics +1401.1474 Number Theory +1401.1475 Logic in Computer Science +1401.1476 Lattice +1401.1479 Computer Science and Game Theory +1401.1480 Information Theory +1401.1483 Numerical Analysis +1401.1484 Category Theory +1401.1486 Human-Computer Interaction +1401.1487 Lattice +1401.1488 Graphics +1401.1489 Machine Learning +1401.1494 Lattice +cond-mat/9709122 Strongly Correlated Electrons +math/0502455 Operator Algebras +quant-ph/0512244 +0804.3440 Materials Science +0904.2981 Chaotic Dynamics +0910.4606 Quantum Gases +1007.4793 Theory +1007.5047 Theory +1103.6151 Algebraic Topology +1106.5117 Phenomenology +1107.1906 Algebraic Geometry +1107.1907 Algebraic Geometry +1108.1563 Algebraic Geometry +1110.0545 Theory +1201.4920 Analysis of PDEs +1201.5142 Phenomenology +1201.5334 +1205.5667 +1205.6844 Analysis of PDEs +1206.1125 Number Theory +1206.6529 Quantum Algebra +1208.2467 Operator Algebras +1209.2533 Quantum Gases +1211.4951 Geometric Topology +1212.1212 Theory +1212.1564 Complex Variables +1212.5904 Algebraic Geometry +1212.6912 Phenomenology +1302.0233 Analysis of PDEs +1302.3176 Superconductivity +1303.1624 Computer Vision and Pattern Recognition +1303.1953 Probability +1303.3820 Phenomenology +1303.6846 Group Theory +1304.1591 +1304.1837 Methodology +1305.1202 Probability +1306.3956 Probability +1307.0744 Quantum Gases +1307.4208 Phenomenology +1307.6839 +1307.8328 Mesoscale and Nanoscale Physics +1308.4670 Computational Geometry +1309.2323 Algebraic Topology +1309.3724 Neurons and Cognition +1309.5743 +1310.3042 Statistical Mechanics +1310.3298 Statistical Mechanics +1310.4140 +1310.7134 Multiagent Systems +1310.7967 Analysis of PDEs +1311.4914 Algebraic Geometry +1312.4157 Phenomenology +1312.6077 Computer Vision and Pattern Recognition +1401.4488 +1401.4583 Theory +1401.6345 Combinatorics +1401.8188 Algebraic Geometry +1402.3581 +1402.5115 +1403.0219 Numerical Analysis +1403.1494 Optimization and Control +1403.2180 Sound +1403.4965 Physics and Society +1403.4969 Physics and Society +1403.4987 Populations and Evolution +1403.7028 Cosmology and Nongalactic Astrophysics +1403.7870 Information Theory +1404.1885 Strongly Correlated Electrons +1405.1377 Number Theory +1405.1675 Artificial Intelligence +1405.2846 Information Theory +1405.3601 Phenomenology +1405.4530 Algebraic Geometry +1405.5080 Optics +1405.5397 Probability +1405.6180 Number Theory +1405.6478 +1405.7608 Number Theory +1406.2804 Phenomenology +1406.3713 Phenomenology +1406.4827 Cosmology and Nongalactic Astrophysics +1406.5626 Statistical Mechanics +1406.7300 +1406.7724 Theory +1407.1046 Strongly Correlated Electrons +1407.1899 +1407.5125 Instrumentation and Methods for Astrophysics +1407.5949 Neural and Evolutionary Computing +1407.6630 Chaotic Dynamics +1408.0384 Distributed, Parallel, and Cluster Computing +1408.0964 Theory +1408.1356 Optics +1408.3176 +1408.3561 Theory +1408.5414 High Energy Astrophysical Phenomena +1408.6585 Strongly Correlated Electrons +1408.6802 Experiment +1409.2244 +1409.3596 Materials Science +1409.5061 Soft Condensed Matter +1409.6198 Optics +1409.6695 +1409.7067 Quantum Gases +1409.7914 +1410.0759 Neural and Evolutionary Computing +1410.1053 +1410.3372 +1410.3393 Lattice +1410.4477 Distributed, Parallel, and Cluster Computing +1410.4691 Phenomenology +1410.5204 Superconductivity +1410.5853 General Mathematics +1410.6276 Phenomenology +1410.7957 Atomic Physics +1410.8401 Strongly Correlated Electrons +1411.0849 Probability +1411.1522 +1411.1593 General Topology +1411.2947 Analysis of PDEs +1411.4292 Experiment +1411.7439 Systems and Control +1412.0726 Materials Science +1412.1392 Methodology +1412.1886 Materials Science +1412.2477 Information Theory +1412.3023 Data Structures and Algorithms +1412.3073 Disordered Systems and Neural Networks +1412.3506 Computer Vision and Pattern Recognition +1412.3780 +1412.4155 Numerical Analysis +1412.4800 Group Theory +1412.4854 +1412.4973 Social and Information Networks +1412.5090 Logic in Computer Science +1412.5106 High Energy Astrophysical Phenomena +1412.5276 Superconductivity +1412.5414 Analysis of PDEs +1412.5490 Computer Vision and Pattern Recognition +1412.5497 Superconductivity +1412.5581 General Physics +1412.5583 Human-Computer Interaction +1412.5592 High Energy Astrophysical Phenomena +1412.5616 Networking and Internet Architecture +1412.5617 Learning +1412.5618 +1412.5619 Cryptography and Security +1412.5620 +1412.5621 +1412.5625 Number Theory +1412.5627 Computational Engineering, Finance, and Science +1412.5628 Instrumentation and Detectors +1412.5632 Statistics Theory +1412.5636 Superconductivity +1412.5638 Solar and Stellar Astrophysics +1412.5639 High Energy Astrophysical Phenomena +1412.5641 Numerical Analysis +1412.5643 High Energy Astrophysical Phenomena +1412.5644 History and Philosophy of Physics +1412.5647 Methodology +1412.5655 Computational Complexity +1412.5656 Applications +1412.5657 Computational Complexity +1412.5659 Computation and Language +1412.5660 Phenomenology +1412.5663 Statistics Theory +1412.5664 Cosmology and Nongalactic Astrophysics +1412.5665 +1412.5671 Number Theory +1412.5676 Systems and Control +1412.5679 Analysis of PDEs +1412.5681 Computer Science and Game Theory +1412.5683 Solar and Stellar Astrophysics +1412.5684 Materials Science +1412.5691 Combinatorics +1412.5693 Quantitative Methods +1412.5697 Computational Geometry +1412.5701 +1412.5703 Lattice +1412.5705 Materials Science +1412.5706 Numerical Analysis +1412.5707 Systems and Control +1412.5710 Neural and Evolutionary Computing +1412.5711 Robotics +1412.5712 Exactly Solvable and Integrable Systems +1412.5714 Rings and Algebras +1412.5715 Astrophysics of Galaxies +1412.5716 Social and Information Networks +1412.5717 Popular Physics +1412.5719 Superconductivity +1412.5720 Mathematical Software +1412.5724 Instrumentation and Methods for Astrophysics +1412.5727 Combinatorics +1412.5728 Materials Science +1412.5730 Accelerator Physics +1412.5733 Combinatorics +1412.5734 Number Theory +1412.5735 Lattice +1412.5736 Probability +1412.5737 Logic +1412.5738 Geophysics +1412.5743 Astrophysics of Galaxies +1412.5745 Combinatorics +1412.5747 Analysis of PDEs +1412.5748 Complex Variables +1412.5750 Superconductivity +1412.5752 Probability +1412.5753 Astrophysics of Galaxies +1412.5755 Numerical Analysis +1412.5760 Astrophysics of Galaxies +1412.5764 Computer Vision and Pattern Recognition +1412.5767 Optics +1412.5769 Computer Vision and Pattern Recognition +1412.5771 Astrophysics of Galaxies +1412.5774 +1412.5775 Lattice +1412.5779 Algebraic Geometry +1412.5786 Analysis of PDEs +1412.5787 Computer Vision and Pattern Recognition +1412.5788 Soft Condensed Matter +1412.5789 Analysis of PDEs +1412.5790 Atomic Physics +1412.5791 Experiment +1412.5792 Analysis of PDEs +1412.5793 Astrophysics of Galaxies +1412.5794 Phenomenology +1412.5796 Computer Vision and Pattern Recognition +1412.5800 Astrophysics of Galaxies +1412.5801 Cosmology and Nongalactic Astrophysics +1412.5802 Computer Vision and Pattern Recognition +1412.5803 +1412.5806 Soft Condensed Matter +1412.5810 Astrophysics of Galaxies +1412.5824 Geometric Topology +1412.5826 Theory +1412.5827 Astrophysics of Galaxies +1412.5828 Metric Geometry +1412.5832 Materials Science +1412.5833 Solar and Stellar Astrophysics +1412.5837 K-Theory and Homology +1412.5839 +1412.5841 Optics +1412.5843 Methodology +1412.5845 Optimization and Control +1412.5846 Astrophysics of Galaxies +1412.5847 Distributed, Parallel, and Cluster Computing +1412.5848 Applications +1412.5850 Analysis of PDEs +1412.5855 Functional Analysis +1412.5859 Atmospheric and Oceanic Physics +1412.5861 Optics +1412.5862 Neural and Evolutionary Computing +1412.5868 Cosmology and Nongalactic Astrophysics +1412.5871 Optics +1412.5873 Symbolic Computation +1412.5884 Astrophysics of Galaxies +1412.5886 Differential Geometry +1412.5887 +1412.5888 Differential Geometry +1412.5889 Discrete Mathematics +1412.5890 Probability +1412.5893 Computational Complexity +1412.5894 Phenomenology +1412.5897 Geometric Topology +1412.5900 Dynamical Systems +1412.5901 Geometric Topology +1412.5902 Learning +1412.5906 Experiment +1412.5907 Quantum Algebra +1412.5910 Databases +1412.5911 +1412.5912 Commutative Algebra +1412.5913 Analysis of PDEs +1412.5914 Instrumentation and Methods for Astrophysics +1412.5917 Number Theory +1412.5919 Experiment +1412.5922 Theory +1412.5923 Rings and Algebras +1412.5924 Probability +1412.5926 Spectral Theory +1412.5932 Data Structures and Algorithms +1412.5937 Cryptography and Security +1412.5938 High Energy Astrophysical Phenomena +1412.5940 Cosmology and Nongalactic Astrophysics +1412.5947 Number Theory +1412.5949 Learning +1412.5950 +1412.5956 Number Theory +1412.5958 Functional Analysis +1412.5959 Theory +1412.5960 Theory +1412.5961 Commutative Algebra +1412.5962 Spectral Theory +1412.5967 Machine Learning +1412.5968 Machine Learning +1412.5969 Functional Analysis +1412.5971 Instrumentation and Methods for Astrophysics +1412.5972 Materials Science +1412.5980 Artificial Intelligence +1412.5984 Artificial Intelligence +1412.5989 Computational Physics +1412.5990 Instrumentation and Methods for Astrophysics +1412.5991 Theory +1412.5998 Popular Physics +1412.5999 Chemical Physics +1412.6003 Medical Physics +1412.6004 General Physics +1412.6005 General Physics +1412.6006 Instrumentation and Methods for Astrophysics +1412.6007 Distributed, Parallel, and Cluster Computing +1412.6008 General Physics +1412.6009 General Physics +1412.6011 Cryptography and Security +1412.6012 Computer Vision and Pattern Recognition +1412.6016 Cryptography and Security +1412.6017 Cryptography and Security +1412.6018 Computer Vision and Pattern Recognition +1412.6019 Algebraic Geometry +1412.6025 Phenomenology +1412.6026 Phenomenology +1412.6027 Materials Science +1412.6029 Robotics +1412.6040 Astrophysics of Galaxies +1412.6046 +1412.6048 Combinatorics +1412.6053 Combinatorics +1412.6058 Information Theory +1412.6060 Artificial Intelligence +1412.6061 Computer Vision and Pattern Recognition +1412.6063 Computational Engineering, Finance, and Science +1412.6064 Computational Engineering, Finance, and Science +1412.6067 Cryptography and Security +1412.6068 Quantitative Methods +1412.6069 Digital Libraries +1412.6075 Discrete Mathematics +1412.6076 Instrumentation and Methods for Astrophysics +1412.6078 Computer Science and Game Theory +1412.6079 Human-Computer Interaction +1412.6080 Symbolic Computation +1412.6082 Information Retrieval +1412.6083 Information Theory +1412.6086 Theory +1412.6088 Strongly Correlated Electrons +cond-mat/0501640 Statistical Mechanics +cond-mat/0608049 Statistical Mechanics +math/0511401 Classical Analysis and ODEs +0911.2528 Statistical Mechanics +0912.3709 Pattern Formation and Solitons +1006.3820 Quantum Gases +1008.3163 Combinatorics +1008.4651 Physics and Society +1108.3539 Number Theory +1110.4449 Differential Geometry +1112.5585 Statistical Mechanics +1201.0425 Combinatorics +1203.2082 +1204.2781 Algebraic Topology +1204.5657 Differential Geometry +1205.4472 +1206.2377 Materials Science +1208.0919 Number Theory +1208.2191 Differential Geometry +1209.1913 +1210.1482 Statistical Mechanics +1211.2226 +1212.3731 Symplectic Geometry +1212.5186 Symplectic Geometry +1301.4378 Analysis of PDEs +1301.5899 Populations and Evolution +1301.5999 Differential Geometry +1303.1337 Complex Variables +1303.1968 Strongly Correlated Electrons +1305.4349 +1305.5971 Differential Geometry +1305.6906 Atmospheric and Oceanic Physics +1307.0564 Number Theory +1307.0630 Combinatorics +1307.1114 +1307.5504 Combinatorics +1307.5942 Optimization and Control +1307.7006 Chaotic Dynamics +1308.1266 Representation Theory +1308.1877 Theory +1309.2932 Cosmology and Nongalactic Astrophysics +1309.6610 Distributed, Parallel, and Cluster Computing +1309.7705 Combinatorics +1310.2444 Optics +1310.3609 Data Structures and Algorithms +1310.4664 Distributed, Parallel, and Cluster Computing +1310.5867 Cosmology and Nongalactic Astrophysics +1311.0656 Computation +1311.3718 Optics +1311.4331 Number Theory +1311.4902 Soft Condensed Matter +1311.6395 Fluid Dynamics +1311.7331 +1312.1350 Theory +1312.2968 Statistics Theory +1312.4577 Mesoscale and Nanoscale Physics +1312.6504 Cosmology and Nongalactic Astrophysics +1312.6620 Number Theory +1401.0597 Differential Geometry +1401.1948 Materials Science +1401.2938 +1401.5257 Theory +1401.5722 +1401.7357 Phenomenology +1401.7854 Group Theory +1402.0211 Combinatorics +1402.4821 Instrumentation and Methods for Astrophysics +1402.4838 Exactly Solvable and Integrable Systems +1402.6531 Number Theory +1402.6851 Fluid Dynamics +1403.0141 Quantum Gases +1403.0775 Number Theory +1403.4064 Programming Languages +1403.4069 Portfolio Management +1403.4123 Differential Geometry +1403.4402 Computation +1403.4504 Lattice +1403.6323 Probability +1403.7409 Theory +1404.0754 Mesoscale and Nanoscale Physics +1404.1539 +1404.3864 +1404.4030 Materials Science +1404.4035 Materials Science +1404.6004 Lattice +1404.7609 Mesoscale and Nanoscale Physics +1405.0574 +1405.1242 Soft Condensed Matter +1405.1857 Systems and Control +1405.3985 Cosmology and Nongalactic Astrophysics +1405.4130 Group Theory +1405.4341 Social and Information Networks +1405.5975 Data Structures and Algorithms +1405.6837 +1405.7551 Instrumentation and Methods for Astrophysics +1405.7613 Differential Geometry +1405.7661 Materials Science +1406.0292 Mathematical Software +1406.0586 Fluid Dynamics +1406.1092 Mesoscale and Nanoscale Physics +1406.1378 Fluid Dynamics +1406.2640 Materials Science +1406.2688 +1406.3216 Social and Information Networks +1406.3304 Soft Condensed Matter +1406.4700 Geometric Topology +1406.5776 Statistical Mechanics +1406.5890 Phenomenology +1406.6351 Theory +1406.6811 Computer Vision and Pattern Recognition +1406.6818 Computer Vision and Pattern Recognition +1406.7451 Geometric Topology +1406.7697 Soft Condensed Matter +1407.0901 Information Theory +1407.1291 Computational Engineering, Finance, and Science +1407.1486 Numerical Analysis +1407.1622 Strongly Correlated Electrons +1407.2627 General Physics +1407.3021 +1407.3602 Analysis of PDEs +1407.3731 Quantum Gases +1407.3957 Computer Science and Game Theory +1407.4081 Phenomenology +1407.5994 Astrophysics of Galaxies +1407.6690 Optimization and Control +1407.6914 Phenomenology +1407.7131 Human-Computer Interaction +1407.7286 Mesoscale and Nanoscale Physics +1407.7554 Materials Science +1407.7773 Strongly Correlated Electrons +1408.0461 Algebraic Geometry +1408.0496 Mesoscale and Nanoscale Physics +1408.2650 Phenomenology +1408.3944 Learning +1408.5335 Pattern Formation and Solitons +1408.5364 Phenomenology +1408.6334 Computational Complexity +1408.6487 Formal Languages and Automata Theory +1408.6663 Complex Variables +1409.0297 Numerical Analysis +1409.0876 Networking and Internet Architecture +1409.1165 Instrumentation and Detectors +1409.1195 Representation Theory +1409.1294 Mesoscale and Nanoscale Physics +1409.2140 Numerical Analysis +1409.3014 Optics +1409.3336 Information Theory +1409.3814 Geometric Topology +1409.4093 Theory +1409.4177 Analysis of PDEs +1409.4196 Chemical Physics +1409.4215 Experiment +1409.4458 +1409.4675 +1409.4676 Analysis of PDEs +1409.4733 Mesoscale and Nanoscale Physics +1409.4755 Mesoscale and Nanoscale Physics +1409.4757 Learning +1409.4760 Information Theory +1409.4761 Information Theory +1409.4762 Information Theory +1409.4782 Algebraic Geometry +1409.4786 Analysis of PDEs +1409.4790 Representation Theory +1409.4795 Phenomenology +1409.4796 Classical Physics +1409.4799 Metric Geometry +1409.4800 +1409.4803 +1409.4805 Instrumentation and Methods for Astrophysics +1409.4806 Optimization and Control +1409.4808 Dynamical Systems +1409.4810 Dynamical Systems +1409.4814 Artificial Intelligence +1409.4815 Applications +1409.4824 Computational Engineering, Finance, and Science +1409.4827 Soft Condensed Matter +1409.4828 Data Structures and Algorithms +1409.4830 Atmospheric and Oceanic Physics +1409.4834 Materials Science +1409.4835 Learning +1409.4837 Applications +1409.4842 Computer Vision and Pattern Recognition +1409.4845 Cryptography and Security +1409.4860 Instrumentation and Detectors +1409.4863 Multiagent Systems +1409.4864 Probability +1409.4866 Instrumentation and Detectors +1409.4868 Algebraic Geometry +1409.4869 Solar and Stellar Astrophysics +1409.4872 Combinatorics +1409.4873 Instrumentation and Detectors +1409.4875 Quantum Gases +1409.4876 Superconductivity +1409.4877 Exactly Solvable and Integrable Systems +1409.4881 +1409.4883 Multimedia +1409.4887 Phenomenology +1409.4888 Analysis of PDEs +1409.4889 Analysis of PDEs +1409.4890 General Finance +1409.4891 Analysis of PDEs +1409.4894 Statistical Finance +1409.4896 Applications +1409.4898 Digital Libraries +1409.4901 Classical Analysis and ODEs +1409.4910 Experiment +1409.4915 Phenomenology +1409.4917 Dynamical Systems +1409.4919 Software Engineering +1409.4920 Information Theory +1409.4928 Learning +1409.4931 Optics +1409.4932 Earth and Planetary Astrophysics +1409.4934 Classical Analysis and ODEs +1409.4935 Data Structures and Algorithms +1409.4936 Learning +1409.4937 Optimization and Control +1409.4938 Combinatorics +1409.4940 Logic +1409.4946 Cosmology and Nongalactic Astrophysics +1409.4955 Probability +1409.4956 Strongly Correlated Electrons +1409.4958 Robotics +1409.4962 Chemical Physics +1409.4965 Materials Science +1409.4966 Combinatorics +1409.4969 Experiment +1409.4971 Analysis of PDEs +1409.4972 Robotics +1409.4973 Chemical Physics +1409.4977 Data Structures and Algorithms +1409.4978 Populations and Evolution +1409.4983 Representation Theory +1409.4985 Algebraic Geometry +1409.4986 +1409.4989 Probability +1409.4990 Functional Analysis +1409.4992 Chemical Physics +1409.4995 Computer Vision and Pattern Recognition +1409.4996 Number Theory +1409.5002 Instrumentation and Detectors +1409.5006 Combinatorics +1409.5009 Machine Learning +1409.5010 Number Theory +1409.5013 Exactly Solvable and Integrable Systems +1409.5014 +1409.5015 Information Theory +1409.5020 Medical Physics +1409.5023 Complex Variables +1409.5024 Graphics +1409.5025 Materials Science +1409.5027 Group Theory +1409.5031 Soft Condensed Matter +1409.5034 Social and Information Networks +1409.5040 Social and Information Networks +1409.5041 +1409.5044 Group Theory +1409.5045 Quantitative Methods +1409.5053 Algebraic Geometry +1409.5054 Networking and Internet Architecture +1409.5055 Analysis of PDEs +1409.5056 Dynamical Systems +1409.5058 Numerical Analysis +1409.5062 Quantitative Methods +1409.5064 Superconductivity +1409.5079 Learning +1409.5083 High Energy Astrophysical Phenomena +1409.5084 Strongly Correlated Electrons +1409.5085 Statistics Theory +1409.5086 +1409.5089 Optimization and Control +1409.5090 Plasma Physics +1409.5095 Mesoscale and Nanoscale Physics +1409.5096 Materials Science +1409.5097 Materials Science +1409.5099 Information Theory +1409.5100 +1409.5102 Group Theory +1409.5104 Instrumentation and Detectors +1409.5105 Differential Geometry +1409.5110 Symplectic Geometry +1409.5112 Mesoscale and Nanoscale Physics +1409.5113 Commutative Algebra +1409.5116 Combinatorics +math/0205303 Combinatorics +math/0207147 Combinatorics +math/0207197 Combinatorics +math/0608790 Category Theory +math/0702613 Number Theory +0705.1842 Phenomenology +0807.4971 Phenomenology +1003.4824 General Physics +1006.5707 Differential Geometry +1007.5005 Mesoscale and Nanoscale Physics +1007.5368 Logic +1008.5007 Differential Geometry +1103.1244 Dynamical Systems +1106.4540 Algebraic Topology +1110.1456 Classical Analysis and ODEs +1111.2129 Mesoscale and Nanoscale Physics +1111.6207 Statistical Mechanics +1112.2029 High Energy Astrophysical Phenomena +1205.3655 Computational Complexity +1205.6365 General Mathematics +1206.4029 +1208.6327 Cosmology and Nongalactic Astrophysics +1208.6416 Logic in Computer Science +1209.4340 Statistics Theory +1212.1441 Geometric Topology +1212.4136 Cosmology and Nongalactic Astrophysics +1301.1132 +1301.7451 Phenomenology +1303.2541 Pattern Formation and Solitons +1303.4829 +1304.0928 +1304.3595 Probability +1304.4608 +1305.2661 Computational Geometry +1305.2970 Optimization and Control +1305.3216 Numerical Analysis +1305.3894 +1305.4412 Probability +1305.4843 Mesoscale and Nanoscale Physics +1306.4720 Statistical Mechanics +1306.5314 +1306.5989 History and Overview +1306.6431 +1307.0686 Phenomenology +1307.1941 Classical Analysis and ODEs +1307.2407 Probability +1307.4850 Operator Algebras +1308.3379 Numerical Analysis +1309.1576 Classical Analysis and ODEs +1309.3806 Group Theory +1309.7216 Materials Science +1310.0410 +1310.4359 Dynamical Systems +1310.8154 Differential Geometry +1311.0349 Mesoscale and Nanoscale Physics +1312.1655 Symbolic Computation +1312.2966 +1312.3656 +1312.4561 Theory +1312.5206 Phenomenology +1312.6340 Combinatorics +1312.6553 Strongly Correlated Electrons +1312.7368 Algebraic Topology +1401.0638 Numerical Analysis +1401.5807 Phenomenology +1401.6165 Probability +1401.6222 Superconductivity +1401.6519 General Topology +1401.7305 Optics +1401.7332 High Energy Astrophysical Phenomena +1401.8200 Physics and Society +1402.0418 Phenomenology +1402.0515 Phenomenology +1402.1204 Strongly Correlated Electrons +1402.2398 Superconductivity +1402.2558 Probability +1402.4126 Phenomenology +1402.5742 Databases +1402.5993 Cosmology and Nongalactic Astrophysics +1402.7307 +1403.0810 Phenomenology +1403.0896 +1403.1077 Phenomenology +1403.1574 Statistical Finance +1403.3074 +1403.4047 Information Theory +1403.4243 Cosmology and Nongalactic Astrophysics +1403.4815 Strongly Correlated Electrons +1403.6035 Theory +1403.7056 +1403.7245 +1404.2529 Phenomenology +1404.4054 Quantum Gases +1404.4449 Logic +1404.4662 Probability +1404.5955 Phenomenology +1404.6623 Plasma Physics +1404.7729 Quantitative Methods +1405.0204 +1405.0417 Networking and Internet Architecture +1405.0540 +1405.0613 Solar and Stellar Astrophysics +1405.1850 Analysis of PDEs +1405.1893 Computation and Language +1405.2702 Computation and Language +1405.4075 Probability +1405.4097 Computation and Language +1405.4263 Phenomenology +1405.5745 +1405.5796 General Physics +1405.6977 Phenomenology +1406.0360 General Mathematics +1406.3261 Earth and Planetary Astrophysics +1406.4215 Cosmology and Nongalactic Astrophysics +1406.4412 Biological Physics +1406.5899 Cosmology and Nongalactic Astrophysics +1406.6436 High Energy Astrophysical Phenomena +1406.6732 Quantitative Methods +1406.7488 Phenomenology +1406.7783 High Energy Astrophysical Phenomena +1407.0755 Astrophysics of Galaxies +1407.1826 Number Theory +1407.2122 Phenomenology +1407.3398 Sound +1407.3433 Computational Complexity +1407.3876 Number Theory +1407.3915 Physics and Society +1407.3925 Number Theory +1407.4029 Analysis of PDEs +1407.4223 Algebraic Geometry +1407.4450 Computers and Society +1407.4451 Physics and Society +1407.4453 Phenomenology +1407.4465 Earth and Planetary Astrophysics +1407.4478 +1407.4483 General Physics +1407.4485 Geometric Topology +1407.4490 Artificial Intelligence +1407.4491 Information Theory +1407.4494 Dynamical Systems +1407.4503 Instrumentation and Detectors +1407.4505 Analysis of PDEs +1407.4506 Analysis of PDEs +1407.4509 +1407.4510 Chemical Physics +1407.4513 Differential Geometry +1407.4514 Probability +1407.4518 Information Theory +1407.4519 Information Theory +1407.4520 Combinatorics +1407.4523 Information Theory +1407.4526 High Energy Astrophysical Phenomena +1407.4528 Group Theory +1407.4539 Probability +1407.4545 General Mathematics +1407.4553 Complex Variables +1407.4554 Complex Variables +1407.4555 Differential Geometry +1407.4558 Numerical Analysis +1407.4560 Dynamical Systems +1407.4565 Chemical Physics +1407.4567 Number Theory +1407.4568 Probability +1407.4570 Probability +1407.4571 Soft Condensed Matter +1407.4577 Instrumentation and Methods for Astrophysics +1407.4578 Methodology +1407.4585 Strongly Correlated Electrons +1407.4588 Phenomenology +1407.4591 Accelerator Physics +1407.4592 Geometric Topology +1407.4593 Discrete Mathematics +1407.4597 Mesoscale and Nanoscale Physics +1407.4600 Combinatorics +1407.4607 Software Engineering +1407.4616 Analysis of PDEs +1407.4618 +1407.4619 Solar and Stellar Astrophysics +1407.4626 Computational Complexity +1407.4631 Group Theory +1407.4633 +1407.4636 Optimization and Control +1407.4641 Differential Geometry +1407.4647 Logic +1407.4649 +1407.4650 Computational Engineering, Finance, and Science +1407.4657 Materials Science +1407.4661 Analysis of PDEs +1407.4666 Probability +1407.4667 Fluid Dynamics +1407.4668 Learning +1407.4670 Materials Science +1407.4671 +1407.4679 Classical Analysis and ODEs +1407.4683 Materials Science +1407.4685 Experiment +1407.4687 Solar and Stellar Astrophysics +1407.4689 General Physics +1407.4690 +1407.4692 Logic in Computer Science +1407.4696 +1407.4700 Experiment +1407.4701 Solar and Stellar Astrophysics +1407.4702 Data Analysis, Statistics and Probability +1407.4703 Methodology +1407.4704 High Energy Astrophysical Phenomena +1407.4705 Human-Computer Interaction +1407.4706 Other Quantitative Biology +1407.4708 Optics +1407.4709 Artificial Intelligence +1407.4712 Group Theory +1407.4718 Physics and Society +1407.4721 Theory +1407.4723 Computation and Language +1407.4728 +1407.4735 Multimedia +1407.4739 Computer Vision and Pattern Recognition +1407.4740 Mesoscale and Nanoscale Physics +1407.4744 Probability +1407.4746 +1407.4749 Phenomenology +1407.4751 Number Theory +1407.4755 Computational Complexity +1407.4756 Analysis of PDEs +1407.4760 Optimization and Control +1407.4765 Distributed, Parallel, and Cluster Computing +1407.4771 Group Theory +1407.4775 +1407.4779 Phenomenology +1407.4781 Mesoscale and Nanoscale Physics +1407.4784 Combinatorics +1407.4789 Geometric Topology +1407.4790 Statistical Mechanics +0812.4262 +0903.2831 Combinatorics +0910.0901 +1105.3652 Differential Geometry +1106.0413 Strongly Correlated Electrons +1111.1055 Metric Geometry +1201.0340 Category Theory +1202.6024 Statistical Mechanics +1207.6407 Numerical Analysis +1208.1176 Cryptography and Security +1208.5658 Probability +1301.6547 Probability +1303.6345 Differential Geometry +1304.0696 Complex Variables +1304.1490 +1304.2520 Algebraic Geometry +1304.6308 Differential Geometry +1304.7837 Quantum Algebra +1305.2377 Symplectic Geometry +1305.3592 +1305.5753 Computation and Language +1305.6205 Differential Geometry +1307.2123 Numerical Analysis +1307.7940 Metric Geometry +1308.2422 Dynamical Systems +1308.4475 Strongly Correlated Electrons +1309.0381 Number Theory +1309.7014 Algebraic Geometry +1310.0989 Combinatorics +1310.3662 Instrumentation and Detectors +1310.5396 Combinatorics +1311.1675 Analysis of PDEs +1312.4121 Symplectic Geometry +1312.4554 Analysis of PDEs +1312.4855 Quantum Algebra +1312.7614 Statistics Theory +1401.1490 Genomics +1401.2863 Group Theory +1401.5909 History and Overview +1401.6784 Strongly Correlated Electrons +1401.7398 Astrophysics of Galaxies +1402.4701 Strongly Correlated Electrons +1402.5235 Materials Science +1402.6444 Pricing of Securities +1403.0057 Social and Information Networks +1403.1635 Combinatorics +1403.2260 Solar and Stellar Astrophysics +1403.2943 Numerical Analysis +1403.4570 Statistical Mechanics +1403.5642 General Mathematics +1403.7218 +1403.7250 +1403.7672 Methodology +1404.6347 Cosmology and Nongalactic Astrophysics +1404.6594 Phenomenology +1404.6823 Information Theory +1404.7840 Quantum Gases +1405.0538 Social and Information Networks +1405.2694 +1405.2823 Statistical Mechanics +1405.4593 Strongly Correlated Electrons +1405.4975 Instrumentation and Detectors +1405.5361 +1405.6776 +1405.7752 Learning +1406.0362 Mesoscale and Nanoscale Physics +1406.0835 Materials Science +1406.1348 Theory +1406.2672 +1406.2979 Experiment +1406.5016 Statistical Mechanics +1406.5561 Phenomenology +1406.5811 Phenomenology +1406.5846 +1406.6605 Logic in Computer Science +1407.0201 Statistical Mechanics +1407.3620 Classical Analysis and ODEs +1407.3643 Experiment +1407.3813 Mesoscale and Nanoscale Physics +1407.4925 Strongly Correlated Electrons +1407.5264 +1407.6601 Instrumentation and Detectors +1407.6606 Statistical Mechanics +1408.3623 Superconductivity +1408.3812 +1408.5182 Statistical Mechanics +1408.5189 Optimization and Control +1408.6777 Neurons and Cognition +1409.2460 Statistical Mechanics +1409.4265 Phenomenology +1409.6836 Mesoscale and Nanoscale Physics +1409.7184 Instrumentation and Detectors +1409.7995 Strongly Correlated Electrons +1410.0397 High Energy Astrophysical Phenomena +1410.1671 Fluid Dynamics +1410.1894 +1410.3887 Probability +1410.4415 Mesoscale and Nanoscale Physics +1410.4510 Machine Learning +1410.5075 Category Theory +1410.6312 +1410.6395 Category Theory +1410.7126 +1410.8708 Adaptation and Self-Organizing Systems +1411.1037 Representation Theory +1411.1588 History and Overview +1411.4936 Astrophysics of Galaxies +1411.5063 Algebraic Geometry +1411.5127 Data Structures and Algorithms +1411.5289 Programming Languages +1411.5428 Learning +1411.5608 General Physics +1411.5674 General Physics +1411.5677 Dynamical Systems +1411.5679 Formal Languages and Automata Theory +1411.5695 Biological Physics +1411.5697 Phenomenology +1411.5700 Materials Science +1411.5701 Differential Geometry +1411.5707 Analysis of PDEs +1411.5720 Machine Learning +1411.5722 Symplectic Geometry +1411.5724 Algebraic Geometry +1411.5725 Methodology +1411.5728 Lattice +1411.5729 +1411.5731 Computer Vision and Pattern Recognition +1411.5732 Computation and Language +1411.5740 Geometric Topology +1411.5743 Analysis of PDEs +1411.5745 Theory +1411.5748 Probability +1411.5751 Combinatorics +1411.5754 Applications +1411.5756 Combinatorics +1411.5758 Exactly Solvable and Integrable Systems +1411.5761 Group Theory +1411.5764 Analysis of PDEs +1411.5765 Computational Complexity +1411.5769 Optics +1411.5774 Applications +1411.5775 Applications +1411.5780 Applications +1411.5782 Information Theory +1411.5784 Information Theory +1411.5787 Methodology +1411.5788 Category Theory +1411.5789 Solar and Stellar Astrophysics +1411.5790 Analysis of PDEs +1411.5795 Computer Science and Game Theory +1411.5796 Computation and Language +1411.5798 +1411.5800 Phenomenology +1411.5801 Geometric Topology +1411.5805 Mesoscale and Nanoscale Physics +1411.5807 +1411.5808 Analysis of PDEs +1411.5809 Materials Science +1411.5813 Strongly Correlated Electrons +1411.5815 Lattice +1411.5816 Materials Science +1411.5819 Metric Geometry +1411.5823 Superconductivity +1411.5827 +1411.5828 Lattice +1411.5831 Algebraic Geometry +1411.5833 Numerical Analysis +1411.5841 Superconductivity +1411.5849 Data Structures and Algorithms +1411.5852 Probability +1411.5854 Astrophysics of Galaxies +1411.5855 Mesoscale and Nanoscale Physics +1411.5857 Pattern Formation and Solitons +1411.5858 Astrophysics of Galaxies +1411.5859 +1411.5860 Cosmology and Nongalactic Astrophysics +1411.5861 Information Theory +1411.5862 +1411.5870 Symplectic Geometry +1411.5873 Optimization and Control +1411.5876 Methodology +1411.5878 Computer Vision and Pattern Recognition +1411.5883 Statistics Theory +1411.5884 Complex Variables +1411.5885 Pattern Formation and Solitons +1411.5886 +1411.5888 Statistics Theory +1411.5890 Genomics +1411.5891 Operator Algebras +1411.5892 Optimization and Control +1411.5894 Functional Analysis +1411.5898 Complex Variables +1411.5900 Dynamical Systems +1411.5904 Algebraic Geometry +1411.5909 Accelerator Physics +1411.5911 Theory +1411.5914 Materials Science +1411.5918 Experiment +1411.5920 Statistical Mechanics +1411.5922 Functional Analysis +1411.5923 Systems and Control +1411.5929 Representation Theory +1411.5933 Plasma Physics +1411.5935 Computer Vision and Pattern Recognition +1411.5937 Instrumentation and Detectors +1411.5939 Experiment +1411.5943 Instrumentation and Methods for Astrophysics +1411.5944 Medical Physics +1411.5945 Physics and Society +1411.5947 Instrumentation and Detectors +1411.5948 Biological Physics +1411.5949 +1411.5951 Computational Complexity +1411.5954 Biomolecules +1411.5957 +1411.5959 Algebraic Geometry +1411.5963 Mesoscale and Nanoscale Physics +1411.5967 Algebraic Geometry +1411.5976 Group Theory +1411.5977 Machine Learning +1411.5978 +1411.5981 +1411.5982 Probability +1411.5983 Mesoscale and Nanoscale Physics +1411.5985 Geometric Topology +1411.5988 Social and Information Networks +1411.5989 Chemical Physics +1411.5993 Graphics +1411.5995 Social and Information Networks +1411.5998 +1411.5999 Instrumentation and Methods for Astrophysics +1411.6003 Astrophysics of Galaxies +astro-ph/0312357 +math/0403382 Algebraic Geometry +0712.1291 +0905.0488 Algebraic Geometry +0908.0116 Category Theory +0908.1963 Algebraic Geometry +1007.0670 Astrophysics of Galaxies +1011.1612 +1011.2189 Algebraic Geometry +1011.2742 Algebraic Geometry +1102.3756 Statistical Mechanics +1110.6455 Probability +1201.6594 Disordered Systems and Neural Networks +1202.0731 Probability +1203.1942 Cosmology and Nongalactic Astrophysics +1211.3260 Phenomenology +1212.3535 Quantum Gases +1212.6027 Probability +1301.1871 +1301.5067 Cosmology and Nongalactic Astrophysics +1302.1188 Mesoscale and Nanoscale Physics +1302.3534 Fluid Dynamics +1302.4445 High Energy Astrophysical Phenomena +1302.6895 Differential Geometry +1303.1340 Algebraic Geometry +1304.1800 +1304.6049 Algebraic Topology +1305.1663 Cosmology and Nongalactic Astrophysics +1305.2005 +1305.7062 Cosmology and Nongalactic Astrophysics +1306.1796 Quantum Gases +1307.0272 +1308.2379 Algebraic Geometry +1308.4202 Classical Analysis and ODEs +1308.5120 Probability +1309.2457 +1309.3432 Functional Analysis +1309.4114 +1309.4807 Commutative Algebra +1309.5857 Materials Science +1309.6600 Materials Science +1310.6664 +1310.7095 Numerical Analysis +1310.8483 Strongly Correlated Electrons +1311.0133 +1311.1622 +1311.2731 Disordered Systems and Neural Networks +1311.4373 +1312.1111 Strongly Correlated Electrons +1312.1388 Statistical Mechanics +1312.1591 Statistics Theory +1312.4160 +1401.1180 Theory +1401.1961 Quantum Gases +1401.3296 Cosmology and Nongalactic Astrophysics +1401.4475 Soft Condensed Matter +1402.1030 Strongly Correlated Electrons +1402.3710 Functional Analysis +1402.4934 Strongly Correlated Electrons +1402.6860 Quantum Gases +1403.2676 +1403.4293 Probability +1403.6239 Mesoscale and Nanoscale Physics +1403.7015 Dynamical Systems +1403.7763 Statistical Mechanics +1403.7821 Rings and Algebras +1403.8046 Artificial Intelligence +1404.0644 Discrete Mathematics +1404.0682 Phenomenology +1404.4779 Mesoscale and Nanoscale Physics +1404.5311 Cosmology and Nongalactic Astrophysics +1404.5704 Physics and Society +1405.0527 Emerging Technologies +1405.1865 +1405.2469 Operator Algebras +1405.2779 Metric Geometry +1405.5247 High Energy Astrophysical Phenomena +1405.5301 Cosmology and Nongalactic Astrophysics +1405.5448 Soft Condensed Matter +1405.6809 Commutative Algebra +1405.7224 +1405.7399 Theory +1406.1208 Operator Algebras +1406.2914 Cell Behavior +1406.3279 Data Structures and Algorithms +1406.4154 Strongly Correlated Electrons +1406.6143 Optimization and Control +1406.6470 Networking and Internet Architecture +1407.0659 Cosmology and Nongalactic Astrophysics +1407.1568 +1407.1687 Computation and Language +1407.6884 +1407.7463 +1408.0546 Group Theory +1408.3430 Numerical Analysis +1408.4589 +1408.4629 Soft Condensed Matter +1409.0210 Social and Information Networks +1409.0630 Combinatorics +1409.0667 Optimization and Control +1409.1225 Cosmology and Nongalactic Astrophysics +1409.1502 Differential Geometry +1409.1553 Algebraic Topology +1409.1567 Cosmology and Nongalactic Astrophysics +1409.1591 Strongly Correlated Electrons +1409.1592 +1409.1597 Group Theory +1409.1606 Networking and Internet Architecture +1409.1607 Differential Geometry +1409.1609 Applications +1409.1614 Combinatorics +1409.1619 Discrete Mathematics +1409.1620 Statistics Theory +1409.1632 Differential Geometry +1409.1638 Phenomenology +1409.1639 Databases +1409.1642 Differential Geometry +1409.1645 Accelerator Physics +1409.1648 Analysis of PDEs +1409.1649 Analysis of PDEs +1409.1657 Information Theory +1409.1658 Quantum Gases +1409.1660 Computers and Society +1409.1672 Number Theory +1409.1673 Information Theory +1409.1676 Discrete Mathematics +1409.1683 Populations and Evolution +1409.1684 Exactly Solvable and Integrable Systems +1409.1686 Artificial Intelligence +1409.1692 Materials Science +1409.1693 Computers and Society +1409.1695 Systems and Control +1409.1699 Other Computer Science +1409.1700 Probability +1409.1701 Materials Science +1409.1705 +1409.1706 Computational Physics +1409.1711 Experiment +1409.1712 Classical Physics +1409.1713 Astrophysics of Galaxies +1409.1715 Neural and Evolutionary Computing +1409.1716 Cryptography and Security +1409.1717 +1409.1718 Group Theory +1409.1721 Solar and Stellar Astrophysics +1409.1722 Data Structures and Algorithms +1409.1723 Soft Condensed Matter +1409.1724 Soft Condensed Matter +1409.1727 Numerical Analysis +1409.1738 Soft Condensed Matter +1409.1739 Networking and Internet Architecture +1409.1740 Experiment +1409.1742 Physics Education +1409.1743 High Energy Astrophysical Phenomena +1409.1745 Probability +1409.1746 +1409.1749 Data Structures and Algorithms +1409.1752 Logic in Computer Science +1409.1755 History and Overview +1409.1759 Astrophysics of Galaxies +1409.1762 Commutative Algebra +1409.1763 Strongly Correlated Electrons +1409.1768 Optimization and Control +1409.1769 Analysis of PDEs +1409.1774 Soft Condensed Matter +1409.1777 Number Theory +1409.1779 Instrumentation and Detectors +1409.1788 Solar and Stellar Astrophysics +1409.1789 Computer Vision and Pattern Recognition +1409.1792 Experiment +1409.1798 Applications +1409.1804 Phenomenology +1409.1811 Materials Science +1409.1812 Differential Geometry +1409.1813 Dynamical Systems +1409.1816 Methodology +1409.1818 +1409.1821 Representation Theory +1409.1823 Instrumentation and Detectors +1409.1830 Mathematical Finance +1409.1833 Metric Geometry +1409.1840 Number Theory +1409.1841 Optics +1409.1842 Methodology +1409.1845 Soft Condensed Matter +1409.1846 Other Computer Science +1409.1849 Superconductivity +1409.1852 Statistical Mechanics +1409.1854 Astrophysics of Galaxies +1409.1860 Classical Analysis and ODEs +1409.1861 Superconductivity +1409.1865 Numerical Analysis +1409.1866 Superconductivity +1409.1870 Superconductivity +1409.1872 Algebraic Geometry +1409.1878 Geometric Topology +1409.1880 Earth and Planetary Astrophysics +1409.1881 Numerical Analysis +1409.1888 Algebraic Geometry +1409.1891 Instrumentation and Methods for Astrophysics +1409.1892 Neurons and Cognition +1409.1893 Solar and Stellar Astrophysics +1409.1895 Category Theory +1409.1899 Genomics +1409.1903 Experiment +1409.1904 Earth and Planetary Astrophysics +1409.1907 Experiment +1409.1909 Theory +1409.1911 Digital Libraries +1409.1912 Geometric Topology +1409.1914 Distributed, Parallel, and Cluster Computing +cond-mat/9808090 Disordered Systems and Neural Networks +cond-mat/9808121 Disordered Systems and Neural Networks +0810.5563 Functional Analysis +0811.4336 Number Theory +0902.2829 Theory +0908.2704 Solar and Stellar Astrophysics +0912.0045 Physics and Society +1010.2840 Soft Condensed Matter +1012.0931 Algebraic Geometry +1012.0933 Algebraic Geometry +1101.0352 Algebraic Geometry +1101.0356 Combinatorics +1102.0066 Differential Geometry +1107.0489 Algebraic Geometry +1108.4463 Differential Geometry +1108.5443 Differential Geometry +1110.1874 Differential Geometry +1112.5491 Statistical Mechanics +1204.5602 Physics and Society +1205.0991 Computational Complexity +1206.6371 Mesoscale and Nanoscale Physics +1207.0208 Algebraic Geometry +1207.2621 Phenomenology +1208.0794 Plasma Physics +1209.4473 Classical Analysis and ODEs +1210.6743 Number Theory +1211.1648 Commutative Algebra +1211.2169 Discrete Mathematics +1211.5266 Classical Analysis and ODEs +1212.0321 Theory +1212.0531 Representation Theory +1212.5554 Information Theory +1301.2517 +1301.5231 Differential Geometry +1301.6898 Discrete Mathematics +1302.0275 Computational Complexity +1302.3324 +1302.3462 Sound +1302.6160 Differential Geometry +1302.6995 Phenomenology +1303.4761 Software Engineering +1303.6803 Discrete Mathematics +1304.2581 Systems and Control +1305.4529 +1305.4631 +1306.1445 Algebraic Geometry +1306.2547 Learning +1306.2588 Optimization and Control +1306.5794 Statistical Mechanics +1306.6209 Mesoscale and Nanoscale Physics +1306.6732 +1306.6860 +1307.1838 Mesoscale and Nanoscale Physics +1307.2547 Probability +1307.8003 Number Theory +1308.3373 Strongly Correlated Electrons +1308.4517 Materials Science +1308.5156 +1309.2652 Probability +1309.7013 Theory +1309.7225 Combinatorics +1309.7272 Populations and Evolution +1310.3980 Probability +1310.4693 Mesoscale and Nanoscale Physics +1310.6264 Materials Science +1310.6321 Algebraic Topology +1311.1256 Soft Condensed Matter +1311.2833 High Energy Astrophysical Phenomena +1311.3284 Information Theory +1311.6252 +1311.7385 Learning +1312.3080 +1312.3155 Mesoscale and Nanoscale Physics +1312.3758 Mesoscale and Nanoscale Physics +1312.4403 Cosmology and Nongalactic Astrophysics +1312.4946 Cosmology and Nongalactic Astrophysics +1312.5318 Phenomenology +1312.6161 Representation Theory +1312.7012 Biomolecules +1312.7367 Theory +1401.1531 Mesoscale and Nanoscale Physics +1401.4493 +1401.5380 +1401.6438 Theory +1401.7616 Data Structures and Algorithms +1401.8028 Quantitative Methods +1401.8239 Numerical Analysis +1402.2201 Materials Science +1402.2324 Machine Learning +1402.2725 Superconductivity +1402.3414 +1402.5550 Complex Variables +1402.6653 Mesoscale and Nanoscale Physics +1402.6661 +1402.6924 Numerical Analysis +1403.0694 Mesoscale and Nanoscale Physics +1403.1312 Materials Science +1403.2933 Social and Information Networks +1403.3750 Numerical Analysis +1403.4031 Theory +1403.4682 Computer Vision and Pattern Recognition +1403.6251 Formal Languages and Automata Theory +1403.6674 Mesoscale and Nanoscale Physics +1403.7604 +1404.0051 Experiment +1404.0512 +1404.1621 Software Engineering +1404.2145 Plasma Physics +1404.3137 +1404.3613 Instrumentation and Detectors +1404.4164 Information Theory +1404.4960 Learning +1404.6229 Phenomenology +1404.7852 Theory +1405.0864 Chemical Physics +1405.2868 +1405.4892 Data Structures and Algorithms +1405.6014 Superconductivity +1405.6465 Phenomenology +1405.6470 Representation Theory +1405.6524 Sound +1406.0910 Strongly Correlated Electrons +1406.0911 Strongly Correlated Electrons +1406.1719 Computational Geometry +1406.2681 Representation Theory +1406.3337 Neural and Evolutionary Computing +1406.3339 Artificial Intelligence +1406.3807 Metric Geometry +1406.3869 Numerical Analysis +1406.5615 Combinatorics +1406.7436 Biological Physics +1407.0036 Chaotic Dynamics +1407.0818 Atomic Physics +1407.1196 Complex Variables +1407.1969 Analysis of PDEs +1407.2258 Materials Science +1407.2839 Superconductivity +1407.2890 Soft Condensed Matter +1407.2931 Medical Physics +1407.2932 Digital Libraries +1407.2933 Exactly Solvable and Integrable Systems +1407.2945 Statistical Mechanics +1407.2947 Number Theory +1407.2954 Computation +1407.2957 Number Theory +1407.2959 Group Theory +1407.2960 Statistical Mechanics +1407.2961 Computer Vision and Pattern Recognition +1407.2970 Commutative Algebra +1407.2976 Populations and Evolution +1407.2981 Information Theory +1407.2982 Optics +1407.2987 Computer Vision and Pattern Recognition +1407.2988 Logic in Computer Science +1407.2989 Computation and Language +1407.3000 Neural and Evolutionary Computing +1407.3004 Computer Science and Game Theory +1407.3005 +1407.3010 Methodology +1407.3013 Optics +1407.3018 Quantum Algebra +1407.3019 Classical Analysis and ODEs +1407.3020 Symplectic Geometry +1407.3026 Learning +1407.3031 Superconductivity +1407.3032 Optics +1407.3034 Optics +1407.3036 +1407.3038 Medical Physics +1407.3039 Probability +1407.3043 Numerical Analysis +1407.3060 Pattern Formation and Solitons +1407.3063 Software Engineering +1407.3065 Astrophysics of Galaxies +1407.3066 Number Theory +1407.3070 Analysis of PDEs +1407.3073 Number Theory +1407.3077 Neural and Evolutionary Computing +1407.3078 Phenomenology +1407.3082 Phenomenology +1407.3083 Instrumentation and Methods for Astrophysics +1407.3089 Methodology +1407.3090 Analysis of PDEs +1407.3091 Software Engineering +1407.3093 Group Theory +1407.3095 Statistical Mechanics +1407.3096 Metric Geometry +1407.3099 Number Theory +1407.3103 Classical Physics +1407.3106 Differential Geometry +1407.3110 +1407.3115 Phenomenology +1407.3117 Soft Condensed Matter +1407.3120 Soft Condensed Matter +1407.3122 Phenomenology +1407.3123 Computer Science and Game Theory +1407.3128 Logic in Computer Science +1407.3133 Phenomenology +1407.3135 High Energy Astrophysical Phenomena +1407.3142 Probability +1407.3145 Graphics +1407.3147 Tissues and Organs +1407.3149 Solar and Stellar Astrophysics +1407.3152 Methodology +1407.3154 Portfolio Management +1407.3164 Discrete Mathematics +1407.3165 Mesoscale and Nanoscale Physics +1407.3166 Group Theory +1407.3169 Rings and Algebras +1407.3172 General Physics +1407.3178 Information Theory +1407.3180 Physics and Society +1407.3183 Phenomenology +1407.3184 Phenomenology +1407.3185 Functional Analysis +1407.3188 Statistical Mechanics +1407.3190 Probability +1407.3191 Databases +1407.3192 Phenomenology +1407.3193 Computer Vision and Pattern Recognition +1407.3194 +1407.3197 Computational Physics +1407.3206 Methodology +1407.3207 Optics +1407.3208 Artificial Intelligence +1407.3209 Mesoscale and Nanoscale Physics +1407.3211 Artificial Intelligence +1407.3213 Formal Languages and Automata Theory +1407.3217 Probability +1407.3221 Probability +1407.3222 Materials Science +1407.3234 Information Theory +1407.3237 Algebraic Geometry +1407.3238 Number Theory +1407.3239 Data Structures and Algorithms +1407.3242 Data Structures and Algorithms +1407.3243 Physics Education +1407.3247 Computer Science and Game Theory +1407.3249 Neurons and Cognition +1407.3256 Optimization and Control +1407.3262 Mathematical Software +0804.3544 Materials Science +0903.3455 Group Theory +1006.0272 Statistics Theory +1112.2734 Lattice +1112.3119 Lattice +1112.6079 +1201.0497 Group Theory +1202.0782 Differential Geometry +1206.2726 +1206.4728 Number Theory +1209.0951 +1209.2275 Probability +1209.3492 +1210.4467 Classical Analysis and ODEs +1210.6969 Lattice +1211.1012 Cosmology and Nongalactic Astrophysics +1211.1390 Lattice +1211.4126 Lattice +1212.4021 Group Theory +1212.4700 Probability +1301.5633 Analysis of PDEs +1301.5701 Applications +1302.0296 Information Theory +1303.1110 Strongly Correlated Electrons +1303.3255 Algebraic Topology +1303.6020 Information Theory +1304.1888 Computer Science and Game Theory +1304.7229 Theory +1305.1752 Combinatorics +1305.2700 Combinatorics +1305.5394 Algebraic Geometry +1305.6522 Probability +1305.6834 Phenomenology +1306.0517 Methodology +1307.5310 Numerical Analysis +1307.6543 Lattice +1308.0159 Dynamical Systems +1308.0335 Theory +1308.4397 Algebraic Topology +1308.4632 Theory +1309.1198 Algebraic Geometry +1309.2897 Group Theory +1309.3189 Numerical Analysis +1309.3190 Number Theory +1309.4796 Methodology +1310.3146 Numerical Analysis +1310.3202 Information Theory +1310.3879 Number Theory +1310.7899 Molecular Networks +1311.0364 Numerical Analysis +1311.1383 Group Theory +1312.0278 Group Theory +1312.2176 Theory +1401.1246 Cosmology and Nongalactic Astrophysics +1401.1266 Logic +1401.4351 Plasma Physics +1401.6563 Soft Condensed Matter +1401.7400 Superconductivity +1402.2415 Hardware Architecture +1402.3279 +1402.5982 Phenomenology +1403.2607 Mesoscale and Nanoscale Physics +1403.3982 Strongly Correlated Electrons +1403.4116 Mesoscale and Nanoscale Physics +1403.4208 Other Condensed Matter +1404.3806 Applications +1404.4673 +1404.6496 +1405.1786 +1405.2132 Quantum Gases +1405.3685 Instrumentation and Detectors +1405.4346 Differential Geometry +1405.5060 Instrumentation and Detectors +1406.0322 High Energy Astrophysical Phenomena +1406.2163 Numerical Analysis +1406.2420 +1406.2971 Theory +1406.5802 Numerical Analysis +1406.7812 Materials Science +1407.2410 Experiment +1407.2927 Physics Education +1407.4357 Phenomenology +1407.4686 Theory +1407.7780 Networking and Internet Architecture +1408.0553 Learning +1408.0728 Phenomenology +1408.1694 High Energy Astrophysical Phenomena +1408.2228 Theory +1408.3509 Mesoscale and Nanoscale Physics +1408.4396 Experiment +1408.5541 Commutative Algebra +1408.5908 Superconductivity +1408.6457 Experiment +1409.2505 Soft Condensed Matter +1409.3402 Soft Condensed Matter +1409.3863 Combinatorics +1409.6504 High Energy Astrophysical Phenomena +1409.6948 Statistical Mechanics +1409.7010 Spectral Theory +1409.7205 Cosmology and Nongalactic Astrophysics +1409.8513 Mesoscale and Nanoscale Physics +1410.0516 +1410.0592 Metric Geometry +1410.1250 Instrumentation and Detectors +1410.1850 +1410.2570 Risk Management +1410.4350 Atomic Physics +1410.6070 Solar and Stellar Astrophysics +1410.6933 Instrumentation and Detectors +1410.7480 Materials Science +1410.8698 Lattice +1410.8726 Group Theory +1411.0620 +1411.1027 Operator Algebras +1411.1765 Phenomenology +1411.2578 Methodology +1411.4110 Computational Engineering, Finance, and Science +1411.6267 Instrumentation and Methods for Astrophysics +1411.7659 Mesoscale and Nanoscale Physics +1411.7876 Phenomenology +1411.7966 Materials Science +1412.0472 Biological Physics +1412.1263 Chemical Physics +1412.2130 Differential Geometry +1412.2883 Astrophysics of Galaxies +1412.2906 Subcellular Processes +1412.2925 Algebraic Geometry +1412.3155 Analysis of PDEs +1412.3688 Formal Languages and Automata Theory +1412.3922 Discrete Mathematics +1412.4028 Analysis of PDEs +1412.4835 Algebraic Topology +1412.4978 Functional Analysis +1412.4999 Networking and Internet Architecture +1412.5149 Data Structures and Algorithms +1412.5171 Phenomenology +1412.5178 Theory +1412.5182 Astrophysics of Galaxies +1412.5187 Astrophysics of Galaxies +1412.5193 Rings and Algebras +1412.5198 Algebraic Geometry +1412.5201 Rings and Algebras +1412.5202 Artificial Intelligence +1412.5203 Cosmology and Nongalactic Astrophysics +1412.5204 Cryptography and Security +1412.5206 +1412.5207 Computers and Society +1412.5210 Solar and Stellar Astrophysics +1412.5212 Computation and Language +1412.5215 Computational Geometry +1412.5218 Software Engineering +1412.5219 Rings and Algebras +1412.5224 Optics +1412.5226 Number Theory +1412.5231 Information Theory +1412.5233 Algebraic Geometry +1412.5234 Experiment +1412.5235 +1412.5236 Machine Learning +1412.5238 Social and Information Networks +1412.5242 Combinatorics +1412.5244 Learning +1412.5248 General Physics +1412.5249 Data Structures and Algorithms +1412.5259 Solar and Stellar Astrophysics +1412.5261 Chaotic Dynamics +1412.5263 Databases +1412.5264 Materials Science +1412.5265 Fluid Dynamics +1412.5266 Phenomenology +1412.5267 Information Theory +1412.5268 +1412.5269 Chemical Physics +1412.5270 Representation Theory +1412.5272 Learning +1412.5274 Classical Analysis and ODEs +1412.5275 Computer Vision and Pattern Recognition +1412.5277 Group Theory +1412.5285 +1412.5286 +1412.5290 Phenomenology +1412.5293 Materials Science +1412.5297 Combinatorics +1412.5299 Group Theory +1412.5301 Superconductivity +1412.5305 Optics +1412.5310 Information Theory +1412.5314 Atmospheric and Oceanic Physics +1412.5316 Mathematical Software +1412.5320 Complex Variables +1412.5321 Metric Geometry +1412.5322 Computer Vision and Pattern Recognition +1412.5325 Computer Vision and Pattern Recognition +1412.5328 Computer Vision and Pattern Recognition +1412.5334 Computer Vision and Pattern Recognition +1412.5338 Materials Science +1412.5340 Information Theory +1412.5344 Information Theory +1412.5345 Optics +1412.5346 Numerical Analysis +1412.5349 Astrophysics of Galaxies +1412.5351 Applications +1412.5354 Accelerator Physics +1412.5356 Networking and Internet Architecture +1412.5358 Group Theory +1412.5359 Analysis of PDEs +1412.5361 Statistical Mechanics +1412.5366 Networking and Internet Architecture +1412.5370 Instrumentation and Detectors +1412.5372 Networking and Internet Architecture +1412.5373 Accelerator Physics +1412.5376 Methodology +1412.5378 Phenomenology +1412.5379 Optimization and Control +1412.5381 Data Structures and Algorithms +1412.5384 Distributed, Parallel, and Cluster Computing +1412.5392 Phenomenology +1412.5398 Combinatorics +1412.5401 Computers and Society +1412.5404 Computation and Language +1412.5406 Probability +1412.5411 General Mathematics +1412.5413 General Mathematics +1412.5415 Number Theory +1412.5418 History and Overview +1412.5422 General Mathematics +1412.5428 Representation Theory +1412.5429 Optimization and Control +1412.5430 Metric Geometry +1412.5431 History and Overview +1412.5433 Metric Geometry +1412.5435 General Mathematics +1412.5438 Analysis of PDEs +1412.5439 Cell Behavior +1412.5441 +1412.5442 Operator Algebras +1412.5445 +1412.5446 Superconductivity +1412.5448 Information Retrieval +1412.5451 +1412.5455 Plasma Physics +1412.5456 Dynamical Systems +1412.5459 Multiagent Systems +1412.5460 +1412.5461 Materials Science +1412.5463 Analysis of PDEs +1412.5469 Group Theory +1412.5470 Phenomenology +1412.5476 Representation Theory +1412.5477 Computation and Language +1412.5479 Differential Geometry +1412.5480 Populations and Evolution +1412.5482 +1412.5483 Lattice +1412.5488 Computer Vision and Pattern Recognition +1412.5495 Strongly Correlated Electrons +1412.5496 Computational Engineering, Finance, and Science +1412.5501 Information Theory +1412.5505 Plasma Physics +1412.5506 Quantum Algebra +1412.5507 +1412.5510 Optics +1412.5513 Neural and Evolutionary Computing +1412.5517 Computational Engineering, Finance, and Science +1412.5524 Systems and Control +1412.5532 Materials Science +1412.5538 Hardware Architecture +1412.5544 Rings and Algebras +1412.5545 Dynamical Systems +1412.5546 Instrumentation and Methods for Astrophysics +1412.5551 Information Theory +1412.5552 +1412.5554 Astrophysics of Galaxies +1412.5560 Algebraic Geometry +1412.5561 +1412.5562 Tissues and Organs +1412.5568 Biological Physics +1412.5571 Networking and Internet Architecture +1412.5575 Earth and Planetary Astrophysics +1412.5580 History and Philosophy of Physics +cond-mat/0009063 Materials Science +hep-ph/0409254 Phenomenology +math/0306413 Algebraic Geometry +math/0610855 Optimization and Control +physics/0005009 General Physics +0803.0356 +0806.2915 Analysis of PDEs +0807.3135 +0811.2370 Group Theory +0901.4652 Algebraic Geometry +0904.4380 Analysis of PDEs +0905.1447 Cosmology and Nongalactic Astrophysics +0905.2131 Analysis of PDEs +0906.2565 Probability +0907.0351 +0908.4509 Other Condensed Matter +0909.0998 Probability +0909.5286 Analysis of PDEs +1002.0689 Physics and Society +1003.3070 General Mathematics +1009.5075 Trading and Market Microstructure +1101.6062 Theory +1105.5944 Analysis of PDEs +1107.5445 Analysis of PDEs +1108.1364 Group Theory +1110.4795 Probability +1111.1110 Algebraic Geometry +1111.2780 Differential Geometry +1112.4989 Theory +1201.4812 +1204.2923 Differential Geometry +1204.4272 +1205.2040 Combinatorics +1207.0522 Chaotic Dynamics +1208.5165 Functional Analysis +1209.0154 Differential Geometry +1209.2081 Representation Theory +1210.1321 +1210.6216 +1210.7923 Algebraic Topology +1211.1402 +1211.2763 Statistics Theory +1211.5303 Phenomenology +1212.6902 Chaotic Dynamics +1301.0028 Optimization and Control +1301.6970 +1302.3747 Representation Theory +1303.3515 +1303.3583 Quantum Gases +1303.4359 History and Overview +1303.6476 General Physics +1304.2061 Quantum Gases +1304.4186 Phenomenology +1305.0219 Networking and Internet Architecture +1305.4751 Phenomenology +1305.4861 Atomic Physics +1305.6512 Materials Science +1305.6846 Phenomenology +1306.0186 Machine Learning +1306.0608 +1306.1512 Superconductivity +1306.2715 +1306.3924 Statistical Mechanics +1306.4389 Algebraic Geometry +1306.6569 Dynamical Systems +1307.0732 +1307.3566 Phenomenology +1307.4613 Phenomenology +1307.6902 +1307.8000 Differential Geometry +1307.8365 Theory +1308.0264 Atomic Physics +1308.1048 Experiment +1308.2443 Artificial Intelligence +1308.2913 Phenomenology +1308.3220 Superconductivity +1308.3953 Mesoscale and Nanoscale Physics +1308.4279 +1308.4471 Strongly Correlated Electrons +1308.4573 Strongly Correlated Electrons +1308.4620 +1308.5720 Fluid Dynamics +1308.6810 Logic in Computer Science +1309.0528 Phenomenology +1309.1425 +1309.1524 Neural and Evolutionary Computing +1309.1848 +1309.3748 Theory +1309.5331 Mesoscale and Nanoscale Physics +1309.5444 Cosmology and Nongalactic Astrophysics +1309.7377 Phenomenology +1310.0461 Phenomenology +1310.0829 Strongly Correlated Electrons +1310.2645 Superconductivity +1310.3134 Soft Condensed Matter +1310.3844 Soft Condensed Matter +1310.4937 Materials Science +1310.5331 Materials Science +1310.5350 +1310.5971 Statistical Mechanics +1310.6329 Physics Education +1310.8315 Materials Science +1311.0220 +1311.0779 Differential Geometry +1311.1369 High Energy Astrophysical Phenomena +1311.2306 Astrophysics of Galaxies +1311.2470 +1311.3457 Theory +1311.5339 +1311.6911 Statistical Mechanics +1311.7176 Statistical Mechanics +1312.1055 Exactly Solvable and Integrable Systems +1312.2845 Mesoscale and Nanoscale Physics +1312.2901 Other Condensed Matter +1312.4043 Logic in Computer Science +1312.6616 Other Condensed Matter +1312.7127 Mesoscale and Nanoscale Physics +1312.7569 Number Theory +1312.7574 Phenomenology +1312.7648 Complex Variables +1401.1159 Combinatorics +1401.1524 +1401.1560 Learning +1401.1589 Analysis of PDEs +1401.1681 Statistical Mechanics +1401.1808 Biological Physics +1401.1832 Solar and Stellar Astrophysics +1401.1834 Complex Variables +1401.1838 +1401.1840 Experiment +1401.1841 +1401.1842 Machine Learning +1401.1843 Algebraic Geometry +1401.1847 Medical Physics +1401.1851 General Finance +1401.1855 Differential Geometry +1401.1856 Computational Finance +1401.1857 Functional Analysis +1401.1860 Functional Analysis +1401.1862 Group Theory +1401.1863 Dynamical Systems +1401.1864 Astrophysics of Galaxies +1401.1865 Combinatorics +1401.1870 Combinatorics +1401.1872 Databases +1401.1873 Classical Analysis and ODEs +1401.1874 Numerical Analysis +1401.1876 Systems and Control +1401.1883 Combinatorics +1401.1887 Information Theory +1401.1893 Number Theory +1401.1895 Learning +1401.1896 Dynamical Systems +1401.1897 Mesoscale and Nanoscale Physics +1401.1900 Atomic and Molecular Clusters +1401.1902 Classical Analysis and ODEs +1401.1903 Distributed, Parallel, and Cluster Computing +1401.1905 Neural and Evolutionary Computing +1401.1906 Software Engineering +1401.1907 Networking and Internet Architecture +1401.1908 High Energy Astrophysical Phenomena +1401.1910 Software Engineering +1401.1912 Functional Analysis +1401.1913 Software Engineering +1401.1915 Applications +1401.1918 Networking and Internet Architecture +1401.1919 Data Structures and Algorithms +1401.1920 Combinatorics +1401.1924 Materials Science +1401.1926 Learning +1401.1927 Quantum Algebra +1401.1930 Algebraic Geometry +1401.1933 Optics +1401.1934 Functional Analysis +1401.1940 Spectral Theory +1401.1941 Rings and Algebras +1401.1946 Optics +1401.1949 Classical Analysis and ODEs +1401.1952 Solar and Stellar Astrophysics +1401.1954 Pricing of Securities +1401.1960 Superconductivity +1401.1962 Solar and Stellar Astrophysics +1401.1963 Materials Science +1401.1964 Solar and Stellar Astrophysics +1401.1965 Materials Science +1401.1966 Analysis of PDEs +1401.1969 Quantum Algebra +1401.1971 +1401.1976 Group Theory +1401.1977 Networking and Internet Architecture +1401.1984 Instrumentation and Methods for Astrophysics +1401.1990 Computer Vision and Pattern Recognition +1401.1991 +1401.1993 Experiment +1401.1998 Plasma Physics +1401.1999 Methodology +1401.2000 Computational Engineering, Finance, and Science +1401.2001 Computers and Society +1401.2004 Instrumentation and Methods for Astrophysics +1401.2009 Instrumentation and Methods for Astrophysics +1401.2011 Artificial Intelligence +1401.2013 Analysis of PDEs +1401.2014 Algebraic Geometry +1401.2022 Combinatorics +1401.2023 Materials Science +1401.2024 Statistical Mechanics +1401.2028 Soft Condensed Matter +1401.2029 Fluid Dynamics +1401.2031 Functional Analysis +1401.2037 Category Theory +1401.2038 Physics and Society +1401.2044 Soft Condensed Matter +1401.2046 Instrumentation and Detectors +1401.2051 Robotics +1401.2052 Rings and Algebras +1401.2055 Analysis of PDEs +1401.2056 Networking and Internet Architecture +1401.2058 Computer Vision and Pattern Recognition +1401.2059 Algebraic Geometry +1401.2061 Classical Analysis and ODEs +1401.2066 Strongly Correlated Electrons +1401.2067 Phenomenology +1401.2070 Optimization and Control +1401.2071 Data Structures and Algorithms +1401.2078 Solar and Stellar Astrophysics +1401.2081 Methodology +1401.2085 Representation Theory +1401.2099 Materials Science +1401.2101 Databases +1401.2102 Combinatorics +1401.2105 Solar and Stellar Astrophysics +1401.2106 Soft Condensed Matter +1401.2107 Cryptography and Security +1401.2109 Instrumentation and Methods for Astrophysics +1401.2113 Social and Information Networks +1401.2116 Lattice +1401.2118 Information Theory +1401.2120 Information Theory +1401.2121 Artificial Intelligence +1401.2124 Algebraic Topology +1401.2126 Applications +1401.2127 Computational Geometry +1401.2135 Computation +1401.2138 Fluid Dynamics +1401.2139 Machine Learning +1401.2140 Rings and Algebras +1401.2141 History and Philosophy of Physics +cond-mat/9712205 Mesoscale and Nanoscale Physics +cond-mat/9911011 Mesoscale and Nanoscale Physics +physics/0407110 Atomic Physics +0805.0364 +0806.1655 Disordered Systems and Neural Networks +1006.4343 K-Theory and Homology +1007.1328 Combinatorics +1101.0069 Phenomenology +1108.0404 Artificial Intelligence +1201.6089 Probability +1201.6429 Computer Science and Game Theory +1204.4312 +1204.4839 Operator Algebras +1205.2034 Applications +1206.0094 Molecular Networks +1207.5331 Theory +1209.2050 +1210.2814 Combinatorics +1211.1628 Combinatorics +1211.2987 Probability +1212.2636 Phenomenology +1212.6534 Analysis of PDEs +1301.2874 Theory +1301.5354 Mesoscale and Nanoscale Physics +1302.3430 Statistics Theory +1302.5068 Strongly Correlated Electrons +1302.5841 Solar and Stellar Astrophysics +1303.1152 Learning +1303.2583 Cosmology and Nongalactic Astrophysics +1303.2836 Computation +1303.6941 Mesoscale and Nanoscale Physics +1304.5615 Combinatorics +1304.6087 Cosmology and Nongalactic Astrophysics +1304.6840 Analysis of PDEs +1304.7182 Dynamical Systems +1304.7959 Data Structures and Algorithms +1305.1941 +1305.3078 Analysis of PDEs +1305.3376 Networking and Internet Architecture +1306.3250 Strongly Correlated Electrons +1306.3335 Logic +1306.4369 Logic +1306.5664 Strongly Correlated Electrons +1306.5670 Theory +1306.5787 Information Theory +1306.5817 Superconductivity +1307.1365 Probability +1307.2982 Computer Vision and Pattern Recognition +1307.4456 Combinatorics +1309.4259 Data Analysis, Statistics and Probability +1310.1703 Statistical Mechanics +1310.2175 General Topology +1310.3956 Atmospheric and Oceanic Physics +1310.3987 Chaotic Dynamics +1310.6642 +1310.7138 Statistics Theory +1311.0202 Learning +1311.0282 Cosmology and Nongalactic Astrophysics +1311.1301 Biomolecules +1311.3507 Quantum Gases +1311.5766 Data Analysis, Statistics and Probability +1311.6197 Metric Geometry +1311.6402 Systems and Control +1311.6527 Plasma Physics +1311.6843 +1311.7288 +1312.1566 Lattice +1312.3475 Theory +1312.5532 Strongly Correlated Electrons +1312.6300 +1312.6328 Cosmology and Nongalactic Astrophysics +1401.0385 Cosmology and Nongalactic Astrophysics +1401.0695 Statistical Mechanics +1401.0962 Chemical Physics +1401.1079 Lattice +1401.2583 Mesoscale and Nanoscale Physics +1401.3932 Dynamical Systems +1401.5278 Materials Science +1401.5917 Functional Analysis +1401.6457 Phenomenology +1401.6787 Information Theory +1401.6923 Operator Algebras +1401.7067 Theory +1401.7140 Strongly Correlated Electrons +1402.0191 Materials Science +1402.0965 +1402.2152 +1402.3399 Classical Analysis and ODEs +1402.3941 Information Theory +1402.5811 Superconductivity +1402.6273 Social and Information Networks +1403.1812 Chemical Physics +1403.1823 Chemical Physics +1403.4315 Strongly Correlated Electrons +1403.4792 Mesoscale and Nanoscale Physics +1403.5150 Methodology +1403.7842 Optimization and Control +1404.0808 Phenomenology +1404.1037 Solar and Stellar Astrophysics +1404.1875 Solar and Stellar Astrophysics +1404.2513 Analysis of PDEs +1404.3477 Differential Geometry +1404.3904 Analysis of PDEs +1404.4016 +1404.5331 Networking and Internet Architecture +1404.6009 Rings and Algebras +1404.6257 Theory +1404.6261 Combinatorics +1404.6265 Systems and Control +1404.6266 Chemical Physics +1404.6271 Number Theory +1404.6272 Computer Vision and Pattern Recognition +1404.6274 Methodology +1404.6278 Combinatorics +1404.6285 +1404.6287 Data Structures and Algorithms +1404.6288 Discrete Mathematics +1404.6292 Superconductivity +1404.6303 Instrumentation and Methods for Astrophysics +1404.6304 Probability +1404.6305 +1404.6308 Analysis of PDEs +1404.6311 Statistical Mechanics +1404.6313 High Energy Astrophysical Phenomena +1404.6316 +1404.6317 Dynamical Systems +1404.6319 +1404.6320 Information Theory +1404.6323 Materials Science +1404.6324 Differential Geometry +1404.6326 Materials Science +1404.6329 +1404.6331 Information Theory +1404.6335 Data Analysis, Statistics and Probability +1404.6337 Classical Analysis and ODEs +1404.6338 Classical Analysis and ODEs +1404.6340 Pattern Formation and Solitons +1404.6342 Analysis of PDEs +1404.6348 Information Theory +1404.6351 Computer Vision and Pattern Recognition +1404.6352 Dynamical Systems +1404.6354 Solar and Stellar Astrophysics +1404.6355 Lattice +1404.6358 Combinatorics +1404.6368 Logic in Computer Science +1404.6372 Numerical Analysis +1404.6375 Theory +1404.6382 Fluid Dynamics +1404.6384 Computational Engineering, Finance, and Science +1404.6386 Methodology +1404.6387 Computers and Society +1404.6389 Systems and Control +1404.6394 Logic in Computer Science +1404.6397 Classical Analysis and ODEs +1404.6399 Data Structures and Algorithms +1404.6401 +1404.6406 Mesoscale and Nanoscale Physics +1404.6411 Probability +1404.6412 Statistical Mechanics +1404.6413 Computer Vision and Pattern Recognition +1404.6414 Chemical Physics +1404.6415 Distributed, Parallel, and Cluster Computing +1404.6419 Combinatorics +1404.6420 Neurons and Cognition +1404.6423 Applications +1404.6424 Populations and Evolution +1404.6425 Analysis of PDEs +1404.6428 Analysis of PDEs +1404.6429 Number Theory +1404.6430 Combinatorics +1404.6432 Number Theory +1404.6445 Artificial Intelligence +1404.6447 General Mathematics +1404.6449 Classical Analysis and ODEs +1404.6450 Materials Science +1404.6451 Data Structures and Algorithms +1404.6453 Neurons and Cognition +1404.6456 K-Theory and Homology +1404.6457 Cryptography and Security +1404.6458 Earth and Planetary Astrophysics +1404.6460 Soft Condensed Matter +1404.6461 Analysis of PDEs +1404.6465 Phenomenology +1404.6471 Information Theory +1404.6472 Information Theory +1404.6474 Information Theory +1404.6477 Classical Analysis and ODEs +1404.6484 Experiment +1404.6486 Superconductivity +1404.6488 Group Theory +1404.6491 Computation and Language +1404.6497 Rings and Algebras +1404.6503 Formal Languages and Automata Theory +1404.6508 Other Computer Science +1404.6515 High Energy Astrophysical Phenomena +1404.6518 Mesoscale and Nanoscale Physics +math/0207297 Dynamical Systems +math/0611019 Dynamical Systems +0811.2690 Cellular Automata and Lattice Gases +0903.2363 Operator Algebras +1004.5462 Algebraic Geometry +1012.2004 Operator Algebras +1105.0051 Information Theory +1105.1493 Dynamical Systems +1105.2118 Analysis of PDEs +1106.0122 Fluid Dynamics +1106.1584 +1107.3276 Optics +1107.3308 Group Theory +1107.3905 Spectral Theory +1107.4803 Differential Geometry +1107.4834 Biological Physics +1108.1241 Optimization and Control +1108.5350 Materials Science +1109.0233 Group Theory +1110.4428 Data Structures and Algorithms +1110.6106 Physics Education +1112.3993 Probability +1201.3901 Information Theory +1202.3141 Cosmology and Nongalactic Astrophysics +1202.3151 Theory +1203.5210 Geometric Topology +1203.5958 Fluid Dynamics +1203.6532 Fluid Dynamics +1203.6762 Analysis of PDEs +1205.0602 +1205.0759 Complex Variables +1206.1100 Number Theory +1206.6673 +1207.2824 Quantum Algebra +1208.0358 High Energy Astrophysical Phenomena +1208.2648 Superconductivity +1208.2650 Other Condensed Matter +1208.5913 Logic +1209.5119 History and Overview +1210.0745 +1210.2092 Algebraic Geometry +1210.2342 Genomics +1210.7221 Optimization and Control +1211.0978 Data Structures and Algorithms +1211.1583 Disordered Systems and Neural Networks +1211.2961 Applications +1211.4519 Optics +1211.5675 +1212.0532 Optimization and Control +1212.4263 Quantum Gases +1212.6021 +1301.1218 Learning +1301.3039 Classical Analysis and ODEs +1301.4510 Algebraic Geometry +1301.5316 Differential Geometry +1301.6508 +1301.7499 High Energy Astrophysical Phenomena +1302.0877 Geometric Topology +1302.3481 Formal Languages and Automata Theory +1302.5024 Theory +1302.5766 +1303.2376 Operator Algebras +1303.3244 Optics +1303.3245 Physics and Society +1303.7256 Theory +1303.7286 Information Theory +1304.0808 Metric Geometry +1304.0904 Differential Geometry +1304.1638 +1304.2234 Information Theory +1304.3166 +1304.7221 Materials Science +1304.7302 Quantum Gases +1305.0326 +1305.4042 Strongly Correlated Electrons +1305.4306 +1305.5391 Differential Geometry +1305.6936 +1306.0502 Information Theory +1306.0597 Probability +1306.0619 +1306.0945 Operator Algebras +1306.4451 +1307.1826 Optimization and Control +1307.2333 Fluid Dynamics +1307.2378 Plasma Physics +1307.3179 +1307.4116 +1307.4615 Mesoscale and Nanoscale Physics +1307.5187 Quantum Gases +1307.5716 Quantum Gases +1307.5849 Earth and Planetary Astrophysics +1307.5855 +1307.7093 Mesoscale and Nanoscale Physics +1307.7617 Materials Science +1308.2408 Statistics Theory +1308.4933 Algebraic Geometry +1308.5210 +1308.5388 +1308.6398 Mesoscale and Nanoscale Physics +1309.0065 Logic in Computer Science +1309.1105 Mesoscale and Nanoscale Physics +1309.1142 Lattice +1309.1640 Software Engineering +1309.2862 Statistical Mechanics +1309.3930 +1309.6337 Materials Science +1309.6573 Quantum Gases +1309.7711 Quantum Gases +1309.7726 Accelerator Physics +1309.7897 +1310.1224 Theory +1310.2585 Representation Theory +1310.3413 Materials Science +1310.4690 Classical Analysis and ODEs +1310.5617 Probability +1310.8508 Physics and Society +1311.0376 Algebraic Topology +1311.1588 +1311.1983 Optics +1311.3398 Statistical Mechanics +1311.3893 Instrumentation and Detectors +1311.4806 Lattice +1312.0201 Optics +1312.0964 Combinatorics +1312.1735 Superconductivity +1312.2160 Materials Science +1312.2404 Applications +1312.2646 Machine Learning +1312.4863 Data Structures and Algorithms +1312.5286 +1312.6600 History and Overview +1312.7661 Commutative Algebra +1401.1356 Symplectic Geometry +1401.2136 +1401.2522 Space Physics +1401.3543 Materials Science +1401.3936 Cryptography and Security +1401.4015 Rings and Algebras +1401.4374 Logic in Computer Science +1401.4420 Logic in Computer Science +1401.4627 Phenomenology +1401.4636 Optimization and Control +1401.4940 Phenomenology +1401.4956 Genomics +1401.5229 Quantum Algebra +1401.5335 Representation Theory +1401.5464 Rings and Algebras +1401.5473 Instrumentation and Methods for Astrophysics +1401.5476 Solar and Stellar Astrophysics +1401.5481 Plasma Physics +1401.5488 Cosmology and Nongalactic Astrophysics +1401.5499 Geometric Topology +1401.5508 Machine Learning +1401.5509 Other Computer Science +1401.5510 Materials Science +1401.5513 Cosmology and Nongalactic Astrophysics +1401.5519 Mesoscale and Nanoscale Physics +1401.5522 Numerical Analysis +1401.5526 Statistical Mechanics +1401.5527 Earth and Planetary Astrophysics +1401.5536 Information Theory +1401.5537 Theory +1401.5539 Numerical Analysis +1401.5540 Numerical Analysis +1401.5546 Other Computer Science +1401.5548 Computation +1401.5553 Social and Information Networks +1401.5558 Theory +1401.5559 Computer Vision and Pattern Recognition +1401.5561 Multimedia +1401.5562 Instrumentation and Methods for Astrophysics +1401.5567 Systems and Control +1401.5568 Group Theory +1401.5572 Optimization and Control +1401.5576 Materials Science +1401.5577 Computer Science and Game Theory +1401.5580 Statistics Theory +1401.5582 Information Theory +1401.5583 Computational Geometry +1401.5585 History and Philosophy of Physics +1401.5587 Mesoscale and Nanoscale Physics +1401.5589 Neurons and Cognition +1401.5599 Chemical Physics +1401.5601 Combinatorics +1401.5602 Discrete Mathematics +1401.5603 Optics +1401.5607 Computers and Society +1401.5612 Software Engineering +1401.5616 Mesoscale and Nanoscale Physics +1401.5617 Computation +1401.5625 Machine Learning +1401.5628 +1401.5629 Differential Geometry +1401.5632 Computer Vision and Pattern Recognition +1401.5634 Earth and Planetary Astrophysics +1401.5636 Machine Learning +1401.5638 Other Computer Science +1401.5640 Rings and Algebras +1401.5644 Computation and Language +1401.5651 Differential Geometry +1401.5652 Analysis of PDEs +1401.5653 Combinatorics +1401.5654 Algebraic Geometry +1401.5655 +1401.5657 Robotics +1401.5662 Analysis of PDEs +1401.5664 Optimization and Control +1401.5665 Rings and Algebras +1401.5666 Computational Finance +1401.5667 Analysis of PDEs +1401.5674 Computation and Language +1401.5675 Digital Libraries +1401.5686 Distributed, Parallel, and Cluster Computing +1401.5693 Computation and Language +1401.5694 Computation and Language +1401.5695 Computation and Language +1401.5696 Computation and Language +1401.5697 Computation and Language +1401.5698 Computation and Language +1401.5699 Computation and Language +1401.5700 Computation and Language +1401.5705 High Energy Astrophysical Phenomena +1401.5709 Combinatorics +1401.5710 Social and Information Networks +1401.5711 Group Theory +1401.5716 Commutative Algebra +1401.5717 Functional Analysis +1401.5727 Optics +1401.5728 Representation Theory +1401.5731 Social and Information Networks +1401.5739 +1401.5740 Earth and Planetary Astrophysics +1401.5741 Information Retrieval +1401.5743 Social and Information Networks +1401.5744 Numerical Analysis +1401.5748 Dynamical Systems +1401.5752 Software Engineering +1401.5753 Social and Information Networks +1401.5756 Optimization and Control +1401.5758 Cosmology and Nongalactic Astrophysics +1401.5759 Optimization and Control +1401.5761 Theory +1401.5763 Combinatorics +1401.5764 Solar and Stellar Astrophysics +1401.5766 Numerical Analysis +1401.5771 Algebraic Geometry +1401.5772 Number Theory +1401.5777 Probability +1401.5781 Computational Complexity +1401.5782 Numerical Analysis +1401.5786 Mesoscale and Nanoscale Physics +math/0309068 Differential Geometry +quant-ph/0111019 +0806.3110 Algebraic Geometry +0808.2710 Physics and Society +0811.4772 Materials Science +0908.2789 +0909.0772 Algebraic Geometry +0912.5405 Differential Geometry +1001.2256 Algebraic Geometry +1001.5219 Strongly Correlated Electrons +1001.5293 Strongly Correlated Electrons +1003.2395 Algebraic Geometry +1010.1140 Phenomenology +1010.2745 +1011.0971 Discrete Mathematics +1011.5438 Combinatorics +1101.1305 Algebraic Geometry +1103.4325 Number Theory +1109.6090 Methodology +1110.4397 Strongly Correlated Electrons +1111.1544 Strongly Correlated Electrons +1111.5803 Algebraic Topology +1112.3196 Classical Analysis and ODEs +1201.1562 Mesoscale and Nanoscale Physics +1201.2463 Algebraic Geometry +1202.3694 Geophysics +1202.4415 +1203.1343 Cosmology and Nongalactic Astrophysics +1203.2388 K-Theory and Homology +1204.2069 Machine Learning +1204.2707 Probability +1205.3105 Commutative Algebra +1205.3409 +1206.5662 K-Theory and Homology +1206.6544 Information Theory +1207.1226 Fluid Dynamics +1207.1709 Cosmology and Nongalactic Astrophysics +1207.2414 Analysis of PDEs +1207.5040 Information Theory +1208.2842 Strongly Correlated Electrons +1208.5075 Distributed, Parallel, and Cluster Computing +1208.5880 Differential Geometry +1209.0607 +1210.0220 Computation +1211.0205 Computational Physics +1211.5264 Information Theory +1212.1984 Cryptography and Security +1212.2308 Combinatorics +1212.5712 Biological Physics +1301.2358 +1301.5370 +1301.5682 +1302.3227 Theory +1303.1345 Phenomenology +1303.3488 Mesoscale and Nanoscale Physics +1304.0979 Rings and Algebras +1304.1778 Computation +1304.1780 +1304.2425 +1304.4211 Combinatorics +1304.7045 Learning +1305.3805 +1305.3879 Algebraic Topology +1305.5323 Statistical Mechanics +1305.6583 Superconductivity +1306.1200 Neurons and Cognition +1306.1668 +1306.2097 Numerical Analysis +1306.5354 Numerical Analysis +1306.5916 Materials Science +1307.1639 Quantum Gases +1307.4956 Methodology +1307.5984 Theory +1307.6735 Differential Geometry +1308.0208 Number Theory +1308.1124 Probability +1308.1452 Phenomenology +1308.5983 Materials Science +1309.0801 Quantitative Methods +1309.4544 Soft Condensed Matter +1309.4762 Chaotic Dynamics +1309.5001 Cosmology and Nongalactic Astrophysics +1309.5662 Soft Condensed Matter +1309.6183 Statistical Mechanics +1309.6899 Numerical Analysis +1309.7840 Strongly Correlated Electrons +1310.1142 Pricing of Securities +1310.2689 +1310.2729 +1310.2918 Phenomenology +1310.2996 Algebraic Geometry +1310.3870 Instrumentation and Detectors +1310.4945 Learning +1310.5535 Number Theory +1310.7550 Pattern Formation and Solitons +1310.8190 Atomic Physics +1311.0890 Phenomenology +1311.3797 Accelerator Physics +1311.7551 Probability +1312.1050 Theory +1312.2067 Functional Analysis +1312.3263 Information Theory +1312.3637 Cosmology and Nongalactic Astrophysics +1312.7789 Number Theory +1401.3530 Plasma Physics +1401.4352 Phenomenology +1401.4914 Materials Science +1401.4978 +1401.5660 Optics +1401.6258 Information Theory +1401.6879 Phenomenology +1402.1282 +1402.1609 Strongly Correlated Electrons +1402.2755 Statistics Theory +1402.2779 Astrophysics of Galaxies +1402.3576 Mesoscale and Nanoscale Physics +1402.3824 Instrumentation and Methods for Astrophysics +1402.4115 Numerical Analysis +1402.4235 +1402.4537 Phenomenology +1402.4610 Atmospheric and Oceanic Physics +1402.4679 Materials Science +1402.4810 Astrophysics of Galaxies +1402.4823 Theory +1402.4825 Functional Analysis +1402.4826 Cryptography and Security +1402.4827 +1402.4834 Optimization and Control +1402.4837 Group Theory +1402.4839 Functional Analysis +1402.4841 Mesoscale and Nanoscale Physics +1402.4845 Learning +1402.4860 Quantum Gases +1402.4861 Learning +1402.4862 Machine Learning +1402.4863 High Energy Astrophysical Phenomena +1402.4867 Discrete Mathematics +1402.4869 Social and Information Networks +1402.4870 Chaotic Dynamics +1402.4873 Analysis of PDEs +1402.4874 Atomic and Molecular Clusters +1402.4875 Materials Science +1402.4876 Distributed, Parallel, and Cluster Computing +1402.4879 Differential Geometry +1402.4882 Methodology +1402.4883 Statistical Mechanics +1402.4888 Information Retrieval +1402.4889 Instrumentation and Methods for Astrophysics +1402.4890 Strongly Correlated Electrons +1402.4892 Networking and Internet Architecture +1402.4894 Strongly Correlated Electrons +1402.4895 +1402.4896 Populations and Evolution +1402.4902 Instrumentation and Methods for Astrophysics +1402.4904 Chemical Physics +1402.4907 Robotics +1402.4913 Mesoscale and Nanoscale Physics +1402.4914 Artificial Intelligence +1402.4917 Biomolecules +1402.4918 Phenomenology +1402.4920 Differential Geometry +1402.4926 Computational Complexity +1402.4928 Number Theory +1402.4929 Operating Systems +1402.4930 Mesoscale and Nanoscale Physics +1402.4933 Information Theory +1402.4936 Computer Vision and Pattern Recognition +1402.4937 Phenomenology +1402.4938 Atomic Physics +1402.4939 Group Theory +1402.4941 +1402.4942 Mesoscale and Nanoscale Physics +1402.4944 Combinatorics +1402.4945 Number Theory +1402.4946 Computer Science and Game Theory +1402.4952 Rings and Algebras +1402.4954 Superconductivity +1402.4956 Probability +1402.4958 Distributed, Parallel, and Cluster Computing +1402.4959 Functional Analysis +1402.4965 Metric Geometry +1402.4966 Differential Geometry +1402.4977 Differential Geometry +1402.4978 Group Theory +1402.4982 Classical Analysis and ODEs +1402.4984 Computation +1402.4987 Probability +1402.4992 Combinatorics +1402.4998 Optics +1402.5000 Experiment +1402.5003 Networking and Internet Architecture +1402.5006 Atmospheric and Oceanic Physics +1402.5007 Computational Physics +1402.5009 Analysis of PDEs +1402.5010 Computational Geometry +1402.5012 Algebraic Geometry +1402.5013 Number Theory +1402.5030 Optics +1402.5034 Artificial Intelligence +1402.5037 Artificial Intelligence +1402.5038 Differential Geometry +1402.5040 Classical Analysis and ODEs +1402.5043 Artificial Intelligence +1402.5045 Human-Computer Interaction +1402.5047 Human-Computer Interaction +1402.5048 Differential Geometry +1402.5052 Computational Physics +1402.5060 Cell Behavior +1402.5067 +1402.5071 General Physics +1402.5072 General Physics +1402.5074 Computer Vision and Pattern Recognition +1402.5077 Learning +1402.5081 Instrumentation and Methods for Astrophysics +1402.5083 Plasma Physics +1402.5086 Numerical Analysis +1402.5096 Representation Theory +1402.5100 Combinatorics +1402.5102 Dynamical Systems +1402.5103 Methodology +1402.5106 Optics +1402.5110 +1402.5111 Combinatorics +1402.5114 Social and Information Networks +1402.5116 +1402.5118 Probability +1402.5119 +1402.5123 Computation and Language +1402.5128 Functional Analysis +1402.5133 Differential Geometry +nlin/0402004 Exactly Solvable and Integrable Systems +0808.1408 History and Overview +0808.2228 Symplectic Geometry +0811.1789 Group Theory +0907.2634 Logic +0909.2503 Optics +0910.5373 Differential Geometry +1002.0467 Number Theory +1005.0129 Formal Languages and Automata Theory +1005.2579 +1006.5683 Differential Geometry +1008.2425 Group Theory +1008.3835 +1102.4513 Soft Condensed Matter +1102.5550 Disordered Systems and Neural Networks +1108.5954 Number Theory +1109.1783 Number Theory +1111.1332 Analysis of PDEs +1111.5932 Symplectic Geometry +1112.5579 Number Theory +1202.1161 Statistical Mechanics +1205.2174 Formal Languages and Automata Theory +1205.3479 High Energy Astrophysical Phenomena +1207.0893 Statistics Theory +1207.2747 History and Overview +1209.2047 Algebraic Geometry +1209.2049 Algebraic Geometry +1209.2085 Statistics Theory +1210.1555 Geometric Topology +1210.1625 Trading and Market Microstructure +1210.1920 +1210.3949 Molecular Networks +1210.5268 Computation and Language +1211.2115 Differential Geometry +1211.3690 Cell Behavior +1212.4056 Number Theory +1301.1594 +1301.1861 Operator Algebras +1301.3275 Group Theory +1302.2589 Dynamical Systems +1302.2673 Mesoscale and Nanoscale Physics +1302.5164 Solar and Stellar Astrophysics +1302.5226 Operator Algebras +1302.5793 Formal Languages and Automata Theory +1304.0556 Pattern Formation and Solitons +1304.1650 Mesoscale and Nanoscale Physics +1304.2679 +1304.3025 +1304.3295 +1304.3923 Algebraic Geometry +1304.6586 Number Theory +1304.6777 Social and Information Networks +1304.6917 Number Theory +1305.0548 Group Theory +1305.2234 Experiment +1305.2243 Experiment +1305.4718 Solar and Stellar Astrophysics +1306.0036 Systems and Control +1306.3414 Emerging Technologies +1306.5651 Algebraic Geometry +1307.0401 +1307.0625 Number Theory +1307.5725 Numerical Analysis +1307.6197 Materials Science +1307.6703 Fluid Dynamics +1307.7570 Representation Theory +1307.7778 History and Overview +1308.1032 Quantum Gases +1308.3968 Methodology +1308.5115 Methodology +1309.0074 Quantum Algebra +1309.1317 Numerical Analysis +1309.1372 Computational Physics +1309.3463 Mesoscale and Nanoscale Physics +1309.5250 Quantum Algebra +1309.5414 Systems and Control +1309.6037 Quantum Algebra +1310.0187 Theory +1310.1144 Algebraic Geometry +1310.3216 Group Theory +1310.4188 Optimization and Control +1310.5586 Mesoscale and Nanoscale Physics +1310.6602 Methodology +1310.7622 Theory +1310.7761 +1310.7841 Mesoscale and Nanoscale Physics +1311.1075 Complex Variables +1311.1538 Rings and Algebras +1311.3150 Quantum Gases +1311.4955 Functional Analysis +1311.5234 Phenomenology +1312.0917 Instrumentation and Detectors +1312.1618 Algebraic Geometry +1312.2171 Machine Learning +1312.4320 Mesoscale and Nanoscale Physics +1312.4444 Analysis of PDEs +1312.4652 Computational Complexity +1312.7858 +1401.0212 Optimization and Control +1401.4722 Probability +1401.6036 Combinatorics +1401.6229 +1401.7073 +1402.1038 +1402.1941 Exactly Solvable and Integrable Systems +1402.2000 Probability +1402.2368 Optics +1402.4069 Computer Vision and Pattern Recognition +1402.4448 Combinatorics +1402.5988 Learning +1403.0178 Data Structures and Algorithms +1403.1236 Genomics +1403.1753 Optics +1403.3598 Statistical Mechanics +1403.3773 +1403.4757 Optimization and Control +1403.5866 +1403.6718 Numerical Analysis +1403.7638 Strongly Correlated Electrons +1404.1829 +1404.1891 Emerging Technologies +1404.2213 Probability +1404.2528 Logic +1404.3025 Materials Science +1404.3028 +1404.3728 Strongly Correlated Electrons +1404.3757 Social and Information Networks +1404.3862 Machine Learning +1404.7050 +1404.7741 Phenomenology +1404.7846 Instrumentation and Detectors +1405.0156 Soft Condensed Matter +1405.0343 Computer Science and Game Theory +1405.1395 Theory +1405.1579 Geometric Topology +1405.2226 Emerging Technologies +1405.2491 Numerical Analysis +1405.2819 +1405.3877 +1405.4246 Quantum Gases +1405.5484 Strongly Correlated Electrons +1405.5744 Mesoscale and Nanoscale Physics +1406.1414 Social and Information Networks +1406.2083 Machine Learning +1406.2388 Superconductivity +1406.2514 K-Theory and Homology +1406.2713 Cosmology and Nongalactic Astrophysics +1406.2789 Probability +1406.3781 Learning +1406.5224 +1406.5412 Chaotic Dynamics +1406.7037 Solar and Stellar Astrophysics +1406.7757 Quantum Gases +1407.0635 Mesoscale and Nanoscale Physics +1407.0924 Mesoscale and Nanoscale Physics +1407.3490 +1407.3617 Theory +1407.4512 Trading and Market Microstructure +1407.5333 Dynamical Systems +1407.5912 +1407.6539 Superconductivity +1407.7090 Probability +1407.7830 Analysis of PDEs +1408.0539 Fluid Dynamics +1408.0577 Optics +1408.0704 Optics +1408.0953 Differential Geometry +1408.1022 Economics +1408.1047 Cosmology and Nongalactic Astrophysics +1408.2213 Atomic Physics +1408.2593 Combinatorics +1408.2905 +1408.2944 Materials Science +1408.2947 Combinatorics +1408.2950 Phenomenology +1408.4043 Number Theory +1408.5556 Phenomenology +1408.5742 Representation Theory +1408.5747 Representation Theory +1408.6513 Computational Finance +1408.6954 +1409.0375 Computational Complexity +1409.1103 Strongly Correlated Electrons +1409.2715 Soft Condensed Matter +1409.2828 Biological Physics +1409.3188 Information Theory +1409.4063 Social and Information Networks +1409.4100 Numerical Analysis +1409.4906 Experiment +1409.4954 Phenomenology +1409.5144 Theory +1409.5347 +1409.5441 Strongly Correlated Electrons +1409.5535 Functional Analysis +1409.5652 Strongly Correlated Electrons +1409.5670 Mesoscale and Nanoscale Physics +1409.5874 +1409.6352 Number Theory +1409.6790 Strongly Correlated Electrons +1409.6874 Information Theory +1409.7202 Learning +1409.7562 Strongly Correlated Electrons +1409.7965 Optics +1409.8136 Differential Geometry +1409.8673 Numerical Analysis +1410.1720 Biological Physics +1410.2336 Representation Theory +1410.2504 +1410.2881 Information Theory +1410.3785 Complex Variables +1410.3840 Solar and Stellar Astrophysics +1410.4789 Materials Science +1410.5339 Functional Analysis +1410.5732 Solar and Stellar Astrophysics +1410.6307 Earth and Planetary Astrophysics +1410.7123 Materials Science +1410.7638 Classical Analysis and ODEs +1410.8828 Lattice +1411.0277 Atomic Physics +1411.1604 Astrophysics of Galaxies +1411.1614 Materials Science +1411.1632 Quantum Gases +1411.1652 Combinatorics +1411.2662 Solar and Stellar Astrophysics +1411.3567 Commutative Algebra +1411.3569 Rings and Algebras +1411.3599 Analysis of PDEs +1411.4023 Artificial Intelligence +1411.4372 Strongly Correlated Electrons +1411.5008 Logic +1411.5119 Experiment +1411.5269 Instrumentation and Detectors +1411.5587 Other Condensed Matter +1411.5625 Risk Management +1411.5644 +1411.5793 Geometric Topology +1411.5991 Instrumentation and Detectors +1411.6011 Fluid Dynamics +1411.6027 Formal Languages and Automata Theory +1411.6028 Applications +1411.6029 Phenomenology +1411.6030 Solar and Stellar Astrophysics +1411.6031 Computer Vision and Pattern Recognition +1411.6034 Instrumentation and Methods for Astrophysics +1411.6035 Phenomenology +1411.6036 Numerical Analysis +1411.6041 Complex Variables +1411.6045 Probability +1411.6047 Combinatorics +1411.6048 +1411.6056 Instrumentation and Detectors +1411.6057 Physics and Society +1411.6059 Exactly Solvable and Integrable Systems +1411.6066 Fluid Dynamics +1411.6070 Analysis of PDEs +1411.6073 Spectral Theory +1411.6075 Strongly Correlated Electrons +1411.6079 Cryptography and Security +1411.6081 Learning +1411.6082 Social and Information Networks +1411.6083 +1411.6087 Information Theory +1411.6089 Rings and Algebras +1411.6090 K-Theory and Homology +1411.6091 Computer Vision and Pattern Recognition +1411.6093 Algebraic Geometry +1411.6099 Probability +1411.6101 Superconductivity +1411.6104 Quantum Gases +1411.6106 Analysis of PDEs +1411.6108 Mesoscale and Nanoscale Physics +1411.6109 Analysis of PDEs +1411.6114 Distributed, Parallel, and Cluster Computing +1411.6120 Rings and Algebras +1411.6121 Fluid Dynamics +1411.6122 Rings and Algebras +1411.6123 Rings and Algebras +1411.6124 Materials Science +1411.6127 Robotics +1411.6129 Logic +1411.6130 Systems and Control +1411.6135 Discrete Mathematics +1411.6139 Analysis of PDEs +1411.6143 Exactly Solvable and Integrable Systems +1411.6148 Computer Science and Game Theory +1411.6149 Statistics Theory +1411.6150 Applications +1411.6151 Operator Algebras +1411.6154 Astrophysics of Galaxies +1411.6155 +1411.6161 Mesoscale and Nanoscale Physics +1411.6165 Solar and Stellar Astrophysics +1411.6168 Number Theory +1411.6172 Networking and Internet Architecture +1411.6173 Operator Algebras +1411.6175 Metric Geometry +1411.6182 Classical Analysis and ODEs +1411.6185 Computational Geometry +1411.6186 Computational Geometry +1411.6188 Networking and Internet Architecture +1411.6191 Learning +1411.6192 Cosmology and Nongalactic Astrophysics +1411.6194 Instrumentation and Detectors +1411.6195 +1411.6197 Software Engineering +1411.6198 Experiment +1411.6200 Materials Science +1411.6201 Software Engineering +1411.6202 Multiagent Systems +1411.6203 Machine Learning +1411.6204 Numerical Analysis +1411.6205 Algebraic Geometry +1411.6206 Computer Vision and Pattern Recognition +1411.6209 Number Theory +1411.6217 History and Philosophy of Physics +1411.6219 Methodology +1411.6220 Phenomenology +1411.6221 Probability +1411.6223 Analysis of PDEs +1411.6224 Databases +1411.6226 Combinatorics +1411.6229 Probability +1411.6233 Learning +1411.6234 Functional Analysis +1411.6235 Learning +1411.6238 Strongly Correlated Electrons +1411.6242 Strongly Correlated Electrons +1411.6245 Data Analysis, Statistics and Probability +1411.6248 Exactly Solvable and Integrable Systems +1411.6251 Differential Geometry +1411.6252 Numerical Analysis +1411.6253 Logic +1411.6258 Solar and Stellar Astrophysics +1411.6260 Metric Geometry +1411.6262 Systems and Control +1411.6265 Probability +1411.6271 Combinatorics +1411.6273 Social and Information Networks +1411.6274 +1411.6275 Computer Vision and Pattern Recognition +1411.6277 Probability +1411.6278 Materials Science +1411.6279 Logic in Computer Science +1411.6282 Optimization and Control +1411.6283 Optimization and Control +1411.6285 Biomolecules +1411.6290 Theory +1411.6293 Astrophysics of Galaxies +1411.6300 Artificial Intelligence +1411.6301 Dynamical Systems +1411.6303 Analysis of PDEs +1411.6304 +1411.6305 Learning +1411.6306 Number Theory +1411.6307 Learning +1411.6308 Learning +1411.6309 Symplectic Geometry +1411.6314 Statistics Theory +1411.6317 Computational Complexity +1411.6318 Computational Physics +1411.6320 Networking and Internet Architecture +1411.6321 Logic +1411.6325 Optics +1411.6326 Robotics +1411.6327 Solar and Stellar Astrophysics +1411.6328 Information Theory +1411.6330 Molecular Networks +1411.6331 Astrophysics of Galaxies +1411.6332 Analysis of PDEs +1411.6333 Numerical Analysis +1411.6337 Metric Geometry +1411.6342 +1411.6343 Fluid Dynamics +1411.6345 Applications +1411.6351 Plasma Physics +1411.6358 Distributed, Parallel, and Cluster Computing +1411.6359 Networking and Internet Architecture +1411.6361 Programming Languages +1411.6363 Theory +1411.6365 Computer Vision and Pattern Recognition +1411.6367 Geometric Topology +1411.6369 Computer Vision and Pattern Recognition +1411.6373 Mesoscale and Nanoscale Physics +1411.6378 Phenomenology +1411.6381 Metric Geometry +1411.6383 Numerical Analysis +1411.6398 Operator Algebras +1411.6401 Combinatorics +1411.6402 +1411.6404 Probability +1411.6406 Computer Vision and Pattern Recognition +1411.6409 Cryptography and Security +1411.6429 Theory +1411.6437 Mesoscale and Nanoscale Physics +1411.6438 Chaotic Dynamics +1411.6439 Quantum Gases +1411.6446 Classical Physics +1411.6447 Computer Vision and Pattern Recognition +1411.6453 Astrophysics of Galaxies +1411.6461 Lattice +1411.6462 Social and Information Networks +1411.6463 Formal Languages and Automata Theory +1411.6464 Optics +1411.6466 Information Theory +1411.6470 Dynamical Systems +1411.6473 Populations and Evolution +1411.6474 +1411.6477 Strongly Correlated Electrons +1411.6479 Instrumentation and Methods for Astrophysics +1411.6482 +1411.6488 +1411.6489 Representation Theory +1411.6491 +1411.6496 Information Retrieval +1411.6497 Rings and Algebras +1411.6498 Hardware Architecture +1411.6507 Methodology +1411.6509 Computer Vision and Pattern Recognition +1411.6510 Dynamical Systems +1411.6511 Earth and Planetary Astrophysics +1411.6512 Methodology +1411.6514 Instrumentation and Methods for Astrophysics +1411.6519 Superconductivity +1411.6529 Numerical Analysis +1411.6531 Dynamical Systems +1411.6532 Combinatorics +1411.6533 Phenomenology +1411.6536 Soft Condensed Matter +1411.6543 Number Theory +1411.6546 Experiment +1411.6551 +1411.6562 Databases +1411.6563 Commutative Algebra +1411.6567 Spectral Theory +1411.6568 Physics Education +1411.6569 Atomic and Molecular Clusters +1411.6572 Mesoscale and Nanoscale Physics +1411.6576 Biological Physics +1411.6578 Methodology +1411.6583 Number Theory +1411.6584 Materials Science +1411.6586 Classical Analysis and ODEs +1411.6589 +1411.6590 Machine Learning +1411.6591 Learning +1411.6593 Artificial Intelligence +1411.6596 Probability +1411.6598 Optics +1411.6600 Dynamical Systems +1411.6602 Dynamical Systems +1411.6603 Fluid Dynamics +1411.6607 Probability +1411.6611 Instrumentation and Detectors +1411.6614 Strongly Correlated Electrons +astro-ph/0009025 +astro-ph/0110547 +astro-ph/0208264 +astro-ph/9904286 +math/0312077 Differential Geometry +math/0404260 Algebraic Geometry +math/0702400 Group Theory +math/0703077 Optimization and Control +0712.2347 Geometric Topology +0804.3035 +0904.3132 Statistics Theory +0908.3869 Physics and Society +1007.2538 +1009.1159 Commutative Algebra +1011.2483 Solar and Stellar Astrophysics +1012.2182 Probability +1105.5594 Information Theory +1106.2729 Multimedia +1109.5327 Quantum Gases +1112.4362 +1202.1827 Theory +1203.1381 Numerical Analysis +1204.1376 Solar and Stellar Astrophysics +1204.6424 Instrumentation and Detectors +1206.0950 Probability +1206.5538 Learning +1207.4023 Algebraic Geometry +1207.4420 Systems and Control +1207.5552 Populations and Evolution +1208.1455 Quantum Gases +1208.2606 Probability +1208.3385 Spectral Theory +1209.0116 +1209.0178 Geometric Topology +1209.6341 +1210.4618 General Physics +1210.7700 Rings and Algebras +1211.2366 Populations and Evolution +1211.7026 +1212.5534 +1301.1535 Theory +1301.4628 Statistics Theory +1302.2074 +1303.0601 Instrumentation and Detectors +1303.2132 Learning +1303.2998 Mesoscale and Nanoscale Physics +1303.5654 Numerical Analysis +1304.1929 Probability +1304.3282 Combinatorics +1304.3888 Phenomenology +1304.4595 +1304.5164 +1305.0124 Networking and Internet Architecture +1305.0584 Phenomenology +1305.1935 Astrophysics of Galaxies +1305.1937 Astrophysics of Galaxies +1305.4076 Learning +1305.4538 Networking and Internet Architecture +1305.5841 +1306.3066 Combinatorics +1306.3336 +1306.6869 Mesoscale and Nanoscale Physics +1307.0063 Accelerator Physics +1307.1086 Earth and Planetary Astrophysics +1307.3931 +1307.7896 Quantum Algebra +1307.8014 Populations and Evolution +1308.0282 Solar and Stellar Astrophysics +1308.2028 Theory +1308.3334 +1308.3699 Cosmology and Nongalactic Astrophysics +1308.4665 Statistical Mechanics +1308.4870 Statistical Mechanics +1308.6357 Materials Science +1309.1957 Lattice +1309.4166 Information Theory +1309.6136 Probability +1309.7296 +1310.2424 +1310.5811 Methodology +1310.6352 Phenomenology +1310.6522 Optics +1311.2074 Cosmology and Nongalactic Astrophysics +1311.4493 Strongly Correlated Electrons +1311.4843 Genomics +1311.4997 Logic +1311.5525 Accelerator Physics +1311.7351 Phenomenology +1311.7474 Statistics Theory +1311.7685 +1312.1906 Complex Variables +1312.3236 +1312.3360 +1312.3664 Chemical Physics +1312.4774 Molecular Networks +1312.6069 Probability +1312.6217 Phenomenology +1312.6538 Spectral Theory +1312.7302 Computer Vision and Pattern Recognition +1312.7765 Category Theory +1401.0332 Atomic Physics +1401.1184 +1401.1247 Artificial Intelligence +1401.2538 Data Structures and Algorithms +1401.3005 Phenomenology +1401.3539 Mesoscale and Nanoscale Physics +1401.4457 Earth and Planetary Astrophysics +1401.5447 Number Theory +1401.6178 Mesoscale and Nanoscale Physics +1401.6993 Materials Science +1401.7371 Genomics +1401.7774 Chemical Physics +1402.0101 +1402.1046 Statistical Finance +1402.1152 +1402.1645 +1402.4848 +1402.6578 Experiment +1402.6746 +1402.7014 Statistical Mechanics +1403.2160 Populations and Evolution +1403.2438 Solar and Stellar Astrophysics +1403.2909 Instrumentation and Methods for Astrophysics +1403.3290 Analysis of PDEs +1403.4140 +1403.4654 Differential Geometry +1403.5319 +1403.5858 Networking and Internet Architecture +1403.6071 Solar and Stellar Astrophysics +1403.6559 Spectral Theory +1404.1425 Machine Learning +1404.2380 Information Theory +1404.3085 Superconductivity +1404.3521 Neurons and Cognition +1404.4110 +1404.4807 Soft Condensed Matter +1404.5015 Combinatorics +1404.5137 Superconductivity +1404.5290 +1404.5383 Combinatorics +1404.5455 Combinatorics +1404.5566 Data Structures and Algorithms +1404.5581 Emerging Technologies +1404.5610 Optics +1404.5611 Computational Engineering, Finance, and Science +1404.5613 Exactly Solvable and Integrable Systems +1404.5615 +1404.5626 Phenomenology +1404.5643 Artificial Intelligence +1404.5644 Materials Science +1404.5647 Analysis of PDEs +1404.5648 Materials Science +1404.5653 Fluid Dynamics +1404.5658 Logic +1404.5659 +1404.5660 Data Structures and Algorithms +1404.5661 Dynamical Systems +1404.5667 Earth and Planetary Astrophysics +1404.5671 Methodology +1404.5675 Atmospheric and Oceanic Physics +1404.5679 Quantum Algebra +1404.5683 Information Theory +1404.5689 General Finance +1404.5691 Materials Science +1404.5693 Differential Geometry +1404.5695 Optics +1404.5700 Number Theory +1404.5708 Software Engineering +1404.5711 Optimization and Control +1404.5716 Information Theory +1404.5722 Commutative Algebra +1404.5725 Quantitative Methods +1404.5727 Optics +1404.5728 Mesoscale and Nanoscale Physics +1404.5730 Probability +1404.5734 Computer Science and Game Theory +1404.5735 +1404.5738 +1404.5741 Optimization and Control +1404.5744 Exactly Solvable and Integrable Systems +1404.5747 Exactly Solvable and Integrable Systems +1404.5753 Functional Analysis +1404.5757 Combinatorics +1404.5760 Instrumentation and Detectors +1404.5763 Algebraic Geometry +1404.5764 Computational Engineering, Finance, and Science +1404.5765 Computer Vision and Pattern Recognition +1404.5768 Phenomenology +1404.5770 Programming Languages +1404.5779 Classical Analysis and ODEs +1404.5780 Combinatorics +1404.5781 Mesoscale and Nanoscale Physics +1404.5782 Combinatorics +1404.5785 Software Engineering +1404.5786 Disordered Systems and Neural Networks +1404.5791 Symplectic Geometry +1404.5795 Instrumentation and Methods for Astrophysics +1404.5803 Instrumentation and Detectors +1404.5811 Instrumentation and Detectors +1404.5812 Theory +1404.5814 +1404.5815 Instrumentation and Methods for Astrophysics +1404.5824 Pattern Formation and Solitons +1404.5825 K-Theory and Homology +1404.5829 Populations and Evolution +1404.5834 Biological Physics +1404.5836 +1404.5843 Instrumentation and Detectors +1404.5845 Algebraic Geometry +1404.5851 Geometric Topology +1404.5852 Phenomenology +1404.5853 Algebraic Geometry +1404.5860 Numerical Analysis +1404.5866 Number Theory +1404.5867 High Energy Astrophysical Phenomena +1404.5868 Optics +1404.5869 Operating Systems +1404.5870 Computers and Society +1404.5874 Social and Information Networks +1404.5875 General Mathematics +1404.5881 +1404.5884 Geometric Topology +1404.5885 Hardware Architecture +1404.5886 Statistics Theory +1404.5888 +1404.5896 K-Theory and Homology +1404.5899 Numerical Analysis +1404.5901 Systems and Control +1404.5903 Machine Learning +1404.5905 Social and Information Networks +1404.5906 Optimization and Control +1404.5907 Instrumentation and Methods for Astrophysics +1404.5910 +1404.5929 Hardware Architecture +1404.5931 Medical Physics +1404.5932 Numerical Analysis +1404.5939 Probability +1404.5940 +cond-mat/0611421 Superconductivity +0805.0311 General Mathematics +0906.1441 Commutative Algebra +0908.2558 Metric Geometry +0912.1121 Dynamical Systems +1003.1435 +1006.1862 +1011.2887 Logic +1102.1333 Complex Variables +1102.5469 Phenomenology +1103.0211 Complex Variables +1108.0718 Algebraic Geometry +1108.4343 Classical Physics +1110.2082 Quantum Algebra +1110.6221 Optimization and Control +1112.2267 Functional Analysis +1201.0030 Number Theory +1201.1391 Number Theory +1201.2086 Algebraic Geometry +1202.1229 Information Theory +1202.5122 +1203.2145 Statistical Mechanics +1203.3980 Popular Physics +1204.4624 Analysis of PDEs +1204.6676 Differential Geometry +1205.6167 Methodology +1205.6611 +1205.7028 Analysis of PDEs +1206.3390 Probability +1206.5872 Optimization and Control +1207.4705 Metric Geometry +1207.6036 Quantum Algebra +1208.2967 Experiment +1208.4811 Methodology +1209.1829 General Topology +1209.4182 +1209.4331 Spectral Theory +1210.2564 Representation Theory +1210.3214 Methodology +1210.4001 Symplectic Geometry +1210.7599 Information Retrieval +1210.7622 Combinatorics +1210.8096 Mesoscale and Nanoscale Physics +1211.2246 +1211.5455 Probability +1211.5466 Dynamical Systems +1212.1081 Algebraic Geometry +1212.3556 Methodology +1212.5842 High Energy Astrophysical Phenomena +1212.6638 Dynamical Systems +1301.0821 +1301.2550 Methodology +1301.5952 Information Theory +1302.0708 Materials Science +1302.1659 Commutative Algebra +1302.4180 +1302.4511 Phenomenology +1303.0815 General Topology +1303.2609 Cosmology and Nongalactic Astrophysics +1303.2707 Statistics Theory +1303.6814 +1304.4693 Information Theory +1304.4923 +1305.2244 Algebraic Geometry +1305.4471 Soft Condensed Matter +1306.1538 Strongly Correlated Electrons +1306.3607 Biological Physics +1306.3890 Artificial Intelligence +1306.4756 Analysis of PDEs +1307.2329 Optics +1307.2597 Mesoscale and Nanoscale Physics +1307.3298 Classical Analysis and ODEs +1307.4515 +1307.4598 +1307.5115 Geometric Topology +1307.5144 Computational Physics +1307.5440 Trading and Market Microstructure +1307.6399 Classical Analysis and ODEs +1307.8425 Combinatorics +1308.0922 Quantum Gases +1308.1970 Algebraic Geometry +1308.2165 Mesoscale and Nanoscale Physics +1308.2504 +1308.2741 Differential Geometry +1308.3640 Logic +1308.6103 Functional Analysis +1309.0318 Functional Analysis +1309.1211 Analysis of PDEs +1309.2728 Pricing of Securities +1309.6226 Artificial Intelligence +1309.6593 +1309.7149 +1310.1633 Number Theory +1310.2973 Portfolio Management +1310.7631 Genomics +1310.8001 Dynamical Systems +1311.0629 Strongly Correlated Electrons +1311.2655 Computer Science and Game Theory +1311.2667 Metric Geometry +1311.2896 High Energy Astrophysical Phenomena +1311.3369 Statistical Mechanics +1311.3815 High Energy Astrophysical Phenomena +1311.3895 Metric Geometry +1311.4163 Information Theory +1311.4585 Probability +1311.6697 +1312.0238 Probability +1312.0267 Optics +1312.1811 Group Theory +1312.2145 Optimization and Control +1312.2735 Physics and Society +1312.3653 Strongly Correlated Electrons +1312.4809 Materials Science +1312.4866 Biological Physics +1312.5681 Optimization and Control +1312.5695 Phenomenology +1312.5896 Astrophysics of Galaxies +1312.6874 Commutative Algebra +1312.6921 Strongly Correlated Electrons +1312.7555 Combinatorics +1401.0415 Mesoscale and Nanoscale Physics +1401.2295 Superconductivity +1401.2321 Optics +1401.2374 Statistical Mechanics +1401.2909 Mesoscale and Nanoscale Physics +1401.2954 General Finance +1401.3019 Phenomenology +1401.3283 High Energy Astrophysical Phenomena +1401.6872 Phenomenology +1401.6901 Representation Theory +1401.6959 Number Theory +1401.7605 Mesoscale and Nanoscale Physics +1402.0810 +1402.1357 Superconductivity +1402.2424 Populations and Evolution +1402.4000 Number Theory +1402.4588 Logic +1402.5289 Neurons and Cognition +1402.6236 Phenomenology +1402.6926 Information Retrieval +1402.7066 Theory +1403.0427 Cosmology and Nongalactic Astrophysics +1403.1010 Probability +1403.1683 Lattice +1403.2789 Probability +1403.3295 +1403.3588 +1403.3820 +1403.3965 Analysis of PDEs +1403.5415 Strongly Correlated Electrons +1403.5754 Combinatorics +1403.5758 Chemical Physics +1403.6805 Algebraic Geometry +1403.7032 Optimization and Control +1403.7216 Strongly Correlated Electrons +1404.1684 Computational Complexity +1404.3056 Software Engineering +1404.3155 Combinatorics +1404.3178 Quantum Gases +1404.3234 Analysis of PDEs +1404.3581 Machine Learning +1404.4147 +1404.4157 Information Theory +1404.4331 Number Theory +1404.4447 +1404.4562 Experiment +1404.4844 Algebraic Geometry +1404.6327 +1404.6829 Functional Analysis +1404.7430 Instrumentation and Methods for Astrophysics +1404.7673 Phenomenology +1404.7681 Statistical Mechanics +1405.0649 Fluid Dynamics +1405.0832 Optics +1405.1005 Computer Vision and Pattern Recognition +1405.1196 Cryptography and Security +1405.1835 Exactly Solvable and Integrable Systems +1405.2242 Phenomenology +1405.2447 Computational Complexity +1405.2549 +1405.2843 Statistical Mechanics +1405.2876 Networking and Internet Architecture +1405.3299 Phenomenology +1405.3332 High Energy Astrophysical Phenomena +1405.3652 Theory +1405.4748 Geometric Topology +1405.5923 Earth and Planetary Astrophysics +1405.6469 Probability +1406.0091 Soft Condensed Matter +1406.1438 Superconductivity +1406.2178 Algebraic Geometry +1406.2386 +1406.3108 Numerical Analysis +1406.4540 Theory +1406.5627 Superconductivity +1406.6222 Probability +1406.6379 Cosmology and Nongalactic Astrophysics +1406.7103 Statistical Mechanics +1406.7810 Statistical Mechanics +1407.0505 Probability +1407.2633 Strongly Correlated Electrons +1407.2884 Optimization and Control +1407.3394 Logic +1407.3758 Materials Science +1407.4141 Solar and Stellar Astrophysics +1407.4309 +1407.4673 +1407.4819 Soft Condensed Matter +1407.4830 Superconductivity +1407.5036 Complex Variables +1407.5462 Soft Condensed Matter +1407.6269 High Energy Astrophysical Phenomena +1407.6482 Cryptography and Security +1407.7338 Mesoscale and Nanoscale Physics +1407.7610 +1407.8166 +1408.0181 Mesoscale and Nanoscale Physics +1408.0645 Geophysics +1408.0842 Superconductivity +1408.1159 Portfolio Management +1408.1196 Experiment +1408.1470 Solar and Stellar Astrophysics +1408.3030 Formal Languages and Automata Theory +1408.3431 Spectral Theory +1408.3448 Astrophysics of Galaxies +1408.3752 Operator Algebras +1408.4328 Cosmology and Nongalactic Astrophysics +1408.5445 Information Theory +1408.5588 Analysis of PDEs +1408.6275 Astrophysics of Galaxies +1408.6824 Information Theory +1408.6840 High Energy Astrophysical Phenomena +1409.0020 Soft Condensed Matter +1409.0173 Data Structures and Algorithms +1409.0769 +1409.1458 Learning +1409.1507 Dynamical Systems +1409.2147 Spectral Theory +1409.2444 Group Theory +1409.2546 Applications +1409.2797 Fluid Dynamics +1409.3554 Human-Computer Interaction +1409.3829 Representation Theory +1409.3965 Representation Theory +1409.4123 Combinatorics +1409.5032 Algebraic Geometry +1409.5443 Information Retrieval +1409.5712 Statistical Mechanics +1409.5763 Computer Vision and Pattern Recognition +1409.5837 +1409.6512 Information Retrieval +1409.6643 +1409.6731 Optimization and Control +1409.6775 Performance +1409.6888 Materials Science +1409.6992 Instrumentation and Detectors +1409.7189 Number Theory +1409.7276 Chemical Physics +1409.7687 Networking and Internet Architecture +1409.7698 Optics +1409.7713 Probability +1409.7714 Combinatorics +1409.7716 Analysis of PDEs +1409.7719 Materials Science +1409.7723 Dynamical Systems +1409.7724 Graphics +1409.7729 Information Retrieval +1409.7733 Social and Information Networks +1409.7736 Algebraic Geometry +1409.7738 Metric Geometry +1409.7741 +1409.7749 Optimization and Control +1409.7755 Systems and Control +1409.7758 Neural and Evolutionary Computing +1409.7760 Cryptography and Security +1409.7764 Social and Information Networks +1409.7771 Distributed, Parallel, and Cluster Computing +1409.7772 Solar and Stellar Astrophysics +1409.7773 Representation Theory +1409.7774 Populations and Evolution +1409.7776 Methodology +1409.7777 Artificial Intelligence +1409.7780 Learning +1409.7781 Functional Analysis +1409.7785 Optics +1409.7787 Sound +1409.7788 Symbolic Computation +1409.7790 Computational Complexity +1409.7796 +1409.7797 Analysis of PDEs +1409.7799 Differential Geometry +1409.7802 Economics +1409.7805 Superconductivity +1409.7806 +1409.7808 Information Theory +1409.7814 Solar and Stellar Astrophysics +1409.7817 Soft Condensed Matter +1409.7821 Numerical Analysis +1409.7822 Information Theory +1409.7823 Classical Analysis and ODEs +1409.7824 Atomic and Molecular Clusters +1409.7826 Probability +1409.7827 Quantitative Methods +1409.7829 Number Theory +1409.7830 Artificial Intelligence +1409.7832 Functional Analysis +1409.7834 Pattern Formation and Solitons +1409.7835 +1409.7836 Differential Geometry +1409.7839 Populations and Evolution +1409.7841 Programming Languages +1409.7844 Systems and Control +1409.7846 Pattern Formation and Solitons +1409.7850 Information Theory +1409.7851 Classical Analysis and ODEs +1409.7853 Information Theory +1409.7857 Operator Algebras +1409.7858 Strongly Correlated Electrons +1409.7865 Atomic and Molecular Clusters +1409.7867 Materials Science +1409.7869 Materials Science +1409.7871 +1409.7876 Analysis of PDEs +1409.7878 Social and Information Networks +1409.7881 Quantum Gases +1409.7883 Algebraic Geometry +1409.7884 +1409.7887 Experiment +1409.7892 Fluid Dynamics +1409.7894 Fluid Dynamics +1409.7895 Chaotic Dynamics +1409.7896 Differential Geometry +1409.7897 Complex Variables +1409.7901 Materials Science +1409.7902 General Topology +1409.7903 Group Theory +1409.7908 Numerical Analysis +1409.7909 +1409.7911 Number Theory +1409.7912 +1409.7916 Distributed, Parallel, and Cluster Computing +1409.7918 Phenomenology +1409.7919 Differential Geometry +1409.7922 Formal Languages and Automata Theory +1409.7929 Optics +1409.7933 Risk Management +1409.7934 Dynamical Systems +1409.7936 Algebraic Topology +1409.7941 Cell Behavior +1409.7945 Materials Science +1409.7947 Rings and Algebras +1409.7948 Computers and Society +1409.7951 Atomic Physics +1409.7955 Group Theory +1409.7956 Probability +1409.7963 Computer Vision and Pattern Recognition +1409.7966 Computational Engineering, Finance, and Science +1409.7967 +1409.7969 Number Theory +1409.7970 Numerical Analysis +1409.7972 Number Theory +1409.7974 Mesoscale and Nanoscale Physics +1409.7975 Probability +1409.7976 Chemical Physics +1409.7977 +1409.7978 Social and Information Networks +1409.7981 High Energy Astrophysical Phenomena +1409.7984 Networking and Internet Architecture +1409.7992 Materials Science +1409.7994 Applications +1409.7998 Representation Theory +1409.8003 Representation Theory +1409.8007 Group Theory +1409.8008 Computation and Language +1409.8016 Instrumentation and Detectors +1409.8018 Hardware Architecture +1409.8020 Hardware Architecture +1409.8021 Other Computer Science +1409.8022 Functional Analysis +1409.8025 +1409.8026 Commutative Algebra +1409.8028 Social and Information Networks +1409.8032 Phenomenology +1409.8034 Soft Condensed Matter +1409.8037 Mathematical Finance +1409.8038 Classical Analysis and ODEs +1409.8040 Analysis of PDEs +1409.8042 Fluid Dynamics +1409.8043 Materials Science +1409.8046 Instrumentation and Detectors +1409.8047 Computation +1409.8052 High Energy Astrophysical Phenomena +1409.8053 Artificial Intelligence +1409.8054 Statistical Mechanics +1409.8055 Metric Geometry +1409.8057 Combinatorics +1409.8060 Logic +1409.8062 Category Theory +1409.8064 Combinatorics +1409.8072 Numerical Analysis +1409.8073 Fluid Dynamics +1409.8077 +1409.8080 Group Theory +1409.8083 Computation +1409.8087 Theory +1409.8091 Rings and Algebras +1409.8100 Cosmology and Nongalactic Astrophysics +1409.8106 Solar and Stellar Astrophysics +1409.8112 Robotics +1409.8113 Experiment +1409.8118 Number Theory +1409.8121 Astrophysics of Galaxies +1409.8122 Analysis of PDEs +1409.8123 Combinatorics +1409.8126 Representation Theory +1409.8132 Number Theory +1409.8137 Applications +1409.8140 Geophysics +1409.8141 Combinatorics +1409.8144 +1409.8145 Complex Variables +1409.8146 Software Engineering +1409.8152 Computers and Society +1409.8153 Number Theory +1409.8155 Number Theory +1409.8159 Optimization and Control +1409.8166 Space Physics +1409.8171 Networking and Internet Architecture +1409.8174 Cryptography and Security +1409.8184 Group Theory +1409.8190 Analysis of PDEs +1409.8191 Neural and Evolutionary Computing +1409.8193 Probability +1409.8195 Strongly Correlated Electrons +1409.8198 Methodology +1409.8202 Learning +1409.8205 +1409.8209 Soft Condensed Matter +1409.8210 Optics +1409.8213 Instrumentation and Detectors +1409.8220 Information Theory +1409.8223 Algebraic Geometry +1409.8236 Fluid Dynamics +1409.8237 Fluid Dynamics +1409.8239 Systems and Control +1409.8240 Atomic and Molecular Clusters +1409.8244 Optimization and Control +1409.8250 Symplectic Geometry +1409.8254 Computational Complexity +1409.8255 Astrophysics of Galaxies +1409.8259 Phenomenology +1409.8264 Instrumentation and Methods for Astrophysics +1409.8266 Functional Analysis +1409.8267 Networking and Internet Architecture +1409.8270 Neurons and Cognition +cs/0311031 Databases +math-ph/0411052 +math-ph/9809002 +math-ph/9901008 +math-ph/9903046 +math/0006092 Dynamical Systems +math/0501151 Dynamical Systems +math/0510507 Geometric Topology +math/0611849 Number Theory +math/0702448 Metric Geometry +q-bio/0507042 Tissues and Organs +0803.3688 +0804.4385 Differential Geometry +0805.2796 Neurons and Cognition +0909.5476 Cosmology and Nongalactic Astrophysics +0911.5065 Number Theory +1001.4710 Number Theory +1006.3754 Theory +1102.4136 +1108.1212 +1112.0367 Group Theory +1201.3061 Number Theory +1201.4207 Number Theory +1202.3675 +1203.4127 Atomic Physics +1204.0829 Logic +1204.6203 Theory +1205.2326 Classical Physics +1206.7052 Soft Condensed Matter +1207.5701 Combinatorics +1207.6512 Information Theory +1208.3346 Algebraic Geometry +1209.4014 Complex Variables +1210.2918 Combinatorics +1212.1166 Cosmology and Nongalactic Astrophysics +1212.3887 Classical Analysis and ODEs +1301.4005 Algebraic Geometry +1301.5028 Number Theory +1301.5122 Number Theory +1302.1349 Information Theory +1302.6316 Statistical Mechanics +1302.6445 Number Theory +1304.0759 Cosmology and Nongalactic Astrophysics +1304.1708 Number Theory +1304.5775 Algebraic Geometry +1305.2597 +1305.2599 +1305.6429 Adaptation and Self-Organizing Systems +1306.2939 Soft Condensed Matter +1306.3876 +1306.5255 Representation Theory +1306.5647 Phenomenology +1307.3063 Theory +1307.3759 Computer Vision and Pattern Recognition +1307.4307 Classical Analysis and ODEs +1307.8287 Strongly Correlated Electrons +1308.0219 Programming Languages +1308.3995 Computational Engineering, Finance, and Science +1309.3649 Numerical Analysis +1309.7220 Combinatorics +1310.1187 Machine Learning +1310.3068 Geometric Topology +1310.6447 Algebraic Geometry +1310.7895 History and Philosophy of Physics +1311.1873 Optimization and Control +1312.0058 Theory +1312.5505 Discrete Mathematics +1312.7215 Algebraic Geometry +1401.2148 General Physics +1401.4988 Machine Learning +1401.6832 Numerical Analysis +1402.0700 Astrophysics of Galaxies +1402.1205 Soft Condensed Matter +1402.1329 Astrophysics of Galaxies +1402.2125 Dynamical Systems +1402.3796 Data Structures and Algorithms +1402.4979 Phenomenology +1403.1090 Mesoscale and Nanoscale Physics +1403.1992 +1403.2631 Strongly Correlated Electrons +1403.4087 High Energy Astrophysical Phenomena +1403.4190 +1404.0990 +1404.1224 Dynamical Systems +1404.1372 Astrophysics of Galaxies +1404.2321 Combinatorics +1404.3530 Complex Variables +1404.4062 Strongly Correlated Electrons +1404.6183 Fluid Dynamics +1404.6363 Theory +1405.1568 Strongly Correlated Electrons +1405.3108 Strongly Correlated Electrons +1405.5036 Quantum Gases +1405.5073 Computational Physics +1405.5213 Theory +1405.5947 Differential Geometry +1405.6122 Analysis of PDEs +1405.6127 Functional Analysis +1405.6298 Systems and Control +1405.7505 Astrophysics of Galaxies +1405.7829 Theory +1406.2373 Mesoscale and Nanoscale Physics +1406.2379 Mesoscale and Nanoscale Physics +1406.2667 Theory +1406.4023 General Topology +1406.4257 Physics and Society +1406.5034 +1406.7019 Experiment +1406.7777 Quantitative Methods +1407.0564 Symplectic Geometry +1407.0638 Differential Geometry +1407.1577 Number Theory +1407.3578 Number Theory +1407.4896 Physics and Society +1407.7882 Distributed, Parallel, and Cluster Computing +1407.8493 Theory +1408.0342 Phenomenology +1408.0775 Strongly Correlated Electrons +1408.2485 Earth and Planetary Astrophysics +1408.2533 Quantum Gases +1408.4300 Mesoscale and Nanoscale Physics +1408.4985 Instrumentation and Detectors +1408.5215 Representation Theory +1408.5991 Experiment +1408.7075 Data Analysis, Statistics and Probability +1409.0514 Phenomenology +1409.1876 Atomic Physics +1409.5501 Other Statistics +1409.5930 Materials Science +1409.6657 Combinatorics +1409.7983 Combinatorics +1410.0484 Strongly Correlated Electrons +1410.2312 Representation Theory +1410.4393 Computer Vision and Pattern Recognition +1410.5481 Probability +1411.1740 Earth and Planetary Astrophysics +1411.1961 Phenomenology +1411.2065 Differential Geometry +1411.2202 +1411.2255 +1411.2351 Databases +1411.2514 Applications +1411.2529 Information Theory +1411.2583 Chemical Physics +1411.2584 Computer Vision and Pattern Recognition +1411.2586 General Physics +1411.2594 Theory +1411.2606 Phenomenology +1411.2610 Quantum Gases +1411.2617 Geometric Topology +1411.2618 Theory +1411.2620 Analysis of PDEs +1411.2625 Astrophysics of Galaxies +1411.2628 Computational Finance +1411.2630 Materials Science +1411.2632 Lattice +1411.2635 Learning +1411.2638 Dynamical Systems +1411.2642 +1411.2645 Computation and Language +1411.2648 Algebraic Geometry +1411.2651 Instrumentation and Methods for Astrophysics +1411.2655 Optimization and Control +1411.2660 Astrophysics of Galaxies +1411.2667 Lattice +1411.2668 Genomics +1411.2669 Networking and Internet Architecture +1411.2671 Cryptography and Security +1411.2673 Analysis of PDEs +1411.2676 Algebraic Geometry +1411.2680 Data Structures and Algorithms +1411.2683 Systems and Control +1411.2687 Statistics Theory +1411.2692 Combinatorics +1411.2696 Physics and Society +1411.2703 +1411.2709 Strongly Correlated Electrons +1411.2711 Operator Algebras +1411.2712 Operator Algebras +1411.2714 Networking and Internet Architecture +1411.2715 Numerical Analysis +1411.2716 Differential Geometry +1411.2719 Complex Variables +1411.2720 +1411.2722 Solar and Stellar Astrophysics +1411.2727 Mesoscale and Nanoscale Physics +1411.2729 Number Theory +1411.2730 Differential Geometry +1411.2731 Optics +1411.2732 Statistics Theory +1411.2737 Optics +1411.2739 Optics +1411.2740 Materials Science +1411.2746 Information Theory +1411.2751 Geometric Topology +1411.2752 Probability +1411.2753 Complex Variables +1411.2754 Statistical Mechanics +1411.2755 Methodology +1411.2757 Materials Science +1411.2759 Dynamical Systems +1411.2760 +1411.2763 Popular Physics +1411.2764 Experiment +1411.2766 Phenomenology +1411.2768 Optics +1411.2770 Algebraic Geometry +1411.2783 High Energy Astrophysical Phenomena +1411.2785 Data Structures and Algorithms +1411.2786 Phenomenology +1411.2788 Strongly Correlated Electrons +1411.2790 Algebraic Geometry +1411.2791 Information Theory +1411.2793 Differential Geometry +1411.2795 Sound +1411.2798 History and Overview +1411.2799 Operator Algebras +1411.2802 Strongly Correlated Electrons +1411.2805 Adaptation and Self-Organizing Systems +1411.2808 Probability +1411.2811 Optics +1411.2813 Strongly Correlated Electrons +1411.2815 Materials Science +1411.2819 Accelerator Physics +1411.2820 Quantitative Methods +1411.2821 Neural and Evolutionary Computing +1411.2823 History and Overview +1411.2824 General Mathematics +1411.2825 +1411.2826 Materials Science +1411.2828 General Physics +1411.2837 Networking and Internet Architecture +1411.2841 Representation Theory +1411.2842 Computers and Society +1411.2843 Phenomenology +1411.2846 Algebraic Geometry +1411.2847 Biomolecules +1411.2848 Dynamical Systems +1411.2849 +1411.2860 Multimedia +1411.2867 Performance +1411.2872 Statistical Mechanics +1411.2873 Data Structures and Algorithms +1411.2877 Group Theory +1411.2878 Human-Computer Interaction +1411.2879 Accelerator Physics +1411.2881 General Mathematics +1411.2882 Differential Geometry +1411.2884 Algebraic Geometry +1411.2885 Information Theory +1411.2886 Accelerator Physics +1411.2887 Numerical Analysis +1411.2890 Information Theory +1411.2893 Social and Information Networks +1411.2894 Analysis of PDEs +1411.2896 Molecular Networks +1411.2897 Neural and Evolutionary Computing +1411.2900 Analysis of PDEs +1411.2901 Computational Complexity +1411.2904 Differential Geometry +1411.2907 Statistics Theory +1411.2910 +1411.2914 Algebraic Geometry +1411.2915 Astrophysics of Galaxies +1411.2917 Hardware Architecture +1411.2919 Learning +1411.2924 Quantum Gases +1411.2927 Quantum Gases +1411.2929 Pattern Formation and Solitons +1411.2931 Networking and Internet Architecture +1411.2932 Computational Physics +1411.2935 Geometric Topology +1411.2937 Quantum Gases +1411.2938 +1411.2939 Cryptography and Security +1411.2944 Statistics Theory +1411.2945 Dynamical Systems +1411.2946 Phenomenology +1411.2951 Geometric Topology +1411.2953 Networking and Internet Architecture +1411.2955 Algebraic Geometry +1411.2958 Differential Geometry +1411.2959 Quantum Algebra +1411.2960 Optics +1411.2961 Applications +cond-mat/0509496 Other Condensed Matter +cond-mat/0609317 Other Condensed Matter +hep-th/0105074 Theory +hep-th/0411101 Theory +hep-th/0503086 Theory +math-ph/0502005 +math/0605164 Geometric Topology +nlin/0205050 Pattern Formation and Solitons +nlin/0509047 Pattern Formation and Solitons +0807.2171 Optics +0809.1738 +0904.2686 +0909.4097 Statistical Mechanics +1004.2441 Strongly Correlated Electrons +1008.1138 +1012.4085 Optics +1103.3057 Astrophysics of Galaxies +1104.5068 Experiment +1105.4561 +1109.2575 Probability +1112.1000 Algebraic Topology +1201.2978 Probability +1202.1962 Theory +1202.4718 +1203.5795 Theory +1204.3295 Mesoscale and Nanoscale Physics +1205.0031 +1205.1395 Materials Science +1205.4408 Computational Physics +1205.5103 Experiment +1206.0725 Probability +1206.5478 Numerical Analysis +1207.4019 Mesoscale and Nanoscale Physics +1208.0245 Optics +1208.2338 +1208.3733 Algebraic Topology +1208.5220 Group Theory +1209.1083 Representation Theory +1210.3897 Analysis of PDEs +1211.1347 Theory +1211.5292 Computational Engineering, Finance, and Science +1211.5658 Numerical Analysis +1212.0667 Cosmology and Nongalactic Astrophysics +1212.1905 Combinatorics +1212.2551 Metric Geometry +1212.3303 Differential Geometry +1212.3828 Differential Geometry +1301.1259 Probability +1301.1782 Metric Geometry +1302.1238 Algebraic Topology +1302.3925 +1304.3395 Chaotic Dynamics +1304.5334 Computer Science and Game Theory +1305.0330 Strongly Correlated Electrons +1305.2052 Algebraic Geometry +1305.5863 Analysis of PDEs +1306.0229 Data Analysis, Statistics and Probability +1306.1256 Differential Geometry +1306.6264 Information Theory +1307.0801 Statistical Mechanics +1307.0902 Physics Education +1307.7314 Dynamical Systems +1307.8292 Commutative Algebra +1308.1969 Superconductivity +1308.4413 Superconductivity +1308.5602 Materials Science +1309.3110 Symplectic Geometry +1309.3990 Soft Condensed Matter +1309.5676 Neural and Evolutionary Computing +1310.0984 Materials Science +1310.2040 +1310.3429 Combinatorics +1310.3780 +1310.3936 +1310.5463 Databases +1310.7901 Phenomenology +1310.8376 +1310.8658 +1311.0085 Methodology +1311.0197 +1311.0577 Number Theory +1311.0938 +1311.1640 Computational Engineering, Finance, and Science +1311.4584 Functional Analysis +1311.4776 Combinatorics +1311.5703 Phenomenology +1311.5937 Mesoscale and Nanoscale Physics +1311.6014 Applications +1311.6360 Information Theory +1312.0244 Metric Geometry +1312.3520 Quantum Gases +1312.4845 Theory +1312.5282 Strongly Correlated Electrons +1312.5748 Theory +1312.6984 Materials Science +1312.7850 Superconductivity +1401.0712 Strongly Correlated Electrons +1401.1083 Instrumentation and Methods for Astrophysics +1401.1101 Phenomenology +1401.2675 Functional Analysis +1401.2870 +1401.3538 Information Theory +1401.5207 +1401.5978 Number Theory +1401.7048 Mesoscale and Nanoscale Physics +1401.7811 Differential Geometry +1401.8019 Strongly Correlated Electrons +1401.8061 Quantum Algebra +1402.1456 Cosmology and Nongalactic Astrophysics +1402.2409 Symbolic Computation +1402.2476 Theory +1402.2845 Computational Engineering, Finance, and Science +1402.3293 Cosmology and Nongalactic Astrophysics +1402.5513 Probability +1402.5583 Soft Condensed Matter +1403.0112 Optimization and Control +1403.0213 Statistical Mechanics +1403.0974 Computer Science and Game Theory +1403.2247 Probability +1403.2599 Disordered Systems and Neural Networks +1403.2920 Other Condensed Matter +1403.2944 Phenomenology +1403.2955 General Physics +1403.3127 Numerical Analysis +1403.3259 Superconductivity +1403.3801 Combinatorics +1403.4327 Materials Science +1403.5119 +1403.5166 Cosmology and Nongalactic Astrophysics +1403.5610 High Energy Astrophysical Phenomena +1403.6364 +1403.6501 Number Theory +1404.0619 Theory +1404.0722 +1404.1156 Strongly Correlated Electrons +1404.2318 High Energy Astrophysical Phenomena +1404.2572 Phenomenology +1404.2763 Mesoscale and Nanoscale Physics +1404.3575 Quantum Gases +1404.4471 Analysis of PDEs +1404.4831 Cosmology and Nongalactic Astrophysics +1404.5234 Solar and Stellar Astrophysics +1404.5707 +1404.5796 Phenomenology +1404.6360 Disordered Systems and Neural Networks +1404.7104 Quantum Gases +1404.7464 Classical Physics +1404.7607 Analysis of PDEs +1405.0370 Information Theory +1405.0633 Analysis of PDEs +1405.1727 Astrophysics of Galaxies +1405.3269 Superconductivity +1405.3640 +1405.3930 +1405.4337 Statistical Mechanics +1405.4930 Computer Vision and Pattern Recognition +1405.6128 Quantum Algebra +1405.6552 +1405.7645 Phenomenology +1406.1686 Statistical Mechanics +1406.1957 Probability +1406.4544 Earth and Planetary Astrophysics +1406.4683 High Energy Astrophysical Phenomena +1406.4777 Statistics Theory +1406.5339 Superconductivity +1406.5465 Fluid Dynamics +1406.7503 Metric Geometry +1407.0811 Strongly Correlated Electrons +1407.1087 +1407.1127 Differential Geometry +1407.1300 Numerical Analysis +1407.1357 Superconductivity +1407.1452 +1407.1472 Strongly Correlated Electrons +1407.1474 Artificial Intelligence +1407.1965 Probability +1407.2113 Instrumentation and Detectors +1407.2492 +1407.2993 Materials Science +1407.3271 Instrumentation and Methods for Astrophysics +1407.4198 Plasma Physics +1407.4248 Combinatorics +1407.4854 Molecular Networks +1407.5159 Spectral Theory +1407.5195 Differential Geometry +1407.6634 +1407.6730 Data Structures and Algorithms +1407.6908 Phenomenology +1407.7161 Data Structures and Algorithms +1407.7631 Instrumentation and Methods for Astrophysics +1407.7681 +1407.7763 Probability +1407.7803 Logic +1407.7903 +1407.8020 +1407.8052 Classical Analysis and ODEs +1407.8085 +1407.8108 +1407.8115 Solar and Stellar Astrophysics +1407.8145 Classical Physics +1408.0230 +1408.0282 Probability +1408.0300 Phenomenology +1408.0301 +1408.0304 Mesoscale and Nanoscale Physics +1408.0305 Classical Analysis and ODEs +1408.0307 Spectral Theory +1408.0308 General Finance +1408.0313 Optimization and Control +1408.0314 Computational Geometry +1408.0317 Probability +1408.0318 Methodology +1408.0322 Group Theory +1408.0324 Statistics Theory +1408.0325 Social and Information Networks +1408.0326 Solar and Stellar Astrophysics +1408.0328 Artificial Intelligence +1408.0330 Chemical Physics +1408.0332 Social and Information Networks +1408.0333 Algebraic Geometry +1408.0335 Materials Science +1408.0336 Materials Science +1408.0337 Machine Learning +1408.0339 Information Theory +1408.0346 Superconductivity +1408.0347 Dynamical Systems +1408.0354 High Energy Astrophysical Phenomena +1408.0355 Systems and Control +1408.0357 Fluid Dynamics +1408.0363 +1408.0366 Cryptography and Security +1408.0368 Cellular Automata and Lattice Gases +1408.0371 Combinatorics +1408.0375 Algebraic Geometry +1408.0377 Information Theory +1408.0381 Functional Analysis +1408.0385 Classical Analysis and ODEs +1408.0387 Astrophysics of Galaxies +1408.0388 +1408.0390 +1408.0392 Algebraic Geometry +1408.0396 Mesoscale and Nanoscale Physics +1408.0398 +1408.0400 Mesoscale and Nanoscale Physics +1408.0401 Earth and Planetary Astrophysics +1408.0404 Mesoscale and Nanoscale Physics +1408.0407 Other Computer Science +1408.0408 Combinatorics +1408.0409 Data Structures and Algorithms +1408.0416 Theory +1408.0424 Statistics Theory +1408.0426 Materials Science +1408.0427 Physics and Society +1408.0428 Combinatorics +1408.0430 Medical Physics +1408.0431 High Energy Astrophysical Phenomena +1408.0435 Number Theory +1408.0440 Economics +1408.0441 Superconductivity +1408.0442 Computer Science and Game Theory +1408.0443 General Finance +1408.0447 Analysis of PDEs +1408.0448 Differential Geometry +1408.0452 Computer Vision and Pattern Recognition +1408.0453 Computer Vision and Pattern Recognition +1408.0455 Information Theory +1408.0462 Methodology +1408.0464 Methodology +1408.0470 Complex Variables +1408.0474 Networking and Internet Architecture +1408.0478 Functional Analysis +1408.0482 Networking and Internet Architecture +1408.0485 Materials Science +1408.0486 Probability +1408.0489 Probability +1408.0490 Cryptography and Security +1408.0491 Materials Science +1408.0494 Analysis of PDEs +1408.0498 Complex Variables +1408.0501 Distributed, Parallel, and Cluster Computing +1408.0506 Functional Analysis +1408.0509 Probability +1408.0510 Distributed, Parallel, and Cluster Computing +1408.0512 Number Theory +1408.0516 +1408.0519 Optimization and Control +1408.0520 Analysis of PDEs +1408.0521 Computers and Society +1408.0523 Functional Analysis +1408.0525 Functional Analysis +1408.0529 Dynamical Systems +1408.0531 Data Structures and Algorithms +1408.0541 Analysis of PDEs +1408.0557 Data Structures and Algorithms +1408.0558 Fluid Dynamics +1408.0559 Probability +1408.0568 Probability +1408.0569 Probability +1408.0572 Probability +1408.0574 Distributed, Parallel, and Cluster Computing +1408.0578 Optimization and Control +1408.0579 Quantum Algebra +1408.0581 Information Theory +1408.0583 +1408.0585 Experiment +1408.0586 Information Theory +1408.0591 Differential Geometry +1408.0594 Soft Condensed Matter +1408.0595 Artificial Intelligence +1408.0597 Functional Analysis +1408.0600 Mesoscale and Nanoscale Physics +1408.0603 Mesoscale and Nanoscale Physics +1408.0614 Optimization and Control +1408.0617 Strongly Correlated Electrons +1408.0619 Statistics Theory +1408.0621 Statistical Mechanics +1408.0622 Medical Physics +1408.0624 Theory +1408.0625 Representation Theory +1408.0639 Combinatorics +1408.0641 Probability +1408.0642 Numerical Analysis +1408.0646 Combinatorics +1408.0649 Combinatorics +1408.0658 Analysis of PDEs +1408.0659 Atomic Physics +1408.0661 +1408.0667 Commutative Algebra +1408.0671 Materials Science +1408.0676 Analysis of PDEs +1408.0677 Graphics +1408.0682 Phenomenology +1408.0683 Formal Languages and Automata Theory +1408.0691 Commutative Algebra +1408.0693 Instrumentation and Methods for Astrophysics +1408.0694 Social and Information Networks +1408.0695 Populations and Evolution +1408.0696 Physics and Society +1408.0697 Mesoscale and Nanoscale Physics +1408.0699 Physics and Society +1408.0700 Logic in Computer Science +1408.0701 Computers and Society +1408.0703 Computer Science and Game Theory +1408.0706 Probability +1408.0707 Logic in Computer Science +1408.0708 Analysis of PDEs +1408.0711 Methodology +1408.0716 +1408.0719 Information Retrieval +1408.0721 Representation Theory +1408.0722 Numerical Analysis +1408.0723 Analysis of PDEs +1408.0724 Numerical Analysis +1408.0725 Cryptography and Security +1408.0726 Networking and Internet Architecture +1408.0727 Networking and Internet Architecture +1408.0733 Cryptography and Security +1408.0735 High Energy Astrophysical Phenomena +1408.0742 Plasma Physics +1408.0744 Combinatorics +1408.0751 Data Structures and Algorithms +1408.0755 Tissues and Organs +1408.0758 Materials Science +1408.0759 Accelerator Physics +1408.0760 Algebraic Geometry +1408.0762 Dynamical Systems +1408.0768 High Energy Astrophysical Phenomena +1408.0776 Probability +1408.0781 Rings and Algebras +1408.0782 Computation and Language +1408.0788 Statistics Theory +quant-ph/0102047 +0806.3844 +0907.5368 Statistical Mechanics +0908.1070 Mesoscale and Nanoscale Physics +1007.2816 Logic in Computer Science +1008.4524 High Energy Astrophysical Phenomena +1101.1507 Computer Science and Game Theory +1105.0650 Artificial Intelligence +1110.5268 +1110.5271 Complex Variables +1112.3945 Statistical Mechanics +1201.3377 Combinatorics +1201.4937 +1205.2905 Dynamical Systems +1206.0166 Disordered Systems and Neural Networks +1208.0053 Combinatorics +1210.1810 +1210.4333 Functional Analysis +1211.0672 Classical Analysis and ODEs +1211.3589 Machine Learning +1211.3678 Algebraic Geometry +1301.1258 Mesoscale and Nanoscale Physics +1301.4423 Instrumentation and Methods for Astrophysics +1301.6381 Mesoscale and Nanoscale Physics +1301.7242 Quantum Gases +1302.1208 High Energy Astrophysical Phenomena +1302.6509 Mesoscale and Nanoscale Physics +1303.2055 Mesoscale and Nanoscale Physics +1304.7750 Information Theory +1305.1352 Populations and Evolution +1305.5533 Quantitative Methods +1306.2000 Probability +1306.2493 Probability +1306.4548 Probability +1306.6140 Dynamical Systems +1307.5478 Neurons and Cognition +1307.7143 Dynamical Systems +1308.0476 +1308.3241 +1308.4841 Plasma Physics +1308.5116 Number Theory +1309.3040 Optics +1309.4785 Solar and Stellar Astrophysics +1309.4895 Materials Science +1309.4981 Probability +1309.6138 Probability +1309.7420 +1310.1520 Combinatorics +1310.2058 High Energy Astrophysical Phenomena +1310.4548 Other Condensed Matter +1310.4672 Functional Analysis +1311.2520 Machine Learning +1311.2806 Probability +1311.3572 Lattice +1312.2746 Probability +1312.5158 Soft Condensed Matter +1312.7129 Probability +1401.1121 +1401.1551 Networking and Internet Architecture +1401.1724 Space Physics +1401.2025 Fluid Dynamics +1401.2646 Probability +1401.2926 Cosmology and Nongalactic Astrophysics +1401.4418 Cosmology and Nongalactic Astrophysics +1401.4614 Probability +1401.6413 Learning +1401.8005 Optimization and Control +1402.0172 Applications +1402.0542 Analysis of PDEs +1402.0747 Classical Analysis and ODEs +1402.1230 Combinatorics +1402.1407 +1402.2563 +1402.2620 Probability +1402.2868 Phenomenology +1402.3209 Chemical Physics +1402.5590 Mesoscale and Nanoscale Physics +1402.5600 Theory +1402.6302 Probability +1402.6700 Quantum Gases +1403.0693 Disordered Systems and Neural Networks +1403.3691 Cosmology and Nongalactic Astrophysics +1403.4283 Combinatorics +1403.4814 Neurons and Cognition +1403.4841 +1403.5578 +1403.5679 Theory +1403.6077 +1403.7197 Phenomenology +1403.7423 Geophysics +1403.8011 +1403.8049 Cosmology and Nongalactic Astrophysics +1404.1104 Atomic Physics +1404.1136 Combinatorics +1404.1281 Quantum Gases +1404.1925 Theory +1404.2602 Theory +1404.3303 Methodology +1404.3634 +1404.3799 Cosmology and Nongalactic Astrophysics +1404.4099 +1404.4169 +1404.4843 Solar and Stellar Astrophysics +1404.4955 Atomic Physics +1404.5973 Phenomenology +1404.6096 +1404.6185 +1404.6452 Formal Languages and Automata Theory +1404.7042 Experiment +1404.7561 Cosmology and Nongalactic Astrophysics +1404.7672 +1404.7689 +1404.7775 Software Engineering +1405.1223 Computational Geometry +1405.1336 Disordered Systems and Neural Networks +1405.1663 Combinatorics +1405.2211 Strongly Correlated Electrons +1405.2346 Theory +1405.2494 Logic in Computer Science +1405.2661 Mesoscale and Nanoscale Physics +1405.3525 Phenomenology +1405.4001 Biological Physics +1405.4344 Astrophysics of Galaxies +1405.5186 +1405.5196 Phenomenology +1405.6048 Biological Physics +1405.6412 Optimization and Control +1405.6654 Analysis of PDEs +1405.6665 Lattice +1405.6960 Phenomenology +1405.7062 +1405.7269 Optics +1405.7427 Phenomenology +1405.7764 Machine Learning +1405.7965 Neurons and Cognition +1406.0337 Representation Theory +1406.0544 Group Theory +1406.0748 Theory +1406.1994 Theory +1406.2019 Optics +1406.2140 Algebraic Geometry +1406.2279 Lattice +1406.2666 Statistical Mechanics +1406.2849 Astrophysics of Galaxies +1406.2913 Disordered Systems and Neural Networks +1406.3392 Atomic Physics +1406.3548 Strongly Correlated Electrons +1406.3675 Mesoscale and Nanoscale Physics +1406.4134 Theory +1406.4166 Strongly Correlated Electrons +1406.4601 Phenomenology +1406.4819 Mesoscale and Nanoscale Physics +1406.5400 Materials Science +1406.5602 Lattice +1406.5692 High Energy Astrophysical Phenomena +1406.5999 Mesoscale and Nanoscale Physics +1406.6313 Strongly Correlated Electrons +1406.6468 Experiment +1406.6649 Phenomenology +1406.6737 Strongly Correlated Electrons +1406.7160 Optimization and Control +1406.7318 Theory +1407.0162 High Energy Astrophysical Phenomena +1407.1265 +1407.1546 Cryptography and Security +1407.1745 Theory +1407.1855 History and Philosophy of Physics +1407.1909 Numerical Analysis +1407.2211 Phenomenology +1407.2323 Networking and Internet Architecture +1407.2598 Theory +1407.2986 Solar and Stellar Astrophysics +1407.3127 Mesoscale and Nanoscale Physics +1407.3181 Algebraic Geometry +1407.3308 Atmospheric and Oceanic Physics +1407.3921 Statistical Mechanics +1407.4037 +1407.4136 Statistical Mechanics +1407.4218 Optics +1407.4606 Strongly Correlated Electrons +1407.5083 Combinatorics +1407.5647 Functional Analysis +1407.6211 Experiment +1407.6400 Astrophysics of Galaxies +1407.6913 Instrumentation and Detectors +1407.7105 Instrumentation and Methods for Astrophysics +1407.8064 Optics +1407.8232 Phenomenology +1408.0421 Computational Physics +1408.1208 Earth and Planetary Astrophysics +1408.1285 Theory +1408.1583 Theory +1408.2328 Lattice +1408.2956 Theory +1408.3226 Experiment +1408.4552 Phenomenology +1408.4743 High Energy Astrophysical Phenomena +1408.4820 Phenomenology +1408.5183 Mesoscale and Nanoscale Physics +1408.5247 Atomic and Molecular Clusters +1408.5280 High Energy Astrophysical Phenomena +1408.5306 +1408.5719 Solar and Stellar Astrophysics +1408.5734 Atomic Physics +1409.0709 Superconductivity +1409.1257 Computation and Language +1409.1259 Computation and Language +1409.2127 Statistical Mechanics +1409.2496 Phenomenology +1409.2779 Astrophysics of Galaxies +1409.3298 Optics +1409.3438 Classical Physics +1409.4798 Superconductivity +1409.4836 Analysis of PDEs +1409.5507 Disordered Systems and Neural Networks +1409.5553 Solar and Stellar Astrophysics +1409.5703 +1409.5869 Phenomenology +1409.8093 Combinatorics +1409.8107 Solar and Stellar Astrophysics +1410.0038 Representation Theory +1410.0040 Combinatorics +1410.0600 Databases +1410.0640 Neural and Evolutionary Computing +1410.0833 Data Structures and Algorithms +1410.1001 Representation Theory +1410.1237 Social and Information Networks +1410.1263 Methodology +1410.1268 +1410.1278 Genomics +1410.1394 Materials Science +1410.1515 +1410.1519 +1410.1521 Group Theory +1410.1524 General Physics +1410.1525 Differential Geometry +1410.1542 Solar and Stellar Astrophysics +1410.1549 Biomolecules +1410.1553 Optimization and Control +1410.1558 Differential Geometry +1410.1561 Number Theory +1410.1564 General Physics +1410.1565 Instrumentation and Detectors +1410.1567 +1410.1574 Classical Analysis and ODEs +1410.1575 Functional Analysis +1410.1578 Number Theory +1410.1580 Statistical Mechanics +1410.1581 Probability +1410.1584 Dynamical Systems +1410.1587 Instrumentation and Detectors +1410.1589 Space Physics +1410.1590 Materials Science +1410.1595 Quantum Gases +1410.1598 Probability +1410.1600 Number Theory +1410.1603 Number Theory +1410.1605 +1410.1613 Cryptography and Security +1410.1615 Superconductivity +1410.1619 Operator Algebras +1410.1620 Probability +1410.1623 Dynamical Systems +1410.1624 +1410.1625 Digital Libraries +1410.1626 Statistical Mechanics +1410.1627 Information Theory +1410.1628 Optimization and Control +1410.1629 Instrumentation and Methods for Astrophysics +1410.1631 +1410.1632 Probability +1410.1633 Instrumentation and Detectors +1410.1635 +1410.1636 +1410.1639 Cryptography and Security +1410.1645 Lattice +1410.1649 +1410.1651 Solar and Stellar Astrophysics +1410.1652 Solar and Stellar Astrophysics +1410.1653 Data Structures and Algorithms +1410.1661 Statistics Theory +1410.1662 Number Theory +1410.1664 Analysis of PDEs +1410.1666 +1410.1667 Optics +1410.1669 Combinatorics +1410.1674 Fluid Dynamics +1410.1676 Fluid Dynamics +1410.1677 Phenomenology +1410.1680 Phenomenology +1410.1681 Networking and Internet Architecture +1410.1682 Solar and Stellar Astrophysics +1410.1683 Representation Theory +1410.1685 Experiment +1410.1689 Algebraic Topology +1410.1691 Differential Geometry +1410.1695 Functional Analysis +1410.1698 Algebraic Geometry +1410.1700 Differential Geometry +1410.1702 +1410.1704 +1410.1706 +1410.1708 Probability +1410.1715 Statistical Mechanics +1410.1716 Algebraic Geometry +1410.1718 Dynamical Systems +1410.1719 Phenomenology +1410.1723 Atomic Physics +1410.1726 Mathematical Software +1410.1728 Numerical Analysis +1410.1729 Software Engineering +1410.1730 Experiment +1410.1740 Digital Libraries +1410.1745 Solar and Stellar Astrophysics +1410.1746 Fluid Dynamics +1410.1747 Software Engineering +1410.1756 Instrumentation and Detectors +1410.1757 Dynamical Systems +1410.1759 Plasma Physics +1410.1760 Optimization and Control +1410.1764 Mathematical Software +1410.1766 Phenomenology +1410.1769 Instrumentation and Detectors +1410.1773 Other Computer Science +1410.1776 Artificial Intelligence +1410.1780 Superconductivity +1410.1781 Fluid Dynamics +1410.1784 Learning +1410.1787 Strongly Correlated Electrons +1410.1788 Operator Algebras +1410.1791 Experiment +1410.1796 Biological Physics +1410.1798 Optics +1410.1802 Probability +1410.1809 Algebraic Topology +1410.1810 Fluid Dynamics +1410.1812 Fluid Dynamics +1410.1815 Geophysics +1410.1818 Fluid Dynamics +1410.1819 Functional Analysis +1410.1828 Information Theory +1410.1831 Analysis of PDEs +1410.1835 Rings and Algebras +1410.1839 Data Structures and Algorithms +1410.1841 Space Physics +1410.1843 Combinatorics +1410.1847 Analysis of PDEs +1410.1849 +1410.1851 Networking and Internet Architecture +1410.1853 Soft Condensed Matter +1410.1860 Theory +1410.1864 Discrete Mathematics +1410.1866 Fluid Dynamics +cs/0310060 Computational Complexity +math/0408400 Group Theory +0811.2691 Applications +0901.3590 Learning +0903.5009 General Physics +0912.3987 Theory +1104.1756 Group Theory +1108.2413 Probability +1109.6278 Number Theory +1201.5219 Probability +1202.2586 Social and Information Networks +1202.2964 Probability +1203.4520 Geometric Topology +1203.6126 Algebraic Geometry +1205.6455 Differential Geometry +1209.2965 Strongly Correlated Electrons +1210.0834 Spectral Theory +1210.1072 Methodology +1210.7392 Materials Science +1211.4005 Rings and Algebras +1212.0978 +1301.3645 Atomic Physics +1301.5873 Statistics Theory +1302.2560 Fluid Dynamics +1302.3049 Biological Physics +1302.4158 +1303.0037 Atomic Physics +1303.0541 Algebraic Geometry +1303.2959 Functional Analysis +1303.6582 Probability +1303.7042 Disordered Systems and Neural Networks +1303.7222 +1304.0291 Strongly Correlated Electrons +1304.4805 Dynamical Systems +1305.4397 Algebraic Geometry +1305.6977 +1306.1142 +1306.2048 Probability +1306.6584 Digital Libraries +1306.6660 Cosmology and Nongalactic Astrophysics +1307.3602 Logic +1307.4794 Logic +1307.5507 Classical Physics +1307.6055 Chaotic Dynamics +1307.6751 Phenomenology +1307.6990 Strongly Correlated Electrons +1307.8357 High Energy Astrophysical Phenomena +1308.1020 Mesoscale and Nanoscale Physics +1308.1937 Numerical Analysis +1308.2595 Statistical Mechanics +1308.3820 Materials Science +1308.3988 Strongly Correlated Electrons +1308.6551 +1309.4669 +1309.5068 +1310.1138 Experiment +1310.2157 Theory +1310.2789 Materials Science +1310.3265 +1310.5105 Mesoscale and Nanoscale Physics +1310.5409 Information Theory +1310.5652 Mesoscale and Nanoscale Physics +1310.5847 Mesoscale and Nanoscale Physics +1310.7167 +1310.7261 Biological Physics +1311.0003 Earth and Planetary Astrophysics +1311.0502 Algebraic Geometry +1311.2859 Analysis of PDEs +1311.5154 +1312.0007 Cosmology and Nongalactic Astrophysics +1312.1845 +1312.3405 Instrumentation and Detectors +1312.3932 Phenomenology +1312.4027 Biological Physics +1312.4029 Biological Physics +1312.4821 Experiment +1312.5274 Chemical Physics +1312.5790 +1401.0383 Materials Science +1401.0989 Statistical Mechanics +1401.1097 Atmospheric and Oceanic Physics +1401.1287 +1401.1662 Classical Analysis and ODEs +1401.1889 Accelerator Physics +1401.2656 Cosmology and Nongalactic Astrophysics +1401.2698 Mesoscale and Nanoscale Physics +1401.5080 High Energy Astrophysical Phenomena +1401.6789 General Physics +1401.6902 Theory +1401.7771 +1402.0732 Experiment +1402.0905 Strongly Correlated Electrons +1402.1250 Strongly Correlated Electrons +1402.2205 +1402.3448 Formal Languages and Automata Theory +1402.3745 Solar and Stellar Astrophysics +1402.3912 Combinatorics +1402.4316 Statistics Theory +1402.5185 Analysis of PDEs +1402.6152 Chaotic Dynamics +1402.6237 Analysis of PDEs +1402.6316 Atmospheric and Oceanic Physics +1402.6317 Digital Libraries +1402.6322 Theory +1402.6337 High Energy Astrophysical Phenomena +1402.6357 Algebraic Geometry +1402.6361 Optimization and Control +1402.6364 Probability +1402.6367 Populations and Evolution +1402.6375 Solar and Stellar Astrophysics +1402.6377 Combinatorics +1402.6378 Theory +1402.6387 Computer Vision and Pattern Recognition +1402.6390 Complex Variables +1402.6391 Algebraic Topology +1402.6394 Statistical Mechanics +1402.6395 Group Theory +1402.6400 Phenomenology +1402.6402 Numerical Analysis +1402.6404 Information Theory +1402.6406 +1402.6408 Soft Condensed Matter +1402.6409 Statistics Theory +1402.6411 Instrumentation and Detectors +1402.6413 Mesoscale and Nanoscale Physics +1402.6416 Computer Vision and Pattern Recognition +1402.6420 Algebraic Geometry +1402.6421 Cryptography and Security +1402.6424 Operator Algebras +1402.6426 Functional Analysis +1402.6428 Neural and Evolutionary Computing +1402.6429 Functional Analysis +1402.6434 +1402.6438 Algebraic Geometry +1402.6439 Experiment +1402.6440 Number Theory +1402.6442 Solar and Stellar Astrophysics +1402.6445 +1402.6451 Mesoscale and Nanoscale Physics +1402.6461 Cryptography and Security +1402.6464 Optics +1402.6465 Neurons and Cognition +1402.6466 Combinatorics +1402.6467 Optics +1402.6468 Optics +1402.6471 Analysis of PDEs +1402.6475 Disordered Systems and Neural Networks +1402.6478 Software Engineering +1402.6479 Analysis of PDEs +1402.6485 Data Structures and Algorithms +1402.6489 Physics and Society +1402.6492 Statistical Mechanics +1402.6494 Geophysics +1402.6495 Soft Condensed Matter +1402.6497 Cryptography and Security +1402.6499 Analysis of PDEs +1402.6509 Number Theory +1402.6512 Materials Science +1402.6513 Logic +1402.6515 Information Theory +1402.6516 Computation and Language +1402.6518 Earth and Planetary Astrophysics +1402.6520 Logic +1402.6522 +1402.6524 Analysis of PDEs +1402.6533 Biomolecules +1402.6538 Soft Condensed Matter +1402.6539 Classical Analysis and ODEs +1402.6547 +1402.6549 +1402.6550 Statistics Theory +1402.6552 Learning +1402.6556 Neural and Evolutionary Computing +1402.6557 Solar and Stellar Astrophysics +1402.6560 Artificial Intelligence +1402.6564 Functional Analysis +1402.6565 Group Theory +1402.6569 Materials Science +1402.6572 Representation Theory +1402.6576 Probability +1402.6577 History and Overview +1402.6579 Number Theory +1402.6580 Phenomenology +1402.6583 Trading and Market Microstructure +1402.6585 Experiment +1402.6586 Disordered Systems and Neural Networks +1402.6595 Analysis of PDEs +1402.6600 Analysis of PDEs +1402.6606 Phenomenology +1402.6608 Commutative Algebra +1402.6610 Formal Languages and Automata Theory +1402.6615 Functional Analysis +1402.6621 Atomic Physics +1402.6622 Materials Science +1402.6624 Statistical Mechanics +1402.6625 Rings and Algebras +1402.6626 Strongly Correlated Electrons +1402.6631 Numerical Analysis +1402.6632 Materials Science +1402.6635 Symbolic Computation +1402.6636 Computational Engineering, Finance, and Science +1402.6640 Analysis of PDEs +1402.6643 Plasma Physics +1402.6645 General Mathematics +1402.6650 Computer Vision and Pattern Recognition +1402.6658 Computational Complexity +1402.6662 Superconductivity +1402.6663 Artificial Intelligence +1402.6664 History and Philosophy of Physics +1402.6666 Applications +1402.6673 Algebraic Topology +1402.6679 Number Theory +1402.6682 Number Theory +1402.6687 Differential Geometry +1402.6689 Differential Geometry +1402.6690 Social and Information Networks +0706.1521 Phenomenology +0902.3303 Dynamical Systems +0908.4109 Strongly Correlated Electrons +0911.2687 Theory +1001.4275 Representation Theory +1003.2367 Strongly Correlated Electrons +1008.3921 Number Theory +1101.5459 Dynamical Systems +1102.1731 Strongly Correlated Electrons +1104.4298 Computer Vision and Pattern Recognition +1105.0664 Dynamical Systems +1105.2670 +1106.0786 Representation Theory +1106.2666 Dynamical Systems +1107.2605 +1108.4169 Strongly Correlated Electrons +1111.5666 Strongly Correlated Electrons +1112.3941 Representation Theory +1206.5909 Phenomenology +1206.6158 Atomic Physics +1207.1245 Probability +1207.5891 Rings and Algebras +1207.6793 Probability +1210.6139 Combinatorics +1211.3972 Analysis of PDEs +1211.6759 Instrumentation and Detectors +1212.2852 +1212.3753 Information Theory +1212.5574 Dynamical Systems +1212.6345 Operator Algebras +1212.6953 Mesoscale and Nanoscale Physics +1301.1264 +1301.1305 Methodology +1301.5588 Logic +1302.1443 Analysis of PDEs +1302.5604 +1303.2955 Mesoscale and Nanoscale Physics +1303.3063 Phenomenology +1303.4456 Analysis of PDEs +1303.5516 +1304.2070 Numerical Analysis +1304.2528 Physics and Society +1304.4659 Rings and Algebras +1305.0843 Strongly Correlated Electrons +1305.1243 Number Theory +1305.2737 Fluid Dynamics +1305.4516 +1305.7373 Dynamical Systems +1307.0771 +1307.5238 +1307.6256 Optics +1307.7902 +1308.1338 Classical Analysis and ODEs +1308.1487 Probability +1308.5961 +1308.6520 Numerical Analysis +1309.3451 Strongly Correlated Electrons +1309.3920 Number Theory +1309.6359 Phenomenology +1310.2036 Spectral Theory +1310.5192 Probability +1310.5194 Mesoscale and Nanoscale Physics +1311.2221 Functional Analysis +1311.5817 Mesoscale and Nanoscale Physics +1311.7098 Theory +1312.0689 Mesoscale and Nanoscale Physics +1312.1503 Mesoscale and Nanoscale Physics +1312.2553 Fluid Dynamics +1312.6139 Cosmology and Nongalactic Astrophysics +1312.7174 Exactly Solvable and Integrable Systems +1312.7175 +1312.7772 Phenomenology +1401.2523 Probability +1401.2634 High Energy Astrophysical Phenomena +1401.4172 Cosmology and Nongalactic Astrophysics +1401.4663 Information Theory +1401.6291 Strongly Correlated Electrons +1402.0443 Algebraic Geometry +1402.1029 High Energy Astrophysical Phenomena +1402.2235 Mesoscale and Nanoscale Physics +1402.2371 Algebraic Geometry +1402.2601 Numerical Analysis +1402.3475 Soft Condensed Matter +1403.0120 Strongly Correlated Electrons +1403.0150 Optimization and Control +1403.0311 Materials Science +1403.0782 Other Condensed Matter +1403.1338 +1403.2262 Superconductivity +1403.2424 +1403.4652 Optics +1403.5876 Number Theory +1403.5996 Data Structures and Algorithms +1403.7667 Combinatorics +1404.0659 Theory +1404.0930 Theory +1404.2987 Astrophysics of Galaxies +1404.3204 Phenomenology +1404.4148 Optimization and Control +1404.5540 +1404.5639 Instrumentation and Methods for Astrophysics +1404.5766 Theory +1404.6559 +1404.6665 Analysis of PDEs +1404.7434 Materials Science +1404.7718 Materials Science +1405.0169 Combinatorics +1405.1071 Artificial Intelligence +1405.2361 Atomic Physics +1405.2676 Combinatorics +1405.2831 +1405.3027 Algebraic Geometry +1405.4262 Strongly Correlated Electrons +1405.5788 Fluid Dynamics +1405.6113 Theory +1405.6545 Statistics Theory +1405.6614 Quantum Gases +1405.7937 Superconductivity +1406.1234 Computation and Language +1406.2803 Number Theory +1406.7506 Optics +1407.1617 Phenomenology +1407.1853 Computer Science and Game Theory +1407.2088 Biomolecules +1407.2162 Chemical Physics +1407.2826 Algebraic Topology +1407.3535 Computer Vision and Pattern Recognition +1407.3755 Representation Theory +1407.4724 Theory +1407.4987 Combinatorics +1407.5585 Complex Variables +1407.6202 Functional Analysis +1407.6531 Combinatorics +1407.6595 Biomolecules +1407.6596 Biomolecules +1407.6628 Instrumentation and Methods for Astrophysics +1407.6704 Computational Physics +1407.6713 Materials Science +1407.6714 Social and Information Networks +1407.6721 Mesoscale and Nanoscale Physics +1407.6726 Strongly Correlated Electrons +1407.6737 High Energy Astrophysical Phenomena +1407.6741 Optics +1407.6742 Theory +1407.6745 Distributed, Parallel, and Cluster Computing +1407.6748 Computer Vision and Pattern Recognition +1407.6752 Complex Variables +1407.6754 Materials Science +1407.6757 Computer Science and Game Theory +1407.6762 +1407.6764 Algebraic Geometry +1407.6769 Probability +1407.6770 History and Philosophy of Physics +1407.6771 Optimization and Control +1407.6773 Optics +1407.6782 +1407.6784 Algebraic Geometry +1407.6797 Optics +1407.6802 Rings and Algebras +1407.6806 Quantum Algebra +1407.6809 Atomic Physics +1407.6821 Fluid Dynamics +1407.6822 Numerical Analysis +1407.6823 Social and Information Networks +1407.6824 Materials Science +1407.6826 Instrumentation and Methods for Astrophysics +1407.6830 Functional Analysis +1407.6831 Probability +1407.6832 Data Structures and Algorithms +1407.6834 Probability +1407.6835 Algebraic Geometry +1407.6850 Group Theory +1407.6851 General Finance +1407.6853 Computation and Language +1407.6857 Algebraic Geometry +1407.6861 Mesoscale and Nanoscale Physics +1407.6869 Data Structures and Algorithms +1407.6871 Classical Analysis and ODEs +1407.6872 Computation and Language +1407.6877 Multimedia +1407.6878 Distributed, Parallel, and Cluster Computing +1407.6879 Multimedia +1407.6881 Analysis of PDEs +1407.6885 Artificial Intelligence +1407.6886 Strongly Correlated Electrons +1407.6889 Quantitative Methods +1407.6898 Optimization and Control +1407.6899 Algebraic Geometry +1407.6903 Biomolecules +1407.6910 +1407.6915 Distributed, Parallel, and Cluster Computing +1407.6916 Instrumentation and Methods for Astrophysics +1407.6917 Exactly Solvable and Integrable Systems +1407.6920 Atmospheric and Oceanic Physics +1407.6926 Functional Analysis +1407.6932 Distributed, Parallel, and Cluster Computing +1407.6938 High Energy Astrophysical Phenomena +1407.6942 Analysis of PDEs +1407.6946 Solar and Stellar Astrophysics +1407.6947 Differential Geometry +1407.6948 Cosmology and Nongalactic Astrophysics +1407.6949 Machine Learning +1407.6950 Discrete Mathematics +1407.6952 Information Retrieval +1407.6964 Mesoscale and Nanoscale Physics +1407.6968 Programming Languages +1407.6969 Category Theory +1407.6971 Analysis of PDEs +1407.6973 Classical Analysis and ODEs +1407.6974 +1407.6977 Probability +1407.6979 Plasma Physics +1407.6982 Optimization and Control +1407.6986 Dynamical Systems +1407.6987 Optics +1407.6988 Classical Analysis and ODEs +1407.6994 Statistical Mechanics +1407.6996 Solar and Stellar Astrophysics +1407.7009 +1407.7011 Cryptography and Security +1407.7015 Computer Science and Game Theory +1407.7017 Combinatorics +1407.7019 Geometric Topology +1407.7024 Optimization and Control +1407.7027 Neurons and Cognition +cond-mat/0209410 Strongly Correlated Electrons +cond-mat/0407334 Strongly Correlated Electrons +math/0506222 Dynamical Systems +math/0511035 Dynamical Systems +0708.3078 Operator Algebras +0806.1582 Materials Science +0809.5187 Materials Science +0903.2186 Materials Science +1002.0520 Soft Condensed Matter +1004.2642 Computational Complexity +1010.0291 Algebraic Topology +1011.2593 Group Theory +1011.4161 Physics and Society +1012.0064 Soft Condensed Matter +1012.1846 Superconductivity +1103.3704 Soft Condensed Matter +1103.4964 Algebraic Topology +1104.0393 Algebraic Topology +1104.4671 Earth and Planetary Astrophysics +1105.2432 Computer Science and Game Theory +1106.6246 Probability +1107.1026 Phenomenology +1109.1749 Pricing of Securities +1110.5610 Soft Condensed Matter +1111.1361 Spectral Theory +1111.6942 Solar and Stellar Astrophysics +1201.0815 Solar and Stellar Astrophysics +1201.1845 Other Condensed Matter +1203.6413 Networking and Internet Architecture +1204.0849 Discrete Mathematics +1204.2149 Quantum Gases +1204.2900 Combinatorics +1205.3475 Materials Science +1205.4502 Optics +1206.4209 Populations and Evolution +1206.4271 Algebraic Geometry +1207.6584 Spectral Theory +1207.6734 Theory +1208.3431 Solar and Stellar Astrophysics +1208.3734 Atmospheric and Oceanic Physics +1208.4074 Theory +1208.4438 Theory +1208.5119 Number Theory +1209.0298 Statistical Mechanics +1210.0231 Analysis of PDEs +1210.6217 Combinatorics +1210.8439 Data Structures and Algorithms +1211.0760 +1211.1723 Quantum Gases +1211.3763 Soft Condensed Matter +1211.5942 Commutative Algebra +1212.0335 Superconductivity +1301.0237 Numerical Analysis +1301.0972 Mesoscale and Nanoscale Physics +1301.1187 Numerical Analysis +1301.2080 Combinatorics +1301.3083 Atmospheric and Oceanic Physics +1301.5702 Number Theory +1301.6454 Combinatorics +1302.2972 +1302.3419 +1302.6491 Pricing of Securities +1302.6724 +1303.0182 Differential Geometry +1303.1123 +1303.1601 Mesoscale and Nanoscale Physics +1303.2438 Information Retrieval +1303.3321 Solar and Stellar Astrophysics +1304.1283 Statistical Mechanics +1304.3920 +1305.3016 Materials Science +1305.3911 General Physics +1305.3990 Strongly Correlated Electrons +1305.7167 Programming Languages +1306.0921 Theory +1306.2572 Classical Physics +1306.2662 Functional Analysis +1306.4405 Theory +1306.4641 Classical Physics +1306.6522 Mesoscale and Nanoscale Physics +1307.1208 Medical Physics +1307.4069 Materials Science +1307.6419 Mesoscale and Nanoscale Physics +1308.0193 Phenomenology +1308.0543 Probability +1308.2747 Information Theory +1308.3621 Phenomenology +1308.5918 Analysis of PDEs +1308.5979 Phenomenology +1308.6074 Genomics +1309.0086 Strongly Correlated Electrons +1309.1091 Soft Condensed Matter +1309.1174 +1309.1582 Analysis of PDEs +1309.1886 Combinatorics +1309.2518 Group Theory +1309.5274 Computational Finance +1309.6754 Strongly Correlated Electrons +1310.0639 Mesoscale and Nanoscale Physics +1310.1323 Number Theory +1310.2070 Atomic Physics +1310.2234 Phenomenology +1310.2552 Representation Theory +1310.4911 Statistical Mechanics +1310.7596 +1310.8140 General Mathematics +1310.8265 +1311.0139 High Energy Astrophysical Phenomena +1311.0169 Statistical Mechanics +1311.1000 Quantum Gases +1311.2435 Populations and Evolution +1311.2957 +1311.3343 +1311.3476 Superconductivity +1311.3545 +1311.4211 Physics and Society +1311.4887 Earth and Planetary Astrophysics +1311.7136 Mesoscale and Nanoscale Physics +1311.7417 Mesoscale and Nanoscale Physics +1311.7610 +1312.0992 Strongly Correlated Electrons +1312.3159 +1312.3174 Geometric Topology +1312.4838 Plasma Physics +1312.5017 Geometric Topology +1312.5303 +1312.6866 +1312.7293 +1401.1653 +1401.1726 Analysis of PDEs +1401.1813 Earth and Planetary Astrophysics +1401.2268 Functional Analysis +1401.3076 Plasma Physics +1401.4280 Earth and Planetary Astrophysics +1401.4651 +1401.5970 Phenomenology +1401.6032 Algebraic Geometry +1401.6259 Mesoscale and Nanoscale Physics +1401.6626 Information Theory +1401.6890 Number Theory +1402.1548 Instrumentation and Methods for Astrophysics +1402.2856 Differential Geometry +1402.4535 Computer Science and Game Theory +1403.0423 +1403.1711 Astrophysics of Galaxies +1403.2139 +1403.3163 Probability +1403.3238 Earth and Planetary Astrophysics +1403.5111 Data Structures and Algorithms +1403.5117 Materials Science +1403.5260 Optimization and Control +1403.6609 Combinatorics +1403.7496 Rings and Algebras +1404.0638 Operator Algebras +1404.0672 Computational Engineering, Finance, and Science +1404.0674 Populations and Evolution +1404.0675 Theory +1404.0689 Materials Science +1404.0695 Neural and Evolutionary Computing +1404.0696 Databases +1404.0698 Software Engineering +1404.0699 Number Theory +1404.0701 Other Quantitative Biology +1404.0704 Quantum Gases +1404.0705 Materials Science +1404.0708 Neural and Evolutionary Computing +1404.0717 Algebraic Topology +1404.0718 Discrete Mathematics +1404.0723 Numerical Analysis +1404.0724 Algebraic Topology +1404.0729 Algebraic Topology +1404.0731 Combinatorics +1404.0741 +1404.0742 Materials Science +1404.0752 Machine Learning +1404.0753 Data Structures and Algorithms +1404.0771 Analysis of PDEs +1404.0774 Distributed, Parallel, and Cluster Computing +1404.0775 Number Theory +1404.0780 Data Structures and Algorithms +1404.0781 Cryptography and Security +1404.0782 Soft Condensed Matter +1404.0783 Data Structures and Algorithms +1404.0784 Logic +1404.0790 Optimization and Control +1404.0791 +1404.0792 Analysis of PDEs +1404.0797 Superconductivity +1404.0798 Formal Languages and Automata Theory +1404.0801 Earth and Planetary Astrophysics +1404.0804 Number Theory +1404.0809 Superconductivity +1404.0810 Phenomenology +1404.0812 Numerical Analysis +1404.0814 Optimization and Control +1404.0821 +1404.0826 Probability +1404.0832 Information Theory +1404.0834 Computer Science and Game Theory +1404.0835 Computer Science and Game Theory +1404.0836 Cryptography and Security +1404.0837 Logic in Computer Science +1404.0838 Logic in Computer Science +1404.0839 Computer Science and Game Theory +1404.0840 Logic in Computer Science +1404.0841 Logic in Computer Science +1404.0842 Computer Science and Game Theory +1404.0843 Logic in Computer Science +1404.0844 Logic in Computer Science +1404.0845 Computer Science and Game Theory +1404.0846 Software Engineering +1404.0847 Software Engineering +1404.0849 Software Engineering +1404.0850 Software Engineering +1404.0851 Software Engineering +1404.0852 Software Engineering +1404.0853 Software Engineering +1404.0854 Logic in Computer Science +1404.0855 Software Engineering +1404.0858 +1404.0859 Materials Science +1404.0861 Representation Theory +1404.0865 Solar and Stellar Astrophysics +1404.0866 Mesoscale and Nanoscale Physics +1404.0868 Neural and Evolutionary Computing +1404.0869 Chaotic Dynamics +1404.0871 Metric Geometry +1404.0873 Group Theory +1404.0874 Group Theory +1404.0878 Differential Geometry +1404.0879 Pricing of Securities +1404.0880 Computation +1404.0884 Materials Science +1404.0889 High Energy Astrophysical Phenomena +1404.0890 Classical Analysis and ODEs +1404.0895 Complex Variables +1404.0897 +1404.0904 Number Theory +1404.0905 Classical Analysis and ODEs +1404.0907 Functional Analysis +1404.0911 Superconductivity +1404.0913 Analysis of PDEs +1404.0914 Accelerator Physics +1404.0916 Superconductivity +1404.0918 Accelerator Physics +1404.0920 Probability +1404.0921 Astrophysics of Galaxies +1404.0923 Accelerator Physics +1404.0927 Accelerator Physics +1404.0931 Combinatorics +1404.0933 Learning +1404.0934 Human-Computer Interaction +1404.0940 Theory +1404.0941 Theory +1404.0943 Accelerator Physics +1404.0944 Accelerator Physics +1404.0945 Accelerator Physics +1404.0946 +1404.0950 Combinatorics +1404.0952 Accelerator Physics +1404.0960 Accelerator Physics +1404.0961 Mesoscale and Nanoscale Physics +1404.0965 Information Theory +1404.0966 Accelerator Physics +1404.0967 Computational Complexity +1404.0972 Numerical Analysis +1404.0975 Performance +1404.0977 Data Structures and Algorithms +1404.0978 Materials Science +1404.0986 Theory +1404.0992 Number Theory +1404.0993 Instrumentation and Detectors +1404.0997 Combinatorics +1404.1000 +1404.1009 Social and Information Networks +1404.1011 Atmospheric and Oceanic Physics +1404.1013 Experiment +1404.1017 Populations and Evolution +1404.1029 Genomics +1404.1030 Complex Variables +1404.1032 Superconductivity +1404.1039 Differential Geometry +1404.1040 Phenomenology +1404.1041 Algebraic Geometry +1404.1042 Dynamical Systems +1404.1043 Functional Analysis +1404.1045 +1404.1047 Rings and Algebras +1404.1048 Mesoscale and Nanoscale Physics +1404.1051 Trading and Market Microstructure +1404.1053 Phenomenology +1404.1056 Data Structures and Algorithms +1404.1057 Genomics +1404.1058 Phenomenology +1404.1059 Data Structures and Algorithms +1404.1063 Optimization and Control +1404.1064 Theory +1404.1066 Learning +1404.1068 Information Theory +1404.1069 Populations and Evolution +math/0409560 Complex Variables +math/0510539 Complex Variables +math/0510578 Dynamical Systems +math/0701686 Group Theory +0706.3250 Number Theory +0706.3251 Combinatorics +0706.3253 Combinatorics +0803.0418 +0809.2430 Data Analysis, Statistics and Probability +0902.3591 Earth and Planetary Astrophysics +1004.2156 Algebraic Geometry +1009.2174 General Mathematics +1101.0712 +1104.2612 Instrumentation and Methods for Astrophysics +1105.4212 Combinatorics +1106.0152 Earth and Planetary Astrophysics +1109.0072 Physics and Society +1109.0814 Complex Variables +1111.2673 Superconductivity +1111.4829 Geophysics +1201.1945 Classical Analysis and ODEs +1201.3221 Combinatorics +1201.5952 Numerical Analysis +1202.2278 General Physics +1202.5070 Statistics Theory +1203.3661 +1203.4091 Solar and Stellar Astrophysics +1204.2195 Group Theory +1204.4870 Numerical Analysis +1205.2963 Classical Analysis and ODEs +1205.3354 Phenomenology +1205.5705 Representation Theory +1205.6957 +1206.0344 Populations and Evolution +1206.3636 Differential Geometry +1206.4144 Dynamical Systems +1207.6116 Cosmology and Nongalactic Astrophysics +1207.6872 +1207.6932 +1207.6934 Optics +1208.4494 Algebraic Topology +1209.0283 Rings and Algebras +1209.0287 Combinatorics +1209.1054 Phenomenology +1209.5360 Data Structures and Algorithms +1209.5860 Machine Learning +1209.6042 Theory +1210.6013 Combinatorics +1211.2952 Dynamical Systems +1211.4218 Computational Engineering, Finance, and Science +1211.5022 Complex Variables +1211.5151 Geophysics +1211.5153 Geophysics +1212.3410 Numerical Analysis +1212.5834 Differential Geometry +1212.6674 Phenomenology +1301.1045 Geophysics +1301.2861 Numerical Analysis +1301.3285 Materials Science +1301.5421 Algebraic Topology +1301.5799 Functional Analysis +1301.5974 General Finance +1301.6825 Classical Analysis and ODEs +1302.0112 Numerical Analysis +1302.0219 General Topology +1302.0423 Phenomenology +1302.0466 +1302.1937 Multiagent Systems +1302.3006 Probability +1302.5099 Strongly Correlated Electrons +1302.7104 Soft Condensed Matter +1303.1084 Phenomenology +1303.4851 Classical Analysis and ODEs +1303.6366 Classical Analysis and ODEs +1303.7461 Machine Learning +1304.0468 Phenomenology +1304.1365 +1304.2433 Phenomenology +1304.3805 Numerical Analysis +1304.3991 +1304.4699 Optics +1304.5492 +1304.6272 Mesoscale and Nanoscale Physics +1304.6623 Populations and Evolution +1304.6876 Accelerator Physics +1304.6891 Earth and Planetary Astrophysics +1304.7926 Mesoscale and Nanoscale Physics +1305.1769 Phenomenology +1305.3007 Soft Condensed Matter +1305.3515 Superconductivity +1305.4044 Adaptation and Self-Organizing Systems +1305.5219 Analysis of PDEs +1305.6338 Theory +1306.2581 Information Theory +1306.2762 Disordered Systems and Neural Networks +1306.2858 Materials Science +1306.3197 Theory +1306.4120 Statistical Mechanics +1306.4990 Strongly Correlated Electrons +1306.5071 Analysis of PDEs +1307.1112 Phenomenology +1307.1401 Classical Analysis and ODEs +1307.1666 High Energy Astrophysical Phenomena +1307.2362 Statistical Mechanics +1307.2831 Theory +1307.3180 Computation +1307.3564 Statistical Mechanics +1307.4988 High Energy Astrophysical Phenomena +1307.5202 Experiment +1307.5448 General Literature +1307.6175 +1307.8058 Numerical Analysis +1307.8288 Mesoscale and Nanoscale Physics +1307.8349 Quantum Gases +1308.0773 Risk Management +1308.1413 Theory +1308.1689 Mesoscale and Nanoscale Physics +1308.2089 +1308.2142 Logic in Computer Science +1308.4732 Optimization and Control +1308.5877 Classical Analysis and ODEs +1309.0599 Molecular Networks +1309.1398 Earth and Planetary Astrophysics +1309.1441 Quantum Gases +1309.1672 Quantum Gases +1309.1930 Analysis of PDEs +1309.2477 Analysis of PDEs +1309.3646 Mesoscale and Nanoscale Physics +1309.4652 Statistics Theory +1309.4656 Statistics Theory +1309.4667 Statistics Theory +1309.4864 Statistics Theory +1309.4889 Statistics Theory +1309.5104 Mesoscale and Nanoscale Physics +1309.6761 Phenomenology +1309.7931 Analysis of PDEs +1309.7994 Cosmology and Nongalactic Astrophysics +1310.0506 Algebraic Geometry +1310.3624 Cosmology and Nongalactic Astrophysics +1310.4194 Theory +1310.5284 Plasma Physics +1310.6775 Artificial Intelligence +1310.7196 Popular Physics +1311.0626 Strongly Correlated Electrons +1311.1366 Rings and Algebras +1311.1563 Numerical Analysis +1311.2334 Learning +1311.2726 Probability +1311.2801 Theory +1311.4090 Combinatorics +1311.5256 Differential Geometry +1311.5274 Methodology +1311.7574 Statistical Mechanics +1312.0863 +1312.0985 Differential Geometry +1312.0990 Differential Geometry +1312.3279 Solar and Stellar Astrophysics +1312.4275 Theory +1312.4431 +1312.4461 Learning +1312.5661 Probability +1312.5918 Instrumentation and Methods for Astrophysics +1312.6491 Probability +1312.7228 Mesoscale and Nanoscale Physics +1312.7526 Theory +1312.7824 Dynamical Systems +1401.0393 Theory +1401.0595 Cosmology and Nongalactic Astrophysics +1401.1327 Popular Physics +1401.1974 Learning +1401.3061 Physics Education +1401.3766 Logic in Computer Science +1401.4104 +1401.4412 Instrumentation and Detectors +1401.4451 Information Theory +1401.5031 Artificial Intelligence +1401.5143 Data Structures and Algorithms +1401.5642 Classical Analysis and ODEs +1401.5765 Mesoscale and Nanoscale Physics +1401.6128 Instrumentation and Methods for Astrophysics +1401.6295 Superconductivity +1401.6613 High Energy Astrophysical Phenomena +1401.6687 Mesoscale and Nanoscale Physics +1401.7005 Combinatorics +1401.7021 Combinatorics +1401.7081 +1401.7276 Earth and Planetary Astrophysics +1401.7329 Cosmology and Nongalactic Astrophysics +1401.7344 General Finance +1401.7345 Optics +1401.7348 Solar and Stellar Astrophysics +1401.7356 Representation Theory +1401.7358 +1401.7362 Biological Physics +1401.7366 Differential Geometry +1401.7374 Networking and Internet Architecture +1401.7375 Social and Information Networks +1401.7381 Combinatorics +1401.7382 +1401.7383 Geometric Topology +1401.7389 Rings and Algebras +1401.7390 Optimization and Control +1401.7391 Analysis of PDEs +1401.7402 Analysis of PDEs +1401.7403 Probability +1401.7407 Earth and Planetary Astrophysics +1401.7408 Differential Geometry +1401.7409 Numerical Analysis +1401.7411 Emerging Technologies +1401.7414 Combinatorics +1401.7415 Differential Geometry +1401.7416 Data Structures and Algorithms +1401.7420 Phenomenology +1401.7422 Materials Science +1401.7425 Social and Information Networks +1401.7428 Functional Analysis +1401.7434 Instrumentation and Methods for Astrophysics +1401.7435 Computers and Society +1401.7436 Networking and Internet Architecture +1401.7437 Networking and Internet Architecture +1401.7438 Cosmology and Nongalactic Astrophysics +1401.7439 Soft Condensed Matter +1401.7442 Algebraic Geometry +1401.7444 Cryptography and Security +1401.7447 Soft Condensed Matter +1401.7449 Differential Geometry +1401.7452 Soft Condensed Matter +1401.7453 Classical Analysis and ODEs +1401.7455 Soft Condensed Matter +1401.7456 Optimization and Control +1401.7457 Genomics +1401.7463 Artificial Intelligence +1401.7465 Earth and Planetary Astrophysics +1401.7467 Analysis of PDEs +1401.7468 Differential Geometry +1401.7469 Mesoscale and Nanoscale Physics +1401.7470 +1401.7474 Other Statistics +1401.7481 Accelerator Physics +1401.7482 Quantum Gases +1401.7483 Cryptography and Security +1401.7485 Information Theory +1401.7486 Computer Vision and Pattern Recognition +1401.7490 Earth and Planetary Astrophysics +1401.7492 Information Theory +1401.7493 Soft Condensed Matter +1401.7494 Distributed, Parallel, and Cluster Computing +1401.7495 Algebraic Geometry +1401.7496 General Finance +1401.7497 Biological Physics +1401.7499 Networking and Internet Architecture +1401.7500 +1401.7503 Phenomenology +1401.7505 Information Theory +1401.7508 Information Theory +1401.7509 Functional Analysis +1401.7510 Materials Science +1401.7511 Combinatorics +1401.7512 +1401.7513 Group Theory +1401.7518 Superconductivity +1401.7521 Materials Science +1401.7523 +1401.7524 Solar and Stellar Astrophysics +1401.7531 Rings and Algebras +1401.7532 Rings and Algebras +1401.7536 History and Philosophy of Physics +1401.7537 Soft Condensed Matter +1401.7538 Information Theory +1401.7539 Software Engineering +1401.7542 Plasma Physics +1401.7543 General Mathematics +1401.7547 Digital Libraries +1401.7548 Quantum Gases +1401.7552 Chaotic Dynamics +1401.7553 Numerical Analysis +1401.7555 Number Theory +1401.7557 Soft Condensed Matter +1401.7558 Optics +1401.7563 +1401.7567 Tissues and Organs +1401.7568 Probability +1401.7572 +1401.7573 Soft Condensed Matter +1401.7578 Materials Science +1401.7583 Software Engineering +1401.7584 Databases +1401.7586 Software Engineering +1401.7588 Number Theory +1401.7589 Populations and Evolution +1401.7591 Data Structures and Algorithms +1401.7594 Data Structures and Algorithms +1401.7598 Number Theory +1401.7607 Solar and Stellar Astrophysics +1401.7619 Numerical Analysis +1401.7620 Machine Learning +1401.7631 Computational Engineering, Finance, and Science +1401.7632 Algebraic Geometry +1401.7634 Group Theory +1401.7645 Methodology +1401.7647 Algebraic Geometry +1401.7650 Analysis of PDEs +1401.7651 Networking and Internet Architecture +cond-mat/0004412 Statistical Mechanics +cond-mat/0609259 Statistical Mechanics +math/0602634 Combinatorics +physics/0211071 General Physics +physics/0506200 Optics +physics/9908029 Atomic Physics +physics/9909020 Atomic Physics +0803.0099 Soft Condensed Matter +0902.0192 Soft Condensed Matter +0902.0256 Cosmology and Nongalactic Astrophysics +0909.2466 Soft Condensed Matter +0912.2510 +1001.1196 Commutative Algebra +1006.1834 +1006.1842 +1006.1847 +1008.1350 Probability +1010.2403 General Physics +1010.4966 +1010.5104 General Physics +1011.3874 Analysis of PDEs +1011.5968 Materials Science +1102.5206 Discrete Mathematics +1102.5443 Superconductivity +1107.1401 Probability +1110.3896 Probability +1111.3695 +1111.7303 Probability +1201.0271 +1201.2360 Distributed, Parallel, and Cluster Computing +1202.2942 Algebraic Geometry +1202.4090 Mesoscale and Nanoscale Physics +1202.4948 Algebraic Geometry +1204.5300 Strongly Correlated Electrons +1205.3350 Cosmology and Nongalactic Astrophysics +1206.4281 Algebraic Geometry +1206.4581 Computational Geometry +1207.4007 Superconductivity +1207.6321 Theory +1208.1619 Superconductivity +1208.2557 Probability +1209.2918 Information Theory +1209.3452 Strongly Correlated Electrons +1209.5011 Rings and Algebras +1210.3607 Rings and Algebras +1210.4253 Algebraic Geometry +1210.6521 General Topology +1211.2451 +1211.6183 Analysis of PDEs +1212.1426 Algebraic Geometry +1212.3468 Logic +1212.4628 Analysis of PDEs +1212.6955 Combinatorics +1301.0914 High Energy Astrophysical Phenomena +1301.2045 Number Theory +1301.4476 Classical Analysis and ODEs +1302.3913 Machine Learning +1302.6006 +1302.6134 +1303.0691 Machine Learning +1303.3625 +1303.4401 Genomics +1303.4655 Optics +1303.7153 Superconductivity +1304.0137 Materials Science +1304.1615 Materials Science +1304.1812 +1304.2882 Phenomenology +1304.6516 +1304.8045 Quantitative Methods +1305.0704 Analysis of PDEs +1305.2995 Superconductivity +1305.7198 Differential Geometry +1306.0314 +1306.0605 Solar and Stellar Astrophysics +1306.0855 Chemical Physics +1306.2836 +1306.2943 Phenomenology +1306.5550 Social and Information Networks +1307.1615 Discrete Mathematics +1307.2644 High Energy Astrophysical Phenomena +1307.2853 Metric Geometry +1307.3418 Experiment +1307.4090 Cosmology and Nongalactic Astrophysics +1308.3419 Cosmology and Nongalactic Astrophysics +1308.5607 Strongly Correlated Electrons +1308.5971 Cosmology and Nongalactic Astrophysics +1309.0292 +1309.0776 Instrumentation and Methods for Astrophysics +1309.2429 High Energy Astrophysical Phenomena +1309.2919 Superconductivity +1309.3557 Cosmology and Nongalactic Astrophysics +1309.4255 Statistical Mechanics +1309.5023 Analysis of PDEs +1309.6628 Computational Geometry +1309.7106 Optics +1309.7667 Theory +1310.0430 Cosmology and Nongalactic Astrophysics +1310.1377 Instrumentation and Detectors +1310.2514 Systems and Control +1310.3761 Probability +1310.3789 +1310.6508 Superconductivity +1310.7136 Phenomenology +1311.0635 +1311.1691 High Energy Astrophysical Phenomena +1311.3125 Instrumentation and Detectors +1311.3223 Probability +1311.3550 +1311.5038 Strongly Correlated Electrons +1311.6171 Materials Science +1312.0399 Materials Science +1312.2102 Dynamical Systems +1312.2167 Group Theory +1312.3021 Symplectic Geometry +1312.3986 Physics and Society +1312.4286 +1312.7748 Number Theory +1401.2479 Analysis of PDEs +1401.2702 Computer Science and Game Theory +1401.2849 Algebraic Geometry +1401.3286 Functional Analysis +1401.3904 Functional Analysis +1401.3938 Information Theory +1401.3951 Accelerator Physics +1401.3984 Phenomenology +1401.4165 Materials Science +1401.4166 Optics +1401.4168 Theory +1401.4186 Superconductivity +1401.4192 Lattice +1401.4195 Earth and Planetary Astrophysics +1401.4200 Fluid Dynamics +1401.4201 Atmospheric and Oceanic Physics +1401.4203 Fluid Dynamics +1401.4205 Computation and Language +1401.4208 Social and Information Networks +1401.4215 Applications +1401.4217 Theory +1401.4221 Computer Vision and Pattern Recognition +1401.4222 Mesoscale and Nanoscale Physics +1401.4224 Group Theory +1401.4226 Number Theory +1401.4229 Phenomenology +1401.4230 Computer Science and Game Theory +1401.4231 Functional Analysis +1401.4232 Physics and Society +1401.4233 Number Theory +1401.4234 Social and Information Networks +1401.4236 Information Theory +1401.4238 Dynamical Systems +1401.4244 Geometric Topology +1401.4245 Data Structures and Algorithms +1401.4247 Other Condensed Matter +1401.4249 Strongly Correlated Electrons +1401.4251 Information Theory +1401.4254 Software Engineering +1401.4256 Software Engineering +1401.4259 Category Theory +1401.4260 +1401.4267 Computer Science and Game Theory +1401.4270 Physics and Society +1401.4271 +1401.4272 Earth and Planetary Astrophysics +1401.4273 Systems and Control +1401.4275 +1401.4276 Social and Information Networks +1401.4279 Mesoscale and Nanoscale Physics +1401.4282 Software Engineering +1401.4283 Materials Science +1401.4285 Chemical Physics +1401.4286 Chemical Physics +1401.4287 Chemical Physics +1401.4289 Populations and Evolution +1401.4293 Lattice +1401.4295 Soft Condensed Matter +1401.4297 Complex Variables +1401.4302 Statistical Mechanics +1401.4304 Physics Education +1401.4305 Materials Science +1401.4311 Numerical Analysis +1401.4313 Information Theory +1401.4314 Soft Condensed Matter +1401.4317 Computational Physics +1401.4322 Analysis of PDEs +1401.4323 Solar and Stellar Astrophysics +1401.4324 Physics and Society +1401.4325 Materials Science +1401.4326 Statistical Mechanics +1401.4327 Phenomenology +1401.4329 +1401.4330 Logic in Computer Science +1401.4331 Trading and Market Microstructure +1401.4333 Combinatorics +1401.4334 +1401.4345 Number Theory +1401.4346 Materials Science +1401.4348 Combinatorics +1401.4354 Astrophysics of Galaxies +1401.4356 +1401.4360 Combinatorics +1401.4366 Complex Variables +1401.4368 Number Theory +1401.4370 Classical Analysis and ODEs +1401.4372 Combinatorics +1401.4375 Combinatorics +1401.4377 Combinatorics +1401.4381 Multiagent Systems +1401.4383 Dynamical Systems +1401.4384 Combinatorics +1401.4385 Analysis of PDEs +1401.4393 Dynamical Systems +1401.4394 +1401.4395 Instrumentation and Methods for Astrophysics +1401.4396 Emerging Technologies +1401.4404 +1401.4405 +1401.4407 Phenomenology +1401.4408 Machine Learning +1401.4410 Exactly Solvable and Integrable Systems +1401.4413 Soft Condensed Matter +1401.4415 Functional Analysis +1401.4417 Numerical Analysis +1401.4419 Probability +1401.4421 Numerical Analysis +1401.4423 +1401.4427 Materials Science +1401.4429 Classical Analysis and ODEs +1401.4430 +1401.4434 Lattice +1401.4436 Computation and Language +1401.4438 Commutative Algebra +1401.4441 Distributed, Parallel, and Cluster Computing +1401.4442 Statistical Mechanics +1401.4443 Networking and Internet Architecture +1401.4444 Materials Science +1401.4445 Exactly Solvable and Integrable Systems +1401.4446 Robotics +1401.4447 Computer Vision and Pattern Recognition +1401.4448 Networking and Internet Architecture +0801.2830 Symplectic Geometry +0904.4896 Logic +0907.4388 +0909.3608 Symplectic Geometry +1006.3827 Symplectic Geometry +1009.0366 Statistical Mechanics +1010.1950 Numerical Analysis +1011.1902 Number Theory +1102.4550 Algebraic Geometry +1105.1241 Analysis of PDEs +1105.2004 Algebraic Geometry +1105.3993 Analysis of PDEs +1106.3032 Spectral Theory +1109.4548 Numerical Analysis +1109.6267 Chaotic Dynamics +1110.4439 Symplectic Geometry +1112.0844 Symplectic Geometry +1201.2311 Numerical Analysis +1203.2970 Networking and Internet Architecture +1204.3302 Theory +1204.6086 Group Theory +1205.1554 Phenomenology +1205.1703 General Mathematics +1205.1814 K-Theory and Homology +1205.3187 +1205.5715 +1206.2083 Differential Geometry +1206.3806 Computational Engineering, Finance, and Science +1206.3895 Algebraic Geometry +1206.4584 +1206.4747 +1206.6166 Mesoscale and Nanoscale Physics +1207.3934 Discrete Mathematics +1207.5245 Representation Theory +1208.0391 +1208.1540 Algebraic Topology +1208.2228 +1208.4018 Phenomenology +1208.4659 Complex Variables +1208.5857 Geometric Topology +1209.1382 +1209.5795 +1210.0652 Symplectic Geometry +1210.3181 +1211.2884 Complex Variables +1211.3141 +1211.4992 +1211.5092 Methodology +1212.0958 Theory +1212.1206 Earth and Planetary Astrophysics +1212.1947 Methodology +1212.4098 Theory +1212.4470 Biological Physics +1212.4994 Operator Algebras +1212.5395 Pricing of Securities +1212.5709 Phenomenology +1301.6062 Strongly Correlated Electrons +1302.1946 +1302.6508 Experiment +1302.7003 Earth and Planetary Astrophysics +1303.3249 Materials Science +1303.4959 Physics and Society +1303.6249 Information Theory +1304.0344 Materials Science +1304.1952 Mesoscale and Nanoscale Physics +1304.3332 +1304.4206 +1304.4372 High Energy Astrophysical Phenomena +1304.5007 +1304.5182 Quantum Gases +1304.5484 Theory +1304.6631 Statistical Mechanics +1305.4030 Dynamical Systems +1305.4031 Dynamical Systems +1305.4106 +1305.4986 +1305.5491 Atomic Physics +1305.6283 Strongly Correlated Electrons +1305.6393 Optics +1305.6477 Mesoscale and Nanoscale Physics +1305.7086 Probability +1306.0172 Quantum Gases +1306.0365 Phenomenology +1306.2020 Combinatorics +1306.3587 Statistical Mechanics +1306.3941 Theory +1307.0731 Experiment +1307.2114 Numerical Analysis +1307.2609 +1307.6147 +1307.6768 +1307.8159 Theory +1307.8294 Exactly Solvable and Integrable Systems +1308.0489 Phenomenology +1308.0637 Geometric Topology +1308.1665 +1308.2704 Differential Geometry +1308.2824 Exactly Solvable and Integrable Systems +1308.3162 Quantum Gases +1308.3891 Soft Condensed Matter +1308.4930 Phenomenology +1308.5708 Cosmology and Nongalactic Astrophysics +1308.6561 Phenomenology +1308.6741 Theory +1309.0351 +1309.1369 Machine Learning +1309.1440 Solar and Stellar Astrophysics +1309.1673 Statistical Mechanics +1309.2712 Information Theory +1309.2911 Theory +1309.3125 Theory +1309.3270 High Energy Astrophysical Phenomena +1309.3797 Physics and Society +1309.4087 Solar and Stellar Astrophysics +1309.4657 Analysis of PDEs +1309.5012 Statistical Mechanics +1309.5995 Analysis of PDEs +1309.6029 Phenomenology +1309.6327 Mesoscale and Nanoscale Physics +1309.6613 Systems and Control +1309.6658 Mesoscale and Nanoscale Physics +1309.6710 Combinatorics +1309.6752 High Energy Astrophysical Phenomena +1309.6917 Representation Theory +1309.7381 Metric Geometry +1310.1028 Cosmology and Nongalactic Astrophysics +1310.1139 Disordered Systems and Neural Networks +1310.2405 +1310.3726 Theory +1310.4415 Data Structures and Algorithms +1310.4507 Strongly Correlated Electrons +1310.5747 Formal Languages and Automata Theory +1310.5955 Category Theory +1310.6050 Phenomenology +1310.6647 Symplectic Geometry +1310.6706 Lattice +1310.6732 Experiment +1310.6890 Exactly Solvable and Integrable Systems +1310.7562 Rings and Algebras +1310.8479 Materials Science +1311.0070 +1311.1124 Phenomenology +1311.1219 Theory +1311.2416 Phenomenology +1311.2528 Strongly Correlated Electrons +1311.2891 Learning +1311.3116 Materials Science +1311.3148 High Energy Astrophysical Phenomena +1311.3412 Instrumentation and Methods for Astrophysics +1311.4255 +1311.4528 Medical Physics +1311.4587 Phenomenology +1311.4912 +1311.5753 Statistical Finance +1311.5972 Analysis of PDEs +1311.6483 +1311.6787 +1311.7347 Optics +1312.1333 Disordered Systems and Neural Networks +1312.2667 Mesoscale and Nanoscale Physics +1312.3125 Exactly Solvable and Integrable Systems +1312.3905 Data Structures and Algorithms +1312.4401 Phenomenology +1312.4695 Learning +1312.5545 Mesoscale and Nanoscale Physics +1312.5559 Computation and Language +1312.5869 Learning +1312.5985 Computation and Language +1312.6168 Learning +1312.6204 Computer Vision and Pattern Recognition +1312.6583 +1401.0097 Superconductivity +1401.0241 Quantum Gases +1401.0319 Statistical Mechanics +1401.0329 Cosmology and Nongalactic Astrophysics +1401.1522 Soft Condensed Matter +1401.1636 Mesoscale and Nanoscale Physics +1401.2506 Complex Variables +1401.3496 +1401.3580 Information Theory +1401.5955 Soft Condensed Matter +1401.6878 Optics +1401.7665 Superconductivity +1401.8288 Instrumentation and Methods for Astrophysics +1402.0179 Differential Geometry +1402.0617 Strongly Correlated Electrons +1402.0788 +1402.1286 General Topology +1402.1891 Representation Theory +1402.1971 Computer Vision and Pattern Recognition +1402.2075 High Energy Astrophysical Phenomena +1402.2733 Information Theory +1402.2820 Neurons and Cognition +1402.3004 +1402.3648 Computation and Language +1402.3659 Numerical Analysis +1402.3735 Multiagent Systems +1402.3844 Analysis of PDEs +1402.3995 Spectral Theory +1402.4011 Superconductivity +1402.4068 Phenomenology +1402.4071 Phenomenology +1402.4088 Probability +1402.4111 Data Structures and Algorithms +1402.4123 Fluid Dynamics +1402.4139 Cosmology and Nongalactic Astrophysics +1402.4147 Probability +1402.4149 Chaotic Dynamics +1402.4150 Trading and Market Microstructure +1402.4152 Fluid Dynamics +1402.4156 Algebraic Geometry +1402.4160 Sound +1402.4164 Software Engineering +1402.4173 Analysis of PDEs +1402.4176 Algebraic Geometry +1402.4180 Numerical Analysis +1402.4181 Instrumentation and Methods for Astrophysics +1402.4183 Data Structures and Algorithms +1402.4184 Dynamical Systems +1402.4189 Fluid Dynamics +1402.4190 Disordered Systems and Neural Networks +1402.4197 Rings and Algebras +1402.4198 Optimization and Control +1402.4199 Algebraic Geometry +1402.4202 Analysis of PDEs +1402.4208 Analysis of PDEs +1402.4211 Computers and Society +1402.4214 Chemical Physics +1402.4216 Probability +1402.4224 Classical Physics +1402.4225 Information Theory +1402.4226 Fluid Dynamics +1402.4229 Optics +1402.4230 Plasma Physics +1402.4231 Geometric Topology +1402.4232 Differential Geometry +1402.4233 Cryptography and Security +1402.4236 Differential Geometry +1402.4242 +1402.4244 Probability +1402.4245 +1402.4246 Information Theory +1402.4248 Optimization and Control +1402.4255 Materials Science +1402.4256 Materials Science +1402.4258 Discrete Mathematics +1402.4260 Mesoscale and Nanoscale Physics +1402.4261 +1402.4270 Soft Condensed Matter +1402.4272 Classical Analysis and ODEs +1402.4276 Functional Analysis +1402.4280 Software Engineering +1402.4281 Computation +1402.4282 General Topology +1402.4283 Databases +1402.4287 Biomolecules +1402.4293 Machine Learning +1402.4298 Solar and Stellar Astrophysics +1402.4314 Combinatorics +1402.4319 Tissues and Organs +1402.4320 Software Engineering +1402.4322 Learning +1402.4323 Analysis of PDEs +1402.4326 Combinatorics +1402.4332 Fluid Dynamics +1402.4337 Formal Languages and Automata Theory +1402.4338 Computational Complexity +1402.4341 Probability +1402.4343 Data Structures and Algorithms +1402.4344 Functional Analysis +1402.4345 Group Theory +1402.4346 Computational Complexity +1402.4349 Phenomenology +1402.4352 Mesoscale and Nanoscale Physics +1402.4353 Information Theory +1402.4354 Learning +1402.4358 Superconductivity +1402.4367 Mesoscale and Nanoscale Physics +1402.4368 Optimization and Control +1402.4370 Data Structures and Algorithms +1402.4371 Optimization and Control +1402.4374 Other Condensed Matter +1402.4377 Complex Variables +1402.4380 Computation and Language +1402.4384 Algebraic Geometry +1402.4388 Computer Vision and Pattern Recognition +1402.4392 Chaotic Dynamics +1402.4404 Materials Science +1402.4405 Phenomenology +1402.4410 Human-Computer Interaction +1402.4412 Phenomenology +1402.4413 Artificial Intelligence +1402.4417 Databases +1402.4422 Combinatorics +1402.4423 Systems and Control +1402.4426 Disordered Systems and Neural Networks +1402.4428 +1402.4432 Algebraic Geometry +1402.4439 History and Philosophy of Physics +1402.4441 Soft Condensed Matter +1402.4442 Software Engineering +1402.4444 Representation Theory +1402.4445 Analysis of PDEs +1402.4447 Functional Analysis +1402.4455 Data Structures and Algorithms +1402.4459 Methodology +1402.4460 Classical Analysis and ODEs +1402.4462 Probability +1402.4464 Number Theory +1402.4465 Data Structures and Algorithms +1402.4470 +hep-th/0406258 Theory +0709.1421 Logic +0805.2227 +0807.4007 Number Theory +0912.4660 Information Theory +1007.2826 Atmospheric and Oceanic Physics +1008.3887 Number Theory +1012.3951 Computer Vision and Pattern Recognition +1103.4930 Numerical Analysis +1103.5188 Cryptography and Security +1108.1254 Cosmology and Nongalactic Astrophysics +1111.0483 Statistics Theory +1111.2146 Numerical Analysis +1111.5893 Computational Geometry +1111.5955 Number Theory +1201.2015 Complex Variables +1201.4393 Strongly Correlated Electrons +1204.2009 Information Theory +1207.3399 Machine Learning +1208.5236 Complex Variables +1209.0202 Complex Variables +1209.5162 Complex Variables +1210.1787 +1210.5902 Information Theory +1210.7719 Probability +1210.7960 Commutative Algebra +1211.2529 Number Theory +1211.4181 Number Theory +1211.5057 Geometric Topology +1212.4541 Algebraic Topology +1212.5480 Probability +1301.0900 Complex Variables +1302.2018 Complex Variables +1302.2398 Complex Variables +1302.6762 Computational Finance +1303.0268 Statistics Theory +1303.2612 High Energy Astrophysical Phenomena +1303.2816 Fluid Dynamics +1303.3236 Combinatorics +1303.4640 Statistics Theory +1303.6760 Complex Variables +1304.2642 Representation Theory +1304.3973 High Energy Astrophysical Phenomena +1304.4944 +1305.4354 Populations and Evolution +1306.1588 Mesoscale and Nanoscale Physics +1307.0065 Computation +1307.0345 Optimization and Control +1307.0719 Cosmology and Nongalactic Astrophysics +1307.1521 Number Theory +1307.3917 Optics +1307.4379 +1307.5663 Mesoscale and Nanoscale Physics +1308.1000 Mesoscale and Nanoscale Physics +1308.2011 +1308.3301 Formal Languages and Automata Theory +1308.4100 Probability +1308.6100 Probability +1309.2209 Classical Analysis and ODEs +1309.3890 Quantum Gases +1309.7036 Phenomenology +1309.7854 Group Theory +1310.0674 Mesoscale and Nanoscale Physics +1310.1948 Phenomenology +1310.2142 Representation Theory +1310.4375 Machine Learning +1310.5049 Lattice +1310.6045 +1310.6672 Combinatorics +1310.6718 +1310.8372 +1311.1434 Phenomenology +1311.2162 Phenomenology +1311.2240 Exactly Solvable and Integrable Systems +1311.2451 Theory +1311.2852 Information Theory +1311.2983 Group Theory +1311.4141 Theory +1311.6059 Geometric Topology +1311.6080 Portfolio Management +1311.6513 Fluid Dynamics +1311.7104 Theory +1311.7163 Soft Condensed Matter +1312.1233 +1312.1306 +1312.3304 Information Theory +1312.3361 Cosmology and Nongalactic Astrophysics +1312.3572 +1312.3611 Number Theory +1312.3833 Mesoscale and Nanoscale Physics +1312.4470 Quantum Gases +1312.4890 +1312.5492 Molecular Networks +1312.6042 Learning +1312.7259 Mesoscale and Nanoscale Physics +1401.0113 Graphics +1401.0920 Numerical Analysis +1401.1230 Theory +1401.2548 Statistical Finance +1401.5142 Group Theory +1401.5784 Materials Science +1401.5865 +1401.6701 Phenomenology +1401.6865 Fluid Dynamics +1402.0872 Theory +1402.1164 Phenomenology +1402.1394 +1402.2216 Differential Geometry +1402.3042 +1402.3345 Optics +1402.3463 Strongly Correlated Electrons +1402.3510 Statistical Mechanics +1402.3756 Experiment +1402.3820 Statistical Finance +1402.3910 +1402.4501 Machine Learning +1402.4943 Instrumentation and Detectors +1402.5126 Experiment +1402.5767 +1402.5798 Phenomenology +1402.5961 Theory +1402.6845 Materials Science +1402.6994 Theory +1402.7275 Materials Science +1403.0506 Dynamical Systems +1403.0617 Theory +1403.0860 Solar and Stellar Astrophysics +1403.2230 Rings and Algebras +1403.2422 Statistical Mechanics +1403.2727 Phenomenology +1403.2969 Statistical Mechanics +1403.4180 Biological Physics +1403.4280 +1403.4836 Group Theory +1403.4915 High Energy Astrophysical Phenomena +1403.5234 +1403.5884 Disordered Systems and Neural Networks +1403.6209 Mesoscale and Nanoscale Physics +1403.6293 Experiment +1403.6372 Strongly Correlated Electrons +1403.6657 Astrophysics of Galaxies +1403.7102 Social and Information Networks +1403.7693 Theory +1403.8040 Statistical Mechanics +1404.0008 Theory +1404.0010 Theory +1404.0140 Quantum Gases +1404.0160 +1404.0204 Popular Physics +1404.0407 Complex Variables +1404.1582 +1404.1584 +1404.1742 Quantum Gases +1404.2132 +1404.2220 Phenomenology +1404.2326 Quantum Gases +1404.2746 Phenomenology +1404.2931 Phenomenology +1404.3760 Astrophysics of Galaxies +1404.4253 Strongly Correlated Electrons +1404.4866 Cosmology and Nongalactic Astrophysics +1404.4891 Populations and Evolution +1404.5419 Theory +1404.5908 Theory +1405.0445 +1405.1319 Analysis of PDEs +1405.3828 Astrophysics of Galaxies +1405.3926 Solar and Stellar Astrophysics +1405.5047 Computer Vision and Pattern Recognition +1405.5703 Other Condensed Matter +1405.5877 Astrophysics of Galaxies +1405.6365 Quantum Gases +1405.6399 Digital Libraries +1405.6483 Cryptography and Security +1405.6924 Quantum Gases +1406.0195 Geometric Topology +1406.1049 Discrete Mathematics +1406.1146 Analysis of PDEs +1406.1263 Optics +1406.1864 Geophysics +1406.2446 Numerical Analysis +1406.2696 +1406.3102 High Energy Astrophysical Phenomena +1406.3240 Cryptography and Security +1406.3246 Plasma Physics +1406.3373 Formal Languages and Automata Theory +1406.3402 History and Overview +1406.3756 +1406.4041 Data Analysis, Statistics and Probability +1406.4045 Statistics Theory +1406.4090 +1406.4106 Computational Complexity +1406.4122 +1406.4123 Software Engineering +1406.4151 Methodology +1406.4155 Populations and Evolution +1406.4162 Networking and Internet Architecture +1406.4164 Materials Science +1406.4170 Combinatorics +1406.4174 Dynamical Systems +1406.4181 Differential Geometry +1406.4182 Algebraic Topology +1406.4186 Soft Condensed Matter +1406.4191 Representation Theory +1406.4192 Soft Condensed Matter +1406.4193 +1406.4197 Computational Geometry +1406.4198 Operator Algebras +1406.4199 Soft Condensed Matter +1406.4201 Optimization and Control +1406.4203 Learning +1406.4205 Quantitative Methods +1406.4211 Computation and Language +1406.4212 Information Theory +1406.4213 Numerical Analysis +1406.4217 Logic +1406.4218 +1406.4221 Differential Geometry +1406.4222 Risk Management +1406.4223 Instrumentation and Detectors +1406.4228 Solar and Stellar Astrophysics +1406.4230 Combinatorics +1406.4235 Networking and Internet Architecture +1406.4236 Geometric Topology +1406.4237 Neural and Evolutionary Computing +1406.4243 Geometric Topology +1406.4247 Number Theory +1406.4252 +1406.4253 Symplectic Geometry +1406.4255 Analysis of PDEs +1406.4256 Differential Geometry +1406.4260 Fluid Dynamics +1406.4261 Statistics Theory +1406.4264 Fluid Dynamics +1406.4266 Dynamical Systems +1406.4272 Numerical Analysis +1406.4274 Mesoscale and Nanoscale Physics +1406.4275 Pricing of Securities +1406.4278 Algebraic Geometry +1406.4279 Combinatorics +1406.4281 Geophysics +1406.4284 +1406.4286 Social and Information Networks +1406.4287 Artificial Intelligence +1406.4291 Distributed, Parallel, and Cluster Computing +1406.4292 Theory +1406.4294 Physics and Society +1406.4299 Algebraic Topology +1406.4303 +1406.4304 Solar and Stellar Astrophysics +1406.4309 Solar and Stellar Astrophysics +1406.4312 Mesoscale and Nanoscale Physics +1406.4313 Accelerator Physics +1406.4315 Plasma Physics +1406.4316 Instrumentation and Detectors +1406.4318 Materials Science +1406.4320 History and Philosophy of Physics +1406.4322 Portfolio Management +1406.4324 Artificial Intelligence +1406.4325 Classical Analysis and ODEs +1406.4327 Atomic Physics +1406.4328 Information Theory +1406.4330 Chemical Physics +1406.4331 Digital Libraries +1406.4333 Optimization and Control +1406.4335 Information Theory +1406.4336 Atomic Physics +1406.4338 Mesoscale and Nanoscale Physics +1406.4339 Geometric Topology +1406.4341 Materials Science +1406.4342 +1406.4347 Strongly Correlated Electrons +1406.4348 History and Philosophy of Physics +1406.4351 History and Philosophy of Physics +1406.4353 Group Theory +1406.4354 History and Philosophy of Physics +1406.4361 +1406.4371 Numerical Analysis +1406.4372 +1406.4376 Genomics +1406.4384 Logic +1406.4385 Numerical Analysis +1406.4387 Medical Physics +1406.4393 Instrumentation and Methods for Astrophysics +1406.4394 Plasma Physics +1406.4395 Logic in Computer Science +1406.4396 Superconductivity +1406.4398 Combinatorics +1406.4400 Physics and Society +1406.4404 Mesoscale and Nanoscale Physics +1406.4406 Statistics Theory +1406.4414 Classical Analysis and ODEs +1406.4416 Combinatorics +1406.4419 Algebraic Topology +1406.4426 Computational Complexity +1406.4438 Chaotic Dynamics +1406.4442 Materials Science +1406.4446 Algebraic Geometry +1406.4447 Sound +1406.4448 Networking and Internet Architecture +1406.4449 Plasma Physics +1406.4452 Analysis of PDEs +1406.4454 Data Structures and Algorithms +1406.4456 Experiment +1406.4457 +1406.4458 Computers and Society +1406.4462 Artificial Intelligence +1406.4463 Networking and Internet Architecture +1406.4464 Number Theory +1406.4466 Combinatorics +1406.4478 Spectral Theory +1406.4483 Biomolecules +1406.4484 Computer Vision and Pattern Recognition +1406.4486 Strongly Correlated Electrons +1406.4487 Materials Science +1406.4489 Strongly Correlated Electrons +1406.4491 Networking and Internet Architecture +1406.4492 Materials Science +1406.4496 Geometric Topology +math/0611585 Combinatorics +0908.1055 Operator Algebras +1002.0250 Statistical Mechanics +1005.5696 Probability +1104.1193 Analysis of PDEs +1105.4908 Group Theory +1107.3284 Probability +1112.1606 Group Theory +1203.5375 Earth and Planetary Astrophysics +1203.5441 Earth and Planetary Astrophysics +1204.1450 Number Theory +1204.1929 Algebraic Geometry +1204.2785 Representation Theory +1204.4921 Differential Geometry +1206.2885 Combinatorics +1206.4832 Information Theory +1206.4933 Physics and Society +1210.7782 Analysis of PDEs +1210.7813 Phenomenology +1211.1475 Statistical Mechanics +1211.2096 Physics and Society +1212.0918 Mesoscale and Nanoscale Physics +1301.3193 Learning +1302.1660 Strongly Correlated Electrons +1302.3364 Strongly Correlated Electrons +1302.7250 Materials Science +1303.1839 Mesoscale and Nanoscale Physics +1303.3590 Phenomenology +1304.2505 Numerical Analysis +1306.1494 Strongly Correlated Electrons +1306.4823 Accelerator Physics +1307.5132 Algebraic Geometry +1308.3904 Dynamical Systems +1308.4491 Strongly Correlated Electrons +1308.4742 +1308.5007 +1308.5659 +1308.5943 +1308.6756 Statistical Finance +1309.6191 +1310.0845 Computational Physics +1310.1505 Number Theory +1310.7277 Neurons and Cognition +1311.0907 Computation +1311.1154 Statistical Finance +1311.4294 Information Theory +1311.6473 Cosmology and Nongalactic Astrophysics +1311.6733 Group Theory +1311.7069 Theory +1312.3875 Mesoscale and Nanoscale Physics +1401.1536 Exactly Solvable and Integrable Systems +1401.3795 Quantum Algebra +1401.4399 +1401.6682 Logic +1402.0991 Statistical Mechanics +1402.2095 Computational Physics +1402.3480 Methodology +1402.3623 Superconductivity +1402.3800 Number Theory +1402.4042 Group Theory +1402.4576 Information Theory +1402.4967 +1402.6960 +1402.6975 Phenomenology +1403.0413 Quantum Gases +1403.1592 Phenomenology +1403.1798 Analysis of PDEs +1403.2090 Formal Languages and Automata Theory +1403.2405 Strongly Correlated Electrons +1403.2636 Chemical Physics +1403.3108 Experiment +1403.3125 Strongly Correlated Electrons +1403.3415 Quantum Gases +1403.3686 +1403.3797 Phenomenology +1403.4794 Materials Science +1403.6573 Methodology +1403.7147 +1403.8153 Mesoscale and Nanoscale Physics +1404.0211 +1404.0892 +1404.1807 Materials Science +1404.2204 Number Theory +1404.5407 Cosmology and Nongalactic Astrophysics +1404.6325 Probability +1405.1073 Mesoscale and Nanoscale Physics +1405.1726 Astrophysics of Galaxies +1405.1754 +1405.4014 Mesoscale and Nanoscale Physics +1406.0723 High Energy Astrophysical Phenomena +1406.1074 Chemical Physics +1406.1679 Atomic Physics +1406.1854 Soft Condensed Matter +1406.2595 Materials Science +1406.3014 Popular Physics +1406.6558 Computer Vision and Pattern Recognition +1407.0063 Software Engineering +1407.0243 Analysis of PDEs +1407.0398 Astrophysics of Galaxies +1407.0412 Chaotic Dynamics +1407.0422 Algebraic Topology +1407.0446 Optimization and Control +1407.0468 Mesoscale and Nanoscale Physics +1407.0696 Distributed, Parallel, and Cluster Computing +1407.0697 Other Computer Science +1407.0698 Neural and Evolutionary Computing +1407.0699 Data Structures and Algorithms +1407.0713 Networking and Internet Architecture +1407.0714 Materials Science +1407.0717 Computer Vision and Pattern Recognition +1407.0720 Materials Science +1407.0722 Strongly Correlated Electrons +1407.0735 Materials Science +1407.0739 High Energy Astrophysical Phenomena +1407.0740 Materials Science +1407.0741 Accelerator Physics +1407.0743 Statistics Theory +1407.0744 +1407.0745 Fluid Dynamics +1407.0747 Superconductivity +1407.0748 Data Analysis, Statistics and Probability +1407.0750 Earth and Planetary Astrophysics +1407.0754 Learning +1407.0758 General Topology +1407.0760 +1407.0766 Mesoscale and Nanoscale Physics +1407.0769 Geometric Topology +1407.0781 Numerical Analysis +1407.0782 Numerical Analysis +1407.0786 Computer Vision and Pattern Recognition +1407.0787 General Finance +1407.0791 Social and Information Networks +1407.0793 Combinatorics +1407.0795 Metric Geometry +1407.0799 Instrumentation and Detectors +1407.0803 Cryptography and Security +1407.0805 Optics +1407.0809 Differential Geometry +1407.0812 Biological Physics +1407.0814 Systems and Control +1407.0815 Phenomenology +1407.0816 Soft Condensed Matter +1407.0819 Number Theory +1407.0822 Information Retrieval +1407.0827 Fluid Dynamics +1407.0828 Soft Condensed Matter +1407.0829 Astrophysics of Galaxies +1407.0842 +1407.0843 Human-Computer Interaction +1407.0851 Quantum Gases +1407.0861 Classical Analysis and ODEs +1407.0865 Tissues and Organs +1407.0869 Strongly Correlated Electrons +1407.0871 Rings and Algebras +1407.0873 Statistics Theory +1407.0885 High Energy Astrophysical Phenomena +1407.0886 Methodology +1407.0887 Probability +1407.0892 Data Structures and Algorithms +1407.0893 Numerical Analysis +1407.0894 Mesoscale and Nanoscale Physics +1407.0908 Combinatorics +1407.0915 Cryptography and Security +1407.0918 Dynamical Systems +1407.0921 Optimization and Control +1407.0922 Phenomenology +1407.0927 Software Engineering +1407.0931 Quantum Algebra +1407.0933 +1407.0935 Computer Vision and Pattern Recognition +1407.0936 Probability +1407.0940 Combinatorics +1407.0941 Instrumentation and Methods for Astrophysics +1407.0943 Information Theory +1407.0953 Combinatorics +1407.0956 Representation Theory +1407.0958 Combinatorics +1407.0959 +1407.0961 Data Structures and Algorithms +1407.0962 Astrophysics of Galaxies +1407.0963 Differential Geometry +1407.0965 Phenomenology +1407.0972 Cell Behavior +1407.0977 Neural and Evolutionary Computing +1407.0979 Instrumentation and Methods for Astrophysics +1407.0982 Probability +1407.0985 Superconductivity +1407.0986 Instrumentation and Detectors +1407.0995 Algebraic Topology +1407.0997 Functional Analysis +1407.1000 Quantum Gases +1407.1003 Algebraic Geometry +1407.1004 Statistics Theory +1407.1006 Statistical Mechanics +1407.1015 Logic in Computer Science +1407.1027 Optimization and Control +1407.1029 Probability +1407.1031 Social and Information Networks +1407.1034 Physics and Society +1407.1038 Fluid Dynamics +0806.1676 Optics +0903.4637 Metric Geometry +1002.4317 Computer Vision and Pattern Recognition +1003.5821 Computer Vision and Pattern Recognition +1006.5628 Disordered Systems and Neural Networks +1012.2352 Probability +1101.5911 Algebraic Geometry +1106.4761 Probability +1107.5304 Algebraic Geometry +1108.1612 Algebraic Geometry +1205.0997 Information Theory +1205.6008 Differential Geometry +1206.2965 Differential Geometry +1207.5165 Mesoscale and Nanoscale Physics +1208.4069 Number Theory +1210.6807 +1210.6833 +1210.6907 Representation Theory +1211.4459 Number Theory +1301.0739 Spectral Theory +1302.4885 Probability +1303.2549 History and Philosophy of Physics +1304.1010 +1304.2466 Probability +1304.4037 Strongly Correlated Electrons +1304.4404 Algebraic Geometry +1304.5244 Superconductivity +1305.0482 Number Theory +1305.3954 Statistical Mechanics +1305.7261 Materials Science +1306.0805 +1306.4804 Mesoscale and Nanoscale Physics +1306.6545 Probability +1307.1766 Computer Science and Game Theory +1307.2201 General Physics +1307.3942 Probability +1308.1326 Atomic Physics +1309.0949 Combinatorics +1309.3614 Materials Science +1309.4916 Portfolio Management +1309.6055 Phenomenology +1309.7849 Number Theory +1310.3641 Mesoscale and Nanoscale Physics +1310.4826 Cosmology and Nongalactic Astrophysics +1310.5659 Theory +1311.5885 General Physics +1311.7091 +1311.7586 Differential Geometry +1312.0886 Disordered Systems and Neural Networks +1312.1664 Networking and Internet Architecture +1312.2144 Atomic and Molecular Clusters +1401.0668 Instrumentation and Detectors +1401.1511 Theory +1401.4910 Differential Geometry +1401.5394 Formal Languages and Automata Theory +1401.5534 Astrophysics of Galaxies +1401.7969 Classical Analysis and ODEs +1402.0538 Metric Geometry +1402.2334 Instrumentation and Detectors +1402.2977 Phenomenology +1402.4205 Experiment +1402.4468 Mesoscale and Nanoscale Physics +1402.4611 Space Physics +1403.1341 Optimization and Control +1403.2712 Combinatorics +1403.4005 +1403.4056 Mesoscale and Nanoscale Physics +1403.4933 Theory +1403.5479 Networking and Internet Architecture +1404.0740 Spectral Theory +1404.0973 Materials Science +1404.1935 Machine Learning +1404.4549 Logic +1404.5243 Atomic Physics +1404.6531 Earth and Planetary Astrophysics +1404.6899 Mesoscale and Nanoscale Physics +1404.7422 +1404.7517 Theory +1405.0644 Lattice +1405.0659 Medical Physics +1405.3101 Phenomenology +1405.3567 Atomic and Molecular Clusters +1405.4218 Materials Science +1405.5068 Experiment +1405.5404 Statistical Mechanics +1405.6426 Information Theory +1405.6517 +1405.6641 Mesoscale and Nanoscale Physics +1405.6909 +1406.0026 Analysis of PDEs +1406.0200 Information Theory +1406.0391 Disordered Systems and Neural Networks +1406.0413 Genomics +1406.1090 Formal Languages and Automata Theory +1406.2521 Soft Condensed Matter +1406.4229 Numerical Analysis +1406.5433 Computer Science and Game Theory +1406.6479 Atomic Physics +1406.7774 Experiment +1407.0707 Strongly Correlated Electrons +1407.0830 Materials Science +1407.2061 Mesoscale and Nanoscale Physics +1407.3266 +1407.3603 Soft Condensed Matter +1407.4957 Mesoscale and Nanoscale Physics +1407.4976 Soft Condensed Matter +1407.5032 Optimization and Control +1407.8200 Geometric Topology +1407.8237 +1408.0824 Chemical Physics +1408.1803 +1408.3188 Materials Science +1408.5453 Dynamical Systems +1408.5563 Phenomenology +1408.6828 Physics and Society +1409.0219 Algebraic Geometry +1409.0305 Biological Physics +1409.0825 Materials Science +1409.0838 Systems and Control +1409.0922 Phenomenology +1409.1354 Instrumentation and Methods for Astrophysics +1409.1444 Systems and Control +1409.1668 Information Theory +1409.2005 +1409.2041 Commutative Algebra +1409.2432 Cryptography and Security +1409.2751 Dynamical Systems +1409.2814 Medical Physics +1409.2970 Geometric Topology +1409.3130 Numerical Analysis +1409.3143 Computers and Society +1409.3144 Computation +1409.3225 Computer Science and Game Theory +1409.3245 Superconductivity +1409.3251 Differential Geometry +1409.3252 Phenomenology +1409.3259 Statistical Mechanics +1409.3261 Molecular Networks +1409.3262 Strongly Correlated Electrons +1409.3263 Genomics +1409.3264 Disordered Systems and Neural Networks +1409.3266 Numerical Analysis +1409.3276 Other Computer Science +1409.3278 Phenomenology +1409.3279 Accelerator Physics +1409.3280 Differential Geometry +1409.3281 Functional Analysis +1409.3287 Group Theory +1409.3290 Logic in Computer Science +1409.3300 Materials Science +1409.3301 Methodology +1409.3303 Plasma Physics +1409.3304 Statistical Mechanics +1409.3309 Dynamical Systems +1409.3312 +1409.3313 Logic in Computer Science +1409.3315 Logic in Computer Science +1409.3316 Logic in Computer Science +1409.3317 Number Theory +1409.3318 History and Philosophy of Physics +1409.3322 +1409.3323 +1409.3324 Materials Science +1409.3331 Information Theory +1409.3337 Optimization and Control +1409.3339 Dynamical Systems +1409.3340 Experiment +1409.3342 Optics +1409.3346 Analysis of PDEs +1409.3351 Theory +1409.3358 Software Engineering +1409.3359 Differential Geometry +1409.3361 Materials Science +1409.3363 Phenomenology +1409.3366 Statistical Mechanics +1409.3367 Distributed, Parallel, and Cluster Computing +1409.3370 +1409.3372 Differential Geometry +1409.3374 Strongly Correlated Electrons +1409.3377 Functional Analysis +1409.3380 Phenomenology +1409.3386 +1409.3387 Differential Geometry +1409.3393 Probability +1409.3394 Mathematical Finance +1409.3395 +1409.3397 Biomolecules +1409.3403 Algebraic Geometry +1409.3404 Other Computer Science +1409.3408 Applications +1409.3409 Cosmology and Nongalactic Astrophysics +1409.3410 +1409.3412 Optics +1409.3414 Experiment +1409.3418 Metric Geometry +1409.3428 Logic in Computer Science +1409.3430 Probability +1409.3434 High Energy Astrophysical Phenomena +1409.3439 Number Theory +1409.3440 Algebraic Geometry +1409.3442 Algebraic Geometry +1409.3445 Dynamical Systems +1409.3446 Learning +1409.3448 Analysis of PDEs +1409.3449 Solar and Stellar Astrophysics +1409.3453 +1409.3455 Biomolecules +1409.3456 Soft Condensed Matter +1409.3458 Materials Science +1409.3459 General Mathematics +1409.3460 Experiment +1409.3465 Theory +1409.3466 Instrumentation and Detectors +1409.3467 Algebraic Geometry +1409.3469 Cosmology and Nongalactic Astrophysics +1409.3470 Dynamical Systems +1409.3471 Instrumentation and Detectors +1409.3472 Mesoscale and Nanoscale Physics +1409.3474 Numerical Analysis +1409.3477 +1409.3478 +1409.3479 Differential Geometry +1409.3480 Functional Analysis +1409.3493 Probability +1409.3494 +1409.3495 Digital Libraries +1409.3497 +1409.3503 Algebraic Geometry +1409.3505 Computer Vision and Pattern Recognition +1409.3506 Category Theory +1409.3508 Phenomenology +1409.3511 Dynamical Systems +1409.3512 Computation and Language +1409.3515 Adaptation and Self-Organizing Systems +1409.3522 Mesoscale and Nanoscale Physics +1409.3525 +1409.3529 Chemical Physics +1409.3530 Databases +1409.3531 Methodology +1409.3533 Software Engineering +1409.3535 Numerical Analysis +1409.3549 Mesoscale and Nanoscale Physics +1409.3557 Soft Condensed Matter +0708.2051 Geometric Topology +0710.2155 Physics Education +0711.2822 +0711.4606 Popular Physics +0801.1568 Differential Geometry +0809.4841 Mesoscale and Nanoscale Physics +0810.4315 Logic +0811.0160 Strongly Correlated Electrons +0812.2612 Mesoscale and Nanoscale Physics +0901.4413 Geophysics +0903.0406 Materials Science +0906.1241 Number Theory +0909.0567 Analysis of PDEs +0912.4536 Analysis of PDEs +0912.5379 Quantum Gases +1001.0267 Numerical Analysis +1005.1866 +1005.4577 Mesoscale and Nanoscale Physics +1006.5588 Cosmology and Nongalactic Astrophysics +1008.4751 Number Theory +1009.0656 Quantum Algebra +1009.5065 Analysis of PDEs +1101.0786 Number Theory +1103.0249 Differential Geometry +1105.1571 Numerical Analysis +1105.2210 +1105.2559 Quantitative Methods +1105.3228 Physics and Society +1105.4265 General Physics +1106.0775 Logic +1106.5036 Combinatorics +1106.5711 Astrophysics of Galaxies +1107.2483 Geometric Topology +1107.2900 Networking and Internet Architecture +1108.4400 Functional Analysis +1109.3550 Group Theory +1109.6697 Number Theory +1110.3689 Computation +1110.3845 Cellular Automata and Lattice Gases +1110.6240 Analysis of PDEs +1112.0845 Geometric Topology +1112.1759 Number Theory +1112.4588 Atomic Physics +1201.0941 Dynamical Systems +1201.3136 Geophysics +1202.4396 Operator Algebras +1203.1207 +1203.1272 Algebraic Geometry +1203.2871 Probability +1203.3958 Quantum Algebra +1203.4419 Combinatorics +1204.0488 Algebraic Geometry +1205.4074 Dynamical Systems +1205.4898 Geometric Topology +1205.5124 Information Theory +1205.5838 Logic in Computer Science +1206.3101 Numerical Analysis +1206.3461 Instrumentation and Methods for Astrophysics +1206.5551 Theory +1207.0561 Social and Information Networks +1208.0133 Genomics +1208.2944 Statistical Mechanics +1208.3480 +1208.4304 Phenomenology +1208.4753 Geophysics +1208.5503 +1208.6244 Theory +1209.1059 Theory +1209.1582 Disordered Systems and Neural Networks +1209.2139 Learning +1209.3290 Strongly Correlated Electrons +1209.5857 Atomic Physics +1209.5946 Differential Geometry +1210.1295 Combinatorics +1210.5846 Algebraic Geometry +1210.7316 Phenomenology +1211.2509 Quantum Gases +1211.3004 Popular Physics +1211.3472 Combinatorics +1211.4755 Information Theory +1211.6201 Phenomenology +1212.0518 Statistical Mechanics +1212.1371 Statistical Mechanics +1212.2036 Computation and Language +1212.3047 Spectral Theory +1212.6382 Discrete Mathematics +1212.6906 Statistics Theory +1301.0213 Information Theory +1301.0838 Rings and Algebras +1301.1723 +1301.2000 Functional Analysis +1301.2213 Functional Analysis +1301.2671 Functional Analysis +1301.3799 Probability +1301.5853 Soft Condensed Matter +1301.6208 Number Theory +1301.6549 Functional Analysis +1302.0793 Numerical Analysis +1302.2143 Phenomenology +1302.2921 Mesoscale and Nanoscale Physics +1302.3235 Classical Analysis and ODEs +1302.3521 Algebraic Geometry +1302.4245 Machine Learning +1302.6317 Other Condensed Matter +1302.6710 Algebraic Geometry +1302.7083 Numerical Analysis +1303.1945 Algebraic Geometry +1303.2746 Cosmology and Nongalactic Astrophysics +1303.3447 +1303.4505 +1303.6182 Methodology +1303.6557 Complex Variables +1304.1951 Statistical Mechanics +1304.6673 Earth and Planetary Astrophysics +1304.6803 Machine Learning +1304.8120 +1305.0167 Mesoscale and Nanoscale Physics +1305.0624 Phenomenology +1305.0788 +1305.1038 Statistical Mechanics +1305.2224 Atomic Physics +1305.2365 +1305.2380 +1305.2987 Analysis of PDEs +1305.3492 Methodology +1305.4227 Statistical Mechanics +1305.4503 Chaotic Dynamics +1305.7002 Analysis of PDEs +1305.7041 Accelerator Physics +1306.0280 Number Theory +1306.0421 +1306.0427 +1306.0601 +1306.0840 Strongly Correlated Electrons +1306.1708 Algebraic Geometry +1306.3422 Physics and Society +1306.4185 Phenomenology +1306.5203 Differential Geometry +1306.5502 Theory +1306.5629 Phenomenology +1306.5736 Cosmology and Nongalactic Astrophysics +1306.5884 Artificial Intelligence +1306.6386 Probability +1306.6587 Earth and Planetary Astrophysics +1307.1225 Mesoscale and Nanoscale Physics +1307.1606 Dynamical Systems +1307.2580 Software Engineering +1307.2778 Quantum Algebra +1307.2922 Cosmology and Nongalactic Astrophysics +1307.2958 Information Theory +1307.3588 Optics +1307.5001 Optimization and Control +1307.5520 Group Theory +1307.6734 Optics +1308.0770 Materials Science +1308.1586 Experiment +1308.4180 Statistical Mechanics +1308.4525 Mesoscale and Nanoscale Physics +1308.5097 History and Philosophy of Physics +1308.5514 Materials Science +1308.5934 General Physics +1308.6175 Information Theory +1309.0311 Phenomenology +1309.0314 Phenomenology +1309.1002 Materials Science +1309.3264 Mesoscale and Nanoscale Physics +1309.4223 Cosmology and Nongalactic Astrophysics +1309.5596 +1309.7343 Phenomenology +1309.7880 Phenomenology +1310.0423 Machine Learning +1310.0717 Differential Geometry +1310.0906 Superconductivity +1310.1508 Exactly Solvable and Integrable Systems +1310.1906 Numerical Analysis +1310.2222 Optics +1310.2359 Logic +1310.3082 Experiment +1310.5288 Machine Learning +1310.6643 Methodology +1310.6734 Algebraic Geometry +1310.7413 Materials Science +1311.0536 Databases +1311.1150 Classical Analysis and ODEs +1311.1183 Algebraic Geometry +1311.1584 Mesoscale and Nanoscale Physics +1311.1969 Solar and Stellar Astrophysics +1311.2669 Information Theory +1311.2868 Algebraic Geometry +1311.3585 +1311.5281 Analysis of PDEs +1311.6172 Differential Geometry +1311.6399 +1312.0529 Materials Science +1312.0533 +1312.0808 Materials Science +1312.0843 Classical Analysis and ODEs +1312.2056 Dynamical Systems +1312.2266 Numerical Analysis +1312.3615 Materials Science +1312.3725 Superconductivity +1312.3740 Cryptography and Security +1312.3780 Number Theory +1312.5292 Probability +1312.5912 Databases +1312.5914 Databases +1312.6157 Learning +1312.6158 Learning +1312.6197 Machine Learning +1312.6205 Machine Learning +1312.6342 Combinatorics +1312.6782 Computer Vision and Pattern Recognition +1312.6950 Rings and Algebras +1312.6952 Rings and Algebras +1312.6953 Operator Algebras +1312.6958 Rings and Algebras +1312.6959 Operator Algebras +1312.6961 Commutative Algebra +1312.7049 Combinatorics +1312.7236 +1312.7250 Dynamical Systems +1312.7395 Analysis of PDEs +1312.7406 Commutative Algebra +1312.7468 Computational Complexity +1312.7475 Computational Physics +1312.7485 Artificial Intelligence +1312.7548 Number Theory +1312.7666 Classical Analysis and ODEs +1312.7869 Machine Learning +1401.0002 Genomics +1401.0003 Astrophysics of Galaxies +1401.0006 Phenomenology +1401.0015 Mesoscale and Nanoscale Physics +1401.0019 Statistical Mechanics +1401.0024 Materials Science +1401.0026 +1401.0031 Functional Analysis +1401.0034 Computers and Society +1401.0036 Biological Physics +1401.0038 Combinatorics +1401.0039 Phenomenology +1401.0040 Metric Geometry +1401.0044 Learning +1401.0046 Cosmology and Nongalactic Astrophysics +1401.0048 Chaotic Dynamics +1401.0052 Cryptography and Security +1401.0055 Representation Theory +1401.0056 Disordered Systems and Neural Networks +1401.0065 History and Overview +1401.0073 Geometric Topology +1401.0075 +1401.0077 Systems and Control +1401.0079 +1401.0081 Optimization and Control +1401.0082 Numerical Analysis +1401.0084 Mesoscale and Nanoscale Physics +1401.0085 Data Structures and Algorithms +1401.0087 Applications +1401.0088 Commutative Algebra +1401.0089 +1401.0091 Commutative Algebra +1401.0092 Computer Vision and Pattern Recognition +1401.0095 Commutative Algebra +1401.0096 Geophysics +1401.0099 +1401.0103 Dynamical Systems +1401.0104 Artificial Intelligence +1401.0106 Optimization and Control +1401.0114 Networking and Internet Architecture +1401.0116 Learning +1401.0118 Machine Learning +1401.0119 Data Structures and Algorithms +1401.0120 Computational Geometry +1401.0121 Disordered Systems and Neural Networks +1401.0123 Differential Geometry +1401.0128 Differential Geometry +1401.0130 General Topology +1401.0131 Information Retrieval +1401.0132 Applications +1401.0137 Software Engineering +1401.0139 Phenomenology +1401.0141 Algebraic Geometry +1401.0143 Differential Geometry +1401.0144 Algebraic Geometry +1401.0146 Mesoscale and Nanoscale Physics +1401.0148 +1401.0159 Numerical Analysis +1401.0162 Geometric Topology +1401.0163 Data Structures and Algorithms +1401.0165 Biological Physics +1401.0166 Computer Vision and Pattern Recognition +1401.0167 +1401.0170 Mesoscale and Nanoscale Physics +1401.0175 +1401.0180 Artificial Intelligence +1401.0181 +1401.0182 +1401.0185 Analysis of PDEs +1401.0188 Numerical Analysis +1401.0189 Computational Complexity +1401.0191 Software Engineering +1401.0192 Probability +1401.0193 Numerical Analysis +1401.0194 Materials Science +1401.0201 Methodology +1401.0202 Optimization and Control +1401.0203 Functional Analysis +1401.0204 Classical Physics +1401.0210 Commutative Algebra +1401.0214 Networking and Internet Architecture +1401.0222 Mesoscale and Nanoscale Physics +1401.0223 Discrete Mathematics +1401.0224 Discrete Mathematics +1401.0229 Chemical Physics +1401.0233 Number Theory +1401.0235 Optimization and Control +1401.0243 General Mathematics +1401.0245 Artificial Intelligence +1401.0251 Probability +1401.0255 Information Retrieval +1401.0258 Materials Science +1401.0259 Complex Variables +1401.0263 Accelerator Physics +1401.0265 Computation +1401.0267 Methodology +1401.0271 Analysis of PDEs +1401.0274 Classical Analysis and ODEs +1401.0275 Category Theory +1401.0279 Discrete Mathematics +1401.0282 Multiagent Systems +1401.0285 Analysis of PDEs +1401.0287 Instrumentation and Methods for Astrophysics +1401.0295 Probability +1401.0297 Atomic and Molecular Clusters +1401.0309 Analysis of PDEs +1401.0312 Analysis of PDEs +1401.0320 Dynamical Systems +1401.0322 Number Theory +1401.0333 Chemical Physics +1401.0334 Machine Learning +1401.0336 Computer Science and Game Theory +1401.0337 Combinatorics +1401.0339 Numerical Analysis +1401.0346 Chemical Physics +1401.0347 Information Theory +1401.0351 Analysis of PDEs +1401.0364 Probability +1401.0372 Numerical Analysis +1401.0375 Strongly Correlated Electrons +1401.0376 Learning +1401.0377 Materials Science +1401.0378 Representation Theory +1401.0379 Logic in Computer Science +1401.0382 Optimization and Control +1401.0386 Optimization and Control +1401.0387 Statistical Mechanics +1401.0389 Number Theory +1401.0394 Optimization and Control +1401.0395 Computer Vision and Pattern Recognition +1401.0396 Data Structures and Algorithms +1401.0399 Numerical Analysis +1401.0405 Differential Geometry +1401.0408 Solar and Stellar Astrophysics +1401.0411 +1401.0416 Materials Science +1401.0418 Number Theory +1401.0419 +1401.0422 Combinatorics +1401.0426 Rings and Algebras +1401.0427 Numerical Analysis +1401.0428 Analysis of PDEs +1401.0431 Geometric Topology +1401.0436 +1401.0437 Information Theory +1401.0438 Phenomenology +1401.0441 Analysis of PDEs +1401.0443 Computational Geometry +1401.0447 Physics and Society +1401.0448 Theory +1401.0452 Complex Variables +1401.0453 +1401.0462 Statistical Finance +1401.0463 Systems and Control +1401.0465 Analysis of PDEs +1401.0468 Computational Geometry +1401.0469 Functional Analysis +1401.0471 Pattern Formation and Solitons +1401.0472 Differential Geometry +1401.0477 Differential Geometry +1401.0480 Information Retrieval +1401.0485 Numerical Analysis +1401.0486 Computer Vision and Pattern Recognition +1401.0489 Combinatorics +1401.0493 Number Theory +1401.0494 Databases +1401.0495 Logic +1401.0500 Combinatorics +1401.0501 Other Quantitative Biology +1401.0503 Software Engineering +1401.0504 Computers and Society +1401.0506 Quantum Algebra +1401.0523 Neural and Evolutionary Computing +1401.0529 Strongly Correlated Electrons +cond-mat/0008131 Materials Science +cond-mat/0411476 Materials Science +math/0601307 Analysis of PDEs +math/0601349 Analysis of PDEs +math/0601350 Analysis of PDEs +math/0601351 Analysis of PDEs +math/0612680 Analysis of PDEs +0711.0732 Strongly Correlated Electrons +0904.3703 Other Condensed Matter +1005.5616 Algebraic Geometry +1006.2328 +1012.5212 Mesoscale and Nanoscale Physics +1102.2372 Optics +1105.5038 Statistics Theory +1106.2738 Logic +1111.4990 Dynamical Systems +1112.0824 Representation Theory +1203.1901 Representation Theory +1203.6215 Theory +1204.1999 Chaotic Dynamics +1205.2456 High Energy Astrophysical Phenomena +1205.3815 Complex Variables +1205.4803 Number Theory +1206.2118 Quantum Algebra +1207.2326 Number Theory +1209.0996 Number Theory +1210.0352 Analysis of PDEs +1210.5692 Algebraic Geometry +1210.7298 Group Theory +1211.2459 Learning +1211.3947 +1212.1053 Number Theory +1301.0138 Geometric Topology +1301.4098 Representation Theory +1301.5961 Information Theory +1301.6219 Geometric Topology +1301.7724 Learning +1303.3743 Functional Analysis +1303.4406 Metric Geometry +1303.6376 Number Theory +1304.2893 Dynamical Systems +1304.6300 Superconductivity +1304.6843 Algebraic Topology +1304.7960 Probability +1305.7174 Probability +1306.3488 Data Analysis, Statistics and Probability +1307.1792 Metric Geometry +1308.0829 High Energy Astrophysical Phenomena +1308.2042 Adaptation and Self-Organizing Systems +1308.3204 Superconductivity +1308.5071 +1309.1987 Number Theory +1309.2727 Probability +1309.3749 Strongly Correlated Electrons +1309.3770 Computational Physics +1309.6431 +1309.7641 Algebraic Geometry +1310.2978 Group Theory +1311.0662 Statistics Theory +1311.1006 Distributed, Parallel, and Cluster Computing +1311.1780 Neural and Evolutionary Computing +1311.2244 Materials Science +1311.3014 Combinatorics +1311.3744 Phenomenology +1312.0678 Metric Geometry +1312.2456 Rings and Algebras +1312.3831 Statistical Mechanics +1312.3920 +1312.4197 +1312.4496 Soft Condensed Matter +1401.0615 Information Theory +1401.1727 Analysis of PDEs +1401.3275 +1401.3351 Fluid Dynamics +1401.5362 Group Theory +1401.5724 Mesoscale and Nanoscale Physics +1401.7204 Phenomenology +1401.8106 Statistical Finance +1402.1747 Phenomenology +1402.2950 Representation Theory +1402.5901 Mesoscale and Nanoscale Physics +1403.0262 Mesoscale and Nanoscale Physics +1403.1034 Neurons and Cognition +1403.1861 Systems and Control +1403.2255 Analysis of PDEs +1403.3289 Phenomenology +1403.4270 Materials Science +1403.4529 +1403.4839 Data Analysis, Statistics and Probability +1403.5202 Statistical Mechanics +1403.6099 Theory +1403.6876 Quantum Gases +1403.7343 Data Structures and Algorithms +1403.8030 Geometric Topology +1403.8043 +1404.2033 Strongly Correlated Electrons +1404.2141 +1404.2646 High Energy Astrophysical Phenomena +1404.2926 Mesoscale and Nanoscale Physics +1404.3309 +1404.3572 Experiment +1404.4043 Lattice +1405.0364 Cosmology and Nongalactic Astrophysics +1405.1570 Mesoscale and Nanoscale Physics +1405.1994 Experiment +1405.3228 Statistical Mechanics +1405.3447 Experiment +1405.4055 Geometric Topology +1405.4765 Analysis of PDEs +1405.6320 Statistical Mechanics +1405.7376 Phenomenology +1406.0932 +1406.1973 History and Overview +1406.6075 High Energy Astrophysical Phenomena +1406.6576 Discrete Mathematics +1407.0318 Strongly Correlated Electrons +1407.0629 +1407.1968 Combinatorics +1407.2405 Astrophysics of Galaxies +1407.3205 Materials Science +1407.4964 Complex Variables +1407.5108 Algebraic Geometry +1407.5117 Computers and Society +1407.5851 Solar and Stellar Astrophysics +1407.6003 Astrophysics of Galaxies +1407.6698 Algebraic Topology +1407.6828 Soft Condensed Matter +1407.6902 Optics +1407.7297 Methodology +1408.0374 Algebraic Geometry +1408.0623 Instrumentation and Detectors +1408.0825 +1408.1130 Astrophysics of Galaxies +1408.1131 Astrophysics of Galaxies +1408.1873 Emerging Technologies +1408.4085 Algebraic Geometry +1408.5515 Commutative Algebra +1408.5554 Earth and Planetary Astrophysics +1408.5988 Experiment +1408.6453 High Energy Astrophysical Phenomena +1408.6883 Combinatorics +1409.0225 Representation Theory +1409.0273 Experiment +1409.0391 Methodology +1409.0526 Software Engineering +1409.0528 Molecular Networks +1409.0534 Theory +1409.0547 Distributed, Parallel, and Cluster Computing +1409.0550 Representation Theory +1409.0555 Number Theory +1409.0562 Other Computer Science +1409.0565 Combinatorics +1409.0567 Algebraic Topology +1409.0573 Strongly Correlated Electrons +1409.0574 Disordered Systems and Neural Networks +1409.0577 Number Theory +1409.0579 General Topology +1409.0581 Astrophysics of Galaxies +1409.0583 Materials Science +1409.0584 Formal Languages and Automata Theory +1409.0585 Machine Learning +1409.0589 Data Analysis, Statistics and Probability +1409.0597 Data Structures and Algorithms +1409.0598 Astrophysics of Galaxies +1409.0600 Experiment +1409.0602 Computer Vision and Pattern Recognition +1409.0603 Representation Theory +1409.0604 Representation Theory +1409.0612 Other Computer Science +1409.0613 Atomic Physics +1409.0614 Superconductivity +1409.0615 +1409.0622 +1409.0623 Analysis of PDEs +1409.0624 Probability +1409.0625 Probability +1409.0626 +1409.0627 Classical Analysis and ODEs +1409.0629 K-Theory and Homology +1409.0631 Analysis of PDEs +1409.0632 Combinatorics +1409.0633 Instrumentation and Detectors +1409.0634 +1409.0635 +1409.0636 Physics and Society +1409.0645 Category Theory +1409.0650 Discrete Mathematics +1409.0651 Databases +1409.0653 Tissues and Organs +1409.0656 Combinatorics +1409.0657 Multiagent Systems +1409.0658 Computational Engineering, Finance, and Science +1409.0662 Combinatorics +1409.0668 Representation Theory +1409.0669 Mathematical Software +1409.0671 Disordered Systems and Neural Networks +1409.0672 Analysis of PDEs +1409.0678 Superconductivity +1409.0680 Algebraic Geometry +1409.0683 +1409.0691 Number Theory +1409.0692 Classical Physics +1409.0695 Symplectic Geometry +1409.0702 Representation Theory +1409.0704 Geometric Topology +1409.0707 Analysis of PDEs +1409.0708 Analysis of PDEs +1409.0711 Classical Analysis and ODEs +1409.0712 +1409.0713 Methodology +1409.0714 +1409.0716 Experiment +1409.0718 Computational Engineering, Finance, and Science +1409.0724 Quantitative Methods +1409.0725 Pattern Formation and Solitons +1409.0726 Complex Variables +1409.0729 Dynamical Systems +1409.0731 Logic +1409.0736 Space Physics +1409.0737 Representation Theory +1409.0738 Dynamical Systems +1409.0748 Learning +1409.0749 Information Retrieval +1409.0753 Digital Libraries +1409.0761 Populations and Evolution +1409.0762 +1409.0763 Learning +1409.0765 +1409.0770 Number Theory +1409.0771 Number Theory +1409.0772 Learning +1409.0773 Phenomenology +1409.0774 Data Analysis, Statistics and Probability +1409.0775 Learning +1409.0784 +1409.0785 Materials Science +1409.0789 History and Philosophy of Physics +1409.0791 Machine Learning +1409.0795 Mesoscale and Nanoscale Physics +1409.0796 Theory +1409.0797 Machine Learning +1409.0798 Databases +1409.0801 Analysis of PDEs +1409.0803 Probability +1409.0804 Solar and Stellar Astrophysics +1409.0806 Algebraic Geometry +1409.0812 Mesoscale and Nanoscale Physics +1409.0814 Computer Vision and Pattern Recognition +1409.0816 Commutative Algebra +1409.0817 +1409.0824 Logic in Computer Science +1409.0826 +1409.0827 Representation Theory +1409.0828 Accelerator Physics +1409.0829 Cryptography and Security +1409.0833 +1409.0839 Experiment +1409.0842 Theory +1409.0845 Optimization and Control +1409.0847 Astrophysics of Galaxies +1409.0849 Applications +0810.4703 Combinatorics +0908.4223 Representation Theory +1001.2494 Geometric Topology +1002.2719 Strongly Correlated Electrons +1003.5409 Group Theory +1004.3015 Geometric Topology +1103.2748 Functional Analysis +1106.0599 Physics and Society +1107.3804 General Topology +1108.6108 Functional Analysis +1110.3762 Quantum Algebra +1110.5076 Algebraic Geometry +1112.1872 Combinatorics +1112.2790 Strongly Correlated Electrons +1112.3314 Strongly Correlated Electrons +1112.5727 General Topology +1112.5729 General Topology +1112.6374 Geometric Topology +1202.2367 Strongly Correlated Electrons +1203.5159 Strongly Correlated Electrons +1203.6053 Algebraic Geometry +1205.5474 Differential Geometry +1205.6965 Strongly Correlated Electrons +1206.1499 Theory +1206.2935 Theory +1206.4798 Strongly Correlated Electrons +1207.0827 General Topology +1207.6708 General Topology +1209.0660 Rings and Algebras +1209.3241 Algebraic Topology +1209.6444 Logic +1210.5804 Group Theory +1210.6747 Metric Geometry +1211.6155 Superconductivity +1212.4717 Probability +1212.6321 Classical Physics +1301.2449 Combinatorics +1301.5297 General Topology +1301.6531 Combinatorics +1301.6969 +1302.1846 +1302.1969 Methodology +1303.4606 Group Theory +1303.4612 Group Theory +1303.7378 Logic in Computer Science +1304.1899 +1304.2558 General Topology +1304.7529 General Topology +1305.1557 Geometric Topology +1305.1618 Numerical Analysis +1305.2554 Fluid Dynamics +1307.1344 Analysis of PDEs +1307.4263 Quantum Gases +1307.6818 Probability +1308.0777 Social and Information Networks +1309.3975 Computational Complexity +1309.5643 Machine Learning +1310.0601 Strongly Correlated Electrons +1310.1654 Optimization and Control +1310.3621 Experiment +1310.4887 Methodology +1310.6975 Atomic Physics +1310.7076 Solar and Stellar Astrophysics +1310.7109 Strongly Correlated Electrons +1311.0489 Soft Condensed Matter +1311.4499 +1311.5863 Combinatorics +1312.1766 Information Theory +1312.2636 +1312.3203 Other Computer Science +1312.3264 Fluid Dynamics +1312.3325 Phenomenology +1312.6786 Algebraic Geometry +1401.0196 +1401.0745 Astrophysics of Galaxies +1401.1943 Information Theory +1401.2222 Mesoscale and Nanoscale Physics +1401.3000 Commutative Algebra +1401.6586 Superconductivity +1402.0379 High Energy Astrophysical Phenomena +1402.1451 Analysis of PDEs +1402.3181 Strongly Correlated Electrons +1402.3786 Phenomenology +1402.5024 Combinatorics +1403.1704 Strongly Correlated Electrons +1403.1810 Mesoscale and Nanoscale Physics +1403.2040 Phenomenology +1403.3119 Emerging Technologies +1403.3383 Strongly Correlated Electrons +1403.4545 Theory +1403.4881 Computational Engineering, Finance, and Science +1403.5747 Instrumentation and Methods for Astrophysics +1404.0351 Astrophysics of Galaxies +1404.1655 Mesoscale and Nanoscale Physics +1404.1705 Geometric Topology +1404.1809 Algebraic Geometry +1404.3972 Soft Condensed Matter +1404.6154 Soft Condensed Matter +1404.7047 Strongly Correlated Electrons +1404.7172 Phenomenology +1405.0051 +1405.0120 Analysis of PDEs +1405.0241 Number Theory +1405.0900 Computational Geometry +1405.1296 +1405.1636 Representation Theory +1405.1803 Combinatorics +1405.3851 Mesoscale and Nanoscale Physics +1405.4408 Category Theory +1405.4733 Logic in Computer Science +1405.5950 +1405.7177 Phenomenology +1406.1187 Cosmology and Nongalactic Astrophysics +1406.2348 Data Structures and Algorithms +1406.3755 +1406.3877 Artificial Intelligence +1406.4999 Phenomenology +1406.5429 Numerical Analysis +1406.6432 Mesoscale and Nanoscale Physics +1407.0429 Mesoscale and Nanoscale Physics +1407.0548 Commutative Algebra +1407.0813 Strongly Correlated Electrons +1407.2413 Theory +1407.2701 Exactly Solvable and Integrable Systems +1407.5139 Probability +1407.6240 Mesoscale and Nanoscale Physics +1407.7524 Instrumentation and Detectors +1407.7745 Group Theory +1407.8449 +1408.1233 Computer Science and Game Theory +1408.2819 Materials Science +1408.3270 Information Theory +1408.4181 Soft Condensed Matter +1408.4403 Statistical Mechanics +1408.4543 Phenomenology +1408.5946 Numerical Analysis +1408.6038 Experiment +1408.6100 Mesoscale and Nanoscale Physics +1408.6310 Mesoscale and Nanoscale Physics +1408.6999 Theory +1409.1758 Solar and Stellar Astrophysics +1409.2109 +1409.2717 K-Theory and Homology +1409.3332 Phenomenology +1409.3731 Number Theory +1409.5183 Astrophysics of Galaxies +1409.7070 Strongly Correlated Electrons +1409.7440 +1409.8352 Networking and Internet Architecture +1410.1543 Astrophysics of Galaxies +1410.4345 Instrumentation and Methods for Astrophysics +1410.4488 Formal Languages and Automata Theory +1410.5978 Mesoscale and Nanoscale Physics +1410.7117 +1411.0061 Earth and Planetary Astrophysics +1411.0158 Group Theory +1411.1757 Astrophysics of Galaxies +1411.1760 Astrophysics of Galaxies +1411.1762 Astrophysics of Galaxies +1411.1885 +1411.2777 Solar and Stellar Astrophysics +1411.4010 Earth and Planetary Astrophysics +1411.4088 +1411.5227 History and Overview +1411.5325 +1411.6153 Materials Science +1411.6580 Other Computer Science +1411.7112 Soft Condensed Matter +1411.7405 Machine Learning +1411.7558 Lattice +1411.7609 Complex Variables +1412.0051 Dynamical Systems +1412.0291 Neurons and Cognition +1412.0385 Algebraic Geometry +1412.0429 +1412.0570 Experiment +1412.0819 Lattice +1412.0899 Theory +1412.0928 Experiment +1412.0962 Computational Geometry +1412.1072 +1412.1074 Genomics +1412.1075 Instrumentation and Detectors +1412.1082 Physics and Society +1412.1091 Astrophysics of Galaxies +1412.1102 Optics +1412.1109 Instrumentation and Methods for Astrophysics +1412.1110 Combinatorics +1412.1114 Learning +1412.1121 Fluid Dynamics +1412.1122 Statistical Mechanics +1412.1124 Computational Complexity +1412.1126 Dynamical Systems +1412.1127 Programming Languages +1412.1128 Dynamical Systems +1412.1130 Computational Complexity +1412.1133 Physics and Society +1412.1134 Superconductivity +1412.1135 Computer Vision and Pattern Recognition +1412.1136 Optics +1412.1137 Earth and Planetary Astrophysics +1412.1138 Learning +1412.1140 Hardware Architecture +1412.1141 Software Engineering +1412.1151 Logic in Computer Science +1412.1152 Logic in Computer Science +1412.1153 Logic in Computer Science +1412.1154 Logic in Computer Science +1412.1156 Logic in Computer Science +1412.1161 Probability +1412.1162 High Energy Astrophysical Phenomena +1412.1163 High Energy Astrophysical Phenomena +1412.1164 High Energy Astrophysical Phenomena +1412.1165 High Energy Astrophysical Phenomena +1412.1166 High Energy Astrophysical Phenomena +1412.1168 Mesoscale and Nanoscale Physics +1412.1169 High Energy Astrophysical Phenomena +1412.1170 High Energy Astrophysical Phenomena +1412.1171 High Energy Astrophysical Phenomena +1412.1172 High Energy Astrophysical Phenomena +1412.1173 High Energy Astrophysical Phenomena +1412.1174 High Energy Astrophysical Phenomena +1412.1175 High Energy Astrophysical Phenomena +1412.1176 High Energy Astrophysical Phenomena +1412.1177 High Energy Astrophysical Phenomena +1412.1179 High Energy Astrophysical Phenomena +1412.1180 Human-Computer Interaction +1412.1184 Combinatorics +1412.1185 Social and Information Networks +1412.1186 Algebraic Geometry +1412.1187 Combinatorics +1412.1188 Geometric Topology +1412.1189 Social and Information Networks +1412.1190 High Energy Astrophysical Phenomena +1412.1192 +1412.1194 Computer Vision and Pattern Recognition +1412.1200 Differential Geometry +1412.1201 Theory +1412.1202 Materials Science +1412.1203 Probability +1412.1207 Dynamical Systems +1412.1208 Operator Algebras +1412.1209 Optics +1412.1211 Statistical Mechanics +1412.1212 Analysis of PDEs +1412.1213 Optimization and Control +1412.1215 Computation and Language +1412.1216 Computer Vision and Pattern Recognition +1412.1219 Robotics +1412.1220 Representation Theory +1412.1221 Programming Languages +1412.1222 Functional Analysis +1412.1224 Numerical Analysis +1412.1226 Dynamical Systems +1412.1227 Networking and Internet Architecture +1412.1228 Phenomenology +1412.1230 +1412.1234 Numerical Analysis +1412.1235 Biomolecules +1412.1236 Functional Analysis +1412.1238 Mesoscale and Nanoscale Physics +1412.1241 Computational Geometry +1412.1243 Populations and Evolution +1412.1245 Atomic Physics +1412.1247 Phenomenology +1412.1249 +1412.1250 Astrophysics of Galaxies +1412.1253 Numerical Analysis +1412.1255 K-Theory and Homology +1412.1256 Instrumentation and Methods for Astrophysics +1412.1260 Numerical Analysis +1412.1265 Computer Vision and Pattern Recognition +1412.1266 Plasma Physics +1412.1267 Information Theory +1412.1270 Spectral Theory +1412.1277 Analysis of PDEs +1412.1278 Probability +1412.1284 Materials Science +1412.1293 Statistical Mechanics +1412.1294 Accelerator Physics +1412.1297 Distributed, Parallel, and Cluster Computing +1412.1299 Dynamical Systems +1412.1303 Applications +1412.1304 Combinatorics +1412.1307 Fluid Dynamics +1412.1310 Analysis of PDEs +1412.1313 Biological Physics +1412.1315 Applications +1412.1316 Astrophysics of Galaxies +1412.1318 Data Structures and Algorithms +1412.1321 Category Theory +1412.1322 Soft Condensed Matter +1412.1324 Fluid Dynamics +1412.1327 Plasma Physics +1412.1329 +1412.1330 Graphics +1412.1331 Applications +1412.1332 Analysis of PDEs +1412.1334 Exactly Solvable and Integrable Systems +1412.1340 Instrumentation and Methods for Astrophysics +1412.1342 Computation and Language +1412.1343 Optics +1412.1344 Methodology +1412.1345 Mesoscale and Nanoscale Physics +1412.1352 Numerical Analysis +1412.1353 Machine Learning +1412.1362 General Topology +1412.1363 Numerical Analysis +1412.1364 Instrumentation and Detectors +1412.1367 Analysis of PDEs +1412.1370 Machine Learning +1412.1372 Information Theory +1412.1373 Methodology +1412.1376 High Energy Astrophysical Phenomena +1412.1379 Materials Science +1412.1381 Probability +1412.1384 Probability +1412.1388 Analysis of PDEs +1412.1391 Accelerator Physics +1412.1393 Programming Languages +1412.1398 Computational Geometry +1412.1399 Subcellular Processes +1412.1401 Computational Geometry +1412.1402 Other Computer Science +1412.1404 Commutative Algebra +1412.1406 Instrumentation and Detectors +1412.1407 Optimization and Control +1412.1410 History and Philosophy of Physics +1412.1414 Methodology +1412.1415 Combinatorics +1412.1418 Solar and Stellar Astrophysics +1412.1419 Distributed, Parallel, and Cluster Computing +1412.1421 Superconductivity +1412.1424 Human-Computer Interaction +1412.1429 Probability +1412.1431 Combinatorics +1412.1432 Solar and Stellar Astrophysics +1412.1436 Solar and Stellar Astrophysics +1412.1438 Probability +1412.1442 Computer Vision and Pattern Recognition +1412.1443 Machine Learning +1412.1448 Number Theory +1412.1449 Quantitative Methods +1412.1461 Functional Analysis +1412.1465 Metric Geometry +1412.1466 Geometric Topology +1412.1469 Risk Management +math/0703585 Combinatorics +0809.4562 +1005.0237 Probability +1008.4994 Statistical Mechanics +1109.0936 Earth and Planetary Astrophysics +1201.2301 Cosmology and Nongalactic Astrophysics +1202.1121 Learning +1205.2582 +1205.6721 Probability +1206.1718 Operator Algebras +1207.1068 +1207.6470 Operator Algebras +1208.0365 +1208.4308 Materials Science +1210.0257 Data Structures and Algorithms +1210.2032 Operator Algebras +1210.2165 Probability +1210.7559 Learning +1301.1113 Number Theory +1301.5221 Algebraic Geometry +1302.3844 Combinatorics +1303.2274 Algebraic Geometry +1303.3240 Learning +1304.1957 Mesoscale and Nanoscale Physics +1305.4406 Probability +1305.4964 Optics +1305.5339 Data Structures and Algorithms +1307.3983 Number Theory +1308.1575 Computational Complexity +1308.3345 Optics +1309.1658 Number Theory +1309.3615 Optimization and Control +1311.2247 Dynamical Systems +1311.3416 +1311.3529 Portfolio Management +1311.5367 Instrumentation and Detectors +1311.6428 Probability +1312.2529 Probability +1312.4934 Complex Variables +1312.5632 Strongly Correlated Electrons +1312.5911 Statistics Theory +1401.0490 Numerical Analysis +1401.4216 Instrumentation and Detectors +1402.0776 Quantum Gases +1402.4764 General Physics +1402.5082 Astrophysics of Galaxies +1402.5981 Analysis of PDEs +1403.2138 Dynamical Systems +1403.5776 Commutative Algebra +1404.1170 Mesoscale and Nanoscale Physics +1404.1239 Methodology +1404.4398 Phenomenology +1404.6659 Strongly Correlated Electrons +1404.7004 Materials Science +1404.7711 Optimization and Control +1405.0163 +1405.5347 Chaotic Dynamics +1405.7215 Plasma Physics +1406.0518 Number Theory +1406.1391 Neurons and Cognition +1406.3809 Theory +1406.4468 Materials Science +1406.5026 +1406.5796 Phenomenology +1406.6180 Theory +1407.0947 Optics +1407.1037 Quantum Gases +1407.2187 Superconductivity +1407.2768 Probability +1407.2952 Dynamical Systems +1407.3734 Optics +1407.4048 Fluid Dynamics +1407.4164 Mesoscale and Nanoscale Physics +1407.5624 Phenomenology +1407.5763 Materials Science +1407.7358 Superconductivity +1407.8084 +1408.1200 Mesoscale and Nanoscale Physics +1408.1224 Statistical Mechanics +1408.1960 Theory +1408.5646 Phenomenology +1408.6749 Analysis of PDEs +1409.0948 Instrumentation and Detectors +1409.1650 +1409.2259 Instrumentation and Detectors +1409.3871 Functional Analysis +1409.4603 Earth and Planetary Astrophysics +1409.6247 Formal Languages and Automata Theory +1409.6722 Strongly Correlated Electrons +1409.6758 Optimization and Control +1409.7545 Theory +1410.0854 Instrumentation and Methods for Astrophysics +1410.2876 Operator Algebras +1410.3202 Strongly Correlated Electrons +1410.3880 Mesoscale and Nanoscale Physics +1410.5224 Computer Vision and Pattern Recognition +1410.6045 Symplectic Geometry +1410.6230 Algebraic Geometry +1410.7197 Dynamical Systems +1410.7869 Quantum Gases +1410.8008 Quantum Gases +1410.8858 Theory +1411.0068 Lattice +1411.0846 Analysis of PDEs +1411.1473 Lattice +1411.1575 K-Theory and Homology +1411.1865 Probability +1411.1881 Mesoscale and Nanoscale Physics +1411.3071 Networking and Internet Architecture +1411.3159 Computer Vision and Pattern Recognition +1411.3214 Computers and Society +1411.3233 Representation Theory +1411.3251 Computational Engineering, Finance, and Science +1411.3314 Solar and Stellar Astrophysics +1411.3390 Statistics Theory +1411.3501 Optics +1411.3671 Astrophysics of Galaxies +1411.3709 Populations and Evolution +1411.3716 Networking and Internet Architecture +1411.3734 Rings and Algebras +1411.3735 +1411.3737 Cryptography and Security +1411.3738 Other Condensed Matter +1411.3742 Networking and Internet Architecture +1411.3743 +1411.3745 Materials Science +1411.3747 Computer Science and Game Theory +1411.3749 Social and Information Networks +1411.3761 Information Retrieval +1411.3764 Information Theory +1411.3770 Optics +1411.3771 Cryptography and Security +1411.3772 +1411.3773 Experiment +1411.3774 Materials Science +1411.3776 Social and Information Networks +1411.3777 Operating Systems +1411.3780 Algebraic Geometry +1411.3781 Lattice +1411.3786 Solar and Stellar Astrophysics +1411.3787 Machine Learning +1411.3788 Representation Theory +1411.3790 Logic in Computer Science +1411.3791 Logic in Computer Science +1411.3792 Artificial Intelligence +1411.3793 Software Engineering +1411.3794 Robotics +1411.3796 Physics and Society +1411.3798 Group Theory +1411.3800 Statistics Theory +1411.3801 Populations and Evolution +1411.3803 Machine Learning +1411.3805 Theory +1411.3806 Artificial Intelligence +1411.3810 Information Theory +1411.3811 Distributed, Parallel, and Cluster Computing +1411.3812 Numerical Analysis +1411.3814 Algebraic Geometry +1411.3818 Software Engineering +1411.3822 Theory +1411.3824 Dynamical Systems +1411.3825 Statistics Theory +1411.3826 Fluid Dynamics +1411.3832 Rings and Algebras +1411.3836 Metric Geometry +1411.3839 Computational Physics +1411.3840 +1411.3843 Information Retrieval +1411.3846 Complex Variables +1411.3847 Solar and Stellar Astrophysics +1411.3850 Materials Science +1411.3854 +1411.3857 Information Theory +1411.3859 Materials Science +1411.3861 Rings and Algebras +1411.3862 Soft Condensed Matter +1411.3863 Materials Science +1411.3868 Experiment +1411.3875 Statistics Theory +1411.3878 Rings and Algebras +1411.3879 Experiment +1411.3880 Artificial Intelligence +1411.3882 Analysis of PDEs +1411.3883 Mesoscale and Nanoscale Physics +1411.3884 Solar and Stellar Astrophysics +1411.3885 Combinatorics +1411.3889 Theory +1411.3890 Phenomenology +1411.3891 Algebraic Geometry +1411.3894 +1411.3895 Robotics +1411.3897 Optimization and Control +1411.3901 +1411.3907 Statistical Mechanics +1411.3908 Networking and Internet Architecture +1411.3911 Number Theory +1411.3916 Lattice +1411.3919 Learning +1411.3922 +1411.3925 Optimization and Control +1411.3929 Hardware Architecture +1411.3931 Phenomenology +1411.3933 Analysis of PDEs +1411.3935 Social and Information Networks +1411.3942 Phenomenology +1411.3946 Statistical Mechanics +1411.3948 Computers and Society +1411.3953 Optimization and Control +1411.3964 Numerical Analysis +1411.3969 Software Engineering +1411.3973 +1411.3976 Plasma Physics +1411.3978 +1411.3980 Phenomenology +1411.3994 High Energy Astrophysical Phenomena +1411.4002 Instrumentation and Methods for Astrophysics +1411.4006 Computer Vision and Pattern Recognition +1411.4008 Analysis of PDEs +1411.4011 Networking and Internet Architecture +1411.4012 Networking and Internet Architecture +1411.4016 Optics +1411.4018 Systems and Control +1411.4020 Information Theory +1411.4021 Applications +1411.4025 Number Theory +1411.4026 Phenomenology +1411.4027 Numerical Analysis +1411.4028 +1411.4035 Classical Analysis and ODEs +1411.4040 Statistics Theory +1411.4041 Probability +cond-mat/0506530 Other Condensed Matter +cond-mat/0508013 Statistical Mechanics +cond-mat/0509154 Statistical Mechanics +cond-mat/0509728 Statistical Mechanics +cond-mat/0510088 Statistical Mechanics +cond-mat/0511107 Strongly Correlated Electrons +cond-mat/0512330 Materials Science +cond-mat/0512466 Materials Science +cond-mat/0601321 Other Condensed Matter +cond-mat/0601372 Strongly Correlated Electrons +cond-mat/0601695 Mesoscale and Nanoscale Physics +cond-mat/0603270 Other Condensed Matter +cond-mat/0603622 Disordered Systems and Neural Networks +cond-mat/0604186 Statistical Mechanics +cond-mat/0604671 Other Condensed Matter +cond-mat/0605211 Statistical Mechanics +cond-mat/0605699 Other Condensed Matter +cond-mat/0607045 Statistical Mechanics +cond-mat/0607493 Other Condensed Matter +cond-mat/0611058 Superconductivity +cond-mat/0611259 Other Condensed Matter +cond-mat/0611392 Mesoscale and Nanoscale Physics +cond-mat/0701464 Mesoscale and Nanoscale Physics +cond-mat/0702462 Other Condensed Matter +cs/0111029 Hardware Architecture +cs/0111030 Hardware Architecture +cs/0204023 Computation and Language +cs/0305019 Artificial Intelligence +cs/0306070 Distributed, Parallel, and Cluster Computing +cs/0307037 Other Computer Science +cs/0401017 Computer Vision and Pattern Recognition +cs/0408062 Information Theory +cs/0409025 Hardware Architecture +cs/0503088 Information Theory +cs/0508004 Logic in Computer Science +cs/0509092 Computation and Language +cs/0509097 Information Theory +cs/0512093 Information Theory +cs/9312101 Artificial Intelligence +cs/9401101 Artificial Intelligence +cs/9402103 Artificial Intelligence +cs/9406102 Artificial Intelligence +cs/9409101 Artificial Intelligence +cs/9412101 Artificial Intelligence +cs/9412102 Artificial Intelligence +cs/9501101 Artificial Intelligence +cs/9501102 Artificial Intelligence +cs/9503101 Artificial Intelligence +cs/9505101 Artificial Intelligence +cs/9505102 Artificial Intelligence +cs/9505103 Artificial Intelligence +cs/9505104 Artificial Intelligence +cs/9505105 Artificial Intelligence +cs/9508101 Artificial Intelligence +cs/9510101 Artificial Intelligence +cs/9510102 Artificial Intelligence +cs/9511101 Artificial Intelligence +cs/9512101 Artificial Intelligence +cs/9512103 Artificial Intelligence +cs/9512104 Artificial Intelligence +cs/9512105 Artificial Intelligence +cs/9512106 Artificial Intelligence +cs/9512107 Artificial Intelligence +cs/9603104 Artificial Intelligence +cs/9604101 Artificial Intelligence +cs/9604102 Artificial Intelligence +cs/9604103 Artificial Intelligence +cs/9605102 Artificial Intelligence +cs/9605103 Artificial Intelligence +cs/9605105 Artificial Intelligence +cs/9605106 Artificial Intelligence +cs/9606102 Artificial Intelligence +cs/9610101 Artificial Intelligence +cs/9610102 Artificial Intelligence +cs/9611101 Artificial Intelligence +cs/9612101 Artificial Intelligence +cs/9612103 Artificial Intelligence +cs/9704101 Artificial Intelligence +cs/9710101 Artificial Intelligence +cs/9711104 Artificial Intelligence +cs/9712101 Artificial Intelligence +cs/9712102 Artificial Intelligence +cs/9805101 Artificial Intelligence +cs/9806101 Artificial Intelligence +cs/9809014 Logic in Computer Science +cs/9810013 Programming Languages +dg-ga/9509003 Differential Geometry +funct-an/9606002 Functional Analysis +gr-qc/0001017 +gr-qc/0001040 +gr-qc/0001073 +gr-qc/0002030 +gr-qc/0002043 +gr-qc/0003019 +gr-qc/0003051 +gr-qc/0003057 +gr-qc/0003064 +gr-qc/0003090 +gr-qc/0003103 +gr-qc/0003115 +gr-qc/0004006 +gr-qc/0005073 +gr-qc/0005085 +gr-qc/0005113 +gr-qc/0006065 +gr-qc/0006092 +gr-qc/0007026 +gr-qc/0007069 +gr-qc/0007074 +gr-qc/0007077 +gr-qc/0007083 +gr-qc/0007086 +gr-qc/0008043 +gr-qc/0008075 +gr-qc/0009007 +gr-qc/0009012 +gr-qc/0009018 +gr-qc/0009036 +gr-qc/0009055 +gr-qc/0009084 +gr-qc/0009095 +gr-qc/0009102 +gr-qc/0010003 +gr-qc/0010009 +gr-qc/0010019 +gr-qc/0010038 +gr-qc/0010040 +gr-qc/0010076 +gr-qc/0010077 +gr-qc/0010094 +gr-qc/0010102 +gr-qc/0011006 +gr-qc/0011070 +gr-qc/0011072 +gr-qc/0011076 +gr-qc/0012050 +gr-qc/0012074 +gr-qc/0012088 +gr-qc/0101038 +gr-qc/0101044 +gr-qc/0101048 +gr-qc/0101114 +gr-qc/0102074 +gr-qc/0102087 +gr-qc/0103053 +gr-qc/0103071 +gr-qc/0103083 +gr-qc/0103084 +gr-qc/0103090 +gr-qc/0103098 +gr-qc/0103101 +gr-qc/0103108 +gr-qc/0104001 +gr-qc/0104018 +gr-qc/0104040 +gr-qc/0104043 +gr-qc/0104048 +gr-qc/0104059 +gr-qc/0104071 +gr-qc/0104073 +gr-qc/0104081 +gr-qc/0104085 +gr-qc/0104086 +gr-qc/0104092 +gr-qc/0105002 +gr-qc/0105004 +gr-qc/0105028 +gr-qc/0105032 +gr-qc/0105033 +gr-qc/0105046 +gr-qc/0105059 +gr-qc/0105060 +gr-qc/0105086 +gr-qc/0105098 +gr-qc/0105099 +gr-qc/0105120 +gr-qc/0106001 +gr-qc/0106002 +gr-qc/0106006 +gr-qc/0106027 +gr-qc/0106058 +gr-qc/0106073 +gr-qc/0106074 +gr-qc/0106079 +gr-qc/0106094 +gr-qc/0107066 +gr-qc/0107071 +gr-qc/0107074 +gr-qc/0107078 +gr-qc/0107087 +gr-qc/0107093 +gr-qc/0107096 +gr-qc/0107099 +gr-qc/0107101 +gr-qc/0107103 +gr-qc/0108001 +gr-qc/0108013 +gr-qc/0108029 +gr-qc/0108043 +gr-qc/0108050 +gr-qc/0108070 +gr-qc/0108071 +gr-qc/0108088 +gr-qc/0109015 +gr-qc/0110008 +gr-qc/0110022 +gr-qc/0110027 +gr-qc/0110046 +gr-qc/0110058 +gr-qc/0110070 +gr-qc/0110083 +gr-qc/0110102 +gr-qc/0111029 +gr-qc/0111071 +gr-qc/0111094 +gr-qc/0112039 +gr-qc/0201027 +gr-qc/0202002 +gr-qc/0202012 +gr-qc/0202023 +gr-qc/0202095 +gr-qc/0203007 +gr-qc/0203033 +gr-qc/0203095 +gr-qc/0204001 +gr-qc/0204010 +gr-qc/0204050 +gr-qc/0204077 +gr-qc/0205052 +gr-qc/0205054 +gr-qc/0205066 +gr-qc/0205075 +gr-qc/0205080 +gr-qc/0205122 +gr-qc/0206001 +gr-qc/0206039 +gr-qc/0207023 +gr-qc/0207031 +gr-qc/0207052 +gr-qc/0207066 +gr-qc/0207069 +gr-qc/0207075 +gr-qc/0207079 +gr-qc/0207105 +gr-qc/0208010 +gr-qc/0208031 +gr-qc/0208053 +gr-qc/0208080 +gr-qc/0208088 +gr-qc/0209002 +gr-qc/0209008 +gr-qc/0209011 +gr-qc/0209050 +gr-qc/0209080 +gr-qc/0209105 +gr-qc/0210012 +gr-qc/0210013 +gr-qc/0210023 +gr-qc/0210041 +gr-qc/0210059 +gr-qc/0210098 +gr-qc/0210100 +gr-qc/0211002 +gr-qc/0211013 +gr-qc/0211087 +gr-qc/0211089 +gr-qc/0211090 +gr-qc/0211107 +gr-qc/0211109 +gr-qc/0212021 +gr-qc/0212024 +gr-qc/0212025 +gr-qc/0212062 +gr-qc/0212077 +gr-qc/0212109 +gr-qc/0212118 +gr-qc/0212125 +gr-qc/0212129 +gr-qc/0301010 +gr-qc/0301055 +gr-qc/0301072 +gr-qc/0302041 +gr-qc/0302066 +gr-qc/0303005 +gr-qc/0303076 +gr-qc/0304054 +gr-qc/0304091 +gr-qc/0304110 +gr-qc/0305019 +gr-qc/0305047 +gr-qc/0305057 +gr-qc/0305086 +gr-qc/0305098 +gr-qc/0306006 +gr-qc/0306008 +gr-qc/0306019 +gr-qc/0306029 +gr-qc/0306035 +gr-qc/0306050 +gr-qc/0306089 +gr-qc/0306111 +gr-qc/0307012 +gr-qc/0307026 +gr-qc/0307058 +gr-qc/0307069 +gr-qc/0308001 +gr-qc/0308016 +gr-qc/0308019 +gr-qc/0308034 +gr-qc/0308067 +gr-qc/0308071 +gr-qc/0308086 +gr-qc/0309027 +gr-qc/0309040 +gr-qc/0310034 +gr-qc/0310076 +gr-qc/0310126 +gr-qc/0311062 +gr-qc/0312008 +gr-qc/0312014 +gr-qc/0312017 +gr-qc/0312062 +gr-qc/0312082 +gr-qc/0312087 +gr-qc/0401105 +gr-qc/0401108 +gr-qc/0401123 +gr-qc/0402030 +gr-qc/0402053 +gr-qc/0402054 +gr-qc/0403011 +gr-qc/0403081 +gr-qc/0403115 +gr-qc/0403121 +gr-qc/0404010 +gr-qc/0404023 +gr-qc/0404025 +gr-qc/0404041 +gr-qc/0404083 +gr-qc/0404085 +gr-qc/0404094 +gr-qc/0405062 +gr-qc/0405067 +gr-qc/0405087 +gr-qc/0405090 +gr-qc/0405112 +gr-qc/0406020 +gr-qc/0406068 +gr-qc/0406084 +gr-qc/0406123 +gr-qc/0407005 +gr-qc/0407010 +gr-qc/0407024 +gr-qc/0407036 +gr-qc/0407037 +gr-qc/0407062 +gr-qc/0407068 +gr-qc/0407070 +gr-qc/0408070 +gr-qc/0408091 +gr-qc/0409021 +gr-qc/0409087 +gr-qc/0409098 +gr-qc/0410004 +gr-qc/0410061 +gr-qc/0411085 +gr-qc/0411104 +gr-qc/0411127 +gr-qc/0411146 +gr-qc/0412005 +gr-qc/0412011 +gr-qc/0412026 +gr-qc/0412029 +gr-qc/0412033 +gr-qc/0412064 +gr-qc/0502087 +gr-qc/0502110 +gr-qc/0503034 +gr-qc/0503039 +gr-qc/0503049 +gr-qc/0503120 +gr-qc/0504013 +gr-qc/0504026 +gr-qc/0504047 +gr-qc/0504052 +gr-qc/0504112 +gr-qc/0504116 +gr-qc/0504145 +gr-qc/0505006 +gr-qc/0505052 +gr-qc/0505074 +gr-qc/0505092 +gr-qc/0506117 +gr-qc/0507034 +gr-qc/0507053 +gr-qc/0507059 +gr-qc/0507060 +gr-qc/0507070 +gr-qc/0507077 +gr-qc/0507108 +gr-qc/0507121 +gr-qc/0508023 +gr-qc/0508031 +gr-qc/0508049 +gr-qc/0508081 +gr-qc/0509024 +gr-qc/0509031 +gr-qc/0509053 +gr-qc/0509071 +gr-qc/0509081 +gr-qc/0509113 +gr-qc/0509123 +gr-qc/0510014 +gr-qc/0510058 +gr-qc/0510124 +gr-qc/0511005 +gr-qc/0511058 +gr-qc/0511061 +gr-qc/0511068 +gr-qc/0511069 +gr-qc/0511075 +gr-qc/0511111 +gr-qc/0512023 +gr-qc/0512067 +gr-qc/0601014 +gr-qc/0601030 +gr-qc/0601036 +gr-qc/0601040 +gr-qc/0601116 +gr-qc/0602004 +gr-qc/0602090 +gr-qc/0602097 +gr-qc/0602104 +gr-qc/0604105 +gr-qc/0604115 +gr-qc/0605015 +gr-qc/0605017 +gr-qc/0605037 +gr-qc/0605044 +gr-qc/0605055 +gr-qc/0605065 +gr-qc/0605090 +gr-qc/0605140 +gr-qc/0605154 +gr-qc/0606030 +gr-qc/0606071 +gr-qc/0606088 +gr-qc/0607007 +gr-qc/0607016 +gr-qc/0608062 +gr-qc/0609038 +gr-qc/0609044 +gr-qc/0609094 +gr-qc/0610090 +gr-qc/0611154 +gr-qc/0701018 +gr-qc/0701060 +gr-qc/0701065 +gr-qc/0701162 +gr-qc/0702079 +gr-qc/9209001 +gr-qc/9301002 +gr-qc/9305007 +gr-qc/9307036 +gr-qc/9311008 +gr-qc/9312014 +gr-qc/9312023 +gr-qc/9312033 +gr-qc/9402024 +gr-qc/9402031 +gr-qc/9403003 +gr-qc/9403055 +gr-qc/9404038 +gr-qc/9404040 +gr-qc/9405018 +gr-qc/9405023 +gr-qc/9406043 +gr-qc/9407021 +gr-qc/9408021 +gr-qc/9409030 +gr-qc/9412036 +gr-qc/9501029 +gr-qc/9503003 +gr-qc/9503017 +gr-qc/9503020 +gr-qc/9505048 +gr-qc/9506057 +gr-qc/9506068 +gr-qc/9507049 +gr-qc/9508011 +gr-qc/9509011 +gr-qc/9510005 +gr-qc/9510069 +gr-qc/9511009 +gr-qc/9511078 +gr-qc/9512001 +gr-qc/9602020 +gr-qc/9602053 +gr-qc/9603002 +gr-qc/9603038 +gr-qc/9603048 +gr-qc/9604021 +gr-qc/9604022 +gr-qc/9604025 +gr-qc/9606020 +gr-qc/9607041 +gr-qc/9607059 +gr-qc/9608032 +gr-qc/9608042 +gr-qc/9608057 +gr-qc/9609037 +gr-qc/9609064 +gr-qc/9609073 +gr-qc/9610059 +gr-qc/9610067 +gr-qc/9610071 +gr-qc/9611019 +gr-qc/9611025 +gr-qc/9611040 +gr-qc/9612001 +gr-qc/9612007 +gr-qc/9612021 +gr-qc/9612033 +gr-qc/9612035 +gr-qc/9612036 +gr-qc/9612067 +gr-qc/9701004 +gr-qc/9701005 +gr-qc/9701021 +gr-qc/9701040 +gr-qc/9702032 +gr-qc/9703075 +gr-qc/9703090 +gr-qc/9704014 +gr-qc/9704017 +gr-qc/9704031 +gr-qc/9704053 +gr-qc/9704074 +gr-qc/9704077 +gr-qc/9705049 +gr-qc/9706051 +gr-qc/9706054 +gr-qc/9707011 +gr-qc/9707015 +gr-qc/9707019 +gr-qc/9707020 +gr-qc/9707035 +gr-qc/9709043 +gr-qc/9709061 +gr-qc/9710075 +gr-qc/9710103 +gr-qc/9710123 +gr-qc/9710129 +gr-qc/9711044 +gr-qc/9711090 +gr-qc/9712007 +gr-qc/9712008 +gr-qc/9712043 +gr-qc/9712075 +gr-qc/9712092 +gr-qc/9712100 +gr-qc/9801034 +gr-qc/9801039 +gr-qc/9803003 +gr-qc/9803058 +gr-qc/9803064 +gr-qc/9803067 +gr-qc/9803070 +gr-qc/9804004 +gr-qc/9804020 +gr-qc/9805001 +gr-qc/9805057 +gr-qc/9805083 +gr-qc/9806008 +gr-qc/9806010 +gr-qc/9806118 +gr-qc/9807040 +gr-qc/9809020 +gr-qc/9809088 +gr-qc/9811047 +gr-qc/9811053 +gr-qc/9811069 +gr-qc/9812031 +gr-qc/9812053 +gr-qc/9812070 +gr-qc/9901015 +gr-qc/9901057 +gr-qc/9901059 +gr-qc/9901080 +gr-qc/9902004 +gr-qc/9902043 +gr-qc/9902074 +gr-qc/9903094 +gr-qc/9904052 +gr-qc/9904054 +gr-qc/9904078 +gr-qc/9905019 +gr-qc/9905031 +gr-qc/9905041 +gr-qc/9905051 +gr-qc/9905089 +gr-qc/9905096 +gr-qc/9906009 +gr-qc/9906013 +gr-qc/9906051 +gr-qc/9907003 +gr-qc/9907042 +gr-qc/9907053 +gr-qc/9907097 +gr-qc/9908003 +gr-qc/9908013 +gr-qc/9909015 +gr-qc/9909063 +gr-qc/9910020 +gr-qc/9910037 +gr-qc/9910052 +gr-qc/9910068 +gr-qc/9910091 +gr-qc/9910101 +gr-qc/9911002 +gr-qc/9911016 +gr-qc/9911033 +gr-qc/9911042 +gr-qc/9911103 +gr-qc/9912059 +gr-qc/9912082 +gr-qc/9912107 +hep-ex/0001008 Experiment +hep-ex/0001019 Experiment +hep-ex/0001064 Experiment +hep-ex/0002018 Experiment +hep-ex/0008062 Experiment +hep-ex/0008077 Experiment +hep-ex/0008078 Experiment +hep-ex/0009026 Experiment +hep-ex/0009033 Experiment +hep-ex/0010065 Experiment +hep-ex/0010074 Experiment +hep-ex/0011060 Experiment +hep-ex/0011061 Experiment +hep-ex/0012040 Experiment +hep-ex/0012064 Experiment +hep-ex/0103003 Experiment +hep-ex/0103011 Experiment +hep-ex/0103016 Experiment +hep-ex/0103028 Experiment +hep-ex/0103036 Experiment +hep-ex/0103037 Experiment +hep-ex/0104006 Experiment +hep-ex/0104010 Experiment +hep-ex/0104022 Experiment +hep-ex/0105055 Experiment +hep-ex/0105093 Experiment +hep-ex/0106003 Experiment +hep-ex/0106013 Experiment +hep-ex/0106016 Experiment +hep-ex/0106028 Experiment +hep-ex/0106066 Experiment +hep-ex/0106071 Experiment +hep-ex/0106088 Experiment +hep-ex/0106099 Experiment +hep-ex/0107010 Experiment +hep-ex/0107018 Experiment +hep-ex/0107027 Experiment +hep-ex/0107041 Experiment +hep-ex/0107062 Experiment +hep-ex/0107064 Experiment +hep-ex/0107079 Experiment +hep-ex/0107081 Experiment +hep-ex/0108038 Experiment +hep-ex/0109002 Experiment +hep-ex/0110087 Experiment +hep-ex/0111051 Experiment +hep-ex/0111086 Experiment +hep-ex/0112032 Experiment +hep-ex/0201002 Experiment +hep-ex/0201038 Experiment +hep-ex/0202010 Experiment +hep-ex/0202029 Experiment +hep-ex/0202031 Experiment +hep-ex/0203004 Experiment +hep-ex/0203013 Experiment +hep-ex/0203028 Experiment +hep-ex/0204030 Experiment +hep-ex/0205037 Experiment +hep-ex/0207018 Experiment +hep-ex/0207044 Experiment +hep-ex/0207095 Experiment +hep-ex/0208007 Experiment +hep-ex/0208015 Experiment +hep-ex/0208017 Experiment +hep-ex/0208043 Experiment +hep-ex/0209001 Experiment +hep-ex/0209033 Experiment +hep-ex/0209056 Experiment +hep-ex/0209071 Experiment +hep-ex/0210018 Experiment +hep-ex/0210019 Experiment +hep-ex/0210058 Experiment +hep-ex/0211003 Experiment +hep-ex/0211044 Experiment +hep-ex/0211055 Experiment +hep-ex/0211061 Experiment +hep-ex/0212035 Experiment +hep-ex/0212053 Experiment +hep-ex/0301016 Experiment +hep-ex/0302026 Experiment +hep-ex/0305016 Experiment +hep-ex/0305020 Experiment +hep-ex/0305089 Experiment +hep-ex/0305093 Experiment +hep-ex/0305100 Experiment +hep-ex/0305106 Experiment +hep-ex/0306009 Experiment +hep-ex/0306011 Experiment +hep-ex/0306059 Experiment +hep-ex/0306061 Experiment +hep-ex/0307007 Experiment +hep-ex/0307070 Experiment +hep-ex/0307071 Experiment +hep-ex/0307072 Experiment +hep-ex/0307078 Experiment +hep-ex/0307088 Experiment +hep-ex/0308004 Experiment +hep-ex/0308041 Experiment +hep-ex/0308047 Experiment +hep-ex/0308049 Experiment +hep-ex/0309004 Experiment +hep-ex/0309015 Experiment +hep-ex/0309021 Experiment +hep-ex/0309040 Experiment +hep-ex/0309047 Experiment +hep-ex/0309055 Experiment +hep-ex/0309067 Experiment +hep-ex/0310008 Experiment +hep-ex/0310010 Experiment +hep-ex/0310020 Experiment +hep-ex/0310057 Experiment +hep-ex/0311018 Experiment +hep-ex/0311036 Experiment +hep-ex/0311055 Experiment +hep-ex/0311059 Experiment +hep-ex/0312013 Experiment +hep-ex/0312018 Experiment +hep-ex/0312064 Experiment +hep-ex/0401018 Experiment +hep-ex/0403021 Experiment +hep-ex/0403022 Experiment +hep-ex/0406011 Experiment +hep-ex/0407024 Experiment +hep-ex/0408111 Experiment +hep-ex/0409006 Experiment +hep-ex/0409023 Experiment +hep-ex/0409025 Experiment +hep-ex/0409057 Experiment +hep-ex/0410020 Experiment +hep-ex/0410023 Experiment +hep-ex/0410031 Experiment +hep-ex/0410076 Experiment +hep-ex/0411045 Experiment +hep-ex/0411078 Experiment +hep-ex/0412005 Experiment +hep-ex/0412014 Experiment +hep-ex/0412020 Experiment +hep-ex/0501041 Experiment +hep-ex/0502008 Experiment +hep-ex/0502018 Experiment +hep-ex/0503014 Experiment +hep-ex/0503052 Experiment +hep-ex/0504017 Experiment +hep-ex/0504028 Experiment +hep-ex/0505100 Experiment +hep-ex/0506011 Experiment +hep-ex/0507004 Experiment +hep-ex/0507007 Experiment +hep-ex/0507099 Experiment +hep-ex/0508008 Experiment +hep-ex/0508061 Experiment +hep-ex/0510038 Experiment +hep-ex/0510057 Experiment +hep-ex/0510071 Experiment +hep-ex/0511004 Experiment +hep-ex/0511020 Experiment +hep-ex/0511030 Experiment +hep-ex/0511055 Experiment +hep-ex/0512042 Experiment +hep-ex/0602041 Experiment +hep-ex/0603005 Experiment +hep-ex/0603011 Experiment +hep-ex/0603025 Experiment +hep-ex/0603026 Experiment +hep-ex/0603034 Experiment +hep-ex/0603044 Experiment +hep-ex/0604036 Experiment +hep-ex/0605100 Experiment +hep-ex/0605111 Experiment +hep-ex/0606048 Experiment +hep-ex/0607016 Experiment +hep-ex/0608001 Experiment +hep-ex/0608011 Experiment +hep-ex/0609008 Experiment +hep-ex/0609029 Experiment +hep-ex/0610004 Experiment +hep-ex/0610032 Experiment +hep-ex/0610082 Experiment +hep-ex/0611053 Experiment +hep-ex/0701051 Experiment +hep-ex/9507012 Experiment +hep-ex/9612006 Experiment +hep-ex/9703007 Experiment +hep-ex/9706004 Experiment +hep-ex/9707042 Experiment +hep-ex/9708034 Experiment +hep-ex/9711021 Experiment +hep-ex/9712030 Experiment +hep-ex/9803021 Experiment +hep-ex/9803027 Experiment +hep-ex/9804015 Experiment +hep-ex/9805028 Experiment +hep-ex/9805031 Experiment +hep-ex/9808021 Experiment +hep-ex/9811043 Experiment +hep-ex/9811047 Experiment +hep-ex/9903037 Experiment +hep-ex/9904018 Experiment +hep-ex/9905062 Experiment +hep-ex/9906044 Experiment +hep-ex/9907011 Experiment +hep-ex/9910032 Experiment +hep-ex/9911047 Experiment +hep-ex/9911049 Experiment +hep-ex/9912030 Experiment +hep-ex/9912049 Experiment +hep-lat/0001011 Lattice +hep-lat/0003006 Lattice +hep-lat/0003026 Lattice +hep-lat/0005002 Lattice +hep-lat/0005005 Lattice +hep-lat/0005006 Lattice +hep-lat/0007020 Lattice +hep-lat/0007044 Lattice +hep-lat/0008010 Lattice +hep-lat/0009027 Lattice +hep-lat/0010028 Lattice +hep-lat/0010035 Lattice +hep-lat/0011060 Lattice +hep-lat/0011072 Lattice +hep-lat/0101010 Lattice +hep-lat/0102003 Lattice +hep-lat/0103018 Lattice +hep-lat/0103026 Lattice +hep-lat/0103034 Lattice +hep-lat/0104007 Lattice +hep-lat/0104010 Lattice +hep-lat/0105004 Lattice +hep-lat/0105013 Lattice +hep-lat/0105019 Lattice +hep-lat/0105026 Lattice +hep-lat/0106005 Lattice +hep-lat/0107009 Lattice +hep-lat/0108007 Lattice +hep-lat/0108008 Lattice +hep-lat/0110164 Lattice +hep-lat/0110187 Lattice +hep-lat/0111007 Lattice +hep-lat/0111009 Lattice +hep-lat/0111014 Lattice +hep-lat/0111023 Lattice +hep-lat/0111055 Lattice +hep-lat/0112011 Lattice +hep-lat/0112044 Lattice +hep-lat/0201018 Lattice +hep-lat/0204007 Lattice +hep-lat/0204019 Lattice +hep-lat/0205008 Lattice +hep-lat/0206008 Lattice +hep-lat/0206030 Lattice +hep-lat/0208005 Lattice +hep-lat/0209011 Lattice +hep-lat/0209043 Lattice +hep-lat/0209054 Lattice +hep-lat/0209086 Lattice +hep-lat/0209088 Lattice +hep-lat/0209128 Lattice +hep-lat/0209165 Lattice +hep-lat/0210017 Lattice +hep-lat/0210049 Lattice +hep-lat/0210050 Lattice +hep-lat/0211012 Lattice +hep-lat/0211032 Lattice +hep-lat/0212002 Lattice +hep-lat/0303004 Lattice +hep-lat/0304007 Lattice +hep-lat/0305001 Lattice +hep-lat/0306020 Lattice +hep-lat/0307004 Lattice +hep-lat/0307010 Lattice +hep-lat/0307011 Lattice +hep-lat/0308001 Lattice +hep-lat/0309042 Lattice +hep-lat/0309079 Lattice +hep-lat/0309105 Lattice +hep-lat/0310053 Lattice +hep-lat/0312001 Lattice +hep-lat/0312003 Lattice +hep-lat/0312008 Lattice +hep-lat/0403015 Lattice +hep-lat/0403030 Lattice +hep-lat/0404006 Lattice +hep-lat/0406029 Lattice +hep-lat/0406036 Lattice +hep-lat/0407041 Lattice +hep-lat/0408006 Lattice +hep-lat/0408029 Lattice +hep-lat/0409047 Lattice +hep-lat/0409080 Lattice +hep-lat/0409081 Lattice +hep-lat/0409082 Lattice +hep-lat/0409093 Lattice +hep-lat/0409119 Lattice +hep-lat/0409165 Lattice +hep-lat/0410012 Lattice +hep-lat/0411028 Lattice +hep-lat/0412006 Lattice +hep-lat/0501010 Lattice +hep-lat/0503032 Lattice +hep-lat/0505014 Lattice +hep-lat/0506020 Lattice +hep-lat/0506023 Lattice +hep-lat/0506029 Lattice +hep-lat/0507018 Lattice +hep-lat/0508009 Lattice +hep-lat/0508018 Lattice +hep-lat/0508019 Lattice +hep-lat/0509029 Lattice +hep-lat/0509101 Lattice +hep-lat/0509140 Lattice +hep-lat/0509179 Lattice +hep-lat/0509185 Lattice +hep-lat/0510003 Lattice +hep-lat/0510036 Lattice +hep-lat/0510075 Lattice +hep-lat/0510086 Lattice +hep-lat/0512004 Lattice +hep-lat/0512042 Lattice +hep-lat/0512044 Lattice +hep-lat/0601021 Lattice +hep-lat/0601022 Lattice +hep-lat/0601033 Lattice +hep-lat/0602010 Lattice +hep-lat/0604008 Lattice +hep-lat/0606010 Lattice +hep-lat/0607001 Lattice +hep-lat/0607023 Lattice +hep-lat/0607034 Lattice +hep-lat/0608019 Lattice +hep-lat/0609009 Lattice +hep-lat/0609010 Lattice +hep-lat/0609041 Lattice +hep-lat/0610007 Lattice +hep-lat/0610028 Lattice +hep-lat/0610125 Lattice +hep-lat/0611006 Lattice +hep-lat/9204011 Lattice +hep-lat/9210039 Lattice +hep-lat/9211021 Lattice +hep-lat/9211030 Lattice +hep-lat/9301008 Lattice +hep-lat/9305007 Lattice +hep-lat/9307011 Lattice +hep-lat/9309003 Lattice +hep-lat/9312052 Lattice +hep-lat/9401033 Lattice +hep-lat/9406013 Lattice +hep-lat/9409020 Lattice +hep-lat/9411005 Lattice +hep-lat/9503027 Lattice +hep-lat/9506015 Lattice +hep-lat/9508033 Lattice +hep-lat/9510016 Lattice +hep-lat/9510036 Lattice +hep-lat/9510051 Lattice +hep-lat/9511005 Lattice +hep-lat/9601013 Lattice +hep-lat/9601014 Lattice +hep-lat/9605018 Lattice +hep-lat/9607006 Lattice +hep-lat/9607083 Lattice +hep-lat/9608011 Lattice +hep-lat/9608128 Lattice +hep-lat/9608145 Lattice +hep-lat/9610021 Lattice +hep-lat/9612020 Lattice +hep-lat/9703019 Lattice +hep-lat/9704013 Lattice +hep-lat/9704014 Lattice +hep-lat/9704017 Lattice +hep-lat/9705027 Lattice +hep-lat/9707018 Lattice +hep-lat/9709035 Lattice +hep-lat/9709067 Lattice +hep-lat/9709079 Lattice +hep-lat/9712023 Lattice +hep-lat/9801019 Lattice +hep-lat/9801020 Lattice +hep-lat/9803004 Lattice +hep-lat/9809027 Lattice +hep-lat/9809045 Lattice +hep-lat/9809052 Lattice +hep-lat/9809134 Lattice +hep-lat/9811027 Lattice +hep-lat/9904011 Lattice +hep-lat/9908009 Lattice +hep-lat/9910016 Lattice +hep-lat/9910041 Lattice +hep-lat/9911011 Lattice +hep-lat/9911020 Lattice +hep-lat/9911022 Lattice +hep-lat/9912035 Lattice +hep-ph/0001010 Phenomenology +hep-ph/0001028 Phenomenology +hep-ph/0001030 Phenomenology +hep-ph/0001046 Phenomenology +hep-ph/0001062 Phenomenology +hep-ph/0001105 Phenomenology +hep-ph/0001106 Phenomenology +hep-ph/0001130 Phenomenology +hep-ph/0001163 Phenomenology +hep-ph/0001167 Phenomenology +hep-ph/0001190 Phenomenology +hep-ph/0001204 Phenomenology +hep-ph/0001219 Phenomenology +hep-ph/0001227 Phenomenology +hep-ph/0001231 Phenomenology +hep-ph/0001258 Phenomenology +hep-ph/0001298 Phenomenology +hep-ph/0001319 Phenomenology +hep-ph/0001322 Phenomenology +hep-ph/0001323 Phenomenology +hep-ph/0002003 Phenomenology +hep-ph/0002008 Phenomenology +hep-ph/0002033 Phenomenology +hep-ph/0002063 Phenomenology +hep-ph/0002089 Phenomenology +hep-ph/0002150 Phenomenology +hep-ph/0002154 Phenomenology +hep-ph/0002157 Phenomenology +hep-ph/0002158 Phenomenology +hep-ph/0002168 Phenomenology +hep-ph/0002178 Phenomenology +hep-ph/0002180 Phenomenology +hep-ph/0002201 Phenomenology +hep-ph/0002209 Phenomenology +hep-ph/0002217 Phenomenology +hep-ph/0002227 Phenomenology +hep-ph/0002234 Phenomenology +hep-ph/0002255 Phenomenology +hep-ph/0002260 Phenomenology +hep-ph/0003032 Phenomenology +hep-ph/0003055 Phenomenology +hep-ph/0003058 Phenomenology +hep-ph/0003070 Phenomenology +hep-ph/0003084 Phenomenology +hep-ph/0003119 Phenomenology +hep-ph/0003141 Phenomenology +hep-ph/0003188 Phenomenology +hep-ph/0003267 Phenomenology +hep-ph/0003298 Phenomenology +hep-ph/0003299 Phenomenology +hep-ph/0004037 Phenomenology +hep-ph/0004041 Phenomenology +hep-ph/0004045 Phenomenology +hep-ph/0004094 Phenomenology +hep-ph/0004107 Phenomenology +hep-ph/0004115 Phenomenology +hep-ph/0004119 Phenomenology +hep-ph/0004137 Phenomenology +hep-ph/0004160 Phenomenology +hep-ph/0004179 Phenomenology +hep-ph/0004183 Phenomenology +hep-ph/0004200 Phenomenology +hep-ph/0004206 Phenomenology +hep-ph/0004251 Phenomenology +hep-ph/0005009 Phenomenology +hep-ph/0005027 Phenomenology +hep-ph/0005037 Phenomenology +hep-ph/0005085 Phenomenology +hep-ph/0005095 Phenomenology +hep-ph/0005108 Phenomenology +hep-ph/0005119 Phenomenology +hep-ph/0005124 Phenomenology +hep-ph/0005159 Phenomenology +hep-ph/0005167 Phenomenology +hep-ph/0005193 Phenomenology +hep-ph/0005205 Phenomenology +hep-ph/0005227 Phenomenology +hep-ph/0005243 Phenomenology +hep-ph/0006028 Phenomenology +hep-ph/0006034 Phenomenology +hep-ph/0006038 Phenomenology +hep-ph/0006044 Phenomenology +hep-ph/0006056 Phenomenology +hep-ph/0006068 Phenomenology +hep-ph/0006137 Phenomenology +hep-ph/0006147 Phenomenology +hep-ph/0006163 Phenomenology +hep-ph/0006178 Phenomenology +hep-ph/0006184 Phenomenology +hep-ph/0006201 Phenomenology +hep-ph/0006204 Phenomenology +hep-ph/0006225 Phenomenology +hep-ph/0006238 Phenomenology +hep-ph/0006250 Phenomenology +hep-ph/0006273 Phenomenology +hep-ph/0006280 Phenomenology +hep-ph/0006282 Phenomenology +hep-ph/0006283 Phenomenology +hep-ph/0006290 Phenomenology +hep-ph/0006292 Phenomenology +hep-ph/0006318 Phenomenology +hep-ph/0006346 Phenomenology +hep-ph/0007039 Phenomenology +hep-ph/0007050 Phenomenology +hep-ph/0007080 Phenomenology +hep-ph/0007117 Phenomenology +hep-ph/0007128 Phenomenology +hep-ph/0007132 Phenomenology +hep-ph/0007150 Phenomenology +hep-ph/0007193 Phenomenology +hep-ph/0007194 Phenomenology +hep-ph/0007196 Phenomenology +hep-ph/0007206 Phenomenology +hep-ph/0007208 Phenomenology +hep-ph/0007237 Phenomenology +hep-ph/0007263 Phenomenology +hep-ph/0007270 Phenomenology +hep-ph/0007277 Phenomenology +hep-ph/0007290 Phenomenology +hep-ph/0007314 Phenomenology +hep-ph/0007319 Phenomenology +hep-ph/0007325 Phenomenology +hep-ph/0008004 Phenomenology +hep-ph/0008046 Phenomenology +hep-ph/0008052 Phenomenology +hep-ph/0008059 Phenomenology +hep-ph/0008063 Phenomenology +hep-ph/0008149 Phenomenology +hep-ph/0008161 Phenomenology +hep-ph/0008165 Phenomenology +hep-ph/0008214 Phenomenology +hep-ph/0008273 Phenomenology +hep-ph/0008290 Phenomenology +hep-ph/0008292 Phenomenology +hep-ph/0008301 Phenomenology +hep-ph/0009058 Phenomenology +hep-ph/0009078 Phenomenology +hep-ph/0009100 Phenomenology +hep-ph/0009102 Phenomenology +hep-ph/0009145 Phenomenology +hep-ph/0009150 Phenomenology +hep-ph/0009227 Phenomenology +hep-ph/0009241 Phenomenology +hep-ph/0009246 Phenomenology +hep-ph/0009313 Phenomenology +hep-ph/0009321 Phenomenology +hep-ph/0009346 Phenomenology +hep-ph/0010011 Phenomenology +hep-ph/0010030 Phenomenology +hep-ph/0010112 Phenomenology +hep-ph/0010149 Phenomenology +hep-ph/0010151 Phenomenology +hep-ph/0010181 Phenomenology +hep-ph/0010226 Phenomenology +hep-ph/0010231 Phenomenology +hep-ph/0010237 Phenomenology +hep-ph/0010238 Phenomenology +hep-ph/0010248 Phenomenology +hep-ph/0010296 Phenomenology +hep-ph/0010310 Phenomenology +hep-ph/0010311 Phenomenology +hep-ph/0010319 Phenomenology +hep-ph/0010322 Phenomenology +hep-ph/0011004 Phenomenology +hep-ph/0011016 Phenomenology +hep-ph/0011050 Phenomenology +hep-ph/0011062 Phenomenology +hep-ph/0011070 Phenomenology +hep-ph/0011071 Phenomenology +hep-ph/0011081 Phenomenology +hep-ph/0011082 Phenomenology +hep-ph/0011083 Phenomenology +hep-ph/0011126 Phenomenology +hep-ph/0011133 Phenomenology +hep-ph/0011146 Phenomenology +hep-ph/0011155 Phenomenology +hep-ph/0011170 Phenomenology +hep-ph/0011177 Phenomenology +hep-ph/0011185 Phenomenology +hep-ph/0011195 Phenomenology +hep-ph/0011222 Phenomenology +hep-ph/0011228 Phenomenology +hep-ph/0011229 Phenomenology +hep-ph/0011233 Phenomenology +hep-ph/0011246 Phenomenology +hep-ph/0011257 Phenomenology +hep-ph/0011271 Phenomenology +hep-ph/0011274 Phenomenology +hep-ph/0011283 Phenomenology +hep-ph/0011296 Phenomenology +hep-ph/0011317 Phenomenology +hep-ph/0011337 Phenomenology +hep-ph/0011344 Phenomenology +hep-ph/0011345 Phenomenology +hep-ph/0011377 Phenomenology +hep-ph/0011382 Phenomenology +hep-ph/0011397 Phenomenology +hep-ph/0012009 Phenomenology +hep-ph/0012029 Phenomenology +hep-ph/0012032 Phenomenology +hep-ph/0012045 Phenomenology +hep-ph/0012100 Phenomenology +hep-ph/0012111 Phenomenology +hep-ph/0012157 Phenomenology +hep-ph/0012159 Phenomenology +hep-ph/0012162 Phenomenology +hep-ph/0012203 Phenomenology +hep-ph/0012216 Phenomenology +hep-ph/0012219 Phenomenology +hep-ph/0012237 Phenomenology +hep-ph/0012253 Phenomenology +hep-ph/0012255 Phenomenology +hep-ph/0012259 Phenomenology +hep-ph/0012289 Phenomenology +hep-ph/0012296 Phenomenology +hep-ph/0012303 Phenomenology +hep-ph/0012309 Phenomenology +hep-ph/0012314 Phenomenology +hep-ph/0012321 Phenomenology +hep-ph/0012322 Phenomenology +hep-ph/0012345 Phenomenology +hep-ph/0012351 Phenomenology +hep-ph/0012352 Phenomenology +hep-ph/0012354 Phenomenology +hep-ph/0012357 Phenomenology +hep-ph/0012370 Phenomenology +hep-ph/0012371 Phenomenology +hep-ph/0012376 Phenomenology +hep-ph/0012383 Phenomenology +hep-ph/0101011 Phenomenology +hep-ph/0101019 Phenomenology +hep-ph/0101059 Phenomenology +hep-ph/0101066 Phenomenology +hep-ph/0101092 Phenomenology +hep-ph/0101097 Phenomenology +hep-ph/0101099 Phenomenology +hep-ph/0101115 Phenomenology +hep-ph/0101126 Phenomenology +hep-ph/0101162 Phenomenology +hep-ph/0101230 Phenomenology +hep-ph/0101249 Phenomenology +hep-ph/0101300 Phenomenology +hep-ph/0101309 Phenomenology +hep-ph/0101348 Phenomenology +hep-ph/0102043 Phenomenology +hep-ph/0102046 Phenomenology +hep-ph/0102047 Phenomenology +hep-ph/0102074 Phenomenology +hep-ph/0102075 Phenomenology +hep-ph/0102086 Phenomenology +hep-ph/0102183 Phenomenology +hep-ph/0102184 Phenomenology +hep-ph/0102230 Phenomenology +hep-ph/0102265 Phenomenology +hep-ph/0102306 Phenomenology +hep-ph/0102310 Phenomenology +hep-ph/0102313 Phenomenology +hep-ph/0102321 Phenomenology +hep-ph/0102324 Phenomenology +hep-ph/0103020 Phenomenology +hep-ph/0103058 Phenomenology +hep-ph/0103108 Phenomenology +hep-ph/0103110 Phenomenology +hep-ph/0103136 Phenomenology +hep-ph/0103168 Phenomenology +hep-ph/0103197 Phenomenology +hep-ph/0103200 Phenomenology +hep-ph/0103239 Phenomenology +hep-ph/0103242 Phenomenology +hep-ph/0103284 Phenomenology +hep-ph/0103299 Phenomenology +hep-ph/0103300 Phenomenology +hep-ph/0103321 Phenomenology +hep-ph/0103324 Phenomenology +hep-ph/0103331 Phenomenology +hep-ph/0103334 Phenomenology +hep-ph/0103342 Phenomenology +hep-ph/0103348 Phenomenology +hep-ph/0104009 Phenomenology +hep-ph/0104010 Phenomenology +hep-ph/0104011 Phenomenology +hep-ph/0104014 Phenomenology +hep-ph/0104022 Phenomenology +hep-ph/0104024 Phenomenology +hep-ph/0104026 Phenomenology +hep-ph/0104027 Phenomenology +hep-ph/0104055 Phenomenology +hep-ph/0104056 Phenomenology +hep-ph/0104068 Phenomenology +hep-ph/0104091 Phenomenology +hep-ph/0104101 Phenomenology +hep-ph/0104108 Phenomenology +hep-ph/0104125 Phenomenology +hep-ph/0104137 Phenomenology +hep-ph/0104144 Phenomenology +hep-ph/0104146 Phenomenology +hep-ph/0104148 Phenomenology +hep-ph/0104158 Phenomenology +hep-ph/0104181 Phenomenology +hep-ph/0104187 Phenomenology +hep-ph/0104197 Phenomenology +hep-ph/0104213 Phenomenology +hep-ph/0104228 Phenomenology +hep-ph/0104238 Phenomenology +hep-ph/0104243 Phenomenology +hep-ph/0104253 Phenomenology +hep-ph/0104263 Phenomenology +hep-ph/0104273 Phenomenology +hep-ph/0104280 Phenomenology +hep-ph/0104301 Phenomenology +hep-ph/0105011 Phenomenology +hep-ph/0105017 Phenomenology +hep-ph/0105023 Phenomenology +hep-ph/0105025 Phenomenology +hep-ph/0105028 Phenomenology +hep-ph/0105032 Phenomenology +hep-ph/0105049 Phenomenology +hep-ph/0105054 Phenomenology +hep-ph/0105057 Phenomenology +hep-ph/0105066 Phenomenology +hep-ph/0105071 Phenomenology +hep-ph/0105073 Phenomenology +hep-ph/0105078 Phenomenology +hep-ph/0105087 Phenomenology +hep-ph/0105090 Phenomenology +hep-ph/0105103 Phenomenology +hep-ph/0105105 Phenomenology +hep-ph/0105116 Phenomenology +hep-ph/0105134 Phenomenology +hep-ph/0105148 Phenomenology +hep-ph/0105154 Phenomenology +hep-ph/0105157 Phenomenology +hep-ph/0105173 Phenomenology +hep-ph/0105178 Phenomenology +hep-ph/0105184 Phenomenology +hep-ph/0105187 Phenomenology +hep-ph/0105196 Phenomenology +hep-ph/0105208 Phenomenology +hep-ph/0105213 Phenomenology +hep-ph/0105217 Phenomenology +hep-ph/0105246 Phenomenology +hep-ph/0105247 Phenomenology +hep-ph/0105251 Phenomenology +hep-ph/0105252 Phenomenology +hep-ph/0105254 Phenomenology +hep-ph/0105262 Phenomenology +hep-ph/0105266 Phenomenology +hep-ph/0105270 Phenomenology +hep-ph/0105273 Phenomenology +hep-ph/0105278 Phenomenology +hep-ph/0105285 Phenomenology +hep-ph/0105295 Phenomenology +hep-ph/0105298 Phenomenology +hep-ph/0105305 Phenomenology +hep-ph/0105306 Phenomenology +hep-ph/0105308 Phenomenology +hep-ph/0105323 Phenomenology +hep-ph/0105327 Phenomenology +hep-ph/0105328 Phenomenology +hep-ph/0105337 Phenomenology +hep-ph/0105340 Phenomenology +hep-ph/0106006 Phenomenology +hep-ph/0106026 Phenomenology +hep-ph/0106040 Phenomenology +hep-ph/0106064 Phenomenology +hep-ph/0106073 Phenomenology +hep-ph/0106083 Phenomenology +hep-ph/0106093 Phenomenology +hep-ph/0106095 Phenomenology +hep-ph/0106098 Phenomenology +hep-ph/0106104 Phenomenology +hep-ph/0106115 Phenomenology +hep-ph/0106116 Phenomenology +hep-ph/0106127 Phenomenology +hep-ph/0106145 Phenomenology +hep-ph/0106148 Phenomenology +hep-ph/0106161 Phenomenology +hep-ph/0106166 Phenomenology +hep-ph/0106193 Phenomenology +hep-ph/0106194 Phenomenology +hep-ph/0106199 Phenomenology +hep-ph/0106208 Phenomenology +hep-ph/0106210 Phenomenology +hep-ph/0106213 Phenomenology +hep-ph/0106216 Phenomenology +hep-ph/0106250 Phenomenology +hep-ph/0106262 Phenomenology +hep-ph/0106266 Phenomenology +hep-ph/0106282 Phenomenology +hep-ph/0106283 Phenomenology +hep-ph/0106299 Phenomenology +hep-ph/0106302 Phenomenology +hep-ph/0106308 Phenomenology +hep-ph/0106318 Phenomenology +hep-ph/0106321 Phenomenology +hep-ph/0106326 Phenomenology +hep-ph/0106330 Phenomenology +hep-ph/0106335 Phenomenology +hep-ph/0106339 Phenomenology +hep-ph/0106343 Phenomenology +hep-ph/0106346 Phenomenology +hep-ph/0107005 Phenomenology +hep-ph/0107015 Phenomenology +hep-ph/0107037 Phenomenology +hep-ph/0107039 Phenomenology +hep-ph/0107040 Phenomenology +hep-ph/0107043 Phenomenology +hep-ph/0107044 Phenomenology +hep-ph/0107045 Phenomenology +hep-ph/0107056 Phenomenology +hep-ph/0107065 Phenomenology +hep-ph/0107066 Phenomenology +hep-ph/0107076 Phenomenology +hep-ph/0107078 Phenomenology +hep-ph/0107082 Phenomenology +hep-ph/0107085 Phenomenology +hep-ph/0107094 Phenomenology +hep-ph/0107100 Phenomenology +hep-ph/0107105 Phenomenology +hep-ph/0107107 Phenomenology +hep-ph/0107108 Phenomenology +hep-ph/0107116 Phenomenology +hep-ph/0107121 Phenomenology +hep-ph/0107123 Phenomenology +hep-ph/0107126 Phenomenology +hep-ph/0107149 Phenomenology +hep-ph/0107152 Phenomenology +hep-ph/0107164 Phenomenology +hep-ph/0107165 Phenomenology +hep-ph/0107172 Phenomenology +hep-ph/0107180 Phenomenology +hep-ph/0107185 Phenomenology +hep-ph/0107189 Phenomenology +hep-ph/0107190 Phenomenology +hep-ph/0107240 Phenomenology +hep-ph/0107243 Phenomenology +hep-ph/0107256 Phenomenology +hep-ph/0107259 Phenomenology +hep-ph/0107274 Phenomenology +hep-ph/0107276 Phenomenology +hep-ph/0107281 Phenomenology +hep-ph/0107285 Phenomenology +hep-ph/0107286 Phenomenology +hep-ph/0107291 Phenomenology +hep-ph/0107314 Phenomenology +hep-ph/0108003 Phenomenology +hep-ph/0108005 Phenomenology +hep-ph/0108006 Phenomenology +hep-ph/0108017 Phenomenology +hep-ph/0108021 Phenomenology +hep-ph/0108023 Phenomenology +hep-ph/0108024 Phenomenology +hep-ph/0108054 Phenomenology +hep-ph/0108098 Phenomenology +hep-ph/0108113 Phenomenology +hep-ph/0108127 Phenomenology +hep-ph/0108151 Phenomenology +hep-ph/0108161 Phenomenology +hep-ph/0108180 Phenomenology +hep-ph/0108202 Phenomenology +hep-ph/0108228 Phenomenology +hep-ph/0108233 Phenomenology +hep-ph/0108272 Phenomenology +hep-ph/0109041 Phenomenology +hep-ph/0109091 Phenomenology +hep-ph/0109109 Phenomenology +hep-ph/0109124 Phenomenology +hep-ph/0109137 Phenomenology +hep-ph/0109140 Phenomenology +hep-ph/0109164 Phenomenology +hep-ph/0109169 Phenomenology +hep-ph/0109235 Phenomenology +hep-ph/0109238 Phenomenology +hep-ph/0109245 Phenomenology +hep-ph/0109263 Phenomenology +hep-ph/0109272 Phenomenology +hep-ph/0109273 Phenomenology +hep-ph/0110004 Phenomenology +hep-ph/0110033 Phenomenology +hep-ph/0110059 Phenomenology +hep-ph/0110075 Phenomenology +hep-ph/0110078 Phenomenology +hep-ph/0110088 Phenomenology +hep-ph/0110103 Phenomenology +hep-ph/0110119 Phenomenology +hep-ph/0110132 Phenomenology +hep-ph/0110143 Phenomenology +hep-ph/0110151 Phenomenology +hep-ph/0110152 Phenomenology +hep-ph/0110158 Phenomenology +hep-ph/0110159 Phenomenology +hep-ph/0110218 Phenomenology +hep-ph/0110235 Phenomenology +hep-ph/0110240 Phenomenology +hep-ph/0110253 Phenomenology +hep-ph/0110256 Phenomenology +hep-ph/0110257 Phenomenology +hep-ph/0110263 Phenomenology +hep-ph/0110291 Phenomenology +hep-ph/0110302 Phenomenology +hep-ph/0110317 Phenomenology +hep-ph/0110339 Phenomenology +hep-ph/0110397 Phenomenology +hep-ph/0110414 Phenomenology +hep-ph/0110418 Phenomenology +hep-ph/0111002 Phenomenology +hep-ph/0111038 Phenomenology +hep-ph/0111053 Phenomenology +hep-ph/0111063 Phenomenology +hep-ph/0111070 Phenomenology +hep-ph/0111082 Phenomenology +hep-ph/0111098 Phenomenology +hep-ph/0111117 Phenomenology +hep-ph/0111118 Phenomenology +hep-ph/0111123 Phenomenology +hep-ph/0111172 Phenomenology +hep-ph/0111199 Phenomenology +hep-ph/0111239 Phenomenology +hep-ph/0111281 Phenomenology +hep-ph/0111292 Phenomenology +hep-ph/0111307 Phenomenology +hep-ph/0111313 Phenomenology +hep-ph/0111318 Phenomenology +hep-ph/0111319 Phenomenology +hep-ph/0111321 Phenomenology +hep-ph/0111331 Phenomenology +hep-ph/0111336 Phenomenology +hep-ph/0111339 Phenomenology +hep-ph/0111418 Phenomenology +hep-ph/0111427 Phenomenology +hep-ph/0112062 Phenomenology +hep-ph/0112084 Phenomenology +hep-ph/0112094 Phenomenology +hep-ph/0112115 Phenomenology +hep-ph/0112172 Phenomenology +hep-ph/0112201 Phenomenology +hep-ph/0112209 Phenomenology +hep-ph/0112265 Phenomenology +hep-ph/0112285 Phenomenology +hep-ph/0112287 Phenomenology +hep-ph/0112301 Phenomenology +hep-ph/0112326 Phenomenology +hep-ph/0112353 Phenomenology +hep-ph/0201014 Phenomenology +hep-ph/0201041 Phenomenology +hep-ph/0201042 Phenomenology +hep-ph/0201078 Phenomenology +hep-ph/0201087 Phenomenology +hep-ph/0201094 Phenomenology +hep-ph/0201113 Phenomenology +hep-ph/0201128 Phenomenology +hep-ph/0201146 Phenomenology +hep-ph/0201170 Phenomenology +hep-ph/0201176 Phenomenology +hep-ph/0201197 Phenomenology +hep-ph/0201205 Phenomenology +hep-ph/0201227 Phenomenology +hep-ph/0201228 Phenomenology +hep-ph/0201229 Phenomenology +hep-ph/0201230 Phenomenology +hep-ph/0201251 Phenomenology +hep-ph/0201252 Phenomenology +hep-ph/0201253 Phenomenology +hep-ph/0201255 Phenomenology +hep-ph/0201256 Phenomenology +hep-ph/0201272 Phenomenology +hep-ph/0202002 Phenomenology +hep-ph/0202009 Phenomenology +hep-ph/0202010 Phenomenology +hep-ph/0202072 Phenomenology +hep-ph/0202075 Phenomenology +hep-ph/0202105 Phenomenology +hep-ph/0202111 Phenomenology +hep-ph/0202137 Phenomenology +hep-ph/0202174 Phenomenology +hep-ph/0202177 Phenomenology +hep-ph/0202179 Phenomenology +hep-ph/0202205 Phenomenology +hep-ph/0202212 Phenomenology +hep-ph/0202222 Phenomenology +hep-ph/0202277 Phenomenology +hep-ph/0203003 Phenomenology +hep-ph/0203010 Phenomenology +hep-ph/0203012 Phenomenology +hep-ph/0203024 Phenomenology +hep-ph/0203030 Phenomenology +hep-ph/0203036 Phenomenology +hep-ph/0203039 Phenomenology +hep-ph/0203044 Phenomenology +hep-ph/0203059 Phenomenology +hep-ph/0203061 Phenomenology +hep-ph/0203079 Phenomenology +hep-ph/0203098 Phenomenology +hep-ph/0203108 Phenomenology +hep-ph/0203109 Phenomenology +hep-ph/0203110 Phenomenology +hep-ph/0203136 Phenomenology +hep-ph/0203137 Phenomenology +hep-ph/0203150 Phenomenology +hep-ph/0203168 Phenomenology +hep-ph/0203170 Phenomenology +hep-ph/0203244 Phenomenology +hep-ph/0204017 Phenomenology +hep-ph/0204022 Phenomenology +hep-ph/0204034 Phenomenology +hep-ph/0204035 Phenomenology +hep-ph/0204051 Phenomenology +hep-ph/0204052 Phenomenology +hep-ph/0204073 Phenomenology +hep-ph/0204081 Phenomenology +hep-ph/0204087 Phenomenology +hep-ph/0204088 Phenomenology +hep-ph/0204094 Phenomenology +hep-ph/0204158 Phenomenology +hep-ph/0204164 Phenomenology +hep-ph/0204165 Phenomenology +hep-ph/0204175 Phenomenology +hep-ph/0204176 Phenomenology +hep-ph/0204212 Phenomenology +hep-ph/0204216 Phenomenology +hep-ph/0204219 Phenomenology +hep-ph/0204229 Phenomenology +hep-ph/0204233 Phenomenology +hep-ph/0204246 Phenomenology +hep-ph/0204254 Phenomenology +hep-ph/0204259 Phenomenology +hep-ph/0204274 Phenomenology +hep-ph/0204285 Phenomenology +hep-ph/0204286 Phenomenology +hep-ph/0204330 Phenomenology +hep-ph/0204338 Phenomenology +hep-ph/0204349 Phenomenology +hep-ph/0204352 Phenomenology +hep-ph/0204356 Phenomenology +hep-ph/0204357 Phenomenology +hep-ph/0205029 Phenomenology +hep-ph/0205038 Phenomenology +hep-ph/0205039 Phenomenology +hep-ph/0205040 Phenomenology +hep-ph/0205051 Phenomenology +hep-ph/0205072 Phenomenology +hep-ph/0205087 Phenomenology +hep-ph/0205092 Phenomenology +hep-ph/0205107 Phenomenology +hep-ph/0205134 Phenomenology +hep-ph/0205148 Phenomenology +hep-ph/0205149 Phenomenology +hep-ph/0205157 Phenomenology +hep-ph/0205165 Phenomenology +hep-ph/0205172 Phenomenology +hep-ph/0205192 Phenomenology +hep-ph/0205205 Phenomenology +hep-ph/0205224 Phenomenology +hep-ph/0205230 Phenomenology +hep-ph/0205232 Phenomenology +hep-ph/0205267 Phenomenology +hep-ph/0205272 Phenomenology +hep-ph/0205315 Phenomenology +hep-ph/0205323 Phenomenology +hep-ph/0205334 Phenomenology +hep-ph/0205344 Phenomenology +hep-ph/0206007 Phenomenology +hep-ph/0206013 Phenomenology +hep-ph/0206024 Phenomenology +hep-ph/0206037 Phenomenology +hep-ph/0206045 Phenomenology +hep-ph/0206053 Phenomenology +hep-ph/0206096 Phenomenology +hep-ph/0206113 Phenomenology +hep-ph/0206137 Phenomenology +hep-ph/0206195 Phenomenology +hep-ph/0206199 Phenomenology +hep-ph/0206291 Phenomenology +hep-ph/0206303 Phenomenology +hep-ph/0207010 Phenomenology +hep-ph/0207023 Phenomenology +hep-ph/0207031 Phenomenology +hep-ph/0207041 Phenomenology +hep-ph/0207054 Phenomenology +hep-ph/0207098 Phenomenology +hep-ph/0207100 Phenomenology +hep-ph/0207108 Phenomenology +hep-ph/0207110 Phenomenology +hep-ph/0207141 Phenomenology +hep-ph/0207185 Phenomenology +hep-ph/0207188 Phenomenology +hep-ph/0207226 Phenomenology +hep-ph/0207232 Phenomenology +hep-ph/0207235 Phenomenology +hep-ph/0207238 Phenomenology +hep-ph/0207241 Phenomenology +hep-ph/0207242 Phenomenology +hep-ph/0207276 Phenomenology +hep-ph/0207299 Phenomenology +hep-ph/0207322 Phenomenology +hep-ph/0207345 Phenomenology +hep-ph/0207359 Phenomenology +hep-ph/0207365 Phenomenology +hep-ph/0207373 Phenomenology +hep-ph/0208006 Phenomenology +hep-ph/0208016 Phenomenology +hep-ph/0208041 Phenomenology +hep-ph/0208094 Phenomenology +hep-ph/0208117 Phenomenology +hep-ph/0208118 Phenomenology +hep-ph/0208176 Phenomenology +hep-ph/0208194 Phenomenology +hep-ph/0208225 Phenomenology +hep-ph/0208230 Phenomenology +hep-ph/0208232 Phenomenology +hep-ph/0208238 Phenomenology +hep-ph/0208258 Phenomenology +hep-ph/0209009 Phenomenology +hep-ph/0209014 Phenomenology +hep-ph/0209023 Phenomenology +hep-ph/0209046 Phenomenology +hep-ph/0209051 Phenomenology +hep-ph/0209074 Phenomenology +hep-ph/0209102 Phenomenology +hep-ph/0209104 Phenomenology +hep-ph/0209145 Phenomenology +hep-ph/0209146 Phenomenology +hep-ph/0209148 Phenomenology +hep-ph/0209174 Phenomenology +hep-ph/0209201 Phenomenology +hep-ph/0209230 Phenomenology +hep-ph/0209250 Phenomenology +hep-ph/0209263 Phenomenology +hep-ph/0209267 Phenomenology +hep-ph/0209286 Phenomenology +hep-ph/0209307 Phenomenology +hep-ph/0210041 Phenomenology +hep-ph/0210053 Phenomenology +hep-ph/0210112 Phenomenology +hep-ph/0210129 Phenomenology +hep-ph/0210130 Phenomenology +hep-ph/0210145 Phenomenology +hep-ph/0210149 Phenomenology +hep-ph/0210154 Phenomenology +hep-ph/0210156 Phenomenology +hep-ph/0210160 Phenomenology +hep-ph/0210254 Phenomenology +hep-ph/0210314 Phenomenology +hep-ph/0210321 Phenomenology +hep-ph/0210332 Phenomenology +hep-ph/0210341 Phenomenology +hep-ph/0210391 Phenomenology +hep-ph/0210395 Phenomenology +hep-ph/0210402 Phenomenology +hep-ph/0210421 Phenomenology +hep-ph/0210433 Phenomenology +hep-ph/0211004 Phenomenology +hep-ph/0211014 Phenomenology +hep-ph/0211015 Phenomenology +hep-ph/0211071 Phenomenology +hep-ph/0211085 Phenomenology +hep-ph/0211095 Phenomenology +hep-ph/0211111 Phenomenology +hep-ph/0211121 Phenomenology +hep-ph/0211136 Phenomenology +hep-ph/0211224 Phenomenology +hep-ph/0211236 Phenomenology +hep-ph/0211239 Phenomenology +hep-ph/0211245 Phenomenology +hep-ph/0211251 Phenomenology +hep-ph/0211267 Phenomenology +hep-ph/0211323 Phenomenology +hep-ph/0211333 Phenomenology +hep-ph/0211361 Phenomenology +hep-ph/0211377 Phenomenology +hep-ph/0211378 Phenomenology +hep-ph/0211406 Phenomenology +hep-ph/0212002 Phenomenology +hep-ph/0212005 Phenomenology +hep-ph/0212044 Phenomenology +hep-ph/0212050 Phenomenology +hep-ph/0212054 Phenomenology +hep-ph/0212075 Phenomenology +hep-ph/0212092 Phenomenology +hep-ph/0212095 Phenomenology +hep-ph/0212107 Phenomenology +hep-ph/0212108 Phenomenology +hep-ph/0212131 Phenomenology +hep-ph/0212156 Phenomenology +hep-ph/0212158 Phenomenology +hep-ph/0212160 Phenomenology +hep-ph/0212166 Phenomenology +hep-ph/0212197 Phenomenology +hep-ph/0212219 Phenomenology +hep-ph/0212229 Phenomenology +hep-ph/0212236 Phenomenology +hep-ph/0212240 Phenomenology +hep-ph/0212253 Phenomenology +hep-ph/0212261 Phenomenology +hep-ph/0212262 Phenomenology +hep-ph/0212298 Phenomenology +hep-ph/0212304 Phenomenology +hep-ph/0212331 Phenomenology +hep-ph/0212340 Phenomenology +hep-ph/0212343 Phenomenology +hep-ph/0212349 Phenomenology +hep-ph/0212352 Phenomenology +hep-ph/0212373 Phenomenology +hep-ph/0212384 Phenomenology +hep-ph/0212397 Phenomenology +hep-ph/0301045 Phenomenology +hep-ph/0301047 Phenomenology +hep-ph/0301048 Phenomenology +hep-ph/0301065 Phenomenology +hep-ph/0301073 Phenomenology +hep-ph/0301103 Phenomenology +hep-ph/0301105 Phenomenology +hep-ph/0301110 Phenomenology +hep-ph/0301163 Phenomenology +hep-ph/0301165 Phenomenology +hep-ph/0301176 Phenomenology +hep-ph/0301182 Phenomenology +hep-ph/0301195 Phenomenology +hep-ph/0301196 Phenomenology +hep-ph/0301206 Phenomenology +hep-ph/0301238 Phenomenology +hep-ph/0301243 Phenomenology +hep-ph/0301254 Phenomenology +hep-ph/0301261 Phenomenology +hep-ph/0302021 Phenomenology +hep-ph/0302031 Phenomenology +hep-ph/0302039 Phenomenology +hep-ph/0302053 Phenomenology +hep-ph/0302081 Phenomenology +hep-ph/0302082 Phenomenology +hep-ph/0302089 Phenomenology +hep-ph/0302109 Phenomenology +hep-ph/0302121 Phenomenology +hep-ph/0302130 Phenomenology +hep-ph/0302143 Phenomenology +hep-ph/0302155 Phenomenology +hep-ph/0302201 Phenomenology +hep-ph/0302234 Phenomenology +hep-ph/0302244 Phenomenology +hep-ph/0302251 Phenomenology +hep-ph/0302254 Phenomenology +hep-ph/0302270 Phenomenology +hep-ph/0303029 Phenomenology +hep-ph/0303050 Phenomenology +hep-ph/0303051 Phenomenology +hep-ph/0303071 Phenomenology +hep-ph/0303099 Phenomenology +hep-ph/0303106 Phenomenology +hep-ph/0303111 Phenomenology +hep-ph/0303112 Phenomenology +hep-ph/0303127 Phenomenology +hep-ph/0303129 Phenomenology +hep-ph/0303140 Phenomenology +hep-ph/0303149 Phenomenology +hep-ph/0303150 Phenomenology +hep-ph/0303159 Phenomenology +hep-ph/0303171 Phenomenology +hep-ph/0303174 Phenomenology +hep-ph/0303182 Phenomenology +hep-ph/0303237 Phenomenology +hep-ph/0303238 Phenomenology +hep-ph/0304009 Phenomenology +hep-ph/0304015 Phenomenology +hep-ph/0304029 Phenomenology +hep-ph/0304032 Phenomenology +hep-ph/0304085 Phenomenology +hep-ph/0304093 Phenomenology +hep-ph/0304097 Phenomenology +hep-ph/0304110 Phenomenology +hep-ph/0304115 Phenomenology +hep-ph/0304143 Phenomenology +hep-ph/0304210 Phenomenology +hep-ph/0304218 Phenomenology +hep-ph/0304242 Phenomenology +hep-ph/0304273 Phenomenology +hep-ph/0304280 Phenomenology +hep-ph/0304299 Phenomenology +hep-ph/0304301 Phenomenology +hep-ph/0305024 Phenomenology +hep-ph/0305028 Phenomenology +hep-ph/0305044 Phenomenology +hep-ph/0305054 Phenomenology +hep-ph/0305083 Phenomenology +hep-ph/0305145 Phenomenology +hep-ph/0305165 Phenomenology +hep-ph/0305171 Phenomenology +hep-ph/0305197 Phenomenology +hep-ph/0305221 Phenomenology +hep-ph/0305239 Phenomenology +hep-ph/0305249 Phenomenology +hep-ph/0305250 Phenomenology +hep-ph/0305253 Phenomenology +hep-ph/0305262 Phenomenology +hep-ph/0305264 Phenomenology +hep-ph/0305291 Phenomenology +hep-ph/0306004 Phenomenology +hep-ph/0306021 Phenomenology +hep-ph/0306031 Phenomenology +hep-ph/0306032 Phenomenology +hep-ph/0306050 Phenomenology +hep-ph/0306066 Phenomenology +hep-ph/0306091 Phenomenology +hep-ph/0306093 Phenomenology +hep-ph/0306101 Phenomenology +hep-ph/0306113 Phenomenology +hep-ph/0306124 Phenomenology +hep-ph/0306136 Phenomenology +hep-ph/0306158 Phenomenology +hep-ph/0306159 Phenomenology +hep-ph/0306161 Phenomenology +hep-ph/0306169 Phenomenology +hep-ph/0306225 Phenomenology +hep-ph/0306239 Phenomenology +hep-ph/0306240 Phenomenology +hep-ph/0306284 Phenomenology +hep-ph/0306298 Phenomenology +hep-ph/0306303 Phenomenology +hep-ph/0306308 Phenomenology +hep-ph/0307007 Phenomenology +hep-ph/0307019 Phenomenology +hep-ph/0307025 Phenomenology +hep-ph/0307031 Phenomenology +hep-ph/0307061 Phenomenology +hep-ph/0307078 Phenomenology +hep-ph/0307093 Phenomenology +hep-ph/0307101 Phenomenology +hep-ph/0307142 Phenomenology +hep-ph/0307158 Phenomenology +hep-ph/0307172 Phenomenology +hep-ph/0307178 Phenomenology +hep-ph/0307182 Phenomenology +hep-ph/0307198 Phenomenology +hep-ph/0307203 Phenomenology +hep-ph/0307206 Phenomenology +hep-ph/0307213 Phenomenology +hep-ph/0307214 Phenomenology +hep-ph/0307218 Phenomenology +hep-ph/0307231 Phenomenology +hep-ph/0307259 Phenomenology +hep-ph/0307270 Phenomenology +hep-ph/0307279 Phenomenology +hep-ph/0307367 Phenomenology +hep-ph/0307372 Phenomenology +hep-ph/0307385 Phenomenology +hep-ph/0307393 Phenomenology +hep-ph/0307394 Phenomenology +hep-ph/0307395 Phenomenology +hep-ph/0308043 Phenomenology +hep-ph/0308058 Phenomenology +hep-ph/0308069 Phenomenology +hep-ph/0308085 Phenomenology +hep-ph/0308086 Phenomenology +hep-ph/0308113 Phenomenology +hep-ph/0308183 Phenomenology +hep-ph/0308216 Phenomenology +hep-ph/0308225 Phenomenology +hep-ph/0308268 Phenomenology +hep-ph/0308305 Phenomenology +hep-ph/0309003 Phenomenology +hep-ph/0309005 Phenomenology +hep-ph/0309011 Phenomenology +hep-ph/0309018 Phenomenology +hep-ph/0309024 Phenomenology +hep-ph/0309039 Phenomenology +hep-ph/0309045 Phenomenology +hep-ph/0309046 Phenomenology +hep-ph/0309057 Phenomenology +hep-ph/0309068 Phenomenology +hep-ph/0309071 Phenomenology +hep-ph/0309096 Phenomenology +hep-ph/0309103 Phenomenology +hep-ph/0309104 Phenomenology +hep-ph/0309109 Phenomenology +hep-ph/0309110 Phenomenology +hep-ph/0309118 Phenomenology +hep-ph/0309136 Phenomenology +hep-ph/0309153 Phenomenology +hep-ph/0309196 Phenomenology +hep-ph/0309199 Phenomenology +hep-ph/0309236 Phenomenology +hep-ph/0309254 Phenomenology +hep-ph/0309331 Phenomenology +hep-ph/0310056 Phenomenology +hep-ph/0310058 Phenomenology +hep-ph/0310070 Phenomenology +hep-ph/0310078 Phenomenology +hep-ph/0310083 Phenomenology +hep-ph/0310110 Phenomenology +hep-ph/0310111 Phenomenology +hep-ph/0310143 Phenomenology +hep-ph/0310214 Phenomenology +hep-ph/0310241 Phenomenology +hep-ph/0310314 Phenomenology +hep-ph/0310331 Phenomenology +hep-ph/0310344 Phenomenology +hep-ph/0310350 Phenomenology +hep-ph/0310351 Phenomenology +hep-ph/0311018 Phenomenology +hep-ph/0311044 Phenomenology +hep-ph/0311054 Phenomenology +hep-ph/0311140 Phenomenology +hep-ph/0311170 Phenomenology +hep-ph/0311188 Phenomenology +hep-ph/0311198 Phenomenology +hep-ph/0311246 Phenomenology +hep-ph/0311263 Phenomenology +hep-ph/0311265 Phenomenology +hep-ph/0311279 Phenomenology +hep-ph/0311281 Phenomenology +hep-ph/0311283 Phenomenology +hep-ph/0311325 Phenomenology +hep-ph/0311332 Phenomenology +hep-ph/0311352 Phenomenology +hep-ph/0311357 Phenomenology +hep-ph/0312001 Phenomenology +hep-ph/0312010 Phenomenology +hep-ph/0312094 Phenomenology +hep-ph/0312100 Phenomenology +hep-ph/0312102 Phenomenology +hep-ph/0312110 Phenomenology +hep-ph/0312136 Phenomenology +hep-ph/0312160 Phenomenology +hep-ph/0312169 Phenomenology +hep-ph/0312173 Phenomenology +hep-ph/0312216 Phenomenology +hep-ph/0312217 Phenomenology +hep-ph/0312229 Phenomenology +hep-ph/0312233 Phenomenology +hep-ph/0312236 Phenomenology +hep-ph/0312239 Phenomenology +hep-ph/0312241 Phenomenology +hep-ph/0312251 Phenomenology +hep-ph/0312275 Phenomenology +hep-ph/0312295 Phenomenology +hep-ph/0312305 Phenomenology +hep-ph/0312310 Phenomenology +hep-ph/0312319 Phenomenology +hep-ph/0312333 Phenomenology +hep-ph/0312335 Phenomenology +hep-ph/0312358 Phenomenology +hep-ph/0312372 Phenomenology +hep-ph/0312378 Phenomenology +hep-ph/0312389 Phenomenology +hep-ph/0401035 Phenomenology +hep-ph/0401063 Phenomenology +hep-ph/0401070 Phenomenology +hep-ph/0401102 Phenomenology +hep-ph/0401107 Phenomenology +hep-ph/0401141 Phenomenology +hep-ph/0401177 Phenomenology +hep-ph/0401185 Phenomenology +hep-ph/0401206 Phenomenology +hep-ph/0401219 Phenomenology +hep-ph/0402018 Phenomenology +hep-ph/0402037 Phenomenology +hep-ph/0402120 Phenomenology +hep-ph/0402125 Phenomenology +hep-ph/0402160 Phenomenology +hep-ph/0402221 Phenomenology +hep-ph/0402228 Phenomenology +hep-ph/0402245 Phenomenology +hep-ph/0402250 Phenomenology +hep-ph/0402253 Phenomenology +hep-ph/0403005 Phenomenology +hep-ph/0403014 Phenomenology +hep-ph/0403033 Phenomenology +hep-ph/0403048 Phenomenology +hep-ph/0403090 Phenomenology +hep-ph/0403098 Phenomenology +hep-ph/0403103 Phenomenology +hep-ph/0403130 Phenomenology +hep-ph/0403134 Phenomenology +hep-ph/0403150 Phenomenology +hep-ph/0403154 Phenomenology +hep-ph/0403177 Phenomenology +hep-ph/0403200 Phenomenology +hep-ph/0403236 Phenomenology +hep-ph/0403241 Phenomenology +hep-ph/0403309 Phenomenology +hep-ph/0404055 Phenomenology +hep-ph/0404061 Phenomenology +hep-ph/0404063 Phenomenology +hep-ph/0404073 Phenomenology +hep-ph/0404084 Phenomenology +hep-ph/0404100 Phenomenology +hep-ph/0404130 Phenomenology +hep-ph/0404131 Phenomenology +hep-ph/0404143 Phenomenology +hep-ph/0404147 Phenomenology +hep-ph/0404176 Phenomenology +hep-ph/0404181 Phenomenology +hep-ph/0404187 Phenomenology +hep-ph/0404190 Phenomenology +hep-ph/0404197 Phenomenology +hep-ph/0404206 Phenomenology +hep-ph/0404244 Phenomenology +hep-ph/0404280 Phenomenology +hep-ph/0404284 Phenomenology +hep-ph/0404286 Phenomenology +hep-ph/0404292 Phenomenology +hep-ph/0405062 Phenomenology +hep-ph/0405065 Phenomenology +hep-ph/0405109 Phenomenology +hep-ph/0405159 Phenomenology +hep-ph/0405160 Phenomenology +hep-ph/0405173 Phenomenology +hep-ph/0405250 Phenomenology +hep-ph/0405265 Phenomenology +hep-ph/0405266 Phenomenology +hep-ph/0405272 Phenomenology +hep-ph/0405303 Phenomenology +hep-ph/0405304 Phenomenology +hep-ph/0406024 Phenomenology +hep-ph/0406029 Phenomenology +hep-ph/0406050 Phenomenology +hep-ph/0406065 Phenomenology +hep-ph/0406083 Phenomenology +hep-ph/0406087 Phenomenology +hep-ph/0406133 Phenomenology +hep-ph/0406135 Phenomenology +hep-ph/0406140 Phenomenology +hep-ph/0406153 Phenomenology +hep-ph/0406167 Phenomenology +hep-ph/0406178 Phenomenology +hep-ph/0406192 Phenomenology +hep-ph/0406224 Phenomenology +hep-ph/0406225 Phenomenology +hep-ph/0406294 Phenomenology +hep-ph/0406315 Phenomenology +hep-ph/0406317 Phenomenology +hep-ph/0407027 Phenomenology +hep-ph/0407098 Phenomenology +hep-ph/0407117 Phenomenology +hep-ph/0407127 Phenomenology +hep-ph/0407166 Phenomenology +hep-ph/0407167 Phenomenology +hep-ph/0407181 Phenomenology +hep-ph/0407188 Phenomenology +hep-ph/0407195 Phenomenology +hep-ph/0407220 Phenomenology +hep-ph/0407260 Phenomenology +hep-ph/0407262 Phenomenology +hep-ph/0407263 Phenomenology +hep-ph/0407273 Phenomenology +hep-ph/0407291 Phenomenology +hep-ph/0407313 Phenomenology +hep-ph/0407316 Phenomenology +hep-ph/0408006 Phenomenology +hep-ph/0408018 Phenomenology +hep-ph/0408050 Phenomenology +hep-ph/0408066 Phenomenology +hep-ph/0408074 Phenomenology +hep-ph/0408095 Phenomenology +hep-ph/0408172 Phenomenology +hep-ph/0408173 Phenomenology +hep-ph/0408215 Phenomenology +hep-ph/0408235 Phenomenology +hep-ph/0408244 Phenomenology +hep-ph/0408267 Phenomenology +hep-ph/0408277 Phenomenology +hep-ph/0408285 Phenomenology +hep-ph/9204216 Phenomenology +hep-ph/9204236 Phenomenology +hep-ph/9206230 Phenomenology +hep-ph/9206248 Phenomenology +hep-ph/9207216 Phenomenology +hep-ph/9207262 Phenomenology +hep-ph/9210206 Phenomenology +hep-ph/9210243 Phenomenology +hep-ph/9211329 Phenomenology +hep-ph/9211332 Phenomenology +hep-ph/9212218 Phenomenology +hep-ph/9212229 Phenomenology +hep-ph/9212230 Phenomenology +hep-ph/9212235 Phenomenology +hep-ph/9212250 Phenomenology +hep-ph/9212259 Phenomenology +hep-ph/9212297 Phenomenology +hep-ph/9212298 Phenomenology +hep-ph/9301206 Phenomenology +hep-ph/9301229 Phenomenology +hep-ph/9301251 Phenomenology +hep-ph/9301269 Phenomenology +hep-ph/9301274 Phenomenology +hep-ph/9302240 Phenomenology +hep-ph/9302257 Phenomenology +hep-ph/9302271 Phenomenology +hep-ph/9302295 Phenomenology +hep-ph/9302307 Phenomenology +hep-ph/9303205 Phenomenology +hep-ph/9303233 Phenomenology +hep-ph/9304272 Phenomenology +hep-ph/9304286 Phenomenology +hep-ph/9304305 Phenomenology +hep-ph/9305203 Phenomenology +hep-ph/9305221 Phenomenology +hep-ph/9305244 Phenomenology +hep-ph/9305308 Phenomenology +hep-ph/9306230 Phenomenology +hep-ph/9306266 Phenomenology +hep-ph/9306303 Phenomenology +hep-ph/9307231 Phenomenology +hep-ph/9307247 Phenomenology +hep-ph/9307362 Phenomenology +hep-ph/9308256 Phenomenology +hep-ph/9308286 Phenomenology +hep-ph/9308322 Phenomenology +hep-ph/9309298 Phenomenology +hep-ph/9310238 Phenomenology +hep-ph/9310279 Phenomenology +hep-ph/9310296 Phenomenology +hep-ph/9310313 Phenomenology +hep-ph/9310379 Phenomenology +hep-ph/9311247 Phenomenology +hep-ph/9311292 Phenomenology +hep-ph/9311340 Phenomenology +hep-ph/9312210 Phenomenology +hep-ph/9312221 Phenomenology +hep-ph/9312302 Phenomenology +hep-ph/9312304 Phenomenology +hep-ph/9401237 Phenomenology +hep-ph/9401297 Phenomenology +hep-ph/9401356 Phenomenology +hep-ph/9402277 Phenomenology +hep-ph/9402286 Phenomenology +hep-ph/9402348 Phenomenology +hep-ph/9403204 Phenomenology +hep-ph/9403235 Phenomenology +hep-ph/9403251 Phenomenology +hep-ph/9403350 Phenomenology +hep-ph/9403395 Phenomenology +hep-ph/9404234 Phenomenology +hep-ph/9404235 Phenomenology +hep-ph/9404279 Phenomenology +hep-ph/9404284 Phenomenology +hep-ph/9404318 Phenomenology +hep-ph/9405207 Phenomenology +hep-ph/9405243 Phenomenology +hep-ph/9405260 Phenomenology +hep-ph/9405320 Phenomenology +hep-ph/9405343 Phenomenology +hep-ph/9406207 Phenomenology +hep-ph/9406236 Phenomenology +hep-ph/9406249 Phenomenology +hep-ph/9406257 Phenomenology +hep-ph/9406315 Phenomenology +hep-ph/9406338 Phenomenology +hep-ph/9406351 Phenomenology +hep-ph/9406382 Phenomenology +hep-ph/9406402 Phenomenology +hep-ph/9406409 Phenomenology +hep-ph/9406411 Phenomenology +hep-ph/9406413 Phenomenology +hep-ph/9406431 Phenomenology +hep-ph/9407231 Phenomenology +hep-ph/9407293 Phenomenology +hep-ph/9407339 Phenomenology +hep-ph/9407344 Phenomenology +hep-ph/9408216 Phenomenology +hep-ph/9408387 Phenomenology +hep-ph/9408392 Phenomenology +hep-ph/9409204 Phenomenology +hep-ph/9409289 Phenomenology +hep-ph/9409415 Phenomenology +hep-ph/9409456 Phenomenology +hep-ph/9410233 Phenomenology +hep-ph/9410275 Phenomenology +hep-ph/9410280 Phenomenology +hep-ph/9410351 Phenomenology +hep-ph/9410406 Phenomenology +hep-ph/9411211 Phenomenology +hep-ph/9411219 Phenomenology +hep-ph/9411266 Phenomenology +hep-ph/9411323 Phenomenology +hep-ph/9412208 Phenomenology +hep-ph/9412247 Phenomenology +hep-ph/9412278 Phenomenology +hep-ph/9412286 Phenomenology +hep-ph/9412304 Phenomenology +hep-ph/9412356 Phenomenology +hep-ph/9412383 Phenomenology +hep-ph/9501230 Phenomenology +hep-ph/9501231 Phenomenology +hep-ph/9501245 Phenomenology +hep-ph/9501283 Phenomenology +hep-ph/9502250 Phenomenology +hep-ph/9502270 Phenomenology +hep-ph/9502372 Phenomenology +hep-ph/9502385 Phenomenology +hep-ph/9502391 Phenomenology +hep-ph/9502395 Phenomenology +hep-ph/9502406 Phenomenology +hep-ph/9503230 Phenomenology +hep-ph/9503234 Phenomenology +hep-ph/9503237 Phenomenology +hep-ph/9503266 Phenomenology +hep-ph/9503287 Phenomenology +hep-ph/9503346 Phenomenology +hep-ph/9503354 Phenomenology +hep-ph/9503404 Phenomenology +hep-ph/9503413 Phenomenology +hep-ph/9503446 Phenomenology +hep-ph/9503486 Phenomenology +hep-ph/9503489 Phenomenology +hep-ph/9504229 Phenomenology +hep-ph/9504237 Phenomenology +hep-ph/9504250 Phenomenology +hep-ph/9504288 Phenomenology +hep-ph/9504304 Phenomenology +hep-ph/9504357 Phenomenology +hep-ph/9504363 Phenomenology +hep-ph/9504424 Phenomenology +hep-ph/9505235 Phenomenology +hep-ph/9505259 Phenomenology +hep-ph/9505295 Phenomenology +hep-ph/9505301 Phenomenology +hep-ph/9505333 Phenomenology +hep-ph/9505335 Phenomenology +hep-ph/9505377 Phenomenology +hep-ph/9505397 Phenomenology +hep-ph/9505408 Phenomenology +hep-ph/9505430 Phenomenology +hep-ph/9506224 Phenomenology +hep-ph/9506240 Phenomenology +hep-ph/9506265 Phenomenology +hep-ph/9506307 Phenomenology +hep-ph/9506315 Phenomenology +hep-ph/9506325 Phenomenology +hep-ph/9506360 Phenomenology +hep-ph/9506363 Phenomenology +hep-ph/9506377 Phenomenology +hep-ph/9506396 Phenomenology +hep-ph/9506405 Phenomenology +hep-ph/9506415 Phenomenology +hep-ph/9506416 Phenomenology +hep-ph/9506421 Phenomenology +hep-ph/9506425 Phenomenology +hep-ph/9506457 Phenomenology +hep-ph/9506475 Phenomenology +hep-ph/9507219 Phenomenology +hep-ph/9507220 Phenomenology +hep-ph/9507228 Phenomenology +hep-ph/9507270 Phenomenology +hep-ph/9507271 Phenomenology +hep-ph/9507284 Phenomenology +hep-ph/9507309 Phenomenology +hep-ph/9507332 Phenomenology +hep-ph/9507337 Phenomenology +hep-ph/9507338 Phenomenology +hep-ph/9507339 Phenomenology +hep-ph/9507376 Phenomenology +hep-ph/9507386 Phenomenology +hep-ph/9507430 Phenomenology +hep-ph/9508221 Phenomenology +hep-ph/9508232 Phenomenology +hep-ph/9508237 Phenomenology +hep-ph/9508246 Phenomenology +hep-ph/9508265 Phenomenology +hep-ph/9508287 Phenomenology +hep-ph/9508293 Phenomenology +hep-ph/9508358 Phenomenology +hep-ph/9508403 Phenomenology +hep-ph/9508405 Phenomenology +hep-ph/9508412 Phenomenology +hep-ph/9509217 Phenomenology +hep-ph/9509233 Phenomenology +hep-ph/9509239 Phenomenology +hep-ph/9509257 Phenomenology +hep-ph/9509267 Phenomenology +hep-ph/9509270 Phenomenology +hep-ph/9509299 Phenomenology +hep-ph/9509301 Phenomenology +hep-ph/9509303 Phenomenology +hep-ph/9509371 Phenomenology +hep-ph/9509372 Phenomenology +hep-ph/9509398 Phenomenology +hep-ph/9509408 Phenomenology +hep-ph/9509415 Phenomenology +hep-ph/9509424 Phenomenology +hep-ph/9510218 Phenomenology +hep-ph/9510230 Phenomenology +hep-ph/9510259 Phenomenology +hep-ph/9510286 Phenomenology +hep-ph/9510304 Phenomenology +hep-ph/9510306 Phenomenology +hep-ph/9510329 Phenomenology +hep-ph/9510330 Phenomenology +hep-ph/9510366 Phenomenology +hep-ph/9510403 Phenomenology +hep-ph/9510411 Phenomenology +hep-ph/9510417 Phenomenology +hep-ph/9510422 Phenomenology +hep-ph/9510430 Phenomenology +hep-ph/9510450 Phenomenology +hep-ph/9510453 Phenomenology +hep-ph/9511237 Phenomenology +hep-ph/9511272 Phenomenology +hep-ph/9511275 Phenomenology +hep-ph/9511276 Phenomenology +hep-ph/9511278 Phenomenology +hep-ph/9511284 Phenomenology +hep-ph/9511311 Phenomenology +hep-ph/9511316 Phenomenology +hep-ph/9511318 Phenomenology +hep-ph/9511365 Phenomenology +hep-ph/9511381 Phenomenology +hep-ph/9511398 Phenomenology +hep-ph/9511399 Phenomenology +hep-ph/9511407 Phenomenology +hep-ph/9511412 Phenomenology +hep-ph/9511418 Phenomenology +hep-ph/9511420 Phenomenology +hep-ph/9511454 Phenomenology +hep-ph/9512208 Phenomenology +hep-ph/9512218 Phenomenology +hep-ph/9512223 Phenomenology +hep-ph/9512244 Phenomenology +hep-ph/9512253 Phenomenology +hep-ph/9512262 Phenomenology +hep-ph/9512264 Phenomenology +hep-ph/9512269 Phenomenology +hep-ph/9512356 Phenomenology +hep-ph/9512369 Phenomenology +hep-ph/9512389 Phenomenology +hep-ph/9512396 Phenomenology +hep-ph/9512406 Phenomenology +hep-ph/9512411 Phenomenology +hep-ph/9512421 Phenomenology +hep-ph/9601219 Phenomenology +hep-ph/9601257 Phenomenology +hep-ph/9601278 Phenomenology +hep-ph/9601283 Phenomenology +hep-ph/9601289 Phenomenology +hep-ph/9601303 Phenomenology +hep-ph/9601316 Phenomenology +hep-ph/9601345 Phenomenology +hep-ph/9601350 Phenomenology +hep-ph/9601372 Phenomenology +hep-ph/9601384 Phenomenology +hep-ph/9601388 Phenomenology +hep-ph/9602223 Phenomenology +hep-ph/9602229 Phenomenology +hep-ph/9602239 Phenomenology +hep-ph/9602262 Phenomenology +hep-ph/9602297 Phenomenology +hep-ph/9602304 Phenomenology +hep-ph/9602317 Phenomenology +hep-ph/9602319 Phenomenology +hep-ph/9602348 Phenomenology +hep-ph/9602363 Phenomenology +hep-ph/9602419 Phenomenology +hep-ph/9603204 Phenomenology +hep-ph/9603210 Phenomenology +hep-ph/9603234 Phenomenology +hep-ph/9603252 Phenomenology +hep-ph/9603292 Phenomenology +hep-ph/9603314 Phenomenology +hep-ph/9603319 Phenomenology +hep-ph/9603323 Phenomenology +hep-ph/9603336 Phenomenology +hep-ph/9603337 Phenomenology +hep-ph/9603339 Phenomenology +hep-ph/9603347 Phenomenology +hep-ph/9603376 Phenomenology +hep-ph/9603400 Phenomenology +hep-ph/9603447 Phenomenology +hep-ph/9604212 Phenomenology +hep-ph/9604264 Phenomenology +hep-ph/9604272 Phenomenology +hep-ph/9604288 Phenomenology +hep-ph/9604290 Phenomenology +hep-ph/9604299 Phenomenology +hep-ph/9604301 Phenomenology +hep-ph/9604317 Phenomenology +hep-ph/9604384 Phenomenology +hep-ph/9604387 Phenomenology +hep-ph/9604407 Phenomenology +hep-ph/9604411 Phenomenology +hep-ph/9604412 Phenomenology +hep-ph/9604418 Phenomenology +hep-ph/9604421 Phenomenology +hep-ph/9604429 Phenomenology +hep-ph/9604439 Phenomenology +hep-ph/9605201 Phenomenology +hep-ph/9605247 Phenomenology +hep-ph/9605255 Phenomenology +hep-ph/9605275 Phenomenology +hep-ph/9605329 Phenomenology +hep-ph/9605348 Phenomenology +hep-ph/9605356 Phenomenology +hep-ph/9605397 Phenomenology +hep-ph/9605406 Phenomenology +hep-ph/9605413 Phenomenology +hep-ph/9605424 Phenomenology +hep-ph/9606220 Phenomenology +hep-ph/9606234 Phenomenology +hep-ph/9606258 Phenomenology +hep-ph/9606264 Phenomenology +hep-ph/9606273 Phenomenology +hep-ph/9606279 Phenomenology +hep-ph/9606295 Phenomenology +hep-ph/9606296 Phenomenology +hep-ph/9606325 Phenomenology +hep-ph/9606351 Phenomenology +hep-ph/9606355 Phenomenology +hep-ph/9606358 Phenomenology +hep-ph/9606359 Phenomenology +hep-ph/9606397 Phenomenology +hep-ph/9606418 Phenomenology +hep-ph/9606428 Phenomenology +hep-ph/9606438 Phenomenology +hep-ph/9607210 Phenomenology +hep-ph/9607235 Phenomenology +hep-ph/9607237 Phenomenology +hep-ph/9607254 Phenomenology +hep-ph/9607256 Phenomenology +hep-ph/9607319 Phenomenology +hep-ph/9607323 Phenomenology +hep-ph/9607324 Phenomenology +hep-ph/9607331 Phenomenology +hep-ph/9607344 Phenomenology +hep-ph/9607354 Phenomenology +hep-ph/9607384 Phenomenology +hep-ph/9607397 Phenomenology +hep-ph/9607398 Phenomenology +hep-ph/9607414 Phenomenology +hep-ph/9607421 Phenomenology +hep-ph/9607442 Phenomenology +hep-ph/9607453 Phenomenology +hep-ph/9607455 Phenomenology +hep-ph/9608209 Phenomenology +hep-ph/9608214 Phenomenology +hep-ph/9608218 Phenomenology +hep-ph/9608222 Phenomenology +hep-ph/9608242 Phenomenology +hep-ph/9608243 Phenomenology +hep-ph/9608247 Phenomenology +hep-ph/9608253 Phenomenology +hep-ph/9608262 Phenomenology +hep-ph/9608280 Phenomenology +hep-ph/9608327 Phenomenology +hep-ph/9608336 Phenomenology +hep-ph/9608340 Phenomenology +hep-ph/9608353 Phenomenology +hep-ph/9608365 Phenomenology +hep-ph/9608371 Phenomenology +hep-ph/9608383 Phenomenology +hep-ph/9608400 Phenomenology +hep-ph/9608403 Phenomenology +hep-ph/9608425 Phenomenology +hep-ph/9608430 Phenomenology +hep-ph/9608435 Phenomenology +hep-ph/9608472 Phenomenology +hep-ph/9608477 Phenomenology +hep-ph/9608484 Phenomenology +hep-ph/9609212 Phenomenology +hep-ph/9609220 Phenomenology +hep-ph/9609231 Phenomenology +hep-ph/9609247 Phenomenology +hep-ph/9609262 Phenomenology +hep-ph/9609276 Phenomenology +hep-ph/9609279 Phenomenology +hep-ph/9609296 Phenomenology +hep-ph/9609314 Phenomenology +hep-ph/9609360 Phenomenology +hep-ph/9609378 Phenomenology +hep-ph/9609381 Phenomenology +hep-ph/9609396 Phenomenology +hep-ph/9609403 Phenomenology +hep-ph/9609430 Phenomenology +hep-ph/9609447 Phenomenology +hep-ph/9609458 Phenomenology +hep-ph/9609482 Phenomenology +hep-ph/9609511 Phenomenology +hep-ph/9609512 Phenomenology +hep-ph/9609523 Phenomenology +hep-ph/9610201 Phenomenology +hep-ph/9610221 Phenomenology +hep-ph/9610222 Phenomenology +hep-ph/9610230 Phenomenology +hep-ph/9610239 Phenomenology +hep-ph/9610240 Phenomenology +hep-ph/9610267 Phenomenology +hep-ph/9610273 Phenomenology +hep-ph/9610274 Phenomenology +hep-ph/9610276 Phenomenology +hep-ph/9610278 Phenomenology +hep-ph/9610293 Phenomenology +hep-ph/9610305 Phenomenology +hep-ph/9610370 Phenomenology +hep-ph/9610396 Phenomenology +hep-ph/9610402 Phenomenology +hep-ph/9610409 Phenomenology +hep-ph/9610450 Phenomenology +hep-ph/9610468 Phenomenology +hep-ph/9610473 Phenomenology +hep-ph/9610492 Phenomenology +hep-ph/9610508 Phenomenology +hep-ph/9610515 Phenomenology +hep-ph/9610517 Phenomenology +hep-ph/9610531 Phenomenology +hep-ph/9610533 Phenomenology +hep-ph/9610541 Phenomenology +hep-ph/9610543 Phenomenology +hep-ph/9610553 Phenomenology +hep-ph/9611231 Phenomenology +hep-ph/9611237 Phenomenology +hep-ph/9611259 Phenomenology +hep-ph/9611284 Phenomenology +hep-ph/9611307 Phenomenology +hep-ph/9611310 Phenomenology +hep-ph/9611311 Phenomenology +hep-ph/9611321 Phenomenology +hep-ph/9611331 Phenomenology +hep-ph/9611360 Phenomenology +hep-ph/9611383 Phenomenology +hep-ph/9611391 Phenomenology +hep-ph/9611399 Phenomenology +hep-ph/9611443 Phenomenology +hep-ph/9611448 Phenomenology +hep-ph/9612250 Phenomenology +hep-ph/9612264 Phenomenology +hep-ph/9612269 Phenomenology +hep-ph/9612270 Phenomenology +hep-ph/9612271 Phenomenology +hep-ph/9612297 Phenomenology +hep-ph/9612300 Phenomenology +hep-ph/9612312 Phenomenology +hep-ph/9612320 Phenomenology +hep-ph/9612322 Phenomenology +hep-ph/9612327 Phenomenology +hep-ph/9612333 Phenomenology +hep-ph/9612340 Phenomenology +hep-ph/9612349 Phenomenology +hep-ph/9612405 Phenomenology +hep-ph/9612433 Phenomenology +hep-ph/9612441 Phenomenology +hep-ph/9612442 Phenomenology +hep-ph/9612444 Phenomenology +hep-ph/9612446 Phenomenology +hep-ph/9701215 Phenomenology +hep-ph/9701219 Phenomenology +hep-ph/9701225 Phenomenology +hep-ph/9701269 Phenomenology +hep-ph/9701291 Phenomenology +hep-ph/9701293 Phenomenology +hep-ph/9701296 Phenomenology +hep-ph/9701311 Phenomenology +hep-ph/9701316 Phenomenology +hep-ph/9701334 Phenomenology +hep-ph/9701337 Phenomenology +hep-ph/9701389 Phenomenology +hep-ph/9701396 Phenomenology +hep-ph/9701414 Phenomenology +hep-ph/9702206 Phenomenology +hep-ph/9702218 Phenomenology +hep-ph/9702223 Phenomenology +hep-ph/9702227 Phenomenology +hep-ph/9702236 Phenomenology +hep-ph/9702252 Phenomenology +hep-ph/9702269 Phenomenology +hep-ph/9702277 Phenomenology +hep-ph/9702279 Phenomenology +hep-ph/9702310 Phenomenology +hep-ph/9702312 Phenomenology +hep-ph/9702316 Phenomenology +hep-ph/9702345 Phenomenology +hep-ph/9702353 Phenomenology +hep-ph/9702362 Phenomenology +hep-ph/9702387 Phenomenology +hep-ph/9702389 Phenomenology +hep-ph/9702414 Phenomenology +hep-ph/9702417 Phenomenology +hep-ph/9702430 Phenomenology +hep-ph/9702443 Phenomenology +hep-ph/9703202 Phenomenology +hep-ph/9703204 Phenomenology +hep-ph/9703224 Phenomenology +hep-ph/9703234 Phenomenology +hep-ph/9703254 Phenomenology +hep-ph/9703266 Phenomenology +hep-ph/9703281 Phenomenology +hep-ph/9703291 Phenomenology +hep-ph/9703301 Phenomenology +hep-ph/9703317 Phenomenology +hep-ph/9703327 Phenomenology +hep-ph/9703341 Phenomenology +hep-ph/9703343 Phenomenology +hep-ph/9703349 Phenomenology +hep-ph/9703351 Phenomenology +hep-ph/9703362 Phenomenology +hep-ph/9703377 Phenomenology +hep-ph/9703378 Phenomenology +hep-ph/9703404 Phenomenology +hep-ph/9703445 Phenomenology +hep-ph/9703446 Phenomenology +hep-ph/9703449 Phenomenology +hep-ph/9703463 Phenomenology +hep-ph/9704205 Phenomenology +hep-ph/9704207 Phenomenology +hep-ph/9704225 Phenomenology +hep-ph/9704234 Phenomenology +hep-ph/9704253 Phenomenology +hep-ph/9704257 Phenomenology +hep-ph/9704260 Phenomenology +hep-ph/9704272 Phenomenology +hep-ph/9704281 Phenomenology +hep-ph/9704325 Phenomenology +hep-ph/9704338 Phenomenology +hep-ph/9704355 Phenomenology +hep-ph/9704357 Phenomenology +hep-ph/9704380 Phenomenology +hep-ph/9704414 Phenomenology +hep-ph/9704436 Phenomenology +hep-ph/9705223 Phenomenology +hep-ph/9705234 Phenomenology +hep-ph/9705235 Phenomenology +hep-ph/9705246 Phenomenology +hep-ph/9705249 Phenomenology +hep-ph/9705260 Phenomenology +hep-ph/9705286 Phenomenology +hep-ph/9705293 Phenomenology +hep-ph/9705309 Phenomenology +hep-ph/9705320 Phenomenology +hep-ph/9705354 Phenomenology +hep-ph/9705366 Phenomenology +hep-ph/9705383 Phenomenology +hep-ph/9705421 Phenomenology +hep-ph/9705440 Phenomenology +hep-ph/9705456 Phenomenology +hep-ph/9706207 Phenomenology +hep-ph/9706213 Phenomenology +hep-ph/9706217 Phenomenology +hep-ph/9706242 Phenomenology +hep-ph/9706246 Phenomenology +hep-ph/9706247 Phenomenology +hep-ph/9706253 Phenomenology +hep-ph/9706265 Phenomenology +hep-ph/9706274 Phenomenology +hep-ph/9706277 Phenomenology +hep-ph/9706301 Phenomenology +hep-ph/9706314 Phenomenology +hep-ph/9706347 Phenomenology +hep-ph/9706368 Phenomenology +hep-ph/9706410 Phenomenology +hep-ph/9706438 Phenomenology +hep-ph/9706450 Phenomenology +hep-ph/9706470 Phenomenology +hep-ph/9706476 Phenomenology +hep-ph/9706484 Phenomenology +hep-ph/9706489 Phenomenology +hep-ph/9706522 Phenomenology +hep-ph/9707220 Phenomenology +hep-ph/9707223 Phenomenology +hep-ph/9707229 Phenomenology +hep-ph/9707235 Phenomenology +hep-ph/9707247 Phenomenology +hep-ph/9707287 Phenomenology +hep-ph/9707304 Phenomenology +hep-ph/9707330 Phenomenology +hep-ph/9707381 Phenomenology +hep-ph/9707385 Phenomenology +hep-ph/9707396 Phenomenology +hep-ph/9707409 Phenomenology +hep-ph/9707437 Phenomenology +hep-ph/9707453 Phenomenology +hep-ph/9707491 Phenomenology +hep-ph/9707494 Phenomenology +hep-ph/9707518 Phenomenology +hep-ph/9708227 Phenomenology +hep-ph/9708237 Phenomenology +hep-ph/9708238 Phenomenology +hep-ph/9708266 Phenomenology +hep-ph/9708291 Phenomenology +hep-ph/9708327 Phenomenology +hep-ph/9708369 Phenomenology +hep-ph/9708370 Phenomenology +hep-ph/9708430 Phenomenology +hep-ph/9708456 Phenomenology +hep-ph/9708486 Phenomenology +hep-ph/9709217 Phenomenology +hep-ph/9709225 Phenomenology +hep-ph/9709231 Phenomenology +hep-ph/9709258 Phenomenology +hep-ph/9709312 Phenomenology +hep-ph/9709333 Phenomenology +hep-ph/9709358 Phenomenology +hep-ph/9709363 Phenomenology +hep-ph/9709404 Phenomenology +hep-ph/9709417 Phenomenology +hep-ph/9709447 Phenomenology +hep-ph/9709472 Phenomenology +hep-ph/9709480 Phenomenology +hep-ph/9709496 Phenomenology +hep-ph/9709499 Phenomenology +hep-ph/9709508 Phenomenology +hep-ph/9710219 Phenomenology +hep-ph/9710224 Phenomenology +hep-ph/9710289 Phenomenology +hep-ph/9710331 Phenomenology +hep-ph/9710356 Phenomenology +hep-ph/9710357 Phenomenology +hep-ph/9710363 Phenomenology +hep-ph/9710409 Phenomenology +hep-ph/9710419 Phenomenology +hep-ph/9710487 Phenomenology +hep-ph/9710489 Phenomenology +hep-ph/9710513 Phenomenology +hep-ph/9710528 Phenomenology +hep-ph/9710531 Phenomenology +hep-ph/9710539 Phenomenology +hep-ph/9711278 Phenomenology +hep-ph/9711281 Phenomenology +hep-ph/9711319 Phenomenology +hep-ph/9711322 Phenomenology +hep-ph/9711397 Phenomenology +hep-ph/9711399 Phenomenology +hep-ph/9711411 Phenomenology +hep-ph/9711423 Phenomenology +hep-ph/9711454 Phenomenology +hep-ph/9711513 Phenomenology +hep-ph/9712256 Phenomenology +hep-ph/9712271 Phenomenology +hep-ph/9712287 Phenomenology +hep-ph/9712290 Phenomenology +hep-ph/9712318 Phenomenology +hep-ph/9712346 Phenomenology +hep-ph/9712364 Phenomenology +hep-ph/9712370 Phenomenology +hep-ph/9712388 Phenomenology +hep-ph/9712410 Phenomenology +hep-ph/9712452 Phenomenology +hep-ph/9712481 Phenomenology +hep-ph/9712499 Phenomenology +hep-ph/9712517 Phenomenology +hep-ph/9712518 Phenomenology +hep-ph/9712530 Phenomenology +hep-ph/9712534 Phenomenology +hep-ph/9712537 Phenomenology +hep-ph/9712543 Phenomenology +hep-ph/9801201 Phenomenology +hep-ph/9801230 Phenomenology +hep-ph/9801268 Phenomenology +hep-ph/9801315 Phenomenology +hep-ph/9801342 Phenomenology +hep-ph/9801363 Phenomenology +hep-ph/9801403 Phenomenology +hep-ph/9801409 Phenomenology +hep-ph/9801446 Phenomenology +hep-ph/9802253 Phenomenology +hep-ph/9802270 Phenomenology +hep-ph/9802306 Phenomenology +hep-ph/9802312 Phenomenology +hep-ph/9802318 Phenomenology +hep-ph/9802324 Phenomenology +hep-ph/9802331 Phenomenology +hep-ph/9802345 Phenomenology +hep-ph/9802350 Phenomenology +hep-ph/9802362 Phenomenology +hep-ph/9802369 Phenomenology +hep-ph/9802371 Phenomenology +hep-ph/9802401 Phenomenology +hep-ph/9802411 Phenomenology +hep-ph/9802438 Phenomenology +hep-ph/9803201 Phenomenology +hep-ph/9803241 Phenomenology +hep-ph/9803247 Phenomenology +hep-ph/9803271 Phenomenology +hep-ph/9803280 Phenomenology +hep-ph/9803282 Phenomenology +hep-ph/9803286 Phenomenology +hep-ph/9803288 Phenomenology +hep-ph/9803293 Phenomenology +hep-ph/9803314 Phenomenology +hep-ph/9803316 Phenomenology +hep-ph/9803319 Phenomenology +hep-ph/9803336 Phenomenology +hep-ph/9803351 Phenomenology +hep-ph/9803369 Phenomenology +hep-ph/9803374 Phenomenology +hep-ph/9803377 Phenomenology +hep-ph/9803385 Phenomenology +hep-ph/9803387 Phenomenology +hep-ph/9803416 Phenomenology +hep-ph/9803431 Phenomenology +hep-ph/9803440 Phenomenology +hep-ph/9803488 Phenomenology +hep-ph/9803496 Phenomenology +hep-ph/9803500 Phenomenology +hep-ph/9804209 Phenomenology +hep-ph/9804253 Phenomenology +hep-ph/9804263 Phenomenology +hep-ph/9804294 Phenomenology +hep-ph/9804301 Phenomenology +hep-ph/9804353 Phenomenology +hep-ph/9804363 Phenomenology +hep-ph/9804392 Phenomenology +hep-ph/9804401 Phenomenology +hep-ph/9804450 Phenomenology +hep-ph/9804458 Phenomenology +hep-ph/9805241 Phenomenology +hep-ph/9805251 Phenomenology +hep-ph/9805274 Phenomenology +hep-ph/9805283 Phenomenology +hep-ph/9805290 Phenomenology +hep-ph/9805302 Phenomenology +hep-ph/9805319 Phenomenology +hep-ph/9805342 Phenomenology +hep-ph/9805363 Phenomenology +hep-ph/9805369 Phenomenology +hep-ph/9805385 Phenomenology +hep-ph/9805404 Phenomenology +hep-ph/9805406 Phenomenology +hep-ph/9805496 Phenomenology +hep-ph/9806234 Phenomenology +hep-ph/9806265 Phenomenology +hep-ph/9806267 Phenomenology +hep-ph/9806268 Phenomenology +hep-ph/9806317 Phenomenology +hep-ph/9806348 Phenomenology +hep-ph/9806356 Phenomenology +hep-ph/9806375 Phenomenology +hep-ph/9806385 Phenomenology +hep-ph/9806413 Phenomenology +hep-ph/9806414 Phenomenology +hep-ph/9806439 Phenomenology +hep-ph/9806455 Phenomenology +hep-ph/9806472 Phenomenology +hep-ph/9806494 Phenomenology +hep-ph/9806518 Phenomenology +hep-ph/9806521 Phenomenology +hep-ph/9806530 Phenomenology +hep-ph/9807256 Phenomenology +hep-ph/9807263 Phenomenology +hep-ph/9807265 Phenomenology +hep-ph/9807266 Phenomenology +hep-ph/9807297 Phenomenology +hep-ph/9807330 Phenomenology +hep-ph/9807334 Phenomenology +hep-ph/9807345 Phenomenology +hep-ph/9807400 Phenomenology +hep-ph/9807415 Phenomenology +hep-ph/9807434 Phenomenology +hep-ph/9807437 Phenomenology +hep-ph/9807440 Phenomenology +hep-ph/9807443 Phenomenology +hep-ph/9807462 Phenomenology +hep-ph/9807485 Phenomenology +hep-ph/9807494 Phenomenology +hep-ph/9807501 Phenomenology +hep-ph/9807503 Phenomenology +hep-ph/9807520 Phenomenology +hep-ph/9807572 Phenomenology +hep-ph/9808213 Phenomenology +hep-ph/9808214 Phenomenology +hep-ph/9808223 Phenomenology +hep-ph/9808257 Phenomenology +hep-ph/9808303 Phenomenology +hep-ph/9808311 Phenomenology +hep-ph/9808460 Phenomenology +hep-ph/9808474 Phenomenology +hep-ph/9809222 Phenomenology +hep-ph/9809255 Phenomenology +hep-ph/9809312 Phenomenology +hep-ph/9809333 Phenomenology +hep-ph/9809344 Phenomenology +hep-ph/9809361 Phenomenology +hep-ph/9809391 Phenomenology +hep-ph/9809402 Phenomenology +hep-ph/9809421 Phenomenology +hep-ph/9809530 Phenomenology +hep-ph/9809537 Phenomenology +hep-ph/9809545 Phenomenology +hep-ph/9809582 Phenomenology +hep-ph/9810224 Phenomenology +hep-ph/9810255 Phenomenology +hep-ph/9810256 Phenomenology +hep-ph/9810258 Phenomenology +hep-ph/9810319 Phenomenology +hep-ph/9810446 Phenomenology +hep-ph/9810482 Phenomenology +hep-ph/9810500 Phenomenology +hep-ph/9810546 Phenomenology +hep-ph/9811225 Phenomenology +hep-ph/9811247 Phenomenology +hep-ph/9811299 Phenomenology +hep-ph/9811303 Phenomenology +hep-ph/9811335 Phenomenology +hep-ph/9811359 Phenomenology +hep-ph/9811375 Phenomenology +hep-ph/9811377 Phenomenology +hep-ph/9811409 Phenomenology +hep-ph/9811458 Phenomenology +hep-ph/9811505 Phenomenology +hep-ph/9812243 Phenomenology +hep-ph/9812257 Phenomenology +hep-ph/9812259 Phenomenology +hep-ph/9812261 Phenomenology +hep-ph/9812272 Phenomenology +hep-ph/9812283 Phenomenology +hep-ph/9812290 Phenomenology +hep-ph/9812298 Phenomenology +hep-ph/9812311 Phenomenology +hep-ph/9812348 Phenomenology +hep-ph/9812360 Phenomenology +hep-ph/9812384 Phenomenology +hep-ph/9812406 Phenomenology +hep-ph/9812440 Phenomenology +hep-ph/9812446 Phenomenology +hep-ph/9812455 Phenomenology +hep-ph/9812487 Phenomenology +hep-ph/9812512 Phenomenology +hep-ph/9812523 Phenomenology +hep-ph/9901222 Phenomenology +hep-ph/9901252 Phenomenology +hep-ph/9901254 Phenomenology +hep-ph/9901267 Phenomenology +hep-ph/9901281 Phenomenology +hep-ph/9901301 Phenomenology +hep-ph/9901320 Phenomenology +hep-ph/9901340 Phenomenology +hep-ph/9901366 Phenomenology +hep-ph/9901374 Phenomenology +hep-ph/9901384 Phenomenology +hep-ph/9901409 Phenomenology +hep-ph/9901433 Phenomenology +hep-ph/9902220 Phenomenology +hep-ph/9902251 Phenomenology +hep-ph/9902280 Phenomenology +hep-ph/9902315 Phenomenology +hep-ph/9902318 Phenomenology +hep-ph/9902358 Phenomenology +hep-ph/9902387 Phenomenology +hep-ph/9902411 Phenomenology +hep-ph/9902429 Phenomenology +hep-ph/9902440 Phenomenology +hep-ph/9902473 Phenomenology +hep-ph/9902484 Phenomenology +hep-ph/9903230 Phenomenology +hep-ph/9903241 Phenomenology +hep-ph/9903246 Phenomenology +hep-ph/9903258 Phenomenology +hep-ph/9903267 Phenomenology +hep-ph/9903299 Phenomenology +hep-ph/9903301 Phenomenology +hep-ph/9903306 Phenomenology +hep-ph/9903337 Phenomenology +hep-ph/9903353 Phenomenology +hep-ph/9903367 Phenomenology +hep-ph/9903402 Phenomenology +hep-ph/9903431 Phenomenology +hep-ph/9903460 Phenomenology +hep-ph/9903480 Phenomenology +hep-ph/9903488 Phenomenology +hep-ph/9903493 Phenomenology +hep-ph/9903510 Phenomenology +hep-ph/9903542 Phenomenology +hep-ph/9903543 Phenomenology +hep-ph/9904210 Phenomenology +hep-ph/9904215 Phenomenology +hep-ph/9904219 Phenomenology +hep-ph/9904260 Phenomenology +hep-ph/9904273 Phenomenology +hep-ph/9904325 Phenomenology +hep-ph/9904345 Phenomenology +hep-ph/9904398 Phenomenology +hep-ph/9904402 Phenomenology +hep-ph/9904473 Phenomenology +hep-ph/9904480 Phenomenology +hep-ph/9904494 Phenomenology +hep-ph/9904497 Phenomenology +hep-ph/9904500 Phenomenology +hep-ph/9905215 Phenomenology +hep-ph/9905230 Phenomenology +hep-ph/9905275 Phenomenology +hep-ph/9905316 Phenomenology +hep-ph/9905339 Phenomenology +hep-ph/9905340 Phenomenology +hep-ph/9905352 Phenomenology +hep-ph/9905376 Phenomenology +hep-ph/9905391 Phenomenology +hep-ph/9905407 Phenomenology +hep-ph/9905423 Phenomenology +hep-ph/9905463 Phenomenology +hep-ph/9905485 Phenomenology +hep-ph/9905520 Phenomenology +hep-ph/9905530 Phenomenology +hep-ph/9906209 Phenomenology +hep-ph/9906211 Phenomenology +hep-ph/9906218 Phenomenology +hep-ph/9906222 Phenomenology +hep-ph/9906243 Phenomenology +hep-ph/9906245 Phenomenology +hep-ph/9906255 Phenomenology +hep-ph/9906280 Phenomenology +hep-ph/9906294 Phenomenology +hep-ph/9906434 Phenomenology +hep-ph/9906478 Phenomenology +hep-ph/9906494 Phenomenology +hep-ph/9906504 Phenomenology +hep-ph/9906540 Phenomenology +hep-ph/9907212 Phenomenology +hep-ph/9907214 Phenomenology +hep-ph/9907221 Phenomenology +hep-ph/9907228 Phenomenology +hep-ph/9907281 Phenomenology +hep-ph/9907317 Phenomenology +hep-ph/9907341 Phenomenology +hep-ph/9907351 Phenomenology +hep-ph/9907379 Phenomenology +hep-ph/9907386 Phenomenology +hep-ph/9907420 Phenomenology +hep-ph/9907426 Phenomenology +hep-ph/9907431 Phenomenology +hep-ph/9907445 Phenomenology +hep-ph/9907474 Phenomenology +hep-ph/9907478 Phenomenology +hep-ph/9907491 Phenomenology +hep-ph/9907497 Phenomenology +hep-ph/9907528 Phenomenology +hep-ph/9907559 Phenomenology +hep-ph/9908218 Phenomenology +hep-ph/9908270 Phenomenology +hep-ph/9908290 Phenomenology +hep-ph/9908301 Phenomenology +hep-ph/9908349 Phenomenology +hep-ph/9908361 Phenomenology +hep-ph/9908369 Phenomenology +hep-ph/9908390 Phenomenology +hep-ph/9908405 Phenomenology +hep-ph/9908414 Phenomenology +hep-ph/9908425 Phenomenology +hep-ph/9908428 Phenomenology +hep-ph/9908530 Phenomenology +hep-ph/9909201 Phenomenology +hep-ph/9909237 Phenomenology +hep-ph/9909271 Phenomenology +hep-ph/9909299 Phenomenology +hep-ph/9909404 Phenomenology +hep-ph/9909427 Phenomenology +hep-ph/9909446 Phenomenology +hep-ph/9909456 Phenomenology +hep-ph/9909462 Phenomenology +hep-ph/9909469 Phenomenology +hep-ph/9909476 Phenomenology +hep-ph/9909477 Phenomenology +hep-ph/9909490 Phenomenology +hep-ph/9909496 Phenomenology +hep-ph/9909536 Phenomenology +hep-ph/9909555 Phenomenology +hep-ph/9909560 Phenomenology +hep-ph/9909561 Phenomenology +hep-ph/9909563 Phenomenology +hep-ph/9909572 Phenomenology +hep-ph/9910243 Phenomenology +hep-ph/9910268 Phenomenology +hep-ph/9910272 Phenomenology +hep-ph/9910274 Phenomenology +hep-ph/9910277 Phenomenology +hep-ph/9910279 Phenomenology +hep-ph/9910290 Phenomenology +hep-ph/9910314 Phenomenology +hep-ph/9910389 Phenomenology +hep-ph/9910392 Phenomenology +hep-ph/9910411 Phenomenology +hep-ph/9910420 Phenomenology +hep-ph/9910429 Phenomenology +hep-ph/9910461 Phenomenology +hep-ph/9910478 Phenomenology +hep-ph/9910481 Phenomenology +hep-ph/9910492 Phenomenology +hep-ph/9910516 Phenomenology +hep-ph/9910540 Phenomenology +hep-ph/9910553 Phenomenology +hep-ph/9910557 Phenomenology +hep-ph/9910558 Phenomenology +hep-ph/9911211 Phenomenology +hep-ph/9911221 Phenomenology +hep-ph/9911243 Phenomenology +hep-ph/9911246 Phenomenology +hep-ph/9911291 Phenomenology +hep-ph/9911319 Phenomenology +hep-ph/9911332 Phenomenology +hep-ph/9911376 Phenomenology +hep-ph/9911379 Phenomenology +hep-ph/9911385 Phenomenology +hep-ph/9911420 Phenomenology +hep-ph/9911431 Phenomenology +hep-ph/9911438 Phenomenology +hep-ph/9911439 Phenomenology +hep-ph/9911447 Phenomenology +hep-ph/9911464 Phenomenology +hep-ph/9911494 Phenomenology +hep-ph/9911506 Phenomenology +hep-ph/9911517 Phenomenology +hep-ph/9911522 Phenomenology +hep-ph/9912233 Phenomenology +hep-ph/9912242 Phenomenology +hep-ph/9912258 Phenomenology +hep-ph/9912278 Phenomenology +hep-ph/9912317 Phenomenology +hep-ph/9912330 Phenomenology +hep-ph/9912358 Phenomenology +hep-ph/9912378 Phenomenology +hep-ph/9912394 Phenomenology +hep-ph/9912429 Phenomenology +hep-ph/9912431 Phenomenology +hep-ph/9912435 Phenomenology +hep-ph/9912457 Phenomenology +hep-ph/9912470 Phenomenology +hep-ph/9912471 Phenomenology +hep-ph/9912488 Phenomenology +hep-ph/9912529 Phenomenology +math-ph/0203012 +math/9901068 Probability +math/9905132 Probability +0811.2860 Algebraic Geometry +0906.4980 Methodology +1001.0456 Optics +1009.2458 Complex Variables +1102.1339 Statistical Finance +1104.4581 Astrophysics of Galaxies +1105.4795 Astrophysics of Galaxies +1107.4146 Statistical Finance +1109.0642 Statistical Finance +1201.0625 Portfolio Management +1201.4586 General Finance +1203.1768 Physics and Society +1203.5435 Solar and Stellar Astrophysics +1206.3695 +1206.5201 +1208.2320 Experiment +1208.4067 Optics +1302.0536 Theory +1303.3270 High Energy Astrophysical Phenomena +1303.7229 +1305.5685 Mesoscale and Nanoscale Physics +1306.3775 Phenomenology +1307.0396 Optimization and Control +1307.5237 Soft Condensed Matter +1308.1071 Geometric Topology +1308.6706 Computational Geometry +1309.2177 +1309.2651 Mesoscale and Nanoscale Physics +1309.3562 Solar and Stellar Astrophysics +1309.4470 +1310.3746 +1310.4696 Materials Science +1310.5388 General Finance +1310.7038 +1311.1599 Cosmology and Nongalactic Astrophysics +1311.2497 Algebraic Geometry +1312.0788 Computer Vision and Pattern Recognition +1312.2818 Physics and Society +1312.5333 Phenomenology +1312.6942 +1401.1041 Materials Science +1401.2152 +1401.4349 Optics +1402.1622 Statistical Mechanics +1402.1997 Optics +1402.2761 Plasma Physics +1402.4613 Cosmology and Nongalactic Astrophysics +1402.6166 +1402.6303 Populations and Evolution +1403.1412 Applications +1403.3048 Applications +1403.3771 Materials Science +1403.4368 Materials Science +1403.5407 Cosmology and Nongalactic Astrophysics +1404.0052 Materials Science +1404.2616 Phenomenology +1404.3444 Methodology +1404.5699 +1404.5729 +1404.5740 Cosmology and Nongalactic Astrophysics +1404.6492 +1404.7087 Quantum Gases +1404.7177 +1405.1656 +1405.4695 Mesoscale and Nanoscale Physics +1405.4797 Differential Geometry +1405.7591 Instrumentation and Detectors +1406.1301 Soft Condensed Matter +1406.3254 Phenomenology +1406.3722 +1407.0954 Phenomenology +1407.1692 Materials Science +1407.2625 High Energy Astrophysical Phenomena +1407.2984 Geometric Topology +1407.3388 Solar and Stellar Astrophysics +1407.7797 Mesoscale and Nanoscale Physics +1407.8264 Earth and Planetary Astrophysics +1407.8401 Applications +1408.1304 Geometric Topology +1408.1351 Analysis of PDEs +1408.1370 Functional Analysis +1408.1433 Representation Theory +1408.1449 Theory +1408.1478 Analysis of PDEs +1408.1494 Physics and Society +1408.1660 Theory +1408.1692 Artificial Intelligence +1408.1693 Numerical Analysis +1408.1702 Algebraic Geometry +1408.1704 Phenomenology +1408.1711 Dynamical Systems +1408.1712 Dynamical Systems +1408.1713 Digital Libraries +1408.1714 Computational Physics +1408.1719 Medical Physics +1408.1723 Phenomenology +1408.1727 Mathematical Software +1408.1737 Probability +1408.1741 Analysis of PDEs +1408.1742 Computation +1408.1743 Plasma Physics +1408.1747 Phenomenology +1408.1750 Information Theory +1408.1751 Fluid Dynamics +1408.1754 Programming Languages +1408.1759 Computer Vision and Pattern Recognition +1408.1760 +1408.1762 Fluid Dynamics +1408.1764 Networking and Internet Architecture +1408.1770 Networking and Internet Architecture +1408.1772 Functional Analysis +1408.1776 Software Engineering +1408.1778 Metric Geometry +1408.1785 Strongly Correlated Electrons +1408.1791 Solar and Stellar Astrophysics +1408.1797 Instrumentation and Methods for Astrophysics +1408.1800 Information Theory +1408.1824 Accelerator Physics +1408.1842 Superconductivity +1408.1843 Logic +1408.1847 Data Structures and Algorithms +1408.1848 Optics +1408.1849 Probability +1408.1852 Phenomenology +1408.1854 Cryptography and Security +1408.1855 +1408.1857 Representation Theory +1408.1859 Combinatorics +1408.1863 Numerical Analysis +1408.1865 Geometric Topology +1408.1867 Strongly Correlated Electrons +1408.1868 Logic in Computer Science +1408.1869 Molecular Networks +1408.1876 Instrumentation and Methods for Astrophysics +1408.1877 Classical Analysis and ODEs +1408.1881 Classical Analysis and ODEs +1408.1882 General Mathematics +1408.1886 Combinatorics +1408.1887 Optimization and Control +1408.1889 Applications +1408.1904 Classical Analysis and ODEs +1408.1907 Algebraic Geometry +1408.1909 +1408.1910 Representation Theory +1408.1912 Phenomenology +1408.1913 Artificial Intelligence +1408.1920 Numerical Analysis +1408.1921 Neurons and Cognition +1408.1924 High Energy Astrophysical Phenomena +1408.1926 Instrumentation and Detectors +1408.1927 General Mathematics +1408.1928 Computation and Language +1408.1935 Distributed, Parallel, and Cluster Computing +1408.1936 Physics Education +1408.1938 Emerging Technologies +1408.1940 Combinatorics +1408.1941 Logic +1408.1943 Statistical Mechanics +1408.1945 Physics and Society +1408.1948 Complex Variables +1408.1950 Statistical Mechanics +1408.1953 Earth and Planetary Astrophysics +cond-mat/9906076 Disordered Systems and Neural Networks +0909.4262 Algebraic Geometry +1004.4924 Algebraic Geometry +1007.0192 Algebraic Geometry +1101.1308 Cosmology and Nongalactic Astrophysics +1106.1792 Classical Physics +1109.1079 Combinatorics +1112.3030 Cosmology and Nongalactic Astrophysics +1112.5460 Phenomenology +1202.0192 +1206.1821 Probability +1209.1003 Mathematical Software +1210.0909 Strongly Correlated Electrons +1210.2022 Applications +1212.0863 Strongly Correlated Electrons +1301.4364 +1301.4956 +1303.1440 Theory +1304.1154 Cosmology and Nongalactic Astrophysics +1304.4933 Cosmology and Nongalactic Astrophysics +1304.5697 Operator Algebras +1305.0469 +1305.3049 Theory +1305.5191 +1306.0307 Strongly Correlated Electrons +1306.3350 Geometric Topology +1306.6207 +1307.1703 Phenomenology +1307.2158 High Energy Astrophysical Phenomena +1307.3796 Information Theory +1307.5343 Analysis of PDEs +1308.6014 Neurons and Cognition +1308.6620 Numerical Analysis +1309.1544 +1309.3043 Chemical Physics +1309.3443 Theory +1309.4677 Lattice +1309.5163 Dynamical Systems +1309.6416 Plasma Physics +1309.7834 Algebraic Geometry +1310.0284 +1310.0678 General Topology +1310.0812 Analysis of PDEs +1310.0896 Algebraic Geometry +1310.2138 Number Theory +1310.3887 Phenomenology +1310.3934 Operator Algebras +1310.4958 Lattice +1310.6011 Information Theory +1310.7435 Probability +1311.0712 Analysis of PDEs +1311.0808 Plasma Physics +1311.1759 Physics and Society +1311.1790 Mesoscale and Nanoscale Physics +1311.4494 Cosmology and Nongalactic Astrophysics +1311.4508 Cosmology and Nongalactic Astrophysics +1311.4678 +1311.5539 Strongly Correlated Electrons +1311.6579 Phenomenology +1311.7352 Functional Analysis +1312.0438 Instrumentation and Methods for Astrophysics +1312.1640 History and Overview +1312.3840 Materials Science +1312.5028 Mesoscale and Nanoscale Physics +1312.5819 Mesoscale and Nanoscale Physics +1312.6900 Pattern Formation and Solitons +1312.7242 Soft Condensed Matter +1401.2088 Lattice +1401.2178 Superconductivity +1401.4082 Machine Learning +1401.4776 Atomic Physics +1401.5643 Atomic Physics +1401.6299 Probability +1401.7243 Phenomenology +1401.7866 Cosmology and Nongalactic Astrophysics +1402.1930 Mesoscale and Nanoscale Physics +1402.3865 Quantum Gases +1402.5444 Chemical Physics +1402.6638 Mesoscale and Nanoscale Physics +1402.6685 Quantum Gases +1402.7221 +1403.0324 Phenomenology +1403.1003 Mesoscale and Nanoscale Physics +1403.1473 +1403.2793 Superconductivity +1403.2880 Combinatorics +1403.4150 Strongly Correlated Electrons +1403.6199 Social and Information Networks +1403.6621 Phenomenology +1404.0235 +1404.0799 Data Structures and Algorithms +1404.1776 Phenomenology +1404.2104 High Energy Astrophysical Phenomena +1404.2748 Phenomenology +1405.3501 +1405.3699 Materials Science +1405.4146 Optimization and Control +1405.4522 Information Theory +1405.5450 Commutative Algebra +1405.5639 Strongly Correlated Electrons +1405.6496 +1405.6748 Materials Science +1405.7386 Instrumentation and Detectors +1405.7470 Programming Languages +1405.7501 Accelerator Physics +1405.7527 Number Theory +1405.7693 +1405.7695 Earth and Planetary Astrophysics +1405.7705 Robotics +1405.7711 Computation and Language +1405.7713 Computation and Language +1405.7714 Computer Science and Game Theory +1405.7715 Statistical Mechanics +1405.7717 Mesoscale and Nanoscale Physics +1405.7719 Phenomenology +1405.7720 Information Theory +1405.7723 History and Philosophy of Physics +1405.7725 History and Philosophy of Physics +1405.7726 +1405.7728 Statistics Theory +1405.7734 Analysis of PDEs +1405.7737 Dynamical Systems +1405.7738 Materials Science +1405.7739 Logic in Computer Science +1405.7747 Trading and Market Microstructure +1405.7748 Optimization and Control +1405.7750 Mesoscale and Nanoscale Physics +1405.7751 Computer Science and Game Theory +1405.7757 Operator Algebras +1405.7763 Analysis of PDEs +1405.7765 Superconductivity +1405.7771 Computer Vision and Pattern Recognition +1405.7772 Differential Geometry +1405.7774 Differential Geometry +1405.7776 Algebraic Geometry +1405.7777 Neural and Evolutionary Computing +1405.7780 Neural and Evolutionary Computing +1405.7783 Materials Science +1405.7784 Dynamical Systems +1405.7785 Optics +1405.7796 Computers and Society +1405.7797 Solar and Stellar Astrophysics +1405.7802 Solar and Stellar Astrophysics +1405.7806 Computers and Society +1405.7807 Algebraic Geometry +1405.7813 Logic +1405.7815 Functional Analysis +1405.7817 Functional Analysis +1405.7821 Analysis of PDEs +1405.7823 Astrophysics of Galaxies +1405.7827 Analysis of PDEs +1405.7831 Cryptography and Security +1405.7836 Numerical Analysis +1405.7839 Solar and Stellar Astrophysics +1405.7840 Networking and Internet Architecture +1405.7842 Analysis of PDEs +1405.7843 Medical Physics +1405.7847 High Energy Astrophysical Phenomena +1405.7848 Medical Physics +1405.7851 Information Theory +1405.7852 Materials Science +1405.7856 Quantitative Methods +1405.7857 Information Retrieval +1405.7859 Data Structures and Algorithms +1405.7864 Phenomenology +1405.7865 Algebraic Geometry +1405.7866 Sound +1405.7868 Information Retrieval +1405.7869 Information Retrieval +1405.7870 Adaptation and Self-Organizing Systems +1405.7872 Classical Analysis and ODEs +1405.7883 +1405.7884 Materials Science +1405.7886 Differential Geometry +1405.7891 Analysis of PDEs +1405.7892 Biomolecules +1405.7895 Information Theory +1405.7896 Quantum Algebra +1405.7897 Learning +1405.7899 General Topology +1405.7901 Materials Science +1405.7902 Biomolecules +1405.7908 Computation and Language +1405.7909 Analysis of PDEs +1405.7913 Dynamical Systems +1405.7915 Optics +1405.7919 Experiment +1405.7921 Optimization and Control +1405.7923 Logic in Computer Science +1405.7925 Optics +1405.7926 Biomolecules +1405.7936 Instrumentation and Methods for Astrophysics +1405.7939 Atmospheric and Oceanic Physics +1405.7940 Astrophysics of Galaxies +1405.7941 Functional Analysis +1405.7942 Functional Analysis +1405.7944 Artificial Intelligence +1405.7951 Dynamical Systems +1405.7954 Metric Geometry +1405.7958 Distributed, Parallel, and Cluster Computing +1405.7960 Dynamical Systems +1405.7962 Programming Languages +1405.7963 Populations and Evolution +1405.7967 Instrumentation and Methods for Astrophysics +1405.7968 Classical Analysis and ODEs +1405.7975 Information Retrieval +astro-ph/0506746 +0705.3624 Optics +0711.4215 Optics +0801.2638 Differential Geometry +0804.0104 Differential Geometry +0901.0054 Commutative Algebra +0903.4875 Software Engineering +0907.1365 Optics +0912.0467 Optics +1003.3645 Differential Geometry +1009.2756 Combinatorics +1011.2441 Dynamical Systems +1011.4649 Other Condensed Matter +1101.4986 Symplectic Geometry +1101.5263 Applications +1103.0905 Dynamical Systems +1106.4144 Materials Science +1106.5521 Mesoscale and Nanoscale Physics +1107.4599 Symplectic Geometry +1110.0910 Dynamical Systems +1110.6530 Probability +1202.3997 High Energy Astrophysical Phenomena +1204.0758 Probability +1204.4775 Mesoscale and Nanoscale Physics +1205.1007 Pricing of Securities +1205.4079 Methodology +1206.0551 Dynamical Systems +1206.2799 Strongly Correlated Electrons +1207.0889 Geometric Topology +1207.4102 Mesoscale and Nanoscale Physics +1209.4304 +1210.0358 Probability +1211.1513 Learning +1211.2949 Mesoscale and Nanoscale Physics +1212.0633 Astrophysics of Galaxies +1212.0889 Dynamical Systems +1212.4676 Metric Geometry +1212.5948 Phenomenology +1301.2745 Phenomenology +1301.3404 Probability +1301.3617 Computation +1301.4484 Symplectic Geometry +1303.1137 Quantum Gases +1303.1139 +1303.4908 Probability +1303.6314 Computational Engineering, Finance, and Science +1303.6856 Statistics Theory +1303.7084 Classical Physics +1304.2556 Optics +1304.3757 Probability +1304.6743 Combinatorics +1304.7353 Statistics Theory +1305.1949 Strongly Correlated Electrons +1305.4346 +1306.0374 +1306.1195 Differential Geometry +1306.3611 Combinatorics +1306.5262 Neurons and Cognition +1306.6575 Theory +1307.4247 Probability +1307.5500 Materials Science +1307.7731 Strongly Correlated Electrons +1307.7733 Dynamical Systems +1307.8114 Theory +1308.3459 Rings and Algebras +1309.0624 Probability +1309.5530 Quantum Algebra +1309.6528 Algebraic Geometry +1310.2047 Classical Analysis and ODEs +1310.3633 Analysis of PDEs +1310.3792 Combinatorics +1310.6145 Cosmology and Nongalactic Astrophysics +1310.8286 +1311.2618 Combinatorics +1311.2875 +1311.3436 Phenomenology +1311.5883 Probability +1311.7605 Quantum Gases +1312.1170 Astrophysics of Galaxies +1312.2428 Optics +1312.2758 Quantum Gases +1312.2775 Algebraic Geometry +1312.6234 Probability +1312.6630 Superconductivity +1312.7545 General Finance +1401.0696 Statistical Mechanics +1401.1645 Theory +1401.3155 +1401.3205 +1401.4306 Experiment +1401.4343 Theory +1401.4409 +1401.4573 +1401.5832 Mesoscale and Nanoscale Physics +1401.7317 Theory +1402.0260 Instrumentation and Methods for Astrophysics +1402.0710 Neural and Evolutionary Computing +1402.2893 +1402.4094 K-Theory and Homology +1402.4127 Phenomenology +1402.5396 Theory +1402.6847 Mesoscale and Nanoscale Physics +1402.7068 Cosmology and Nongalactic Astrophysics +1402.7300 Strongly Correlated Electrons +1403.0265 Statistics Theory +1403.0302 +1403.0916 Mesoscale and Nanoscale Physics +1403.1840 Computer Vision and Pattern Recognition +1403.1964 +1403.2495 Strongly Correlated Electrons +1403.3133 +1403.3386 Phenomenology +1403.3648 +1403.4526 Analysis of PDEs +1403.4542 +1403.4949 Phenomenology +1403.5098 Strongly Correlated Electrons +1403.5134 +1403.5368 Classical Analysis and ODEs +1403.5784 Optimization and Control +1403.6257 Plasma Physics +1403.6357 Strongly Correlated Electrons +1403.6384 Neurons and Cognition +1403.6986 General Topology +1403.7191 Phenomenology +1404.0624 +1404.1054 Astrophysics of Galaxies +1404.2018 Phenomenology +1404.2454 +1404.3332 Mesoscale and Nanoscale Physics +1404.5503 Cosmology and Nongalactic Astrophysics +1404.5873 Phenomenology +1404.7449 +1404.7465 Strongly Correlated Electrons +1404.7749 Theory +1405.0285 Phenomenology +1405.0623 Solar and Stellar Astrophysics +1405.1310 Phenomenology +1405.1547 Lattice +1405.1720 Strongly Correlated Electrons +1405.1798 +1405.2313 Superconductivity +1405.3185 +1405.3605 +1405.4116 Phenomenology +1405.4137 +1405.4562 Phenomenology +1405.5017 Theory +1405.5456 Phenomenology +1405.5870 Phenomenology +1405.6613 Lattice +1405.6710 Cosmology and Nongalactic Astrophysics +1405.7165 +1405.7639 Theory +1406.0957 +1406.1650 +1406.1815 +1406.1935 Representation Theory +1406.2746 Information Retrieval +1406.2965 +1406.2987 Quantum Algebra +1406.3536 +1406.4083 Strongly Correlated Electrons +1406.4391 Instrumentation and Methods for Astrophysics +1406.4772 Solar and Stellar Astrophysics +1406.4956 +1406.5252 Numerical Analysis +1406.5384 Astrophysics of Galaxies +1406.5398 +1406.6049 +1406.6051 Strongly Correlated Electrons +1406.6078 Phenomenology +1406.6315 Machine Learning +1406.6941 Solar and Stellar Astrophysics +1406.6980 Phenomenology +1406.7204 Experiment +1406.7286 Theory +1406.7391 Neurons and Cognition +1407.0433 Physics and Society +1407.0621 Populations and Evolution +1407.1169 +1407.1214 Earth and Planetary Astrophysics +1407.1510 Solar and Stellar Astrophysics +1407.1833 Phenomenology +1407.2939 Astrophysics of Galaxies +1407.3362 +1407.4201 Lattice +1407.4380 Neurons and Cognition +1407.4643 Solar and Stellar Astrophysics +1407.4799 Dynamical Systems +1407.5872 Phenomenology +1407.7132 Superconductivity +1407.7746 +1407.8347 Astrophysics of Galaxies +1407.8426 +1408.0291 Superconductivity +1408.1335 Earth and Planetary Astrophysics +1408.1779 +1408.3260 +1408.3904 Information Theory +1408.3985 Computer Vision and Pattern Recognition +1408.4307 Solar and Stellar Astrophysics +1408.4670 Cosmology and Nongalactic Astrophysics +1408.4733 Materials Science +1408.5617 +1408.5930 Instrumentation and Detectors +1409.1023 Cryptography and Security +1409.1719 Statistical Mechanics +1409.2020 Analysis of PDEs +1409.2242 Astrophysics of Galaxies +1409.2251 Physics Education +1409.2308 Group Theory +1409.2388 Software Engineering +1409.2465 Computer Vision and Pattern Recognition +1409.2484 Networking and Internet Architecture +1409.2485 Software Engineering +1409.2486 Networking and Internet Architecture +1409.2502 Theory +1409.2507 Number Theory +1409.2517 +1409.2523 Classical Analysis and ODEs +1409.2526 Numerical Analysis +1409.2527 Combinatorics +1409.2530 Information Retrieval +1409.2536 +1409.2544 Neurons and Cognition +1409.2549 Information Theory +1409.2553 Databases +1409.2561 Theory +1409.2563 Geometric Topology +1409.2565 Materials Science +1409.2570 Soft Condensed Matter +1409.2578 Systems and Control +1409.2579 Numerical Analysis +1409.2580 Algebraic Geometry +1409.2584 Biomolecules +1409.2586 Instrumentation and Detectors +1409.2588 Classical Analysis and ODEs +1409.2590 Information Retrieval +1409.2591 Logic in Computer Science +1409.2592 Information Theory +1409.2593 Logic in Computer Science +1409.2594 +1409.2597 Computer Science and Game Theory +1409.2599 Methodology +1409.2601 Experiment +1409.2602 Probability +1409.2603 Data Structures and Algorithms +1409.2605 Functional Analysis +1409.2606 Probability +1409.2607 +1409.2611 Materials Science +1409.2614 Analysis of PDEs +1409.2616 Materials Science +1409.2619 Astrophysics of Galaxies +1409.2620 Learning +1409.2621 Fluid Dynamics +1409.2628 Instrumentation and Detectors +1409.2633 Optics +1409.2634 Software Engineering +1409.2635 Functional Analysis +1409.2638 Methodology +1409.2644 Mesoscale and Nanoscale Physics +1409.2648 Superconductivity +1409.2649 Operator Algebras +1409.2650 Artificial Intelligence +1409.2651 Social and Information Networks +1409.2664 Differential Geometry +1409.2666 +1409.2668 Information Retrieval +1409.2669 Soft Condensed Matter +1409.2674 Information Theory +1409.2675 Methodology +1409.2676 Neurons and Cognition +1409.2677 Methodology +1409.2679 Optimization and Control +1409.2681 Differential Geometry +1409.2683 Soft Condensed Matter +1409.2687 +1409.2693 Solar and Stellar Astrophysics +1409.2695 Combinatorics +1409.2697 Neural and Evolutionary Computing +1409.2699 Experiment +1409.2701 Atomic and Molecular Clusters +1409.2704 Number Theory +1409.2708 +1409.2709 Methodology +1409.2710 Neural and Evolutionary Computing +1409.2711 Logic in Computer Science +1409.2712 Strongly Correlated Electrons +1409.2714 Mesoscale and Nanoscale Physics +1409.2716 Category Theory +1409.2720 Algebraic Topology +1409.2722 Statistical Mechanics +1409.2731 Computational Complexity +1409.2732 Complex Variables +1409.2741 Differential Geometry +1409.2744 Number Theory +1409.2745 Combinatorics +1409.2748 Analysis of PDEs +1409.2754 Fluid Dynamics +1409.2759 Earth and Planetary Astrophysics +1409.2760 Computers and Society +1409.2762 Information Retrieval +1409.2764 Programming Languages +1409.2767 Statistics Theory +1409.2768 Data Analysis, Statistics and Probability +1409.2771 Chemical Physics +1409.2774 Instrumentation and Methods for Astrophysics +1409.2778 Logic in Computer Science +1409.2781 +1409.2783 Optimization and Control +1409.2784 Solar and Stellar Astrophysics +1409.2785 Optics +1409.2786 Numerical Analysis +1409.2787 Functional Analysis +1409.2790 +1409.2800 Computer Vision and Pattern Recognition +1409.2801 Operator Algebras +1409.2804 Geometric Topology +1409.2809 Spectral Theory +1409.2811 Analysis of PDEs +1409.2812 Analysis of PDEs +1409.2813 Probability +1409.2815 Number Theory +1409.2816 Differential Geometry +1409.2823 Geometric Topology +1409.2826 Social and Information Networks +1409.2829 Accelerator Physics +1409.2833 Methodology +1409.2839 Neurons and Cognition +1409.2841 Combinatorics +1409.2843 Number Theory +1409.2849 Probability +1409.2851 Plasma Physics +1409.2856 Applications +gr-qc/0611100 +math/0608758 Differential Geometry +1004.4715 Strongly Correlated Electrons +1005.4623 Classical Physics +1012.4832 Algebraic Geometry +1103.3083 Analysis of PDEs +1109.3738 Commutative Algebra +1110.3183 +1111.3162 Probability +1111.4798 Algebraic Geometry +1201.2256 Probability +1203.2484 Algebraic Geometry +1203.3408 Algebraic Geometry +1204.0668 Analysis of PDEs +1205.3637 Probability +1206.0624 Analysis of PDEs +1206.5687 Statistics Theory +1210.2773 Number Theory +1210.3195 Algebraic Geometry +1210.4721 Number Theory +1301.1220 Symplectic Geometry +1301.1511 Algebraic Topology +1303.2145 Combinatorics +1303.4628 Numerical Analysis +1304.4660 Atomic Physics +1306.1247 Theory +1306.2164 Strongly Correlated Electrons +1306.2261 Medical Physics +1307.1398 Instrumentation and Methods for Astrophysics +1307.1781 Strongly Correlated Electrons +1307.1849 Probability +1307.2216 Theory +1307.2475 Group Theory +1307.6728 Phenomenology +1307.7535 Mesoscale and Nanoscale Physics +1308.1418 Social and Information Networks +1308.3478 Instrumentation and Detectors +1309.1168 Solar and Stellar Astrophysics +1309.2585 Statistics Theory +1309.7231 Theory +1310.7982 Combinatorics +1310.8501 Soft Condensed Matter +1311.0738 Dynamical Systems +1311.3418 Theory +1311.5384 Soft Condensed Matter +1311.5960 Phenomenology +1312.0008 Theory +1401.1178 Mesoscale and Nanoscale Physics +1401.1772 Mesoscale and Nanoscale Physics +1401.3118 Optics +1401.5127 Commutative Algebra +1401.6446 Theory +1402.3588 Robotics +1402.4622 Statistical Mechanics +1402.6999 Accelerator Physics +1403.1531 Cosmology and Nongalactic Astrophysics +1403.3580 Instrumentation and Methods for Astrophysics +1403.4567 Strongly Correlated Electrons +1403.4704 Theory +1403.4826 Plasma Physics +1403.5105 Methodology +1403.5482 +1403.6219 Differential Geometry +1404.4473 Data Structures and Algorithms +1404.4841 Phenomenology +1404.6715 Quantum Algebra +1404.7054 Probability +1404.7182 Quantitative Methods +1404.7527 Learning +1405.0397 Phenomenology +1405.3803 High Energy Astrophysical Phenomena +1405.5441 Metric Geometry +1405.7454 Astrophysics of Galaxies +1406.1484 Metric Geometry +1406.4276 Materials Science +1406.4476 Mesoscale and Nanoscale Physics +1406.5010 Mesoscale and Nanoscale Physics +1406.5436 Statistical Mechanics +1406.6216 Theory +1406.7360 Computer Vision and Pattern Recognition +1406.7459 Computational Engineering, Finance, and Science +1406.7737 Complex Variables +1407.0606 Analysis of PDEs +1407.0756 Networking and Internet Architecture +1407.0788 Computers and Society +1407.0904 Mathematical Software +1407.0929 Logic +1407.0957 High Energy Astrophysical Phenomena +1407.1041 Artificial Intelligence +1407.1056 Social and Information Networks +1407.1058 Representation Theory +1407.1062 Rings and Algebras +1407.1063 Software Engineering +1407.1067 +1407.1069 Systems and Control +1407.1070 Methodology +1407.1075 Optics +1407.1079 Methodology +1407.1082 Learning +1407.1089 Symplectic Geometry +1407.1092 Statistical Mechanics +1407.1094 Instrumentation and Detectors +1407.1095 Optics +1407.1097 Optimization and Control +1407.1099 Number Theory +1407.1105 Mesoscale and Nanoscale Physics +1407.1106 Information Theory +1407.1107 Group Theory +1407.1112 Information Theory +1407.1116 Social and Information Networks +1407.1118 Differential Geometry +1407.1121 Databases +1407.1123 Computer Vision and Pattern Recognition +1407.1126 Optics +1407.1130 Algebraic Geometry +1407.1132 Algebraic Geometry +1407.1133 Information Retrieval +1407.1139 Functional Analysis +1407.1147 Statistical Mechanics +1407.1151 Learning +1407.1153 Metric Geometry +1407.1155 Optics +1407.1156 Dynamical Systems +1407.1157 Probability +1407.1160 Theory +1407.1163 Representation Theory +1407.1164 Systems and Control +1407.1165 Computer Vision and Pattern Recognition +1407.1166 Information Theory +1407.1167 Computer Science and Game Theory +1407.1168 Differential Geometry +1407.1170 Physics and Society +1407.1171 Mesoscale and Nanoscale Physics +1407.1172 Analysis of PDEs +1407.1176 Machine Learning +1407.1178 General Topology +1407.1179 Dynamical Systems +1407.1180 Fluid Dynamics +1407.1181 Methodology +1407.1182 Analysis of PDEs +1407.1185 Analysis of PDEs +1407.1186 Probability +1407.1190 Analysis of PDEs +1407.1195 Applications +1407.1197 Numerical Analysis +1407.1198 Numerical Analysis +1407.1199 Networking and Internet Architecture +1407.1200 Statistics Theory +1407.1201 Learning +1407.1205 Numerical Analysis +1407.1208 Computer Vision and Pattern Recognition +1407.1210 Category Theory +1407.1212 Statistics Theory +1407.1213 Fluid Dynamics +1407.1215 Probability +1407.1219 Mesoscale and Nanoscale Physics +1407.1220 Analysis of PDEs +1407.1224 Probability +1407.1225 Statistics Theory +1407.1228 +1407.1229 Classical Analysis and ODEs +1407.1230 Quantum Gases +1407.1232 Information Theory +1407.1233 Statistics Theory +1407.1234 Probability +1407.1237 Distributed, Parallel, and Cluster Computing +1407.1240 Optimization and Control +1407.1241 Optimization and Control +1407.1242 Instrumentation and Methods for Astrophysics +1407.1245 Distributed, Parallel, and Cluster Computing +1407.1246 Soft Condensed Matter +1407.1247 Cosmology and Nongalactic Astrophysics +1407.1248 Analysis of PDEs +1407.1249 Differential Geometry +1407.1251 Differential Geometry +1407.1257 Software Engineering +1407.1260 Algebraic Geometry +1407.1262 Number Theory +1407.1267 Computer Vision and Pattern Recognition +1407.1268 Optimization and Control +1407.1276 Discrete Mathematics +1407.1278 Functional Analysis +1407.1283 Differential Geometry +1407.1285 Emerging Technologies +1407.1290 Number Theory +1407.1292 Earth and Planetary Astrophysics +1407.1294 Number Theory +1407.1296 Optimization and Control +1407.1297 Number Theory +1407.1298 +1407.1301 Functional Analysis +1407.1304 Strongly Correlated Electrons +1407.1307 Networking and Internet Architecture +math/0510003 Number Theory +0803.4329 Geometric Topology +0909.3654 Geometric Topology +1002.0371 Lattice +1004.0680 Probability +1009.1217 Probability +1010.5750 Soft Condensed Matter +1101.2300 Probability +1101.3198 Information Theory +1104.0315 Group Theory +1104.1515 Geometric Topology +1104.2115 Phenomenology +1105.0907 Soft Condensed Matter +1107.0410 Probability +1109.4431 Soft Condensed Matter +1109.5381 Probability +1110.2116 Experiment +1201.0369 High Energy Astrophysical Phenomena +1201.6366 Theory +1201.6477 Classical Analysis and ODEs +1202.2867 Cosmology and Nongalactic Astrophysics +1203.0975 Algebraic Geometry +1203.5706 Algebraic Geometry +1204.5604 +1205.4687 Number Theory +1207.1646 +1207.3621 +1207.6274 Algebraic Geometry +1208.1708 Geometric Topology +1209.2898 Operator Algebras +1209.3098 Probability +1209.4244 Geometric Topology +1210.2465 Phenomenology +1210.3158 Soft Condensed Matter +1210.5741 Computational Physics +1210.5867 Solar and Stellar Astrophysics +1210.7623 Dynamical Systems +1211.3038 Machine Learning +1211.4063 Optimization and Control +1211.4825 Probability +1212.2918 Symplectic Geometry +1301.0407 Dynamical Systems +1302.3746 Materials Science +1302.4423 Combinatorics +1302.7030 Algebraic Geometry +1303.3408 Logic +1303.5836 Analysis of PDEs +1303.5918 Geometric Topology +1304.4226 Cosmology and Nongalactic Astrophysics +1304.4775 General Physics +1305.0932 +1305.3223 +1305.3798 High Energy Astrophysical Phenomena +1306.5513 Information Theory +1306.5900 Numerical Analysis +1306.6040 Statistical Mechanics +1306.6245 Theory +1306.6646 Cosmology and Nongalactic Astrophysics +1307.0976 Operator Algebras +1307.1779 High Energy Astrophysical Phenomena +1307.2188 +1307.6776 Instrumentation and Detectors +1307.6994 Cosmology and Nongalactic Astrophysics +1308.0291 +1308.1084 Probability +1308.1501 Phenomenology +1308.1784 Materials Science +1308.2948 Classical Analysis and ODEs +1309.0197 High Energy Astrophysical Phenomena +1310.0016 Theory +1310.1338 Physics and Society +1310.2115 Mesoscale and Nanoscale Physics +1310.2172 Cosmology and Nongalactic Astrophysics +1310.3157 Solar and Stellar Astrophysics +1310.4329 Cosmology and Nongalactic Astrophysics +1310.7784 High Energy Astrophysical Phenomena +1311.0032 Theory +1311.1424 Logic +1311.2107 +1311.2250 Superconductivity +1311.2464 Differential Geometry +1311.5546 Phenomenology +1311.6306 Number Theory +1311.7039 Probability +1312.0046 Astrophysics of Galaxies +1312.0563 Trading and Market Microstructure +1312.0853 Classical Physics +1312.1459 Earth and Planetary Astrophysics +1312.1911 Subcellular Processes +1312.2090 Mesoscale and Nanoscale Physics +1312.2236 Strongly Correlated Electrons +1312.2956 Theory +1312.3551 Atomic Physics +1312.6379 Solar and Stellar Astrophysics +1312.6457 Cryptography and Security +1401.0257 +1401.0464 High Energy Astrophysical Phenomena +1401.1119 High Energy Astrophysical Phenomena +1401.2020 Theory +1401.2472 Optics +1401.4257 Number Theory +1401.5569 Lattice +1401.5600 Astrophysics of Galaxies +1401.5921 Distributed, Parallel, and Cluster Computing +1401.6464 Cosmology and Nongalactic Astrophysics +1401.6985 Theory +1401.7959 +1401.7982 Phenomenology +1402.0503 Strongly Correlated Electrons +1402.1964 Strongly Correlated Electrons +1402.2147 Phenomenology +1402.2410 Logic in Computer Science +1402.2542 +1402.2705 Mesoscale and Nanoscale Physics +1402.2818 Dynamical Systems +1402.3104 Classical Analysis and ODEs +1402.3823 Instrumentation and Methods for Astrophysics +1402.4075 Astrophysics of Galaxies +1402.4512 Learning +1402.4654 Strongly Correlated Electrons +1402.4831 Phenomenology +1402.4940 Probability +1402.5733 Materials Science +1402.5969 Earth and Planetary Astrophysics +1402.6145 Lattice +1402.6480 Theory +1402.6766 +1402.6867 Statistical Mechanics +1402.7003 Statistical Mechanics +1402.7173 Mesoscale and Nanoscale Physics +1403.0442 Theory +1403.1297 High Energy Astrophysical Phenomena +1403.1450 Astrophysics of Galaxies +1403.1839 Solar and Stellar Astrophysics +1403.2699 Optics +1403.3288 Mesoscale and Nanoscale Physics +1403.4272 Astrophysics of Galaxies +1403.4350 Phenomenology +1403.4703 Phenomenology +1403.5471 High Energy Astrophysical Phenomena +1403.5547 Astrophysics of Galaxies +1403.5620 +1403.5672 +1403.6193 Solar and Stellar Astrophysics +1403.6238 +1403.6274 Neural and Evolutionary Computing +1403.6477 Phenomenology +1403.7764 Theory +1403.7907 Phenomenology +1403.7949 Cosmology and Nongalactic Astrophysics +1403.8103 Lattice +1404.0304 Astrophysics of Galaxies +1404.0326 Astrophysics of Galaxies +1404.0602 +1404.1014 Instrumentation and Methods for Astrophysics +1404.1078 High Energy Astrophysical Phenomena +1404.1082 Astrophysics of Galaxies +1404.1444 +1404.2107 Astrophysics of Galaxies +1404.2113 Soft Condensed Matter +1404.2273 Cosmology and Nongalactic Astrophysics +1404.2707 Superconductivity +1404.2795 Theory +1404.3156 Soft Condensed Matter +1404.3379 Materials Science +1404.3863 High Energy Astrophysical Phenomena +1404.4619 Experiment +1404.5085 +1404.5312 Cosmology and Nongalactic Astrophysics +1404.5508 Solar and Stellar Astrophysics +1404.5797 Chemical Physics +1404.6144 Earth and Planetary Astrophysics +1404.6231 +1404.6244 Theory +1404.6525 Earth and Planetary Astrophysics +1404.6526 Astrophysics of Galaxies +1404.6562 Astrophysics of Galaxies +1404.6654 High Energy Astrophysical Phenomena +1404.6705 Phenomenology +1404.7049 Solar and Stellar Astrophysics +1404.7118 Phenomenology +1404.7413 Solar and Stellar Astrophysics +1404.7540 +1404.7744 Cosmology and Nongalactic Astrophysics +1404.7777 Mesoscale and Nanoscale Physics +1405.0221 Theory +1405.0394 Theory +1405.0821 Solar and Stellar Astrophysics +1405.0960 Earth and Planetary Astrophysics +1405.1084 Solar and Stellar Astrophysics +1405.1199 Phenomenology +1405.1711 Astrophysics of Galaxies +1405.1860 Cosmology and Nongalactic Astrophysics +1405.1960 Solar and Stellar Astrophysics +1405.1986 Earth and Planetary Astrophysics +1405.2198 Solar and Stellar Astrophysics +1405.2645 Astrophysics of Galaxies +1405.2744 +1405.2797 Experiment +1405.2887 Solar and Stellar Astrophysics +1405.3114 High Energy Astrophysical Phenomena +1405.3259 +1405.3442 Astrophysics of Galaxies +1405.3519 Superconductivity +1405.3669 Molecular Networks +1405.3789 Theory +1405.4109 Materials Science +1405.4216 High Energy Astrophysical Phenomena +1405.4381 Mesoscale and Nanoscale Physics +1405.4483 +1405.4494 Astrophysics of Galaxies +1405.4517 Solar and Stellar Astrophysics +1405.4639 Solar and Stellar Astrophysics +1405.4669 Solar and Stellar Astrophysics +1405.4756 Quantum Gases +1405.4761 Astrophysics of Galaxies +1405.4762 Phenomenology +1405.5049 +1405.5222 Astrophysics of Galaxies +1405.5374 Solar and Stellar Astrophysics +1405.5539 Strongly Correlated Electrons +1405.5564 High Energy Astrophysical Phenomena +1405.5778 Astrophysics of Galaxies +1405.5836 Astrophysics of Galaxies +1405.5837 Mesoscale and Nanoscale Physics +1405.5884 Astrophysics of Galaxies +1405.6074 High Energy Astrophysical Phenomena +1405.6396 +1405.6543 Solar and Stellar Astrophysics +1405.6586 Solar and Stellar Astrophysics +1405.6596 Analysis of PDEs +1405.6988 Solar and Stellar Astrophysics +1405.7266 Solar and Stellar Astrophysics +1405.7312 High Energy Astrophysical Phenomena +1405.7365 Theory +1405.7373 Phenomenology +1405.7396 High Energy Astrophysical Phenomena +1405.7602 +1405.7649 Astrophysics of Galaxies +1405.7692 Solar and Stellar Astrophysics +1405.7706 Astrophysics of Galaxies +1405.7814 Astrophysics of Galaxies +1406.0006 Solar and Stellar Astrophysics +1406.0493 Solar and Stellar Astrophysics +1406.0529 +1406.0540 Solar and Stellar Astrophysics +1406.0575 Cosmology and Nongalactic Astrophysics +1406.0612 Solar and Stellar Astrophysics +1406.0647 Robotics +1406.0697 Solar and Stellar Astrophysics +1406.0856 Astrophysics of Galaxies +1406.0870 Earth and Planetary Astrophysics +1406.0892 Solar and Stellar Astrophysics +1406.1005 Solar and Stellar Astrophysics +1406.1064 +1406.1147 +1406.1270 Earth and Planetary Astrophysics +1406.1288 Solar and Stellar Astrophysics +1406.1345 Solar and Stellar Astrophysics +1406.1428 Solar and Stellar Astrophysics +1406.1552 Astrophysics of Galaxies +1406.1651 Cosmology and Nongalactic Astrophysics +1406.1801 Solar and Stellar Astrophysics +1406.2224 Astrophysics of Galaxies +1406.2323 Solar and Stellar Astrophysics +1406.2332 Phenomenology +1406.2548 Solar and Stellar Astrophysics +1406.2604 Astrophysics of Galaxies +1406.2620 Solar and Stellar Astrophysics +1406.3037 Astrophysics of Galaxies +1406.3052 Astrophysics of Galaxies +1406.3676 Computation and Language +1406.3805 Solar and Stellar Astrophysics +1406.3841 Astrophysics of Galaxies +1406.3902 Astrophysics of Galaxies +1406.3936 Solar and Stellar Astrophysics +1406.3952 Theory +1406.3961 Astrophysics of Galaxies +1406.4234 Instrumentation and Methods for Astrophysics +1406.4273 Phenomenology +1406.4319 Solar and Stellar Astrophysics +1406.4514 High Energy Astrophysical Phenomena +1406.4688 Solar and Stellar Astrophysics +1406.4743 Solar and Stellar Astrophysics +1406.4859 Astrophysics of Galaxies +1406.5066 Solar and Stellar Astrophysics +1406.5070 Statistical Mechanics +1406.5110 Astrophysics of Galaxies +1406.5218 Solar and Stellar Astrophysics +1406.5302 +1406.5320 Solar and Stellar Astrophysics +1406.5328 Solar and Stellar Astrophysics +1406.5335 Solar and Stellar Astrophysics +1406.5475 Differential Geometry +1406.5508 Astrophysics of Galaxies +1406.5510 +1406.5578 Cosmology and Nongalactic Astrophysics +1406.5717 Astrophysics of Galaxies +1406.5741 Astrophysics of Galaxies +1406.5871 Solar and Stellar Astrophysics +1406.5874 Cosmology and Nongalactic Astrophysics +1406.5972 High Energy Astrophysical Phenomena +1406.6068 High Energy Astrophysical Phenomena +1406.6127 Solar and Stellar Astrophysics +1406.6196 Solar and Stellar Astrophysics +1406.6220 Earth and Planetary Astrophysics +1406.6267 Astrophysics of Galaxies +1406.6302 Astrophysics of Galaxies +1406.6564 Solar and Stellar Astrophysics +1406.6686 Solar and Stellar Astrophysics +1406.6777 Quantum Gases +1406.6819 Quantum Gases +1406.6955 +1406.7005 Phenomenology +1406.7013 Phenomenology +1406.7018 Phenomenology +1406.7171 Phenomenology +1406.7244 Astrophysics of Galaxies +1406.7354 Solar and Stellar Astrophysics +1406.7387 Solar and Stellar Astrophysics +1406.7448 Earth and Planetary Astrophysics +1406.7785 Instrumentation and Methods for Astrophysics +1406.7818 Astrophysics of Galaxies +1407.0182 Mesoscale and Nanoscale Physics +1407.0193 Astrophysics of Galaxies +1407.0205 Astrophysics of Galaxies +1407.0251 Earth and Planetary Astrophysics +1407.0267 Solar and Stellar Astrophysics +1407.0300 High Energy Astrophysical Phenomena +1407.0391 Solar and Stellar Astrophysics +1407.0502 Mesoscale and Nanoscale Physics +1407.0553 Earth and Planetary Astrophysics +1407.0555 Exactly Solvable and Integrable Systems +1407.0712 Earth and Planetary Astrophysics +1407.0925 Instrumentation and Methods for Astrophysics +1407.0993 Phenomenology +1407.1017 Solar and Stellar Astrophysics +1407.1084 Instrumentation and Methods for Astrophysics +1407.1202 Solar and Stellar Astrophysics +1407.1312 Astrophysics of Galaxies +1407.1444 Astrophysics of Galaxies +1407.1797 Phenomenology +1407.1823 Astrophysics of Galaxies +1407.2055 Astrophysics of Galaxies +1407.2066 Earth and Planetary Astrophysics +1407.2093 Astrophysics of Galaxies +1407.2374 Soft Condensed Matter +1407.2453 Probability +1407.2527 Instrumentation and Methods for Astrophysics +1407.2556 Phenomenology +1407.2849 Solar and Stellar Astrophysics +1407.2909 +1407.2994 Strongly Correlated Electrons +1407.3001 Phenomenology +1407.3301 Solar and Stellar Astrophysics +1407.3707 High Energy Astrophysical Phenomena +1407.3979 Astrophysics of Galaxies +1407.4001 Earth and Planetary Astrophysics +1407.4128 Theory +1407.4210 High Energy Astrophysical Phenomena +1407.4385 Solar and Stellar Astrophysics +1407.4595 Number Theory +1407.4599 Earth and Planetary Astrophysics +1407.4662 Solar and Stellar Astrophysics +1407.4804 Solar and Stellar Astrophysics +1407.5110 Analysis of PDEs +1407.5680 Astrophysics of Galaxies +1407.5682 +1407.5836 Astrophysics of Galaxies +1407.6157 Solar and Stellar Astrophysics +1407.6193 High Energy Astrophysical Phenomena +1407.6573 +1407.6575 Solar and Stellar Astrophysics +1407.6998 Astrophysics of Galaxies +1407.7016 Earth and Planetary Astrophysics +1407.7127 +1407.7149 +1407.7479 Methodology +1407.7608 Theory +1407.7769 Solar and Stellar Astrophysics +1407.7847 Solar and Stellar Astrophysics +1407.8397 Solar and Stellar Astrophysics +1407.8425 Solar and Stellar Astrophysics +1408.0036 High Energy Astrophysical Phenomena +1408.0128 Optics +1408.0665 Superconductivity +1408.0679 Cosmology and Nongalactic Astrophysics +1408.1528 Earth and Planetary Astrophysics +1408.1850 High Energy Astrophysical Phenomena +1408.3300 Computer Vision and Pattern Recognition +1408.3377 Solar and Stellar Astrophysics +1408.4047 Analysis of PDEs +1408.4912 Populations and Evolution +1408.5114 Experiment +1408.5198 Medical Physics +1408.6012 Social and Information Networks +1408.6878 Computer Science and Game Theory +1408.7014 Number Theory +1409.0079 Networking and Internet Architecture +1409.0289 Information Theory +1409.0486 Exactly Solvable and Integrable Systems +1409.0522 +1409.0741 Algebraic Geometry +1409.0843 Strongly Correlated Electrons +1409.0933 Differential Geometry +1409.0970 Mesoscale and Nanoscale Physics +1409.0988 Networking and Internet Architecture +1409.1068 Experiment +1409.1146 Instrumentation and Detectors +1409.1243 Materials Science +1409.1245 Theory +1409.1246 Materials Science +1409.1253 Computational Physics +1409.1255 Analysis of PDEs +1409.1260 History and Overview +1409.1264 Geophysics +1409.1266 Astrophysics of Galaxies +1409.1269 Materials Science +1409.1270 Optics +1409.1272 Information Theory +1409.1274 Astrophysics of Galaxies +1409.1278 Combinatorics +1409.1279 Analysis of PDEs +1409.1280 Mesoscale and Nanoscale Physics +1409.1281 Algebraic Topology +1409.1284 Digital Libraries +1409.1287 Superconductivity +1409.1288 Optimization and Control +1409.1292 Databases +1409.1298 Instrumentation and Detectors +1409.1299 Mesoscale and Nanoscale Physics +1409.1300 Information Theory +1409.1302 Number Theory +1409.1307 Popular Physics +1409.1310 Strongly Correlated Electrons +1409.1311 Complex Variables +1409.1312 Representation Theory +1409.1313 Number Theory +1409.1316 +1409.1317 Combinatorics +1409.1318 Phenomenology +1409.1319 Commutative Algebra +1409.1324 Materials Science +1409.1329 Operator Algebras +1409.1331 Statistics Theory +1409.1342 Operator Algebras +1409.1343 Operator Algebras +1409.1345 Algebraic Geometry +1409.1347 Cosmology and Nongalactic Astrophysics +1409.1348 Discrete Mathematics +1409.1350 Materials Science +1409.1357 Information Retrieval +1409.1360 Applications +1409.1364 +1409.1365 Information Theory +1409.1367 Representation Theory +1409.1371 Materials Science +1409.1372 Information Theory +1409.1376 Optimization and Control +1409.1380 Plasma Physics +1409.1382 Complex Variables +1409.1388 Statistics Theory +1409.1391 +1409.1403 Machine Learning +1409.1404 Fluid Dynamics +1409.1411 Computer Vision and Pattern Recognition +1409.1412 Networking and Internet Architecture +1409.1414 Representation Theory +1409.1415 Networking and Internet Architecture +1409.1417 Soft Condensed Matter +1409.1418 Dynamical Systems +1409.1423 Complex Variables +1409.1431 Quantitative Methods +1409.1432 Combinatorics +1409.1435 Phenomenology +1409.1437 Information Theory +1409.1438 Superconductivity +1409.1441 Trading and Market Microstructure +1409.1442 Trading and Market Microstructure +1409.1448 Soft Condensed Matter +1409.1451 Risk Management +1409.1452 +1409.1453 Rings and Algebras +1409.1454 Analysis of PDEs +1409.1455 Robotics +1409.1466 Discrete Mathematics +1409.1467 Information Theory +1409.1468 +1409.1471 Combinatorics +1409.1477 +1409.1478 Dynamical Systems +1409.1480 +1409.1481 Combinatorics +1409.1482 +1409.1490 Geometric Topology +1409.1506 Algebraic Geometry +1409.1510 Distributed, Parallel, and Cluster Computing +1409.1511 Number Theory +1409.1512 +1409.1513 Information Theory +1409.1514 Cosmology and Nongalactic Astrophysics +1409.1517 Phenomenology +1409.1518 Analysis of PDEs +1409.1520 Analysis of PDEs +1409.1527 Numerical Analysis +1409.1530 Combinatorics +1409.1531 Logic +1409.1533 Networking and Internet Architecture +1409.1534 Algebraic Geometry +1409.1537 Superconductivity +1409.1542 Quantitative Methods +1409.1545 Phenomenology +1409.1548 Mesoscale and Nanoscale Physics +1409.1549 Operator Algebras +1409.1551 Information Theory +1409.1554 Phenomenology +1409.1557 Phenomenology +1409.1559 Differential Geometry +1409.1560 Populations and Evolution +1409.1566 Cosmology and Nongalactic Astrophysics +math/0602023 Geometric Topology +q-alg/9610029 Quantum Algebra +0704.3864 Rings and Algebras +0810.2102 General Mathematics +0812.2625 Rings and Algebras +0905.4046 Metric Geometry +1005.2347 Group Theory +1005.4096 +1008.4825 Logic +1009.4681 Functional Analysis +1103.3160 Chaotic Dynamics +1105.4284 Rings and Algebras +1105.4593 Discrete Mathematics +1207.1470 Operator Algebras +1208.5755 Methodology +1210.7045 Fluid Dynamics +1210.7695 Theory +1211.0349 Molecular Networks +1211.6349 General Finance +1212.3200 Rings and Algebras +1301.5632 Rings and Algebras +1303.3231 Rings and Algebras +1306.3437 Optimization and Control +1306.5556 Classical Analysis and ODEs +1307.3320 Materials Science +1308.5932 +1308.6184 Theory +1309.1079 Strongly Correlated Electrons +1309.1614 Lattice +1309.2200 Combinatorics +1309.2490 Group Theory +1309.4627 Exactly Solvable and Integrable Systems +1309.5417 Number Theory +1309.6736 +1310.3403 Methodology +1310.4324 Dynamical Systems +1311.0341 Rings and Algebras +1311.0782 Quantum Algebra +1311.3603 Optics +1311.5066 Statistics Theory +1311.6746 Phenomenology +1312.0717 Mesoscale and Nanoscale Physics +1312.0764 Strongly Correlated Electrons +1312.0862 Biological Physics +1312.7391 Rings and Algebras +1401.5202 Theory +1401.7535 Social and Information Networks +1402.1189 Phenomenology +1402.6562 +1403.3073 Algebraic Geometry +1403.4218 Experiment +1403.5574 Superconductivity +1403.6396 +1403.6471 Theory +1404.0430 Algebraic Geometry +1404.1701 Cosmology and Nongalactic Astrophysics +1404.3433 Phenomenology +1404.3464 Superconductivity +1404.4826 Quantum Gases +1404.6349 Solar and Stellar Astrophysics +1404.6880 +1404.7076 Computer Science and Game Theory +1404.7139 Phenomenology +1404.7622 Strongly Correlated Electrons +1404.7679 Chaotic Dynamics +1405.0679 Phenomenology +1405.1133 Data Structures and Algorithms +1405.1334 Theory +1405.1962 Mesoscale and Nanoscale Physics +1405.2452 Computer Science and Game Theory +1405.5622 Combinatorics +1405.6019 Theory +1405.6069 Number Theory +1405.6244 Theory +1406.1678 Biological Physics +1406.2491 Materials Science +1406.2972 Phenomenology +1406.3767 Combinatorics +1406.5142 +1406.5160 +1406.5729 Strongly Correlated Electrons +1407.1732 Astrophysics of Galaxies +1407.2124 +1407.2163 +1407.4233 Astrophysics of Galaxies +1407.4698 Instrumentation and Methods for Astrophysics +1407.8018 Earth and Planetary Astrophysics +1408.0397 +1408.1900 Mathematical Software +1408.2206 Number Theory +1408.2412 +1408.2552 Populations and Evolution +1408.2609 Astrophysics of Galaxies +1408.2673 Symplectic Geometry +1408.2802 Optics +1408.2803 Learning +1408.2824 Cryptography and Security +1408.2836 +1408.2840 +1408.2842 Formal Languages and Automata Theory +1408.2845 Logic +1408.2846 Category Theory +1408.2847 Instrumentation and Methods for Astrophysics +1408.2848 Instrumentation and Methods for Astrophysics +1408.2849 Instrumentation and Methods for Astrophysics +1408.2850 Logic +1408.2851 Logic +1408.2852 Human-Computer Interaction +1408.2853 Instrumentation and Methods for Astrophysics +1408.2856 Cosmology and Nongalactic Astrophysics +1408.2857 Logic +1408.2859 General Finance +1408.2862 Logic +1408.2863 Populations and Evolution +1408.2864 Phenomenology +1408.2865 Phenomenology +1408.2868 Superconductivity +1408.2869 Learning +1408.2871 Social and Information Networks +1408.2875 Logic +1408.2878 K-Theory and Homology +1408.2881 Logic +1408.2883 Logic +1408.2884 +1408.2889 Learning +1408.2890 Learning +1408.2893 Logic +1408.2896 Logic +1408.2897 Logic +1408.2898 Logic +1408.2900 +1408.2909 Analysis of PDEs +1408.2910 Networking and Internet Architecture +1408.2913 Strongly Correlated Electrons +1408.2916 Space Physics +1408.2927 Data Structures and Algorithms +1408.2928 Mesoscale and Nanoscale Physics +1408.2931 Dynamical Systems +1408.2932 Analysis of PDEs +1408.2933 Robotics +1408.2935 Combinatorics +1408.2937 Dynamical Systems +1408.2938 Computer Vision and Pattern Recognition +1408.2940 Numerical Analysis +1408.2943 Networking and Internet Architecture +1408.2948 Networking and Internet Architecture +1408.2951 Statistics Theory +1408.2957 Dynamical Systems +1408.2963 Adaptation and Self-Organizing Systems +1408.2965 +1408.2967 Rings and Algebras +1408.2969 Software Engineering +1408.2971 Materials Science +1408.2974 Soft Condensed Matter +1408.2975 +1408.2976 Statistical Mechanics +1408.2977 Combinatorics +1408.2979 Materials Science +1408.2987 Number Theory +1408.2992 Probability +1408.2997 Computer Vision and Pattern Recognition +1408.3001 +1408.3002 Artificial Intelligence +1408.3003 Phenomenology +1408.3004 Cosmology and Nongalactic Astrophysics +1408.3009 Representation Theory +1408.3016 Probability +1408.3017 Metric Geometry +1408.3021 Analysis of PDEs +1408.3022 Space Physics +1408.3023 Analysis of PDEs +1408.3026 Mesoscale and Nanoscale Physics +1408.3027 Methodology +1408.3029 Metric Geometry +1408.3033 Distributed, Parallel, and Cluster Computing +1408.3037 +1408.3039 Instrumentation and Methods for Astrophysics +1408.3046 Information Theory +1408.3056 +1408.3060 Learning +1408.3066 Instrumentation and Methods for Astrophysics +1408.3068 Solar and Stellar Astrophysics +1408.3071 Astrophysics of Galaxies +1408.3073 +1408.3075 Differential Geometry +1408.3077 Superconductivity +1408.3079 Networking and Internet Architecture +1408.3081 Learning +1408.3083 Information Theory +1408.3086 Risk Management +1408.3092 Machine Learning +1408.3095 +1408.3096 Solar and Stellar Astrophysics +1408.3097 +1408.3099 Superconductivity +1408.3100 +1408.3101 Neurons and Cognition +1408.3102 +0804.1025 Strongly Correlated Electrons +0804.1032 Dynamical Systems +0810.1615 +0810.3559 Strongly Correlated Electrons +0903.3211 Algebraic Geometry +0905.0355 Analysis of PDEs +0911.1367 +0911.4362 +0911.5429 +1004.3492 +1005.5307 Theory +1006.2534 Software Engineering +1008.0190 Algebraic Geometry +1009.1375 General Physics +1010.0131 Probability +1011.1467 Biological Physics +1102.2147 Complex Variables +1102.3208 +1103.1566 Atomic Physics +1103.5435 +1103.5588 +1105.4374 Complex Variables +1106.2939 Strongly Correlated Electrons +1108.5364 Methodology +1109.0954 +1109.1137 +1109.4848 Symplectic Geometry +1110.1868 Atomic Physics +1111.1040 Number Theory +1111.1251 Combinatorics +1111.6227 Dynamical Systems +1202.2556 +1202.5779 +1203.2694 Number Theory +1203.2727 Combinatorics +1204.0272 Classical Analysis and ODEs +1204.1447 High Energy Astrophysical Phenomena +1207.4013 Algebraic Geometry +1208.5667 Fluid Dynamics +1209.3456 Populations and Evolution +1209.4140 Number Theory +1209.4321 Materials Science +1209.5462 Numerical Analysis +1210.1807 Plasma Physics +1210.2549 Strongly Correlated Electrons +1210.2652 Functional Analysis +1210.2815 Multimedia +1210.3793 Instrumentation and Detectors +1211.1020 Theory +1211.1727 Number Theory +1211.4187 Mesoscale and Nanoscale Physics +1211.4401 Category Theory +1211.5031 Data Structures and Algorithms +1211.6278 Analysis of PDEs +1212.5375 Combinatorics +1301.2870 Algebraic Geometry +1301.3469 Materials Science +1301.3656 Functional Analysis +1301.5236 Quantum Gases +1302.1797 +1302.3287 Plasma Physics +1302.5391 Combinatorics +1303.0012 Strongly Correlated Electrons +1303.1769 Analysis of PDEs +1303.3050 Cosmology and Nongalactic Astrophysics +1303.5329 +1303.6043 +1303.6797 Probability +1304.2629 Geometric Topology +1304.3775 Combinatorics +1304.4132 Combinatorics +1304.4628 High Energy Astrophysical Phenomena +1304.5667 Combinatorics +1304.6535 Atmospheric and Oceanic Physics +1304.7064 Atomic Physics +1305.1216 Digital Libraries +1305.3309 Fluid Dynamics +1305.4151 Strongly Correlated Electrons +1305.4526 +1305.4594 Quantum Gases +1305.5152 Phenomenology +1305.5259 Theory +1305.5780 Analysis of PDEs +1305.6246 Optics +1305.6778 Algebraic Geometry +1306.0241 Atomic Physics +1306.3161 Machine Learning +1306.3923 Probability +1306.4651 Mesoscale and Nanoscale Physics +1306.4996 Statistical Mechanics +1306.5433 Analysis of PDEs +1306.5680 Theory +1306.6326 Mesoscale and Nanoscale Physics +1306.6537 Theory +1306.6639 Mesoscale and Nanoscale Physics +1307.0886 Chemical Physics +1307.1123 Probability +1307.2480 +1307.3081 Strongly Correlated Electrons +1307.4280 Instrumentation and Detectors +1307.4341 Phenomenology +1307.5219 Mesoscale and Nanoscale Physics +1307.5358 Mesoscale and Nanoscale Physics +1307.5676 Probability +1307.5930 +1307.5961 Materials Science +1307.6084 Commutative Algebra +1307.7253 Probability +1307.7845 Superconductivity +1307.8404 Rings and Algebras +1308.0708 +1308.1201 Systems and Control +1308.1324 Logic +1308.1834 Materials Science +1308.1967 +1308.2131 Mesoscale and Nanoscale Physics +1308.2855 Plasma Physics +1308.3386 +1308.3774 Theory +1308.4239 +1308.4694 Combinatorics +1308.4853 +1308.5533 General Physics +1308.6514 Dynamical Systems +1308.6725 Optics +1309.0412 Materials Science +1309.1103 +1309.2066 Materials Science +1309.2545 Optimization and Control +1309.4300 +1309.4851 Algebraic Geometry +1309.5015 Phenomenology +1309.5343 Theory +1309.7526 Classical Analysis and ODEs +1310.0102 +1310.0304 Differential Geometry +1310.0969 Mesoscale and Nanoscale Physics +1310.1950 Functional Analysis +1310.2228 Plasma Physics +1310.2326 Plasma Physics +1310.3710 Superconductivity +1310.3829 Quantum Gases +1310.4861 Fluid Dynamics +1310.5680 +1310.5779 Combinatorics +1310.6091 Combinatorics +1310.6887 Optimization and Control +1310.6947 +1310.7336 +1310.7533 Geometric Topology +1310.8042 Phenomenology +1310.8062 Data Structures and Algorithms +1311.0474 Materials Science +1311.0542 Analysis of PDEs +1311.0747 Phenomenology +1311.2167 Computational Engineering, Finance, and Science +1311.2693 +1311.4263 Materials Science +1311.5570 Solar and Stellar Astrophysics +1311.5993 Phenomenology +1311.6587 Mesoscale and Nanoscale Physics +1311.6724 Experiment +1311.7112 Cosmology and Nongalactic Astrophysics +1311.7596 High Energy Astrophysical Phenomena +1312.3057 +1312.4483 +1312.4917 Numerical Analysis +1312.4933 Probability +1312.5799 Optimization and Control +1312.6407 Methodology +1312.6441 Superconductivity +1312.6637 Strongly Correlated Electrons +1312.7291 Instrumentation and Detectors +1401.0090 +1401.1074 +1401.1335 Group Theory +1401.1438 Representation Theory +1401.2176 Lattice +1401.4829 Numerical Analysis +1401.4881 +1401.5472 Astrophysics of Galaxies +1401.5719 Mesoscale and Nanoscale Physics +1401.6093 +1401.6183 Instrumentation and Methods for Astrophysics +1401.6747 Phenomenology +1401.7133 Strongly Correlated Electrons +1402.0019 Theory +1402.1764 Cosmology and Nongalactic Astrophysics +1402.2064 Combinatorics +1402.2109 Algebraic Geometry +1402.3018 Combinatorics +1402.3603 Materials Science +1402.3848 Theory +1402.3860 Group Theory +1402.3881 Combinatorics +1402.4648 Neurons and Cognition +1402.4911 Analysis of PDEs +1402.5046 Functional Analysis +1402.5139 Fluid Dynamics +1402.5954 Solar and Stellar Astrophysics +1402.6038 K-Theory and Homology +1402.6731 +1402.7008 Symplectic Geometry +1402.7244 Earth and Planetary Astrophysics +1402.7249 +1403.0001 Networking and Internet Architecture +1403.0013 Geophysics +1403.0016 +1403.0029 Soft Condensed Matter +1403.0036 Artificial Intelligence +1403.0042 Analysis of PDEs +1403.0045 Metric Geometry +1403.0047 Quantum Gases +1403.0052 Computation and Language +1403.0053 Classical Analysis and ODEs +1403.0060 Statistics Theory +1403.0062 Computational Geometry +1403.0063 Representation Theory +1403.0066 Mesoscale and Nanoscale Physics +1403.0068 Information Retrieval +1403.0078 Classical Analysis and ODEs +1403.0087 Computer Vision and Pattern Recognition +1403.0088 Combinatorics +1403.0089 Probability +1403.0093 Systems and Control +1403.0099 Data Structures and Algorithms +1403.0100 Software Engineering +1403.0101 Biological Physics +1403.0102 Chaotic Dynamics +1403.0111 Dynamical Systems +1403.0118 Mesoscale and Nanoscale Physics +1403.0123 Algebraic Geometry +1403.0125 Algebraic Geometry +1403.0126 Algebraic Geometry +1403.0131 Materials Science +1403.0134 Optics +1403.0135 Computational Engineering, Finance, and Science +1403.0145 +1403.0153 Information Theory +1403.0154 Statistics Theory +1403.0156 Learning +1403.0157 Learning +1403.0162 Computer Science and Game Theory +1403.0165 Analysis of PDEs +1403.0168 Earth and Planetary Astrophysics +1403.0169 Exactly Solvable and Integrable Systems +1403.0173 Networking and Internet Architecture +1403.0175 Spectral Theory +1403.0179 Analysis of PDEs +1403.0180 Geometric Topology +1403.0181 Theory +1403.0182 Differential Geometry +1403.0183 Optics +1403.0187 Fluid Dynamics +1403.0189 Classical Analysis and ODEs +1403.0193 Cellular Automata and Lattice Gases +1403.0198 Theory +1403.0199 Analysis of PDEs +1403.0201 Methodology +1403.0202 Portfolio Management +1403.0204 +1403.0205 Operator Algebras +1403.0208 Strongly Correlated Electrons +1403.0209 Geometric Topology +1403.0211 Computation +1403.0214 Information Theory +1403.0217 Statistics Theory +1403.0220 Probability +1403.0224 Data Structures and Algorithms +1403.0230 Databases +1403.0233 Combinatorics +1403.0237 Materials Science +1403.0238 Dynamical Systems +1403.0240 Computer Vision and Pattern Recognition +1403.0243 +1403.0246 Metric Geometry +1403.0248 Fluid Dynamics +1403.0250 Combinatorics +1403.0251 Metric Geometry +1403.0252 Data Structures and Algorithms +1403.0257 Functional Analysis +1403.0258 Systems and Control +1403.0259 Information Theory +1403.0266 Complex Variables +1403.0271 +1403.0277 Numerical Analysis +1403.0281 Physics Education +1403.0282 Cryptography and Security +1403.0291 Probability +1403.0297 Cryptography and Security +1403.0299 Differential Geometry +1403.0304 History and Philosophy of Physics +1403.0306 Computational Engineering, Finance, and Science +1403.0307 Computational Engineering, Finance, and Science +1403.0313 +1403.0316 Computer Vision and Pattern Recognition +1403.0319 Differential Geometry +1403.0321 Chaotic Dynamics +1403.0322 Differential Geometry +1403.0329 Statistics Theory +1403.0331 Group Theory +1403.0334 Operating Systems +1403.0335 Operating Systems +1403.0336 Chemical Physics +1403.0337 +1403.0338 Networking and Internet Architecture +1403.0342 Combinatorics +1403.0350 Symplectic Geometry +1403.0354 Information Theory +1403.0355 Information Theory +1403.0356 Analysis of PDEs +1403.0359 Discrete Mathematics +1403.0361 Dynamical Systems +1403.0368 +1403.0372 Functional Analysis +1403.0373 Instrumentation and Detectors +1403.0375 Complex Variables +1403.0377 Metric Geometry +1403.0384 +1403.0385 Rings and Algebras +1403.0386 Probability +1403.0387 Computation +1403.0390 Earth and Planetary Astrophysics +1403.0391 Materials Science +1403.0392 Dynamical Systems +1403.0394 Disordered Systems and Neural Networks +1403.0395 +1403.0396 Earth and Planetary Astrophysics +1403.0397 Probability +1403.0400 Optics +1403.0407 Numerical Analysis +1403.0412 Phenomenology +1403.0414 Atomic Physics +1403.0417 Computational Complexity +1403.0421 Soft Condensed Matter +1403.0429 Multiagent Systems +1403.0435 Number Theory +1403.0439 Cryptography and Security +1403.0440 Phenomenology +1403.0443 Analysis of PDEs +1403.0444 Dynamical Systems +1403.0451 Instrumentation and Detectors +1403.0456 Disordered Systems and Neural Networks +1403.0462 +1403.0468 Dynamical Systems +1403.0469 +1403.0470 +1403.0472 Populations and Evolution +1403.0473 Combinatorics +1403.0477 Classical Analysis and ODEs +1403.0478 Metric Geometry +1403.0479 Combinatorics +1403.0480 +1403.0481 Learning +1403.0485 Computer Vision and Pattern Recognition +1403.0490 Mesoscale and Nanoscale Physics +1403.0493 Data Structures and Algorithms +1403.0495 Materials Science +1403.0500 Distributed, Parallel, and Cluster Computing +1403.0503 Networking and Internet Architecture +1403.0508 Optics +1403.0509 Formal Languages and Automata Theory +1403.0512 +1403.0514 Rings and Algebras +1403.0515 Optimization and Control +1403.0519 Combinatorics +1403.0522 Artificial Intelligence +1403.0523 Functional Analysis +1403.0530 Networking and Internet Architecture +1403.0531 Computation and Language +1403.0532 Computation +1403.0534 K-Theory and Homology +1403.0535 Combinatorics +1403.0540 Quantum Algebra +1403.0541 Artificial Intelligence +1403.0546 Astrophysics of Galaxies +1403.0548 Algebraic Geometry +1403.0556 +1403.0557 Classical Physics +math/0110296 Probability +math/0406610 Number Theory +math/0607025 Algebraic Geometry +math/0701297 Algebraic Geometry +math/0703840 Rings and Algebras +1303.6926 Computer Vision and Pattern Recognition +1402.6859 Learning +0705.1647 Statistical Mechanics +0812.2129 Probability +1003.5000 Spectral Theory +1007.0265 Algebraic Geometry +1007.1939 Symplectic Geometry +1009.2811 +1011.4641 +1102.0031 Group Theory +1106.5176 Number Theory +1109.5632 Algebraic Geometry +1110.1847 Solar and Stellar Astrophysics +1111.3032 Algebraic Geometry +1111.6110 Statistics Theory +1112.4446 Representation Theory +1201.1191 Probability +1201.1536 Functional Analysis +1201.5127 Cosmology and Nongalactic Astrophysics +1204.2409 Cosmology and Nongalactic Astrophysics +1204.3529 Computational Complexity +1204.4355 Number Theory +1205.5386 +1205.6156 Theory +1208.3797 Mesoscale and Nanoscale Physics +1208.4200 +1208.5414 Representation Theory +1208.5418 Representation Theory +1208.6420 Dynamical Systems +1209.0639 Differential Geometry +1209.2952 Solar and Stellar Astrophysics +1210.1075 Probability +1210.2422 Experiment +1210.3209 Phenomenology +1210.8115 Experiment +1211.0451 Algebraic Geometry +1211.2166 +1211.2778 +1211.5891 Chemical Physics +1211.6077 Algebraic Geometry +1211.7311 +1212.1691 +1212.2422 +1212.3830 Chemical Physics +1212.5378 Optimization and Control +1301.3070 +1301.3688 Theory +1301.5190 Geometric Topology +1301.5291 Pattern Formation and Solitons +1301.5534 +1301.5889 Combinatorics +1301.7335 Strongly Correlated Electrons +1302.0724 +1302.4196 Analysis of PDEs +1302.5613 Complex Variables +1303.1266 +1303.2406 +1303.4418 Geometric Topology +1303.4951 Analysis of PDEs +1303.5305 Computational Complexity +1303.5338 Experiment +1303.6246 Differential Geometry +1304.5762 Representation Theory +1304.6387 Superconductivity +1304.6398 Earth and Planetary Astrophysics +1304.6742 Physics and Society +1304.6916 Functional Analysis +1304.7943 Materials Science +1305.1258 Experiment +1305.4169 Strongly Correlated Electrons +1305.5199 Instrumentation and Detectors +1305.5384 +1305.7021 Phenomenology +1305.7097 Quantum Algebra +1305.7506 +1306.3459 +1306.6905 Instrumentation and Detectors +1306.6932 Cosmology and Nongalactic Astrophysics +1307.0134 Instrumentation and Detectors +1307.0157 History and Overview +1307.0786 Theory +1307.1222 Optimization and Control +1307.1771 Algebraic Geometry +1307.1808 Phenomenology +1307.2263 Theory +1307.2281 +1307.5396 Methodology +1307.5756 Networking and Internet Architecture +1307.6950 +1307.8395 Number Theory +1308.0289 Theory +1308.0305 Solar and Stellar Astrophysics +1308.2424 Mesoscale and Nanoscale Physics +1308.2874 Cosmology and Nongalactic Astrophysics +1308.3871 K-Theory and Homology +1308.3994 Analysis of PDEs +1308.4138 Phenomenology +1308.4224 Dynamical Systems +1308.4803 Number Theory +1308.5176 +1308.6009 Cosmology and Nongalactic Astrophysics +1309.0450 Algebraic Geometry +1309.2030 Experiment +1309.2640 Theory +1309.3968 Phenomenology +1309.4681 Phenomenology +1309.5093 Theory +1309.5543 Probability +1309.6128 Mesoscale and Nanoscale Physics +1309.6574 Theory +1309.6731 Combinatorics +1309.6794 Theory +1309.7019 Number Theory +1309.7094 Quantum Algebra +1309.7200 Statistical Mechanics +1309.7766 Numerical Analysis +1309.7878 +1309.7902 Instrumentation and Detectors +1310.0367 Theory +1310.2674 Strongly Correlated Electrons +1310.2811 Statistical Mechanics +1310.2839 Phenomenology +1310.2957 +1310.3750 +1310.3853 Phenomenology +1310.3886 Cosmology and Nongalactic Astrophysics +1310.5224 Phenomenology +1310.5783 Instrumentation and Detectors +1310.6097 Strongly Correlated Electrons +1310.7070 +1310.7639 Quantum Gases +1310.7925 Strongly Correlated Electrons +1310.8214 Cosmology and Nongalactic Astrophysics +1311.0180 Mesoscale and Nanoscale Physics +1311.1810 Phenomenology +1311.2066 Phenomenology +1311.2186 Analysis of PDEs +1311.2565 +1311.2591 Phenomenology +1311.2687 Strongly Correlated Electrons +1311.2730 Quantum Algebra +1311.3390 +1311.4158 Computer Vision and Pattern Recognition +1311.4732 Phenomenology +1311.4982 Instrumentation and Detectors +1311.6298 Statistical Mechanics +1311.6422 +1311.6455 Numerical Analysis +1311.6491 Theory +1311.7330 Mesoscale and Nanoscale Physics +1312.0056 Experiment +1312.0739 Theory +1312.0780 Superconductivity +1312.0826 Theory +1312.1276 Instrumentation and Detectors +1312.1435 Mesoscale and Nanoscale Physics +1312.1551 Quantum Gases +1312.2117 Geometric Topology +1312.3484 Quantum Gases +1312.3539 +1312.3681 Other Computer Science +1312.3899 Atomic Physics +1312.4781 Mesoscale and Nanoscale Physics +1312.4871 Chemical Physics +1312.5205 +1312.5622 Data Analysis, Statistics and Probability +1312.5815 Cosmology and Nongalactic Astrophysics +1312.5976 +1312.6596 Mesoscale and Nanoscale Physics +1312.7756 Phenomenology +1401.0018 Phenomenology +1401.0158 Atomic Physics +1401.0624 Phenomenology +1401.1547 Phenomenology +1401.2079 Experiment +1401.2672 Information Theory +1401.5993 Dynamical Systems +1401.7195 Statistics Theory +1401.7935 Cosmology and Nongalactic Astrophysics +1401.7963 Mesoscale and Nanoscale Physics +1402.1627 Superconductivity +1402.2030 Analysis of PDEs +1402.4032 Chaotic Dynamics +1402.4961 Superconductivity +1402.5712 Operator Algebras +1402.6307 Materials Science +1403.1289 Distributed, Parallel, and Cluster Computing +1403.1372 Earth and Planetary Astrophysics +1403.1380 Analysis of PDEs +1403.1688 Mesoscale and Nanoscale Physics +1403.1837 Analysis of PDEs +1403.2015 Solar and Stellar Astrophysics +1403.2085 Statistics Theory +1403.2121 +1403.2372 Learning +1403.2373 Cellular Automata and Lattice Gases +1403.2374 +1403.2375 Fluid Dynamics +1403.2378 Numerical Analysis +1403.2403 Algebraic Geometry +1403.2404 Distributed, Parallel, and Cluster Computing +1403.2408 Cosmology and Nongalactic Astrophysics +1403.2416 Materials Science +1403.2419 Optics +1403.2420 Dynamical Systems +1403.2425 Dynamical Systems +1403.2432 Computational Physics +1403.2433 Learning +1403.2434 Statistics Theory +1403.2435 Physics Education +1403.2439 Discrete Mathematics +1403.2445 Lattice +1403.2447 Lattice +1403.2449 Dynamical Systems +1403.2451 Number Theory +1403.2452 Optics +1403.2457 Dynamical Systems +1403.2458 History and Philosophy of Physics +1403.2459 Analysis of PDEs +1403.2462 Numerical Analysis +1403.2464 Geometric Topology +1403.2465 Spectral Theory +1403.2468 Instrumentation and Methods for Astrophysics +1403.2469 Materials Science +1403.2471 Systems and Control +1403.2478 +1403.2481 Representation Theory +1403.2482 Computer Vision and Pattern Recognition +1403.2486 Performance +1403.2487 Probability +1403.2488 Populations and Evolution +1403.2489 Theory +1403.2490 +1403.2496 +1403.2498 Artificial Intelligence +1403.2499 Information Theory +1403.2501 Theory +1403.2508 Distributed, Parallel, and Cluster Computing +1403.2512 Combinatorics +1403.2513 Analysis of PDEs +1403.2514 Cryptography and Security +1403.2515 Mesoscale and Nanoscale Physics +1403.2517 Algebraic Geometry +1403.2519 Software Engineering +1403.2522 Probability +1403.2523 Functional Analysis +1403.2524 +1403.2531 Logic in Computer Science +1403.2541 Artificial Intelligence +1403.2548 Networking and Internet Architecture +1403.2549 Mesoscale and Nanoscale Physics +1403.2550 Analysis of PDEs +1403.2557 Rings and Algebras +1403.2558 Cosmology and Nongalactic Astrophysics +1403.2560 Numerical Analysis +1403.2563 +1403.2568 Atomic Physics +1403.2569 Optics +1403.2574 Subcellular Processes +1403.2575 Populations and Evolution +1403.2578 Statistics Theory +1403.2579 +1403.2581 +1403.2583 Adaptation and Self-Organizing Systems +1403.2587 Combinatorics +1403.2588 Analysis of PDEs +1403.2589 Number Theory +1403.2591 Classical Physics +1403.2592 Classical Physics +1403.2596 Algebraic Topology +1403.2597 Strongly Correlated Electrons +1403.2598 Optics +1403.2602 Fluid Dynamics +1403.2603 Fluid Dynamics +1403.2604 Fluid Dynamics +1403.2611 Mesoscale and Nanoscale Physics +1403.2613 Combinatorics +1403.2616 Dynamical Systems +1403.2618 +1403.2624 Functional Analysis +1403.2625 Distributed, Parallel, and Cluster Computing +1403.2627 Functional Analysis +1403.2629 Combinatorics +1403.2630 Mathematical Software +1403.2633 +1403.2638 Algebraic Geometry +1403.2639 Software Engineering +1403.2640 Strongly Correlated Electrons +1403.2643 Functional Analysis +1403.2647 Functional Analysis +1403.2649 Numerical Analysis +1403.2650 Geophysics +1403.2653 Metric Geometry +1403.2654 Learning +1403.2655 Functional Analysis +1403.2656 Digital Libraries +1403.2657 Combinatorics +1403.2658 Other Quantitative Biology +1403.2661 Statistical Mechanics +1403.2665 Classical Physics +1403.2666 Plasma Physics +1403.2667 Experiment +1403.2670 Algebraic Geometry +1403.2675 Group Theory +1403.2679 Group Theory +1403.2680 Group Theory +1403.2682 +1403.2684 Soft Condensed Matter +1403.2686 Hardware Architecture +1403.2687 General Physics +1403.2688 General Physics +1403.2689 Probability +1403.2708 Physics and Society +1403.2710 Logic +chao-dyn/9909027 Chaotic Dynamics +math-ph/0212014 +math/0508024 Dynamical Systems +q-bio/0405018 Populations and Evolution +quant-ph/0703104 +0705.0452 Differential Geometry +0807.0014 Data Analysis, Statistics and Probability +0807.1493 Superconductivity +0807.3814 Physics and Society +0808.0859 +0808.1828 General Finance +0810.1922 Portfolio Management +0811.1237 Functional Analysis +0904.0872 Data Analysis, Statistics and Probability +0905.0128 Risk Management +0907.3893 Phenomenology +0907.4290 Data Analysis, Statistics and Probability +0908.3072 Physics and Society +0912.1617 Statistical Finance +1003.2882 Physics and Society +1003.3502 Algebraic Geometry +1004.1500 Numerical Analysis +1007.2420 Geophysics +1009.5184 Analysis of PDEs +1010.1511 Analysis of PDEs +1011.1233 Numerical Analysis +1011.1363 Numerical Analysis +1012.0199 Physics and Society +1101.1611 Statistical Mechanics +1102.0662 Numerical Analysis +1102.1545 Analysis of PDEs +1104.4852 Dynamical Systems +1108.1587 Optimization and Control +1108.2611 Statistical Finance +1109.0049 Materials Science +1109.4444 +1109.5886 Algebraic Geometry +1110.1319 General Finance +1110.3641 Numerical Analysis +1110.4184 Atmospheric and Oceanic Physics +1110.4554 Combinatorics +1111.3137 Mesoscale and Nanoscale Physics +1111.3427 Optimization and Control +1111.4621 Other Quantitative Biology +1201.3470 Analysis of PDEs +1201.4650 Networking and Internet Architecture +1202.3508 Numerical Analysis +1202.3936 Physics and Society +1202.5954 Computer Science and Game Theory +1204.3393 Cosmology and Nongalactic Astrophysics +1204.5899 Mesoscale and Nanoscale Physics +1207.0501 Quantum Gases +1207.2043 Chaotic Dynamics +1207.5004 Dynamical Systems +1207.5674 Physics and Society +1207.6960 Discrete Mathematics +1208.5982 Materials Science +1209.1834 Fluid Dynamics +1209.4242 Algebraic Geometry +1209.5043 Geometric Topology +1209.5050 Functional Analysis +1209.6591 Differential Geometry +1210.1403 +1210.2478 Metric Geometry +1210.3247 Soft Condensed Matter +1210.6642 Representation Theory +1210.8043 Phenomenology +1211.1630 Geometric Topology +1211.1949 Physics and Society +1211.5509 Group Theory +1211.5517 Pricing of Securities +1212.1826 Rings and Algebras +1212.2833 General Finance +1212.2993 Mesoscale and Nanoscale Physics +1212.6142 Differential Geometry +1301.4154 Quantum Algebra +1301.4173 Portfolio Management +1301.5425 Pricing of Securities +1302.4139 +1302.5343 +1302.6668 Multiagent Systems +1303.1649 Mesoscale and Nanoscale Physics +1303.3165 Information Theory +1303.3740 Statistics Theory +1303.4286 Quantum Gases +1304.0123 Analysis of PDEs +1304.5087 +1304.6175 Number Theory +1304.6182 Optimization and Control +1304.7493 Metric Geometry +1304.8059 Mesoscale and Nanoscale Physics +1305.2183 Geometric Topology +1305.4769 +1305.6582 Quantum Algebra +1305.7308 Functional Analysis +1306.0703 Phenomenology +1306.2487 Physics and Society +1306.4289 Combinatorics +1306.5332 +1306.5903 Theory +1307.0136 Earth and Planetary Astrophysics +1307.0640 Analysis of PDEs +1307.1457 Mesoscale and Nanoscale Physics +1307.6271 +1307.6386 Superconductivity +1307.6802 Operator Algebras +1307.6810 Soft Condensed Matter +1307.7249 Information Theory +1307.7502 Physics and Society +1308.1225 Mesoscale and Nanoscale Physics +1308.1729 Optics +1308.3926 Combinatorics +1308.4529 Numerical Analysis +1308.5354 Information Theory +1308.5545 Cosmology and Nongalactic Astrophysics +1308.5647 Mesoscale and Nanoscale Physics +1309.0007 Phenomenology +1309.2126 Statistical Mechanics +1309.2349 Numerical Analysis +1309.4039 Neurons and Cognition +1309.5175 Statistical Mechanics +1309.5825 Phenomenology +1309.7111 Combinatorics +1309.7505 Superconductivity +1309.7915 +1310.0241 Cosmology and Nongalactic Astrophysics +1310.1136 Operator Algebras +1310.1305 Classical Analysis and ODEs +1310.3208 Superconductivity +1310.3386 Pricing of Securities +1310.5433 +1310.7113 Dynamical Systems +1310.7490 Soft Condensed Matter +1310.8430 Computational Physics +1310.8555 Lattice +1311.0557 Classical Analysis and ODEs +1311.0563 Classical Analysis and ODEs +1311.1062 Combinatorics +1311.1442 Cryptography and Security +1311.3512 Classical Analysis and ODEs +1311.6182 Machine Learning +1311.6619 +1311.7361 Strongly Correlated Electrons +1312.0150 Classical Analysis and ODEs +1312.0175 Formal Languages and Automata Theory +1312.0687 Algebraic Geometry +1312.1468 Mesoscale and Nanoscale Physics +1312.2292 Quantum Gases +1312.4678 Data Structures and Algorithms +1312.4715 Analysis of PDEs +1312.4724 Cosmology and Nongalactic Astrophysics +1312.4733 Astrophysics of Galaxies +1312.4749 Earth and Planetary Astrophysics +1312.4940 Cosmology and Nongalactic Astrophysics +1312.5072 +1312.7865 Atomic Physics +1401.0352 Differential Geometry +1401.0750 Systems and Control +1401.0912 +1401.1118 Superconductivity +1401.1801 Mesoscale and Nanoscale Physics +1401.1806 Phenomenology +1401.1866 Functional Analysis +1401.4153 Mesoscale and Nanoscale Physics +1401.4357 Materials Science +1401.5029 +1401.7361 Fluid Dynamics +1401.7899 Statistics Theory +1401.7958 Probability +1401.7986 Cosmology and Nongalactic Astrophysics +1402.0127 Exactly Solvable and Integrable Systems +1402.1284 +1402.1490 Theory +1402.2837 Theory +1402.3884 Quantum Algebra +1402.3964 Statistical Mechanics +1402.4195 +1402.4871 Combinatorics +1402.5029 Cryptography and Security +1402.5495 Logic +1402.5904 Discrete Mathematics +1403.0756 Statistical Mechanics +1403.0944 Theory +1403.1833 Classical Analysis and ODEs +1403.2048 Emerging Technologies +1403.2573 Combinatorics +1403.2939 +1403.3422 Strongly Correlated Electrons +1403.3785 Physics and Society +1403.3826 Mesoscale and Nanoscale Physics +1403.3846 Symplectic Geometry +1403.4369 Mesoscale and Nanoscale Physics +1403.4891 Social and Information Networks +1403.5445 Strongly Correlated Electrons +1403.6142 Probability +1403.6333 Populations and Evolution +1403.6736 Disordered Systems and Neural Networks +1403.7437 Strongly Correlated Electrons +1403.7834 Solar and Stellar Astrophysics +1403.7979 +1404.0282 Geometric Topology +1404.2283 Phenomenology +1404.3711 Theory +1404.3717 Strongly Correlated Electrons +1404.4337 Optics +1404.4464 Probability +1404.4559 +1404.4726 Representation Theory +1404.5164 Metric Geometry +1404.5894 Computer Science and Game Theory +1404.5952 Phenomenology +1404.5993 Theory +1404.7005 Theory +1404.7772 Experiment +1405.0303 +1405.0709 Quantum Gases +1405.0974 Statistical Mechanics +1405.1038 Phenomenology +1405.1279 Physics and Society +1405.1911 Dynamical Systems +1405.2034 Cryptography and Security +1405.3515 Computation and Language +1405.3715 +1405.3974 Materials Science +1405.4693 Spectral Theory +1405.5070 Physics and Society +1405.5176 Strongly Correlated Electrons +1405.5702 Materials Science +1405.6054 Strongly Correlated Electrons +1405.7473 Atmospheric and Oceanic Physics +1406.0578 Numerical Analysis +1406.1162 Optics +1406.2064 Logic in Computer Science +1406.3115 Materials Science +1406.3438 Mesoscale and Nanoscale Physics +1406.3657 Functional Analysis +1406.4708 Chemical Physics +1406.4715 Fluid Dynamics +1406.5080 +1406.5498 Theory +1406.6069 Astrophysics of Galaxies +1406.6077 Strongly Correlated Electrons +1406.6869 Mesoscale and Nanoscale Physics +1406.7232 Mesoscale and Nanoscale Physics +1406.7869 Optimization and Control +1407.0592 Algebraic Geometry +1407.0916 Phenomenology +1407.1045 Phenomenology +1407.1943 Instrumentation and Methods for Astrophysics +1407.2299 Materials Science +1407.2721 Computer Vision and Pattern Recognition +1407.2739 Phenomenology +1407.3478 Theory +1407.3548 Populations and Evolution +1407.3818 +1407.4391 Astrophysics of Galaxies +1407.4868 Differential Geometry +1407.4901 +1407.5215 Astrophysics of Galaxies +1407.5713 Number Theory +1407.5925 Materials Science +1407.5927 Materials Science +1407.5930 Materials Science +1407.5933 Materials Science +1407.6148 Solar and Stellar Astrophysics +1407.6305 Complex Variables +1407.6395 Mesoscale and Nanoscale Physics +1407.6981 Cryptography and Security +1407.7365 Phenomenology +1408.0031 Statistical Mechanics +1408.0065 Statistical Mechanics +1408.0633 +1408.1029 Metric Geometry +1408.1426 Probability +1408.1554 Computation +1408.2095 Computational Geometry +1408.2180 Rings and Algebras +1408.2333 Logic in Computer Science +1408.2477 +1408.2481 Chemical Physics +1408.2624 Differential Geometry +1408.3058 Atmospheric and Oceanic Physics +1408.3064 Dynamical Systems +1408.3168 Chaotic Dynamics +1408.3487 +1408.3560 Logic in Computer Science +1408.3563 Phenomenology +1408.3646 Solar and Stellar Astrophysics +1408.3814 Computer Vision and Pattern Recognition +1408.4576 Learning +1408.4614 Classical Physics +1408.4652 Phenomenology +1408.4666 Dynamical Systems +1408.4751 Cryptography and Security +1408.4761 General Physics +1408.5265 Artificial Intelligence +1408.5400 Computer Vision and Pattern Recognition +1408.5402 Geometric Topology +1408.5403 Neural and Evolutionary Computing +1408.5410 Superconductivity +1408.5411 Solar and Stellar Astrophysics +1408.5412 Data Structures and Algorithms +1408.5415 Combinatorics +1408.5416 Number Theory +1408.5419 Group Theory +1408.5421 Physics and Society +1408.5422 Data Structures and Algorithms +1408.5425 Computational Complexity +1408.5427 Machine Learning +1408.5430 Biological Physics +1408.5431 Earth and Planetary Astrophysics +1408.5437 Differential Geometry +1408.5442 Applications +1408.5444 +1408.5447 Analysis of PDEs +1408.5448 Logic +1408.5449 Learning +1408.5450 Materials Science +1408.5451 +1408.5456 Learning +1408.5458 Optimization and Control +1408.5460 Databases +1408.5462 Earth and Planetary Astrophysics +1408.5463 Phenomenology +1408.5466 Earth and Planetary Astrophysics +1408.5468 Information Theory +1408.5469 Materials Science +1408.5470 Analysis of PDEs +1408.5472 Optics +1408.5474 Algebraic Geometry +1408.5475 Commutative Algebra +1408.5487 +1408.5489 Materials Science +1408.5491 Solar and Stellar Astrophysics +1408.5492 Systems and Control +1408.5494 Differential Geometry +1408.5495 Dynamical Systems +1408.5497 Optimization and Control +1408.5498 Physics and Society +1408.5499 Analysis of PDEs +1408.5502 Analysis of PDEs +1408.5507 Artificial Intelligence +1408.5508 Commutative Algebra +1408.5510 Mathematical Finance +1408.5511 Software Engineering +1408.5512 Symbolic Computation +1408.5513 Combinatorics +1408.5514 Symbolic Computation +1408.5516 Computer Vision and Pattern Recognition +1408.5519 Materials Science +1408.5526 Computational Finance +1408.5528 Geometric Topology +1408.5530 Data Structures and Algorithms +1408.5533 Probability +1408.5539 Cryptography and Security +1408.5543 Information Theory +1408.5546 Operator Algebras +1408.5547 Numerical Analysis +1408.5550 Numerical Analysis +1408.5551 Materials Science +1408.5552 Computer Vision and Pattern Recognition +1408.5553 Earth and Planetary Astrophysics +1408.5555 Earth and Planetary Astrophysics +1408.5557 Earth and Planetary Astrophysics +1408.5559 Dynamical Systems +1408.5560 Computer Science and Game Theory +1408.5561 Analysis of PDEs +1408.5564 Programming Languages +1408.5566 Information Theory +1408.5567 Soft Condensed Matter +1408.5568 History and Overview +1408.5569 History and Overview +1408.5573 Human-Computer Interaction +1408.5579 Materials Science +1408.5582 Logic +1408.5592 Computational Engineering, Finance, and Science +1408.5593 +1408.5600 +1408.5606 Group Theory +1408.5607 Group Theory +1408.5608 Rings and Algebras +1408.5609 Functional Analysis +1408.5610 Differential Geometry +1408.5612 Group Theory +1408.5613 Analysis of PDEs +1408.5614 Phenomenology +1408.5615 Combinatorics +1408.5618 Statistical Finance +1408.5620 Symplectic Geometry +1408.5621 Statistics Theory +1408.5622 Computational Geometry +1408.5631 Materials Science +1408.5634 Computational Engineering, Finance, and Science +1408.5635 Optics +1408.5639 Dynamical Systems +1408.5642 Functional Analysis +1408.5647 Metric Geometry +1408.5656 Statistical Mechanics +1408.5660 +1408.5663 Information Theory +1408.5666 Information Theory +1408.5673 Computational Finance +1408.5674 Information Theory +1408.5675 Theory +1408.5676 Chaotic Dynamics +1408.5677 Mathematical Finance +1408.5678 Probability +1408.5679 Superconductivity +1408.5680 +1408.5682 Probability +1408.5684 Combinatorics +1408.5685 +1408.5690 Software Engineering +1408.5691 Software Engineering +1408.5692 Software Engineering +1408.5693 Software Engineering +1408.5695 Software Engineering +1408.5696 Software Engineering +1408.5697 +1408.5698 Software Engineering +1408.5700 Digital Libraries +1408.5701 Functional Analysis +1408.5703 Software Engineering +1408.5704 Materials Science +1408.5705 Software Engineering +1408.5706 Fluid Dynamics +1408.5707 Software Engineering +1408.5709 Instrumentation and Detectors +1408.5715 Performance +1408.5716 Functional Analysis +1408.5718 Functional Analysis +1408.5723 Experiment +1408.5726 Exactly Solvable and Integrable Systems +1408.5733 Instrumentation and Methods for Astrophysics +1408.5737 Systems and Control +1408.5738 Systems and Control +1408.5745 Classical Analysis and ODEs +1408.5748 Computers and Society +1408.5751 Software Engineering +1408.5756 Software Engineering +1408.5758 Accelerator Physics +1408.5771 Geometric Topology +1408.5776 Experiment +1408.5777 Multimedia +1408.5786 Software Engineering +1408.5789 Astrophysics of Galaxies +1408.5790 Astrophysics of Galaxies +1408.5791 Combinatorics +1408.5795 Phenomenology +1408.5799 General Mathematics +1408.5802 Analysis of PDEs +1408.5804 Analysis of PDEs +1408.5806 Social and Information Networks +1408.5813 Operator Algebras +1408.5814 Analysis of PDEs +1408.5816 General Physics +1408.5818 Materials Science +1408.5825 Systems and Control +1408.5834 Geophysics +1408.5835 Algebraic Geometry +1408.5839 +1408.5844 +1408.5847 Analysis of PDEs +1408.5849 Combinatorics +1408.5851 Analysis of PDEs +1408.5856 Analysis of PDEs +1408.5857 Experiment +1408.5858 Geometric Topology +1408.5859 Materials Science +1408.5861 +1408.5868 Chemical Physics +1408.5870 Software Engineering +1408.5872 General Mathematics +1408.5873 Combinatorics +1408.5880 Phenomenology +cond-mat/0212243 Statistical Mechanics +0707.0527 Differential Geometry +0710.4474 +0810.1909 Statistical Mechanics +0902.2247 +0906.1340 Lattice +0907.1325 Algebraic Geometry +0907.3297 Statistical Mechanics +0907.4834 Algebraic Geometry +0909.4496 Differential Geometry +0911.1204 +0911.3753 Neural and Evolutionary Computing +0911.3802 Risk Management +1001.5421 Portfolio Management +1006.4481 +1008.1745 Algebraic Geometry +1010.6277 Theory +1011.0075 General Physics +1104.3924 Differential Geometry +1105.2160 Representation Theory +1105.5500 Representation Theory +1106.1552 Phenomenology +1107.0151 Probability +1107.4585 Strongly Correlated Electrons +1108.3695 Probability +1108.5254 Combinatorics +1109.2717 Statistical Mechanics +1110.2831 Optimization and Control +1110.6572 Optimization and Control +1111.5092 Numerical Analysis +1112.2179 +1201.0372 General Physics +1201.3878 Optics +1201.5793 Probability +1202.5951 Quantum Algebra +1202.6042 Social and Information Networks +1203.2457 Group Theory +1203.2492 Fluid Dynamics +1203.4189 Theory +1203.4518 General Physics +1204.1192 Theory +1204.2887 Classical Analysis and ODEs +1204.3587 +1204.4104 Information Theory +1204.5072 Distributed, Parallel, and Cluster Computing +1204.6019 Strongly Correlated Electrons +1205.1373 Data Structures and Algorithms +1205.1704 +1205.2014 Algebraic Geometry +1206.4854 Computational Complexity +1206.6024 +1206.6130 +1207.2094 Information Theory +1207.2759 Combinatorics +1208.4072 Operator Algebras +1208.6245 Analysis of PDEs +1209.0863 Systems and Control +1209.3334 Soft Condensed Matter +1210.0090 Combinatorics +1210.0247 Classical Analysis and ODEs +1210.1239 Representation Theory +1210.1664 +1210.4674 Phenomenology +1210.5366 Materials Science +1211.0971 Number Theory +1211.1498 Functional Analysis +1211.2496 Networking and Internet Architecture +1211.2879 Differential Geometry +1211.3941 Algebraic Geometry +1211.3951 Methodology +1211.5003 Algebraic Topology +1211.6568 Phenomenology +1211.6961 Phenomenology +1212.1504 Probability +1212.4099 Dynamical Systems +1212.4423 Number Theory +1212.5043 Soft Condensed Matter +1212.5506 Mesoscale and Nanoscale Physics +1212.6643 Information Theory +1301.1568 Group Theory +1301.1880 Optics +1301.2782 Symplectic Geometry +1301.4020 Algebraic Geometry +1301.4460 Soft Condensed Matter +1301.5199 Statistical Mechanics +1301.5389 Numerical Analysis +1301.5775 +1301.6333 Mesoscale and Nanoscale Physics +1301.6841 Statistical Mechanics +1302.0292 Complex Variables +1302.0432 Numerical Analysis +1302.1230 Materials Science +1302.3025 +1302.5253 +1302.5688 Probability +1302.5713 High Energy Astrophysical Phenomena +1303.0779 Phenomenology +1303.1754 Numerical Analysis +1303.2305 Functional Analysis +1303.2363 Combinatorics +1303.5041 Symbolic Computation +1303.6578 Experiment +1303.7145 Geometric Topology +1304.0075 Materials Science +1304.0101 Number Theory +1304.0782 +1304.2062 Analysis of PDEs +1304.2238 Mesoscale and Nanoscale Physics +1304.2533 Phenomenology +1304.3041 Differential Geometry +1304.4229 Cosmology and Nongalactic Astrophysics +1304.5176 Instrumentation and Detectors +1304.6243 Number Theory +1304.6329 Quantum Algebra +1304.7502 Complex Variables +1305.0242 Strongly Correlated Electrons +1305.1037 Algebraic Topology +1305.1926 Information Theory +1305.2259 Statistical Mechanics +1305.3407 Databases +1305.3678 Superconductivity +1305.3955 +1305.4256 Complex Variables +1305.4774 Mesoscale and Nanoscale Physics +1305.5476 Physics and Society +1305.6571 Analysis of PDEs +1305.6871 +1306.0747 Group Theory +1306.1074 Strongly Correlated Electrons +1306.2144 Instrumentation and Methods for Astrophysics +1306.2224 Dynamical Systems +1306.2232 Phenomenology +1306.2653 Classical Analysis and ODEs +1306.2720 Mesoscale and Nanoscale Physics +1306.2744 +1306.3486 Phenomenology +1306.3720 Quantum Gases +1306.3788 Commutative Algebra +1306.4749 +1306.5559 Logic +1306.5727 Differential Geometry +1306.5886 Number Theory +1307.1202 +1307.3085 Lattice +1307.3586 Computer Science and Game Theory +1307.4739 Statistical Mechanics +1307.6681 Data Analysis, Statistics and Probability +1307.7246 +1307.7927 +1308.0061 Mesoscale and Nanoscale Physics +1308.0662 Rings and Algebras +1308.1346 Representation Theory +1308.1629 Phenomenology +1308.1975 Quantitative Methods +1308.2205 Plasma Physics +1308.2344 Number Theory +1308.3658 Instrumentation and Detectors +1308.4232 Fluid Dynamics +1308.4845 Strongly Correlated Electrons +1308.5303 Theory +1308.5660 Superconductivity +1308.6150 Statistical Mechanics +1308.6220 Optimization and Control +1308.6631 +1309.0940 Strongly Correlated Electrons +1309.1081 Phenomenology +1309.1670 Theory +1309.1896 Experiment +1309.1976 Information Theory +1309.2670 +1309.4219 Phenomenology +1309.4922 Probability +1309.6163 +1309.6350 Combinatorics +1309.6399 Phenomenology +1309.7337 Phenomenology +1309.7428 +1309.7772 Phenomenology +1310.0233 Materials Science +1310.0756 Strongly Correlated Electrons +1310.1513 +1310.1684 Probability +1310.2709 Number Theory +1310.3514 Dynamical Systems +1310.3654 Quantum Gases +1310.3836 Phenomenology +1310.3922 +1310.4634 Superconductivity +1310.4777 Networking and Internet Architecture +1310.5360 Statistical Mechanics +1310.5470 Spectral Theory +1310.5502 +1310.5716 +1310.5862 Mesoscale and Nanoscale Physics +1310.7301 +1310.7947 Analysis of PDEs +1310.8032 Exactly Solvable and Integrable Systems +1310.8049 Superconductivity +1310.8257 Soft Condensed Matter +1310.8368 Superconductivity +1311.2903 Networking and Internet Architecture +1311.3651 Data Structures and Algorithms +1311.3971 Fluid Dynamics +1311.4934 Software Engineering +1311.5158 Physics and Society +1311.5302 Quantum Gases +1311.6109 +1311.6125 Logic in Computer Science +1311.7179 Representation Theory +1311.7338 Mesoscale and Nanoscale Physics +1312.0219 Theory +1312.0417 Superconductivity +1312.2252 Applications +1312.6510 Spectral Theory +1312.6520 Phenomenology +1312.7026 +1312.7137 Materials Science +1312.7274 General Mathematics +1401.0208 Representation Theory +1401.0433 Mesoscale and Nanoscale Physics +1401.0693 Functional Analysis +1401.0935 Phenomenology +1401.1005 Dynamical Systems +1401.1281 Superconductivity +1401.2340 Mesoscale and Nanoscale Physics +1401.2859 Probability +1401.3273 Classical Analysis and ODEs +1401.3925 Combinatorics +1401.4119 Solar and Stellar Astrophysics +1401.4134 Genomics +1401.4139 Materials Science +1401.4340 Combinatorics +1401.4466 Quantum Gases +1401.4470 General Physics +1401.4471 Optimization and Control +1401.4472 Social and Information Networks +1401.4476 Optimization and Control +1401.4478 Optimization and Control +1401.4484 Information Theory +1401.4485 Statistical Mechanics +1401.4487 Analysis of PDEs +1401.4496 High Energy Astrophysical Phenomena +1401.4499 Computer Science and Game Theory +1401.4504 Mesoscale and Nanoscale Physics +1401.4507 +1401.4512 Computational Complexity +1401.4516 Digital Libraries +1401.4528 Networking and Internet Architecture +1401.4530 Materials Science +1401.4541 Numerical Analysis +1401.4543 Social and Information Networks +1401.4549 Analysis of PDEs +1401.4551 +1401.4554 Mesoscale and Nanoscale Physics +1401.4557 Optics +1401.4560 Classical Analysis and ODEs +1401.4565 Solar and Stellar Astrophysics +1401.4569 Representation Theory +1401.4570 Medical Physics +1401.4572 +1401.4578 Computers and Society +1401.4581 Mesoscale and Nanoscale Physics +1401.4582 Software Engineering +1401.4589 Computational Engineering, Finance, and Science +1401.4590 Artificial Intelligence +1401.4591 Computer Science and Game Theory +1401.4592 Artificial Intelligence +1401.4593 Multiagent Systems +1401.4594 Geometric Topology +1401.4595 Artificial Intelligence +1401.4596 Logic in Computer Science +1401.4597 Artificial Intelligence +1401.4598 Artificial Intelligence +1401.4599 Robotics +1401.4600 Artificial Intelligence +1401.4601 Artificial Intelligence +1401.4602 Computer Science and Game Theory +1401.4603 Artificial Intelligence +1401.4604 Artificial Intelligence +1401.4605 Artificial Intelligence +1401.4606 Artificial Intelligence +1401.4607 Artificial Intelligence +1401.4609 Data Structures and Algorithms +1401.4612 Robotics +1401.4613 Artificial Intelligence +1401.4615 High Energy Astrophysical Phenomena +1401.4618 Number Theory +1401.4619 Cosmology and Nongalactic Astrophysics +1401.4624 Probability +1401.4625 Physics and Society +1401.4629 Hardware Architecture +1401.4631 Algebraic Geometry +1401.4633 Information Theory +1401.4634 Information Theory +1401.4635 Quantum Algebra +1401.4639 +1401.4642 Information Theory +1401.4644 Computational Engineering, Finance, and Science +1401.4646 Optimization and Control +1401.4648 Computer Vision and Pattern Recognition +1401.4649 Logic +1401.4654 Algebraic Geometry +1401.4655 Other Computer Science +1401.4656 Rings and Algebras +1401.4658 Logic in Computer Science +1401.4662 Information Theory +1401.4666 Symbolic Computation +1401.4672 Physics and Society +1401.4674 Neural and Evolutionary Computing +1401.4677 Biological Physics +1401.4682 Number Theory +1401.4683 Cosmology and Nongalactic Astrophysics +1401.4684 Instrumentation and Detectors +1401.4686 General Physics +1401.4687 +1401.4691 Systems and Control +1401.4694 Superconductivity +1401.4695 Experiment +1401.4696 Neural and Evolutionary Computing +1401.4697 Category Theory +1401.4701 Number Theory +1401.4703 Differential Geometry +1401.4705 Phenomenology +1401.4708 Number Theory +1401.4709 Information Theory +1401.4710 Commutative Algebra +1401.4712 Discrete Mathematics +1401.4713 Dynamical Systems +1401.4714 Neural and Evolutionary Computing +1401.4715 Information Theory +1401.4721 Networking and Internet Architecture +1401.4725 Genomics +1401.4726 Cryptography and Security +1401.4730 Logic in Computer Science +1401.4739 Data Structures and Algorithms +1401.4740 Social and Information Networks +1401.4743 Metric Geometry +1401.4746 Classical Physics +1401.4747 History and Philosophy of Physics +1401.4748 Differential Geometry +1401.4751 Differential Geometry +1401.4754 Optimization and Control +1401.4755 Functional Analysis +1401.4761 Solar and Stellar Astrophysics +1401.4763 Cosmology and Nongalactic Astrophysics +1401.4764 Methodology +1401.4768 Optics +1401.4769 Applications +1401.4771 Earth and Planetary Astrophysics +1401.4772 Category Theory +1401.4774 Optimization and Control +1401.4775 Functional Analysis +1401.4777 Biological Physics +1401.4778 Disordered Systems and Neural Networks +1401.4779 Cellular Automata and Lattice Gases +1401.4781 Number Theory +1401.4784 +1401.4786 Systems and Control +1401.4788 Computer Vision and Pattern Recognition +1401.4789 Number Theory +1401.4790 Cryptography and Security +1401.4792 Dynamical Systems +1401.4794 Spectral Theory +1401.4795 Computer Science and Game Theory +1401.4798 Optics +1401.4800 Optics +1401.4802 Software Engineering +1401.4808 Software Engineering +1401.4810 Numerical Analysis +1401.4814 Theory +1401.4815 +1401.4816 +1401.4821 Software Engineering +1401.4825 Biological Physics +1401.4826 Differential Geometry +1401.4828 Quantum Algebra +1401.4838 +1401.4842 Quantum Gases +1401.4843 Probability +1401.4844 Networking and Internet Architecture +1401.4845 Astrophysics of Galaxies +1401.4848 Neural and Evolutionary Computing +1401.4850 Classical Analysis and ODEs +1401.4851 Combinatorics +1401.4853 Differential Geometry +1401.4854 Quantum Gases +1401.4857 Neural and Evolutionary Computing +1401.4858 Accelerator Physics +1401.4861 +1401.4862 Other Computer Science +1401.4864 Dynamical Systems +1401.4869 Computation and Language +1401.4870 +1401.4872 Cryptography and Security +1401.4873 Materials Science +1401.4876 Computers and Society +1401.4884 +1401.4887 General Finance +1401.4891 Hardware Architecture +1401.4892 Phenomenology +1401.4896 Methodology +1401.4897 Instrumentation and Detectors +1401.4899 +1401.4900 Phenomenology +1401.4902 Experiment +1401.4903 Solar and Stellar Astrophysics +1401.4911 Metric Geometry +1401.4917 Cryptography and Security +1401.4919 Analysis of PDEs +1401.4920 Complex Variables +1401.4922 Optimization and Control +1401.4923 Cosmology and Nongalactic Astrophysics +1401.4925 Quantum Algebra +1401.4927 Logic +1401.4929 Quantitative Methods +1401.4932 Formal Languages and Automata Theory +1401.4935 Systems and Control +1401.4936 Information Theory +1401.4938 Neurons and Cognition +1401.4941 High Energy Astrophysical Phenomena +1401.4942 Artificial Intelligence +1401.4947 Optics +1401.4948 Instrumentation and Methods for Astrophysics +1401.4950 Mathematical Software +1401.4951 Mesoscale and Nanoscale Physics +1401.4957 Soft Condensed Matter +1401.4958 Number Theory +1401.4963 +1401.4969 Numerical Analysis +1401.4971 Materials Science +1401.4972 Distributed, Parallel, and Cluster Computing +1401.4973 Logic in Computer Science +1401.4975 Atomic Physics +1401.4982 Rings and Algebras +1401.4994 Robotics +1401.4995 Group Theory +1401.5004 Systems and Control +1401.5011 Numerical Analysis +1401.5014 Computational Geometry +1401.5015 Methodology +1401.5018 Analysis of PDEs +1401.5021 Physics and Society +1401.5022 Optimization and Control +1401.5024 Other Computer Science +1401.5028 Representation Theory +1401.5032 Solar and Stellar Astrophysics +1401.5033 Statistical Mechanics +1401.5034 Probability +1401.5035 Quantitative Methods +1401.5038 Phenomenology +1401.5039 Systems and Control +1401.5043 Phenomenology +1401.5044 Cosmology and Nongalactic Astrophysics +1401.5048 Molecular Networks +1401.5049 Populations and Evolution +1401.5050 High Energy Astrophysical Phenomena +1401.5051 Databases +1401.5053 Differential Geometry +hep-th/9407183 Theory +math/0004075 Differential Geometry +math/0305317 Category Theory +math/0604265 Differential Geometry +math/0608154 Differential Geometry +math/9811166 Differential Geometry +nucl-th/0106021 +0903.2243 Information Theory +0911.5605 +1003.1244 Statistical Mechanics +1011.3639 +1105.0604 +1105.1715 Algebraic Geometry +1106.4446 Strongly Correlated Electrons +1106.5912 Operator Algebras +1107.0923 Number Theory +1108.4674 Geophysics +1112.0919 +1201.5308 Statistical Mechanics +1203.5837 Functional Analysis +1204.5004 Atomic Physics +1206.0118 Statistical Mechanics +1208.1252 Number Theory +1209.0641 Theory +1209.3454 Metric Geometry +1210.0816 Dynamical Systems +1211.1871 Metric Geometry +1211.3902 Cosmology and Nongalactic Astrophysics +1212.4729 +1302.0695 General Physics +1302.1031 Representation Theory +1302.7010 Pricing of Securities +1303.0896 Rings and Algebras +1303.4431 Artificial Intelligence +1303.7152 Statistics Theory +1304.0023 Computer Vision and Pattern Recognition +1304.2527 +1304.4056 Methodology +1305.0173 +1305.0990 +1305.1107 +1305.3290 +1305.4391 Experiment +1305.5743 Number Theory +1305.7293 Operator Algebras +1306.3130 +1306.3706 Computation +1307.5886 Soft Condensed Matter +1307.7724 Theory +1307.7899 Theory +1308.3475 +1308.3942 Methodology +1308.4156 Mesoscale and Nanoscale Physics +1308.5493 Probability +1308.5664 Mesoscale and Nanoscale Physics +1309.2083 Number Theory +1309.3664 Rings and Algebras +1309.7349 +1309.7976 +1310.3530 +1310.5454 Group Theory +1310.5917 Phenomenology +1311.6768 Theory +1311.7243 Theory +1312.2626 Theory +1312.2761 High Energy Astrophysical Phenomena +1312.3837 Combinatorics +1312.4935 Combinatorics +1312.5526 Biological Physics +1312.6533 Robotics +1312.7821 Quantum Gases +1401.2129 Soft Condensed Matter +1401.2701 Theory +1401.7008 General Physics +1402.0366 Group Theory +1402.1077 Populations and Evolution +1402.1561 Numerical Analysis +1402.1847 Instrumentation and Detectors +1402.3219 Commutative Algebra +1402.3770 Theory +1402.4425 Disordered Systems and Neural Networks +1402.4680 Strongly Correlated Electrons +1402.5254 Statistical Mechanics +1402.5860 Phenomenology +1402.6826 Theory +1402.7010 Chaotic Dynamics +1403.0574 High Energy Astrophysical Phenomena +1403.1894 Theory +1403.2634 Group Theory +1403.2717 Quantum Gases +1403.2971 Phenomenology +1403.3432 +1403.4007 +1403.4882 K-Theory and Homology +1403.5506 High Energy Astrophysical Phenomena +1403.5583 Phenomenology +1403.6054 +1403.6533 Astrophysics of Galaxies +1403.7695 Fluid Dynamics +1404.0019 +1404.0098 Optimization and Control +1404.0178 Strongly Correlated Electrons +1404.0360 Cosmology and Nongalactic Astrophysics +1404.3462 Operator Algebras +1404.4887 Data Structures and Algorithms +1404.5220 Cosmology and Nongalactic Astrophysics +1404.5668 Artificial Intelligence +1404.5709 Networking and Internet Architecture +1404.6255 +1405.0125 Materials Science +1405.0128 Solar and Stellar Astrophysics +1405.0447 Strongly Correlated Electrons +1405.0703 Probability +1405.0973 Materials Science +1405.1142 Optics +1405.1737 Astrophysics of Galaxies +1405.2012 Cosmology and Nongalactic Astrophysics +1405.2362 Computer Vision and Pattern Recognition +1405.2663 High Energy Astrophysical Phenomena +1405.2965 Populations and Evolution +1405.4472 Computational Complexity +1405.4769 Cosmology and Nongalactic Astrophysics +1405.5007 Neurons and Cognition +1405.5547 Pattern Formation and Solitons +1405.5840 +1405.5946 Theory +1405.6205 Cosmology and Nongalactic Astrophysics +1405.7015 Theory +1405.7188 Cosmology and Nongalactic Astrophysics +1405.7904 +1406.2715 Mesoscale and Nanoscale Physics +1406.2733 Statistical Mechanics +1406.2870 Soft Condensed Matter +1406.3547 Theory +1406.3584 Theory +1406.4707 Statistical Mechanics +1406.5027 Earth and Planetary Astrophysics +1406.5308 Strongly Correlated Electrons +1406.5704 Astrophysics of Galaxies +1406.6574 Theory +1406.6813 Earth and Planetary Astrophysics +1406.6850 Optics +1406.6975 Mesoscale and Nanoscale Physics +1406.7363 Information Theory +1407.0262 Astrophysics of Galaxies +1407.0801 Theory +1407.0804 Analysis of PDEs +1407.1076 Solar and Stellar Astrophysics +1407.1110 Phenomenology +1407.1321 Strongly Correlated Electrons +1407.1608 +1407.1953 Quantum Gases +1407.2863 Mesoscale and Nanoscale Physics +1407.3156 Solar and Stellar Astrophysics +1407.4263 Phenomenology +1407.4411 +1407.5135 Cosmology and Nongalactic Astrophysics +1407.5451 Classical Analysis and ODEs +1407.5629 Theory +1407.5821 Phenomenology +1407.6192 +1407.6431 Astrophysics of Galaxies +1407.6654 Instrumentation and Methods for Astrophysics +1407.7220 Optimization and Control +1407.7374 Phenomenology +1408.0793 High Energy Astrophysical Phenomena +1408.1627 Phenomenology +1408.1796 +1408.2003 Learning +1408.2004 Learning +1408.2589 +1408.3488 Mesoscale and Nanoscale Physics +1408.4030 Solar and Stellar Astrophysics +1408.4624 Soft Condensed Matter +1408.5433 Differential Geometry +1408.5524 Differential Geometry +1408.5739 Optimization and Control +1409.0218 Geometric Topology +1409.0432 Superconductivity +1409.1338 Phenomenology +1409.1807 Astrophysics of Galaxies +1409.2384 Optics +1409.2743 Strongly Correlated Electrons +1409.3419 Algebraic Geometry +1409.3450 Number Theory +1409.4079 Representation Theory +1409.4431 +1409.5275 Algebraic Geometry +1409.5629 Differential Geometry +1409.5938 Dynamical Systems +1409.6153 Statistical Mechanics +1409.6160 Phenomenology +1409.6289 K-Theory and Homology +1409.6295 Functional Analysis +1409.6296 Phenomenology +1409.6297 +1409.6302 Astrophysics of Galaxies +1409.6313 Theory +1409.6325 Geometric Topology +1409.6330 Algebraic Geometry +1409.6337 Statistics Theory +1409.6342 +1409.6346 Networking and Internet Architecture +1409.6348 Astrophysics of Galaxies +1409.6351 Optics +1409.6355 Number Theory +1409.6356 +1409.6358 Optimization and Control +1409.6359 Artificial Intelligence +1409.6362 Instrumentation and Methods for Astrophysics +1409.6365 Data Structures and Algorithms +1409.6366 Computational Complexity +1409.6369 Computational Engineering, Finance, and Science +1409.6375 Materials Science +1409.6376 Representation Theory +1409.6378 Neurons and Cognition +1409.6380 Probability +1409.6382 Information Theory +1409.6387 Differential Geometry +1409.6389 Mesoscale and Nanoscale Physics +1409.6392 Information Theory +1409.6394 Information Theory +1409.6396 Mesoscale and Nanoscale Physics +1409.6397 Computational Geometry +1409.6401 Mesoscale and Nanoscale Physics +1409.6402 Superconductivity +1409.6403 Exactly Solvable and Integrable Systems +1409.6404 Systems and Control +1409.6405 Category Theory +1409.6408 Classical Analysis and ODEs +1409.6409 Optimization and Control +1409.6411 Classical Analysis and ODEs +1409.6413 Classical Analysis and ODEs +1409.6414 Logic in Computer Science +1409.6417 Soft Condensed Matter +1409.6419 Mesoscale and Nanoscale Physics +1409.6423 Astrophysics of Galaxies +1409.6427 Category Theory +1409.6428 Databases +1409.6431 Networking and Internet Architecture +1409.6436 Mesoscale and Nanoscale Physics +1409.6442 Geometric Topology +1409.6443 Statistical Finance +1409.6445 Probability +1409.6447 Statistics Theory +1409.6451 Algebraic Geometry +1409.6454 Number Theory +1409.6455 Number Theory +1409.6461 Statistical Mechanics +1409.6466 Logic in Computer Science +1409.6472 Experiment +1409.6474 Symplectic Geometry +1409.6476 Functional Analysis +1409.6483 Statistical Mechanics +1409.6484 Solar and Stellar Astrophysics +1409.6494 Statistical Mechanics +1409.6495 Statistics Theory +1409.6496 Statistics Theory +1409.6497 Physics and Society +1409.6499 Mesoscale and Nanoscale Physics +1409.6509 +1409.6510 Optimization and Control +1409.6524 Analysis of PDEs +1409.6525 Combinatorics +1409.6526 Networking and Internet Architecture +1409.6529 +1409.6533 Number Theory +1409.6540 Number Theory +1409.6544 Earth and Planetary Astrophysics +1409.6548 Databases +1409.6551 Data Structures and Algorithms +1409.6554 Sound +1409.6555 Fluid Dynamics +1409.6557 Atmospheric and Oceanic Physics +1409.6559 Computers and Society +1409.6567 High Energy Astrophysical Phenomena +1409.6569 Differential Geometry +1409.6573 Optimization and Control +1409.6578 Software Engineering +1409.6579 Software Engineering +1409.6580 Software Engineering +1409.6581 Software Engineering +1409.6582 Software Engineering +1409.6583 Software Engineering +1409.6584 Robotics +1409.6585 Software Engineering +1409.6586 Software Engineering +1409.6587 Software Engineering +1409.6588 Software Engineering +1409.6589 Software Engineering +1409.6590 Software Engineering +1409.6591 Software Engineering +1409.6592 Software Engineering +1409.6596 Software Engineering +1409.6597 Software Engineering +1409.6598 Software Engineering +1409.6599 Software Engineering +1409.6600 Software Engineering +1409.6601 Software Engineering +1409.6602 Software Engineering +1409.6603 Software Engineering +1409.6604 Software Engineering +1409.6605 Software Engineering +1409.6606 Cryptography and Security +1409.6608 Software Engineering +1409.6609 Software Engineering +1409.6610 Software Engineering +1409.6611 Software Engineering +1409.6612 Software Engineering +1409.6613 Software Engineering +1409.6614 Geometric Topology +1409.6616 Software Engineering +1409.6617 Software Engineering +1409.6618 Software Engineering +1409.6619 Software Engineering +1409.6621 Software Engineering +1409.6622 Software Engineering +1409.6623 Software Engineering +1409.6625 Software Engineering +1409.6626 Software Engineering +1409.6627 Combinatorics +1409.6628 Software Engineering +1409.6629 Software Engineering +1409.6630 Software Engineering +1409.6631 Software Engineering +1409.6632 Operator Algebras +1409.6633 Software Engineering +1409.6634 Computers and Society +1409.6635 Software Engineering +1409.6636 Software Engineering +1409.6637 Software Engineering +1409.6639 Category Theory +1409.6645 Pricing of Securities +1409.6650 Earth and Planetary Astrophysics +1409.6654 Information Theory +1409.6661 Genomics +1409.6677 Classical Analysis and ODEs +1409.6678 Human-Computer Interaction +1409.6679 Distributed, Parallel, and Cluster Computing +1409.6680 Human-Computer Interaction +1409.6682 Optics +1409.6684 Combinatorics +1409.6686 +1409.6687 Commutative Algebra +1409.6689 Computer Vision and Pattern Recognition +1409.6693 Number Theory +1409.6694 Numerical Analysis +1409.6699 Fluid Dynamics +1409.6700 Exactly Solvable and Integrable Systems +1409.6709 Group Theory +1409.6712 Algebraic Topology +1409.6713 Theory +math/0601308 Analysis of PDEs +math/0703870 Analysis of PDEs +quant-ph/0412188 +0804.2707 Differential Geometry +0806.2412 Group Theory +0809.5097 Group Theory +0903.2953 +0905.4919 Differential Geometry +0906.5092 Instrumentation and Methods for Astrophysics +0906.5599 Plasma Physics +0910.4933 Differential Geometry +0912.2246 Phenomenology +1002.2564 Group Theory +1004.5301 Phenomenology +1009.5274 Differential Geometry +1011.3297 +1103.3034 Geometric Topology +1106.1574 Strongly Correlated Electrons +1107.5176 Atomic Physics +1110.2808 Probability +1111.0956 Materials Science +1111.2866 Algebraic Topology +1111.6513 Algebraic Geometry +1112.4404 Probability +1202.1773 Numerical Analysis +1202.2385 Group Theory +1202.3570 Statistics Theory +1202.5760 Algebraic Geometry +1208.3544 Theory +1208.4708 Atomic Physics +1209.5178 Pattern Formation and Solitons +1210.2975 Dynamical Systems +1210.4577 Group Theory +1210.6367 +1210.6373 Strongly Correlated Electrons +1211.4596 Theory +1212.0766 Analysis of PDEs +1301.0985 Algebraic Geometry +1301.3511 Superconductivity +1301.5452 +1302.1856 Rings and Algebras +1302.5868 Probability +1303.7344 Atomic Physics +1303.7374 Probability +1304.2028 +1304.4980 Quantum Gases +1305.0475 +1305.2327 Group Theory +1305.7440 Physics and Society +1306.1506 Geometric Topology +1306.3510 +1306.4125 Phenomenology +1306.5823 Atomic Physics +1306.6046 Geometric Topology +1307.2077 Differential Geometry +1307.6447 Differential Geometry +1307.6451 Differential Geometry +1308.1327 Probability +1308.1810 Populations and Evolution +1308.1871 Plasma Physics +1308.2528 Atomic Physics +1308.2666 Combinatorics +1309.4327 Algebraic Geometry +1309.4377 Numerical Analysis +1309.6430 Algebraic Geometry +1309.6966 Commutative Algebra +1310.2447 Computational Complexity +1310.6466 Combinatorics +1310.7207 Combinatorics +1310.8551 Mesoscale and Nanoscale Physics +1311.0285 Strongly Correlated Electrons +1311.1009 Instrumentation and Detectors +1311.2161 Differential Geometry +1311.2185 Analysis of PDEs +1311.2847 Instrumentation and Methods for Astrophysics +1311.3715 Computer Vision and Pattern Recognition +1311.3761 Instrumentation and Detectors +1311.4299 Atomic Physics +1311.6204 Data Structures and Algorithms +1311.7568 Differential Geometry +1312.0813 Combinatorics +1312.4272 Materials Science +1312.5959 Probability +1312.6995 Learning +1401.1288 +1401.2294 Dynamical Systems +1401.3236 Probability +1401.4433 +1401.5195 Number Theory +1401.5723 Mesoscale and Nanoscale Physics +1401.5839 +1402.0355 Optics +1402.3137 Theory +1402.3208 Theory +1402.4789 +1402.4872 Materials Science +1402.4915 Strongly Correlated Electrons +1402.7070 Superconductivity +1402.7080 Theory +1402.7342 Group Theory +1403.0079 Functional Analysis +1403.0616 Strongly Correlated Electrons +1403.1272 Numerical Analysis +1403.1847 Materials Science +1403.4528 Phenomenology +1403.4894 Materials Science +1403.5855 Probability +1403.6607 Chaotic Dynamics +1403.6943 +1404.0373 Cosmology and Nongalactic Astrophysics +1404.0485 Mesoscale and Nanoscale Physics +1404.2382 +1404.2944 +1404.3725 Cosmology and Nongalactic Astrophysics +1404.4266 +1404.6433 +1405.0328 Superconductivity +1405.1151 Mesoscale and Nanoscale Physics +1405.1160 Experiment +1405.1664 Mesoscale and Nanoscale Physics +1405.3464 Cosmology and Nongalactic Astrophysics +1405.4135 Strongly Correlated Electrons +1405.4556 Number Theory +1406.2993 Group Theory +1406.3204 Networking and Internet Architecture +1406.3209 Networking and Internet Architecture +1406.3941 Materials Science +1406.4728 Earth and Planetary Astrophysics +1406.5830 Instrumentation and Detectors +1406.7790 Mesoscale and Nanoscale Physics +1407.0445 Differential Geometry +1407.2207 Information Theory +1407.3631 Combinatorics +1407.3946 Mesoscale and Nanoscale Physics +1407.4983 Mesoscale and Nanoscale Physics +1407.5143 +1407.5168 Optimization and Control +1407.5256 Representation Theory +1407.5653 High Energy Astrophysical Phenomena +1407.5746 Optics +1407.5752 Probability +1407.5909 Theory +1407.5956 Phenomenology +1407.5991 +1407.6019 Cryptography and Security +1407.6022 Theory +1407.6025 Materials Science +1407.6027 Computation and Language +1407.6028 Geometric Topology +1407.6029 Neurons and Cognition +1407.6030 Other Quantitative Biology +1407.6033 Methodology +1407.6034 Networking and Internet Architecture +1407.6038 Functional Analysis +1407.6040 Computational Physics +1407.6044 Cosmology and Nongalactic Astrophysics +1407.6046 Group Theory +1407.6047 +1407.6048 Mesoscale and Nanoscale Physics +1407.6050 Differential Geometry +1407.6051 Materials Science +1407.6055 +1407.6056 Computers and Society +1407.6058 Mesoscale and Nanoscale Physics +1407.6062 Networking and Internet Architecture +1407.6065 Dynamical Systems +1407.6067 Learning +1407.6072 Superconductivity +1407.6073 +1407.6078 Information Theory +1407.6079 Information Theory +1407.6081 Information Theory +1407.6083 Information Theory +1407.6084 Applications +1407.6085 Information Theory +1407.6087 +1407.6093 Mesoscale and Nanoscale Physics +1407.6094 Machine Learning +1407.6096 Mesoscale and Nanoscale Physics +1407.6097 Operator Algebras +1407.6099 Computation and Language +1407.6100 Information Retrieval +1407.6101 Information Retrieval +1407.6102 Software Engineering +1407.6103 Software Engineering +1407.6104 Software Engineering +1407.6109 Optics +1407.6110 Quantitative Methods +1407.6112 Networking and Internet Architecture +1407.6115 Mesoscale and Nanoscale Physics +1407.6116 Software Engineering +1407.6119 Phenomenology +1407.6122 +1407.6124 Programming Languages +1407.6128 Information Retrieval +1407.6131 Computer Science and Game Theory +1407.6137 Materials Science +1407.6138 Algebraic Geometry +1407.6144 Data Structures and Algorithms +1407.6147 Analysis of PDEs +1407.6151 Accelerator Physics +1407.6152 +1407.6153 Distributed, Parallel, and Cluster Computing +1407.6154 Information Theory +1407.6155 General Topology +1407.6156 Plasma Physics +1407.6160 Differential Geometry +1407.6166 Artificial Intelligence +1407.6172 Theory +1407.6174 Computer Vision and Pattern Recognition +1407.6177 Geophysics +1407.6178 Data Structures and Algorithms +1407.6180 Symbolic Computation +1407.6182 Social and Information Networks +1407.6183 Data Structures and Algorithms +1407.6184 Other Condensed Matter +1407.6190 Discrete Mathematics +1407.6199 Strongly Correlated Electrons +1407.6200 Theory +1407.6201 Differential Geometry +1407.6204 Materials Science +1407.6206 Differential Geometry +1407.6207 Instrumentation and Detectors +1407.6208 Numerical Analysis +1407.6209 Physics and Society +1407.6215 Group Theory +1407.6216 Probability +1407.6218 Number Theory +1407.6219 Classical Analysis and ODEs +1407.6222 Economics +1407.6225 Networking and Internet Architecture +1407.6232 Analysis of PDEs +1407.6233 Analysis of PDEs +1407.6234 Number Theory +1407.6236 Optics +1407.6237 Computational Physics +1407.6238 Instrumentation and Detectors +1407.6242 Applications +1407.6245 Mathematical Software +1407.6246 History and Overview +1407.6255 Other Computer Science +1407.6256 Physics and Society +1407.6257 Other Computer Science +1407.6259 Dynamical Systems +1407.6261 Phenomenology +1407.6272 General Physics +1407.6278 +1407.6279 Theory +1407.6285 Soft Condensed Matter +1407.6289 Probability +1407.6290 Cryptography and Security +1407.6292 +1407.6293 Analysis of PDEs +1407.6298 Analysis of PDEs +1407.6303 Combinatorics +1407.6304 Differential Geometry +1407.6307 Classical Physics +1407.6314 Phenomenology +1407.6315 Artificial Intelligence +1407.6316 Representation Theory +1407.6317 Distributed, Parallel, and Cluster Computing +1407.6318 Computer Vision and Pattern Recognition +1407.6320 Analysis of PDEs +1407.6321 Computer Vision and Pattern Recognition +1407.6324 Instrumentation and Detectors +1407.6325 Combinatorics +1407.6332 Classical Physics +1407.6333 Physics and Society +1407.6334 General Finance +1407.6336 Analysis of PDEs +1407.6340 Genomics +1407.6342 Software Engineering +1407.6348 Probability +0707.0348 Adaptation and Self-Organizing Systems +0709.1631 Materials Science +0805.0485 Materials Science +0903.0316 +0910.2298 General Physics +1008.2878 Functional Analysis +1009.1422 +1010.0449 +1010.3459 Soft Condensed Matter +1011.3903 Analysis of PDEs +1103.4217 Algebraic Topology +1109.2404 +1111.3561 +1111.5811 Representation Theory +1112.2436 Analysis of PDEs +1201.2123 Combinatorics +1201.2648 Strongly Correlated Electrons +1203.2935 +1204.4123 Rings and Algebras +1205.1089 Analysis of PDEs +1205.2708 Cosmology and Nongalactic Astrophysics +1206.5850 General Physics +1207.5898 Rings and Algebras +1210.4627 Spectral Theory +1210.6296 Rings and Algebras +1211.0884 Differential Geometry +1211.3989 Combinatorics +1211.4848 Theory +1212.3773 Analysis of PDEs +1301.2105 Algebraic Geometry +1302.0300 Phenomenology +1303.0210 Cryptography and Security +1303.1448 Algebraic Topology +1303.2490 +1303.4450 Differential Geometry +1303.6674 Dynamical Systems +1303.7280 Analysis of PDEs +1304.4259 Combinatorics +1304.4615 +1304.5030 Analysis of PDEs +1304.7212 Biomolecules +1305.0743 Solar and Stellar Astrophysics +1306.5195 Materials Science +1307.2219 Analysis of PDEs +1307.7220 +1309.0712 +1309.1771 Commutative Algebra +1309.3584 Combinatorics +1309.5278 Experiment +1309.5553 Group Theory +1309.6786 Machine Learning +1309.7303 Rings and Algebras +1310.0130 Strongly Correlated Electrons +1310.4441 Molecular Networks +1310.5889 +1310.6302 Analysis of PDEs +1311.1306 Statistical Mechanics +1311.3921 +1311.3948 Combinatorics +1311.4719 Superconductivity +1311.5524 Cosmology and Nongalactic Astrophysics +1312.2432 Combinatorics +1312.2562 Algebraic Topology +1312.2898 Number Theory +1312.4191 +1312.5617 Trading and Market Microstructure +1312.6759 Theory +1312.7487 Complex Variables +1401.2137 Optics +1401.4309 Commutative Algebra +1401.4523 Strongly Correlated Electrons +1401.6893 +1402.2789 Statistical Mechanics +1402.2920 Statistical Mechanics +1402.2953 Theory +1402.5015 Statistical Mechanics +1402.5266 Statistical Mechanics +1402.6823 +1402.6956 +1403.0158 Analysis of PDEs +1403.0270 +1403.5233 Analysis of PDEs +1403.5939 Differential Geometry +1403.6793 Soft Condensed Matter +1404.0942 Populations and Evolution +1404.1409 +1404.2418 Analysis of PDEs +1404.2493 Theory +1404.4546 Differential Geometry +1404.7074 Phenomenology +1405.0522 Mesoscale and Nanoscale Physics +1405.1076 Experiment +1405.1081 Geophysics +1405.1938 Representation Theory +1405.2271 Systems and Control +1405.2497 Mesoscale and Nanoscale Physics +1405.2569 +1405.3128 Phenomenology +1405.4252 Optimization and Control +1405.6653 +1405.6984 Mesoscale and Nanoscale Physics +1405.7617 Theory +1406.0485 Cosmology and Nongalactic Astrophysics +1406.0916 Lattice +1406.2209 Cosmology and Nongalactic Astrophysics +1406.4666 Mesoscale and Nanoscale Physics +1406.4906 +1406.5052 Computers and Society +1406.7587 +1407.1102 Chemical Physics +1407.2040 Chemical Physics +1407.2128 Phenomenology +1407.2213 Number Theory +1407.2503 Mesoscale and Nanoscale Physics +1407.3061 High Energy Astrophysical Phenomena +1407.3402 Strongly Correlated Electrons +1407.6341 Geometric Topology +1407.6505 Strongly Correlated Electrons +1407.6792 Materials Science +1408.1084 Cosmology and Nongalactic Astrophysics +1408.1700 Quantum Gases +1408.2140 Functional Analysis +1408.2668 Solar and Stellar Astrophysics +1408.5821 +1408.6562 Differential Geometry +1409.1590 Cosmology and Nongalactic Astrophysics +1409.1882 Probability +1409.4159 Information Theory +1409.5263 Experiment +1409.5610 Materials Science +1409.5855 Superconductivity +1409.6030 Optimization and Control +1409.6182 Information Retrieval +1409.6420 Representation Theory +1409.6514 Atomic Physics +1409.6734 Analysis of PDEs +1409.6738 Chaotic Dynamics +1409.6742 Materials Science +1409.6743 Materials Science +1409.6744 Neurons and Cognition +1409.6745 Computer Vision and Pattern Recognition +1409.6751 Theory +1409.6760 Representation Theory +1409.6761 +1409.6763 Classical Analysis and ODEs +1409.6766 Exactly Solvable and Integrable Systems +1409.6767 Software Engineering +1409.6768 Software Engineering +1409.6770 History and Overview +1409.6771 Distributed, Parallel, and Cluster Computing +1409.6772 Chemical Physics +1409.6774 Dynamical Systems +1409.6782 Representation Theory +1409.6784 Exactly Solvable and Integrable Systems +1409.6786 Classical Analysis and ODEs +1409.6793 +1409.6794 Combinatorics +1409.6795 Combinatorics +1409.6796 Geometric Topology +1409.6798 Quantum Algebra +1409.6799 Materials Science +1409.6804 Analysis of PDEs +1409.6810 Combinatorics +1409.6812 Combinatorics +1409.6815 Strongly Correlated Electrons +1409.6822 Cosmology and Nongalactic Astrophysics +1409.6825 Software Engineering +1409.6827 Number Theory +1409.6831 Artificial Intelligence +1409.6832 Materials Science +1409.6833 Statistics Theory +1409.6834 Probability +1409.6838 Computer Vision and Pattern Recognition +1409.6848 Databases +1409.6849 Computational Physics +1409.6852 Materials Science +1409.6853 Functional Analysis +1409.6854 Statistics Theory +1409.6856 Logic in Computer Science +1409.6858 Theory +1409.6859 +1409.6862 Materials Science +1409.6863 Geometric Topology +1409.6864 Rings and Algebras +1409.6870 +1409.6879 Representation Theory +1409.6881 Logic +1409.6883 Systems and Control +1409.6884 Networking and Internet Architecture +1409.6885 Statistics Theory +1409.6886 Analysis of PDEs +1409.6890 Classical Analysis and ODEs +1409.6894 Differential Geometry +1409.6896 Exactly Solvable and Integrable Systems +1409.6898 Materials Science +1409.6902 Information Theory +1409.6903 Exactly Solvable and Integrable Systems +1409.6905 +1409.6915 Software Engineering +1409.6916 Software Engineering +1409.6917 Software Engineering +1409.6919 Software Engineering +1409.6920 Phenomenology +1409.6921 Combinatorics +1409.6922 Adaptation and Self-Organizing Systems +1409.6923 Software Engineering +1409.6924 Software Engineering +1409.6926 Software Engineering +1409.6927 +1409.6928 Software Engineering +1409.6930 Software Engineering +1409.6931 Software Engineering +1409.6940 Mathematical Finance +1409.6942 Materials Science +1409.6946 Probability +1409.6949 Combinatorics +1409.6958 Cosmology and Nongalactic Astrophysics +1409.6960 Combinatorics +1409.6963 Phenomenology +1409.6964 Digital Libraries +1409.6968 Instrumentation and Detectors +1409.6969 +1409.6973 Quantum Gases +1409.6974 +1409.6976 Numerical Analysis +1409.6977 Logic in Computer Science +1409.6980 Dynamical Systems +1409.6981 Methodology +1409.6982 History and Philosophy of Physics +1409.6988 Analysis of PDEs +1409.6989 Materials Science +1409.6991 Systems and Control +1409.6995 Metric Geometry +1409.7001 Statistical Mechanics +1409.7002 Statistical Finance +1409.7004 Commutative Algebra +1409.7006 Populations and Evolution +1409.7009 Soft Condensed Matter +1409.7012 Lattice +1409.7022 Accelerator Physics +1409.7024 Differential Geometry +1409.7034 Systems and Control +1409.7042 Networking and Internet Architecture +1409.7043 Materials Science +1409.7044 Geometric Topology +1409.7047 Networking and Internet Architecture +1409.7050 Algebraic Geometry +1409.7052 Materials Science +1409.7056 Combinatorics +1409.7057 General Physics +1409.7059 General Mathematics +1409.7060 Software Engineering +cond-mat/0210234 Strongly Correlated Electrons +cond-mat/0508392 Strongly Correlated Electrons +math-ph/0609051 +nlin/0604057 Adaptation and Self-Organizing Systems +nlin/0611041 Adaptation and Self-Organizing Systems +nlin/0611062 Adaptation and Self-Organizing Systems +quant-ph/0503078 +0810.0960 Mesoscale and Nanoscale Physics +0901.4663 Geometric Topology +0909.1851 Geometric Topology +0912.3894 Differential Geometry +1001.0585 Commutative Algebra +1009.0975 Quantum Gases +1012.4692 Algebraic Geometry +1104.0959 Functional Analysis +1104.2788 Computational Complexity +1107.3380 Computational Geometry +1108.5637 Functional Analysis +1111.4725 Strongly Correlated Electrons +1111.5900 Functional Analysis +1112.5862 Functional Analysis +1201.6054 Optimization and Control +1202.2006 Classical Analysis and ODEs +1202.4419 Discrete Mathematics +1202.5027 Superconductivity +1203.2442 Functional Analysis +1203.4696 Group Theory +1205.1575 Probability +1205.3112 +1206.0043 +1207.0440 Statistical Mechanics +1207.1612 Algebraic Geometry +1207.5465 +1208.0233 Commutative Algebra +1208.5581 Probability +1209.2642 Analysis of PDEs +1209.4009 Number Theory +1210.0004 Cosmology and Nongalactic Astrophysics +1210.0825 Superconductivity +1210.5091 Combinatorics +1210.7204 +1211.3875 Mesoscale and Nanoscale Physics +1212.2743 Representation Theory +1212.6924 Mesoscale and Nanoscale Physics +1301.3646 +1301.3728 +1301.4509 Superconductivity +1301.4882 Superconductivity +1301.5760 Combinatorics +1301.5802 Statistics Theory +1301.6432 Classical Analysis and ODEs +1301.6848 Classical Analysis and ODEs +1301.7495 Solar and Stellar Astrophysics +1301.7512 Computational Geometry +1303.0437 Analysis of PDEs +1303.3281 Strongly Correlated Electrons +1303.3752 Phenomenology +1303.4329 Combinatorics +1303.5818 Functional Analysis +1303.6014 Representation Theory +1304.0050 Combinatorics +1304.0717 Strongly Correlated Electrons +1304.1975 Functional Analysis +1304.3136 Number Theory +1305.0857 Phenomenology +1305.0993 Group Theory +1305.1131 Analysis of PDEs +1305.1379 Geometric Topology +1305.1695 Geometric Topology +1305.1726 Algebraic Geometry +1305.1933 Phenomenology +1305.5111 Strongly Correlated Electrons +1305.6089 Materials Science +1306.0681 Mesoscale and Nanoscale Physics +1306.0882 Phenomenology +1306.1283 +1306.2053 Data Structures and Algorithms +1306.3178 Analysis of PDEs +1306.3740 Superconductivity +1306.5657 K-Theory and Homology +1306.5988 Materials Science +1307.2074 Analysis of PDEs +1307.3897 Superconductivity +1307.4141 Populations and Evolution +1307.4745 Materials Science +1307.6028 Neurons and Cognition +1308.5669 Theory +1309.1445 Algebraic Topology +1309.2373 Classical Analysis and ODEs +1309.2962 +1309.5086 Theory +1309.5270 +1309.5573 Strongly Correlated Electrons +1309.5608 Probability +1309.6175 Solar and Stellar Astrophysics +1309.6453 Data Structures and Algorithms +1309.6607 Pattern Formation and Solitons +1310.1001 Mesoscale and Nanoscale Physics +1310.1721 Phenomenology +1310.1900 Algebraic Geometry +1310.3052 Pricing of Securities +1310.3519 Number Theory +1310.3909 Cosmology and Nongalactic Astrophysics +1310.4463 Atomic Physics +1310.4481 +1310.4925 Cosmology and Nongalactic Astrophysics +1310.5111 Social and Information Networks +1310.6915 +1310.6962 +1310.7517 Cosmology and Nongalactic Astrophysics +1310.7750 Solar and Stellar Astrophysics +1310.7842 Mesoscale and Nanoscale Physics +1311.0048 Phenomenology +1311.0055 Phenomenology +1311.0254 Mesoscale and Nanoscale Physics +1311.1811 +1311.2741 Atomic Physics +1311.3036 Optics +1311.5530 Mesoscale and Nanoscale Physics +1311.5616 Fluid Dynamics +1311.5800 Theory +1311.5824 Materials Science +1311.6091 Learning +1311.6565 Earth and Planetary Astrophysics +1311.7332 Plasma Physics +1312.0025 Cosmology and Nongalactic Astrophysics +1312.0633 Strongly Correlated Electrons +1312.1486 Superconductivity +1312.4510 Group Theory +1312.4570 Mesoscale and Nanoscale Physics +1312.4837 Phenomenology +1312.5699 Algebraic Topology +1312.6006 Mesoscale and Nanoscale Physics +1312.7369 Theory +1312.7783 Dynamical Systems +1401.0341 Solar and Stellar Astrophysics +1401.1275 Statistical Mechanics +1401.1478 Materials Science +1401.3252 Theory +1401.3288 Experiment +1401.6886 Other Condensed Matter +1401.6990 Superconductivity +1401.7367 Probability +1401.7387 Fluid Dynamics +1402.0322 Solar and Stellar Astrophysics +1402.1140 Cosmology and Nongalactic Astrophysics +1402.1756 +1402.1889 Instrumentation and Detectors +1402.3360 Algebraic Geometry +1402.3751 Mesoscale and Nanoscale Physics +1402.3875 Biomolecules +1402.4204 Phenomenology +1402.5152 Rings and Algebras +1402.5684 Artificial Intelligence +1402.6410 Materials Science +1402.6921 +1402.7101 Soft Condensed Matter +1402.7366 Materials Science +1403.0285 Algebraic Geometry +1403.0679 Algebraic Geometry +1403.0950 Systems and Control +1403.1100 Mesoscale and Nanoscale Physics +1403.1255 Neurons and Cognition +1403.1263 Astrophysics of Galaxies +1403.1279 Data Structures and Algorithms +1403.1288 Combinatorics +1403.1291 Algebraic Topology +1403.1302 Statistics Theory +1403.1303 Algebraic Topology +1403.1305 Distributed, Parallel, and Cluster Computing +1403.1306 +1403.1308 Optics +1403.1310 Information Retrieval +1403.1313 Computational Engineering, Finance, and Science +1403.1314 Computation and Language +1403.1317 Computational Engineering, Finance, and Science +1403.1319 Computational Engineering, Finance, and Science +1403.1320 +1403.1322 Cryptography and Security +1403.1324 Commutative Algebra +1403.1329 Learning +1403.1333 +1403.1334 Optics +1403.1336 Computational Engineering, Finance, and Science +1403.1340 +1403.1345 Statistics Theory +1403.1347 Quantitative Methods +1403.1350 General Physics +1403.1351 Analysis of PDEs +1403.1353 Computer Vision and Pattern Recognition +1403.1357 Materials Science +1403.1359 +1403.1361 Analysis of PDEs +1403.1362 Computer Vision and Pattern Recognition +1403.1363 Physics and Society +1403.1365 +1403.1376 Data Structures and Algorithms +1403.1381 Networking and Internet Architecture +1403.1382 Analysis of PDEs +1403.1383 Networking and Internet Architecture +1403.1387 Group Theory +1403.1388 Statistics Theory +1403.1391 Analysis of PDEs +1403.1396 Functional Analysis +1403.1403 Physics and Society +1403.1407 Phenomenology +1403.1409 Algebraic Geometry +1403.1410 Theory +1403.1414 +1403.1417 Molecular Networks +1403.1426 Algebraic Geometry +1403.1427 Rings and Algebras +1403.1428 Optics +1403.1429 Representation Theory +1403.1434 Analysis of PDEs +1403.1439 Materials Science +1403.1441 Probability +1403.1442 Differential Geometry +1403.1443 Earth and Planetary Astrophysics +1403.1444 Solar and Stellar Astrophysics +1403.1446 Mesoscale and Nanoscale Physics +1403.1451 Information Retrieval +1403.1454 Representation Theory +1403.1455 Robotics +1403.1457 Number Theory +1403.1460 Information Theory +1403.1465 Computers and Society +1403.1468 Cryptography and Security +1403.1471 Materials Science +1403.1472 Probability +1403.1474 Quantum Gases +1403.1475 Experiment +1403.1481 Machine Learning +1403.1483 General Physics +1403.1486 Social and Information Networks +1403.1487 General Physics +1403.1491 Soft Condensed Matter +1403.1493 Mesoscale and Nanoscale Physics +1403.1497 Artificial Intelligence +1403.1501 Sound +1403.1502 Group Theory +1403.1509 Pricing of Securities +1403.1511 Dynamical Systems +1403.1514 Statistical Mechanics +1403.1516 Dynamical Systems +1403.1517 Soft Condensed Matter +1403.1518 Mesoscale and Nanoscale Physics +1403.1520 Plasma Physics +1403.1521 Artificial Intelligence +1403.1529 General Topology +1403.1537 History and Philosophy of Physics +1403.1541 Information Theory +1403.1542 Group Theory +1403.1545 Commutative Algebra +1403.1551 Cell Behavior +1403.1556 Data Structures and Algorithms +1403.1557 +1403.1558 Representation Theory +1403.1560 Mesoscale and Nanoscale Physics +1403.1562 Populations and Evolution +1403.1563 Optics +1403.1564 Combinatorics +1403.1566 Phenomenology +1403.1567 Probability +1403.1571 Probability +1403.1572 Physics and Society +alg-geom/9210008 Algebraic Geometry +0804.3754 Theory +0911.0569 Statistical Mechanics +0911.2679 Geometric Topology +0911.3833 Combinatorics +1009.3683 Combinatorics +1011.0089 +1011.4263 Combinatorics +1106.2509 Group Theory +1107.0060 Combinatorics +1107.4237 Classical Physics +1207.3945 Optics +1210.6663 Phenomenology +1210.7490 Superconductivity +1211.3028 Geometric Topology +1301.6580 Numerical Analysis +1303.3496 Analysis of PDEs +1304.0532 +1304.3400 Mesoscale and Nanoscale Physics +1304.7587 Combinatorics +1305.0267 Phenomenology +1305.3039 Statistical Mechanics +1305.3041 Computational Complexity +1306.1503 Probability +1306.2518 Theory +1306.4523 Quantum Gases +1306.4774 Information Theory +1306.5616 Optimization and Control +1306.5644 Theory +1307.4220 Cosmology and Nongalactic Astrophysics +1308.5357 Strongly Correlated Electrons +1309.1893 +1310.4250 Solar and Stellar Astrophysics +1310.7284 Atomic and Molecular Clusters +1311.0885 +1311.1056 Lattice +1311.6852 +1312.1290 Computational Physics +1312.2964 +1312.3654 Strongly Correlated Electrons +1312.5100 Theory +1312.7097 Theory +1312.7849 Mesoscale and Nanoscale Physics +1401.0735 Quantum Gases +1401.2607 Information Theory +1401.2689 Number Theory +1401.5573 Mesoscale and Nanoscale Physics +1401.6761 Neurons and Cognition +1402.1777 Social and Information Networks +1402.2597 Commutative Algebra +1402.3375 Neurons and Cognition +1402.5693 Information Theory +1402.6709 Statistical Mechanics +1403.1349 Computation and Language +1403.1367 +1403.1637 Pricing of Securities +1403.2104 Cosmology and Nongalactic Astrophysics +1403.3136 Operator Algebras +1403.3241 Commutative Algebra +1403.3416 Theory +1403.5683 Physics and Society +1403.6110 Superconductivity +1404.0171 Algebraic Geometry +1404.2180 Atomic Physics +1404.2940 Classical Physics +1404.3194 Solar and Stellar Astrophysics +1404.5221 Numerical Analysis +1404.5230 Phenomenology +1404.5680 Atomic Physics +1404.7058 Materials Science +1404.7136 Earth and Planetary Astrophysics +1405.2120 Populations and Evolution +1405.3047 Strongly Correlated Electrons +1405.5113 Analysis of PDEs +1405.6995 +1405.7056 +1406.1191 Cosmology and Nongalactic Astrophysics +1406.2046 Optics +1406.3416 Number Theory +1406.6489 +1406.7127 +1407.0356 Solar and Stellar Astrophysics +1407.0385 Logic in Computer Science +1407.0729 Programming Languages +1407.1019 Phenomenology +1407.1698 +1407.2585 Geometric Topology +1407.6277 Mesoscale and Nanoscale Physics +1407.8182 Mesoscale and Nanoscale Physics +1408.0481 Cosmology and Nongalactic Astrophysics +1408.0881 Statistics Theory +1408.0955 +1408.2866 Chemical Physics +1408.4513 Mesoscale and Nanoscale Physics +1408.4948 Experiment +1408.5886 High Energy Astrophysical Phenomena +1408.7079 Theory +1409.1427 Information Theory +1409.2141 Other Computer Science +1409.2917 Atomic Physics +1409.5822 Quantum Algebra +1409.5981 Instrumentation and Methods for Astrophysics +1409.8659 Atomic Physics +1410.0549 +1410.0635 Differential Geometry +1410.1027 Mesoscale and Nanoscale Physics +1410.1447 Probability +1410.2368 Optics +1410.2442 Artificial Intelligence +1410.2554 Probability +1410.3562 +1410.3929 Other Statistics +1410.4068 Logic +1410.4116 Complex Variables +1410.4470 Computer Vision and Pattern Recognition +1410.4528 Rings and Algebras +1410.4552 Dynamical Systems +1410.4553 Lattice +1410.4554 +1410.4573 Learning +1410.4574 Metric Geometry +1410.4577 Soft Condensed Matter +1410.4578 Statistics Theory +1410.4580 Solar and Stellar Astrophysics +1410.4583 Computational Physics +1410.4585 Combinatorics +1410.4588 Information Theory +1410.4591 Analysis of PDEs +1410.4596 Optics +1410.4598 Computational Engineering, Finance, and Science +1410.4601 Systems and Control +1410.4602 Physics Education +1410.4603 Graphics +1410.4604 Learning +1410.4606 Superconductivity +1410.4609 Functional Analysis +1410.4610 +1410.4612 Information Theory +1410.4613 Optimization and Control +1410.4614 Mesoscale and Nanoscale Physics +1410.4616 Information Retrieval +1410.4622 Robotics +1410.4626 Optics +1410.4634 Instrumentation and Methods for Astrophysics +1410.4635 Statistical Mechanics +1410.4636 Statistical Mechanics +1410.4638 Number Theory +1410.4643 Probability +1410.4644 Soft Condensed Matter +1410.4649 Number Theory +1410.4662 Differential Geometry +1410.4664 Functional Analysis +1410.4665 Software Engineering +1410.4666 Functional Analysis +1410.4668 +1410.4671 +1410.4672 Cryptography and Security +1410.4673 Computer Vision and Pattern Recognition +1410.4675 Computers and Society +1410.4676 Probability +1410.4677 Computers and Society +1410.4682 Statistics Theory +1410.4683 Rings and Algebras +1410.4685 Instrumentation and Methods for Astrophysics +1410.4686 Algebraic Geometry +1410.4689 Optics +1410.4693 Rings and Algebras +1410.4695 Networking and Internet Architecture +1410.4699 Atomic Physics +1410.4700 Networking and Internet Architecture +1410.4705 Experiment +1410.4706 Combinatorics +1410.4709 Statistics Theory +1410.4710 Combinatorics +1410.4713 Distributed, Parallel, and Cluster Computing +1410.4714 Experiment +1410.4715 Theory +1410.4716 Probability +1410.4730 Multimedia +1410.4732 Methodology +1410.4734 Other Condensed Matter +1410.4736 Analysis of PDEs +1410.4737 Atomic Physics +1410.4739 Atomic Physics +1410.4741 Number Theory +1410.4742 Group Theory +1410.4744 Learning +1410.4745 Phenomenology +1410.4747 Materials Science +1410.4752 Functional Analysis +1410.4755 Computation +1410.4757 General Physics +1410.4758 +1410.4760 Computers and Society +1410.4762 Materials Science +1410.4774 Digital Libraries +1410.4775 Phenomenology +1410.4777 Machine Learning +1410.4782 Phenomenology +1410.4783 Algebraic Geometry +1410.4788 +1410.4792 Methodology +1410.4793 Materials Science +1410.4795 Cryptography and Security +1410.4800 Probability +1410.4802 Biological Physics +1410.4809 Probability +1410.4813 Algebraic Geometry +1410.4817 Phenomenology +1410.4818 Phenomenology +1410.4821 Optimization and Control +1410.4822 Instrumentation and Methods for Astrophysics +1410.4826 Lattice +1410.4828 Optimization and Control +1410.4830 General Mathematics +1410.4831 Information Theory +1410.4834 K-Theory and Homology +nlin/0105004 Adaptation and Self-Organizing Systems +physics/0512131 General Physics +0707.0153 Mesoscale and Nanoscale Physics +0810.1884 Complex Variables +0811.3622 +0911.4076 Statistics Theory +0912.4467 Strongly Correlated Electrons +1007.1719 Probability +1009.0953 General Physics +1010.0548 Differential Geometry +1106.5411 Representation Theory +1108.4107 Quantum Gases +1204.1316 Superconductivity +1204.1364 Differential Geometry +1206.3626 Group Theory +1206.4414 Superconductivity +1207.4447 Statistics Theory +1209.0955 Materials Science +1209.4177 Statistics Theory +1210.3664 Information Theory +1210.5215 Physics and Society +1211.6949 Differential Geometry +1212.3148 Mesoscale and Nanoscale Physics +1301.5244 Classical Analysis and ODEs +1301.5255 Classical Analysis and ODEs +1301.5429 Classical Analysis and ODEs +1302.5607 Social and Information Networks +1303.1758 Phenomenology +1303.3688 Strongly Correlated Electrons +1303.3745 Materials Science +1303.4724 +1303.7183 Analysis of PDEs +1304.0164 Phenomenology +1304.4584 Materials Science +1304.6981 Solar and Stellar Astrophysics +1305.4804 Cosmology and Nongalactic Astrophysics +1305.4870 Theory +1306.0431 Discrete Mathematics +1306.2138 Theory +1307.1567 Rings and Algebras +1307.1574 Probability +1307.4441 Strongly Correlated Electrons +1308.1710 Differential Geometry +1308.5364 +1309.0145 Information Theory +1309.1192 Computation +1309.3539 Logic +1309.7978 Mesoscale and Nanoscale Physics +1310.0092 Probability +1310.2926 Methodology +1310.4143 +1310.4644 Representation Theory +1310.5006 Fluid Dynamics +1310.5420 Information Theory +1310.8379 Plasma Physics +1311.7268 Atomic Physics +1312.1426 +1312.3517 Probability +1312.3781 Theory +1312.6060 +1312.6624 Programming Languages +1312.7494 Differential Geometry +1401.1421 Analysis of PDEs +1401.1859 Instrumentation and Methods for Astrophysics +1401.3387 Information Theory +1401.3822 Analysis of PDEs +1401.4453 General Physics +1401.6211 Algebraic Geometry +1401.6783 Probability +1402.0869 Phenomenology +1402.2158 +1402.2358 Classical Analysis and ODEs +1402.2608 General Physics +1402.3262 Materials Science +1402.4493 +1402.5232 Statistical Mechanics +1402.5561 Strongly Correlated Electrons +1402.6331 Theory +1402.6804 Logic in Computer Science +1403.0812 Logic +1403.0885 Probability +1403.1082 Mesoscale and Nanoscale Physics +1403.1622 Theory +1403.2196 Theory +1403.2773 Plasma Physics +1403.3035 Atomic Physics +1403.3469 +1403.5487 Superconductivity +1403.6462 Cosmology and Nongalactic Astrophysics +1403.7206 Mesoscale and Nanoscale Physics +1403.7735 Networking and Internet Architecture +1403.7896 Superconductivity +1404.1113 Information Theory +1404.1442 Probability +1404.1900 Cryptography and Security +1404.3096 +1404.3824 Phenomenology +1404.4108 Learning +1404.4495 Formal Languages and Automata Theory +1404.4598 Combinatorics +1404.5484 Plasma Physics +1404.5686 Databases +1404.5922 Solar and Stellar Astrophysics +1404.6784 Artificial Intelligence +1404.7414 Software Engineering +1405.1135 Data Analysis, Statistics and Probability +1405.1935 Phenomenology +1405.2629 +1405.2814 Networking and Internet Architecture +1405.3115 Mesoscale and Nanoscale Physics +1405.3524 Probability +1405.4663 Dynamical Systems +1405.5268 Learning +1405.5825 General Physics +1405.6096 Combinatorics +1405.7920 Theory +1406.0178 Mesoscale and Nanoscale Physics +1406.1132 +1406.1715 Mesoscale and Nanoscale Physics +1406.1729 Optics +1406.2255 Networking and Internet Architecture +1406.2583 Combinatorics +1406.2680 Materials Science +1406.3384 Theory +1406.4368 Rings and Algebras +1406.6146 +1406.6189 Optics +1406.6438 Fluid Dynamics +1406.6610 Differential Geometry +1406.6905 +1406.7258 Superconductivity +1407.0166 Information Theory +1407.0168 Algebraic Geometry +1407.0777 Number Theory +1407.1395 Information Theory +1407.1551 Accelerator Physics +1407.2016 Materials Science +1407.2218 Analysis of PDEs +1407.2220 Social and Information Networks +1407.2241 Social and Information Networks +1407.2269 Genomics +1407.2271 Solar and Stellar Astrophysics +1407.2275 Computational Geometry +1407.2276 Physics Education +1407.2279 Databases +1407.2280 High Energy Astrophysical Phenomena +1407.2285 Combinatorics +1407.2287 Category Theory +1407.2288 Astrophysics of Galaxies +1407.2292 Phenomenology +1407.2293 Representation Theory +1407.2294 Geometric Topology +1407.2296 Representation Theory +1407.2300 Representation Theory +1407.2321 Representation Theory +1407.2326 Representation Theory +1407.2327 Representation Theory +1407.2330 Software Engineering +1407.2331 Fluid Dynamics +1407.2334 Functional Analysis +1407.2338 Optics +1407.2339 Complex Variables +1407.2343 Computer Vision and Pattern Recognition +1407.2344 Analysis of PDEs +1407.2345 Optics +1407.2346 Number Theory +1407.2354 Representation Theory +1407.2356 Information Theory +1407.2357 Cryptography and Security +1407.2358 Emerging Technologies +1407.2360 Rings and Algebras +1407.2363 Rings and Algebras +1407.2364 Representation Theory +1407.2365 Representation Theory +1407.2367 Dynamical Systems +1407.2373 Number Theory +1407.2377 Systems and Control +1407.2378 Populations and Evolution +1407.2379 Computers and Society +1407.2380 Number Theory +1407.2382 Soft Condensed Matter +1407.2383 Rings and Algebras +1407.2384 Representation Theory +1407.2385 Representation Theory +1407.2387 Representation Theory +1407.2388 Number Theory +1407.2390 Computer Vision and Pattern Recognition +1407.2393 Functional Analysis +1407.2394 Information Theory +1407.2395 Numerical Analysis +1407.2398 Operator Algebras +1407.2399 Optimization and Control +1407.2401 Group Theory +1407.2404 +1407.2407 Data Structures and Algorithms +1407.2408 Materials Science +1407.2409 Mesoscale and Nanoscale Physics +1407.2412 Other Computer Science +1407.2415 Information Theory +1407.2421 Cryptography and Security +1407.2422 Instrumentation and Methods for Astrophysics +1407.2423 Cryptography and Security +1407.2425 Populations and Evolution +1407.2427 Mesoscale and Nanoscale Physics +1407.2429 Mesoscale and Nanoscale Physics +1407.2430 Mesoscale and Nanoscale Physics +1407.2431 Mesoscale and Nanoscale Physics +1407.2435 Materials Science +1407.2436 Classical Analysis and ODEs +1407.2437 Computers and Society +1407.2441 Group Theory +1407.2445 Phenomenology +1407.2447 Solar and Stellar Astrophysics +1407.2449 Classical Analysis and ODEs +1407.2452 Geophysics +1407.2456 Instrumentation and Detectors +1407.2457 Probability +1407.2458 Probability +1407.2461 Discrete Mathematics +1407.2465 Number Theory +1407.2466 Operator Algebras +1407.2469 +1407.2470 +1407.2475 Classical Analysis and ODEs +1407.2478 Mesoscale and Nanoscale Physics +1407.2482 Information Theory +1407.2486 Category Theory +1407.2487 Discrete Mathematics +1407.2488 Populations and Evolution +1407.2494 Complex Variables +1407.2496 Number Theory +1407.2504 Complex Variables +1407.2510 Discrete Mathematics +1407.2514 Pricing of Securities +1407.2517 Analysis of PDEs +1407.2518 Information Theory +1407.2520 Numerical Analysis +1407.2521 Instrumentation and Methods for Astrophysics +1407.2522 +1407.2523 Computational Geometry +1407.2524 Data Structures and Algorithms +1407.2525 Combinatorics +1407.2528 +1407.2529 Algebraic Geometry +1407.2535 Social and Information Networks +1407.2541 Software Engineering +1407.2544 Robotics +1407.2547 Analysis of PDEs +1407.2548 Quantitative Methods +1407.2549 Astrophysics of Galaxies +1407.2551 Differential Geometry +1407.2554 Mesoscale and Nanoscale Physics +1407.2561 Functional Analysis +1407.2563 Dynamical Systems +1407.2576 Computer Science and Game Theory +1407.2580 Populations and Evolution +1407.2583 Commutative Algebra +1407.2586 Disordered Systems and Neural Networks +1407.2587 Social and Information Networks +1407.2588 Combinatorics +1407.2591 Astrophysics of Galaxies +1407.2592 Optimization and Control +1407.2593 Optimization and Control +1407.2599 Optimization and Control +1407.2600 Cosmology and Nongalactic Astrophysics +hep-ph/0612298 Phenomenology +0705.1194 +0803.2747 +0808.0105 Materials Science +0906.4370 Cosmology and Nongalactic Astrophysics +0909.1133 +1003.2990 Functional Analysis +1008.1003 Operator Algebras +1008.1716 Statistics Theory +1011.2713 Probability +1102.0300 Probability +1104.0963 Functional Analysis +1104.3502 Probability +1107.4637 Computer Vision and Pattern Recognition +1109.0435 Trading and Market Microstructure +1111.0151 Probability +1111.0152 Probability +1111.1852 Astrophysics of Galaxies +1112.5096 Dynamical Systems +1201.2320 Optimization and Control +1201.2650 Astrophysics of Galaxies +1201.4601 Analysis of PDEs +1201.5972 Computational Complexity +1201.6630 Quantum Gases +1202.0986 Functional Analysis +1202.5905 +1203.3566 Spectral Theory +1203.4433 Differential Geometry +1203.6611 Metric Geometry +1204.0665 Optimization and Control +1204.1613 Group Theory +1204.2432 Superconductivity +1204.3428 Differential Geometry +1204.4416 Phenomenology +1204.5312 Optics +1204.6538 Quantitative Methods +1205.0308 Group Theory +1205.0615 Dynamical Systems +1205.0931 Other Quantitative Biology +1205.6887 Numerical Analysis +1206.5180 Probability +1207.0901 Algebraic Geometry +1207.1779 +1207.5955 High Energy Astrophysical Phenomena +1207.6787 +1208.0493 +1208.1363 Numerical Analysis +1208.2546 +1208.2680 Biomolecules +1208.6350 Genomics +1209.2631 Materials Science +1209.3533 Probability +1209.4096 Probability +1210.0070 +1210.0521 Dynamical Systems +1210.0597 Theory +1210.2069 Spectral Theory +1210.2467 +1210.4246 Social and Information Networks +1210.7572 Optimization and Control +1211.0072 Mesoscale and Nanoscale Physics +1211.1066 Optics +1211.1143 Cell Behavior +1211.4846 Atmospheric and Oceanic Physics +1211.5167 Physics and Society +1211.6293 Quantum Algebra +1211.6664 Quantitative Methods +1211.6811 Optics +1212.0271 Theory +1212.1343 Mesoscale and Nanoscale Physics +1212.1452 Cosmology and Nongalactic Astrophysics +1212.4666 +1212.5214 +1212.6676 Physics and Society +1212.6710 +1301.1240 Fluid Dynamics +1301.2326 +1301.3623 Mesoscale and Nanoscale Physics +1301.4302 Biological Physics +1301.4319 Optics +1301.5369 Materials Science +1302.0600 +1302.0800 +1302.1678 Numerical Analysis +1302.2511 Soft Condensed Matter +1302.2563 Physics and Society +1302.2915 Phenomenology +1302.5282 Strongly Correlated Electrons +1302.5288 Theory +1302.6303 Numerical Analysis +1302.6952 Neurons and Cognition +1302.7224 +1302.7301 Populations and Evolution +1303.0564 Populations and Evolution +1303.1432 Populations and Evolution +1303.2284 Genomics +1303.4147 Combinatorics +1303.4360 Pattern Formation and Solitons +1303.4613 Plasma Physics +1303.4666 Cosmology and Nongalactic Astrophysics +1303.6039 +1303.6166 Information Theory +1303.6525 Quantitative Methods +1303.6738 Statistical Mechanics +1303.7231 Cosmology and Nongalactic Astrophysics +1304.0357 Human-Computer Interaction +1304.0479 Tissues and Organs +1304.0522 Accelerator Physics +1304.0974 Numerical Analysis +1304.1182 +1304.3744 Dynamical Systems +1304.3965 Dynamical Systems +1304.4000 Analysis of PDEs +1304.4025 Biological Physics +1304.4359 +1304.4673 Populations and Evolution +1304.4704 Physics and Society +1304.5034 Networking and Internet Architecture +1304.5519 Populations and Evolution +1304.6079 Theory +1304.6456 Optimization and Control +1304.6479 Accelerator Physics +1304.6966 Genomics +1304.7150 Phenomenology +1304.7422 Instrumentation and Detectors +1304.7782 Cell Behavior +1304.7794 Theory +1305.0100 Cell Behavior +1305.0498 Cosmology and Nongalactic Astrophysics +1305.0522 Operator Algebras +1305.0560 Astrophysics of Galaxies +1305.0672 Instrumentation and Detectors +1305.0676 Chemical Physics +1305.1299 Cosmology and Nongalactic Astrophysics +1305.2164 Chemical Physics +1305.2716 Trading and Market Microstructure +1305.3027 +1305.3075 Quantitative Methods +1305.3450 Physics and Society +1305.3661 Experiment +1305.5090 Statistical Mechanics +1305.5268 Numerical Analysis +1305.5453 Plasma Physics +1305.6135 Cosmology and Nongalactic Astrophysics +1305.6305 Strongly Correlated Electrons +1305.7219 Phenomenology +1305.7301 Chaotic Dynamics +1306.0146 Fluid Dynamics +1306.0196 Social and Information Networks +1306.0215 General Finance +1306.0251 Operator Algebras +1306.0503 Materials Science +1306.1222 Algebraic Geometry +1306.1273 Chemical Physics +1306.1533 Cosmology and Nongalactic Astrophysics +1306.1569 Genomics +1306.1573 Dynamical Systems +1306.1944 Strongly Correlated Electrons +1306.2269 Numerical Analysis +1306.2372 +1306.2883 Soft Condensed Matter +1306.2892 Soft Condensed Matter +1306.3436 Phenomenology +1306.3625 Probability +1306.3933 Medical Physics +1306.4686 Cosmology and Nongalactic Astrophysics +1306.4951 Phenomenology +1306.5104 Populations and Evolution +1306.5184 Instrumentation and Methods for Astrophysics +1306.5210 Phenomenology +1306.5754 Quantum Gases +1306.5942 Numerical Analysis +1306.6570 Chaotic Dynamics +1306.6919 Probability +1307.0058 Neurons and Cognition +1307.0158 Combinatorics +1307.0546 Superconductivity +1307.0869 Genomics +1307.1038 +1307.1105 +1307.1509 Lattice +1307.2126 Medical Physics +1307.2127 Numerical Analysis +1307.2544 Analysis of PDEs +1307.3622 Chemical Physics +1307.3837 Pattern Formation and Solitons +1307.4279 Cryptography and Security +1307.4412 Phenomenology +1307.4741 +1307.4857 Cosmology and Nongalactic Astrophysics +1307.4920 +1307.5386 Optimization and Control +1307.5576 Methodology +1307.5763 Cosmology and Nongalactic Astrophysics +1307.6016 Chaotic Dynamics +1307.6086 Physics and Society +1307.6283 High Energy Astrophysical Phenomena +1307.6611 Chemical Physics +1307.6664 Plasma Physics +1307.6722 Earth and Planetary Astrophysics +1307.7043 Subcellular Processes +1307.7084 Cell Behavior +1307.7415 +1307.7583 Optics +1307.7665 Soft Condensed Matter +1307.7774 Optimization and Control +1307.7980 Cosmology and Nongalactic Astrophysics +1307.8345 High Energy Astrophysical Phenomena +1307.8392 Quantum Gases +1308.0029 Physics and Society +1308.0171 Materials Science +1308.0526 Data Analysis, Statistics and Probability +1308.1542 Materials Science +1308.1758 Numerical Analysis +1308.2209 Phenomenology +1308.2358 Combinatorics +1308.2526 Instrumentation and Detectors +1308.3060 Information Retrieval +1308.3205 Commutative Algebra +1308.3331 Risk Management +1308.3569 +1308.3736 Cosmology and Nongalactic Astrophysics +1308.3943 Optics +1308.4135 High Energy Astrophysical Phenomena +1308.4234 Superconductivity +1308.4256 Populations and Evolution +1308.4570 Classical Physics +1308.4598 Statistical Mechanics +1308.4917 Quantitative Methods +1308.4950 Classical Analysis and ODEs +1308.5073 Mesoscale and Nanoscale Physics +1308.5078 Mesoscale and Nanoscale Physics +1308.5082 Mesoscale and Nanoscale Physics +1308.5083 Mesoscale and Nanoscale Physics +1308.5193 Molecular Networks +1308.5430 Populations and Evolution +1308.5682 High Energy Astrophysical Phenomena +1308.5703 Databases +1308.5817 Superconductivity +1308.5826 Molecular Networks +1308.5952 Numerical Analysis +1308.6296 +1309.0224 +1309.0667 Quantum Gases +1309.1104 +1309.1189 Plasma Physics +1309.1495 Number Theory +1309.1646 Cosmology and Nongalactic Astrophysics +1309.1764 Phenomenology +1309.1955 Phenomenology +1309.1997 Accelerator Physics +1309.2092 Atomic Physics +1309.2261 Optics +1309.2293 Phenomenology +1309.2315 Cosmology and Nongalactic Astrophysics +1309.2509 Statistical Mechanics +1309.2586 +1309.2594 Statistical Mechanics +1309.2803 Plasma Physics +1309.2855 Materials Science +1309.3072 High Energy Astrophysical Phenomena +1309.3078 High Energy Astrophysical Phenomena +1309.3183 +1309.3531 Cell Behavior +1309.3572 Mesoscale and Nanoscale Physics +1309.3609 Cosmology and Nongalactic Astrophysics +1309.3638 Theory +1309.3916 Probability +1309.3941 Soft Condensed Matter +1309.4156 Physics and Society +1309.4467 Molecular Networks +1309.4566 Cosmology and Nongalactic Astrophysics +1309.4665 Other Condensed Matter +1309.4836 +1309.5136 Molecular Networks +1309.5238 Soft Condensed Matter +1309.5301 Distributed, Parallel, and Cluster Computing +1309.5505 Superconductivity +1309.5764 Statistical Mechanics +1309.6084 Superconductivity +1309.6160 High Energy Astrophysical Phenomena +1309.6197 Atmospheric and Oceanic Physics +1309.6424 +1309.6622 +1309.6688 Theory +1309.6975 Materials Science +1309.7030 Phenomenology +1309.7224 Strongly Correlated Electrons +1309.7274 Materials Science +1309.7392 Instrumentation and Methods for Astrophysics +1309.7660 Cosmology and Nongalactic Astrophysics +1309.7966 Neurons and Cognition +1309.7988 Phenomenology +1310.0008 Earth and Planetary Astrophysics +1310.0070 Emerging Technologies +1310.0218 Biological Physics +1310.0235 Soft Condensed Matter +1310.0388 Solar and Stellar Astrophysics +1310.0391 Materials Science +1310.0492 High Energy Astrophysical Phenomena +1310.0789 Materials Science +1310.0859 Cosmology and Nongalactic Astrophysics +1310.0897 Number Theory +1310.1550 Materials Science +1310.2103 Theory +1310.2170 High Energy Astrophysical Phenomena +1310.2295 Cosmology and Nongalactic Astrophysics +1310.2734 +1310.2818 +1310.2850 Mesoscale and Nanoscale Physics +1310.2898 Pattern Formation and Solitons +1310.2952 Astrophysics of Galaxies +1310.3117 Chaotic Dynamics +1310.3196 Cosmology and Nongalactic Astrophysics +1310.3318 +1310.3355 Optics +1310.3380 Cosmology and Nongalactic Astrophysics +1310.3734 Phenomenology +1310.3932 Populations and Evolution +1310.3979 Soft Condensed Matter +1310.4380 Phenomenology +1310.4835 Cosmology and Nongalactic Astrophysics +1310.5021 Materials Science +1310.5040 Materials Science +1310.5151 Cosmology and Nongalactic Astrophysics +1310.5405 Statistical Mechanics +1310.5527 Adaptation and Self-Organizing Systems +1310.5637 Molecular Networks +1310.5696 +1310.5718 Phenomenology +1310.5753 Theory +1310.6080 Optics +1310.6117 Materials Science +1310.6419 Disordered Systems and Neural Networks +1310.6859 Solar and Stellar Astrophysics +1310.6922 +1310.6972 +1310.6986 Cosmology and Nongalactic Astrophysics +1310.6995 Mesoscale and Nanoscale Physics +1310.7079 Medical Physics +1310.7457 Theory +1310.7463 Cosmology and Nongalactic Astrophysics +1310.7503 Solar and Stellar Astrophysics +1310.7581 Cosmology and Nongalactic Astrophysics +1310.7585 Earth and Planetary Astrophysics +1310.7715 +1310.7861 Instrumentation and Methods for Astrophysics +1310.7922 Phenomenology +1310.8321 Disordered Systems and Neural Networks +1310.8561 Earth and Planetary Astrophysics +1310.8567 Solar and Stellar Astrophysics +1311.0009 Solar and Stellar Astrophysics +1311.0161 Superconductivity +1311.0418 Materials Science +1311.0559 Materials Science +1311.0893 Pattern Formation and Solitons +1311.0910 Plasma Physics +1311.1178 Materials Science +1311.1212 Cosmology and Nongalactic Astrophysics +1311.1235 +1311.1248 Phenomenology +1311.1352 High Energy Astrophysical Phenomena +1311.1441 Materials Science +1311.1448 Materials Science +1311.1467 Disordered Systems and Neural Networks +1311.1693 Solar and Stellar Astrophysics +1311.1778 Mesoscale and Nanoscale Physics +1311.2187 Computational Geometry +1311.2195 Theory +1311.2377 +1311.2389 Solar and Stellar Astrophysics +1311.2523 Solar and Stellar Astrophysics +1311.2548 Soft Condensed Matter +1311.2585 Cosmology and Nongalactic Astrophysics +1311.2836 Phenomenology +1311.2988 Theory +1311.3281 Materials Science +1311.3341 Strongly Correlated Electrons +1311.3342 Phenomenology +1311.3870 Phenomenology +1311.4183 Biological Physics +1311.4195 Earth and Planetary Astrophysics +1311.4329 Theory +1311.4429 Functional Analysis +1311.4540 Theory +1311.4556 Astrophysics of Galaxies +1311.4714 Theory +1311.5042 Cosmology and Nongalactic Astrophysics +1311.5146 Quantum Gases +1311.5216 Statistical Mechanics +1311.5271 Earth and Planetary Astrophysics +1311.5292 +1311.5425 Soft Condensed Matter +1311.5564 High Energy Astrophysical Phenomena +1311.5900 High Energy Astrophysical Phenomena +1311.5938 Space Physics +1311.6242 Solar and Stellar Astrophysics +1311.6337 Experiment +1311.6507 Strongly Correlated Electrons +1311.6574 Geophysics +1311.6822 +1311.6936 Theory +1311.6986 Cosmology and Nongalactic Astrophysics +1311.7153 Superconductivity +1311.7214 Superconductivity +1311.7383 Solar and Stellar Astrophysics +1311.7669 Computational Physics +1312.0098 Combinatorics +1312.0381 Instrumentation and Detectors +1312.0535 +1312.0571 Methodology +1312.0612 Theory +1312.0706 Astrophysics of Galaxies +1312.0708 Instrumentation and Methods for Astrophysics +1312.0725 +1312.0787 +1312.0797 Cosmology and Nongalactic Astrophysics +1312.0861 Cosmology and Nongalactic Astrophysics +1312.0893 Statistical Mechanics +1312.1155 Theory +1312.1241 High Energy Astrophysical Phenomena +1312.1251 Cosmology and Nongalactic Astrophysics +1312.1252 Cosmology and Nongalactic Astrophysics +1312.1353 Cosmology and Nongalactic Astrophysics +1312.1365 Solar and Stellar Astrophysics +1312.1372 Solar and Stellar Astrophysics +1312.1514 Lattice +1312.2077 High Energy Astrophysical Phenomena +1312.2257 Mesoscale and Nanoscale Physics +1312.2409 Mesoscale and Nanoscale Physics +1312.2454 Optics +1312.2486 Materials Science +1312.2557 Mesoscale and Nanoscale Physics +1312.2561 Astrophysics of Galaxies +1312.2729 Solar and Stellar Astrophysics +1312.2793 Theory +1312.2932 +1312.2952 High Energy Astrophysical Phenomena +1312.2997 Mesoscale and Nanoscale Physics +1312.3005 Computation and Language +1312.3111 Superconductivity +1312.3154 Solar and Stellar Astrophysics +1312.3330 Astrophysics of Galaxies +1312.3348 Phenomenology +1312.3792 Solar and Stellar Astrophysics +1312.3806 Chemical Physics +1312.3830 Phenomenology +1312.3972 Phenomenology +1312.4296 Pricing of Securities +1312.4332 +1312.4354 Optimization and Control +1312.4400 Neural and Evolutionary Computing +1312.4720 Superconductivity +1312.4867 Optics +1312.4962 Cosmology and Nongalactic Astrophysics +1312.5094 Phenomenology +1312.5261 Solar and Stellar Astrophysics +1312.5308 Cosmology and Nongalactic Astrophysics +1312.5359 Soft Condensed Matter +1312.5640 Solar and Stellar Astrophysics +1312.5642 Statistical Mechanics +1312.5818 Superconductivity +1312.5824 Earth and Planetary Astrophysics +1312.5864 Solar and Stellar Astrophysics +1312.5956 Instrumentation and Methods for Astrophysics +1312.6222 Astrophysics of Galaxies +1312.6363 Astrophysics of Galaxies +1312.6555 +1312.6889 Theory +1312.6925 +1401.0021 Atomic Physics +1401.0059 High Energy Astrophysical Phenomena +1401.0392 Astrophysics of Galaxies +1401.0420 Solar and Stellar Astrophysics +1401.0478 Tissues and Organs +1401.0538 High Energy Astrophysical Phenomena +1401.0643 Earth and Planetary Astrophysics +1401.1035 Solar and Stellar Astrophysics +1401.1112 Instrumentation and Methods for Astrophysics +1401.1151 Instrumentation and Methods for Astrophysics +1401.1211 High Energy Astrophysical Phenomena +1401.1212 Astrophysics of Galaxies +1401.1316 Solar and Stellar Astrophysics +1401.1332 Solar and Stellar Astrophysics +1401.1339 Statistical Mechanics +1401.1343 Astrophysics of Galaxies +1401.1367 High Energy Astrophysical Phenomena +1401.1386 High Energy Astrophysical Phenomena +1401.1453 Chaotic Dynamics +1401.1464 Astrophysics of Galaxies +1401.1505 Astrophysics of Galaxies +1401.1508 Astrophysics of Galaxies +1401.1615 High Energy Astrophysical Phenomena +1401.1687 +1401.1785 Cosmology and Nongalactic Astrophysics +1401.1814 Solar and Stellar Astrophysics +1401.1826 Solar and Stellar Astrophysics +1401.1868 High Energy Astrophysical Phenomena +1401.1925 Astrophysics of Galaxies +1401.1994 Earth and Planetary Astrophysics +1401.2057 +1401.2150 Solar and Stellar Astrophysics +1401.2171 Mesoscale and Nanoscale Physics +1401.2189 +1401.2266 Materials Science +1401.2297 Solar and Stellar Astrophysics +1401.2460 Cosmology and Nongalactic Astrophysics +1401.2528 Plasma Physics +1401.2635 Instrumentation and Methods for Astrophysics +1401.2765 Earth and Planetary Astrophysics +1401.2793 Earth and Planetary Astrophysics +1401.2827 High Energy Astrophysical Phenomena +1401.2847 Astrophysics of Galaxies +1401.2925 Earth and Planetary Astrophysics +1401.2939 Cosmology and Nongalactic Astrophysics +1401.2986 Astrophysics of Galaxies +1401.2992 Cosmology and Nongalactic Astrophysics +1401.3004 Phenomenology +1401.3007 Earth and Planetary Astrophysics +1401.3033 Statistical Mechanics +1401.3131 Astrophysics of Galaxies +1401.3176 Astrophysics of Galaxies +1401.3249 Astrophysics of Galaxies +1401.3389 Astrophysics of Galaxies +1401.3514 Quantum Gases +1401.3564 High Energy Astrophysical Phenomena +1401.3594 Phenomenology +1401.3642 Solar and Stellar Astrophysics +1401.3692 Earth and Planetary Astrophysics +1401.3759 Astrophysics of Galaxies +1401.3970 High Energy Astrophysical Phenomena +1401.4070 Astrophysics of Galaxies +1401.4157 Astrophysics of Galaxies +1401.4190 Solar and Stellar Astrophysics +1401.4454 Cosmology and Nongalactic Astrophysics +1401.4464 Earth and Planetary Astrophysics +1401.4497 Astrophysics of Galaxies +1401.4693 +1401.4856 Optimization and Control +1401.4890 Optics +1401.5069 High Energy Astrophysical Phenomena +1401.5072 Solar and Stellar Astrophysics +1401.5128 Astrophysics of Galaxies +1401.5231 +1401.5250 Solar and Stellar Astrophysics +1401.5377 Astrophysics of Galaxies +1401.5417 Solar and Stellar Astrophysics +1401.5426 Solar and Stellar Astrophysics +1401.5477 Astrophysics of Galaxies +1401.5496 Cosmology and Nongalactic Astrophysics +1401.5552 High Energy Astrophysical Phenomena +1401.5579 +1401.5641 Solar and Stellar Astrophysics +1401.5645 Astrophysics of Galaxies +1401.5803 Cosmology and Nongalactic Astrophysics +1401.5822 +1401.5963 Earth and Planetary Astrophysics +1401.6171 Cosmology and Nongalactic Astrophysics +1401.6201 Cosmology and Nongalactic Astrophysics +1401.6223 Astrophysics of Galaxies +1401.6261 Astrophysics of Galaxies +1401.6321 Representation Theory +1401.6332 Earth and Planetary Astrophysics +1401.6672 Astrophysics of Galaxies +1401.6753 Instrumentation and Methods for Astrophysics +1401.6815 High Energy Astrophysical Phenomena +1401.6822 Astrophysics of Galaxies +1401.6861 High Energy Astrophysical Phenomena +1401.6913 Astrophysics of Galaxies +1401.6986 Astrophysics of Galaxies +1401.6998 Astrophysics of Galaxies +1401.7080 High Energy Astrophysical Phenomena +1401.7109 Solar and Stellar Astrophysics +1401.7237 Solar and Stellar Astrophysics +1401.7275 Earth and Planetary Astrophysics +1401.7326 High Energy Astrophysical Phenomena +1401.7328 Cosmology and Nongalactic Astrophysics +1401.7334 Cosmology and Nongalactic Astrophysics +1401.7335 Cosmology and Nongalactic Astrophysics +1401.7354 Astrophysics of Galaxies +1401.7556 Astrophysics of Galaxies +1401.7672 Solar and Stellar Astrophysics +1401.7706 High Energy Astrophysical Phenomena +1401.7729 Soft Condensed Matter +1401.7769 Solar and Stellar Astrophysics +1401.7791 Astrophysics of Galaxies +1401.7871 Astrophysics of Galaxies +1401.7945 Solar and Stellar Astrophysics +1401.7947 Experiment +1401.7987 Solar and Stellar Astrophysics +1401.7995 Solar and Stellar Astrophysics +1401.8143 High Energy Astrophysical Phenomena +1402.0078 Astrophysics of Galaxies +1402.0106 General Physics +1402.0131 Atmospheric and Oceanic Physics +1402.0312 Earth and Planetary Astrophysics +1402.0661 Solar and Stellar Astrophysics +1402.0803 Solar and Stellar Astrophysics +1402.0846 Earth and Planetary Astrophysics +1402.0874 Solar and Stellar Astrophysics +1402.0960 Superconductivity +1402.1000 Materials Science +1402.1489 Solar and Stellar Astrophysics +1402.1650 Optics +1402.1666 Geophysics +1402.1687 Solar and Stellar Astrophysics +1402.1771 Cosmology and Nongalactic Astrophysics +1402.1942 Superconductivity +1402.2281 Earth and Planetary Astrophysics +1402.2571 High Energy Astrophysical Phenomena +1402.2740 Astrophysics of Galaxies +1402.2804 Plasma Physics +1402.3308 Earth and Planetary Astrophysics +1402.3495 Soft Condensed Matter +1402.3500 Optimization and Control +1402.4186 Geometric Topology +1402.4474 Fluid Dynamics +1402.5227 Cosmology and Nongalactic Astrophysics +1402.5238 Astrophysics of Galaxies +1402.5316 +1402.5545 Astrophysics of Galaxies +1402.5566 Materials Science +1402.5683 Optics +1402.5700 Mesoscale and Nanoscale Physics +1402.5806 +1402.5948 Solar and Stellar Astrophysics +1402.6168 History and Philosophy of Physics +1402.6503 Strongly Correlated Electrons +1402.6726 Solar and Stellar Astrophysics +1402.6841 Statistical Mechanics +1402.6925 Quantum Gases +1402.6933 Materials Science +1402.6959 +1402.7058 Fluid Dynamics +1402.7122 Logic in Computer Science +1402.7319 Statistical Mechanics +1403.0264 Phenomenology +1403.0290 Strongly Correlated Electrons +1403.0380 Plasma Physics +1403.0416 Phenomenology +1403.0559 Atomic Physics +1403.0569 Optics +1403.0570 Optics +1403.0594 Numerical Analysis +1403.0596 Geometric Topology +1403.0597 Chemical Physics +1403.0598 Learning +1403.0599 Physics Education +1403.0602 Representation Theory +1403.0605 Functional Analysis +1403.0606 Mesoscale and Nanoscale Physics +1403.0607 Combinatorics +1403.0609 Statistics Theory +1403.0610 Number Theory +1403.0612 Applications +1403.0615 Number Theory +1403.0622 Combinatorics +1403.0623 Neural and Evolutionary Computing +1403.0627 Statistical Finance +1403.0629 +1403.0630 Quantitative Methods +1403.0636 Physics and Society +1403.0638 Tissues and Organs +1403.0641 Logic in Computer Science +1403.0644 Instrumentation and Methods for Astrophysics +1403.0648 Computer Science and Game Theory +1403.0652 Earth and Planetary Astrophysics +1403.0659 +1403.0661 Group Theory +1403.0662 Number Theory +1403.0668 Applications +1403.0669 Functional Analysis +1403.0672 Materials Science +1403.0674 Applications +1403.0678 +1403.0680 Geometric Topology +1403.0682 Analysis of PDEs +1403.0683 Soft Condensed Matter +1403.0685 Materials Science +1403.0696 Probability +1403.0697 Soft Condensed Matter +1403.0699 Computer Vision and Pattern Recognition +1403.0701 Databases +1403.0708 Solar and Stellar Astrophysics +1403.0713 Algebraic Geometry +1403.0717 Earth and Planetary Astrophysics +1403.0718 Portfolio Management +1403.0725 Soft Condensed Matter +1403.0727 Cosmology and Nongalactic Astrophysics +1403.0728 Computer Vision and Pattern Recognition +1403.0729 Analysis of PDEs +1403.0741 Chaotic Dynamics +1403.0745 Machine Learning +1403.0746 Probability +1403.0748 Algebraic Geometry +1403.0753 Distributed, Parallel, and Cluster Computing +1403.0754 Solar and Stellar Astrophysics +1403.0758 Cosmology and Nongalactic Astrophysics +1403.0761 Information Retrieval +1403.0764 Artificial Intelligence +1403.0765 Astrophysics of Galaxies +1403.0766 Cryptography and Security +1403.0770 Multiagent Systems +1403.0774 Algebraic Topology +1403.0778 Artificial Intelligence +1403.0781 Differential Geometry +1403.0785 Combinatorics +1403.0789 Data Structures and Algorithms +1403.0792 High Energy Astrophysical Phenomena +1403.0793 Algebraic Geometry +1403.0795 High Energy Astrophysical Phenomena +1403.0796 Biological Physics +1403.0798 Soft Condensed Matter +1403.0802 Databases +1403.0804 Information Theory +1403.0811 Systems and Control +1403.0816 Classical Physics +1403.0823 Experiment +1403.0825 +1403.0826 Analysis of PDEs +1403.0828 Classical Physics +1403.0829 Computer Vision and Pattern Recognition +1403.0830 Numerical Analysis +1403.0832 Earth and Planetary Astrophysics +1403.0836 Information Theory +1403.0837 Analysis of PDEs +1403.0838 Analysis of PDEs +1403.0840 Functional Analysis +1403.0843 Probability +1403.0844 Superconductivity +1403.0848 General Finance +1403.0849 Algebraic Geometry +1403.0850 Social and Information Networks +1403.0851 Computational Finance +1403.0858 Populations and Evolution +1403.0864 Instrumentation and Detectors +1403.0868 Complex Variables +1403.0869 Populations and Evolution +1403.0871 Atomic Physics +1403.0872 Probability +1403.0873 Statistics Theory +1403.0877 Strongly Correlated Electrons +1403.0879 Robotics +1403.0881 Algebraic Topology +1403.0890 Computational Physics +1403.0891 Theory +1403.0899 Dynamical Systems +1403.0901 Solar and Stellar Astrophysics +1403.0909 Group Theory +1403.0914 Quantitative Methods +1403.0917 Graphics +1403.0925 +1403.0926 +1403.0930 Networking and Internet Architecture +1403.0931 Phenomenology +1403.0932 Logic +1403.0933 +cond-mat/0007214 Statistical Mechanics +cond-mat/0105097 Disordered Systems and Neural Networks +nlin/0005039 Adaptation and Self-Organizing Systems +0706.3697 Materials Science +0708.3998 Strongly Correlated Electrons +0710.3015 Strongly Correlated Electrons +0710.4256 Exactly Solvable and Integrable Systems +0801.4333 Optics +0805.2265 General Topology +0809.2455 Analysis of PDEs +0810.1643 General Topology +0904.3712 Strongly Correlated Electrons +0910.4107 General Topology +1010.5420 Materials Science +1101.2800 Materials Science +1101.4727 Probability +1103.1589 +1104.0519 Probability +1105.0064 Adaptation and Self-Organizing Systems +1105.1932 Complex Variables +1106.2850 +1106.5593 Algebraic Geometry +1109.5971 Analysis of PDEs +1110.0630 Astrophysics of Galaxies +1111.3472 Analysis of PDEs +1111.3498 Optics +1111.4419 Probability +1111.6451 Probability +1201.2156 Analysis of PDEs +1201.3986 Numerical Analysis +1202.1830 Analysis of PDEs +1202.3810 Disordered Systems and Neural Networks +1202.4116 Formal Languages and Automata Theory +1202.4380 Physics Education +1202.5150 Cryptography and Security +1203.2364 Analysis of PDEs +1204.1100 Classical Analysis and ODEs +1204.2458 Risk Management +1205.2078 Popular Physics +1205.2692 Phenomenology +1205.4258 Materials Science +1207.2949 Algebraic Geometry +1207.3525 Phenomenology +1208.1433 +1209.3469 Commutative Algebra +1209.6049 Theory +1210.2753 Astrophysics of Galaxies +1210.5920 Biological Physics +1211.0530 Materials Science +1211.1081 Dynamical Systems +1211.1571 Cosmology and Nongalactic Astrophysics +1211.5729 Computational Complexity +1211.7141 Medical Physics +1212.0137 Quantum Algebra +1212.1692 Theory +1212.3600 +1212.4742 Quantum Algebra +1301.2821 Differential Geometry +1301.6084 +1301.6983 Combinatorics +1302.1517 Earth and Planetary Astrophysics +1302.3408 Phenomenology +1302.4714 General Mathematics +1302.7075 Biomolecules +1303.6407 +1304.3734 Strongly Correlated Electrons +1304.3753 +1304.5012 Mesoscale and Nanoscale Physics +1304.5928 Algebraic Topology +1305.0815 Mesoscale and Nanoscale Physics +1305.1301 Quantum Gases +1305.1472 +1305.1939 Theory +1305.1947 Theory +1305.2198 Cosmology and Nongalactic Astrophysics +1305.4667 Geometric Topology +1306.0013 High Energy Astrophysical Phenomena +1306.1252 Atomic Physics +1306.2819 Instrumentation and Detectors +1306.3153 Optics +1306.3194 General Topology +1306.3353 Experiment +1306.4036 Information Theory +1306.4917 Discrete Mathematics +1306.5044 Systems and Control +1306.5161 History and Philosophy of Physics +1306.5518 Chaotic Dynamics +1306.5974 +1306.6167 Other Condensed Matter +1306.6648 Theory +1307.1705 Cosmology and Nongalactic Astrophysics +1307.2813 Superconductivity +1307.2851 Phenomenology +1307.3519 Genomics +1307.3538 Instrumentation and Methods for Astrophysics +1307.3874 Materials Science +1307.4057 Phenomenology +1307.4735 Cosmology and Nongalactic Astrophysics +1307.6237 +1307.7497 Lattice +1308.0361 Strongly Correlated Electrons +1308.1019 Cosmology and Nongalactic Astrophysics +1308.1159 Phenomenology +1308.1344 +1308.1753 +1308.1782 Phenomenology +1308.1959 Phenomenology +1308.2180 Phenomenology +1308.3161 Networking and Internet Architecture +1308.3633 Phenomenology +1308.4602 +1308.5747 Strongly Correlated Electrons +1308.5770 +1308.6097 Quantum Algebra +1308.6522 Phenomenology +1308.6613 Commutative Algebra +1309.0016 Materials Science +1309.0517 Phenomenology +1309.0864 Theory +1309.1115 Operator Algebras +1309.1627 Lattice +1309.1638 Phenomenology +1309.1925 Quantum Gases +1309.2154 Disordered Systems and Neural Networks +1309.3395 Cosmology and Nongalactic Astrophysics +1309.4720 Physics and Society +1309.5810 +1309.5947 Theory +1309.6615 Strongly Correlated Electrons +1309.6623 Lattice +1309.6742 Phenomenology +1309.7259 Phenomenology +1309.7940 Theory +1310.0118 Phenomenology +1310.0877 Mesoscale and Nanoscale Physics +1310.1418 Mesoscale and Nanoscale Physics +1310.2908 Instrumentation and Detectors +1310.4069 Lattice +1310.4810 Theory +1310.5499 Experiment +1310.5633 +1310.5739 Cosmology and Nongalactic Astrophysics +1310.6796 +1310.6841 Phenomenology +1310.7057 Probability +1310.7553 Phenomenology +1310.7893 Phenomenology +1310.8484 Phenomenology +1311.1384 Materials Science +1311.3584 Phenomenology +1311.4060 +1311.4465 Materials Science +1311.4518 Atomic Physics +1311.7630 Quantum Algebra +1312.0070 Functional Analysis +1312.1009 Strongly Correlated Electrons +1312.1264 Differential Geometry +1312.3177 Probability +1312.3779 Data Structures and Algorithms +1312.5314 High Energy Astrophysical Phenomena +1312.6943 Probability +1312.7090 Functional Analysis +1312.7211 Chaotic Dynamics +1312.7340 Theory +1312.7498 Complex Variables +1401.1747 +1401.2006 Atmospheric and Oceanic Physics +1401.2379 Atmospheric and Oceanic Physics +1401.2383 Atmospheric and Oceanic Physics +1401.2593 Instrumentation and Methods for Astrophysics +1401.2709 Statistics Theory +1401.2845 Fluid Dynamics +1401.2912 Data Structures and Algorithms +1401.2983 Materials Science +1401.3013 Mathematical Software +1401.3022 Probability +1401.3030 Mesoscale and Nanoscale Physics +1401.3032 High Energy Astrophysical Phenomena +1401.3035 +1401.3036 Earth and Planetary Astrophysics +1401.3041 Programming Languages +1401.3044 +1401.3046 Networking and Internet Architecture +1401.3048 Algebraic Geometry +1401.3049 Information Theory +1401.3054 +1401.3056 Social and Information Networks +1401.3058 Dynamical Systems +1401.3059 Dynamical Systems +1401.3062 Optics +1401.3068 Numerical Analysis +1401.3077 Cosmology and Nongalactic Astrophysics +1401.3079 Number Theory +1401.3087 Classical Analysis and ODEs +1401.3088 Cryptography and Security +1401.3089 Adaptation and Self-Organizing Systems +1401.3090 Human-Computer Interaction +1401.3093 Information Theory +1401.3100 Phenomenology +1401.3105 Computation +1401.3106 Phenomenology +1401.3110 General Physics +1401.3113 Numerical Analysis +1401.3120 Analysis of PDEs +1401.3121 Risk Management +1401.3124 Analysis of PDEs +1401.3126 Social and Information Networks +1401.3129 Information Theory +1401.3135 Complex Variables +1401.3136 Optimization and Control +1401.3137 Earth and Planetary Astrophysics +1401.3139 Operator Algebras +1401.3141 Combinatorics +1401.3150 Number Theory +1401.3152 +1401.3153 Analysis of PDEs +1401.3161 Number Theory +1401.3163 Optics +1401.3170 Probability +1401.3172 Data Structures and Algorithms +1401.3174 Information Theory +1401.3175 Logic +1401.3177 Numerical Analysis +1401.3179 Mesoscale and Nanoscale Physics +1401.3182 Solar and Stellar Astrophysics +1401.3188 Quantum Gases +1401.3191 Statistics Theory +1401.3192 Experiment +1401.3194 +1401.3195 +1401.3198 Optimization and Control +1401.3200 Quantum Algebra +1401.3212 Analysis of PDEs +1401.3213 Chemical Physics +1401.3217 Optimization and Control +1401.3219 Functional Analysis +1401.3222 Social and Information Networks +1401.3223 High Energy Astrophysical Phenomena +1401.3225 Information Theory +1401.3229 Methodology +1401.3230 Computation and Language +1401.3232 Logic +1401.3235 Logic +1401.3237 History and Philosophy of Physics +1401.3244 Analysis of PDEs +1401.3250 Information Theory +1401.3254 Genomics +1401.3256 Probability +1401.3257 Statistics Theory +1401.3258 Learning +1401.3260 Phenomenology +1401.3262 Molecular Networks +1401.3263 Dynamical Systems +1401.3267 Earth and Planetary Astrophysics +1401.3269 Computation +1401.3270 Lattice +1401.3272 Representation Theory +1401.3274 Cryptography and Security +1401.3276 +1401.3277 Information Theory +1401.3281 Physics and Society +1401.3289 Logic in Computer Science +1401.3292 Mesoscale and Nanoscale Physics +1401.3294 Combinatorics +1401.3295 Cosmology and Nongalactic Astrophysics +1401.3297 Probability +1401.3298 +1401.3300 Analysis of PDEs +1401.3302 Geometric Topology +1401.3304 Number Theory +1401.3305 +1401.3306 Materials Science +1401.3307 Cryptography and Security +1401.3308 Discrete Mathematics +1401.3315 Dynamical Systems +1401.3317 Cosmology and Nongalactic Astrophysics +1401.3321 Probability +1401.3322 Computation and Language +1401.3326 Logic +1401.3329 Solar and Stellar Astrophysics +cond-mat/0009148 Strongly Correlated Electrons +cond-mat/0203118 Strongly Correlated Electrons +cond-mat/0311335 Strongly Correlated Electrons +cond-mat/0602301 Strongly Correlated Electrons +gr-qc/9210004 +gr-qc/9210006 +gr-qc/9210010 +gr-qc/9304006 +gr-qc/9712001 +math/0001157 General Topology +math/9805008 General Topology +0705.3559 Spectral Theory +0811.0647 Number Theory +0812.3059 Differential Geometry +0901.4032 Numerical Analysis +0904.1195 Chemical Physics +0904.1534 Numerical Analysis +0907.1040 Mesoscale and Nanoscale Physics +0910.2306 Cosmology and Nongalactic Astrophysics +0912.3878 Methodology +1002.1770 Cosmology and Nongalactic Astrophysics +1002.4228 Number Theory +1007.4051 Mesoscale and Nanoscale Physics +1103.1607 +1104.5193 Mesoscale and Nanoscale Physics +1105.1809 +1108.0030 Quantum Algebra +1109.2999 Dynamical Systems +1110.4691 Number Theory +1111.2527 Data Structures and Algorithms +1111.2617 Mesoscale and Nanoscale Physics +1111.3173 +1111.4926 History and Philosophy of Physics +1111.6027 Combinatorics +1112.0202 Combinatorics +1202.2591 Category Theory +1202.4894 +1204.5088 Fluid Dynamics +1205.0946 Logic in Computer Science +1205.1567 Algebraic Geometry +1205.4624 General Physics +1205.5802 Phenomenology +1206.5386 Programming Languages +1207.1090 General Physics +1207.1344 Phenomenology +1207.5268 +1208.0522 Mesoscale and Nanoscale Physics +1208.5199 Classical Analysis and ODEs +1209.4746 Statistics Theory +1209.5169 Group Theory +1209.5859 Phenomenology +1210.0755 Analysis of PDEs +1210.1252 Number Theory +1210.6015 Operator Algebras +1211.2726 Geometric Topology +1301.0260 Mesoscale and Nanoscale Physics +1301.0337 Probability +1301.1462 Strongly Correlated Electrons +1301.3829 Disordered Systems and Neural Networks +1301.6305 +1302.3367 Algebraic Geometry +1302.3917 Graphics +1302.4410 Lattice +1303.1657 Probability +1303.3976 Plasma Physics +1303.5659 Artificial Intelligence +1303.5681 Numerical Analysis +1303.6515 Phenomenology +1304.0024 Disordered Systems and Neural Networks +1304.0497 Accelerator Physics +1305.2291 Materials Science +1305.3946 +1305.4085 Mesoscale and Nanoscale Physics +1305.4527 +1305.4772 Symplectic Geometry +1305.6682 Mesoscale and Nanoscale Physics +1306.0130 +1306.1510 Probability +1306.1940 Mesoscale and Nanoscale Physics +1306.3328 Plasma Physics +1306.4266 Quantum Gases +1306.5952 Differential Geometry +1306.6231 Optics +1306.6934 +1307.0899 Quantum Gases +1307.1063 +1307.4048 Learning +1307.5104 Mesoscale and Nanoscale Physics +1307.5413 Combinatorics +1307.5712 Phenomenology +1307.7013 Phenomenology +1307.7506 Mesoscale and Nanoscale Physics +1308.1828 Phenomenology +1308.2126 Operator Algebras +1308.2486 Complex Variables +1308.3670 Differential Geometry +1308.6489 +1308.6589 Cosmology and Nongalactic Astrophysics +1309.1454 Phenomenology +1309.2080 Learning +1309.4717 +1309.4770 Phenomenology +1309.5410 Phenomenology +1309.5669 Strongly Correlated Electrons +1309.6079 Materials Science +1309.7396 Phenomenology +1310.1397 Phenomenology +1310.1491 +1310.1930 Systems and Control +1310.2230 Phenomenology +1310.2786 Phenomenology +1310.3753 Cosmology and Nongalactic Astrophysics +1310.4447 +1310.4770 Phenomenology +1310.4993 Information Theory +1310.5081 Experiment +1310.5263 Materials Science +1310.6334 Theory +1310.6339 Lattice +1310.6885 +1310.6941 Group Theory +1310.6970 Superconductivity +1310.8630 Accelerator Physics +1311.0039 Strongly Correlated Electrons +1311.0109 +1311.0592 +1311.0982 +1311.1830 Phenomenology +1311.1980 +1311.2512 Phenomenology +1311.2704 Theory +1311.3228 Phenomenology +1311.4157 Quantum Gases +1311.5896 Phenomenology +1311.6281 +1311.6409 Theory +1311.6615 Data Structures and Algorithms +1311.6673 +1311.7129 +1311.7131 Phenomenology +1311.7299 Theory +1311.7413 Theory +1311.7550 Quantum Gases +1312.0379 Mesoscale and Nanoscale Physics +1312.1000 Theory +1312.2392 Populations and Evolution +1312.2506 Artificial Intelligence +1312.3081 Phenomenology +1312.4523 Mesoscale and Nanoscale Physics +1312.4985 Mesoscale and Nanoscale Physics +1312.5051 Materials Science +1312.5366 Solar and Stellar Astrophysics +1312.5730 Phenomenology +1312.6406 Plasma Physics +1312.6594 Computer Vision and Pattern Recognition +1312.7111 Genomics +1401.2017 Group Theory +1401.4182 Astrophysics of Galaxies +1401.4298 Physics and Society +1401.5030 +1401.5429 Mesoscale and Nanoscale Physics +1401.5668 +1401.6814 Superconductivity +1402.0519 Atomic Physics +1402.0956 Rings and Algebras +1402.1643 Materials Science +1402.1662 Statistical Mechanics +1402.1681 Phenomenology +1402.1830 Mesoscale and Nanoscale Physics +1402.1862 Systems and Control +1402.1880 Computers and Society +1402.1881 Data Structures and Algorithms +1402.1888 Methodology +1402.1943 Networking and Internet Architecture +1402.1982 +1402.2009 Cryptography and Security +1402.2013 Computer Vision and Pattern Recognition +1402.2079 Computers and Society +1402.2100 Experiment +1402.2127 Logic in Computer Science +1402.2142 Probability +1402.2224 Cryptography and Security +1402.2273 Computational Finance +1402.2276 Atomic Physics +1402.2297 Social and Information Networks +1402.2300 Learning +1402.2302 Chemical Physics +1402.2308 Social and Information Networks +1402.2309 Optimization and Control +1402.2310 Atomic and Molecular Clusters +1402.2313 Atomic and Molecular Clusters +1402.2318 Chemical Physics +1402.2319 Dynamical Systems +1402.2321 Rings and Algebras +1402.2323 +1402.2333 Learning +1402.2335 Instrumentation and Methods for Astrophysics +1402.2337 Chemical Physics +1402.2338 Analysis of PDEs +1402.2340 Combinatorics +1402.2341 Lattice +1402.2343 Information Theory +1402.2349 +1402.2355 Materials Science +1402.2356 Analysis of PDEs +1402.2357 Astrophysics of Galaxies +1402.2360 Astrophysics of Galaxies +1402.2362 Differential Geometry +1402.2363 Graphics +1402.2364 Theory +1402.2366 Optimization and Control +1402.2372 Software Engineering +1402.2373 Software Engineering +1402.2374 Software Engineering +1402.2375 Software Engineering +1402.2376 Software Engineering +1402.2377 Software Engineering +1402.2379 Software Engineering +1402.2380 Solar and Stellar Astrophysics +1402.2388 Differential Geometry +1402.2389 Software Engineering +1402.2390 Networking and Internet Architecture +1402.2392 Populations and Evolution +1402.2394 Databases +1402.2395 Optics +1402.2400 Atomic Physics +1402.2403 Classical Analysis and ODEs +1402.2404 Computers and Society +1402.2407 Analysis of PDEs +1402.2414 +1402.2420 Hardware Architecture +1402.2421 Fluid Dynamics +1402.2422 Statistical Mechanics +1402.2425 Hardware Architecture +1402.2426 Computer Vision and Pattern Recognition +1402.2427 Social and Information Networks +1402.2435 Hardware Architecture +1402.2438 Optics +1402.2440 Computational Engineering, Finance, and Science +1402.2442 Hardware Architecture +1402.2444 Theory +1402.2445 Representation Theory +1402.2448 Operator Algebras +1402.2450 Analysis of PDEs +1402.2453 Computational Engineering, Finance, and Science +1402.2456 Combinatorics +1402.2459 Hardware Architecture +1402.2460 Hardware Architecture +1402.2462 Hardware Architecture +1402.2467 Optimization and Control +1402.2468 Statistics Theory +1402.2470 Superconductivity +1402.2474 Logic in Computer Science +1402.2479 Computer Science and Game Theory +1402.2486 Combinatorics +1402.2487 Databases +1402.2490 Space Physics +1402.2491 Distributed, Parallel, and Cluster Computing +1402.2492 Risk Management +1402.2496 Distributed, Parallel, and Cluster Computing +1402.2497 Complex Variables +1402.2499 Machine Learning +1402.2500 Group Theory +1402.2501 Representation Theory +1402.2507 Robotics +1402.2508 Data Structures and Algorithms +1402.2509 Distributed, Parallel, and Cluster Computing +1402.2510 Applications +1402.2511 Logic +1402.2515 Instrumentation and Detectors +1402.2519 High Energy Astrophysical Phenomena +1402.2520 Classical Analysis and ODEs +1402.2523 Statistical Mechanics +1402.2526 Analysis of PDEs +1402.2534 +1402.2536 Hardware Architecture +1402.2537 +1402.2540 Classical Analysis and ODEs +1402.2541 +1402.2543 Distributed, Parallel, and Cluster Computing +1402.2545 +1402.2549 Distributed, Parallel, and Cluster Computing +1402.2550 Methodology +1402.2551 Computational Engineering, Finance, and Science +1402.2552 Distributed, Parallel, and Cluster Computing +1402.2556 +1402.2559 Analysis of PDEs +1402.2561 Computation and Language +1402.2562 Information Retrieval +1402.2565 Group Theory +1402.2568 Representation Theory +1402.2573 Medical Physics +1402.2575 +1402.2576 Analysis of PDEs +1402.2577 Lattice +1402.2578 Instrumentation and Detectors +1402.2583 Systems and Control +1402.2585 Lattice +1402.2591 Instrumentation and Methods for Astrophysics +1402.2594 Machine Learning +1402.2598 Probability +1402.2600 Logic +1402.2606 Computer Vision and Pattern Recognition +1402.2611 Software Engineering +1402.2614 Astrophysics of Galaxies +1402.2616 Number Theory +1402.2618 Probability +1402.2619 Group Theory +1402.2622 Networking and Internet Architecture +1402.2624 +1402.2627 Complex Variables +1402.2628 Probability +1402.2629 +1402.2632 Probability +1402.2634 Systems and Control +1402.2635 Hardware Architecture +1402.2638 Mesoscale and Nanoscale Physics +1402.2641 Discrete Mathematics +1402.2646 Numerical Analysis +1402.2647 Medical Physics +gr-qc/0410068 +math/0310075 Differential Geometry +math/0603441 Differential Geometry +math/0610723 Differential Geometry +math/0701780 Spectral Theory +0708.4031 Numerical Analysis +0712.3977 Numerical Analysis +0911.5725 Numerical Analysis +0911.5730 Numerical Analysis +1007.3062 Mesoscale and Nanoscale Physics +1010.0513 Functional Analysis +1012.1838 Number Theory +1012.4283 Complex Variables +1102.2092 Algebraic Geometry +1104.4894 Functional Analysis +1106.4736 Atmospheric and Oceanic Physics +1107.2050 Functional Analysis +1109.0580 Numerical Analysis +1109.5248 Geometric Topology +1110.1115 Rings and Algebras +1201.4079 Functional Analysis +1202.1183 Mesoscale and Nanoscale Physics +1202.2838 +1203.5383 Differential Geometry +1203.6100 Statistical Mechanics +1204.5029 Functional Analysis +1204.5760 Classical Analysis and ODEs +1205.1864 Numerical Analysis +1207.0182 Representation Theory +1207.1269 Operator Algebras +1207.1862 Functional Analysis +1209.1779 Strongly Correlated Electrons +1210.5682 Strongly Correlated Electrons +1210.6603 Probability +1211.2974 Functional Analysis +1211.5511 +1211.6758 Statistical Mechanics +1301.0481 Statistical Mechanics +1302.1442 Solar and Stellar Astrophysics +1302.1452 Probability +1302.3053 Methodology +1302.5044 +1303.0153 Category Theory +1303.3143 +1304.0755 Probability +1304.0777 Cosmology and Nongalactic Astrophysics +1304.2124 Phenomenology +1304.4867 K-Theory and Homology +1304.6758 Statistical Mechanics +1305.5702 +1306.6188 Phenomenology +1306.6742 Biological Physics +1307.0948 +1307.2630 +1307.3025 Differential Geometry +1307.8069 Strongly Correlated Electrons +1308.0487 Optics +1308.1988 Biomolecules +1308.3268 Differential Geometry +1309.4748 Number Theory +1310.5563 Theory +1310.5834 Exactly Solvable and Integrable Systems +1310.5995 Classical Analysis and ODEs +1310.6227 +1310.8185 Applications +1310.8217 Analysis of PDEs +1310.8310 +1311.0927 Dynamical Systems +1311.1368 Strongly Correlated Electrons +1311.4913 Other Condensed Matter +1311.5871 Information Theory +1311.6039 Applications +1311.7658 Fluid Dynamics +1312.0513 Differential Geometry +1312.1370 +1312.1712 Statistical Mechanics +1312.3936 +1401.0240 Optics +1401.1435 +1401.1633 Combinatorics +1401.4955 Classical Analysis and ODEs +1401.6917 Strongly Correlated Electrons +1401.7174 Optics +1402.0207 Solar and Stellar Astrophysics +1402.0875 Superconductivity +1402.0955 +1402.1334 Functional Analysis +1402.1380 Statistics Theory +1402.2069 Statistical Mechanics +1402.2327 Networking and Internet Architecture +1402.2870 +1402.2972 Cosmology and Nongalactic Astrophysics +1402.4136 Cosmology and Nongalactic Astrophysics +1402.5062 Molecular Networks +1402.5802 Atomic Physics +1403.2889 Representation Theory +1403.3041 Instrumentation and Detectors +1403.4613 Probability +1403.5396 Strongly Correlated Electrons +1403.5925 +1403.6125 Cosmology and Nongalactic Astrophysics +1403.7176 Mesoscale and Nanoscale Physics +1403.7786 Cosmology and Nongalactic Astrophysics +1404.1072 Superconductivity +1404.1278 Phenomenology +1404.1576 +1404.3590 Lattice +1404.3623 Analysis of PDEs +1404.4032 Methodology +1404.4420 Probability +1404.4646 Methodology +1404.5488 Materials Science +1404.5890 High Energy Astrophysical Phenomena +1404.7544 +1405.1609 Cosmology and Nongalactic Astrophysics +1405.2625 Astrophysics of Galaxies +1405.2950 Strongly Correlated Electrons +1405.3061 +1405.5733 +1405.6684 Learning +1405.7910 Data Structures and Algorithms +1406.0908 Algebraic Geometry +1406.1636 Materials Science +1406.3887 +1406.4012 Optimization and Control +1406.7542 Multiagent Systems +1407.0320 Genomics +1407.1284 Spectral Theory +1407.1310 Rings and Algebras +1407.2252 +1407.2880 Combinatorics +1407.3130 Artificial Intelligence +1407.3384 Theory +1407.3701 Social and Information Networks +1407.3765 K-Theory and Homology +1407.4068 Mesoscale and Nanoscale Physics +1407.4116 Populations and Evolution +1407.4127 Quantum Gases +1407.4137 Neurons and Cognition +1407.4144 +1407.4149 Distributed, Parallel, and Cluster Computing +1407.4151 Instrumentation and Methods for Astrophysics +1407.4152 Pattern Formation and Solitons +1407.4154 Materials Science +1407.4157 Materials Science +1407.4158 High Energy Astrophysical Phenomena +1407.4159 Commutative Algebra +1407.4163 Analysis of PDEs +1407.4167 Distributed, Parallel, and Cluster Computing +1407.4173 Statistics Theory +1407.4176 Experiment +1407.4179 Cryptography and Security +1407.4182 Statistics Theory +1407.4184 Methodology +1407.4186 Software Engineering +1407.4188 Materials Science +1407.4194 Physics and Society +1407.4195 Materials Science +1407.4203 Optics +1407.4206 Computer Vision and Pattern Recognition +1407.4208 Numerical Analysis +1407.4214 Mesoscale and Nanoscale Physics +1407.4216 Number Theory +1407.4221 Analysis of PDEs +1407.4227 Solar and Stellar Astrophysics +1407.4231 Classical Analysis and ODEs +1407.4234 Artificial Intelligence +1407.4240 Applications +1407.4242 Logic in Computer Science +1407.4245 Cryptography and Security +1407.4250 +1407.4258 Solar and Stellar Astrophysics +1407.4260 Materials Science +1407.4261 Optimization and Control +1407.4266 Software Engineering +1407.4269 Algebraic Geometry +1407.4271 Optics +1407.4276 Optics +1407.4282 Physics and Society +1407.4284 Instrumentation and Detectors +1407.4285 Combinatorics +1407.4289 Instrumentation and Detectors +1407.4300 Fluid Dynamics +1407.4308 Computational Complexity +1407.4310 Strongly Correlated Electrons +1407.4315 +1407.4317 Biological Physics +1407.4321 Functional Analysis +1407.4323 Group Theory +1407.4324 Commutative Algebra +1407.4326 Group Theory +1407.4327 +1407.4328 Information Theory +1407.4330 Physics and Society +1407.4334 Populations and Evolution +1407.4335 Networking and Internet Architecture +1407.4337 Solar and Stellar Astrophysics +1407.4340 Chemical Physics +1407.4341 K-Theory and Homology +1407.4343 +1407.4346 Software Engineering +1407.4347 Astrophysics of Galaxies +1407.4349 Strongly Correlated Electrons +1407.4351 Symplectic Geometry +1407.4355 Computer Science and Game Theory +1407.4358 Number Theory +1407.4360 Artificial Intelligence +1407.4361 +1407.4364 Artificial Intelligence +1407.4369 Analysis of PDEs +1407.4371 Number Theory +1407.4373 Statistics Theory +1407.4377 Numerical Analysis +1407.4378 Programming Languages +1407.4387 Optics +1407.4389 Materials Science +1407.4392 Analysis of PDEs +1407.4395 Human-Computer Interaction +1407.4397 Chemical Physics +1407.4406 Differential Geometry +1407.4409 Human-Computer Interaction +1407.4410 Classical Analysis and ODEs +1407.4413 Methodology +1407.4414 Computation +1407.4415 Phenomenology +1407.4416 Computation +1407.4422 Learning +1407.4423 Information Theory +1407.4424 Functional Analysis +1407.4426 Rings and Algebras +1407.4428 Combinatorics +1407.4429 Solar and Stellar Astrophysics +1407.4430 Machine Learning +1407.4431 Computational Physics +1407.4445 Algebraic Geometry +1407.4447 Solar and Stellar Astrophysics +nucl-th/0505006 +0805.3946 +0809.3088 +0906.1205 Superconductivity +0909.3100 Quantum Algebra +0909.3284 Quantum Algebra +1001.3890 Operator Algebras +1002.0846 +1007.0551 Algebraic Geometry +1009.0676 Algebraic Geometry +1010.3599 Quantum Algebra +1101.0202 +1101.4624 Classical Analysis and ODEs +1108.6140 Optics +1109.1548 Rings and Algebras +1111.4047 Combinatorics +1201.0187 Algebraic Geometry +1201.3815 Materials Science +1203.2760 Information Theory +1204.0945 Materials Science +1204.4585 Information Theory +1205.4121 Quantum Gases +1205.5631 Combinatorics +1205.6069 Geometric Topology +1206.3438 Phenomenology +1207.0069 Numerical Analysis +1207.2164 Instrumentation and Detectors +1207.2740 Statistics Theory +1207.4709 Number Theory +1208.5803 Instrumentation and Detectors +1209.3598 Combinatorics +1209.6102 Materials Science +1210.1500 +1210.5495 Mesoscale and Nanoscale Physics +1211.0259 Physics and Society +1211.2251 Discrete Mathematics +1301.5432 Classical Analysis and ODEs +1302.0353 +1302.5561 +1302.7256 +1303.1349 Cosmology and Nongalactic Astrophysics +1303.1642 Quantum Gases +1303.3089 Differential Geometry +1303.3499 Theory +1303.4964 Cosmology and Nongalactic Astrophysics +1303.6498 +1303.6780 Operator Algebras +1303.6966 Fluid Dynamics +1304.7424 Lattice +1305.0991 Probability +1305.1512 Mesoscale and Nanoscale Physics +1305.2236 Materials Science +1305.3908 Theory +1305.4060 Soft Condensed Matter +1305.5893 Fluid Dynamics +1306.0389 Differential Geometry +1306.0843 +1306.1890 Phenomenology +1306.2500 Phenomenology +1306.2742 Statistical Mechanics +1306.2960 Theory +1306.3113 Graphics +1306.4206 Statistical Mechanics +1306.4319 Cosmology and Nongalactic Astrophysics +1306.6019 Theory +1306.6152 +1307.2142 Quantum Gases +1307.2519 Phenomenology +1307.4219 Differential Geometry +1307.7037 Distributed, Parallel, and Cluster Computing +1307.8120 Phenomenology +1307.8377 Theory +1308.0025 Phenomenology +1308.0127 Theory +1308.0664 Strongly Correlated Electrons +1308.1192 Mesoscale and Nanoscale Physics +1308.2423 Mesoscale and Nanoscale Physics +1308.3998 Phenomenology +1308.4114 Lattice +1308.4235 Phenomenology +1308.4466 Algebraic Geometry +1308.4777 Information Theory +1308.5056 Mesoscale and Nanoscale Physics +1308.5567 High Energy Astrophysical Phenomena +1308.6207 +1308.6310 +1308.6438 +1308.6592 Strongly Correlated Electrons +1308.6806 Soft Condensed Matter +1309.0036 Phenomenology +1309.0177 +1309.0349 Optics +1309.0525 Phenomenology +1309.1599 Disordered Systems and Neural Networks +1309.1756 Materials Science +1309.2285 Cosmology and Nongalactic Astrophysics +1309.2443 Theory +1309.3262 Strongly Correlated Electrons +1309.4979 Mesoscale and Nanoscale Physics +1309.5619 Mesoscale and Nanoscale Physics +1309.5948 Theory +1309.6438 Statistical Mechanics +1309.6637 Cosmology and Nongalactic Astrophysics +1310.0023 +1310.0435 +1310.0447 Experiment +1310.0846 Quantum Gases +1310.0972 Lattice +1310.1090 Phenomenology +1310.1163 Experiment +1310.1697 Strongly Correlated Electrons +1310.2675 +1310.2889 Phenomenology +1310.4233 Strongly Correlated Electrons +1310.4385 +1310.4687 Optics +1310.5117 +1310.5326 Theory +1310.5419 Phenomenology +1310.5534 Computer Science and Game Theory +1310.5701 Solar and Stellar Astrophysics +1310.5712 High Energy Astrophysical Phenomena +1310.5721 Cosmology and Nongalactic Astrophysics +1310.7600 Phenomenology +1310.7858 Phenomenology +1310.8000 Strongly Correlated Electrons +1311.0948 +1311.1516 +1311.1824 Phenomenology +1311.1904 Algebraic Geometry +1311.2670 Social and Information Networks +1311.2922 Superconductivity +1311.4551 Astrophysics of Galaxies +1311.5060 +1311.5111 Lattice +1311.5235 Superconductivity +1311.5468 Strongly Correlated Electrons +1311.5706 Chemical Physics +1311.6105 Cosmology and Nongalactic Astrophysics +1311.6630 Superconductivity +1311.7032 Materials Science +1312.0188 +1312.0451 Probability +1312.0645 +1312.2847 Mesoscale and Nanoscale Physics +1312.3487 +1312.3844 +1312.5997 Chemical Physics +1312.7286 Mesoscale and Nanoscale Physics +1312.7373 Databases +1312.7738 +1401.2405 Networking and Internet Architecture +1401.2589 Phenomenology +1401.3012 High Energy Astrophysical Phenomena +1401.3635 Phenomenology +1401.4074 Statistical Mechanics +1401.4339 Cryptography and Security +1401.4492 Logic in Computer Science +1401.4585 Category Theory +1401.4735 Logic in Computer Science +1401.4782 Functional Analysis +1401.4817 Combinatorics +1401.4966 Spectral Theory +1401.5010 Spectral Theory +1401.5058 Optimization and Control +1401.5060 Earth and Planetary Astrophysics +1401.5065 Cosmology and Nongalactic Astrophysics +1401.5086 Symbolic Computation +1401.5092 Information Theory +1401.5097 Programming Languages +1401.5098 Computer Vision and Pattern Recognition +1401.5102 Networking and Internet Architecture +1401.5107 Logic in Computer Science +1401.5108 Computer Vision and Pattern Recognition +1401.5111 Human-Computer Interaction +1401.5113 Logic in Computer Science +1401.5122 Materials Science +1401.5133 Mesoscale and Nanoscale Physics +1401.5134 Numerical Analysis +1401.5135 Number Theory +1401.5136 Learning +1401.5138 High Energy Astrophysical Phenomena +1401.5139 Numerical Analysis +1401.5141 Rings and Algebras +1401.5144 +1401.5146 Probability +1401.5147 Algebraic Topology +1401.5148 Numerical Analysis +1401.5149 +1401.5150 Numerical Analysis +1401.5155 Distributed, Parallel, and Cluster Computing +1401.5156 Artificial Intelligence +1401.5157 Artificial Intelligence +1401.5158 Analysis of PDEs +1401.5162 Computational Engineering, Finance, and Science +1401.5163 Networking and Internet Architecture +1401.5164 Combinatorics +1401.5165 Software Engineering +1401.5167 Differential Geometry +1401.5168 Information Theory +1401.5169 Chemical Physics +1401.5171 Numerical Analysis +1401.5174 Networking and Internet Architecture +1401.5175 Social and Information Networks +1401.5176 Solar and Stellar Astrophysics +1401.5178 Computers and Society +1401.5181 Human-Computer Interaction +1401.5183 Software Engineering +1401.5187 Information Theory +1401.5189 Theory +1401.5191 Software Engineering +1401.5198 Software Engineering +1401.5199 Mesoscale and Nanoscale Physics +1401.5201 Earth and Planetary Astrophysics +1401.5208 Distributed, Parallel, and Cluster Computing +1401.5209 Other Computer Science +1401.5213 +1401.5214 Complex Variables +1401.5219 Probability +1401.5221 Systems and Control +1401.5224 Robotics +1401.5227 Differential Geometry +1401.5228 Phenomenology +1401.5232 Robotics +1401.5234 Information Theory +1401.5236 Computers and Society +1401.5237 Operator Algebras +1401.5241 Phenomenology +1401.5245 Computer Vision and Pattern Recognition +1401.5246 Neural and Evolutionary Computing +1401.5248 Populations and Evolution +1401.5252 Biological Physics +1401.5254 Logic in Computer Science +1401.5255 +1401.5258 Networking and Internet Architecture +1401.5259 Number Theory +1401.5261 Logic in Computer Science +1401.5263 Mesoscale and Nanoscale Physics +1401.5264 Methodology +1401.5265 Software Engineering +1401.5270 Functional Analysis +1401.5271 Accelerator Physics +1401.5273 Logic +1401.5274 Mesoscale and Nanoscale Physics +1401.5275 +1401.5279 Solar and Stellar Astrophysics +1401.5282 Dynamical Systems +1401.5284 Materials Science +1401.5285 Methodology +1401.5287 Formal Languages and Automata Theory +1401.5289 Human-Computer Interaction +1401.5290 Geometric Topology +1401.5291 Complex Variables +1401.5292 Programming Languages +1401.5304 Geometric Topology +1401.5305 Information Theory +1401.5306 Networking and Internet Architecture +1401.5310 Optics +1401.5314 General Finance +1401.5315 General Physics +1401.5316 Data Structures and Algorithms +1401.5317 Group Theory +1401.5320 Optics +1401.5321 Information Theory +1401.5325 Logic in Computer Science +1401.5330 Computational Geometry +1401.5334 Artificial Intelligence +1401.5338 Logic in Computer Science +1401.5339 Optimization and Control +1401.5341 Artificial Intelligence +1401.5345 Number Theory +1401.5346 Computers and Society +1401.5347 Logic in Computer Science +1401.5348 +1401.5349 +1401.5351 Logic in Computer Science +1401.5353 Mathematical Software +1401.5364 Computational Engineering, Finance, and Science +1401.5367 Software Engineering +1401.5369 +1401.5371 Numerical Analysis +1401.5373 Numerical Analysis +1401.5379 Group Theory +1401.5382 Formal Languages and Automata Theory +1401.5389 Information Retrieval +1401.5390 Computation and Language +1401.5391 Programming Languages +1401.5395 High Energy Astrophysical Phenomena +1401.5398 Statistics Theory +1401.5401 Information Theory +1401.5402 +1401.5405 Analysis of PDEs +1401.5406 Analysis of PDEs +1401.5407 Social and Information Networks +1401.5408 Statistics Theory +1401.5411 Analysis of PDEs +1401.5413 Functional Analysis +1401.5415 Optimization and Control +1401.5419 Dynamical Systems +1401.5422 Dynamical Systems +1401.5424 Artificial Intelligence +1401.5427 Mesoscale and Nanoscale Physics +1401.5428 Complex Variables +1401.5431 Pricing of Securities +1401.5433 Software Engineering +1401.5434 Functional Analysis +1401.5435 Instrumentation and Detectors +1401.5438 Classical Analysis and ODEs +1401.5439 Analysis of PDEs +1401.5440 Solar and Stellar Astrophysics +1401.5441 Combinatorics +1401.5444 Information Theory +1401.5450 Number Theory +1401.5452 Statistical Finance +1401.5455 Probability +1401.5458 Algebraic Geometry +math/0608390 Quantum Algebra +quant-ph/0703261 +0708.0780 Numerical Analysis +0803.3046 Strongly Correlated Electrons +0902.2509 Classical Analysis and ODEs +0902.2514 Classical Analysis and ODEs +0902.3036 Classical Analysis and ODEs +0903.1676 Classical Analysis and ODEs +0911.3620 Geometric Topology +1003.4553 Number Theory +1006.0773 Optimization and Control +1101.3267 Optimization and Control +1102.1153 Number Theory +1103.4497 Differential Geometry +1107.0389 +1107.3628 Statistical Mechanics +1109.2778 Cosmology and Nongalactic Astrophysics +1110.1467 Representation Theory +1110.4082 Complex Variables +1110.4203 Probability +1111.1652 Analysis of PDEs +1201.3024 Statistical Mechanics +1202.0766 Classical Analysis and ODEs +1202.2606 Classical Analysis and ODEs +1202.4240 Classical Analysis and ODEs +1202.4568 Algebraic Geometry +1203.4010 Probability +1203.5513 Pricing of Securities +1205.1586 Algebraic Geometry +1205.4008 Trading and Market Microstructure +1206.0634 Representation Theory +1206.2298 Quantum Gases +1206.2593 Phenomenology +1206.3532 Geometric Topology +1206.3534 Algebraic Geometry +1206.4875 Earth and Planetary Astrophysics +1206.6948 +1207.3663 Cosmology and Nongalactic Astrophysics +1208.3447 Medical Physics +1208.4421 Quantum Gases +1208.6089 +1209.4053 Optimization and Control +1209.4526 Soft Condensed Matter +1211.0803 +1211.4775 Software Engineering +1212.2046 Disordered Systems and Neural Networks +1301.3264 Classical Analysis and ODEs +1302.1414 Analysis of PDEs +1302.3475 Optics +1303.0709 Strongly Correlated Electrons +1303.2084 Experiment +1303.2154 High Energy Astrophysical Phenomena +1303.4400 Cosmology and Nongalactic Astrophysics +1304.7450 Commutative Algebra +1305.0589 Plasma Physics +1305.0646 Numerical Analysis +1305.1056 Statistics Theory +1305.1338 Optimization and Control +1305.1722 +1305.4192 Experiment +1305.6768 Earth and Planetary Astrophysics +1306.1690 Differential Geometry +1306.3064 Instrumentation and Detectors +1306.3112 Materials Science +1306.4675 Cosmology and Nongalactic Astrophysics +1306.6469 Experiment +1307.0311 +1307.0703 Probability +1307.0959 Solar and Stellar Astrophysics +1307.1325 +1307.2070 Soft Condensed Matter +1307.4791 Theory +1307.6795 Experiment +1307.8281 Symbolic Computation +1308.1993 Optimization and Control +1308.2594 Spectral Theory +1308.2631 Experiment +1308.3716 Theory +1308.5064 Risk Management +1309.1099 Astrophysics of Galaxies +1309.1321 Cosmology and Nongalactic Astrophysics +1309.1875 Physics and Society +1309.3230 Experiment +1309.3571 Strongly Correlated Electrons +1309.4062 Information Theory +1309.4619 Atomic Physics +1309.5153 +1309.5402 Mesoscale and Nanoscale Physics +1309.5578 Number Theory +1309.7782 +1310.2767 Atomic Physics +1310.3675 Experiment +1310.3722 Lattice +1310.6383 Computational Complexity +1310.6584 Experiment +1310.7029 Phenomenology +1311.1077 Phenomenology +1311.1929 Algebraic Geometry +1311.2092 Computational Complexity +1311.2736 Astrophysics of Galaxies +1311.2955 High Energy Astrophysical Phenomena +1311.3388 Optics +1311.3551 Phenomenology +1311.3809 High Energy Astrophysical Phenomena +1311.4706 Populations and Evolution +1311.5267 Phenomenology +1311.5566 Instrumentation and Methods for Astrophysics +1311.5779 High Energy Astrophysical Phenomena +1311.6329 Software Engineering +1311.7580 Astrophysics of Galaxies +1311.7657 Solar and Stellar Astrophysics +1312.0481 Strongly Correlated Electrons +1312.0498 Quantum Gases +1312.3415 Cosmology and Nongalactic Astrophysics +1312.5484 +1312.6268 +1312.7751 Dynamical Systems +1312.7802 Materials Science +1401.0161 High Energy Astrophysical Phenomena +1401.0563 Astrophysics of Galaxies +1401.1175 Analysis of PDEs +1401.1334 Earth and Planetary Astrophysics +1401.2151 High Energy Astrophysical Phenomena +1401.2256 Probability +1401.2711 Rings and Algebras +1401.2848 High Energy Astrophysical Phenomena +1401.2914 Soft Condensed Matter +1401.3043 +1401.4818 Solar and Stellar Astrophysics +1401.4894 +1401.4979 Solar and Stellar Astrophysics +1401.5511 Solar and Stellar Astrophysics +1401.5538 Combinatorics +1401.5594 Solar and Stellar Astrophysics +1401.5626 High Energy Astrophysical Phenomena +1401.6186 Astrophysics of Galaxies +1401.6304 Commutative Algebra +1401.7322 Solar and Stellar Astrophysics +1401.7333 Astrophysics of Galaxies +1401.7581 Spectral Theory +1402.0004 High Energy Astrophysical Phenomena +1402.0592 Earth and Planetary Astrophysics +1402.0651 +1402.0814 Earth and Planetary Astrophysics +1402.1104 +1402.1734 Applications +1402.1798 Solar and Stellar Astrophysics +1402.1977 Astrophysics of Galaxies +1402.2525 High Energy Astrophysical Phenomena +1402.2809 High Energy Astrophysical Phenomena +1402.2832 Statistical Mechanics +1402.2842 Astrophysics of Galaxies +1402.2927 Solar and Stellar Astrophysics +1402.3187 Astrophysics of Galaxies +1402.3257 Astrophysics of Galaxies +1402.3267 Cosmology and Nongalactic Astrophysics +1402.3594 Cosmology and Nongalactic Astrophysics +1402.3802 High Energy Astrophysical Phenomena +1402.4051 Solar and Stellar Astrophysics +1402.4241 Earth and Planetary Astrophysics +1402.4436 Cosmology and Nongalactic Astrophysics +1402.4485 High Energy Astrophysical Phenomena +1402.4496 Materials Science +1402.4931 Strongly Correlated Electrons +1402.5041 Astrophysics of Galaxies +1402.5263 Solar and Stellar Astrophysics +1402.5343 Solar and Stellar Astrophysics +1402.5614 Astrophysics of Galaxies +1402.5778 Earth and Planetary Astrophysics +1402.5967 Astrophysics of Galaxies +1402.6110 High Energy Astrophysical Phenomena +1402.6597 Solar and Stellar Astrophysics +1402.6727 Astrophysics of Galaxies +1402.7002 Soft Condensed Matter +1402.7208 Astrophysics of Galaxies +1403.0071 High Energy Astrophysical Phenomena +1403.0121 Earth and Planetary Astrophysics +1403.0242 General Mathematics +1403.0323 Numerical Analysis +1403.0326 Numerical Analysis +1403.0343 Solar and Stellar Astrophysics +1403.0586 Earth and Planetary Astrophysics +1403.0730 Solar and Stellar Astrophysics +1403.1262 Astrophysics of Galaxies +1403.1275 Solar and Stellar Astrophysics +1403.1287 Strongly Correlated Electrons +1403.1400 High Energy Astrophysical Phenomena +1403.1506 Astrophysics of Galaxies +1403.1763 Astrophysics of Galaxies +1403.1926 Solar and Stellar Astrophysics +1403.2075 Solar and Stellar Astrophysics +1403.2163 Solar and Stellar Astrophysics +1403.2183 Solar and Stellar Astrophysics +1403.2212 Solar and Stellar Astrophysics +1403.2240 Solar and Stellar Astrophysics +1403.2312 Phenomenology +1403.2355 Solar and Stellar Astrophysics +1403.2494 Astrophysics of Galaxies +1403.2561 Astrophysics of Galaxies +1403.2594 Astrophysics of Galaxies +1403.2723 Earth and Planetary Astrophysics +1403.2930 Astrophysics of Galaxies +1403.2951 Theory +1403.3003 Solar and Stellar Astrophysics +1403.3284 Solar and Stellar Astrophysics +1403.3428 Astrophysics of Galaxies +1403.3538 Solar and Stellar Astrophysics +1403.3555 Instrumentation and Methods for Astrophysics +1403.3728 High Energy Astrophysical Phenomena +1403.3937 Optimization and Control +1403.3974 Astrophysics of Galaxies +1403.4052 Solar and Stellar Astrophysics +1403.4082 Astrophysics of Galaxies +1403.4141 Astrophysics of Galaxies +1403.4336 Solar and Stellar Astrophysics +1403.4396 Solar and Stellar Astrophysics +1403.4530 Solar and Stellar Astrophysics +1403.4573 Cosmology and Nongalactic Astrophysics +1403.4619 Solar and Stellar Astrophysics +1403.4821 Astrophysics of Galaxies +1403.6027 Solar and Stellar Astrophysics +1403.6045 Instrumentation and Methods for Astrophysics +1403.6056 Solar and Stellar Astrophysics +1403.6373 Solar and Stellar Astrophysics +1403.6728 Earth and Planetary Astrophysics +1403.6733 Commutative Algebra +1403.7047 Solar and Stellar Astrophysics +1403.7158 Metric Geometry +1403.7204 High Energy Astrophysical Phenomena +1403.8070 Astrophysics of Galaxies +1404.0014 Astrophysics of Galaxies +1404.0238 Cosmology and Nongalactic Astrophysics +1404.1020 Solar and Stellar Astrophysics +1404.1406 Statistics Theory +1404.2205 Solar and Stellar Astrophysics +1404.3014 +1404.3097 Instrumentation and Methods for Astrophysics +1404.4153 Number Theory +1404.4231 Geometric Topology +1404.4635 Solar and Stellar Astrophysics +1404.5297 +1404.5570 Optics +1404.5678 Algebraic Geometry +1404.5987 +1404.6228 Logic in Computer Science +1404.6681 Distributed, Parallel, and Cluster Computing +1404.7208 Other Statistics +1405.0318 Representation Theory +1405.0818 Phenomenology +1405.1029 General Physics +1405.1035 Instrumentation and Methods for Astrophysics +1405.1165 Analysis of PDEs +1405.1400 Methodology +1405.1409 General Physics +1405.1421 Astrophysics of Galaxies +1405.1429 Social and Information Networks +1405.1436 Neural and Evolutionary Computing +1405.1438 Social and Information Networks +1405.1442 Lattice +1405.1443 Astrophysics of Galaxies +1405.1444 Biomolecules +1405.1445 Neural and Evolutionary Computing +1405.1446 Astrophysics of Galaxies +1405.1448 Earth and Planetary Astrophysics +1405.1451 Complex Variables +1405.1454 +1405.1455 Earth and Planetary Astrophysics +1405.1457 Phenomenology +1405.1460 Metric Geometry +1405.1462 Molecular Networks +1405.1466 Chemical Physics +1405.1468 Dynamical Systems +1405.1469 Statistical Mechanics +1405.1471 Disordered Systems and Neural Networks +1405.1474 Atmospheric and Oceanic Physics +1405.1480 Optimization and Control +1405.1482 Differential Geometry +1405.1483 Optimization and Control +1405.1484 Combinatorics +1405.1485 Functional Analysis +1405.1486 Information Retrieval +1405.1487 +1405.1491 Computation +1405.1495 Mesoscale and Nanoscale Physics +1405.1497 Probability +1405.1500 Solar and Stellar Astrophysics +1405.1502 Information Theory +1405.1505 Software Engineering +1405.1506 Optimization and Control +1405.1510 Computer Science and Game Theory +1405.1511 Social and Information Networks +1405.1512 Software Engineering +1405.1513 Learning +1405.1514 Networking and Internet Architecture +1405.1515 Robotics +1405.1517 Functional Analysis +1405.1520 Artificial Intelligence +1405.1522 Functional Analysis +1405.1524 Artificial Intelligence +1405.1527 Strongly Correlated Electrons +1405.1530 Number Theory +1405.1531 Probability +1405.1534 Applications +1405.1535 Learning +1405.1541 Analysis of PDEs +1405.1550 Commutative Algebra +1405.1553 Number Theory +1405.1554 Combinatorics +1405.1556 Differential Geometry +1405.1558 Networking and Internet Architecture +1405.1562 Dynamical Systems +1405.1564 Geophysics +1405.1565 Logic in Computer Science +1405.1569 Applications +1405.1578 Strongly Correlated Electrons +1405.1580 Machine Learning +1405.1583 Probability +1405.1584 Logic in Computer Science +1405.1585 Mesoscale and Nanoscale Physics +1405.1599 Combinatorics +1405.1601 Combinatorics +1405.1602 Soft Condensed Matter +1405.1603 Methodology +1405.1605 Computation and Language +1405.1607 Operator Algebras +1405.1611 Subcellular Processes +1405.1613 Operator Algebras +1405.1614 Rings and Algebras +1405.1615 Computer Science and Game Theory +1405.1617 Phenomenology +1405.1621 Chemical Physics +1405.1622 Phenomenology +1405.1624 Solar and Stellar Astrophysics +1405.1637 Complex Variables +1405.1646 Algebraic Geometry +1405.1648 Dynamical Systems +1405.1650 Metric Geometry +1405.1653 Numerical Analysis +1405.1654 General Physics +1405.1657 Optics +1405.1662 Materials Science +1405.1669 +1405.1670 Probability +1405.1671 Distributed, Parallel, and Cluster Computing +1405.1672 Combinatorics +1405.1673 Combinatorics +1405.1676 Group Theory +1405.1677 Optics +1405.1679 Computers and Society +1405.1680 Group Theory +1405.1683 +1405.1686 Probability +1405.1688 Distributed, Parallel, and Cluster Computing +1405.1689 +1405.1690 Spectral Theory +1405.1692 Theory +1405.1698 +1405.1703 Software Engineering +1405.1705 Databases +1405.1710 Representation Theory +1405.1713 Combinatorics +1405.1716 Optimization and Control +1405.1717 Computer Vision and Pattern Recognition +hep-th/9807240 Theory +hep-th/9808019 Theory +math/0209037 K-Theory and Homology +1004.0686 Operator Algebras +1004.1140 Experiment +1008.2053 Number Theory +1009.1066 Mesoscale and Nanoscale Physics +1009.5254 Mesoscale and Nanoscale Physics +1010.2489 Number Theory +1112.3772 Geometric Topology +1112.6120 Group Theory +1201.6141 Software Engineering +1203.4497 Solar and Stellar Astrophysics +1205.1471 +1206.5746 Combinatorics +1210.1353 Dynamical Systems +1210.5017 Strongly Correlated Electrons +1301.1491 K-Theory and Homology +1301.3205 +1301.3800 Computational Physics +1302.5197 Combinatorics +1302.7061 Analysis of PDEs +1303.2785 Representation Theory +1303.3331 Logic +1303.6596 Statistical Mechanics +1304.0114 Rings and Algebras +1304.2385 Rings and Algebras +1304.3132 Number Theory +1304.7968 +1305.1770 Strongly Correlated Electrons +1305.5314 Quantum Gases +1305.5457 Differential Geometry +1305.6635 Molecular Networks +1306.2401 Cryptography and Security +1307.3240 Superconductivity +1307.7458 Phenomenology +1308.3141 Optimization and Control +1308.4036 Superconductivity +1308.4850 Superconductivity +1309.0501 Strongly Correlated Electrons +1309.4239 Representation Theory +1310.0840 Phenomenology +1310.3883 Computer Science and Game Theory +1310.4027 Exactly Solvable and Integrable Systems +1310.4566 Analysis of PDEs +1310.4721 Algebraic Geometry +1310.5217 Cosmology and Nongalactic Astrophysics +1310.7254 Differential Geometry +1310.7415 Differential Geometry +1311.4543 +1311.5583 High Energy Astrophysical Phenomena +1311.6129 Instrumentation and Detectors +1312.0250 Instrumentation and Detectors +1312.1168 Strongly Correlated Electrons +1312.3497 Group Theory +1312.4331 High Energy Astrophysical Phenomena +1312.4718 Chemical Physics +1401.0965 Quantum Gases +1401.4051 +1401.5308 Strongly Correlated Electrons +1401.7628 Theory +1402.1340 +1402.1934 Theory +1402.4433 Superconductivity +1402.5057 +1402.6101 Cosmology and Nongalactic Astrophysics +1402.6708 +1402.6929 Mesoscale and Nanoscale Physics +1402.7263 Computation +1403.0893 Theory +1403.2431 Data Structures and Algorithms +1403.3770 Algebraic Geometry +1403.4089 High Energy Astrophysical Phenomena +1403.5462 Systems and Control +1403.5552 Differential Geometry +1403.5715 Cryptography and Security +1403.6075 Plasma Physics +1403.6132 +1403.7274 Applications +1404.3869 Rings and Algebras +1404.4798 Portfolio Management +1404.4871 Astrophysics of Galaxies +1404.7035 Experiment +1405.0495 Phenomenology +1405.1721 Strongly Correlated Electrons +1405.2556 Materials Science +1405.3680 High Energy Astrophysical Phenomena +1405.3759 Optics +1405.4634 +1405.5557 Computational Physics +1405.5666 Mesoscale and Nanoscale Physics +1405.7600 Instrumentation and Methods for Astrophysics +1405.7601 Information Theory +1405.7634 Mesoscale and Nanoscale Physics +1406.1537 Neurons and Cognition +1406.1762 Mesoscale and Nanoscale Physics +1406.2507 Neural and Evolutionary Computing +1406.2941 Theory +1406.3421 Strongly Correlated Electrons +1406.5503 Phenomenology +1406.5680 Astrophysics of Galaxies +1406.6469 High Energy Astrophysical Phenomena +1406.6842 Geophysics +1406.7233 Astrophysics of Galaxies +1407.2044 Computer Vision and Pattern Recognition +1407.2123 Space Physics +1407.4596 Statistics Theory +1407.6708 Cosmology and Nongalactic Astrophysics +1407.7910 Group Theory +1407.8028 +1408.1276 Cryptography and Security +1408.1281 Mesoscale and Nanoscale Physics +1408.1293 Software Engineering +1408.1392 Instrumentation and Methods for Astrophysics +1408.1402 Solar and Stellar Astrophysics +1408.1410 +1408.1414 Fluid Dynamics +1408.1416 Cryptography and Security +1408.1417 Functional Analysis +1408.1429 Computer Science and Game Theory +1408.1431 Data Structures and Algorithms +1408.1432 Phenomenology +1408.1434 Optimization and Control +1408.1438 Mesoscale and Nanoscale Physics +1408.1439 Classical Analysis and ODEs +1408.1440 Information Theory +1408.1442 Optimization and Control +1408.1443 Functional Analysis +1408.1445 Superconductivity +1408.1446 Optimization and Control +1408.1451 Cryptography and Security +1408.1453 Logic in Computer Science +1408.1454 Logic in Computer Science +1408.1455 Logic in Computer Science +1408.1456 Logic in Computer Science +1408.1457 Programming Languages +1408.1458 Programming Languages +1408.1459 Programming Languages +1408.1460 Logic in Computer Science +1408.1461 Discrete Mathematics +1408.1463 Dynamical Systems +1408.1471 Experiment +1408.1474 Symplectic Geometry +1408.1479 Artificial Intelligence +1408.1480 Artificial Intelligence +1408.1481 Artificial Intelligence +1408.1482 Artificial Intelligence +1408.1483 Artificial Intelligence +1408.1484 Artificial Intelligence +1408.1485 Artificial Intelligence +1408.1486 Computer Science and Game Theory +1408.1487 Artificial Intelligence +1408.1488 Artificial Intelligence +1408.1489 Artificial Intelligence +1408.1490 Information Theory +1408.1491 Rings and Algebras +1408.1492 Computer Science and Game Theory +1408.1493 Metric Geometry +1408.1497 Classical Analysis and ODEs +1408.1504 Differential Geometry +1408.1521 Group Theory +1408.1524 Cosmology and Nongalactic Astrophysics +1408.1526 Quantum Gases +1408.1527 Symplectic Geometry +1408.1529 Adaptation and Self-Organizing Systems +1408.1530 Probability +1408.1532 Statistics Theory +1408.1533 Number Theory +1408.1534 Social and Information Networks +1408.1535 Number Theory +1408.1539 +1408.1541 Superconductivity +1408.1543 Strongly Correlated Electrons +1408.1546 Information Theory +1408.1547 Materials Science +1408.1548 Analysis of PDEs +1408.1549 Computer Vision and Pattern Recognition +1408.1551 Optics +1408.1552 Theory +1408.1560 Information Theory +1408.1568 Quantum Gases +1408.1569 Analysis of PDEs +1408.1570 Classical Physics +1408.1571 Materials Science +1408.1573 Quantum Gases +1408.1575 Soft Condensed Matter +1408.1580 Other Quantitative Biology +1408.1582 Biological Physics +1408.1585 Functional Analysis +1408.1589 Computational Engineering, Finance, and Science +1408.1597 Combinatorics +1408.1600 Software Engineering +1408.1602 Systems and Control +1408.1603 Physics and Society +1408.1609 Dynamical Systems +1408.1612 +1408.1615 Group Theory +1408.1616 +1408.1620 Analysis of PDEs +1408.1621 Differential Geometry +1408.1623 +1408.1636 General Physics +1408.1638 +1408.1639 K-Theory and Homology +1408.1647 Logic in Computer Science +1408.1648 Instrumentation and Detectors +1408.1649 Group Theory +1408.1651 +1408.1654 Solar and Stellar Astrophysics +1408.1655 Learning +1408.1663 Dynamical Systems +1408.1668 Mesoscale and Nanoscale Physics +1408.1671 Economics +1408.1673 Dynamical Systems +1408.1674 Commutative Algebra +1408.1683 High Energy Astrophysical Phenomena +1408.1685 Differential Geometry +1408.1686 Statistical Mechanics +1408.1687 Rings and Algebras +1408.1688 Computer Vision and Pattern Recognition +0812.2717 Optics +0902.0156 Instrumentation and Detectors +0908.2561 Theory +0910.1469 +1004.4707 Strongly Correlated Electrons +1005.5620 Statistics Theory +1012.4357 Optimization and Control +1103.0076 Strongly Correlated Electrons +1106.2674 Statistics Theory +1107.0760 Materials Science +1108.1250 Phenomenology +1109.4641 Functional Analysis +1111.1739 History and Overview +1201.0304 Combinatorics +1201.0554 Combinatorics +1201.5419 Strongly Correlated Electrons +1201.6439 Algebraic Geometry +1202.5228 Solar and Stellar Astrophysics +1203.4692 Strongly Correlated Electrons +1203.6358 Phenomenology +1205.0836 Phenomenology +1205.1370 Other Condensed Matter +1205.1588 Cosmology and Nongalactic Astrophysics +1207.5998 Statistics Theory +1208.0888 Statistical Mechanics +1208.5850 Number Theory +1209.1469 Strongly Correlated Electrons +1209.2797 Phenomenology +1209.3702 Information Theory +1209.4148 Combinatorics +1210.4072 Analysis of PDEs +1210.4964 Algebraic Topology +1210.5617 Complex Variables +1210.7532 Other Condensed Matter +1211.0286 Phenomenology +1211.2416 Optics +1211.5394 Representation Theory +1212.2215 High Energy Astrophysical Phenomena +1212.4222 Analysis of PDEs +1301.0760 Functional Analysis +1301.1075 Mesoscale and Nanoscale Physics +1301.4107 Optics +1301.4322 +1301.6196 Information Theory +1302.2685 Strongly Correlated Electrons +1302.7203 Numerical Analysis +1303.0845 Phenomenology +1303.1113 Statistical Mechanics +1303.1559 Data Structures and Algorithms +1303.7288 Information Theory +1304.2612 Cryptography and Security +1304.3283 Dynamical Systems +1304.6174 Artificial Intelligence +1304.6373 Quantum Algebra +1305.0311 Computer Vision and Pattern Recognition +1305.1891 Cosmology and Nongalactic Astrophysics +1305.6811 High Energy Astrophysical Phenomena +1306.2022 Strongly Correlated Electrons +1306.2732 Materials Science +1306.3619 Populations and Evolution +1306.6069 Differential Geometry +1306.6089 Phenomenology +1307.2705 Computational Geometry +1307.5823 General Physics +1308.3179 +1308.5122 Group Theory +1308.5185 Quantum Algebra +1308.6092 +1308.6562 Numerical Analysis +1308.6702 Information Theory +1309.5334 Mesoscale and Nanoscale Physics +1309.5604 Combinatorics +1309.6300 Optics +1310.1921 Phenomenology +1310.3509 Phenomenology +1310.5035 Numerical Analysis +1310.6319 Machine Learning +1310.6565 Differential Geometry +1311.1085 Geometric Topology +1311.1783 Quantum Gases +1311.3802 Mesoscale and Nanoscale Physics +1311.5666 Phenomenology +1311.6517 Atomic Physics +1312.0544 Superconductivity +1312.1832 +1312.3207 Representation Theory +1312.3645 +1312.4113 Computers and Society +1312.6490 Information Theory +1312.7319 Atomic Physics +1401.0028 +1401.0528 +1401.1804 Functional Analysis +1401.3166 Number Theory +1401.5212 Phenomenology +1401.8204 Soft Condensed Matter +1402.0336 Differential Geometry +1402.1434 +1402.1912 +1402.2401 +1402.4165 Analysis of PDEs +1402.6254 Phenomenology +1402.6449 Phenomenology +1402.6895 Statistical Mechanics +1403.0590 Cosmology and Nongalactic Astrophysics +1403.1141 Mesoscale and Nanoscale Physics +1403.2228 +1403.2622 Disordered Systems and Neural Networks +1403.3011 Physics and Society +1403.5416 Disordered Systems and Neural Networks +1403.5469 Theory +1403.6438 Combinatorics +1403.6514 Superconductivity +1403.6725 Earth and Planetary Astrophysics +1404.0272 Phenomenology +1404.0617 High Energy Astrophysical Phenomena +1404.3753 Methodology +1404.4274 Artificial Intelligence +1404.4396 Operator Algebras +1404.6670 Lattice +1405.0290 Number Theory +1405.0396 Algebraic Topology +1405.2693 Programming Languages +1405.3324 Representation Theory +1405.3454 Computational Geometry +1405.5389 Neurons and Cognition +1405.5762 Number Theory +1405.6504 +1405.6652 Lattice +1405.6739 History and Overview +1405.6885 Symbolic Computation +1405.6993 Solar and Stellar Astrophysics +1405.7186 Space Physics +1405.7353 Solar and Stellar Astrophysics +1405.7359 Complex Variables +1405.7361 Computer Vision and Pattern Recognition +1405.7362 Computer Vision and Pattern Recognition +1405.7380 Algebraic Geometry +1405.7389 Statistical Mechanics +1405.7392 Robotics +1405.7393 Computers and Society +1405.7397 Computation and Language +1405.7400 Cosmology and Nongalactic Astrophysics +1405.7402 Accelerator Physics +1405.7404 Computational Physics +1405.7406 Computer Vision and Pattern Recognition +1405.7407 Computational Physics +1405.7413 Number Theory +1405.7416 Mesoscale and Nanoscale Physics +1405.7417 Optimization and Control +1405.7419 +1405.7424 Cryptography and Security +1405.7425 Instrumentation and Detectors +1405.7430 Learning +1405.7436 Applications +1405.7440 Information Theory +1405.7446 Networking and Internet Architecture +1405.7447 Methodology +1405.7457 Graphics +1405.7460 Information Theory +1405.7469 Theory +1405.7471 Learning +1405.7475 Cryptography and Security +1405.7480 Classical Analysis and ODEs +1405.7481 Statistics Theory +1405.7483 Statistics Theory +1405.7484 Networking and Internet Architecture +1405.7487 Distributed, Parallel, and Cluster Computing +1405.7488 Optimization and Control +1405.7495 Instrumentation and Detectors +1405.7497 Data Structures and Algorithms +1405.7498 Combinatorics +1405.7502 Differential Geometry +1405.7504 Logic +1405.7507 Combinatorics +1405.7509 Differential Geometry +1405.7510 Statistical Mechanics +1405.7513 Combinatorics +1405.7519 Information Retrieval +1405.7524 Chemical Physics +1405.7526 Materials Science +1405.7528 Rings and Algebras +1405.7529 Phenomenology +1405.7532 +1405.7533 Optics +1405.7534 Mesoscale and Nanoscale Physics +1405.7538 Information Theory +1405.7539 Probability +1405.7541 Group Theory +1405.7544 Information Retrieval +1405.7545 Computer Vision and Pattern Recognition +1405.7547 Group Theory +1405.7548 Optics +1405.7554 Mesoscale and Nanoscale Physics +1405.7556 Statistical Mechanics +1405.7557 Earth and Planetary Astrophysics +1405.7559 Solar and Stellar Astrophysics +1405.7560 Solar and Stellar Astrophysics +1405.7562 Materials Science +1405.7567 Artificial Intelligence +1405.7569 Analysis of PDEs +1405.7571 Multimedia +1405.7573 Combinatorics +1405.7578 History and Overview +1405.7579 History and Overview +1405.7581 History and Overview +1405.7584 Instrumentation and Methods for Astrophysics +1405.7586 Information Theory +1405.7596 Computational Complexity +1405.7599 General Physics +1405.7603 Statistical Finance +1405.7606 Probability +1405.7611 Risk Management +1405.7612 General Physics +1405.7616 Numerical Analysis +1405.7619 Data Structures and Algorithms +1405.7624 Learning +1405.7625 Algebraic Geometry +1405.7626 Computer Vision and Pattern Recognition +1405.7628 Solar and Stellar Astrophysics +1405.7629 Multimedia +1405.7631 Social and Information Networks +1405.7637 Chaotic Dynamics +1405.7638 Biological Physics +1405.7643 Classical Physics +1405.7656 Analysis of PDEs +1405.7657 Number Theory +1405.7659 Phenomenology +1405.7663 Dynamical Systems +1405.7664 Phenomenology +1405.7668 General Physics +1405.7672 Optics +1405.7673 +1405.7674 +1405.7675 Numerical Analysis +1405.7688 Differential Geometry +cs/0512044 Discrete Mathematics +0801.3345 Quantum Algebra +0807.1081 Number Theory +0807.1471 Algebraic Topology +0903.4094 Superconductivity +0903.4170 Materials Science +0905.3983 Combinatorics +0907.4217 Complex Variables +0912.1199 Analysis of PDEs +1001.5415 Analysis of PDEs +1004.5098 Solar and Stellar Astrophysics +1005.0230 Dynamical Systems +1006.2841 Materials Science +1008.4683 Mesoscale and Nanoscale Physics +1009.1113 Cosmology and Nongalactic Astrophysics +1104.0229 Cosmology and Nongalactic Astrophysics +1110.5854 Quantum Gases +1111.0791 Mesoscale and Nanoscale Physics +1111.1425 +1112.2890 Probability +1112.5422 K-Theory and Homology +1201.1179 Functional Analysis +1202.0983 Statistical Mechanics +1202.2057 Functional Analysis +1204.0053 Mathematical Software +1204.1408 Differential Geometry +1204.4661 +1205.1423 Information Theory +1205.3740 +1206.0474 Group Theory +1206.0821 Materials Science +1206.1740 +1206.1822 Number Theory +1206.3606 +1207.1665 +1207.3338 +1208.0021 +1208.3154 Numerical Analysis +1208.3895 Solar and Stellar Astrophysics +1208.3960 Cosmology and Nongalactic Astrophysics +1208.5131 +1209.0325 Complex Variables +1209.4131 Operator Algebras +1209.5554 Quantum Algebra +1210.3324 Disordered Systems and Neural Networks +1210.5364 Probability +1210.5504 Superconductivity +1211.1098 +1211.1228 +1211.6602 Algebraic Geometry +1212.1455 Cosmology and Nongalactic Astrophysics +1212.1551 Disordered Systems and Neural Networks +1212.3022 Geometric Topology +1212.3230 Cosmology and Nongalactic Astrophysics +1212.3405 Plasma Physics +1212.6266 Optics +1212.6618 Dynamical Systems +1212.6804 +1301.0450 Combinatorics +1301.3277 Group Theory +1301.4072 Algebraic Geometry +1302.0887 Physics and Society +1302.2170 Commutative Algebra +1302.3777 Information Theory +1302.4377 Logic +1302.5090 Combinatorics +1302.7270 Computational Geometry +1303.1129 Group Theory +1303.1150 Phenomenology +1303.1638 Strongly Correlated Electrons +1303.3639 Probability +1303.5022 Combinatorics +1303.5661 Optics +1303.6071 Data Structures and Algorithms +1304.0942 Disordered Systems and Neural Networks +1304.1846 Mesoscale and Nanoscale Physics +1304.3386 +1304.3548 Social and Information Networks +1304.4156 Physics and Society +1304.5223 Representation Theory +1304.7827 +1305.0316 Mesoscale and Nanoscale Physics +1305.1029 +1305.3159 Combinatorics +1305.3232 Optics +1305.3612 Mesoscale and Nanoscale Physics +1306.1659 +1306.3579 Quantum Gases +1306.4801 +1306.5056 Machine Learning +1306.5805 +1307.0357 History and Overview +1307.0366 Statistics Theory +1307.0614 Strongly Correlated Electrons +1307.1046 Phenomenology +1307.1359 Disordered Systems and Neural Networks +1307.2109 Geometric Topology +1307.2566 Cosmology and Nongalactic Astrophysics +1307.3430 Physics and Society +1307.3771 Theory +1307.3989 Probability +1307.4487 +1307.4876 Cosmology and Nongalactic Astrophysics +1307.5901 Fluid Dynamics +1307.7356 Soft Condensed Matter +1307.7922 Superconductivity +1308.0491 Pattern Formation and Solitons +1308.1312 Differential Geometry +1308.3603 Computers and Society +1308.3948 +1308.4357 Materials Science +1308.4427 Rings and Algebras +1308.6148 Data Analysis, Statistics and Probability +1308.6491 Other Condensed Matter +1308.6504 Information Theory +1309.0031 +1309.0605 +1309.0753 Disordered Systems and Neural Networks +1309.1402 Theory +1309.1572 +1309.3120 Strongly Correlated Electrons +1309.3500 Phenomenology +1309.4069 Soft Condensed Matter +1309.4206 Disordered Systems and Neural Networks +1309.4751 +1309.5583 +1309.5829 Molecular Networks +1309.5941 Mesoscale and Nanoscale Physics +1309.5994 Strongly Correlated Electrons +1309.7827 +1309.7932 Materials Science +1310.0018 Phenomenology +1310.0529 +1310.0694 +1310.0953 Analysis of PDEs +1310.1228 +1310.1489 +1310.1773 Algebraic Geometry +1310.2221 +1310.3763 Phenomenology +1310.5199 Systems and Control +1310.5631 Astrophysics of Galaxies +1310.6024 Rings and Algebras +1310.6296 Experiment +1310.6327 Statistical Mechanics +1310.6870 Information Theory +1310.7436 +1310.7518 Mesoscale and Nanoscale Physics +1311.0233 Materials Science +1311.0532 Optics +1311.0772 Logic +1311.1646 Strongly Correlated Electrons +1311.2434 Representation Theory +1311.2450 Group Theory +1311.2708 Experiment +1311.3720 Symbolic Computation +1311.4405 +1311.5327 +1311.7128 Neurons and Cognition +1312.0027 Mesoscale and Nanoscale Physics +1312.1351 Disordered Systems and Neural Networks +1312.1539 Experiment +1312.1706 Statistics Theory +1312.3508 Cosmology and Nongalactic Astrophysics +1312.3528 Algebraic Geometry +1312.3749 Social and Information Networks +1312.3906 Lattice +1312.4260 Phenomenology +1312.4859 +1312.5289 Quantum Gases +1312.5346 Materials Science +1312.5414 Differential Geometry +1312.6088 Mesoscale and Nanoscale Physics +1312.6229 Computer Vision and Pattern Recognition +1312.6729 Mesoscale and Nanoscale Physics +1312.7189 Complex Variables +1312.7251 Statistical Mechanics +1312.7481 Mesoscale and Nanoscale Physics +1312.7625 Mesoscale and Nanoscale Physics +1401.1436 Computation +1401.1917 Optimization and Control +1401.3579 Computer Science and Game Theory +1401.4266 Phenomenology +1401.4773 Optics +1401.5769 Combinatorics +1401.5989 Phenomenology +1401.6636 +1401.7867 Category Theory +1402.0122 Mesoscale and Nanoscale Physics +1402.1479 Theory +1402.2752 +1402.3580 Applications +1402.3932 +1402.4099 History and Philosophy of Physics +1402.4769 Instrumentation and Detectors +1402.4772 High Energy Astrophysical Phenomena +1402.4849 Number Theory +1402.4884 Machine Learning +1402.5028 Dynamical Systems +1402.5091 Combinatorics +1402.5164 Learning +1402.5410 Materials Science +1402.5422 Multimedia +1402.5428 Neural and Evolutionary Computing +1402.5435 +1402.5436 Artificial Intelligence +1402.5438 Optics +1402.5440 Graphics +1402.5449 Computational Complexity +1402.5451 Number Theory +1402.5453 Numerical Analysis +1402.5456 Systems and Control +1402.5457 Complex Variables +1402.5458 Artificial Intelligence +1402.5460 Optimization and Control +1402.5461 Robotics +1402.5462 Algebraic Geometry +1402.5466 Computational Engineering, Finance, and Science +1402.5468 Systems and Control +1402.5473 Machine Learning +1402.5475 Information Theory +1402.5476 Operator Algebras +1402.5477 Social and Information Networks +1402.5480 Numerical Analysis +1402.5482 Solar and Stellar Astrophysics +1402.5483 Information Theory +1402.5484 +1402.5485 High Energy Astrophysical Phenomena +1402.5486 Networking and Internet Architecture +1402.5488 Networking and Internet Architecture +1402.5490 Earth and Planetary Astrophysics +1402.5494 Combinatorics +1402.5497 Learning +1402.5499 Rings and Algebras +1402.5503 Networking and Internet Architecture +1402.5504 Representation Theory +1402.5505 Representation Theory +1402.5509 Algebraic Geometry +1402.5510 Combinatorics +1402.5511 Systems and Control +1402.5520 Algebraic Geometry +1402.5522 Instrumentation and Detectors +1402.5524 Cryptography and Security +1402.5527 +1402.5532 Chaotic Dynamics +1402.5534 Risk Management +1402.5544 Functional Analysis +1402.5547 Probability +1402.5549 Combinatorics +1402.5551 Combinatorics +1402.5562 Atomic and Molecular Clusters +1402.5565 Machine Learning +1402.5574 +1402.5575 Instrumentation and Detectors +1402.5577 Commutative Algebra +1402.5584 Statistics Theory +1402.5589 Functional Analysis +1402.5592 Software Engineering +1402.5593 Artificial Intelligence +1402.5595 Software Engineering +1402.5598 Materials Science +1402.5602 Chemical Physics +1402.5604 Systems and Control +1402.5605 Classical Analysis and ODEs +1402.5606 Number Theory +1402.5607 Probability +1402.5608 Probability +1402.5609 Statistics Theory +1402.5610 Materials Science +1402.5611 Analysis of PDEs +1402.5613 Data Structures and Algorithms +1402.5615 Quantum Algebra +1402.5616 Logic +1402.5617 Other Computer Science +1402.5619 Computer Vision and Pattern Recognition +1402.5621 Combinatorics +1402.5623 Computer Vision and Pattern Recognition +1402.5625 Differential Geometry +1402.5627 Metric Geometry +1402.5629 Functional Analysis +1402.5631 Optics +1402.5632 Metric Geometry +1402.5633 Number Theory +1402.5634 Learning +1402.5635 Instrumentation and Methods for Astrophysics +1402.5636 Dynamical Systems +1402.5638 Analysis of PDEs +1402.5639 Systems and Control +1402.5641 +1402.5642 Distributed, Parallel, and Cluster Computing +1402.5644 Systems and Control +1402.5645 Other Computer Science +1402.5647 Programming Languages +1402.5648 +1402.5659 Differential Geometry +1402.5663 Analysis of PDEs +1402.5665 Materials Science +1402.5669 +1402.5670 Numerical Analysis +1402.5671 Classical Analysis and ODEs +1402.5672 Dynamical Systems +1402.5673 +1402.5679 Pricing of Securities +1402.5682 Probability +1402.5686 Optics +1402.5687 Logic in Computer Science +1402.5689 +1402.5691 Information Theory +1402.5692 Information Theory +1402.5702 Quantitative Methods +1402.5703 Probability +1402.5705 Differential Geometry +1402.5707 Algebraic Geometry +1402.5708 Neural and Evolutionary Computing +1402.5717 Analysis of PDEs +1402.5721 Soft Condensed Matter +1402.5724 Methodology +1402.5725 Functional Analysis +1402.5729 Accelerator Physics +1402.5730 Information Theory +1402.5732 History and Philosophy of Physics +1402.5734 Information Theory +1402.5735 Quantum Algebra +1402.5739 Combinatorics +1402.5740 Algebraic Geometry +1402.5741 Differential Geometry +1402.5743 Social and Information Networks +1402.5745 Programming Languages +1402.5748 Networking and Internet Architecture +1402.5749 Software Engineering +1402.5750 Information Theory +1402.5753 Software Engineering +1402.5757 Software Engineering +1402.5758 Learning +1402.5759 Systems and Control +1402.5764 Software Engineering +1402.5766 Learning +1402.5768 Software Engineering +1402.5770 Distributed, Parallel, and Cluster Computing +1402.5773 Databases +1402.5774 Information Retrieval +1402.5775 Combinatorics +1402.5776 Atomic Physics +1402.5782 Medical Physics +1402.5783 Discrete Mathematics +1402.5784 Optimization and Control +1402.5786 Functional Analysis +1402.5788 Functional Analysis +1402.5793 Representation Theory +1402.5796 Differential Geometry +1402.5803 Information Theory +1402.5805 Computer Vision and Pattern Recognition +1402.5810 +1402.5818 Data Structures and Algorithms +1402.5821 Rings and Algebras +1402.5827 +1402.5828 Mesoscale and Nanoscale Physics +1402.5833 Group Theory +1402.5841 Optimization and Control +1402.5845 Information Theory +1402.5853 Quantum Algebra +1402.5858 Probability +1402.5859 Computer Vision and Pattern Recognition +1402.5862 Complex Variables +1402.5864 Probability +1402.5866 Dynamical Systems +1402.5867 Logic +1402.5870 Phenomenology +1402.5871 Representation Theory +1402.5873 Chaotic Dynamics +1402.5877 Fluid Dynamics +1402.5878 Computers and Society +1402.5879 Mesoscale and Nanoscale Physics +1402.5881 Information Theory +1402.5882 Computational Physics +1402.5885 Computational Physics +1402.5886 Learning +1402.5887 Combinatorics +1402.5889 Fluid Dynamics +1402.5890 Numerical Analysis +1402.5891 Fluid Dynamics +1402.5892 Numerical Analysis +1402.5893 Chaotic Dynamics +1402.5896 Fluid Dynamics +1402.5897 Mathematical Software +1402.5898 Combinatorics +1402.5905 Number Theory +1402.5906 Fluid Dynamics +1402.5909 Data Analysis, Statistics and Probability +1402.5913 Combinatorics +1402.5917 Mesoscale and Nanoscale Physics +1402.5918 Dynamical Systems +1402.5919 Differential Geometry +1402.5923 Computer Vision and Pattern Recognition +1402.5932 Instrumentation and Methods for Astrophysics +1402.5942 +1402.5946 Algebraic Geometry +math/0201072 Functional Analysis +math/0304018 Functional Analysis +1401.2263 Astrophysics of Galaxies +0805.3760 +0806.3406 Strongly Correlated Electrons +0903.3704 Probability +0912.1959 Strongly Correlated Electrons +1103.0066 Mathematical Software +1111.2476 Probability +1202.3065 Algebraic Geometry +1203.5023 Phenomenology +1205.3110 Algebraic Geometry +1206.5164 Algebraic Topology +1209.0611 +1210.1044 Geometric Topology +1210.6135 Probability +1211.0388 Optimization and Control +1211.1435 Numerical Analysis +1211.4303 Dynamical Systems +1212.0736 Strongly Correlated Electrons +1301.0999 Combinatorics +1301.4975 Representation Theory +1302.0511 Chaotic Dynamics +1302.6773 Phenomenology +1303.1941 Atomic Physics +1303.6228 Number Theory +1303.6558 +1306.3635 Probability +1306.4658 Solar and Stellar Astrophysics +1306.6199 Complex Variables +1307.0556 Computational Complexity +1307.1558 +1307.3802 Logic +1308.1803 Strongly Correlated Electrons +1309.2140 Strongly Correlated Electrons +1309.3621 +1309.6470 Number Theory +1310.0530 Information Theory +1310.0563 Experiment +1310.2025 Differential Geometry +1310.3694 Computational Finance +1310.5092 Analysis of PDEs +1310.5422 Data Structures and Algorithms +1311.0204 Probability +1311.0247 Strongly Correlated Electrons +1311.2975 Superconductivity +1311.3723 Chemical Physics +1311.5362 Information Theory +1312.0019 Algebraic Geometry +1312.0716 Chaotic Dynamics +1312.4245 Algebraic Topology +1312.5213 +1312.5844 Chemical Physics +1401.0409 Probability +1401.0430 Information Theory +1401.1923 Cosmology and Nongalactic Astrophysics +1401.3777 Quantum Gases +1401.4962 Astrophysics of Galaxies +1401.6260 Information Theory +1401.6663 Mesoscale and Nanoscale Physics +1402.2081 +1402.4348 Populations and Evolution +1402.4957 History and Overview +1402.6887 Phenomenology +1402.6968 Cosmology and Nongalactic Astrophysics +1402.7270 Differential Geometry +1403.0419 Physics Education +1403.0722 Strongly Correlated Electrons +1403.1663 Analysis of PDEs +1403.2942 Number Theory +1403.3523 +1403.3791 Mesoscale and Nanoscale Physics +1403.4740 Superconductivity +1403.5364 Optimization and Control +1403.7036 +1403.7781 Dynamical Systems +1404.0328 +1404.0475 +1404.2243 Chemical Physics +1404.2506 Statistical Mechanics +1404.3731 Strongly Correlated Electrons +1404.3792 Quantum Gases +1404.5337 Earth and Planetary Astrophysics +1404.7748 Computer Vision and Pattern Recognition +1405.0829 Fluid Dynamics +1405.0911 Fluid Dynamics +1405.3260 Strongly Correlated Electrons +1405.3745 Chemical Physics +1405.5737 Computer Vision and Pattern Recognition +1405.6962 Phenomenology +1405.7448 Superconductivity +1405.7610 Mesoscale and Nanoscale Physics +1405.7779 +1406.0158 Phenomenology +1406.0484 Experiment +1406.1310 Logic in Computer Science +1406.2633 High Energy Astrophysical Phenomena +1406.2799 Strongly Correlated Electrons +1406.4719 Mesoscale and Nanoscale Physics +1406.4981 Mesoscale and Nanoscale Physics +1406.5554 Computational Geometry +1406.6240 Differential Geometry +1406.6758 Information Theory +1406.6855 Optics +1406.7215 History and Philosophy of Physics +1406.7220 Instrumentation and Detectors +1406.7663 Experiment +1407.0879 Theory +1407.3418 Soft Condensed Matter +1407.3444 Superconductivity +1407.3549 Mesoscale and Nanoscale Physics +1407.4142 Mesoscale and Nanoscale Physics +1407.4837 Experiment +1407.4858 Mesoscale and Nanoscale Physics +1407.5813 Robotics +1407.5861 +1407.7739 Soft Condensed Matter +1408.0272 Data Structures and Algorithms +1408.1903 Algebraic Topology +1408.2285 Logic +1408.5585 General Finance +1408.6146 Analysis of PDEs +1408.6916 Databases +1409.0326 Solar and Stellar Astrophysics +1409.0652 +1409.2094 Analysis of PDEs +1409.2458 Atomic Physics +1409.2627 Phenomenology +1409.3034 +1409.4054 Combinatorics +1409.4568 Mesoscale and Nanoscale Physics +1409.5914 Methodology +1409.6158 Atomic Physics +1409.6806 Combinatorics +1409.6851 Theory +1409.7134 Machine Learning +1409.7288 Computer Science and Game Theory +1409.7386 Computation and Language +1409.7387 Computational Physics +1409.7398 Solar and Stellar Astrophysics +1409.7402 Space Physics +1409.7408 Information Theory +1409.7409 Spectral Theory +1409.7411 Logic in Computer Science +1409.7415 Instrumentation and Methods for Astrophysics +1409.7417 Optics +1409.7419 Methodology +1409.7425 Computational Geometry +1409.7427 Geophysics +1409.7428 Statistical Mechanics +1409.7430 Algebraic Geometry +1409.7433 Information Theory +1409.7435 Theory +1409.7442 Other Computer Science +1409.7444 History and Philosophy of Physics +1409.7445 Number Theory +1409.7450 Optimization and Control +1409.7457 Materials Science +1409.7458 Methodology +1409.7461 Learning +1409.7465 Information Theory +1409.7467 Theory +1409.7470 +1409.7472 Databases +1409.7476 Learning +1409.7478 Neural and Evolutionary Computing +1409.7479 Functional Analysis +1409.7482 Statistics Theory +1409.7487 Classical Analysis and ODEs +1409.7492 Complex Variables +1409.7496 Complex Variables +1409.7500 Differential Geometry +1409.7501 Group Theory +1409.7508 Combinatorics +1409.7511 Optics +1409.7513 +1409.7515 Functional Analysis +1409.7516 +1409.7519 Number Theory +1409.7521 Category Theory +1409.7522 High Energy Astrophysical Phenomena +1409.7523 Superconductivity +1409.7531 Commutative Algebra +1409.7533 Combinatorics +1409.7535 Combinatorics +1409.7537 Differential Geometry +1409.7540 Analysis of PDEs +1409.7546 Optimization and Control +1409.7551 Information Theory +1409.7554 Representation Theory +1409.7559 Probability +1409.7561 Statistics Theory +1409.7563 Exactly Solvable and Integrable Systems +1409.7567 +1409.7569 Dynamical Systems +1409.7570 Information Theory +1409.7572 Theory +1409.7575 Networking and Internet Architecture +1409.7579 Physics and Society +1409.7580 Robotics +1409.7582 +1409.7584 Astrophysics of Galaxies +1409.7589 Populations and Evolution +1409.7591 Computation and Language +1409.7595 Computer Science and Game Theory +1409.7596 Phenomenology +1409.7600 Analysis of PDEs +1409.7606 Differential Geometry +1409.7608 +1409.7610 Functional Analysis +1409.7612 Computation and Language +1409.7614 Dynamical Systems +1409.7615 Social and Information Networks +1409.7617 Functional Analysis +1409.7619 Computation and Language +1409.7621 Cosmology and Nongalactic Astrophysics +1409.7622 Differential Geometry +1409.7623 Social and Information Networks +1409.7624 Computational Physics +1409.7628 Programming Languages +1409.7634 Cosmology and Nongalactic Astrophysics +1409.7635 Other Computer Science +1409.7637 Networking and Internet Architecture +1409.7639 Materials Science +1409.7640 Optimization and Control +1409.7641 Earth and Planetary Astrophysics +1409.7648 Differential Geometry +1409.7650 Statistical Mechanics +1409.7653 Numerical Analysis +1409.7655 Quantum Algebra +1409.7658 Analysis of PDEs +1409.7661 Soft Condensed Matter +1409.7664 Differential Geometry +1409.7669 Solar and Stellar Astrophysics +1409.7672 Methodology +1409.7673 Number Theory +1409.7675 Statistics Theory +1409.7676 Algebraic Geometry +1409.7677 Materials Science +1409.7681 Differential Geometry +1409.7682 Physics Education +1409.7686 Computer Vision and Pattern Recognition +0907.5311 Algebraic Geometry +1012.5983 Quantum Algebra +1105.1448 Commutative Algebra +1105.2903 Algebraic Geometry +1108.4272 Combinatorics +1108.5866 Phenomenology +1111.2537 Theory +1112.1479 Differential Geometry +1112.2210 Astrophysics of Galaxies +1201.1996 Probability +1201.4801 Programming Languages +1203.4858 Probability +1205.1826 Materials Science +1205.5653 Computational Complexity +1206.0130 Computer Science and Game Theory +1206.2491 Information Theory +1207.2828 +1209.1007 Logic in Computer Science +1209.2829 Methodology +1209.3941 Algebraic Geometry +1210.3769 Information Theory +1210.5691 Analysis of PDEs +1211.1553 K-Theory and Homology +1211.7123 Differential Geometry +1212.2858 Quantum Gases +1301.0621 Differential Geometry +1301.1186 Functional Analysis +1301.5507 Number Theory +1301.7244 Number Theory +1302.5048 Chemical Physics +1302.6071 Operator Algebras +1302.6904 Group Theory +1303.0682 Superconductivity +1303.3850 Strongly Correlated Electrons +1303.4766 Solar and Stellar Astrophysics +1304.0764 Cosmology and Nongalactic Astrophysics +1304.1063 Discrete Mathematics +1304.1595 +1304.3030 Optimization and Control +1304.3832 Optimization and Control +1304.6836 Data Analysis, Statistics and Probability +1305.4099 Algebraic Geometry +1305.4987 Artificial Intelligence +1305.5060 Differential Geometry +1305.7189 +1306.0537 Number Theory +1306.3571 Classical Analysis and ODEs +1306.6239 Information Theory +1307.1718 Information Retrieval +1307.2771 Strongly Correlated Electrons +1307.3353 Probability +1307.4777 Number Theory +1308.0711 Differential Geometry +1308.2032 Mesoscale and Nanoscale Physics +1308.3947 Disordered Systems and Neural Networks +1308.4794 Phenomenology +1308.5864 Atomic Physics +1308.6224 Fluid Dynamics +1308.6601 Phenomenology +1309.2732 Theory +1309.3234 +1309.5648 Experiment +1310.0056 Mathematical Software +1310.2223 Strongly Correlated Electrons +1310.4121 +1310.4762 +1310.4878 Differential Geometry +1310.5731 Disordered Systems and Neural Networks +1310.6716 Cosmology and Nongalactic Astrophysics +1310.6751 Theory +1310.6854 Symplectic Geometry +1310.7724 Phenomenology +1311.0438 Computational Engineering, Finance, and Science +1311.0812 Strongly Correlated Electrons +1311.0894 Experiment +1311.1567 Information Theory +1311.1896 Superconductivity +1311.2357 Optimization and Control +1311.2765 Mesoscale and Nanoscale Physics +1311.3279 +1311.4481 +1311.4945 +1311.5575 High Energy Astrophysical Phenomena +1311.5966 Computer Science and Game Theory +1311.6053 Experiment +1311.6320 Dynamical Systems +1311.6687 +1311.6867 +1312.0437 Cosmology and Nongalactic Astrophysics +1312.0946 Cosmology and Nongalactic Astrophysics +1312.1395 Populations and Evolution +1312.1504 Phenomenology +1312.2286 Statistical Mechanics +1312.2578 Learning +1312.2714 Commutative Algebra +1312.3324 Phenomenology +1312.3334 Strongly Correlated Electrons +1312.4365 +1312.4535 Phenomenology +1312.4686 Mesoscale and Nanoscale Physics +1312.5209 +1312.6287 Soft Condensed Matter +1312.6297 Functional Analysis +1312.7029 High Energy Astrophysical Phenomena +1312.7543 Phenomenology +1312.7734 Machine Learning +1401.0078 Mesoscale and Nanoscale Physics +1401.0313 Phenomenology +1401.0636 Plasma Physics +1401.0690 Combinatorics +1401.1109 Materials Science +1401.1502 Phenomenology +1401.1595 Phenomenology +1401.1759 +1401.1877 Classical Analysis and ODEs +1401.2160 Statistical Mechanics +1401.2573 Phenomenology +1401.2673 Mesoscale and Nanoscale Physics +1401.3311 Phenomenology +1401.3748 Phenomenology +1401.4673 Strongly Correlated Electrons +1401.5677 Logic in Computer Science +1401.5736 Geometric Topology +1401.5773 Theory +1401.5828 Information Theory +1401.6184 Statistical Mechanics +1401.6215 +1401.6960 Cosmology and Nongalactic Astrophysics +1401.7012 Strongly Correlated Electrons +1401.7996 +1402.0806 Phenomenology +1402.1316 Materials Science +1402.1677 Cosmology and Nongalactic Astrophysics +1402.1829 Cosmology and Nongalactic Astrophysics +1402.2434 Quantum Gases +1402.2846 Phenomenology +1402.3049 Lattice +1402.3289 +1402.4223 History and Philosophy of Physics +1402.4365 +1402.5478 +1402.5731 Information Theory +1402.6190 Combinatorics +1402.6912 Phenomenology +1402.7018 Strongly Correlated Electrons +1402.7094 Dynamical Systems +1403.0821 Lattice +1403.0954 Cosmology and Nongalactic Astrophysics +1403.1469 Soft Condensed Matter +1403.2413 Phenomenology +1403.4219 Optics +1403.5896 Chaotic Dynamics +1403.6897 Phenomenology +1403.7515 +1403.7851 Information Theory +1403.8126 Experiment +1403.8146 Popular Physics +1404.0357 Functional Analysis +1404.1619 Soft Condensed Matter +1404.2038 Mesoscale and Nanoscale Physics +1404.2632 Distributed, Parallel, and Cluster Computing +1404.3851 +1404.4502 Computer Science and Game Theory +1404.4694 Probability +1404.5145 Materials Science +1404.6022 Number Theory +1404.6077 Astrophysics of Galaxies +1404.6283 Quantitative Methods +1404.6383 Mathematical Software +1404.6385 Computational Engineering, Finance, and Science +1404.6388 Mathematical Software +1404.6390 Programming Languages +1404.6391 Computational Engineering, Finance, and Science +1404.6691 Numerical Analysis +1404.6996 Differential Geometry +1404.7059 Computer Vision and Pattern Recognition +1404.7063 Methodology +1404.7119 Dynamical Systems +1404.7120 Human-Computer Interaction +1404.7121 Human-Computer Interaction +1404.7122 General Physics +1404.7124 +1404.7154 Theory +1404.7166 Combinatorics +1404.7167 General Physics +1404.7171 Systems and Control +1404.7173 Artificial Intelligence +1404.7175 Applications +1404.7176 Biological Physics +1404.7180 Biological Physics +1404.7189 Discrete Mathematics +1404.7192 Number Theory +1404.7194 Quantum Algebra +1404.7195 Learning +1404.7196 Optics +1404.7198 Classical Analysis and ODEs +1404.7199 Numerical Analysis +1404.7203 Information Theory +1404.7205 Artificial Intelligence +1404.7212 Computer Vision and Pattern Recognition +1404.7215 Physics and Society +1404.7216 Numerical Analysis +1404.7220 Optimization and Control +1404.7223 Solar and Stellar Astrophysics +1404.7226 Differential Geometry +1404.7228 High Energy Astrophysical Phenomena +1404.7229 Materials Science +1404.7230 Combinatorics +1404.7236 Machine Learning +1404.7237 Multimedia +1404.7239 Computer Science and Game Theory +1404.7242 +1404.7245 Statistical Mechanics +1404.7247 Software Engineering +1404.7249 Solar and Stellar Astrophysics +1404.7250 Instrumentation and Detectors +1404.7260 Software Engineering +1404.7261 Combinatorics +1404.7263 Chemical Physics +1404.7265 Software Engineering +1404.7268 +1404.7270 Physics and Society +1404.7272 Phenomenology +1404.7278 Logic in Computer Science +1404.7279 Artificial Intelligence +1404.7280 Materials Science +1404.7281 Genomics +1404.7284 Physics and Society +1404.7285 Astrophysics of Galaxies +1404.7286 Combinatorics +1404.7289 Geometric Topology +1404.7290 Optics +1404.7295 Applications +1404.7296 Computation and Language +1404.7297 Astrophysics of Galaxies +1404.7298 Metric Geometry +1404.7301 Applications +1404.7303 Group Theory +1404.7305 Algebraic Geometry +1404.7307 Data Structures and Algorithms +1404.7308 Plasma Physics +1404.7311 Experiment +1404.7313 Information Theory +1404.7314 Pricing of Securities +1404.7315 +1404.7324 Computational Physics +1404.7325 Data Structures and Algorithms +1404.7327 +1404.7330 Networking and Internet Architecture +1404.7332 Combinatorics +1404.7334 Cosmology and Nongalactic Astrophysics +1404.7335 Multimedia +1404.7336 Optimization and Control +1404.7339 Applications +1404.7340 Algebraic Topology +1404.7344 Quantum Algebra +1404.7348 Combinatorics +1404.7351 Analysis of PDEs +1404.7358 Computers and Society +1404.7361 Analysis of PDEs +1404.7362 Computation and Language +1404.7365 +1404.7368 General Mathematics +1404.7370 Methodology +1404.7373 Plasma Physics +1404.7376 Differential Geometry +1404.7377 Economics +1404.7379 Commutative Algebra +1404.7386 Number Theory +1404.7387 Optics +1404.7388 Algebraic Geometry +1404.7395 Experiment +1404.7398 Strongly Correlated Electrons +1404.7399 Instrumentation and Detectors +1404.7400 Number Theory +1404.7401 Logic +1404.7402 Strongly Correlated Electrons +1404.7404 Numerical Analysis +1404.7405 Analysis of PDEs +1404.7410 Computational Geometry +1404.7415 Probability +1404.7418 Theory +1404.7423 Materials Science +1404.7428 Artificial Intelligence +1404.7431 Software Engineering +1404.7433 General Physics +1404.7436 Lattice +1404.7447 Digital Libraries +1404.7448 Phenomenology +1404.7456 Learning +1404.7460 Statistical Mechanics +1404.7468 Classical Analysis and ODEs +1404.7469 Atmospheric and Oceanic Physics +1404.7472 Learning +1404.7476 Number Theory +1404.7483 Algebraic Geometry +1404.7490 Algebraic Geometry +cond-mat/9506145 +cond-mat/9604044 +0706.3220 +0708.0291 +0806.0270 +0903.2550 Differential Geometry +0911.4235 Geometric Topology +0912.2632 +0912.3477 +1005.3807 K-Theory and Homology +1011.5394 Classical Analysis and ODEs +1011.5973 Instrumentation and Methods for Astrophysics +1011.6503 Algebraic Geometry +1012.4387 +1102.0020 Algebraic Topology +1102.5370 Analysis of PDEs +1104.4699 Materials Science +1105.1255 Cosmology and Nongalactic Astrophysics +1106.0348 Rings and Algebras +1108.5244 Machine Learning +1109.6412 Cosmology and Nongalactic Astrophysics +1203.1074 Symplectic Geometry +1206.2385 Statistics Theory +1206.5655 +1206.6687 Mesoscale and Nanoscale Physics +1207.5135 +1208.4963 Functional Analysis +1209.2253 Mesoscale and Nanoscale Physics +1209.3318 Optimization and Control +1209.4531 Probability +1210.1662 Symplectic Geometry +1210.1808 Classical Analysis and ODEs +1210.4527 Combinatorics +1211.2342 +1211.2533 Differential Geometry +1211.5077 Geophysics +1211.5952 Symplectic Geometry +1211.6855 Cosmology and Nongalactic Astrophysics +1212.1202 Theory +1301.2083 Optics +1302.2669 +1302.5620 Classical Analysis and ODEs +1302.6388 Soft Condensed Matter +1303.0320 Cosmology and Nongalactic Astrophysics +1303.2040 Probability +1303.5525 Methodology +1304.0361 Mesoscale and Nanoscale Physics +1304.0392 Strongly Correlated Electrons +1304.7934 Functional Analysis +1304.8098 Soft Condensed Matter +1305.0541 Plasma Physics +1305.2547 Statistical Mechanics +1305.2762 +1305.3243 Statistical Finance +1305.5083 Optimization and Control +1305.6558 +1305.7241 Cosmology and Nongalactic Astrophysics +1305.7354 Solar and Stellar Astrophysics +1306.0607 Optics +1306.3450 +1306.4275 +1306.4412 Classical Analysis and ODEs +1306.5072 Phenomenology +1306.5248 Cosmology and Nongalactic Astrophysics +1307.1999 Algebraic Geometry +1307.2883 +1307.3426 Cell Behavior +1307.3504 Mesoscale and Nanoscale Physics +1307.3509 +1307.6402 Soft Condensed Matter +1307.6632 Theory +1307.6880 Atomic Physics +1308.0270 +1308.1089 Phenomenology +1308.3365 Mesoscale and Nanoscale Physics +1308.3691 +1308.4353 Geometric Topology +1308.4456 Cosmology and Nongalactic Astrophysics +1309.0566 Information Theory +1309.0610 +1309.2369 Soft Condensed Matter +1309.2617 Quantitative Methods +1309.3709 Superconductivity +1309.7038 Phenomenology +1309.7135 +1309.7863 +1310.0828 High Energy Astrophysical Phenomena +1310.4523 Superconductivity +1310.4603 Instrumentation and Methods for Astrophysics +1310.4662 Instrumentation and Methods for Astrophysics +1310.5529 Superconductivity +1310.6454 Instrumentation and Detectors +1310.7022 Astrophysics of Galaxies +1310.7430 Experiment +1310.7527 Molecular Networks +1310.8208 +1311.0700 +1311.0709 Human-Computer Interaction +1311.0794 Strongly Correlated Electrons +1311.1013 Information Theory +1311.1748 Pattern Formation and Solitons +1311.2220 Instrumentation and Methods for Astrophysics +1311.2397 +1311.2778 +1311.3187 High Energy Astrophysical Phenomena +1311.4654 Optics +1311.4823 Experiment +1311.6217 Materials Science +1312.0785 Strongly Correlated Electrons +1312.0786 Learning +1312.0865 +1312.1847 Learning +1312.2508 Strongly Correlated Electrons +1312.3128 +1312.3431 Analysis of PDEs +1312.3471 +1312.3646 Strongly Correlated Electrons +1312.3737 Mesoscale and Nanoscale Physics +1312.4130 Soft Condensed Matter +1312.4215 Mesoscale and Nanoscale Physics +1312.4667 +1312.5847 Neural and Evolutionary Computing +1312.5853 Learning +1312.6116 Machine Learning +1312.6120 Neural and Evolutionary Computing +1312.6199 Computer Vision and Pattern Recognition +1312.6461 Learning +1401.1669 Artificial Intelligence +1401.3240 Cosmology and Nongalactic Astrophysics +1401.3421 Hardware Architecture +1401.3714 Computational Complexity +1401.4188 Cosmology and Nongalactic Astrophysics +1401.4990 +1401.5085 Cosmology and Nongalactic Astrophysics +1401.5512 Computational Complexity +1401.6118 Computers and Society +1401.6412 Superconductivity +1401.8217 Metric Geometry +1402.0386 Mesoscale and Nanoscale Physics +1402.0912 Popular Physics +1402.3048 Logic +1402.3072 Social and Information Networks +1402.4259 Computers and Society +1402.4306 Machine Learning +1402.4336 Differential Geometry +1402.4364 Data Structures and Algorithms +1402.4373 Combinatorics +1402.4467 +1402.4489 Number Theory +1402.4495 Number Theory +1402.4498 Number Theory +1402.4505 Algebraic Geometry +1402.4507 Machine Learning +1402.4508 Networking and Internet Architecture +1402.4514 Analysis of PDEs +1402.4519 Astrophysics of Galaxies +1402.4525 Artificial Intelligence +1402.4528 Optics +1402.4529 Probability +1402.4533 Spectral Theory +1402.4534 Probability +1402.4542 Learning +1402.4543 Information Theory +1402.4544 Instrumentation and Detectors +1402.4548 Theory +1402.4551 Pricing of Securities +1402.4553 +1402.4554 Dynamical Systems +1402.4556 Data Structures and Algorithms +1402.4559 Rings and Algebras +1402.4565 Soft Condensed Matter +1402.4568 Optimization and Control +1402.4570 Computer Science and Game Theory +1402.4574 +1402.4580 Differential Geometry +1402.4583 Number Theory +1402.4586 Materials Science +1402.4589 Probability +1402.4590 Information Theory +1402.4592 Group Theory +1402.4593 Optimization and Control +1402.4594 Algebraic Topology +1402.4595 Representation Theory +1402.4597 Software Engineering +1402.4601 Representation Theory +1402.4603 Combinatorics +1402.4604 Representation Theory +1402.4607 Probability +1402.4608 Soft Condensed Matter +1402.4614 Functional Analysis +1402.4617 Probability +1402.4619 +1402.4621 Computers and Society +1402.4624 Machine Learning +1402.4625 Representation Theory +1402.4627 Combinatorics +1402.4630 Functional Analysis +1402.4632 Probability +1402.4634 Strongly Correlated Electrons +1402.4636 +1402.4641 +1402.4645 Learning +1402.4646 Superconductivity +1402.4653 Machine Learning +1402.4660 Probability +1402.4662 Distributed, Parallel, and Cluster Computing +1402.4669 Exactly Solvable and Integrable Systems +1402.4671 Cosmology and Nongalactic Astrophysics +1402.4677 +1402.4678 Computation and Language +1402.4681 Representation Theory +1402.4693 Analysis of PDEs +1402.4694 Analysis of PDEs +1402.4695 Solar and Stellar Astrophysics +1402.4697 Functional Analysis +1402.4698 Probability +1402.4699 Neural and Evolutionary Computing +1402.4702 Cryptography and Security +1402.4706 Rings and Algebras +1402.4707 Distributed, Parallel, and Cluster Computing +1402.4708 Exactly Solvable and Integrable Systems +1402.4710 Combinatorics +1402.4711 Superconductivity +1402.4713 General Physics +1402.4714 Rings and Algebras +1402.4716 Geometric Topology +1402.4717 Optics +1402.4724 Human-Computer Interaction +1402.4729 Information Theory +1402.4732 Machine Learning +1402.4734 Probability +1402.4741 Logic in Computer Science +1402.4742 Instrumentation and Methods for Astrophysics +1402.4744 Instrumentation and Methods for Astrophysics +1402.4745 Instrumentation and Methods for Astrophysics +1402.4746 Learning +1402.4747 Instrumentation and Methods for Astrophysics +1402.4748 Computers and Society +1402.4750 Instrumentation and Methods for Astrophysics +1402.4752 Instrumentation and Methods for Astrophysics +1402.4753 Materials Science +1402.4756 Dynamical Systems +1402.4762 Instrumentation and Methods for Astrophysics +1402.4765 Astrophysics of Galaxies +1402.4773 Statistics Theory +1402.4774 Probability +1402.4778 Computers and Society +1402.4782 Instrumentation and Methods for Astrophysics +1402.4784 Differential Geometry +1402.4793 Statistical Mechanics +math/0309022 General Topology +0705.1900 Chaotic Dynamics +0706.3534 Statistical Mechanics +0809.0433 Group Theory +0903.4952 Analysis of PDEs +0905.2613 Quantum Algebra +0908.2959 Rings and Algebras +0911.2582 Optics +1003.0318 Quantum Algebra +1003.2322 Differential Geometry +1008.4882 High Energy Astrophysical Phenomena +1011.2174 Rings and Algebras +1011.4878 Differential Geometry +1012.0705 Spectral Theory +1104.0528 Instrumentation and Detectors +1105.1474 Rings and Algebras +1105.3070 Geometric Topology +1105.3992 Solar and Stellar Astrophysics +1106.0658 Spectral Theory +1106.1352 Analysis of PDEs +1108.2575 Quantum Algebra +1108.3176 Quantum Algebra +1108.3262 Methodology +1201.3747 Analysis of PDEs +1201.4847 Soft Condensed Matter +1201.5826 Analysis of PDEs +1203.0513 Probability +1203.2454 Quantum Algebra +1203.2455 Quantum Algebra +1204.0801 Analysis of PDEs +1205.3216 Differential Geometry +1205.6110 Quantum Algebra +1205.6564 Quantum Algebra +1207.0411 Quantum Algebra +1207.3296 Phenomenology +1208.1165 Probability +1211.3046 Learning +1211.6078 Solar and Stellar Astrophysics +1212.3883 Information Theory +1301.6503 Optics +1302.2496 Differential Geometry +1302.4259 +1302.4626 Differential Geometry +1303.2808 Theory +1303.3856 Superconductivity +1303.4580 Combinatorics +1303.5204 Mesoscale and Nanoscale Physics +1303.6615 Numerical Analysis +1303.7416 Numerical Analysis +1304.1726 Rings and Algebras +1304.3715 High Energy Astrophysical Phenomena +1304.7460 +1305.0418 +1305.2152 Quantum Gases +1305.2881 Differential Geometry +1305.3451 Theory +1305.6015 Number Theory +1305.6748 Group Theory +1306.0476 Statistical Mechanics +1306.0788 Soft Condensed Matter +1306.2082 +1306.3274 Probability +1307.0209 General Physics +1307.0462 Fluid Dynamics +1307.0895 Accelerator Physics +1307.2540 Rings and Algebras +1307.2764 Superconductivity +1307.5178 Phenomenology +1307.5315 +1307.6157 Phenomenology +1307.7544 Information Theory +1307.7590 +1308.0812 Strongly Correlated Electrons +1308.1972 Quantum Gases +1308.4069 +1308.4461 High Energy Astrophysical Phenomena +1308.6628 Computer Vision and Pattern Recognition +1309.0055 Complex Variables +1309.0784 +1309.1907 Statistical Mechanics +1309.2725 Mesoscale and Nanoscale Physics +1309.3698 +1309.5681 +1310.0975 Optimization and Control +1310.1293 Instrumentation and Methods for Astrophysics +1310.1322 +1310.1523 +1310.3703 Soft Condensed Matter +1310.4162 Computer Science and Game Theory +1310.5380 Discrete Mathematics +1310.6197 Mesoscale and Nanoscale Physics +1310.7706 +1310.8384 +1310.8610 Chaotic Dynamics +1311.0300 Differential Geometry +1311.0601 +1311.0699 +1311.1099 Mesoscale and Nanoscale Physics +1311.1537 Superconductivity +1311.2526 Social and Information Networks +1311.2662 Analysis of PDEs +1311.3713 Chaotic Dynamics +1311.3960 Phenomenology +1311.5529 Mesoscale and Nanoscale Physics +1311.6232 Rings and Algebras +1312.2001 Superconductivity +1312.2074 Distributed, Parallel, and Cluster Computing +1312.2253 Analysis of PDEs +1312.2299 Computer Science and Game Theory +1312.2340 Probability +1312.5676 Algebraic Topology +1312.5849 Phenomenology +1312.7362 Mesoscale and Nanoscale Physics +1401.0220 Probability +1401.0653 Phenomenology +1401.1224 Materials Science +1401.1527 Superconductivity +1401.1676 Plasma Physics +1401.2439 Materials Science +1401.3706 Superconductivity +1401.5253 Superconductivity +1401.6352 Optics +1401.6524 Populations and Evolution +1401.7440 Mesoscale and Nanoscale Physics +1401.7480 Computational Complexity +1401.7643 Materials Science +1402.1279 Optics +1402.1486 Theory +1402.2087 Combinatorics +1402.3247 Information Theory +1402.3364 Social and Information Networks +1402.3949 Probability +1402.4351 Combinatorics +1402.4550 Differential Geometry +1402.4720 Solar and Stellar Astrophysics +1402.4760 High Energy Astrophysical Phenomena +1402.5073 Computer Vision and Pattern Recognition +1402.5142 Astrophysics of Galaxies +1402.5144 Theory +1402.5147 Complex Variables +1402.5158 Numerical Analysis +1402.5160 Probability +1402.5165 Computer Science and Game Theory +1402.5168 Numerical Analysis +1402.5169 Numerical Analysis +1402.5171 Quantum Gases +1402.5172 Programming Languages +1402.5173 Algebraic Geometry +1402.5181 Optimization and Control +1402.5183 Fluid Dynamics +1402.5186 Numerical Analysis +1402.5187 Human-Computer Interaction +1402.5188 Robotics +1402.5190 Methodology +1402.5191 Analysis of PDEs +1402.5194 Performance +1402.5195 +1402.5196 Networking and Internet Architecture +1402.5197 Analysis of PDEs +1402.5199 +1402.5203 Mesoscale and Nanoscale Physics +1402.5206 Number Theory +1402.5208 Risk Management +1402.5211 Combinatorics +1402.5216 +1402.5217 +1402.5218 +1402.5219 Astrophysics of Galaxies +1402.5223 Materials Science +1402.5228 +1402.5230 Functional Analysis +1402.5233 Robotics +1402.5237 Dynamical Systems +1402.5243 Number Theory +1402.5245 Probability +1402.5247 Group Theory +1402.5251 Analysis of PDEs +1402.5255 Human-Computer Interaction +1402.5256 +1402.5257 Computation +1402.5261 Instrumentation and Detectors +1402.5264 Methodology +1402.5267 Software Engineering +1402.5268 Number Theory +1402.5269 Disordered Systems and Neural Networks +1402.5275 Cryptography and Security +1402.5276 Algebraic Geometry +1402.5282 Computation +1402.5286 Probability +1402.5291 Optimization and Control +1402.5292 Chemical Physics +1402.5295 Number Theory +1402.5305 Combinatorics +1402.5306 Portfolio Management +1402.5311 Computational Complexity +1402.5315 Complex Variables +1402.5318 Physics Education +1402.5319 Applications +1402.5323 Quantitative Methods +1402.5325 +1402.5331 Combinatorics +1402.5335 Populations and Evolution +1402.5336 Solar and Stellar Astrophysics +1402.5339 Classical Physics +1402.5344 +1402.5346 Astrophysics of Galaxies +1402.5347 Analysis of PDEs +1402.5349 Representation Theory +1402.5353 High Energy Astrophysical Phenomena +1402.5355 Analysis of PDEs +1402.5358 Artificial Intelligence +1402.5360 Learning +1402.5370 Plasma Physics +1402.5373 General Finance +1402.5375 Analysis of PDEs +1402.5377 Differential Geometry +1402.5378 +1402.5379 Artificial Intelligence +1402.5381 Optics +1402.5382 History and Philosophy of Physics +1402.5383 Applications +1402.5384 Methodology +1402.5386 Statistical Mechanics +1402.5387 Analysis of PDEs +1402.5388 Social and Information Networks +1402.5389 Statistical Mechanics +1402.5390 Biological Physics +1402.5391 Probability +1402.5397 Methodology +1402.5398 Numerical Analysis +1402.5399 Cosmology and Nongalactic Astrophysics +math/0502552 Differential Geometry +0801.1742 Differential Geometry +0804.4357 General Mathematics +0901.4904 Other Computer Science +0902.3109 Materials Science +0904.1115 Classical Analysis and ODEs +0906.5052 Differential Geometry +0910.2528 Superconductivity +0911.0625 Algebraic Geometry +1007.5309 Algebraic Geometry +1008.3296 Chemical Physics +1009.3480 Quantum Gases +1009.5153 Quantum Algebra +1101.1949 Materials Science +1102.5176 Statistics Theory +1103.4527 General Physics +1104.0841 Statistics Theory +1105.1488 Portfolio Management +1109.0366 Combinatorics +1109.0370 Combinatorics +1109.0371 Combinatorics +1111.1210 Methodology +1111.5546 Differential Geometry +1112.2297 Adaptation and Self-Organizing Systems +1112.2972 Information Theory +1202.4163 Strongly Correlated Electrons +1202.5853 Analysis of PDEs +1203.0137 Differential Geometry +1204.2089 +1204.5500 Data Structures and Algorithms +1205.0362 Phenomenology +1205.2314 Physics and Society +1205.6347 Differential Geometry +1206.0610 Differential Geometry +1206.0760 Rings and Algebras +1206.3599 Social and Information Networks +1208.0272 Cellular Automata and Lattice Gases +1208.1152 Commutative Algebra +1208.1726 Methodology +1208.3524 Data Analysis, Statistics and Probability +1208.4234 Strongly Correlated Electrons +1208.5093 Probability +1209.1685 Phenomenology +1209.3886 Neurons and Cognition +1210.3014 Biological Physics +1210.3603 Superconductivity +1211.1219 +1211.1291 Algebraic Geometry +1211.1392 Theory +1211.2872 Classical Analysis and ODEs +1211.3578 Phenomenology +1211.3813 Methodology +1211.5196 Solar and Stellar Astrophysics +1211.6026 Representation Theory +1211.6501 Classical Analysis and ODEs +1212.0703 Data Structures and Algorithms +1212.3577 Biological Physics +1212.3633 Combinatorics +1212.4015 Experiment +1212.4240 Space Physics +1212.5380 Differential Geometry +1212.6825 Number Theory +1301.2809 General Topology +1301.4807 Probability +1301.5353 Materials Science +1301.7483 Analysis of PDEs +1302.2324 Number Theory +1302.3112 Number Theory +1302.4625 Computational Complexity +1302.5007 Biological Physics +1302.5376 Information Theory +1302.5575 Group Theory +1302.7198 Commutative Algebra +1303.0267 General Topology +1303.0723 Algebraic Geometry +1303.4073 Combinatorics +1303.6463 +1304.0298 Superconductivity +1304.0926 Differential Geometry +1304.1946 Phenomenology +1304.2649 Commutative Algebra +1304.3159 Computational Finance +1304.3710 Functional Analysis +1304.4658 Data Structures and Algorithms +1304.7829 Methodology +1305.0452 Commutative Algebra +1305.0721 Functional Analysis +1305.0848 +1305.2441 Cosmology and Nongalactic Astrophysics +1305.2897 Number Theory +1305.5584 Classical Analysis and ODEs +1305.5978 Materials Science +1305.7054 Quantum Gases +1306.0372 +1306.1111 +1306.3183 Mesoscale and Nanoscale Physics +1306.3969 Combinatorics +1306.4058 +1306.6031 Optimization and Control +1307.1409 High Energy Astrophysical Phenomena +1307.2482 Information Theory +1307.3517 Theory +1307.3526 Superconductivity +1307.4782 Number Theory +1307.5788 Algebraic Geometry +1307.6340 Phenomenology +1307.6866 Theory +1308.0370 Theory +1308.1069 Classical Analysis and ODEs +1308.1454 +1308.1638 Functional Analysis +1308.2080 Mesoscale and Nanoscale Physics +1308.2867 Machine Learning +1308.3130 Phenomenology +1308.3157 Phenomenology +1308.4017 Machine Learning +1308.6788 Algebraic Geometry +1309.0975 Differential Geometry +1309.0977 Differential Geometry +1309.4438 Algebraic Geometry +1309.5611 Phenomenology +1309.5935 Quantum Gases +1309.6412 Mesoscale and Nanoscale Physics +1309.7202 Algebraic Geometry +1309.7605 Phenomenology +1310.0669 Strongly Correlated Electrons +1310.1096 Strongly Correlated Electrons +1310.1617 Optics +1310.2750 Atmospheric and Oceanic Physics +1310.3057 Materials Science +1310.3320 +1310.3536 Strongly Correlated Electrons +1310.3594 Phenomenology +1310.3842 Superconductivity +1310.3863 Machine Learning +1310.4382 Probability +1310.4995 Adaptation and Self-Organizing Systems +1310.5166 Genomics +1310.6422 Cryptography and Security +1310.6627 Numerical Analysis +1310.6645 Lattice +1310.7882 +1310.8478 Distributed, Parallel, and Cluster Computing +1311.0684 Combinatorics +1311.1218 Theory +1311.1743 Adaptation and Self-Organizing Systems +1311.2043 Mesoscale and Nanoscale Physics +1311.2626 Computer Vision and Pattern Recognition +1311.2714 Classical Analysis and ODEs +1311.2834 +1311.2882 Geometric Topology +1311.3059 Strongly Correlated Electrons +1311.3891 Theory +1311.4501 Theory +1311.4875 Chaotic Dynamics +1311.5124 Mesoscale and Nanoscale Physics +1311.5641 Numerical Analysis +1311.5861 Strongly Correlated Electrons +1311.6576 Materials Science +1311.7461 Theory +1311.7584 Cryptography and Security +1312.0132 Information Theory +1312.0896 Instrumentation and Detectors +1312.1493 High Energy Astrophysical Phenomena +1312.1669 Phenomenology +1312.1671 Statistical Mechanics +1312.1693 +1312.2412 Mesoscale and Nanoscale Physics +1312.2876 Strongly Correlated Electrons +1312.4893 Cosmology and Nongalactic Astrophysics +1312.4894 Computer Vision and Pattern Recognition +1312.5148 Databases +1312.5247 +1312.5267 Phenomenology +1312.5373 +1312.6082 Computer Vision and Pattern Recognition +1312.7184 +1401.0355 Distributed, Parallel, and Cluster Computing +1401.0432 Data Structures and Algorithms +1401.1164 Chaotic Dynamics +1401.1605 Learning +1401.1955 Mesoscale and Nanoscale Physics +1401.2750 Quantum Gases +1401.2846 Chaotic Dynamics +1401.3549 Soft Condensed Matter +1401.4111 Atomic Physics +1401.4750 Information Theory +1401.6777 +1401.7093 +1402.1227 Theory +1402.1377 Logic in Computer Science +1402.2681 Computer Vision and Pattern Recognition +1402.3491 Lattice +1402.3940 High Energy Astrophysical Phenomena +1402.4310 Information Theory +1402.4440 Superconductivity +1402.4458 Cosmology and Nongalactic Astrophysics +1402.4689 Strongly Correlated Electrons +1402.4815 Cosmology and Nongalactic Astrophysics +1403.0119 Soft Condensed Matter +1403.0284 Computer Vision and Pattern Recognition +1403.1122 Solar and Stellar Astrophysics +1403.1721 Analysis of PDEs +1403.2733 Astrophysics of Galaxies +1403.3007 Distributed, Parallel, and Cluster Computing +1403.3313 Complex Variables +1403.3343 Instrumentation and Methods for Astrophysics +1403.3780 Cell Behavior +1403.5797 Phenomenology +1403.5988 +1403.6014 +1403.6529 Complex Variables +1403.6747 Number Theory +1403.7844 Physics and Society +1403.8048 Phenomenology +1403.8115 Instrumentation and Methods for Astrophysics +1404.0669 Neurons and Cognition +1404.1169 Differential Geometry +1404.1183 Functional Analysis +1404.1208 Probability +1404.1350 Materials Science +1404.1474 Fluid Dynamics +1404.1531 Logic in Computer Science +1404.1872 Computation and Language +1404.2224 Number Theory +1404.2328 Statistical Mechanics +1404.2377 Combinatorics +1404.2425 Probability +1404.2601 Theory +1404.2673 Differential Geometry +1404.2759 Networking and Internet Architecture +1404.3128 History and Philosophy of Physics +1404.3215 Geometric Topology +1404.3219 Machine Learning +1404.3221 Systems and Control +1404.3222 Optics +1404.3226 Analysis of PDEs +1404.3228 Geometric Topology +1404.3229 Pricing of Securities +1404.3233 Computation and Language +1404.3237 Chemical Physics +1404.3239 Statistics Theory +1404.3241 +1404.3243 Solar and Stellar Astrophysics +1404.3244 Number Theory +1404.3254 Analysis of PDEs +1404.3260 Phenomenology +1404.3261 Classical Physics +1404.3264 +1404.3265 Networking and Internet Architecture +1404.3269 Analysis of PDEs +1404.3274 Portfolio Management +1404.3277 +1404.3278 Number Theory +1404.3279 Quantum Algebra +1404.3280 Software Engineering +1404.3285 Artificial Intelligence +1404.3286 Computational Engineering, Finance, and Science +1404.3287 Methodology +1404.3290 Multimedia +1404.3291 Computer Vision and Pattern Recognition +1404.3292 Differential Geometry +1404.3296 Number Theory +1404.3298 Analysis of PDEs +1404.3299 Quantitative Methods +1404.3301 Artificial Intelligence +1404.3302 Instrumentation and Methods for Astrophysics +1404.3312 Computer Vision and Pattern Recognition +1404.3316 Robotics +1404.3317 Combinatorics +1404.3318 Data Structures and Algorithms +1404.3319 Commutative Algebra +1404.3320 Computational Complexity +1404.3323 Probability +1404.3326 Solar and Stellar Astrophysics +1404.3327 Data Structures and Algorithms +1404.3330 Computational Engineering, Finance, and Science +1404.3334 Theory +1404.3338 Logic +1404.3340 Complex Variables +1404.3341 Computers and Society +1404.3342 Group Theory +1404.3343 Commutative Algebra +1404.3345 Functional Analysis +1404.3347 Economics +1404.3355 Optics +1404.3361 Group Theory +1404.3370 Artificial Intelligence +1404.3377 Computation and Language +1404.3381 Hardware Architecture +1404.3382 Software Engineering +1404.3384 Combinatorics +1404.3385 Combinatorics +1404.3386 Rings and Algebras +1404.3388 +1404.3391 Data Structures and Algorithms +1404.3393 Operator Algebras +1404.3405 Functional Analysis +1404.3406 Mathematical Software +1404.3407 Programming Languages +1404.3409 Functional Analysis +1404.3411 Information Theory +1404.3412 Combinatorics +1404.3416 Algebraic Topology +1404.3417 General Topology +1404.3418 Machine Learning +1404.3420 Combinatorics +1404.3430 Earth and Planetary Astrophysics +1404.3435 Information Retrieval +1404.3436 Plasma Physics +1404.3437 Numerical Analysis +1404.3439 Machine Learning +1404.3446 Combinatorics +1404.3447 Information Theory +1404.3449 Soft Condensed Matter +1404.3451 Numerical Analysis +1404.3455 Combinatorics +1404.3456 Distributed, Parallel, and Cluster Computing +1404.3461 Databases +1404.3463 High Energy Astrophysical Phenomena +1404.3469 Combinatorics +1404.3471 Phenomenology +1404.3475 Functional Analysis +1404.3482 Computational Complexity +1404.3486 Instrumentation and Detectors +1404.3488 Differential Geometry +1404.3493 Numerical Analysis +1404.3494 Number Theory +1404.3495 Theory +1404.3497 Information Theory +1404.3499 +1404.3500 +1404.3503 +1404.3504 Algebraic Geometry +1404.3506 Geophysics +1404.3508 Number Theory +1404.3509 Algebraic Geometry +1404.3510 Representation Theory +1404.3514 Functional Analysis +1404.3518 +1404.3528 Disordered Systems and Neural Networks +1404.3532 Optics +1404.3533 Applications +1404.3534 +1404.3537 Software Engineering +1404.3539 Exactly Solvable and Integrable Systems +1404.3548 Algebraic Geometry +1404.3553 Combinatorics +1404.3555 Pricing of Securities +1404.3560 Applications +1404.3570 Commutative Algebra +1404.3577 Data Structures and Algorithms +1404.3580 Multiagent Systems +1404.3582 +1404.3584 Applications +1404.3585 Algebraic Geometry +1404.3593 Algebraic Geometry +1404.3594 +1404.3604 Tissues and Organs +1404.3610 Social and Information Networks +1404.3611 Classical Analysis and ODEs +1404.3615 Classical Analysis and ODEs +1404.3617 Operator Algebras +1404.3618 Materials Science +1404.3625 Classical Analysis and ODEs +1404.3632 Instrumentation and Methods for Astrophysics +1404.3637 Information Theory +1404.3639 Cosmology and Nongalactic Astrophysics +1404.3646 Combinatorics +1404.3647 Superconductivity +1404.3650 +1404.3651 Classical Physics +1404.3655 Genomics +1404.3656 Learning +1404.3659 Artificial Intelligence +1404.3661 Other Condensed Matter +1404.3666 Information Theory +1404.3668 Solar and Stellar Astrophysics +1404.3669 Dynamical Systems +1404.3670 Phenomenology +1404.3672 Probability +1404.3676 Phenomenology +1404.3677 Information Theory +1404.3684 Computational Complexity +1404.3686 Earth and Planetary Astrophysics +1404.3687 General Physics +1404.3688 Dynamical Systems +1404.3689 Geometric Topology +1404.3692 Analysis of PDEs +1404.3694 Analysis of PDEs +1404.3702 Robotics +1404.3706 Robotics +1404.3707 Cryptography and Security +astro-ph/0406522 +cond-mat/0302143 Statistical Mechanics +cond-mat/0310032 Strongly Correlated Electrons +cond-mat/0504760 Strongly Correlated Electrons +cond-mat/0601376 Strongly Correlated Electrons +cond-mat/0609060 Strongly Correlated Electrons +cs/0606103 Discrete Mathematics +gr-qc/0509069 +0709.2184 Number Theory +0804.0053 General Physics +0812.1531 Materials Science +0907.3404 Materials Science +0909.1860 Representation Theory +1004.2974 Materials Science +1008.1085 Geometric Topology +1104.3070 Algebraic Geometry +1104.4931 Disordered Systems and Neural Networks +1106.1587 Cosmology and Nongalactic Astrophysics +1106.5797 Geometric Topology +1111.4060 +1204.5124 Logic +1205.1560 Geometric Topology +1205.4052 Geometric Topology +1205.5433 Quantitative Methods +1206.1659 Mesoscale and Nanoscale Physics +1207.0254 High Energy Astrophysical Phenomena +1208.2471 High Energy Astrophysical Phenomena +1208.3903 Combinatorics +1209.0349 Rings and Algebras +1209.4027 Probability +1209.5996 Earth and Planetary Astrophysics +1210.4988 Dynamical Systems +1301.0988 Solar and Stellar Astrophysics +1301.2640 Mesoscale and Nanoscale Physics +1302.1056 Optimization and Control +1303.7156 Algebraic Geometry +1304.1714 Phenomenology +1305.1036 Methodology +1305.1168 Geometric Topology +1305.4284 Algebraic Geometry +1305.4639 Solar and Stellar Astrophysics +1305.4811 Algebraic Geometry +1305.7119 Strongly Correlated Electrons +1306.5226 Computer Vision and Pattern Recognition +1306.5979 General Physics +1307.1951 Cosmology and Nongalactic Astrophysics +1307.5449 Probability +1307.5863 Probability +1307.6719 Spectral Theory +1307.7455 Combinatorics +1308.0187 Artificial Intelligence +1308.4837 Phenomenology +1309.3140 Phenomenology +1309.5112 Materials Science +1309.5318 Rings and Algebras +1309.7474 Biomolecules +1310.0206 Theory +1310.0973 Computation +1310.1320 +1310.3524 High Energy Astrophysical Phenomena +1310.3626 Lattice +1310.4344 Materials Science +1310.5650 Spectral Theory +1310.6360 Theory +1310.6503 Biological Physics +1310.7182 Tissues and Organs +1310.8549 Algebraic Geometry +1311.1473 Statistical Mechanics +1311.2586 Theory +1311.2810 Statistical Mechanics +1311.3538 +1311.3790 Chemical Physics +1311.4535 Theory +1311.4768 Data Structures and Algorithms +1312.1151 +1312.1401 Molecular Networks +1312.2020 Statistical Mechanics +1312.4393 +1312.6008 Algebraic Geometry +1312.6356 Molecular Networks +1401.4425 Methodology +1401.5551 Information Theory +1401.5901 Statistical Mechanics +1401.5932 Soft Condensed Matter +1402.0205 +1402.1993 Number Theory +1402.2132 Theory +1402.2772 Statistical Mechanics +1402.5229 Strongly Correlated Electrons +1402.6063 +1403.1062 Solar and Stellar Astrophysics +1403.1730 Soft Condensed Matter +1403.3166 Astrophysics of Galaxies +1403.3487 Solar and Stellar Astrophysics +1403.3910 Soft Condensed Matter +1403.4896 Probability +1403.5363 Statistical Mechanics +1404.1657 Geometric Topology +1404.2350 Statistical Mechanics +1404.3356 Statistical Mechanics +1404.3789 Computer Science and Game Theory +1404.4517 Phenomenology +1404.5913 Analysis of PDEs +1404.6408 Symplectic Geometry +1404.6490 Materials Science +1404.7234 +1404.7639 Theory +1405.0185 Numerical Analysis +1405.1447 Cosmology and Nongalactic Astrophysics +1405.2193 Statistical Mechanics +1405.4823 +1405.4967 +1405.7372 Quantum Gases +1405.7381 Computational Complexity +1405.7583 Phenomenology +1405.7818 Theory +1406.0585 Strongly Correlated Electrons +1406.0691 Physics and Society +1406.0937 Quantum Gases +1406.2552 +1406.3046 +1406.3330 Cosmology and Nongalactic Astrophysics +1406.4684 Space Physics +1406.4723 Superconductivity +1406.6188 Strongly Correlated Electrons +1406.6199 Statistical Mechanics +1406.7613 Cosmology and Nongalactic Astrophysics +1407.0083 +1407.0467 Strongly Correlated Electrons +1407.0498 Optimization and Control +1407.0802 Mesoscale and Nanoscale Physics +1407.1211 Soft Condensed Matter +1407.1259 Theory +1407.1306 Mesoscale and Nanoscale Physics +1407.2934 +1407.3084 Phenomenology +1407.3187 Solar and Stellar Astrophysics +1407.3319 +1407.3981 Instrumentation and Methods for Astrophysics +1407.4829 +1407.4849 Phenomenology +1407.5114 +1407.6015 Phenomenology +1407.6275 Probability +1407.6865 Plasma Physics +1407.7387 Phenomenology +1407.7995 Phenomenology +1407.8393 Theory +1408.0067 +1408.0237 Optics +1408.0306 +1408.0570 Networking and Internet Architecture +1408.0779 Theory +1408.0947 Quantum Gases +1408.0969 Cosmology and Nongalactic Astrophysics +1408.1008 +1408.1031 Computation and Language +1408.1605 Distributed, Parallel, and Cluster Computing +1408.1666 Mesoscale and Nanoscale Physics +1408.2138 Economics +1408.3770 Lattice +1408.4129 Quantum Gases +1408.4730 +1408.4898 Strongly Correlated Electrons +1408.5046 Phenomenology +1408.5150 Phenomenology +1408.5232 +1408.5755 Statistical Mechanics +1408.5765 Astrophysics of Galaxies +1408.5823 Learning +1408.5933 Lattice +1408.6203 Phenomenology +1408.6205 +1408.6742 +1408.6763 +1408.6991 +1409.0282 Quantum Gases +1409.0346 +1409.0549 Phenomenology +1409.0819 Phenomenology +1409.0844 Analysis of PDEs +1409.1083 +1409.1515 Networking and Internet Architecture +1409.1680 Cosmology and Nongalactic Astrophysics +1409.2198 Theory +1409.2482 Mesoscale and Nanoscale Physics +1409.3022 High Energy Astrophysical Phenomena +1409.3063 Algebraic Geometry +1409.3492 +1409.3834 Theory +1409.3835 Experiment +1409.3999 +1409.4031 +1409.4217 Theory +1409.5071 Astrophysics of Galaxies +1409.5122 Astrophysics of Galaxies +1409.5126 Astrophysics of Galaxies +1409.5324 Strongly Correlated Electrons +1409.6333 Phenomenology +1409.6547 High Energy Astrophysical Phenomena +1409.6570 Theory +1409.6868 Earth and Planetary Astrophysics +1409.7208 Genomics +1409.7396 Astrophysics of Galaxies +1409.7463 Statistical Mechanics +1409.7753 +1409.7833 Theory +1409.8314 Statistical Mechanics +1409.8480 +1410.0140 Accelerator Physics +1410.0632 +1410.0874 Theory +1410.1161 Combinatorics +1410.1670 Strongly Correlated Electrons +1410.2469 Cosmology and Nongalactic Astrophysics +1410.2511 +1410.2743 Astrophysics of Galaxies +1410.2857 Cosmology and Nongalactic Astrophysics +1410.2999 Earth and Planetary Astrophysics +1410.3000 Earth and Planetary Astrophysics +1410.3262 Mesoscale and Nanoscale Physics +1410.3593 Mesoscale and Nanoscale Physics +1410.3821 Statistical Mechanics +1410.4041 Solar and Stellar Astrophysics +1410.4097 Statistics Theory +1410.4205 Superconductivity +1410.4340 Solar and Stellar Astrophysics +1410.4472 +1410.4791 Phenomenology +1410.4862 Atomic Physics +1410.5428 Cosmology and Nongalactic Astrophysics +1410.5682 Optimization and Control +1410.6123 Superconductivity +1410.6163 Theory +1410.6510 +1410.6864 Chaotic Dynamics +1410.7503 Solar and Stellar Astrophysics +1410.7780 Astrophysics of Galaxies +1410.8378 Solar and Stellar Astrophysics +1410.8474 Solar and Stellar Astrophysics +1411.0618 Theory +1411.1858 Solar and Stellar Astrophysics +1411.2209 Geometric Topology +1411.2991 Analysis of PDEs +1411.3031 Lattice +1411.3904 Methodology +1411.4859 Instrumentation and Methods for Astrophysics +1411.5467 Plasma Physics +1411.5887 Solar and Stellar Astrophysics +1411.6545 Medical Physics +1411.6952 Medical Physics +1411.7669 Solar and Stellar Astrophysics +1412.0286 Astrophysics of Galaxies +1412.0793 Applications +1412.1476 Astrophysics of Galaxies +1412.1556 Solar and Stellar Astrophysics +1412.2598 Materials Science +1412.3923 Solar and Stellar Astrophysics +1412.4106 Analysis of PDEs +1412.5437 Cosmology and Nongalactic Astrophysics +1412.5977 Materials Science +1412.6201 Combinatorics +1412.6498 General Physics +1412.6703 Artificial Intelligence +1412.6821 Machine Learning +1412.6961 Optimization and Control +1412.7037 Algebraic Geometry +1412.7146 Computation +1412.7158 Functional Analysis +1412.7160 Instrumentation and Methods for Astrophysics +1412.7163 High Energy Astrophysical Phenomena +1412.7169 Functional Analysis +1412.7173 Fluid Dynamics +1412.7174 +1412.7176 Experiment +1412.7178 Fluid Dynamics +1412.7180 Computation and Language +1412.7182 Strongly Correlated Electrons +1412.7184 Social and Information Networks +1412.7188 Information Theory +1412.7189 Statistical Mechanics +1412.7193 Sound +1412.7197 Statistics Theory +1412.7198 Materials Science +1412.7200 +1412.7203 +1412.7205 Combinatorics +1412.7206 Statistics Theory +1412.7213 Theory +1412.7214 Combinatorics +1412.7216 Statistics Theory +1412.7218 Differential Geometry +1412.7219 Emerging Technologies +1412.7221 Differential Geometry +1412.7224 Information Theory +1412.7226 Soft Condensed Matter +1412.7228 Fluid Dynamics +1412.7232 Networking and Internet Architecture +1412.7235 +1412.7238 Fluid Dynamics +1412.7239 +1412.7240 Phenomenology +1412.7250 Computer Science and Game Theory +1412.7252 Combinatorics +1412.7256 +1412.7257 Combinatorics +1412.7261 Other Statistics +1412.7264 Combinatorics +1412.7268 Dynamical Systems +1412.7270 Numerical Analysis +1412.7273 Networking and Internet Architecture +1412.7274 Theory +1412.7276 Computers and Society +1412.7277 Computer Vision and Pattern Recognition +1412.7280 Theory +1412.7285 +1412.7287 Information Theory +1412.7288 Information Theory +1412.7289 Representation Theory +1412.7290 Combinatorics +1412.7291 Materials Science +1412.7293 Differential Geometry +1412.7295 Superconductivity +1412.7300 Experiment +1412.7301 Representation Theory +1412.7302 Lattice +1412.7305 Number Theory +1412.7306 Lattice +1412.7308 Functional Analysis +1412.7313 Materials Science +1412.7318 Solar and Stellar Astrophysics +1412.7319 Analysis of PDEs +1412.7323 +1412.7326 Analysis of PDEs +1412.7334 Applications +1412.7335 Social and Information Networks +1412.7338 +1412.7342 +1412.7343 Phenomenology +1412.7345 Experiment +1412.7346 Materials Science +1412.7348 Probability +1412.7349 Metric Geometry +1412.7351 Analysis of PDEs +1412.7354 Spectral Theory +1412.7357 Combinatorics +1412.7358 Cryptography and Security +1412.7364 Numerical Analysis +1412.7366 Discrete Mathematics +1412.7368 Metric Geometry +1412.7369 Biological Physics +1412.7370 Differential Geometry +1412.7373 Number Theory +1412.7374 Solar and Stellar Astrophysics +1412.7375 Solar and Stellar Astrophysics +1412.7377 +1412.7378 Solar and Stellar Astrophysics +1412.7379 Number Theory +1412.7382 Analysis of PDEs +1412.7386 Computational Engineering, Finance, and Science +1412.7391 Probability +1412.7394 Differential Geometry +1412.7395 Analysis of PDEs +1412.7402 Analysis of PDEs +1412.7403 +1412.7404 Dynamical Systems +1412.7407 Information Theory +1412.7409 Tissues and Organs +1412.7413 Combinatorics +1412.7414 Metric Geometry +1412.7422 Differential Geometry +1412.7424 Cryptography and Security +1412.7425 Mesoscale and Nanoscale Physics +1412.7426 Probability +1412.7430 Numerical Analysis +1412.7431 Mesoscale and Nanoscale Physics +1412.7432 +1412.7434 +1412.7446 Algebraic Geometry +1412.7457 Optimization and Control +1412.7458 Materials Science +1412.7462 Probability +1412.7464 Probability +1412.7468 Statistics Theory +1412.7470 Plasma Physics +1412.7481 Soft Condensed Matter +1412.7482 Optics +1412.7485 History and Philosophy of Physics +1412.7486 Soft Condensed Matter +1412.7493 Quantum Gases +1412.7494 Materials Science +1412.7496 Optics +1412.7497 +1412.7499 Analysis of PDEs +1412.7500 General Finance +1412.7502 +1412.7506 +1412.7515 Experiment +1412.7516 Probability +1412.7517 Optimization and Control +1412.7519 Quantitative Methods +cond-mat/9906145 Materials Science +cs/0504097 Cryptography and Security +0706.4290 Theory +0801.4303 Logic +0802.4286 Logic +0803.2147 Operator Algebras +0804.0318 Multiagent Systems +0807.0827 Theory +0810.4087 Logic +0903.4051 Logic +0907.5273 Logic +0912.0229 Data Structures and Algorithms +1001.4047 Physics and Society +1002.3770 Human-Computer Interaction +1002.3892 Computational Physics +1003.4350 Differential Geometry +1005.2849 Operator Algebras +1008.2480 Algebraic Geometry +1009.2340 Soft Condensed Matter +1010.3560 Superconductivity +1101.0340 Computer Science and Game Theory +1102.2826 +1102.5112 Information Theory +1103.4573 Other Condensed Matter +1105.2311 Information Theory +1105.3766 Chemical Physics +1106.4887 Phenomenology +1107.1698 Logic +1108.1455 Geometric Topology +1108.3421 Data Analysis, Statistics and Probability +1108.4185 Data Analysis, Statistics and Probability +1108.4277 Soft Condensed Matter +1109.2856 +1110.0271 Computational Complexity +1110.1494 Physics and Society +1110.1906 Soft Condensed Matter +1110.3599 Methodology +1110.5289 Combinatorics +1111.1103 Human-Computer Interaction +1111.1737 Materials Science +1201.3164 +1201.4769 Algebraic Geometry +1203.0796 Computational Physics +1203.1014 Combinatorics +1203.2660 Combinatorics +1203.4853 Phenomenology +1204.4109 +1205.2145 High Energy Astrophysical Phenomena +1205.2887 +1206.2012 Materials Science +1206.6726 Mesoscale and Nanoscale Physics +1207.2636 Theory +1208.2708 Materials Science +1208.4280 Functional Analysis +1209.3215 Other Statistics +1209.6180 Soft Condensed Matter +1211.6151 Analysis of PDEs +1212.0514 Quantum Algebra +1212.6267 Cosmology and Nongalactic Astrophysics +1212.6855 Physics and Society +1301.0942 Superconductivity +1301.4901 Statistical Mechanics +1301.5305 Mesoscale and Nanoscale Physics +1302.2032 Phenomenology +1302.2113 Mesoscale and Nanoscale Physics +1302.4994 Theory +1302.6119 Phenomenology +1302.6127 Phenomenology +1302.6234 Strongly Correlated Electrons +1303.5799 Optics +1304.2424 Phenomenology +1304.3198 Classical Analysis and ODEs +1304.3693 +1304.4161 Information Theory +1304.6348 Theory +1304.7800 Materials Science +1304.7806 Atmospheric and Oceanic Physics +1305.1030 +1305.1212 Statistics Theory +1305.2750 Analysis of PDEs +1305.3088 Theory +1305.4243 Numerical Analysis +1305.5463 Optics +1305.6373 Phenomenology +1305.6884 +1306.1289 Cosmology and Nongalactic Astrophysics +1306.3238 Strongly Correlated Electrons +1306.4488 Soft Condensed Matter +1306.5043 Materials Science +1307.0802 Machine Learning +1307.2174 Medical Physics +1307.4672 Superconductivity +1307.6138 Mesoscale and Nanoscale Physics +1307.7715 Cosmology and Nongalactic Astrophysics +1307.8001 +1308.1916 Statistical Mechanics +1308.3557 Superconductivity +1309.0812 Theory +1309.1396 Theory +1309.1975 Group Theory +1309.2087 Genomics +1309.2519 Analysis of PDEs +1309.3017 +1309.4292 Statistical Mechanics +1309.6711 Accelerator Physics +1309.6990 Fluid Dynamics +1309.6992 Fluid Dynamics +1309.7024 Instrumentation and Detectors +1309.7033 Atomic Physics +1309.7282 Superconductivity +1309.7313 Social and Information Networks +1309.7440 Data Structures and Algorithms +1309.7577 Materials Science +1309.7748 Statistical Mechanics +1310.2900 +1310.3258 Theory +1310.3745 Machine Learning +1310.4877 Theory +1310.5774 Algebraic Geometry +1310.6660 Phenomenology +1310.7289 Number Theory +1310.8578 Mesoscale and Nanoscale Physics +1311.3842 Atomic Physics +1311.3916 Plasma Physics +1311.4162 +1311.5989 Information Theory +1311.7240 Phenomenology +1311.7342 Geometric Topology +1311.7676 Distributed, Parallel, and Cluster Computing +1312.1858 Neural and Evolutionary Computing +1312.2408 Statistical Mechanics +1312.5357 +1312.5648 Chemical Physics +1312.6736 Biological Physics +1312.7081 General Physics +1401.0550 General Physics +1401.1308 Computational Engineering, Finance, and Science +1401.1411 Mesoscale and Nanoscale Physics +1401.2384 Optics +1401.2653 Functional Analysis +1401.2872 General Physics +1401.3109 Adaptation and Self-Organizing Systems +1401.3607 Neural and Evolutionary Computing +1401.4122 Neurons and Cognition +1401.5193 Applications +1401.5656 Category Theory +1401.5903 Plasma Physics +1401.7227 Numerical Analysis +1402.0370 +1402.0457 Materials Science +1402.0761 Logic in Computer Science +1402.1005 Astrophysics of Galaxies +1402.1083 Mesoscale and Nanoscale Physics +1402.1156 Computer Science and Game Theory +1402.1257 Databases +1402.1488 General Physics +1402.1497 High Energy Astrophysical Phenomena +1402.1503 Computer Vision and Pattern Recognition +1402.1504 Number Theory +1402.1507 Phenomenology +1402.1508 +1402.1511 Dynamical Systems +1402.1512 Differential Geometry +1402.1516 Symplectic Geometry +1402.1518 Solar and Stellar Astrophysics +1402.1520 High Energy Astrophysical Phenomena +1402.1523 Computational Engineering, Finance, and Science +1402.1524 +1402.1529 Classical Analysis and ODEs +1402.1533 Biomolecules +1402.1535 Logic in Computer Science +1402.1536 +1402.1545 Computers and Society +1402.1546 Databases +1402.1549 Astrophysics of Galaxies +1402.1551 Solar and Stellar Astrophysics +1402.1553 Populations and Evolution +1402.1554 Pricing of Securities +1402.1557 Information Theory +1402.1563 Software Engineering +1402.1564 Combinatorics +1402.1566 Complex Variables +1402.1567 Solar and Stellar Astrophysics +1402.1573 Geometric Topology +1402.1574 Analysis of PDEs +1402.1579 Dynamical Systems +1402.1582 Number Theory +1402.1585 Number Theory +1402.1587 Discrete Mathematics +1402.1589 General Topology +1402.1591 Analysis of PDEs +1402.1592 Popular Physics +1402.1596 Representation Theory +1402.1597 Probability +1402.1598 Phenomenology +1402.1599 Dynamical Systems +1402.1604 +1402.1607 Information Theory +1402.1612 Geometric Topology +1402.1615 Materials Science +1402.1616 Data Structures and Algorithms +1402.1621 Materials Science +1402.1624 Statistical Finance +1402.1625 K-Theory and Homology +1402.1630 +1402.1635 Computational Engineering, Finance, and Science +1402.1637 Computational Engineering, Finance, and Science +1402.1640 Number Theory +1402.1648 Probability +1402.1649 Methodology +1402.1652 Computational Engineering, Finance, and Science +1402.1655 Superconductivity +1402.1656 Phenomenology +1402.1657 Statistical Mechanics +1402.1659 Instrumentation and Detectors +1402.1661 Social and Information Networks +1402.1664 Phenomenology +1402.1668 Information Retrieval +1402.1669 Complex Variables +1402.1670 Multiagent Systems +1402.1674 Networking and Internet Architecture +1402.1675 Algebraic Geometry +1402.1683 Computers and Society +1402.1690 Optimization and Control +1402.1691 Space Physics +1402.1693 Other Computer Science +1402.1697 Systems and Control +1402.1705 Solar and Stellar Astrophysics +1402.1706 Optics +1402.1708 Solar and Stellar Astrophysics +1402.1709 Mesoscale and Nanoscale Physics +1402.1712 Materials Science +1402.1713 Robotics +1402.1714 Logic +1402.1715 Materials Science +1402.1716 Analysis of PDEs +1402.1719 Populations and Evolution +1402.1720 Computer Vision and Pattern Recognition +1402.1722 +1402.1727 Soft Condensed Matter +1402.1728 Genomics +1402.1729 Analysis of PDEs +1402.1730 Materials Science +1402.1731 Dynamical Systems +1402.1733 Optics +1402.1737 Optics +1402.1739 Mesoscale and Nanoscale Physics +1402.1740 Applications +1402.1741 Optics +1402.1742 +1402.1751 Theory +1402.1757 Multiagent Systems +cond-mat/0005387 Superconductivity +cond-mat/0010203 Superconductivity +cond-mat/0310657 Soft Condensed Matter +cond-mat/0601021 Statistical Mechanics +cond-mat/0609691 Statistical Mechanics +math/0105153 Symplectic Geometry +math/0304383 Symplectic Geometry +math/0410609 Symplectic Geometry +math/0411465 Geometric Topology +math/0602230 Symplectic Geometry +physics/0609097 Computational Physics +physics/0610077 Physics and Society +1407.4454 Computers and Society +0710.0736 Computer Vision and Pattern Recognition +0906.0313 +1005.3949 +1005.5473 Geometric Topology +1007.4134 Multimedia +1106.4451 Multimedia +1108.2850 Commutative Algebra +1108.3215 Theory +1109.0791 Combinatorics +1110.6895 Multimedia +1111.1817 Multimedia +1112.2884 Experiment +1201.2041 +1203.1058 Group Theory +1204.2157 +1205.3156 Strongly Correlated Electrons +1205.3331 +1205.4215 +1205.6516 Classical Analysis and ODEs +1206.1172 Probability +1207.1011 Quantum Gases +1210.1891 +1210.3204 Commutative Algebra +1210.7549 Group Theory +1210.8396 Algebraic Geometry +1211.1534 Instrumentation and Methods for Astrophysics +1211.5681 Classical Analysis and ODEs +1212.1347 Mesoscale and Nanoscale Physics +1212.3547 Algebraic Geometry +1212.4908 Probability +1212.5300 Information Theory +1301.1276 Representation Theory +1301.4055 Combinatorics +1302.0207 Commutative Algebra +1302.2882 Statistics Theory +1302.2899 Combinatorics +1302.4650 Number Theory +1302.6225 Representation Theory +1303.0550 Logic +1303.6755 Group Theory +1304.0746 +1304.0923 Pricing of Securities +1304.2687 High Energy Astrophysical Phenomena +1304.6246 Group Theory +1305.0166 Phenomenology +1305.0348 Number Theory +1305.1454 Optimization and Control +1305.3229 Mesoscale and Nanoscale Physics +1305.3556 Biomolecules +1305.6031 Number Theory +1305.7009 +1305.7361 Algebraic Geometry +1306.3496 Number Theory +1306.5654 Instrumentation and Detectors +1307.1464 Functional Analysis +1307.2743 Algebraic Topology +1307.4408 Mesoscale and Nanoscale Physics +1307.7645 Materials Science +1308.2237 +1308.2242 +1308.2603 +1308.5783 Probability +1308.6006 Logic +1309.4110 Strongly Correlated Electrons +1309.4404 Materials Science +1309.4696 Materials Science +1309.5723 Phenomenology +1309.5906 Mesoscale and Nanoscale Physics +1309.7618 Superconductivity +1310.0211 Strongly Correlated Electrons +1310.0771 Statistical Mechanics +1310.5440 Methodology +1310.6553 +1310.7854 Chaotic Dynamics +1310.7970 Mesoscale and Nanoscale Physics +1310.8129 Phenomenology +1310.8656 Lattice +1311.0026 High Energy Astrophysical Phenomena +1311.0211 Combinatorics +1311.2036 Mesoscale and Nanoscale Physics +1311.2344 Mesoscale and Nanoscale Physics +1311.2543 Phenomenology +1311.2785 Combinatorics +1311.6480 Phenomenology +1311.7368 Materials Science +1312.0280 Classical Physics +1312.0494 +1312.0925 Learning +1312.1579 Analysis of PDEs +1312.2369 Methodology +1312.2400 Mesoscale and Nanoscale Physics +1312.2643 Statistical Mechanics +1312.2759 General Physics +1312.4469 +1312.5860 Mesoscale and Nanoscale Physics +1312.5925 Strongly Correlated Electrons +1312.6059 Instrumentation and Detectors +1312.7853 Learning +1401.1157 Materials Science +1401.1731 Mesoscale and Nanoscale Physics +1401.1740 +1401.2091 Classical Analysis and ODEs +1401.4401 Mesoscale and Nanoscale Physics +1401.4906 +1401.5280 Mesoscale and Nanoscale Physics +1401.5414 Theory +1401.5933 Theory +1401.6012 Phenomenology +1401.6342 Disordered Systems and Neural Networks +1401.6892 Cosmology and Nongalactic Astrophysics +1401.7833 Soft Condensed Matter +1402.1892 Machine Learning +1402.2429 Logic +1402.3167 Cosmology and Nongalactic Astrophysics +1402.4497 Theory +1402.4672 +1402.4740 Physics and Society +1402.5704 Statistical Mechanics +1402.6754 Materials Science +1403.0108 Mesoscale and Nanoscale Physics +1403.1877 +1403.2194 Computational Geometry +1403.4024 Computation and Language +1403.7521 Phenomenology +1403.7709 Differential Geometry +1403.7873 High Energy Astrophysical Phenomena +1404.0180 Networking and Internet Architecture +1404.0452 Spectral Theory +1404.0462 Digital Libraries +1404.0769 Strongly Correlated Electrons +1404.1600 +1404.2498 Earth and Planetary Astrophysics +1404.2956 Earth and Planetary Astrophysics +1404.3288 Solar and Stellar Astrophysics +1404.4356 Physics and Society +1404.6152 Phenomenology +1404.6206 +1405.0587 Solar and Stellar Astrophysics +1405.0922 Methodology +1405.1236 Mesoscale and Nanoscale Physics +1405.1923 Fluid Dynamics +1405.2195 Classical Analysis and ODEs +1405.2665 +1405.2850 Programming Languages +1405.3034 Computation +1405.3155 +1405.3183 Combinatorics +1405.3282 Computation and Language +1405.3284 Earth and Planetary Astrophysics +1405.3290 Probability +1405.3292 Methodology +1405.3296 Computer Science and Game Theory +1405.3308 Astrophysics of Galaxies +1405.3310 Biomolecules +1405.3311 Logic in Computer Science +1405.3312 Metric Geometry +1405.3314 Algebraic Geometry +1405.3315 Molecular Networks +1405.3316 Learning +1405.3318 Artificial Intelligence +1405.3321 Phenomenology +1405.3323 Programming Languages +1405.3326 Representation Theory +1405.3327 Probability +1405.3330 Combinatorics +1405.3331 Neurons and Cognition +1405.3333 Neurons and Cognition +1405.3334 Neurons and Cognition +1405.3335 Neurons and Cognition +1405.3337 +1405.3339 Dynamical Systems +1405.3342 Artificial Intelligence +1405.3343 Mesoscale and Nanoscale Physics +1405.3344 Methodology +1405.3345 Number Theory +1405.3350 Analysis of PDEs +1405.3351 Computer Vision and Pattern Recognition +1405.3353 Information Retrieval +1405.3354 Information Theory +1405.3355 +1405.3357 Chemical Physics +1405.3358 +1405.3359 Dynamical Systems +1405.3360 Computer Science and Game Theory +1405.3361 Combinatorics +1405.3362 Artificial Intelligence +1405.3363 Optimization and Control +1405.3365 Programming Languages +1405.3367 Artificial Intelligence +1405.3368 Networking and Internet Architecture +1405.3374 Algebraic Geometry +1405.3376 Artificial Intelligence +1405.3377 Computers and Society +1405.3378 Computers and Society +1405.3379 Machine Learning +1405.3380 Methodology +1405.3381 Computers and Society +1405.3384 +1405.3385 Analysis of PDEs +1405.3387 Classical Analysis and ODEs +1405.3388 Statistics Theory +1405.3391 Logic in Computer Science +1405.3394 Cryptography and Security +1405.3395 Strongly Correlated Electrons +1405.3396 Learning +1405.3397 Instrumentation and Detectors +1405.3398 Mesoscale and Nanoscale Physics +1405.3401 Instrumentation and Detectors +1405.3402 Data Analysis, Statistics and Probability +1405.3403 Algebraic Geometry +1405.3405 Differential Geometry +1405.3407 Phenomenology +1405.3409 Geophysics +1405.3410 Learning +1405.3411 Distributed, Parallel, and Cluster Computing +1405.3414 Number Theory +1405.3417 Solar and Stellar Astrophysics +1405.3422 Discrete Mathematics +1405.3423 Classical Analysis and ODEs +1405.3426 Logic in Computer Science +1405.3427 Logic in Computer Science +1405.3428 Analysis of PDEs +1405.3429 Instrumentation and Methods for Astrophysics +1405.3430 +1405.3435 General Physics +1405.3436 Combinatorics +1405.3441 Combinatorics +1405.3443 Probability +1405.3444 Soft Condensed Matter +1405.3448 Networking and Internet Architecture +1405.3450 Solar and Stellar Astrophysics +1405.3451 Artificial Intelligence +1405.3458 Combinatorics +1405.3460 Computer Science and Game Theory +1405.3463 Plasma Physics +1405.3466 Theory +1405.3468 Numerical Analysis +1405.3470 Materials Science +1405.3474 Solar and Stellar Astrophysics +1405.3480 Optimization and Control +1405.3485 Mesoscale and Nanoscale Physics +1405.3486 Artificial Intelligence +1405.3490 Geometric Topology +1405.3493 +1405.3496 Software Engineering +1405.3502 +1405.3504 Populations and Evolution +1405.3505 Physics and Society +1405.3507 Information Theory +1405.3509 Physics and Society +1405.3510 Physics and Society +1405.3527 Combinatorics +1405.3533 Theory +1405.3534 Computational Geometry +1405.3536 Machine Learning +1405.3540 Probability +1405.3545 Optics +1405.3548 Networking and Internet Architecture +1405.3549 Instrumentation and Detectors +1405.3554 Group Theory +1405.3555 Numerical Analysis +1405.3557 Information Retrieval +1405.3558 Computational Complexity +1405.3559 Methodology +1405.3563 Theory +1405.3564 Materials Science +1405.3566 Optimization and Control +1405.3568 Probability +1405.3570 Artificial Intelligence +1405.3576 Formal Languages and Automata Theory +1405.3577 Algebraic Geometry +1405.3583 Fluid Dynamics +1405.3586 Biological Physics +1405.3591 Statistics Theory +1405.3599 Discrete Mathematics +1405.3608 Logic in Computer Science +1405.3613 +1405.3615 Computational Physics +1405.3617 Chemical Physics +1405.3618 Plasma Physics +1405.3619 Functional Analysis +1405.3620 +1405.3623 Logic in Computer Science +1405.3627 Computational Physics +1405.3630 Computational Physics +1405.3642 Chemical Physics +physics/0601140 General Physics +0710.3550 Quantum Algebra +0711.4305 +0809.2650 Optimization and Control +0901.4191 Analysis of PDEs +0908.1674 +0911.5396 Cosmology and Nongalactic Astrophysics +1001.5103 Optimization and Control +1002.3277 Cosmology and Nongalactic Astrophysics +1003.5023 Physics and Society +1008.3651 Statistics Theory +1011.5041 Quantum Gases +1101.1761 +1101.1904 Quantum Algebra +1101.2334 +1101.2566 +1102.1191 Statistics Theory +1103.4372 Differential Geometry +1104.5002 +1107.0466 +1107.5118 +1108.6053 Statistical Mechanics +1111.3125 Computational Complexity +1111.3387 Statistics Theory +1112.0184 Data Structures and Algorithms +1201.6168 General Physics +1203.5680 Plasma Physics +1205.2548 Computational Geometry +1206.5550 Spectral Theory +1207.0382 Probability +1209.1418 Atomic Physics +1209.5822 Analysis of PDEs +1210.1679 Experiment +1210.6698 Geometric Topology +1211.5934 Strongly Correlated Electrons +1211.6665 Phenomenology +1212.4085 Analysis of PDEs +1301.2995 Physics and Society +1301.4799 +1301.6071 Probability +1302.0328 Information Theory +1302.6109 Social and Information Networks +1303.2607 Computer Vision and Pattern Recognition +1303.3064 Statistical Mechanics +1303.6742 Statistical Mechanics +1303.6867 Data Structures and Algorithms +1304.4631 Phenomenology +1304.6207 Number Theory +1304.8030 Mesoscale and Nanoscale Physics +1305.0043 Classical Analysis and ODEs +1305.0575 Classical Analysis and ODEs +1305.2935 Strongly Correlated Electrons +1306.5084 Instrumentation and Detectors +1306.5282 Materials Science +1306.6224 Logic in Computer Science +1307.1045 Algebraic Geometry +1307.2438 Information Theory +1307.4581 Multimedia +1307.6940 K-Theory and Homology +1307.7990 Dynamical Systems +1308.4532 Accelerator Physics +1308.5356 Networking and Internet Architecture +1308.5380 Multiagent Systems +1308.6232 Algebraic Topology +1309.0445 Atomic Physics +1309.0862 Probability +1309.2187 +1309.2245 +1309.2714 Quantum Gases +1309.4477 Representation Theory +1309.5349 Astrophysics of Galaxies +1309.6900 Populations and Evolution +1310.0065 Phenomenology +1310.0174 Metric Geometry +1310.1073 Superconductivity +1310.1764 +1310.2357 Molecular Networks +1310.3788 Disordered Systems and Neural Networks +1310.4151 Strongly Correlated Electrons +1310.7788 Statistical Mechanics +1310.7935 Cryptography and Security +1311.0477 +1311.1204 Theory +1311.1414 Differential Geometry +1311.2725 Probability +1311.2996 Adaptation and Self-Organizing Systems +1311.3254 Disordered Systems and Neural Networks +1311.3573 Quantitative Methods +1311.3857 Quantum Gases +1311.3975 Strongly Correlated Electrons +1311.4240 Superconductivity +1311.4328 Mesoscale and Nanoscale Physics +1311.5101 Data Analysis, Statistics and Probability +1311.5329 +1311.7137 +1312.0731 Theory +1312.1289 Astrophysics of Galaxies +1312.2089 Phenomenology +1312.3209 Strongly Correlated Electrons +1312.4572 Solar and Stellar Astrophysics +1312.4758 +1312.5290 +1312.5517 Astrophysics of Galaxies +1312.5547 Human-Computer Interaction +1312.5621 Phenomenology +1312.7361 +1401.0384 Theory +1401.0466 Theory +1401.1186 Operator Algebras +1401.1458 Social and Information Networks +1401.2510 Quantum Gases +1401.3974 +1401.5087 Phenomenology +1401.5734 Optics +1401.5908 Theory +1401.7857 Differential Geometry +1402.0426 Statistical Mechanics +1402.2331 Computational Complexity +1402.3131 Optimization and Control +1402.5092 +1402.6221 Statistical Mechanics +1402.7143 Social and Information Networks +1403.0017 Databases +1403.0077 Strongly Correlated Electrons +1403.1008 Cosmology and Nongalactic Astrophysics +1403.1042 +1403.1368 Instrumentation and Methods for Astrophysics +1403.1991 Probability +1403.2864 Formal Languages and Automata Theory +1403.2966 Dynamical Systems +1403.3894 Computational Geometry +1403.4319 Populations and Evolution +1403.4572 +1403.4731 Representation Theory +1403.5104 Statistical Mechanics +1403.6005 Plasma Physics +1403.6089 Databases +1403.6327 High Energy Astrophysical Phenomena +1403.6563 Logic in Computer Science +1403.6920 Commutative Algebra +1403.6995 Algebraic Geometry +1403.7551 Mesoscale and Nanoscale Physics +1404.0126 Rings and Algebras +1404.2026 Phenomenology +1404.2293 Classical Analysis and ODEs +1404.2394 Dynamical Systems +1404.2471 Information Theory +1404.2592 Multimedia +1404.2593 +1404.2600 Statistical Mechanics +1404.2604 Cosmology and Nongalactic Astrophysics +1404.2608 Statistics Theory +1404.2609 Differential Geometry +1404.2610 Physics and Society +1404.2612 Materials Science +1404.2614 Populations and Evolution +1404.2621 +1404.2628 Optics +1404.2630 Dynamical Systems +1404.2631 Solar and Stellar Astrophysics +1404.2635 +1404.2637 Networking and Internet Architecture +1404.2641 Commutative Algebra +1404.2650 Classical Physics +1404.2652 Materials Science +1404.2653 Probability +1404.2655 Optimization and Control +1404.2656 Information Theory +1404.2658 Accelerator Physics +1404.2659 Symplectic Geometry +1404.2661 Accelerator Physics +1404.2662 Rings and Algebras +1404.2664 Statistics Theory +1404.2665 Mesoscale and Nanoscale Physics +1404.2666 Theory +1404.2667 Rings and Algebras +1404.2669 Algebraic Geometry +1404.2670 Numerical Analysis +1404.2671 Computer Science and Game Theory +1404.2679 Metric Geometry +1404.2681 Populations and Evolution +1404.2683 Statistical Mechanics +1404.2688 Classical Analysis and ODEs +1404.2689 Chemical Physics +1404.2690 Classical Analysis and ODEs +1404.2692 Classical Analysis and ODEs +1404.2694 Classical Analysis and ODEs +1404.2699 Number Theory +1404.2700 Functional Analysis +1404.2705 Classical Analysis and ODEs +1404.2708 Quantum Algebra +1404.2709 +1404.2713 Software Engineering +1404.2715 Category Theory +1404.2716 Operator Algebras +1404.2725 Systems and Control +1404.2731 Combinatorics +1404.2739 Distributed, Parallel, and Cluster Computing +1404.2741 Information Theory +1404.2742 Human-Computer Interaction +1404.2743 Combinatorics +1404.2745 Systems and Control +1404.2755 Commutative Algebra +1404.2761 +1404.2768 Artificial Intelligence +1404.2769 Disordered Systems and Neural Networks +1404.2770 K-Theory and Homology +1404.2772 Distributed, Parallel, and Cluster Computing +1404.2775 Logic +1404.2776 Logic +1404.2780 Mesoscale and Nanoscale Physics +1404.2783 Solar and Stellar Astrophysics +1404.2784 +1404.2789 General Mathematics +1404.2790 Solar and Stellar Astrophysics +1404.2796 Information Theory +1404.2797 Theory +1404.2799 Solar and Stellar Astrophysics +1404.2801 +1404.2806 Instrumentation and Methods for Astrophysics +1404.2808 Solar and Stellar Astrophysics +1404.2809 Analysis of PDEs +1404.2811 Solar and Stellar Astrophysics +1404.2816 Formal Languages and Automata Theory +1404.2820 Cryptography and Security +1404.2821 Analysis of PDEs +1404.2823 Materials Science +1404.2827 Data Structures and Algorithms +1404.2831 Probability +1404.2835 Space Physics +1404.2836 Space Physics +1404.2837 Numerical Analysis +1404.2841 Differential Geometry +1404.2843 Optimization and Control +1404.2849 Number Theory +1404.2853 Algebraic Geometry +1404.2857 Soft Condensed Matter +1404.2863 Information Theory +1404.2871 Solar and Stellar Astrophysics +1404.2872 Computational Engineering, Finance, and Science +1404.2878 Computation and Language +1404.2879 Mesoscale and Nanoscale Physics +1404.2885 Applications +1404.2888 Other Computer Science +1404.2889 Networking and Internet Architecture +1404.2890 Strongly Correlated Electrons +1404.2891 Numerical Analysis +1404.2892 Robotics +1404.2893 Functional Analysis +1404.2895 Combinatorics +1404.2899 Symplectic Geometry +1404.2903 Computer Vision and Pattern Recognition +1404.2906 Spectral Theory +1404.2907 Number Theory +1404.2913 Solar and Stellar Astrophysics +1404.2921 Networking and Internet Architecture +1404.2923 Physics and Society +1404.2928 Probability +math/0209082 Quantum Algebra +0903.1153 Mesoscale and Nanoscale Physics +0912.4815 General Mathematics +1002.2957 Probability +1009.2175 +1011.1060 Geometric Topology +1011.5860 Optimization and Control +1111.1558 Combinatorics +1111.3266 Combinatorics +1202.3082 Combinatorics +1203.0655 +1203.0662 Combinatorics +1203.3254 Quantum Gases +1203.5459 Logic +1203.6536 Combinatorics +1205.5163 Combinatorics +1207.4275 +1208.0881 +1208.1616 Cosmology and Nongalactic Astrophysics +1208.2005 Theory +1208.3181 Statistical Mechanics +1209.4543 Statistics Theory +1210.0729 Optimization and Control +1210.6574 Group Theory +1211.3093 Computational Geometry +1211.6761 K-Theory and Homology +1211.7000 Dynamical Systems +1212.3832 Probability +1212.5245 +1301.2683 Artificial Intelligence +1302.5106 Functional Analysis +1302.5744 Number Theory +1303.0925 Experiment +1303.1598 Optimization and Control +1303.3881 Combinatorics +1303.5854 Mesoscale and Nanoscale Physics +1304.2079 Learning +1304.3926 Quantum Gases +1304.6294 Pattern Formation and Solitons +1304.6918 Exactly Solvable and Integrable Systems +1305.4687 Algebraic Geometry +1305.6435 Algebraic Geometry +1305.6446 Superconductivity +1306.4099 Quantum Gases +1306.5488 Theory +1307.1013 Combinatorics +1307.1205 Statistical Mechanics +1307.1576 Solar and Stellar Astrophysics +1307.2767 Number Theory +1307.6067 Mesoscale and Nanoscale Physics +1308.0842 +1308.2555 +1308.4084 Computation +1308.4189 Computer Vision and Pattern Recognition +1308.4534 Data Structures and Algorithms +1308.5730 Probability +1309.1472 +1309.2037 Strongly Correlated Electrons +1310.0847 Statistics Theory +1310.1354 Theory +1310.2630 Fluid Dynamics +1310.3575 +1310.4391 Strongly Correlated Electrons +1310.5624 Physics and Society +1310.6043 +1311.1180 +1311.1287 Lattice +1311.1931 Differential Geometry +1311.2489 +1311.5574 Strongly Correlated Electrons +1311.6222 Cell Behavior +1311.6998 Optics +1312.1815 +1312.2288 Phenomenology +1312.3237 Representation Theory +1312.4442 General Physics +1312.4762 General Physics +1312.4883 Optimization and Control +1312.6190 Learning +1312.7568 +1401.0417 Data Structures and Algorithms +1401.1076 Accelerator Physics +1401.1702 Physics Education +1401.2576 Geometric Topology +1401.5547 Applications +1401.5775 Cryptography and Security +1401.7153 Theory +1401.7364 +1402.0185 +1402.1050 Mesoscale and Nanoscale Physics +1402.2359 Learning +1402.3719 Strongly Correlated Electrons +1402.3774 Combinatorics +1402.4240 Strongly Correlated Electrons +1402.5167 Mesoscale and Nanoscale Physics +1402.5328 Phenomenology +1402.6263 Experiment +1402.7111 +1402.7229 Dynamical Systems +1403.1703 Differential Geometry +1403.2271 Phenomenology +1403.5168 Cosmology and Nongalactic Astrophysics +1403.5186 Atomic Physics +1403.5467 General Physics +1403.7986 Plasma Physics +1404.1650 Cosmology and Nongalactic Astrophysics +1404.1802 +1404.1821 Phenomenology +1404.1897 Materials Science +1404.2487 Genomics +1404.2570 Social and Information Networks +1404.2850 +1404.3744 Optics +1404.3946 High Energy Astrophysical Phenomena +1404.4664 Cryptography and Security +1405.0745 Materials Science +1405.0747 Dynamical Systems +1405.0753 Soft Condensed Matter +1405.2098 +1405.3579 Earth and Planetary Astrophysics +1405.3730 Phenomenology +1405.4604 Learning +1405.5910 Experiment +1405.6111 Computational Finance +1405.6363 Spectral Theory +1405.6804 Machine Learning +1405.6816 Theory +1405.6855 High Energy Astrophysical Phenomena +1405.7050 Astrophysics of Galaxies +1405.7052 Accelerator Physics +1405.7058 Programming Languages +1405.7061 Representation Theory +1405.7064 Number Theory +1405.7065 Algebraic Geometry +1405.7067 Statistics Theory +1405.7072 Analysis of PDEs +1405.7075 Solar and Stellar Astrophysics +1405.7079 Phenomenology +1405.7080 Dynamical Systems +1405.7082 Instrumentation and Detectors +1405.7083 Dynamical Systems +1405.7084 Networking and Internet Architecture +1405.7089 Neurons and Cognition +1405.7091 Applications +1405.7093 Dynamical Systems +1405.7094 Information Theory +1405.7096 Social and Information Networks +1405.7098 Solar and Stellar Astrophysics +1405.7108 History and Philosophy of Physics +1405.7111 Optimization and Control +1405.7112 Computational Complexity +1405.7114 +1405.7115 Algebraic Geometry +1405.7118 Rings and Algebras +1405.7119 +1405.7121 Optimization and Control +1405.7130 Number Theory +1405.7131 Optics +1405.7132 Number Theory +1405.7135 Other Computer Science +1405.7136 Physics and Society +1405.7137 Solar and Stellar Astrophysics +1405.7145 Statistics Theory +1405.7148 Group Theory +1405.7152 Information Theory +1405.7155 Dynamical Systems +1405.7161 Information Theory +1405.7166 Analysis of PDEs +1405.7167 Dynamical Systems +1405.7173 Statistics Theory +1405.7181 Earth and Planetary Astrophysics +1405.7182 Optics +1405.7185 Chemical Physics +1405.7192 Artificial Intelligence +1405.7196 Combinatorics +1405.7197 Systems and Control +1405.7199 Materials Science +1405.7205 Functional Analysis +1405.7206 Applications +1405.7210 Statistics Theory +1405.7211 +1405.7214 Instrumentation and Methods for Astrophysics +1405.7217 Experiment +1405.7220 Geometric Topology +1405.7222 Optics +1405.7229 Computer Vision and Pattern Recognition +1405.7231 Data Analysis, Statistics and Probability +1405.7233 Soft Condensed Matter +1405.7234 Algebraic Geometry +1405.7237 Networking and Internet Architecture +1405.7240 Commutative Algebra +1405.7242 Computer Vision and Pattern Recognition +1405.7246 Geometric Topology +1405.7247 Optics +1405.7251 Analysis of PDEs +1405.7254 Networking and Internet Architecture +1405.7255 Instrumentation and Methods for Astrophysics +1405.7256 Classical Analysis and ODEs +1405.7257 Spectral Theory +1405.7258 Social and Information Networks +1405.7259 Classical Analysis and ODEs +1405.7260 Group Theory +1405.7263 Category Theory +1405.7268 Cryptography and Security +1405.7276 Probability +1405.7285 Logic in Computer Science +1405.7286 Representation Theory +1405.7294 Number Theory +1405.7295 Artificial Intelligence +1405.7298 +1405.7300 Distributed, Parallel, and Cluster Computing +1405.7302 Combinatorics +1405.7303 Materials Science +1405.7304 Differential Geometry +1405.7309 Optimization and Control +1405.7310 Phenomenology +1405.7314 +1405.7320 Logic in Computer Science +1405.7322 Operating Systems +1405.7333 Dynamical Systems +1405.7334 Optimization and Control +1405.7335 Differential Geometry +1405.7340 Phenomenology +1405.7341 Functional Analysis +1405.7342 Pricing of Securities +1405.7349 Neural and Evolutionary Computing +1405.7356 Differential Geometry +cond-mat/0612059 Mesoscale and Nanoscale Physics +0909.2331 Data Structures and Algorithms +1006.1838 Differential Geometry +1007.4519 Algebraic Geometry +1008.5293 Superconductivity +1009.0845 +1011.0591 Analysis of PDEs +1111.1818 Number Theory +1111.3311 Probability +1203.2140 +1204.6663 Cosmology and Nongalactic Astrophysics +1207.3967 Functional Analysis +1208.4050 Rings and Algebras +1208.4384 Computer Vision and Pattern Recognition +1209.0215 Phenomenology +1209.5571 Logic in Computer Science +1210.3127 Rings and Algebras +1210.4201 Probability +1211.0936 Rings and Algebras +1211.2649 Theory +1211.2711 Mesoscale and Nanoscale Physics +1211.3409 Theory +1211.5261 +1211.5265 +1212.2293 Exactly Solvable and Integrable Systems +1212.3077 +1212.3905 Cosmology and Nongalactic Astrophysics +1301.7449 Strongly Correlated Electrons +1302.4191 Phenomenology +1303.1964 Numerical Analysis +1304.3475 High Energy Astrophysical Phenomena +1304.4040 Analysis of PDEs +1304.4943 +1305.1809 Machine Learning +1305.2643 Numerical Analysis +1305.3291 Theory +1305.4301 Methodology +1306.3379 Differential Geometry +1306.3736 Algebraic Geometry +1306.4213 Phenomenology +1306.6882 Materials Science +1307.3307 Representation Theory +1307.4840 Algebraic Topology +1307.5558 Methodology +1307.7069 Number Theory +1308.0529 Numerical Analysis +1308.1233 +1308.2455 +1308.3085 Phenomenology +1309.2234 Experiment +1309.3084 Theory +1309.4690 Cryptography and Security +1309.4944 Cryptography and Security +1309.7221 Mesoscale and Nanoscale Physics +1310.0163 Physics and Society +1310.0471 Cosmology and Nongalactic Astrophysics +1310.2319 Mesoscale and Nanoscale Physics +1310.4434 Phenomenology +1311.1836 +1311.3523 Software Engineering +1312.1569 Optics +1312.2391 Experiment +1312.5071 +1312.6358 Algebraic Geometry +1312.6983 Optics +1312.7190 Mesoscale and Nanoscale Physics +1401.1497 Cosmology and Nongalactic Astrophysics +1401.2271 Superconductivity +1401.2553 Formal Languages and Automata Theory +1401.4744 Symbolic Computation +1401.4918 Strongly Correlated Electrons +1401.6308 Geophysics +1401.6694 Symbolic Computation +1401.7087 +1401.7384 Astrophysics of Galaxies +1402.0712 Probability +1402.1328 Phenomenology +1402.1868 Mesoscale and Nanoscale Physics +1402.2037 Instrumentation and Detectors +1402.3138 Social and Information Networks +1403.0779 Databases +1403.1828 Disordered Systems and Neural Networks +1403.4710 +1404.0968 +1404.1215 Logic in Computer Science +1404.3621 Group Theory +1404.4049 Astrophysics of Galaxies +1404.4523 Strongly Correlated Electrons +1404.4780 Computer Vision and Pattern Recognition +1404.5123 Cryptography and Security +1404.5375 Superconductivity +1404.6241 Classical Analysis and ODEs +1404.6510 Computational Physics +1404.6537 +1404.6897 Instrumentation and Methods for Astrophysics +1404.7078 Databases +1405.0075 Probability +1405.0147 Biological Physics +1405.0253 Databases +1405.0274 Analysis of PDEs +1405.0294 Applications +1405.0295 Probability +1405.0296 Emerging Technologies +1405.0299 Cosmology and Nongalactic Astrophysics +1405.0304 Atmospheric and Oceanic Physics +1405.0305 Dynamical Systems +1405.0307 Geophysics +1405.0308 Instrumentation and Methods for Astrophysics +1405.0309 Adaptation and Self-Organizing Systems +1405.0315 Soft Condensed Matter +1405.0316 Combinatorics +1405.0317 Probability +1405.0320 Symbolic Computation +1405.0321 Statistics Theory +1405.0324 Algebraic Topology +1405.0326 Combinatorics +1405.0327 Software Engineering +1405.0329 Discrete Mathematics +1405.0330 Accelerator Physics +1405.0333 Differential Geometry +1405.0338 Statistics Theory +1405.0340 Differential Geometry +1405.0347 Quantum Gases +1405.0348 +1405.0354 Distributed, Parallel, and Cluster Computing +1405.0355 Computer Science and Game Theory +1405.0356 Dynamical Systems +1405.0359 +1405.0365 Strongly Correlated Electrons +1405.0367 Analysis of PDEs +1405.0369 Quantitative Methods +1405.0371 Analysis of PDEs +1405.0372 Analysis of PDEs +1405.0374 Statistics Theory +1405.0376 Analysis of PDEs +1405.0377 Methodology +1405.0383 Complex Variables +1405.0384 Statistics Theory +1405.0390 Statistical Mechanics +1405.0398 Cryptography and Security +1405.0400 Networking and Internet Architecture +1405.0402 Materials Science +1405.0403 History and Philosophy of Physics +1405.0406 Artificial Intelligence +1405.0409 +1405.0413 Hardware Architecture +1405.0422 Optimization and Control +1405.0423 Artificial Intelligence +1405.0424 Logic in Computer Science +1405.0426 Astrophysics of Galaxies +1405.0434 Statistics Theory +1405.0437 Algebraic Geometry +1405.0444 Functional Analysis +1405.0455 Physics and Society +1405.0456 Data Structures and Algorithms +1405.0459 Metric Geometry +1405.0460 Combinatorics +1405.0466 Fluid Dynamics +1405.0467 Materials Science +1405.0471 High Energy Astrophysical Phenomena +1405.0477 Materials Science +1405.0479 Materials Science +1405.0482 Instrumentation and Methods for Astrophysics +cond-mat/0607702 Mesoscale and Nanoscale Physics +math/0603554 Group Theory +0809.4906 +0906.3418 Soft Condensed Matter +0907.5585 Materials Science +1109.6773 Analysis of PDEs +1111.0431 Symplectic Geometry +1202.3804 Fluid Dynamics +1203.4056 +1203.5714 Optics +1204.5077 Algebraic Geometry +1204.6201 Phenomenology +1204.6557 +1207.4250 Numerical Analysis +1207.4359 Theory +1208.1400 +1210.1176 History and Philosophy of Physics +1210.1689 +1210.2525 Functional Analysis +1211.4376 +1211.4858 Representation Theory +1301.0752 Fluid Dynamics +1301.3396 Functional Analysis +1301.5859 +1301.6080 Statistics Theory +1302.1272 Cosmology and Nongalactic Astrophysics +1302.1931 Information Theory +1303.0146 Plasma Physics +1303.1770 Functional Analysis +1303.3290 Strongly Correlated Electrons +1303.4508 Theory +1303.7127 Information Theory +1304.2839 Logic +1304.4238 Theory +1304.4735 +1304.5388 Computational Complexity +1305.0143 Soft Condensed Matter +1305.1614 Complex Variables +1305.2730 Plasma Physics +1305.6152 Analysis of PDEs +1305.6521 Phenomenology +1305.6747 Probability +1306.1362 +1306.2210 Dynamical Systems +1306.2470 Dynamical Systems +1306.6202 Combinatorics +1306.6841 Plasma Physics +1307.0217 +1307.1358 Mesoscale and Nanoscale Physics +1307.1596 Plasma Physics +1307.4833 Mesoscale and Nanoscale Physics +1307.6355 Number Theory +1308.5060 Phenomenology +1308.5190 Physics and Society +1309.0054 Representation Theory +1309.0948 Plasma Physics +1309.2596 Materials Science +1309.5633 Probability +1309.5835 +1309.6083 Mesoscale and Nanoscale Physics +1309.6477 Data Structures and Algorithms +1309.7185 Plasma Physics +1309.7199 Plasma Physics +1309.7944 Numerical Analysis +1310.1589 Strongly Correlated Electrons +1310.1792 Probability +1310.3667 Plasma Physics +1310.5256 Classical Analysis and ODEs +1310.5935 Populations and Evolution +1310.7638 Mesoscale and Nanoscale Physics +1311.0851 Statistics Theory +1311.0878 Theory +1311.1294 Neural and Evolutionary Computing +1311.1462 +1311.3041 Strongly Correlated Electrons +1311.3191 Strongly Correlated Electrons +1311.3968 Mesoscale and Nanoscale Physics +1311.4689 Instrumentation and Detectors +1311.6353 Fluid Dynamics +1311.7452 Mesoscale and Nanoscale Physics +1312.0479 +1312.0889 Probability +1312.1166 Number Theory +1312.1355 Cosmology and Nongalactic Astrophysics +1312.1496 Soft Condensed Matter +1312.1723 +1312.1857 +1312.1892 Strongly Correlated Electrons +1312.1900 Statistics Theory +1312.3245 Cryptography and Security +1312.3673 Biological Physics +1312.3731 Probability +1312.4031 Materials Science +1312.4679 Cosmology and Nongalactic Astrophysics +1312.5910 Category Theory +1401.1354 K-Theory and Homology +1401.1618 Algebraic Geometry +1401.5465 Databases +1401.6696 +1401.6884 +1401.6956 Optimization and Control +1401.7242 Soft Condensed Matter +1401.7600 Representation Theory +1402.2244 Phenomenology +1402.3309 Mesoscale and Nanoscale Physics +1402.3486 Cosmology and Nongalactic Astrophysics +1402.3817 Group Theory +1402.5005 Phenomenology +1402.5310 Social and Information Networks +1402.5949 Analysis of PDEs +1402.6030 Biomolecules +1402.6183 Quantitative Methods +1402.6366 Computational Engineering, Finance, and Science +1402.6507 Materials Science +1402.6508 Social and Information Networks +1402.6691 Solar and Stellar Astrophysics +1402.6692 Other Computer Science +1402.6706 Instrumentation and Methods for Astrophysics +1402.6711 +1402.6712 Other Computer Science +1402.6715 Algebraic Geometry +1402.6717 Methodology +1402.6721 Optimization and Control +1402.6729 Materials Science +1402.6735 Analysis of PDEs +1402.6737 Functional Analysis +1402.6738 Methodology +1402.6742 Databases +1402.6744 Methodology +1402.6745 Statistical Mechanics +1402.6747 Combinatorics +1402.6748 Numerical Analysis +1402.6749 Materials Science +1402.6753 Fluid Dynamics +1402.6759 Fluid Dynamics +1402.6760 Portfolio Management +1402.6763 Optimization and Control +1402.6764 Software Engineering +1402.6770 Quantitative Methods +1402.6772 Instrumentation and Detectors +1402.6773 Probability +1402.6774 Strongly Correlated Electrons +1402.6775 Computational Engineering, Finance, and Science +1402.6777 Probability +1402.6781 Methodology +1402.6782 Formal Languages and Automata Theory +1402.6783 Formal Languages and Automata Theory +1402.6784 Formal Languages and Automata Theory +1402.6785 Software Engineering +1402.6787 Social and Information Networks +1402.6788 Group Theory +1402.6789 Strongly Correlated Electrons +1402.6795 Theory +1402.6799 Logic +1402.6800 Computational Complexity +1402.6806 Statistics Theory +1402.6807 Combinatorics +1402.6812 Differential Geometry +1402.6813 Phenomenology +1402.6814 Fluid Dynamics +1402.6818 Differential Geometry +1402.6819 Probability +1402.6820 Phenomenology +1402.6821 +1402.6829 Instrumentation and Detectors +1402.6831 Metric Geometry +1402.6833 Chemical Physics +1402.6834 Symplectic Geometry +1402.6837 Statistical Mechanics +1402.6838 Analysis of PDEs +1402.6839 Strongly Correlated Electrons +1402.6846 High Energy Astrophysical Phenomena +1402.6849 Functional Analysis +1402.6853 Atomic Physics +1402.6854 +1402.6858 +1402.6865 Social and Information Networks +1402.6869 +1402.6871 Instrumentation and Detectors +1402.6876 Instrumentation and Detectors +1402.6877 Analysis of PDEs +1402.6879 Soft Condensed Matter +1402.6880 Computation and Language +1402.6881 Number Theory +1402.6883 Differential Geometry +1402.6884 Instrumentation and Methods for Astrophysics +1402.6885 Differential Geometry +1402.6886 Differential Geometry +1402.6888 Neural and Evolutionary Computing +1402.6890 Fluid Dynamics +1402.6896 Complex Variables +1402.6903 Other Computer Science +1402.6909 Optimization and Control +1402.6917 Numerical Analysis +1402.6919 Analysis of PDEs +1402.6920 Combinatorics +1402.6923 Algebraic Geometry +1402.6932 Computer Vision and Pattern Recognition +1402.6934 Instrumentation and Methods for Astrophysics +1402.6936 Superconductivity +1402.6942 Distributed, Parallel, and Cluster Computing +1402.6945 Algebraic Geometry +1402.6947 Functional Analysis +1402.6952 Computational Complexity +1402.6954 +1402.6955 Solar and Stellar Astrophysics +1402.6957 Rings and Algebras +1402.6961 Combinatorics +1402.6964 Learning +1402.6966 Probability +1402.6970 General Physics +1402.6971 Genomics +1402.6973 Networking and Internet Architecture +1402.6978 Information Theory +1402.6991 Fluid Dynamics +1402.7000 Quantum Algebra +1402.7001 Learning +1402.7004 +1402.7005 Machine Learning +1402.7019 Other Computer Science +1402.7028 +1402.7032 Cryptography and Security +1402.7033 General Physics +1402.7038 Neurons and Cognition +1402.7041 +1402.7045 High Energy Astrophysical Phenomena +1402.7050 Robotics +1402.7055 Mesoscale and Nanoscale Physics +1402.7059 Numerical Analysis +1402.7060 Discrete Mathematics +1402.7062 Theory +1402.7063 Databases +1402.7067 Statistical Mechanics +math/0505688 Differential Geometry +0803.2096 Number Theory +0910.0652 Analysis of PDEs +1004.3778 Differential Geometry +1007.2912 Quantum Gases +1010.5609 Complex Variables +1103.2835 Statistical Mechanics +1110.1823 Complex Variables +1112.2705 Phenomenology +1201.1017 Instrumentation and Detectors +1201.2838 Classical Analysis and ODEs +1201.3196 Analysis of PDEs +1202.3071 Probability +1203.3318 Classical Analysis and ODEs +1203.4806 Analysis of PDEs +1204.2921 Functional Analysis +1204.6285 Optimization and Control +1205.5847 Combinatorics +1205.6308 Algebraic Geometry +1205.6354 Mesoscale and Nanoscale Physics +1206.1193 Classical Analysis and ODEs +1206.6272 Theory +1207.3316 Information Theory +1207.6177 Number Theory +1208.0699 Computer Science and Game Theory +1208.6261 +1210.7632 Plasma Physics +1301.5129 Portfolio Management +1301.5510 Genomics +1302.1245 +1302.3519 Rings and Algebras +1302.4679 Portfolio Management +1303.0287 Cosmology and Nongalactic Astrophysics +1303.4325 Probability +1303.5802 Optimization and Control +1304.2856 Strongly Correlated Electrons +1304.4894 Classical Analysis and ODEs +1304.5911 Optimization and Control +1304.6001 Instrumentation and Detectors +1304.6616 Instrumentation and Methods for Astrophysics +1305.0215 Data Analysis, Statistics and Probability +1305.0981 Theory +1305.7407 Analysis of PDEs +1306.4015 Optics +1306.4962 Cryptography and Security +1306.6310 Materials Science +1307.0783 Medical Physics +1307.2571 Cosmology and Nongalactic Astrophysics +1307.3045 Biological Physics +1307.4016 +1307.4192 Rings and Algebras +1307.4438 Superconductivity +1307.6813 Quantum Gases +1307.8336 Mesoscale and Nanoscale Physics +1308.0602 Cosmology and Nongalactic Astrophysics +1308.1657 +1308.1793 +1308.1841 Experiment +1308.1953 Cosmology and Nongalactic Astrophysics +1308.2254 Portfolio Management +1308.2326 Pricing of Securities +1308.3016 Complex Variables +1308.3317 Dynamical Systems +1308.3414 Materials Science +1308.5935 +1309.0661 Algebraic Geometry +1309.1648 Plasma Physics +1309.3456 Optics +1309.3488 Quantum Gases +1309.4480 Cosmology and Nongalactic Astrophysics +1309.5283 Materials Science +1309.5344 Cryptography and Security +1309.5474 Statistical Mechanics +1309.6529 Disordered Systems and Neural Networks +1309.7333 Theory +1310.2644 Computational Physics +1310.3040 Computers and Society +1310.3324 High Energy Astrophysical Phenomena +1310.4115 Mesoscale and Nanoscale Physics +1310.4420 +1310.4822 Computer Vision and Pattern Recognition +1310.7169 Complex Variables +1310.8181 Experiment +1310.8629 Statistical Mechanics +1311.0294 Chemical Physics +1311.0509 +1311.0672 Complex Variables +1311.1604 Quantum Gases +1311.4089 Group Theory +1311.6482 +1311.6700 Adaptation and Self-Organizing Systems +1311.7645 Mesoscale and Nanoscale Physics +1312.1980 Mesoscale and Nanoscale Physics +1312.1992 Optimization and Control +1312.3606 +1312.3938 Operating Systems +1312.4792 Phenomenology +1312.5597 Solar and Stellar Astrophysics +1312.7332 Combinatorics +1401.0067 +1401.1427 Superconductivity +1401.1561 +1401.3091 Superconductivity +1401.3341 Theory +1401.4320 Other Condensed Matter +1401.5689 Probability +1401.6108 Computer Vision and Pattern Recognition +1401.6667 Number Theory +1401.6685 Algebraic Geometry +1401.6741 Earth and Planetary Astrophysics +1401.6750 Lattice +1401.7144 +1401.7972 Quantitative Methods +1401.8004 +1401.8007 Optics +1401.8008 Machine Learning +1401.8010 Statistical Mechanics +1401.8012 Probability +1401.8014 Complex Variables +1401.8017 Machine Learning +1401.8018 Soft Condensed Matter +1401.8020 +1401.8021 Number Theory +1401.8023 Discrete Mathematics +1401.8024 Earth and Planetary Astrophysics +1401.8030 Computers and Society +1401.8031 Functional Analysis +1401.8034 Algebraic Topology +1401.8035 Soft Condensed Matter +1401.8037 Probability +1401.8038 Computer Science and Game Theory +1401.8042 Social and Information Networks +1401.8043 +1401.8047 Analysis of PDEs +1401.8048 History and Philosophy of Physics +1401.8053 Computer Vision and Pattern Recognition +1401.8054 Analysis of PDEs +1401.8063 Theory +1401.8064 Cryptography and Security +1401.8069 Software Engineering +1401.8070 +1401.8072 Software Engineering +1401.8074 Computer Science and Game Theory +1401.8075 +1401.8079 Discrete Mathematics +1401.8082 Cosmology and Nongalactic Astrophysics +1401.8083 Representation Theory +1401.8085 +1401.8086 Combinatorics +1401.8089 Mesoscale and Nanoscale Physics +1401.8090 Information Theory +1401.8091 Astrophysics of Galaxies +1401.8097 Methodology +1401.8100 Soft Condensed Matter +1401.8102 Superconductivity +1401.8108 Logic +1401.8109 Instrumentation and Methods for Astrophysics +1401.8113 +1401.8115 Other Statistics +1401.8117 +1401.8119 Pattern Formation and Solitons +1401.8120 Software Engineering +1401.8129 +1401.8131 Distributed, Parallel, and Cluster Computing +1401.8132 Multiagent Systems +1401.8133 Soft Condensed Matter +1401.8135 Data Structures and Algorithms +1401.8136 Other Computer Science +1401.8142 Optimization and Control +1401.8144 Computer Science and Game Theory +1401.8145 Earth and Planetary Astrophysics +1401.8150 Functional Analysis +1401.8151 Computer Science and Game Theory +1401.8154 Rings and Algebras +1401.8155 Experiment +1401.8159 Optimization and Control +1401.8165 Strongly Correlated Electrons +1401.8168 Information Theory +1401.8173 Networking and Internet Architecture +1401.8174 Metric Geometry +1401.8179 Number Theory +1401.8180 Combinatorics +1401.8181 Instrumentation and Methods for Astrophysics +1401.8182 Methodology +1401.8189 Methodology +1401.8191 +1401.8194 Strongly Correlated Electrons +1401.8196 Medical Physics +1401.8202 Representation Theory +1401.8206 Information Theory +1401.8212 Computers and Society +1401.8218 +1401.8220 Numerical Analysis +1401.8226 Networking and Internet Architecture +1401.8227 Analysis of PDEs +1401.8229 Metric Geometry +1401.8233 Differential Geometry +1401.8235 Atmospheric and Oceanic Physics +1401.8246 Mesoscale and Nanoscale Physics +1401.8252 Other Computer Science +1401.8255 Cryptography and Security +1401.8256 Accelerator Physics +1401.8258 Instrumentation and Methods for Astrophysics +1401.8261 Computer Vision and Pattern Recognition +1401.8262 +1401.8264 Differential Geometry +1401.8270 Soft Condensed Matter +1401.8271 Pricing of Securities +1401.8272 Differential Geometry +1401.8274 Applications +1401.8279 Solar and Stellar Astrophysics +1401.8280 Instrumentation and Methods for Astrophysics +1401.8281 Solar and Stellar Astrophysics +1401.8285 Spectral Theory +1401.8287 Phenomenology +cond-mat/0609493 Strongly Correlated Electrons +1001.2348 Differential Geometry +1003.4482 Combinatorics +1004.0230 Dynamical Systems +1010.1210 Theory +1101.3012 Operator Algebras +1107.2461 Computational Physics +1108.4946 Spectral Theory +1109.2972 Phenomenology +1109.3705 General Physics +1110.5655 +1111.1415 Biological Physics +1111.5067 +1111.5068 +1201.0723 Combinatorics +1201.4924 Fluid Dynamics +1203.1594 +1205.0531 Combinatorics +1208.1414 Differential Geometry +1208.3441 Geometric Topology +1208.3801 Combinatorics +1209.4947 Statistics Theory +1209.5628 Number Theory +1209.5631 Algebraic Geometry +1211.0390 Information Retrieval +1211.0939 +1211.2127 Functional Analysis +1212.4688 Phenomenology +1212.6134 Phenomenology +1301.1189 Superconductivity +1301.2863 Superconductivity +1302.2266 +1302.2556 Optimization and Control +1302.2834 +1303.0745 Materials Science +1304.0351 Combinatorics +1304.0829 Logic in Computer Science +1304.1884 Fluid Dynamics +1304.6960 Disordered Systems and Neural Networks +1305.1675 Combinatorics +1305.1676 Combinatorics +1305.4859 Artificial Intelligence +1305.5200 Geometric Topology +1306.1027 +1306.1170 Statistics Theory +1306.1865 Theory +1306.3289 Optics +1306.3652 Superconductivity +1307.1233 Spectral Theory +1307.1377 Strongly Correlated Electrons +1307.2262 Data Structures and Algorithms +1307.2485 Plasma Physics +1307.3252 Strongly Correlated Electrons +1307.3277 Symplectic Geometry +1307.3340 +1307.3344 Phenomenology +1307.5751 Solar and Stellar Astrophysics +1308.4508 Optics +1308.5749 Superconductivity +1308.6125 Quantum Gases +1308.6789 Phenomenology +1309.1407 Probability +1309.3489 Methodology +1309.5976 Strongly Correlated Electrons +1309.7602 Biological Physics +1309.7670 Numerical Analysis +1310.0898 Number Theory +1310.1086 Cosmology and Nongalactic Astrophysics +1310.2677 +1310.2841 Data Structures and Algorithms +1310.3435 Numerical Analysis +1310.3463 Differential Geometry +1310.4204 Theory +1310.4253 +1310.7840 Data Structures and Algorithms +1310.8008 Algebraic Topology +1311.2059 Instrumentation and Methods for Astrophysics +1311.5416 Soft Condensed Matter +1311.5527 Information Theory +1311.7057 Differential Geometry +1312.0729 Combinatorics +1312.1093 Optics +1312.2191 Commutative Algebra +1312.2291 Methodology +1312.3301 Probability +1312.4151 Atomic Physics +1312.5723 Mesoscale and Nanoscale Physics +1312.6257 Superconductivity +1312.6737 +1401.2354 +1401.3313 Combinatorics +1401.4574 Geometric Topology +1401.5493 +1401.5505 Optics +1401.5678 Combinatorics +1401.6241 Optics +1401.7657 Cosmology and Nongalactic Astrophysics +1402.0134 Discrete Mathematics +1402.4396 Materials Science +1402.6228 Soft Condensed Matter +1402.6476 Classical Physics +1402.6587 Strongly Correlated Electrons +1402.6725 Superconductivity +1402.7148 Mesoscale and Nanoscale Physics +1403.0293 Cosmology and Nongalactic Astrophysics +1403.0787 Number Theory +1403.1174 +1403.4032 Phenomenology +1403.4334 Computer Vision and Pattern Recognition +1403.4371 Algebraic Geometry +1403.4801 +1403.5962 Combinatorics +1403.6493 Cosmology and Nongalactic Astrophysics +1403.6742 +1403.6998 Mesoscale and Nanoscale Physics +1403.7989 Pattern Formation and Solitons +1404.0018 Theory +1404.2760 Statistical Mechanics +1404.3206 Instrumentation and Detectors +1404.6017 +1404.6160 Cosmology and Nongalactic Astrophysics +1404.6637 Statistical Finance +1404.6708 +1404.7389 Instrumentation and Detectors +1404.7674 Mesoscale and Nanoscale Physics +1405.0728 Statistical Mechanics +1405.2336 Statistical Mechanics +1405.2793 Instrumentation and Methods for Astrophysics +1405.2834 Combinatorics +1405.4032 Solar and Stellar Astrophysics +1406.0144 Materials Science +1406.0145 Materials Science +1406.0147 Materials Science +1406.0357 Populations and Evolution +1406.0654 Materials Science +1406.2005 Mesoscale and Nanoscale Physics +1406.2086 Astrophysics of Galaxies +1406.2108 Discrete Mathematics +1406.2364 Instrumentation and Methods for Astrophysics +1406.2465 Differential Geometry +1406.2556 Mesoscale and Nanoscale Physics +1406.2623 Neural and Evolutionary Computing +1406.2648 Numerical Analysis +1406.2704 Materials Science +1406.2707 Probability +1406.2709 Analysis of PDEs +1406.2710 Learning +1406.2720 Artificial Intelligence +1406.2721 Machine Learning +1406.2725 Methodology +1406.2730 Popular Physics +1406.2731 History and Overview +1406.2732 Computer Vision and Pattern Recognition +1406.2737 Statistical Mechanics +1406.2738 Information Theory +1406.2739 Statistical Mechanics +1406.2740 Operator Algebras +1406.2741 +1406.2743 Classical Analysis and ODEs +1406.2744 Systems and Control +1406.2755 Combinatorics +1406.2757 Optics +1406.2758 Information Theory +1406.2763 Superconductivity +1406.2765 Mesoscale and Nanoscale Physics +1406.2770 Analysis of PDEs +1406.2773 Computers and Society +1406.2775 Human-Computer Interaction +1406.2777 Emerging Technologies +1406.2779 Multimedia +1406.2780 Computation +1406.2781 Solar and Stellar Astrophysics +1406.2783 Logic in Computer Science +1406.2784 Machine Learning +1406.2785 Information Theory +1406.2788 Group Theory +1406.2791 Software Engineering +1406.2793 Digital Libraries +1406.2794 Information Theory +1406.2795 Data Structures and Algorithms +1406.2798 Probability +1406.2808 Software Engineering +1406.2809 +1406.2811 Optimization and Control +1406.2812 Networking and Internet Architecture +1406.2815 Methodology +1406.2816 Numerical Analysis +1406.2817 Numerical Analysis +1406.2821 Geophysics +1406.2822 Software Engineering +1406.2823 Software Engineering +1406.2824 Software Engineering +1406.2826 Strongly Correlated Electrons +1406.2829 Differential Geometry +1406.2834 Information Theory +1406.2835 Differential Geometry +1406.2838 Atomic and Molecular Clusters +1406.2843 Classical Analysis and ODEs +1406.2844 Distributed, Parallel, and Cluster Computing +1406.2847 Soft Condensed Matter +1406.2848 Mesoscale and Nanoscale Physics +1406.2855 Multiagent Systems +1406.2859 Instrumentation and Detectors +1406.2863 Computers and Society +1406.2864 Machine Learning +1406.2866 Commutative Algebra +1406.2875 Mesoscale and Nanoscale Physics +1406.2877 Phenomenology +1406.2880 Digital Libraries +1406.2883 Probability +1406.2886 Digital Libraries +1406.2888 Probability +1406.2889 Neural and Evolutionary Computing +1406.2893 Subcellular Processes +1406.2895 Human-Computer Interaction +1406.2898 Plasma Physics +1406.2902 Number Theory +1406.2907 +1406.2915 +1406.2919 Classical Analysis and ODEs +1406.2920 Probability +1406.2923 Plasma Physics +1406.2925 Analysis of PDEs +1406.2926 Populations and Evolution +1406.2929 Differential Geometry +1406.2930 Cryptography and Security +1406.2933 Methodology +1406.2935 Instrumentation and Methods for Astrophysics +1406.2939 Lattice +1406.2948 Superconductivity +1406.2950 Risk Management +1406.2952 Computer Vision and Pattern Recognition +1406.2955 Algebraic Topology +1406.2959 Optics +1406.2960 Networking and Internet Architecture +1406.2964 Logic +1406.2969 Computer Vision and Pattern Recognition +1406.2977 Social and Information Networks +1406.2982 Logic +1406.2990 Combinatorics +1406.2992 Soft Condensed Matter +1406.2998 +1406.2999 Number Theory +1406.3001 Phenomenology +1406.3003 Soft Condensed Matter +1406.3004 +1406.3012 History and Overview +0808.3495 Probability +0811.2666 +0902.0485 Probability +0912.4052 +1006.3253 Materials Science +1006.3254 Materials Science +1010.5545 Chaotic Dynamics +1012.3944 Probability +1101.1872 +1103.2259 Materials Science +1106.3170 Materials Science +1110.0533 Algebraic Geometry +1110.2158 +1110.3806 Probability +1110.4746 Networking and Internet Architecture +1111.6017 Probability +1111.7319 Theory +1112.6236 Operator Algebras +1201.0189 Phenomenology +1201.0356 Number Theory +1202.1504 Complex Variables +1202.1708 Neural and Evolutionary Computing +1202.6404 Information Theory +1202.6446 +1203.5901 Geometric Topology +1205.6577 Differential Geometry +1206.2407 Quantum Gases +1209.2082 Computer Vision and Pattern Recognition +1209.6364 Mesoscale and Nanoscale Physics +1210.6479 Phenomenology +1210.6611 Classical Analysis and ODEs +1210.7731 Theory +1211.0918 Classical Analysis and ODEs +1211.1587 Atomic Physics +1211.7335 Combinatorics +1212.0650 Mesoscale and Nanoscale Physics +1212.1821 +1212.4898 Optimization and Control +1212.6191 Mesoscale and Nanoscale Physics +1212.6526 Information Theory +1301.0807 +1301.1407 +1301.2071 Operator Algebras +1301.2116 +1301.3529 Machine Learning +1301.5422 Classical Analysis and ODEs +1301.7123 Analysis of PDEs +1302.0948 Distributed, Parallel, and Cluster Computing +1302.6422 Genomics +1303.1412 Classical Physics +1303.1586 Strongly Correlated Electrons +1303.3154 Neural and Evolutionary Computing +1303.5283 General Physics +1303.5331 Lattice +1303.5650 Phenomenology +1303.7099 Geometric Topology +1304.2965 Differential Geometry +1304.3372 Numerical Analysis +1304.5338 Group Theory +1304.5683 Logic +1304.6886 Mesoscale and Nanoscale Physics +1304.8110 Mesoscale and Nanoscale Physics +1305.3351 Computer Science and Game Theory +1305.7264 Earth and Planetary Astrophysics +1306.0045 Combinatorics +1306.0826 Mesoscale and Nanoscale Physics +1306.2391 Geometric Topology +1306.2776 Methodology +1306.3439 +1306.4009 Information Theory +1306.5028 Analysis of PDEs +1306.6354 Phenomenology +1307.1797 Phenomenology +1307.2291 Algebraic Geometry +1307.2965 Computer Vision and Pattern Recognition +1307.4102 Computer Science and Game Theory +1307.5081 Experiment +1307.5750 Phenomenology +1307.6232 +1307.7267 Theory +1307.7508 +1307.7663 Physics Education +1307.7872 Neurons and Cognition +1308.0281 Quantum Gases +1308.0572 Combinatorics +1308.0591 Phenomenology +1308.2547 Tissues and Organs +1308.2883 Analysis of PDEs +1308.3436 +1308.3749 Logic +1308.3860 Optimization and Control +1308.4122 Neurons and Cognition +1308.5640 +1308.6012 +1308.6268 Theory +1308.6433 Discrete Mathematics +1308.6435 +1309.0012 Phenomenology +1309.0274 +1309.0360 Numerical Analysis +1309.0606 Quantum Gases +1309.1392 Machine Learning +1309.1622 Mesoscale and Nanoscale Physics +1309.2363 Operator Algebras +1309.2434 Digital Libraries +1309.2464 Quantum Gases +1309.2872 Statistical Mechanics +1309.2995 Strongly Correlated Electrons +1309.3784 Quantum Gases +1309.4390 +1309.5297 +1309.5957 Phenomenology +1309.6484 Systems and Control +1309.7570 Experiment +1310.0378 Phenomenology +1310.1263 High Energy Astrophysical Phenomena +1310.1534 Mesoscale and Nanoscale Physics +1310.1688 Differential Geometry +1310.1846 +1310.1908 Soft Condensed Matter +1310.1937 Phenomenology +1310.2687 +1310.3029 Phenomenology +1310.3852 Disordered Systems and Neural Networks +1310.4242 Materials Science +1310.4263 Phenomenology +1310.5361 Phenomenology +1310.5414 Phenomenology +1310.5453 +1310.5575 +1310.5629 Lattice +1310.5953 Phenomenology +1310.6032 Theory +1310.6114 Phenomenology +1310.6353 Theory +1310.6354 Strongly Correlated Electrons +1310.6666 Phenomenology +1310.7500 Quantum Gases +1310.8048 +1310.8332 Quantum Gases +1311.0087 +1311.0225 Theory +1311.0325 Theory +1311.1004 Cosmology and Nongalactic Astrophysics +1311.1578 Phenomenology +1311.1678 Phenomenology +1311.2277 +1311.2371 Theory +1311.2614 Phenomenology +1311.3384 +1311.3835 Complex Variables +1311.4172 Theory +1311.4200 Phenomenology +1311.4421 Materials Science +1311.4506 Phenomenology +1311.4557 Statistical Mechanics +1311.4561 +1311.5023 Theory +1311.5176 Soft Condensed Matter +1311.5269 +1311.5470 General Physics +1311.5664 Lattice +1311.5761 Cosmology and Nongalactic Astrophysics +1311.6301 Mesoscale and Nanoscale Physics +1311.6411 Phenomenology +1311.6626 Lattice +1311.6874 Phenomenology +1311.6994 Fluid Dynamics +1311.7031 Physics and Society +1311.7686 Lattice +1312.1092 +1312.1183 Theory +1312.1212 Phenomenology +1312.1240 Materials Science +1312.1272 Category Theory +1312.1278 Geometric Topology +1312.1296 Phenomenology +1312.1686 Theory +1312.1802 Phenomenology +1312.1852 Cosmology and Nongalactic Astrophysics +1312.2021 Theory +1312.2212 Phenomenology +1312.2384 Phenomenology +1312.2436 Atomic Physics +1312.2458 Cosmology and Nongalactic Astrophysics +1312.2547 Phenomenology +1312.2900 Phenomenology +1312.3163 +1312.3321 Strongly Correlated Electrons +1312.3461 Strongly Correlated Electrons +1312.3597 +1312.3814 Disordered Systems and Neural Networks +1312.3949 Phenomenology +1312.3983 Optics +1312.4073 Mesoscale and Nanoscale Physics +1312.4178 Phenomenology +1312.4263 Pattern Formation and Solitons +1312.4311 +1312.4438 Experiment +1312.4903 Statistical Mechanics +1312.4937 Phenomenology +1312.4948 Cosmology and Nongalactic Astrophysics +1312.5194 Mesoscale and Nanoscale Physics +1312.5496 General Finance +1312.5616 Cosmology and Nongalactic Astrophysics +1312.5718 Phenomenology +1312.5725 Cosmology and Nongalactic Astrophysics +1312.5808 +1312.6013 Instrumentation and Methods for Astrophysics +1312.6029 Statistical Mechanics +1312.6181 Phenomenology +1312.6540 +1312.6621 Phenomenology +1312.6645 Cosmology and Nongalactic Astrophysics +1312.6676 +1312.6704 Quantum Gases +1312.6871 +1312.6876 +1312.7109 Mesoscale and Nanoscale Physics +1312.7262 Molecular Networks +1312.7307 +1312.7410 Theory +1312.7541 Disordered Systems and Neural Networks +1312.7760 Theory +1401.0066 Mesoscale and Nanoscale Physics +1401.0637 Group Theory +1401.0825 Theory +1401.1023 Cosmology and Nongalactic Astrophysics +1401.1053 Logic in Computer Science +1401.1173 Phenomenology +1401.1196 Mesoscale and Nanoscale Physics +1401.1235 Phenomenology +1401.1284 Phenomenology +1401.1506 +1401.1947 +1401.2459 Phenomenology +1401.2806 Superconductivity +1401.2865 Strongly Correlated Electrons +1401.2928 Phenomenology +1401.3107 Theory +1401.3310 Phenomenology +1401.3512 Optics +1401.3631 Phenomenology +1401.3634 Cosmology and Nongalactic Astrophysics +1401.3751 Phenomenology +1401.4102 Cosmology and Nongalactic Astrophysics +1401.4185 Phenomenology +1401.4479 +1401.4671 Phenomenology +1401.4863 Classical Analysis and ODEs +1401.5020 Phenomenology +1401.5056 Mesoscale and Nanoscale Physics +1401.5078 Phenomenology +1401.5239 Strongly Correlated Electrons +1401.5514 Phenomenology +1401.5596 Phenomenology +1401.6139 Algebraic Topology +1401.6144 Commutative Algebra +1401.6262 Atomic Physics +1401.6323 Phenomenology +1401.6339 +1401.6839 Theory +1401.6857 Strongly Correlated Electrons +1401.6871 +1401.6939 Materials Science +1401.6972 Theory +1401.7246 Statistical Mechanics +1401.7280 Statistical Mechanics +1401.7491 Cosmology and Nongalactic Astrophysics +1401.7545 General Mathematics +1401.7621 Phenomenology +1401.8095 Lattice +1402.0048 Lattice +1402.0455 Phenomenology +1402.0520 Cosmology and Nongalactic Astrophysics +1402.0718 +1402.0821 +1402.0947 Other Statistics +1402.1055 +1402.1120 Computational Physics +1402.1550 Experiment +1402.1647 Phenomenology +1402.1837 Lattice +1402.1996 Superconductivity +1402.1998 +1402.2270 Mesoscale and Nanoscale Physics +1402.2303 Functional Analysis +1402.2384 +1402.2481 +1402.3152 +1402.3451 +1402.3567 Strongly Correlated Electrons +1402.3687 Theory +1402.4025 Experiment +1402.4097 Experiment +1402.4687 Phenomenology +1402.4813 Strongly Correlated Electrons +1402.4840 +1402.5084 Phenomenology +1402.5137 Phenomenology +1402.5213 Experiment +1402.6728 Experiment +1403.0878 Lattice +1403.1131 Physics and Society +1403.1770 Theory +1403.1985 Phenomenology +1403.2765 Programming Languages +1403.3681 Materials Science +1403.5076 Instrumentation and Detectors +1403.7305 +1404.0739 Functional Analysis +1404.1252 Mesoscale and Nanoscale Physics +1404.1291 Disordered Systems and Neural Networks +1404.2445 Neurons and Cognition +1404.2728 Graphics +1404.3140 Strongly Correlated Electrons +1404.3926 +1404.4360 +1404.4520 Mesoscale and Nanoscale Physics +1404.4709 Phenomenology +1404.4914 Complex Variables +1404.4965 Geometric Topology +1404.5072 Molecular Networks +1404.5117 Instrumentation and Detectors +1404.5140 Computational Finance +1404.5165 Robotics +1404.5192 Combinatorics +1404.5294 Rings and Algebras +1404.5295 Mesoscale and Nanoscale Physics +1404.5304 +1404.5306 High Energy Astrophysical Phenomena +1404.5310 Cosmology and Nongalactic Astrophysics +1404.5314 Theory +1404.5315 Astrophysics of Galaxies +1404.5322 Digital Libraries +1404.5324 Quantitative Methods +1404.5328 Medical Physics +1404.5332 Numerical Analysis +1404.5333 History and Philosophy of Physics +1404.5334 Combinatorics +1404.5341 History and Philosophy of Physics +1404.5345 Molecular Networks +1404.5350 Optimization and Control +1404.5351 Computer Vision and Pattern Recognition +1404.5357 Computation and Language +1404.5358 Applications +1404.5361 Optics +1404.5364 Optics +1404.5367 Computation and Language +1404.5368 Combinatorics +1404.5372 Information Retrieval +1404.5373 Neurons and Cognition +1404.5376 Classical Analysis and ODEs +1404.5379 Mesoscale and Nanoscale Physics +1404.5382 +1404.5385 Networking and Internet Architecture +1404.5386 Analysis of PDEs +1404.5389 Experiment +1404.5390 Mesoscale and Nanoscale Physics +1404.5393 Formal Languages and Automata Theory +1404.5395 Algebraic Topology +1404.5397 Chaotic Dynamics +1404.5398 Data Structures and Algorithms +1404.5400 Chaotic Dynamics +1404.5404 Number Theory +1404.5406 Performance +1404.5408 Portfolio Management +1404.5409 Atomic Physics +1404.5412 Information Theory +1404.5413 Classical Analysis and ODEs +1404.5414 Operator Algebras +1404.5421 Learning +1404.5422 Classical Analysis and ODEs +1404.5424 Computational Complexity +1404.5428 Data Structures and Algorithms +1404.5440 Group Theory +1404.5444 +1404.5448 Data Structures and Algorithms +1404.5449 Analysis of PDEs +1404.5452 Analysis of PDEs +1404.5453 Logic in Computer Science +1404.5454 Artificial Intelligence +1404.5456 Superconductivity +1404.5457 Numerical Analysis +1404.5458 Computational Engineering, Finance, and Science +1404.5468 Discrete Mathematics +1404.5470 Group Theory +1404.5471 Chemical Physics +1404.5477 Category Theory +1404.5479 Formal Languages and Automata Theory +1404.5481 Networking and Internet Architecture +1404.5494 Operator Algebras +1404.5497 Numerical Analysis +1404.5498 +1404.5505 Probability +1404.5507 Information Theory +1404.5511 Learning +1404.5512 Fluid Dynamics +1404.5515 Quantitative Methods +1404.5516 Molecular Networks +1404.5520 Neural and Evolutionary Computing +1404.5523 Rings and Algebras +1404.5525 Numerical Analysis +1404.5528 Distributed, Parallel, and Cluster Computing +1404.5529 +1404.5531 Probability +1404.5532 Probability +1404.5533 Probability +1404.5534 Probability +1404.5535 Representation Theory +1404.5536 Dynamical Systems +1404.5537 Mesoscale and Nanoscale Physics +1404.5541 Soft Condensed Matter +1404.5549 Probability +1404.5550 Theory +1404.5552 Distributed, Parallel, and Cluster Computing +1404.5554 Probability +1404.5555 Dynamical Systems +1404.5556 Probability +1404.5563 Analysis of PDEs +1404.5568 Data Structures and Algorithms +1404.5580 Analysis of PDEs +1404.5587 Probability +1404.5588 Computer Vision and Pattern Recognition +1404.5591 Probability +1404.5594 Operator Algebras +1404.5595 Materials Science +1404.5596 Chaotic Dynamics +1404.5597 Solar and Stellar Astrophysics +1404.5598 Applications +1404.5599 Biological Physics +1404.5601 Probability +1404.5603 Probability +1404.5607 Functional Analysis +1404.5608 Analysis of PDEs +cond-mat/0309162 Materials Science +math/0508037 Metric Geometry +0711.0011 Geometric Topology +0904.0382 Cosmology and Nongalactic Astrophysics +0909.2397 Quantum Gases +0909.4352 Quantum Algebra +0912.0573 Combinatorics +1002.3601 Combinatorics +1003.0987 Mesoscale and Nanoscale Physics +1006.4131 History and Overview +1007.2754 +1008.4433 Combinatorics +1009.3585 Combinatorics +1010.1130 Strongly Correlated Electrons +1012.3825 Combinatorics +1102.5281 Phenomenology +1105.5768 Pattern Formation and Solitons +1106.3740 Data Analysis, Statistics and Probability +1108.3321 Combinatorics +1109.4398 Phenomenology +1111.4385 Numerical Analysis +1111.4710 Combinatorics +1112.5415 Group Theory +1201.4342 Computer Science and Game Theory +1202.4215 Combinatorics +1202.5350 Mesoscale and Nanoscale Physics +1204.0479 Artificial Intelligence +1204.6622 Phenomenology +1205.4308 +1206.2574 Geometric Topology +1207.1988 +1207.6093 Phenomenology +1209.4134 Disordered Systems and Neural Networks +1210.3262 Cosmology and Nongalactic Astrophysics +1210.6237 Functional Analysis +1210.7073 Metric Geometry +1211.3285 Probability +1212.0266 Rings and Algebras +1212.3293 Rings and Algebras +1212.3914 Category Theory +1301.0154 Classical Analysis and ODEs +1301.2230 Theory +1301.3040 +1301.3370 Number Theory +1302.0041 Commutative Algebra +1303.4126 +1304.3343 Quantum Algebra +1304.5377 Functional Analysis +1304.7670 Populations and Evolution +1305.2469 Cosmology and Nongalactic Astrophysics +1305.3555 Phenomenology +1305.3657 Physics and Society +1306.0396 Mesoscale and Nanoscale Physics +1306.2067 Fluid Dynamics +1306.3276 Geometric Topology +1306.3540 Materials Science +1306.4274 Phenomenology +1306.5284 Algebraic Geometry +1306.5842 Algebraic Geometry +1306.6406 Logic +1307.1821 Optics +1307.2659 Strongly Correlated Electrons +1307.3495 Methodology +1307.7529 Phenomenology +1308.1984 Populations and Evolution +1308.4060 Representation Theory +1308.4817 Phenomenology +1308.5601 Quantum Gases +1308.5802 Phenomenology +1308.6823 Artificial Intelligence +1309.0396 Physics and Society +1309.0469 Algebraic Geometry +1309.0478 +1309.4506 Numerical Analysis +1309.5430 Differential Geometry +1309.5932 Genomics +1310.0139 Analysis of PDEs +1310.0727 Probability +1310.2544 Soft Condensed Matter +1310.2570 Combinatorics +1310.2887 Numerical Analysis +1310.3532 Lattice +1310.3769 +1310.5170 Materials Science +1310.6395 +1310.6923 Experiment +1310.7176 Pattern Formation and Solitons +1311.0420 +1311.0575 Quantum Algebra +1311.0814 Logic +1311.0869 Theory +1311.3939 Computer Science and Game Theory +1311.4824 Soft Condensed Matter +1311.6801 Mesoscale and Nanoscale Physics +1311.6947 Analysis of PDEs +1311.7646 Geometric Topology +1312.0264 Computational Engineering, Finance, and Science +1312.0277 Analysis of PDEs +1312.1411 Logic in Computer Science +1312.2197 +1312.2259 +1312.3127 Quantum Gases +1312.4564 Machine Learning +1312.5397 Phenomenology +1312.5669 Mesoscale and Nanoscale Physics +1312.5813 Learning +1312.7256 History and Overview +1401.0134 Optimization and Control +1401.0424 Combinatorics +1401.0895 +1401.1882 Information Theory +1401.2119 Information Theory +1401.2883 General Physics +1401.2972 Optics +1401.3040 Chaotic Dynamics +1401.3415 Materials Science +1401.4281 Instrumentation and Methods for Astrophysics +1401.4638 Algebraic Geometry +1401.4780 Numerical Analysis +1401.6673 Instrumentation and Detectors +1401.6707 Phenomenology +1401.7233 Social and Information Networks +1401.7392 Rings and Algebras +1401.7973 Cosmology and Nongalactic Astrophysics +1402.0484 Experiment +1402.1235 Statistical Mechanics +1402.1864 Learning +1402.1869 Machine Learning +1402.1887 Lattice +1402.2316 Cosmology and Nongalactic Astrophysics +1402.2488 Solar and Stellar Astrophysics +1402.2790 Solar and Stellar Astrophysics +1402.4421 Group Theory +1402.4781 Optics +1402.5875 Superconductivity +1402.7231 Exactly Solvable and Integrable Systems +1403.0269 Strongly Correlated Electrons +1403.0749 Programming Languages +1403.1011 Populations and Evolution +1403.1358 Strongly Correlated Electrons +1403.1614 Molecular Networks +1403.1995 Combinatorics +1403.2329 High Energy Astrophysical Phenomena +1403.2456 Strongly Correlated Electrons +1403.2497 Superconductivity +1403.3378 Machine Learning +1403.3731 Spectral Theory +1403.4615 Soft Condensed Matter +1403.4683 Theory +1403.6435 Combinatorics +1404.0736 Computer Vision and Pattern Recognition +1404.0984 Lattice +1404.2406 Superconductivity +1404.4870 Solar and Stellar Astrophysics +1404.4953 +1404.5971 Computer Science and Game Theory +1405.0181 Phenomenology +1405.0216 Materials Science +1405.0965 K-Theory and Homology +1405.2147 Strongly Correlated Electrons +1405.3822 +1405.4038 +1405.6095 Combinatorics +1405.6387 Symplectic Geometry +1405.7143 Networking and Internet Architecture +1405.7238 Accelerator Physics +1405.7326 Analysis of PDEs +1406.0442 Superconductivity +1406.0566 Phenomenology +1406.1029 Materials Science +1406.1581 +1406.1792 Pattern Formation and Solitons +1406.1794 Networking and Internet Architecture +1406.1795 Cryptography and Security +1406.1796 Mathematical Software +1406.1803 Methodology +1406.1805 Probability +1406.1808 Logic +1406.1812 Methodology +1406.1819 Numerical Analysis +1406.1823 Cryptography and Security +1406.1828 Number Theory +1406.1830 Number Theory +1406.1831 Neural and Evolutionary Computing +1406.1835 +1406.1836 +1406.1838 +1406.1842 Materials Science +1406.1844 Systems and Control +1406.1848 Information Theory +1406.1851 Quantum Algebra +1406.1855 Information Retrieval +1406.1861 Strongly Correlated Electrons +1406.1863 Optimization and Control +1406.1867 Information Theory +1406.1870 Computation and Language +1406.1872 General Physics +1406.1879 Superconductivity +1406.1882 Methodology +1406.1883 Dynamical Systems +1406.1886 Hardware Architecture +1406.1889 Logic +1406.1893 Analysis of PDEs +1406.1896 Probability +1406.1897 Analysis of PDEs +1406.1898 Analysis of PDEs +1406.1901 Algebraic Topology +1406.1906 Computer Vision and Pattern Recognition +1406.1915 Networking and Internet Architecture +1406.1916 Machine Learning +1406.1918 Instrumentation and Detectors +1406.1923 Distributed, Parallel, and Cluster Computing +1406.1924 Quantum Algebra +1406.1925 Computer Vision and Pattern Recognition +1406.1928 Computer Science and Game Theory +1406.1940 Analysis of PDEs +1406.1941 Methodology +1406.1943 Computer Vision and Pattern Recognition +1406.1946 Number Theory +1406.1950 Functional Analysis +1406.1951 Combinatorics +1406.1952 Phenomenology +1406.1954 Phenomenology +1406.1956 Probability +1406.1960 Strongly Correlated Electrons +1406.1962 Mesoscale and Nanoscale Physics +1406.1963 Fluid Dynamics +1406.1965 Logic in Computer Science +1406.1966 Mesoscale and Nanoscale Physics +1406.1969 Information Retrieval +1406.1971 Strongly Correlated Electrons +1406.1972 Classical Analysis and ODEs +1406.1974 Distributed, Parallel, and Cluster Computing +1406.1975 Neurons and Cognition +1406.1976 Quantitative Methods +1406.1979 Classical Analysis and ODEs +1406.1981 Rings and Algebras +1406.1985 Phenomenology +1406.1988 Combinatorics +1406.1989 Numerical Analysis +1406.1991 Numerical Analysis +1406.1992 Probability +1406.1995 Analysis of PDEs +1406.1998 Databases +1406.2000 Artificial Intelligence +1406.2001 Group Theory +1406.2004 Combinatorics +1406.2008 Data Structures and Algorithms +1406.2015 Information Retrieval +1406.2016 +1406.2017 Social and Information Networks +1406.2018 Multimedia +1406.2021 Emerging Technologies +1406.2022 Information Retrieval +1406.2023 Artificial Intelligence +1406.2024 Fluid Dynamics +1406.2025 Phenomenology +1406.2031 Computer Vision and Pattern Recognition +1406.2032 Analysis of PDEs +1406.2033 Superconductivity +1406.2041 Software Engineering +1406.2042 Geometric Topology +1406.2043 Superconductivity +1406.2044 Instrumentation and Detectors +1406.2049 Computer Vision and Pattern Recognition +1406.2050 Combinatorics +1406.2051 Phenomenology +1406.2053 Computational Finance +1406.2057 Number Theory +1406.2058 Programming Languages +1406.2059 Logic in Computer Science +1406.2060 Programming Languages +1406.2061 Programming Languages +1406.2062 Programming Languages +1406.2063 Programming Languages +1406.2065 Programming Languages +1406.2066 Logic in Computer Science +1406.2067 Performance +1406.2068 Logic in Computer Science +1406.2069 Performance +1406.2070 Analysis of PDEs +1406.2071 Software Engineering +1406.2073 Numerical Analysis +1406.2074 Molecular Networks +1406.2078 Astrophysics of Galaxies +1406.2085 Solar and Stellar Astrophysics +1406.2090 Strongly Correlated Electrons +1406.2094 K-Theory and Homology +1406.2096 Software Engineering +1406.2097 Group Theory +1406.2098 Machine Learning +1406.2099 Programming Languages +1406.2100 Methodology +1406.2102 Quantum Gases +1406.2103 Logic in Computer Science +1406.2105 Statistical Mechanics +1406.2107 Data Structures and Algorithms +1406.2110 Logic in Computer Science +1406.2116 Statistical Mechanics +1406.2117 Exactly Solvable and Integrable Systems +1406.2121 Programming Languages +1406.2122 Software Engineering +1406.2124 Number Theory +1406.2125 Databases +1406.2128 Artificial Intelligence +1406.2132 Physics and Society +1406.2134 Robotics +1406.2135 Systems and Control +1406.2137 Functional Analysis +1406.2141 Superconductivity +1406.2143 Algebraic Geometry +1406.2149 Atomic Physics +1406.2154 Data Structures and Algorithms +1406.2157 Materials Science +1406.2158 Numerical Analysis +1406.2159 Materials Science +1406.2161 Logic in Computer Science +1406.2165 Atomic Physics +1406.2166 Algebraic Geometry +1406.2167 Phenomenology +1406.2168 Optics +1406.2169 Materials Science +1406.2171 Numerical Analysis +1406.2174 +1406.2177 Mesoscale and Nanoscale Physics +1406.2183 Number Theory +1406.2186 Probability +1406.2188 Commutative Algebra +1406.2196 Algebraic Geometry +1406.2204 Computation and Language +1406.2206 Statistics Theory +1406.2212 Probability +1406.2214 Differential Geometry +1406.2217 +1406.2222 Computers and Society +1406.2226 Geometric Topology +1406.2230 Number Theory +1406.2231 Strongly Correlated Electrons +1406.2232 Fluid Dynamics +1406.2233 Complex Variables +1406.2234 Software Engineering +1406.2235 Learning +1406.2236 Phenomenology +1406.2239 Materials Science +1406.2240 Statistics Theory +1406.2241 Space Physics +1406.2246 Optics +1406.2254 Dynamical Systems +1406.2257 Representation Theory +1406.2260 Analysis of PDEs +1406.2261 Other Condensed Matter +1406.2262 Data Structures and Algorithms +1406.2266 Software Engineering +1406.2269 History and Overview +1406.2270 General Mathematics +1406.2273 Number Theory +1406.2275 Statistics Theory +1406.2277 Cellular Automata and Lattice Gases +1406.2282 Computer Vision and Pattern Recognition +1406.2283 Computer Vision and Pattern Recognition +1406.2284 Statistical Mechanics +1406.2285 Cryptography and Security +1406.2292 Analysis of PDEs +1406.2294 Data Structures and Algorithms +1406.2298 Software Engineering +1406.2305 +math/0204055 Analysis of PDEs +math/0401120 Geometric Topology +quant-ph/0003084 +quant-ph/0412165 +0802.0666 Dynamical Systems +0804.0446 Combinatorics +0804.4210 Classical Analysis and ODEs +0808.2236 Phenomenology +0903.3856 Number Theory +0903.4611 Number Theory +0909.0227 Number Theory +0909.1661 Number Theory +0909.1663 Number Theory +1002.0492 Number Theory +1002.0667 Number Theory +1105.3642 Differential Geometry +1106.3439 Complex Variables +1109.4138 Probability +1110.2163 Probability +1201.3354 Probability +1202.0465 Phenomenology +1202.2386 +1202.4083 Experiment +1202.4195 Experiment +1205.6658 Computational Complexity +1206.4838 Algebraic Geometry +1207.5406 Experiment +1210.1548 Probability +1212.4536 Biological Physics +1301.3691 +1301.5029 Number Theory +1302.0213 Quantum Algebra +1302.0428 Representation Theory +1302.0942 Analysis of PDEs +1302.4606 Phenomenology +1304.1044 Probability +1304.1881 Discrete Mathematics +1304.2667 +1304.6668 +1304.6998 Complex Variables +1305.0074 Differential Geometry +1305.0505 Combinatorics +1305.1309 Numerical Analysis +1306.5008 Combinatorics +1307.0513 +1307.0918 Differential Geometry +1307.1513 Symplectic Geometry +1307.2072 Classical Analysis and ODEs +1307.8109 Geometric Topology +1308.1660 Solar and Stellar Astrophysics +1308.2560 Algebraic Topology +1308.3810 Discrete Mathematics +1308.4261 +1308.4747 Methodology +1309.4011 Algebraic Geometry +1311.3153 +1311.3762 Combinatorics +1311.6000 Computation +1311.7691 Numerical Analysis +1312.1292 Cosmology and Nongalactic Astrophysics +1312.5381 Metric Geometry +1312.6117 Learning +1312.7601 Mesoscale and Nanoscale Physics +1312.7777 Group Theory +1401.4804 Instrumentation and Methods for Astrophysics +1401.5205 +1401.7094 Classical Analysis and ODEs +1401.7353 +1401.7780 Strongly Correlated Electrons +1401.8276 Fluid Dynamics +1402.0873 Quantum Gases +1402.4715 Combinatorics +1402.7054 Superconductivity +1403.1626 Computer Vision and Pattern Recognition +1403.4510 Differential Geometry +1403.5049 Networking and Internet Architecture +1403.6495 +1404.1165 Numerical Analysis +1404.1412 Superconductivity +1404.4129 Phenomenology +1404.6624 Numerical Analysis +1405.2084 Symplectic Geometry +1405.3633 +1405.4594 Superconductivity +1405.5330 Phenomenology +1405.5381 Data Structures and Algorithms +1405.6050 Phenomenology +1405.6875 +1405.7193 Mesoscale and Nanoscale Physics +1406.3520 Solar and Stellar Astrophysics +1406.3849 Probability +1406.5466 Cosmology and Nongalactic Astrophysics +1406.5622 Systems and Control +1406.7301 Numerical Analysis +1406.7696 Phenomenology +1407.1795 Geometric Topology +1407.2006 Physics and Society +1407.2707 Chemical Physics +1407.3228 Statistical Mechanics +1407.3577 +1407.3951 General Topology +1407.5063 Experiment +1407.6641 +1408.0438 Disordered Systems and Neural Networks +1408.0896 Solar and Stellar Astrophysics +1408.2131 Classical Analysis and ODEs +1408.3598 Information Theory +1408.4108 Populations and Evolution +1408.4123 Mesoscale and Nanoscale Physics +1408.4389 Data Structures and Algorithms +1408.4805 High Energy Astrophysical Phenomena +1408.5305 +1408.5395 Number Theory +1408.5749 Strongly Correlated Electrons +1408.6815 Combinatorics +1408.6830 +1409.1236 Theory +1409.1460 Phenomenology +1409.2427 Differential Geometry +1409.3288 Databases +1409.5363 Materials Science +1409.5628 Classical Physics +1409.7943 Phenomenology +1410.0142 Algebraic Topology +1410.0390 Optimization and Control +1410.0678 High Energy Astrophysical Phenomena +1410.0718 Computation and Language +1410.1063 Phenomenology +1410.1854 Dynamical Systems +1410.3242 Atomic Physics +1410.3859 +1410.5410 Machine Learning +1410.5447 Chemical Physics +1410.5534 Differential Geometry +1410.5535 Differential Geometry +1410.7332 Number Theory +1411.0166 Lattice +1411.1839 +1411.1903 Populations and Evolution +1411.2527 Geometric Topology +1411.2545 Analysis of PDEs +1411.2694 Differential Geometry +1411.2761 Other Quantitative Biology +1411.2774 Mesoscale and Nanoscale Physics +1411.3138 Methodology +1411.3189 Probability +1411.3304 Logic in Computer Science +1411.3330 Cosmology and Nongalactic Astrophysics +1411.3338 Strongly Correlated Electrons +1411.3340 Classical Physics +1411.3343 Operator Algebras +1411.3344 Instrumentation and Methods for Astrophysics +1411.3346 Artificial Intelligence +1411.3350 Lattice +1411.3351 Combinatorics +1411.3353 Phenomenology +1411.3356 General Mathematics +1411.3357 Astrophysics of Galaxies +1411.3358 Theory +1411.3359 Dynamical Systems +1411.3361 Number Theory +1411.3362 General Topology +1411.3363 Differential Geometry +1411.3364 Combinatorics +1411.3371 Dynamical Systems +1411.3374 Databases +1411.3376 Classical Analysis and ODEs +1411.3377 Databases +1411.3378 General Mathematics +1411.3381 Algebraic Geometry +1411.3384 Geometric Topology +1411.3388 Mesoscale and Nanoscale Physics +1411.3393 Commutative Algebra +1411.3395 Algebraic Geometry +1411.3398 Phenomenology +1411.3399 Statistical Finance +1411.3401 Exactly Solvable and Integrable Systems +1411.3404 K-Theory and Homology +1411.3409 Machine Learning +1411.3410 Computer Vision and Pattern Recognition +1411.3411 Materials Science +1411.3413 Machine Learning +1411.3414 Phenomenology +1411.3415 Complex Variables +1411.3416 Differential Geometry +1411.3417 Probability +1411.3419 Computational Complexity +1411.3420 Quantum Gases +1411.3425 Information Theory +1411.3426 Materials Science +1411.3429 Combinatorics +1411.3432 Combinatorics +1411.3433 Cryptography and Security +1411.3434 Statistics Theory +1411.3435 Populations and Evolution +1411.3436 Machine Learning +1411.3439 +1411.3442 Probability +1411.3443 Astrophysics of Galaxies +1411.3445 +1411.3447 Algebraic Topology +1411.3450 Networking and Internet Architecture +1411.3451 Materials Science +1411.3452 Numerical Analysis +1411.3453 Logic in Computer Science +1411.3455 Analysis of PDEs +1411.3456 Exactly Solvable and Integrable Systems +1411.3460 Materials Science +1411.3461 Functional Analysis +1411.3463 Numerical Analysis +1411.3466 Numerical Analysis +1411.3471 Number Theory +1411.3472 Number Theory +1411.3473 Solar and Stellar Astrophysics +1411.3476 Materials Science +1411.3477 Materials Science +1411.3478 Complex Variables +1411.3479 Applications +1411.3480 Populations and Evolution +1411.3482 Analysis of PDEs +1411.3484 Materials Science +1411.3492 Hardware Architecture +1411.3493 Theory +1411.3498 Representation Theory +1411.3502 Representation Theory +1411.3503 Lattice +1411.3504 Combinatorics +1411.3507 Quantitative Methods +1411.3509 Soft Condensed Matter +1411.3511 +1411.3513 Applications +1411.3514 Geometric Topology +1411.3516 Instrumentation and Detectors +1411.3518 Phenomenology +1411.3521 Experiment +1411.3522 Mesoscale and Nanoscale Physics +1411.3524 Mesoscale and Nanoscale Physics +1411.3526 Phenomenology +1411.3529 Mesoscale and Nanoscale Physics +1411.3534 Combinatorics +1411.3535 Analysis of PDEs +1411.3537 Combinatorics +1411.3539 Discrete Mathematics +1411.3540 Probability +1411.3543 +1411.3544 Experiment +1411.3546 Atomic Physics +1411.3548 Astrophysics of Galaxies +1411.3550 Social and Information Networks +1411.3553 Learning +1411.3555 Social and Information Networks +1411.3556 Cosmology and Nongalactic Astrophysics +1411.3559 Solar and Stellar Astrophysics +1411.3563 Phenomenology +1411.3564 Functional Analysis +1411.3565 Geometric Topology +1411.3568 Probability +1411.3570 Metric Geometry +1411.3572 Astrophysics of Galaxies +1411.3573 Lattice +1411.3574 Rings and Algebras +1411.3582 Functional Analysis +1411.3584 Phenomenology +1411.3586 Phenomenology +1411.3591 +1411.3595 Analysis of PDEs +1411.3597 Information Theory +1411.3600 Phenomenology +1411.3601 Combinatorics +1411.3602 Numerical Analysis +1411.3604 Solar and Stellar Astrophysics +1411.3606 Analysis of PDEs +1411.3614 Accelerator Physics +1411.3615 Probability +1411.3622 Databases +1411.3626 Quantum Algebra +1411.3627 +1411.3629 Logic +1411.3631 Differential Geometry +1411.3632 Graphics +1411.3636 Theory +1411.3637 Applications +1411.3640 Discrete Mathematics +1411.3642 Data Analysis, Statistics and Probability +1411.3643 Information Theory +1411.3645 Cryptography and Security +1411.3646 Combinatorics +1411.3647 Group Theory +1411.3648 General Physics +1411.3650 Information Retrieval +1411.3652 Information Theory +1411.3656 Distributed, Parallel, and Cluster Computing +1411.3662 Physics and Society +1411.3663 +1411.3670 +1411.3674 Commutative Algebra +1411.3687 +1411.3690 Methodology +1411.3691 Lattice +1411.3700 Experiment +1411.3701 Differential Geometry +1411.3702 Materials Science +1411.3705 Phenomenology +1411.3706 Information Theory +1411.3711 Geometric Topology +1411.3713 Rings and Algebras +astro-ph/0010594 +physics/0607096 General Physics +0802.4307 Discrete Mathematics +0805.4180 Combinatorics +0902.3839 Differential Geometry +0907.2608 Classical Analysis and ODEs +0907.2612 Classical Analysis and ODEs +0909.1251 Symplectic Geometry +1001.0255 Quantum Algebra +1002.1606 Computational Complexity +1002.3653 Symplectic Geometry +1003.2699 Classical Analysis and ODEs +1011.1170 Computation +1011.1889 Combinatorics +1101.1875 Probability +1103.3949 Artificial Intelligence +1105.2773 Geometric Topology +1105.4698 Algebraic Geometry +1105.6275 Dynamical Systems +1107.0207 Combinatorics +1108.4135 Neural and Evolutionary Computing +1109.2864 Analysis of PDEs +1109.4117 Spectral Theory +1110.2059 General Physics +1110.6424 Algebraic Geometry +1111.3898 +1111.4003 K-Theory and Homology +1111.6641 Dynamical Systems +1112.1585 Dynamical Systems +1112.6137 Algebraic Geometry +1202.5524 Dynamical Systems +1203.3705 Formal Languages and Automata Theory +1203.5462 Representation Theory +1204.2787 Algebraic Geometry +1204.5014 Metric Geometry +1204.6644 Methodology +1205.3817 Algebraic Geometry +1205.4323 +1205.5171 Representation Theory +1205.5577 +1206.1623 Machine Learning +1207.2467 Solar and Stellar Astrophysics +1207.4832 Group Theory +1207.6081 General Finance +1207.6816 Programming Languages +1208.2248 Plasma Physics +1208.4921 K-Theory and Homology +1209.0276 Number Theory +1209.1074 Group Theory +1209.1562 Algebraic Geometry +1209.4342 Algebraic Geometry +1209.4447 Mesoscale and Nanoscale Physics +1209.6284 Number Theory +1210.0417 Differential Geometry +1210.0523 Algebraic Geometry +1210.0910 Combinatorics +1210.1279 Dynamical Systems +1210.3185 Rings and Algebras +1210.3280 +1210.5564 Algebraic Geometry +1211.4024 Theory +1211.7367 Geometric Topology +1212.2048 +1212.3411 Representation Theory +1212.3465 Number Theory +1212.6232 Methodology +1212.6587 +1301.1758 Number Theory +1301.3681 Group Theory +1302.2031 Materials Science +1302.3385 Probability +1302.6199 Phenomenology +1302.7266 +1303.0650 Chaotic Dynamics +1303.1584 Group Theory +1303.6125 Theory +1303.7130 Analysis of PDEs +1304.1225 Dynamical Systems +1304.1776 Numerical Analysis +1304.5340 Strongly Correlated Electrons +1305.2094 Quantum Gases +1305.3502 Algebraic Geometry +1305.4722 Probability +1305.5580 Data Structures and Algorithms +1306.2032 Number Theory +1306.3405 Mesoscale and Nanoscale Physics +1306.4080 Learning +1306.6289 +1307.1083 +1307.1817 Classical Analysis and ODEs +1307.3072 Materials Science +1307.3242 Materials Science +1307.4643 Statistical Finance +1307.5159 Mesoscale and Nanoscale Physics +1307.5521 Logic +1307.6352 Superconductivity +1307.6710 +1307.6872 Quantum Gases +1307.7748 Lattice +1307.7946 Algebraic Geometry +1307.8387 Geometric Topology +1308.2470 +1308.2546 Strongly Correlated Electrons +1308.2552 Mesoscale and Nanoscale Physics +1308.3190 Representation Theory +1308.3625 Phenomenology +1308.6244 Fluid Dynamics +1309.0488 Theory +1309.0674 Theory +1309.0701 Physics and Society +1309.1450 Rings and Algebras +1309.2552 Differential Geometry +1309.2886 Geometric Topology +1309.4768 +1309.5589 General Topology +1309.6238 Number Theory +1309.7353 Cosmology and Nongalactic Astrophysics +1309.7643 Biomolecules +1310.1084 Phenomenology +1310.1093 Cosmology and Nongalactic Astrophysics +1310.1148 Materials Science +1310.1890 +1310.1939 Physics and Society +1310.2126 Optics +1310.2174 +1310.2422 Phenomenology +1310.3044 Neurons and Cognition +1310.3541 Theory +1310.3547 Mesoscale and Nanoscale Physics +1310.3857 Experiment +1310.4464 Cosmology and Nongalactic Astrophysics +1310.4665 Quantum Gases +1310.5370 +1310.6392 +1310.6759 Phenomenology +1310.8285 Cosmology and Nongalactic Astrophysics +1310.8288 +1310.8416 Theory +1311.0034 Strongly Correlated Electrons +1311.0083 Soft Condensed Matter +1311.0991 Strongly Correlated Electrons +1311.1087 Phenomenology +1311.1522 Astrophysics of Galaxies +1311.1963 +1311.2544 +1311.2563 Data Structures and Algorithms +1311.2939 Theory +1311.5891 Phenomenology +1311.6347 +1311.6383 Cosmology and Nongalactic Astrophysics +1311.7226 Lattice +1312.0088 Theory +1312.0581 Statistical Mechanics +1312.0676 +1312.1363 Phenomenology +1312.1699 Cosmology and Nongalactic Astrophysics +1312.1843 Lattice +1312.2505 Phenomenology +1312.3549 Cosmology and Nongalactic Astrophysics +1312.4810 +1312.5593 Mesoscale and Nanoscale Physics +1312.5738 Cosmology and Nongalactic Astrophysics +1312.5752 Quantum Gases +1312.5778 Quantitative Methods +1312.6038 Strongly Correlated Electrons +1312.6614 +1312.6671 High Energy Astrophysical Phenomena +1312.6819 Number Theory +1312.7258 Learning +1312.7612 +1401.0576 Mesoscale and Nanoscale Physics +1401.0577 Materials Science +1401.0672 +1401.1162 Phenomenology +1401.1957 Theory +1401.2064 Soft Condensed Matter +1401.3083 Experiment +1401.3320 +1401.4028 +1401.4091 Strongly Correlated Electrons +1401.4811 Superconductivity +1401.5153 Superconductivity +1401.5240 +1401.5344 Optics +1401.5797 Cosmology and Nongalactic Astrophysics +1401.6089 Materials Science +1401.6382 Solar and Stellar Astrophysics +1401.7517 Computer Vision and Pattern Recognition +1401.7900 +1401.8118 Superconductivity +1402.1396 Algebraic Geometry +1402.1460 Statistical Mechanics +1402.2007 Rings and Algebras +1402.2141 +1402.2330 Algebraic Geometry +1402.2724 Number Theory +1402.3248 Mesoscale and Nanoscale Physics +1402.3761 +1402.4301 Plasma Physics +1402.4566 Computer Vision and Pattern Recognition +1402.5668 Optimization and Control +1402.6490 Strongly Correlated Electrons +1403.1049 +1403.1575 Other Condensed Matter +1403.1959 Differential Geometry +1403.2201 Information Theory +1403.2852 Analysis of PDEs +1403.3388 Analysis of PDEs +1403.3668 Computation and Language +1403.3756 Pricing of Securities +1403.4237 Optics +1403.4238 Distributed, Parallel, and Cluster Computing +1403.4239 +1403.4249 Astrophysics of Galaxies +1403.4260 Fluid Dynamics +1403.4261 +1403.4264 Quantitative Methods +1403.4266 Mesoscale and Nanoscale Physics +1403.4273 Instrumentation and Detectors +1403.4277 Soft Condensed Matter +1403.4278 Numerical Analysis +1403.4287 Quantum Algebra +1403.4289 Social and Information Networks +1403.4296 Methodology +1403.4300 Analysis of PDEs +1403.4301 Probability +1403.4303 Physics and Society +1403.4305 Physics and Society +1403.4310 Mesoscale and Nanoscale Physics +1403.4311 Numerical Analysis +1403.4312 Optimization and Control +1403.4317 +1403.4320 Algebraic Topology +1403.4321 Distributed, Parallel, and Cluster Computing +1403.4323 Materials Science +1403.4324 Operator Algebras +1403.4325 Algebraic Topology +1403.4328 Cosmology and Nongalactic Astrophysics +1403.4330 Optimization and Control +1403.4333 Information Theory +1403.4337 Algebraic Geometry +1403.4345 Combinatorics +1403.4346 Information Theory +1403.4347 Geometric Topology +1403.4348 Algebraic Geometry +1403.4349 Commutative Algebra +1403.4356 +1403.4357 Information Theory +1403.4362 Information Retrieval +1403.4366 Algebraic Geometry +1403.4367 Mesoscale and Nanoscale Physics +1403.4374 Information Theory +1403.4377 Probability +1403.4379 Optimization and Control +1403.4382 Spectral Theory +1403.4384 Soft Condensed Matter +1403.4387 Combinatorics +1403.4391 Instrumentation and Detectors +1403.4403 Chemical Physics +1403.4406 High Energy Astrophysical Phenomena +1403.4408 Dynamical Systems +1403.4411 Materials Science +1403.4412 Algebraic Geometry +1403.4416 Materials Science +1403.4417 +1403.4419 Dynamical Systems +1403.4423 Computers and Society +1403.4426 Spectral Theory +1403.4427 Experiment +1403.4429 Methodology +1403.4434 Numerical Analysis +1403.4435 Analysis of PDEs +1403.4436 Earth and Planetary Astrophysics +1403.4437 High Energy Astrophysical Phenomena +1403.4440 Mesoscale and Nanoscale Physics +1403.4441 Phenomenology +1403.4443 Biological Physics +1403.4445 Data Structures and Algorithms +1403.4446 Analysis of PDEs +1403.4447 Number Theory +1403.4448 Chemical Physics +1403.4449 Chemical Physics +1403.4451 Dynamical Systems +1403.4452 Information Theory +1403.4454 Phenomenology +1403.4457 Dynamical Systems +1403.4463 Rings and Algebras +1403.4468 Optics +1403.4469 Networking and Internet Architecture +1403.4470 Dynamical Systems +1403.4472 Theory +1403.4473 Computation and Language +1403.4474 Functional Analysis +1403.4479 Biomolecules +1403.4482 Social and Information Networks +1403.4484 Number Theory +1403.4486 Functional Analysis +1403.4491 Probability +1403.4496 Materials Science +1403.4501 Populations and Evolution +1403.4508 Computational Engineering, Finance, and Science +1403.4509 Materials Science +1403.4512 Applications +1403.4513 Applications +1403.4515 Phenomenology +1403.4516 Fluid Dynamics +1403.4517 Algebraic Geometry +1403.4519 Astrophysics of Galaxies +1403.4522 Classical Analysis and ODEs +1403.4523 Networking and Internet Architecture +1403.4524 Spectral Theory +1403.4535 Numerical Analysis +1403.4540 Learning +1403.4541 General Physics +1403.4547 Combinatorics +1403.4550 Instrumentation and Methods for Astrophysics +1403.4554 Hardware Architecture +1403.4557 Group Theory +1403.4560 Statistical Mechanics +1403.4562 +1403.4564 Functional Analysis +1403.4566 Analysis of PDEs +1403.4569 Functional Analysis +1403.4574 Populations and Evolution +1403.4575 Experiment +1403.4577 Functional Analysis +1403.4581 +1403.4584 +1403.4593 Probability +math/0604502 Symplectic Geometry +0902.0770 Algebraic Geometry +0905.2939 Representation Theory +0906.1610 Combinatorics +0912.4006 General Mathematics +1004.0211 General Topology +1006.3336 Number Theory +1008.2673 Functional Analysis +1011.0633 Differential Geometry +1011.2227 Group Theory +1101.3200 Group Theory +1102.0061 Dynamical Systems +1104.1692 Disordered Systems and Neural Networks +1104.2462 +1105.1600 +1105.1611 Combinatorics +1105.4969 Group Theory +1106.3608 Rings and Algebras +1109.6213 Differential Geometry +1110.3493 Number Theory +1111.5069 Statistical Finance +1112.4164 Computer Vision and Pattern Recognition +1202.0874 Number Theory +1202.2782 Classical Analysis and ODEs +1202.3312 K-Theory and Homology +1203.5384 Rings and Algebras +1204.1003 Metric Geometry +1204.6535 Discrete Mathematics +1205.0778 Rings and Algebras +1205.0904 +1206.0239 +1206.3647 Quantum Algebra +1206.4901 Analysis of PDEs +1206.5136 +1207.3538 Computer Vision and Pattern Recognition +1207.5959 Data Structures and Algorithms +1208.4544 Numerical Analysis +1208.5431 Chaotic Dynamics +1208.5606 Mesoscale and Nanoscale Physics +1208.6055 +1210.0112 Dynamical Systems +1210.2528 Rings and Algebras +1210.3121 Social and Information Networks +1210.3274 +1211.1272 Rings and Algebras +1211.3187 +1212.2014 Probability +1212.4849 Phenomenology +1212.6951 Strongly Correlated Electrons +1301.0956 +1301.1091 +1302.2138 Mesoscale and Nanoscale Physics +1303.3481 Combinatorics +1303.4338 Optimization and Control +1303.6085 Group Theory +1304.1389 Mesoscale and Nanoscale Physics +1304.5831 Dynamical Systems +1305.4882 Differential Geometry +1306.3874 Computer Vision and Pattern Recognition +1306.6391 Dynamical Systems +1307.0733 Rings and Algebras +1307.3437 Metric Geometry +1307.5233 Instrumentation and Detectors +1307.5244 Materials Science +1307.8022 Fluid Dynamics +1308.0517 Robotics +1308.0548 +1308.2369 Geometric Topology +1308.4437 Dynamical Systems +1309.3145 Methodology +1309.3406 +1309.3852 Mesoscale and Nanoscale Physics +1309.4986 Commutative Algebra +1309.5232 Probability +1309.5753 Numerical Analysis +1309.7960 Differential Geometry +1310.2434 Group Theory +1310.2697 +1310.4799 Analysis of PDEs +1310.5893 Mesoscale and Nanoscale Physics +1310.8518 Analysis of PDEs +1311.0062 +1311.0424 Soft Condensed Matter +1311.4882 Theory +1311.6219 Phenomenology +1311.7491 Mesoscale and Nanoscale Physics +1312.5679 Theory +1312.5719 Phenomenology +1312.5916 +1312.6044 Strongly Correlated Electrons +1401.4531 Analysis of PDEs +1401.5131 Quantum Gases +1401.6713 Mesoscale and Nanoscale Physics +1401.7279 Optimization and Control +1402.1121 +1402.1863 Theory +1402.2566 Optics +1402.3859 Group Theory +1402.3863 Cosmology and Nongalactic Astrophysics +1402.3967 Atmospheric and Oceanic Physics +1402.4500 Phenomenology +1402.5971 Statistical Mechanics +1402.6306 Statistical Mechanics +1402.7017 Networking and Internet Architecture +1403.1284 Quantum Gases +1403.1364 Data Structures and Algorithms +1403.1402 Numerical Analysis +1403.3857 Phenomenology +1403.3892 +1403.4177 Theory +1403.4262 Phenomenology +1403.4705 Theory +1403.5296 Combinatorics +1403.5357 Operator Algebras +1403.6079 Probability +1403.6216 Cosmology and Nongalactic Astrophysics +1403.6314 High Energy Astrophysical Phenomena +1403.6844 High Energy Astrophysical Phenomena +1403.7469 Statistical Mechanics +1403.7892 Materials Science +1403.8001 Mesoscale and Nanoscale Physics +1404.1315 Statistical Mechanics +1404.1729 Analysis of PDEs +1404.1976 Representation Theory +1404.2079 Theory +1404.2236 +1404.2803 +1404.3115 +1404.3712 Theory +1404.4536 Classical Analysis and ODEs +1404.4553 Cryptography and Security +1404.4941 Quantum Algebra +1404.6063 +1404.6365 Category Theory +1404.6439 Strongly Correlated Electrons +1404.6962 Formal Languages and Automata Theory +1404.7277 Disordered Systems and Neural Networks +1404.7768 Experiment +1405.2675 Mesoscale and Nanoscale Physics +1405.4077 Lattice +1405.4515 Mesoscale and Nanoscale Physics +1405.5592 +1405.6473 Optics +1405.6714 Theory +1405.6920 Numerical Analysis +1406.1254 Analysis of PDEs +1406.1446 Quantitative Methods +1406.1646 Number Theory +1406.1667 Fluid Dynamics +1406.1691 Neural and Evolutionary Computing +1406.1734 Molecular Networks +1406.3743 Mesoscale and Nanoscale Physics +1406.5646 Mathematical Finance +1406.6129 Solar and Stellar Astrophysics +1406.6303 +1406.7080 Soft Condensed Matter +1406.7113 Strongly Correlated Electrons +1406.7115 Economics +1407.0593 Mesoscale and Nanoscale Physics +1407.0994 Strongly Correlated Electrons +1407.2069 Quantum Gases +1407.2348 Optimization and Control +1407.3269 Artificial Intelligence +1407.3605 Materials Science +1407.4225 Cryptography and Security +1407.4479 Number Theory +1407.4498 Data Structures and Algorithms +1407.4809 Strongly Correlated Electrons +1407.5722 Superconductivity +1407.5728 Phenomenology +1407.7133 Social and Information Networks +1407.7309 Phenomenology +1407.7395 Instrumentation and Detectors +1407.7943 +1407.8009 Probability +1408.0100 Materials Science +1408.0341 Materials Science +1408.1161 Phenomenology +1408.1728 Statistical Finance +1408.2231 Solar and Stellar Astrophysics +1408.2394 Optics +1408.2653 Numerical Analysis +1408.2747 History and Overview +1408.3034 History and Overview +1408.3035 History and Overview +1408.3421 Genomics +1408.3650 Trading and Market Microstructure +1408.4440 Digital Libraries +1408.4497 Combinatorics +1408.4583 Functional Analysis +1408.4632 Theory +1408.4924 Representation Theory +1408.5126 +1408.5268 Classical Analysis and ODEs +1408.5477 Probability +1408.5523 Differential Geometry +1408.5540 K-Theory and Homology +1408.5571 Social and Information Networks +1408.5945 Cryptography and Security +1408.6880 Statistical Mechanics +1409.0002 General Finance +1409.0003 General Finance +1409.0010 +1409.0015 Cosmology and Nongalactic Astrophysics +1409.0033 Accelerator Physics +1409.0035 Data Structures and Algorithms +1409.0036 Accelerator Physics +1409.0039 Accelerator Physics +1409.0043 Accelerator Physics +1409.0047 Accelerator Physics +1409.0052 Human-Computer Interaction +1409.0054 Mesoscale and Nanoscale Physics +1409.0055 Statistics Theory +1409.0056 Instrumentation and Methods for Astrophysics +1409.0060 Cryptography and Security +1409.0061 Algebraic Geometry +1409.0063 Combinatorics +1409.0064 Number Theory +1409.0065 Cryptography and Security +1409.0069 Artificial Intelligence +1409.0071 Instrumentation and Detectors +1409.0077 Instrumentation and Detectors +1409.0081 Discrete Mathematics +1409.0083 Computer Vision and Pattern Recognition +1409.0084 Computer Vision and Pattern Recognition +1409.0085 Distributed, Parallel, and Cluster Computing +1409.0087 Disordered Systems and Neural Networks +1409.0089 Cryptography and Security +1409.0090 Social and Information Networks +1409.0094 Statistical Mechanics +1409.0095 Optics +1409.0096 Functional Analysis +1409.0097 Dynamical Systems +1409.0099 Functional Analysis +1409.0104 Information Retrieval +1409.0107 Learning +1409.0108 +1409.0109 +1409.0111 Numerical Analysis +1409.0114 Combinatorics +1409.0115 Materials Science +1409.0117 Sound +1409.0119 Group Theory +1409.0120 Geometric Topology +1409.0122 Probability +1409.0123 Superconductivity +1409.0125 Group Theory +1409.0126 Probability +1409.0127 Algebraic Geometry +1409.0128 Human-Computer Interaction +1409.0134 Experiment +1409.0135 Mesoscale and Nanoscale Physics +1409.0140 Analysis of PDEs +1409.0145 Mesoscale and Nanoscale Physics +1409.0153 Systems and Control +1409.0154 Differential Geometry +1409.0158 Computers and Society +1409.0164 Quantum Gases +1409.0165 Functional Analysis +1409.0171 Neurons and Cognition +1409.0175 Quantum Algebra +1409.0185 Optics +1409.0186 Optics +1409.0191 +1409.0199 Classical Physics +1409.0200 Algebraic Topology +1409.0203 Sound +1409.0204 Geophysics +1409.0206 Systems and Control +1409.0208 Earth and Planetary Astrophysics +1409.0209 Accelerator Physics +1409.0212 Numerical Analysis +1409.0222 Logic +1409.0224 Logic +1409.0231 Number Theory +1409.0236 +1409.0240 Materials Science +1409.0242 Networking and Internet Architecture +1409.0243 Biomolecules +1409.0245 +1409.0246 +1409.0247 +1409.0248 Metric Geometry +1409.0249 +1409.0250 History and Overview +1409.0251 Experiment +1409.0260 +1409.0266 Logic in Computer Science +1409.0267 Computers and Society +1409.0271 +1409.0275 Dynamical Systems +1409.0280 Neural and Evolutionary Computing +1409.0286 Information Theory +1409.0288 Experiment +1409.0292 Statistics Theory +1409.0295 Functional Analysis +1409.0296 Computers and Society +1409.0300 Mesoscale and Nanoscale Physics +1409.0302 Multiagent Systems +1409.0304 Fluid Dynamics +1409.0308 Social and Information Networks +1409.0318 Experiment +1409.0319 +1409.0324 Geometric Topology +1409.0328 Soft Condensed Matter +1409.0332 Quantum Algebra +1409.0333 Plasma Physics +1409.0334 Neural and Evolutionary Computing +1409.0338 Representation Theory +1409.0340 Plasma Physics +1409.0343 Experiment +1409.0347 Computer Vision and Pattern Recognition +1409.0349 Numerical Analysis +1409.0351 Instrumentation and Methods for Astrophysics +1409.0352 Number Theory +1409.0353 Experiment +1409.0364 Analysis of PDEs +1409.0366 Superconductivity +1409.0368 Differential Geometry +1409.0373 Biological Physics +1409.0374 Biological Physics +1409.0376 Probability +1409.0377 Solar and Stellar Astrophysics +1409.0379 Functional Analysis +1409.0381 Symplectic Geometry +1409.0382 Algebraic Geometry +1409.0384 Software Engineering +1409.0385 Software Engineering +1409.0386 +1409.0387 Optics +1409.0389 Combinatorics +1409.0394 Software Engineering +1409.0397 Phenomenology +1409.0400 Software Engineering +1409.0402 Software Engineering +1409.0403 Plasma Physics +1409.0405 Fluid Dynamics +1409.0409 Phenomenology +1409.0411 Instrumentation and Detectors +1409.0412 Analysis of PDEs +1409.0413 Robotics +1409.0415 Software Engineering +1409.0416 Software Engineering +1409.0419 Functional Analysis +1409.0423 Atmospheric and Oceanic Physics +1409.0424 Functional Analysis +1409.0427 High Energy Astrophysical Phenomena +1409.0429 +1409.0434 Experiment +1409.0436 Discrete Mathematics +1409.0437 +1409.0441 Commutative Algebra +1409.0442 Commutative Algebra +1409.0444 Phenomenology +1409.0446 Number Theory +1409.0453 Commutative Algebra +1409.0458 Solar and Stellar Astrophysics +1409.0461 Computational Geometry +1409.0465 Solar and Stellar Astrophysics +1409.0467 Commutative Algebra +1409.0470 Adaptation and Self-Organizing Systems +1409.0472 Cryptography and Security +1409.0477 Instrumentation and Methods for Astrophysics +1409.0482 Number Theory +1409.0483 Number Theory +1409.0488 Number Theory +1409.0491 Information Retrieval +1409.0496 Logic +1409.0499 Computational Geometry +1409.0500 Phenomenology +1409.0502 Geometric Topology +1409.0503 Applications +1409.0509 Number Theory +1409.0511 Phenomenology +1409.0515 Classical Analysis and ODEs +1409.0517 Social and Information Networks +1409.0520 Strongly Correlated Electrons +1409.0521 Analysis of PDEs +1409.0523 Instrumentation and Detectors +cond-mat/9212021 +math/0609074 Differential Geometry +0712.2481 +0901.3600 Dynamical Systems +0901.3604 Dynamical Systems +0901.3605 Dynamical Systems +0901.3606 Dynamical Systems +0906.0609 Dynamical Systems +0907.0775 Disordered Systems and Neural Networks +0908.2031 +0910.1422 +0910.1956 Dynamical Systems +1006.5580 Functional Analysis +1008.1084 Group Theory +1008.1108 Computational Finance +1008.3548 Dynamical Systems +1008.3549 Dynamical Systems +1008.4844 Statistical Mechanics +1010.2220 Dynamical Systems +1010.6206 Number Theory +1012.0800 Combinatorics +1105.4677 Dynamical Systems +1105.5296 Functional Analysis +1108.2181 Probability +1108.3712 Superconductivity +1108.5436 Theory +1109.3745 Pattern Formation and Solitons +1109.4204 Statistics Theory +1109.6169 Classical Analysis and ODEs +1110.4597 +1112.2370 Dynamical Systems +1203.0686 Classical Analysis and ODEs +1204.2115 Materials Science +1204.4800 Strongly Correlated Electrons +1204.6475 +1205.0112 Superconductivity +1205.5692 Materials Science +1206.2599 Physics and Society +1207.1652 +1207.2204 Algebraic Topology +1207.4507 Mesoscale and Nanoscale Physics +1207.5523 +1208.0701 Numerical Analysis +1208.1002 Dynamical Systems +1208.4527 General Mathematics +1209.1790 Optimization and Control +1210.0105 Other Condensed Matter +1210.0732 Applications +1211.4274 Classical Analysis and ODEs +1211.4387 Number Theory +1211.4505 Dynamical Systems +1211.5797 Atomic Physics +1212.1128 General Physics +1212.1873 Classical Analysis and ODEs +1212.4401 Dynamical Systems +1212.5351 Functional Analysis +1212.6270 Theory +1301.1380 Fluid Dynamics +1301.1670 +1301.1961 +1301.5017 General Mathematics +1301.5219 Lattice +1302.1361 Statistical Mechanics +1302.1589 Algebraic Geometry +1302.4270 Combinatorics +1302.6078 Materials Science +1302.6304 Mesoscale and Nanoscale Physics +1303.6208 +1304.3348 K-Theory and Homology +1304.3571 Soft Condensed Matter +1304.4794 +1304.5220 Information Theory +1304.6315 Materials Science +1304.7712 Numerical Analysis +1305.1562 +1305.4341 Soft Condensed Matter +1305.6018 Number Theory +1305.6256 Digital Libraries +1306.1770 Representation Theory +1306.2122 +1306.2672 Optimization and Control +1306.5348 Group Theory +1306.6896 Algebraic Topology +1307.0872 Probability +1307.3299 Phenomenology +1307.5116 Geometric Topology +1307.7165 Theory +1307.8447 Rings and Algebras +1308.2022 +1308.4947 Physics Education +1308.6606 Number Theory +1309.0572 Representation Theory +1309.4001 Soft Condensed Matter +1309.4342 Combinatorics +1309.4399 +1309.5868 Optimization and Control +1309.7068 Artificial Intelligence +1310.0586 Systems and Control +1310.3099 Learning +1310.4972 Solar and Stellar Astrophysics +1311.0803 Computer Science and Game Theory +1311.2428 Materials Science +1311.2749 Discrete Mathematics +1311.3110 Other Condensed Matter +1311.4149 +1311.5408 Theory +1311.6166 Representation Theory +1311.7063 Combinatorics +1311.7217 Statistics Theory +1312.5263 +1312.5728 Strongly Correlated Electrons +1401.0063 Combinatorics +1401.0268 Quantum Gases +1401.2606 Soft Condensed Matter +1401.2959 +1401.3629 +1401.4318 +1401.4564 Complex Variables +1401.5597 Dynamical Systems +1401.5755 Methodology +1401.5948 Phenomenology +1401.6110 Soft Condensed Matter +1401.6656 Number Theory +1401.6841 K-Theory and Homology +1401.7043 Discrete Mathematics +1401.7742 Mesoscale and Nanoscale Physics +1401.8267 Quantum Gases +1402.3014 Applications +1402.3665 Quantum Algebra +1402.4103 Mesoscale and Nanoscale Physics +1402.4262 Soft Condensed Matter +1402.4491 Phenomenology +1402.4684 +1402.4906 Mesoscale and Nanoscale Physics +1403.0083 +1403.2088 Phenomenology +1403.2341 Functional Analysis +1403.2964 Quantum Gases +1403.6887 Optimization and Control +1403.7214 Strongly Correlated Electrons +1403.7475 Mesoscale and Nanoscale Physics +1404.0214 Differential Geometry +1404.0281 Data Structures and Algorithms +1404.0378 High Energy Astrophysical Phenomena +1404.1089 Optimization and Control +1404.1484 Information Theory +1404.1628 Algebraic Geometry +1404.1698 Combinatorics +1404.1840 High Energy Astrophysical Phenomena +1404.1890 Computation and Language +1404.2580 Disordered Systems and Neural Networks +1404.3032 Phenomenology +1404.3314 Probability +1404.3365 +1404.3438 Information Theory +1404.3673 Strongly Correlated Electrons +1404.3797 Phenomenology +1404.3867 Computational Physics +1404.4264 Materials Science +1404.4742 Representation Theory +1404.6168 K-Theory and Homology +1404.6431 Statistical Mechanics +1404.6759 Probability +1404.7364 General Finance +1405.0457 +1405.1901 Phenomenology +1405.2154 Quantum Gases +1405.2252 Classical Physics +1405.2347 Materials Science +1405.2802 Strongly Correlated Electrons +1405.3084 Materials Science +1405.3234 +1405.3535 Analysis of PDEs +1405.3762 Strongly Correlated Electrons +1405.4659 Information Theory +1405.4678 Materials Science +1405.4834 Mesoscale and Nanoscale Physics +1405.5211 Optics +1405.6310 Group Theory +1405.6587 Combinatorics +1405.6810 Mesoscale and Nanoscale Physics +1405.6990 Statistical Finance +1406.1154 Cryptography and Security +1406.1711 Mesoscale and Nanoscale Physics +1406.1825 Solar and Stellar Astrophysics +1406.1911 Statistical Mechanics +1406.2335 Theory +1406.2387 Mesoscale and Nanoscale Physics +1406.3506 Artificial Intelligence +1406.3918 +1406.4485 Materials Science +1406.4659 Mesoscale and Nanoscale Physics +1406.4689 Information Theory +1406.4851 Physics and Society +1406.5889 Mesoscale and Nanoscale Physics +1406.6164 Numerical Analysis +1406.6638 +1406.6773 Computer Science and Game Theory +1406.7036 Information Theory +1406.7375 +1406.7439 Statistical Mechanics +1406.7690 Experiment +1407.0046 Phenomenology +1407.0117 Superconductivity +1407.0575 Mesoscale and Nanoscale Physics +1407.1244 Mesoscale and Nanoscale Physics +1407.1610 Computer Vision and Pattern Recognition +1407.1973 Atomic Physics +1407.2219 Methodology +1407.2620 Physics Education +1407.2913 Phenomenology +1407.2914 Superconductivity +1407.4065 Strongly Correlated Electrons +1407.5779 +1407.6723 Optimization and Control +1407.6883 Statistical Mechanics +1407.6896 Astrophysics of Galaxies +1407.8491 Algebraic Geometry +1408.0201 Analysis of PDEs +1408.1590 Mesoscale and Nanoscale Physics +1408.3283 Chemical Physics +1408.3671 Combinatorics +1408.3809 Computer Vision and Pattern Recognition +1408.3810 Computer Vision and Pattern Recognition +1408.4015 Instrumentation and Detectors +1408.4055 Theory +1408.4588 +1409.0951 Number Theory +1409.1176 Spectral Theory +1409.2040 Materials Science +1409.2724 Fluid Dynamics +1409.3129 High Energy Astrophysical Phenomena +1409.3273 Mesoscale and Nanoscale Physics +1409.4607 Populations and Evolution +1409.4976 Cell Behavior +1409.5242 Chemical Physics +1409.5313 Distributed, Parallel, and Cluster Computing +1409.5356 Mesoscale and Nanoscale Physics +1409.5701 Representation Theory +1409.5715 Distributed, Parallel, and Cluster Computing +1409.5769 Lattice +1409.5773 +1409.5787 +1409.5788 Biomolecules +1409.5789 +1409.5801 Pricing of Securities +1409.5802 Statistical Mechanics +1409.5803 Algebraic Geometry +1409.5808 Accelerator Physics +1409.5809 Accelerator Physics +1409.5811 +1409.5812 Accelerator Physics +1409.5814 K-Theory and Homology +1409.5816 Computational Geometry +1409.5817 +1409.5818 Accelerator Physics +1409.5821 Accelerator Physics +1409.5823 +1409.5827 Computation +1409.5829 Materials Science +1409.5830 Applications +1409.5834 Learning +1409.5835 Optics +1409.5839 Other Computer Science +1409.5841 Computers and Society +1409.5842 Algebraic Geometry +1409.5843 Analysis of PDEs +1409.5847 Classical Analysis and ODEs +1409.5848 Representation Theory +1409.5849 Materials Science +1409.5850 Strongly Correlated Electrons +1409.5857 Chemical Physics +1409.5859 Strongly Correlated Electrons +1409.5860 Classical Physics +1409.5861 Probability +1409.5862 Functional Analysis +1409.5863 Data Analysis, Statistics and Probability +1409.5865 Logic in Computer Science +1409.5867 Rings and Algebras +1409.5868 Algebraic Geometry +1409.5872 Software Engineering +1409.5875 Materials Science +1409.5877 Analysis of PDEs +1409.5878 Algebraic Geometry +1409.5882 Combinatorics +1409.5887 Computers and Society +1409.5888 Classical Analysis and ODEs +1409.5889 Quantum Gases +1409.5891 Optimization and Control +1409.5893 Numerical Analysis +1409.5898 Functional Analysis +1409.5901 Algebraic Geometry +1409.5902 Numerical Analysis +1409.5904 Differential Geometry +1409.5909 Formal Languages and Automata Theory +1409.5910 Statistical Mechanics +1409.5912 Materials Science +1409.5913 Information Theory +1409.5919 Analysis of PDEs +1409.5920 Rings and Algebras +1409.5922 Discrete Mathematics +1409.5923 Probability +1409.5926 Theory +1409.5927 Geophysics +1409.5932 Information Theory +1409.5934 Category Theory +1409.5935 Physics Education +1409.5936 Portfolio Management +1409.5942 Cryptography and Security +1409.5945 Combinatorics +1409.5948 Probability +1409.5951 Rings and Algebras +1409.5953 Group Theory +1409.5954 Information Theory +1409.5955 Numerical Analysis +1409.5964 Number Theory +1409.5965 +1409.5968 Complex Variables +1409.5971 Strongly Correlated Electrons +1409.5972 Chaotic Dynamics +1409.5973 Algebraic Topology +1409.5974 Chaotic Dynamics +1409.5976 High Energy Astrophysical Phenomena +1409.5977 Complex Variables +1409.5979 Phenomenology +1409.5980 Social and Information Networks +1409.5982 Theory +1409.5983 Theory +1409.5984 Theory +1409.5986 Optimization and Control +1409.5987 Computer Science and Game Theory +1409.5989 Representation Theory +1409.5991 +1409.5993 Robotics +1409.5999 Combinatorics +1409.6002 Discrete Mathematics +1409.6005 K-Theory and Homology +1409.6010 Fluid Dynamics +1409.6012 Algebraic Geometry +1409.6016 Experiment +1409.6019 Methodology +1409.6023 Neural and Evolutionary Computing +1409.6024 Combinatorics +1409.6025 Materials Science +1409.6026 Combinatorics +1409.6027 Mathematical Finance +1409.6029 Group Theory +1409.6037 Optimization and Control +1409.6042 Mathematical Finance +1409.6043 Materials Science +1409.6045 Machine Learning +1409.6047 Fluid Dynamics +1409.6051 Algebraic Topology +1409.6054 Probability +1409.6057 Statistical Mechanics +1409.6058 Mesoscale and Nanoscale Physics +1409.6059 Information Theory +1409.6061 Symplectic Geometry +1409.6065 Combinatorics +1409.6066 +1409.6069 Numerical Analysis +1409.6070 Computer Vision and Pattern Recognition +1409.6072 Commutative Algebra +1409.6076 Computer Science and Game Theory +1409.6082 Spectral Theory +1409.6087 Combinatorics +1409.6090 Algebraic Geometry +1409.6091 +1409.6093 Pricing of Securities +1409.6095 Analysis of PDEs +1409.6097 Algebraic Geometry +1409.6099 Digital Libraries +1409.6103 Optics +1409.6109 Numerical Analysis +1409.6111 Optimization and Control +1409.6113 Analysis of PDEs +1409.6118 Biological Physics +1409.6123 Combinatorics +1409.6134 Dynamical Systems +1409.6138 High Energy Astrophysical Phenomena +1409.6140 Mesoscale and Nanoscale Physics +1409.6142 Formal Languages and Automata Theory +1409.6144 Discrete Mathematics +1409.6152 Plasma Physics +1409.6157 Number Theory +1409.6159 Number Theory +1409.6162 Phenomenology +1409.6164 Accelerator Physics +1409.6165 Combinatorics +1409.6166 Quantum Gases +1409.6168 Probability +1409.6170 Mesoscale and Nanoscale Physics +1409.6174 Astrophysics of Galaxies +1409.6176 Metric Geometry +1409.6179 Machine Learning +1409.6185 Superconductivity +1409.6194 Combinatorics +1409.6196 Materials Science +1409.6197 Computers and Society +1409.6199 Data Structures and Algorithms +1409.6201 Classical Analysis and ODEs +1409.6205 +1409.6208 Logic +1409.6209 Genomics +1409.6216 Cell Behavior +1409.6219 Methodology +1409.6220 Analysis of PDEs +1409.6227 Combinatorics +1409.6229 +1409.6230 Statistics Theory +1409.6231 Robotics +1409.6234 Robotics +1409.6235 Computer Vision and Pattern Recognition +1409.6236 Geometric Topology +1409.6238 General Physics +1409.6240 Probability +1409.6241 Social and Information Networks +1409.6243 Number Theory +1409.6245 Numerical Analysis +1409.6250 Phenomenology +1409.6253 Logic in Computer Science +1409.6255 Probability +1409.6258 Algebraic Geometry +1409.6261 History and Overview +1409.6264 Number Theory +1409.6266 Number Theory +1409.6269 Combinatorics +1409.6270 +1409.6274 Number Theory +1409.6275 Algebraic Geometry +1409.6276 Statistics Theory +1409.6281 Networking and Internet Architecture +1409.6285 Mesoscale and Nanoscale Physics +1409.6288 Databases +1409.6290 +cond-mat/9906448 Superconductivity +cond-mat/9908272 Superconductivity +math/0601432 Dynamical Systems +math/0601437 Dynamical Systems +math/0605386 Dynamical Systems +math/0608310 Dynamical Systems +math/0703086 Algebraic Geometry +math/0703206 Dynamical Systems +0704.3649 Methodology +1002.3820 High Energy Astrophysical Phenomena +1009.0782 +1012.0033 Chemical Physics +1102.4096 +1104.3866 +1104.4883 Chemical Physics +1105.2378 Probability +1109.4815 Chemical Physics +1109.4816 Chemical Physics +1110.2558 Physics and Society +1111.5523 +1112.2310 Discrete Mathematics +1202.1916 +1205.1256 +1205.7057 Algebraic Topology +1206.1881 Number Theory +1206.3255 Programming Languages +1206.3981 Number Theory +1207.0067 +1208.5003 Learning +1209.4781 +1209.5289 +1210.1148 +1210.6933 Number Theory +1211.5118 Rings and Algebras +1212.3589 Combinatorics +1212.4454 +1301.1074 Symplectic Geometry +1301.4485 Algebraic Topology +1301.4653 Representation Theory +1302.4311 Dynamical Systems +1302.5289 Number Theory +1302.6435 Quantum Algebra +1303.0001 Networking and Internet Architecture +1303.1860 Commutative Algebra +1303.2134 Mesoscale and Nanoscale Physics +1303.3926 Strongly Correlated Electrons +1304.6781 Geometric Topology +1304.7344 Information Theory +1305.0504 +1305.4459 Chemical Physics +1305.6691 Functional Analysis +1305.6789 Information Theory +1306.1155 Functional Analysis +1306.4197 Quantum Algebra +1307.2268 Rings and Algebras +1307.2278 Physics and Society +1307.5087 +1307.7244 Statistical Finance +1307.8363 Superconductivity +1308.1345 Symplectic Geometry +1308.1732 Number Theory +1308.3234 Theory +1308.3870 Soft Condensed Matter +1308.5808 Materials Science +1309.1005 Other Condensed Matter +1309.3689 Computers and Society +1309.4077 High Energy Astrophysical Phenomena +1309.5396 Information Theory +1309.7681 Theory +1310.0129 +1310.1030 Statistics Theory +1310.1662 Number Theory +1310.1933 +1310.2920 Theory +1310.4443 Phenomenology +1310.6834 +1310.7862 Phenomenology +1310.8528 Differential Geometry +1311.0249 +1311.0774 Phenomenology +1311.1138 Statistics Theory +1311.4772 Mesoscale and Nanoscale Physics +1311.5460 Materials Science +1311.5770 +1311.6524 Cosmology and Nongalactic Astrophysics +1311.7384 Statistical Mechanics +1311.7684 Strongly Correlated Electrons +1312.0408 Solar and Stellar Astrophysics +1312.3513 Statistical Mechanics +1312.3870 Statistics Theory +1312.4671 +1312.5256 Cosmology and Nongalactic Astrophysics +1312.5683 Phenomenology +1312.6074 Cosmology and Nongalactic Astrophysics +1312.6141 Geometric Topology +1312.6430 Computer Vision and Pattern Recognition +1312.6646 Cosmology and Nongalactic Astrophysics +1312.6661 Data Analysis, Statistics and Probability +1312.7397 Experiment +1312.7839 Other Computer Science +1401.1012 +1401.1297 Analysis of PDEs +1401.1507 Phenomenology +1401.2561 +1401.2640 Geophysics +1401.2785 Cosmology and Nongalactic Astrophysics +1401.4049 Classical Analysis and ODEs +1401.4895 +1401.5283 Phenomenology +1401.5387 +1401.5396 Mesoscale and Nanoscale Physics +1401.5403 Theory +1401.6138 +1401.7038 +1401.7831 Optics +1402.0016 Theory +1402.0702 Chemical Physics +1402.0986 Mesoscale and Nanoscale Physics +1402.4220 Operator Algebras +1402.4833 Earth and Planetary Astrophysics +1402.4878 Mesoscale and Nanoscale Physics +1402.5865 Analysis of PDEs +1402.6016 Information Theory +1402.6139 Chemical Physics +1402.6594 Cosmology and Nongalactic Astrophysics +1402.6657 Strongly Correlated Electrons +1402.7241 +1402.7358 Phenomenology +1403.0279 Mesoscale and Nanoscale Physics +1403.1264 Phenomenology +1403.1859 Theory +1403.2437 +1403.3311 Mesoscale and Nanoscale Physics +1403.3410 Soft Condensed Matter +1403.3453 Statistical Mechanics +1403.3485 +1403.4061 Atomic Physics +1403.4106 Physics and Society +1403.4401 Theory +1403.4855 +1403.4942 Theory +1403.5567 Cosmology and Nongalactic Astrophysics +1403.6068 Cosmology and Nongalactic Astrophysics +1403.6073 Mesoscale and Nanoscale Physics +1403.6136 Phenomenology +1403.6457 Theory +1403.6647 +1403.6947 Phenomenology +1403.7696 Cosmology and Nongalactic Astrophysics +1403.8066 +1404.0294 Accelerator Physics +1404.0687 +1404.0805 +1404.1010 Fluid Dynamics +1404.1028 Functional Analysis +1404.1131 Strongly Correlated Electrons +1404.1264 Phenomenology +1404.1266 Experiment +1404.1888 Phenomenology +1404.2368 Lattice +1404.2567 Theory +1404.2629 Commutative Algebra +1404.2640 Phenomenology +1404.2792 Optics +1404.2924 Phenomenology +1404.3517 Mesoscale and Nanoscale Physics +1404.3833 Phenomenology +1404.5437 Mesoscale and Nanoscale Physics +1404.6541 +1405.1121 High Energy Astrophysical Phenomena +1405.1600 Phenomenology +1405.2097 Cosmology and Nongalactic Astrophysics +1405.2557 Strongly Correlated Electrons +1405.2759 Instrumentation and Detectors +1405.3055 Phenomenology +1405.3325 +1405.3830 Cosmology and Nongalactic Astrophysics +1405.4480 Physics and Society +1405.5094 +1405.6589 +1405.7651 Phenomenology +1406.0649 Phenomenology +1406.0662 +1406.1536 Strongly Correlated Electrons +1406.3610 +1406.3965 Instrumentation and Detectors +1406.4094 +1406.4640 Superconductivity +1406.4712 Data Structures and Algorithms +1406.7707 +1407.0089 Theory +1407.0420 Computer Science and Game Theory +1407.0665 Combinatorics +1407.0776 Number Theory +1407.0778 Number Theory +1407.2290 Theory +1407.2438 Analysis of PDEs +1407.2603 History and Philosophy of Physics +1407.2725 Probability +1407.3226 Soft Condensed Matter +1407.3737 General Physics +1407.3782 Classical Physics +1407.3784 Representation Theory +1407.3802 Phenomenology +1407.3809 Neural and Evolutionary Computing +1407.3810 Rings and Algebras +1407.3812 Quantitative Methods +1407.3816 Phenomenology +1407.3817 Combinatorics +1407.3820 Cryptography and Security +1407.3822 General Physics +1407.3825 +1407.3832 Artificial Intelligence +1407.3835 Rings and Algebras +1407.3836 Artificial Intelligence +1407.3843 Strongly Correlated Electrons +1407.3844 Theory +1407.3845 Programming Languages +1407.3847 Atomic Physics +1407.3850 Databases +1407.3851 Numerical Analysis +1407.3854 Theory +1407.3857 Data Structures and Algorithms +1407.3858 Probability +1407.3862 +1407.3863 +1407.3864 Plasma Physics +1407.3865 Functional Analysis +1407.3866 Information Theory +1407.3867 Computer Vision and Pattern Recognition +1407.3874 Superconductivity +1407.3879 Distributed, Parallel, and Cluster Computing +1407.3880 Populations and Evolution +1407.3881 Distributed, Parallel, and Cluster Computing +1407.3886 +1407.3890 Systems and Control +1407.3891 Software Engineering +1407.3892 Programming Languages +1407.3893 +1407.3896 Artificial Intelligence +1407.3904 +1407.3905 Phenomenology +1407.3910 Optimization and Control +1407.3912 Applications +1407.3917 Soft Condensed Matter +1407.3922 Number Theory +1407.3927 Optimization and Control +1407.3929 Superconductivity +1407.3930 Networking and Internet Architecture +1407.3934 +1407.3939 Statistics Theory +1407.3940 Probability +1407.3943 Probability +1407.3945 Algebraic Geometry +1407.3948 Human-Computer Interaction +1407.3950 Human-Computer Interaction +1407.3953 Combinatorics +1407.3959 +1407.3961 Methodology +1407.3962 Information Theory +1407.3965 +1407.3969 Computer Vision and Pattern Recognition +1407.3972 +1407.3975 Information Theory +1407.3985 Analysis of PDEs +1407.3986 Computer Vision and Pattern Recognition +1407.3987 Cryptography and Security +1407.3988 Dynamical Systems +1407.3994 Category Theory +1407.3995 Information Theory +1407.3998 Biomolecules +1407.4003 Populations and Evolution +1407.4006 +1407.4007 Probability +1407.4008 Mesoscale and Nanoscale Physics +1407.4012 Optics +1407.4014 Dynamical Systems +1407.4015 Materials Science +1407.4016 Soft Condensed Matter +1407.4018 Functional Analysis +1407.4024 Metric Geometry +1407.4026 Mesoscale and Nanoscale Physics +1407.4032 Logic in Computer Science +1407.4045 Phenomenology +1407.4047 Phenomenology +1407.4050 Logic +1407.4052 Plasma Physics +1407.4056 Networking and Internet Architecture +1407.4057 Algebraic Geometry +1407.4060 Representation Theory +1407.4062 Social and Information Networks +1407.4069 Number Theory +1407.4070 Learning +1407.4071 Biomolecules +1407.4072 Chaotic Dynamics +1407.4073 Combinatorics +1407.4075 Programming Languages +1407.4076 Optics +1407.4077 Rings and Algebras +1407.4078 Quantum Algebra +1407.4079 Cosmology and Nongalactic Astrophysics +1407.4080 Probability +1407.4082 Algebraic Geometry +1407.4085 Commutative Algebra +1407.4086 Classical Analysis and ODEs +1407.4088 Computers and Society +1407.4096 Solar and Stellar Astrophysics +1407.4097 Probability +1407.4099 Cosmology and Nongalactic Astrophysics +1407.4105 History and Overview +physics/0701294 Computational Physics +0909.2908 +1001.2948 +1003.4406 Probability +1103.0264 Operator Algebras +1106.2605 Differential Geometry +1107.2094 Operator Algebras +1109.5996 Representation Theory +1111.4641 Algebraic Geometry +1111.5700 Classical Analysis and ODEs +1202.2587 Probability +1202.5020 Operator Algebras +1205.2784 Representation Theory +1207.0975 Functional Analysis +1207.3269 Learning +1207.5570 Probability +1207.5948 Number Theory +1208.3885 Functional Analysis +1208.4570 Analysis of PDEs +1210.1412 Methodology +1210.1488 Materials Science +1210.2371 Probability +1210.5775 Probability +1210.6951 Metric Geometry +1212.2240 +1212.5862 General Physics +1301.2934 Metric Geometry +1301.7528 Logic +1302.4075 Algebraic Topology +1303.3325 Mesoscale and Nanoscale Physics +1303.4046 Quantum Algebra +1303.5063 Instrumentation and Methods for Astrophysics +1303.5064 Cosmology and Nongalactic Astrophysics +1303.5067 Cosmology and Nongalactic Astrophysics +1303.5069 Cosmology and Nongalactic Astrophysics +1303.5072 Cosmology and Nongalactic Astrophysics +1303.5073 Astrophysics of Galaxies +1303.5074 Cosmology and Nongalactic Astrophysics +1303.5075 Cosmology and Nongalactic Astrophysics +1303.5078 Cosmology and Nongalactic Astrophysics +1303.5084 Cosmology and Nongalactic Astrophysics +1303.6579 Superconductivity +1303.7274 Physics and Society +1304.6135 Classical Analysis and ODEs +1305.0141 Logic in Computer Science +1305.2520 Number Theory +1306.3884 Artificial Intelligence +1306.4925 Artificial Intelligence +1307.1017 Lattice +1307.1640 Number Theory +1307.2199 Theory +1307.5023 Dynamical Systems +1308.1674 Phenomenology +1309.0339 Programming Languages +1309.0772 Operator Algebras +1309.1539 Computer Vision and Pattern Recognition +1309.4954 Quantum Gases +1310.0895 Algebraic Geometry +1310.4289 Number Theory +1310.5923 Instrumentation and Detectors +1310.6313 Geometric Topology +1310.6580 Superconductivity +1310.6837 Instrumentation and Detectors +1311.0173 Optimization and Control +1311.1792 Dynamical Systems +1311.2266 +1311.3494 Learning +1311.5802 Logic in Computer Science +1311.6317 Algebraic Geometry +1311.6777 +1311.6842 +1311.7307 Databases +1312.0599 Phenomenology +1312.0636 +1312.0878 Materials Science +1312.1015 +1312.1820 Analysis of PDEs +1312.3438 Probability +1312.4531 Earth and Planetary Astrophysics +1312.5315 Earth and Planetary Astrophysics +1312.5513 +1312.6247 Theory +1401.0226 Soft Condensed Matter +1401.1244 Soft Condensed Matter +1401.2890 Classical Analysis and ODEs +1401.4692 Operator Algebras +1401.6540 +1401.7445 Geometric Topology +1402.0318 Mesoscale and Nanoscale Physics +1402.0594 +1402.1184 Solar and Stellar Astrophysics +1402.1294 Lattice +1402.2613 Theory +1402.3487 Materials Science +1402.4472 Superconductivity +1402.4725 Mesoscale and Nanoscale Physics +1402.5710 +1402.6298 Combinatorics +1403.0166 Analysis of PDEs +1403.1725 +1403.4149 Superconductivity +1403.5142 Artificial Intelligence +1403.5196 Methodology +1403.5995 Cosmology and Nongalactic Astrophysics +1403.6047 Theory +1403.7570 Computers and Society +1404.0236 Phenomenology +1404.0545 Formal Languages and Automata Theory +1404.1330 +1404.2031 Analysis of PDEs +1404.2249 +1404.3376 Geophysics +1404.3448 Distributed, Parallel, and Cluster Computing +1404.3936 Astrophysics of Galaxies +1404.4061 Cosmology and Nongalactic Astrophysics +1404.4133 Operator Algebras +1404.4976 Cosmology and Nongalactic Astrophysics +1404.5360 Earth and Planetary Astrophysics +1404.5405 +1404.7706 Statistical Mechanics +1405.0277 Mesoscale and Nanoscale Physics +1405.0558 Machine Learning +1405.1015 Theory +1405.1718 Phenomenology +1405.2389 Lattice +1405.3198 Soft Condensed Matter +1405.3201 Strongly Correlated Electrons +1405.3267 Social and Information Networks +1405.3589 Strongly Correlated Electrons +1405.3691 Mesoscale and Nanoscale Physics +1405.3797 High Energy Astrophysical Phenomena +1405.4192 Theory +1405.4203 Materials Science +1405.4595 Cosmology and Nongalactic Astrophysics +1405.4735 +1405.5526 Mesoscale and Nanoscale Physics +1405.5847 Subcellular Processes +1405.6097 Soft Condensed Matter +1405.6475 Optics +1405.6569 Instrumentation and Detectors +1405.7227 Applications +1406.0151 Earth and Planetary Astrophysics +1406.0324 Experiment +1406.0381 +1406.0822 +1406.0846 Statistical Mechanics +1406.0921 Superconductivity +1406.1716 Chemical Physics +1406.3322 Phenomenology +1406.4188 Theory +1406.4366 +1406.6082 Astrophysics of Galaxies +1406.7348 +1407.0030 Phenomenology +1407.0071 +1407.0327 Soft Condensed Matter +1407.0393 Cosmology and Nongalactic Astrophysics +1407.1007 Superconductivity +1407.2353 Statistical Mechanics +1407.2810 Mesoscale and Nanoscale Physics +1407.3062 Strongly Correlated Electrons +1407.3097 Theory +1407.3100 Superconductivity +1407.3118 Theory +1407.3788 Chemical Physics +1407.4719 Theory +1407.4806 Phenomenology +1407.5453 Cosmology and Nongalactic Astrophysics +1407.5683 Phenomenology +1407.5952 Phenomenology +1407.6037 Quantum Gases +1407.6643 Experiment +1407.7408 Phenomenology +1407.8107 Probability +1407.8482 Instrumentation and Methods for Astrophysics +1408.0107 +1408.0288 Phenomenology +1408.0826 Information Theory +1408.1062 Mesoscale and Nanoscale Physics +1408.1075 Phenomenology +1408.1622 +1408.1626 +1408.2482 Disordered Systems and Neural Networks +1408.2555 Chemical Physics +1408.2565 Quantum Gases +1408.3091 +1408.3140 Soft Condensed Matter +1408.3420 +1408.3446 +1408.3890 Strongly Correlated Electrons +1408.4116 Earth and Planetary Astrophysics +1408.4719 Strongly Correlated Electrons +1408.5022 Quantum Gases +1408.5570 Theory +1408.5774 Experiment +1408.6555 +1408.6690 Solar and Stellar Astrophysics +1408.6823 Combinatorics +1408.6860 Strongly Correlated Electrons +1409.1032 +1409.1258 Strongly Correlated Electrons +1409.2006 Rings and Algebras +1409.2810 Logic +1409.3974 Rings and Algebras +1409.4479 Experiment +1409.5315 Phenomenology +1409.6115 Instrumentation and Methods for Astrophysics +1409.6399 Mesoscale and Nanoscale Physics +1409.7029 Algebraic Geometry +1409.7182 Phenomenology +1410.1141 Learning +1410.1184 Machine Learning +1410.1251 Differential Geometry +1410.1646 Solar and Stellar Astrophysics +1410.1913 Analysis of PDEs +1410.2106 Astrophysics of Galaxies +1410.3443 +1410.3499 Solar and Stellar Astrophysics +1410.4349 +1410.4901 Algebraic Topology +1410.5068 Economics +1410.5482 Phenomenology +1410.5495 Earth and Planetary Astrophysics +1410.5597 Solar and Stellar Astrophysics +1410.5779 Phenomenology +1410.7080 Rings and Algebras +1410.7162 +1410.7228 Theory +1410.7251 Metric Geometry +1410.7265 Computer Vision and Pattern Recognition +1410.7315 Analysis of PDEs +1410.7355 Solar and Stellar Astrophysics +1410.7382 Computation and Language +1410.7384 Number Theory +1410.7388 Data Analysis, Statistics and Probability +1410.7397 Instrumentation and Methods for Astrophysics +1410.7410 Analysis of PDEs +1410.7414 Machine Learning +1410.7416 Geometric Topology +1410.7418 Superconductivity +1410.7419 Combinatorics +1410.7421 Lattice +1410.7423 Combinatorics +1410.7427 Analysis of PDEs +1410.7430 Strongly Correlated Electrons +1410.7437 Combinatorics +1410.7443 Lattice +1410.7446 Combinatorics +1410.7448 Dynamical Systems +1410.7451 Disordered Systems and Neural Networks +1410.7459 Number Theory +1410.7463 Analysis of PDEs +1410.7465 Theory +1410.7466 Logic in Computer Science +1410.7467 Programming Languages +1410.7469 Logic in Computer Science +1410.7470 Logic in Computer Science +1410.7471 Formal Languages and Automata Theory +1410.7472 Programming Languages +1410.7474 Optics +1410.7475 Phenomenology +1410.7477 Emerging Technologies +1410.7479 Optics +1410.7483 Analysis of PDEs +1410.7486 Analysis of PDEs +1410.7487 Soft Condensed Matter +1410.7491 Lattice +1410.7498 Mesoscale and Nanoscale Physics +1410.7501 Rings and Algebras +1410.7502 Information Theory +1410.7505 Analysis of PDEs +1410.7506 Data Structures and Algorithms +1410.7511 Materials Science +1410.7512 Strongly Correlated Electrons +1410.7516 Exactly Solvable and Integrable Systems +1410.7519 Atmospheric and Oceanic Physics +1410.7520 Analysis of PDEs +1410.7521 +1410.7522 Theory +1410.7525 General Topology +1410.7528 Information Theory +1410.7529 Mesoscale and Nanoscale Physics +1410.7530 Data Structures and Algorithms +1410.7531 +1410.7534 Data Structures and Algorithms +1410.7539 +1410.7540 Cryptography and Security +1410.7542 Pattern Formation and Solitons +1410.7549 Rings and Algebras +1410.7550 Machine Learning +1410.7551 Logic in Computer Science +1410.7554 Methodology +1410.7558 Methodology +1410.7564 Rings and Algebras +1410.7566 Methodology +1410.7568 Statistics Theory +1410.7569 Group Theory +1410.7574 +1410.7575 Complex Variables +1410.7577 +1410.7580 Computer Vision and Pattern Recognition +1410.7581 Optics +1410.7582 Distributed, Parallel, and Cluster Computing +1410.7583 Computational Complexity +1410.7587 Superconductivity +1410.7594 Solar and Stellar Astrophysics +1410.7596 Learning +1410.7601 Lattice +1410.7605 Statistics Theory +1410.7607 Soft Condensed Matter +1410.7610 Soft Condensed Matter +1410.7613 Optics +1410.7617 Numerical Analysis +1410.7624 Number Theory +1410.7628 Materials Science +1410.7634 Classical Analysis and ODEs +1410.7635 Classical Analysis and ODEs +1410.7636 Classical Analysis and ODEs +1410.7642 Molecular Networks +1410.7643 Probability +1410.7644 Phenomenology +1410.7645 Solar and Stellar Astrophysics +1410.7647 High Energy Astrophysical Phenomena +1410.7649 Algebraic Topology +1410.7652 Fluid Dynamics +1410.7654 Information Retrieval +1410.7660 Information Theory +1410.7663 +1410.7667 Number Theory +1410.7676 Combinatorics +1410.7682 Networking and Internet Architecture +1410.7691 Probability +1410.7692 Methodology +1410.7695 Popular Physics +1410.7697 Functional Analysis +1410.7699 Classical Physics +1410.7700 Theory +1410.7703 Phenomenology +1410.7705 Rings and Algebras +1410.7710 Algebraic Geometry +1410.7713 Optics +1410.7720 High Energy Astrophysical Phenomena +1410.7721 Fluid Dynamics +1410.7726 Combinatorics +1410.7730 Computer Vision and Pattern Recognition +1410.7734 Instrumentation and Detectors +1410.7741 Superconductivity +1410.7742 Group Theory +1410.7743 Cryptography and Security +1410.7744 Cryptography and Security +1410.7745 Cryptography and Security +1410.7746 Cryptography and Security +1410.7747 Cryptography and Security +1410.7748 Methodology +1410.7749 Cryptography and Security +1410.7750 Mesoscale and Nanoscale Physics +1410.7751 Cryptography and Security +1410.7752 Cryptography and Security +1410.7754 Cryptography and Security +1410.7756 Cryptography and Security +1410.7758 Digital Libraries +1410.7759 Phenomenology +1410.7762 Computer Vision and Pattern Recognition +math-ph/0703083 +math/0404302 Analysis of PDEs +0811.0802 Statistics Theory +0906.3083 Programming Languages +0911.5149 Geometric Topology +1003.4531 +1003.6004 Symplectic Geometry +1011.2962 Differential Geometry +1102.5434 Complex Variables +1109.4253 Symplectic Geometry +1111.2087 Algebraic Geometry +1112.1339 Mesoscale and Nanoscale Physics +1201.3468 Geometric Topology +1203.2705 +1207.6432 Statistics Theory +1209.0049 Strongly Correlated Electrons +1209.6315 +1210.1564 Algebraic Topology +1210.5114 Optimization and Control +1211.3434 Statistics Theory +1212.3145 Portfolio Management +1212.3428 +1301.1672 Combinatorics +1301.4655 Social and Information Networks +1302.5462 Cosmology and Nongalactic Astrophysics +1303.3883 +1303.4229 Genomics +1303.6534 Dynamical Systems +1304.4118 Strongly Correlated Electrons +1304.4214 Strongly Correlated Electrons +1304.7179 Strongly Correlated Electrons +1305.6169 Metric Geometry +1305.6420 Functional Analysis +1305.6430 Statistics Theory +1305.6594 Algebraic Geometry +1306.1434 Strongly Correlated Electrons +1306.4743 Numerical Analysis +1306.6528 +1306.6658 Methodology +1307.2211 +1308.3508 Social and Information Networks +1308.5875 Statistics Theory +1309.0487 Mesoscale and Nanoscale Physics +1309.6699 Probability +1310.6027 Mesoscale and Nanoscale Physics +1310.6519 Disordered Systems and Neural Networks +1311.0911 Representation Theory +1311.3045 Information Theory +1312.1587 +1312.2058 Representation Theory +1312.6153 Group Theory +1312.6249 Computer Science and Game Theory +1401.1150 +1401.4685 Statistical Mechanics +1401.7098 Optimization and Control +1401.7295 Metric Geometry +1401.7612 Robotics +1401.7640 Combinatorics +1401.8260 Combinatorics +1402.1224 Materials Science +1402.1268 Biological Physics +1402.2268 Complex Variables +1402.2958 Quantum Gases +1402.3225 Information Theory +1402.5212 Logic +1402.6006 Complex Variables +1402.6943 Disordered Systems and Neural Networks +1402.7359 +1403.3407 Phenomenology +1403.4660 +1403.5819 Computational Physics +1403.6565 +1403.7003 Probability +1404.0962 Probability +1404.1775 Computational Geometry +1404.2211 Algebraic Geometry +1404.3885 Numerical Analysis +1404.6299 Combinatorics +1404.7202 Rings and Algebras +1405.2208 Materials Science +1405.2297 Materials Science +1405.2396 Mesoscale and Nanoscale Physics +1405.2507 Materials Science +1405.3755 Statistical Mechanics +1405.4174 Genomics +1405.5538 Theory +1406.0363 Probability +1406.0803 +1406.1095 Quantum Gases +1406.1645 +1406.2513 Cosmology and Nongalactic Astrophysics +1406.2766 Strongly Correlated Electrons +1406.4771 Theory +1406.5909 +1406.6444 Strongly Correlated Electrons +1406.6681 Phenomenology +1406.7237 +1406.7605 Strongly Correlated Electrons +1407.0387 Genomics +1407.1226 Materials Science +1407.2079 Materials Science +1407.2103 Classical Analysis and ODEs +1407.2222 Experiment +1407.3094 +1407.3260 Physics Education +1407.4040 Lattice +1407.4396 Phenomenology +1407.4563 High Energy Astrophysical Phenomena +1407.4620 Instrumentation and Methods for Astrophysics +1407.4717 Classical Physics +1407.7401 Optics +1408.0315 Logic +1408.0504 Experiment +1408.3274 +1408.3726 Astrophysics of Galaxies +1408.4538 Strongly Correlated Electrons +1408.5001 Information Retrieval +1408.5294 Optimization and Control +1408.5379 Strongly Correlated Electrons +1408.5500 Solar and Stellar Astrophysics +1408.5841 Theory +1408.6576 Strongly Correlated Electrons +1409.0744 Soft Condensed Matter +1409.0860 Astrophysics of Galaxies +1409.0936 Rings and Algebras +1409.1000 +1409.1031 Number Theory +1409.2028 Algebraic Geometry +1409.2489 Astrophysics of Galaxies +1409.2893 Phenomenology +1409.3741 Computer Science and Game Theory +1409.5254 Numerical Analysis +1409.5403 Computer Vision and Pattern Recognition +1409.5749 Experiment +1409.5815 Geophysics +1409.6020 Number Theory +1409.6435 +1409.6690 Computer Science and Game Theory +1409.6823 Materials Science +1409.7688 Data Structures and Algorithms +1409.7952 Solar and Stellar Astrophysics +1409.7989 Physics Education +1409.8135 Data Structures and Algorithms +1409.8252 Networking and Internet Architecture +1409.8576 Learning +1409.8608 Mathematical Software +1410.0001 Information Retrieval +1410.0003 Theory +1410.0030 Cryptography and Security +1410.0032 Materials Science +1410.0034 Analysis of PDEs +1410.0036 Probability +1410.0037 +1410.0044 Astrophysics of Galaxies +1410.0045 Numerical Analysis +1410.0046 Information Theory +1410.0048 Theory +1410.0054 Optimization and Control +1410.0057 Analysis of PDEs +1410.0058 Numerical Analysis +1410.0071 Category Theory +1410.0073 Materials Science +1410.0076 Instrumentation and Detectors +1410.0078 Number Theory +1410.0081 Representation Theory +1410.0083 Systems and Control +1410.0084 Superconductivity +1410.0085 Operator Algebras +1410.0086 Differential Geometry +1410.0088 Numerical Analysis +1410.0089 +1410.0090 Materials Science +1410.0095 Machine Learning +1410.0098 Fluid Dynamics +1410.0099 Probability +1410.0101 Dynamical Systems +1410.0102 Algebraic Geometry +1410.0105 Symbolic Computation +1410.0107 Instrumentation and Detectors +1410.0112 Statistical Finance +1410.0116 Numerical Analysis +1410.0118 Lattice +1410.0120 Analysis of PDEs +1410.0121 Theory +1410.0122 Instrumentation and Detectors +1410.0123 Learning +1410.0124 Phenomenology +1410.0125 Physics and Society +1410.0127 Cosmology and Nongalactic Astrophysics +1410.0128 Networking and Internet Architecture +1410.0129 Dynamical Systems +1410.0136 Optimization and Control +1410.0137 Phenomenology +1410.0138 Mesoscale and Nanoscale Physics +1410.0141 Soft Condensed Matter +1410.0148 Solar and Stellar Astrophysics +1410.0150 Commutative Algebra +1410.0151 Cryptography and Security +1410.0152 Solar and Stellar Astrophysics +1410.0157 Solar and Stellar Astrophysics +1410.0162 Neural and Evolutionary Computing +1410.0163 Methodology +1410.0167 Fluid Dynamics +1410.0170 Differential Geometry +1410.0176 Multiagent Systems +1410.0182 Mesoscale and Nanoscale Physics +1410.0187 Combinatorics +1410.0188 Experiment +1410.0190 Information Theory +1410.0194 Operator Algebras +1410.0195 Combinatorics +1410.0199 +1410.0200 Instrumentation and Detectors +1410.0204 Atmospheric and Oceanic Physics +1410.0205 Databases +1410.0214 Probability +1410.0216 Fluid Dynamics +1410.0223 Statistical Mechanics +1410.0224 Chemical Physics +1410.0228 Networking and Internet Architecture +1410.0229 Combinatorics +1410.0236 Space Physics +1410.0242 Materials Science +1410.0243 Computer Vision and Pattern Recognition +1410.0250 Probability +1410.0253 Atmospheric and Oceanic Physics +1410.0256 Materials Science +1410.0261 Theory +1410.0264 Instrumentation and Detectors +1410.0265 Databases +1410.0266 Materials Science +1410.0267 Theory +1410.0269 Soft Condensed Matter +1410.0270 +1410.0271 Theory +1410.0274 Biological Physics +1410.0275 Mesoscale and Nanoscale Physics +1410.0276 Data Structures and Algorithms +1410.0279 Statistics Theory +1410.0281 Artificial Intelligence +1410.0284 Geophysics +1410.0287 Optimization and Control +1410.0288 Differential Geometry +1410.0289 Information Theory +1410.0290 Chemical Physics +1410.0305 +1410.0306 Logic in Computer Science +1410.0308 Geometric Topology +1410.0316 Social and Information Networks +1410.0321 Classical Physics +1410.0324 Materials Science +1410.0325 Numerical Analysis +1410.0326 Numerical Analysis +1410.0329 Distributed, Parallel, and Cluster Computing +1410.0333 Analysis of PDEs +1410.0334 Machine Learning +1410.0336 Networking and Internet Architecture +1410.0337 Networking and Internet Architecture +1410.0339 Functional Analysis +1410.0341 Probability +1410.0343 Physics and Society +1410.0344 Materials Science +1410.0345 History and Philosophy of Physics +1410.0349 Analysis of PDEs +1410.0350 Quantitative Methods +0710.3603 Discrete Mathematics +0711.0998 +0811.0801 Probability +0903.1095 Data Structures and Algorithms +0905.1153 K-Theory and Homology +0911.2974 Data Structures and Algorithms +0912.1548 Cell Behavior +1009.4884 Computational Finance +1109.1174 Classical Analysis and ODEs +1110.3105 Numerical Analysis +1112.0501 Complex Variables +1202.5806 Logic +1202.6070 Phenomenology +1204.3307 +1205.3487 +1207.1267 Probability +1207.2866 Probability +1207.4739 Superconductivity +1208.2591 Geophysics +1208.6005 Category Theory +1209.3965 Strongly Correlated Electrons +1210.1170 History and Philosophy of Physics +1210.4551 High Energy Astrophysical Phenomena +1210.5052 Algebraic Geometry +1211.3766 Algebraic Geometry +1212.0243 Statistics Theory +1212.1007 History and Philosophy of Physics +1301.0051 Hardware Architecture +1301.3037 History and Philosophy of Physics +1302.1885 History and Philosophy of Physics +1302.3473 Strongly Correlated Electrons +1302.6104 Functional Analysis +1303.3535 Cosmology and Nongalactic Astrophysics +1304.4151 Other Computer Science +1304.7925 Mesoscale and Nanoscale Physics +1305.2470 Mesoscale and Nanoscale Physics +1305.3142 Soft Condensed Matter +1305.4792 Methodology +1306.1852 Quantum Gases +1307.0909 Metric Geometry +1308.1352 Neurons and Cognition +1308.2040 Statistical Mechanics +1308.3815 +1308.3992 Optimization and Control +1308.4337 Statistical Mechanics +1308.5763 Mesoscale and Nanoscale Physics +1309.2411 Statistical Finance +1309.2514 +1309.2572 +1309.6426 Mesoscale and Nanoscale Physics +1309.6912 Fluid Dynamics +1310.3559 Quantum Gases +1310.4917 Analysis of PDEs +1310.5072 Statistical Mechanics +1310.6112 +1310.6235 Atomic Physics +1310.8337 Phenomenology +1311.0095 Information Theory +1311.0740 Phenomenology +1311.1271 Mesoscale and Nanoscale Physics +1311.1427 +1311.2402 Mesoscale and Nanoscale Physics +1311.2814 Phenomenology +1311.4531 Strongly Correlated Electrons +1311.4878 Theory +1311.5071 Lattice +1311.7236 Cryptography and Security +1312.4525 Cosmology and Nongalactic Astrophysics +1312.6045 Dynamical Systems +1312.6062 Learning +1312.7411 Strongly Correlated Electrons +1312.7607 Differential Geometry +1312.7778 Algebraic Geometry +1401.1286 Cosmology and Nongalactic Astrophysics +1401.4037 Materials Science +1401.5630 Solar and Stellar Astrophysics +1401.6269 Phenomenology +1401.6431 Mesoscale and Nanoscale Physics +1401.6684 Algebraic Topology +1401.7638 +1401.8214 Numerical Analysis +1402.0357 Statistics Theory +1402.1723 Phenomenology +1402.2447 Machine Learning +1402.3428 Numerical Analysis +1402.3638 Commutative Algebra +1402.3960 Phenomenology +1402.5155 Physics and Society +1403.0449 +1403.0817 Complex Variables +1403.0822 Solar and Stellar Astrophysics +1403.1880 Fluid Dynamics +1403.3024 Representation Theory +1403.3371 Other Statistics +1403.3958 Dynamical Systems +1403.4060 Information Theory +1403.4579 General Physics +1403.5009 +1403.5248 Discrete Mathematics +1403.6989 Experiment +1403.7172 +1403.7917 Superconductivity +1404.0522 Materials Science +1404.1237 Information Theory +1404.1499 Popular Physics +1404.1649 Cosmology and Nongalactic Astrophysics +1404.1983 +1404.2067 Phenomenology +1404.2231 Information Theory +1404.2265 Classical Physics +1404.2266 Performance +1404.2268 Computer Vision and Pattern Recognition +1404.2274 Cosmology and Nongalactic Astrophysics +1404.2294 Instrumentation and Methods for Astrophysics +1404.2296 Strongly Correlated Electrons +1404.2300 Networking and Internet Architecture +1404.2302 Information Theory +1404.2303 Distributed, Parallel, and Cluster Computing +1404.2305 Optimization and Control +1404.2306 Optimization and Control +1404.2307 Commutative Algebra +1404.2308 Dynamical Systems +1404.2312 Fluid Dynamics +1404.2320 Accelerator Physics +1404.2322 Numerical Analysis +1404.2323 Algebraic Geometry +1404.2325 Networking and Internet Architecture +1404.2332 Differential Geometry +1404.2335 Functional Analysis +1404.2336 Number Theory +1404.2339 +1404.2340 Distributed, Parallel, and Cluster Computing +1404.2343 Computational Engineering, Finance, and Science +1404.2344 Multimedia +1404.2345 Networking and Internet Architecture +1404.2346 Other Computer Science +1404.2347 Other Computer Science +1404.2348 Networking and Internet Architecture +1404.2352 Information Theory +1404.2353 Learning +1404.2354 Number Theory +1404.2355 Statistics Theory +1404.2356 Strongly Correlated Electrons +1404.2358 Probability +1404.2361 History and Philosophy of Physics +1404.2364 Human-Computer Interaction +1404.2369 Materials Science +1404.2371 Symbolic Computation +1404.2372 Phenomenology +1404.2374 Quantitative Methods +1404.2385 Differential Geometry +1404.2386 Analysis of PDEs +1404.2387 Networking and Internet Architecture +1404.2390 Differential Geometry +1404.2391 Mesoscale and Nanoscale Physics +1404.2392 Algebraic Topology +1404.2399 Computer Science and Game Theory +1404.2400 Statistical Mechanics +1404.2402 Representation Theory +1404.2405 Statistics Theory +1404.2407 Populations and Evolution +1404.2408 Materials Science +1404.2409 Formal Languages and Automata Theory +1404.2413 Networking and Internet Architecture +1404.2415 Networking and Internet Architecture +1404.2416 Complex Variables +1404.2417 Astrophysics of Galaxies +1404.2420 Phenomenology +1404.2422 Mesoscale and Nanoscale Physics +1404.2427 Optimization and Control +1404.2428 +1404.2435 Number Theory +1404.2437 Analysis of PDEs +1404.2438 Phenomenology +1404.2444 Solar and Stellar Astrophysics +1404.2447 Number Theory +1404.2451 Representation Theory +1404.2452 Solar and Stellar Astrophysics +1404.2453 +1404.2455 Commutative Algebra +1404.2456 Combinatorics +1404.2461 Solar and Stellar Astrophysics +1404.2462 Applications +1404.2464 Multiagent Systems +1404.2465 Data Structures and Algorithms +1404.2470 Solar and Stellar Astrophysics +1404.2474 High Energy Astrophysical Phenomena +1404.2477 Applications +1404.2478 +1404.2479 +1404.2483 Cosmology and Nongalactic Astrophysics +1404.2490 Dynamical Systems +1404.2494 Strongly Correlated Electrons +1404.2497 +1404.2501 Metric Geometry +1404.2510 History and Overview +1404.2512 Other Computer Science +1404.2516 Rings and Algebras +1404.2521 Phenomenology +1404.2522 Analysis of PDEs +1404.2523 Superconductivity +1404.2526 Optics +1404.2530 Dynamical Systems +1404.2535 Analysis of PDEs +1404.2537 Information Theory +1404.2539 Astrophysics of Galaxies +1404.2540 Genomics +1404.2541 Classical Analysis and ODEs +1404.2542 Algebraic Topology +1404.2544 Strongly Correlated Electrons +1404.2547 Differential Geometry +1404.2551 Probability +1404.2553 Optimization and Control +1404.2556 Strongly Correlated Electrons +1404.2559 Statistical Mechanics +1404.2562 Earth and Planetary Astrophysics +1404.2563 Classical Analysis and ODEs +1404.2566 Classical Analysis and ODEs +1404.2571 Computer Vision and Pattern Recognition +1404.2574 Rings and Algebras +1404.2575 Materials Science +1404.2577 Differential Geometry +1404.2584 Information Theory +1404.2585 Chemical Physics +1404.2588 +math-ph/0506078 +physics/9710034 Plasma Physics +0706.2917 Analysis of PDEs +0901.2487 Superconductivity +0908.4257 Theory +1010.4380 Rings and Algebras +1104.2777 Statistical Mechanics +1104.3443 +1105.1227 Digital Libraries +1111.1211 Logic +1201.0839 Functional Analysis +1202.1139 Combinatorics +1202.5658 +1203.2271 Spectral Theory +1203.5139 Dynamical Systems +1203.6386 Combinatorics +1204.3100 Optimization and Control +1205.6054 Functional Analysis +1206.5727 +1207.1638 Group Theory +1207.3881 +1207.5335 Probability +1208.0884 Algebraic Geometry +1208.0963 Mesoscale and Nanoscale Physics +1208.3546 Probability +1209.2968 +1209.3672 Statistics Theory +1209.5072 Functional Analysis +1209.5429 Neural and Evolutionary Computing +1210.3130 +1210.6908 Combinatorics +1211.0476 Probability +1211.3395 Spectral Theory +1211.6095 Theory +1211.6271 Experiment +1212.0080 Fluid Dynamics +1212.1388 Solar and Stellar Astrophysics +1212.5443 Combinatorics +1301.3256 +1301.6121 Algebraic Geometry +1302.3051 Number Theory +1302.3867 Combinatorics +1302.5327 +1303.2101 Plasma Physics +1303.2623 Cosmology and Nongalactic Astrophysics +1303.6146 Statistics Theory +1304.0521 Number Theory +1304.3794 Dynamical Systems +1304.4598 Cosmology and Nongalactic Astrophysics +1304.4789 Materials Science +1304.5692 +1305.2378 Populations and Evolution +1305.2429 Theory +1305.7433 Mesoscale and Nanoscale Physics +1306.0520 History and Overview +1306.1909 Materials Science +1306.2395 Materials Science +1306.3391 Numerical Analysis +1306.5762 Cosmology and Nongalactic Astrophysics +1307.0998 Computer Vision and Pattern Recognition +1307.2069 Classical Analysis and ODEs +1307.5285 Classical Physics +1307.6426 Algebraic Geometry +1307.7255 Mesoscale and Nanoscale Physics +1307.7846 Statistical Mechanics +1308.0443 Experiment +1308.1255 Soft Condensed Matter +1308.2037 Disordered Systems and Neural Networks +1308.5148 Phenomenology +1308.6288 Phenomenology +1309.1642 Experiment +1309.2902 Atomic Physics +1309.4082 Cosmology and Nongalactic Astrophysics +1309.6633 Phenomenology +1310.0236 Methodology +1310.1089 Phenomenology +1310.2482 Classical Analysis and ODEs +1310.3967 +1310.4597 Strongly Correlated Electrons +1310.5019 Phenomenology +1310.5043 Formal Languages and Automata Theory +1310.5700 Theory +1310.6206 +1310.7323 +1310.7917 Group Theory +1310.8302 +1311.1745 Superconductivity +1311.4286 Cosmology and Nongalactic Astrophysics +1311.4512 Atomic Physics +1311.4542 Phenomenology +1311.5801 Strongly Correlated Electrons +1311.5879 Theory +1311.6169 Phenomenology +1311.7094 Functional Analysis +1312.0360 +1312.0766 Statistical Mechanics +1312.1412 Graphics +1312.4896 +1312.5485 Theory +1312.6238 Quantum Algebra +1312.6387 Strongly Correlated Electrons +1312.6924 Optics +1312.7809 Phenomenology +1401.0228 Algebraic Geometry +1401.0412 Physics and Society +1401.0458 Cryptography and Security +1401.0507 Mesoscale and Nanoscale Physics +1401.2035 Phenomenology +1401.2168 Optimization and Control +1401.2599 Phenomenology +1401.2818 Computer Vision and Pattern Recognition +1401.3739 Phenomenology +1401.3774 High Energy Astrophysical Phenomena +1401.4805 Mesoscale and Nanoscale Physics +1401.5840 Mesoscale and Nanoscale Physics +1401.5967 Analysis of PDEs +1402.0502 Disordered Systems and Neural Networks +1402.0717 Astrophysics of Galaxies +1402.0773 Classical Analysis and ODEs +1402.1026 Materials Science +1402.1766 Solar and Stellar Astrophysics +1402.1983 Cosmology and Nongalactic Astrophysics +1402.2076 Theory +1402.2155 History and Overview +1402.2258 Cosmology and Nongalactic Astrophysics +1402.4034 Quantum Gases +1402.4131 Astrophysics of Galaxies +1402.4133 Solar and Stellar Astrophysics +1402.4234 +1402.4297 Mesoscale and Nanoscale Physics +1402.4571 Theory +1402.4584 Mesoscale and Nanoscale Physics +1402.4620 +1402.5064 Fluid Dynamics +1402.5492 Data Structures and Algorithms +1402.5580 Theory +1402.5628 Strongly Correlated Electrons +1402.6234 Soft Condensed Matter +1402.6627 Cosmology and Nongalactic Astrophysics +1402.6765 Fluid Dynamics +1403.0061 Superconductivity +1403.0129 +1403.0288 Superconductivity +1403.0715 Phenomenology +1403.0742 Strongly Correlated Electrons +1403.1072 Solar and Stellar Astrophysics +1403.1315 +1403.1588 +1403.2265 Phenomenology +1403.2274 Analysis of PDEs +1403.2388 Astrophysics of Galaxies +1403.2637 Mesoscale and Nanoscale Physics +1403.2801 Instrumentation and Methods for Astrophysics +1403.4195 Mesoscale and Nanoscale Physics +1403.4355 Instrumentation and Detectors +1403.4409 Experiment +1403.5028 +1403.5048 +1403.5140 Phenomenology +1403.5175 Mesoscale and Nanoscale Physics +1403.5272 Earth and Planetary Astrophysics +1403.5516 Cosmology and Nongalactic Astrophysics +1403.6131 Instrumentation and Methods for Astrophysics +1403.6148 Astrophysics of Galaxies +1403.7081 Quantum Gases +1403.7459 Phenomenology +1403.7687 Astrophysics of Galaxies +1403.7882 Materials Science +1403.7934 Astrophysics of Galaxies +1403.7976 Solar and Stellar Astrophysics +1403.8029 Phenomenology +1404.0096 Experiment +1404.0121 Astrophysics of Galaxies +1404.0314 +1404.0824 Earth and Planetary Astrophysics +1404.0870 Cosmology and Nongalactic Astrophysics +1404.1019 Earth and Planetary Astrophysics +1404.1697 Astrophysics of Galaxies +1404.1886 Instrumentation and Methods for Astrophysics +1404.2039 Soft Condensed Matter +1404.2099 Solar and Stellar Astrophysics +1404.2139 +1404.2177 Solar and Stellar Astrophysics +1404.2277 Phenomenology +1404.2431 Astrophysics of Galaxies +1404.2519 +1404.2781 Solar and Stellar Astrophysics +1404.2870 Solar and Stellar Astrophysics +1404.2902 Solar and Stellar Astrophysics +1404.3064 Strongly Correlated Electrons +1404.3211 Mesoscale and Nanoscale Physics +1404.3353 Functional Analysis +1404.3502 Earth and Planetary Astrophysics +1404.3865 +1404.3957 Solar and Stellar Astrophysics +1404.4341 Solar and Stellar Astrophysics +1404.4376 Solar and Stellar Astrophysics +1404.4633 Solar and Stellar Astrophysics +1404.4660 Dynamical Systems +1404.4861 Earth and Planetary Astrophysics +1404.4909 Data Structures and Algorithms +1404.4952 Theory +1404.5054 +1404.5102 Cosmology and Nongalactic Astrophysics +1404.5118 Materials Science +1404.5266 Earth and Planetary Astrophysics +1404.5268 Strongly Correlated Electrons +1404.5284 +1404.5415 Cosmology and Nongalactic Astrophysics +1404.5634 +1404.5771 Probability +1404.5861 Instrumentation and Methods for Astrophysics +1404.6055 Computer Vision and Pattern Recognition +1404.6123 Astrophysics of Galaxies +1404.6135 Earth and Planetary Astrophysics +1404.6199 Solar and Stellar Astrophysics +1404.6353 Solar and Stellar Astrophysics +1404.6470 Astrophysics of Galaxies +1404.6568 Phenomenology +1404.7146 Cosmology and Nongalactic Astrophysics +1404.7384 Solar and Stellar Astrophysics +1404.7474 Superconductivity +1404.7503 Theory +1404.7515 Solar and Stellar Astrophysics +1404.7667 Astrophysics of Galaxies +1404.7668 Astrophysics of Galaxies +1404.7853 Solar and Stellar Astrophysics +1405.0037 Astrophysics of Galaxies +1405.0230 Quantum Gases +1405.0907 Solar and Stellar Astrophysics +1405.1416 Solar and Stellar Astrophysics +1405.1561 Solar and Stellar Astrophysics +1405.1571 Experiment +1405.1588 Astrophysics of Galaxies +1405.1589 Solar and Stellar Astrophysics +1405.1807 Astrophysics of Galaxies +1405.1922 +1405.1987 Astrophysics of Galaxies +1405.2127 Earth and Planetary Astrophysics +1405.2160 Astrophysics of Galaxies +1405.2194 Solar and Stellar Astrophysics +1405.2422 Materials Science +1405.2468 Probability +1405.2633 Astrophysics of Galaxies +1405.2769 Solar and Stellar Astrophysics +1405.3110 Theory +1405.3120 Earth and Planetary Astrophysics +1405.3352 Computer Vision and Pattern Recognition +1405.3413 Theory +1405.3923 Solar and Stellar Astrophysics +1405.4966 Materials Science +1405.5332 Solar and Stellar Astrophysics +1405.5383 Astrophysics of Galaxies +1405.5617 Neurons and Cognition +1405.5642 Chemical Physics +1405.6051 Solar and Stellar Astrophysics +1405.6340 High Energy Astrophysical Phenomena +1405.6404 Solar and Stellar Astrophysics +1405.6605 Earth and Planetary Astrophysics +1405.7517 Earth and Planetary Astrophysics +1406.0050 Geometric Topology +1406.0136 Optimization and Control +1406.0310 Astrophysics of Galaxies +1406.0346 Astrophysics of Galaxies +1406.0645 High Energy Astrophysical Phenomena +1406.0715 Earth and Planetary Astrophysics +1406.0761 Solar and Stellar Astrophysics +1406.1464 Dynamical Systems +1406.1672 Earth and Planetary Astrophysics +1406.2181 +1406.3038 Theory +1406.3833 Combinatorics +1406.3971 Solar and Stellar Astrophysics +1406.4650 Instrumentation and Methods for Astrophysics +1406.5015 Group Theory +1406.5820 Combinatorics +1406.5831 Superconductivity +1406.5862 Materials Science +1406.6424 Populations and Evolution +1406.6995 Physics and Society +1406.7311 Analysis of PDEs +1406.7466 Mesoscale and Nanoscale Physics +1406.7768 Robotics +1407.0003 Systems and Control +1407.0007 Neural and Evolutionary Computing +1407.0008 Neural and Evolutionary Computing +1407.0009 Networking and Internet Architecture +1407.0011 +1407.0013 Numerical Analysis +1407.0014 Neural and Evolutionary Computing +1407.0015 Systems and Control +1407.0039 Mathematical Software +1407.0041 Strongly Correlated Electrons +1407.0043 Combinatorics +1407.0044 Methodology +1407.0045 Strongly Correlated Electrons +1407.0048 Combinatorics +1407.0049 Robotics +1407.0051 Robotics +1407.0053 Numerical Analysis +1407.0054 Number Theory +1407.0055 Symplectic Geometry +1407.0057 Phenomenology +1407.0061 Neural and Evolutionary Computing +1407.0069 Symplectic Geometry +1407.0070 Emerging Technologies +1407.0072 Complex Variables +1407.0074 Phenomenology +1407.0078 Combinatorics +1407.0080 Robotics +1407.0082 Functional Analysis +1407.0087 Phenomenology +1407.0088 Numerical Analysis +1407.0090 +1407.0091 Networking and Internet Architecture +1407.0092 Analysis of PDEs +1407.0093 +1407.0096 Commutative Algebra +1407.0099 Differential Geometry +1407.0101 Materials Science +1407.0103 Numerical Analysis +1407.0106 Mesoscale and Nanoscale Physics +1407.0114 Data Structures and Algorithms +1407.0116 Databases +1407.0119 Mesoscale and Nanoscale Physics +1407.0122 Operating Systems +1407.0124 Information Theory +1407.0130 Phenomenology +1407.0132 Optics +1407.0134 Probability +1407.0137 Differential Geometry +1407.0139 Geometric Topology +1407.0147 Hardware Architecture +1407.0150 Classical Analysis and ODEs +1407.0151 +1407.0152 Fluid Dynamics +1407.0153 Human-Computer Interaction +1407.0154 Algebraic Geometry +1407.0157 Algebraic Geometry +1407.0163 Analysis of PDEs +1407.0165 Information Retrieval +1407.0169 Formal Languages and Automata Theory +1407.0170 Mesoscale and Nanoscale Physics +1407.0176 Algebraic Geometry +1407.0177 Number Theory +1407.0179 Machine Learning +1407.0183 +1407.0185 Statistics Theory +1407.0186 Cosmology and Nongalactic Astrophysics +1407.0189 Discrete Mathematics +1407.0190 Analysis of PDEs +1407.0191 +1407.0192 Analysis of PDEs +1407.0203 Phenomenology +1407.0206 History and Philosophy of Physics +1407.0207 Genomics +1407.0214 Functional Analysis +1407.0216 Spectral Theory +1407.0220 Optimization and Control +1407.0221 Computer Vision and Pattern Recognition +1407.0222 Logic +1407.0223 +1407.0226 Representation Theory +1407.0230 Methodology +1407.0231 Phenomenology +1407.0232 Phenomenology +1407.0233 History and Overview +1407.0234 Algebraic Topology +1407.0235 Phenomenology +1407.0237 Probability +1407.0238 High Energy Astrophysical Phenomena +1407.0241 Statistics Theory +1407.0245 Cosmology and Nongalactic Astrophysics +1407.0249 Statistics Theory +1407.0250 Astrophysics of Galaxies +1407.0254 Earth and Planetary Astrophysics +1407.0257 Optics +1407.0258 Functional Analysis +1407.0261 Soft Condensed Matter +1407.0263 +1407.0264 Phenomenology +1407.0265 Neural and Evolutionary Computing +1407.0270 Materials Science +1407.0273 +1407.0276 Networking and Internet Architecture +1407.0282 +1407.0283 General Mathematics +1407.0285 Instrumentation and Detectors +1407.0287 Biological Physics +1407.0288 Analysis of PDEs +1407.0289 Materials Science +1407.0290 Populations and Evolution +1407.0291 Classical Analysis and ODEs +1407.0292 Programming Languages +1407.0294 Mesoscale and Nanoscale Physics +1407.0295 Experiment +1407.0296 Optics +1407.0297 Combinatorics +1407.0298 Theory +1407.0304 Instrumentation and Detectors +1407.0308 Other Statistics +1407.0313 Computers and Society +1407.0315 Analysis of PDEs +1407.0317 Experiment +1407.0321 Functional Analysis +1407.0322 Solar and Stellar Astrophysics +1407.0323 Computers and Society +1407.0325 Computers and Society +1407.0330 Social and Information Networks +1407.0333 Information Theory +1407.0334 Formal Languages and Automata Theory +1407.0341 Quantum Algebra +1407.0345 Numerical Analysis +1407.0347 Instrumentation and Detectors +1407.0349 Classical Analysis and ODEs +1407.0351 Plasma Physics +1407.0353 Plasma Physics +1407.0354 Dynamical Systems +1407.0355 Plasma Physics +1407.0357 Solar and Stellar Astrophysics +1407.0362 +1407.0367 Combinatorics +1407.0374 Social and Information Networks +1407.0375 Data Structures and Algorithms +1407.0377 Human-Computer Interaction +1407.0379 Astrophysics of Galaxies +math-ph/0007003 +math/0210012 Analysis of PDEs +0704.2153 Rings and Algebras +0707.0375 Mesoscale and Nanoscale Physics +0901.1771 Functional Analysis +0903.1001 Functional Analysis +0909.4184 Commutative Algebra +1005.0040 Astrophysics of Galaxies +1006.5730 Statistics Theory +1007.3246 Theory +1009.2650 Probability +1101.2369 Probability +1102.2422 Popular Physics +1102.3318 Statistics Theory +1103.0380 Algebraic Geometry +1103.2649 +1105.1005 Mesoscale and Nanoscale Physics +1106.5087 Numerical Analysis +1110.3180 +1110.5027 Quantum Algebra +1202.2406 Classical Analysis and ODEs +1202.4442 Applications +1203.0550 Learning +1203.3836 Combinatorics +1204.0123 Algebraic Geometry +1204.0170 Learning +1204.0887 Astrophysics of Galaxies +1205.2366 Phenomenology +1207.0431 Number Theory +1208.3947 Solar and Stellar Astrophysics +1209.0319 Solar and Stellar Astrophysics +1210.0754 Neurons and Cognition +1210.1702 Phenomenology +1210.8338 Data Structures and Algorithms +1211.6874 Strongly Correlated Electrons +1212.1467 Theory +1212.5115 +1212.6087 High Energy Astrophysical Phenomena +1212.6943 Cosmology and Nongalactic Astrophysics +1301.0469 Algebraic Topology +1301.0619 Cosmology and Nongalactic Astrophysics +1301.1223 Information Theory +1301.2468 Materials Science +1302.4112 General Finance +1303.4482 Number Theory +1303.4846 Classical Analysis and ODEs +1303.7104 Mesoscale and Nanoscale Physics +1304.0934 Mesoscale and Nanoscale Physics +1304.2319 Superconductivity +1304.2889 Graphics +1304.6155 Numerical Analysis +1304.7735 Optimization and Control +1305.1184 Methodology +1305.1501 Numerical Analysis +1305.7475 Functional Analysis +1306.1783 +1306.5103 Probability +1306.5785 Quantum Gases +1307.0601 Quantum Gases +1307.3765 Phenomenology +1307.8116 Astrophysics of Galaxies +1307.8393 Strongly Correlated Electrons +1308.1680 +1308.2044 Phenomenology +1308.2597 Digital Libraries +1308.5595 Methodology +1308.6111 Dynamical Systems +1308.6521 Phenomenology +1309.1112 Analysis of PDEs +1309.2271 +1309.2954 Cosmology and Nongalactic Astrophysics +1309.4977 Algebraic Geometry +1309.5266 +1309.6413 Theory +1309.6909 Group Theory +1309.7025 Combinatorics +1309.7123 Probability +1310.0816 Cosmology and Nongalactic Astrophysics +1310.1693 Systems and Control +1310.3908 Materials Science +1310.5531 Biomolecules +1310.6307 +1311.0273 Mesoscale and Nanoscale Physics +1311.1617 Mesoscale and Nanoscale Physics +1311.2408 +1311.3171 Computational Complexity +1311.3763 Phenomenology +1311.3946 +1311.4291 Optimization and Control +1311.4791 Optics +1311.5804 Lattice +1311.7436 Lattice +1311.7641 Phenomenology +1312.0385 Mesoscale and Nanoscale Physics +1312.2221 Biomolecules +1312.2222 Discrete Mathematics +1312.5048 Numerical Analysis +1312.5342 +1312.5531 Strongly Correlated Electrons +1312.5624 Phenomenology +1401.0407 Analysis of PDEs +1401.0785 +1401.2072 High Energy Astrophysical Phenomena +1401.3165 +1401.3809 Information Theory +1401.4268 Phenomenology +1401.4954 Algebraic Geometry +1401.6915 Theory +1401.6935 Differential Geometry +1401.6966 Solar and Stellar Astrophysics +1402.0097 Mesoscale and Nanoscale Physics +1402.1634 +1402.2002 Dynamical Systems +1402.2165 Materials Science +1402.2553 Astrophysics of Galaxies +1402.4415 Optimization and Control +1403.0978 Disordered Systems and Neural Networks +1403.1281 Classical Analysis and ODEs +1403.1538 Analysis of PDEs +1403.2377 Strongly Correlated Electrons +1403.3382 Theory +1403.5405 Category Theory +1403.7841 Symbolic Computation +1403.8148 Combinatorics +1404.0963 Numerical Analysis +1404.0969 Information Theory +1404.0981 Graphics +1404.1067 Complex Variables +1404.1187 +1404.1323 Data Structures and Algorithms +1404.1459 Theory +1404.1727 Probability +1404.1782 Networking and Internet Architecture +1404.1790 +1404.1845 +1404.1907 Operator Algebras +1404.1908 Networking and Internet Architecture +1404.1911 Human-Computer Interaction +1404.1913 Computational Finance +1404.1940 Functional Analysis +1404.1941 Functional Analysis +1404.1942 +1404.1943 Data Structures and Algorithms +1404.1947 Logic in Computer Science +1404.1950 Computational Complexity +1404.1956 Numerical Analysis +1404.1958 Systems and Control +1404.1963 Optimization and Control +1404.1964 Soft Condensed Matter +1404.1966 Solar and Stellar Astrophysics +1404.1974 Quantum Algebra +1404.1975 Mesoscale and Nanoscale Physics +1404.1978 Dynamical Systems +1404.1979 +1404.1981 Information Theory +1404.1982 Computation and Language +1404.1984 Software Engineering +1404.1985 Software Engineering +1404.1986 Cryptography and Security +1404.1987 Cryptography and Security +1404.1988 Cryptography and Security +1404.1989 Cryptography and Security +1404.1991 Information Theory +1404.1995 Networking and Internet Architecture +1404.1996 Other Computer Science +1404.1997 Networking and Internet Architecture +1404.1998 Information Theory +1404.1999 Neural and Evolutionary Computing +1404.2000 Information Theory +1404.2001 Algebraic Geometry +1404.2003 Symplectic Geometry +1404.2005 Computer Vision and Pattern Recognition +1404.2007 Machine Learning +1404.2008 Analysis of PDEs +1404.2010 Strongly Correlated Electrons +1404.2011 Classical Physics +1404.2012 +1404.2013 Social and Information Networks +1404.2014 Computer Vision and Pattern Recognition +1404.2015 Applications +1404.2023 Materials Science +1404.2027 Algebraic Topology +1404.2029 Dynamical Systems +1404.2034 Databases +1404.2036 Analysis of PDEs +1404.2042 Materials Science +1404.2046 Materials Science +1404.2047 Quantum Algebra +1404.2050 Statistical Finance +1404.2053 Graphics +1404.2054 Dynamical Systems +1404.2057 Mesoscale and Nanoscale Physics +1404.2064 Differential Geometry +1404.2069 Dynamical Systems +1404.2072 Optimization and Control +1404.2073 Logic +1404.2075 Earth and Planetary Astrophysics +1404.2076 Distributed, Parallel, and Cluster Computing +1404.2077 Optics +1404.2081 Information Theory +1404.2083 Learning +1404.2090 Cosmology and Nongalactic Astrophysics +1404.2093 Mesoscale and Nanoscale Physics +1404.2096 Probability +1404.2103 General Physics +1404.2105 Algebraic Geometry +1404.2108 Instrumentation and Detectors +1404.2110 Geometric Topology +1404.2115 Information Theory +1404.2116 Artificial Intelligence +1404.2117 Differential Geometry +1404.2118 Probability +1404.2119 Information Theory +1404.2121 Probability +1404.2124 Machine Learning +1404.2126 +1404.2127 Number Theory +1404.2131 Information Theory +1404.2133 Populations and Evolution +1404.2138 Networking and Internet Architecture +1404.2140 Risk Management +1404.2144 Algebraic Geometry +1404.2147 Populations and Evolution +1404.2148 Fluid Dynamics +1404.2151 Computers and Society +1404.2152 Chaotic Dynamics +1404.2153 Other Computer Science +1404.2155 Software Engineering +1404.2157 Distributed, Parallel, and Cluster Computing +1404.2158 Other Quantitative Biology +1404.2160 Databases +1404.2161 Classical Analysis and ODEs +1404.2162 Artificial Intelligence +1404.2163 Programming Languages +1404.2164 Earth and Planetary Astrophysics +1404.2165 Commutative Algebra +1404.2166 Robotics +1404.2167 Computers and Society +1404.2172 Networking and Internet Architecture +1404.2174 Cryptography and Security +1404.2176 Networking and Internet Architecture +1404.2178 Logic +1404.2179 Optics +1404.2184 Accelerator Physics +1404.2187 Distributed, Parallel, and Cluster Computing +1404.2188 Computation and Language +1404.2189 Machine Learning +1404.2195 Optimization and Control +1404.2196 Classical Analysis and ODEs +1404.2201 Information Theory +1404.2202 Astrophysics of Galaxies +1404.2203 Networking and Internet Architecture +1404.2227 Portfolio Management +1404.2233 Networking and Internet Architecture +1404.2235 Dynamical Systems +1404.2237 Multimedia +1404.2245 Differential Geometry +1404.2248 +1404.2251 Quantum Gases +1404.2252 Combinatorics +1404.2254 Mesoscale and Nanoscale Physics +1404.2259 Distributed, Parallel, and Cluster Computing +1404.2261 Cryptography and Security +1404.2262 Functional Analysis +hep-ph/0409250 Phenomenology +hep-th/0509189 Theory +math/0401316 Representation Theory +0709.0384 Soft Condensed Matter +0810.3294 Multiagent Systems +0905.0701 Neurons and Cognition +0905.4441 Computational Geometry +1003.4007 Algebraic Geometry +1006.1258 Algebraic Geometry +1007.3412 Optimization and Control +1008.0315 Materials Science +1011.0918 Category Theory +1012.0469 Algebraic Geometry +1101.4491 Data Structures and Algorithms +1105.4367 Algebraic Geometry +1105.6257 Computational Geometry +1107.1380 Risk Management +1107.5018 Phenomenology +1109.0210 Functional Analysis +1109.4773 Exactly Solvable and Integrable Systems +1201.2253 Geophysics +1201.3301 Strongly Correlated Electrons +1204.1005 Probability +1204.3675 Phenomenology +1204.5297 Probability +1205.1074 Dynamical Systems +1205.3827 Probability +1205.6510 Combinatorics +1206.2830 Materials Science +1206.4451 +1206.5070 Methodology +1206.5367 Methodology +1207.0525 Representation Theory +1207.1160 +1208.4835 Functional Analysis +1208.5912 Symplectic Geometry +1209.1036 +1210.0857 Atomic Physics +1210.5764 General Topology +1210.6316 Statistical Mechanics +1211.1231 Solar and Stellar Astrophysics +1211.1891 Logic +1211.4464 Computational Engineering, Finance, and Science +1211.6710 Algebraic Geometry +1212.0476 Probability +1212.0726 Mesoscale and Nanoscale Physics +1212.1349 Dynamical Systems +1301.1065 Data Analysis, Statistics and Probability +1302.0317 Computational Engineering, Finance, and Science +1302.3102 Quantum Algebra +1302.6066 Geometric Topology +1302.6609 Group Theory +1303.1310 Strongly Correlated Electrons +1303.2105 Strongly Correlated Electrons +1304.0386 Phenomenology +1304.0485 Neurons and Cognition +1304.2258 Strongly Correlated Electrons +1304.4318 +1304.4728 Strongly Correlated Electrons +1304.5133 +1304.5206 +1304.6240 +1304.7199 Complex Variables +1305.1035 Phenomenology +1305.1076 Number Theory +1305.2574 Phenomenology +1305.3741 Mesoscale and Nanoscale Physics +1305.5015 Quantum Gases +1305.7368 Strongly Correlated Electrons +1306.0588 Phenomenology +1306.0775 Combinatorics +1306.1000 Analysis of PDEs +1306.1517 Theory +1306.3750 Methodology +1307.0674 Number Theory +1307.0955 Strongly Correlated Electrons +1307.2351 Statistical Mechanics +1307.4749 Theory +1308.0259 +1308.1449 Molecular Networks +1308.3982 Operator Algebras +1308.6738 Phenomenology +1308.6759 Pricing of Securities +1309.2228 +1309.2807 Optics +1309.4348 Disordered Systems and Neural Networks +1309.5017 +1310.1044 Mesoscale and Nanoscale Physics +1310.2399 Analysis of PDEs +1310.3172 Mesoscale and Nanoscale Physics +1310.3670 Statistical Mechanics +1310.4070 Statistical Mechanics +1310.4855 Mesoscale and Nanoscale Physics +1310.4983 Quantum Gases +1311.0440 +1311.0659 Mesoscale and Nanoscale Physics +1311.0687 Differential Geometry +1311.0993 Strongly Correlated Electrons +1311.1251 Combinatorics +1311.1269 Superconductivity +1311.2035 Numerical Analysis +1311.3662 Cosmology and Nongalactic Astrophysics +1311.3892 Quantum Gases +1311.4010 Instrumentation and Methods for Astrophysics +1311.4736 Theory +1311.7035 Cosmology and Nongalactic Astrophysics +1312.0204 Combinatorics +1312.0832 +1312.2396 Mesoscale and Nanoscale Physics +1312.3854 Algebraic Geometry +1312.5806 Analysis of PDEs +1312.6910 +1401.2245 Phenomenology +1401.3620 General Mathematics +1401.4022 +1401.5003 Theory +1401.5555 Information Theory +1401.5714 Discrete Mathematics +1401.7108 Differential Geometry +1401.7192 Differential Geometry +1401.7323 Optimization and Control +1401.7478 Cosmology and Nongalactic Astrophysics +1401.7666 Astrophysics of Galaxies +1401.7680 +1401.7683 Complex Variables +1401.7686 Methodology +1401.7687 Differential Geometry +1401.7689 Mesoscale and Nanoscale Physics +1401.7704 Spectral Theory +1401.7705 Materials Science +1401.7708 Group Theory +1401.7709 Learning +1401.7710 Phenomenology +1401.7712 Soft Condensed Matter +1401.7713 Computer Vision and Pattern Recognition +1401.7714 Data Structures and Algorithms +1401.7717 Networking and Internet Architecture +1401.7719 Group Theory +1401.7727 Learning +1401.7733 Databases +1401.7734 Optics +1401.7735 Human-Computer Interaction +1401.7737 Number Theory +1401.7739 Optimization and Control +1401.7740 +1401.7741 Data Structures and Algorithms +1401.7743 Computer Vision and Pattern Recognition +1401.7745 Systems and Control +1401.7748 Category Theory +1401.7751 Representation Theory +1401.7753 Instrumentation and Detectors +1401.7755 Analysis of PDEs +1401.7759 Algebraic Geometry +1401.7761 Soft Condensed Matter +1401.7767 Astrophysics of Galaxies +1401.7768 Instrumentation and Methods for Astrophysics +1401.7775 K-Theory and Homology +1401.7777 Algebraic Geometry +1401.7783 Soft Condensed Matter +1401.7786 Complex Variables +1401.7788 Lattice +1401.7794 Probability +1401.7797 Rings and Algebras +1401.7798 Optimization and Control +1401.7799 Software Engineering +1401.7801 Statistics Theory +1401.7804 Phenomenology +1401.7807 Logic in Computer Science +1401.7814 Software Engineering +1401.7815 Materials Science +1401.7820 +1401.7821 Human-Computer Interaction +1401.7827 K-Theory and Homology +1401.7828 Information Theory +1401.7837 Atmospheric and Oceanic Physics +1401.7839 Analysis of PDEs +1401.7841 Analysis of PDEs +1401.7842 Numerical Analysis +1401.7843 +1401.7845 Earth and Planetary Astrophysics +1401.7846 Information Theory +1401.7849 Mesoscale and Nanoscale Physics +1401.7851 High Energy Astrophysical Phenomena +1401.7855 Materials Science +1401.7856 Phenomenology +1401.7858 Phenomenology +1401.7859 +1401.7862 Solar and Stellar Astrophysics +1401.7863 Dynamical Systems +1401.7864 Pattern Formation and Solitons +1401.7865 +1401.7869 Dynamical Systems +1401.7872 Biological Physics +1401.7875 Mesoscale and Nanoscale Physics +1401.7881 Plasma Physics +1401.7882 Optimization and Control +1401.7884 +1401.7887 Biomolecules +1401.7889 Combinatorics +1401.7890 Social and Information Networks +1401.7893 Statistics Theory +1401.7898 Learning +1401.7902 Instrumentation and Methods for Astrophysics +1401.7904 Numerical Analysis +1401.7905 Probability +1401.7906 General Physics +1401.7907 Number Theory +1401.7908 Classical Analysis and ODEs +1401.7909 Social and Information Networks +1401.7918 General Physics +1401.7924 Materials Science +1401.7930 Chemical Physics +1401.7937 Phenomenology +1401.7938 Analysis of PDEs +1401.7939 +1401.7943 Numerical Analysis +1401.7955 Number Theory +1401.7956 Analysis of PDEs +1401.7960 History and Philosophy of Physics +1401.7962 Mathematical Software +1401.7970 Computer Science and Game Theory +1401.7976 Atomic Physics +1401.7979 Number Theory +1401.7980 Theory +1401.7981 Number Theory +math/0406379 Probability +0801.4900 Statistical Mechanics +0803.0438 Populations and Evolution +0804.1485 Representation Theory +0805.3791 Combinatorics +0807.4812 Statistical Mechanics +0808.2453 Soft Condensed Matter +0808.3854 Populations and Evolution +0911.1467 Combinatorics +1001.2719 Algebraic Geometry +1003.5966 Information Theory +1004.5453 Dynamical Systems +1007.1401 Probability +1008.1162 Populations and Evolution +1009.4432 Number Theory +1012.2265 Differential Geometry +1102.4644 Number Theory +1103.5132 Algebraic Geometry +1105.5286 Dynamical Systems +1106.4279 +1108.0910 +1109.0517 Dynamical Systems +1109.2254 Combinatorics +1110.1865 Geometric Topology +1112.3070 Algebraic Geometry +1202.3792 Functional Analysis +1204.3958 Algebraic Geometry +1204.5459 Methodology +1205.6946 Probability +1207.4508 Geometric Topology +1207.5087 Optimization and Control +1208.5666 Geometric Topology +1209.0731 Statistical Mechanics +1209.0776 Strongly Correlated Electrons +1209.3104 General Physics +1210.0018 Statistical Mechanics +1210.3085 Mesoscale and Nanoscale Physics +1211.2223 Analysis of PDEs +1211.3294 +1211.3558 +1211.3907 Optimization and Control +1211.6609 Quantum Gases +1212.2212 +1212.3386 +1301.5623 Group Theory +1302.0430 History and Overview +1302.5855 Popular Physics +1303.0865 +1303.2992 Optics +1303.7415 Symplectic Geometry +1304.0053 Computational Complexity +1304.5005 Probability +1305.0749 Mesoscale and Nanoscale Physics +1305.1061 Combinatorics +1305.1569 Mesoscale and Nanoscale Physics +1305.2069 Theory +1305.2694 Cryptography and Security +1305.3184 Computational Finance +1305.3312 Methodology +1305.5772 Phenomenology +1306.3904 +1306.5382 Geometric Topology +1306.5953 +1306.6698 +1307.0992 Combinatorics +1307.2323 +1307.4198 High Energy Astrophysical Phenomena +1307.4862 Mesoscale and Nanoscale Physics +1307.6227 +1307.8317 Phenomenology +1308.1369 Soft Condensed Matter +1308.1424 +1308.1446 Populations and Evolution +1308.1998 Rings and Algebras +1308.3201 Statistics Theory +1308.4275 Numerical Analysis +1308.5827 Statistical Mechanics +1308.5882 Optimization and Control +1308.6336 +1309.4435 +1309.5961 Experiment +1310.0490 Mesoscale and Nanoscale Physics +1310.2546 Dynamical Systems +1310.5872 Cosmology and Nongalactic Astrophysics +1311.1469 Strongly Correlated Electrons +1311.2049 Quantum Gases +1311.2202 Theory +1311.2522 Classical Analysis and ODEs +1311.3678 Solar and Stellar Astrophysics +1311.5032 Analysis of PDEs +1311.5420 Phenomenology +1311.6348 +1312.0185 Phenomenology +1312.0905 +1312.1867 Combinatorics +1312.2765 Classical Analysis and ODEs +1312.3093 Strongly Correlated Electrons +1312.3130 Strongly Correlated Electrons +1312.3702 Information Theory +1312.4094 Methodology +1312.5003 +1312.6515 Differential Geometry +1312.7057 Computational Finance +1312.7078 Experiment +1401.0318 Statistical Mechanics +1401.1526 Cryptography and Security +1401.2326 Probability +1401.2450 Materials Science +1401.3703 Strongly Correlated Electrons +1401.4584 Mesoscale and Nanoscale Physics +1401.5088 +1402.0061 +1402.0447 +1402.0602 +1402.0807 Strongly Correlated Electrons +1402.1991 Disordered Systems and Neural Networks +1402.2889 Fluid Dynamics +1402.3171 +1402.3276 Statistical Mechanics +1402.3536 Phenomenology +1402.5424 Theory +1402.5434 Phenomenology +1402.5479 Materials Science +1402.6087 Strongly Correlated Electrons +1402.6111 Representation Theory +1402.6756 Theory +1402.7202 +1403.0883 Strongly Correlated Electrons +1403.0972 Materials Science +1403.1209 Strongly Correlated Electrons +1403.2768 +1403.2910 Mesoscale and Nanoscale Physics +1403.2946 Statistical Mechanics +1403.3203 +1403.3421 Phenomenology +1403.3637 +1403.4576 Lattice +1403.5530 Other Condensed Matter +1403.5732 Cosmology and Nongalactic Astrophysics +1403.5837 +1403.6546 Phenomenology +1403.6826 Phenomenology +1403.7220 Physics Education +1403.7377 +1403.7386 Phenomenology +1403.7575 +1403.7900 Biological Physics +1403.8026 +1404.0680 Cosmology and Nongalactic Astrophysics +1404.0692 +1404.1374 Materials Science +1404.1433 +1404.1487 Fluid Dynamics +1404.3088 Complex Variables +1404.3453 +1404.3690 Cosmology and Nongalactic Astrophysics +1404.3948 Combinatorics +1404.3949 Combinatorics +1404.4975 Distributed, Parallel, and Cluster Computing +1404.5112 Cosmology and Nongalactic Astrophysics +1404.5635 Theory +1404.6174 Atomic Physics +1404.6555 Cosmology and Nongalactic Astrophysics +1404.7634 Data Structures and Algorithms +1404.7848 Cosmology and Nongalactic Astrophysics +1405.0262 +1405.0270 Theory +1405.0566 Phenomenology +1405.0711 Phenomenology +1405.1398 Quantum Gases +1405.1632 Strongly Correlated Electrons +1405.1892 Superconductivity +1405.1981 Mesoscale and Nanoscale Physics +1405.2261 Mesoscale and Nanoscale Physics +1405.2274 Phenomenology +1405.2927 Theory +1405.3091 Theory +1405.3808 Strongly Correlated Electrons +1405.3811 Theory +1405.5141 Materials Science +1405.6916 Lattice +1405.6976 High Energy Astrophysical Phenomena +1405.7128 Mesoscale and Nanoscale Physics +1406.0093 Phenomenology +1406.0350 +1406.0837 Superconductivity +1406.1205 Theory +1406.1615 Cosmology and Nongalactic Astrophysics +1406.1937 Statistical Mechanics +1406.2355 Phenomenology +1406.4517 Strongly Correlated Electrons +1406.5041 Soft Condensed Matter +1406.5269 Materials Science +1406.5792 Classical Physics +1406.7398 Computational Complexity +1407.2029 Cryptography and Security +1407.3002 Theory +1407.3138 Atomic Physics +1407.3268 Digital Libraries +1407.4104 Metric Geometry +1407.4934 Analysis of PDEs +1407.5254 Statistical Finance +1407.6868 Phenomenology +1407.7194 Statistics Theory +1407.7256 Theory +1407.8289 Learning +1408.0071 Differential Geometry +1408.0088 Statistical Mechanics +1408.0445 Data Analysis, Statistics and Probability +1408.0528 Databases +1408.0689 Neural and Evolutionary Computing +1408.0804 Strongly Correlated Electrons +1408.0809 Logic in Computer Science +1408.0812 Distributed, Parallel, and Cluster Computing +1408.0814 Computer Vision and Pattern Recognition +1408.0815 Analysis of PDEs +1408.0818 Distributed, Parallel, and Cluster Computing +1408.0820 Analysis of PDEs +1408.0821 Optics +1408.0822 Probability +1408.0828 Computational Complexity +1408.0832 Optics +1408.0833 Probability +1408.0836 Physics Education +1408.0837 Rings and Algebras +1408.0838 Learning +1408.0841 Optics +1408.0849 Probability +1408.0852 Theory +1408.0859 Algebraic Geometry +1408.0861 Instrumentation and Detectors +1408.0863 Materials Science +1408.0867 +1408.0871 Rings and Algebras +1408.0874 Probability +1408.0880 Number Theory +1408.0882 Complex Variables +1408.0885 Differential Geometry +1408.0888 Strongly Correlated Electrons +1408.0894 +1408.0898 Probability +1408.0900 Logic +1408.0908 Mesoscale and Nanoscale Physics +1408.0914 Phenomenology +1408.0917 Mesoscale and Nanoscale Physics +1408.0920 Classical Analysis and ODEs +1408.0922 Pattern Formation and Solitons +1408.0926 Databases +1408.0928 Quantum Gases +1408.0931 Instrumentation and Methods for Astrophysics +1408.0932 Theory +1408.0933 Probability +1408.0939 Optics +1408.0941 +1408.0957 Logic in Computer Science +1408.0962 Mesoscale and Nanoscale Physics +1408.0965 Data Structures and Algorithms +1408.0967 Machine Learning +1408.0968 Group Theory +1408.0970 Experiment +1408.0972 Machine Learning +1408.0974 Optimization and Control +1408.0976 Combinatorics +1408.0979 Distributed, Parallel, and Cluster Computing +1408.0982 Hardware Architecture +1408.0985 Physics and Society +1408.0988 Combinatorics +1408.0989 Medical Physics +1408.0990 Operating Systems +1408.0991 Group Theory +1408.0996 Chemical Physics +1408.0997 Theory +1408.0998 Neural and Evolutionary Computing +1408.1002 Molecular Networks +1408.1004 Medical Physics +1408.1017 Computer Science and Game Theory +1408.1019 Number Theory +1408.1021 Distributed, Parallel, and Cluster Computing +1408.1025 Networking and Internet Architecture +1408.1026 Mesoscale and Nanoscale Physics +1408.1032 Computers and Society +1408.1035 Statistical Mechanics +1408.1037 Statistical Mechanics +1408.1046 Superconductivity +1408.1052 Networking and Internet Architecture +1408.1056 Analysis of PDEs +1408.1057 Operator Algebras +1408.1060 Fluid Dynamics +1408.1066 Mesoscale and Nanoscale Physics +1408.1068 Software Engineering +1408.1069 Biological Physics +1408.1070 Logic +1408.1072 Category Theory +1408.1073 Optimization and Control +1408.1074 History and Overview +1408.1076 Cryptography and Security +1408.1079 Combinatorics +1408.1083 Number Theory +math/0603492 Probability +math/0612808 Combinatorics +1403.4133 Soft Condensed Matter +0705.1671 Atomic Physics +0708.0129 Superconductivity +0711.1321 Plasma Physics +0803.0595 General Mathematics +0806.2135 Group Theory +0807.0167 Group Theory +0811.0531 +0811.0539 +0907.4620 Probability +1001.4688 +1009.5267 +1102.1247 Information Theory +1102.4529 +1104.1942 +1104.4182 Theory +1105.2799 Group Theory +1107.3320 Geometric Topology +1201.1546 Numerical Analysis +1201.3875 Group Theory +1202.2122 Astrophysics of Galaxies +1203.2842 Experiment +1204.2835 Astrophysics of Galaxies +1206.4334 Group Theory +1207.4647 Numerical Analysis +1208.1678 Cosmology and Nongalactic Astrophysics +1209.0459 Astrophysics of Galaxies +1209.4028 +1210.3960 +1211.6937 Functional Analysis +1212.1957 Representation Theory +1212.2078 Differential Geometry +1212.4722 Differential Geometry +1301.0841 Cosmology and Nongalactic Astrophysics +1301.1287 Numerical Analysis +1301.2600 Earth and Planetary Astrophysics +1301.4500 Cosmology and Nongalactic Astrophysics +1301.7278 +1302.0220 +1302.1210 +1302.2506 Algebraic Geometry +1302.6878 Materials Science +1303.3015 Theory +1303.6189 Optimization and Control +1304.7277 Cosmology and Nongalactic Astrophysics +1305.0537 Algebraic Geometry +1305.7039 +1307.2836 Solar and Stellar Astrophysics +1307.4504 Analysis of PDEs +1307.8248 Numerical Analysis +1308.2532 Populations and Evolution +1308.4371 Cryptography and Security +1308.5209 +1308.6177 Numerical Analysis +1308.6661 Disordered Systems and Neural Networks +1308.6691 Pattern Formation and Solitons +1309.0005 +1309.0581 Strongly Correlated Electrons +1309.3517 Mesoscale and Nanoscale Physics +1309.6415 Machine Learning +1310.0109 Strongly Correlated Electrons +1310.0741 Physics and Society +1310.6583 Number Theory +1311.0206 +1311.2073 Cosmology and Nongalactic Astrophysics +1311.3097 Materials Science +1311.3245 Phenomenology +1312.0622 Theory +1312.2273 Logic +1401.1431 Number Theory +1401.6555 +1401.6712 Algebraic Geometry +1402.1091 Strongly Correlated Electrons +1402.2138 Experiment +1402.2602 Optics +1402.4511 Space Physics +1402.6321 Strongly Correlated Electrons +1402.6864 +1403.0771 +1403.2140 Digital Libraries +1403.2952 Quantum Gases +1403.5198 Optimization and Control +1403.6605 Functional Analysis +1403.6954 Algebraic Geometry +1403.7503 Phenomenology +1403.7556 Populations and Evolution +1404.1238 Machine Learning +1404.1970 Analysis of PDEs +1404.2684 +1404.5518 Phenomenology +1404.7726 Biological Physics +1405.0775 Phenomenology +1405.2442 Optimization and Control +1405.2495 +1405.3424 Theory +1405.5030 Mesoscale and Nanoscale Physics +1405.5235 +1405.5333 Probability +1405.5368 +1405.6625 Analysis of PDEs +1405.7654 Phenomenology +1406.0072 Cosmology and Nongalactic Astrophysics +1406.0621 Group Theory +1406.0789 Populations and Evolution +1406.1361 Phenomenology +1406.1654 Probability +1406.2199 Computer Vision and Pattern Recognition +1406.5652 +1406.6620 Economics +1407.0664 Operator Algebras +1407.0691 Mesoscale and Nanoscale Physics +1407.0835 Quantum Gases +1407.1016 Phenomenology +1407.1802 Optics +1407.2560 Mesoscale and Nanoscale Physics +1407.4882 Quantum Gases +1407.5999 Phenomenology +1407.6635 Computational Physics +1407.7163 Dynamical Systems +1407.7567 +1407.8152 +1408.0535 Statistical Mechanics +1408.0620 Distributed, Parallel, and Cluster Computing +1408.1505 Theory +1408.2258 Strongly Correlated Electrons +1408.2310 Superconductivity +1408.3950 +1408.4013 Instrumentation and Detectors +1408.4027 Quantum Gases +1408.5211 Combinatorics +1408.6023 +1408.7107 Spectral Theory +1409.0341 +1409.0388 Mesoscale and Nanoscale Physics +1409.1242 Quantum Gases +1409.1535 +1409.2552 Machine Learning +1409.2564 Phenomenology +1409.2662 Functional Analysis +1409.3666 Numerical Analysis +1409.4260 +1409.4726 Group Theory +1409.7084 Instrumentation and Methods for Astrophysics +1409.7384 Learning +1409.7539 Theory +1409.8088 Analysis of PDEs +1409.8120 +1409.8404 Formal Languages and Automata Theory +1410.0361 Earth and Planetary Astrophysics +1410.0762 Quantitative Methods +1410.0792 +1410.2506 Superconductivity +1410.2636 Dynamical Systems +1410.3395 Chemical Physics +1410.3738 Phenomenology +1410.3913 High Energy Astrophysical Phenomena +1410.4540 Strongly Correlated Electrons +1410.4948 Theory +1410.6995 Lattice +1410.7054 +1410.7260 Differential Geometry +1410.7406 +1410.7905 Algebraic Geometry +1411.0800 Statistics Theory +1411.1119 Learning +1411.1232 Superconductivity +1411.1361 Digital Libraries +1411.1521 Geometric Topology +1411.2023 +1411.2071 Number Theory +1411.2235 Probability +1411.2636 Statistics Theory +1411.2679 Social and Information Networks +1411.2913 Phenomenology +1411.2918 Information Theory +1411.2965 Computational Physics +1411.2981 Number Theory +1411.2983 Statistical Mechanics +1411.2984 Physics and Society +1411.2988 Experiment +1411.2996 Materials Science +1411.2997 Combinatorics +1411.2998 High Energy Astrophysical Phenomena +1411.2999 Materials Science +1411.3005 Representation Theory +1411.3006 Materials Science +1411.3008 +1411.3010 Computational Complexity +1411.3012 Functional Analysis +1411.3015 Logic in Computer Science +1411.3017 Information Theory +1411.3020 Probability +1411.3022 Combinatorics +1411.3032 Probability +1411.3036 Quantum Gases +1411.3038 Category Theory +1411.3039 Analysis of PDEs +1411.3041 Computer Vision and Pattern Recognition +1411.3043 Quantum Gases +1411.3044 Computational Geometry +1411.3046 Space Physics +1411.3049 Information Theory +1411.3050 Disordered Systems and Neural Networks +1411.3053 Differential Geometry +1411.3056 Combinatorics +1411.3061 Information Theory +1411.3066 Chaotic Dynamics +1411.3067 Quantum Algebra +1411.3068 Lattice +1411.3072 Plasma Physics +1411.3079 Algebraic Geometry +1411.3082 Atomic Physics +1411.3086 +1411.3087 Chemical Physics +1411.3089 Cryptography and Security +1411.3090 Geometric Topology +1411.3095 +1411.3097 Classical Analysis and ODEs +1411.3099 Theory +1411.3101 Mesoscale and Nanoscale Physics +1411.3103 Strongly Correlated Electrons +1411.3107 Systems and Control +1411.3109 Disordered Systems and Neural Networks +1411.3110 Complex Variables +1411.3111 Robotics +1411.3115 Analysis of PDEs +1411.3120 Classical Analysis and ODEs +1411.3124 Cryptography and Security +1411.3125 Solar and Stellar Astrophysics +1411.3126 Solar and Stellar Astrophysics +1411.3129 Strongly Correlated Electrons +1411.3135 +1411.3136 +1411.3137 Lattice +1411.3141 Lattice +1411.3142 +1411.3144 Logic +1411.3145 Statistics Theory +1411.3146 Computation and Language +1411.3147 Complex Variables +1411.3151 Theory +1411.3154 Analysis of PDEs +1411.3156 Metric Geometry +1411.3162 Complex Variables +1411.3166 Materials Science +1411.3170 Differential Geometry +1411.3181 Strongly Correlated Electrons +1411.3184 Analysis of PDEs +1411.3185 Solar and Stellar Astrophysics +1411.3187 Strongly Correlated Electrons +1411.3188 History and Overview +1411.3195 Dynamical Systems +1411.3197 Artificial Intelligence +1411.3201 Distributed, Parallel, and Cluster Computing +1411.3203 Phenomenology +1411.3206 Analysis of PDEs +1411.3207 Materials Science +1411.3208 +1411.3210 Lattice +1411.3212 Databases +1411.3216 Quantum Gases +1411.3223 +1411.3226 Numerical Analysis +1411.3228 Complex Variables +1411.3232 Mesoscale and Nanoscale Physics +1411.3243 Lattice +1411.3244 General Mathematics +1411.3247 Spectral Theory +1411.3248 Dynamical Systems +1411.3249 Materials Science +1411.3256 Theory +1411.3257 Soft Condensed Matter +1411.3261 Statistical Mechanics +1411.3262 Logic +1411.3269 +1411.3271 Information Theory +1411.3273 Distributed, Parallel, and Cluster Computing +1411.3274 Differential Geometry +1411.3276 Differential Geometry +1411.3277 Neural and Evolutionary Computing +1411.3278 Group Theory +1411.3283 Phenomenology +1411.3284 Theory +1411.3294 Cryptography and Security +1411.3296 Experiment +1411.3301 Superconductivity +1411.3302 Learning +1411.3305 Systems and Control +1411.3311 Fluid Dynamics +1411.3315 Computation and Language +1411.3319 Phenomenology +1411.3320 Artificial Intelligence +gr-qc/0508077 +math/0501239 Differential Geometry +quant-ph/0211049 +quant-ph/0304025 +quant-ph/0309221 +quant-ph/0507133 +quant-ph/0611072 +quant-ph/0611227 +0706.3219 General Physics +0806.3250 Theory +0807.0621 Statistical Mechanics +0810.4460 Programming Languages +0901.1215 Cosmology and Nongalactic Astrophysics +1011.5339 Number Theory +1105.1475 Methodology +1105.2278 Statistical Mechanics +1110.6212 Representation Theory +1111.6899 Methodology +1112.2106 Combinatorics +1202.4096 Symplectic Geometry +1203.5514 Solar and Stellar Astrophysics +1205.0565 +1206.2430 Analysis of PDEs +1206.5333 Computation and Language +1207.0684 Geometric Topology +1207.2939 +1208.3347 Representation Theory +1208.3728 Machine Learning +1208.3860 Theory +1209.0701 Phenomenology +1209.5353 Neurons and Cognition +1210.1651 Logic +1210.3408 Representation Theory +1210.6003 Applications +1210.6902 +1211.2011 Algebraic Geometry +1211.2548 Computation +1211.7138 Computational Complexity +1212.1036 Cell Behavior +1212.1073 Computer Vision and Pattern Recognition +1212.4252 Dynamical Systems +1212.6786 +1301.3334 Combinatorics +1301.4295 Combinatorics +1301.7161 Statistics Theory +1302.2823 Differential Geometry +1302.4385 Machine Learning +1302.4695 Optimization and Control +1302.5470 Mesoscale and Nanoscale Physics +1302.5493 Methodology +1303.1719 Information Theory +1303.1853 Exactly Solvable and Integrable Systems +1304.1872 Number Theory +1304.2098 Strongly Correlated Electrons +1304.5752 Quantum Algebra +1305.0119 Populations and Evolution +1305.1879 Superconductivity +1305.2097 Optics +1305.5284 Phenomenology +1305.5503 +1305.7168 Representation Theory +1306.0725 Representation Theory +1306.1091 Learning +1306.1169 Numerical Analysis +1306.3365 Quantum Gases +1306.3651 Cosmology and Nongalactic Astrophysics +1306.3712 Quantum Algebra +1306.4166 +1306.6653 Functional Analysis +1307.3475 Strongly Correlated Electrons +1307.5695 Theory +1307.5812 +1307.6436 Populations and Evolution +1307.7460 Combinatorics +1308.0792 Phenomenology +1308.1425 Atomic Physics +1308.1492 Pricing of Securities +1308.2765 Statistics Theory +1308.2766 Statistics Theory +1308.3570 +1308.3767 Phenomenology +1308.3911 Physics Education +1308.4319 Phenomenology +1308.5921 Cosmology and Nongalactic Astrophysics +1308.6273 Data Structures and Algorithms +1309.0413 Algebraic Geometry +1309.1426 Symplectic Geometry +1309.2026 Phenomenology +1309.2166 +1309.4616 Numerical Analysis +1309.5642 Algebraic Topology +1309.5880 +1309.6111 Applications +1309.6461 +1309.6810 Analysis of PDEs +1310.0702 +1310.2465 Dynamical Systems +1310.3885 +1310.4956 +1310.5317 Combinatorics +1310.5976 +1310.6646 Plasma Physics +1310.6919 Optimization and Control +1310.7215 Numerical Analysis +1310.7274 Numerical Analysis +1311.0135 +1311.0230 Cellular Automata and Lattice Gases +1311.1102 +1311.1128 +1311.2509 Differential Geometry +1311.2775 Materials Science +1311.3219 Metric Geometry +1311.3758 Soft Condensed Matter +1311.4317 Multimedia +1311.4500 Statistics Theory +1311.5350 Soft Condensed Matter +1311.5379 Materials Science +1311.6203 +1311.7300 Statistical Mechanics +1311.7320 Methodology +1312.2045 Information Theory +1312.2346 Experiment +1312.3034 Combinatorics +1312.3809 Strongly Correlated Electrons +1312.4605 Computation +1312.4784 Algebraic Geometry +1312.5924 High Energy Astrophysical Phenomena +1312.6214 Learning +1312.6523 Theory +1312.7229 +1312.7597 Materials Science +1312.7676 +1401.0290 Materials Science +1401.0775 Group Theory +1401.0980 Statistical Mechanics +1401.1755 Populations and Evolution +1401.1769 Cosmology and Nongalactic Astrophysics +1401.2199 +1401.2533 +1401.4868 +1401.5352 +1401.5544 Dynamical Systems +1401.6051 General Physics +1401.6109 +1401.6459 Cosmology and Nongalactic Astrophysics +1401.6929 Computational Physics +1401.6951 Physics and Society +1401.7266 Plasma Physics +1401.7549 +1401.7888 Phenomenology +1402.1225 Physics and Society +1402.2344 Functional Analysis +1402.2431 Theory +1402.2864 Systems and Control +1402.3441 Soft Condensed Matter +1402.3604 Cosmology and Nongalactic Astrophysics +1402.4091 Instrumentation and Methods for Astrophysics +1402.4273 Metric Geometry +1402.4363 +1402.4437 Learning +1402.4639 +1402.5329 Atomic Physics +1402.5719 +1403.0497 Strongly Correlated Electrons +1403.1339 Experiment +1403.2485 Information Theory +1403.2608 Cosmology and Nongalactic Astrophysics +1403.2907 Chaotic Dynamics +1403.4745 Optics +1403.5212 High Energy Astrophysical Phenomena +1403.5716 +1403.6017 +1403.6704 Superconductivity +1403.7557 Number Theory +1403.7632 Mesoscale and Nanoscale Physics +1404.3352 Complex Variables +1404.3515 Solar and Stellar Astrophysics +1404.5195 Phenomenology +1404.5654 Mesoscale and Nanoscale Physics +1404.5838 Neurons and Cognition +1404.6047 Mesoscale and Nanoscale Physics +1404.7252 Classical Analysis and ODEs +1404.7385 Quantum Gases +1405.0276 Other Computer Science +1405.0334 Superconductivity +1405.0453 Dynamical Systems +1405.1586 Phenomenology +1405.1885 Information Theory +1405.2232 Computational Physics +1405.2453 Soft Condensed Matter +1405.3769 Risk Management +1405.4025 Number Theory +1405.4028 Logic in Computer Science +1405.4373 Materials Science +1405.4615 Computational Physics +1405.4617 Phenomenology +1405.5139 Logic +1405.5143 Statistics Theory +1405.5308 Analysis of PDEs +1405.5732 Computer Vision and Pattern Recognition +1405.5793 Other Computer Science +1405.5889 Materials Science +1405.6036 Optics +1405.6166 Computer Vision and Pattern Recognition +1405.6199 Superconductivity +1405.6200 Distributed, Parallel, and Cluster Computing +1405.6201 Materials Science +1405.6206 Solar and Stellar Astrophysics +1405.6208 Astrophysics of Galaxies +1405.6210 Statistics Theory +1405.6214 Number Theory +1405.6215 Distributed, Parallel, and Cluster Computing +1405.6216 Networking and Internet Architecture +1405.6217 Networking and Internet Architecture +1405.6218 Networking and Internet Architecture +1405.6219 High Energy Astrophysical Phenomena +1405.6220 High Energy Astrophysical Phenomena +1405.6221 Analysis of PDEs +1405.6223 Learning +1405.6225 Optics +1405.6228 Networking and Internet Architecture +1405.6231 Statistics Theory +1405.6233 Materials Science +1405.6249 Information Theory +1405.6252 Representation Theory +1405.6256 Number Theory +1405.6258 Populations and Evolution +1405.6261 Computer Vision and Pattern Recognition +1405.6263 Cryptography and Security +1405.6265 Probability +1405.6266 Number Theory +1405.6267 +1405.6268 Applications +1405.6273 Cosmology and Nongalactic Astrophysics +1405.6275 Computer Vision and Pattern Recognition +1405.6280 Number Theory +1405.6281 +1405.6282 Cryptography and Security +1405.6285 Information Retrieval +1405.6286 Information Theory +1405.6287 Information Retrieval +1405.6288 Group Theory +1405.6290 Materials Science +1405.6293 Computation and Language +1405.6296 Adaptation and Self-Organizing Systems +1405.6302 +1405.6304 History and Overview +1405.6305 Probability +1405.6315 Combinatorics +1405.6319 +1405.6327 Physics Education +1405.6328 Physics Education +1405.6330 Materials Science +1405.6332 Dynamical Systems +1405.6334 Physics Education +1405.6335 Software Engineering +1405.6336 Earth and Planetary Astrophysics +1405.6337 Earth and Planetary Astrophysics +1405.6341 Robotics +1405.6344 Numerical Analysis +1405.6346 Solar and Stellar Astrophysics +1405.6353 Information Theory +1405.6356 General Topology +1405.6359 Cosmology and Nongalactic Astrophysics +1405.6360 Networking and Internet Architecture +1405.6362 Distributed, Parallel, and Cluster Computing +1405.6364 Mesoscale and Nanoscale Physics +1405.6368 Statistical Mechanics +1405.6369 Artificial Intelligence +1405.6378 Combinatorics +1405.6382 High Energy Astrophysical Phenomena +1405.6383 Optics +1405.6384 Populations and Evolution +1405.6386 Soft Condensed Matter +1405.6388 Astrophysics of Galaxies +1405.6389 Phenomenology +1405.6390 Representation Theory +1405.6392 Applications +1405.6397 Computation +1405.6398 Functional Analysis +1405.6405 Astrophysics of Galaxies +1405.6406 Mesoscale and Nanoscale Physics +1405.6410 Geometric Topology +1405.6411 Populations and Evolution +1405.6416 Other Statistics +1405.6421 Rings and Algebras +1405.6424 Numerical Analysis +1405.6429 +1405.6430 Algebraic Geometry +1405.6432 Discrete Mathematics +1405.6439 +1405.6442 Physics Education +1405.6443 Operator Algebras +1405.6444 Learning +1405.6449 Fluid Dynamics +1405.6450 Information Theory +1405.6462 Combinatorics +1405.6464 Instrumentation and Methods for Astrophysics +1405.6467 Optimization and Control +1405.6472 Computer Vision and Pattern Recognition +1405.6480 Atomic Physics +1405.6481 History and Overview +1405.6482 Differential Geometry +1405.6485 Atomic and Molecular Clusters +1405.6489 Biological Physics +1405.6490 Distributed, Parallel, and Cluster Computing +1405.6491 Statistical Mechanics +1405.6497 Optics +1405.6499 Number Theory +1405.6501 Materials Science +1405.6506 +1405.6508 +1405.6510 Numerical Analysis +1405.6514 Probability +1405.6521 Commutative Algebra +1405.6527 Combinatorics +1405.6533 Materials Science +1405.6535 Statistics Theory +1405.6537 Probability +1405.6539 Social and Information Networks +1405.6547 Optics +1405.6550 +1405.6555 Statistics Theory +1405.6560 Combinatorics +1405.6561 Differential Geometry +1405.6562 Computer Science and Game Theory +1405.6567 Phenomenology +1405.6573 Computer Science and Game Theory +1405.6578 Multiagent Systems +1405.6580 Probability +1405.6584 Statistics Theory +1405.6594 Information Theory +1405.6597 +1405.6598 Phenomenology +1405.6599 Mesoscale and Nanoscale Physics +1405.6603 Algebraic Geometry +1405.6610 Chemical Physics +1405.6618 Combinatorics +1405.6619 Combinatorics +1405.6620 Combinatorics +1405.6621 Numerical Analysis +1405.6627 Human-Computer Interaction +1405.6632 +1405.6633 Mesoscale and Nanoscale Physics +1405.6635 High Energy Astrophysical Phenomena +1405.6638 Solar and Stellar Astrophysics +1405.6643 Phenomenology +1405.6660 Computers and Society +1405.6661 Multimedia +1405.6662 Artificial Intelligence +1405.6666 Analysis of PDEs +1405.6667 Information Retrieval +1405.6678 Logic in Computer Science +1405.6681 Quantum Algebra +1405.6682 Computation and Language +1405.6686 Representation Theory +1405.6687 Differential Geometry +1405.6690 +1405.6691 Number Theory +1405.6697 +1405.6699 Logic +1405.6700 Logic +1405.6701 Earth and Planetary Astrophysics +gr-qc/0508048 +math-ph/0507021 +q-alg/9505011 Quantum Algebra +q-alg/9505014 Quantum Algebra +q-alg/9505016 Quantum Algebra +q-alg/9510002 Quantum Algebra +q-alg/9606020 Quantum Algebra +q-alg/9611028 Quantum Algebra +q-bio/0502020 Biomolecules +1007.2914 Probability +1009.0893 Computation +1010.3876 Group Theory +1011.0847 Materials Science +1012.1086 Computation +1107.0845 Computer Vision and Pattern Recognition +1108.0394 Symplectic Geometry +1111.3891 Theory +1205.3295 Fluid Dynamics +1206.3794 +1207.3782 +1207.5491 Probability +1208.1620 Dynamical Systems +1209.5061 Mesoscale and Nanoscale Physics +1209.6458 Dynamical Systems +1210.2211 Physics and Society +1210.2354 Methodology +1210.2846 Strongly Correlated Electrons +1210.3457 +1211.1174 Statistics Theory +1211.4174 Information Theory +1211.5163 Probability +1212.2255 +1301.4196 Functional Analysis +1301.5217 Phenomenology +1301.6999 Combinatorics +1302.6907 Statistical Mechanics +1303.0728 Data Structures and Algorithms +1303.3133 Trading and Market Microstructure +1303.3706 Statistical Mechanics +1303.4195 Materials Science +1304.1076 Differential Geometry +1304.3675 Soft Condensed Matter +1304.4779 Geometric Topology +1305.3963 Chemical Physics +1305.6388 Operator Algebras +1306.1721 Analysis of PDEs +1306.2055 +1306.3661 +1306.5557 +1307.0160 Logic +1307.1552 Methodology +1307.3453 Phenomenology +1307.4775 Strongly Correlated Electrons +1307.5768 +1307.6460 Phenomenology +1307.7465 Fluid Dynamics +1307.7910 Classical Analysis and ODEs +1308.0713 Mesoscale and Nanoscale Physics +1308.2405 Cryptography and Security +1308.2962 +1308.5382 Rings and Algebras +1308.5963 +1308.6459 Superconductivity +1309.1604 Solar and Stellar Astrophysics +1309.1660 +1309.1802 Commutative Algebra +1309.2112 Superconductivity +1309.4346 Algebraic Topology +1309.4778 Cosmology and Nongalactic Astrophysics +1309.5569 Phenomenology +1309.5846 Mesoscale and Nanoscale Physics +1309.6886 Strongly Correlated Electrons +1310.1364 +1310.1876 Strongly Correlated Electrons +1310.2578 Optimization and Control +1310.3062 Information Theory +1310.3346 Representation Theory +1310.4495 Computational Engineering, Finance, and Science +1310.5176 Optics +1310.6515 Statistics Theory +1310.6518 Group Theory +1310.6650 Information Theory +1310.6779 Optics +1310.7799 Information Theory +1310.8313 Computational Complexity +1311.1482 +1311.2396 Phenomenology +1311.2735 Phenomenology +1311.4455 +1311.4818 Other Computer Science +1311.4926 Number Theory +1311.4927 Number Theory +1311.4930 Number Theory +1311.5463 +1311.6214 Lattice +1311.6616 Mesoscale and Nanoscale Physics +1311.6617 Strongly Correlated Electrons +1311.6859 Analysis of PDEs +1311.7114 Chemical Physics +1312.0130 Computers and Society +1312.0450 Operator Algebras +1312.0607 Solar and Stellar Astrophysics +1312.0665 Number Theory +1312.0666 Number Theory +1312.0668 Number Theory +1312.0743 +1312.2642 Multiagent Systems +1312.3108 Number Theory +1312.3923 Algebraic Geometry +1312.4932 Computers and Society +1312.7252 Instrumentation and Detectors +1401.0943 Computers and Society +1401.1259 Physics and Society +1401.1916 Computational Engineering, Finance, and Science +1401.1982 Cryptography and Security +1401.2155 Geophysics +1401.2156 Atomic Physics +1401.2163 Methodology +1401.2165 Data Structures and Algorithms +1401.2169 Information Theory +1401.2170 Commutative Algebra +1401.2172 Physics Education +1401.2179 Astrophysics of Galaxies +1401.2181 Systems and Control +1401.2182 Mesoscale and Nanoscale Physics +1401.2185 Multiagent Systems +1401.2186 Functional Analysis +1401.2187 Logic +1401.2190 Differential Geometry +1401.2192 Group Theory +1401.2194 Solar and Stellar Astrophysics +1401.2195 Data Structures and Algorithms +1401.2198 Distributed, Parallel, and Cluster Computing +1401.2203 Analysis of PDEs +1401.2208 Optics +1401.2209 Networking and Internet Architecture +1401.2210 Complex Variables +1401.2211 Earth and Planetary Astrophysics +1401.2213 Combinatorics +1401.2214 Solar and Stellar Astrophysics +1401.2217 Algebraic Geometry +1401.2224 Neural and Evolutionary Computing +1401.2225 Representation Theory +1401.2227 Combinatorics +1401.2228 Information Theory +1401.2229 Information Retrieval +1401.2230 Networking and Internet Architecture +1401.2233 Classical Analysis and ODEs +1401.2235 +1401.2236 Classical Analysis and ODEs +1401.2238 Genomics +1401.2240 Analysis of PDEs +1401.2242 Analysis of PDEs +1401.2243 Mesoscale and Nanoscale Physics +1401.2244 Differential Geometry +1401.2246 Statistical Mechanics +1401.2247 Probability +1401.2249 Complex Variables +1401.2250 Databases +1401.2251 Instrumentation and Detectors +1401.2252 Complex Variables +1401.2255 Instrumentation and Detectors +1401.2257 General Topology +1401.2258 Information Retrieval +1401.2260 Combinatorics +1401.2262 Analysis of PDEs +1401.2269 Optimization and Control +1401.2276 Instrumentation and Detectors +1401.2277 Materials Science +1401.2278 Applications +1401.2279 Analysis of PDEs +1401.2281 Instrumentation and Detectors +1401.2282 Applications +1401.2286 Genomics +1401.2291 Instrumentation and Detectors +1401.2292 Instrumentation and Detectors +1401.2293 Applications +1401.2296 Algebraic Topology +1401.2298 Applications +1401.2301 Solar and Stellar Astrophysics +1401.2302 +1401.2303 Applications +1401.2304 Machine Learning +1401.2305 Optimization and Control +1401.2306 +1401.2308 Applications +1401.2309 Applications +1401.2310 Number Theory +1401.2311 Number Theory +1401.2312 Solar and Stellar Astrophysics +1401.2315 Combinatorics +1401.2316 Applications +1401.2317 Applications +1401.2322 Mesoscale and Nanoscale Physics +1401.2324 Applications +1401.2325 Dynamical Systems +1401.2327 Data Structures and Algorithms +1401.2331 Neurons and Cognition +1401.2332 Plasma Physics +1401.2334 Fluid Dynamics +1401.2337 Analysis of PDEs +1401.2338 Analysis of PDEs +1401.2342 Computers and Society +1401.2343 Dynamical Systems +1401.2344 Applications +1401.2348 Atmospheric and Oceanic Physics +1401.2350 Numerical Analysis +1401.2352 Materials Science +1401.2359 Metric Geometry +1401.2360 General Mathematics +1401.2362 Optics +1401.2364 Phenomenology +1401.2366 Number Theory +1401.2375 Differential Geometry +1401.2376 Information Theory +1401.2377 Methodology +1401.2381 Solar and Stellar Astrophysics +1401.2382 Lattice +1401.2386 Dynamical Systems +1401.2387 Algebraic Geometry +1401.2389 Genomics +1401.2392 Earth and Planetary Astrophysics +1401.2393 Data Structures and Algorithms +1401.2397 Quantitative Methods +1401.2400 General Physics +1401.2402 Phenomenology +1401.2407 Materials Science +1401.2408 Solar and Stellar Astrophysics +1401.2410 Information Theory +1401.2411 Learning +1401.2413 Biomolecules +1401.2418 Symplectic Geometry +1401.2436 Computational Complexity +1401.2437 +1401.2440 Distributed, Parallel, and Cluster Computing +1401.2442 Numerical Analysis +1401.2444 Computational Complexity +1401.2446 Geophysics +1401.2448 Geophysics +1401.2451 Machine Learning +cond-mat/0501342 Materials Science +cond-mat/0703700 Materials Science +0809.2259 +0809.5177 +0911.0023 Theory +1005.2452 Discrete Mathematics +1007.3822 +1009.5912 Combinatorics +1103.0468 +1108.3089 Algebraic Geometry +1112.1439 Phenomenology +1112.5348 Strongly Correlated Electrons +1202.2900 Dynamical Systems +1204.0610 Superconductivity +1206.0316 Probability +1206.2459 Information Theory +1207.1474 Group Theory +1208.2291 Theory +1209.2605 Analysis of PDEs +1210.2400 Cosmology and Nongalactic Astrophysics +1210.3082 Cosmology and Nongalactic Astrophysics +1211.2892 +1211.3160 Probability +1211.5380 Information Theory +1211.6347 +1212.1419 Commutative Algebra +1212.2224 Geometric Topology +1212.4584 +1212.5417 Symbolic Computation +1301.3091 Combinatorics +1301.4705 Optics +1301.5478 High Energy Astrophysical Phenomena +1301.6905 Logic in Computer Science +1301.7113 History and Philosophy of Physics +1302.0901 Optimization and Control +1302.1054 +1302.6220 Social and Information Networks +1303.0901 +1303.1318 Mesoscale and Nanoscale Physics +1303.4657 Phenomenology +1303.5388 Computational Geometry +1303.6241 Physics and Society +1304.1028 Exactly Solvable and Integrable Systems +1304.1751 Strongly Correlated Electrons +1305.3162 Computational Physics +1305.4668 Combinatorics +1305.4909 Combinatorics +1306.3368 +1306.3752 Mesoscale and Nanoscale Physics +1306.4837 Analysis of PDEs +1307.3467 Optics +1308.2900 Number Theory +1308.2908 Strongly Correlated Electrons +1308.3176 Phenomenology +1308.3700 Genomics +1309.3071 Chemical Physics +1309.3411 Superconductivity +1309.3487 Analysis of PDEs +1309.4027 High Energy Astrophysical Phenomena +1309.4765 Atomic Physics +1310.2454 Strongly Correlated Electrons +1310.4044 Exactly Solvable and Integrable Systems +1310.5800 Quantum Gases +1311.4081 Theory +1311.5662 Cosmology and Nongalactic Astrophysics +1312.0193 Distributed, Parallel, and Cluster Computing +1312.1334 Phenomenology +1312.2173 Data Structures and Algorithms +1312.3395 +1312.4737 Mesoscale and Nanoscale Physics +1312.5218 Mesoscale and Nanoscale Physics +1312.5424 Cryptography and Security +1312.6026 Neural and Evolutionary Computing +1312.6188 +1312.6970 Probability +1312.7644 +1401.0456 +1401.0977 Numerical Analysis +1401.1715 Number Theory +1401.1996 Physics and Society +1401.3271 Chemical Physics +1401.4133 Mesoscale and Nanoscale Physics +1401.5026 Solar and Stellar Astrophysics +1401.5066 Phenomenology +1401.5680 Strongly Correlated Electrons +1401.5767 Information Theory +1401.6195 Astrophysics of Galaxies +1401.6859 +1401.7341 Statistical Mechanics +1401.7766 Logic +1401.8160 Classical Physics +1402.2428 Theory +1402.3082 Strongly Correlated Electrons +1402.3272 Quantum Gases +1402.4304 Machine Learning +1402.6514 Materials Science +1402.6517 Probability +1403.1079 Mesoscale and Nanoscale Physics +1403.1371 Phenomenology +1403.3080 Learning +1403.3601 Fluid Dynamics +1403.4561 Functional Analysis +1403.4937 Solar and Stellar Astrophysics +1403.5740 Group Theory +1403.6277 Lattice +1404.0026 Geometric Topology +1404.0389 Subcellular Processes +1404.1070 +1404.3782 Logic +1404.4122 Phenomenology +1404.4258 Artificial Intelligence +1404.5374 Dynamical Systems +1404.5854 History and Philosophy of Physics +1404.5892 Computational Geometry +1404.5948 +1404.5969 Astrophysics of Galaxies +1404.5976 Combinatorics +1404.5977 +1404.5978 Numerical Analysis +1404.5980 +1404.5988 Instrumentation and Detectors +1404.5991 Strongly Correlated Electrons +1404.5992 Analysis of PDEs +1404.5996 Data Structures and Algorithms +1404.6003 Computer Science and Game Theory +1404.6007 Atomic Physics +1404.6008 Geometric Topology +1404.6010 Commutative Algebra +1404.6011 Number Theory +1404.6018 Instrumentation and Methods for Astrophysics +1404.6020 Computational Engineering, Finance, and Science +1404.6021 Atomic Physics +1404.6027 Statistical Mechanics +1404.6029 Robotics +1404.6031 Computer Vision and Pattern Recognition +1404.6032 Algebraic Geometry +1404.6034 Other Computer Science +1404.6036 Artificial Intelligence +1404.6039 Computational Geometry +1404.6040 Other Computer Science +1404.6042 Differential Geometry +1404.6044 Information Theory +1404.6048 Information Theory +1404.6050 Astrophysics of Galaxies +1404.6052 +1404.6054 Analysis of PDEs +1404.6056 Algebraic Geometry +1404.6057 Chaotic Dynamics +1404.6058 Phenomenology +1404.6061 Probability +1404.6064 Logic in Computer Science +1404.6067 Combinatorics +1404.6070 +1404.6071 Computer Vision and Pattern Recognition +1404.6073 Probability +1404.6074 Learning +1404.6084 Analysis of PDEs +1404.6086 Fluid Dynamics +1404.6087 Operating Systems +1404.6089 Number Theory +1404.6095 Classical Physics +1404.6097 Physics and Society +1404.6099 Statistical Mechanics +1404.6101 Phenomenology +1404.6103 Computer Science and Game Theory +1404.6107 Accelerator Physics +1404.6110 Accelerator Physics +1404.6112 Networking and Internet Architecture +1404.6116 Systems and Control +1404.6120 Mathematical Finance +1404.6121 Differential Geometry +1404.6125 Instrumentation and Detectors +1404.6126 Neurons and Cognition +1404.6129 +1404.6132 Materials Science +1404.6136 Mesoscale and Nanoscale Physics +1404.6142 Astrophysics of Galaxies +1404.6145 Optimization and Control +1404.6148 Complex Variables +1404.6151 Information Theory +1404.6156 Cosmology and Nongalactic Astrophysics +1404.6158 Superconductivity +1404.6166 +1404.6169 Operator Algebras +1404.6171 Statistical Mechanics +1404.6175 Computational Complexity +1404.6181 Atomic Physics +1404.6184 Instrumentation and Methods for Astrophysics +1404.6186 Logic in Computer Science +1404.6189 Analysis of PDEs +1404.6192 Analysis of PDEs +1404.6193 Applications +1404.6201 Methodology +1404.6202 Complex Variables +1404.6205 +1404.6207 Atomic Physics +1404.6208 Solar and Stellar Astrophysics +1404.6210 +1404.6213 Optimization and Control +1404.6216 Machine Learning +1404.6222 Human-Computer Interaction +1404.6223 Statistical Mechanics +1404.6224 Statistics Theory +1404.6225 Computation +1404.6233 Computational Geometry +1404.6235 Classical Analysis and ODEs +1404.6240 History and Overview +1404.6245 Logic in Computer Science +1404.6247 Physics and Society +1404.6248 Instrumentation and Methods for Astrophysics +hep-ph/9901392 Phenomenology +physics/0701235 Fluid Dynamics +0812.1684 Representation Theory +0906.0839 Analysis of PDEs +1008.0130 Mesoscale and Nanoscale Physics +1103.1412 Geometric Topology +1108.2057 Earth and Planetary Astrophysics +1108.3795 Experiment +1110.0270 Computational Physics +1111.6041 Phenomenology +1111.6779 Phenomenology +1202.0329 Superconductivity +1203.2901 Analysis of PDEs +1204.2342 Cryptography and Security +1206.3730 Differential Geometry +1206.3994 Symplectic Geometry +1207.0404 Number Theory +1207.1865 Methodology +1207.4245 Earth and Planetary Astrophysics +1208.4837 Rings and Algebras +1208.6394 Analysis of PDEs +1210.1505 Networking and Internet Architecture +1210.7615 Logic +1211.6420 +1212.3605 Analysis of PDEs +1212.6690 Applications +1302.1122 Quantum Gases +1302.5441 Analysis of PDEs +1302.6245 +1303.1382 Applications +1303.3711 Functional Analysis +1303.3823 Chaotic Dynamics +1304.6292 +1304.7554 Representation Theory +1305.0497 Cosmology and Nongalactic Astrophysics +1306.0052 Analysis of PDEs +1307.2215 Phenomenology +1308.0051 Functional Analysis +1308.0891 Phenomenology +1308.2511 Statistical Mechanics +1308.3956 Robotics +1308.6525 Instrumentation and Detectors +1309.0029 Combinatorics +1309.0507 Mesoscale and Nanoscale Physics +1309.3115 Analysis of PDEs +1309.7047 Strongly Correlated Electrons +1309.7554 Strongly Correlated Electrons +1310.0597 Classical Analysis and ODEs +1310.3944 +1310.4119 Strongly Correlated Electrons +1310.5634 Combinatorics +1311.0844 Solar and Stellar Astrophysics +1311.2363 Cosmology and Nongalactic Astrophysics +1311.2547 Learning +1311.2877 Statistical Mechanics +1311.5082 Instrumentation and Detectors +1311.6802 Learning +1312.1455 Phenomenology +1312.3455 Networking and Internet Architecture +1312.4947 Phenomenology +1312.5184 Exactly Solvable and Integrable Systems +1312.5782 Methodology +1312.6850 Operator Algebras +1312.7408 Phenomenology +1312.7715 Computer Vision and Pattern Recognition +1401.0151 Phenomenology +1401.0571 Phenomenology +1401.0759 Applications +1401.2395 Computation +1401.3613 Computational Complexity +1401.5002 Methodology +1401.5100 Materials Science +1401.5343 Applications +1401.5397 +1401.5690 Symbolic Computation +1402.0760 Pattern Formation and Solitons +1402.1474 Soft Condensed Matter +1402.4475 Optics +1402.4739 Instrumentation and Methods for Astrophysics +1402.4932 Strongly Correlated Electrons +1402.6582 +1403.0600 Physics and Society +1403.0768 Strongly Correlated Electrons +1403.2046 Phenomenology +1403.2642 Materials Science +1403.3335 +1403.3556 Materials Science +1403.4257 Phenomenology +1403.4798 Phenomenology +1403.5206 Social and Information Networks +1403.6436 Statistical Mechanics +1403.6872 +1403.6889 Theory +1403.7093 Computation +1404.0311 Atomic Physics +1404.1284 Phenomenology +1404.1448 Computational Geometry +1404.1752 Mesoscale and Nanoscale Physics +1404.3643 Biological Physics +1404.4656 Materials Science +1404.4889 Combinatorics +1404.5083 Information Theory +1404.6512 Information Theory +1404.7782 Complex Variables +1405.0597 Networking and Internet Architecture +1405.1660 Group Theory +1405.2981 Mesoscale and Nanoscale Physics +1405.3208 +1405.3209 +1405.3494 Numerical Analysis +1405.4006 Optimization and Control +1405.4706 Phenomenology +1405.7168 Phenomenology +1405.7280 Optimization and Control +1405.7677 Optimization and Control +1405.7685 High Energy Astrophysical Phenomena +1405.7746 Methodology +1405.7924 Soft Condensed Matter +1406.0199 Rings and Algebras +1406.0221 Strongly Correlated Electrons +1406.0265 +1406.1515 Instrumentation and Methods for Astrophysics +1406.2891 Biological Physics +1406.2917 Other Condensed Matter +1406.3341 Materials Science +1406.3897 Phenomenology +1406.5978 High Energy Astrophysical Phenomena +1406.7567 Earth and Planetary Astrophysics +1406.7849 Classical Physics +1407.1206 Classical Analysis and ODEs +1407.1752 Soft Condensed Matter +1407.3041 Data Structures and Algorithms +1407.4228 Quantum Algebra +1407.4557 Representation Theory +1407.6111 Analysis of PDEs +1407.6188 Theory +1407.7222 Probability +1407.7904 Atomic Physics +1407.7983 Functional Analysis +1407.7989 Information Retrieval +1407.8039 +1407.8176 Computer Vision and Pattern Recognition +1407.8177 Quantitative Methods +1407.8179 Instrumentation and Methods for Astrophysics +1407.8187 Quantitative Methods +1407.8196 Medical Physics +1407.8197 Functional Analysis +1407.8201 +1407.8211 Solar and Stellar Astrophysics +1407.8213 Instrumentation and Detectors +1407.8215 Computation and Language +1407.8218 +1407.8220 Optics +1407.8221 +1407.8222 Combinatorics +1407.8240 Quantum Algebra +1407.8242 Networking and Internet Architecture +1407.8244 Other Computer Science +1407.8245 +1407.8246 Information Theory +1407.8247 Populations and Evolution +1407.8249 Information Theory +1407.8251 Software Engineering +1407.8255 Atmospheric and Oceanic Physics +1407.8258 Cryptography and Security +1407.8259 Applications +1407.8261 Combinatorics +1407.8263 Mesoscale and Nanoscale Physics +1407.8267 Analysis of PDEs +1407.8270 Representation Theory +1407.8274 Strongly Correlated Electrons +1407.8275 Differential Geometry +1407.8278 Mesoscale and Nanoscale Physics +1407.8285 Classical Physics +1407.8286 Phenomenology +1407.8287 Number Theory +1407.8295 Data Structures and Algorithms +1407.8296 +1407.8297 Algebraic Geometry +1407.8299 Analysis of PDEs +1407.8303 Numerical Analysis +1407.8305 Materials Science +1407.8308 Functional Analysis +1407.8318 Representation Theory +1407.8319 Number Theory +1407.8320 Software Engineering +1407.8324 Theory +1407.8327 Experiment +1407.8336 Combinatorics +1407.8337 Formal Languages and Automata Theory +1407.8342 Networking and Internet Architecture +1407.8348 Information Theory +1407.8351 Optics +1407.8353 Probability +1407.8354 Materials Science +1407.8355 Networking and Internet Architecture +1407.8356 Functional Analysis +1407.8359 Information Theory +1407.8363 Networking and Internet Architecture +1407.8365 Social and Information Networks +1407.8367 +1407.8368 Networking and Internet Architecture +1407.8371 Applications +1407.8372 Networking and Internet Architecture +1407.8373 Computational Complexity +1407.8374 Applications +1407.8376 Applications +1407.8377 Software Engineering +1407.8378 Probability +1407.8379 Statistical Mechanics +1407.8382 Applications +1407.8384 Applications +1407.8386 Applications +1407.8388 Applications +1407.8392 Artificial Intelligence +1407.8398 Applications +1407.8399 Applications +1407.8402 Applications +1407.8404 Fluid Dynamics +1407.8407 Analysis of PDEs +1407.8410 Fluid Dynamics +1407.8411 Networking and Internet Architecture +1407.8412 Applications +1407.8413 Operator Algebras +1407.8415 Combinatorics +1407.8416 Superconductivity +1407.8417 Instrumentation and Detectors +1407.8422 Physics and Society +1407.8423 Representation Theory +1407.8424 Materials Science +1407.8427 +1407.8432 Materials Science +1407.8433 Distributed, Parallel, and Cluster Computing +1407.8435 Superconductivity +1407.8438 Metric Geometry +1407.8442 Optics +1407.8443 Number Theory +1407.8445 Cosmology and Nongalactic Astrophysics +1407.8446 Solar and Stellar Astrophysics +1407.8448 Phenomenology +1407.8450 Accelerator Physics +1407.8452 Solar and Stellar Astrophysics +1407.8453 Solar and Stellar Astrophysics +1407.8454 Atmospheric and Oceanic Physics +1407.8457 Analysis of PDEs +1407.8462 High Energy Astrophysical Phenomena +1407.8466 Fluid Dynamics +1407.8468 Rings and Algebras +1407.8473 +1407.8474 Data Structures and Algorithms +1407.8475 Fluid Dynamics +1407.8478 Differential Geometry +1407.8485 Theory +1407.8486 Theory +1407.8489 Astrophysics of Galaxies +1407.8494 Information Theory +1407.8497 Computer Vision and Pattern Recognition +1407.8499 Social and Information Networks +1407.8504 Theory +1407.8508 Molecular Networks +1407.8509 Networking and Internet Architecture +1407.8511 Plasma Physics +1407.8514 Dynamical Systems +1407.8515 Databases +1407.8518 Computer Vision and Pattern Recognition +1407.8527 Computational Physics +1407.8528 Analysis of PDEs +1407.8535 Computer Science and Game Theory +1407.8537 Combinatorics +1407.8538 Probability +1407.8542 Instrumentation and Methods for Astrophysics +1407.8546 Distributed, Parallel, and Cluster Computing +1407.8548 Materials Science +0712.0783 +0806.1128 Optics +0903.3696 Combinatorics +1007.4368 Functional Analysis +1102.2370 Optics +1104.3837 Classical Analysis and ODEs +1105.0290 Differential Geometry +1106.2891 Superconductivity +1107.5808 Cosmology and Nongalactic Astrophysics +1201.3413 High Energy Astrophysical Phenomena +1202.1812 Dynamical Systems +1202.2110 Representation Theory +1204.0628 +1205.3572 High Energy Astrophysical Phenomena +1205.5601 Numerical Analysis +1207.3973 Experiment +1210.5606 Differential Geometry +1211.1456 Methodology +1212.5548 Complex Variables +1212.6543 Logic +1301.1286 Dynamical Systems +1302.2677 Statistics Theory +1302.7309 +1303.0406 Number Theory +1303.0618 Optimization and Control +1303.0806 +1303.1242 Probability +1303.2752 Representation Theory +1303.2791 Classical Analysis and ODEs +1303.6406 Quantum Algebra +1304.1451 Complex Variables +1304.1909 Computational Geometry +1304.2511 Soft Condensed Matter +1304.4650 General Physics +1306.1309 Analysis of PDEs +1306.3733 High Energy Astrophysical Phenomena +1307.0141 Optimization and Control +1307.0987 +1307.1511 Probability +1307.2855 Data Structures and Algorithms +1307.3413 Probability +1307.3524 +1307.4098 Phenomenology +1307.7126 Applications +1308.0531 Dynamical Systems +1308.5746 Differential Geometry +1309.3773 Algebraic Geometry +1310.2753 Soft Condensed Matter +1310.7392 Differential Geometry +1311.3262 +1311.4020 +1311.4096 Information Theory +1311.6739 Optimization and Control +1311.7359 Information Theory +1312.0510 Social and Information Networks +1401.0892 Information Theory +1401.1368 Probability +1401.2796 Algebraic Geometry +1401.2858 Optics +1401.4661 Applications +1401.5017 Differential Geometry +1401.6437 Information Theory +1402.5872 Mesoscale and Nanoscale Physics +1403.0025 Phenomenology +1403.0235 Differential Geometry +1403.0854 +1403.4480 General Topology +1403.6176 Strongly Correlated Electrons +1403.7410 Phenomenology +1404.3813 Cosmology and Nongalactic Astrophysics +1404.4499 +1404.4796 Classical Analysis and ODEs +1404.5201 Theory +1404.5461 Mesoscale and Nanoscale Physics +1404.5633 Cosmology and Nongalactic Astrophysics +1404.6138 Mesoscale and Nanoscale Physics +1405.0195 Disordered Systems and Neural Networks +1405.0844 High Energy Astrophysical Phenomena +1405.2632 +1405.3900 +1405.4908 Mesoscale and Nanoscale Physics +1405.7241 Biological Physics +1405.7297 Strongly Correlated Electrons +1406.0507 Instrumentation and Methods for Astrophysics +1406.1584 Learning +1406.2035 Computation and Language +1406.2840 Theory +1406.3053 Materials Science +1406.3357 Solar and Stellar Astrophysics +1406.4857 Theory +1406.5757 +1406.6096 +1407.1586 Instrumentation and Methods for Astrophysics +1407.2448 Representation Theory +1407.3498 High Energy Astrophysical Phenomena +1407.3670 +1407.4973 Optics +1407.7128 Chemical Physics +1407.7458 Superconductivity +1407.7744 Theory +1407.7885 +1407.7939 Chemical Physics +1408.1895 Mesoscale and Nanoscale Physics +1408.3316 Experiment +1408.5153 Phenomenology +1408.6964 Materials Science +1409.0897 Chemical Physics +1409.0986 Mesoscale and Nanoscale Physics +1409.1629 Mesoscale and Nanoscale Physics +1409.3852 Instrumentation and Methods for Astrophysics +1409.7811 High Energy Astrophysical Phenomena +1409.8360 High Energy Astrophysical Phenomena +1409.8553 Materials Science +1410.0139 Soft Condensed Matter +1410.1912 Mesoscale and Nanoscale Physics +1410.2141 Geometric Topology +1410.5014 Methodology +1410.5766 Numerical Analysis +1410.6449 Programming Languages +1410.7101 +1410.7103 Logic in Computer Science +1410.7934 Classical Analysis and ODEs +1410.8439 Complex Variables +1411.0279 Data Structures and Algorithms +1411.0446 Information Theory +1411.0542 Materials Science +1411.0550 Differential Geometry +1411.1023 Algebraic Geometry +1411.1029 Logic +1411.1316 Human-Computer Interaction +1411.1399 Cell Behavior +1411.1400 Neurons and Cognition +1411.1401 Emerging Technologies +1411.1402 Analysis of PDEs +1411.1413 Theory +1411.1419 Solar and Stellar Astrophysics +1411.1425 History and Philosophy of Physics +1411.1432 Numerical Analysis +1411.1436 +1411.1438 Astrophysics of Galaxies +1411.1440 Applications +1411.1441 Classical Physics +1411.1442 Computer Vision and Pattern Recognition +1411.1445 High Energy Astrophysical Phenomena +1411.1446 Computer Vision and Pattern Recognition +1411.1448 Quantitative Methods +1411.1451 Methodology +1411.1452 Symplectic Geometry +1411.1453 Analysis of PDEs +1411.1456 Accelerator Physics +1411.1458 Symplectic Geometry +1411.1463 Probability +1411.1464 Functional Analysis +1411.1469 Machine Learning +1411.1470 Materials Science +1411.1471 Solar and Stellar Astrophysics +1411.1472 Physics and Society +1411.1485 Materials Science +1411.1486 Dynamical Systems +1411.1489 Optics +1411.1496 Materials Science +1411.1497 Artificial Intelligence +1411.1498 Other Quantitative Biology +1411.1499 +1411.1501 Lattice +1411.1502 Cosmology and Nongalactic Astrophysics +1411.1503 Numerical Analysis +1411.1505 Algebraic Geometry +1411.1507 Artificial Intelligence +1411.1509 Computer Vision and Pattern Recognition +1411.1513 Pattern Formation and Solitons +1411.1519 Computational Geometry +1411.1523 Analysis of PDEs +1411.1524 Strongly Correlated Electrons +1411.1526 Materials Science +1411.1528 Molecular Networks +1411.1530 Physics and Society +1411.1531 Information Theory +1411.1538 Accelerator Physics +1411.1539 Numerical Analysis +1411.1540 Lattice +1411.1541 Dynamical Systems +1411.1544 Computational Geometry +1411.1553 Subcellular Processes +1411.1557 Machine Learning +1411.1561 Materials Science +1411.1564 Probability +1411.1566 Materials Science +1411.1567 Information Theory +1411.1569 Information Theory +1411.1571 Information Theory +1411.1572 Quantitative Methods +1411.1580 Information Theory +1411.1581 Phenomenology +1411.1583 Optics +1411.1584 +1411.1591 Atomic Physics +1411.1594 Methodology +1411.1595 Classical Analysis and ODEs +1411.1596 Numerical Analysis +1411.1598 Biological Physics +1411.1599 Logic +1411.1600 Differential Geometry +1411.1601 Biological Physics +1411.1602 Analysis of PDEs +1411.1608 Networking and Internet Architecture +1411.1612 Neurons and Cognition +1411.1619 Computational Complexity +1411.1620 Probability +1411.1623 Learning +1411.1625 Probability +1411.1627 Analysis of PDEs +1411.1630 Metric Geometry +1411.1635 Information Retrieval +1411.1638 Discrete Mathematics +1411.1639 Materials Science +1411.1642 Phenomenology +1411.1644 Experiment +1411.1646 Data Structures and Algorithms +1411.1648 Complex Variables +1411.1651 Lattice +1411.1653 +1411.1657 Lattice +1411.1665 Phenomenology +1411.1668 Computational Geometry +1411.1670 Machine Learning +1411.1673 Solar and Stellar Astrophysics +1411.1676 Complex Variables +1411.1680 Systems and Control +1411.1683 Differential Geometry +1411.1684 Materials Science +1411.1686 Phenomenology +1411.1688 Probability +1411.1689 Statistical Finance +1411.1692 Mesoscale and Nanoscale Physics +1411.1695 Mesoscale and Nanoscale Physics +1411.1700 Differential Geometry +1411.1702 Computation +1411.1705 Multimedia +1411.1708 Quantum Gases +1411.1711 Algebraic Topology +1411.1712 Classical Analysis and ODEs +1411.1714 Representation Theory +1411.1716 Lattice +1411.1722 Populations and Evolution +1411.1724 Other Condensed Matter +1411.1729 Accelerator Physics +1411.1733 Cryptography and Security +1411.1734 Fluid Dynamics +1411.1735 Analysis of PDEs +1411.1738 +1411.1742 Geometric Topology +1411.1746 Lattice +cond-mat/0701546 Disordered Systems and Neural Networks +1101.0334 Combinatorics +1104.1755 Algebraic Geometry +1108.1571 Combinatorics +1112.2912 Functional Analysis +1112.3187 Functional Analysis +1202.1706 General Physics +1203.3874 Chemical Physics +1204.1804 Statistical Mechanics +1204.4034 Other Condensed Matter +1205.4351 Functional Analysis +1206.5214 Lattice +1207.1349 Numerical Analysis +1207.4744 Analysis of PDEs +1207.5271 +1209.3381 Dynamical Systems +1209.3475 Dynamical Systems +1210.1405 Group Theory +1210.4728 Data Structures and Algorithms +1210.7223 Complex Variables +1211.0424 Neural and Evolutionary Computing +1211.1567 Algebraic Geometry +1212.2178 Discrete Mathematics +1212.5761 Quantitative Methods +1301.4805 Symplectic Geometry +1303.0813 +1303.0819 +1305.1064 Theory +1305.5359 Cryptography and Security +1306.2705 Solar and Stellar Astrophysics +1306.3569 Optics +1307.3102 Learning +1307.8236 Complex Variables +1308.2632 Representation Theory +1308.4094 +1308.6540 Phenomenology +1309.4144 Methodology +1309.4634 Quantum Algebra +1309.6228 General Topology +1310.3772 Number Theory +1310.4457 Combinatorics +1310.7259 Algebraic Geometry +1310.7931 Functional Analysis +1311.1374 Optics +1311.1486 Soft Condensed Matter +1311.3366 Phenomenology +1311.4009 Number Theory +1311.5359 Soft Condensed Matter +1311.5718 Combinatorics +1311.6629 Phenomenology +1311.7075 Biological Physics +1312.3770 Phenomenology +1312.7606 Multiagent Systems +1401.0530 Number Theory +1401.1060 +1401.1065 Logic +1401.5824 Materials Science +1401.6648 Quantum Gases +1402.0143 Quantum Algebra +1402.1965 Number Theory +1402.2072 Theory +1402.2765 Group Theory +1402.3092 Optics +1402.3401 Computers and Society +1402.6064 Probability +1402.6135 Optics +1402.6258 Superconductivity +1403.1952 Pattern Formation and Solitons +1403.2921 Strongly Correlated Electrons +1403.3753 +1403.5141 General Physics +1403.5588 Mesoscale and Nanoscale Physics +1403.5879 Quantum Gases +1403.6875 +1403.8060 Group Theory +1404.1537 Combinatorics +1404.1662 Superconductivity +1404.2324 Earth and Planetary Astrophysics +1404.4150 Analysis of PDEs +1404.4552 +1404.4749 Information Theory +1404.5287 +1404.5927 Information Theory +1404.6958 Statistical Mechanics +1404.7584 Computer Vision and Pattern Recognition +1404.7630 Algebraic Topology +1405.0260 Numerical Analysis +1405.0722 Experiment +1405.0740 Data Structures and Algorithms +1405.2525 Other Condensed Matter +1405.2997 Spectral Theory +1405.3531 Computer Vision and Pattern Recognition +1405.4278 Mesoscale and Nanoscale Physics +1405.4849 Quantum Gases +1405.5207 +1405.6756 Fluid Dynamics +1406.3249 Theory +1406.3349 Phenomenology +1406.3510 Strongly Correlated Electrons +1406.3993 K-Theory and Homology +1406.4572 Algebraic Geometry +1406.5298 Learning +1406.5551 Functional Analysis +1406.5733 +1406.6474 Optimization and Control +1406.7048 Computers and Society +1406.7726 Mesoscale and Nanoscale Physics +1407.0800 Experiment +1407.1840 Disordered Systems and Neural Networks +1407.3015 Data Structures and Algorithms +1407.3182 Number Theory +1407.3966 Instrumentation and Detectors +1407.5386 Superconductivity +1407.5405 +1407.5756 Experiment +1407.7334 Classical Analysis and ODEs +1407.7660 Astrophysics of Galaxies +1407.8001 Experiment +1407.8334 Operator Algebras +1408.0873 Mesoscale and Nanoscale Physics +1408.1502 +1408.2358 Pattern Formation and Solitons +1408.2601 Pattern Formation and Solitons +1408.2775 Quantum Gases +1408.3340 Quantum Gases +1408.3853 Instrumentation and Methods for Astrophysics +1408.4075 Phenomenology +1408.4141 Theory +1408.4387 Cosmology and Nongalactic Astrophysics +1408.4483 Soft Condensed Matter +1408.7023 Mesoscale and Nanoscale Physics +1409.3791 +1409.4905 Quantum Gases +1409.6211 Quantum Gases +1409.7577 Phenomenology +1409.8109 Applications +1410.1557 Quantum Gases +1410.1576 Dynamical Systems +1410.4485 Computer Vision and Pattern Recognition +1410.5201 Experiment +1410.5900 Earth and Planetary Astrophysics +1410.6636 +1410.6793 Social and Information Networks +1410.7183 Atmospheric and Oceanic Physics +1410.8557 Phenomenology +1410.8805 Information Theory +1411.0705 Lattice +1411.0894 Statistics Theory +1411.0998 Data Structures and Algorithms +1411.1006 Information Retrieval +1411.1019 Numerical Analysis +1411.1063 Solar and Stellar Astrophysics +1411.1071 Phenomenology +1411.1076 Learning +1411.1078 Analysis of PDEs +1411.1086 Robotics +1411.1087 Numerical Analysis +1411.1088 Machine Learning +1411.1090 Analysis of PDEs +1411.1096 Logic +1411.1101 Cryptography and Security +1411.1104 Astrophysics of Galaxies +1411.1106 Logic +1411.1107 +1411.1110 Materials Science +1411.1112 Artificial Intelligence +1411.1116 History and Philosophy of Physics +1411.1117 Lattice +1411.1120 Optimization and Control +1411.1122 Computational Geometry +1411.1125 Information Theory +1411.1126 Networking and Internet Architecture +1411.1127 Computer Science and Game Theory +1411.1129 Digital Libraries +1411.1136 Adaptation and Self-Organizing Systems +1411.1139 Information Theory +1411.1140 Algebraic Geometry +1411.1142 Statistical Mechanics +1411.1143 Materials Science +1411.1145 +1411.1148 Lattice +1411.1151 Numerical Analysis +1411.1153 Cosmology and Nongalactic Astrophysics +1411.1154 Software Engineering +1411.1155 Lattice +1411.1158 Learning +1411.1160 Earth and Planetary Astrophysics +1411.1162 Number Theory +1411.1165 Probability +1411.1171 Computer Vision and Pattern Recognition +1411.1172 Computer Vision and Pattern Recognition +1411.1179 Probability +1411.1184 Number Theory +1411.1186 Chemical Physics +1411.1189 Group Theory +1411.1190 Neurons and Cognition +1411.1191 Algebraic Geometry +1411.1196 Mesoscale and Nanoscale Physics +1411.1201 Lattice +1411.1202 Logic +1411.1205 Lattice +1411.1206 Lattice +1411.1209 Data Structures and Algorithms +1411.1214 Probability +1411.1216 +1411.1217 Systems and Control +1411.1220 Information Retrieval +1411.1222 Instrumentation and Detectors +1411.1223 Fluid Dynamics +1411.1224 Probability +1411.1230 Analysis of PDEs +1411.1239 Lattice +1411.1243 Machine Learning +1411.1244 Applications +1411.1245 Functional Analysis +1411.1246 Representation Theory +1411.1250 Statistical Mechanics +1411.1259 Classical Analysis and ODEs +1411.1263 Networking and Internet Architecture +1411.1267 Sound +1411.1268 Cosmology and Nongalactic Astrophysics +1411.1269 Astrophysics of Galaxies +1411.1274 Physics and Society +1411.1277 Solar and Stellar Astrophysics +1411.1279 Social and Information Networks +1411.1281 Instrumentation and Detectors +1411.1284 Systems and Control +1411.1285 Machine Learning +1411.1287 High Energy Astrophysical Phenomena +1411.1295 Analysis of PDEs +1411.1296 Combinatorics +1411.1298 Algebraic Geometry +1411.1299 Combinatorics +1411.1304 +1411.1305 Combinatorics +1411.1307 Software Engineering +1411.1311 +1411.1318 Lattice +1411.1319 Distributed, Parallel, and Cluster Computing +1411.1321 Number Theory +1411.1322 Disordered Systems and Neural Networks +1411.1328 Systems and Control +1411.1330 Materials Science +1411.1334 Number Theory +1411.1341 Numerical Analysis +1411.1346 +1411.1347 Representation Theory +1411.1348 Risk Management +1411.1358 Soft Condensed Matter +1411.1365 Analysis of PDEs +1411.1368 Economics +1411.1371 Classical Analysis and ODEs +1411.1372 Computer Vision and Pattern Recognition +1411.1375 Data Analysis, Statistics and Probability +1411.1379 Computer Science and Game Theory +1411.1381 Computer Science and Game Theory +1411.1383 Classical Analysis and ODEs +1411.1384 Solar and Stellar Astrophysics +1411.1389 Lattice +1411.1392 Solar and Stellar Astrophysics +1411.1395 Computational Geometry +0812.2326 +1103.4037 Combinatorics +1104.0367 Phenomenology +1105.3803 Combinatorics +1201.0436 Materials Science +1201.0906 Phenomenology +1202.6309 Theory +1203.5597 Theory +1205.2717 Numerical Analysis +1206.2745 Category Theory +1206.4946 Number Theory +1207.3309 Representation Theory +1208.1412 Number Theory +1208.1421 Number Theory +1209.5230 Phenomenology +1210.0719 Phenomenology +1210.5419 Phenomenology +1210.6610 Phenomenology +1210.7837 Optimization and Control +1211.0150 Mesoscale and Nanoscale Physics +1211.1595 Probability +1211.4419 +1212.3520 Combinatorics +1212.6885 Probability +1301.4425 Operator Algebras +1301.5097 +1302.0063 Materials Science +1303.0366 +1303.5678 Information Theory +1303.6156 Complex Variables +1303.6907 Data Structures and Algorithms +1304.3231 Statistical Mechanics +1304.3681 Populations and Evolution +1304.5644 Classical Analysis and ODEs +1304.7509 Information Theory +1305.1306 Cosmology and Nongalactic Astrophysics +1305.6103 Phenomenology +1306.0716 +1306.2656 Phenomenology +1306.2751 Portfolio Management +1306.3099 Probability +1307.1602 High Energy Astrophysical Phenomena +1307.2334 +1307.3065 Other Condensed Matter +1307.5654 Phenomenology +1307.6296 Probability +1307.7383 Methodology +1307.7759 Populations and Evolution +1307.7885 Analysis of PDEs +1308.0237 Computers and Society +1308.0683 Computers and Society +1308.0999 Number Theory +1308.2649 Classical Analysis and ODEs +1308.3137 +1308.4441 Algebraic Topology +1308.5164 Metric Geometry +1308.5539 Theory +1309.0137 Logic +1309.0675 Applications +1309.1377 Operator Algebras +1309.1837 Populations and Evolution +1309.2495 Numerical Analysis +1309.4940 Statistical Mechanics +1309.4978 Networking and Internet Architecture +1309.5461 Computational Complexity +1309.7128 Numerical Analysis +1310.0291 +1310.1526 Number Theory +1310.3014 Symplectic Geometry +1310.3367 Solar and Stellar Astrophysics +1310.3899 Methodology +1310.4229 Plasma Physics +1310.6384 Group Theory +1310.7438 General Physics +1310.7771 Analysis of PDEs +1311.1459 Probability +1311.1471 Soft Condensed Matter +1311.2653 Earth and Planetary Astrophysics +1311.3053 +1311.3138 K-Theory and Homology +1311.4229 Quantum Gases +1311.4941 Information Theory +1311.5088 Materials Science +1311.5214 Mesoscale and Nanoscale Physics +1311.5415 K-Theory and Homology +1311.6068 Analysis of PDEs +1311.6258 Numerical Analysis +1311.7264 Lattice +1312.0688 Populations and Evolution +1312.0758 +1312.1058 Metric Geometry +1312.1228 Phenomenology +1312.2744 Instrumentation and Detectors +1312.3205 Materials Science +1312.3454 Materials Science +1312.4514 Strongly Correlated Electrons +1312.5758 Combinatorics +1312.5873 Optimization and Control +1312.6741 +1401.0262 Mesoscale and Nanoscale Physics +1401.2453 Mesoscale and Nanoscale Physics +1401.2962 +1401.4586 Phenomenology +1401.4859 Pattern Formation and Solitons +1401.7226 Strongly Correlated Electrons +1402.1707 Instrumentation and Detectors +1402.2533 High Energy Astrophysical Phenomena +1402.2884 +1402.3067 Information Theory +1402.3862 Quantum Gases +1402.4116 Instrumentation and Detectors +1402.6768 +1402.6840 Instrumentation and Detectors +1403.0333 Pricing of Securities +1403.0723 +1403.1000 Theory +1403.1743 Strongly Correlated Electrons +1403.2711 Theory +1403.2886 +1403.3489 Combinatorics +1403.3599 Commutative Algebra +1403.4326 Materials Science +1403.4773 +1403.4954 Biomolecules +1403.6192 Information Theory +1403.6224 Mesoscale and Nanoscale Physics +1403.6329 Statistics Theory +1403.7391 Statistical Mechanics +1404.0258 Earth and Planetary Astrophysics +1404.0343 Chemical Physics +1404.1761 Optimization and Control +1404.3445 +1404.3512 +1404.4364 Cosmology and Nongalactic Astrophysics +1404.4681 Strongly Correlated Electrons +1404.4852 Computational Complexity +1404.5303 Strongly Correlated Electrons +1404.6131 Phenomenology +1404.6188 Mesoscale and Nanoscale Physics +1404.6475 Materials Science +1404.7100 +1405.1132 Mesoscale and Nanoscale Physics +1405.1141 Mesoscale and Nanoscale Physics +1405.1270 +1405.1847 +1405.1878 Optics +1405.1884 Optics +1405.2267 Mesoscale and Nanoscale Physics +1405.2399 Statistics Theory +1405.2401 Probability +1405.2856 Digital Libraries +1405.3850 Phenomenology +1405.3886 Experiment +1405.3901 Optics +1405.4751 Algebraic Geometry +1405.5204 Phenomenology +1405.5786 Statistics Theory +1405.7249 +1405.7576 Instrumentation and Methods for Astrophysics +1405.7665 +1406.1381 Methodology +1406.1541 +1406.3096 Theory +1406.3439 Phenomenology +1406.4049 +1406.4307 Atmospheric and Oceanic Physics +1406.5230 +1406.7512 +1407.0167 Digital Libraries +1407.1309 Computational Physics +1407.1583 High Energy Astrophysical Phenomena +1407.2397 Combinatorics +1407.2669 Materials Science +1407.3265 Earth and Planetary Astrophysics +1407.3550 Number Theory +1407.4556 Discrete Mathematics +1407.4613 +1407.4694 Networking and Internet Architecture +1407.4769 Mesoscale and Nanoscale Physics +1407.5026 Disordered Systems and Neural Networks +1407.5048 High Energy Astrophysical Phenomena +1407.5305 Economics +1407.5346 Representation Theory +1407.5878 Emerging Technologies +1407.6350 Cryptography and Security +1407.6417 Solar and Stellar Astrophysics +1407.6772 Cosmology and Nongalactic Astrophysics +1407.6794 Data Structures and Algorithms +1407.7055 Combinatorics +1407.7308 Methodology +1407.8540 Cryptography and Security +1408.0023 Cryptography and Security +1408.0144 Probability +1408.0152 +1408.0771 Populations and Evolution +1408.1225 Networking and Internet Architecture +1408.1659 Materials Science +1408.1732 Probability +1408.2510 Materials Science +1408.2770 Computer Science and Game Theory +1408.2915 Theory +1408.2924 Probability +1408.3047 Popular Physics +1408.3183 Numerical Analysis +1408.3253 Software Engineering +1408.3341 Earth and Planetary Astrophysics +1408.3586 Emerging Technologies +1408.3622 Numerical Analysis +1408.3625 General Physics +1408.3631 Astrophysics of Galaxies +1408.3632 Instrumentation and Methods for Astrophysics +1408.3639 Symbolic Computation +1408.3643 Superconductivity +1408.3648 Computational Physics +1408.3651 Populations and Evolution +1408.3652 Optics +1408.3659 Spectral Theory +1408.3661 Information Theory +1408.3663 Materials Science +1408.3665 Geometric Topology +1408.3677 Plasma Physics +1408.3679 Representation Theory +1408.3687 Functional Analysis +1408.3688 Solar and Stellar Astrophysics +1408.3690 Computational Complexity +1408.3702 Functional Analysis +1408.3703 Phenomenology +1408.3706 Differential Geometry +1408.3709 Computer Vision and Pattern Recognition +1408.3710 Cosmology and Nongalactic Astrophysics +1408.3711 Optics +1408.3714 Materials Science +1408.3718 Commutative Algebra +1408.3721 Materials Science +1408.3724 Dynamical Systems +1408.3728 Statistical Finance +1408.3730 Materials Science +1408.3733 Learning +1408.3734 History and Philosophy of Physics +1408.3735 Neural and Evolutionary Computing +1408.3737 Numerical Analysis +1408.3739 Classical Physics +1408.3740 Computer Vision and Pattern Recognition +1408.3746 Classical Analysis and ODEs +1408.3747 Differential Geometry +1408.3750 Computer Vision and Pattern Recognition +1408.3755 Probability +1408.3757 Information Theory +1408.3759 Differential Geometry +1408.3760 Materials Science +1408.3762 Classical Physics +1408.3764 Distributed, Parallel, and Cluster Computing +1408.3771 Classical Analysis and ODEs +1408.3773 Networking and Internet Architecture +1408.3775 Logic in Computer Science +1408.3776 Plasma Physics +1408.3778 +1408.3780 Analysis of PDEs +1408.3784 Differential Geometry +1408.3785 +1408.3788 Category Theory +1408.3790 Analysis of PDEs +1408.3791 Analysis of PDEs +1408.3792 Analysis of PDEs +1408.3793 Materials Science +1408.3797 Statistical Mechanics +1408.3799 Phenomenology +1408.3800 Information Theory +1408.3801 Logic +1408.3805 Geometric Topology +1408.3806 Earth and Planetary Astrophysics +1408.3807 Methodology +1408.3808 Rings and Algebras +1408.3815 Functional Analysis +1408.3818 Optics +1408.3819 Algebraic Geometry +1408.3820 Optics +1408.3826 Optics +1408.3829 Information Retrieval +1408.3830 Algebraic Geometry +1408.3838 Cryptography and Security +1408.3839 Numerical Analysis +1408.3842 Differential Geometry +1408.3843 Cryptography and Security +1408.3844 Probability +1408.3846 Algebraic Geometry +1408.3847 +1408.3851 K-Theory and Homology +1408.3854 Dynamical Systems +1408.3855 Dynamical Systems +1408.3860 Earth and Planetary Astrophysics +1408.3864 Probability +1408.3869 Combinatorics +1408.3874 +1408.3877 Numerical Analysis +1408.3878 Neurons and Cognition +1408.3881 Digital Libraries +1408.3882 Differential Geometry +1408.3883 Atmospheric and Oceanic Physics +1408.3886 Geometric Topology +1408.3891 Numerical Analysis +1408.3901 Logic +1408.3905 Instrumentation and Detectors +1408.3908 Analysis of PDEs +1408.3909 Differential Geometry +1408.3912 Number Theory +1408.3913 Representation Theory +1408.3915 Algebraic Geometry +1408.3916 Dynamical Systems +1408.3917 Dynamical Systems +1408.3920 Chemical Physics +1408.3929 Systems and Control +1408.3931 Information Theory +1408.3934 Computation and Language +1408.3943 Solar and Stellar Astrophysics +1408.3946 Analysis of PDEs +1408.3951 Dynamical Systems +1408.3954 Optics +1408.3955 Emerging Technologies +1408.3956 Tissues and Organs +1408.3961 +1408.3969 Instrumentation and Methods for Astrophysics +1408.3971 Dynamical Systems +1408.3972 Materials Science +1408.3974 Dynamical Systems +1408.3975 High Energy Astrophysical Phenomena +1408.3976 Software Engineering +1408.3977 Discrete Mathematics +1408.3984 Logic +1408.3986 Superconductivity +1408.3990 Algebraic Topology +1408.3991 Number Theory +1408.3992 Geometric Topology +1408.3993 Experiment +1408.3996 Superconductivity +1408.4001 Social and Information Networks +1408.4004 Theory +1408.4005 Discrete Mathematics +1408.4006 Instrumentation and Methods for Astrophysics +1408.4011 High Energy Astrophysical Phenomena +1408.4012 Methodology +1408.4014 Dynamical Systems +1408.4017 Optimization and Control +1408.4021 Phenomenology +1408.4035 Solar and Stellar Astrophysics +1408.4046 Combinatorics +1408.4049 Information Theory +1408.4051 Theory +1408.4052 Phenomenology +1408.4053 Numerical Analysis +1408.4059 Operator Algebras +1408.4060 Phenomenology +1408.4062 Solar and Stellar Astrophysics +1408.4064 +1408.4067 Human-Computer Interaction +1408.4071 Algebraic Geometry +1408.4072 Learning +1408.4073 Information Theory +1408.4074 Combinatorics +1408.4080 Logic +1408.4081 Quantitative Methods +1408.4083 Quantum Algebra +1408.4086 Dynamical Systems +1408.4089 Combinatorics +1408.4090 Representation Theory +1408.4095 Fluid Dynamics +1408.4098 Mesoscale and Nanoscale Physics +1408.4099 Computational Geometry +1408.4100 Information Theory +1408.4101 Operator Algebras +1408.4104 Numerical Analysis +1408.4110 Geometric Topology +gr-qc/0510084 +gr-qc/0603064 +nucl-th/9802070 +nucl-th/9802076 +nucl-th/9802080 +nucl-th/9802081 +nucl-th/9803022 +0712.2114 Atomic Physics +0801.1238 Algebraic Topology +0801.4817 Cryptography and Security +0803.3558 Functional Analysis +0805.3424 Atomic Physics +0811.1008 +0904.0071 Logic +0904.1049 Classical Analysis and ODEs +0906.2632 Atomic Physics +1002.4549 Analysis of PDEs +1005.4859 Phenomenology +1005.4868 Phenomenology +1005.4872 Phenomenology +1005.4875 Phenomenology +1005.4879 Atomic Physics +1005.4880 Atomic Physics +1006.5909 Algebraic Geometry +1007.2968 Pricing of Securities +1008.1081 Analysis of PDEs +1009.0371 Mesoscale and Nanoscale Physics +1011.0464 Number Theory +1012.0929 Logic +1102.1061 Logic +1102.4051 Analysis of PDEs +1106.0108 Computational Complexity +1106.3793 +1107.0388 Complex Variables +1108.1460 Mesoscale and Nanoscale Physics +1108.3347 Combinatorics +1109.4834 Theory +1111.0281 Dynamical Systems +1111.1010 Algebraic Geometry +1111.2652 Combinatorics +1111.3603 Functional Analysis +1201.5073 Computer Science and Game Theory +1201.6343 Algebraic Geometry +1203.0535 Social and Information Networks +1205.0026 Disordered Systems and Neural Networks +1205.0094 Analysis of PDEs +1205.0416 Dynamical Systems +1206.1279 Functional Analysis +1206.3493 Applications +1207.2864 Functional Analysis +1207.5904 +1207.6970 Rings and Algebras +1208.0399 +1208.1000 Quantum Gases +1208.2986 Operator Algebras +1208.5764 +1209.0179 Analysis of PDEs +1209.1618 Operator Algebras +1209.2229 Logic +1210.3882 Dynamical Systems +1210.3972 Dynamical Systems +1210.5127 Complex Variables +1211.2337 Functional Analysis +1211.4124 Classical Analysis and ODEs +1211.5568 Information Theory +1211.7368 Functional Analysis +1212.3688 Analysis of PDEs +1212.4193 Dynamical Systems +1212.4482 Analysis of PDEs +1212.5227 Medical Physics +1301.6393 Information Theory +1301.7346 Functional Analysis +1301.7349 Functional Analysis +1302.0715 Functional Analysis +1302.1152 Algebraic Geometry +1302.4070 Classical Analysis and ODEs +1302.4248 Computer Science and Game Theory +1302.6529 Analysis of PDEs +1302.7021 Methodology +1303.0665 Information Retrieval +1303.0906 Populations and Evolution +1303.2499 +1303.3473 Materials Science +1303.5324 Analysis of PDEs +1304.0157 Functional Analysis +1304.0159 Functional Analysis +1304.0506 Quantum Gases +1304.4845 Chemical Physics +1304.7675 Complex Variables +1304.8091 Operator Algebras +1305.2296 Probability +1305.2422 Theory +1305.4800 Mesoscale and Nanoscale Physics +1305.5110 History and Philosophy of Physics +1305.6208 Functional Analysis +1305.6794 Commutative Algebra +1306.0293 Algebraic Geometry +1306.1356 Information Theory +1306.1479 Dynamical Systems +1306.4615 Applications +1307.1094 +1307.1760 +1307.3581 Computer Vision and Pattern Recognition +1308.0874 Spectral Theory +1309.0326 Computation and Language +1309.0518 Strongly Correlated Electrons +1309.4601 Dynamical Systems +1309.6115 Data Structures and Algorithms +1309.6793 +1309.7493 Rings and Algebras +1310.0951 Analysis of PDEs +1310.1605 Cosmology and Nongalactic Astrophysics +1310.1835 Fluid Dynamics +1310.2931 Methodology +1310.3868 Exactly Solvable and Integrable Systems +1310.6310 Analysis of PDEs +1310.6795 Information Theory +1310.6925 Systems and Control +1310.8396 Social and Information Networks +1310.8543 +1311.0295 Superconductivity +1311.0633 +1311.0691 Mesoscale and Nanoscale Physics +1311.2359 Rings and Algebras +1311.3477 Differential Geometry +1311.3640 Data Structures and Algorithms +1311.5784 Atomic Physics +1311.5789 Atomic Physics +1311.5790 Atomic Physics +1311.5822 Atomic Physics +1311.7199 History and Overview +1312.0921 Algebraic Geometry +1312.3516 Statistics Theory +1312.6078 Theory +1312.6654 Lattice +1401.0730 Computer Vision and Pattern Recognition +1401.2110 +1401.2567 Logic in Computer Science +1401.3238 Functional Analysis +1401.6527 Experiment +1401.6729 Cosmology and Nongalactic Astrophysics +1401.7070 Optics +1401.7272 Mesoscale and Nanoscale Physics +1401.8236 Methodology +1402.0450 Theory +1402.1809 Optimization and Control +1402.2852 Optimization and Control +1402.2965 Adaptation and Self-Organizing Systems +1402.4637 Differential Geometry +1402.5016 Analysis of PDEs +1402.6667 Dynamical Systems +1403.0114 Optimization and Control +1403.0969 Combinatorics +1403.2443 Mesoscale and Nanoscale Physics +1403.3501 Group Theory +1403.3741 Machine Learning +1403.4483 +1403.5226 Phenomenology +1403.5395 Theory +1403.5949 Superconductivity +1403.6001 Probability +1403.7598 Information Theory +1403.7951 Astrophysics of Galaxies +1404.0072 Optimization and Control +1404.0787 Optimization and Control +1404.1117 Theory +1404.2288 High Energy Astrophysical Phenomena +1404.2518 +1404.2815 Physics and Society +1404.3631 Cosmology and Nongalactic Astrophysics +1404.3905 Numerical Analysis +1404.3969 Theory +1404.4513 +1404.5475 Formal Languages and Automata Theory +1404.5917 Phenomenology +1404.7406 Optimization and Control +1405.0113 Combinatorics +1405.1189 Optimization and Control +1405.2705 Logic in Computer Science +1405.3222 Computation +1405.5468 Disordered Systems and Neural Networks +1405.6039 Phenomenology +1405.6174 Other Computer Science +1405.6352 Symplectic Geometry +1405.6515 Phenomenology +1405.6851 Data Structures and Algorithms +1405.7822 Algebraic Geometry +1406.1161 Theory +1406.1853 Machine Learning +1406.2056 Phenomenology +1406.2092 Rings and Algebras +1406.2390 Learning +1406.3448 Medical Physics +1406.3573 Statistical Mechanics +1406.3635 Theory +1406.3700 Computational Complexity +1406.3824 Machine Learning +1406.4411 Strongly Correlated Electrons +1406.4424 Dynamical Systems +1406.4428 Differential Geometry +1406.4905 Learning +1406.5217 Soft Condensed Matter +1406.6250 Optics +1406.6511 +1406.6801 Mesoscale and Nanoscale Physics +1406.7222 Theory +1406.7835 Number Theory +1407.0763 Analysis of PDEs +1407.0932 Analysis of PDEs +1407.2480 Neurons and Cognition +1407.3949 Phenomenology +1407.4061 Theory +1407.4264 Geometric Topology +1407.4566 Phenomenology +1407.4773 Cosmology and Nongalactic Astrophysics +1407.4970 Quantum Gases +1407.4994 Spectral Theory +1407.5035 Computer Vision and Pattern Recognition +1407.5960 Phenomenology +1407.6495 +1407.6546 Phenomenology +1407.6993 Cosmology and Nongalactic Astrophysics +1407.8125 Representation Theory +1407.8184 Cosmology and Nongalactic Astrophysics +1408.1044 Information Theory +1408.1282 Strongly Correlated Electrons +1408.1467 Data Structures and Algorithms +1408.2542 Materials Science +1408.3128 +1408.3542 Solar and Stellar Astrophysics +1408.3705 Theory +1408.3731 Computation and Language +1408.4399 Data Analysis, Statistics and Probability +1408.4685 Optimization and Control +1408.4718 Representation Theory +1408.5381 Number Theory +1408.5831 Materials Science +1408.5999 Cryptography and Security +1408.6226 Cryptography and Security +1408.6351 Combinatorics +1408.6730 Optics +1408.6858 Combinatorics +1409.0452 Earth and Planetary Astrophysics +1409.0953 Statistical Mechanics +1409.1681 Combinatorics +1409.1720 Mesoscale and Nanoscale Physics +1409.2072 Differential Geometry +1409.2130 Atomic Physics +1409.2647 +1409.3155 +1409.3385 Fluid Dynamics +1409.3592 Plasma Physics +1409.3861 Rings and Algebras +1409.4257 General Physics +1409.6434 Rings and Algebras +1409.7524 Astrophysics of Galaxies +1409.8194 Theory +1409.8383 Superconductivity +1410.0126 +1410.0712 Strongly Correlated Electrons +1410.1229 Materials Science +1410.1316 Mesoscale and Nanoscale Physics +1410.1933 Mesoscale and Nanoscale Physics +1410.2569 Fluid Dynamics +1410.3328 Functional Analysis +1410.4040 Optics +1410.4146 +1410.4464 Algebraic Geometry +1410.4527 Functional Analysis +1410.5547 Differential Geometry +1410.5631 Instrumentation and Methods for Astrophysics +1410.5776 +1410.6450 History and Philosophy of Physics +1410.6837 Theory +1410.6961 Analysis of PDEs +1410.6989 Spectral Theory +1410.7089 Algebraic Topology +1410.7268 Probability +1410.7276 Information Theory +1410.7585 Molecular Networks +1410.7689 Superconductivity +1410.7833 Social and Information Networks +1410.8267 Soft Condensed Matter +1410.8349 Information Theory +1410.8455 Astrophysics of Galaxies +1410.8728 Geometric Topology +1410.8729 Statistics Theory +1410.8739 Solar and Stellar Astrophysics +1410.8842 Materials Science +1410.8859 Fluid Dynamics +1411.0002 History and Overview +1411.0007 Computation and Language +1411.0008 Mesoscale and Nanoscale Physics +1411.0012 Strongly Correlated Electrons +1411.0013 +1411.0014 Mesoscale and Nanoscale Physics +1411.0022 Computer Vision and Pattern Recognition +1411.0024 Optimization and Control +1411.0025 Mesoscale and Nanoscale Physics +1411.0033 Complex Variables +1411.0037 Solar and Stellar Astrophysics +1411.0038 Solar and Stellar Astrophysics +1411.0044 Instrumentation and Methods for Astrophysics +1411.0045 Methodology +1411.0046 +1411.0047 Lattice +1411.0048 Data Structures and Algorithms +1411.0050 Cosmology and Nongalactic Astrophysics +1411.0052 Social and Information Networks +1411.0055 Dynamical Systems +1411.0060 Information Theory +1411.0062 Data Structures and Algorithms +1411.0063 Experiment +1411.0064 Databases +1411.0069 Differential Geometry +1411.0073 Machine Learning +1411.0075 Populations and Evolution +1411.0078 Lattice +1411.0079 Materials Science +1411.0081 Statistics Theory +1411.0084 Logic +1411.0085 Computer Vision and Pattern Recognition +1411.0087 Computers and Society +1411.0088 Experiment +1411.0095 Data Structures and Algorithms +1411.0098 Numerical Analysis +1411.0099 Quantitative Methods +1411.0101 Populations and Evolution +1411.0102 Mesoscale and Nanoscale Physics +1411.0103 Information Theory +1411.0105 Mesoscale and Nanoscale Physics +1411.0107 Quantitative Methods +1411.0108 Numerical Analysis +1411.0109 Experiment +1411.0111 Dynamical Systems +1411.0112 Functional Analysis +1411.0114 Information Theory +1411.0119 Rings and Algebras +1411.0120 Logic +1411.0126 Computer Vision and Pattern Recognition +1411.0130 Computer Vision and Pattern Recognition +1411.0132 Discrete Mathematics +1411.0133 Lattice +1411.0137 Analysis of PDEs +1411.0139 Analysis of PDEs +1411.0140 Biomolecules +1411.0141 Experiment +1411.0142 Algebraic Geometry +1411.0143 Networking and Internet Architecture +1411.0147 Geometric Topology +1411.0148 Number Theory +1411.0152 +1411.0156 Artificial Intelligence +1411.0161 Information Theory +1411.0162 Probability +1411.0163 Analysis of PDEs +1411.0164 High Energy Astrophysical Phenomena +1411.0168 Distributed, Parallel, and Cluster Computing +1411.0169 Learning +1411.0171 Functional Analysis +1411.0172 History and Philosophy of Physics +1411.0174 Lattice +1411.0178 Group Theory +1411.0180 Dynamical Systems +1411.0189 Learning +1411.0195 Mesoscale and Nanoscale Physics +1411.0198 Computer Science and Game Theory +1411.0199 Mesoscale and Nanoscale Physics +1411.0202 Algebraic Geometry +1411.0203 +1411.0206 +1411.0207 +1411.0208 Strongly Correlated Electrons +1411.0210 Combinatorics +1411.0215 Functional Analysis +1411.0221 Analysis of PDEs +1411.0222 Optimization and Control +1411.0225 Computers and Society +1411.0226 Optimization and Control +1411.0227 Analysis of PDEs +1411.0229 Statistics Theory +1411.0233 Analysis of PDEs +1411.0234 Probability +1411.0237 Cryptography and Security +1411.0238 +1411.0239 Instrumentation and Methods for Astrophysics +1411.0241 Theory +1411.0246 Networking and Internet Architecture +1411.0247 Neurons and Cognition +1411.0248 Quantum Gases +1411.0249 Rings and Algebras +1411.0250 Experiment +1411.0257 Data Structures and Algorithms +1411.0258 Lattice +1411.0259 Phenomenology +1411.0262 Geometric Topology +1411.0265 Analysis of PDEs +1411.0266 Combinatorics +1411.0268 Operator Algebras +1411.0269 Analysis of PDEs +1411.0271 +1411.0272 +1411.0275 Digital Libraries +1411.0284 Adaptation and Self-Organizing Systems +1411.0286 +1411.0288 Statistics Theory +1411.0289 Metric Geometry +1411.0290 Combinatorics +1411.0293 Analysis of PDEs +1411.0297 Populations and Evolution +1411.0298 Analysis of PDEs +1411.0301 Analysis of PDEs +1411.0303 Algebraic Topology +1411.0309 Optimization and Control +1411.0310 +1411.0312 Theory +1411.0321 Numerical Analysis +1411.0322 Experiment +1411.0327 Logic +1411.0330 Numerical Analysis +1411.0338 Optimization and Control +1411.0339 Combinatorics +1411.0341 +1411.0342 Operator Algebras +1411.0343 Mesoscale and Nanoscale Physics +1411.0347 Optimization and Control +1411.0349 Combinatorics +1411.0350 Mesoscale and Nanoscale Physics +1411.0351 +1411.0358 Rings and Algebras +1411.0362 Differential Geometry +1411.0363 Complex Variables +1411.0364 Analysis of PDEs +1411.0366 Mesoscale and Nanoscale Physics +1411.0370 Sound +1411.0374 Solar and Stellar Astrophysics +1411.0379 Strongly Correlated Electrons +1411.0381 High Energy Astrophysical Phenomena +1411.0385 Phenomenology +1411.0386 Phenomenology +1411.0389 Fluid Dynamics +1411.0392 Computer Vision and Pattern Recognition +1411.0394 High Energy Astrophysical Phenomena +1411.0396 Solar and Stellar Astrophysics +1411.0407 Algebraic Geometry +1411.0408 Applications +1411.0410 Materials Science +1411.0412 Disordered Systems and Neural Networks +1411.0414 Methodology +1411.0415 Combinatorics +1411.0417 Lattice +1411.0419 +1411.0420 Numerical Analysis +1411.0426 Risk Management +1411.0434 Classical Analysis and ODEs +1411.0439 Machine Learning +1411.0442 Computer Vision and Pattern Recognition +1411.0445 Analysis of PDEs +1411.0447 Algebraic Topology +1411.0449 Fluid Dynamics +1411.0451 Analysis of PDEs +1411.0453 Dynamical Systems +1411.0455 Differential Geometry +1411.0456 Number Theory +1411.0461 Analysis of PDEs +1411.0462 Quantum Algebra +1411.0464 +1411.0467 Algebraic Topology +1411.0468 Mesoscale and Nanoscale Physics +1411.0469 Group Theory +1411.0471 Functional Analysis +1411.0473 Physics and Society +1411.0474 Combinatorics +1411.0476 +1411.0477 Lattice +1411.0481 Software Engineering +1411.0482 Information Theory +1411.0484 Lattice +1411.0487 Differential Geometry +1411.0488 Theory +1411.0497 Dynamical Systems +1411.0498 Phenomenology +1411.0499 Algebraic Geometry +1411.0504 Functional Analysis +1411.0507 Instrumentation and Methods for Astrophysics +1411.0513 Exactly Solvable and Integrable Systems +1411.0514 Soft Condensed Matter +1411.0517 Fluid Dynamics +1411.0518 Analysis of PDEs +1411.0519 Numerical Analysis +1411.0522 Combinatorics +1411.0523 Materials Science +1411.0524 Differential Geometry +1411.0525 Mesoscale and Nanoscale Physics +1411.0530 Physics and Society +1411.0533 Probability +1411.0538 Accelerator Physics +1411.0539 Other Statistics +1411.0543 Phenomenology +1411.0546 Accelerator Physics +1411.0551 Strongly Correlated Electrons +1411.0552 Dynamical Systems +1411.0554 Earth and Planetary Astrophysics +1411.0556 Social and Information Networks +1411.0557 Social and Information Networks +1411.0558 Optics +1411.0559 High Energy Astrophysical Phenomena +1411.0564 Methodology +1411.0569 Lattice +1411.0570 Statistical Finance +1411.0571 Experiment +1411.0573 Molecular Networks +1411.0579 Computational Physics +1411.0584 K-Theory and Homology +1411.0585 Phenomenology +1411.0587 +1411.0588 Computation and Language +1411.0590 Combinatorics +1411.0591 Statistical Mechanics +1411.0593 Logic in Computer Science +1411.0595 Molecular Networks +1411.0598 +1411.0599 Applications +1411.0602 Learning +1411.0603 Complex Variables +1411.0605 History and Philosophy of Physics +1411.0606 Computation +1411.0607 Lattice +1411.0610 Discrete Mathematics +1411.0616 Analysis of PDEs +1411.0621 Instrumentation and Detectors +1411.0622 Numerical Analysis +1411.0623 Experiment +1411.0631 General Physics +1411.0632 Phenomenology +1411.0634 Numerical Analysis +1411.0644 Data Structures and Algorithms +1411.0647 Applications +1411.0653 Instrumentation and Detectors +1411.0654 Cryptography and Security +1411.0655 Lattice +1411.0656 Algebraic Geometry +cond-mat/0308259 Soft Condensed Matter +cs/0702046 Cryptography and Security +gr-qc/0411023 +math/0403273 Dynamical Systems +physics/0002047 Optics +physics/0609110 Atomic Physics +1310.8226 Information Retrieval +0705.2081 Classical Physics +0707.4433 Classical Physics +0709.2406 Optics +0711.0198 Methodology +0711.4716 +0803.2677 Theory +0807.0212 +0807.1375 Biomolecules +0808.1775 Geometric Topology +0912.5537 +1004.0147 Instrumentation and Detectors +1006.3053 Numerical Analysis +1008.4703 General Physics +1010.2875 Representation Theory +1010.4788 Analysis of PDEs +1011.4121 Probability +1012.0144 +1105.3403 Algebraic Topology +1105.3814 +1107.0933 +1109.5236 Rings and Algebras +1110.5778 Mesoscale and Nanoscale Physics +1111.5540 +1202.3885 Computer Science and Game Theory +1202.5466 Representation Theory +1203.6495 Algebraic Geometry +1204.1163 Complex Variables +1204.5837 Probability +1204.6616 +1205.1501 Combinatorics +1205.6316 Differential Geometry +1208.3944 Logic +1209.0669 Differential Geometry +1210.1088 +1210.8122 Spectral Theory +1211.3601 Machine Learning +1211.5700 Functional Analysis +1212.6300 Physics and Society +1301.1076 Geometric Topology +1301.4798 Information Theory +1301.5154 Logic in Computer Science +1301.7279 Probability +1302.0349 Operator Algebras +1302.0369 Chaotic Dynamics +1302.0399 Category Theory +1302.1074 Mesoscale and Nanoscale Physics +1302.2060 +1302.4770 Mesoscale and Nanoscale Physics +1302.6709 Differential Geometry +1303.4318 +1303.4990 Optics +1303.5777 Logic +1303.6739 Other Quantitative Biology +1304.0678 Systems and Control +1304.7886 Information Theory +1305.0182 Methodology +1305.1410 Algebraic Geometry +1305.4446 Information Theory +1306.2221 Combinatorics +1306.2559 Strongly Correlated Electrons +1306.2979 Machine Learning +1306.3719 Mesoscale and Nanoscale Physics +1306.4490 Representation Theory +1307.4709 Numerical Analysis +1307.7015 Analysis of PDEs +1307.7959 Superconductivity +1307.8244 Strongly Correlated Electrons +1308.3140 Phenomenology +1308.6732 +1309.0357 Differential Geometry +1309.2212 Combinatorics +1309.3980 Analysis of PDEs +1309.7423 Information Theory +1310.0502 Strongly Correlated Electrons +1310.0680 Number Theory +1310.0934 Superconductivity +1310.1708 Group Theory +1310.1875 Quantum Algebra +1310.3736 Theory +1310.3938 +1310.4598 Biomolecules +1310.7334 History and Overview +1310.7543 Strongly Correlated Electrons +1310.8035 Differential Geometry +1310.8296 Pricing of Securities +1310.8591 Networking and Internet Architecture +1311.0362 Data Structures and Algorithms +1311.1416 Strongly Correlated Electrons +1311.3252 Mesoscale and Nanoscale Physics +1311.3359 Probability +1311.4475 Combinatorics +1311.6181 Algebraic Geometry +1311.6260 Theory +1312.0286 Learning +1312.1006 Risk Management +1312.1326 Theory +1312.1487 +1312.1733 Machine Learning +1312.2478 Optics +1312.2713 +1312.2984 Systems and Control +1312.3480 Group Theory +1312.4596 Probability +1312.5872 +1312.7033 Mesoscale and Nanoscale Physics +1312.7506 Combinatorics +1312.7763 +1401.1564 Soft Condensed Matter +1401.1819 Strongly Correlated Electrons +1401.4127 Robotics +1401.4540 Physics and Society +1401.4568 Discrete Mathematics +1401.5682 Statistical Mechanics +1401.6018 Cosmology and Nongalactic Astrophysics +1401.6641 Atomic Physics +1401.6792 Strongly Correlated Electrons +1401.8006 Combinatorics +1402.0027 Algebraic Geometry +1402.1672 Instrumentation and Methods for Astrophysics +1402.1710 Probability +1402.2461 Information Theory +1402.2909 Phenomenology +1402.3522 Phenomenology +1402.4028 Combinatorics +1402.4194 Computer Science and Game Theory +1402.4409 +1402.5957 Materials Science +1402.6119 +1402.6227 Superconductivity +1402.6910 Other Quantitative Biology +1403.0223 Representation Theory +1403.0364 Optics +1403.0919 Materials Science +1403.1229 Phenomenology +1403.1844 Combinatorics +1403.2216 +1403.3211 Analysis of PDEs +1403.3641 +1403.3843 Classical Analysis and ODEs +1403.4021 Geometric Topology +1403.4774 +1403.5053 Phenomenology +1403.6072 Materials Science +1403.7994 Exactly Solvable and Integrable Systems +1404.0408 Information Theory +1404.2109 Statistical Mechanics +1404.2129 Mesoscale and Nanoscale Physics +1404.2788 Number Theory +1404.3225 +1404.3598 Cosmology and Nongalactic Astrophysics +1404.4362 General Physics +1404.5752 Quantum Algebra +1404.5878 Statistical Mechanics +1404.6082 Phenomenology +1404.6454 Instrumentation and Detectors +1404.6639 +1404.6669 Strongly Correlated Electrons +1404.6923 Theory +1405.1628 +1405.1735 Earth and Planetary Astrophysics +1405.1904 Classical Physics +1405.2971 Strongly Correlated Electrons +1405.3072 Programming Languages +1405.3073 Logic in Computer Science +1405.3095 Robotics +1405.3939 Robotics +1405.3945 +1405.4559 Chemical Physics +1405.4573 Experiment +1405.5063 Group Theory +1405.5532 Theory +1405.7221 Logic in Computer Science +1405.7854 +1406.0784 Astrophysics of Galaxies +1406.1150 Phenomenology +1406.1450 Earth and Planetary Astrophysics +1406.1705 +1406.2502 Quantitative Methods +1406.2651 Statistical Mechanics +1406.2728 Discrete Mathematics +1406.5213 History and Overview +1406.5571 Mesoscale and Nanoscale Physics +1406.6283 Dynamical Systems +1406.6346 Analysis of PDEs +1406.6596 Classical Analysis and ODEs +1406.7594 Functional Analysis +1406.7595 Number Theory +1407.0523 Differential Geometry +1407.0746 Superconductivity +1407.0938 +1407.0974 Soft Condensed Matter +1407.1277 Operator Algebras +1407.1867 Theory +1407.2153 Materials Science +1407.2274 Cosmology and Nongalactic Astrophysics +1407.2626 Logic +1407.2704 Databases +1407.2733 Cryptography and Security +1407.3067 Analysis of PDEs +1407.3158 Group Theory +1407.3230 Combinatorics +1407.3479 Physics and Society +1407.3564 Statistical Mechanics +1407.3738 Classical Physics +1407.4021 Phenomenology +1407.4342 Information Theory +1407.4412 Statistics Theory +1407.4676 Combinatorics +1407.4699 Theory +1407.4796 Numerical Analysis +1407.4815 Cosmology and Nongalactic Astrophysics +1407.5091 Pricing of Securities +1407.5093 Learning +1407.5101 Dynamical Systems +1407.5103 +1407.5104 Neurons and Cognition +1407.5106 Phenomenology +1407.5107 Social and Information Networks +1407.5116 Functional Analysis +1407.5119 Number Theory +1407.5120 Astrophysics of Galaxies +1407.5122 Combinatorics +1407.5126 Other Computer Science +1407.5127 +1407.5130 History and Overview +1407.5136 Information Theory +1407.5137 Strongly Correlated Electrons +1407.5141 Applications +1407.5144 Optimization and Control +1407.5147 Atomic Physics +1407.5149 Probability +1407.5150 Theory +1407.5153 Solar and Stellar Astrophysics +1407.5154 Materials Science +1407.5161 Information Theory +1407.5163 Dynamical Systems +1407.5164 Phenomenology +1407.5165 Number Theory +1407.5166 Logic in Computer Science +1407.5170 Combinatorics +1407.5173 Hardware Architecture +1407.5177 +1407.5178 Optimization and Control +1407.5183 Numerical Analysis +1407.5186 Chemical Physics +1407.5189 Numerical Analysis +1407.5191 Algebraic Geometry +1407.5192 Solar and Stellar Astrophysics +1407.5193 Combinatorics +1407.5201 Strongly Correlated Electrons +1407.5204 Geometric Topology +1407.5205 Strongly Correlated Electrons +1407.5206 Representation Theory +1407.5209 Strongly Correlated Electrons +1407.5216 Functional Analysis +1407.5218 Biomolecules +1407.5223 High Energy Astrophysical Phenomena +1407.5224 Group Theory +1407.5226 Analysis of PDEs +1407.5227 Cosmology and Nongalactic Astrophysics +1407.5231 Combinatorics +1407.5233 Analysis of PDEs +1407.5234 Information Theory +1407.5235 Combinatorics +1407.5238 Computers and Society +1407.5239 Soft Condensed Matter +1407.5242 Computer Vision and Pattern Recognition +1407.5243 Physics Education +1407.5244 Classical Analysis and ODEs +1407.5248 Combinatorics +1407.5249 Atomic and Molecular Clusters +1407.5252 High Energy Astrophysical Phenomena +1407.5257 Symplectic Geometry +1407.5258 Statistical Finance +1407.5259 Functional Analysis +1407.5260 Quantum Algebra +1407.5261 Numerical Analysis +1407.5263 +1407.5266 Fluid Dynamics +1407.5268 Combinatorics +1407.5273 Mesoscale and Nanoscale Physics +1407.5276 Representation Theory +1407.5279 Representation Theory +1407.5282 Analysis of PDEs +1407.5284 Combinatorics +1407.5285 Strongly Correlated Electrons +1407.5290 Methodology +1407.5291 Number Theory +1407.5292 +1407.5300 Disordered Systems and Neural Networks +1407.5311 Combinatorics +1407.5312 Symplectic Geometry +1407.5313 Dynamical Systems +1407.5314 Probability +1407.5316 Commutative Algebra +1407.5319 Software Engineering +1407.5320 Distributed, Parallel, and Cluster Computing +1407.5323 Software Engineering +1407.5324 Computer Vision and Pattern Recognition +1407.5327 Networking and Internet Architecture +1407.5328 Neurons and Cognition +1407.5331 +1407.5337 Numerical Analysis +1407.5338 Theory +1407.5349 Analysis of PDEs +1407.5353 Phenomenology +1407.5355 Information Theory +1407.5358 Learning +1407.5360 Strongly Correlated Electrons +1407.5364 Information Theory +1407.5367 Computer Vision and Pattern Recognition +1407.5368 Applications +1407.5370 Chemical Physics +1407.5376 +1407.5377 +1407.5380 Artificial Intelligence +1407.5381 +1407.5382 Geometric Topology +1407.5385 Networking and Internet Architecture +1407.5387 +1407.5388 Phenomenology +1407.5390 Chaotic Dynamics +1407.5392 Logic in Computer Science +1407.5393 Programming Languages +1407.5394 General Topology +1407.5395 Logic in Computer Science +1407.5396 Logic in Computer Science +1407.5397 Logic in Computer Science +1407.5398 Functional Analysis +1407.5399 Software Engineering +1407.5404 Distributed, Parallel, and Cluster Computing +1407.5411 Astrophysics of Galaxies +1407.5413 Mesoscale and Nanoscale Physics +1407.5414 +1407.5417 Analysis of PDEs +1407.5418 Optimization and Control +1407.5419 Mesoscale and Nanoscale Physics +1407.5422 Geometric Topology +1407.5423 Differential Geometry +1407.5425 Computational Complexity +1407.5426 Probability +1407.5427 Optimization and Control +1407.5430 Number Theory +1407.5431 Materials Science +1407.5434 Numerical Analysis +1407.5449 Probability +1407.5450 +1407.5456 Software Engineering +1407.5466 Statistical Finance +1407.5470 Optimization and Control +1407.5475 Fluid Dynamics +1407.5480 Combinatorics +1407.5483 Information Theory +1407.5485 Operator Algebras +1407.5488 Discrete Mathematics +1407.5498 +1407.5503 Cell Behavior +1407.5506 +1407.5509 Statistics Theory +1407.5510 Differential Geometry +1407.5513 Numerical Analysis +1407.5515 Methodology +1407.5517 Analysis of PDEs +1407.5518 Analysis of PDEs +1407.5523 Soft Condensed Matter +1407.5524 Programming Languages +1407.5528 Pricing of Securities +1407.5531 Physics Education +1407.5539 Spectral Theory +1407.5543 Mesoscale and Nanoscale Physics +1407.5544 Analysis of PDEs +1407.5545 Superconductivity +1407.5547 Computers and Society +1407.5551 +1407.5554 Analysis of PDEs +1407.5555 Analysis of PDEs +1407.5556 Analysis of PDEs +1407.5557 Analysis of PDEs +1407.5558 Phenomenology +1407.5560 Computational Physics +1407.5562 Analysis of PDEs +1407.5563 Probability +1407.5565 Statistics Theory +1407.5566 Analysis of PDEs +1407.5571 Commutative Algebra +1407.5581 Atmospheric and Oceanic Physics +1407.5582 Strongly Correlated Electrons +1407.5583 High Energy Astrophysical Phenomena +1407.5584 Number Theory +1407.5586 Cell Behavior +1407.5589 +1407.5590 Neurons and Cognition +1407.5591 +1407.5592 Materials Science +1407.5593 Numerical Analysis +1407.5601 Strongly Correlated Electrons +1407.5602 Machine Learning +1407.5604 Numerical Analysis +1407.5605 Probability +1407.5607 Metric Geometry +1407.5608 Theory +1407.5609 Data Structures and Algorithms +1407.5610 Software Engineering +1407.5612 Logic +1407.5613 Combinatorics +hep-th/0510198 Theory +hep-th/0510199 Theory +math-ph/0602003 +math/0109171 Dynamical Systems +math/0112275 Algebraic Geometry +0901.0380 Symplectic Geometry +0911.5660 Data Structures and Algorithms +1002.1650 Geometric Topology +1003.3341 Functional Analysis +1005.4186 Cosmology and Nongalactic Astrophysics +1006.1088 Superconductivity +1008.1317 Mesoscale and Nanoscale Physics +1008.1724 Complex Variables +1009.2490 +1102.0187 Materials Science +1102.0217 Probability +1103.4040 Functional Analysis +1104.1492 Commutative Algebra +1104.2954 Optics +1107.0010 Functional Analysis +1107.0014 Analysis of PDEs +1108.3778 Dynamical Systems +1111.1991 Optimization and Control +1201.2161 Operator Algebras +1205.0645 +1205.3482 Trading and Market Microstructure +1205.5059 Functional Analysis +1207.5996 Analysis of PDEs +1208.0797 Cosmology and Nongalactic Astrophysics +1208.1237 Machine Learning +1208.1802 Mesoscale and Nanoscale Physics +1209.2308 Computational Geometry +1210.5030 Quantum Gases +1211.0419 Optimization and Control +1211.6616 Networking and Internet Architecture +1211.6726 Solar and Stellar Astrophysics +1211.6729 Solar and Stellar Astrophysics +1212.3241 Chemical Physics +1301.5345 +1301.6494 Methodology +1302.5501 Category Theory +1304.1823 Analysis of PDEs +1304.2910 +1304.7525 Analysis of PDEs +1304.7663 Rings and Algebras +1306.0356 +1306.6427 +1306.6806 Mesoscale and Nanoscale Physics +1307.0068 Category Theory +1307.0211 Theory +1307.0699 Phenomenology +1307.4617 Experiment +1307.5012 Mesoscale and Nanoscale Physics +1307.6063 Fluid Dynamics +1307.7353 +1308.0436 Optics +1308.1919 +1308.3372 Information Theory +1308.4333 Disordered Systems and Neural Networks +1308.5361 Optics +1308.5879 Dynamical Systems +1308.5884 +1309.2147 Quantum Algebra +1309.3643 Chemical Physics +1309.3775 Biological Physics +1309.4132 Learning +1309.4760 Functional Analysis +1309.5212 Statistical Mechanics +1309.7223 Phenomenology +1310.0775 Materials Science +1310.0851 Combinatorics +1310.1216 Dynamical Systems +1310.3350 Mesoscale and Nanoscale Physics +1310.4401 +1310.4610 +1310.5045 Distributed, Parallel, and Cluster Computing +1310.5541 Computation +1310.6398 Computational Complexity +1310.7926 Optics +1310.8193 Algebraic Geometry +1311.4532 Probability +1311.7165 Analysis of PDEs +1312.1001 Computational Geometry +1312.2002 Solar and Stellar Astrophysics +1312.2003 Solar and Stellar Astrophysics +1312.3366 +1312.4904 Statistical Mechanics +1312.6930 Representation Theory +1401.0527 Quantum Gases +1401.1540 +1401.3651 Algebraic Topology +1401.5361 Experiment +1401.6397 Phenomenology +1401.7985 Chemical Physics +1402.1711 Astrophysics of Galaxies +1402.3678 Number Theory +1402.4026 High Energy Astrophysical Phenomena +1402.6266 Analysis of PDEs +1402.6698 Earth and Planetary Astrophysics +1403.2399 Materials Science +1403.3412 Complex Variables +1403.4424 Analysis of PDEs +1403.5571 Information Theory +1403.6371 Soft Condensed Matter +1403.6499 Machine Learning +1403.6513 Complex Variables +1403.6589 Strongly Correlated Electrons +1404.0117 Computational Complexity +1404.0367 Physics and Society +1404.0422 Probability +1404.0586 Optimization and Control +1404.0743 Distributed, Parallel, and Cluster Computing +1404.0749 +1404.0886 Complex Variables +1404.0953 Logic in Computer Science +1404.1084 Earth and Planetary Astrophysics +1404.1085 +1404.1087 Data Structures and Algorithms +1404.1092 K-Theory and Homology +1404.1093 History and Overview +1404.1097 Data Structures and Algorithms +1404.1100 Learning +1404.1102 Numerical Analysis +1404.1103 Computational Complexity +1404.1106 Classical Analysis and ODEs +1404.1108 Networking and Internet Architecture +1404.1110 +1404.1111 Fluid Dynamics +1404.1112 Systems and Control +1404.1119 Combinatorics +1404.1121 Solar and Stellar Astrophysics +1404.1126 Operator Algebras +1404.1127 Algebraic Topology +1404.1128 Algebraic Geometry +1404.1130 Materials Science +1404.1133 Materials Science +1404.1135 Materials Science +1404.1137 Optics +1404.1138 Materials Science +1404.1144 Computational Engineering, Finance, and Science +1404.1148 Information Theory +1404.1149 Representation Theory +1404.1153 Combinatorics +1404.1157 Materials Science +1404.1158 Other Condensed Matter +1404.1161 Probability +1404.1163 Mesoscale and Nanoscale Physics +1404.1168 Systems and Control +1404.1173 Operator Algebras +1404.1174 Cosmology and Nongalactic Astrophysics +1404.1175 Methodology +1404.1177 Accelerator Physics +1404.1178 Information Theory +1404.1180 Computational Finance +1404.1182 Combinatorics +1404.1184 Dynamical Systems +1404.1185 Functional Analysis +1404.1186 Quantum Gases +1404.1192 +1404.1193 Information Theory +1404.1196 Differential Geometry +1404.1198 Software Engineering +1404.1201 Formal Languages and Automata Theory +1404.1203 Geometric Topology +1404.1207 +1404.1217 Algebraic Topology +1404.1218 Differential Geometry +1404.1219 High Energy Astrophysical Phenomena +1404.1227 Logic in Computer Science +1404.1240 Quantitative Methods +1404.1245 Earth and Planetary Astrophysics +1404.1247 Astrophysics of Galaxies +1404.1248 +1404.1261 Plasma Physics +1404.1268 Plasma Physics +1404.1269 Information Theory +1404.1271 Other Computer Science +1404.1274 Combinatorics +1404.1285 +1404.1286 Other Computer Science +1404.1289 Complex Variables +1404.1290 Accelerator Physics +1404.1292 Computer Vision and Pattern Recognition +1404.1293 Materials Science +1404.1296 Quantum Algebra +1404.1300 Dynamical Systems +1404.1301 Digital Libraries +1404.1302 Dynamical Systems +1404.1307 Superconductivity +1404.1313 Multimedia +1404.1314 Multimedia +1404.1317 +1404.1320 Human-Computer Interaction +1404.1321 +1404.1322 Functional Analysis +1404.1324 Strongly Correlated Electrons +1404.1325 Optimization and Control +1404.1328 Distributed, Parallel, and Cluster Computing +1404.1329 Algebraic Geometry +1404.1331 Numerical Analysis +1404.1332 Fluid Dynamics +1404.1334 Earth and Planetary Astrophysics +1404.1338 Computers and Society +1404.1340 Methodology +1404.1345 Information Theory +1404.1347 Statistics Theory +1404.1348 Analysis of PDEs +1404.1355 Social and Information Networks +1404.1360 Neurons and Cognition +math/0402197 Geometric Topology +math/0609392 Dynamical Systems +math/0609399 Dynamical Systems +1405.0439 Cosmology and Nongalactic Astrophysics +0710.3834 Analysis of PDEs +0810.4236 Algebraic Geometry +0812.2311 Operator Algebras +0904.3473 Probability +0910.3297 Materials Science +1001.0172 Metric Geometry +1002.2651 Algebraic Geometry +1008.4903 Combinatorics +1010.2593 Mesoscale and Nanoscale Physics +1010.5890 Data Structures and Algorithms +1011.3507 Algebraic Geometry +1102.2585 +1105.4240 Quantum Algebra +1105.6186 Statistical Mechanics +1106.2504 +1109.3294 Algebraic Geometry +1109.3936 History and Philosophy of Physics +1109.6938 Algebraic Geometry +1112.2893 Classical Analysis and ODEs +1201.6059 Classical Physics +1202.2047 Number Theory +1203.1141 High Energy Astrophysical Phenomena +1203.2963 Symplectic Geometry +1203.4380 Databases +1203.5298 General Finance +1204.3977 +1204.5251 Number Theory +1205.0237 Algebraic Geometry +1205.0918 Experiment +1205.0975 Experiment +1207.3334 Algebraic Geometry +1208.3501 Dynamical Systems +1208.5842 Computer Vision and Pattern Recognition +1209.0738 Learning +1209.2639 Optimization and Control +1209.5486 Algebraic Topology +1210.3166 Representation Theory +1211.0958 Numerical Analysis +1211.3376 Computational Geometry +1211.7001 +1212.3521 Numerical Analysis +1212.4396 Logic +1212.5317 Astrophysics of Galaxies +1212.5871 Classical Analysis and ODEs +1212.6515 Number Theory +1301.2241 Strongly Correlated Electrons +1302.0058 Probability +1302.3341 +1302.3451 Statistics Theory +1302.4264 Phenomenology +1303.2899 +1303.5357 Analysis of PDEs +1304.0875 Chaotic Dynamics +1304.0902 Combinatorics +1304.4104 Formal Languages and Automata Theory +1304.4237 +1304.6871 Category Theory +1304.7037 Geometric Topology +1304.7425 Numerical Analysis +1304.7572 Category Theory +1305.0617 Statistics Theory +1305.0772 Statistical Mechanics +1305.1098 Combinatorics +1305.1950 Instrumentation and Methods for Astrophysics +1306.0924 Quantitative Methods +1306.3037 Instrumentation and Detectors +1306.3808 Physics and Society +1306.4114 Adaptation and Self-Organizing Systems +1307.0700 Soft Condensed Matter +1307.0800 Optimization and Control +1307.0911 Combinatorics +1307.1754 Optimization and Control +1307.2064 Physics and Society +1307.2499 Formal Languages and Automata Theory +1307.3442 Experiment +1307.6239 Programming Languages +1307.7042 Mathematical Software +1307.8122 Phenomenology +1308.0170 Populations and Evolution +1308.0656 Databases +1308.3961 Statistical Finance +1308.4063 +1309.1131 Physics and Society +1309.2036 +1309.2262 Soft Condensed Matter +1309.3802 Methodology +1309.4337 Complex Variables +1309.6447 Mesoscale and Nanoscale Physics +1309.6457 Mesoscale and Nanoscale Physics +1309.6627 Optimization and Control +1309.7437 Information Theory +1309.7566 Materials Science +1309.7589 Numerical Analysis +1309.7787 +1310.3229 Number Theory +1310.3347 Computational Finance +1310.3655 Soft Condensed Matter +1310.4363 Mesoscale and Nanoscale Physics +1310.5438 Machine Learning +1310.6967 Fluid Dynamics +1310.7796 Statistics Theory +1310.7946 Optics +1311.0268 +1311.1702 Disordered Systems and Neural Networks +1311.1975 Representation Theory +1311.3532 +1311.4008 Cryptography and Security +1311.4026 Materials Science +1311.4029 Computer Vision and Pattern Recognition +1311.5667 Statistical Mechanics +1312.0095 Materials Science +1312.0173 Probability +1312.0426 Quantum Gases +1312.0705 +1312.0722 Data Structures and Algorithms +1312.0815 Strongly Correlated Electrons +1312.1192 +1312.1297 Mesoscale and Nanoscale Physics +1312.1783 +1312.2358 Information Theory +1312.2423 Applications +1312.2764 Statistical Mechanics +1312.3871 Theory +1312.4018 Rings and Algebras +1312.4776 Representation Theory +1312.4778 Instrumentation and Methods for Astrophysics +1312.5200 Phenomenology +1312.5452 +1312.5775 +1312.7610 +1312.7792 Metric Geometry +1401.0174 Computational Geometry +1401.0250 Phenomenology +1401.0264 Phenomenology +1401.1188 +1401.1457 Computational Finance +1401.2241 Pattern Formation and Solitons +1401.3245 Experiment +1401.3808 Statistical Mechanics +1401.4439 Materials Science +1401.4524 Superconductivity +1401.4622 Operator Algebras +1401.5119 Earth and Planetary Astrophysics +1401.5648 Physics and Society +1401.6542 Differential Geometry +1401.6932 Experiment +1401.7693 Quantum Gases +1401.8157 Differential Geometry +1402.0284 Quantum Gases +1402.0417 Phenomenology +1402.0749 Quantitative Methods +1402.0770 Experiment +1402.3022 Biological Physics +1402.4313 Cosmology and Nongalactic Astrophysics +1402.5033 Mesoscale and Nanoscale Physics +1402.5198 +1402.6020 Operator Algebras +1403.1857 Theory +1403.4143 Computational Complexity +1403.4351 +1403.4456 Mesoscale and Nanoscale Physics +1403.4466 Phenomenology +1403.4900 +1403.6106 Physics and Society +1403.6541 Functional Analysis +1403.7432 +1403.8085 Numerical Analysis +1404.0287 Experiment +1404.1794 Cosmology and Nongalactic Astrophysics +1404.2505 Digital Libraries +1404.3275 Statistical Mechanics +1404.3653 Discrete Mathematics +1404.3899 Cryptography and Security +1404.4402 Group Theory +1404.4772 Optimization and Control +1404.6049 Disordered Systems and Neural Networks +1404.6713 Theory +1404.7149 +1404.7602 Commutative Algebra +1405.1131 Software Engineering +1405.1889 Materials Science +1405.1942 Analysis of PDEs +1405.3181 Phenomenology +1405.3846 Analysis of PDEs +1405.4625 Number Theory +1405.5344 Symplectic Geometry +1405.7102 Multimedia +1405.7452 Social and Information Networks +1405.7574 Solar and Stellar Astrophysics +1405.7931 Symplectic Geometry +1406.0267 Statistics Theory +1406.0336 Group Theory +1406.0849 Strongly Correlated Electrons +1406.1225 +1406.1323 Commutative Algebra +1406.1710 +1406.1774 Computer Vision and Pattern Recognition +1406.1929 +1406.2155 Superconductivity +1406.2522 Operator Algebras +1406.2566 Algebraic Geometry +1406.2750 Optics +1406.2852 Distributed, Parallel, and Cluster Computing +1406.2854 +1406.2988 Combinatorics +1406.3049 Representation Theory +1406.3145 Soft Condensed Matter +1406.3578 +1406.3611 Instrumentation and Methods for Astrophysics +1406.3622 Cosmology and Nongalactic Astrophysics +1406.3623 Functional Analysis +1406.3624 Functional Analysis +1406.3637 Logic +1406.3638 Information Theory +1406.3641 +1406.3645 Functional Analysis +1406.3648 Analysis of PDEs +1406.3651 Operator Algebras +1406.3654 Logic +1406.3655 Data Structures and Algorithms +1406.3659 Plasma Physics +1406.3661 Software Engineering +1406.3663 Social and Information Networks +1406.3664 Complex Variables +1406.3670 Materials Science +1406.3673 Disordered Systems and Neural Networks +1406.3680 Statistical Mechanics +1406.3682 Computers and Society +1406.3683 Combinatorics +1406.3687 Cryptography and Security +1406.3688 Materials Science +1406.3690 Materials Science +1406.3691 Analysis of PDEs +1406.3692 Computers and Society +1406.3693 Emerging Technologies +1406.3694 Analysis of PDEs +1406.3699 Distributed, Parallel, and Cluster Computing +1406.3702 Spectral Theory +1406.3703 Spectral Theory +1406.3704 Methodology +1406.3705 Algebraic Topology +1406.3707 High Energy Astrophysical Phenomena +1406.3711 Machine Learning +1406.3714 Computation and Language +1406.3716 Mathematical Finance +1406.3726 Learning +1406.3727 Software Engineering +1406.3728 Software Engineering +1406.3732 Classical Analysis and ODEs +1406.3735 Analysis of PDEs +1406.3736 Dynamical Systems +1406.3737 Complex Variables +1406.3738 Representation Theory +1406.3740 Differential Geometry +1406.3748 Probability +1406.3753 Networking and Internet Architecture +1406.3754 Number Theory +1406.3757 Rings and Algebras +1406.3758 Numerical Analysis +1406.3759 Strongly Correlated Electrons +1406.3764 Probability +1406.3765 Number Theory +1406.3766 Instrumentation and Methods for Astrophysics +1406.3768 Probability +1406.3770 Materials Science +1406.3773 Number Theory +1406.3775 +1406.3776 Representation Theory +1406.3779 Fluid Dynamics +1406.3780 Fluid Dynamics +1406.3783 +1406.3787 Combinatorics +1406.3790 Other Computer Science +1406.3792 Learning +1406.3793 Artificial Intelligence +1406.3796 Combinatorics +1406.3798 Combinatorics +1406.3801 Combinatorics +1406.3803 Group Theory +1406.3810 Analysis of PDEs +1406.3812 Data Structures and Algorithms +1406.3815 Spectral Theory +1406.3816 Learning +1406.3823 Optics +1406.3826 Atomic and Molecular Clusters +1406.3828 Genomics +1406.3830 Computation and Language +1406.3831 Dynamical Systems +1406.3837 Machine Learning +1406.3838 Computational Geometry +1406.3840 Learning +1406.3842 Functional Analysis +1406.3843 Computation +1406.3844 Combinatorics +1406.3845 High Energy Astrophysical Phenomena +1406.3846 Analysis of PDEs +1406.3848 Computers and Society +1406.3851 Dynamical Systems +1406.3855 Physics and Society +1406.3856 Dynamical Systems +1406.3858 Instrumentation and Detectors +1406.3860 Computational Geometry +1406.3861 Information Theory +1406.3864 Instrumentation and Detectors +1406.3865 Statistical Mechanics +1406.3868 Astrophysics of Galaxies +1406.3870 Information Retrieval +1406.3875 Geometric Topology +1406.3876 Digital Libraries +1406.3879 Number Theory +1406.3882 Information Retrieval +1406.3884 Sound +1406.3886 Instrumentation and Methods for Astrophysics +1406.3889 Information Theory +1406.3893 Algebraic Topology +1406.3895 Learning +1406.3896 Machine Learning +1406.3900 Differential Geometry +1406.3901 Distributed, Parallel, and Cluster Computing +1406.3906 Computer Vision and Pattern Recognition +1406.3907 Instrumentation and Detectors +1406.3908 Probability +1406.3910 Probability +1406.3911 Probability +1406.3915 Sound +1406.3921 +1406.3926 Learning +1406.3928 Instrumentation and Detectors +1406.3930 Number Theory +1406.3933 Probability +1406.3939 Superconductivity +1406.3940 Numerical Analysis +1406.3942 General Topology +1406.3943 Cryptography and Security +1406.3948 Numerical Analysis +1406.3949 Computer Vision and Pattern Recognition +1406.3954 Systems and Control +1406.3956 Theory +1406.3959 Quantum Algebra +1406.3962 Fluid Dynamics +1406.3964 Functional Analysis +1406.3969 Computation and Language +1406.3974 Formal Languages and Automata Theory +1406.3975 +1406.3976 Computation and Language +1406.3978 Representation Theory +1406.3987 Computation and Language +1406.3991 Optimization and Control +1406.3998 Combinatorics +1406.4000 Mesoscale and Nanoscale Physics +1406.4001 Phenomenology +1406.4002 Combinatorics +1406.4003 Probability +1406.4006 Neurons and Cognition +1406.4007 Computer Vision and Pattern Recognition +1406.4008 Optimization and Control +1406.4009 Mesoscale and Nanoscale Physics +1406.4011 Information Theory +1406.4014 Soft Condensed Matter +1406.4017 Analysis of PDEs +1406.4020 Digital Libraries +1406.4021 Dynamical Systems +1406.4025 Analysis of PDEs +1406.4030 Populations and Evolution +1406.4032 Soft Condensed Matter +1406.4034 Representation Theory +1406.4035 Optics +1406.4036 Analysis of PDEs +1406.4040 Analysis of PDEs +1406.4048 Formal Languages and Automata Theory +1406.4053 Cryptography and Security +1406.4056 Data Structures and Algorithms +1406.4057 Computation and Language +1406.4063 Optimization and Control +1406.4066 +1406.4068 Methodology +1406.4075 Discrete Mathematics +1406.4076 Accelerator Physics +1406.4080 +1406.4082 Earth and Planetary Astrophysics +1406.4086 Computers and Society +1406.4087 Programming Languages +1406.4089 Combinatorics +1406.4091 Differential Geometry +1406.4095 Phenomenology +1406.4097 +1406.4098 +1406.4102 +1406.4109 Strongly Correlated Electrons +1406.4110 Databases +1406.4111 Dynamical Systems +1406.4114 General Finance +1406.4117 Dynamical Systems +math/0412524 Number Theory +math/0503125 Geometric Topology +physics/0609169 General Physics +0805.3573 Probability +0902.1155 Group Theory +1002.1965 Theory +1003.3598 Algebraic Geometry +1007.0076 Algebraic Geometry +1007.0811 Optics +1007.2609 Geometric Topology +1008.0229 Optics +1009.2106 Group Theory +1009.2892 Group Theory +1010.3737 Group Theory +1012.0668 Complex Variables +1012.3697 Data Structures and Algorithms +1101.3057 Group Theory +1104.1381 Operator Algebras +1108.3073 Plasma Physics +1111.5421 Probability +1112.0893 Group Theory +1112.5889 +1112.5902 Combinatorics +1202.3287 +1203.3181 Probability +1203.6844 Cosmology and Nongalactic Astrophysics +1206.2030 Superconductivity +1206.5350 Combinatorics +1208.0066 Plasma Physics +1208.3222 General Physics +1208.3751 Computer Science and Game Theory +1208.6011 Cosmology and Nongalactic Astrophysics +1210.1597 Quantum Algebra +1210.2636 Soft Condensed Matter +1211.4015 Instrumentation and Detectors +1211.5274 Algebraic Topology +1212.1815 Algebraic Geometry +1212.3277 Algebraic Topology +1301.1225 Group Theory +1301.4111 Disordered Systems and Neural Networks +1301.6039 Artificial Intelligence +1302.6475 Combinatorics +1303.2926 Logic +1303.6932 Artificial Intelligence +1304.6401 Cosmology and Nongalactic Astrophysics +1304.6509 Superconductivity +1304.7895 Number Theory +1305.1421 Number Theory +1305.1758 Probability +1305.6054 +1305.6097 Combinatorics +1305.7443 Theory +1306.6321 +1307.1491 Quantum Gases +1307.5183 Mesoscale and Nanoscale Physics +1307.7095 Cosmology and Nongalactic Astrophysics +1308.2219 Soft Condensed Matter +1308.2887 Quantum Gases +1308.3347 +1308.3962 Mesoscale and Nanoscale Physics +1308.4882 Strongly Correlated Electrons +1309.1536 Computation and Language +1309.2662 Soft Condensed Matter +1309.3497 Optics +1309.3631 Phenomenology +1309.4559 Phenomenology +1309.4625 Populations and Evolution +1310.2125 Machine Learning +1310.4248 +1310.4296 Mesoscale and Nanoscale Physics +1310.5039 Probability +1310.7552 Information Theory +1311.0146 +1311.0999 +1311.1160 Theory +1311.1493 Superconductivity +1311.1740 Optics +1311.3544 Chemical Physics +1311.4447 +1311.5848 Theory +1311.6127 Instrumentation and Detectors +1311.6152 Instrumentation and Detectors +1311.6153 Instrumentation and Detectors +1312.0466 Cryptography and Security +1312.0775 +1312.1167 +1312.2149 Probability +1312.4906 Theory +1312.5151 Representation Theory +1312.6941 Exactly Solvable and Integrable Systems +1312.7224 Theory +1401.1904 Experiment +1401.2549 +1401.3060 Materials Science +1401.3697 Theory +1401.4915 Algebraic Geometry +1401.5523 Astrophysics of Galaxies +1401.6142 +1401.8241 +1402.0216 Spectral Theory +1402.0644 Differential Geometry +1402.1159 Category Theory +1402.2016 Computer Vision and Pattern Recognition +1402.2092 Learning +1402.2674 Theory +1402.3231 Representation Theory +1402.3560 Risk Management +1402.3887 Statistical Mechanics +1402.4515 Emerging Technologies +1402.5014 Fluid Dynamics +1402.5166 Solar and Stellar Astrophysics +1402.5338 Quantitative Methods +1402.5552 Analysis of PDEs +1402.6198 Analysis of PDEs +1402.6872 Complex Variables +1402.6902 Chaotic Dynamics +1402.7277 Instrumentation and Detectors +1403.0318 Algebraic Geometry +1403.0707 Strongly Correlated Electrons +1403.0928 Soft Condensed Matter +1403.1348 Superconductivity +1403.1438 +1403.1458 Information Theory +1403.1576 Phenomenology +1403.1584 +1403.1590 +1403.1593 Optics +1403.1598 +1403.1600 Machine Learning +1403.1602 Optimization and Control +1403.1603 Analysis of PDEs +1403.1606 Differential Geometry +1403.1613 Geometric Topology +1403.1616 Combinatorics +1403.1617 Combinatorics +1403.1618 Artificial Intelligence +1403.1621 +1403.1627 Algebraic Topology +1403.1628 Discrete Mathematics +1403.1629 Number Theory +1403.1639 Cryptography and Security +1403.1649 Numerical Analysis +1403.1653 Computer Vision and Pattern Recognition +1403.1655 Networking and Internet Architecture +1403.1657 Chaotic Dynamics +1403.1658 +1403.1660 Computer Vision and Pattern Recognition +1403.1661 Numerical Analysis +1403.1664 Strongly Correlated Electrons +1403.1665 Statistics Theory +1403.1666 Logic in Computer Science +1403.1669 Statistics Theory +1403.1677 General Topology +1403.1678 Dynamical Systems +1403.1680 Methodology +1403.1681 Commutative Algebra +1403.1685 Mesoscale and Nanoscale Physics +1403.1687 Computer Vision and Pattern Recognition +1403.1690 +1403.1691 Mesoscale and Nanoscale Physics +1403.1694 Programming Languages +1403.1695 Physics Education +1403.1696 Information Theory +1403.1697 Information Theory +1403.1699 Statistics Theory +1403.1702 Fluid Dynamics +1403.1706 Data Structures and Algorithms +1403.1707 Strongly Correlated Electrons +1403.1709 Instrumentation and Detectors +1403.1712 Numerical Analysis +1403.1713 Data Analysis, Statistics and Probability +1403.1714 Combinatorics +1403.1715 Trading and Market Microstructure +1403.1717 Instrumentation and Methods for Astrophysics +1403.1720 Functional Analysis +1403.1724 Instrumentation and Detectors +1403.1726 Differential Geometry +1403.1727 Neural and Evolutionary Computing +1403.1729 Networking and Internet Architecture +1403.1735 Neural and Evolutionary Computing +1403.1737 Analysis of PDEs +1403.1740 High Energy Astrophysical Phenomena +1403.1742 Analysis of PDEs +1403.1745 Digital Libraries +1403.1747 Analysis of PDEs +1403.1749 Software Engineering +1403.1750 Combinatorics +1403.1754 Materials Science +1403.1756 Probability +1403.1762 Statistics Theory +1403.1766 Analysis of PDEs +1403.1767 Superconductivity +1403.1768 Combinatorics +1403.1773 Computation and Language +1403.1775 +1403.1783 Applications +1403.1787 Classical Physics +1403.1789 +1403.1793 Adaptation and Self-Organizing Systems +1403.1795 Optimization and Control +1403.1800 Mesoscale and Nanoscale Physics +1403.1801 Geometric Topology +1403.1802 Commutative Algebra +1403.1804 Computational Finance +1403.1806 Methodology +1403.1811 Probability +1403.1818 Combinatorics +1403.1821 Analysis of PDEs +1403.1825 +1403.1826 Theory +1403.1830 Methodology +1403.1831 Exactly Solvable and Integrable Systems +1403.1834 Quantum Algebra +1403.1835 Information Theory +1403.1845 Combinatorics +1403.1846 Networking and Internet Architecture +1403.1848 Materials Science +1403.1849 Materials Science +1403.1851 Combinatorics +1403.1853 Analysis of PDEs +1403.1854 +1403.1858 Geometric Topology +1403.1863 Learning +1403.1864 Algebraic Geometry +1403.1867 Medical Physics +math-ph/0603080 +0901.1892 Information Theory +0906.2038 Optics +0907.3440 Fluid Dynamics +0909.3876 General Physics +0911.0965 Disordered Systems and Neural Networks +1001.1849 Statistical Mechanics +1001.3128 Analysis of PDEs +1004.0489 Optics +1006.2233 Statistical Mechanics +1007.5247 Mesoscale and Nanoscale Physics +1008.1414 Physics and Society +1009.2837 Numerical Analysis +1010.4342 Mesoscale and Nanoscale Physics +1010.6184 Classical Analysis and ODEs +1101.0103 Quantum Gases +1105.2111 +1106.0148 Statistical Mechanics +1107.5436 Chaotic Dynamics +1107.5749 Plasma Physics +1108.6304 Computer Vision and Pattern Recognition +1109.1575 Mesoscale and Nanoscale Physics +1110.4938 Functional Analysis +1111.3095 +1112.3800 Algebraic Geometry +1202.0803 Probability +1204.0837 Optics +1204.3325 Mesoscale and Nanoscale Physics +1207.6296 Combinatorics +1208.3896 General Physics +1209.0505 Mesoscale and Nanoscale Physics +1209.4616 Social and Information Networks +1210.0015 Theory +1210.2688 Logic in Computer Science +1211.5679 +1212.0079 Logic in Computer Science +1212.0313 Solar and Stellar Astrophysics +1212.2933 Probability +1303.4301 Strongly Correlated Electrons +1303.5444 Superconductivity +1304.2792 Representation Theory +1304.5117 Mesoscale and Nanoscale Physics +1304.5451 Mesoscale and Nanoscale Physics +1304.5941 Fluid Dynamics +1305.3365 Dynamical Systems +1305.3518 Plasma Physics +1305.5941 +1305.6197 Optics +1305.6792 Mesoscale and Nanoscale Physics +1306.3419 Other Condensed Matter +1306.4839 +1307.1224 Probability +1307.1383 +1307.1557 +1307.2941 Representation Theory +1307.3463 Neural and Evolutionary Computing +1307.5161 Computer Vision and Pattern Recognition +1307.6222 +1307.6458 Cryptography and Security +1308.0394 +1308.1262 Artificial Intelligence +1308.1739 Superconductivity +1308.4753 Cosmology and Nongalactic Astrophysics +1308.6387 Pricing of Securities +1309.0840 +1309.3336 Optics +1309.4409 Dynamical Systems +1309.5273 Phenomenology +1309.6925 Disordered Systems and Neural Networks +1309.7263 +1309.7332 +1310.1955 +1310.5191 Representation Theory +1310.7664 Quantum Algebra +1310.7700 +1310.8013 Statistical Mechanics +1311.2580 General Mathematics +1311.3710 +1311.5231 Mesoscale and Nanoscale Physics +1311.5508 +1311.6481 Strongly Correlated Electrons +1312.0405 +1312.1568 Statistical Mechanics +1312.2148 Plasma Physics +1312.2430 Phenomenology +1312.4427 Soft Condensed Matter +1312.5319 Strongly Correlated Electrons +1312.5785 Computer Vision and Pattern Recognition +1401.0401 Geometric Topology +1401.0629 Information Retrieval +1401.4561 Biological Physics +1401.4849 Probability +1401.6347 Chemical Physics +1401.6943 Fluid Dynamics +1402.0944 Applications +1402.2443 Theory +1402.3637 Astrophysics of Galaxies +1402.4266 +1402.7171 Functional Analysis +1403.0055 Cosmology and Nongalactic Astrophysics +1403.1145 Strongly Correlated Electrons +1403.1631 Cryptography and Security +1403.2571 Cosmology and Nongalactic Astrophysics +1403.3330 Optimization and Control +1403.3471 Differential Geometry +1403.3578 Solar and Stellar Astrophysics +1403.4020 Theory +1403.4236 +1403.5036 Optics +1403.5440 Combinatorics +1403.5513 Solar and Stellar Astrophysics +1403.5554 Optimization and Control +1403.6053 Algebraic Topology +1403.6225 Optimization and Control +1403.6927 Classical Analysis and ODEs +1403.6928 +1403.7194 Geophysics +1403.7209 Computational Engineering, Finance, and Science +1403.7212 Combinatorics +1403.7224 Algebraic Geometry +1403.7225 Algebraic Geometry +1403.7226 Differential Geometry +1403.7232 Information Theory +1403.7234 Accelerator Physics +1403.7235 Cosmology and Nongalactic Astrophysics +1403.7237 Optimization and Control +1403.7238 Discrete Mathematics +1403.7242 Social and Information Networks +1403.7247 Complex Variables +1403.7248 Databases +1403.7257 Software Engineering +1403.7258 Software Engineering +1403.7259 Software Engineering +1403.7260 Software Engineering +1403.7261 Software Engineering +1403.7264 Logic in Computer Science +1403.7265 Machine Learning +1403.7267 Machine Learning +1403.7271 Probability +1403.7272 Combinatorics +1403.7273 Numerical Analysis +1403.7275 +1403.7282 Earth and Planetary Astrophysics +1403.7285 Populations and Evolution +1403.7286 Computer Science and Game Theory +1403.7291 Hardware Architecture +1403.7292 Artificial Intelligence +1403.7293 Cryptography and Security +1403.7294 Distributed, Parallel, and Cluster Computing +1403.7295 Distributed, Parallel, and Cluster Computing +1403.7296 Computational Engineering, Finance, and Science +1403.7297 Cryptography and Security +1403.7299 Hardware Architecture +1403.7306 Mesoscale and Nanoscale Physics +1403.7308 Machine Learning +1403.7310 Phenomenology +1403.7311 Computer Vision and Pattern Recognition +1403.7313 Complex Variables +1403.7314 +1403.7315 Information Retrieval +1403.7320 Representation Theory +1403.7321 Computer Vision and Pattern Recognition +1403.7326 Logic +1403.7331 Number Theory +1403.7335 Computation and Language +1403.7344 Computers and Society +1403.7346 Optics +1403.7347 Logic in Computer Science +1403.7348 Accelerator Physics +1403.7349 Classical Analysis and ODEs +1403.7350 Emerging Technologies +1403.7351 Mesoscale and Nanoscale Physics +1403.7353 Logic in Computer Science +1403.7356 Analysis of PDEs +1403.7363 +1403.7365 Computer Vision and Pattern Recognition +1403.7367 Atmospheric and Oceanic Physics +1403.7368 Analysis of PDEs +1403.7371 Networking and Internet Architecture +1403.7373 Artificial Intelligence +1403.7374 Emerging Technologies +1403.7375 +1403.7379 Statistics Theory +1403.7380 Hardware Architecture +1403.7382 Classical Analysis and ODEs +1403.7384 Phenomenology +1403.7387 Probability +1403.7392 Phenomenology +1403.7394 Distributed, Parallel, and Cluster Computing +1403.7401 K-Theory and Homology +1403.7402 Computational Physics +1403.7412 Complex Variables +1403.7413 Tissues and Organs +1403.7415 Phenomenology +1403.7417 Classical Analysis and ODEs +1403.7421 Human-Computer Interaction +1403.7426 Artificial Intelligence +1403.7427 Optimization and Control +1403.7428 Computer Science and Game Theory +1403.7429 Optimization and Control +1403.7430 Functional Analysis +1403.7433 Phenomenology +1403.7434 History and Overview +1403.7435 Materials Science +1403.7436 Mesoscale and Nanoscale Physics +1403.7438 Earth and Planetary Astrophysics +1403.7443 Analysis of PDEs +1403.7451 Solar and Stellar Astrophysics +1403.7452 +1403.7453 Phenomenology +1403.7455 Computation and Language +1403.7456 Complex Variables +1403.7460 Classical Analysis and ODEs +1403.7464 +1403.7465 Artificial Intelligence +1403.7467 Strongly Correlated Electrons +1403.7468 Probability +1403.7472 Functional Analysis +1403.7473 Rings and Algebras +1403.7474 Rings and Algebras +1403.7476 Analysis of PDEs +1403.7478 Neurons and Cognition +1403.7484 Biomolecules +1403.7487 Classical Physics +1403.7497 Numerical Analysis +1403.7498 Optimization and Control +1403.7499 Operator Algebras +1403.7504 Algebraic Topology +1403.7506 Combinatorics +1403.7508 Chemical Physics +1403.7509 Statistical Mechanics +1403.7517 Statistics Theory +1403.7519 Data Structures and Algorithms +cond-mat/0410119 Statistical Mechanics +cond-mat/0505209 Statistical Mechanics +math/0606754 Differential Geometry +1004.0278 Algebraic Geometry +1012.4543 Superconductivity +1103.0058 Classical Analysis and ODEs +1104.2886 Algebraic Geometry +1104.4859 Mesoscale and Nanoscale Physics +1106.5473 +1109.2760 Superconductivity +1201.1045 +1205.1824 Combinatorics +1207.2938 Superconductivity +1209.0452 Superconductivity +1209.2804 +1209.4832 +1210.6705 Information Theory +1211.2075 Computational Physics +1211.3754 Information Theory +1211.4116 Learning +1211.4246 Learning +1212.3416 Systems and Control +1301.2107 Probability +1301.5469 +1302.2296 Number Theory +1303.4817 Instrumentation and Detectors +1304.1711 Strongly Correlated Electrons +1305.3643 Accelerator Physics +1305.4537 Computer Vision and Pattern Recognition +1306.2740 Optimization and Control +1306.3967 Rings and Algebras +1306.4030 Number Theory +1306.4506 +1306.5708 Combinatorics +1307.0608 Information Theory +1307.2256 Quantum Gases +1307.7654 +1308.1807 Probability +1308.2475 Numerical Analysis +1308.5923 +1309.2380 Strongly Correlated Electrons +1309.3248 Instrumentation and Methods for Astrophysics +1309.3734 Optimization and Control +1309.3905 +1309.5253 +1309.7476 Commutative Algebra +1309.7477 Commutative Algebra +1310.4957 Theory +1310.5695 Computer Science and Game Theory +1310.7914 +1310.8291 +1311.0308 Strongly Correlated Electrons +1311.1342 Probability +1311.1968 +1311.2782 Soft Condensed Matter +1311.2913 +1311.3217 +1311.5241 Cosmology and Nongalactic Astrophysics +1311.6231 Quantum Algebra +1311.6465 Phenomenology +1312.1097 Numerical Analysis +1312.2068 +1312.2420 Strongly Correlated Electrons +1312.2440 Algebraic Topology +1312.2827 Populations and Evolution +1312.3764 Solar and Stellar Astrophysics +1312.3884 Number Theory +1312.5628 Lattice +1312.5842 Probability +1312.6145 Theory +1312.7074 +1401.0651 +1401.0904 Classical Analysis and ODEs +1401.2947 Optics +1401.4088 +1401.4558 Mesoscale and Nanoscale Physics +1401.4621 Optimization and Control +1401.5262 +1401.5663 Mesoscale and Nanoscale Physics +1401.5692 Strongly Correlated Electrons +1401.6343 +1401.7321 Theory +1401.7488 Strongly Correlated Electrons +1401.7526 +1402.0307 +1402.1590 Other Condensed Matter +1402.1623 Cosmology and Nongalactic Astrophysics +1402.2464 Cosmology and Nongalactic Astrophysics +1402.2564 Populations and Evolution +1402.2764 +1402.2914 Strongly Correlated Electrons +1402.4168 Group Theory +1402.4596 Quantum Gases +1402.4731 Phenomenology +1402.5307 +1402.5737 Theory +1402.6469 +1402.6816 Chaotic Dynamics +1402.6986 Chaotic Dynamics +1403.0511 Quantum Gases +1403.0702 Theory +1403.1133 Analysis of PDEs +1403.1632 Phenomenology +1403.2153 Atomic and Molecular Clusters +1403.2337 Phenomenology +1403.4186 Phenomenology +1403.4225 +1403.4353 Instrumentation and Methods for Astrophysics +1403.4925 Phenomenology +1403.5122 Phenomenology +1403.5421 Experiment +1403.6585 Dynamical Systems +1403.6655 Superconductivity +1403.7538 Phenomenology +1403.7818 Quantum Algebra +1404.0063 Numerical Analysis +1404.2175 Cosmology and Nongalactic Astrophysics +1404.3101 Materials Science +1404.3138 Phenomenology +1404.5737 Mesoscale and Nanoscale Physics +1404.6179 Digital Libraries +1404.6511 Lattice +1404.6519 Digital Libraries +1404.6930 +1404.7524 Phenomenology +1405.0202 Strongly Correlated Electrons +1405.0293 Logic in Computer Science +1405.0789 Discrete Mathematics +1405.0962 Cryptography and Security +1405.1041 Strongly Correlated Electrons +1405.1180 +1405.1453 Solar and Stellar Astrophysics +1405.1642 Atomic Physics +1405.2324 Phenomenology +1405.3002 +1405.3089 Mesoscale and Nanoscale Physics +1405.4110 Materials Science +1405.4689 Materials Science +1405.4831 Phenomenology +1405.4904 Experiment +1405.6823 Statistical Mechanics +1405.7512 Solar and Stellar Astrophysics +1406.0005 Probability +1406.0246 +1406.0249 Cosmology and Nongalactic Astrophysics +1406.0890 Quantum Gases +1406.1072 Combinatorics +1406.1439 Optics +1406.2027 Phenomenology +1406.2264 +1406.2594 +1406.2606 Phenomenology +1406.2611 +1406.3290 Molecular Networks +1406.3434 +1406.3744 Materials Science +1406.4204 Quantum Algebra +1406.4633 Instrumentation and Detectors +1406.5450 +1406.5891 Mesoscale and Nanoscale Physics +1406.6354 Theory +1406.6781 +1406.7007 Theory +1406.7011 Phenomenology +1407.0649 Phenomenology +1407.2286 Analysis of PDEs +1407.2745 Category Theory +1407.4109 Probability +1407.5894 +1407.6187 +1407.6397 Mesoscale and Nanoscale Physics +1407.7246 +1407.8549 Phenomenology +1408.0012 Theory +1408.0406 Social and Information Networks +1408.0514 Strongly Correlated Electrons +1408.0690 +1408.1998 Theory +1408.2434 Chemical Physics +1408.3211 Phenomenology +1408.3351 Emerging Technologies +1408.3738 Physics and Society +1408.3907 Optimization and Control +1408.4112 Networking and Internet Architecture +1408.4120 Astrophysics of Galaxies +1408.4140 Machine Learning +1408.4143 Computer Vision and Pattern Recognition +1408.4146 Analysis of PDEs +1408.4149 Analysis of PDEs +1408.4152 Solar and Stellar Astrophysics +1408.4156 Data Structures and Algorithms +1408.4165 Number Theory +1408.4166 Number Theory +1408.4174 +1408.4183 Data Analysis, Statistics and Probability +1408.4184 Optimization and Control +1408.4188 Logic +1408.4189 Representation Theory +1408.4190 Soft Condensed Matter +1408.4192 Probability +1408.4194 Social and Information Networks +1408.4196 Probability +1408.4197 Superconductivity +1408.4198 Combinatorics +1408.4201 +1408.4203 +1408.4205 Numerical Analysis +1408.4212 Optics +1408.4213 Optimization and Control +1408.4218 Information Theory +1408.4220 High Energy Astrophysical Phenomena +1408.4222 Neural and Evolutionary Computing +1408.4223 Number Theory +1408.4225 Classical Physics +1408.4228 Earth and Planetary Astrophysics +1408.4231 Logic +1408.4239 Networking and Internet Architecture +1408.4240 Complex Variables +1408.4241 Materials Science +1408.4243 Differential Geometry +1408.4245 Social and Information Networks +1408.4250 Instrumentation and Methods for Astrophysics +1408.4251 Spectral Theory +1408.4253 Probability +1408.4261 Materials Science +1408.4262 Logic +1408.4263 Logic in Computer Science +1408.4267 Optimization and Control +1408.4271 Numerical Analysis +1408.4275 Commutative Algebra +1408.4280 +1408.4289 Dynamical Systems +1408.4290 Discrete Mathematics +1408.4304 Logic +1408.4309 Fluid Dynamics +1408.4310 Mesoscale and Nanoscale Physics +1408.4313 +1408.4316 Materials Science +1408.4317 Differential Geometry +1408.4321 +1408.4325 Computer Vision and Pattern Recognition +1408.4331 Differential Geometry +1408.4336 +1408.4341 Instrumentation and Methods for Astrophysics +1408.4343 Commutative Algebra +1408.4346 +1408.4349 Instrumentation and Methods for Astrophysics +1408.4358 +1408.4359 Operator Algebras +1408.4361 Information Theory +1408.4363 Computer Vision and Pattern Recognition +1408.4364 Discrete Mathematics +1408.4366 Atmospheric and Oceanic Physics +1408.4370 Instrumentation and Methods for Astrophysics +1408.4371 Instrumentation and Methods for Astrophysics +1408.4378 Applications +1408.4380 Applications +1408.4381 Complex Variables +1408.4383 Applications +1408.4385 Strongly Correlated Electrons +1408.4388 Cosmology and Nongalactic Astrophysics +1408.4398 Atmospheric and Oceanic Physics +1408.4400 Functional Analysis +1408.4409 Information Theory +1408.4411 Phenomenology +1408.4413 Materials Science +1408.4418 Materials Science +1408.4421 Spectral Theory +1408.4422 Cosmology and Nongalactic Astrophysics +1408.4424 Computer Science and Game Theory +1408.4431 +1408.4433 Information Theory +1408.4437 Logic +1408.4438 Computation +1408.4442 Cosmology and Nongalactic Astrophysics +1408.4443 Systems and Control +cond-mat/0701239 Materials Science +hep-ph/0503051 Phenomenology +0711.1720 Complex Variables +0805.0056 Methodology +0902.0280 Complex Variables +0902.4565 Theory +0907.4674 Mesoscale and Nanoscale Physics +0911.2562 Complex Variables +1004.3597 Quantum Gases +1009.3383 Differential Geometry +1009.5968 +1011.0522 Complex Variables +1102.5669 +1103.4431 Algebraic Geometry +1106.3961 Software Engineering +1107.5724 +1108.5145 +1108.5189 Theory +1109.1771 Number Theory +1110.0483 Plasma Physics +1110.5352 Theory +1112.4713 Theory +1201.2316 +1201.3544 Atomic Physics +1201.6255 Neurons and Cognition +1202.0985 Complex Variables +1202.2754 Algebraic Geometry +1204.5968 Number Theory +1204.6595 Combinatorics +1205.3285 Differential Geometry +1206.4577 Materials Science +1206.6667 Dynamical Systems +1207.3526 Algebraic Geometry +1209.0404 +1209.0405 +1209.4879 Combinatorics +1209.4991 Group Theory +1209.6008 Dynamical Systems +1211.1559 Functional Analysis +1211.2222 Probability +1211.4562 Commutative Algebra +1211.5492 Multimedia +1211.5803 Methodology +1211.6354 Differential Geometry +1212.1663 Theory +1212.2428 Complex Variables +1212.5888 Probability +1301.4030 Statistics Theory +1303.0483 Theory +1303.5081 Cosmology and Nongalactic Astrophysics +1304.1423 Discrete Mathematics +1304.1849 Computational Finance +1304.5227 Category Theory +1304.5400 Phenomenology +1304.6070 Materials Science +1305.6842 Rings and Algebras +1306.3219 Cosmology and Nongalactic Astrophysics +1306.3519 Algebraic Geometry +1306.4938 +1306.5447 Computational Finance +1306.5603 Statistics Theory +1307.1220 +1307.1420 +1307.2834 +1307.5128 Phenomenology +1307.7066 Logic in Computer Science +1307.7259 Data Structures and Algorithms +1307.7964 +1308.1432 Materials Science +1308.2110 Quantum Gases +1308.2992 Quantum Algebra +1308.3930 +1308.4616 Optimization and Control +1309.0049 Algebraic Geometry +1309.0376 +1309.1051 Data Structures and Algorithms +1309.2446 +1309.3759 Dynamical Systems +1310.1183 Methodology +1310.3815 Cosmology and Nongalactic Astrophysics +1311.0402 Distributed, Parallel, and Cluster Computing +1311.0769 Quantum Gases +1311.3277 Optics +1311.3598 +1312.0463 Theory +1312.1878 Differential Geometry +1312.2411 Populations and Evolution +1312.2684 Theory +1312.3290 Numerical Analysis +1312.3314 Analysis of PDEs +1312.3413 +1312.5711 Classical Analysis and ODEs +1401.1756 +1401.6080 Analysis of PDEs +1402.0701 Atomic and Molecular Clusters +1402.1387 Number Theory +1402.1920 Statistics Theory +1402.4039 Computation +1402.4923 Analysis of PDEs +1402.6355 Number Theory +1402.7079 Cosmology and Nongalactic Astrophysics +1403.1638 Methodology +1403.2923 Information Retrieval +1403.3233 Fluid Dynamics +1403.3915 +1403.3977 Superconductivity +1403.5063 Superconductivity +1403.7513 Optics +1403.7865 Populations and Evolution +1403.8027 Combinatorics +1403.8068 Fluid Dynamics +1404.1569 Differential Geometry +1404.2221 Probability +1404.2334 Robotics +1404.2582 Fluid Dynamics +1404.3153 Computational Finance +1404.3911 Algebraic Geometry +1404.5288 +1404.6797 Theory +1404.7397 Statistics Theory +1404.7831 Statistical Mechanics +1405.0200 General Physics +1405.0514 Learning +1405.0618 High Energy Astrophysical Phenomena +1405.0645 +1405.1854 Biological Physics +1405.2105 Methodology +1405.3266 Numerical Analysis +1405.4772 +1405.5314 Materials Science +1405.5371 Data Structures and Algorithms +1405.5993 Populations and Evolution +1405.6191 Mesoscale and Nanoscale Physics +1405.7191 Instrumentation and Detectors +1405.7306 Computational Physics +1405.7759 Phenomenology +1405.7804 +1405.7862 Theory +1406.0389 Risk Management +1406.0592 Classical Analysis and ODEs +1406.1730 Differential Geometry +1406.1731 Instrumentation and Detectors +1406.2839 Computation +1406.3183 Computation +1406.3524 +1406.4516 Cryptography and Security +1406.4735 Materials Science +1406.6582 Plasma Physics +1406.6921 Statistical Mechanics +1406.7517 Analysis of PDEs +1407.0363 +1407.0417 Complex Variables +1407.1754 Probability +1407.1924 +1407.4408 Atomic Physics +1407.4742 High Energy Astrophysical Phenomena +1407.5798 Statistics Theory +1407.7378 Chaotic Dynamics +1407.7841 Cryptography and Security +1408.0022 Strongly Correlated Electrons +1408.0078 Strongly Correlated Electrons +1408.0395 Distributed, Parallel, and Cluster Computing +1408.0934 +1408.0940 +1408.1717 Learning +1408.3390 +1408.3689 +1408.3924 Phenomenology +1408.3997 Strongly Correlated Electrons +1408.4020 Strongly Correlated Electrons +1408.4642 Mesoscale and Nanoscale Physics +1408.6643 Solar and Stellar Astrophysics +1408.6810 +1409.1136 Formal Languages and Automata Theory +1409.1395 Operator Algebras +1409.1678 Atomic Physics +1409.2136 Medical Physics +1409.3185 Phenomenology +1409.3213 Solar and Stellar Astrophysics +1409.3369 Statistical Mechanics +1409.4017 +1409.4024 +1409.5623 Information Retrieval +1409.6104 Biological Physics +1409.6539 Phenomenology +1409.6939 Other Quantitative Biology +1409.7046 Geometric Topology +1409.7342 +1409.7529 Differential Geometry +1409.7938 Learning +1409.8238 Theory +1409.8676 Astrophysics of Galaxies +1410.0108 Phenomenology +1410.0301 +1410.0551 Mesoscale and Nanoscale Physics +1410.0835 Representation Theory +1410.0932 +1410.1024 Statistical Mechanics +1410.1365 Statistical Mechanics +1410.1660 Earth and Planetary Astrophysics +1410.2967 Superconductivity +1410.3882 Mesoscale and Nanoscale Physics +1410.6083 Functional Analysis +1410.6247 Statistical Mechanics +1410.6364 Molecular Networks +1410.7612 Cosmology and Nongalactic Astrophysics +1410.8291 Instrumentation and Methods for Astrophysics +1410.8813 Lattice +1411.0393 Methodology +1411.0528 Phenomenology +1411.1655 High Energy Astrophysical Phenomena +1411.1870 Symplectic Geometry +1411.1892 Phenomenology +1411.2150 Phenomenology +1411.3491 Soft Condensed Matter +1411.4153 Analysis of PDEs +1411.4242 Cell Behavior +1411.4494 Optics +1411.4795 Operator Algebras +1411.4827 +1411.5117 Differential Geometry +1411.5216 Probability +1411.5265 Dynamical Systems +1411.5413 Statistical Mechanics +1411.5437 Computational Complexity +1411.5492 Fluid Dynamics +1411.5592 Theory +1411.5762 Mesoscale and Nanoscale Physics +1411.5973 Mesoscale and Nanoscale Physics +1411.6296 Numerical Analysis +1411.6360 Group Theory +1411.6415 Differential Geometry +1411.6573 Social and Information Networks +1411.6579 Algebraic Geometry +1411.6758 +1411.7086 Information Theory +1411.7099 Cryptography and Security +1411.7134 Numerical Analysis +1411.7155 Phenomenology +1411.7276 Fluid Dynamics +1411.7396 Lattice +1411.7398 +1411.7406 Information Theory +1411.7410 High Energy Astrophysical Phenomena +1411.7411 High Energy Astrophysical Phenomena +1411.7419 Databases +1411.7424 Dynamical Systems +1411.7428 Classical Physics +1411.7429 Quantum Algebra +1411.7431 +1411.7432 Machine Learning +1411.7435 Rings and Algebras +1411.7436 Mesoscale and Nanoscale Physics +1411.7440 Mesoscale and Nanoscale Physics +1411.7441 Artificial Intelligence +1411.7442 Combinatorics +1411.7443 Social and Information Networks +1411.7444 Mesoscale and Nanoscale Physics +1411.7445 Robotics +1411.7450 Learning +1411.7453 High Energy Astrophysical Phenomena +1411.7454 Superconductivity +1411.7455 Computational Complexity +1411.7457 Differential Geometry +1411.7458 Combinatorics +1411.7460 Data Structures and Algorithms +1411.7462 Computational Engineering, Finance, and Science +1411.7464 Numerical Analysis +1411.7466 Computer Vision and Pattern Recognition +1411.7469 Databases +1411.7470 Differential Geometry +1411.7474 Software Engineering +1411.7480 Artificial Intelligence +1411.7481 Methodology +1411.7482 Networking and Internet Architecture +1411.7483 Phenomenology +1411.7487 Cryptography and Security +1411.7492 Computational Complexity +1411.7493 Information Theory +1411.7496 Probability +1411.7497 Probability +1411.7498 Group Theory +1411.7503 Rings and Algebras +1411.7504 +1411.7505 Statistical Mechanics +1411.7507 Distributed, Parallel, and Cluster Computing +1411.7509 Statistical Mechanics +1411.7510 +1411.7514 Mesoscale and Nanoscale Physics +1411.7516 Logic +1411.7517 Experiment +1411.7519 Solar and Stellar Astrophysics +1411.7522 Optics +1411.7524 Differential Geometry +1411.7525 Artificial Intelligence +1411.7526 Solar and Stellar Astrophysics +1411.7528 Lattice +1411.7530 Materials Science +1411.7531 Probability +1411.7532 Solar and Stellar Astrophysics +1411.7534 Solar and Stellar Astrophysics +1411.7537 Number Theory +1411.7538 Phenomenology +1411.7540 Quantum Gases +1411.7542 Neural and Evolutionary Computing +1411.7544 Dynamical Systems +1411.7545 History and Philosophy of Physics +1411.7546 Statistical Mechanics +1411.7556 Astrophysics of Galaxies +1411.7557 Biomolecules +1411.7562 Chaotic Dynamics +1411.7563 Algebraic Topology +1411.7572 Numerical Analysis +1411.7575 Group Theory +1411.7576 Experiment +1411.7579 +1411.7581 Statistics Theory +1411.7582 Learning +1411.7583 Complex Variables +1411.7586 Biological Physics +1411.7589 Numerical Analysis +1411.7592 Lattice +1411.7594 Number Theory +1411.7598 Quantum Algebra +1411.7600 Number Theory +1411.7601 Statistics Theory +1411.7603 Astrophysics of Galaxies +1411.7604 Dynamical Systems +1411.7607 Information Theory +1411.7612 Distributed, Parallel, and Cluster Computing +1411.7614 Computational Complexity +1411.7616 Cosmology and Nongalactic Astrophysics +1411.7622 Solar and Stellar Astrophysics +1411.7627 Experiment +1411.7629 Classical Analysis and ODEs +1411.7637 Optics +1411.7638 Experiment +1411.7639 Distributed, Parallel, and Cluster Computing +1411.7642 Experiment +1411.7645 Logic +1411.7647 Computational Complexity +1411.7648 Lattice +1411.7653 Mathematical Finance +1411.7655 Computer Vision and Pattern Recognition +1411.7658 Distributed, Parallel, and Cluster Computing +1411.7662 Networking and Internet Architecture +1411.7663 Numerical Analysis +1411.7664 Differential Geometry +1411.7666 +1411.7679 Analysis of PDEs +1411.7682 Computer Vision and Pattern Recognition +1411.7683 Combinatorics +1411.7685 Phenomenology +1411.7686 Phenomenology +1411.7688 Probability +1411.7693 Probability +1411.7694 Methodology +1411.7705 Spectral Theory +1411.7706 Machine Learning +1411.7707 Optimization and Control +1411.7708 Classical Analysis and ODEs +1411.7709 K-Theory and Homology +1411.7713 Methodology +1411.7714 Computer Vision and Pattern Recognition +1411.7723 Symplectic Geometry +1411.7726 Social and Information Networks +1411.7727 Social and Information Networks +1411.7732 Algebraic Geometry +1411.7735 Combinatorics +1411.7736 Combinatorics +1411.7740 Commutative Algebra +1411.7742 Instrumentation and Detectors +1411.7744 Rings and Algebras +1411.7752 Materials Science +1411.7753 Computational Geometry +1411.7756 Cryptography and Security +1411.7758 Theory +1411.7761 Earth and Planetary Astrophysics +1411.7764 Number Theory +1411.7769 Materials Science +1411.7770 Algebraic Geometry +1411.7776 Phenomenology +1411.7777 Group Theory +1411.7786 Experiment +1411.7787 Number Theory +1411.7791 Experiment +1411.7795 Probability +1411.7798 Computer Vision and Pattern Recognition +1411.7800 Analysis of PDEs +1411.7802 Number Theory +1411.7803 Cryptography and Security +1411.7806 Neural and Evolutionary Computing +1411.7810 Instrumentation and Methods for Astrophysics +1411.7814 Instrumentation and Detectors +1411.7815 Complex Variables +1411.7816 Information Theory +1411.7817 Machine Learning +1411.7818 Combinatorics +1411.7820 Computation and Language +1411.7821 Phenomenology +1411.7824 Quantum Algebra +1411.7825 Logic in Computer Science +1411.7826 +1411.7830 Theory +1411.7832 Combinatorics +1411.7834 Combinatorics +1411.7841 Phenomenology +1411.7843 Astrophysics of Galaxies +1411.7847 Rings and Algebras +1411.7848 Probability +1411.7851 Differential Geometry +1411.7852 Group Theory +1411.7853 Phenomenology +1411.7856 Experiment +1411.7859 Classical Analysis and ODEs +1411.7860 Atomic Physics +1411.7861 Materials Science +1411.7862 Analysis of PDEs +1411.7864 Machine Learning +1411.7871 +1411.7872 Algebraic Geometry +1411.7874 Optics +1411.7877 Complex Variables +1411.7881 Phenomenology +1411.7882 Statistical Mechanics +1411.7887 +1411.7889 Optics +1411.7891 Metric Geometry +1411.7896 Chaotic Dynamics +1411.7900 Space Physics +1411.7902 +1411.7909 Analysis of PDEs +1411.7910 Performance +1411.7917 Experiment +1411.7923 Computer Vision and Pattern Recognition +1411.7924 Machine Learning +1411.7927 Space Physics +1411.7929 Numerical Analysis +1411.7930 Numerical Analysis +1411.7938 Commutative Algebra +1411.7944 Dynamical Systems +1411.7945 Classical Analysis and ODEs +1411.7947 Biological Physics +1411.7948 Quantum Gases +1411.7949 Quantum Gases +1411.7953 Earth and Planetary Astrophysics +1411.7955 Methodology +1411.7958 Complex Variables +1411.7960 Human-Computer Interaction +1411.7962 Phenomenology +1411.7964 Computer Vision and Pattern Recognition +1411.7965 Exactly Solvable and Integrable Systems +1411.7982 Algebraic Geometry +1411.7985 High Energy Astrophysical Phenomena +1411.7987 Theory +1411.7988 Algebraic Topology +1411.7990 Representation Theory +1411.7994 Algebraic Geometry +1411.7996 Differential Geometry +1411.8000 Probability +1411.8004 Cosmology and Nongalactic Astrophysics +alg-geom/9312007 Algebraic Geometry +alg-geom/9312008 Algebraic Geometry +alg-geom/9607006 Algebraic Geometry +alg-geom/9608033 Algebraic Geometry +math/0001093 Algebraic Geometry +math/0405558 Complex Variables +math/0405560 Complex Variables +math/0406287 Algebraic Geometry +math/0703572 Complex Variables +quant-ph/0203085 +quant-ph/0304011 +quant-ph/0405116 +quant-ph/0608039 +quant-ph/0703047 +0710.4647 +0803.2541 Theory +0810.3138 Algebraic Geometry +0811.3627 Soft Condensed Matter +0905.1803 Algebraic Geometry +0905.2925 Classical Analysis and ODEs +0912.4342 Algebraic Geometry +1001.3683 +1007.0927 Soft Condensed Matter +1011.1012 Instrumentation and Detectors +1011.2827 Risk Management +1105.5708 Operator Algebras +1107.1386 General Topology +1107.1494 General Topology +1107.1502 General Topology +1107.1505 Functional Analysis +1107.1508 General Topology +1107.1510 General Topology +1107.1512 Functional Analysis +1109.0096 Mesoscale and Nanoscale Physics +1111.4704 Atomic Physics +1112.5766 Risk Management +1201.0606 Geometric Topology +1201.5675 Group Theory +1202.1216 Optics +1205.1073 Soft Condensed Matter +1205.5954 Theory +1206.2990 Soft Condensed Matter +1207.2271 +1210.2640 Learning +1210.2802 High Energy Astrophysical Phenomena +1211.0909 Instrumentation and Methods for Astrophysics +1211.7247 Functional Analysis +1301.4787 +1306.4690 Numerical Analysis +1306.5150 +1307.2481 Number Theory +1309.0536 Algebraic Geometry +1309.7060 Complex Variables +1309.7645 Probability +1310.0833 Combinatorics +1310.2728 Combinatorics +1310.7616 Cryptography and Security +1312.4338 Classical Analysis and ODEs +1312.5337 Analysis of PDEs +1312.6252 Theory +1401.3924 Statistical Mechanics +1401.5356 Mesoscale and Nanoscale Physics +1401.6107 Solar and Stellar Astrophysics +1401.7055 Subcellular Processes +1401.7819 Probability +1402.2259 Analysis of PDEs +1402.2574 Materials Science +1402.3695 Statistics Theory +1402.4985 Differential Geometry +1402.5563 Soft Condensed Matter +1402.6051 Algebraic Geometry +1403.0921 Social and Information Networks +1403.2744 Quantum Gases +1403.2788 Logic +1404.1959 +1404.2185 Cosmology and Nongalactic Astrophysics +1404.3325 Social and Information Networks +1404.4733 Theory +1404.5308 +1404.6498 Commutative Algebra +1404.7240 +1405.2190 Optimization and Control +1405.3815 Superconductivity +1405.4858 Cosmology and Nongalactic Astrophysics +1405.5043 Materials Science +1405.6466 Neurons and Cognition +1406.0419 Statistical Mechanics +1406.0531 Machine Learning +1406.1222 Learning +1406.1919 +1406.2243 Astrophysics of Galaxies +1406.3665 Optimization and Control +1406.3944 Strongly Correlated Electrons +1406.4506 Theory +1406.6184 Soft Condensed Matter +1406.6714 Earth and Planetary Astrophysics +1407.0521 Statistical Mechanics +1407.1635 Statistical Mechanics +1407.1860 Atomic Physics +1407.3236 Phenomenology +1407.3289 Machine Learning +1407.3313 Analysis of PDEs +1407.3428 Atomic Physics +1407.3456 Strongly Correlated Electrons +1407.5436 Number Theory +1407.7028 Materials Science +1407.7231 Phenomenology +1407.8338 Cosmology and Nongalactic Astrophysics +1408.4760 +1408.6774 Combinatorics +1409.0241 Analysis of PDEs +1409.2374 +1409.4312 Probability +1409.4768 Astrophysics of Galaxies +1409.5768 Phenomenology +1409.6440 Computer Vision and Pattern Recognition +1409.7987 +1409.8488 +1410.0697 Strongly Correlated Electrons +1410.0877 +1410.1252 Number Theory +1410.1697 Functional Analysis +1410.1807 Instrumentation and Detectors +1410.1863 Physics and Society +1410.2903 Information Theory +1410.3220 Soft Condensed Matter +1410.5507 +1410.6607 Lattice +1410.6858 Networking and Internet Architecture +1410.6875 Optimization and Control +1410.7030 Combinatorics +1410.7985 Theory +1410.7998 Neurons and Cognition +1410.8259 +1410.8392 Lattice +1410.8524 Materials Science +1410.8526 Instrumentation and Detectors +1410.8536 Artificial Intelligence +1410.8544 Digital Libraries +1410.8548 Differential Geometry +1410.8549 High Energy Astrophysical Phenomena +1410.8551 Probability +1410.8552 Phenomenology +1410.8553 Computation and Language +1410.8554 Solar and Stellar Astrophysics +1410.8558 Fluid Dynamics +1410.8564 Populations and Evolution +1410.8565 Classical Physics +1410.8568 Fluid Dynamics +1410.8571 Medical Physics +1410.8572 Lattice +1410.8576 Computer Vision and Pattern Recognition +1410.8577 Computer Vision and Pattern Recognition +1410.8580 Neurons and Cognition +1410.8581 Computation and Language +1410.8582 Probability +1410.8585 Algebraic Geometry +1410.8586 Computer Vision and Pattern Recognition +1410.8587 Algebraic Geometry +1410.8591 Statistical Mechanics +1410.8592 History and Overview +1410.8594 Dynamical Systems +1410.8599 +1410.8603 Applications +1410.8609 Pricing of Securities +1410.8610 +1410.8614 Number Theory +1410.8620 Learning +1410.8621 +1410.8622 Probability +1410.8623 Computer Vision and Pattern Recognition +1410.8624 Numerical Analysis +1410.8626 Soft Condensed Matter +1410.8628 Combinatorics +1410.8629 Dynamical Systems +1410.8631 Dynamical Systems +1410.8633 Networking and Internet Architecture +1410.8636 Analysis of PDEs +1410.8637 Combinatorics +1410.8640 Dynamical Systems +1410.8642 Analysis of PDEs +1410.8648 Number Theory +1410.8649 Mesoscale and Nanoscale Physics +1410.8650 Operator Algebras +1410.8652 +1410.8654 Differential Geometry +1410.8656 Atomic Physics +1410.8657 Algebraic Geometry +1410.8659 Fluid Dynamics +1410.8663 Discrete Mathematics +1410.8664 Social and Information Networks +1410.8665 Networking and Internet Architecture +1410.8668 Computation and Language +1410.8673 Multiagent Systems +1410.8675 Machine Learning +1410.8677 Analysis of PDEs +1410.8678 Differential Geometry +1410.8679 Methodology +1410.8680 Theory +1410.8684 +1410.8685 Digital Libraries +1410.8686 Quantum Algebra +1410.8687 Analysis of PDEs +1410.8688 Methodology +1410.8693 Soft Condensed Matter +1410.8694 Discrete Mathematics +1410.8695 Soft Condensed Matter +1410.8705 Quantum Algebra +1410.8706 Instrumentation and Methods for Astrophysics +1410.8707 +1410.8709 Chaotic Dynamics +1410.8711 +1410.8713 Networking and Internet Architecture +1410.8716 Quantum Gases +1410.8717 Astrophysics of Galaxies +1410.8725 Information Theory +1410.8732 Experiment +1410.8733 +1410.8735 Operator Algebras +1410.8737 Optics +1410.8740 Statistics Theory +1410.8742 Fluid Dynamics +1410.8743 Superconductivity +1410.8745 High Energy Astrophysical Phenomena +1410.8747 Cryptography and Security +1410.8749 Social and Information Networks +1410.8750 Learning +1410.8755 Optimization and Control +1410.8757 Lattice +1410.8759 Solar and Stellar Astrophysics +1410.8766 Methodology +1410.8768 Molecular Networks +1410.8771 Chemical Physics +1410.8772 Hardware Architecture +1410.8773 Optics +1410.8774 Discrete Mathematics +1410.8776 Computer Science and Game Theory +1410.8777 Analysis of PDEs +1410.8779 Experiment +1410.8781 History and Overview +1410.8783 Computation and Language +1410.8788 Instrumentation and Methods for Astrophysics +1410.8791 Lattice +1410.8793 Experiment +1410.8794 Information Theory +1410.8795 Mesoscale and Nanoscale Physics +1410.8796 Physics and Society +1410.8801 Lattice +1410.8802 Computational Geometry +1410.8804 Differential Geometry +1410.8808 Artificial Intelligence +1410.8820 Biological Physics +1410.8821 Biological Physics +1410.8824 Lattice +1410.8825 Numerical Analysis +1410.8826 Neurons and Cognition +1410.8831 Phenomenology +1410.8832 +1410.8834 Geophysics +1410.8839 Lattice +1410.8843 Lattice +1410.8846 Numerical Analysis +1410.8850 Strongly Correlated Electrons +1410.8851 Differential Geometry +1410.8855 Statistics Theory +1410.8861 Methodology +1410.8863 +1410.8864 Machine Learning +1410.8868 Other Statistics +1410.8869 Social and Information Networks +1410.8870 Geometric Topology +hep-th/9904170 Theory +math-ph/0101013 +math-ph/0207031 +math-ph/0308044 +math-ph/0310058 +math/0701215 Combinatorics +0704.0471 +0704.1109 +0704.1114 +0704.1586 +0704.1695 Phenomenology +0704.2002 Fluid Dynamics +0704.2126 Phenomenology +0704.2463 +0704.2747 +0704.2949 +0704.3344 Phenomenology +0704.3392 Theory +0704.3625 Phenomenology +0705.0319 Theory +0705.0367 +0705.0408 Theory +0705.0605 +0705.0655 +0705.0913 +0705.1315 +0705.1368 Theory +0705.1565 +0705.1830 Phenomenology +0705.2029 Phenomenology +0705.2083 Theory +0705.2438 +0705.2494 +0705.2520 Theory +0705.2564 Theory +0705.2690 +0705.3272 +0705.3297 +0705.3311 +0705.3395 +0705.3542 Theory +0705.3758 +0705.4043 +0705.4347 +0705.4370 +0705.4495 Theory +0706.0385 +0706.0623 Phenomenology +0706.0768 +0706.0918 Phenomenology +0706.0966 +0706.1687 +0706.1761 +0706.2050 Theory +0706.2181 +0706.2334 Phenomenology +0706.2443 +0706.2564 +0706.2805 Phenomenology +0706.2829 Differential Geometry +0706.2873 Theory +0706.2887 Mesoscale and Nanoscale Physics +0706.3011 Lattice +0706.3125 Lattice +0706.3147 Theory +0706.3224 +0706.3409 Phenomenology +0706.4075 +0706.4426 +0706.4474 +0707.0066 +0707.0071 Lattice +0707.0618 Phenomenology +0707.0628 Phenomenology +0707.1185 +0707.1380 +0707.1557 +0707.2172 +0707.2319 +0707.2375 +0707.2626 Theory +0707.2793 +0707.2819 +0707.2906 Lattice +0707.3267 Theory +0707.3466 Theory +0707.3561 Phenomenology +0707.3599 Superconductivity +0707.3685 +0707.3920 +0707.3999 +0707.4122 Instrumentation and Detectors +0707.4484 +0708.0266 +0708.0276 +0708.0716 Exactly Solvable and Integrable Systems +0708.0963 Experiment +0708.1019 Phenomenology +0708.1030 +0708.1111 +0708.1113 Number Theory +0708.1234 Theory +0708.1248 Theory +0708.1510 +0708.1633 Lattice +0708.1801 Phenomenology +0708.2045 Theory +0708.2072 Lattice +0708.2145 Lattice +0708.2361 Theory +0708.2461 Experiment +0708.2756 +0708.2958 Superconductivity +0708.3237 +0708.3786 +0708.3818 +0708.3852 +0709.0065 Phenomenology +0709.0231 Instrumentation and Detectors +0709.0296 +0709.0722 Lattice +0709.0734 +0709.0926 Phenomenology +0709.1044 +0709.1497 Phenomenology +0709.1933 +0709.1950 +0709.2025 +0709.2376 +0709.2591 Phenomenology +0709.2879 +0709.2929 Phenomenology +0709.3158 Other Condensed Matter +0709.3301 +0709.3503 Theory +0709.3573 Theory +0709.3634 +0709.3733 Theory +0709.3734 Phenomenology +0709.3805 Algebraic Geometry +0709.3855 Theory +0709.4276 Theory +0709.4680 Lattice +0710.0124 Phenomenology +0710.0230 Lattice +0710.0248 Experiment +0710.0374 Theory +0710.0461 Classical Physics +0710.0483 Differential Geometry +0710.0498 Lattice +0710.0910 Lattice +0710.0935 +0710.0991 Theory +0710.1094 +0710.1206 Experiment +0710.1256 Theory +0710.1373 Lattice +0710.1382 +0710.1497 +0710.1714 Lattice +0710.1746 Theory +0710.1776 Theory +0710.1825 +0710.1827 Lattice +0710.1833 Theory +0710.1905 +0710.2041 +0710.2073 Theory +0710.2335 +0710.2338 +0710.2412 Phenomenology +0710.2773 Theory +0710.2871 +0710.3093 Theory +0710.3203 Theory +0710.3237 Phenomenology +0710.3571 Lattice +0710.3797 Mesoscale and Nanoscale Physics +0710.4193 +0710.4287 Phenomenology +0710.4420 +0710.4454 Lattice +0710.4865 Mesoscale and Nanoscale Physics +0710.4946 +0710.5233 Theory +0710.5303 Phenomenology +0710.5307 +0710.5394 Theory +0710.5608 +0710.5671 +0711.0006 +0711.0119 +0711.0143 +0711.0537 +0711.0638 +0711.0782 +0711.0850 +0711.1037 +0711.1248 Phenomenology +0711.1264 +0711.1500 +0711.1600 Phenomenology +0711.1735 +0711.1969 Theory +0711.2105 +0711.2118 +0711.2196 Phenomenology +0711.2570 +0711.3215 Phenomenology +0711.3223 +0711.3358 +0711.3425 Statistical Mechanics +0711.3917 +0711.3956 +0711.4181 +0711.4280 +0711.4292 +0711.4460 +0711.4682 +0711.4721 Theory +0711.4753 +0711.4793 Accelerator Physics +0711.4852 Lattice +0711.4858 +0712.0052 +0712.0371 History and Philosophy of Physics +0712.0573 Theory +0712.0676 +0712.0913 +0712.1435 +0712.1907 +0712.1923 Theory +0712.2809 +0712.2916 Theory +0712.3059 Theory +0712.3102 Theory +0712.3148 Theory +0712.3166 Theory +0712.3206 Theory +0712.3272 Theory +0712.3443 Phenomenology +0712.3538 +0712.3549 Theory +0712.3560 Theory +0712.3616 Theory +0712.3731 Phenomenology +0712.3738 Theory +0712.3745 Phenomenology +0712.3779 Theory +0712.4070 Theory +0712.4143 +0712.4252 Theory +0712.4262 Theory +0712.4277 Theory +0712.4404 Theory +0801.0116 +0801.0471 Theory +0801.0580 Theory +0801.0655 Theory +0801.0839 Theory +0801.0956 Plasma Physics +0801.0998 Theory +0801.1053 Theory +0801.1160 Theory +0801.1167 +0801.1216 Theory +0801.1345 Phenomenology +0801.1531 +0801.1725 Lattice +0801.1739 +0801.1813 Theory +0801.1849 +0801.2061 Theory +0801.2116 Theory +0801.2153 Theory +0801.2165 Theory +0801.2173 Phenomenology +0801.2176 Phenomenology +0801.2268 Theory +0801.2377 Theory +0801.2385 Theory +0801.2635 Phenomenology +0801.2702 Theory +0801.2763 Theory +0801.2856 Theory +0801.2863 Theory +0801.2950 +0801.3002 Theory +0801.3115 +0801.3140 +0801.3206 Theory +0801.3215 +0801.3270 +0801.3274 Theory +0801.3284 Theory +0801.3460 +0801.3462 Theory +0801.3485 +0801.3528 Theory +0801.3554 Phenomenology +0801.3632 +0801.3812 Theory +0801.3949 Theory +0801.4205 Lattice +0801.4293 Theory +0801.4321 Phenomenology +0801.4354 Theory +0801.4412 Theory +0801.4463 Theory +0801.4465 +0801.4536 Theory +0801.4567 +0801.4594 Theory +0801.4634 Theory +0801.4646 +0801.4779 +0801.4784 Theory +0801.4956 Theory +0802.0153 Pattern Formation and Solitons +0802.0168 Phenomenology +0802.0294 Theory +0802.0568 Theory +0802.0660 Theory +0802.0720 +0802.1014 Theory +0802.1538 +0802.1680 +0802.1810 +0802.1861 Theory +0802.2047 Theory +0802.2143 Theory +0802.2173 Theory +0802.2257 Theory +0802.2453 Theory +0802.2916 Theory +0802.2955 Phenomenology +0802.3033 +0802.3201 Phenomenology +0802.3824 +0802.3869 Theory +0802.4071 Theory +0802.4449 Phenomenology +0803.0158 Theory +0803.0251 +0803.0268 +0803.0562 Theory +0803.0571 Theory +0803.0698 Theory +0803.0759 Theory +0803.0798 Theory +0803.0806 Phenomenology +0803.0936 +0803.0951 Phenomenology +0803.1013 Theory +0803.1137 Theory +0803.1171 Theory +0803.1212 Theory +0803.1265 +0803.1309 General Physics +0803.1605 Theory +0803.2260 Theory +0803.2343 +0803.2496 +0803.2684 +0803.2802 +0803.2822 Theory +0803.3068 Theory +0803.3194 Theory +0803.3203 Theory +0803.3226 Theory +0803.3227 +0803.3318 Phenomenology +0803.3358 +0803.3828 Theory +0803.3835 +0803.4015 +0803.4215 +0804.0009 Theory +0804.0052 +0804.0136 +0804.0260 +0804.0648 Phenomenology +0804.0782 Superconductivity +0804.0904 Theory +0804.1077 Quantum Algebra +0804.1293 Theory +0804.1329 Theory +0804.1338 Theory +0804.1362 Theory +0804.1370 +0804.1386 +0804.1604 +0804.1870 Theory +0804.1902 Theory +0804.1957 Theory +0804.2003 Theory +0804.2168 Theory +0804.2241 +0804.2453 Theory +0804.2598 Theory +0804.2720 Theory +0804.2724 Theory +0804.2778 +0804.2807 +0804.2846 Theory +0804.2854 Theory +0804.2907 Theory +0804.2923 Theory +0804.3062 Theory +0804.3078 Theory +0804.3135 +0804.3167 Theory +0804.3175 Statistical Mechanics +0804.3198 Phenomenology +0804.3267 Theory +0804.3301 Theory +0804.3321 Theory +0804.3349 Theory +0804.3551 Operator Algebras +0804.3629 Theory +0804.3635 Theory +0804.3653 Theory +0804.3801 Theory +0804.3811 Theory +0804.3845 Theory +0804.3973 Theory +0804.4006 Theory +0804.4015 +0804.4036 Theory +0804.4132 Phenomenology +0804.4159 Theory +0804.4486 +0804.4586 Theory +0804.4805 Theory +0805.0163 Theory +0805.0329 Phenomenology +0805.0417 +0805.0555 Phenomenology +0805.0792 Theory +0805.0826 Theory +0805.0966 +0805.0985 Theory +0805.1009 Theory +0805.1102 Theory +0805.1163 Lattice +0805.1260 +0805.1267 +0805.1268 +0805.1496 Phenomenology +0805.1513 Theory +0805.1537 Theory +0805.1726 +0805.1901 +0805.1944 +0805.1973 +0805.2005 Theory +0805.2058 Lattice +0805.2154 +0805.2220 Theory +0805.2399 +0805.2480 +0805.2489 Differential Geometry +0805.2552 +0805.2811 +0805.2955 +0805.3052 +0805.3127 +0805.3236 Theory +0805.3290 Theory +0805.3321 Theory +0805.3346 +0805.3355 Phenomenology +0805.3361 Theory +0805.3427 Theory +0805.3500 Theory +0805.3506 Theory +0805.3515 Phenomenology +0805.3574 Theory +0805.3580 +0805.3594 Theory +0805.3662 Theory +0805.3667 Other Condensed Matter +0805.3689 Theory +0805.3701 Theory +0805.3703 +0805.3716 Theory +0805.3728 Theory +0805.3762 Phenomenology +0805.3763 Phenomenology +0805.3793 Theory +0805.3794 +0805.3796 +0805.3898 Theory +0805.3928 +0805.3931 Theory +0805.3945 +0805.3957 Theory +0805.4005 +0805.4031 Theory +0805.4091 Theory +0805.4190 Theory +0805.4199 Theory +0805.4234 Theory +0805.4241 Statistical Mechanics +0805.4245 Phenomenology +0805.4294 +0805.4328 Theory +0805.4360 +0805.4363 Theory +0805.4386 Theory +0805.4398 +0805.4479 Theory +0805.4482 +0805.4486 Phenomenology +0805.4542 Theory +0805.4571 Theory +0805.4615 Theory +0805.4660 +0805.4751 Phenomenology +0806.0001 Theory +0806.0302 Experiment +0806.0480 Phenomenology +0806.0496 +0806.0516 +0806.0550 Theory +0806.0605 Theory +0806.0628 +0806.0682 +0806.0873 +0806.0950 +0806.1037 +0806.1056 +0806.1198 +0806.1320 +0806.1415 +0806.1844 Theory +0806.1870 +0806.1916 Instrumentation and Detectors +0806.1969 +0806.2010 +0806.2100 Lattice +0806.2134 +0806.2204 Theory +0806.2337 Theory +0806.2400 Instrumentation and Detectors +0806.2410 +0806.2418 +0806.2478 Phenomenology +0806.2679 +0806.2758 +0806.3049 +0806.3138 Differential Geometry +0806.3331 +0806.3388 +0806.3459 +0806.3602 +0806.3798 +0806.3867 +0806.3947 +0806.3968 +0806.4072 Phenomenology +0806.4190 +0806.4373 +0806.4406 Accelerator Physics +0806.4755 +0806.4888 +0807.0039 +0807.0040 +0807.0074 Atomic Physics +0807.0192 +0807.0234 Phenomenology +0807.0255 +0807.0382 +0807.0444 +0807.0504 +0807.0532 +0807.0605 Phenomenology +0807.0712 +0807.1056 +0807.1070 +0807.1256 Theory +0807.1365 Phenomenology +0807.1733 +0807.1820 +0807.1939 Theory +0807.2033 +0807.2146 Theory +0807.2181 +0807.2204 Experiment +0807.2291 +0807.2356 +0807.2577 +0807.2699 +0807.2856 +0807.2868 +0807.3146 Phenomenology +0807.3237 +0807.3379 +0807.3486 Phenomenology +0807.4039 Theory +0807.4121 +0807.4294 +0807.4723 Theory +0807.4852 +0807.4867 +0807.4925 +0807.4981 +0808.0009 +0808.0239 +0808.0367 +0808.0397 +0808.0539 +0808.0563 Differential Geometry +0808.0619 +0808.0706 Theory +0808.0714 +0808.0860 +0808.0915 +0808.0951 +0808.1051 Theory +0808.1244 Theory +0808.1250 Theory +0808.1264 Theory +0808.1288 Phenomenology +0808.1407 +0808.1526 Phenomenology +0808.1709 +0808.1959 +0808.1993 Strongly Correlated Electrons +0808.2060 Theory +0808.2142 Theory +0808.2143 +0808.2257 +0808.2326 +0808.2327 Theory +0808.2351 Theory +0808.2354 Theory +0808.2360 Theory +0808.2473 Theory +0808.2489 Theory +0808.2526 +0808.2560 +0808.2610 +0808.2629 Theory +0808.2691 Theory +0808.2771 Theory +0808.2807 +0808.2820 +0808.2867 +0808.2883 +0808.2933 Phenomenology +0808.2937 +0808.3190 +0808.3193 +0808.3257 +0808.3400 +0808.3442 +0808.3448 +0808.3560 +0808.3607 +0808.3736 Theory +0808.3778 Theory +0808.3907 Theory +0808.3939 Instrumentation and Detectors +0808.4004 +0808.4034 +0808.4056 Theory +0808.4152 +0809.0330 Theory +0809.0431 Phenomenology +0809.0516 +0809.0650 +0809.1003 Phenomenology +0809.1008 +0809.1094 +0809.1140 +0809.1159 +0809.1255 +0809.1327 +0809.1336 Theory +0809.1349 +0809.1371 Theory +0809.1384 +0809.1394 +0809.1459 Experiment +0809.1503 +0809.1525 Theory +0809.1632 Theory +0809.1868 +0809.1899 +0809.2077 Theory +0809.2254 Phenomenology +0809.2433 Theory +0809.2463 +0809.2504 +0809.2555 +0809.2747 +0809.2781 +0809.2829 +0809.2839 +0809.2882 +0809.2945 +0809.2982 +0809.2999 +0809.3077 +0809.3156 +0809.3226 Theory +0809.3310 +0809.3350 +0809.3374 +0809.3747 +0809.3772 Phenomenology +0809.3873 Phenomenology +0809.3915 +0809.3952 +0809.3983 +0809.4009 Phenomenology +0809.4011 +0809.4012 +0809.4189 Other Condensed Matter +0809.4258 Theory +0809.4269 Theory +0809.4280 +0809.4308 +0809.4330 +0809.4538 +0809.4564 +0809.4677 +0809.4681 Theory +0809.4708 +0809.4776 +0809.4811 Phenomenology +0809.5058 +0809.5100 +0809.5103 +0809.5104 +0810.0031 +0810.0036 +0810.0138 +0810.0143 +0810.0168 +0810.0177 +0810.0204 +0810.0208 +0810.0227 Theory +0810.0251 +0810.0260 +0810.0289 Materials Science +0810.0323 +0810.0391 +0810.0456 +0810.0719 Computational Physics +0810.0720 +0810.0756 +0810.0780 +0810.0804 Experiment +0810.0829 +0810.0939 +0810.0971 Phenomenology +0810.1060 Phenomenology +0810.1068 +0810.1098 +0810.1152 Phenomenology +0810.1230 Phenomenology +0810.1301 Phenomenology +0810.1314 Phenomenology +0810.1358 Phenomenology +0810.1373 +0810.1493 General Physics +0810.1530 Phenomenology +0810.1536 Theory +0810.1681 +0810.1871 +0810.1892 Phenomenology +0810.2187 Phenomenology +0810.2213 History and Philosophy of Physics +0810.2330 +0810.2440 +0810.2442 +0810.2561 Theory +0810.2652 +0810.2752 Accelerator Physics +0810.2757 Accelerator Physics +0810.2763 Accelerator Physics +0810.2765 Accelerator Physics +0810.2878 Accelerator Physics +0810.2880 Accelerator Physics +0810.2897 +0810.2902 Phenomenology +0810.2959 Phenomenology +0810.3053 +0810.3083 Phenomenology +0810.3089 Phenomenology +0810.3142 Phenomenology +0810.3265 +0810.3281 Instrumentation and Detectors +0810.3285 Theory +0810.3432 Lattice +0810.3454 Phenomenology +0810.3550 Phenomenology +0810.3614 +0810.3640 Theory +0810.3653 +0810.3734 +0810.3803 Phenomenology +0810.3913 +0810.4011 +0810.4076 +0810.4155 +0810.4252 Phenomenology +0810.4256 +0810.4262 Phenomenology +0810.4301 Theory +0810.4365 Phenomenology +0810.4381 Phenomenology +0810.4434 General Physics +0810.4465 +0810.4484 +0810.4528 Phenomenology +0810.4714 +0810.4717 +0810.4730 +0810.4775 +0810.4919 +0810.5024 Phenomenology +0810.5068 Phenomenology +0810.5287 +0810.5311 +0810.5342 +0810.5471 +0810.5552 +0810.5599 +0810.5764 Phenomenology +0811.0021 Theory +0811.0224 Phenomenology +0811.0255 Phenomenology +0811.0282 +0811.0292 Phenomenology +0811.0355 Phenomenology +0811.0459 Experiment +0811.0483 +0811.0833 +0811.0918 Phenomenology +0811.0936 Phenomenology +0811.1007 Experiment +0811.1011 +0811.1019 Phenomenology +0811.1044 +0811.1059 +0811.1161 Atomic Physics +0811.1242 Theory +0811.1252 +0811.1264 Theory +0811.1316 +0811.1333 Theory +0811.1387 Phenomenology +0811.1440 Phenomenology +0811.1494 +0811.1579 +0811.1721 Phenomenology +0811.1773 +0811.1866 Phenomenology +0811.1905 +0811.1919 +0811.1973 +0811.1987 Phenomenology +0811.1997 +0811.2217 Theory +0811.2230 +0811.2264 +0811.2361 +0811.2417 Theory +0811.2593 +0811.2740 Theory +0811.2763 +0811.2764 +0811.2939 +0811.3107 +0811.3379 Experiment +0811.3451 +0811.3586 Phenomenology +0811.3606 +0811.3642 Phenomenology +0811.3670 Phenomenology +0811.3748 Phenomenology +0811.3755 Theory +0811.3842 Phenomenology +0811.3903 +0811.4074 Theory +0811.4192 Combinatorics +0811.4300 Lattice +0811.4392 Lattice +0811.4421 +0811.4427 Theory +0811.4448 Theory +0811.4526 +0811.4698 +0811.4701 +0811.4711 +0811.4744 Phenomenology +0811.4748 +0812.0031 +0812.0322 +0812.0352 +0812.0395 Phenomenology +0812.0411 Lattice +0812.0464 +0812.0474 Phenomenology +0812.0536 Phenomenology +0812.0543 Phenomenology +0812.0683 +0812.0702 +0812.0707 Rings and Algebras +0812.0722 Phenomenology +0812.0757 Experiment +0812.0769 +0812.0860 +0812.0871 Theory +0812.0901 +0812.0987 +0812.1048 +0812.1051 Phenomenology +0812.1065 Phenomenology +0812.1097 +0812.1101 Phenomenology +0812.1172 +0812.1176 +0812.1186 +0812.1226 +0812.1333 +0812.1355 Phenomenology +0812.1485 +0812.1589 +0812.1594 Phenomenology +0812.1604 Phenomenology +0812.1609 +0812.1620 Representation Theory +0812.1621 Theory +0812.1623 Theory +0812.1649 +0812.1782 Phenomenology +0812.1788 Phenomenology +0812.1798 Phenomenology +0812.1858 Theory +0812.1875 Phenomenology +0812.1931 +0812.1934 Theory +0812.1941 +0812.1999 Experiment +0812.2015 +0812.2016 +0812.2022 +0812.2031 +0812.2104 Phenomenology +0812.2154 +0812.2219 +0812.2302 +0812.2373 Experiment +0812.2565 +0812.2571 Phenomenology +0812.2704 Phenomenology +0812.2720 +0812.2832 Phenomenology +0812.2838 Phenomenology +0812.2872 +0812.2915 +0812.2951 +0812.2996 Theory +0812.3020 +0812.3080 +0812.3090 Phenomenology +0812.3100 +0812.3134 Theory +0812.3155 Theory +0812.3167 Phenomenology +0812.3209 +0812.3220 Phenomenology +0812.3257 Quantum Algebra +0812.3321 Statistical Mechanics +0812.3360 +0812.3364 Theory +0812.3370 Phenomenology +0812.3401 +0812.3402 +0812.3421 +0812.3462 +0812.3469 +0812.3513 Theory +0812.3531 Theory +0812.3552 +0812.3577 +0812.3723 +0812.3755 Theory +0812.3795 +0812.3856 Phenomenology +0812.3874 Phenomenology +0812.3901 +0812.3915 +0812.3941 +0812.3979 Experiment +0812.3981 +0812.4016 Phenomenology +0812.4029 Phenomenology +0812.4124 +0812.4149 +0812.4217 +0812.4283 Phenomenology +0812.4285 Phenomenology +0812.4324 Phenomenology +0812.4370 Data Analysis, Statistics and Probability +0812.4402 Phenomenology +0812.4456 Lattice +0812.4522 Phenomenology +0812.4559 +0812.4571 Theory +0812.4574 +0812.4577 +0812.4624 Phenomenology +0812.4639 Phenomenology +0812.4702 Theory +0812.4732 +0812.4748 Phenomenology +0812.4753 Theory +0812.4771 +0812.4903 Phenomenology +0812.4946 Phenomenology +0812.5054 Phenomenology +0812.5083 +0812.5108 +0901.0063 +0901.0090 Theory +0901.0126 Mesoscale and Nanoscale Physics +0901.0166 Phenomenology +0901.0334 +0901.0494 Theory +0901.0496 Phenomenology +0901.0581 Solar and Stellar Astrophysics +0901.0604 Solar and Stellar Astrophysics +0901.0708 Cosmology and Nongalactic Astrophysics +0901.0740 Experiment +0901.0802 Phenomenology +0901.0814 +0901.0839 Solar and Stellar Astrophysics +0901.0872 +0901.0918 Cosmology and Nongalactic Astrophysics +0901.0941 Astrophysics of Galaxies +0901.0944 +0901.0997 Phenomenology +0901.0998 Experiment +0901.1017 +0901.1018 Instrumentation and Methods for Astrophysics +0901.1109 Cosmology and Nongalactic Astrophysics +0901.1159 Astrophysics of Galaxies +0901.1173 Theory +0901.1180 Theory +0901.1185 Phenomenology +0901.1220 +0901.1239 Cosmology and Nongalactic Astrophysics +0901.1328 Astrophysics of Galaxies +0901.1401 Astrophysics of Galaxies +0901.1528 Phenomenology +0901.1535 Experiment +0901.1541 Experiment +0901.1635 Solar and Stellar Astrophysics +0901.1646 Theory +0901.1661 Cosmology and Nongalactic Astrophysics +0901.1724 Theory +0901.1870 Phenomenology +0901.1884 +0901.1920 +0901.1955 +0901.2074 Solar and Stellar Astrophysics +0901.2111 Phenomenology +0901.2116 Astrophysics of Galaxies +0901.2117 Phenomenology +0901.2123 Astrophysics of Galaxies +0901.2125 Phenomenology +0901.2302 Astrophysics of Galaxies +0901.2358 +0901.2459 Theory +0901.2488 Cosmology and Nongalactic Astrophysics +0901.2567 Astrophysics of Galaxies +0901.2568 Theory +0901.2711 Statistical Mechanics +0901.2757 +0901.2930 Astrophysics of Galaxies +0901.2966 Phenomenology +0901.3098 Experiment +0901.3172 +0901.3214 Theory +0901.3269 Cosmology and Nongalactic Astrophysics +0901.3350 Solar and Stellar Astrophysics +0901.3364 Earth and Planetary Astrophysics +0901.3378 Cosmology and Nongalactic Astrophysics +0901.3463 Phenomenology +0901.3529 Instrumentation and Methods for Astrophysics +0901.3540 Cosmology and Nongalactic Astrophysics +0901.3575 Theory +0901.3595 Theory +0901.3693 Theory +0901.3837 Phenomenology +0901.3888 Experiment +0901.3919 Theory +0901.4049 Experiment +0901.4059 Theory +0901.4104 Cosmology and Nongalactic Astrophysics +0901.4165 Theory +0901.4216 Phenomenology +0901.4236 Theory +0901.4251 Theory +0901.4253 Phenomenology +0901.4293 +0901.4342 Cosmology and Nongalactic Astrophysics +0901.4390 Theory +0901.4399 +0901.4502 High Energy Astrophysical Phenomena +0901.4520 Probability +0901.4533 Theory +0901.4561 High Energy Astrophysical Phenomena +0901.4573 Solar and Stellar Astrophysics +0901.4627 Cosmology and Nongalactic Astrophysics +0901.4666 Theory +0901.4716 Theory +0901.4721 +0901.4744 Theory +0901.4757 Phenomenology +0901.4786 High Energy Astrophysical Phenomena +0901.4840 Experiment +0901.4854 Phenomenology +0901.4931 +0901.4943 Materials Science +0901.4952 +0901.4972 Accelerator Physics +0902.0059 Phenomenology +0902.0139 High Energy Astrophysical Phenomena +0902.0169 Experiment +0902.0185 Instrumentation and Methods for Astrophysics +0902.0258 Theory +0902.0276 Theory +0902.0298 Phenomenology +0902.0362 Cosmology and Nongalactic Astrophysics +0902.0386 Astrophysics of Galaxies +0902.0403 Astrophysics of Galaxies +0902.0405 Earth and Planetary Astrophysics +0902.0407 Theory +0902.0409 Theory +0902.0418 Phenomenology +0902.0425 Astrophysics of Galaxies +0902.0427 Theory +0902.0432 Phenomenology +0902.0525 Phenomenology +0902.0542 Theory +0902.0548 High Energy Astrophysical Phenomena +0902.0550 Theory +0902.0608 Cosmology and Nongalactic Astrophysics +0902.0716 Cosmology and Nongalactic Astrophysics +0902.0856 +0902.0894 Analysis of PDEs +0902.0961 +0902.0973 +0902.0979 Cosmology and Nongalactic Astrophysics +0902.0998 Mesoscale and Nanoscale Physics +0902.1004 Cosmology and Nongalactic Astrophysics +0902.1028 Phenomenology +0902.1059 Solar and Stellar Astrophysics +0902.1176 High Energy Astrophysical Phenomena +0902.1211 Phenomenology +0902.1223 Theory +0902.1242 Theory +0902.1279 Theory +0902.1301 Phenomenology +0902.1325 Theory +0902.1365 Theory +0902.1405 Phenomenology +0902.1412 General Physics +0902.1442 Phenomenology +0902.1469 Solar and Stellar Astrophysics +0902.1508 Theory +0902.1540 Theory +0902.1588 Solar and Stellar Astrophysics +0902.1694 Theory +0902.1713 Phenomenology +0902.1742 High Energy Astrophysical Phenomena +0902.1828 Phenomenology +0902.1846 Astrophysics of Galaxies +0902.1847 Theory +0902.1852 Cosmology and Nongalactic Astrophysics +0902.1949 Phenomenology +0902.1992 Phenomenology +0902.2049 Phenomenology +0902.2074 High Energy Astrophysical Phenomena +0902.2198 Theory +0902.2222 Experiment +0902.2278 High Energy Astrophysical Phenomena +0902.2328 Theory +0902.2542 Theory +0902.2609 High Energy Astrophysical Phenomena +0902.2619 Cosmology and Nongalactic Astrophysics +0902.2631 +0902.2656 Phenomenology +0902.2789 Solar and Stellar Astrophysics +0902.2814 Cosmology and Nongalactic Astrophysics +0902.2823 Theory +0902.2920 Statistical Mechanics +0902.2933 +0902.3012 High Energy Astrophysical Phenomena +0902.3050 Theory +0902.3070 Theory +0902.3150 Phenomenology +0902.3322 Phenomenology +0902.3323 Cosmology and Nongalactic Astrophysics +0902.3354 Phenomenology +0902.3417 Quantum Algebra +0902.3451 Experiment +0902.3515 +0902.3523 +0902.3570 Phenomenology +0902.3615 Phenomenology +0902.3653 +0902.3661 Cosmology and Nongalactic Astrophysics +0902.3756 Phenomenology +0902.3766 +0902.3787 High Energy Astrophysical Phenomena +0902.3793 Phenomenology +0902.3897 Lattice +0902.3901 Phenomenology +0902.3903 +0902.3916 Theory +0902.3973 Theory +0902.3993 High Energy Astrophysical Phenomena +0902.4022 Other Condensed Matter +0902.4037 Cosmology and Nongalactic Astrophysics +0902.4050 Phenomenology +0902.4095 Phenomenology +0902.4105 Solar and Stellar Astrophysics +0902.4143 Theory +0902.4145 Phenomenology +0902.4278 Phenomenology +0902.4294 Cosmology and Nongalactic Astrophysics +0902.4323 High Energy Astrophysical Phenomena +0902.4347 Phenomenology +0902.4361 +0902.4377 +0902.4387 Theory +0902.4403 Phenomenology +0902.4430 Instrumentation and Detectors +0902.4439 +0902.4540 Solar and Stellar Astrophysics +0902.4599 +0902.4622 Phenomenology +0902.4676 Phenomenology +0902.4708 High Energy Astrophysical Phenomena +0902.4757 Experiment +0902.4811 Phenomenology +0902.4830 Phenomenology +0902.4870 +0903.0046 Experiment +0903.0058 Theory +0903.0101 Cosmology and Nongalactic Astrophysics +0903.0189 Cosmology and Nongalactic Astrophysics +0903.0250 Theory +0903.0294 Phenomenology +0903.0319 +0903.0324 +0903.0358 Phenomenology +0903.0384 Cosmology and Nongalactic Astrophysics +0903.0385 Cosmology and Nongalactic Astrophysics +0903.0392 Phenomenology +0903.0435 Theory +0903.0510 Theory +0903.0522 Theory +0903.0532 Astrophysics of Galaxies +0903.0555 Phenomenology +0903.0714 Phenomenology +0903.0779 Phenomenology +0903.0948 Solar and Stellar Astrophysics +0903.0954 Phenomenology +0903.1105 High Energy Astrophysical Phenomena +0903.1141 Theory +0903.1166 +0903.1185 +0903.1250 Cosmology and Nongalactic Astrophysics +0903.1251 Cosmology and Nongalactic Astrophysics +0903.1289 Cosmology and Nongalactic Astrophysics +0903.1493 +0903.1495 Astrophysics of Galaxies +0903.1533 Phenomenology +0903.1553 Phenomenology +0903.1558 +0903.1645 Theory +0903.1797 +0903.1801 Experiment +0903.1807 Solar and Stellar Astrophysics +0903.1876 Phenomenology +0903.1930 Cosmology and Nongalactic Astrophysics +0903.1940 Phenomenology +0903.1956 Phenomenology +0903.1961 Phenomenology +0903.1971 Phenomenology +0903.1994 Phenomenology +0903.2083 Theory +0903.2109 Theory +0903.2123 Theory +0903.2146 Lattice +0903.2219 Cosmology and Nongalactic Astrophysics +0903.2266 Phenomenology +0903.2273 +0903.2316 Phenomenology +0903.2321 Phenomenology +0903.2398 Instrumentation and Methods for Astrophysics +0903.2415 Phenomenology +0903.2481 Theory +0903.2517 Solar and Stellar Astrophysics +0903.2527 Theory +0903.2562 Phenomenology +0903.2658 High Energy Astrophysical Phenomena +0903.2660 Earth and Planetary Astrophysics +0903.2707 Statistical Mechanics +0903.2759 +0903.2768 Solar and Stellar Astrophysics +0903.2771 Solar and Stellar Astrophysics +0903.2940 Cosmology and Nongalactic Astrophysics +0903.3029 Solar and Stellar Astrophysics +0903.3035 Cosmology and Nongalactic Astrophysics +0903.3064 Cosmology and Nongalactic Astrophysics +0903.3086 Phenomenology +0903.3087 +0903.3130 Experiment +0903.3141 Solar and Stellar Astrophysics +0903.3173 Theory +0903.3212 +0903.3310 Theory +0903.3334 Phenomenology +0903.3338 Theory +0903.3381 Phenomenology +0903.3410 Phenomenology +0903.3422 Theory +0903.3467 Phenomenology +0903.3472 High Energy Astrophysical Phenomena +0903.3505 +0903.3550 Theory +0903.3591 Number Theory +0903.3630 Cosmology and Nongalactic Astrophysics +0903.3636 General Physics +0903.3684 +0903.3700 Cosmology and Nongalactic Astrophysics +0903.3725 Cosmology and Nongalactic Astrophysics +0903.3731 +0903.3806 +0903.3881 +0903.3943 Cosmology and Nongalactic Astrophysics +0903.3958 Phenomenology +0903.4017 Cosmology and Nongalactic Astrophysics +0903.4099 Phenomenology +0903.4115 Experiment +0903.4118 Instrumentation and Methods for Astrophysics +0903.4124 +0903.4206 Astrophysics of Galaxies +0903.4213 Earth and Planetary Astrophysics +0903.4281 +0903.4324 Phenomenology +0903.4333 Cosmology and Nongalactic Astrophysics +0903.4335 +0903.4384 Theory +0903.4395 +0903.4409 Phenomenology +0903.4470 Phenomenology +0903.4524 Theory +0903.4723 +0903.4777 Phenomenology +0903.4845 +0903.4925 Cosmology and Nongalactic Astrophysics +0903.4978 Phenomenology +0903.5047 Phenomenology +0903.5114 Phenomenology +0903.5126 Experiment +0903.5151 Phenomenology +0903.5174 Phenomenology +0903.5175 Phenomenology +0903.5249 +0903.5281 +0903.5307 Phenomenology +0903.5485 Theory +0903.5493 Solar and Stellar Astrophysics +0903.5523 Theory +0903.5539 Physics and Society +0904.0059 Phenomenology +0904.0141 +0904.0275 Cosmology and Nongalactic Astrophysics +0904.0341 +0904.0349 Cosmology and Nongalactic Astrophysics +0904.0385 Astrophysics of Galaxies +0904.0396 +0904.0466 Phenomenology +0904.0587 Theory +0904.0600 Solar and Stellar Astrophysics +0904.0730 Cosmology and Nongalactic Astrophysics +0904.0815 +0904.0937 Phenomenology +0904.0939 +0904.0982 +0904.1001 Cosmology and Nongalactic Astrophysics +0904.1021 Phenomenology +0904.1088 Theory +0904.1100 Instrumentation and Methods for Astrophysics +0904.1134 +0904.1248 Mesoscale and Nanoscale Physics +0904.1263 +0904.1338 +0904.1382 +0904.1405 Atomic Physics +0904.1484 Theory +0904.1524 Phenomenology +0904.1544 +0904.1545 Phenomenology +0904.1577 +0904.1612 Phenomenology +0904.1695 Phenomenology +0904.1744 Theory +0904.1775 +0904.1776 Theory +0904.1848 Theory +0904.1859 Phenomenology +0904.1873 Theory +0904.1909 Phenomenology +0904.1985 Other Condensed Matter +0904.2031 Phenomenology +0904.2122 Lattice +0904.2137 Phenomenology +0904.2181 Astrophysics of Galaxies +0904.2183 +0904.2235 Phenomenology +0904.2246 Phenomenology +0904.2259 Phenomenology +0904.2287 Theory +0904.2292 Phenomenology +0904.2295 Experiment +0904.2299 Astrophysics of Galaxies +0904.2321 +0904.2362 +0904.2372 Instrumentation and Methods for Astrophysics +0904.2390 Phenomenology +0904.2518 Cosmology and Nongalactic Astrophysics +0904.2566 Cosmology and Nongalactic Astrophysics +0904.2579 Cosmology and Nongalactic Astrophysics +0904.2583 High Energy Astrophysical Phenomena +0904.2758 Quantum Algebra +0904.2823 Phenomenology +0904.2866 Phenomenology +0904.2914 Phenomenology +0904.2995 Cosmology and Nongalactic Astrophysics +0904.3043 Phenomenology +0904.3066 Cosmology and Nongalactic Astrophysics +0904.3203 High Energy Astrophysical Phenomena +0904.3323 Solar and Stellar Astrophysics +0904.3324 Cosmology and Nongalactic Astrophysics +0904.3412 Theory +0904.3553 Cosmology and Nongalactic Astrophysics +0904.3717 Phenomenology +0904.3733 Solar and Stellar Astrophysics +0904.3750 Theory +0904.3814 Theory +0904.3817 Experiment +0904.3899 Theory +0904.3909 Astrophysics of Galaxies +0904.3955 Cosmology and Nongalactic Astrophysics +0904.4090 High Energy Astrophysical Phenomena +0904.4192 +0904.4195 +0904.4198 Experiment +0904.4220 Theory +0904.4248 Theory +0904.4254 Cosmology and Nongalactic Astrophysics +0904.4276 High Energy Astrophysical Phenomena +0904.4363 +0904.4372 Quantum Gases +0904.4375 Phenomenology +0904.4484 +0904.4517 +0904.4533 Phenomenology +0904.4538 Theory +0904.4596 Cosmology and Nongalactic Astrophysics +0904.4694 Instrumentation and Detectors +0904.4715 Theory +0904.4764 +0904.4885 Phenomenology +0905.0055 Theory +0905.0083 Instrumentation and Detectors +0905.0184 Theory +0905.0188 Theory +0905.0349 +0905.0372 High Energy Astrophysical Phenomena +0905.0411 +0905.0499 Cosmology and Nongalactic Astrophysics +0905.0504 Phenomenology +0905.0514 Quantum Algebra +0905.0531 +0905.0585 Phenomenology +0905.0607 High Energy Astrophysical Phenomena +0905.0665 Theory +0905.0687 +0905.0722 Theory +0905.0804 Lattice +0905.0810 Cosmology and Nongalactic Astrophysics +0905.0876 Theory +0905.0945 Phenomenology +0905.0948 Theory +0905.0949 Theory +0905.0954 Phenomenology +0905.0973 Phenomenology +0905.0983 Symplectic Geometry +0905.1074 Phenomenology +0905.1148 Phenomenology +0905.1207 Theory +0905.1320 Strongly Correlated Electrons +0905.1360 Phenomenology +0905.1411 +0905.1454 +0905.1509 Theory +0905.1615 Theory +0905.1653 High Energy Astrophysical Phenomena +0905.1842 Earth and Planetary Astrophysics +0905.1847 Phenomenology +0905.1976 Theory +0905.1984 +0905.2052 +0905.2056 Phenomenology +0905.2086 Solar and Stellar Astrophysics +0905.2102 Phenomenology +0905.2183 Astrophysics of Galaxies +0905.2185 Theory +0905.2187 Theory +0905.2356 Phenomenology +0905.2382 Phenomenology +0905.2469 Solar and Stellar Astrophysics +0905.2522 Phenomenology +0905.2573 Cosmology and Nongalactic Astrophysics +0905.2655 Instrumentation and Detectors +0905.2700 Theory +0905.2757 Lattice +0905.2792 +0905.2800 Theory +0905.2828 Experiment +0905.2841 Phenomenology +0905.2874 Phenomenology +0905.2879 +0905.2920 Cosmology and Nongalactic Astrophysics +0905.3028 Phenomenology +0905.3039 Phenomenology +0905.3050 Theory +0905.3058 Phenomenology +0905.3088 Phenomenology +0910.4987 Combinatorics +1002.1474 Atomic Physics +1010.6220 Soft Condensed Matter +1012.4809 Statistical Mechanics +1102.3018 Differential Geometry +1103.5136 Algebraic Geometry +1104.3402 Statistics Theory +1106.1838 Statistical Mechanics +1108.0889 Theory +1108.1576 Combinatorics +1108.1878 Probability +1108.4223 Logic +1109.2908 Statistical Mechanics +1110.4526 Number Theory +1111.4540 Dynamical Systems +1111.6988 Materials Science +1112.0943 Phenomenology +1112.3393 Materials Science +1112.3790 Superconductivity +1201.4001 Materials Science +1201.4211 Materials Science +1202.2199 +1203.6432 Dynamical Systems +1204.0365 Superconductivity +1204.0703 Dynamical Systems +1205.4484 Computational Complexity +1205.6381 Phenomenology +1206.0262 Numerical Analysis +1206.1967 Soft Condensed Matter +1206.2779 Other Condensed Matter +1206.3801 Dynamical Systems +1206.5456 +1207.0617 Number Theory +1207.1246 Phenomenology +1207.2960 Statistical Mechanics +1207.3076 Statistical Mechanics +1207.3948 Instrumentation and Detectors +1208.1709 Rings and Algebras +1208.1881 Dynamical Systems +1208.1945 Number Theory +1208.4726 Theory +1208.5188 Discrete Mathematics +1208.6252 Dynamical Systems +1209.2066 Information Theory +1209.3922 Algebraic Geometry +1210.1203 Cosmology and Nongalactic Astrophysics +1210.5797 Strongly Correlated Electrons +1210.8194 Systems and Control +1211.3002 +1211.3482 Biological Physics +1212.2403 Analysis of PDEs +1212.4529 Geometric Topology +1212.5138 Differential Geometry +1212.5147 Differential Geometry +1212.5230 Phenomenology +1302.0537 General Finance +1302.0539 General Finance +1302.3669 Computational Geometry +1302.6511 Strongly Correlated Electrons +1302.6885 Computational Geometry +1303.2042 +1303.4038 Theory +1303.6167 Information Theory +1304.1450 Mesoscale and Nanoscale Physics +1304.4201 Neurons and Cognition +1305.0096 Biological Physics +1305.7140 Phenomenology +1306.1682 Soft Condensed Matter +1306.2077 Differential Geometry +1306.3557 Functional Analysis +1306.3819 Data Structures and Algorithms +1306.6685 Statistical Mechanics +1307.0603 +1307.2989 Superconductivity +1307.3660 Differential Geometry +1307.4514 Learning +1307.4800 Strongly Correlated Electrons +1307.7428 +1308.3592 Physics and Society +1308.3656 Soft Condensed Matter +1308.5694 Phenomenology +1308.6060 Strongly Correlated Electrons +1308.6066 Strongly Correlated Electrons +1308.6768 Cryptography and Security +1309.0961 Physics and Society +1309.2358 +1309.2580 Optics +1309.2723 Strongly Correlated Electrons +1309.4264 Differential Geometry +1309.4776 Phenomenology +1310.0188 Probability +1310.1013 Algebraic Geometry +1310.1359 Statistical Mechanics +1310.2518 Networking and Internet Architecture +1311.0459 Information Theory +1311.0793 Operator Algebras +1311.1460 Number Theory +1311.2656 Algebraic Geometry +1311.3884 Pattern Formation and Solitons +1311.5186 +1311.7238 Combinatorics +1312.0065 Combinatorics +1312.2282 Group Theory +1312.2537 Rings and Algebras +1312.4003 Information Theory +1312.5248 Combinatorics +1312.6213 Combinatorics +1312.7316 Algebraic Geometry +1312.7348 Theory +1401.0205 Number Theory +1401.0391 Phenomenology +1401.3074 +1401.5783 Probability +1401.6693 Instrumentation and Detectors +1401.6697 Discrete Mathematics +1402.4148 Optimization and Control +1402.4663 Distributed, Parallel, and Cluster Computing +1402.4981 Group Theory +1402.6669 Statistical Mechanics +1402.7051 +1402.7061 Superconductivity +1403.0002 High Energy Astrophysical Phenomena +1403.1247 Quantum Algebra +1403.1814 Algebraic Geometry +1403.1941 Geometric Topology +1403.2158 Combinatorics +1403.2582 Disordered Systems and Neural Networks +1403.3155 Computer Vision and Pattern Recognition +1403.6227 Representation Theory +1403.6755 Strongly Correlated Electrons +1403.7940 +1404.0256 Analysis of PDEs +1404.0830 +1404.1683 Strongly Correlated Electrons +1404.4105 Learning +1404.4534 Mesoscale and Nanoscale Physics +1404.4794 +1404.5071 Optimization and Control +1404.5122 Information Theory +1404.5972 +1405.1014 Statistical Mechanics +1405.1926 Instrumentation and Detectors +1405.2055 Analysis of PDEs +1405.2302 +1405.2721 Differential Geometry +1405.4449 +1405.4992 Mesoscale and Nanoscale Physics +1405.5973 Mesoscale and Nanoscale Physics +1405.7171 +1405.7345 +1405.7620 Statistical Mechanics +1406.0570 Quantum Gases +1406.0746 Data Analysis, Statistics and Probability +1406.0992 Dynamical Systems +1406.1539 Disordered Systems and Neural Networks +1406.3160 Instrumentation and Detectors +1406.4564 Instrumentation and Detectors +1406.4889 Theory +1406.5981 Differential Geometry +1406.6243 Phenomenology +1406.6640 Strongly Correlated Electrons +1406.6902 Portfolio Management +1406.6977 Theory +1406.7874 Quantum Gases +1407.0110 Algebraic Geometry +1407.0458 Statistical Mechanics +1407.0653 +1407.1091 Mesoscale and Nanoscale Physics +1407.1120 Computer Vision and Pattern Recognition +1407.1146 Quantum Gases +1407.1364 Atomic Physics +1407.2696 Analysis of PDEs +1407.2772 Theory +1407.3143 Operator Algebras +1407.3287 Superconductivity +1407.3288 Superconductivity +1407.3710 Superconductivity +1407.3899 Mesoscale and Nanoscale Physics +1407.4106 Software Engineering +1407.4725 Soft Condensed Matter +1407.4764 Computer Vision and Pattern Recognition +1407.5028 Combinatorics +1407.6165 Phenomenology +1407.7061 Data Structures and Algorithms +1407.7754 Mesoscale and Nanoscale Physics +1408.0138 Phenomenology +1408.1245 Neural and Evolutionary Computing +1408.1625 Phenomenology +1408.2362 Computational Complexity +1408.2364 Computational Complexity +1408.3272 Instrumentation and Detectors +1408.3352 Cosmology and Nongalactic Astrophysics +1408.4202 Chemical Physics +1408.4510 Soft Condensed Matter +1408.4804 Strongly Correlated Electrons +1408.4993 Chaotic Dynamics +1408.5112 Rings and Algebras +1408.5727 Combinatorics +1408.5938 Superconductivity +1408.6013 Superconductivity +1408.6074 Numerical Analysis +1408.6437 Mesoscale and Nanoscale Physics +1408.6746 Computation and Language +1408.6996 Statistical Mechanics +1408.7049 +1409.0195 Rings and Algebras +1409.0255 Strongly Correlated Electrons +1409.1164 History and Philosophy of Physics +1409.1251 Astrophysics of Galaxies +1409.1997 Combinatorics +1409.3088 Phenomenology +1409.3357 Solar and Stellar Astrophysics +1409.3555 Combinatorics +1409.3660 Learning +1409.3773 Materials Science +1409.3815 Atomic Physics +1409.4744 Hardware Architecture +1409.4933 Cosmology and Nongalactic Astrophysics +1409.7253 Probability +1409.7734 Spectral Theory +1409.7795 Combinatorics +1409.7926 Optimization and Control +1410.0280 Complex Variables +1410.0416 +1410.0494 Phenomenology +1410.2071 Molecular Networks +1410.2241 Earth and Planetary Astrophysics +1410.3345 Operator Algebras +1410.3400 Analysis of PDEs +1410.3702 Earth and Planetary Astrophysics +1410.5506 Probability +1410.6057 Soft Condensed Matter +1410.6714 Machine Learning +1410.6948 Data Analysis, Statistics and Probability +1410.6963 +1410.6969 Phenomenology +1410.6970 Phenomenology +1410.7514 Plasma Physics +1410.8171 Atomic Physics +1410.8361 Superconductivity +1410.8387 Algebraic Geometry +1410.8435 Phenomenology +1410.8443 Analysis of PDEs +1410.8445 Lattice +1411.0065 Functional Analysis +1411.0296 Learning +1411.0740 Computer Vision and Pattern Recognition +1411.0754 Strongly Correlated Electrons +1411.0769 Algebraic Geometry +1411.0789 Strongly Correlated Electrons +1411.1150 Instrumentation and Methods for Astrophysics +1411.1949 Neurons and Cognition +1411.2126 Phenomenology +1411.2510 Astrophysics of Galaxies +1411.2661 Numerical Analysis +1411.2718 Data Structures and Algorithms +1411.3494 Lattice +1411.3495 Lattice +1411.3519 Computer Vision and Pattern Recognition +1411.3528 Astrophysics of Galaxies +1411.3566 Chaotic Dynamics +1411.3611 Materials Science +1411.3638 Populations and Evolution +1411.3641 Superconductivity +1411.3654 Chemical Physics +1411.3665 Analysis of PDEs +1411.3823 Numerical Analysis +1411.3842 Metric Geometry +1411.3869 Numerical Analysis +1411.3944 Optics +1411.3954 Computation +1411.4034 Analysis of PDEs +1411.4043 +1411.4056 Materials Science +1411.4061 Information Theory +1411.4064 Computer Vision and Pattern Recognition +1411.4068 Machine Learning +1411.4069 Solar and Stellar Astrophysics +1411.4070 Machine Learning +1411.4072 Computation and Language +1411.4073 Data Structures and Algorithms +1411.4074 Statistics Theory +1411.4076 Computers and Society +1411.4077 Machine Learning +1411.4080 Multimedia +1411.4081 Analysis of PDEs +1411.4086 Machine Learning +1411.4089 Representation Theory +1411.4095 Dynamical Systems +1411.4098 Computer Vision and Pattern Recognition +1411.4101 Machine Learning +1411.4102 Computer Vision and Pattern Recognition +1411.4106 Populations and Evolution +1411.4108 Genomics +1411.4109 Computation and Language +1411.4111 Number Theory +1411.4115 Lattice +1411.4116 Computation and Language +1411.4117 Cosmology and Nongalactic Astrophysics +1411.4121 Genomics +1411.4122 Instrumentation and Detectors +1411.4128 Numerical Analysis +1411.4129 Numerical Analysis +1411.4131 Experiment +1411.4133 Solar and Stellar Astrophysics +1411.4134 Computation +1411.4135 High Energy Astrophysical Phenomena +1411.4137 Phenomenology +1411.4138 Statistics Theory +1411.4139 Information Theory +1411.4140 Experiment +1411.4141 Information Theory +1411.4144 Information Theory +1411.4145 Dynamical Systems +1411.4148 Neural and Evolutionary Computing +1411.4151 Phenomenology +1411.4154 Quantum Gases +1411.4157 Logic in Computer Science +1411.4159 Rings and Algebras +1411.4160 Disordered Systems and Neural Networks +1411.4163 Rings and Algebras +1411.4167 +1411.4171 Probability +1411.4174 Functional Analysis +1411.4177 Dynamical Systems +1411.4178 Algebraic Geometry +1411.4181 Disordered Systems and Neural Networks +1411.4182 Information Theory +1411.4183 Information Theory +1411.4184 Data Structures and Algorithms +1411.4187 Combinatorics +1411.4191 Optimization and Control +1411.4192 Artificial Intelligence +1411.4193 Probability +1411.4194 Artificial Intelligence +1411.4195 Number Theory +1411.4196 Combinatorics +1411.4199 Computer Vision and Pattern Recognition +1411.4200 +1411.4202 Analysis of PDEs +1411.4204 Mesoscale and Nanoscale Physics +1411.4212 Materials Science +1411.4213 Lattice +1411.4216 Analysis of PDEs +1411.4217 +1411.4219 Applications +1411.4221 Other Computer Science +1411.4223 Geometric Topology +1411.4225 Instrumentation and Detectors +1411.4226 Statistics Theory +1411.4227 Lattice +1411.4228 Software Engineering +1411.4229 Computer Vision and Pattern Recognition +1411.4232 Geometric Topology +1411.4234 Differential Geometry +1411.4235 Analysis of PDEs +1411.4236 Theory +1411.4239 Soft Condensed Matter +1411.4243 Instrumentation and Detectors +1411.4246 Neural and Evolutionary Computing +1411.4247 Experiment +1411.4250 Experiment +1411.4260 Mesoscale and Nanoscale Physics +1411.4262 Lattice +1411.4264 Systems and Control +1411.4269 +1411.4276 Materials Science +1411.4277 Methodology +1411.4278 Differential Geometry +1411.4283 Numerical Analysis +1411.4285 Geometric Topology +1411.4286 Machine Learning +1411.4287 Information Theory +1411.4288 Differential Geometry +1411.4290 Multimedia +1411.4291 +1411.4293 Soft Condensed Matter +1411.4296 Computer Vision and Pattern Recognition +1411.4297 Neural and Evolutionary Computing +1411.4299 Social and Information Networks +1411.4301 Functional Analysis +1411.4304 Computer Vision and Pattern Recognition +1411.4308 Solar and Stellar Astrophysics +1411.4310 Astrophysics of Galaxies +1411.4314 Social and Information Networks +1411.4315 Systems and Control +1411.4322 Complex Variables +1411.4326 Medical Physics +1411.4327 Software Engineering +1411.4328 Physics and Society +1411.4331 Computer Vision and Pattern Recognition +1411.4340 Information Theory +1411.4343 Experiment +1411.4345 Computers and Society +1411.4355 Optics +1411.4362 Experiment +1411.4364 Combinatorics +1411.4366 Information Retrieval +1411.4367 Classical Physics +1411.4369 Computational Complexity +1411.4373 Information Theory +1411.4378 Machine Learning +1411.4379 Neural and Evolutionary Computing +1411.4382 Optimization and Control +1411.4384 Data Structures and Algorithms +1411.4388 +1411.4391 Strongly Correlated Electrons +1411.4395 +1411.4396 Differential Geometry +1411.4398 Cryptography and Security +1411.4402 Optics +1411.4403 Soft Condensed Matter +1411.4407 Information Theory +1411.4416 Biological Physics +1411.4418 Representation Theory +1411.4424 Solar and Stellar Astrophysics +1411.4426 Probability +1411.4430 Strongly Correlated Electrons +1411.4432 Strongly Correlated Electrons +1411.4433 Systems and Control +1411.4436 +1411.4437 Networking and Internet Architecture +1411.4439 Computational Physics +1411.4446 Algebraic Geometry +1411.4447 Complex Variables +1411.4451 Instrumentation and Detectors +1411.4455 Computation and Language +1411.4457 Operator Algebras +1411.4458 +1411.4461 Mesoscale and Nanoscale Physics +1411.4464 Computer Vision and Pattern Recognition +1411.4465 Networking and Internet Architecture +1411.4472 Computation and Language +1411.4473 Instrumentation and Methods for Astrophysics +1411.4474 Optics +1411.4475 General Physics +1411.4476 Data Structures and Algorithms +1411.4480 Classical Analysis and ODEs +1411.4483 Optics +1411.4493 Lattice +1411.4495 Software Engineering +1411.4506 +1411.4510 Machine Learning +1411.4511 Atomic Physics +1411.4514 +1411.4516 Artificial Intelligence +1411.4520 Atomic and Molecular Clusters +1411.4521 Machine Learning +1411.4525 Materials Science +1411.4526 Experiment +1411.4529 Phenomenology +1411.4532 Strongly Correlated Electrons +1411.4533 Superconductivity +1411.4536 Materials Science +1411.4539 Strongly Correlated Electrons +1411.4540 Geometric Topology +1411.4543 Probability +1411.4544 Soft Condensed Matter +1411.4545 Number Theory +1411.4550 Applications +1411.4554 Neurons and Cognition +1411.4557 Phenomenology +1411.4559 Functional Analysis +1411.4565 Distributed, Parallel, and Cluster Computing +1411.4571 High Energy Astrophysical Phenomena +1411.4572 Instrumentation and Detectors +1411.4573 Data Structures and Algorithms +1411.4577 Dynamical Systems +1411.4578 +1411.4580 Accelerator Physics +1411.4581 Experiment +1411.4582 Biomolecules +1411.4584 Computational Complexity +1411.4586 Systems and Control +1411.4587 Combinatorics +1411.4590 Information Theory +1411.4592 General Mathematics +1411.4595 Experiment +1411.4600 Experiment +1411.4601 Statistical Mechanics +1411.4602 Phenomenology +1411.4604 Logic in Computer Science +1411.4605 Mesoscale and Nanoscale Physics +1411.4608 Probability +1411.4611 Operator Algebras +1411.4614 Computation and Language +1411.4616 Artificial Intelligence +1411.4617 Information Theory +1411.4618 Computation and Language +1411.4619 Artificial Intelligence +1411.4622 Computational Physics +1411.4627 Numerical Analysis +1411.4630 Cryptography and Security +1411.4633 General Finance +1411.4637 Analysis of PDEs +1411.4643 Commutative Algebra +astro-ph/0607415 +hep-ph/0408312 Phenomenology +hep-ph/0408322 Phenomenology +hep-ph/0408328 Phenomenology +hep-ph/0409046 Phenomenology +hep-ph/0409057 Phenomenology +hep-ph/0409078 Phenomenology +hep-ph/0409130 Phenomenology +hep-ph/0409143 Phenomenology +hep-ph/0409186 Phenomenology +hep-ph/0409217 Phenomenology +hep-ph/0409224 Phenomenology +hep-ph/0409234 Phenomenology +hep-ph/0409242 Phenomenology +hep-ph/0409276 Phenomenology +hep-ph/0409278 Phenomenology +hep-ph/0409317 Phenomenology +hep-ph/0409331 Phenomenology +hep-ph/0409332 Phenomenology +hep-ph/0409338 Phenomenology +hep-ph/0409350 Phenomenology +hep-ph/0409362 Phenomenology +hep-ph/0410014 Phenomenology +hep-ph/0410036 Phenomenology +hep-ph/0410040 Phenomenology +hep-ph/0410078 Phenomenology +hep-ph/0410104 Phenomenology +hep-ph/0410126 Phenomenology +hep-ph/0410144 Phenomenology +hep-ph/0410159 Phenomenology +hep-ph/0410200 Phenomenology +hep-ph/0410205 Phenomenology +hep-ph/0410240 Phenomenology +hep-ph/0410307 Phenomenology +hep-ph/0411013 Phenomenology +hep-ph/0411026 Phenomenology +hep-ph/0411045 Phenomenology +hep-ph/0411092 Phenomenology +hep-ph/0411094 Phenomenology +hep-ph/0411151 Phenomenology +hep-ph/0411160 Phenomenology +hep-ph/0411174 Phenomenology +hep-ph/0411228 Phenomenology +hep-ph/0411242 Phenomenology +hep-ph/0411280 Phenomenology +hep-ph/0411333 Phenomenology +hep-ph/0411378 Phenomenology +hep-ph/0411402 Phenomenology +hep-ph/0411403 Phenomenology +hep-ph/0412003 Phenomenology +hep-ph/0412019 Phenomenology +hep-ph/0412038 Phenomenology +hep-ph/0412042 Phenomenology +hep-ph/0412050 Phenomenology +hep-ph/0412060 Phenomenology +hep-ph/0412084 Phenomenology +hep-ph/0412126 Phenomenology +hep-ph/0412128 Phenomenology +hep-ph/0412138 Phenomenology +hep-ph/0412162 Phenomenology +hep-ph/0412180 Phenomenology +hep-ph/0412199 Phenomenology +hep-ph/0412203 Phenomenology +hep-ph/0412205 Phenomenology +hep-ph/0412253 Phenomenology +hep-ph/0412260 Phenomenology +hep-ph/0412343 Phenomenology +hep-ph/0412344 Phenomenology +hep-ph/0412394 Phenomenology +hep-ph/0412416 Phenomenology +hep-ph/0412425 Phenomenology +hep-ph/0501034 Phenomenology +hep-ph/0501051 Phenomenology +hep-ph/0501069 Phenomenology +hep-ph/0501071 Phenomenology +hep-ph/0501124 Phenomenology +hep-ph/0501152 Phenomenology +hep-ph/0501181 Phenomenology +hep-ph/0501194 Phenomenology +hep-ph/0501199 Phenomenology +hep-ph/0501217 Phenomenology +hep-ph/0501235 Phenomenology +hep-ph/0502004 Phenomenology +hep-ph/0502038 Phenomenology +hep-ph/0502088 Phenomenology +hep-ph/0502090 Phenomenology +hep-ph/0502105 Phenomenology +hep-ph/0502107 Phenomenology +hep-ph/0502134 Phenomenology +hep-ph/0502139 Phenomenology +hep-ph/0502144 Phenomenology +hep-ph/0502152 Phenomenology +hep-ph/0502161 Phenomenology +hep-ph/0502191 Phenomenology +hep-ph/0502203 Phenomenology +hep-ph/0502233 Phenomenology +hep-ph/0502236 Phenomenology +hep-ph/0502245 Phenomenology +hep-ph/0503039 Phenomenology +hep-ph/0503087 Phenomenology +hep-ph/0503095 Phenomenology +hep-ph/0503101 Phenomenology +hep-ph/0503116 Phenomenology +hep-ph/0503125 Phenomenology +hep-ph/0503131 Phenomenology +hep-ph/0503134 Phenomenology +hep-ph/0503197 Phenomenology +hep-ph/0503222 Phenomenology +hep-ph/0503229 Phenomenology +hep-ph/0503231 Phenomenology +hep-ph/0503251 Phenomenology +hep-ph/0504050 Phenomenology +hep-ph/0504052 Phenomenology +hep-ph/0504094 Phenomenology +hep-ph/0504101 Phenomenology +hep-ph/0504111 Phenomenology +hep-ph/0504171 Phenomenology +hep-ph/0504172 Phenomenology +hep-ph/0504205 Phenomenology +hep-ph/0504212 Phenomenology +hep-ph/0504227 Phenomenology +hep-ph/0504255 Phenomenology +hep-ph/0504274 Phenomenology +hep-ph/0504286 Phenomenology +hep-ph/0505015 Phenomenology +hep-ph/0505021 Phenomenology +hep-ph/0505023 Phenomenology +hep-ph/0505085 Phenomenology +hep-ph/0505092 Phenomenology +hep-ph/0505108 Phenomenology +hep-ph/0505110 Phenomenology +hep-ph/0505120 Phenomenology +hep-ph/0505139 Phenomenology +hep-ph/0505141 Phenomenology +hep-ph/0505151 Phenomenology +hep-ph/0505171 Phenomenology +hep-ph/0505198 Phenomenology +hep-ph/0505200 Phenomenology +hep-ph/0505211 Phenomenology +hep-ph/0505221 Phenomenology +hep-ph/0505222 Phenomenology +hep-ph/0506013 Phenomenology +hep-ph/0506031 Phenomenology +hep-ph/0506040 Phenomenology +hep-ph/0506047 Phenomenology +hep-ph/0506075 Phenomenology +hep-ph/0506121 Phenomenology +hep-ph/0506171 Phenomenology +hep-ph/0506192 Phenomenology +hep-ph/0506195 Phenomenology +hep-ph/0506196 Phenomenology +hep-ph/0506215 Phenomenology +hep-ph/0506219 Phenomenology +hep-ph/0506228 Phenomenology +hep-ph/0506268 Phenomenology +hep-ph/0506298 Phenomenology +hep-ph/0506308 Phenomenology +hep-ph/0506311 Phenomenology +hep-ph/0506316 Phenomenology +hep-ph/0506319 Phenomenology +hep-ph/0507016 Phenomenology +hep-ph/0507081 Phenomenology +hep-ph/0507082 Phenomenology +hep-ph/0507089 Phenomenology +hep-ph/0507109 Phenomenology +hep-ph/0507143 Phenomenology +hep-ph/0507148 Phenomenology +hep-ph/0507179 Phenomenology +hep-ph/0507181 Phenomenology +hep-ph/0507190 Phenomenology +hep-ph/0507204 Phenomenology +hep-ph/0507225 Phenomenology +hep-ph/0507228 Phenomenology +hep-ph/0507238 Phenomenology +hep-ph/0507254 Phenomenology +hep-ph/0507264 Phenomenology +hep-ph/0507286 Phenomenology +hep-ph/0507298 Phenomenology +hep-ph/0507325 Phenomenology +hep-ph/0508019 Phenomenology +hep-ph/0508024 Phenomenology +hep-ph/0508032 Phenomenology +hep-ph/0508057 Phenomenology +hep-ph/0508060 Phenomenology +hep-ph/0508066 Phenomenology +hep-ph/0508079 Phenomenology +hep-ph/0508093 Phenomenology +hep-ph/0508109 Phenomenology +hep-ph/0508113 Phenomenology +hep-ph/0508129 Phenomenology +hep-ph/0508134 Phenomenology +hep-ph/0508160 Phenomenology +hep-ph/0508189 Phenomenology +hep-ph/0508204 Phenomenology +hep-ph/0508236 Phenomenology +hep-ph/0508243 Phenomenology +hep-ph/0508256 Phenomenology +hep-ph/0508300 Phenomenology +hep-ph/0508312 Phenomenology +hep-ph/0509012 Phenomenology +hep-ph/0509049 Phenomenology +hep-ph/0509055 Phenomenology +hep-ph/0509070 Phenomenology +hep-ph/0509080 Phenomenology +hep-ph/0509103 Phenomenology +hep-ph/0509104 Phenomenology +hep-ph/0509123 Phenomenology +hep-ph/0509137 Phenomenology +hep-ph/0509182 Phenomenology +hep-ph/0509203 Phenomenology +hep-ph/0509219 Phenomenology +hep-ph/0509228 Phenomenology +hep-ph/0509246 Phenomenology +hep-ph/0509267 Phenomenology +hep-ph/0509273 Phenomenology +hep-ph/0509301 Phenomenology +hep-ph/0509307 Phenomenology +hep-ph/0509313 Phenomenology +hep-ph/0509322 Phenomenology +hep-ph/0509326 Phenomenology +hep-ph/0509352 Phenomenology +hep-ph/0509362 Phenomenology +hep-ph/0510033 Phenomenology +hep-ph/0510051 Phenomenology +hep-ph/0510097 Phenomenology +hep-ph/0510104 Phenomenology +hep-ph/0510106 Phenomenology +hep-ph/0510132 Phenomenology +hep-ph/0510151 Phenomenology +hep-ph/0510155 Phenomenology +hep-ph/0510189 Phenomenology +hep-ph/0510237 Phenomenology +hep-ph/0510255 Phenomenology +hep-ph/0510256 Phenomenology +hep-ph/0510258 Phenomenology +hep-ph/0510295 Phenomenology +hep-ph/0510309 Phenomenology +hep-ph/0510310 Phenomenology +hep-ph/0510362 Phenomenology +hep-ph/0510388 Phenomenology +hep-ph/0510389 Phenomenology +hep-ph/0510421 Phenomenology +hep-ph/0511123 Phenomenology +hep-ph/0511179 Phenomenology +hep-ph/0511192 Phenomenology +hep-ph/0511202 Phenomenology +hep-ph/0511219 Phenomenology +hep-ph/0511250 Phenomenology +hep-ph/0511261 Phenomenology +hep-ph/0511321 Phenomenology +hep-ph/0512012 Phenomenology +hep-ph/0512047 Phenomenology +hep-ph/0512092 Phenomenology +hep-ph/0512112 Phenomenology +hep-ph/0512129 Phenomenology +hep-ph/0512191 Phenomenology +hep-ph/0512220 Phenomenology +hep-ph/0512301 Phenomenology +hep-ph/0512314 Phenomenology +hep-ph/0512345 Phenomenology +hep-ph/0601026 Phenomenology +hep-ph/0601069 Phenomenology +hep-ph/0601137 Phenomenology +hep-ph/0601143 Phenomenology +hep-ph/0601167 Phenomenology +hep-ph/0601204 Phenomenology +hep-ph/0601214 Phenomenology +hep-ph/0601221 Phenomenology +hep-ph/0601259 Phenomenology +hep-ph/0601261 Phenomenology +hep-ph/0602060 Phenomenology +hep-ph/0602090 Phenomenology +hep-ph/0602104 Phenomenology +hep-ph/0602105 Phenomenology +hep-ph/0602147 Phenomenology +hep-ph/0602243 Phenomenology +hep-ph/0603031 Phenomenology +hep-ph/0603066 Phenomenology +hep-ph/0603069 Phenomenology +hep-ph/0603117 Phenomenology +hep-ph/0603151 Phenomenology +hep-ph/0603170 Phenomenology +hep-ph/0603246 Phenomenology +hep-ph/0603269 Phenomenology +hep-ph/0604004 Phenomenology +hep-ph/0604073 Phenomenology +hep-ph/0604108 Phenomenology +hep-ph/0604201 Phenomenology +hep-ph/0605086 Phenomenology +hep-ph/0605116 Phenomenology +hep-ph/0605153 Phenomenology +hep-ph/0605272 Phenomenology +hep-ph/0606032 Phenomenology +hep-ph/0606119 Phenomenology +hep-ph/0606142 Phenomenology +hep-ph/0606264 Phenomenology +hep-ph/0606272 Phenomenology +hep-ph/0606279 Phenomenology +hep-ph/0607027 Phenomenology +hep-ph/0607040 Phenomenology +hep-ph/0607057 Phenomenology +hep-ph/0607086 Phenomenology +hep-ph/0607091 Phenomenology +hep-ph/0607113 Phenomenology +hep-ph/0607115 Phenomenology +hep-ph/0607306 Phenomenology +hep-ph/0608068 Phenomenology +hep-ph/0608131 Phenomenology +hep-ph/0608145 Phenomenology +hep-ph/0608174 Phenomenology +hep-ph/0608180 Phenomenology +hep-ph/0608259 Phenomenology +hep-ph/0609018 Phenomenology +hep-ph/0609113 Phenomenology +hep-ph/0609119 Phenomenology +hep-ph/0609159 Phenomenology +hep-ph/0609177 Phenomenology +hep-ph/0609217 Phenomenology +hep-ph/0609236 Phenomenology +hep-ph/0610162 Phenomenology +hep-ph/0610176 Phenomenology +hep-ph/0610182 Phenomenology +hep-ph/0610235 Phenomenology +hep-ph/0610374 Phenomenology +hep-ph/0611002 Phenomenology +hep-ph/0611137 Phenomenology +hep-ph/0611160 Phenomenology +hep-ph/0611196 Phenomenology +hep-ph/0611212 Phenomenology +hep-ph/0611286 Phenomenology +hep-ph/0611317 Phenomenology +hep-ph/0611367 Phenomenology +hep-ph/0612047 Phenomenology +hep-ph/0701125 Phenomenology +hep-ph/0701151 Phenomenology +hep-ph/0701268 Phenomenology +hep-ph/0702057 Phenomenology +hep-ph/0702087 Phenomenology +hep-ph/0702088 Phenomenology +hep-ph/0702148 Phenomenology +hep-ph/0702268 Phenomenology +hep-ph/0702279 Phenomenology +hep-ph/0702289 Phenomenology +hep-ph/0703104 Phenomenology +hep-ph/0703119 Phenomenology +hep-ph/0703317 Phenomenology +hep-th/0001042 Theory +hep-th/0001046 Theory +hep-th/0001091 Theory +hep-th/0001107 Theory +hep-th/0001118 Theory +hep-th/0001131 Theory +hep-th/0002009 Theory +hep-th/0002011 Theory +hep-th/0002023 Theory +hep-th/0002070 Theory +hep-th/0002165 Theory +hep-th/0002169 Theory +hep-th/0002170 Theory +hep-th/0002188 Theory +hep-th/0003037 Theory +hep-th/0003084 Theory +hep-th/0003086 Theory +hep-th/0003147 Theory +hep-th/0003151 Theory +hep-th/0003162 Theory +hep-th/0003198 Theory +hep-th/0003205 Theory +hep-th/0003255 Theory +hep-th/0003280 Theory +hep-th/0004028 Theory +hep-th/0004074 Theory +hep-th/0004078 Theory +hep-th/0004084 Theory +hep-th/0004092 Theory +hep-th/0004170 Theory +hep-th/0005004 Theory +hep-th/0005117 Theory +hep-th/0005146 Theory +hep-th/0005160 Theory +hep-th/0005174 Theory +hep-th/0005178 Theory +hep-th/0005206 Theory +hep-th/0005212 Theory +hep-th/0006015 Theory +hep-th/0006019 Theory +hep-th/0006033 Theory +hep-th/0006112 Theory +hep-th/0006113 Theory +hep-th/0006122 Theory +hep-th/0006189 Theory +hep-th/0006204 Theory +hep-th/0007029 Theory +hep-th/0007061 Theory +hep-th/0007088 Theory +hep-th/0007126 Theory +hep-th/0007138 Theory +hep-th/0007197 Theory +hep-th/0007198 Theory +hep-th/0007240 Theory +hep-th/0007243 Theory +hep-th/0008030 Theory +hep-th/0008053 Theory +hep-th/0008060 Theory +hep-th/0008068 Theory +hep-th/0008090 Theory +hep-th/0008102 Theory +hep-th/0008143 Theory +hep-th/0008155 Theory +hep-th/0009009 Theory +hep-th/0009013 Theory +hep-th/0009032 Theory +hep-th/0009053 Theory +hep-th/0009100 Theory +hep-th/0009104 Theory +hep-th/0009105 Theory +hep-th/0009163 Theory +hep-th/0009166 Theory +hep-th/0009167 Theory +hep-th/0009190 Theory +hep-th/0010008 Theory +hep-th/0010049 Theory +hep-th/0010054 Theory +hep-th/0010104 Theory +hep-th/0010107 Theory +hep-th/0010189 Theory +hep-th/0010207 Theory +hep-th/0010249 Theory +hep-th/0010251 Theory +hep-th/0011002 Theory +hep-th/0011013 Theory +hep-th/0011066 Theory +hep-th/0011067 Theory +hep-th/0011068 Theory +hep-th/0011106 Theory +hep-th/0011119 Theory +hep-th/0011124 Theory +hep-th/0011130 Theory +hep-th/0011134 Theory +hep-th/0011244 Theory +hep-th/0011245 Theory +hep-th/0011290 Theory +hep-th/0012009 Theory +hep-th/0012050 Theory +hep-th/0012066 Theory +hep-th/0012075 Theory +hep-th/0012096 Theory +hep-th/0012111 Theory +hep-th/0012121 Theory +hep-th/0012152 Theory +hep-th/0012177 Theory +hep-th/0012188 Theory +hep-th/0012221 Theory +hep-th/0012234 Theory +hep-th/0012259 Theory +hep-th/0101019 Theory +hep-th/0101089 Theory +hep-th/0101091 Theory +hep-th/0101098 Theory +hep-th/0101103 Theory +hep-th/0101157 Theory +hep-th/0101197 Theory +hep-th/0101205 Theory +hep-th/0101220 Theory +hep-th/0101223 Theory +hep-th/0101232 Theory +hep-th/0101236 Theory +hep-th/0102002 Theory +hep-th/0102008 Theory +hep-th/0102018 Theory +hep-th/0102023 Theory +hep-th/0102024 Theory +hep-th/0102042 Theory +hep-th/0102108 Theory +hep-th/0102121 Theory +hep-th/0102125 Theory +hep-th/0102171 Theory +hep-th/0102179 Theory +hep-th/0102196 Theory +hep-th/0103029 Theory +hep-th/0103082 Theory +hep-th/0103088 Theory +hep-th/0103090 Theory +hep-th/0103095 Theory +hep-th/0103097 Theory +hep-th/0103098 Theory +hep-th/0103109 Theory +hep-th/0103138 Theory +hep-th/0103147 Theory +hep-th/0103205 Theory +hep-th/0103211 Theory +hep-th/0103215 Theory +hep-th/0103220 Theory +hep-th/0104001 Theory +hep-th/0104022 Theory +hep-th/0104067 Theory +hep-th/0104068 Theory +hep-th/0104072 Theory +hep-th/0104092 Theory +hep-th/0104094 Theory +hep-th/0104102 Theory +hep-th/0104114 Theory +hep-th/0104122 Theory +hep-th/0104132 Theory +hep-th/0104134 Theory +hep-th/0104159 Theory +hep-th/0104167 Theory +hep-th/0104168 Theory +hep-th/0104178 Theory +hep-th/0104185 Theory +hep-th/0104199 Theory +hep-th/0104212 Theory +hep-th/0104213 Theory +hep-th/0104220 Theory +hep-th/0104231 Theory +hep-th/0104249 Theory +hep-th/0104253 Theory +hep-th/0105006 Theory +hep-th/0105010 Theory +hep-th/0105011 Theory +hep-th/0105030 Theory +hep-th/0105032 Theory +hep-th/0105065 Theory +hep-th/0105101 Theory +hep-th/0105110 Theory +hep-th/0105152 Theory +hep-th/0105154 Theory +hep-th/0105194 Theory +hep-th/0105205 Theory +hep-th/0105243 Theory +hep-th/0105245 Theory +hep-th/0105256 Theory +hep-th/0105280 Theory +hep-th/0105283 Theory +hep-th/0105289 Theory +hep-th/0105294 Theory +hep-th/0105295 Theory +hep-th/0106004 Theory +hep-th/0106028 Theory +hep-th/0106051 Theory +hep-th/0106062 Theory +hep-th/0106069 Theory +hep-th/0106076 Theory +hep-th/0106078 Theory +hep-th/0106096 Theory +hep-th/0106101 Theory +hep-th/0106111 Theory +hep-th/0106120 Theory +hep-th/0106125 Theory +hep-th/0106140 Theory +hep-th/0106153 Theory +hep-th/0106154 Theory +hep-th/0106232 Theory +hep-th/0106254 Theory +hep-th/0106264 Theory +hep-th/0106265 Theory +hep-th/0107013 Theory +hep-th/0107030 Theory +hep-th/0107035 Theory +hep-th/0107044 Theory +hep-th/0107056 Theory +hep-th/0107080 Theory +hep-th/0107112 Theory +hep-th/0107123 Theory +hep-th/0107128 Theory +hep-th/0107137 Theory +hep-th/0107140 Theory +hep-th/0107141 Theory +hep-th/0107163 Theory +hep-th/0107167 Theory +hep-th/0107172 Theory +hep-th/0107173 Theory +hep-th/0107180 Theory +hep-th/0107182 Theory +hep-th/0107189 Theory +hep-th/0107191 Theory +hep-th/0107192 Theory +hep-th/0107193 Theory +hep-th/0107216 Theory +hep-th/0107230 Theory +hep-th/0107231 Theory +hep-th/0108001 Theory +hep-th/0108005 Theory +hep-th/0108010 Theory +hep-th/0108047 Theory +hep-th/0108080 Theory +hep-th/0108096 Theory +hep-th/0108103 Theory +hep-th/0108123 Theory +hep-th/0108126 Theory +hep-th/0108133 Theory +hep-th/0108135 Theory +hep-th/0108144 Theory +hep-th/0108213 Theory +hep-th/0108215 Theory +hep-th/0108244 Theory +hep-th/0109027 Theory +hep-th/0109030 Theory +hep-th/0109041 Theory +hep-th/0109064 Theory +hep-th/0109147 Theory +hep-th/0109184 Theory +hep-th/0109200 Theory +hep-th/0110005 Theory +hep-th/0110036 Theory +hep-th/0110056 Theory +hep-th/0110080 Theory +hep-th/0110094 Theory +hep-th/0110110 Theory +hep-th/0110162 Theory +hep-th/0110203 Theory +hep-th/0110206 Theory +hep-th/0110209 Theory +hep-th/0110220 Theory +hep-th/0110221 Theory +hep-th/0110264 Theory +hep-th/0110279 Theory +hep-th/0110292 Theory +hep-th/0110301 Theory +hep-th/0111001 Theory +hep-th/0111018 Theory +hep-th/0111025 Theory +hep-th/0111079 Theory +hep-th/0111189 Theory +hep-th/0111213 Theory +hep-th/0111263 Theory +hep-th/0111273 Theory +hep-th/0111275 Theory +hep-th/0111280 Theory +hep-th/0112020 Theory +hep-th/0112032 Theory +hep-th/0112046 Theory +hep-th/0112047 Theory +hep-th/0112058 Theory +hep-th/0112059 Theory +hep-th/0112065 Theory +hep-th/0112074 Theory +hep-th/0112109 Theory +hep-th/0112147 Theory +hep-th/0112206 Theory +hep-th/0112227 Theory +hep-th/0112233 Theory +hep-th/0112238 Theory +hep-th/0201008 Theory +hep-th/0201010 Theory +hep-th/0201109 Theory +hep-th/0201130 Theory +hep-th/0201196 Theory +hep-th/0201206 Theory +hep-th/0201240 Theory +hep-th/0202002 Theory +hep-th/0202005 Theory +hep-th/0202022 Theory +hep-th/0202045 Theory +hep-th/0202054 Theory +hep-th/0202057 Theory +hep-th/0202062 Theory +hep-th/0202084 Theory +hep-th/0202090 Theory +hep-th/0202101 Theory +hep-th/0202121 Theory +hep-th/0202123 Theory +hep-th/0202129 Theory +hep-th/0202161 Theory +hep-th/0202204 Theory +hep-th/0202205 Theory +hep-th/0202206 Theory +hep-th/0203007 Theory +hep-th/0203043 Theory +hep-th/0203046 Theory +hep-th/0203056 Theory +hep-th/0203065 Theory +hep-th/0203087 Theory +hep-th/0203123 Theory +hep-th/0203143 Theory +hep-th/0203161 Theory +hep-th/0203190 Theory +hep-th/0203204 Theory +hep-th/0203231 Theory +hep-th/0203235 Theory +hep-th/0203243 Theory +hep-th/0203247 Theory +hep-th/0203252 Theory +hep-th/0204061 Theory +hep-th/0204089 Theory +hep-th/0204093 Theory +hep-th/0204100 Theory +hep-th/0204156 Theory +hep-th/0204157 Theory +hep-th/0204183 Theory +hep-th/0204185 Theory +hep-th/0204186 Theory +hep-th/0204196 Theory +hep-th/0204203 Theory +hep-th/0204213 Theory +hep-th/0204251 Theory +hep-th/0204254 Theory +hep-th/0205022 Theory +hep-th/0205078 Theory +hep-th/0205128 Theory +hep-th/0205135 Theory +hep-th/0205143 Theory +hep-th/0205148 Theory +hep-th/0205159 Theory +hep-th/0205162 Theory +hep-th/0205170 Theory +hep-th/0205198 Theory +hep-th/0205200 Theory +hep-th/0205228 Theory +hep-th/0205257 Theory +hep-th/0205298 Theory +hep-th/0205301 Theory +hep-th/0205302 Theory +hep-th/0205303 Theory +hep-th/0205317 Theory +hep-th/0206005 Theory +hep-th/0206062 Theory +hep-th/0206063 Theory +hep-th/0206085 Theory +hep-th/0206086 Theory +hep-th/0206108 Theory +hep-th/0206126 Theory +hep-th/0206165 Theory +hep-th/0206167 Theory +hep-th/0206198 Theory +hep-th/0206203 Theory +hep-th/0206205 Theory +hep-th/0206212 Theory +hep-th/0206216 Theory +hep-th/0206226 Theory +hep-th/0206247 Theory +hep-th/0206249 Theory +hep-th/0206252 Theory +hep-th/0207014 Theory +hep-th/0207047 Theory +hep-th/0207065 Theory +hep-th/0207089 Theory +hep-th/0207097 Theory +hep-th/0207098 Theory +hep-th/0207128 Theory +hep-th/0207129 Theory +hep-th/0207143 Theory +hep-th/0207146 Theory +hep-th/0207151 Theory +hep-th/0207170 Theory +hep-th/0207200 Theory +hep-th/0207201 Theory +hep-th/0207213 Theory +hep-th/0207234 Theory +hep-th/0207244 Theory +hep-th/0207257 Theory +hep-th/0207258 Theory +hep-th/0208005 Theory +hep-th/0208087 Theory +hep-th/0208099 Theory +hep-th/0208100 Theory +hep-th/0208127 Theory +hep-th/0208150 Theory +hep-th/0208159 Theory +hep-th/0208160 Theory +hep-th/0208165 Theory +hep-th/0208176 Theory +hep-th/0208187 Theory +hep-th/0208196 Theory +hep-th/0208201 Theory +hep-th/0208226 Theory +hep-th/0209004 Theory +hep-th/0209022 Theory +hep-th/0209030 Theory +hep-th/0209134 Theory +hep-th/0209203 Theory +hep-th/0209222 Theory +hep-th/0209232 Theory +hep-th/0209240 Theory +hep-th/0210009 Theory +hep-th/0210016 Theory +hep-th/0210020 Theory +hep-th/0210035 Theory +hep-th/0210046 Theory +hep-th/0210060 Theory +hep-th/0210089 Theory +hep-th/0210100 Theory +hep-th/0210132 Theory +hep-th/0210146 Theory +hep-th/0210149 Theory +hep-th/0210150 Theory +hep-th/0210157 Theory +hep-th/0210171 Theory +hep-th/0210185 Theory +hep-th/0210221 Theory +hep-th/0210234 Theory +hep-th/0210239 Theory +hep-th/0210275 Theory +hep-th/0210308 Theory +hep-th/0211006 Theory +hep-th/0211008 Theory +hep-th/0211012 Theory +hep-th/0211013 Theory +hep-th/0211030 Theory +hep-th/0211036 Theory +hep-th/0211066 Theory +hep-th/0211070 Theory +hep-th/0211071 Theory +hep-th/0211072 Theory +hep-th/0211077 Theory +hep-th/0211102 Theory +hep-th/0211114 Theory +hep-th/0211135 Theory +hep-th/0211137 Theory +hep-th/0211171 Theory +hep-th/0211178 Theory +hep-th/0211195 Theory +hep-th/0211206 Theory +hep-th/0211209 Theory +hep-th/0211212 Theory +hep-th/0211224 Theory +hep-th/0211240 Theory +hep-th/0211244 Theory +hep-th/0211262 Theory +hep-th/0211278 Theory +hep-th/0211284 Theory +hep-th/0211290 Theory +hep-th/0212063 Theory +hep-th/0212087 Theory +hep-th/0212095 Theory +hep-th/0212108 Theory +hep-th/0212144 Theory +hep-th/0212169 Theory +hep-th/0212191 Theory +hep-th/0212192 Theory +hep-th/0212213 Theory +hep-th/0212236 Theory +hep-th/0212254 Theory +hep-th/0212256 Theory +hep-th/0212282 Theory +hep-th/0212286 Theory +hep-th/0212317 Theory +hep-th/0212318 Theory +hep-th/0212330 Theory +hep-th/0212332 Theory +hep-th/0212334 Theory +hep-th/0301061 Theory +hep-th/0301071 Theory +hep-th/0301096 Theory +hep-th/0301103 Theory +hep-th/0301109 Theory +hep-th/0301119 Theory +hep-th/0301129 Theory +hep-th/0301136 Theory +hep-th/0301216 Theory +hep-th/0301226 Theory +hep-th/0302037 Theory +hep-th/0302051 Theory +hep-th/0302059 Theory +hep-th/0302083 Theory +hep-th/0302115 Theory +hep-th/0302124 Theory +hep-th/0302174 Theory +hep-th/0302181 Theory +hep-th/0302203 Theory +hep-th/0303007 Theory +hep-th/0303021 Theory +hep-th/0303038 Theory +hep-th/0303044 Theory +hep-th/0303064 Theory +hep-th/0303083 Theory +hep-th/0303089 Theory +hep-th/0303113 Theory +hep-th/0303171 Theory +hep-th/0303193 Theory +hep-th/0303228 Theory +hep-th/0303252 Theory +hep-th/0304011 Theory +hep-th/0304014 Theory +hep-th/0304019 Theory +hep-th/0304031 Theory +hep-th/0304036 Theory +hep-th/0304041 Theory +hep-th/0304064 Theory +hep-th/0304070 Theory +hep-th/0304076 Theory +hep-th/0304098 Theory +hep-th/0304145 Theory +hep-th/0304146 Theory +hep-th/0304188 Theory +hep-th/0304221 Theory +hep-th/0304256 Theory +hep-th/0304257 Theory +hep-th/0304259 Theory +hep-th/0305001 Theory +hep-th/0305018 Theory +hep-th/0305062 Theory +hep-th/0305153 Theory +hep-th/0305198 Theory +hep-th/0305226 Theory +hep-th/0305238 Theory +hep-th/0305257 Theory +hep-th/0306014 Theory +hep-th/0306066 Theory +hep-th/0306140 Theory +hep-th/0306165 Theory +hep-th/0306174 Theory +hep-th/0306186 Theory +hep-th/0306190 Theory +hep-th/0306208 Theory +hep-th/0306247 Theory +hep-th/0306257 Theory +hep-th/0306260 Theory +hep-th/0306295 Theory +hep-th/0307003 Theory +hep-th/0307033 Theory +hep-th/0307035 Theory +hep-th/0307067 Theory +hep-th/0307088 Theory +hep-th/0307091 Theory +hep-th/0307111 Theory +hep-th/0307160 Theory +hep-th/0307182 Theory +hep-th/0307225 Theory +hep-th/0307236 Theory +hep-th/0307257 Theory +hep-th/0307271 Theory +hep-th/0308039 Theory +hep-th/0308063 Theory +hep-th/0308098 Theory +hep-th/0308107 Theory +hep-th/0308144 Theory +hep-th/0308151 Theory +hep-th/0308165 Theory +hep-th/0308167 Theory +hep-th/0308178 Theory +hep-th/0308197 Theory +hep-th/0309013 Theory +hep-th/0309066 Theory +hep-th/0309076 Theory +hep-th/0309094 Theory +hep-th/0309101 Theory +hep-th/0309125 Theory +hep-th/0309144 Theory +hep-th/0309266 Theory +hep-th/0310001 Theory +hep-th/0310014 Theory +hep-th/0310023 Theory +hep-th/0310111 Theory +hep-th/0310203 Theory +hep-th/0310233 Theory +hep-th/0310261 Theory +hep-th/0310288 Theory +hep-th/0311039 Theory +hep-th/0311053 Theory +hep-th/0311103 Theory +hep-th/0311142 Theory +hep-th/0311144 Theory +hep-th/0311187 Theory +hep-th/0311191 Theory +hep-th/0311203 Theory +hep-th/0311218 Theory +hep-th/0311257 Theory +hep-th/0312008 Theory +hep-th/0312018 Theory +hep-th/0312123 Theory +hep-th/0312125 Theory +hep-th/0312147 Theory +hep-th/0312192 Theory +hep-th/0312196 Theory +hep-th/0312238 Theory +hep-th/0312252 Theory +hep-th/0312267 Theory +hep-th/0401034 Theory +hep-th/0401053 Theory +hep-th/0401105 Theory +hep-th/0401135 Theory +hep-th/0401168 Theory +hep-th/0401169 Theory +hep-th/0401225 Theory +hep-th/0401228 Theory +hep-th/0401229 Theory +hep-th/0402034 Theory +hep-th/0402058 Theory +hep-th/0402075 Theory +hep-th/0402108 Theory +hep-th/0402113 Theory +hep-th/0402141 Theory +hep-th/0402145 Theory +hep-th/0402150 Theory +hep-th/0402183 Theory +hep-th/0402186 Theory +hep-th/0402208 Theory +hep-th/0402219 Theory +hep-th/0403015 Theory +hep-th/0403067 Theory +hep-th/0403198 Theory +hep-th/0403203 Theory +hep-th/0403224 Theory +hep-th/0404005 Theory +hep-th/0404055 Theory +hep-th/0404070 Theory +hep-th/0404076 Theory +hep-th/0404078 Theory +hep-th/0404096 Theory +hep-th/0404217 Theory +hep-th/0404219 Theory +hep-th/0404232 Theory +hep-th/0404237 Theory +hep-th/0404257 Theory +hep-th/0405025 Theory +hep-th/0405045 Theory +hep-th/0405094 Theory +hep-th/0405161 Theory +hep-th/0405181 Theory +hep-th/0405190 Theory +hep-th/0405210 Theory +hep-th/0405216 Theory +hep-th/0405248 Theory +hep-th/0405257 Theory +hep-th/0405276 Theory +hep-th/0406003 Theory +hep-th/0406040 Theory +hep-th/0406061 Theory +hep-th/0406110 Theory +hep-th/0406211 Theory +hep-th/0406254 Theory +hep-th/0407047 Theory +hep-th/0407105 Theory +hep-th/0407125 Theory +hep-th/0407133 Theory +hep-th/0407216 Theory +hep-th/0407273 Theory +hep-th/0408009 Theory +hep-th/0408017 Theory +hep-th/0408083 Theory +hep-th/0408115 Theory +hep-th/0408196 Theory +hep-th/0409024 Theory +hep-th/0409037 Theory +hep-th/0409121 Theory +hep-th/0409140 Theory +hep-th/0409157 Theory +hep-th/0409174 Theory +hep-th/0410113 Theory +hep-th/0410144 Theory +hep-th/0410170 Theory +hep-th/0410188 Theory +hep-th/0410291 Theory +hep-th/0411139 Theory +hep-th/0411172 Theory +hep-th/0411235 Theory +hep-th/0411272 Theory +hep-th/0411277 Theory +hep-th/0412002 Theory +hep-th/0412052 Theory +hep-th/0412057 Theory +hep-th/0412068 Theory +hep-th/0412079 Theory +hep-th/0412092 Theory +hep-th/0501046 Theory +hep-th/0501107 Theory +hep-th/0502035 Theory +hep-th/0502076 Theory +hep-th/0502100 Theory +hep-th/0502236 Theory +hep-th/0503130 Theory +hep-th/0503171 Theory +hep-th/0504034 Theory +hep-th/0504079 Theory +hep-th/0504138 Theory +hep-th/0504141 Theory +hep-th/0505022 Theory +hep-th/0505096 Theory +hep-th/0505108 Theory +hep-th/0505131 Theory +hep-th/0505147 Theory +hep-th/0505186 Theory +hep-th/0506121 Theory +hep-th/0506235 Theory +hep-th/0506259 Theory +hep-th/0507091 Theory +hep-th/0507189 Theory +hep-th/0507237 Theory +hep-th/0507257 Theory +hep-th/0507283 Theory +hep-th/0508045 Theory +hep-th/0508084 Theory +hep-th/0508182 Theory +hep-th/0508220 Theory +hep-th/0508235 Theory +hep-th/0508238 Theory +hep-th/0508246 Theory +hep-th/0509090 Theory +hep-th/0509142 Theory +hep-th/0509150 Theory +hep-th/0510031 Theory +hep-th/0510052 Theory +hep-th/0510131 Theory +hep-th/0510179 Theory +hep-th/0510222 Theory +hep-th/0511015 Theory +hep-th/0511068 Theory +hep-th/0511084 Theory +hep-th/0511150 Theory +hep-th/0511170 Theory +hep-th/0511212 Theory +hep-th/0512043 Theory +hep-th/0512044 Theory +hep-th/0512147 Theory +hep-th/0512242 Theory +hep-th/0512295 Theory +hep-th/0512319 Theory +hep-th/0512351 Theory +hep-th/0601035 Theory +hep-th/0601216 Theory +hep-th/0602026 Theory +hep-th/0603001 Theory +hep-th/0603184 Theory +hep-th/0603201 Theory +hep-th/0604004 Theory +hep-th/0604138 Theory +hep-th/0604206 Theory +hep-th/0605101 Theory +hep-th/0605139 Theory +hep-th/0605148 Theory +hep-th/0605171 Theory +hep-th/0605190 Theory +hep-th/0606042 Theory +hep-th/0606100 Theory +hep-th/0606118 Theory +hep-th/0606131 Theory +hep-th/0606224 Theory +hep-th/0606245 Theory +hep-th/0607102 Theory +hep-th/0607160 Theory +hep-th/0608110 Theory +hep-th/0608152 Theory +hep-th/0608190 Theory +hep-th/0610250 Theory +hep-th/0611004 Theory +hep-th/0611153 Theory +hep-th/0612053 Theory +hep-th/0612218 Theory +hep-th/0612302 Theory +hep-th/0612307 Theory +hep-th/0701038 Theory +hep-th/0701043 Theory +hep-th/0701056 Theory +hep-th/0701060 Theory +hep-th/0701235 Theory +hep-th/0702090 Theory +hep-th/0702121 Theory +hep-th/0703033 Theory +hep-th/0703180 Theory +hep-th/9109006 Theory +hep-th/9109054 Theory +hep-th/9110050 Theory +hep-th/9112005 Theory +hep-th/9201010 Theory +hep-th/9201059 Theory +hep-th/9203053 Theory +hep-th/9203055 Theory +hep-th/9203084 Theory +hep-th/9204084 Theory +hep-th/9206007 Theory +hep-th/9206059 Theory +hep-th/9207023 Theory +hep-th/9207104 Theory +hep-th/9208029 Theory +hep-th/9209054 Theory +hep-th/9209073 Theory +hep-th/9210070 Theory +hep-th/9210127 Theory +hep-th/9212007 Theory +hep-th/9212136 Theory +hep-th/9302006 Theory +hep-th/9302081 Theory +hep-th/9303013 Theory +hep-th/9303053 Theory +hep-th/9303116 Theory +hep-th/9304027 Theory +hep-th/9304068 Theory +hep-th/9305048 Theory +hep-th/9305056 Theory +hep-th/9305123 Theory +hep-th/9305145 Theory +hep-th/9305151 Theory +hep-th/9305181 Theory +hep-th/9306028 Theory +hep-th/9306059 Theory +hep-th/9306076 Theory +hep-th/9306094 Theory +hep-th/9306105 Theory +hep-th/9306116 Theory +hep-th/9307184 Theory +hep-th/9309075 Theory +hep-th/9309138 Theory +hep-th/9310025 Theory +hep-th/9310061 Theory +hep-th/9310184 Theory +hep-th/9312026 Theory +hep-th/9312058 Theory +hep-th/9312121 Theory +hep-th/9312131 Theory +hep-th/9401131 Theory +hep-th/9402057 Theory +hep-th/9402083 Theory +hep-th/9403033 Theory +hep-th/9403160 Theory +hep-th/9404072 Theory +hep-th/9404118 Theory +hep-th/9405039 Theory +hep-th/9405093 Theory +hep-th/9405163 Theory +hep-th/9405176 Theory +hep-th/9405188 Theory +hep-th/9406031 Theory +hep-th/9406079 Theory +hep-th/9406162 Theory +hep-th/9406169 Theory +hep-th/9407146 Theory +hep-th/9407155 Theory +hep-th/9407187 Theory +hep-th/9408047 Theory +hep-th/9408051 Theory +hep-th/9408132 Theory +hep-th/9409041 Theory +hep-th/9409117 Theory +hep-th/9409169 Theory +hep-th/9410071 Theory +hep-th/9410093 Theory +hep-th/9410103 Theory +hep-th/9410122 Theory +hep-th/9410134 Theory +hep-th/9410164 Theory +hep-th/9410174 Theory +hep-th/9410228 Theory +hep-th/9411039 Theory +hep-th/9411223 Theory +hep-th/9412070 Theory +hep-th/9412116 Theory +hep-th/9412176 Theory +hep-th/9412177 Theory +hep-th/9412218 Theory +hep-th/9501031 Theory +hep-th/9501075 Theory +hep-th/9501103 Theory +hep-th/9502104 Theory +hep-th/9502129 Theory +hep-th/9502157 Theory +hep-th/9503002 Theory +hep-th/9503019 Theory +hep-th/9503027 Theory +hep-th/9503047 Theory +hep-th/9503204 Theory +hep-th/9503216 Theory +hep-th/9504037 Theory +hep-th/9504089 Theory +hep-th/9504127 Theory +hep-th/9504155 Theory +hep-th/9505059 Theory +hep-th/9505080 Theory +hep-th/9506029 Theory +hep-th/9506074 Theory +hep-th/9506091 Theory +hep-th/9506209 Theory +hep-th/9506211 Theory +hep-th/9506212 Theory +hep-th/9507034 Theory +hep-th/9507035 Theory +hep-th/9507141 Theory +hep-th/9507170 Theory +hep-th/9507171 Theory +hep-th/9508090 Theory +hep-th/9508143 Theory +hep-th/9508178 Theory +hep-th/9509070 Theory +hep-th/9509086 Theory +hep-th/9509096 Theory +hep-th/9509149 Theory +hep-th/9510062 Theory +hep-th/9510093 Theory +hep-th/9510192 Theory +hep-th/9510228 Theory +hep-th/9511040 Theory +hep-th/9511111 Theory +hep-th/9511159 Theory +hep-th/9511180 Theory +hep-th/9512008 Theory +hep-th/9512031 Theory +hep-th/9512070 Theory +hep-th/9512085 Theory +hep-th/9512148 Theory +hep-th/9512162 Theory +hep-th/9512168 Theory +hep-th/9512175 Theory +hep-th/9512209 Theory +hep-th/9601064 Theory +hep-th/9601099 Theory +hep-th/9601119 Theory +hep-th/9601163 Theory +hep-th/9602009 Theory +hep-th/9602048 Theory +hep-th/9602094 Theory +hep-th/9602102 Theory +hep-th/9602119 Theory +hep-th/9602121 Theory +hep-th/9602145 Theory +hep-th/9602153 Theory +hep-th/9602157 Theory +hep-th/9603014 Theory +hep-th/9603024 Theory +hep-th/9603045 Theory +hep-th/9603052 Theory +hep-th/9603057 Theory +hep-th/9603068 Theory +hep-th/9603152 Theory +hep-th/9603170 Theory +hep-th/9604013 Theory +hep-th/9604034 Theory +hep-th/9604039 Theory +hep-th/9604047 Theory +hep-th/9604115 Theory +hep-th/9604129 Theory +hep-th/9604131 Theory +hep-th/9604175 Theory +hep-th/9604196 Theory +hep-th/9605024 Theory +hep-th/9605040 Theory +hep-th/9605048 Theory +hep-th/9605059 Theory +hep-th/9605106 Theory +hep-th/9605117 Theory +hep-th/9605139 Theory +hep-th/9605236 Theory +hep-th/9606024 Theory +hep-th/9606049 Theory +hep-th/9606087 Theory +hep-th/9606107 Theory +hep-th/9606120 Theory +hep-th/9606161 Theory +hep-th/9606181 Theory +hep-th/9607015 Theory +hep-th/9607043 Theory +hep-th/9607084 Theory +hep-th/9607105 Theory +hep-th/9607115 Theory +hep-th/9607156 Theory +hep-th/9607214 Theory +hep-th/9607234 Theory +hep-th/9608015 Theory +hep-th/9608029 Theory +hep-th/9608117 Theory +hep-th/9608128 Theory +hep-th/9608179 Theory +hep-th/9608197 Theory +hep-th/9609003 Theory +hep-th/9609063 Theory +hep-th/9609180 Theory +hep-th/9609221 Theory +hep-th/9610005 Theory +hep-th/9610008 Theory +hep-th/9610013 Theory +hep-th/9610051 Theory +hep-th/9610101 Theory +hep-th/9610109 Theory +hep-th/9610111 Theory +hep-th/9610112 Theory +hep-th/9610116 Theory +hep-th/9610180 Theory +hep-th/9610222 Theory +hep-th/9610243 Theory +hep-th/9611011 Theory +hep-th/9611046 Theory +hep-th/9611055 Theory +hep-th/9611061 Theory +hep-th/9611068 Theory +hep-th/9611081 Theory +hep-th/9611083 Theory +hep-th/9611089 Theory +hep-th/9611142 Theory +hep-th/9611169 Theory +hep-th/9611179 Theory +hep-th/9611204 Theory +hep-th/9612018 Theory +hep-th/9612021 Theory +hep-th/9612028 Theory +hep-th/9612063 Theory +hep-th/9612068 Theory +hep-th/9612078 Theory +hep-th/9612089 Theory +hep-th/9612097 Theory +hep-th/9612106 Theory +hep-th/9612109 Theory +hep-th/9612142 Theory +hep-th/9612152 Theory +hep-th/9612154 Theory +hep-th/9612174 Theory +hep-th/9612181 Theory +hep-th/9612192 Theory +hep-th/9701026 Theory +hep-th/9701043 Theory +hep-th/9701061 Theory +hep-th/9701116 Theory +hep-th/9701123 Theory +hep-th/9701137 Theory +hep-th/9701184 Theory +hep-th/9702011 Theory +hep-th/9702022 Theory +hep-th/9702029 Theory +hep-th/9702039 Theory +hep-th/9702063 Theory +hep-th/9702085 Theory +hep-th/9702149 Theory +hep-th/9702182 Theory +hep-th/9702191 Theory +hep-th/9703028 Theory +hep-th/9703076 Theory +hep-th/9703099 Theory +hep-th/9703152 Theory +hep-th/9703189 Theory +hep-th/9703193 Theory +hep-th/9703206 Theory +hep-th/9703214 Theory +hep-th/9703226 Theory +hep-th/9704058 Theory +hep-th/9704129 Theory +hep-th/9704154 Theory +hep-th/9704161 Theory +hep-th/9704164 Theory +hep-th/9704177 Theory +hep-th/9705006 Theory +hep-th/9705155 Theory +hep-th/9705156 Theory +hep-th/9705166 Theory +hep-th/9705244 Theory +hep-th/9706141 Theory +hep-th/9706168 Theory +hep-th/9706171 Theory +hep-th/9706203 Theory +hep-th/9707004 Theory +hep-th/9707022 Theory +hep-th/9707097 Theory +hep-th/9707105 Theory +hep-th/9707192 Theory +hep-th/9707199 Theory +hep-th/9707212 Theory +hep-th/9707244 Theory +hep-th/9708021 Theory +hep-th/9708037 Theory +hep-th/9708039 Theory +hep-th/9708102 Theory +hep-th/9708117 Theory +hep-th/9708123 Theory +hep-th/9708135 Theory +hep-th/9708152 Theory +hep-th/9708159 Theory +hep-th/9709017 Theory +hep-th/9709048 Theory +hep-th/9709058 Theory +hep-th/9709096 Theory +hep-th/9709111 Theory +hep-th/9709158 Theory +hep-th/9709162 Theory +hep-th/9709191 Theory +hep-th/9710031 Theory +hep-th/9710067 Theory +hep-th/9710100 Theory +hep-th/9710109 Theory +hep-th/9710147 Theory +hep-th/9710206 Theory +hep-th/9711027 Theory +hep-th/9711054 Theory +hep-th/9711069 Theory +hep-th/9711087 Theory +hep-th/9711101 Theory +hep-th/9711102 Theory +hep-th/9711103 Theory +hep-th/9711123 Theory +hep-th/9711200 Theory +hep-th/9711201 Theory +hep-th/9712042 Theory +hep-th/9712086 Theory +hep-th/9712087 Theory +hep-th/9712093 Theory +hep-th/9712167 Theory +hep-th/9712171 Theory +hep-th/9712175 Theory +hep-th/9712239 Theory +hep-th/9712253 Theory +hep-th/9801026 Theory +hep-th/9801049 Theory +hep-th/9801075 Theory +hep-th/9801138 Theory +hep-th/9801192 Theory +hep-th/9802022 Theory +hep-th/9802026 Theory +hep-th/9802146 Theory +hep-th/9802153 Theory +hep-th/9802163 Theory +hep-th/9803006 Theory +hep-th/9803036 Theory +hep-th/9803090 Theory +hep-th/9803128 Theory +hep-th/9803153 Theory +hep-th/9803202 Theory +hep-th/9803221 Theory +hep-th/9803228 Theory +hep-th/9804039 Theory +hep-th/9804043 Theory +hep-th/9804060 Theory +hep-th/9804096 Theory +hep-th/9804137 Theory +hep-th/9804183 Theory +hep-th/9805010 Theory +hep-th/9805038 Theory +hep-th/9805050 Theory +hep-th/9805122 Theory +hep-th/9805126 Theory +hep-th/9805131 Theory +hep-th/9805136 Theory +hep-th/9805141 Theory +hep-th/9805142 Theory +hep-th/9805153 Theory +hep-th/9805212 Theory +hep-th/9806003 Theory +hep-th/9806067 Theory +hep-th/9806080 Theory +hep-th/9806090 Theory +hep-th/9806098 Theory +hep-th/9806104 Theory +hep-th/9806126 Theory +hep-th/9806151 Theory +hep-th/9806227 Theory +hep-th/9807062 Theory +hep-th/9807067 Theory +hep-th/9807107 Theory +hep-th/9807115 Theory +hep-th/9807148 Theory +hep-th/9807157 Theory +hep-th/9808024 Theory +hep-th/9809024 Theory +hep-th/9809039 Theory +hep-th/9809127 Theory +hep-th/9809130 Theory +hep-th/9809135 Theory +hep-th/9809169 Theory +hep-th/9809197 Theory +hep-th/9810221 Theory +hep-th/9810246 Theory +hep-th/9810255 Theory +hep-th/9811006 Theory +hep-th/9811124 Theory +hep-th/9811179 Theory +hep-th/9811200 Theory +hep-th/9811243 Theory +hep-th/9812049 Theory +hep-th/9812054 Theory +hep-th/9812068 Theory +hep-th/9812152 Theory +hep-th/9812212 Theory +hep-th/9812213 Theory +hep-th/9812236 Theory +hep-th/9901020 Theory +hep-th/9901047 Theory +hep-th/9901060 Theory +hep-th/9901117 Theory +hep-th/9901144 Theory +hep-th/9901162 Theory +hep-th/9901163 Theory +hep-th/9902032 Theory +hep-th/9902102 Theory +hep-th/9902114 Theory +hep-th/9902120 Theory +hep-th/9902131 Theory +hep-th/9902167 Theory +hep-th/9902191 Theory +hep-th/9902205 Theory +hep-th/9903052 Theory +hep-th/9903113 Theory +hep-th/9903121 Theory +hep-th/9903131 Theory +hep-th/9903160 Theory +hep-th/9903166 Theory +hep-th/9903172 Theory +hep-th/9903176 Theory +hep-th/9903210 Theory +hep-th/9903217 Theory +hep-th/9904004 Theory +hep-th/9904098 Theory +hep-th/9904105 Theory +hep-th/9904107 Theory +hep-th/9904121 Theory +hep-th/9904123 Theory +hep-th/9904171 Theory +hep-th/9904178 Theory +hep-th/9904185 Theory +hep-th/9905019 Theory +hep-th/9905108 Theory +hep-th/9905133 Theory +hep-th/9905137 Theory +hep-th/9905143 Theory +hep-th/9905160 Theory +hep-th/9905219 Theory +hep-th/9906019 Theory +hep-th/9906039 Theory +hep-th/9906099 Theory +hep-th/9906124 Theory +hep-th/9906207 Theory +hep-th/9907015 Theory +hep-th/9907016 Theory +hep-th/9907089 Theory +hep-th/9907105 Theory +hep-th/9907111 Theory +hep-th/9907116 Theory +hep-th/9907133 Theory +hep-th/9907209 Theory +hep-th/9908042 Theory +hep-th/9908059 Theory +hep-th/9908087 Theory +hep-th/9908099 Theory +hep-th/9908149 Theory +hep-th/9908176 Theory +hep-th/9908192 Theory +hep-th/9909007 Theory +hep-th/9909021 Theory +hep-th/9909026 Theory +hep-th/9909052 Theory +hep-th/9909061 Theory +hep-th/9909088 Theory +hep-th/9909150 Theory +hep-th/9909159 Theory +hep-th/9909167 Theory +hep-th/9909172 Theory +hep-th/9909173 Theory +hep-th/9910009 Theory +hep-th/9910015 Theory +hep-th/9910025 Theory +hep-th/9910037 Theory +hep-th/9910054 Theory +hep-th/9910065 Theory +hep-th/9910068 Theory +hep-th/9910081 Theory +hep-th/9910087 Theory +hep-th/9910106 Theory +hep-th/9910131 Theory +hep-th/9910147 Theory +hep-th/9910156 Theory +hep-th/9910210 Theory +hep-th/9910250 Theory +hep-th/9910268 Theory +hep-th/9911040 Theory +hep-th/9911081 Theory +hep-th/9911193 Theory +hep-th/9911205 Theory +hep-th/9911239 Theory +hep-th/9911242 Theory +hep-th/9912038 Theory +hep-th/9912152 Theory +hep-th/9912182 Theory +hep-th/9912185 Theory +hep-th/9912196 Theory +hep-th/9912202 Theory +hep-th/9912218 Theory +hep-th/9912287 Theory +hep-th/9912288 Theory +math-ph/0002048 +math-ph/0011014 +math-ph/0012006 +math-ph/0104016 +math-ph/0105029 +math-ph/0110004 +math-ph/0205009 +math-ph/0301029 +math-ph/0302020 +math-ph/0307058 +math-ph/0310026 +math-ph/0404067 +math-ph/0407024 +math-ph/0412017 +math-ph/0412064 +math-ph/0503036 +math-ph/0506009 +math-ph/0509057 +math-ph/0510015 +math-ph/0510024 +math-ph/0511040 +math-ph/0512005 +math-ph/0604008 +math-ph/0612003 +math-ph/9906019 +math-ph/9912016 +math/0008039 Dynamical Systems +math/0012236 Quantum Algebra +math/0102067 Algebraic Topology +math/0104093 Classical Analysis and ODEs +math/0108133 Algebraic Geometry +math/0204179 Number Theory +math/0205299 Combinatorics +math/0208124 Differential Geometry +math/0209369 Commutative Algebra +math/0302265 Symplectic Geometry +math/0307087 Group Theory +math/0307229 Logic +math/0307242 Symplectic Geometry +math/0311390 Combinatorics +math/0312202 Number Theory +math/0402070 Differential Geometry +math/0403011 General Mathematics +math/0404557 Operator Algebras +math/0405395 Geometric Topology +math/0406355 Commutative Algebra +math/0410261 K-Theory and Homology +math/0410277 Optimization and Control +math/0501014 Probability +math/0505248 Classical Analysis and ODEs +math/0506303 Algebraic Geometry +math/0506450 Quantum Algebra +math/0509705 Optimization and Control +math/0510304 Differential Geometry +math/0512172 General Mathematics +math/9802029 Quantum Algebra +math/9805120 Quantum Algebra +math/9806032 Quantum Algebra +math/9806162 Quantum Algebra +math/9807123 Quantum Algebra +math/9901015 Quantum Algebra +math/9901117 Symplectic Geometry +math/9902127 Differential Geometry +math/9902128 Differential Geometry +math/9902129 Differential Geometry +math/9905015 Probability +math/9906010 Group Theory +math/9907048 Quantum Algebra +math/9908059 Functional Analysis +math/9909167 Probability +math/9910147 Quantum Algebra +math/9912030 Commutative Algebra +nlin/0103027 Exactly Solvable and Integrable Systems +nlin/0110048 Exactly Solvable and Integrable Systems +nlin/0207048 Cellular Automata and Lattice Gases +nlin/0402036 Chaotic Dynamics +nlin/0402047 Exactly Solvable and Integrable Systems +nlin/0507062 Exactly Solvable and Integrable Systems +nlin/0509045 Chaotic Dynamics +nlin/0703037 Chaotic Dynamics +nucl-ex/0001006 +nucl-ex/0002004 +nucl-ex/0002014 +nucl-ex/0011008 +nucl-ex/0011021 +nucl-ex/0104001 +nucl-ex/0104006 +nucl-ex/0104007 +nucl-ex/0104013 +nucl-ex/0104016 +nucl-ex/0104020 +nucl-ex/0104021 +nucl-ex/0105003 +nucl-ex/0105013 +nucl-ex/0106011 +nucl-ex/0109004 +nucl-ex/0109015 +nucl-ex/0201011 +nucl-ex/0203010 +nucl-ex/0205004 +nucl-ex/0205008 +nucl-ex/0208008 +nucl-ex/0210011 +nucl-ex/0210013 +nucl-ex/0210026 +nucl-ex/0212011 +nucl-ex/0304015 +nucl-ex/0305017 +nucl-ex/0306001 +nucl-ex/0306027 +nucl-ex/0307012 +nucl-ex/0308014 +nucl-ex/0308032 +nucl-ex/0309007 +nucl-ex/0310001 +nucl-ex/0310007 +nucl-ex/0312005 +nucl-ex/0401017 +nucl-ex/0402010 +nucl-ex/0402024 +nucl-ex/0403060 +nucl-ex/0404003 +nucl-ex/0404007 +nucl-ex/0404021 +nucl-ex/0404035 +nucl-ex/0405013 +nucl-ex/0405018 +nucl-ex/0407008 +nucl-ex/0409015 +nucl-ex/0409023 +nucl-ex/0410009 +nucl-ex/0410026 +nucl-ex/0410028 +nucl-ex/0411026 +nucl-ex/0412033 +nucl-ex/0501015 +nucl-ex/0501018 +nucl-ex/0501029 +nucl-ex/0502012 +nucl-ex/0502015 +nucl-ex/0504010 +nucl-ex/0504029 +nucl-ex/0505012 +nucl-ex/0505020 +nucl-ex/0507003 +nucl-ex/0507010 +nucl-ex/0507021 +nucl-ex/0507022 +nucl-ex/0508012 +nucl-ex/0509032 +nucl-ex/0510050 +nucl-ex/0510078 +nucl-ex/0511021 +nucl-ex/0512006 +nucl-ex/0601003 +nucl-ex/0601031 +nucl-ex/0605021 +nucl-ex/0605025 +nucl-ex/0605027 +nucl-ex/0607018 +nucl-ex/0608032 +nucl-ex/0609005 +nucl-ex/0609008 +nucl-ex/0612025 +nucl-ex/0612026 +nucl-ex/0701036 +nucl-ex/0703038 +nucl-ex/9412001 +nucl-ex/9610006 +nucl-ex/9702001 +nucl-ex/9805002 +nucl-ex/9809002 +nucl-ex/9810004 +nucl-ex/9907012 +nucl-ex/9909004 +nucl-ex/9912005 +nucl-th/0003033 +nucl-th/0005076 +nucl-th/0006008 +nucl-th/0006026 +nucl-th/0006047 +nucl-th/0006050 +nucl-th/0007016 +nucl-th/0007025 +nucl-th/0007027 +nucl-th/0007060 +nucl-th/0009012 +nucl-th/0009019 +nucl-th/0009082 +nucl-th/0011004 +nucl-th/0011019 +nucl-th/0011034 +nucl-th/0011049 +nucl-th/0011067 +nucl-th/0011074 +nucl-th/0011075 +nucl-th/0012020 +nucl-th/0012034 +nucl-th/0012043 +nucl-th/0012060 +nucl-th/0101018 +nucl-th/0101057 +nucl-th/0102027 +nucl-th/0102033 +nucl-th/0102041 +nucl-th/0102049 +nucl-th/0103081 +nucl-th/0104031 +nucl-th/0104042 +nucl-th/0105035 +nucl-th/0105045 +nucl-th/0105053 +nucl-th/0105068 +nucl-th/0105076 +nucl-th/0106043 +nucl-th/0106050 +nucl-th/0106067 +nucl-th/0107006 +nucl-th/0107009 +nucl-th/0107025 +nucl-th/0107026 +nucl-th/0108043 +nucl-th/0108062 +nucl-th/0109014 +nucl-th/0109084 +nucl-th/0110001 +nucl-th/0110015 +nucl-th/0110049 +nucl-th/0110073 +nucl-th/0110082 +nucl-th/0111023 +nucl-th/0111025 +nucl-th/0111077 +nucl-th/0111081 +nucl-th/0112008 +nucl-th/0112021 +nucl-th/0201043 +nucl-th/0201047 +nucl-th/0201062 +nucl-th/0201083 +nucl-th/0202022 +nucl-th/0203019 +nucl-th/0203051 +nucl-th/0203064 +nucl-th/0204025 +nucl-th/0204052 +nucl-th/0205001 +nucl-th/0205034 +nucl-th/0205061 +nucl-th/0205078 +nucl-th/0206024 +nucl-th/0206071 +nucl-th/0206072 +nucl-th/0207020 +nucl-th/0207035 +nucl-th/0208004 +nucl-th/0208024 +nucl-th/0208055 +nucl-th/0209017 +nucl-th/0209029 +nucl-th/0209036 +nucl-th/0209055 +nucl-th/0209074 +nucl-th/0209076 +nucl-th/0209088 +nucl-th/0209093 +nucl-th/0210015 +nucl-th/0210046 +nucl-th/0211088 +nucl-th/0212020 +nucl-th/0212038 +nucl-th/0212059 +nucl-th/0212107 +nucl-th/0302052 +nucl-th/0302056 +nucl-th/0303058 +nucl-th/0303072 +nucl-th/0304025 +nucl-th/0304037 +nucl-th/0305030 +nucl-th/0305031 +nucl-th/0305033 +nucl-th/0305041 +nucl-th/0305047 +nucl-th/0305085 +nucl-th/0306012 +nucl-th/0306036 +nucl-th/0306056 +nucl-th/0306070 +nucl-th/0307002 +nucl-th/0307012 +nucl-th/0307020 +nucl-th/0307031 +nucl-th/0307042 +nucl-th/0307101 +nucl-th/0307102 +nucl-th/0308012 +nucl-th/0308022 +nucl-th/0308035 +nucl-th/0308044 +nucl-th/0308051 +nucl-th/0308078 +nucl-th/0309049 +nucl-th/0310043 +nucl-th/0310052 +nucl-th/0310087 +nucl-th/0311027 +nucl-th/0311032 +nucl-th/0311046 +nucl-th/0311073 +nucl-th/0311083 +nucl-th/0311095 +nucl-th/0312028 +nucl-th/0312108 +nucl-th/0312125 +nucl-th/0401011 +nucl-th/0402092 +nucl-th/0402097 +nucl-th/0402099 +nucl-th/0402100 +nucl-th/0403047 +nucl-th/0403051 +nucl-th/0404011 +nucl-th/0404034 +nucl-th/0404049 +nucl-th/0404068 +nucl-th/0404082 +nucl-th/0405048 +nucl-th/0405051 +nucl-th/0405063 +nucl-th/0405064 +nucl-th/0405079 +nucl-th/0406026 +nucl-th/0406054 +nucl-th/0407037 +nucl-th/0407068 +nucl-th/0407072 +nucl-th/0407087 +nucl-th/0408005 +nucl-th/0408033 +nucl-th/0408034 +nucl-th/0408060 +nucl-th/0409023 +nucl-th/0409038 +nucl-th/0409044 +nucl-th/0409077 +nucl-th/0410007 +nucl-th/0410009 +nucl-th/0410012 +nucl-th/0410014 +nucl-th/0410028 +nucl-th/0410077 +nucl-th/0410088 +nucl-th/0410093 +nucl-th/0411016 +nucl-th/0411024 +nucl-th/0411082 +nucl-th/0411083 +nucl-th/0411090 +nucl-th/0411099 +nucl-th/0411101 +nucl-th/0412003 +nucl-th/0412008 +nucl-th/0412020 +nucl-th/0412025 +nucl-th/0412029 +nucl-th/0412041 +nucl-th/0412047 +nucl-th/0412051 +nucl-th/0412056 +nucl-th/0412088 +nucl-th/0412113 +nucl-th/0501010 +nucl-th/0501073 +nucl-th/0502004 +nucl-th/0502011 +nucl-th/0502048 +nucl-th/0502052 +nucl-th/0502061 +nucl-th/0503001 +nucl-th/0503020 +nucl-th/0503030 +nucl-th/0503045 +nucl-th/0504009 +nucl-th/0504015 +nucl-th/0505050 +nucl-th/0505066 +nucl-th/0505074 +nucl-th/0506006 +nucl-th/0506026 +nucl-th/0506039 +nucl-th/0506040 +nucl-th/0506072 +nucl-th/0507027 +nucl-th/0507061 +nucl-th/0507062 +nucl-th/0507075 +nucl-th/0508048 +nucl-th/0509030 +nucl-th/0509034 +nucl-th/0509103 +nucl-th/0510012 +nucl-th/0510028 +nucl-th/0510034 +nucl-th/0511001 +nucl-th/0511060 +nucl-th/0512006 +nucl-th/0512063 +nucl-th/0512083 +nucl-th/0512085 +nucl-th/0601024 +nucl-th/0601061 +nucl-th/0601075 +nucl-th/0602008 +nucl-th/0602037 +nucl-th/0603011 +nucl-th/0603014 +nucl-th/0603048 +nucl-th/0606026 +nucl-th/0607063 +nucl-th/0608013 +nucl-th/0610009 +nucl-th/0610046 +nucl-th/0612029 +nucl-th/0612095 +nucl-th/0701098 +nucl-th/0702042 +nucl-th/0702047 +nucl-th/0703031 +nucl-th/0703050 +nucl-th/9307016 +nucl-th/9309009 +nucl-th/9309012 +nucl-th/9310001 +nucl-th/9310030 +nucl-th/9401018 +nucl-th/9402003 +nucl-th/9402016 +nucl-th/9407040 +nucl-th/9409007 +nucl-th/9410005 +nucl-th/9411016 +nucl-th/9501011 +nucl-th/9505044 +nucl-th/9507020 +nucl-th/9509046 +nucl-th/9510053 +nucl-th/9511002 +nucl-th/9601013 +nucl-th/9601036 +nucl-th/9605004 +nucl-th/9607006 +nucl-th/9607020 +nucl-th/9609013 +nucl-th/9610030 +nucl-th/9610053 +nucl-th/9612065 +nucl-th/9701058 +nucl-th/9704027 +nucl-th/9704042 +nucl-th/9705008 +nucl-th/9705041 +nucl-th/9705048 +nucl-th/9706001 +nucl-th/9706038 +nucl-th/9708002 +nucl-th/9708006 +nucl-th/9708014 +nucl-th/9708015 +nucl-th/9711010 +nucl-th/9711063 +nucl-th/9801009 +nucl-th/9801024 +nucl-th/9801039 +nucl-th/9801063 +nucl-th/9804011 +nucl-th/9804070 +nucl-th/9805027 +nucl-th/9805033 +nucl-th/9806048 +nucl-th/9806077 +nucl-th/9808033 +nucl-th/9808041 +nucl-th/9808062 +nucl-th/9809085 +nucl-th/9810080 +nucl-th/9811015 +nucl-th/9811072 +nucl-th/9812011 +nucl-th/9812021 +nucl-th/9812032 +nucl-th/9901032 +nucl-th/9901053 +nucl-th/9901082 +nucl-th/9902032 +nucl-th/9902053 +nucl-th/9902063 +nucl-th/9903063 +nucl-th/9905026 +nucl-th/9905046 +nucl-th/9905063 +nucl-th/9906029 +nucl-th/9906033 +nucl-th/9906048 +nucl-th/9907019 +nucl-th/9907032 +nucl-th/9907051 +nucl-th/9907093 +nucl-th/9907095 +nucl-th/9907099 +nucl-th/9907108 +nucl-th/9907121 +nucl-th/9908028 +nucl-th/9908050 +nucl-th/9908054 +nucl-th/9908057 +nucl-th/9908058 +nucl-th/9908059 +nucl-th/9908073 +nucl-th/9908084 +nucl-th/9909002 +nucl-th/9909008 +nucl-th/9910008 +nucl-th/9910034 +nucl-th/9910043 +nucl-th/9911016 +nucl-th/9911051 +nucl-th/9911063 +nucl-th/9912007 +nucl-th/9912034 +nucl-th/9912038 +nucl-th/9912041 +patt-sol/9601003 Pattern Formation and Solitons +physics/0004024 Classical Physics +physics/0005032 Accelerator Physics +physics/0007022 Classical Physics +physics/0007023 Atomic Physics +physics/0007094 Accelerator Physics +physics/0008032 Accelerator Physics +physics/0008065 Accelerator Physics +physics/0008117 Accelerator Physics +physics/0008123 Accelerator Physics +physics/0008124 Accelerator Physics +physics/0008126 Accelerator Physics +physics/0009047 Instrumentation and Detectors +physics/0009087 Accelerator Physics +physics/0012046 Instrumentation and Detectors +physics/0101108 Popular Physics +physics/0105099 Instrumentation and Detectors +physics/0108051 Instrumentation and Detectors +physics/0110091 Instrumentation and Detectors +physics/0111022 Accelerator Physics +physics/0111065 Accelerator Physics +physics/0111074 Accelerator Physics +physics/0111076 Accelerator Physics +physics/0111078 Accelerator Physics +physics/0111079 Accelerator Physics +physics/0111087 Accelerator Physics +physics/0111101 Accelerator Physics +physics/0111153 Instrumentation and Detectors +physics/0112073 Accelerator Physics +physics/0203069 Optics +physics/0206009 Instrumentation and Detectors +physics/0210014 Instrumentation and Detectors +physics/0211048 Accelerator Physics +physics/0212060 Atomic Physics +physics/0306012 Computational Physics +physics/0306013 Computational Physics +physics/0306014 Data Analysis, Statistics and Probability +physics/0306031 Computational Physics +physics/0306097 Computational Physics +physics/0306101 Computational Physics +physics/0306121 Biological Physics +physics/0306147 General Physics +physics/0309011 Instrumentation and Detectors +physics/0310108 Data Analysis, Statistics and Probability +physics/0310110 Data Analysis, Statistics and Probability +physics/0310156 Instrumentation and Detectors +physics/0310167 Data Analysis, Statistics and Probability +physics/0311092 Data Analysis, Statistics and Probability +physics/0311105 Data Analysis, Statistics and Probability +physics/0312009 Instrumentation and Detectors +physics/0312014 Data Analysis, Statistics and Probability +physics/0312017 Instrumentation and Detectors +physics/0312032 Instrumentation and Detectors +physics/0312050 Data Analysis, Statistics and Probability +physics/0312059 Data Analysis, Statistics and Probability +physics/0312100 Data Analysis, Statistics and Probability +physics/0312102 Data Analysis, Statistics and Probability +physics/0401042 Data Analysis, Statistics and Probability +physics/0401045 Data Analysis, Statistics and Probability +physics/0401068 Instrumentation and Detectors +physics/0401133 Data Analysis, Statistics and Probability +physics/0403055 Instrumentation and Detectors +physics/0405029 Physics Education +physics/0406138 Instrumentation and Detectors +physics/0407026 Instrumentation and Detectors +physics/0409042 General Physics +physics/0411056 Instrumentation and Detectors +physics/0412062 Instrumentation and Detectors +physics/0501151 Fluid Dynamics +physics/0501162 Classical Physics +physics/0504098 Accelerator Physics +physics/0506173 Atomic Physics +physics/0506228 Instrumentation and Detectors +physics/0509021 Classical Physics +physics/0510218 General Physics +physics/0511167 Instrumentation and Detectors +physics/0512020 Physics and Society +physics/0602169 Instrumentation and Detectors +physics/0603163 Physics and Society +physics/0603177 Fluid Dynamics +physics/0606042 Instrumentation and Detectors +physics/0606263 Instrumentation and Detectors +physics/0607023 Accelerator Physics +physics/0607036 Accelerator Physics +physics/0607087 Accelerator Physics +physics/0607129 Accelerator Physics +physics/0607165 Accelerator Physics +physics/0607284 Accelerator Physics +physics/0608065 Accelerator Physics +physics/0608288 Accelerator Physics +physics/0609043 Accelerator Physics +physics/0609248 Accelerator Physics +physics/0610247 General Physics +physics/0702130 Instrumentation and Detectors +physics/0702188 Instrumentation and Detectors +physics/9707010 +physics/9710010 +physics/9802030 General Physics +physics/9806009 Accelerator Physics +physics/9810017 Classical Physics +physics/9812018 Instrumentation and Detectors +physics/9902036 General Physics +q-alg/9604010 Quantum Algebra +q-alg/9705023 Quantum Algebra +q-alg/9708017 Quantum Algebra +q-bio/0506012 Biomolecules +q-bio/0508010 Biomolecules +quant-ph/0008043 +quant-ph/0009071 +quant-ph/0101001 +quant-ph/0102019 +quant-ph/0102128 +quant-ph/0106013 +quant-ph/0107022 +quant-ph/0109120 +quant-ph/0110005 +quant-ph/0112070 +quant-ph/0201091 +quant-ph/0202054 +quant-ph/0206113 +quant-ph/0208005 +quant-ph/0208017 +quant-ph/0208185 +quant-ph/0211003 +quant-ph/0212130 +quant-ph/0301002 +quant-ph/0302061 +quant-ph/0302152 +quant-ph/0304023 +quant-ph/0304109 +quant-ph/0305067 +quant-ph/0305087 +quant-ph/0305089 +quant-ph/0309136 +quant-ph/0309202 +quant-ph/0402125 +quant-ph/0403100 +quant-ph/0405108 +quant-ph/0406173 +quant-ph/0410028 +quant-ph/0410054 +quant-ph/0411019 +quant-ph/0411102 +quant-ph/0501059 +quant-ph/0501110 +quant-ph/0502100 +quant-ph/0503051 +quant-ph/0504143 +quant-ph/0505143 +quant-ph/0506039 +quant-ph/0507018 +quant-ph/0507214 +quant-ph/0508044 +quant-ph/0508199 +quant-ph/0509059 +quant-ph/0509070 +quant-ph/0510030 +quant-ph/0512065 +quant-ph/0702236 +quant-ph/0703037 +quant-ph/9510007 +quant-ph/9601004 +quant-ph/9601008 +quant-ph/9601015 +quant-ph/9608029 +quant-ph/9608032 +quant-ph/9609010 +quant-ph/9609018 +quant-ph/9610003 +quant-ph/9610008 +quant-ph/9612016 +quant-ph/9612029 +quant-ph/9701003 +quant-ph/9702042 +quant-ph/9704015 +quant-ph/9705026 +quant-ph/9706040 +quant-ph/9707017 +quant-ph/9707058 +quant-ph/9709020 +quant-ph/9710034 +quant-ph/9711054 +quant-ph/9804047 +quant-ph/9804072 +quant-ph/9810036 +quant-ph/9810074 +quant-ph/9811073 +quant-ph/9811083 +quant-ph/9812014 +quant-ph/9812027 +quant-ph/9902004 +quant-ph/9903074 +quant-ph/9903103 +quant-ph/9905003 +solv-int/9509007 Exactly Solvable and Integrable Systems +0708.2265 Classical Analysis and ODEs +0710.4668 Combinatorics +0909.4846 Functional Analysis +1002.0597 General Physics +1008.4728 Analysis of PDEs +1109.5521 Theory +1111.2732 +1112.1800 Strongly Correlated Electrons +1202.5030 Materials Science +1202.5184 Computational Complexity +1202.6306 Theory +1204.5897 Probability +1205.7053 Geometric Topology +1207.0054 Operator Algebras +1207.3963 Quantum Gases +1207.4956 +1209.2767 Mesoscale and Nanoscale Physics +1210.2812 +1210.3901 Materials Science +1210.6081 Disordered Systems and Neural Networks +1210.6575 +1210.8364 Theory +1211.0649 Algebraic Topology +1211.3133 Molecular Networks +1212.0090 Numerical Analysis +1212.3681 Combinatorics +1212.4962 +1302.2226 +1302.3829 Geometric Topology +1302.4460 Strongly Correlated Electrons +1303.0362 Learning +1303.3172 Algebraic Geometry +1303.6461 Symplectic Geometry +1304.4589 Classical Analysis and ODEs +1304.6487 Learning +1304.6612 +1304.7510 Probability +1305.4074 Dynamical Systems +1305.5697 Probability +1306.1330 Quantum Gases +1306.1863 Strongly Correlated Electrons +1306.1872 Phenomenology +1306.1874 Phenomenology +1306.4243 Dynamical Systems +1307.1250 Number Theory +1308.2429 Optics +1309.1598 Theory +1309.3923 +1309.5539 Differential Geometry +1309.6017 Differential Geometry +1310.0286 Strongly Correlated Electrons +1310.1088 +1310.1230 Instrumentation and Methods for Astrophysics +1310.2194 Probability +1310.4130 Mesoscale and Nanoscale Physics +1310.5670 Cryptography and Security +1311.0178 Probability +1311.0605 Materials Science +1311.0997 Optics +1311.2095 Systems and Control +1311.4479 Fluid Dynamics +1311.4741 Statistical Mechanics +1311.7270 Rings and Algebras +1312.2536 Mesoscale and Nanoscale Physics +1312.3204 +1312.7713 Statistics Theory +1401.2778 Computers and Society +1401.3095 +1401.3606 Soft Condensed Matter +1401.4363 Combinatorics +1401.5794 Popular Physics +1401.7649 Materials Science +1401.8225 Materials Science +1402.1872 Methodology +1402.2361 Combinatorics +1402.3121 +1402.3914 Functional Analysis +1402.6758 Number Theory +1402.7082 Strongly Correlated Electrons +1402.7097 Mesoscale and Nanoscale Physics +1403.0489 Experiment +1403.0581 Commutative Algebra +1403.1464 +1403.2112 Mesoscale and Nanoscale Physics +1403.2544 Mesoscale and Nanoscale Physics +1403.4568 Statistical Mechanics +1403.5347 Phenomenology +1403.6586 Mesoscale and Nanoscale Physics +1403.7441 Mesoscale and Nanoscale Physics +1404.2250 Quantum Gases +1404.2527 +1404.3129 Mesoscale and Nanoscale Physics +1404.7300 Optimization and Control +1405.0172 Strongly Correlated Electrons +1405.0399 +1405.0429 Atomic Physics +1405.2332 Phenomenology +1405.2715 Disordered Systems and Neural Networks +1405.3157 Theory +1405.5925 Probability +1405.7036 Mesoscale and Nanoscale Physics +1405.7670 +1405.7808 Instrumentation and Detectors +1406.0560 +1406.0773 Mesoscale and Nanoscale Physics +1406.1122 Experiment +1406.5356 Materials Science +1406.7091 Digital Libraries +1407.1524 Logic in Computer Science +1407.4527 Networking and Internet Architecture +1407.4727 Logic +1407.5240 Mesoscale and Nanoscale Physics +1407.6220 Software Engineering +1407.6590 Phenomenology +1408.0137 Probability +1408.0149 Probability +1408.0151 Probability +1408.2211 +1408.3380 Combinatorics +1408.4093 Combinatorics +1408.4795 History and Philosophy of Physics +1408.5949 Geometric Topology +1408.6124 Mesoscale and Nanoscale Physics +1408.6519 Phenomenology +1409.1073 Neural and Evolutionary Computing +1409.1568 +1409.1603 Theory +1409.1817 +1409.1992 History and Philosophy of Physics +1409.2168 General Physics +1409.2174 Phenomenology +1409.2290 Disordered Systems and Neural Networks +1409.2425 History and Overview +1409.2612 Logic in Computer Science +1409.2692 Methodology +1409.2824 Machine Learning +1409.2864 Genomics +1409.2865 Numerical Analysis +1409.2891 +1409.2897 Human-Computer Interaction +1409.2899 Combinatorics +1409.2902 Numerical Analysis +1409.2903 Neurons and Cognition +1409.2905 Learning +1409.2908 Distributed, Parallel, and Cluster Computing +1409.2909 Number Theory +1409.2913 Data Structures and Algorithms +1409.2916 Soft Condensed Matter +1409.2918 Computer Vision and Pattern Recognition +1409.2919 Probability +1409.2922 Combinatorics +1409.2923 Numerical Analysis +1409.2925 Analysis of PDEs +1409.2926 Data Analysis, Statistics and Probability +1409.2928 Data Structures and Algorithms +1409.2933 +1409.2937 Number Theory +1409.2941 Plasma Physics +1409.2942 Neurons and Cognition +1409.2948 Category Theory +1409.2952 Soft Condensed Matter +1409.2953 Analysis of PDEs +1409.2957 Probability +1409.2965 Chemical Physics +1409.2966 Astrophysics of Galaxies +1409.2973 Physics and Society +1409.2974 Number Theory +1409.2977 High Energy Astrophysical Phenomena +1409.2978 Computational Complexity +1409.2981 Phenomenology +1409.2983 Computers and Society +1409.2985 Instrumentation and Detectors +1409.2987 Dynamical Systems +1409.2988 Classical Analysis and ODEs +1409.2989 Symplectic Geometry +1409.2990 Experiment +1409.2991 Materials Science +1409.2992 Optimization and Control +1409.2993 Learning +1409.2996 Instrumentation and Methods for Astrophysics +1409.2997 Materials Science +1409.3000 Materials Science +1409.3003 Spectral Theory +1409.3005 Computation and Language +1409.3008 Functional Analysis +1409.3010 Classical Analysis and ODEs +1409.3020 Rings and Algebras +1409.3021 Information Retrieval +1409.3024 Computer Vision and Pattern Recognition +1409.3027 Computation +1409.3028 Experiment +1409.3029 Phenomenology +1409.3030 Experiment +1409.3033 Combinatorics +1409.3035 Combinatorics +1409.3037 Social and Information Networks +1409.3041 Combinatorics +1409.3043 Analysis of PDEs +1409.3044 Solar and Stellar Astrophysics +1409.3048 Disordered Systems and Neural Networks +1409.3052 Rings and Algebras +1409.3056 Statistical Mechanics +1409.3058 Functional Analysis +1409.3060 Accelerator Physics +1409.3070 Astrophysics of Galaxies +1409.3071 Classical Analysis and ODEs +1409.3072 Experiment +1409.3075 Materials Science +1409.3078 Neural and Evolutionary Computing +1409.3079 +1409.3082 Experiment +1409.3084 Materials Science +1409.3092 Computers and Society +1409.3098 Materials Science +1409.3101 +1409.3102 Optimization and Control +1409.3104 Phenomenology +1409.3105 Mesoscale and Nanoscale Physics +1409.3115 +1409.3119 Analysis of PDEs +1409.3123 Accelerator Physics +1409.3126 Information Theory +1409.3132 Pattern Formation and Solitons +1409.3135 Analysis of PDEs +1409.3136 Learning +1409.3140 Plasma Physics +1409.3147 Optics +1409.3153 Solar and Stellar Astrophysics +1409.3154 Probability +1409.3158 Analysis of PDEs +1409.3160 Software Engineering +1409.3163 +1409.3164 Plasma Physics +1409.3169 Combinatorics +1409.3170 +1409.3173 Number Theory +1409.3174 Human-Computer Interaction +1409.3176 Software Engineering +1409.3177 Number Theory +1409.3184 Programming Languages +1409.3186 Plasma Physics +1409.3191 Classical Physics +1409.3192 Data Structures and Algorithms +1409.3193 General Mathematics +1409.3209 Analysis of PDEs +1409.3211 Cryptography and Security +1409.3214 Analysis of PDEs +1409.3217 Materials Science +cond-mat/0002463 Statistical Mechanics +cond-mat/0008368 +math/9808024 Quantum Algebra +nlin/0104006 Chaotic Dynamics +0809.0198 Materials Science +0912.5222 Geometric Topology +1004.1127 +1008.3349 Geometric Topology +1102.5529 Distributed, Parallel, and Cluster Computing +1104.5200 Data Structures and Algorithms +1105.6371 High Energy Astrophysical Phenomena +1106.4192 Genomics +1108.3376 Algebraic Topology +1109.1919 K-Theory and Homology +1109.2694 Statistics Theory +1110.0563 Geometric Topology +1112.0388 Symplectic Geometry +1201.2706 Neural and Evolutionary Computing +1204.2335 Neural and Evolutionary Computing +1204.3098 Symplectic Geometry +1204.3158 Logic in Computer Science +1204.4369 Algebraic Geometry +1205.1454 Group Theory +1205.3417 Populations and Evolution +1207.4712 Theory +1209.1644 Probability +1209.2373 Number Theory +1209.4093 Information Theory +1210.6952 Dynamical Systems +1211.4657 Learning +1211.6406 Optimization and Control +1212.6184 Representation Theory +1302.0814 Analysis of PDEs +1302.1779 Phenomenology +1302.2430 Populations and Evolution +1302.2671 Social and Information Networks +1303.0956 Strongly Correlated Electrons +1303.1265 Analysis of PDEs +1304.3765 Mesoscale and Nanoscale Physics +1304.4320 Computational Geometry +1304.7086 Geometric Topology +1305.1257 Probability +1305.4393 +1306.0887 Risk Management +1306.2993 +1306.3458 +1306.3824 Materials Science +1306.4748 Information Theory +1307.1253 Physics and Society +1307.2923 Information Theory +1307.4524 +1307.4680 Mesoscale and Nanoscale Physics +1307.5019 Analysis of PDEs +1307.6153 Algebraic Geometry +1307.6568 Phenomenology +1308.2440 +1309.0169 +1309.0987 Analysis of PDEs +1309.3212 Lattice +1309.5418 Cosmology and Nongalactic Astrophysics +1309.5719 Strongly Correlated Electrons +1309.6171 Materials Science +1309.6987 Statistical Mechanics +1309.7516 Optics +1310.3581 Mesoscale and Nanoscale Physics +1310.3843 Information Theory +1310.6002 +1310.6729 Superconductivity +1310.7328 Earth and Planetary Astrophysics +1310.8273 Statistical Mechanics +1311.1357 Materials Science +1311.2231 Mesoscale and Nanoscale Physics +1311.2529 Number Theory +1311.2634 Information Theory +1311.3140 +1311.4071 Lattice +1311.6295 +1311.7559 Lattice +1312.0181 Phenomenology +1312.0289 +1312.1150 +1312.2348 Strongly Correlated Electrons +1312.2568 Analysis of PDEs +1312.5025 +1312.6114 Machine Learning +1312.6206 Phenomenology +1312.6522 Populations and Evolution +1312.6974 Methodology +1312.7440 High Energy Astrophysical Phenomena +1401.1132 Mesoscale and Nanoscale Physics +1401.1587 Physics and Society +1401.1878 Phenomenology +1401.2253 Cosmology and Nongalactic Astrophysics +1401.3942 Statistical Mechanics +1401.6187 Theory +1402.0893 Strongly Correlated Electrons +1402.2639 Superconductivity +1402.6644 History and Overview +1402.6797 Disordered Systems and Neural Networks +1402.6852 Experiment +1403.1430 Learning +1403.1827 Theory +1403.2763 Databases +1403.5629 Mesoscale and Nanoscale Physics +1403.5839 Earth and Planetary Astrophysics +1403.6673 Instrumentation and Methods for Astrophysics +1403.7470 +1403.7617 Mesoscale and Nanoscale Physics +1403.8053 Plasma Physics +1404.0760 Information Theory +1404.0900 Social and Information Networks +1404.2496 Analysis of PDEs +1404.3253 History and Philosophy of Physics +1404.5053 Methodology +1404.5545 Data Structures and Algorithms +1404.6446 Materials Science +1404.6673 Formal Languages and Automata Theory +1404.6724 Data Structures and Algorithms +1404.7691 Mesoscale and Nanoscale Physics +1404.7694 +1404.7697 Mesoscale and Nanoscale Physics +1405.0001 Optics +1405.0002 Combinatorics +1405.0005 Lattice +1405.0006 Computer Vision and Pattern Recognition +1405.0021 Instrumentation and Detectors +1405.0024 Analysis of PDEs +1405.0028 Probability +1405.0030 Numerical Analysis +1405.0034 Artificial Intelligence +1405.0035 Materials Science +1405.0039 Computers and Society +1405.0041 Populations and Evolution +1405.0045 Combinatorics +1405.0046 Materials Science +1405.0047 Computers and Society +1405.0053 +1405.0054 Artificial Intelligence +1405.0060 Networking and Internet Architecture +1405.0066 Soft Condensed Matter +1405.0072 Combinatorics +1405.0080 Systems and Control +1405.0081 Dynamical Systems +1405.0082 Analysis of PDEs +1405.0084 Metric Geometry +1405.0085 Computer Vision and Pattern Recognition +1405.0086 Information Theory +1405.0087 Discrete Mathematics +1405.0088 Cryptography and Security +1405.0089 Networking and Internet Architecture +1405.0090 Group Theory +1405.0099 Machine Learning +1405.0100 Networking and Internet Architecture +1405.0101 Human-Computer Interaction +1405.0104 Materials Science +1405.0107 Combinatorics +1405.0109 Other Computer Science +1405.0117 Astrophysics of Galaxies +1405.0118 Chemical Physics +1405.0121 Algebraic Geometry +1405.0122 Classical Analysis and ODEs +1405.0126 Information Theory +1405.0129 Mesoscale and Nanoscale Physics +1405.0134 Optimization and Control +1405.0136 Complex Variables +1405.0137 +1405.0138 Probability +1405.0141 Probability +1405.0142 Probability +1405.0144 Optimization and Control +1405.0145 Computation and Language +1405.0146 Functional Analysis +1405.0148 Probability +1405.0153 +1405.0154 Exactly Solvable and Integrable Systems +1405.0158 Analysis of PDEs +1405.0165 Strongly Correlated Electrons +1405.0166 Programming Languages +1405.0167 Classical Analysis and ODEs +1405.0170 Data Structures and Algorithms +1405.0174 Computer Vision and Pattern Recognition +1405.0176 K-Theory and Homology +1405.0183 Fluid Dynamics +1405.0188 Rings and Algebras +1405.0189 Data Structures and Algorithms +1405.0190 Information Retrieval +1405.0192 Geophysics +1405.0193 General Physics +1405.0196 Materials Science +1405.0199 General Physics +1405.0201 Cryptography and Security +1405.0205 Cryptography and Security +1405.0207 Physics and Society +1405.0210 +1405.0214 Rings and Algebras +1405.0218 Analysis of PDEs +1405.0226 Optics +1405.0234 Computer Vision and Pattern Recognition +1405.0235 Probability +1405.0245 Statistical Mechanics +1405.0249 +1405.0250 History and Overview +1405.0255 Combinatorics +1405.0261 Theory +1405.0263 Disordered Systems and Neural Networks +1405.0266 Solar and Stellar Astrophysics +1405.0268 Cosmology and Nongalactic Astrophysics +0905.4085 Physics Education +1004.1645 +1011.0462 Differential Geometry +1103.4177 Information Theory +1103.5009 Analysis of PDEs +1104.4684 Classical Analysis and ODEs +1111.4679 Number Theory +1111.6564 +1205.5058 Geometric Topology +1207.5042 Geometric Topology +1207.6127 Combinatorics +1210.2835 Dynamical Systems +1212.0885 Geometric Topology +1212.6010 Phenomenology +1301.2752 +1302.0449 Optimization and Control +1302.0450 Optimization and Control +1303.6691 Geometric Topology +1304.4811 Information Theory +1304.4821 Information Theory +1304.5530 Optimization and Control +1305.3289 Information Theory +1305.6948 Strongly Correlated Electrons +1306.0962 +1306.2419 Statistics Theory +1306.3694 Mesoscale and Nanoscale Physics +1307.4632 +1307.7874 Operator Algebras +1308.1081 Functional Analysis +1308.2084 Theory +1309.4165 Fluid Dynamics +1309.7780 Optics +1309.7829 Computational Geometry +1310.2035 +1310.4368 Metric Geometry +1310.5167 +1310.7123 Information Theory +1310.8043 Mesoscale and Nanoscale Physics +1311.0884 Phenomenology +1311.3944 Representation Theory +1311.7655 Number Theory +1312.0536 Theory +1312.2895 Experiment +1401.3008 Combinatorics +1401.5256 +1401.6157 Digital Libraries +1402.0401 Group Theory +1402.5450 Robotics +1402.7218 Mesoscale and Nanoscale Physics +1403.4113 Theory +1403.4784 Instrumentation and Detectors +1403.5403 Computer Vision and Pattern Recognition +1403.5851 +1403.7442 Fluid Dynamics +1404.0818 Data Structures and Algorithms +1404.2381 Combinatorics +1404.3507 +1404.6242 Atomic Physics +1405.0534 Cryptography and Security +1405.1351 +1405.3831 Phenomenology +1405.4079 Mathematical Finance +1405.4204 Materials Science +1405.5897 +1405.7456 Logic +1405.7721 Methodology +1406.0503 Strongly Correlated Electrons +1406.2301 Cosmology and Nongalactic Astrophysics +1406.4608 Solar and Stellar Astrophysics +1406.4903 Phenomenology +1406.5474 Statistical Mechanics +1406.6204 Materials Science +1406.6535 Representation Theory +1406.7251 Functional Analysis +1407.0160 Formal Languages and Automata Theory +1407.2869 Complex Variables +1407.3028 Optimization and Control +1407.3229 +1407.3589 Number Theory +1407.3996 +1407.4312 +1407.4995 +1407.5802 Number Theory +1407.7123 Cosmology and Nongalactic Astrophysics +1407.8345 Disordered Systems and Neural Networks +1408.0090 Digital Libraries +1408.0245 Mesoscale and Nanoscale Physics +1408.0705 Methodology +1408.0798 Phenomenology +1408.1761 Earth and Planetary Astrophysics +1408.1781 +1408.2247 Metric Geometry +1408.5158 +1408.5413 Materials Science +1408.6637 Statistical Finance +1409.1033 Phenomenology +1409.1890 Theory +1409.2071 Neurons and Cognition +1409.3516 Phenomenology +1409.3580 Cosmology and Nongalactic Astrophysics +1409.3616 Commutative Algebra +1409.3727 Quantum Gases +1409.3783 Mesoscale and Nanoscale Physics +1409.6444 Methodology +1409.6857 Data Analysis, Statistics and Probability +1409.7206 +1409.7375 Optics +1409.7491 Biological Physics +1409.8082 +1409.8568 Experiment +1410.0662 Plasma Physics +1410.1402 +1410.1556 High Energy Astrophysical Phenomena +1410.2138 +1410.2749 Cosmology and Nongalactic Astrophysics +1410.2842 Mesoscale and Nanoscale Physics +1410.4587 Classical Analysis and ODEs +1410.5241 Phenomenology +1410.5401 Neural and Evolutionary Computing +1410.5485 Computation and Language +1410.6121 Strongly Correlated Electrons +1410.6329 Astrophysics of Galaxies +1410.7873 Mesoscale and Nanoscale Physics +1411.0935 Combinatorics +1411.1163 Phenomenology +1411.1938 General Mathematics +1411.2438 Discrete Mathematics +1411.3128 Learning +1411.3866 Experiment +1411.6084 Algebraic Geometry +1411.6375 Optics +1411.7400 Number Theory +1411.7446 +1412.0148 Pricing of Securities +1412.0200 Theory +1412.0226 Theory +1412.0549 Theory +1412.0721 Networking and Internet Architecture +1412.1671 Databases +1412.1709 Algebraic Topology +1412.1761 Number Theory +1412.1955 +1412.2199 Experiment +1412.2364 Numerical Analysis +1412.2474 General Topology +1412.2498 Accelerator Physics +1412.2787 Data Structures and Algorithms +1412.2880 Computers and Society +1412.3102 Networking and Internet Architecture +1412.3104 Materials Science +1412.3105 Number Theory +1412.3113 Phenomenology +1412.3119 Analysis of PDEs +1412.3126 Statistical Finance +1412.3131 Computers and Society +1412.3136 Distributed, Parallel, and Cluster Computing +1412.3137 Artificial Intelligence +1412.3140 Probability +1412.3142 Instrumentation and Methods for Astrophysics +1412.3143 Optimization and Control +1412.3144 Phenomenology +1412.3145 Instrumentation and Methods for Astrophysics +1412.3147 +1412.3149 Analysis of PDEs +1412.3153 Astrophysics of Galaxies +1412.3156 Probability +1412.3157 Optics +1412.3159 Computer Vision and Pattern Recognition +1412.3161 Computer Vision and Pattern Recognition +1412.3162 Materials Science +1412.3163 Numerical Analysis +1412.3168 Geometric Topology +1412.3169 Optimization and Control +1412.3170 Statistical Mechanics +1412.3172 Solar and Stellar Astrophysics +1412.3175 Lattice +1412.3176 Soft Condensed Matter +1412.3180 Mesoscale and Nanoscale Physics +1412.3181 Number Theory +1412.3182 Combinatorics +1412.3188 Information Theory +1412.3195 Combinatorics +1412.3196 Chemical Physics +1412.3197 Numerical Analysis +1412.3199 Information Theory +1412.3200 Differential Geometry +1412.3201 Exactly Solvable and Integrable Systems +1412.3202 Strongly Correlated Electrons +1412.3206 Instrumentation and Detectors +1412.3211 Mesoscale and Nanoscale Physics +1412.3214 Mesoscale and Nanoscale Physics +1412.3215 Soft Condensed Matter +1412.3219 +1412.3220 Optics +1412.3221 Phenomenology +1412.3230 Methodology +1412.3233 Emerging Technologies +1412.3237 Number Theory +1412.3242 Methodology +1412.3243 Emerging Technologies +1412.3244 Strongly Correlated Electrons +1412.3247 Robotics +1412.3248 K-Theory and Homology +1412.3250 +1412.3261 Statistical Mechanics +1412.3265 Number Theory +1412.3268 Analysis of PDEs +1412.3269 Biological Physics +1412.3271 Logic in Computer Science +1412.3274 Differential Geometry +1412.3275 Dynamical Systems +1412.3276 Learning +1412.3277 Phenomenology +1412.3279 Artificial Intelligence +1412.3284 Information Theory +1412.3285 Number Theory +1412.3289 Software Engineering +1412.3293 Chemical Physics +1412.3295 Category Theory +1412.3296 Materials Science +1412.3297 Machine Learning +1412.3298 Cosmology and Nongalactic Astrophysics +1412.3302 Optimization and Control +1412.3305 Populations and Evolution +1412.3307 Solar and Stellar Astrophysics +1412.3310 Differential Geometry +1412.3316 +1412.3317 +1412.3325 Software Engineering +1412.3329 Mesoscale and Nanoscale Physics +1412.3330 Materials Science +1412.3331 Astrophysics of Galaxies +1412.3333 Data Structures and Algorithms +1412.3334 Computational Complexity +1412.3335 Numerical Analysis +1412.3336 Computation and Language +1412.3338 Materials Science +1412.3339 Theory +1412.3340 Differential Geometry +1412.3343 Functional Analysis +1412.3347 Computational Geometry +1412.3352 Computer Vision and Pattern Recognition +1412.3354 Statistical Mechanics +1412.3355 Functional Analysis +1412.3356 Solar and Stellar Astrophysics +1412.3360 +1412.3365 Representation Theory +1412.3367 Distributed, Parallel, and Cluster Computing +1412.3368 Mesoscale and Nanoscale Physics +1412.3369 Computer Vision and Pattern Recognition +1412.3372 Classical Analysis and ODEs +1412.3374 Computational Geometry +1412.3377 Computational Complexity +1412.3379 Materials Science +1412.3388 Instrumentation and Detectors +1412.3391 Analysis of PDEs +1412.3393 Representation Theory +1412.3396 Chemical Physics +1412.3404 Geometric Topology +1412.3408 Physics Education +1412.3417 K-Theory and Homology +1412.3425 Superconductivity +1412.3433 Geometric Topology +1412.3436 Metric Geometry +1412.3437 +1412.3438 Analysis of PDEs +1412.3439 Optics +1412.3440 Mesoscale and Nanoscale Physics +1412.3441 Tissues and Organs +1412.3443 Phenomenology +hep-th/9407013 Theory +math/0606773 Analysis of PDEs +0709.1133 Statistical Mechanics +0709.3820 Statistical Mechanics +0710.5067 +0803.4153 Atomic Physics +0804.1134 Statistical Mechanics +0804.2891 Statistical Mechanics +0811.1706 +0903.2488 +0905.0518 Dynamical Systems +0908.3504 Atomic Physics +0909.4761 Soft Condensed Matter +0910.1874 Optics +0912.3361 Accelerator Physics +0912.3634 Statistical Mechanics +0912.5299 Algebraic Geometry +1005.0577 Functional Analysis +1005.3779 +1006.1939 Group Theory +1011.2833 +1101.1513 Solar and Stellar Astrophysics +1104.4726 Disordered Systems and Neural Networks +1105.2454 Statistics Theory +1105.4955 Disordered Systems and Neural Networks +1107.1795 Disordered Systems and Neural Networks +1108.0908 Rings and Algebras +1108.2247 Space Physics +1109.4841 +1109.5613 Solar and Stellar Astrophysics +1201.3565 Differential Geometry +1202.3475 Number Theory +1203.4459 Logic +1204.0598 Dynamical Systems +1205.4561 +1205.5901 +1206.3677 +1206.3967 Probability +1206.6934 +1207.0964 Combinatorics +1207.5781 Optimization and Control +1207.6725 Algebraic Topology +1209.1520 Solar and Stellar Astrophysics +1209.4571 Differential Geometry +1210.2129 Classical Analysis and ODEs +1210.6640 +1211.0398 Algebraic Geometry +1211.3241 +1211.6546 Instrumentation and Detectors +1212.0097 Exactly Solvable and Integrable Systems +1212.4243 Fluid Dynamics +1212.4624 Phenomenology +1212.4687 +1212.6576 Logic in Computer Science +1301.3475 +1301.3756 +1301.4121 Combinatorics +1301.4730 Information Theory +1301.6645 Group Theory +1301.6660 Symplectic Geometry +1301.7080 Group Theory +1302.4144 Superconductivity +1302.6061 Number Theory +1303.3983 +1303.4003 Statistical Mechanics +1303.6963 Strongly Correlated Electrons +1304.0775 Instrumentation and Detectors +1304.7569 Probability +1305.1918 Probability +1305.2794 +1305.4125 Neurons and Cognition +1306.0137 Operator Algebras +1306.1450 Theory +1307.1708 Optimization and Control +1307.4203 Classical Analysis and ODEs +1307.6102 Other Computer Science +1307.7679 Mesoscale and Nanoscale Physics +1308.0710 Differential Geometry +1308.1052 +1308.3254 +1308.4955 Phenomenology +1308.5417 Differential Geometry +1308.6113 Superconductivity +1309.0546 Theory +1309.1243 Disordered Systems and Neural Networks +1309.1288 Mesoscale and Nanoscale Physics +1309.3512 Other Computer Science +1309.7240 Number Theory +1310.0787 Solar and Stellar Astrophysics +1310.1496 Probability +1310.3332 Combinatorics +1311.4375 +1311.4490 Group Theory +1311.5045 Mesoscale and Nanoscale Physics +1311.5552 Social and Information Networks +1311.7144 +1312.1319 +1312.1805 Physics Education +1312.2528 +1312.2734 Numerical Analysis +1312.3071 Superconductivity +1312.3942 +1312.5848 +1401.0051 Soft Condensed Matter +1401.0197 Cosmology and Nongalactic Astrophysics +1401.0269 Symplectic Geometry +1401.7580 Phenomenology +1402.3280 Operator Algebras +1402.4824 Neurons and Cognition +1402.5161 Artificial Intelligence +1402.5698 Theory +1402.6009 Mesoscale and Nanoscale Physics +1402.6982 +1402.7182 Plasma Physics +1402.7187 Mesoscale and Nanoscale Physics +1402.7288 +1403.0434 Theory +1403.0520 Strongly Correlated Electrons +1403.5303 Algebraic Topology +1403.5667 +1403.6243 +1403.6486 Mesoscale and Nanoscale Physics +1403.6746 +1403.7486 Genomics +1404.0270 Biomolecules +1404.0758 Functional Analysis +1404.1541 Commutative Algebra +1404.2002 Analysis of PDEs +1404.2360 Mesoscale and Nanoscale Physics +1404.3605 Data Analysis, Statistics and Probability +1404.3751 Phenomenology +1404.4395 Optics +1404.4406 Materials Science +1404.6209 Theory +1404.6289 Methodology +1404.6739 Group Theory +1405.0860 Logic +1405.2142 Mesoscale and Nanoscale Physics +1405.2865 Theory +1405.3141 Theory +1405.3565 +1405.3782 Experiment +1405.4254 Experiment +1405.5151 +1405.6119 Phenomenology +1405.6826 Theory +1405.7324 +1406.0203 +1406.0800 Theory +1406.1420 Earth and Planetary Astrophysics +1406.1768 Differential Geometry +1406.2867 Combinatorics +1406.5603 Superconductivity +1406.6263 Phenomenology +1406.7202 Disordered Systems and Neural Networks +1406.7332 Strongly Correlated Electrons +1407.0085 +1407.0311 Mesoscale and Nanoscale Physics +1407.1217 Quantum Gases +1407.1805 Solar and Stellar Astrophysics +1407.3439 Analysis of PDEs +1407.4848 Materials Science +1407.5092 Combinatorics +1407.5579 Optics +1407.5648 Software Engineering +1407.5990 History and Philosophy of Physics +1407.6043 Probability +1407.6149 Combinatorics +1407.6758 Mesoscale and Nanoscale Physics +1408.0154 Theory +1408.0870 Solar and Stellar Astrophysics +1408.1798 +1408.4517 +1408.4607 Superconductivity +1408.4697 +1408.5160 +1408.5860 Statistical Mechanics +1408.6304 Materials Science +1408.6422 Numerical Analysis +1408.6636 Materials Science +1408.6926 Human-Computer Interaction +1409.0066 Superconductivity +1409.0105 +1409.0121 Information Theory +1409.0417 Earth and Planetary Astrophysics +1409.0776 Optimization and Control +1409.0913 Mesoscale and Nanoscale Physics +1409.1047 Geophysics +1409.1122 Information Theory +1409.1320 Machine Learning +1409.1336 Logic +1409.1394 +1409.1498 Classical Analysis and ODEs +1409.1756 Strongly Correlated Electrons +1409.1831 Computers and Society +1409.1834 Number Theory +1409.1916 Astrophysics of Galaxies +1409.1917 Learning +1409.1924 Astrophysics of Galaxies +1409.1928 Medical Physics +1409.1929 Instrumentation and Methods for Astrophysics +1409.1935 Numerical Analysis +1409.1936 Accelerator Physics +1409.1938 Medical Physics +1409.1939 Instrumentation and Detectors +1409.1940 Accelerator Physics +1409.1943 Molecular Networks +1409.1944 Molecular Networks +1409.1946 Populations and Evolution +1409.1947 Experiment +1409.1949 Number Theory +1409.1950 Analysis of PDEs +1409.1951 Functional Analysis +1409.1954 Probability +1409.1956 Applications +1409.1958 Functional Analysis +1409.1961 Accelerator Physics +1409.1965 Medical Physics +1409.1966 Lattice +1409.1968 Functional Analysis +1409.1969 Materials Science +1409.1970 Combinatorics +1409.1971 Mesoscale and Nanoscale Physics +1409.1973 Molecular Networks +1409.1974 Molecular Networks +1409.1975 Molecular Networks +1409.1976 Machine Learning +1409.1980 Information Theory +1409.1981 Human-Computer Interaction +1409.1987 Discrete Mathematics +1409.1989 Software Engineering +1409.1991 Differential Geometry +1409.1998 Soft Condensed Matter +1409.1999 Optimization and Control +1409.2000 +1409.2001 Differential Geometry +1409.2002 Social and Information Networks +1409.2003 Formal Languages and Automata Theory +1409.2010 Phenomenology +1409.2012 Materials Science +1409.2015 Optimization and Control +1409.2016 Probability +1409.2017 Systems and Control +1409.2018 Optimization and Control +1409.2019 Information Theory +1409.2023 Portfolio Management +1409.2025 Representation Theory +1409.2026 Algebraic Geometry +1409.2029 Algebraic Geometry +1409.2030 Numerical Analysis +1409.2031 Populations and Evolution +1409.2032 Chemical Physics +1409.2038 Combinatorics +1409.2039 Combinatorics +1409.2042 Information Retrieval +1409.2045 Optimization and Control +1409.2048 +1409.2054 Representation Theory +1409.2056 Numerical Analysis +1409.2057 Combinatorics +1409.2059 Classical Analysis and ODEs +1409.2060 Statistical Mechanics +1409.2061 +1409.2062 Atmospheric and Oceanic Physics +1409.2063 Spectral Theory +1409.2064 Networking and Internet Architecture +1409.2065 Genomics +1409.2069 Geometric Topology +1409.2070 Metric Geometry +1409.2073 Computation and Language +1409.2074 Classical Analysis and ODEs +1409.2075 Strongly Correlated Electrons +1409.2076 Mesoscale and Nanoscale Physics +1409.2078 Probability +1409.2081 Graphics +1409.2082 Phenomenology +1409.2084 Solar and Stellar Astrophysics +1409.2085 Probability +1409.2087 Optimization and Control +1409.2088 Programming Languages +1409.2089 Programming Languages +1409.2090 Statistics Theory +1409.2092 Chaotic Dynamics +1409.2098 Probability +1409.2100 Information Theory +1409.2102 Analysis of PDEs +1409.2103 Materials Science +1409.2111 Geometric Topology +1409.2112 Cryptography and Security +1409.2113 Soft Condensed Matter +1409.2117 Combinatorics +1409.2118 Differential Geometry +1409.2119 Systems and Control +1409.2128 +1409.2133 Probability +1409.2135 Commutative Algebra +1409.2138 Data Structures and Algorithms +1409.2139 Data Structures and Algorithms +1409.2143 Functional Analysis +1409.2144 Quantum Algebra +1409.2146 +1409.2148 Category Theory +1409.2150 +1409.2151 Number Theory +1409.2152 Soft Condensed Matter +1409.2154 Analysis of PDEs +1409.2161 Functional Analysis +1409.2162 Analysis of PDEs +1409.2164 +1409.2165 Category Theory +1409.2166 Dynamical Systems +1409.2172 Discrete Mathematics +1409.2176 General Physics +1409.2177 Learning +1409.2178 Materials Science +1409.2182 Neurons and Cognition +1409.2187 +1409.2188 Optics +1409.2193 Logic in Computer Science +1409.2194 Optics +1409.2196 Differential Geometry +1409.2197 Analysis of PDEs +1409.2201 Optimization and Control +1409.2207 Neurons and Cognition +1409.2208 Human-Computer Interaction +1409.2209 Materials Science +1409.2214 Statistical Finance +1409.2215 Materials Science +1409.2216 Number Theory +1409.2218 Number Theory +1409.2219 Number Theory +1409.2221 Methodology +1409.2222 Computers and Society +1409.2223 Software Engineering +1409.2227 Materials Science +1409.2228 +1409.2229 Differential Geometry +1409.2243 Solar and Stellar Astrophysics +1409.2246 Networking and Internet Architecture +1409.2248 Cryptography and Security +1409.2255 Computers and Society +1409.2261 Cryptography and Security +1409.2262 Statistics Theory +1409.2264 Computers and Society +1409.2283 Solar and Stellar Astrophysics +1409.2284 Complex Variables +1409.2287 Machine Learning +1409.2289 Analysis of PDEs +1409.2292 Group Theory +1409.2294 Logic in Computer Science +1409.2299 Populations and Evolution +1409.2303 Information Theory +1409.2304 Software Engineering +1409.2306 Software Engineering +1409.2307 Software Engineering +1409.2309 Software Engineering +1409.2310 Software Engineering +1409.2311 Software Engineering +1409.2313 Software Engineering +1409.2314 Software Engineering +1409.2315 Software Engineering +1409.2317 Software Engineering +1409.2318 Software Engineering +1409.2319 Commutative Algebra +1409.2323 Materials Science +1409.2325 Algebraic Geometry +1409.2327 +1409.2331 Molecular Networks +1409.2333 Spectral Theory +1409.2337 Experiment +1409.2339 Probability +1409.2352 Software Engineering +1409.2353 Software Engineering +1409.2355 Software Engineering +1409.2356 Software Engineering +1409.2357 Number Theory +1409.2358 Software Engineering +1409.2359 Software Engineering +1409.2361 Software Engineering +1409.2364 Software Engineering +1409.2365 Digital Libraries +1409.2366 Software Engineering +1409.2367 Software Engineering +1409.2368 Software Engineering +1409.2370 Information Theory +1409.2373 Software Engineering +1409.2375 Software Engineering +1409.2376 Software Engineering +1409.2377 Software Engineering +1409.2378 Software Engineering +1409.2380 Software Engineering +1409.2381 Analysis of PDEs +1409.2389 Optimization and Control +1409.2390 Neural and Evolutionary Computing +1409.2391 Data Structures and Algorithms +1409.2395 Soft Condensed Matter +1409.2396 Functional Analysis +1409.2398 Computational Complexity +1409.2399 Robotics +1409.2400 Materials Science +1409.2403 Chemical Physics +1409.2406 Materials Science +1409.2408 Logic in Computer Science +1409.2413 Computer Vision and Pattern Recognition +1409.2418 +1409.2426 Combinatorics +1409.2429 +1409.2430 Biological Physics +1409.2433 Computation and Language +1409.2438 Phenomenology +1409.2440 Combinatorics +1409.2443 Differential Geometry +1409.2445 Commutative Algebra +1409.2446 Number Theory +1409.2447 General Physics +1409.2450 Social and Information Networks +1409.2454 +1409.2455 Numerical Analysis +1409.2463 Number Theory +1409.2466 Numerical Analysis +1409.2467 Logic +1409.2469 Combinatorics +1409.2473 Solar and Stellar Astrophysics +1409.2474 Astrophysics of Galaxies +1409.2475 Networking and Internet Architecture +1409.2479 Instrumentation and Detectors +physics/0512016 Atomic Physics +0802.3385 Materials Science +0804.1542 Geometric Topology +1002.3260 Numerical Analysis +1007.2932 Geometric Topology +1007.4187 Superconductivity +1012.3425 Operator Algebras +1105.0214 Physics and Society +1105.5862 Strongly Correlated Electrons +1107.4595 Number Theory +1108.6014 Metric Geometry +1110.3412 General Physics +1111.7218 Probability +1112.2129 Dynamical Systems +1201.0646 Computation +1201.0978 Group Theory +1201.2956 Logic in Computer Science +1201.3784 Algebraic Geometry +1201.3785 Algebraic Geometry +1201.4823 Algebraic Topology +1203.1833 Computers and Society +1203.6891 Algebraic Topology +1204.0044 Rings and Algebras +1204.0957 Computational Complexity +1204.5546 Probability +1205.2734 +1205.6207 Phenomenology +1206.6214 Physics and Society +1207.4884 Combinatorics +1207.7145 Materials Science +1208.2774 Superconductivity +1209.5713 Chaotic Dynamics +1209.5719 Geometric Topology +1211.0748 Instrumentation and Methods for Astrophysics +1211.2190 Learning +1211.3786 Probability +1212.1707 Information Theory +1212.3310 Phenomenology +1301.4722 Operator Algebras +1301.6820 Combinatorics +1301.6854 Quantitative Methods +1302.0932 +1302.2448 Computational Physics +1302.2683 Optics +1302.4816 Strongly Correlated Electrons +1302.6469 Mesoscale and Nanoscale Physics +1302.7249 Dynamical Systems +1303.2501 +1303.4874 +1303.6339 +1303.7272 Quantum Gases +1304.3788 Numerical Analysis +1304.4569 Strongly Correlated Electrons +1304.6114 Classical Analysis and ODEs +1304.6458 +1304.7522 Group Theory +1304.7699 +1305.0407 Group Theory +1305.0948 Computational Complexity +1305.2887 Mesoscale and Nanoscale Physics +1305.3319 Probability +1305.3355 Representation Theory +1305.4416 Number Theory +1305.7165 Soft Condensed Matter +1305.7436 +1306.0240 Metric Geometry +1306.2116 Applications +1306.2182 Discrete Mathematics +1306.3223 Strongly Correlated Electrons +1306.3595 Probability +1306.5274 Cosmology and Nongalactic Astrophysics +1306.6184 +1306.6361 Chaotic Dynamics +1306.6438 Information Theory +1306.6526 Programming Languages +1307.1172 Materials Science +1307.1816 Materials Science +1307.2556 Number Theory +1307.2648 Materials Science +1307.5785 Dynamical Systems +1307.7305 Physics and Society +1307.7519 Combinatorics +1307.7757 Computational Engineering, Finance, and Science +1307.8180 Disordered Systems and Neural Networks +1308.0712 +1308.1399 Cosmology and Nongalactic Astrophysics +1308.2399 Dynamical Systems +1308.2897 +1308.3397 Optimization and Control +1308.3862 Metric Geometry +1308.5098 +1308.6603 Theory +1308.6832 Experiment +1309.1964 Physics and Society +1309.2229 +1309.3126 Multiagent Systems +1309.3271 Instrumentation and Methods for Astrophysics +1309.4924 Cosmology and Nongalactic Astrophysics +1309.5552 Physics and Society +1310.0720 Computer Science and Game Theory +1310.1446 Statistical Finance +1310.1796 Functional Analysis +1310.2224 Mesoscale and Nanoscale Physics +1310.2381 Information Theory +1310.3663 Algebraic Geometry +1310.8509 Information Theory +1311.0857 +1311.1023 Numerical Analysis +1311.1327 Probability +1311.1807 Strongly Correlated Electrons +1311.2030 Mesoscale and Nanoscale Physics +1311.2061 Theory +1311.2494 Genomics +1311.2972 Machine Learning +1311.3056 Geometric Topology +1311.6101 +1311.6717 Quantitative Methods +1311.7545 Plasma Physics +1312.0111 +1312.0711 Molecular Networks +1312.1054 Data Structures and Algorithms +1312.1799 Information Theory +1312.1966 Phenomenology +1312.2032 Theory +1312.2848 Spectral Theory +1312.3300 Numerical Analysis +1312.4118 Theory +1312.4532 +1312.5083 Cosmology and Nongalactic Astrophysics +1312.5425 Mesoscale and Nanoscale Physics +1312.5510 Theory +1312.6503 Discrete Mathematics +1312.7608 Metric Geometry +1401.0667 Mesoscale and Nanoscale Physics +1401.1096 +1401.1491 Chemical Physics +1401.1512 Chemical Physics +1401.1575 +1401.2016 Populations and Evolution +1401.2815 Physics and Society +1401.3111 Pattern Formation and Solitons +1401.3719 Strongly Correlated Electrons +1401.4029 Quantum Gases +1401.4055 Genomics +1401.4315 +1401.4376 Materials Science +1401.4450 Strongly Correlated Electrons +1401.4495 +1401.4652 Atmospheric and Oceanic Physics +1401.4953 Symbolic Computation +1401.6503 +1401.6631 Materials Science +1401.6654 Metric Geometry +1402.0040 Mesoscale and Nanoscale Physics +1402.0562 Machine Learning +1402.0923 Experiment +1402.2112 Superconductivity +1402.2284 Instrumentation and Detectors +1402.2339 Combinatorics +1402.2847 Differential Geometry +1402.3729 Complex Variables +1402.3746 Complex Variables +1402.3769 Cosmology and Nongalactic Astrophysics +1402.3819 Analysis of PDEs +1402.4210 +1402.4963 Computer Vision and Pattern Recognition +1402.6360 +1402.6790 Solar and Stellar Astrophysics +1402.7206 Superconductivity +1403.0351 Pattern Formation and Solitons +1403.0834 Superconductivity +1403.0910 Geometric Topology +1403.1679 Instrumentation and Detectors +1403.1895 Earth and Planetary Astrophysics +1403.1947 Superconductivity +1403.2364 Biological Physics +1403.2383 Phenomenology +1403.2993 Instrumentation and Methods for Astrophysics +1403.5649 Theory +1403.6194 Theory +1403.6404 Algebraic Geometry +1403.6768 Cosmology and Nongalactic Astrophysics +1403.8007 Materials Science +1404.0269 Physics and Society +1404.1824 Optics +1404.2052 +1404.2440 Phenomenology +1404.2961 Methodology +1404.3021 Atomic Physics +1404.4095 Machine Learning +1404.4908 Superconductivity +1404.5463 Solar and Stellar Astrophysics +1404.6281 Information Theory +1404.6572 Statistics Theory +1404.6852 +1404.7565 Software Engineering +1405.0083 Phenomenology +1405.0386 Logic in Computer Science +1405.0524 Computer Science and Game Theory +1405.1061 Classical Physics +1405.1479 Mesoscale and Nanoscale Physics +1405.1630 Systems and Control +1405.2397 +1405.2776 Cosmology and Nongalactic Astrophysics +1405.2777 Number Theory +1405.2870 Probability +1405.2900 General Mathematics +1405.3124 Dynamical Systems +1405.3319 Computation +1405.3389 Strongly Correlated Electrons +1405.3825 Symplectic Geometry +1405.4043 Differential Geometry +1405.4046 Differential Geometry +1405.4076 Materials Science +1405.4301 Physics and Society +1405.4302 Plasma Physics +1405.4303 Instrumentation and Methods for Astrophysics +1405.4305 Pattern Formation and Solitons +1405.4308 Computer Vision and Pattern Recognition +1405.4309 Plasma Physics +1405.4317 Commutative Algebra +1405.4319 Mesoscale and Nanoscale Physics +1405.4322 Neural and Evolutionary Computing +1405.4323 Computation +1405.4324 Learning +1405.4330 Accelerator Physics +1405.4332 Social and Information Networks +1405.4333 Rings and Algebras +1405.4334 Materials Science +1405.4335 Information Theory +1405.4339 Analysis of PDEs +1405.4340 +1405.4343 Optics +1405.4354 Human-Computer Interaction +1405.4358 Statistics Theory +1405.4360 Materials Science +1405.4361 Accelerator Physics +1405.4364 Computation and Language +1405.4375 Information Theory +1405.4377 +1405.4383 Classical Analysis and ODEs +1405.4384 Classical Analysis and ODEs +1405.4385 Soft Condensed Matter +1405.4387 Classical Analysis and ODEs +1405.4389 Computer Vision and Pattern Recognition +1405.4390 Computer Vision and Pattern Recognition +1405.4392 Computation and Language +1405.4394 Learning +1405.4395 Information Theory +1405.4397 Representation Theory +1405.4399 Software Engineering +1405.4401 Programming Languages +1405.4404 +1405.4405 Probability +1405.4410 Analysis of PDEs +1405.4413 Logic in Computer Science +1405.4415 High Energy Astrophysical Phenomena +1405.4416 Probability +1405.4418 History and Overview +1405.4420 Biological Physics +1405.4423 Learning +1405.4425 +1405.4427 Operator Algebras +1405.4428 +1405.4431 Populations and Evolution +1405.4432 Optics +1405.4433 Computation and Language +1405.4436 Algebraic Topology +1405.4437 +1405.4438 Probability +1405.4442 Phenomenology +1405.4445 Number Theory +1405.4446 +1405.4447 Dynamical Systems +1405.4450 Robotics +1405.4452 Analysis of PDEs +1405.4453 Commutative Algebra +1405.4454 Optimization and Control +1405.4455 Operator Algebras +1405.4458 Geometric Topology +1405.4459 Information Theory +1405.4460 High Energy Astrophysical Phenomena +1405.4461 Analysis of PDEs +1405.4462 +1405.4465 Differential Geometry +1405.4471 Learning +1405.4476 Group Theory +1405.4478 Quantum Algebra +1405.4481 Logic +1405.4482 Geophysics +1405.4484 Logic +1405.4485 Logic +1405.4488 Logic +1405.4492 Numerical Analysis +1405.4498 Economics +1405.4504 Statistics Theory +1405.4505 Rings and Algebras +1405.4506 Computer Vision and Pattern Recognition +1405.4507 Neural and Evolutionary Computing +1405.4509 Numerical Analysis +1405.4510 Neural and Evolutionary Computing +1405.4511 Strongly Correlated Electrons +1405.4512 Strongly Correlated Electrons +1405.4518 Differential Geometry +1405.4521 Mesoscale and Nanoscale Physics +1405.4526 Optimization and Control +1405.4527 Number Theory +1405.4529 Statistics Theory +1405.4532 Statistics Theory +1405.4534 Data Structures and Algorithms +1405.4535 Information Theory +1405.4536 General Topology +1405.4537 Probability +1405.4543 Learning +1405.4548 Algebraic Geometry +1405.4550 Analysis of PDEs +1405.4552 Rings and Algebras +1405.4557 Earth and Planetary Astrophysics +1405.4558 +1405.4571 Information Theory +1405.4572 Information Theory +1405.4575 Quantum Algebra +1405.4576 Earth and Planetary Astrophysics +1405.4580 Popular Physics +1405.4582 Analysis of PDEs +1405.4583 Computer Vision and Pattern Recognition +1405.4590 Number Theory +1405.4592 Information Theory +1405.4597 Other Computer Science +1405.4598 High Energy Astrophysical Phenomena +1405.4599 Computation and Language +1405.4602 Rings and Algebras +1405.4603 Rings and Algebras +1405.4605 Materials Science +1405.4612 Analysis of PDEs +1405.4614 +1405.4616 Analysis of PDEs +1405.4618 Distributed, Parallel, and Cluster Computing +1405.4619 Superconductivity +1405.4620 Materials Science +1405.4624 Geometric Topology +1405.4636 High Energy Astrophysical Phenomena +1405.4637 Methodology +1405.4640 Experiment +1405.4642 Information Theory +1405.4643 Algebraic Geometry +1405.4644 Mathematical Software +1405.4648 Solar and Stellar Astrophysics +1405.4649 +1405.4651 Astrophysics of Galaxies +1405.4652 Astrophysics of Galaxies +1405.4655 +1405.4656 Analysis of PDEs +1405.4657 Information Theory +1405.4661 Analysis of PDEs +1405.4664 Phenomenology +1405.4667 Methodology +1405.4672 Algebraic Topology +1405.4674 Classical Analysis and ODEs +1405.4675 Superconductivity +1405.4679 Methodology +1405.4680 Materials Science +1405.4681 Systems and Control +1405.4682 Methodology +1405.4686 Group Theory +1405.4687 Methodology +1405.4692 Methodology +1405.4696 Methodology +1405.4699 Distributed, Parallel, and Cluster Computing +1405.4701 Instrumentation and Methods for Astrophysics +1405.4703 +1405.4704 Phenomenology +1405.4705 +1405.4708 Methodology +1405.4709 Multimedia +1405.4712 Classical Analysis and ODEs +1405.4714 Solar and Stellar Astrophysics +1405.4715 Numerical Analysis +1405.4720 Methodology +1405.4721 Multimedia +1405.4730 Experiment +1405.4734 Graphics +1405.4736 Optics +1405.4740 Computational Geometry +1405.4742 Optics +1405.4743 Materials Science +1405.4744 Probability +1405.4746 Analysis of PDEs +1405.4753 Algebraic Geometry +1405.4755 Number Theory +1405.4758 Learning +1405.4764 Networking and Internet Architecture +1405.4766 Numerical Analysis +1405.4770 Number Theory +1405.4775 Materials Science +1405.4779 Symbolic Computation +1405.4781 Phenomenology +1405.4782 Probability +1405.4784 General Mathematics +1405.4790 Strongly Correlated Electrons +1405.4791 +1405.4795 Metric Geometry +1405.4796 Cosmology and Nongalactic Astrophysics +1405.4798 Commutative Algebra +1405.4799 Soft Condensed Matter +1405.4801 Methodology +1405.4803 High Energy Astrophysical Phenomena +1405.4804 Geophysics +1405.4808 High Energy Astrophysical Phenomena +1405.4809 Functional Analysis +1405.4816 Number Theory +1405.4820 Social and Information Networks +1405.4822 Functional Analysis +1405.4824 Software Engineering +1405.4828 Cryptography and Security +1405.4830 Complex Variables +1405.4836 Differential Geometry +1405.4841 Formal Languages and Automata Theory +1405.4843 Sound +1405.4846 Statistics Theory +1405.4850 Medical Physics +math/0412307 Geometric Topology +nlin/0611006 Exactly Solvable and Integrable Systems +0806.1866 +0811.3563 Strongly Correlated Electrons +0811.3746 Strongly Correlated Electrons +0908.2191 Metric Geometry +1101.2995 Complex Variables +1107.0856 +1108.6099 Mesoscale and Nanoscale Physics +1112.4565 Statistics Theory +1203.0996 Combinatorics +1203.5296 Classical Analysis and ODEs +1205.2118 Information Theory +1205.3268 Representation Theory +1208.2558 Biological Physics +1210.6215 Theory +1210.7974 Instrumentation and Methods for Astrophysics +1211.3699 Probability +1212.0240 Multiagent Systems +1212.5517 Methodology +1301.4022 Algebraic Geometry +1302.5431 Strongly Correlated Electrons +1303.0152 Systems and Control +1303.6734 Accelerator Physics +1304.0699 Metric Geometry +1304.0703 Functional Analysis +1304.3793 Instrumentation and Detectors +1304.7204 Logic in Computer Science +1305.5627 Strongly Correlated Electrons +1307.0558 High Energy Astrophysical Phenomena +1307.3733 Geometric Topology +1307.5753 Probability +1308.3369 +1308.4881 Complex Variables +1309.2432 Probability +1309.3535 Neurons and Cognition +1309.5528 Cosmology and Nongalactic Astrophysics +1309.5855 Theory +1309.6783 Cosmology and Nongalactic Astrophysics +1310.4767 General Physics +1310.4873 +1310.5047 Physics and Society +1311.0214 +1311.0297 General Topology +1311.1751 +1311.4147 Combinatorics +1311.6669 Lattice +1311.7498 Theory +1312.0548 Classical Physics +1312.2977 +1312.3488 Phenomenology +1312.3661 Probability +1312.5894 Probability +1312.6267 Algebraic Geometry +1401.2831 Experiment +1401.5623 Materials Science +1401.6154 Phenomenology +1401.6657 Phenomenology +1402.5134 Theory +1402.6342 Mesoscale and Nanoscale Physics +1403.1290 Phenomenology +1403.2369 Cosmology and Nongalactic Astrophysics +1403.3878 Materials Science +1403.4649 +1403.5651 Phenomenology +1403.5780 Quantum Gases +1403.6289 Superconductivity +1403.6597 Astrophysics of Galaxies +1403.6687 Theory +1403.6688 Cosmology and Nongalactic Astrophysics +1403.6885 Materials Science +1403.8082 Chaotic Dynamics +1404.0697 Combinatorics +1404.0726 +1404.1181 Chemical Physics +1404.1312 Information Theory +1404.1410 Atomic Physics +1404.1789 Other Statistics +1404.1819 +1404.2856 Theory +1404.3478 Biological Physics +1404.3683 Cosmology and Nongalactic Astrophysics +1404.5688 +1404.5774 Disordered Systems and Neural Networks +1404.5828 Robotics +1404.5831 Mesoscale and Nanoscale Physics +1404.7807 Data Analysis, Statistics and Probability +1405.0433 Lattice +1405.1056 Earth and Planetary Astrophysics +1405.2410 Optics +1405.2441 Combinatorics +1405.3399 Quantum Gases +1405.4227 Combinatorics +1405.4352 Quantum Gases +1405.4891 Combinatorics +1405.5089 Theory +1405.5688 Cosmology and Nongalactic Astrophysics +1405.6241 Experiment +1405.6264 Cosmology and Nongalactic Astrophysics +1405.6801 Superconductivity +1405.6805 Statistics Theory +1405.6915 Experiment +1405.7615 Systems and Control +1406.0127 Theory +1406.0275 Strongly Correlated Electrons +1406.0345 Statistics Theory +1406.0694 Earth and Planetary Astrophysics +1406.1110 Quantum Gases +1406.2937 Theory +1406.3236 Experiment +1406.3259 Strongly Correlated Electrons +1406.4039 +1406.4176 Complex Variables +1406.4245 +1406.4586 Phenomenology +1406.5100 Mesoscale and Nanoscale Physics +1406.5112 +1406.5192 Theory +1406.5931 +1406.5984 +1406.6097 +1406.6258 Mesoscale and Nanoscale Physics +1406.6372 Phenomenology +1406.6597 Social and Information Networks +1406.6611 Social and Information Networks +1406.7832 Strongly Correlated Electrons +1407.0309 Soft Condensed Matter +1407.0371 Experiment +1407.1555 Mesoscale and Nanoscale Physics +1407.1888 Mesoscale and Nanoscale Physics +1407.1944 Information Theory +1407.2215 Astrophysics of Galaxies +1407.2224 +1407.2546 Phenomenology +1407.3080 +1407.3223 Mesoscale and Nanoscale Physics +1407.3853 Phenomenology +1407.4092 Soft Condensed Matter +1407.4664 Instrumentation and Methods for Astrophysics +1407.4757 Theory +1407.4986 Astrophysics of Galaxies +1407.5383 Information Theory +1407.5458 Atomic Physics +1407.5464 +1407.5471 Astrophysics of Galaxies +1407.5642 Quantum Gases +1407.6369 Experiment +1407.6583 Experiment +1407.6719 Cosmology and Nongalactic Astrophysics +1407.6765 Solar and Stellar Astrophysics +1407.7099 Soft Condensed Matter +1407.7647 Phenomenology +1407.7985 Phenomenology +1407.8128 Group Theory +1407.8193 Phenomenology +1408.0188 Quantum Gases +1408.0302 Adaptation and Self-Organizing Systems +1408.0351 Cosmology and Nongalactic Astrophysics +1408.0411 Solar and Stellar Astrophysics +1408.0432 Solar and Stellar Astrophysics +1408.0663 Phenomenology +1408.0796 Phenomenology +1408.0869 Algebraic Geometry +1408.0887 Earth and Planetary Astrophysics +1408.0897 Lattice +1408.0910 Physics and Society +1408.1016 Earth and Planetary Astrophysics +1408.1195 Experiment +1408.1599 Phenomenology +1408.1696 High Energy Astrophysical Phenomena +1408.1872 Cosmology and Nongalactic Astrophysics +1408.2223 Phenomenology +1408.2518 Theory +1408.2605 Soft Condensed Matter +1408.3000 Solar and Stellar Astrophysics +1408.3409 Solar and Stellar Astrophysics +1408.3451 Materials Science +1408.3533 Phenomenology +1408.3885 Theory +1408.4444 Probability +1408.5011 Solar and Stellar Astrophysics +1408.5424 Solar and Stellar Astrophysics +1408.5538 +1408.5669 +1408.5753 Astrophysics of Galaxies +1408.5941 Statistical Mechanics +1408.6770 High Energy Astrophysical Phenomena +1409.0396 Solar and Stellar Astrophysics +1409.1377 Solar and Stellar Astrophysics +1409.1588 Phenomenology +1409.2021 High Energy Astrophysical Phenomena +1409.2258 Instrumentation and Methods for Astrophysics +1409.2324 Optimization and Control +1409.2542 High Energy Astrophysical Phenomena +1409.3055 Astrophysics of Galaxies +1409.3086 Astrophysics of Galaxies +1409.3484 Algebraic Geometry +1409.3777 +1409.3967 Experiment +1409.4216 Solar and Stellar Astrophysics +1409.4288 Experiment +1409.4311 Phenomenology +1409.4357 Solar and Stellar Astrophysics +1409.5234 Solar and Stellar Astrophysics +1409.5357 Solar and Stellar Astrophysics +1409.5358 Theory +1409.5409 Cosmology and Nongalactic Astrophysics +1409.5795 Astrophysics of Galaxies +1409.6251 Quantum Gases +1409.6653 Solar and Stellar Astrophysics +1409.6842 Chemical Physics +1409.7110 Astrophysics of Galaxies +1409.7431 Chemical Physics +1409.7667 Mesoscale and Nanoscale Physics +1409.7685 Probability +1410.0026 +1410.0055 Phenomenology +1410.1302 +1410.1705 Statistical Mechanics +1410.2127 History and Philosophy of Physics +1410.2164 Combinatorics +1410.2457 Applications +1410.2960 Information Theory +1410.3367 Phenomenology +1410.3762 Experiment +1410.3972 Populations and Evolution +1410.4296 Networking and Internet Architecture +1410.4723 Methodology +1410.4861 +1410.4956 Programming Languages +1410.4965 Classical Analysis and ODEs +1410.5076 Multiagent Systems +1410.5137 Learning +1410.5149 Quantum Algebra +1410.5195 Computational Physics +1410.5267 Instrumentation and Detectors +1410.5271 Group Theory +1410.5294 Number Theory +1410.5413 General Mathematics +1410.5415 Data Structures and Algorithms +1410.5416 Software Engineering +1410.5418 +1410.5419 Numerical Analysis +1410.5441 +1410.5450 Algebraic Geometry +1410.5452 Popular Physics +1410.5461 Analysis of PDEs +1410.5462 Phenomenology +1410.5467 Logic in Computer Science +1410.5474 Chaotic Dynamics +1410.5476 Logic in Computer Science +1410.5480 Phenomenology +1410.5483 Soft Condensed Matter +1410.5486 Combinatorics +1410.5491 Computation and Language +1410.5492 Dynamical Systems +1410.5498 Numerical Analysis +1410.5503 Algebraic Geometry +1410.5504 Astrophysics of Galaxies +1410.5505 Functional Analysis +1410.5509 Information Theory +1410.5510 Information Theory +1410.5511 Computational Physics +1410.5514 Classical Analysis and ODEs +1410.5517 Number Theory +1410.5519 Number Theory +1410.5520 Mesoscale and Nanoscale Physics +1410.5521 Instrumentation and Detectors +1410.5522 Machine Learning +1410.5524 Computer Vision and Pattern Recognition +1410.5525 Soft Condensed Matter +1410.5531 Geometric Topology +1410.5532 Instrumentation and Detectors +1410.5533 +1410.5536 +1410.5537 Classical Physics +1410.5539 Optics +1410.5545 Operator Algebras +1410.5551 Geometric Topology +1410.5555 Computational Complexity +1410.5557 Learning +1410.5559 Numerical Analysis +1410.5560 Instrumentation and Methods for Astrophysics +1410.5561 Performance +1410.5565 Phenomenology +1410.5566 Phenomenology +1410.5571 Optics +1410.5577 Differential Geometry +1410.5583 Logic +1410.5586 Accelerator Physics +1410.5589 Soft Condensed Matter +1410.5590 Combinatorics +1410.5592 +1410.5594 +1410.5600 Computer Vision and Pattern Recognition +1410.5601 Probability +1410.5602 Computational Geometry +1410.5604 Information Theory +1410.5607 Data Structures and Algorithms +1410.5611 Commutative Algebra +1410.5613 Optics +1410.5614 Software Engineering +1410.5621 Portfolio Management +1410.5622 Numerical Analysis +1410.5623 Accelerator Physics +1410.5627 Accelerator Physics +1410.5630 Computational Physics +1410.5646 Accelerator Physics +1410.5647 Theory +1410.5652 Neural and Evolutionary Computing +1410.5655 Accelerator Physics +1410.5656 Phenomenology +1410.5657 Experiment +1410.5661 Accelerator Physics +1410.5662 Combinatorics +1410.5663 Information Theory +1410.5665 Information Theory +1410.5674 +1410.5676 Quantum Algebra +1410.5678 Solar and Stellar Astrophysics +1410.5684 Machine Learning +1410.5685 Accelerator Physics +1410.5689 +1410.5693 Classical Analysis and ODEs +1410.5695 Accelerator Physics +1410.5696 Cryptography and Security +1410.5697 Networking and Internet Architecture +1410.5699 Algebraic Topology +1410.5700 Experiment +1410.5703 Logic in Computer Science +1410.5705 Representation Theory +1410.5717 Analysis of PDEs +1410.5718 Social and Information Networks +1410.5721 Complex Variables +1410.5723 Genomics +1410.5737 Popular Physics +1410.5738 Artificial Intelligence +1410.5743 Number Theory +1410.5744 Differential Geometry +1410.5747 Combinatorics +1410.5748 General Mathematics +1410.5753 Phenomenology +1410.5756 Numerical Analysis +1410.5757 Differential Geometry +1410.5760 Instrumentation and Methods for Astrophysics +1410.5764 Formal Languages and Automata Theory +1410.5767 Differential Geometry +1410.5769 Lattice +1410.5770 Information Theory +1410.5773 +1410.5774 Algebraic Topology +1410.5775 Probability +1410.5777 Information Retrieval +1410.5780 Other Computer Science +1410.5783 Complex Variables +1410.5784 Distributed, Parallel, and Cluster Computing +1410.5787 General Finance +1410.5789 Cryptography and Security +1410.5792 Machine Learning +1410.5793 +1410.5795 Accelerator Physics +1410.5800 Medical Physics +1410.5801 Medical Physics +1410.5803 Combinatorics +1410.5804 Geometric Topology +math/0506564 Metric Geometry +0706.0075 Exactly Solvable and Integrable Systems +0804.2468 Combinatorics +0806.3477 +0807.2484 Phenomenology +0809.5267 Commutative Algebra +0810.0330 +0908.0482 Cryptography and Security +1001.1958 Statistical Mechanics +1002.1664 Combinatorics +1004.4396 Functional Analysis +1004.5514 Biological Physics +1010.0271 Group Theory +1010.0681 +1010.6268 General Physics +1106.1196 Logic +1109.6770 Exactly Solvable and Integrable Systems +1109.6924 +1110.1850 Phenomenology +1111.6531 Statistical Mechanics +1201.0921 Genomics +1202.2376 +1203.5624 Group Theory +1206.2356 Theory +1206.2968 Optimization and Control +1206.7040 Theory +1207.1206 Physics and Society +1208.1883 Functional Analysis +1208.3789 General Finance +1208.4555 +1208.4906 Numerical Analysis +1209.3245 Phenomenology +1210.4137 Group Theory +1211.0170 Numerical Analysis +1211.5664 Quantum Gases +1212.0507 Complex Variables +1212.4981 Mesoscale and Nanoscale Physics +1212.6063 +1301.6984 +1301.7743 Accelerator Physics +1302.1168 Phenomenology +1302.1607 Mesoscale and Nanoscale Physics +1302.4077 Lattice +1302.5552 +1303.2673 General Physics +1303.5865 Metric Geometry +1304.2640 Mesoscale and Nanoscale Physics +1305.0065 +1305.2733 +1305.3823 Phenomenology +1305.7410 Networking and Internet Architecture +1306.1483 +1306.5633 +1306.5976 +1307.0893 Superconductivity +1307.2371 +1307.3144 Networking and Internet Architecture +1307.5967 Combinatorics +1307.5996 Computer Vision and Pattern Recognition +1308.0838 Number Theory +1308.3993 Quantum Gases +1308.6476 Phenomenology +1309.1834 Mesoscale and Nanoscale Physics +1309.2306 Disordered Systems and Neural Networks +1309.3778 Geometric Topology +1309.3983 Logic +1309.7071 Mesoscale and Nanoscale Physics +1309.7785 +1310.0981 Exactly Solvable and Integrable Systems +1310.4400 Probability +1310.6652 Statistical Mechanics +1310.7473 Information Theory +1310.7558 Combinatorics +1311.1926 Mesoscale and Nanoscale Physics +1311.2141 +1311.2260 Quantitative Methods +1311.3537 Statistical Mechanics +1311.3784 Lattice +1311.6133 +1311.7450 Neurons and Cognition +1312.0653 Metric Geometry +1312.4539 Strongly Correlated Electrons +1312.4850 Instrumentation and Methods for Astrophysics +1312.6754 Mesoscale and Nanoscale Physics +1312.7628 Lattice +1401.0593 Quantum Gases +1401.1716 Materials Science +1401.2287 +1401.3589 Risk Management +1401.3591 +1401.4173 Theory +1401.5780 +1401.6063 +1401.6105 Materials Science +1401.7274 Theory +1401.7636 Analysis of PDEs +1401.7817 Strongly Correlated Electrons +1402.0156 Probability +1402.1558 +1402.1570 Geometric Topology +1402.2299 Strongly Correlated Electrons +1402.4755 Numerical Analysis +1402.5175 Lattice +1402.5755 Materials Science +1402.6808 Phenomenology +1403.0309 Computer Vision and Pattern Recognition +1403.0315 Computer Vision and Pattern Recognition +1403.0320 Computer Vision and Pattern Recognition +1403.0700 Computer Vision and Pattern Recognition +1403.0855 Phenomenology +1403.1990 Differential Geometry +1403.2109 Strongly Correlated Electrons +1403.2734 +1403.3099 Phenomenology +1403.3448 Social and Information Networks +1403.3510 Lattice +1403.3647 +1403.3669 Mesoscale and Nanoscale Physics +1403.3670 Theory +1403.4146 Mesoscale and Nanoscale Physics +1403.4248 Strongly Correlated Electrons +1403.4433 Soft Condensed Matter +1403.4465 +1403.4822 Statistical Mechanics +1403.5246 Combinatorics +1403.5970 Physics and Society +1403.6560 +1403.7704 +1403.7902 Astrophysics of Galaxies +1404.0218 Information Theory +1404.0333 Physics and Society +1404.0423 Materials Science +1404.0535 +1404.0777 Theory +1404.1044 Theory +1404.1379 Theory +1404.1910 +1404.2226 Cryptography and Security +1404.2331 Mesoscale and Nanoscale Physics +1404.2376 Mesoscale and Nanoscale Physics +1404.2439 Strongly Correlated Electrons +1404.2441 Phenomenology +1404.2866 Phenomenology +1404.3027 Strongly Correlated Electrons +1404.3150 +1404.3450 Phenomenology +1404.4639 Networking and Internet Architecture +1404.5620 High Energy Astrophysical Phenomena +1404.5801 Experiment +1404.6816 Lattice +1404.6921 Functional Analysis +1404.7025 High Energy Astrophysical Phenomena +1404.7429 Theory +1405.0103 Phenomenology +1405.0283 Theory +1405.0487 Phenomenology +1405.1210 Disordered Systems and Neural Networks +1405.1435 Cosmology and Nongalactic Astrophysics +1405.1715 Logic +1405.1724 Theory +1405.2075 Cosmology and Nongalactic Astrophysics +1405.2228 Phenomenology +1405.2354 +1405.2368 Phenomenology +1405.2467 Phenomenology +1405.3233 Phenomenology +1405.3744 Quantum Gases +1405.3933 +1405.3971 +1405.4171 Optics +1405.4245 Phenomenology +1405.5039 Mesoscale and Nanoscale Physics +1405.5476 +1405.5774 Materials Science +1405.6106 Phenomenology +1405.6917 Phenomenology +1405.7001 Superconductivity +1405.7004 Cosmology and Nongalactic Astrophysics +1405.7101 Accelerator Physics +1405.7262 +1405.7493 Optics +1405.7952 Theory +1406.0060 Theory +1406.0119 Materials Science +1406.0372 Differential Geometry +1406.0792 Cellular Automata and Lattice Gases +1406.1069 Logic in Computer Science +1406.1198 Quantum Gases +1406.1595 Superconductivity +1406.1773 Strongly Correlated Electrons +1406.2318 Disordered Systems and Neural Networks +1406.2486 Experiment +1406.3227 +1406.3562 Mesoscale and Nanoscale Physics +1406.4172 Theory +1406.4283 Phenomenology +1406.4656 Mesoscale and Nanoscale Physics +1406.5340 +1406.5544 +1406.5883 +1406.5935 Networking and Internet Architecture +1406.5967 +1406.7032 Phenomenology +1406.7481 Phenomenology +1407.0097 Social and Information Networks +1407.1432 Mesoscale and Nanoscale Physics +1407.1434 Mesoscale and Nanoscale Physics +1407.2577 Phenomenology +1407.2974 Probability +1407.3524 Superconductivity +1407.5133 Functional Analysis +1407.5618 Popular Physics +1407.6014 +1407.6125 Quantitative Methods +1407.6425 Astrophysics of Galaxies +1407.7528 Cosmology and Nongalactic Astrophysics +1407.7708 Astrophysics of Galaxies +1408.0359 Soft Condensed Matter +1408.0467 Data Structures and Algorithms +1408.0718 Number Theory +1408.1428 Functional Analysis +1408.2753 Plasma Physics +1408.2962 Information Theory +1408.3745 Classical Physics +1408.3859 Dynamical Systems +1408.4548 Exactly Solvable and Integrable Systems +1408.4987 Instrumentation and Methods for Astrophysics +1408.5094 Databases +1408.5221 Numerical Analysis +1408.5601 Computer Vision and Pattern Recognition +1408.5811 +1408.5890 Earth and Planetary Astrophysics +1408.5891 Software Engineering +1408.5892 Functional Analysis +1408.5893 Digital Libraries +1408.5894 Databases +1408.5906 +1408.5920 Data Structures and Algorithms +1408.5924 Applications +1408.5925 Lattice +1408.5926 Solar and Stellar Astrophysics +1408.5927 Combinatorics +1408.5929 Numerical Analysis +1408.5934 Solar and Stellar Astrophysics +1408.5937 History and Overview +1408.5947 Differential Geometry +1408.5953 Instrumentation and Methods for Astrophysics +1408.5954 Differential Geometry +1408.5955 Logic in Computer Science +1408.5956 Logic in Computer Science +1408.5957 Logic in Computer Science +1408.5958 Logic in Computer Science +1408.5959 Formal Languages and Automata Theory +1408.5960 Logic in Computer Science +1408.5961 Logic in Computer Science +1408.5962 Logic in Computer Science +1408.5963 Distributed, Parallel, and Cluster Computing +1408.5964 Logic in Computer Science +1408.5965 Formal Languages and Automata Theory +1408.5966 Formal Languages and Automata Theory +1408.5967 Formal Languages and Automata Theory +1408.5968 Formal Languages and Automata Theory +1408.5969 Logic in Computer Science +1408.5977 Logic in Computer Science +1408.5978 Logic in Computer Science +1408.5979 Distributed, Parallel, and Cluster Computing +1408.5980 Programming Languages +1408.5981 Logic in Computer Science +1408.5986 Solar and Stellar Astrophysics +1408.5989 Mathematical Finance +1408.5992 Physics Education +1408.5995 Data Structures and Algorithms +1408.5997 Numerical Analysis +1408.6000 Number Theory +1408.6002 Number Theory +1408.6003 Materials Science +1408.6005 Theory +1408.6008 Mesoscale and Nanoscale Physics +1408.6015 Statistics Theory +1408.6016 Functional Analysis +1408.6019 Computational Geometry +1408.6022 Spectral Theory +1408.6026 Commutative Algebra +1408.6028 Exactly Solvable and Integrable Systems +1408.6030 Physics and Society +1408.6032 Machine Learning +1408.6042 Systems and Control +1408.6043 Numerical Analysis +1408.6044 Materials Science +1408.6046 Combinatorics +1408.6049 Earth and Planetary Astrophysics +1408.6050 Solar and Stellar Astrophysics +1408.6052 Populations and Evolution +1408.6053 Experiment +1408.6055 Solar and Stellar Astrophysics +1408.6056 Optics +1408.6057 Theory +1408.6060 Experiment +1408.6061 Mesoscale and Nanoscale Physics +1408.6068 Statistical Mechanics +1408.6076 Phenomenology +1408.6078 Mesoscale and Nanoscale Physics +1408.6079 Neurons and Cognition +1408.6080 Phenomenology +1408.6081 Solar and Stellar Astrophysics +1408.6082 Solar and Stellar Astrophysics +1408.6084 Superconductivity +1408.6085 Soft Condensed Matter +1408.6090 +1408.6091 Geometric Topology +1408.6093 Strongly Correlated Electrons +1408.6099 Quantum Gases +1408.6103 Solar and Stellar Astrophysics +1408.6109 Networking and Internet Architecture +1408.6110 Phenomenology +1408.6113 Phenomenology +1408.6114 Mesoscale and Nanoscale Physics +1408.6120 Software Engineering +1408.6121 Pattern Formation and Solitons +1408.6123 Methodology +1408.6125 Software Engineering +1408.6127 Artificial Intelligence +1408.6129 Atmospheric and Oceanic Physics +1408.6130 Software Engineering +1408.6131 Combinatorics +1408.6132 Neurons and Cognition +1408.6134 Complex Variables +1408.6135 Experiment +1408.6137 Functional Analysis +1408.6142 Software Engineering +1408.6143 Numerical Analysis +1408.6144 Complex Variables +1408.6147 Software Engineering +1408.6150 +1408.6151 Number Theory +1408.6152 +1408.6153 Category Theory +1408.6158 +1408.6161 Exactly Solvable and Integrable Systems +1408.6162 +1408.6164 Earth and Planetary Astrophysics +1408.6165 Materials Science +1408.6166 +1408.6168 Functional Analysis +1408.6169 Mesoscale and Nanoscale Physics +1408.6171 Mesoscale and Nanoscale Physics +1408.6177 +1408.6179 Computation and Language +1408.6180 Analysis of PDEs +1408.6183 Combinatorics +1408.6186 Artificial Intelligence +1408.6187 Populations and Evolution +1408.6188 Number Theory +1408.6189 Earth and Planetary Astrophysics +1408.6191 Soft Condensed Matter +1408.6194 Physics Education +1408.6195 General Physics +1408.6196 Data Structures and Algorithms +1408.6197 Optimization and Control +1408.6198 Formal Languages and Automata Theory +1408.6199 Solar and Stellar Astrophysics +1408.6202 +1408.6204 +1408.6208 Atmospheric and Oceanic Physics +1408.6209 Analysis of PDEs +1408.6211 Statistics Theory +1408.6212 Commutative Algebra +1408.6213 Analysis of PDEs +1408.6214 Machine Learning +1408.6215 Quantum Algebra +1408.6218 Statistics Theory +1408.6219 Combinatorics +1408.6220 Commutative Algebra +hep-th/0506253 Theory +math/0304051 Commutative Algebra +nlin/0409065 Exactly Solvable and Integrable Systems +nlin/0604008 Exactly Solvable and Integrable Systems +solv-int/9707015 Exactly Solvable and Integrable Systems +solv-int/9808016 Exactly Solvable and Integrable Systems +solv-int/9902016 Exactly Solvable and Integrable Systems +0710.1159 Strongly Correlated Electrons +0806.2594 Subcellular Processes +0806.2820 +0905.0268 Materials Science +0907.4507 Number Theory +1103.2759 Representation Theory +1105.2226 Statistical Mechanics +1107.1787 Trading and Market Microstructure +1107.4401 Strongly Correlated Electrons +1109.1962 Other Condensed Matter +1112.4671 Combinatorics +1112.5165 Statistical Mechanics +1201.4544 +1204.0237 General Physics +1205.6227 Differential Geometry +1206.2772 Distributed, Parallel, and Cluster Computing +1206.4397 Fluid Dynamics +1207.3072 Differential Geometry +1207.6547 Theory +1208.4403 Materials Science +1208.4691 Strongly Correlated Electrons +1210.0819 Representation Theory +1210.7090 Probability +1211.4535 Dynamical Systems +1211.6845 Differential Geometry +1212.0127 Materials Science +1301.4713 Probability +1301.6563 Materials Science +1302.0437 Rings and Algebras +1303.0308 Optimization and Control +1303.0664 Materials Science +1303.7261 Fluid Dynamics +1304.1408 Optimization and Control +1304.5277 +1305.0951 Astrophysics of Galaxies +1305.1032 Soft Condensed Matter +1305.1274 Materials Science +1305.3470 Operator Algebras +1305.3724 +1305.4328 Physics and Society +1305.5031 Strongly Correlated Electrons +1305.6609 Phenomenology +1306.0131 Number Theory +1306.1037 +1306.2594 Dynamical Systems +1306.2760 Analysis of PDEs +1307.0154 Geometric Topology +1307.0243 +1307.1287 Fluid Dynamics +1307.1820 Phenomenology +1307.2369 Dynamical Systems +1307.4225 Mesoscale and Nanoscale Physics +1307.4789 Populations and Evolution +1307.6301 +1308.1131 Earth and Planetary Astrophysics +1308.1463 +1308.2567 Algebraic Geometry +1308.4243 Optimization and Control +1308.4410 Cosmology and Nongalactic Astrophysics +1309.4098 Astrophysics of Galaxies +1309.4099 Astrophysics of Galaxies +1309.7042 Materials Science +1309.7509 Experiment +1309.7662 Algebraic Geometry +1310.0526 +1310.1982 Strongly Correlated Electrons +1310.1985 Dynamical Systems +1310.2382 Differential Geometry +1310.3705 Quantum Gases +1310.5854 Instrumentation and Detectors +1310.6928 Probability +1310.7991 Learning +1311.3214 Populations and Evolution +1311.3353 Artificial Intelligence +1311.3432 +1311.4978 +1311.5589 Materials Science +1311.5655 Methodology +1311.6035 Mesoscale and Nanoscale Physics +1311.6377 +1311.7227 Number Theory +1312.0301 Phenomenology +1312.2683 Optics +1312.4212 Phenomenology +1312.4238 Algebraic Geometry +1312.4395 Statistics Theory +1312.5328 Theory +1312.5585 Plasma Physics +1312.5668 Rings and Algebras +1312.6878 Optics +1312.6920 +1401.0115 Dynamical Systems +1401.0195 Lattice +1401.0671 +1401.2054 Methodology +1401.3362 Methodology +1401.4397 Materials Science +1401.4424 Fluid Dynamics +1401.6083 Information Theory +1402.0208 Number Theory +1402.0270 Mesoscale and Nanoscale Physics +1402.0438 Phenomenology +1402.0448 Theory +1402.1413 Materials Science +1402.1531 Strongly Correlated Electrons +1402.1749 Cosmology and Nongalactic Astrophysics +1402.1788 Cosmology and Nongalactic Astrophysics +1402.1874 Solar and Stellar Astrophysics +1402.2986 Statistics Theory +1402.3335 Quantum Gases +1402.3980 Materials Science +1402.4079 Phenomenology +1402.5130 +1402.5236 +1402.5321 Populations and Evolution +1402.5722 +1402.6184 Theory +1402.6372 Soft Condensed Matter +1402.6535 Statistical Mechanics +1402.7363 Phenomenology +1403.0642 Lattice +1403.0686 Information Theory +1403.2080 +1403.2370 Phenomenology +1403.2704 Strongly Correlated Electrons +1403.2726 Phenomenology +1403.3123 High Energy Astrophysical Phenomena +1403.3690 Theory +1403.3903 Strongly Correlated Electrons +1403.3911 Cosmology and Nongalactic Astrophysics +1403.4221 Dynamical Systems +1403.5349 +1403.5575 Lattice +1403.5580 Phenomenology +1403.5844 Lattice +1403.7065 Instrumentation and Detectors +1403.7565 Phenomenology +1403.7566 Materials Science +1404.0057 Phenomenology +1404.0531 History and Philosophy of Physics +1404.1489 Classical Analysis and ODEs +1404.1592 Optimization and Control +1404.1787 Strongly Correlated Electrons +1404.1899 Cosmology and Nongalactic Astrophysics +1404.3061 +1404.3698 Experiment +1404.3986 Theory +1404.4217 +1404.4229 Phenomenology +1404.4739 Phenomenology +1404.4977 Phenomenology +1404.5628 Phenomenology +1404.5835 Phenomenology +1404.5950 Cosmology and Nongalactic Astrophysics +1404.6081 +1404.6578 Analysis of PDEs +1404.6704 Cosmology and Nongalactic Astrophysics +1404.7079 Phenomenology +1404.7081 Statistical Mechanics +1404.7790 Phenomenology +1404.7797 Plasma Physics +1405.1355 Phenomenology +1405.1572 +1405.1883 +1405.1920 Astrophysics of Galaxies +1405.1937 Phenomenology +1405.2205 Mesoscale and Nanoscale Physics +1405.2590 Artificial Intelligence +1405.2784 Cosmology and Nongalactic Astrophysics +1405.2794 Programming Languages +1405.2808 Theory +1405.2885 Phenomenology +1405.3019 Lattice +1405.3250 Artificial Intelligence +1405.3393 Programming Languages +1405.3433 Group Theory +1405.3547 Programming Languages +1405.3556 Programming Languages +1405.3603 Logic in Computer Science +1405.3637 Artificial Intelligence +1405.3671 Optics +1405.3675 Programming Languages +1405.3713 Artificial Intelligence +1405.3792 Programming Languages +1405.3953 Programming Languages +1405.4005 Cosmology and Nongalactic Astrophysics +1405.4041 Programming Languages +1405.4095 Information Retrieval +1405.4256 Programming Languages +1405.4299 Strongly Correlated Electrons +1405.4545 Phenomenology +1405.5274 Mesoscale and Nanoscale Physics +1405.6182 Phenomenology +1405.6308 Phenomenology +1405.6311 Phenomenology +1405.7164 Mesoscale and Nanoscale Physics +1405.7563 Cosmology and Nongalactic Astrophysics +1405.7635 Optics +1406.0082 Phenomenology +1406.0755 Experiment +1406.3022 Strongly Correlated Electrons +1406.3065 Computational Complexity +1406.3625 Solar and Stellar Astrophysics +1406.5703 +1406.6098 Other Condensed Matter +1406.6132 Algebraic Geometry +1406.6886 Materials Science +1406.6991 Number Theory +1406.7800 Soft Condensed Matter +1407.0500 Representation Theory +1407.1613 Analysis of PDEs +1407.2253 Solar and Stellar Astrophysics +1407.2817 Optimization and Control +1407.3318 Phenomenology +1407.3507 Computational Geometry +1407.4834 Analysis of PDEs +1407.5109 Statistical Mechanics +1407.5455 Physics and Society +1407.5538 Rings and Algebras +1407.5692 Rings and Algebras +1407.5903 Human-Computer Interaction +1407.6214 Quantum Gases +1407.7340 Computational Physics +1407.7426 +1407.7496 Astrophysics of Galaxies +1407.7523 Computational Physics +1407.7539 Solar and Stellar Astrophysics +1407.7544 Cosmology and Nongalactic Astrophysics +1407.7552 Instrumentation and Methods for Astrophysics +1407.7558 Soft Condensed Matter +1407.7560 Robotics +1407.7561 High Energy Astrophysical Phenomena +1407.7562 Physics Education +1407.7563 Numerical Analysis +1407.7564 Classical Analysis and ODEs +1407.7566 Quantitative Methods +1407.7568 Combinatorics +1407.7569 Classical Analysis and ODEs +1407.7576 Representation Theory +1407.7581 +1407.7583 Astrophysics of Galaxies +1407.7584 Learning +1407.7585 Optimization and Control +1407.7589 Fluid Dynamics +1407.7590 Information Theory +1407.7597 Lattice +1407.7599 Functional Analysis +1407.7602 Optics +1407.7603 Probability +1407.7604 Discrete Mathematics +1407.7605 Optics +1407.7613 Physics Education +1407.7614 Methodology +1407.7617 Probability +1407.7618 Optimization and Control +1407.7619 Applications +1407.7623 Probability +1407.7624 Other Condensed Matter +1407.7626 Computer Vision and Pattern Recognition +1407.7627 Instrumentation and Methods for Astrophysics +1407.7628 Materials Science +1407.7630 Analysis of PDEs +1407.7634 Analysis of PDEs +1407.7635 Learning +1407.7637 Algebraic Geometry +1407.7640 Materials Science +1407.7642 +1407.7648 K-Theory and Homology +1407.7650 Computer Science and Game Theory +1407.7651 Superconductivity +1407.7653 Materials Science +1407.7654 Data Structures and Algorithms +1407.7661 Strongly Correlated Electrons +1407.7669 Strongly Correlated Electrons +1407.7670 Atomic Physics +1407.7671 Logic in Computer Science +1407.7674 Fluid Dynamics +1407.7680 Information Theory +1407.7684 Operator Algebras +1407.7686 Computer Vision and Pattern Recognition +1407.7690 +1407.7693 Cryptography and Security +1407.7698 Soft Condensed Matter +1407.7701 Analysis of PDEs +1407.7702 +1407.7703 Dynamical Systems +1407.7705 High Energy Astrophysical Phenomena +1407.7709 Chemical Physics +1407.7715 Cryptography and Security +1407.7716 +1407.7717 Optimization and Control +1407.7720 Probability +1407.7727 Classical Physics +1407.7731 Statistical Mechanics +1407.7733 Networking and Internet Architecture +1407.7736 Social and Information Networks +1407.7737 Neural and Evolutionary Computing +1407.7738 Methodology +1407.7753 Learning +1407.7759 Data Structures and Algorithms +1407.7770 Plasma Physics +1407.7775 Representation Theory +1407.7776 Classical Analysis and ODEs +1407.7781 Disordered Systems and Neural Networks +1407.7794 Atmospheric and Oceanic Physics +1407.7801 Quantitative Methods +1407.7811 Statistics Theory +1407.7817 Mesoscale and Nanoscale Physics +1407.7818 Fluid Dynamics +1407.7819 Machine Learning +1407.7823 Adaptation and Self-Organizing Systems +1407.7824 Algebraic Geometry +1407.7826 Combinatorics +1407.7832 Phenomenology +1407.7840 Machine Learning +1407.7844 Cryptography and Security +1407.7848 Functional Analysis +1407.7850 Representation Theory +physics/0703185 General Physics +0704.2625 Geometric Topology +0705.0500 Geometric Topology +0705.2874 Algebraic Topology +0706.0741 Geometric Topology +0706.0988 Algebraic Geometry +0706.1363 Algebraic Topology +0706.2579 Differential Geometry +0707.1469 Geometric Topology +0707.2003 Algebraic Geometry +0708.0273 Algebraic Geometry +0708.2160 K-Theory and Homology +0708.2228 Geometric Topology +0708.2666 Differential Geometry +0708.3541 Geometric Topology +0709.3566 Geometric Topology +0709.3823 Algebraic Geometry +0709.4510 Symplectic Geometry +0710.1024 Algebraic Topology +0710.3082 Geometric Topology +0710.3089 Geometric Topology +0710.3968 Algebraic Geometry +0711.0016 Combinatorics +0711.0377 Geometric Topology +0711.0766 Geometric Topology +0711.0919 Group Theory +0711.1396 Symplectic Geometry +0711.3806 Group Theory +0711.4238 Group Theory +0712.0928 Algebraic Geometry +0712.0968 Differential Geometry +0712.1083 Algebraic Geometry +0712.1298 Differential Geometry +0712.2202 Geometric Topology +0712.3177 Symplectic Geometry +0801.0335 Classical Physics +0801.0736 Dynamical Systems +0802.0185 Group Theory +0802.0512 Geometric Topology +0802.0709 Group Theory +0802.1005 Geometric Topology +0802.2145 Geometric Topology +0802.2287 Geometric Topology +0802.2681 Algebraic Geometry +0802.3415 Geometric Topology +0802.3435 Algebraic Geometry +0802.3938 K-Theory and Homology +0803.3088 Geometric Topology +0803.3667 Algebraic Geometry +0804.0363 Algebraic Topology +0804.1350 Geometric Topology +0805.0408 Plasma Physics +0805.1359 Geometric Topology +0805.1935 Group Theory +0805.4537 Geometric Topology +0806.1015 Group Theory +0807.0395 Geometric Topology +0807.1031 Symplectic Geometry +0807.2488 Symplectic Geometry +0807.2869 Geometric Topology +0807.3346 Analysis of PDEs +0807.4799 Group Theory +0807.4801 Group Theory +0808.2119 Geometric Topology +0808.2440 Symplectic Geometry +0809.0140 Symplectic Geometry +0810.0261 Geometric Topology +0810.4524 Differential Geometry +0810.5036 Geometric Topology +0810.5170 Symplectic Geometry +0811.0553 Algebraic Topology +0811.0841 Geometric Topology +0811.3193 Group Theory +0812.1555 Group Theory +0812.1890 Metric Geometry +0812.2108 Symplectic Geometry +0812.3258 Algebraic Geometry +0901.0208 Geometric Topology +0901.3602 Category Theory +0901.3739 Dynamical Systems +0902.3113 Geometric Topology +0902.4709 Geometric Topology +0903.0683 Geometric Topology +0903.0700 Symplectic Geometry +0903.2248 Algebraic Topology +0904.1308 Differential Geometry +0904.2992 Algebraic Geometry +0905.0502 Geometric Topology +0905.1370 Symplectic Geometry +0905.2642 Dynamical Systems +0905.2855 Algebraic Topology +0906.1149 Group Theory +0906.3784 Differential Geometry +0906.4771 Geometric Topology +0907.3508 Differential Geometry +0907.4226 Geometric Topology +0907.5188 Geometric Topology +0910.1963 Geometric Topology +0910.2142 Algebraic Geometry +0910.5839 Geometric Topology +0911.0354 Group Theory +0911.1432 Geometric Topology +0911.5333 Geometric Topology +0912.1325 Symplectic Geometry +0912.1916 Geometric Topology +0912.4435 Symplectic Geometry +0912.4645 Dynamical Systems +0912.5094 Algebraic Topology +1001.0119 Algebraic Geometry +1001.0147 Group Theory +1001.0967 Differential Geometry +1001.1458 Differential Geometry +1002.0318 Dynamical Systems +1002.1803 Geometric Topology +1002.1900 Metric Geometry +1002.1958 Geometric Topology +1002.3915 Symplectic Geometry +1002.5040 Geometric Topology +1003.4630 Geometric Topology +1004.2942 Symplectic Geometry +1004.3107 Statistical Mechanics +1004.3227 Symplectic Geometry +1004.4172 Metric Geometry +1005.0424 Geometric Topology +1005.1052 Differential Geometry +1005.1359 Geometric Topology +1005.2760 Statistical Mechanics +1005.3121 General Physics +1005.3945 Algebraic Geometry +1005.4135 Group Theory +1006.0874 Algebraic Topology +1006.2123 Group Theory +1006.5237 Geometric Topology +1006.5390 Symplectic Geometry +1006.5582 Differential Geometry +1007.0578 Geometric Topology +1007.3727 General Physics +1008.1034 Geometric Topology +1009.1851 Algebraic Topology +1009.3283 Differential Geometry +1009.5018 Group Theory +1009.5025 Algebraic Topology +1009.6212 Geometric Topology +1010.2704 Algebraic Geometry +1010.3448 Dynamical Systems +1011.1855 Geometric Topology +1011.1976 Probability +1011.2271 Symplectic Geometry +1012.4748 Algebraic Geometry +1012.5923 Geometric Topology +1101.0509 Geometric Topology +1101.3137 Dynamical Systems +1101.3300 Algebraic Geometry +1102.0636 Materials Science +1102.1234 Algebraic Topology +1102.1607 Algebraic Geometry +1102.1866 General Physics +1102.2660 Geometric Topology +1102.2866 Group Theory +1102.5060 Metric Geometry +1103.4956 Symplectic Geometry +1104.0550 Geometric Topology +1104.1224 Algebraic Geometry +1104.1231 Group Theory +1104.1647 Differential Geometry +1104.4654 K-Theory and Homology +1104.5674 Neurons and Cognition +1105.1576 Algebraic Topology +1105.3461 Geometric Topology +1105.4744 Geometric Topology +1106.1337 Algebraic Geometry +1106.1633 Algebraic Geometry +1106.2142 Experiment +1106.3095 Geometric Topology +1106.3294 Geometric Topology +1106.3362 K-Theory and Homology +1106.3736 Differential Geometry +1106.4261 Geometric Topology +1108.5241 Astrophysics of Galaxies +1108.5242 Astrophysics of Galaxies +1109.1542 Symplectic Geometry +1109.1902 Dynamical Systems +1109.5150 Differential Geometry +1109.5365 Geometric Topology +1109.6609 Differential Geometry +1109.6873 Symplectic Geometry +1110.3533 Quantum Algebra +1111.1994 Group Theory +1111.3181 Algebraic Geometry +1111.3183 Differential Geometry +1111.3324 Symplectic Geometry +1111.4520 Algebraic Topology +1111.6566 Symplectic Geometry +1112.0099 Differential Geometry +1112.0365 Algebraic Geometry +1112.1230 Algebraic Geometry +1112.4495 Geometric Topology +1112.4816 Number Theory +1112.5146 Algebraic Topology +1112.5512 Algebraic Geometry +1112.5859 Geometric Topology +1112.5874 Geometric Topology +1112.5970 Symplectic Geometry +1201.1579 Algebraic Geometry +1201.5400 Number Theory +1201.5772 Geometric Topology +1201.6249 Geometric Topology +1201.6283 Geometric Topology +1202.1955 Symplectic Geometry +1202.3463 Geometric Topology +1202.4081 Analysis of PDEs +1202.4377 Number Theory +1203.3664 Category Theory +1203.4299 Geometric Topology +1203.6038 Geometric Topology +1204.0473 Algebraic Geometry +1204.0597 Geometric Topology +1204.0699 Algebraic Topology +1204.0960 Geometric Topology +1204.6474 Geometric Topology +1205.0442 Geometric Topology +1205.0513 Geometric Topology +1205.6067 Algebraic Geometry +1206.2277 Algebraic Geometry +1207.0291 Dynamical Systems +1207.3988 Differential Geometry +1207.4516 Algebraic Geometry +1207.5471 Symplectic Geometry +1207.6488 Populations and Evolution +1207.7280 Algebraic Geometry +1208.0280 Superconductivity +1208.2065 Differential Geometry +1208.2729 Differential Geometry +1208.4057 Superconductivity +1208.4519 Algebraic Topology +1208.5253 Differential Geometry +1209.0708 General Finance +1209.2487 Algebraic Geometry +1209.4274 Differential Geometry +1210.0290 Algebraic Geometry +1210.2666 Geometric Topology +1210.4806 Dynamical Systems +1210.6725 Differential Geometry +1210.6742 +1211.0264 Geometric Topology +1211.2009 Spectral Theory +1211.2539 Algebraic Geometry +1211.2913 +1211.2973 Probability +1211.3385 Differential Geometry +1211.3895 Symplectic Geometry +1211.5263 Algebraic Geometry +1211.6633 Symplectic Geometry +1211.7053 Metric Geometry +1211.7301 Analysis of PDEs +1212.3684 Classical Analysis and ODEs +1212.5011 Geometric Topology +1301.0164 Geometric Topology +1301.0546 +1301.0616 Group Theory +1301.2222 Analysis of PDEs +1301.2361 Geometric Topology +1301.3986 Quantum Algebra +1301.4919 Symplectic Geometry +1301.4946 Combinatorics +1302.0527 Geometric Topology +1302.0856 Strongly Correlated Electrons +1302.1137 Dynamical Systems +1302.4326 Populations and Evolution +1302.5398 +1302.5687 Geometric Topology +1302.6531 Algebraic Geometry +1303.1162 Geometric Topology +1303.1917 Geometric Topology +1303.3793 Combinatorics +1303.7044 Geometric Topology +1304.1299 Symplectic Geometry +1304.1313 Functional Analysis +1304.2658 Differential Geometry +1304.4862 Algebraic Topology +1304.5122 Classical Analysis and ODEs +1304.6641 Algebraic Topology +1304.6854 Category Theory +1305.4262 Functional Analysis +1305.6865 Classical Analysis and ODEs +1305.7512 Symplectic Geometry +1306.2573 Phenomenology +1306.3843 Chemical Physics +1306.5079 Differential Geometry +1307.0859 Geometric Topology +1307.1973 Algebraic Geometry +1307.2124 Probability +1307.7909 Theory +1307.8081 +1308.0949 Algebraic Geometry +1308.1794 Analysis of PDEs +1308.2802 Category Theory +1308.4960 Phenomenology +1308.6223 Differential Geometry +1309.1033 Algebraic Topology +1309.1406 Chemical Physics +1309.2512 Logic in Computer Science +1309.2515 Differential Geometry +1309.2951 Strongly Correlated Electrons +1309.3972 Statistical Mechanics +1309.6012 Commutative Algebra +1309.6957 +1309.7626 Atmospheric and Oceanic Physics +1310.2878 Differential Geometry +1310.3301 Quantitative Methods +1310.4712 Populations and Evolution +1310.7564 Theory +1310.7944 Cosmology and Nongalactic Astrophysics +1311.2984 Group Theory +1311.3521 Analysis of PDEs +1311.4208 Complex Variables +1311.4553 Phenomenology +1311.6869 Geometric Topology +1311.6887 Computer Vision and Pattern Recognition +1311.6982 Statistical Mechanics +1312.0037 Probability +1312.0515 Disordered Systems and Neural Networks +1312.0648 +1312.4009 Geometric Topology +1312.4176 Learning +1312.5527 +1312.5933 +1312.5986 Functional Analysis +1312.6123 Strongly Correlated Electrons +1312.6469 Strongly Correlated Electrons +1312.6865 Probability +1312.6903 Optics +1312.7303 Mesoscale and Nanoscale Physics +1312.7435 Cosmology and Nongalactic Astrophysics +1401.0923 Phenomenology +1401.1456 Information Retrieval +1401.2780 Functional Analysis +1401.2879 General Physics +1401.2882 General Physics +1401.3966 Quantum Gases +1401.4965 Discrete Mathematics +1401.5008 Algebraic Geometry +1401.6199 Phenomenology +1401.6230 Probability +1401.6536 Discrete Mathematics +1401.7220 Category Theory +1401.7476 Metric Geometry +1401.7527 Theory +1401.8146 History and Philosophy of Physics +1401.8171 Theory +1402.0309 Plasma Physics +1402.0374 +1402.1326 Atomic Physics +1402.1330 Atomic Physics +1402.1838 Theory +1402.2637 Information Theory +1402.2648 Emerging Technologies +1402.3065 Populations and Evolution +1402.3194 Analysis of PDEs +1402.3473 Data Structures and Algorithms +1402.4347 Mesoscale and Nanoscale Physics +1402.4562 Optics +1402.4629 Classical Analysis and ODEs +1402.5425 Strongly Correlated Electrons +1402.5530 Optics +1402.5801 Algebraic Geometry +1402.6704 Strongly Correlated Electrons +1402.6716 Quantum Gases +1402.7369 Phenomenology +1403.1179 Phenomenology +1403.1791 Strongly Correlated Electrons +1403.2747 Superconductivity +1403.2839 Numerical Analysis +1403.3103 Analysis of PDEs +1403.5454 Rings and Algebras +1403.6406 Populations and Evolution +1403.6473 Phenomenology +1403.6945 +1403.7058 Data Structures and Algorithms +1404.0007 Cosmology and Nongalactic Astrophysics +1404.0090 Optics +1404.0229 Applications +1404.1061 Populations and Evolution +1404.2085 +1404.2810 Analysis of PDEs +1404.3271 Earth and Planetary Astrophysics +1404.3627 Strongly Correlated Electrons +1404.4235 Statistics Theory +1404.5261 Phenomenology +1404.5560 Numerical Analysis +1404.7187 Lattice +1404.7616 +1404.7684 Methodology +1405.0058 Physics and Society +1405.0233 Quantitative Methods +1405.0656 Cosmology and Nongalactic Astrophysics +1405.1494 Differential Geometry +1405.1665 Learning +1405.1903 Analysis of PDEs +1405.2229 +1405.2282 Solar and Stellar Astrophysics +1405.2653 Differential Geometry +1405.3445 Phenomenology +1405.3521 Numerical Analysis +1405.3658 Theory +1405.4502 +1405.4887 +1405.4940 Mesoscale and Nanoscale Physics +1405.5012 Phenomenology +1405.5444 +1405.5487 High Energy Astrophysical Phenomena +1405.5868 Learning +1405.5995 Statistics Theory +1405.7051 Solar and Stellar Astrophysics +1405.7319 Chaotic Dynamics +1405.7391 Strongly Correlated Electrons +1405.7415 Mesoscale and Nanoscale Physics +1405.7890 Statistical Mechanics +1406.0075 Differential Geometry +1406.0170 Mesoscale and Nanoscale Physics +1406.0232 Superconductivity +1406.0458 Biological Physics +1406.0534 Experiment +1406.1309 +1406.1664 +1406.2474 +1406.2787 +1406.3633 Mesoscale and Nanoscale Physics +1406.4101 +1406.4607 Physics and Society +1406.5322 Phenomenology +1406.6772 Networking and Internet Architecture +1406.6820 Cosmology and Nongalactic Astrophysics +1406.6987 Theory +1406.7139 Cosmology and Nongalactic Astrophysics +1406.7293 Strongly Correlated Electrons +1406.7295 +1406.7647 Theory +1407.0572 Quantum Gases +1407.1543 Data Structures and Algorithms +1407.1625 Mesoscale and Nanoscale Physics +1407.1861 Cosmology and Nongalactic Astrophysics +1407.2574 Phenomenology +1407.2794 Strongly Correlated Electrons +1407.2878 Mesoscale and Nanoscale Physics +1407.3049 +1407.3512 Artificial Intelligence +1407.3513 Experiment +1407.3678 Phenomenology +1407.3804 Theory +1407.3901 Phenomenology +1407.3954 Strongly Correlated Electrons +1407.4129 Strongly Correlated Electrons +1407.4204 +1407.4899 Cosmology and Nongalactic Astrophysics +1407.5287 Numerical Analysis +1407.5410 Cryptography and Security +1407.5465 Optimization and Control +1407.5489 Statistical Mechanics +1407.5559 Analysis of PDEs +1407.5864 Materials Science +1407.6107 Theory +1407.6168 Instrumentation and Detectors +1407.6319 Theory +1407.7755 +1408.0454 Mesoscale and Nanoscale Physics +1408.0806 Experiment +1408.0961 Phenomenology +1408.1058 Combinatorics +1408.1063 Combinatorics +1408.1065 Combinatorics +1408.1088 Combinatorics +1408.1191 Methodology +1408.1263 Atmospheric and Oceanic Physics +1408.1853 Phenomenology +1408.2338 Atomic Physics +1408.2446 Disordered Systems and Neural Networks +1408.2516 Phenomenology +1408.2525 Phenomenology +1408.2755 Differential Geometry +1408.2826 Theory +1408.2939 Differential Geometry +1408.3302 Instrumentation and Methods for Astrophysics +1408.3339 Probability +1408.3691 +1408.3834 Superconductivity +1408.4056 Quantum Gases +1408.4105 Disordered Systems and Neural Networks +1408.4125 Cosmology and Nongalactic Astrophysics +1408.4126 Cosmology and Nongalactic Astrophysics +1408.4210 Theory +1408.4369 Solar and Stellar Astrophysics +1408.4551 Optimization and Control +1408.4720 Cosmology and Nongalactic Astrophysics +1408.4775 Mesoscale and Nanoscale Physics +1408.4861 Mesoscale and Nanoscale Physics +1408.5089 Statistical Mechanics +1408.5572 Theory +1408.5577 Phenomenology +1408.6206 Instrumentation and Detectors +1408.6233 Astrophysics of Galaxies +1408.6284 Cosmology and Nongalactic Astrophysics +1408.6478 Mesoscale and Nanoscale Physics +1408.6505 +1408.6549 Strongly Correlated Electrons +1408.6732 Theory +1408.6735 +1408.6845 Phenomenology +1408.6876 Statistical Mechanics +1409.0466 Astrophysics of Galaxies +1409.0566 Astrophysics of Galaxies +1409.0576 Mesoscale and Nanoscale Physics +1409.1125 Cosmology and Nongalactic Astrophysics +1409.1215 Astrophysics of Galaxies +1409.2907 Statistical Mechanics +1409.3050 Information Theory +1409.3093 +1409.3277 +1409.3689 Materials Science +1409.3858 History and Philosophy of Physics +1409.4040 Experiment +1409.4422 Astrophysics of Galaxies +1409.4899 Digital Libraries +1409.5336 Earth and Planetary Astrophysics +1409.5908 Other Computer Science +1409.6085 Materials Science +1409.6293 Solar and Stellar Astrophysics +1409.6550 Quantum Gases +1409.6704 Phenomenology +1409.7226 +1409.7789 Cosmology and Nongalactic Astrophysics +1410.0153 Strongly Correlated Electrons +1410.0156 Solar and Stellar Astrophysics +1410.0161 Lattice +1410.0196 High Energy Astrophysical Phenomena +1410.0380 Information Theory +1410.0624 Instrumentation and Methods for Astrophysics +1410.0884 High Energy Astrophysical Phenomena +1410.1733 Algebraic Geometry +1410.2189 Solar and Stellar Astrophysics +1410.2714 +1410.4177 Materials Science +1410.4827 Applications +1410.5470 Solar and Stellar Astrophysics +1410.5471 Solar and Stellar Astrophysics +1410.6535 Classical Analysis and ODEs +1410.6542 Earth and Planetary Astrophysics +1410.6640 Solar and Stellar Astrophysics +1410.7900 High Energy Astrophysical Phenomena +1410.8199 Operator Algebras +1410.8281 +1410.8509 Other Computer Science +1410.8844 Software Engineering +1411.0053 Lattice +1411.0204 Experiment +1411.0355 Fluid Dynamics +1411.0466 Phenomenology +1411.0520 Soft Condensed Matter +1411.0562 Quantum Algebra +1411.0878 +1411.1052 Earth and Planetary Astrophysics +1411.1128 Lattice +1411.1135 Differential Geometry +1411.1147 Learning +1411.1187 Solar and Stellar Astrophysics +1411.1257 Neurons and Cognition +1411.1460 Distributed, Parallel, and Cluster Computing +1411.1574 Phenomenology +1411.1582 +1411.1982 Rings and Algebras +1411.2031 Instrumentation and Methods for Astrophysics +1411.2037 Complex Variables +1411.2038 Combinatorics +1411.2039 Superconductivity +1411.2043 Complex Variables +1411.2049 +1411.2051 Applications +1411.2053 Optics +1411.2055 Mesoscale and Nanoscale Physics +1411.2056 Methodology +1411.2057 Learning +1411.2058 Number Theory +1411.2062 Logic +1411.2067 Operator Algebras +1411.2068 Materials Science +1411.2069 Discrete Mathematics +1411.2072 +1411.2074 Geophysics +1411.2075 Computers and Society +1411.2077 Dynamical Systems +1411.2079 Computer Science and Game Theory +1411.2081 Computers and Society +1411.2083 Experiment +1411.2084 Networking and Internet Architecture +1411.2085 Algebraic Geometry +1411.2087 Lattice +1411.2088 Hardware Architecture +1411.2090 Computer Vision and Pattern Recognition +1411.2093 Computers and Society +1411.2096 Materials Science +1411.2101 Algebraic Geometry +1411.2103 Neurons and Cognition +1411.2105 Discrete Mathematics +1411.2106 Populations and Evolution +1411.2107 High Energy Astrophysical Phenomena +1411.2108 +1411.2111 Physics and Society +1411.2116 Analysis of PDEs +1411.2118 Probability +1411.2119 Analysis of PDEs +1411.2120 +1411.2121 Superconductivity +1411.2124 Statistical Mechanics +1411.2128 Phenomenology +1411.2129 Optimization and Control +1411.2132 Cryptography and Security +1411.2135 Strongly Correlated Electrons +1411.2137 Phenomenology +1411.2138 Economics +1411.2139 Computer Science and Game Theory +1411.2140 Networking and Internet Architecture +1411.2142 Number Theory +1411.2144 +1411.2145 Number Theory +1411.2146 +1411.2147 Materials Science +1411.2148 Materials Science +1411.2151 Algebraic Geometry +1411.2152 Algebraic Geometry +1411.2153 Neural and Evolutionary Computing +1411.2154 Theory +1411.2156 Computers and Society +1411.2160 Distributed, Parallel, and Cluster Computing +1411.2162 Phenomenology +1411.2163 +1411.2164 Complex Variables +1411.2165 Combinatorics +1411.2166 Probability +1411.2168 Optimization and Control +1411.2169 Information Theory +1411.2171 Probability +1411.2172 Phenomenology +1411.2173 Computer Vision and Pattern Recognition +1411.2176 Commutative Algebra +1411.2178 +1411.2179 Astrophysics of Galaxies +1411.2182 Applications +1411.2185 Molecular Networks +1411.2186 Computers and Society +1411.2187 Number Theory +1411.2188 Other Computer Science +1411.2189 Analysis of PDEs +1411.2190 Human-Computer Interaction +1411.2194 Statistical Mechanics +1411.2195 Computers and Society +1411.2196 Fluid Dynamics +1411.2199 Information Theory +1411.2201 Number Theory +1411.2203 Number Theory +1411.2204 Atomic Physics +1411.2205 Other Quantitative Biology +1411.2207 Numerical Analysis +1411.2208 Information Theory +1411.2211 Lattice +1411.2212 Hardware Architecture +1411.2214 Computer Vision and Pattern Recognition +1411.2218 Phenomenology +1411.2219 Symplectic Geometry +1411.2223 Lattice +1411.2227 Computational Physics +1411.2230 Theory +1411.2231 Strongly Correlated Electrons +1411.2237 Populations and Evolution +1411.2238 +1411.2239 Logic in Computer Science +1411.2240 K-Theory and Homology +1411.2241 Computational Physics +1411.2242 Social and Information Networks +1411.2243 Analysis of PDEs +1411.2245 Chemical Physics +1411.2247 Lattice +1411.2250 Data Structures and Algorithms +1411.2251 Analysis of PDEs +1411.2252 Dynamical Systems +1411.2253 Analysis of PDEs +1411.2261 Functional Analysis +1411.2264 Algebraic Geometry +1411.2268 Classical Analysis and ODEs +1411.2272 Probability +1411.2275 Databases +1411.2277 Combinatorics +1411.2279 Phenomenology +1411.2280 Cosmology and Nongalactic Astrophysics +1411.2282 Number Theory +1411.2286 Computational Complexity +1411.2289 Dynamical Systems +1411.2290 Algebraic Topology +1411.2291 Differential Geometry +1411.2295 Functional Analysis +1411.2299 Optics +1411.2302 Algebraic Geometry +1411.2303 Functional Analysis +1411.2305 Distributed, Parallel, and Cluster Computing +1411.2310 +1411.2311 Computational Geometry +1411.2315 +1411.2319 Differential Geometry +1411.2321 +1411.2322 +1411.2323 +1411.2324 Theory +1411.2326 Theory +1411.2328 Computation and Language +1411.2331 Machine Learning +1411.2333 Probability +1411.2334 High Energy Astrophysical Phenomena +1411.2335 Computer Vision and Pattern Recognition +1411.2337 Machine Learning +1411.2338 Analysis of PDEs +1411.2339 Theory +1411.2343 Populations and Evolution +1411.2344 Data Structures and Algorithms +1411.2348 Information Theory +1411.2350 Cosmology and Nongalactic Astrophysics +1411.2352 +1411.2353 +1411.2356 Emerging Technologies +1411.2360 Number Theory +1411.2362 Optimization and Control +1411.2364 Information Theory +1411.2365 Solar and Stellar Astrophysics +1411.2366 Differential Geometry +1411.2367 Cryptography and Security +1411.2372 Phenomenology +1411.2373 Networking and Internet Architecture +1411.2375 Mesoscale and Nanoscale Physics +1411.2377 Numerical Analysis +1411.2378 Computational Complexity +1411.2379 Differential Geometry +1411.2380 +1411.2382 Instrumentation and Detectors +1411.2387 +1411.2388 Fluid Dynamics +1411.2389 Methodology +1411.2392 Software Engineering +1411.2394 Discrete Mathematics +1411.2395 Portfolio Management +1411.2396 +1411.2397 Algebraic Geometry +1411.2398 Materials Science +1411.2401 Plasma Physics +1411.2404 Information Theory +1411.2405 Information Theory +1411.2406 Cryptography and Security +1411.2408 Software Engineering +1411.2410 Software Engineering +1411.2414 Software Engineering +1411.2415 Strongly Correlated Electrons +1411.2418 Instrumentation and Detectors +1411.2419 Dynamical Systems +1411.2427 Physics and Society +1411.2433 Instrumentation and Detectors +1411.2435 Networking and Internet Architecture +1411.2436 +1411.2440 Algebraic Geometry +1411.2441 Molecular Networks +1411.2442 +1411.2443 Emerging Technologies +1411.2445 Accelerator Physics +1411.2449 Mesoscale and Nanoscale Physics +1411.2457 Category Theory +1411.2458 Computers and Society +1411.2462 Solar and Stellar Astrophysics +1411.2463 Information Theory +1411.2467 Classical Analysis and ODEs +1411.2469 Cryptography and Security +1411.2470 Optics +1411.2472 Operator Algebras +1411.2481 Mesoscale and Nanoscale Physics +1411.2483 Optics +1411.2485 Phenomenology +1411.2488 Group Theory +1411.2490 Solar and Stellar Astrophysics +1411.2491 Functional Analysis +1411.2492 Chaotic Dynamics +1411.2493 +1411.2494 Solar and Stellar Astrophysics +1411.2499 Artificial Intelligence +1411.2503 Cryptography and Security +1411.2505 Operator Algebras +1411.2508 Astrophysics of Galaxies +1411.2512 Metric Geometry +1411.2513 Information Theory +1411.2515 Dynamical Systems +1411.2518 Optics +1411.2520 Number Theory +1411.2522 Algebraic Geometry +1411.2523 Theory +1411.2528 Distributed, Parallel, and Cluster Computing +1411.2534 Solar and Stellar Astrophysics +1411.2537 Optics +1411.2539 Learning +1411.2542 Solar and Stellar Astrophysics +1411.2544 Combinatorics +1411.2547 Genomics +1411.2548 Genomics +1411.2549 Genomics +1411.2553 Software Engineering +1411.2555 Instrumentation and Detectors +1411.2556 +1411.2560 Phenomenology +1411.2565 Computational Engineering, Finance, and Science +1411.2567 Analysis of PDEs +1411.2571 Applications +1411.2572 Fluid Dynamics +1411.2573 Methodology +1411.2575 Dynamical Systems +1411.2579 Analysis of PDEs +1411.2581 Machine Learning +dg-ga/9706012 Differential Geometry +gr-qc/0401005 +hep-th/0607039 Theory +math-ph/9812013 +math/0001063 Geometric Topology +math/0001185 Geometric Topology +math/0001186 Group Theory +math/0002022 Differential Geometry +math/0002110 Geometric Topology +math/0003026 Geometric Topology +math/0003132 Geometric Topology +math/0003236 Geometric Topology +math/0004021 Geometric Topology +math/0005043 Geometric Topology +math/0005192 Geometric Topology +math/0005195 Symplectic Geometry +math/0005280 Geometric Topology +math/0007032 Geometric Topology +math/0007197 Geometric Topology +math/0008212 Geometric Topology +math/0009025 Algebraic Geometry +math/0009101 Group Theory +math/0009220 Symplectic Geometry +math/0010106 Differential Geometry +math/0010138 Geometric Topology +math/0011221 Symplectic Geometry +math/0012115 Geometric Topology +math/0101030 Geometric Topology +math/0101035 Geometric Topology +math/0101085 Symplectic Geometry +math/0101138 Geometric Topology +math/0101148 Geometric Topology +math/0101163 Geometric Topology +math/0102104 Group Theory +math/0102154 Geometric Topology +math/0103158 Geometric Topology +math/0103174 Geometric Topology +math/0104024 Differential Geometry +math/0104088 Geometric Topology +math/0104108 Dynamical Systems +math/0105020 Algebraic Topology +math/0105027 Differential Geometry +math/0105028 Geometric Topology +math/0105203 Algebraic Geometry +math/0105209 Geometric Topology +math/0106188 Metric Geometry +math/0106190 Group Theory +math/0107008 Group Theory +math/0107035 Geometric Topology +math/0107137 Geometric Topology +math/0109059 Geometric Topology +math/0109161 Metric Geometry +math/0110229 Geometric Topology +math/0110303 Algebraic Topology +math/0111298 Algebraic Geometry +math/0112193 Geometric Topology +math/0201092 Algebraic Topology +math/0201118 Geometric Topology +math/0201310 Geometric Topology +math/0203087 Geometric Topology +math/0203159 Dynamical Systems +math/0203258 Group Theory +math/0203265 Symplectic Geometry +math/0204012 Geometric Topology +math/0204077 Geometric Topology +math/0204311 Quantum Algebra +math/0205040 Geometric Topology +math/0205110 Geometric Topology +math/0205245 Geometric Topology +math/0206002 Differential Geometry +math/0208063 Symplectic Geometry +math/0208092 Geometric Topology +math/0208135 Group Theory +math/0208164 K-Theory and Homology +math/0209132 Geometric Topology +math/0209149 Geometric Topology +math/0209150 Geometric Topology +math/0209165 K-Theory and Homology +math/0209214 Geometric Topology +math/0210116 Geometric Topology +math/0210146 Algebraic Geometry +math/0211191 Differential Geometry +math/0211433 Logic +math/0212111 Geometric Topology +math/0212298 Geometric Topology +math/0212365 Group Theory +math/0212386 Group Theory +math/0212389 Geometric Topology +math/0301041 Geometric Topology +math/0301079 Algebraic Topology +math/0301084 Algebraic Topology +math/0301149 Geometric Topology +math/0301165 Algebraic Geometry +math/0301284 Group Theory +math/0302099 Geometric Topology +math/0302295 Geometric Topology +math/0303296 Dynamical Systems +math/0303343 Geometric Topology +math/0303353 Algebraic Topology +math/0303380 Group Theory +math/0304031 Geometric Topology +math/0304163 Geometric Topology +math/0304384 Algebraic Topology +math/0304402 Symplectic Geometry +math/0305096 Differential Geometry +math/0305363 Geometric Topology +math/0306071 Geometric Topology +math/0306188 Geometric Topology +math/0306247 Geometric Topology +math/0306283 Geometric Topology +math/0306306 Group Theory +math/0306422 Group Theory +math/0307092 Geometric Topology +math/0307209 Algebraic Geometry +math/0307211 Dynamical Systems +math/0307297 Geometric Topology +math/0308183 Symplectic Geometry +math/0308267 Geometric Topology +math/0309214 Geometric Topology +math/0309335 Symplectic Geometry +math/0310001 Group Theory +math/0310047 Differential Geometry +math/0310083 Geometric Topology +math/0310401 Differential Geometry +math/0310450 Symplectic Geometry +math/0310481 Algebraic Topology +math/0310498 Dynamical Systems +math/0311036 Geometric Topology +math/0311489 Geometric Topology +math/0311496 Geometric Topology +math/0312531 Algebraic Topology +math/0401003 Geometric Topology +math/0401186 Geometric Topology +math/0401311 Geometric Topology +math/0401357 Group Theory +math/0401399 Geometric Topology +math/0402231 Metric Geometry +math/0402372 Algebraic Topology +math/0402377 Geometric Topology +math/0403395 Geometric Topology +math/0403406 Dynamical Systems +math/0404058 Geometric Topology +math/0404135 Symplectic Geometry +math/0404162 Geometric Topology +math/0404227 Geometric Topology +math/0404445 Geometric Topology +math/0404496 Symplectic Geometry +math/0404537 Symplectic Geometry +math/0404539 Symplectic Geometry +math/0405079 Algebraic Topology +math/0405114 Geometric Topology +math/0405443 Geometric Topology +math/0406103 Symplectic Geometry +math/0406197 Geometric Topology +math/0406277 Geometric Topology +math/0406389 Quantum Algebra +math/0406581 Group Theory +math/0407086 Geometric Topology +math/0407172 Geometric Topology +math/0407203 Geometric Topology +math/0407287 Algebraic Geometry +math/0407347 Geometric Topology +math/0407422 Differential Geometry +math/0407438 Geometric Topology +math/0408026 Geometric Topology +math/0408137 Differential Geometry +math/0408149 Group Theory +math/0408426 Algebraic Geometry +math/0409542 Symplectic Geometry +math/0410205 Group Theory +math/0410332 Differential Geometry +math/0410450 Quantum Algebra +math/0410495 Geometric Topology +math/0410620 Rings and Algebras +math/0411206 Geometric Topology +math/0411219 Geometric Topology +math/0411232 Group Theory +math/0411258 Geometric Topology +math/0411577 Geometric Topology +math/0411640 Geometric Topology +math/0412120 Geometric Topology +math/0412156 K-Theory and Homology +math/0412191 Geometric Topology +math/0412533 Algebraic Geometry +math/0501096 Geometric Topology +math/0501349 General Topology +math/0501429 Algebraic Topology +math/0502349 Algebraic Topology +math/0502353 Algebraic Topology +math/0502448 Symplectic Geometry +math/0503045 Group Theory +math/0503054 Geometric Topology +math/0503274 Metric Geometry +math/0503581 Geometric Topology +math/0504546 Geometric Topology +math/0505056 Quantum Algebra +math/0506111 Algebraic Geometry +math/0506380 Geometric Topology +math/0506397 Geometric Topology +math/0507153 Geometric Topology +math/0507451 Algebraic Topology +math/0508100 Geometric Topology +math/0508108 Group Theory +math/0508202 Group Theory +math/0509030 Complex Variables +math/0509386 Symplectic Geometry +math/0510179 Algebraic Topology +math/0510198 Group Theory +math/0510432 Geometric Topology +math/0510532 Geometric Topology +math/0510682 Group Theory +math/0511001 Geometric Topology +math/0511083 Group Theory +math/0511597 Symplectic Geometry +math/0511658 Symplectic Geometry +math/0512479 Algebraic Topology +math/0512638 Metric Geometry +math/0601075 Algebraic Geometry +math/0601445 Geometric Topology +math/0602266 Differential Geometry +math/0603353 Algebraic Geometry +math/0604231 Differential Geometry +math/0604271 Algebraic Geometry +math/0604360 Geometric Topology +math/0605074 Algebraic Geometry +math/0605647 Quantum Algebra +math/0605667 Differential Geometry +math/0606061 Symplectic Geometry +math/0606062 Symplectic Geometry +math/0606094 Geometric Topology +math/0607789 Differential Geometry +math/0608059 Algebraic Topology +math/0608155 Group Theory +math/0608333 Geometric Topology +math/0608373 Geometric Topology +math/0609005 Algebraic Topology +math/0609369 Group Theory +math/0609378 Geometric Topology +math/0609484 Geometric Topology +math/0609635 Algebraic Topology +math/0609779 Geometric Topology +math/0610559 Geometric Topology +math/0610980 Group Theory +math/0611007 Symplectic Geometry +math/0611118 Metric Geometry +math/0611390 Symplectic Geometry +math/0611399 Geometric Topology +math/0611409 Geometric Topology +math/0611550 Algebraic Geometry +math/0611601 Geometric Topology +math/0611669 Geometric Topology +math/0611841 Geometric Topology +math/0611921 Geometric Topology +math/0612164 Algebraic Topology +math/0612647 Differential Geometry +math/0612705 Group Theory +math/0701084 Geometric Topology +math/0701277 Geometric Topology +math/0701339 Geometric Topology +math/0701460 Geometric Topology +math/0701610 Geometric Topology +math/0701719 Geometric Topology +math/0701835 Geometric Topology +math/0703649 Algebraic Topology +math/9702231 Group Theory +math/9705218 Geometric Topology +math/9705222 Geometric Topology +math/9707234 Differential Geometry +math/9712212 Geometric Topology +math/9712227 Geometric Topology +math/9712235 Geometric Topology +math/9712260 Geometric Topology +math/9712292 Geometric Topology +math/9801126 Geometric Topology +math/9801156 Differential Geometry +math/9803168 Geometric Topology +math/9805152 Geometric Topology +math/9806168 Algebraic Topology +math/9807188 Geometric Topology +math/9807189 Geometric Topology +math/9808064 Geometric Topology +math/9808141 Algebraic Topology +math/9811119 Metric Geometry +math/9812011 Geometric Topology +math/9901142 Symplectic Geometry +math/9903173 Geometric Topology +math/9903198 Differential Geometry +math/9904100 Geometric Topology +math/9905202 Geometric Topology +math/9905203 Geometric Topology +math/9906004 Geometric Topology +math/9906133 Geometric Topology +math/9906183 Geometric Topology +math/9906195 Geometric Topology +math/9907070 Geometric Topology +math/9907198 Algebraic Topology +math/9907199 Symplectic Geometry +math/9907200 Symplectic Geometry +math/9908003 Metric Geometry +math/9910099 Geometric Topology +math/9910127 Differential Geometry +math/9910177 Differential Geometry +math/9910187 Differential Geometry +math/9912147 Differential Geometry +math/9912174 Geometric Topology +math/9912248 Geometric Topology +quant-ph/0611264 +0709.4334 Quantum Algebra +0804.1110 Physics and Society +0907.0036 Physics and Society +1001.0667 Operator Algebras +1003.0447 Cosmology and Nongalactic Astrophysics +1003.3948 Quantum Algebra +1004.4001 Cosmology and Nongalactic Astrophysics +1006.3726 Databases +1007.1600 Differential Geometry +1008.0210 Mesoscale and Nanoscale Physics +1008.4063 Neural and Evolutionary Computing +1104.4803 Learning +1105.0261 Functional Analysis +1105.3808 Adaptation and Self-Organizing Systems +1105.4808 Strongly Correlated Electrons +1109.2825 Data Analysis, Statistics and Probability +1110.0615 High Energy Astrophysical Phenomena +1201.0777 Strongly Correlated Electrons +1203.0007 Cosmology and Nongalactic Astrophysics +1204.0202 Quantum Gases +1204.1233 Probability +1204.4122 Physics and Society +1205.6884 Probability +1206.1960 Probability +1206.2775 Distributed, Parallel, and Cluster Computing +1207.2776 Information Theory +1208.3586 Operator Algebras +1208.4846 Cosmology and Nongalactic Astrophysics +1208.6316 Number Theory +1210.0178 Group Theory +1210.2468 Analysis of PDEs +1210.2684 Probability +1210.4833 Representation Theory +1210.7477 Computation +1211.1601 Algebraic Topology +1212.0857 Disordered Systems and Neural Networks +1212.1740 Dynamical Systems +1301.6298 Geometric Topology +1302.2917 Disordered Systems and Neural Networks +1303.0399 +1303.1426 History and Philosophy of Physics +1303.3764 Social and Information Networks +1303.5832 Differential Geometry +1304.4277 Soft Condensed Matter +1304.4291 Functional Analysis +1304.7215 Commutative Algebra +1305.1284 Optimization and Control +1305.5681 Differential Geometry +1306.2024 Functional Analysis +1306.6100 Quantum Algebra +1306.6284 Chaotic Dynamics +1307.2169 Trading and Market Microstructure +1307.2735 Data Structures and Algorithms +1307.4325 Statistical Mechanics +1307.6128 Quantum Gases +1308.3768 +1308.4406 Cosmology and Nongalactic Astrophysics +1308.5471 Probability +1309.5280 +1309.6098 Mesoscale and Nanoscale Physics +1310.1806 Information Theory +1310.1954 +1310.4082 Theory +1310.4698 Analysis of PDEs +1310.4757 Statistical Mechanics +1310.8070 Mesoscale and Nanoscale Physics +1311.2534 +1312.1230 Functional Analysis +1312.1721 Differential Geometry +1312.4200 Mesoscale and Nanoscale Physics +1312.4419 Statistical Mechanics +1312.4420 Statistical Mechanics +1312.4860 Social and Information Networks +1312.6112 Physics Education +1312.7803 Statistical Mechanics +1312.7843 Statistical Mechanics +1401.3011 Combinatorics +1401.3063 Computational Complexity +1401.3316 Statistical Finance +1401.4416 Mesoscale and Nanoscale Physics +1401.7802 Disordered Systems and Neural Networks +1402.2023 Experiment +1402.2875 Fluid Dynamics +1402.3876 Geometric Topology +1402.5300 Portfolio Management +1402.6482 Optics +1403.1307 Computational Complexity +1403.1343 Cryptography and Security +1403.1462 Strongly Correlated Electrons +1403.2761 Lattice +1403.3038 +1403.3194 Spectral Theory +1403.4163 Mesoscale and Nanoscale Physics +1403.4661 Information Theory +1403.5705 Adaptation and Self-Organizing Systems +1403.6253 Superconductivity +1403.6497 Strongly Correlated Electrons +1404.1606 Representation Theory +1404.2596 Cosmology and Nongalactic Astrophysics +1404.2882 +1404.3458 Information Theory +1404.3756 Phenomenology +1404.4372 Cosmology and Nongalactic Astrophysics +1404.5435 Rings and Algebras +1404.6195 Analysis of PDEs +1404.6964 Solar and Stellar Astrophysics +1404.7855 Theory +1405.0093 Data Structures and Algorithms +1405.1794 Computer Science and Game Theory +1405.1975 Phenomenology +1405.2516 +1405.3768 Experiment +1405.3937 High Energy Astrophysical Phenomena +1405.6637 Functional Analysis +1405.7282 Instrumentation and Detectors +1406.0907 Symbolic Computation +1406.2882 Phenomenology +1406.4724 Mesoscale and Nanoscale Physics +1406.5182 Phenomenology +1406.5327 Soft Condensed Matter +1406.5443 Mesoscale and Nanoscale Physics +1406.6057 +1406.6765 Mesoscale and Nanoscale Physics +1406.6901 Artificial Intelligence +1406.7629 Systems and Control +1407.1227 Classical Physics +1407.1703 Algebraic Geometry +1407.3623 Statistical Mechanics +1407.3651 Materials Science +1407.4288 Combinatorics +1407.5027 Geometric Topology +1407.5703 Complex Variables +1407.5997 Statistical Mechanics +1407.6189 Medical Physics +1407.6339 Phenomenology +1407.6351 Analysis of PDEs +1407.6363 Astrophysics of Galaxies +1407.6371 Disordered Systems and Neural Networks +1407.6374 Networking and Internet Architecture +1407.6377 Instrumentation and Detectors +1407.6381 Theory +1407.6382 +1407.6390 Applications +1407.6403 Mesoscale and Nanoscale Physics +1407.6406 Logic in Computer Science +1407.6410 Materials Science +1407.6411 Materials Science +1407.6412 Materials Science +1407.6416 Discrete Mathematics +1407.6418 Materials Science +1407.6422 Phenomenology +1407.6423 Computer Vision and Pattern Recognition +1407.6426 Dynamical Systems +1407.6427 Operator Algebras +1407.6432 Machine Learning +1407.6435 Instrumentation and Detectors +1407.6441 Superconductivity +1407.6443 Commutative Algebra +1407.6444 Theory +1407.6445 +1407.6449 Analysis of PDEs +1407.6453 Cryptography and Security +1407.6454 High Energy Astrophysical Phenomena +1407.6456 Information Theory +1407.6458 Spectral Theory +1407.6459 Algebraic Geometry +1407.6463 Instrumentation and Methods for Astrophysics +1407.6466 +1407.6470 Distributed, Parallel, and Cluster Computing +1407.6472 Optics +1407.6473 Chaotic Dynamics +1407.6477 Systems and Control +1407.6480 Systems and Control +1407.6484 Computation +1407.6485 Materials Science +1407.6493 History and Overview +1407.6494 Representation Theory +1407.6498 Computer Vision and Pattern Recognition +1407.6499 Number Theory +1407.6506 Computer Vision and Pattern Recognition +1407.6507 Networking and Internet Architecture +1407.6508 Cryptography and Security +1407.6510 Computer Vision and Pattern Recognition +1407.6512 Geophysics +1407.6513 Neural and Evolutionary Computing +1407.6515 General Topology +1407.6517 General Topology +1407.6518 Computation +1407.6519 Applications +1407.6520 Mesoscale and Nanoscale Physics +1407.6523 Probability +1407.6524 Dynamical Systems +1407.6534 Molecular Networks +1407.6537 Mesoscale and Nanoscale Physics +1407.6538 +1407.6540 Algebraic Geometry +1407.6541 +1407.6545 Combinatorics +1407.6548 Number Theory +1407.6551 Analysis of PDEs +1407.6557 +1407.6559 Data Structures and Algorithms +1407.6562 Mesoscale and Nanoscale Physics +1407.6563 Probability +1407.6564 Phenomenology +1407.6566 Cosmology and Nongalactic Astrophysics +1407.6568 Metric Geometry +1407.6570 Molecular Networks +1407.6571 Logic in Computer Science +1407.6576 Materials Science +1407.6577 High Energy Astrophysical Phenomena +1407.6580 Logic in Computer Science +1407.6582 Soft Condensed Matter +1407.6584 Probability +1407.6587 Algebraic Geometry +1407.6591 Numerical Analysis +1407.6597 Dynamical Systems +1407.6599 Strongly Correlated Electrons +1407.6603 Distributed, Parallel, and Cluster Computing +1407.6604 Numerical Analysis +1407.6605 Combinatorics +1407.6608 Phenomenology +1407.6619 General Physics +1407.6620 Optics +1407.6622 +1407.6624 General Physics +1407.6626 General Physics +1407.6629 Analysis of PDEs +1407.6640 Mesoscale and Nanoscale Physics +1407.6645 Instrumentation and Methods for Astrophysics +1407.6650 Probability +1407.6652 Analysis of PDEs +1407.6655 Software Engineering +1407.6657 Fluid Dynamics +1407.6659 Number Theory +1407.6665 Data Structures and Algorithms +1407.6668 +1407.6670 Number Theory +1407.6675 Quantitative Methods +1407.6676 Commutative Algebra +1407.6680 Superconductivity +1407.6681 General Physics +1407.6684 Cryptography and Security +1407.6691 Materials Science +1407.6692 Computational Complexity +1407.6697 Genomics +1407.6699 Artificial Intelligence +1407.6703 Phenomenology +gr-qc/0411077 +math/0103031 Quantum Algebra +math/0103032 Quantum Algebra +math/0103033 Quantum Algebra +math/0112019 Probability +math/0210358 Quantum Algebra +math/0608236 Operator Algebras +math/0609329 Combinatorics +1404.5439 Logic in Computer Science +0912.0223 Differential Geometry +0706.3571 Symplectic Geometry +0709.0355 Computational Engineering, Finance, and Science +0802.1668 Quantitative Methods +0802.1674 Quantitative Methods +0811.0056 Operator Algebras +0902.1288 +0902.1513 Soft Condensed Matter +0910.5353 Differential Geometry +0911.4393 Populations and Evolution +1004.4963 Chaotic Dynamics +1009.4919 +1010.1418 Differential Geometry +1011.0583 Operator Algebras +1012.5405 Differential Geometry +1012.5943 Strongly Correlated Electrons +1102.3893 Differential Geometry +1104.0023 Differential Geometry +1105.2704 Data Structures and Algorithms +1106.2350 +1106.3487 Superconductivity +1107.4591 Differential Geometry +1108.2051 Strongly Correlated Electrons +1109.0243 Differential Geometry +1112.2314 Mesoscale and Nanoscale Physics +1201.1676 Computer Science and Game Theory +1202.0313 Computational Complexity +1202.0318 Accelerator Physics +1204.2744 Differential Geometry +1205.3203 Differential Geometry +1206.2158 Theory +1208.0980 Computational Physics +1209.0087 Operator Algebras +1209.6319 Soft Condensed Matter +1210.1650 Strongly Correlated Electrons +1210.5269 +1211.0737 Information Theory +1212.0361 Operator Algebras +1212.6767 Statistical Mechanics +1301.0231 Chaotic Dynamics +1301.6534 Analysis of PDEs +1303.5157 Information Theory +1303.7097 Statistical Mechanics +1304.2834 Number Theory +1304.4141 Experiment +1304.5944 +1305.2522 Functional Analysis +1305.3815 Superconductivity +1305.6981 Computational Physics +1305.7496 Materials Science +1306.0443 Experiment +1306.5347 Probability +1307.1267 Mesoscale and Nanoscale Physics +1307.1429 +1307.1501 Statistics Theory +1307.3348 Networking and Internet Architecture +1307.5342 Functional Analysis +1307.6463 Computational Physics +1308.3102 Mesoscale and Nanoscale Physics +1308.4906 Algebraic Geometry +1308.4919 Dynamical Systems +1309.7756 Analysis of PDEs +1310.0262 Theory +1310.0521 Combinatorics +1310.2756 +1310.3647 Representation Theory +1310.5919 Combinatorics +1310.7210 Pattern Formation and Solitons +1311.1307 Metric Geometry +1311.2097 Learning +1311.2275 Analysis of PDEs +1311.4485 Complex Variables +1311.7196 Phenomenology +1312.0472 History and Philosophy of Physics +1312.2276 Mesoscale and Nanoscale Physics +1312.2792 Solar and Stellar Astrophysics +1312.3299 Algebraic Geometry +1312.3600 Symplectic Geometry +1312.6251 Mesoscale and Nanoscale Physics +1401.0978 Information Theory +1401.1805 Probability +1401.4039 Phenomenology +1401.6941 +1401.7376 +1401.7920 +1402.0378 +1402.3237 Soft Condensed Matter +1402.3712 Probability +1403.1448 Computational Physics +1403.1498 Optics +1403.1515 Discrete Mathematics +1403.4631 Optics +1403.5486 Phenomenology +1403.6103 Superconductivity +1403.6762 Strongly Correlated Electrons +1403.7333 +1403.7982 Representation Theory +1404.2703 +1404.4840 Symplectic Geometry +1405.0773 Software Engineering +1405.0811 +1405.1668 Quantitative Methods +1405.4280 +1405.4359 Operator Algebras +1405.4513 Mesoscale and Nanoscale Physics +1405.4601 Theory +1406.0254 Strongly Correlated Electrons +1406.0439 Rings and Algebras +1406.0668 Mesoscale and Nanoscale Physics +1406.1273 Computational Complexity +1406.1369 Cosmology and Nongalactic Astrophysics +1406.2665 History and Philosophy of Physics +1406.5171 Experiment +1406.5655 Theory +1406.6024 Medical Physics +1406.6245 Portfolio Management +1407.0669 +1407.3742 Statistical Finance +1407.4011 Chemical Physics +1407.4222 Experiment +1407.4270 Instrumentation and Methods for Astrophysics +1407.5275 +1407.5340 +1407.5421 Cosmology and Nongalactic Astrophysics +1407.5862 Mesoscale and Nanoscale Physics +1407.6228 +1407.7210 Theory +1407.7259 Experiment +1408.0267 Theory +1408.0415 Theory +1408.0450 Soft Condensed Matter +1408.0945 +1408.3443 Discrete Mathematics +1409.1994 Optimization and Control +1409.2930 Astrophysics of Galaxies +1409.3715 Mesoscale and Nanoscale Physics +1409.4493 Soft Condensed Matter +1409.4942 Accelerator Physics +1409.6280 Number Theory +1409.6710 Materials Science +1409.8076 +1409.8536 Robotics +1409.8589 Logic +1410.0024 Algebraic Geometry +1410.0609 Symplectic Geometry +1410.0639 Soft Condensed Matter +1410.0719 Numerical Analysis +1410.1035 Computer Vision and Pattern Recognition +1410.1805 Information Theory +1410.2086 Algebraic Topology +1410.2196 Social and Information Networks +1410.2228 Metric Geometry +1410.2229 Disordered Systems and Neural Networks +1410.2240 Fluid Dynamics +1410.2250 Cosmology and Nongalactic Astrophysics +1410.2254 Optimization and Control +1410.2255 Earth and Planetary Astrophysics +1410.2259 Graphics +1410.2261 +1410.2266 Data Structures and Algorithms +1410.2272 Computer Science and Game Theory +1410.2278 Representation Theory +1410.2285 Applications +1410.2293 Experiment +1410.2295 Robotics +1410.2297 Optimization and Control +1410.2299 Phenomenology +1410.2302 Numerical Analysis +1410.2303 +1410.2304 History and Overview +1410.2306 Optimization and Control +1410.2307 Materials Science +1410.2309 Plasma Physics +1410.2313 +1410.2317 Optimization and Control +1410.2318 Dynamical Systems +1410.2320 Computational Geometry +1410.2322 Group Theory +1410.2324 Multimedia +1410.2325 Plasma Physics +1410.2326 Information Theory +1410.2327 Optimization and Control +1410.2331 Plasma Physics +1410.2340 Theory +1410.2342 Group Theory +1410.2348 Superconductivity +1410.2350 Combinatorics +1410.2357 Astrophysics of Galaxies +1410.2358 Populations and Evolution +1410.2360 Networking and Internet Architecture +1410.2361 Atmospheric and Oceanic Physics +1410.2362 Probability +1410.2364 Probability +1410.2366 Soft Condensed Matter +1410.2371 Computational Complexity +1410.2372 Dynamical Systems +1410.2374 Classical Analysis and ODEs +1410.2375 Numerical Analysis +1410.2376 Phenomenology +1410.2377 Instrumentation and Methods for Astrophysics +1410.2381 Computer Vision and Pattern Recognition +1410.2388 Discrete Mathematics +1410.2394 Quantum Algebra +1410.2395 Optics +1410.2398 Atomic Physics +1410.2399 Analysis of PDEs +1410.2402 Instrumentation and Detectors +1410.2407 +1410.2411 Experiment +1410.2413 Instrumentation and Detectors +1410.2414 Representation Theory +1410.2415 Formal Languages and Automata Theory +1410.2417 Phenomenology +1410.2418 Networking and Internet Architecture +1410.2420 Number Theory +1410.2421 Populations and Evolution +1410.2424 Plasma Physics +1410.2430 Sound +1410.2432 Mesoscale and Nanoscale Physics +1410.2433 Number Theory +1410.2434 Soft Condensed Matter +1410.2436 Materials Science +1410.2437 Computers and Society +1410.2446 Representation Theory +1410.2447 Statistics Theory +1410.2450 Networking and Internet Architecture +1410.2456 Computational Complexity +1410.2462 General Physics +1410.2465 Rings and Algebras +1410.2466 Applications +1410.2471 Lattice +1410.2484 Optimization and Control +1410.2487 General Physics +1410.2488 Computer Vision and Pattern Recognition +1410.2490 General Physics +1410.2492 Materials Science +1410.2497 Atomic Physics +1410.2499 Numerical Analysis +1410.2501 Distributed, Parallel, and Cluster Computing +1410.2510 Differential Geometry +1410.2512 Differential Geometry +1410.2513 Differential Geometry +1410.2517 Differential Geometry +1410.2519 Mesoscale and Nanoscale Physics +1410.2521 Astrophysics of Galaxies +1410.2522 Applications +1410.2525 Analysis of PDEs +1410.2526 Instrumentation and Methods for Astrophysics +1410.2527 Computational Physics +1410.2529 Algebraic Geometry +1410.2531 Probability +1410.2532 Instrumentation and Detectors +1410.2535 Computer Vision and Pattern Recognition +1410.2540 Group Theory +1410.2541 Materials Science +1410.2542 Astrophysics of Galaxies +1410.2547 Applications +1410.2549 General Finance +1410.2552 General Physics +1410.2553 Distributed, Parallel, and Cluster Computing +1410.2559 +1410.2560 Information Theory +1410.2565 Differential Geometry +1410.2566 Experiment +1410.2567 Plasma Physics +1410.2573 Symplectic Geometry +1410.2575 Solar and Stellar Astrophysics +1410.2577 Strongly Correlated Electrons +1410.2578 Complex Variables +1410.2581 +1410.2585 Methodology +1410.2587 Quantum Gases +1410.2590 Molecular Networks +1410.2591 Probability +1410.2592 Information Theory +1410.2595 Data Structures and Algorithms +1410.2596 Methodology +1410.2598 Physics and Society +astro-ph/9702031 +astro-ph/9702039 +astro-ph/9702136 +astro-ph/9702143 +math/0603202 Operator Algebras +0911.4751 Geometric Topology +1005.2211 Data Structures and Algorithms +1006.4073 Symplectic Geometry +1008.3376 +1012.4497 Probability +1101.5812 Strongly Correlated Electrons +1104.1663 Probability +1108.4388 +1110.4323 Probability +1111.3548 Data Structures and Algorithms +1201.1806 Combinatorics +1202.0922 Social and Information Networks +1202.1210 Classical Analysis and ODEs +1204.1959 Materials Science +1204.4154 Machine Learning +1207.2136 +1210.7269 Discrete Mathematics +1211.0959 General Physics +1212.2712 Fluid Dynamics +1212.4367 +1302.5079 +1303.5805 Optimization and Control +1304.1614 Geometric Topology +1304.2447 Dynamical Systems +1304.3016 Information Theory +1304.4348 Phenomenology +1305.1986 Multimedia +1305.3163 Programming Languages +1305.6569 +1306.1414 Mesoscale and Nanoscale Physics +1307.3817 Dynamical Systems +1307.4958 Strongly Correlated Electrons +1307.5381 Methodology +1308.0278 Populations and Evolution +1308.1057 Probability +1308.1688 Cryptography and Security +1308.2976 Theory +1309.5326 Probability +1310.1351 Information Theory +1310.2972 Combinatorics +1310.8534 Phenomenology +1311.3887 +1311.6195 Mesoscale and Nanoscale Physics +1312.0528 Strongly Correlated Electrons +1312.3419 Atomic Physics +1401.0839 Physics and Society +1401.5177 Cosmology and Nongalactic Astrophysics +1402.0740 Theory +1402.2751 Analysis of PDEs +1402.5242 Mesoscale and Nanoscale Physics +1402.6137 Differential Geometry +1402.6980 Cosmology and Nongalactic Astrophysics +1402.7009 +1403.0267 Soft Condensed Matter +1403.0808 Theory +1403.3341 Geometric Topology +1403.4223 Populations and Evolution +1403.4302 Cosmology and Nongalactic Astrophysics +1403.5524 Distributed, Parallel, and Cluster Computing +1403.6914 Superconductivity +1404.0011 Phenomenology +1404.0252 Solar and Stellar Astrophysics +1404.0570 Logic in Computer Science +1404.1190 +1404.2804 Materials Science +1404.5188 Theory +1404.5189 Classical Physics +1404.6310 Algebraic Topology +1404.6980 Disordered Systems and Neural Networks +1404.7317 Statistical Mechanics +1405.0933 Information Theory +1405.0942 Plasma Physics +1405.1168 +1405.1543 Experiment +1405.3024 Analysis of PDEs +1405.4567 Strongly Correlated Electrons +1405.5062 +1405.6227 Instrumentation and Detectors +1405.7387 Soft Condensed Matter +1406.3217 Experiment +1406.6481 Phenomenology +1406.7289 Logic in Computer Science +1407.0875 Classical Physics +1407.2199 Metric Geometry +1407.2481 Analysis of PDEs +1407.2572 Computer Vision and Pattern Recognition +1407.2935 Solar and Stellar Astrophysics +1407.3212 Quantum Gases +1407.4265 Materials Science +1407.6163 Solar and Stellar Astrophysics +1407.6876 Distributed, Parallel, and Cluster Computing +1407.7046 Logic in Computer Science +1407.7158 Number Theory +1407.7845 Algebraic Geometry +1407.8074 +1408.0460 Materials Science +1408.1963 Strongly Correlated Electrons +1408.2093 +1408.3049 Solar and Stellar Astrophysics +1408.3153 Computation and Language +1408.3169 Learning +1408.3387 Probability +1408.3410 Theory +1408.3422 Number Theory +1408.3432 Distributed, Parallel, and Cluster Computing +1408.3438 Computers and Society +1408.3439 Computers and Society +1408.3441 Multiagent Systems +1408.3447 Dynamical Systems +1408.3452 Cryptography and Security +1408.3454 Combinatorics +1408.3455 Physics and Society +1408.3456 Computation and Language +1408.3457 Combinatorics +1408.3462 +1408.3463 +1408.3467 Methodology +1408.3470 Probability +1408.3474 Information Theory +1408.3475 Solar and Stellar Astrophysics +1408.3476 Astrophysics of Galaxies +1408.3478 Classical Analysis and ODEs +1408.3481 Category Theory +1408.3482 Dynamical Systems +1408.3486 Cosmology and Nongalactic Astrophysics +1408.3490 Methodology +1408.3492 +1408.3494 Algebraic Geometry +1408.3498 Numerical Analysis +1408.3499 Analysis of PDEs +1408.3500 Systems and Control +1408.3502 +1408.3504 Mesoscale and Nanoscale Physics +1408.3510 Computational Complexity +1408.3516 Materials Science +1408.3521 Experiment +1408.3524 Earth and Planetary Astrophysics +1408.3528 Functional Analysis +1408.3529 Strongly Correlated Electrons +1408.3532 Statistical Mechanics +1408.3535 +1408.3537 Networking and Internet Architecture +1408.3539 Fluid Dynamics +1408.3541 Phenomenology +1408.3545 Phenomenology +1408.3546 Instrumentation and Detectors +1408.3550 Computers and Society +1408.3552 Analysis of PDEs +1408.3559 Atmospheric and Oceanic Physics +1408.3562 Physics and Society +1408.3564 Multimedia +1408.3571 Differential Geometry +1408.3573 Computer Vision and Pattern Recognition +1408.3575 Networking and Internet Architecture +1408.3577 Lattice +1408.3579 Optics +1408.3585 Instrumentation and Methods for Astrophysics +1408.3587 Information Retrieval +1408.3589 Statistical Mechanics +1408.3593 Materials Science +1408.3596 Systems and Control +1408.3599 Materials Science +1408.3602 +1408.3605 Theory +1408.3609 Number Theory +1408.3610 Probability +1408.3615 Atmospheric and Oceanic Physics +cond-mat/0309073 Materials Science +1002.2806 +1004.3122 +1403.4410 Dynamical Systems +0706.0497 Combinatorics +0802.2435 +1001.4777 Algebraic Geometry +1101.2797 Group Theory +1101.5038 Instrumentation and Methods for Astrophysics +1107.3419 Probability +1108.3572 Earth and Planetary Astrophysics +1108.5574 Dynamical Systems +1110.4417 Mesoscale and Nanoscale Physics +1111.6794 Group Theory +1112.1841 Discrete Mathematics +1201.1073 Dynamical Systems +1202.2846 Functional Analysis +1205.6514 Earth and Planetary Astrophysics +1207.5728 Differential Geometry +1211.2415 Analysis of PDEs +1212.0366 Materials Science +1302.0372 Earth and Planetary Astrophysics +1302.1720 Solar and Stellar Astrophysics +1302.2485 Earth and Planetary Astrophysics +1302.2662 Symplectic Geometry +1303.1966 +1303.5817 Statistics Theory +1304.3883 Algebraic Geometry +1304.4991 Cosmology and Nongalactic Astrophysics +1304.7956 Methodology +1305.0328 Methodology +1307.6429 Computational Complexity +1307.6871 +1307.7651 Classical Analysis and ODEs +1308.2149 Logic in Computer Science +1309.2164 Materials Science +1309.2169 Geophysics +1309.3132 Information Retrieval +1309.3885 Solar and Stellar Astrophysics +1309.4075 +1309.4527 Theory +1309.5037 Numerical Analysis +1309.5119 Strongly Correlated Electrons +1310.5552 Physics Education +1310.8119 Rings and Algebras +1310.8213 Materials Science +1310.8455 Symbolic Computation +1311.1328 Solar and Stellar Astrophysics +1311.1399 Instrumentation and Methods for Astrophysics +1311.6050 Physics and Society +1311.7687 Lattice +1312.7811 Quantum Gases +1312.7820 Discrete Mathematics +1401.0575 Quantum Gases +1401.0647 Symbolic Computation +1401.1274 Physics and Society +1401.2447 Phenomenology +1401.4852 Earth and Planetary Astrophysics +1401.5478 Phenomenology +1401.5819 +1401.6246 Statistical Mechanics +1401.6664 Dynamical Systems +1401.6730 Phenomenology +1401.7564 +1401.7641 Theory +1402.0069 Optimization and Control +1402.0161 Phenomenology +1402.1555 Fluid Dynamics +1402.2406 Instrumentation and Detectors +1402.3415 Solar and Stellar Astrophysics +1402.3907 Phenomenology +1402.4192 Mesoscale and Nanoscale Physics +1402.4616 Instrumentation and Methods for Astrophysics +1402.5093 Chemical Physics +1402.5274 Mesoscale and Nanoscale Physics +1402.6074 Algebraic Topology +1402.6108 High Energy Astrophysical Phenomena +1403.0035 +1403.0081 +1403.0739 Dynamical Systems +1403.3329 Instrumentation and Detectors +1403.3844 Algebraic Geometry +1403.4023 Multiagent Systems +1403.4589 Cosmology and Nongalactic Astrophysics +1403.7969 Atomic Physics +1404.0183 Theory +1404.1759 Atomic Physics +1404.2633 Theory +1404.2738 Superconductivity +1404.3480 Number Theory +1404.4515 Molecular Networks +1404.4550 Computational Finance +1404.5754 Quantum Gases +1404.6134 Biomolecules +1404.6502 Data Structures and Algorithms +1404.6988 Cosmology and Nongalactic Astrophysics +1404.7393 Astrophysics of Galaxies +1405.1328 Cryptography and Security +1405.3412 Astrophysics of Galaxies +1405.3733 Numerical Analysis +1405.4821 Theory +1405.4845 Soft Condensed Matter +1405.5154 Algebraic Geometry +1405.5264 Numerical Analysis +1405.6326 Computers and Society +1405.6559 Combinatorics +1406.5134 Atomic Physics +1406.5936 Commutative Algebra +1406.6005 Algebraic Geometry +1406.6186 Dynamical Systems +1406.6348 Statistics Theory +1406.6358 Chemical Physics +1406.6393 Logic in Computer Science +1406.6494 Discrete Mathematics +1406.6683 Logic in Computer Science +1406.6705 Social and Information Networks +1406.6717 K-Theory and Homology +1406.6718 Geometric Topology +1406.6720 Machine Learning +1406.6724 High Energy Astrophysical Phenomena +1406.6725 Functional Analysis +1406.6727 Solar and Stellar Astrophysics +1406.6728 Applications +1406.6729 Quantum Algebra +1406.6731 Biological Physics +1406.6733 Functional Analysis +1406.6736 Combinatorics +1406.6741 Metric Geometry +1406.6743 Accelerator Physics +1406.6745 Number Theory +1406.6746 Combinatorics +1406.6748 Combinatorics +1406.6752 Analysis of PDEs +1406.6759 Rings and Algebras +1406.6760 Fluid Dynamics +1406.6764 Artificial Intelligence +1406.6769 Dynamical Systems +1406.6774 Differential Geometry +1406.6775 Classical Analysis and ODEs +1406.6778 Databases +1406.6779 Mesoscale and Nanoscale Physics +1406.6782 +1406.6783 Information Theory +1406.6784 Phenomenology +1406.6787 Phenomenology +1406.6789 Category Theory +1406.6794 High Energy Astrophysical Phenomena +1406.6795 Representation Theory +1406.6796 Strongly Correlated Electrons +1406.6799 Applications +1406.6803 Geometric Topology +1406.6804 Category Theory +1406.6806 Mesoscale and Nanoscale Physics +1406.6807 Analysis of PDEs +1406.6808 Numerical Analysis +1406.6809 Number Theory +1406.6810 Superconductivity +1406.6812 Learning +1406.6815 Mesoscale and Nanoscale Physics +1406.6817 Solar and Stellar Astrophysics +1406.6824 Analysis of PDEs +1406.6827 Phenomenology +1406.6829 Computers and Society +1406.6830 Complex Variables +1406.6832 Social and Information Networks +1406.6834 Software Engineering +1406.6837 Group Theory +1406.6838 Phenomenology +1406.6839 General Topology +1406.6840 Information Retrieval +1406.6847 Instrumentation and Methods for Astrophysics +1406.6849 Geometric Topology +1406.6851 Number Theory +1406.6854 Cryptography and Security +1406.6856 Mesoscale and Nanoscale Physics +1406.6858 Materials Science +1406.6859 Multiagent Systems +1406.6860 Representation Theory +1406.6862 Applications +1406.6865 Instrumentation and Detectors +1406.6870 Combinatorics +1406.6873 Robotics +1406.6880 Classical Analysis and ODEs +1406.6881 Mesoscale and Nanoscale Physics +1406.6883 Probability +1406.6885 Astrophysics of Galaxies +1406.6888 Numerical Analysis +1406.6894 Number Theory +1406.6897 Statistics Theory +1406.6904 Functional Analysis +1406.6907 Geometric Topology +1406.6910 Dynamical Systems +1406.6912 Quantitative Methods +1406.6916 History and Overview +1406.6917 +1406.6918 Combinatorics +1406.6920 Information Theory +1406.6922 Complex Variables +1406.6923 Numerical Analysis +1406.6926 Statistical Mechanics +1406.6929 Optimization and Control +1406.6931 Functional Analysis +1406.6940 Portfolio Management +1406.6944 Complex Variables +1406.6945 Materials Science +1406.6947 Computer Vision and Pattern Recognition +1406.6949 +1406.6952 Risk Management +1406.6953 Number Theory +1406.6958 +1406.6963 Number Theory +1406.6965 Phenomenology +1406.6966 Functional Analysis +1406.6970 Optimization and Control +1406.6972 Optimization and Control +1406.6973 Artificial Intelligence +1406.6981 Analysis of PDEs +1406.6983 Metric Geometry +1406.6984 Differential Geometry +1406.6985 Optimization and Control +1406.6990 +1406.6993 History and Philosophy of Physics +1406.6998 Other Computer Science +1406.7000 Software Engineering +1406.7002 Information Theory +astro-ph/0610589 +hep-th/0511173 Theory +1104.2576 General Physics +0708.1649 +0906.2597 High Energy Astrophysical Phenomena +0910.5727 High Energy Astrophysical Phenomena +1002.1142 Statistics Theory +1003.2756 Combinatorics +1008.3545 Differential Geometry +1012.3208 Solar and Stellar Astrophysics +1101.0330 General Physics +1105.0993 Cosmology and Nongalactic Astrophysics +1106.2082 +1109.4726 Statistical Finance +1110.1696 Representation Theory +1110.2118 Superconductivity +1111.5262 +1111.7173 +1112.2217 +1112.4932 Mesoscale and Nanoscale Physics +1112.5826 Operator Algebras +1201.1753 Probability +1201.2185 Other Condensed Matter +1201.5178 Algebraic Topology +1202.0258 Statistics Theory +1203.0463 Analysis of PDEs +1203.4014 General Physics +1204.0763 Cosmology and Nongalactic Astrophysics +1204.2358 Computer Vision and Pattern Recognition +1205.5902 Dynamical Systems +1207.2384 Analysis of PDEs +1207.3574 Information Theory +1208.5656 Fluid Dynamics +1208.6455 K-Theory and Homology +1209.3208 K-Theory and Homology +1209.4899 Phenomenology +1209.5759 Phenomenology +1210.1074 Statistics Theory +1210.2135 Representation Theory +1210.3708 Number Theory +1210.4306 Mesoscale and Nanoscale Physics +1210.5550 Cosmology and Nongalactic Astrophysics +1210.5838 Number Theory +1210.7116 Materials Science +1210.8024 Materials Science +1210.8103 Biological Physics +1210.8445 Phenomenology +1211.1689 Algebraic Geometry +1211.1882 General Physics +1211.2618 Theory +1211.2943 Representation Theory +1211.3301 Probability +1211.3741 Cosmology and Nongalactic Astrophysics +1212.1071 Combinatorics +1212.3500 Analysis of PDEs +1212.3749 Functional Analysis +1212.5153 Probability +1301.3029 Analysis of PDEs +1301.4010 Data Structures and Algorithms +1301.5360 Cosmology and Nongalactic Astrophysics +1302.0195 Probability +1302.0662 Differential Geometry +1302.2231 Portfolio Management +1302.2247 Networking and Internet Architecture +1302.2655 Combinatorics +1302.4758 Probability +1302.6409 Phenomenology +1303.4697 Atomic Physics +1303.4739 Cosmology and Nongalactic Astrophysics +1303.4857 +1303.5373 Commutative Algebra +1303.5978 Probability +1303.6945 +1304.1660 Experiment +1304.2287 General Physics +1304.8005 Algebraic Geometry +1305.1022 Cryptography and Security +1305.4329 Phenomenology +1305.4363 Group Theory +1305.4761 Mesoscale and Nanoscale Physics +1305.5171 Superconductivity +1305.5494 +1305.5570 High Energy Astrophysical Phenomena +1305.5966 Algebraic Geometry +1305.6245 Probability +1306.0987 Number Theory +1306.2288 Cosmology and Nongalactic Astrophysics +1306.2445 High Energy Astrophysical Phenomena +1306.3139 Materials Science +1306.3410 Operator Algebras +1306.3851 Functional Analysis +1306.4038 Phenomenology +1306.4973 Analysis of PDEs +1306.5035 Soft Condensed Matter +1306.5695 Phenomenology +1306.6619 +1307.0107 Geometric Topology +1307.0490 Probability +1307.2661 Networking and Internet Architecture +1307.3211 Superconductivity +1307.3667 Logic +1307.4224 Phenomenology +1307.4577 Atomic Physics +1307.4913 Superconductivity +1307.5232 Instrumentation and Methods for Astrophysics +1307.5807 Commutative Algebra +1307.7477 Computer Science and Game Theory +1307.7633 Networking and Internet Architecture +1308.1526 Phenomenology +1308.2389 Mesoscale and Nanoscale Physics +1308.3034 Group Theory +1308.3206 +1308.3708 Mesoscale and Nanoscale Physics +1308.4791 Information Theory +1309.0300 Operator Algebras +1309.0690 Theory +1309.0883 Strongly Correlated Electrons +1309.2074 Computer Vision and Pattern Recognition +1309.3076 Materials Science +1309.3165 Geometric Topology +1309.6285 Materials Science +1309.7188 +1309.7378 Number Theory +1309.7492 Mesoscale and Nanoscale Physics +1309.7700 Statistical Mechanics +1310.0852 Geometric Topology +1310.1663 +1310.1692 Materials Science +1310.1797 Phenomenology +1310.2185 +1310.2280 Fluid Dynamics +1310.2455 Superconductivity +1310.3071 Atomic Physics +1310.3228 Materials Science +1310.3714 Instrumentation and Methods for Astrophysics +1310.5210 Materials Science +1310.6843 +1310.7676 Classical Analysis and ODEs +1310.7693 Pattern Formation and Solitons +1311.0018 +1311.1164 Phenomenology +1311.2234 Machine Learning +1311.2236 Machine Learning +1311.2272 Learning +1311.2313 Mesoscale and Nanoscale Physics +1311.2348 Other Condensed Matter +1311.2438 Mesoscale and Nanoscale Physics +1311.2510 +1311.2600 Phenomenology +1311.2888 Theory +1311.3257 Machine Learning +1311.3396 Logic in Computer Science +1311.4484 Cosmology and Nongalactic Astrophysics +1311.5418 Superconductivity +1311.5692 Instrumentation and Detectors +1311.5931 +1311.5983 +1311.5994 +1311.6128 Chaotic Dynamics +1311.6289 Phenomenology +1311.6472 Phenomenology +1311.6504 Strongly Correlated Electrons +1311.6516 Mesoscale and Nanoscale Physics +1311.6742 Group Theory +1312.0740 Theory +1312.1129 Experiment +1312.1831 Computer Science and Game Theory +1312.1932 Chemical Physics +1312.3422 Data Structures and Algorithms +1312.4277 Differential Geometry +1312.4314 Learning +1312.4556 Phenomenology +1312.4560 Theory +1312.4569 Computer Vision and Pattern Recognition +1312.5004 +1312.5260 Metric Geometry +1312.5623 Mesoscale and Nanoscale Physics +1312.5885 Phenomenology +1312.5940 Computer Vision and Pattern Recognition +1312.6443 Data Analysis, Statistics and Probability +1312.6686 +1312.7404 Differential Geometry +1401.0509 Computation and Language +1401.0686 Quantum Gases +1401.1013 +1401.3143 Classical Analysis and ODEs +1401.6572 Cosmology and Nongalactic Astrophysics +1401.7894 Statistical Mechanics +1402.0526 Theory +1402.1199 Combinatorics +1402.2718 Probability +1402.3017 Pattern Formation and Solitons +1402.3284 Differential Geometry +1402.3336 Combinatorics +1402.4386 Fluid Dynamics +1402.4391 Fluid Dynamics +1402.5085 Analysis of PDEs +1402.5108 Classical Physics +1402.5221 Analysis of PDEs +1402.5345 +1402.5402 Combinatorics +1402.5829 Combinatorics +1402.6750 Optimization and Control +1402.6803 Algebraic Geometry +1402.6990 Theory +1402.7284 Chemical Physics +1403.0401 Earth and Planetary Astrophysics +1403.0862 Earth and Planetary Astrophysics +1403.0973 Classical Physics +1403.1019 Data Structures and Algorithms +1403.1274 Probability +1403.1479 Combinatorics +1403.1525 +1403.1876 Statistics Theory +1403.1885 Optics +1403.1889 Portfolio Management +1403.1890 Networking and Internet Architecture +1403.1893 Machine Learning +1403.1896 Computer Science and Game Theory +1403.1897 Information Theory +1403.1900 Differential Geometry +1403.1906 Cryptography and Security +1403.1909 General Topology +1403.1910 Cryptography and Security +1403.1911 Computational Complexity +1403.1915 Algebraic Geometry +1403.1916 Combinatorics +1403.1920 Neurons and Cognition +1403.1923 Other Computer Science +1403.1924 Strongly Correlated Electrons +1403.1925 Dynamical Systems +1403.1928 Hardware Architecture +1403.1933 Atmospheric and Oceanic Physics +1403.1934 Functional Analysis +1403.1935 Functional Analysis +1403.1936 Software Engineering +1403.1939 Information Retrieval +1403.1940 Number Theory +1403.1943 Chaotic Dynamics +1403.1944 Learning +1403.1946 Learning +1403.1949 Learning +1403.1953 Dynamical Systems +1403.1956 Computers and Society +1403.1957 Populations and Evolution +1403.1963 Symplectic Geometry +1403.1966 Earth and Planetary Astrophysics +1403.1968 Solar and Stellar Astrophysics +1403.1969 Strongly Correlated Electrons +1403.1973 Algebraic Topology +1403.1974 Computer Vision and Pattern Recognition +1403.1979 Functional Analysis +1403.1982 Quantum Algebra +1403.1983 Algebraic Topology +1403.1984 +1403.1988 Discrete Mathematics +1403.1994 Statistics Theory +1403.1997 Theory +1403.1998 Other Condensed Matter +1403.2000 Computational Engineering, Finance, and Science +1403.2001 Information Theory +1403.2002 Computational Engineering, Finance, and Science +1403.2003 Applications +1403.2004 Computation and Language +1403.2005 +1403.2006 Social and Information Networks +1403.2009 Data Structures and Algorithms +1403.2017 +1403.2020 Geometric Topology +1403.2022 Statistics Theory +1403.2024 Social and Information Networks +1403.2025 Algebraic Geometry +1403.2027 Algebraic Geometry +1403.2031 Computer Vision and Pattern Recognition +1403.2032 Strongly Correlated Electrons +1403.2036 Digital Libraries +1403.2037 Functional Analysis +1403.2041 Data Structures and Algorithms +1403.2042 Computers and Society +1403.2043 Distributed, Parallel, and Cluster Computing +1403.2044 Cosmology and Nongalactic Astrophysics +1403.2045 Probability +1403.2050 Statistical Finance +1403.2055 +1403.2056 Data Structures and Algorithms +1403.2058 Symplectic Geometry +1403.2060 Pricing of Securities +1403.2063 Dynamical Systems +1403.2066 Probability +1403.2068 +1403.2069 +1403.2070 +1403.2073 Numerical Analysis +1403.2078 Superconductivity +1403.2081 Information Theory +1403.2091 Group Theory +1403.2092 Data Structures and Algorithms +1403.2095 Number Theory +1403.2096 Digital Libraries +1403.2098 Networking and Internet Architecture +1403.2100 Soft Condensed Matter +1403.2101 Materials Science +1403.2105 Algebraic Geometry +1403.2111 Information Theory +1403.2113 Phenomenology +1403.2116 Systems and Control +1403.2117 Differential Geometry +1403.2118 Combinatorics +1403.2124 Computation and Language +1403.2127 +1403.2128 Materials Science +1403.2133 Analysis of PDEs +1403.2135 Dynamical Systems +1403.2137 Applications +1403.2144 +1403.2146 Complex Variables +1403.2148 Classical Physics +1403.2149 Strongly Correlated Electrons +1403.2150 Machine Learning +1403.2152 Computation and Language +1403.2156 +1403.2164 Optics +1403.2165 Combinatorics +1403.2168 Plasma Physics +1403.2172 +1403.2181 Cosmology and Nongalactic Astrophysics +1403.2182 Disordered Systems and Neural Networks +1403.2184 Functional Analysis +1403.2187 Distributed, Parallel, and Cluster Computing +1403.2188 Classical Analysis and ODEs +1403.2192 Theory +1403.2195 Classical Analysis and ODEs +1403.2198 Optics +1403.2204 Phenomenology +1403.2208 High Energy Astrophysical Phenomena +1403.2209 Number Theory +1403.2211 Geophysics +1403.2214 Probability +1403.2215 Probability +1403.2221 Classical Physics +1403.2224 Group Theory +1403.2232 +1403.2233 +1403.2234 Classical Analysis and ODEs +1403.2237 Cryptography and Security +1403.2246 Solar and Stellar Astrophysics +1403.2249 Metric Geometry +1403.2253 Spectral Theory +1403.2256 Operator Algebras +1403.2257 Dynamical Systems +1403.2264 Number Theory +1403.2266 Astrophysics of Galaxies +1403.2269 Subcellular Processes +1403.2270 Complex Variables +1403.2273 Numerical Analysis +1403.2276 Earth and Planetary Astrophysics +1403.2278 Representation Theory +1403.2280 Materials Science +1403.2287 Solar and Stellar Astrophysics +1403.2288 Optics +1403.2289 Rings and Algebras +1403.2294 Numerical Analysis +1403.2295 Learning +1403.2296 Materials Science +1403.2301 Functional Analysis +1403.2302 Solar and Stellar Astrophysics +1403.2308 High Energy Astrophysical Phenomena +1403.2315 Quantum Gases +1403.2316 Superconductivity +1403.2318 Accelerator Physics +1403.2320 Theory +1403.2325 +1403.2326 Physics Education +1403.2331 Networking and Internet Architecture +1403.2333 Theory +1403.2338 Functional Analysis +1403.2339 Combinatorics +1403.2340 Numerical Analysis +1403.2344 Combinatorics +1403.2345 Social and Information Networks +1403.2346 Analysis of PDEs +1403.2347 Geometric Topology +1403.2348 Analysis of PDEs +1403.2350 Analysis of PDEs +1403.2353 General Physics +1403.2354 Combinatorics +1403.2356 Optimization and Control +1403.2358 Disordered Systems and Neural Networks +1403.2359 Materials Science +1403.2360 Information Theory +1403.2363 Statistics Theory +1403.2371 +astro-ph/0301549 +0707.2755 Theory +1003.4842 Optimization and Control +1009.0498 Optimization and Control +1106.1318 Theory +1106.3821 Rings and Algebras +1106.5715 Theory +1107.1668 Atomic Physics +1202.0631 +1203.3780 Rings and Algebras +1204.5150 Fluid Dynamics +1204.5271 Number Theory +1205.0171 Complex Variables +1205.6652 General Physics +1206.6701 Methodology +1207.2456 Functional Analysis +1207.4854 Statistics Theory +1208.4662 Medical Physics +1208.4878 Statistical Mechanics +1209.3972 Computational Physics +1210.3026 +1211.0373 Statistics Theory +1211.5049 +1301.4938 Logic in Computer Science +1301.6114 Risk Management +1301.6246 Phenomenology +1301.6256 Information Theory +1301.7166 Analysis of PDEs +1302.6994 Cosmology and Nongalactic Astrophysics +1302.7243 Solar and Stellar Astrophysics +1303.6832 Analysis of PDEs +1303.6834 Analysis of PDEs +1303.7167 Theory +1304.0673 Numerical Analysis +1304.6406 Strongly Correlated Electrons +1304.8086 +1305.1019 Learning +1305.2016 Fluid Dynamics +1305.3173 Phenomenology +1305.4652 Mesoscale and Nanoscale Physics +1306.1726 Mesoscale and Nanoscale Physics +1306.2947 Quantum Gases +1307.1673 Superconductivity +1307.3751 Optimization and Control +1307.4455 High Energy Astrophysical Phenomena +1307.4510 Solar and Stellar Astrophysics +1307.5347 Superconductivity +1307.5432 +1307.5892 +1308.0494 Accelerator Physics +1308.4233 Exactly Solvable and Integrable Systems +1308.4922 Learning +1309.0064 Materials Science +1309.0588 Theory +1309.1203 +1309.3119 Earth and Planetary Astrophysics +1309.3666 Classical Analysis and ODEs +1309.3696 Computational Geometry +1309.7173 Artificial Intelligence +1309.7212 Phenomenology +1309.7913 Strongly Correlated Electrons +1310.0020 Cosmology and Nongalactic Astrophysics +1310.0443 +1310.2643 Materials Science +1310.3038 Cosmology and Nongalactic Astrophysics +1310.5644 +1310.6047 Phenomenology +1310.6299 Programming Languages +1310.7526 Geometric Topology +1310.8306 Quantum Gases +1311.5331 Materials Science +1311.6097 Strongly Correlated Electrons +1312.0910 Distributed, Parallel, and Cluster Computing +1312.1018 +1312.1082 Superconductivity +1312.1182 General Physics +1312.2044 Rings and Algebras +1312.2480 Algebraic Geometry +1312.2517 +1312.3456 +1312.4484 Geophysics +1312.5034 Phenomenology +1312.6360 +1312.6578 Classical Analysis and ODEs +1312.7225 Dynamical Systems +1312.7283 Biomolecules +1312.7707 Classical Analysis and ODEs +1312.7732 Probability +1312.7746 +1312.7864 Optimization and Control +1401.0069 Databases +1401.0248 Numerical Analysis +1401.0321 +1401.0534 Other Computer Science +1401.0535 Solar and Stellar Astrophysics +1401.0543 Information Theory +1401.0546 Neural and Evolutionary Computing +1401.0547 Solar and Stellar Astrophysics +1401.0551 Solar and Stellar Astrophysics +1401.0554 Algebraic Geometry +1401.0555 General Physics +1401.0556 Algebraic Geometry +1401.0559 Numerical Analysis +1401.0561 Cryptography and Security +1401.0564 Software Engineering +1401.0565 Solar and Stellar Astrophysics +1401.0566 +1401.0567 Group Theory +1401.0570 Group Theory +1401.0578 Information Theory +1401.0579 Data Structures and Algorithms +1401.0582 Materials Science +1401.0583 Computer Vision and Pattern Recognition +1401.0585 Human-Computer Interaction +1401.0587 Biological Physics +1401.0589 Probability +1401.0591 Computers and Society +1401.0592 Optics +1401.0598 Human-Computer Interaction +1401.0602 Number Theory +1401.0603 Differential Geometry +1401.0606 Biomolecules +1401.0608 Distributed, Parallel, and Cluster Computing +1401.0609 Statistics Theory +1401.0611 Quantum Algebra +1401.0612 Exactly Solvable and Integrable Systems +1401.0616 Numerical Analysis +1401.0618 Complex Variables +1401.0625 Data Structures and Algorithms +1401.0626 Materials Science +1401.0627 Mesoscale and Nanoscale Physics +1401.0628 Differential Geometry +1401.0630 Optics +1401.0631 Differential Geometry +1401.0632 +1401.0633 +1401.0640 Computation and Language +1401.0641 Dynamical Systems +1401.0644 Operator Algebras +1401.0649 +1401.0650 +1401.0660 Computation and Language +1401.0661 Optimization and Control +1401.0665 Solar and Stellar Astrophysics +1401.0670 Information Theory +1401.0674 Dynamical Systems +1401.0676 Optics +1401.0677 Probability +1401.0680 +1401.0684 Discrete Mathematics +1401.0691 Algebraic Geometry +1401.0692 Medical Physics +1401.0697 Other Quantitative Biology +1401.0707 Solar and Stellar Astrophysics +1401.0708 Computation and Language +1401.0718 Data Analysis, Statistics and Probability +1401.0719 Exactly Solvable and Integrable Systems +1401.0720 Earth and Planetary Astrophysics +math/0608493 Complex Variables +math/0702755 Rings and Algebras +0710.2332 +0805.0503 Statistical Mechanics +0807.2509 +1006.1833 Probability +1008.1756 Numerical Analysis +1010.3555 Differential Geometry +1107.1337 Probability +1107.2379 Learning +1108.0799 Trading and Market Microstructure +1111.2956 +1112.6343 +1203.0688 +1203.4072 Commutative Algebra +1205.0240 Differential Geometry +1207.4838 Complex Variables +1208.6283 +1210.1893 Number Theory +1211.3012 +1212.0348 Disordered Systems and Neural Networks +1301.6268 Probability +1303.0946 +1304.3061 +1305.3618 Geophysics +1305.5070 +1307.4025 +1308.2554 +1308.2767 +1308.3251 Algebraic Geometry +1308.3799 Information Theory +1309.1151 Information Theory +1309.4277 +1309.4735 Atmospheric and Oceanic Physics +1309.7823 Probability +1310.3370 Digital Libraries +1310.3961 Experiment +1310.3963 Mesoscale and Nanoscale Physics +1311.2699 Theory +1311.6140 High Energy Astrophysical Phenomena +1312.1903 Computation +1312.2751 Theory +1312.4205 Algebraic Geometry +1312.5139 Quantum Gases +1312.6073 +1312.6535 Quantum Gases +1401.1192 Phenomenology +1401.2096 Theory +1401.3216 Differential Geometry +1401.7460 +1402.0267 Analysis of PDEs +1402.1093 +1402.1277 Mesoscale and Nanoscale Physics +1402.4488 Computer Science and Game Theory +1402.4854 Theory +1402.7112 Applications +1403.1214 Social and Information Networks +1403.1282 Numerical Analysis +1403.1698 +1403.3434 Systems and Control +1403.3805 Methodology +1403.5633 +1403.5915 Quantum Gases +1404.1074 Functional Analysis +1404.3951 +1404.7021 Phenomenology +1404.7127 Theory +1405.0160 Solar and Stellar Astrophysics +1405.0750 +1405.3063 +1405.7491 +1406.0280 Commutative Algebra +1406.1057 Mesoscale and Nanoscale Physics +1406.1127 Optics +1406.1726 Materials Science +1406.2093 Strongly Correlated Electrons +1406.2612 Statistical Mechanics +1406.3119 Strongly Correlated Electrons +1406.5619 Populations and Evolution +1406.6709 Astrophysics of Galaxies +1406.6763 Phenomenology +1406.7249 Superconductivity +1406.7632 Geometric Topology +1407.0028 +1407.0580 Mesoscale and Nanoscale Physics +1407.0627 Superconductivity +1407.0736 Materials Science +1407.0794 Theory +1407.2708 Strongly Correlated Electrons +1407.4915 Mesoscale and Nanoscale Physics +1407.6975 Algebraic Geometry +1408.0844 Number Theory +1408.2860 Materials Science +1408.5290 Exactly Solvable and Integrable Systems +1408.5542 Accelerator Physics +1408.6352 +1408.6363 Dynamical Systems +1408.6475 Logic in Computer Science +1408.6526 Instrumentation and Methods for Astrophysics +1408.6769 Algebraic Geometry +1408.6788 Computation and Language +1408.6806 Artificial Intelligence +1408.6832 Experiment +1408.6841 Theory +1408.6843 Mesoscale and Nanoscale Physics +1408.6849 Neurons and Cognition +1408.6855 Theory +1408.6857 +1408.6861 Strongly Correlated Electrons +1408.6863 Earth and Planetary Astrophysics +1408.6866 Differential Geometry +1408.6870 Analysis of PDEs +1408.6874 Lattice +1408.6879 Optimization and Control +1408.6881 +1408.6885 +1408.6887 +1408.6888 Probability +1408.6889 Systems and Control +1408.6898 Mesoscale and Nanoscale Physics +1408.6901 +1408.6902 Materials Science +1408.6904 Materials Science +1408.6906 Materials Science +1408.6907 Differential Geometry +1408.6909 Materials Science +1408.6910 Materials Science +1408.6913 Optimization and Control +1408.6915 Computer Vision and Pattern Recognition +1408.6918 Group Theory +1408.6921 Materials Science +1408.6923 Distributed, Parallel, and Cluster Computing +1408.6928 Discrete Mathematics +1408.6930 Information Retrieval +1408.6934 Solar and Stellar Astrophysics +1408.6939 Representation Theory +1408.6944 Probability +1408.6945 Analysis of PDEs +1408.6946 Phenomenology +1408.6959 Physics and Society +1408.6960 Mesoscale and Nanoscale Physics +1408.6963 Computer Vision and Pattern Recognition +1408.6965 +1408.6970 Cryptography and Security +1408.6973 Physics and Society +1408.6974 Computational Geometry +1408.6975 Experiment +1408.6978 Algebraic Geometry +1408.6981 +1408.6982 Optimization and Control +1408.6985 Phenomenology +1408.6986 Cryptography and Security +1408.6988 Information Retrieval +1408.6994 Phenomenology +1408.6995 +1408.7002 +1408.7005 +1408.7006 Numerical Analysis +1408.7007 Experiment +1408.7008 Chemical Physics +1408.7010 Mathematical Finance +1408.7011 Dynamical Systems +1408.7015 +1408.7016 Computers and Society +1408.7019 Information Theory +1408.7020 Algebraic Geometry +1408.7022 Solar and Stellar Astrophysics +1408.7024 Functional Analysis +1408.7032 Combinatorics +1408.7036 Classical Analysis and ODEs +1408.7040 Physics Education +1408.7044 Combinatorics +1408.7051 Atomic Physics +1408.7056 +1408.7058 Soft Condensed Matter +1408.7060 Computational Physics +1408.7070 Distributed, Parallel, and Cluster Computing +1408.7071 Computer Vision and Pattern Recognition +1408.7073 Other Quantitative Biology +1408.7074 Materials Science +1408.7076 Other Quantitative Biology +1408.7077 Materials Science +1408.7083 Systems and Control +1408.7086 Experiment +1408.7087 +1408.7088 Statistical Mechanics +1408.7089 Algebraic Topology +1408.7090 Strongly Correlated Electrons +1408.7091 Differential Geometry +1408.7092 Artificial Intelligence +1408.7094 Social and Information Networks +1408.7095 Commutative Algebra +1408.7097 Strongly Correlated Electrons +1408.7098 Commutative Algebra +1408.7100 Commutative Algebra +1408.7104 Accelerator Physics +1408.7108 Accelerator Physics +1408.7111 Analysis of PDEs +1408.7112 +1408.7114 Data Structures and Algorithms +1408.7115 Group Theory +1408.7117 Accelerator Physics +cs/0404029 Distributed, Parallel, and Cluster Computing +0806.3095 Combinatorics +0901.2254 Soft Condensed Matter +0903.2755 Cosmology and Nongalactic Astrophysics +0905.1567 Soft Condensed Matter +0908.0871 Soft Condensed Matter +0910.0904 Number Theory +0910.3566 Algebraic Topology +0912.2897 Cosmology and Nongalactic Astrophysics +1004.5312 Soft Condensed Matter +1005.5094 Dynamical Systems +1006.3787 Computation and Language +1008.3671 Combinatorics +1010.3262 Cosmology and Nongalactic Astrophysics +1011.0570 Soft Condensed Matter +1012.5494 Programming Languages +1103.2744 Strongly Correlated Electrons +1103.4590 Soft Condensed Matter +1105.1504 Networking and Internet Architecture +1105.4570 Classical Physics +1106.1256 Cosmology and Nongalactic Astrophysics +1106.6221 Analysis of PDEs +1109.0069 Computation and Language +1109.0924 Materials Science +1109.2687 Geometric Topology +1110.1959 Quantum Algebra +1110.3616 Optimization and Control +1111.0700 Optimization and Control +1111.3575 Mesoscale and Nanoscale Physics +1111.4849 Number Theory +1112.4121 Dynamical Systems +1202.5230 Social and Information Networks +1203.1360 Algebraic Geometry +1203.1975 Methodology +1203.2537 Algebraic Geometry +1203.5092 Probability +1203.6509 Combinatorics +1204.6541 Materials Science +1206.2717 Combinatorics +1206.5401 Information Theory +1207.5573 Dynamical Systems +1208.0602 Cosmology and Nongalactic Astrophysics +1208.1473 Dynamical Systems +1208.3706 +1209.1835 Cosmology and Nongalactic Astrophysics +1209.4380 Representation Theory +1210.0175 Quantum Algebra +1210.0894 Differential Geometry +1210.1621 Combinatorics +1210.2603 Phenomenology +1210.3092 Computational Geometry +1210.4801 Phenomenology +1210.5288 Social and Information Networks +1211.0740 Materials Science +1211.2025 Number Theory +1211.2621 Algebraic Geometry +1211.5751 Analysis of PDEs +1211.6875 Combinatorics +1212.1194 Biological Physics +1212.4477 Dynamical Systems +1301.0924 Mesoscale and Nanoscale Physics +1301.2469 Functional Analysis +1301.5667 Representation Theory +1303.1399 Logic in Computer Science +1303.1883 Applications +1303.2222 Algebraic Geometry +1303.2849 +1303.4441 Computer Science and Game Theory +1303.4677 Probability +1304.0754 Representation Theory +1304.5112 Information Theory +1304.5502 Differential Geometry +1304.7314 Superconductivity +1305.2866 Computational Geometry +1305.5822 Atomic Physics +1306.1253 Superconductivity +1306.2054 Dynamical Systems +1306.4026 Group Theory +1306.6821 Numerical Analysis +1307.0384 Number Theory +1307.2103 Mesoscale and Nanoscale Physics +1307.3253 Strongly Correlated Electrons +1307.4807 +1307.5213 Algebraic Topology +1307.6948 Computational Complexity +1307.6952 Soft Condensed Matter +1308.0828 Mesoscale and Nanoscale Physics +1308.2483 Theory +1308.3456 Symplectic Geometry +1308.5701 Number Theory +1309.1471 Strongly Correlated Electrons +1309.2239 Mesoscale and Nanoscale Physics +1309.2319 Populations and Evolution +1309.2893 Exactly Solvable and Integrable Systems +1309.4833 +1310.0450 Computational Physics +1310.0819 Theory +1310.2240 Theory +1310.5321 Quantum Algebra +1310.5515 Information Theory +1310.6241 +1310.7459 Mesoscale and Nanoscale Physics +1310.8103 High Energy Astrophysical Phenomena +1311.1755 Cosmology and Nongalactic Astrophysics +1311.2391 Differential Geometry +1311.3050 Complex Variables +1311.3380 +1311.3995 Information Theory +1311.4885 Quantum Gases +1311.5094 +1311.7113 Information Theory +1312.1023 Combinatorics +1312.1734 Cosmology and Nongalactic Astrophysics +1312.1859 Biological Physics +1312.4068 History and Philosophy of Physics +1312.4637 Computer Vision and Pattern Recognition +1312.4869 Algebraic Geometry +1312.5135 History and Overview +1312.5217 +1312.6034 Computer Vision and Pattern Recognition +1312.7113 Mesoscale and Nanoscale Physics +1312.7808 Cosmology and Nongalactic Astrophysics +1312.7818 Optics +1401.0164 Statistical Mechanics +1401.0388 Analysis of PDEs +1401.0999 Theory +1401.2191 Atomic Physics +1401.4099 Phenomenology +1401.5393 Algebraic Geometry +1401.6177 Superconductivity +1401.6190 Information Theory +1401.6623 Machine Learning +1402.0095 Strongly Correlated Electrons +1402.0342 +1402.1373 Instrumentation and Methods for Astrophysics +1402.2607 General Physics +1402.2799 Classical Analysis and ODEs +1402.3547 Data Structures and Algorithms +1402.3736 Combinatorics +1402.3810 Algebraic Geometry +1402.4881 Information Theory +1402.5912 Information Theory +1402.7286 Superconductivity +1403.0827 Instrumentation and Detectors +1403.1086 Pricing of Securities +1403.5008 Materials Science +1403.6667 Instrumentation and Detectors +1403.6870 Mathematical Software +1403.7370 Physics and Society +1403.7530 Superconductivity +1403.7871 Strongly Correlated Electrons +1403.8005 Superconductivity +1403.8067 Computer Vision and Pattern Recognition +1404.1545 Phenomenology +1404.1629 Analysis of PDEs +1404.1681 +1404.2183 Number Theory +1404.2469 Materials Science +1404.2693 Number Theory +1404.2842 Distributed, Parallel, and Cluster Computing +1404.3404 Analysis of PDEs +1404.3491 Probability +1404.3679 General Mathematics +1404.3791 Differential Geometry +1404.4163 Computer Science and Game Theory +1404.4230 Phenomenology +1404.4271 Symplectic Geometry +1404.4312 Computational Geometry +1404.4688 Computer Science and Game Theory +1404.4865 Performance +1404.4869 Earth and Planetary Astrophysics +1404.4878 Numerical Analysis +1404.4880 Computer Vision and Pattern Recognition +1404.4881 Computational Physics +1404.4884 Artificial Intelligence +1404.4885 Commutative Algebra +1404.4886 +1404.4893 Artificial Intelligence +1404.4895 Data Structures and Algorithms +1404.4896 Complex Variables +1404.4900 +1404.4902 Materials Science +1404.4903 Phenomenology +1404.4904 Digital Libraries +1404.4907 Combinatorics +1404.4910 Distributed, Parallel, and Cluster Computing +1404.4912 +1404.4917 Probability +1404.4920 Number Theory +1404.4924 High Energy Astrophysical Phenomena +1404.4925 Networking and Internet Architecture +1404.4930 Representation Theory +1404.4935 Information Retrieval +1404.4939 Information Theory +1404.4940 +1404.4942 Computer Vision and Pattern Recognition +1404.4944 Optimization and Control +1404.4947 Optimization and Control +1404.4948 +1404.4950 General Finance +1404.4954 Probability +1404.4959 Commutative Algebra +1404.4961 +1404.4962 Functional Analysis +1404.4964 Number Theory +1404.4967 Geometric Topology +1404.4970 Software Engineering +1404.4971 Functional Analysis +1404.4973 History and Overview +1404.4974 Geometric Topology +1404.4980 Functional Analysis +1404.4982 Data Structures and Algorithms +1404.4983 Artificial Intelligence +1404.4984 Information Theory +1404.4985 Computers and Society +1404.4987 Combinatorics +1404.4988 Functional Analysis +1404.4994 Analysis of PDEs +1404.4995 Information Theory +1404.5000 Computer Science and Game Theory +1404.5001 Rings and Algebras +1404.5002 Social and Information Networks +1404.5003 Combinatorics +1404.5006 Differential Geometry +1404.5008 Phenomenology +1404.5010 Genomics +1404.5016 Classical Analysis and ODEs +1404.5019 Spectral Theory +1404.5021 Information Theory +1404.5023 Rings and Algebras +1404.5025 Algebraic Geometry +1404.5026 Commutative Algebra +1404.5028 Machine Learning +1404.5029 Cryptography and Security +1404.5032 Numerical Analysis +1404.5036 Analysis of PDEs +1404.5037 Information Theory +1404.5039 Probability +1404.5043 Information Theory +1404.5046 Biomolecules +1404.5051 Metric Geometry +1404.5055 Information Theory +1404.5060 Information Theory +1404.5062 Computational Engineering, Finance, and Science +1404.5075 Quantum Gases +1404.5078 Artificial Intelligence +1404.5080 High Energy Astrophysical Phenomena +1404.5082 Complex Variables +1404.5087 Numerical Analysis +1404.5092 Algebraic Geometry +1404.5096 Optimization and Control +1404.5098 Group Theory +1404.5099 Group Theory +1404.5103 Neurons and Cognition +1404.5107 Dynamical Systems +1404.5110 +1404.5111 Molecular Networks +1404.5114 Dynamical Systems +1404.5120 Probability +1404.5121 Performance +1404.5127 Computer Science and Game Theory +1404.5128 Functional Analysis +1404.5130 Dynamical Systems +1404.5136 Soft Condensed Matter +1404.5142 Number Theory +1404.5143 Classical Analysis and ODEs +1404.5144 Neural and Evolutionary Computing +1404.5148 Analysis of PDEs +1404.5152 Analysis of PDEs +1404.5155 Computer Science and Game Theory +1404.5156 Analysis of PDEs +1404.5161 Number Theory +1404.5162 Analysis of PDEs +1404.5168 Geophysics +1404.5169 Computational Complexity +1404.5170 Astrophysics of Galaxies +1404.5171 Materials Science +1404.5175 Astrophysics of Galaxies +1404.5176 Accelerator Physics +1404.5177 Rings and Algebras +1404.5178 Number Theory +1404.5179 +1404.5180 Theory +1404.5181 Statistical Mechanics +1404.5196 Probability +1404.5197 Algebraic Topology +1404.5203 General Finance +1404.5204 Materials Science +1404.5205 Quantitative Methods +1404.5208 Quantitative Methods +1404.5209 Optimization and Control +1404.5210 Quantitative Methods +1404.5212 Quantitative Methods +1404.5214 Learning +1404.5217 Chemical Physics +1404.5218 Methodology +1404.5219 +1404.5223 Chemical Physics +1404.5225 K-Theory and Homology +1404.5227 Experiment +1404.5229 +1404.5239 Social and Information Networks +1404.5242 Adaptation and Self-Organizing Systems +1404.5246 Fluid Dynamics +1404.5248 Human-Computer Interaction +1404.5251 Classical Physics +1404.5252 Molecular Networks +1404.5254 Computational Engineering, Finance, and Science +1404.5255 General Physics +1404.5270 +1404.5271 Mathematical Finance +1404.5272 Materials Science +1404.5273 Statistical Mechanics +1404.5274 Analysis of PDEs +1404.5289 Optics +1404.5291 +1404.5293 Optics +math/0411128 Combinatorics +math/0411250 Combinatorics +0907.2852 Algebraic Geometry +1103.1772 Atomic Physics +1111.3963 +1111.4109 Algebraic Geometry +1112.4833 Theory +1203.2235 Strongly Correlated Electrons +1203.2978 Differential Geometry +1206.1814 Differential Geometry +1207.0036 Dynamical Systems +1208.3187 Probability +1211.6038 Strongly Correlated Electrons +1212.3771 +1301.3592 Learning +1302.1431 +1302.6280 Statistical Mechanics +1303.4493 Mesoscale and Nanoscale Physics +1304.0510 +1306.5198 Probability +1306.6710 Computational Geometry +1307.0159 Theory +1307.1015 Materials Science +1307.2375 Representation Theory +1307.3232 +1307.5596 Plasma Physics +1308.3705 Cosmology and Nongalactic Astrophysics +1308.5201 Dynamical Systems +1309.2583 +1310.0377 Superconductivity +1310.1202 Superconductivity +1310.1428 +1310.2450 Dynamical Systems +1310.3665 Differential Geometry +1310.4551 Strongly Correlated Electrons +1310.4773 Mesoscale and Nanoscale Physics +1310.6081 Differential Geometry +1310.7253 Accelerator Physics +1310.8354 Quantum Gases +1311.6715 Analysis of PDEs +1312.5962 Optics +1401.2369 Networking and Internet Architecture +1401.4242 Statistical Mechanics +1401.6944 Statistical Mechanics +1401.7039 Atomic Physics +1402.1453 Phenomenology +1402.2517 Materials Science +1402.2676 Machine Learning +1402.3477 Theory +1402.4602 Functional Analysis +1402.5646 Combinatorics +1402.6842 Cosmology and Nongalactic Astrophysics +1403.0645 Number Theory +1403.2286 Instrumentation and Detectors +1403.3380 High Energy Astrophysical Phenomena +1403.5418 Soft Condensed Matter +1403.6566 Graphics +1403.6727 Tissues and Organs +1403.7636 Phenomenology +1404.0883 Adaptation and Self-Organizing Systems +1404.1342 Differential Geometry +1404.1883 Number Theory +1404.3362 Cosmology and Nongalactic Astrophysics +1404.3527 Instrumentation and Detectors +1404.3608 Phenomenology +1404.3839 Social and Information Networks +1404.4522 Mesoscale and Nanoscale Physics +1404.4563 Quantum Gases +1404.5879 Cosmology and Nongalactic Astrophysics +1404.6260 Phenomenology +1404.6422 +1405.0543 Mesoscale and Nanoscale Physics +1405.1882 Optics +1405.2179 Disordered Systems and Neural Networks +1405.2787 Classical Analysis and ODEs +1405.2821 Mesoscale and Nanoscale Physics +1405.3667 Mesoscale and Nanoscale Physics +1405.5299 Representation Theory +1405.5398 +1405.5859 Phenomenology +1405.6146 Computer Science and Game Theory +1405.7653 Experiment +1406.0548 Cosmology and Nongalactic Astrophysics +1406.0640 Phenomenology +1406.0729 +1406.1181 Phenomenology +1406.1417 Phenomenology +1406.3443 Quantum Gases +1406.6462 Materials Science +1407.1052 Phenomenology +1407.1798 Materials Science +1407.4968 Differential Geometry +1408.0345 Mesoscale and Nanoscale Physics +1408.0862 +1408.1241 Materials Science +1408.2301 Solar and Stellar Astrophysics +1408.2917 Theory +1408.2953 Optics +1408.3285 Mesoscale and Nanoscale Physics +1408.3863 Digital Libraries +1408.3935 Combinatorics +1408.4379 Solar and Stellar Astrophysics +1408.4793 Databases +1408.4797 Other Computer Science +1408.4811 Strongly Correlated Electrons +1408.4812 Applications +1408.4816 Commutative Algebra +1408.4817 Computer Science and Game Theory +1408.4822 Plasma Physics +1408.4824 +1408.4825 +1408.4831 Soft Condensed Matter +1408.4832 Solar and Stellar Astrophysics +1408.4835 Astrophysics of Galaxies +1408.4838 +1408.4841 Information Theory +1408.4846 Cryptography and Security +1408.4853 Information Theory +1408.4855 Fluid Dynamics +1408.4859 Systems and Control +1408.4865 Earth and Planetary Astrophysics +1408.4867 Functional Analysis +1408.4868 Earth and Planetary Astrophysics +1408.4871 Algebraic Topology +1408.4873 Phenomenology +1408.4878 Computational Physics +1408.4881 Number Theory +1408.4883 Number Theory +1408.4885 Number Theory +1408.4890 History and Philosophy of Physics +1408.4891 History and Philosophy of Physics +1408.4894 Dynamical Systems +1408.4895 +1408.4897 Operator Algebras +1408.4899 Software Engineering +1408.4900 Data Structures and Algorithms +1408.4901 Computer Science and Game Theory +1408.4902 Computational Geometry +1408.4905 Chaotic Dynamics +1408.4906 Mesoscale and Nanoscale Physics +1408.4915 Number Theory +1408.4918 Solar and Stellar Astrophysics +1408.4919 Biological Physics +1408.4922 Chaotic Dynamics +1408.4925 Computer Science and Game Theory +1408.4930 Functional Analysis +1408.4933 Computational Geometry +1408.4935 Strongly Correlated Electrons +1408.4936 Mesoscale and Nanoscale Physics +1408.4939 Distributed, Parallel, and Cluster Computing +1408.4950 Quantitative Methods +1408.4955 Computers and Society +1408.4959 Distributed, Parallel, and Cluster Computing +1408.4960 Phenomenology +1408.4962 Probability +1408.4964 Performance +1408.4965 Computational Engineering, Finance, and Science +1408.4968 Chemical Physics +1408.4969 Distributed, Parallel, and Cluster Computing +1408.4971 Functional Analysis +1408.4973 Astrophysics of Galaxies +1408.4974 Software Engineering +1408.4975 Pattern Formation and Solitons +1408.4978 Software Engineering +1408.4979 Theory +1408.4980 Number Theory +1408.4981 Optimization and Control +1408.4983 Number Theory +1408.4984 Logic +1408.4986 Software Engineering +1408.4988 Dynamical Systems +1408.4992 Networking and Internet Architecture +1408.4994 Information Theory +1408.4997 Dynamical Systems +1408.5003 Number Theory +1408.5006 Plasma Physics +1408.5007 Populations and Evolution +1408.5008 Soft Condensed Matter +1408.5013 Mesoscale and Nanoscale Physics +1408.5015 General Topology +1408.5020 Classical Physics +1408.5023 Solar and Stellar Astrophysics +1408.5025 Classical Analysis and ODEs +1408.5026 Numerical Analysis +1408.5031 Numerical Analysis +1408.5032 Machine Learning +1408.5039 Chemical Physics +1408.5040 Number Theory +1408.5043 Number Theory +1408.5044 Experiment +1408.5047 Geophysics +1408.5052 Metric Geometry +1408.5053 Mesoscale and Nanoscale Physics +1408.5055 +1408.5063 Analysis of PDEs +1408.5065 Functional Analysis +1408.5070 Analysis of PDEs +1408.5078 Experiment +1408.5079 Physics and Society +1408.5082 Cryptography and Security +1408.5083 Chaotic Dynamics +1408.5084 Number Theory +1408.5088 Instrumentation and Detectors +1408.5090 Chemical Physics +1408.5093 Computer Vision and Pattern Recognition +1408.5098 Networking and Internet Architecture +1408.5099 Data Structures and Algorithms +1408.5103 History and Philosophy of Physics +1408.5104 Phenomenology +1408.5107 Phenomenology +1408.5108 Combinatorics +1408.5110 Number Theory +1408.5111 Physics Education +1408.5113 Solar and Stellar Astrophysics +1408.5117 Algebraic Geometry +1408.5124 Physics and Society +astro-ph/0502141 +0804.3616 Dynamical Systems +0808.2412 Statistical Mechanics +0908.0388 Logic +1007.0733 Analysis of PDEs +1011.5889 Theory +1101.1332 Quantum Gases +1101.6064 Theory +1104.5061 Optimization and Control +1107.0847 Analysis of PDEs +1109.1845 Probability +1110.4454 Analysis of PDEs +1110.4863 Group Theory +1202.0085 Commutative Algebra +1202.0186 Information Theory +1203.5656 Mesoscale and Nanoscale Physics +1204.5803 Number Theory +1204.5850 Mesoscale and Nanoscale Physics +1206.5205 +1207.2356 Quantum Gases +1207.3449 Quantum Gases +1207.5218 Analysis of PDEs +1208.0433 Numerical Analysis +1210.8337 Quantum Gases +1210.8369 Numerical Analysis +1212.2950 Combinatorics +1212.4875 Phenomenology +1301.1784 Algebraic Geometry +1301.1786 Spectral Theory +1301.1792 Number Theory +1301.1796 Algebraic Geometry +1301.5957 Complex Variables +1302.1769 Rings and Algebras +1302.1881 Mesoscale and Nanoscale Physics +1302.2408 Statistics Theory +1302.2787 Computational Complexity +1302.3713 Phenomenology +1302.5554 Applications +1303.0401 Populations and Evolution +1303.0414 Cosmology and Nongalactic Astrophysics +1303.3876 Phenomenology +1303.4900 +1303.7007 Quantum Gases +1304.3218 Quantitative Methods +1304.4145 Analysis of PDEs +1304.5018 Optics +1305.2193 Strongly Correlated Electrons +1305.2271 Functional Analysis +1305.5188 +1305.7337 Mesoscale and Nanoscale Physics +1306.2175 +1306.5100 Numerical Analysis +1306.5115 Numerical Analysis +1306.5120 Numerical Analysis +1307.0021 Solar and Stellar Astrophysics +1307.1002 Strongly Correlated Electrons +1307.3438 Strongly Correlated Electrons +1307.4771 Algebraic Geometry +1307.5573 Quantum Gases +1307.5941 Strongly Correlated Electrons +1308.0902 Cosmology and Nongalactic Astrophysics +1308.0912 +1308.1088 Cosmology and Nongalactic Astrophysics +1308.1903 Strongly Correlated Electrons +1308.1981 Computer Vision and Pattern Recognition +1308.4684 Mesoscale and Nanoscale Physics +1308.5924 +1308.6253 +1308.6260 Quantum Gases +1309.0693 +1309.0837 Methodology +1309.1214 Superconductivity +1309.1320 +1309.3069 Phenomenology +1309.5388 Cosmology and Nongalactic Astrophysics +1309.7475 Algebraic Topology +1309.7937 Systems and Control +1310.1657 Superconductivity +1310.2147 Theory +1310.2338 Logic in Computer Science +1310.3060 Superconductivity +1310.4334 Chemical Physics +1310.4794 Machine Learning +1310.8261 +1311.3305 Phenomenology +1311.3327 Statistical Mechanics +1311.5957 Instrumentation and Detectors +1312.0512 Learning +1312.0924 Earth and Planetary Astrophysics +1312.1100 Materials Science +1312.1171 Numerical Analysis +1312.1589 +1312.1688 Cosmology and Nongalactic Astrophysics +1312.2473 Instrumentation and Detectors +1312.2975 +1312.3124 Phenomenology +1312.3218 Strongly Correlated Electrons +1312.3363 Mesoscale and Nanoscale Physics +1312.4982 Earth and Planetary Astrophysics +1312.5455 Materials Science +1312.5929 Mesoscale and Nanoscale Physics +1312.7104 Statistical Mechanics +1312.7438 +1312.7703 +1312.7846 General Topology +1401.0272 +1401.0298 Superconductivity +1401.0588 +1401.2747 Materials Science +1401.4556 Number Theory +1401.4996 Optics +1401.6076 Mesoscale and Nanoscale Physics +1401.7264 Probability +1401.7378 +1401.8128 +1402.2660 Functional Analysis +1402.2866 +1402.3081 Materials Science +1402.3809 Mathematical Software +1402.4315 +1402.4802 Physics and Society +1402.5991 Applications +1403.0965 Information Theory +1403.0979 Disordered Systems and Neural Networks +1403.1331 +1403.3021 Computer Vision and Pattern Recognition +1403.3022 Computer Vision and Pattern Recognition +1403.3084 Artificial Intelligence +1403.3085 +1403.3088 Solar and Stellar Astrophysics +1403.3091 Physics and Society +1403.3105 Metric Geometry +1403.3106 Group Theory +1403.3107 Group Theory +1403.3109 Information Theory +1403.3110 Phenomenology +1403.3112 Algebraic Geometry +1403.3113 Fluid Dynamics +1403.3115 Neural and Evolutionary Computing +1403.3118 Computer Vision and Pattern Recognition +1403.3126 Systems and Control +1403.3131 Software Engineering +1403.3138 Statistical Finance +1403.3139 Rings and Algebras +1403.3149 Analysis of PDEs +1403.3150 +1403.3151 Probability +1403.3154 Analysis of PDEs +1403.3156 Other Computer Science +1403.3157 Logic in Computer Science +1403.3159 Information Theory +1403.3162 Networking and Internet Architecture +1403.3170 Functional Analysis +1403.3171 Fluid Dynamics +1403.3172 Mesoscale and Nanoscale Physics +1403.3174 Materials Science +1403.3176 Mesoscale and Nanoscale Physics +1403.3178 +1403.3182 +1403.3183 Materials Science +1403.3185 Information Retrieval +1403.3192 Metric Geometry +1403.3198 Statistical Mechanics +1403.3199 Optimization and Control +1403.3201 Classical Analysis and ODEs +1403.3204 Functional Analysis +1403.3205 +1403.3207 Functional Analysis +1403.3210 Functional Analysis +1403.3212 Portfolio Management +1403.3217 Populations and Evolution +1403.3219 Cosmology and Nongalactic Astrophysics +1403.3221 Optics +1403.3226 Algebraic Geometry +1403.3227 Probability +1403.3228 Physics and Society +1403.3230 Fluid Dynamics +1403.3231 Computation +1403.3235 Cryptography and Security +1403.3236 Differential Geometry +1403.3237 Statistical Mechanics +1403.3240 Fluid Dynamics +1403.3243 Materials Science +1403.3247 Fluid Dynamics +1403.3250 Adaptation and Self-Organizing Systems +1403.3253 Distributed, Parallel, and Cluster Computing +1403.3255 Distributed, Parallel, and Cluster Computing +1403.3256 Other Quantitative Biology +1403.3272 Classical Physics +1403.3273 Earth and Planetary Astrophysics +1403.3274 Computers and Society +1403.3275 Statistics Theory +1403.3278 Statistics Theory +1403.3279 High Energy Astrophysical Phenomena +1403.3280 Statistics Theory +1403.3281 Phenomenology +1403.3283 Soft Condensed Matter +1403.3286 Systems and Control +1403.3287 Phenomenology +1403.3291 Materials Science +1403.3292 Accelerator Physics +1403.3294 Trading and Market Microstructure +1403.3297 Information Theory +1403.3300 Computer Science and Game Theory +1403.3302 Theory +1403.3304 Databases +1403.3305 Neural and Evolutionary Computing +1403.3308 Rings and Algebras +1403.3309 History and Philosophy of Physics +1403.3310 Biomolecules +1403.3312 Networking and Internet Architecture +1403.3322 Space Physics +1403.3325 Probability +1403.3327 Astrophysics of Galaxies +1403.3328 Networking and Internet Architecture +1403.3333 Mesoscale and Nanoscale Physics +1403.3336 Programming Languages +1403.3340 Mesoscale and Nanoscale Physics +1403.3342 Machine Learning +1403.3344 Social and Information Networks +1403.3345 Optics +1403.3346 Phenomenology +1403.3349 Networking and Internet Architecture +1403.3351 Computation and Language +1403.3354 Logic +1403.3356 +1403.3359 Methodology +1403.3366 Cryptography and Security +1403.3379 Optics +1403.3387 Analysis of PDEs +0802.4111 +0912.5496 +1011.4267 Differential Geometry +1101.3332 Theory +1102.3891 +1105.3733 Theory +1105.5577 +1108.5927 Dynamical Systems +1110.0869 Phenomenology +1111.3454 Probability +1111.6789 Differential Geometry +1202.4543 Differential Geometry +1204.6604 Phenomenology +1206.0901 Phenomenology +1206.4465 Differential Geometry +1207.0374 +1207.0903 Chemical Physics +1208.1770 Theory +1211.0189 Number Theory +1212.3738 Algebraic Geometry +1212.6398 General Topology +1301.3073 Phenomenology +1301.4578 Functional Analysis +1301.5587 +1301.7326 Complex Variables +1302.1267 Probability +1303.2802 Materials Science +1303.5617 Number Theory +1304.3314 Optimization and Control +1304.6324 Probability +1304.7366 Statistics Theory +1305.6830 +1306.0266 Materials Science +1306.3815 Optimization and Control +1307.6162 Number Theory +1307.6863 Strongly Correlated Electrons +1307.7022 Lattice +1308.0724 Numerical Analysis +1308.1279 Graphics +1308.3792 Theory +1309.6120 Category Theory +1309.6250 Computational Physics +1310.1436 Phenomenology +1310.6061 Cosmology and Nongalactic Astrophysics +1310.6598 Materials Science +1310.7317 Strongly Correlated Electrons +1311.1375 +1311.1942 Plasma Physics +1311.2296 Optimization and Control +1311.4700 Neurons and Cognition +1311.5493 Algebraic Geometry +1312.1498 Probability +1401.0669 Lattice +1401.0733 Computer Vision and Pattern Recognition +1401.1250 +1401.1879 Quantum Algebra +1401.3398 Superconductivity +1401.4820 Cosmology and Nongalactic Astrophysics +1401.8208 +1401.8224 Atomic Physics +1402.1217 +1402.2237 Databases +1402.3112 Phenomenology +1402.3332 Networking and Internet Architecture +1402.3583 +1402.4399 Dynamical Systems +1403.0147 Materials Science +1403.1238 Theory +1403.1344 Optimization and Control +1403.1723 Combinatorics +1403.4498 Optimization and Control +1403.4967 Combinatorics +1403.7167 Theory +1403.7738 +1404.2685 Populations and Evolution +1404.4458 Combinatorics +1404.5451 Materials Science +1404.6085 Materials Science +1404.7787 Disordered Systems and Neural Networks +1405.0259 Theory +1405.0342 Mesoscale and Nanoscale Physics +1405.0684 Metric Geometry +1405.2943 Category Theory +1405.3868 Materials Science +1405.4813 Statistical Mechanics +1405.4842 Mesoscale and Nanoscale Physics +1405.5273 Quantum Algebra +1405.5692 Materials Science +1405.5805 General Finance +1406.0711 Theory +1406.1045 +1406.1109 Functional Analysis +1406.1274 Number Theory +1406.1732 Soft Condensed Matter +1406.1856 Learning +1406.2131 Materials Science +1406.4430 +1406.4498 Physics and Society +1406.5894 +1406.6679 +1407.0131 Theory +1407.1785 Computer Vision and Pattern Recognition +1407.1859 Phenomenology +1407.6250 +1407.6845 Programming Languages +1407.7644 Machine Learning +1407.7662 Probability +1407.8536 +1408.0901 Representation Theory +1408.1563 Mesoscale and Nanoscale Physics +1408.1689 Mesoscale and Nanoscale Physics +1408.2425 Discrete Mathematics +1408.3384 Optics +1408.4136 +1408.5982 Mesoscale and Nanoscale Physics +1409.1434 Information Theory +1409.2587 Differential Geometry +1409.3461 High Energy Astrophysical Phenomena +1409.5856 Fluid Dynamics +1409.6491 Mesoscale and Nanoscale Physics +1409.6993 +1409.7536 Analysis of PDEs +1410.1476 Materials Science +1410.1873 Phenomenology +1410.3708 High Energy Astrophysical Phenomena +1410.3755 Geometric Topology +1410.5458 Algebraic Geometry +1410.6820 +1410.6979 Solar and Stellar Astrophysics +1410.7615 Solar and Stellar Astrophysics +1410.7755 Functional Analysis +1410.7852 Learning +1410.7874 Statistics Theory +1410.7931 +1410.7983 Analysis of PDEs +1410.7988 Combinatorics +1410.8001 Disordered Systems and Neural Networks +1410.8043 Learning +1410.8076 General Physics +1410.8130 Instrumentation and Detectors +1410.8132 High Energy Astrophysical Phenomena +1410.8133 Geometric Topology +1410.8147 Optimization and Control +1410.8150 Probability +1410.8154 Discrete Mathematics +1410.8155 Numerical Analysis +1410.8156 Algebraic Geometry +1410.8165 Methodology +1410.8167 Methodology +1410.8172 Mesoscale and Nanoscale Physics +1410.8173 Operator Algebras +1410.8174 +1410.8175 Social and Information Networks +1410.8176 Distributed, Parallel, and Cluster Computing +1410.8181 Phenomenology +1410.8185 Instrumentation and Methods for Astrophysics +1410.8186 Cosmology and Nongalactic Astrophysics +1410.8187 Algebraic Geometry +1410.8189 Number Theory +1410.8191 Quantum Algebra +1410.8192 +1410.8193 Materials Science +1410.8200 Optics +1410.8201 Materials Science +1410.8205 Computational Geometry +1410.8207 Populations and Evolution +1410.8208 Plasma Physics +1410.8210 Spectral Theory +1410.8213 Operator Algebras +1410.8215 Logic in Computer Science +1410.8216 Logic in Computer Science +1410.8217 Logic in Computer Science +1410.8218 Logic in Computer Science +1410.8219 Logic in Computer Science +1410.8220 Logic in Computer Science +1410.8221 Human-Computer Interaction +1410.8222 Logic in Computer Science +1410.8224 Pricing of Securities +1410.8225 Probability +1410.8226 Optimization and Control +1410.8227 Soft Condensed Matter +1410.8233 Artificial Intelligence +1410.8234 Probability +1410.8237 Lattice +1410.8242 Commutative Algebra +1410.8244 Algebraic Topology +1410.8247 Astrophysics of Galaxies +1410.8248 Optics +1410.8251 Learning +1410.8253 Computational Complexity +1410.8255 Materials Science +1410.8262 Astrophysics of Galaxies +1410.8269 Methodology +1410.8270 Representation Theory +1410.8272 Algebraic Geometry +1410.8273 +1410.8276 Computation +1410.8279 Lattice +1410.8282 Medical Physics +1410.8283 Complex Variables +1410.8288 Algebraic Geometry +1410.8297 Soft Condensed Matter +1410.8300 +1410.8303 +1410.8305 +1410.8306 Rings and Algebras +1410.8308 Lattice +1410.8313 Emerging Technologies +1410.8318 +1410.8324 +1410.8326 Learning +1410.8328 Combinatorics +1410.8330 Mesoscale and Nanoscale Physics +1410.8331 Solar and Stellar Astrophysics +1410.8333 Functional Analysis +1410.8335 Lattice +1410.8336 Data Structures and Algorithms +1410.8339 Chaotic Dynamics +1410.8348 Numerical Analysis +1410.8351 Solar and Stellar Astrophysics +1410.8353 Lattice +1410.8355 Cosmology and Nongalactic Astrophysics +1410.8356 Experiment +1410.8357 Distributed, Parallel, and Cluster Computing +1410.8358 Lattice +1410.8359 Distributed, Parallel, and Cluster Computing +1410.8368 Functional Analysis +1410.8371 Lattice +1410.8372 Machine Learning +1410.8373 Fluid Dynamics +1410.8375 Phenomenology +1410.8377 Quantum Algebra +1410.8380 Number Theory +1410.8381 Number Theory +1410.8384 Solar and Stellar Astrophysics +1410.8389 Algebraic Topology +1410.8390 Representation Theory +1410.8391 Tissues and Organs +1410.8400 Number Theory +1410.8402 Other Computer Science +1410.8404 Number Theory +1410.8405 Lattice +1410.8408 Combinatorics +1410.8410 Lattice +1410.8411 Medical Physics +1410.8414 History and Overview +1410.8415 Phenomenology +1410.8416 Instrumentation and Methods for Astrophysics +1410.8418 Instrumentation and Methods for Astrophysics +1410.8420 Computational Complexity +1410.8422 Chaotic Dynamics +1410.8423 Numerical Analysis +1410.8424 Combinatorics +1410.8427 Economics +1410.8428 Strongly Correlated Electrons +1410.8429 Strongly Correlated Electrons +1410.8430 Representation Theory +1410.8432 Adaptation and Self-Organizing Systems +1410.8438 Logic +1410.8442 Group Theory +1410.8446 Differential Geometry +1410.8447 Lattice +1410.8449 Algebraic Geometry +1410.8456 Differential Geometry +1410.8460 +1410.8465 Differential Geometry +1410.8467 Phenomenology +1410.8470 Logic in Computer Science +1410.8471 Analysis of PDEs +1410.8472 Optics +1410.8478 Complex Variables +1410.8481 Strongly Correlated Electrons +1410.8484 +1410.8489 Computational Physics +1410.8492 Solar and Stellar Astrophysics +1410.8494 Lattice +1410.8495 High Energy Astrophysical Phenomena +1410.8496 Phenomenology +1410.8497 Neurons and Cognition +1410.8504 Computation +1410.8507 Instrumentation and Methods for Astrophysics +1410.8511 Complex Variables +1410.8514 Astrophysics of Galaxies +1410.8519 Solar and Stellar Astrophysics +math-ph/0309029 +0707.2431 General Physics +0707.4539 General Physics +1007.3482 Algebraic Geometry +1102.5070 Number Theory +1103.4504 Numerical Analysis +1106.0688 Group Theory +1108.5358 Differential Geometry +1111.0245 Combinatorics +1112.3460 Geometric Topology +1202.4961 Databases +1204.0530 Geometric Topology +1204.1760 Combinatorics +1204.3573 Machine Learning +1205.1127 Group Theory +1206.5424 Functional Analysis +1207.0491 Theory +1207.6883 Algebraic Topology +1208.4762 Functional Analysis +1210.0518 Geometric Topology +1210.2667 Methodology +1210.8419 Geometric Topology +1211.0156 Social and Information Networks +1211.6534 +1212.2033 Algebraic Topology +1212.3955 Algebraic Geometry +1301.6358 Fluid Dynamics +1301.6954 Optics +1302.0558 Physics and Society +1302.0836 +1302.3528 Phenomenology +1302.4911 Differential Geometry +1303.7439 Molecular Networks +1304.4382 +1304.5001 Probability +1304.7747 Mesoscale and Nanoscale Physics +1305.2256 Commutative Algebra +1305.2434 Analysis of PDEs +1305.2834 Algebraic Topology +1305.2899 Group Theory +1306.0264 Information Theory +1306.3443 Metric Geometry +1307.2640 Group Theory +1307.4120 Numerical Analysis +1307.6390 +1308.0057 Cosmology and Nongalactic Astrophysics +1308.3664 +1308.3666 +1309.1171 Strongly Correlated Electrons +1309.1187 Soft Condensed Matter +1309.1752 Probability +1309.2174 Functional Analysis +1309.2832 Numerical Analysis +1309.2942 Cosmology and Nongalactic Astrophysics +1309.4126 Mesoscale and Nanoscale Physics +1309.4486 Geometric Topology +1309.5595 Probability +1309.6728 Complex Variables +1310.0050 Experiment +1310.2545 Software Engineering +1310.3319 +1310.6535 High Energy Astrophysical Phenomena +1310.8488 +1311.0380 Instrumentation and Detectors +1311.0730 Phenomenology +1311.1050 Earth and Planetary Astrophysics +1311.3957 +1311.4228 Optimization and Control +1311.6720 +1311.7339 Theory +1312.0507 Operator Algebras +1312.1348 Phenomenology +1312.2711 Soft Condensed Matter +1312.3845 Earth and Planetary Astrophysics +1312.5973 Algebraic Geometry +1312.6539 Mesoscale and Nanoscale Physics +1312.7112 +1312.7787 Space Physics +1401.2373 Logic +1401.2633 Phenomenology +1401.2934 +1401.3010 Mesoscale and Nanoscale Physics +1401.4296 Number Theory +1401.5730 Algebraic Geometry +1401.7240 Mesoscale and Nanoscale Physics +1401.7501 General Topology +1401.8052 Classical Analysis and ODEs +1402.0006 Astrophysics of Galaxies +1402.0034 +1402.1095 Mesoscale and Nanoscale Physics +1402.2151 Optics +1402.2399 Materials Science +1402.4012 Quantum Gases +1402.4411 Operator Algebras +1402.4453 +1402.5554 Group Theory +1402.6397 Populations and Evolution +1402.6794 Information Theory +1402.7372 Superconductivity +1403.0019 Mesoscale and Nanoscale Physics +1403.0549 Representation Theory +1403.1739 Quantum Gases +1403.2859 Strongly Correlated Electrons +1403.3688 Mesoscale and Nanoscale Physics +1403.4194 +1403.4329 Portfolio Management +1403.4341 +1403.5555 Cosmology and Nongalactic Astrophysics +1403.5699 Numerical Analysis +1403.5974 Disordered Systems and Neural Networks +1403.7155 Solar and Stellar Astrophysics +1403.7541 Phenomenology +1404.0191 Physics and Society +1404.1415 Phenomenology +1404.1689 Formal Languages and Automata Theory +1404.2089 Phenomenology +1404.2362 Number Theory +1404.3441 Statistics Theory +1404.6858 Materials Science +1404.7677 Combinatorics +1404.7794 Strongly Correlated Electrons +1405.1194 Information Theory +1405.1731 Phenomenology +1405.1985 Disordered Systems and Neural Networks +1405.2144 High Energy Astrophysical Phenomena +1405.2425 Lattice +1405.3056 Cosmology and Nongalactic Astrophysics +1405.3135 Theory +1405.3520 Mesoscale and Nanoscale Physics +1405.5348 Physics and Society +1405.5382 Quantum Gases +1405.5537 Phenomenology +1405.6035 Quantum Gases +1405.6391 Atomic Physics +1405.7053 Phenomenology +1405.7540 Phenomenology +1405.7588 Quantum Gases +1406.0218 Strongly Correlated Electrons +1406.0701 Logic +1406.0797 Functional Analysis +1406.2198 Atomic Physics +1406.2574 +1406.2591 Phenomenology +1406.2748 Disordered Systems and Neural Networks +1406.3198 Phenomenology +1406.3937 +1406.4431 +1406.4602 High Energy Astrophysical Phenomena +1406.4884 Mesoscale and Nanoscale Physics +1406.5549 Computer Vision and Pattern Recognition +1406.5963 Disordered Systems and Neural Networks +1406.5983 +1406.6141 Plasma Physics +1406.6405 +1406.7480 +1406.7741 +1407.1042 High Energy Astrophysical Phenomena +1407.1481 Phenomenology +1407.1653 +1407.2045 Earth and Planetary Astrophysics +1407.2170 Computer Vision and Pattern Recognition +1407.2485 Dynamical Systems +1407.2516 Strongly Correlated Electrons +1407.3030 Phenomenology +1407.3576 Materials Science +1407.3770 Quantum Gases +1407.4243 Phenomenology +1407.4623 Physics and Society +1407.4624 Phenomenology +1407.5512 Phenomenology +1407.5804 Astrophysics of Galaxies +1407.6260 +1407.6552 Strongly Correlated Electrons +1407.6858 Phenomenology +1407.6937 Mesoscale and Nanoscale Physics +1407.7021 Phenomenology +1407.7342 Computational Complexity +1407.7431 Solar and Stellar Astrophysics +1407.7829 Disordered Systems and Neural Networks +1407.8156 Logic +1407.8300 Portfolio Management +1408.0285 Solar and Stellar Astrophysics +1408.0587 Strongly Correlated Electrons +1408.0685 Mesoscale and Nanoscale Physics +1408.0790 +1408.1190 Physics and Society +1408.1253 Astrophysics of Galaxies +1408.1697 Solar and Stellar Astrophysics +1408.2388 +1408.2816 Algebraic Geometry +1408.2959 +1408.2994 Solar and Stellar Astrophysics +1408.3054 Theory +1408.3266 +1408.3461 Statistical Mechanics +1408.4221 Molecular Networks +1408.4256 Phenomenology +1408.4288 Earth and Planetary Astrophysics +1408.4293 Rings and Algebras +1408.4330 Optics +1408.4463 Strongly Correlated Electrons +1408.5074 Atomic Physics +1408.5223 Superconductivity +1408.5243 Phenomenology +1408.5262 Soft Condensed Matter +1408.5313 Phenomenology +1408.5534 Differential Geometry +1408.5688 Phenomenology +1408.5754 Astrophysics of Galaxies +1408.5913 Quantum Gases +1408.6067 Atomic and Molecular Clusters +1408.6077 Phenomenology +1408.6087 Earth and Planetary Astrophysics +1408.6236 Solar and Stellar Astrophysics +1408.6391 Number Theory +1408.6530 Phenomenology +1408.6596 Physics and Society +1408.6687 Astrophysics of Galaxies +1408.6989 Strongly Correlated Electrons +1409.0469 +1409.0497 Lattice +1409.0536 Phenomenology +1409.0689 Theory +1409.0821 Materials Science +1409.1593 +1409.1623 Astrophysics of Galaxies +1409.1704 Lattice +1409.2093 Astrophysics of Galaxies +1409.2204 Theory +1409.2256 Quantum Gases +1409.2600 High Energy Astrophysical Phenomena +1409.2876 Astrophysics of Galaxies +1409.2986 Phenomenology +1409.3012 Strongly Correlated Electrons +1409.3031 Theory +1409.3168 Experiment +1409.3305 +1409.3514 Statistical Mechanics +1409.3667 High Energy Astrophysical Phenomena +1409.4468 Astrophysics of Galaxies +1409.4473 Theory +1409.4663 Instrumentation and Methods for Astrophysics +1409.5176 +1409.5247 Astrophysics of Galaxies +1409.5380 Statistical Mechanics +1409.5820 Strongly Correlated Electrons +1409.5905 Cosmology and Nongalactic Astrophysics +1409.5958 Soft Condensed Matter +1409.6078 Cosmology and Nongalactic Astrophysics +1409.6129 Solar and Stellar Astrophysics +1409.6189 +1409.6332 Astrophysics of Galaxies +1409.6708 +1409.6829 Experiment +1409.6892 Astrophysics of Galaxies +1409.7393 High Energy Astrophysical Phenomena +1410.0203 Cosmology and Nongalactic Astrophysics +1410.0323 Atomic Physics +1410.0770 Discrete Mathematics +1410.0934 Solar and Stellar Astrophysics +1410.1960 Solar and Stellar Astrophysics +1410.2070 Phenomenology +1410.2334 +1410.2710 Optics +1410.4566 Astrophysics of Galaxies +1410.6684 Phenomenology +1410.7182 Computation and Language +1410.8363 Earth and Planetary Astrophysics +1410.8476 Theory +1411.0080 Networking and Internet Architecture +1411.0441 +1411.1030 Geophysics +1411.1041 Number Theory +1411.1314 Computation +1411.1767 Earth and Planetary Astrophysics +1411.2710 Algebraic Geometry +1411.2735 Earth and Planetary Astrophysics +1411.2888 +1411.3708 Physics and Society +1411.4781 Information Theory +1411.5005 Cryptography and Security +1411.5058 Spectral Theory +1411.5302 Networking and Internet Architecture +1411.5676 General Physics +1411.5881 Neural and Evolutionary Computing +1411.5941 Solar and Stellar Astrophysics +1411.6372 Emerging Technologies +1411.6418 Classical Analysis and ODEs +1411.6501 Rings and Algebras +1411.6521 Networking and Internet Architecture +1411.6609 Experiment +1411.6619 Soft Condensed Matter +1411.6622 Machine Learning +1411.6634 +1411.6639 Number Theory +1411.6641 +1411.6648 Theory +1411.6651 Artificial Intelligence +1411.6652 Applications +1411.6654 Differential Geometry +1411.6661 Theory +1411.6666 Astrophysics of Galaxies +1411.6667 Information Theory +1411.6668 Combinatorics +1411.6671 Instrumentation and Methods for Astrophysics +1411.6672 Computational Geometry +1411.6674 Astrophysics of Galaxies +1411.6676 Differential Geometry +1411.6677 Numerical Analysis +1411.6678 Combinatorics +1411.6680 History and Philosophy of Physics +1411.6686 Populations and Evolution +1411.6688 Probability +1411.6689 Accelerator Physics +1411.6691 Algebraic Topology +1411.6692 Rings and Algebras +1411.6693 Rings and Algebras +1411.6699 Computation and Language +1411.6700 Differential Geometry +1411.6703 +1411.6707 Instrumentation and Detectors +1411.6709 Analysis of PDEs +1411.6712 Computational Complexity +1411.6713 Phenomenology +1411.6714 Computers and Society +1411.6717 Number Theory +1411.6721 Cryptography and Security +1411.6725 Learning +1411.6726 Lattice +1411.6730 Mesoscale and Nanoscale Physics +1411.6733 Combinatorics +1411.6735 Astrophysics of Galaxies +1411.6739 Information Theory +1411.6741 Sound +1411.6744 Plasma Physics +1411.6749 Networking and Internet Architecture +1411.6753 Distributed, Parallel, and Cluster Computing +1411.6754 Artificial Intelligence +1411.6759 Materials Science +1411.6761 Analysis of PDEs +1411.6762 Software Engineering +1411.6764 Fluid Dynamics +1411.6766 Theory +1411.6767 Computers and Society +1411.6768 Neural and Evolutionary Computing +1411.6771 Cryptography and Security +1411.6772 Molecular Networks +1411.6773 Information Retrieval +1411.6775 Distributed, Parallel, and Cluster Computing +1411.6777 Cryptography and Security +1411.6779 Functional Analysis +1411.6780 Experiment +1411.6781 +1411.6786 Algebraic Geometry +1411.6791 Networking and Internet Architecture +1411.6792 Information Theory +1411.6794 Artificial Intelligence +1411.6798 Materials Science +1411.6804 Data Structures and Algorithms +1411.6810 Computational Geometry +1411.6811 Atomic Physics +1411.6812 Superconductivity +1411.6818 Data Structures and Algorithms +1411.6820 +1411.6823 Materials Science +1411.6824 Probability +1411.6825 Cosmology and Nongalactic Astrophysics +1411.6831 Emerging Technologies +1411.6832 Combinatorics +1411.6834 Probability +1411.6835 Information Theory +1411.6837 Robotics +1411.6841 Information Theory +1411.6842 Lattice +1411.6844 Logic +1411.6848 Differential Geometry +1411.6849 Statistical Mechanics +1411.6850 Computer Vision and Pattern Recognition +1411.6851 Differential Geometry +1411.6852 Data Structures and Algorithms +1411.6854 Metric Geometry +1411.6859 Analysis of PDEs +1411.6863 Geometric Topology +1411.6864 Logic +1411.6865 Instrumentation and Methods for Astrophysics +1411.6868 Combinatorics +1411.6873 Adaptation and Self-Organizing Systems +1411.6875 Space Physics +1411.6878 Physics and Society +1411.6883 Biological Physics +1411.6886 General Topology +1411.6887 Combinatorics +1411.6888 Theory +1411.6890 General Mathematics +1411.6893 Analysis of PDEs +1411.6894 Superconductivity +1411.6896 Analysis of PDEs +1411.6898 Subcellular Processes +1411.6901 History and Overview +1411.6903 Superconductivity +1411.6905 Materials Science +1411.6906 Strongly Correlated Electrons +1411.6909 Computer Vision and Pattern Recognition +1411.6912 Neural and Evolutionary Computing +1411.6916 Combinatorics +1411.6917 Combinatorics +1411.6919 Symbolic Computation +1411.6921 +1411.6923 Complex Variables +1411.6924 Phenomenology +1411.6928 Multimedia +1411.6929 Representation Theory +1411.6930 Phenomenology +1411.6936 Algebraic Topology +1411.6942 Systems and Control +1411.6943 Probability +1411.6944 Lattice +1411.6945 Number Theory +1411.6948 Machine Learning +1411.6950 Functional Analysis +1411.6956 Fluid Dynamics +1411.6960 Mesoscale and Nanoscale Physics +1411.6963 Number Theory +1411.6964 Algebraic Topology +1411.6976 Analysis of PDEs +1411.6981 Theory +1411.6983 Commutative Algebra +1411.6984 Analysis of PDEs +1411.6985 Commutative Algebra +1411.6987 Experiment +1411.6989 Lattice +1411.6990 Lattice +1411.6997 Combinatorics +1411.6998 Artificial Intelligence +1411.6999 Dynamical Systems +1411.7002 Cosmology and Nongalactic Astrophysics +1411.7003 Algebraic Topology +1411.7004 Digital Libraries +1411.7009 Methodology +1411.7014 Learning +1411.7015 Number Theory +math/0012239 Geometric Topology +math/0505233 Geometric Topology +0711.0615 Exactly Solvable and Integrable Systems +0712.0209 Exactly Solvable and Integrable Systems +0806.1183 Pattern Formation and Solitons +0810.2553 Complex Variables +0812.1451 Exactly Solvable and Integrable Systems +0903.2009 Classical Analysis and ODEs +0904.1781 Analysis of PDEs +0912.2823 Complex Variables +1004.0193 Complex Variables +1012.1573 Combinatorics +1012.4222 Quantum Gases +1107.4322 +1107.5602 Atomic Physics +1108.1213 Theory +1109.6266 History and Philosophy of Physics +1110.5804 Complex Variables +1111.0646 Differential Geometry +1111.4177 Differential Geometry +1111.5918 Analysis of PDEs +1201.1239 +1202.3579 Exactly Solvable and Integrable Systems +1202.3902 +1203.0760 Differential Geometry +1203.1011 +1203.4978 Algebraic Topology +1203.6234 Differential Geometry +1204.1926 Probability +1204.3028 Pattern Formation and Solitons +1204.3032 Classical Analysis and ODEs +1204.3172 +1204.6357 +1205.1756 Dynamical Systems +1205.2113 Representation Theory +1205.2544 Dynamical Systems +1207.0233 Computational Finance +1207.2678 Pattern Formation and Solitons +1208.0398 Combinatorics +1208.3663 Computational Geometry +1209.3204 Analysis of PDEs +1209.3477 Representation Theory +1209.4044 Analysis of PDEs +1209.4209 Information Theory +1210.0779 Plasma Physics +1210.2145 Metric Geometry +1210.7375 Physics and Society +1212.4610 Functional Analysis +1301.4620 Information Theory +1301.5533 Group Theory +1301.6809 Graphics +1302.1959 +1302.4620 Analysis of PDEs +1302.5864 Algebraic Geometry +1304.3998 Information Theory +1305.0763 Neural and Evolutionary Computing +1305.7025 Mesoscale and Nanoscale Physics +1307.0050 Metric Geometry +1307.6531 Differential Geometry +1307.8093 Dynamical Systems +1308.4564 Optics +1309.3015 Algebraic Geometry +1309.3031 +1309.3170 Differential Geometry +1309.5542 Fluid Dynamics +1309.7917 Rings and Algebras +1310.0322 Optimization and Control +1310.3443 +1311.0571 +1311.4594 Statistical Mechanics +1311.4971 Probability +1311.5509 Statistical Mechanics +1311.5717 Instrumentation and Methods for Astrophysics +1311.6963 +1312.0328 Representation Theory +1312.1130 Phenomenology +1312.5188 Theory +1312.6155 Logic in Computer Science +1312.6359 Complex Variables +1312.6610 Phenomenology +1401.0888 Theory +1401.1315 Soft Condensed Matter +1401.1413 High Energy Astrophysical Phenomena +1401.4733 Optics +1402.3285 +1402.3446 Materials Science +1402.6247 Functional Analysis +1402.7205 Symbolic Computation +1403.0028 Differential Geometry +1403.2258 Fluid Dynamics +1403.3114 Phenomenology +1403.3326 +1403.3876 Numerical Analysis +1403.4285 Probability +1403.4467 Computation and Language +1403.4853 Experiment +1403.5367 Classical Analysis and ODEs +1403.5384 Robotics +1403.6039 Category Theory +1403.6341 +1403.6366 Phenomenology +1403.6421 Mesoscale and Nanoscale Physics +1403.7489 Algebraic Geometry +1403.7878 Number Theory +1403.7962 Mesoscale and Nanoscale Physics +1404.4479 +1404.5897 Data Analysis, Statistics and Probability +1405.0430 +1405.1324 Differential Geometry +1405.2272 Strongly Correlated Electrons +1405.2323 Complex Variables +1405.3461 Symbolic Computation +1405.5380 +1405.7308 Analysis of PDEs +1406.1267 Mesoscale and Nanoscale Physics +1406.1663 Analysis of PDEs +1406.2289 Analysis of PDEs +1406.2912 High Energy Astrophysical Phenomena +1406.2985 Quantum Algebra +1406.3378 Logic in Computer Science +1406.4005 Computational Geometry +1406.4359 Algebraic Geometry +1406.4538 Astrophysics of Galaxies +1406.5715 Programming Languages +1406.5908 Group Theory +1406.6029 Metric Geometry +1406.6090 Computational Finance +1406.6360 +1406.6365 Astrophysics of Galaxies +1406.6371 Instrumentation and Methods for Astrophysics +1406.6375 Quantum Gases +1406.6386 Logic +1406.6388 +1406.6391 +1406.6392 Analysis of PDEs +1406.6395 Probability +1406.6398 Learning +1406.6403 Representation Theory +1406.6406 Optimization and Control +1406.6417 Other Computer Science +1406.6420 Optics +1406.6423 Dynamical Systems +1406.6433 Materials Science +1406.6434 Combinatorics +1406.6439 Geometric Topology +1406.6449 Information Retrieval +1406.6452 Biological Physics +1406.6453 Neural and Evolutionary Computing +1406.6454 Spectral Theory +1406.6458 High Energy Astrophysical Phenomena +1406.6461 Physics and Society +1406.6471 Complex Variables +1406.6472 Strongly Correlated Electrons +1406.6473 Multimedia +1406.6477 +1406.6484 Geometric Topology +1406.6485 Combinatorics +1406.6488 High Energy Astrophysical Phenomena +1406.6490 Databases +1406.6493 Materials Science +1406.6496 Trading and Market Microstructure +1406.6497 Experiment +1406.6498 Dynamical Systems +1406.6499 Geometric Topology +1406.6505 Soft Condensed Matter +1406.6507 Computer Vision and Pattern Recognition +1406.6509 Functional Analysis +1406.6513 Superconductivity +1406.6517 Combinatorics +1406.6520 Numerical Analysis +1406.6521 Statistics Theory +1406.6524 Pattern Formation and Solitons +1406.6529 Social and Information Networks +1406.6530 +1406.6533 Data Structures and Algorithms +1406.6537 Statistical Mechanics +1406.6538 Computer Vision and Pattern Recognition +1406.6546 Logic +1406.6555 Earth and Planetary Astrophysics +1406.6560 Computer Vision and Pattern Recognition +1406.6563 Operator Algebras +1406.6568 Computer Vision and Pattern Recognition +1406.6575 Risk Management +1406.6583 Combinatorics +1406.6585 Differential Geometry +1406.6586 Astrophysics of Galaxies +1406.6587 Dynamical Systems +1406.6590 Probability +1406.6591 Systems and Control +1406.6592 Statistics Theory +1406.6599 Computational Geometry +1406.6604 Other Quantitative Biology +1406.6606 Instrumentation and Methods for Astrophysics +1406.6607 Materials Science +1406.6609 Materials Science +1406.6614 Networking and Internet Architecture +1406.6615 Probability +1406.6616 Space Physics +1406.6617 Spectral Theory +1406.6618 Machine Learning +1406.6619 Number Theory +1406.6627 Methodology +1406.6628 Dynamical Systems +1406.6629 Exactly Solvable and Integrable Systems +1406.6632 Numerical Analysis +1406.6633 Learning +1406.6635 Functional Analysis +1406.6639 Statistical Mechanics +1406.6648 +1406.6651 Learning +1406.6654 Plasma Physics +1406.6663 Strongly Correlated Electrons +1406.6669 Rings and Algebras +1406.6670 Statistics Theory +1406.6672 Computer Science and Game Theory +1406.6675 History and Philosophy of Physics +1406.6676 Solar and Stellar Astrophysics +1406.6677 Optics +gr-qc/0103039 +math/0103165 Classical Analysis and ODEs +math/0412439 Algebraic Geometry +nlin/0009022 Exactly Solvable and Integrable Systems +nlin/0009024 Exactly Solvable and Integrable Systems +nlin/0110028 Exactly Solvable and Integrable Systems +nlin/0112007 Exactly Solvable and Integrable Systems +nlin/0211048 Exactly Solvable and Integrable Systems +nlin/0301011 Exactly Solvable and Integrable Systems +nlin/0402033 Chaotic Dynamics +nlin/0405034 Exactly Solvable and Integrable Systems +nlin/0407026 Pattern Formation and Solitons +nlin/0507011 Exactly Solvable and Integrable Systems +nlin/0507012 Exactly Solvable and Integrable Systems +nlin/0509005 Pattern Formation and Solitons +nlin/0604010 Pattern Formation and Solitons +nlin/0604011 Exactly Solvable and Integrable Systems +nlin/0604012 Exactly Solvable and Integrable Systems +nlin/0701049 Exactly Solvable and Integrable Systems +0707.3084 Algebraic Geometry +0809.2293 General Mathematics +0811.0222 +0905.1886 History and Philosophy of Physics +0906.0683 Algebraic Geometry +0908.0512 +0911.0277 Algebraic Geometry +0912.1401 Differential Geometry +0912.4019 Logic +1101.4224 Logic +1103.0713 Accelerator Physics +1103.2685 Combinatorics +1103.4919 Social and Information Networks +1106.0519 Computer Science and Game Theory +1107.1586 Social and Information Networks +1107.5262 Algebraic Geometry +1108.0695 Experiment +1108.1075 Logic +1108.5692 Mesoscale and Nanoscale Physics +1109.1550 Differential Geometry +1109.5460 Physics and Society +1110.3546 Risk Management +1110.3768 Differential Geometry +1111.3834 +1112.2309 Analysis of PDEs +1112.5508 Populations and Evolution +1202.1058 Statistics Theory +1204.1920 Dynamical Systems +1205.0671 Probability +1205.2479 Probability +1205.2482 Probability +1206.7009 Probability +1207.0465 +1207.5035 Probability +1207.5868 +1208.2556 General Mathematics +1208.2852 Artificial Intelligence +1208.3182 Probability +1208.4799 Portfolio Management +1209.3139 Metric Geometry +1209.6416 Analysis of PDEs +1210.2008 Logic +1210.2444 Theory +1210.3781 Data Analysis, Statistics and Probability +1210.6431 General Physics +1211.1547 Statistics Theory +1211.1797 Group Theory +1211.2565 Symplectic Geometry +1211.2928 Differential Geometry +1211.7012 Artificial Intelligence +1212.6331 Physics and Society +1301.1291 General Physics +1301.3326 Superconductivity +1301.3330 Differential Geometry +1301.5356 Computer Vision and Pattern Recognition +1302.2023 Statistics Theory +1302.3647 Classical Analysis and ODEs +1303.1132 Algebraic Geometry +1303.2560 Algebraic Geometry +1303.3111 Materials Science +1304.0217 Probability +1304.1339 Strongly Correlated Electrons +1304.2435 +1304.6143 Soft Condensed Matter +1304.6320 Mesoscale and Nanoscale Physics +1304.6985 Probability +1304.7967 Commutative Algebra +1305.2461 Algebraic Geometry +1305.2462 Symbolic Computation +1305.3055 Information Theory +1305.3225 Operator Algebras +1305.6364 Physics and Society +1305.6920 Analysis of PDEs +1305.7269 Functional Analysis +1306.0543 Learning +1307.0276 Systems and Control +1307.2325 Complex Variables +1307.4354 Numerical Analysis +1307.4818 Operator Algebras +1307.6630 Combinatorics +1307.7250 Quantum Gases +1307.7412 Dynamical Systems +1307.7763 Strongly Correlated Electrons +1308.0720 Analysis of PDEs +1308.1768 Statistics Theory +1308.2152 Probability +1308.2608 Statistics Theory +1308.4772 Quantum Algebra +1308.5146 Information Theory +1308.6666 Theory +1309.0222 Analysis of PDEs +1309.0835 Probability +1309.1449 Number Theory +1309.2023 Operator Algebras +1309.3577 Functional Analysis +1309.6219 Optics +1309.6591 Number Theory +1310.1750 Phenomenology +1310.6283 Formal Languages and Automata Theory +1310.7120 +1310.7963 Number Theory +1311.0134 Algebraic Geometry +1311.0229 Mesoscale and Nanoscale Physics +1311.0427 +1311.2887 Social and Information Networks +1311.3104 +1311.3969 Statistics Theory +1311.4390 Methodology +1311.5332 Combinatorics +1312.0270 Strongly Correlated Electrons +1312.0584 Analysis of PDEs +1312.0840 Combinatorics +1312.1247 Mesoscale and Nanoscale Physics +1312.1828 Algebraic Topology +1312.1934 Geometric Topology +1312.1957 Networking and Internet Architecture +1312.2732 Number Theory +1312.3144 Phenomenology +1312.3369 Fluid Dynamics +1312.4741 Phenomenology +1312.4966 Solar and Stellar Astrophysics +1312.5475 Mesoscale and Nanoscale Physics +1312.7279 Numerical Analysis +1401.1018 Chemical Physics +1401.1657 Complex Variables +1401.2033 Optics +1401.5378 Numerical Analysis +1401.6061 Logic +1401.6873 Complex Variables +1401.7302 Symplectic Geometry +1401.7731 +1402.2367 Combinatorics +1402.4114 +1402.5121 Software Engineering +1402.5696 Mesoscale and Nanoscale Physics +1402.6144 +1402.6261 Combinatorics +1402.6914 +1403.0176 Soft Condensed Matter +1403.0255 Theory +1403.1772 Operator Algebras +1403.1822 Physics and Society +1403.1829 Exactly Solvable and Integrable Systems +1403.2912 Information Theory +1403.4288 Solar and Stellar Astrophysics +1403.4511 +1403.4796 Commutative Algebra +1403.7794 Dynamical Systems +1404.1151 Computer Vision and Pattern Recognition +1404.1427 Logic +1404.2561 Quantum Gases +1404.3083 General Physics +1404.3729 Phenomenology +1404.4643 +1404.5325 Statistical Mechanics +1404.5527 Theory +1404.5733 Probability +1404.5844 +1404.5941 Optics +1404.6012 Information Theory +1404.7206 Formal Languages and Automata Theory +1405.0368 Functional Analysis +1405.0630 Number Theory +1405.1167 Distributed, Parallel, and Cluster Computing +1405.1859 Operator Algebras +1405.2591 Phenomenology +1405.5233 Metric Geometry +1405.5679 Mesoscale and Nanoscale Physics +1405.6045 Functional Analysis +1405.6262 Information Theory +1405.6546 Populations and Evolution +1405.6731 +1405.7026 Chemical Physics +1406.0843 Strongly Correlated Electrons +1406.0862 Operator Algebras +1406.2621 +1406.2876 Numerical Analysis +1406.3315 Mesoscale and Nanoscale Physics +1406.3430 High Energy Astrophysical Phenomena +1406.5428 Chaotic Dynamics +1406.5501 Theory +1406.6083 Algebraic Geometry +1406.6140 Computer Vision and Pattern Recognition +1406.6404 Optimization and Control +1406.7834 High Energy Astrophysical Phenomena +1407.0066 Strongly Correlated Electrons +1407.2057 +1407.2142 Strongly Correlated Electrons +1407.3716 Information Theory +1407.4013 Atomic Physics +1407.5084 Statistical Mechanics +1407.5169 Representation Theory +1407.5484 Biological Physics +1407.5614 Algebraic Geometry +1407.6013 Phenomenology +1407.6066 +1407.6158 Strongly Correlated Electrons +1407.6268 Mesoscale and Nanoscale Physics +1407.6807 Strongly Correlated Electrons +1407.7571 Mesoscale and Nanoscale Physics +1407.7843 +1408.0555 Optics +1408.1175 Operator Algebras +1408.3045 Data Structures and Algorithms +1408.3138 Astrophysics of Galaxies +1408.3892 Algebraic Geometry +1408.3896 Number Theory +1408.5887 Phenomenology +1408.6092 Mesoscale and Nanoscale Physics +1408.6612 Materials Science +1408.6614 Materials Science +1408.6935 Phenomenology +1409.0113 Mesoscale and Nanoscale Physics +1409.0189 Operator Algebras +1409.1397 Combinatorics +1409.1612 Computation and Language +1409.1776 Soft Condensed Matter +1409.3062 Computer Science and Game Theory +1409.3285 Solar and Stellar Astrophysics +1409.3875 Classical Analysis and ODEs +1409.4016 Information Theory +1409.4036 +1409.4641 Classical Analysis and ODEs +1409.5555 Theory +1409.5858 Phenomenology +1409.5864 Instrumentation and Detectors +1409.6015 Geometric Topology +1409.6156 Mesoscale and Nanoscale Physics +1409.7072 Earth and Planetary Astrophysics +1409.7828 Biological Physics +1409.7870 Cosmology and Nongalactic Astrophysics +1410.0372 Phenomenology +1410.0728 +1410.0952 Information Theory +1410.1176 Analysis of PDEs +1410.2039 Fluid Dynamics +1410.2221 Analysis of PDEs +1410.2265 Information Retrieval +1410.2887 Materials Science +1410.3027 Logic +1410.3493 Classical Analysis and ODEs +1410.3966 Metric Geometry +1410.4208 Statistics Theory +1410.4338 Functional Analysis +1410.4407 Information Theory +1410.4444 Information Theory +1410.4501 Logic +1410.4917 Cryptography and Security +1410.5570 Functional Analysis +1410.5680 Experiment +1410.5690 Other Quantitative Biology +1410.5788 General Mathematics +1410.5844 Earth and Planetary Astrophysics +1410.5848 Phenomenology +1410.5956 Optimization and Control +1410.6109 Operator Algebras +1410.6264 Computer Vision and Pattern Recognition +1410.6396 Computational Complexity +1410.6402 Differential Geometry +1410.6603 Fluid Dynamics +1410.6681 Instrumentation and Methods for Astrophysics +1410.6771 Spectral Theory +1410.6774 Operator Algebras +1410.6805 Chaotic Dynamics +1410.6806 Symbolic Computation +1410.6807 Solar and Stellar Astrophysics +1410.6824 Distributed, Parallel, and Cluster Computing +1410.6826 Cosmology and Nongalactic Astrophysics +1410.6830 Computation and Language +1410.6835 Algebraic Geometry +1410.6838 Representation Theory +1410.6839 Group Theory +1410.6840 Optimization and Control +1410.6841 Risk Management +1410.6842 Analysis of PDEs +1410.6846 Classical Analysis and ODEs +1410.6850 Strongly Correlated Electrons +1410.6856 Number Theory +1410.6859 Phenomenology +1410.6862 Solar and Stellar Astrophysics +1410.6863 Discrete Mathematics +1410.6865 Earth and Planetary Astrophysics +1410.6869 Statistics Theory +1410.6870 Methodology +1410.6872 Analysis of PDEs +1410.6873 Analysis of PDEs +1410.6876 Classical Analysis and ODEs +1410.6880 Machine Learning +1410.6884 Numerical Analysis +1410.6885 Information Theory +1410.6886 Strongly Correlated Electrons +1410.6888 +1410.6891 Atmospheric and Oceanic Physics +1410.6894 Commutative Algebra +1410.6901 Materials Science +1410.6902 Software Engineering +1410.6903 Sound +1410.6904 Experiment +1410.6905 Sound +1410.6909 Computer Vision and Pattern Recognition +1410.6912 Differential Geometry +1410.6913 Information Theory +1410.6914 Functional Analysis +1410.6915 Computers and Society +1410.6917 Representation Theory +1410.6922 Probability +1410.6924 Geometric Topology +1410.6926 Applications +1410.6931 +1410.6932 Cosmology and Nongalactic Astrophysics +1410.6934 Solar and Stellar Astrophysics +1410.6935 Computers and Society +1410.6936 Analysis of PDEs +1410.6937 Data Structures and Algorithms +1410.6939 Differential Geometry +1410.6942 Analysis of PDEs +1410.6943 Combinatorics +1410.6945 +1410.6946 Data Analysis, Statistics and Probability +1410.6952 Networking and Internet Architecture +1410.6954 Geometric Topology +1410.6956 Multiagent Systems +1410.6958 Differential Geometry +1410.6965 Physics Education +1410.6975 Learning +1410.6984 Machine Learning +1410.6990 Machine Learning +1410.6992 Physics and Society +1410.6993 Molecular Networks +1410.6994 Experiment +1410.6996 Geophysics +1410.6997 Geophysics +1410.7000 Geophysics +1410.7004 Populations and Evolution +1410.7005 Information Theory +1410.7010 Numerical Analysis +1410.7011 Materials Science +1410.7012 Computational Geometry +1410.7013 Logic in Computer Science +1410.7014 Cosmology and Nongalactic Astrophysics +1410.7021 Metric Geometry +1410.7026 Systems and Control +1410.7029 Machine Learning +1410.7033 Metric Geometry +1410.7035 Experiment +1410.7036 Number Theory +1410.7037 Superconductivity +1410.7039 Combinatorics +1410.7042 +1410.7044 Combinatorics +1410.7045 Optics +1410.7046 Combinatorics +1410.7047 Analysis of PDEs +1410.7049 Combinatorics +1410.7053 Analysis of PDEs +1410.7055 Accelerator Physics +1410.7056 Methodology +1410.7066 Numerical Analysis +1410.7068 Lattice +1410.7075 Classical Analysis and ODEs +1410.7076 Earth and Planetary Astrophysics +1410.7077 Plasma Physics +1410.7078 Rings and Algebras +1410.7081 Number Theory +1410.7082 Computational Complexity +1410.7085 Classical Analysis and ODEs +1410.7086 Complex Variables +1410.7091 Optimization and Control +1410.7092 Data Structures and Algorithms +1410.7096 General Mathematics +1410.7098 Machine Learning +1410.7099 Algebraic Geometry +1410.7100 Artificial Intelligence +1410.7107 Representation Theory +1410.7108 Category Theory +1410.7125 +1410.7128 Materials Science +1410.7130 Superconductivity +1410.7132 +1410.7133 Theory +1410.7137 Phenomenology +1410.7142 Phenomenology +1410.7148 Applications +1410.7150 Combinatorics +1410.7154 Statistics Theory +1410.7155 General Mathematics +1410.7156 Algebraic Geometry +1410.7157 Phenomenology +1410.7159 Lattice +1410.7163 Phenomenology +1410.7166 +1410.7167 +1410.7170 Lattice +1410.7173 Dynamical Systems +1410.7177 Numerical Analysis +1410.7178 Mesoscale and Nanoscale Physics +1410.7184 Combinatorics +1410.7187 Optimization and Control +1410.7191 Logic +1410.7196 Numerical Analysis +1410.7202 Functional Analysis +1410.7203 Analysis of PDEs +1410.7204 Classical Analysis and ODEs +1410.7205 Classical Analysis and ODEs +1410.7208 Combinatorics +1410.7209 Number Theory +1410.7210 Materials Science +1410.7211 Computer Vision and Pattern Recognition +1410.7212 Number Theory +1410.7213 Combinatorics +1410.7214 Lattice +1410.7223 Artificial Intelligence +1410.7225 Logic in Computer Science +1410.7226 Combinatorics +1410.7230 Biological Physics +1410.7236 Analysis of PDEs +1410.7237 Computational Complexity +1410.7241 Machine Learning +1410.7242 Functional Analysis +1410.7245 +1410.7248 Materials Science +1410.7252 Computer Vision and Pattern Recognition +1410.7253 Computational Complexity +1410.7254 Numerical Analysis +1410.7258 Solar and Stellar Astrophysics +1410.7259 Physics and Society +1410.7270 Networking and Internet Architecture +1410.7271 Algebraic Topology +1410.7273 Combinatorics +1410.7275 +1410.7278 Soft Condensed Matter +1410.7279 Machine Learning +1410.7281 Probability +1410.7282 Combinatorics +1410.7288 Cell Behavior +1410.7292 Algebraic Topology +1410.7298 Phenomenology +1410.7303 Differential Geometry +1410.7305 Differential Geometry +1410.7306 Metric Geometry +1410.7308 Materials Science +1410.7309 Phenomenology +1410.7311 Lattice +1410.7312 Combinatorics +1410.7316 Probability +1410.7327 Materials Science +1410.7331 Phenomenology +1410.7333 Astrophysics of Galaxies +1410.7335 Analysis of PDEs +1410.7338 Algebraic Geometry +1410.7339 Analysis of PDEs +1410.7340 Cryptography and Security +1410.7348 Computation +1410.7349 Number Theory +1410.7351 Information Theory +1410.7354 Probability +1410.7356 Combinatorics +1410.7361 Mesoscale and Nanoscale Physics +1410.7363 Genomics +1410.7367 Distributed, Parallel, and Cluster Computing +1410.7369 Instrumentation and Methods for Astrophysics +1410.7371 Machine Learning +1410.7372 Learning +1410.7374 Popular Physics +1410.7377 Analysis of PDEs +1410.7378 Chemical Physics +1410.7380 Phenomenology +gr-qc/0201038 +physics/9801024 Classical Physics +quant-ph/0401063 +0812.3363 Theory +0903.1295 Theory +0903.3936 Algebraic Geometry +0912.1284 Group Theory +1008.0927 Algebraic Geometry +1008.2550 Algebraic Geometry +1012.2414 Theory +1012.5367 Number Theory +1101.2578 Differential Geometry +1101.3948 Number Theory +1102.3414 Algebraic Geometry +1104.1089 Algebraic Geometry +1104.4777 Probability +1106.4236 Differential Geometry +1107.4972 +1109.0046 K-Theory and Homology +1109.1241 Quantum Gases +1201.3944 Atomic Physics +1202.5203 K-Theory and Homology +1203.1115 Number Theory +1203.4872 Instrumentation and Detectors +1205.2992 Dynamical Systems +1205.6336 Combinatorics +1206.1976 Fluid Dynamics +1206.3541 Computer Science and Game Theory +1207.3108 Quantum Gases +1207.3206 Representation Theory +1207.5181 +1207.5308 Representation Theory +1208.1629 Functional Analysis +1211.2890 +1211.4461 Numerical Analysis +1212.1614 Functional Analysis +1301.0479 Differential Geometry +1301.0915 Algebraic Geometry +1302.6900 Data Structures and Algorithms +1303.1907 Materials Science +1303.2602 Probability +1303.5062 Cosmology and Nongalactic Astrophysics +1303.7399 Cosmology and Nongalactic Astrophysics +1304.4436 +1304.7420 Accelerator Physics +1305.0378 Analysis of PDEs +1305.0776 Discrete Mathematics +1305.4548 Optimization and Control +1305.7324 Statistical Mechanics +1306.5763 Materials Science +1307.5427 Mesoscale and Nanoscale Physics +1307.6281 +1307.6493 +1308.0850 Neural and Evolutionary Computing +1308.1472 Mathematical Software +1308.2903 Cryptography and Security +1308.3461 Mesoscale and Nanoscale Physics +1308.3599 Chemical Physics +1309.1511 Geometric Topology +1309.1588 Computational Geometry +1309.4092 Phenomenology +1309.5248 +1310.2912 Analysis of PDEs +1310.6369 Phenomenology +1310.7749 Mesoscale and Nanoscale Physics +1310.7965 Computers and Society +1310.8029 Strongly Correlated Electrons +1310.8623 Number Theory +1311.0005 Quantum Gases +1311.1238 +1311.1283 Statistics Theory +1311.1623 Statistical Mechanics +1311.3739 Computational Physics +1311.5419 +1311.5580 Strongly Correlated Electrons +1311.7074 Theory +1312.0419 Strongly Correlated Electrons +1312.0549 Phenomenology +1312.2011 Phenomenology +1312.3499 +1312.3839 History and Overview +1312.4411 Metric Geometry +1312.4618 Quantum Gases +1312.4873 Lattice +1312.5154 Cosmology and Nongalactic Astrophysics +1312.5220 Phenomenology +1312.6778 Materials Science +1312.7425 Group Theory +1401.2412 Pattern Formation and Solitons +1401.2615 Phenomenology +1401.5251 Algebraic Topology +1401.7826 Discrete Mathematics +1402.1471 Statistical Mechanics +1402.1927 Superconductivity +1402.1948 +1402.2928 Probability +1402.3220 Cosmology and Nongalactic Astrophysics +1402.3532 Commutative Algebra +1402.3966 Quantum Gases +1402.4955 Optics +1402.5413 Strongly Correlated Electrons +1402.5756 Materials Science +1402.5855 Astrophysics of Galaxies +1402.5895 Soft Condensed Matter +1403.1065 Data Structures and Algorithms +1403.1127 Cell Behavior +1403.2614 Chaotic Dynamics +1403.7652 +1404.0109 Phenomenology +1404.0348 +1404.0482 Superconductivity +1404.0521 High Energy Astrophysical Phenomena +1404.0693 Chaotic Dynamics +1404.0802 +1404.1253 Complex Variables +1404.2499 Mesoscale and Nanoscale Physics +1404.3373 Algebraic Geometry +1404.3664 Superconductivity +1404.3917 Biomolecules +1404.5833 Mesoscale and Nanoscale Physics +1404.6398 High Energy Astrophysical Phenomena +1404.7839 Phenomenology +1405.2730 Strongly Correlated Electrons +1405.3936 Experiment +1405.4166 Phenomenology +1405.4466 Cosmology and Nongalactic Astrophysics +1405.5453 Analysis of PDEs +1405.5890 Accelerator Physics +1405.6433 Discrete Mathematics +1405.6558 Superconductivity +1405.6840 +1405.7292 Machine Learning +1405.7383 Discrete Mathematics +1406.0588 Computer Vision and Pattern Recognition +1406.0756 Accelerator Physics +1406.0818 Earth and Planetary Astrophysics +1406.0979 Fluid Dynamics +1406.1052 Soft Condensed Matter +1406.1089 Optimization and Control +1406.1166 Complex Variables +1406.1167 Learning +1406.1168 Commutative Algebra +1406.1175 Astrophysics of Galaxies +1406.1182 Algebraic Geometry +1406.1186 Astrophysics of Galaxies +1406.1196 Combinatorics +1406.1201 +1406.1203 Computation and Language +1406.1204 Materials Science +1406.1210 Classical Analysis and ODEs +1406.1211 Solar and Stellar Astrophysics +1406.1213 Cryptography and Security +1406.1214 Probability +1406.1219 Populations and Evolution +1406.1220 Dynamical Systems +1406.1224 Programming Languages +1406.1231 Machine Learning +1406.1232 +1406.1233 Algebraic Geometry +1406.1236 Rings and Algebras +1406.1237 Rings and Algebras +1406.1238 Logic in Computer Science +1406.1240 Rings and Algebras +1406.1241 Computation and Language +1406.1243 Astrophysics of Galaxies +1406.1244 Distributed, Parallel, and Cluster Computing +1406.1245 Methodology +1406.1247 Computer Vision and Pattern Recognition +1406.1248 Probability +1406.1250 Combinatorics +1406.1251 Category Theory +1406.1255 Networking and Internet Architecture +1406.1256 Optimization and Control +1406.1262 Number Theory +1406.1264 Geometric Topology +1406.1265 Optimization and Control +1406.1266 Accelerator Physics +1406.1268 Optics +1406.1271 Optics +1406.1275 Information Theory +1406.1276 Numerical Analysis +1406.1279 Numerical Analysis +1406.1280 Computation and Language +1406.1281 Information Theory +1406.1284 Networking and Internet Architecture +1406.1291 Logic +1406.1294 Complex Variables +1406.1299 Complex Variables +1406.1302 Soft Condensed Matter +1406.1304 Algebraic Topology +1406.1311 +1406.1319 Mesoscale and Nanoscale Physics +1406.1324 Superconductivity +1406.1325 Exactly Solvable and Integrable Systems +1406.1326 Exactly Solvable and Integrable Systems +1406.1328 +1406.1329 Discrete Mathematics +1406.1330 Exactly Solvable and Integrable Systems +1406.1332 Methodology +1406.1333 Numerical Analysis +1406.1335 Social and Information Networks +1406.1336 Statistics Theory +1406.1341 Combinatorics +1406.1347 Subcellular Processes +1406.1360 Numerical Analysis +1406.1362 Networking and Internet Architecture +1406.1363 Astrophysics of Galaxies +1406.1371 History and Philosophy of Physics +1406.1372 Theory +1406.1375 Number Theory +1406.1376 Atomic Physics +1406.1377 Analysis of PDEs +1406.1379 Cosmology and Nongalactic Astrophysics +1406.1385 Learning +1406.1388 Solar and Stellar Astrophysics +1406.1390 Number Theory +1406.1393 Programming Languages +1406.1395 Software Engineering +1406.1399 Combinatorics +1406.1400 Biomolecules +1406.1405 General Topology +1406.1410 Phenomenology +1406.1412 General Physics +1406.1419 Geophysics +1406.1423 Databases +1406.1425 +1406.1427 Materials Science +1406.1431 Databases +1406.1433 Discrete Mathematics +1406.1435 Numerical Analysis +1406.1441 Phenomenology +1406.1444 Classical Analysis and ODEs +1406.1445 Quantitative Methods +1406.1447 Analysis of PDEs +1406.1452 Quantitative Methods +1406.1453 Representation Theory +1406.1455 Solar and Stellar Astrophysics +1406.1457 Earth and Planetary Astrophysics +1406.1463 Probability +1406.1469 Computers and Society +1406.1473 Superconductivity +1406.1474 Dynamical Systems +1406.1475 Computers and Society +1406.1477 Solar and Stellar Astrophysics +1406.1478 Phenomenology +1406.1482 Solar and Stellar Astrophysics +1406.1483 Optics +1406.1488 Information Theory +1406.1489 Optimization and Control +1406.1492 Phenomenology +1406.1494 Solar and Stellar Astrophysics +1406.1496 Cosmology and Nongalactic Astrophysics +1406.1500 Combinatorics +cond-mat/0703345 Mesoscale and Nanoscale Physics +0802.3873 +0807.3034 +0812.4205 Materials Science +0906.4536 Combinatorics +0909.5622 Symplectic Geometry +0912.4933 +1003.1872 Neurons and Cognition +1102.5358 Dynamical Systems +1104.3617 Number Theory +1105.3170 Combinatorics +1106.3959 Symplectic Geometry +1106.6258 Learning +1108.3061 Algebraic Topology +1108.5068 Quantum Gases +1108.5974 Computation and Language +1110.0927 Symplectic Geometry +1111.4332 +1111.4893 Differential Geometry +1201.5477 Physics and Society +1201.5484 Physics and Society +1202.3359 Category Theory +1203.1819 +1204.3613 Spectral Theory +1205.0303 Probability +1205.3669 Algebraic Topology +1205.4113 +1205.4607 General Physics +1206.1138 Superconductivity +1206.3053 Dynamical Systems +1207.4047 Algebraic Geometry +1207.6295 Performance +1208.2745 Number Theory +1208.6000 Symplectic Geometry +1209.0315 Combinatorics +1210.0551 Atomic Physics +1210.1146 +1210.1694 K-Theory and Homology +1210.4460 Machine Learning +1210.4567 Computation and Language +1211.0616 Learning +1211.0970 Physics and Society +1211.1994 +1212.2193 Algebraic Geometry +1212.6411 Atmospheric and Oceanic Physics +1301.4144 Quantitative Methods +1301.4149 Mesoscale and Nanoscale Physics +1301.4472 Pattern Formation and Solitons +1301.7186 Mesoscale and Nanoscale Physics +1302.0140 Materials Science +1302.4671 Materials Science +1302.4843 +1302.5614 Materials Science +1302.5810 Analysis of PDEs +1303.1346 Group Theory +1303.1568 Number Theory +1303.2079 Physics and Society +1303.2185 Spectral Theory +1303.2229 Number Theory +1303.2246 Genomics +1303.2565 Optics +1303.5242 Complex Variables +1304.0108 Algebraic Geometry +1304.4902 Chemical Physics +1304.5702 Data Structures and Algorithms +1305.1273 Analysis of PDEs +1305.3425 Soft Condensed Matter +1305.3925 Quantum Gases +1305.4780 Rings and Algebras +1305.5415 Theory +1306.2592 +1306.2832 Trading and Market Microstructure +1306.3769 Physics and Society +1307.0118 Graphics +1307.0958 Fluid Dynamics +1307.1007 Analysis of PDEs +1307.2598 Operator Algebras +1307.3909 Theory +1307.4618 Fluid Dynamics +1307.5082 Materials Science +1307.5102 Computer Vision and Pattern Recognition +1307.5270 Phenomenology +1307.5428 Accelerator Physics +1307.6038 Chaotic Dynamics +1307.6640 Materials Science +1307.6815 Astrophysics of Galaxies +1307.7577 Learning +1307.8193 Soft Condensed Matter +1308.1191 Disordered Systems and Neural Networks +1308.2073 Instrumentation and Detectors +1308.2975 Chaotic Dynamics +1308.6452 Analysis of PDEs +1309.1154 Astrophysics of Galaxies +1309.1516 Information Theory +1309.2309 +1309.2556 +1309.2629 Astrophysics of Galaxies +1309.2729 Data Structures and Algorithms +1309.3974 Quantum Gases +1309.5362 Quantitative Methods +1309.5600 Number Theory +1309.5807 Chaotic Dynamics +1309.6203 Operator Algebras +1309.6420 Soft Condensed Matter +1309.7155 Geometric Topology +1310.0598 Dynamical Systems +1310.1379 Data Analysis, Statistics and Probability +1310.2254 Group Theory +1310.2264 Genomics +1310.2874 +1310.4051 Mesoscale and Nanoscale Physics +1310.7504 Numerical Analysis +1311.1030 +1311.1046 Phenomenology +1311.1802 Soft Condensed Matter +1311.2069 Astrophysics of Galaxies +1311.2188 Phenomenology +1311.2838 Machine Learning +1311.4962 Lattice +1311.5304 Distributed, Parallel, and Cluster Computing +1311.5506 +1311.6107 Systems and Control +1311.6184 Learning +1311.6188 +1311.6386 Phenomenology +1311.6741 Spectral Theory +1312.0741 Experiment +1312.0976 Computers and Society +1312.1848 Mesoscale and Nanoscale Physics +1312.2053 Mesoscale and Nanoscale Physics +1312.2650 Physics and Society +1312.3179 Chemical Physics +1312.3559 +1312.3922 Strongly Correlated Electrons +1312.4655 +1312.6137 +1312.6321 Populations and Evolution +1312.6548 Superconductivity +1312.6575 Cosmology and Nongalactic Astrophysics +1312.6731 +1312.7458 Disordered Systems and Neural Networks +1312.7521 Mesoscale and Nanoscale Physics +1401.0047 Mesoscale and Nanoscale Physics +1401.1124 Neural and Evolutionary Computing +1401.3965 Cosmology and Nongalactic Astrophysics +1401.5497 Chemical Physics +1401.5895 Cryptography and Security +1401.5980 Computation and Language +1401.5992 Mesoscale and Nanoscale Physics +1401.6652 Phenomenology +1401.7046 Soft Condensed Matter +1401.7277 Chemical Physics +1401.7291 Optimization and Control +1401.7597 Cosmology and Nongalactic Astrophysics +1401.8230 Mathematical Software +1402.0396 +1402.1278 Disordered Systems and Neural Networks +1402.1611 +1402.2213 Chemical Physics +1402.2907 Representation Theory +1402.2966 Machine Learning +1402.3228 Phenomenology +1402.3490 Artificial Intelligence +1402.4102 Methodology +1402.4157 Artificial Intelligence +1402.4887 Methodology +1402.5666 Information Theory +1402.6874 Materials Science +1402.7247 Information Theory +1403.0069 +1403.0673 +1403.1142 Cryptography and Security +1403.1184 Phenomenology +1403.1192 +1403.2444 Theory +1403.3566 Strongly Correlated Electrons +1403.4233 Quantum Gases +1403.4342 Information Theory +1403.4438 Analysis of PDEs +1403.4563 Algebraic Geometry +1403.5044 Fluid Dynamics +1403.5051 Superconductivity +1403.5485 Materials Science +1403.5694 Phenomenology +1403.5898 Cosmology and Nongalactic Astrophysics +1403.6121 Theory +1403.6382 Computer Vision and Pattern Recognition +1403.7630 Materials Science +1403.8107 Cosmology and Nongalactic Astrophysics +1404.0097 Information Theory +1404.1073 Solar and Stellar Astrophysics +1404.1150 Representation Theory +1404.1154 Number Theory +1404.1591 Materials Science +1404.2304 Superconductivity +1404.3092 +1404.4732 +1404.5173 Information Theory +1404.5467 Number Theory +1404.5827 Subcellular Processes +1404.5921 Materials Science +1404.5944 Solar and Stellar Astrophysics +1404.6113 Probability +1404.6664 Databases +1404.6859 Chemical Physics +1404.7331 Methodology +1404.7612 Analysis of PDEs +1405.0012 Superconductivity +1405.0450 Mesoscale and Nanoscale Physics +1405.0885 Mesoscale and Nanoscale Physics +1405.1101 Optics +1405.1103 Optics +1405.1208 +1405.1235 Operator Algebras +1405.1249 Commutative Algebra +1405.1545 Geometric Topology +1405.1992 Software Engineering +1405.2017 Networking and Internet Architecture +1405.2045 Algebraic Geometry +1405.2189 +1405.2191 Analysis of PDEs +1405.2192 Analysis of PDEs +1405.2350 Methodology +1405.2357 Soft Condensed Matter +1405.2358 Geometric Topology +1405.2363 Systems and Control +1405.2369 Strongly Correlated Electrons +1405.2370 Statistics Theory +1405.2376 Cryptography and Security +1405.2377 Machine Learning +1405.2378 Computational Geometry +1405.2381 Optics +1405.2382 Strongly Correlated Electrons +1405.2384 Portfolio Management +1405.2385 Group Theory +1405.2391 Strongly Correlated Electrons +1405.2392 Optics +1405.2398 Combinatorics +1405.2403 Computer Vision and Pattern Recognition +1405.2405 Group Theory +1405.2406 Robotics +1405.2407 Digital Libraries +1405.2408 +1405.2411 Probability +1405.2414 Quantum Algebra +1405.2417 Networking and Internet Architecture +1405.2419 Quantitative Methods +1405.2420 Learning +1405.2427 Materials Science +1405.2428 Populations and Evolution +1405.2429 Category Theory +1405.2430 Distributed, Parallel, and Cluster Computing +1405.2432 Machine Learning +1405.2434 Computation and Language +1405.2444 Metric Geometry +1405.2445 Statistical Finance +1405.2451 Phenomenology +1405.2456 Statistics Theory +1405.2458 Information Theory +1405.2459 Mathematical Finance +1405.2461 Metric Geometry +1405.2462 Probability +1405.2463 Complex Variables +1405.2474 +1405.2481 +1405.2482 Instrumentation and Detectors +1405.2484 Computer Science and Game Theory +1405.2486 Probability +1405.2489 Computers and Society +1405.2492 Networking and Internet Architecture +1405.2493 Optics +1405.2496 Computer Vision and Pattern Recognition +1405.2501 Artificial Intelligence +1405.2506 Physics Education +1405.2517 Computers and Society +1405.2520 Instrumentation and Detectors +1405.2521 Superconductivity +1405.2522 Analysis of PDEs +1405.2523 Distributed, Parallel, and Cluster Computing +1405.2524 Information Theory +1405.2526 Probability +1405.2527 Functional Analysis +1405.2531 Representation Theory +1405.2533 Algebraic Geometry +1405.2534 +1405.2537 Dynamical Systems +1405.2538 Programming Languages +1405.2539 Computer Vision and Pattern Recognition +1405.2542 Dynamical Systems +1405.2544 Differential Geometry +1405.2547 Combinatorics +1405.2548 Populations and Evolution +1405.2553 Formal Languages and Automata Theory +1405.2554 Rings and Algebras +1405.2558 Logic +1405.2559 Logic +1405.2562 +1405.2563 Optics +1405.2564 Programming Languages +1405.2566 Machine Learning +1405.2568 Geometric Topology +1405.2574 Geometric Topology +1405.2575 Dynamical Systems +1405.2576 Information Theory +1405.2579 Chaotic Dynamics +1405.2580 Systems and Control +1405.2584 Information Retrieval +1405.2586 Phenomenology +1405.2589 Numerical Analysis +1405.2597 Information Theory +1405.2601 Statistics Theory +1405.2602 Information Theory +1405.2603 Combinatorics +1405.2605 Information Theory +1405.2606 Machine Learning +1405.2611 +1405.2615 Combinatorics +1405.2619 Computational Physics +1405.2622 Social and Information Networks +1405.2624 Combinatorics +1405.2627 Networking and Internet Architecture +1405.2628 History and Overview +1405.2631 Analysis of PDEs +1405.2635 Biological Physics +1405.2636 Distributed, Parallel, and Cluster Computing +1405.2638 Solar and Stellar Astrophysics +1405.2646 Chemical Physics +1405.2647 +1405.2648 Optics +1405.2654 Analysis of PDEs +1405.2657 Plasma Physics +1405.2658 Exactly Solvable and Integrable Systems +1405.2659 +1405.2671 Phenomenology +1405.2674 Probability +1405.2678 Analysis of PDEs +1405.2679 Analysis of PDEs +1405.2680 Statistics Theory +1405.2681 Probability +1405.2682 Computational Physics +1405.2683 Numerical Analysis +1405.2685 Networking and Internet Architecture +1405.2689 Accelerator Physics +1405.2690 Machine Learning +1405.2695 Geometric Topology +1405.2697 Phenomenology +1405.2700 Group Theory +1405.2701 Group Theory +1405.2703 +1405.2704 Strongly Correlated Electrons +1405.2708 Systems and Control +1405.2709 Quantitative Methods +1405.2710 +1405.2714 Dynamical Systems +1405.2716 Probability +1405.2717 Probability +1405.2718 Mathematical Finance +1405.2719 Classical Analysis and ODEs +1405.2720 Exactly Solvable and Integrable Systems +1405.2722 Methodology +1405.2725 Probability +1405.2739 Experiment +1405.2745 Exactly Solvable and Integrable Systems +1405.2748 Mesoscale and Nanoscale Physics +1405.2750 Operator Algebras +1405.2753 Algebraic Geometry +1405.2756 Differential Geometry +1405.2762 High Energy Astrophysical Phenomena +1405.2767 Information Theory +1405.2768 Analysis of PDEs +1405.2772 Optics +1405.2774 +1405.2780 Populations and Evolution +1405.2781 Other Statistics +1405.2782 Classical Analysis and ODEs +1405.2789 Pattern Formation and Solitons +1405.2791 Logic +1405.2795 Robotics +1405.2796 Analysis of PDEs +1405.2799 +1405.2807 Optics +1405.2809 Information Theory +1405.2810 Numerical Analysis +1405.2811 Solar and Stellar Astrophysics +1405.2816 Networking and Internet Architecture +1405.2818 Methodology +1405.2820 Information Theory +1405.2822 Networking and Internet Architecture +1405.2825 +1405.2826 Computer Science and Game Theory +1405.2827 Pattern Formation and Solitons +1405.2829 Strongly Correlated Electrons +1405.2830 Differential Geometry +1405.2832 +1405.2838 Phenomenology +1405.2844 Combinatorics +1405.2845 +1405.2848 Databases +1405.2855 Combinatorics +1405.2864 Classical Analysis and ODEs +1405.2866 Optimization and Control +1405.2867 Soft Condensed Matter +1405.2869 Optics +1405.2871 +1405.2872 Robotics +1405.2878 Artificial Intelligence +1405.2880 Probability +1405.2882 Instrumentation and Detectors +1405.2883 Artificial Intelligence +1405.2891 Logic in Computer Science +1405.2893 Algebraic Geometry +1405.2894 Information Theory +astro-ph/0612568 +cs/0401020 Neural and Evolutionary Computing +hep-th/0702199 Theory +physics/9905058 General Physics +physics/9906030 General Physics +q-bio/0403011 Neurons and Cognition +q-bio/0502023 Neurons and Cognition +0806.1255 Numerical Analysis +0901.2983 Operator Algebras +0902.2081 Computational Complexity +0903.0050 Computational Complexity +0906.2393 Algebraic Geometry +0906.4325 Numerical Analysis +0911.1735 Geometric Topology +1005.4609 Geometric Topology +1006.4566 Classical Analysis and ODEs +1006.5137 Optimization and Control +1007.3624 Computational Complexity +1008.2529 +1010.0278 History and Overview +1010.2342 Functional Analysis +1011.1201 Computational Complexity +1012.1171 Phenomenology +1012.4135 Differential Geometry +1012.5291 Group Theory +1101.0645 Numerical Analysis +1101.1539 Combinatorics +1101.3837 Computational Complexity +1101.4417 Combinatorics +1102.1199 Computational Complexity +1102.3642 Classical Analysis and ODEs +1103.2138 Differential Geometry +1103.4028 Phenomenology +1105.0165 Computational Complexity +1105.5430 Analysis of PDEs +1106.0023 Combinatorics +1106.0263 Optimization and Control +1108.5149 Earth and Planetary Astrophysics +1109.3668 Numerical Analysis +1109.3853 Analysis of PDEs +1109.5375 Analysis of PDEs +1109.5545 Phenomenology +1110.2307 Probability +1110.5805 Combinatorics +1111.1257 Phenomenology +1111.2608 Populations and Evolution +1111.6743 Cosmology and Nongalactic Astrophysics +1112.1533 Phenomenology +1112.3250 Applications +1112.3585 Representation Theory +1201.2770 Computation +1201.5236 Mesoscale and Nanoscale Physics +1202.0036 Probability +1202.3222 Algebraic Topology +1202.4882 Phenomenology +1202.6549 Analysis of PDEs +1203.0845 Phenomenology +1203.1199 Probability +1203.4688 Classical Analysis and ODEs +1203.6502 Statistics Theory +1204.1351 History and Overview +1204.2595 Numerical Analysis +1205.0692 Phenomenology +1205.2881 Optimization and Control +1205.5728 Theory +1205.6779 Theory +1207.5987 +1207.7177 Quantum Algebra +1207.7253 Quantitative Methods +1208.2041 Numerical Analysis +1208.2964 Theory +1209.1527 Classical Analysis and ODEs +1209.1702 +1209.2327 Differential Geometry +1209.3075 Representation Theory +1209.4867 Networking and Internet Architecture +1209.6522 Analysis of PDEs +1210.2386 Mesoscale and Nanoscale Physics +1210.4352 Data Structures and Algorithms +1210.6256 Numerical Analysis +1210.8347 Phenomenology +1211.2728 Theory +1211.3893 Analysis of PDEs +1211.4140 Number Theory +1211.4349 Phenomenology +1211.4637 +1211.5297 Phenomenology +1211.5909 +1211.6446 +1212.0695 Learning +1212.3168 Phenomenology +1212.3361 Mesoscale and Nanoscale Physics +1212.4597 Rings and Algebras +1212.5522 Commutative Algebra +1301.1810 Fluid Dynamics +1301.2484 +1301.3765 Analysis of PDEs +1301.6327 Combinatorics +1302.2729 +1302.2993 Fluid Dynamics +1302.3671 Biological Physics +1302.6963 +1303.1666 Quantum Gases +1303.4952 Phenomenology +1303.7028 +1304.0365 Phenomenology +1304.2025 +1304.3182 Phenomenology +1304.5510 Differential Geometry +1304.5527 Theory +1304.5533 Mesoscale and Nanoscale Physics +1304.6967 Mesoscale and Nanoscale Physics +1304.7470 +1304.7668 Statistics Theory +1305.0748 Phenomenology +1305.1388 Materials Science +1305.2360 Instrumentation and Methods for Astrophysics +1305.3442 +1305.3760 Soft Condensed Matter +1305.4646 Mesoscale and Nanoscale Physics +1305.5655 Digital Libraries +1305.5859 Systems and Control +1305.5957 Lattice +1305.6544 Phenomenology +1306.0629 Theory +1306.0709 Soft Condensed Matter +1306.0866 Theory +1306.0888 Mesoscale and Nanoscale Physics +1306.2114 Discrete Mathematics +1306.4184 Superconductivity +1306.4200 Mesoscale and Nanoscale Physics +1306.5359 Superconductivity +1307.1056 Analysis of PDEs +1307.1155 Cosmology and Nongalactic Astrophysics +1307.2115 Chemical Physics +1307.2535 Theory +1307.2932 Theory +1307.4551 Phenomenology +1307.5257 Mesoscale and Nanoscale Physics +1307.5630 Strongly Correlated Electrons +1307.5925 Phenomenology +1307.6214 Statistical Mechanics +1307.7036 Quantum Gases +1307.7345 Numerical Analysis +1307.7701 Neurons and Cognition +1308.0329 Theory +1308.0654 Theory +1308.1368 Phenomenology +1308.1875 Biological Physics +1308.1987 Phenomenology +1308.2395 +1308.4314 Phenomenology +1308.4981 Superconductivity +1308.5359 +1308.5954 +1308.6093 Chaotic Dynamics +1309.0847 Combinatorics +1309.1702 +1309.2265 +1309.2917 Cosmology and Nongalactic Astrophysics +1309.2937 Mesoscale and Nanoscale Physics +1309.3087 +1309.3205 Quantum Gases +1309.3564 Phenomenology +1309.4071 Phenomenology +1309.4576 Physics and Society +1309.6145 +1309.6580 Experiment +1310.0713 Phenomenology +1310.0838 Combinatorics +1310.1432 +1310.2152 Cosmology and Nongalactic Astrophysics +1310.4352 Phenomenology +1310.4393 Information Theory +1310.4646 Phenomenology +1310.5059 +1310.5769 Exactly Solvable and Integrable Systems +1310.5926 Cosmology and Nongalactic Astrophysics +1310.6053 +1310.6582 Phenomenology +1310.6690 +1310.6906 Theory +1310.7534 Atomic Physics +1310.7542 Complex Variables +1310.7723 Strongly Correlated Electrons +1310.8225 +1310.8503 Experiment +1311.0067 Phenomenology +1311.0555 Mesoscale and Nanoscale Physics +1311.1211 Cosmology and Nongalactic Astrophysics +1311.1474 Lattice +1311.2082 Phenomenology +1311.2925 +1311.3031 +1311.4059 +1311.4796 Strongly Correlated Electrons +1311.6313 Theory +1311.6423 Combinatorics +1312.0248 Combinatorics +1312.2591 Phenomenology +1312.3044 Mesoscale and Nanoscale Physics +1312.3803 Experiment +1312.5095 Fluid Dynamics +1312.5379 Mesoscale and Nanoscale Physics +1312.5571 Phenomenology +1312.5726 High Energy Astrophysical Phenomena +1312.5865 +1312.6194 Differential Geometry +1312.7716 Theory +1312.7790 Cosmology and Nongalactic Astrophysics +1401.0787 +1401.4724 Complex Variables +1401.4758 Instrumentation and Methods for Astrophysics +1401.5886 Phenomenology +1401.6781 Algebraic Geometry +1401.6826 Theory +1401.6850 Probability +1401.7007 Classical Analysis and ODEs +1401.7023 Algebraic Geometry +1401.7024 +1401.7025 Analysis of PDEs +1401.7034 Networking and Internet Architecture +1401.7040 Combinatorics +1401.7053 Functional Analysis +1401.7057 Optics +1401.7059 Functional Analysis +1401.7060 Analysis of PDEs +1401.7063 Astrophysics of Galaxies +1401.7066 Optimization and Control +1401.7068 Optics +1401.7074 Information Theory +1401.7075 Optics +1401.7078 Instrumentation and Methods for Astrophysics +1401.7079 Optimization and Control +1401.7082 Optics +1401.7085 Information Theory +1401.7086 Numerical Analysis +1401.7089 Instrumentation and Methods for Astrophysics +1401.7091 Combinatorics +1401.7092 Group Theory +1401.7095 Instrumentation and Detectors +1401.7103 Mesoscale and Nanoscale Physics +1401.7104 Software Engineering +1401.7105 +1401.7110 Data Structures and Algorithms +1401.7111 +1401.7116 Information Theory +1401.7119 Adaptation and Self-Organizing Systems +1401.7122 Number Theory +1401.7123 Combinatorics +1401.7126 Number Theory +1401.7127 Representation Theory +1401.7129 Numerical Analysis +1401.7130 Probability +1401.7131 Functional Analysis +1401.7132 Cosmology and Nongalactic Astrophysics +1401.7134 Information Theory +1401.7135 Combinatorics +1401.7139 +1401.7142 +1401.7143 Operator Algebras +1401.7145 Machine Learning +1401.7146 Networking and Internet Architecture +1401.7148 Other Computer Science +1401.7152 Number Theory +1401.7156 Functional Analysis +1401.7157 Optics +1401.7158 Complex Variables +1401.7163 High Energy Astrophysical Phenomena +1401.7170 Statistical Finance +1401.7176 Statistical Mechanics +1401.7181 Quantum Gases +1401.7183 Combinatorics +1401.7188 Networking and Internet Architecture +1401.7191 Other Computer Science +1401.7193 Human-Computer Interaction +1401.7197 Probability +1401.7199 Soft Condensed Matter +1401.7200 Theory +1401.7201 Materials Science +1401.7203 Group Theory +1401.7209 Dynamical Systems +1401.7213 Numerical Analysis +1401.7215 Soft Condensed Matter +1401.7216 Information Theory +1401.7217 Earth and Planetary Astrophysics +1401.7218 Cosmology and Nongalactic Astrophysics +1401.7219 Soft Condensed Matter +1401.7222 Algebraic Geometry +1401.7224 Statistical Mechanics +1401.7232 +1401.7234 Logic in Computer Science +1401.7239 Social and Information Networks +1401.7244 Functional Analysis +1401.7248 Group Theory +1401.7249 Artificial Intelligence +1401.7254 +1401.7258 High Energy Astrophysical Phenomena +1401.7261 Information Theory +1401.7262 Information Theory +1401.7263 Data Structures and Algorithms +1401.7270 Phenomenology +1401.7273 Information Theory +1401.7282 Chemical Physics +1401.7285 Algebraic Topology +1401.7286 Astrophysics of Galaxies +1401.7288 Information Theory +1401.7289 Information Theory +1401.7290 Information Theory +1401.7293 Information Theory +1401.7299 Earth and Planetary Astrophysics +1401.7303 Algebraic Geometry +1401.7304 Data Structures and Algorithms +1401.7311 Soft Condensed Matter +1401.7312 +1401.7313 Networking and Internet Architecture +1401.7315 Metric Geometry +1401.7316 Probability +1401.7320 +cond-mat/0308237 Materials Science +cond-mat/0404490 Materials Science +cond-mat/0703623 Mesoscale and Nanoscale Physics +cond-mat/0703665 Mesoscale and Nanoscale Physics +hep-ph/0702266 Phenomenology +hep-th/0511082 Theory +math/0005036 Numerical Analysis +math/0212391 Numerical Analysis +math/0701503 Numerical Analysis +math/0701506 Numerical Analysis +0804.2394 Statistical Mechanics +0807.4621 Probability +0902.1493 Representation Theory +0903.0265 Soft Condensed Matter +0907.0829 Statistical Mechanics +1011.1754 Optimization and Control +1011.2643 Statistical Mechanics +1012.5751 Discrete Mathematics +1105.0828 Applications +1106.2972 +1107.2698 Differential Geometry +1108.1910 Pricing of Securities +1109.4003 Computation +1110.0777 Number Theory +1112.1047 Applications +1201.5786 Methodology +1202.3167 Optimization and Control +1203.0907 Commutative Algebra +1203.4587 Information Theory +1204.1622 Algebraic Geometry +1204.2969 Representation Theory +1204.4678 Mesoscale and Nanoscale Physics +1205.2536 Machine Learning +1205.4174 Methodology +1206.0537 Strongly Correlated Electrons +1206.3627 Statistics Theory +1207.6955 +1209.3375 +1209.6575 General Physics +1210.0484 Differential Geometry +1210.7351 Methodology +1211.0149 History and Overview +1211.1539 Statistical Mechanics +1211.2330 Statistical Mechanics +1211.2387 +1211.3563 Algebraic Geometry +1212.0057 High Energy Astrophysical Phenomena +1212.2706 Statistical Mechanics +1212.4740 Dynamical Systems +1212.6641 Numerical Analysis +1301.2732 Algebraic Geometry +1302.2727 Statistical Mechanics +1302.4417 Statistical Mechanics +1302.5852 Algebraic Geometry +1303.3216 Statistics Theory +1303.4096 Probability +1303.4113 Algebraic Geometry +1303.4574 +1303.4780 Mesoscale and Nanoscale Physics +1304.1949 Astrophysics of Galaxies +1304.2284 Operator Algebras +1304.2988 Atomic Physics +1304.3378 Methodology +1304.5985 Statistical Mechanics +1304.7463 Algebraic Geometry +1305.0761 Cosmology and Nongalactic Astrophysics +1305.1932 +1305.2757 Geometric Topology +1305.3921 Cosmology and Nongalactic Astrophysics +1305.4600 Optimization and Control +1306.1904 Applications +1306.2036 Statistical Mechanics +1306.2530 Algebraic Topology +1306.4716 Strongly Correlated Electrons +1306.5190 Mesoscale and Nanoscale Physics +1306.5355 Molecular Networks +1306.5471 +1307.0353 Group Theory +1307.0873 Optimization and Control +1307.1850 Logic in Computer Science +1307.2523 Operator Algebras +1307.7765 Algebraic Geometry +1308.0247 Logic +1308.0677 Dynamical Systems +1308.0889 Risk Management +1308.1117 Spectral Theory +1308.2116 Artificial Intelligence +1308.2550 +1308.4053 Materials Science +1308.4379 Phenomenology +1309.0353 Representation Theory +1309.1162 Cosmology and Nongalactic Astrophysics +1309.3095 Optics +1309.3714 Soft Condensed Matter +1309.3814 Mesoscale and Nanoscale Physics +1309.5937 Operator Algebras +1310.1433 Strongly Correlated Electrons +1310.1600 Statistical Mechanics +1310.2418 Computer Vision and Pattern Recognition +1310.3878 Representation Theory +1310.3985 Biomolecules +1310.7399 Pattern Formation and Solitons +1310.7594 Mesoscale and Nanoscale Physics +1310.7647 Dynamical Systems +1310.7936 Cosmology and Nongalactic Astrophysics +1311.1497 Materials Science +1311.2129 Numerical Analysis +1311.3949 Optics +1311.4080 Quantum Gases +1311.4605 Algebraic Topology +1311.5209 Statistical Mechanics +1311.5326 Phenomenology +1311.5541 Materials Science +1311.6466 Cosmology and Nongalactic Astrophysics +1312.0243 Disordered Systems and Neural Networks +1312.0273 High Energy Astrophysical Phenomena +1312.0407 Combinatorics +1312.0970 Chemical Physics +1312.1268 Applications +1312.2347 Cosmology and Nongalactic Astrophysics +1312.3055 Probability +1312.3636 Cosmology and Nongalactic Astrophysics +1312.4341 Theory +1312.4669 +1312.5322 Quantum Gases +1312.5449 +1312.5503 +1312.5812 Statistical Mechanics +1401.0273 Mesoscale and Nanoscale Physics +1401.1787 Statistical Mechanics +1401.3115 Probability +1401.3411 +1401.4668 Neurons and Cognition +1401.5200 Systems and Control +1401.5300 Software Engineering +1401.5812 Geophysics +1401.5891 Computer Vision and Pattern Recognition +1401.7368 Atmospheric and Oceanic Physics +1401.7429 +1401.7678 Strongly Correlated Electrons +1401.8015 Operator Algebras +1401.8099 Optics +1402.0482 Group Theory +1402.1826 Operator Algebras +1402.1870 Combinatorics +1402.2168 +1402.2657 Phenomenology +1402.3295 Other Condensed Matter +1402.4430 Experiment +1402.5149 Probability +1402.5421 +1402.5640 Methodology +1403.0621 Astrophysics of Galaxies +1403.2506 Complex Variables +1403.2759 Mesoscale and Nanoscale Physics +1403.2798 Computers and Society +1403.3662 +1403.4439 Statistical Mechanics +1403.6012 Number Theory +1403.6091 Strongly Correlated Electrons +1403.6145 Mesoscale and Nanoscale Physics +1403.6320 Soft Condensed Matter +1403.7070 Mesoscale and Nanoscale Physics +1403.7390 Phenomenology +1403.7625 Computer Science and Game Theory +1404.0108 Algebraic Topology +1404.0862 +1404.1283 Formal Languages and Automata Theory +1404.1538 Phenomenology +1404.3730 Cosmology and Nongalactic Astrophysics +1404.4509 +1404.5553 Materials Science +1404.7369 Differential Geometry +1404.7753 Digital Libraries +1404.7811 Metric Geometry +1405.1439 Computation and Language +1405.2056 Algebraic Geometry +1405.3037 Phenomenology +1405.3899 Information Theory +1405.3947 Classical Analysis and ODEs +1405.4297 Logic +1405.4876 Theory +1405.4917 Logic in Computer Science +1405.5125 Fluid Dynamics +1405.5633 +1405.5638 Representation Theory +1405.5655 Rings and Algebras +1405.5749 +1405.6436 +1405.6689 Networking and Internet Architecture +1405.7508 Combinatorics +1405.7531 Spectral Theory +1405.7794 Networking and Internet Architecture +1405.7858 Exactly Solvable and Integrable Systems +1405.7898 Programming Languages +1405.7953 Solar and Stellar Astrophysics +1406.0011 Optics +1406.0013 Machine Learning +1406.0014 Medical Physics +1406.0015 Soft Condensed Matter +1406.0017 Formal Languages and Automata Theory +1406.0023 Computer Vision and Pattern Recognition +1406.0024 Statistical Mechanics +1406.0025 Classical Analysis and ODEs +1406.0032 Computation and Language +1406.0038 Superconductivity +1406.0039 Atomic and Molecular Clusters +1406.0043 Logic in Computer Science +1406.0048 +1406.0049 Information Theory +1406.0053 Information Theory +1406.0055 Mathematical Finance +1406.0056 Geometric Topology +1406.0057 Functional Analysis +1406.0058 Algebraic Topology +1406.0061 Phenomenology +1406.0062 Artificial Intelligence +1406.0063 Applications +1406.0065 Differential Geometry +1406.0069 Rings and Algebras +1406.0071 Machine Learning +1406.0074 Computer Vision and Pattern Recognition +1406.0077 Mathematical Finance +1406.0078 Fluid Dynamics +1406.0079 Computation and Language +1406.0086 Information Theory +1406.0088 Rings and Algebras +1406.0092 Symplectic Geometry +1406.0094 Other Quantitative Biology +1406.0095 Quantum Algebra +1406.0096 Probability +1406.0097 Optics +1406.0099 Optics +1406.0100 Combinatorics +1406.0104 Analysis of PDEs +1406.0107 Combinatorics +1406.0109 Methodology +1406.0115 Optics +1406.0116 Earth and Planetary Astrophysics +1406.0117 Software Engineering +1406.0118 Machine Learning +1406.0122 Analysis of PDEs +1406.0123 Analysis of PDEs +1406.0124 Networking and Internet Architecture +1406.0125 Differential Geometry +1406.0132 Computer Vision and Pattern Recognition +1406.0133 Plasma Physics +1406.0134 Logic +1406.0135 Differential Geometry +1406.0137 Functional Analysis +1406.0142 Combinatorics +1406.0143 Information Theory +1406.0148 Applications +1406.0152 +1406.0154 Discrete Mathematics +1406.0155 Artificial Intelligence +1406.0157 Information Theory +1406.0159 Representation Theory +1406.0161 Materials Science +1406.0162 Materials Science +1406.0164 Materials Science +1406.0171 Optics +1406.0174 Algebraic Geometry +1406.0175 Neural and Evolutionary Computing +1406.0184 Performance +1406.0188 +1406.0190 +1406.0194 Strongly Correlated Electrons +1406.0197 Mesoscale and Nanoscale Physics +1406.0207 +1406.0208 Dynamical Systems +1406.0210 Solar and Stellar Astrophysics +1406.0211 Strongly Correlated Electrons +1406.0212 Quantitative Methods +1406.0213 Biomolecules +1406.0214 Systems and Control +1406.0215 Other Computer Science +1406.0216 Digital Libraries +1406.0217 Populations and Evolution +1406.0220 Combinatorics +1406.0223 Learning +1406.0224 Numerical Analysis +1406.0225 Computation +1406.0226 Disordered Systems and Neural Networks +1406.0231 Computer Vision and Pattern Recognition +1406.0233 Operator Algebras +1406.0234 Information Theory +1406.0236 Numerical Analysis +1406.0240 Phenomenology +1406.0241 Algebraic Geometry +1406.0247 Algebraic Geometry +1406.0250 +1406.0253 Other Computer Science +1406.0255 Materials Science +1406.0256 Networking and Internet Architecture +1406.0259 History and Overview +1406.0266 Statistics Theory +1406.0268 Computational Finance +1406.0271 Information Theory +1406.0274 Pattern Formation and Solitons +1406.0276 +1406.0277 Earth and Planetary Astrophysics +1406.0278 Metric Geometry +1406.0282 Functional Analysis +1406.0284 Algebraic Geometry +1406.0285 Performance +1406.0287 Materials Science +1406.0289 Computer Vision and Pattern Recognition +1406.0293 Solar and Stellar Astrophysics +1406.0295 Computers and Society +1406.0296 Information Retrieval +1406.0298 Networking and Internet Architecture +1406.0304 Learning +1406.0309 Networking and Internet Architecture +1406.0312 Computer Vision and Pattern Recognition +1406.0313 Optics +1406.0314 Numerical Analysis +1406.0315 Logic +1406.0316 Analysis of PDEs +1406.0317 Differential Geometry +1406.0318 Analysis of PDEs +1406.0332 Algebraic Geometry +1406.0333 Computational Geometry +1406.0342 Cryptography and Security +1406.0348 Differential Geometry +1406.0349 Logic in Computer Science +1406.0351 Probability +1406.0352 Combinatorics +1406.0358 +1406.0365 Representation Theory +1406.0366 Algebraic Geometry +1406.0367 Analysis of PDEs +1406.0370 Human-Computer Interaction +1406.0373 Cryptography and Security +1406.0375 Networking and Internet Architecture +1406.0378 Combinatorics +1406.0379 Social and Information Networks +1406.0380 Discrete Mathematics +1406.0384 Phenomenology +1406.0385 Number Theory +1406.0387 +1406.0394 Pricing of Securities +1406.0402 General Mathematics +1406.0411 Functional Analysis +1406.0414 +1406.0423 Methodology +1406.0425 Solar and Stellar Astrophysics +1406.0427 Number Theory +1406.0431 +1406.0435 Databases +1406.0441 Cosmology and Nongalactic Astrophysics +1406.0446 Astrophysics of Galaxies +1406.0447 Combinatorics +1406.0448 Materials Science +1406.0449 Probability +1406.0450 Combinatorics +1406.0456 Commutative Algebra +1406.0457 +1406.0459 Dynamical Systems +1406.0460 Group Theory +1406.0462 Instrumentation and Methods for Astrophysics +1406.0463 Analysis of PDEs +1406.0465 Functional Analysis +1406.0469 Astrophysics of Galaxies +1406.0471 Analysis of PDEs +1406.0475 Soft Condensed Matter +1406.0489 Commutative Algebra +1406.0495 Computers and Society +math/0701489 Analysis of PDEs +0711.1229 Differential Geometry +0801.4791 Phenomenology +0807.3805 General Physics +0811.0330 Differential Geometry +0905.1719 Quantum Algebra +0912.3377 Algebraic Geometry +1001.3335 Algebraic Geometry +1001.5006 Algebraic Geometry +1008.2987 Differential Geometry +1106.1299 Probability +1107.4991 Disordered Systems and Neural Networks +1108.4689 Phenomenology +1108.5044 Representation Theory +1110.5524 Mesoscale and Nanoscale Physics +1110.6620 Representation Theory +1202.0500 Applications +1202.3002 Computational Finance +1203.1847 Mesoscale and Nanoscale Physics +1205.0916 +1206.4496 Algebraic Geometry +1206.4578 Strongly Correlated Electrons +1207.6162 +1209.3429 Mesoscale and Nanoscale Physics +1209.5906 Combinatorics +1210.1774 Differential Geometry +1211.3116 High Energy Astrophysical Phenomena +1212.2885 Probability +1212.6400 Experiment +1301.1986 Theory +1301.3266 Mesoscale and Nanoscale Physics +1301.5248 Geometric Topology +1301.5895 Metric Geometry +1302.5686 Analysis of PDEs +1303.0777 Adaptation and Self-Organizing Systems +1303.7013 +1304.5131 Spectral Theory +1304.8127 Dynamical Systems +1305.3117 Mesoscale and Nanoscale Physics +1305.4695 Statistical Mechanics +1305.4759 Exactly Solvable and Integrable Systems +1306.1265 Computation +1306.6794 Functional Analysis +1307.6279 Optimization and Control +1307.7150 Theory +1309.4777 Phenomenology +1310.0985 Disordered Systems and Neural Networks +1310.2484 Statistics Theory +1310.4157 Materials Science +1310.7787 +1310.7808 +1312.0314 Cosmology and Nongalactic Astrophysics +1312.1404 Materials Science +1312.2573 +1312.6706 Complex Variables +1312.6797 Algebraic Topology +1312.7159 Probability +1312.7519 Theory +1401.4065 Cosmology and Nongalactic Astrophysics +1401.6062 +1401.6384 Information Theory +1402.0974 +1402.1384 Information Theory +1402.1973 Computer Vision and Pattern Recognition +1402.3449 +1402.4357 History and Overview +1402.5995 Quantum Gases +1403.1130 Group Theory +1403.1492 Statistical Mechanics +1403.2061 Mesoscale and Nanoscale Physics +1403.2327 Analysis of PDEs +1403.2411 Systems and Control +1403.3868 Group Theory +1403.4028 Functional Analysis +1403.5472 Statistical Mechanics +1403.6854 Populations and Evolution +1403.7827 Physics and Society +1403.8024 Information Theory +1404.0017 High Energy Astrophysical Phenomena +1404.2560 Theory +1404.3597 Lattice +1405.0435 +1405.1117 Information Theory +1405.1950 Adaptation and Self-Organizing Systems +1405.3338 Quantum Gases +1405.3858 Superconductivity +1405.4047 Methodology +1405.4242 Statistical Mechanics +1405.4810 Cosmology and Nongalactic Astrophysics +1405.4914 Phenomenology +1405.6165 Optics +1406.1947 Theory +1406.1983 Superconductivity +1406.3251 +1406.3348 Theory +1406.3389 Number Theory +1406.6309 Analysis of PDEs +1406.6475 +1406.6541 Mesoscale and Nanoscale Physics +1406.6556 Phenomenology +1407.1313 Earth and Planetary Astrophysics +1407.1886 Applications +1407.4256 Experiment +1407.5025 Algebraic Geometry +1408.0247 Genomics +1408.0537 Statistical Mechanics +1408.0770 Materials Science +1408.1512 Strongly Correlated Electrons +1408.4373 +1408.6403 +1408.6564 Phenomenology +1408.7026 Instrumentation and Methods for Astrophysics +1409.0530 Astrophysics of Galaxies +1409.2772 Classical Analysis and ODEs +1409.3081 Data Structures and Algorithms +1409.3462 +1409.4550 +1409.4588 Analysis of PDEs +1409.5695 +1409.5741 Differential Geometry +1409.5943 Optics +1409.6008 Probability +1409.6092 Information Theory +1409.6163 Physics and Society +1409.6503 Physics and Society +1409.8084 Other Condensed Matter +1409.8089 Materials Science +1409.8133 Discrete Mathematics +1409.8227 Phenomenology +1409.8385 Classical Analysis and ODEs +1410.0144 Probability +1410.0197 Combinatorics +1410.0353 Cosmology and Nongalactic Astrophysics +1410.0369 Artificial Intelligence +1410.0371 Computer Vision and Pattern Recognition +1410.0373 Computers and Society +1410.0375 Computer Science and Game Theory +1410.0381 +1410.0387 Statistical Mechanics +1410.0389 Computer Vision and Pattern Recognition +1410.0395 Materials Science +1410.0400 Optics +1410.0403 Methodology +1410.0404 Phenomenology +1410.0409 +1410.0411 Optimization and Control +1410.0418 Atmospheric and Oceanic Physics +1410.0420 Group Theory +1410.0426 Lattice +1410.0427 Commutative Algebra +1410.0428 Metric Geometry +1410.0430 Combinatorics +1410.0440 Learning +1410.0443 Information Theory +1410.0444 Information Theory +1410.0454 Materials Science +1410.0457 Dynamical Systems +1410.0461 Systems and Control +1410.0462 Data Structures and Algorithms +1410.0463 Methodology +1410.0465 Cosmology and Nongalactic Astrophysics +1410.0466 Algebraic Geometry +1410.0470 Methodology +1410.0471 Information Retrieval +1410.0473 Methodology +1410.0475 Quantum Algebra +1410.0478 Computer Vision and Pattern Recognition +1410.0482 Methodology +1410.0485 Physics and Society +1410.0488 Physics and Society +1410.0489 High Energy Astrophysical Phenomena +1410.0490 Analysis of PDEs +1410.0493 Earth and Planetary Astrophysics +1410.0495 Materials Science +1410.0496 Instrumentation and Detectors +1410.0498 Analysis of PDEs +1410.0501 Physics and Society +1410.0504 Analysis of PDEs +1410.0505 Phenomenology +1410.0506 Optimization and Control +1410.0507 Neurons and Cognition +1410.0510 Learning +1410.0511 Probability +1410.0512 Phenomenology +1410.0514 Functional Analysis +1410.0517 Spectral Theory +1410.0519 Computers and Society +1410.0520 Probability +1410.0524 Computation +1410.0526 Phenomenology +1410.0527 Combinatorics +1410.0529 Phenomenology +1410.0531 Computers and Society +1410.0533 Computers and Society +1410.0534 Cryptography and Security +1410.0539 Statistical Mechanics +1410.0540 Computational Geometry +1410.0541 Lattice +1410.0542 Fluid Dynamics +1410.0546 Number Theory +1410.0556 +1410.0559 General Topology +1410.0560 Logic +1410.0562 Data Structures and Algorithms +1410.0564 Mathematical Software +1410.0566 Other Quantitative Biology +1410.0567 Mathematical Software +1410.0568 General Mathematics +1410.0569 Digital Libraries +1410.0573 Formal Languages and Automata Theory +1410.0576 Machine Learning +1410.0586 Physics and Society +1410.0587 Populations and Evolution +1410.0599 Geophysics +1410.0603 Data Analysis, Statistics and Probability +1410.0604 Probability +1410.0607 Solar and Stellar Astrophysics +1410.0608 Quantitative Methods +1410.0610 Social and Information Networks +1410.0617 Systems and Control +1410.0618 Classical Physics +1410.0623 Dynamical Systems +1410.0627 Numerical Analysis +1410.0629 +1410.0630 Machine Learning +1410.0636 Phenomenology +1410.0641 Optimization and Control +1410.0642 Numerical Analysis +1410.0645 Analysis of PDEs +1410.0646 +1410.0649 Quantitative Methods +1410.0652 Biomolecules +1410.0656 +1410.0657 Dynamical Systems +1410.0658 Materials Science +cond-mat/0212358 Statistical Mechanics +math-ph/0412076 +math/0507510 Statistics Theory +math/0703667 Differential Geometry +nlin/0303067 Exactly Solvable and Integrable Systems +nlin/0604067 Exactly Solvable and Integrable Systems +physics/0508234 Physics and Society +0704.2807 Phenomenology +0707.3430 Geometric Topology +0707.3497 Geometric Topology +0709.0207 Representation Theory +0709.2798 Geometric Topology +0805.1827 Distributed, Parallel, and Cluster Computing +0807.2518 Differential Geometry +0902.3789 Medical Physics +0910.2316 Algebraic Geometry +1001.4566 Algebraic Geometry +1010.0383 Combinatorics +1010.1029 Dynamical Systems +1010.4241 Number Theory +1012.3064 Algebraic Geometry +1103.4681 Numerical Analysis +1104.1230 Number Theory +1106.5724 +1108.3328 Number Theory +1109.0306 Classical Analysis and ODEs +1112.6295 Category Theory +1201.0829 Probability +1202.0644 Probability +1202.3259 +1202.3297 +1202.5043 General Physics +1203.2779 +1203.4715 Combinatorics +1203.5827 Number Theory +1203.5930 Probability +1203.6678 Algebraic Geometry +1204.4842 High Energy Astrophysical Phenomena +1204.5050 Probability +1204.5204 Astrophysics of Galaxies +1205.3775 Soft Condensed Matter +1205.5943 Combinatorics +1206.1781 Algebraic Geometry +1206.3079 Mesoscale and Nanoscale Physics +1207.1182 Differential Geometry +1207.6331 Computational Geometry +1208.5839 +1208.6280 Number Theory +1209.0658 Probability +1209.0941 Combinatorics +1209.2379 Commutative Algebra +1209.2870 Phenomenology +1209.3413 Optics +1210.0252 Computation and Language +1210.1357 Social and Information Networks +1210.2116 Classical Physics +1210.2132 Physics and Society +1210.2337 Pricing of Securities +1210.6159 Chaotic Dynamics +1210.6768 Operator Algebras +1210.7193 Probability +1211.1779 +1211.3151 Group Theory +1211.5061 Phenomenology +1211.5472 Applications +1211.7046 Metric Geometry +1211.7056 Combinatorics +1212.0794 Representation Theory +1212.2270 +1212.3660 Numerical Analysis +1212.3861 Disordered Systems and Neural Networks +1212.4488 +1212.4703 Systems and Control +1212.4779 Social and Information Networks +1212.5680 +1301.0683 Social and Information Networks +1301.1423 Information Theory +1301.2158 Artificial Intelligence +1301.3227 Pricing of Securities +1301.3329 Probability +1301.3584 Learning +1301.5520 Number Theory +1301.5573 K-Theory and Homology +1301.7553 Functional Analysis +1302.0039 Group Theory +1302.2163 K-Theory and Homology +1302.2883 Mesoscale and Nanoscale Physics +1302.5638 Mesoscale and Nanoscale Physics +1302.6289 Optimization and Control +1303.0337 Cosmology and Nongalactic Astrophysics +1303.0717 Analysis of PDEs +1303.0881 Astrophysics of Galaxies +1303.0886 Computational Physics +1303.1133 Disordered Systems and Neural Networks +1303.3597 General Topology +1303.3797 Analysis of PDEs +1303.5026 Representation Theory +1303.5966 Physics and Society +1303.7178 Phenomenology +1304.4567 Information Theory +1304.4998 +1304.6293 Algebraic Geometry +1304.7511 Mesoscale and Nanoscale Physics +1304.7545 Soft Condensed Matter +1305.0018 Theory +1305.1028 Mesoscale and Nanoscale Physics +1305.1720 +1305.4162 +1305.4261 Medical Physics +1305.4601 +1305.6790 Combinatorics +1306.0797 Classical Analysis and ODEs +1306.3732 Data Analysis, Statistics and Probability +1306.3910 Combinatorics +1306.3916 Combinatorics +1306.4623 Social and Information Networks +1306.4914 Theory +1306.5606 Artificial Intelligence +1306.6155 Probability +1306.6317 Operator Algebras +1306.6829 Statistical Mechanics +1307.0843 Combinatorics +1307.1502 Theory +1307.2055 Quantum Gases +1307.2422 Phenomenology +1307.3531 Number Theory +1307.4161 Atomic Physics +1307.4661 Genomics +1307.4834 Methodology +1307.5075 Mesoscale and Nanoscale Physics +1307.5626 Computation +1307.5869 Computational Physics +1307.6052 Probability +1307.7047 +1308.0174 Physics and Society +1308.0199 Mesoscale and Nanoscale Physics +1308.1082 Representation Theory +1308.1243 Geometric Topology +1308.1531 Chaotic Dynamics +1308.1790 +1308.1992 Strongly Correlated Electrons +1308.3731 Strongly Correlated Electrons +1308.4348 +1308.5247 Operator Algebras +1308.5888 Rings and Algebras +1308.5940 Algebraic Geometry +1309.0087 Combinatorics +1309.1746 +1309.2361 Strongly Correlated Electrons +1309.2659 Mesoscale and Nanoscale Physics +1309.3542 Atmospheric and Oceanic Physics +1309.4293 Astrophysics of Galaxies +1309.4902 Quantum Gases +1309.5258 Lattice +1309.5411 Strongly Correlated Electrons +1309.5615 Phenomenology +1309.5798 Number Theory +1309.6459 Probability +1309.7372 Chemical Physics +1310.0765 Number Theory +1310.0801 Probability +1310.0955 Computational Geometry +1310.1369 Populations and Evolution +1310.1530 Networking and Internet Architecture +1310.2101 Differential Geometry +1310.2134 Mesoscale and Nanoscale Physics +1310.2171 +1310.2587 Superconductivity +1310.3711 Instrumentation and Methods for Astrophysics +1310.3778 Materials Science +1310.4085 Theory +1310.5735 Theory +1310.6750 Mesoscale and Nanoscale Physics +1310.6952 Statistical Mechanics +1310.7078 Optics +1310.7283 Quantum Gases +1310.7627 Computational Complexity +1310.8155 Optics +1310.8365 Exactly Solvable and Integrable Systems +1310.8586 Strongly Correlated Electrons +1311.0256 Cosmology and Nongalactic Astrophysics +1311.0567 Strongly Correlated Electrons +1311.1091 Probability +1311.1199 Superconductivity +1311.2135 Strongly Correlated Electrons +1311.2466 Data Structures and Algorithms +1311.2513 Computational Complexity +1311.2570 +1311.3417 Astrophysics of Galaxies +1311.4313 High Energy Astrophysical Phenomena +1311.4829 Mesoscale and Nanoscale Physics +1311.5003 +1311.5223 Cosmology and Nongalactic Astrophysics +1311.5449 +1311.5984 +1311.6120 Number Theory +1312.0936 Earth and Planetary Astrophysics +1312.1235 Quantum Gases +1312.1532 Superconductivity +1312.4190 Computer Vision and Pattern Recognition +1312.4993 Distributed, Parallel, and Cluster Computing +1312.5242 Computer Vision and Pattern Recognition +1312.5398 Learning +1312.5479 Computer Vision and Pattern Recognition +1312.5779 +1312.5937 Computational Complexity +1312.6091 Mesoscale and Nanoscale Physics +1312.6095 Computer Vision and Pattern Recognition +1312.6108 Neural and Evolutionary Computing +1312.6192 Computation and Language +1312.6636 Strongly Correlated Electrons +1312.7335 Computer Vision and Pattern Recognition +1312.7380 Probability +1401.0605 Astrophysics of Galaxies +1401.1944 Information Theory +1401.2492 Astrophysics of Galaxies +1401.2889 Representation Theory +1401.2950 Group Theory +1401.3134 Materials Science +1401.3547 Earth and Planetary Astrophysics +1401.4660 Neural and Evolutionary Computing +1401.5332 Soft Condensed Matter +1401.6759 Computational Engineering, Finance, and Science +1401.7211 Optics +1401.7448 Instrumentation and Methods for Astrophysics +1401.7637 History and Philosophy of Physics +1402.0056 Materials Science +1402.0149 +1402.0706 Quantum Gases +1402.0884 Combinatorics +1402.1748 Differential Geometry +1402.1911 Materials Science +1402.1970 Number Theory +1402.2184 Discrete Mathematics +1402.2304 Molecular Networks +1402.2707 Information Theory +1402.2708 Multiagent Systems +1402.2831 Numerical Analysis +1402.3026 Quantum Algebra +1402.3089 Data Analysis, Statistics and Probability +1402.3101 Phenomenology +1402.3239 Combinatorics +1402.3303 Numerical Analysis +1402.3429 +1402.3589 +1402.3600 Astrophysics of Galaxies +1402.3609 Data Structures and Algorithms +1402.3610 Computer Science and Game Theory +1402.3611 Formal Languages and Automata Theory +1402.3613 Artificial Intelligence +1402.3619 Combinatorics +1402.3622 Geometric Topology +1402.3624 Materials Science +1402.3625 Analysis of PDEs +1402.3627 High Energy Astrophysical Phenomena +1402.3633 Analysis of PDEs +1402.3634 Optimization and Control +1402.3635 Combinatorics +1402.3636 Theory +1402.3641 Computation +1402.3643 Computer Science and Game Theory +1402.3645 Mesoscale and Nanoscale Physics +1402.3646 Applications +1402.3649 Materials Science +1402.3651 Other Computer Science +1402.3653 Robotics +1402.3654 Systems and Control +1402.3655 Networking and Internet Architecture +1402.3656 Networking and Internet Architecture +1402.3657 Computer Vision and Pattern Recognition +1402.3658 Analysis of PDEs +1402.3663 Combinatorics +1402.3664 Artificial Intelligence +1402.3666 Algebraic Geometry +1402.3672 Instrumentation and Methods for Astrophysics +1402.3674 Astrophysics of Galaxies +1402.3675 Complex Variables +1402.3676 Populations and Evolution +1402.3680 +1402.3681 Optics +1402.3682 Functional Analysis +1402.3683 Probability +1402.3684 Metric Geometry +1402.3689 Sound +1402.3696 Probability +1402.3697 Number Theory +1402.3698 Cryptography and Security +1402.3702 Rings and Algebras +1402.3707 +1402.3708 Numerical Analysis +1402.3711 Operator Algebras +1402.3715 Physics Education +1402.3718 Multiagent Systems +1402.3722 Computation and Language +1402.3724 Mesoscale and Nanoscale Physics +1402.3734 Rings and Algebras +1402.3740 Optimization and Control +1402.3747 Logic +1402.3749 Robotics +1402.3753 Metric Geometry +1402.3759 Solar and Stellar Astrophysics +1402.3762 History and Philosophy of Physics +1402.3765 Geometric Topology +1402.3766 Formal Languages and Automata Theory +1402.3768 +1402.3771 Populations and Evolution +1402.3777 Atomic Physics +1402.3779 Other Computer Science +1402.3780 Materials Science +1402.3781 Distributed, Parallel, and Cluster Computing +1402.3782 Data Structures and Algorithms +1402.3783 Information Theory +1402.3785 +1402.3788 Distributed, Parallel, and Cluster Computing +1402.3789 Distributed, Parallel, and Cluster Computing +1402.3791 Analysis of PDEs +1402.3792 Classical Physics +1402.3795 Number Theory +1402.3801 Information Theory +1402.3804 Solar and Stellar Astrophysics +1402.3805 Combinatorics +1402.3813 +1402.3815 Algebraic Geometry +1402.3818 +1402.3821 Software Engineering +1402.3827 Optics +1402.3828 Representation Theory +1402.3830 Complex Variables +1402.3831 +1402.3832 Materials Science +1402.3833 Combinatorics +1402.3835 Data Structures and Algorithms +1402.3838 Numerical Analysis +1402.3843 Dynamical Systems +1402.3845 Biomolecules +1402.3847 Systems and Control +1402.3849 Computer Vision and Pattern Recognition +1402.3852 +1402.3853 Chemical Physics +1402.3854 Differential Geometry +1402.3855 Statistical Mechanics +1402.3856 Formal Languages and Automata Theory +1402.3858 +1402.3861 Experiment +1402.3866 Numerical Analysis +1402.3878 +1402.3879 Analysis of PDEs +1402.3883 Numerical Analysis +1402.3889 Superconductivity +1402.3890 Digital Libraries +1402.3891 Learning +1402.3892 Multiagent Systems +1402.3893 Symplectic Geometry +1402.3895 Information Theory +1402.3896 Methodology +1402.3897 Optics +1402.3898 Information Theory +1402.3899 Biological Physics +1402.3901 Analysis of PDEs +1402.3903 Analysis of PDEs +1402.3904 Geometric Topology +1402.3906 History and Overview +1402.3909 Data Structures and Algorithms +1402.3911 Optics +1402.3913 Digital Libraries +1402.3915 Plasma Physics +1402.3917 Functional Analysis +1402.3919 Disordered Systems and Neural Networks +1402.3921 Statistics Theory +1402.3923 Lattice +1402.3925 Statistical Mechanics +1402.3926 Computer Vision and Pattern Recognition +1402.3927 Instrumentation and Methods for Astrophysics +1402.3928 Systems and Control +1402.3929 Materials Science +1402.3930 Numerical Analysis +1402.3931 Probability +1402.3936 +1402.3937 Software Engineering +1402.3939 Social and Information Networks +1402.3942 Computers and Society +1402.3943 Materials Science +1402.3944 Software Engineering +1402.3945 Numerical Analysis +1402.3946 Solar and Stellar Astrophysics +1402.3948 High Energy Astrophysical Phenomena +1402.3950 +1402.3954 Biological Physics +1402.3956 Superconductivity +1402.3958 Differential Geometry +1402.3959 Numerical Analysis +1402.3970 Combinatorics +1402.3973 Information Theory +1402.3977 +1402.3978 +1402.3981 Superconductivity +1402.3982 Networking and Internet Architecture +1402.3983 High Energy Astrophysical Phenomena +1402.3985 Networking and Internet Architecture +1402.3986 Multiagent Systems +1402.3992 +1402.3994 Combinatorics +1402.3996 Astrophysics of Galaxies +1402.4002 Fluid Dynamics +1402.4003 Numerical Analysis +1402.4004 Robotics +1402.4005 Numerical Analysis +1402.4007 Robotics +1402.4009 Computers and Society +1402.4010 Distributed, Parallel, and Cluster Computing +1402.4013 Emerging Technologies +1402.4014 Superconductivity +1402.4017 Solar and Stellar Astrophysics +1402.4018 Analysis of PDEs +1402.4019 Geometric Topology +1402.4027 History and Overview +1402.4029 Emerging Technologies +1402.4033 Social and Information Networks +1402.4035 Subcellular Processes +1402.4036 Emerging Technologies +1402.4038 Complex Variables +1402.4041 Mesoscale and Nanoscale Physics +1402.4046 Emerging Technologies +1402.4047 Statistical Finance +1402.4049 Differential Geometry +1402.4053 Functional Analysis +1402.4056 Number Theory +1402.4057 High Energy Astrophysical Phenomena +1402.4058 Neurons and Cognition +1402.4063 Subcellular Processes +1402.4065 General Physics +1402.4066 Optimization and Control +1402.4067 Computer Vision and Pattern Recognition +1402.4072 Differential Geometry +1402.4080 Instrumentation and Methods for Astrophysics +1402.4084 Learning +1402.4085 Number Theory +1402.4086 Superconductivity +1402.4089 Computation +1402.4092 Data Analysis, Statistics and Probability +1402.4100 Networking and Internet Architecture +1402.4101 Computational Engineering, Finance, and Science +1402.4105 Probability +1402.4107 Analysis of PDEs +1402.4112 Combinatorics +1402.4118 Analysis of PDEs +astro-ph/0607411 +gr-qc/0606039 +hep-ph/0307391 Phenomenology +math/0409551 Rings and Algebras +math/0510213 Geometric Topology +math/0510214 Geometric Topology +math/0510215 Geometric Topology +math/0601137 Geometric Topology +math/0605120 General Mathematics +physics/0212002 Physics and Society +physics/0212033 General Physics +0707.2381 Superconductivity +0711.1576 Other Condensed Matter +0810.1066 Combinatorics +0906.4547 +0907.2926 Pricing of Securities +0910.0504 Data Structures and Algorithms +0912.4291 Algebraic Geometry +1012.3149 Algebraic Geometry +1101.3718 Strongly Correlated Electrons +1101.3902 Probability +1109.0635 Dynamical Systems +1110.3107 Combinatorics +1111.7048 Group Theory +1201.1746 Genomics +1202.1310 Pattern Formation and Solitons +1203.3253 Category Theory +1203.4221 Classical Analysis and ODEs +1204.3198 Neurons and Cognition +1205.0321 Neurons and Cognition +1205.1271 Data Structures and Algorithms +1205.6262 Other Condensed Matter +1207.0689 Genomics +1207.3169 Neurons and Cognition +1207.3347 Cosmology and Nongalactic Astrophysics +1208.2445 Pattern Formation and Solitons +1208.2844 Algebraic Topology +1208.5260 Quantum Algebra +1209.1751 Data Analysis, Statistics and Probability +1209.2358 Quantum Algebra +1211.6730 Phenomenology +1211.7229 Experiment +1212.3528 Representation Theory +1212.4486 Probability +1301.2133 Quantum Algebra +1301.7167 Phenomenology +1302.2783 Mesoscale and Nanoscale Physics +1302.5016 Algebraic Geometry +1302.6612 Quantum Gases +1303.6175 Neurons and Cognition +1304.3841 Computation and Language +1304.6736 Physics and Society +1304.7210 Fluid Dynamics +1304.7359 Statistical Mechanics +1305.2624 Dynamical Systems +1305.4141 Combinatorics +1305.6141 Rings and Algebras +1306.4589 Solar and Stellar Astrophysics +1306.5313 Probability +1306.6003 Combinatorics +1306.6432 Algebraic Geometry +1307.4153 Pattern Formation and Solitons +1308.0730 Quantitative Methods +1308.2336 Representation Theory +1308.2994 Quantum Gases +1308.5867 Group Theory +1308.6783 +1309.1953 General Finance +1309.3257 Theory +1309.4058 Computation and Language +1309.6305 Pattern Formation and Solitons +1310.0455 Classical Physics +1310.1159 Category Theory +1310.1810 Combinatorics +1310.5665 Learning +1310.5785 Phenomenology +1310.6001 Strongly Correlated Electrons +1310.6278 Quantum Algebra +1310.6350 Quantum Gases +1311.0511 Theory +1311.1831 Dynamical Systems +1311.1890 Computation +1311.1899 Statistics Theory +1311.2130 Numerical Analysis +1311.2299 Combinatorics +1311.3531 Lattice +1311.6614 Geometric Topology +1311.6796 +1311.6841 +1312.2092 Theory +1312.6656 Chaotic Dynamics +1312.6886 Group Theory +1401.0129 +1401.3694 Cosmology and Nongalactic Astrophysics +1401.4044 Mesoscale and Nanoscale Physics +1401.4138 Quantum Gases +1401.4154 Differential Geometry +1401.4277 Analysis of PDEs +1401.5023 Quantum Algebra +1401.5796 Astrophysics of Galaxies +1402.0868 Cosmology and Nongalactic Astrophysics +1402.1718 Cryptography and Security +1402.1721 Strongly Correlated Electrons +1402.2121 Materials Science +1402.4288 Mesoscale and Nanoscale Physics +1402.4540 Physics and Society +1402.4900 +1402.5011 Numerical Analysis +1402.5681 Computational Geometry +1402.6007 Quantum Gases +1402.7240 Plasma Physics +1403.1524 +1403.7121 +1404.3000 Algebraic Geometry +1404.4922 Other Condensed Matter +1404.5909 Fluid Dynamics +1404.6404 Optics +1405.0257 Complex Variables +1405.0344 Pattern Formation and Solitons +1405.0801 Materials Science +1405.1440 Statistical Mechanics +1405.1508 +1405.2572 +1405.2847 Analysis of PDEs +1405.4861 +1405.5471 Phenomenology +1405.6488 Phenomenology +1405.7252 Phenomenology +1405.7261 Statistical Mechanics +1405.7627 +1406.0886 Algebraic Geometry +1406.1257 Theory +1406.1612 +1406.2047 Atomic Physics +1406.2981 Cosmology and Nongalactic Astrophysics +1406.3725 Soft Condensed Matter +1406.4891 Algebraic Geometry +1406.5088 Probability +1406.5476 Phenomenology +1406.6027 High Energy Astrophysical Phenomena +1406.6908 +1406.7074 Algebraic Geometry +1407.0919 Atomic Physics +1407.1331 Mesoscale and Nanoscale Physics +1407.2270 Phenomenology +1407.2977 Functional Analysis +1407.3275 High Energy Astrophysical Phenomena +1407.3683 Experiment +1407.3952 Optics +1407.4038 Phenomenology +1407.4232 +1407.5403 Classical Analysis and ODEs +1407.5459 Computation +1407.6021 Mesoscale and Nanoscale Physics +1407.6136 +1407.7226 Group Theory +1407.7679 Statistical Mechanics +1407.8167 +1407.8521 Strongly Correlated Electrons +1408.0293 Cosmology and Nongalactic Astrophysics +1408.0349 Statistical Mechanics +1408.0561 Theory +1408.1081 Cosmology and Nongalactic Astrophysics +1408.1095 Instrumentation and Methods for Astrophysics +1408.1289 Quantum Gases +1408.1341 Disordered Systems and Neural Networks +1408.1412 Statistical Mechanics +1408.1774 Computation and Language +1408.1836 Accelerator Physics +1408.2588 Materials Science +1408.3515 Strongly Correlated Electrons +1408.3995 Phenomenology +1408.4127 +1408.4130 Solar and Stellar Astrophysics +1408.4459 Phenomenology +1408.4503 Theory +1408.4768 Probability +1408.4917 Statistical Mechanics +1408.5272 Astrophysics of Galaxies +1408.5597 Astrophysics of Galaxies +1408.5670 Phenomenology +1408.5762 +1408.5852 Quantum Gases +1408.6900 Solar and Stellar Astrophysics +1408.6955 Astrophysics of Galaxies +1408.6956 Plasma Physics +1408.6972 Mesoscale and Nanoscale Physics +1409.0017 High Energy Astrophysical Phenomena +1409.0044 +1409.0767 Number Theory +1409.1211 Materials Science +1409.1897 Phenomenology +1409.2411 Solar and Stellar Astrophysics +1409.2419 +1409.2422 Mesoscale and Nanoscale Physics +1409.2457 Computational Geometry +1409.2548 Lattice +1409.2551 +1409.2559 +1409.2796 Phenomenology +1409.2866 Solar and Stellar Astrophysics +1409.2869 Earth and Planetary Astrophysics +1409.3149 Quantum Gases +1409.3220 Strongly Correlated Electrons +1409.3376 Solar and Stellar Astrophysics +1409.3405 Mesoscale and Nanoscale Physics +1409.3491 Mesoscale and Nanoscale Physics +1409.3502 Phenomenology +1409.3809 Databases +1409.3841 Strongly Correlated Electrons +1409.4038 Earth and Planetary Astrophysics +1409.4788 Astrophysics of Galaxies +1409.5245 Classical Analysis and ODEs +1409.5308 Data Structures and Algorithms +1409.5388 +1409.5497 Solar and Stellar Astrophysics +1409.6232 +1409.6467 High Energy Astrophysical Phenomena +1409.6473 Astrophysics of Galaxies +1409.6515 Solar and Stellar Astrophysics +1409.6740 Astrophysics of Galaxies +1409.6887 Materials Science +1409.7125 Astrophysics of Galaxies +1409.7213 Solar and Stellar Astrophysics +1409.7328 Earth and Planetary Astrophysics +1409.7651 High Energy Astrophysical Phenomena +1409.7703 Astrophysics of Galaxies +1409.8429 Earth and Planetary Astrophysics +1409.8554 Earth and Planetary Astrophysics +1409.8562 Cosmology and Nongalactic Astrophysics +1410.0132 Earth and Planetary Astrophysics +1410.0181 Solar and Stellar Astrophysics +1410.0683 Cosmology and Nongalactic Astrophysics +1410.0798 Superconductivity +1410.1310 Solar and Stellar Astrophysics +1410.1754 Earth and Planetary Astrophysics +1410.1855 Phenomenology +1410.2093 Solar and Stellar Astrophysics +1410.2107 Rings and Algebras +1410.2383 Solar and Stellar Astrophysics +1410.2441 Astrophysics of Galaxies +1410.2835 Astrophysics of Galaxies +1410.3494 Earth and Planetary Astrophysics +1410.3733 Astrophysics of Galaxies +1410.3832 Earth and Planetary Astrophysics +1410.5953 Solar and Stellar Astrophysics +1410.6129 High Energy Astrophysical Phenomena +1410.7399 Instrumentation and Methods for Astrophysics +1410.7444 Earth and Planetary Astrophysics +1410.7793 Strongly Correlated Electrons +1410.8101 Astrophysics of Galaxies +1411.0072 Superconductivity +1411.0532 Solar and Stellar Astrophysics +1411.1170 Robotics +1411.1466 Cosmology and Nongalactic Astrophysics +1411.1475 Fluid Dynamics +1411.1804 Machine Learning +1411.2461 Materials Science +1411.4815 Mesoscale and Nanoscale Physics +1411.5314 Materials Science +1411.5799 Machine Learning +1411.5814 Differential Geometry +1411.5853 Logic in Computer Science +1411.7596 Optimization and Control +1411.7640 Social and Information Networks +1411.7750 Theory +1411.7901 Materials Science +1411.7943 Solar and Stellar Astrophysics +1411.7992 High Energy Astrophysical Phenomena +1412.0024 Number Theory +1412.0190 Classical Analysis and ODEs +1412.0439 Computer Vision and Pattern Recognition +1412.0543 Optimization and Control +1412.0553 +1412.0583 Physics and Society +1412.0654 +1412.0659 Astrophysics of Galaxies +1412.0660 Instrumentation and Methods for Astrophysics +1412.0679 Mesoscale and Nanoscale Physics +1412.0680 Computer Vision and Pattern Recognition +1412.0682 Solar and Stellar Astrophysics +1412.0684 Systems and Control +1412.0688 Mesoscale and Nanoscale Physics +1412.0689 Mesoscale and Nanoscale Physics +1412.0692 Combinatorics +1412.0697 Symplectic Geometry +1412.0704 Soft Condensed Matter +1412.0706 Quantum Gases +1412.0708 Phenomenology +1412.0711 Atomic Physics +1412.0712 Mesoscale and Nanoscale Physics +1412.0713 Logic +1412.0715 Complex Variables +1412.0716 Complex Variables +1412.0720 Analysis of PDEs +1412.0725 Probability +1412.0728 Combinatorics +1412.0729 Probability +1412.0731 Analysis of PDEs +1412.0734 +1412.0735 Astrophysics of Galaxies +1412.0736 Probability +1412.0742 Molecular Networks +1412.0746 Differential Geometry +1412.0748 Cell Behavior +1412.0751 Computation and Language +1412.0755 Computers and Society +1412.0758 Number Theory +1412.0764 Dynamical Systems +1412.0771 Theory +1412.0773 Artificial Intelligence +1412.0774 Computer Vision and Pattern Recognition +1412.0776 Combinatorics +1412.0778 Methodology +1412.0780 Populations and Evolution +1412.0783 Numerical Analysis +1412.0784 Computational Complexity +1412.0786 Numerical Analysis +1412.0788 +1412.0791 Optimization and Control +1412.0792 Differential Geometry +1412.0795 Combinatorics +1412.0796 +1412.0799 Formal Languages and Automata Theory +1412.0801 Computer Vision and Pattern Recognition +1412.0802 Theory +1412.0804 Phenomenology +1412.0807 Theory +1412.0810 Theory +1412.0814 Group Theory +1412.0815 Functional Analysis +1412.0816 Differential Geometry +1412.0817 Instrumentation and Detectors +1412.0823 Information Theory +1412.0825 Logic in Computer Science +1412.0827 Functional Analysis +1412.0829 Optimization and Control +1412.0830 Combinatorics +1412.0833 Computer Science and Game Theory +1412.0834 Lattice +1412.0836 Statistics Theory +1412.0837 +1412.0838 Methodology +1412.0839 Formal Languages and Automata Theory +1412.0840 Differential Geometry +1412.0841 +1412.0844 +1412.0845 Computer Science and Game Theory +1412.0847 Lattice +1412.0853 +1412.0854 Artificial Intelligence +1412.0859 Materials Science +1412.0860 Instrumentation and Detectors +1412.0862 Materials Science +1412.0868 Algebraic Geometry +1412.0870 Phenomenology +1412.0872 Soft Condensed Matter +1412.0875 Experiment +1412.0876 Numerical Analysis +1412.0878 Materials Science +1412.0879 Computation and Language +1412.0880 Networking and Internet Architecture +1412.0883 Information Theory +1412.0888 Superconductivity +1412.0891 Functional Analysis +1412.0894 Neurons and Cognition +1412.0897 Biomolecules +1412.0902 Soft Condensed Matter +1412.0905 Solar and Stellar Astrophysics +1412.0906 Geometric Topology +1412.0908 Number Theory +1412.0909 Fluid Dynamics +1412.0914 Information Theory +1412.0917 Logic +1412.0918 Phenomenology +1412.0919 Fluid Dynamics +1412.0921 Analysis of PDEs +1412.0922 Materials Science +1412.0923 Materials Science +1412.0925 Lattice +1412.0926 Algebraic Geometry +1412.0927 High Energy Astrophysical Phenomena +1412.0932 Dynamical Systems +1412.0936 Theory +1412.0940 Combinatorics +1412.0941 Lattice +1412.0948 Methodology +1412.0949 Combinatorics +1412.0950 Economics +1412.0952 Methodology +1412.0954 Multimedia +1412.0955 History and Overview +1412.0958 Probability +1412.0961 Programming Languages +1412.0963 Computers and Society +1412.0966 Geophysics +1412.0967 Data Structures and Algorithms +1412.0969 Computer Science and Game Theory +1412.0970 Lattice +1412.0975 Formal Languages and Automata Theory +1412.0976 +1412.0978 Analysis of PDEs +1412.0987 Combinatorics +1412.0988 Optics +1412.0990 +1412.0991 Instrumentation and Detectors +1412.0992 +1412.0995 Statistics Theory +1412.0996 Computational Physics +1412.1003 Phenomenology +1412.1009 Statistical Mechanics +1412.1013 Molecular Networks +1412.1021 Theory +1412.1023 Information Theory +1412.1032 Dynamical Systems +1412.1035 Applications +1412.1041 Space Physics +1412.1042 Logic in Computer Science +1412.1048 Earth and Planetary Astrophysics +1412.1049 +1412.1050 Classical Analysis and ODEs +1412.1057 Lattice +1412.1060 Combinatorics +1412.1063 Chemical Physics +1412.1065 Chemical Physics +1412.1067 +1412.1069 Databases +1412.1070 Neurons and Cognition +cond-mat/0303344 Superconductivity +cond-mat/0303432 Superconductivity +cond-mat/0607007 Superconductivity +cond-mat/9802286 +cond-mat/9903344 Superconductivity +cond-mat/9905233 Superconductivity +cond-mat/9911038 +hep-ex/0612035 Experiment +math/0410547 Algebraic Geometry +math/0607140 Numerical Analysis +0805.0030 +0805.4077 Group Theory +0903.5060 Group Theory +0906.2479 Rings and Algebras +0907.2098 Number Theory +1002.1491 Numerical Analysis +1004.1376 Algebraic Geometry +1006.4149 Symplectic Geometry +1006.5708 High Energy Astrophysical Phenomena +1007.0722 Metric Geometry +1008.5085 Differential Geometry +1010.1560 Computational Physics +1010.1937 Strongly Correlated Electrons +1010.5390 High Energy Astrophysical Phenomena +1101.5990 Differential Geometry +1103.3609 +1105.2851 Combinatorics +1105.5178 Combinatorics +1106.2186 Mesoscale and Nanoscale Physics +1107.5687 Mesoscale and Nanoscale Physics +1109.6273 Logic in Computer Science +1110.4766 +1111.1320 Quantum Algebra +1111.5253 Strongly Correlated Electrons +1112.0098 Operator Algebras +1112.4590 Operator Algebras +1201.0296 Physics and Society +1201.4972 Differential Geometry +1202.5046 Theory +1203.4543 Geophysics +1203.6697 Algebraic Geometry +1203.6885 K-Theory and Homology +1204.2749 Strongly Correlated Electrons +1204.3290 Analysis of PDEs +1204.5669 Strongly Correlated Electrons +1204.6384 History and Philosophy of Physics +1205.0229 Mesoscale and Nanoscale Physics +1205.3608 Quantum Algebra +1205.5215 Combinatorics +1206.1069 Artificial Intelligence +1206.5161 Plasma Physics +1206.5580 Learning +1206.6236 +1207.1007 Probability +1207.3136 Systems and Control +1207.4332 +1207.6071 Algebraic Geometry +1207.6328 Digital Libraries +1208.3508 Geometric Topology +1208.3543 Analysis of PDEs +1208.4716 Probability +1208.4779 Chemical Physics +1208.5372 +1208.5999 Theory +1209.0879 Statistical Mechanics +1209.2444 Soft Condensed Matter +1209.3732 Group Theory +1209.4019 Other Statistics +1210.0478 Theory +1210.2931 Group Theory +1210.5981 Materials Science +1210.6410 Representation Theory +1211.0680 Numerical Analysis +1211.2555 Physics and Society +1211.2641 Combinatorics +1211.4185 High Energy Astrophysical Phenomena +1211.6470 Instrumentation and Methods for Astrophysics +1212.1278 Group Theory +1212.1675 Algebraic Geometry +1212.3121 Probability +1212.5605 Theory +1301.3271 Representation Theory +1301.6363 Information Theory +1301.6525 Differential Geometry +1302.0301 Rings and Algebras +1302.2016 Theory +1302.3001 General Finance +1302.4527 Optimization and Control +1302.6034 Strongly Correlated Electrons +1303.0455 Quantitative Methods +1303.2289 Optimization and Control +1303.2430 Artificial Intelligence +1303.2803 Applications +1303.2911 Statistical Mechanics +1303.4800 Group Theory +1303.5234 Software Engineering +1303.5367 Information Retrieval +1303.5858 +1303.6149 Statistics Theory +1303.6975 High Energy Astrophysical Phenomena +1304.0218 Algebraic Geometry +1304.0996 Analysis of PDEs +1304.2024 Learning +1304.2554 Performance +1304.2571 Analysis of PDEs +1304.2660 Soft Condensed Matter +1304.3066 Analysis of PDEs +1304.3317 Statistical Mechanics +1304.6281 Information Theory +1305.0002 Phenomenology +1305.0413 Trading and Market Microstructure +1305.0533 Theory +1305.0785 Theory +1305.2282 Strongly Correlated Electrons +1305.2608 Differential Geometry +1305.2823 Mesoscale and Nanoscale Physics +1305.5104 Classical Analysis and ODEs +1305.5748 Soft Condensed Matter +1305.5907 Mesoscale and Nanoscale Physics +1305.6366 +1305.6502 Probability +1305.7156 +1306.0413 Applications +1306.1025 Phenomenology +1306.1922 Information Theory +1306.2522 Mesoscale and Nanoscale Physics +1306.4880 Statistical Mechanics +1307.0148 +1307.1289 Information Retrieval +1307.2144 General Physics +1307.5163 Optimization and Control +1308.1530 High Energy Astrophysical Phenomena +1308.1658 +1308.3541 Learning +1308.3543 Dynamical Systems +1308.3587 Phenomenology +1308.4581 +1308.4729 Computational Physics +1308.4867 Data Analysis, Statistics and Probability +1308.6287 Mesoscale and Nanoscale Physics +1309.0362 Portfolio Management +1309.0622 Probability +1309.0930 Representation Theory +1309.1391 +1309.2042 History and Overview +1309.4095 Theory +1309.6565 Statistical Mechanics +1309.6743 Phenomenology +1309.7730 Number Theory +1310.0167 Phenomenology +1310.1247 Probability +1310.1785 General Physics +1310.2177 Probability +1310.2891 Statistical Mechanics +1310.4484 Classical Analysis and ODEs +1310.5989 Mesoscale and Nanoscale Physics +1310.7720 Mesoscale and Nanoscale Physics +1310.7767 +1310.7807 Strongly Correlated Electrons +1310.7940 Strongly Correlated Electrons +1311.0607 Neurons and Cognition +1311.0848 Phenomenology +1311.0903 Phenomenology +1311.1226 Complex Variables +1311.1347 Phenomenology +1311.1876 Optimization and Control +1311.2239 Chaotic Dynamics +1311.2368 +1311.2905 +1311.3696 Group Theory +1311.3819 Algebraic Geometry +1311.3974 Theory +1311.5149 Phenomenology +1311.6333 Fluid Dynamics +1312.0807 Strongly Correlated Electrons +1312.0839 +1312.1072 Dynamical Systems +1312.1132 Analysis of PDEs +1312.1194 Mesoscale and Nanoscale Physics +1312.1246 Statistical Mechanics +1312.1968 +1312.2211 Statistical Mechanics +1312.2717 Mesoscale and Nanoscale Physics +1312.2769 Cosmology and Nongalactic Astrophysics +1312.3208 Cosmology and Nongalactic Astrophysics +1312.3564 Materials Science +1312.4378 Information Theory +1312.4475 Representation Theory +1312.6861 History and Philosophy of Physics +1312.6912 Analysis of PDEs +1312.7246 Superconductivity +1312.7854 Phenomenology +1401.0467 Classical Analysis and ODEs +1401.1245 Strongly Correlated Electrons +1401.2414 Lattice +1401.3038 Other Computer Science +1401.3098 Information Theory +1401.4008 +1401.4659 +1401.6099 Mesoscale and Nanoscale Physics +1401.6614 Number Theory +1401.7162 Mesoscale and Nanoscale Physics +1401.7522 Solar and Stellar Astrophysics +1401.7926 +1402.0310 Materials Science +1402.1383 Combinatorics +1402.2174 Phenomenology +1402.2207 Probability +1402.2544 +1402.2727 Mesoscale and Nanoscale Physics +1402.3117 Optics +1402.5127 +1402.5531 Number Theory +1402.6791 Other Statistics +1402.7233 Superconductivity +1403.0038 Mesoscale and Nanoscale Physics +1403.0136 Functional Analysis +1403.0300 Information Theory +1403.0367 +1403.0475 High Energy Astrophysical Phenomena +1403.0484 Mesoscale and Nanoscale Physics +1403.1366 Information Theory +1403.2059 Materials Science +1403.2077 Networking and Internet Architecture +1403.2218 Instrumentation and Methods for Astrophysics +1403.2395 Algebraic Topology +1403.2753 Neurons and Cognition +1403.2760 Phenomenology +1403.2914 Distributed, Parallel, and Cluster Computing +1403.3276 Phenomenology +1403.3478 Statistical Finance +1403.3698 Logic +1403.3700 Numerical Analysis +1403.3703 +1403.3704 +1403.3705 +1403.3706 +1403.3707 Social and Information Networks +1403.3710 Multimedia +1403.3713 Analysis of PDEs +1403.3715 Computational Geometry +1403.3716 Geometric Topology +1403.3723 Representation Theory +1403.3725 +1403.3726 +1403.3727 Cosmology and Nongalactic Astrophysics +1403.3730 Experiment +1403.3735 Accelerator Physics +1403.3738 Optimization and Control +1403.3744 Soft Condensed Matter +1403.3746 Soft Condensed Matter +1403.3747 +1403.3749 +1403.3752 Programming Languages +1403.3755 Superconductivity +1403.3760 Analysis of PDEs +1403.3762 Statistics Theory +1403.3765 Number Theory +1403.3766 Fluid Dynamics +1403.3767 Materials Science +1403.3769 General Mathematics +1403.3774 Other Condensed Matter +1403.3775 Functional Analysis +1403.3777 Functional Analysis +1403.3779 Networking and Internet Architecture +1403.3784 Strongly Correlated Electrons +1403.3786 Information Theory +1403.3787 Materials Science +1403.3790 Physics Education +1403.3793 Phenomenology +1403.3806 Combinatorics +1403.3808 Methodology +1403.3809 Lattice +1403.3810 Number Theory +1403.3814 Optics +1403.3815 Complex Variables +1403.3818 Networking and Internet Architecture +1403.3829 Computer Vision and Pattern Recognition +1403.3831 Metric Geometry +1403.3832 +1403.3833 Number Theory +1403.3836 Materials Science +1403.3839 Number Theory +1403.3840 +1403.3841 Emerging Technologies +1403.3848 Classical Analysis and ODEs +1403.3854 +1403.3858 +1403.3860 Materials Science +1403.3861 Mesoscale and Nanoscale Physics +1403.3866 Representation Theory +1403.3869 Strongly Correlated Electrons +1403.3874 Atmospheric and Oceanic Physics +1403.3884 +1403.3886 Mesoscale and Nanoscale Physics +1403.3888 Lattice +1403.3890 Probability +1403.3896 Group Theory +1403.3899 Number Theory +1403.3902 Group Theory +1403.3905 Computational Geometry +1403.3906 Number Theory +1403.3909 Social and Information Networks +1403.3912 Algebraic Geometry +1403.3913 Geophysics +1403.3917 +1403.3921 Biological Physics +1403.3922 Biological Physics +1403.3923 Computational Physics +1403.3925 Numerical Analysis +1403.3927 Mesoscale and Nanoscale Physics +1403.3928 Software Engineering +1403.3936 Mesoscale and Nanoscale Physics +1403.3939 Functional Analysis +1403.3940 Mesoscale and Nanoscale Physics +1403.3941 Functional Analysis +1403.3942 Mesoscale and Nanoscale Physics +1403.3944 Analysis of PDEs +1403.3946 Number Theory +1403.3947 Lattice +1403.3948 Databases +1403.3955 Functional Analysis +1403.3960 Differential Geometry +1403.3962 Algebraic Geometry +1403.3964 Computer Vision and Pattern Recognition +1403.3967 Optimization and Control +1403.3973 Emerging Technologies +1403.3975 Number Theory +1403.3976 Number Theory +1403.3979 Dynamical Systems +1403.3986 +1403.3988 Phenomenology +1403.3989 Analysis of PDEs +1403.3992 Formal Languages and Automata Theory +1403.3993 Networking and Internet Architecture +1403.3995 Dynamical Systems +1403.3996 Programming Languages +1403.3998 Optimization and Control +1403.3999 Optimization and Control +1403.4006 Astrophysics of Galaxies +1403.4012 +1403.4015 Number Theory +1403.4017 Machine Learning +1403.4019 Strongly Correlated Electrons +1403.4025 Phenomenology +1403.4026 Symbolic Computation +1403.4027 Combinatorics +1403.4029 Solar and Stellar Astrophysics +1403.4035 Methodology +1403.4036 +1403.4038 Functional Analysis +1403.4039 +1403.4041 Medical Physics +1403.4042 Analysis of PDEs +1403.4045 Software Engineering +1403.4049 Chemical Physics +1403.4051 Fluid Dynamics +1403.4053 Software Engineering +1403.4054 Computation +1403.4057 Number Theory +1403.4059 Complex Variables +1403.4065 High Energy Astrophysical Phenomena +1403.4072 Experiment +1403.4074 Logic in Computer Science +1403.4083 Representation Theory +1403.4084 Fluid Dynamics +1403.4090 Analysis of PDEs +1403.4093 Soft Condensed Matter +1403.4101 Classical Analysis and ODEs +1403.4104 Commutative Algebra +1403.4111 Pricing of Securities +1403.4120 Rings and Algebras +1403.4122 Solar and Stellar Astrophysics +1403.4124 Analysis of PDEs +1403.4126 Category Theory +1403.4129 Fluid Dynamics +1403.4131 Soft Condensed Matter +1403.4135 Methodology +1403.4138 Methodology +1403.4145 +1403.4148 Quantum Algebra +1403.4152 Software Engineering +1403.4157 Algebraic Geometry +1403.4158 Multimedia +1403.4160 Solar and Stellar Astrophysics +1403.4161 +1403.4164 Optimization and Control +1403.4165 Cryptography and Security +1403.4166 Strongly Correlated Electrons +1403.4167 Algebraic Geometry +1403.4169 Multimedia +1403.4171 Statistical Finance +1403.4174 Robotics +1403.4175 Systems and Control +1403.4179 Systems and Control +1403.4181 Classical Analysis and ODEs +1403.4188 Materials Science +1403.4197 Differential Geometry +1403.4200 Commutative Algebra +1403.4203 Analysis of PDEs +1403.4205 Number Theory +1403.4206 Machine Learning +1403.4207 Instrumentation and Methods for Astrophysics +1403.4209 Instrumentation and Methods for Astrophysics +1403.4220 Differential Geometry +1403.4231 Quantum Algebra +1403.4232 Computer Vision and Pattern Recognition +hep-ph/0701139 Phenomenology +hep-th/0403069 Theory +math/0009141 Quantum Algebra +math/0106067 Quantum Algebra +math/0607247 Number Theory +math/0607409 Number Theory +math/0701725 Geometric Topology +math/0703471 Group Theory +math/9807003 Quantum Algebra +math/9807004 Quantum Algebra +math/9807017 Quantum Algebra +math/9807028 Quantum Algebra +1312.0184 Cosmology and Nongalactic Astrophysics +1412.2219 Logic in Computer Science +1412.2269 Social and Information Networks +1412.2278 Optimization and Control +1412.2421 K-Theory and Homology +1412.2556 Materials Science +1412.2632 Statistics Theory +1412.2648 Accelerator Physics +1412.2736 Solar and Stellar Astrophysics +0801.0638 +0811.2439 Algebraic Geometry +0910.2415 Computational Complexity +0910.2803 Algebraic Geometry +1001.4929 +1003.5875 Combinatorics +1004.3446 Representation Theory +1011.5006 Algebraic Geometry +1105.2648 Complex Variables +1107.2097 Symplectic Geometry +1203.6064 Theory +1204.2727 Discrete Mathematics +1204.3136 Statistical Finance +1204.5948 +1206.4351 Theory +1207.4376 +1209.1963 Numerical Analysis +1209.2137 Information Retrieval +1209.2854 Dynamical Systems +1209.5520 Cryptography and Security +1210.4083 Number Theory +1212.4975 Probability +1302.4186 Probability +1302.6346 Discrete Mathematics +1303.3246 Theory +1305.0635 Operator Algebras +1305.4336 +1306.3534 Networking and Internet Architecture +1306.4198 Theory +1307.0945 Quantum Gases +1307.2283 +1307.3578 Probability +1308.5257 Genomics +1309.1528 Mesoscale and Nanoscale Physics +1309.5405 Combinatorics +1310.0793 Representation Theory +1310.2523 Statistics Theory +1310.5673 +1311.0326 +1311.0483 Phenomenology +1311.1528 Numerical Analysis +1311.1769 Phenomenology +1312.2716 Strongly Correlated Electrons +1312.6209 Molecular Networks +1312.7510 Analysis of PDEs +1312.7798 +1401.7690 Phenomenology +1402.1167 Theory +1402.2625 Chaotic Dynamics +1402.3661 Cryptography and Security +1402.5026 +1402.6350 Methodology +1403.2178 Mesoscale and Nanoscale Physics +1403.2803 Strongly Correlated Electrons +1403.5255 Strongly Correlated Electrons +1403.5356 Fluid Dynamics +1403.6331 Data Structures and Algorithms +1403.6808 Superconductivity +1403.7279 +1404.0438 +1404.1346 Phenomenology +1404.1602 Hardware Architecture +1404.3496 Mesoscale and Nanoscale Physics +1404.5191 Category Theory +1404.5300 Theory +1404.5548 Data Structures and Algorithms +1405.0866 Dynamical Systems +1405.1102 Information Theory +1405.2243 Combinatorics +1405.2551 Materials Science +1405.2813 Classical Analysis and ODEs +1405.3076 Soft Condensed Matter +1405.3270 Neurons and Cognition +1405.3446 Analysis of PDEs +1405.5086 Experiment +1405.5412 Phenomenology +1405.5413 Atomic Physics +1405.6101 High Energy Astrophysical Phenomena +1405.7595 Quantum Gases +1405.7867 Computation +1406.0603 Strongly Correlated Electrons +1406.2142 Algebraic Geometry +1406.3372 Statistics Theory +1406.4858 Theory +1406.4933 +1407.0031 Cosmology and Nongalactic Astrophysics +1407.0583 Experiment +1407.1159 Mesoscale and Nanoscale Physics +1407.5158 Machine Learning +1408.0162 Functional Analysis +1408.1811 Phenomenology +1408.2122 Instrumentation and Methods for Astrophysics +1408.4132 Theory +1408.4615 Phenomenology +1408.4679 +1408.4791 +1408.6785 Strongly Correlated Electrons +1409.0213 +1409.0234 +1409.0315 Computational Geometry +1409.0548 Theory +1409.0780 Solar and Stellar Astrophysics +1409.0818 Mesoscale and Nanoscale Physics +1409.1801 Quantitative Methods +1409.1902 +1409.2852 Chemical Physics +1409.3754 +1409.3756 Group Theory +1409.4084 +1409.5319 Optimization and Control +1409.5500 Experiment +1409.5634 Combinatorics +1409.7636 Disordered Systems and Neural Networks +1410.2516 Logic +1410.2807 Theory +1410.4203 Phenomenology +1410.6482 Astrophysics of Galaxies +1410.7307 Quantum Gases +1410.7677 Astrophysics of Galaxies +1411.1863 Fluid Dynamics +1411.4058 Combinatorics +1411.4146 Rings and Algebras +1411.4560 Mesoscale and Nanoscale Physics +1411.4707 Astrophysics of Galaxies +1411.4911 Computation +1411.5158 Phenomenology +1411.5271 Machine Learning +1411.5803 Probability +1411.7890 Commutative Algebra +1411.7920 Probability +1411.7956 Astrophysics of Galaxies +1412.0409 Dynamical Systems +1412.0410 Dynamical Systems +1412.0930 Earth and Planetary Astrophysics +1412.0982 Differential Geometry +1412.1119 Astrophysics of Galaxies +1412.1159 Representation Theory +1412.1196 Optimization and Control +1412.1289 High Energy Astrophysical Phenomena +1412.1333 +1412.1359 Strongly Correlated Electrons +1412.1463 Learning +1412.1487 Theory +1412.1494 General Topology +1412.1495 Strongly Correlated Electrons +1412.1497 General Topology +1412.1501 Applications +1412.1504 Combinatorics +1412.1506 Computer Vision and Pattern Recognition +1412.1508 +1412.1516 Algebraic Geometry +1412.1517 Functional Analysis +1412.1519 Functional Analysis +1412.1525 Populations and Evolution +1412.1532 Mesoscale and Nanoscale Physics +1412.1533 Number Theory +1412.1534 Superconductivity +1412.1538 Information Theory +1412.1542 Materials Science +1412.1545 Representation Theory +1412.1547 Computational Geometry +1412.1548 Chemical Physics +1412.1552 Phenomenology +1412.1560 Atomic and Molecular Clusters +1412.1564 Strongly Correlated Electrons +1412.1565 Information Theory +1412.1566 Mesoscale and Nanoscale Physics +1412.1567 Statistics Theory +1412.1568 Optics +1412.1572 Mesoscale and Nanoscale Physics +1412.1574 Computer Vision and Pattern Recognition +1412.1576 Machine Learning +1412.1577 Analysis of PDEs +1412.1580 Superconductivity +1412.1584 Algebraic Geometry +1412.1585 Complex Variables +1412.1588 Phenomenology +1412.1591 Data Structures and Algorithms +1412.1594 +1412.1595 Numerical Analysis +1412.1596 Soft Condensed Matter +1412.1597 Quantitative Methods +1412.1598 Commutative Algebra +1412.1602 Neural and Evolutionary Computing +1412.1604 +1412.1606 Numerical Analysis +1412.1607 Probability +1412.1608 Number Theory +1412.1609 Number Theory +1412.1610 Probability +1412.1612 Solar and Stellar Astrophysics +1412.1615 Category Theory +1412.1618 Physics and Society +1412.1621 Numerical Analysis +1412.1622 Quantum Algebra +1412.1623 Cryptography and Security +1412.1627 Analysis of PDEs +1412.1629 Strongly Correlated Electrons +1412.1632 Computation and Language +1412.1636 Soft Condensed Matter +1412.1637 Geometric Topology +1412.1642 Applications +1412.1648 Dynamical Systems +1412.1649 Methodology +1412.1652 Information Theory +1412.1654 Algebraic Geometry +1412.1655 +1412.1659 Rings and Algebras +1412.1661 Theory +1412.1666 Optics +1412.1668 Complex Variables +1412.1670 Applications +1412.1672 Functional Analysis +1412.1673 High Energy Astrophysical Phenomena +1412.1674 +1412.1675 Group Theory +1412.1676 Strongly Correlated Electrons +1412.1679 Risk Management +1412.1685 Phenomenology +1412.1687 Numerical Analysis +1412.1689 General Mathematics +1412.1691 K-Theory and Homology +1412.1696 Instrumentation and Methods for Astrophysics +1412.1701 Statistics Theory +1412.1702 Spectral Theory +1412.1704 Fluid Dynamics +1412.1705 Probability +1412.1707 +1412.1708 Physics and Society +1412.1710 Computer Vision and Pattern Recognition +1412.1711 Statistics Theory +1412.1712 Information Theory +1412.1717 Numerical Analysis +1412.1718 Lattice +1412.1726 Combinatorics +1412.1729 Populations and Evolution +1412.1730 Mesoscale and Nanoscale Physics +1412.1736 Formal Languages and Automata Theory +1412.1738 Analysis of PDEs +1412.1739 Rings and Algebras +1412.1742 Lattice +1412.1745 Phenomenology +1412.1746 Genomics +1412.1749 +1412.1754 Exactly Solvable and Integrable Systems +1412.1759 Quantitative Methods +1412.1763 Data Structures and Algorithms +1412.1767 Number Theory +1412.1770 Biological Physics +1412.1771 Theory +1412.1772 Human-Computer Interaction +1412.1777 Lattice +1412.1780 Computers and Society +1412.1782 Representation Theory +1412.1785 History and Philosophy of Physics +1412.1786 Applications +1412.1787 Data Structures and Algorithms +1412.1788 Learning +1412.1790 Human-Computer Interaction +1412.1792 Data Structures and Algorithms +1412.1793 Combinatorics +1412.1795 Algebraic Geometry +1412.1799 Mesoscale and Nanoscale Physics +1412.1804 Fluid Dynamics +1412.1807 +1412.1813 Soft Condensed Matter +1412.1814 Theory +quant-ph/0005109 +0803.0572 Combinatorics +0806.1160 Optimization and Control +0810.2399 +0811.3684 Other Condensed Matter +0901.0180 Cell Behavior +0906.1146 Cosmology and Nongalactic Astrophysics +0906.2273 Algebraic Geometry +0906.2457 Cosmology and Nongalactic Astrophysics +0907.1829 Earth and Planetary Astrophysics +0908.4200 Quantum Gases +0909.2358 Physics and Society +0911.3633 Learning +0912.0828 Quantum Gases +1001.1443 Cosmology and Nongalactic Astrophysics +1001.3965 +1001.5264 Quantum Algebra +1002.3144 Mesoscale and Nanoscale Physics +1004.2253 Quantum Algebra +1006.5795 +1008.0520 +1008.1368 Representation Theory +1009.1516 Dynamical Systems +1009.4882 Superconductivity +1010.0623 Operator Algebras +1011.4850 Materials Science +1012.5343 Populations and Evolution +1101.6068 Quantum Gases +1102.3319 Cosmology and Nongalactic Astrophysics +1103.4994 Combinatorics +1103.5731 +1104.4170 Mesoscale and Nanoscale Physics +1105.0837 +1106.0079 Populations and Evolution +1106.0364 Cosmology and Nongalactic Astrophysics +1106.4072 Dynamical Systems +1107.2361 Differential Geometry +1107.2516 Instrumentation and Methods for Astrophysics +1107.3588 Dynamical Systems +1108.0073 Probability +1108.0622 Geometric Topology +1109.2550 Functional Analysis +1109.3848 Commutative Algebra +1110.3114 +1112.1124 Computational Geometry +1112.1611 Functional Analysis +1112.4961 Algebraic Topology +1201.3742 Atomic Physics +1201.5753 +1202.0442 Fluid Dynamics +1202.2249 Neural and Evolutionary Computing +1202.3327 Superconductivity +1202.4135 Materials Science +1203.0183 Geometric Topology +1203.3377 Cosmology and Nongalactic Astrophysics +1203.6040 +1204.1997 +1204.4439 Cosmology and Nongalactic Astrophysics +1205.3651 Analysis of PDEs +1205.3687 Quantum Gases +1206.3876 Algebraic Geometry +1206.4301 Algebraic Geometry +1207.2189 Databases +1207.3575 Dynamical Systems +1207.5678 Cosmology and Nongalactic Astrophysics +1208.0062 Optimization and Control +1208.0962 Optimization and Control +1208.2256 +1208.3507 Differential Geometry +1208.6433 +1209.1524 Cosmology and Nongalactic Astrophysics +1209.3352 Learning +1209.3820 Populations and Evolution +1209.4191 +1209.5004 Networking and Internet Architecture +1210.0412 Combinatorics +1210.0751 +1210.4490 Geometric Topology +1210.5831 Classical Analysis and ODEs +1211.0039 Optimization and Control +1211.2978 +1211.3136 General Physics +1211.4062 Number Theory +1211.5645 Theory +1211.6953 Phenomenology +1211.7243 +1212.0153 +1212.0413 Populations and Evolution +1212.0430 Statistical Mechanics +1212.1229 Molecular Networks +1212.1505 Optics +1212.2807 Analysis of PDEs +1212.3118 Phenomenology +1212.3896 Statistical Mechanics +1212.4595 Chemical Physics +1212.5092 Cosmology and Nongalactic Astrophysics +1212.6066 Theory +1212.6481 History and Philosophy of Physics +1212.6797 Cosmology and Nongalactic Astrophysics +1301.1082 Optimization and Control +1301.1403 Optimization and Control +1301.1600 +1301.2609 Learning +1301.3265 Geometric Topology +1301.5047 Probability +1301.5898 Information Theory +1301.5902 Theory +1301.6444 Theory +1302.0489 Complex Variables +1302.1357 Theory +1302.2352 High Energy Astrophysical Phenomena +1302.4587 Data Structures and Algorithms +1302.7295 +1303.0766 Digital Libraries +1303.3731 Strongly Correlated Electrons +1303.4563 Phenomenology +1303.4702 Social and Information Networks +1303.6263 Differential Geometry +1304.1437 Physics and Society +1304.1634 Algebraic Geometry +1304.4341 Operator Algebras +1304.5726 Functional Analysis +1304.6599 Information Theory +1304.7637 Probability +1305.3506 Digital Libraries +1305.4437 Geometric Topology +1305.5079 Physics and Society +1305.5485 Materials Science +1305.6812 +1306.0257 Physics and Society +1306.1098 Functional Analysis +1306.1746 Human-Computer Interaction +1306.2049 Mesoscale and Nanoscale Physics +1306.2298 Social and Information Networks +1306.3207 Numerical Analysis +1306.4568 Quantum Gases +1306.4992 Superconductivity +1306.5063 +1307.0140 Superconductivity +1307.0256 +1307.0776 Computer Vision and Pattern Recognition +1307.1181 +1307.3205 Number Theory +1307.4040 Classical Physics +1307.5212 High Energy Astrophysical Phenomena +1307.6158 Theory +1307.6725 Strongly Correlated Electrons +1308.0229 +1308.0540 Phenomenology +1308.0696 Mesoscale and Nanoscale Physics +1308.0723 Physics and Society +1308.0904 +1308.1535 Phenomenology +1308.3984 Mesoscale and Nanoscale Physics +1308.5142 Mesoscale and Nanoscale Physics +1308.6176 Experiment +1308.6568 Theory +1309.0799 Information Theory +1309.1375 +1309.1552 +1309.1844 Portfolio Management +1309.2107 Statistical Mechanics +1309.3018 Fluid Dynamics +1309.3021 Biological Physics +1309.3114 Logic +1309.3256 Machine Learning +1309.3450 Phenomenology +1309.5070 Analysis of PDEs +1309.5422 Systems and Control +1309.5796 Computational Physics +1309.6205 Quantum Gases +1309.6452 Distributed, Parallel, and Cluster Computing +1309.7328 Mesoscale and Nanoscale Physics +1309.7825 Cosmology and Nongalactic Astrophysics +1309.7877 Quantum Gases +1309.7953 Cosmology and Nongalactic Astrophysics +1310.0902 Theory +1310.2121 Statistical Mechanics +1310.2581 Quantum Algebra +1310.2648 Computer Science and Game Theory +1310.3528 Molecular Networks +1310.3566 Theory +1310.3645 Mesoscale and Nanoscale Physics +1310.3691 Representation Theory +1310.4118 Lattice +1310.4173 Strongly Correlated Electrons +1310.4285 Analysis of PDEs +1310.4536 Lattice +1310.5211 Cosmology and Nongalactic Astrophysics +1310.5768 +1310.6105 Quantum Gases +1310.7090 Number Theory +1310.7140 Atomic Physics +1310.7342 Phenomenology +1310.7499 +1310.7660 Geometric Topology +1310.8107 Numerical Analysis +1311.0419 Differential Geometry +1311.0837 +1311.1659 Algebraic Geometry +1311.2229 Information Theory +1311.2310 Lattice +1311.2663 Learning +1311.4340 High Energy Astrophysical Phenomena +1311.5772 Applications +1311.6541 +1311.6706 +1312.1075 Computer Science and Game Theory +1312.2015 Data Analysis, Statistics and Probability +1312.2441 Analysis of PDEs +1312.2840 Phenomenology +1312.3823 Information Theory +1312.4453 Theory +1312.4808 Materials Science +1312.4974 Phenomenology +1312.6085 Strongly Correlated Electrons +1312.6169 Learning +1312.7437 Strongly Correlated Electrons +1312.7464 Materials Science +1312.7679 Geometric Topology +1401.0655 Social and Information Networks +1401.1328 Theory +1401.2288 Numerical Analysis +1401.2335 K-Theory and Homology +1401.2521 Probability +1401.3727 Number Theory +1401.4307 Digital Libraries +1401.4398 Optimization and Control +1401.4657 Information Theory +1401.4991 Materials Science +1401.5554 Analysis of PDEs +1401.6001 Probability +1401.6510 Astrophysics of Galaxies +1401.6577 Astrophysics of Galaxies +1401.6909 Probability +1401.7388 Learning +1401.7484 Geometric Topology +1401.7593 Differential Geometry +1401.7715 Computer Vision and Pattern Recognition +1401.7964 General Topology +1401.8080 Statistics Theory +1402.0005 Cosmology and Nongalactic Astrophysics +1402.0009 Robotics +1402.0013 Social and Information Networks +1402.0022 Strongly Correlated Electrons +1402.0024 Discrete Mathematics +1402.0025 Mesoscale and Nanoscale Physics +1402.0026 Optimization and Control +1402.0029 Multiagent Systems +1402.0031 Number Theory +1402.0032 Functional Analysis +1402.0037 Earth and Planetary Astrophysics +1402.0039 Metric Geometry +1402.0041 Quantum Gases +1402.0042 Genomics +1402.0043 Instrumentation and Detectors +1402.0044 Algebraic Topology +1402.0046 Mesoscale and Nanoscale Physics +1402.0047 Mesoscale and Nanoscale Physics +1402.0053 +1402.0054 Data Structures and Algorithms +1402.0058 Chemical Physics +1402.0059 Differential Geometry +1402.0062 Information Theory +1402.0066 Analysis of PDEs +1402.0067 Combinatorics +1402.0068 Information Theory +1402.0076 Dynamical Systems +1402.0079 Optics +1402.0081 Logic in Computer Science +1402.0084 Probability +1402.0088 Statistical Mechanics +1402.0091 Numerical Analysis +1402.0092 Statistics Theory +1402.0094 Strongly Correlated Electrons +1402.0096 Numerical Analysis +1402.0099 Machine Learning +1402.0102 Number Theory +1402.0103 Functional Analysis +1402.0105 High Energy Astrophysical Phenomena +1402.0112 Lattice +1402.0113 Analysis of PDEs +1402.0116 Computers and Society +1402.0130 Systems and Control +1402.0137 Combinatorics +1402.0138 Materials Science +1402.0139 General Finance +1402.0140 Systems and Control +1402.0146 Computational Complexity +1402.0147 Systems and Control +1402.0157 Software Engineering +1402.0160 Software Engineering +1402.0164 Phenomenology +1402.0165 Phenomenology +1402.0166 Phenomenology +1402.0167 Phenomenology +1402.0169 Number Theory +1402.0170 Computer Vision and Pattern Recognition +1402.0171 Statistical Mechanics +1402.0173 Phenomenology +1402.0176 General Finance +1402.0178 Phenomenology +1402.0180 Phenomenology +1402.0182 Statistics Theory +1402.0183 Statistics Theory +1402.0184 Representation Theory +1402.0189 +1402.0193 Statistical Mechanics +1402.0194 Astrophysics of Galaxies +1402.0195 Soft Condensed Matter +1402.0198 Functional Analysis +1402.0199 +1402.0200 Human-Computer Interaction +1402.0201 Soft Condensed Matter +1402.0203 Atomic and Molecular Clusters +1402.0206 Rings and Algebras +1402.0210 Solar and Stellar Astrophysics +1402.0214 Networking and Internet Architecture +1402.0217 Mesoscale and Nanoscale Physics +1402.0219 Number Theory +1402.0221 Number Theory +1402.0224 Representation Theory +1402.0225 Logic in Computer Science +1402.0232 Materials Science +1402.0234 Phenomenology +1402.0235 +1402.0238 Social and Information Networks +1402.0239 Cryptography and Security +1402.0242 History and Philosophy of Physics +1402.0243 Computational Finance +1402.0247 Computational Engineering, Finance, and Science +1402.0252 Analysis of PDEs +1402.0253 Category Theory +1402.0254 Algebraic Geometry +1402.0257 Solar and Stellar Astrophysics +1402.0259 Mesoscale and Nanoscale Physics +1402.0261 +1402.0262 Soft Condensed Matter +1402.0264 Distributed, Parallel, and Cluster Computing +1402.0266 Numerical Analysis +1402.0269 Strongly Correlated Electrons +1402.0271 Functional Analysis +1402.0273 Computers and Society +1402.0278 Materials Science +1402.0282 Databases +1402.0285 Instrumentation and Detectors +1402.0287 Dynamical Systems +1402.0288 Learning +1402.0289 Computer Vision and Pattern Recognition +1402.0292 Software Engineering +1402.0294 Software Engineering +1402.0303 Number Theory +1402.0304 Geometric Topology +1402.0308 +1402.0313 Information Theory +1402.0314 Dynamical Systems +1402.0315 Soft Condensed Matter +1402.0317 Differential Geometry +1402.0325 Superconductivity +1402.0328 Rings and Algebras +1402.0331 Analysis of PDEs +1402.0332 Rings and Algebras +1402.0337 Earth and Planetary Astrophysics +1402.0340 Rings and Algebras +1402.0341 Group Theory +1402.0343 Earth and Planetary Astrophysics +1402.0344 Number Theory +1402.0346 Statistics Theory +1402.0347 +1402.0352 Materials Science +1402.0353 Probability +1402.0354 +1402.0360 Complex Variables +1402.0363 Soft Condensed Matter +1402.0365 Analysis of PDEs +1402.0368 Fluid Dynamics +1402.0372 Group Theory +1402.0388 Probability +1402.0390 Phenomenology +1402.0393 Phenomenology +1402.0395 Superconductivity +1402.0400 Robotics +1402.0408 Category Theory +1402.0409 History and Overview +1402.0410 Computer Science and Game Theory +1402.0411 Combinatorics +1402.0414 Complex Variables +1402.0415 Biological Physics +1402.0420 Optimization and Control +1402.0422 Machine Learning +1402.0423 Data Structures and Algorithms +1402.0425 +1402.0431 +1402.0433 Combinatorics +1402.0436 Superconductivity +1402.0437 Instrumentation and Detectors +1402.0441 Logic +1402.0449 +1402.0452 Learning +1402.0454 Networking and Internet Architecture +1402.0458 Functional Analysis +1402.0459 Learning +1402.0461 Numerical Analysis +1402.0463 Soft Condensed Matter +1402.0464 Analysis of PDEs +1402.0474 Logic in Computer Science +1402.0475 K-Theory and Homology +1402.0476 Atomic and Molecular Clusters +1402.0477 Optimization and Control +1402.0495 +astro-ph/0407495 +cond-mat/0009325 +cond-mat/0207384 Disordered Systems and Neural Networks +math/0203243 Geometric Topology +math/0609137 Algebraic Geometry +math/0610023 Combinatorics +physics/0207009 Data Analysis, Statistics and Probability +physics/0311016 Chemical Physics +physics/0511069 Atomic and Molecular Clusters +physics/0512061 Atomic and Molecular Clusters +0807.0239 Dynamical Systems +0809.3689 +0810.3121 Statistics Theory +0903.1164 Symplectic Geometry +0907.2330 Cosmology and Nongalactic Astrophysics +1110.4975 Combinatorics +1111.0601 Functional Analysis +1112.3820 Number Theory +1112.5704 Molecular Networks +1201.3258 Analysis of PDEs +1203.0125 Cosmology and Nongalactic Astrophysics +1203.5309 Probability +1205.0495 Group Theory +1206.4066 Combinatorics +1206.6039 Analysis of PDEs +1207.7046 Analysis of PDEs +1209.1130 +1210.1991 Materials Science +1301.1015 Commutative Algebra +1301.1735 Classical Analysis and ODEs +1301.2793 Logic +1302.2612 Mesoscale and Nanoscale Physics +1302.3196 Biological Physics +1302.6858 Cosmology and Nongalactic Astrophysics +1303.1374 Populations and Evolution +1303.1831 Geometric Topology +1303.5207 Instrumentation and Methods for Astrophysics +1304.4870 Phenomenology +1304.4977 Classical Physics +1304.5479 Computational Complexity +1304.6645 Statistical Mechanics +1305.1953 +1305.4421 Statistics Theory +1306.5040 Instrumentation and Methods for Astrophysics +1306.6686 Computer Science and Game Theory +1307.0128 +1308.3987 Combinatorics +1308.5271 Cosmology and Nongalactic Astrophysics +1309.0647 Data Structures and Algorithms +1309.2576 Populations and Evolution +1309.2715 +1309.4590 Fluid Dynamics +1309.7986 Probability +1310.1407 Phenomenology +1310.3100 Geometric Topology +1310.3991 +1310.6677 Experiment +1310.7088 Number Theory +1310.7522 Cell Behavior +1311.0754 Number Theory +1311.1477 Numerical Analysis +1311.1816 Cosmology and Nongalactic Astrophysics +1311.2038 Statistics Theory +1311.6071 Mesoscale and Nanoscale Physics +1311.6326 Populations and Evolution +1311.7045 Information Theory +1311.7133 Strongly Correlated Electrons +1312.0455 Mathematical Software +1312.0469 Analysis of PDEs +1312.1998 Mesoscale and Nanoscale Physics +1312.5238 Commutative Algebra +1312.6783 Fluid Dynamics +1312.6881 Dynamical Systems +1401.0681 +1401.3378 Mesoscale and Nanoscale Physics +1401.4284 Mesoscale and Nanoscale Physics +1401.6040 Combinatorics +1402.2039 Strongly Correlated Electrons +1402.3312 Theory +1402.3314 Logic in Computer Science +1402.7355 Strongly Correlated Electrons +1403.4743 Mesoscale and Nanoscale Physics +1403.5569 High Energy Astrophysical Phenomena +1403.6622 Optimization and Control +1403.6756 Dynamical Systems +1403.8092 Mesoscale and Nanoscale Physics +1404.0496 Combinatorics +1404.1798 Mesoscale and Nanoscale Physics +1404.1855 Cosmology and Nongalactic Astrophysics +1404.3836 +1404.7717 Multiagent Systems +1405.0774 Phenomenology +1405.1756 Experiment +1405.2007 Solar and Stellar Astrophysics +1405.2214 Probability +1405.3289 +1405.4475 Optics +1405.4915 Quantum Gases +1405.6015 +1406.0795 Fluid Dynamics +1406.0897 Mesoscale and Nanoscale Physics +1406.0943 Astrophysics of Galaxies +1406.3316 Populations and Evolution +1406.4099 Optimization and Control +1406.4461 Atomic Physics +1406.4525 Mesoscale and Nanoscale Physics +1406.4964 Strongly Correlated Electrons +1406.7291 Astrophysics of Galaxies +1407.0006 Networking and Internet Architecture +1407.1060 Solar and Stellar Astrophysics +1407.1263 Probability +1407.1828 Fluid Dynamics +1407.1956 Disordered Systems and Neural Networks +1407.1996 Logic in Computer Science +1407.4394 Logic in Computer Science +1407.4540 High Energy Astrophysical Phenomena +1407.4548 Differential Geometry +1407.4549 Differential Geometry +1407.4758 Optics +1407.4762 Chemical Physics +1407.4798 Discrete Mathematics +1407.4818 General Physics +1407.4823 Chemical Physics +1407.4824 Molecular Networks +1407.4825 Rings and Algebras +1407.4826 +1407.4827 Number Theory +1407.4828 Chemical Physics +1407.4831 Computers and Society +1407.4832 Information Retrieval +1407.4839 Classical Analysis and ODEs +1407.4845 Combinatorics +1407.4847 Biological Physics +1407.4851 +1407.4856 Fluid Dynamics +1407.4859 Distributed, Parallel, and Cluster Computing +1407.4863 Artificial Intelligence +1407.4864 Pricing of Securities +1407.4869 Combinatorics +1407.4870 Optimization and Control +1407.4874 Computer Vision and Pattern Recognition +1407.4877 Algebraic Geometry +1407.4878 Solar and Stellar Astrophysics +1407.4879 Performance +1407.4884 Information Theory +1407.4886 Instrumentation and Methods for Astrophysics +1407.4887 Algebraic Geometry +1407.4888 Superconductivity +1407.4890 Number Theory +1407.4892 +1407.4898 Computer Vision and Pattern Recognition +1407.4903 Software Engineering +1407.4904 Classical Physics +1407.4908 Distributed, Parallel, and Cluster Computing +1407.4909 Statistics Theory +1407.4913 Probability +1407.4917 Software Engineering +1407.4918 Solar and Stellar Astrophysics +1407.4919 Numerical Analysis +1407.4921 Data Analysis, Statistics and Probability +1407.4923 Cryptography and Security +1407.4928 Solar and Stellar Astrophysics +1407.4931 Materials Science +1407.4937 Logic in Computer Science +1407.4945 Social and Information Networks +1407.4946 Complex Variables +1407.4947 Optics +1407.4958 Instrumentation and Methods for Astrophysics +1407.4960 Combinatorics +1407.4961 Solar and Stellar Astrophysics +1407.4963 Quantum Algebra +1407.4966 High Energy Astrophysical Phenomena +1407.4967 Phenomenology +1407.4969 Algebraic Geometry +1407.4971 Methodology +1407.4972 Computational Complexity +1407.4974 Analysis of PDEs +1407.4979 Computer Vision and Pattern Recognition +1407.4980 Phenomenology +1407.4988 Classical Physics +1407.4989 Social and Information Networks +1407.4990 Social and Information Networks +1407.4999 Computational Complexity +1407.5002 Phenomenology +1407.5008 Other Computer Science +1407.5010 Functional Analysis +1407.5012 Materials Science +1407.5014 Statistics Theory +1407.5017 Machine Learning +1407.5020 Statistical Finance +1407.5022 +1407.5031 Optimization and Control +1407.5041 Rings and Algebras +1407.5042 Computer Science and Game Theory +1407.5044 Numerical Analysis +1407.5047 Analysis of PDEs +1407.5051 Numerical Analysis +1407.5056 Instrumentation and Detectors +1407.5057 History and Overview +1407.5059 +1407.5061 Classical Analysis and ODEs +1407.5070 Differential Geometry +1407.5073 +1407.5075 Combinatorics +1407.5085 Analysis of PDEs +math/0202094 Differential Geometry +math/0307360 Differential Geometry +math/0701067 Differential Geometry +0805.1609 Dynamical Systems +0903.1473 Dynamical Systems +0909.1171 +0909.5659 Numerical Analysis +0911.3447 Representation Theory +1001.3647 Theory +1005.4373 Metric Geometry +1103.0122 Algebraic Geometry +1104.3509 Probability +1105.5793 Optics +1105.5889 Number Theory +1108.2477 Methodology +1108.6190 Materials Science +1108.6191 Experiment +1109.1545 Optimization and Control +1109.2330 +1112.1006 Fluid Dynamics +1112.4717 Spectral Theory +1201.3564 Numerical Analysis +1201.3651 Numerical Analysis +1201.5945 Chemical Physics +1202.0435 Optimization and Control +1202.1076 Probability +1202.2688 Quantitative Methods +1206.4500 Chemical Physics +1206.5382 Computational Physics +1207.2180 Rings and Algebras +1208.5282 Symplectic Geometry +1209.5971 Group Theory +1211.1490 Computational Complexity +1211.5534 Metric Geometry +1212.1499 Chemical Physics +1212.3274 Representation Theory +1212.6466 Combinatorics +1301.2628 Computer Vision and Pattern Recognition +1301.3602 Statistics Theory +1301.3982 Numerical Analysis +1301.4592 Chemical Physics +1301.5865 Theory +1301.6118 Computer Science and Game Theory +1301.6569 Representation Theory +1302.3506 +1302.4904 Materials Science +1302.5076 Metric Geometry +1303.1857 Algebraic Geometry +1303.2067 Chemical Physics +1303.3617 Optics +1303.4250 Group Theory +1304.7265 +1305.0570 Instrumentation and Detectors +1305.3877 Strongly Correlated Electrons +1305.7022 Materials Science +1306.0409 +1306.1987 Numerical Analysis +1306.2650 Quantum Gases +1306.2814 Statistics Theory +1306.4007 Theory +1306.5712 Disordered Systems and Neural Networks +1307.3118 +1307.3159 Geometric Topology +1307.7359 Complex Variables +1308.1825 Phenomenology +1308.1920 Theory +1308.1943 Optimization and Control +1308.2561 Numerical Analysis +1308.2759 Strongly Correlated Electrons +1308.3890 Statistics Theory +1309.4315 Dynamical Systems +1310.1168 Theory +1310.1353 Operator Algebras +1310.3056 Materials Science +1310.3131 Materials Science +1310.4222 Mesoscale and Nanoscale Physics +1310.5439 Computers and Society +1310.8007 Probability +1311.0513 Complex Variables +1311.1657 Cosmology and Nongalactic Astrophysics +1311.1756 Optimization and Control +1311.5695 Experiment +1311.7454 Strongly Correlated Electrons +1312.4714 Optimization and Control +1401.0514 Programming Languages +1401.3780 Combinatorics +1401.4067 Experiment +1401.4240 Mesoscale and Nanoscale Physics +1401.4834 Information Theory +1401.5673 Numerical Analysis +1401.6044 Statistics Theory +1401.6346 Data Structures and Algorithms +1401.6937 Group Theory +1401.7596 Algebraic Geometry +1401.8219 Discrete Mathematics +1402.1076 Data Structures and Algorithms +1402.2800 Atomic Physics +1402.2872 High Energy Astrophysical Phenomena +1402.3552 Strongly Correlated Electrons +1402.4081 Strongly Correlated Electrons +1402.4700 Soft Condensed Matter +1403.0525 Instrumentation and Detectors +1403.1686 Optics +1403.2836 Quantum Gases +1403.3347 Materials Science +1403.3900 Fluid Dynamics +1403.5646 +1403.6389 Strongly Correlated Electrons +1403.6730 Combinatorics +1404.0354 Information Theory +1404.1585 Phenomenology +1404.2197 +1404.2824 Formal Languages and Automata Theory +1404.3467 Cosmology and Nongalactic Astrophysics +1404.3513 Phenomenology +1404.4610 Category Theory +1404.6108 Astrophysics of Galaxies +1404.6196 Logic in Computer Science +1404.6252 Astrophysics of Galaxies +1405.3593 Complex Variables +1405.3812 Portfolio Management +1405.3960 Experiment +1405.4141 Machine Learning +1405.4356 Distributed, Parallel, and Cluster Computing +1405.4422 Software Engineering +1405.6591 Optimization and Control +1405.7189 Space Physics +1406.0486 Artificial Intelligence +1406.0744 +1406.0896 +1406.1501 Computational Engineering, Finance, and Science +1406.2628 Distributed, Parallel, and Cluster Computing +1406.4200 Artificial Intelligence +1406.4966 Computer Vision and Pattern Recognition +1406.5167 Differential Geometry +1406.5177 Other Computer Science +1406.5183 Solar and Stellar Astrophysics +1406.5189 Astrophysics of Galaxies +1406.5191 Astrophysics of Galaxies +1406.5200 High Energy Astrophysical Phenomena +1406.5204 Experiment +1406.5205 Representation Theory +1406.5207 Combinatorics +1406.5210 Complex Variables +1406.5211 Populations and Evolution +1406.5212 Computer Vision and Pattern Recognition +1406.5221 Mesoscale and Nanoscale Physics +1406.5225 Experiment +1406.5228 Earth and Planetary Astrophysics +1406.5234 Tissues and Organs +1406.5239 High Energy Astrophysical Phenomena +1406.5241 Other Statistics +1406.5243 Dynamical Systems +1406.5245 Plasma Physics +1406.5246 Probability +1406.5248 +1406.5251 Theory +1406.5253 Earth and Planetary Astrophysics +1406.5254 Complex Variables +1406.5257 Materials Science +1406.5260 +1406.5262 +1406.5263 Information Theory +1406.5265 Optics +1406.5277 Number Theory +1406.5280 Information Theory +1406.5281 Optimization and Control +1406.5285 Chemical Physics +1406.5288 Optics +1406.5290 Theory +1406.5292 Representation Theory +1406.5293 Complex Variables +1406.5294 Materials Science +1406.5295 Optimization and Control +1406.5296 Mesoscale and Nanoscale Physics +1406.5299 Computational Geometry +1406.5306 Computational Complexity +1406.5310 Complex Variables +1406.5312 Optimization and Control +1406.5314 Dynamical Systems +1406.5316 Networking and Internet Architecture +1406.5318 Dynamical Systems +1406.5319 Theory +1406.5324 Complex Variables +1406.5325 Analysis of PDEs +1406.5326 Solar and Stellar Astrophysics +1406.5330 +1406.5331 Differential Geometry +1406.5332 Dynamical Systems +1406.5333 Solar and Stellar Astrophysics +1406.5336 Computational Complexity +1406.5343 Numerical Analysis +1406.5344 Strongly Correlated Electrons +1406.5345 Classical Analysis and ODEs +1406.5347 +1406.5349 Number Theory +1406.5351 Theory +1406.5352 Astrophysics of Galaxies +1406.5353 Functional Analysis +1406.5369 Mathematical Software +1406.5376 Discrete Mathematics +1406.5379 Phenomenology +1406.5391 Spectral Theory +1406.5393 Phenomenology +1406.5397 Group Theory +1406.5402 Mesoscale and Nanoscale Physics +1406.5406 General Mathematics +1406.5408 Superconductivity +1406.5411 Cosmology and Nongalactic Astrophysics +1406.5419 +1406.5423 Strongly Correlated Electrons +1406.5424 Plasma Physics +1406.5427 +1406.5430 Computational Finance +1406.5432 Differential Geometry +1406.5434 History and Philosophy of Physics +1406.5437 Optimization and Control +1406.5439 Optimization and Control +1406.5440 Cryptography and Security +1406.5446 +1406.5447 Algebraic Geometry +1406.5448 Analysis of PDEs +1406.5451 Materials Science +1406.5452 Chaotic Dynamics +1406.5454 Combinatorics +1406.5456 Classical Analysis and ODEs +1406.5457 Programming Languages +1406.5458 Number Theory +1406.5461 Populations and Evolution +1406.5462 Number Theory +1406.5469 Dynamical Systems +1406.5479 Category Theory +1406.5481 Social and Information Networks +1406.5482 Dynamical Systems +1406.5483 Numerical Analysis +1406.5486 Statistical Finance +1406.5487 Statistical Finance +1406.5491 Algebraic Topology +1406.5493 Networking and Internet Architecture +1406.5495 Logic in Computer Science +1406.5500 Medical Physics +hep-th/0404083 Theory +math/0305315 Algebraic Topology +math/0511365 Combinatorics +math/0605510 Probability +1401.4469 Cosmology and Nongalactic Astrophysics +1002.4145 Algebraic Geometry +0912.4828 Complex Variables +1002.0972 Group Theory +1006.2803 Complex Variables +1009.5022 Complex Variables +1012.1594 Differential Geometry +1012.6022 Complex Variables +1103.4702 Commutative Algebra +1105.1201 Strongly Correlated Electrons +1108.5480 Functional Analysis +1108.5768 Other Computer Science +1109.3789 Functional Analysis +1110.0532 Artificial Intelligence +1202.0191 Physics and Society +1203.0747 Information Retrieval +1203.2361 Probability +1204.3354 Fluid Dynamics +1204.5937 +1205.5396 Exactly Solvable and Integrable Systems +1205.6168 Differential Geometry +1206.0141 Mathematical Software +1206.4262 Phenomenology +1207.5298 Networking and Internet Architecture +1208.2578 Probability +1208.3416 Functional Analysis +1208.4676 Complex Variables +1208.4839 Analysis of PDEs +1208.6255 Physics and Society +1209.1922 Disordered Systems and Neural Networks +1209.5209 Operator Algebras +1209.6568 +1210.1812 Differential Geometry +1210.3958 Classical Analysis and ODEs +1211.2975 Metric Geometry +1211.5621 Quantum Algebra +1211.6718 Computational Physics +1212.1038 Computation +1212.2066 Classical Analysis and ODEs +1212.3509 Computational Physics +1212.5285 Probability +1302.3120 Information Theory +1302.5845 Mesoscale and Nanoscale Physics +1302.5897 Soft Condensed Matter +1302.6170 Operator Algebras +1302.6874 Number Theory +1303.1074 Cosmology and Nongalactic Astrophysics +1303.7347 Phenomenology +1304.2089 Chaotic Dynamics +1305.0868 Information Theory +1305.2778 Superconductivity +1305.4222 Chaotic Dynamics +1305.5261 Analysis of PDEs +1305.6094 Chaotic Dynamics +1306.0756 Neurons and Cognition +1306.2868 Probability +1306.3527 Operator Algebras +1306.4991 Probability +1306.5431 Methodology +1306.5849 Logic +1306.6204 +1306.6607 +1307.1266 Materials Science +1307.5337 Functional Analysis +1307.6597 +1307.7082 +1308.0352 Mesoscale and Nanoscale Physics +1308.1835 Probability +1308.4242 Chemical Physics +1308.4368 Formal Languages and Automata Theory +1308.6373 Information Theory +1308.6382 Computational Physics +1309.0993 +1309.1477 Cosmology and Nongalactic Astrophysics +1309.4824 Analysis of PDEs +1309.6056 History and Philosophy of Physics +1310.0632 Combinatorics +1310.0805 Computational Physics +1310.2495 Instrumentation and Detectors +1310.2749 Numerical Analysis +1310.3155 Statistical Mechanics +1310.4216 Cryptography and Security +1310.4341 Analysis of PDEs +1310.4967 Quantum Gases +1310.5003 Disordered Systems and Neural Networks +1310.5762 Strongly Correlated Electrons +1310.6878 Mesoscale and Nanoscale Physics +1310.8284 Strongly Correlated Electrons +1311.0655 Number Theory +1311.1098 Optimization and Control +1311.2772 +1311.3774 Atomic Physics +1311.4334 Exactly Solvable and Integrable Systems +1311.4583 Theory +1311.6250 Logic in Computer Science +1311.7626 +1312.0573 Physics and Society +1312.0761 Methodology +1312.1710 Materials Science +1312.2981 +1312.6680 Data Structures and Algorithms +1401.0568 +1401.0748 Operator Algebras +1401.3399 Phenomenology +1401.3754 Solar and Stellar Astrophysics +1401.4278 Superconductivity +1401.4676 Physics and Society +1401.4993 Cosmology and Nongalactic Astrophysics +1401.5750 Dynamical Systems +1401.6762 Strongly Correlated Electrons +1401.7035 Phenomenology +1401.7885 Materials Science +1402.0192 Algebraic Geometry +1402.2694 +1402.4302 Physics and Society +1402.7253 Logic in Computer Science +1403.0805 +1403.1519 +1403.1807 Mesoscale and Nanoscale Physics +1403.1852 Phenomenology +1403.2461 Analysis of PDEs +1403.4737 +1403.5171 Data Structures and Algorithms +1403.5729 Formal Languages and Automata Theory +1403.6414 Discrete Mathematics +1403.8062 +1404.0468 Mesoscale and Nanoscale Physics +1404.0706 Number Theory +1404.1811 Physics and Society +1404.2647 Numerical Analysis +1404.3163 +1404.3324 Combinatorics +1404.4438 Mesoscale and Nanoscale Physics +1404.5396 Materials Science +1404.5427 Chemical Physics +1404.6111 Differential Geometry +1404.6893 +1405.2642 Logic in Computer Science +1405.3100 Other Computer Science +1405.3147 Numerical Analysis +1405.3649 Classical Analysis and ODEs +1405.4570 General Mathematics +1405.5002 +1405.5245 Numerical Analysis +1405.5354 Earth and Planetary Astrophysics +1405.5483 Data Structures and Algorithms +1405.5528 +1405.5530 History and Philosophy of Physics +1405.5531 Computer Vision and Pattern Recognition +1405.5549 Analysis of PDEs +1405.5550 Computational Engineering, Finance, and Science +1405.5552 History and Philosophy of Physics +1405.5558 Combinatorics +1405.5565 Instrumentation and Methods for Astrophysics +1405.5566 Classical Analysis and ODEs +1405.5572 Social and Information Networks +1405.5574 Social and Information Networks +1405.5577 Methodology +1405.5578 Methodology +1405.5580 Probability +1405.5581 Robotics +1405.5582 Phenomenology +1405.5583 Solar and Stellar Astrophysics +1405.5584 Soft Condensed Matter +1405.5585 +1405.5588 Geometric Topology +1405.5593 Formal Languages and Automata Theory +1405.5594 Formal Languages and Automata Theory +1405.5595 Formal Languages and Automata Theory +1405.5596 Formal Languages and Automata Theory +1405.5597 Formal Languages and Automata Theory +1405.5598 Formal Languages and Automata Theory +1405.5599 Formal Languages and Automata Theory +1405.5600 Formal Languages and Automata Theory +1405.5601 Formal Languages and Automata Theory +1405.5602 Formal Languages and Automata Theory +1405.5603 Formal Languages and Automata Theory +1405.5604 Formal Languages and Automata Theory +1405.5605 Formal Languages and Automata Theory +1405.5606 Formal Languages and Automata Theory +1405.5607 Formal Languages and Automata Theory +1405.5608 Formal Languages and Automata Theory +1405.5609 Formal Languages and Automata Theory +1405.5610 Formal Languages and Automata Theory +1405.5611 Formal Languages and Automata Theory +1405.5613 Data Structures and Algorithms +1405.5616 Phenomenology +1405.5619 Probability +1405.5627 Phenomenology +1405.5629 Dynamical Systems +1405.5631 Rings and Algebras +1405.5634 Information Theory +1405.5635 Astrophysics of Galaxies +1405.5643 Artificial Intelligence +1405.5644 Representation Theory +1405.5645 Logic in Computer Science +1405.5646 Artificial Intelligence +1405.5648 Software Engineering +1405.5649 Algebraic Geometry +1405.5651 Operating Systems +1405.5654 Computation and Language +1405.5656 +1405.5657 Analysis of PDEs +1405.5659 Analysis of PDEs +1405.5660 Analysis of PDEs +1405.5661 Distributed, Parallel, and Cluster Computing +1405.5662 Logic in Computer Science +1405.5663 Differential Geometry +1405.5665 Instrumentation and Detectors +1405.5667 Quantum Algebra +1405.5668 Mathematical Software +1405.5669 Networking and Internet Architecture +1405.5670 Soft Condensed Matter +1405.5671 Databases +1405.5674 Computation and Language +1405.5675 Geometric Topology +1405.5676 Algebraic Geometry +1405.5680 Optics +1405.5681 Classical Physics +1405.5682 Dynamical Systems +1405.5684 +1405.5685 Phenomenology +1405.5686 Functional Analysis +1405.5695 Statistical Finance +1405.5696 Instrumentation and Methods for Astrophysics +1405.5697 Materials Science +1405.5698 Geometric Topology +1405.5700 Phenomenology +1405.5709 Chemical Physics +1405.5711 Group Theory +1405.5712 Group Theory +1405.5716 Differential Geometry +1405.5717 General Physics +1405.5727 Instrumentation and Methods for Astrophysics +1405.5730 Information Theory +1405.5734 Functional Analysis +1405.5735 Classical Analysis and ODEs +1405.5736 Representation Theory +1405.5740 Computation +1405.5741 Computers and Society +1405.5743 Tissues and Organs +1405.5751 Dynamical Systems +1405.5753 Networking and Internet Architecture +1405.5755 Algebraic Geometry +1405.5756 Physics and Society +1405.5760 Combinatorics +1405.5763 Geometric Topology +1405.5766 Mesoscale and Nanoscale Physics +1405.5767 Functional Analysis +1405.5768 Rings and Algebras +1405.5770 Group Theory +1405.5772 Mesoscale and Nanoscale Physics +1405.5777 Databases +1405.5783 Probability +1405.5784 Solar and Stellar Astrophysics +1405.5789 +1405.5790 Space Physics +1405.5792 General Physics +1405.5794 Optics +1405.5797 +1405.5802 Methodology +1405.5806 Algebraic Geometry +1405.5807 Commutative Algebra +1405.5809 Chemical Physics +1405.5813 +1405.5816 Complex Variables +1405.5817 Materials Science +1405.5823 Mesoscale and Nanoscale Physics +1405.5828 Materials Science +1405.5829 Databases +1405.5831 Phenomenology +1405.5835 Fluid Dynamics +1405.5841 Computation +1405.5842 Mathematical Finance +1405.5843 Dynamical Systems +1405.5845 Digital Libraries +1405.5846 Solar and Stellar Astrophysics +1405.5851 Strongly Correlated Electrons +1405.5852 Combinatorics +1405.5854 Symbolic Computation +1405.5856 Probability +1405.5858 Strongly Correlated Electrons +1405.5862 Combinatorics +1405.5864 Information Theory +1405.5866 Probability +1405.5867 Networking and Internet Architecture +1405.5869 Machine Learning +1405.5871 +0908.1066 K-Theory and Homology +0908.1934 Strongly Correlated Electrons +0908.3765 K-Theory and Homology +0909.0883 K-Theory and Homology +0909.5667 Number Theory +0910.1370 Symplectic Geometry +0910.3251 Geometric Topology +1006.5025 Chaotic Dynamics +1007.4259 Statistics Theory +1102.2446 Instrumentation and Detectors +1103.1760 Popular Physics +1103.4571 Functional Analysis +1104.2575 Phenomenology +1104.4580 Methodology +1106.3730 Strongly Correlated Electrons +1109.2632 Instrumentation and Detectors +1112.3466 Dynamical Systems +1201.6307 Statistics Theory +1202.4554 +1203.4179 Theory +1204.2773 Functional Analysis +1205.1758 Data Structures and Algorithms +1206.1227 Geometric Topology +1206.6573 Logic +1210.3414 Materials Science +1210.6522 Symplectic Geometry +1210.7648 Spectral Theory +1210.7659 +1212.0003 General Physics +1212.3349 Optimization and Control +1301.0014 Information Theory +1301.6320 Theory +1302.5284 Probability +1302.5380 Mesoscale and Nanoscale Physics +1302.6578 +1302.6924 Operator Algebras +1304.0869 Computer Vision and Pattern Recognition +1304.6861 +1304.7796 Numerical Analysis +1305.3389 Fluid Dynamics +1305.4803 Geophysics +1305.6009 +1305.7272 Networking and Internet Architecture +1306.0930 Analysis of PDEs +1306.1529 Geophysics +1306.5143 +1306.5591 Statistical Mechanics +1306.6461 Phenomenology +1307.1376 Materials Science +1307.2411 Metric Geometry +1307.5408 Logic +1307.7697 Statistical Mechanics +1308.0349 Mesoscale and Nanoscale Physics +1308.2984 Cosmology and Nongalactic Astrophysics +1308.3128 Mesoscale and Nanoscale Physics +1308.3182 Physics and Society +1308.3375 Mesoscale and Nanoscale Physics +1308.3786 Algebraic Geometry +1308.4584 Exactly Solvable and Integrable Systems +1309.0923 Materials Science +1309.2145 Operator Algebras +1309.4430 +1309.4918 Mesoscale and Nanoscale Physics +1309.5452 Mesoscale and Nanoscale Physics +1309.7162 Operator Algebras +1310.0644 +1310.2153 Soft Condensed Matter +1310.2717 Systems and Control +1310.3080 Materials Science +1310.3464 Plasma Physics +1310.4154 +1310.4240 Mesoscale and Nanoscale Physics +1310.8311 +1310.8324 Mesoscale and Nanoscale Physics +1311.0783 Strongly Correlated Electrons +1311.4054 Optics +1311.4362 Systems and Control +1311.5562 High Energy Astrophysical Phenomena +1311.6011 Strongly Correlated Electrons +1311.6645 +1311.6699 +1311.6990 Solar and Stellar Astrophysics +1311.7377 Theory +1312.0790 Artificial Intelligence +1312.1198 Theory +1312.1451 Phenomenology +1312.3269 Systems and Control +1312.3382 Quantitative Methods +1312.3638 Cosmology and Nongalactic Astrophysics +1312.4925 Number Theory +1312.5729 Experiment +1312.6037 Soft Condensed Matter +1312.6665 +1312.6940 Mesoscale and Nanoscale Physics +1312.7759 Differential Geometry +1401.0124 General Finance +1401.1881 Strongly Correlated Electrons +1401.2108 Superconductivity +1401.2206 Materials Science +1401.4106 Mesoscale and Nanoscale Physics +1401.4679 +1401.4833 Complex Variables +1401.5885 Algebraic Geometry +1401.5971 Mesoscale and Nanoscale Physics +1401.6770 +1401.7149 Theory +1401.8254 Complex Variables +1402.0155 Mesoscale and Nanoscale Physics +1402.1148 Strongly Correlated Electrons +1402.1746 Fluid Dynamics +1402.1922 Logic in Computer Science +1402.2248 Medical Physics +1402.2419 Disordered Systems and Neural Networks +1402.3009 +1402.3506 Systems and Control +1402.3908 Superconductivity +1402.4179 Physics and Society +1402.4858 Superconductivity +1402.5231 Number Theory +1402.6617 Theory +1402.6828 Materials Science +1403.2170 Discrete Mathematics +1403.2677 Analysis of PDEs +1403.2883 Analysis of PDEs +1403.2913 Analysis of PDEs +1403.3100 Social and Information Networks +1403.3348 Functional Analysis +1403.3391 Logic in Computer Science +1403.3392 Strongly Correlated Electrons +1403.3414 Genomics +1403.3419 Geometric Topology +1403.3420 Theory +1403.3423 Representation Theory +1403.3424 Operator Algebras +1403.3427 Functional Analysis +1403.3429 +1403.3430 Functional Analysis +1403.3438 Machine Learning +1403.3439 Statistical Mechanics +1403.3440 Operator Algebras +1403.3442 +1403.3443 Number Theory +1403.3444 Optimization and Control +1403.3451 Differential Geometry +1403.3452 Mesoscale and Nanoscale Physics +1403.3457 Methodology +1403.3458 Computational Geometry +1403.3459 Risk Management +1403.3460 Learning +1403.3461 Information Theory +1403.3462 Discrete Mathematics +1403.3470 Number Theory +1403.3473 Number Theory +1403.3480 Performance +1403.3481 Physics Education +1403.3488 Networking and Internet Architecture +1403.3498 Software Engineering +1403.3500 Methodology +1403.3502 Logic in Computer Science +1403.3506 Geometric Topology +1403.3509 Dynamical Systems +1403.3518 Mesoscale and Nanoscale Physics +1403.3520 Strongly Correlated Electrons +1403.3524 Formal Languages and Automata Theory +1403.3525 Commutative Algebra +1403.3526 Strongly Correlated Electrons +1403.3528 Materials Science +1403.3535 Numerical Analysis +1403.3536 Analysis of PDEs +1403.3540 Numerical Analysis +1403.3541 Phenomenology +1403.3546 Materials Science +1403.3547 Other Computer Science +1403.3551 Data Structures and Algorithms +1403.3552 Materials Science +1403.3553 Networking and Internet Architecture +1403.3554 +1403.3557 Commutative Algebra +1403.3559 Software Engineering +1403.3563 Cryptography and Security +1403.3567 Number Theory +1403.3569 Cosmology and Nongalactic Astrophysics +1403.3572 Dynamical Systems +1403.3573 Instrumentation and Methods for Astrophysics +1403.3575 Strongly Correlated Electrons +1403.3579 Optimization and Control +1403.3581 Phenomenology +1403.3582 +1403.3584 Statistical Finance +1403.3589 Materials Science +1403.3590 Numerical Analysis +1403.3591 Instrumentation and Methods for Astrophysics +1403.3593 Probability +1403.3595 Computer Science and Game Theory +1403.3600 Numerical Analysis +1403.3602 Computer Vision and Pattern Recognition +1403.3605 Functional Analysis +1403.3607 Number Theory +1403.3609 Algebraic Geometry +1403.3611 Software Engineering +1403.3618 Physics Education +1403.3619 High Energy Astrophysical Phenomena +1403.3621 General Mathematics +1403.3622 General Mathematics +1403.3623 Classical Analysis and ODEs +1403.3624 +1403.3626 Populations and Evolution +1403.3627 Computational Finance +1403.3628 Learning +1403.3629 Fluid Dynamics +1403.3631 Geometric Topology +1403.3632 Classical Analysis and ODEs +1403.3636 +1403.3638 Statistical Finance +1403.3642 Analysis of PDEs +1403.3643 History and Philosophy of Physics +1403.3644 K-Theory and Homology +1403.3645 +1403.3649 Distributed, Parallel, and Cluster Computing +1403.3655 General Physics +1403.3656 Group Theory +1403.3657 Theory +1403.3659 Other Quantitative Biology +1403.3660 Cryptography and Security +1403.3663 Functional Analysis +1403.3664 Classical Physics +1403.3665 Information Theory +1403.3666 Complex Variables +1403.3671 Probability +1403.3672 Category Theory +1403.3673 +1403.3677 Solar and Stellar Astrophysics +1403.3678 Information Theory +1403.3682 Soft Condensed Matter +1403.3683 Computer Vision and Pattern Recognition +1403.3687 Superconductivity +gr-qc/0407090 +gr-qc/9810025 +hep-ph/0103104 Phenomenology +0708.0611 Optics +0902.4682 Logic in Computer Science +0902.4748 Quantum Algebra +1011.1690 Symplectic Geometry +1011.2526 Probability +1012.3301 Algebraic Geometry +1101.4797 +1102.3516 Analysis of PDEs +1105.2711 Differential Geometry +1106.3349 Discrete Mathematics +1107.1226 Probability +1107.2934 Cosmology and Nongalactic Astrophysics +1108.3087 Combinatorics +1109.1745 Geometric Topology +1109.2360 Cosmology and Nongalactic Astrophysics +1110.3395 Differential Geometry +1111.3449 Combinatorics +1111.3813 Strongly Correlated Electrons +1112.3960 Cosmology and Nongalactic Astrophysics +1202.4734 Theory +1203.6395 Algebraic Topology +1204.1846 Computer Science and Game Theory +1204.3255 Artificial Intelligence +1204.4136 Numerical Analysis +1204.5536 Statistics Theory +1206.1436 Representation Theory +1206.2153 Statistical Finance +1208.0763 Probability +1208.1014 Differential Geometry +1209.2439 +1210.0031 Optimization and Control +1210.5158 +1211.2925 Phenomenology +1211.3588 Number Theory +1211.5410 +1301.1214 +1301.2790 Mesoscale and Nanoscale Physics +1301.5404 Phenomenology +1302.6150 Representation Theory +1303.2562 +1303.3686 +1303.6651 Numerical Analysis +1304.0742 Mesoscale and Nanoscale Physics +1304.3152 Solar and Stellar Astrophysics +1304.4092 +1304.4281 Theory +1304.5756 Quantitative Methods +1304.7056 Algebraic Geometry +1304.7575 Probability +1306.0519 Physics and Society +1306.1758 Discrete Mathematics +1307.0671 Optics +1307.3813 Materials Science +1307.4088 Solar and Stellar Astrophysics +1307.7579 Theory +1307.8164 Phenomenology +1307.8329 Theory +1308.1363 Experiment +1308.3186 Strongly Correlated Electrons +1308.6802 Theory +1309.0237 Populations and Evolution +1309.0265 Populations and Evolution +1309.0730 Phenomenology +1309.0877 Operator Algebras +1309.2549 Combinatorics +1309.4146 +1310.0030 +1310.1172 Probability +1310.1963 +1310.4068 Numerical Analysis +1310.4691 +1310.4927 Exactly Solvable and Integrable Systems +1310.5185 +1310.5708 Strongly Correlated Electrons +1310.5759 Instrumentation and Detectors +1310.7731 +1310.8470 Materials Science +1311.1072 Solar and Stellar Astrophysics +1311.1286 +1311.2800 +1311.3442 Phenomenology +1311.3641 Dynamical Systems +1311.4416 Theory +1311.5526 Strongly Correlated Electrons +1311.6075 Phenomenology +1311.6296 Phenomenology +1311.6675 Theory +1311.7380 Cosmology and Nongalactic Astrophysics +1312.0396 +1312.1751 Quantum Gases +1312.2523 Phenomenology +1312.2878 Phenomenology +1312.3457 Analysis of PDEs +1312.3964 Fluid Dynamics +1312.4430 Cosmology and Nongalactic Astrophysics +1312.4916 Theory +1312.5404 Strongly Correlated Electrons +1312.5703 Phenomenology +1312.5742 Cosmology and Nongalactic Astrophysics +1312.6107 +1312.7273 Theory +1312.7454 +1401.0004 Theory +1401.0216 Phenomenology +1401.1033 Strongly Correlated Electrons +1401.1548 +1401.2307 Theory +1401.2388 Materials Science +1401.2622 Cosmology and Nongalactic Astrophysics +1401.2654 Phenomenology +1401.2833 +1401.2930 +1401.3154 +1401.4945 Optics +1401.4987 Theory +1401.6059 Optics +1401.7812 Theory +1401.8237 +1402.0362 Computer Science and Game Theory +1402.0996 Functional Analysis +1402.1226 Materials Science +1402.2057 Strongly Correlated Electrons +1402.2912 Theory +1402.3531 Statistical Mechanics +1402.3597 Astrophysics of Galaxies +1402.4130 Astrophysics of Galaxies +1402.4187 Optimization and Control +1402.4800 Cosmology and Nongalactic Astrophysics +1402.4924 Theory +1402.5156 +1402.5546 Materials Science +1402.5780 Algebraic Geometry +1402.5935 +1402.6573 Social and Information Networks +1402.6732 Phenomenology +1402.7040 Phenomenology +1402.7179 Differential Geometry +1402.7291 Optimization and Control +1402.7295 Phenomenology +1403.0249 Quantum Gases +1403.0438 Cosmology and Nongalactic Astrophysics +1403.0551 Strongly Correlated Electrons +1403.0580 Theory +1403.1318 Lattice +1403.1784 Statistical Mechanics +1403.1797 Superconductivity +1403.2509 +1403.3152 Theory +1403.3262 +1403.3620 Lattice +1403.3680 +1403.4811 Cosmology and Nongalactic Astrophysics +1403.4979 Cosmology and Nongalactic Astrophysics +1403.5055 Cosmology and Nongalactic Astrophysics +1403.5465 Phenomenology +1403.6500 Computational Physics +1403.6786 Phenomenology +1403.6940 +1403.7009 Solar and Stellar Astrophysics +1403.7042 Experiment +1403.8064 Optimization and Control +1404.0511 Solar and Stellar Astrophysics +1404.1172 Lattice +1404.1333 Chemical Physics +1404.2030 Statistical Mechanics +1404.2491 Phenomenology +1404.2817 +1404.2829 Dynamical Systems +1404.3114 Physics and Society +1404.3769 Earth and Planetary Astrophysics +1404.3798 Superconductivity +1404.3801 Computational Complexity +1404.4182 Solar and Stellar Astrophysics +1404.4915 Analysis of PDEs +1404.5236 Data Structures and Algorithms +1404.5495 High Energy Astrophysical Phenomena +1404.6482 Optics +1404.6874 Superconductivity +1404.7243 High Energy Astrophysical Phenomena +1404.7738 Number Theory +1405.0106 Algebraic Geometry +1405.0724 Information Theory +1405.1144 Earth and Planetary Astrophysics +1405.1213 Computer Vision and Pattern Recognition +1405.1422 Solar and Stellar Astrophysics +1405.3078 Algebraic Geometry +1405.3349 Materials Science +1405.3588 Exactly Solvable and Integrable Systems +1405.3690 Metric Geometry +1405.5014 Astrophysics of Galaxies +1405.5149 Phenomenology +1405.6092 History and Philosophy of Physics +1405.6186 Materials Science +1405.6269 Solar and Stellar Astrophysics +1405.6572 Operator Algebras +1405.6702 +1405.6704 High Energy Astrophysical Phenomena +1405.6727 Theory +1405.6734 Representation Theory +1405.6737 Analysis of PDEs +1405.6738 Digital Libraries +1405.6744 Systems and Control +1405.6745 Classical Analysis and ODEs +1405.6746 Solar and Stellar Astrophysics +1405.6747 Medical Physics +1405.6749 Probability +1405.6751 Methodology +1405.6752 Analysis of PDEs +1405.6757 Learning +1405.6760 Algebraic Geometry +1405.6761 Number Theory +1405.6771 Quantum Gases +1405.6783 Instrumentation and Methods for Astrophysics +1405.6787 Geometric Topology +1405.6788 +1405.6789 Numerical Analysis +1405.6792 Statistics Theory +1405.6793 Statistics Theory +1405.6795 Mesoscale and Nanoscale Physics +1405.6796 Statistics Theory +1405.6798 Statistics Theory +1405.6799 Materials Science +1405.6800 Statistics Theory +1405.6802 Combinatorics +1405.6803 Statistics Theory +1405.6808 Combinatorics +1405.6813 Analysis of PDEs +1405.6815 Systems and Control +1405.6817 Software Engineering +1405.6818 Superconductivity +1405.6822 Other Computer Science +1405.6824 Social and Information Networks +1405.6827 Materials Science +1405.6829 Classical Analysis and ODEs +1405.6830 Instrumentation and Methods for Astrophysics +1405.6835 Superconductivity +1405.6838 Analysis of PDEs +1405.6841 History and Philosophy of Physics +1405.6845 Social and Information Networks +1405.6847 Experiment +1405.6849 Optics +1405.6852 Phenomenology +1405.6854 Quantum Algebra +1405.6856 Numerical Analysis +1405.6860 +1405.6861 Strongly Correlated Electrons +1405.6862 Instrumentation and Methods for Astrophysics +1405.6864 Analysis of PDEs +1405.6869 Superconductivity +1405.6871 Solar and Stellar Astrophysics +1405.6872 Algebraic Geometry +1405.6877 Dynamical Systems +1405.6880 Information Theory +1405.6883 Analysis of PDEs +1405.6886 Information Retrieval +1405.6887 Analysis of PDEs +1405.6890 +1405.6894 Combinatorics +1405.6895 High Energy Astrophysical Phenomena +1405.6899 Multiagent Systems +1405.6900 Methodology +1405.6902 Optimization and Control +1405.6903 Statistical Mechanics +1405.6908 Information Theory +1405.6912 Cryptography and Security +1405.6914 Computer Vision and Pattern Recognition +1405.6922 Learning +1405.6930 +1405.6933 Differential Geometry +1405.6938 Cosmology and Nongalactic Astrophysics +1405.6939 Logic in Computer Science +1405.6945 Sound +1405.6948 +1405.6953 Networking and Internet Architecture +1405.6955 Solar and Stellar Astrophysics +1405.6956 +1405.6958 Number Theory +1405.6963 Commutative Algebra +1405.6964 Analysis of PDEs +1405.6969 Chaotic Dynamics +1405.6970 Quantum Algebra +1405.6971 Accelerator Physics +1405.6973 Category Theory +1405.6974 Machine Learning +1405.6982 Number Theory +1405.6989 Physics and Society +1405.6994 Mesoscale and Nanoscale Physics +1405.6997 General Physics +1405.6998 +1405.7000 Mesoscale and Nanoscale Physics +1405.7002 Geophysics +1405.7005 Combinatorics +1405.7008 Dynamical Systems +1405.7010 Complex Variables +1405.7011 Discrete Mathematics +1405.7014 Information Theory +1405.7020 Discrete Mathematics +1405.7021 +1405.7024 Symplectic Geometry +1405.7028 Computational Complexity +1405.7032 Computer Vision and Pattern Recognition +1405.7033 Number Theory +cs/0603063 Symbolic Computation +hep-th/0406089 Theory +quant-ph/0205133 +0708.0795 Numerical Analysis +0809.3558 Representation Theory +0909.5175 Computational Complexity +0912.0577 Statistics Theory +1001.0137 Differential Geometry +1003.1220 Differential Geometry +1006.0754 Quantum Gases +1010.2114 +1104.5511 Cosmology and Nongalactic Astrophysics +1105.3848 Analysis of PDEs +1109.0523 Probability +1109.4071 Number Theory +1111.2182 Phenomenology +1111.2909 Algebraic Geometry +1112.2275 Data Structures and Algorithms +1201.3270 Analysis of PDEs +1201.4921 Probability +1202.1294 Theory +1202.3296 Probability +1202.4398 Probability +1202.4992 Algebraic Geometry +1204.3040 Logic in Computer Science +1204.3413 Data Structures and Algorithms +1204.4831 Algebraic Topology +1205.0092 Probability +1205.0843 Combinatorics +1206.1684 High Energy Astrophysical Phenomena +1206.2887 High Energy Astrophysical Phenomena +1206.5581 Logic +1209.2604 +1209.4652 Metric Geometry +1209.5056 Phenomenology +1210.8263 Phenomenology +1211.0305 Superconductivity +1211.0977 Phenomenology +1301.0002 +1301.5838 Probability +1302.2952 Analysis of PDEs +1302.4562 Quantum Algebra +1302.7024 Probability +1303.3011 Phenomenology +1304.0702 Classical Analysis and ODEs +1304.0949 Combinatorics +1304.4316 Probability +1305.1591 General Mathematics +1305.2382 High Energy Astrophysical Phenomena +1305.2527 Mesoscale and Nanoscale Physics +1305.3361 Mesoscale and Nanoscale Physics +1305.4976 Information Theory +1305.5048 Solar and Stellar Astrophysics +1305.5370 Mesoscale and Nanoscale Physics +1306.0669 +1306.4215 +1306.5288 Social and Information Networks +1306.5936 Solar and Stellar Astrophysics +1306.6238 Probability +1307.1031 General Mathematics +1307.1531 Mesoscale and Nanoscale Physics +1307.4066 Cosmology and Nongalactic Astrophysics +1307.4200 Soft Condensed Matter +1307.4278 Soft Condensed Matter +1307.6786 Quantitative Methods +1308.1065 +1308.2577 Applications +1308.2601 Mesoscale and Nanoscale Physics +1308.4438 Algebraic Geometry +1308.4806 Instrumentation and Detectors +1309.0802 +1309.2279 Instrumentation and Detectors +1309.4040 Optics +1309.6924 +1310.0446 Physics and Society +1310.0452 Mesoscale and Nanoscale Physics +1310.0659 Superconductivity +1310.2246 Quantum Gases +1310.3737 Fluid Dynamics +1310.4023 Social and Information Networks +1310.4078 +1310.4373 Phenomenology +1310.7516 Soft Condensed Matter +1310.7959 Quantum Gases +1310.8529 Mesoscale and Nanoscale Physics +1311.1057 Differential Geometry +1311.1631 Lattice +1311.1812 Dynamical Systems +1311.3124 +1311.3420 Superconductivity +1311.5944 Number Theory +1311.6287 +1311.7073 +1311.7370 Statistical Mechanics +1312.0820 Phenomenology +1312.1141 Combinatorics +1312.1291 Cosmology and Nongalactic Astrophysics +1312.1677 Theory +1312.1914 Lattice +1312.2434 Solar and Stellar Astrophysics +1312.3954 Statistical Mechanics +1312.3979 Software Engineering +1312.5641 Information Theory +1312.5863 +1312.6075 +1312.6207 Metric Geometry +1312.7533 Spectral Theory +1401.1357 Statistical Mechanics +1401.2180 +1401.5381 +1401.7124 Statistical Mechanics +1401.7405 Mesoscale and Nanoscale Physics +1401.8183 Phenomenology +1402.0936 Computer Vision and Pattern Recognition +1402.0977 Cosmology and Nongalactic Astrophysics +1402.1075 Solar and Stellar Astrophysics +1402.3128 Atomic Physics +1402.4327 Logic in Computer Science +1402.4457 Solar and Stellar Astrophysics +1403.0059 History and Philosophy of Physics +1403.1792 +1403.2685 General Physics +1403.3196 Information Theory +1403.3254 Group Theory +1403.3792 Populations and Evolution +1403.5252 Lattice +1403.5815 Social and Information Networks +1403.6258 Atmospheric and Oceanic Physics +1403.6367 Logic in Computer Science +1403.6540 Functional Analysis +1403.6629 Fluid Dynamics +1403.6754 Fluid Dynamics +1403.6796 Lattice +1403.6822 Learning +1403.6823 Human-Computer Interaction +1403.6827 Cosmology and Nongalactic Astrophysics +1403.6835 Cosmology and Nongalactic Astrophysics +1403.6838 Social and Information Networks +1403.6839 Quantitative Methods +1403.6842 Quantum Gases +1403.6843 Chaotic Dynamics +1403.6847 Phenomenology +1403.6856 Superconductivity +1403.6858 Superconductivity +1403.6861 Instrumentation and Methods for Astrophysics +1403.6863 Learning +1403.6865 Software Engineering +1403.6866 Dynamical Systems +1403.6877 +1403.6881 Theory +1403.6882 Optimization and Control +1403.6883 Materials Science +1403.6884 Group Theory +1403.6892 +1403.6894 Analysis of PDEs +1403.6896 Instrumentation and Methods for Astrophysics +1403.6900 Analysis of PDEs +1403.6901 Sound +1403.6905 General Topology +1403.6907 Metric Geometry +1403.6910 +1403.6913 Functional Analysis +1403.6916 Mesoscale and Nanoscale Physics +1403.6918 Distributed, Parallel, and Cluster Computing +1403.6919 Other Computer Science +1403.6921 Analysis of PDEs +1403.6923 Networking and Internet Architecture +1403.6924 Emerging Technologies +1403.6926 History and Overview +1403.6930 Algebraic Geometry +1403.6931 Information Theory +1403.6933 Combinatorics +1403.6938 +1403.6941 Phenomenology +1403.6946 Robotics +1403.6949 Mesoscale and Nanoscale Physics +1403.6950 Computer Vision and Pattern Recognition +1403.6951 Probability +1403.6952 Optimization and Control +1403.6953 Systems and Control +1403.6955 Cryptography and Security +1403.6956 Functional Analysis +1403.6957 Discrete Mathematics +1403.6971 Probability +1403.6975 Number Theory +1403.6978 Mesoscale and Nanoscale Physics +1403.6988 Metric Geometry +1403.6990 Probability +1403.6996 Numerical Analysis +1403.6997 Programming Languages +1403.7001 Methodology +1403.7002 Optics +1403.7006 Mesoscale and Nanoscale Physics +1403.7008 Experiment +1403.7016 Theory +1403.7018 +1403.7021 General Finance +1403.7023 Statistics Theory +1403.7024 Discrete Mathematics +1403.7025 +1403.7026 Combinatorics +1403.7029 Differential Geometry +1403.7030 Other Condensed Matter +1403.7034 High Energy Astrophysical Phenomena +1403.7035 Mesoscale and Nanoscale Physics +1403.7044 Software Engineering +1403.7051 Experiment +1403.7052 Numerical Analysis +1403.7054 +1403.7055 Algebraic Geometry +1403.7057 Learning +1403.7061 Combinatorics +1403.7063 Statistics Theory +1403.7064 Populations and Evolution +1403.7067 Number Theory +1403.7068 Statistics Theory +1403.7072 Quantitative Methods +1403.7075 Astrophysics of Galaxies +1403.7076 Combinatorics +1403.7077 Quantum Algebra +1403.7079 Number Theory +1403.7087 Learning +1403.7088 Cryptography and Security +1403.7096 Quantitative Methods +1403.7099 Quantum Algebra +1403.7100 Learning +1403.7104 Quantitative Methods +1403.7105 Quantitative Methods +1403.7106 Analysis of PDEs +1403.7107 Differential Geometry +1403.7108 Number Theory +1403.7109 Earth and Planetary Astrophysics +1403.7111 Operator Algebras +1403.7115 Networking and Internet Architecture +1403.7119 +1403.7120 Spectral Theory +1403.7122 Populations and Evolution +1403.7126 Number Theory +1403.7127 Exactly Solvable and Integrable Systems +1403.7130 Optics +1403.7133 Differential Geometry +1403.7134 Methodology +1403.7135 Optimization and Control +1403.7145 Fluid Dynamics +1403.7150 Probability +1403.7152 Multiagent Systems +1403.7156 Number Theory +1403.7159 Rings and Algebras +1403.7161 Tissues and Organs +1403.7162 Information Retrieval +1403.7178 Neural and Evolutionary Computing +1403.7179 General Finance +1403.7183 +1403.7187 Complex Variables +1403.7188 +1403.7190 Rings and Algebras +1403.7192 Networking and Internet Architecture +cond-mat/0603590 Other Condensed Matter +math/0703003 Representation Theory +0704.2534 Analysis of PDEs +0807.0314 Dynamical Systems +0807.3489 Dynamical Systems +0810.5205 Combinatorics +0812.0182 Group Theory +0812.2276 Materials Science +0901.3009 Dynamical Systems +0903.0753 Metric Geometry +0910.0746 Dynamical Systems +0910.0752 Dynamical Systems +1003.1074 +1003.5742 Logic +1010.5442 Number Theory +1012.0080 Number Theory +1104.2409 Discrete Mathematics +1104.4207 Logic +1106.5618 Number Theory +1106.5984 Instrumentation and Methods for Astrophysics +1107.1866 Distributed, Parallel, and Cluster Computing +1107.2453 Instrumentation and Methods for Astrophysics +1108.1815 Number Theory +1108.2515 Functional Analysis +1108.3805 Number Theory +1109.2225 Group Theory +1109.4582 Analysis of PDEs +1112.5443 Cosmology and Nongalactic Astrophysics +1201.1114 Logic +1202.4104 Probability +1204.4897 Probability +1204.5940 Atomic Physics +1204.6530 Combinatorics +1206.2284 Instrumentation and Methods for Astrophysics +1208.3783 Probability +1208.5920 +1210.5739 Optimization and Control +1210.6402 Mesoscale and Nanoscale Physics +1211.0510 Dynamical Systems +1212.1086 +1212.2847 Soft Condensed Matter +1302.0581 Information Theory +1302.6626 High Energy Astrophysical Phenomena +1303.2734 Phenomenology +1303.3432 +1303.5382 Commutative Algebra +1303.5460 Instrumentation and Methods for Astrophysics +1303.5593 +1304.0874 Number Theory +1304.2806 +1304.2986 Statistics Theory +1304.6564 Instrumentation and Methods for Astrophysics +1304.6712 Cosmology and Nongalactic Astrophysics +1305.2161 Theory +1305.3876 Computers and Society +1305.4049 Lattice +1305.4598 Differential Geometry +1305.5204 Strongly Correlated Electrons +1305.6975 Quantitative Methods +1306.0245 Materials Science +1306.1853 Cosmology and Nongalactic Astrophysics +1306.2422 Systems and Control +1306.2574 +1306.6931 Phenomenology +1307.4715 Instrumentation and Methods for Astrophysics +1307.5304 Physics and Society +1307.6346 Experiment +1308.0078 Atomic Physics +1308.1935 Atomic Physics +1308.4831 +1308.5015 Social and Information Networks +1308.5140 Populations and Evolution +1308.5622 Geophysics +1309.1979 Phenomenology +1309.4090 Solar and Stellar Astrophysics +1309.5959 Solar and Stellar Astrophysics +1309.5962 Solar and Stellar Astrophysics +1309.6490 Strongly Correlated Electrons +1309.6639 Superconductivity +1309.6724 Biological Physics +1309.7258 Computer Science and Game Theory +1309.7893 +1310.1660 Atomic Physics +1310.3372 Disordered Systems and Neural Networks +1310.3608 Phenomenology +1310.4307 Plasma Physics +1310.4461 Applications +1310.4860 +1310.6725 Theory +1310.7452 Computer Science and Game Theory +1311.0665 Analysis of PDEs +1311.0764 Combinatorics +1311.1045 Materials Science +1311.1396 Analysis of PDEs +1311.2063 Superconductivity +1311.4780 Machine Learning +1311.5689 Mesoscale and Nanoscale Physics +1311.6738 Phenomenology +1311.7521 +1311.7619 +1312.1658 Probability +1312.1800 Soft Condensed Matter +1312.2123 Phenomenology +1312.2511 Fluid Dynamics +1312.2665 +1312.2672 +1312.2776 Phenomenology +1312.3028 Populations and Evolution +1312.6587 High Energy Astrophysical Phenomena +1312.7389 Phenomenology +1401.0276 Phenomenology +1401.0642 Optics +1401.0711 Information Theory +1401.1200 Instrumentation and Methods for Astrophysics +1401.2964 Phenomenology +1401.3003 High Energy Astrophysical Phenomena +1401.3641 Phenomenology +1401.5545 +1401.5943 Analysis of PDEs +1401.6317 Cryptography and Security +1401.8114 +1402.2869 Spectral Theory +1402.4843 Programming Languages +1403.1035 Number Theory +1403.2430 Astrophysics of Galaxies +1403.2702 Information Theory +1403.2758 High Energy Astrophysical Phenomena +1403.2928 Number Theory +1403.3169 Differential Geometry +1403.3370 Combinatorics +1403.3431 Computational Complexity +1403.4425 Experiment +1403.4518 Geometric Topology +1403.4592 Theory +1403.4787 Materials Science +1403.4888 Rings and Algebras +1403.5032 Functional Analysis +1403.5081 Formal Languages and Automata Theory +1403.5094 Mesoscale and Nanoscale Physics +1403.5155 Geometric Topology +1403.5160 +1403.5179 Statistical Finance +1403.5259 Plasma Physics +1403.5261 Cosmology and Nongalactic Astrophysics +1403.5275 Numerical Analysis +1403.5279 Materials Science +1403.5282 Quantum Algebra +1403.5286 Probability +1403.5287 Learning +1403.5288 Analysis of PDEs +1403.5290 Systems and Control +1403.5299 Computers and Society +1403.5302 Pricing of Securities +1403.5304 Algebraic Geometry +1403.5305 Accelerator Physics +1403.5309 Computational Finance +1403.5313 Operator Algebras +1403.5315 Systems and Control +1403.5317 Optimization and Control +1403.5321 Analysis of PDEs +1403.5327 Combinatorics +1403.5328 Optimization and Control +1403.5329 Strongly Correlated Electrons +1403.5330 Information Theory +1403.5331 Information Theory +1403.5334 Solar and Stellar Astrophysics +1403.5336 Theory +1403.5339 Optimization and Control +1403.5342 Biological Physics +1403.5345 Neural and Evolutionary Computing +1403.5346 Algebraic Topology +1403.5350 Computational Geometry +1403.5351 Functional Analysis +1403.5353 Classical Analysis and ODEs +1403.5359 Number Theory +1403.5361 Data Analysis, Statistics and Probability +1403.5365 +1403.5366 +1403.5370 Machine Learning +1403.5372 High Energy Astrophysical Phenomena +1403.5373 Materials Science +1403.5374 Optimization and Control +1403.5375 Materials Science +1403.5379 Algebraic Geometry +1403.5381 Databases +1403.5386 Strongly Correlated Electrons +1403.5387 Soft Condensed Matter +1403.5388 Analysis of PDEs +1403.5389 Combinatorics +1403.5390 Materials Science +1403.5392 Distributed, Parallel, and Cluster Computing +1403.5394 Probability +1403.5398 Software Engineering +1403.5399 Probability +1403.5401 Computers and Society +1403.5402 Pricing of Securities +1403.5409 Medical Physics +1403.5412 Other Condensed Matter +1403.5414 Genomics +1403.5417 Applications +1403.5423 Optics +1403.5425 Statistical Mechanics +1403.5427 Probability +1403.5428 Combinatorics +1403.5430 Combinatorics +1403.5431 Theory +1403.5432 Software Engineering +1403.5437 Functional Analysis +1403.5446 Group Theory +1403.5447 Optimization and Control +1403.5450 Materials Science +1403.5453 Functional Analysis +1403.5456 Probability +1403.5457 Optics +1403.5459 Statistics Theory +1403.5468 Computer Science and Game Theory +1403.5473 Computer Vision and Pattern Recognition +1403.5475 Computer Vision and Pattern Recognition +1403.5477 Biomolecules +1403.5483 Statistics Theory +1403.5488 Neural and Evolutionary Computing +1403.5489 Functional Analysis +1403.5492 Soft Condensed Matter +1403.5493 Algebraic Topology +1403.5505 +1403.5508 Artificial Intelligence +1403.5510 Number Theory +1403.5515 Statistical Mechanics +1403.5519 Populations and Evolution +1403.5534 Applications +1403.5536 Computation +1403.5537 Computation +1403.5538 Algebraic Geometry +1403.5542 Atomic Physics +1403.5543 Probability +1403.5544 Computational Complexity +1403.5545 Complex Variables +1403.5546 Combinatorics +math-ph/0509056 +math/0511581 Dynamical Systems +math/0512026 Dynamical Systems +math/0604162 Dynamical Systems +quant-ph/0505165 +0712.0829 Other Condensed Matter +0806.4596 Materials Science +0806.4653 Soft Condensed Matter +0807.5109 Materials Science +0808.1533 Differential Geometry +0808.3833 Number Theory +0812.1277 Statistical Mechanics +0906.3494 Dynamical Systems +1003.0237 Quantum Algebra +1006.4388 Statistical Mechanics +1009.3486 +1009.5345 +1101.0672 +1101.2942 +1106.3708 Optimization and Control +1106.5130 Information Theory +1106.5454 Differential Geometry +1107.0402 Algebraic Geometry +1110.2804 Quantitative Methods +1110.3204 Machine Learning +1111.7318 Differential Geometry +1202.2472 +1203.2315 Multiagent Systems +1205.3248 Complex Variables +1205.3251 Classical Analysis and ODEs +1206.2333 Portfolio Management +1206.5407 +1208.5224 Spectral Theory +1209.0909 Operator Algebras +1209.2110 +1209.5834 +1210.3242 Optics +1210.7341 Information Theory +1212.0502 +1212.5661 Analysis of PDEs +1212.6042 Geometric Topology +1301.4212 +1301.6033 Classical Analysis and ODEs +1301.6799 Cryptography and Security +1301.6818 High Energy Astrophysical Phenomena +1302.0646 Fluid Dynamics +1302.3092 Optimization and Control +1302.3990 Soft Condensed Matter +1302.5364 +1302.5365 +1303.5179 Soft Condensed Matter +1303.5845 Functional Analysis +1303.7173 Optimization and Control +1304.3518 Physics and Society +1304.4929 Pricing of Securities +1304.6248 Phenomenology +1304.7014 Analysis of PDEs +1305.2650 Classical Analysis and ODEs +1305.4088 +1305.4873 Materials Science +1305.5263 Optics +1305.7419 Representation Theory +1306.1177 +1307.1646 Soft Condensed Matter +1307.1717 Number Theory +1307.3922 +1307.4261 Number Theory +1307.8437 Phenomenology +1308.0225 +1308.4615 +1308.6809 Optimization and Control +1310.3640 Quantum Gases +1310.5242 Group Theory +1310.6218 Phenomenology +1310.8134 Cosmology and Nongalactic Astrophysics +1311.1339 Information Theory +1311.1621 +1311.2203 Probability +1311.3983 Astrophysics of Galaxies +1312.2146 Soft Condensed Matter +1312.3562 Atomic Physics +1312.4129 Quantum Gases +1312.4930 Geophysics +1312.5921 Machine Learning +1312.6399 Experiment +1312.6404 +1312.6496 Algebraic Geometry +1312.7089 Geometric Topology +1312.7134 Phenomenology +1312.7196 +1401.1214 Cosmology and Nongalactic Astrophysics +1401.1557 Group Theory +1401.1609 Analysis of PDEs +1401.1777 Algebraic Geometry +1401.3021 Phenomenology +1401.3251 Combinatorics +1401.3979 Soft Condensed Matter +1401.4847 Analysis of PDEs +1401.5557 Strongly Correlated Electrons +1401.6197 +1401.7154 High Energy Astrophysical Phenomena +1401.7608 Quantum Gases +1402.4855 Computational Geometry +1402.5138 Computational Geometry +1402.6651 Experiment +1402.7209 Materials Science +1403.0467 Phenomenology +1403.1452 Methodology +1403.1692 Methodology +1403.2136 Genomics +1403.4198 Optimization and Control +1403.4600 Theory +1403.7262 Mesoscale and Nanoscale Physics +1403.7754 +1404.1936 +1404.2009 Quantum Algebra +1404.3012 Computer Vision and Pattern Recognition +1404.4583 +1404.4946 Experiment +1404.6644 +1404.7011 +1404.7225 Theory +1405.0050 +1405.0272 Phenomenology +1405.0297 Probability +1405.0461 +1405.0710 +1405.0886 Mesoscale and Nanoscale Physics +1405.0961 Artificial Intelligence +1405.1289 Lattice +1405.1378 +1405.1381 Optics +1405.1732 Theory +1405.1991 +1405.2111 Optics +1405.2335 Astrophysics of Galaxies +1405.2360 Materials Science +1405.2595 Optics +1405.2851 Optics +1405.3839 Biological Physics +1405.4193 Phenomenology +1405.4291 Theory +1405.4668 Quantum Algebra +1405.5933 Fluid Dynamics +1405.6991 Mesoscale and Nanoscale Physics +1405.7225 Experiment +1405.7374 Cosmology and Nongalactic Astrophysics +1405.7775 Cosmology and Nongalactic Astrophysics +1406.0021 Fluid Dynamics +1406.0205 Theory +1406.0301 Space Physics +1406.0847 Statistical Mechanics +1406.1338 +1406.1408 Mesoscale and Nanoscale Physics +1406.1416 Mesoscale and Nanoscale Physics +1406.1551 Theory +1406.1757 Phenomenology +1406.2456 +1406.2498 Materials Science +1406.2551 Phenomenology +1406.2980 Experiment +1406.3650 Machine Learning +1406.3977 Solar and Stellar Astrophysics +1406.4357 Cosmology and Nongalactic Astrophysics +1406.4470 Number Theory +1406.6213 Cosmology and Nongalactic Astrophysics +1406.6225 Materials Science +1406.6289 Number Theory +1406.6466 +1406.7125 Mesoscale and Nanoscale Physics +1406.7499 Representation Theory +1406.7865 Machine Learning +1407.1043 Phenomenology +1407.1363 Materials Science +1407.1734 Materials Science +1407.1838 +1407.1938 Mesoscale and Nanoscale Physics +1407.3141 Phenomenology +1407.3772 Lattice +1407.4025 Instrumentation and Methods for Astrophysics +1407.4055 +1407.4123 Strongly Correlated Electrons +1407.4124 Strongly Correlated Electrons +1407.4251 Disordered Systems and Neural Networks +1407.4319 Mesoscale and Nanoscale Physics +1407.4502 Chemical Physics +1407.4722 Phenomenology +1407.4911 Strongly Correlated Electrons +1407.5045 Optics +1407.5792 Probability +1407.6191 Statistical Mechanics +1407.6389 +1407.6837 Cosmology and Nongalactic Astrophysics +1407.6874 Cosmology and Nongalactic Astrophysics +1407.7156 Data Structures and Algorithms +1407.7536 High Energy Astrophysical Phenomena +1407.7694 Materials Science +1407.7730 Theory +1407.7842 +1407.7984 +1407.8011 Cosmology and Nongalactic Astrophysics +1407.8236 Phenomenology +1407.8350 Physics and Society +1408.0130 Classical Analysis and ODEs +1408.0609 Optics +1408.0638 Statistical Mechanics +1408.0769 Quantum Gases +1408.0827 Phenomenology +1408.1120 Phenomenology +1408.1221 Materials Science +1408.1273 +1408.1784 Disordered Systems and Neural Networks +1408.1929 Metric Geometry +1408.2229 Theory +1408.2261 Strongly Correlated Electrons +1408.2498 Phenomenology +1408.2515 Instrumentation and Methods for Astrophysics +1408.2652 +1408.2670 Mesoscale and Nanoscale Physics +1408.2820 Phenomenology +1408.3220 Probability +1408.3292 Combinatorics +1408.3655 Numerical Analysis +1408.4297 Statistical Mechanics +1408.4414 Differential Geometry +1408.4999 Phenomenology +1408.5506 Theory +1408.5877 Phenomenology +1408.6059 Mesoscale and Nanoscale Physics +1408.6356 Astrophysics of Galaxies +1408.6804 Learning +1409.2534 Mesoscale and Nanoscale Physics +1409.2654 Solar and Stellar Astrophysics +1409.2803 Solar and Stellar Astrophysics +1409.2900 Cosmology and Nongalactic Astrophysics +1409.3089 Theory +1409.3099 Superconductivity +1409.3227 Phenomenology +1409.3229 Astrophysics of Galaxies +1409.3406 High Energy Astrophysical Phenomena +1409.3421 Earth and Planetary Astrophysics +1409.3489 Phenomenology +1409.3536 Systems and Control +1409.3739 High Energy Astrophysical Phenomena +1409.3750 Other Condensed Matter +1409.3849 Cosmology and Nongalactic Astrophysics +1409.3894 Space Physics +1409.4218 Astrophysics of Galaxies +1409.4314 +1409.4552 High Energy Astrophysical Phenomena +1409.4592 Earth and Planetary Astrophysics +1409.4658 Solar and Stellar Astrophysics +1409.4975 Astrophysics of Galaxies +1409.5792 Astrophysics of Galaxies +1409.5836 Astrophysics of Galaxies +1409.6021 Combinatorics +1409.6071 Geometric Topology +1409.6098 Astrophysics of Galaxies +1409.6121 Solar and Stellar Astrophysics +1409.6256 High Energy Astrophysical Phenomena +1409.6705 Differential Geometry +1409.6867 +1409.6911 Computer Vision and Pattern Recognition +1409.7083 Astrophysics of Galaxies +1409.7547 Optimization and Control +1409.8111 Astrophysics of Galaxies +1409.8645 Mesoscale and Nanoscale Physics +1410.0042 Instrumentation and Detectors +1410.0119 Solar and Stellar Astrophysics +1410.0259 Phenomenology +1410.0410 Phenomenology +1410.0814 Theory +1410.1162 Instrumentation and Methods for Astrophysics +1410.1500 High Energy Astrophysical Phenomena +1410.3599 Solar and Stellar Astrophysics +1410.4729 Soft Condensed Matter +1410.5572 Soft Condensed Matter +1410.5582 +1410.5643 Astrophysics of Galaxies +1410.5707 Strongly Correlated Electrons +1410.5963 Earth and Planetary Astrophysics +1410.6415 Astrophysics of Galaxies +1410.7153 Quantum Gases +1410.7616 Methodology +1410.8102 Earth and Planetary Astrophysics +1411.0295 Populations and Evolution +1411.1004 Fluid Dynamics +1411.1805 Statistics Theory +1411.1860 Earth and Planetary Astrophysics +1411.2089 Numerical Analysis +1411.2448 Materials Science +1411.2713 Phenomenology +1411.2800 Artificial Intelligence +1411.3093 Earth and Planetary Astrophysics +1411.4094 Atomic Physics +1411.4114 Computation and Language +1411.4124 Quantum Algebra +1411.4375 +1411.4448 High Energy Astrophysical Phenomena +1411.4503 Learning +1411.4607 +1411.4652 Phenomenology +1411.4653 Solar and Stellar Astrophysics +1411.4660 Probability +1411.4661 Classical Analysis and ODEs +1411.4663 Optimization and Control +1411.4669 Symplectic Geometry +1411.4670 Computer Vision and Pattern Recognition +1411.4671 Solar and Stellar Astrophysics +1411.4675 Phenomenology +1411.4677 Materials Science +1411.4678 Analysis of PDEs +1411.4679 Computational Engineering, Finance, and Science +1411.4680 Classical Analysis and ODEs +1411.4681 Statistics Theory +1411.4684 Dynamical Systems +1411.4687 Optimization and Control +1411.4688 Statistics Theory +1411.4692 Data Structures and Algorithms +1411.4695 Systems and Control +1411.4696 Cryptography and Security +1411.4697 Mesoscale and Nanoscale Physics +1411.4701 Computer Vision and Pattern Recognition +1411.4702 Neurons and Cognition +1411.4706 Optics +1411.4710 Optics +1411.4715 Applications +1411.4716 +1411.4719 Analysis of PDEs +1411.4728 Number Theory +1411.4733 Performance +1411.4736 Mesoscale and Nanoscale Physics +1411.4739 Physics and Society +1411.4740 Optimization and Control +1411.4741 Differential Geometry +1411.4742 Solar and Stellar Astrophysics +1411.4744 Experiment +1411.4748 Soft Condensed Matter +1411.4756 Physics and Society +1411.4762 Information Theory +1411.4763 Applications +1411.4765 Dynamical Systems +1411.4772 Differential Geometry +1411.4776 Optics +1411.4779 Differential Geometry +1411.4789 Analysis of PDEs +1411.4790 Multimedia +1411.4799 Complex Variables +1411.4801 Number Theory +1411.4803 Geometric Topology +1411.4804 Lattice +1411.4807 Instrumentation and Methods for Astrophysics +1411.4809 Methodology +1411.4813 Cryptography and Security +1411.4817 Number Theory +1411.4818 Classical Analysis and ODEs +1411.4820 Logic +1411.4822 Experiment +1411.4824 Other Statistics +1411.4826 Solar and Stellar Astrophysics +1411.4831 Quantum Gases +1411.4833 Materials Science +1411.4834 Machine Learning +1411.4836 Information Theory +1411.4838 Mesoscale and Nanoscale Physics +1411.4845 Number Theory +1411.4846 Applications +1411.4850 Combinatorics +1411.4857 Logic +1411.4860 Rings and Algebras +1411.4861 Operator Algebras +1411.4863 Materials Science +1411.4864 Astrophysics of Galaxies +1411.4865 Experiment +1411.4867 Physics and Society +1411.4868 Materials Science +1411.4869 History and Overview +1411.4870 Optics +1411.4871 +1411.4872 +1411.4877 Probability +1411.4879 Lattice +1411.4880 Dynamical Systems +1411.4882 Fluid Dynamics +1411.4884 Optimization and Control +1411.4890 Sound +1411.4891 Soft Condensed Matter +1411.4892 Complex Variables +1411.4897 Mesoscale and Nanoscale Physics +1411.4898 Applications +1411.4899 Methodology +1411.4900 Geophysics +1411.4902 Astrophysics of Galaxies +1411.4903 Optimization and Control +1411.4907 Probability +1411.4908 Other Quantitative Biology +1411.4910 Analysis of PDEs +1411.4916 Computer Science and Game Theory +1411.4918 Theory +1411.4919 Solar and Stellar Astrophysics +1411.4922 Combinatorics +1411.4923 Analysis of PDEs +1411.4925 Artificial Intelligence +1411.4926 Astrophysics of Galaxies +1411.4927 Astrophysics of Galaxies +1411.4928 Astrophysics of Galaxies +1411.4930 Astrophysics of Galaxies +1411.4931 Astrophysics of Galaxies +1411.4932 Astrophysics of Galaxies +1411.4934 Astrophysics of Galaxies +1411.4935 Astrophysics of Galaxies +1411.4937 Astrophysics of Galaxies +1411.4939 Astrophysics of Galaxies +1411.4941 Numerical Analysis +1411.4942 Data Structures and Algorithms +1411.4944 Statistics Theory +1411.4949 Multiagent Systems +1411.4950 Analysis of PDEs +1411.4956 Computers and Society +1411.4957 Combinatorics +1411.4958 Computer Vision and Pattern Recognition +1411.4960 Computation and Language +1411.4961 Analysis of PDEs +1411.4963 Experiment +1411.4964 Experiment +1411.4966 Data Analysis, Statistics and Probability +1411.4970 Statistical Finance +1411.4971 +1411.4972 Information Retrieval +1411.4974 Numerical Analysis +1411.4976 Dynamical Systems +1411.4978 Quantitative Methods +1411.4980 Neurons and Cognition +1411.4984 General Mathematics +1411.4985 Differential Geometry +1411.4991 Algebraic Topology +1411.4996 +1411.5006 Atomic Physics +1411.5007 Artificial Intelligence +1411.5010 Machine Learning +1411.5011 Algebraic Geometry +math-ph/0203013 +0707.0698 Rings and Algebras +0707.1104 Functional Analysis +0711.2495 Functional Analysis +0712.3464 Functional Analysis +0808.4119 General Topology +0901.0075 Geometric Topology +0908.3628 Algebraic Geometry +0911.0148 Theory +0911.3194 Portfolio Management +0912.1744 Theory +1004.0531 Materials Science +1005.5135 Number Theory +1007.4980 Functional Analysis +1008.0318 Geometric Topology +1009.3334 +1010.2377 Algebraic Geometry +1011.2190 Functional Analysis +1012.1960 +1101.0005 Theory +1101.3138 Group Theory +1103.5078 Formal Languages and Automata Theory +1105.3157 Logic +1105.6190 Formal Languages and Automata Theory +1107.1896 Group Theory +1107.3441 Cryptography and Security +1108.5748 Geometric Topology +1109.1646 Information Theory +1109.6702 Combinatorics +1110.2336 Quantum Gases +1110.6388 Geometric Topology +1111.0415 Algebraic Geometry +1111.5408 Chaotic Dynamics +1111.6664 Information Theory +1112.4071 Probability +1112.4409 Probability +1112.4978 Probability +1201.1315 Number Theory +1201.2500 Algebraic Geometry +1203.4023 Probability +1204.0206 Probability +1204.4884 Algebraic Geometry +1205.1231 Functional Analysis +1205.4126 Information Theory +1205.4518 Analysis of PDEs +1205.4978 Superconductivity +1206.2481 +1206.2613 Theory +1206.2704 Algebraic Geometry +1206.2917 +1207.1044 Functional Analysis +1207.1239 Algebraic Geometry +1207.7113 Functional Analysis +1208.2892 Methodology +1208.5088 Probability +1209.0940 Logic in Computer Science +1209.1631 Data Analysis, Statistics and Probability +1210.1070 Analysis of PDEs +1210.5634 Rings and Algebras +1211.1514 Analysis of PDEs +1211.2208 Cosmology and Nongalactic Astrophysics +1211.2551 Representation Theory +1211.2764 General Topology +1211.2869 Probability +1211.5597 +1211.6698 Materials Science +1212.2110 +1212.4265 Classical Analysis and ODEs +1212.4978 Number Theory +1212.5778 Operator Algebras +1301.0072 General Finance +1301.2917 Methodology +1301.3783 Representation Theory +1301.5050 General Topology +1302.0914 Databases +1302.1115 +1302.2294 Complex Variables +1302.5067 Number Theory +1302.5236 Combinatorics +1302.5534 Theory +1303.0481 Information Retrieval +1303.1690 Risk Management +1303.1801 Metric Geometry +1303.2651 Learning +1303.4552 Materials Science +1303.5379 Phenomenology +1303.6197 Instrumentation and Detectors +1304.0491 Phenomenology +1304.3845 Information Retrieval +1304.4756 Mesoscale and Nanoscale Physics +1304.5032 Superconductivity +1304.6609 History and Overview +1304.7004 Phenomenology +1304.7190 Probability +1305.2521 Functional Analysis +1305.2889 Robotics +1305.4381 Functional Analysis +1305.4730 +1305.5319 Populations and Evolution +1305.5908 Quantum Gases +1306.1968 Materials Science +1306.2494 Optimization and Control +1306.5069 Probability +1306.6045 Biological Physics +1307.0949 Atomic Physics +1307.1839 Rings and Algebras +1307.1967 Earth and Planetary Astrophysics +1307.2147 Strongly Correlated Electrons +1307.3040 Artificial Intelligence +1307.3282 Computation +1307.4370 Instrumentation and Methods for Astrophysics +1307.4955 Statistical Mechanics +1307.6427 Probability +1307.7200 Optimization and Control +1307.7281 Programming Languages +1307.7379 +1308.0477 +1308.1304 Quantum Gases +1308.1820 Data Structures and Algorithms +1308.1892 Logic +1308.2002 Networking and Internet Architecture +1308.2599 Data Structures and Algorithms +1308.2800 Algebraic Geometry +1308.3061 Phenomenology +1308.3892 Physics and Society +1308.4453 +1308.4975 Quantum Gases +1308.5574 Mesoscale and Nanoscale Physics +1309.1028 +1309.1633 Chemical Physics +1309.2691 Statistical Mechanics +1309.2808 Mesoscale and Nanoscale Physics +1309.3715 Group Theory +1309.3970 Phenomenology +1309.4422 Probability +1309.5118 Populations and Evolution +1309.6213 Classical Analysis and ODEs +1309.6241 Rings and Algebras +1309.6971 Cosmology and Nongalactic Astrophysics +1310.0355 Mesoscale and Nanoscale Physics +1310.1021 Group Theory +1310.1157 Materials Science +1310.1642 Strongly Correlated Electrons +1310.3707 Mesoscale and Nanoscale Physics +1310.5186 Cosmology and Nongalactic Astrophysics +1310.5763 Optimization and Control +1310.6482 Combinatorics +1310.6851 Commutative Algebra +1310.7810 Strongly Correlated Electrons +1310.7956 Optics +1311.0182 Cosmology and Nongalactic Astrophysics +1311.0537 +1311.2033 Superconductivity +1311.2143 Quantum Gases +1311.2381 Quantum Gases +1311.2990 Fluid Dynamics +1311.4412 +1311.4454 Theory +1311.4555 Machine Learning +1311.5128 Disordered Systems and Neural Networks +1311.5799 Formal Languages and Automata Theory +1311.5971 Dynamical Systems +1311.6100 Phenomenology +1311.6572 Materials Science +1311.7544 Analysis of PDEs +1312.0400 +1312.0644 Superconductivity +1312.1032 Lattice +1312.1253 Commutative Algebra +1312.1742 Functional Analysis +1312.1981 Materials Science +1312.2042 Materials Science +1312.2169 Information Theory +1312.2873 Computational Geometry +1312.2881 Phenomenology +1312.4091 Information Theory +1312.4128 +1312.4147 Commutative Algebra +1312.4165 Strongly Correlated Electrons +1312.4199 Chaotic Dynamics +1312.4558 Strongly Correlated Electrons +1312.5068 Optics +1312.5161 Lattice +1312.5932 Logic +1312.6392 Strongly Correlated Electrons +1312.7576 Materials Science +1401.0373 Materials Science +1401.0526 Strongly Correlated Electrons +1401.0572 Atomic Physics +1401.1160 K-Theory and Homology +1401.1788 Strongly Correlated Electrons +1401.1791 Phenomenology +1401.2679 Dynamical Systems +1401.3094 +1401.3357 Systems and Control +1401.3650 +1401.4291 +1401.4361 Theory +1401.5355 Phenomenology +1401.5357 Earth and Planetary Astrophysics +1401.5421 Theory +1401.5997 Soft Condensed Matter +1401.6888 +1401.7000 Functional Analysis +1401.7097 Algebraic Geometry +1401.7582 Operator Algebras +1401.7965 Solar and Stellar Astrophysics +1402.0523 Solar and Stellar Astrophysics +1402.0553 Theory +1402.3265 Atomic Physics +1402.3667 Strongly Correlated Electrons +1402.3732 Representation Theory +1402.4429 Astrophysics of Galaxies +1402.5032 Phenomenology +1402.5407 Numerical Analysis +1402.5578 +1402.6399 Combinatorics +1402.6722 Differential Geometry +1402.6733 Combinatorics +1403.0084 Mesoscale and Nanoscale Physics +1403.0278 Classical Analysis and ODEs +1403.1917 +1403.2317 Algebraic Geometry +1403.2545 +1403.3031 Statistics Theory +1403.4546 General Physics +1403.4920 Materials Science +1403.4977 Physics and Society +1403.5235 Complex Variables +1403.5455 Strongly Correlated Electrons +1403.5494 Theory +1403.5549 Theory +1403.5748 Analysis of PDEs +1403.6237 Logic in Computer Science +1403.6380 Phenomenology +1403.6392 Computation and Language +1403.6425 Complex Variables +1403.6512 Logic +1403.6932 +1403.7086 Computational Geometry +1403.7322 Information Theory +1403.7325 Probability +1403.7372 Probability +1403.7532 Information Theory +1403.7535 Probability +1403.7539 Accelerator Physics +1403.7543 Optimization and Control +1403.7553 Chemical Physics +1403.7560 Computational Physics +1403.7561 Mesoscale and Nanoscale Physics +1403.7562 Probability +1403.7563 Fluid Dynamics +1403.7572 Analysis of PDEs +1403.7573 Differential Geometry +1403.7576 Representation Theory +1403.7578 Algebraic Topology +1403.7579 Logic in Computer Science +1403.7581 Biomolecules +1403.7582 Algebraic Geometry +1403.7588 Optimization and Control +1403.7591 Multimedia +1403.7594 Soft Condensed Matter +1403.7596 +1403.7608 Analysis of PDEs +1403.7609 Number Theory +1403.7612 +1403.7613 Theory +1403.7618 +1403.7622 Theory +1403.7624 +1403.7628 General Finance +1403.7635 Methodology +1403.7640 +1403.7641 Classical Analysis and ODEs +1403.7642 Applications +1403.7644 Applications +1403.7649 Combinatorics +1403.7653 Operator Algebras +1403.7654 Social and Information Networks +1403.7655 Materials Science +1403.7656 Combinatorics +1403.7657 Social and Information Networks +1403.7658 Solar and Stellar Astrophysics +1403.7660 Quantitative Methods +1403.7664 Statistics Theory +1403.7665 History and Overview +1403.7666 Group Theory +1403.7668 Quantitative Methods +1403.7670 Combinatorics +1403.7671 Group Theory +1403.7675 +1403.7676 Computation +1403.7678 Algebraic Topology +1403.7680 Risk Management +1403.7682 Information Theory +1403.7683 Statistics Theory +1403.7684 Phenomenology +1403.7685 Logic in Computer Science +1403.7689 Materials Science +1403.7691 Networking and Internet Architecture +1403.7694 +1403.7697 Information Theory +1403.7698 Numerical Analysis +1403.7700 +1403.7702 +1403.7706 Optics +1403.7711 Methodology +1403.7712 Probability +1403.7715 Statistics Theory +1403.7717 Instrumentation and Detectors +1403.7718 Statistical Mechanics +1403.7719 Chaotic Dynamics +1403.7721 Computational Complexity +1403.7722 Quantum Algebra +1403.7723 Theory +1403.7724 Numerical Analysis +1403.7726 Cryptography and Security +1403.7727 Functional Analysis +1403.7729 Databases +1403.7731 +1403.7732 Functional Analysis +1403.7733 Combinatorics +1403.7734 Experiment +1403.7736 Geometric Topology +1403.7739 Probability +1403.7740 Quantum Algebra +1403.7743 +1403.7745 Logic in Computer Science +1403.7746 Learning +1403.7747 Software Engineering +1403.7748 Digital Libraries +1403.7749 +1403.7751 +1403.7753 Number Theory +1403.7755 Information Theory +1403.7759 Complex Variables +1403.7765 Logic in Computer Science +1403.7766 Artificial Intelligence +1403.7767 +1403.7770 Mesoscale and Nanoscale Physics +1403.7772 Social and Information Networks +1403.7773 Networking and Internet Architecture +1403.7774 Networking and Internet Architecture +1403.7777 Logic +1403.7779 Instrumentation and Methods for Astrophysics +1403.7782 Classical Analysis and ODEs +1403.7783 Computer Vision and Pattern Recognition +1403.7790 Optimization and Control +1403.7791 Distributed, Parallel, and Cluster Computing +1403.7792 Optimization and Control +1403.7793 Optimization and Control +1403.7795 Optimization and Control +1403.7797 Optimization and Control +1403.7802 Information Theory +1403.7811 Networking and Internet Architecture +1403.7812 Methodology +1403.7814 Probability +1403.7820 Representation Theory +1403.7822 Materials Science +1403.7823 Spectral Theory +1403.7825 Differential Geometry +1403.7828 Logic in Computer Science +1403.7829 Probability +1403.7830 Portfolio Management +1403.7831 Probability +1403.7838 Quantum Algebra +1403.7839 +1403.7846 Information Theory +1403.7849 History and Philosophy of Physics +1403.7853 Methodology +1403.7859 Statistical Mechanics +1403.7860 +1403.7864 Algebraic Topology +1403.7869 Networking and Internet Architecture +1403.7872 Other Computer Science +1403.7876 Computer Vision and Pattern Recognition +1403.7884 Probability +1403.7886 Probability +1403.7888 Rings and Algebras +1403.7890 Machine Learning +1403.7893 Experiment +1403.7899 Digital Libraries +1403.7904 Instrumentation and Detectors +1403.7908 Differential Geometry +1403.7913 Physics and Society +1403.7914 Analysis of PDEs +1403.7918 Geophysics +1403.7920 Information Theory +1403.7923 Information Retrieval +1403.7927 Classical Analysis and ODEs +1403.7928 Databases +1403.7930 +1403.7931 Functional Analysis +1403.7932 Combinatorics +1403.7933 Combinatorics +1403.7937 K-Theory and Homology +1403.7938 Rings and Algebras +1403.7943 Probability +1403.7950 Soft Condensed Matter +1403.7953 Instrumentation and Detectors +1403.7955 Analysis of PDEs +1403.7956 Differential Geometry +1403.7971 Statistics Theory +1403.7972 Applications +1403.7973 Classical Analysis and ODEs +1403.7974 Astrophysics of Galaxies +1403.7977 Group Theory +1403.7978 Classical Analysis and ODEs +1403.7981 Materials Science +1403.7983 Numerical Analysis +1403.7987 Computational Geometry +1403.7991 Logic in Computer Science +1403.7993 Probability +1403.7996 Accelerator Physics +1403.7998 Strongly Correlated Electrons +1403.8003 Computer Vision and Pattern Recognition +1403.8006 Distributed, Parallel, and Cluster Computing +1403.8010 General Physics +1403.8013 Solar and Stellar Astrophysics +1403.8014 Other Condensed Matter +1403.8019 Group Theory +1403.8020 Distributed, Parallel, and Cluster Computing +1403.8028 Programming Languages +1403.8032 Classical Analysis and ODEs +1403.8034 Social and Information Networks +1403.8037 Differential Geometry +1403.8039 Applications +1403.8042 Information Theory +1403.8050 Phenomenology +1403.8052 Theory +1403.8054 Space Physics +1403.8055 Networking and Internet Architecture +1403.8061 +1403.8065 Networking and Internet Architecture +1403.8069 +1403.8072 Biomolecules +1403.8076 Rings and Algebras +1403.8078 History and Overview +1403.8080 Classical Analysis and ODEs +1403.8081 Combinatorics +1403.8083 Classical Analysis and ODEs +1403.8084 Cryptography and Security +1403.8086 Computational Geometry +1403.8091 Combinatorics +1403.8093 Information Theory +1403.8094 Plasma Physics +1403.8104 Instrumentation and Detectors +1403.8105 Graphics +1403.8106 Computational Complexity +1403.8108 Rings and Algebras +1403.8110 General Mathematics +1403.8113 Classical Analysis and ODEs +1403.8121 Fluid Dynamics +1403.8122 Information Theory +1403.8127 Combinatorics +1403.8128 Information Theory +1403.8129 Classical Analysis and ODEs +1403.8130 Information Theory +1403.8132 Group Theory +1403.8134 Classical Analysis and ODEs +1403.8136 +1403.8137 Cryptography and Security +1403.8144 Learning +1403.8145 Cosmology and Nongalactic Astrophysics +gr-qc/0407033 +gr-qc/0511062 +math/0308162 General Topology +math/0403193 General Topology +math/0512216 Functional Analysis +math/0512219 Functional Analysis +math/0612646 Functional Analysis +quant-ph/0311102 +0707.4544 General Physics +0804.2563 Soft Condensed Matter +0804.2566 Soft Condensed Matter +0809.1731 Soft Condensed Matter +1007.0700 Soft Condensed Matter +1007.0701 Soft Condensed Matter +1104.1026 Probability +1105.5530 +1108.1237 Theory +1111.4866 Metric Geometry +1202.4910 Data Structures and Algorithms +1203.2166 Symplectic Geometry +1203.6561 Metric Geometry +1203.6810 Experiment +1206.5663 Experiment +1207.1656 Soft Condensed Matter +1207.1658 Soft Condensed Matter +1207.2217 Analysis of PDEs +1208.2491 Theory +1208.5490 Cosmology and Nongalactic Astrophysics +1209.2072 Methodology +1209.5661 Algebraic Topology +1209.5974 Phenomenology +1210.0241 Quantum Algebra +1210.2221 Operator Algebras +1210.8192 Category Theory +1212.6387 Mesoscale and Nanoscale Physics +1301.3507 Experiment +1301.4579 Combinatorics +1303.0879 +1303.5044 Populations and Evolution +1304.0905 Methodology +1305.0751 Machine Learning +1305.0934 Cosmology and Nongalactic Astrophysics +1305.1467 +1305.2042 Robotics +1305.4752 Classical Analysis and ODEs +1306.0185 Medical Physics +1306.1552 Medical Physics +1306.3849 Strongly Correlated Electrons +1306.5674 Functional Analysis +1307.5907 +1308.1104 Cosmology and Nongalactic Astrophysics +1308.1506 Probability +1309.0749 Chemical Physics +1309.5406 Numerical Analysis +1310.0124 Strongly Correlated Electrons +1310.0126 Strongly Correlated Electrons +1310.0127 Quantum Gases +1310.0251 Networking and Internet Architecture +1310.1035 Complex Variables +1310.8498 Classical Analysis and ODEs +1311.2649 Dynamical Systems +1311.3675 Optimization and Control +1311.4218 +1311.6160 Phenomenology +1312.2533 Methodology +1312.5368 Differential Geometry +1312.5405 Superconductivity +1312.6581 Computational Physics +1312.6770 +1401.4664 General Finance +1402.0250 Category Theory +1402.3902 Learning +1402.7015 Computational Engineering, Finance, and Science +1403.4595 Superconductivity +1403.5885 Soft Condensed Matter +1403.7118 Methodology +1404.1454 +1404.3048 Phenomenology +1404.4876 Phenomenology +1404.5788 Mesoscale and Nanoscale Physics +1404.6865 Methodology +1404.7174 Computer Vision and Pattern Recognition +1404.7531 Combinatorics +1405.2359 Superconductivity +1405.4123 Experiment +1405.7570 Experiment +1406.0044 Portfolio Management +1406.1415 Superconductivity +1406.1926 Phenomenology +1406.2369 Superconductivity +1406.2879 Materials Science +1406.3194 Networking and Internet Architecture +1406.4550 Theory +1406.7060 Molecular Networks +1407.4089 Classical Analysis and ODEs +1407.5532 Experiment +1407.6647 Superconductivity +1407.6671 Logic +1407.6844 Probability +1407.6934 Quantum Gases +1407.7043 Mesoscale and Nanoscale Physics +1407.7549 Data Analysis, Statistics and Probability +1407.7758 +1407.7951 Fluid Dynamics +1408.0025 Superconductivity +1408.3076 Theory +1408.5778 Experiment +1409.1570 +1409.2156 Software Engineering +1409.4297 Performance +1409.4324 Methodology +1409.5903 High Energy Astrophysical Phenomena +1409.8201 High Energy Astrophysical Phenomena +1409.8243 Experiment +1410.1329 Materials Science +1410.2004 Materials Science +1410.2890 Physics and Society +1410.3962 Metric Geometry +1410.7488 Instrumentation and Methods for Astrophysics +1410.8093 Methodology +1411.0219 Statistical Mechanics +1411.0995 Complex Variables +1411.1178 +1411.1429 Astrophysics of Galaxies +1411.1537 Machine Learning +1411.1656 Analysis of PDEs +1411.1750 Fluid Dynamics +1411.1752 Learning +1411.1754 Instrumentation and Methods for Astrophysics +1411.1759 High Energy Astrophysical Phenomena +1411.1773 Chemical Physics +1411.1778 Algebraic Topology +1411.1780 +1411.1784 Learning +1411.1786 Classical Analysis and ODEs +1411.1788 Combinatorics +1411.1790 Plasma Physics +1411.1793 Combinatorics +1411.1794 Instrumentation and Detectors +1411.1796 Complex Variables +1411.1797 Number Theory +1411.1801 Information Theory +1411.1803 Differential Geometry +1411.1815 Functional Analysis +1411.1819 Numerical Analysis +1411.1821 Computers and Society +1411.1823 Lattice +1411.1826 Metric Geometry +1411.1827 Dynamical Systems +1411.1828 Astrophysics of Galaxies +1411.1829 Information Theory +1411.1831 Analysis of PDEs +1411.1833 Probability +1411.1834 Classical Physics +1411.1835 High Energy Astrophysical Phenomena +1411.1836 +1411.1837 Geometric Topology +1411.1838 Optics +1411.1845 Geometric Topology +1411.1849 Geometric Topology +1411.1850 Geometric Topology +1411.1851 Classical Physics +1411.1857 Optics +1411.1867 Phenomenology +1411.1868 Strongly Correlated Electrons +1411.1873 Experiment +1411.1875 Astrophysics of Galaxies +1411.1876 Computers and Society +1411.1880 Differential Geometry +1411.1882 Experiment +1411.1884 Materials Science +1411.1886 Experiment +1411.1889 Functional Analysis +1411.1890 Operator Algebras +1411.1896 Materials Science +1411.1897 Computers and Society +1411.1898 Sound +1411.1900 Superconductivity +1411.1901 +1411.1904 Optimization and Control +1411.1905 Classical Analysis and ODEs +1411.1906 Graphics +1411.1907 Robotics +1411.1909 Complex Variables +1411.1915 Complex Variables +1411.1916 +1411.1920 Software Engineering +1411.1922 Software Engineering +1411.1924 Statistical Finance +1411.1925 Phenomenology +1411.1926 Numerical Analysis +1411.1929 General Finance +1411.1931 Distributed, Parallel, and Cluster Computing +1411.1933 Cryptography and Security +1411.1934 Metric Geometry +1411.1940 Phenomenology +1411.1941 Experiment +1411.1944 Numerical Analysis +1411.1945 Software Engineering +1411.1948 Theory +1411.1951 Distributed, Parallel, and Cluster Computing +1411.1953 Robotics +1411.1954 Algebraic Geometry +1411.1955 Digital Libraries +1411.1965 Functional Analysis +1411.1972 Numerical Analysis +1411.1973 Optimization and Control +1411.1977 Discrete Mathematics +1411.1979 Complex Variables +1411.1981 Experiment +1411.1983 Phenomenology +1411.1984 Number Theory +1411.1985 Statistical Mechanics +1411.1989 Dynamical Systems +1411.1991 Earth and Planetary Astrophysics +1411.1992 Spectral Theory +1411.1997 Methodology +1411.1998 Networking and Internet Architecture +1411.1999 Artificial Intelligence +1411.2001 Theory +1411.2005 Machine Learning +1411.2010 Lattice +1411.2014 Information Theory +1411.2017 Populations and Evolution +1411.2018 Phenomenology +1411.2022 Data Structures and Algorithms +1411.2024 Probability +cond-mat/0411219 Statistical Mechanics +cond-mat/0501068 Statistical Mechanics +quant-ph/0703172 +1007.5228 Geometric Topology +1103.3958 Probability +1103.3960 Probability +1104.3856 Number Theory +1105.0770 Probability +1202.2986 Combinatorics +1203.4283 Commutative Algebra +1206.3874 Geometric Topology +1209.0043 Statistical Mechanics +1209.6099 Combinatorics +1211.3800 Instrumentation and Methods for Astrophysics +1212.4795 +1302.5010 Computer Vision and Pattern Recognition +1302.5127 Data Structures and Algorithms +1304.0323 Representation Theory +1304.0906 Representation Theory +1304.7329 Dynamical Systems +1305.5229 Combinatorics +1305.6296 Analysis of PDEs +1306.4232 Operator Algebras +1306.6852 Artificial Intelligence +1307.0292 Rings and Algebras +1307.0889 Combinatorics +1308.3423 Algebraic Topology +1311.4946 Superconductivity +1311.5320 Phenomenology +1312.4230 +1312.4844 +1312.5508 Theory +1401.0901 Analysis of PDEs +1401.2721 Theory +1401.3067 Algebraic Geometry +1401.3501 Theory +1402.0694 Computation +1402.3596 Mesoscale and Nanoscale Physics +1402.3873 Software Engineering +1403.5283 Mesoscale and Nanoscale Physics +1404.0882 +1404.1349 Probability +1404.1436 Formal Languages and Automata Theory +1404.6013 Networking and Internet Architecture +1405.1450 Instrumentation and Detectors +1405.2879 Probability +1405.6060 +1405.6438 Algebraic Geometry +1405.6683 +1406.3173 Materials Science +1406.5494 +1407.0642 Metric Geometry +1407.1792 Populations and Evolution +1407.2081 Probability +1407.2083 Probability +1407.4338 Algebraic Geometry +1407.7664 Quantum Gases +1407.8389 +1408.1676 Strongly Correlated Electrons +1408.5120 Optimization and Control +1408.6256 Disordered Systems and Neural Networks +1408.6499 Theory +1409.1392 Exactly Solvable and Integrable Systems +1409.1896 Theory +1409.3025 +1409.5421 Theory +1409.7106 Statistical Mechanics +1410.3337 Earth and Planetary Astrophysics +1410.4621 +1410.7838 Chemical Physics +1411.4441 Risk Management +1411.5422 Theory +1411.6018 Mesoscale and Nanoscale Physics +1411.6042 Mesoscale and Nanoscale Physics +1412.0016 Theory +1412.3362 Numerical Analysis +1412.3652 Logic +1412.4207 Complex Variables +1412.4399 Instrumentation and Methods for Astrophysics +1412.6093 Learning +1412.6181 Learning +1412.7162 Astrophysics of Galaxies +1412.7387 Phenomenology +1412.7513 Computer Vision and Pattern Recognition +1412.7527 Metric Geometry +1412.7528 Software Engineering +1412.7529 Software Engineering +1412.7530 Software Engineering +1412.7531 Software Engineering +1412.7532 Software Engineering +1412.7533 Software Engineering +1412.7534 Software Engineering +1412.7535 Software Engineering +1412.7536 High Energy Astrophysical Phenomena +1412.7537 Physics and Society +1412.7544 History and Philosophy of Physics +1412.7549 Differential Geometry +1412.7550 Computation +1412.7553 Number Theory +1412.7554 Medical Physics +1412.7558 Data Structures and Algorithms +1412.7560 Quantitative Methods +1412.7565 History and Overview +1412.7572 Functional Analysis +1412.7574 Combinatorics +1412.7575 Soft Condensed Matter +1412.7576 +1412.7582 Earth and Planetary Astrophysics +1412.7584 Learning +1412.7586 Number Theory +1412.7587 Materials Science +1412.7592 Analysis of PDEs +1412.7593 Mesoscale and Nanoscale Physics +1412.7598 Differential Geometry +1412.7600 Solar and Stellar Astrophysics +1412.7604 Plasma Physics +1412.7607 Geometric Topology +1412.7608 Analysis of PDEs +1412.7610 Information Retrieval +1412.7613 Group Theory +1412.7617 +1412.7618 Networking and Internet Architecture +1412.7624 Information Theory +1412.7626 Computer Vision and Pattern Recognition +1412.7628 Optics +1412.7636 Exactly Solvable and Integrable Systems +1412.7637 +1412.7638 Machine Learning +1412.7639 High Energy Astrophysical Phenomena +1412.7640 Dynamical Systems +1412.7644 +1412.7645 Information Theory +1412.7646 Information Theory +1412.7649 Mathematical Finance +1412.7652 Complex Variables +1412.7653 Distributed, Parallel, and Cluster Computing +1412.7656 Theory +1412.7658 Phenomenology +1412.7661 Solar and Stellar Astrophysics +1412.7664 Programming Languages +1412.7665 Combinatorics +1412.7674 Differential Geometry +1412.7675 Earth and Planetary Astrophysics +1412.7677 Human-Computer Interaction +1412.7679 Biomolecules +1412.7680 Computer Vision and Pattern Recognition +1412.7682 Performance +1412.7684 Networking and Internet Architecture +1412.7685 Group Theory +1412.7686 Physics and Society +1412.7689 Computer Vision and Pattern Recognition +1412.7690 Geophysics +1412.7691 Materials Science +1412.7692 Hardware Architecture +1412.7693 Data Structures and Algorithms +1412.7694 Experiment +1412.7697 Algebraic Geometry +1412.7702 Functional Analysis +1412.7703 Computer Science and Game Theory +1412.7704 Functional Analysis +1412.7707 +1412.7708 Functional Analysis +1412.7710 Mesoscale and Nanoscale Physics +1412.7712 Materials Science +1412.7714 Phenomenology +1412.7716 +1412.7718 Materials Science +1412.7722 Geometric Topology +1412.7723 Strongly Correlated Electrons +1412.7724 Number Theory +1412.7732 Disordered Systems and Neural Networks +1412.7734 Materials Science +1412.7735 Optics +1412.7736 History and Philosophy of Physics +1412.7740 Group Theory +1412.7748 Information Theory +1412.7749 History and Overview +1412.7750 Theory +1412.7752 Dynamical Systems +1412.7754 Rings and Algebras +cond-mat/0402109 Strongly Correlated Electrons +math-ph/0702087 +math/0208210 General Mathematics +0710.0260 Number Theory +0802.0361 Number Theory +0811.1088 Number Theory +0904.2748 Cosmology and Nongalactic Astrophysics +0904.3564 Symplectic Geometry +0909.5147 Number Theory +1002.4474 Cosmology and Nongalactic Astrophysics +1003.0656 Dynamical Systems +1003.1844 Number Theory +1003.3359 Statistical Mechanics +1011.3312 Differential Geometry +1103.1922 General Physics +1103.5883 Algebraic Geometry +1103.6117 Cosmology and Nongalactic Astrophysics +1105.5290 Number Theory +1110.4697 Probability +1110.5880 Combinatorics +1110.6197 Number Theory +1112.1228 Group Theory +1112.3823 Number Theory +1112.3825 Number Theory +1112.5753 Rings and Algebras +1112.6189 Representation Theory +1201.2767 Probability +1204.3305 Cosmology and Nongalactic Astrophysics +1205.5775 Cosmology and Nongalactic Astrophysics +1206.6928 +1207.2074 Representation Theory +1207.2353 Algebraic Geometry +1207.3023 Cosmology and Nongalactic Astrophysics +1207.3294 +1207.3565 Probability +1207.3758 Optimization and Control +1207.5582 +1207.5619 Probability +1207.6356 Dynamical Systems +1208.0657 Optics +1209.0402 Analysis of PDEs +1210.3037 Theory +1211.2188 Number Theory +1211.3550 +1211.4234 Algebraic Geometry +1212.3614 Theory +1301.2774 Artificial Intelligence +1301.5975 Optics +1302.0134 Portfolio Management +1302.0147 Geometric Topology +1302.1774 Cosmology and Nongalactic Astrophysics +1303.2198 Algebraic Topology +1303.2886 Lattice +1304.4067 Symplectic Geometry +1305.1353 Optics +1305.6746 Dynamical Systems +1305.7483 Algebraic Topology +1306.3613 Differential Geometry +1306.4928 Algebraic Geometry +1306.6603 +1307.0046 Probability +1307.5983 Rings and Algebras +1307.6748 Cosmology and Nongalactic Astrophysics +1308.1141 Rings and Algebras +1308.3233 Phenomenology +1308.6200 Cosmology and Nongalactic Astrophysics +1308.6586 Theory +1308.6831 Strongly Correlated Electrons +1309.3139 Distributed, Parallel, and Cluster Computing +1309.3907 Theory +1310.0522 Multiagent Systems +1310.3760 Theory +1311.1997 Theory +1311.2403 Theory +1311.2639 Phenomenology +1311.3711 Geometric Topology +1311.4181 Quantum Algebra +1312.5556 Statistics Theory +1312.5578 Learning +1312.6016 Cosmology and Nongalactic Astrophysics +1312.6109 Materials Science +1312.6242 Computational Complexity +1401.0200 Networking and Internet Architecture +1401.1239 Information Theory +1401.1294 Information Theory +1401.2840 Optics +1401.3127 Information Theory +1401.5410 Cosmology and Nongalactic Astrophysics +1401.5906 Functional Analysis +1401.6310 Symbolic Computation +1401.7369 Information Theory +1402.0256 +1402.2729 +1402.5624 Solar and Stellar Astrophysics +1403.1327 Computer Vision and Pattern Recognition +1403.1352 Combinatorics +1403.1960 Complex Variables +1403.3449 Genomics +1403.4114 +1403.4645 Superconductivity +1403.4992 +1403.5232 Number Theory +1403.6016 Statistics Theory +1403.6967 Disordered Systems and Neural Networks +1403.6970 Mesoscale and Nanoscale Physics +1403.7334 Numerical Analysis +1403.8056 +1404.1506 Information Theory +1404.2230 Strongly Correlated Electrons +1404.2852 Statistical Mechanics +1404.4092 Statistical Mechanics +1404.5359 Phenomenology +1404.5721 Strongly Correlated Electrons +1404.7227 Other Computer Science +1405.0428 Mesoscale and Nanoscale Physics +1405.0526 +1405.0565 Mesoscale and Nanoscale Physics +1405.1990 +1405.3654 Phenomenology +1405.4792 Theory +1405.5880 Strongly Correlated Electrons +1405.6207 +1405.6595 +1405.6846 Superconductivity +1405.7718 Computer Vision and Pattern Recognition +1405.7927 Phenomenology +1406.0677 +1406.1078 Computation and Language +1406.1930 +1406.3144 Chemical Physics +1406.3187 Mesoscale and Nanoscale Physics +1406.4915 Materials Science +1406.4942 +1406.6572 +1406.7167 Mesoscale and Nanoscale Physics +1406.7339 Numerical Analysis +1407.0271 Solar and Stellar Astrophysics +1407.1174 Materials Science +1407.1293 Classical Analysis and ODEs +1407.2248 Phenomenology +1407.3958 Group Theory +1407.4023 Computer Vision and Pattern Recognition +1407.4504 Distributed, Parallel, and Cluster Computing +1407.5847 Molecular Networks +1407.6774 Superconductivity +1407.7155 Social and Information Networks +1407.7430 Combinatorics +1408.0097 Mesoscale and Nanoscale Physics +1408.1034 Phenomenology +1408.3323 Quantum Gases +1408.3394 Number Theory +1408.3543 Algebraic Geometry +1408.3743 Cryptography and Security +1408.5278 Operator Algebras +1408.5817 Combinatorics +1408.5882 Computation and Language +1408.6260 Dynamical Systems +1408.6272 Materials Science +1408.6311 Information Theory +1408.6323 Statistics Theory +1408.6395 Databases +1409.0091 Differential Geometry +1409.0093 Performance +1409.0314 Computation and Language +1409.0399 Geometric Topology +1409.0853 Cosmology and Nongalactic Astrophysics +1409.0857 Theory +1409.0870 Number Theory +1409.0871 Cryptography and Security +1409.0885 +1409.0887 Systems and Control +1409.0888 +1409.0891 Earth and Planetary Astrophysics +1409.0893 Discrete Mathematics +1409.0895 Methodology +1409.0902 Representation Theory +1409.0906 Populations and Evolution +1409.0908 Computer Vision and Pattern Recognition +1409.0910 Analysis of PDEs +1409.0911 Information Theory +1409.0915 Multimedia +1409.0916 Astrophysics of Galaxies +1409.0919 Learning +1409.0921 Information Retrieval +1409.0923 Learning +1409.0924 Computer Vision and Pattern Recognition +1409.0925 Computer Vision and Pattern Recognition +1409.0927 Algebraic Geometry +1409.0929 Chaotic Dynamics +1409.0934 Machine Learning +1409.0938 Systems and Control +1409.0941 Algebraic Geometry +1409.0946 Dynamical Systems +1409.0947 Combinatorics +1409.0952 Information Theory +1409.0955 Analysis of PDEs +1409.0956 Chemical Physics +1409.0957 Differential Geometry +1409.0958 +1409.0960 Representation Theory +1409.0963 Complex Variables +1409.0964 Computer Vision and Pattern Recognition +1409.0968 Number Theory +1409.0972 Combinatorics +1409.0973 Discrete Mathematics +1409.0974 Mesoscale and Nanoscale Physics +1409.0976 Probability +1409.0977 +1409.0979 Information Theory +1409.0981 Geometric Topology +1409.0982 Software Engineering +1409.0984 Metric Geometry +1409.0989 Plasma Physics +1409.0991 Networking and Internet Architecture +1409.0994 Networking and Internet Architecture +1409.0997 Group Theory +1409.0998 Networking and Internet Architecture +1409.1001 Networking and Internet Architecture +1409.1003 Other Computer Science +1409.1004 Differential Geometry +1409.1005 Data Structures and Algorithms +1409.1006 Networking and Internet Architecture +1409.1012 Statistics Theory +1409.1014 Probability +1409.1018 +1409.1022 +1409.1024 Classical Analysis and ODEs +1409.1026 Networking and Internet Architecture +1409.1030 Logic +1409.1035 Differential Geometry +1409.1038 Differential Geometry +1409.1042 Adaptation and Self-Organizing Systems +1409.1043 Learning +1409.1044 Group Theory +1409.1045 Artificial Intelligence +1409.1046 Artificial Intelligence +1409.1052 Networking and Internet Architecture +1409.1053 Learning +1409.1054 Dynamical Systems +1409.1055 Databases +1409.1057 Computational Engineering, Finance, and Science +1409.1059 Computational Engineering, Finance, and Science +1409.1062 Learning +1409.1065 Classical Analysis and ODEs +1409.1066 Social and Information Networks +1409.1069 Materials Science +1409.1072 Computational Physics +1409.1075 Classical Analysis and ODEs +1409.1078 Robotics +1409.1080 +1409.1081 Combinatorics +1409.1082 Classical Physics +1409.1084 Materials Science +1409.1086 +1409.1087 Materials Science +1409.1095 Astrophysics of Galaxies +1409.1098 Soft Condensed Matter +1409.1101 Soft Condensed Matter +1409.1108 Combinatorics +1409.1114 Cosmology and Nongalactic Astrophysics +1409.1118 Solar and Stellar Astrophysics +1409.1119 Commutative Algebra +1409.1121 Algebraic Topology +1409.1123 Symplectic Geometry +1409.1126 Symplectic Geometry +1409.1129 Symplectic Geometry +1409.1133 Instrumentation and Detectors +1409.1137 Cosmology and Nongalactic Astrophysics +1409.1138 Rings and Algebras +1409.1140 History and Overview +1409.1141 Commutative Algebra +1409.1143 Neural and Evolutionary Computing +1409.1145 Numerical Analysis +1409.1148 Multimedia +1409.1151 Number Theory +1409.1152 Databases +1409.1153 Differential Geometry +1409.1155 Numerical Analysis +1409.1156 Numerical Analysis +1409.1157 Numerical Analysis +1409.1159 Probability +1409.1160 Number Theory +1409.1161 Numerical Analysis +1409.1163 Logic +1409.1167 Numerical Analysis +1409.1169 Commutative Algebra +1409.1172 Materials Science +1409.1174 Combinatorics +1409.1175 Pricing of Securities +1409.1181 Materials Science +1409.1183 Representation Theory +1409.1184 Information Theory +1409.1186 Accelerator Physics +1409.1187 Atomic Physics +1409.1190 Chemical Physics +1409.1191 Atomic Physics +1409.1197 Physics Education +1409.1199 Quantitative Methods +1409.1200 Learning +1409.1208 Quantum Algebra +math/0410553 Differential Geometry +math/0605670 Combinatorics +math/0607261 Differential Geometry +math/0608179 Number Theory +0907.5224 Algebraic Geometry +0908.3945 Strongly Correlated Electrons +1001.4615 Quantum Gases +1004.0913 +1007.3222 +1009.2055 Algebraic Geometry +1009.2135 Algebraic Geometry +1010.2052 +1102.0340 Quantum Gases +1201.0073 Data Structures and Algorithms +1201.3269 Dynamical Systems +1202.1159 Algebraic Geometry +1202.6409 Information Theory +1204.4380 Differential Geometry +1204.5836 Operator Algebras +1205.3767 Learning +1206.0802 Dynamical Systems +1206.3050 Number Theory +1207.3906 Dynamical Systems +1207.7296 Other Condensed Matter +1208.0131 Dynamical Systems +1208.2055 Strongly Correlated Electrons +1208.4730 Mesoscale and Nanoscale Physics +1208.4985 Mesoscale and Nanoscale Physics +1209.0285 Statistics Theory +1209.3200 Differential Geometry +1209.3780 Earth and Planetary Astrophysics +1209.3782 Functional Analysis +1209.4215 Representation Theory +1210.2106 Quantum Algebra +1210.3630 Numerical Analysis +1211.2696 Computer Science and Game Theory +1212.3197 Geometric Topology +1301.1552 Computational Physics +1301.2074 Statistics Theory +1301.5580 Algebraic Geometry +1301.6361 Group Theory +1301.7713 Dynamical Systems +1302.3940 Dynamical Systems +1304.0014 Theory +1304.2085 Statistics Theory +1304.7360 +1304.7703 Atmospheric and Oceanic Physics +1305.2902 Computational Complexity +1305.3570 Combinatorics +1305.4559 Combinatorics +1305.5089 Rings and Algebras +1306.1333 Commutative Algebra +1306.4611 Quantum Gases +1306.5698 Cosmology and Nongalactic Astrophysics +1307.1093 +1307.3664 Cryptography and Security +1307.7643 Materials Science +1308.0300 +1308.0309 Social and Information Networks +1308.3045 Superconductivity +1308.4387 Quantum Gases +1309.0159 Atmospheric and Oceanic Physics +1309.0175 +1309.0425 Optics +1309.0620 +1309.3388 Superconductivity +1309.5268 +1309.7074 Superconductivity +1310.1260 Phenomenology +1310.2507 Theory +1310.4828 Phenomenology +1310.7811 Classical Analysis and ODEs +1311.0251 Information Retrieval +1311.2938 Theory +1312.7091 Materials Science +1312.7183 Statistics Theory +1401.1743 Statistical Mechanics +1401.3204 Phenomenology +1401.3731 Classical Physics +1401.7658 +1401.7940 Mesoscale and Nanoscale Physics +1401.8169 Combinatorics +1402.0434 Materials Science +1402.0681 Optics +1402.1494 Phenomenology +1402.1569 Classical Analysis and ODEs +1402.2644 High Energy Astrophysical Phenomena +1402.6656 Lattice +1402.7185 +1403.0216 Statistical Mechanics +1403.0876 Algebraic Geometry +1403.1150 Theory +1403.2724 Strongly Correlated Electrons +1403.3067 +1403.3140 Experiment +1403.3337 Mesoscale and Nanoscale Physics +1403.4081 Strongly Correlated Electrons +1403.4125 Mesoscale and Nanoscale Physics +1403.5507 Phenomenology +1403.5752 +1403.6766 Theory +1403.6994 Soft Condensed Matter +1403.7510 Cosmology and Nongalactic Astrophysics +1404.0483 Atomic Physics +1404.1309 Theory +1404.1933 Cosmology and Nongalactic Astrophysics +1404.2886 Populations and Evolution +1404.3040 Theory +1404.3378 Learning +1404.4404 Astrophysics of Galaxies +1404.4637 Superconductivity +1404.4897 +1404.5500 Disordered Systems and Neural Networks +1404.5575 Mesoscale and Nanoscale Physics +1404.5963 Theory +1404.6139 Mesoscale and Nanoscale Physics +1404.6167 Dynamical Systems +1404.6843 Quantum Gases +1404.7204 +1404.7366 High Energy Astrophysical Phenomena +1405.0256 Superconductivity +1405.0421 Experiment +1405.0509 Biological Physics +1405.1039 Cosmology and Nongalactic Astrophysics +1405.2290 K-Theory and Homology +1405.2394 +1405.2677 Phenomenology +1405.2938 High Energy Astrophysical Phenomena +1405.3041 Materials Science +1405.4855 Cosmology and Nongalactic Astrophysics +1405.5026 +1405.5197 Computational Engineering, Finance, and Science +1405.5259 High Energy Astrophysical Phenomena +1405.5316 Superconductivity +1405.5418 Cosmology and Nongalactic Astrophysics +1405.5781 Mesoscale and Nanoscale Physics +1405.6318 Phenomenology +1405.6606 Differential Geometry +1405.7117 Superconductivity +1405.7216 Plasma Physics +1405.7684 Theory +1405.7749 Superconductivity +1405.7791 Superconductivity +1405.7826 Quantum Gases +1406.1134 Computer Vision and Pattern Recognition +1406.2460 Superconductivity +1406.2503 Atomic Physics +1406.2505 Experiment +1406.2706 High Energy Astrophysical Phenomena +1406.2932 Geophysics +1406.3033 Mesoscale and Nanoscale Physics +1406.3859 Phenomenology +1406.4142 Theory +1406.4158 Phenomenology +1406.4184 +1406.4441 Physics and Society +1406.4471 Strongly Correlated Electrons +1406.4615 Optimization and Control +1406.4795 Materials Science +1406.5008 Mesoscale and Nanoscale Physics +1406.5552 Strongly Correlated Electrons +1406.5798 Theory +1406.5893 Atomic Physics +1406.6045 Artificial Intelligence +1406.6172 Earth and Planetary Astrophysics +1406.6508 Applications +1406.7010 Phenomenology +1406.7133 Genomics +1406.7189 +1406.7297 Cosmology and Nongalactic Astrophysics +1407.1580 Phenomenology +1407.1984 Cosmology and Nongalactic Astrophysics +1407.2325 Superconductivity +1407.2530 Quantum Gases +1407.2543 Phenomenology +1407.2969 Cosmology and Nongalactic Astrophysics +1407.3085 Astrophysics of Galaxies +1407.3109 Superconductivity +1407.3155 Statistical Mechanics +1407.3399 Computer Vision and Pattern Recognition +1407.4617 Solar and Stellar Astrophysics +1407.4800 Computational Physics +1407.4846 Lattice +1407.4959 Solar and Stellar Astrophysics +1407.5097 Astrophysics of Galaxies +1407.5373 Computer Science and Game Theory +1407.5725 Chaotic Dynamics +1407.5769 +1407.5911 +1407.5975 Theory +1407.6196 Quantum Gases +1407.7683 +1407.7919 Dynamical Systems +1407.8159 Lattice +1407.8437 Phenomenology +1408.0653 Solar and Stellar Astrophysics +1408.0830 Algebraic Geometry +1408.0950 Solar and Stellar Astrophysics +1408.0977 Optics +1408.1394 Cosmology and Nongalactic Astrophysics +1408.1510 Solar and Stellar Astrophysics +1408.1628 Solar and Stellar Astrophysics +1408.2844 Earth and Planetary Astrophysics +1408.2988 Solar and Stellar Astrophysics +1408.3569 Solar and Stellar Astrophysics +1408.3766 Superconductivity +1408.3965 Solar and Stellar Astrophysics +1408.4206 Materials Science +1408.4229 Dynamical Systems +1408.4926 Computational Physics +1408.4941 Astrophysics of Galaxies +1408.5759 Mesoscale and Nanoscale Physics +1408.6812 Data Structures and Algorithms +1408.6850 Lattice +1408.7055 Algebraic Geometry +1409.0229 Solar and Stellar Astrophysics +1409.0283 Solar and Stellar Astrophysics +1409.0460 +1409.0537 Astrophysics of Galaxies +1409.0568 Solar and Stellar Astrophysics +1409.0862 Solar and Stellar Astrophysics +1409.1028 Astrophysics of Galaxies +1409.1351 Solar and Stellar Astrophysics +1409.1618 Strongly Correlated Electrons +1409.2345 Solar and Stellar Astrophysics +1409.3197 Theory +1409.4410 Solar and Stellar Astrophysics +1409.4416 Astrophysics of Galaxies +1409.4959 Theory +1409.5029 Theory +1409.5673 Solar and Stellar Astrophysics +1409.5906 Logic +1409.6075 Learning +1409.6105 Solar and Stellar Astrophysics +1409.6110 Learning +1409.6143 Earth and Planetary Astrophysics +1409.6361 High Energy Astrophysical Phenomena +1409.6975 Earth and Planetary Astrophysics +1409.7094 Lattice +1409.7862 Physics and Society +1409.7961 +1410.0002 Earth and Planetary Astrophysics +1410.0008 Astrophysics of Galaxies +1410.0479 Theory +1410.0847 Solar and Stellar Astrophysics +1410.0950 Methodology +1410.1529 Solar and Stellar Astrophysics +1410.2571 Cosmology and Nongalactic Astrophysics +1410.3363 Computer Science and Game Theory +1410.3754 Representation Theory +1410.6575 Dynamical Systems +1410.6617 Materials Science +1410.6717 Social and Information Networks +1410.6991 Machine Learning +1410.7445 Astrophysics of Galaxies +1410.7694 Cryptography and Security +1410.8258 Functional Analysis +1410.8666 Strongly Correlated Electrons +1410.8696 Solar and Stellar Astrophysics +1411.0054 Computers and Society +1411.0056 Materials Science +1411.0059 Computer Science and Game Theory +1411.0183 Statistics Theory +1411.0242 +1411.0294 Information Theory +1411.0375 Mesoscale and Nanoscale Physics +1411.0438 Rings and Algebras +1411.0475 Instrumentation and Detectors +1411.0506 Data Analysis, Statistics and Probability +1411.0629 Experiment +1411.0677 Phenomenology +1411.0680 +1411.0690 Theory +1411.0692 Statistical Mechanics +1411.0694 Physics Education +1411.0697 Functional Analysis +1411.0701 Atmospheric and Oceanic Physics +1411.0702 Soft Condensed Matter +1411.0704 High Energy Astrophysical Phenomena +1411.0707 Machine Learning +1411.0712 Probability +1411.0715 Physics and Society +1411.0720 Experiment +1411.0722 Physics and Society +1411.0737 Combinatorics +1411.0742 Algebraic Geometry +1411.0743 +1411.0744 +1411.0747 Quantum Algebra +1411.0748 +1411.0750 Representation Theory +1411.0751 Solar and Stellar Astrophysics +1411.0755 Lattice +1411.0756 Logic in Computer Science +1411.0760 Dynamical Systems +1411.0763 Data Structures and Algorithms +1411.0766 Lattice +1411.0772 Optics +1411.0778 Computation and Language +1411.0779 Materials Science +1411.0782 Computational Engineering, Finance, and Science +1411.0784 Cellular Automata and Lattice Gases +1411.0787 Phenomenology +1411.0788 Superconductivity +1411.0790 Numerical Analysis +1411.0791 Computer Vision and Pattern Recognition +1411.0793 Statistics Theory +1411.0795 Optimization and Control +1411.0796 Numerical Analysis +1411.0797 Strongly Correlated Electrons +1411.0801 Materials Science +1411.0802 Robotics +1411.0803 Dynamical Systems +1411.0807 Methodology +1411.0808 Methodology +1411.0809 Methodology +1411.0810 Methodology +1411.0811 Methodology +1411.0812 Methodology +1411.0813 Formal Languages and Automata Theory +1411.0816 Numerical Analysis +1411.0820 Experiment +1411.0821 Computational Complexity +1411.0822 Earth and Planetary Astrophysics +1411.0827 Social and Information Networks +1411.0830 Mesoscale and Nanoscale Physics +1411.0835 Logic in Computer Science +1411.0837 +1411.0839 Statistics Theory +1411.0841 Differential Geometry +1411.0845 Differential Geometry +1411.0853 Complex Variables +1411.0856 Combinatorics +1411.0858 Statistics Theory +1411.0859 Optimization and Control +1411.0860 Learning +1411.0861 Social and Information Networks +1411.0863 Hardware Architecture +1411.0870 Analysis of PDEs +1411.0871 Data Structures and Algorithms +1411.0873 Superconductivity +1411.0880 Optimization and Control +1411.0881 High Energy Astrophysical Phenomena +1411.0889 Geometric Topology +1411.0890 Analysis of PDEs +1411.0891 Lattice +1411.0892 +1411.0893 +1411.0898 Category Theory +1411.0900 Machine Learning +1411.0901 Instrumentation and Methods for Astrophysics +1411.0903 Number Theory +1411.0904 Phenomenology +1411.0907 Physics and Society +1411.0910 Differential Geometry +1411.0914 Geometric Topology +1411.0915 Classical Analysis and ODEs +1411.0919 Applications +1411.0920 Theory +1411.0922 Phenomenology +1411.0925 Probability +1411.0927 Lattice +1411.0928 Digital Libraries +1411.0930 Differential Geometry +1411.0934 Group Theory +1411.0939 Machine Learning +1411.0945 Geometric Topology +1411.0947 Statistics Theory +1411.0949 Lattice +1411.0951 Differential Geometry +1411.0952 Number Theory +1411.0953 Functional Analysis +1411.0954 Number Theory +1411.0961 Number Theory +1411.0966 Materials Science +1411.0972 Optimization and Control +1411.0980 Statistics Theory +1411.0983 Physics and Society +1411.0987 Combinatorics +1411.0989 Analysis of PDEs +1411.0994 Phenomenology +1411.0996 Instrumentation and Methods for Astrophysics +1411.0997 Learning +1411.0999 +1411.1000 Commutative Algebra +1411.1002 +1411.1007 Materials Science +1411.1008 Solar and Stellar Astrophysics +1411.1009 +1411.1013 Differential Geometry +1411.1015 Statistics Theory +1411.1017 +1411.1028 Group Theory +1411.1032 Geometric Topology +1411.1036 Complex Variables +1411.1038 Combinatorics +1411.1039 Algebraic Geometry +0705.1822 Probability +0907.5399 Functional Analysis +0907.5584 Spectral Theory +0908.2701 Probability +0909.5221 Earth and Planetary Astrophysics +1001.4896 Functional Analysis +1003.0956 Rings and Algebras +1003.3149 Functional Analysis +1012.4954 Logic +1012.5051 Logic +1102.2050 Probability +1103.0247 Functional Analysis +1106.3975 Symplectic Geometry +1109.4094 Probability +1110.4753 Category Theory +1111.0834 Classical Analysis and ODEs +1112.4152 Functional Analysis +1112.5678 Quantitative Methods +1112.5710 Functional Analysis +1201.3740 Information Theory +1202.0333 +1202.5769 Theory +1204.0172 Materials Science +1205.0652 Distributed, Parallel, and Cluster Computing +1205.5340 Dynamical Systems +1206.0528 Representation Theory +1206.2986 +1207.0719 Geometric Topology +1208.2207 Functional Analysis +1208.6548 Operator Algebras +1209.0377 Optimization and Control +1209.3042 Functional Analysis +1210.1570 General Physics +1212.4690 Soft Condensed Matter +1212.5742 Representation Theory +1212.6761 Functional Analysis +1301.0247 Functional Analysis +1301.2474 Discrete Mathematics +1303.6690 Statistics Theory +1304.1058 Analysis of PDEs +1304.7981 Machine Learning +1305.1608 Materials Science +1305.3690 Probability +1305.3907 Phenomenology +1306.4604 Cosmology and Nongalactic Astrophysics +1306.6530 Phenomenology +1307.1662 Computation and Language +1307.4538 Networking and Internet Architecture +1307.6708 Combinatorics +1308.0296 Representation Theory +1308.1275 Probability +1308.1388 Genomics +1308.5121 Physics and Society +1308.5169 Statistical Mechanics +1309.5550 Optimization and Control +1309.6922 Quantum Gases +1310.1310 +1310.1401 Cosmology and Nongalactic Astrophysics +1310.2663 Spectral Theory +1310.4103 +1310.4590 Probability +1310.4809 +1310.7560 Dynamical Systems +1311.0369 Superconductivity +1311.0963 Materials Science +1311.1139 Strongly Correlated Electrons +1311.1805 Atomic Physics +1311.2191 Computer Vision and Pattern Recognition +1311.2399 Phenomenology +1311.4377 Mesoscale and Nanoscale Physics +1311.4509 Analysis of PDEs +1311.6373 Analysis of PDEs +1311.6509 +1311.6849 Methodology +1312.0160 +1312.0363 Information Theory +1312.0377 Number Theory +1312.3789 Pricing of Securities +1312.5684 +1401.1757 Computational Finance +1401.3117 +1401.3504 Strongly Correlated Electrons +1401.4403 Superconductivity +1401.6668 Probability +1402.0481 +1402.0654 Biological Physics +1402.2215 Superconductivity +1402.4078 Machine Learning +1402.4835 Dynamical Systems +1402.7145 Mesoscale and Nanoscale Physics +1403.0660 Strongly Correlated Electrons +1403.1177 Physics and Society +1403.1252 Learning +1403.4725 Group Theory +1403.6652 Social and Information Networks +1403.6788 Operator Algebras +1403.7623 Cosmology and Nongalactic Astrophysics +1403.7651 +1404.0327 Phenomenology +1404.0575 Statistical Mechanics +1404.1212 Experiment +1404.3964 Classical Analysis and ODEs +1404.5318 Chemical Physics +1404.5491 Number Theory +1404.5925 Solar and Stellar Astrophysics +1405.0570 Cosmology and Nongalactic Astrophysics +1405.0652 Analysis of PDEs +1405.5288 +1405.5357 +1405.6246 Superconductivity +1405.7202 Earth and Planetary Astrophysics +1405.7339 Dynamical Systems +1406.1086 Operator Algebras +1406.1903 Instrumentation and Detectors +1406.2307 +1406.2772 Atomic and Molecular Clusters +1406.2896 Dynamical Systems +1406.3511 Mesoscale and Nanoscale Physics +1406.3795 Superconductivity +1406.5117 Mesoscale and Nanoscale Physics +1406.5231 Optimization and Control +1406.6154 Combinatorics +1406.6238 Solar and Stellar Astrophysics +1406.6377 Other Condensed Matter +1406.6501 Atomic Physics +1406.6531 Combinatorics +1406.6562 Statistical Finance +1406.6786 Graphics +1406.6946 Computer Vision and Pattern Recognition +1406.7022 Astrophysics of Galaxies +1406.7023 +1406.7025 Graphics +1406.7027 Dynamical Systems +1406.7030 Instrumentation and Detectors +1406.7040 Portfolio Management +1406.7043 Probability +1406.7044 Analysis of PDEs +1406.7045 Soft Condensed Matter +1406.7047 Number Theory +1406.7049 Networking and Internet Architecture +1406.7058 Atomic and Molecular Clusters +1406.7062 Computer Vision and Pattern Recognition +1406.7063 Rings and Algebras +1406.7064 Statistical Finance +1406.7065 Rings and Algebras +1406.7068 Information Theory +1406.7073 Soft Condensed Matter +1406.7075 Computer Vision and Pattern Recognition +1406.7076 Soft Condensed Matter +1406.7077 Data Analysis, Statistics and Probability +1406.7078 Cryptography and Security +1406.7079 Geometric Topology +1406.7083 Complex Variables +1406.7085 High Energy Astrophysical Phenomena +1406.7086 Complex Variables +1406.7088 +1406.7089 Analysis of PDEs +1406.7093 Information Retrieval +1406.7097 Astrophysics of Galaxies +1406.7099 Phenomenology +1406.7107 Data Structures and Algorithms +1406.7109 Strongly Correlated Electrons +1406.7111 Instrumentation and Detectors +1406.7112 Computer Vision and Pattern Recognition +1406.7117 Methodology +1406.7120 Computer Vision and Pattern Recognition +1406.7122 Phenomenology +1406.7123 Quantitative Methods +1406.7124 Information Theory +1406.7126 Combinatorics +1406.7128 Computer Vision and Pattern Recognition +1406.7132 Logic +1406.7136 Software Engineering +1406.7138 +1406.7140 Genomics +1406.7145 Probability +1406.7146 Functional Analysis +1406.7150 Soft Condensed Matter +1406.7152 +1406.7153 +1406.7154 +1406.7155 Dynamical Systems +1406.7165 Functional Analysis +1406.7166 Logic +1406.7169 Combinatorics +1406.7170 Astrophysics of Galaxies +1406.7175 Group Theory +1406.7176 Optics +1406.7178 Optimization and Control +1406.7179 Machine Learning +1406.7185 Neurons and Cognition +1406.7186 Mesoscale and Nanoscale Physics +1406.7192 Functional Analysis +1406.7197 Social and Information Networks +1406.7198 Geometric Topology +1406.7199 Optimization and Control +1406.7200 Mesoscale and Nanoscale Physics +1406.7206 Representation Theory +1406.7207 Solar and Stellar Astrophysics +1406.7211 Operator Algebras +1406.7216 +1406.7217 Classical Analysis and ODEs +1406.7218 Representation Theory +1406.7225 Dynamical Systems +1406.7226 Multimedia +1406.7231 Fluid Dynamics +1406.7236 Soft Condensed Matter +1406.7238 Symplectic Geometry +1406.7243 Number Theory +1406.7248 Classical Analysis and ODEs +1406.7259 Physics and Society +1406.7263 Accelerator Physics +1406.7264 Information Theory +1406.7265 Solar and Stellar Astrophysics +1406.7266 Accelerator Physics +1406.7268 Phenomenology +1406.7271 Differential Geometry +1406.7272 Biological Physics +1406.7279 Data Structures and Algorithms +1406.7280 Probability +1406.7285 Distributed, Parallel, and Cluster Computing +0803.0299 +0805.1312 +0806.1137 +0808.0349 +0809.0981 +0901.3933 Logic +0903.4983 Functional Analysis +0905.2911 Functional Analysis +0906.4332 Artificial Intelligence +0911.4947 +1001.0872 +1005.0825 History and Overview +1009.2764 Databases +1009.4903 +1012.1050 Theory +1103.3966 +1105.4189 +1105.5832 Digital Libraries +1107.4775 Probability +1107.5428 Probability +1107.5985 Analysis of PDEs +1108.4511 Geometric Topology +1109.1977 Analysis of PDEs +1110.0639 Differential Geometry +1110.4292 Optics +1111.3202 Cosmology and Nongalactic Astrophysics +1111.6918 +1112.1214 Differential Geometry +1112.2939 Portfolio Management +1112.5840 Other Computer Science +1201.0652 Solar and Stellar Astrophysics +1202.6223 Analysis of PDEs +1203.0609 Theory +1203.3275 Number Theory +1203.5404 Analysis of PDEs +1205.2587 +1205.4194 Software Engineering +1205.4232 General Physics +1206.5702 +1207.5082 Computational Geometry +1208.2736 +1208.3216 Geometric Topology +1208.6035 +1209.0155 Analysis of PDEs +1210.3304 Logic +1210.4668 Combinatorics +1210.6089 Molecular Networks +1210.6703 Methodology +1211.3929 Combinatorics +1212.2041 Theory +1212.4307 Data Analysis, Statistics and Probability +1301.1207 Functional Analysis +1301.3676 Optimization and Control +1302.0084 Information Theory +1302.0217 Differential Geometry +1302.3897 Rings and Algebras +1302.4800 Other Condensed Matter +1302.4802 Rings and Algebras +1303.2968 Probability +1303.4249 Computational Physics +1303.6535 Representation Theory +1303.7243 Dynamical Systems +1303.7246 Differential Geometry +1304.5380 Applications +1304.5476 Combinatorics +1304.5867 Algebraic Geometry +1304.7690 High Energy Astrophysical Phenomena +1305.2585 Pattern Formation and Solitons +1305.3748 Group Theory +1306.2570 +1306.4304 Algebraic Geometry +1306.6903 Computational Physics +1307.0439 Classical Analysis and ODEs +1307.3338 Representation Theory +1307.5050 Populations and Evolution +1307.7019 Mesoscale and Nanoscale Physics +1307.7270 General Topology +1307.8325 Analysis of PDEs +1308.2860 Dynamical Systems +1308.2878 Complex Variables +1308.3351 Probability +1308.3453 +1308.5246 Soft Condensed Matter +1309.2307 Mesoscale and Nanoscale Physics +1309.4048 Dynamical Systems +1309.5057 Differential Geometry +1309.6038 Geometric Topology +1309.6374 +1309.7769 Plasma Physics +1310.2052 Probability +1310.3177 +1310.4768 Combinatorics +1310.4959 +1310.4992 Statistical Mechanics +1310.5174 K-Theory and Homology +1310.5276 Optics +1310.8634 Populations and Evolution +1311.1047 Sound +1311.1889 +1311.4489 +1311.4649 +1311.5181 Spectral Theory +1312.0618 Materials Science +1312.2207 Hardware Architecture +1312.3775 +1312.5000 Experiment +1312.6333 Probability +1312.6927 Cryptography and Security +1312.7068 Analysis of PDEs +1312.7815 Optimization and Control +1401.2177 Materials Science +1401.2786 Numerical Analysis +1401.3009 Cosmology and Nongalactic Astrophysics +1401.5504 +1401.8000 +1401.8139 Theory +1402.3222 +1402.4335 Quantum Gases +1402.4359 Strongly Correlated Electrons +1402.5285 Mesoscale and Nanoscale Physics +1402.6311 Strongly Correlated Electrons +1402.6612 Strongly Correlated Electrons +1402.7349 Machine Learning +1403.0524 Materials Science +1403.0563 Mesoscale and Nanoscale Physics +1403.1147 +1403.1271 Cosmology and Nongalactic Astrophysics +1403.1611 Numerical Analysis +1403.2507 Disordered Systems and Neural Networks +1403.2692 Disordered Systems and Neural Networks +1403.3047 Experiment +1403.3164 +1403.3324 Superconductivity +1403.3365 Theory +1403.3454 Instrumentation and Detectors +1403.3658 Representation Theory +1403.3742 Combinatorics +1403.4066 +1403.4489 Combinatorics +1403.4849 Phenomenology +1403.5470 +1403.7336 +1403.7378 Dynamical Systems +1404.1362 Phenomenology +1404.1411 Theory +1404.2668 Social and Information Networks +1404.3545 Dynamical Systems +1404.3550 Classical Physics +1404.4223 Geophysics +1404.5190 Information Theory +1404.6485 Statistical Mechanics +1404.7102 Quantum Gases +1404.7355 Soft Condensed Matter +1405.0102 Information Theory +1405.0416 Phenomenology +1405.1164 Statistics Theory +1405.1748 Materials Science +1405.1788 Biological Physics +1405.1790 Physics and Society +1405.2250 Complex Variables +1405.2333 +1405.3551 High Energy Astrophysical Phenomena +1405.3717 Statistical Mechanics +1405.4524 Lattice +1405.4825 Quantum Gases +1405.6459 Quantum Gases +1405.7140 Differential Geometry +1405.7766 Strongly Correlated Electrons +1406.0816 Disordered Systems and Neural Networks +1406.1037 Statistics Theory +1406.1063 +1406.1216 Probability +1406.1426 Analysis of PDEs +1406.1468 Theory +1406.1748 Earth and Planetary Astrophysics +1406.2697 Earth and Planetary Astrophysics +1406.3189 Theory +1406.4983 Mesoscale and Nanoscale Physics +1406.5023 Mesoscale and Nanoscale Physics +1406.5770 Mesoscale and Nanoscale Physics +1406.6009 Astrophysics of Galaxies +1406.7256 Populations and Evolution +1406.7278 Strongly Correlated Electrons +1407.1423 Information Theory +1407.1454 Information Theory +1407.1563 Strongly Correlated Electrons +1407.1566 Algebraic Geometry +1407.1684 Mesoscale and Nanoscale Physics +1407.3048 Solar and Stellar Astrophysics +1407.4833 Artificial Intelligence +1407.5129 Analysis of PDEs +1407.6114 Superconductivity +1407.6146 Materials Science +1407.6543 Classical Analysis and ODEs +1407.6777 Phenomenology +1407.8004 Human-Computer Interaction +1407.8132 Discrete Mathematics +1407.8465 Number Theory +1408.0488 Data Structures and Algorithms +1408.0680 Computer Vision and Pattern Recognition +1408.0987 History and Philosophy of Physics +1408.1183 Statistical Mechanics +1408.1799 Geometric Topology +1408.1835 Dynamical Systems +1408.1954 General Mathematics +1408.1961 Phenomenology +1408.1964 Discrete Mathematics +1408.1965 Solar and Stellar Astrophysics +1408.1967 Logic +1408.1968 +1408.1970 Algebraic Geometry +1408.1974 Applications +1408.1977 Materials Science +1408.1979 Earth and Planetary Astrophysics +1408.1984 Computer Vision and Pattern Recognition +1408.1985 Computation and Language +1408.1988 Metric Geometry +1408.1993 Cryptography and Security +1408.1994 Theory +1408.1995 Discrete Mathematics +1408.1999 Logic +1408.2002 Combinatorics +1408.2005 Probability +1408.2009 Molecular Networks +1408.2011 Statistical Mechanics +1408.2013 Analysis of PDEs +1408.2014 Chemical Physics +1408.2015 Computer Vision and Pattern Recognition +1408.2022 Representation Theory +1408.2023 Information Theory +1408.2025 Learning +1408.2026 Solar and Stellar Astrophysics +1408.2027 Artificial Intelligence +1408.2028 Artificial Intelligence +1408.2029 Artificial Intelligence +1408.2030 Artificial Intelligence +1408.2031 Learning +1408.2032 Learning +1408.2033 Learning +1408.2034 Artificial Intelligence +1408.2035 Artificial Intelligence +1408.2037 Learning +1408.2038 Learning +1408.2039 Learning +1408.2040 Learning +1408.2041 Learning +1408.2042 Learning +1408.2044 Learning +1408.2045 Learning +1408.2046 Artificial Intelligence +1408.2047 Learning +1408.2048 Artificial Intelligence +1408.2050 Solar and Stellar Astrophysics +1408.2051 Learning +1408.2052 Artificial Intelligence +1408.2053 Artificial Intelligence +1408.2054 Learning +1408.2055 Learning +1408.2056 Artificial Intelligence +1408.2057 Artificial Intelligence +1408.2058 Artificial Intelligence +1408.2059 Rings and Algebras +1408.2060 Learning +1408.2061 Learning +1408.2062 Learning +1408.2063 Artificial Intelligence +1408.2064 Learning +1408.2065 Learning +1408.2066 Learning +1408.2067 Learning +1408.2070 Optics +1408.2071 Distributed, Parallel, and Cluster Computing +1408.2072 Distributed, Parallel, and Cluster Computing +1408.2077 Symplectic Geometry +1408.2078 Networking and Internet Architecture +1408.2083 Number Theory +1408.2085 Neurons and Cognition +1408.2086 Differential Geometry +1408.2092 History and Overview +1408.2094 History and Overview +1408.2103 Software Engineering +1408.2104 +1408.2110 Dynamical Systems +1408.2111 Number Theory +1408.2115 Probability +1408.2116 Distributed, Parallel, and Cluster Computing +1408.2117 Dynamical Systems +1408.2118 Dynamical Systems +1408.2120 Optimization and Control +1408.2128 Methodology +1408.2129 Logic +1408.2133 Representation Theory +1408.2134 Algebraic Topology +1408.2135 Metric Geometry +1408.2141 Chaotic Dynamics +1408.2143 Functional Analysis +1408.2144 Functional Analysis +1408.2145 Functional Analysis +1408.2147 Functional Analysis +1408.2148 Materials Science +1408.2149 Fluid Dynamics +1408.2156 Statistics Theory +1408.2157 Data Structures and Algorithms +1408.2158 Chemical Physics +1408.2159 Data Structures and Algorithms +1408.2160 Analysis of PDEs +1408.2162 +1408.2166 Representation Theory +1408.2167 Logic +1408.2169 Logic +1408.2171 Logic +1408.2172 Discrete Mathematics +1408.2177 Statistical Mechanics +1408.2178 Algebraic Geometry +1408.2181 Superconductivity +1408.2193 Exactly Solvable and Integrable Systems +1408.2195 Information Retrieval +1408.2196 Learning +1408.2197 Superconductivity +1408.2202 Probability +1408.2203 Analysis of PDEs +1408.2204 Phenomenology +1408.2205 Theory +1408.2207 Numerical Analysis +1408.2208 Numerical Analysis +1408.2209 Numerical Analysis +1408.2212 Theory +1408.2216 Probability +1408.2218 Probability +1408.2220 Probability +1408.2222 Systems and Control +1408.2225 Representation Theory +1408.2226 +1408.2230 Exactly Solvable and Integrable Systems +1408.2235 Group Theory +1408.2237 Information Theory +1408.2240 Rings and Algebras +1408.2243 Classical Analysis and ODEs +1408.2245 Classical Analysis and ODEs +1408.2246 Theory +1408.2248 Classical Analysis and ODEs +1408.2250 Classical Analysis and ODEs +1408.2252 Classical Analysis and ODEs +1408.2254 Algebraic Geometry +1408.2255 Methodology +1408.2259 Differential Geometry +1408.2270 Data Structures and Algorithms +1408.2276 Chemical Physics +1408.2278 Logic +1408.2279 Data Structures and Algorithms +1408.2281 Logic +1408.2282 Logic +1408.2283 +1408.2284 Distributed, Parallel, and Cluster Computing +1408.2286 Logic +1408.2287 Statistics Theory +1408.2288 Neural and Evolutionary Computing +1408.2289 Computer Vision and Pattern Recognition +1408.2298 Cell Behavior +1408.2307 Mesoscale and Nanoscale Physics +1408.2308 Solar and Stellar Astrophysics +1408.2309 +1408.2311 Geometric Topology +1408.2312 Quantum Algebra +1408.2314 Neurons and Cognition +1408.2315 Rings and Algebras +1408.2317 Combinatorics +1408.2319 Applications +1408.2320 Computational Engineering, Finance, and Science +1408.2325 Group Theory +1408.2326 History and Overview +1408.2334 Number Theory +1408.2349 Plasma Physics +1408.2350 Data Structures and Algorithms +1408.2351 Combinatorics +1408.2361 Spectral Theory +1408.2366 Theory +1408.2367 +1408.2368 Learning +1408.2370 Other Condensed Matter +1408.2373 Materials Science +1408.2376 Numerical Analysis +1408.2377 Combinatorics +1408.2380 Computer Vision and Pattern Recognition +1408.2384 Analysis of PDEs +1408.2385 Cryptography and Security +1408.2389 Functional Analysis +1408.2392 Mesoscale and Nanoscale Physics +1408.2393 Combinatorics +1408.2395 High Energy Astrophysical Phenomena +1408.2396 Strongly Correlated Electrons +1408.2398 Optimization and Control +1408.2400 Complex Variables +1408.2406 Optimization and Control +1408.2407 Instrumentation and Methods for Astrophysics +1408.2410 Commutative Algebra +1408.2413 Phenomenology +1408.2414 Complex Variables +1408.2416 Optimization and Control +1408.2421 Solar and Stellar Astrophysics +1408.2426 Metric Geometry +1408.2427 +1408.2428 Algebraic Geometry +1408.2429 Combinatorics +1408.2430 Information Retrieval +1408.2431 Cryptography and Security +1408.2436 Computational Geometry +1408.2440 Quantum Gases +1408.2441 Methodology +1408.2448 Metric Geometry +1408.2451 General Physics +1408.2460 Statistical Mechanics +1408.2462 Risk Management +1408.2463 Neurons and Cognition +1408.2464 Optimization and Control +1408.2466 Computation and Language +1408.2468 Databases +1408.2470 Instrumentation and Detectors +1408.2471 Fluid Dynamics +1408.2473 Symbolic Computation +1408.2476 Human-Computer Interaction +1408.2478 Computer Vision and Pattern Recognition +1408.2480 Probability +1408.2489 Statistics Theory +1408.2490 Optimization and Control +1408.2495 +1408.2502 Physics Education +1408.2504 Methodology +0810.5689 Optics +0911.5123 Representation Theory +1001.1294 Cosmology and Nongalactic Astrophysics +1001.4254 Classical Analysis and ODEs +1001.4724 Classical Analysis and ODEs +1003.2992 Classical Analysis and ODEs +1008.0073 Chaotic Dynamics +1010.5228 Geometric Topology +1012.4184 Classical Analysis and ODEs +1012.6044 +1101.1911 Cosmology and Nongalactic Astrophysics +1103.4322 Algebraic Geometry +1104.1563 Algebraic Geometry +1105.3177 Algebraic Geometry +1107.2044 Optics +1111.2026 +1112.3594 Cosmology and Nongalactic Astrophysics +1201.4351 Classical Analysis and ODEs +1203.1493 Optimization and Control +1203.1730 Cryptography and Security +1203.2744 Analysis of PDEs +1203.5240 General Mathematics +1203.6643 Algebraic Geometry +1204.1037 Combinatorics +1204.4256 Dynamical Systems +1205.1052 +1205.3108 Theory +1205.6065 Materials Science +1208.6048 Differential Geometry +1210.4583 +1210.5134 Theory +1211.0125 Superconductivity +1212.3264 Category Theory +1301.1119 Probability +1301.2735 Differential Geometry +1301.6768 Numerical Analysis +1302.6184 +1303.0211 Mesoscale and Nanoscale Physics +1303.0273 +1303.0556 Systems and Control +1303.0824 Phenomenology +1303.7197 Networking and Internet Architecture +1304.1555 +1304.4512 +1304.6529 Dynamical Systems +1304.7351 Analysis of PDEs +1304.7444 +1305.3025 Superconductivity +1305.5276 Geometric Topology +1305.7149 Optics +1306.1806 +1306.5435 Lattice +1307.5106 Physics Education +1307.5985 Materials Science +1307.7162 Strongly Correlated Electrons +1308.1737 +1308.2286 Computational Complexity +1308.3669 Combinatorics +1309.2104 Lattice +1309.3215 +1309.4022 Data Structures and Algorithms +1309.4158 Statistics Theory +1309.4880 Strongly Correlated Electrons +1310.2008 Numerical Analysis +1310.2656 Algebraic Geometry +1310.2948 Theory +1310.4294 Theory +1310.6230 +1310.6563 Strongly Correlated Electrons +1310.8175 Physics and Society +1310.8358 +1311.0281 Cosmology and Nongalactic Astrophysics +1311.0872 +1311.0926 Phenomenology +1311.1791 Superconductivity +1311.2700 Soft Condensed Matter +1311.3315 Learning +1311.3947 Algebraic Geometry +1311.5523 +1311.5923 +1311.6119 Materials Science +1311.6144 Phenomenology +1311.6976 Machine Learning +1311.7043 Solar and Stellar Astrophysics +1311.7644 Quantum Gases +1312.0123 +1312.0937 Astrophysics of Galaxies +1312.1158 Phenomenology +1312.2586 Phenomenology +1312.4899 Cosmology and Nongalactic Astrophysics +1312.5327 Phenomenology +1312.5350 +1312.6172 Disordered Systems and Neural Networks +1312.6381 Mesoscale and Nanoscale Physics +1401.0833 Optics +1401.1016 Information Theory +1401.1099 Operator Algebras +1401.1129 Genomics +1401.1462 Phenomenology +1401.2042 Spectral Theory +1401.2441 Lattice +1401.3248 Astrophysics of Galaxies +1401.3745 Cosmology and Nongalactic Astrophysics +1401.4353 +1401.4467 Phenomenology +1401.4482 +1401.4807 Strongly Correlated Electrons +1401.4819 Astrophysics of Galaxies +1401.4944 Information Theory +1401.5101 Phenomenology +1401.5327 Computation and Language +1401.5474 Solar and Stellar Astrophysics +1401.6067 Theory +1401.6072 +1401.6744 Accelerator Physics +1401.6862 +1401.6897 +1401.7327 Phenomenology +1401.7763 Statistical Mechanics +1402.0119 Machine Learning +1402.0241 Phenomenology +1402.0609 Materials Science +1402.0662 Mesoscale and Nanoscale Physics +1402.0838 Lattice +1402.1123 Phenomenology +1402.1465 Theory +1402.1767 Phenomenology +1402.2527 +1402.2626 Distributed, Parallel, and Cluster Computing +1402.3071 +1402.3620 Phenomenology +1402.4712 Superconductivity +1402.5408 Physics Education +1402.5437 Strongly Correlated Electrons +1402.5501 Phenomenology +1402.5568 Methodology +1402.5831 Materials Science +1402.5985 Phenomenology +1402.6052 Phenomenology +1402.6950 +1402.6997 Theory +1402.7044 Experiment +1402.7071 Quantum Gases +1402.7335 Phenomenology +1402.7360 Phenomenology +1402.7362 Theory +1403.0353 Information Retrieval +1403.0447 Atomic Physics +1403.0526 Strongly Correlated Electrons +1403.0867 Experiment +1403.1250 High Energy Astrophysical Phenomena +1403.1543 Superconductivity +1403.2145 +1403.3058 Theory +1403.3232 Solar and Stellar Astrophysics +1403.3245 High Energy Astrophysical Phenomena +1403.4058 +1403.4097 Solar and Stellar Astrophysics +1403.4386 Astrophysics of Galaxies +1403.4477 Classical Analysis and ODEs +1403.4664 Theory +1403.5804 Data Structures and Algorithms +1403.5892 Phenomenology +1403.6201 Geophysics +1403.7593 Experiment +1403.8116 +1404.0175 Phenomenology +1404.0584 Solar and Stellar Astrophysics +1404.0828 Strongly Correlated Electrons +1404.1815 Solar and Stellar Astrophysics +1404.2171 Phenomenology +1404.2737 Software Engineering +1404.2805 Superconductivity +1404.4365 Earth and Planetary Astrophysics +1404.5278 Computation and Language +1404.5619 Phenomenology +1404.5629 Phenomenology +1404.6280 Analysis of PDEs +1404.6402 Number Theory +1404.6467 Atomic Physics +1404.6641 Materials Science +1404.6993 Physics and Society +1404.7350 Logic +1405.0229 +1405.0335 Strongly Correlated Electrons +1405.0596 Optics +1405.1255 +1405.1697 Strongly Correlated Electrons +1405.2490 General Mathematics +1405.2773 Group Theory +1405.2898 Solar and Stellar Astrophysics +1405.2903 Classical Physics +1405.2904 Optics +1405.2905 History and Philosophy of Physics +1405.2906 Systems and Control +1405.2907 Hardware Architecture +1405.2908 Computer Vision and Pattern Recognition +1405.2909 Hardware Architecture +1405.2910 Distributed, Parallel, and Cluster Computing +1405.2911 Robotics +1405.2912 Operating Systems +1405.2913 Distributed, Parallel, and Cluster Computing +1405.2914 Distributed, Parallel, and Cluster Computing +1405.2915 Distributed, Parallel, and Cluster Computing +1405.2916 Distributed, Parallel, and Cluster Computing +1405.2917 Other Computer Science +1405.2918 Software Engineering +1405.2919 +1405.2933 Theory +1405.2936 Social and Information Networks +1405.2937 Algebraic Geometry +1405.2939 General Topology +1405.2940 General Topology +1405.2941 Computer Vision and Pattern Recognition +1405.2945 Algebraic Geometry +1405.2948 Numerical Analysis +1405.2951 Neurons and Cognition +1405.2954 Instrumentation and Methods for Astrophysics +1405.2955 Complex Variables +1405.2957 Information Theory +1405.2958 Probability +1405.2961 Probability +1405.2962 Information Theory +1405.2970 Accelerator Physics +1405.2973 Algebraic Topology +1405.2974 Classical Analysis and ODEs +1405.2978 Accelerator Physics +1405.2980 Classical Analysis and ODEs +1405.2983 Astrophysics of Galaxies +1405.2985 Classical Analysis and ODEs +1405.2986 Software Engineering +1405.2990 +1405.2991 Astrophysics of Galaxies +1405.2992 Networking and Internet Architecture +1405.2993 Experiment +1405.2994 Probability +1405.2995 Cryptography and Security +1405.2999 Analysis of PDEs +1405.3005 Algebraic Geometry +1405.3006 Cryptography and Security +1405.3007 Materials Science +1405.3010 Mesoscale and Nanoscale Physics +1405.3011 Materials Science +1405.3014 Number Theory +1405.3016 Analysis of PDEs +1405.3017 Software Engineering +1405.3020 Pattern Formation and Solitons +1405.3021 Quantitative Methods +1405.3025 Geometric Topology +1405.3026 Number Theory +1405.3029 Statistics Theory +1405.3033 Computation and Language +1405.3035 Number Theory +1405.3036 Combinatorics +1405.3038 Differential Geometry +1405.3045 Accelerator Physics +1405.3048 Superconductivity +1405.3049 Soft Condensed Matter +1405.3051 Group Theory +1405.3052 Analysis of PDEs +1405.3054 Instrumentation and Methods for Astrophysics +1405.3060 Strongly Correlated Electrons +1405.3064 Solar and Stellar Astrophysics +1405.3065 Soft Condensed Matter +1405.3074 Cosmology and Nongalactic Astrophysics +1405.3075 Algebraic Geometry +1405.3080 Machine Learning +1405.3082 Statistics Theory +1405.3087 Superconductivity +1405.3092 Strongly Correlated Electrons +1405.3093 Social and Information Networks +1405.3094 Robotics +1405.3096 Algebraic Geometry +1405.3099 Programming Languages +1405.3103 Robotics +1405.3104 +1405.3106 Chemical Physics +1405.3112 Solar and Stellar Astrophysics +1405.3116 Differential Geometry +1405.3117 Social and Information Networks +1405.3122 Biological Physics +1405.3125 Fluid Dynamics +1405.3126 Statistics Theory +1405.3132 Combinatorics +1405.3136 Adaptation and Self-Organizing Systems +1405.3137 Information Theory +1405.3142 +1405.3145 Solar and Stellar Astrophysics +1405.3146 Combinatorics +1405.3160 Optics +1405.3162 Machine Learning +1405.3164 Systems and Control +1405.3166 Computational Engineering, Finance, and Science +1405.3167 Learning +1405.3171 +1405.3173 Multimedia +1405.3174 +1405.3175 Artificial Intelligence +1405.3177 Cryptography and Security +1405.3182 Information Theory +1405.3187 +1405.3193 Rings and Algebras +1405.3195 Computer Vision and Pattern Recognition +1405.3199 Cryptography and Security +1405.3206 Analysis of PDEs +1405.3207 Multimedia +1405.3210 Learning +1405.3211 +1405.3215 Theory +1405.3216 Rings and Algebras +1405.3223 Distributed, Parallel, and Cluster Computing +1405.3225 Economics +1405.3229 Learning +1405.3232 Algebraic Geometry +1405.3235 Numerical Analysis +1405.3238 Classical Physics +1405.3240 Software Engineering +1405.3242 Earth and Planetary Astrophysics +1405.3244 Materials Science +1405.3245 Quantum Gases +1405.3249 Earth and Planetary Astrophysics +1405.3253 Earth and Planetary Astrophysics +1405.3254 +1405.3255 Superconductivity +1405.3256 Functional Analysis +1405.3258 Optics +1405.3263 Machine Learning +1405.3264 Numerical Analysis +1405.3271 Combinatorics +1405.3275 Symplectic Geometry +1405.3276 Astrophysics of Galaxies +1405.3277 Physics Education +hep-th/9405200 Theory +math/0311508 Algebraic Geometry +math/0512474 Classical Analysis and ODEs +math/0703066 Algebraic Geometry +0712.3098 Theory +0805.0206 +0902.3579 Earth and Planetary Astrophysics +1004.2484 Information Theory +1006.2273 Pricing of Securities +1007.2906 +1010.5087 Soft Condensed Matter +1106.4961 Biological Physics +1110.3777 Statistics Theory +1110.5605 K-Theory and Homology +1111.1067 Statistics Theory +1112.0213 Neural and Evolutionary Computing +1202.2026 Neural and Evolutionary Computing +1202.5805 Strongly Correlated Electrons +1203.0999 Algebraic Geometry +1204.5540 Machine Learning +1205.0286 Analysis of PDEs +1205.6920 Methodology +1206.0478 Risk Management +1207.0623 +1208.1445 +1208.1787 Algebraic Geometry +1208.5348 Number Theory +1208.6361 +1209.1317 Information Theory +1209.1840 Probability +1209.3713 Dynamical Systems +1209.4466 Strongly Correlated Electrons +1209.5665 +1210.1216 Number Theory +1210.5404 Lattice +1210.5756 Metric Geometry +1210.6561 Solar and Stellar Astrophysics +1211.1999 Combinatorics +1211.5725 +1212.1368 Discrete Mathematics +1212.4472 Differential Geometry +1212.5933 +1301.4240 Methodology +1301.7675 Strongly Correlated Electrons +1302.1456 General Physics +1302.3709 +1303.3284 Cosmology and Nongalactic Astrophysics +1303.4007 Functional Analysis +1303.4467 +1303.4808 Cryptography and Security +1303.5139 Combinatorics +1304.2513 +1304.2866 Superconductivity +1304.2879 +1304.5234 Analysis of PDEs +1304.6177 Instrumentation and Detectors +1304.6221 +1304.7116 Algebraic Geometry +1305.2524 Information Theory +1305.3079 Combinatorics +1305.3868 Theory +1305.5190 +1305.6082 +1305.6359 Mesoscale and Nanoscale Physics +1305.6645 +1306.3244 Cosmology and Nongalactic Astrophysics +1307.0105 +1307.2453 Phenomenology +1307.2909 Mesoscale and Nanoscale Physics +1307.2939 High Energy Astrophysical Phenomena +1307.2943 High Energy Astrophysical Phenomena +1307.3788 Optimization and Control +1307.4406 +1307.4702 +1307.5360 +1307.5368 +1307.5834 Phenomenology +1307.5911 Phenomenology +1307.6554 Phenomenology +1307.7284 Mesoscale and Nanoscale Physics +1308.0347 +1308.0348 +1308.1557 Mesoscale and Nanoscale Physics +1308.2056 Disordered Systems and Neural Networks +1308.2485 Category Theory +1308.2707 Theory +1308.3066 Computational Physics +1308.3410 +1308.3697 Theory +1308.4247 Analysis of PDEs +1308.4384 Experiment +1308.4775 Operator Algebras +1308.5048 +1308.5975 +1308.6213 Phenomenology +1308.6380 Metric Geometry +1308.6560 Phenomenology +1309.0421 +1309.0743 Combinatorics +1309.1786 Quantum Gases +1309.2749 Discrete Mathematics +1309.2838 Solar and Stellar Astrophysics +1309.3259 Instrumentation and Detectors +1309.3278 Mesoscale and Nanoscale Physics +1309.3362 Theory +1309.4017 Experiment +1309.4097 Quantum Gases +1309.4191 Phenomenology +1309.4434 Phenomenology +1309.4492 High Energy Astrophysical Phenomena +1309.4743 Phenomenology +1309.6251 Phenomenology +1309.6275 Computational Physics +1309.6944 +1309.7167 Plasma Physics +1309.7656 Classical Analysis and ODEs +1309.7872 Theory +1309.7926 Atomic Physics +1309.7933 +1310.0673 Solar and Stellar Astrophysics +1310.0862 Phenomenology +1310.1400 Optics +1310.1582 Networking and Internet Architecture +1310.1912 Populations and Evolution +1310.1971 Data Structures and Algorithms +1310.2034 Theory +1310.3122 Theory +1310.3266 Cosmology and Nongalactic Astrophysics +1310.3715 +1310.3964 Materials Science +1310.4886 Theory +1310.4940 High Energy Astrophysical Phenomena +1310.5084 Dynamical Systems +1310.5521 Instrumentation and Detectors +1310.5722 Physics and Society +1310.6003 Statistical Mechanics +1310.6937 Phenomenology +1310.7043 Lattice +1310.7226 Quantitative Methods +1310.8167 +1310.8238 Experiment +1310.8404 Phenomenology +1310.8438 Solar and Stellar Astrophysics +1310.8628 Experiment +1311.0151 Cryptography and Security +1311.0780 Disordered Systems and Neural Networks +1311.1065 Phenomenology +1311.2151 +1311.2559 Lattice +1311.2573 +1311.3107 Phenomenology +1311.3654 Phenomenology +1311.4727 Superconductivity +1311.4965 Phenomenology +1311.5156 Phenomenology +1311.5254 High Energy Astrophysical Phenomena +1311.5306 Number Theory +1311.5498 Lattice +1311.5628 +1311.6143 Statistical Mechanics +1311.6478 Phenomenology +1311.6512 +1311.6937 Theory +1312.0214 Strongly Correlated Electrons +1312.0537 Earth and Planetary Astrophysics +1312.1117 Cosmology and Nongalactic Astrophysics +1312.1259 Rings and Algebras +1312.2150 +1312.2887 Phenomenology +1312.4369 Soft Condensed Matter +1312.5126 Number Theory +1312.6390 Strongly Correlated Electrons +1312.6650 Operating Systems +1312.7063 Strongly Correlated Electrons +1312.7691 Mesoscale and Nanoscale Physics +1401.0098 Theory +1401.0366 Multiagent Systems +1401.1100 Computers and Society +1401.1323 High Energy Astrophysical Phenomena +1401.2090 Statistical Mechanics +1401.3133 Risk Management +1401.3445 Mesoscale and Nanoscale Physics +1401.4207 Fluid Dynamics +1401.4211 Fluid Dynamics +1401.4213 Fluid Dynamics +1401.4525 Algebraic Geometry +1401.6513 Numerical Analysis +1401.7614 Fluid Dynamics +1401.7703 Phenomenology +1401.7758 Software Engineering +1402.0333 Number Theory +1402.0497 Solar and Stellar Astrophysics +1402.0498 Phenomenology +1402.0499 Group Theory +1402.0500 +1402.0509 Earth and Planetary Astrophysics +1402.0514 Phenomenology +1402.0517 General Physics +1402.0518 Classical Analysis and ODEs +1402.0522 +1402.0524 High Energy Astrophysical Phenomena +1402.0525 Information Theory +1402.0527 Theory +1402.0529 +1402.0530 Dynamical Systems +1402.0532 Computational Complexity +1402.0535 Mesoscale and Nanoscale Physics +1402.0537 Exactly Solvable and Integrable Systems +1402.0540 Materials Science +1402.0541 Earth and Planetary Astrophysics +1402.0543 Computation and Language +1402.0544 Combinatorics +1402.0545 Combinatorics +1402.0546 Analysis of PDEs +1402.0548 Cosmology and Nongalactic Astrophysics +1402.0549 Analysis of PDEs +1402.0556 Information Retrieval +1402.0557 Artificial Intelligence +1402.0558 Artificial Intelligence +1402.0559 Artificial Intelligence +1402.0560 Learning +1402.0561 Artificial Intelligence +1402.0563 Computation and Language +1402.0564 Artificial Intelligence +1402.0565 Artificial Intelligence +1402.0566 Artificial Intelligence +1402.0567 Computer Science and Game Theory +1402.0568 Artificial Intelligence +1402.0569 Artificial Intelligence +1402.0570 Learning +1402.0571 Artificial Intelligence +1402.0572 Computer Science and Game Theory +1402.0573 Artificial Intelligence +1402.0574 Computation and Language +1402.0575 Artificial Intelligence +1402.0576 Databases +1402.0577 Learning +1402.0578 Computation and Language +1402.0579 Artificial Intelligence +1402.0580 Computer Science and Game Theory +1402.0581 Artificial Intelligence +1402.0582 Artificial Intelligence +1402.0583 Computer Science and Game Theory +1402.0584 Artificial Intelligence +1402.0585 Artificial Intelligence +1402.0586 Computation and Language +1402.0587 Artificial Intelligence +1402.0588 Artificial Intelligence +1402.0590 Artificial Intelligence +1402.0591 Artificial Intelligence +1402.0593 Analysis of PDEs +1402.0595 Computer Vision and Pattern Recognition +1402.0597 Soft Condensed Matter +1402.0598 Number Theory +1402.0601 Cryptography and Security +1402.0606 Statistics Theory +1402.0611 Metric Geometry +1402.0613 Functional Analysis +1402.0618 Experiment +1402.0619 Statistical Mechanics +1402.0620 Number Theory +1402.0621 Optics +1402.0622 Symbolic Computation +1402.0628 Phenomenology +1402.0630 Computers and Society +1402.0631 Operating Systems +1402.0632 Genomics +1402.0636 Probability +1402.0638 Instrumentation and Methods for Astrophysics +1402.0641 +1402.0642 Numerical Analysis +1402.0645 Learning +1402.0648 Information Theory +1402.0653 +1402.0663 Differential Geometry +1402.0668 Combinatorics +1402.0669 Astrophysics of Galaxies +1402.0670 Software Engineering +1402.0671 Programming Languages +1402.0672 Human-Computer Interaction +1402.0674 Dynamical Systems +1402.0676 Materials Science +1402.0678 Phenomenology +1402.0679 Chemical Physics +1402.0680 Phenomenology +1402.0686 Statistics Theory +1402.0690 +1402.0693 Human-Computer Interaction +1402.0696 Distributed, Parallel, and Cluster Computing +1402.0699 Statistics Theory +1402.0703 Theory +1402.0708 Neural and Evolutionary Computing +1402.0709 Experiment +1402.0720 Number Theory +1402.0722 Statistics Theory +1402.0727 Representation Theory +1402.0729 Information Theory +1402.0730 Chemical Physics +1402.0734 Mesoscale and Nanoscale Physics +1402.0735 Space Physics +1402.0736 Networking and Internet Architecture +1402.0739 Mesoscale and Nanoscale Physics +1402.0743 Statistics Theory +1402.0748 Dynamical Systems +1402.0751 Solar and Stellar Astrophysics +1402.0753 Dynamical Systems +1402.0759 K-Theory and Homology +1402.0763 Spectral Theory +1402.0766 High Energy Astrophysical Phenomena +1402.0769 Fluid Dynamics +1402.0780 Software Engineering +1402.0784 Logic +1402.0785 Computer Vision and Pattern Recognition +1402.0787 Phenomenology +1402.0789 Phenomenology +1402.0794 Computer Science and Game Theory +1402.0795 History and Overview +1402.0796 Learning +1402.0797 Functional Analysis +1402.0804 Distributed, Parallel, and Cluster Computing +1402.0812 Multimedia +1402.0816 Optics +1402.0824 Solar and Stellar Astrophysics +1402.0829 Functional Analysis +1402.0834 Probability +1402.0837 Phenomenology +1402.0839 Algebraic Geometry +1402.0841 Dynamical Systems +1402.0843 Differential Geometry +1402.0844 Statistics Theory +1402.0845 Statistics Theory +1402.0854 Space Physics +1402.0856 Cryptography and Security +1402.0857 Phenomenology +1402.0858 Computational Complexity +1402.0861 Combinatorics +1402.0862 Computer Science and Game Theory +cs/0610010 Databases +math/9802118 Quantum Algebra +0711.1380 +0907.0774 Data Structures and Algorithms +1004.3165 Computational Complexity +1102.0334 Algebraic Topology +1104.5644 Number Theory +1106.6146 +1107.2189 +1206.5498 Algebraic Geometry +1207.6987 +1209.2593 Theory +1209.2819 Strongly Correlated Electrons +1210.3779 +1211.0721 +1211.1356 Rings and Algebras +1212.0941 Adaptation and Self-Organizing Systems +1212.3718 +1212.6617 Group Theory +1301.0498 +1301.4078 Commutative Algebra +1302.7289 Networking and Internet Architecture +1303.6618 Analysis of PDEs +1304.0356 Optimization and Control +1305.1543 +1305.2106 Other Condensed Matter +1305.2789 Information Theory +1305.4735 Atomic Physics +1305.6955 Soft Condensed Matter +1306.4683 +1306.5469 Classical Analysis and ODEs +1307.0252 Methodology +1307.0452 +1307.1311 Soft Condensed Matter +1307.1530 +1307.7480 Lattice +1308.0452 Phenomenology +1308.2882 +1308.6027 Analysis of PDEs +1309.0035 Statistical Mechanics +1309.1974 Analysis of PDEs +1309.3244 Phenomenology +1309.6978 Distributed, Parallel, and Cluster Computing +1309.7979 Emerging Technologies +1310.0192 Probability +1310.2436 Algebraic Geometry +1310.2515 Probability +1310.2968 Populations and Evolution +1310.4095 +1310.5281 Superconductivity +1310.5329 Strongly Correlated Electrons +1310.6496 Strongly Correlated Electrons +1311.0177 Cosmology and Nongalactic Astrophysics +1311.1590 +1311.3297 +1311.3471 Statistical Mechanics +1311.3516 Superconductivity +1311.6666 Experiment +1311.7237 Information Theory +1312.4156 +1312.6378 Algebraic Topology +1312.6608 Experiment +1312.7386 Algebraic Geometry +1401.0798 Numerical Analysis +1401.0990 +1401.1314 Statistical Mechanics +1401.1871 Mesoscale and Nanoscale Physics +1401.2202 Group Theory +1401.4265 Theory +1401.4480 Optimization and Control +1401.4720 Symbolic Computation +1401.5046 Representation Theory +1401.6235 Numerical Analysis +1402.1162 Classical Physics +1402.1276 Strongly Correlated Electrons +1402.3554 Theory +1402.4108 Cosmology and Nongalactic Astrophysics +1402.5146 Chaotic Dynamics +1402.5392 Mesoscale and Nanoscale Physics +1402.6496 Metric Geometry +1402.6898 Soft Condensed Matter +1403.0143 +1403.0239 Mesoscale and Nanoscale Physics +1403.0504 Artificial Intelligence +1403.0561 +1403.1161 Atomic Physics +1403.2402 +1403.3264 Phenomenology +1403.3608 Strongly Correlated Electrons +1403.3612 Phenomenology +1403.5987 Statistical Mechanics +1403.6769 Statistics Theory +1403.6963 +1403.7607 Earth and Planetary Astrophysics +1403.7995 Materials Science +1404.0251 Phenomenology +1404.0794 Theory +1404.0829 Number Theory +1404.1229 +1404.1637 Operating Systems +1404.4454 +1404.5546 Materials Science +1404.5621 +1404.6035 Functional Analysis +1404.6119 Phenomenology +1404.6130 +1405.0525 High Energy Astrophysical Phenomena +1405.1166 Superconductivity +1405.4070 Cellular Automata and Lattice Gases +1405.5231 Soft Condensed Matter +1405.7034 Mesoscale and Nanoscale Physics +1405.7363 +1406.2559 Algebraic Geometry +1406.4161 Digital Libraries +1406.4606 Materials Science +1406.4818 Neurons and Cognition +1406.4961 High Energy Astrophysical Phenomena +1406.5414 Probability +1406.5844 Superconductivity +1406.6032 Strongly Correlated Electrons +1406.6261 Materials Science +1406.6270 Information Theory +1406.6296 Phenomenology +1406.6889 Computational Geometry +1406.7331 Geometric Topology +1406.7635 Computational Physics +1407.0566 Human-Computer Interaction +1407.0975 Programming Languages +1407.2254 High Energy Astrophysical Phenomena +1407.2537 Symbolic Computation +1407.2565 Distributed, Parallel, and Cluster Computing +1407.2581 Instrumentation and Detectors +1407.2605 Superconductivity +1407.2610 Solar and Stellar Astrophysics +1407.2611 Number Theory +1407.2619 Earth and Planetary Astrophysics +1407.2628 Information Theory +1407.2630 Computer Vision and Pattern Recognition +1407.2632 History and Philosophy of Physics +1407.2635 Methodology +1407.2644 Classical Analysis and ODEs +1407.2646 Artificial Intelligence +1407.2648 Astrophysics of Galaxies +1407.2649 Computer Vision and Pattern Recognition +1407.2659 Representation Theory +1407.2661 Rings and Algebras +1407.2664 Representation Theory +1407.2665 Representation Theory +1407.2667 Statistical Mechanics +1407.2672 Representation Theory +1407.2673 Representation Theory +1407.2674 Learning +1407.2675 Representation Theory +1407.2677 General Finance +1407.2680 Combinatorics +1407.2683 Social and Information Networks +1407.2686 Materials Science +1407.2688 Geometric Topology +1407.2690 Representation Theory +1407.2691 Representation Theory +1407.2692 Representation Theory +1407.2694 Computation and Language +1407.2695 Analysis of PDEs +1407.2697 Learning +1407.2700 Computer Vision and Pattern Recognition +1407.2705 Multiagent Systems +1407.2709 Optimization and Control +1407.2710 Learning +1407.2712 Functional Analysis +1407.2714 Optics +1407.2715 Optics +1407.2717 Networking and Internet Architecture +1407.2718 Instrumentation and Detectors +1407.2723 Symbolic Computation +1407.2727 Phenomenology +1407.2728 Probability +1407.2729 Multimedia +1407.2730 Optimization and Control +1407.2731 Applications +1407.2732 Genomics +1407.2736 Learning +1407.2741 Solar and Stellar Astrophysics +1407.2743 Analysis of PDEs +1407.2744 Optimization and Control +1407.2746 Functional Analysis +1407.2747 Networking and Internet Architecture +1407.2749 Phenomenology +1407.2751 Cosmology and Nongalactic Astrophysics +1407.2754 Applications +1407.2755 Classical Analysis and ODEs +1407.2770 Rings and Algebras +1407.2776 Computer Vision and Pattern Recognition +1407.2777 +1407.2778 +1407.2779 Algebraic Geometry +1407.2782 Classical Analysis and ODEs +1407.2786 Analysis of PDEs +1407.2788 +1407.2790 Differential Geometry +1407.2795 Computational Engineering, Finance, and Science +1407.2796 Astrophysics of Galaxies +1407.2799 Commutative Algebra +1407.2802 Symbolic Computation +1407.2806 Learning +1407.2807 Human-Computer Interaction +1407.2812 Machine Learning +1407.2815 Phenomenology +1407.2818 Analysis of PDEs +1407.2821 Phenomenology +1407.2823 Combinatorics +1407.2824 Number Theory +1407.2827 Digital Libraries +1407.2829 Combinatorics +1407.2832 +1407.2837 Social and Information Networks +1407.2838 Functional Analysis +1407.2843 Solar and Stellar Astrophysics +1407.2844 Data Structures and Algorithms +1407.2845 Databases +1407.2847 Mesoscale and Nanoscale Physics +1407.2852 Quantum Gases +1407.2855 Computer Science and Game Theory +1407.2858 History and Philosophy of Physics +1407.2864 Computation +1407.2867 Mesoscale and Nanoscale Physics +1407.2870 Differential Geometry +1407.2874 Analysis of PDEs +1407.2877 Cryptography and Security +1407.2879 Probability +1407.2881 Optics +1407.2883 Social and Information Networks +1407.2889 Distributed, Parallel, and Cluster Computing +1407.2894 Combinatorics +1407.2899 Databases +1407.2902 Group Theory +1407.2904 Machine Learning +1407.2905 Software Engineering +1407.2907 Data Structures and Algorithms +1407.2917 Neurons and Cognition +1407.2918 Computation and Language +1407.2919 Information Retrieval +1407.2929 Computational Complexity +cs/0609005 Computational Complexity +gr-qc/0509059 +quant-ph/0211091 +quant-ph/0506093 +0708.3398 Category Theory +1005.0644 Computational Complexity +1102.2601 Commutative Algebra +1104.3726 Algebraic Topology +1105.0582 +1107.4718 Geometric Topology +1108.2450 Differential Geometry +1110.1255 Atomic Physics +1110.5994 Differential Geometry +1112.2125 Dynamical Systems +1205.4459 Mesoscale and Nanoscale Physics +1207.0303 +1207.5211 Distributed, Parallel, and Cluster Computing +1210.5228 Dynamical Systems +1210.8421 Performance +1302.4768 Mesoscale and Nanoscale Physics +1302.4860 +1303.2962 Methodology +1303.3120 Group Theory +1303.6668 Methodology +1304.2942 Trading and Market Microstructure +1304.6309 Methodology +1304.7564 Differential Geometry +1305.2210 Mesoscale and Nanoscale Physics +1305.4332 Analysis of PDEs +1305.4374 Classical Analysis and ODEs +1305.5483 Networking and Internet Architecture +1306.2764 Differential Geometry +1306.3895 Learning +1307.1313 Theory +1307.5205 Phenomenology +1307.6538 +1308.2634 Materials Science +1308.4041 Materials Science +1308.4199 Dynamical Systems +1308.6511 Phenomenology +1309.2619 Mesoscale and Nanoscale Physics +1309.3793 Statistical Mechanics +1309.5337 Genomics +1309.5374 Phenomenology +1309.5680 Physics and Society +1310.0409 General Topology +1310.0491 Optimization and Control +1310.0693 Cosmology and Nongalactic Astrophysics +1310.0826 Soft Condensed Matter +1310.1135 Probability +1310.4840 Materials Science +1310.6293 Number Theory +1310.6788 Theory +1310.7694 Differential Geometry +1310.7819 Mesoscale and Nanoscale Physics +1310.7908 Statistical Mechanics +1310.8173 +1311.0131 Metric Geometry +1311.3623 Data Structures and Algorithms +1311.4520 Theory +1311.4590 +1311.5297 Phenomenology +1311.7341 Soft Condensed Matter +1311.7579 Data Analysis, Statistics and Probability +1312.1592 Statistical Mechanics +1312.2017 +1312.4246 Representation Theory +1312.4712 Number Theory +1312.5221 Cosmology and Nongalactic Astrophysics +1312.5935 Strongly Correlated Electrons +1312.6813 Numerical Analysis +1401.0596 +1401.3531 Learning +1401.4112 Computer Vision and Pattern Recognition +1401.4292 +1401.4632 Statistical Mechanics +1402.0276 Operator Algebras +1402.0445 Phenomenology +1402.1105 Statistical Mechanics +1402.2457 Solar and Stellar Astrophysics +1402.2506 +1402.3114 Superconductivity +1402.4612 Information Theory +1402.6004 Materials Science +1402.6527 Soft Condensed Matter +1403.1532 Experiment +1403.2367 Soft Condensed Matter +1403.2681 Theory +1403.3076 Instrumentation and Methods for Astrophysics +1403.3503 +1403.4222 Cosmology and Nongalactic Astrophysics +1403.5371 Combinatorics +1403.6968 Databases +1404.0157 Algebraic Geometry +1404.0388 Cosmology and Nongalactic Astrophysics +1404.1930 Astrophysics of Galaxies +1404.2215 Atomic Physics +1404.2834 Mesoscale and Nanoscale Physics +1404.3272 Distributed, Parallel, and Cluster Computing +1404.3721 Digital Libraries +1404.3876 Combinatorics +1404.4162 Astrophysics of Galaxies +1404.4814 Data Structures and Algorithms +1404.5084 Logic in Computer Science +1404.5138 Computational Finance +1404.6273 Symplectic Geometry +1404.6851 Information Theory +1404.7721 Probability +1404.7793 Number Theory +1405.0220 Optics +1405.0546 Artificial Intelligence +1405.0799 Combinatorics +1405.1280 Differential Geometry +1405.1533 Statistics Theory +1405.1757 Materials Science +1405.1800 Phenomenology +1405.1824 Probability +1405.1833 Logic in Computer Science +1405.2076 Astrophysics of Galaxies +1405.2082 Phenomenology +1405.2086 Algebraic Topology +1405.2088 Computers and Society +1405.2094 Methodology +1405.2096 Numerical Analysis +1405.2099 +1405.2102 Learning +1405.2103 Optics +1405.2104 Instrumentation and Methods for Astrophysics +1405.2106 Information Theory +1405.2108 Number Theory +1405.2110 Algebraic Geometry +1405.2113 Information Theory +1405.2114 Experiment +1405.2119 Number Theory +1405.2121 Analysis of PDEs +1405.2126 Analysis of PDEs +1405.2128 Computer Vision and Pattern Recognition +1405.2129 Combinatorics +1405.2134 Methodology +1405.2136 +1405.2137 Chemical Physics +1405.2139 Fluid Dynamics +1405.2146 +1405.2149 Solar and Stellar Astrophysics +1405.2152 Materials Science +1405.2157 Other Computer Science +1405.2158 Solar and Stellar Astrophysics +1405.2159 Solar and Stellar Astrophysics +1405.2161 Geometric Topology +1405.2162 Probability +1405.2163 Information Theory +1405.2166 Analysis of PDEs +1405.2168 Neural and Evolutionary Computing +1405.2175 Combinatorics +1405.2176 Combinatorics +1405.2185 Physics and Society +1405.2196 Soft Condensed Matter +1405.2197 Combinatorics +1405.2199 Discrete Mathematics +1405.2200 Methodology +1405.2204 High Energy Astrophysical Phenomena +1405.2210 Information Retrieval +1405.2212 Information Retrieval +1405.2216 Networking and Internet Architecture +1405.2218 Mesoscale and Nanoscale Physics +1405.2220 Trading and Market Microstructure +1405.2221 Information Theory +1405.2223 Analysis of PDEs +1405.2224 Metric Geometry +1405.2225 Combinatorics +1405.2227 Computer Vision and Pattern Recognition +1405.2233 Statistical Mechanics +1405.2234 Logic +1405.2235 Combinatorics +1405.2239 Probability +1405.2241 Phenomenology +1405.2244 General Topology +1405.2246 Computer Vision and Pattern Recognition +1405.2249 +1405.2251 Materials Science +1405.2254 High Energy Astrophysical Phenomena +1405.2255 Instrumentation and Methods for Astrophysics +1405.2257 Rings and Algebras +1405.2259 Earth and Planetary Astrophysics +1405.2262 Neural and Evolutionary Computing +1405.2263 Phenomenology +1405.2265 Number Theory +1405.2269 Optics +1405.2278 Learning +1405.2281 Distributed, Parallel, and Cluster Computing +1405.2285 Mesoscale and Nanoscale Physics +1405.2287 Geophysics +1405.2289 General Physics +1405.2291 Differential Geometry +1405.2299 Representation Theory +1405.2300 Computational Geometry +1405.2301 Metric Geometry +1405.2305 Other Computer Science +1405.2307 Spectral Theory +1405.2308 Medical Physics +1405.2309 Atmospheric and Oceanic Physics +1405.2314 Quantum Algebra +1405.2316 Computer Vision and Pattern Recognition +1405.2319 Theory +1405.2320 Dynamical Systems +1405.2327 Functional Analysis +1405.2330 Networking and Internet Architecture +gr-qc/0111110 +gr-qc/0112025 +gr-qc/0201097 +gr-qc/0303107 +0708.1956 +0711.0740 Data Analysis, Statistics and Probability +0901.4752 Computation +0912.0219 Analysis of PDEs +0912.3308 Classical Analysis and ODEs +1001.5424 Theory +1002.2076 Differential Geometry +1004.1240 Operator Algebras +1006.1301 Physics and Society +1006.2301 Theory +1007.2946 Representation Theory +1007.4875 General Physics +1009.0971 Databases +1009.1314 Theory +1011.1247 Operator Algebras +1101.3457 Information Theory +1102.5142 Combinatorics +1109.6377 K-Theory and Homology +1110.6355 Theory +1111.2783 Combinatorics +1112.0376 Combinatorics +1202.3653 Information Theory +1202.5136 +1203.1075 Algebraic Geometry +1204.0830 Information Theory +1205.1170 Combinatorics +1205.3199 Algebraic Geometry +1205.5793 Probability +1205.6234 Probability +1210.6560 Classical Analysis and ODEs +1211.5278 Representation Theory +1212.0849 Applications +1212.1475 Probability +1212.1951 Disordered Systems and Neural Networks +1212.2594 Analysis of PDEs +1212.4873 +1301.1309 Differential Geometry +1301.3322 Number Theory +1301.7157 Cosmology and Nongalactic Astrophysics +1302.2875 Information Theory +1302.5569 Differential Geometry +1303.1865 K-Theory and Homology +1303.1938 Statistical Mechanics +1304.1049 Analysis of PDEs +1304.2843 Complex Variables +1305.1085 Atmospheric and Oceanic Physics +1306.0039 Computational Geometry +1306.5796 Computational Geometry +1307.6123 Statistical Mechanics +1308.0417 Statistics Theory +1308.3922 Atmospheric and Oceanic Physics +1308.5393 Combinatorics +1309.1013 Geometric Topology +1309.3781 Analysis of PDEs +1309.3986 Mesoscale and Nanoscale Physics +1309.4384 Number Theory +1309.7108 Numerical Analysis +1309.7858 Group Theory +1310.0993 Dynamical Systems +1310.1480 Differential Geometry +1310.3673 Computational Complexity +1310.4425 Statistical Mechanics +1310.5363 Computational Complexity +1310.6128 Analysis of PDEs +1310.6946 Fluid Dynamics +1310.7688 Mesoscale and Nanoscale Physics +1311.0219 Machine Learning +1311.2279 Complex Variables +1311.4113 Mesoscale and Nanoscale Physics +1311.4663 Algebraic Topology +1311.6763 Dynamical Systems +1311.6785 Physics and Society +1312.1414 +1312.1562 Probability +1312.2749 Mesoscale and Nanoscale Physics +1312.5228 Statistical Mechanics +1312.5352 Chemical Physics +1312.7724 Systems and Control +1401.2041 Statistical Mechanics +1401.2611 Algebraic Geometry +1401.5606 Numerical Analysis +1401.8290 Molecular Networks +1402.1100 Commutative Algebra +1402.2801 Computer Science and Game Theory +1402.4167 Atomic Physics +1402.5427 Theory +1403.0148 Materials Science +1403.1023 Information Theory +1403.1138 Statistical Mechanics +1403.1459 Classical Physics +1403.3932 Materials Science +1403.6038 +1403.7425 Number Theory +1403.7760 Logic in Computer Science +1403.7975 Complex Variables +1404.1090 Analysis of PDEs +1404.2419 Classical Analysis and ODEs +1404.3443 Cosmology and Nongalactic Astrophysics +1404.5476 Chemical Physics +1404.5622 Quantum Gases +1404.5995 Materials Science +1404.7352 Experiment +1405.1702 Combinatorics +1405.2857 Physics and Society +1405.5003 Software Engineering +1405.5423 Number Theory +1405.6553 Statistical Mechanics +1405.7232 Strongly Correlated Electrons +1406.0230 Classical Analysis and ODEs +1406.0440 Networking and Internet Architecture +1406.0589 +1406.1260 Phenomenology +1406.2352 Earth and Planetary Astrophysics +1406.3314 Earth and Planetary Astrophysics +1406.3660 Experiment +1406.4855 Algebraic Geometry +1406.6253 Theory +1406.6594 Disordered Systems and Neural Networks +1406.6761 Optimization and Control +1407.0029 Strongly Correlated Electrons +1407.0749 Learning +1407.2010 Astrophysics of Galaxies +1407.3086 +1407.4733 Analysis of PDEs +1407.5100 Functional Analysis +1407.5502 Analysis of PDEs +1407.6927 Statistical Mechanics +1408.0858 Commutative Algebra +1408.3565 Phenomenology +1408.4764 +1408.5812 Geometric Topology +1408.6170 Functional Analysis +1408.6252 Data Structures and Algorithms +1408.6270 Dynamical Systems +1408.6481 Analysis of PDEs +1408.6697 +1409.0101 Other Condensed Matter +1409.1848 Materials Science +1409.3128 High Energy Astrophysical Phenomena +1409.5907 Other Computer Science +1409.7694 Cosmology and Nongalactic Astrophysics +1409.7783 Differential Geometry +1409.8138 Phenomenology +1410.0047 Analysis of PDEs +1410.0160 Materials Science +1410.0650 Systems and Control +1410.0660 Analysis of PDEs +1410.1534 Phenomenology +1410.1638 Probability +1410.1735 Cryptography and Security +1410.1803 Combinatorics +1410.1858 Phenomenology +1410.1871 Optics +1410.1872 Fluid Dynamics +1410.1885 Chemical Physics +1410.1889 Algebraic Geometry +1410.1890 Numerical Analysis +1410.1896 Fluid Dynamics +1410.1897 Materials Science +1410.1898 Materials Science +1410.1901 Networking and Internet Architecture +1410.1903 Distributed, Parallel, and Cluster Computing +1410.1904 Atomic Physics +1410.1905 Information Theory +1410.1906 Complex Variables +1410.1911 Probability +1410.1914 Fluid Dynamics +1410.1915 Fluid Dynamics +1410.1916 Atomic Physics +1410.1917 Soft Condensed Matter +1410.1918 Fluid Dynamics +1410.1920 Computer Science and Game Theory +1410.1921 Fluid Dynamics +1410.1923 Fluid Dynamics +1410.1924 Information Theory +1410.1926 Phenomenology +1410.1928 +1410.1932 Methodology +1410.1935 Fluid Dynamics +1410.1937 Fluid Dynamics +1410.1939 Networking and Internet Architecture +1410.1940 Learning +1410.1941 Systems and Control +1410.1942 Fluid Dynamics +1410.1946 Fluid Dynamics +1410.1950 Robotics +1410.1952 Fluid Dynamics +1410.1953 Instrumentation and Detectors +1410.1958 Functional Analysis +1410.1971 Geometric Topology +1410.1974 Astrophysics of Galaxies +1410.1975 Functional Analysis +1410.1978 +1410.1985 Applications +1410.1986 Logic +1410.1987 Instrumentation and Detectors +1410.1988 Materials Science +1410.1991 Analysis of PDEs +1410.1995 Software Engineering +1410.1998 Numerical Analysis +1410.1999 Mesoscale and Nanoscale Physics +1410.2000 Mesoscale and Nanoscale Physics +1410.2003 Mesoscale and Nanoscale Physics +1410.2005 Number Theory +1410.2007 Spectral Theory +1410.2010 Phenomenology +1410.2012 Phenomenology +1410.2013 Networking and Internet Architecture +1410.2014 +1410.2017 Spectral Theory +1410.2019 Materials Science +1410.2020 Spectral Theory +1410.2023 Cryptography and Security +1410.2027 Mesoscale and Nanoscale Physics +1410.2034 Risk Management +1410.2038 Mesoscale and Nanoscale Physics +1410.2042 Phenomenology +1410.2045 Computation and Language +1410.2047 Materials Science +1410.2048 Mesoscale and Nanoscale Physics +1410.2052 Geometric Topology +1410.2053 Solar and Stellar Astrophysics +1410.2054 Number Theory +1410.2055 High Energy Astrophysical Phenomena +1410.2056 Artificial Intelligence +1410.2058 Networking and Internet Architecture +1410.2063 Artificial Intelligence +1410.2064 +1410.2067 Theory +1410.2068 Cell Behavior +1410.2074 Combinatorics +1410.2078 Atomic and Molecular Clusters +1410.2081 Astrophysics of Galaxies +1410.2085 Information Retrieval +1410.2088 Optics +1410.2094 Physics and Society +1410.2095 Numerical Analysis +1410.2096 Strongly Correlated Electrons +1410.2099 Phenomenology +1410.2100 Multimedia +1410.2101 Instrumentation and Methods for Astrophysics +1410.2108 General Physics +1410.2109 Probability +1410.2110 Lattice +1410.2113 Statistics Theory +1410.2116 Disordered Systems and Neural Networks +1410.2118 Statistics Theory +1410.2122 Group Theory +1410.2123 Cryptography and Security +1410.2131 Cryptography and Security +1410.2134 +1410.2135 Networking and Internet Architecture +1410.2136 Representation Theory +1410.2139 Materials Science +1410.2142 Combinatorics +1410.2145 Number Theory +1410.2146 Information Theory +1410.2148 +1410.2149 Computation and Language +1410.2150 Statistics Theory +1410.2151 Soft Condensed Matter +1410.2153 Numerical Analysis +1410.2168 Systems and Control +1410.2173 Computer Vision and Pattern Recognition +1410.2175 Computer Vision and Pattern Recognition +1410.2179 Numerical Analysis +1410.2180 Quantum Algebra +1410.2181 Rings and Algebras +1410.2186 Materials Science +1410.2187 Numerical Analysis +1410.2191 Learning +1410.2193 Combinatorics +1410.2195 Computational Geometry +1410.2198 Combinatorics +1410.2202 Numerical Analysis +1410.2205 Computers and Society +1410.2208 Distributed, Parallel, and Cluster Computing +1410.2209 Data Structures and Algorithms +1410.2210 Soft Condensed Matter +1410.2211 Quantum Algebra +1410.2214 Phenomenology +1410.2215 Soft Condensed Matter +1410.2217 Digital Libraries +1410.2232 Atomic Physics +acc-phys/9503004 Accelerator Physics +hep-th/9605110 Theory +quant-ph/0611268 +0801.2455 Analysis of PDEs +0801.3407 +0801.3411 +0803.1235 Functional Analysis +0806.1182 +0811.1508 +0902.3598 Differential Geometry +0902.4373 Analysis of PDEs +0907.5398 Dynamical Systems +0910.0743 Dynamical Systems +0911.0535 Differential Geometry +1003.1525 Analysis of PDEs +1004.1968 Differential Geometry +1004.3262 Other Computer Science +1005.4294 +1006.2959 +1006.3700 Quantum Algebra +1006.4910 Computer Vision and Pattern Recognition +1009.2011 Algebraic Geometry +1009.4305 Analysis of PDEs +1010.0299 Dynamical Systems +1012.2048 Differential Geometry +1012.3385 Mesoscale and Nanoscale Physics +1101.0050 Number Theory +1102.1202 Analysis of PDEs +1103.1805 Probability +1104.3559 Quantitative Methods +1105.4296 Analysis of PDEs +1105.5927 +1105.6269 +1106.2090 Metric Geometry +1106.3848 +1107.0861 Instrumentation and Detectors +1107.2316 +1107.2700 Data Structures and Algorithms +1107.4987 +1108.0631 Computation and Language +1108.4108 +1108.5867 Disordered Systems and Neural Networks +1108.6118 Number Theory +1109.0150 +1109.1442 Number Theory +1109.6247 +1109.6831 Experiment +1110.0342 Instrumentation and Detectors +1110.3472 Atomic Physics +1110.4714 Number Theory +1110.6541 Differential Geometry +1111.3730 Analysis of PDEs +1112.1301 +1112.5507 Optimization and Control +1201.1778 +1201.2350 Analysis of PDEs +1201.2367 Analysis of PDEs +1202.1091 Rings and Algebras +1202.3272 +1203.4936 Theory +1206.0211 +1206.0952 Disordered Systems and Neural Networks +1206.2557 Statistics Theory +1207.2725 Analysis of PDEs +1207.3156 Strongly Correlated Electrons +1207.6030 +1208.0852 Mesoscale and Nanoscale Physics +1208.1035 Information Theory +1208.1912 Mesoscale and Nanoscale Physics +1208.4195 Number Theory +1208.6563 +1209.1261 Quantum Algebra +1210.1351 Classical Analysis and ODEs +1210.1871 Methodology +1210.2198 Probability +1210.3507 Representation Theory +1210.6813 Other Condensed Matter +1211.2674 Experiment +1211.5996 Number Theory +1212.3385 Numerical Analysis +1212.4632 Analysis of PDEs +1212.5676 +1212.5678 Atomic Physics +1301.0533 Methodology +1301.2930 Algebraic Geometry +1301.3798 Probability +1301.4533 Biological Physics +1301.4553 +1301.6146 Superconductivity +1301.6352 +1302.0225 Probability +1302.2442 Algebraic Geometry +1302.2864 Experiment +1302.4483 +1302.5525 High Energy Astrophysical Phenomena +1303.0737 Experiment +1303.1183 Cosmology and Nongalactic Astrophysics +1303.5880 +1303.6394 High Energy Astrophysical Phenomena +1304.1873 Phenomenology +1305.2707 +1306.2577 Experiment +1306.5885 Chemical Physics +1306.6723 Experiment +1306.6909 Optimization and Control +1307.1054 Metric Geometry +1307.1159 Mesoscale and Nanoscale Physics +1307.1985 Experiment +1307.3141 Theory +1307.3237 +1307.3326 Probability +1307.3659 Superconductivity +1307.4861 Group Theory +1307.6165 Experiment +1307.6796 +1307.7569 Physics and Society +1307.7738 Theory +1307.8137 Statistics Theory +1308.0576 Probability +1308.0738 Strongly Correlated Electrons +1308.0961 Experiment +1308.1707 Experiment +1308.4477 Networking and Internet Architecture +1309.1225 Analysis of PDEs +1309.1737 Numerical Analysis +1309.2243 Cosmology and Nongalactic Astrophysics +1309.2976 Materials Science +1309.3441 Combinatorics +1309.4961 Discrete Mathematics +1309.5305 Cosmology and Nongalactic Astrophysics +1309.5858 Fluid Dynamics +1309.6041 Robotics +1309.6666 Numerical Analysis +1309.7089 Soft Condensed Matter +1310.3925 Chemical Physics +1310.5772 Strongly Correlated Electrons +1310.7801 Distributed, Parallel, and Cluster Computing +1310.8611 Analysis of PDEs +1311.0250 Quantum Gases +1311.0964 Mesoscale and Nanoscale Physics +1311.2843 +1311.4703 Information Theory +1311.4909 Superconductivity +1311.5488 Commutative Algebra +1311.5626 Representation Theory +1311.5646 Number Theory +1311.6734 +1311.7612 +1312.0120 Combinatorics +1312.0255 Number Theory +1312.1076 Soft Condensed Matter +1312.1238 Quantum Gases +1312.1302 Phenomenology +1312.1979 Strongly Correlated Electrons +1312.2677 Other Condensed Matter +1312.3558 Phenomenology +1312.4519 Strongly Correlated Electrons +1312.5495 Phenomenology +1312.5534 +1312.5786 +1312.7044 Differential Geometry +1312.7631 Mesoscale and Nanoscale Physics +1312.7639 Analysis of PDEs +1312.7837 Number Theory +1312.7872 +1401.0368 +1401.0658 General Physics +1401.2167 Strongly Correlated Electrons +1401.2664 Analysis of PDEs +1401.3425 Dynamical Systems +1401.4832 Quantitative Methods +1401.7052 Probability +1401.7592 Computational Physics +1401.8002 +1402.0080 Metric Geometry +1402.4324 Cosmology and Nongalactic Astrophysics +1402.5089 Mesoscale and Nanoscale Physics +1402.5560 Operator Algebras +1402.6459 Logic in Computer Science +1402.6798 Cosmology and Nongalactic Astrophysics +1403.1504 +1403.2436 High Energy Astrophysical Phenomena +1403.2580 Information Theory +1403.2696 Mesoscale and Nanoscale Physics +1403.4696 Optimization and Control +1403.4813 Distributed, Parallel, and Cluster Computing +1404.0440 Optics +1404.1025 Quantum Gases +1404.1472 General Mathematics +1404.1587 Subcellular Processes +1404.2830 Mesoscale and Nanoscale Physics +1404.4628 Algebraic Geometry +1404.5665 Logic in Computer Science +1404.6716 Superconductivity +1404.7018 Analysis of PDEs +1404.7067 Logic in Computer Science +1404.7482 +1404.7637 Probability +1405.0717 Solar and Stellar Astrophysics +1405.1179 Statistical Mechanics +1405.1449 Probability +1405.2652 Learning +1405.3131 Phenomenology +1405.3498 Analysis of PDEs +1405.3546 Artificial Intelligence +1405.3678 Phenomenology +1405.5084 Strongly Correlated Electrons +1405.6523 Cosmology and Nongalactic Astrophysics +1405.7461 Databases +1405.7803 Theory +1406.0395 +1406.0432 Combinatorics +1406.0853 Theory +1406.1327 Quantum Gases +1406.1639 Disordered Systems and Neural Networks +1406.2499 Phenomenology +1406.2850 +1406.3178 Strongly Correlated Electrons +1406.3181 Adaptation and Self-Organizing Systems +1406.4789 Experiment +1406.7649 Astrophysics of Galaxies +1407.1600 +1407.1602 +1407.2009 +1407.2028 Experiment +1407.3263 Data Structures and Algorithms +1407.3469 Probability +1407.4889 Phenomenology +1407.5420 Mesoscale and Nanoscale Physics +1407.5904 Superconductivity +1407.6069 Solar and Stellar Astrophysics +1407.6274 +1407.6405 +1407.6496 Computer Vision and Pattern Recognition +1407.7729 Social and Information Networks +1407.8089 Commutative Algebra +1407.8290 Combinatorics +1408.0497 Solar and Stellar Astrophysics +1408.0644 High Energy Astrophysical Phenomena +1408.2978 Plasma Physics +1408.3241 Differential Geometry +1408.3998 Instrumentation and Methods for Astrophysics +1408.4065 Combinatorics +1408.4739 Statistical Mechanics +1408.4916 Other Statistics +1408.5196 Physics and Society +1408.5518 Data Structures and Algorithms +1408.5655 Dynamical Systems +1408.5866 Phenomenology +1408.6020 Mesoscale and Nanoscale Physics +1408.6342 Mesoscale and Nanoscale Physics +1409.0048 Dynamical Systems +1409.0070 Analysis of PDEs +1409.0706 Data Structures and Algorithms +1409.0945 Materials Science +1409.1039 Social and Information Networks +1409.1170 Artificial Intelligence +1409.1421 Mesoscale and Nanoscale Physics +1409.1596 Astrophysics of Galaxies +1409.1626 Classical Analysis and ODEs +1409.1636 Databases +1409.1654 Distributed, Parallel, and Cluster Computing +1409.1656 Software Engineering +1409.2235 Graphics +1409.2291 Data Structures and Algorithms +1409.2525 Soft Condensed Matter +1409.2572 +1409.2924 Physics and Society +1409.3246 Applications +1409.3311 Cellular Automata and Lattice Gases +1409.3319 Computational Complexity +1409.3463 Performance +1409.3481 Subcellular Processes +1409.3560 Logic in Computer Science +1409.3757 Functional Analysis +1409.3762 Rings and Algebras +1409.3775 Phenomenology +1409.3838 Networking and Internet Architecture +1409.3839 Dynamical Systems +1409.3851 +1409.3854 Learning +1409.3855 Combinatorics +1409.3859 Instrumentation and Detectors +1409.3862 Theory +1409.3865 Computational Complexity +1409.3866 Solar and Stellar Astrophysics +1409.3867 Databases +1409.3869 Combinatorics +1409.3872 Differential Geometry +1409.3881 Computation and Language +1409.3883 Dynamical Systems +1409.3887 Dynamical Systems +1409.3889 Phenomenology +1409.3890 Algebraic Topology +1409.3893 Information Theory +1409.3896 Solar and Stellar Astrophysics +1409.3899 Genomics +1409.3903 Computers and Society +1409.3904 Information Theory +1409.3906 Computer Vision and Pattern Recognition +1409.3908 Theory +1409.3912 Machine Learning +1409.3913 Computer Vision and Pattern Recognition +1409.3914 Social and Information Networks +1409.3920 Digital Libraries +1409.3923 Classical Analysis and ODEs +1409.3924 Neural and Evolutionary Computing +1409.3927 Probability +1409.3934 Statistical Mechanics +1409.3938 Analysis of PDEs +1409.3942 Computation and Language +1409.3947 Software Engineering +1409.3948 Algebraic Geometry +1409.3949 Algebraic Geometry +1409.3952 Optics +1409.3955 Optics +1409.3956 Representation Theory +1409.3961 Functional Analysis +1409.3966 Algebraic Geometry +1409.3968 Complex Variables +1409.3969 Portfolio Management +1409.3972 Complex Variables +1409.3973 Rings and Algebras +1409.3977 Operator Algebras +1409.3978 Materials Science +1409.3979 General Finance +1409.3981 Analysis of PDEs +1409.3983 Phenomenology +1409.3985 Soft Condensed Matter +1409.3989 Phenomenology +1409.3993 Human-Computer Interaction +1409.4002 K-Theory and Homology +1409.4005 Machine Learning +1409.4006 Algebraic Geometry +1409.4007 Probability +1409.4009 Soft Condensed Matter +1409.4011 Machine Learning +1409.4013 Analysis of PDEs +1409.4014 Computer Vision and Pattern Recognition +1409.4018 Learning +1409.4021 Optics +1409.4022 Probability +1409.4026 Probability +1409.4027 Differential Geometry +1409.4028 Optimization and Control +1409.4030 Optimization and Control +1409.4032 Optimization and Control +1409.4034 Strongly Correlated Electrons +1409.4035 Computational Complexity +1409.4043 Hardware Architecture +1409.4044 Machine Learning +1409.4046 Computer Vision and Pattern Recognition +1409.4048 +1409.4049 Symplectic Geometry +1409.4061 +1409.4062 Probability +1409.4064 Cryptography and Security +1409.4065 Geometric Topology +1409.4070 Optics +1409.4073 Algebraic Geometry +1409.4074 Geometric Topology +1409.4076 Analysis of PDEs +1409.4077 Instrumentation and Detectors +1409.4078 Programming Languages +1409.4081 Cryptography and Security +1409.4082 Distributed, Parallel, and Cluster Computing +1409.4083 Systems and Control +1409.4085 Fluid Dynamics +1409.4088 Phenomenology +1409.4089 Experiment +1409.4095 Computer Vision and Pattern Recognition +1409.4096 Experiment +1409.4097 Systems and Control +1409.4098 Algebraic Geometry +1409.4103 Analysis of PDEs +1409.4106 Analysis of PDEs +1409.4111 Experiment +1409.4113 Number Theory +1409.4114 Analysis of PDEs +1409.4116 Combinatorics +1409.4117 +1409.4119 Applications +1409.4120 +1409.4122 Mesoscale and Nanoscale Physics +1409.4125 Materials Science +1409.4126 Functional Analysis +1409.4128 Probability +1409.4129 Number Theory +1409.4131 Materials Science +1409.4132 Computer Science and Game Theory +1409.4136 Materials Science +1409.4138 Dynamical Systems +1409.4139 Quantitative Methods +1409.4142 Group Theory +1409.4143 High Energy Astrophysical Phenomena +1409.4144 +1409.4148 Differential Geometry +1409.4153 +1409.4154 Commutative Algebra +1409.4155 Learning +1409.4157 K-Theory and Homology +1409.4160 Statistics Theory +1409.4161 Artificial Intelligence +1409.4163 Combinatorics +1409.4164 Artificial Intelligence +1409.4165 Statistical Mechanics +1409.4166 Representation Theory +1409.4168 Solar and Stellar Astrophysics +1409.4169 Computation and Language +1409.4173 Phenomenology +1409.4178 Neurons and Cognition +1409.4179 Differential Geometry +1409.4187 Astrophysics of Galaxies +1409.4190 +1409.4193 Statistical Mechanics +1409.4201 Classical Analysis and ODEs +1409.4205 Computer Vision and Pattern Recognition +1409.4207 Phenomenology +1409.4210 Materials Science +1409.4211 Computational Physics +1409.4221 +1409.4227 Combinatorics +1409.4229 Dynamical Systems +1409.4231 Quantum Gases +1409.4234 Optimization and Control +1409.4236 Analysis of PDEs +1409.4237 Systems and Control +1409.4238 Cell Behavior +1409.4239 Combinatorics +1409.4240 Algebraic Geometry +1409.4241 +1409.4243 Optics +1409.4244 Neural and Evolutionary Computing +1409.4246 Optics +1409.4247 Combinatorics +1409.4248 +1409.4251 Neurons and Cognition +1409.4253 Software Engineering +1409.4266 Probability +1409.4267 +1409.4269 Digital Libraries +1409.4276 Learning +1409.4281 +1409.4282 Metric Geometry +1409.4283 Phenomenology +1409.4284 Statistical Mechanics +1409.4290 Information Theory +1409.4293 Analysis of PDEs +1409.4295 Optics +1409.4296 Astrophysics of Galaxies +1409.4301 Biological Physics +1409.4302 Computation +1409.4303 Quantitative Methods +1409.4304 Computer Science and Game Theory +1409.4305 Probability +1409.4307 Materials Science +1409.4313 Numerical Analysis +1409.4328 Plasma Physics +1409.4329 +1409.4333 Rings and Algebras +1409.4334 Atmospheric and Oceanic Physics +1409.4336 Experiment +1409.4341 Plasma Physics +1409.4344 Computational Geometry +1409.4349 Computer Vision and Pattern Recognition +1409.4353 Theory +1409.4354 Computation and Language +1409.4356 Combinatorics +1409.4362 Computation +1409.4364 Computation and Language +1409.4366 Machine Learning +1409.4367 Materials Science +1409.4368 Combinatorics +1409.4372 K-Theory and Homology +1409.4375 Experiment +1409.4376 Mesoscale and Nanoscale Physics +1409.4377 +1409.4381 Numerical Analysis +1409.4382 Optimization and Control +1409.4383 Phenomenology +1409.4387 Economics +1409.4388 Networking and Internet Architecture +1409.4389 Algebraic Topology +1409.4390 Phenomenology +1409.4391 +1409.4392 Analysis of PDEs +1409.4393 Information Theory +1409.4399 Experiment +1409.4401 High Energy Astrophysical Phenomena +hep-th/9803195 Theory +math/0003149 Complex Variables +math/0407248 Differential Geometry +math/9905112 Differential Geometry +1003.1667 General Physics +1312.7637 Numerical Analysis +1312.7774 Neurons and Cognition +1312.7852 Neural and Evolutionary Computing +0802.0476 Functional Analysis +0808.2383 Combinatorics +0810.5705 Operator Algebras +0901.0231 Combinatorics +0905.1335 Rings and Algebras +0908.1234 Physics and Society +0908.2537 Combinatorics +0910.5749 Optics +0911.5267 Functional Analysis +1006.2767 Combinatorics +1008.1703 Combinatorics +1011.2897 Number Theory +1011.4459 Algebraic Geometry +1011.5618 Theory +1012.4514 Functional Analysis +1012.5081 Theory +1101.4195 Functional Analysis +1102.1494 Differential Geometry +1103.2108 Functional Analysis +1104.1246 Complex Variables +1104.1538 Combinatorics +1107.2210 Algebraic Geometry +1107.4402 Differential Geometry +1109.1006 Functional Analysis +1109.1860 Operator Algebras +1109.6244 +1110.4835 Theory +1111.1163 Theory +1112.5577 Materials Science +1201.0966 Commutative Algebra +1202.3615 Commutative Algebra +1204.0138 Phenomenology +1204.2611 Information Theory +1204.5175 General Physics +1205.0842 +1205.5073 Optimization and Control +1205.6655 Algebraic Geometry +1206.1373 Metric Geometry +1206.5640 Algebraic Geometry +1206.6135 Combinatorics +1207.2789 Theory +1208.1913 +1209.2059 Operator Algebras +1209.2127 Theory +1209.3686 Learning +1209.5383 Statistical Mechanics +1210.4118 Functional Analysis +1210.5197 Theory +1211.2329 Disordered Systems and Neural Networks +1212.2053 Operator Algebras +1212.4973 +1301.6614 Cosmology and Nongalactic Astrophysics +1302.1852 Commutative Algebra +1302.1878 Theory +1302.3950 +1302.5902 +1303.1304 Algebraic Geometry +1303.2844 Computer Vision and Pattern Recognition +1303.4576 +1304.3909 Strongly Correlated Electrons +1304.5348 Fluid Dynamics +1304.5409 Computer Vision and Pattern Recognition +1304.7287 Probability +1304.7773 Theory +1305.2303 Analysis of PDEs +1306.0265 +1306.2633 Theory +1306.5861 Commutative Algebra +1307.0504 Theory +1307.5613 Networking and Internet Architecture +1307.7106 Quantum Algebra +1308.4091 Spectral Theory +1308.4779 Analysis of PDEs +1308.5249 Information Theory +1308.6409 +1309.0527 Number Theory +1309.1446 Optimization and Control +1309.5524 Computation +1309.6740 Physics and Society +1309.7435 Exactly Solvable and Integrable Systems +1309.7936 Methodology +1310.1189 Exactly Solvable and Integrable Systems +1310.1198 Dynamical Systems +1310.2011 +1310.2155 +1310.2623 Molecular Networks +1310.2979 Combinatorics +1310.3548 Algebraic Geometry +1310.5123 High Energy Astrophysical Phenomena +1310.7071 Statistical Mechanics +1311.0639 Chemical Physics +1311.1086 Mesoscale and Nanoscale Physics +1311.2383 Mesoscale and Nanoscale Physics +1311.5465 Number Theory +1311.6110 Optics +1311.6262 Trading and Market Microstructure +1311.6368 Theory +1311.6681 Theory +1311.7439 Probability +1311.7499 Differential Geometry +1312.0207 Theory +1312.0380 Differential Geometry +1312.0576 Analysis of PDEs +1312.0597 Theory +1312.2608 +1312.4282 Instrumentation and Detectors +1312.4711 +1312.6435 Optimization and Control +1312.6577 Representation Theory +1401.0754 Quantum Algebra +1401.0762 Algebraic Geometry +1401.5333 Optics +1401.7350 +1401.7917 +1401.8190 +1402.5141 Statistical Mechanics +1402.5820 Statistical Mechanics +1402.6963 Dynamical Systems +1403.0149 Strongly Correlated Electrons +1403.1219 +1403.1389 Methodology +1403.4687 +1403.5109 Theory +1403.7160 +1403.7540 Group Theory +1404.0947 +1404.1140 Artificial Intelligence +1404.2378 +1404.3425 Strongly Correlated Electrons +1404.3840 Computer Vision and Pattern Recognition +1404.4070 Probability +1404.6643 Soft Condensed Matter +1404.7545 Strongly Correlated Electrons +1405.0055 Formal Languages and Automata Theory +1405.0092 Superconductivity +1405.0149 Information Theory +1405.0239 Optics +1405.0378 Computational Finance +1405.0950 Fluid Dynamics +1405.1301 Theory +1405.2213 Differential Geometry +1405.4553 Statistical Mechanics +1405.6385 Number Theory +1406.0138 +1406.0393 Theory +1406.1160 +1406.1346 +1406.2330 Strongly Correlated Electrons +1406.3163 Symbolic Computation +1406.6878 Rings and Algebras +1406.7322 Materials Science +1406.7715 Superconductivity +1406.7813 Theory +1407.0246 Exactly Solvable and Integrable Systems +1407.3257 +1407.3736 Phenomenology +1407.4841 Disordered Systems and Neural Networks +1407.4897 Number Theory +1407.5071 Group Theory +1407.5481 +1407.5530 +1407.5533 Physics Education +1407.5640 Phenomenology +1407.6695 Phenomenology +1407.7666 Fluid Dynamics +1407.7865 Theory +1407.8253 Applications +1408.1870 History and Overview +1408.2121 Mesoscale and Nanoscale Physics +1408.2268 Optics +1408.3845 Methodology +1408.3978 +1408.4226 Mesoscale and Nanoscale Physics +1408.4342 Experiment +1408.4701 Computational Physics +1409.0156 Algebraic Geometry +1409.0214 Optimization and Control +1409.0233 Theory +1409.1494 Theory +1409.1621 Physics Education +1409.1633 Accelerator Physics +1409.1688 Strongly Correlated Electrons +1409.1754 Numerical Analysis +1409.2036 Statistical Mechanics +1409.2342 Numerical Analysis +1409.3122 Experiment +1409.3982 Superconductivity +1409.4622 +1409.4767 Solar and Stellar Astrophysics +1409.5430 Strongly Correlated Electrons +1409.6453 Analysis of PDEs +1409.6663 Representation Theory +1409.6837 Phenomenology +1409.7025 Cosmology and Nongalactic Astrophysics +1409.7124 Materials Science +1409.8495 Strongly Correlated Electrons +1410.0377 Superconductivity +1410.0460 +1410.0900 Statistical Mechanics +1410.1314 Populations and Evolution +1410.1748 Chemical Physics +1410.4234 Algebraic Topology +1410.4721 Optics +1410.5190 Probability +1410.5740 Algebraic Topology +1410.6142 Artificial Intelligence +1410.6143 Solar and Stellar Astrophysics +1410.6434 Phenomenology +1410.6947 Analysis of PDEs +1410.8498 Computation and Language +1411.0177 Materials Science +1411.0372 Networking and Internet Architecture +1411.2019 Analysis of PDEs +1411.2936 Statistics Theory +1411.3956 Neurons and Cognition +1411.4673 Phenomenology +1411.5624 Populations and Evolution +1411.6679 Phenomenology +1411.6965 +1411.7391 Astrophysics of Galaxies +1412.0717 Mesoscale and Nanoscale Physics +1412.1616 History and Overview +1412.1819 Theory +1412.3449 Strongly Correlated Electrons +1412.3514 Theory +1412.3739 +1412.4113 Physics and Society +1412.4265 Information Theory +1412.4306 Analysis of PDEs +1412.4307 Analysis of PDEs +1412.4314 Neural and Evolutionary Computing +1412.4603 Number Theory +1412.4947 Strongly Correlated Electrons +1412.5096 Metric Geometry +1412.5332 Computational Finance +1412.5567 Computation and Language +1412.5585 Phenomenology +1412.5872 Optics +1412.6070 Combinatorics +1412.6280 Chemical Physics +1412.6437 +1412.6524 Cosmology and Nongalactic Astrophysics +1412.6526 Theory +1412.6533 Cosmology and Nongalactic Astrophysics +1412.6538 Numerical Analysis +1412.6541 Accelerator Physics +1412.6542 +1412.6545 Artificial Intelligence +1412.6549 Theory +1412.6554 Materials Science +1412.6557 Probability +1412.6561 Analysis of PDEs +1412.6566 Tissues and Organs +1412.6569 Lattice +1412.6570 Information Theory +1412.6573 Quantum Gases +1412.6576 Solar and Stellar Astrophysics +1412.6580 +1412.6584 Chemical Physics +1412.6590 Number Theory +1412.6592 Methodology +1412.6593 Networking and Internet Architecture +1412.6595 Optimization and Control +1412.6600 Materials Science +1412.6613 Applications +1412.6633 Spectral Theory +1412.6638 Software Engineering +1412.6641 Computational Complexity +1412.6643 Analysis of PDEs +1412.6647 Exactly Solvable and Integrable Systems +1412.6649 Artificial Intelligence +1412.6657 Logic +1412.6658 Probability +1412.6660 Category Theory +1412.6662 Group Theory +1412.6664 Data Analysis, Statistics and Probability +1412.6668 Theory +1412.6669 Rings and Algebras +1412.6675 Computation +1412.6676 Combinatorics +1412.6678 Functional Analysis +1412.6680 Information Theory +1412.6683 Physics and Society +1412.6684 Digital Libraries +1412.6686 Networking and Internet Architecture +1412.6690 Classical Analysis and ODEs +1412.6691 Populations and Evolution +1412.6701 Materials Science +1412.6704 Systems and Control +1412.6705 Data Structures and Algorithms +1412.6706 Social and Information Networks +1412.6708 Phenomenology +1412.6713 Complex Variables +1412.6716 Materials Science +1412.6719 Theory +1412.6722 Computer Science and Game Theory +1412.6725 General Topology +1412.6727 Lattice +1412.6729 +1412.6731 Dynamical Systems +1412.6732 +1412.6734 Machine Learning +1412.6735 Analysis of PDEs +1412.6739 Phenomenology +1412.6740 Representation Theory +1412.6741 Machine Learning +1412.6743 Differential Geometry +1412.6746 Probability +1412.6749 Computer Vision and Pattern Recognition +1412.6752 Learning +1412.6755 Data Structures and Algorithms +1412.6756 Space Physics +1412.6757 Spectral Theory +1412.6758 +1412.6759 Computer Vision and Pattern Recognition +1412.6765 Performance +1412.6767 Formal Languages and Automata Theory +1412.6768 Analysis of PDEs +1412.6769 Information Theory +1412.6770 Analysis of PDEs +1412.6773 Probability +1412.6775 Probability +1412.6778 Analysis of PDEs +1412.6781 Logic in Computer Science +1412.6782 Information Theory +1412.6791 Computer Vision and Pattern Recognition +1412.6793 Discrete Mathematics +1412.6795 Classical Analysis and ODEs +1412.6796 +1412.6797 Atmospheric and Oceanic Physics +1412.6800 Physics Education +1412.6801 Representation Theory +1412.6802 Representation Theory +1412.6804 Analysis of PDEs +1412.6805 Representation Theory +1412.6809 +1412.6813 +1412.6819 +1412.6823 Physics and Society +1412.6824 Medical Physics +1412.6825 Solar and Stellar Astrophysics +1412.6829 Statistics Theory +1412.6839 Number Theory +1412.6840 Biological Physics +1412.6841 Combinatorics +1412.6843 Information Theory +1412.6847 Computer Vision and Pattern Recognition +1412.6848 Data Analysis, Statistics and Probability +1412.6853 Sound +1412.6854 +1412.6859 Dynamical Systems +1412.6862 Distributed, Parallel, and Cluster Computing +1412.6864 +1412.6878 Instrumentation and Detectors +1412.6883 Cryptography and Security +1412.6885 Computer Vision and Pattern Recognition +1412.6886 Algebraic Topology +1412.6887 Chaotic Dynamics +1412.6892 Computational Geometry +1412.6895 Instrumentation and Detectors +1412.6896 Optics +1412.6898 Chemical Physics +1412.6901 +1412.6902 Differential Geometry +1412.6908 Group Theory +1412.6912 Information Theory +1412.6913 Physics and Society +1412.6917 Representation Theory +1412.6922 Materials Science +1412.6923 Quantum Algebra +1412.6926 Statistical Mechanics +1412.6930 Category Theory +1412.6932 Quantum Algebra +1412.6934 Lattice +1412.6935 Data Structures and Algorithms +1412.6939 Chaotic Dynamics +1412.6944 Materials Science +1412.6946 Information Theory +1412.6950 Solar and Stellar Astrophysics +1412.6951 Theory +1412.6955 Phenomenology +1412.6956 Cosmology and Nongalactic Astrophysics +1412.6962 Number Theory +1412.6964 Differential Geometry +1412.6967 +1412.6969 Number Theory +1412.6973 Artificial Intelligence +1412.6975 Statistical Mechanics +1412.6976 Phenomenology +1412.6979 Probability +1412.6982 High Energy Astrophysical Phenomena +1412.6984 Combinatorics +1412.6985 Combinatorics +1412.6986 Distributed, Parallel, and Cluster Computing +1412.6988 Information Theory +1412.6994 Metric Geometry +1412.7002 Analysis of PDEs +1412.7005 Analysis of PDEs +1412.7008 Analysis of PDEs +1412.7013 General Topology +1412.7017 Representation Theory +1412.7018 Distributed, Parallel, and Cluster Computing +1412.7019 Theory +1412.7021 Materials Science +1412.7029 Statistical Mechanics +1412.7030 Computational Engineering, Finance, and Science +1412.7041 +1412.7044 Number Theory +1412.7045 Phenomenology +1412.7047 Mesoscale and Nanoscale Physics +1412.7049 Social and Information Networks +1412.7051 Mesoscale and Nanoscale Physics +1412.7055 Statistical Mechanics +1412.7057 Analysis of PDEs +1412.7058 Mathematical Finance +1412.7060 Algebraic Geometry +1412.7061 Phenomenology +1412.7064 High Energy Astrophysical Phenomena +1412.7066 Group Theory +1412.7067 Computational Physics +1412.7071 Number Theory +1412.7081 Differential Geometry +1412.7082 Populations and Evolution +1412.7088 Dynamical Systems +1412.7089 Lattice +1412.7090 Solar and Stellar Astrophysics +1412.7092 Differential Geometry +1412.7098 Probability +1412.7101 Operator Algebras +1412.7107 Number Theory +1412.7109 Materials Science +1412.7114 Analysis of PDEs +1412.7115 Combinatorics +1412.7117 Theory +1412.7118 Theory +1412.7120 Theory +1412.7121 Theory +1412.7127 Theory +1412.7129 Theory +1412.7131 Theory +1412.7132 Theory +1412.7133 Theory +1412.7139 Strongly Correlated Electrons +1412.7140 Theory +1412.7142 Metric Geometry +hep-ph/0002250 Phenomenology +math/0206040 Algebraic Geometry +math/0508223 Operator Algebras +math/0509297 Operator Algebras +math/0702172 Combinatorics +0704.0231 Complex Variables +0704.0277 Combinatorics +0704.0833 Analysis of PDEs +0704.2562 Spectral Theory +0704.2936 +0704.3561 Logic +0705.0293 Algebraic Geometry +0705.0377 Commutative Algebra +0705.0603 Algebraic Geometry +0705.1851 Logic +0705.2661 Geometric Topology +0705.3821 Differential Geometry +0705.3852 Geometric Topology +0705.4536 Number Theory +0705.4545 Geometric Topology +0706.0223 Combinatorics +0706.0348 Representation Theory +0706.0677 Group Theory +0706.1765 Number Theory +0706.2232 Differential Geometry +0706.2646 Classical Analysis and ODEs +0707.0250 Algebraic Topology +0707.0703 Materials Science +0707.0906 Dynamical Systems +0707.1290 Quantum Algebra +0707.1412 Differential Geometry +0707.2281 K-Theory and Homology +0707.2488 Algebraic Geometry +0707.2851 Geometric Topology +0707.3489 Algebraic Topology +0707.3694 Representation Theory +0707.4331 Geometric Topology +0707.4333 Algebraic Geometry +0707.4502 Algebraic Geometry +0707.4522 Geometric Topology +0708.0055 Functional Analysis +0708.0114 Number Theory +0708.0689 Complex Variables +0708.1084 Probability +0708.3191 Representation Theory +0708.3831 Geometric Topology +0708.3992 Algebraic Geometry +0708.4001 Complex Variables +0708.4331 Group Theory +0709.0064 Group Theory +0709.0092 Dynamical Systems +0709.0672 Differential Geometry +0709.0703 Commutative Algebra +0709.0897 Representation Theory +0709.1977 Number Theory +0709.2117 Functional Analysis +0709.2448 Geometric Topology +0709.3056 Number Theory +0709.3879 Number Theory +0709.4229 Functional Analysis +0709.4432 Number Theory +0710.0394 Group Theory +0710.0797 Functional Analysis +0710.1635 Geometric Topology +0710.1892 Group Theory +0710.1937 K-Theory and Homology +0710.2340 Algebraic Geometry +0710.3028 Algebraic Geometry +0710.3405 Spectral Theory +0710.3786 Geometric Topology +0710.4085 Complex Variables +0710.4335 Representation Theory +0710.5277 Algebraic Geometry +0711.0185 Number Theory +0711.0219 Complex Variables +0711.1681 Group Theory +0711.1771 Number Theory +0711.1906 Algebraic Topology +0711.2533 K-Theory and Homology +0711.2582 Complex Variables +0711.2856 Operator Algebras +0711.3159 Dynamical Systems +0711.3785 Logic +0711.4167 Group Theory +0711.4492 Geometric Topology +0712.0093 Geometric Topology +0712.0261 Algebraic Geometry +0712.0407 +0712.0492 Complex Variables +0712.0944 Representation Theory +0712.1246 Representation Theory +0712.3234 Complex Variables +0712.3869 Complex Variables +0712.4244 Group Theory +0801.0315 Rings and Algebras +0801.0394 Combinatorics +0801.1409 Algebraic Geometry +0801.3224 Analysis of PDEs +0801.3383 Rings and Algebras +0801.3423 Algebraic Geometry +0801.4662 Dynamical Systems +0801.4733 Algebraic Geometry +0802.0306 Symplectic Geometry +0802.0705 Algebraic Geometry +0802.1733 Group Theory +0802.1837 Number Theory +0802.2053 Operator Algebras +0802.2996 Geometric Topology +0802.3098 Classical Analysis and ODEs +0802.3507 Algebraic Topology +0802.3825 Group Theory +0802.4012 Algebraic Geometry +0803.1328 Representation Theory +0803.1681 K-Theory and Homology +0803.1682 Number Theory +0803.1870 Number Theory +0803.2058 Complex Variables +0803.2544 Group Theory +0803.2648 Analysis of PDEs +0803.3550 K-Theory and Homology +0803.3732 Number Theory +0803.3852 Number Theory +0804.0120 Number Theory +0804.0405 Functional Analysis +0804.0453 Functional Analysis +0804.1388 Operator Algebras +0804.2359 Algebraic Topology +0804.3624 Geometric Topology +0804.3889 Differential Geometry +0804.4264 Algebraic Geometry +0804.4789 Geometric Topology +0805.0534 Number Theory +0805.1053 Classical Analysis and ODEs +0805.1381 Geometric Topology +0805.2425 Geometric Topology +0805.2635 Differential Geometry +0805.3259 Algebraic Geometry +0805.3288 Geometric Topology +0805.3694 Commutative Algebra +0805.4126 Algebraic Geometry +0805.4706 Geometric Topology +0805.4737 Dynamical Systems +0806.0498 Differential Geometry +0806.0735 Differential Geometry +0806.0991 Dynamical Systems +0806.1053 Geometric Topology +0806.1188 Geometric Topology +0806.1901 Differential Geometry +0806.2122 Number Theory +0806.2855 Operator Algebras +0806.3824 Differential Geometry +0806.3983 Algebraic Topology +0806.4329 Classical Analysis and ODEs +0806.4975 Group Theory +0807.1461 Combinatorics +0807.1826 Quantum Algebra +0807.2827 Operator Algebras +0807.2866 Geometric Topology +0807.3118 Combinatorics +0807.4250 Operator Algebras +0807.4277 Symplectic Geometry +0807.4361 Functional Analysis +0807.4509 Geometric Topology +0807.4755 Rings and Algebras +0807.4800 Algebraic Topology +0807.4901 Combinatorics +0808.0046 Representation Theory +0808.0058 Commutative Algebra +0808.1329 Algebraic Geometry +0808.1756 Number Theory +0808.1907 Operator Algebras +0808.2120 Representation Theory +0808.3549 Symplectic Geometry +0809.0020 Number Theory +0809.0787 Spectral Theory +0809.0988 Representation Theory +0809.2406 Differential Geometry +0809.3047 Functional Analysis +0809.3482 Number Theory +0809.3765 Algebraic Geometry +0809.3941 Dynamical Systems +0809.4457 Group Theory +0809.4733 Functional Analysis +0809.4881 Geometric Topology +0810.0111 K-Theory and Homology +0810.0122 Spectral Theory +0810.0141 Algebraic Geometry +0810.0173 Differential Geometry +0810.0206 Complex Variables +0810.1010 Algebraic Geometry +0810.1575 +0810.1969 Geometric Topology +0810.2112 Number Theory +0810.2292 Number Theory +0810.2379 Algebraic Geometry +0810.3054 Rings and Algebras +0810.3081 Algebraic Geometry +0810.3787 Number Theory +0810.3888 Differential Geometry +0810.4562 Differential Geometry +0810.4826 Algebraic Topology +0810.4870 Group Theory +0810.5546 Representation Theory +0811.0597 Algebraic Topology +0811.1047 Algebraic Geometry +0811.1535 Operator Algebras +0811.2310 Algebraic Geometry +0811.2317 Dynamical Systems +0811.3036 Group Theory +0811.3087 Functional Analysis +0811.3103 Combinatorics +0811.4569 Algebraic Geometry +0812.2153 Spectral Theory +0812.2335 Algebraic Geometry +0812.2857 Algebraic Geometry +0812.3525 Number Theory +0812.3962 Number Theory +0812.4193 +0812.4209 Functional Analysis +0812.4483 Dynamical Systems +0812.4672 Commutative Algebra +0812.5098 Geometric Topology +0901.0300 Geometric Topology +0901.0566 Group Theory +0901.0645 Group Theory +0901.1565 Algebraic Geometry +0901.1830 Group Theory +0901.2109 Algebraic Topology +0901.3594 Geometric Topology +0901.4203 Applications +0901.4367 Number Theory +0901.4426 Algebraic Topology +0902.0801 Rings and Algebras +0902.0869 Geometric Topology +0902.0963 Geometric Topology +0902.1088 Quantum Algebra +0902.1312 Representation Theory +0902.1330 Functional Analysis +0902.1662 Geometric Topology +0902.1731 Geometric Topology +0902.1962 Functional Analysis +0902.2195 Geometric Topology +0902.3110 Commutative Algebra +0902.3693 Group Theory +0902.3950 +0903.0757 Dynamical Systems +0903.0865 Functional Analysis +0903.1297 Number Theory +0903.1335 Algebraic Geometry +0903.2167 Analysis of PDEs +0903.2714 Number Theory +0903.3281 Representation Theory +0903.3729 Algebraic Geometry +0903.4079 Group Theory +0904.1178 Differential Geometry +0904.3032 Logic +0904.3510 Commutative Algebra +0904.3783 Operator Algebras +0904.4824 Algebraic Geometry +0905.0088 Dynamical Systems +0905.0418 Number Theory +0905.0526 Logic +0905.0852 Quantum Algebra +0905.1017 Algebraic Geometry +0905.1133 Number Theory +0905.1205 Number Theory +0905.1242 Number Theory +0905.1322 Group Theory +0905.1451 Differential Geometry +0905.2085 Complex Variables +0905.2858 Probability +0905.3485 Algebraic Geometry +0905.3926 Classical Analysis and ODEs +0905.4663 Algebraic Geometry +0905.4798 Number Theory +0906.0385 Algebraic Geometry +0906.0918 Representation Theory +0906.1168 Logic +0906.1480 Algebraic Geometry +0906.1790 Representation Theory +0906.2472 Geometric Topology +0906.3299 Combinatorics +0906.3380 Number Theory +0906.3456 Number Theory +0906.3510 Operator Algebras +0906.3658 Algebraic Geometry +0906.3900 Algebraic Geometry +0906.4080 Combinatorics +0906.4434 Operator Algebras +0906.4499 Geometric Topology +0906.4526 Operator Algebras +0906.4858 Algebraic Geometry +0907.0206 Number Theory +0907.0221 Number Theory +0907.0273 Differential Geometry +0907.0350 Functional Analysis +0907.1250 Analysis of PDEs +0907.2223 Differential Geometry +0907.2641 Geometric Topology +0907.2657 Combinatorics +0907.2710 K-Theory and Homology +0907.3541 Group Theory +0907.4022 Differential Geometry +0907.4517 Quantum Algebra +0907.5010 Group Theory +0908.0439 Group Theory +0908.0525 Algebraic Topology +0908.2008 Number Theory +0908.2790 Operator Algebras +0908.3213 Rings and Algebras +0908.3411 Combinatorics +0908.3510 Representation Theory +0908.3517 Algebraic Geometry +0908.3669 Group Theory +0908.4230 Algebraic Geometry +0909.0151 Algebraic Geometry +0909.0422 Differential Geometry +0909.0578 Representation Theory +0909.1128 Differential Geometry +0909.1624 Operator Algebras +0909.1742 K-Theory and Homology +0909.2360 Group Theory +0909.2387 Number Theory +0909.2497 Group Theory +0909.3074 Algebraic Topology +0909.3287 Analysis of PDEs +0909.3292 Algebraic Topology +0909.3489 Geometric Topology +0909.3568 Complex Variables +0909.3929 Dynamical Systems +0909.4361 Functional Analysis +0909.5568 Representation Theory +0910.0617 Algebraic Topology +0910.0642 Category Theory +0910.1185 Analysis of PDEs +0910.1236 Algebraic Geometry +0910.3554 Geometric Topology +0910.4634 Differential Geometry +0910.5300 Complex Variables +0911.0404 Representation Theory +0911.0947 Analysis of PDEs +0911.2914 Combinatorics +0911.3048 Group Theory +0911.3267 K-Theory and Homology +0911.3971 Classical Analysis and ODEs +0911.4340 Combinatorics +0911.4882 Number Theory +0912.0131 Probability +0912.0723 Rings and Algebras +0912.1242 Logic +0912.1670 K-Theory and Homology +0912.1973 Probability +0912.2865 Algebraic Geometry +0912.3104 Algebraic Geometry +0912.3237 Number Theory +0912.4910 Number Theory +0912.5263 Dynamical Systems +0912.5314 Differential Geometry +1001.0811 Group Theory +1001.1055 Number Theory +1001.1293 Number Theory +1001.2534 Classical Analysis and ODEs +1001.3599 Group Theory +1001.4670 Group Theory +1001.4790 Algebraic Topology +1001.5211 Complex Variables +1001.5242 Geometric Topology +1002.0391 Commutative Algebra +1002.0419 Commutative Algebra +1002.0629 Algebraic Geometry +1002.1222 Differential Geometry +1002.2554 Combinatorics +1002.2866 Dynamical Systems +1002.3636 Algebraic Geometry +1002.4131 Representation Theory +1002.4343 Group Theory +1002.4589 Algebraic Geometry +1003.0613 Operator Algebras +1003.2272 Group Theory +1003.2754 Algebraic Topology +1003.5995 Analysis of PDEs +1003.6007 Group Theory +1003.6104 Dynamical Systems +1004.0215 Operator Algebras +1004.1326 Number Theory +1004.2021 Functional Analysis +1004.2480 Number Theory +1004.2608 Number Theory +1004.3046 Analysis of PDEs +1004.3104 Optimization and Control +1004.3675 Number Theory +1004.3762 Geometric Topology +1004.3928 Representation Theory +1004.4069 Complex Variables +1004.4093 Geometric Topology +1004.4253 Group Theory +1004.4427 Algebraic Topology +1004.5239 Group Theory +1004.5434 Differential Geometry +1005.0422 Group Theory +1005.2785 Spectral Theory +1005.3876 Group Theory +1005.3895 Geometric Topology +1005.4090 Analysis of PDEs +1005.4310 Algebraic Geometry +1005.4703 Number Theory +1006.1145 Dynamical Systems +1006.1997 Quantum Algebra +1006.2550 Geometric Topology +1006.2675 Functional Analysis +1006.2728 Group Theory +1006.3653 Algebraic Geometry +1006.4683 Dynamical Systems +1006.4756 Algebraic Geometry +1006.5153 Metric Geometry +1006.5371 Representation Theory +1006.5583 Spectral Theory +1007.0613 Dynamical Systems +1007.1014 Combinatorics +1007.1663 Operator Algebras +1007.2063 Analysis of PDEs +1007.3397 Differential Geometry +1007.3406 Number Theory +1007.4605 Spectral Theory +1007.4963 Representation Theory +1007.5455 Probability +1008.0507 Group Theory +1008.0632 Operator Algebras +1008.1947 Algebraic Geometry +1008.2377 Commutative Algebra +1008.2406 Rings and Algebras +1008.3108 Algebraic Geometry +1008.3267 Functional Analysis +1008.3272 Geometric Topology +1008.3644 Differential Geometry +1008.3805 Number Theory +1008.4753 Symplectic Geometry +1008.4766 Number Theory +1008.4852 Operator Algebras +1009.0463 Representation Theory +1009.0514 Geometric Topology +1009.0622 Algebraic Topology +1009.0742 Representation Theory +1009.0766 Classical Analysis and ODEs +1009.1123 Differential Geometry +1009.1252 Spectral Theory +1009.1364 Differential Geometry +1009.1413 Representation Theory +1009.1540 Group Theory +1009.1723 Differential Geometry +1009.2923 Functional Analysis +1009.3370 Representation Theory +1009.3905 Complex Variables +1009.4446 Classical Analysis and ODEs +1009.4752 Quantum Algebra +1009.4782 Probability +1009.5034 Algebraic Topology +1009.5081 Complex Variables +1009.5364 Complex Variables +1009.6140 Group Theory +1009.6183 Group Theory +1009.6203 Quantum Algebra +1010.0130 Rings and Algebras +1010.0163 Algebraic Geometry +1010.0717 Algebraic Topology +1010.2341 Representation Theory +1010.2525 Commutative Algebra +1010.2607 Algebraic Geometry +1010.2780 Dynamical Systems +1010.3954 Algebraic Geometry +1010.4519 Number Theory +1010.5212 Group Theory +1010.5303 Quantum Algebra +1010.5628 Representation Theory +1010.5635 Algebraic Topology +1011.0019 Number Theory +1011.0021 Geometric Topology +1011.0343 Dynamical Systems +1011.0359 Dynamical Systems +1011.0876 Geometric Topology +1011.0972 Symbolic Computation +1011.1203 Representation Theory +1011.1360 Functional Analysis +1011.1373 Methodology +1011.1961 Number Theory +1011.1963 Algebraic Geometry +1011.2032 Classical Analysis and ODEs +1011.3253 Rings and Algebras +1011.3447 Number Theory +1011.3792 Algebraic Geometry +1011.4759 Algebraic Geometry +1011.4776 Functional Analysis +1011.4782 Representation Theory +1011.4832 Methodology +1011.5149 Representation Theory +1011.5526 Quantum Algebra +1011.5825 Number Theory +1011.6016 Differential Geometry +1012.0534 Group Theory +1012.0725 Number Theory +1012.2045 Geometric Topology +1012.2159 Classical Analysis and ODEs +1012.2176 Representation Theory +1012.2223 Probability +1012.2816 Functional Analysis +1012.3062 Number Theory +1012.3376 Number Theory +1012.3545 Classical Analysis and ODEs +1012.4693 Symplectic Geometry +1012.5595 Functional Analysis +1101.0012 Analysis of PDEs +1101.0023 Algebraic Topology +1101.0445 Probability +1101.0446 Pricing of Securities +1101.0678 Algebraic Geometry +1101.1019 Optimization and Control +1101.1734 Classical Analysis and ODEs +1101.1833 Group Theory +1101.1870 Geometric Topology +1101.2461 Classical Analysis and ODEs +1101.3526 Dynamical Systems +1101.3897 Algebraic Topology +1101.4092 Geometric Topology +1101.4818 Algebraic Topology +1101.5471 Geometric Topology +1101.5725 Algebraic Topology +1102.0517 Symplectic Geometry +1102.0617 Number Theory +1102.2494 Logic +1102.3530 Geometric Topology +1102.3618 Algebraic Geometry +1102.3816 Algebraic Geometry +1102.4911 Number Theory +1102.5336 Commutative Algebra +1103.1241 Representation Theory +1103.1468 Classical Analysis and ODEs +1103.1487 Complex Variables +1103.1825 Commutative Algebra +1103.2784 Group Theory +1103.3120 Combinatorics +1103.3444 Dynamical Systems +1103.4402 Probability +1103.4688 Group Theory +1103.4731 Algebraic Geometry +1103.5089 Analysis of PDEs +1103.5185 Algebraic Geometry +1103.5225 Operator Algebras +1103.5255 Algebraic Geometry +1103.5715 Algebraic Geometry +1104.1037 Geometric Topology +1104.1476 Group Theory +1104.2067 Operator Algebras +1104.2309 Algebraic Geometry +1104.2542 Number Theory +1104.2797 Dynamical Systems +1104.3340 Dynamical Systems +1104.3909 Number Theory +1104.4441 Representation Theory +1104.5452 Dynamical Systems +1104.5604 Classical Analysis and ODEs +1104.5697 Operator Algebras +1105.0062 Probability +1105.0475 Group Theory +1105.1115 Classical Analysis and ODEs +1105.1964 Algebraic Geometry +1105.2082 Differential Geometry +1105.2097 Combinatorics +1105.2116 K-Theory and Homology +1105.2253 Algebraic Geometry +1105.2290 Number Theory +1105.2468 Geometric Topology +1105.2715 Category Theory +1105.3752 Complex Variables +1105.4150 Functional Analysis +1105.4638 Geometric Topology +1105.5205 Geometric Topology +1105.5504 Combinatorics +1106.0619 Group Theory +1106.0696 Number Theory +1106.1154 Number Theory +1106.2664 Classical Analysis and ODEs +1106.2733 Representation Theory +1106.2747 Geometric Topology +1106.2885 Logic +1106.3351 Functional Analysis +1106.5523 Operator Algebras +1106.5559 Geometric Topology +1106.5985 Functional Analysis +1107.0891 Strongly Correlated Electrons +1107.1528 Group Theory +1107.1630 Data Structures and Algorithms +1107.2082 Representation Theory +1107.2537 Dynamical Systems +1107.2862 Geometric Topology +1107.4260 Differential Geometry +1107.4344 Methodology +1107.4896 Combinatorics +1107.4948 Symplectic Geometry +1108.0768 Probability +1108.1025 Representation Theory +1108.1100 Commutative Algebra +1108.1784 Group Theory +1108.2188 Complex Variables +1108.2195 Representation Theory +1108.2321 Geometric Topology +1108.2539 Analysis of PDEs +1108.2668 Algebraic Geometry +1108.2676 Algebraic Geometry +1108.4637 Functional Analysis +1108.5324 Dynamical Systems +1108.5332 Operator Algebras +1108.5792 Combinatorics +1108.5944 Symplectic Geometry +1109.0197 Differential Geometry +1109.0224 Number Theory +1109.0748 Rings and Algebras +1109.1004 Algebraic Topology +1109.1267 Algebraic Geometry +1109.2018 Rings and Algebras +1109.2384 Functional Analysis +1109.2765 Group Theory +1109.3339 Differential Geometry +1109.3811 Group Theory +1109.3986 Quantum Algebra +1109.4615 Dynamical Systems +1109.4878 Differential Geometry +1109.5525 Number Theory +1109.6184 Operator Algebras +1109.6192 Number Theory +1109.6253 Number Theory +1109.6676 Number Theory +1110.0275 Complex Variables +1110.0797 Analysis of PDEs +1110.0896 Probability +1110.1297 Geometric Topology +1110.1464 Algebraic Geometry +1110.1537 Representation Theory +1110.1999 Number Theory +1110.3019 Geometric Topology +1110.3718 Geometric Topology +1110.4011 Complex Variables +1110.4232 Number Theory +1110.4548 Differential Geometry +1110.5934 Geometric Topology +1110.6373 Commutative Algebra +1110.6434 Geometric Topology +1110.6828 Number Theory +1111.0249 Algebraic Topology +1111.0328 Methodology +1111.0355 Differential Geometry +1111.0933 Geometric Topology +1111.1394 Differential Geometry +1111.1582 Algebraic Geometry +1111.1850 Number Theory +1111.2574 Number Theory +1111.2853 Number Theory +1111.3168 Geometric Topology +1111.3573 Geometric Topology +1111.3607 Number Theory +1111.3609 Number Theory +1111.3774 Algebraic Geometry +1111.4509 Geometric Topology +1111.4668 Analysis of PDEs +1111.5320 Complex Variables +1111.5554 Dynamical Systems +1111.5589 Differential Geometry +1111.5966 Dynamical Systems +1112.1098 Geometric Topology +1112.1175 Number Theory +1112.1388 Complex Variables +1112.2161 Algebraic Geometry +1112.2411 Functional Analysis +1112.2897 Algebraic Geometry +1112.2938 Algebraic Geometry +1112.3397 Group Theory +1112.3411 Algebraic Geometry +1112.3621 Group Theory +1112.5070 Probability +1112.5373 Probability +1112.6332 Popular Physics +1201.0283 Algebraic Geometry +1201.0437 Functional Analysis +1201.0467 Algebraic Geometry +1201.0660 Geometric Topology +1201.2171 Spectral Theory +1201.2741 Representation Theory +1201.5303 Representation Theory +1201.5354 Complex Variables +1201.5607 Complex Variables +1201.5822 Algebraic Geometry +1201.6369 Group Theory +1201.6586 Quantum Gases +1202.0711 Rings and Algebras +1202.1463 Geometric Topology +1202.1622 Representation Theory +1202.3866 K-Theory and Homology +1202.4412 Geometric Topology +1202.4417 Numerical Analysis +1202.4560 Dynamical Systems +1202.5026 Number Theory +1202.5200 Combinatorics +1202.6489 Functional Analysis +1203.0062 Operator Algebras +1203.0138 Group Theory +1203.0243 Functional Analysis +1203.1636 Combinatorics +1203.1806 Operator Algebras +1203.2996 Number Theory +1203.3028 Group Theory +1203.3709 Algebraic Topology +1203.3735 Combinatorics +1203.4293 Algebraic Geometry +1203.4546 Theory +1203.4748 Algebraic Topology +1203.4833 Spectral Theory +1203.4983 Functional Analysis +1203.5432 Differential Geometry +1204.1878 Differential Geometry +1204.2851 Symplectic Geometry +1204.4118 Algebraic Geometry +1204.6510 Representation Theory +1204.6517 Complex Variables +1205.0190 Number Theory +1205.1252 Combinatorics +1205.1310 Algebraic Geometry +1205.1327 Group Theory +1205.1952 Group Theory +1205.2520 +1205.3260 Complex Variables +1205.3735 Metric Geometry +1205.3979 Algebraic Topology +1205.4317 Functional Analysis +1205.4649 Operator Algebras +1205.4985 Functional Analysis +1205.5020 Number Theory +1205.5660 Dynamical Systems +1206.0521 Number Theory +1206.1059 High Energy Astrophysical Phenomena +1206.1556 Representation Theory +1206.1657 Functional Analysis +1206.1703 Spectral Theory +1206.1959 Geometric Topology +1206.2531 Representation Theory +1206.2609 Differential Geometry +1206.2801 +1206.3656 Functional Analysis +1207.0977 Group Theory +1207.1010 Rings and Algebras +1207.1910 Algebraic Geometry +1207.1930 Operator Algebras +1207.2025 Functional Analysis +1207.2099 Functional Analysis +1207.2891 K-Theory and Homology +1207.3461 Algebraic Topology +1207.4202 Algebraic Geometry +1207.5880 +1207.6077 Analysis of PDEs +1207.6132 +1208.1877 Classical Analysis and ODEs +1208.2016 Dynamical Systems +1208.2446 Algebraic Geometry +1208.2614 Dynamical Systems +1208.2989 Number Theory +1208.4636 Number Theory +1208.6456 Algebraic Geometry +1209.1768 Group Theory +1209.2279 Group Theory +1209.5053 Commutative Algebra +1209.6067 Operator Algebras +1210.0002 Optics +1210.0223 Representation Theory +1210.2292 Algebraic Geometry +1210.3571 Algebraic Geometry +1210.3866 Symplectic Geometry +1210.4503 Theory +1210.6542 Representation Theory +1210.6699 Geometric Topology +1210.8079 +1210.8227 Functional Analysis +1211.2364 Analysis of PDEs +1211.2859 Methodology +1211.5010 Operator Algebras +1211.5982 Metric Geometry +1211.6313 Analysis of PDEs +1212.1522 Computer Science and Game Theory +1212.1917 Representation Theory +1212.5272 Dynamical Systems +1212.5666 General Topology +1212.5850 Number Theory +1212.6873 Number Theory +1301.0224 +1301.0783 Geometric Topology +1301.0854 Dynamical Systems +1301.5737 Operator Algebras +1301.7006 Social and Information Networks +1301.7582 Optics +1302.1398 Algebraic Geometry +1302.2676 Commutative Algebra +1302.3294 Algebraic Topology +1302.5018 Number Theory +1302.6956 +1303.0856 Theory +1303.1161 Group Theory +1303.3989 Number Theory +1303.4103 Statistical Mechanics +1303.6066 Computer Vision and Pattern Recognition +1303.6298 +1303.6560 Fluid Dynamics +1304.1053 Number Theory +1304.6349 Theory +1304.8042 +1305.1162 Soft Condensed Matter +1305.1747 Pricing of Securities +1305.2800 Theory +1305.4158 Metric Geometry +1305.4352 Phenomenology +1305.4422 Probability +1305.4479 Statistical Mechanics +1305.5286 Metric Geometry +1305.6078 +1306.0434 Phenomenology +1306.0746 Algebraic Geometry +1306.1383 +1306.1562 Cosmology and Nongalactic Astrophysics +1306.1704 Social and Information Networks +1306.1800 Analysis of PDEs +1306.4211 Operator Algebras +1306.4932 Theory +1306.5267 Number Theory +1306.5749 Strongly Correlated Electrons +1307.0371 Algebraic Geometry +1307.0662 +1307.0875 Probability +1307.1414 Number Theory +1307.1848 Theory +1307.3397 +1307.4265 +1307.5689 Medical Physics +1307.6124 Materials Science +1307.6196 Complex Variables +1307.7397 Theory +1307.7732 Theory +1308.0280 Strongly Correlated Electrons +1308.1505 +1308.2689 Superconductivity +1308.2822 +1308.2863 +1308.4785 Strongly Correlated Electrons +1308.5075 Phenomenology +1308.5126 Exactly Solvable and Integrable Systems +1308.5299 Instrumentation and Methods for Astrophysics +1308.5897 Phenomenology +1309.0048 Cosmology and Nongalactic Astrophysics +1309.0219 Quantum Gases +1309.1165 Strongly Correlated Electrons +1309.2447 Mesoscale and Nanoscale Physics +1309.2581 +1309.2680 Strongly Correlated Electrons +1309.3261 +1309.3661 Populations and Evolution +1309.3757 Strongly Correlated Electrons +1309.4173 +1309.4819 Phenomenology +1309.4855 Other Condensed Matter +1309.5375 +1309.5714 Dynamical Systems +1309.5728 Geometric Topology +1309.5814 Phenomenology +1309.6375 +1309.6585 Phenomenology +1309.6803 Theory +1309.7604 Methodology +1309.7852 Theory +1310.1430 Combinatorics +1310.2139 Classical Analysis and ODEs +1310.2617 Phenomenology +1310.3286 Theory +1310.3529 +1310.3832 Theory +1310.4413 Strongly Correlated Electrons +1310.4557 Theory +1310.5160 Lattice +1310.5613 Number Theory +1310.6182 Materials Science +1310.7414 Mesoscale and Nanoscale Physics +1310.7637 Optimization and Control +1310.7949 +1310.8254 Mesoscale and Nanoscale Physics +1311.0065 +1311.0613 Number Theory +1311.0905 Cosmology and Nongalactic Astrophysics +1311.1073 Fluid Dynamics +1311.1141 Combinatorics +1311.1348 Phenomenology +1311.2493 Optics +1311.3298 Superconductivity +1311.3915 +1311.4186 Statistical Mechanics +1311.4233 Solar and Stellar Astrophysics +1311.4254 Analysis of PDEs +1311.4637 +1311.5747 Mesoscale and Nanoscale Physics +1311.5788 Optics +1311.5889 Theory +1311.6134 +1311.6177 Quantum Gases +1311.6468 Phenomenology +1311.6800 Theory +1312.0011 Phenomenology +1312.0082 Optics +1312.0370 Theory +1312.0582 Phenomenology +1312.0753 Theory +1312.1061 Theory +1312.1381 Soft Condensed Matter +1312.3448 Mesoscale and Nanoscale Physics +1312.3644 +1312.4186 Strongly Correlated Electrons +1312.4242 Differential Geometry +1312.5121 +1312.6055 Learning +1312.7733 Mesoscale and Nanoscale Physics +1401.1682 Fluid Dynamics +1401.1718 Quantum Gases +1401.1796 Mesoscale and Nanoscale Physics +1401.4536 Mesoscale and Nanoscale Physics +1401.4831 Information Theory +1401.5328 +1401.6324 Solar and Stellar Astrophysics +1401.6356 Instrumentation and Detectors +1401.6526 +1401.8110 Strongly Correlated Electrons +1401.8282 +1402.0073 Solar and Stellar Astrophysics +1402.0186 Functional Analysis +1402.1949 Statistical Mechanics +1402.2054 Algebraic Topology +1402.2593 Physics Education +1402.3344 Computer Vision and Pattern Recognition +1402.3572 Theory +1402.3731 Experiment +1402.3808 Differential Geometry +1402.5039 Artificial Intelligence +1402.5556 Logic +1402.5572 Systems and Control +1402.5637 Atmospheric and Oceanic Physics +1402.5674 Theory +1402.5951 Systems and Control +1402.5953 Software Engineering +1402.5965 Strongly Correlated Electrons +1402.5966 Biological Physics +1402.5973 Accelerator Physics +1402.5984 Populations and Evolution +1402.5987 Performance +1402.5996 Neurons and Cognition +1402.5998 Logic +1402.6000 Quantitative Methods +1402.6001 Numerical Analysis +1402.6002 Earth and Planetary Astrophysics +1402.6003 Mesoscale and Nanoscale Physics +1402.6005 Hardware Architecture +1402.6008 Disordered Systems and Neural Networks +1402.6013 Learning +1402.6018 Number Theory +1402.6019 Soft Condensed Matter +1402.6024 Optics +1402.6028 Artificial Intelligence +1402.6029 Lattice +1402.6033 Phenomenology +1402.6034 Multimedia +1402.6035 Methodology +1402.6039 +1402.6044 Systems and Control +1402.6045 Software Engineering +1402.6046 Software Engineering +1402.6047 Chaotic Dynamics +1402.6049 Commutative Algebra +1402.6050 Robotics +1402.6055 Superconductivity +1402.6056 Soft Condensed Matter +1402.6058 Statistical Mechanics +1402.6059 Geometric Topology +1402.6062 Instrumentation and Methods for Astrophysics +1402.6067 Logic in Computer Science +1402.6073 Analysis of PDEs +1402.6076 Learning +1402.6077 Learning +1402.6078 Superconductivity +1402.6079 Metric Geometry +1402.6080 Functional Analysis +1402.6085 Category Theory +1402.6095 Complex Variables +1402.6096 Computational Geometry +1402.6099 Differential Geometry +1402.6102 +1402.6105 Optimization and Control +1402.6106 Optimization and Control +1402.6109 Data Structures and Algorithms +1402.6113 Mesoscale and Nanoscale Physics +1402.6114 Physics and Society +1402.6122 Instrumentation and Detectors +1402.6123 Space Physics +1402.6124 Databases +1402.6125 Instrumentation and Detectors +1402.6128 Probability +1402.6129 Combinatorics +1402.6132 Information Retrieval +1402.6133 Machine Learning +1402.6136 Discrete Mathematics +1402.6140 Probability +1402.6141 Mesoscale and Nanoscale Physics +1402.6148 Probability +1402.6149 Methodology +1402.6150 +1402.6151 Genomics +1402.6160 Probability +1402.6164 Materials Science +1402.6167 Probability +1402.6169 Instrumentation and Methods for Astrophysics +1402.6170 Differential Geometry +1402.6173 Probability +1402.6174 Geometric Topology +1402.6176 Biological Physics +1402.6177 +1402.6182 Experiment +1402.6186 Instrumentation and Methods for Astrophysics +1402.6188 Chaotic Dynamics +1402.6189 History and Philosophy of Physics +1402.6193 Fluid Dynamics +1402.6203 +1402.6208 Multiagent Systems +1402.6211 +1402.6214 Biological Physics +1402.6216 +1402.6217 +1402.6219 +1402.6226 Mesoscale and Nanoscale Physics +1402.6230 Analysis of PDEs +1402.6238 Information Retrieval +1402.6239 Social and Information Networks +1402.6243 Networking and Internet Architecture +1402.6250 Metric Geometry +1402.6264 Combinatorics +1402.6268 Chemical Physics +1402.6271 Rings and Algebras +1402.6272 Algebraic Topology +1402.6274 Solar and Stellar Astrophysics +1402.6275 Optics +1402.6281 Logic in Computer Science +1402.6282 Computers and Society +1402.6283 Probability +1402.6288 Social and Information Networks +1402.6289 Social and Information Networks +1402.6294 Combinatorics +1402.6297 Numerical Analysis +1402.6310 Discrete Mathematics +1402.6312 Strongly Correlated Electrons +1402.6314 Instrumentation and Detectors +cond-mat/0203306 Materials Science +cond-mat/0606700 Materials Science +math-ph/0604013 +math/0112253 Logic +math/0206257 Algebraic Topology +math/0307109 Classical Analysis and ODEs +math/0401425 Rings and Algebras +math/0411116 Differential Geometry +math/0503250 K-Theory and Homology +math/0504008 Differential Geometry +math/0504297 Classical Analysis and ODEs +math/0504523 Algebraic Geometry +math/0505375 Algebraic Geometry +math/0506477 Differential Geometry +math/0506524 Geometric Topology +math/0507004 Geometric Topology +math/0508151 Complex Variables +math/0509216 Geometric Topology +math/0509560 Combinatorics +math/0509591 Number Theory +math/0509667 Geometric Topology +math/0510317 Operator Algebras +math/0510334 Algebraic Geometry +math/0511152 Geometric Topology +math/0512006 Dynamical Systems +math/0512013 Algebraic Geometry +math/0512261 Group Theory +math/0602036 Group Theory +math/0602160 Differential Geometry +math/0602210 Algebraic Topology +math/0602599 Number Theory +math/0603003 Algebraic Geometry +math/0603196 Algebraic Topology +math/0603249 Algebraic Geometry +math/0603358 Number Theory +math/0603735 Classical Analysis and ODEs +math/0604194 Algebraic Geometry +math/0604394 Differential Geometry +math/0604492 Dynamical Systems +math/0605018 Geometric Topology +math/0605416 Metric Geometry +math/0605584 Analysis of PDEs +math/0606095 Differential Geometry +math/0606125 Differential Geometry +math/0607099 Operator Algebras +math/0607278 Geometric Topology +math/0607528 Group Theory +math/0607692 Number Theory +math/0608129 Classical Analysis and ODEs +math/0608299 Analysis of PDEs +math/0609065 Number Theory +math/0609080 Operator Algebras +math/0609375 Algebraic Topology +math/0609416 Group Theory +math/0609429 Analysis of PDEs +math/0609615 Number Theory +math/0609674 Geometric Topology +math/0609710 Dynamical Systems +math/0610289 Functional Analysis +math/0610318 Number Theory +math/0610403 Number Theory +math/0610553 Algebraic Geometry +math/0610666 Logic +math/0610711 Quantum Algebra +math/0610743 Algebraic Topology +math/0610792 Algebraic Geometry +math/0610863 Metric Geometry +math/0611081 Commutative Algebra +math/0611204 Symplectic Geometry +math/0611434 Group Theory +math/0611726 Functional Analysis +math/0611820 Number Theory +math/0611896 Group Theory +math/0612050 Combinatorics +math/0612296 Operator Algebras +math/0612343 Functional Analysis +math/0612415 Number Theory +math/0612584 Representation Theory +math/0612657 Rings and Algebras +math/0612739 Complex Variables +math/0701077 Algebraic Topology +math/0701218 Quantum Algebra +math/0701523 Logic +math/0701533 Representation Theory +math/0701799 Operator Algebras +math/0701932 General Mathematics +math/0702201 Differential Geometry +math/0702281 Group Theory +math/0702319 Algebraic Geometry +math/0702322 Metric Geometry +math/0702546 Algebraic Geometry +math/0702580 K-Theory and Homology +math/0702783 Geometric Topology +math/0703055 Geometric Topology +math/0703110 Analysis of PDEs +math/0703157 Representation Theory +math/0703162 Algebraic Geometry +math/0703320 Geometric Topology +math/0703465 Algebraic Geometry +math/0703479 Combinatorics +math/0703480 Geometric Topology +math/0703554 Combinatorics +math/0703587 Differential Geometry +math/0703644 Commutative Algebra +math/0703662 Differential Geometry +math/0703673 Operator Algebras +math/0703693 Probability +math/0703884 Functional Analysis +nucl-th/0605063 +quant-ph/0404175 +quant-ph/0408054 +0712.3934 +0807.2545 +0906.5312 Exactly Solvable and Integrable Systems +0908.0371 Strongly Correlated Electrons +1002.2236 Logic in Computer Science +1010.1649 Symplectic Geometry +1011.5253 Dynamical Systems +1012.5888 Statistical Mechanics +1108.0022 Strongly Correlated Electrons +1109.2980 Dynamical Systems +1109.5219 Phenomenology +1111.2069 Probability +1111.5115 Symplectic Geometry +1201.6142 +1204.4957 Soft Condensed Matter +1205.0746 +1205.2323 Functional Analysis +1205.4599 Probability +1206.4860 Logic in Computer Science +1206.6000 +1207.0963 Logic +1207.4035 +1208.1957 Statistical Mechanics +1208.2266 +1208.4942 Artificial Intelligence +1210.2574 Algebraic Topology +1212.0283 Materials Science +1212.0404 Disordered Systems and Neural Networks +1212.1903 +1212.4160 Phenomenology +1212.4942 Statistics Theory +1212.6104 Computational Complexity +1301.0676 Statistics Theory +1301.5007 Applications +1301.6189 Materials Science +1301.6495 Geometric Topology +1302.0026 Computational Physics +1303.1329 Operator Algebras +1303.3199 Probability +1303.4008 +1303.4265 Probability +1303.6320 Optics +1303.6440 Atomic and Molecular Clusters +1304.0503 Computation +1305.0228 +1305.1251 Strongly Correlated Electrons +1305.4868 Distributed, Parallel, and Cluster Computing +1305.6758 Statistical Mechanics +1306.0618 Machine Learning +1306.1086 Cosmology and Nongalactic Astrophysics +1306.1837 Theory +1306.2154 Materials Science +1306.2810 Quantum Gases +1306.2873 Probability +1306.4265 Computer Science and Game Theory +1307.0288 Mesoscale and Nanoscale Physics +1307.3499 Superconductivity +1307.5422 Mesoscale and Nanoscale Physics +1307.6109 Chaotic Dynamics +1307.6578 Analysis of PDEs +1307.6755 Adaptation and Self-Organizing Systems +1308.2462 Information Theory +1308.2911 Cosmology and Nongalactic Astrophysics +1308.4179 Strongly Correlated Electrons +1308.5253 Algebraic Geometry +1308.6122 Group Theory +1309.2179 Cryptography and Security +1309.3282 Cosmology and Nongalactic Astrophysics +1309.5369 Analysis of PDEs +1309.5447 +1309.7086 +1310.1270 Fluid Dynamics +1310.1616 Cosmology and Nongalactic Astrophysics +1310.1704 Mesoscale and Nanoscale Physics +1310.4964 Mesoscale and Nanoscale Physics +1310.5651 Pattern Formation and Solitons +1310.6389 Lattice +1310.7344 Probability +1310.8207 Statistics Theory +1311.0164 Adaptation and Self-Organizing Systems +1311.1088 Instrumentation and Detectors +1311.5856 Atomic Physics +1311.5922 Superconductivity +1311.6973 High Energy Astrophysical Phenomena +1312.0234 Analysis of PDEs +1312.0784 +1312.1959 Instrumentation and Detectors +1312.3630 +1312.5080 Networking and Internet Architecture +1312.7073 Phenomenology +1312.7206 Theory +1312.7310 Disordered Systems and Neural Networks +1401.0348 Cryptography and Security +1401.0853 Probability +1401.4202 Representation Theory +1401.4204 Representation Theory +1401.4300 Soft Condensed Matter +1401.5074 Cosmology and Nongalactic Astrophysics +1401.7205 Phenomenology +1401.8152 Networking and Internet Architecture +1402.0767 Mesoscale and Nanoscale Physics +1402.1393 Quantum Algebra +1402.2145 Information Retrieval +1402.2387 +1402.2469 Combinatorics +1402.2560 Quantum Gases +1402.2698 Logic in Computer Science +1402.2782 Data Structures and Algorithms +1402.2792 Earth and Planetary Astrophysics +1402.2906 Hardware Architecture +1402.2935 Functional Analysis +1402.2974 Theory +1402.2990 Dynamical Systems +1402.2991 Numerical Analysis +1402.2993 Number Theory +1402.2994 Solar and Stellar Astrophysics +1402.2995 Combinatorics +1402.2999 Optimization and Control +1402.3005 General Physics +1402.3006 Optimization and Control +1402.3008 Chemical Physics +1402.3010 Information Retrieval +1402.3016 +1402.3021 Formal Languages and Automata Theory +1402.3032 Machine Learning +1402.3034 Distributed, Parallel, and Cluster Computing +1402.3035 Accelerator Physics +1402.3036 Data Structures and Algorithms +1402.3037 +1402.3038 +1402.3039 Number Theory +1402.3040 Computation and Language +1402.3043 Geophysics +1402.3046 Materials Science +1402.3047 Theory +1402.3054 Phenomenology +1402.3057 Combinatorics +1402.3058 Superconductivity +1402.3059 Lattice +1402.3061 +1402.3063 +1402.3068 Numerical Analysis +1402.3070 Information Retrieval +1402.3074 Information Theory +1402.3079 Classical Analysis and ODEs +1402.3080 Computation and Language +1402.3083 Quantum Algebra +1402.3084 Analysis of PDEs +1402.3085 Methodology +1402.3086 Analysis of PDEs +1402.3090 Combinatorics +1402.3091 Combinatorics +1402.3095 Optimization and Control +1402.3099 Differential Geometry +1402.3100 Algebraic Geometry +1402.3102 +1402.3105 Fluid Dynamics +1402.3106 +1402.3107 Software Engineering +1402.3110 +1402.3113 Functional Analysis +1402.3118 Probability +1402.3119 Information Theory +1402.3120 Optics +1402.3125 Cryptography and Security +1402.3142 Combinatorics +1402.3143 Classical Physics +1402.3147 Analysis of PDEs +1402.3148 Classical Analysis and ODEs +1402.3149 Hardware Architecture +1402.3150 Hardware Architecture +1402.3151 Astrophysics of Galaxies +1402.3153 Astrophysics of Galaxies +1402.3154 Fluid Dynamics +1402.3157 Rings and Algebras +1402.3158 Analysis of PDEs +1402.3159 Number Theory +1402.3164 Superconductivity +1402.3166 Solar and Stellar Astrophysics +1402.3168 Pattern Formation and Solitons +1402.3169 Solar and Stellar Astrophysics +1402.3170 Materials Science +1402.3173 Computational Engineering, Finance, and Science +1402.3174 Computational Engineering, Finance, and Science +1402.3179 +1402.3183 Mesoscale and Nanoscale Physics +1402.3184 Mesoscale and Nanoscale Physics +1402.3190 +1402.3192 +1402.3193 Information Theory +1402.3197 K-Theory and Homology +1402.3198 Cryptography and Security +1402.3199 Formal Languages and Automata Theory +1402.3200 Materials Science +1402.3203 General Physics +1402.3204 Algebraic Geometry +1402.3206 General Physics +1402.3207 Materials Science +1402.3212 History and Philosophy of Physics +1402.3213 Robotics +1402.3214 General Physics +1402.3215 Information Theory +1402.3216 Classical Analysis and ODEs +1402.3218 Complex Variables +1402.3221 Atomic Physics +1402.3226 Optics +1402.3229 Solar and Stellar Astrophysics +1402.3232 Analysis of PDEs +1402.3236 Computational Geometry +1402.3240 Solar and Stellar Astrophysics +1402.3250 Functional Analysis +1402.3253 +1402.3261 Computer Vision and Pattern Recognition +1402.3263 Optimization and Control +1402.3273 History and Overview +1402.3274 Optics +1402.3275 Geometric Topology +1402.3278 Probability +1402.3288 Social and Information Networks +gr-qc/0111054 +math/0702541 Probability +0711.0756 Phenomenology +0903.2071 General Physics +0911.0996 +1001.2336 Algebraic Geometry +1003.1880 Analysis of PDEs +1009.4886 Computational Finance +1012.1577 Data Structures and Algorithms +1102.5175 Analysis of PDEs +1105.4086 Analysis of PDEs +1107.1015 Combinatorics +1108.0032 Geometric Topology +1108.5708 Commutative Algebra +1110.0335 Analysis of PDEs +1110.6913 Probability +1111.6947 General Physics +1201.3108 Group Theory +1201.3656 Metric Geometry +1202.2575 General Physics +1204.3460 General Physics +1204.3488 Data Structures and Algorithms +1204.4610 Analysis of PDEs +1205.0117 Phenomenology +1205.3726 Probability +1207.3516 +1208.1703 +1208.1993 Phenomenology +1209.3031 Phenomenology +1209.3036 Probability +1210.2493 Classical Analysis and ODEs +1210.3635 Representation Theory +1210.4193 Geometric Topology +1210.6292 Learning +1211.0992 Probability +1211.6922 High Energy Astrophysical Phenomena +1212.4284 Group Theory +1212.6809 Operator Algebras +1301.1966 Genomics +1301.2905 +1302.0903 Cosmology and Nongalactic Astrophysics +1302.4576 Quantum Gases +1303.0764 Strongly Correlated Electrons +1303.1030 Quantum Gases +1303.3162 Numerical Analysis +1303.3257 Machine Learning +1303.5789 Symplectic Geometry +1304.2641 Discrete Mathematics +1304.3869 Number Theory +1304.7433 +1305.1483 Digital Libraries +1305.2399 Mesoscale and Nanoscale Physics +1305.3002 Networking and Internet Architecture +1305.3175 +1305.3884 High Energy Astrophysical Phenomena +1305.4302 Commutative Algebra +1305.5791 Cosmology and Nongalactic Astrophysics +1305.5976 Data Structures and Algorithms +1306.2850 Materials Science +1306.3533 K-Theory and Homology +1306.4874 Differential Geometry +1306.6447 Mesoscale and Nanoscale Physics +1306.6462 Computation +1306.6482 Machine Learning +1306.6847 Group Theory +1307.3487 Analysis of PDEs +1307.3649 Number Theory +1307.6036 Portfolio Management +1307.7427 Mesoscale and Nanoscale Physics +1307.7532 Disordered Systems and Neural Networks +1307.8388 Statistical Mechanics +1308.3535 Dynamical Systems +1308.4424 Mesoscale and Nanoscale Physics +1308.6716 Instrumentation and Detectors +1308.6794 Chemical Physics +1309.0516 Mesoscale and Nanoscale Physics +1309.1289 Soft Condensed Matter +1309.2516 Materials Science +1309.3786 +1309.4139 Statistical Mechanics +1309.5197 Mesoscale and Nanoscale Physics +1309.5555 +1309.5866 Networking and Internet Architecture +1309.7057 Cosmology and Nongalactic Astrophysics +1309.7574 Functional Analysis +1309.7576 Analysis of PDEs +1309.7793 Chaotic Dynamics +1310.1903 +1310.2621 Phenomenology +1310.4210 Learning +1310.6104 +1310.6951 Mesoscale and Nanoscale Physics +1310.7804 Strongly Correlated Electrons +1310.8057 Information Theory +1311.1605 Mesoscale and Nanoscale Physics +1311.1638 Materials Science +1311.1711 Materials Science +1311.3197 Statistical Mechanics +1311.4803 Learning +1311.5109 Theory +1311.6892 Superconductivity +1311.7221 Spectral Theory +1311.7389 Mesoscale and Nanoscale Physics +1312.0225 +1312.1196 +1312.1324 Probability +1312.1521 +1312.1535 Phenomenology +1312.3294 Commutative Algebra +1312.4316 Biological Physics +1312.5604 Computer Vision and Pattern Recognition +1401.0291 Statistical Mechanics +1401.0410 Other Condensed Matter +1401.2454 Data Structures and Algorithms +1401.3099 Phenomenology +1401.3913 Plasma Physics +1401.4575 Information Theory +1401.4767 +1401.4813 Commutative Algebra +1401.6500 Information Theory +1401.6558 Group Theory +1401.6573 Computation and Language +1401.6574 Category Theory +1401.6651 Systems and Control +1401.6681 Discrete Mathematics +1401.6804 Representation Theory +1401.6831 Optimization and Control +1401.7072 Chemical Physics +1401.7475 Functional Analysis +1401.7877 Cosmology and Nongalactic Astrophysics +1402.0045 Applications +1402.0467 High Energy Astrophysical Phenomena +1402.0764 Combinatorics +1402.0880 Phenomenology +1402.0984 Combinatorics +1402.1035 Numerical Analysis +1402.1041 +1402.1161 Optics +1402.1170 +1402.1171 +1402.1183 High Energy Astrophysical Phenomena +1402.1186 Phenomenology +1402.1188 Software Engineering +1402.1192 Solar and Stellar Astrophysics +1402.1194 Data Structures and Algorithms +1402.1196 Quantum Gases +1402.1198 Solar and Stellar Astrophysics +1402.1202 Instrumentation and Methods for Astrophysics +1402.1207 Optics +1402.1208 Number Theory +1402.1209 +1402.1210 Number Theory +1402.1213 Social and Information Networks +1402.1216 Cryptography and Security +1402.1221 Quantum Algebra +1402.1229 Adaptation and Self-Organizing Systems +1402.1240 +1402.1241 Computers and Society +1402.1242 Cryptography and Security +1402.1243 Human-Computer Interaction +1402.1244 +1402.1245 Networking and Internet Architecture +1402.1246 Networking and Internet Architecture +1402.1247 Superconductivity +1402.1249 Solar and Stellar Astrophysics +1402.1252 Networking and Internet Architecture +1402.1253 Methodology +1402.1255 Pricing of Securities +1402.1258 Databases +1402.1259 +1402.1260 Representation Theory +1402.1263 Social and Information Networks +1402.1265 +1402.1269 Mesoscale and Nanoscale Physics +1402.1270 Information Retrieval +1402.1271 Differential Geometry +1402.1272 Analysis of PDEs +1402.1274 Materials Science +1402.1283 Robotics +1402.1285 Distributed, Parallel, and Cluster Computing +1402.1287 Programming Languages +1402.1288 Trading and Market Microstructure +1402.1289 Mesoscale and Nanoscale Physics +1402.1291 Strongly Correlated Electrons +1402.1296 Human-Computer Interaction +1402.1301 Mesoscale and Nanoscale Physics +1402.1302 Complex Variables +1402.1303 Quantum Gases +1402.1305 Probability +1402.1308 Analysis of PDEs +1402.1309 Distributed, Parallel, and Cluster Computing +1402.1310 Optimization and Control +1402.1311 Quantum Gases +1402.1314 Cryptography and Security +1402.1315 Quantum Gases +1402.1318 +1402.1321 Atomic Physics +1402.1322 Group Theory +1402.1324 Human-Computer Interaction +1402.1327 Databases +1402.1331 Computer Vision and Pattern Recognition +1402.1332 Number Theory +1402.1336 Materials Science +1402.1337 Combinatorics +1402.1339 Earth and Planetary Astrophysics +1402.1341 Astrophysics of Galaxies +1402.1345 Cosmology and Nongalactic Astrophysics +1402.1347 Systems and Control +1402.1348 Computer Vision and Pattern Recognition +1402.1352 +1402.1353 Functional Analysis +1402.1356 Optics +1402.1358 Dynamical Systems +1402.1359 Computer Vision and Pattern Recognition +1402.1361 Artificial Intelligence +1402.1364 +1402.1366 Phenomenology +1402.1368 Information Theory +1402.1369 Representation Theory +1402.1370 +1402.1371 Computer Vision and Pattern Recognition +1402.1372 Materials Science +1402.1376 Optics +1402.1379 Data Structures and Algorithms +1402.1390 Analysis of PDEs +1402.1391 Solar and Stellar Astrophysics +1402.1392 Representation Theory +1402.1395 Analysis of PDEs +1402.1399 Networking and Internet Architecture +1402.1401 +1402.1403 Rings and Algebras +1402.1405 Statistical Finance +1402.1406 Statistical Mechanics +1402.1408 General Physics +1402.1410 Populations and Evolution +1402.1414 Probability +1402.1417 Probability +1402.1419 Chemical Physics +1402.1420 Probability +1402.1421 +1402.1423 +1402.1425 Discrete Mathematics +1402.1427 +1402.1428 Representation Theory +1402.1429 Computational Complexity +1402.1431 Materials Science +1402.1435 Numerical Analysis +1402.1437 +1402.1438 Other Computer Science +1402.1440 Statistical Finance +1402.1443 +1402.1448 Chemical Physics +1402.1449 Mesoscale and Nanoscale Physics +1402.1454 Computation and Language +1402.1455 Group Theory +1402.1464 Combinatorics +1402.1466 Optics +1402.1467 Computational Engineering, Finance, and Science +1402.1468 +1402.1469 Databases +1402.1477 +1402.1480 +1402.1485 Computational Engineering, Finance, and Science +1001.0377 Analysis of PDEs +1005.5106 Differential Geometry +1009.3102 Analysis of PDEs +1012.5490 Analysis of PDEs +1101.3733 Differential Geometry +1101.3808 Exactly Solvable and Integrable Systems +1103.2186 Exactly Solvable and Integrable Systems +1105.3154 Combinatorics +1106.1488 Exactly Solvable and Integrable Systems +1109.1460 Probability +1109.5659 Differential Geometry +1112.1064 +1112.3086 Functional Analysis +1201.6371 Dynamical Systems +1202.2876 Category Theory +1202.4587 Algebraic Geometry +1203.6662 Theory +1206.6028 Logic +1207.1152 Materials Science +1207.6430 Machine Learning +1209.4557 Information Theory +1210.4067 +1211.0558 Logic +1211.6122 Cosmology and Nongalactic Astrophysics +1212.4020 Probability +1212.6418 Differential Geometry +1212.6770 +1301.2186 General Physics +1301.2815 Instrumentation and Detectors +1301.6326 Number Theory +1304.1289 Algebraic Geometry +1304.2887 +1304.2992 Quantum Gases +1304.3022 Solar and Stellar Astrophysics +1304.5864 Strongly Correlated Electrons +1305.2132 Genomics +1305.2622 Populations and Evolution +1305.5870 Methodology +1306.1578 +1306.2980 Representation Theory +1306.5608 Quantum Gases +1306.5807 Functional Analysis +1306.6866 Analysis of PDEs +1307.0821 Quantum Gases +1307.3629 Functional Analysis +1307.5544 +1307.6746 Mesoscale and Nanoscale Physics +1307.7688 +1308.1098 Cosmology and Nongalactic Astrophysics +1308.1802 Data Structures and Algorithms +1308.4563 +1308.5018 Exactly Solvable and Integrable Systems +1308.5367 Mesoscale and Nanoscale Physics +1308.5989 Materials Science +1309.1157 Classical Physics +1309.1641 Superconductivity +1309.4567 Functional Analysis +1309.5965 Algebraic Geometry +1309.6323 Phenomenology +1310.0406 +1310.1307 Strongly Correlated Electrons +1310.3906 Superconductivity +1310.5020 Number Theory +1310.5182 Computation +1310.5314 Algebraic Geometry +1310.6459 Cosmology and Nongalactic Astrophysics +1310.7757 Quantum Gases +1310.8247 Theory +1311.2356 Cosmology and Nongalactic Astrophysics +1311.2961 Neurons and Cognition +1311.3296 Cosmology and Nongalactic Astrophysics +1311.5106 Phenomenology +1312.0117 Probability +1312.0374 Experiment +1312.0566 Cosmology and Nongalactic Astrophysics +1312.2326 +1312.2957 Theory +1312.4627 Metric Geometry +1401.2637 Mesoscale and Nanoscale Physics +1401.3279 +1401.5130 Quantitative Methods +1401.6136 Information Theory +1401.7793 +1401.8081 Materials Science +1402.1014 Mesoscale and Nanoscale Physics +1402.2572 +1402.3546 Theory +1402.5395 +1402.5417 Strongly Correlated Electrons +1402.5543 Strongly Correlated Electrons +1402.5727 Geometric Topology +1402.6511 +1402.6811 Statistical Mechanics +1403.0044 Cosmology and Nongalactic Astrophysics +1403.0501 +1403.1636 Optimization and Control +1403.1808 Materials Science +1403.4132 Phenomenology +1403.4750 Representation Theory +1403.7879 Physics and Society +1404.2476 Astrophysics of Galaxies +1404.3392 Experiment +1404.4124 Chemical Physics +1404.5712 Earth and Planetary Astrophysics +1404.6339 Solar and Stellar Astrophysics +1404.7169 Systems and Control +1405.1226 +1405.3701 Phenomenology +1405.4149 Quantum Algebra +1405.5325 K-Theory and Homology +1405.5652 Rings and Algebras +1405.5981 Information Theory +1405.6163 Other Computer Science +1405.7879 Numerical Analysis +1406.0404 Solar and Stellar Astrophysics +1406.0583 Optics +1406.0682 Probability +1406.0728 Computer Science and Game Theory +1406.0791 Statistics Theory +1406.0799 High Energy Astrophysical Phenomena +1406.0819 Physics and Society +1406.0845 Solar and Stellar Astrophysics +1406.0868 Astrophysics of Galaxies +1406.0878 Astrophysics of Galaxies +1406.0882 Dynamical Systems +1406.0887 Mesoscale and Nanoscale Physics +1406.0889 Strongly Correlated Electrons +1406.0891 Solar and Stellar Astrophysics +1406.0893 Logic in Computer Science +1406.0905 Databases +1406.0909 Computer Vision and Pattern Recognition +1406.0926 Fluid Dynamics +1406.0927 Astrophysics of Galaxies +1406.0929 Differential Geometry +1406.0930 Computational Engineering, Finance, and Science +1406.0931 +1406.0934 Spectral Theory +1406.0935 Algebraic Geometry +1406.0936 Physics and Society +1406.0938 Adaptation and Self-Organizing Systems +1406.0939 Theory +1406.0942 Optimization and Control +1406.0947 Combinatorics +1406.0950 Numerical Analysis +1406.0951 Functional Analysis +1406.0952 Chemical Physics +1406.0959 Fluid Dynamics +1406.0963 Instrumentation and Detectors +1406.0966 Astrophysics of Galaxies +1406.0967 Classical Analysis and ODEs +1406.0968 Computational Finance +1406.0969 Classical Analysis and ODEs +1406.0975 Other Computer Science +1406.0981 Number Theory +1406.0984 Chemical Physics +1406.0985 Complex Variables +1406.0988 Fluid Dynamics +1406.0989 Analysis of PDEs +1406.0997 Materials Science +1406.0998 Metric Geometry +1406.1000 Statistics Theory +1406.1001 Numerical Analysis +1406.1008 Numerical Analysis +1406.1010 Optics +1406.1011 Mesoscale and Nanoscale Physics +1406.1012 Social and Information Networks +1406.1014 +1406.1018 Analysis of PDEs +1406.1020 Spectral Theory +1406.1022 Data Structures and Algorithms +1406.1023 Data Analysis, Statistics and Probability +1406.1032 Differential Geometry +1406.1033 Cryptography and Security +1406.1034 Multiagent Systems +1406.1035 Formal Languages and Automata Theory +1406.1036 Information Theory +1406.1038 Medical Physics +1406.1041 Formal Languages and Automata Theory +1406.1047 Geophysics +1406.1054 Rings and Algebras +1406.1055 Information Theory +1406.1060 Algebraic Geometry +1406.1061 Artificial Intelligence +1406.1070 Fluid Dynamics +1406.1075 Numerical Analysis +1406.1077 Data Structures and Algorithms +1406.1081 Information Theory +1406.1082 Optics +1406.1083 Numerical Analysis +1406.1085 Combinatorics +1406.1087 Combinatorics +1406.1091 Dynamical Systems +1406.1093 Analysis of PDEs +1406.1094 Materials Science +1406.1097 Materials Science +1406.1098 Combinatorics +1406.1100 +1406.1106 Geometric Topology +1406.1111 Logic +1406.1112 Physics Education +1406.1114 Astrophysics of Galaxies +1406.1115 Algebraic Topology +1406.1116 Optics +1406.1119 Materials Science +1406.1120 Systems and Control +1406.1125 Exactly Solvable and Integrable Systems +1406.1126 Analysis of PDEs +1406.1128 Artificial Intelligence +1406.1129 Algebraic Geometry +1406.1130 Logic +1406.1131 Probability +1406.1133 Distributed, Parallel, and Cluster Computing +1406.1136 Cosmology and Nongalactic Astrophysics +1406.1137 Social and Information Networks +1406.1138 Statistics Theory +1406.1140 Information Theory +1406.1141 Instrumentation and Detectors +1406.1142 Combinatorics +1406.1143 Information Retrieval +1406.1144 Analysis of PDEs +1406.1152 Complex Variables +math/0512018 Dynamical Systems +0806.3234 Dynamical Systems +0807.2227 Dynamical Systems +0901.1277 Dynamical Systems +0906.3239 Dynamical Systems +0906.3246 Dynamical Systems +0912.0095 Superconductivity +1001.1034 +1004.3827 Geometric Topology +1005.0768 Pricing of Securities +1007.3002 +1008.3337 Mesoscale and Nanoscale Physics +1010.2414 Dynamical Systems +1010.5756 Discrete Mathematics +1012.0237 Algebraic Geometry +1012.1976 Algebraic Geometry +1012.4340 Dynamical Systems +1102.5482 Information Theory +1103.3497 Functional Analysis +1106.2229 Machine Learning +1108.1216 Probability +1108.3602 Probability +1109.1832 Phenomenology +1111.7085 Phenomenology +1202.4355 Number Theory +1203.4700 Functional Analysis +1203.5223 Statistics Theory +1204.2469 Phenomenology +1205.0283 +1206.3419 Quantum Algebra +1206.5371 Number Theory +1207.1333 Data Structures and Algorithms +1207.5129 Differential Geometry +1207.5568 Probability +1208.2416 Strongly Correlated Electrons +1208.3121 Methodology +1208.5531 Representation Theory +1209.4173 Statistics Theory +1209.5095 Classical Analysis and ODEs +1209.6084 Differential Geometry +1210.1055 +1210.3250 Dynamical Systems +1210.4983 Geometric Topology +1210.6648 Materials Science +1210.6963 Computer Science and Game Theory +1210.7335 Physics and Society +1211.0025 Learning +1211.1164 Theory +1211.1224 Algebraic Topology +1212.0470 Materials Science +1212.0603 Probability +1212.1492 Analysis of PDEs +1212.1982 Analysis of PDEs +1212.4570 Quantum Gases +1212.5194 Digital Libraries +1212.5461 Software Engineering +1301.1648 General Physics +1301.1725 Geometric Topology +1302.0561 Information Theory +1302.0573 +1302.5968 Functional Analysis +1302.6676 Group Theory +1303.0518 Statistics Theory +1303.1359 Atomic Physics +1303.2208 Commutative Algebra +1303.3179 +1303.4377 Analysis of PDEs +1304.2199 +1304.2626 Materials Science +1304.3411 Atmospheric and Oceanic Physics +1304.7653 Digital Libraries +1305.0478 Commutative Algebra +1305.1049 Biological Physics +1305.5693 Solar and Stellar Astrophysics +1305.6382 Theory +1306.0403 Number Theory +1306.0836 Genomics +1306.6029 Programming Languages +1306.6197 Analysis of PDEs +1306.6425 Mesoscale and Nanoscale Physics +1307.3614 Algebraic Topology +1307.5224 Superconductivity +1307.6363 Combinatorics +1307.6852 Quantum Gases +1307.7331 Digital Libraries +1308.0612 Phenomenology +1308.2015 Physics and Society +1308.2452 Combinatorics +1308.2777 +1308.3077 +1308.4265 Exactly Solvable and Integrable Systems +1308.4561 +1308.4662 Symplectic Geometry +1308.5420 Combinatorics +1308.5509 Theory +1308.5695 Functional Analysis +1308.6073 +1309.1138 Trading and Market Microstructure +1309.1868 Complex Variables +1309.2628 Phenomenology +1309.3060 Computational Complexity +1309.3315 Metric Geometry +1309.4281 Disordered Systems and Neural Networks +1310.1901 Probability +1310.5578 Soft Condensed Matter +1310.5921 Classical Analysis and ODEs +1310.7506 Chaotic Dynamics +1311.0168 +1311.0649 Probability +1311.3177 Functional Analysis +1311.5218 Astrophysics of Galaxies +1311.6089 Number Theory +1312.1073 Optimization and Control +1312.1357 Theory +1312.3342 High Energy Astrophysical Phenomena +1312.3913 Databases +1312.4357 +1312.4447 Phenomenology +1312.5130 Phenomenology +1312.5181 Materials Science +1312.5536 Phenomenology +1312.6177 Statistical Mechanics +1312.7132 Probability +1401.0266 Group Theory +1401.2783 Probability +1401.2941 +1401.3051 +1401.3762 Data Structures and Algorithms +1401.3786 Populations and Evolution +1401.5054 Neural and Evolutionary Computing +1401.5729 Mesoscale and Nanoscale Physics +1401.6795 Biological Physics +1401.7852 K-Theory and Homology +1402.0364 Phenomenology +1402.0667 Strongly Correlated Electrons +1402.1386 Social and Information Networks +1402.1745 Plasma Physics +1402.3162 Theory +1402.3469 +1402.3569 Computation +1402.3920 Software Engineering +1402.4238 Information Theory +1402.4490 Probability +1402.6066 Metric Geometry +1402.6287 Phenomenology +1402.6603 Classical Analysis and ODEs +1402.6948 Operator Algebras +1402.7132 Solar and Stellar Astrophysics +1403.0676 Theory +1403.1118 Spectral Theory +1403.1278 Optimization and Control +1403.1528 Distributed, Parallel, and Cluster Computing +1403.1624 Strongly Correlated Electrons +1403.1862 Phenomenology +1403.2210 Mesoscale and Nanoscale Physics +1403.3985 Cosmology and Nongalactic Astrophysics +1403.4497 Strongly Correlated Electrons +1403.4749 Formal Languages and Automata Theory +1403.5720 +1403.6094 Lattice +1403.6126 Instrumentation and Methods for Astrophysics +1403.6152 Superconductivity +1403.6418 Soft Condensed Matter +1403.6562 Fluid Dynamics +1403.6610 Phenomenology +1403.6772 Phenomenology +1403.7444 Complex Variables +1403.7813 Number Theory +1403.8044 Experiment +1404.0305 Representation Theory +1404.0592 Phenomenology +1404.0778 +1404.0956 Logic in Computer Science +1404.1426 Strongly Correlated Electrons +1404.2264 High Energy Astrophysical Phenomena +1404.3395 Combinatorics +1404.5762 +1404.6276 Mesoscale and Nanoscale Physics +1404.7224 Theory +1404.7246 Quantum Gases +1404.7371 Materials Science +1405.0593 Probability +1405.0782 Information Theory +1405.1459 Social and Information Networks +1405.1839 Earth and Planetary Astrophysics +1405.2067 Dynamical Systems +1405.2100 Mesoscale and Nanoscale Physics +1405.2530 Data Structures and Algorithms +1405.2757 +1405.3090 Category Theory +1405.3190 Experiment +1405.3369 Materials Science +1405.3703 Statistical Mechanics +1405.4419 Representation Theory +1405.5707 High Energy Astrophysical Phenomena +1405.5876 Astrophysics of Galaxies +1405.6582 Phenomenology +1405.6640 Phenomenology +1405.6770 +1405.7116 Biological Physics +1405.7597 Number Theory +1406.0661 Astrophysics of Galaxies +1406.1104 Materials Science +1406.1723 Analysis of PDEs +1406.1984 Functional Analysis +1406.2213 Algebraic Geometry +1406.2354 Statistical Mechanics +1406.2674 Mesoscale and Nanoscale Physics +1406.2805 Metric Geometry +1406.3062 General Topology +1406.3265 Theory +1406.3278 Computer Science and Game Theory +1406.3545 Complex Variables +1406.3708 High Energy Astrophysical Phenomena +1406.3813 Rings and Algebras +1406.3835 Adaptation and Self-Organizing Systems +1406.3988 Logic in Computer Science +1406.4004 Materials Science +1406.4062 Statistics Theory +1406.4251 Logic +1406.4402 Earth and Planetary Astrophysics +1406.4928 Information Theory +1406.4929 Computational Physics +1406.4979 Atomic Physics +1406.5104 Quantitative Methods +1406.5143 Learning +1406.5270 Chemical Physics +1406.5271 Strongly Correlated Electrons +1406.5282 Information Theory +1406.5431 Graphics +1406.5516 Complex Variables +1406.5520 Digital Libraries +1406.5523 Complex Variables +1406.5525 Fluid Dynamics +1406.5529 Classical Physics +1406.5530 Biological Physics +1406.5533 Number Theory +1406.5535 +1406.5541 +1406.5545 +1406.5548 Representation Theory +1406.5565 Machine Learning +1406.5567 Adaptation and Self-Organizing Systems +1406.5569 Cryptography and Security +1406.5572 Programming Languages +1406.5573 Geometric Topology +1406.5579 Rings and Algebras +1406.5583 Complex Variables +1406.5584 Solar and Stellar Astrophysics +1406.5586 Complex Variables +1406.5588 Networking and Internet Architecture +1406.5589 History and Overview +1406.5590 Atomic Physics +1406.5592 Strongly Correlated Electrons +1406.5596 Cryptography and Security +1406.5597 Mathematical Software +1406.5598 Computation and Language +1406.5600 Learning +1406.5601 Strongly Correlated Electrons +1406.5607 Earth and Planetary Astrophysics +1406.5608 Phenomenology +1406.5611 Number Theory +1406.5612 Phenomenology +1406.5616 Information Retrieval +1406.5617 Information Retrieval +1406.5628 Statistical Mechanics +1406.5632 Plasma Physics +1406.5634 Networking and Internet Architecture +1406.5636 History and Philosophy of Physics +1406.5638 Machine Learning +1406.5642 Superconductivity +1406.5645 Materials Science +1406.5649 Probability +1406.5651 Probability +1406.5653 Computer Vision and Pattern Recognition +1406.5654 Geometric Topology +1406.5661 Number Theory +1406.5662 Phenomenology +1406.5665 Data Structures and Algorithms +1406.5671 Combinatorics +1406.5672 Mesoscale and Nanoscale Physics +1406.5676 Information Theory +1406.5678 Complex Variables +1406.5679 Computer Vision and Pattern Recognition +1406.5681 Optimization and Control +1406.5684 Number Theory +1406.5685 Information Theory +1406.5687 Distributed, Parallel, and Cluster Computing +1406.5689 Group Theory +1406.5690 Information Retrieval +1406.5691 Computation and Language +1406.5696 +1406.5698 +1406.5701 Complex Variables +1406.5705 Soft Condensed Matter +1406.5708 Software Engineering +1406.5710 Computer Vision and Pattern Recognition +1406.5714 Differential Geometry +1406.5718 Statistical Finance +1406.5719 Optimization and Control +1406.5720 Cryptography and Security +1406.5721 Numerical Analysis +1406.5722 Computer Science and Game Theory +1406.5723 Analysis of PDEs +1406.5731 Software Engineering +1406.5736 Machine Learning +1406.5737 History and Philosophy of Physics +1406.5738 +1406.5742 +1406.5746 Populations and Evolution +1406.5748 +1406.5752 Machine Learning +1406.5754 +1406.5759 Distributed, Parallel, and Cluster Computing +1406.5760 Distributed, Parallel, and Cluster Computing +1406.5761 Networking and Internet Architecture +1406.5762 Category Theory +1406.5763 Theory +1406.5764 Probability +1406.5778 Computational Geometry +1406.5782 Soft Condensed Matter +1406.5786 Information Theory +1406.5791 Computational Complexity +1406.5794 Systems and Control +1406.5797 Information Theory +1406.5804 Phenomenology +1406.5805 Atmospheric and Oceanic Physics +1406.5806 Analysis of PDEs +1406.5807 Computer Vision and Pattern Recognition +1406.5809 Materials Science +1406.5815 Number Theory +1406.5816 Theory +1406.5818 Instrumentation and Methods for Astrophysics +1406.5819 +1406.5822 Dynamical Systems +1406.5823 Computation +1406.5824 Computer Vision and Pattern Recognition +1406.5825 Analysis of PDEs +1406.5827 Mesoscale and Nanoscale Physics +1406.5828 Exactly Solvable and Integrable Systems +1406.5829 Superconductivity +1406.5837 +1406.5838 +1406.5840 Statistics Theory +1406.5854 Applications +1406.5856 Strongly Correlated Electrons +1406.5863 Statistics Theory +1406.5865 Geometric Topology +1406.5867 +1406.5868 Soft Condensed Matter +1406.5875 Numerical Analysis +1406.5878 Symplectic Geometry +1406.5879 +1406.5880 Numerical Analysis +1406.5882 Numerical Analysis +1406.5884 Probability +1406.5886 Information Theory +1406.5888 +1406.5897 Phenomenology +1406.5901 Instrumentation and Detectors +1406.5910 Computer Vision and Pattern Recognition +1406.5914 Functional Analysis +1406.5916 +1406.5917 Databases +1406.5921 Theory +1406.5923 Optimization and Control +1406.5926 Information Theory +1406.5927 Dynamical Systems +1406.5928 Atmospheric and Oceanic Physics +1406.5929 Chemical Physics +1406.5930 Dynamical Systems +1406.5934 Functional Analysis +1406.5938 Analysis of PDEs +1406.5940 Group Theory +1406.5941 Algebraic Geometry +1406.5947 Computer Vision and Pattern Recognition +1406.5948 Representation Theory +1406.5958 Methodology +1406.5962 Numerical Analysis +1406.5966 Optics +1406.5970 Computational Complexity +1406.5977 Distributed, Parallel, and Cluster Computing +1406.5979 Learning +1406.5982 Mesoscale and Nanoscale Physics +1406.5985 Geometric Topology +1406.5987 Theory +1406.5995 Number Theory +1406.6000 Theory +1406.6002 Analysis of PDEs +1406.6008 Instrumentation and Methods for Astrophysics +1406.6010 Computation +1406.6012 Multimedia +1406.6017 Methodology +1406.6020 Learning +1406.6021 +1406.6031 Statistics Theory +1406.6035 Software Engineering +1406.6039 Analysis of PDEs +1406.6040 Populations and Evolution +1406.6042 Analysis of PDEs +0802.3820 Geometric Topology +0905.3697 +0906.3355 +0906.4752 Classical Physics +0907.5446 +1002.4010 +1102.0052 Populations and Evolution +1106.6327 Theory +1107.0213 Analysis of PDEs +1107.4568 Algebraic Geometry +1108.3224 +1108.5452 K-Theory and Homology +1111.2748 Fluid Dynamics +1112.1645 Probability +1201.0813 Algebraic Geometry +1201.3543 Optimization and Control +1203.5810 Complex Variables +1204.5582 Logic +1205.2982 Algebraic Geometry +1205.6245 Experiment +1206.4524 Solar and Stellar Astrophysics +1207.7178 Number Theory +1210.7361 Geometric Topology +1212.6929 Differential Geometry +1301.5125 Operator Algebras +1301.6041 Geometric Topology +1302.6550 Classical Analysis and ODEs +1303.1284 Statistics Theory +1304.4152 Theory +1305.0296 Number Theory +1305.4586 +1306.0928 Classical Physics +1306.1444 Dynamical Systems +1306.4590 Theory +1307.0707 +1307.2288 Strongly Correlated Electrons +1307.4268 Optics +1307.4365 +1308.3441 Optics +1309.0848 Statistical Mechanics +1309.1221 +1309.2215 +1309.4528 Phenomenology +1309.6363 Logic +1309.7952 Computational Physics +1310.0341 Combinatorics +1310.0633 +1310.3555 Theory +1310.5914 Solar and Stellar Astrophysics +1310.6388 Phenomenology +1310.6765 Statistical Mechanics +1310.7598 +1311.1784 Strongly Correlated Electrons +1311.2768 Superconductivity +1311.4176 Software Engineering +1311.5696 Molecular Networks +1311.7033 Atomic Physics +1312.0500 +1312.1102 +1312.2752 Spectral Theory +1312.3527 Optimization and Control +1312.5857 Machine Learning +1312.7770 Group Theory +1401.0917 Probability +1401.1092 Data Analysis, Statistics and Probability +1401.7062 Statistical Mechanics +1402.1594 Solar and Stellar Astrophysics +1402.1916 Numerical Analysis +1402.2471 Combinatorics +1402.2773 Information Theory +1402.6158 +1403.0070 Dynamical Systems +1403.1015 +1403.2668 Physics and Society +1403.3907 Computer Science and Game Theory +1403.4085 Classical Analysis and ODEs +1403.4375 +1403.5756 Superconductivity +1403.5897 Mesoscale and Nanoscale Physics +1403.6600 Neural and Evolutionary Computing +1403.7970 Systems and Control +1404.0345 Probability +1404.1763 +1404.2276 Statistical Mechanics +1404.2289 Systems and Control +1404.3958 Neurons and Cognition +1404.4114 Learning +1404.4226 Neurons and Cognition +1404.4466 +1404.5761 Atomic Physics +1404.5957 Cosmology and Nongalactic Astrophysics +1404.6616 +1404.6977 +1405.1685 Theory +1405.1787 +1405.1896 Theory +1405.2165 Neurons and Cognition +1405.3170 Biological Physics +1405.3491 Networking and Internet Architecture +1405.5242 Quantum Gases +1405.7506 Numerical Analysis +1406.0454 +1406.0577 +1406.0608 High Energy Astrophysical Phenomena +1406.1015 Statistical Mechanics +1406.1909 Theory +1406.2320 Astrophysics of Galaxies +1406.4179 Astrophysics of Galaxies +1406.4863 Statistical Mechanics +1406.5184 Mesoscale and Nanoscale Physics +1406.6771 Group Theory +1407.0145 Physics and Society +1407.2958 +1407.3056 Mesoscale and Nanoscale Physics +1407.3111 Materials Science +1407.4200 Mesoscale and Nanoscale Physics +1407.7006 Analysis of PDEs +1407.7108 Spectral Theory +1407.7198 Biomolecules +1408.0550 Combinatorics +1408.0995 Algebraic Geometry +1408.1010 Mesoscale and Nanoscale Physics +1408.2263 Mesoscale and Nanoscale Physics +1408.3198 Information Theory +1408.3225 Number Theory +1408.3233 Theory +1408.3825 Algebraic Geometry +1408.4709 Representation Theory +1408.6029 Mesoscale and Nanoscale Physics +1408.6664 Superconductivity +1409.1624 Operator Algebras +1409.2322 +1409.3482 Quantum Gases +1409.3915 Statistical Mechanics +1409.6299 Phenomenology +1409.6549 Cosmology and Nongalactic Astrophysics +1409.6893 Functional Analysis +1409.7566 Earth and Planetary Astrophysics +1409.7638 Combinatorics +1409.7985 Computation and Language +1409.8170 +1410.0843 Analysis of PDEs +1410.0886 High Energy Astrophysical Phenomena +1410.2378 Analysis of PDEs +1410.2665 +1410.2873 Astrophysics of Galaxies +1410.3856 Software Engineering +1410.4357 Probability +1410.5958 Computer Science and Game Theory +1410.6392 Optimization and Control +1410.6940 Phenomenology +1410.7724 Programming Languages +1410.8718 Soft Condensed Matter +1410.8730 Chemical Physics +1411.1672 Biomolecules +1411.1971 Computer Vision and Pattern Recognition +1411.2430 Phenomenology +1411.3264 Analysis of PDEs +1411.3389 Functional Analysis +1411.3765 +1411.4621 General Topology +1411.5186 Lattice +1411.5595 Computation and Language +1411.6215 Algebraic Geometry +1411.6484 Populations and Evolution +1411.6526 Phenomenology +1411.6587 Information Theory +1411.6723 Combinatorics +1411.6853 Data Structures and Algorithms +1411.6862 Representation Theory +1411.6954 Dynamical Systems +1411.6993 Information Theory +1411.7044 Materials Science +1411.7045 Materials Science +1411.7050 Mesoscale and Nanoscale Physics +1411.7052 Solar and Stellar Astrophysics +1411.7053 Experiment +1411.7056 Complex Variables +1411.7060 Statistics Theory +1411.7070 Analysis of PDEs +1411.7071 Materials Science +1411.7072 Dynamical Systems +1411.7073 Strongly Correlated Electrons +1411.7074 Numerical Analysis +1411.7077 +1411.7078 Commutative Algebra +1411.7079 Analysis of PDEs +1411.7080 Numerical Analysis +1411.7084 Cryptography and Security +1411.7089 Lattice +1411.7090 Human-Computer Interaction +1411.7091 Physics and Society +1411.7092 Numerical Analysis +1411.7094 Soft Condensed Matter +1411.7096 Commutative Algebra +1411.7098 Classical Analysis and ODEs +1411.7101 Optimization and Control +1411.7102 Statistical Mechanics +1411.7105 Physics and Society +1411.7106 Exactly Solvable and Integrable Systems +1411.7109 Number Theory +1411.7110 Classical Analysis and ODEs +1411.7113 Computer Vision and Pattern Recognition +1411.7116 Dynamical Systems +1411.7117 Numerical Analysis +1411.7118 Number Theory +1411.7119 Lattice +1411.7122 +1411.7126 Combinatorics +1411.7127 Rings and Algebras +1411.7128 Materials Science +1411.7131 Distributed, Parallel, and Cluster Computing +1411.7132 Analysis of PDEs +1411.7135 Probability +1411.7136 Probability +1411.7137 Complex Variables +1411.7139 Logic in Computer Science +1411.7140 Logic in Computer Science +1411.7143 Optics +1411.7145 Materials Science +1411.7148 Robotics +1411.7149 Artificial Intelligence +1411.7150 Phenomenology +1411.7151 +1411.7153 Analysis of PDEs +1411.7156 Optics +1411.7158 Logic in Computer Science +1411.7161 +1411.7164 Logic +1411.7165 Analysis of PDEs +1411.7167 Dynamical Systems +1411.7168 Phenomenology +1411.7169 Optimization and Control +1411.7170 Experiment +1411.7189 Algebraic Geometry +1411.7192 Combinatorics +1411.7193 Networking and Internet Architecture +1411.7197 Information Theory +1411.7199 Complex Variables +1411.7200 Machine Learning +1411.7201 Optics +1411.7203 Experiment +1411.7204 Rings and Algebras +1411.7206 Phenomenology +1411.7211 +1411.7217 Information Theory +1411.7218 +1411.7219 Differential Geometry +1411.7221 Phenomenology +1411.7224 Performance +1411.7225 Computers and Society +1411.7228 Data Structures and Algorithms +1411.7229 Algebraic Geometry +1411.7231 Optimization and Control +1411.7232 Phenomenology +1411.7233 Phenomenology +1411.7234 Metric Geometry +1411.7236 Probability +1411.7239 +1411.7240 Phenomenology +1411.7242 Analysis of PDEs +1411.7243 Instrumentation and Detectors +1411.7244 Classical Analysis and ODEs +1411.7246 Functional Analysis +1411.7249 Number Theory +1411.7250 Analysis of PDEs +1411.7253 Superconductivity +1411.7257 +1411.7259 Differential Geometry +1411.7261 Astrophysics of Galaxies +1411.7263 Complex Variables +1411.7265 Optimization and Control +1411.7266 Solar and Stellar Astrophysics +1411.7269 Operator Algebras +1411.7271 Analysis of PDEs +1411.7273 Computational Geometry +1411.7275 Cosmology and Nongalactic Astrophysics +1411.7278 Mesoscale and Nanoscale Physics +1411.7279 Experiment +1411.7280 +1411.7281 Materials Science +1411.7284 Differential Geometry +1411.7286 Information Theory +1411.7289 Analysis of PDEs +1411.7291 Complex Variables +1411.7296 Social and Information Networks +1411.7310 Physics and Society +1411.7321 Phenomenology +1411.7324 Statistics Theory +1411.7328 Materials Science +1411.7330 +1411.7332 Group Theory +1411.7336 Computer Vision and Pattern Recognition +1411.7337 Computational Geometry +1411.7343 Databases +1411.7344 Distributed, Parallel, and Cluster Computing +1411.7347 Experiment +1411.7348 Subcellular Processes +1411.7349 Dynamical Systems +1411.7353 Analysis of PDEs +1411.7355 +1411.7358 +1411.7362 Phenomenology +1411.7367 Group Theory +1411.7373 Mesoscale and Nanoscale Physics +1411.7374 Biological Physics +hep-ph/0611100 Phenomenology +math/0507143 Operator Algebras +0711.2296 +0801.3239 Computation and Language +0805.2970 Operator Algebras +0812.1571 Group Theory +0908.0077 Probability +0910.4785 Differential Geometry +1001.4461 Optimization and Control +1007.3932 Functional Analysis +1009.1974 Cosmology and Nongalactic Astrophysics +1009.6214 Analysis of PDEs +1011.6304 Geometric Topology +1012.3646 Optimization and Control +1102.1937 High Energy Astrophysical Phenomena +1102.3787 Differential Geometry +1103.1665 Optimization and Control +1104.0474 Differential Geometry +1106.4000 Analysis of PDEs +1107.2788 Information Theory +1110.3513 Geometric Topology +1111.4722 Differential Geometry +1112.1977 Statistics Theory +1201.0275 +1201.0371 General Physics +1201.1721 +1202.1940 Optimization and Control +1203.1161 Strongly Correlated Electrons +1204.6704 Analysis of PDEs +1205.0515 Algebraic Geometry +1205.3542 +1205.4643 Portfolio Management +1206.0079 Differential Geometry +1206.6244 Mesoscale and Nanoscale Physics +1207.3458 Instrumentation and Methods for Astrophysics +1207.5484 Differential Geometry +1208.1151 Information Theory +1208.2880 Experiment +1208.2920 Combinatorics +1208.3928 Superconductivity +1209.3405 Materials Science +1210.0653 Optics +1210.1180 Probability +1210.1782 +1210.6533 Materials Science +1210.7131 Superconductivity +1211.3021 Mesoscale and Nanoscale Physics +1211.7074 Theory +1212.0354 Data Analysis, Statistics and Probability +1212.4093 Statistics Theory +1212.6000 +1212.6636 Databases +1301.4296 +1301.5137 Optimization and Control +1301.5462 Materials Science +1301.6491 Networking and Internet Architecture +1302.0376 +1302.0554 Geometric Topology +1302.1117 +1302.2082 Information Theory +1302.2265 +1302.3768 Probability +1302.5392 Cryptography and Security +1302.5587 Computational Physics +1302.7285 Materials Science +1303.1040 Chaotic Dynamics +1303.1066 Combinatorics +1303.4349 Data Structures and Algorithms +1303.5161 Probability +1303.6756 +1304.7579 Strongly Correlated Electrons +1304.7930 Data Analysis, Statistics and Probability +1305.0081 Statistical Mechanics +1305.0654 Strongly Correlated Electrons +1305.2302 Materials Science +1305.2340 Biological Physics +1305.3042 +1305.3285 Number Theory +1305.5088 Solar and Stellar Astrophysics +1305.5461 +1305.5611 Mesoscale and Nanoscale Physics +1305.5915 Portfolio Management +1306.0206 +1306.0722 Theory +1306.5329 Optics +1306.5895 Computational Physics +1306.6139 Mesoscale and Nanoscale Physics +1306.6151 Cosmology and Nongalactic Astrophysics +1306.6910 Commutative Algebra +1307.0605 Materials Science +1307.3569 Quantum Gases +1307.3781 Superconductivity +1307.6132 Differential Geometry +1308.2317 Cosmology and Nongalactic Astrophysics +1308.2586 Probability +1308.2713 Cosmology and Nongalactic Astrophysics +1308.3616 Populations and Evolution +1308.3914 Phenomenology +1308.5172 Chemical Physics +1308.5609 Machine Learning +1308.5688 +1308.6524 Cosmology and Nongalactic Astrophysics +1308.6755 Cosmology and Nongalactic Astrophysics +1309.0192 Data Structures and Algorithms +1309.1693 Symplectic Geometry +1309.1800 +1309.1918 +1309.2006 +1309.5691 Plasma Physics +1309.5730 Optics +1309.7269 Quantum Gases +1309.7529 Materials Science +1309.7973 +1310.0494 Fluid Dynamics +1310.1065 Quantum Gases +1310.1146 Chemical Physics +1310.1343 Chemical Physics +1310.2762 Materials Science +1310.6452 Quantum Gases +1310.8312 +1311.1017 Mesoscale and Nanoscale Physics +1311.2579 +1311.3867 Combinatorics +1311.3918 Information Theory +1311.5358 Fluid Dynamics +1311.5545 Algebraic Geometry +1311.7486 +1312.0169 Physics and Society +1312.0406 Atomic Physics +1312.1458 Phenomenology +1312.1615 +1312.2298 Data Analysis, Statistics and Probability +1312.3099 Statistical Mechanics +1312.3799 Statistical Mechanics +1312.4824 Information Retrieval +1312.4960 Cosmology and Nongalactic Astrophysics +1312.5231 Quantitative Methods +1312.5868 Atomic Physics +1312.6248 Instrumentation and Detectors +1312.7476 +1312.7530 +1312.7690 History and Overview +1401.0064 +1401.0277 Analysis of PDEs +1401.1432 Cosmology and Nongalactic Astrophysics +1401.1567 Group Theory +1401.1967 Materials Science +1401.2166 High Energy Astrophysical Phenomena +1401.2329 Solar and Stellar Astrophysics +1401.2677 Group Theory +1401.3215 Information Theory +1401.3280 Logic in Computer Science +1401.3291 Machine Learning +1401.3364 Soft Condensed Matter +1401.3373 Computer Science and Game Theory +1401.3666 Atomic Physics +1401.3741 Instrumentation and Methods for Astrophysics +1401.3750 Strongly Correlated Electrons +1401.3756 Mesoscale and Nanoscale Physics +1401.3757 Category Theory +1401.3758 Algebraic Topology +1401.3760 Information Theory +1401.3763 Superconductivity +1401.3767 Analysis of PDEs +1401.3768 Cryptography and Security +1401.3772 Medical Physics +1401.3773 +1401.3776 Superconductivity +1401.3785 Information Theory +1401.3787 High Energy Astrophysical Phenomena +1401.3790 Applications +1401.3793 Differential Geometry +1401.3803 Solar and Stellar Astrophysics +1401.3804 Phenomenology +1401.3807 Information Theory +1401.3811 Geometric Topology +1401.3812 Computation +1401.3813 Machine Learning +1401.3816 Fluid Dynamics +1401.3818 Computer Vision and Pattern Recognition +1401.3821 Combinatorics +1401.3824 Performance +1401.3825 Artificial Intelligence +1401.3827 Artificial Intelligence +1401.3829 Computer Science and Game Theory +1401.3830 Artificial Intelligence +1401.3831 Artificial Intelligence +1401.3832 Computation and Language +1401.3833 Artificial Intelligence +1401.3834 Computer Science and Game Theory +1401.3835 Artificial Intelligence +1401.3836 Learning +1401.3837 Computer Science and Game Theory +1401.3838 Artificial Intelligence +1401.3839 Artificial Intelligence +1401.3840 Logic in Computer Science +1401.3841 Artificial Intelligence +1401.3842 Artificial Intelligence +1401.3843 Computational Geometry +1401.3844 Computer Science and Game Theory +1401.3845 Multiagent Systems +1401.3846 Artificial Intelligence +1401.3847 Artificial Intelligence +1401.3848 Artificial Intelligence +1401.3849 Logic in Computer Science +1401.3850 Artificial Intelligence +1401.3851 Artificial Intelligence +1401.3852 Computer Science and Game Theory +1401.3853 Artificial Intelligence +1401.3854 Artificial Intelligence +1401.3855 Computer Science and Game Theory +1401.3856 Computer Science and Game Theory +1401.3857 Artificial Intelligence +1401.3858 Logic in Computer Science +1401.3859 Artificial Intelligence +1401.3860 Artificial Intelligence +1401.3861 Artificial Intelligence +1401.3862 Multiagent Systems +1401.3863 Artificial Intelligence +1401.3864 Logic in Computer Science +1401.3865 Computation and Language +1401.3866 Artificial Intelligence +1401.3867 Artificial Intelligence +1401.3868 Logic in Computer Science +1401.3869 Computer Science and Game Theory +1401.3870 Learning +1401.3871 Artificial Intelligence +1401.3872 Artificial Intelligence +1401.3874 Information Retrieval +1401.3875 Artificial Intelligence +1401.3876 Computer Science and Game Theory +1401.3877 Learning +1401.3878 Logic in Computer Science +1401.3879 Artificial Intelligence +1401.3880 Learning +1401.3881 Artificial Intelligence +1401.3882 Artificial Intelligence +1401.3883 Information Retrieval +1401.3884 Computer Science and Game Theory +1401.3885 Artificial Intelligence +1401.3886 Artificial Intelligence +1401.3887 Artificial Intelligence +1401.3888 Computer Science and Game Theory +1401.3890 Artificial Intelligence +1401.3891 Probability +1401.3892 Artificial Intelligence +1401.3893 Artificial Intelligence +1401.3894 Learning +1401.3895 Artificial Intelligence +1401.3896 Information Retrieval +1401.3897 Logic in Computer Science +1401.3898 Logic in Computer Science +1401.3899 Artificial Intelligence +1401.3900 Logic in Computer Science +1401.3901 Logic in Computer Science +1401.3902 Artificial Intelligence +1401.3903 Multiagent Systems +1401.3905 Artificial Intelligence +1401.3906 Artificial Intelligence +1401.3907 Computer Science and Game Theory +1401.3908 Information Retrieval +1401.3909 Artificial Intelligence +1401.3910 Artificial Intelligence +1401.3914 Phenomenology +1401.3918 Physics and Society +1401.3921 Probability +1401.3923 Metric Geometry +1401.3926 Algebraic Geometry +1401.3927 Accelerator Physics +1401.3928 Information Theory +1401.3931 Accelerator Physics +1401.3933 Probability +1401.3934 Accelerator Physics +1401.3937 Accelerator Physics +1401.3939 Accelerator Physics +1401.3940 Machine Learning +1401.3941 Information Theory +1401.3944 Probability +1401.3947 Superconductivity +1401.3950 Accelerator Physics +1401.3952 +1401.3955 Accelerator Physics +1401.3958 Accelerator Physics +1401.3959 Materials Science +1401.3960 Accelerator Physics +1401.3961 Accelerator Physics +1401.3962 Astrophysics of Galaxies +1401.3963 Theory +1401.3964 Phenomenology +1401.3967 Accelerator Physics +1401.3969 +1401.3971 Accelerator Physics +1401.3976 Astrophysics of Galaxies +1401.3981 Quantum Algebra +1401.3982 Differential Geometry +1401.3983 Mesoscale and Nanoscale Physics +1401.3985 Software Engineering +1401.3989 Statistical Mechanics +1401.3994 Pricing of Securities +1401.3995 Information Theory +1401.3997 Materials Science +1401.3998 Information Theory +1401.4001 Soft Condensed Matter +1401.4007 Statistics Theory +1401.4010 Mesoscale and Nanoscale Physics +1401.4012 Networking and Internet Architecture +1401.4013 Optics +1401.4018 Cosmology and Nongalactic Astrophysics +1401.4026 Quantitative Methods +1401.4033 Mesoscale and Nanoscale Physics +1401.4034 Atomic Physics +1401.4038 Differential Geometry +1401.4042 Strongly Correlated Electrons +1401.4045 Data Analysis, Statistics and Probability +1401.4048 Algebraic Geometry +1401.4053 +1401.4056 +1401.4059 Materials Science +1401.4061 Materials Science +1401.4062 Superconductivity +1401.4063 Distributed, Parallel, and Cluster Computing +1401.4072 Superconductivity +1401.4077 +1401.4079 Solar and Stellar Astrophysics +1401.4080 +1401.4089 Strongly Correlated Electrons +1401.4092 Computer Science and Game Theory +1401.4097 Theory +1401.4105 Computer Vision and Pattern Recognition +1401.4107 Computer Vision and Pattern Recognition +1401.4109 Optimization and Control +1401.4116 +1401.4121 Physics and Society +1401.4123 Solar and Stellar Astrophysics +1401.4126 +1401.4128 Learning +1401.4130 Logic in Computer Science +1401.4140 Physics and Society +1401.4143 Learning +1401.4144 Artificial Intelligence +1401.4146 General Topology +1401.4147 Information Theory +1401.4149 Analysis of PDEs +1401.4150 Strongly Correlated Electrons +1401.4151 Cryptography and Security +1401.4158 Adaptation and Self-Organizing Systems +1401.4160 +1401.4163 Computational Physics +cond-mat/0408561 Materials Science +hep-ph/0208100 Phenomenology +hep-th/0611258 Theory +math-ph/0006007 +math-ph/0012049 +math-ph/0012050 +math-ph/0106002 +math-ph/0112022 +math-ph/0302015 +math-ph/0304011 +math-ph/0310045 +math-ph/0312030 +math-ph/0404049 +math/0101210 Algebraic Geometry +math/0504308 Optimization and Control +math/0511424 Quantum Algebra +math/0609165 Dynamical Systems +math/0609280 Dynamical Systems +math/0609836 Dynamical Systems +quant-ph/0505116 +0806.1917 Complex Variables +1006.1138 Learning +1008.4192 Combinatorics +1010.5878 Commutative Algebra +1010.5880 K-Theory and Homology +1011.5079 Commutative Algebra +1012.1919 Numerical Analysis +1105.0878 +1105.4928 Classical Analysis and ODEs +1112.5114 Algebraic Geometry +1205.4516 Dynamical Systems +1207.0268 Learning +1210.1566 +1210.2412 Combinatorics +1212.1518 Number Theory +1212.4481 Theory +1212.6501 Commutative Algebra +1301.2180 Information Theory +1301.3297 Computational Complexity +1301.4727 Differential Geometry +1301.4871 Algebraic Geometry +1303.0615 Dynamical Systems +1303.2256 Neurons and Cognition +1304.5601 Dynamical Systems +1304.6052 Probability +1304.6137 High Energy Astrophysical Phenomena +1304.8062 General Physics +1305.1989 Number Theory +1305.4807 Physics and Society +1305.5064 Plasma Physics +1305.7444 Numerical Analysis +1306.1778 Instrumentation and Methods for Astrophysics +1306.3236 Theory +1306.3777 Dynamical Systems +1306.4357 Dynamical Systems +1307.0736 Lattice +1307.1573 Plasma Physics +1307.4435 Theory +1308.2070 Plasma Physics +1308.3552 Neurons and Cognition +1308.4813 Combinatorics +1308.5289 Algebraic Geometry +1309.6644 Phenomenology +1310.0287 Plasma Physics +1310.0448 Neurons and Cognition +1310.1306 Probability +1310.3205 Superconductivity +1310.4249 Quantitative Methods +1310.5124 Number Theory +1310.5128 Theory +1310.6626 Metric Geometry +1310.6661 Probability +1310.7471 Phenomenology +1310.7577 Theory +1310.8308 Theory +1311.0118 Pricing of Securities +1311.2075 Superconductivity +1311.2898 Theory +1311.2946 Strongly Correlated Electrons +1311.4652 Superconductivity +1311.5401 Computation and Language +1311.6493 Algebraic Geometry +1311.6650 Mesoscale and Nanoscale Physics +1312.0164 Strongly Correlated Electrons +1312.1983 Computational Complexity +1312.2488 Optics +1312.3476 +1312.3622 +1312.3689 +1312.4617 Social and Information Networks +1312.5243 Strongly Correlated Electrons +1312.5817 Digital Libraries +1312.6675 Social and Information Networks +1401.0101 Mesoscale and Nanoscale Physics +1401.5249 Group Theory +1401.5880 Phenomenology +1402.2003 Digital Libraries +1402.4555 Algebraic Geometry +1402.5405 +1402.5472 Cryptography and Security +1402.6290 +1402.6855 Phenomenology +1402.7052 Quantum Gases +1402.7142 Number Theory +1403.0221 Cosmology and Nongalactic Astrophysics +1403.1265 Theory +1403.1561 Phenomenology +1403.1716 Pattern Formation and Solitons +1403.1760 Plasma Physics +1403.1809 +1403.1954 Analysis of PDEs +1403.1987 High Energy Astrophysical Phenomena +1403.2850 Physics and Society +1403.3050 Materials Science +1403.3577 Statistical Mechanics +1403.4534 Physics and Society +1403.4591 Cosmology and Nongalactic Astrophysics +1403.4691 Systems and Control +1403.4852 Cosmology and Nongalactic Astrophysics +1403.4959 Operator Algebras +1403.5221 Phenomenology +1403.5562 Phenomenology +1403.5691 Representation Theory +1403.6018 Phenomenology +1403.6649 Theory +1403.6801 Neurons and Cognition +1404.0347 Theory +1404.0888 Materials Science +1404.1094 Theory +1404.1570 Cosmology and Nongalactic Astrophysics +1404.1927 Phenomenology +1404.3090 Cosmology and Nongalactic Astrophysics +1404.3359 Statistical Mechanics +1404.3947 Phenomenology +1404.4057 Phenomenology +1404.4206 Mesoscale and Nanoscale Physics +1404.4292 Atomic Physics +1404.4737 Phenomenology +1404.5198 Phenomenology +1404.5436 +1404.5882 Experiment +1404.5965 Phenomenology +1404.6217 Strongly Correlated Electrons +1404.7231 Theory +1404.7326 Mesoscale and Nanoscale Physics +1405.0015 Theory +1405.0208 Theory +1405.1032 Astrophysics of Galaxies +1405.1276 Probability +1405.1282 Phenomenology +1405.2206 Lattice +1405.2498 Mesoscale and Nanoscale Physics +1405.2749 +1405.3184 Combinatorics +1405.3650 Theory +1405.3881 Molecular Networks +1405.3911 Phenomenology +1405.4133 Experiment +1405.4386 Accelerator Physics +1405.5470 Optimization and Control +1405.6059 Number Theory +1405.6608 Strongly Correlated Electrons +1405.6624 Quantum Gases +1405.6674 Number Theory +1405.7099 Materials Science +1405.7459 Astrophysics of Galaxies +1405.7546 Rings and Algebras +1405.7594 Mesoscale and Nanoscale Physics +1406.0108 +1406.1118 Mesoscale and Nanoscale Physics +1406.2764 Optics +1406.2976 Theory +1406.3101 Strongly Correlated Electrons +1406.3166 Machine Learning +1406.3885 Phenomenology +1406.6070 Phenomenology +1407.0343 Social and Information Networks +1407.0479 Mesoscale and Nanoscale Physics +1407.0568 Superconductivity +1407.1831 Statistics Theory +1407.2766 Group Theory +1407.3667 +1407.3743 Cell Behavior +1407.4002 Strongly Correlated Electrons +1407.4716 Strongly Correlated Electrons +1407.5207 Optics +1407.5220 Physics and Society +1407.5971 +1407.6135 Analysis of PDEs +1407.6825 Strongly Correlated Electrons +1407.7675 Materials Science +1407.7852 Exactly Solvable and Integrable Systems +1407.8041 Social and Information Networks +1408.0420 Number Theory +1408.0502 Biological Physics +1408.0584 Superconductivity +1408.1338 Probability +1408.1675 Programming Languages +1408.1802 Solar and Stellar Astrophysics +1408.2019 Quantum Gases +1408.2153 Methodology +1408.2241 +1408.2277 Combinatorics +1408.2299 Rings and Algebras +1408.2457 Medical Physics +1408.2512 Computers and Society +1408.2514 Cosmology and Nongalactic Astrophysics +1408.2536 Earth and Planetary Astrophysics +1408.2543 Earth and Planetary Astrophysics +1408.2544 Numerical Analysis +1408.2545 Physics Education +1408.2546 Atomic Physics +1408.2547 Algebraic Topology +1408.2548 Earth and Planetary Astrophysics +1408.2551 Systems and Control +1408.2556 Theory +1408.2557 Commutative Algebra +1408.2560 Fluid Dynamics +1408.2563 Analysis of PDEs +1408.2564 Programming Languages +1408.2568 Combinatorics +1408.2569 Dynamical Systems +1408.2574 Medical Physics +1408.2575 Quantitative Methods +1408.2578 Solar and Stellar Astrophysics +1408.2581 Statistics Theory +1408.2587 Earth and Planetary Astrophysics +1408.2592 Computational Geometry +1408.2595 Data Structures and Algorithms +1408.2596 Category Theory +1408.2603 Optics +1408.2604 Data Structures and Algorithms +1408.2607 Software Engineering +1408.2610 Physics and Society +1408.2611 Classical Analysis and ODEs +1408.2614 Optimization and Control +1408.2618 Commutative Algebra +1408.2619 Commutative Algebra +1408.2621 Information Theory +1408.2623 Geometric Topology +1408.2626 Networking and Internet Architecture +1408.2627 Group Theory +1408.2628 +1408.2632 Networking and Internet Architecture +1408.2633 Fluid Dynamics +1408.2634 Analysis of PDEs +1408.2635 Commutative Algebra +1408.2638 Instrumentation and Detectors +1408.2639 Discrete Mathematics +1408.2641 Materials Science +1408.2642 Strongly Correlated Electrons +1408.2643 Commutative Algebra +1408.2645 Commutative Algebra +1408.2648 Algebraic Geometry +1408.2655 Theory +1408.2657 Distributed, Parallel, and Cluster Computing +1408.2660 Information Theory +1408.2663 Analysis of PDEs +1408.2665 Mesoscale and Nanoscale Physics +1408.2669 Geometric Topology +1408.2671 Algebraic Geometry +1408.2674 Emerging Technologies +1408.2679 Phenomenology +1408.2684 +1408.2687 Software Engineering +1408.2688 Solar and Stellar Astrophysics +1408.2690 Computer Science and Game Theory +1408.2692 Classical Analysis and ODEs +1408.2696 Optimization and Control +1408.2698 Computation +1408.2699 Physics and Society +1408.2702 Astrophysics of Galaxies +1408.2705 Materials Science +1408.2706 Differential Geometry +1408.2708 Probability +1408.2709 Numerical Analysis +1408.2711 Differential Geometry +1408.2716 +1408.2717 Analysis of PDEs +1408.2721 Symbolic Computation +1408.2724 Applications +1408.2727 Numerical Analysis +1408.2728 Dynamical Systems +1408.2732 Chaotic Dynamics +1408.2734 Physics and Society +1408.2742 Theory +1408.2743 Algebraic Topology +1408.2746 Medical Physics +1408.2750 Analysis of PDEs +1408.2756 Superconductivity +1408.2757 Methodology +1408.2758 Cryptography and Security +1408.2763 Logic +1408.2772 Complex Variables +1408.2777 Solar and Stellar Astrophysics +1408.2783 General Mathematics +1408.2784 Logic +1408.2786 Combinatorics +1408.2787 Earth and Planetary Astrophysics +1408.2790 Systems and Control +1408.2794 Statistical Finance +1408.2798 Mesoscale and Nanoscale Physics +1408.2805 Optimization and Control +1408.2808 Classical Physics +1408.2809 Classical Physics +1408.2810 Computer Vision and Pattern Recognition +1408.2813 Networking and Internet Architecture +1408.2814 Analysis of PDEs +1408.2823 Theory +hep-th/0612160 Theory +1301.3720 Artificial Intelligence +1303.5475 Combinatorics +1309.2653 Theory +1310.4144 Strongly Correlated Electrons +1311.2711 Algebraic Geometry +1311.5048 Combinatorics +1401.0569 Computation and Language +1401.5376 Analysis of PDEs +1402.0471 Computational Complexity +1402.5447 Genomics +1402.6946 +1403.6088 Analysis of PDEs +1403.7840 Programming Languages +1404.0848 Software Engineering +1404.1270 Databases +1404.4834 Computational Complexity +1406.5613 Theory +1406.6001 Optics +1406.6943 +1408.0049 Logic in Computer Science +1408.0052 Logic in Computer Science +0708.4058 Strongly Correlated Electrons +0801.4715 Analysis of PDEs +0810.1881 Statistical Mechanics +0907.2087 Algebraic Geometry +0907.3282 Trading and Market Microstructure +0907.5460 Dynamical Systems +0911.2813 Materials Science +0912.1552 +1004.2030 Group Theory +1005.1311 Computer Science and Game Theory +1007.4759 Analysis of PDEs +1008.2166 Algebraic Topology +1102.4291 Number Theory +1103.6281 Classical Physics +1104.1259 Differential Geometry +1105.0221 Differential Geometry +1106.2335 High Energy Astrophysical Phenomena +1107.1371 Strongly Correlated Electrons +1107.3123 Strongly Correlated Electrons +1108.0475 Number Theory +1110.3113 Number Theory +1111.1670 Algebraic Geometry +1112.3440 Materials Science +1201.4069 Materials Science +1204.2026 Computational Complexity +1204.4900 Strongly Correlated Electrons +1206.6524 Algebraic Geometry +1207.5435 +1208.0432 Computer Vision and Pattern Recognition +1208.2231 High Energy Astrophysical Phenomena +1208.2939 High Energy Astrophysical Phenomena +1209.4505 Symplectic Geometry +1209.6299 Artificial Intelligence +1212.2578 Representation Theory +1212.3536 Social and Information Networks +1301.1188 Number Theory +1301.2059 Algebraic Topology +1301.3674 Strongly Correlated Electrons +1301.4155 Information Theory +1301.4736 Group Theory +1301.7150 Differential Geometry +1302.3247 +1303.4134 Materials Science +1303.5453 +1304.1287 Optics +1304.3784 Algebraic Geometry +1305.0041 Data Analysis, Statistics and Probability +1305.4371 Algebraic Geometry +1306.3091 Computational Complexity +1306.4045 Algebraic Topology +1306.6556 High Energy Astrophysical Phenomena +1307.2000 Mesoscale and Nanoscale Physics +1307.2950 Algebraic Topology +1308.0265 Theory +1308.1479 Machine Learning +1308.3689 Robotics +1308.6056 Computer Vision and Pattern Recognition +1309.1830 Computer Vision and Pattern Recognition +1309.1967 Probability +1309.2557 Theory +1309.3064 Mesoscale and Nanoscale Physics +1309.7967 Combinatorics +1310.2712 Mesoscale and Nanoscale Physics +1310.2781 Algebraic Geometry +1310.4264 Probability +1310.5038 +1310.7690 +1310.8407 General Topology +1311.1730 Representation Theory +1311.2305 +1311.5714 +1311.6285 K-Theory and Homology +1311.7117 Group Theory +1311.7565 +1312.1785 Chemical Physics +1312.3459 Solar and Stellar Astrophysics +1312.5553 +1312.5987 Algebraic Geometry +1312.7546 Strongly Correlated Electrons +1401.2738 +1401.2976 Representation Theory +1401.3070 +1401.5566 Atomic Physics +1401.5827 Quantum Gases +1401.6045 Rings and Algebras +1401.7069 +1402.0397 +1402.0421 Combinatorics +1402.1146 Theory +1402.1323 Superconductivity +1402.1896 Robotics +1402.2529 Group Theory +1402.3160 Strongly Correlated Electrons +1402.3356 Strongly Correlated Electrons +1402.4360 Cryptography and Security +1402.5058 General Physics +1402.5925 Representation Theory +1402.6255 +1402.6958 Fluid Dynamics +1403.0159 +1403.0226 +1403.0663 Optics +1403.2392 Theory +1403.3158 Commutative Algebra +1403.3267 Chemical Physics +1403.3548 Combinatorics +1403.3720 Numerical Analysis +1403.3949 Spectral Theory +1403.5022 Systems and Control +1403.5451 +1403.6029 Analysis of PDEs +1403.6048 Computational Engineering, Finance, and Science +1403.6365 Other Quantitative Biology +1403.6917 High Energy Astrophysical Phenomena +1403.7439 Physics Education +1403.7643 Functional Analysis +1403.7967 Physics and Society +1404.0202 Statistics Theory +1404.0857 Superconductivity +1404.3270 Complex Variables +1404.3295 History and Overview +1404.3832 Statistical Mechanics +1404.5480 Combinatorics +1404.5522 Combinatorics +1404.5839 Phenomenology +1404.6464 Classical Physics +1405.2115 Instrumentation and Detectors +1405.2240 Mathematical Finance +1405.2996 Optimization and Control +1405.4945 Information Theory +1405.5814 +1405.6367 +1405.6832 Soft Condensed Matter +1406.1058 Networking and Internet Architecture +1406.1454 Theory +1406.2036 +1406.2749 Mesoscale and Nanoscale Physics +1406.2857 Functional Analysis +1406.3762 Quantitative Methods +1406.3924 Mesoscale and Nanoscale Physics +1406.5813 +1406.5957 Phenomenology +1406.6551 +1406.6976 +1406.7164 Statistical Mechanics +1406.7544 Logic +1406.7797 Analysis of PDEs +1407.0027 Theory +1407.0104 Theory +1407.0129 +1407.0148 Materials Science +1407.0365 Theory +1407.1005 Accelerator Physics +1407.1149 Analysis of PDEs +1407.1509 +1407.1836 Cosmology and Nongalactic Astrophysics +1407.2152 Mesoscale and Nanoscale Physics +1407.2634 Theory +1407.2801 Optimization and Control +1407.4051 Optics +1407.4224 Classical Physics +1407.4384 Phenomenology +1407.4455 Astrophysics of Galaxies +1407.4954 Quantum Gases +1407.5402 Probability +1407.8022 Information Theory +1407.8239 Mesoscale and Nanoscale Physics +1408.0076 Group Theory +1408.1006 Disordered Systems and Neural Networks +1408.2336 Atomic Physics +1408.2417 Statistics Theory +1408.3048 Cosmology and Nongalactic Astrophysics +1408.4034 Mesoscale and Nanoscale Physics +1408.4295 Phenomenology +1408.4631 Number Theory +1408.4836 Cosmology and Nongalactic Astrophysics +1408.5050 Group Theory +1408.5810 Machine Learning +1408.5875 Differential Geometry +1408.5883 Soft Condensed Matter +1408.6432 +1409.0682 Information Theory +1409.1589 Phenomenology +1409.2239 Optics +1409.2682 Differential Geometry +1409.2688 +1409.3215 Computation and Language +1409.3755 Statistical Mechanics +1409.5093 +1409.6117 Optics +1409.6149 Combinatorics +1409.7690 Phenomenology +1410.0174 Mesoscale and Nanoscale Physics +1410.0680 +1410.3259 Experiment +1410.3890 Instrumentation and Methods for Astrophysics +1410.4023 Disordered Systems and Neural Networks +1410.4136 General Physics +1410.4225 Analysis of PDEs +1410.4273 Data Structures and Algorithms +1410.4557 Solar and Stellar Astrophysics +1410.6802 Theory +1410.7002 Mesoscale and Nanoscale Physics +1410.7219 Number Theory +1410.7909 +1410.8440 Information Theory +1411.0159 Neurons and Cognition +1411.0167 Strongly Correlated Electrons +1411.0864 +1411.1862 Experiment +1411.2624 Methodology +1411.3768 Quantum Algebra +1411.3813 Cosmology and Nongalactic Astrophysics +1411.3915 Metric Geometry +1411.4442 Dynamical Systems +1411.5099 Soft Condensed Matter +1411.6078 Soft Condensed Matter +1411.6086 Lattice +1411.6189 Networking and Internet Architecture +1411.6454 Mesoscale and Nanoscale Physics +1411.6657 Portfolio Management +1411.7282 Information Theory +1411.7438 Differential Geometry +1411.7649 Instrumentation and Methods for Astrophysics +1411.7970 Algebraic Geometry +1412.0108 Cosmology and Nongalactic Astrophysics +1412.0562 Complex Variables +1412.1747 Probability +1412.1854 Analysis of PDEs +1412.2285 +1412.2304 Programming Languages +1412.2535 Algebraic Geometry +1412.2877 Other Computer Science +1412.3086 Instrumentation and Detectors +1412.3191 Artificial Intelligence +1412.3291 Analysis of PDEs +1412.3373 Soft Condensed Matter +1412.3389 Theory +1412.3499 Biological Physics +1412.3588 Programming Languages +1412.3714 Neural and Evolutionary Computing +1412.3857 Populations and Evolution +1412.3934 Probability +1412.4088 Symbolic Computation +1412.4116 Chemical Physics +1412.4118 Mesoscale and Nanoscale Physics +1412.4119 General Physics +1412.4127 Theory +1412.4128 Computation +1412.4129 Mesoscale and Nanoscale Physics +1412.4130 Information Theory +1412.4131 +1412.4134 +1412.4141 Social and Information Networks +1412.4142 Probability +1412.4144 Geometric Topology +1412.4156 Complex Variables +1412.4157 Classical Analysis and ODEs +1412.4158 Analysis of PDEs +1412.4166 Multiagent Systems +1412.4167 Combinatorics +1412.4168 Systems and Control +1412.4169 Symplectic Geometry +1412.4171 Social and Information Networks +1412.4172 Computer Vision and Pattern Recognition +1412.4174 Computer Vision and Pattern Recognition +1412.4175 Computer Vision and Pattern Recognition +1412.4179 Human-Computer Interaction +1412.4180 Chemical Physics +1412.4182 Statistics Theory +1412.4183 Computer Vision and Pattern Recognition +1412.4184 Programming Languages +1412.4186 Learning +1412.4190 Plasma Physics +1412.4194 Strongly Correlated Electrons +1412.4195 Instrumentation and Detectors +1412.4196 Computer Vision and Pattern Recognition +1412.4199 Analysis of PDEs +1412.4200 Instrumentation and Detectors +1412.4203 Optimization and Control +1412.4205 Computer Vision and Pattern Recognition +1412.4212 Algebraic Geometry +1412.4213 Distributed, Parallel, and Cluster Computing +1412.4215 Phenomenology +1412.4217 Computer Vision and Pattern Recognition +1412.4218 Physics and Society +1412.4219 Analysis of PDEs +1412.4221 Numerical Analysis +1412.4222 Methodology +1412.4224 Information Theory +1412.4225 Molecular Networks +1412.4233 Algebraic Geometry +1412.4236 Optics +1412.4237 Optimization and Control +1412.4239 Instrumentation and Detectors +1412.4241 Probability +1412.4242 Metric Geometry +1412.4243 Experiment +1412.4246 Graphics +1412.4247 Combinatorics +1412.4248 Analysis of PDEs +1412.4249 General Topology +1412.4251 +1412.4253 Phenomenology +1412.4255 Symplectic Geometry +1412.4260 Methodology +1412.4261 Information Theory +1412.4263 Strongly Correlated Electrons +1412.4264 Materials Science +1412.4268 General Topology +1412.4269 Experiment +1412.4274 Representation Theory +1412.4276 Phenomenology +1412.4278 Optimization and Control +1412.4279 High Energy Astrophysical Phenomena +1412.4280 Geometric Topology +1412.4283 +1412.4285 Fluid Dynamics +1412.4286 Lattice +1412.4287 Fluid Dynamics +1412.4289 Solar and Stellar Astrophysics +1412.4290 Optimization and Control +1412.4291 Probability +1412.4296 Metric Geometry +1412.4302 Phenomenology +1412.4303 Databases +1412.4304 Materials Science +1412.4311 Databases +1412.4312 Populations and Evolution +1412.4315 Experiment +1412.4316 Cryptography and Security +1412.4318 Networking and Internet Architecture +1412.4319 Operator Algebras +1412.4321 Networking and Internet Architecture +1412.4322 Networking and Internet Architecture +1412.4323 Materials Science +1412.4325 +1412.4326 Probability +1412.4329 Optimization and Control +1412.4333 Geometric Topology +1412.4345 Differential Geometry +1412.4346 Probability +1412.4347 Analysis of PDEs +1412.4349 Group Theory +1412.4350 Optimization and Control +1412.4351 Mesoscale and Nanoscale Physics +1412.4353 Distributed, Parallel, and Cluster Computing +1412.4354 Materials Science +1412.4356 Materials Science +1412.4357 Phenomenology +1412.4364 Solar and Stellar Astrophysics +1412.4367 Rings and Algebras +1412.4368 Superconductivity +1412.4370 Materials Science +1412.4371 Optics +1412.4375 +1412.4378 Cryptography and Security +1412.4379 Materials Science +1412.4381 Algebraic Geometry +1412.4382 Data Analysis, Statistics and Probability +1412.4383 Applications +1412.4384 Numerical Analysis +1412.4388 Computational Engineering, Finance, and Science +1412.4392 Information Theory +1412.4393 General Topology +1412.4395 Programming Languages +1412.4400 Analysis of PDEs +1412.4401 Computers and Society +1412.4403 Optics +1412.4406 Other Computer Science +1412.4407 Theory +1412.4411 Social and Information Networks +1412.4414 Differential Geometry +1412.4416 Quantitative Methods +1412.4418 Instrumentation and Methods for Astrophysics +1412.4424 Algebraic Geometry +1412.4429 Materials Science +1412.4430 Systems and Control +1412.4432 Lattice +1412.4436 Analysis of PDEs +1412.4437 +1412.4438 Computer Vision and Pattern Recognition +1412.4439 Logic +1412.4442 Information Theory +1412.4444 Information Theory +1412.4445 Probability +1412.4450 Classical Physics +1412.4451 Statistics Theory +1412.4452 Optimization and Control +1412.4453 Rings and Algebras +1412.4457 Spectral Theory +1412.4459 Computation +1412.4460 Geometric Topology +1412.4461 Algebraic Geometry +1412.4465 Artificial Intelligence +1412.4466 Instrumentation and Methods for Astrophysics +1412.4469 Superconductivity +1412.4470 Computer Vision and Pattern Recognition +1412.4473 Mesoscale and Nanoscale Physics +1412.4479 Applications +1412.4483 Geometric Topology +1412.4485 Artificial Intelligence +1412.4486 +1412.4488 +1412.4489 Numerical Analysis +1412.4498 Astrophysics of Galaxies +1412.4500 High Energy Astrophysical Phenomena +1412.4502 Instrumentation and Detectors +1412.4504 Optimization and Control +1412.4507 Probability +1412.4508 Lattice +1412.4513 Phenomenology +1412.4514 Information Theory +1412.4515 Phenomenology +1412.4518 Experiment +1412.4527 Analysis of PDEs +1412.4528 Quantum Gases +1412.4529 Quantum Gases +1412.4533 Instrumentation and Methods for Astrophysics +1412.4535 Networking and Internet Architecture +1412.4538 Robotics +1412.4539 Dynamical Systems +1412.4540 Computational Physics +1412.4542 Information Theory +1412.4545 +1412.4547 Experiment +1412.4550 Programming Languages +1412.4552 Rings and Algebras +1412.4555 Differential Geometry +1412.4556 Distributed, Parallel, and Cluster Computing +1412.4557 Dynamical Systems +1412.4559 Optics +1412.4560 Experiment +1412.4562 Soft Condensed Matter +1412.4565 Differential Geometry +1412.4567 Adaptation and Self-Organizing Systems +1412.4569 Analysis of PDEs +1412.4571 Instrumentation and Methods for Astrophysics +1412.4573 Algebraic Geometry +1412.4576 Multimedia +1412.4578 Cosmology and Nongalactic Astrophysics +1412.4581 Strongly Correlated Electrons +1412.4582 Distributed, Parallel, and Cluster Computing +1412.4586 Logic in Computer Science +1412.4589 Quantum Algebra +1412.4595 Combinatorics +1412.4600 Algebraic Geometry +1412.4602 Instrumentation and Detectors +1412.4607 History and Overview +1412.4614 Classical Physics +1412.4615 Probability +1412.4616 Computation and Language +1412.4617 Optimization and Control +1412.4619 Analysis of PDEs +1412.4626 Cryptography and Security +1412.4627 Geometric Topology +1412.4629 Programming Languages +1412.4630 Optimization and Control +1412.4631 Instrumentation and Methods for Astrophysics +1412.4635 Geometric Topology +1412.4638 Networking and Internet Architecture +1412.4641 Experiment +1412.4644 Algebraic Geometry +1412.4652 Fluid Dynamics +1412.4653 +1412.4656 Dynamical Systems +1412.4657 +1412.4660 Experiment +1412.4662 Numerical Analysis +1412.4663 Mesoscale and Nanoscale Physics +1412.4666 Quantum Gases +1412.4667 Superconductivity +1412.4670 Statistical Mechanics +1412.4671 Cosmology and Nongalactic Astrophysics +1412.4677 Phenomenology +1412.4682 Computation and Language +1412.4695 General Finance +1412.4697 +1412.4699 High Energy Astrophysical Phenomena +1412.4701 Populations and Evolution +1412.4707 Cryptography and Security +1412.4709 Data Structures and Algorithms +1412.4711 Geometric Topology +1412.4714 Robotics +1412.4717 Instrumentation and Detectors +1412.4719 Computational Complexity +1412.4726 Computational Engineering, Finance, and Science +1412.4738 Computers and Society +1412.4739 Astrophysics of Galaxies +1412.4746 Algebraic Geometry +1412.4753 Numerical Analysis +1412.4754 Social and Information Networks +1412.4755 Differential Geometry +0709.1433 Discrete Mathematics +0811.4713 Data Structures and Algorithms +0904.1023 Algebraic Topology +0905.3682 Combinatorics +0911.3513 Soft Condensed Matter +1010.0798 Algebraic Geometry +1102.2134 Combinatorics +1103.1542 Artificial Intelligence +1105.1139 Algebraic Topology +1106.0502 Cosmology and Nongalactic Astrophysics +1106.3012 Algebraic Topology +1109.0062 Dynamical Systems +1109.5074 Dynamical Systems +1111.3720 Dynamical Systems +1112.1827 Dynamical Systems +1112.4239 Group Theory +1201.6243 Combinatorics +1202.6398 Dynamical Systems +1203.6033 Materials Science +1204.4505 +1205.1384 Dynamical Systems +1205.4566 Analysis of PDEs +1206.3431 Logic +1206.3669 Rings and Algebras +1206.5676 Dynamical Systems +1206.7017 Differential Geometry +1207.6724 Number Theory +1208.1116 Information Theory +1209.3335 Algebraic Geometry +1209.4610 Phenomenology +1210.2583 +1211.7327 Geometric Topology +1212.1430 Analysis of PDEs +1301.3446 Astrophysics of Galaxies +1301.5096 Information Theory +1301.5289 Rings and Algebras +1301.6197 Atomic Physics +1302.1651 Probability +1302.1803 Algebraic Geometry +1302.6876 +1302.6881 +1302.6883 +1303.1414 Physics and Society +1303.3300 Materials Science +1303.4330 Cosmology and Nongalactic Astrophysics +1303.6507 Number Theory +1303.6554 Algebraic Geometry +1304.1237 Statistics Theory +1304.2167 +1305.0724 Cosmology and Nongalactic Astrophysics +1305.6946 Representation Theory +1306.0551 Cosmology and Nongalactic Astrophysics +1306.1242 Number Theory +1306.1345 Discrete Mathematics +1306.1975 Optics +1306.3203 Optimization and Control +1306.4899 +1306.5734 Plasma Physics +1307.3147 Networking and Internet Architecture +1307.3334 Strongly Correlated Electrons +1307.5995 +1307.7541 +1308.2898 Soft Condensed Matter +1308.6051 Optics +1309.0447 Algebraic Geometry +1309.1163 Cosmology and Nongalactic Astrophysics +1309.7992 +1310.0382 Quantum Gases +1310.0413 Phenomenology +1310.1037 +1310.1063 Dynamical Systems +1310.1435 +1310.2205 Phenomenology +1310.2548 Mesoscale and Nanoscale Physics +1310.2562 Cosmology and Nongalactic Astrophysics +1310.2683 Materials Science +1310.2737 +1310.4056 Classical Physics +1310.5465 Differential Geometry +1310.5818 Strongly Correlated Electrons +1310.6731 +1310.7605 +1311.0620 Combinatorics +1311.0849 Formal Languages and Automata Theory +1311.0933 Strongly Correlated Electrons +1311.3092 Statistics Theory +1311.3920 Chemical Physics +1311.3923 Chemical Physics +1311.6464 Theory +1311.7155 Phenomenology +1311.7321 Phenomenology +1311.7659 Phenomenology +1312.0931 Phenomenology +1312.1094 Logic in Computer Science +1312.4739 Mesoscale and Nanoscale Physics +1312.5720 Phenomenology +1312.6010 Optics +1312.6124 Theory +1312.6793 Strongly Correlated Electrons +1312.7064 Superconductivity +1401.1363 Materials Science +1401.1521 Statistical Mechanics +1401.1707 Mesoscale and Nanoscale Physics +1401.2729 Mesoscale and Nanoscale Physics +1401.3185 Cosmology and Nongalactic Astrophysics +1401.3265 Strongly Correlated Electrons +1401.3769 Cosmology and Nongalactic Astrophysics +1401.4406 Theory +1401.5047 +1401.5096 Quantum Gases +1401.5145 Mesoscale and Nanoscale Physics +1401.5445 Soft Condensed Matter +1401.5810 Classical Physics +1401.6292 Phenomenology +1401.6502 +1401.6594 Computational Physics +1401.6709 Theory +1401.7446 +1401.7923 Discrete Mathematics +1401.7992 Cosmology and Nongalactic Astrophysics +1402.0403 High Energy Astrophysical Phenomena +1402.0649 Robotics +1402.0755 +1402.2085 Classical Analysis and ODEs +1402.2808 Theory +1402.3030 Statistical Finance +1402.4461 Cosmology and Nongalactic Astrophysics +1402.5061 General Physics +1402.5630 +1402.6162 Experiment +1402.6882 Information Theory +1402.7133 Phenomenology +1403.0734 Distributed, Parallel, and Cluster Computing +1403.1406 Strongly Correlated Electrons +1403.2510 +1403.2903 Statistical Mechanics +1403.2940 Methodology +1403.3350 Quantum Gases +1403.3404 Theory +1403.4216 Cosmology and Nongalactic Astrophysics +1403.4364 +1403.4594 Phenomenology +1403.5200 Mesoscale and Nanoscale Physics +1403.5499 Cosmology and Nongalactic Astrophysics +1403.5637 Lattice +1403.5717 Phenomenology +1403.6120 Theory +1403.6286 +1403.6299 Phenomenology +1403.6639 High Energy Astrophysical Phenomena +1403.6908 Strongly Correlated Electrons +1403.7302 Lattice +1403.7947 Phenomenology +1403.8090 Phenomenology +1404.0489 Theory +1404.0681 Phenomenology +1404.1934 Mesoscale and Nanoscale Physics +1404.2543 Solar and Stellar Astrophysics +1404.2807 Solar and Stellar Astrophysics +1404.2912 Theory +1404.3262 Subcellular Processes +1404.3501 Data Structures and Algorithms +1404.4293 Phenomenology +1404.4530 Phenomenology +1404.4616 Combinatorics +1404.5125 Theory +1404.5158 Solar and Stellar Astrophysics +1404.5253 +1404.5502 Experiment +1404.5706 Cosmology and Nongalactic Astrophysics +1404.6016 +1404.6282 +1404.6581 Chaotic Dynamics +1404.6661 Phenomenology +1404.7452 Theory +1404.7512 +1405.0581 +1405.0800 Solar and Stellar Astrophysics +1405.0802 Astrophysics of Galaxies +1405.1283 +1405.1364 Statistical Mechanics +1405.2167 Physics and Society +1405.2499 Theory +1405.3189 Phenomenology +1405.3679 Instrumentation and Methods for Astrophysics +1405.4528 Solar and Stellar Astrophysics +1405.5018 Algebraic Geometry +1405.5132 Solar and Stellar Astrophysics +1405.5628 Cryptography and Security +1405.5764 Information Theory +1405.6010 Classical Analysis and ODEs +1405.6211 Phenomenology +1405.7046 Phenomenology +1405.7048 Earth and Planetary Astrophysics +1405.7179 Materials Science +1405.7296 Soft Condensed Matter +1405.7445 +1405.7499 Solar and Stellar Astrophysics +1405.7648 High Energy Astrophysical Phenomena +1406.0613 High Energy Astrophysical Phenomena +1406.1024 Solar and Stellar Astrophysics +1406.2385 Solar and Stellar Astrophysics +1406.2658 Number Theory +1406.3777 Representation Theory +1406.5049 Solar and Stellar Astrophysics +1406.5145 Algebraic Geometry +1406.6237 Analysis of PDEs +1406.6682 General Mathematics +1406.7651 Group Theory +1406.7734 Algebraic Topology +1407.0401 +1407.0952 Social and Information Networks +1407.1136 Disordered Systems and Neural Networks +1407.1319 Theory +1407.1463 +1407.1830 Networking and Internet Architecture +1407.1849 Theory +1407.1854 Solar and Stellar Astrophysics +1407.1857 Optimization and Control +1407.1869 Algebraic Topology +1407.1870 Statistics Theory +1407.1874 Soft Condensed Matter +1407.1875 Networking and Internet Architecture +1407.1878 Representation Theory +1407.1890 Learning +1407.1893 Materials Science +1407.1898 History and Overview +1407.1900 Analysis of PDEs +1407.1901 Number Theory +1407.1902 Representation Theory +1407.1905 Information Theory +1407.1910 Data Structures and Algorithms +1407.1911 Numerical Analysis +1407.1912 Analysis of PDEs +1407.1914 Number Theory +1407.1919 Combinatorics +1407.1920 Logic +1407.1922 Information Theory +1407.1923 Computational Geometry +1407.1926 Accelerator Physics +1407.1928 Atmospheric and Oceanic Physics +1407.1930 Computational Complexity +1407.1931 Networking and Internet Architecture +1407.1933 Computation and Language +1407.1936 +1407.1939 Optimization and Control +1407.1940 Fluid Dynamics +1407.1942 Number Theory +1407.1947 Metric Geometry +1407.1952 Logic in Computer Science +1407.1955 Combinatorics +1407.1957 Computer Vision and Pattern Recognition +1407.1962 High Energy Astrophysical Phenomena +1407.1963 Software Engineering +1407.1964 Phenomenology +1407.1972 Cryptography and Security +1407.1976 Computation and Language +1407.1978 Dynamical Systems +1407.1980 Instrumentation and Methods for Astrophysics +1407.1983 Combinatorics +1407.1989 Accelerator Physics +1407.1990 Phenomenology +1407.1991 Methodology +1407.1993 Cryptography and Security +1407.2003 Atomic Physics +1407.2004 Statistical Mechanics +1407.2008 Complex Variables +1407.2012 Accelerator Physics +1407.2015 Combinatorics +1407.2018 Strongly Correlated Electrons +1407.2019 Computation and Language +1407.2023 Functional Analysis +1407.2025 Networking and Internet Architecture +1407.2027 Computers and Society +1407.2032 Information Theory +1407.2036 Data Structures and Algorithms +1407.2038 Strongly Correlated Electrons +1407.2041 Programming Languages +1407.2050 Statistical Mechanics +1407.2051 +1407.2053 Discrete Mathematics +1407.2058 Differential Geometry +1407.2059 Classical Physics +1407.2064 Materials Science +1407.2068 Systems and Control +1407.2070 Materials Science +1407.2074 Graphics +1407.2077 Software Engineering +1407.2080 +1407.2082 Hardware Architecture +1407.2087 History and Overview +1407.2089 Graphics +1407.2092 General Mathematics +1407.2094 Number Theory +1407.2095 Metric Geometry +1407.2096 Chaotic Dynamics +1407.2099 Populations and Evolution +1407.2104 Optimization and Control +1407.2107 Graphics +1407.2108 Optimization and Control +1407.2110 Graphics +1407.2111 Superconductivity +1407.2112 Graphics +1407.2116 Numerical Analysis +1407.2117 Human-Computer Interaction +1407.2129 Atomic Physics +1407.2133 Popular Physics +1407.2138 Classical Analysis and ODEs +1407.2139 Chemical Physics +1407.2140 Materials Science +1407.2141 Classical Analysis and ODEs +1407.2143 Multiagent Systems +1407.2144 High Energy Astrophysical Phenomena +1407.2146 +1407.2147 Social and Information Networks +1407.2148 Geometric Topology +1407.2151 Data Structures and Algorithms +1407.2159 Mesoscale and Nanoscale Physics +1407.2161 Social and Information Networks +1407.2164 History and Philosophy of Physics +1407.2165 Methodology +1407.2167 Differential Geometry +1407.2168 Cryptography and Security +1407.2169 Neural and Evolutionary Computing +1407.2171 Functional Analysis +1407.2172 Analysis of PDEs +1407.2175 Strongly Correlated Electrons +1407.2177 Materials Science +1407.2183 Phenomenology +1407.2188 Dynamical Systems +1407.2190 Programming Languages +1407.2191 Phenomenology +1407.2192 Methodology +1407.2195 +1407.2197 Combinatorics +1407.2198 Group Theory +1407.2200 Chemical Physics +1407.2203 Algebraic Topology +1407.2204 Phenomenology +1407.2205 General Physics +1407.2206 Other Computer Science +1407.2208 Information Theory +1407.2212 Functional Analysis +1407.2216 Algebraic Geometry +1407.2217 Multiagent Systems +1407.2221 Multimedia +1407.2225 Dynamical Systems +1407.2227 Other Computer Science +1407.2228 Quantitative Methods +1407.2232 Systems and Control +1407.2235 Methodology +1407.2236 Chemical Physics +1407.2237 Computational Engineering, Finance, and Science +1407.2238 +1407.2239 Applications +math/0612028 Analysis of PDEs +0706.1644 +0708.0734 +0709.2973 Combinatorics +0710.3782 Commutative Algebra +0712.3892 +0808.2618 Number Theory +0810.1108 Dynamical Systems +0901.3322 Representation Theory +0903.1291 +0904.1521 Statistical Mechanics +0906.0092 Number Theory +0908.0630 Commutative Algebra +1003.4229 Algebraic Geometry +1008.2244 Operator Algebras +1008.4441 Probability +1010.0852 Computational Geometry +1010.5320 Classical Analysis and ODEs +1011.6219 Strongly Correlated Electrons +1101.1022 Combinatorics +1101.3590 Differential Geometry +1103.4978 Metric Geometry +1104.2553 Phenomenology +1106.4639 +1107.3248 Combinatorics +1108.1547 Theory +1109.0404 Differential Geometry +1109.0929 Strongly Correlated Electrons +1201.0722 Quantum Gases +1201.1901 Mesoscale and Nanoscale Physics +1202.5147 Algebraic Geometry +1204.6012 Differential Geometry +1205.1832 Classical Analysis and ODEs +1206.4950 Number Theory +1207.5965 Differential Geometry +1208.3088 Probability +1209.2836 Analysis of PDEs +1210.1799 Commutative Algebra +1211.0983 +1211.3410 Cosmology and Nongalactic Astrophysics +1211.5704 Functional Analysis +1211.7254 Differential Geometry +1212.1029 Combinatorics +1212.1801 Information Theory +1212.4897 +1212.5677 +1212.6373 +1212.6596 Methodology +1301.1054 Functional Analysis +1301.2845 Other Quantitative Biology +1301.6068 Numerical Analysis +1302.0262 Statistics Theory +1302.2309 Algebraic Geometry +1303.0909 +1303.2492 Strongly Correlated Electrons +1303.2511 Atomic and Molecular Clusters +1303.6568 Cosmology and Nongalactic Astrophysics +1303.7362 Quantum Gases +1304.1222 Numerical Analysis +1304.7527 Differential Geometry +1305.0970 +1305.1150 Differential Geometry +1305.2738 Numerical Analysis +1305.2986 Combinatorics +1305.4270 Geometric Topology +1305.5303 Dynamical Systems +1305.6027 +1305.6347 Symplectic Geometry +1305.6377 Numerical Analysis +1306.0287 Analysis of PDEs +1306.2761 Theory +1306.6519 +1307.0363 +1307.1988 Statistical Mechanics +1307.2184 Theory +1307.3009 +1307.3177 Algebraic Geometry +1307.5438 Learning +1307.6896 Algebraic Topology +1307.7341 Algebraic Geometry +1307.7721 Methodology +1308.0175 Pattern Formation and Solitons +1308.1148 Algebraic Geometry +1308.5467 Numerical Analysis +1308.5507 +1309.0142 Probability +1309.0467 Dynamical Systems +1309.3612 Superconductivity +1309.3957 Dynamical Systems +1309.4246 Tissues and Organs +1309.4930 Information Theory +1310.0980 Computational Physics +1310.1851 Lattice +1310.5461 Lattice +1310.6095 +1310.6698 Classical Analysis and ODEs +1310.7773 Analysis of PDEs +1310.7812 Quantum Gases +1311.0275 +1311.1677 General Topology +1311.2974 Category Theory +1311.4120 Numerical Analysis +1311.4418 Statistical Mechanics +1311.4938 Optimization and Control +1311.6694 General Physics +1311.7009 Theory +1312.0885 Hardware Architecture +1312.2311 Group Theory +1312.2832 General Physics +1312.3365 +1312.3735 Information Theory +1312.4010 Phenomenology +1312.4567 Symplectic Geometry +1312.4743 Algebraic Topology +1312.4995 Analysis of PDEs +1312.5225 Cryptography and Security +1312.6216 Exactly Solvable and Integrable Systems +1312.6696 Optimization and Control +1312.7075 Statistical Mechanics +1401.1203 Information Theory +1401.1549 Learning +1401.3071 Information Theory +1401.3689 Phenomenology +1401.3781 +1401.5383 Quantitative Methods +1401.6338 Information Theory +1401.8027 Quantum Algebra +1402.0330 Methodology +1402.0928 Digital Libraries +1402.1513 Statistical Mechanics +1402.3368 Operator Algebras +1402.3564 Strongly Correlated Electrons +1402.3614 Solar and Stellar Astrophysics +1402.4633 Probability +1402.4675 Networking and Internet Architecture +1402.6473 Soft Condensed Matter +1402.6741 Lattice +1402.6832 Quantum Gases +1402.6904 +1403.0142 Probability +1403.0631 Populations and Evolution +1403.0654 Theory +1403.2797 Theory +1403.3277 General Topology +1403.3994 Neurons and Cognition +1403.4989 Materials Science +1403.5310 Mesoscale and Nanoscale Physics +1403.5761 Systems and Control +1403.6028 Phenomenology +1403.7196 Phenomenology +1404.0767 Soft Condensed Matter +1404.1381 Disordered Systems and Neural Networks +1404.2430 Instrumentation and Methods for Astrophysics +1404.2536 Mesoscale and Nanoscale Physics +1404.2677 Data Structures and Algorithms +1404.3289 Phenomenology +1404.3520 Neural and Evolutionary Computing +1404.5045 Rings and Algebras +1404.5147 Commutative Algebra +1404.5539 Computer Science and Game Theory +1404.5690 Combinatorics +1404.6218 Distributed, Parallel, and Cluster Computing +1404.6219 Theory +1404.6268 Phenomenology +1404.6523 High Energy Astrophysical Phenomena +1404.6790 Quantitative Methods +1404.7670 Phenomenology +1405.0292 Cosmology and Nongalactic Astrophysics +1405.1110 Differential Geometry +1405.1955 Geometric Topology +1405.2150 Statistical Mechanics +1405.3465 +1405.5313 Phenomenology +1405.5472 High Energy Astrophysical Phenomena +1405.6676 Other Statistics +1405.7464 Information Theory +1405.7477 Atomic Physics +1405.7875 Experiment +1406.1173 Strongly Correlated Electrons +1406.1793 Quantitative Methods +1406.1987 +1406.2581 Computational Finance +1406.2643 +1406.3729 Materials Science +1406.3839 Algebraic Geometry +1406.4113 Commutative Algebra +1406.4326 +1406.4709 Experiment +1406.4866 Theory +1406.4926 Statistical Mechanics +1406.5789 Quantum Gases +1406.6589 Optics +1406.7296 Strongly Correlated Electrons +1406.7470 Strongly Correlated Electrons +1407.0211 Probability +1407.0476 Rings and Algebras +1407.1218 Phenomenology +1407.1401 +1407.1428 Data Structures and Algorithms +1407.1885 Instrumentation and Methods for Astrophysics +1407.2403 Functional Analysis +1407.4912 Phenomenology +1407.5831 Quantum Algebra +1407.6386 High Energy Astrophysical Phenomena +1407.6685 Mesoscale and Nanoscale Physics +1407.6753 Data Structures and Algorithms +1407.7203 Phenomenology +1407.7325 Cosmology and Nongalactic Astrophysics +1407.8114 Phenomenology +1408.0038 Algebraic Topology +1408.0468 +1408.1427 Mesoscale and Nanoscale Physics +1408.1718 Astrophysics of Galaxies +1408.3200 Geometric Topology +1408.3506 Atomic Physics +1408.4942 Symbolic Computation +1408.5752 Logic in Computer Science +1408.6154 Mesoscale and Nanoscale Physics +1408.7041 Materials Science +1409.0078 Superconductivity +1409.0721 Dynamical Systems +1409.0928 +1409.2097 Social and Information Networks +1409.2404 Differential Geometry +1409.2538 Combinatorics +1409.3053 Phenomenology +1409.3946 Optimization and Control +1409.4072 Geometric Topology +1409.4298 Chemical Physics +1409.4745 Group Theory +1409.5832 Optimization and Control +1409.5996 Algebraic Geometry +1409.6155 Computer Vision and Pattern Recognition +1409.7514 Programming Languages +1409.7632 Representation Theory +1409.7803 Dynamical Systems +1409.8099 Operator Algebras +1409.8148 Phenomenology +1409.8231 Differential Geometry +1409.8421 Geometric Topology +1409.8478 Rings and Algebras +1410.0117 Computer Vision and Pattern Recognition +1410.0671 Theory +1410.0676 Analysis of PDEs +1410.0868 Numerical Analysis +1410.0956 Systems and Control +1410.0957 Solar and Stellar Astrophysics +1410.0969 Computer Vision and Pattern Recognition +1410.0971 Superconductivity +1410.0973 Software Engineering +1410.0976 Combinatorics +1410.0977 Fluid Dynamics +1410.0979 Statistics Theory +1410.0980 Quantitative Methods +1410.0984 Materials Science +1410.0988 Physics Education +1410.0992 Probability +1410.0993 Information Retrieval +1410.0996 Learning +1410.0998 Algebraic Geometry +1410.0999 +1410.1000 Statistics Theory +1410.1002 Information Theory +1410.1005 Complex Variables +1410.1006 Computational Geometry +1410.1010 +1410.1012 Numerical Analysis +1410.1013 Medical Physics +1410.1014 Algebraic Geometry +1410.1015 Numerical Analysis +1410.1016 Data Structures and Algorithms +1410.1017 Number Theory +1410.1018 Phenomenology +1410.1026 Optics +1410.1036 Computational Geometry +1410.1037 Computer Vision and Pattern Recognition +1410.1040 Cryptography and Security +1410.1044 +1410.1046 Optics +1410.1049 Analysis of PDEs +1410.1057 Soft Condensed Matter +1410.1058 +1410.1059 Other Computer Science +1410.1061 Atmospheric and Oceanic Physics +1410.1062 Classical Analysis and ODEs +1410.1064 Data Analysis, Statistics and Probability +1410.1071 Materials Science +1410.1073 +1410.1074 Networking and Internet Architecture +1410.1075 Astrophysics of Galaxies +1410.1076 Networking and Internet Architecture +1410.1078 Optimization and Control +1410.1079 +1410.1080 Computation and Language +1410.1081 Phenomenology +1410.1083 Number Theory +1410.1086 Emerging Technologies +1410.1087 Human-Computer Interaction +1410.1090 Computer Vision and Pattern Recognition +1410.1094 Statistics Theory +1410.1095 Numerical Analysis +1410.1098 Spectral Theory +1410.1102 Metric Geometry +1410.1106 Applications +1410.1107 Other Statistics +1410.1108 Probability +1410.1110 Analysis of PDEs +1410.1115 Neurons and Cognition +1410.1116 Neurons and Cognition +1410.1117 Mesoscale and Nanoscale Physics +1410.1119 Analysis of PDEs +1410.1120 Cryptography and Security +1410.1122 Analysis of PDEs +1410.1123 Geometric Topology +1410.1124 Representation Theory +1410.1125 Probability +1410.1127 Digital Libraries +1410.1129 Digital Libraries +1410.1130 Graphics +1410.1133 Theory +1410.1135 Computation and Language +1410.1136 Portfolio Management +1410.1137 Functional Analysis +1410.1143 Dynamical Systems +1410.1146 Optics +1410.1147 Probability +1410.1151 Neural and Evolutionary Computing +1410.1155 Software Engineering +1410.1156 Combinatorics +1410.1158 Cryptography and Security +1410.1159 Distributed, Parallel, and Cluster Computing +1410.1160 Cryptography and Security +1410.1164 Algebraic Geometry +1410.1167 Functional Analysis +1410.1168 Complex Variables +1410.1172 Theory +1410.1178 Lattice +1410.1182 Algebraic Geometry +1410.1185 Functional Analysis +1410.1188 Combinatorics +1410.1194 Phenomenology +1410.1195 Numerical Analysis +1410.1199 Materials Science +1410.1201 Analysis of PDEs +1410.1202 Dynamical Systems +1410.1209 Distributed, Parallel, and Cluster Computing +1410.1215 Quantum Algebra +1410.1217 Combinatorics +1410.1225 Space Physics +1410.1227 +1410.1231 Artificial Intelligence +1410.1238 +1410.1249 Combinatorics +1410.1253 +1410.1258 Software Engineering +1410.1260 Cosmology and Nongalactic Astrophysics +1410.1261 Classical Analysis and ODEs +1410.1267 Computer Vision and Pattern Recognition +1410.1270 Combinatorics +1410.1275 +1410.1283 Number Theory +1410.1287 Mathematical Finance +1410.1289 Information Theory +1410.1292 Information Theory +1410.1295 Mesoscale and Nanoscale Physics +1410.1297 Functional Analysis +1410.1298 Theory +1410.1304 Phenomenology +1410.1306 Theory +1410.1307 Earth and Planetary Astrophysics +1410.1309 Distributed, Parallel, and Cluster Computing +1410.1315 Instrumentation and Methods for Astrophysics +1410.1322 Superconductivity +1410.1331 Rings and Algebras +1410.1336 Quantum Gases +1410.1339 Instrumentation and Detectors +1410.1340 Quantum Gases +1410.1342 Systems and Control +1410.1343 Databases +1410.1344 Group Theory +1410.1345 Phenomenology +1410.1347 Number Theory +1410.1348 Computers and Society +1410.1360 Statistical Mechanics +1410.1370 Differential Geometry +1410.1371 Information Theory +1410.1373 Fluid Dynamics +1410.1374 Phenomenology +1410.1378 Medical Physics +1410.1387 Numerical Analysis +1410.1388 Algebraic Topology +1410.1389 Cryptography and Security +1410.1391 Statistical Mechanics +1410.1397 Group Theory +1410.1401 Other Condensed Matter +1410.1411 Dynamical Systems +1410.1417 Biomolecules +1410.1418 Biomolecules +1410.1419 Biomolecules +1410.1421 Atomic Physics +1410.1426 Mathematical Finance +1410.1427 Computational Physics +1410.1428 Analysis of PDEs +1410.1429 Other Condensed Matter +1410.1435 Combinatorics +1410.1446 +1410.1449 History and Overview +1410.1450 History and Overview +1410.1456 Optimization and Control +1410.1457 Probability +1410.1459 Mesoscale and Nanoscale Physics +1410.1462 Learning +1410.1471 Representation Theory +1410.1473 Analysis of PDEs +1410.1474 Multimedia +1410.1477 Representation Theory +1410.1478 Logic in Computer Science +1410.1482 Superconductivity +1410.1483 Group Theory +1410.1497 Probability +1410.1499 General Physics +1410.1503 Computation +1410.1505 Functional Analysis +cond-mat/0005027 Statistical Mechanics +cond-mat/0005182 Statistical Mechanics +cond-mat/0105100 Statistical Mechanics +cond-mat/0108177 Statistical Mechanics +cond-mat/0201168 Statistical Mechanics +cond-mat/0204221 Statistical Mechanics +cond-mat/0212546 Statistical Mechanics +cond-mat/0303632 Statistical Mechanics +cond-mat/0305630 Statistical Mechanics +cond-mat/0312364 Statistical Mechanics +cond-mat/0404508 Statistical Mechanics +cond-mat/0411194 Statistical Mechanics +cond-mat/0608458 Statistical Mechanics +cond-mat/9812091 Statistical Mechanics +cond-mat/9901010 Statistical Mechanics +gr-qc/0502109 +gr-qc/0503110 +hep-th/0303215 Theory +hep-th/0401111 Theory +hep-th/9210095 Theory +math-ph/0010029 +math-ph/0010048 +math/0703020 Dynamical Systems +nlin/0411035 Chaotic Dynamics +0710.2658 Algebraic Geometry +0809.0576 Algebraic Geometry +0903.5496 Algebraic Geometry +0912.4901 +1002.3371 Theory +1007.5231 K-Theory and Homology +1012.5541 Algebraic Geometry +1102.1831 K-Theory and Homology +1102.4175 Differential Geometry +1103.6132 K-Theory and Homology +1104.2007 Algebraic Geometry +1106.1766 Algebraic Geometry +1109.5877 Differential Geometry +1201.0942 Computational Engineering, Finance, and Science +1203.2551 Probability +1204.0412 Phenomenology +1205.3981 Artificial Intelligence +1206.3033 Theory +1208.0472 Probability +1209.0568 Algebraic Geometry +1210.2482 Statistics Theory +1210.3149 Molecular Networks +1210.8315 Probability +1211.3966 Learning +1211.4994 K-Theory and Homology +1302.6050 Probability +1303.0091 Group Theory +1303.1058 Algebraic Geometry +1303.2296 Superconductivity +1303.5834 Representation Theory +1303.5935 Optics +1304.0407 Analysis of PDEs +1304.6099 Computational Engineering, Finance, and Science +1305.1783 Information Theory +1305.4022 Genomics +1305.6703 Statistical Mechanics +1305.6704 Statistical Mechanics +1306.1250 +1307.7906 Phenomenology +1308.0109 Information Theory +1308.1037 Number Theory +1309.2402 Social and Information Networks +1309.3613 Probability +1309.4050 Statistical Mechanics +1309.4950 Functional Analysis +1309.5039 General Physics +1309.5201 Information Theory +1310.0704 Analysis of PDEs +1310.1830 Algebraic Geometry +1310.2402 Optics +1310.5075 Mesoscale and Nanoscale Physics +1310.6077 Populations and Evolution +1310.7532 Physics and Society +1311.0234 +1311.2323 Superconductivity +1311.3098 Algebraic Geometry +1311.6076 +1312.0021 Representation Theory +1312.2459 Social and Information Networks +1312.6739 +1401.1172 Category Theory +1401.1227 +1401.2639 Differential Geometry +1401.2981 Solar and Stellar Astrophysics +1401.2985 Astrophysics of Galaxies +1401.3209 Populations and Evolution +1401.4187 Popular Physics +1401.5976 +1401.6976 +1401.8096 Disordered Systems and Neural Networks +1402.1404 Instrumentation and Detectors +1402.2756 Commutative Algebra +1402.3069 Materials Science +1402.4146 +1402.6710 +1403.3316 Optics +1403.5195 Systems and Control +1403.5899 Optimization and Control +1403.6985 Databases +1403.7806 Neural and Evolutionary Computing +1404.0816 Logic +1404.1767 +1404.2936 Cosmology and Nongalactic Astrophysics +1404.2937 Phenomenology +1404.3043 Exactly Solvable and Integrable Systems +1404.4482 Genomics +1404.7217 +1404.7533 Formal Languages and Automata Theory +1405.0491 Mesoscale and Nanoscale Physics +1405.2854 Materials Science +1405.4826 Optics +1405.5373 Phenomenology +1405.5502 Differential Geometry +1405.5857 Cosmology and Nongalactic Astrophysics +1405.5999 Cosmology and Nongalactic Astrophysics +1405.6671 Formal Languages and Automata Theory +1405.7204 +1405.7458 +1406.1365 Mesoscale and Nanoscale Physics +1406.2210 Learning +1406.3311 Statistical Mechanics +1406.3546 Phenomenology +1406.3785 Chemical Physics +1406.3880 Mesoscale and Nanoscale Physics +1406.4207 Materials Science +1406.4718 Data Structures and Algorithms +1406.6430 +1406.6867 Strongly Correlated Electrons +1406.6971 Probability +1406.7288 Databases +1407.2738 Functional Analysis +1407.3272 Phenomenology +1407.3545 +1407.5080 Data Structures and Algorithms +1407.5548 Mesoscale and Nanoscale Physics +1407.7069 +1407.7474 Group Theory +1407.8002 Theory +1407.8292 +1408.0176 Superconductivity +1408.0720 Theory +1408.0960 Superconductivity +1408.1368 Methodology +1408.4570 +1408.6962 High Energy Astrophysical Phenomena +1409.0693 Phenomenology +1409.1282 Physics and Society +1409.2175 Optimization and Control +1409.2773 Solar and Stellar Astrophysics +1409.3343 Strongly Correlated Electrons +1409.4020 Experiment +1409.4385 Mesoscale and Nanoscale Physics +1409.6169 Experiment +1409.6489 Computer Science and Game Theory +1409.7097 Materials Science +1409.7319 Algebraic Geometry +1409.7746 Symplectic Geometry +1409.7847 Classical Analysis and ODEs +1409.8521 Cosmology and Nongalactic Astrophysics +1410.0570 +1410.0922 Materials Science +1410.1354 Group Theory +1410.1405 Operator Algebras +1410.1642 Soft Condensed Matter +1410.1795 Space Physics +1410.2463 Logic in Computer Science +1410.3254 Materials Science +1410.3649 Logic +1410.3864 Neural and Evolutionary Computing +1410.3891 +1410.3988 Information Theory +1410.4090 Numerical Analysis +1410.4142 Algebraic Geometry +1410.4189 Instrumentation and Detectors +1410.4195 +1410.4207 Cryptography and Security +1410.4209 Data Structures and Algorithms +1410.4210 Learning +1410.4213 Mesoscale and Nanoscale Physics +1410.4215 Solar and Stellar Astrophysics +1410.4217 Computation +1410.4220 Phenomenology +1410.4223 Materials Science +1410.4233 Commutative Algebra +1410.4235 Logic in Computer Science +1410.4236 Optimization and Control +1410.4240 Data Structures and Algorithms +1410.4241 Computational Complexity +1410.4247 Applications +1410.4251 Rings and Algebras +1410.4255 History and Overview +1410.4256 Systems and Control +1410.4262 Systems and Control +1410.4266 Data Structures and Algorithms +1410.4269 Combinatorics +1410.4270 Cosmology and Nongalactic Astrophysics +1410.4274 Methodology +1410.4279 Analysis of PDEs +1410.4282 Methodology +1410.4284 Instrumentation and Detectors +1410.4287 Numerical Analysis +1410.4290 Networking and Internet Architecture +1410.4292 Disordered Systems and Neural Networks +1410.4294 Soft Condensed Matter +1410.4295 Geometric Topology +1410.4297 +1410.4299 Chemical Physics +1410.4300 Complex Variables +1410.4301 Complex Variables +1410.4303 Cryptography and Security +1410.4304 Cryptography and Security +1410.4305 Cryptography and Security +1410.4306 Dynamical Systems +1410.4310 Phenomenology +1410.4317 Analysis of PDEs +1410.4319 Information Theory +1410.4320 Probability +1410.4321 Fluid Dynamics +1410.4325 Functional Analysis +1410.4328 Algebraic Geometry +1410.4329 Statistics Theory +1410.4330 Information Theory +1410.4332 +1410.4334 Combinatorics +1410.4336 Algebraic Topology +1410.4337 Space Physics +1410.4341 Learning +1410.4346 Number Theory +1410.4354 Statistics Theory +1410.4356 +1410.4359 Astrophysics of Galaxies +1410.4360 Information Theory +1410.4361 Combinatorics +1410.4363 Group Theory +1410.4364 Logic +1410.4367 +1410.4371 +1410.4372 Algebraic Geometry +1410.4373 Distributed, Parallel, and Cluster Computing +1410.4374 +1410.4375 Computers and Society +1410.4376 +1410.4377 Networking and Internet Architecture +1410.4379 Computers and Society +1410.4381 Software Engineering +1410.4384 Number Theory +1410.4385 Dynamical Systems +1410.4386 +1410.4388 Superconductivity +1410.4394 Lattice +1410.4395 Discrete Mathematics +1410.4398 Cryptography and Security +1410.4399 Computational Engineering, Finance, and Science +1410.4400 Mesoscale and Nanoscale Physics +1410.4402 Superconductivity +1410.4403 Accelerator Physics +1410.4404 High Energy Astrophysical Phenomena +1410.4405 Materials Science +1410.4408 Optimization and Control +1410.4411 +1410.4413 Mesoscale and Nanoscale Physics +1410.4414 Robotics +1410.4419 Numerical Analysis +1410.4424 Physics and Society +1410.4426 Robotics +1410.4427 Theory +1410.4428 Computational Engineering, Finance, and Science +1410.4429 Data Structures and Algorithms +1410.4431 Chemical Physics +1410.4432 Category Theory +1410.4435 Materials Science +1410.4437 +1410.4439 Logic in Computer Science +1410.4441 Computer Vision and Pattern Recognition +1410.4443 Phenomenology +1410.4451 +1410.4452 Quantitative Methods +1410.4453 Distributed, Parallel, and Cluster Computing +1410.4456 Physics Education +1410.4465 Biomolecules +1410.4467 Algebraic Geometry +1410.4475 +1410.4480 Dynamical Systems +1410.4482 Number Theory +1410.4487 Fluid Dynamics +1410.4490 Differential Geometry +1410.4492 Algebraic Topology +1410.4497 Optimization and Control +1410.4498 Instrumentation and Methods for Astrophysics +1410.4500 Information Retrieval +1410.4505 Phenomenology +1410.4506 Instrumentation and Methods for Astrophysics +1410.4507 Logic in Computer Science +1410.4509 Logic in Computer Science +1410.4511 Algebraic Geometry +1410.4513 Rings and Algebras +1410.4514 +1410.4515 Other Statistics +1410.4516 History and Philosophy of Physics +1410.4521 Computer Vision and Pattern Recognition +1410.4524 +1410.4531 Numerical Analysis +1410.4535 Optimization and Control +1410.4537 Software Engineering +1410.4538 Number Theory +1410.4542 Solar and Stellar Astrophysics +1410.4546 Physics and Society +1410.4547 Differential Geometry +1410.4548 Experiment +1410.4550 Information Theory +math/0607464 Combinatorics +0806.2287 Data Structures and Algorithms +0901.3419 Metric Geometry +0907.4780 Rings and Algebras +0908.3091 Artificial Intelligence +0909.1685 Methodology +0910.5558 Mesoscale and Nanoscale Physics +1004.5451 Superconductivity +1103.5654 Combinatorics +1106.0415 Phenomenology +1106.0965 Classical Analysis and ODEs +1106.2721 Statistical Mechanics +1107.1328 Algebraic Geometry +1107.4537 Computer Science and Game Theory +1107.5773 Superconductivity +1201.6440 Complex Variables +1203.3785 Statistical Mechanics +1205.0449 Commutative Algebra +1205.2250 Spectral Theory +1205.2851 Molecular Networks +1206.5753 Fluid Dynamics +1207.2163 Theory +1207.2379 Combinatorics +1207.2616 Accelerator Physics +1207.5000 +1208.1118 Algebraic Geometry +1208.1120 Algebraic Geometry +1208.4297 +1209.2100 Algebraic Geometry +1210.5726 Combinatorics +1210.8228 Strongly Correlated Electrons +1211.6367 Algebraic Geometry +1211.6900 Algebraic Geometry +1212.6736 Combinatorics +1301.3415 Chemical Physics +1301.5423 Classical Analysis and ODEs +1301.6924 +1302.2299 Number Theory +1303.0199 Geometric Topology +1303.4713 +1303.6055 +1303.6650 Mesoscale and Nanoscale Physics +1304.1761 Statistics Theory +1304.2826 Materials Science +1306.5038 Theory +1307.0588 Fluid Dynamics +1307.5739 Mesoscale and Nanoscale Physics +1307.6174 Number Theory +1307.7491 Spectral Theory +1308.3271 +1308.3920 Number Theory +1308.5937 Computers and Society +1308.5984 Strongly Correlated Electrons +1309.1410 Probability +1309.4643 Combinatorics +1309.5058 Analysis of PDEs +1309.5347 +1310.1110 +1310.1799 Information Theory +1310.5091 Biomolecules +1311.4669 Machine Learning +1311.6063 Computation and Language +1312.0022 Information Theory +1312.0531 Statistics Theory +1312.1862 +1312.3280 +1312.3683 Physics and Society +1312.4434 +1312.4961 Instrumentation and Methods for Astrophysics +1312.5788 Probability +1312.6463 Mesoscale and Nanoscale Physics +1312.6593 Phenomenology +1401.1861 Digital Libraries +1401.2097 +1401.3542 Differential Geometry +1401.3612 Functional Analysis +1401.3799 Superconductivity +1401.5215 Group Theory +1401.6469 Mesoscale and Nanoscale Physics +1401.6643 Materials Science +1402.0555 Learning +1402.0627 Theory +1402.0895 Materials Science +1402.1458 Phenomenology +1402.2196 Neurons and Cognition +1402.4569 Quantum Gases +1402.4807 Strongly Correlated Electrons +1402.4897 +1402.6083 Information Theory +1402.6232 Number Theory +1402.7088 Cosmology and Nongalactic Astrophysics +1403.0362 Metric Geometry +1403.0970 Soft Condensed Matter +1403.1294 Experiment +1403.3331 Mesoscale and Nanoscale Physics +1403.3507 Superconductivity +1403.4854 Statistical Mechanics +1403.4892 Phenomenology +1403.5404 Phenomenology +1403.5724 +1403.7098 Cosmology and Nongalactic Astrophysics +1404.0370 Differential Geometry +1404.1833 Phenomenology +1404.3242 +1404.3810 +1404.4894 +1404.4934 Mesoscale and Nanoscale Physics +1404.5830 +1404.6100 Cryptography and Security +1404.6376 Experiment +1404.6969 Phenomenology +1404.7012 Cosmology and Nongalactic Astrophysics +1404.7319 Strongly Correlated Electrons +1404.7547 Methodology +1405.1290 Optics +1405.1913 +1405.1974 Combinatorics +1405.2187 Cosmology and Nongalactic Astrophysics +1405.3692 Phenomenology +1405.3719 Phenomenology +1405.5440 Strongly Correlated Electrons +1405.5542 +1405.6253 Phenomenology +1405.6541 +1405.7074 +1405.7287 +1405.7429 +1405.7903 Computer Vision and Pattern Recognition +1406.0702 Soft Condensed Matter +1406.0776 Materials Science +1406.1508 Rings and Algebras +1406.2346 Superconductivity +1406.2530 Quantum Gases +1406.2703 +1406.2705 Theory +1406.2885 Experiment +1406.3182 Theory +1406.3446 Materials Science +1406.4389 Algebraic Topology +1406.4397 Lattice +1406.4407 Instrumentation and Methods for Astrophysics +1406.4551 Lattice +1406.4856 High Energy Astrophysical Phenomena +1406.4892 Theory +1406.5148 Mesoscale and Nanoscale Physics +1406.6054 Phenomenology +1406.6131 Phenomenology +1406.6407 Strongly Correlated Electrons +1406.6482 Experiment +1406.6600 +1406.7450 Strongly Correlated Electrons +1407.0141 Cosmology and Nongalactic Astrophysics +1407.0515 Mesoscale and Nanoscale Physics +1407.0728 Theory +1407.0872 Strongly Correlated Electrons +1407.0923 Materials Science +1407.0946 Solar and Stellar Astrophysics +1407.1250 +1407.1325 Statistical Mechanics +1407.1476 Theory +1407.1837 Solar and Stellar Astrophysics +1407.2156 Cosmology and Nongalactic Astrophysics +1407.2210 Neurons and Cognition +1407.3248 Physics Education +1407.4257 Solar and Stellar Astrophysics +1407.4302 Phenomenology +1407.4452 Pricing of Securities +1407.4731 Astrophysics of Galaxies +1407.4802 Solar and Stellar Astrophysics +1407.4843 +1407.5118 Differential Geometry +1407.5217 Phenomenology +1407.5302 Strongly Correlated Electrons +1407.6271 High Energy Astrophysical Phenomena +1407.6273 +1407.6311 Physics Education +1407.6376 Strongly Correlated Electrons +1407.6700 Phenomenology +1407.6852 Operator Algebras +1407.7271 Earth and Planetary Astrophysics +1407.7282 Earth and Planetary Astrophysics +1407.7331 Astrophysics of Galaxies +1407.7541 Mesoscale and Nanoscale Physics +1407.7784 +1408.0102 Neural and Evolutionary Computing +1408.0666 Astrophysics of Galaxies +1408.0817 Solar and Stellar Astrophysics +1408.0936 Soft Condensed Matter +1408.1236 Materials Science +1408.1515 Solar and Stellar Astrophysics +1408.1520 Cosmology and Nongalactic Astrophysics +1408.1629 Astrophysics of Galaxies +1408.2535 Earth and Planetary Astrophysics +1408.2570 +1408.2986 Solar and Stellar Astrophysics +1408.3406 +1408.3471 Mesoscale and Nanoscale Physics +1408.3597 Theory +1408.4303 Solar and Stellar Astrophysics +1408.4680 Quantum Gases +1408.6306 Astrophysics of Galaxies +1409.0367 Computational Engineering, Finance, and Science +1409.0639 Earth and Planetary Astrophysics +1409.0890 Earth and Planetary Astrophysics +1409.0904 +1409.1941 Solar and Stellar Astrophysics +1409.2371 +1409.3139 Plasma Physics +1409.3240 Solar and Stellar Astrophysics +1409.3543 Solar and Stellar Astrophysics +1409.4181 Astrophysics of Galaxies +1409.4289 Solar and Stellar Astrophysics +1409.4579 Instrumentation and Methods for Astrophysics +1409.5274 Mesoscale and Nanoscale Physics +1409.5636 +1409.6225 Cosmology and Nongalactic Astrophysics +1409.6553 Phenomenology +1409.6664 High Energy Astrophysical Phenomena +1409.7090 Experiment +1409.7217 Data Structures and Algorithms +1409.7407 Logic +1409.8117 Solar and Stellar Astrophysics +1410.0064 Geometric Topology +1410.0752 Probability +1410.1560 Instrumentation and Detectors +1410.2754 Phenomenology +1410.2959 Computer Vision and Pattern Recognition +1410.3137 General Topology +1410.3198 Genomics +1410.3386 Data Structures and Algorithms +1410.3449 Earth and Planetary Astrophysics +1410.3457 Classical Analysis and ODEs +1410.3458 Classical Physics +1410.3459 Plasma Physics +1410.3460 Computation and Language +1410.3461 Digital Libraries +1410.3462 Information Retrieval +1410.3463 Operating Systems +1410.3465 Experiment +1410.3481 Instrumentation and Methods for Astrophysics +1410.3486 Rings and Algebras +1410.3487 Solar and Stellar Astrophysics +1410.3490 +1410.3496 Phenomenology +1410.3498 Phenomenology +1410.3500 Probability +1410.3508 Numerical Analysis +1410.3511 Astrophysics of Galaxies +1410.3512 Social and Information Networks +1410.3513 Pattern Formation and Solitons +1410.3515 Applications +1410.3521 Analysis of PDEs +1410.3523 Optics +1410.3527 Dynamical Systems +1410.3529 Optics +1410.3530 Group Theory +1410.3532 Superconductivity +1410.3533 Statistics Theory +1410.3536 Phenomenology +1410.3537 Solar and Stellar Astrophysics +1410.3538 Optimization and Control +1410.3539 Optics +1410.3540 Combinatorics +1410.3543 Plasma Physics +1410.3546 Mesoscale and Nanoscale Physics +1410.3551 Probability +1410.3556 Complex Variables +1410.3561 Methodology +1410.3563 Astrophysics of Galaxies +1410.3564 Computational Geometry +1410.3566 Methodology +1410.3576 Computers and Society +1410.3580 Mesoscale and Nanoscale Physics +1410.3582 Software Engineering +1410.3587 Number Theory +1410.3588 +1410.3589 Logic +1410.3590 High Energy Astrophysical Phenomena +1410.3591 Analysis of PDEs +1410.3592 Solar and Stellar Astrophysics +1410.3595 Learning +1410.3597 Solar and Stellar Astrophysics +1410.3601 Instrumentation and Detectors +1410.3602 +1410.3606 Category Theory +1410.3607 Astrophysics of Galaxies +1410.3611 Differential Geometry +1410.3612 Differential Geometry +1410.3615 Logic +1410.3616 Optics +1410.3617 Computers and Society +1410.3618 +1410.3620 Spectral Theory +1410.3621 Quantum Gases +1410.3625 Logic +1410.3626 Superconductivity +1410.3628 Symbolic Computation +1410.3629 Phenomenology +1410.3631 +1410.3632 Molecular Networks +1410.3633 Accelerator Physics +1410.3637 Combinatorics +1410.3639 +1410.3643 Soft Condensed Matter +1410.3646 Materials Science +1410.3651 Algebraic Topology +1410.3652 Classical Analysis and ODEs +1410.3653 Accelerator Physics +1410.3654 Accelerator Physics +1410.3656 Information Theory +1410.3657 +1410.3658 Phenomenology +1410.3661 Probability +1410.3663 Accelerator Physics +1410.3667 Accelerator Physics +1410.3669 Accelerator Physics +1410.3670 Accelerator Physics +1410.3671 Rings and Algebras +1410.3675 Accelerator Physics +1410.3676 +1410.3683 Numerical Analysis +1410.3688 Computer Science and Game Theory +1410.3692 Solar and Stellar Astrophysics +1410.3694 Software Engineering +1410.3697 Symplectic Geometry +1410.3699 Computer Vision and Pattern Recognition +1410.3701 Algebraic Geometry +1410.3704 +1410.3705 Digital Libraries +1410.3707 Mesoscale and Nanoscale Physics +1410.3709 Materials Science +1410.3710 Computers and Society +1410.3711 Information Theory +1410.3716 Optics +1410.3717 Numerical Analysis +1410.3718 Numerical Analysis +1410.3722 +1410.3723 Computers and Society +1410.3730 Astrophysics of Galaxies +1410.3731 Rings and Algebras +1410.3734 Phenomenology +1410.3735 Programming Languages +1410.3736 Dynamical Systems +1410.3740 Classical Physics +1410.3742 Algebraic Geometry +1410.3743 Experiment +1410.3744 Computer Vision and Pattern Recognition +1410.3748 Computer Vision and Pattern Recognition +1410.3750 +1410.3751 Computer Vision and Pattern Recognition +1410.3752 Computer Vision and Pattern Recognition +1410.3756 Computer Vision and Pattern Recognition +1410.3758 High Energy Astrophysical Phenomena +1410.3768 Medical Physics +1410.3769 Geometric Topology +1410.3770 Formal Languages and Automata Theory +1410.3771 Chemical Physics +1410.3772 Programming Languages +1410.3773 Logic in Computer Science +1410.3774 Differential Geometry +1410.3778 Statistical Mechanics +1410.3781 +1410.3787 Materials Science +1410.3791 Computation and Language +1410.3794 Physics Education +1410.3798 Geophysics +1410.3803 Mesoscale and Nanoscale Physics +1410.3805 Dynamical Systems +1410.3806 Analysis of PDEs +1410.3807 Representation Theory +1410.3812 Information Theory +1410.3816 Physics and Society +hep-th/0401189 Theory +math/0204004 Rings and Algebras +0801.2267 +0909.3776 Cosmology and Nongalactic Astrophysics +0910.1975 Spectral Theory +1001.0372 Other Condensed Matter +1001.1095 Algebraic Geometry +1003.0917 Algebraic Geometry +1004.4237 Algebraic Geometry +1010.1652 Differential Geometry +1103.2459 Algebraic Geometry +1106.0620 Differential Geometry +1108.4976 Algebraic Topology +1109.2612 Algebraic Geometry +1110.2799 Algebraic Geometry +1112.2547 Probability +1203.4376 Geometric Topology +1206.0387 Machine Learning +1206.5556 Rings and Algebras +1207.4863 Operator Algebras +1208.0766 Geometric Topology +1209.5023 Analysis of PDEs +1210.0577 Numerical Analysis +1210.3802 Algebraic Geometry +1301.0172 Optimization and Control +1301.2643 Numerical Analysis +1301.6842 Probability +1302.3499 Group Theory +1302.4222 Classical Analysis and ODEs +1303.0576 Algebraic Geometry +1303.1955 Analysis of PDEs +1303.2037 Probability +1303.6765 Applications +1303.7372 Combinatorics +1304.3221 +1305.0023 Phenomenology +1305.1736 +1305.4016 Number Theory +1305.7205 Numerical Analysis +1306.0943 Combinatorics +1306.1941 Theory +1306.3957 Algebraic Geometry +1306.4117 Populations and Evolution +1307.4289 Data Structures and Algorithms +1307.5530 +1307.7025 +1307.7178 Computational Finance +1308.0041 Information Theory +1308.2075 Combinatorics +1309.2615 Neurons and Cognition +1309.3511 Optimization and Control +1309.3803 Geometric Topology +1309.4620 Algebraic Geometry +1310.1567 Fluid Dynamics +1310.4602 Numerical Analysis +1310.5410 Probability +1310.7495 Phenomenology +1310.8028 Logic +1311.0744 +1311.0791 Mesoscale and Nanoscale Physics +1311.2789 Genomics +1311.4794 Theory +1311.5652 Populations and Evolution +1311.5744 Strongly Correlated Electrons +1312.2152 Group Theory +1312.2652 Phenomenology +1312.5938 Information Theory +1312.7145 Systems and Control +1312.7807 +1401.1128 Optics +1401.3374 Instrumentation and Detectors +1401.4032 Theory +1401.5774 Algebraic Geometry +1402.0935 Strongly Correlated Electrons +1402.2848 +1402.4822 K-Theory and Homology +1402.6205 +1402.6601 Distributed, Parallel, and Cluster Computing +1402.7053 Superconductivity +1403.3701 +1403.4224 Learning +1403.4694 Materials Science +1403.5657 Experiment +1403.6118 Phenomenology +1403.7819 +1404.0376 +1404.2598 Mesoscale and Nanoscale Physics +1404.3554 +1405.0440 Theory +1405.0653 +1405.2001 +1405.2413 Disordered Systems and Neural Networks +1405.4750 Numerical Analysis +1405.4776 Numerical Analysis +1405.5092 Phenomenology +1405.6583 Experiment +1405.6600 +1405.7467 Plasma Physics +1405.7593 Astrophysics of Galaxies +1406.0502 Cosmology and Nongalactic Astrophysics +1406.1525 Theory +1406.2417 Theory +1406.3827 Experiment +1406.5755 Pricing of Securities +1406.6825 Classical Analysis and ODEs +1406.7351 Materials Science +1406.7830 Experiment +1407.0846 Biological Physics +1407.1738 +1407.2631 Analysis of PDEs +1407.5069 +1407.5212 Artificial Intelligence +1407.6367 Cosmology and Nongalactic Astrophysics +1407.6875 Numerical Analysis +1407.6935 Strongly Correlated Electrons +1407.7905 High Energy Astrophysical Phenomena +1408.0283 Astrophysics of Galaxies +1408.1682 Experiment +1408.1721 +1408.1722 +1408.2946 Digital Libraries +1408.4415 Differential Geometry +1408.5129 Astrophysics of Galaxies +1408.5229 Strongly Correlated Electrons +1408.5531 Algebraic Geometry +1408.5640 Materials Science +1409.0196 Superconductivity +1409.0443 Superconductivity +1409.0685 Computer Vision and Pattern Recognition +1409.0781 Materials Science +1409.0877 +1409.2338 Soft Condensed Matter +1409.2766 +1409.3548 Materials Science +1409.3836 Computational Complexity +1409.4092 Data Structures and Algorithms +1409.4331 Computer Science and Game Theory +1409.4597 Optimization and Control +1409.4655 +1409.5038 Experiment +1409.5329 Analysis of PDEs +1409.5437 Astrophysics of Galaxies +1409.5442 Theory +1409.5445 Accelerator Physics +1409.5451 Combinatorics +1409.5452 Data Structures and Algorithms +1409.5453 Medical Physics +1409.5454 Cosmology and Nongalactic Astrophysics +1409.5457 Strongly Correlated Electrons +1409.5458 Accelerator Physics +1409.5461 Accelerator Physics +1409.5462 Symbolic Computation +1409.5463 Spectral Theory +1409.5464 Accelerator Physics +1409.5466 Computational Geometry +1409.5469 Soft Condensed Matter +1409.5470 Accelerator Physics +1409.5473 Experiment +1409.5474 Instrumentation and Methods for Astrophysics +1409.5475 Combinatorics +1409.5476 Optimization and Control +1409.5478 Algebraic Geometry +1409.5479 Accelerator Physics +1409.5481 Commutative Algebra +1409.5483 Accelerator Physics +1409.5485 Phenomenology +1409.5486 Systems and Control +1409.5487 Algebraic Topology +1409.5491 Cryptography and Security +1409.5492 Theory +1409.5502 Computation and Language +1409.5504 Algebraic Geometry +1409.5508 Quantum Gases +1409.5509 Numerical Analysis +1409.5511 Group Theory +1409.5512 Social and Information Networks +1409.5513 Complex Variables +1409.5515 Systems and Control +1409.5518 Commutative Algebra +1409.5519 Systems and Control +1409.5521 Analysis of PDEs +1409.5523 Logic +1409.5524 Information Retrieval +1409.5526 Populations and Evolution +1409.5527 Number Theory +1409.5528 Probability +1409.5529 Numerical Analysis +1409.5546 Distributed, Parallel, and Cluster Computing +1409.5550 Instrumentation and Detectors +1409.5551 Probability +1409.5552 Distributed, Parallel, and Cluster Computing +1409.5554 +1409.5557 Information Theory +1409.5560 Optimization and Control +1409.5563 Accelerator Physics +1409.5564 Analysis of PDEs +1409.5566 Mesoscale and Nanoscale Physics +1409.5567 Performance +1409.5568 Algebraic Geometry +1409.5570 Theory +1409.5572 +1409.5573 Optics +1409.5575 Analysis of PDEs +1409.5576 Numerical Analysis +1409.5578 +1409.5579 Analysis of PDEs +1409.5581 +1409.5587 +1409.5590 Accelerator Physics +1409.5591 +1409.5593 +1409.5595 Computers and Society +1409.5596 +1409.5599 +1409.5603 Solar and Stellar Astrophysics +1409.5604 +1409.5606 Information Theory +1409.5607 Materials Science +1409.5609 Combinatorics +1409.5611 Metric Geometry +1409.5620 Metric Geometry +1409.5621 +1409.5622 Performance +1409.5626 High Energy Astrophysical Phenomena +1409.5633 Probability +1409.5635 Representation Theory +1409.5641 Data Structures and Algorithms +1409.5646 Probability +1409.5653 +1409.5658 +1409.5659 Information Theory +1409.5660 Commutative Algebra +1409.5661 Combinatorics +1409.5665 Analysis of PDEs +1409.5667 Lattice +1409.5671 Artificial Intelligence +1409.5672 Neurons and Cognition +1409.5678 +1409.5679 Algebraic Geometry +1409.5681 Logic in Computer Science +1409.5687 Probability +1409.5697 General Physics +1409.5699 Logic +1409.5711 Functional Analysis +1409.5713 Algebraic Geometry +1409.5716 Information Theory +1409.5719 Artificial Intelligence +1409.5720 Combinatorics +1409.5722 Atmospheric and Oceanic Physics +1409.5726 Dynamical Systems +1409.5728 +1409.5729 Computer Vision and Pattern Recognition +1409.5730 Algebraic Topology +1409.5732 Methodology +1409.5733 Atmospheric and Oceanic Physics +1409.5734 Algebraic Geometry +1409.5735 Exactly Solvable and Integrable Systems +1409.5739 Numerical Analysis +1409.5742 Theory +1409.5744 Systems and Control +1409.5748 Probability +1409.5750 Accelerator Physics +1409.5752 Artificial Intelligence +1409.5753 Optimization and Control +1409.5756 Medical Physics +1409.5758 Human-Computer Interaction +1409.5760 Networking and Internet Architecture +1409.5762 Accelerator Physics +1409.5765 Materials Science +1409.5771 Theory +1409.5772 Representation Theory +1409.5774 Computational Engineering, Finance, and Science +1409.5780 Accelerator Physics +1409.5783 Information Theory +math/0407515 Group Theory +math/0702304 Probability +0909.2020 Analysis of PDEs +1103.4653 Representation Theory +1108.0036 Algebraic Geometry +1108.2431 Probability +1109.6366 Disordered Systems and Neural Networks +1112.5379 +1203.4401 Statistics Theory +1203.5545 Representation Theory +1204.1067 Probability +1204.4339 +1205.4260 Symplectic Geometry +1205.6105 Symplectic Geometry +1206.0231 +1206.0648 Statistics Theory +1207.3494 Group Theory +1210.3203 Geometric Topology +1210.3739 Methodology +1210.5740 Representation Theory +1211.2598 Statistical Mechanics +1211.3422 +1211.4467 Materials Science +1211.5937 Statistical Mechanics +1301.6450 Methodology +1302.2242 +1302.7093 Physics Education +1304.1698 Genomics +1304.1940 Risk Management +1304.7363 Accelerator Physics +1305.1041 Symplectic Geometry +1305.1245 Symplectic Geometry +1306.3550 Combinatorics +1306.3703 Category Theory +1306.4332 Statistical Mechanics +1306.4354 Differential Geometry +1307.0791 Physics Education +1307.7283 Computational Physics +1307.8041 +1308.3967 +1309.1634 Statistical Mechanics +1309.2483 Lattice +1309.5625 Probability +1309.7908 Theory +1310.0813 Mesoscale and Nanoscale Physics +1310.1627 Phenomenology +1310.2478 Phenomenology +1310.3084 +1310.3164 Representation Theory +1310.7665 Data Structures and Algorithms +1310.8253 Phenomenology +1310.8519 Classical Analysis and ODEs +1311.0195 Information Theory +1311.5343 Computation +1311.6136 Soft Condensed Matter +1311.6179 Portfolio Management +1312.5306 Methodology +1312.6796 Earth and Planetary Astrophysics +1401.0145 Analysis of PDEs +1401.0256 Chaotic Dynamics +1401.1679 Chemical Physics +1401.2128 +1401.3379 Theory +1401.4174 +1401.4243 +1401.7314 Differential Geometry +1401.7534 Phenomenology +1402.0049 +1402.0281 +1402.0399 Phenomenology +1402.0738 +1402.2058 Optimization and Control +1402.2883 Differential Geometry +1402.6767 Statistical Mechanics +1403.0780 Differential Geometry +1403.1605 Cosmology and Nongalactic Astrophysics +1403.3318 Lattice +1403.3783 Algebraic Geometry +1403.5568 Mesoscale and Nanoscale Physics +1403.6817 Rings and Algebras +1403.7490 Phenomenology +1404.0247 Lattice +1404.1451 Information Theory +1404.1706 +1404.2970 +1404.4047 Theory +1404.4237 Quantum Gases +1404.4584 Statistical Mechanics +1404.5073 +1404.5656 Classical Analysis and ODEs +1404.6807 Group Theory +1405.0029 Information Theory +1405.0143 Geometric Topology +1405.0380 Statistical Mechanics +1405.0902 Biological Physics +1405.3702 Materials Science +1405.4036 Chemical Physics +1405.4040 High Energy Astrophysical Phenomena +1405.4650 Soft Condensed Matter +1405.5152 +1405.5795 Neurons and Cognition +1405.5865 Mesoscale and Nanoscale Physics +1405.6109 Earth and Planetary Astrophysics +1405.6224 Physics and Society +1405.6299 Mesoscale and Nanoscale Physics +1405.7549 Theory +1406.0290 +1406.2237 Machine Learning +1406.2526 Astrophysics of Galaxies +1406.3890 Solar and Stellar Astrophysics +1406.4321 Classical Analysis and ODEs +1406.4893 Genomics +1406.5575 Dynamical Systems +1406.6577 Disordered Systems and Neural Networks +1407.1435 Strongly Correlated Electrons +1407.1877 Superconductivity +1407.2001 Soft Condensed Matter +1407.2764 Phenomenology +1407.2803 Mesoscale and Nanoscale Physics +1407.4714 Physics Education +1407.4767 Phenomenology +1407.5519 +1407.6310 Physics Education +1407.6789 +1407.7122 +1408.0244 History and Philosophy of Physics +1408.0872 Computer Vision and Pattern Recognition +1408.3173 Strongly Correlated Electrons +1408.4340 Cosmology and Nongalactic Astrophysics +1408.4511 Theory +1408.4584 Lattice +1409.1772 +1409.3486 Astrophysics of Galaxies +1409.3545 Theory +1409.4225 Theory +1409.4832 Mesoscale and Nanoscale Physics +1409.5675 +1409.5683 Number Theory +1409.6562 Cosmology and Nongalactic Astrophysics +1410.0459 Physics and Society +1410.0903 Optics +1410.0986 Numerical Analysis +1410.1277 Materials Science +1410.1982 Strongly Correlated Electrons +1410.2009 Materials Science +1410.3225 Phenomenology +1410.3547 Numerical Analysis +1410.3655 Solar and Stellar Astrophysics +1410.3725 Solar and Stellar Astrophysics +1410.3746 Numerical Analysis +1410.3819 Earth and Planetary Astrophysics +1410.3820 Digital Libraries +1410.3827 Astrophysics of Galaxies +1410.3831 Machine Learning +1410.3833 +1410.3834 Symplectic Geometry +1410.3837 Cosmology and Nongalactic Astrophysics +1410.3839 Disordered Systems and Neural Networks +1410.3841 Solar and Stellar Astrophysics +1410.3842 Probability +1410.3845 Cosmology and Nongalactic Astrophysics +1410.3848 Phenomenology +1410.3853 Applications +1410.3862 Artificial Intelligence +1410.3863 Robotics +1410.3868 Solar and Stellar Astrophysics +1410.3876 Discrete Mathematics +1410.3878 Representation Theory +1410.3879 Algebraic Topology +1410.3886 Data Structures and Algorithms +1410.3894 Number Theory +1410.3895 +1410.3896 +1410.3897 Soft Condensed Matter +1410.3900 Instrumentation and Detectors +1410.3905 Computer Vision and Pattern Recognition +1410.3907 Materials Science +1410.3910 Computer Vision and Pattern Recognition +1410.3919 History and Philosophy of Physics +1410.3921 Dynamical Systems +1410.3922 +1410.3926 Number Theory +1410.3932 Computer Vision and Pattern Recognition +1410.3933 Number Theory +1410.3935 Learning +1410.3936 Probability +1410.3937 Analysis of PDEs +1410.3940 +1410.3942 Computers and Society +1410.3945 Optics +1410.3948 Classical Analysis and ODEs +1410.3952 Earth and Planetary Astrophysics +1410.3953 Number Theory +1410.3955 Classical Analysis and ODEs +1410.3957 Pattern Formation and Solitons +1410.3958 Methodology +1410.3961 Neurons and Cognition +1410.3965 Information Theory +1410.3968 Representation Theory +1410.3969 Systems and Control +1410.3970 Computer Vision and Pattern Recognition +1410.3974 Representation Theory +1410.3975 Geometric Topology +1410.3977 Multimedia +1410.3980 Phenomenology +1410.3981 Logic +1410.3982 Theory +1410.3983 Statistical Mechanics +1410.3984 Phenomenology +1410.3985 +1410.3989 Methodology +1410.3997 Dynamical Systems +1410.4002 Statistical Mechanics +1410.4006 Probability +1410.4009 Learning +1410.4012 Computer Vision and Pattern Recognition +1410.4013 Computer Vision and Pattern Recognition +1410.4019 Cryptography and Security +1410.4020 Functional Analysis +1410.4024 +1410.4025 Algebraic Geometry +1410.4026 Statistical Mechanics +1410.4027 Formal Languages and Automata Theory +1410.4029 Statistics Theory +1410.4036 Accelerator Physics +1410.4037 Commutative Algebra +1410.4038 Populations and Evolution +1410.4045 Logic +1410.4049 Soft Condensed Matter +1410.4052 Metric Geometry +1410.4053 Theory +1410.4055 Computational Physics +1410.4056 Numerical Analysis +1410.4057 Accelerator Physics +1410.4058 +1410.4059 Group Theory +1410.4060 Numerical Analysis +1410.4065 Formal Languages and Automata Theory +1410.4066 Optimization and Control +1410.4069 Accelerator Physics +1410.4073 Materials Science +1410.4075 Optics +1410.4076 Accelerator Physics +1410.4077 Mesoscale and Nanoscale Physics +1410.4078 Software Engineering +1410.4081 Experiment +1410.4082 Software Engineering +1410.4083 Fluid Dynamics +1410.4084 Combinatorics +1410.4085 Discrete Mathematics +1410.4088 Genomics +1410.4092 Accelerator Physics +1410.4094 Software Engineering +1410.4095 Cryptography and Security +1410.4098 Mesoscale and Nanoscale Physics +1410.4099 Computational Geometry +1410.4100 Superconductivity +1410.4102 Classical Analysis and ODEs +1410.4106 Phenomenology +1410.4109 Combinatorics +1410.4119 Analysis of PDEs +1410.4122 Medical Physics +1410.4124 Classical Analysis and ODEs +1410.4128 Classical Analysis and ODEs +1410.4129 +1410.4130 Differential Geometry +1410.4133 Phenomenology +1410.4135 Computational Complexity +1410.4139 Digital Libraries +1410.4141 Computers and Society +1410.4147 Cryptography and Security +1410.4149 Combinatorics +1410.4167 Soft Condensed Matter +1410.4168 Performance +1410.4171 Mesoscale and Nanoscale Physics +1410.4176 Computation and Language +1410.4179 Statistics Theory +1410.4180 Networking and Internet Architecture +1410.4182 Artificial Intelligence +1410.4183 Analysis of PDEs +1410.4185 Theory +math-ph/0510048 +0705.0338 +0708.3234 Dynamical Systems +0710.1316 Number Theory +0711.2703 Classical Analysis and ODEs +0801.3399 Spectral Theory +0803.0728 Number Theory +0805.1048 Other Condensed Matter +0805.1481 Logic +0806.0645 Dynamical Systems +0905.3022 Differential Geometry +0905.4937 Statistics Theory +0908.0723 Dynamical Systems +0908.3731 Number Theory +0908.4171 Probability +0910.4957 Analysis of PDEs +0912.1831 Number Theory +0912.5246 Number Theory +1001.5303 Number Theory +1004.0745 Theory +1005.0714 Physics Education +1005.3030 Functional Analysis +1005.5603 Learning +1007.0588 Functional Analysis +1008.4007 Classical Analysis and ODEs +1008.4644 Analysis of PDEs +1011.0014 Rings and Algebras +1011.1421 Fluid Dynamics +1102.2255 Number Theory +1102.5649 Classical Analysis and ODEs +1104.0961 Computer Science and Game Theory +1104.3132 Data Analysis, Statistics and Probability +1105.5633 Number Theory +1107.4165 Statistics Theory +1108.1244 Quantum Gases +1110.2712 Computer Science and Game Theory +1111.4203 Algebraic Geometry +1201.1797 +1202.5643 Probability +1203.5295 Analysis of PDEs +1204.1563 Statistics Theory +1206.0550 Combinatorics +1206.2037 Logic in Computer Science +1207.0530 Algebraic Geometry +1208.1109 Algebraic Geometry +1208.3146 Phenomenology +1208.3200 Functional Analysis +1208.5935 Theory +1209.1595 Combinatorics +1209.3165 General Mathematics +1209.5007 Superconductivity +1209.6090 High Energy Astrophysical Phenomena +1209.6120 Classical Analysis and ODEs +1210.4531 K-Theory and Homology +1210.5925 Dynamical Systems +1210.6372 Trading and Market Microstructure +1211.1986 Theory +1211.2456 Combinatorics +1211.5765 Algebraic Geometry +1212.2058 Combinatorics +1212.2228 Computation +1212.5577 Information Theory +1212.6613 Theory +1301.0541 Computational Geometry +1301.3346 Analysis of PDEs +1301.4747 Classical Analysis and ODEs +1301.6467 Information Theory +1302.0507 Geometric Topology +1302.0891 Information Theory +1302.1614 Number Theory +1302.1741 Cryptography and Security +1303.0160 Optimization and Control +1303.0472 Dynamical Systems +1303.0627 Analysis of PDEs +1303.2561 Representation Theory +1303.2728 Differential Geometry +1303.4792 Functional Analysis +1303.5005 Group Theory +1303.6028 Differential Geometry +1304.1639 Metric Geometry +1304.5745 Information Theory +1305.1852 Social and Information Networks +1305.1914 Category Theory +1305.2992 K-Theory and Homology +1305.3791 Strongly Correlated Electrons +1306.0167 Classical Analysis and ODEs +1306.0833 Differential Geometry +1306.1934 +1306.2086 Probability +1307.3075 Other Computer Science +1307.4322 Combinatorics +1307.4494 Solar and Stellar Astrophysics +1307.5319 General Finance +1308.0868 Applications +1308.3185 Computer Science and Game Theory +1308.3242 Combinatorics +1308.3454 Number Theory +1309.2201 Combinatorics +1309.2695 Methodology +1309.2883 +1309.2956 +1309.4112 Cryptography and Security +1309.5236 Combinatorics +1309.5295 Geophysics +1309.5298 Astrophysics of Galaxies +1309.5479 Mathematical Software +1309.6806 Information Theory +1310.1414 Superconductivity +1310.2720 Fluid Dynamics +1310.4266 Probability +1310.5136 +1310.6069 Theory +1311.0732 +1311.1028 Quantum Gases +1311.3314 +1311.4213 +1311.4813 Instrumentation and Methods for Astrophysics +1311.5212 +1312.1085 Distributed, Parallel, and Cluster Computing +1312.1849 Algebraic Geometry +1312.2119 Classical Analysis and ODEs +1312.2655 Number Theory +1312.2992 Number Theory +1312.3589 Applications +1312.4140 +1312.4196 Probability +1312.7227 Algebraic Geometry +1312.7401 Functional Analysis +1312.7402 Statistics Theory +1401.0102 Distributed, Parallel, and Cluster Computing +1401.1444 Number Theory +1401.3108 +1401.3802 +1401.4577 Probability +1401.5188 +1401.5688 Information Theory +1401.6301 Statistical Mechanics +1401.7795 Materials Science +1401.8201 Databases +1402.0973 Algebraic Geometry +1402.2413 +1402.2911 +1402.3306 Algebraic Topology +1402.4104 Probability +1402.4228 Algebraic Geometry +1402.4538 Combinatorics +1402.4927 +1402.5330 +1402.5564 Computer Vision and Pattern Recognition +1402.7034 +1403.0431 Probability +1403.0575 Strongly Correlated Electrons +1403.1069 +1403.1591 Information Theory +1403.4476 High Energy Astrophysical Phenomena +1403.4492 Information Theory +1403.4641 Atomic Physics +1403.5787 Physics and Society +1403.6158 Functional Analysis +1403.6210 Combinatorics +1403.6642 Statistical Mechanics +1403.6676 Cryptography and Security +1403.7011 Group Theory +1404.0169 Combinatorics +1404.1565 Theory +1404.1898 Symplectic Geometry +1404.5200 Algebraic Topology +1404.6005 +1405.1269 Neurons and Cognition +1405.1771 Chemical Physics +1405.2510 +1405.3771 +1405.3932 +1405.5129 +1405.5355 Algebraic Geometry +1405.5750 Solar and Stellar Astrophysics +1405.6040 Rings and Algebras +1405.6936 Strongly Correlated Electrons +1405.7122 Rings and Algebras +1405.7773 Algebraic Geometry +1406.0239 High Energy Astrophysical Phenomena +1406.0477 Quantum Gases +1406.0520 Theory +1406.0769 Systems and Control +1406.1300 Combinatorics +1406.1824 Differential Geometry +1406.1921 Optics +1406.3731 Group Theory +1406.4980 Information Theory +1406.5788 Classical Analysis and ODEs +1406.5876 Probability +1406.6036 +1406.7277 Cosmology and Nongalactic Astrophysics +1406.7514 +1406.7591 Algebraic Topology +1407.1138 Materials Science +1407.1631 Statistical Mechanics +1407.2955 Algebraic Geometry +1407.3358 Statistical Mechanics +1407.3956 Computer Vision and Pattern Recognition +1407.4614 Trading and Market Microstructure +1407.5567 Number Theory +1407.5665 Complex Variables +1407.6251 Computer Vision and Pattern Recognition +1407.7861 Phenomenology +1407.8055 Experiment +1407.8281 +1408.0370 Spectral Theory +1408.0876 Information Theory +1408.1116 Dynamical Systems +1408.1246 Superconductivity +1408.1888 General Mathematics +1408.2150 Strongly Correlated Electrons +1408.2306 Solar and Stellar Astrophysics +1408.2583 Phenomenology +1408.2991 Phenomenology +1408.3013 Phenomenology +1408.3136 Strongly Correlated Electrons +1408.6406 +1408.6834 Optics +1408.7048 Phenomenology +1409.0086 Fluid Dynamics +1409.0450 Soft Condensed Matter +1409.0554 Theory +1409.1216 Quantum Gases +1409.3424 +1409.3743 +1409.4846 Soft Condensed Matter +1409.4900 Phenomenology +1409.5001 Strongly Correlated Electrons +1409.5997 +1409.6145 +1409.6536 Strongly Correlated Electrons +1409.6880 Optimization and Control +1409.7766 Probability +1409.8063 Data Structures and Algorithms +1409.8173 Number Theory +1410.1269 Mesoscale and Nanoscale Physics +1410.1324 Solar and Stellar Astrophysics +1410.1328 Mesoscale and Nanoscale Physics +1410.1945 Analysis of PDEs +1410.2176 Systems and Control +1410.3002 Materials Science +1410.3384 General Mathematics +1410.3497 Quantum Gases +1410.3993 Theory +1410.4193 Phenomenology +1410.5067 Number Theory +1410.5198 Strongly Correlated Electrons +1410.5301 Combinatorics +1410.6311 +1410.6849 Experiment +1410.6941 Materials Science +1410.7124 Mesoscale and Nanoscale Physics +1410.7579 Optics +1410.7976 Classical Analysis and ODEs +1410.8344 +1411.0193 Differential Geometry +1411.1928 Differential Geometry +1411.4201 Group Theory +1411.4320 Earth and Planetary Astrophysics +1411.5569 Analysis of PDEs +1411.5837 Mesoscale and Nanoscale Physics +1411.6292 +1411.6683 Applications +1411.6845 Phenomenology +1411.7010 Cosmology and Nongalactic Astrophysics +1411.7283 Analysis of PDEs +1412.0334 Theory +1412.0616 +1412.0890 Phenomenology +1412.1885 Numerical Analysis +1412.2242 Chaotic Dynamics +1412.2294 Algebraic Geometry +1412.2689 Computers and Society +1412.2834 General Topology +1412.3478 Materials Science +1412.3689 Theory +1412.4135 +1412.4254 Theory +1412.4362 +1412.4435 Phenomenology +1412.4899 Phenomenology +1412.5400 Programming Languages +1412.5436 Soft Condensed Matter +1412.5452 General Finance +1412.6631 Computer Vision and Pattern Recognition +1412.6682 Information Theory +1412.6696 Optics +1412.6760 Computation +1412.6966 Methodology +1412.7096 Statistical Finance +1412.7242 Computer Vision and Pattern Recognition +1412.7311 Social and Information Networks +1412.7597 +1412.7701 Classical Physics +1412.7717 Analysis of PDEs +1412.7760 Social and Information Networks +1412.7763 Information Theory +1412.7770 Probability +1412.7772 Information Theory +1412.7773 Soft Condensed Matter +1412.7774 Neural and Evolutionary Computing +1412.7777 Representation Theory +1412.7779 Geometric Topology +1412.7780 Graphics +1412.7782 Information Retrieval +1412.7784 Computation +1412.7785 Information Theory +1412.7789 Distributed, Parallel, and Cluster Computing +1412.7791 Optics +1412.7792 Materials Science +1412.7794 Statistics Theory +1412.7796 Information Theory +1412.7797 +1412.7798 Combinatorics +1412.7800 High Energy Astrophysical Phenomena +1412.7805 Optics +1412.7806 Experiment +1412.7808 Theory +1412.7810 Mesoscale and Nanoscale Physics +1412.7811 Computational Engineering, Finance, and Science +1412.7812 Number Theory +1412.7813 Computers and Society +1412.7815 +1412.7817 Operator Algebras +1412.7818 Emerging Technologies +1412.7824 Systems and Control +1412.7827 +1412.7831 Probability +1412.7836 Probability +1412.7837 Probability +1412.7840 Systems and Control +1412.7842 Probability +1412.7843 Probability +1412.7844 Computer Vision and Pattern Recognition +1412.7845 Probability +1412.7846 Optics +1412.7849 Computer Vision and Pattern Recognition +1412.7851 Computer Vision and Pattern Recognition +1412.7856 Computer Vision and Pattern Recognition +1412.7857 Accelerator Physics +1412.7858 Robotics +1412.7859 Functional Analysis +1412.7860 Data Structures and Algorithms +1412.7862 +1412.7864 Mesoscale and Nanoscale Physics +1412.7865 Commutative Algebra +1412.7866 High Energy Astrophysical Phenomena +1412.7869 Algebraic Geometry +1412.7873 +1412.7878 Instrumentation and Methods for Astrophysics +1412.7880 Data Analysis, Statistics and Probability +1412.7881 Analysis of PDEs +1412.7884 Computer Vision and Pattern Recognition +1412.7887 Soft Condensed Matter +1412.7888 Systems and Control +1412.7889 Computer Vision and Pattern Recognition +1412.7893 Differential Geometry +1412.7899 +1412.7902 +1412.7905 Functional Analysis +1412.7908 Materials Science +1412.7912 Networking and Internet Architecture +1412.7914 Combinatorics +1412.7915 Disordered Systems and Neural Networks +1412.7917 +1412.7919 Mesoscale and Nanoscale Physics +1412.7920 Dynamical Systems +1412.7922 Distributed, Parallel, and Cluster Computing +1412.7926 +1412.7927 Learning +1412.7928 Lattice +1412.7932 Human-Computer Interaction +1412.7933 Solar and Stellar Astrophysics +1412.7934 Learning +1412.7935 Distributed, Parallel, and Cluster Computing +1412.7936 Operator Algebras +1412.7940 +1412.7943 Mathematical Finance +1412.7946 Computational Physics +1412.7949 Computers and Society +1412.7952 Probability +1412.7954 Atomic Physics +1412.7955 Neural and Evolutionary Computing +1412.7959 Computers and Society +1412.7961 Artificial Intelligence +1412.7963 Computer Vision and Pattern Recognition +1412.7964 Artificial Intelligence +1412.7965 Artificial Intelligence +1412.7967 Artificial Intelligence +1412.7968 Artificial Intelligence +1412.7971 Strongly Correlated Electrons +1412.7973 Earth and Planetary Astrophysics +1412.7975 Biomolecules +1412.7976 Analysis of PDEs +1412.7977 Physics Education +1412.7978 Artificial Intelligence +1412.7979 Computational Complexity +1412.7984 +1412.7987 Materials Science +1412.7989 Mesoscale and Nanoscale Physics +1412.7990 Information Retrieval +1412.7996 Combinatorics +1412.7997 Earth and Planetary Astrophysics +1412.7999 Symplectic Geometry +1412.8000 Theory +1412.8003 Emerging Technologies +1412.8004 Emerging Technologies +1412.8005 Data Structures and Algorithms +1412.8006 Probability +1412.8007 Information Theory +1412.8008 Theory +1412.8009 Lattice +1412.8010 Computation and Language +1412.8018 Systems and Control +1412.8021 Superconductivity +1412.8022 Lattice +1412.8028 Distributed, Parallel, and Cluster Computing +1412.8029 Distributed, Parallel, and Cluster Computing +1412.8030 Phenomenology +1412.8033 Atmospheric and Oceanic Physics +1412.8037 High Energy Astrophysical Phenomena +1412.8040 Algebraic Geometry +1412.8044 Number Theory +1412.8045 Optimization and Control +1412.8046 Commutative Algebra +1412.8048 Group Theory +1412.8050 Functional Analysis +1412.8053 Experiment +1412.8055 Rings and Algebras +1412.8065 Molecular Networks +1412.8066 Logic +1412.8067 High Energy Astrophysical Phenomena +1412.8068 +1412.8069 Number Theory +1412.8070 Computer Vision and Pattern Recognition +1412.8071 Representation Theory +1412.8075 Theory +1412.8076 Phenomenology +1412.8077 Theory +1412.8078 Combinatorics +1412.8079 Computation and Language +1412.8081 Quantitative Methods +1412.8082 Number Theory +1412.8084 Logic +1412.8086 Networking and Internet Architecture +1412.8087 Soft Condensed Matter +1412.8088 Soft Condensed Matter +1412.8090 Information Theory +1412.8093 Computational Engineering, Finance, and Science +1412.8095 Metric Geometry +1412.8099 Information Retrieval +1412.8100 Number Theory +1412.8102 Logic in Computer Science +1412.8103 Networking and Internet Architecture +1412.8104 Networking and Internet Architecture +1412.8105 Systems and Control +1412.8106 Representation Theory +1412.8107 Networking and Internet Architecture +1412.8108 +1412.8109 Information Theory +1412.8112 Mesoscale and Nanoscale Physics +1412.8118 Information Retrieval +1412.8119 Mesoscale and Nanoscale Physics +1412.8120 Programming Languages +1412.8123 +1412.8125 Information Retrieval +1412.8126 Analysis of PDEs +1412.8129 Theory +1412.8136 Fluid Dynamics +1412.8137 Combinatorics +1412.8139 +1412.8141 Differential Geometry +1412.8142 Differential Geometry +1412.8143 Differential Geometry +1412.8146 Functional Analysis +1412.8147 Information Retrieval +1412.8149 Soft Condensed Matter +1412.8151 Analysis of PDEs +1412.8157 +1412.8158 Complex Variables +1412.8160 Cosmology and Nongalactic Astrophysics +1412.8162 Probability +1412.8164 Data Structures and Algorithms +1412.8165 Analysis of PDEs +1412.8169 Combinatorics +1412.8179 Statistical Mechanics +1412.8183 Mesoscale and Nanoscale Physics +1412.8185 Numerical Analysis +1412.8187 Geometric Topology +1412.8191 Representation Theory +1412.8193 Dynamical Systems +1412.8196 Classical Analysis and ODEs +1412.8200 Commutative Algebra +1412.8202 Biomolecules +1412.8203 Combinatorics +1412.8204 Symplectic Geometry +1412.8205 Symplectic Geometry +1412.8206 Number Theory +1412.8208 Solar and Stellar Astrophysics +1412.8210 +1412.8214 High Energy Astrophysical Phenomena +1412.8215 Combinatorics +1412.8222 Networking and Internet Architecture +1412.8223 Number Theory +1412.8225 Data Structures and Algorithms +1412.8228 Group Theory +1412.8232 +1412.8233 Representation Theory +1412.8234 Optics +1412.8241 Analysis of PDEs +1412.8248 Astrophysics of Galaxies +1412.8257 Number Theory +1412.8258 Combinatorics +1412.8259 Combinatorics +1412.8260 Number Theory +1412.8266 Distributed, Parallel, and Cluster Computing +1412.8269 Algebraic Topology +1412.8271 Complex Variables +1412.8273 Complex Variables +1412.8274 Complex Variables +1412.8278 Representation Theory +1412.8279 Numerical Analysis +1412.8281 Information Retrieval +1412.8283 Combinatorics +1412.8287 Computer Vision and Pattern Recognition +1412.8290 Fluid Dynamics +1412.8291 Neural and Evolutionary Computing +1412.8295 Metric Geometry +1412.8296 Data Structures and Algorithms +1412.8299 Distributed, Parallel, and Cluster Computing +1412.8301 Analysis of PDEs +1412.8303 Functional Analysis +1412.8306 Materials Science +1412.8309 Materials Science +1412.8310 Materials Science +1412.8311 Materials Science +1412.8317 Analysis of PDEs +1412.8321 Soft Condensed Matter +1412.8322 Theory +1412.8328 Solar and Stellar Astrophysics +1412.8329 Functional Analysis +1412.8330 Number Theory +1412.8334 Geometric Topology +1412.8337 Dynamical Systems +1412.8340 Information Theory +1412.8341 Computer Vision and Pattern Recognition +1412.8344 Information Theory +1412.8347 Data Structures and Algorithms +1412.8353 Biological Physics +1412.8354 Mesoscale and Nanoscale Physics +1412.8360 Combinatorics +1412.8364 General Physics +1412.8373 Commutative Algebra +1412.8375 Networking and Internet Architecture +1412.8379 +1412.8391 Differential Geometry +1412.8392 Analysis of PDEs +1412.8394 Differential Geometry +1412.8395 Information Theory +1412.8400 Combinatorics +1412.8402 Materials Science +1412.8405 Strongly Correlated Electrons +1412.8409 Combinatorics +1412.8415 Combinatorics +1412.8420 Digital Libraries +1412.8421 Instrumentation and Methods for Astrophysics +1412.8425 Phenomenology +1412.8428 Theory +1412.8440 Earth and Planetary Astrophysics +1412.8443 Statistical Mechanics +1412.8445 Earth and Planetary Astrophysics +1412.8446 Molecular Networks +1412.8452 Theory +1412.8453 Earth and Planetary Astrophysics +1412.8458 Probability +1412.8465 Theory +astro-ph/0610285 +gr-qc/0510051 +gr-qc/0512119 +hep-ph/0311148 Phenomenology +math-ph/0010016 +math-ph/0105034 +math-ph/0203018 +math-ph/0303001 +math-ph/0402070 +math-ph/0407017 +math-ph/0409074 +math-ph/0410062 +math-ph/0412091 +math-ph/0502044 +math-ph/9912002 +math/0208137 Combinatorics +math/0301093 Number Theory +math/0309206 Spectral Theory +math/0412515 Spectral Theory +math/0502486 Spectral Theory +math/0502487 Spectral Theory +math/0512033 Spectral Theory +math/0603573 General Mathematics +math/0605593 Spectral Theory +math/0702388 Spectral Theory +math/9912160 Functional Analysis +0902.2821 Quantum Algebra +0908.0817 +0908.1635 Quantum Algebra +0908.3498 Superconductivity +0908.3508 Materials Science +1010.5301 +1102.2252 Operator Algebras +1106.4753 Rings and Algebras +1106.6309 Strongly Correlated Electrons +1109.2672 Biological Physics +1202.4703 Functional Analysis +1203.0548 Metric Geometry +1205.3615 Analysis of PDEs +1206.3787 Exactly Solvable and Integrable Systems +1210.3275 Differential Geometry +1210.5247 Strongly Correlated Electrons +1210.6068 Operator Algebras +1211.4002 Dynamical Systems +1211.4803 Classical Analysis and ODEs +1211.7273 Mesoscale and Nanoscale Physics +1212.2089 Theory +1212.4381 +1303.5253 Theory +1304.1765 Algebraic Geometry +1305.1444 Representation Theory +1305.7504 Dynamical Systems +1306.5465 Probability +1307.1483 Physics Education +1308.0463 Phenomenology +1309.3414 Quantum Gases +1309.6748 Complex Variables +1310.2764 Probability +1310.2974 Differential Geometry +1310.5788 Combinatorics +1310.7200 +1311.2034 Plasma Physics +1311.2793 Lattice +1311.2837 Lattice +1311.3080 Lattice +1311.5057 Lattice +1312.4603 Soft Condensed Matter +1312.5678 Probability +1312.5953 Combinatorics +1312.6589 Probability +1312.6996 Artificial Intelligence +1312.7077 Computation and Language +1401.1280 +1401.2700 Geophysics +1401.6264 Information Theory +1401.6958 +1401.8184 Quantum Algebra +1402.2177 Functional Analysis +1402.6905 Mesoscale and Nanoscale Physics +1403.0736 Machine Learning +1403.1951 Formal Languages and Automata Theory +1403.2319 Logic in Computer Science +1403.3850 Commutative Algebra +1403.5712 Networking and Internet Architecture +1403.6033 Earth and Planetary Astrophysics +1403.7952 Solar and Stellar Astrophysics +1404.0167 Soft Condensed Matter +1404.0633 Mesoscale and Nanoscale Physics +1404.3565 Phenomenology +1404.3745 Combinatorics +1404.5079 Combinatorics +1404.5784 +1404.6418 Analysis of PDEs +1405.2421 Systems and Control +1405.2771 +1405.3572 +1405.3959 Theory +1405.5059 Phenomenology +1405.6242 Materials Science +1405.6486 +1405.7412 Information Theory +1406.0549 Complex Variables +1406.0765 Atomic Physics +1406.1044 +1406.4194 Solar and Stellar Astrophysics +1406.5599 Phenomenology +1406.7161 Mesoscale and Nanoscale Physics +1406.7477 Strongly Correlated Electrons +1407.0733 Computer Vision and Pattern Recognition +1407.1759 Statistical Mechanics +1407.2578 Functional Analysis +1407.3464 Theory +1407.5115 Mesoscale and Nanoscale Physics +1407.5546 Complex Variables +1407.5768 +1407.6489 Mesoscale and Nanoscale Physics +1407.6693 Biological Physics +1407.7287 Atomic Physics +1407.7348 Instrumentation and Detectors +1408.1731 Mesoscale and Nanoscale Physics +1408.2550 Analysis of PDEs +1408.3296 Theory +1408.3753 Mesoscale and Nanoscale Physics +1408.5095 Theory +1408.5505 +1409.0344 Category Theory +1409.2657 Differential Geometry +1409.2894 Optics +1409.3120 Physics and Society +1409.3509 Geometric Topology +1409.4857 Economics +1409.4998 Atomic and Molecular Clusters +1409.5069 +1409.5558 Mesoscale and Nanoscale Physics +1409.7294 Number Theory +1409.7779 Information Theory +1410.0538 +1410.0555 Machine Learning +1410.0682 Mesoscale and Nanoscale Physics +1410.0705 Other Computer Science +1410.0706 Networking and Internet Architecture +1410.0707 Distributed, Parallel, and Cluster Computing +1410.0708 +1410.0709 Databases +1410.0713 Commutative Algebra +1410.0715 K-Theory and Homology +1410.0717 Data Structures and Algorithms +1410.0727 Number Theory +1410.0732 Commutative Algebra +1410.0735 Networking and Internet Architecture +1410.0739 Probability +1410.0741 Learning +1410.0747 Combinatorics +1410.0748 Cosmology and Nongalactic Astrophysics +1410.0749 Analysis of PDEs +1410.0754 Optics +1410.0766 Combinatorics +1410.0768 Data Structures and Algorithms +1410.0771 Mesoscale and Nanoscale Physics +1410.0773 Data Structures and Algorithms +1410.0776 Algebraic Geometry +1410.0782 Networking and Internet Architecture +1410.0784 Solar and Stellar Astrophysics +1410.0787 +1410.0793 Computation +1410.0794 Optics +1410.0795 Commutative Algebra +1410.0801 Lattice +1410.0803 Fluid Dynamics +1410.0808 Operator Algebras +1410.0811 Solar and Stellar Astrophysics +1410.0813 Applications +1410.0815 Classical Analysis and ODEs +1410.0817 Probability +1410.0818 Computer Vision and Pattern Recognition +1410.0823 Optimization and Control +1410.0825 Chaotic Dynamics +1410.0826 Networking and Internet Architecture +1410.0827 Methodology +1410.0828 Physics and Society +1410.0834 Astrophysics of Galaxies +1410.0838 Materials Science +1410.0839 Metric Geometry +1410.0844 Biomolecules +1410.0848 Computational Physics +1410.0852 Risk Management +1410.0855 Data Structures and Algorithms +1410.0856 Operator Algebras +1410.0857 Algebraic Geometry +1410.0858 Materials Science +1410.0860 Machine Learning +1410.0862 Numerical Analysis +1410.0865 Cosmology and Nongalactic Astrophysics +1410.0867 Physics Education +1410.0872 Algebraic Geometry +1410.0879 Robotics +1410.0883 Lattice +1410.0888 Computational Physics +1410.0895 +1410.0896 Representation Theory +1410.0901 Algebraic Geometry +1410.0904 Category Theory +1410.0906 Classical Analysis and ODEs +1410.0907 Optics +1410.0908 Machine Learning +1410.0912 Number Theory +1410.0913 Solar and Stellar Astrophysics +1410.0918 Phenomenology +1410.0920 Analysis of PDEs +1410.0923 Algebraic Topology +1410.0926 Atmospheric and Oceanic Physics +1410.0927 Classical Analysis and ODEs +1410.0928 Phenomenology +1410.0936 Populations and Evolution +1410.0941 +1410.0948 Neural and Evolutionary Computing +1410.0953 Functional Analysis +1410.0954 Combinatorics +math/0702298 Quantum Algebra +0805.3561 Algebraic Topology +0810.0180 +0911.2116 Differential Geometry +1004.1074 Phenomenology +1005.2824 Number Theory +1007.5330 Dynamical Systems +1011.0395 Geometric Topology +1102.3565 Quantum Gases +1105.2446 +1106.3874 Combinatorics +1108.1501 Dynamical Systems +1108.4518 Algebraic Geometry +1109.5688 Cosmology and Nongalactic Astrophysics +1111.2205 Statistics Theory +1112.0103 Soft Condensed Matter +1112.0370 Dynamical Systems +1202.5735 Strongly Correlated Electrons +1203.4762 Quantum Gases +1204.6695 Category Theory +1205.3830 Distributed, Parallel, and Cluster Computing +1205.4265 Information Theory +1206.0220 +1207.4568 Differential Geometry +1208.0839 Cosmology and Nongalactic Astrophysics +1209.3741 Cosmology and Nongalactic Astrophysics +1209.3745 +1209.4222 +1209.5950 Number Theory +1209.6309 Algebraic Geometry +1210.0782 Analysis of PDEs +1211.1488 Lattice +1211.3127 Quantum Gases +1211.3214 Phenomenology +1211.4686 Statistical Finance +1211.5557 Atomic Physics +1211.7031 Quantum Gases +1212.0328 Cosmology and Nongalactic Astrophysics +1212.4929 Statistical Mechanics +1301.1632 Functional Analysis +1301.2582 Algebraic Geometry +1301.5523 Fluid Dynamics +1301.7500 +1302.0169 Plasma Physics +1302.0746 Optics +1302.4776 Information Theory +1302.5325 Probability +1303.1972 Analysis of PDEs +1303.3335 Complex Variables +1304.0500 Popular Physics +1304.1857 High Energy Astrophysical Phenomena +1304.2429 Combinatorics +1304.2982 Statistical Mechanics +1304.5461 Materials Science +1304.7304 Theory +1305.0179 Probability +1305.2102 Biological Physics +1305.3062 Number Theory +1305.4706 Atomic Physics +1305.7154 +1306.0366 Phenomenology +1306.0488 Fluid Dynamics +1306.1337 Phenomenology +1306.3612 Software Engineering +1306.4291 Functional Analysis +1306.4989 Statistical Mechanics +1306.5521 Combinatorics +1307.1896 +1307.2848 +1307.3429 Materials Science +1307.3742 Mesoscale and Nanoscale Physics +1307.4451 Cosmology and Nongalactic Astrophysics +1307.4483 Mesoscale and Nanoscale Physics +1307.4694 Optics +1307.4998 Disordered Systems and Neural Networks +1307.5717 Cosmology and Nongalactic Astrophysics +1307.5992 Statistics Theory +1307.6064 Fluid Dynamics +1307.6650 Quantum Gases +1307.6926 +1307.7044 Mesoscale and Nanoscale Physics +1308.1541 Plasma Physics +1308.3588 +1308.3704 Cosmology and Nongalactic Astrophysics +1309.0010 Phenomenology +1309.1542 Networking and Internet Architecture +1309.2027 +1309.2223 Cosmology and Nongalactic Astrophysics +1309.2570 Phenomenology +1309.3310 +1309.3610 Theory +1309.4149 Lattice +1309.4424 +1309.4509 Mesoscale and Nanoscale Physics +1309.5736 Phenomenology +1309.6445 Mesoscale and Nanoscale Physics +1309.6640 Phenomenology +1310.0063 Systems and Control +1310.0630 +1310.0931 Phenomenology +1310.0967 Computational Complexity +1310.1458 Theory +1310.1652 +1310.2263 Strongly Correlated Electrons +1310.2770 Cosmology and Nongalactic Astrophysics +1310.3059 Phenomenology +1310.3846 +1310.4705 Quantum Algebra +1310.5028 Phenomenology +1310.5950 Theory +1310.6371 Strongly Correlated Electrons +1310.6472 Phenomenology +1310.7876 Lattice +1310.7900 +1310.8305 Mesoscale and Nanoscale Physics +1310.8345 Theory +1310.8522 Combinatorics +1311.0314 Numerical Analysis +1311.0327 Commutative Algebra +1311.0908 Mesoscale and Nanoscale Physics +1311.0992 Optics +1311.1173 Phenomenology +1311.1445 Optics +1311.1656 +1311.2317 Mesoscale and Nanoscale Physics +1311.2328 +1311.3307 Theory +1311.3595 Phenomenology +1311.3754 Phenomenology +1311.4173 Theory +1311.4468 Learning +1311.4496 Phenomenology +1311.4630 +1311.4655 Numerical Analysis +1311.4765 Cosmology and Nongalactic Astrophysics +1311.5170 Analysis of PDEs +1311.5220 Systems and Control +1311.5303 Medical Physics +1311.5477 Cosmology and Nongalactic Astrophysics +1311.6499 Plasma Physics +1311.7026 Classical Analysis and ODEs +1311.7048 High Energy Astrophysical Phenomena +1311.7143 Theory +1312.0013 Phenomenology +1312.0366 Phenomenology +1312.0870 Strongly Correlated Electrons +1312.1179 Lattice +1312.1184 +1312.1394 Dynamical Systems +1312.1405 Theory +1312.2250 +1312.2721 Phenomenology +1312.2796 Phenomenology +1312.2854 Mesoscale and Nanoscale Physics +1312.3056 +1312.3820 +1312.4268 Phenomenology +1312.4274 +1312.4476 Social and Information Networks +1312.4956 Phenomenology +1312.5576 Theory +1312.5644 Theory +1312.7153 +1312.7325 Disordered Systems and Neural Networks +1312.7399 Mesoscale and Nanoscale Physics +1312.7698 Functional Analysis +1312.7877 Instrumentation and Methods for Astrophysics +1401.0520 Quantum Gases +1401.0623 Soft Condensed Matter +1401.0657 +1401.0713 Phenomenology +1401.0958 Mesoscale and Nanoscale Physics +1401.1197 Theory +1401.1600 +1401.1751 Disordered Systems and Neural Networks +1401.1775 Phenomenology +1401.2237 Quantum Gases +1401.2284 Atomic Physics +1401.2839 Theory +1401.2953 Other Condensed Matter +1401.4402 Cosmology and Nongalactic Astrophysics +1401.4548 +1401.4704 General Finance +1401.5358 +1401.5575 Mesoscale and Nanoscale Physics +1401.6435 +1401.6704 Phenomenology +1401.7754 Phenomenology +1401.7993 Theory +1402.0688 Optics +1402.0876 Phenomenology +1402.1043 Phenomenology +1402.1355 Statistical Mechanics +1402.2528 Phenomenology +1402.4847 Materials Science +1402.6121 Pattern Formation and Solitons +1403.0091 Materials Science +1403.1030 Plasma Physics +1403.3353 +1403.4514 Optimization and Control +1403.4637 Networking and Internet Architecture +1403.6409 Computer Science and Game Theory +1403.7548 Applications +1403.7650 Materials Science +1403.7941 Materials Science +1403.7963 Materials Science +1403.7968 Classical Analysis and ODEs +1403.8025 Differential Geometry +1404.0001 +1404.0002 Symbolic Computation +1404.0003 Networking and Internet Architecture +1404.0020 Materials Science +1404.0021 Combinatorics +1404.0027 Computational Engineering, Finance, and Science +1404.0036 +1404.0038 Probability +1404.0040 Phenomenology +1404.0042 Computation +1404.0045 Representation Theory +1404.0046 Databases +1404.0055 +1404.0059 Plasma Physics +1404.0062 Information Theory +1404.0064 Functional Analysis +1404.0067 Physics and Society +1404.0070 History and Overview +1404.0071 +1404.0073 Programming Languages +1404.0074 +1404.0075 Computational Complexity +1404.0076 Programming Languages +1404.0077 Computational Complexity +1404.0078 Data Structures and Algorithms +1404.0079 Logic in Computer Science +1404.0080 Logic in Computer Science +1404.0081 Logic in Computer Science +1404.0082 Logic in Computer Science +1404.0083 Discrete Mathematics +1404.0084 Programming Languages +1404.0085 Programming Languages +1404.0086 Computer Science and Game Theory +1404.0087 Logic in Computer Science +1404.0088 Operating Systems +1404.0089 Programming Languages +1404.0093 Number Theory +1404.0095 +1404.0099 Artificial Intelligence +1404.0101 Networking and Internet Architecture +1404.0103 Social and Information Networks +1404.0104 Optics +1404.0106 Computer Vision and Pattern Recognition +1404.0110 Combinatorics +1404.0111 Commutative Algebra +1404.0114 Number Theory +1404.0116 Probability +1404.0119 Computational Geometry +1404.0124 Instrumentation and Detectors +1404.0135 Rings and Algebras +1404.0138 Learning +1404.0139 Functional Analysis +1404.0141 Differential Geometry +1404.0142 Information Theory +1404.0144 Logic in Computer Science +1404.0148 High Energy Astrophysical Phenomena +1404.0149 +1404.0151 Combinatorics +1404.0154 Combinatorics +1404.0155 Classical Analysis and ODEs +1404.0158 Other Computer Science +1404.0159 +1404.0161 Commutative Algebra +1404.0162 Mesoscale and Nanoscale Physics +1404.0163 Social and Information Networks +1404.0164 Superconductivity +1404.0168 Cosmology and Nongalactic Astrophysics +1404.0173 Information Theory +1404.0177 Complex Variables +1404.0181 +1404.0185 Mesoscale and Nanoscale Physics +1404.0186 Phenomenology +1404.0187 Number Theory +1404.0189 Optimization and Control +1404.0192 Spectral Theory +1404.0197 +1404.0200 Learning +1404.0201 Experiment +1404.0205 Statistical Mechanics +1404.0222 Phenomenology +1404.0227 Number Theory +1404.0228 +1404.0231 Networking and Internet Architecture +1404.0233 Mesoscale and Nanoscale Physics +1404.0240 Neurons and Cognition +1404.0241 Functional Analysis +1404.0245 General Physics +1404.0246 Dynamical Systems +1404.0250 Classical Physics +1404.0255 Information Theory +1404.0261 Computational Geometry +1404.0263 Functional Analysis +1404.0264 Materials Science +1404.0265 Information Theory +1404.0267 Physics and Society +1404.0274 +1404.0278 Materials Science +1404.0279 Algebraic Geometry +1404.0280 Phenomenology +1404.0286 Data Structures and Algorithms +1404.0290 Populations and Evolution +1404.0296 Emerging Technologies +1404.0297 Logic in Computer Science +1404.0299 +1404.0302 Classical Analysis and ODEs +1404.0307 Biomolecules +1404.0308 Algebraic Geometry +1404.0310 Materials Science +1404.0312 Fluid Dynamics +1404.0317 Mesoscale and Nanoscale Physics +1404.0320 Information Theory +1404.0321 Data Structures and Algorithms +1404.0325 Probability +1404.0330 Astrophysics of Galaxies +1404.0331 Geometric Topology +1404.0332 Theory +1404.0338 Optimization and Control +1404.0340 Computational Finance +1404.0341 History and Overview +1404.0346 Information Theory +1404.0349 Accelerator Physics +1404.0352 Algebraic Geometry +1404.0361 Dynamical Systems +1404.0363 Chemical Physics +1404.0364 Analysis of PDEs +1404.0365 Phenomenology +1404.0368 Materials Science +cond-mat/0506092 Statistical Mechanics +math/0201292 Geometric Topology +math/0306215 Combinatorics +math/0306227 Algebraic Geometry +math/0306250 Algebraic Topology +math/0309158 Algebraic Geometry +math/0408012 Algebraic Topology +math/0411588 Algebraic Geometry +math/0502469 Geometric Topology +quant-ph/0208053 +0704.1533 Operator Algebras +0708.3897 Optimization and Control +0801.3993 +0807.4552 +0810.3608 +0901.3374 Group Theory +0901.3376 Group Theory +0906.2000 +0908.2078 +0912.1607 +1002.0499 +1002.1120 Theory +1006.0764 Computation +1006.5653 Combinatorics +1107.5120 Cosmology and Nongalactic Astrophysics +1108.1148 General Physics +1108.4073 +1109.0431 Mesoscale and Nanoscale Physics +1109.5937 +1110.2606 Strongly Correlated Electrons +1111.6008 Symplectic Geometry +1112.4535 Number Theory +1201.5669 Representation Theory +1202.0160 Plasma Physics +1203.1843 Complex Variables +1203.5496 Metric Geometry +1204.0833 Formal Languages and Automata Theory +1206.3070 Analysis of PDEs +1206.5572 Optimization and Control +1206.6379 +1208.1283 Formal Languages and Automata Theory +1208.2061 History and Philosophy of Physics +1208.3239 Algebraic Geometry +1208.5714 +1210.0644 +1210.6359 Analysis of PDEs +1302.0396 Strongly Correlated Electrons +1302.5967 Combinatorics +1303.1136 Discrete Mathematics +1303.3536 Materials Science +1303.5006 +1304.0337 Strongly Correlated Electrons +1305.3394 Algebraic Geometry +1305.5069 Mesoscale and Nanoscale Physics +1306.2129 Algebraic Geometry +1306.4955 Theory +1307.5782 +1307.6667 Materials Science +1308.3781 Physics and Society +1309.0831 Phenomenology +1309.0972 Metric Geometry +1309.2975 Genomics +1309.6945 Analysis of PDEs +1309.7121 Algebraic Geometry +1310.0202 Materials Science +1310.0504 Formal Languages and Automata Theory +1310.6709 Materials Science +1310.7656 Operator Algebras +1310.7865 Genomics +1310.8031 Analysis of PDEs +1311.2641 +1312.1695 +1312.3684 Cosmology and Nongalactic Astrophysics +1312.7752 Differential Geometry +1401.3497 Atomic Physics +1401.3796 Probability +1401.3949 Phenomenology +1401.4555 Mesoscale and Nanoscale Physics +1401.5563 Cosmology and Nongalactic Astrophysics +1401.5615 Cosmology and Nongalactic Astrophysics +1401.6066 +1401.8192 Computational Engineering, Finance, and Science +1402.0836 Adaptation and Self-Organizing Systems +1402.2423 +1402.4487 Quantum Gases +1402.5603 Phenomenology +1402.5751 Strongly Correlated Electrons +1402.6567 +1403.0122 Mesoscale and Nanoscale Physics +1403.0941 Cosmology and Nongalactic Astrophysics +1403.2450 Phenomenology +1403.3966 +1403.4196 Populations and Evolution +1403.5001 Cryptography and Security +1403.5129 +1403.5201 Metric Geometry +1403.7354 Probability +1404.1682 Computer Vision and Pattern Recognition +1404.1693 Strongly Correlated Electrons +1404.3321 Distributed, Parallel, and Cluster Computing +1404.3563 Instrumentation and Detectors +1404.4117 Soft Condensed Matter +1404.4986 Theory +1405.1954 Atomic Physics +1405.4148 +1405.4443 +1405.4444 Number Theory +1405.4566 Phenomenology +1405.5112 Soft Condensed Matter +1405.5375 Plasma Physics +1405.5625 +1405.5747 Networking and Internet Architecture +1405.6260 Computational Geometry +1405.6694 +1405.7190 Number Theory +1405.7465 Cosmology and Nongalactic Astrophysics +1406.1096 +1406.1614 Fluid Dynamics +1406.3627 Instrumentation and Methods for Astrophysics +1407.5508 Instrumentation and Detectors +1407.5552 Number Theory +1407.5766 Combinatorics +1407.6660 Instrumentation and Methods for Astrophysics +1407.6669 Instrumentation and Methods for Astrophysics +1407.7120 Functional Analysis +1407.8476 Computational Engineering, Finance, and Science +1408.0367 Theory +1408.0784 Cryptography and Security +1408.0889 Computational Engineering, Finance, and Science +1408.0909 Number Theory +1408.1087 Networking and Internet Architecture +1408.1089 Solar and Stellar Astrophysics +1408.1090 Astrophysics of Galaxies +1408.1094 Strongly Correlated Electrons +1408.1101 +1408.1108 Probability +1408.1110 Robotics +1408.1111 Number Theory +1408.1112 Solar and Stellar Astrophysics +1408.1117 Functional Analysis +1408.1118 Graphics +1408.1121 Logic +1408.1122 Mesoscale and Nanoscale Physics +1408.1126 Materials Science +1408.1127 Distributed, Parallel, and Cluster Computing +1408.1132 Instrumentation and Methods for Astrophysics +1408.1135 Computer Vision and Pattern Recognition +1408.1138 Complex Variables +1408.1140 Dynamical Systems +1408.1145 Classical Analysis and ODEs +1408.1146 Plasma Physics +1408.1149 Methodology +1408.1150 Software Engineering +1408.1152 Optimization and Control +1408.1153 +1408.1154 Probability +1408.1155 Combinatorics +1408.1157 Phenomenology +1408.1160 Machine Learning +1408.1162 Machine Learning +1408.1167 Learning +1408.1170 Operator Algebras +1408.1172 Operator Algebras +1408.1173 Human-Computer Interaction +1408.1177 Molecular Networks +1408.1178 Operator Algebras +1408.1179 Information Theory +1408.1180 Information Theory +1408.1181 Combinatorics +1408.1184 Plasma Physics +1408.1187 Methodology +1408.1188 Classical Analysis and ODEs +1408.1201 Computers and Society +1408.1202 Logic +1408.1204 Optics +1408.1209 Social and Information Networks +1408.1210 Representation Theory +1408.1211 Computer Science and Game Theory +1408.1217 Instrumentation and Methods for Astrophysics +1408.1219 Materials Science +1408.1220 Numerical Analysis +1408.1226 Mesoscale and Nanoscale Physics +1408.1227 +1408.1232 Experiment +1408.1237 Numerical Analysis +1408.1240 Theory +1408.1242 Functional Analysis +1408.1244 Number Theory +1408.1248 Number Theory +1408.1250 +1408.1257 Probability +1408.1259 Analysis of PDEs +1408.1260 Information Retrieval +1408.1261 Algebraic Geometry +1408.1264 +1408.1265 Data Structures and Algorithms +1408.1267 Algebraic Geometry +1408.1268 Systems and Control +1408.1269 Functional Analysis +1408.1271 Logic in Computer Science +1408.1277 Superconductivity +1408.1280 General Physics +1408.1283 Combinatorics +1408.1284 Information Theory +1408.1286 Numerical Analysis +1408.1287 Fluid Dynamics +1408.1290 Physics and Society +1408.1295 Information Theory +1408.1296 Probability +1408.1297 Neural and Evolutionary Computing +1408.1300 Analysis of PDEs +1408.1301 Classical Analysis and ODEs +1408.1302 Instrumentation and Detectors +1408.1310 Information Theory +1408.1311 Phenomenology +1408.1319 Machine Learning +1408.1325 Genomics +1408.1328 Algebraic Geometry +1408.1329 Quantum Algebra +1408.1332 Probability +1408.1334 Number Theory +1408.1337 Dynamical Systems +1408.1340 Computational Geometry +1408.1342 Category Theory +1408.1352 General Finance +1408.1353 Experiment +1408.1354 Atomic Physics +1408.1355 +1408.1358 Networking and Internet Architecture +1408.1361 Physics and Society +1408.1362 Other Computer Science +1408.1363 Mathematical Software +1408.1365 Physics and Society +1408.1369 +1408.1377 Logic in Computer Science +1408.1378 Materials Science +hep-th/9512156 Theory +math-ph/0209059 +math/0505212 Analysis of PDEs +math/0602212 Operator Algebras +math/0609729 Analysis of PDEs +quant-ph/0211030 +0711.3942 Materials Science +0712.2533 Algebraic Topology +1005.5451 Materials Science +1103.4645 Numerical Analysis +1105.1816 +1110.4089 Functional Analysis +1110.6781 Mesoscale and Nanoscale Physics +1112.0531 Dynamical Systems +1112.2962 Information Theory +1112.4830 Classical Analysis and ODEs +1205.4562 Probability +1207.0861 Soft Condensed Matter +1207.4990 Functional Analysis +1208.0147 Dynamical Systems +1211.4021 +1212.2398 Instrumentation and Methods for Astrophysics +1212.6702 +1301.6778 Numerical Analysis +1304.2532 +1305.1225 Physics Education +1305.5963 Probability +1307.1213 +1307.5333 Number Theory +1307.5665 Numerical Analysis +1308.0111 Algebraic Geometry +1309.0120 Analysis of PDEs +1309.1618 Instrumentation and Detectors +1309.3495 Mesoscale and Nanoscale Physics +1310.0651 Analysis of PDEs +1310.2336 Probability +1310.8530 +1311.7283 Distributed, Parallel, and Cluster Computing +1312.0261 Atomic Physics +1312.3018 Distributed, Parallel, and Cluster Computing +1312.5754 Mesoscale and Nanoscale Physics +1401.4248 Systems and Control +1401.7626 Pattern Formation and Solitons +1402.1187 Phenomenology +1402.4733 Probability +1403.2282 Statistical Mechanics +1403.6304 Methodology +1403.6340 +1403.6557 Phenomenology +1403.7117 Astrophysics of Galaxies +1404.0876 +1404.3358 Materials Science +1404.3368 Learning +1404.6380 Algebraic Geometry +1404.6820 Spectral Theory +1404.7467 Information Retrieval +1405.0815 Probability +1405.0870 Materials Science +1405.2315 Statistical Mechanics +1405.3961 Experiment +1405.7126 Rings and Algebras +1406.3010 Learning +1406.4573 Populations and Evolution +1406.6666 Combinatorics +1406.7324 Exactly Solvable and Integrable Systems +1406.7336 Theory +1407.0180 Mesoscale and Nanoscale Physics +1407.2233 Lattice +1407.2439 Mesoscale and Nanoscale Physics +1408.0253 Symplectic Geometry +1408.0476 Quantum Gases +1408.0524 +1408.1003 Mesoscale and Nanoscale Physics +1408.5845 Distributed, Parallel, and Cluster Computing +1408.6231 Superconductivity +1409.0852 Optics +1409.1290 Mesoscale and Nanoscale Physics +1409.1374 Statistical Mechanics +1409.3572 Astrophysics of Galaxies +1409.3647 Superconductivity +1409.3679 +1409.4309 Algebraic Geometry +1409.7339 Experiment +1410.0065 Materials Science +1410.0143 +1410.0550 +1410.0800 +1410.0965 Phenomenology +1410.0970 Atomic Physics +1410.1686 Adaptation and Self-Organizing Systems +1410.2185 Statistical Mechanics +1410.4674 Phenomenology +1410.7454 Computer Vision and Pattern Recognition +1410.7914 +1410.8278 Rings and Algebras +1410.8625 Optimization and Control +1411.0529 Materials Science +1411.1271 Disordered Systems and Neural Networks +1411.1490 Learning +1411.6972 Exactly Solvable and Integrable Systems +1411.7306 Group Theory +1411.7468 Quantitative Methods +1411.7475 Cosmology and Nongalactic Astrophysics +1412.0864 Computational Complexity +1412.1007 Mesoscale and Nanoscale Physics +1412.1693 Physics Education +1412.1800 General Topology +1412.1806 Phenomenology +1412.1827 Instrumentation and Methods for Astrophysics +1412.1838 Combinatorics +1412.1842 Computer Vision and Pattern Recognition +1412.1843 Applications +1412.1844 Optimization and Control +1412.1855 Group Theory +1412.1857 Optimization and Control +1412.1858 Solar and Stellar Astrophysics +1412.1865 Plasma Physics +1412.1868 Optimization and Control +1412.1871 Algebraic Topology +1412.1876 Group Theory +1412.1881 Classical Physics +1412.1882 Chemical Physics +1412.1887 Mesoscale and Nanoscale Physics +1412.1888 Information Retrieval +1412.1889 +1412.1893 Mesoscale and Nanoscale Physics +1412.1900 Data Analysis, Statistics and Probability +1412.1902 Mesoscale and Nanoscale Physics +1412.1903 Analysis of PDEs +1412.1905 Geometric Topology +1412.1908 Computer Vision and Pattern Recognition +1412.1910 Exactly Solvable and Integrable Systems +1412.1913 Artificial Intelligence +1412.1914 Methodology +1412.1915 Applications +1412.1918 Operator Algebras +1412.1920 Methodology +1412.1922 Applications +1412.1924 Plasma Physics +1412.1925 Analysis of PDEs +1412.1927 Machine Learning +1412.1928 +1412.1930 High Energy Astrophysical Phenomena +1412.1932 Analysis of PDEs +1412.1934 +1412.1935 Mesoscale and Nanoscale Physics +1412.1946 Mesoscale and Nanoscale Physics +1412.1947 Learning +1412.1950 Number Theory +1412.1952 Systems and Control +1412.1957 Computer Vision and Pattern Recognition +1412.1959 Numerical Analysis +1412.1960 Biological Physics +1412.1961 Robotics +1412.1962 Strongly Correlated Electrons +1412.1963 Functional Analysis +1412.1970 Analysis of PDEs +1412.1972 Probability +1412.1975 General Topology +1412.1979 Metric Geometry +1412.1981 Algebraic Topology +1412.1982 Materials Science +1412.1985 Classical Physics +1412.1986 Analysis of PDEs +1412.1987 Earth and Planetary Astrophysics +1412.1989 Phenomenology +1412.1990 Social and Information Networks +1412.1991 Mathematical Finance +1412.1994 Metric Geometry +1412.1998 Operator Algebras +1412.2000 Classical Analysis and ODEs +1412.2004 +1412.2008 Space Physics +1412.2010 Disordered Systems and Neural Networks +1412.2012 Materials Science +1412.2013 Networking and Internet Architecture +1412.2015 Solar and Stellar Astrophysics +1412.2018 Dynamical Systems +1412.2028 High Energy Astrophysical Phenomena +1412.2029 Number Theory +1412.2031 Materials Science +1412.2035 Combinatorics +1412.2036 Phenomenology +1412.2041 Methodology +1412.2046 +1412.2048 Methodology +1412.2052 Solar and Stellar Astrophysics +1412.2055 Fluid Dynamics +1412.2056 Optics +1412.2058 Chaotic Dynamics +1412.2059 Theory +1412.2060 History and Philosophy of Physics +1412.2062 Computer Science and Game Theory +1412.2064 Systems and Control +1412.2065 Solar and Stellar Astrophysics +1412.2067 Computer Vision and Pattern Recognition +1412.2068 Analysis of PDEs +1412.2070 Computers and Society +1412.2071 Solar and Stellar Astrophysics +1412.2073 Logic +1412.2075 Combinatorics +1412.2076 High Energy Astrophysical Phenomena +1412.2077 +1412.2078 Computers and Society +1412.2081 Combinatorics +1412.2083 Materials Science +1412.2087 Information Theory +1412.2089 Group Theory +1412.2091 Combinatorics +1412.2095 Functional Analysis +1412.2098 Numerical Analysis +1412.2101 High Energy Astrophysical Phenomena +1412.2103 Optimization and Control +1412.2106 Learning +1412.2108 Lattice +1412.2110 Populations and Evolution +1412.2111 Experiment +1412.2114 Artificial Intelligence +1412.2115 Computers and Society +1412.2123 Distributed, Parallel, and Cluster Computing +1412.2128 Optimization and Control +cond-mat/0611320 Mesoscale and Nanoscale Physics +0906.1796 +1008.2656 Earth and Planetary Astrophysics +1010.1114 Materials Science +1010.5485 Combinatorics +1011.2129 Classical Analysis and ODEs +1103.1485 Algebraic Geometry +1104.2408 Earth and Planetary Astrophysics +1105.4017 Group Theory +1107.3844 Earth and Planetary Astrophysics +1109.2904 Theory +1109.5999 Dynamical Systems +1110.4639 Theory +1111.3808 Analysis of PDEs +1112.0955 Metric Geometry +1203.5699 Lattice +1207.2902 Numerical Analysis +1207.6950 Applications +1208.1721 Statistical Mechanics +1208.4800 Phenomenology +1208.4989 Methodology +1208.5241 Analysis of PDEs +1209.0089 Data Analysis, Statistics and Probability +1209.5218 Neural and Evolutionary Computing +1209.5613 Analysis of PDEs +1210.7928 Phenomenology +1211.6345 Earth and Planetary Astrophysics +1211.6821 Systems and Control +1212.1320 Dynamical Systems +1212.4249 Algebraic Geometry +1212.4469 Classical Physics +1301.1081 Materials Science +1301.1516 Earth and Planetary Astrophysics +1301.4006 Numerical Analysis +1302.1479 History and Overview +1302.3039 Spectral Theory +1302.3761 High Energy Astrophysical Phenomena +1302.5617 Quantum Gases +1302.6765 Theory +1302.7244 Theory +1303.0191 Applications +1303.0200 Phenomenology +1303.1609 Information Theory +1303.7095 Mesoscale and Nanoscale Physics +1304.0938 Atmospheric and Oceanic Physics +1304.1792 Mesoscale and Nanoscale Physics +1304.3773 Phenomenology +1304.4456 +1304.5586 Optimization and Control +1304.5596 Mesoscale and Nanoscale Physics +1304.6932 Astrophysics of Galaxies +1305.3694 Information Theory +1305.3875 Superconductivity +1305.5128 Combinatorics +1305.5598 Atomic Physics +1305.7330 Earth and Planetary Astrophysics +1306.2616 Geometric Topology +1306.2725 Discrete Mathematics +1306.3293 Digital Libraries +1306.5089 Logic in Computer Science +1306.5671 Strongly Correlated Electrons +1306.5859 Metric Geometry +1307.0014 +1307.3245 Superconductivity +1307.4007 Information Theory +1307.5157 Combinatorics +1307.5804 Strongly Correlated Electrons +1307.6417 Applications +1307.8065 Analysis of PDEs +1308.0298 Number Theory +1308.0588 Mesoscale and Nanoscale Physics +1308.2146 +1308.3116 Phenomenology +1308.3117 +1308.3469 Probability +1308.4661 Algebraic Geometry +1308.5135 Disordered Systems and Neural Networks +1308.5305 Materials Science +1308.6493 Phenomenology +1308.6538 Chemical Physics +1309.5060 Chemical Physics +1309.5949 High Energy Astrophysical Phenomena +1309.6150 Solar and Stellar Astrophysics +1309.7366 Cryptography and Security +1309.7553 Superconductivity +1309.7627 Functional Analysis +1310.0964 +1310.3296 Statistical Mechanics +1310.4723 Analysis of PDEs +1310.5830 Superconductivity +1310.5977 Fluid Dynamics +1310.6555 Digital Libraries +1310.7132 Phenomenology +1310.7465 Phenomenology +1310.7545 Phenomenology +1310.8361 Experiment +1311.0050 Molecular Networks +1311.1514 Cosmology and Nongalactic Astrophysics +1311.1979 Mesoscale and Nanoscale Physics +1311.2556 Instrumentation and Detectors +1311.5767 Materials Science +1311.6718 Networking and Internet Architecture +1311.6726 Phenomenology +1311.6744 Operator Algebras +1311.6774 Instrumentation and Detectors +1311.7629 Group Theory +1312.1321 Astrophysics of Galaxies +1312.1978 Chaotic Dynamics +1312.4090 Optics +1312.5651 Earth and Planetary Astrophysics +1312.6438 Combinatorics +1312.6543 +1401.0866 +1401.0882 Logic +1401.0907 Soft Condensed Matter +1401.0942 Machine Learning +1401.0996 Theory +1401.1154 Numerical Analysis +1401.1163 Networking and Internet Architecture +1401.1265 Astrophysics of Galaxies +1401.1459 Quantum Algebra +1401.1498 Plasma Physics +1401.1509 Dynamical Systems +1401.1513 Information Theory +1401.1514 Number Theory +1401.1519 Analysis of PDEs +1401.1528 High Energy Astrophysical Phenomena +1401.1530 Probability +1401.1532 Combinatorics +1401.1534 Analysis of PDEs +1401.1537 Algebraic Geometry +1401.1541 Discrete Mathematics +1401.1545 Optimization and Control +1401.1553 Probability +1401.1554 Lattice +1401.1555 Probability +1401.1556 Probability +1401.1558 Differential Geometry +1401.1559 Computer Science and Game Theory +1401.1565 Geometric Topology +1401.1566 Statistical Mechanics +1401.1568 Physics and Society +1401.1569 Geometric Topology +1401.1570 Logic +1401.1571 Commutative Algebra +1401.1572 Chemical Physics +1401.1573 Computer Science and Game Theory +1401.1577 Systems and Control +1401.1579 Pattern Formation and Solitons +1401.1580 Systems and Control +1401.1583 Algebraic Topology +1401.1584 Cosmology and Nongalactic Astrophysics +1401.1585 Materials Science +1401.1588 Algebraic Geometry +1401.1592 Soft Condensed Matter +1401.1594 Functional Analysis +1401.1596 Combinatorics +1401.1598 Combinatorics +1401.1601 High Energy Astrophysical Phenomena +1401.1603 Medical Physics +1401.1604 Instrumentation and Methods for Astrophysics +1401.1606 Algebraic Geometry +1401.1608 Applications +1401.1610 Computational Finance +1401.1611 Dynamical Systems +1401.1612 Materials Science +1401.1613 Algebraic Geometry +1401.1614 Differential Geometry +1401.1616 Dynamical Systems +1401.1620 Algebraic Geometry +1401.1621 Soft Condensed Matter +1401.1622 Mesoscale and Nanoscale Physics +1401.1624 +1401.1629 Soft Condensed Matter +1401.1631 Applications +1401.1632 Systems and Control +1401.1635 Materials Science +1401.1639 Portfolio Management +1401.1640 Applications +1401.1643 Cosmology and Nongalactic Astrophysics +1401.1649 Functional Analysis +1401.1650 Materials Science +1401.1655 Mesoscale and Nanoscale Physics +1401.1658 Materials Science +1401.1660 Computational Physics +1401.1661 Optics +1401.1663 Applications +1401.1668 Soft Condensed Matter +1401.1671 Networking and Internet Architecture +1401.1673 Optimization and Control +1401.1674 Statistics Theory +1401.1677 Optics +1401.1683 Applications +1401.1685 +1401.1686 Multiagent Systems +1401.1689 Applications +1401.1690 Human-Computer Interaction +1401.1693 Logic in Computer Science +1401.1694 Solar and Stellar Astrophysics +1401.1695 Soft Condensed Matter +1401.1696 Soft Condensed Matter +1401.1698 +1401.1699 Atomic Physics +1401.1700 Combinatorics +1401.1701 Applications +1401.1703 Classical Analysis and ODEs +1401.1706 Applications +1401.1709 Functional Analysis +1401.1710 Analysis of PDEs +1401.1717 Number Theory +1401.1719 Instrumentation and Methods for Astrophysics +1401.1720 Classical Physics +1401.1721 Solar and Stellar Astrophysics +1401.1732 Information Retrieval +1401.1734 Logic +1401.1735 Phenomenology +1401.1736 Computational Physics +1401.1739 Solar and Stellar Astrophysics +1401.1742 Computer Vision and Pattern Recognition +1401.1745 Combinatorics +1401.1752 Human-Computer Interaction +1401.1754 Numerical Analysis +1401.1758 +1401.1770 Networking and Internet Architecture +1401.1771 Data Structures and Algorithms +1401.1774 Representation Theory +1401.1776 Differential Geometry +1401.1778 Computer Vision and Pattern Recognition +1401.1780 Number Theory +1401.1783 Networking and Internet Architecture +1401.1786 Statistical Mechanics +1401.1789 Optimization and Control +1401.1792 Optimization and Control +1401.1793 Combinatorics +1401.1797 +1401.1799 Combinatorics +1401.1800 History and Philosophy of Physics +1401.1803 Computation and Language +1401.1807 Cosmology and Nongalactic Astrophysics +cond-mat/0311511 Superconductivity +math/9904148 Symplectic Geometry +quant-ph/0210207 +0810.0633 Rings and Algebras +0810.1509 Group Theory +0811.3219 Number Theory +0812.1803 Algebraic Geometry +0902.4363 History and Overview +0906.2261 Combinatorics +0906.4455 Quantum Gases +0906.5059 Representation Theory +0909.4004 Discrete Mathematics +0910.0079 Combinatorics +0912.0837 +0912.0878 Discrete Mathematics +0912.0924 Group Theory +0912.4524 Mesoscale and Nanoscale Physics +1001.0461 Combinatorics +1001.1285 +1004.3346 General Physics +1007.1199 Representation Theory +1007.2177 Probability +1007.3807 Combinatorics +1008.1143 Instrumentation and Detectors +1008.2732 Statistics Theory +1010.4497 Combinatorics +1010.4678 Combinatorics +1012.2721 Chaotic Dynamics +1102.0268 Logic +1106.2363 Statistics Theory +1107.0864 Statistics Theory +1109.4533 Applications +1110.1436 Risk Management +1110.2306 Machine Learning +1110.6711 Cosmology and Nongalactic Astrophysics +1112.5073 Algebraic Geometry +1112.5687 Risk Management +1202.0107 Cosmology and Nongalactic Astrophysics +1202.2097 Computer Science and Game Theory +1203.2136 Rings and Algebras +1203.3606 Combinatorics +1204.0230 Mesoscale and Nanoscale Physics +1206.4312 Phenomenology +1207.0386 Quantum Gases +1207.0453 Group Theory +1208.2145 Theory +1208.4924 +1208.5018 Computational Geometry +1209.5279 Superconductivity +1210.1629 Group Theory +1210.7284 Statistical Mechanics +1210.7662 Populations and Evolution +1211.0763 Differential Geometry +1212.5246 Theory +1212.6945 Cosmology and Nongalactic Astrophysics +1302.0386 Robotics +1302.1367 Operator Algebras +1302.2350 Algebraic Geometry +1302.3402 Mesoscale and Nanoscale Physics +1302.7007 Emerging Technologies +1303.0241 Analysis of PDEs +1303.1890 Dynamical Systems +1303.6235 Functional Analysis +1303.6956 Superconductivity +1303.6974 Optics +1304.2095 Number Theory +1304.6630 Algebraic Geometry +1304.7042 Cosmology and Nongalactic Astrophysics +1304.8130 Lattice +1305.0831 Theory +1305.1616 Mesoscale and Nanoscale Physics +1305.4411 Quantum Gases +1306.0230 Mesoscale and Nanoscale Physics +1306.2491 Optimization and Control +1306.3886 +1307.0393 Algebraic Geometry +1307.0448 Strongly Correlated Electrons +1307.0923 Strongly Correlated Electrons +1307.2436 Probability +1307.2828 Combinatorics +1307.3618 Mesoscale and Nanoscale Physics +1307.4272 Combinatorics +1307.4668 Mesoscale and Nanoscale Physics +1307.5064 Phenomenology +1307.6298 Cosmology and Nongalactic Astrophysics +1307.7110 Theory +1307.7197 Phenomenology +1307.7448 Cosmology and Nongalactic Astrophysics +1308.0957 Superconductivity +1308.1639 Number Theory +1308.2746 +1308.4685 +1308.4704 +1308.5216 Strongly Correlated Electrons +1308.5995 +1308.6475 Distributed, Parallel, and Cluster Computing +1309.0350 Complex Variables +1309.1145 Phenomenology +1309.1938 Quantum Gases +1309.2063 Phenomenology +1309.2281 Theory +1309.2666 Geometric Topology +1309.2890 Group Theory +1309.3901 Information Theory +1309.3906 Materials Science +1309.4715 Theory +1309.4738 Phenomenology +1309.4774 Cosmology and Nongalactic Astrophysics +1309.6547 Cosmology and Nongalactic Astrophysics +1309.6986 Phenomenology +1310.0929 Strongly Correlated Electrons +1310.2007 Theory +1310.2509 Theory +1310.2669 Atomic Physics +1310.3085 Information Theory +1310.3278 Cosmology and Nongalactic Astrophysics +1310.3288 +1310.3491 Superconductivity +1310.3918 +1310.4097 Phenomenology +1310.4272 Superconductivity +1310.4377 Data Analysis, Statistics and Probability +1310.4472 Superconductivity +1310.4827 Phenomenology +1310.5415 Machine Learning +1310.5720 Physics and Society +1310.6287 +1310.6921 Combinatorics +1310.7347 Representation Theory +1310.7579 Phenomenology +1310.8616 Mesoscale and Nanoscale Physics +1311.0279 +1311.0706 Combinatorics +1311.0960 General Mathematics +1311.1105 Theory +1311.1200 Theory +1311.1253 Lattice +1311.1898 Phenomenology +1311.1954 Strongly Correlated Electrons +1311.2008 Physics and Society +1311.2398 Biological Physics +1311.2786 Phenomenology +1311.2826 Theory +1311.2926 Cosmology and Nongalactic Astrophysics +1311.3020 Theory +1311.3137 Phenomenology +1311.3266 Dynamical Systems +1311.4095 Lattice +1311.4205 Theory +1311.4360 Phenomenology +1311.4628 Phenomenology +1311.4889 Phenomenology +1311.4898 +1311.4975 +1311.5226 Cosmology and Nongalactic Astrophysics +1311.5537 Phenomenology +1311.5764 Phenomenology +1311.5851 Strongly Correlated Electrons +1311.6925 +1311.7174 +1311.7254 Analysis of PDEs +1311.7511 Lattice +1312.1628 Phenomenology +1312.1720 +1312.1952 +1312.2019 +1312.2158 Theory +1312.2335 Phenomenology +1312.2424 Plasma Physics +1312.2596 Strongly Correlated Electrons +1312.2694 Theory +1312.3031 Strongly Correlated Electrons +1312.3225 +1312.3266 Differential Geometry +1312.3727 Theory +1312.3826 Trading and Market Microstructure +1312.3956 +1312.3969 Phenomenology +1312.3992 +1312.4529 +1312.4573 Phenomenology +1312.4951 Phenomenology +1312.5579 Lattice +1312.5707 +1312.5993 Phenomenology +1312.6131 Mesoscale and Nanoscale Physics +1312.6860 Phenomenology +1312.7027 Phenomenology +1312.7040 +1312.7076 Human-Computer Interaction +1401.0539 Theory +1401.0788 Statistical Mechanics +1401.1144 Logic +1401.1262 Chaotic Dynamics +1401.1378 +1401.1404 Mesoscale and Nanoscale Physics +1401.1815 Phenomenology +1401.1937 Superconductivity +1401.1959 +1401.1978 Analysis of PDEs +1401.3014 Analysis of PDEs +1401.3207 Phenomenology +1401.3752 Phenomenology +1401.4943 Experiment +1401.5109 +1401.5118 Phenomenology +1401.5893 Subcellular Processes +1401.5944 Phenomenology +1401.5974 Theory +1401.6248 Theory +1401.7228 Lattice +1402.2191 Analysis of PDEs +1402.3281 Distributed, Parallel, and Cluster Computing +1402.3728 Soft Condensed Matter +1402.6146 Combinatorics +1402.6801 Strongly Correlated Electrons +1402.7368 Combinatorics +1403.0090 Superconductivity +1403.1132 Analysis of PDEs +1403.2314 Strongly Correlated Electrons +1403.2828 Computers and Society +1403.3130 Rings and Algebras +1403.5443 Mesoscale and Nanoscale Physics +1403.5671 Atmospheric and Oceanic Physics +1403.5771 Information Retrieval +1403.5842 +1403.6023 Computation and Language +1403.6032 Formal Languages and Automata Theory +1403.6044 Operator Algebras +1403.6112 General Finance +1403.6134 Group Theory +1403.6135 Optimization and Control +1403.6137 Theory +1403.6140 Mesoscale and Nanoscale Physics +1403.6153 Statistical Mechanics +1403.6162 Statistical Mechanics +1403.6164 Information Theory +1403.6166 +1403.6169 Chaotic Dynamics +1403.6171 Quantitative Methods +1403.6177 +1403.6180 +1403.6183 Computer Vision and Pattern Recognition +1403.6184 Discrete Mathematics +1403.6189 Mesoscale and Nanoscale Physics +1403.6195 Statistics Theory +1403.6196 Exactly Solvable and Integrable Systems +1403.6197 Superconductivity +1403.6198 Astrophysics of Galaxies +1403.6206 Methodology +1403.6207 Data Structures and Algorithms +1403.6208 Soft Condensed Matter +1403.6214 +1403.6217 Phenomenology +1403.6223 Combinatorics +1403.6228 Operator Algebras +1403.6231 Functional Analysis +1403.6232 Strongly Correlated Electrons +1403.6234 +1403.6236 Strongly Correlated Electrons +1403.6240 Superconductivity +1403.6245 Solar and Stellar Astrophysics +1403.6246 Logic in Computer Science +1403.6248 Information Retrieval +1403.6249 Classical Analysis and ODEs +1403.6250 Instrumentation and Methods for Astrophysics +1403.6252 +1403.6254 Number Theory +1403.6260 Computer Vision and Pattern Recognition +1403.6269 Mesoscale and Nanoscale Physics +1403.6270 Distributed, Parallel, and Cluster Computing +1403.6271 Pattern Formation and Solitons +1403.6272 Networking and Internet Architecture +1403.6273 Plasma Physics +1403.6275 Computer Vision and Pattern Recognition +1403.6281 Analysis of PDEs +1403.6282 Geophysics +1403.6283 Statistical Mechanics +1403.6291 Quantum Algebra +1403.6292 Classical Analysis and ODEs +1403.6297 Strongly Correlated Electrons +1403.6300 Group Theory +1403.6306 Materials Science +1403.6307 Combinatorics +1403.6309 Earth and Planetary Astrophysics +1403.6312 Optimization and Control +1403.6316 +1403.6319 Materials Science +1403.6322 Software Engineering +1403.6324 Optimization and Control +1403.6326 Group Theory +1403.6328 Populations and Evolution +1403.6330 Social and Information Networks +1403.6337 +1403.6339 Neurons and Cognition +1403.6343 Soft Condensed Matter +1403.6345 Analysis of PDEs +1403.6346 Earth and Planetary Astrophysics +1403.6349 Plasma Physics +1403.6353 Probability +1403.6354 Solar and Stellar Astrophysics +1403.6358 Quantitative Methods +1403.6359 Materials Science +1403.6369 Medical Physics +1403.6370 Accelerator Physics +1403.6378 Physics and Society +1403.6381 Computation and Language +1403.6385 Numerical Analysis +1403.6386 Discrete Mathematics +1403.6390 Fluid Dynamics +1403.6391 Earth and Planetary Astrophysics +1403.6393 Phenomenology +1403.6394 Computer Science and Game Theory +1403.6397 Learning +1403.6402 Algebraic Geometry +1403.6410 Computer Science and Game Theory +1403.6411 Computer Science and Game Theory +1403.6420 Materials Science +1403.6422 Biological Physics +1403.6424 Statistical Mechanics +1403.6426 Genomics +1403.6427 Mesoscale and Nanoscale Physics +1403.6432 Mesoscale and Nanoscale Physics +1403.6439 Functional Analysis +1403.6441 Algebraic Geometry +1403.6444 Quantum Algebra +1403.6449 Combinatorics +1403.6456 Numerical Analysis +1403.6458 Optics +1403.6461 Solar and Stellar Astrophysics +cs/0601122 Logic in Computer Science +cs/0601135 Logic in Computer Science +0709.1788 Classical Analysis and ODEs +0905.2830 Quantum Algebra +0911.1206 Probability +1002.1497 Theory +1005.0484 Logic in Computer Science +1006.1845 Representation Theory +1010.4064 Analysis of PDEs +1012.2719 Representation Theory +1103.1567 Dynamical Systems +1107.4038 Phenomenology +1111.0081 Group Theory +1111.2925 Analysis of PDEs +1112.4452 Analysis of PDEs +1201.2014 Statistics Theory +1201.5888 Cosmology and Nongalactic Astrophysics +1203.0759 Complex Variables +1203.6743 Operator Algebras +1204.3416 Differential Geometry +1205.0821 Classical Analysis and ODEs +1205.2342 Group Theory +1205.2817 Rings and Algebras +1205.3521 Analysis of PDEs +1205.3580 Analysis of PDEs +1206.3803 +1207.3429 Combinatorics +1208.2411 Phenomenology +1208.2895 Statistics Theory +1208.4383 Rings and Algebras +1209.4069 Atomic Physics +1209.6543 Probability +1210.0064 Atomic Physics +1210.1091 Information Theory +1210.1577 +1212.0626 Analysis of PDEs +1212.1512 +1212.6886 Theory +1301.6023 Combinatorics +1302.1135 Theory +1302.3822 Combinatorics +1302.6489 Optics +1302.7064 Number Theory +1303.6429 Logic +1304.4198 Complex Variables +1305.0457 Analysis of PDEs +1305.1808 +1305.2605 +1305.3751 Atomic Physics +1306.2199 Analysis of PDEs +1306.6216 +1307.0274 General Physics +1307.3553 Phenomenology +1307.4678 Algebraic Geometry +1307.5172 Lattice +1307.7987 Mesoscale and Nanoscale Physics +1308.0946 +1308.1420 Geophysics +1308.4892 Theory +1308.6485 Theory +1309.0489 Learning +1309.1137 Atomic Physics +1309.1857 +1309.6042 Differential Geometry +1310.1004 Combinatorics +1310.1481 Superconductivity +1310.1790 Theory +1310.3440 High Energy Astrophysical Phenomena +1310.3468 Strongly Correlated Electrons +1310.7229 +1311.0400 Functional Analysis +1311.1550 Phenomenology +1311.1838 Computer Vision and Pattern Recognition +1311.1856 Computer Vision and Pattern Recognition +1311.2012 Information Theory +1311.2795 Optimization and Control +1311.3823 Algebraic Geometry +1311.4750 Experiment +1311.5130 Strongly Correlated Electrons +1311.6191 Functional Analysis +1311.6302 +1311.6311 Methodology +1311.6522 Solar and Stellar Astrophysics +1312.1739 +1312.1763 Data Structures and Algorithms +1312.2164 Learning +1312.2786 +1312.3888 Mesoscale and Nanoscale Physics +1312.4174 Statistical Mechanics +1312.4340 Algebraic Topology +1312.4697 Statistical Mechanics +1312.5743 Phenomenology +1312.6271 Dynamical Systems +1312.6425 +1312.7797 +1401.0747 +1401.1845 Instrumentation and Detectors +1401.2048 +1401.2434 Number Theory +1401.2866 Digital Libraries +1401.3221 High Energy Astrophysical Phenomena +1401.4521 Analysis of PDEs +1401.4893 Solar and Stellar Astrophysics +1401.4961 +1401.6408 Risk Management +1401.6423 Data Structures and Algorithms +1401.6644 +1401.7202 Quantum Gases +1401.7610 Experiment +1401.7816 Fluid Dynamics +1402.0087 Programming Languages +1402.0813 +1402.1251 Theory +1402.2163 +1402.3465 Logic +1402.3877 +1402.3952 Theory +1402.4312 +1402.5280 Phenomenology +1402.5536 Combinatorics +1402.6340 Phenomenology +1402.7087 Strongly Correlated Electrons +1403.0352 Atomic Physics +1403.0420 Mesoscale and Nanoscale Physics +1403.0536 Category Theory +1403.1156 Probability +1403.2731 Solar and Stellar Astrophysics +1403.3242 Theory +1403.4640 Computers and Society +1403.5057 Mesoscale and Nanoscale Physics +1403.7038 Numerical Analysis +1403.7400 Social and Information Networks +1404.0337 Computational Complexity +1404.0714 +1404.0733 Atomic Physics +1404.0959 Fluid Dynamics +1404.1052 Trading and Market Microstructure +1404.1091 Mesoscale and Nanoscale Physics +1404.1305 Instrumentation and Methods for Astrophysics +1404.1377 Learning +1404.2554 Commutative Algebra +1404.2875 Complex Variables +1404.3294 +1404.3387 Phenomenology +1404.3543 Computer Vision and Pattern Recognition +1404.3838 +1404.3848 Solar and Stellar Astrophysics +1404.3971 +1404.4044 +1404.4045 Commutative Algebra +1404.4046 +1404.4050 Strongly Correlated Electrons +1404.4055 Differential Geometry +1404.4060 Numerical Analysis +1404.4063 Algebraic Geometry +1404.4065 Geometric Topology +1404.4066 Complex Variables +1404.4067 Neural and Evolutionary Computing +1404.4074 Number Theory +1404.4079 Optimization and Control +1404.4082 Mesoscale and Nanoscale Physics +1404.4087 Fluid Dynamics +1404.4088 Learning +1404.4089 Artificial Intelligence +1404.4100 Software Engineering +1404.4103 +1404.4104 Optimization and Control +1404.4106 Computer Science and Game Theory +1404.4107 Other Computer Science +1404.4109 Functional Analysis +1404.4112 Neurons and Cognition +1404.4116 Tissues and Organs +1404.4119 +1404.4123 Data Structures and Algorithms +1404.4127 Combinatorics +1404.4130 Phenomenology +1404.4135 Optics +1404.4136 Other Computer Science +1404.4137 Biological Physics +1404.4138 Optics +1404.4139 Other Computer Science +1404.4140 Other Computer Science +1404.4141 Cryptography and Security +1404.4144 Statistical Mechanics +1404.4145 Optics +1404.4149 +1404.4155 Complex Variables +1404.4159 Soft Condensed Matter +1404.4160 Optics +1404.4165 Fluid Dynamics +1404.4171 Learning +1404.4173 Networking and Internet Architecture +1404.4175 Machine Learning +1404.4181 Information Theory +1404.4183 Symplectic Geometry +1404.4185 Computation +1404.4191 Social and Information Networks +1404.4192 Classical Analysis and ODEs +1404.4194 Astrophysics of Galaxies +1404.4199 +1404.4200 +1404.4203 Analysis of PDEs +1404.4205 +1404.4207 Analysis of PDEs +1404.4211 Number Theory +1404.4212 Complex Variables +1404.4216 Commutative Algebra +1404.4218 Group Theory +1404.4219 Instrumentation and Methods for Astrophysics +1404.4221 Chaotic Dynamics +1404.4225 Numerical Analysis +1404.4228 Mesoscale and Nanoscale Physics +1404.4232 Data Analysis, Statistics and Probability +1404.4233 Chemical Physics +1404.4244 Applications +1404.4246 Programming Languages +1404.4248 Number Theory +1404.4249 Discrete Mathematics +1404.4261 Optimization and Control +1404.4263 Theory +1404.4272 Computation +1404.4273 Information Theory +1404.4276 Analysis of PDEs +1404.4278 Differential Geometry +1404.4281 Phenomenology +1404.4283 Geometric Topology +1404.4285 Chaotic Dynamics +1404.4286 Databases +1404.4298 Functional Analysis +1404.4300 History and Philosophy of Physics +1404.4301 Category Theory +1404.4306 Functional Analysis +1404.4310 Quantum Algebra +1404.4313 Analysis of PDEs +1404.4314 Computation and Language +1404.4316 Computer Vision and Pattern Recognition +1404.4318 Quantitative Methods +1404.4320 Space Physics +1404.4321 Space Physics +1404.4324 +1404.4326 Computation and Language +1404.4327 +1404.4330 +1404.4334 Computers and Society +1404.4340 Combinatorics +1404.4345 Materials Science +1404.4347 Materials Science +1404.4351 Learning +1404.4352 Combinatorics +1404.4353 Combinatorics +physics/0409134 Classical Physics +0812.1032 Differential Geometry +0912.2899 Complex Variables +1002.2729 Solar and Stellar Astrophysics +1004.3590 Representation Theory +1005.1842 Functional Analysis +1007.4897 Lattice +1009.2216 Computational Geometry +1011.2408 Functional Analysis +1104.0034 Dynamical Systems +1105.1473 Functional Analysis +1106.3847 Complex Variables +1106.4777 Geometric Topology +1110.3658 Materials Science +1201.1767 Category Theory +1205.2190 Optimization and Control +1206.2815 Complex Variables +1206.5842 Algebraic Topology +1206.6027 Rings and Algebras +1206.6369 Theory +1206.6707 Mesoscale and Nanoscale Physics +1207.5647 Geometric Topology +1208.6117 Strongly Correlated Electrons +1209.2926 Optimization and Control +1209.5548 Numerical Analysis +1210.1734 Representation Theory +1211.4137 Differential Geometry +1212.3617 Mesoscale and Nanoscale Physics +1212.4828 Theory +1212.5628 +1301.2199 Quantum Gases +1301.4766 High Energy Astrophysical Phenomena +1302.2515 Theory +1303.4060 Numerical Analysis +1304.8076 Mesoscale and Nanoscale Physics +1305.1648 Statistics Theory +1305.4275 Analysis of PDEs +1305.5591 +1306.1457 Classical Analysis and ODEs +1306.2643 Theory +1306.4386 Number Theory +1306.4920 Chaotic Dynamics +1306.6008 Algebraic Geometry +1306.6937 Optimization and Control +1307.1367 Theory +1307.2584 Information Theory +1307.5391 High Energy Astrophysical Phenomena +1307.5640 Optimization and Control +1307.6249 Functional Analysis +1307.7088 Differential Geometry +1309.7859 Computational Physics +1310.3021 +1310.3632 +1310.4055 Chaotic Dynamics +1310.5791 Statistics Theory +1310.8366 Theory +1311.1144 Rings and Algebras +1311.1721 Logic in Computer Science +1311.2994 Methodology +1311.6239 Information Theory +1311.7495 Atomic Physics +1312.1282 Computational Physics +1312.1572 +1312.4059 Combinatorics +1312.5809 Strongly Correlated Electrons +1312.6166 Superconductivity +1312.7065 Quantum Gases +1312.7247 Materials Science +1401.0005 Strongly Correlated Electrons +1401.0883 Mesoscale and Nanoscale Physics +1401.0938 Mesoscale and Nanoscale Physics +1401.1767 Optimization and Control +1401.4623 Combinatorics +1401.5226 Machine Learning +1401.6030 Computational Complexity +1401.6350 +1401.6979 Combinatorics +1401.7770 Materials Science +1402.0983 Numerical Analysis +1402.1704 Differential Geometry +1402.2294 Theory +1402.2514 +1402.2555 Differential Geometry +1402.2652 Strongly Correlated Electrons +1402.3195 Superconductivity +1402.3297 Superconductivity +1402.4547 Quantitative Methods +1402.5787 Strongly Correlated Electrons +1402.5817 Materials Science +1402.5880 +1402.6330 Theory +1403.0695 Materials Science +1403.1190 Superconductivity +1403.1608 +1403.2244 Phenomenology +1403.3693 Astrophysics of Galaxies +1403.4723 Astrophysics of Galaxies +1403.5027 Phenomenology +1403.5224 +1403.5480 +1403.5766 Phenomenology +1403.7405 Solar and Stellar Astrophysics +1404.0266 Number Theory +1404.1188 Algebraic Geometry +1404.1326 Algebraic Topology +1404.1977 +1404.4295 Materials Science +1404.4354 Experiment +1404.4367 Strongly Correlated Electrons +1404.5093 Theory +1404.5742 Atomic Physics +1404.5946 +1405.0009 Theory +1405.0790 Theory +1405.1105 Phenomenology +1405.1228 Combinatorics +1405.3213 Theory +1405.3236 Superconductivity +1405.5054 Statistical Mechanics +1405.5306 Numerical Analysis +1405.5378 Optics +1405.7681 Theory +1405.7882 Strongly Correlated Electrons +1406.0519 Quantum Gases +1406.1509 Neural and Evolutionary Computing +1406.1769 +1406.2156 Atomic Physics +1406.2227 Computer Vision and Pattern Recognition +1406.2344 +1406.2471 Superconductivity +1406.3285 +1406.3684 Phenomenology +1406.3733 Superconductivity +1406.4127 Earth and Planetary Astrophysics +1406.4556 +1406.5004 Other Statistics +1406.5043 Strongly Correlated Electrons +1406.6409 Mesoscale and Nanoscale Physics +1407.0705 Theory +1407.0772 Accelerator Physics +1407.1158 Methodology +1407.1582 Chaotic Dynamics +1407.2347 Mesoscale and Nanoscale Physics +1407.2455 +1407.2623 Phenomenology +1407.2800 Functional Analysis +1407.3426 High Energy Astrophysical Phenomena +1407.3476 Experiment +1407.3671 Phenomenology +1407.4297 Optimization and Control +1407.4311 Phenomenology +1407.4331 Cosmology and Nongalactic Astrophysics +1407.4481 Phenomenology +1407.4482 Strongly Correlated Electrons +1407.5087 Quantum Gases +1407.5301 Theory +1407.6011 Earth and Planetary Astrophysics +1407.6026 Theory +1407.6150 High Energy Astrophysical Phenomena +1407.6768 +1407.7253 Group Theory +1407.7295 +1407.7622 Other Quantitative Biology +1407.8147 Learning +1407.8387 Phenomenology +1407.8439 Cosmology and Nongalactic Astrophysics +1408.0495 +1408.0802 Strongly Correlated Electrons +1408.1061 Mesoscale and Nanoscale Physics +1408.1093 High Energy Astrophysical Phenomena +1408.1100 Mesoscale and Nanoscale Physics +1408.1203 Phenomenology +1408.1562 +1408.1775 Mesoscale and Nanoscale Physics +1408.1793 Physics and Society +1408.2432 Theory +1408.2562 Materials Science +1408.3146 Statistical Mechanics +1408.3333 Methodology +1408.4078 Strongly Correlated Electrons +1408.4391 Cosmology and Nongalactic Astrophysics +1408.4434 Theory +1408.5143 Cosmology and Nongalactic Astrophysics +1408.5397 High Energy Astrophysical Phenomena +1408.6240 Phenomenology +1408.6316 +1408.6498 +1408.6547 Theory +1408.6680 +1408.7013 Statistical Mechanics +1408.7043 Phenomenology +1409.0357 Materials Science +1409.1734 Cosmology and Nongalactic Astrophysics +1409.1750 Instrumentation and Methods for Astrophysics +1409.1868 Phenomenology +1409.2199 +1409.2200 +1409.2226 Optimization and Control +1409.2253 +1409.2349 +1409.2506 High Energy Astrophysical Phenomena +1409.2515 Astrophysics of Galaxies +1409.2557 +1409.3194 Strongly Correlated Electrons +1409.3389 High Energy Astrophysical Phenomena +1409.4183 Theory +1409.4374 Astrophysics of Galaxies +1409.4694 Solar and Stellar Astrophysics +1409.4961 Phenomenology +1409.5065 Chemical Physics +1409.5091 Earth and Planetary Astrophysics +1409.5651 Earth and Planetary Astrophysics +1409.5666 Mesoscale and Nanoscale Physics +1409.5975 Statistical Mechanics +1409.6222 Astrophysics of Galaxies +1409.6327 Strongly Correlated Electrons +1409.6339 Mesoscale and Nanoscale Physics +1409.6532 Materials Science +1409.7412 Phenomenology +1409.7429 Earth and Planetary Astrophysics +1409.7654 Solar and Stellar Astrophysics +1409.8131 Astrophysics of Galaxies +1409.8343 Earth and Planetary Astrophysics +1409.8522 Materials Science +1410.0019 Astrophysics of Galaxies +1410.0104 Risk Management +1410.0130 Optimization and Control +1410.0159 Superconductivity +1410.0574 Mesoscale and Nanoscale Physics +1410.0602 +1410.1072 Materials Science +1410.1513 Quantum Gases +1410.1876 Solar and Stellar Astrophysics +1410.2410 Solar and Stellar Astrophysics +1410.2713 Solar and Stellar Astrophysics +1410.2758 High Energy Astrophysical Phenomena +1410.2930 Phenomenology +1410.2983 Phenomenology +1410.3647 High Energy Astrophysical Phenomena +1410.3999 Solar and Stellar Astrophysics +1410.4010 +1410.4071 Other Condensed Matter +1410.4227 Experiment +1410.4409 Experiment +1410.5355 Data Structures and Algorithms +1410.5380 High Energy Astrophysical Phenomena +1410.5677 Materials Science +1410.5772 Digital Libraries +1410.6343 Solar and Stellar Astrophysics +1410.6566 Phenomenology +1410.6853 Machine Learning +1410.7016 Differential Geometry +1410.7255 Phenomenology +1410.7434 +1410.7606 Phenomenology +1410.7666 Solar and Stellar Astrophysics +1410.7674 Solar and Stellar Astrophysics +1410.7831 Solar and Stellar Astrophysics +1410.7835 Learning +1410.8307 Solar and Stellar Astrophysics +1410.8635 Networking and Internet Architecture +1410.8703 Populations and Evolution +1411.0387 Earth and Planetary Astrophysics +1411.1188 Dynamical Systems +1411.1218 Strongly Correlated Electrons +1411.1822 Information Theory +1411.2422 Mesoscale and Nanoscale Physics +1411.3291 Statistical Mechanics +1411.3695 Commutative Algebra +1411.4714 Mesoscale and Nanoscale Physics +1411.5702 Mesoscale and Nanoscale Physics +1411.5736 Materials Science +1411.5836 High Energy Astrophysical Phenomena +1411.5879 Computer Vision and Pattern Recognition +1411.6022 Number Theory +1411.6814 Dynamical Systems +1411.7738 Experiment +1412.0228 Instrumentation and Detectors +1412.0974 +1412.1579 Populations and Evolution +1412.1756 Numerical Analysis +1412.2066 Computer Vision and Pattern Recognition +1412.2240 General Topology +1412.2265 Superconductivity +1412.2416 Digital Libraries +1412.2444 Computer Vision and Pattern Recognition +1412.2637 Numerical Analysis +1412.2679 Optimization and Control +1412.2741 Atomic Physics +1412.2742 Atmospheric and Oceanic Physics +1412.2744 Dynamical Systems +1412.2745 Astrophysics of Galaxies +1412.2746 Economics +1412.2747 Geophysics +1412.2748 Astrophysics of Galaxies +1412.2763 Theory +1412.2767 Superconductivity +1412.2778 Theory +1412.2779 Biomolecules +1412.2781 Theory +1412.2784 Experiment +1412.2786 Biomolecules +1412.2788 Quantitative Methods +1412.2794 Experiment +1412.2795 Optimization and Control +1412.2799 Information Theory +1412.2801 Representation Theory +1412.2807 Lattice +1412.2808 +1412.2809 Probability +1412.2811 Soft Condensed Matter +1412.2812 Computation and Language +1412.2814 Rings and Algebras +1412.2818 Neurons and Cognition +1412.2821 Computation and Language +1412.2823 Mesoscale and Nanoscale Physics +1412.2824 Artificial Intelligence +1412.2831 Spectral Theory +1412.2833 Materials Science +1412.2836 Materials Science +1412.2840 Algebraic Geometry +1412.2841 Optimization and Control +1412.2842 Soft Condensed Matter +1412.2844 Computation +1412.2845 Cryptography and Security +1412.2847 Materials Science +1412.2851 Methodology +1412.2852 +1412.2856 Analysis of PDEs +1412.2857 Cryptography and Security +1412.2859 Statistical Mechanics +1412.2866 Computational Physics +1412.2871 Computational Physics +1412.2872 Functional Analysis +1412.2873 Computer Vision and Pattern Recognition +1412.2875 Analysis of PDEs +1412.2887 Methodology +1412.2891 Materials Science +1412.2893 Numerical Analysis +1412.2895 Complex Variables +1412.2896 Classical Analysis and ODEs +1412.2901 Computers and Society +1412.2902 Theory +1412.2907 Fluid Dynamics +1412.2908 Cryptography and Security +1412.2916 Complex Variables +1412.2918 Algebraic Geometry +1412.2921 Mesoscale and Nanoscale Physics +1412.2922 Algebraic Geometry +1412.2924 Representation Theory +1412.2928 Experiment +1412.2929 Learning +1412.2933 Materials Science +1412.2937 Phenomenology +1412.2939 Materials Science +1412.2941 Classical Analysis and ODEs +1412.2943 High Energy Astrophysical Phenomena +1412.2948 Accelerator Physics +1412.2950 Hardware Architecture +1412.2951 Experiment +1412.2953 Logic +1412.2957 Algebraic Geometry +1412.2961 Software Engineering +1412.2962 Software Engineering +1412.2963 Software Engineering +1412.2965 Optics +1412.2967 Computation +1412.2977 Software Engineering +1412.2979 Classical Physics +1412.2981 Representation Theory +1412.2982 Probability +1412.2983 Phenomenology +1412.2984 Analysis of PDEs +1412.2985 Artificial Intelligence +1412.2987 Optimization and Control +1412.2989 Algebraic Geometry +1412.2990 Number Theory +1412.2993 Computer Science and Game Theory +1412.2995 Algebraic Geometry +1412.3000 Methodology +1412.3004 Accelerator Physics +1412.3006 Combinatorics +1412.3007 Combinatorics +1412.3008 Logic +1412.3009 Computer Vision and Pattern Recognition +1412.3010 Systems and Control +1412.3013 Computation +1412.3022 Distributed, Parallel, and Cluster Computing +1412.3024 Mesoscale and Nanoscale Physics +1412.3025 Group Theory +1412.3026 +1412.3029 Strongly Correlated Electrons +1412.3030 Statistical Mechanics +1412.3032 Algebraic Geometry +1412.3035 Algebraic Geometry +1412.3038 Systems and Control +1412.3040 Databases +1412.3043 Atomic Physics +1412.3048 Group Theory +1412.3051 Machine Learning +1412.3053 Statistical Mechanics +1412.3056 Cryptography and Security +1412.3060 Phenomenology +1412.3063 Optics +1412.3064 Neurons and Cognition +1412.3075 Solar and Stellar Astrophysics +1412.3076 Artificial Intelligence +1412.3078 Machine Learning +1412.3079 Artificial Intelligence +1412.3080 Number Theory +1412.3082 +1412.3083 Quantum Gases +1412.3084 Combinatorics +1412.3087 Statistical Mechanics +1412.3088 Functional Analysis +1412.3089 Number Theory +1412.3095 Computational Complexity +1412.3096 Functional Analysis +1412.3098 Information Theory +hep-ph/0103050 Phenomenology +hep-ph/0105250 Phenomenology +hep-ph/0312361 Phenomenology +hep-ph/0401056 Phenomenology +hep-th/0107241 Theory +math/9908020 Geometric Topology +quant-ph/0701168 +0902.4825 Theory +0904.4383 K-Theory and Homology +0910.4661 Physics and Society +0911.1325 Number Theory +1006.0957 Functional Analysis +1006.1324 Combinatorics +1007.1573 Phenomenology +1008.0599 K-Theory and Homology +1012.3429 Number Theory +1101.3535 Combinatorics +1106.1861 Materials Science +1108.1067 Networking and Internet Architecture +1112.3920 Combinatorics +1112.5464 Complex Variables +1204.0103 Phenomenology +1204.4385 Atomic Physics +1205.7056 Algebraic Topology +1207.1809 Physics and Society +1207.2591 Combinatorics +1210.1721 +1210.2070 Complex Variables +1210.5562 Commutative Algebra +1210.6626 +1210.8084 Fluid Dynamics +1211.0333 Representation Theory +1211.5435 Superconductivity +1211.6085 Learning +1212.5356 Combinatorics +1301.0313 Cryptography and Security +1301.1988 Materials Science +1301.3512 Mesoscale and Nanoscale Physics +1302.6118 +1303.1307 Differential Geometry +1303.6785 Data Structures and Algorithms +1304.0482 Representation Theory +1304.1787 Phenomenology +1304.4596 Cosmology and Nongalactic Astrophysics +1304.6413 Number Theory +1304.7169 Number Theory +1304.8082 Theory +1305.1277 Theory +1305.1967 Chaotic Dynamics +1305.3499 Differential Geometry +1306.2001 Superconductivity +1306.3307 +1306.6409 Combinatorics +1307.2285 +1307.3231 Symbolic Computation +1307.3957 +1307.5696 Strongly Correlated Electrons +1307.6374 Quantum Gases +1308.0806 +1308.2092 Number Theory +1309.6189 History and Philosophy of Physics +1309.6656 Dynamical Systems +1310.1421 Theory +1310.1915 Cosmology and Nongalactic Astrophysics +1310.2253 Cosmology and Nongalactic Astrophysics +1310.2561 Social and Information Networks +1310.8318 Dynamical Systems +1311.0371 +1311.1643 Theory +1311.1933 Materials Science +1311.2023 Social and Information Networks +1311.3653 Theory +1311.4721 Computer Science and Game Theory +1311.5410 Optics +1311.5585 Lattice +1312.3221 Fluid Dynamics +1312.5182 Statistical Mechanics +1312.6527 Dynamical Systems +1312.6976 Exactly Solvable and Integrable Systems +1312.7381 Learning +1401.0521 Fluid Dynamics +1401.0703 Materials Science +1401.0925 +1401.0954 +1401.2735 Phenomenology +1401.3610 Representation Theory +1401.4011 +1401.4041 Quantum Gases +1401.7808 Mesoscale and Nanoscale Physics +1401.8088 Mesoscale and Nanoscale Physics +1402.2687 Mesoscale and Nanoscale Physics +1402.3025 Lattice +1402.3076 Probability +1402.5189 Superconductivity +1402.5555 Algebraic Geometry +1402.5839 Physics and Society +1402.6793 Optimization and Control +1403.2646 +1403.3122 +1403.3513 Commutative Algebra +1403.3882 Optimization and Control +1403.4935 Astrophysics of Galaxies +1403.5891 Functional Analysis +1403.6000 Chemical Physics +1403.6466 Phenomenology +1404.0505 Differential Geometry +1404.0605 Data Structures and Algorithms +1404.0789 Learning +1404.1060 Number Theory +1404.2154 Superconductivity +1404.2223 Theory +1404.2982 Algebraic Geometry +1404.3127 Classical Analysis and ODEs +1404.3230 Theory +1404.3313 Optics +1404.3357 Probability +1404.3576 Plasma Physics +1404.3804 Cosmology and Nongalactic Astrophysics +1404.4038 Learning +1404.4068 General Finance +1404.4180 Disordered Systems and Neural Networks +1404.4234 Phenomenology +1404.4325 +1404.4361 Probability +1404.4377 Differential Geometry +1404.4383 Phenomenology +1404.4384 Computers and Society +1404.4386 Probability +1404.4387 General Physics +1404.4388 Optimization and Control +1404.4389 Operator Algebras +1404.4391 Robotics +1404.4400 Information Theory +1404.4401 Analysis of PDEs +1404.4414 Methodology +1404.4416 Computational Complexity +1404.4425 Fluid Dynamics +1404.4428 Number Theory +1404.4430 Solar and Stellar Astrophysics +1404.4431 Atomic Physics +1404.4434 Solar and Stellar Astrophysics +1404.4439 Strongly Correlated Electrons +1404.4441 Statistics Theory +1404.4443 Information Theory +1404.4444 Astrophysics of Galaxies +1404.4445 Analysis of PDEs +1404.4448 Information Theory +1404.4453 Information Theory +1404.4456 Analysis of PDEs +1404.4457 +1404.4460 Earth and Planetary Astrophysics +1404.4461 Algebraic Geometry +1404.4462 Plasma Physics +1404.4465 Data Structures and Algorithms +1404.4468 Databases +1404.4469 +1404.4474 Phenomenology +1404.4475 Disordered Systems and Neural Networks +1404.4478 Discrete Mathematics +1404.4481 Analysis of PDEs +1404.4484 Combinatorics +1404.4487 Differential Geometry +1404.4488 Differential Geometry +1404.4489 Mesoscale and Nanoscale Physics +1404.4490 Theory +1404.4494 Materials Science +1404.4496 Information Theory +1404.4498 Phenomenology +1404.4506 Data Structures and Algorithms +1404.4508 Number Theory +1404.4510 +1404.4511 Phenomenology +1404.4514 Solar and Stellar Astrophysics +1404.4516 Analysis of PDEs +1404.4519 Dynamical Systems +1404.4525 Functional Analysis +1404.4526 Data Structures and Algorithms +1404.4528 Physics and Society +1404.4533 Cryptography and Security +1404.4538 Atmospheric and Oceanic Physics +1404.4540 Social and Information Networks +1404.4541 Algebraic Topology +1404.4543 Multimedia +1404.4544 Combinatorics +1404.4555 +1404.4560 Computer Science and Game Theory +1404.4564 Phenomenology +1404.4568 +1404.4570 Earth and Planetary Astrophysics +1404.4571 +1404.4572 Computation and Language +1404.4573 Biological Physics +1404.4575 Data Structures and Algorithms +1404.4578 Representation Theory +1404.4579 Strongly Correlated Electrons +1404.4580 Numerical Analysis +1404.4582 Optimization and Control +1404.4588 +1404.4589 Fluid Dynamics +1404.4590 Logic +1404.4592 Other Computer Science +1404.4595 Analysis of PDEs +1404.4597 Optics +1404.4603 +1404.4604 +1404.4607 Computers and Society +1404.4611 +1404.4615 High Energy Astrophysical Phenomena +1404.4617 +1404.4622 Computational Complexity +1404.4624 +1404.4626 Group Theory +physics/0409140 General Physics +0709.4315 +0810.4936 Dynamical Systems +0901.1927 Cosmology and Nongalactic Astrophysics +0906.0456 Biological Physics +1001.0323 Representation Theory +1004.2585 Dynamical Systems +1005.3387 +1012.4159 Quantum Gases +1103.5511 Differential Geometry +1105.4443 Dynamical Systems +1106.4592 Materials Science +1108.3519 Dynamical Systems +1110.6233 Phenomenology +1112.3456 Logic in Computer Science +1201.1794 Phenomenology +1202.2114 Classical Physics +1202.4985 Complex Variables +1203.0272 Group Theory +1203.2259 Combinatorics +1204.1312 Plasma Physics +1204.1568 Programming Languages +1205.3919 Theory +1205.5226 Dynamical Systems +1206.2552 Quantum Algebra +1206.4877 Phenomenology +1207.4306 +1208.6561 Dynamical Systems +1209.1178 Biological Physics +1209.3298 Algebraic Geometry +1209.5180 Optimization and Control +1210.0833 Dynamical Systems +1210.7860 Mesoscale and Nanoscale Physics +1211.1026 Phenomenology +1211.4452 Phenomenology +1211.5093 Strongly Correlated Electrons +1211.5146 Cosmology and Nongalactic Astrophysics +1211.5933 Data Structures and Algorithms +1211.6214 +1211.6763 Combinatorics +1212.1049 Theory +1212.3694 Phenomenology +1212.6075 Phenomenology +1301.3940 Probability +1301.4042 Theory +1301.5968 Soft Condensed Matter +1302.0683 Pattern Formation and Solitons +1302.2559 Optimization and Control +1303.3982 Theory +1303.5212 Theory +1303.7120 Theory +1304.0628 Superconductivity +1304.0692 Combinatorics +1304.3661 Mesoscale and Nanoscale Physics +1304.5008 Neurons and Cognition +1304.5215 Phenomenology +1305.0248 Phenomenology +1305.2523 Representation Theory +1305.7081 Atomic Physics +1306.0116 General Physics +1306.1670 Phenomenology +1306.3246 +1306.3282 +1306.4177 Cosmology and Nongalactic Astrophysics +1306.6532 Theory +1307.1203 Theory +1307.1663 Theory +1307.1922 Combinatorics +1307.2172 Theory +1307.6204 Phenomenology +1307.6610 Statistics Theory +1307.7530 Strongly Correlated Electrons +1308.1195 Statistics Theory +1308.1364 Experiment +1308.2702 Theory +1308.2716 Phenomenology +1308.3237 Quantum Gases +1308.3352 Theory +1308.3550 Phenomenology +1308.5069 Phenomenology +1308.5579 Phenomenology +1308.5912 Phenomenology +1309.2011 Mesoscale and Nanoscale Physics +1309.2430 Phenomenology +1309.2647 Quantum Gases +1309.3194 Disordered Systems and Neural Networks +1309.3998 Metric Geometry +1309.4622 Theory +1309.4842 +1309.5632 Probability +1309.5732 +1309.6086 Phenomenology +1309.6383 +1309.7455 Physics and Society +1309.7984 Theory +1310.0957 Phenomenology +1310.2057 Phenomenology +1310.2540 High Energy Astrophysical Phenomena +1310.2704 Experiment +1310.3602 +1310.5071 Rings and Algebras +1310.5643 Phenomenology +1310.6270 Soft Condensed Matter +1310.6335 Theory +1310.6425 Chemical Physics +1310.7126 +1310.8227 Plasma Physics +1311.0836 Phenomenology +1311.1364 Theory +1311.1773 Superconductivity +1311.1864 +1311.2013 Physics and Society +1311.2476 Group Theory +1311.2574 +1311.2658 Plasma Physics +1311.3288 Soft Condensed Matter +1311.3302 Cosmology and Nongalactic Astrophysics +1311.3924 Experiment +1311.4140 Materials Science +1311.4666 Theory +1311.4708 Theory +1311.5457 Dynamical Systems +1311.5591 Computer Vision and Pattern Recognition +1311.5974 Phenomenology +1311.6886 Soft Condensed Matter +1311.7510 +1311.7606 Data Analysis, Statistics and Probability +1312.0213 Theory +1312.0217 +1312.0621 Theory +1312.2095 Materials Science +1312.2487 Functional Analysis +1312.3952 Analysis of PDEs +1312.4060 Phenomenology +1312.4164 Phenomenology +1312.4224 Physics and Society +1312.4250 Plasma Physics +1312.4347 +1312.4367 +1312.6409 Cosmology and Nongalactic Astrophysics +1312.6800 Experiment +1312.7197 Theory +1312.7491 Cosmology and Nongalactic Astrophysics +1401.0147 +1401.0278 Algebraic Geometry +1401.0317 Phenomenology +1401.0741 +1401.1909 Cosmology and Nongalactic Astrophysics +1401.1980 Group Theory +1401.2385 Atomic Physics +1401.2830 Cosmology and Nongalactic Astrophysics +1401.2862 Fluid Dynamics +1401.3873 Theory +1401.4387 General Finance +1401.5898 +1401.7022 Cosmology and Nongalactic Astrophysics +1401.7355 Strongly Correlated Electrons +1401.7806 Theory +1401.7933 Soft Condensed Matter +1401.8033 +1401.8232 Optimization and Control +1402.0339 Strongly Correlated Electrons +1402.0626 Theory +1402.0704 +1402.0792 Functional Analysis +1402.1877 Strongly Correlated Electrons +1402.2275 Theory +1402.3108 +1402.3537 Chaotic Dynamics +1402.3730 Optimization and Control +1402.3798 Chaotic Dynamics +1402.4141 Theory +1402.5372 Phenomenology +1402.5791 Cosmology and Nongalactic Astrophysics +1402.6277 Strongly Correlated Electrons +1402.6870 Group Theory +1402.6873 Group Theory +1402.6916 Soft Condensed Matter +1402.7029 Experiment +1402.7297 Classical Analysis and ODEs +1403.0441 Quantum Gases +1403.0578 Theory +1403.1193 Cosmology and Nongalactic Astrophysics +1403.1508 Computer Science and Game Theory +1403.3019 Group Theory +1403.3068 Quantum Gases +1403.3586 Instrumentation and Detectors +1403.4650 Quantum Gases +1403.4754 High Energy Astrophysical Phenomena +1403.4812 +1403.4924 Cosmology and Nongalactic Astrophysics +1403.5338 +1403.5749 Analysis of PDEs +1403.5791 Computer Science and Game Theory +1403.6502 Disordered Systems and Neural Networks +1403.6630 Complex Variables +1403.7243 Cryptography and Security +1403.7403 Soft Condensed Matter +1403.7457 Phenomenology +1403.7590 Superconductivity +1404.0188 Chemical Physics +1404.0670 Solar and Stellar Astrophysics +1404.0910 Solar and Stellar Astrophysics +1404.1887 +1404.1917 Astrophysics of Galaxies +1404.2398 Astrophysics of Galaxies +1404.2833 Statistical Mechanics +1404.2897 Operator Algebras +1404.4394 +1404.5237 Number Theory +1404.7028 Solar and Stellar Astrophysics +1404.7618 Software Engineering +1404.7776 Experiment +1405.0049 Computation and Language +1405.0096 Combinatorics +1405.0631 Networking and Internet Architecture +1405.0692 Plasma Physics +1405.0897 Metric Geometry +1405.0949 Plasma Physics +1405.1019 Networking and Internet Architecture +1405.1023 Commutative Algebra +1405.1025 Popular Physics +1405.1027 Artificial Intelligence +1405.1051 Rings and Algebras +1405.1060 Classical Physics +1405.1063 Information Theory +1405.1067 Phenomenology +1405.1078 Accelerator Physics +1405.1085 Other Computer Science +1405.1088 Probability +1405.1091 Information Theory +1405.1099 +1405.1100 Operator Algebras +1405.1104 Optics +1405.1107 Formal Languages and Automata Theory +1405.1111 Analysis of PDEs +1405.1112 Software Engineering +1405.1113 Software Engineering +1405.1114 Cryptography and Security +1405.1115 Cryptography and Security +1405.1116 Software Engineering +1405.1120 Dynamical Systems +1405.1123 +1405.1124 Artificial Intelligence +1405.1125 Geometric Topology +1405.1126 Dynamical Systems +1405.1127 Networking and Internet Architecture +1405.1129 Social and Information Networks +1405.1145 +1405.1148 Fluid Dynamics +1405.1149 Optics +1405.1150 Dynamical Systems +1405.1155 Networking and Internet Architecture +1405.1157 Computers and Society +1405.1162 Materials Science +1405.1163 Group Theory +1405.1169 Optics +1405.1170 Probability +1405.1171 Astrophysics of Galaxies +1405.1172 Superconductivity +1405.1183 Artificial Intelligence +1405.1185 Phenomenology +1405.1192 Logic in Computer Science +1405.1195 Optics +1405.1200 History and Philosophy of Physics +1405.1205 Instrumentation and Methods for Astrophysics +1405.1207 Computer Vision and Pattern Recognition +1405.1209 Numerical Analysis +1405.1217 Analysis of PDEs +1405.1220 Data Structures and Algorithms +1405.1221 Computational Physics +1405.1229 Logic in Computer Science +1405.1230 Biological Physics +1405.1234 Data Structures and Algorithms +1405.1237 Algebraic Topology +1405.1238 Accelerator Physics +1405.1241 Analysis of PDEs +1405.1246 Theory +1405.1247 Trading and Market Microstructure +1405.1250 Computation +1405.1251 Complex Variables +1405.1254 Computer Science and Game Theory +1405.1258 Number Theory +1405.1262 Dynamical Systems +1405.1266 Probability +1405.1267 Probability +1405.1275 Methodology +1405.1278 Representation Theory +1405.1284 Solar and Stellar Astrophysics +1405.1287 Artificial Intelligence +1405.1292 Probability +1405.1294 +1405.1298 Data Structures and Algorithms +1405.1300 Computational Engineering, Finance, and Science +1405.1302 Programming Languages +1405.1304 Computational Engineering, Finance, and Science +1405.1311 Optics +1405.1314 Neurons and Cognition +1405.1316 Probability +1405.1322 Combinatorics +1405.1323 Combinatorics +1405.1327 Materials Science +1405.1329 Mesoscale and Nanoscale Physics +1405.1330 Atomic Physics +1405.1338 Chemical Physics +1405.1339 Databases +1405.1340 Dynamical Systems +1405.1341 Complex Variables +1405.1342 Complex Variables +1405.1343 Numerical Analysis +1405.1346 Computation and Language +1405.1352 Probability +1405.1354 Optimization and Control +1405.1356 Data Structures and Algorithms +1405.1360 Databases +1405.1361 Dynamical Systems +1405.1366 Mesoscale and Nanoscale Physics +1405.1367 Spectral Theory +1405.1370 Instrumentation and Detectors +1405.1374 Computational Complexity +1405.1375 Other Condensed Matter +1405.1379 Sound +1405.1382 Distributed, Parallel, and Cluster Computing +1405.1383 Computation +1405.1384 Materials Science +1405.1385 Systems and Control +1405.1390 Cosmology and Nongalactic Astrophysics +1405.1391 Biological Physics +1405.1392 Social and Information Networks +1405.1393 Mesoscale and Nanoscale Physics +1405.1394 Algebraic Geometry +1405.1397 Artificial Intelligence +1405.1402 Computer Vision and Pattern Recognition +1405.1403 Computer Vision and Pattern Recognition +1405.1404 Neural and Evolutionary Computing +1405.1406 Computation and Language +1405.1411 Theory +astro-ph/0403328 +cond-mat/0605537 Statistical Mechanics +0704.3713 Other Condensed Matter +0706.0009 Combinatorics +0707.1976 General Physics +0708.2674 General Physics +0710.3997 Dynamical Systems +0805.1478 Probability +0809.0678 Numerical Analysis +0811.3370 Dynamical Systems +0811.3597 Dynamical Systems +0812.1575 Dynamical Systems +0905.0650 Optimization and Control +0905.3959 Probability +0908.1482 Atomic Physics +0911.0804 Dynamical Systems +0912.2012 Dynamical Systems +1002.2839 Combinatorics +1005.0719 Functional Analysis +1006.4136 Data Structures and Algorithms +1006.5471 Other Statistics +1007.4417 Mesoscale and Nanoscale Physics +1008.3606 Mesoscale and Nanoscale Physics +1012.4019 +1101.4278 Algebraic Topology +1101.4623 Functional Analysis +1103.5223 Geometric Topology +1105.0728 Optimization and Control +1105.5874 Populations and Evolution +1105.5915 Data Structures and Algorithms +1106.4793 Chemical Physics +1107.1171 Commutative Algebra +1107.3059 Learning +1107.3908 Algebraic Topology +1107.4245 Complex Variables +1108.0318 Metric Geometry +1108.0749 Chemical Physics +1108.4404 Optimization and Control +1108.5300 Probability +1108.5615 Combinatorics +1109.0613 Quantum Algebra +1109.0942 Chaotic Dynamics +1109.1464 Complex Variables +1110.3368 Populations and Evolution +1110.6321 +1110.6353 Group Theory +1110.6552 Complex Variables +1111.2296 Complex Variables +1201.0046 Combinatorics +1201.1077 Group Theory +1201.5098 Probability +1202.1223 Populations and Evolution +1202.3369 Representation Theory +1202.5427 Geometric Topology +1203.1192 Functional Analysis +1203.1404 Atomic Physics +1204.6353 Populations and Evolution +1204.6677 Differential Geometry +1205.1337 Mesoscale and Nanoscale Physics +1206.1281 General Physics +1206.4460 Differential Geometry +1206.5149 Solar and Stellar Astrophysics +1206.5489 Differential Geometry +1206.6788 Astrophysics of Galaxies +1206.7105 Discrete Mathematics +1207.2517 Atomic Physics +1207.3257 Numerical Analysis +1207.5134 +1207.5638 +1208.5751 Complex Variables +1208.6145 Quantum Algebra +1209.0119 +1209.2156 Cosmology and Nongalactic Astrophysics +1209.3378 Probability +1209.4078 Cosmology and Nongalactic Astrophysics +1209.6626 Symbolic Computation +1210.0366 Metric Geometry +1210.0367 Numerical Analysis +1210.1358 Materials Science +1210.2119 +1210.3431 Geometric Topology +1210.4785 Operator Algebras +1210.5297 Information Theory +1210.5424 Information Theory +1210.6419 Classical Analysis and ODEs +1211.2849 Chemical Physics +1211.2948 Complex Variables +1211.4225 Numerical Analysis +1212.0046 Quantum Gases +1212.2592 Probability +1212.4932 Optimization and Control +1212.5400 Probability +1212.5768 Optimization and Control +1212.5951 Formal Languages and Automata Theory +1212.6601 Trading and Market Microstructure +1212.6843 Optimization and Control +1301.2617 Phenomenology +1301.6838 +1301.7644 Statistics Theory +1302.1075 Materials Science +1302.3140 Probability +1302.3283 Learning +1302.3498 Combinatorics +1302.5186 Computer Vision and Pattern Recognition +1303.0260 Soft Condensed Matter +1303.0548 Differential Geometry +1303.6444 +1304.0278 Combinatorics +1304.4543 Atomic Physics +1304.5149 Computer Science and Game Theory +1304.5214 Symbolic Computation +1304.5784 Numerical Analysis +1304.7293 Theory +1304.7802 Strongly Correlated Electrons +1304.8068 Optics +1305.1878 Phenomenology +1305.5890 Mesoscale and Nanoscale Physics +1305.6431 Logic in Computer Science +1305.7242 Probability +1306.1211 Analysis of PDEs +1306.2276 Earth and Planetary Astrophysics +1306.2465 Discrete Mathematics +1306.2534 Quantum Gases +1306.3162 Computer Vision and Pattern Recognition +1306.3462 Mesoscale and Nanoscale Physics +1306.3919 Number Theory +1306.5261 Populations and Evolution +1306.5489 Symplectic Geometry +1306.5585 Logic in Computer Science +1306.5620 Phenomenology +1306.5854 +1306.6751 Mesoscale and Nanoscale Physics +1307.0835 Mesoscale and Nanoscale Physics +1307.1128 Theory +1307.1456 Analysis of PDEs +1307.1810 Combinatorics +1307.1954 Learning +1307.2121 Mesoscale and Nanoscale Physics +1307.2155 Differential Geometry +1307.4084 Earth and Planetary Astrophysics +1307.4384 Experiment +1308.0272 Chemical Physics +1308.1210 Disordered Systems and Neural Networks +1308.1893 Functional Analysis +1308.1962 Mesoscale and Nanoscale Physics +1308.2155 Superconductivity +1308.3121 +1308.3805 +1308.4943 Artificial Intelligence +1308.5345 Mesoscale and Nanoscale Physics +1308.5377 Phenomenology +1308.5502 +1308.5794 Statistical Mechanics +1308.6402 Logic +1308.6537 Physics and Society +1308.6651 Phenomenology +1309.0112 Probability +1309.0239 Information Theory +1309.1364 Category Theory +1309.2238 +1309.3144 Theory +1309.3669 Number Theory +1309.3842 Statistics Theory +1309.4303 Phenomenology +1309.5506 Probability +1309.5631 Classical Physics +1309.6290 Numerical Analysis +1309.6498 +1309.6520 Statistical Mechanics +1309.6544 Cosmology and Nongalactic Astrophysics +1309.7534 +1309.7600 Atmospheric and Oceanic Physics +1309.7983 Statistical Mechanics +1310.1298 +1310.1993 Quantum Gases +1310.2199 Computational Physics +1310.2470 Mesoscale and Nanoscale Physics +1310.3187 +1310.3540 +1310.3756 Mesoscale and Nanoscale Physics +1310.4116 Theory +1310.4281 Instrumentation and Detectors +1310.4847 Soft Condensed Matter +1310.4857 Group Theory +1310.5693 Astrophysics of Galaxies +1310.6345 Physics and Society +1310.6550 Numerical Analysis +1310.6636 Optimization and Control +1310.6811 +1310.7725 Chemical Physics +1311.0463 Methodology +1311.1005 Materials Science +1311.1120 Populations and Evolution +1311.3379 Number Theory +1311.3564 Disordered Systems and Neural Networks +1311.3615 Mesoscale and Nanoscale Physics +1311.3828 +1311.3856 Cosmology and Nongalactic Astrophysics +1311.4184 Statistical Mechanics +1311.4284 +1311.4287 Theory +1311.4533 Computational Engineering, Finance, and Science +1311.4762 Systems and Control +1311.4985 +1311.5247 Atomic Physics +1311.5608 Quantum Gases +1311.5732 Superconductivity +1311.5950 Differential Geometry +1311.7005 +1311.7681 K-Theory and Homology +1311.7688 +1312.0402 Instrumentation and Methods for Astrophysics +1312.2659 Dynamical Systems +1312.3171 Superconductivity +1312.4299 Atomic Physics +1312.4908 Lattice +1312.5567 Analysis of PDEs +1312.5971 Strongly Correlated Electrons +1312.6028 Statistical Mechanics +1312.6402 Complex Variables +1312.6444 Computer Science and Game Theory +1312.6567 +1312.7469 Computer Vision and Pattern Recognition +1401.0622 +1401.1080 Mesoscale and Nanoscale Physics +1401.1470 Materials Science +1401.2703 +1401.2957 Applications +1401.3582 Information Theory +1401.4052 Materials Science +1401.4566 Learning +1401.7377 Networking and Internet Architecture +1401.7394 Strongly Correlated Electrons +1401.7728 Computational Physics +1401.7950 +1401.8055 Analysis of PDEs +1402.0063 +1402.0144 Differential Geometry +1402.0442 Combinatorics +1402.0623 Phenomenology +1402.0742 Dynamical Systems +1402.1065 +1402.1185 Numerical Analysis +1402.1442 Strongly Correlated Electrons +1402.1559 Optimization and Control +1402.1696 Quantum Gases +1402.1759 Information Theory +1402.1762 Solar and Stellar Astrophysics +1402.1775 Differential Geometry +1402.1776 Fluid Dynamics +1402.1779 Combinatorics +1402.1780 Systems and Control +1402.1785 Complex Variables +1402.1786 Fluid Dynamics +1402.1787 Dynamical Systems +1402.1789 Atomic Physics +1402.1790 Dynamical Systems +1402.1792 Learning +1402.1794 Genomics +1402.1795 Algebraic Geometry +1402.1801 Applications +1402.1803 Classical Analysis and ODEs +1402.1804 Classical Analysis and ODEs +1402.1810 Data Structures and Algorithms +1402.1811 Computational Complexity +1402.1814 Databases +1402.1816 Materials Science +1402.1818 Dynamical Systems +1402.1819 Networking and Internet Architecture +1402.1821 Theory +1402.1825 Probability +1402.1827 Combinatorics +1402.1834 Information Theory +1402.1835 Applications +1402.1839 Chaotic Dynamics +1402.1841 Computers and Society +1402.1842 Cryptography and Security +1402.1843 Physics Education +1402.1844 Phenomenology +1402.1848 +1402.1857 Classical Physics +1402.1860 Statistics Theory +1402.1865 Number Theory +1402.1866 +1402.1867 +1402.1876 Methodology +1402.1878 +1402.1879 Computer Vision and Pattern Recognition +1402.1884 Number Theory +1402.1893 Quantum Algebra +1402.1898 Plasma Physics +1402.1901 Solar and Stellar Astrophysics +1402.1902 Analysis of PDEs +1402.1905 Statistics Theory +1402.1906 Commutative Algebra +1402.1909 Methodology +1402.1913 Number Theory +1402.1919 Computers and Society +1402.1921 Learning +1402.1923 Materials Science +1402.1925 Software Engineering +1402.1928 Soft Condensed Matter +1402.1931 Neural and Evolutionary Computing +1402.1932 Distributed, Parallel, and Cluster Computing +1402.1935 Superconductivity +1402.1936 Information Theory +1402.1938 +1402.1940 Cryptography and Security +1402.1945 History and Philosophy of Physics +1402.1946 Networking and Internet Architecture +1402.1947 Information Retrieval +1402.1950 Materials Science +1402.1952 Instrumentation and Methods for Astrophysics +1402.1953 Computational Finance +1402.1954 Differential Geometry +1402.1955 Analysis of PDEs +1402.1956 Artificial Intelligence +1402.1957 Complex Variables +1402.1958 Artificial Intelligence +1402.1960 Complex Variables +1402.1963 Plasma Physics +1402.1966 Earth and Planetary Astrophysics +1402.1974 Networking and Internet Architecture +1402.1976 Methodology +1402.1979 Dynamical Systems +1402.1984 Analysis of PDEs +1402.1985 Software Engineering +1402.1986 Artificial Intelligence +1402.1990 +1402.1992 Logic in Computer Science +1402.1995 Optimization and Control +1402.2001 Superconductivity +1402.2004 Number Theory +1402.2005 Number Theory +1402.2006 +1402.2008 Dynamical Systems +1402.2011 Information Theory +1402.2014 Functional Analysis +1402.2019 Digital Libraries +1402.2020 Computer Vision and Pattern Recognition +1402.2021 Soft Condensed Matter +1402.2022 Data Structures and Algorithms +1402.2026 Applications +1402.2028 Geometric Topology +1402.2029 General Topology +1402.2031 Computer Vision and Pattern Recognition +1402.2032 Information Theory +1402.2034 Combinatorics +1402.2038 Analysis of PDEs +1402.2041 Commutative Algebra +1402.2044 Machine Learning +1402.2046 Trading and Market Microstructure +1402.2049 Algebraic Geometry +1402.2050 Operator Algebras +1402.2051 Differential Geometry +1402.2056 Information Theory +1402.2060 Optics +1402.2063 +1402.2065 Analysis of PDEs +1402.2066 Optimization and Control +1402.2067 Dynamical Systems +1402.2071 Logic in Computer Science +1402.2080 Materials Science +1402.2082 +1402.2083 Functional Analysis +1402.2084 +1402.2086 +1402.2088 Optimization and Control +1402.2089 Complex Variables +1402.2090 Distributed, Parallel, and Cluster Computing +1402.2093 Probability +1402.2097 Data Structures and Algorithms +1402.2098 Classical Analysis and ODEs +1402.2099 Analysis of PDEs +1402.2107 Distributed, Parallel, and Cluster Computing +1402.2108 Networking and Internet Architecture +1402.2110 Networking and Internet Architecture +1402.2114 Computers and Society +1402.2117 Numerical Analysis +1402.2128 Algebraic Geometry +1402.2131 Combinatorics +1402.2137 Data Structures and Algorithms +1402.2139 Materials Science +1402.2140 Distributed, Parallel, and Cluster Computing +1402.2144 Software Engineering +1402.2146 +1402.2148 Machine Learning +1402.2149 Human-Computer Interaction +1402.2150 Fluid Dynamics +1402.2153 Instrumentation and Detectors +1402.2154 Mesoscale and Nanoscale Physics +1402.2156 Analysis of PDEs +1402.2157 Probability +1402.2160 Materials Science +1402.2166 Combinatorics +1402.2169 Instrumentation and Methods for Astrophysics +1402.2170 Experiment +1402.2172 Instrumentation and Detectors +1402.2173 Instrumentation and Detectors +1402.2175 Computational Complexity +1402.2178 Number Theory +1402.2180 Fluid Dynamics +1402.2181 +1402.2182 +1402.2185 Popular Physics +1402.2187 Networking and Internet Architecture +1402.2188 Computer Vision and Pattern Recognition +1402.2190 Computational Geometry +1402.2194 Classical Analysis and ODEs +1402.2197 Instrumentation and Detectors +1402.2198 Trading and Market Microstructure +1402.2199 Probability +1402.2200 Materials Science +1402.2204 Networking and Internet Architecture +1402.2206 Cryptography and Security +1402.2210 +1402.2211 Astrophysics of Galaxies +1402.2212 Rings and Algebras +1402.2217 Networking and Internet Architecture +1402.2220 History and Overview +1402.2222 K-Theory and Homology +1402.2228 Networking and Internet Architecture +1402.2229 Astrophysics of Galaxies +1402.2230 Emerging Technologies +1402.2232 Information Retrieval +1402.2240 Fluid Dynamics +1402.2241 Instrumentation and Detectors +1402.2243 Statistics Theory +1402.2247 Mesoscale and Nanoscale Physics +1402.2253 Representation Theory +1402.2261 Geometric Topology +1402.2262 Probability +1402.2266 Distributed, Parallel, and Cluster Computing +1402.2271 Software Engineering +cond-mat/0203447 Superconductivity +gr-qc/0308054 +math/0109213 Spectral Theory +math/0605784 Rings and Algebras +nlin/0610050 Exactly Solvable and Integrable Systems +0710.3150 +0909.3407 Optics +1001.1957 +1006.1769 Cosmology and Nongalactic Astrophysics +1007.0007 Astrophysics of Galaxies +1008.2088 Optics +1105.0918 Astrophysics of Galaxies +1109.3577 Numerical Analysis +1110.3396 +1110.5724 Group Theory +1201.2353 Cosmology and Nongalactic Astrophysics +1203.3568 Logic in Computer Science +1209.1687 Lattice +1209.4249 Differential Geometry +1209.5969 Data Structures and Algorithms +1210.8205 Combinatorics +1211.2853 Information Theory +1211.2877 Numerical Analysis +1211.3634 Optimization and Control +1211.5037 Machine Learning +1301.0510 Operator Algebras +1301.6775 Numerical Analysis +1302.0129 General Physics +1302.4300 +1302.6868 Numerical Analysis +1302.7014 Data Structures and Algorithms +1303.0002 Combinatorics +1303.2896 Logic in Computer Science +1303.3683 Superconductivity +1303.5490 Cosmology and Nongalactic Astrophysics +1304.5123 Mesoscale and Nanoscale Physics +1304.5320 Group Theory +1304.7844 Optimization and Control +1305.1634 Adaptation and Self-Organizing Systems +1305.2186 +1305.4648 Physics and Society +1308.0896 +1308.2943 +1308.4250 Group Theory +1309.0816 +1309.1060 Strongly Correlated Electrons +1309.1898 Populations and Evolution +1309.2676 Numerical Analysis +1309.2986 Phenomenology +1309.7056 Cosmology and Nongalactic Astrophysics +1310.0705 Category Theory +1310.2676 Numerical Analysis +1310.4970 +1310.4971 Differential Geometry +1310.7494 History and Philosophy of Physics +1310.8329 Numerical Analysis +1311.0515 Number Theory +1311.0736 Phenomenology +1311.5850 Analysis of PDEs +1311.7108 Materials Science +1312.4179 Networking and Internet Architecture +1312.5159 Mesoscale and Nanoscale Physics +1312.7114 Phenomenology +1312.7769 +1312.7826 Experiment +1401.0812 Analysis of PDEs +1401.3826 +1401.4321 Digital Libraries +1401.5052 Disordered Systems and Neural Networks +1401.5094 Mesoscale and Nanoscale Physics +1401.5907 Quantum Gases +1401.7776 Biological Physics +1402.0922 Instrumentation and Detectors +1402.1195 +1402.1859 Quantum Gases +1402.2179 Materials Science +1402.3592 Theory +1402.3640 Analysis of PDEs +1403.0031 +1403.0041 Optimization and Control +1403.1673 Number Theory +1403.1842 Group Theory +1403.3375 Distributed, Parallel, and Cluster Computing +1403.3377 Strongly Correlated Electrons +1403.3830 +1403.6049 Disordered Systems and Neural Networks +1403.6157 Statistical Mechanics +1404.0362 Superconductivity +1404.1142 Networking and Internet Architecture +1404.1656 Dynamical Systems +1404.2206 Cosmology and Nongalactic Astrophysics +1404.2812 Theory +1404.3536 Soft Condensed Matter +1404.4023 Mesoscale and Nanoscale Physics +1404.4252 +1404.5027 Theory +1404.5323 Cosmology and Nongalactic Astrophysics +1404.5984 Analysis of PDEs +1404.6088 Exactly Solvable and Integrable Systems +1404.6729 Statistical Mechanics +1405.0464 Probability +1405.1401 Strongly Correlated Electrons +1405.1762 Theory +1405.2018 Exactly Solvable and Integrable Systems +1405.3179 Mesoscale and Nanoscale Physics +1405.3404 Phenomenology +1405.3478 Materials Science +1405.4272 Networking and Internet Architecture +1405.4970 Analysis of PDEs +1405.5229 Earth and Planetary Astrophysics +1405.6295 +1405.6556 Mesoscale and Nanoscale Physics +1406.1312 Astrophysics of Galaxies +1406.1356 Strongly Correlated Electrons +1406.1817 +1406.3746 Materials Science +1406.6933 Mesoscale and Nanoscale Physics +1406.7380 Complex Variables +1407.0721 Astrophysics of Galaxies +1407.1982 Computers and Society +1407.3520 Theory +1407.4329 Optics +1407.4367 History and Philosophy of Physics +1407.7113 Theory +1407.7119 +1407.7580 Theory +1407.7667 Multimedia +1407.7722 Learning +1407.8238 Optimization and Control +1407.8381 Fluid Dynamics +1408.0006 Theory +1408.0016 Computation and Language +1408.0017 Learning +1408.0019 Phenomenology +1408.0020 Analysis of PDEs +1408.0026 Dynamical Systems +1408.0028 Rings and Algebras +1408.0030 Numerical Analysis +1408.0043 Learning +1408.0045 Systems and Control +1408.0047 Machine Learning +1408.0050 Logic in Computer Science +1408.0051 Formal Languages and Automata Theory +1408.0053 Logic in Computer Science +1408.0054 +1408.0055 Machine Learning +1408.0056 Rings and Algebras +1408.0058 Robotics +1408.0062 Information Theory +1408.0064 +1408.0072 +1408.0074 Mathematical Software +1408.0077 Exactly Solvable and Integrable Systems +1408.0079 Solar and Stellar Astrophysics +1408.0083 Applications +1408.0087 Applications +1408.0092 Geometric Topology +1408.0095 Applications +1408.0096 Information Retrieval +1408.0103 Mesoscale and Nanoscale Physics +1408.0104 Networking and Internet Architecture +1408.0106 Materials Science +1408.0109 Combinatorics +1408.0110 Probability +1408.0113 Exactly Solvable and Integrable Systems +1408.0114 Data Structures and Algorithms +1408.0119 Social and Information Networks +1408.0120 Algebraic Geometry +1408.0124 Probability +1408.0125 Materials Science +1408.0127 Group Theory +1408.0129 Probability +1408.0131 Probability +1408.0132 Combinatorics +1408.0134 Probability +1408.0135 Digital Libraries +1408.0136 Probability +1408.0140 Astrophysics of Galaxies +1408.0142 Probability +1408.0143 Quantum Algebra +1408.0146 Probability +1408.0147 Systems and Control +1408.0148 Optics +1408.0153 Fluid Dynamics +1408.0159 Analysis of PDEs +1408.0160 Probability +1408.0163 Dynamical Systems +1408.0164 Quantitative Methods +1408.0166 +1408.0168 Earth and Planetary Astrophysics +1408.0171 Analysis of PDEs +1408.0175 Solar and Stellar Astrophysics +1408.0180 Information Theory +1408.0182 Numerical Analysis +1408.0183 Numerical Analysis +1408.0189 Probability +1408.0190 Algebraic Geometry +1408.0192 Information Theory +1408.0193 Learning +1408.0194 Mesoscale and Nanoscale Physics +1408.0198 History and Overview +1408.0200 Robotics +1408.0203 +1408.0205 High Energy Astrophysical Phenomena +1408.0209 Strongly Correlated Electrons +1408.0211 Functional Analysis +1408.0213 Information Theory +1408.0215 Instrumentation and Detectors +1408.0216 +1408.0218 Astrophysics of Galaxies +1408.0219 Astrophysics of Galaxies +1408.0231 +1408.0238 Differential Geometry +1408.0242 Differential Geometry +1408.0243 Differential Geometry +1408.0254 Analysis of PDEs +1408.0255 Biological Physics +1408.0256 Chaotic Dynamics +1408.0258 Computer Science and Game Theory +1408.0261 Number Theory +1408.0274 Mesoscale and Nanoscale Physics +1408.0277 Mesoscale and Nanoscale Physics +cond-mat/0201396 +cond-mat/0309082 +0807.1132 +0807.1994 Functional Analysis +0808.0179 +0808.2419 Functional Analysis +0812.4731 +0908.0286 +0908.2977 Other Condensed Matter +0909.0892 Computer Science and Game Theory +1002.2372 Classical Analysis and ODEs +1002.2440 Computational Complexity +1002.2754 High Energy Astrophysical Phenomena +1003.5853 Classical Analysis and ODEs +1004.0650 Dynamical Systems +1011.4488 Analysis of PDEs +1012.3905 Combinatorics +1103.0760 Atomic Physics +1104.1861 Algebraic Geometry +1104.4442 Classical Analysis and ODEs +1108.1632 Trading and Market Microstructure +1109.1518 Geometric Topology +1109.2236 Phenomenology +1109.5691 Cosmology and Nongalactic Astrophysics +1110.2720 +1111.6272 Statistical Mechanics +1201.6627 Quantum Gases +1202.5599 Information Theory +1203.1384 Mesoscale and Nanoscale Physics +1204.0792 +1204.6514 Chaotic Dynamics +1206.2616 Spectral Theory +1206.3220 Pricing of Securities +1207.2122 Quantum Gases +1209.0965 Phenomenology +1209.5750 +1209.5889 Metric Geometry +1209.5893 Differential Geometry +1210.0043 Differential Geometry +1210.1574 Cosmology and Nongalactic Astrophysics +1210.4939 Probability +1211.1199 Strongly Correlated Electrons +1211.3557 Algebraic Topology +1211.5084 Computational Geometry +1212.1701 +1212.3508 Rings and Algebras +1301.5887 Social and Information Networks +1302.1237 +1302.1338 Cryptography and Security +1302.6731 Classical Analysis and ODEs +1303.3354 Chaotic Dynamics +1304.5572 Biological Physics +1304.5636 Analysis of PDEs +1304.5832 +1304.7065 Complex Variables +1305.2266 Combinatorics +1305.2840 Experiment +1305.3085 +1305.6395 Formal Languages and Automata Theory +1306.0225 Optimization and Control +1306.0852 Classical Analysis and ODEs +1306.2033 High Energy Astrophysical Phenomena +1307.2435 Computation +1307.3559 Theory +1307.4018 Statistical Mechanics +1307.5134 Functional Analysis +1308.1649 +1308.5183 Cosmology and Nongalactic Astrophysics +1308.5385 Classical Analysis and ODEs +1309.1637 Phenomenology +1309.4323 Computational Geometry +1309.4517 Algebraic Geometry +1309.5056 Populations and Evolution +1309.7568 Fluid Dynamics +1310.1533 Methodology +1310.2281 Statistical Mechanics +1310.2869 Spectral Theory +1310.4564 Analysis of PDEs +1310.8385 Numerical Analysis +1310.8410 Phenomenology +1310.8582 Quantum Gases +1311.0858 Combinatorics +1311.1379 +1311.1536 +1311.1609 Metric Geometry +1311.2115 Learning +1311.3383 Geometric Topology +1311.3984 Physics and Society +1311.4826 Lattice +1311.5182 Dynamical Systems +1311.5433 Strongly Correlated Electrons +1311.6256 Dynamical Systems +1312.0416 Statistics Theory +1312.0707 Numerical Analysis +1312.1387 Probability +1312.2088 Optics +1312.2294 Analysis of PDEs +1312.5185 Numerical Analysis +1312.6458 Mesoscale and Nanoscale Physics +1312.6542 Numerical Analysis +1312.6561 +1401.5323 Earth and Planetary Astrophysics +1401.6039 Information Theory +1401.7373 Classical Analysis and ODEs +1401.8197 +1402.0255 +1402.1725 Theory +1402.1805 Quantitative Methods +1402.2579 Plasma Physics +1402.3205 Rings and Algebras +1402.3384 Cryptography and Security +1402.4292 +1402.4504 Differential Geometry +1402.4640 Soft Condensed Matter +1402.4659 Logic +1402.4788 Functional Analysis +1403.1942 Learning +1403.2186 Optimization and Control +1403.2202 Chaotic Dynamics +1403.2528 Analysis of PDEs +1403.2612 Materials Science +1403.2792 Quantum Gases +1403.4230 Cosmology and Nongalactic Astrophysics +1403.4275 Differential Geometry +1403.4665 Materials Science +1403.5420 Cosmology and Nongalactic Astrophysics +1403.5424 Cosmology and Nongalactic Astrophysics +1403.7361 Materials Science +1403.7523 Superconductivity +1404.0813 Mesoscale and Nanoscale Physics +1404.2680 +1404.2916 +1404.3084 Digital Libraries +1404.4369 +1404.5013 Combinatorics +1404.5307 Theory +1404.5378 Optimization and Control +1404.6264 Optimization and Control +1404.6878 Databases +1404.6910 +1405.0027 Optimization and Control +1405.0830 Strongly Correlated Electrons +1405.1186 Strongly Correlated Electrons +1405.1640 +1405.2375 General Mathematics +1405.2607 Analysis of PDEs +1405.2670 Theory +1405.4068 Quantum Gases +1405.4774 Molecular Networks +1405.4864 Phenomenology +1405.5307 Differential Geometry +1405.5575 Methodology +1405.6204 Phenomenology +1405.6892 Chemical Physics +1405.6929 Combinatorics +1405.6951 Superconductivity +1405.7607 Mesoscale and Nanoscale Physics +1406.0179 Theory +1406.0260 Strongly Correlated Electrons +1406.0733 Metric Geometry +1406.2711 Strongly Correlated Electrons +1406.2945 Dynamical Systems +1406.3396 Portfolio Management +1406.4435 Superconductivity +1406.4971 Geophysics +1406.5952 Probability +1406.5991 Strongly Correlated Electrons +1406.6254 Theory +1406.6911 Theory +1406.7229 Classical Analysis and ODEs +1406.7750 Populations and Evolution +1406.7868 Functional Analysis +1407.0227 Statistical Mechanics +1407.1191 Plasma Physics +1407.1664 Physics and Society +1407.1758 +1407.2703 Fluid Dynamics +1407.2784 +1407.3261 Number Theory +1407.4936 Differential Geometry +1407.5065 Mesoscale and Nanoscale Physics +1407.5696 Data Analysis, Statistics and Probability +1407.7288 Social and Information Networks +1407.7294 Data Structures and Algorithms +1408.0246 Strongly Correlated Electrons +1408.0875 Theory +1408.3057 Cosmology and Nongalactic Astrophysics +1408.4461 Social and Information Networks +1408.4516 Superconductivity +1408.5376 Differential Geometry +1408.5686 +1408.6235 Statistical Mechanics +1408.6654 Fluid Dynamics +1408.6728 Category Theory +1408.6854 +1409.0256 Mesoscale and Nanoscale Physics +1409.1733 Statistical Mechanics +1409.2131 Disordered Systems and Neural Networks +1409.3907 Dynamical Systems +1409.4104 +1409.4176 Solar and Stellar Astrophysics +1409.4885 +1409.5489 Materials Science +1410.0272 Mesoscale and Nanoscale Physics +1410.0579 Atomic Physics +1410.0774 Disordered Systems and Neural Networks +1410.1968 Operator Algebras +1410.3252 Phenomenology +1410.3726 Computer Vision and Pattern Recognition +1410.5875 Materials Science +1410.7262 Strongly Correlated Electrons +1410.7659 Learning +1410.7804 Astrophysics of Galaxies +1410.7948 Materials Science +1410.8013 Solar and Stellar Astrophysics +1410.8515 Probability +1410.8667 Dynamical Systems +1411.0031 Methodology +1411.0094 Numerical Analysis +1411.0345 Symplectic Geometry +1411.1312 Statistics Theory +1411.2301 Solar and Stellar Astrophysics +1411.2342 Analysis of PDEs +1411.2865 Formal Languages and Automata Theory +1411.2916 Theory +1411.3183 Representation Theory +1411.3299 Dynamical Systems +1411.3444 Physics and Society +1411.3961 Cryptography and Security +1411.4190 Group Theory +1411.4727 Quantum Algebra +1411.4778 Classical Analysis and ODEs +1411.4933 Astrophysics of Galaxies +1411.5169 History and Overview +1411.5276 Probability +1411.5349 Analysis of PDEs +1411.5577 Differential Geometry +1411.5825 Computer Vision and Pattern Recognition +1411.5958 Algebraic Geometry +1411.5961 Algebraic Geometry +1411.5972 Algebraic Geometry +1411.6064 Fluid Dynamics +1411.6103 Instrumentation and Detectors +1411.6117 Algebraic Topology +1411.6156 Learning +1411.6225 Algebraic Geometry +1411.6316 Numerical Analysis +1411.6335 Databases +1411.6396 Theory +1411.6904 Lattice +1411.6992 +1411.7312 Popular Physics +1411.7366 Differential Geometry +1411.7370 History and Philosophy of Physics +1411.7508 Machine Learning +1411.7963 Algebraic Geometry +1412.0002 Representation Theory +1412.0003 Computer Vision and Pattern Recognition +1412.0008 Cryptography and Security +1412.0009 Astrophysics of Galaxies +1412.0010 +1412.0025 Soft Condensed Matter +1412.0032 General Mathematics +1412.0034 Formal Languages and Automata Theory +1412.0035 Computer Vision and Pattern Recognition +1412.0037 Optimization and Control +1412.0043 Physics Education +1412.0049 Optics +1412.0055 Multiagent Systems +1412.0056 Computer Science and Game Theory +1412.0058 Optimization and Control +1412.0059 Physics and Society +1412.0060 Computer Vision and Pattern Recognition +1412.0062 Computer Vision and Pattern Recognition +1412.0065 Computer Vision and Pattern Recognition +1412.0069 Computer Vision and Pattern Recognition +1412.0070 Probability +1412.0076 Probability +1412.0077 Atmospheric and Oceanic Physics +1412.0078 Dynamical Systems +1412.0080 Dynamical Systems +1412.0084 Symplectic Geometry +1412.0085 Logic +1412.0087 Algebraic Geometry +1412.0089 +1412.0090 Probability +1412.0091 Statistical Mechanics +1412.0100 Computer Vision and Pattern Recognition +1412.0103 Networking and Internet Architecture +1412.0104 Experiment +1412.0106 Experiment +1412.0111 Computer Vision and Pattern Recognition +1412.0118 +1412.0120 Operator Algebras +1412.0122 Algebraic Geometry +1412.0124 Phenomenology +1412.0126 Optimization and Control +1412.0130 Combinatorics +1412.0131 Social and Information Networks +1412.0132 Classical Analysis and ODEs +1412.0134 Discrete Mathematics +1412.0136 +1412.0138 +1412.0139 Experiment +1412.0140 Strongly Correlated Electrons +1412.0143 Computational Geometry +1412.0147 Differential Geometry +1412.0153 Logic +1412.0155 Differential Geometry +1412.0156 Learning +1412.0157 Materials Science +1412.0159 Optimization and Control +1412.0160 Soft Condensed Matter +1412.0161 Instrumentation and Methods for Astrophysics +1412.0169 Differential Geometry +1412.0176 Biomolecules +1412.0179 Combinatorics +1412.0187 Numerical Analysis +1412.0188 Representation Theory +1412.0191 Combinatorics +1412.0196 Combinatorics +1412.0205 +1412.0206 Numerical Analysis +1412.0207 Quantitative Methods +1412.0209 Materials Science +1412.0218 Discrete Mathematics +1412.0219 Analysis of PDEs +1412.0220 Probability +1412.0221 Complex Variables +1412.0224 Phenomenology +1412.0227 Experiment +1412.0229 Probability +1412.0232 Algebraic Geometry +1412.0235 Mesoscale and Nanoscale Physics +1412.0240 Experiment +1412.0241 +1412.0242 Methodology +1412.0245 Combinatorics +1412.0248 Applications +1412.0250 Geophysics +1412.0251 Computer Vision and Pattern Recognition +1412.0252 Information Theory +1412.0260 Information Theory +1412.0261 Soft Condensed Matter +1412.0269 Phenomenology +1412.0270 Analysis of PDEs +1412.0275 Analysis of PDEs +1412.0277 Spectral Theory +1412.0284 Earth and Planetary Astrophysics +1412.0285 Cosmology and Nongalactic Astrophysics +1412.0288 Solar and Stellar Astrophysics +1412.0295 Phenomenology +1412.0296 Computer Vision and Pattern Recognition +1412.0299 Optics +1412.0301 Systems and Control +1412.0302 Quantum Algebra +1412.0305 Information Theory +1412.0307 Neural and Evolutionary Computing +1412.0308 Group Theory +1412.0313 Statistics Theory +1412.0315 Artificial Intelligence +1412.0316 Representation Theory +1412.0319 Spectral Theory +1412.0323 Spectral Theory +1412.0326 Classical Analysis and ODEs +1412.0327 Social and Information Networks +1412.0328 Chaotic Dynamics +1412.0331 Analysis of PDEs +1412.0335 +1412.0337 Mesoscale and Nanoscale Physics +1412.0339 Mesoscale and Nanoscale Physics +1412.0344 Combinatorics +1412.0347 Differential Geometry +1412.0351 +1412.0357 Lattice +1412.0361 Rings and Algebras +1412.0362 Analysis of PDEs +1412.0363 Neurons and Cognition +1412.0366 Networking and Internet Architecture +1412.0367 Applications +1412.0374 +1412.0375 Phenomenology +1412.0376 Numerical Analysis +1412.0377 +1412.0379 Statistics Theory +1412.0384 Instrumentation and Methods for Astrophysics +1412.0387 +1412.0390 Instrumentation and Methods for Astrophysics +1412.0392 Combinatorics +1412.0394 Optics +1412.0395 Instrumentation and Methods for Astrophysics +1412.0403 Atomic Physics +1412.0404 High Energy Astrophysical Phenomena +1412.0406 Representation Theory +1412.0408 Lattice +1412.0411 +1412.0413 Lattice +1412.0418 Materials Science +1412.0420 Combinatorics +1412.0421 Logic +1412.0422 Systems and Control +1412.0423 Computational Complexity +1412.0426 Computers and Society +1412.0437 Symplectic Geometry +1412.0438 Theory +1412.0444 Combinatorics +1412.0445 Physics and Society +1412.0447 General Topology +1412.0448 +1412.0460 Superconductivity +1412.0465 Differential Geometry +1412.0470 Classical Analysis and ODEs +1412.0481 Instrumentation and Methods for Astrophysics +1412.0482 Space Physics +1412.0487 Mesoscale and Nanoscale Physics +1412.0488 Quantitative Methods +1412.0496 +1412.0500 Experiment +1412.0504 Materials Science +1412.0506 Optics +1412.0509 Dynamical Systems +1412.0515 Combinatorics +1412.0516 Materials Science +1412.0519 General Mathematics +1412.0520 Phenomenology +1412.0522 Operator Algebras +1412.0525 Robotics +1412.0526 +1412.0527 Software Engineering +1412.0529 Cryptography and Security +1412.0530 Theory +1412.0533 Chaotic Dynamics +1412.0536 Phenomenology +1412.0537 Formal Languages and Automata Theory +1412.0538 Data Structures and Algorithms +1412.0541 Rings and Algebras +1412.0542 Mathematical Finance +1412.0544 Computational Physics +1412.0550 Optimization and Control +1412.0551 Spectral Theory +1412.0552 +1412.0561 Computation +1412.0565 Numerical Analysis +1412.0566 Dynamical Systems +1412.0567 Dynamical Systems +1412.0572 Geometric Topology +1412.0573 +1412.0580 Optics +1412.0581 Statistical Mechanics +1412.0588 Data Structures and Algorithms +1412.0589 Differential Geometry +1412.0591 Robotics +1412.0593 Phenomenology +1412.0594 History and Philosophy of Physics +1412.0595 Distributed, Parallel, and Cluster Computing +1412.0596 Lattice +1412.0598 +1412.0599 Probability +1412.0600 Cryptography and Security +1412.0601 Differential Geometry +1412.0603 Neurons and Cognition +1412.0607 Statistics Theory +1412.0608 Analysis of PDEs +1412.0609 Functional Analysis +1412.0610 High Energy Astrophysical Phenomena +1412.0612 Theory +1412.0615 Quantum Gases +1412.0617 Networking and Internet Architecture +1412.0625 Programming Languages +1412.0628 Combinatorics +1412.0629 Dynamical Systems +1412.0630 Robotics +1412.0638 Algebraic Geometry +1412.0639 Data Structures and Algorithms +1412.0643 Optimization and Control +1412.0644 Networking and Internet Architecture +1412.0647 Phenomenology +1412.0649 Chemical Physics +alg-geom/9501007 Algebraic Geometry +alg-geom/9505016 Algebraic Geometry +astro-ph/0208026 +math/0509109 Dynamical Systems +math/0612131 Dynamical Systems +quant-ph/0606049 +0704.0028 Classical Analysis and ODEs +0910.4585 Phenomenology +0912.1018 Commutative Algebra +1003.1419 Probability +1008.2225 Statistical Mechanics +1102.4588 Geometric Topology +1106.4102 Logic in Computer Science +1107.0774 Quantum Gases +1108.3045 Geometric Topology +1109.0397 Distributed, Parallel, and Cluster Computing +1109.5176 Theory +1109.6321 Theory +1204.2118 Quantum Gases +1204.4396 Cosmology and Nongalactic Astrophysics +1206.1260 Geometric Topology +1206.2774 Networking and Internet Architecture +1206.5783 Commutative Algebra +1209.5254 Probability +1210.1135 Geometric Topology +1211.0221 Differential Geometry +1211.1724 +1212.3616 Theory +1212.5986 Combinatorics +1301.2587 Mesoscale and Nanoscale Physics +1301.4073 Commutative Algebra +1301.7315 Algebraic Geometry +1303.4430 Symplectic Geometry +1303.4722 Cosmology and Nongalactic Astrophysics +1304.3635 Dynamical Systems +1304.6504 Analysis of PDEs +1305.0004 Theory +1305.2410 Materials Science +1305.4220 Fluid Dynamics +1305.4614 Number Theory +1306.1033 Representation Theory +1306.1586 +1306.1795 +1306.2746 Geometric Topology +1306.2982 Optics +1306.3731 Superconductivity +1306.4751 Strongly Correlated Electrons +1306.5573 +1307.6113 Materials Science +1307.8386 Combinatorics +1308.1167 Superconductivity +1308.3829 Logic in Computer Science +1308.6133 Superconductivity +1309.0826 Numerical Analysis +1309.3266 Theory +1309.3678 +1309.6880 Analysis of PDEs +1310.6707 Combinatorics +1310.7014 Dynamical Systems +1311.0347 Networking and Internet Architecture +1311.1092 Phenomenology +1311.4954 Functional Analysis +1311.5383 Probability +1311.5472 Mesoscale and Nanoscale Physics +1311.7037 Optics +1311.7671 Functional Analysis +1312.3240 Computer Vision and Pattern Recognition +1312.4657 Quantum Gases +1312.7212 Phenomenology +1401.0045 Earth and Planetary Astrophysics +1401.0519 Strongly Correlated Electrons +1401.3806 Probability +1401.4806 Mesoscale and Nanoscale Physics +1401.6233 Atomic Physics +1401.7663 Materials Science +1402.0286 Materials Science +1402.0775 K-Theory and Homology +1402.2130 Complex Variables +1402.2287 Phenomenology +1402.3632 Genomics +1402.4355 +1402.5667 Fluid Dynamics +1403.1630 Number Theory +1403.2453 Differential Geometry +1403.3837 Combinatorics +1403.5529 Disordered Systems and Neural Networks +1403.6791 Phenomenology +1404.0225 Theory +1404.1832 Phenomenology +1404.3648 Lattice +1404.3697 Physics and Society +1404.3975 Statistical Mechanics +1404.4778 Soft Condensed Matter +1404.5962 Phenomenology +1404.6059 Artificial Intelligence +1404.6315 Quantum Gases +1404.6630 Statistical Mechanics +1405.0498 Phenomenology +1405.2080 Phenomenology +1405.4379 Statistical Mechanics +1405.5379 +1405.5434 Soft Condensed Matter +1406.0406 Phenomenology +1406.2906 Strongly Correlated Electrons +1406.4070 Combinatorics +1406.5795 Methodology +1406.6667 Databases +1407.3186 Mesoscale and Nanoscale Physics +1407.3606 Materials Science +1407.3706 Optimization and Control +1407.4170 Materials Science +1407.4885 Computers and Society +1407.5034 Mesoscale and Nanoscale Physics +1407.5251 Number Theory +1407.6331 Atmospheric and Oceanic Physics +1407.6553 Combinatorics +1407.6560 Information Theory +1407.6890 Physics and Society +1407.7267 Networking and Internet Architecture +1407.7324 Number Theory +1407.7700 Combinatorics +1407.7796 +1407.7851 +1407.7853 Tissues and Organs +1407.7856 Solar and Stellar Astrophysics +1407.7857 Phenomenology +1407.7864 Solar and Stellar Astrophysics +1407.7872 Functional Analysis +1407.7873 Combinatorics +1407.7881 Mesoscale and Nanoscale Physics +1407.7884 Statistical Mechanics +1407.7887 Data Structures and Algorithms +1407.7888 Probability +1407.7891 +1407.7894 Number Theory +1407.7898 Functional Analysis +1407.7899 Statistical Mechanics +1407.7902 Number Theory +1407.7909 +1407.7916 Combinatorics +1407.7917 Data Structures and Algorithms +1407.7920 Operator Algebras +1407.7922 Algebraic Geometry +1407.7924 Computational Engineering, Finance, and Science +1407.7927 Classical Analysis and ODEs +1407.7928 Logic in Computer Science +1407.7929 Logic in Computer Science +1407.7930 Data Structures and Algorithms +1407.7931 Logic in Computer Science +1407.7932 Programming Languages +1407.7933 Artificial Intelligence +1407.7934 Artificial Intelligence +1407.7937 Computer Science and Game Theory +1407.7940 Mesoscale and Nanoscale Physics +1407.7941 Dynamical Systems +1407.7942 Classical Analysis and ODEs +1407.7944 Classical Analysis and ODEs +1407.7945 Classical Analysis and ODEs +1407.7946 Classical Analysis and ODEs +1407.7947 Instrumentation and Detectors +1407.7948 Classical Analysis and ODEs +1407.7949 Classical Analysis and ODEs +1407.7950 Quantum Gases +1407.7953 Medical Physics +1407.7956 Rings and Algebras +1407.7962 Plasma Physics +1407.7963 Phenomenology +1407.7964 Information Theory +1407.7969 Machine Learning +1407.7974 +1407.7975 Materials Science +1407.7978 Analysis of PDEs +1407.7980 Mesoscale and Nanoscale Physics +1407.7988 Populations and Evolution +1407.7990 Optics +1407.7992 Soft Condensed Matter +1407.7993 Biological Physics +1407.7996 Materials Science +1407.7997 Populations and Evolution +1407.7999 Neurons and Cognition +1407.8003 Accelerator Physics +1407.8007 Human-Computer Interaction +1407.8013 Chaotic Dynamics +1407.8017 Populations and Evolution +1407.8024 Pricing of Securities +1407.8026 Plasma Physics +1407.8029 Numerical Analysis +1407.8031 Discrete Mathematics +1407.8034 Information Theory +1407.8037 Plasma Physics +1407.8040 Optimization and Control +1407.8042 Machine Learning +1407.8043 Pattern Formation and Solitons +1407.8045 Combinatorics +1407.8047 Analysis of PDEs +1407.8057 Theory +1407.8062 Optics +1407.8066 Experiment +1407.8067 Machine Learning +1407.8068 Probability +1407.8072 Representation Theory +1407.8075 Algebraic Geometry +1407.8078 Numerical Analysis +1407.8086 Number Theory +1407.8088 Learning +1407.8096 Chemical Physics +1407.8102 Dynamical Systems +1407.8105 Cosmology and Nongalactic Astrophysics +1407.8106 Dynamical Systems +1407.8111 Complex Variables +1407.8112 High Energy Astrophysical Phenomena +1407.8117 Instrumentation and Methods for Astrophysics +1407.8118 Strongly Correlated Electrons +1407.8119 Methodology +1407.8121 Computer Vision and Pattern Recognition +1407.8122 +1407.8123 Computer Vision and Pattern Recognition +1407.8126 Instrumentation and Methods for Astrophysics +1407.8129 Combinatorics +1407.8134 Social and Information Networks +1407.8139 +1407.8146 +1407.8148 +1407.8151 Artificial Intelligence +1407.8161 Computer Science and Game Theory +1407.8165 +cond-mat/0512449 Statistical Mechanics +math/0303106 Rings and Algebras +math/0310029 Rings and Algebras +math/0511199 Representation Theory +physics/0610224 General Physics +0710.3912 Differential Geometry +0803.2072 +1004.2276 +1006.2671 Combinatorics +1009.5836 Solar and Stellar Astrophysics +1010.0742 Classical Analysis and ODEs +1012.5257 Representation Theory +1101.0600 Number Theory +1103.3809 Combinatorics +1111.3486 Probability +1201.1060 Number Theory +1203.3069 Strongly Correlated Electrons +1203.4186 Dynamical Systems +1206.1526 Complex Variables +1207.0120 Cryptography and Security +1208.3169 Atomic Physics +1209.4986 Combinatorics +1209.4988 Combinatorics +1209.5361 Instrumentation and Methods for Astrophysics +1210.1973 Analysis of PDEs +1211.0272 +1211.2435 Probability +1211.6244 Social and Information Networks +1211.6456 Analysis of PDEs +1212.6248 Algebraic Geometry +1301.4379 Materials Science +1302.1473 Analysis of PDEs +1302.2213 Statistics Theory +1303.2388 Optimization and Control +1303.5001 Probability +1303.7176 Differential Geometry +1304.6830 +1305.4571 Statistics Theory +1306.3478 Combinatorics +1306.4469 Applications +1307.0743 Number Theory +1307.6624 Number Theory +1308.0513 +1308.4808 +1309.0023 +1309.2718 Superconductivity +1309.4498 Numerical Analysis +1310.2510 Classical Analysis and ODEs +1310.5984 Combinatorics +1310.6638 +1310.6780 Data Structures and Algorithms +1310.6929 Probability +1311.2524 Computer Vision and Pattern Recognition +1311.3180 +1311.4202 K-Theory and Homology +1311.5497 Pattern Formation and Solitons +1312.2933 Differential Geometry +1312.6830 +1401.0154 Probability +1401.0304 Learning +1401.4159 Combinatorics +1401.5961 Quantum Gases +1402.1450 Logic in Computer Science +1402.1944 Statistical Mechanics +1402.3244 Experiment +1402.4121 +1402.5049 Phenomenology +1403.0103 Algebraic Geometry +1403.0200 Rings and Algebras +1403.2397 Methodology +1403.3824 +1403.3971 Operator Algebras +1403.4733 Astrophysics of Galaxies +1403.6886 Computation +1404.0165 Dynamical Systems +1404.1319 Quantum Gases +1404.1608 +1404.1788 Quantum Gases +1404.4224 Instrumentation and Methods for Astrophysics +1404.5524 Molecular Networks +1404.5623 High Energy Astrophysical Phenomena +1404.6800 Combinatorics +1405.0959 Phenomenology +1405.5921 Mesoscale and Nanoscale Physics +1405.7398 +1405.7930 Fluid Dynamics +1406.1424 Phenomenology +1406.1440 Machine Learning +1406.1728 +1406.4793 +1406.7017 Combinatorics +1407.0121 Statistical Mechanics +1407.0197 Theory +1407.0350 Experiment +1407.0558 Experiment +1407.0603 Experiment +1407.1336 Pattern Formation and Solitons +1407.1438 Theory +1407.1562 Mesoscale and Nanoscale Physics +1407.2856 Experiment +1407.2900 Theory +1407.2951 Cosmology and Nongalactic Astrophysics +1407.3839 Phenomenology +1407.4063 Atomic Physics +1407.5187 Theory +1407.5617 Optics +1407.5844 +1407.7284 Mesoscale and Nanoscale Physics +1407.7636 Multimedia +1407.7831 Analysis of PDEs +1408.0449 Strongly Correlated Electrons +1408.1978 +1408.3127 Group Theory +1408.3277 Atomic Physics +1408.3822 Theory +1408.4707 Mesoscale and Nanoscale Physics +1408.5209 Quantum Gases +1408.5337 Theory +1408.5389 Learning +1408.6343 Experiment +1408.6778 Materials Science +1408.6937 Methodology +1409.0230 Dynamical Systems +1409.2022 Solar and Stellar Astrophysics +1409.2464 Cosmology and Nongalactic Astrophysics +1409.2521 Astrophysics of Galaxies +1409.2734 +1409.2976 +1409.3247 Earth and Planetary Astrophysics +1409.3368 Theory +1409.4456 +1409.4536 +1409.5077 Theory +1409.5588 Earth and Planetary Astrophysics +1410.0131 Combinatorics +1410.0251 Accelerator Physics +1410.0701 +1410.0810 Solar and Stellar Astrophysics +1410.1593 Networking and Internet Architecture +1410.2200 Algebraic Topology +1410.2459 Algebraic Geometry +1410.2932 Algebraic Geometry +1410.3817 Populations and Evolution +1410.4481 +1410.5012 Instrumentation and Detectors +1410.5741 Mesoscale and Nanoscale Physics +1410.5808 +1410.5811 Instrumentation and Detectors +1410.5812 Cosmology and Nongalactic Astrophysics +1410.5813 +1410.5814 Cosmology and Nongalactic Astrophysics +1410.5815 Computers and Society +1410.5816 Computers and Society +1410.5824 Strongly Correlated Electrons +1410.5827 Solar and Stellar Astrophysics +1410.5842 Solar and Stellar Astrophysics +1410.5845 Computational Complexity +1410.5847 Analysis of PDEs +1410.5850 Optimization and Control +1410.5851 Quantitative Methods +1410.5856 Differential Geometry +1410.5858 +1410.5860 Soft Condensed Matter +1410.5861 Computer Vision and Pattern Recognition +1410.5863 Group Theory +1410.5867 Numerical Analysis +1410.5868 Algebraic Geometry +1410.5870 Instrumentation and Methods for Astrophysics +1410.5872 Information Theory +1410.5876 Differential Geometry +1410.5877 Computation and Language +1410.5878 Functional Analysis +1410.5881 Functional Analysis +1410.5884 Learning +1410.5885 Methodology +1410.5892 Quantum Algebra +1410.5894 Computer Vision and Pattern Recognition +1410.5896 Theory +1410.5898 Computational Physics +1410.5903 Combinatorics +1410.5904 Cryptography and Security +1410.5907 Human-Computer Interaction +1410.5913 Probability +1410.5914 Quantitative Methods +1410.5915 Phenomenology +1410.5920 Machine Learning +1410.5923 Rings and Algebras +1410.5925 Optimization and Control +1410.5926 Computer Vision and Pattern Recognition +1410.5928 Disordered Systems and Neural Networks +1410.5931 Solar and Stellar Astrophysics +1410.5932 Information Theory +1410.5934 Differential Geometry +1410.5936 Accelerator Physics +1410.5937 Rings and Algebras +1410.5941 Materials Science +1410.5942 Materials Science +1410.5944 Networking and Internet Architecture +1410.5946 Accelerator Physics +1410.5949 Instrumentation and Methods for Astrophysics +1410.5950 +1410.5951 Accelerator Physics +1410.5955 Computational Finance +1410.5959 Classical Analysis and ODEs +1410.5961 +1410.5962 Mesoscale and Nanoscale Physics +1410.5964 Accelerator Physics +1410.5967 Data Structures and Algorithms +1410.5968 Combinatorics +1410.5970 Probability +1410.5974 +1410.5976 Distributed, Parallel, and Cluster Computing +1410.5977 Numerical Analysis +1410.5981 Lattice +1410.5987 Mesoscale and Nanoscale Physics +1410.5988 Differential Geometry +1410.5989 Group Theory +1410.5990 Accelerator Physics +1410.5993 Logic in Computer Science +1410.5995 Differential Geometry +1410.5998 Symplectic Geometry +1410.6000 Accelerator Physics +1410.6001 Social and Information Networks +1410.6004 Mesoscale and Nanoscale Physics +1410.6005 Statistical Finance +1410.6006 Analysis of PDEs +1410.6013 +1410.6021 Dynamical Systems +1410.6024 Complex Variables +1410.6025 Popular Physics +1410.6028 Information Theory +1410.6030 Data Structures and Algorithms +1410.6031 Neurons and Cognition +1410.6033 Statistics Theory +1410.6034 Optics +1410.6035 Phenomenology +1410.6039 Logic in Computer Science +1410.6044 Logic in Computer Science +1410.6056 Optics +1410.6061 Analysis of PDEs +1410.6069 Experiment +1410.6075 Systems and Control +1410.6078 Experiment +1410.6081 General Topology +1410.6084 Economics +1410.6090 Group Theory +1410.6093 Learning +1410.6094 Information Theory +1410.6098 Pattern Formation and Solitons +1410.6101 Classical Analysis and ODEs +1410.6102 Classical Analysis and ODEs +1410.6106 Geophysics +1410.6107 Phenomenology +1410.6125 Analysis of PDEs +1410.6126 Computer Vision and Pattern Recognition +1410.6128 Analysis of PDEs +1410.6130 Solar and Stellar Astrophysics +1410.6137 Numerical Analysis +1410.6146 Distributed, Parallel, and Cluster Computing +0811.0917 Theory +0908.3451 Phenomenology +1001.4201 Probability +1010.5933 Probability +1110.4477 Data Analysis, Statistics and Probability +1111.0196 Algebraic Geometry +1112.6275 Logic in Computer Science +1204.3826 Number Theory +1205.0503 Combinatorics +1205.0953 Statistics Theory +1206.1585 Number Theory +1208.0682 Logic in Computer Science +1208.1850 Phenomenology +1208.4860 +1208.5973 Numerical Analysis +1210.1077 +1210.1192 Graphics +1210.1766 Learning +1210.6328 Statistics Theory +1210.6774 +1211.3932 Optimization and Control +1211.6582 Atmospheric and Oceanic Physics +1212.3782 Discrete Mathematics +1212.4364 Theory +1301.6220 Pattern Formation and Solitons +1301.6541 Pattern Formation and Solitons +1302.2894 Phenomenology +1302.3116 Computer Science and Game Theory +1302.3652 Geometric Topology +1302.5378 Atomic Physics +1303.6435 Atmospheric and Oceanic Physics +1304.2423 Popular Physics +1304.7027 Plasma Physics +1304.7909 Strongly Correlated Electrons +1305.2662 +1305.2665 Quantum Algebra +1305.3534 Probability +1305.6941 Statistical Mechanics +1305.7402 Cosmology and Nongalactic Astrophysics +1306.0308 Machine Learning +1306.1079 Optimization and Control +1306.2921 Fluid Dynamics +1306.3343 Learning +1306.6709 Learning +1307.0813 Machine Learning +1307.1723 Physics and Society +1307.2497 Theory +1307.3363 +1307.3385 Materials Science +1307.3387 Quantum Gases +1307.4023 +1307.4134 Mesoscale and Nanoscale Physics +1307.4698 +1307.6034 +1307.6233 Combinatorics +1307.7340 Social and Information Networks +1307.7347 Superconductivity +1308.3626 Quantum Gases +1308.4163 Earth and Planetary Astrophysics +1308.6277 General Physics +1309.1932 Analysis of PDEs +1309.2105 +1309.3985 Numerical Analysis +1309.4282 +1309.4543 Chemical Physics +1309.4558 Mesoscale and Nanoscale Physics +1309.7066 Networking and Internet Architecture +1309.7292 Soft Condensed Matter +1309.7750 Learning +1310.1094 Strongly Correlated Electrons +1310.1666 Exactly Solvable and Integrable Systems +1310.1695 Superconductivity +1310.4430 Mesoscale and Nanoscale Physics +1310.5505 Optics +1310.6290 Soft Condensed Matter +1310.6316 Biological Physics +1310.6479 Theory +1310.6574 Mesoscale and Nanoscale Physics +1310.6785 Quantum Gases +1310.6956 High Energy Astrophysical Phenomena +1310.7419 Computer Science and Game Theory +1310.7472 Differential Geometry +1310.7593 Phenomenology +1310.7836 Phenomenology +1311.0450 Exactly Solvable and Integrable Systems +1311.3559 Materials Science +1311.4341 Lattice +1311.6148 Group Theory +1311.6157 Chemical Physics +1312.1187 Distributed, Parallel, and Cluster Computing +1312.3639 Strongly Correlated Electrons +1312.4117 Optics +1312.4950 Mesoscale and Nanoscale Physics +1312.6347 Instrumentation and Detectors +1312.6528 Phenomenology +1401.1176 Strongly Correlated Electrons +1401.1258 Networking and Internet Architecture +1401.4760 Experiment +1401.4799 Information Theory +1401.6351 Plasma Physics +1401.6607 Optimization and Control +1401.7406 Computer Science and Game Theory +1401.8022 Information Theory +1401.8187 Differential Geometry +1402.0074 Algebraic Geometry +1402.0723 Solar and Stellar Astrophysics +1402.0892 Combinatorics +1402.1051 Logic in Computer Science +1402.1281 Statistical Finance +1402.2245 Logic in Computer Science +1402.2307 Analysis of PDEs +1402.2449 +1402.2455 Medical Physics +1402.2472 Earth and Planetary Astrophysics +1402.2473 Numerical Analysis +1402.2502 +1402.2642 +1402.2651 Analysis of PDEs +1402.2659 Mesoscale and Nanoscale Physics +1402.2661 Chemical Physics +1402.2663 Combinatorics +1402.2667 Learning +1402.2668 Lattice +1402.2680 Networking and Internet Architecture +1402.2688 Differential Geometry +1402.2690 Fluid Dynamics +1402.2691 Differential Geometry +1402.2693 Strongly Correlated Electrons +1402.2696 Adaptation and Self-Organizing Systems +1402.2697 Chemical Physics +1402.2701 Data Structures and Algorithms +1402.2703 Statistics Theory +1402.2704 Populations and Evolution +1402.2711 Chemical Physics +1402.2713 Computation +1402.2714 Geometric Topology +1402.2715 Quantum Algebra +1402.2717 High Energy Astrophysical Phenomena +1402.2719 Phenomenology +1402.2720 Computer Vision and Pattern Recognition +1402.2722 Lattice +1402.2726 Astrophysics of Galaxies +1402.2728 Earth and Planetary Astrophysics +1402.2730 Soft Condensed Matter +1402.2732 +1402.2734 Methodology +1402.2735 Robotics +1402.2736 Earth and Planetary Astrophysics +1402.2739 Combinatorics +1402.2741 Data Structures and Algorithms +1402.2742 Disordered Systems and Neural Networks +1402.2744 Other Computer Science +1402.2745 Cryptography and Security +1402.2753 Representation Theory +1402.2757 Popular Physics +1402.2763 Optimization and Control +1402.2774 Materials Science +1402.2775 Methodology +1402.2780 Instrumentation and Detectors +1402.2786 Statistics Theory +1402.2787 Phenomenology +1402.2788 Populations and Evolution +1402.2794 Commutative Algebra +1402.2796 Computation and Language +1402.2803 Optics +1402.2806 Combinatorics +1402.2807 Databases +1402.2810 Distributed, Parallel, and Cluster Computing +1402.2813 +1402.2817 +1402.2821 Phenomenology +1402.2822 General Mathematics +1402.2823 Statistics Theory +1402.2826 Computer Vision and Pattern Recognition +1402.2841 +1402.2849 Phenomenology +1402.2853 +1402.2857 Metric Geometry +1402.2862 Dynamical Systems +1402.2867 Other Computer Science +1402.2871 Robotics +1402.2874 Geophysics +1402.2876 General Mathematics +1402.2878 Combinatorics +1402.2879 +1402.2882 Probability +1402.2887 Geophysics +1402.2890 Hardware Architecture +1402.2892 Databases +1402.2894 Hardware Architecture +1402.2899 Hardware Architecture +1402.2900 Classical Analysis and ODEs +1402.2903 Discrete Mathematics +1402.2904 Hardware Architecture +1402.2908 Logic in Computer Science +1402.2916 Combinatorics +1402.2919 +1402.2922 +1402.2923 Solar and Stellar Astrophysics +1402.2926 Instrumentation and Methods for Astrophysics +1402.2929 Solar and Stellar Astrophysics +1402.2933 Solar and Stellar Astrophysics +1402.2934 +1402.2941 Computer Vision and Pattern Recognition +1402.2942 Pattern Formation and Solitons +1402.2943 Quantum Algebra +1402.2944 +1402.2946 Quantum Algebra +1402.2949 Programming Languages +1402.2954 +1402.2955 Quantum Algebra +1402.2959 Neural and Evolutionary Computing +1402.2961 Combinatorics +1402.2962 Materials Science +1402.2963 Probability +1402.2969 Combinatorics +physics/0409012 Space Physics +0707.1890 Theory +0801.4677 Algebraic Geometry +0802.2894 Algebraic Geometry +1010.0032 Discrete Mathematics +1101.5220 Operator Algebras +1105.2628 Differential Geometry +1107.0168 Algebraic Geometry +1107.2378 Phenomenology +1107.3500 +1108.4257 Information Theory +1110.6923 Rings and Algebras +1111.5873 Differential Geometry +1112.3622 Quantum Algebra +1204.1767 Analysis of PDEs +1204.2473 +1205.1415 Algebraic Geometry +1205.5131 General Mathematics +1205.6425 Analysis of PDEs +1206.5365 Information Theory +1207.6542 Phenomenology +1209.3096 Analysis of PDEs +1209.3379 Analysis of PDEs +1209.4810 +1209.5504 Dynamical Systems +1210.3403 Analysis of PDEs +1210.8343 Chemical Physics +1210.8399 Disordered Systems and Neural Networks +1211.1079 Geometric Topology +1211.4001 Disordered Systems and Neural Networks +1211.4678 Theory +1301.0105 Mesoscale and Nanoscale Physics +1301.3453 Phenomenology +1301.5740 Representation Theory +1301.7659 Complex Variables +1302.1079 Information Theory +1302.2415 Optimization and Control +1303.0383 Methodology +1303.2097 Soft Condensed Matter +1303.5386 Phenomenology +1304.3684 Differential Geometry +1304.6935 +1305.1246 Quantum Algebra +1305.2568 Representation Theory +1305.3692 Applications +1305.3782 Combinatorics +1305.4289 Optimization and Control +1305.4942 Quantitative Methods +1305.5512 +1306.4435 Analysis of PDEs +1307.1740 +1309.1969 Cosmology and Nongalactic Astrophysics +1309.6969 Strongly Correlated Electrons +1310.2247 Theory +1310.2563 Group Theory +1310.4358 Number Theory +1311.2456 Data Structures and Algorithms +1311.5620 Complex Variables +1312.6857 +1401.3017 Strongly Correlated Electrons +1401.4933 +1401.7114 Information Theory +1401.8177 Cosmology and Nongalactic Astrophysics +1402.0237 Disordered Systems and Neural Networks +1402.0351 +1402.1768 +1402.2670 Cosmology and Nongalactic Astrophysics +1402.2981 Theory +1403.0790 +1403.5230 Materials Science +1404.0406 Phenomenology +1404.0409 Phenomenology +1404.0601 Pricing of Securities +1404.3489 +1404.3675 Artificial Intelligence +1404.4027 Solar and Stellar Astrophysics +1404.5280 +1404.5301 Astrophysics of Galaxies +1404.7546 High Energy Astrophysical Phenomena +1405.0817 Superconductivity +1405.2979 Quantum Gases +1405.3218 Artificial Intelligence +1405.4115 Fluid Dynamics +1405.5265 Soft Condensed Matter +1405.5363 Mesoscale and Nanoscale Physics +1405.5541 Strongly Correlated Electrons +1405.6715 Quantum Gases +1405.7187 Quantum Gases +1405.7331 Phenomenology +1406.0986 Mesoscale and Nanoscale Physics +1406.2878 Phenomenology +1406.2931 Mesoscale and Nanoscale Physics +1406.4521 Solar and Stellar Astrophysics +1406.6301 Mesoscale and Nanoscale Physics +1406.6367 Phenomenology +1406.6776 Phenomenology +1406.7368 Strongly Correlated Electrons +1407.0600 Experiment +1407.0877 +1407.1651 High Energy Astrophysical Phenomena +1407.2160 +1407.3875 Plasma Physics +1407.4150 Earth and Planetary Astrophysics +1407.4948 Cosmology and Nongalactic Astrophysics +1407.5078 Phenomenology +1407.6249 Instrumentation and Methods for Astrophysics +1407.7960 Combinatorics +1408.1653 Mesoscale and Nanoscale Physics +1408.2016 Representation Theory +1408.2855 Information Theory +1408.5426 Chemical Physics +1408.5671 Materials Science +1408.5909 Astrophysics of Galaxies +1408.6062 Differential Geometry +1408.6157 Data Structures and Algorithms +1408.6399 Astrophysics of Galaxies +1409.0007 Phenomenology +1409.0362 Combinatorics +1409.1227 Solar and Stellar Astrophysics +1409.1327 Number Theory +1409.1355 Cosmology and Nongalactic Astrophysics +1409.1805 Physics and Society +1409.2263 Mesoscale and Nanoscale Physics +1409.3496 Optimization and Control +1409.3788 +1409.4574 Algebraic Geometry +1409.5114 Computer Vision and Pattern Recognition +1409.5966 Group Theory +1409.7447 Combinatorics +1409.7649 Mesoscale and Nanoscale Physics +1409.7683 Strongly Correlated Electrons +1409.7759 Solar and Stellar Astrophysics +1409.8035 Cryptography and Security +1409.8418 Materials Science +1410.0413 Computer Science and Game Theory +1410.1029 Neurons and Cognition +1410.1487 Spectral Theory +1410.2075 Computational Complexity +1410.2082 Computation and Language +1410.2098 Neurons and Cognition +1410.2337 Molecular Networks +1410.2474 Computer Vision and Pattern Recognition +1410.2562 Atmospheric and Oceanic Physics +1410.2604 Earth and Planetary Astrophysics +1410.2607 Astrophysics of Galaxies +1410.2611 Materials Science +1410.2615 Logic +1410.2618 Mesoscale and Nanoscale Physics +1410.2622 Soft Condensed Matter +1410.2623 Complex Variables +1410.2629 Soft Condensed Matter +1410.2630 Superconductivity +1410.2632 Multiagent Systems +1410.2633 Numerical Analysis +1410.2634 Information Retrieval +1410.2639 Statistics Theory +1410.2640 Data Structures and Algorithms +1410.2642 Probability +1410.2644 Differential Geometry +1410.2645 Data Structures and Algorithms +1410.2646 Computation and Language +1410.2647 Optics +1410.2648 Earth and Planetary Astrophysics +1410.2649 Classical Analysis and ODEs +1410.2652 Computer Science and Game Theory +1410.2653 Machine Learning +1410.2656 Optics +1410.2657 Combinatorics +1410.2660 Numerical Analysis +1410.2662 Networking and Internet Architecture +1410.2663 Computer Vision and Pattern Recognition +1410.2664 +1410.2666 Geometric Topology +1410.2667 Commutative Algebra +1410.2668 Number Theory +1410.2669 Group Theory +1410.2670 Information Theory +1410.2671 Analysis of PDEs +1410.2672 Analysis of PDEs +1410.2673 Algebraic Geometry +1410.2675 Differential Geometry +1410.2679 Instrumentation and Detectors +1410.2680 Optimization and Control +1410.2681 Instrumentation and Detectors +1410.2687 Information Theory +1410.2688 Theory +1410.2690 Differential Geometry +1410.2693 Complex Variables +1410.2696 Phenomenology +1410.2698 Distributed, Parallel, and Cluster Computing +1410.2702 Information Theory +1410.2703 Analysis of PDEs +1410.2705 Data Analysis, Statistics and Probability +1410.2709 Instrumentation and Detectors +1410.2711 Astrophysics of Galaxies +1410.2717 Optics +1410.2719 Phenomenology +1410.2720 Astrophysics of Galaxies +1410.2721 Data Structures and Algorithms +1410.2724 Information Theory +1410.2725 Information Theory +1410.2726 Optimization and Control +1410.2729 Numerical Analysis +1410.2731 Computational Physics +1410.2732 +1410.2736 Data Structures and Algorithms +1410.2740 Lattice +1410.2744 Plasma Physics +1410.2745 Other Condensed Matter +1410.2755 Solar and Stellar Astrophysics +1410.2756 General Topology +1410.2757 Information Theory +1410.2761 Chaotic Dynamics +1410.2762 Phenomenology +1410.2768 Astrophysics of Galaxies +1410.2770 Networking and Internet Architecture +1410.2777 Classical Analysis and ODEs +1410.2778 Rings and Algebras +1410.2779 +1410.2781 General Physics +1410.2783 Materials Science +1410.2786 Learning +1410.2788 Numerical Analysis +1410.2792 Robotics +1410.2800 Optimization and Control +1410.2809 Functional Analysis +1410.2811 Analysis of PDEs +1410.2813 Programming Languages +1410.2814 Computational Physics +1410.2817 Computational Physics +1410.2822 Representation Theory +1410.2828 Human-Computer Interaction +1410.2832 Fluid Dynamics +1410.2833 Logic in Computer Science +1410.2838 Learning +1410.2839 Methodology +1410.2843 Methodology +1410.2845 Mesoscale and Nanoscale Physics +1410.2848 Methodology +1410.2851 Materials Science +1410.2854 Optimization and Control +1410.2856 Instrumentation and Methods for Astrophysics +1410.2858 Functional Analysis +1410.2861 Information Theory +1410.2862 Cryptography and Security +1410.2867 Information Theory +1410.2869 +1410.2880 Probability +1410.2885 Mesoscale and Nanoscale Physics +alg-geom/9612002 Algebraic Geometry +astro-ph/0001190 +astro-ph/0001441 +astro-ph/0001516 +astro-ph/0002190 +astro-ph/0002218 +astro-ph/0002470 +astro-ph/0003155 +astro-ph/0004080 +astro-ph/0004174 +astro-ph/0004227 +astro-ph/0004372 +astro-ph/0005022 +astro-ph/0005537 +astro-ph/0006018 +astro-ph/0006021 +astro-ph/0006038 +astro-ph/0006196 +astro-ph/0006349 +astro-ph/0007333 +astro-ph/0007342 +astro-ph/0008107 +astro-ph/0008239 +astro-ph/0008318 +astro-ph/0008481 +astro-ph/0009242 +astro-ph/0009492 +astro-ph/0010050 +astro-ph/0010058 +astro-ph/0010097 +astro-ph/0010185 +astro-ph/0010417 +astro-ph/0010578 +astro-ph/0010614 +astro-ph/0011030 +astro-ph/0011327 +astro-ph/0012034 +astro-ph/0012040 +astro-ph/0012239 +astro-ph/0012295 +astro-ph/0012372 +astro-ph/0101252 +astro-ph/0101368 +astro-ph/0101487 +astro-ph/0102255 +astro-ph/0103275 +astro-ph/0103276 +astro-ph/0103314 +astro-ph/0103324 +astro-ph/0103455 +astro-ph/0104032 +astro-ph/0104078 +astro-ph/0104116 +astro-ph/0104162 +astro-ph/0104166 +astro-ph/0104212 +astro-ph/0104213 +astro-ph/0104266 +astro-ph/0104349 +astro-ph/0104443 +astro-ph/0104452 +astro-ph/0104455 +astro-ph/0105124 +astro-ph/0105245 +astro-ph/0105250 +astro-ph/0105253 +astro-ph/0105337 +astro-ph/0105374 +astro-ph/0105429 +astro-ph/0105468 +astro-ph/0105509 +astro-ph/0106033 +astro-ph/0106037 +astro-ph/0106113 +astro-ph/0106144 +astro-ph/0106194 +astro-ph/0106196 +astro-ph/0106226 +astro-ph/0106468 +astro-ph/0106472 +astro-ph/0106501 +astro-ph/0106538 +astro-ph/0106555 +astro-ph/0107043 +astro-ph/0107069 +astro-ph/0107169 +astro-ph/0107233 +astro-ph/0107245 +astro-ph/0107271 +astro-ph/0107301 +astro-ph/0107306 +astro-ph/0107425 +astro-ph/0107512 +astro-ph/0107530 +astro-ph/0107578 +astro-ph/0107589 +astro-ph/0107595 +astro-ph/0108002 +astro-ph/0108027 +astro-ph/0108046 +astro-ph/0108082 +astro-ph/0109113 +astro-ph/0109209 +astro-ph/0109221 +astro-ph/0109256 +astro-ph/0109257 +astro-ph/0109296 +astro-ph/0109328 +astro-ph/0109522 +astro-ph/0110211 +astro-ph/0110237 +astro-ph/0110508 +astro-ph/0110550 +astro-ph/0110562 +astro-ph/0110579 +astro-ph/0110585 +astro-ph/0110705 +astro-ph/0111002 +astro-ph/0111067 +astro-ph/0111114 +astro-ph/0111177 +astro-ph/0111253 +astro-ph/0111367 +astro-ph/0111381 +astro-ph/0111437 +astro-ph/0111452 +astro-ph/0111483 +astro-ph/0111484 +astro-ph/0111504 +astro-ph/0112110 +astro-ph/0112391 +astro-ph/0112488 +astro-ph/0112500 +astro-ph/0112525 +astro-ph/0112560 +astro-ph/0201137 +astro-ph/0201205 +astro-ph/0201410 +astro-ph/0202021 +astro-ph/0202370 +astro-ph/0202439 +astro-ph/0203122 +astro-ph/0203273 +astro-ph/0204084 +astro-ph/0204357 +astro-ph/0204401 +astro-ph/0204527 +astro-ph/0205046 +astro-ph/0205379 +astro-ph/0206166 +astro-ph/0206459 +astro-ph/0206511 +astro-ph/0207167 +astro-ph/0207606 +astro-ph/0207673 +astro-ph/0208244 +astro-ph/0209027 +astro-ph/0209090 +astro-ph/0209100 +astro-ph/0209205 +astro-ph/0209525 +astro-ph/0210430 +astro-ph/0210464 +astro-ph/0210472 +astro-ph/0210481 +astro-ph/0210605 +astro-ph/0210656 +astro-ph/0211214 +astro-ph/0211428 +astro-ph/0211446 +astro-ph/0211450 +astro-ph/0211500 +astro-ph/0211568 +astro-ph/0211632 +astro-ph/0212113 +astro-ph/0212118 +astro-ph/0212182 +astro-ph/0212281 +astro-ph/0212347 +astro-ph/0212500 +astro-ph/0212509 +astro-ph/0301035 +astro-ph/0301191 +astro-ph/0301284 +astro-ph/0301299 +astro-ph/0302030 +astro-ph/0302144 +astro-ph/0302559 +astro-ph/0303306 +astro-ph/0303499 +astro-ph/0304006 +astro-ph/0304019 +astro-ph/0304251 +astro-ph/0304337 +astro-ph/0304446 +astro-ph/0304487 +astro-ph/0305507 +astro-ph/0306024 +astro-ph/0306038 +astro-ph/0306131 +astro-ph/0306259 +astro-ph/0306372 +astro-ph/0307278 +astro-ph/0307346 +astro-ph/0307358 +astro-ph/0307418 +astro-ph/0307485 +astro-ph/0308061 +astro-ph/0308159 +astro-ph/0308237 +astro-ph/0308324 +astro-ph/0308359 +astro-ph/0309327 +astro-ph/0309702 +astro-ph/0310112 +astro-ph/0310130 +astro-ph/0310213 +astro-ph/0310491 +astro-ph/0310522 +astro-ph/0310638 +astro-ph/0310713 +astro-ph/0310736 +astro-ph/0310866 +astro-ph/0311039 +astro-ph/0311086 +astro-ph/0311136 +astro-ph/0311146 +astro-ph/0311247 +astro-ph/0311252 +astro-ph/0311272 +astro-ph/0311278 +astro-ph/0311306 +astro-ph/0311358 +astro-ph/0311505 +astro-ph/0311596 +astro-ph/0312025 +astro-ph/0312162 +astro-ph/0312197 +astro-ph/0312346 +astro-ph/0312353 +astro-ph/0312441 +astro-ph/0312476 +astro-ph/0312482 +astro-ph/0312506 +astro-ph/0312605 +astro-ph/0312608 +astro-ph/0312650 +astro-ph/0401404 +astro-ph/0401431 +astro-ph/0401591 +astro-ph/0401595 +astro-ph/0401620 +astro-ph/0401622 +astro-ph/0401623 +astro-ph/0402039 +astro-ph/0402080 +astro-ph/0402132 +astro-ph/0402212 +astro-ph/0402286 +astro-ph/0402371 +astro-ph/0402404 +astro-ph/0403025 +astro-ph/0403141 +astro-ph/0403228 +astro-ph/0403472 +astro-ph/0403592 +astro-ph/0403694 +astro-ph/0403704 +astro-ph/0404036 +astro-ph/0404190 +astro-ph/0405005 +astro-ph/0405039 +astro-ph/0405062 +astro-ph/0405117 +astro-ph/0405122 +astro-ph/0405257 +astro-ph/0405318 +astro-ph/0405333 +astro-ph/0405347 +astro-ph/0405353 +astro-ph/0405372 +astro-ph/0405617 +astro-ph/0406032 +astro-ph/0406109 +astro-ph/0406244 +astro-ph/0406355 +astro-ph/0406409 +astro-ph/0406586 +astro-ph/0407074 +astro-ph/0407121 +astro-ph/0407150 +astro-ph/0407182 +astro-ph/0407206 +astro-ph/0407213 +astro-ph/0407262 +astro-ph/0407267 +astro-ph/0407417 +astro-ph/0407458 +astro-ph/0407494 +astro-ph/0407589 +astro-ph/0407620 +astro-ph/0408007 +astro-ph/0408054 +astro-ph/0408114 +astro-ph/0408155 +astro-ph/0408316 +astro-ph/0409040 +astro-ph/0409077 +astro-ph/0409091 +astro-ph/0409177 +astro-ph/0409227 +astro-ph/0409234 +astro-ph/0409237 +astro-ph/0409247 +astro-ph/0409261 +astro-ph/0409283 +astro-ph/0409304 +astro-ph/0409318 +astro-ph/0409331 +astro-ph/0409337 +astro-ph/0409394 +astro-ph/0409414 +astro-ph/0409538 +astro-ph/0410039 +astro-ph/0410051 +astro-ph/0410124 +astro-ph/0410172 +astro-ph/0410288 +astro-ph/0410407 +astro-ph/0410530 +astro-ph/0410541 +astro-ph/0410546 +astro-ph/0410675 +astro-ph/0411014 +astro-ph/0411110 +astro-ph/0411114 +astro-ph/0411252 +astro-ph/0411448 +astro-ph/0411509 +astro-ph/0411612 +astro-ph/0411644 +astro-ph/0411763 +astro-ph/0412093 +astro-ph/0412171 +astro-ph/0412334 +astro-ph/0412366 +astro-ph/0412401 +astro-ph/0412419 +astro-ph/0412647 +astro-ph/0501153 +astro-ph/0501160 +astro-ph/0501229 +astro-ph/0501256 +astro-ph/0501334 +astro-ph/0501341 +astro-ph/0501348 +astro-ph/0501403 +astro-ph/0501411 +astro-ph/0501412 +astro-ph/0501456 +astro-ph/0501474 +astro-ph/0501515 +astro-ph/0501640 +astro-ph/0502123 +astro-ph/0502145 +astro-ph/0502150 +astro-ph/0502251 +astro-ph/0502289 +astro-ph/0502348 +astro-ph/0502388 +astro-ph/0502426 +astro-ph/0502452 +astro-ph/0502481 +astro-ph/0502485 +astro-ph/0502510 +astro-ph/0502575 +astro-ph/0503141 +astro-ph/0503364 +astro-ph/0503506 +astro-ph/0503583 +astro-ph/0503588 +astro-ph/0503615 +astro-ph/0503691 +astro-ph/0504200 +astro-ph/0504271 +astro-ph/0504371 +astro-ph/0504379 +astro-ph/0504380 +astro-ph/0504412 +astro-ph/0504543 +astro-ph/0504658 +astro-ph/0504659 +astro-ph/0505030 +astro-ph/0505082 +astro-ph/0505254 +astro-ph/0505277 +astro-ph/0505304 +astro-ph/0505310 +astro-ph/0505486 +astro-ph/0505533 +astro-ph/0505618 +astro-ph/0506503 +astro-ph/0506534 +astro-ph/0506660 +astro-ph/0507224 +astro-ph/0507560 +astro-ph/0508139 +astro-ph/0508252 +astro-ph/0509339 +astro-ph/0509518 +astro-ph/0509769 +astro-ph/0510466 +astro-ph/0510535 +astro-ph/0510598 +astro-ph/0512066 +astro-ph/0512103 +astro-ph/0512233 +astro-ph/0512326 +astro-ph/0512367 +astro-ph/0512446 +astro-ph/0601036 +astro-ph/0601058 +astro-ph/0601111 +astro-ph/0601389 +astro-ph/0601670 +astro-ph/0602018 +astro-ph/0602020 +astro-ph/0602454 +astro-ph/0603289 +astro-ph/0603304 +astro-ph/0603324 +astro-ph/0603440 +astro-ph/0603519 +astro-ph/0603580 +astro-ph/0603597 +astro-ph/0603607 +astro-ph/0603710 +astro-ph/0604005 +astro-ph/0604181 +astro-ph/0604228 +astro-ph/0604410 +astro-ph/0604419 +astro-ph/0604528 +astro-ph/0605154 +astro-ph/0605247 +astro-ph/0605473 +astro-ph/0605610 +astro-ph/0605701 +astro-ph/0605730 +astro-ph/0606058 +astro-ph/0606196 +astro-ph/0606478 +astro-ph/0606514 +astro-ph/0606703 +astro-ph/0607135 +astro-ph/0607454 +astro-ph/0607522 +astro-ph/0608085 +astro-ph/0608116 +astro-ph/0608558 +astro-ph/0608600 +astro-ph/0608657 +astro-ph/0608695 +astro-ph/0609152 +astro-ph/0609155 +astro-ph/0609413 +astro-ph/0609710 +astro-ph/0610198 +astro-ph/0610250 +astro-ph/0610345 +astro-ph/0610770 +astro-ph/0610818 +astro-ph/0611137 +astro-ph/0611299 +astro-ph/0611462 +astro-ph/0611506 +astro-ph/0611780 +astro-ph/0611798 +astro-ph/0612115 +astro-ph/0612202 +astro-ph/0612374 +astro-ph/0612503 +astro-ph/0612541 +astro-ph/0612559 +astro-ph/0612699 +astro-ph/0701113 +astro-ph/0701251 +astro-ph/0701268 +astro-ph/0701357 +astro-ph/0701508 +astro-ph/0701520 +astro-ph/0701605 +astro-ph/0701834 +astro-ph/0701912 +astro-ph/0702106 +astro-ph/0702494 +astro-ph/0702555 +astro-ph/0703001 +astro-ph/0703024 +astro-ph/0703055 +astro-ph/0703072 +astro-ph/0703233 +astro-ph/0703326 +astro-ph/0703634 +astro-ph/0703653 +astro-ph/0703809 +astro-ph/9303008 +astro-ph/9304029 +astro-ph/9312035 +astro-ph/9402021 +astro-ph/9501012 +astro-ph/9501045 +astro-ph/9502039 +astro-ph/9503017 +astro-ph/9504003 +astro-ph/9504026 +astro-ph/9504051 +astro-ph/9504083 +astro-ph/9505022 +astro-ph/9505023 +astro-ph/9505024 +astro-ph/9509126 +astro-ph/9512080 +astro-ph/9512140 +astro-ph/9601111 +astro-ph/9602031 +astro-ph/9602107 +astro-ph/9602111 +astro-ph/9604045 +astro-ph/9605135 +astro-ph/9607011 +astro-ph/9607140 +astro-ph/9608098 +astro-ph/9609035 +astro-ph/9610076 +astro-ph/9610193 +astro-ph/9611010 +astro-ph/9611188 +astro-ph/9701232 +astro-ph/9702012 +astro-ph/9703046 +astro-ph/9703084 +astro-ph/9703194 +astro-ph/9703196 +astro-ph/9705011 +astro-ph/9707091 +astro-ph/9707236 +astro-ph/9707272 +astro-ph/9710072 +astro-ph/9710075 +astro-ph/9710161 +astro-ph/9711018 +astro-ph/9711021 +astro-ph/9711026 +astro-ph/9711056 +astro-ph/9711340 +astro-ph/9712116 +astro-ph/9712158 +astro-ph/9712212 +astro-ph/9801001 +astro-ph/9801136 +astro-ph/9801161 +astro-ph/9801172 +astro-ph/9802075 +astro-ph/9802342 +astro-ph/9804171 +astro-ph/9805135 +astro-ph/9805146 +astro-ph/9805317 +astro-ph/9806125 +astro-ph/9806385 +astro-ph/9807155 +astro-ph/9808162 +astro-ph/9809032 +astro-ph/9809127 +astro-ph/9810284 +astro-ph/9810290 +astro-ph/9811011 +astro-ph/9811013 +astro-ph/9811087 +astro-ph/9811254 +astro-ph/9811263 +astro-ph/9812142 +astro-ph/9812200 +astro-ph/9812252 +astro-ph/9902045 +astro-ph/9902254 +astro-ph/9902368 +astro-ph/9904008 +astro-ph/9904020 +astro-ph/9904263 +astro-ph/9905157 +astro-ph/9905167 +astro-ph/9905307 +astro-ph/9905341 +astro-ph/9905345 +astro-ph/9906304 +astro-ph/9906466 +astro-ph/9906474 +astro-ph/9907109 +astro-ph/9907129 +astro-ph/9907171 +astro-ph/9907207 +astro-ph/9907228 +astro-ph/9907308 +astro-ph/9909207 +astro-ph/9909227 +astro-ph/9910003 +astro-ph/9910490 +astro-ph/9910570 +astro-ph/9911052 +astro-ph/9911064 +astro-ph/9911072 +astro-ph/9912081 +astro-ph/9912381 +chao-dyn/9803019 Chaotic Dynamics +cond-mat/0001323 Statistical Mechanics +cond-mat/0002038 Soft Condensed Matter +cond-mat/0003075 Mesoscale and Nanoscale Physics +cond-mat/0003281 +cond-mat/0003517 +cond-mat/0004084 Mesoscale and Nanoscale Physics +cond-mat/0005195 +cond-mat/0007320 Statistical Mechanics +cond-mat/0007369 +cond-mat/0011108 Statistical Mechanics +cond-mat/0102105 Statistical Mechanics +cond-mat/0102112 Statistical Mechanics +cond-mat/0102517 Superconductivity +cond-mat/0103194 Statistical Mechanics +cond-mat/0103227 +cond-mat/0107567 +cond-mat/0109073 +cond-mat/0111327 +cond-mat/0202085 +cond-mat/0203130 +cond-mat/0203448 Statistical Mechanics +cond-mat/0204432 Strongly Correlated Electrons +cond-mat/0205066 Statistical Mechanics +cond-mat/0205100 Superconductivity +cond-mat/0207153 Statistical Mechanics +cond-mat/0207699 Strongly Correlated Electrons +cond-mat/0211027 Strongly Correlated Electrons +cond-mat/0211083 +cond-mat/0211514 Statistical Mechanics +cond-mat/0302304 Statistical Mechanics +cond-mat/0302564 Statistical Mechanics +cond-mat/0303483 +cond-mat/0304332 Soft Condensed Matter +cond-mat/0304489 Statistical Mechanics +cond-mat/0305402 +cond-mat/0306573 Statistical Mechanics +cond-mat/0306694 +cond-mat/0307100 Statistical Mechanics +cond-mat/0307116 Statistical Mechanics +cond-mat/0307559 +cond-mat/0308626 Soft Condensed Matter +cond-mat/0311382 Statistical Mechanics +cond-mat/0311651 Statistical Mechanics +cond-mat/0312446 Superconductivity +cond-mat/0402052 Statistical Mechanics +cond-mat/0404150 Other Condensed Matter +cond-mat/0405492 Statistical Mechanics +cond-mat/0407597 Strongly Correlated Electrons +cond-mat/0409416 Statistical Mechanics +cond-mat/0409621 Statistical Mechanics +cond-mat/0410242 Superconductivity +cond-mat/0410648 Other Condensed Matter +cond-mat/0412368 Disordered Systems and Neural Networks +cond-mat/0412624 Other Condensed Matter +cond-mat/0501007 Mesoscale and Nanoscale Physics +cond-mat/0502328 Statistical Mechanics +cond-mat/0504718 Statistical Mechanics +cond-mat/0505107 Statistical Mechanics +cond-mat/0505374 Statistical Mechanics +cond-mat/0610669 Materials Science +cond-mat/9207002 +cond-mat/9207003 +cond-mat/9207014 +cond-mat/9207015 +cond-mat/9209024 +cond-mat/9210002 +cond-mat/9210011 +cond-mat/9210025 +cond-mat/9211012 +cond-mat/9501115 +cond-mat/9507010 +cond-mat/9601111 +cond-mat/9602164 +cond-mat/9603173 +cond-mat/9605176 +cond-mat/9607135 +cond-mat/9610077 Superconductivity +cond-mat/9612198 Statistical Mechanics +cond-mat/9702207 Mesoscale and Nanoscale Physics +cond-mat/9703164 Strongly Correlated Electrons +cond-mat/9705307 +cond-mat/9705316 Strongly Correlated Electrons +cond-mat/9706013 Mesoscale and Nanoscale Physics +cond-mat/9707221 Strongly Correlated Electrons +cond-mat/9712133 Statistical Mechanics +cond-mat/9803271 +cond-mat/9804241 Statistical Mechanics +cond-mat/9805404 Strongly Correlated Electrons +cond-mat/9807051 Statistical Mechanics +cond-mat/9808019 Statistical Mechanics +cond-mat/9905192 Mesoscale and Nanoscale Physics +cond-mat/9907169 Statistical Mechanics +cond-mat/9911084 Statistical Mechanics +cond-mat/9912005 Statistical Mechanics +math/0503342 Rings and Algebras +quant-ph/0509119 +0710.2302 Algebraic Topology +0910.2328 +1005.0405 Algebraic Geometry +1008.3626 Analysis of PDEs +1203.3637 Differential Geometry +1205.1706 Number Theory +1206.2410 Quantum Gases +1210.5199 +1212.6103 Classical Analysis and ODEs +1301.0193 Algebraic Topology +1302.0727 Plasma Physics +1303.2487 Combinatorics +1304.7894 Representation Theory +1305.2407 Phenomenology +1305.2784 Combinatorics +1305.4611 Phenomenology +1305.6843 Rings and Algebras +1305.6848 Strongly Correlated Electrons +1306.0062 Rings and Algebras +1306.2557 Learning +1306.4922 Dynamical Systems +1307.5703 Optimization and Control +1307.6882 Phenomenology +1307.7866 Phenomenology +1308.0416 Strongly Correlated Electrons +1308.4418 Theory +1308.5836 Methodology +1308.5859 Mesoscale and Nanoscale Physics +1308.6228 Accelerator Physics +1309.0423 Methodology +1309.1912 Plasma Physics +1309.3378 Functional Analysis +1309.4698 Commutative Algebra +1309.5005 +1309.7067 Differential Geometry +1309.7402 Genomics +1309.7441 Analysis of PDEs +1310.4101 Experiment +1310.4177 Cosmology and Nongalactic Astrophysics +1310.5503 Group Theory +1311.1556 +1311.1655 Mesoscale and Nanoscale Physics +1311.3340 Theory +1311.4336 Social and Information Networks +1311.4554 Lattice +1311.4895 +1311.5557 Populations and Evolution +1311.5743 Theory +1312.0364 Astrophysics of Galaxies +1312.0471 Functional Analysis +1312.0684 Astrophysics of Galaxies +1312.0770 Phenomenology +1312.1002 Astrophysics of Galaxies +1312.1281 Astrophysics of Galaxies +1312.1338 Astrophysics of Galaxies +1312.2010 Strongly Correlated Electrons +1312.2195 Number Theory +1312.2301 Astrophysics of Galaxies +1312.2330 Astrophysics of Galaxies +1312.2479 +1312.2685 Astrophysics of Galaxies +1312.2849 +1312.3442 Astrophysics of Galaxies +1312.3642 Astrophysics of Galaxies +1312.4175 Phenomenology +1312.4543 Astrophysics of Galaxies +1312.4546 Astrophysics of Galaxies +1312.4760 Mesoscale and Nanoscale Physics +1312.5069 Astrophysics of Galaxies +1312.5275 Astrophysics of Galaxies +1312.6135 Astrophysics of Galaxies +1312.6475 Astrophysics of Galaxies +1312.6572 Astrophysics of Galaxies +1312.7071 Theory +1312.7417 Cosmology and Nongalactic Astrophysics +1401.0540 Astrophysics of Galaxies +1401.0955 Astrophysics of Galaxies +1401.1040 Astrophysics of Galaxies +1401.1208 Astrophysics of Galaxies +1401.1501 Astrophysics of Galaxies +1401.1535 Astrophysics of Galaxies +1401.1664 Astrophysics of Galaxies +1401.1822 Astrophysics of Galaxies +1401.1875 Astrophysics of Galaxies +1401.2988 Astrophysics of Galaxies +1401.3006 Astrophysics of Galaxies +1401.3080 Mesoscale and Nanoscale Physics +1401.3366 Astrophysics of Galaxies +1401.3616 +1401.3637 Superconductivity +1401.4382 Astrophysics of Galaxies +1401.4503 Astrophysics of Galaxies +1401.4571 +1401.4791 Astrophysics of Galaxies +1401.4964 Analysis of PDEs +1401.4985 +1401.5082 Astrophysics of Galaxies +1401.5294 Analysis of PDEs +1401.5578 Astrophysics of Galaxies +1401.5593 Astrophysics of Galaxies +1401.5920 Astrophysics of Galaxies +1401.6279 +1401.7336 Astrophysics of Galaxies +1401.7912 Astrophysics of Galaxies +1401.8123 Astrophysics of Galaxies +1401.8221 Astrophysics of Galaxies +1401.8284 Astrophysics of Galaxies +1402.0512 High Energy Astrophysical Phenomena +1402.0786 +1402.1470 Astrophysics of Galaxies +1402.2116 Astrophysics of Galaxies +1402.2353 Astrophysics of Galaxies +1402.2702 Astrophysics of Galaxies +1402.3670 +1402.4676 Astrophysics of Galaxies +1402.5065 Phenomenology +1402.5109 Astrophysics of Galaxies +1402.5516 Social and Information Networks +1402.7354 Astrophysics of Galaxies +1403.0371 +1403.0743 Astrophysics of Galaxies +1403.1408 Astrophysics of Galaxies +1403.1623 Astrophysics of Galaxies +1403.1634 Astrophysics of Galaxies +1403.1817 Astrophysics of Galaxies +1403.2281 Classical Analysis and ODEs +1403.2988 Mesoscale and Nanoscale Physics +1403.3373 Superconductivity +1403.3594 Symbolic Computation +1403.3667 Astrophysics of Galaxies +1403.4071 Phenomenology +1403.4103 +1403.4453 +1403.5452 +1403.6672 Cosmology and Nongalactic Astrophysics +1403.7073 Cosmology and Nongalactic Astrophysics +1403.7512 Phenomenology +1403.7911 Mesoscale and Nanoscale Physics +1404.0734 Applications +1404.0991 Materials Science +1404.2363 Computational Physics +1404.4174 Phenomenology +1404.4240 Algebraic Geometry +1404.4532 Phenomenology +1404.4685 Networking and Internet Architecture +1404.5732 Phenomenology +1404.6291 Solar and Stellar Astrophysics +1404.7214 Theory +1404.7253 Algebraic Geometry +1404.7825 +1405.1369 Theory +1405.1567 Mesoscale and Nanoscale Physics +1405.3497 Numerical Analysis +1405.4018 Cosmology and Nongalactic Astrophysics +1405.4037 Representation Theory +1405.4088 Statistical Mechanics +1405.4162 +1405.4937 Number Theory +1405.5286 Astrophysics of Galaxies +1405.5297 Methodology +1405.6038 Solar and Stellar Astrophysics +1405.6115 Mesoscale and Nanoscale Physics +1405.7172 Complex Variables +1405.7621 Cosmology and Nongalactic Astrophysics +1406.1512 Materials Science +1406.1619 Robotics +1406.2819 Statistical Mechanics +1406.3340 Physics and Society +1406.3368 Information Theory +1406.3442 Theory +1406.4077 Information Theory +1406.4125 Networking and Internet Architecture +1406.4214 Genomics +1406.4296 Computer Vision and Pattern Recognition +1406.4445 Machine Learning +1406.4472 Artificial Intelligence +1406.4481 +1406.4515 Astrophysics of Galaxies +1406.4518 Neural and Evolutionary Computing +1406.4519 Machine Learning +1406.4523 Rings and Algebras +1406.4526 +1406.4532 History and Philosophy of Physics +1406.4537 Probability +1406.4542 Digital Libraries +1406.4543 Statistics Theory +1406.4547 Information Theory +1406.4548 Networking and Internet Architecture +1406.4549 Methodology +1406.4557 Combinatorics +1406.4560 Combinatorics +1406.4567 Information Theory +1406.4574 Analysis of PDEs +1406.4580 Machine Learning +1406.4582 Quantitative Methods +1406.4583 Solar and Stellar Astrophysics +1406.4584 Statistics Theory +1406.4587 Group Theory +1406.4590 Group Theory +1406.4591 Solar and Stellar Astrophysics +1406.4592 Applications +1406.4594 Geometric Topology +1406.4598 Combinatorics +1406.4600 Symbolic Computation +1406.4603 Chaotic Dynamics +1406.4605 Materials Science +1406.4610 Information Theory +1406.4616 Analysis of PDEs +1406.4618 Number Theory +1406.4619 Numerical Analysis +1406.4620 Robotics +1406.4621 Probability +1406.4622 Mesoscale and Nanoscale Physics +1406.4623 Number Theory +1406.4626 Geometric Topology +1406.4628 Hardware Architecture +1406.4631 Learning +1406.4635 Logic +1406.4639 Phenomenology +1406.4641 Software Engineering +1406.4646 Analysis of PDEs +1406.4648 Formal Languages and Automata Theory +1406.4649 Probability +1406.4653 Solar and Stellar Astrophysics +1406.4658 Dynamical Systems +1406.4663 Solar and Stellar Astrophysics +1406.4665 +1406.4670 Classical Physics +1406.4676 Methodology +1406.4679 Artificial Intelligence +1406.4681 Cryptography and Security +1406.4682 Artificial Intelligence +1406.4685 +1406.4686 Materials Science +1406.4687 Geophysics +1406.4690 Computation and Language +1406.4692 Software Engineering +1406.4698 Logic in Computer Science +1406.4701 Networking and Internet Architecture +1406.4703 Fluid Dynamics +1406.4705 Methodology +1406.4706 Statistical Mechanics +1406.4711 Solar and Stellar Astrophysics +1406.4714 Chaotic Dynamics +1406.4730 Biomolecules +1406.4732 History and Philosophy of Physics +1406.4733 Analysis of PDEs +1406.4734 Numerical Analysis +1406.4736 Networking and Internet Architecture +1406.4737 Information Retrieval +1406.4740 History and Philosophy of Physics +1406.4744 Algebraic Geometry +1406.4745 History and Philosophy of Physics +1406.4746 General Physics +1406.4747 History and Philosophy of Physics +1406.4751 Databases +1406.4753 Representation Theory +1406.4754 Databases +1406.4756 Computers and Society +1406.4757 Learning +1406.4759 Probability +1406.4761 +1406.4763 Physics and Society +1406.4764 High Energy Astrophysical Phenomena +1406.4770 Computer Vision and Pattern Recognition +1406.4773 Computer Vision and Pattern Recognition +1406.4775 Information Theory +1406.4781 Learning +1406.4782 Logic in Computer Science +1406.4783 Portfolio Management +1406.4784 Methodology +1406.4791 Category Theory +1406.4797 Astrophysics of Galaxies +1406.4799 Data Structures and Algorithms +1406.4803 Human-Computer Interaction +1406.4805 Analysis of PDEs +1406.4806 Computation +1406.4808 Quantum Algebra +1406.4822 Computational Geometry +1406.4823 Logic in Computer Science +1406.4837 Computer Science and Game Theory +1406.4840 Distributed, Parallel, and Cluster Computing +1406.4842 Computers and Society +1406.4843 Chaotic Dynamics +1406.4844 Cryptography and Security +1406.4846 Instrumentation and Methods for Astrophysics +1406.4847 Number Theory +1406.4852 Information Theory +1406.4854 Analysis of PDEs +math/0701760 Analysis of PDEs +0706.3758 Soft Condensed Matter +0711.4740 Commutative Algebra +0905.3255 Algebraic Geometry +1001.5216 Commutative Algebra +1008.1304 General Mathematics +1010.5359 Soft Condensed Matter +1106.5729 Operator Algebras +1107.0169 Robotics +1107.2341 Combinatorics +1202.4159 Theory +1203.0276 Algebraic Geometry +1205.4426 Dynamical Systems +1207.3653 Algebraic Geometry +1207.3994 Social and Information Networks +1208.4815 Dynamical Systems +1210.1895 +1210.2012 Classical Analysis and ODEs +1211.5983 Metric Geometry +1212.3449 Number Theory +1301.0058 Pattern Formation and Solitons +1302.6209 Rings and Algebras +1303.2743 Theory +1304.0193 Information Theory +1304.0428 Combinatorics +1304.1749 +1304.2999 Computer Vision and Pattern Recognition +1304.4521 Solar and Stellar Astrophysics +1304.6715 Instrumentation and Methods for Astrophysics +1305.0344 Representation Theory +1305.0374 Number Theory +1305.1818 Numerical Analysis +1305.4027 Optimization and Control +1306.1592 Data Analysis, Statistics and Probability +1306.3383 Optimization and Control +1306.4554 Fluid Dynamics +1307.0839 Strongly Correlated Electrons +1307.1280 Superconductivity +1307.3949 Learning +1307.4065 Theory +1307.4323 Phenomenology +1307.4734 Materials Science +1307.7499 Probability +1307.7986 Combinatorics +1308.0592 Phenomenology +1308.0991 Commutative Algebra +1308.1827 Numerical Analysis +1308.2539 Pattern Formation and Solitons +1309.6497 Atomic Physics +1309.7650 +1310.0223 Phenomenology +1310.0854 +1310.1340 Phenomenology +1310.3701 +1310.3866 Analysis of PDEs +1310.4153 +1310.6143 Materials Science +1310.6667 Strongly Correlated Electrons +1310.8112 +1311.0078 Optimization and Control +1311.0520 Strongly Correlated Electrons +1311.2881 Quantum Algebra +1311.3259 Mesoscale and Nanoscale Physics +1311.3931 Strongly Correlated Electrons +1312.0371 Solar and Stellar Astrophysics +1312.2852 +1312.3392 Quantum Gases +1312.4203 Distributed, Parallel, and Cluster Computing +1312.5747 Quantum Gases +1312.6014 Materials Science +1401.0122 Phenomenology +1401.1171 Information Theory +1401.2069 +1401.2133 +1401.2154 Statistical Mechanics +1401.2328 Phenomenology +1401.2519 Space Physics +1401.5375 Numerical Analysis +1401.5737 Cosmology and Nongalactic Astrophysics +1401.5981 Experiment +1401.6447 +1401.6918 Phenomenology +1401.7300 Group Theory +1401.7554 Materials Science +1402.0001 Strongly Correlated Electrons +1402.0491 Emerging Technologies +1402.1432 Materials Science +1402.1856 Cosmology and Nongalactic Astrophysics +1402.2336 Cosmology and Nongalactic Astrophysics +1402.2873 Fluid Dynamics +1402.3123 Cosmology and Nongalactic Astrophysics +1402.3369 Materials Science +1402.3562 Risk Management +1402.4308 Information Theory +1402.4830 Quantum Gases +1402.6618 High Energy Astrophysical Phenomena +1402.6702 Astrophysics of Galaxies +1402.6705 Theory +1402.7137 Experiment +1402.7193 +1402.7251 Atomic Physics +1403.1580 Theory +1403.2064 Materials Science +1403.3032 Materials Science +1403.3069 +1403.3190 +1403.4000 Mesoscale and Nanoscale Physics +1403.4420 Earth and Planetary Astrophysics +1403.4742 Theory +1403.5000 Lattice +1403.5067 Cosmology and Nongalactic Astrophysics +1403.5900 Phenomenology +1403.6734 Phenomenology +1403.7492 High Energy Astrophysical Phenomena +1403.7686 +1403.8152 Mesoscale and Nanoscale Physics +1404.0618 Materials Science +1404.0737 Mesoscale and Nanoscale Physics +1404.1364 Solar and Stellar Astrophysics +1404.1544 +1404.2199 +1404.2488 Soft Condensed Matter +1404.3771 Phenomenology +1404.3937 Theory +1404.4024 Atomic Physics +1404.4025 +1404.4565 Analysis of PDEs +1404.4762 Theory +1404.4863 +1404.4905 Optics +1404.5577 Phenomenology +1404.5645 Mesoscale and Nanoscale Physics +1404.7627 Solar and Stellar Astrophysics +1404.7656 Astrophysics of Galaxies +1405.0407 Chemical Physics +1405.0665 Optics +1405.1303 Combinatorics +1405.1852 +1405.2478 Analysis of PDEs +1405.2801 Logic in Computer Science +1405.4773 Superconductivity +1405.5403 Statistical Mechanics +1405.6612 Analysis of PDEs +1405.6648 Superconductivity +1405.7068 Solar and Stellar Astrophysics +1405.7900 High Energy Astrophysical Phenomena +1406.1806 Classical Analysis and ODEs +1406.2603 Commutative Algebra +1406.2853 Algebraic Geometry +1406.2862 Number Theory +1406.3162 Combinatorics +1406.3218 Computation +1406.3565 Solar and Stellar Astrophysics +1406.4475 +1406.4493 Dynamical Systems +1406.5079 Classical Analysis and ODEs +1406.5215 Physics and Society +1406.5240 Exactly Solvable and Integrable Systems +1406.5259 Dynamical Systems +1406.5267 +1406.5407 Classical Analysis and ODEs +1406.5524 +1406.5570 Optics +1406.5772 Group Theory +1406.5799 Molecular Networks +1406.5826 Data Structures and Algorithms +1406.6014 Theory +1406.6037 Hardware Architecture +1406.6044 General Mathematics +1406.6047 Data Structures and Algorithms +1406.6058 Astrophysics of Galaxies +1406.6062 Astrophysics of Galaxies +1406.6084 Data Structures and Algorithms +1406.6085 Statistics Theory +1406.6087 Information Theory +1406.6092 Other Quantitative Biology +1406.6095 Cosmology and Nongalactic Astrophysics +1406.6099 Astrophysics of Galaxies +1406.6100 Physics and Society +1406.6101 Computation and Language +1406.6106 Classical Analysis and ODEs +1406.6112 Solar and Stellar Astrophysics +1406.6113 Strongly Correlated Electrons +1406.6114 Learning +1406.6119 Number Theory +1406.6121 Probability +1406.6123 Number Theory +1406.6124 Atmospheric and Oceanic Physics +1406.6125 Number Theory +1406.6126 Information Retrieval +1406.6128 Number Theory +1406.6130 Learning +1406.6142 Pricing of Securities +1406.6147 Computer Vision and Pattern Recognition +1406.6150 Medical Physics +1406.6151 Soft Condensed Matter +1406.6156 Functional Analysis +1406.6158 Instrumentation and Methods for Astrophysics +1406.6159 Exactly Solvable and Integrable Systems +1406.6162 Analysis of PDEs +1406.6163 Programming Languages +1406.6165 +1406.6167 Optimization and Control +1406.6169 Data Structures and Algorithms +1406.6170 Information Theory +1406.6171 +1406.6173 Computers and Society +1406.6175 Algebraic Topology +1406.6176 Learning +1406.6181 Analysis of PDEs +1406.6190 Analysis of PDEs +1406.6193 Classical Analysis and ODEs +1406.6195 Analysis of PDEs +1406.6197 Mesoscale and Nanoscale Physics +1406.6200 Methodology +1406.6201 Computer Vision and Pattern Recognition +1406.6205 Functional Analysis +1406.6221 Cryptography and Security +1406.6226 Statistical Mechanics +1406.6227 Statistics Theory +1406.6229 Category Theory +1406.6230 Optimization and Control +1406.6231 Quantum Gases +1406.6233 Exactly Solvable and Integrable Systems +1406.6234 Superconductivity +1406.6236 Statistical Mechanics +1406.6241 Representation Theory +1406.6244 Functional Analysis +1406.6247 Learning +1406.6248 Astrophysics of Galaxies +1406.6257 Optimization and Control +1406.6264 Geometric Topology +1406.6266 Logic in Computer Science +1406.6269 Algebraic Topology +1406.6272 Differential Geometry +1406.6273 Computer Vision and Pattern Recognition +1406.6274 Differential Geometry +1406.6277 Other Computer Science +1406.6279 Lattice +1406.6281 Systems and Control +1406.6284 History and Philosophy of Physics +1406.6287 Theory +1406.6291 Neural and Evolutionary Computing +1406.6293 Strongly Correlated Electrons +1406.6295 Theory +1406.6307 Number Theory +1406.6314 Learning +1406.6316 Differential Geometry +1406.6318 +1406.6321 Information Theory +1406.6328 Popular Physics +1406.6330 Plasma Physics +1406.6331 Analysis of PDEs +1406.6332 Systems and Control +1406.6335 Functional Analysis +1406.6336 Computer Vision and Pattern Recognition +1406.6339 Algebraic Geometry +1406.6343 Number Theory +1406.6344 Rings and Algebras +1406.6345 Astrophysics of Galaxies +1406.6347 Dynamical Systems +1406.6349 Materials Science +1406.6350 Analysis of PDEs +1406.6352 Cosmology and Nongalactic Astrophysics +1406.6353 Computational Complexity +1406.6357 Functional Analysis +0908.3253 Number Theory +1001.4626 Materials Science +1101.1229 General Physics +1101.4184 Probability +1101.4282 Quantum Gases +1107.2427 Classical Analysis and ODEs +1107.5898 Classical Analysis and ODEs +1109.0064 Geometric Topology +1110.4841 Algebraic Geometry +1112.5956 Classical Analysis and ODEs +1112.6019 Classical Analysis and ODEs +1201.5791 Materials Science +1202.0941 +1202.5925 Combinatorics +1203.0108 Statistics Theory +1203.0828 Statistics Theory +1203.5660 Number Theory +1205.1206 Geometric Topology +1205.2585 +1205.6116 Probability +1205.6822 Social and Information Networks +1206.5678 Theory +1207.4703 Number Theory +1208.0392 Cosmology and Nongalactic Astrophysics +1208.5697 Physics and Society +1209.1712 Phenomenology +1209.4854 Computational Geometry +1210.3331 Phenomenology +1210.8135 +1211.6181 Probability +1301.0628 Cosmology and Nongalactic Astrophysics +1301.3352 Analysis of PDEs +1301.4547 +1301.6199 Learning +1301.6840 Probability +1302.2479 Combinatorics +1302.4030 Networking and Internet Architecture +1303.1699 Analysis of PDEs +1303.3836 Combinatorics +1304.1202 Information Theory +1304.1433 Optics +1304.4258 Strongly Correlated Electrons +1304.7208 Number Theory +1304.7411 Combinatorics +1305.1130 +1305.5417 +1305.5521 Superconductivity +1305.6732 Disordered Systems and Neural Networks +1306.1399 Cosmology and Nongalactic Astrophysics +1306.1665 Systems and Control +1306.2031 Materials Science +1306.3974 General Physics +1306.4238 Superconductivity +1307.0296 Pattern Formation and Solitons +1307.0979 Mesoscale and Nanoscale Physics +1307.1433 Atomic Physics +1307.4349 +1307.5011 Classical Physics +1307.5518 Phenomenology +1307.6105 Phenomenology +1308.0440 Materials Science +1308.1543 +1308.2643 Superconductivity +1308.3522 +1308.4174 +1308.4328 +1308.4804 Combinatorics +1308.5685 Theory +1308.6342 Machine Learning +1308.6500 Cosmology and Nongalactic Astrophysics +1309.0330 Representation Theory +1309.0523 Quantum Gases +1309.3547 Solar and Stellar Astrophysics +1309.4369 Quantum Gases +1309.4446 Mesoscale and Nanoscale Physics +1309.5293 Analysis of PDEs +1309.6436 Quantum Gases +1310.0373 +1310.0512 Machine Learning +1310.1205 +1310.1677 Quantum Gases +1310.2867 Analysis of PDEs +1310.3139 +1310.4122 Theory +1310.4206 Dynamical Systems +1310.5315 Algebraic Geometry +1310.6533 +1310.7144 Phenomenology +1310.8220 Physics and Society +1311.0789 Rings and Algebras +1311.1542 Commutative Algebra +1311.3742 Analysis of PDEs +1311.4549 Astrophysics of Galaxies +1311.5549 Algebraic Geometry +1311.5705 Algebraic Topology +1312.0957 Optics +1312.0968 Lattice +1312.1549 Computational Physics +1312.2565 Applications +1312.4097 Computational Physics +1312.5197 +1312.5770 Learning +1312.7512 Earth and Planetary Astrophysics +1401.0736 Solar and Stellar Astrophysics +1401.1538 Materials Science +1401.1760 Computer Science and Game Theory +1401.1890 +1401.2201 Representation Theory +1401.2594 +1401.2704 Phenomenology +1401.3581 Rings and Algebras +1401.4690 Instrumentation and Methods for Astrophysics +1401.6005 Mesoscale and Nanoscale Physics +1401.6277 Phenomenology +1401.6719 +1401.7458 Geophysics +1401.8223 Biomolecules +1402.0412 Digital Libraries +1402.0778 Analysis of PDEs +1402.0815 Geometric Topology +1402.0864 Phenomenology +1402.0865 Number Theory +1402.0879 Statistical Mechanics +1402.0883 Symplectic Geometry +1402.0886 Cryptography and Security +1402.0890 Quantum Algebra +1402.0896 Rings and Algebras +1402.0898 Information Theory +1402.0906 Theory +1402.0910 General Finance +1402.0914 Machine Learning +1402.0915 Machine Learning +1402.0916 Information Theory +1402.0917 Spectral Theory +1402.0921 Computers and Society +1402.0924 Algebraic Geometry +1402.0925 Information Theory +1402.0927 Space Physics +1402.0930 Phenomenology +1402.0932 Networking and Internet Architecture +1402.0934 Probability +1402.0943 Methodology +1402.0945 Computers and Society +1402.0946 Functional Analysis +1402.0949 Combinatorics +1402.0950 Cosmology and Nongalactic Astrophysics +1402.0953 Statistical Mechanics +1402.0958 Statistics Theory +1402.0961 Logic +1402.0962 Group Theory +1402.0966 Statistics Theory +1402.0971 Astrophysics of Galaxies +1402.0979 +1402.0980 Rings and Algebras +1402.0981 Astrophysics of Galaxies +1402.0982 Optimization and Control +1402.0990 Molecular Networks +1402.0993 Information Theory +1402.0995 Biological Physics +1402.0997 Software Engineering +1402.0998 Fluid Dynamics +1402.1001 Human-Computer Interaction +1402.1002 Group Theory +1402.1003 +1402.1004 Statistics Theory +1402.1006 Mesoscale and Nanoscale Physics +1402.1007 Adaptation and Self-Organizing Systems +1402.1008 Strongly Correlated Electrons +1402.1009 Optimization and Control +1402.1011 Mesoscale and Nanoscale Physics +1402.1012 Software Engineering +1402.1016 +1402.1018 History and Overview +1402.1019 Disordered Systems and Neural Networks +1402.1021 Astrophysics of Galaxies +1402.1022 Instrumentation and Methods for Astrophysics +1402.1032 +1402.1033 Methodology +1402.1034 Solar and Stellar Astrophysics +1402.1036 Human-Computer Interaction +1402.1037 Human-Computer Interaction +1402.1045 Computational Physics +1402.1047 Discrete Mathematics +1402.1053 Materials Science +1402.1054 Applications +1402.1056 Atomic and Molecular Clusters +1402.1059 Probability +1402.1060 Analysis of PDEs +1402.1063 Logic +1402.1064 Probability +1402.1068 +1402.1069 Quantum Algebra +1402.1070 Fluid Dynamics +1402.1081 +1402.1084 Probability +1402.1086 Logic +1402.1088 Information Theory +1402.1089 Other Statistics +1402.1092 Information Theory +1402.1094 Quantum Algebra +1402.1098 Analysis of PDEs +1402.1099 General Literature +1402.1101 Group Theory +1402.1108 Algebraic Geometry +1402.1110 High Energy Astrophysical Phenomena +1402.1116 Number Theory +1402.1122 Number Theory +1402.1125 Optimization and Control +1402.1128 Neural and Evolutionary Computing +1402.1129 Other Condensed Matter +1402.1130 Other Condensed Matter +1402.1131 Number Theory +1402.1133 Chemical Physics +1402.1134 Soft Condensed Matter +1402.1137 Information Theory +1402.1138 Methodology +1402.1141 Neural and Evolutionary Computing +1402.1144 Methodology +1402.1149 Soft Condensed Matter +1402.1150 Earth and Planetary Astrophysics +1402.1151 Computer Vision and Pattern Recognition +1402.1157 Numerical Analysis +1402.1160 Solar and Stellar Astrophysics +gr-qc/0612175 +1412.7715 Group Theory +0712.3870 Computer Science and Game Theory +0801.0206 Symplectic Geometry +0902.4725 +0906.2287 Algebraic Geometry +0911.2241 Symplectic Geometry +0911.4444 Probability +1101.0433 Algebraic Geometry +1106.0654 Strongly Correlated Electrons +1112.0634 +1202.4118 Algebraic Topology +1203.1198 Group Theory +1203.6326 Strongly Correlated Electrons +1205.1771 Disordered Systems and Neural Networks +1205.3537 Operator Algebras +1211.4151 Theory +1211.4429 Combinatorics +1212.0803 Materials Science +1301.6624 Statistics Theory +1302.7282 Symplectic Geometry +1303.4495 Dynamical Systems +1303.4618 Strongly Correlated Electrons +1303.7369 Strongly Correlated Electrons +1304.6257 Physics and Society +1304.7227 Classical Analysis and ODEs +1304.7766 +1305.3172 Strongly Correlated Electrons +1305.6408 Statistics Theory +1305.6545 +1306.1022 +1306.2586 Geometric Topology +1306.5065 +1306.5370 Soft Condensed Matter +1307.0868 Disordered Systems and Neural Networks +1307.3339 Materials Science +1307.3719 Methodology +1308.0239 Physics and Society +1308.0783 Number Theory +1308.3721 Cell Behavior +1308.4027 Databases +1308.4296 Representation Theory +1308.5211 Information Theory +1308.6736 Information Theory +1309.1803 Algebraic Geometry +1309.2983 Methodology +1309.3348 Analysis of PDEs +1309.5451 +1309.5540 Systems and Control +1310.1045 Numerical Analysis +1310.2516 Numerical Analysis +1310.2970 Algebraic Topology +1310.4540 Cosmology and Nongalactic Astrophysics +1310.4975 Physics and Society +1310.7540 Mesoscale and Nanoscale Physics +1310.8097 Computational Geometry +1310.8424 Algebraic Geometry +1311.3274 Operator Algebras +1311.6403 Methodology +1312.1342 Cosmology and Nongalactic Astrophysics +1312.4145 Theory +1312.4891 +1312.5237 +1401.0440 Materials Science +1401.2791 Computation +1401.5322 Number Theory +1401.5591 Number Theory +1401.5996 Computers and Society +1401.6088 Theory +1401.6440 Mesoscale and Nanoscale Physics +1402.0428 +1402.1988 Cosmology and Nongalactic Astrophysics +1402.2391 +1402.3185 Functional Analysis +1402.6195 Analysis of PDEs +1402.6863 Machine Learning +1403.0649 Quantum Gases +1403.1018 Statistical Mechanics +1403.1461 Strongly Correlated Electrons +1403.3146 Strongly Correlated Electrons +1403.3851 Classical Physics +1404.0048 Optimization and Control +1404.1758 Theory +1404.3350 Strongly Correlated Electrons +1404.3871 Functional Analysis +1404.4083 Cosmology and Nongalactic Astrophysics +1404.4792 +1404.6296 +1404.6652 Analysis of PDEs +1404.7530 Methodology +1405.0944 Analysis of PDEs +1405.2724 Cosmology and Nongalactic Astrophysics +1405.2877 Optimization and Control +1405.6317 Logic +1405.6492 Phenomenology +1405.6735 Mesoscale and Nanoscale Physics +1405.6873 Phenomenology +1405.7861 Optics +1406.0252 Theory +1406.0595 +1406.0734 Superconductivity +1406.1303 Statistical Mechanics +1406.2451 +1406.2873 Theory +1406.6664 Operator Algebras +1407.0695 Phenomenology +1407.3167 Phenomenology +1407.3258 Instrumentation and Detectors +1407.4865 Multimedia +1407.4867 Computer Vision and Pattern Recognition +1407.5415 Solar and Stellar Astrophysics +1407.5595 Superconductivity +1407.5744 Materials Science +1407.6492 Computer Vision and Pattern Recognition +1407.7056 Astrophysics of Galaxies +1408.0981 Computational Finance +1408.1291 Algebraic Geometry +1408.2695 Networking and Internet Architecture +1408.2768 Analysis of PDEs +1408.2801 Quantum Gases +1408.2908 Information Theory +1408.3093 Data Structures and Algorithms +1408.3108 Phenomenology +1408.3109 +1408.3113 Number Theory +1408.3125 +1408.3132 Strongly Correlated Electrons +1408.3133 Quantum Gases +1408.3134 Solar and Stellar Astrophysics +1408.3135 Strongly Correlated Electrons +1408.3137 Combinatorics +1408.3143 Solar and Stellar Astrophysics +1408.3144 Numerical Analysis +1408.3147 Logic +1408.3148 Databases +1408.3154 Social and Information Networks +1408.3155 Optics +1408.3160 Dynamical Systems +1408.3170 Social and Information Networks +1408.3174 Methodology +1408.3175 Databases +1408.3178 Differential Geometry +1408.3181 Computer Science and Game Theory +1408.3182 Networking and Internet Architecture +1408.3184 Mesoscale and Nanoscale Physics +1408.3187 Analysis of PDEs +1408.3190 Discrete Mathematics +1408.3195 Information Theory +1408.3197 Combinatorics +1408.3199 Mesoscale and Nanoscale Physics +1408.3202 Networking and Internet Architecture +1408.3204 Combinatorics +1408.3205 Statistics Theory +1408.3208 Probability +1408.3214 Optimization and Control +1408.3215 Neural and Evolutionary Computing +1408.3218 Computer Vision and Pattern Recognition +1408.3221 Statistics Theory +1408.3223 Information Theory +1408.3227 Solar and Stellar Astrophysics +1408.3229 Systems and Control +1408.3231 Software Engineering +1408.3237 Methodology +1408.3243 Number Theory +1408.3244 Superconductivity +1408.3247 Number Theory +1408.3248 Optimization and Control +1408.3254 Materials Science +1408.3255 +1408.3256 Functional Analysis +1408.3259 Fluid Dynamics +1408.3263 Instrumentation and Detectors +1408.3282 Logic +1408.3286 Computational Complexity +1408.3287 Classical Analysis and ODEs +1408.3291 Representation Theory +1408.3294 Classical Analysis and ODEs +1408.3299 Instrumentation and Methods for Astrophysics +1408.3305 Instrumentation and Methods for Astrophysics +1408.3309 Computers and Society +1408.3311 Functional Analysis +1408.3313 Fluid Dynamics +1408.3314 Instrumentation and Methods for Astrophysics +1408.3315 Optics +1408.3317 Formal Languages and Automata Theory +1408.3321 Cell Behavior +1408.3326 Graphics +1408.3327 Algebraic Geometry +1408.3329 Algebraic Geometry +1408.3330 Algebraic Geometry +1408.3332 Machine Learning +1408.3336 Number Theory +1408.3337 Computer Vision and Pattern Recognition +1408.3338 Algebraic Geometry +1408.3342 Number Theory +1408.3346 Algebraic Geometry +1408.3349 Representation Theory +1408.3350 Representation Theory +1408.3353 Representation Theory +1408.3354 Computers and Society +1408.3356 Algebraic Geometry +1408.3359 Learning +1408.3360 Representation Theory +1408.3361 Algebraic Geometry +1408.3362 Statistics Theory +1408.3365 Algebraic Geometry +1408.3367 Representation Theory +1408.3369 Representation Theory +1408.3372 Representation Theory +1408.3376 Category Theory +1408.3381 General Physics +1408.3382 Computers and Society +1408.3385 Solar and Stellar Astrophysics +1408.3388 Statistics Theory +1408.3396 Instrumentation and Detectors +1408.3397 Chaotic Dynamics +1408.3398 +0712.3815 Dynamical Systems +0902.1421 Differential Geometry +0907.2368 +0909.5511 Geometric Topology +0910.4337 Statistics Theory +1001.3508 Differential Geometry +1003.1571 Superconductivity +1003.1687 Superconductivity +1003.2229 Strongly Correlated Electrons +1009.6142 Classical Analysis and ODEs +1011.1622 Classical Analysis and ODEs +1011.2730 Computational Complexity +1106.0200 Probability +1108.2882 Analysis of PDEs +1108.5763 Theory +1110.1085 +1201.6075 Dynamical Systems +1201.6482 Geometric Topology +1202.0762 +1205.3033 Probability +1205.3882 Dynamical Systems +1205.5118 Metric Geometry +1206.4807 Probability +1207.3024 Data Structures and Algorithms +1208.1783 Computational Complexity +1208.4987 Computational Complexity +1209.1362 Combinatorics +1209.5304 Soft Condensed Matter +1210.2384 +1210.3094 Biological Physics +1210.8379 Combinatorics +1211.0213 Algebraic Topology +1211.3918 Representation Theory +1211.5488 Probability +1212.1714 Geometric Topology +1212.4060 +1212.6078 +1301.0896 Number Theory +1301.3794 Computational Physics +1301.5206 Category Theory +1302.1817 Solar and Stellar Astrophysics +1302.5996 Atomic Physics +1302.6576 Symplectic Geometry +1303.0163 Analysis of PDEs +1303.2479 Classical Analysis and ODEs +1303.6772 Theory +1303.7113 Statistical Mechanics +1304.6062 Statistical Mechanics +1304.6440 Analysis of PDEs +1305.0883 Adaptation and Self-Organizing Systems +1305.0915 Pattern Formation and Solitons +1305.1979 Computational Complexity +1305.7096 Phenomenology +1306.0880 Quantum Gases +1306.2483 Data Structures and Algorithms +1306.5045 Exactly Solvable and Integrable Systems +1306.6523 Category Theory +1306.6788 Commutative Algebra +1306.6813 Statistical Mechanics +1307.0754 Number Theory +1307.2880 Phenomenology +1307.5601 Machine Learning +1308.1804 Category Theory +1308.2928 +1308.3310 Information Theory +1308.3471 +1308.4796 Materials Science +1309.0304 Representation Theory +1309.0703 Fluid Dynamics +1309.0914 Accelerator Physics +1309.1952 Machine Learning +1309.4024 Computer Vision and Pattern Recognition +1309.4574 Strongly Correlated Electrons +1309.5251 Solar and Stellar Astrophysics +1309.6939 Populations and Evolution +1309.7916 Quantum Algebra +1310.1707 Cosmology and Nongalactic Astrophysics +1310.2006 Classical Analysis and ODEs +1310.3135 Medical Physics +1310.4100 Quantum Gases +1310.4460 Combinatorics +1310.4608 Probability +1310.6201 Biological Physics +1310.8264 Materials Science +1310.8487 Information Theory +1311.0013 Cosmology and Nongalactic Astrophysics +1311.0674 Computation +1311.1877 Classical Analysis and ODEs +1311.3207 Solar and Stellar Astrophysics +1311.3650 Soft Condensed Matter +1311.4752 Optimization and Control +1311.4937 Experiment +1311.5357 Experiment +1311.5399 Functional Analysis +1311.5519 Theory +1311.6141 Experiment +1311.6330 +1311.6349 Atmospheric and Oceanic Physics +1311.6866 +1311.7023 Probability +1311.7127 +1312.0909 Representation Theory +1312.1176 Disordered Systems and Neural Networks +1312.1312 Theory +1312.1530 Learning +1312.1624 Probability +1312.7138 Optics +1401.0659 Mesoscale and Nanoscale Physics +1401.0919 Theory +1401.1106 Information Theory +1401.2425 Statistics Theory +1401.2505 Quantum Algebra +1401.2546 Differential Geometry +1401.2787 Metric Geometry +1401.3186 +1401.5045 Materials Science +1401.5151 Information Theory +1401.6442 Quantum Algebra +1401.8278 Accelerator Physics +1402.0381 +1402.0684 Number Theory +1402.1521 Experiment +1402.2176 Experiment +1402.2385 +1402.2590 Cosmology and Nongalactic Astrophysics +1402.2791 Mesoscale and Nanoscale Physics +1402.3739 Optics +1402.4402 +1402.4696 Theory +1402.4770 Experiment +1402.5027 Theory +1402.7303 +1403.0635 Lattice +1403.1105 Soft Condensed Matter +1403.2272 Methodology +1403.2941 Digital Libraries +1403.2985 Cosmology and Nongalactic Astrophysics +1403.3193 Atomic Physics +1403.4763 Physics and Society +1403.5225 Mesoscale and Nanoscale Physics +1403.5643 Mesoscale and Nanoscale Physics +1403.6123 Cosmology and Nongalactic Astrophysics +1403.6731 General Physics +1403.6899 Optics +1403.7366 Experiment +1403.7550 Databases +1404.0130 Mesoscale and Nanoscale Physics +1404.0614 Data Structures and Algorithms +1404.0684 +1404.1732 Data Structures and Algorithms +1404.1777 Computer Vision and Pattern Recognition +1404.2313 Artificial Intelligence +1404.3856 Mesoscale and Nanoscale Physics +1404.4143 Mesoscale and Nanoscale Physics +1404.4161 Mathematical Software +1404.4787 Optimization and Control +1404.4833 Number Theory +1404.5586 Analysis of PDEs +1405.1040 Cosmology and Nongalactic Astrophysics +1405.1357 Optimization and Control +1405.1596 Earth and Planetary Astrophysics +1405.2356 Mesoscale and Nanoscale Physics +1405.2839 Numerical Analysis +1405.4003 +1405.4035 Representation Theory +1405.4222 +1405.5927 Logic in Computer Science +1405.6659 Cosmology and Nongalactic Astrophysics +1405.7163 Phenomenology +1405.7378 Solar and Stellar Astrophysics +1405.7418 Cryptography and Security +1406.0686 Superconductivity +1406.0763 Dynamical Systems +1406.1298 Quantum Algebra +1406.2271 Combinatorics +1406.3972 Classical Analysis and ODEs +1406.4178 Functional Analysis +1406.4189 +1406.5635 Theory +1406.6522 Strongly Correlated Electrons +1406.6647 Cryptography and Security +1406.7440 Geophysics +1406.7494 Instrumentation and Methods for Astrophysics +1406.7776 Superconductivity +1407.0386 Databases +1407.0551 Classical Analysis and ODEs +1407.0719 Soft Condensed Matter +1407.0727 Optimization and Control +1407.0874 Geophysics +1407.0934 Representation Theory +1407.0978 Distributed, Parallel, and Cluster Computing +1407.1049 Earth and Planetary Astrophysics +1407.1288 Rings and Algebras +1407.1305 Rings and Algebras +1407.1311 Rings and Algebras +1407.1324 Operator Algebras +1407.1326 +1407.1328 Software Engineering +1407.1329 Probability +1407.1332 Astrophysics of Galaxies +1407.1334 Classical Analysis and ODEs +1407.1339 Computer Vision and Pattern Recognition +1407.1343 Pricing of Securities +1407.1345 Geometric Topology +1407.1347 Statistics Theory +1407.1349 Operator Algebras +1407.1350 Operator Algebras +1407.1351 Quantum Gases +1407.1352 Computer Vision and Pattern Recognition +1407.1353 Functional Analysis +1407.1354 Chemical Physics +1407.1356 Operator Algebras +1407.1360 Information Theory +1407.1365 Fluid Dynamics +1407.1367 Complex Variables +1407.1373 History and Philosophy of Physics +1407.1377 Adaptation and Self-Organizing Systems +1407.1383 Information Theory +1407.1389 Operator Algebras +1407.1392 Combinatorics +1407.1397 Differential Geometry +1407.1398 Materials Science +1407.1399 Numerical Analysis +1407.1402 Networking and Internet Architecture +1407.1404 Phenomenology +1407.1405 Soft Condensed Matter +1407.1407 Strongly Correlated Electrons +1407.1409 Strongly Correlated Electrons +1407.1412 Numerical Analysis +1407.1413 Solar and Stellar Astrophysics +1407.1415 Analysis of PDEs +1407.1416 Materials Science +1407.1420 Rings and Algebras +1407.1422 Combinatorics +1407.1424 Information Theory +1407.1429 Other Computer Science +1407.1431 Optimization and Control +1407.1442 Networking and Internet Architecture +1407.1443 Social and Information Networks +1407.1447 Algebraic Geometry +1407.1448 Analysis of PDEs +1407.1450 Social and Information Networks +1407.1453 Mathematical Finance +1407.1458 Classical Analysis and ODEs +1407.1460 Robotics +1407.1461 Robotics +1407.1462 Materials Science +1407.1464 Analysis of PDEs +1407.1465 Cryptography and Security +1407.1466 Computers and Society +1407.1467 +1407.1470 Cosmology and Nongalactic Astrophysics +1407.1471 Information Theory +1407.1473 Category Theory +1407.1475 Strongly Correlated Electrons +1407.1477 Information Theory +1407.1480 Computational Complexity +1407.1484 Optimization and Control +1407.1487 Information Theory +1407.1490 Computer Vision and Pattern Recognition +1407.1492 Information Theory +1407.1493 Commutative Algebra +1407.1494 Materials Science +1407.1495 Functional Analysis +1407.1496 Functional Analysis +1407.1500 +1407.1502 Systems and Control +1407.1503 Analysis of PDEs +1407.1505 Atomic Physics +1407.1506 Representation Theory +1407.1508 Networking and Internet Architecture +1407.1513 Formal Languages and Automata Theory +1407.1515 Other Condensed Matter +1407.1516 Geometric Topology +1407.1520 Distributed, Parallel, and Cluster Computing +1407.1521 Data Structures and Algorithms +1407.1522 Analysis of PDEs +1407.1526 Chaotic Dynamics +1407.1527 Quantum Algebra +1407.1529 Geometric Topology +1407.1532 General Topology +1407.1533 History and Overview +1407.1536 Analysis of PDEs +1407.1538 Learning +1407.1539 Information Retrieval +1407.1541 Solar and Stellar Astrophysics +1407.1545 Programming Languages +1407.1549 Social and Information Networks +1407.1557 Functional Analysis +1407.1558 Algebraic Geometry +1407.1559 Probability +1407.1560 Complex Variables +1407.1561 Complex Variables +1407.1567 Numerical Analysis +1407.1572 Numerical Analysis +1407.1575 Superconductivity +1407.1576 Computational Engineering, Finance, and Science +1407.1579 Dynamical Systems +1407.1584 Artificial Intelligence +1407.1592 Combinatorics +1407.1594 Analysis of PDEs +1407.1596 Analysis of PDEs +1407.1597 Probability +1407.1599 Optics +1407.1603 Analysis of PDEs +1407.1604 Combinatorics +1407.1605 Computation and Language +1407.1615 Numerical Analysis +1407.1616 Representation Theory +1407.1618 Phenomenology +1407.1621 Phenomenology +1407.1623 Phenomenology +1407.1628 Materials Science +1407.1629 Networking and Internet Architecture +1407.1634 +1407.1637 Discrete Mathematics +1407.1638 Solar and Stellar Astrophysics +1407.1640 Computation and Language +1407.1641 Exactly Solvable and Integrable Systems +1407.1642 Neurons and Cognition +1407.1643 Commutative Algebra +1407.1644 Functional Analysis +1407.1647 Discrete Mathematics +1407.1648 Dynamical Systems +1407.1650 Optimization and Control +1407.1652 Mesoscale and Nanoscale Physics +1407.1654 Combinatorics +1407.1655 Phenomenology +1407.1656 Optics +1407.1658 Probability +1407.1659 Materials Science +1407.1660 Networking and Internet Architecture +1407.1662 Probability +1407.1663 Functional Analysis +1407.1665 Optics +1407.1669 Analysis of PDEs +1407.1670 Combinatorics +1407.1671 Optics +1407.1673 Statistical Mechanics +1407.1677 Materials Science +1407.1678 Numerical Analysis +1407.1681 +1407.1685 Group Theory +1407.1688 Astrophysics of Galaxies +1407.1690 Functional Analysis +1407.1691 Group Theory +1407.1694 Phenomenology +1407.1695 Representation Theory +1407.1696 Soft Condensed Matter +1407.1700 Probability +1407.1701 Rings and Algebras +1407.1704 Optics +1407.1706 Data Structures and Algorithms +1407.1713 Soft Condensed Matter +1407.1720 Quantum Gases +1407.1722 Chemical Physics +1407.1723 Numerical Analysis +1407.1726 Economics +1407.1728 Chemical Physics +1407.1733 Mesoscale and Nanoscale Physics +1407.1737 Networking and Internet Architecture +1407.1741 Popular Physics +1407.1743 Solar and Stellar Astrophysics +1407.1747 Number Theory +1407.1751 Statistics Theory +1407.1755 Optimization and Control +1407.1757 Numerical Analysis +1407.1762 Biological Physics +1407.1765 Instrumentation and Methods for Astrophysics +1407.1768 Atmospheric and Oceanic Physics +1407.1772 Social and Information Networks +1407.1773 Symplectic Geometry +1407.1774 Computation +1407.1776 Dynamical Systems +1407.1777 History and Overview +1407.1778 Applications +1407.1780 +1407.1782 Phenomenology +1407.1784 Cosmology and Nongalactic Astrophysics +1407.1787 Dynamical Systems +1407.1790 Optimization and Control +1407.1793 Soft Condensed Matter +1407.1794 Populations and Evolution +1407.1800 Classical Physics +1407.1801 Theory +1407.1803 Numerical Analysis +1407.1804 General Physics +1407.1806 Materials Science +1407.1807 Databases +1407.1808 Computer Vision and Pattern Recognition +1407.1812 Optics +1407.1814 Algebraic Geometry +1407.1824 Differential Geometry +astro-ph/0109105 +math/0412070 Optimization and Control +0903.3617 +1002.1737 +1006.2072 Quantum Gases +1006.5689 Analysis of PDEs +1010.4110 Data Structures and Algorithms +1011.6353 Logic +1101.2255 Space Physics +1107.4680 Functional Analysis +1112.0948 Group Theory +1112.0987 Computational Complexity +1201.1944 Dynamical Systems +1201.5183 Differential Geometry +1202.3985 Number Theory +1203.0477 Probability +1203.1477 Combinatorics +1204.0168 Applications +1204.0468 Phenomenology +1204.4704 Number Theory +1206.3341 Algebraic Topology +1206.6264 Analysis of PDEs +1208.6090 Classical Analysis and ODEs +1209.3996 Combinatorics +1210.5674 Phenomenology +1211.1936 General Physics +1211.3291 Soft Condensed Matter +1211.3676 +1212.0101 Information Theory +1212.0460 Analysis of PDEs +1212.3227 Analysis of PDEs +1212.4762 Probability +1212.6697 Probability +1301.3436 +1301.4851 Algebraic Geometry +1301.6264 Optics +1302.2859 +1302.3175 Differential Geometry +1302.7185 +1303.0374 Dynamical Systems +1303.5137 Complex Variables +1303.5330 Optimization and Control +1304.0618 Algebraic Topology +1304.2288 +1305.0094 Mesoscale and Nanoscale Physics +1305.1220 Physics Education +1305.1699 Phenomenology +1305.2538 Combinatorics +1305.2664 Number Theory +1305.3590 Superconductivity +1305.3993 Analysis of PDEs +1305.7172 Number Theory +1305.7477 Statistics Theory +1306.1779 Theory +1306.2415 Combinatorics +1306.2480 Molecular Networks +1306.3544 Number Theory +1306.4352 +1306.4841 Geometric Topology +1308.0616 Earth and Planetary Astrophysics +1308.2529 Superconductivity +1308.2956 Analysis of PDEs +1308.4015 History and Philosophy of Physics +1308.5844 Algebraic Geometry +1309.0176 Functional Analysis +1309.3679 Analysis of PDEs +1309.5173 Biological Physics +1310.2132 Materials Science +1310.2549 Disordered Systems and Neural Networks +1310.2828 Numerical Analysis +1310.4521 Combinatorics +1310.7997 Probability +1311.1163 Information Theory +1311.5014 Networking and Internet Architecture +1311.6235 Data Structures and Algorithms +1311.6600 +1311.6604 +1311.7549 Analysis of PDEs +1312.0288 Information Theory +1312.3522 Learning +1312.6184 Learning +1312.6669 Superconductivity +1312.7830 Phenomenology +1401.0752 Group Theory +1401.1043 Databases +1401.1252 Analysis of PDEs +1401.1415 Optics +1401.1426 Theory +1401.2582 Functional Analysis +1401.3078 Materials Science +1401.3147 Spectral Theory +1401.6204 Analysis of PDEs +1401.7623 Data Structures and Algorithms +1402.1568 +1402.2233 Algebraic Geometry +1402.2748 +1402.3458 +1402.3733 +1402.5558 Analysis of PDEs +1402.6365 Analysis of PDEs +1402.6559 Probability +1402.6967 +1403.0640 Rings and Algebras +1403.0895 Numerical Analysis +1403.1398 Phenomenology +1403.2151 +1403.2226 Physics and Society +1403.2297 Dynamical Systems +1403.2900 Optimization and Control +1403.2901 Optimization and Control +1403.4676 +1403.5214 Complex Variables +1403.6777 Statistical Mechanics +1403.8087 Theory +1404.0223 Differential Geometry +1404.0803 Fluid Dynamics +1404.1826 Complex Variables +1404.3511 Phenomenology +1404.5805 Differential Geometry +1404.6157 Symplectic Geometry +1404.7181 Soft Condensed Matter +1404.7439 +1404.7581 Analysis of PDEs +1404.7583 Analysis of PDEs +1405.0485 Mesoscale and Nanoscale Physics +1405.1094 Number Theory +1405.1420 Phenomenology +1405.1526 +1405.1549 Plasma Physics +1405.1760 Soft Condensed Matter +1405.2465 +1405.3252 Combinatorics +1405.3987 Phenomenology +1405.4044 Computational Engineering, Finance, and Science +1405.4264 Materials Science +1405.4499 Functional Analysis +1405.4802 Computer Vision and Pattern Recognition +1405.4839 Computational Physics +1405.5337 Phenomenology +1405.5410 Cryptography and Security +1406.0027 Superconductivity +1406.0664 Phenomenology +1406.0671 Information Theory +1406.0710 Phenomenology +1406.0965 +1406.0976 Theory +1406.1544 High Energy Astrophysical Phenomena +1406.1640 Biological Physics +1406.1718 Cosmology and Nongalactic Astrophysics +1406.2028 Mesoscale and Nanoscale Physics +1406.2076 Information Theory +1406.2081 Phenomenology +1406.2123 Representation Theory +1406.2146 Cryptography and Security +1406.2221 Algebraic Geometry +1406.2412 Superconductivity +1406.3318 +1406.4092 +1406.4130 Astrophysics of Galaxies +1406.4298 Mesoscale and Nanoscale Physics +1406.5114 Theory +1406.5190 High Energy Astrophysical Phenomena +1406.5640 Mesoscale and Nanoscale Physics +1406.5648 Earth and Planetary Astrophysics +1406.5739 Phenomenology +1406.6155 Theory +1406.6543 Phenomenology +1406.6715 General Physics +1406.6797 Superconductivity +1406.6925 Phenomenology +1407.0383 Phenomenology +1407.0725 Materials Science +1407.1254 Physics and Society +1407.1730 Statistical Mechanics +1407.1889 Computational Complexity +1407.1891 Computational Complexity +1407.2034 Optimization and Control +1407.2256 Machine Learning +1407.2464 Combinatorics +1407.3225 +1407.4535 Optics +1407.5356 Phenomenology +1407.7307 Fluid Dynamics +1407.7723 Optics +1407.7967 Strongly Correlated Electrons +1407.7972 Phenomenology +1407.8030 Atomic Physics +1407.8120 Phenomenology +1408.1231 Category Theory +1408.1957 Theory +1408.1976 Phenomenology +1408.2256 Quantum Gases +1408.3308 Instrumentation and Detectors +1408.4114 Fluid Dynamics +1408.4830 Metric Geometry +1408.5285 Mesoscale and Nanoscale Physics +1408.5650 Number Theory +1408.7039 Logic in Computer Science +1409.0011 Earth and Planetary Astrophysics +1409.0301 Strongly Correlated Electrons +1409.0907 +1409.1496 Social and Information Networks +1409.1580 Astrophysics of Galaxies +1409.1613 High Energy Astrophysical Phenomena +1409.1948 Astrophysics of Galaxies +1409.2346 Optics +1409.3345 +1409.4807 +1409.5217 Materials Science +1409.5534 Materials Science +1409.5743 Medical Physics +1409.5879 Soft Condensed Matter +1409.5970 Dynamical Systems +1409.6672 Statistical Mechanics +1409.7038 Combinatorics +1409.7092 Networking and Internet Architecture +1409.7224 +1409.7443 Probability +1409.7489 Social and Information Networks +1409.7576 Mesoscale and Nanoscale Physics +1409.8061 Information Theory +1409.8206 Strongly Correlated Electrons +1409.8272 Optimization and Control +1410.0005 Solar and Stellar Astrophysics +1410.0758 Materials Science +1410.0804 Performance +1410.0809 Solar and Stellar Astrophysics +1410.1032 Theory +1410.1712 Number Theory +1410.1771 Machine Learning +1410.1859 Logic +1410.1938 Quantum Gases +1410.2154 Materials Science +1410.2329 Plasma Physics +1410.2390 Information Theory +1410.2453 Probability +1410.2464 +1410.2476 Optimization and Control +1410.2752 Metric Geometry +1410.2763 General Topology +1410.2824 Lattice +1410.2886 Soft Condensed Matter +1410.2888 General Physics +1410.2889 Other Computer Science +1410.2901 Logic in Computer Science +1410.2904 Information Theory +1410.2905 Analysis of PDEs +1410.2910 Logic in Computer Science +1410.2911 Analysis of PDEs +1410.2912 Optics +1410.2916 Materials Science +1410.2920 Information Theory +1410.2929 Mesoscale and Nanoscale Physics +1410.2933 Combinatorics +1410.2935 Combinatorics +1410.2938 Combinatorics +1410.2939 Materials Science +1410.2940 Combinatorics +1410.2941 Combinatorics +1410.2943 Accelerator Physics +1410.2951 Information Theory +1410.2952 Materials Science +1410.2953 Number Theory +1410.2954 Systems and Control +1410.2956 +1410.2961 Statistics Theory +1410.2962 Statistical Mechanics +1410.2964 Functional Analysis +1410.2965 Cosmology and Nongalactic Astrophysics +1410.2968 +1410.2970 Geometric Topology +1410.2971 Cosmology and Nongalactic Astrophysics +1410.2973 Populations and Evolution +1410.2975 Astrophysics of Galaxies +1410.2980 Digital Libraries +1410.2984 Analysis of PDEs +1410.2988 Databases +1410.2989 Optimization and Control +1410.2990 Molecular Networks +1410.2991 Analysis of PDEs +1410.2992 Astrophysics of Galaxies +1410.2994 Astrophysics of Galaxies +1410.2996 General Topology +1410.2997 Information Theory +1410.3003 Analysis of PDEs +1410.3004 Probability +1410.3007 Group Theory +1410.3009 Algebraic Geometry +1410.3010 Combinatorics +1410.3011 Classical Analysis and ODEs +1410.3013 Information Theory +1410.3016 Soft Condensed Matter +1410.3018 Graphics +1410.3021 Combinatorics +1410.3025 Physics Education +1410.3028 Networking and Internet Architecture +1410.3033 Computer Science and Game Theory +1410.3036 History and Overview +1410.3038 Algebraic Geometry +1410.3040 Probability +1410.3041 Cryptography and Security +1410.3042 History and Overview +1410.3043 Differential Geometry +1410.3044 Numerical Analysis +1410.3045 Experiment +1410.3048 Computer Science and Game Theory +1410.3055 Group Theory +1410.3057 +1410.3058 Dynamical Systems +1410.3062 Probability +1410.3068 +1410.3069 Numerical Analysis +1410.3071 Optics +1410.3072 Solar and Stellar Astrophysics +1410.3073 Networking and Internet Architecture +1410.3075 +1410.3080 Computer Vision and Pattern Recognition +1410.3082 Numerical Analysis +1410.3083 Systems and Control +1410.3085 Networking and Internet Architecture +1410.3087 Algebraic Geometry +1410.3089 Information Theory +1410.3090 Algebraic Geometry +1410.3091 Discrete Mathematics +1410.3096 Cellular Automata and Lattice Gases +1410.3097 Social and Information Networks +1410.3098 Algebraic Geometry +1410.3104 Distributed, Parallel, and Cluster Computing +1410.3106 Spectral Theory +1410.3107 Strongly Correlated Electrons +1410.3108 Astrophysics of Galaxies +1410.3109 +1410.3111 Machine Learning +1410.3113 +1410.3114 Algebraic Geometry +1410.3115 Probability +1410.3117 Multimedia +1410.3121 Rings and Algebras +1410.3122 Multimedia +1410.3125 Artificial Intelligence +1410.3126 Probability +1410.3132 Solar and Stellar Astrophysics +1410.3133 Complex Variables +1410.3134 Earth and Planetary Astrophysics +1410.3135 Quantitative Methods +1410.3136 Geometric Topology +1410.3138 +1410.3140 Representation Theory +1410.3144 Logic +1410.3145 Learning +1410.3147 Combinatorics +1410.3149 Symplectic Geometry +1410.3150 Probability +1410.3151 Instrumentation and Methods for Astrophysics +1410.3154 Computational Geometry +1410.3155 Methodology +1410.3157 Differential Geometry +1410.3158 Analysis of PDEs +1410.3159 Probability +1410.3163 Methodology +1410.3166 Representation Theory +1410.3168 Combinatorics +1410.3169 Computational Geometry +1410.3170 Functional Analysis +1410.3173 Discrete Mathematics +1410.3174 Algebraic Geometry +1410.3175 Dynamical Systems +1410.3177 Numerical Analysis +1410.3179 Dynamical Systems +1410.3181 Commutative Algebra +1410.3182 Analysis of PDEs +1410.3183 Differential Geometry +1410.3185 Materials Science +1410.3186 Analysis of PDEs +1410.3192 Machine Learning +1410.3193 Theory +1410.3194 Numerical Analysis +1410.3195 Numerical Analysis +1410.3196 Numerical Analysis +1410.3197 Numerical Analysis +1410.3199 Robotics +1410.3200 Computers and Society +1410.3201 Accelerator Physics +1410.3203 Astrophysics of Galaxies +1410.3206 Analysis of PDEs +1410.3207 Probability +1410.3209 +1410.3210 Spectral Theory +1410.3211 Logic +1410.3214 Information Theory +1410.3216 Lattice +1410.3218 Category Theory +1410.3221 Dynamical Systems +1410.3226 Cryptography and Security +1410.3227 Formal Languages and Automata Theory +1410.3229 Experiment +1410.3230 Mesoscale and Nanoscale Physics +1410.3233 Materials Science +1410.3234 Machine Learning +1410.3235 Earth and Planetary Astrophysics +1410.3237 Phenomenology +1410.3240 +1410.3241 Classical Analysis and ODEs +1410.3243 Rings and Algebras +1410.3244 Representation Theory +1410.3245 Applications +1410.3246 Experiment +1410.3247 Data Structures and Algorithms +1410.3251 Systems and Control +1410.3255 Classical Analysis and ODEs +1410.3258 Solar and Stellar Astrophysics +1410.3266 Instrumentation and Methods for Astrophysics +1410.3268 Differential Geometry +1410.3269 K-Theory and Homology +1410.3270 Cryptography and Security +1410.3271 Differential Geometry +1410.3279 Phenomenology +1410.3285 Probability +1410.3286 Analysis of PDEs +1410.3295 Solar and Stellar Astrophysics +1410.3298 Classical Analysis and ODEs +1410.3300 Phenomenology +1410.3301 Molecular Networks +1410.3304 Metric Geometry +1410.3306 Solar and Stellar Astrophysics +1410.3309 Analysis of PDEs +1410.3311 Mesoscale and Nanoscale Physics +1410.3313 General Topology +1410.3314 Machine Learning +1410.3317 Accelerator Physics +1410.3320 Probability +1410.3326 Accelerator Physics +1410.3332 Mesoscale and Nanoscale Physics +1410.3333 Number Theory +1410.3334 Multiagent Systems +1410.3340 Networking and Internet Architecture +1410.3341 Learning +1410.3346 Differential Geometry +1410.3348 Machine Learning +1410.3350 +1410.3353 Materials Science +1410.3356 Analysis of PDEs +1410.3362 Optimization and Control +1410.3364 History and Overview +1410.3366 Classical Analysis and ODEs +1410.3369 Statistics Theory +1410.3370 Methodology +1410.3376 Analysis of PDEs +1410.3378 Number Theory +1410.3379 Classical Analysis and ODEs +1410.3385 Logic in Computer Science +1410.3389 Materials Science +1410.3394 Statistical Finance +1410.3396 Algebraic Topology +1410.3401 Software Engineering +1410.3402 Classical Analysis and ODEs +1410.3405 Combinatorics +1410.3408 Data Structures and Algorithms +1410.3415 Numerical Analysis +1410.3416 General Physics +1410.3423 Combinatorics +1410.3426 Numerical Analysis +1410.3427 Group Theory +1410.3429 Mesoscale and Nanoscale Physics +1410.3433 Theory +1410.3434 Quantum Algebra +1410.3436 Probability +1410.3437 Strongly Correlated Electrons +1410.3439 Representation Theory +1410.3440 Distributed, Parallel, and Cluster Computing +1410.3441 Distributed, Parallel, and Cluster Computing +1410.3442 Geometric Topology +1410.3445 Numerical Analysis +1410.3447 Systems and Control +1410.3450 Statistics Theory +1410.3452 General Topology +hep-ph/0403156 Phenomenology +hep-th/0110296 Theory +math/0601558 Number Theory +math/0701238 General Mathematics +0705.0904 +0705.1765 +0705.3619 +0705.3623 +0706.2686 Algebraic Geometry +0708.0107 +0903.1445 Strongly Correlated Electrons +0908.3760 Differential Geometry +0909.3746 Representation Theory +0910.1050 Geometric Topology +1002.0364 Dynamical Systems +1007.0210 Neurons and Cognition +1009.2277 Dynamical Systems +1009.2346 Space Physics +1010.1180 Statistical Mechanics +1010.5651 Combinatorics +1010.5658 Combinatorics +1010.5841 Combinatorics +1102.0566 Neurons and Cognition +1104.4377 Analysis of PDEs +1104.5547 Cosmology and Nongalactic Astrophysics +1107.3807 Algebraic Geometry +1108.0725 High Energy Astrophysical Phenomena +1109.3919 Dynamical Systems +1109.4670 Combinatorics +1110.5040 +1111.2657 Analysis of PDEs +1112.5772 Logic +1112.5788 Differential Geometry +1201.5078 General Physics +1203.1081 Algebraic Geometry +1203.2834 Networking and Internet Architecture +1203.3588 Combinatorics +1204.2952 Materials Science +1204.3672 +1204.4137 Probability +1204.5414 Dynamical Systems +1204.6585 Soft Condensed Matter +1205.1241 Probability +1205.7074 Combinatorics +1206.3804 Information Theory +1206.5956 Algebraic Geometry +1207.2383 Astrophysics of Galaxies +1208.1819 Learning +1208.4786 Number Theory +1208.5639 Combinatorics +1208.5854 Strongly Correlated Electrons +1209.1355 Combinatorics +1209.1796 Differential Geometry +1209.2546 Probability +1209.3493 Combinatorics +1209.5807 Information Theory +1210.2873 Group Theory +1210.3809 Molecular Networks +1210.5448 +1210.5475 Algebraic Geometry +1211.0846 Dynamical Systems +1211.4147 Combinatorics +1212.1506 Analysis of PDEs +1212.2249 Combinatorics +1212.2583 Cosmology and Nongalactic Astrophysics +1212.5497 Methodology +1212.5738 Combinatorics +1212.6956 Algebraic Geometry +1301.3244 +1301.4970 Algebraic Geometry +1301.6664 Materials Science +1301.6845 Combinatorics +1301.7096 Fluid Dynamics +1302.1446 Probability +1302.1648 Combinatorics +1302.2539 Materials Science +1302.5831 Methodology +1303.0810 Applications +1303.2801 Materials Science +1303.3122 Classical Analysis and ODEs +1303.5626 Combinatorics +1304.2851 Mesoscale and Nanoscale Physics +1304.3071 Optimization and Control +1305.0222 Number Theory +1305.2575 Strongly Correlated Electrons +1305.2968 Differential Geometry +1305.3888 Analysis of PDEs +1305.3974 Dynamical Systems +1305.4509 Cosmology and Nongalactic Astrophysics +1305.4924 Chaotic Dynamics +1305.7499 Analysis of PDEs +1306.2622 Representation Theory +1306.4512 Computers and Society +1306.5196 Atomic Physics +1306.6790 Chaotic Dynamics +1307.0120 Dynamical Systems +1307.1185 Statistics Theory +1307.4671 Quantum Gases +1307.4994 Quantum Gases +1307.7254 Superconductivity +1307.7799 Materials Science +1307.8262 Combinatorics +1308.0092 Mesoscale and Nanoscale Physics +1308.0461 Theory +1308.1061 +1308.4034 Differential Geometry +1308.4835 Analysis of PDEs +1308.5642 Superconductivity +1308.5654 High Energy Astrophysical Phenomena +1308.5765 Theory +1309.0203 Strongly Correlated Electrons +1309.1062 Soft Condensed Matter +1309.1452 Soft Condensed Matter +1309.2180 +1309.2941 Strongly Correlated Electrons +1309.4007 +1309.4870 Materials Science +1309.5196 Statistical Mechanics +1309.5980 Group Theory +1309.6641 Cosmology and Nongalactic Astrophysics +1310.0400 Quantum Gases +1310.0514 +1310.2958 Number Theory +1310.3892 Machine Learning +1310.4197 Algebraic Geometry +1310.5646 Representation Theory +1310.5828 Robotics +1310.6189 Chemical Physics +1310.6806 Chemical Physics +1310.7329 Symplectic Geometry +1310.7487 Phenomenology +1311.1481 Populations and Evolution +1311.2475 Differential Geometry +1311.2962 Phenomenology +1311.3536 +1311.3539 Logic +1311.3591 +1311.5633 Accelerator Physics +1311.6297 Atomic Physics +1311.6361 Atomic Physics +1311.7262 Combinatorics +1312.0159 Mesoscale and Nanoscale Physics +1312.1159 Representation Theory +1312.1637 Materials Science +1312.1744 Functional Analysis +1312.2438 Strongly Correlated Electrons +1312.3147 +1312.3554 Superconductivity +1312.3665 Operating Systems +1312.4194 Experiment +1312.5060 Mesoscale and Nanoscale Physics +1312.5190 Mesoscale and Nanoscale Physics +1312.5478 +1312.5596 Strongly Correlated Electrons +1312.6178 Lattice +1312.6400 Complex Variables +1401.2207 Theory +1401.2667 +1401.3183 Phenomenology +1401.4075 Strongly Correlated Electrons +1401.4101 Optics +1401.4643 +1401.5112 Analysis of PDEs +1401.6073 Materials Science +1401.6838 Algebraic Geometry +1401.6999 Chaotic Dynamics +1401.7101 Theory +1401.7250 Statistical Mechanics +1401.7948 Logic +1402.0108 Machine Learning +1402.0427 Symplectic Geometry +1402.1882 Networking and Internet Architecture +1402.2238 Information Theory +1402.3454 +1402.5259 Data Structures and Algorithms +1402.5921 +1402.6025 Analysis of PDEs +1402.6463 Phenomenology +1402.6843 Mesoscale and Nanoscale Physics +1403.0004 Strongly Correlated Electrons +1403.0550 +1403.0703 Combinatorics +1403.0750 Distributed, Parallel, and Cluster Computing +1403.2223 Materials Science +1403.2645 Representation Theory +1403.4394 Materials Science +1403.5190 Formal Languages and Automata Theory +1404.3674 Cosmology and Nongalactic Astrophysics +1404.4073 Quantitative Methods +1404.4409 Metric Geometry +1404.5262 Strongly Correlated Electrons +1404.5674 Complex Variables +1404.6045 Probability +1404.6913 Geometric Topology +1404.7213 Chemical Physics +1404.7287 Networking and Internet Architecture +1404.7700 Group Theory +1404.7816 Biological Physics +1405.0071 Experiment +1405.0078 Combinatorics +1405.0110 Probability +1405.0240 Quantum Algebra +1405.0275 Cosmology and Nongalactic Astrophysics +1405.0427 +1405.0473 Instrumentation and Methods for Astrophysics +1405.0488 High Energy Astrophysical Phenomena +1405.0500 Formal Languages and Automata Theory +1405.0501 Learning +1405.0504 +1405.0506 Computation +1405.0507 Classical Analysis and ODEs +1405.0511 Solar and Stellar Astrophysics +1405.0520 Statistical Mechanics +1405.0529 +1405.0530 Machine Learning +1405.0531 Commutative Algebra +1405.0532 Mesoscale and Nanoscale Physics +1405.0533 Combinatorics +1405.0535 Optimization and Control +1405.0536 Numerical Analysis +1405.0541 Logic in Computer Science +1405.0542 Differential Geometry +1405.0545 Computer Vision and Pattern Recognition +1405.0548 Commutative Algebra +1405.0549 Computational Engineering, Finance, and Science +1405.0551 Mesoscale and Nanoscale Physics +1405.0554 Software Engineering +1405.0556 Representation Theory +1405.0559 Logic in Computer Science +1405.0560 Computational Engineering, Finance, and Science +1405.0562 Formal Languages and Automata Theory +1405.0564 Strongly Correlated Electrons +1405.0571 Classical Analysis and ODEs +1405.0573 Neural and Evolutionary Computing +1405.0575 High Energy Astrophysical Phenomena +1405.0579 Statistics Theory +1405.0588 Combinatorics +1405.0589 Number Theory +1405.0591 Learning +1405.0592 Differential Geometry +1405.0594 Statistical Mechanics +1405.0595 Probability +1405.0598 Differential Geometry +1405.0600 High Energy Astrophysical Phenomena +1405.0601 Computer Vision and Pattern Recognition +1405.0602 Machine Learning +1405.0603 Computation and Language +1405.0604 Statistics Theory +1405.0606 Strongly Correlated Electrons +1405.0607 Probability +1405.0615 Combinatorics +1405.0616 Computation and Language +1405.0619 +1405.0620 Fluid Dynamics +1405.0621 Analysis of PDEs +1405.0624 Soft Condensed Matter +1405.0628 Computer Science and Game Theory +1405.0632 Computer Vision and Pattern Recognition +1405.0634 Soft Condensed Matter +1405.0635 +1405.0636 Strongly Correlated Electrons +1405.0637 Distributed, Parallel, and Cluster Computing +1405.0638 +1405.0641 Digital Libraries +1405.0643 Number Theory +1405.0647 Information Retrieval +1405.0650 Software Engineering +1405.0651 Soft Condensed Matter +1405.0660 Cryptography and Security +1405.0661 Analysis of PDEs +1405.0663 Statistical Mechanics +1405.0664 +1405.0666 Analysis of PDEs +1405.0669 Information Theory +1405.0672 Operator Algebras +1405.0673 Applications +1405.0675 Strongly Correlated Electrons +1405.0680 Statistics Theory +1405.0681 Functional Analysis +1405.0683 Geometric Topology +1405.0685 Methodology +1405.0686 +1405.0688 Analysis of PDEs +1405.0689 Complex Variables +1405.0690 Analysis of PDEs +1405.0694 +1405.0696 +1405.0698 Fluid Dynamics +1405.0700 Lattice +1405.0701 Computation and Language +1405.0704 Optics +1405.0707 Numerical Analysis +1405.0712 Data Structures and Algorithms +1405.0714 Analysis of PDEs +1405.0716 Methodology +1405.0720 Artificial Intelligence +1405.0725 Differential Geometry +1405.0729 +1405.0730 Rings and Algebras +1405.0732 Risk Management +1405.0733 Physics and Society +1405.0735 Numerical Analysis +1405.0741 Numerical Analysis +1405.0743 Symplectic Geometry +1405.0749 Information Retrieval +1405.0754 Physics and Society +1405.0759 Algebraic Geometry +1405.0760 Populations and Evolution +1405.0762 Computational Geometry +1405.0765 Disordered Systems and Neural Networks +1405.0769 Methodology +1405.0770 Information Retrieval +1405.0778 Complex Variables +1405.0780 Numerical Analysis +1405.0781 Metric Geometry +1405.0783 Group Theory +1405.0785 Applications +1405.0786 Software Engineering +1405.0787 Cryptography and Security +1405.0791 Theory +1405.0792 Learning +1405.0793 Numerical Analysis +1405.0794 Numerical Analysis +1405.0795 Artificial Intelligence +1405.0796 Representation Theory +1405.0797 Chemical Physics +1405.0798 Solar and Stellar Astrophysics +1405.0803 Applications +1405.0804 Differential Geometry +1405.0805 Artificial Intelligence +1405.0806 Systems and Control +1405.0807 Applications +1405.0809 Artificial Intelligence +1405.0810 Functional Analysis +1405.0820 Theory +1405.0822 Networking and Internet Architecture +1405.0823 Computer Science and Game Theory +1405.0825 Computer Science and Game Theory +1405.0826 Differential Geometry +1405.0827 +1405.0831 General Mathematics +1405.0833 Learning +1405.0835 Logic in Computer Science +1405.0836 Materials Science +1405.0837 +1405.0845 Soft Condensed Matter +1405.0847 Computational Complexity +1405.0849 Applications +1405.0856 Functional Analysis +1405.0861 Accelerator Physics +1405.0865 Probability +1405.0867 Cryptography and Security +1405.0868 Artificial Intelligence +1405.0869 Artificial Intelligence +1405.0875 Numerical Analysis +1405.0876 Artificial Intelligence +1405.0877 Computational Engineering, Finance, and Science +1405.0878 Computational Engineering, Finance, and Science +1405.0881 Group Theory +1405.0884 Theory +1405.0888 Probability +1405.0889 Combinatorics +1405.0891 Information Theory +1405.0893 Information Theory +1405.0895 Metric Geometry +1405.0901 Probability +1405.0905 Exactly Solvable and Integrable Systems +1405.0910 Human-Computer Interaction +1405.0912 Group Theory +1405.0914 Cryptography and Security +1405.0923 K-Theory and Homology +1405.0926 +1405.0928 Statistics Theory +1405.0932 Materials Science +1405.0934 Classical Analysis and ODEs +1405.0936 Artificial Intelligence +1405.0940 Earth and Planetary Astrophysics +1405.0941 Artificial Intelligence +1405.0943 +1405.0945 Data Structures and Algorithms +1405.0947 Computation and Language +1405.0951 Solar and Stellar Astrophysics +1405.0952 Differential Geometry +1405.0954 Rings and Algebras +1405.0963 Information Theory +1405.0971 Optimization and Control +1405.0976 Representation Theory +1405.0978 Soft Condensed Matter +1405.0980 Fluid Dynamics +1405.0982 Group Theory +1405.0983 Fluid Dynamics +1405.0987 Strongly Correlated Electrons +1405.0989 Complex Variables +1405.0991 Optics +1405.0992 Quantum Gases +1405.0995 Analysis of PDEs +1405.0996 Superconductivity +1405.0999 Artificial Intelligence +1405.1000 Dynamical Systems +1405.1001 Social and Information Networks +1405.1006 Algebraic Geometry +1405.1008 Networking and Internet Architecture +1405.1009 Materials Science +1405.1016 Statistical Mechanics +1405.1020 Computer Vision and Pattern Recognition +1405.1021 Differential Geometry +hep-th/9512155 Theory +quant-ph/0606033 +0705.4634 Quantitative Methods +0710.3935 Statistical Mechanics +0801.1936 Mesoscale and Nanoscale Physics +0805.0459 Artificial Intelligence +0805.4560 Artificial Intelligence +0808.2182 Chaotic Dynamics +0810.0687 Geometric Topology +0810.2046 Artificial Intelligence +0811.3804 Geophysics +0812.0657 Probability +0901.0305 Mesoscale and Nanoscale Physics +0905.3595 General Physics +0906.4073 Probability +0907.5456 Differential Geometry +1001.0212 Geometric Topology +1006.5157 Physics Education +1007.3104 Differential Geometry +1012.3130 Data Structures and Algorithms +1101.2116 Algebraic Geometry +1101.5872 Algebraic Geometry +1102.2701 Statistics Theory +1105.3327 Algebraic Geometry +1105.5715 Differential Geometry +1107.2713 Algebraic Geometry +1108.1897 Statistical Mechanics +1108.3191 Analysis of PDEs +1110.1830 Combinatorics +1110.5166 Combinatorics +1110.6702 Number Theory +1111.3529 Probability +1201.5924 Exactly Solvable and Integrable Systems +1202.1678 Theory +1202.3445 +1202.4617 Experiment +1202.5535 Experiment +1203.1113 Probability +1203.4590 Geometric Topology +1203.5410 Experiment +1204.2675 +1205.4418 Applications +1206.0961 Probability +1206.4631 Learning +1206.6679 Computation +1207.0199 Differential Geometry +1207.2887 Strongly Correlated Electrons +1207.3844 Phenomenology +1207.5092 Differential Geometry +1207.6779 Probability +1208.1330 Number Theory +1208.1359 Number Theory +1208.2088 Number Theory +1208.6293 Atomic Physics +1209.3308 +1209.5590 Operator Algebras +1210.5005 Differential Geometry +1210.5242 Strongly Correlated Electrons +1210.5746 +1210.7427 Distributed, Parallel, and Cluster Computing +1210.8344 +1211.0232 Plasma Physics +1211.1274 Statistical Mechanics +1211.5446 +1211.6049 Chaotic Dynamics +1212.0813 Dynamical Systems +1212.0851 Combinatorics +1212.2537 +1212.4619 Superconductivity +1212.4724 Instrumentation and Detectors +1212.5760 Methodology +1301.0837 +1301.4481 Chaotic Dynamics +1302.1929 Functional Analysis +1302.4694 Combinatorics +1303.0547 Number Theory +1303.2600 Strongly Correlated Electrons +1303.3548 Exactly Solvable and Integrable Systems +1303.4731 Chaotic Dynamics +1303.7159 Instrumentation and Methods for Astrophysics +1304.7733 Geophysics +1305.0156 Algebraic Geometry +1305.1406 Combinatorics +1305.1466 Combinatorics +1305.5266 Optimization and Control +1305.5328 Combinatorics +1305.6697 Quantitative Methods +1306.2452 Probability +1306.4588 Experiment +1306.4721 Information Theory +1307.1853 +1307.1947 Cosmology and Nongalactic Astrophysics +1307.4744 Information Theory +1307.4802 Quantitative Methods +1308.0235 Instrumentation and Methods for Astrophysics +1308.0908 Operator Algebras +1308.1221 General Finance +1308.3434 Earth and Planetary Astrophysics +1308.4322 Numerical Analysis +1308.5309 Probability +1309.0116 Plasma Physics +1309.2796 Data Structures and Algorithms +1309.3143 Atomic Physics +1309.3528 Probability +1309.7318 Superconductivity +1310.1010 Earth and Planetary Astrophysics +1310.1960 Phenomenology +1310.1992 Optics +1310.2316 Optics +1310.2318 Optics +1310.5429 Functional Analysis +1310.6603 +1310.6610 High Energy Astrophysical Phenomena +1310.8370 Materials Science +1310.8601 Cosmology and Nongalactic Astrophysics +1311.0020 +1311.1109 Cosmology and Nongalactic Astrophysics +1311.1118 Quantum Gases +1311.1817 Strongly Correlated Electrons +1311.2333 Adaptation and Self-Organizing Systems +1311.2386 Spectral Theory +1311.5233 Disordered Systems and Neural Networks +1312.0084 Physics and Society +1312.0129 Group Theory +1312.0275 Cosmology and Nongalactic Astrophysics +1312.0979 +1312.2444 Probability +1312.3287 +1312.5332 +1312.5354 Computational Engineering, Finance, and Science +1312.5867 +1312.6106 Cosmology and Nongalactic Astrophysics +1312.6464 Optimization and Control +1312.6852 Statistical Mechanics +1312.7163 Representation Theory +1312.7618 Optimization and Control +1401.0198 Number Theory +1401.0358 Cosmology and Nongalactic Astrophysics +1401.0715 Combinatorics +1401.0782 Mesoscale and Nanoscale Physics +1401.0783 Theory +1401.0838 Plasma Physics +1401.1691 Optics +1401.2314 Computational Finance +1401.3794 Data Structures and Algorithms +1401.5366 +1401.5829 Functional Analysis +1401.6064 Materials Science +1401.6584 Probability +1401.6801 Probability +1401.7265 Rings and Algebras +1401.7550 +1401.7730 Mesoscale and Nanoscale Physics +1401.7928 Combinatorics +1401.7931 Combinatorics +1401.7936 Cosmology and Nongalactic Astrophysics +1401.8051 Theory +1401.8076 Subcellular Processes +1401.8240 Quantum Gases +1402.1306 Strongly Correlated Electrons +1402.1817 Phenomenology +1402.2042 Information Theory +1402.2833 Physics and Society +1402.3202 Materials Science +1402.3466 Computation +1402.5781 Databases +1402.6532 Strongly Correlated Electrons +1402.6599 Materials Science +1402.6951 Machine Learning +1403.0106 Other Condensed Matter +1403.0328 +1403.0593 Quantum Gases +1403.1633 Rings and Algebras +1403.1776 Superconductivity +1403.2207 Mesoscale and Nanoscale Physics +1403.2652 Mesoscale and Nanoscale Physics +1403.4256 Mesoscale and Nanoscale Physics +1403.4506 +1403.4662 Systems and Control +1403.4752 Disordered Systems and Neural Networks +1403.6279 Neurons and Cognition +1403.6779 Populations and Evolution +1403.7741 Materials Science +1403.7799 Pricing of Securities +1403.7817 Statistical Mechanics +1403.7959 Soft Condensed Matter +1404.0822 Differential Geometry +1404.1232 +1404.1418 Mesoscale and Nanoscale Physics +1404.2573 Theory +1404.2909 Number Theory +1404.3004 Materials Science +1404.3207 Theory +1404.3713 Cosmology and Nongalactic Astrophysics +1404.4918 History and Overview +1404.5199 Physics and Society +1404.5521 Social and Information Networks +1404.5702 Mesoscale and Nanoscale Physics +1404.5772 Information Retrieval +1404.7163 Theory +1404.7603 Theory +1404.7809 Logic in Computer Science +1405.0177 Phenomenology +1405.0553 Statistical Mechanics +1405.1674 Atomic Physics +1405.1973 Fluid Dynamics +1405.2519 +1405.2815 Information Theory +1405.3028 Materials Science +1405.3455 Experiment +1405.4140 Experiment +1405.4345 Information Theory +1405.4739 Plasma Physics +1405.5087 Cosmology and Nongalactic Astrophysics +1405.5300 Optimization and Control +1405.5395 Optics +1405.6062 Strongly Correlated Electrons +1405.6477 Optimization and Control +1405.6564 Computational Geometry +1405.7174 Mesoscale and Nanoscale Physics +1405.7283 +1406.0433 Phenomenology +1406.0670 Formal Languages and Automata Theory +1406.1394 Phenomenology +1406.1881 Computer Vision and Pattern Recognition +1406.2802 Soft Condensed Matter +1406.4830 Instrumentation and Methods for Astrophysics +1406.6644 Complex Variables +1407.0107 Learning +1407.0636 Number Theory +1407.1280 Earth and Planetary Astrophysics +1407.1491 Physics and Society +1407.1501 Phenomenology +1407.1761 Probability +1407.1779 Combinatorics +1407.2013 +1407.2037 Digital Libraries +1407.2273 Number Theory +1407.2753 Complex Variables +1407.2937 Astrophysics of Galaxies +1407.3058 Operator Algebras +1407.3068 Computer Vision and Pattern Recognition +1407.3224 General Physics +1407.4183 Algebraic Geometry +1407.4634 +1407.4852 Dynamical Systems +1407.4962 Combinatorics +1407.5050 Phenomenology +1407.5060 Representation Theory +1407.5409 Combinatorics +1407.5841 Formal Languages and Automata Theory +1407.6383 Methodology +1407.6437 Combinatorics +1407.6471 Materials Science +1407.7032 Instrumentation and Methods for Astrophysics +1407.7033 Instrumentation and Methods for Astrophysics +1407.7035 Mesoscale and Nanoscale Physics +1407.7036 Instrumentation and Methods for Astrophysics +1407.7045 Geometric Topology +1407.7053 Probability +1407.7062 Differential Geometry +1407.7064 Number Theory +1407.7070 Dynamical Systems +1407.7072 Information Retrieval +1407.7074 Commutative Algebra +1407.7076 Solar and Stellar Astrophysics +1407.7080 Biomolecules +1407.7083 Systems and Control +1407.7087 Mesoscale and Nanoscale Physics +1407.7089 Statistical Mechanics +1407.7091 Robotics +1407.7092 Combinatorics +1407.7095 Mesoscale and Nanoscale Physics +1407.7098 Emerging Technologies +1407.7100 Optics +1407.7101 Emerging Technologies +1407.7103 Information Theory +1407.7109 +1407.7110 Probability +1407.7116 Analysis of PDEs +1407.7117 Analysis of PDEs +1407.7118 Applications +1407.7121 Analysis of PDEs +1407.7126 Social and Information Networks +1407.7134 Computers and Society +1407.7136 Logic in Computer Science +1407.7137 Materials Science +1407.7143 Human-Computer Interaction +1407.7148 Algebraic Geometry +1407.7151 +1407.7159 Materials Science +1407.7160 Functional Analysis +1407.7162 Data Structures and Algorithms +1407.7165 Information Theory +1407.7168 Algebraic Geometry +1407.7169 Computation and Language +1407.7170 Social and Information Networks +1407.7171 Materials Science +1407.7172 Statistics Theory +1407.7177 Number Theory +1407.7179 Complex Variables +1407.7180 Artificial Intelligence +1407.7182 Artificial Intelligence +1407.7183 Artificial Intelligence +1407.7184 Artificial Intelligence +1407.7185 Artificial Intelligence +1407.7186 Number Theory +1407.7187 Statistical Mechanics +1407.7188 Artificial Intelligence +1407.7189 Artificial Intelligence +1407.7190 Artificial Intelligence +1407.7191 Artificial Intelligence +1407.7192 Combinatorics +1407.7193 Materials Science +1407.7196 Experiment +1407.7200 Optimization and Control +1407.7202 Optimization and Control +1407.7204 Number Theory +1407.7205 Optimization and Control +1407.7206 Number Theory +1407.7207 Number Theory +1407.7211 Neural and Evolutionary Computing +1407.7215 Materials Science +1407.7217 Analysis of PDEs +1407.7218 Materials Science +1407.7221 Algebraic Geometry +1407.7223 Databases +1407.7224 Soft Condensed Matter +1407.7225 Materials Science +1407.7227 Geometric Topology +1407.7229 Algebraic Geometry +1407.7230 Algebraic Topology +1407.7233 Algebraic Geometry +1407.7235 Geometric Topology +1407.7236 Geometric Topology +1407.7237 General Finance +1407.7238 Algebraic Topology +1407.7239 Pattern Formation and Solitons +1407.7240 Geometric Topology +1407.7247 Social and Information Networks +1407.7250 Computers and Society +1407.7257 Software Engineering +1407.7260 Computers and Society +1407.7264 Operator Algebras +1407.7265 Algebraic Geometry +1407.7269 Computer Science and Game Theory +1407.7270 Numerical Analysis +1407.7272 Metric Geometry +1407.7273 Dynamical Systems +1407.7275 Phenomenology +1407.7276 Digital Libraries +1407.7277 Human-Computer Interaction +1407.7279 Computational Complexity +1407.7281 Artificial Intelligence +1407.7283 Combinatorics +1407.7285 Number Theory +1407.7291 Instrumentation and Detectors +1407.7292 Combinatorics +1407.7299 Numerical Analysis +1407.7302 Information Theory +1407.7303 Analysis of PDEs +1407.7310 Probability +1407.7313 Human-Computer Interaction +1407.7314 Computers and Society +1407.7315 Pricing of Securities +1407.7317 Computer Vision and Pattern Recognition +1407.7318 Astrophysics of Galaxies +1407.7319 Computer Science and Game Theory +1407.7321 Combinatorics +1407.7326 Probability +1407.7327 Algebraic Geometry +1407.7328 Pricing of Securities +1407.7339 Algebraic Geometry +1407.7343 Solar and Stellar Astrophysics +1407.7345 +1407.7347 Analysis of PDEs +1407.7350 Metric Geometry +1407.7351 Spectral Theory +1407.7357 Information Retrieval +1407.7359 Probability +1407.7360 Distributed, Parallel, and Cluster Computing +1407.7368 Discrete Mathematics +1407.7371 Materials Science +1407.7372 Phenomenology +1407.7375 +1407.7377 Experiment +1407.7380 History and Philosophy of Physics +1407.7381 Numerical Analysis +1407.7382 Analysis of PDEs +1407.7385 Earth and Planetary Astrophysics +1407.7399 Neural and Evolutionary Computing +1407.7406 Theory +1407.7407 +1407.7412 Populations and Evolution +1407.7415 Chemical Physics +1407.7417 Learning +1407.7418 Optics +1407.7423 Computational Complexity +1407.7428 Group Theory +1407.7429 Combinatorics +1407.7432 Materials Science +1407.7434 Statistical Mechanics +1407.7435 Category Theory +1407.7438 Mesoscale and Nanoscale Physics +1407.7439 General Mathematics +1407.7441 Mesoscale and Nanoscale Physics +1407.7444 Materials Science +1407.7445 Analysis of PDEs +1407.7447 Adaptation and Self-Organizing Systems +1407.7448 Distributed, Parallel, and Cluster Computing +1407.7449 Learning +1407.7455 Rings and Algebras +1407.7457 +1407.7459 Data Structures and Algorithms +1407.7460 Differential Geometry +1407.7462 Optics +1407.7464 Networking and Internet Architecture +1407.7466 Mesoscale and Nanoscale Physics +1407.7468 Distributed, Parallel, and Cluster Computing +1407.7473 Fluid Dynamics +1407.7476 Complex Variables +1407.7478 Algebraic Geometry +1407.7481 Probability +1407.7482 Biological Physics +1407.7483 General Mathematics +1407.7486 Theory +1407.7491 +1407.7495 General Topology +1407.7498 Data Structures and Algorithms +1407.7499 Experiment +1407.7500 Differential Geometry +1407.7504 Computer Vision and Pattern Recognition +1407.7508 Learning +1407.7509 Rings and Algebras +1407.7518 Populations and Evolution +cond-mat/0402270 Statistical Mechanics +cond-mat/0510079 Statistical Mechanics +cond-mat/0510835 Statistical Mechanics +cond-mat/0703449 Disordered Systems and Neural Networks +math/0601525 Geometric Topology +nlin/0106036 Chaotic Dynamics +quant-ph/0206158 +0710.1447 +0903.1579 Number Theory +0906.3541 Strongly Correlated Electrons +0906.3542 Strongly Correlated Electrons +0907.2546 Group Theory +0908.2603 Group Theory +0909.3447 Strongly Correlated Electrons +0911.2280 Data Structures and Algorithms +1004.1750 Soft Condensed Matter +1005.5547 +1007.4889 Analysis of PDEs +1011.5486 Number Theory +1011.5986 Risk Management +1103.0606 Computational Finance +1105.0865 Algebraic Geometry +1105.6034 +1107.1336 +1107.5720 Pricing of Securities +1108.0723 Number Theory +1109.3947 Complex Variables +1111.2347 General Physics +1112.4571 Differential Geometry +1201.1483 Risk Management +1202.5702 Risk Management +1203.2573 Number Theory +1203.4457 Number Theory +1204.0738 +1205.2586 +1206.1459 Statistics Theory +1206.3208 Number Theory +1206.4280 Physics and Society +1206.5392 Data Structures and Algorithms +1206.5615 Combinatorics +1207.2090 Numerical Analysis +1207.6857 Phenomenology +1209.1237 Algebraic Geometry +1209.3060 Rings and Algebras +1209.5881 Physics and Society +1209.6621 Quantum Algebra +1210.0780 Classical Analysis and ODEs +1210.6099 +1210.6666 +1210.6853 Data Structures and Algorithms +1211.2353 Numerical Analysis +1211.4103 Differential Geometry +1211.5490 +1212.0027 Discrete Mathematics +1212.1345 Dynamical Systems +1212.1517 Category Theory +1212.2277 General Physics +1301.1862 Differential Geometry +1302.1435 Metric Geometry +1302.1594 Fluid Dynamics +1302.3508 General Physics +1302.5427 Strongly Correlated Electrons +1302.7153 Physics and Society +1303.4372 Applications +1304.0918 Quantum Gases +1304.2327 Pattern Formation and Solitons +1304.5904 Atomic Physics +1305.0090 Statistical Mechanics +1305.4593 Superconductivity +1305.7302 +1306.1882 Risk Management +1306.1933 +1306.5931 Differential Geometry +1307.2821 Fluid Dynamics +1307.4933 Geometric Topology +1307.8125 Phenomenology +1308.2045 Computation +1308.3493 Symbolic Computation +1309.0497 Theory +1309.2772 Distributed, Parallel, and Cluster Computing +1309.4243 Combinatorics +1309.4801 Soft Condensed Matter +1309.4823 Dynamical Systems +1310.1858 Rings and Algebras +1310.2824 Mesoscale and Nanoscale Physics +1310.5475 +1310.7453 Distributed, Parallel, and Cluster Computing +1311.0121 Information Theory +1311.1317 Phenomenology +1311.1940 Information Theory +1311.2433 Information Theory +1311.2709 Analysis of PDEs +1311.3176 Materials Science +1311.3434 Theory +1311.3503 Superconductivity +1311.4757 Strongly Correlated Electrons +1311.7260 Phenomenology +1311.7581 Theory +1312.0071 +1312.2217 Data Structures and Algorithms +1312.3016 +1312.3757 Statistics Theory +1312.4251 Cosmology and Nongalactic Astrophysics +1312.4819 Soft Condensed Matter +1312.5092 Soft Condensed Matter +1312.5580 Theory +1312.5984 Statistical Mechanics +1312.6203 Learning +1312.7489 Phenomenology +1401.1623 Optics +1401.4261 Pattern Formation and Solitons +1401.4301 Analysis of PDEs +1401.5732 Mesoscale and Nanoscale Physics +1401.6417 Fluid Dynamics +1401.7953 Methodology +1402.1918 Statistics Theory +1402.2793 Multiagent Systems +1402.4193 Phenomenology +1402.4285 Analysis of PDEs +1402.4398 Mesoscale and Nanoscale Physics +1402.4935 Materials Science +1402.6156 Theory +1402.6417 Number Theory +1402.6575 Strongly Correlated Electrons +1402.7348 Phenomenology +1403.0241 Dynamical Systems +1403.0628 Learning +1403.1117 Software Engineering +1403.1223 Phenomenology +1403.1285 Instrumentation and Detectors +1403.2887 Superconductivity +1403.2918 Phenomenology +1403.3390 Functional Analysis +1403.3482 Phenomenology +1403.3758 Statistics Theory +1403.4459 +1403.4675 History and Overview +1403.7103 Materials Science +1404.0702 Superconductivity +1404.2112 Solar and Stellar Astrophysics +1404.2457 Mesoscale and Nanoscale Physics +1404.2626 Instrumentation and Methods for Astrophysics +1404.4338 General Mathematics +1404.4503 Numerical Analysis +1404.6078 Spectral Theory +1404.6863 Materials Science +1404.7299 Optimization and Control +1404.7629 Phenomenology +1405.0247 Combinatorics +1405.0567 Functional Analysis +1405.0580 Information Retrieval +1405.0998 Algebraic Geometry +1405.1225 Strongly Correlated Electrons +1405.1281 Biological Physics +1405.1477 Data Structures and Algorithms +1405.1706 Materials Science +1405.2222 Differential Geometry +1405.2641 Computer Vision and Pattern Recognition +1405.3272 Cryptography and Security +1405.3390 Combinatorics +1405.3418 K-Theory and Homology +1405.4633 Phenomenology +1405.4654 Group Theory +1405.5053 Differential Geometry +1405.5133 Logic in Computer Science +1405.5227 Soft Condensed Matter +1405.5236 Algebraic Geometry +1405.5238 Superconductivity +1405.5239 Methodology +1405.5241 Probability +1405.5246 Instrumentation and Detectors +1405.5248 Computer Vision and Pattern Recognition +1405.5249 Human-Computer Interaction +1405.5252 +1405.5253 Mesoscale and Nanoscale Physics +1405.5258 +1405.5263 Human-Computer Interaction +1405.5269 Materials Science +1405.5272 Formal Languages and Automata Theory +1405.5276 Group Theory +1405.5277 Functional Analysis +1405.5278 Information Theory +1405.5279 Logic in Computer Science +1405.5282 Optics +1405.5283 Number Theory +1405.5287 Cryptography and Security +1405.5291 Quantum Gases +1405.5293 Commutative Algebra +1405.5295 Physics Education +1405.5296 Algebraic Geometry +1405.5302 Networking and Internet Architecture +1405.5304 Analysis of PDEs +1405.5305 +1405.5309 +1405.5311 Methodology +1405.5320 Networking and Internet Architecture +1405.5323 Dynamical Systems +1405.5326 Distributed, Parallel, and Cluster Computing +1405.5328 Molecular Networks +1405.5331 Medical Physics +1405.5336 Information Theory +1405.5338 Optics +1405.5340 Multimedia +1405.5341 Symbolic Computation +1405.5342 Symbolic Computation +1405.5349 Numerical Analysis +1405.5350 +1405.5352 Group Theory +1405.5358 Artificial Intelligence +1405.5359 +1405.5362 Complex Variables +1405.5365 Networking and Internet Architecture +1405.5367 Statistical Mechanics +1405.5369 Classical Analysis and ODEs +1405.5370 Atomic Physics +1405.5376 Data Structures and Algorithms +1405.5377 Mesoscale and Nanoscale Physics +1405.5386 Medical Physics +1405.5388 +1405.5390 Networking and Internet Architecture +1405.5399 Atomic Physics +1405.5400 Group Theory +1405.5401 +1405.5402 Analysis of PDEs +1405.5406 Computer Vision and Pattern Recognition +1405.5407 Differential Geometry +1405.5411 Soft Condensed Matter +1405.5414 Operator Algebras +1405.5415 Analysis of PDEs +1405.5419 Optics +1405.5420 Superconductivity +1405.5421 Information Theory +1405.5422 Computer Vision and Pattern Recognition +1405.5425 Astrophysics of Galaxies +1405.5427 Combinatorics +1405.5430 Number Theory +1405.5431 Phenomenology +1405.5433 Probability +1405.5436 +1405.5438 Disordered Systems and Neural Networks +1405.5443 Artificial Intelligence +1405.5446 Analysis of PDEs +1405.5447 Information Retrieval +1405.5452 Commutative Algebra +1405.5455 +1405.5459 Artificial Intelligence +1405.5461 Distributed, Parallel, and Cluster Computing +1405.5467 Applications +1405.5474 Computation and Language +1405.5485 History and Philosophy of Physics +1405.5488 Computer Vision and Pattern Recognition +1405.5489 Analysis of PDEs +1405.5493 General Mathematics +1405.5494 Computer Vision and Pattern Recognition +1405.5498 Optimization and Control +1405.5501 Other Computer Science +1405.5503 +1405.5504 Mesoscale and Nanoscale Physics +1405.5507 Information Theory +1405.5508 Probability +1405.5509 Information Retrieval +1405.5510 +1405.5513 Tissues and Organs +1405.5514 Populations and Evolution +1405.5517 Mesoscale and Nanoscale Physics +1405.5520 Materials Science +1405.5522 Phenomenology +1405.5523 Human-Computer Interaction +cond-mat/0604033 Soft Condensed Matter +0704.0716 +0710.4041 Combinatorics +0911.2656 Numerical Analysis +1009.5198 Biological Physics +1104.2095 Differential Geometry +1110.1284 Probability +1201.1733 Systems and Control +1202.5154 Discrete Mathematics +1204.3330 +1205.5886 Data Analysis, Statistics and Probability +1206.0493 Dynamical Systems +1208.0106 +1209.0881 +1210.2955 Dynamical Systems +1212.0777 Functional Analysis +1212.3431 Theory +1304.3647 +1305.4112 Analysis of PDEs +1305.6566 +1308.1900 Statistics Theory +1309.0759 Geometric Topology +1309.1680 Combinatorics +1309.6004 Theory +1309.6550 Information Theory +1309.7069 Group Theory +1310.0375 Systems and Control +1310.4522 Populations and Evolution +1310.8128 +1311.1156 Data Analysis, Statistics and Probability +1311.5569 Strongly Correlated Electrons +1312.4846 Dynamical Systems +1312.5598 Social and Information Networks +1312.7863 Probability +1401.1183 Numerical Analysis +1401.3206 Dynamical Systems +1401.7916 Strongly Correlated Electrons +1402.0885 Adaptation and Self-Organizing Systems +1402.2695 Digital Libraries +1403.1108 +1403.7239 Information Theory +1404.0061 Information Theory +1404.2087 +1404.4567 Statistical Mechanics +1404.4879 Astrophysics of Galaxies +1404.6649 Number Theory +1404.6738 Statistical Mechanics +1405.0112 +1405.4811 Strongly Correlated Electrons +1405.5860 Optimization and Control +1405.6415 Information Theory +1405.7530 General Physics +1406.0113 Experiment +1406.0163 Mesoscale and Nanoscale Physics +1406.1532 Combinatorics +1406.1550 +1406.1846 Differential Geometry +1406.4145 Cosmology and Nongalactic Astrophysics +1406.4473 Numerical Analysis +1407.0040 Quantum Gases +1407.0726 Machine Learning +1407.3528 Materials Science +1407.6358 Strongly Correlated Electrons +1407.6415 Earth and Planetary Astrophysics +1407.6839 +1407.7396 +1407.8277 Phenomenology +1407.8291 Metric Geometry +1408.0294 Probability +1408.0492 +1408.0588 Exactly Solvable and Integrable Systems +1408.3335 Astrophysics of Galaxies +1408.3343 +1408.4482 Chemical Physics +1408.6069 Instrumentation and Methods for Astrophysics +1408.6754 +1409.1265 Solar and Stellar Astrophysics +1409.1659 Strongly Correlated Electrons +1409.3504 Mesoscale and Nanoscale Physics +1409.3654 Phenomenology +1409.4527 Materials Science +1409.6338 Neurons and Cognition +1409.7229 Optics +1409.8427 Materials Science +1410.0077 Quantum Gases +1410.1246 Strongly Correlated Electrons +1410.2341 Astrophysics of Galaxies +1410.2503 Solar and Stellar Astrophysics +1410.2767 Strongly Correlated Electrons +1410.2883 Phenomenology +1410.3342 Strongly Correlated Electrons +1410.3901 Representation Theory +1410.4254 Astrophysics of Galaxies +1410.5192 Systems and Control +1410.6068 Analysis of PDEs +1410.7794 Cosmology and Nongalactic Astrophysics +1410.8761 Lattice +1411.0825 Systems and Control +1411.0855 Strongly Correlated Electrons +1411.1121 Theory +1411.2102 Networking and Internet Architecture +1411.2969 Astrophysics of Galaxies +1411.3355 Atomic Physics +1411.3871 Superconductivity +1411.4713 Metric Geometry +1411.5741 Number Theory +1412.0345 Combinatorics +1412.0674 Earth and Planetary Astrophysics +1412.1056 Systems and Control +1412.1251 Robotics +1412.1833 Phenomenology +1412.2040 Theory +1412.2910 +1412.3565 Computation +1412.3716 Mesoscale and Nanoscale Physics +1412.4728 Strongly Correlated Electrons +1412.5134 Earth and Planetary Astrophysics +1412.5159 Logic in Computer Science +1412.5726 Differential Geometry +1412.5766 Phenomenology +1412.5830 Information Theory +1412.5860 Probability +1412.5869 Lattice +1412.5965 Solar and Stellar Astrophysics +1412.6054 Dynamical Systems +1412.6092 Computer Vision and Pattern Recognition +1412.6096 History and Philosophy of Physics +1412.6097 Earth and Planetary Astrophysics +1412.6110 Astrophysics of Galaxies +1412.6115 Computer Vision and Pattern Recognition +1412.6122 Neural and Evolutionary Computing +1412.6124 Computer Vision and Pattern Recognition +1412.6125 Information Theory +1412.6126 Information Theory +1412.6127 Information Theory +1412.6128 Information Theory +1412.6129 Information Theory +1412.6130 Information Theory +1412.6131 Information Theory +1412.6136 +1412.6137 Information Theory +1412.6138 Analysis of PDEs +1412.6139 +1412.6140 Human-Computer Interaction +1412.6143 Multimedia +1412.6144 Neural and Evolutionary Computing +1412.6145 Neural and Evolutionary Computing +1412.6146 Mesoscale and Nanoscale Physics +1412.6147 Discrete Mathematics +1412.6148 Cryptography and Security +1412.6149 Networking and Internet Architecture +1412.6150 Networking and Internet Architecture +1412.6151 Networking and Internet Architecture +1412.6153 Robotics +1412.6154 Computer Vision and Pattern Recognition +1412.6158 Solar and Stellar Astrophysics +1412.6160 Optimization and Control +1412.6161 Systems and Control +1412.6162 Systems and Control +1412.6163 Computer Vision and Pattern Recognition +1412.6168 Data Structures and Algorithms +1412.6169 Probability +1412.6170 Distributed, Parallel, and Cluster Computing +1412.6171 Representation Theory +1412.6176 Group Theory +1412.6184 Probability +1412.6190 Soft Condensed Matter +1412.6191 Number Theory +1412.6192 Materials Science +1412.6193 Representation Theory +1412.6195 Functional Analysis +1412.6206 Lattice +1412.6208 Materials Science +1412.6211 Learning +1412.6212 Biological Physics +1412.6214 Materials Science +1412.6216 Software Engineering +1412.6218 Number Theory +1412.6219 Data Analysis, Statistics and Probability +1412.6223 Information Theory +1412.6226 Theory +1412.6231 Methodology +1412.6233 Instrumentation and Methods for Astrophysics +1412.6238 Computational Physics +1412.6240 High Energy Astrophysical Phenomena +1412.6241 Mesoscale and Nanoscale Physics +1412.6248 Mesoscale and Nanoscale Physics +1412.6252 Strongly Correlated Electrons +1412.6253 Optimization and Control +1412.6254 Information Theory +1412.6257 Learning +1412.6260 Mesoscale and Nanoscale Physics +1412.6261 Optics +1412.6263 Optics +1412.6264 Computation and Language +1412.6266 Information Theory +1412.6268 Computational Complexity +1412.6271 Cryptography and Security +1412.6273 Optics +1412.6275 Group Theory +1412.6278 High Energy Astrophysical Phenomena +1412.6282 +1412.6283 Phenomenology +1412.6284 Probability +1412.6285 Learning +1412.6287 Phenomenology +1412.6290 Combinatorics +1412.6291 Numerical Analysis +1412.6293 Numerical Analysis +1412.6305 Optics +1412.6306 Computational Engineering, Finance, and Science +1412.6311 +1412.6316 Applications +1412.6317 Fluid Dynamics +1412.6318 Optics +1412.6323 Representation Theory +1412.6328 Experiment +1412.6329 Social and Information Networks +1412.6330 Differential Geometry +1412.6332 Computational Physics +1412.6335 +1412.6341 Neurons and Cognition +1412.6343 Quantum Gases +1412.6346 Neural and Evolutionary Computing +1412.6347 Numerical Analysis +1412.6348 Theory +1412.6350 +1412.6353 Group Theory +1412.6354 Analysis of PDEs +1412.6355 Plasma Physics +1412.6357 Data Analysis, Statistics and Probability +1412.6358 Analysis of PDEs +1412.6359 Software Engineering +1412.6361 Computer Science and Game Theory +1412.6364 Classical Analysis and ODEs +1412.6366 Combinatorics +1412.6367 Instrumentation and Methods for Astrophysics +1412.6374 Probability +1412.6376 Information Theory +1412.6378 Human-Computer Interaction +1412.6379 Solar and Stellar Astrophysics +1412.6381 Probability +1412.6382 Networking and Internet Architecture +1412.6383 Computational Engineering, Finance, and Science +1412.6385 Probability +1412.6386 Computational Engineering, Finance, and Science +1412.6387 Analysis of PDEs +1412.6388 Learning +1412.6389 Analysis of PDEs +1412.6390 Instrumentation and Methods for Astrophysics +1412.6391 Computer Vision and Pattern Recognition +1412.6395 Mathematical Software +1412.6396 Logic in Computer Science +1412.6397 Fluid Dynamics +1412.6398 Differential Geometry +1412.6399 Medical Physics +1412.6400 Classical Analysis and ODEs +1412.6402 Computational Engineering, Finance, and Science +1412.6403 Functional Analysis +1412.6406 Functional Analysis +1412.6407 Mathematical Software +1412.6409 Solar and Stellar Astrophysics +1412.6410 Computational Engineering, Finance, and Science +1412.6412 Computational Engineering, Finance, and Science +1412.6413 Artificial Intelligence +1412.6414 Differential Geometry +1412.6416 Earth and Planetary Astrophysics +1412.6422 Other Condensed Matter +1412.6423 Probability +1412.6431 Computers and Society +1412.6434 Lattice +1412.6438 Analysis of PDEs +1412.6443 +1412.6444 Instrumentation and Methods for Astrophysics +1412.6451 Learning +1412.6454 Commutative Algebra +1412.6456 Commutative Algebra +1412.6457 Instrumentation and Methods for Astrophysics +1412.6458 Analysis of PDEs +1412.6461 Exactly Solvable and Integrable Systems +1412.6463 Networking and Internet Architecture +1412.6468 Phenomenology +1412.6469 Applications +1412.6476 Optics +1412.6477 Databases +1412.6481 Solar and Stellar Astrophysics +1412.6482 Information Theory +1412.6483 Solar and Stellar Astrophysics +1412.6486 Chaotic Dynamics +1412.6491 Numerical Analysis +1412.6493 Learning +1412.6494 Software Engineering +1412.6496 Computer Science and Game Theory +1412.6506 Learning +1412.6507 +1412.6508 Number Theory +1412.6511 Astrophysics of Galaxies +1412.6517 Theory +hep-ph/0604160 Phenomenology +quant-ph/0404114 +0705.4271 Dynamical Systems +0805.2233 General Physics +0805.3048 Dynamical Systems +0908.3509 Cosmology and Nongalactic Astrophysics +0912.2977 General Physics +1005.5237 Group Theory +1007.3763 +1104.4573 Algebraic Geometry +1105.5085 Dynamical Systems +1107.1491 Theory +1108.5437 Dynamical Systems +1111.0720 Theory +1111.1731 Theory +1112.1345 +1201.2193 Algebraic Topology +1201.2272 Theory +1201.4595 Theory +1201.6276 Algebraic Geometry +1202.2452 Dynamical Systems +1203.0791 Combinatorics +1206.0720 Probability +1206.2035 Analysis of PDEs +1206.4892 Plasma Physics +1208.3781 Solar and Stellar Astrophysics +1208.3831 Combinatorics +1209.4194 Optics +1210.5948 Geometric Topology +1210.6421 Operator Algebras +1211.1114 +1212.5657 Optics +1301.4321 Statistics Theory +1301.4903 Commutative Algebra +1301.5312 Differential Geometry +1302.5987 Probability +1302.7163 Differential Geometry +1303.1897 Optics +1303.4568 Phenomenology +1303.5154 Solar and Stellar Astrophysics +1303.5621 Fluid Dynamics +1304.5200 Quantum Gases +1304.5337 Computational Finance +1304.6983 Logic in Computer Science +1305.4079 Analysis of PDEs +1305.5148 Combinatorics +1305.6998 Analysis of PDEs +1306.0821 Dynamical Systems +1306.5200 Theory +1307.2006 Combinatorics +1307.6576 Dynamical Systems +1307.6715 Fluid Dynamics +1308.1559 Methodology +1308.3452 Group Theory +1308.4673 Strongly Correlated Electrons +1308.5363 Dynamical Systems +1309.2000 Combinatorics +1309.2226 Statistical Mechanics +1309.4143 Functional Analysis +1309.4466 Classical Analysis and ODEs +1309.5516 Algebraic Geometry +1309.5922 Representation Theory +1310.0582 Algebraic Topology +1310.0606 Applications +1310.4201 Optimization and Control +1310.4788 Group Theory +1310.5297 Theory +1310.8412 Fluid Dynamics +1311.1134 Algebraic Geometry +1311.1244 Atomic Physics +1311.5390 Combinatorics +1311.5423 +1311.6338 Probability +1311.6556 Learning +1311.7509 Number Theory +1312.0967 General Physics +1312.1112 +1312.1991 Functional Analysis +1312.3596 Symplectic Geometry +1312.5143 Superconductivity +1312.5606 +1312.6027 Group Theory +1312.6269 Quantum Gases +1312.7675 Chaotic Dynamics +1401.0360 Analysis of PDEs +1401.0756 Quantum Gases +1401.1988 Statistical Mechanics +1401.4135 Theory +1401.6266 Functional Analysis +1401.7231 Analysis of PDEs +1402.1689 Strongly Correlated Electrons +1402.2905 Methodology +1402.4171 General Finance +1402.4438 Algebraic Geometry +1402.4968 Chemical Physics +1402.6235 Theory +1402.6510 Formal Languages and Automata Theory +1403.0229 Statistics Theory +1403.0460 Algebraic Geometry +1403.2740 Computational Engineering, Finance, and Science +1403.3616 Physics and Society +1403.4075 Computer Science and Game Theory +1403.7137 Computational Engineering, Finance, and Science +1403.8002 Numerical Analysis +1404.0626 Phenomenology +1404.1389 Disordered Systems and Neural Networks +1404.1654 Information Theory +1404.2338 Algebraic Geometry +1404.3023 Neural and Evolutionary Computing +1404.3031 Neurons and Cognition +1404.5685 Quantum Gases +1404.5883 Phenomenology +1404.6480 Strongly Correlated Electrons +1404.6815 Theory +1405.0139 +1405.0662 Algebraic Topology +1405.3370 Statistical Mechanics +1405.6270 Number Theory +1405.6522 Strongly Correlated Electrons +1405.6706 Classical Physics +1405.7076 Artificial Intelligence +1405.7793 Theory +1405.7916 +1406.0872 Materials Science +1406.1485 Machine Learning +1406.1832 Plasma Physics +1406.2145 Commutative Algebra +1406.2402 Theory +1406.3750 +1406.4490 Plasma Physics +1406.4673 Chaotic Dynamics +1406.5781 Phenomenology +1406.5964 Pattern Formation and Solitons +1406.6515 Strongly Correlated Electrons +1406.6702 +1406.7571 Number Theory +1406.7621 Group Theory +1406.7694 Numerical Analysis +1407.0025 +1407.0256 Mathematical Finance +1407.0837 +1407.0857 +1407.1222 Number Theory +1407.1379 K-Theory and Homology +1407.1598 Optimization and Control +1407.2848 Phenomenology +1407.2963 Lattice +1407.3131 Materials Science +1407.3368 Materials Science +1407.3935 Experiment +1407.4695 Analysis of PDEs +1407.5782 Algebraic Geometry +1407.6064 Computers and Society +1407.7093 +1407.8014 Soft Condensed Matter +1407.8136 Experiment +1407.8470 Phenomenology +1408.0212 Pattern Formation and Solitons +1408.0226 Mesoscale and Nanoscale Physics +1408.0422 Analysis of PDEs +1408.0479 +1408.1128 Mesoscale and Nanoscale Physics +1408.2330 +1408.2353 Mesoscale and Nanoscale Physics +1408.2391 Soft Condensed Matter +1408.2730 Chemical Physics +1408.2873 Computation and Language +1408.3425 Strongly Correlated Electrons +1408.3966 Phenomenology +1408.4357 +1408.4828 Dynamical Systems +1408.4914 Strongly Correlated Electrons +1408.5434 Cosmology and Nongalactic Astrophysics +1408.6472 Mesoscale and Nanoscale Physics +1408.6578 Theory +1408.6987 Optics +1408.6998 Lattice +1409.0072 Systems and Control +1409.0281 Differential Geometry +1409.0306 +1409.0312 Statistical Mechanics +1409.0543 Astrophysics of Galaxies +1409.0746 Experiment +1409.1406 Phenomenology +1409.1540 Theory +1409.1806 Phenomenology +1409.2171 Strongly Correlated Electrons +1409.2189 Materials Science +1409.2205 Molecular Networks +1409.2830 Statistics Theory +1409.2855 +1409.4001 Experiment +1409.4914 +1409.5320 Systems and Control +1409.5962 Materials Science +1409.6146 Theory +1409.6181 Algebraic Geometry +1409.6730 Statistical Mechanics +1409.7000 Phenomenology +1409.7953 +1409.7964 Theory +1409.8059 Phenomenology +1410.0448 Mathematical Finance +1410.0449 Probability +1410.0673 Mathematical Finance +1410.0716 +1410.0781 Neural and Evolutionary Computing +1410.1609 Superconductivity +1410.1824 Strongly Correlated Electrons +1410.1900 Probability +1410.2222 Rings and Algebras +1410.2233 Rings and Algebras +1410.2625 Optics +1410.2958 Algebraic Geometry +1410.3843 Number Theory +1410.4370 Systems and Control +1410.4545 Phenomenology +1410.5059 +1410.6407 Chemical Physics +1410.7325 Mesoscale and Nanoscale Physics +1410.7509 Instrumentation and Methods for Astrophysics +1410.7513 Instrumentation and Methods for Astrophysics +1411.1225 Superconductivity +1411.1251 Functional Analysis +1411.1254 Functional Analysis +1411.1434 Learning +1411.1480 Combinatorics +1411.1792 Learning +1411.2728 Fluid Dynamics +1411.2880 Systems and Control +1411.3230 Computer Vision and Pattern Recognition +1411.3403 Number Theory +1411.3689 Strongly Correlated Electrons +1411.4179 Strongly Correlated Electrons +1411.5118 Social and Information Networks +1411.5155 Statistical Mechanics +1411.5230 Experiment +1411.5423 Analysis of PDEs +1411.5648 Optics +1411.5727 Analysis of PDEs +1411.6032 Soft Condensed Matter +1411.6180 Statistical Mechanics +1411.6486 Mesoscale and Nanoscale Physics +1411.6807 Cosmology and Nongalactic Astrophysics +1411.7088 Instrumentation and Methods for Astrophysics +1411.7359 Data Structures and Algorithms +1411.7484 Algebraic Geometry +1411.7521 Experiment +1412.0007 Digital Libraries +1412.0057 Systems and Control +1412.0117 Analysis of PDEs +1412.0217 Trading and Market Microstructure +1412.0257 Combinatorics +1412.0321 Data Structures and Algorithms +1412.0346 Quantitative Methods +1412.0365 +1412.0440 Number Theory +1412.0632 Algebraic Geometry +1412.0989 Superconductivity +1412.2044 Methodology +1412.2057 Classical Physics +1412.2107 General Physics +1412.2125 Tissues and Organs +1412.2131 Materials Science +1412.2143 Statistics Theory +1412.2144 Optimization and Control +1412.2150 Methodology +1412.2152 Trading and Market Microstructure +1412.2158 Networking and Internet Architecture +1412.2160 Materials Science +1412.2161 Networking and Internet Architecture +1412.2163 Physics and Society +1412.2164 Algebraic Geometry +1412.2168 Networking and Internet Architecture +1412.2169 Geometric Topology +1412.2173 Solar and Stellar Astrophysics +1412.2174 Strongly Correlated Electrons +1412.2176 Information Theory +1412.2180 Combinatorics +1412.2181 Networking and Internet Architecture +1412.2182 Commutative Algebra +1412.2183 Applications +1412.2185 Group Theory +1412.2186 Neural and Evolutionary Computing +1412.2190 Physics and Society +1412.2193 Differential Geometry +1412.2196 Learning +1412.2204 Networking and Internet Architecture +1412.2206 Optimization and Control +1412.2209 Theory +1412.2213 Algebraic Geometry +1412.2217 Analysis of PDEs +1412.2220 Networking and Internet Architecture +1412.2226 Artificial Intelligence +1412.2230 Spectral Theory +1412.2231 Computer Vision and Pattern Recognition +1412.2232 Algebraic Geometry +1412.2238 Data Analysis, Statistics and Probability +1412.2241 General Topology +1412.2247 Computers and Society +1412.2250 +1412.2253 Rings and Algebras +1412.2257 Networking and Internet Architecture +1412.2258 Astrophysics of Galaxies +1412.2259 Algebraic Geometry +1412.2261 Cryptography and Security +1412.2263 Dynamical Systems +1412.2266 Classical Analysis and ODEs +1412.2267 Geometric Topology +1412.2273 +1412.2275 Combinatorics +1412.2279 Space Physics +1412.2286 Statistical Mechanics +1412.2290 Social and Information Networks +1412.2292 Combinatorics +1412.2297 Fluid Dynamics +1412.2298 Materials Science +1412.2300 Computational Geometry +1412.2303 Computational Physics +1412.2310 Number Theory +1412.2311 Physics and Society +1412.2313 Materials Science +1412.2315 Methodology +1412.2316 Machine Learning +1412.2321 Probability +1412.2322 Lattice +1412.2323 Optimization and Control +1412.2325 Earth and Planetary Astrophysics +1412.2326 Networking and Internet Architecture +1412.2328 Artificial Intelligence +1412.2329 Solar and Stellar Astrophysics +1412.2333 Distributed, Parallel, and Cluster Computing +1412.2335 Computers and Society +1412.2338 Networking and Internet Architecture +1412.2341 Data Structures and Algorithms +1412.2342 Computer Vision and Pattern Recognition +1412.2343 Probability +1412.2346 Differential Geometry +1412.2347 Performance +1412.2349 +1412.2351 High Energy Astrophysical Phenomena +1412.2352 Systems and Control +1412.2353 Probability +1412.2354 Complex Variables +1412.2355 +1412.2356 Robotics +1412.2358 Differential Geometry +1412.2361 Optics +1412.2365 Algebraic Geometry +1412.2368 Biomolecules +1412.2369 Biomolecules +1412.2370 Biomolecules +1412.2374 Combinatorics +1412.2378 Computation and Language +1412.2380 Dynamical Systems +1412.2381 Materials Science +1412.2385 Distributed, Parallel, and Cluster Computing +1412.2386 Materials Science +1412.2387 Cryptography and Security +1412.2392 +1412.2399 History and Philosophy of Physics +1412.2400 Experiment +1412.2403 Optimization and Control +1412.2407 Combinatorics +1412.2419 Genomics +1412.2420 Differential Geometry +1412.2426 Combinatorics +1412.2435 Combinatorics +1412.2441 Theory +1412.2442 Computation and Language +1412.2443 Numerical Analysis +1412.2447 Populations and Evolution +1412.2449 Networking and Internet Architecture +1412.2450 Strongly Correlated Electrons +1412.2452 Probability +1412.2453 Mathematical Finance +1412.2454 Superconductivity +1412.2456 Probability +1412.2457 Computational Complexity +1412.2458 Software Engineering +1412.2461 Software Engineering +1412.2463 Cryptography and Security +1412.2468 Complex Variables +1412.2469 Complex Variables +1412.2470 Computational Complexity +1412.2471 Materials Science +1412.2472 Combinatorics +1412.2473 Statistical Mechanics +1412.2476 Analysis of PDEs +1412.2478 Analysis of PDEs +1412.2481 Plasma Physics +1412.2482 Experiment +1412.2484 Strongly Correlated Electrons +1412.2485 Learning +1412.2486 Physics and Society +1412.2492 High Energy Astrophysical Phenomena +1412.2493 Astrophysics of Galaxies +1412.2494 Computers and Society +1412.2495 Cryptography and Security +1412.2497 Computational Complexity +1412.2502 Networking and Internet Architecture +1412.2503 Strongly Correlated Electrons +1412.2505 Lattice +1412.2506 Solar and Stellar Astrophysics +1412.2510 Theory +1412.2511 Networking and Internet Architecture +1412.2512 Phenomenology +1412.2513 Analysis of PDEs +1412.2514 Solar and Stellar Astrophysics +1412.2515 Optimization and Control +1412.2517 Plasma Physics +1412.2519 Phenomenology +1412.2522 Combinatorics +1412.2524 Experiment +1412.2526 Optimization and Control +1412.2536 Strongly Correlated Electrons +1412.2537 K-Theory and Homology +1412.2540 Probability +1412.2543 Information Theory +1412.2546 Networking and Internet Architecture +1412.2548 Methodology +1412.2551 Plasma Physics +1412.2559 Discrete Mathematics +1412.2561 Combinatorics +1412.2562 Computational Geometry +1412.2565 Representation Theory +1412.2570 Networking and Internet Architecture +1412.2572 Statistical Mechanics +1412.2573 Strongly Correlated Electrons +1412.2576 Phenomenology +1412.2587 Quantitative Methods +1412.2588 Software Engineering +1412.2590 Mesoscale and Nanoscale Physics +1412.2591 Quantum Gases +1412.2593 Classical Analysis and ODEs +1412.2595 Computers and Society +1412.2608 Mesoscale and Nanoscale Physics +1412.2609 Number Theory +1412.2610 Fluid Dynamics +1412.2614 +1412.2622 Neurons and Cognition +1412.2629 Lattice +1412.2631 Soft Condensed Matter +1412.2633 Spectral Theory +1412.2636 Biomolecules +1412.2640 Mesoscale and Nanoscale Physics +1412.2642 Probability +1412.2644 Dynamical Systems +1412.2645 +1412.2646 Numerical Analysis +1412.2655 Chemical Physics +1412.2657 Probability +1412.2658 Materials Science +1412.2661 Phenomenology +1412.2663 Phenomenology +1412.2664 Optics +1412.2666 Phenomenology +1412.2670 +1412.2671 Algebraic Topology +1412.2672 Artificial Intelligence +1412.2678 Quantitative Methods +1412.2686 Fluid Dynamics +1412.2691 History and Overview +1412.2695 Cryptography and Security +1412.2697 Computer Vision and Pattern Recognition +1412.2699 Classical Analysis and ODEs +1412.2701 +1412.2704 Lattice +1412.2711 Information Theory +1412.2714 Differential Geometry +1412.2715 Statistical Mechanics +1412.2716 Digital Libraries +1412.2722 Optics +1412.2723 Social and Information Networks +1412.2740 Astrophysics of Galaxies +cond-mat/9812003 Mesoscale and Nanoscale Physics +cond-mat/9901136 Mesoscale and Nanoscale Physics +math/0503693 Dynamical Systems +math/0606535 Dynamical Systems +math/0607584 Analysis of PDEs +math/0611153 Dynamical Systems +nlin/0410020 Chaotic Dynamics +0803.2090 Other Condensed Matter +0804.3516 +0906.3825 +0906.3827 +0909.4939 Combinatorics +1006.1949 Geometric Topology +1008.0242 Algebraic Geometry +1008.1383 Group Theory +1010.3085 Phenomenology +1102.4669 Group Theory +1103.1961 Statistical Mechanics +1107.1650 Metric Geometry +1109.5148 Solar and Stellar Astrophysics +1112.4296 Combinatorics +1112.4300 Combinatorics +1201.0772 Strongly Correlated Electrons +1201.1035 Mesoscale and Nanoscale Physics +1201.6192 Cosmology and Nongalactic Astrophysics +1202.3567 Number Theory +1203.3180 Algebraic Geometry +1203.3437 +1205.0639 +1206.0044 Solar and Stellar Astrophysics +1206.1546 Phenomenology +1206.4338 Mesoscale and Nanoscale Physics +1206.6302 Information Theory +1207.0022 Soft Condensed Matter +1207.1567 +1207.3959 +1207.7066 Strongly Correlated Electrons +1208.0437 Analysis of PDEs +1209.3746 Representation Theory +1210.0021 Experiment +1210.7330 Mesoscale and Nanoscale Physics +1212.1386 +1212.2843 Physics and Society +1212.3902 Analysis of PDEs +1212.5119 Astrophysics of Galaxies +1212.6890 Experiment +1301.6798 Information Theory +1301.7616 Algebraic Geometry +1302.0890 Methodology +1302.6042 Algebraic Geometry +1302.6224 Distributed, Parallel, and Cluster Computing +1302.6657 Quantum Gases +1302.6937 Learning +1304.1605 Geometric Topology +1304.2608 Number Theory +1304.2998 Information Theory +1304.3199 Number Theory +1304.6419 Soft Condensed Matter +1304.7121 Data Structures and Algorithms +1304.8090 +1305.6536 Quantum Gases +1307.0184 General Topology +1307.0704 Statistical Mechanics +1307.2354 Instrumentation and Methods for Astrophysics +1307.3256 Disordered Systems and Neural Networks +1307.3998 Statistical Mechanics +1307.4808 Analysis of PDEs +1307.5271 Combinatorics +1307.6514 Algebraic Geometry +1307.6534 +1308.1881 Geophysics +1308.4773 +1308.4941 Information Retrieval +1309.0147 Number Theory +1309.2873 +1309.4198 Lattice +1309.4340 Number Theory +1309.5329 Combinatorics +1309.6765 Mesoscale and Nanoscale Physics +1309.6920 Experiment +1310.1361 +1310.3728 Superconductivity +1310.5378 Complex Variables +1310.6035 Phenomenology +1310.6549 Theory +1310.6966 Theory +1310.7223 +1310.8091 Populations and Evolution +1310.8133 Theory +1311.0093 +1311.0148 Experiment +1311.1110 Theory +1311.1148 Plasma Physics +1311.1629 Instrumentation and Detectors +1311.1685 Theory +1311.2808 Functional Analysis +1311.3005 Phenomenology +1311.4075 Physics and Society +1311.4100 Optics +1311.6047 Commutative Algebra +1311.6965 Biological Physics +1311.7078 Phenomenology +1311.7132 Cosmology and Nongalactic Astrophysics +1312.1366 High Energy Astrophysical Phenomena +1312.1550 Theory +1312.1586 Accelerator Physics +1312.1834 Strongly Correlated Electrons +1312.2297 Materials Science +1312.2491 Rings and Algebras +1312.2592 Phenomenology +1312.2990 Databases +1312.3339 +1312.3613 Machine Learning +1312.3967 High Energy Astrophysical Phenomena +1312.5264 Lattice +1312.5353 Experiment +1312.5364 Experiment +1312.5630 Cosmology and Nongalactic Astrophysics +1312.5733 +1312.6346 Quantum Gases +1312.6372 +1312.6419 Phenomenology +1312.6725 +1312.6804 Risk Management +1312.7052 Theory +1312.7365 Phenomenology +1401.0451 +1401.0524 Phenomenology +1401.0706 Cosmology and Nongalactic Astrophysics +1401.0717 Cosmology and Nongalactic Astrophysics +1401.0804 Materials Science +1401.1647 Phenomenology +1401.1825 Phenomenology +1401.2775 Theory +1401.2942 Experiment +1401.3164 +1401.3243 +1401.3644 Solar and Stellar Astrophysics +1401.5990 Experiment +1401.6453 Mesoscale and Nanoscale Physics +1401.6494 +1401.6870 Phenomenology +1401.7351 Phenomenology +1401.7611 Phenomenology +1401.7639 +1402.1430 Theory +1402.1452 Theory +1402.1576 +1402.2143 Logic in Computer Science +1402.2348 Atomic Physics +1402.2378 Earth and Planetary Astrophysics +1402.2654 Strongly Correlated Electrons +1402.2658 Phenomenology +1402.3075 +1402.3252 +1402.3755 Cosmology and Nongalactic Astrophysics +1402.5496 Phenomenology +1402.5529 Probability +1402.5569 Phenomenology +1402.5863 Phenomenology +1402.6153 Atomic Physics +1402.6462 Atomic Physics +1402.6498 Materials Science +1402.6900 Theory +1403.0018 Mesoscale and Nanoscale Physics +1403.0128 Phenomenology +1403.0151 Materials Science +1403.0164 Strongly Correlated Electrons +1403.0433 +1403.0704 Phenomenology +1403.0809 Solar and Stellar Astrophysics +1403.1431 +1403.1513 Strongly Correlated Electrons +1403.1799 Chemical Physics +1403.2018 Strongly Correlated Electrons +1403.2110 +1403.2300 Experiment +1403.2641 Phenomenology +1403.2674 +1403.2751 Phenomenology +1403.2757 +1403.2992 +1403.3040 Statistical Mechanics +1403.3160 Mesoscale and Nanoscale Physics +1403.3823 Theory +1403.4009 Optics +1403.4043 Phenomenology +1403.4154 Mesoscale and Nanoscale Physics +1403.4189 Lattice +1403.4354 Theory +1403.4502 Phenomenology +1403.4736 Phenomenology +1403.4788 Phenomenology +1403.5244 Cosmology and Nongalactic Astrophysics +1403.5434 +1403.5587 Theory +1403.5676 Phenomenology +1403.5846 Phenomenology +1403.5905 Statistical Mechanics +1403.5997 Machine Learning +1403.6247 Mesoscale and Nanoscale Physics +1403.6302 +1403.6479 Theory +1403.6729 Phenomenology +1403.7516 Phenomenology +1403.7592 Theory +1403.8098 Computer Vision and Pattern Recognition +1404.1071 Experiment +1404.1343 Phenomenology +1404.1435 +1404.1526 Materials Science +1404.1903 Experiment +1404.2375 Phenomenology +1404.2412 Experiment +1404.2532 +1404.2782 Cosmology and Nongalactic Astrophysics +1404.4091 Theory +1404.4370 Phenomenology +1404.4890 Mesoscale and Nanoscale Physics +1404.5034 Software Engineering +1404.5558 Phenomenology +1404.6906 Other Condensed Matter +1404.7134 Phenomenology +1405.0140 Strongly Correlated Electrons +1405.2020 Cosmology and Nongalactic Astrophysics +1405.3847 +1405.4800 Mesoscale and Nanoscale Physics +1405.4812 Statistical Mechanics +1405.4898 +1405.5475 Combinatorics +1405.5477 Combinatorics +1405.5591 Other Condensed Matter +1405.6445 Accelerator Physics +1405.7379 Earth and Planetary Astrophysics +1405.7646 Theory +1406.0841 +1406.1223 Atmospheric and Oceanic Physics +1406.1760 Combinatorics +1406.1833 Neural and Evolutionary Computing +1406.2052 Number Theory +1406.2194 Strongly Correlated Electrons +1406.2308 +1406.2311 Networking and Internet Architecture +1406.2313 Networking and Internet Architecture +1406.2315 Astrophysics of Galaxies +1406.2328 Theory +1406.2339 Rings and Algebras +1406.2350 General Physics +1406.2351 Probability +1406.2356 Combinatorics +1406.2362 Superconductivity +1406.2370 Programming Languages +1406.2372 Solar and Stellar Astrophysics +1406.2377 Space Physics +1406.2378 Geometric Topology +1406.2391 Numerical Analysis +1406.2392 Social and Information Networks +1406.2394 Algebraic Geometry +1406.2395 Artificial Intelligence +1406.2398 Social and Information Networks +1406.2401 Astrophysics of Galaxies +1406.2405 Populations and Evolution +1406.2406 Instrumentation and Methods for Astrophysics +1406.2407 Computer Vision and Pattern Recognition +1406.2411 Group Theory +1406.2419 Computer Vision and Pattern Recognition +1406.2421 +1406.2422 +1406.2425 Combinatorics +1406.2426 Physics and Society +1406.2429 Mesoscale and Nanoscale Physics +1406.2430 +1406.2434 Quantitative Methods +1406.2435 Optimization and Control +1406.2438 Combinatorics +1406.2440 Combinatorics +1406.2441 Phenomenology +1406.2450 Phenomenology +1406.2452 Quantum Algebra +1406.2454 Systems and Control +1406.2455 Astrophysics of Galaxies +1406.2459 Systems and Control +1406.2464 Sound +1406.2470 Networking and Internet Architecture +1406.2472 Algebraic Geometry +1406.2478 High Energy Astrophysical Phenomena +1406.2479 Networking and Internet Architecture +1406.2480 Networking and Internet Architecture +1406.2495 Databases +1406.2497 Cell Behavior +1406.2508 Disordered Systems and Neural Networks +1406.2515 +1406.2516 Networking and Internet Architecture +1406.2518 Social and Information Networks +1406.2519 Multimedia +1406.2520 Probability +1406.2524 Operator Algebras +1406.2525 Analysis of PDEs +1406.2527 Operator Algebras +1406.2528 Optimization and Control +1406.2532 Materials Science +1406.2533 Functional Analysis +1406.2534 Other Computer Science +1406.2538 Computation and Language +1406.2539 Neural and Evolutionary Computing +1406.2540 Commutative Algebra +1406.2541 Machine Learning +1406.2544 Other Computer Science +1406.2545 Neural and Evolutionary Computing +1406.2547 Phenomenology +1406.2550 Group Theory +1406.2554 Group Theory +1406.2557 Optics +1406.2560 Number Theory +1406.2563 Mesoscale and Nanoscale Physics +1406.2564 Soft Condensed Matter +1406.2565 Systems and Control +1406.2569 Category Theory +1406.2572 Learning +1406.2573 Quantitative Methods +1406.2575 Soft Condensed Matter +1406.2577 Differential Geometry +1406.2579 Instrumentation and Detectors +1406.2580 Computer Vision and Pattern Recognition +1406.2586 Experiment +1406.2602 Machine Learning +1406.2605 Solar and Stellar Astrophysics +1406.2607 Complex Variables +1406.2609 Cosmology and Nongalactic Astrophysics +1406.2613 Neural and Evolutionary Computing +1406.2617 Strongly Correlated Electrons +1406.2618 Strongly Correlated Electrons +1406.2619 Algebraic Topology +1406.2622 Learning +1406.2624 Experiment +1406.2625 Soft Condensed Matter +1406.2626 Analysis of PDEs +1406.2629 Algebraic Geometry +1406.2630 Networking and Internet Architecture +1406.2631 Networking and Internet Architecture +1406.2635 Solar and Stellar Astrophysics +1406.2636 Computational Geometry +1406.2637 Probability +1406.2644 Distributed, Parallel, and Cluster Computing +1406.2646 Learning +1406.2650 Solar and Stellar Astrophysics +1406.2660 Computation +1406.2661 Machine Learning +1406.2662 Theory +1406.2670 Materials Science +1406.2671 Neural and Evolutionary Computing +1406.2675 Probability +1406.2676 Number Theory +1406.2677 Mesoscale and Nanoscale Physics +1406.2682 Optics +cond-mat/0203190 Statistical Mechanics +cond-mat/9901042 Statistical Mechanics +math-ph/0502036 +math/0208154 Representation Theory +1412.2270 Operator Algebras +1012.4319 Algebraic Topology +1105.5636 Lattice +1107.1691 Optimization and Control +1108.1494 Statistics Theory +1108.5168 +1109.1197 +1203.0363 Optics +1203.3217 Information Theory +1204.5135 Geometric Topology +1206.0172 +1206.2941 Algebraic Topology +1206.2945 Algebraic Topology +1206.6342 Phenomenology +1207.5750 Operator Algebras +1208.0597 Cosmology and Nongalactic Astrophysics +1208.0605 Cosmology and Nongalactic Astrophysics +1208.4412 Lattice +1212.3085 Algebraic Topology +1302.2346 Differential Geometry +1303.2070 Combinatorics +1303.6422 Computational Geometry +1304.1931 +1304.4695 Classical Analysis and ODEs +1305.0717 Probability +1305.2898 Dynamical Systems +1305.3571 Strongly Correlated Electrons +1305.3874 Materials Science +1305.5086 Algebraic Topology +1305.6780 Materials Science +1306.0135 Dynamical Systems +1306.5014 Dynamical Systems +1306.6042 Statistics Theory +1307.0773 Theory +1307.1653 +1307.5779 +1307.5828 Representation Theory +1308.0345 Optimization and Control +1308.0785 +1308.1350 Theory +1308.3257 Solar and Stellar Astrophysics +1308.3903 Phenomenology +1308.6710 Strongly Correlated Electrons +1309.1679 Number Theory +1309.2049 Phenomenology +1309.3801 Representation Theory +1309.5978 High Energy Astrophysical Phenomena +1309.6355 +1309.7876 Atomic Physics +1310.3943 Fluid Dynamics +1310.6719 Computer Vision and Pattern Recognition +1310.6790 Phenomenology +1310.8651 +1311.0767 Strongly Correlated Electrons +1311.2899 +1311.3836 +1311.6123 Combinatorics +1311.6778 High Energy Astrophysical Phenomena +1312.0409 Chemical Physics +1312.1270 Data Analysis, Statistics and Probability +1312.2415 Strongly Correlated Electrons +1312.4005 Strongly Correlated Electrons +1312.4041 Optics +1312.4303 +1312.4725 Optics +1312.4757 Mesoscale and Nanoscale Physics +1312.5408 Metric Geometry +1312.5854 Statistical Mechanics +1312.5888 Probability +1312.6094 Systems and Control +1312.6627 Analysis of PDEs +1312.7874 Theory +1401.1533 Artificial Intelligence +1401.2707 Combinatorics +1401.5671 Materials Science +1401.5897 Information Theory +1401.6898 +1401.7694 Category Theory +1402.1875 Algebraic Topology +1402.2712 Data Structures and Algorithms +1402.3851 Data Structures and Algorithms +1403.2400 Probability +1403.2547 Experiment +1403.4062 Soft Condensed Matter +1403.4202 Logic in Computer Science +1403.4253 High Energy Astrophysical Phenomena +1403.5012 Distributed, Parallel, and Cluster Computing +1403.5145 Quantum Gases +1403.5964 +1403.8088 Classical Analysis and ODEs +1404.0323 Plasma Physics +1404.1099 Complex Variables +1404.1124 Distributed, Parallel, and Cluster Computing +1404.2062 +1404.2256 Spectral Theory +1404.3348 +1404.3398 Theory +1404.4435 Cryptography and Security +1404.4486 Combinatorics +1404.4629 Hardware Architecture +1404.4638 Analysis of PDEs +1404.4641 Computation and Language +1404.4644 Methodology +1404.4648 Number Theory +1404.4653 Distributed, Parallel, and Cluster Computing +1404.4654 Analysis of PDEs +1404.4655 Learning +1404.4659 Mathematical Finance +1404.4661 Computer Vision and Pattern Recognition +1404.4665 Optimization and Control +1404.4666 Programming Languages +1404.4674 Combinatorics +1404.4675 +1404.4676 Discrete Mathematics +1404.4677 Astrophysics of Galaxies +1404.4680 Commutative Algebra +1404.4684 Symplectic Geometry +1404.4687 Accelerator Physics +1404.4692 Computational Complexity +1404.4693 Data Structures and Algorithms +1404.4695 Analysis of PDEs +1404.4697 Analysis of PDEs +1404.4698 Numerical Analysis +1404.4700 Materials Science +1404.4702 Learning +1404.4703 Materials Science +1404.4704 Algebraic Geometry +1404.4706 Mesoscale and Nanoscale Physics +1404.4707 Optics +1404.4708 Functional Analysis +1404.4711 Information Theory +1404.4713 Software Engineering +1404.4714 Computation and Language +1404.4718 Computer Science and Game Theory +1404.4724 Commutative Algebra +1404.4725 High Energy Astrophysical Phenomena +1404.4730 Probability +1404.4734 Combinatorics +1404.4738 Information Theory +1404.4740 Computation and Language +1404.4744 Cryptography and Security +1404.4746 Theory +1404.4748 Physics and Society +1404.4750 Commutative Algebra +1404.4751 Theory +1404.4754 Networking and Internet Architecture +1404.4757 Discrete Mathematics +1404.4759 Mesoscale and Nanoscale Physics +1404.4763 +1404.4764 Representation Theory +1404.4766 Data Structures and Algorithms +1404.4767 Distributed, Parallel, and Cluster Computing +1404.4768 Symbolic Computation +1404.4769 Analysis of PDEs +1404.4771 Operator Algebras +1404.4775 Symbolic Computation +1404.4782 Complex Variables +1404.4783 Phenomenology +1404.4785 Artificial Intelligence +1404.4786 Group Theory +1404.4788 +1404.4789 Artificial Intelligence +1404.4791 Cryptography and Security +1404.4800 Computer Vision and Pattern Recognition +1404.4801 Artificial Intelligence +1404.4802 Probability +1404.4805 Computer Vision and Pattern Recognition +1404.4810 Spectral Theory +1404.4815 +1404.4818 Computers and Society +1404.4819 Rings and Algebras +1404.4827 Logic in Computer Science +1404.4828 Instrumentation and Detectors +1404.4829 Probability +1404.4830 Methodology +1404.4835 Group Theory +1404.4836 Combinatorics +1404.4849 Phenomenology +1404.4850 Differential Geometry +1404.4851 Computational Geometry +1404.4854 Analysis of PDEs +1404.4856 Logic in Computer Science +1404.4859 Computational Geometry +1404.4864 Optimization and Control +1404.4868 Optimization and Control +0704.3669 Quantum Algebra +0705.0669 Geometric Topology +1005.1005 Algebraic Topology +1010.4750 Quantum Algebra +1012.5729 Mesoscale and Nanoscale Physics +1103.1337 Other Condensed Matter +1105.0806 Soft Condensed Matter +1106.2040 +1106.6298 Geometric Topology +1109.2223 Algebraic Geometry +1112.1153 Analysis of PDEs +1112.5968 Functional Analysis +1201.1049 Probability +1201.1050 Probability +1202.3625 Information Theory +1203.4121 Analysis of PDEs +1205.2353 General Physics +1205.3851 Dynamical Systems +1207.0368 Dynamical Systems +1207.3246 Applications +1208.3622 Fluid Dynamics +1208.6569 Group Theory +1209.3963 Methodology +1211.4524 Computer Vision and Pattern Recognition +1301.0140 Functional Analysis +1301.1007 Number Theory +1302.4803 Strongly Correlated Electrons +1303.0773 +1303.3598 Combinatorics +1303.3862 +1304.5828 +1306.3922 Phenomenology +1306.4268 Superconductivity +1306.6677 Machine Learning +1307.0328 Statistical Mechanics +1307.4963 History and Philosophy of Physics +1307.5154 +1308.1691 +1308.1697 Theory +1308.1818 Functional Analysis +1308.5497 Functional Analysis +1308.6221 Methodology +1308.6364 Phenomenology +1309.0559 +1309.0597 Analysis of PDEs +1309.1589 Materials Science +1309.3123 Strongly Correlated Electrons +1309.7853 Number Theory +1310.0780 +1310.1225 Combinatorics +1310.2467 +1310.4699 +1310.4780 Programming Languages +1310.5927 Methodology +1310.6883 Materials Science +1310.8267 Biological Physics +1311.0157 +1311.3972 Cosmology and Nongalactic Astrophysics +1311.4956 Strongly Correlated Electrons +1311.6213 Superconductivity +1311.6825 Phenomenology +1311.6959 +1311.7576 Astrophysics of Galaxies +1312.0710 Optics +1312.1209 Plasma Physics +1312.1508 Optics +1312.2839 Theory +1312.3110 General Physics +1312.3568 Mesoscale and Nanoscale Physics +1312.3599 Analysis of PDEs +1312.3625 Statistics Theory +1312.4025 Superconductivity +1312.6215 Systems and Control +1401.0030 +1401.1546 Disordered Systems and Neural Networks +1401.1672 Mesoscale and Nanoscale Physics +1401.2852 Phenomenology +1401.4069 Physics and Society +1401.4100 Materials Science +1401.5132 +1401.6225 Cosmology and Nongalactic Astrophysics +1401.6333 Neural and Evolutionary Computing +1401.6791 Materials Science +1401.7604 Optimization and Control +1402.0051 Multiagent Systems +1402.0479 Strongly Correlated Electrons +1402.1613 Adaptation and Self-Organizing Systems +1402.2518 Earth and Planetary Astrophysics +1402.3139 Optimization and Control +1402.3234 Phenomenology +1402.5950 Computational Complexity +1402.6131 Phenomenology +1402.6460 Functional Analysis +1402.6558 Solar and Stellar Astrophysics +1402.6827 Differential Geometry +1403.2107 Optics +1403.6508 Computer Science and Game Theory +1403.7269 Portfolio Management +1404.2421 Number Theory +1404.2938 Probability +1404.2939 Software Engineering +1404.2941 Statistical Mechanics +1404.2945 Mesoscale and Nanoscale Physics +1404.2946 Networking and Internet Architecture +1404.2947 Statistical Mechanics +1404.2948 Learning +1404.2949 Algebraic Geometry +1404.2951 Experiment +1404.2952 Multimedia +1404.2954 Computer Science and Game Theory +1404.2957 Statistics Theory +1404.2959 Social and Information Networks +1404.2962 Computational Complexity +1404.2964 Optimization and Control +1404.2967 Functional Analysis +1404.2969 Differential Geometry +1404.2972 Probability +1404.2973 Analysis of PDEs +1404.2974 Probability +1404.2976 Differential Geometry +1404.2977 Applications +1404.2979 Strongly Correlated Electrons +1404.2981 Probability +1404.2983 Medical Physics +1404.2984 Artificial Intelligence +1404.2986 Learning +1404.2988 Exactly Solvable and Integrable Systems +1404.2989 Networking and Internet Architecture +1404.2992 Populations and Evolution +1404.2993 Information Theory +1404.2997 Computation and Language +1404.2998 Functional Analysis +1404.3001 Information Theory +1404.3002 Other Computer Science +1404.3010 Information Theory +1404.3011 Networking and Internet Architecture +1404.3015 Materials Science +1404.3017 Information Retrieval +1404.3020 Networking and Internet Architecture +1404.3022 Information Theory +1404.3026 Social and Information Networks +1404.3039 Atomic and Molecular Clusters +1404.3044 +1404.3046 Statistics Theory +1404.3049 History and Philosophy of Physics +1404.3051 Statistics Theory +1404.3053 Numerical Analysis +1404.3055 Exactly Solvable and Integrable Systems +1404.3057 Number Theory +1404.3060 +1404.3063 Cryptography and Security +1404.3066 History and Philosophy of Physics +1404.3068 Optimization and Control +1404.3071 +1404.3074 Algebraic Geometry +1404.3076 Solar and Stellar Astrophysics +1404.3089 Classical Analysis and ODEs +1404.3094 Statistics Theory +1404.3098 +1404.3105 Theory +1404.3106 Optics +1404.3108 Theory +1404.3111 Networking and Internet Architecture +1404.3112 Complex Variables +1404.3116 Statistics Theory +1404.3117 Complex Variables +1404.3119 Instrumentation and Detectors +1404.3120 Complex Variables +1404.3121 Functional Analysis +1404.3122 Solar and Stellar Astrophysics +1404.3123 Solar and Stellar Astrophysics +1404.3124 Solar and Stellar Astrophysics +1404.3125 Analysis of PDEs +1404.3126 Solar and Stellar Astrophysics +1404.3130 Disordered Systems and Neural Networks +1404.3133 +1404.3135 Algebraic Geometry +1404.3141 Artificial Intelligence +1404.3142 Geometric Topology +1404.3144 +1404.3147 Numerical Analysis +1404.3148 Materials Science +1404.3149 Complex Variables +1404.3160 Pricing of Securities +1404.3162 Hardware Architecture +1404.3164 Phenomenology +1404.3167 Economics +1404.3168 Methodology +1404.3173 Instrumentation and Detectors +1404.3175 Logic +1404.3184 Computer Vision and Pattern Recognition +1404.3185 Phenomenology +1404.3186 Software Engineering +1404.3188 Statistics Theory +1404.3189 Solar and Stellar Astrophysics +1404.3190 Learning +1404.3191 Fluid Dynamics +1404.3192 Superconductivity +1404.3195 Adaptation and Self-Organizing Systems +1404.3196 Adaptation and Self-Organizing Systems +1404.3199 Chemical Physics +1404.3203 Learning +gr-qc/0510076 +math/0510382 Quantum Algebra +math/0608627 Geometric Topology +math/9803152 Algebraic Geometry +0704.0105 Symplectic Geometry +0704.1246 Geometric Topology +0704.1333 Number Theory +0705.0410 Algebraic Geometry +0705.4213 Representation Theory +0705.4506 Spectral Theory +0706.1792 Algebraic Geometry +0706.3073 Algebraic Geometry +0707.0070 Quantum Algebra +0707.2602 K-Theory and Homology +0708.0659 Algebraic Topology +0708.0798 Representation Theory +0708.2268 Algebraic Geometry +0708.2636 Representation Theory +0708.4036 Representation Theory +0709.0284 Algebraic Geometry +0709.1127 Symplectic Geometry +0710.2915 +0711.1734 Algebraic Geometry +0711.2008 Representation Theory +0712.1918 Number Theory +0712.1957 Number Theory +0712.2367 Algebraic Geometry +0712.3400 Number Theory +0801.1230 Number Theory +0801.2114 Algebraic Geometry +0801.2493 +0801.4503 Number Theory +0801.4959 Spectral Theory +0802.2078 Algebraic Geometry +0802.4001 Quantum Algebra +0802.4188 Algebraic Geometry +0803.0375 +0803.0720 Commutative Algebra +0803.1390 Algebraic Geometry +0803.3534 Number Theory +0804.0923 Representation Theory +0804.1078 Algebraic Geometry +0804.2860 Representation Theory +0804.4882 Algebraic Geometry +0805.0045 Algebraic Geometry +0805.1767 Algebraic Geometry +0805.4377 Algebraic Geometry +0806.1017 Combinatorics +0806.1878 Number Theory +0806.1928 Algebraic Geometry +0806.4566 Symplectic Geometry +0807.0453 Algebraic Geometry +0807.2815 Combinatorics +0808.0125 Number Theory +0808.0228 Analysis of PDEs +0808.0742 Algebraic Geometry +0808.1550 Algebraic Geometry +0809.0224 Number Theory +0809.4381 Number Theory +0810.1086 Number Theory +0810.1936 Algebraic Geometry +0810.5032 Algebraic Topology +0810.5083 Number Theory +0811.0226 Algebraic Geometry +0811.0876 Algebraic Geometry +0811.2978 Number Theory +0811.3009 Dynamical Systems +0811.3774 Number Theory +0811.3792 Number Theory +0812.0804 Operator Algebras +0812.2714 Complex Variables +0812.3787 Number Theory +0812.3961 Functional Analysis +0901.0369 Algebraic Geometry +0901.0374 Differential Geometry +0901.2920 Number Theory +0901.4358 Algebraic Geometry +0902.0102 Operator Algebras +0902.2684 Algebraic Geometry +0903.0261 Algebraic Geometry +0903.1256 Algebraic Geometry +0903.1488 Geometric Topology +0903.1834 Number Theory +0903.1879 Combinatorics +0903.2024 Algebraic Geometry +0903.2349 Algebraic Geometry +0903.3101 Algebraic Geometry +0903.4003 Number Theory +0903.4355 Combinatorics +0903.4501 Algebraic Topology +0903.5504 Differential Geometry +0904.2093 General Physics +0904.3863 Number Theory +0905.0579 Representation Theory +0905.1464 Optimization and Control +0905.1520 Operator Algebras +0905.3714 Representation Theory +0905.4143 Representation Theory +0906.4027 Combinatorics +0906.4189 Number Theory +0906.4374 Number Theory +0907.2279 Cosmology and Nongalactic Astrophysics +0907.2618 Operator Algebras +0907.3771 Logic +0907.4867 Number Theory +0907.5543 Number Theory +0908.3340 Representation Theory +0909.0712 Number Theory +0909.0817 Algebraic Geometry +0909.1278 Number Theory +0909.3738 Probability +0909.3916 Number Theory +0909.4040 Representation Theory +0909.5580 Geometric Topology +0910.0122 Number Theory +0910.0601 Number Theory +0910.1237 Combinatorics +0910.1818 Quantum Algebra +0910.2371 Number Theory +0910.4912 Geometric Topology +0910.5063 Number Theory +0911.2923 Algebraic Geometry +0911.3474 Differential Geometry +0911.4378 Combinatorics +0911.5310 Algebraic Geometry +0912.1629 Commutative Algebra +0912.4398 Differential Geometry +0912.4518 Representation Theory +0912.5185 Number Theory +1001.0217 Metric Geometry +1001.0260 Metric Geometry +1001.0619 Algebraic Geometry +1001.1150 Algebraic Geometry +1001.1980 Combinatorics +1001.2016 Algebraic Geometry +1001.2206 Algebraic Geometry +1001.3286 Complex Variables +1001.3438 Number Theory +1001.4157 +1001.4445 Number Theory +1002.2209 Number Theory +1002.4107 Algebraic Geometry +1003.1590 Algebraic Geometry +1003.2820 Number Theory +1003.3183 Algebraic Geometry +1003.4839 Probability +1004.0471 Commutative Algebra +1004.0830 Representation Theory +1004.2119 Representation Theory +1004.3253 Algebraic Geometry +1004.3461 Differential Geometry +1005.3743 Algebraic Geometry +1005.3787 Symplectic Geometry +1005.4084 Group Theory +1005.4209 Number Theory +1005.4409 Phenomenology +1006.1917 Representation Theory +1006.2672 Functional Analysis +1006.3886 Group Theory +1006.4438 Spectral Theory +1007.0219 Algebraic Geometry +1007.0511 Algebraic Geometry +1007.0665 Number Theory +1008.2273 Analysis of PDEs +1008.2288 Number Theory +1008.3413 Representation Theory +1008.3579 Group Theory +1008.3944 Probability +1009.0413 Algebraic Geometry +1009.0914 Algebraic Geometry +1009.1799 Complex Variables +1009.4313 Algebraic Geometry +1009.5217 Number Theory +1010.0640 Representation Theory +1010.3185 Operator Algebras +1010.3648 Number Theory +1010.4483 Algebraic Geometry +1010.5341 Number Theory +1011.2290 Differential Geometry +1011.2991 Number Theory +1011.3322 Representation Theory +1011.4050 Algebraic Geometry +1011.4611 Algebraic Geometry +1011.6002 Combinatorics +1011.6076 Differential Geometry +1011.6564 Algebraic Geometry +1012.5229 Differential Geometry +1012.5282 Algebraic Geometry +1012.5914 General Physics +1101.0201 Quantum Algebra +1101.0416 Representation Theory +1101.1372 Algebraic Geometry +1101.1855 Number Theory +1101.2545 Analysis of PDEs +1101.3797 Algebraic Geometry +1101.4902 Dynamical Systems +1101.5026 Analysis of PDEs +1102.3321 Number Theory +1102.4184 Algebraic Geometry +1103.0701 Data Analysis, Statistics and Probability +1103.1243 Physics and Society +1103.1249 Physics and Society +1103.1605 Algebraic Geometry +1103.2100 Algebraic Geometry +1103.2231 Number Theory +1103.2525 Representation Theory +1103.2736 Algebraic Geometry +1103.4499 Dynamical Systems +1104.0181 Algebraic Topology +1104.0968 Geometric Topology +1104.1891 Quantum Algebra +1104.2858 Algebraic Geometry +1104.5168 Metric Geometry +1104.5380 Number Theory +1105.0308 Phenomenology +1105.0746 Algebraic Geometry +1105.6355 Spectral Theory +1106.2712 Number Theory +1106.3741 Dynamical Systems +1106.4023 Number Theory +1106.4320 Phenomenology +1106.5435 Combinatorics +1106.6046 Statistical Mechanics +1107.1282 Symplectic Geometry +1107.1846 Algebraic Geometry +1107.2579 Representation Theory +1107.4545 Algebraic Geometry +1107.4715 Combinatorics +1108.2005 Differential Geometry +1108.2695 General Topology +1108.3785 K-Theory and Homology +1109.0354 Algebraic Geometry +1109.1786 Number Theory +1109.2224 Number Theory +1109.3226 Number Theory +1109.3495 Dynamical Systems +1109.4308 Representation Theory +1109.4346 Algebraic Geometry +1109.5060 Group Theory +1109.5130 Quantum Algebra +1109.6102 Differential Geometry +1109.6424 +1110.0078 Number Theory +1110.1294 Fluid Dynamics +1110.2701 Representation Theory +1110.4364 Representation Theory +1110.6284 Number Theory +1110.6465 Number Theory +1110.6801 Number Theory +1111.2420 Dynamical Systems +1111.5574 Number Theory +1111.6124 Operator Algebras +1112.0538 Mesoscale and Nanoscale Physics +1112.0752 Probability +1112.1149 Symplectic Geometry +1112.2869 Numerical Analysis +1112.3381 Combinatorics +1112.3471 Systems and Control +1112.3760 Chaotic Dynamics +1112.3976 Classical Analysis and ODEs +1112.4041 Spectral Theory +1112.4352 Analysis of PDEs +1112.4881 Algebraic Geometry +1112.5172 Geometric Topology +1201.0879 Number Theory +1201.1215 Physics and Society +1201.1600 Mesoscale and Nanoscale Physics +1201.2286 Analysis of PDEs +1201.5556 Number Theory +1201.5566 Representation Theory +1201.5837 Rings and Algebras +1202.0156 Dynamical Systems +1202.1351 Number Theory +1202.2597 Group Theory +1202.2947 Algebraic Geometry +1202.3110 Combinatorics +1202.3114 Dynamical Systems +1202.4186 +1202.4904 Number Theory +1202.5168 Representation Theory +1202.6378 Number Theory +1202.6471 Combinatorics +1202.6571 Number Theory +1203.0311 Representation Theory +1203.0905 Computer Vision and Pattern Recognition +1203.2431 Programming Languages +1203.3401 +1203.4022 Algebraic Geometry +1203.4695 Dynamical Systems +1203.5228 Group Theory +1203.6013 Phenomenology +1203.6150 Probability +1204.0409 Dynamical Systems +1204.0687 Quantum Algebra +1204.2236 Number Theory +1204.2494 Theory +1204.3280 Commutative Algebra +1204.4373 Algebraic Geometry +1204.5090 Solar and Stellar Astrophysics +1205.1277 Information Theory +1205.4396 Mesoscale and Nanoscale Physics +1205.4833 Number Theory +1205.5644 Analysis of PDEs +1206.1008 Algebraic Geometry +1206.3118 Chaotic Dynamics +1206.5125 Mesoscale and Nanoscale Physics +1206.6631 Number Theory +1206.7111 Cryptography and Security +1207.0081 Mesoscale and Nanoscale Physics +1207.0553 Algebraic Geometry +1207.1057 Analysis of PDEs +1207.3104 +1207.5098 Geometric Topology +1208.3784 Dynamical Systems +1208.4208 Data Analysis, Statistics and Probability +1208.4746 Mesoscale and Nanoscale Physics +1209.0223 Exactly Solvable and Integrable Systems +1209.2398 Classical Analysis and ODEs +1209.4081 Phenomenology +1209.5453 Materials Science +1209.6500 Number Theory +1210.1281 Strongly Correlated Electrons +1210.2060 Algebraic Geometry +1210.3831 Methodology +1210.6299 Rings and Algebras +1210.6862 Algebraic Geometry +1211.1823 Number Theory +1211.3009 Analysis of PDEs +1211.3749 Statistical Mechanics +1211.3825 Classical Physics +1211.3954 Mesoscale and Nanoscale Physics +1211.4470 Software Engineering +1211.7099 +1211.7314 Geometric Topology +1212.0685 Algebraic Geometry +1212.1153 Differential Geometry +1212.1803 Metric Geometry +1212.4002 Number Theory +1212.4371 Phenomenology +1212.5747 Cosmology and Nongalactic Astrophysics +1301.0663 Number Theory +1301.0814 Functional Analysis +1301.1311 Geometric Topology +1301.2063 Analysis of PDEs +1301.3673 Cosmology and Nongalactic Astrophysics +1301.4031 Metric Geometry +1302.0323 Disordered Systems and Neural Networks +1302.0327 Cosmology and Nongalactic Astrophysics +1302.1686 History and Philosophy of Physics +1302.1979 General Topology +1302.2285 +1302.2978 Populations and Evolution +1302.3152 Quantitative Methods +1302.3773 Probability +1302.3785 Computer Vision and Pattern Recognition +1302.4536 Discrete Mathematics +1302.5159 Differential Geometry +1302.5826 +1302.5834 Algebraic Geometry +1302.6640 Representation Theory +1302.6873 Rings and Algebras +1303.0784 Group Theory +1303.3226 Applications +1303.3809 Number Theory +1303.4314 Statistical Finance +1303.4617 Algebraic Geometry +1303.4878 Number Theory +1303.4893 Multimedia +1303.5032 Complex Variables +1303.5618 Differential Geometry +1304.0115 +1304.0954 Information Retrieval +1304.1327 Algebraic Geometry +1304.1446 Probability +1304.1844 Populations and Evolution +1304.1971 Differential Geometry +1304.2318 +1304.2501 Classical Analysis and ODEs +1304.2997 Phenomenology +1304.3252 General Finance +1304.3413 Mesoscale and Nanoscale Physics +1304.3997 +1304.4298 Number Theory +1304.4408 Probability +1304.5039 +1304.5824 +1304.6782 Mathematical Software +1304.7995 +1305.0046 Complex Variables +1305.0368 Materials Science +1305.1331 Combinatorics +1305.3332 Mesoscale and Nanoscale Physics +1305.4143 Complex Variables +1305.5934 Combinatorics +1305.6298 Commutative Algebra +1305.6483 Mesoscale and Nanoscale Physics +1305.6559 Genomics +1305.6750 Functional Analysis +1306.0470 Fluid Dynamics +1306.1935 Group Theory +1306.4217 Phenomenology +1306.4550 Pattern Formation and Solitons +1306.5346 Probability +1306.5505 Statistics Theory +1306.5545 Superconductivity +1307.0150 Logic +1307.1616 Materials Science +1307.2393 Phenomenology +1307.3735 Classical Analysis and ODEs +1307.4401 High Energy Astrophysical Phenomena +1307.4593 Phenomenology +1307.5053 Metric Geometry +1307.5566 Strongly Correlated Electrons +1307.5787 Experiment +1307.6432 Genomics +1307.7196 Mesoscale and Nanoscale Physics +1307.7888 Dynamical Systems +1307.8141 Plasma Physics +1307.8176 +1308.0958 Risk Management +1308.1844 Quantum Gases +1308.2247 Combinatorics +1308.2936 +1308.5170 Combinatorics +1308.5296 Phenomenology +1308.5349 Classical Analysis and ODEs +1308.5451 Representation Theory +1308.5835 Networking and Internet Architecture +1308.6804 Computer Vision and Pattern Recognition +1309.0424 +1309.0810 Phenomenology +1309.1100 Strongly Correlated Electrons +1309.1873 Dynamical Systems +1309.2657 Theory +1309.2980 Optics +1309.3713 +1309.3867 Phenomenology +1309.4041 Materials Science +1309.4597 Analysis of PDEs +1309.5185 Mesoscale and Nanoscale Physics +1309.5360 Spectral Theory +1309.5620 +1309.6297 Artificial Intelligence +1309.6320 Solar and Stellar Astrophysics +1309.6396 Solar and Stellar Astrophysics +1309.7134 +1309.7419 +1310.0161 Quantum Gases +1310.1757 Machine Learning +1310.2330 High Energy Astrophysical Phenomena +1310.2569 High Energy Astrophysical Phenomena +1310.2976 Statistical Mechanics +1310.3565 Mesoscale and Nanoscale Physics +1310.3709 Quantum Gases +1310.4243 Algebraic Geometry +1310.4255 Materials Science +1310.4378 Data Analysis, Statistics and Probability +1310.4864 Strongly Correlated Electrons +1310.4966 Digital Libraries +1310.6204 Materials Science +1310.6988 +1310.7101 Earth and Planetary Astrophysics +1310.7286 +1310.7618 Quantum Gases +1311.0227 Cosmology and Nongalactic Astrophysics +1311.1444 Statistical Mechanics +1311.2360 Algebraic Geometry +1311.3387 Information Theory +1311.3505 Instrumentation and Detectors +1311.5380 Applications +1311.5756 Analysis of PDEs +1311.5773 Phenomenology +1311.5980 Fluid Dynamics +1311.5987 Statistical Mechanics +1311.6067 Theory +1311.6150 Phenomenology +1311.6461 +1311.7635 Logic in Computer Science +1312.0127 Artificial Intelligence +1312.2208 Probability +1312.2738 Data Structures and Algorithms +1312.2926 Number Theory +1312.3714 +1312.4766 Atomic Physics +1312.5828 +1312.6171 Neural and Evolutionary Computing +1312.6477 Algebraic Topology +1312.6844 Materials Science +1312.6960 Biological Physics +1312.7696 Statistical Mechanics +1401.0107 Plasma Physics +1401.0354 Probability +1401.0732 Mesoscale and Nanoscale Physics +1401.1022 Computation +1401.1117 Information Theory +1401.1384 +1401.1515 Mesoscale and Nanoscale Physics +1401.1753 Neural and Evolutionary Computing +1401.1968 Theory +1401.2036 Instrumentation and Methods for Astrophysics +1401.2043 Instrumentation and Methods for Astrophysics +1401.2045 Instrumentation and Methods for Astrophysics +1401.2047 Instrumentation and Methods for Astrophysics +1401.2371 General Mathematics +1401.2378 Atomic Physics +1401.2417 Cryptography and Security +1401.2456 Statistical Mechanics +1401.2462 Fluid Dynamics +1401.2464 High Energy Astrophysical Phenomena +1401.2468 Neural and Evolutionary Computing +1401.2471 Group Theory +1401.2474 Artificial Intelligence +1401.2475 Functional Analysis +1401.2476 Differential Geometry +1401.2482 Multimedia +1401.2483 Artificial Intelligence +1401.2485 Operator Algebras +1401.2486 Operator Algebras +1401.2487 Theory +1401.2489 Networking and Internet Architecture +1401.2490 Learning +1401.2494 Materials Science +1401.2495 +1401.2496 Information Theory +1401.2497 Machine Learning +1401.2499 Combinatorics +1401.2502 Analysis of PDEs +1401.2503 Artificial Intelligence +1401.2504 Learning +1401.2507 Information Theory +1401.2509 Atmospheric and Oceanic Physics +1401.2513 Mesoscale and Nanoscale Physics +1401.2514 Networking and Internet Architecture +1401.2515 Logic in Computer Science +1401.2516 Information Retrieval +1401.2517 Computation and Language +1401.2520 +1401.2524 General Finance +1401.2525 High Energy Astrophysical Phenomena +1401.2526 +1401.2530 Information Theory +1401.2531 Optimization and Control +1401.2532 Computational Complexity +1401.2534 Mesoscale and Nanoscale Physics +1401.2536 Metric Geometry +1401.2540 Networking and Internet Architecture +1401.2541 Networking and Internet Architecture +1401.2542 Networking and Internet Architecture +1401.2545 Information Retrieval +1401.2547 Materials Science +1401.2554 Algebraic Topology +1401.2559 Optics +1401.2562 Astrophysics of Galaxies +1401.2563 Functional Analysis +1401.2568 Information Theory +1401.2569 Information Theory +1401.2570 Probability +1401.2571 Databases +1401.2574 Spectral Theory +1401.2575 Complex Variables +1401.2577 Rings and Algebras +1401.2588 Number Theory +1401.2592 Information Theory +1401.2595 Materials Science +1401.2596 Cryptography and Security +1401.2598 Physics and Society +1401.2600 Materials Science +1401.2602 Mesoscale and Nanoscale Physics +1401.2603 Quantitative Methods +1401.2608 Algebraic Geometry +1401.2609 Probability +1401.2610 Digital Libraries +1401.2616 Materials Science +1401.2617 Computers and Society +1401.2618 Information Retrieval +1401.2619 Social and Information Networks +1401.2620 Operator Algebras +1401.2624 Optics +1401.2625 Optimization and Control +1401.2627 +1401.2631 Algebraic Geometry +1401.2641 Computation and Language +1401.2642 Applications +1401.2644 History and Overview +1401.2649 Applications +1401.2651 Neural and Evolutionary Computing +1401.2655 Analysis of PDEs +1401.2657 Computers and Society +1401.2659 Number Theory +1401.2660 History and Overview +1401.2661 Rings and Algebras +1401.2662 Combinatorics +1401.2663 Computation and Language +1401.2665 Symplectic Geometry +1401.2666 Analysis of PDEs +1401.2669 Combinatorics +1401.2670 Geometric Topology +1401.2676 Quantum Algebra +1401.2684 Information Retrieval +1401.2686 Computer Vision and Pattern Recognition +1401.2688 Computational Engineering, Finance, and Science +1401.2690 Databases +1401.2691 Combinatorics +1401.2692 Information Theory +1401.2694 Number Theory +1401.2710 Combinatorics +1401.2712 Earth and Planetary Astrophysics +1401.2713 Dynamical Systems +1401.2714 Formal Languages and Automata Theory +1401.2716 Information Theory +1401.2718 General Physics +1401.2719 Astrophysics of Galaxies +1401.2722 Applications +1401.2724 Software Engineering +1401.2725 Algebraic Geometry +1401.2726 Geometric Topology +1401.2727 Hardware Architecture +1401.2728 Applications +1401.2730 Software Engineering +1401.2731 Software Engineering +1401.2733 +1401.2737 Combinatorics +1401.2740 Chemical Physics +1401.2741 Combinatorics +1401.2744 Numerical Analysis +1401.2746 Soft Condensed Matter +1401.2751 Software Engineering +1401.2752 Probability +1401.2754 Optics +1401.2756 Applications +1401.2757 Software Engineering +1401.2759 Number Theory +1401.2760 Applications +1401.2763 Number Theory +1401.2764 Differential Geometry +1401.2768 Hardware Architecture +1401.2769 Theory +1401.2772 Analysis of PDEs +1401.2774 Information Theory +1401.2776 Complex Variables +1401.2777 Instrumentation and Detectors +1401.2782 Computers and Society +1401.2788 Optimization and Control +1401.2789 Complex Variables +1401.2790 Group Theory +1401.2792 Probability +1401.2794 Commutative Algebra +1401.2800 Pattern Formation and Solitons +1401.2801 Materials Science +1401.2804 Computer Vision and Pattern Recognition +1401.2808 Combinatorics +1401.2809 Number Theory +1401.2811 Molecular Networks +1401.2812 Statistical Mechanics +1401.2813 Differential Geometry +1401.2814 Plasma Physics +1401.2816 Analysis of PDEs +1401.2817 Numerical Analysis +1401.2819 General Topology +1401.2821 Fluid Dynamics +1401.2822 Computation +1401.2824 Algebraic Topology +1401.2826 High Energy Astrophysical Phenomena +1401.2832 Applications +1401.2834 Astrophysics of Galaxies +1401.2835 Logic +1401.2836 Commutative Algebra +1401.2838 Learning +1401.2842 Complex Variables +1401.2843 Superconductivity +1401.2844 Numerical Analysis +1401.2850 Algebraic Topology +1401.2851 Information Retrieval +1401.2855 Chaotic Dynamics +1401.2856 Classical Analysis and ODEs +1401.2860 Statistical Finance +1401.2864 Quantum Algebra +1401.2867 General Finance +1401.2868 Accelerator Physics +1401.2869 Number Theory +1401.2871 Computer Vision and Pattern Recognition +1401.2873 General Physics +1401.2874 Data Structures and Algorithms +1401.2875 Solar and Stellar Astrophysics +1401.2881 +1401.2888 Physics Education +1401.2891 Number Theory +1401.2893 Functional Analysis +1401.2894 Computation +1401.2898 +1401.2899 Computer Vision and Pattern Recognition +1401.2902 Computer Vision and Pattern Recognition +1401.2911 Databases +1401.2916 Cosmology and Nongalactic Astrophysics +1401.2920 Distributed, Parallel, and Cluster Computing +1401.2921 Information Theory +1401.2922 Solar and Stellar Astrophysics +1401.2923 Functional Analysis +1401.2937 Computation and Language +1401.2940 Combinatorics +1401.2943 Computation and Language +1401.2944 Phenomenology +1401.2945 Quantum Gases +1401.2946 Classical Analysis and ODEs +1401.2949 Neural and Evolutionary Computing +1401.2955 Machine Learning +1401.2963 Differential Geometry +1401.2965 Distributed, Parallel, and Cluster Computing +1401.2966 Earth and Planetary Astrophysics +1401.2969 Solar and Stellar Astrophysics +1401.2970 Number Theory +1401.2971 Probability +1401.2973 Combinatorics +1401.2974 Distributed, Parallel, and Cluster Computing +1401.2980 Number Theory +1401.2982 Trading and Market Microstructure +cond-mat/9712318 Statistical Mechanics +gr-qc/9301011 +math/0107129 Algebraic Geometry +math/0312072 Algebraic Geometry +math/0405257 Symplectic Geometry +math/0406376 Complex Variables +math/0503134 Number Theory +math/0503418 Algebraic Geometry +math/0507601 K-Theory and Homology +math/0508191 Number Theory +math/0510110 Algebraic Geometry +math/0510596 Differential Geometry +math/0511244 Algebraic Geometry +math/0511332 Algebraic Geometry +math/0512496 Geometric Topology +math/0512604 Differential Geometry +math/0601532 Quantum Algebra +math/0602094 Number Theory +math/0602417 Quantum Algebra +math/0603563 Algebraic Topology +math/0605382 Algebraic Geometry +math/0606130 Representation Theory +math/0607323 Complex Variables +math/0607324 Algebraic Geometry +math/0607665 Algebraic Topology +math/0608234 Representation Theory +math/0609645 Number Theory +math/0610548 Algebraic Geometry +math/0610594 Representation Theory +math/0610694 Number Theory +math/0611105 Algebraic Geometry +math/0611491 Complex Variables +math/0612219 Representation Theory +math/0612729 Number Theory +math/0701082 Differential Geometry +math/0701456 Algebraic Geometry +math/0701557 Representation Theory +math/0701591 Commutative Algebra +math/0702031 Differential Geometry +math/0702287 Algebraic Geometry +math/0703431 Number Theory +math/0703531 Algebraic Geometry +0710.2347 Combinatorics +0710.2884 Metric Geometry +0710.2885 Combinatorics +0804.1593 Logic +0807.0762 Probability +0811.4156 Metric Geometry +0908.0475 Combinatorics +0908.0705 Group Theory +0910.0236 Statistical Finance +1001.1347 Probability +1002.3239 Information Theory +1008.0080 Logic +1008.1865 Combinatorics +1009.5036 Algebraic Geometry +1009.5056 Geometric Topology +1010.4411 Distributed, Parallel, and Cluster Computing +1012.5304 Phenomenology +1101.3099 Combinatorics +1102.1451 Operator Algebras +1103.0805 Materials Science +1104.1641 Metric Geometry +1105.1875 +1107.4296 Quantum Algebra +1108.3446 Learning +1108.4189 Mesoscale and Nanoscale Physics +1109.0633 Logic in Computer Science +1109.1619 Metric Geometry +1110.2936 Statistical Mechanics +1110.4926 Superconductivity +1111.5243 Rings and Algebras +1111.6228 Algebraic Geometry +1111.7055 Geometric Topology +1112.0415 Analysis of PDEs +1112.5171 Statistical Mechanics +1201.1190 Probability +1201.1270 Logic +1201.1326 Materials Science +1202.2624 Combinatorics +1202.4839 Symplectic Geometry +1203.2456 Information Theory +1203.3248 Soft Condensed Matter +1203.5520 Probability +1204.1056 Earth and Planetary Astrophysics +1204.4848 Strongly Correlated Electrons +1205.0170 Programming Languages +1205.0403 +1205.3574 Functional Analysis +1205.3575 Functional Analysis +1207.0391 Algebraic Geometry +1207.5488 Category Theory +1208.2864 Metric Geometry +1208.3099 Materials Science +1209.0431 Quantum Algebra +1209.3471 Representation Theory +1209.6145 Analysis of PDEs +1210.2865 Mesoscale and Nanoscale Physics +1210.3530 Mesoscale and Nanoscale Physics +1210.8388 Optics +1210.8420 Soft Condensed Matter +1211.4192 Mesoscale and Nanoscale Physics +1211.6220 Analysis of PDEs +1211.7258 Combinatorics +1212.0171 Information Theory +1212.0478 Machine Learning +1212.0692 Artificial Intelligence +1212.0965 Algebraic Geometry +1212.4841 Other Condensed Matter +1301.0436 +1301.2055 Physics and Society +1301.3452 +1301.3733 Geometric Topology +1301.7040 +1301.7597 Combinatorics +1302.4381 Artificial Intelligence +1302.4425 Cosmology and Nongalactic Astrophysics +1302.4862 Fluid Dynamics +1302.7209 Analysis of PDEs +1302.7262 Multimedia +1303.0911 Strongly Correlated Electrons +1303.2578 Theory +1303.5202 Optimization and Control +1303.7091 Quantum Algebra +1304.0368 Probability +1304.0505 Superconductivity +1304.0701 Probability +1304.2627 Differential Geometry +1304.3336 Mesoscale and Nanoscale Physics +1304.4563 Plasma Physics +1304.4768 Algebraic Geometry +1304.7365 Materials Science +1305.1196 Instrumentation and Detectors +1305.1405 Mesoscale and Nanoscale Physics +1305.2257 Analysis of PDEs +1305.5027 Strongly Correlated Electrons +1305.5786 Logic in Computer Science +1305.5880 Differential Geometry +1305.7135 +1306.1835 +1306.2057 Combinatorics +1306.2287 Lattice +1306.2748 Number Theory +1306.3292 Optics +1306.3416 Physics and Society +1306.3423 Soft Condensed Matter +1306.3564 +1306.6218 Mesoscale and Nanoscale Physics +1307.1587 Atomic and Molecular Clusters +1307.1676 Commutative Algebra +1307.2212 Strongly Correlated Electrons +1307.2267 Strongly Correlated Electrons +1307.2969 +1307.5615 +1307.5672 Instrumentation and Detectors +1307.5844 Theory +1307.5970 Probability +1307.6182 +1307.7995 Phenomenology +1307.8016 Statistical Mechanics +1307.8265 Experiment +1308.0707 +1308.1211 Statistics Theory +1308.1216 Chemical Physics +1308.2896 +1308.4052 Mesoscale and Nanoscale Physics +1308.5828 Theory +1308.6211 Strongly Correlated Electrons +1308.6354 Statistical Mechanics +1308.6593 Cosmology and Nongalactic Astrophysics +1309.0726 Mesoscale and Nanoscale Physics +1309.0951 Geometric Topology +1309.1755 Soft Condensed Matter +1309.2829 Soft Condensed Matter +1309.5284 Strongly Correlated Electrons +1309.5582 Discrete Mathematics +1309.5873 Neurons and Cognition +1309.6418 Mesoscale and Nanoscale Physics +1309.6991 Materials Science +1309.7003 High Energy Astrophysical Phenomena +1309.7161 +1309.7490 Probability +1310.0273 Optics +1310.0849 Mesoscale and Nanoscale Physics +1310.0983 Soft Condensed Matter +1310.3378 Classical Analysis and ODEs +1310.3431 Strongly Correlated Electrons +1310.3636 Operator Algebras +1310.3907 Cosmology and Nongalactic Astrophysics +1310.4220 +1310.4468 Mesoscale and Nanoscale Physics +1310.4754 Optics +1310.6115 Mesoscale and Nanoscale Physics +1310.6413 Computational Geometry +1310.6548 Group Theory +1310.6615 Statistical Mechanics +1310.6950 Spectral Theory +1310.7356 Solar and Stellar Astrophysics +1310.8420 Genomics +1311.0458 Mesoscale and Nanoscale Physics +1311.0768 Programming Languages +1311.0916 Optics +1311.1840 Statistical Mechanics +1311.2032 Computational Geometry +1311.2540 Information Theory +1311.3540 Mesoscale and Nanoscale Physics +1311.4276 Social and Information Networks +1311.7087 Mesoscale and Nanoscale Physics +1311.7546 Mesoscale and Nanoscale Physics +1312.1377 +1312.1790 Theory +1312.2469 Dynamical Systems +1312.3465 Instrumentation and Methods for Astrophysics +1312.4232 Artificial Intelligence +1312.4276 Strongly Correlated Electrons +1312.4417 Chemical Physics +1312.4491 Optimization and Control +1312.5412 Machine Learning +1312.5459 Dynamical Systems +1312.5647 Operator Algebras +1312.6634 History and Philosophy of Physics +1312.6738 Number Theory +1312.6911 Information Theory +1312.7243 Data Structures and Algorithms +1312.7520 Digital Libraries +1312.7717 Superconductivity +1401.0042 Data Structures and Algorithms +1401.0207 Physics and Society +1401.0594 Analysis of PDEs +1401.0721 Representation Theory +1401.0723 Mesoscale and Nanoscale Physics +1401.0734 Information Theory +1401.0742 Learning +1401.0746 Algebraic Geometry +1401.0749 Materials Science +1401.0755 Representation Theory +1401.0763 Distributed, Parallel, and Cluster Computing +1401.0765 Hardware Architecture +1401.0766 Instrumentation and Detectors +1401.0767 Learning +1401.0768 +1401.0770 Combinatorics +1401.0776 Group Theory +1401.0777 Symplectic Geometry +1401.0778 Social and Information Networks +1401.0786 Optics +1401.0789 Commutative Algebra +1401.0793 Rings and Algebras +1401.0794 Computation and Language +1401.0795 +1401.0797 Complex Variables +1401.0801 Soft Condensed Matter +1401.0802 Artificial Intelligence +1401.0814 Pattern Formation and Solitons +1401.0816 Solar and Stellar Astrophysics +1401.0820 Mesoscale and Nanoscale Physics +1401.0821 Discrete Mathematics +1401.0823 Discrete Mathematics +1401.0824 Numerical Analysis +1401.0827 Mathematical Software +1401.0828 History and Overview +1401.0829 Probability +1401.0830 +1401.0836 Combinatorics +1401.0840 Metric Geometry +1401.0842 Number Theory +1401.0843 Optimization and Control +1401.0844 Methodology +1401.0848 Mesoscale and Nanoscale Physics +1401.0849 Algebraic Geometry +1401.0850 +1401.0855 Networking and Internet Architecture +1401.0857 Group Theory +1401.0858 Neural and Evolutionary Computing +1401.0860 Differential Geometry +1401.0862 Functional Analysis +1401.0864 Information Retrieval +1401.0870 Computer Vision and Pattern Recognition +1401.0871 Machine Learning +1401.0874 Materials Science +1401.0875 Networking and Internet Architecture +1401.0877 Information Theory +1401.0879 Optics +1401.0880 Computer Science and Game Theory +1401.0886 Neural and Evolutionary Computing +1401.0894 Numerical Analysis +1401.0898 Computer Vision and Pattern Recognition +1401.0900 History and Overview +1401.0906 Data Structures and Algorithms +1401.0909 Mesoscale and Nanoscale Physics +1401.0911 Analysis of PDEs +1401.0913 Group Theory +1401.0921 Data Structures and Algorithms +1401.0922 Digital Libraries +1401.0926 Systems and Control +1401.0928 Earth and Planetary Astrophysics +1401.0930 Optics +1401.0931 +1401.0933 Combinatorics +1401.0940 Differential Geometry +1401.0944 Differential Geometry +1401.0945 Differential Geometry +1401.0959 Algebraic Geometry +1401.0960 Soft Condensed Matter +1401.0961 Numerical Analysis +1401.0966 Phenomenology +1401.0967 Statistics Theory +1401.0968 Software Engineering +1401.0969 Logic in Computer Science +1401.0970 Software Engineering +1401.0971 Software Engineering +1401.0972 Software Engineering +1401.0973 Software Engineering +1401.0974 Software Engineering +1401.0975 Software Engineering +1401.0976 Computational Complexity +1401.0979 Analysis of PDEs +1401.0987 Databases +1401.0988 Algebraic Geometry +1401.0991 Computational Physics +1401.0993 Statistics Theory +1401.0997 Networking and Internet Architecture +1401.0998 Logic in Computer Science +1401.1000 Dynamical Systems +1401.1003 Hardware Architecture +1401.1004 Instrumentation and Detectors +1401.1007 Probability +1401.1009 Instrumentation and Methods for Astrophysics +1401.1011 Information Theory +1401.1014 Materials Science +1401.1024 Artificial Intelligence +1401.1026 Statistics Theory +1401.1031 Human-Computer Interaction +1401.1032 Physics and Society +1401.1034 Probability +1401.1037 Algebraic Topology +1401.1042 Instrumentation and Detectors +1401.1057 Commutative Algebra +1401.1067 Mesoscale and Nanoscale Physics +1401.1068 Accelerator Physics +1401.1069 Probability +1401.1071 Mesoscale and Nanoscale Physics +1401.1072 Lattice +1401.1073 Methodology +1401.1086 Cryptography and Security +1401.1088 Soft Condensed Matter +1401.1089 Combinatorics +1401.1094 General Physics +1401.1098 General Physics +1401.1103 Logic +1401.1105 Optimization and Control +1401.1107 Cosmology and Nongalactic Astrophysics +1401.1110 Phenomenology +1401.1113 Numerical Analysis +1401.1115 Analysis of PDEs +1401.1116 Algebraic Geometry +1401.1123 Learning +1401.1125 Computational Complexity +1401.1126 +1401.1133 Phenomenology +1401.1134 Phenomenology +1401.1135 High Energy Astrophysical Phenomena +1401.1139 Logic in Computer Science +1401.1141 Quantitative Methods +1401.1155 +1401.1156 Logic +1401.1158 Computation and Language +1401.1168 Quantitative Methods +1401.1174 Databases +1401.1179 Classical Analysis and ODEs +1401.1181 Statistical Mechanics +1401.1182 Analysis of PDEs +1401.1190 Computer Vision and Pattern Recognition +1401.1191 Information Theory +cond-mat/0107339 Statistical Mechanics +math/0502317 Probability +math/0604021 Probability +math/0702459 Algebraic Geometry +physics/0302075 General Physics +0710.4002 Algebraic Geometry +0901.4734 Group Theory +0904.2956 Adaptation and Self-Organizing Systems +0904.4792 Populations and Evolution +0911.3639 Algebraic Geometry +1006.1008 Strongly Correlated Electrons +1009.4323 Algebraic Geometry +1101.0420 Representation Theory +1103.4347 Populations and Evolution +1104.3991 Group Theory +1106.0695 Logic +1106.5714 Probability +1107.0127 Probability +1108.0081 +1108.0425 Theory +1111.0957 Algebraic Topology +1111.1141 Functional Analysis +1201.4760 Differential Geometry +1202.3269 Group Theory +1204.3056 +1204.6527 Computational Geometry +1207.1197 +1207.4541 Cosmology and Nongalactic Astrophysics +1208.3283 Analysis of PDEs +1208.4028 Phenomenology +1208.5821 +1208.6322 Optimization and Control +1209.1009 Classical Analysis and ODEs +1209.5455 Numerical Analysis +1210.2246 Digital Libraries +1210.2253 Applications +1210.2254 Computation +1210.6271 Analysis of PDEs +1210.6520 +1212.0830 Phenomenology +1212.4032 Representation Theory +1212.5491 Software Engineering +1301.4362 Probability +1301.6875 Number Theory +1301.7668 Complex Variables +1302.2743 Dynamical Systems +1302.2837 Distributed, Parallel, and Cluster Computing +1303.2023 General Mathematics +1303.2061 Cosmology and Nongalactic Astrophysics +1303.7365 Functional Analysis +1304.3175 +1304.7979 Group Theory +1305.0210 Cosmology and Nongalactic Astrophysics +1306.2313 Superconductivity +1306.5294 Computation +1308.0938 Software Engineering +1308.4039 Group Theory +1309.1780 Computational Engineering, Finance, and Science +1309.1781 Computational Engineering, Finance, and Science +1309.2513 Representation Theory +1309.3088 +1309.4936 Molecular Networks +1309.6245 Differential Geometry +1310.1071 +1310.1728 +1310.2289 Information Theory +1310.4407 Operator Algebras +1310.7116 Logic +1310.8136 Strongly Correlated Electrons +1310.8281 Cosmology and Nongalactic Astrophysics +1311.0269 Computational Physics +1311.0272 Computational Physics +1311.1001 Computational Physics +1311.3270 Differential Geometry +1311.5366 Statistics Theory +1311.7542 Functional Analysis +1311.7648 Symplectic Geometry +1312.2322 Superconductivity +1312.5262 Physics and Society +1312.5706 Cosmology and Nongalactic Astrophysics +1312.7695 Information Theory +1401.3409 Computer Vision and Pattern Recognition +1401.3664 Theory +1401.4164 Combinatorics +1401.4178 Combinatorics +1401.4183 Combinatorics +1401.4765 Phenomenology +1401.4976 Algebraic Geometry +1401.5802 Superconductivity +1401.7015 Theory +1402.2569 +1402.3763 Classical Physics +1402.4832 Rings and Algebras +1402.5599 Systems and Control +1403.2030 Algebraic Topology +1403.2035 Strongly Correlated Electrons +1403.2252 Strongly Correlated Electrons +1403.2446 +1403.2868 Cosmology and Nongalactic Astrophysics +1403.3717 Strongly Correlated Electrons +1403.3956 Quantum Gases +1403.4332 Probability +1403.5999 Mesoscale and Nanoscale Physics +1403.6407 High Energy Astrophysical Phenomena +1403.6922 Information Theory +1403.6962 Accelerator Physics +1403.7881 Number Theory +1404.1543 +1404.1828 +1404.2092 Disordered Systems and Neural Networks +1404.2208 +1404.2290 Strongly Correlated Electrons +1404.4204 Operator Algebras +1404.4634 Cosmology and Nongalactic Astrophysics +1404.4774 Computer Vision and Pattern Recognition +1404.5681 Analysis of PDEs +1404.6409 Phenomenology +1404.6929 Computational Physics +1405.0040 Analysis of PDEs +1405.1388 Functional Analysis +1405.1918 Classical Analysis and ODEs +1405.2334 History and Philosophy of Physics +1405.3194 Classical Analysis and ODEs +1405.4727 Dynamical Systems +1405.5261 +1405.6235 Accelerator Physics +1405.6544 Information Theory +1405.6879 Physics and Society +1405.6983 +1405.7355 Chemical Physics +1405.7697 Cosmology and Nongalactic Astrophysics +1405.7700 Cosmology and Nongalactic Astrophysics +1406.1050 +1406.5085 History and Overview +1406.6954 Chemical Physics +1406.6979 Soft Condensed Matter +1407.0742 Physics and Society +1407.0895 Molecular Networks +1407.1074 Strongly Correlated Electrons +1407.1403 Logic in Computer Science +1407.2214 Cosmology and Nongalactic Astrophysics +1407.2756 +1407.4022 Complex Variables +1407.5677 Disordered Systems and Neural Networks +1407.6063 Chemical Physics +1407.6503 Strongly Correlated Electrons +1407.7232 Quantum Gases +1407.8522 Phenomenology +1408.0613 Astrophysics of Galaxies +1408.1114 Phenomenology +1408.1695 +1408.4416 Astrophysics of Galaxies +1408.4882 Social and Information Networks +1408.5284 Materials Science +1408.6192 +1408.6281 +1409.0294 Cosmology and Nongalactic Astrophysics +1409.0930 +1409.2571 Materials Science +1409.4280 Strongly Correlated Electrons +1409.4423 High Energy Astrophysical Phenomena +1409.5241 Computer Vision and Pattern Recognition +1410.0571 Social and Information Networks +1410.2429 +1410.2737 Formal Languages and Automata Theory +1410.3847 Algebraic Topology +1410.4343 Neural and Evolutionary Computing +1410.5479 Representation Theory +1410.5855 Combinatorics +1410.5864 Experiment +1410.5893 Functional Analysis +1410.5918 Operator Algebras +1410.6010 Chemical Physics +1410.6022 Instrumentation and Methods for Astrophysics +1410.6110 Differential Geometry +1410.6127 Category Theory +1410.6151 Numerical Analysis +1410.6154 Networking and Internet Architecture +1410.6172 Statistics Theory +1410.6174 Theory +1410.6177 Populations and Evolution +1410.6179 Number Theory +1410.6180 Phenomenology +1410.6184 Materials Science +1410.6186 Classical Analysis and ODEs +1410.6188 Analysis of PDEs +1410.6190 Algebraic Geometry +1410.6194 Analysis of PDEs +1410.6195 Materials Science +1410.6200 Analysis of PDEs +1410.6204 Combinatorics +1410.6206 Differential Geometry +1410.6213 Functional Analysis +1410.6214 Combinatorics +1410.6220 +1410.6221 +1410.6222 Numerical Analysis +1410.6223 Geometric Topology +1410.6225 Analysis of PDEs +1410.6226 Group Theory +1410.6234 Combinatorics +1410.6235 Classical Analysis and ODEs +1410.6237 Superconductivity +1410.6245 High Energy Astrophysical Phenomena +1410.6246 Instrumentation and Detectors +1410.6248 Instrumentation and Detectors +1410.6249 Instrumentation and Detectors +1410.6257 Optics +1410.6260 Analysis of PDEs +1410.6262 Complex Variables +1410.6263 Probability +1410.6266 Classical Analysis and ODEs +1410.6269 Dynamical Systems +1410.6271 Machine Learning +1410.6277 Multiagent Systems +1410.6280 Cosmology and Nongalactic Astrophysics +1410.6282 Phenomenology +1410.6284 Phenomenology +1410.6286 Soft Condensed Matter +1410.6292 Soft Condensed Matter +1410.6293 Numerical Analysis +1410.6295 Cryptography and Security +1410.6296 Statistics Theory +1410.6298 Logic in Computer Science +1410.6302 Experiment +1410.6306 Dynamical Systems +1410.6320 Logic +1410.6321 Computational Finance +1410.6324 Commutative Algebra +1410.6327 Functional Analysis +1410.6335 Computational Engineering, Finance, and Science +1410.6341 Molecular Networks +1410.6344 Mesoscale and Nanoscale Physics +1410.6348 Algebraic Geometry +1410.6351 Classical Analysis and ODEs +1410.6352 Complex Variables +1410.6355 Optimization and Control +1410.6356 Mesoscale and Nanoscale Physics +1410.6362 Phenomenology +1410.6366 Astrophysics of Galaxies +1410.6369 Soft Condensed Matter +1410.6371 Mesoscale and Nanoscale Physics +1410.6373 +1410.6378 Lattice +1410.6382 Learning +1410.6383 +1410.6385 Superconductivity +1410.6386 Populations and Evolution +1410.6387 Optimization and Control +1410.6390 Popular Physics +1410.6397 Discrete Mathematics +1410.6400 Data Structures and Algorithms +1410.6404 Materials Science +1410.6409 Phenomenology +1410.6412 Theory +1410.6413 Neural and Evolutionary Computing +1410.6414 Learning +1410.6416 Classical Analysis and ODEs +1410.6417 Complex Variables +1410.6421 Phenomenology +1410.6425 Cell Behavior +1410.6426 Mesoscale and Nanoscale Physics +1410.6430 Combinatorics +1410.6431 Disordered Systems and Neural Networks +1410.6439 Soft Condensed Matter +1410.6440 Geometric Topology +1410.6442 Metric Geometry +1410.6452 Superconductivity +1410.6453 History and Philosophy of Physics +1410.6455 Genomics +1410.6457 Functional Analysis +1410.6463 Solar and Stellar Astrophysics +1410.6469 Physics Education +1410.6470 Physics Education +1410.6472 Computer Vision and Pattern Recognition +1410.6475 Numerical Analysis +alg-geom/9501004 Algebraic Geometry +alg-geom/9511002 Algebraic Geometry +alg-geom/9607023 Algebraic Geometry +cond-mat/0605316 Strongly Correlated Electrons +hep-th/0701091 Theory +math/0008207 Algebraic Geometry +math/0202173 Algebraic Geometry +math/0207196 Algebraic Geometry +math/0505017 Algebraic Geometry +math/0601175 Algebraic Geometry +0708.1586 Differential Geometry +0901.1636 +0909.4193 Soft Condensed Matter +1006.3266 Rings and Algebras +1011.2661 Rings and Algebras +1011.6609 +1101.0573 K-Theory and Homology +1102.2018 Statistical Mechanics +1107.3914 Combinatorics +1109.0895 Learning +1202.5054 Differential Geometry +1205.5784 Analysis of PDEs +1206.3646 Cosmology and Nongalactic Astrophysics +1207.3412 General Finance +1208.1811 Numerical Analysis +1208.4614 Differential Geometry +1209.6378 Materials Science +1211.1938 General Finance +1211.6910 Algebraic Geometry +1301.2841 Combinatorics +1302.0180 Geometric Topology +1303.2452 Probability +1304.6842 Theory +1305.2590 +1307.3861 Commutative Algebra +1307.6783 Group Theory +1307.7815 Phenomenology +1308.0269 Combinatorics +1308.0952 +1308.3634 Symplectic Geometry +1309.0571 Group Theory +1309.3421 Information Retrieval +1309.3884 Rings and Algebras +1309.5051 Geometric Topology +1309.6518 Optimization and Control +1310.3669 Quantum Gases +1310.3855 Quantum Algebra +1311.0245 Classical Analysis and ODEs +1311.1331 Differential Geometry +1311.2436 +1311.3255 Combinatorics +1311.3680 Number Theory +1312.3961 Information Theory +1312.5657 Medical Physics +1312.6310 Neurons and Cognition +1312.6447 Discrete Mathematics +1312.7710 Optimization and Control +1401.2142 +1402.0212 Astrophysics of Galaxies +1402.1791 +1402.2731 +1402.5098 Number Theory +1403.2917 Phenomenology +1403.5586 Experiment +1403.6070 Theory +1403.7110 Operator Algebras +1403.7222 Strongly Correlated Electrons +1403.8035 Mesoscale and Nanoscale Physics +1404.0366 Phenomenology +1404.0763 Soft Condensed Matter +1404.3216 Theory +1404.3304 Probability +1404.3535 Mesoscale and Nanoscale Physics +1404.3747 +1404.5187 Information Theory +1404.5736 Probability +1404.6504 Phenomenology +1405.0519 +1405.0605 Probability +1405.2455 Probability +1405.2457 Probability +1405.2503 Combinatorics +1405.2570 Probability +1405.4296 K-Theory and Homology +1405.5953 Mesoscale and Nanoscale Physics +1405.7835 Optimization and Control +1406.0146 Physics and Society +1406.1292 Subcellular Processes +1406.1490 Mesoscale and Nanoscale Physics +1406.2007 Fluid Dynamics +1406.4210 Strongly Correlated Electrons +1406.6634 Commutative Algebra +1406.6988 Numerical Analysis +1407.0856 +1407.1302 Analysis of PDEs +1407.1985 Superconductivity +1407.3557 Phenomenology +1407.4363 Astrophysics of Galaxies +1407.6053 Accelerator Physics +1407.6532 +1407.6610 Instrumentation and Methods for Astrophysics +1407.6901 Mesoscale and Nanoscale Physics +1407.7366 Representation Theory +1408.0262 Computational Complexity +1408.2418 Complex Variables +1408.2494 Plasma Physics +1408.3547 Mesoscale and Nanoscale Physics +1408.3763 Theory +1408.3777 Classical Analysis and ODEs +1408.3899 Fluid Dynamics +1408.4937 Mesoscale and Nanoscale Physics +1408.4991 Mesoscale and Nanoscale Physics +1408.5396 Cosmology and Nongalactic Astrophysics +1408.6033 Computational Physics +1408.6250 Strongly Correlated Electrons +1408.6968 Number Theory +1409.1263 Cosmology and Nongalactic Astrophysics +1409.1532 Chaotic Dynamics +1409.1608 Logic +1409.1651 Theory +1409.2756 Mesoscale and Nanoscale Physics +1409.4294 Astrophysics of Galaxies +1409.4419 +1409.5311 Mesoscale and Nanoscale Physics +1409.6424 Statistical Mechanics +1409.7153 +1409.8143 Analysis of PDEs +1410.0919 +1410.1218 Biological Physics +1410.1461 Geometric Topology +1410.4327 Phenomenology +1410.6089 Numerical Analysis +1411.1427 Experiment +1411.1535 Combinatorics +1411.3000 Cryptography and Security +1411.3127 +1411.3316 Strongly Correlated Electrons +1411.3481 Rings and Algebras +1411.5096 Mesoscale and Nanoscale Physics +1411.6392 Combinatorics +1411.6499 Differential Geometry +1411.6805 Combinatorics +1412.0152 Social and Information Networks +1412.0175 Probability +1412.0373 +1412.0398 +1412.0749 Mesoscale and Nanoscale Physics +1412.1025 Populations and Evolution +1412.1486 Instrumentation and Methods for Astrophysics +1412.1735 Computation +1412.1816 History and Philosophy of Physics +1412.2460 Statistical Mechanics +1412.2687 Algebraic Geometry +1412.2863 Learning +1412.3072 Number Theory +1412.3125 Social and Information Networks +1412.3320 Phenomenology +1412.3344 Mesoscale and Nanoscale Physics +1412.3447 General Physics +1412.3454 Theory +1412.3458 Astrophysics of Galaxies +1412.3465 Analysis of PDEs +1412.3466 Theory +1412.3471 Statistical Mechanics +1412.3472 Quantum Gases +1412.3474 Computer Vision and Pattern Recognition +1412.3476 Superconductivity +1412.3481 Strongly Correlated Electrons +1412.3482 Mesoscale and Nanoscale Physics +1412.3483 Algebraic Topology +1412.3484 Logic +1412.3485 Materials Science +1412.3487 Accelerator Physics +1412.3488 Instrumentation and Detectors +1412.3490 Instrumentation and Methods for Astrophysics +1412.3492 Instrumentation and Detectors +1412.3493 Combinatorics +1412.3495 Exactly Solvable and Integrable Systems +1412.3497 Combinatorics +1412.3501 Computation +1412.3503 Geophysics +1412.3507 Data Structures and Algorithms +1412.3509 Astrophysics of Galaxies +1412.3512 Combinatorics +1412.3513 Soft Condensed Matter +1412.3519 Analysis of PDEs +1412.3520 Geophysics +1412.3522 +1412.3525 Phenomenology +1412.3527 Complex Variables +1412.3529 Software Engineering +1412.3532 Lattice +1412.3533 +1412.3535 Functional Analysis +1412.3536 Materials Science +1412.3537 Instrumentation and Detectors +1412.3538 Databases +1412.3542 Commutative Algebra +1412.3543 +1412.3544 Phenomenology +1412.3548 Solar and Stellar Astrophysics +1412.3555 Neural and Evolutionary Computing +1412.3558 Operator Algebras +1412.3563 Mesoscale and Nanoscale Physics +1412.3567 Atomic and Molecular Clusters +1412.3575 Algebraic Geometry +1412.3579 Other Computer Science +1412.3580 Numerical Analysis +1412.3582 +1412.3584 K-Theory and Homology +1412.3585 Soft Condensed Matter +1412.3587 Functional Analysis +1412.3589 Phenomenology +1412.3590 Number Theory +1412.3591 Strongly Correlated Electrons +1412.3597 Other Condensed Matter +1412.3604 +1412.3610 Discrete Mathematics +1412.3611 Solar and Stellar Astrophysics +1412.3614 Quantum Algebra +1412.3617 Computation +1412.3618 Optics +1412.3619 Other Condensed Matter +1412.3622 Combinatorics +1412.3623 Computational Finance +1412.3624 Networking and Internet Architecture +1412.3625 Networking and Internet Architecture +1412.3628 Multimedia +1412.3629 Experiment +1412.3630 Multimedia +1412.3631 K-Theory and Homology +1412.3637 Networking and Internet Architecture +1412.3639 Networking and Internet Architecture +1412.3640 Complex Variables +1412.3642 Geometric Topology +1412.3646 +1412.3649 Phenomenology +1412.3651 +1412.3653 Applications +1412.3654 Numerical Analysis +1412.3655 Lattice +1412.3658 Theory +1412.3659 Materials Science +1412.3660 Numerical Analysis +1412.3665 Instrumentation and Detectors +1412.3667 General Physics +1412.3670 Logic in Computer Science +1412.3672 High Energy Astrophysical Phenomena +1412.3675 Mesoscale and Nanoscale Physics +1412.3680 +1412.3684 Computer Vision and Pattern Recognition +1412.3685 Combinatorics +1412.3686 K-Theory and Homology +1412.3687 Software Engineering +1412.3690 Software Engineering +1412.3691 Numerical Analysis +1412.3692 Information Theory +1412.3693 Rings and Algebras +1412.3695 Computers and Society +1412.3696 Data Structures and Algorithms +1412.3697 Physics and Society +1412.3698 Experiment +1412.3700 Probability +1412.3707 Rings and Algebras +1412.3710 High Energy Astrophysical Phenomena +1412.3711 Rings and Algebras +1412.3712 Biological Physics +1412.3713 Combinatorics +1412.3718 History and Overview +1412.3720 Algebraic Geometry +1412.3721 Data Structures and Algorithms +1412.3723 Mesoscale and Nanoscale Physics +1412.3725 Materials Science +1412.3727 Materials Science +1412.3729 Programming Languages +1412.3730 Statistics Theory +1412.3734 Strongly Correlated Electrons +1412.3735 Commutative Algebra +1412.3736 Theory +1412.3737 Optics +1412.3740 Optimization and Control +1412.3741 Optics +1412.3747 Representation Theory +1412.3748 Commutative Algebra +1412.3751 Information Theory +1412.3755 Materials Science +1412.3760 Category Theory +1412.3765 Optimization and Control +1412.3768 Human-Computer Interaction +1412.3769 Soft Condensed Matter +1412.3771 Probability +1412.3777 Differential Geometry +1412.3779 Computation +1412.3781 Probability +1412.3783 Materials Science +1412.3784 Numerical Analysis +1412.3787 Theory +1412.3794 +1412.3798 Phenomenology +1412.3800 Quantitative Methods +0704.2865 Statistical Finance +0705.3898 +0711.0626 Dynamical Systems +0810.4558 Classical Analysis and ODEs +0904.0598 +0905.4465 Phenomenology +0908.3521 Number Theory +1002.3290 Probability +1004.2170 Classical Analysis and ODEs +1005.2462 Algebraic Geometry +1007.1323 K-Theory and Homology +1011.3179 Optimization and Control +1102.1132 +1102.3443 Algebraic Geometry +1103.2448 Spectral Theory +1104.1574 Algebraic Geometry +1106.0797 Instrumentation and Methods for Astrophysics +1106.2957 +1106.3938 Group Theory +1107.1221 Algebraic Geometry +1108.5716 Classical Analysis and ODEs +1109.5909 Other Statistics +1110.3572 Statistics Theory +1110.4523 Probability +1111.0446 Probability +1112.1315 Optimization and Control +1201.1581 Classical Analysis and ODEs +1203.0041 Classical Analysis and ODEs +1203.1112 Statistics Theory +1203.4574 +1206.3917 Superconductivity +1206.4785 Classical Analysis and ODEs +1207.2805 Statistics Theory +1207.7097 +1208.2302 Analysis of PDEs +1208.3625 +1208.3726 +1208.4836 Number Theory +1208.6332 Algebraic Geometry +1209.2758 +1210.6714 +1211.0832 Theory +1211.4818 Probability +1212.3314 +1212.5064 +1212.5415 Materials Science +1301.0910 +1301.1205 Representation Theory +1303.3074 Cosmology and Nongalactic Astrophysics +1303.5192 +1303.7110 Combinatorics +1304.0911 Materials Science +1304.5044 Combinatorics +1304.5065 Risk Management +1304.6537 Theory +1305.0209 Networking and Internet Architecture +1305.0820 +1305.2679 Information Theory +1305.6572 Mesoscale and Nanoscale Physics +1306.4787 +1306.5296 Systems and Control +1306.5783 Superconductivity +1306.6125 Systems and Control +1306.6421 Classical Analysis and ODEs +1306.6442 +1306.6859 Plasma Physics +1306.6864 Algebraic Geometry +1306.6876 Phenomenology +1307.0523 +1307.3228 +1307.3408 Superconductivity +1307.6619 Cosmology and Nongalactic Astrophysics +1308.0623 Biological Physics +1308.1589 Mesoscale and Nanoscale Physics +1308.2884 +1308.4629 +1309.0391 +1309.0954 High Energy Astrophysical Phenomena +1309.2321 Optics +1309.2331 Superconductivity +1309.3250 Computation +1309.3937 Mesoscale and Nanoscale Physics +1309.7919 Chaotic Dynamics +1310.0043 Soft Condensed Matter +1310.0887 Numerical Analysis +1310.2718 Materials Science +1310.3671 Mesoscale and Nanoscale Physics +1310.4112 Quantum Algebra +1310.5580 Statistical Mechanics +1310.6625 Strongly Correlated Electrons +1310.7934 Quantum Gases +1311.0644 Applications +1311.3136 Theory +1311.3554 Materials Science +1311.4550 Theory +1311.4565 Lattice +1311.4863 Theory +1311.7460 Materials Science +1312.0975 Theory +1312.1135 Numerical Analysis +1312.1775 Materials Science +1312.2120 Populations and Evolution +1312.2284 Theory +1312.2550 Physics and Society +1312.3004 Computational Physics +1312.3226 Mesoscale and Nanoscale Physics +1312.3467 Quantum Gases +1312.4612 Statistical Mechanics +1312.4832 Theory +1312.5595 Experiment +1312.6296 Instrumentation and Detectors +1312.6818 Experiment +1401.1688 Number Theory +1401.2466 +1401.4514 Solar and Stellar Astrophysics +1401.5524 Plasma Physics +1401.6895 Chemical Physics +1401.7230 +1401.7749 Materials Science +1402.0394 Cosmology and Nongalactic Astrophysics +1402.0605 Superconductivity +1402.1506 Dynamical Systems +1402.1577 Astrophysics of Galaxies +1402.2802 Materials Science +1402.4143 Phenomenology +1402.4334 Experiment +1402.5581 Applications +1402.6304 Numerical Analysis +1402.7125 Atomic Physics +1403.0184 Cryptography and Security +1403.0459 +1403.0545 Theory +1403.0709 Theory +1403.1744 Instrumentation and Methods for Astrophysics +1403.1891 Learning +1403.2033 Computational Physics +1403.2154 Optics +1403.2715 Fluid Dynamics +1403.2716 Networking and Internet Architecture +1403.2718 Software Engineering +1403.2730 Probability +1403.2732 Social and Information Networks +1403.2735 +1403.2737 Differential Geometry +1403.2739 Optimization and Control +1403.2743 Mesoscale and Nanoscale Physics +1403.2745 Computers and Society +1403.2748 High Energy Astrophysical Phenomena +1403.2749 Combinatorics +1403.2750 Fluid Dynamics +1403.2752 Logic in Computer Science +1403.2766 Dynamical Systems +1403.2767 +1403.2769 Number Theory +1403.2770 Soft Condensed Matter +1403.2775 Group Theory +1403.2776 Optics +1403.2778 Analysis of PDEs +1403.2780 Geometric Topology +1403.2785 Hardware Architecture +1403.2786 Group Theory +1403.2787 Physics and Society +1403.2790 Phenomenology +1403.2791 +1403.2795 +1403.2796 Combinatorics +1403.2799 Materials Science +1403.2800 Distributed, Parallel, and Cluster Computing +1403.2802 Computer Vision and Pattern Recognition +1403.2804 Strongly Correlated Electrons +1403.2805 Computation +1403.2806 Materials Science +1403.2808 Computers and Society +1403.2809 Combinatorics +1403.2810 Combinatorics +1403.2813 Logic +1403.2814 Networking and Internet Architecture +1403.2815 +1403.2817 Earth and Planetary Astrophysics +1403.2819 Software Engineering +1403.2821 Software Engineering +1403.2825 Populations and Evolution +1403.2830 Materials Science +1403.2831 Quantum Gases +1403.2832 Probability +1403.2833 Biological Physics +1403.2835 Information Theory +1403.2837 Computation and Language +1403.2840 Algebraic Geometry +1403.2841 Algebraic Geometry +1403.2842 Neural and Evolutionary Computing +1403.2844 Cryptography and Security +1403.2845 Statistics Theory +1403.2846 Combinatorics +1403.2848 Databases +1403.2849 +1403.2853 Differential Geometry +1403.2855 Differential Geometry +1403.2863 Software Engineering +1403.2869 +1403.2871 Computer Vision and Pattern Recognition +1403.2873 General Topology +1403.2877 Machine Learning +1403.2878 Populations and Evolution +1403.2892 Solar and Stellar Astrophysics +1403.2893 Phenomenology +1403.2894 Combinatorics +1403.2895 Computer Vision and Pattern Recognition +1403.2899 Statistics Theory +1403.2906 Robotics +1403.2908 Combinatorics +1403.2911 Combinatorics +1403.2919 Networking and Internet Architecture +1403.2922 Analysis of PDEs +1403.2925 Probability +1403.2926 Geometric Topology +1403.2949 Number Theory +1403.2950 Learning +1403.2954 Statistics Theory +1403.2958 Databases +1403.2960 Strongly Correlated Electrons +1403.2962 Classical Physics +1403.2970 Differential Geometry +1403.2972 Computational Geometry +1403.2973 Spectral Theory +1403.2978 Experiment +1403.2979 High Energy Astrophysical Phenomena +1403.2980 Computer Vision and Pattern Recognition +1403.2986 Materials Science +1403.2990 Networking and Internet Architecture +1403.2998 Probability +1403.3001 History and Overview +1403.3002 General Mathematics +1403.3004 Metric Geometry +1403.3006 History and Overview +1403.3012 Fluid Dynamics +1403.3013 Algebraic Geometry +1403.3015 Medical Physics +1403.3016 Analysis of PDEs +1403.3017 Distributed, Parallel, and Cluster Computing +1403.3023 Fluid Dynamics +1403.3028 Applications +1403.3030 Soft Condensed Matter +1403.3039 Logic in Computer Science +1403.3046 Numerical Analysis +1403.3055 Software Engineering +1403.3057 Neural and Evolutionary Computing +1403.3059 Materials Science +1403.3060 Computational Engineering, Finance, and Science +1403.3061 Information Theory +1403.3064 Commutative Algebra +1403.3065 Rings and Algebras +1403.3077 Information Theory +1403.3081 Number Theory +cond-mat/0511105 Strongly Correlated Electrons +cond-mat/0511110 Strongly Correlated Electrons +math-ph/0408005 +math/0511599 Dynamical Systems +math/0601473 Dynamical Systems +math/0609695 Dynamical Systems +0808.2190 Soft Condensed Matter +0808.2196 Soft Condensed Matter +0903.2571 Logic +0909.2006 Physics and Society +1001.4719 General Topology +1002.0216 Physics and Society +1005.3680 Data Analysis, Statistics and Probability +1006.2181 Solar and Stellar Astrophysics +1007.1037 Operator Algebras +1010.5058 Biological Physics +1012.5512 Functional Analysis +1103.4419 Mesoscale and Nanoscale Physics +1105.2393 Classical Analysis and ODEs +1110.2632 +1201.2078 Space Physics +1201.2824 Operator Algebras +1202.0862 Combinatorics +1205.1628 Physics and Society +1207.3096 Probability +1208.1891 +1208.5433 Probability +1209.2503 Data Structures and Algorithms +1209.3528 Differential Geometry +1209.3699 Physics and Society +1210.0006 Probability +1210.0854 Data Analysis, Statistics and Probability +1210.3543 General Finance +1210.4797 Popular Physics +1210.5092 Popular Physics +1212.2619 Representation Theory +1212.4535 +1301.2182 Systems and Control +1301.2615 Commutative Algebra +1302.0684 Theory +1302.5618 Representation Theory +1303.2451 Classical Analysis and ODEs +1305.1175 Physics and Society +1305.3629 Logic +1305.6708 Chaotic Dynamics +1306.0719 +1306.0837 Statistical Mechanics +1307.6972 Superconductivity +1309.1683 +1309.2979 Discrete Mathematics +1309.4920 K-Theory and Homology +1310.2795 Strongly Correlated Electrons +1310.2990 Number Theory +1310.3563 +1310.6594 Rings and Algebras +1310.7003 Combinatorics +1310.7528 Chemical Physics +1310.7973 Disordered Systems and Neural Networks +1310.8492 Analysis of PDEs +1311.2762 +1311.4759 Data Structures and Algorithms +1311.5522 Logic +1311.7631 Discrete Mathematics +1312.4487 Combinatorics +1312.5204 Molecular Networks +1401.1044 Algebraic Geometry +1401.1442 Probability +1401.2415 Optimization and Control +1401.5500 Operator Algebras +1401.6362 Information Theory +1401.6670 Information Theory +1401.7661 Mesoscale and Nanoscale Physics +1401.7720 Physics and Society +1402.0090 Dynamical Systems +1402.0855 High Energy Astrophysical Phenomena +1402.2236 Cosmology and Nongalactic Astrophysics +1403.1094 Populations and Evolution +1403.1325 Populations and Evolution +1403.2387 Strongly Correlated Electrons +1403.2812 Populations and Evolution +1403.3062 Mesoscale and Nanoscale Physics +1403.3522 Computer Vision and Pattern Recognition +1403.5014 Combinatorics +1403.5035 Theory +1403.5278 Cosmology and Nongalactic Astrophysics +1403.5490 +1403.7154 +1403.7926 Soft Condensed Matter +1404.0318 Soft Condensed Matter +1404.0983 Complex Variables +1404.1062 Strongly Correlated Electrons +1404.2210 Materials Science +1404.2550 Theory +1404.3103 Mesoscale and Nanoscale Physics +1404.6796 Superconductivity +1404.7579 Astrophysics of Galaxies +1405.0057 Instrumentation and Methods for Astrophysics +1405.1507 Materials Science +1405.3158 Differential Geometry +1405.4067 Phenomenology +1405.4533 Mesoscale and Nanoscale Physics +1405.6075 Fluid Dynamics +1405.6979 +1405.7127 Experiment +1406.1026 Functional Analysis +1406.2641 Instrumentation and Detectors +1406.3488 Materials Science +1406.3904 Phenomenology +1406.4064 Optimization and Control +1406.4553 Mesoscale and Nanoscale Physics +1406.6086 Strongly Correlated Electrons +1406.7593 Superconductivity +1407.0651 Mesoscale and Nanoscale Physics +1407.1718 Soft Condensed Matter +1407.4621 Atomic Physics +1407.6095 Solar and Stellar Astrophysics +1407.8157 Mesoscale and Nanoscale Physics +1408.1115 Geometric Topology +1408.1185 Materials Science +1408.2123 Computational Engineering, Finance, and Science +1408.2722 Materials Science +1408.2942 Materials Science +1408.4944 Data Structures and Algorithms +1408.6463 Instrumentation and Detectors +1408.6776 Materials Science +1409.0894 Instrumentation and Detectors +1409.1855 Physics and Society +1409.2735 Lattice +1409.2895 History and Philosophy of Physics +1409.2940 +1409.3206 Sound +1409.3513 Physics Education +1409.3542 Soft Condensed Matter +1409.3583 Commutative Algebra +1409.3598 Atomic Physics +1409.3600 Data Structures and Algorithms +1409.3603 Analysis of PDEs +1409.3606 Combinatorics +1409.3608 Optics +1409.3609 Cosmology and Nongalactic Astrophysics +1409.3611 Phenomenology +1409.3615 Accelerator Physics +1409.3617 Representation Theory +1409.3628 +1409.3633 Analysis of PDEs +1409.3634 Combinatorics +1409.3635 Information Theory +1409.3638 Information Theory +1409.3639 Group Theory +1409.3642 Statistics Theory +1409.3643 Analysis of PDEs +1409.3650 Analysis of PDEs +1409.3651 Distributed, Parallel, and Cluster Computing +1409.3653 Artificial Intelligence +1409.3655 Operator Algebras +1409.3656 Phenomenology +1409.3658 Astrophysics of Galaxies +1409.3659 Combinatorics +1409.3662 Superconductivity +1409.3668 Astrophysics of Galaxies +1409.3673 Operator Algebras +1409.3677 Analysis of PDEs +1409.3682 Databases +1409.3685 +1409.3687 Experiment +1409.3690 Methodology +1409.3692 Probability +1409.3700 Data Structures and Algorithms +1409.3703 Differential Geometry +1409.3704 Experiment +1409.3708 Cosmology and Nongalactic Astrophysics +1409.3710 Number Theory +1409.3714 Numerical Analysis +1409.3717 Multiagent Systems +1409.3720 Spectral Theory +1409.3721 Solar and Stellar Astrophysics +1409.3724 Lattice +1409.3725 Computers and Society +1409.3732 Classical Analysis and ODEs +1409.3734 Optics +1409.3736 Probability +1409.3737 Experiment +1409.3740 Experiment +1409.3742 Data Structures and Algorithms +1409.3744 +1409.3748 Probability +1409.3759 Theory +1409.3763 General Mathematics +1409.3766 Experiment +1409.3767 Networking and Internet Architecture +1409.3768 Computation +1409.3771 Social and Information Networks +1409.3774 Data Analysis, Statistics and Probability +1409.3780 Probability +1409.3784 Soft Condensed Matter +1409.3789 Algebraic Geometry +1409.3790 Number Theory +1409.3793 +1409.3797 Number Theory +1409.3798 Biological Physics +1409.3801 Algebraic Geometry +1409.3803 Other Statistics +1409.3804 Logic in Computer Science +1409.3805 Logic in Computer Science +1409.3807 Classical Analysis and ODEs +1409.3810 Functional Analysis +1409.3813 Computation and Language +1409.3818 Numerical Analysis +1409.3819 Logic in Computer Science +1409.3820 Number Theory +1409.3823 Mesoscale and Nanoscale Physics +1409.3824 Numerical Analysis +1409.3831 Cosmology and Nongalactic Astrophysics +1409.3832 Optimization and Control +1409.3833 Solar and Stellar Astrophysics +quant-ph/0506068 +0707.2678 Strongly Correlated Electrons +0812.1454 Combinatorics +0905.0019 Number Theory +0909.5610 Probability +1101.0142 Number Theory +1103.0192 Probability +1105.3741 Plasma Physics +1106.3048 High Energy Astrophysical Phenomena +1107.2871 Probability +1107.5435 Quantum Gases +1108.2441 K-Theory and Homology +1108.3147 Probability +1108.3386 Probability +1111.6764 Instrumentation and Methods for Astrophysics +1203.4155 +1203.6085 Probability +1205.0351 Optimization and Control +1208.0645 Learning +1209.1039 Mesoscale and Nanoscale Physics +1211.0618 Probability +1211.2125 Dynamical Systems +1211.4901 High Energy Astrophysical Phenomena +1212.0251 Classical Analysis and ODEs +1212.1811 Algebraic Geometry +1212.4806 Phenomenology +1301.5769 Disordered Systems and Neural Networks +1301.6521 Probability +1302.2403 +1303.4000 Soft Condensed Matter +1303.5576 Instrumentation and Methods for Astrophysics +1303.5869 Rings and Algebras +1303.7203 Rings and Algebras +1303.7323 High Energy Astrophysical Phenomena +1304.0332 Probability +1304.0552 Probability +1304.0656 Analysis of PDEs +1304.1583 Pattern Formation and Solitons +1304.3316 Probability +1304.4444 Optics +1304.4578 Information Theory +1305.3012 Representation Theory +1305.4285 Mesoscale and Nanoscale Physics +1306.6133 Emerging Technologies +1307.2342 Optimization and Control +1307.3944 High Energy Astrophysical Phenomena +1307.8095 Dynamical Systems +1308.6465 Portfolio Management +1309.0015 Mesoscale and Nanoscale Physics +1309.1795 Social and Information Networks +1309.1911 +1309.3258 Quantitative Methods +1309.3654 Materials Science +1309.4428 Theory +1309.5032 Optimization and Control +1309.7778 Analysis of PDEs +1310.1493 Computational Complexity +1310.2195 Optimization and Control +1310.5034 Learning +1310.7166 Analysis of PDEs +1310.8176 Methodology +1311.0345 Combinatorics +1311.0609 Materials Science +1311.1882 Fluid Dynamics +1311.4244 Mesoscale and Nanoscale Physics +1311.4614 Theory +1311.6115 Operator Algebras +1312.0574 Differential Geometry +1312.1266 Accelerator Physics +1312.3864 Theory +1312.5765 Information Theory +1312.7323 Optimization and Control +1401.0179 Algebraic Geometry +1401.1816 Phenomenology +1401.4699 Instrumentation and Detectors +1401.4946 Analysis of PDEs +1401.5940 Lattice +1401.8207 Mesoscale and Nanoscale Physics +1402.0424 Dynamical Systems +1402.0744 Numerical Analysis +1402.0976 +1402.1061 Analysis of PDEs +1402.1501 Mesoscale and Nanoscale Physics +1402.3677 High Energy Astrophysical Phenomena +1402.3811 Neural and Evolutionary Computing +1402.4151 Strongly Correlated Electrons +1402.4243 Instrumentation and Methods for Astrophysics +1402.5557 Software Engineering +1403.1124 Methodology +1403.1522 Analysis of PDEs +1403.4856 Solar and Stellar Astrophysics +1403.4971 Cosmology and Nongalactic Astrophysics +1403.5730 Information Theory +1404.3522 General Mathematics +1404.3953 Statistical Mechanics +1404.6426 +1404.6667 Networking and Internet Architecture +1405.0654 Symplectic Geometry +1405.0852 Instrumentation and Detectors +1405.4306 Superconductivity +1405.7966 Astrophysics of Galaxies +1406.0237 Group Theory +1406.4038 High Energy Astrophysical Phenomena +1406.4059 Chaotic Dynamics +1406.5226 Numerical Analysis +1406.5550 Mathematical Software +1406.6622 Software Engineering +1406.7143 Methodology +1406.7330 Learning +1406.7652 Phenomenology +1406.7870 Combinatorics +1407.0021 Cosmology and Nongalactic Astrophysics +1407.0067 Learning +1407.0120 Databases +1407.0194 Functional Analysis +1407.0278 Materials Science +1407.0380 Sound +1407.0395 Phenomenology +1407.0399 Representation Theory +1407.0404 +1407.0407 Theory +1407.0409 Theory +1407.0414 Robotics +1407.0415 Phenomenology +1407.0421 Geometric Topology +1407.0423 Computers and Society +1407.0424 Other Computer Science +1407.0425 Combinatorics +1407.0435 Instrumentation and Methods for Astrophysics +1407.0436 Logic +1407.0438 Phenomenology +1407.0440 Social and Information Networks +1407.0441 +1407.0442 Distributed, Parallel, and Cluster Computing +1407.0449 Learning +1407.0450 Quantum Gases +1407.0451 +1407.0454 Databases +1407.0455 Databases +1407.0456 Instrumentation and Methods for Astrophysics +1407.0457 Representation Theory +1407.0459 Optics +1407.0461 Plasma Physics +1407.0464 Plasma Physics +1407.0466 Social and Information Networks +1407.0472 Commutative Algebra +1407.0474 Networking and Internet Architecture +1407.0475 K-Theory and Homology +1407.0478 Popular Physics +1407.0480 Rings and Algebras +1407.0481 Information Retrieval +1407.0482 Statistics Theory +1407.0487 Geometric Topology +1407.0488 Rings and Algebras +1407.0491 Computational Complexity +1407.0494 Phenomenology +1407.0495 Earth and Planetary Astrophysics +1407.0497 Cosmology and Nongalactic Astrophysics +1407.0499 Probability +1407.0503 General Topology +1407.0504 Materials Science +1407.0506 Systems and Control +1407.0507 Optics +1407.0511 Information Theory +1407.0512 Category Theory +1407.0513 Rings and Algebras +1407.0514 Algebraic Geometry +1407.0516 Information Theory +1407.0517 Risk Management +1407.0518 Probability +1407.0519 Social and Information Networks +1407.0522 Data Structures and Algorithms +1407.0526 Analysis of PDEs +1407.0527 +1407.0528 Instrumentation and Methods for Astrophysics +1407.0531 Analysis of PDEs +1407.0532 Classical Analysis and ODEs +1407.0537 General Mathematics +1407.0542 Optics +1407.0544 Algebraic Geometry +1407.0546 Phenomenology +1407.0547 Digital Libraries +1407.0549 Cryptography and Security +1407.0552 Numerical Analysis +1407.0554 Solar and Stellar Astrophysics +1407.0559 Commutative Algebra +1407.0561 Phenomenology +1407.0562 Geometric Topology +1407.0574 Number Theory +1407.0579 Combinatorics +1407.0585 Algebraic Geometry +1407.0586 Number Theory +1407.0590 Earth and Planetary Astrophysics +1407.0595 Solar and Stellar Astrophysics +1407.0598 Analysis of PDEs +1407.0602 Numerical Analysis +1407.0607 Group Theory +1407.0610 Optimization and Control +1407.0611 Machine Learning +1407.0612 Machine Learning +1407.0613 Social and Information Networks +1407.0616 Group Theory +1407.0619 Representation Theory +1407.0622 Social and Information Networks +1407.0624 Cosmology and Nongalactic Astrophysics +1407.0625 Theory +1407.0628 Data Structures and Algorithms +1407.0632 Emerging Technologies +1407.0633 +1407.0643 Computer Science and Game Theory +1407.0644 Neurons and Cognition +1407.0648 Geometric Topology +1407.0654 +1407.0656 Materials Science +1407.0660 Differential Geometry +1407.0661 Strongly Correlated Electrons +1407.0666 Cell Behavior +1407.0668 Representation Theory +1407.0670 Analysis of PDEs +1407.0671 Optimization and Control +1407.0672 Medical Physics +1407.0673 Differential Geometry +1407.0675 Analysis of PDEs +cond-mat/0410065 Materials Science +math/0505224 Statistics Theory +math/0604279 Quantum Algebra +math/0606591 Optimization and Control +0711.3995 Differential Geometry +0805.1507 Strongly Correlated Electrons +0903.4091 Differential Geometry +0907.3037 Functional Analysis +0909.0137 High Energy Astrophysical Phenomena +1005.2094 +1006.4368 +1008.5259 Algebraic Geometry +1010.0672 +1103.4891 Computation +1104.0146 Biological Physics +1105.4805 Functional Analysis +1107.3193 Programming Languages +1109.2666 +1110.3238 Statistics Theory +1202.4765 Combinatorics +1205.3313 Atmospheric and Oceanic Physics +1206.0862 Superconductivity +1207.0730 Statistics Theory +1208.2775 General Finance +1208.5791 +1211.5907 +1212.4987 +1301.1334 Computational Physics +1301.4565 Differential Geometry +1301.6438 Rings and Algebras +1302.5429 Mesoscale and Nanoscale Physics +1302.6246 Phenomenology +1302.6403 Dynamical Systems +1303.5346 Functional Analysis +1303.5566 +1304.6386 Experiment +1305.0472 Differential Geometry +1305.2587 Probability +1305.3390 +1306.0111 Populations and Evolution +1306.2914 Classical Analysis and ODEs +1306.4771 Strongly Correlated Electrons +1307.8190 +1308.0206 Metric Geometry +1309.0025 Phenomenology +1309.0554 Strongly Correlated Electrons +1309.1968 Group Theory +1309.2587 Cosmology and Nongalactic Astrophysics +1309.4378 Probability +1310.2607 Cosmology and Nongalactic Astrophysics +1310.7601 Phenomenology +1311.1747 +1311.1990 Phenomenology +1311.2006 Experiment +1311.4224 Systems and Control +1311.4779 Instrumentation and Detectors +1311.6520 Optics +1311.6792 Materials Science +1311.7070 Instrumentation and Detectors +1312.0802 Geometric Topology +1312.1283 Probability +1312.1956 Experiment +1312.2139 Optimization and Control +1312.5660 Portfolio Management +1312.6775 Experiment +1401.1062 Dynamical Systems +1401.3435 Mesoscale and Nanoscale Physics +1401.5260 Statistical Mechanics +1401.5836 Physics and Society +1401.7045 Functional Analysis +1401.7540 Data Structures and Algorithms +1401.8234 Soft Condensed Matter +1402.1416 Probability +1402.3051 Experiment +1402.3254 Materials Science +1402.3650 +1402.3806 +1402.5467 +1403.1251 Mesoscale and Nanoscale Physics +1403.4102 Probability +1403.4184 Superconductivity +1403.4548 General Physics +1403.5294 Experiment +1403.6993 Strongly Correlated Electrons +1404.1344 Experiment +1404.1944 +1404.2020 Atomic Physics +1404.2500 Experiment +1404.2723 Phenomenology +1404.3070 Operator Algebras +1404.5309 Phenomenology +1405.0489 Cosmology and Nongalactic Astrophysics +1405.0967 Theory +1405.1333 Dynamical Systems +1405.1714 Commutative Algebra +1405.2598 General Physics +1405.3219 Experiment +1405.4338 Mesoscale and Nanoscale Physics +1405.4348 General Physics +1405.5136 Cosmology and Nongalactic Astrophysics +1405.5996 History and Overview +1405.6402 Theory +1406.0392 Experiment +1406.2345 Theory +1406.5249 High Energy Astrophysical Phenomena +1406.7395 Networking and Internet Architecture +1406.7570 Data Structures and Algorithms +1406.7828 Theory +1407.0175 Logic +1407.1581 Superconductivity +1407.3343 Combinatorics +1407.5656 Artificial Intelligence +1407.6854 Statistical Mechanics +1407.6945 Algebraic Geometry +1407.7212 Fluid Dynamics +1407.8194 Computational Geometry +1407.8409 Information Theory +1408.0819 Materials Science +1408.1324 Optimization and Control +1408.2612 Geometric Topology +1408.2613 Superconductivity +1408.2675 Optimization and Control +1408.3645 Computational Complexity +1408.3697 Strongly Correlated Electrons +1408.4230 Data Structures and Algorithms +1408.4237 Soft Condensed Matter +1408.4260 Superconductivity +1408.4356 Analysis of PDEs +1408.4447 +1408.4455 Phenomenology +1408.4468 Databases +1408.4470 Differential Geometry +1408.4472 Quantum Gases +1408.4474 Instrumentation and Detectors +1408.4475 Methodology +1408.4478 Analysis of PDEs +1408.4480 Biomolecules +1408.4486 Statistical Mechanics +1408.4487 Distributed, Parallel, and Cluster Computing +1408.4489 Soft Condensed Matter +1408.4492 +1408.4496 Solar and Stellar Astrophysics +1408.4498 Logic +1408.4499 Classical Analysis and ODEs +1408.4501 Operator Algebras +1408.4502 Probability +1408.4504 Computer Vision and Pattern Recognition +1408.4507 Mesoscale and Nanoscale Physics +1408.4514 Number Theory +1408.4518 Statistical Mechanics +1408.4519 Information Retrieval +1408.4523 Software Engineering +1408.4526 Fluid Dynamics +1408.4527 Statistics Theory +1408.4528 Information Theory +1408.4530 Combinatorics +1408.4533 Superconductivity +1408.4536 Numerical Analysis +1408.4537 Algebraic Geometry +1408.4539 Networking and Internet Architecture +1408.4540 +1408.4541 Atomic Physics +1408.4544 Information Theory +1408.4554 Representation Theory +1408.4559 Computation +1408.4565 Software Engineering +1408.4566 +1408.4572 Phenomenology +1408.4574 Dynamical Systems +1408.4577 Medical Physics +1408.4579 Probability +1408.4581 Functional Analysis +1408.4587 Distributed, Parallel, and Cluster Computing +1408.4597 Operator Algebras +1408.4599 Computational Engineering, Finance, and Science +1408.4600 Materials Science +1408.4601 +1408.4612 Systems and Control +1408.4621 Solar and Stellar Astrophysics +1408.4622 Computation +1408.4625 Instrumentation and Methods for Astrophysics +1408.4626 Other Computer Science +1408.4628 Logic in Computer Science +1408.4630 Information Theory +1408.4639 Instrumentation and Methods for Astrophysics +1408.4644 Software Engineering +1408.4646 +1408.4647 Atomic Physics +1408.4651 Earth and Planetary Astrophysics +1408.4654 Functional Analysis +1408.4655 Materials Science +1408.4657 Phenomenology +1408.4659 Phenomenology +1408.4665 Materials Science +1408.4668 Instrumentation and Methods for Astrophysics +1408.4673 Learning +1408.4675 Medical Physics +1408.4681 Logic +1408.4684 Dynamical Systems +1408.4689 Differential Geometry +1408.4692 Computer Vision and Pattern Recognition +1408.4693 Differential Geometry +1408.4702 Atmospheric and Oceanic Physics +1408.4708 Algebraic Geometry +1408.4710 Combinatorics +1408.4714 Learning +1408.4715 Software Engineering +1408.4721 Computer Vision and Pattern Recognition +1408.4724 Complex Variables +1408.4725 Software Engineering +1408.4731 Materials Science +1408.4734 Phenomenology +1408.4736 Classical Physics +1408.4738 +1408.4744 Algebraic Geometry +1408.4745 Discrete Mathematics +1408.4747 Statistics Theory +1408.4748 Combinatorics +1408.4749 Cryptography and Security +1408.4752 Functional Analysis +1408.4753 Computation and Language +1408.4757 Algebraic Geometry +1408.4762 Classical Analysis and ODEs +1408.4763 Representation Theory +1408.4767 Dynamical Systems +1408.4771 History and Overview +1408.4774 General Physics +1408.4776 Computers and Society +1408.4780 +1408.4782 Molecular Networks +1408.4784 Analysis of PDEs +hep-th/0306214 Theory +0705.4203 Dynamical Systems +0802.1425 Combinatorics +0810.0418 Algebraic Geometry +0811.4079 Probability +0903.1097 Logic +0903.5519 Rings and Algebras +0904.3968 Fluid Dynamics +0905.0801 Differential Geometry +0907.0730 Algebraic Geometry +0912.3328 Dynamical Systems +1003.0173 Statistics Theory +1004.0469 Classical Analysis and ODEs +1010.0813 +1010.2782 Number Theory +1010.3211 Algebraic Geometry +1011.0067 Probability +1011.0548 Probability +1101.3969 +1102.4288 Probability +1103.6054 K-Theory and Homology +1104.0533 Fluid Dynamics +1104.5324 Optimization and Control +1105.3411 Combinatorics +1106.0627 +1107.1407 Differential Geometry +1107.5134 Number Theory +1109.5725 Algebraic Geometry +1110.1233 Probability +1110.1817 Differential Geometry +1112.1787 Analysis of PDEs +1201.0306 Computation +1201.0619 Analysis of PDEs +1201.1810 General Mathematics +1201.2121 Analysis of PDEs +1202.2163 +1202.2683 Methodology +1202.5023 Probability +1203.0210 Analysis of PDEs +1203.0387 Classical Analysis and ODEs +1203.1430 +1203.4332 Probability +1203.5413 Number Theory +1203.5437 Optimization and Control +1204.0352 +1204.4674 +1206.0484 Classical Analysis and ODEs +1206.1412 Analysis of PDEs +1206.1670 Plasma Physics +1206.1771 Analysis of PDEs +1207.5600 Number Theory +1208.2047 +1209.0266 Spectral Theory +1209.2375 Solar and Stellar Astrophysics +1209.3444 Algebraic Geometry +1209.5194 Atomic Physics +1210.0282 Dynamical Systems +1210.1116 Probability +1211.0340 Functional Analysis +1211.6895 Commutative Algebra +1211.7351 +1212.0979 Data Structures and Algorithms +1212.1638 Networking and Internet Architecture +1212.5457 Operator Algebras +1212.6944 Theory +1301.1224 Cosmology and Nongalactic Astrophysics +1301.2563 Theory +1301.3467 Materials Science +1301.3715 Optics +1301.4687 Theory +1301.4977 Lattice +1301.6064 Computation +1301.6101 +1301.6160 Optics +1302.1148 Populations and Evolution +1302.3127 Number Theory +1302.4007 +1302.6191 Computational Complexity +1302.6642 Combinatorics +1302.7200 +1302.7288 Combinatorics +1303.0805 Populations and Evolution +1303.4977 +1303.6181 +1304.0109 Mesoscale and Nanoscale Physics +1304.0616 Dynamical Systems +1304.6867 Earth and Planetary Astrophysics +1304.7379 Classical Analysis and ODEs +1305.0322 Superconductivity +1305.1576 High Energy Astrophysical Phenomena +1305.4368 Quantum Gases +1305.4463 +1305.6534 Geometric Topology +1306.0895 Machine Learning +1306.1206 Populations and Evolution +1306.2272 Mesoscale and Nanoscale Physics +1306.3666 Algebraic Geometry +1306.4081 Number Theory +1306.6754 Representation Theory +1307.0130 +1307.3203 Physics and Society +1307.3486 Logic +1307.8409 Networking and Internet Architecture +1308.0210 Statistical Finance +1308.0547 Optics +1308.1319 Populations and Evolution +1308.1856 Computational Physics +1308.4826 Networking and Internet Architecture +1308.5087 Rings and Algebras +1308.5397 Networking and Internet Architecture +1308.5811 Networking and Internet Architecture +1309.1852 High Energy Astrophysical Phenomena +1309.3522 Probability +1309.3673 Number Theory +1309.4837 Combinatorics +1309.6157 +1309.6256 Materials Science +1309.6492 Other Condensed Matter +1309.7634 Analysis of PDEs +1310.0033 General Physics +1310.1160 Mesoscale and Nanoscale Physics +1310.1817 Quantum Gases +1310.2559 Computation +1310.2761 Superconductivity +1310.2896 +1310.4174 Phenomenology +1310.4504 Phenomenology +1310.5126 Mesoscale and Nanoscale Physics +1310.6109 Cosmology and Nongalactic Astrophysics +1310.6757 Solar and Stellar Astrophysics +1310.6758 Solar and Stellar Astrophysics +1310.7157 Mesoscale and Nanoscale Physics +1310.7263 Number Theory +1310.7360 Strongly Correlated Electrons +1310.8006 Lattice +1310.8077 +1310.8170 Functional Analysis +1310.8276 Metric Geometry +1311.0043 Number Theory +1311.0255 Phenomenology +1311.1129 Computation +1311.1252 Mesoscale and Nanoscale Physics +1311.1389 Number Theory +1311.1544 Chaotic Dynamics +1311.2212 +1311.2432 Solar and Stellar Astrophysics +1311.2723 Solar and Stellar Astrophysics +1311.2763 History and Philosophy of Physics +1311.2890 Accelerator Physics +1311.3282 Experiment +1311.3686 Operating Systems +1311.3877 Information Theory +1311.3958 Strongly Correlated Electrons +1311.4041 Number Theory +1311.4108 Strongly Correlated Electrons +1311.4297 Cellular Automata and Lattice Gases +1311.4674 Accelerator Physics +1311.5268 Theory +1311.6253 Theory +1311.6721 Phenomenology +1311.7103 Accelerator Physics +1311.7493 Phenomenology +1312.0033 Chaotic Dynamics +1312.0398 Classical Analysis and ODEs +1312.0723 Data Structures and Algorithms +1312.1031 Distributed, Parallel, and Cluster Computing +1312.1708 Dynamical Systems +1312.2226 Formal Languages and Automata Theory +1312.2482 Computational Geometry +1312.2483 Computational Complexity +1312.2490 Computational Complexity +1312.2538 Combinatorics +1312.2582 Materials Science +1312.3049 High Energy Astrophysical Phenomena +1312.4330 Theory +1312.5176 Experiment +1312.5192 Machine Learning +1312.5663 Learning +1312.5901 Probability +1312.6115 Machine Learning +1312.7161 Optics +1312.7292 Systems and Control +1312.7671 +1312.7672 Combinatorics +1312.7674 Combinatorics +1312.7689 Group Theory +1401.0423 Optics +1401.0496 Optimization and Control +1401.0516 Algebraic Geometry +1401.0607 Strongly Correlated Electrons +1401.1028 Phenomenology +1401.2421 +1401.4155 Strongly Correlated Electrons +1401.4365 Combinatorics +1401.5385 Materials Science +1401.5635 Fluid Dynamics +1401.5960 +1401.7630 Phenomenology +1401.7659 Quantum Gases +1402.0870 Cosmology and Nongalactic Astrophysics +1402.1155 Probability +1402.1218 +1402.1678 Atomic Physics +1402.2255 Information Theory +1402.2678 Computation +1402.3350 Computer Science and Game Theory +1402.4995 Systems and Control +1402.5287 Numerical Analysis +1402.5944 +1402.6452 +1402.6500 Social and Information Networks +1402.6619 Astrophysics of Galaxies +1402.6862 Systems and Control +1402.6927 Instrumentation and Methods for Astrophysics +1402.7290 General Topology +1402.7296 Analysis of PDEs +1403.0034 Artificial Intelligence +1403.0172 Functional Analysis +1403.0294 Quantum Gases +1403.0847 Information Theory +1403.1228 Molecular Networks +1403.1326 Instrumentation and Methods for Astrophysics +1403.1375 Cosmology and Nongalactic Astrophysics +1403.1530 Analysis of PDEs +1403.1674 Number Theory +1403.1815 +1403.2157 Number Theory +1403.3034 Software Engineering +1403.3508 Phenomenology +1403.3640 Chemical Physics +1403.4014 Classical Analysis and ODEs +1403.4234 Earth and Planetary Astrophysics +1403.5501 Physics Education +1403.5557 Other Statistics +1403.5558 Mesoscale and Nanoscale Physics +1403.5573 Probability +1403.5579 Functional Analysis +1403.5590 Computer Vision and Pattern Recognition +1403.5591 Optimization and Control +1403.5594 Materials Science +1403.5595 Dynamical Systems +1403.5596 Computation and Language +1403.5599 Computational Finance +1403.5600 Superconductivity +1403.5604 Strongly Correlated Electrons +1403.5607 Machine Learning +1403.5609 Methodology +1403.5612 Materials Science +1403.5613 Algebraic Geometry +1403.5614 Software Engineering +1403.5615 Populations and Evolution +1403.5616 Information Theory +1403.5617 Social and Information Networks +1403.5619 Complex Variables +1403.5626 Quantum Algebra +1403.5627 Distributed, Parallel, and Cluster Computing +1403.5631 Instrumentation and Methods for Astrophysics +1403.5632 Classical Analysis and ODEs +1403.5636 Combinatorics +1403.5638 Information Theory +1403.5639 Instrumentation and Methods for Astrophysics +1403.5641 Systems and Control +1403.5645 Databases +1403.5647 Learning +1403.5652 Metric Geometry +1403.5653 Analysis of PDEs +1403.5654 Functional Analysis +1403.5659 Instrumentation and Detectors +1403.5661 Cosmology and Nongalactic Astrophysics +1403.5662 Materials Science +1403.5663 Optics +1403.5664 Combinatorics +1403.5666 History and Philosophy of Physics +1403.5670 Instrumentation and Methods for Astrophysics +1403.5673 Rings and Algebras +1403.5674 Analysis of PDEs +1403.5675 General Physics +1403.5680 Strongly Correlated Electrons +1403.5681 +1403.5684 +1403.5687 Probability +1403.5688 Instrumentation and Methods for Astrophysics +1403.5692 Commutative Algebra +1403.5693 Machine Learning +1403.5695 Theory +1403.5696 Analysis of PDEs +1403.5697 Combinatorics +1403.5701 Artificial Intelligence +1403.5703 Earth and Planetary Astrophysics +1403.5704 Functional Analysis +1403.5706 +1403.5707 Numerical Analysis +1403.5708 Analysis of PDEs +1403.5709 Probability +1403.5710 Statistics Theory +1403.5713 Analysis of PDEs +1403.5718 Computer Vision and Pattern Recognition +1403.5721 Logic +1403.5723 Networking and Internet Architecture +1403.5725 Functional Analysis +1403.5733 Numerical Analysis +1403.5736 Materials Science +1403.5737 Materials Science +1403.5738 +1403.5739 History and Overview +1403.5743 Probability +1403.5745 Probability +1403.5746 +1403.5753 Artificial Intelligence +1403.5757 Logic +1403.5764 Probability +1403.5765 Instrumentation and Detectors +1403.5768 Systems and Control +1403.5769 Algebraic Geometry +1403.5770 Functional Analysis +1403.5772 +1403.5774 Probability +1403.5782 Phenomenology +1403.5785 Probability +1403.5788 Formal Languages and Automata Theory +1403.5793 Representation Theory +1403.5794 Fluid Dynamics +1403.5798 +1403.5802 Human-Computer Interaction +1403.5807 Combinatorics +1403.5808 Number Theory +1403.5813 Strongly Correlated Electrons +1403.5814 Commutative Algebra +1403.5816 Astrophysics of Galaxies +1403.5818 Algebraic Geometry +1403.5821 History and Overview +1403.5826 Number Theory +1403.5828 Networking and Internet Architecture +1403.5830 Computational Complexity +1403.5833 Applications +1403.5834 Probability +1403.5850 High Energy Astrophysical Phenomena +1403.5852 Rings and Algebras +1403.5854 +1403.5856 Soft Condensed Matter +1403.5859 Optimization and Control +1403.5863 Differential Geometry +1403.5865 Systems and Control +1403.5869 Computer Vision and Pattern Recognition +1403.5871 Cryptography and Security +1403.5874 Information Theory +1403.5877 Machine Learning +1403.5878 Cell Behavior +1403.5882 Data Structures and Algorithms +1403.5887 Analysis of PDEs +1403.5889 +1403.5893 +1403.5902 Numerical Analysis +1403.5916 Mesoscale and Nanoscale Physics +1403.5918 Probability +1403.5919 Computer Vision and Pattern Recognition +1403.5923 +1403.5926 Complex Variables +1403.5927 Probability +1403.5929 Materials Science +1403.5930 Representation Theory +1403.5931 Materials Science +1403.5933 Computational Engineering, Finance, and Science +1403.5938 Astrophysics of Galaxies +1403.5941 Physics and Society +1403.5942 Combinatorics +1403.5943 Plasma Physics +1403.5945 Number Theory +1403.5951 Phenomenology +1403.5952 Programming Languages +1403.5954 Representation Theory +1403.5955 Analysis of PDEs +1403.5956 Fluid Dynamics +1403.5957 Commutative Algebra +1403.5965 Statistical Finance +1403.5966 Materials Science +1403.5968 Atomic Physics +1403.5969 Information Theory +1403.5971 Optimization and Control +1403.5972 Accelerator Physics +1403.5976 Operating Systems +1403.5978 Classical Analysis and ODEs +1403.5979 Algebraic Geometry +1403.5989 Chaotic Dynamics +1403.5994 Machine Learning +1403.5998 Algebraic Topology +1403.6002 Computer Vision and Pattern Recognition +1403.6004 Strongly Correlated Electrons +1403.6006 Computers and Society +1403.6008 Applications +1403.6010 Superconductivity +1403.6013 Networking and Internet Architecture +1403.6021 Strongly Correlated Electrons +1403.6030 Superconductivity +1403.6031 Earth and Planetary Astrophysics +1403.6034 Neurons and Cognition +1403.6036 Artificial Intelligence +1403.6037 Commutative Algebra +1403.6040 Accelerator Physics +1403.6046 Systems and Control +1403.6050 Dynamical Systems +1403.6051 Phenomenology +1403.6058 Statistical Mechanics +1403.6059 Disordered Systems and Neural Networks +1403.6060 Formal Languages and Automata Theory +1403.6065 Theory +1403.6066 Optics +1403.6067 Social and Information Networks +1403.6074 Populations and Evolution +1403.6076 Probability +1403.6082 Algebraic Geometry +1403.6083 Geometric Topology +1403.6090 Information Theory +1403.6092 Group Theory +1403.6096 Rings and Algebras +1403.6097 Analysis of PDEs +1403.6100 Analysis of PDEs +hep-th/9409009 Theory +math/0309190 Number Theory +math/0610644 Representation Theory +math/0702078 Probability +patt-sol/9902007 Pattern Formation and Solitons +1007.2821 Number Theory +1010.0732 Number Theory +1101.1784 Combinatorics +1107.5540 Optics +1201.6203 Analysis of PDEs +1202.5836 Logic +1203.5519 Theory +1204.2942 Computer Science and Game Theory +1206.2608 Metric Geometry +1206.4161 Logic +1207.3219 Cosmology and Nongalactic Astrophysics +1207.6240 Strongly Correlated Electrons +1208.3946 Number Theory +1208.4011 Number Theory +1209.3112 Probability +1209.4923 Solar and Stellar Astrophysics +1210.7049 +1212.4701 Optimization and Control +1301.3759 Methodology +1302.1632 Geometric Topology +1303.4537 Probability +1304.2929 Analysis of PDEs +1304.3060 General Physics +1304.5653 Number Theory +1304.5962 Pricing of Securities +1304.6040 +1304.8050 Theory +1307.2047 Quantum Algebra +1307.3821 Solar and Stellar Astrophysics +1307.7835 Phenomenology +1308.1270 +1308.2315 Group Theory +1308.2955 Statistics Theory +1309.0984 +1309.2218 Functional Analysis +1309.3202 +1309.3494 Mesoscale and Nanoscale Physics +1309.3726 Analysis of PDEs +1309.4105 +1309.7725 Differential Geometry +1310.4152 Quantum Gases +1310.4584 Solar and Stellar Astrophysics +1310.6237 Cosmology and Nongalactic Astrophysics +1310.6524 Computational Complexity +1310.7370 Statistical Mechanics +1311.0016 +1311.6748 Statistical Mechanics +1311.6826 Instrumentation and Detectors +1312.5465 Learning +1312.6383 Statistical Mechanics +1401.0705 Formal Languages and Automata Theory +1401.4362 Fluid Dynamics +1401.4538 Logic in Computer Science +1401.7911 Numerical Analysis +1401.8045 Soft Condensed Matter +1402.1206 Operator Algebras +1402.1575 Phenomenology +1402.3050 Phenomenology +1402.3388 Logic in Computer Science +1402.4296 Statistics Theory +1402.6488 Strongly Correlated Electrons +1403.0073 +1403.0207 Group Theory +1403.1180 Databases +1403.1205 Quantum Gases +1403.1420 Cosmology and Nongalactic Astrophysics +1403.3871 Mesoscale and Nanoscale Physics +1403.6163 Fluid Dynamics +1403.6168 Methodology +1403.8139 Combinatorics +1404.0277 +1404.0678 Quantum Gases +1404.1765 Analysis of PDEs +1404.2839 Logic +1404.2858 Logic +1404.4053 Astrophysics of Galaxies +1404.4357 Experiment +1404.5486 Optics +1404.5663 Numerical Analysis +1404.5934 Operator Algebras +1405.1337 Mesoscale and Nanoscale Physics +1405.1633 Theory +1405.3657 +1405.3749 Cosmology and Nongalactic Astrophysics +1405.3876 Phenomenology +1405.3999 +1405.5396 Quantum Algebra +1405.5544 Soft Condensed Matter +1405.5632 +1405.6329 +1405.7273 Strongly Correlated Electrons +1405.7371 Phenomenology +1405.7401 Dynamical Systems +1406.0105 Atomic Physics +1406.0206 +1406.1030 Statistical Mechanics +1406.1442 Mesoscale and Nanoscale Physics +1406.2336 Quantum Gases +1406.3364 +1406.3771 Mesoscale and Nanoscale Physics +1406.5580 Statistics Theory +1406.6292 Strongly Correlated Electrons +1406.6333 Strongly Correlated Electrons +1407.0859 Statistical Mechanics +1407.0966 +1407.1756 Information Theory +1407.2550 Earth and Planetary Astrophysics +1407.3536 Chemical Physics +1407.5737 Mesoscale and Nanoscale Physics +1407.5896 Logic in Computer Science +1407.6357 Statistical Mechanics +1407.6666 Combinatorics +1407.8173 Theory +1407.8487 +1408.0903 Phenomenology +1408.1517 Mesoscale and Nanoscale Physics +1408.2461 General Mathematics +1408.2475 Strongly Correlated Electrons +1408.2945 Subcellular Processes +1408.3466 Chemical Physics +1408.3804 Strongly Correlated Electrons +1408.4851 Accelerator Physics +1408.6952 Astrophysics of Galaxies +1409.0380 Cosmology and Nongalactic Astrophysics +1409.1761 Theory +1409.4974 Number Theory +1409.5185 Machine Learning +1409.5755 Instrumentation and Detectors +1409.6757 Theory +1409.6805 Information Retrieval +1409.6985 Numerical Analysis +1409.7033 Data Structures and Algorithms +1409.7036 +1409.7061 Materials Science +1409.7074 Statistical Mechanics +1409.7080 Fluid Dynamics +1409.7081 Analysis of PDEs +1409.7085 Computation and Language +1409.7091 Dynamical Systems +1409.7093 Operator Algebras +1409.7095 Pattern Formation and Solitons +1409.7096 Analysis of PDEs +1409.7099 Spectral Theory +1409.7101 +1409.7103 Lattice +1409.7105 Applications +1409.7109 Networking and Internet Architecture +1409.7113 Functional Analysis +1409.7114 Numerical Analysis +1409.7121 Software Engineering +1409.7127 Statistics Theory +1409.7131 Analysis of PDEs +1409.7135 Solar and Stellar Astrophysics +1409.7136 Systems and Control +1409.7138 Optics +1409.7139 Lattice +1409.7140 Optimization and Control +1409.7141 Probability +1409.7144 Commutative Algebra +1409.7145 Differential Geometry +1409.7146 Group Theory +1409.7151 Dynamical Systems +1409.7154 Atomic Physics +1409.7158 Methodology +1409.7160 Number Theory +1409.7162 Complex Variables +1409.7163 Information Theory +1409.7164 Computer Vision and Pattern Recognition +1409.7168 Exactly Solvable and Integrable Systems +1409.7171 Probability +1409.7177 Differential Geometry +1409.7181 Accelerator Physics +1409.7183 Materials Science +1409.7190 Mesoscale and Nanoscale Physics +1409.7191 Analysis of PDEs +1409.7198 Combinatorics +1409.7200 Experiment +1409.7204 Theory +1409.7209 +1409.7210 Optics +1409.7212 +1409.7214 Number Theory +1409.7218 Pattern Formation and Solitons +1409.7219 Materials Science +1409.7220 Probability +1409.7227 Phenomenology +1409.7228 Information Theory +1409.7231 Software Engineering +1409.7232 Software Engineering +1409.7233 Software Engineering +1409.7234 Software Engineering +1409.7236 Software Engineering +1409.7237 +1409.7239 Software Engineering +1409.7240 Data Structures and Algorithms +1409.7241 Software Engineering +1409.7243 Software Engineering +1409.7244 Information Theory +1409.7247 Information Theory +1409.7254 Social and Information Networks +1409.7255 +1409.7256 Graphics +1409.7259 Earth and Planetary Astrophysics +1409.7261 Computational Complexity +1409.7264 +1409.7266 Chemical Physics +1409.7267 Instrumentation and Detectors +1409.7269 Trading and Market Microstructure +1409.7270 Instrumentation and Detectors +1409.7274 Category Theory +1409.7277 Computers and Society +1409.7278 Astrophysics of Galaxies +1409.7281 Artificial Intelligence +1409.7284 Superconductivity +1409.7289 Data Structures and Algorithms +1409.7290 +1409.7293 Optics +1409.7298 +1409.7299 Combinatorics +1409.7300 Materials Science +1409.7307 Computer Vision and Pattern Recognition +1409.7313 Computer Vision and Pattern Recognition +1409.7316 Digital Libraries +1409.7321 Analysis of PDEs +1409.7322 Logic +1409.7323 Analysis of PDEs +1409.7324 Software Engineering +1409.7325 Geometric Topology +1409.7327 Analysis of PDEs +1409.7329 Analysis of PDEs +1409.7331 Probability +1409.7334 Networking and Internet Architecture +1409.7338 Optics +1409.7345 Probability +1409.7346 Representation Theory +1409.7347 Astrophysics of Galaxies +1409.7350 Group Theory +1409.7351 Differential Geometry +1409.7352 Data Structures and Algorithms +1409.7354 Cosmology and Nongalactic Astrophysics +1409.7363 Functional Analysis +1409.7367 Information Theory +1409.7376 Phenomenology +1409.7377 Mesoscale and Nanoscale Physics +1409.7378 +1409.7379 +1409.7383 Numerical Analysis +astro-ph/0412257 +math/0601713 Algebraic Geometry +1007.1233 Multimedia +0705.1950 Geometric Topology +0705.2546 Group Theory +0706.0089 Geometric Topology +0706.0932 Algebraic Topology +0706.0937 Algebraic Topology +0707.1353 Algebraic Topology +0707.1899 Geometric Topology +0707.3937 Quantum Algebra +0707.4299 Probability +0707.4300 Geometric Topology +0708.3347 Geometric Topology +0709.3534 Geometric Topology +0710.0082 K-Theory and Homology +0710.0681 Algebraic Topology +0710.0771 Geometric Topology +0710.2108 Group Theory +0710.2615 Algebraic Topology +0710.2681 Geometric Topology +0710.2938 Algebraic Topology +0710.3070 Algebraic Topology +0710.4300 Quantum Algebra +0711.0473 Algebraic Topology +0711.1134 K-Theory and Homology +0711.4419 Geometric Topology +0712.1625 Geometric Topology +0712.3334 Algebraic Topology +0801.0007 Algebraic Topology +0801.0193 Algebraic Topology +0801.1026 Symplectic Geometry +0801.3647 Geometric Topology +0801.3677 Geometric Topology +0801.3696 Group Theory +0802.0033 Group Theory +0802.0883 Geometric Topology +0802.0950 Differential Geometry +0802.1438 Geometric Topology +0802.1982 Geometric Topology +0802.2311 Algebraic Topology +0802.2338 Algebraic Geometry +0802.2707 Dynamical Systems +0802.3623 Geometric Topology +0802.3652 Algebraic Topology +0802.4372 Differential Geometry +0803.0498 Geometric Topology +0803.0500 Geometric Topology +0803.1253 Metric Geometry +0803.3825 Algebraic Topology +0803.4297 Geometric Topology +0804.0112 Geometric Topology +0804.0401 Algebraic Topology +0804.1381 +0804.2682 Geometric Topology +0804.2791 Algebraic Topology +0805.0094 Geometric Topology +0805.0965 Algebraic Topology +0805.2307 Geometric Topology +0806.0476 Algebraic Topology +0806.0601 Geometric Topology +0806.1887 Geometric Topology +0806.1912 Geometric Topology +0806.3281 Algebraic Topology +0806.3487 Geometric Topology +0807.0405 Geometric Topology +0807.0765 Geometric Topology +0807.0905 Geometric Topology +0807.2576 Algebraic Topology +0807.4704 Group Theory +0808.2099 Geometric Topology +0808.4108 Algebraic Topology +0809.0119 Geometric Topology +0809.0502 Algebraic Topology +0809.0816 Algebraic Topology +0809.1203 Geometric Topology +0809.1273 Algebraic Topology +0809.2111 Geometric Topology +0809.3568 Geometric Topology +0809.4278 Geometric Topology +0809.4697 Symplectic Geometry +0809.5118 Quantum Algebra +0810.0862 Geometric Topology +0810.1785 Algebraic Topology +0810.2949 +0810.3392 Group Theory +0810.5147 Algebraic Topology +0810.5481 Algebraic Topology +0810.5533 Algebraic Topology +0811.0178 Geometric Topology +0811.1531 Geometric Topology +0811.4615 Geometric Topology +0812.0858 Geometric Topology +0812.1324 Algebraic Topology +0812.1389 Geometric Topology +0901.0880 Group Theory +0901.1330 Geometric Topology +0901.2430 Instrumentation and Detectors +0901.2629 Geometric Topology +0901.4089 Group Theory +0902.0705 Algebraic Topology +0902.1198 Differential Geometry +0902.1355 Algebraic Topology +0902.2903 Dynamical Systems +0902.3370 Geometric Topology +0902.4034 Geometric Topology +0903.0112 Geometric Topology +0903.1453 Geometric Topology +0903.2563 Algebraic Topology +0903.3509 Geometric Topology +0903.5058 Algebraic Topology +0904.0919 Geometric Topology +0904.3204 Geometric Topology +0905.0895 Geometric Topology +0905.1672 Geometric Topology +0905.1783 Geometric Topology +0905.2574 Geometric Topology +0905.3290 Group Theory +0906.0762 Algebraic Topology +0906.1335 Algebraic Topology +0906.1612 Geometric Topology +0906.2740 Algebraic Topology +0906.4592 Differential Geometry +0907.4563 Quantum Algebra +0908.1092 Algebraic Topology +0908.1914 Geometric Topology +0908.2272 Geometric Topology +0908.2713 Group Theory +0908.3690 Geometric Topology +0909.3023 Algebraic Topology +0909.3222 Algebraic Topology +0909.4517 Geometric Topology +0909.4778 Group Theory +0909.4825 Group Theory +0910.0814 Category Theory +0910.1038 Algebraic Topology +0910.1575 Geometric Topology +0910.2817 Algebraic Topology +0910.3561 Algebraic Topology +0910.3921 Geometric Topology +0910.5259 Symplectic Geometry +0910.5637 Symplectic Geometry +0910.5814 Geometric Topology +0911.0469 Algebraic Topology +0911.1353 Geometric Topology +0911.1785 Algebraic Topology +0911.2510 Geometric Topology +0911.4338 Algebraic Topology +0911.4607 Geometric Topology +0911.4712 Geometric Topology +0912.1380 Geometric Topology +0912.3054 Algebraic Topology +0912.3127 Algebraic Topology +0912.3496 Geometric Topology +1001.0916 Geometric Topology +1001.2325 Symplectic Geometry +1001.2515 General Topology +1002.1096 Group Theory +1002.1106 Geometric Topology +1002.1917 Geometric Topology +1002.3095 Geometric Topology +1002.3423 Geometric Topology +1002.3858 Algebraic Topology +1002.4563 Algebraic Topology +1003.5595 Algebraic Topology +1004.0238 Symplectic Geometry +1004.2060 Group Theory +1004.3049 Geometric Topology +1005.2472 Group Theory +1005.4546 K-Theory and Homology +1005.4858 Geometric Topology +1006.2781 Algebraic Topology +1006.3378 Group Theory +1006.4383 Symplectic Geometry +1006.5433 Symplectic Geometry +1007.1221 Dynamical Systems +1007.3010 Symplectic Geometry +1007.4219 Combinatorics +1007.5315 Algebraic Topology +1008.0238 Geometric Topology +1008.1095 Geometric Topology +1008.1296 Geometric Topology +1008.2646 Geometric Topology +1008.3529 Geometric Topology +1008.4266 Algebraic Topology +1008.5003 Geometric Topology +1009.1653 Geometric Topology +1009.3532 Group Theory +1009.4120 Geometric Topology +1009.4227 Geometric Topology +1009.4235 Group Theory +1009.5439 Geometric Topology +1010.1083 Group Theory +1010.3831 Geometric Topology +1010.5020 Geometric Topology +1011.1274 Algebraic Topology +1011.3139 Geometric Topology +1011.4784 Algebraic Topology +1011.5785 Algebraic Topology +1012.0810 Algebraic Topology +1012.1310 Combinatorics +1012.2169 Group Theory +1012.2802 Geometric Topology +1012.2876 Geometric Topology +1012.3666 Geometric Topology +1012.3672 Quantum Algebra +1012.5134 Geometric Topology +1102.5022 Algebraic Topology +1103.0479 Group Theory +1103.0831 Phenomenology +1103.2417 Geometric Topology +1103.2677 Algebraic Topology +1103.3199 Geometric Topology +1103.5060 Dynamical Systems +1103.6047 Group Theory +1103.6185 Algebraic Topology +1104.3613 Algebraic Topology +1104.3939 Geometric Topology +1104.4244 Algebraic Topology +1104.4628 Geometric Topology +1105.0253 Group Theory +1105.4233 K-Theory and Homology +1106.0486 Geometric Topology +1106.1499 Geometric Topology +1106.2490 Logic +1106.6310 Geometric Topology +1107.3283 Geometric Topology +1107.3329 Representation Theory +1107.4993 Geometric Topology +1108.0719 Pricing of Securities +1108.1056 Geometric Topology +1108.1081 Quantum Algebra +1108.1255 Geometric Topology +1108.1367 Networking and Internet Architecture +1108.2460 Geometric Topology +1108.5166 Geometric Topology +1108.5903 Geometric Topology +1108.6232 Geometric Topology +1108.6309 Algebraic Topology +1109.1668 Geometric Topology +1109.1952 Algebraic Topology +1109.3694 Algebraic Topology +1109.3720 Physics Education +1109.4982 Geometric Topology +1109.5220 Geometric Topology +1109.6592 Geometric Topology +1110.1665 Symplectic Geometry +1110.1686 Quantum Algebra +1110.3196 Algebraic Topology +1110.3346 Algebraic Topology +1110.3880 Algebraic Topology +1110.5167 Algebraic Topology +1111.3672 Differential Geometry +1111.4086 Geometric Topology +1111.6413 Algebraic Topology +1111.7000 Geometric Topology +1112.0165 Group Theory +1112.2533 Category Theory +1112.3429 Representation Theory +1112.3840 Algebraic Topology +1112.3995 Geometric Topology +1112.4558 Geometric Topology +1201.0332 Algebraic Topology +1201.0989 Group Theory +1201.1643 Geometric Topology +1201.2131 Geometric Topology +1201.3389 +1201.4296 Operator Algebras +1201.4799 +1201.5176 Geometric Topology +1201.5290 Geometric Topology +1201.6550 Geometric Topology +1202.1173 Materials Science +1202.1539 Classical Analysis and ODEs +1202.3801 +1202.3806 Statistical Mechanics +1202.5215 Logic +1202.5714 Group Theory +1203.0950 Algebraic Topology +1203.1603 Algebraic Topology +1203.3129 Algebraic Topology +1203.3238 Geometric Topology +1203.4845 Group Theory +1203.5436 Group Theory +1203.5645 Geometric Topology +1203.5652 Group Theory +1203.5839 Geometric Topology +1203.6168 K-Theory and Homology +1204.0501 Algebraic Topology +1204.1047 Metric Geometry +1204.1272 Geometric Topology +1204.1273 Representation Theory +1204.3145 Symplectic Geometry +1204.4636 Geometric Topology +1205.0049 Geometric Topology +1205.0166 Algebraic Topology +1205.0484 Algebraic Topology +1205.1274 Geometric Topology +1205.1566 Algebraic Topology +1205.2140 Algebraic Topology +1205.2272 Instrumentation and Detectors +1205.2984 Metric Geometry +1205.4688 Cosmology and Nongalactic Astrophysics +1205.5520 Geometric Topology +1205.5919 Geometric Topology +1206.0058 Algebraic Topology +1206.0271 Algebraic Topology +1206.0977 Group Theory +1206.1233 Disordered Systems and Neural Networks +1206.1352 Algebraic Topology +1206.5577 Geometric Topology +1206.6143 Combinatorics +1206.6157 Combinatorics +1206.6657 Quantum Algebra +1207.0624 Geometric Topology +1207.1753 Number Theory +1207.3008 Geometric Topology +1207.4588 Algebraic Geometry +1208.0357 Geometric Topology +1208.1700 Geometric Topology +1208.4062 Logic +1208.6355 K-Theory and Homology +1209.0417 Quantum Algebra +1209.0484 Algebraic Geometry +1209.0515 Algebraic Topology +1209.2653 Geometric Topology +1209.3955 Algebraic Topology +1209.6122 Algebraic Topology +1209.6381 Algebraic Topology +1210.0306 Computational Geometry +1210.1635 Metric Geometry +1210.2561 Algebraic Topology +1210.3718 Computer Vision and Pattern Recognition +1210.3730 Algebraic Topology +1210.4411 Group Theory +1210.4420 Group Theory +1210.7627 Geometric Topology +1210.7947 Symplectic Geometry +1211.0078 Group Theory +1211.2951 Geometric Topology +1211.4271 Group Theory +1211.5668 Experiment +1211.6020 Geometric Topology +1211.6378 Group Theory +1211.6579 Geometric Topology +1212.1199 Geometric Topology +1212.2553 Geometric Topology +1212.6742 Dynamical Systems +1212.6777 Algebraic Topology +1301.0206 Geometric Topology +1301.0864 Algebraic Topology +1301.2102 Numerical Analysis +1301.2650 Numerical Analysis +1301.2851 Computational Physics +1301.3001 Geometric Topology +1301.5869 Algebraic Topology +1301.6233 Geometric Topology +1302.0612 Geometric Topology +1302.1252 Strongly Correlated Electrons +1302.1465 Category Theory +1302.3138 Statistical Mechanics +1302.3729 Quantum Algebra +1302.3814 Analysis of PDEs +1302.3908 Group Theory +1302.4238 Geometric Topology +1302.4550 Logic +1302.5469 Geometric Topology +1302.5602 Mesoscale and Nanoscale Physics +1302.5651 Geometric Topology +1303.1146 Algebraic Topology +1303.5135 Geometric Topology +1303.5591 +1304.0987 Soft Condensed Matter +1304.1159 Phenomenology +1304.1426 Combinatorics +1304.3509 Geometric Topology +1304.3588 Algebraic Topology +1304.3730 Geometric Topology +1304.3884 Geometric Topology +1304.4655 Geometric Topology +1304.7296 Combinatorics +1305.1673 Algebraic Topology +1305.2874 Algebraic Geometry +1305.3720 Soft Condensed Matter +1305.4417 Statistical Mechanics +1307.0471 +1307.1141 Theory +1307.1919 Geometric Topology +1307.2784 Materials Science +1307.3194 Materials Science +1307.4732 Molecular Networks +1307.4973 Optimization and Control +1307.5062 General Physics +1307.6440 Combinatorics +1307.7404 Differential Geometry +1308.1362 Numerical Analysis +1308.2912 Networking and Internet Architecture +1309.4982 Symplectic Geometry +1309.5162 Cosmology and Nongalactic Astrophysics +1309.5225 Soft Condensed Matter +1309.5905 Algebraic Geometry +1309.7709 Instrumentation and Methods for Astrophysics +1309.7963 Computational Physics +1310.1269 Differential Geometry +1310.2583 Rings and Algebras +1310.6777 +1310.7271 Combinatorics +1310.8364 Networking and Internet Architecture +1310.8620 Dynamical Systems +1311.0116 Optimization and Control +1311.0714 Cosmology and Nongalactic Astrophysics +1311.1612 Combinatorics +1311.2081 Number Theory +1311.4541 Strongly Correlated Electrons +1311.5144 Optimization and Control +1312.1204 Phenomenology +1312.2602 Strongly Correlated Electrons +1312.2896 Functional Analysis +1312.4198 +1312.4225 Materials Science +1312.4648 +1312.4668 Dynamical Systems +1312.5145 Statistical Mechanics +1312.6853 High Energy Astrophysical Phenomena +1312.6957 Quantum Gases +1312.7008 Classical Physics +1312.7030 Chaotic Dynamics +1401.1087 Theory +1401.1846 Strongly Correlated Electrons +1401.1858 +1401.2529 Computer Vision and Pattern Recognition +1401.2837 Soft Condensed Matter +1401.3278 Phenomenology +1401.3667 Information Theory +1401.4341 Disordered Systems and Neural Networks +1401.4350 Computational Physics +1401.4801 Phenomenology +1401.5266 Logic in Computer Science +1401.8125 Accelerator Physics +1401.8222 Quantum Gases +1402.0052 Probability +1402.0115 Phenomenology +1402.1389 Machine Learning +1402.1412 Machine Learning +1402.1774 Information Theory +1402.3842 Combinatorics +1402.4059 Differential Geometry +1402.4479 Astrophysics of Galaxies +1402.4805 Quantum Gases +1402.5792 Computer Vision and Pattern Recognition +1402.6362 Quantum Gases +1402.6776 Soft Condensed Matter +1402.7207 Metric Geometry +1403.0130 Mesoscale and Nanoscale Physics +1403.0231 Solar and Stellar Astrophysics +1403.1424 +1403.1547 Mesoscale and Nanoscale Physics +1403.2169 Combinatorics +1403.3244 Mesoscale and Nanoscale Physics +1403.4040 Statistical Mechanics +1403.4107 Phenomenology +1403.4543 Theory +1403.4927 Cosmology and Nongalactic Astrophysics +1403.6129 Disordered Systems and Neural Networks +1403.6592 Instrumentation and Methods for Astrophysics +1403.6810 Phenomenology +1403.6819 Strongly Correlated Electrons +1403.7184 Statistical Mechanics +1403.7549 +1403.7710 Fluid Dynamics +1403.7714 Robotics +1403.7992 Astrophysics of Galaxies +1404.0604 +1404.0610 +1404.0939 High Energy Astrophysical Phenomena +1404.1354 Combinatorics +1404.1527 Theory +1404.1965 Statistical Mechanics +1404.2589 Cosmology and Nongalactic Astrophysics +1404.2828 Statistical Mechanics +1404.3193 Superconductivity +1404.3198 Phenomenology +1404.3716 Phenomenology +1404.3770 Mesoscale and Nanoscale Physics +1404.4857 Soft Condensed Matter +1404.5348 +1404.5353 Quantum Gases +1404.5583 Quantum Gases +1404.5951 Phenomenology +1404.6226 +1404.6427 +1404.7070 +1404.7488 Phenomenology +1405.0784 Materials Science +1405.0966 Quantum Gases +1405.1002 +1405.1344 Quantum Gases +1405.1649 Distributed, Parallel, and Cluster Computing +1405.1709 Mesoscale and Nanoscale Physics +1405.2862 Optics +1405.4684 Theory +1405.4793 Mesoscale and Nanoscale Physics +1405.4883 +1405.7070 Astrophysics of Galaxies +1405.7948 Soft Condensed Matter +1406.0019 Theory +1406.0106 Mesoscale and Nanoscale Physics +1406.0634 +1406.0638 Lattice +1406.0945 Chaotic Dynamics +1406.1382 Strongly Correlated Electrons +1406.1655 Machine Learning +1406.2306 Statistical Mechanics +1406.2353 +1406.2590 Formal Languages and Automata Theory +1406.2694 Superconductivity +1406.2700 Strongly Correlated Electrons +1406.2961 Phenomenology +1406.3525 Mesoscale and Nanoscale Physics +1406.3574 Astrophysics of Galaxies +1406.3720 Optimization and Control +1406.4107 Astrophysics of Galaxies +1406.4227 +1406.4482 +1406.4630 Phenomenology +1406.4638 Solar and Stellar Astrophysics +1406.4678 Phenomenology +1406.5047 Phenomenology +1406.5610 +1406.5643 Materials Science +1406.6999 Strongly Correlated Electrons +1406.7059 +1406.7135 +1406.7210 Systems and Control +1407.0174 Phenomenology +1407.0281 Phenomenology +1407.0370 Astrophysics of Galaxies +1407.0608 Experiment +1407.1085 Theory +1407.1796 Experiment +1407.1929 Mesoscale and Nanoscale Physics +1407.2243 High Energy Astrophysical Phenomena +1407.2608 Instrumentation and Methods for Astrophysics +1407.2687 Lattice +1407.2948 Theory +1407.3171 Solar and Stellar Astrophysics +1407.3648 Astrophysics of Galaxies +1407.3787 Astrophysics of Galaxies +1407.3888 Physics Education +1407.4059 Lattice +1407.4473 Astrophysics of Galaxies +1407.4642 +1407.4763 Dynamical Systems +1407.4992 Digital Libraries +1407.5188 Disordered Systems and Neural Networks +1407.5467 Soft Condensed Matter +1407.6602 Cosmology and Nongalactic Astrophysics +1407.6611 Solar and Stellar Astrophysics +1407.6632 Mesoscale and Nanoscale Physics +1407.6709 Solar and Stellar Astrophysics +1407.6944 High Energy Astrophysical Phenomena +1407.7477 Solar and Stellar Astrophysics +1407.7503 Phenomenology +1407.7981 Mesoscale and Nanoscale Physics +1407.7987 Astrophysics of Galaxies +1407.8050 +1407.8212 Solar and Stellar Astrophysics +1407.8429 Astrophysics of Galaxies +1408.0783 +1408.1315 Phenomenology +1408.1773 +1408.1825 Solar and Stellar Astrophysics +1408.2079 Instrumentation and Methods for Astrophysics +1408.2443 Solar and Stellar Astrophysics +1408.2843 Phenomenology +1408.3141 Theory +1408.3849 Mesoscale and Nanoscale Physics +1408.3926 Solar and Stellar Astrophysics +1408.3938 Experiment +1408.3987 Solar and Stellar Astrophysics +1408.4038 Solar and Stellar Astrophysics +1408.4558 Astrophysics of Galaxies +1408.5085 Differential Geometry +1408.5307 Differential Geometry +1408.5793 Metric Geometry +1408.6098 Solar and Stellar Astrophysics +1408.6227 High Energy Astrophysical Phenomena +1408.6400 +1408.6508 Superconductivity +1409.0006 High Energy Astrophysical Phenomena +1409.0339 Fluid Dynamics +1409.0572 Solar and Stellar Astrophysics +1409.1786 Computer Science and Game Theory +1409.2936 Optimization and Control +1409.3015 Solar and Stellar Astrophysics +1409.3038 Astrophysics of Galaxies +1409.3388 Mesoscale and Nanoscale Physics +1409.3988 Mesoscale and Nanoscale Physics +1409.4185 Disordered Systems and Neural Networks +1409.4884 +1409.5289 Mesoscale and Nanoscale Physics +1409.5371 Theory +1409.5710 Numerical Analysis +1409.6415 Computers and Society +1409.6531 Disordered Systems and Neural Networks +1409.7311 Databases +1409.8154 Representation Theory +1409.8161 Solar and Stellar Astrophysics +1409.8211 Learning +1409.8274 Numerical Analysis +1409.8275 Neurons and Cognition +1409.8276 Learning +1409.8278 Neurons and Cognition +1409.8280 Human-Computer Interaction +1409.8306 Theory +1409.8309 Learning +1409.8310 Information Theory +1409.8323 Neurons and Cognition +1409.8325 Information Theory +1409.8327 Systems and Control +1409.8328 Materials Science +1409.8333 Classical Analysis and ODEs +1409.8334 Operator Algebras +1409.8341 Theory +1409.8349 Earth and Planetary Astrophysics +1409.8355 Astrophysics of Galaxies +1409.8357 Mesoscale and Nanoscale Physics +1409.8361 History and Overview +1409.8363 Statistics Theory +1409.8364 +1409.8369 Algebraic Geometry +1409.8372 Computers and Society +1409.8373 Optics +1409.8374 Differential Geometry +1409.8377 Quantum Gases +1409.8380 Functional Analysis +1409.8381 Differential Geometry +1409.8382 Analysis of PDEs +1409.8389 Data Structures and Algorithms +1409.8395 Mesoscale and Nanoscale Physics +1409.8397 Soft Condensed Matter +1409.8398 Materials Science +1409.8407 Chaotic Dynamics +1409.8408 Strongly Correlated Electrons +1409.8415 Methodology +1409.8416 Analysis of PDEs +1409.8422 Materials Science +1409.8423 Number Theory +1409.8424 Combinatorics +1409.8426 Atmospheric and Oceanic Physics +1409.8428 Learning +1409.8439 Adaptation and Self-Organizing Systems +1409.8449 Quantum Gases +1409.8451 Phenomenology +1409.8452 Dynamical Systems +1409.8453 Numerical Analysis +1409.8457 Probability +1409.8458 Cosmology and Nongalactic Astrophysics +1409.8464 Computational Complexity +1409.8468 Solar and Stellar Astrophysics +1409.8469 Analysis of PDEs +1409.8470 Artificial Intelligence +1409.8471 Analysis of PDEs +1409.8473 Number Theory +1409.8475 Analysis of PDEs +1409.8476 Analysis of PDEs +1409.8477 Optimization and Control +1409.8479 Analysis of PDEs +1409.8481 Physics and Society +1409.8484 Neural and Evolutionary Computing +1409.8485 Physics and Society +1409.8486 Cryptography and Security +1409.8489 Cryptography and Security +1409.8490 Cryptography and Security +1409.8492 Solar and Stellar Astrophysics +1409.8493 Networking and Internet Architecture +1409.8494 Spectral Theory +1409.8498 Computer Science and Game Theory +1409.8499 Physics Education +1409.8507 Differential Geometry +1409.8508 Lattice +1409.8510 Number Theory +1409.8514 Number Theory +1409.8515 Fluid Dynamics +1409.8516 Instrumentation and Methods for Astrophysics +1409.8517 Instrumentation and Methods for Astrophysics +1409.8518 Information Retrieval +1409.8519 Numerical Analysis +1409.8524 Computational Complexity +1409.8526 Phenomenology +1409.8527 Classical Analysis and ODEs +1409.8528 General Finance +1409.8529 Populations and Evolution +1409.8539 Experiment +1409.8542 Statistics Theory +1409.8543 Plasma Physics +1409.8546 Phenomenology +1409.8549 Algebraic Geometry +1409.8552 +1409.8555 +1409.8556 Analysis of PDEs +1409.8557 Statistics Theory +1409.8558 Computation and Language +1409.8559 Mesoscale and Nanoscale Physics +1409.8561 +1409.8571 Probability +1409.8572 Information Retrieval +1409.8578 Social and Information Networks +1409.8581 Computation and Language +1409.8583 Numerical Analysis +1409.8585 Systems and Control +1409.8587 Geometric Topology +1409.8591 Phenomenology +1409.8598 Solar and Stellar Astrophysics +1409.8599 Logic +1409.8600 Phenomenology +1409.8602 Performance +1409.8604 Logic +1409.8605 Probability +1409.8606 Optimization and Control +1409.8607 Geometric Topology +1409.8609 Statistical Finance +1409.8610 +1409.8614 Number Theory +1409.8621 Statistics Theory +1409.8624 Information Theory +1409.8626 Statistical Mechanics +1409.8627 Statistics Theory +1409.8628 Solar and Stellar Astrophysics +1409.8629 Number Theory +1409.8630 Machine Learning +1409.8633 Networking and Internet Architecture +1409.8634 Theory +1409.8635 Logic +1409.8644 Biological Physics +1409.8648 Analysis of PDEs +1409.8658 Statistical Mechanics +1409.8660 Differential Geometry +1409.8661 Cosmology and Nongalactic Astrophysics +1409.8662 Materials Science +1409.8665 Combinatorics +1409.8675 Strongly Correlated Electrons +gr-qc/9809005 +math/0003189 Geometric Topology +math/0005085 Geometric Topology +math/0008048 Geometric Topology +math/0008099 Geometric Topology +math/0008158 Geometric Topology +math/0008166 Geometric Topology +math/0008242 Geometric Topology +math/0010247 Geometric Topology +math/0010310 Geometric Topology +math/0011123 Algebraic Topology +math/0012006 Group Theory +math/0012056 Geometric Topology +math/0012216 Geometric Topology +math/0012235 Geometric Topology +math/0101130 Group Theory +math/0102102 Geometric Topology +math/0103148 Geometric Topology +math/0103177 Algebraic Topology +math/0103190 Quantum Algebra +math/0104109 Symplectic Geometry +math/0104240 Algebraic Topology +math/0105079 Algebraic Topology +math/0105190 Geometric Topology +math/0105205 Group Theory +math/0106163 Geometric Topology +math/0106183 Algebraic Topology +math/0106184 Algebraic Topology +math/0106200 Geometric Topology +math/0106207 Geometric Topology +math/0107141 Geometric Topology +math/0108051 Geometric Topology +math/0108075 Symplectic Geometry +math/0109041 Algebraic Topology +math/0109105 Algebraic Topology +math/0110001 Geometric Topology +math/0110061 Geometric Topology +math/0110179 Geometric Topology +math/0110230 Algebraic Topology +math/0110285 Symplectic Geometry +math/0111057 Geometric Topology +math/0111119 Geometric Topology +math/0111186 Geometric Topology +math/0111239 Group Theory +math/0112316 Differential Geometry +math/0201043 Quantum Algebra +math/0201116 Algebraic Topology +math/0201134 Algebraic Topology +math/0201135 Differential Geometry +math/0201287 Dynamical Systems +math/0202024 Geometric Topology +math/0202065 Geometric Topology +math/0202195 Geometric Topology +math/0202260 Algebraic Topology +math/0202261 Geometric Topology +math/0202262 Algebraic Topology +math/0203042 Algebraic Topology +math/0203097 Differential Geometry +math/0203131 Geometric Topology +math/0203283 Differential Geometry +math/0204056 Geometric Topology +math/0204238 Geometric Topology +math/0205036 Geometric Topology +math/0205100 Symplectic Geometry +math/0205125 Geometric Topology +math/0205193 Geometric Topology +math/0205231 Geometric Topology +math/0205250 Geometric Topology +math/0205272 Algebraic Geometry +math/0205273 Algebraic Topology +math/0206066 Geometric Topology +math/0206072 Geometric Topology +math/0206120 Geometric Topology +math/0206131 Geometric Topology +math/0206190 Geometric Topology +math/0206258 Geometric Topology +math/0206291 Differential Geometry +math/0206303 Geometric Topology +math/0206307 Quantum Algebra +math/0207042 Geometric Topology +math/0207060 Geometric Topology +math/0207120 Group Theory +math/0207131 Geometric Topology +math/0207174 Algebraic Topology +math/0207213 Algebraic Topology +math/0207290 Geometric Topology +math/0208039 Geometric Topology +math/0208148 General Topology +math/0208169 Quantum Algebra +math/0209003 Algebraic Topology +math/0209027 Geometric Topology +math/0209073 Quantum Algebra +math/0209077 Geometric Topology +math/0209118 Geometric Topology +math/0209131 Quantum Algebra +math/0209153 Geometric Topology +math/0209185 Group Theory +math/0209342 Algebraic Topology +math/0210237 Quantum Algebra +math/0210315 Geometric Topology +math/0210373 Algebraic Topology +math/0210419 Geometric Topology +math/0211019 Geometric Topology +math/0211085 Algebraic Topology +math/0211130 Group Theory +math/0211158 Algebraic Topology +math/0211392 Geometric Topology +math/0212021 Quantum Algebra +math/0212054 Algebraic Topology +math/0212128 Algebraic Topology +math/0212299 Classical Analysis and ODEs +math/0301159 Algebraic Topology +math/0301318 Geometric Topology +math/0301356 Geometric Topology +math/0301371 Geometric Topology +math/0302065 Differential Geometry +math/0302143 Geometric Topology +math/0302225 Geometric Topology +math/0302254 Dynamical Systems +math/0302318 Geometric Topology +math/0303071 Probability +math/0303081 Geometric Topology +math/0303108 Geometric Topology +math/0303217 Group Theory +math/0304076 Geometric Topology +math/0304375 Quantum Algebra +math/0305290 Geometric Topology +math/0305402 Geometric Topology +math/0306053 Geometric Topology +math/0306070 Geometric Topology +math/0306232 Geometric Topology +math/0306271 Algebraic Topology +math/0306345 Geometric Topology +math/0307182 Algebraic Topology +math/0307340 Geometric Topology +math/0307341 Symplectic Geometry +math/0307396 Geometric Topology +math/0308115 Symplectic Geometry +math/0308171 Group Theory +math/0308274 Geometric Topology +math/0309001 Geometric Topology +math/0309133 Group Theory +math/0310190 Algebraic Topology +math/0310471 Algebraic Topology +math/0310483 Algebraic Topology +math/0311009 Geometric Topology +math/0311090 Symplectic Geometry +math/0311167 Algebraic Topology +math/0311216 Algebraic Topology +math/0311295 K-Theory and Homology +math/0311305 Algebraic Geometry +math/0312091 Symplectic Geometry +math/0312220 Algebraic Topology +math/0401035 Geometric Topology +math/0401251 Geometric Topology +math/0402102 Quantum Algebra +math/0402121 Geometric Topology +math/0402166 Geometric Topology +math/0402226 Algebraic Topology +math/0402334 Algebraic Topology +math/0402457 Geometric Topology +math/0403152 Category Theory +math/0403451 Algebraic Topology +math/0403548 Number Theory +math/0404236 Geometric Topology +math/0404264 Geometric Topology +math/0404388 Group Theory +math/0404411 Algebraic Topology +math/0404440 Group Theory +math/0405314 Geometric Topology +math/0405329 Symplectic Geometry +math/0405353 Geometric Topology +math/0405391 Symplectic Geometry +math/0405403 Geometric Topology +math/0405421 Group Theory +math/0406072 Geometric Topology +math/0406081 Algebraic Topology +math/0406377 Geometric Topology +math/0406402 Geometric Topology +math/0407025 Geometric Topology +math/0407077 Algebraic Topology +math/0407211 Geometric Topology +math/0407299 Quantum Algebra +math/0407420 Geometric Topology +math/0408003 Geometric Topology +math/0408156 Geometric Topology +math/0408357 Quantum Algebra +math/0408375 Geometric Topology +math/0409067 Metric Geometry +math/0409086 Geometric Topology +math/0409087 Group Theory +math/0409202 Quantum Algebra +math/0409278 Geometric Topology +math/0409332 Geometric Topology +math/0409350 Algebraic Topology +math/0409414 Quantum Algebra +math/0409574 Algebraic Topology +math/0410059 Symplectic Geometry +math/0410363 Algebraic Topology +math/0410367 Algebraic Topology +math/0410369 Geometric Topology +math/0410370 Geometric Topology +math/0410374 Algebraic Topology +math/0410503 Algebraic Topology +math/0410539 Group Theory +math/0410554 Algebraic Geometry +math/0410555 Category Theory +math/0411053 Geometric Topology +math/0411065 Geometric Topology +math/0411205 Geometric Topology +math/0411208 Symplectic Geometry +math/0411335 Geometric Topology +math/0411351 Algebraic Topology +math/0411365 Geometric Topology +math/0411384 Geometric Topology +math/0411409 Algebraic Topology +math/0411508 Quantum Algebra +math/0412057 Algebraic Topology +math/0412074 Geometric Topology +math/0412207 Algebraic Topology +math/0412248 Algebraic Topology +math/0412264 Combinatorics +math/0412331 Geometric Topology +math/0501053 Group Theory +math/0501075 Group Theory +math/0501148 Geometric Topology +math/0501354 Geometric Topology +math/0501482 General Topology +math/0502195 Algebraic Topology +math/0502293 Geometric Topology +math/0502437 Geometric Topology +math/0503080 Geometric Topology +math/0503152 Geometric Topology +math/0503265 Geometric Topology +math/0503266 Quantum Algebra +math/0503605 Algebraic Topology +math/0504152 Algebraic Topology +math/0504404 Geometric Topology +math/0505030 Symplectic Geometry +math/0505119 Quantum Algebra +math/0505322 Geometric Topology +math/0505394 Geometric Topology +math/0507036 Algebraic Topology +math/0507078 Geometric Topology +math/0507147 Algebraic Topology +math/0507294 Geometric Topology +math/0507602 Geometric Topology +math/0508172 Group Theory +math/0508196 Rings and Algebras +math/0508649 Geometric Topology +math/0510224 Geometric Topology +math/0510378 Algebraic Topology +math/0511133 Geometric Topology +math/0511212 Geometric Topology +math/0511532 Geometric Topology +math/0511577 Algebraic Topology +math/0511615 Group Theory +math/0511645 Algebraic Topology +math/0512165 Category Theory +math/0512277 Geometric Topology +math/0512286 Geometric Topology +math/0512343 Group Theory +math/0601759 Geometric Topology +math/0602108 Algebraic Topology +math/0602539 Algebraic Topology +math/0602581 Geometric Topology +math/0602653 Differential Geometry +math/0603307 Geometric Topology +math/0603577 Group Theory +math/0603698 K-Theory and Homology +math/0604476 Geometric Topology +math/0604580 Symplectic Geometry +math/0605476 Geometric Topology +math/0605554 Algebraic Topology +math/0606231 Geometric Topology +math/0606336 Geometric Topology +math/0606630 Geometric Topology +math/0606688 Operator Algebras +math/0607244 Geometric Topology +math/0607265 Geometric Topology +math/0607608 Geometric Topology +math/0608066 Dynamical Systems +math/0608233 Geometric Topology +math/0608460 Algebraic Topology +math/0608527 Geometric Topology +math/0609055 Geometric Topology +math/0609466 Geometric Topology +math/0609824 Algebraic Geometry +math/0609832 Quantum Algebra +math/0610035 Algebraic Topology +math/0610391 Metric Geometry +math/0610650 Geometric Topology +math/0610761 Algebraic Topology +math/0610869 Geometric Topology +math/0611149 Geometric Topology +math/0611504 Geometric Topology +math/0611560 Algebraic Topology +math/0611650 Algebraic Topology +math/0611679 Combinatorics +math/0611848 Symplectic Geometry +math/0612282 Geometric Topology +math/0612322 Geometric Topology +math/0612716 Dynamical Systems +math/0701127 Geometric Topology +math/0701293 Algebraic Topology +math/0701396 Geometric Topology +math/0701493 Group Theory +math/0701544 Group Theory +math/0701617 Symplectic Geometry +math/0701846 Geometric Topology +math/0701930 Group Theory +math/0702074 Geometric Topology +math/0702127 Geometric Topology +math/0702163 Algebraic Topology +math/0702514 Geometric Topology +math/0702608 Geometric Topology +math/0702749 Group Theory +math/0702826 Algebraic Topology +math/0703347 Geometric Topology +math/0703376 K-Theory and Homology +math/0703463 K-Theory and Homology +math/0703608 Geometric Topology +math/9807011 Geometric Topology +math/9811029 Geometric Topology +math/9901085 Geometric Topology +math/9910139 Geometric Topology +math/9911063 Geometric Topology +math/9911172 Geometric Topology +math/9912006 Geometric Topology +0705.4246 Group Theory +0802.3839 Group Theory +0805.2348 Group Theory +0902.1954 Category Theory +1001.0699 Differential Geometry +1001.1267 Differential Geometry +1001.3212 Differential Geometry +1005.3421 +1006.4470 Differential Geometry +1008.3735 Classical Analysis and ODEs +1101.0449 Probability +1102.0272 Populations and Evolution +1109.2261 Materials Science +1109.2262 Materials Science +1109.2263 Materials Science +1109.2851 Materials Science +1109.4369 Soft Condensed Matter +1111.7257 Cosmology and Nongalactic Astrophysics +1202.0272 Differential Geometry +1205.5274 Cosmology and Nongalactic Astrophysics +1206.1885 +1206.1892 Commutative Algebra +1206.6169 +1207.2780 Solar and Stellar Astrophysics +1207.5216 Information Theory +1208.4516 Data Structures and Algorithms +1209.3822 Materials Science +1209.6440 Metric Geometry +1210.3076 Materials Science +1211.2046 Mesoscale and Nanoscale Physics +1211.6514 Commutative Algebra +1212.0844 Statistical Mechanics +1212.0981 Differential Geometry +1212.2364 Algebraic Geometry +1301.2498 Systems and Control +1301.4627 Analysis of PDEs +1301.5720 +1301.6579 Probability +1301.7507 Analysis of PDEs +1302.3780 Analysis of PDEs +1304.5466 Combinatorics +1305.0256 Theory +1305.2283 Computational Geometry +1305.5470 Differential Geometry +1305.6225 +1306.0654 Computational Physics +1306.2552 Data Structures and Algorithms +1306.2842 Analysis of PDEs +1306.2897 Phenomenology +1306.4676 Phenomenology +1306.5032 +1306.5297 Populations and Evolution +1306.6567 Earth and Planetary Astrophysics +1307.0716 +1307.0912 Physics Education +1307.1725 Cosmology and Nongalactic Astrophysics +1307.2710 Differential Geometry +1307.4248 Probability +1307.4945 Solar and Stellar Astrophysics +1307.7159 Information Theory +1307.7384 Mesoscale and Nanoscale Physics +1307.7894 Phenomenology +1308.0023 Phenomenology +1308.4238 Differential Geometry +1308.4310 Statistical Mechanics +1308.4709 Rings and Algebras +1308.5287 Strongly Correlated Electrons +1308.5750 Rings and Algebras +1308.6254 Atomic Physics +1309.4547 +1309.4725 +1310.0229 Databases +1310.1618 Experiment +1310.1868 Probability +1310.3876 Soft Condensed Matter +1310.3984 Statistical Finance +1310.4556 Materials Science +1310.5307 Numerical Analysis +1310.6537 +1311.0560 Number Theory +1311.0657 Statistical Finance +1311.2673 +1311.4082 Computer Vision and Pattern Recognition +1311.4529 Databases +1311.5819 Probability +1311.7290 Cosmology and Nongalactic Astrophysics +1312.0369 Theory +1312.0674 Biological Physics +1312.0718 Information Theory +1312.3105 +1312.3879 Mesoscale and Nanoscale Physics +1312.4975 Cosmology and Nongalactic Astrophysics +1312.5374 Theory +1312.6733 Phenomenology +1312.7776 Mesoscale and Nanoscale Physics +1401.1659 Atomic Physics +1401.3968 Phenomenology +1401.4547 +1401.5090 Soft Condensed Matter +1401.6706 +1401.8186 Phenomenology +1402.0398 Number Theory +1402.1692 Functional Analysis +1402.1744 Statistical Mechanics +1402.2094 Statistics Theory +1402.2347 Analysis of PDEs +1402.3599 Cosmology and Nongalactic Astrophysics +1402.3709 Populations and Evolution +1402.3726 Differential Geometry +1402.4138 +1402.4655 Soft Condensed Matter +1402.5808 Representation Theory +1403.0051 Statistical Mechanics +1403.0305 Differential Geometry +1403.0567 Solar and Stellar Astrophysics +1403.3759 Information Theory +1403.4580 +1403.5376 Biomolecules +1403.5606 Combinatorics +1403.5628 Social and Information Networks +1403.5762 +1403.5805 Distributed, Parallel, and Cluster Computing +1403.5824 Information Theory +1403.5921 Algebraic Geometry +1403.5948 Numerical Analysis +1403.6154 Combinatorics +1403.6213 Cryptography and Security +1403.6305 Software Engineering +1403.6375 Rings and Algebras +1403.6428 Emerging Technologies +1403.6476 Solar and Stellar Astrophysics +1403.6482 Chemical Physics +1403.6484 Probability +1403.6485 Mesoscale and Nanoscale Physics +1403.6487 Symbolic Computation +1403.6490 Mesoscale and Nanoscale Physics +1403.6496 Methodology +1403.6498 Representation Theory +1403.6504 Geometric Topology +1403.6507 Algebraic Topology +1403.6510 Operator Algebras +1403.6515 Materials Science +1403.6517 Probability +1403.6518 Computational Complexity +1403.6519 Numerical Analysis +1403.6520 Chemical Physics +1403.6524 Phenomenology +1403.6531 Portfolio Management +1403.6532 Statistics Theory +1403.6535 Phenomenology +1403.6536 Rings and Algebras +1403.6539 Rings and Algebras +1403.6548 Atomic Physics +1403.6549 Commutative Algebra +1403.6554 Classical Analysis and ODEs +1403.6555 Information Theory +1403.6556 Phenomenology +1403.6561 Information Theory +1403.6571 Analysis of PDEs +1403.6574 Plasma Physics +1403.6579 Numerical Analysis +1403.6580 Numerical Analysis +1403.6581 Probability +1403.6584 Atomic Physics +1403.6587 Computational Physics +1403.6588 Quantum Gases +1403.6591 Cosmology and Nongalactic Astrophysics +1403.6594 Differential Geometry +1403.6595 Analysis of PDEs +1403.6598 Dynamical Systems +1403.6603 Solar and Stellar Astrophysics +1403.6611 Logic in Computer Science +1403.6614 Computational Geometry +1403.6616 Algebraic Topology +1403.6617 Phenomenology +1403.6619 Numerical Analysis +1403.6620 Differential Geometry +1403.6626 Cryptography and Security +1403.6632 Hardware Architecture +1403.6634 Plasma Physics +1403.6635 +1403.6636 Computation and Language +1403.6638 History and Philosophy of Physics +1403.6640 Algebraic Geometry +1403.6641 Optimization and Control +1403.6643 Mesoscale and Nanoscale Physics +1403.6644 Networking and Internet Architecture +1403.6648 Materials Science +1403.6651 Theory +1403.6656 Instrumentation and Methods for Astrophysics +1403.6658 Multimedia +1403.6659 Instrumentation and Detectors +1403.6661 Information Theory +1403.6663 Biological Physics +1403.6668 Materials Science +1403.6669 Human-Computer Interaction +1403.6671 Statistical Mechanics +1403.6677 +1403.6678 Software Engineering +1403.6683 Computational Physics +1403.6684 Optics +1403.6691 Representation Theory +1403.6692 Strongly Correlated Electrons +1403.6693 Number Theory +1403.6695 Phenomenology +1403.6696 Numerical Analysis +1403.6697 Networking and Internet Architecture +1403.6701 +1403.6702 Molecular Networks +1403.6706 Machine Learning +1403.6707 +1403.6709 Analysis of PDEs +1403.6713 Computer Science and Game Theory +1403.6717 +1403.6719 Symbolic Computation +1403.6720 Instrumentation and Detectors +1403.6724 Operator Algebras +1403.6732 General Physics +1403.6738 Subcellular Processes +1403.6741 Networking and Internet Architecture +1403.6744 Methodology +1403.6753 Optics +1403.6757 Analysis of PDEs +1403.6758 Social and Information Networks +1403.6761 Earth and Planetary Astrophysics +1403.6774 Computer Vision and Pattern Recognition +1403.6776 +1403.6782 Statistics Theory +1403.6785 Analysis of PDEs +1403.6789 Algebraic Geometry +1403.6790 Dynamical Systems +1403.6794 Information Retrieval +1403.6797 Rings and Algebras +1403.6800 Geometric Topology +1403.6802 Optimization and Control +1403.6804 Methodology +1403.6811 Probability +1403.6814 Representation Theory +cond-mat/0405315 Strongly Correlated Electrons +0707.3981 +0807.1425 +0807.1876 Geometric Topology +0809.0205 Representation Theory +0809.0604 Classical Analysis and ODEs +0810.5583 Physics and Society +0812.4158 Group Theory +0901.3010 Representation Theory +0901.4746 Representation Theory +0912.3366 Functional Analysis +1002.4076 Classical Analysis and ODEs +1003.4393 Number Theory +1003.4491 Classical Analysis and ODEs +1004.0520 Optics +1006.5182 +1008.0707 Differential Geometry +1008.2484 Earth and Planetary Astrophysics +1010.1777 Mesoscale and Nanoscale Physics +1010.2001 Representation Theory +1011.1633 Group Theory +1012.1246 Earth and Planetary Astrophysics +1012.2679 Algebraic Geometry +1012.4152 Combinatorics +1101.2261 +1105.1605 Metric Geometry +1106.4369 General Physics +1106.4580 Complex Variables +1108.2184 Operator Algebras +1108.4132 Dynamical Systems +1109.0887 Machine Learning +1110.6898 Number Theory +1112.1929 Combinatorics +1201.0337 +1201.0370 Astrophysics of Galaxies +1201.1374 Algebraic Geometry +1201.1375 Methodology +1201.6079 Numerical Analysis +1203.0773 Earth and Planetary Astrophysics +1203.1227 Numerical Analysis +1204.0373 Combinatorics +1204.2066 +1205.0465 +1205.0764 Probability +1205.2143 Differential Geometry +1205.2260 +1205.4441 Probability +1205.5551 Probability +1205.6146 +1206.0448 Metric Geometry +1206.4084 Biomolecules +1207.0024 Representation Theory +1207.0819 Theory +1207.5309 Theory +1207.6813 Functional Analysis +1208.3685 Chaotic Dynamics +1208.3863 Representation Theory +1208.6336 Combinatorics +1209.0563 Cosmology and Nongalactic Astrophysics +1210.0694 Functional Analysis +1210.3456 Applications +1210.5546 Probability +1211.2629 Rings and Algebras +1211.4833 Algebraic Geometry +1212.1810 Earth and Planetary Astrophysics +1212.2683 +1212.5141 Analysis of PDEs +1301.2488 Numerical Analysis +1301.5209 Analysis of PDEs +1301.5442 Rings and Algebras +1301.5891 Numerical Analysis +1301.6127 Data Structures and Algorithms +1301.6532 Networking and Internet Architecture +1301.6637 High Energy Astrophysical Phenomena +1302.1626 Combinatorics +1302.3017 Superconductivity +1302.4206 Mesoscale and Nanoscale Physics +1302.6768 Numerical Analysis +1303.3283 Mesoscale and Nanoscale Physics +1303.6011 Functional Analysis +1304.3162 Data Structures and Algorithms +1304.4035 Probability +1304.7111 Accelerator Physics +1304.7919 Probability +1305.2044 Group Theory +1305.3363 +1305.4922 Geometric Topology +1306.1171 Quantum Gases +1306.1437 Functional Analysis +1306.3017 Probability +1306.4776 Differential Geometry +1306.4835 Numerical Analysis +1306.4965 Soft Condensed Matter +1306.5036 Symplectic Geometry +1306.5260 Algebraic Geometry +1306.5825 Learning +1307.1424 Data Structures and Algorithms +1307.1488 Cosmology and Nongalactic Astrophysics +1307.2876 Classical Analysis and ODEs +1307.5230 Networking and Internet Architecture +1307.6077 +1308.0404 Mesoscale and Nanoscale Physics +1308.0931 Statistics Theory +1308.2139 Probability +1308.3622 Instrumentation and Detectors +1308.6728 Systems and Control +1309.1451 Functional Analysis +1309.2348 Programming Languages +1309.3436 Subcellular Processes +1309.6873 Strongly Correlated Electrons +1309.7104 Commutative Algebra +1309.7946 Phenomenology +1310.0156 Earth and Planetary Astrophysics +1310.1844 Optimization and Control +1310.3239 Atomic Physics +1310.3426 Mesoscale and Nanoscale Physics +1310.4125 +1310.4275 Strongly Correlated Electrons +1310.5102 Cosmology and Nongalactic Astrophysics +1310.5291 +1310.5525 Group Theory +1310.6528 Probability +1310.7198 Physics and Society +1310.7529 Machine Learning +1310.8034 Phenomenology +1310.8069 Mesoscale and Nanoscale Physics +1310.8409 +1311.1032 Differential Geometry +1311.2619 +1311.3880 Dynamical Systems +1311.4414 Optics +1311.5968 Phenomenology +1311.6175 Group Theory +1311.6448 Statistical Mechanics +1311.6599 Lattice +1311.6683 Probability +1311.7293 Instrumentation and Detectors +1312.0227 Strongly Correlated Electrons +1312.0619 Strongly Correlated Electrons +1312.2402 Representation Theory +1312.3143 High Energy Astrophysical Phenomena +1312.4248 Analysis of PDEs +1312.4368 High Energy Astrophysical Phenomena +1312.5698 Combinatorics +1312.6236 Classical Analysis and ODEs +1312.6732 Strongly Correlated Electrons +1312.6842 Biological Physics +1401.0053 History and Overview +1401.0060 Differential Geometry +1401.0899 +1401.1085 Computational Geometry +1401.2065 Data Structures and Algorithms +1401.2948 Mesoscale and Nanoscale Physics +1401.3064 Algebraic Geometry +1401.4874 Disordered Systems and Neural Networks +1401.5182 Numerical Analysis +1401.6393 Computer Vision and Pattern Recognition +1401.7011 Mesoscale and Nanoscale Physics +1401.7269 Statistical Mechanics +1401.7433 Instrumentation and Methods for Astrophysics +1401.8092 Computer Vision and Pattern Recognition +1402.0756 Cosmology and Nongalactic Astrophysics +1402.1275 Phenomenology +1402.2252 +1402.2503 Strongly Correlated Electrons +1402.2840 Logic in Computer Science +1402.3127 Probability +1402.3621 +1402.3975 +1402.7064 Quantum Gases +1402.7116 Disordered Systems and Neural Networks +1403.0280 Analysis of PDEs +1403.1098 Disordered Systems and Neural Networks +1403.2072 Statistical Mechanics +1403.2082 Statistical Mechanics +1403.2534 Instrumentation and Detectors +1403.3446 Mesoscale and Nanoscale Physics +1403.3889 Biological Physics +1403.4115 Astrophysics of Galaxies +1403.4651 Optics +1403.5188 Instrumentation and Methods for Astrophysics +1403.5608 Materials Science +1403.6230 Formal Languages and Automata Theory +1403.6516 Chemical Physics +1403.6550 Numerical Analysis +1403.7181 Logic in Computer Science +1403.7845 +1404.0603 +1404.1259 Strongly Correlated Electrons +1404.2403 Social and Information Networks +1404.2507 Plasma Physics +1404.4600 Optimization and Control +1404.4671 Algebraic Geometry +1404.5113 Optimization and Control +1404.5260 +1404.5574 +1404.6212 +1404.6393 +1404.6817 Numerical Analysis +1404.6857 Databases +1405.0020 Physics and Society +1405.1004 Optimization and Control +1405.1030 High Energy Astrophysical Phenomena +1405.1265 Classical Analysis and ODEs +1405.1861 Cryptography and Security +1405.2812 Classical Analysis and ODEs +1405.3518 Computation and Language +1405.3832 Superconductivity +1405.4228 Databases +1405.6153 Probability +1405.6668 +1405.6725 Cosmology and Nongalactic Astrophysics +1405.6774 Solar and Stellar Astrophysics +1405.6833 Solar and Stellar Astrophysics +1405.7395 Methodology +1405.7589 Other Condensed Matter +1405.7741 Optimization and Control +1406.0189 Machine Learning +1406.0193 Machine Learning +1406.1585 Chaotic Dynamics +1406.2109 Adaptation and Self-Organizing Systems +1406.3222 Chemical Physics +1406.3263 Dynamical Systems +1406.3321 Dynamical Systems +1406.3742 Statistical Mechanics +1406.3872 Optics +1406.3922 Learning +1406.4061 Solar and Stellar Astrophysics +1406.4242 Superconductivity +1406.4921 Optimization and Control +1406.4927 Phenomenology +1406.5284 Classical Analysis and ODEs +1406.5560 Instrumentation and Detectors +1406.5576 +1406.5577 Probability +1406.5808 Phenomenology +1406.6326 Statistics Theory +1406.6341 Data Structures and Algorithms +1406.7196 Artificial Intelligence +1406.7302 Probability +1406.7305 Optimization and Control +1406.7307 Analysis of PDEs +1406.7309 Metric Geometry +1406.7310 Disordered Systems and Neural Networks +1406.7314 Computation and Language +1406.7317 Combinatorics +1406.7319 Functional Analysis +1406.7323 Materials Science +1406.7326 Number Theory +1406.7338 Graphics +1406.7340 +1406.7347 +1406.7358 Phenomenology +1406.7361 Complex Variables +1406.7362 Machine Learning +1406.7365 Group Theory +1406.7367 Databases +1406.7370 Superconductivity +1406.7371 Databases +1406.7372 Combinatorics +1406.7377 Cryptography and Security +1406.7378 Instrumentation and Methods for Astrophysics +1406.7382 Probability +1406.7386 +1406.7397 History and Overview +1406.7399 Networking and Internet Architecture +1406.7401 History and Overview +1406.7404 Algebraic Geometry +1406.7405 Information Theory +1406.7407 Number Theory +1406.7409 Spectral Theory +1406.7414 Group Theory +1406.7415 Analysis of PDEs +1406.7417 History and Overview +1406.7421 +1406.7423 Distributed, Parallel, and Cluster Computing +1406.7425 Phenomenology +1406.7427 Methodology +1406.7429 Learning +1406.7430 +1406.7434 Methodology +1406.7437 Computers and Society +1406.7438 Social and Information Networks +1406.7444 Computer Vision and Pattern Recognition +1406.7445 Learning +1406.7449 +1406.7452 General Mathematics +1406.7454 General Topology +1406.7456 History and Philosophy of Physics +1406.7458 Numerical Analysis +1406.7461 Commutative Algebra +1406.7462 Numerical Analysis +1406.7464 Algebraic Geometry +1406.7472 Rings and Algebras +1406.7473 Optimization and Control +1406.7474 Molecular Networks +1406.7478 Algebraic Geometry +1406.7483 Computation and Language +1406.7484 Differential Geometry +1406.7486 Information Theory +1406.7492 Logic +1406.7493 Representation Theory +1406.7495 Probability +1406.7497 Programming Languages +1406.7500 +1406.7501 Combinatorics +1406.7505 Strongly Correlated Electrons +1406.7518 Dynamical Systems +1406.7519 Superconductivity +1406.7523 Spectral Theory +1406.7524 Distributed, Parallel, and Cluster Computing +1406.7525 Computer Vision and Pattern Recognition +1406.7526 Statistical Finance +1406.7527 Performance +1406.7530 Analysis of PDEs +1406.7535 Computational Complexity +1406.7536 Astrophysics of Galaxies +1406.7537 Social and Information Networks +1406.7538 Social and Information Networks +1406.7539 Performance +1406.7541 Computers and Society +1406.7545 Analysis of PDEs +1406.7546 Functional Analysis +1406.7547 Social and Information Networks +1406.7548 Materials Science +1406.7549 Social and Information Networks +1406.7550 Social and Information Networks +1406.7551 Social and Information Networks +1406.7552 Combinatorics +1406.7556 Combinatorics +1406.7558 Social and Information Networks +1406.7560 Social and Information Networks +1406.7561 Social and Information Networks +1406.7562 Social and Information Networks +1406.7563 Social and Information Networks +1406.7572 Information Theory +1406.7573 Analysis of PDEs +1406.7574 Representation Theory +1406.7575 Fluid Dynamics +1406.7578 Social and Information Networks +1406.7579 Social and Information Networks +1406.7581 Social and Information Networks +1406.7582 Social and Information Networks +1406.7583 Computer Science and Game Theory +1406.7584 Social and Information Networks +1406.7585 Social and Information Networks +1406.7586 Social and Information Networks +1406.7588 Social and Information Networks +1406.7589 Social and Information Networks +1406.7590 Commutative Algebra +1406.7597 Rings and Algebras +1406.7598 Differential Geometry +1406.7599 Algebraic Geometry +1406.7600 Commutative Algebra +1406.7604 Mathematical Finance +1406.7606 Mathematical Finance +1406.7609 Chemical Physics +1406.7612 Dynamical Systems +1406.7614 Probability +1406.7616 Mesoscale and Nanoscale Physics +1406.7617 Plasma Physics +1406.7619 Materials Science +1406.7620 Information Theory +1406.7627 Solar and Stellar Astrophysics +1406.7638 Machine Learning +1406.7640 High Energy Astrophysical Phenomena +1406.7646 Instrumentation and Methods for Astrophysics +1406.7654 Combinatorics +1406.7655 Optimization and Control +1406.7662 Hardware Architecture +1406.7664 Functional Analysis +1406.7665 Applications +1406.7666 Algebraic Topology +1406.7672 Fluid Dynamics +1406.7675 Analysis of PDEs +1406.7676 Materials Science +1406.7683 Dynamical Systems +1406.7685 Databases +1406.7689 Phenomenology +1406.7691 Methodology +1406.7692 Soft Condensed Matter +1406.7700 Phenomenology +1406.7703 Plasma Physics +1406.7706 Atmospheric and Oceanic Physics +1406.7708 Information Theory +1406.7709 Phenomenology +1406.7716 Data Structures and Algorithms +1406.7717 Materials Science +1406.7720 Social and Information Networks +1406.7721 Functional Analysis +1406.7723 Portfolio Management +1406.7725 Cosmology and Nongalactic Astrophysics +1406.7727 Information Retrieval +1406.7732 Methodology +1406.7733 Algebraic Topology +1406.7735 Computers and Society +1406.7738 Social and Information Networks +1406.7739 Phenomenology +1406.7744 Other Computer Science +1406.7745 Instrumentation and Detectors +1406.7746 Computer Science and Game Theory +1406.7748 Probability +1406.7749 Information Retrieval +1406.7753 Computational Geometry +1406.7758 Machine Learning +1406.7765 Differential Geometry +1406.7766 Probability +1406.7772 Algebraic Geometry +1406.7775 Risk Management +1406.7778 Atomic Physics +1406.7779 Optimization and Control +1406.7781 Materials Science +1406.7784 Combinatorics +1406.7788 Combinatorics +1406.7792 +1406.7795 Phenomenology +1406.7796 Cosmology and Nongalactic Astrophysics +1406.7798 Analysis of PDEs +1406.7799 Multimedia +1406.7801 Databases +1406.7805 General Topology +1406.7811 Neural and Evolutionary Computing +1406.7814 Classical Analysis and ODEs +1406.7816 Statistical Mechanics +1406.7824 Logic in Computer Science +1406.7827 Optics +1406.7831 Metric Geometry +1406.7838 Logic in Computer Science +1406.7840 Strongly Correlated Electrons +1406.7841 Data Structures and Algorithms +1406.7846 Combinatorics +1406.7847 Analysis of PDEs +1406.7848 Algebraic Geometry +1406.7852 +1406.7854 Category Theory +1406.7858 Information Theory +1406.7859 Astrophysics of Galaxies +1406.7860 Combinatorics +1406.7861 Algebraic Topology +1406.7862 Number Theory +1406.7866 Computers and Society +1406.7867 Strongly Correlated Electrons +1406.7872 Combinatorics +gr-qc/0602018 +math/0303205 Classical Analysis and ODEs +physics/0009079 General Physics +1312.5436 Classical Analysis and ODEs +1401.5849 Multiagent Systems +1401.5959 Commutative Algebra +1401.6020 Performance +1401.6050 Computation and Language +1401.6070 Data Structures and Algorithms +1401.6124 Learning +0706.0970 Symplectic Geometry +0707.3926 Geometric Topology +0803.1770 +0803.2698 Adaptation and Self-Organizing Systems +0804.3887 Quantum Algebra +0806.4095 Quantum Algebra +0807.0921 Metric Geometry +0808.1992 Metric Geometry +0808.2762 Quantum Algebra +0809.3566 History and Overview +0905.1282 Group Theory +0905.1789 Quantum Algebra +0906.3122 Quantum Algebra +0908.0320 Numerical Analysis +0910.0557 Metric Geometry +0910.0566 Metric Geometry +0912.2534 Rings and Algebras +1001.4051 Rings and Algebras +1002.0758 Rings and Algebras +1004.4168 Geometric Topology +1006.1232 Mesoscale and Nanoscale Physics +1006.5702 Metric Geometry +1007.4655 Operator Algebras +1012.3102 Pricing of Securities +1101.0570 Popular Physics +1101.2269 Operator Algebras +1104.2340 Probability +1104.5265 Operator Algebras +1105.4730 Optics +1106.1462 Cosmology and Nongalactic Astrophysics +1107.0500 Operator Algebras +1107.4278 Experiment +1107.5829 Probability +1108.2007 Combinatorics +1108.4151 +1109.0282 Theory +1109.5157 Algebraic Geometry +1109.6153 Optimization and Control +1110.4564 Rings and Algebras +1110.4598 Rings and Algebras +1111.2976 Risk Management +1111.6089 Phenomenology +1111.7270 Probability +1112.3546 Rings and Algebras +1201.3086 Mesoscale and Nanoscale Physics +1201.4102 +1202.2001 Logic +1202.4860 Numerical Analysis +1202.6348 Information Theory +1203.0227 Dynamical Systems +1203.2365 Probability +1203.4610 Risk Management +1203.5743 Dynamical Systems +1204.0533 Combinatorics +1204.6728 Group Theory +1206.6802 Soft Condensed Matter +1207.1497 Applications +1207.5820 Theory +1207.6572 Rings and Algebras +1208.1939 Rings and Algebras +1208.5690 Instrumentation and Detectors +1209.5367 +1210.0117 Metric Geometry +1210.0830 Probability +1210.1307 +1210.4031 +1211.2316 Rings and Algebras +1211.4965 Functional Analysis +1211.5684 Cosmology and Nongalactic Astrophysics +1212.2538 Materials Science +1301.2677 Computation +1301.2804 Classical Analysis and ODEs +1301.5519 Fluid Dynamics +1302.0479 Statistical Mechanics +1302.0677 Social and Information Networks +1303.0313 Fluid Dynamics +1303.1154 Strongly Correlated Electrons +1303.3847 Materials Science +1304.3294 Materials Science +1304.3968 +1304.7891 Algebraic Geometry +1305.2932 +1305.3497 Theory +1305.5405 Strongly Correlated Electrons +1305.5424 Phenomenology +1305.5770 Optics +1305.6228 Physics and Society +1305.7190 Theory +1306.3072 +1306.5686 Mesoscale and Nanoscale Physics +1306.5741 +1306.6824 Mesoscale and Nanoscale Physics +1307.1324 Algebraic Topology +1307.4180 +1307.4390 Number Theory +1307.4911 +1307.6079 Theory +1307.8192 Discrete Mathematics +1308.0213 Fluid Dynamics +1308.1894 Materials Science +1308.2624 Cosmology and Nongalactic Astrophysics +1308.3581 Theory +1308.4005 Materials Science +1308.4495 Rings and Algebras +1308.5946 Superconductivity +1308.6425 Theory +1309.3184 Materials Science +1309.6071 Functional Analysis +1309.6780 Classical Analysis and ODEs +1309.7314 Mesoscale and Nanoscale Physics +1310.0005 Optimization and Control +1310.1427 Probability +1310.1898 Solar and Stellar Astrophysics +1310.2018 Optics +1310.3391 Instrumentation and Detectors +1310.4423 Phenomenology +1310.5713 Theory +1310.5727 Strongly Correlated Electrons +1310.6746 Cosmology and Nongalactic Astrophysics +1310.7213 Mesoscale and Nanoscale Physics +1310.7381 Mesoscale and Nanoscale Physics +1311.0816 History and Overview +1311.1179 Soft Condensed Matter +1311.2050 Geometric Topology +1311.2979 +1311.5353 Astrophysics of Galaxies +1311.5894 Astrophysics of Galaxies +1311.7624 Mesoscale and Nanoscale Physics +1312.0699 Materials Science +1312.1730 Instrumentation and Detectors +1312.3634 High Energy Astrophysical Phenomena +1312.5168 Dynamical Systems +1312.5489 Theory +1312.6100 Soft Condensed Matter +1312.6531 Optics +1401.0043 Strongly Correlated Electrons +1401.0190 Numerical Analysis +1401.0429 Probability +1401.1398 +1401.3052 Algebraic Topology +1401.3069 Software Engineering +1401.3101 High Energy Astrophysical Phenomena +1401.3112 Information Theory +1401.3148 Information Theory +1401.3173 Formal Languages and Automata Theory +1401.3190 Classical Analysis and ODEs +1401.3331 Other Computer Science +1401.3348 High Energy Astrophysical Phenomena +1401.3355 Operator Algebras +1401.3359 Astrophysics of Galaxies +1401.3360 Theory +1401.3365 Fluid Dynamics +1401.3367 Rings and Algebras +1401.3370 Computational Geometry +1401.3371 Spectral Theory +1401.3372 Computation and Language +1401.3375 Information Theory +1401.3377 Mesoscale and Nanoscale Physics +1401.3381 Multiagent Systems +1401.3383 Methodology +1401.3385 Computational Geometry +1401.3386 Materials Science +1401.3388 +1401.3390 Machine Learning +1401.3393 +1401.3396 Mesoscale and Nanoscale Physics +1401.3403 Group Theory +1401.3404 Optics +1401.3407 Applications +1401.3408 Applications +1401.3410 Emerging Technologies +1401.3413 Learning +1401.3417 Optics +1401.3418 Astrophysics of Galaxies +1401.3422 Mesoscale and Nanoscale Physics +1401.3423 Probability +1401.3426 Computer Science and Game Theory +1401.3427 Learning +1401.3428 Artificial Intelligence +1401.3429 Learning +1401.3430 Artificial Intelligence +1401.3431 Artificial Intelligence +1401.3432 Artificial Intelligence +1401.3433 Computer Science and Game Theory +1401.3434 Learning +1401.3436 Artificial Intelligence +1401.3437 Artificial Intelligence +1401.3438 Artificial Intelligence +1401.3439 Artificial Intelligence +1401.3440 Probability +1401.3441 Learning +1401.3442 Artificial Intelligence +1401.3443 Artificial Intelligence +1401.3444 Artificial Intelligence +1401.3446 Computational Engineering, Finance, and Science +1401.3447 Learning +1401.3448 Artificial Intelligence +1401.3449 Computer Science and Game Theory +1401.3450 Artificial Intelligence +1401.3451 Computer Science and Game Theory +1401.3452 Genomics +1401.3453 Artificial Intelligence +1401.3454 Learning +1401.3455 Artificial Intelligence +1401.3457 Computation and Language +1401.3458 Artificial Intelligence +1401.3459 Artificial Intelligence +1401.3460 Artificial Intelligence +1401.3461 Artificial Intelligence +1401.3462 Robotics +1401.3463 Logic in Computer Science +1401.3464 Neural and Evolutionary Computing +1401.3465 Computer Science and Game Theory +1401.3466 Multiagent Systems +1401.3467 Artificial Intelligence +1401.3468 Artificial Intelligence +1401.3469 Artificial Intelligence +1401.3470 Artificial Intelligence +1401.3471 Artificial Intelligence +1401.3472 Logic in Computer Science +1401.3473 Computer Science and Game Theory +1401.3474 Artificial Intelligence +1401.3475 Logic in Computer Science +1401.3476 Logic in Computer Science +1401.3477 Artificial Intelligence +1401.3478 Learning +1401.3479 Computation and Language +1401.3481 Artificial Intelligence +1401.3482 Computation and Language +1401.3483 Artificial Intelligence +1401.3484 Logic in Computer Science +1401.3485 Logic in Computer Science +1401.3486 Artificial Intelligence +1401.3487 Logic in Computer Science +1401.3488 Information Retrieval +1401.3489 Artificial Intelligence +1401.3490 Artificial Intelligence +1401.3491 Artificial Intelligence +1401.3492 Artificial Intelligence +1401.3493 Artificial Intelligence +1401.3494 Computer Science and Game Theory +1401.3498 Combinatorics +1401.3507 Lattice +1401.3510 Information Retrieval +1401.3511 Networking and Internet Architecture +1401.3515 Instrumentation and Methods for Astrophysics +1401.3516 Social and Information Networks +1401.3517 Analysis of PDEs +1401.3519 Human-Computer Interaction +1401.3523 General Topology +1401.3525 Physics and Society +1401.3527 Information Theory +1401.3532 Solar and Stellar Astrophysics +1401.3535 Commutative Algebra +1401.3540 Materials Science +1401.3541 Networking and Internet Architecture +1401.3544 +1401.3548 Optimization and Control +1401.3550 Optimization and Control +1401.3553 Combinatorics +1401.3554 Other Computer Science +1401.3555 Representation Theory +1401.3559 Probability +1401.3561 Complex Variables +1401.3563 +1401.3573 Instrumentation and Methods for Astrophysics +1401.3574 Number Theory +1401.3575 Algebraic Geometry +1401.3576 Logic +1401.3577 History and Philosophy of Physics +1401.3578 +1401.3583 Probability +1401.3584 Computer Vision and Pattern Recognition +1401.3585 Differential Geometry +1401.3586 Fluid Dynamics +1401.3587 Molecular Networks +1401.3592 Neural and Evolutionary Computing +1401.3593 Dynamical Systems +1401.3599 Dynamical Systems +1401.3603 Superconductivity +1401.3609 Differential Geometry +1401.3614 Software Engineering +1401.3615 Distributed, Parallel, and Cluster Computing +1401.3617 Information Theory +1401.3621 Computers and Society +1401.3622 Probability +1401.3623 Other Computer Science +1401.3624 Quantitative Methods +1401.3625 Theory +1401.3627 Computers and Society +1401.3628 Number Theory +1401.3633 Materials Science +1401.3636 Complex Variables +1401.3639 +1401.3640 Analysis of PDEs +1401.3648 Medical Physics +1401.3649 Analysis of PDEs +1401.3654 Data Structures and Algorithms +1401.3655 Materials Science +1401.3656 Materials Science +1401.3659 Cryptography and Security +1401.3660 Networking and Internet Architecture +1401.3662 Complex Variables +1401.3665 Combinatorics +1401.3670 Data Structures and Algorithms +1401.3671 Optics +1401.3676 Materials Science +1401.3677 Information Theory +1401.3679 Analysis of PDEs +1401.3680 Strongly Correlated Electrons +1401.3683 Distributed, Parallel, and Cluster Computing +1401.3685 Data Structures and Algorithms +1401.3686 Combinatorics +1401.3690 Combinatorics +1401.3691 Rings and Algebras +1401.3701 +1401.3702 Algebraic Geometry +1401.3705 Algebraic Geometry +1401.3708 Dynamical Systems +1401.3711 Solar and Stellar Astrophysics +1401.3713 Algebraic Geometry +1401.3717 Systems and Control +1401.3718 Physics and Society +1401.3723 +1401.3726 +1401.3728 Theory +1401.3729 Earth and Planetary Astrophysics +1401.3732 Superconductivity +1401.3737 Machine Learning +math-ph/0606002 +math/0506177 Metric Geometry +math/0604454 Rings and Algebras +math/0612309 Rings and Algebras +0807.4104 Algebraic Geometry +0807.4110 Algebraic Geometry +0904.1276 Theory +0909.1228 +0911.2878 General Physics +1004.1562 Phenomenology +1107.0138 Combinatorics +1107.3719 Group Theory +1107.4949 Phenomenology +1110.6174 Cosmology and Nongalactic Astrophysics +1111.6169 +1112.1504 Differential Geometry +1112.5675 Phenomenology +1201.2376 Functional Analysis +1202.4016 Strongly Correlated Electrons +1203.1500 Algebraic Geometry +1203.2329 Astrophysics of Galaxies +1205.2596 Artificial Intelligence +1205.2597 Artificial Intelligence +1205.4592 General Physics +1205.5130 General Physics +1205.7014 Data Structures and Algorithms +1206.0411 Group Theory +1206.3935 +1206.3959 Artificial Intelligence +1206.4072 Differential Geometry +1208.1240 General Physics +1208.1241 General Physics +1208.5154 Artificial Intelligence +1208.5155 Artificial Intelligence +1208.5159 Artificial Intelligence +1208.5160 Artificial Intelligence +1208.5161 Artificial Intelligence +1209.3111 Optics +1209.3948 Functional Analysis +1209.4491 Functional Analysis +1210.6930 Functional Analysis +1211.1442 Combinatorics +1211.2770 Functional Analysis +1212.5156 Statistics Theory +1301.4604 Artificial Intelligence +1301.4606 Artificial Intelligence +1301.4607 Artificial Intelligence +1301.4608 Artificial Intelligence +1301.7027 +1302.7315 Classical Analysis and ODEs +1303.1188 Optics +1304.0737 Differential Geometry +1304.3842 Artificial Intelligence +1304.3843 Artificial Intelligence +1304.3844 Artificial Intelligence +1304.3847 Artificial Intelligence +1304.3848 Artificial Intelligence +1304.3854 Artificial Intelligence +1304.4182 Artificial Intelligence +1305.0409 +1305.2412 Geometric Topology +1305.2439 +1305.3201 Complex Variables +1306.0557 Numerical Analysis +1306.0862 Combinatorics +1306.2847 +1306.3296 Analysis of PDEs +1306.5687 +1307.2881 Superconductivity +1307.3951 Logic +1308.2826 Quantum Algebra +1308.4059 Atomic Physics +1308.5408 Strongly Correlated Electrons +1308.5756 +1309.2075 Atomic Physics +1309.3711 Materials Science +1309.4901 Strongly Correlated Electrons +1309.5002 General Physics +1309.5159 General Physics +1309.5167 Strongly Correlated Electrons +1309.7888 General Physics +1309.7971 Artificial Intelligence +1310.0670 Dynamical Systems +1310.2868 General Physics +1310.3646 Probability +1310.5559 Statistics Theory +1310.6961 Probability +1310.7110 Atomic Physics +1311.0106 Quantum Algebra +1311.0757 Algebraic Geometry +1311.4171 Functional Analysis +1311.5393 Quantum Gases +1311.6684 Analysis of PDEs +1311.7404 Functional Analysis +1312.0311 General Physics +1312.3054 Quantum Gases +1312.3065 Superconductivity +1312.3261 Theory +1401.2092 Combinatorics +1401.2406 +1401.3015 Dynamical Systems +1401.7792 Theory +1401.8213 Rings and Algebras +1402.0377 +1402.0967 Differential Geometry +1402.2494 General Finance +1402.5279 Solar and Stellar Astrophysics +1402.6134 Functional Analysis +1402.6270 Number Theory +1403.2083 Statistical Mechanics +1403.3025 +1403.3161 Theory +1403.3504 Materials Science +1403.3734 Plasma Physics +1403.3807 Artificial Intelligence +1403.6489 Statistical Mechanics +1403.6527 Phenomenology +1403.7148 +1403.7358 Theory +1404.0924 Mesoscale and Nanoscale Physics +1404.2114 +1404.2149 Robotics +1404.2448 Theory +1404.6172 Mesoscale and Nanoscale Physics +1404.6528 Phenomenology +1405.0108 Computer Science and Game Theory +1405.4370 Materials Science +1405.4393 Phenomenology +1405.4837 +1405.6049 +1405.7120 Algebraic Geometry +1405.7146 +1405.7873 +1406.0016 Optics +1406.0087 Theory +1406.0426 Genomics +1406.0920 Methodology +1406.1753 +1406.1779 Probability +1406.1852 Phenomenology +1406.2553 Theory +1406.3751 General Physics +1406.4576 Mesoscale and Nanoscale Physics +1406.4749 Experiment +1406.4853 Superconductivity +1406.5025 Phenomenology +1406.6232 +1407.0158 Statistics Theory +1407.0204 Statistics Theory +1407.0215 Statistics Theory +1407.0477 Statistical Mechanics +1407.0942 Analysis of PDEs +1407.2126 Experiment +1407.2854 Social and Information Networks +1407.3396 Soft Condensed Matter +1407.3895 Genomics +1407.5748 +1407.5794 Superconductivity +1407.6328 Data Structures and Algorithms +1407.6585 Mesoscale and Nanoscale Physics +1407.6911 Strongly Correlated Electrons +1407.8090 +1408.0477 Classical Analysis and ODEs +1408.1511 Solar and Stellar Astrophysics +1408.4449 High Energy Astrophysical Phenomena +1408.4938 Phenomenology +1408.5199 Materials Science +1408.5525 Superconductivity +1408.5944 Phenomenology +1408.6104 Formal Languages and Automata Theory +1408.6126 Multiagent Systems +1408.6128 Dynamical Systems +1408.6258 Physics and Society +1408.6375 +1408.6517 Numerical Analysis +1408.6520 Artificial Intelligence +1408.6528 Phenomenology +1408.6529 Instrumentation and Methods for Astrophysics +1408.6533 Instrumentation and Methods for Astrophysics +1408.6534 Instrumentation and Methods for Astrophysics +1408.6535 Instrumentation and Methods for Astrophysics +1408.6536 Instrumentation and Methods for Astrophysics +1408.6537 Instrumentation and Methods for Astrophysics +1408.6538 Instrumentation and Methods for Astrophysics +1408.6539 Instrumentation and Methods for Astrophysics +1408.6540 Instrumentation and Methods for Astrophysics +1408.6541 Instrumentation and Methods for Astrophysics +1408.6546 Instrumentation and Methods for Astrophysics +1408.6548 Instrumentation and Methods for Astrophysics +1408.6553 Applications +1408.6556 Materials Science +1408.6557 Biological Physics +1408.6558 Materials Science +1408.6561 +1408.6569 Algebraic Geometry +1408.6572 Phenomenology +1408.6573 Combinatorics +1408.6575 Computer Science and Game Theory +1408.6579 Solar and Stellar Astrophysics +1408.6584 Functional Analysis +1408.6589 Databases +1408.6590 Soft Condensed Matter +1408.6591 Graphics +1408.6593 +1408.6595 Systems and Control +1408.6600 Complex Variables +1408.6602 Complex Variables +1408.6603 +1408.6604 Experiment +1408.6605 Information Theory +1408.6609 Materials Science +1408.6610 Cryptography and Security +1408.6616 Populations and Evolution +1408.6617 Learning +1408.6618 Learning +1408.6621 Human-Computer Interaction +1408.6623 Number Theory +1408.6629 Strongly Correlated Electrons +1408.6633 Theory +1408.6634 Mesoscale and Nanoscale Physics +1408.6645 Classical Analysis and ODEs +1408.6647 +1408.6651 Differential Geometry +1408.6653 +1408.6660 Phenomenology +1408.6661 Other Computer Science +1408.6662 Biological Physics +1408.6665 Theory +1408.6667 Methodology +1408.6668 Biological Physics +1408.6669 Group Theory +1408.6670 Differential Geometry +1408.6671 Solar and Stellar Astrophysics +1408.6672 +1408.6677 Solar and Stellar Astrophysics +1408.6681 Methodology +1408.6683 Algebraic Topology +1408.6684 Phenomenology +1408.6685 Strongly Correlated Electrons +1408.6689 Computer Science and Game Theory +1408.6691 Databases +1408.6692 Dynamical Systems +1408.6693 Machine Learning +1408.6694 Populations and Evolution +1408.6695 Dynamical Systems +1408.6701 Formal Languages and Automata Theory +1408.6710 History and Overview +1408.6711 Complex Variables +1408.6715 Classical Analysis and ODEs +1408.6717 Commutative Algebra +1408.6720 Representation Theory +1408.6722 Analysis of PDEs +1408.6723 Systems and Control +1408.6727 Probability +1408.6729 Distributed, Parallel, and Cluster Computing +1408.6731 Statistics Theory +1408.6733 Commutative Algebra +1408.6736 Networking and Internet Architecture +1408.6737 Analysis of PDEs +1408.6740 Representation Theory +1408.6741 Neural and Evolutionary Computing +1408.6744 Optics +1408.6747 Mesoscale and Nanoscale Physics +1408.6752 Instrumentation and Detectors +1408.6755 Computation +1408.6758 History and Overview +1408.6760 Networking and Internet Architecture +1408.6762 Computers and Society +1408.6765 Dynamical Systems +1408.6771 Computational Geometry +1408.6779 Instrumentation and Detectors +1408.6782 Fluid Dynamics +1408.6786 Mesoscale and Nanoscale Physics +1408.6789 Analysis of PDEs +1408.6790 Representation Theory +1408.6791 Materials Science +1408.6796 Functional Analysis +1408.6797 Algebraic Geometry +1408.6798 Materials Science +1408.6803 History and Philosophy of Physics +1408.6808 +1408.6809 Systems and Control +1408.6817 Numerical Analysis +1408.6818 Numerical Analysis +1408.6819 Populations and Evolution +1408.6820 Strongly Correlated Electrons +1408.6822 Social and Information Networks +1408.6827 Optics +nucl-th/0702078 +0709.0517 Functional Analysis +0709.0535 Metric Geometry +0802.1565 Number Theory +0803.2392 Numerical Analysis +0803.3165 Number Theory +0806.4404 Numerical Analysis +0809.3238 Theory +0811.3444 +0902.3288 Cosmology and Nongalactic Astrophysics +0903.4977 Plasma Physics +0905.1151 Theory +0906.3479 General Mathematics +0909.3681 General Physics +0909.4061 Numerical Analysis +0912.4891 History and Overview +1001.4968 History and Overview +1002.1565 +1004.4389 Probability +1006.3457 +1007.1574 Metric Geometry +1008.2193 Combinatorics +1008.4910 Representation Theory +1010.1847 Information Theory +1011.1595 Numerical Analysis +1011.4242 Probability +1012.3141 Number Theory +1012.5155 High Energy Astrophysical Phenomena +1101.1070 Information Theory +1101.1946 Number Theory +1101.3554 Differential Geometry +1102.0534 Probability +1105.0105 Symplectic Geometry +1105.0829 Statistical Mechanics +1105.5415 +1106.2446 Representation Theory +1106.3107 Data Analysis, Statistics and Probability +1106.3184 Information Theory +1107.3715 Information Theory +1107.4303 Artificial Intelligence +1108.3151 +1108.5940 Risk Management +1109.2359 Algebraic Topology +1109.4416 Cosmology and Nongalactic Astrophysics +1111.1134 Representation Theory +1111.1342 Mesoscale and Nanoscale Physics +1201.2458 Physics and Society +1201.3060 Combinatorics +1201.5312 Strongly Correlated Electrons +1201.5333 Probability +1201.6002 Probability +1202.0211 Number Theory +1202.5601 Instrumentation and Detectors +1202.5649 Logic +1203.2946 Computational Physics +1203.3602 Data Structures and Algorithms +1203.6419 +1204.0824 Computational Geometry +1204.0835 +1206.0338 Computer Vision and Pattern Recognition +1206.6325 Optimization and Control +1206.6915 Experiment +1207.2468 Cosmology and Nongalactic Astrophysics +1207.2936 Algebraic Geometry +1208.4244 Number Theory +1208.4943 Differential Geometry +1209.0576 Probability +1209.4603 Molecular Networks +1211.0185 Algebraic Topology +1211.0723 Atomic Physics +1211.0952 Computational Geometry +1211.6024 Information Theory +1211.7089 Information Theory +1211.7125 Probability +1212.1864 Number Theory +1212.3644 Instrumentation and Detectors +1212.3696 Optimization and Control +1212.3736 Optimization and Control +1212.3966 Strongly Correlated Electrons +1212.6312 +1301.0071 Analysis of PDEs +1302.0054 High Energy Astrophysical Phenomena +1302.0425 Statistics Theory +1302.0883 Applications +1302.0893 Applications +1302.3805 Rings and Algebras +1302.4062 Discrete Mathematics +1302.6588 Cosmology and Nongalactic Astrophysics +1303.1377 Lattice +1303.2173 Information Theory +1303.3259 Solar and Stellar Astrophysics +1303.3755 Mesoscale and Nanoscale Physics +1303.6672 Information Theory +1304.2500 Analysis of PDEs +1304.2503 Systems and Control +1304.3129 Theory +1304.3604 Data Structures and Algorithms +1304.3949 Systems and Control +1304.3963 Networking and Internet Architecture +1304.6482 Logic in Computer Science +1305.0062 Genomics +1305.2753 Other Condensed Matter +1305.6247 Number Theory +1306.0101 Differential Geometry +1306.0104 Representation Theory +1306.0495 +1306.0526 Pattern Formation and Solitons +1306.1361 History and Philosophy of Physics +1306.5971 +1307.0407 Experiment +1307.1712 Cosmology and Nongalactic Astrophysics +1307.1906 Numerical Analysis +1307.2101 +1307.2496 Mesoscale and Nanoscale Physics +1307.2933 +1307.3674 Phenomenology +1307.3906 Number Theory +1307.6911 High Energy Astrophysical Phenomena +1308.0479 Theory +1308.0539 +1308.1197 +1308.1200 +1308.2952 Information Theory +1308.3667 Physics Education +1308.4148 Differential Geometry +1308.5433 Physics Education +1308.5459 Probability +1309.1350 Cosmology and Nongalactic Astrophysics +1309.1550 Discrete Mathematics +1309.3276 Cosmology and Nongalactic Astrophysics +1309.4084 History and Philosophy of Physics +1309.4312 Mesoscale and Nanoscale Physics +1309.4457 Solar and Stellar Astrophysics +1309.5683 Quantum Gases +1309.6156 Differential Geometry +1309.6401 Number Theory +1309.7764 Statistical Mechanics +1310.0022 Cosmology and Nongalactic Astrophysics +1310.0046 Social and Information Networks +1310.0232 Other Condensed Matter +1310.0336 Dynamical Systems +1310.1374 Cosmology and Nongalactic Astrophysics +1310.2258 Theory +1310.2322 Discrete Mathematics +1310.2733 Applications +1310.2791 Cosmology and Nongalactic Astrophysics +1310.3260 +1310.3557 Complex Variables +1310.3571 Differential Geometry +1310.3935 +1310.5116 Cosmology and Nongalactic Astrophysics +1310.5150 Phenomenology +1310.5770 Optimization and Control +1310.5795 Mesoscale and Nanoscale Physics +1310.5978 Algebraic Geometry +1310.6401 Genomics +1310.6521 Algebraic Geometry +1310.8403 Discrete Mathematics +1310.8435 Cosmology and Nongalactic Astrophysics +1311.0334 Mesoscale and Nanoscale Physics +1311.0568 +1311.0815 Theory +1311.1231 Strongly Correlated Electrons +1311.1525 +1311.1616 Computational Complexity +1311.2101 Phenomenology +1311.2698 Networking and Internet Architecture +1311.3090 Cosmology and Nongalactic Astrophysics +1311.3607 Computational Complexity +1311.4483 Mesoscale and Nanoscale Physics +1311.4684 Phenomenology +1311.5300 Strongly Correlated Electrons +1311.5991 Phenomenology +1312.0179 Representation Theory +1312.0767 Materials Science +1312.1436 +1312.1994 Mesoscale and Nanoscale Physics +1312.2231 Phenomenology +1312.2770 Functional Analysis +1312.3310 Experiment +1312.3351 Theory +1312.3436 +1312.3878 +1312.3933 +1312.4035 Cosmology and Nongalactic Astrophysics +1312.4184 Dynamical Systems +1312.4267 Theory +1312.4591 +1312.4921 Networking and Internet Architecture +1312.5664 Phenomenology +1312.6416 Lattice +1312.6514 Soft Condensed Matter +1312.7022 Methodology +1312.7412 Systems and Control +1312.7603 Logic in Computer Science +1312.7762 Theory +1401.0108 Computational Geometry +1401.0340 Information Theory +1401.0699 Data Structures and Algorithms +1401.1185 Combinatorics +1401.1309 Mesoscale and Nanoscale Physics +1401.1385 Phenomenology +1401.2173 Superconductivity +1401.2398 Information Theory +1401.2477 Atomic Physics +1401.2512 Mesoscale and Nanoscale Physics +1401.2560 Networking and Internet Architecture +1401.3123 Materials Science +1401.4426 +1401.4522 Combinatorics +1401.4567 Symbolic Computation +1401.5277 Logic in Computer Science +1401.5363 Optimization and Control +1401.5485 Superconductivity +1401.5706 Differential Geometry +1401.6056 Classical Physics +1401.6069 Information Theory +1401.6432 Information Theory +1401.6498 Information Theory +1401.7006 Information Theory +1401.7151 Operator Algebras +1401.7404 Information Theory +1401.7459 Quantum Gases +1401.8259 Lattice +1402.0050 Logic in Computer Science +1402.0432 Computation +1402.1090 Mesoscale and Nanoscale Physics +1402.1256 Phenomenology +1402.1388 Mesoscale and Nanoscale Physics +1402.2844 Phenomenology +1402.3066 Logic in Computer Science +1402.3242 Materials Science +1402.4043 Programming Languages +1402.4787 Logic +1402.4994 Data Structures and Algorithms +1402.5177 +1402.5354 Spectral Theory +1402.5514 +1402.6346 Astrophysics of Galaxies +1402.6965 Phenomenology +1402.6979 Materials Science +1403.0786 Theory +1403.1139 Analysis of PDEs +1403.2174 Robotics +1403.2466 Medical Physics +1403.2546 Functional Analysis +1403.2698 General Physics +1403.3096 High Energy Astrophysical Phenomena +1403.3794 Materials Science +1403.3875 Rings and Algebras +1403.4118 Information Theory +1403.4215 Cosmology and Nongalactic Astrophysics +1403.4471 Differential Geometry +1403.5792 Astrophysics of Galaxies +1403.6315 Physics and Society +1403.6388 Strongly Correlated Electrons +1404.0292 Representation Theory +1404.0727 Algebraic Topology +1404.1479 Combinatorics +1404.2651 Instrumentation and Detectors +1404.3136 +1404.3174 Methodology +1404.3366 Computer Vision and Pattern Recognition +1404.3564 Instrumentation and Methods for Astrophysics +1404.3875 Data Structures and Algorithms +1404.4333 General Mathematics +1404.4421 +1404.4679 Social and Information Networks +1404.4945 Representation Theory +1404.4972 Data Structures and Algorithms +1404.4992 Earth and Planetary Astrophysics +1404.5014 Algebraic Geometry +1404.5074 +1404.5231 Mesoscale and Nanoscale Physics +1404.5352 Computational Complexity +1404.5355 High Energy Astrophysical Phenomena +1404.5365 Geometric Topology +1404.5401 +1404.5547 Chemical Physics +1404.5743 Data Structures and Algorithms +1404.5848 Algebraic Topology +1404.5997 Neural and Evolutionary Computing +1404.6163 Learning +1404.6227 General Finance +1404.6269 Chemical Physics +1404.6499 +1404.6521 Mesoscale and Nanoscale Physics +1404.6535 Optimization and Control +1404.6538 Optimization and Control +1404.6544 Information Theory +1404.6547 Digital Libraries +1404.6548 Digital Libraries +1404.6549 Digital Libraries +1404.6552 +1404.6556 Information Theory +1404.6558 Mesoscale and Nanoscale Physics +1404.6564 Statistical Mechanics +1404.6566 Artificial Intelligence +1404.6567 Artificial Intelligence +1404.6570 Databases +1404.6573 Robotics +1404.6575 Representation Theory +1404.6582 Optics +1404.6583 Computational Geometry +1404.6584 Mesoscale and Nanoscale Physics +1404.6585 Information Theory +1404.6586 Algebraic Geometry +1404.6587 Optics +1404.6588 General Physics +1404.6591 Chaotic Dynamics +1404.6592 Differential Geometry +1404.6596 History and Overview +1404.6600 Complex Variables +1404.6602 Programming Languages +1404.6603 Software Engineering +1404.6604 Computers and Society +1404.6605 Logic in Computer Science +1404.6606 Software Engineering +1404.6607 Programming Languages +1404.6608 Software Engineering +1404.6609 Software Engineering +1404.6610 Computers and Society +1404.6612 Other Computer Science +1404.6614 Information Theory +1404.6615 Phenomenology +1404.6618 Phenomenology +1404.6621 Probability +1404.6626 Logic in Computer Science +1404.6631 Number Theory +1404.6633 Methodology +1404.6640 Statistics Theory +1404.6645 Information Theory +1404.6650 Number Theory +1404.6653 Instrumentation and Methods for Astrophysics +1404.6655 Dynamical Systems +1404.6656 Dynamical Systems +1404.6658 Theory +1404.6662 Cryptography and Security +1404.6674 Learning +1404.6679 Probability +1404.6680 Phenomenology +1404.6682 Logic in Computer Science +1404.6683 Information Theory +1404.6684 Quantitative Methods +1404.6688 Information Theory +1404.6689 Symplectic Geometry +1404.6693 Chemical Physics +1404.6694 Data Structures and Algorithms +1404.6695 Functional Analysis +1404.6696 Artificial Intelligence +1404.6699 Cryptography and Security +1404.6700 Information Theory +1404.6702 Machine Learning +1404.6703 Differential Geometry +1404.6711 Commutative Algebra +1404.6712 +1404.6714 Atmospheric and Oceanic Physics +1404.6718 Number Theory +1404.6719 Distributed, Parallel, and Cluster Computing +1404.6721 Distributed, Parallel, and Cluster Computing +1404.6722 Atomic Physics +1404.6727 Data Structures and Algorithms +1404.6730 Mesoscale and Nanoscale Physics +1404.6731 Formal Languages and Automata Theory +1404.6732 Analysis of PDEs +1404.6733 Mesoscale and Nanoscale Physics +1404.6736 Computer Vision and Pattern Recognition +1404.6737 Information Theory +1404.6742 Functional Analysis +1404.6743 Software Engineering +1404.6745 Human-Computer Interaction +1404.6746 Soft Condensed Matter +1404.6747 Human-Computer Interaction +1404.6750 Human-Computer Interaction +1404.6752 Human-Computer Interaction +1404.6754 Human-Computer Interaction +1404.6755 Mesoscale and Nanoscale Physics +1404.6756 Human-Computer Interaction +1404.6757 Human-Computer Interaction +1404.6758 Probability +1404.6760 Classical Analysis and ODEs +1404.6761 Human-Computer Interaction +1404.6762 Materials Science +1404.6764 Human-Computer Interaction +1404.6765 Human-Computer Interaction +1404.6771 Human-Computer Interaction +1404.6772 Distributed, Parallel, and Cluster Computing +1404.6773 Human-Computer Interaction +1404.6774 Fluid Dynamics +1404.6775 +1404.6776 Human-Computer Interaction +1404.6777 Symplectic Geometry +1404.6779 Human-Computer Interaction +1404.6781 Logic in Computer Science +1404.6782 Human-Computer Interaction +1404.6786 Computer Science and Game Theory +1404.6791 Probability +1404.6793 Systems and Control +1404.6794 Rings and Algebras +1404.6801 Software Engineering +1404.6802 Software Engineering +1404.6803 Software Engineering +1404.6804 Software Engineering +1404.6805 Software Engineering +1404.6808 Metric Geometry +1404.6809 Disordered Systems and Neural Networks +1404.6811 Logic +1404.6818 Information Theory +1404.6819 Operator Algebras +1404.6824 +1404.6825 Theory +1404.6826 Complex Variables +1404.6827 Mesoscale and Nanoscale Physics +1404.6830 Software Engineering +1404.6832 Formal Languages and Automata Theory +1404.6833 Software Engineering +1404.6834 Representation Theory +1404.6835 Data Structures and Algorithms +1404.6838 Programming Languages +1404.6839 Functional Analysis +1404.6844 Software Engineering +1404.6846 Software Engineering +1404.6849 Cryptography and Security +1404.6850 Data Structures and Algorithms +1404.6854 Functional Analysis +1404.6856 Analysis of PDEs +1404.6860 Phenomenology +1404.6870 Algebraic Geometry +1404.6871 Numerical Analysis +1404.6875 Statistics Theory +1404.6876 Learning +1404.6877 Algebraic Topology +1404.6881 Sound +1404.6883 Artificial Intelligence +1404.6885 +1404.6887 Experiment +1404.6892 Geometric Topology +1404.6896 +1404.6900 Analysis of PDEs +1404.6903 Analysis of PDEs +1404.6904 Mesoscale and Nanoscale Physics +1404.6905 Atmospheric and Oceanic Physics +1404.6907 Probability +1404.6908 Astrophysics of Galaxies +1404.6911 Probability +1404.6914 +1404.6915 Analysis of PDEs +1404.6916 Geophysics +1404.6917 Numerical Analysis +1404.6924 Probability +1404.6925 +1404.6926 Astrophysics of Galaxies +1404.6928 Probability +1404.6931 Networking and Internet Architecture +1404.6932 Neurons and Cognition +1404.6934 Numerical Analysis +1404.6935 Physics and Society +1404.6937 Algebraic Geometry +1404.6939 Commutative Algebra +1404.6941 +1404.6942 Rings and Algebras +1404.6946 Instrumentation and Detectors +1404.6949 Discrete Mathematics +1404.6954 Symplectic Geometry +1404.6959 Materials Science +1404.6961 Instrumentation and Methods for Astrophysics +1404.6963 +1404.6965 Logic in Computer Science +1404.6966 Social and Information Networks +1404.6968 Medical Physics +1404.6971 Solar and Stellar Astrophysics +1404.6973 Analysis of PDEs +1404.6975 Analysis of PDEs +1404.6978 Number Theory +1404.6979 Numerical Analysis +1404.6983 Analysis of PDEs +1404.6984 Information Theory +1404.6985 Algebraic Geometry +1404.6986 +1404.6991 Metric Geometry +1404.6992 Differential Geometry +1404.6995 Physics Education +1404.6997 Category Theory +1404.6999 Artificial Intelligence +1404.7003 Strongly Correlated Electrons +1404.7015 Logic in Computer Science +1404.7017 Computers and Society +1404.7019 Metric Geometry +1404.7022 Information Theory +1404.7026 +1404.7027 Algebraic Geometry +1404.7034 Operator Algebras +1404.7041 Information Theory +1404.7051 Probability +1404.7053 Computational Complexity +1404.7060 Data Structures and Algorithms +1404.7064 +1404.7066 +1404.7068 Functional Analysis +1404.7069 Optics +1404.7071 Phenomenology +1404.7072 Computational Physics +1404.7082 Instrumentation and Methods for Astrophysics +1404.7083 Statistical Mechanics +1404.7086 Metric Geometry +1404.7088 Operator Algebras +1404.7090 Rings and Algebras +1404.7092 Logic in Computer Science +1404.7093 Strongly Correlated Electrons +1404.7098 Representation Theory +1404.7099 Information Retrieval +1404.7101 Numerical Analysis +1404.7108 Tissues and Organs +1404.7109 +1404.7115 Theory +cond-mat/0609246 Other Condensed Matter +math/0108222 Algebraic Geometry +math/0607165 Logic +math/0612070 Metric Geometry +0707.0191 Quantum Algebra +0907.0552 Differential Geometry +1010.1344 Theory +1110.1355 +1112.2635 Phenomenology +1201.2236 Probability +1202.4115 Number Theory +1204.1216 Cryptography and Security +1207.2376 +1207.4925 +1209.0394 Optics +1209.0438 Differential Geometry +1212.4483 Logic in Computer Science +1301.3650 Instrumentation and Methods for Astrophysics +1301.3773 Instrumentation and Methods for Astrophysics +1301.5110 History and Philosophy of Physics +1301.6369 Geometric Topology +1303.1529 Astrophysics of Galaxies +1303.2192 +1304.1333 Instrumentation and Detectors +1304.1550 Astrophysics of Galaxies +1304.4116 Quantum Gases +1304.5373 Data Structures and Algorithms +1305.6432 Computational Complexity +1306.2087 Cosmology and Nongalactic Astrophysics +1306.3829 +1306.5270 Materials Science +1307.6212 Instrumentation and Methods for Astrophysics +1307.8280 Group Theory +1308.3053 Solar and Stellar Astrophysics +1309.4184 Group Theory +1309.7022 Experiment +1310.0697 General Physics +1310.1420 Cosmology and Nongalactic Astrophysics +1310.3702 Representation Theory +1310.4383 Combinatorics +1310.6036 +1310.6060 +1310.6470 +1310.7150 Differential Geometry +1311.5890 +1311.6804 Algebraic Geometry +1311.6872 +1311.7157 Chaotic Dynamics +1312.0505 Quantum Gases +1312.2465 Information Theory +1312.2653 Soft Condensed Matter +1312.6315 +1312.7621 Probability +1312.7834 Astrophysics of Galaxies +1401.0584 Representation Theory +1401.2681 Group Theory +1401.3218 +1401.4181 Populations and Evolution +1401.6359 Logic in Computer Science +1401.6946 Optics +1401.8245 High Energy Astrophysical Phenomena +1401.8257 Learning +1402.0754 Phenomenology +1402.3024 Algebraic Topology +1402.3299 Statistical Mechanics +1402.7236 +1403.0144 Mesoscale and Nanoscale Physics +1403.0410 Phenomenology +1403.1182 Combinatorics +1403.4874 +1403.5883 Phenomenology +1403.6117 Cosmology and Nongalactic Astrophysics +1403.6187 Statistical Mechanics +1403.6241 Computational Complexity +1404.0198 Differential Geometry +1404.0336 Computer Vision and Pattern Recognition +1404.0635 +1404.0656 Disordered Systems and Neural Networks +1404.1740 Phenomenology +1404.2049 Fluid Dynamics +1404.2504 Mesoscale and Nanoscale Physics +1404.3034 Logic in Computer Science +1404.3208 Phenomenology +1404.4299 Superconductivity +1404.4691 Experiment +1404.5392 +1404.5478 Systems and Control +1404.6938 Human-Computer Interaction +1404.7150 Instrumentation and Methods for Astrophysics +1405.0892 Computer Vision and Pattern Recognition +1405.3626 Number Theory +1405.3986 Astrophysics of Galaxies +1405.4688 Functional Analysis +1405.6312 Logic +1405.6754 +1405.6755 +1406.0045 Computer Science and Game Theory +1406.0408 Number Theory +1406.0730 Optics +1406.0836 History and Overview +1406.0948 Solar and Stellar Astrophysics +1406.1320 Classical Analysis and ODEs +1406.1411 Artificial Intelligence +1406.1507 Mesoscale and Nanoscale Physics +1406.1510 Programming Languages +1406.1511 Plasma Physics +1406.1517 Analysis of PDEs +1406.1528 Computer Vision and Pattern Recognition +1406.1530 Combinatorics +1406.1531 Soft Condensed Matter +1406.1534 Programming Languages +1406.1546 Machine Learning +1406.1547 Economics +1406.1549 Analysis of PDEs +1406.1555 Materials Science +1406.1556 Artificial Intelligence +1406.1557 Programming Languages +1406.1558 Logic in Computer Science +1406.1559 Artificial Intelligence +1406.1560 Logic in Computer Science +1406.1561 Logic in Computer Science +1406.1562 Logic in Computer Science +1406.1563 Logic in Computer Science +1406.1564 Populations and Evolution +1406.1565 Hardware Architecture +1406.1566 Programming Languages +1406.1567 Logic in Computer Science +1406.1570 Differential Geometry +1406.1571 Computer Science and Game Theory +1406.1572 Numerical Analysis +1406.1573 +1406.1575 Geometric Topology +1406.1578 Rings and Algebras +1406.1580 Information Retrieval +1406.1583 Information Retrieval +1406.1586 Combinatorics +1406.1587 Combinatorics +1406.1589 Combinatorics +1406.1590 +1406.1591 +1406.1592 Cosmology and Nongalactic Astrophysics +1406.1593 Number Theory +1406.1594 Number Theory +1406.1603 Neurons and Cognition +1406.1605 Networking and Internet Architecture +1406.1606 Experiment +1406.1607 Instrumentation and Detectors +1406.1608 +1406.1610 +1406.1613 Classical Analysis and ODEs +1406.1616 Combinatorics +1406.1620 Instrumentation and Methods for Astrophysics +1406.1621 Learning +1406.1623 Computational Complexity +1406.1625 +1406.1627 Analysis of PDEs +1406.1628 Combinatorics +1406.1629 Statistics Theory +1406.1632 Differential Geometry +1406.1635 Analysis of PDEs +1406.1637 Classical Analysis and ODEs +1406.1638 Artificial Intelligence +1406.1644 Analysis of PDEs +1406.1648 Materials Science +1406.1652 Solar and Stellar Astrophysics +1406.1653 Combinatorics +1406.1657 Combinatorics +1406.1676 Quantum Algebra +1406.1677 Data Structures and Algorithms +1406.1681 Atmospheric and Oceanic Physics +1406.1685 +1406.1690 Optics +1406.1692 Category Theory +1406.1694 Optimization and Control +1406.1697 Artificial Intelligence +1406.1700 Complex Variables +1406.1701 Computational Engineering, Finance, and Science +1406.1702 Group Theory +1406.1703 Materials Science +1406.1704 Combinatorics +1406.1706 Cosmology and Nongalactic Astrophysics +1406.1708 Optimization and Control +1406.1709 Combinatorics +1406.1717 Data Structures and Algorithms +1406.1733 General Finance +1406.1736 Differential Geometry +1406.1747 Functional Analysis +1406.1749 Operator Algebras +1406.1752 Functional Analysis +1406.1754 Formal Languages and Automata Theory +1406.1758 Probability +1406.1761 Applications +1406.1765 Software Engineering +1406.1767 Artificial Intelligence +1406.1770 Learning +1406.1777 Optimization and Control +1406.1778 Atomic Physics +1406.1784 Physics and Society +1406.1785 Cosmology and Nongalactic Astrophysics +1406.1786 Phenomenology +1406.1789 Theory +1406.1790 Computer Science and Game Theory +math/0211048 Quantum Algebra +math/0309208 Quantum Algebra +math/9807099 Quantum Algebra +math/9807101 K-Theory and Homology +math/9807110 Symplectic Geometry +math/9807124 K-Theory and Homology +math/9809076 Representation Theory +0705.2685 Representation Theory +0901.3870 Geometric Topology +0902.0714 Category Theory +0902.1119 Rings and Algebras +1003.2867 Representation Theory +1010.2125 Pattern Formation and Solitons +1011.6004 Geometric Topology +1102.1776 Rings and Algebras +1105.3648 Geometric Topology +1112.2860 +1112.3975 +1112.5833 Analysis of PDEs +1112.5855 +1202.3892 Probability +1203.0468 Algebraic Geometry +1203.4601 Populations and Evolution +1204.0704 Strongly Correlated Electrons +1204.5561 Commutative Algebra +1206.3827 Mesoscale and Nanoscale Physics +1208.3696 Representation Theory +1209.2194 Optimization and Control +1209.3848 Theory +1209.4124 Analysis of PDEs +1210.1854 Representation Theory +1211.2595 Quantum Gases +1212.0953 +1212.2528 +1212.6432 +1212.6442 Algebraic Topology +1303.2064 Solar and Stellar Astrophysics +1303.2394 Differential Geometry +1303.4200 Solar and Stellar Astrophysics +1304.0147 Solar and Stellar Astrophysics +1304.5739 Analysis of PDEs +1305.2877 +1307.2972 Analysis of PDEs +1308.2987 Number Theory +1308.5960 Mesoscale and Nanoscale Physics +1308.6119 Differential Geometry +1309.3449 +1309.4366 +1309.7387 Strongly Correlated Electrons +1309.7925 Experiment +1310.3730 Soft Condensed Matter +1312.0041 Numerical Analysis +1312.2012 +1312.3912 Category Theory +1312.4336 Biological Physics +1312.4775 Differential Geometry +1312.5434 Systems and Control +1312.5438 Systems and Control +1312.5439 Systems and Control +1312.7727 Mesoscale and Nanoscale Physics +1401.3024 Solar and Stellar Astrophysics +1401.3082 Analysis of PDEs +1401.3253 Disordered Systems and Neural Networks +1401.3330 Analysis of PDEs +1401.6390 Combinatorics +1401.6820 Representation Theory +1401.6953 Analysis of PDEs +1401.7102 Theory +1402.1103 Astrophysics of Galaxies +1402.1588 Representation Theory +1402.5051 Information Theory +1402.5943 Quantum Gases +1402.7169 +1403.1216 Optics +1403.1836 Disordered Systems and Neural Networks +1403.3519 Disordered Systems and Neural Networks +1403.4359 Computation +1403.4625 +1403.5227 Statistical Finance +1403.5239 Mesoscale and Nanoscale Physics +1404.1336 Phenomenology +1404.2557 Strongly Correlated Electrons +1404.2730 Dynamical Systems +1404.3843 +1404.3939 Functional Analysis +1404.4699 Optimization and Control +1404.5160 Astrophysics of Galaxies +1404.5233 Quantum Gases +1404.6270 Phenomenology +1405.0279 Solar and Stellar Astrophysics +1405.0287 Solar and Stellar Astrophysics +1405.0288 Solar and Stellar Astrophysics +1405.1730 High Energy Astrophysical Phenomena +1405.1745 Mesoscale and Nanoscale Physics +1405.2593 Number Theory +1405.4434 Theory +1405.4731 Materials Science +1405.5260 Neurons and Cognition +1405.6028 Strongly Correlated Electrons +1405.6688 Strongly Correlated Electrons +1405.7727 Combinatorics +1405.7855 Exactly Solvable and Integrable Systems +1406.0202 Solar and Stellar Astrophysics +1406.0611 Theory +1406.0880 +1406.0995 +1406.1156 Theory +1406.1164 +1406.1942 Combinatorics +1406.2678 Theory +1406.2724 Biological Physics +1406.4766 Operator Algebras +1406.5441 Spectral Theory +1406.5624 Probability +1406.6792 Theory +1406.7001 Theory +1406.7508 Biological Physics +1407.0024 Astrophysics of Galaxies +1407.0202 Learning +1407.0490 Algebraic Geometry +1407.0704 Strongly Correlated Electrons +1407.1001 Phenomenology +1407.1273 Optics +1407.1675 Statistical Mechanics +1407.2097 Mesoscale and Nanoscale Physics +1407.2158 Soft Condensed Matter +1407.3203 Quantum Gases +1407.3920 Mesoscale and Nanoscale Physics +1407.4110 Phenomenology +1407.4853 Differential Geometry +1407.5369 Strongly Correlated Electrons +1407.5501 +1407.6922 Strongly Correlated Electrons +1407.7044 Phenomenology +1407.7252 Statistical Mechanics +1407.7389 Experiment +1407.7391 Phenomenology +1407.7493 Soft Condensed Matter +1407.8162 Theory +1407.8396 Astrophysics of Galaxies +1407.8418 Algebraic Topology +1408.0257 +1408.0292 Phenomenology +1408.0652 Other Computer Science +1408.0675 Dynamical Systems +1408.0684 +1408.0732 High Energy Astrophysical Phenomena +1408.1347 Mesoscale and Nanoscale Physics +1408.1821 Group Theory +1408.2006 Superconductivity +1408.2456 Phenomenology +1408.3043 Statistical Mechanics +1408.3660 Fluid Dynamics +1408.4029 Numerical Analysis +1408.4232 Cosmology and Nongalactic Astrophysics +1408.4360 +1408.4557 Quantum Gases +1408.5459 Phenomenology +1408.5787 +1408.6848 Experiment +1408.7063 Phenomenology +1408.7064 Mesoscale and Nanoscale Physics +1409.0013 Mesoscale and Nanoscale Physics +1409.0605 Tissues and Organs +1409.0823 Mesoscale and Nanoscale Physics +1409.0886 Theory +1409.0892 +1409.1809 Mesoscale and Nanoscale Physics +1409.1894 +1409.2336 Phenomenology +1409.2637 +1409.2949 Theory +1409.4557 Phenomenology +1409.4683 Analysis of PDEs +1409.5439 Phenomenology +1409.5542 Experiment +1409.5963 Physics and Society +1409.6188 Probability +1409.6217 Cosmology and Nongalactic Astrophysics +1409.6933 +1409.7150 Cosmology and Nongalactic Astrophysics +1409.7609 Earth and Planetary Astrophysics +1409.7644 Experiment +1409.8222 Group Theory +1409.8284 Cosmology and Nongalactic Astrophysics +1409.8362 High Energy Astrophysical Phenomena +1410.0056 Combinatorics +1410.0291 Computation and Language +1410.0842 Astrophysics of Galaxies +1410.1055 High Energy Astrophysical Phenomena +1410.1472 +1410.1622 Solar and Stellar Astrophysics +1410.2204 Atomic Physics +1410.2251 Earth and Planetary Astrophysics +1410.2403 Quantum Gases +1410.2728 Theory +1410.2820 Lattice +1410.2827 Quantum Gases +1410.3188 Experiment +1410.3941 +1410.4663 Astrophysics of Galaxies +1410.5150 Differential Geometry +1410.5497 Algebraic Topology +1410.5719 Materials Science +1410.6063 Formal Languages and Automata Theory +1410.6117 Solar and Stellar Astrophysics +1410.6662 Instrumentation and Methods for Astrophysics +1410.6691 Instrumentation and Methods for Astrophysics +1410.7412 Astrophysics of Galaxies +1410.7928 Statistical Mechanics +1410.7970 Materials Science +1410.8630 Solar and Stellar Astrophysics +1410.8691 Solar and Stellar Astrophysics +1410.8810 High Energy Astrophysical Phenomena +1411.0563 Earth and Planetary Astrophysics +1411.0785 Solar and Stellar Astrophysics +1411.1331 Phenomenology +1411.1435 +1411.2477 Theory +1411.3132 Phenomenology +1411.4044 Distributed, Parallel, and Cluster Computing +1411.4254 Plasma Physics +1411.5379 Computation and Language +1411.6926 Functional Analysis +1411.7023 Analysis of PDEs +1411.7886 Analysis of PDEs +1412.0449 +1412.0733 Geometric Topology +1412.3212 Networking and Internet Architecture +1412.3940 Astrophysics of Galaxies +1412.4011 Popular Physics +1412.4022 Classical Analysis and ODEs +1412.4096 Materials Science +1412.4138 Numerical Analysis +1412.4209 +1412.4244 +1412.4313 Computer Vision and Pattern Recognition +1412.4526 Computer Vision and Pattern Recognition +1412.4536 Optimization and Control +1412.4549 Optics +1412.4620 Discrete Mathematics +1412.4648 Software Engineering +1412.4650 Phenomenology +1412.4768 Solar and Stellar Astrophysics +1412.4770 Astrophysics of Galaxies +1412.4773 Medical Physics +1412.4774 +1412.4788 Quantum Gases +1412.4793 Theory +1412.4795 +1412.4797 Optics +1412.4802 Artificial Intelligence +1412.4805 Classical Analysis and ODEs +1412.4809 Differential Geometry +1412.4811 +1412.4812 Analysis of PDEs +1412.4814 Group Theory +1412.4815 Cosmology and Nongalactic Astrophysics +1412.4820 Optics +1412.4824 Number Theory +1412.4825 Computation +1412.4830 Dynamical Systems +1412.4832 Computational Complexity +1412.4833 Analysis of PDEs +1412.4836 Phenomenology +1412.4838 Algebraic Geometry +1412.4839 Trading and Market Microstructure +1412.4842 Databases +1412.4843 K-Theory and Homology +1412.4844 Accelerator Physics +1412.4847 Robotics +1412.4849 Earth and Planetary Astrophysics +1412.4850 Optics +1412.4852 Functional Analysis +1412.4856 Pattern Formation and Solitons +1412.4858 Optimization and Control +1412.4861 Symbolic Computation +1412.4862 Robotics +1412.4864 Machine Learning +1412.4867 Instrumentation and Methods for Astrophysics +1412.4870 Statistics Theory +1412.4877 Programming Languages +1412.4878 Formal Languages and Automata Theory +1412.4879 Computers and Society +1412.4880 Computers and Society +1412.4881 Computers and Society +1412.4882 Programming Languages +1412.4887 Materials Science +1412.4888 +1412.4892 Optimization and Control +1412.4896 Mesoscale and Nanoscale Physics +1412.4897 Soft Condensed Matter +1412.4898 Optimization and Control +1412.4901 Analysis of PDEs +1412.4904 Computational Complexity +1412.4906 Optics +1412.4907 Instrumentation and Methods for Astrophysics +1412.4908 Optimization and Control +1412.4914 Instrumentation and Methods for Astrophysics +1412.4918 Rings and Algebras +1412.4919 Theory +1412.4920 Neurons and Cognition +1412.4922 Chaotic Dynamics +1412.4925 Atomic Physics +1412.4927 Systems and Control +1412.4928 Biological Physics +1412.4932 Materials Science +1412.4933 Distributed, Parallel, and Cluster Computing +1412.4936 High Energy Astrophysical Phenomena +1412.4937 Classical Analysis and ODEs +1412.4940 Computer Vision and Pattern Recognition +1412.4943 Materials Science +1412.4944 Computer Vision and Pattern Recognition +1412.4945 Phenomenology +1412.4946 Experiment +1412.4948 Solar and Stellar Astrophysics +1412.4951 +1412.4952 Algebraic Geometry +1412.4953 K-Theory and Homology +1412.4962 Atomic Physics +1412.4967 Neural and Evolutionary Computing +1412.4971 Classical Analysis and ODEs +1412.4975 Mesoscale and Nanoscale Physics +1412.4977 Experiment +1412.4979 Combinatorics +1412.4980 Networking and Internet Architecture +1412.4982 Combinatorics +1412.4983 Commutative Algebra +1412.4985 High Energy Astrophysical Phenomena +1412.4986 Distributed, Parallel, and Cluster Computing +1412.4989 Theory +1412.4991 +1412.4992 Differential Geometry +1412.4993 Mesoscale and Nanoscale Physics +1412.4994 Combinatorics +1412.4997 High Energy Astrophysical Phenomena +1412.4998 Instrumentation and Detectors +1412.5000 Methodology +1412.5009 Strongly Correlated Electrons +1412.5011 Phenomenology +1412.5012 Cryptography and Security +1412.5013 Instrumentation and Detectors +1412.5016 Computational Physics +1412.5017 Disordered Systems and Neural Networks +1412.5018 Numerical Analysis +1412.5019 Probability +1412.5021 Analysis of PDEs +1412.5030 Functional Analysis +1412.5033 Probability +1412.5036 Algebraic Geometry +1412.5037 Biomolecules +1412.5038 Biomolecules +1412.5039 Biomolecules +1412.5040 Biomolecules +1412.5041 Dynamical Systems +1412.5054 Astrophysics of Galaxies +1412.5055 Combinatorics +1412.5061 Analysis of PDEs +1412.5064 Materials Science +1412.5066 Combinatorics +1412.5067 Neural and Evolutionary Computing +1412.5072 Trading and Market Microstructure +1412.5073 Theory +1412.5074 Analysis of PDEs +1412.5075 Data Structures and Algorithms +1412.5077 Artificial Intelligence +1412.5082 Number Theory +1412.5085 Combinatorics +1412.5088 Algebraic Geometry +1412.5092 Functional Analysis +1412.5093 Theory +1412.5097 Lattice +1412.5104 Computer Vision and Pattern Recognition +1412.5105 +1412.5109 +1412.5110 Metric Geometry +1412.5111 Information Theory +1412.5113 Group Theory +1412.5116 +1412.5118 Mesoscale and Nanoscale Physics +1412.5121 Cosmology and Nongalactic Astrophysics +1412.5122 Computation +1412.5130 Fluid Dynamics +1412.5142 Complex Variables +1412.5150 Programming Languages +1412.5152 Soft Condensed Matter +1412.5154 Numerical Analysis +1412.5158 Machine Learning +1412.5162 Number Theory +math/0610301 Algebraic Geometry +physics/0007003 General Physics +physics/0007012 General Physics +0808.1897 +0907.0040 General Physics +0907.0042 General Physics +0907.2699 +0908.1142 Phenomenology +0908.2038 Probability +1006.1460 Classical Analysis and ODEs +1009.4891 Instrumentation and Methods for Astrophysics +1101.1025 Algebraic Topology +1103.3977 Symplectic Geometry +1106.5710 +1107.4425 Chaotic Dynamics +1107.5464 Chaotic Dynamics +1110.1613 Phenomenology +1110.2609 +1111.1608 Metric Geometry +1112.2981 Phenomenology +1202.5639 +1203.2428 Group Theory +1203.2429 Group Theory +1203.4463 +1205.0375 Classical Analysis and ODEs +1205.0780 Analysis of PDEs +1205.0783 Analysis of PDEs +1205.1991 Theory +1206.5062 Statistical Mechanics +1206.6587 +1207.5533 Algebraic Geometry +1208.4274 Mesoscale and Nanoscale Physics +1209.6565 +1210.3018 +1210.7747 +1211.1373 +1211.2537 +1211.4412 Pattern Formation and Solitons +1212.0746 +1212.3911 Differential Geometry +1212.4186 +1301.5900 +1302.0884 Theory +1302.4298 Cosmology and Nongalactic Astrophysics +1302.4677 Combinatorics +1302.6465 Dynamical Systems +1302.6940 Instrumentation and Detectors +1303.5830 Phenomenology +1304.1069 Dynamical Systems +1304.1243 Materials Science +1304.4599 Phenomenology +1304.5773 +1305.1832 Atomic Physics +1305.2594 Soft Condensed Matter +1305.3710 +1305.3734 Combinatorics +1305.7244 Theory +1306.3356 Functional Analysis +1306.3722 Cosmology and Nongalactic Astrophysics +1306.4282 Mesoscale and Nanoscale Physics +1306.4878 Algebraic Geometry +1306.5980 +1306.6612 Cosmology and Nongalactic Astrophysics +1307.0636 +1307.0685 Information Theory +1307.2996 Materials Science +1307.3260 Mesoscale and Nanoscale Physics +1307.5924 Adaptation and Self-Organizing Systems +1308.0238 +1308.0752 +1308.1008 +1308.1315 +1308.1563 +1308.3766 Superconductivity +1308.4033 Phenomenology +1308.4496 Superconductivity +1308.6036 Mesoscale and Nanoscale Physics +1308.6304 Lattice +1309.2135 +1309.2144 Fluid Dynamics +1309.2960 +1309.3141 Fluid Dynamics +1309.3683 Materials Science +1309.4359 Lattice +1309.4609 Superconductivity +1309.5485 +1309.5671 Distributed, Parallel, and Cluster Computing +1309.6428 Dynamical Systems +1309.7463 Physics and Society +1310.1058 Statistical Mechanics +1310.1191 Mathematical Software +1310.1194 Mathematical Software +1310.1774 Phenomenology +1310.2959 Learning +1310.3384 Quantum Gases +1310.3620 Phenomenology +1310.5077 +1310.5906 Plasma Physics +1310.6955 Computational Geometry +1310.6996 Superconductivity +1310.7612 Analysis of PDEs +1310.8239 Probability +1311.0372 Classical Analysis and ODEs +1311.0446 Phenomenology +1311.0680 Social and Information Networks +1311.0781 Solar and Stellar Astrophysics +1311.1465 Disordered Systems and Neural Networks +1311.1668 Plasma Physics +1311.2577 Theory +1311.2606 Cosmology and Nongalactic Astrophysics +1311.3272 Cosmology and Nongalactic Astrophysics +1311.4025 Machine Learning +1311.5371 +1311.6523 Cosmology and Nongalactic Astrophysics +1312.0427 Mesoscale and Nanoscale Physics +1312.0981 +1312.2157 Optics +1312.3148 +1312.3451 Phenomenology +1312.4694 Superconductivity +1312.6401 Quantum Gases +1312.7208 +1401.0293 History and Philosophy of Physics +1401.1422 Genomics +1401.2002 Optics +1401.3340 Astrophysics of Galaxies +1401.4303 Phenomenology +1401.4533 Computers and Society +1401.5639 Phenomenology +1401.7711 Cosmology and Nongalactic Astrophysics +1402.0419 Statistical Mechanics +1402.1855 Theory +1402.3362 Mesoscale and Nanoscale Physics +1402.3644 Materials Science +1402.4277 Combinatorics +1402.4857 Atomic and Molecular Clusters +1402.5018 Fluid Dynamics +1402.5023 Fluid Dynamics +1402.5327 Quantitative Methods +1402.5341 Quantitative Methods +1402.5348 Quantitative Methods +1402.5351 Computer Science and Game Theory +1402.5596 Methodology +1402.5945 Commutative Algebra +1402.6017 Number Theory +1402.6505 Phenomenology +1402.6649 Medical Physics +1402.6655 Optimization and Control +1402.7022 High Energy Astrophysical Phenomena +1402.7035 Social and Information Networks +1402.7056 Statistical Mechanics +1402.7072 Plasma Physics +1402.7083 Solar and Stellar Astrophysics +1402.7089 Optics +1402.7091 +1402.7093 Probability +1402.7095 Materials Science +1402.7099 Symplectic Geometry +1402.7100 Mesoscale and Nanoscale Physics +1402.7104 Analysis of PDEs +1402.7105 Combinatorics +1402.7109 Numerical Analysis +1402.7114 Theory +1402.7118 Cryptography and Security +1402.7119 Theory +1402.7120 Analysis of PDEs +1402.7121 Functional Analysis +1402.7123 Accelerator Physics +1402.7126 Operator Algebras +1402.7128 Mesoscale and Nanoscale Physics +1402.7131 Computers and Society +1402.7136 Systems and Control +1402.7139 High Energy Astrophysical Phenomena +1402.7147 +1402.7150 Formal Languages and Automata Theory +1402.7152 +1402.7153 Algebraic Geometry +1402.7155 +1402.7157 Analysis of PDEs +1402.7158 Combinatorics +1402.7159 Phenomenology +1402.7162 Computer Vision and Pattern Recognition +1402.7163 Optimization and Control +1402.7164 +1402.7166 +1402.7167 Astrophysics of Galaxies +1402.7170 Information Theory +1402.7172 Statistical Mechanics +1402.7177 Materials Science +1402.7181 Analysis of PDEs +1402.7183 Analysis of PDEs +1402.7184 Dynamical Systems +1402.7186 Spectral Theory +1402.7190 Databases +1402.7192 Functional Analysis +1402.7195 Instrumentation and Methods for Astrophysics +1402.7197 Number Theory +1402.7198 Networking and Internet Architecture +1402.7200 Information Retrieval +1402.7204 +1402.7210 +1402.7213 Discrete Mathematics +1402.7215 Populations and Evolution +1402.7216 Distributed, Parallel, and Cluster Computing +1402.7223 Databases +1402.7224 Discrete Mathematics +1402.7226 Rings and Algebras +1402.7227 Solar and Stellar Astrophysics +1402.7228 Databases +1402.7232 Superconductivity +1402.7234 Quantum Gases +1402.7238 Analysis of PDEs +1402.7239 Strongly Correlated Electrons +1402.7246 Physics and Society +1402.7252 Physics Education +1402.7256 +1402.7257 Combinatorics +1402.7258 Information Theory +1402.7261 Optics +1402.7262 Optics +1402.7265 Computation and Language +1402.7267 Analysis of PDEs +1402.7268 Physics and Society +1402.7269 Number Theory +1402.7272 Phenomenology +1402.7276 Artificial Intelligence +1402.7279 History and Philosophy of Physics +1402.7281 Chemical Physics +1402.7282 Mesoscale and Nanoscale Physics +1402.7285 Materials Science +1402.7287 +1402.7289 Formal Languages and Automata Theory +1402.7293 Discrete Mathematics +1402.7301 Discrete Mathematics +1402.7302 Phenomenology +1402.7306 Theory +1402.7309 General Topology +1402.7312 Number Theory +1402.7314 Networking and Internet Architecture +1402.7318 Optics +1402.7320 Populations and Evolution +1402.7322 Methodology +1402.7323 Optimization and Control +1402.7324 Computational Engineering, Finance, and Science +1402.7325 Astrophysics of Galaxies +1402.7326 Combinatorics +1402.7328 Metric Geometry +1402.7329 Instrumentation and Methods for Astrophysics +1402.7330 +1402.7331 Classical Analysis and ODEs +1402.7332 Populations and Evolution +1402.7336 Earth and Planetary Astrophysics +1402.7339 Functional Analysis +1402.7341 Databases +1402.7347 Computational Geometry +1402.7350 Information Theory +1402.7351 Computational Engineering, Finance, and Science +1402.7352 Systems and Control +1402.7357 +1402.7365 Algebraic Geometry +nucl-ex/0612010 +0905.1742 Algebraic Topology +0911.4114 Numerical Analysis +1104.1369 Algebraic Geometry +1104.5689 Category Theory +1106.1827 Rings and Algebras +1106.3825 History and Overview +1108.1005 Differential Geometry +1109.3899 Geometric Topology +1110.6716 Quantum Gases +1112.1626 Complex Variables +1112.4630 +1112.5613 Analysis of PDEs +1203.4550 +1203.5609 +1205.6006 Representation Theory +1206.2486 Algebraic Geometry +1206.5841 Earth and Planetary Astrophysics +1207.1025 Soft Condensed Matter +1208.2908 Performance +1210.0884 Earth and Planetary Astrophysics +1210.7500 +1211.2993 +1211.4273 Probability +1211.6375 Theory +1211.7017 Strongly Correlated Electrons +1212.0668 Phenomenology +1212.2310 Networking and Internet Architecture +1212.3150 Number Theory +1212.5812 Combinatorics +1301.0818 Earth and Planetary Astrophysics +1301.1612 Astrophysics of Galaxies +1302.0593 Atomic Physics +1302.6966 +1303.2088 Mesoscale and Nanoscale Physics +1303.2470 Fluid Dynamics +1303.3650 Algebraic Geometry +1303.4404 Phenomenology +1303.6276 Cosmology and Nongalactic Astrophysics +1303.7311 Representation Theory +1304.3398 Theory +1304.4061 Theory +1304.7591 Atomic Physics +1305.1974 Solar and Stellar Astrophysics +1305.3242 High Energy Astrophysical Phenomena +1305.4072 Materials Science +1305.4493 +1305.4511 Applications +1305.4672 +1305.4845 +1305.6604 +1305.7447 Rings and Algebras +1306.0262 Phenomenology +1306.2339 Mesoscale and Nanoscale Physics +1306.6285 Populations and Evolution +1307.1201 Algebraic Topology +1307.2403 Symplectic Geometry +1307.3641 Complex Variables +1307.4109 Strongly Correlated Electrons +1307.4403 Strongly Correlated Electrons +1307.6782 Other Condensed Matter +1308.0153 Theory +1308.4860 Phenomenology +1308.5487 Quantum Gases +1309.1934 Phenomenology +1309.2711 +1309.3171 Materials Science +1309.3371 Atomic Physics +1309.4352 Soft Condensed Matter +1309.4368 +1309.4676 Strongly Correlated Electrons +1309.6066 Molecular Networks +1309.7362 Quantum Gases +1310.0277 Statistical Mechanics +1310.2619 Social and Information Networks +1310.3507 Classical Analysis and ODEs +1310.6056 Number Theory +1310.6153 Optics +1310.7273 Classical Analysis and ODEs +1310.8105 Quantum Gases +1311.2373 Atomic Physics +1311.2980 +1311.3133 Phenomenology +1311.3185 Biological Physics +1311.3938 +1311.4031 Optimization and Control +1311.4690 Mesoscale and Nanoscale Physics +1312.1501 Experiment +1312.2187 +1312.2760 Complex Variables +1312.3040 Optimization and Control +1312.3353 Theory +1312.3716 Materials Science +1312.3742 Phenomenology +1312.5878 Solar and Stellar Astrophysics +1312.6210 Analysis of PDEs +1401.0800 +1401.2632 Atomic Physics +1401.5768 +1401.7419 Computational Geometry +1402.1969 Mesoscale and Nanoscale Physics +1402.2189 Mesoscale and Nanoscale Physics +1402.2672 Cosmology and Nongalactic Astrophysics +1402.2918 Statistics Theory +1402.3115 Number Theory +1402.3933 Statistical Mechanics +1402.5929 Solar and Stellar Astrophysics +1402.7299 Earth and Planetary Astrophysics +1403.0076 Analysis of PDEs +1403.1144 +1403.1162 Classical Physics +1403.2171 Theory +1403.2177 +1403.3301 Populations and Evolution +1403.3764 Numerical Analysis +1403.3852 +1403.3919 Cosmology and Nongalactic Astrophysics +1403.3978 Information Theory +1403.4267 Numerical Analysis +1403.4358 Instrumentation and Methods for Astrophysics +1403.4380 +1403.4405 Information Theory +1403.4414 Number Theory +1403.4415 Social and Information Networks +1403.4450 Functional Analysis +1403.4603 Materials Science +1403.4604 Theory +1403.4608 Social and Information Networks +1403.4614 Number Theory +1403.4623 Rings and Algebras +1403.4626 Instrumentation and Methods for Astrophysics +1403.4629 Algebraic Geometry +1403.4633 Materials Science +1403.4635 Physics Education +1403.4636 Biomolecules +1403.4642 Combinatorics +1403.4646 Functional Analysis +1403.4656 Materials Science +1403.4666 Superconductivity +1403.4670 Systems and Control +1403.4671 History and Philosophy of Physics +1403.4677 Networking and Internet Architecture +1403.4684 Rings and Algebras +1403.4686 Lattice +1403.4689 Probability +1403.4690 Logic +1403.4699 Optimization and Control +1403.4701 Combinatorics +1403.4702 Other Computer Science +1403.4706 Number Theory +1403.4708 Representation Theory +1403.4709 Number Theory +1403.4711 Multiagent Systems +1403.4712 Number Theory +1403.4713 Analysis of PDEs +1403.4714 Information Theory +1403.4718 Operator Algebras +1403.4721 Soft Condensed Matter +1403.4722 Human-Computer Interaction +1403.4724 Commutative Algebra +1403.4726 Representation Theory +1403.4732 Quantitative Methods +1403.4738 Materials Science +1403.4746 Functional Analysis +1403.4751 Information Theory +1403.4753 Astrophysics of Galaxies +1403.4755 Optimization and Control +1403.4756 Materials Science +1403.4758 Representation Theory +1403.4759 Computation and Language +1403.4762 Optimization and Control +1403.4767 Soft Condensed Matter +1403.4769 Functional Analysis +1403.4770 Plasma Physics +1403.4771 Statistical Mechanics +1403.4776 Combinatorics +1403.4777 Computer Vision and Pattern Recognition +1403.4778 +1403.4780 Cryptography and Security +1403.4781 Learning +1403.4782 Cryptography and Security +1403.4789 Systems and Control +1403.4791 Mesoscale and Nanoscale Physics +1403.4793 Commutative Algebra +1403.4795 Emerging Technologies +1403.4797 High Energy Astrophysical Phenomena +1403.4802 Complex Variables +1403.4803 Methodology +1403.4804 Systems and Control +1403.4806 Optimization and Control +1403.4808 Algebraic Geometry +1403.4810 Optimization and Control +1403.4816 Instrumentation and Methods for Astrophysics +1403.4818 Materials Science +1403.4819 Optimization and Control +1403.4827 Statistics Theory +1403.4829 Cryptography and Security +1403.4831 Rings and Algebras +1403.4834 Probability +1403.4838 Algebraic Topology +1403.4842 Instrumentation and Detectors +1403.4844 Functional Analysis +1403.4845 Combinatorics +1403.4847 Information Theory +1403.4848 Materials Science +1403.4851 Information Theory +1403.4858 Metric Geometry +1403.4862 Commutative Algebra +1403.4866 Analysis of PDEs +1403.4867 Soft Condensed Matter +1403.4868 Systems and Control +1403.4869 Materials Science +1403.4870 Algebraic Topology +1403.4871 Neural and Evolutionary Computing +1403.4876 Group Theory +1403.4879 Information Theory +1403.4880 Logic in Computer Science +1403.4884 Experiment +1403.4887 Computation and Language +1403.4895 Probability +1403.4911 Metric Geometry +1403.4913 Analysis of PDEs +1403.4916 Combinatorics +1403.4922 Materials Science +1403.4926 Solar and Stellar Astrophysics +1403.4928 Computation and Language +nlin/0305045 Chaotic Dynamics +nlin/0305046 Chaotic Dynamics +0805.2304 Strongly Correlated Electrons +0805.3409 Functional Analysis +0901.1003 Logic +0901.1584 Logic +0902.0711 Solar and Stellar Astrophysics +0902.1558 +0912.4720 +1001.3013 Functional Analysis +1002.2009 Solar and Stellar Astrophysics +1007.3367 Logic +1008.1378 Probability +1008.5192 +1009.1710 Classical Analysis and ODEs +1009.1801 Functional Analysis +1009.3418 Classical Analysis and ODEs +1012.0996 Methodology +1101.1199 Number Theory +1101.1582 Strongly Correlated Electrons +1101.2296 Complex Variables +1101.4448 Numerical Analysis +1101.5450 Numerical Analysis +1102.4733 Algebraic Geometry +1103.3086 +1103.3088 +1103.4700 Differential Geometry +1103.5679 Statistics Theory +1105.2827 Adaptation and Self-Organizing Systems +1106.2936 Representation Theory +1109.1360 Soft Condensed Matter +1109.3265 Numerical Analysis +1111.1292 Rings and Algebras +1111.3659 Adaptation and Self-Organizing Systems +1111.7214 Rings and Algebras +1201.4086 Complex Variables +1202.1468 +1202.3680 Probability +1202.4037 +1202.4092 Logic +1203.5157 Numerical Analysis +1204.5246 Algebraic Geometry +1204.6001 +1206.1905 +1206.2340 Strongly Correlated Electrons +1207.0443 Formal Languages and Automata Theory +1207.5490 Classical Physics +1208.2009 Solar and Stellar Astrophysics +1209.3637 Popular Physics +1210.3395 Information Theory +1210.4992 Formal Languages and Automata Theory +1210.5908 Information Theory +1210.6046 Cosmology and Nongalactic Astrophysics +1210.6799 Methodology +1210.7197 Solar and Stellar Astrophysics +1210.8254 Differential Geometry +1210.8371 Differential Geometry +1210.8450 +1211.0657 Differential Geometry +1211.1968 Computer Vision and Pattern Recognition +1211.4065 Analysis of PDEs +1211.6836 Dynamical Systems +1212.3630 Algebraic Geometry +1212.4939 Numerical Analysis +1212.5964 Geometric Topology +1301.2586 +1301.5984 Analysis of PDEs +1302.0592 General Mathematics +1302.5596 +1303.3524 Combinatorics +1303.6533 Rings and Algebras +1304.2185 Phenomenology +1304.3177 Formal Languages and Automata Theory +1304.5299 Learning +1305.0213 Machine Learning +1305.0456 Cosmology and Nongalactic Astrophysics +1305.1641 Mesoscale and Nanoscale Physics +1305.1710 Fluid Dynamics +1305.4061 Phenomenology +1305.4139 Group Theory +1305.4881 Theory +1305.5162 Phenomenology +1305.6361 Quantum Gases +1305.6892 Strongly Correlated Electrons +1306.1397 Solar and Stellar Astrophysics +1306.1611 Fluid Dynamics +1306.2099 +1306.3216 +1306.3662 Strongly Correlated Electrons +1306.4259 Fluid Dynamics +1306.5565 Disordered Systems and Neural Networks +1307.4366 +1307.5895 Commutative Algebra +1307.6134 Learning +1307.6177 Populations and Evolution +1307.7601 Phenomenology +1307.8105 Phenomenology +1308.1046 +1308.1770 Numerical Analysis +1308.2578 Cosmology and Nongalactic Astrophysics +1308.3158 Phenomenology +1308.4037 Phenomenology +1308.4447 Phenomenology +1308.6317 Adaptation and Self-Organizing Systems +1309.0427 Chemical Physics +1309.2039 +1309.5105 Systems and Control +1309.5265 General Physics +1309.5519 +1310.0878 +1310.3687 Experiment +1310.4185 Theory +1310.4815 Optics +1310.4946 Other Quantitative Biology +1310.5756 Optics +1310.7153 Complex Variables +1310.7338 +1310.8249 Rings and Algebras +1311.0707 Machine Learning +1311.0930 Phenomenology +1311.1799 Experiment +1311.2197 Mesoscale and Nanoscale Physics +1311.3663 Phenomenology +1311.4035 Neurons and Cognition +1311.4758 Quantum Algebra +1311.4789 Mesoscale and Nanoscale Physics +1311.5648 Algebraic Topology +1311.6736 Experiment +1311.7317 Strongly Correlated Electrons +1312.0365 Probability +1312.0516 Learning +1312.1945 Mesoscale and Nanoscale Physics +1312.6002 Neural and Evolutionary Computing +1312.6098 Learning +1312.7582 Experiment +1401.1504 Theory +1401.2885 Earth and Planetary Astrophysics +1401.3565 Superconductivity +1401.6647 Complex Variables +1401.6743 Mesoscale and Nanoscale Physics +1401.7673 Astrophysics of Galaxies +1401.8294 Physics and Society +1402.0020 Combinatorics +1402.0406 +1402.1201 Number Theory +1402.1220 Differential Geometry +1402.1543 Strongly Correlated Electrons +1402.1783 Learning +1402.1861 Group Theory +1402.2798 Fluid Dynamics +1402.2843 Computational Complexity +1402.2861 Classical Physics +1402.3011 Logic in Computer Science +1402.3132 Optics +1402.3290 +1402.3291 Functional Analysis +1402.3301 Social and Information Networks +1402.3304 Populations and Evolution +1402.3305 Distributed, Parallel, and Cluster Computing +1402.3310 Numerical Analysis +1402.3311 History and Overview +1402.3315 Materials Science +1402.3317 Systems and Control +1402.3318 Materials Science +1402.3324 Populations and Evolution +1402.3327 Numerical Analysis +1402.3328 Astrophysics of Galaxies +1402.3329 Databases +1402.3340 Statistical Mechanics +1402.3341 Combinatorics +1402.3342 Theory +1402.3343 Instrumentation and Detectors +1402.3348 Disordered Systems and Neural Networks +1402.3349 +1402.3355 Classical Physics +1402.3357 Classical Analysis and ODEs +1402.3358 Combinatorics +1402.3363 Soft Condensed Matter +1402.3367 +1402.3371 Computation and Language +1402.3372 Algebraic Geometry +1402.3373 Theory +1402.3374 Networking and Internet Architecture +1402.3377 Materials Science +1402.3378 Group Theory +1402.3379 Mesoscale and Nanoscale Physics +1402.3382 Computation and Language +1402.3383 Number Theory +1402.3387 Superconductivity +1402.3392 Information Theory +1402.3395 Metric Geometry +1402.3396 Dynamical Systems +1402.3400 Differential Geometry +1402.3402 Optimization and Control +1402.3403 Accelerator Physics +1402.3404 Statistical Mechanics +1402.3405 Computation and Language +1402.3406 Fluid Dynamics +1402.3407 Exactly Solvable and Integrable Systems +1402.3408 Dynamical Systems +1402.3410 Computation +1402.3412 Solar and Stellar Astrophysics +1402.3418 Digital Libraries +1402.3419 Phenomenology +1402.3422 +1402.3423 Phenomenology +1402.3424 General Finance +1402.3425 +1402.3430 Differential Geometry +1402.3431 Representation Theory +1402.3434 Optics +1402.3438 Probability +1402.3447 Computer Science and Game Theory +1402.3450 Computer Science and Game Theory +1402.3452 Data Structures and Algorithms +1402.3455 General Mathematics +1402.3459 Mesoscale and Nanoscale Physics +1402.3464 Portfolio Management +1402.3470 Information Retrieval +1402.3472 Data Structures and Algorithms +1402.3474 Solar and Stellar Astrophysics +1402.3478 Methodology +1402.3484 Systems and Control +1402.3485 Classical Analysis and ODEs +1402.3489 Materials Science +1402.3492 Number Theory +1402.3497 Analysis of PDEs +1402.3499 Physics and Society +1402.3501 Symbolic Computation +1402.3502 Tissues and Organs +1402.3508 Instrumentation and Detectors +1402.3511 Neural and Evolutionary Computing +1402.3512 Probability +1402.3515 Instrumentation and Methods for Astrophysics +1402.3517 Chemical Physics +1402.3520 Information Theory +1402.3525 +1402.3539 +1402.3542 Computer Science and Game Theory +1402.3548 Rings and Algebras +1402.3549 Performance +1402.3550 Cell Behavior +1402.3557 Computer Vision and Pattern Recognition +1402.3559 Methodology +1402.3570 Probability +1402.3574 Analysis of PDEs +1402.3578 Artificial Intelligence +1402.3582 Combinatorics +1402.3584 Optimization and Control +cond-mat/0006100 Superconductivity +cond-mat/0011407 Strongly Correlated Electrons +cond-mat/0604621 Statistical Mechanics +gr-qc/0703020 +hep-ph/9406283 Phenomenology +math/0312189 General Mathematics +math/0605156 K-Theory and Homology +0710.0293 +0710.4996 +0809.1527 +0811.1228 Algebraic Geometry +0901.1909 Analysis of PDEs +0903.4984 Numerical Analysis +0907.5314 Operator Algebras +0908.0206 +0908.0261 +0908.1817 +0908.1929 +0911.4711 Algebraic Geometry +1001.2406 +1002.2716 +1005.4125 Algebraic Geometry +1008.2374 Operator Algebras +1008.3405 Numerical Analysis +1008.4045 Numerical Analysis +1010.5405 Analysis of PDEs +1010.5406 Analysis of PDEs +1010.5966 Analysis of PDEs +1010.5967 Analysis of PDEs +1010.5968 Numerical Analysis +1010.6004 Probability +1011.3456 Numerical Analysis +1101.1482 Operator Algebras +1102.0904 Numerical Analysis +1104.1869 +1104.1870 +1104.3339 +1105.0203 +1108.2876 +1108.2951 +1108.3160 Fluid Dynamics +1108.3495 Quantitative Methods +1108.3722 +1108.5589 Statistical Mechanics +1109.1794 Complex Variables +1109.4538 Probability +1110.0597 +1110.1655 Probability +1111.1395 Algebraic Geometry +1111.3093 Cryptography and Security +1111.5828 Operator Algebras +1112.1244 Combinatorics +1112.1247 Combinatorics +1112.1444 Data Structures and Algorithms +1112.2993 Computational Complexity +1112.4024 Dynamical Systems +1201.6324 +1202.3088 Functional Analysis +1202.3954 +1203.2928 Strongly Correlated Electrons +1204.1708 +1204.4143 Probability +1204.4495 Operator Algebras +1205.1927 Group Theory +1205.3016 Operator Algebras +1205.6668 Algebraic Topology +1207.1733 Rings and Algebras +1207.2181 Theory +1207.4684 Data Structures and Algorithms +1207.5113 Computer Vision and Pattern Recognition +1208.1714 Phenomenology +1208.1968 Number Theory +1208.2494 Geometric Topology +1208.3324 Computational Geometry +1208.4148 Number Theory +1208.5520 Pricing of Securities +1209.4231 General Physics +1209.4945 Representation Theory +1209.5521 +1210.0558 Information Theory +1210.1193 Data Structures and Algorithms +1210.6066 Operator Algebras +1210.6067 Operator Algebras +1210.6432 Rings and Algebras +1210.6459 Combinatorics +1210.7828 Physics and Society +1211.1119 Neural and Evolutionary Computing +1211.1761 Quantum Gases +1211.1776 Combinatorics +1211.5948 Algebraic Geometry +1211.6984 Cryptography and Security +1212.1500 Phenomenology +1212.3399 Number Theory +1212.5392 +1301.0487 K-Theory and Homology +1301.3167 Operator Algebras +1302.0954 Number Theory +1302.1458 Probability +1302.2284 Mesoscale and Nanoscale Physics +1302.2405 Combinatorics +1302.3133 Solar and Stellar Astrophysics +1303.1124 +1303.1131 Representation Theory +1303.2270 Optimization and Control +1303.5124 +1303.5337 K-Theory and Homology +1303.5509 Combinatorics +1304.1398 Numerical Analysis +1304.3270 +1304.4290 Commutative Algebra +1304.4434 Functional Analysis +1304.5097 Physics and Society +1304.5429 Computational Complexity +1304.7464 Metric Geometry +1305.1698 Algebraic Geometry +1305.4014 Physics and Society +1305.4562 +1305.5227 Combinatorics +1305.5795 Combinatorics +1305.5989 +1305.6007 Quantum Gases +1305.7162 Mesoscale and Nanoscale Physics +1306.3363 +1306.5016 Probability +1306.5422 Number Theory +1306.6534 Group Theory +1307.0229 Classical Physics +1307.0870 Metric Geometry +1307.1775 Soft Condensed Matter +1307.1899 Optics +1307.2270 Lattice +1307.2646 Complex Variables +1307.3491 Theory +1307.5239 Optics +1307.5882 Analysis of PDEs +1307.5951 +1307.7007 Combinatorics +1307.7751 Distributed, Parallel, and Cluster Computing +1307.7928 General Topology +1308.2862 Statistical Mechanics +1308.3089 Statistics Theory +1308.6116 Astrophysics of Galaxies +1308.6467 +1308.6787 Optics +1309.0273 Populations and Evolution +1309.1275 Functional Analysis +1309.1754 Statistics Theory +1309.1884 Databases +1309.2560 Combinatorics +1309.2924 Soft Condensed Matter +1309.2940 Cosmology and Nongalactic Astrophysics +1309.3403 +1309.3426 Soft Condensed Matter +1309.4161 Social and Information Networks +1309.7136 Materials Science +1310.0465 Cosmology and Nongalactic Astrophysics +1310.0668 +1310.0740 Machine Learning +1310.1300 Statistical Mechanics +1310.1406 Numerical Analysis +1310.1794 Analysis of PDEs +1310.2384 +1310.2417 Experiment +1310.5118 Differential Geometry +1310.6989 Quantum Gases +1310.7820 Numerical Analysis +1311.0321 Materials Science +1311.1866 +1311.2122 Combinatorics +1311.3433 Phenomenology +1311.4022 Other Condensed Matter +1311.4154 Probability +1311.4677 Representation Theory +1311.4804 Representation Theory +1311.5005 Experiment +1311.5338 Instrumentation and Methods for Astrophysics +1311.6568 Dynamical Systems +1311.6696 +1311.6793 +1312.0378 Computational Geometry +1312.0679 Theory +1312.0803 Computational Geometry +1312.1769 Quantum Algebra +1312.1812 Programming Languages +1312.2416 +1312.2512 Mesoscale and Nanoscale Physics +1312.3012 Optimization and Control +1312.3013 Optimization and Control +1312.3326 Phenomenology +1312.4249 Phenomenology +1312.4586 Strongly Correlated Electrons +1312.5741 Mesoscale and Nanoscale Physics +1312.5820 Number Theory +1312.6951 Materials Science +1312.7241 Differential Geometry +1312.7276 +1312.7604 Machine Learning +1401.0029 Experiment +1401.0112 Group Theory +1401.0183 Mesoscale and Nanoscale Physics +1401.0908 Combinatorics +1401.2174 Differential Geometry +1401.2358 Soft Condensed Matter +1401.3663 Phenomenology +1401.3700 Computer Vision and Pattern Recognition +1401.3980 Cosmology and Nongalactic Astrophysics +1401.5392 +1401.6042 Algebraic Geometry +1401.7576 Superconductivity +1401.7615 General Finance +1402.0188 Statistical Mechanics +1402.0321 High Energy Astrophysical Phenomena +1402.2836 Physics Education +1402.3073 Phenomenology +1402.4666 +1402.5826 Commutative Algebra +1402.6212 Cosmology and Nongalactic Astrophysics +1402.6374 Analysis of PDEs +1402.6591 Strongly Correlated Electrons +1403.0110 Superconductivity +1403.0273 Combinatorics +1403.0835 Computational Geometry +1403.0839 Algebraic Topology +1403.1447 Complex Variables +1403.1866 Cryptography and Security +1403.1869 Phenomenology +1403.2131 Numerical Analysis +1403.3352 Combinatorics +1403.4555 Functional Analysis +1403.4698 Methodology +1403.4760 Materials Science +1403.4765 +1403.5564 Solar and Stellar Astrophysics +1403.6161 Phenomenology +1403.6948 +1403.7123 Information Theory +1403.7485 Accelerator Physics +1403.7737 Learning +1403.7863 Classical Analysis and ODEs +1403.8031 Number Theory +1403.8135 Other Quantitative Biology +1404.0823 Combinatorics +1404.0915 +1404.1004 Symplectic Geometry +1404.1098 +1404.1368 Physics and Society +1404.1370 Numerical Analysis +1404.1382 Combinatorics +1404.1383 Operator Algebras +1404.1385 Mesoscale and Nanoscale Physics +1404.1391 Theory +1404.1392 Probability +1404.1395 Cryptography and Security +1404.1396 Quantitative Methods +1404.1398 General Topology +1404.1403 Soft Condensed Matter +1404.1404 Systems and Control +1404.1405 Social and Information Networks +1404.1421 Populations and Evolution +1404.1423 Fluid Dynamics +1404.1424 Functional Analysis +1404.1440 Differential Geometry +1404.1441 Optimization and Control +1404.1443 Information Theory +1404.1446 Optimization and Control +1404.1449 Computer Science and Game Theory +1404.1453 Mesoscale and Nanoscale Physics +1404.1456 Materials Science +1404.1457 Combinatorics +1404.1462 Networking and Internet Architecture +1404.1463 Dynamical Systems +1404.1464 Networking and Internet Architecture +1404.1466 Analysis of PDEs +1404.1468 Sound +1404.1469 Networking and Internet Architecture +1404.1473 Methodology +1404.1475 Numerical Analysis +1404.1478 Geophysics +1404.1480 Probability +1404.1481 Probability +1404.1485 Category Theory +1404.1486 Information Theory +1404.1491 Learning +1404.1492 Machine Learning +1404.1495 Statistics Theory +1404.1498 Systems and Control +1404.1501 +1404.1504 Learning +1404.1505 Combinatorics +1404.1511 Artificial Intelligence +1404.1512 Functional Analysis +1404.1513 Rings and Algebras +1404.1514 Information Retrieval +1404.1515 Artificial Intelligence +1404.1517 Artificial Intelligence +1404.1518 Artificial Intelligence +1404.1523 Group Theory +1404.1524 Commutative Algebra +1404.1525 Logic +1404.1528 +1404.1533 Optics +1404.1535 Optics +1404.1540 Optics +1404.1542 Classical Physics +1404.1546 Probability +1404.1550 Analysis of PDEs +1404.1551 Numerical Analysis +1404.1553 +1404.1556 Methodology +1404.1557 Number Theory +1404.1558 Cosmology and Nongalactic Astrophysics +1404.1559 Learning +1404.1560 Data Structures and Algorithms +1404.1563 Functional Analysis +1404.1567 Combinatorics +1404.1571 Differential Geometry +1404.1573 Chemical Physics +1404.1574 Earth and Planetary Astrophysics +1404.1577 Data Structures and Algorithms +1404.1586 Logic +1404.1590 Classical Physics +1404.1595 +1404.1597 Algebraic Topology +1404.1599 Mesoscale and Nanoscale Physics +1404.1601 Information Theory +1404.1603 Mesoscale and Nanoscale Physics +1404.1604 Analysis of PDEs +1404.1612 Classical Physics +1404.1614 Neural and Evolutionary Computing +1404.1616 Soft Condensed Matter +1404.1623 Algebraic Geometry +1404.1624 Analysis of PDEs +1404.1626 Quantitative Methods +1404.1627 Functional Analysis +1404.1632 Materials Science +1404.1633 Functional Analysis +1404.1634 Cryptography and Security +1404.1635 Materials Science +1404.1636 Number Theory +1404.1640 Analysis of PDEs +1404.1643 Combinatorics +1404.1645 Networking and Internet Architecture +1404.1646 Computational Geometry +1404.1647 Networking and Internet Architecture +1404.1658 Materials Science +1404.1663 Chemical Physics +1404.1664 Human-Computer Interaction +1404.1665 Combinatorics +1404.1666 Materials Science +1404.1667 Optimization and Control +1404.1669 Computers and Society +1404.1671 Analysis of PDEs +1404.1672 Instrumentation and Detectors +1404.1674 Information Theory +1404.1675 Information Theory +1404.1688 Solar and Stellar Astrophysics +1404.1692 Probability +1404.1695 Robotics +1404.1696 Geophysics +1404.1702 Dynamical Systems +1404.1703 Differential Geometry +1404.1704 Biological Physics +1404.1709 Methodology +1404.1710 Applications +1404.1711 Differential Geometry +1404.1713 Theory +1404.1714 Combinatorics +1404.1716 Cryptography and Security +1404.1717 Classical Analysis and ODEs +1404.1719 Computational Physics +1404.1720 Representation Theory +1404.1722 Analysis of PDEs +1404.1724 Analysis of PDEs +1404.1726 Complex Variables +1404.1731 Probability +1404.1733 Methodology +1404.1735 +1404.1743 Networking and Internet Architecture +1404.1746 Classical Analysis and ODEs +1404.1749 Differential Geometry +1404.1753 Materials Science +1404.1755 Strongly Correlated Electrons +1404.1756 Analysis of PDEs +1404.1757 Algebraic Geometry +1404.1771 Dynamical Systems +1404.1772 Solar and Stellar Astrophysics +1404.1773 Pricing of Securities +1404.1774 Commutative Algebra +1404.1780 Optics +1404.1783 Physics and Society +1404.1784 Plasma Physics +1404.1786 Classical Physics +1404.1792 Mesoscale and Nanoscale Physics +1404.1799 Computers and Society +1404.1803 Mesoscale and Nanoscale Physics +1404.1805 +1404.1808 Methodology +1404.1810 Data Structures and Algorithms +1404.1812 Artificial Intelligence +1404.1820 Information Theory +1404.1822 Number Theory +1404.1823 Rings and Algebras +1404.1830 Programming Languages +1404.1831 Computer Vision and Pattern Recognition +1404.1835 Dynamical Systems +1404.1836 Cryptography and Security +1404.1843 Physics Education +1404.1844 Physics Education +1404.1847 Computation and Language +1404.1848 Social and Information Networks +1404.1849 Computational Geometry +1404.1850 Number Theory +1404.1853 Mesoscale and Nanoscale Physics +1404.1856 Methodology +1404.1864 Data Structures and Algorithms +1404.1866 Operator Algebras +1404.1867 Rings and Algebras +1404.1869 Computer Vision and Pattern Recognition +1404.1870 Complex Variables +1404.1871 Functional Analysis +1404.1879 Solar and Stellar Astrophysics +1404.1881 Solar and Stellar Astrophysics +1404.1884 Artificial Intelligence +1404.1893 Optics +1404.1895 Computational Finance +1404.1905 History and Overview +math/0611773 Commutative Algebra +0704.0874 Algebraic Geometry +0711.1529 Logic +0902.3626 Category Theory +0902.4743 Category Theory +0903.4104 Classical Physics +0906.0512 +0906.0928 +1005.0660 Data Analysis, Statistics and Probability +1005.0663 +1005.0699 Phenomenology +1005.0716 +1005.0720 Phenomenology +1005.0740 High Energy Astrophysical Phenomena +1005.0752 Cosmology and Nongalactic Astrophysics +1005.0756 Phenomenology +1005.0760 Theory +1005.0769 Phenomenology +1005.0814 +1005.0817 +1005.0819 Theory +1005.0820 +1005.0847 Cosmology and Nongalactic Astrophysics +1005.0850 Phenomenology +1005.0860 +1005.0872 Phenomenology +1005.0900 +1005.0935 +1005.0955 Phenomenology +1005.0962 +1005.0999 +1005.1000 +1005.1010 Phenomenology +1005.1025 Phenomenology +1005.1039 Instrumentation and Detectors +1005.1044 Materials Science +1005.1047 +1005.1057 +1005.1066 Theory +1005.1077 Phenomenology +1005.1106 Phenomenology +1005.1132 +1005.1163 Solar and Stellar Astrophysics +1005.1173 Phenomenology +1005.1174 Theory +1005.1181 Theory +1005.1185 Phenomenology +1005.1239 +1005.1245 Phenomenology +1005.1249 +1005.1282 Phenomenology +1005.1324 Phenomenology +1005.1325 +1005.1362 Phenomenology +1005.1366 Phenomenology +1005.1372 Phenomenology +1005.1377 Phenomenology +1005.1382 Phenomenology +1005.1385 +1005.1386 +1005.1414 +1005.1427 +1005.1441 Phenomenology +1005.1450 Experiment +1005.1456 +1005.1468 Phenomenology +1005.1541 Phenomenology +1005.1577 Phenomenology +1005.1578 Theory +1005.1582 Phenomenology +1005.1599 +1005.1606 Phenomenology +1005.1630 +1005.1637 +1005.1638 Cosmology and Nongalactic Astrophysics +1005.1649 Cosmology and Nongalactic Astrophysics +1005.1650 Theory +1005.1655 Phenomenology +1005.1674 Phenomenology +1005.1680 Theory +1005.1688 Phenomenology +1005.1741 +1005.1745 Plasma Physics +1005.1746 Instrumentation and Detectors +1005.1810 +1005.1869 +1005.1927 Cosmology and Nongalactic Astrophysics +1005.1952 Phenomenology +1005.1958 Cosmology and Nongalactic Astrophysics +1005.1968 Phenomenology +1005.1973 Theory +1005.2035 Phenomenology +1005.2105 Phenomenology +1005.2159 Phenomenology +1005.2165 Cosmology and Nongalactic Astrophysics +1005.2172 Theory +1005.2180 Theory +1005.2181 Theory +1005.2205 +1005.2215 Phenomenology +1005.2264 +1005.2266 +1005.2276 +1005.2302 Experiment +1005.2319 +1005.2323 Phenomenology +1005.2328 +1005.2361 +1005.2367 Theory +1005.2377 +1005.2379 High Energy Astrophysical Phenomena +1005.2387 +1005.2441 Solar and Stellar Astrophysics +1005.2444 +1005.2466 +1005.2523 Theory +1005.2552 +1005.2601 Phenomenology +1005.2673 Phenomenology +1005.2686 Lattice +1005.2702 Cosmology and Nongalactic Astrophysics +1005.2740 +1005.2758 Cosmology and Nongalactic Astrophysics +1005.2804 Phenomenology +1005.2896 +1005.2906 +1005.2909 Phenomenology +1005.2922 +1005.2924 Theory +1005.2927 +1005.2956 Phenomenology +1005.2983 +1005.2996 +1005.3001 +1005.3051 Phenomenology +1005.3080 +1005.3108 +1005.3110 +1005.3113 Phenomenology +1005.3114 Cosmology and Nongalactic Astrophysics +1005.3157 Theory +1005.3166 Phenomenology +1005.3183 +1005.3220 Theory +1005.3227 Accelerator Physics +1005.3260 Phenomenology +1005.3262 +1005.3264 Phenomenology +1005.3276 Lattice +1005.3280 Phenomenology +1005.3285 Theory +1005.3287 Theory +1005.3291 Theory +1005.3309 Phenomenology +1005.3321 +1005.3326 +1005.3328 Phenomenology +1005.3351 Phenomenology +1005.3368 Theory +1005.3392 Theory +1005.3396 Experiment +1005.3401 Experiment +1005.3419 +1005.3427 High Energy Astrophysical Phenomena +1005.3432 Phenomenology +1005.3468 Lattice +1005.3493 Theory +1005.3506 Theory +1005.3508 Lattice +1005.3519 Theory +1005.3537 Theory +1005.3546 Theory +1005.3580 Theory +1005.3593 Phenomenology +1005.3628 Soft Condensed Matter +1005.3629 Instrumentation and Detectors +1005.3673 +1005.3720 Phenomenology +1005.3735 Cosmology and Nongalactic Astrophysics +1005.3815 Strongly Correlated Electrons +1005.3831 Theory +1005.3861 Theory +1005.3941 Theory +1005.3969 +1005.3994 Theory +1005.4001 Phenomenology +1005.4051 Phenomenology +1005.4057 Cosmology and Nongalactic Astrophysics +1005.4063 Cosmology and Nongalactic Astrophysics +1005.4077 Phenomenology +1005.4087 Experiment +1005.4128 +1005.4132 +1005.4136 +1005.4199 Quantum Algebra +1005.4201 +1005.4238 Phenomenology +1005.4282 Phenomenology +1005.4288 Cosmology and Nongalactic Astrophysics +1005.4312 +1005.4333 Strongly Correlated Electrons +1005.4386 Theory +1005.4407 Phenomenology +1005.4414 Phenomenology +1005.4433 Theory +1005.4439 Theory +1005.4449 +1005.4450 Phenomenology +1005.4460 +1005.4469 Theory +1005.4487 Theory +1005.4524 Phenomenology +1005.4538 Phenomenology +1005.4543 Phenomenology +1005.4547 +1005.4602 +1005.4605 Theory +1005.4607 Theory +1005.4643 +1005.4647 Phenomenology +1005.4666 Theory +1005.4687 Cosmology and Nongalactic Astrophysics +1005.4730 Theory +1005.4783 +1005.4792 Phenomenology +1005.4811 Phenomenology +1005.4849 Theory +1005.4851 Phenomenology +1005.4887 Phenomenology +1005.4901 Phenomenology +1005.4922 Phenomenology +1005.4926 +1005.4939 Phenomenology +1005.4942 Theory +1005.4953 Phenomenology +1005.4979 +1005.4994 Theory +1005.5018 +1005.5066 Phenomenology +1005.5067 Theory +1005.5075 Differential Geometry +1005.5103 Other Condensed Matter +1005.5145 +1005.5149 Accelerator Physics +1005.5151 +1005.5153 Phenomenology +1005.5160 Phenomenology +1005.5161 Phenomenology +1005.5178 Mesoscale and Nanoscale Physics +1005.5190 Experiment +1005.5196 Strongly Correlated Electrons +1005.5209 Phenomenology +1005.5213 +1005.5214 +1005.5230 Experiment +1005.5234 +1005.5264 Theory +1005.5286 +1005.5290 Lattice +1005.5311 Theory +1005.5325 +1005.5343 Theory +1005.5345 Theory +1005.5382 Phenomenology +1005.5393 Phenomenology +1005.5416 +1005.5421 Phenomenology +1005.5452 Phenomenology +1005.5460 +1005.5508 Cosmology and Nongalactic Astrophysics +1005.5512 Theory +1005.5521 Theory +1005.5526 Phenomenology +1005.5527 +1005.5562 Phenomenology +1005.5565 +1005.5571 Lattice +1005.5587 Phenomenology +1005.5592 Cosmology and Nongalactic Astrophysics +1005.5609 Experiment +1005.5651 Phenomenology +1005.5652 Phenomenology +1005.5655 Phenomenology +1005.5670 +1005.5672 +1005.5679 +1005.5681 +1005.5695 Phenomenology +1005.5706 Phenomenology +1005.5709 Phenomenology +1005.5711 Cosmology and Nongalactic Astrophysics +1005.5719 Theory +1005.5727 Lattice +1005.5730 +1006.0010 +1006.0059 +1006.0078 Theory +1006.0085 Accelerator Physics +1006.0086 Accelerator Physics +1006.0087 Accelerator Physics +1006.0090 Accelerator Physics +1006.0098 Phenomenology +1006.0131 Phenomenology +1006.0138 +1006.0145 Theory +1006.0157 Theory +1006.0172 Lattice +1006.0181 +1006.0183 Accelerator Physics +1006.0207 Lattice +1006.0211 Phenomenology +1006.0226 Theory +1006.0227 Phenomenology +1006.0273 Theory +1006.0324 Theory +1006.0332 Lattice +1006.0342 Phenomenology +1006.0374 +1006.0387 Phenomenology +1006.0390 Phenomenology +1006.0421 Phenomenology +1006.0424 Theory +1006.0427 +1006.0432 Phenomenology +1006.0510 Theory +1006.0530 +1006.0546 Phenomenology +1006.0558 Lattice +1006.0629 Phenomenology +1006.0634 +1006.0637 Theory +1006.0665 +1006.0672 Lattice +1006.0678 +1006.0687 Cosmology and Nongalactic Astrophysics +1006.0693 Theory +1006.0699 Cosmology and Nongalactic Astrophysics +1006.0705 +1006.0707 Lattice +1006.0710 Phenomenology +1006.0769 Quantum Gases +1006.0774 Theory +1006.0796 +1006.0828 Theory +1006.0867 Phenomenology +1006.0872 Phenomenology +1006.0893 Theory +1006.0910 Phenomenology +1006.0939 Theory +1006.0952 +1006.0976 Theory +1006.0979 Theory +1006.1005 +1006.1009 Phenomenology +1006.1027 +1006.1045 High Energy Astrophysical Phenomena +1006.1065 Phenomenology +1006.1066 +1006.1071 +1006.1092 Phenomenology +1006.1097 Optics +1006.1111 +1006.1134 +1006.1144 Geophysics +1006.1164 Lattice +1006.1214 Theory +1006.1276 Phenomenology +1006.1292 Soft Condensed Matter +1006.1293 Phenomenology +1006.1294 +1006.1299 Cosmology and Nongalactic Astrophysics +1006.1319 Phenomenology +1006.1322 High Energy Astrophysical Phenomena +1006.1355 Cosmology and Nongalactic Astrophysics +1006.1356 Phenomenology +1006.1376 Phenomenology +1006.1394 +1006.1425 Theory +1006.1440 Phenomenology +1006.1448 Phenomenology +1006.1458 Phenomenology +1006.1476 Accelerator Physics +1006.1478 +1006.1501 Phenomenology +1006.1527 +1006.1558 Theory +1006.1562 Theory +1006.1576 +1006.1612 High Energy Astrophysical Phenomena +1006.1617 +1006.1628 High Energy Astrophysical Phenomena +1006.1640 Phenomenology +1006.1641 Computational Physics +1006.1646 Theory +1006.1653 +1006.1664 Cosmology and Nongalactic Astrophysics +1006.1668 +1006.1682 Phenomenology +1006.1688 Phenomenology +1006.1717 Phenomenology +1006.1731 Phenomenology +1006.1738 Cosmology and Nongalactic Astrophysics +1006.1761 +1006.1764 +1006.1787 +1006.1814 +1006.1861 Theory +1006.1863 +1006.1886 Experiment +1006.1889 High Energy Astrophysical Phenomena +1006.1898 Theory +1006.1901 Theory +1006.1936 +1006.1947 Phenomenology +1006.1968 +1006.1975 +1006.1981 +1006.2000 Phenomenology +1006.2007 Theory +1006.2009 Lattice +1006.2046 Lattice +1006.2089 High Energy Astrophysical Phenomena +1006.2091 Phenomenology +1006.2101 Theory +1006.2127 Phenomenology +1006.2144 Phenomenology +1006.2149 +1006.2159 Cosmology and Nongalactic Astrophysics +1006.2161 Quantum Gases +1006.2170 Theory +1006.2178 Materials Science +1006.2186 +1006.2192 Theory +1006.2202 +1006.2209 Theory +1006.2226 +1006.2227 +1006.2228 +1006.2229 +1006.2234 +1006.2247 Accelerator Physics +1006.2271 Phenomenology +1006.2309 Phenomenology +1006.2369 +1006.2376 Phenomenology +1006.2386 Theory +1006.2387 Theory +1006.2388 Theory +1006.2391 High Energy Astrophysical Phenomena +1006.2417 +1006.2435 Phenomenology +1006.2468 Lattice +1006.2469 Lattice +1006.2526 Phenomenology +1006.2535 +1006.2548 Phenomenology +1006.2573 Theory +1006.2623 Theory +1006.2656 Solar and Stellar Astrophysics +1006.2714 +1006.2726 Theory +1006.2738 Phenomenology +1006.2796 Cosmology and Nongalactic Astrophysics +1006.2800 Phenomenology +1006.2801 Phenomenology +1006.2836 +1006.2870 Theory +1006.2904 Phenomenology +1006.2905 High Energy Astrophysical Phenomena +1006.2911 Phenomenology +1006.2913 +1006.2936 Phenomenology +1006.2972 +1006.2985 Cosmology and Nongalactic Astrophysics +1006.3012 Instrumentation and Detectors +1006.3029 +1006.3042 +1006.3066 Theory +1006.3082 Phenomenology +1006.3087 Phenomenology +1006.3090 Phenomenology +1006.3099 Theory +1006.3101 Theory +1006.3120 +1006.3145 Theory +1006.3182 +1006.3199 Theory +1006.3201 +1006.3213 Phenomenology +1006.3233 +1006.3248 Phenomenology +1006.3267 +1006.3268 High Energy Astrophysical Phenomena +1006.3290 Theory +1006.3307 Phenomenology +1006.3318 Phenomenology +1006.3325 Phenomenology +1006.3341 Theory +1006.3350 Theory +1006.3361 +1006.3391 Accelerator Physics +1006.3469 Experiment +1006.3470 Analysis of PDEs +1006.3480 Theory +1006.3494 Theory +1006.3500 Cosmology and Nongalactic Astrophysics +1006.3504 High Energy Astrophysical Phenomena +1006.3510 Theory +1006.3608 +1006.3615 +1006.3634 Phenomenology +1006.3648 Phenomenology +1006.3667 Theory +1006.3682 Theory +1006.3745 +1006.3753 Theory +1006.3758 +1006.3784 Phenomenology +1006.3792 Solar and Stellar Astrophysics +1006.3794 Theory +1006.3808 Theory +1006.3809 Cosmology and Nongalactic Astrophysics +1006.3862 Phenomenology +1006.3882 Theory +1006.3898 Phenomenology +1006.3947 Phenomenology +1006.3951 Theory +1006.3955 Theory +1006.3963 Statistical Mechanics +1006.4000 Theory +1006.4004 Theory +1006.4028 Lattice +1006.4034 Theory +1006.4042 Phenomenology +1006.4059 +1006.4100 Theory +1006.4102 Theory +1006.4109 Accelerator Physics +1006.4127 Theory +1006.4132 Theory +1006.4134 +1006.4137 +1006.4179 Instrumentation and Detectors +1006.4186 Phenomenology +1006.4193 Phenomenology +1006.4217 Mesoscale and Nanoscale Physics +1006.4221 Experiment +1006.4223 Theory +1006.4231 Phenomenology +1006.4237 Phenomenology +1006.4241 Experiment +1006.4249 +1006.4250 Phenomenology +1006.4254 Theory +1006.4258 Strongly Correlated Electrons +1006.4293 Phenomenology +1006.4295 +1006.4363 Phenomenology +1006.4367 Theory +1006.4415 Theory +1006.4424 +1006.4446 Phenomenology +1006.4452 Theory +1006.4468 Theory +1006.4505 Theory +1006.4556 Phenomenology +1006.4575 Phenomenology +1006.4584 High Energy Astrophysical Phenomena +1006.4632 Cosmology and Nongalactic Astrophysics +1006.4636 Phenomenology +1006.4639 Phenomenology +1006.4716 +1006.4729 Phenomenology +1006.4745 +1006.4748 +1006.4752 +1006.4771 Phenomenology +1006.4772 +1006.4781 +1006.4783 +1006.4823 Theory +1006.4834 +1006.4848 Phenomenology +1006.4875 Astrophysics of Galaxies +1006.4889 Cosmology and Nongalactic Astrophysics +1006.4906 +1006.4912 +1006.4917 Cosmology and Nongalactic Astrophysics +1006.4945 Phenomenology +1006.5013 Phenomenology +1006.5018 +1006.5019 Phenomenology +1006.5031 Mesoscale and Nanoscale Physics +1006.5050 Phenomenology +1006.5071 +1006.5075 Phenomenology +1006.5196 Phenomenology +1006.5215 +1006.5242 Theory +1006.5254 +1006.5281 +1006.5282 Theory +1006.5356 Phenomenology +1006.5362 Theory +1006.5400 Space Physics +1006.5416 High Energy Astrophysical Phenomena +1006.5421 Phenomenology +1006.5423 Theory +1006.5429 +1006.5477 Phenomenology +1006.5507 Phenomenology +1006.5559 Phenomenology +1006.5568 Theory +1006.5570 Phenomenology +1006.5579 Phenomenology +1006.5611 Phenomenology +1006.5613 +1006.5640 Theory +1006.5648 General Physics +1006.5672 Theory +1006.5681 +1006.5732 Phenomenology +1006.5772 Phenomenology +1006.5789 +1006.5798 Phenomenology +1006.5820 +1006.5852 +1006.5855 Lattice +1006.5895 Phenomenology +1006.5910 Phenomenology +1006.5914 Phenomenology +1006.5939 Phenomenology +1006.5962 High Energy Astrophysical Phenomena +1007.0022 History and Philosophy of Physics +1007.0024 Cosmology and Nongalactic Astrophysics +1007.0031 Phenomenology +1007.0032 +1007.0037 +1007.0043 Phenomenology +1007.0055 Theory +1007.0084 Experiment +1007.0086 Mesoscale and Nanoscale Physics +1007.0106 Phenomenology +1007.0137 +1007.0158 Theory +1007.0173 Theory +1007.0236 Theory +1007.0277 Theory +1007.0282 Phenomenology +1007.0286 Phenomenology +1007.0293 +1007.0303 Instrumentation and Detectors +1007.0306 Phenomenology +1007.0308 +1007.0321 Phenomenology +1007.0323 +1007.0352 Accelerator Physics +1007.0361 Accelerator Physics +1007.0390 Cosmology and Nongalactic Astrophysics +1007.0395 Experiment +1007.0432 Phenomenology +1007.0443 Theory +1007.0494 History and Philosophy of Physics +1007.0525 +1007.0531 Theory +1007.0557 +1007.0574 +1007.0635 Phenomenology +1007.0675 Cosmology and Nongalactic Astrophysics +1007.0680 Phenomenology +1007.0693 Phenomenology +1007.0734 +1007.0735 +1007.0753 Cosmology and Nongalactic Astrophysics +1007.0778 +1007.0785 +1007.0790 Phenomenology +1007.0821 High Energy Astrophysical Phenomena +1007.0834 Experiment +1007.0863 +1007.0888 Phenomenology +1007.0892 Phenomenology +1007.0893 Phenomenology +1007.0898 Phenomenology +1007.0914 Cosmology and Nongalactic Astrophysics +1007.0924 +1007.0947 Physics Education +1007.0967 Disordered Systems and Neural Networks +1007.1067 +1007.1084 General Physics +1007.1114 +1007.1130 Optics +1007.1151 Phenomenology +1007.1155 Accelerator Physics +1007.1182 Phenomenology +1007.1198 +1007.1218 Cosmology and Nongalactic Astrophysics +1007.1246 Theory +1007.1290 Theory +1007.1297 Phenomenology +1007.1317 Theory +1007.1355 Phenomenology +1007.1369 Phenomenology +1007.1370 Experiment +1007.1380 Phenomenology +1007.1396 Phenomenology +1007.1405 +1007.1421 Cosmology and Nongalactic Astrophysics +1007.1448 +1007.1462 Theory +1007.1468 Phenomenology +1007.1507 Strongly Correlated Electrons +1007.1538 +1007.1542 Experiment +1007.1558 Phenomenology +1007.1569 +1007.1598 Theory +1007.1633 Phenomenology +1007.1662 +1007.1667 Theory +1007.1688 Mesoscale and Nanoscale Physics +1007.1705 +1007.1706 Pricing of Securities +1007.1707 +1007.1713 Phenomenology +1007.1724 Theory +1007.1754 +1007.1795 Theory +1007.1813 Theory +1007.1823 Theory +1007.1833 Phenomenology +1007.1835 Phenomenology +1007.1838 Statistical Mechanics +1007.1859 +1007.1872 Phenomenology +1007.1888 Phenomenology +1007.1935 +1007.1962 Theory +1007.1963 Cosmology and Nongalactic Astrophysics +1007.1966 Phenomenology +1007.1987 +1007.2019 +1007.2034 Phenomenology +1007.2100 Phenomenology +1007.2102 Phenomenology +1007.2225 Instrumentation and Methods for Astrophysics +1007.2254 +1007.2310 Phenomenology +1007.2319 +1007.2368 Phenomenology +1007.2378 Phenomenology +1007.2410 Theory +1007.2421 Theory +1007.2459 +1007.2470 Phenomenology +1007.2475 Theory +1007.2476 Theory +1007.2479 Theory +1007.2536 Theory +1007.2554 Cosmology and Nongalactic Astrophysics +1007.2637 Theory +1007.2646 +1007.2699 +1007.2700 Cosmology and Nongalactic Astrophysics +1007.2712 Instrumentation and Detectors +1007.2719 +1007.2731 Theory +1007.2742 Phenomenology +1007.2757 Phenomenology +1007.2785 +1007.2791 Experiment +1007.2834 Superconductivity +1007.2858 +1007.2922 Statistical Mechanics +1007.2943 Phenomenology +1007.2963 Theory +1007.2982 Theory +1007.2984 Phenomenology +1007.3111 Theory +1007.3189 +1007.3209 Theory +1007.3214 Theory +1007.3253 Theory +1007.3272 Cosmology and Nongalactic Astrophysics +1007.3304 +1007.3321 Theory +1007.3329 Phenomenology +1007.3368 +1007.3387 Experiment +1007.3488 Phenomenology +1007.3541 Phenomenology +1007.3570 +1007.3636 Cosmology and Nongalactic Astrophysics +1007.3675 +1007.3678 +1007.3696 Phenomenology +1007.3715 +1007.3750 Phenomenology +1007.3775 +1007.3843 Theory +1007.3857 +1007.3865 Theory +1007.3897 Phenomenology +1007.3915 Phenomenology +1007.3917 Theory +1007.4053 Distributed, Parallel, and Cluster Computing +1007.4077 +1007.4117 Lattice +1007.4123 +1007.4129 +1007.4156 Phenomenology +1007.4237 +1007.4249 Phenomenology +1007.4250 +1007.4337 +1007.4378 Earth and Planetary Astrophysics +1007.4405 +1007.4452 Theory +1007.4582 Phenomenology +1007.4615 +1007.4616 Theory +1007.4619 Experiment +1007.4669 +1007.4728 Phenomenology +1007.4735 Instrumentation and Detectors +1007.4754 +1007.4774 +1007.4834 +1007.4846 +1007.4847 Theory +1007.4904 +1007.4943 +1007.4989 Phenomenology +1007.4998 +1007.5038 +1007.5182 Theory +1007.5202 Phenomenology +1007.5206 Theory +1007.5270 +1007.5278 +1007.5292 Theory +1007.5317 High Energy Astrophysical Phenomena +1007.5325 Phenomenology +1007.5411 Phenomenology +1007.5427 +1007.5439 Phenomenology +1007.5487 Phenomenology +1007.5517 Experiment +1008.0018 Phenomenology +1008.0100 Theory +1008.0102 Theory +1008.0128 Atomic Physics +1008.0202 Phenomenology +1008.0303 Theory +1008.0306 Phenomenology +1008.0338 Experiment +1008.0344 Experiment +1008.0383 Phenomenology +1008.0540 Phenomenology +1008.0554 +1008.0642 Phenomenology +1008.0678 Theory +1008.0680 +1008.0732 Lattice +1008.0777 Theory +1008.0811 Cosmology and Nongalactic Astrophysics +1008.0830 Instrumentation and Detectors +1008.0869 Cosmology and Nongalactic Astrophysics +1008.0960 +1008.0989 +1008.1059 Theory +1008.1120 +1008.1173 Theory +1008.1356 +1008.1419 +1008.1632 Phenomenology +1008.1774 Experiment +1008.1981 Cosmology and Nongalactic Astrophysics +1008.2044 Theory +1008.2068 Theory +1008.2165 +1008.2211 High Energy Astrophysical Phenomena +1008.2255 Instrumentation and Methods for Astrophysics +1008.2313 +1008.2358 +1008.2411 +1008.2553 Theory +1008.2580 Theory +1008.2746 Theory +1008.2861 Instrumentation and Detectors +1008.2939 Strongly Correlated Electrons +1008.2940 +1008.2951 Phenomenology +1008.2995 +1008.3005 General Physics +1008.3137 +1008.3203 Classical Physics +1008.3324 +1008.3615 +1008.3822 Phenomenology +1008.4093 +1008.4119 Phenomenology +1008.4237 +1008.4333 +1008.4405 Experiment +1008.4555 Phenomenology +1008.4690 Phenomenology +1008.4931 Networking and Internet Architecture +1008.5019 Solar and Stellar Astrophysics +1008.5183 Superconductivity +1008.5201 Phenomenology +1009.0773 Cosmology and Nongalactic Astrophysics +1009.0951 Atomic Physics +1009.0980 Phenomenology +1009.1234 Phenomenology +1009.1562 Accelerator Physics +1009.1704 Phenomenology +1009.1707 Phenomenology +1009.1855 High Energy Astrophysical Phenomena +1009.2193 +1009.2234 Astrophysics of Galaxies +1009.2238 Theory +1009.2289 Mesoscale and Nanoscale Physics +1009.3021 Cosmology and Nongalactic Astrophysics +1009.3079 High Energy Astrophysical Phenomena +1009.3749 +1009.3880 +1009.4793 +1009.4965 +1009.5843 Phenomenology +1010.1801 +1010.1835 Phenomenology +1012.5086 Materials Science +1108.3397 +1111.5931 Strongly Correlated Electrons +1111.5944 Lattice +1112.5428 Lattice +1202.2174 Phenomenology +1202.6607 Algebraic Geometry +1202.6663 Algebraic Geometry +1203.0724 Phenomenology +1204.4810 Complex Variables +1205.2928 Strongly Correlated Electrons +1205.4525 Number Theory +1205.5187 Materials Science +1206.4851 Disordered Systems and Neural Networks +1210.1257 Numerical Analysis +1210.5735 Theory +1211.3991 Statistical Mechanics +1211.6786 Combinatorics +1211.6893 Quantum Gases +1212.1722 Algebraic Geometry +1212.4435 Probability +1302.3373 +1303.3829 Disordered Systems and Neural Networks +1303.4157 Lattice +1303.7117 Statistics Theory +1304.0554 Quantum Gases +1304.6376 Algebraic Geometry +1304.7640 Materials Science +1305.3324 Functional Analysis +1305.5127 Statistical Mechanics +1306.1787 Combinatorics +1307.0394 Phenomenology +1307.3176 Learning +1307.5997 Theory +1308.2500 Metric Geometry +1308.3889 Analysis of PDEs +1308.5153 Algebraic Geometry +1309.1031 Logic +1309.1456 Plasma Physics +1309.5049 Networking and Internet Architecture +1310.5642 Analysis of PDEs +1310.6127 Mesoscale and Nanoscale Physics +1311.0089 Numerical Analysis +1311.2233 +1311.3155 +1311.3745 Representation Theory +1311.6029 Materials Science +1311.6051 Applications +1312.1491 Operator Algebras +1312.3834 Algebraic Geometry +1312.6585 Data Structures and Algorithms +1312.7784 High Energy Astrophysical Phenomena +1401.1986 Quantum Gases +1401.3392 Mesoscale and Nanoscale Physics +1401.7732 Superconductivity +1402.0830 Statistics Theory +1402.3812 Representation Theory +1402.4868 Lattice +1402.6299 +1402.7023 Fluid Dynamics +1402.7156 Analysis of PDEs +1403.1582 Phenomenology +1403.2102 Lattice +1403.2199 Statistical Mechanics +1403.3389 Analysis of PDEs +1403.4110 +1403.4681 +1403.5293 Analysis of PDEs +1403.5744 Phenomenology +1403.6311 Phenomenology +1403.6379 Superconductivity +1403.7559 +1403.7796 +1404.2309 Theory +1404.2697 Cryptography and Security +1404.4214 Number Theory +1404.4539 Probability +1404.4784 Probability +1405.0438 Optics +1405.3421 Analysis of PDEs +1405.4497 Statistical Mechanics +1405.5079 +1405.6324 Earth and Planetary Astrophysics +1405.6536 Theory +1406.0156 Computer Vision and Pattern Recognition +1406.0509 Astrophysics of Galaxies +1406.0667 +1406.2079 Logic in Computer Science +1406.3029 Strongly Correlated Electrons +1406.3640 Solar and Stellar Astrophysics +1406.4277 Information Theory +1406.5362 Machine Learning +1406.6038 Machine Learning +1407.1359 Materials Science +1407.1457 +1407.1921 +1407.2196 Geometric Topology +1407.2489 Number Theory +1407.4362 +1407.5007 +1407.5296 Applications +1407.6712 Astrophysics of Galaxies +1407.7442 Statistical Mechanics +1407.8138 +1408.0373 Mesoscale and Nanoscale Physics +1408.0669 Statistical Mechanics +1408.1989 Differential Geometry +1408.3473 Soft Condensed Matter +1408.4821 Phenomenology +1409.0739 Statistical Mechanics +1409.1015 Classical Analysis and ODEs +1409.2574 Learning +1409.4052 Phenomenology +1409.6967 Data Structures and Algorithms +1410.0221 Phenomenology +1410.1744 Phenomenology +1410.1829 Mesoscale and Nanoscale Physics +1410.3522 Information Theory +1410.4272 Cosmology and Nongalactic Astrophysics +1410.4311 Earth and Planetary Astrophysics +1410.4930 +1410.4960 Instrumentation and Methods for Astrophysics +1410.5969 Commutative Algebra +1410.6999 Mesoscale and Nanoscale Physics +1410.7114 Fluid Dynamics +1410.7385 Phenomenology +1410.7685 Materials Science +1410.7941 Physics and Society +1411.0544 Computational Geometry +1411.0877 Statistics Theory +1411.2283 +1411.3085 +1411.3827 Category Theory +1411.4699 Algebraic Geometry +1411.5219 Lattice +1411.5305 Statistics Theory +1411.5313 Artificial Intelligence +1411.5337 Medical Physics +1411.5359 +1411.5364 Phenomenology +1411.5366 Earth and Planetary Astrophysics +1411.5373 Instrumentation and Methods for Astrophysics +1411.5383 Neurons and Cognition +1411.5387 Analysis of PDEs +1411.5388 Strongly Correlated Electrons +1411.5390 Earth and Planetary Astrophysics +1411.5391 Optics +1411.5392 Physics and Society +1411.5394 Human-Computer Interaction +1411.5395 +1411.5400 Numerical Analysis +1411.5409 +1411.5410 Artificial Intelligence +1411.5412 Systems and Control +1411.5414 Computational Complexity +1411.5416 Artificial Intelligence +1411.5418 Geometric Topology +1411.5419 Instrumentation and Detectors +1411.5420 Analysis of PDEs +1411.5429 Combinatorics +1411.5430 Rings and Algebras +1411.5433 Distributed, Parallel, and Cluster Computing +1411.5439 Strongly Correlated Electrons +1411.5440 Number Theory +1411.5441 Complex Variables +1411.5442 Computational Geometry +1411.5446 Mesoscale and Nanoscale Physics +1411.5448 Mesoscale and Nanoscale Physics +1411.5449 Lattice +1411.5450 Representation Theory +1411.5451 Social and Information Networks +1411.5455 Computational Geometry +1411.5458 Emerging Technologies +1411.5459 Computational Geometry +1411.5460 +1411.5463 Mesoscale and Nanoscale Physics +1411.5465 Cryptography and Security +1411.5466 +1411.5468 Combinatorics +1411.5470 Analysis of PDEs +1411.5471 Applications +1411.5472 Computational Geometry +1411.5479 Analysis of PDEs +1411.5485 Quantum Gases +1411.5487 Algebraic Geometry +1411.5494 Logic in Computer Science +1411.5497 Applications +1411.5499 +1411.5500 Functional Analysis +1411.5501 Analysis of PDEs +1411.5502 Classical Analysis and ODEs +1411.5503 Analysis of PDEs +1411.5505 Analysis of PDEs +1411.5508 Classical Analysis and ODEs +1411.5509 Combinatorics +1411.5510 Applications +1411.5511 Strongly Correlated Electrons +1411.5517 Earth and Planetary Astrophysics +1411.5518 Classical Physics +1411.5520 Materials Science +1411.5521 +1411.5522 Cosmology and Nongalactic Astrophysics +1411.5529 Experiment +1411.5535 Classical Analysis and ODEs +1411.5539 Phenomenology +1411.5543 Probability +1411.5546 +1411.5548 Networking and Internet Architecture +1411.5550 Atomic Physics +1411.5553 Physics and Society +1411.5554 Analysis of PDEs +1411.5556 Analysis of PDEs +1411.5558 Operator Algebras +1411.5560 Instrumentation and Methods for Astrophysics +1411.5562 Analysis of PDEs +1411.5563 Multiagent Systems +1411.5566 Lattice +1411.5568 General Physics +1411.5570 Representation Theory +1411.5578 Algebraic Geometry +1411.5580 Algebraic Geometry +1411.5581 Theory +1411.5591 Logic +1411.5597 Phenomenology +1411.5598 Representation Theory +1411.5601 Soft Condensed Matter +1411.5603 General Physics +1411.5605 Instrumentation and Methods for Astrophysics +1411.5606 Experiment +1411.5607 Classical Analysis and ODEs +1411.5612 Biological Physics +1411.5615 Materials Science +1411.5616 Classical Analysis and ODEs +1411.5622 Classical Analysis and ODEs +1411.5634 Applications +1411.5636 Differential Geometry +1411.5639 Probability +1411.5641 Theory +1411.5645 Phenomenology +1411.5650 Algebraic Geometry +1411.5654 Computer Vision and Pattern Recognition +1411.5659 Analysis of PDEs +1411.5664 Optics +1411.5666 Number Theory +1411.5667 Instrumentation and Methods for Astrophysics +1411.5669 Phenomenology +1411.5670 Operator Algebras +1411.5673 Analysis of PDEs +0802.3300 +0806.0584 Theory +0806.0586 Theory +0806.0643 Theory +0905.2014 Theory +0907.4939 Theory +0912.4691 Experiment +1102.3291 Plasma Physics +1103.3610 Functional Analysis +1103.3955 General Physics +1106.3682 Experiment +1109.3583 Dynamical Systems +1111.5242 Experiment +1112.6165 Analysis of PDEs +1112.6379 Combinatorics +1201.5023 Operator Algebras +1202.6319 Space Physics +1203.5816 Analysis of PDEs +1204.4302 Computational Physics +1206.4494 General Mathematics +1207.0281 Differential Geometry +1207.0329 Analysis of PDEs +1207.2064 Statistics Theory +1210.0448 General Physics +1210.1342 Classical Analysis and ODEs +1210.2741 Differential Geometry +1210.6355 Mesoscale and Nanoscale Physics +1210.7588 Phenomenology +1211.0747 Functional Analysis +1211.0819 +1212.2359 Analysis of PDEs +1212.6342 Classical Analysis and ODEs +1301.3061 Computational Physics +1301.3915 Fluid Dynamics +1302.4302 Number Theory +1303.5384 Classical Analysis and ODEs +1304.7046 Statistics Theory +1304.7117 Rings and Algebras +1305.6088 Number Theory +1307.0172 +1307.1249 +1307.1427 Experiment +1307.2961 Mesoscale and Nanoscale Physics +1308.2905 Dynamical Systems +1308.4740 Superconductivity +1309.3677 Functional Analysis +1309.4263 Statistical Mechanics +1309.7561 Mesoscale and Nanoscale Physics +1309.7836 High Energy Astrophysical Phenomena +1310.0917 Optics +1310.1736 Category Theory +1310.1951 Theory +1310.3689 Analysis of PDEs +1310.5208 +1310.6266 Combinatorics +1311.1928 Discrete Mathematics +1311.6577 Disordered Systems and Neural Networks +1311.6723 Differential Geometry +1312.1464 Differential Geometry +1312.1835 Spectral Theory +1312.1874 Classical Analysis and ODEs +1312.3485 Number Theory +1312.4436 Quantum Gases +1312.5258 Machine Learning +1312.5777 +1312.7285 Classical Analysis and ODEs +1312.7627 History and Overview +1401.5368 Classical Analysis and ODEs +1401.8268 Computational Physics +1402.0145 Statistical Mechanics +1402.1295 +1402.6974 Group Theory +1403.0030 Soft Condensed Matter +1403.2213 Soft Condensed Matter +1403.3463 +1403.5991 Optimization and Control +1404.0194 Strongly Correlated Electrons +1404.2762 Materials Science +1404.2994 Materials Science +1404.6532 Strongly Correlated Electrons +1404.7520 +1404.7652 Strongly Correlated Electrons +1405.0515 Pricing of Securities +1405.1068 Metric Geometry +1405.1856 Dynamical Systems +1405.2728 Computational Physics +1405.4539 Mesoscale and Nanoscale Physics +1405.6077 Physics and Society +1406.0229 Instrumentation and Detectors +1406.0605 Materials Science +1406.2535 Classical Analysis and ODEs +1406.2582 Machine Learning +1407.0703 Materials Science +1407.2640 Computer Science and Game Theory +1407.2642 Trading and Market Microstructure +1407.3635 +1407.5977 Theory +1407.6399 Quantum Gases +1407.7691 Machine Learning +1407.7757 +1407.7812 Cosmology and Nongalactic Astrophysics +1407.7961 Optics +1407.8502 Cosmology and Nongalactic Astrophysics +1408.0631 Strongly Correlated Electrons +1408.1346 Plasma Physics +1408.1624 Mesoscale and Nanoscale Physics +1408.3074 Combinatorics +1408.3713 Theory +1408.5168 Theory +1409.0445 Experiment +1409.1561 Statistical Mechanics +1409.3306 Physics and Society +1409.3382 Experiment +1409.3976 Astrophysics of Galaxies +1409.4023 Differential Geometry +1409.5425 Analysis of PDEs +1409.6675 Operator Algebras +1409.8329 Combinatorics +1409.8506 Phenomenology +1410.0651 Number Theory +1410.0925 Computer Vision and Pattern Recognition +1410.1356 Materials Science +1410.2256 Astrophysics of Galaxies +1410.4599 Learning +1410.5175 Phenomenology +1410.6358 Earth and Planetary Astrophysics +1410.6372 Experiment +1410.6476 Materials Science +1410.6477 Physics and Society +1410.6480 +1410.6485 High Energy Astrophysical Phenomena +1410.6491 Analysis of PDEs +1410.6494 Number Theory +1410.6496 Instrumentation and Detectors +1410.6500 Networking and Internet Architecture +1410.6501 Computational Physics +1410.6502 Distributed, Parallel, and Cluster Computing +1410.6503 +1410.6504 Mesoscale and Nanoscale Physics +1410.6506 History and Philosophy of Physics +1410.6507 Statistical Mechanics +1410.6515 Theory +1410.6516 Multiagent Systems +1410.6519 Artificial Intelligence +1410.6520 Computational Geometry +1410.6521 Combinatorics +1410.6522 Strongly Correlated Electrons +1410.6523 Probability +1410.6525 +1410.6526 Molecular Networks +1410.6532 Computer Vision and Pattern Recognition +1410.6533 Optimization and Control +1410.6536 Mesoscale and Nanoscale Physics +1410.6541 Algebraic Geometry +1410.6543 Algebraic Geometry +1410.6545 Solar and Stellar Astrophysics +1410.6546 Superconductivity +1410.6548 Soft Condensed Matter +1410.6556 Methodology +1410.6559 Soft Condensed Matter +1410.6560 Applications +1410.6562 Materials Science +1410.6565 +1410.6568 Chaotic Dynamics +1410.6574 Chaotic Dynamics +1410.6582 Cryptography and Security +1410.6584 Differential Geometry +1410.6585 Phenomenology +1410.6586 Analysis of PDEs +1410.6589 Cryptography and Security +1410.6590 Algebraic Geometry +1410.6591 Number Theory +1410.6592 Multimedia +1410.6593 Cryptography and Security +1410.6595 Mesoscale and Nanoscale Physics +1410.6597 Astrophysics of Galaxies +1410.6601 Combinatorics +1410.6604 Machine Learning +1410.6609 Computational Engineering, Finance, and Science +1410.6611 Strongly Correlated Electrons +1410.6616 Differential Geometry +1410.6620 Phenomenology +1410.6621 Data Structures and Algorithms +1410.6627 Information Theory +1410.6628 Information Theory +1410.6629 Cryptography and Security +1410.6633 Geophysics +1410.6634 Solar and Stellar Astrophysics +1410.6638 Strongly Correlated Electrons +1410.6643 Differential Geometry +1410.6646 General Finance +1410.6651 Software Engineering +1410.6654 Phenomenology +1410.6655 General Topology +1410.6656 Multimedia +1410.6659 Astrophysics of Galaxies +1410.6661 Numerical Analysis +1410.6663 Computational Complexity +1410.6664 Phenomenology +1410.6669 Distributed, Parallel, and Cluster Computing +1410.6670 Mesoscale and Nanoscale Physics +1410.6671 Artificial Intelligence +1410.6674 Cryptography and Security +1410.6677 Quantitative Methods +1410.6686 Phenomenology +1410.6688 Strongly Correlated Electrons +1410.6690 Artificial Intelligence +1410.6695 Category Theory +1410.6698 Statistics Theory +1410.6699 Instrumentation and Detectors +1410.6700 Instrumentation and Detectors +1410.6701 Earth and Planetary Astrophysics +1410.6704 Strongly Correlated Electrons +1410.6709 +1410.6711 Computational Physics +1410.6718 Analysis of PDEs +1410.6721 Classical Analysis and ODEs +1410.6723 History and Overview +1410.6725 Instrumentation and Methods for Astrophysics +1410.6726 Data Structures and Algorithms +1410.6727 Earth and Planetary Astrophysics +1410.6728 K-Theory and Homology +1410.6730 Optics +1410.6734 Optimization and Control +1410.6735 Metric Geometry +1410.6736 Computer Vision and Pattern Recognition +1410.6738 Algebraic Topology +1410.6739 Cryptography and Security +1410.6740 Operator Algebras +1410.6742 Probability +1410.6743 Combinatorics +1410.6746 Rings and Algebras +1410.6752 Neurons and Cognition +1410.6755 Phenomenology +1410.6762 Analysis of PDEs +1410.6763 Biomolecules +1410.6764 Probability +1410.6766 Solar and Stellar Astrophysics +1410.6767 Solar and Stellar Astrophysics +1410.6770 +1410.6772 Numerical Analysis +1410.6776 Learning +1410.6778 General Topology +1410.6779 Analysis of PDEs +1410.6781 Solar and Stellar Astrophysics +1410.6783 Fluid Dynamics +1410.6784 Methodology +1410.6795 Information Theory +1410.6796 Multimedia +quant-ph/0309033 +0801.1229 Combinatorics +0806.0070 Optics +0809.4283 Phenomenology +0901.1787 Dynamical Systems +0902.2473 Dynamical Systems +0904.0444 Theory +0906.4491 Optics +0910.5560 Group Theory +0911.0561 Combinatorics +1003.1977 Differential Geometry +1006.2676 Spectral Theory +1006.5693 Dynamical Systems +1009.1823 Number Theory +1012.0489 Representation Theory +1012.5152 Operator Algebras +1103.3406 Optics +1104.0609 Number Theory +1107.0275 Functional Analysis +1107.2524 Optics +1110.5232 +1201.2496 Optics +1204.1444 Combinatorics +1204.6452 Statistics Theory +1205.3943 Statistical Mechanics +1205.5397 Astrophysics of Galaxies +1208.2813 Astrophysics of Galaxies +1209.6581 Solar and Stellar Astrophysics +1210.0497 Theory +1210.3283 Cryptography and Security +1211.1452 +1211.3549 Classical Physics +1301.1063 Differential Geometry +1301.7110 +1302.3306 Computational Finance +1302.4849 Functional Analysis +1302.6064 Optics +1303.7209 Soft Condensed Matter +1304.0615 Optics +1305.0666 +1305.0696 Optics +1305.4788 Solar and Stellar Astrophysics +1305.6306 Computational Complexity +1307.0905 Combinatorics +1307.5302 Machine Learning +1308.3833 +1309.5207 Theory +1309.5767 Logic in Computer Science +1309.7046 High Energy Astrophysical Phenomena +1309.7831 Phenomenology +1310.0449 Solar and Stellar Astrophysics +1310.3480 Representation Theory +1310.4283 Programming Languages +1310.4586 Optics +1310.4685 Classical Analysis and ODEs +1310.6337 Phenomenology +1311.2062 +1311.5324 Functional Analysis +1311.5649 Numerical Analysis +1311.6309 +1311.7079 Rings and Algebras +1311.7245 Information Theory +1311.7615 Geometric Topology +1312.1743 Learning +1312.1864 +1312.2472 Algebraic Geometry +1312.5879 +1312.6473 Optimization and Control +1312.7028 Experiment +1312.7753 Pattern Formation and Solitons +1401.0439 +1401.5480 +1401.5945 Earth and Planetary Astrophysics +1401.6511 Materials Science +1401.7886 Data Structures and Algorithms +1401.8170 Cryptography and Security +1402.1658 Chaotic Dynamics +1402.4331 Chaotic Dynamics +1402.5394 Metric Geometry +1402.5958 Optics +1402.5974 Statistical Mechanics +1403.0011 Phenomenology +1403.2093 Mesoscale and Nanoscale Physics +1403.2185 Cosmology and Nongalactic Astrophysics +1403.2243 Phenomenology +1403.4825 Pattern Formation and Solitons +1403.6602 Data Structures and Algorithms +1404.0203 Data Analysis, Statistics and Probability +1404.0293 Phenomenology +1404.0518 +1404.1721 Commutative Algebra +1404.1837 Optics +1404.1938 Astrophysics of Galaxies +1404.2232 Analysis of PDEs +1404.2396 Data Structures and Algorithms +1404.4627 +1405.2736 Information Theory +1405.3890 Representation Theory +1405.5318 +1405.7736 Optics +1406.0455 Social and Information Networks +1406.0961 Category Theory +1406.2978 Analysis of PDEs +1406.3191 Artificial Intelligence +1406.3260 Solar and Stellar Astrophysics +1406.3354 Astrophysics of Galaxies +1406.3370 Geometric Topology +1406.3376 Biomolecules +1406.3381 Materials Science +1406.3382 Earth and Planetary Astrophysics +1406.3383 Soft Condensed Matter +1406.3385 Materials Science +1406.3386 Fluid Dynamics +1406.3390 Probability +1406.3391 Combinatorics +1406.3394 Number Theory +1406.3395 Computer Science and Game Theory +1406.3398 Genomics +1406.3399 Databases +1406.3400 Robotics +1406.3403 Optimization and Control +1406.3405 Data Structures and Algorithms +1406.3406 Complex Variables +1406.3410 Classical Analysis and ODEs +1406.3411 Social and Information Networks +1406.3412 Networking and Internet Architecture +1406.3414 Data Structures and Algorithms +1406.3418 Computer Vision and Pattern Recognition +1406.3422 Optimization and Control +1406.3424 Differential Geometry +1406.3426 Differential Geometry +1406.3427 Classical Analysis and ODEs +1406.3433 Emerging Technologies +1406.3436 +1406.3437 Instrumentation and Detectors +1406.3440 Data Analysis, Statistics and Probability +1406.3449 Complex Variables +1406.3454 Information Theory +1406.3455 Group Theory +1406.3457 Materials Science +1406.3458 Optimization and Control +1406.3459 Instrumentation and Detectors +1406.3460 Computation and Language +1406.3461 Numerical Analysis +1406.3464 Group Theory +1406.3465 Differential Geometry +1406.3466 Information Theory +1406.3474 Computer Vision and Pattern Recognition +1406.3478 Logic in Computer Science +1406.3479 Programming Languages +1406.3480 Programming Languages +1406.3481 Programming Languages +1406.3482 Distributed, Parallel, and Cluster Computing +1406.3483 Programming Languages +1406.3484 Software Engineering +1406.3485 Programming Languages +1406.3486 Logic in Computer Science +1406.3492 Classical Physics +1406.3495 Networking and Internet Architecture +1406.3498 Instrumentation and Detectors +1406.3499 Numerical Analysis +1406.3500 +1406.3503 Algebraic Geometry +1406.3504 +1406.3505 Materials Science +1406.3508 Mesoscale and Nanoscale Physics +1406.3509 Rings and Algebras +1406.3512 Computational Geometry +1406.3513 Category Theory +1406.3515 Numerical Analysis +1406.3516 Quantum Algebra +1406.3517 Quantum Algebra +1406.3518 Statistical Mechanics +1406.3522 Functional Analysis +1406.3528 Materials Science +1406.3530 Complex Variables +1406.3531 General Finance +1406.3539 Geometric Topology +1406.3540 Plasma Physics +1406.3543 Geometric Topology +1406.3550 Networking and Internet Architecture +1406.3552 Other Condensed Matter +1406.3554 Software Engineering +1406.3561 Human-Computer Interaction +1406.3563 Number Theory +1406.3567 Other Computer Science +1406.3568 Instrumentation and Detectors +1406.3570 Optics +1406.3577 Classical Analysis and ODEs +1406.3580 +1406.3581 Mesoscale and Nanoscale Physics +1406.3582 Information Theory +1406.3583 Cryptography and Security +1406.3589 Mesoscale and Nanoscale Physics +1406.3595 Biological Physics +1406.3597 Computer Science and Game Theory +1406.3602 Robotics +1406.3605 Analysis of PDEs +1406.3606 Complex Variables +1406.3613 Analysis of PDEs +1406.3614 Complex Variables +1406.3615 Data Analysis, Statistics and Probability +1406.3620 +0704.3232 Analysis of PDEs +0707.1429 Algebraic Geometry +0811.1354 Algebraic Geometry +0905.0610 General Physics +1007.5302 Probability +1009.4151 Algebraic Geometry +1011.1475 Probability +1101.1253 Representation Theory +1105.0652 Probability +1106.4823 Metric Geometry +1110.3624 Materials Science +1110.4266 Algebraic Geometry +1111.6984 Complex Variables +1112.5206 Algebraic Geometry +1202.2833 Strongly Correlated Electrons +1203.2355 Probability +1203.6898 Statistics Theory +1205.1378 Atomic Physics +1205.3602 Algebraic Geometry +1206.1983 Differential Geometry +1207.1464 Group Theory +1207.5013 +1208.2322 Optimization and Control +1208.4237 K-Theory and Homology +1209.0820 Functional Analysis +1209.4647 High Energy Astrophysical Phenomena +1209.6511 +1210.2807 Differential Geometry +1210.6803 Mesoscale and Nanoscale Physics +1211.4346 Optimization and Control +1212.3669 Software Engineering +1212.5498 Combinatorics +1212.5707 Analysis of PDEs +1212.6008 Statistical Mechanics +1301.4393 Algebraic Geometry +1304.1474 +1304.2611 Differential Geometry +1304.5372 +1305.2751 Functional Analysis +1305.3099 Spectral Theory +1305.3190 +1305.3582 Classical Physics +1305.3583 Materials Science +1305.6068 Phenomenology +1306.1582 Operator Algebras +1306.4066 Digital Libraries +1306.4494 Functional Analysis +1307.0461 Phenomenology +1307.0682 +1307.5231 Methodology +1307.5793 Representation Theory +1307.6678 Representation Theory +1307.7826 Phenomenology +1308.3361 Physics and Society +1308.3383 Computer Vision and Pattern Recognition +1308.3565 +1308.4383 Phenomenology +1308.4765 Commutative Algebra +1309.1393 Phenomenology +1309.7470 Disordered Systems and Neural Networks +1310.0117 Strongly Correlated Electrons +1310.1818 Quantum Gases +1310.2379 Number Theory +1310.2984 +1310.3031 Numerical Analysis +1310.4175 Mesoscale and Nanoscale Physics +1310.7932 +1311.0801 Robotics +1311.1182 Phenomenology +1311.3066 Probability +1311.3661 Cosmology and Nongalactic Astrophysics +1311.4671 Theory +1311.5120 Portfolio Management +1311.5417 Computer Science and Game Theory +1311.5760 +1312.2261 Theory +1312.2974 Data Analysis, Statistics and Probability +1312.3235 Phenomenology +1312.4309 Cosmology and Nongalactic Astrophysics +1312.4325 Optics +1312.4578 +1312.4989 +1312.6280 Phenomenology +1312.6550 Data Structures and Algorithms +1312.6698 High Energy Astrophysical Phenomena +1312.7446 Computer Vision and Pattern Recognition +1401.0701 +1401.0846 Algebraic Geometry +1401.1599 +1401.2003 Strongly Correlated Electrons +1401.3303 Optics +1401.3770 Mesoscale and Nanoscale Physics +1401.5180 +1401.5409 Combinatorics +1401.5516 Dynamical Systems +1401.5887 +1401.7674 Superconductivity +1402.0334 Representation Theory +1402.0551 +1402.0633 Group Theory +1402.1411 Superconductivity +1402.2126 Quantum Gases +1402.2286 Phenomenology +1402.2860 Superconductivity +1402.4090 High Energy Astrophysical Phenomena +1402.4221 Algebraic Geometry +1402.4247 Distributed, Parallel, and Cluster Computing +1402.4552 +1402.4850 Quantum Gases +1402.5337 Superconductivity +1402.5690 Phenomenology +1402.5772 Probability +1402.6257 Methodology +1402.6285 +1402.6296 Experiment +1402.7217 Atomic Physics +1403.0360 Lattice +1403.0733 Phenomenology +1403.0897 Mesoscale and Nanoscale Physics +1403.1221 Quantum Gases +1403.1397 +1403.2822 Strongly Correlated Electrons +1403.2843 Algebraic Geometry +1403.3285 Classical Analysis and ODEs +1403.3402 Cosmology and Nongalactic Astrophysics +1403.3405 Mesoscale and Nanoscale Physics +1403.3781 Functional Analysis +1403.3802 Exactly Solvable and Integrable Systems +1403.4274 Numerical Analysis +1403.5322 Statistical Mechanics +1403.5870 Strongly Correlated Electrons +1403.6063 Materials Science +1403.6264 +1403.6503 Phenomenology +1403.7175 Optimization and Control +1404.0392 Phenomenology +1404.0463 Strongly Correlated Electrons +1404.0765 Soft Condensed Matter +1404.0833 Other Condensed Matter +1404.1235 +1404.1387 Superconductivity +1404.1960 +1404.2240 Experiment +1404.2301 Phenomenology +1404.2393 Information Theory +1404.2747 +1404.2877 +1404.3263 Systems and Control +1404.3812 Superconductivity +1404.3985 +1404.4296 +1404.4311 +1404.4658 Strongly Correlated Electrons +1404.4979 +1404.5283 Theory +1404.5604 Mesoscale and Nanoscale Physics +1404.5632 Phenomenology +1404.5787 Superconductivity +1404.6220 Mesoscale and Nanoscale Physics +1404.6379 Strongly Correlated Electrons +1404.6590 Phenomenology +1404.6872 Strongly Correlated Electrons +1404.7511 Biological Physics +1404.7535 Mesoscale and Nanoscale Physics +1404.7570 Mesoscale and Nanoscale Physics +1405.0269 Theory +1405.0302 Theory +1405.1248 +1405.1331 +1405.2426 Rings and Algebras +1405.2723 Quantum Gases +1405.3462 Strongly Correlated Electrons +1405.3553 Theory +1405.3673 Cosmology and Nongalactic Astrophysics +1405.3827 +1405.4261 +1405.4464 Distributed, Parallel, and Cluster Computing +1405.4591 Strongly Correlated Electrons +1405.5719 Mesoscale and Nanoscale Physics +1405.6031 +1405.6066 +1405.6156 Atomic Physics +1405.6422 +1405.6821 +1405.7103 Phenomenology +1405.7223 Experiment +1405.7604 Number Theory +1405.7647 Combinatorics +1406.1524 Lattice +1406.1535 Soft Condensed Matter +1406.2432 +1406.2963 Databases +1406.3154 Representation Theory +1406.3444 Strongly Correlated Electrons +1406.4346 Chaotic Dynamics +1406.4654 Phenomenology +1406.5442 Strongly Correlated Electrons +1406.6080 Phenomenology +1406.6924 Symbolic Computation +1406.6962 Computer Vision and Pattern Recognition +1406.7148 Superconductivity +1407.0286 Numerical Analysis +1407.1039 Pattern Formation and Solitons +1407.1410 Atomic Physics +1407.2035 +1407.2073 Computational Engineering, Finance, and Science +1407.2084 Computational Engineering, Finance, and Science +1407.2098 Computational Engineering, Finance, and Science +1407.2101 Computational Engineering, Finance, and Science +1407.2181 Biomolecules +1407.2571 Algebraic Geometry +1407.3386 Social and Information Networks +1407.3543 Quantitative Methods +1407.4404 Solar and Stellar Astrophysics +1407.4663 Combinatorics +1407.4797 Instrumentation and Methods for Astrophysics +1407.5111 Data Structures and Algorithms +1407.5157 +1407.5297 Analysis of PDEs +1407.5359 +1407.5495 Information Theory +1407.5536 Medical Physics +1407.5574 Artificial Intelligence +1407.5575 Combinatorics +1407.5616 Applications +1407.5619 Instrumentation and Methods for Astrophysics +1407.5638 Combinatorics +1407.5639 Astrophysics of Galaxies +1407.5646 Algebraic Topology +1407.5649 Probability +1407.5651 Dynamical Systems +1407.5660 Instrumentation and Detectors +1407.5661 Databases +1407.5670 Programming Languages +1407.5674 Computational Geometry +1407.5689 Materials Science +1407.5691 Probability +1407.5694 Algebraic Geometry +1407.5695 Superconductivity +1407.5699 Systems and Control +1407.5701 Software Engineering +1407.5702 Commutative Algebra +1407.5706 Materials Science +1407.5708 Algebraic Geometry +1407.5709 Number Theory +1407.5710 Optimization and Control +1407.5714 Cryptography and Security +1407.5716 Information Theory +1407.5718 Networking and Internet Architecture +1407.5719 Neural and Evolutionary Computing +1407.5724 Instrumentation and Detectors +1407.5730 Materials Science +1407.5732 Information Retrieval +1407.5733 Materials Science +1407.5735 Solar and Stellar Astrophysics +1407.5736 Computer Vision and Pattern Recognition +1407.5738 Instrumentation and Methods for Astrophysics +1407.5739 Neural and Evolutionary Computing +1407.5741 Solar and Stellar Astrophysics +1407.5742 General Topology +1407.5743 General Topology +1407.5745 General Topology +1407.5747 Information Theory +1407.5750 Data Structures and Algorithms +1407.5754 Artificial Intelligence +1407.5755 Geometric Topology +1407.5757 History and Overview +1407.5758 Number Theory +1407.5759 Computer Vision and Pattern Recognition +1407.5764 Information Retrieval +1407.5767 Numerical Analysis +1407.5770 Computation +1407.5772 Algebraic Geometry +1407.5773 Information Theory +1407.5774 Computational Physics +1407.5776 Information Theory +1407.5777 Optics +1407.5783 Information Theory +1407.5784 Astrophysics of Galaxies +1407.5789 Number Theory +1407.5801 Combinatorics +1407.5806 Mesoscale and Nanoscale Physics +1407.5807 Multiagent Systems +1407.5809 Methodology +1407.5810 Optics +1407.5811 Mesoscale and Nanoscale Physics +1407.5812 Logic +1407.5818 Combinatorics +1407.5819 Logic in Computer Science +1407.5820 Systems and Control +1407.5822 Biological Physics +1407.5823 Logic +1407.5827 Group Theory +1407.5832 Probability +1407.5842 Instrumentation and Methods for Astrophysics +1407.5843 Algebraic Geometry +1407.5849 Exactly Solvable and Integrable Systems +1407.5852 Materials Science +1407.5853 Instrumentation and Methods for Astrophysics +1407.5858 Materials Science +1407.5865 Phenomenology +1407.5866 Probability +1407.5869 Geophysics +1407.5870 Analysis of PDEs +1407.5871 Probability +1407.5877 Pricing of Securities +1407.5882 Logic +1407.5883 Information Theory +1407.5884 Combinatorics +1407.5889 Networking and Internet Architecture +1407.5890 Analysis of PDEs +1407.5891 Computers and Society +1407.5892 Instrumentation and Methods for Astrophysics +1407.5895 Solar and Stellar Astrophysics +1407.5898 Number Theory +1407.5902 Formal Languages and Automata Theory +1407.5905 Algebraic Geometry +1407.5908 Learning +1407.5916 Rings and Algebras +1407.5920 +1407.5921 Group Theory +1407.5922 Mesoscale and Nanoscale Physics +1407.5924 Machine Learning +1407.5926 Theory +1407.5931 Other Computer Science +1407.5937 Group Theory +1407.5938 Mesoscale and Nanoscale Physics +1407.5939 Superconductivity +1407.5942 Numerical Analysis +1407.5943 Numerical Analysis +1407.5946 Neurons and Cognition +1407.5947 Information Theory +1407.5948 Functional Analysis +1407.5950 Analysis of PDEs +1407.5953 Number Theory +1407.5954 +1407.5957 History and Philosophy of Physics +1407.5958 +1407.5959 Combinatorics +1407.5961 Logic in Computer Science +1407.5963 Dynamical Systems +1407.5965 Optimization and Control +1407.5969 Number Theory +1407.5970 Metric Geometry +1407.5976 Computer Vision and Pattern Recognition +1407.5979 Geophysics +1407.5984 Analysis of PDEs +1407.5985 Theory +1407.5988 Logic in Computer Science +math-ph/0008023 +physics/0608312 General Physics +0712.1780 Representation Theory +1006.3616 Dynamical Systems +1108.1736 Theory +1108.2795 Operator Algebras +1201.3972 Computer Vision and Pattern Recognition +1203.5487 Geometric Topology +1203.6555 +1204.1727 Optimization and Control +1206.0287 Dynamical Systems +1206.5592 Representation Theory +1207.3465 Algebraic Topology +1207.3467 Algebraic Topology +1208.5232 Operator Algebras +1209.3128 Algebraic Geometry +1209.4055 Strongly Correlated Electrons +1210.2739 Number Theory +1210.3564 Analysis of PDEs +1210.5202 Dynamical Systems +1211.4726 Quantum Algebra +1212.1247 Statistics Theory +1301.1884 Dynamical Systems +1301.6177 Theory +1302.2944 Number Theory +1303.0128 +1304.0282 Statistics Theory +1305.2526 +1305.5675 Networking and Internet Architecture +1305.6087 Theory +1306.1948 +1306.3021 +1306.3031 +1306.4532 +1306.6305 Differential Geometry +1307.0145 +1307.3087 Probability +1307.7048 +1308.1852 Cosmology and Nongalactic Astrophysics +1309.4304 Differential Geometry +1309.4564 Classical Analysis and ODEs +1309.5027 Differential Geometry +1309.6682 Theory +1309.7209 Computation +1310.0084 Instrumentation and Detectors +1310.3222 Statistics Theory +1310.5748 Optimization and Control +1310.7241 Algebraic Geometry +1310.8271 Complex Variables +1311.0060 Exactly Solvable and Integrable Systems +1311.4052 Mesoscale and Nanoscale Physics +1311.4944 Theory +1312.2050 Statistics Theory +1312.5178 Cosmology and Nongalactic Astrophysics +1312.7817 +1401.2015 Number Theory +1401.2906 Combinatorics +1401.3208 +1401.3687 Computational Complexity +1401.6388 Theory +1402.0901 Strongly Correlated Electrons +1402.6456 Strongly Correlated Electrons +1403.0065 Applications +1403.0888 Rings and Algebras +1403.2520 Analysis of PDEs +1403.3697 Cosmology and Nongalactic Astrophysics +1403.3961 Cosmology and Nongalactic Astrophysics +1403.4201 Rings and Algebras +1403.5726 Category Theory +1404.1288 +1404.3633 Logic in Computer Science +1404.3925 Computation and Language +1404.6258 Phenomenology +1404.6945 Information Theory +1404.7773 Theory +1405.1036 Disordered Systems and Neural Networks +1405.1463 +1405.1537 Quantum Gases +1405.2345 Accelerator Physics +1405.2618 Category Theory +1405.2874 Computation and Language +1405.3176 Optimization and Control +1405.3585 Mesoscale and Nanoscale Physics +1405.3681 +1405.4304 Probability +1405.5570 Materials Science +1405.7049 Phenomenology +1405.7154 Phenomenology +1406.0102 Phenomenology +1406.0848 Phenomenology +1406.1278 +1406.1633 Logic in Computer Science +1406.2077 Strongly Correlated Electrons +1406.2150 Information Theory +1406.2276 Phenomenology +1406.2571 +1406.2716 Theory +1406.3056 +1406.4116 Lattice +1406.4558 Lattice +1406.4696 +1406.4938 Quantum Gases +1406.5222 Superconductivity +1406.5656 +1407.1864 +1407.2658 +1407.3174 Mesoscale and Nanoscale Physics +1407.3246 Instrumentation and Detectors +1407.4508 Machine Learning +1407.4589 +1407.5024 Adaptation and Self-Organizing Systems +1407.5623 Cosmology and Nongalactic Astrophysics +1407.5726 Strongly Correlated Electrons +1407.6241 Algebraic Geometry +1407.6547 Phenomenology +1407.8054 +1408.0008 Materials Science +1408.0080 +1408.0754 Phenomenology +1408.1096 Statistical Mechanics +1408.1396 Theory +1408.1398 Theory +1408.6278 High Energy Astrophysical Phenomena +1408.6622 Analysis of PDEs +1408.6628 +1408.6646 +1408.6780 Strongly Correlated Electrons +1408.7084 Experiment +1409.0327 Lattice +1409.1503 +1409.2854 Atmospheric and Oceanic Physics +1409.4069 +1409.4339 Phenomenology +1409.4916 Strongly Correlated Electrons +1409.5813 Phenomenology +1409.6244 Cosmology and Nongalactic Astrophysics +1409.6571 Strongly Correlated Electrons +1409.6732 Strongly Correlated Electrons +1410.0348 High Energy Astrophysical Phenomena +1410.1034 Quantum Gases +1410.1150 Discrete Mathematics +1410.1355 +1410.1607 Phenomenology +1410.1672 +1410.2751 Experiment +1410.2860 Theory +1410.3902 Experiment +1410.5274 Phenomenology +1410.6042 +1410.6630 Strongly Correlated Electrons +1411.0170 Rings and Algebras +1411.0589 Machine Learning +1411.0719 Strongly Correlated Electrons +1411.0977 Theory +1411.1118 Instrumentation and Methods for Astrophysics +1411.1806 Experiment +1411.2013 General Physics +1411.2234 High Energy Astrophysical Phenomena +1411.3552 +1411.3937 +1411.4400 Phenomenology +1411.4482 Experiment +1411.5381 +1412.1029 Atomic Physics +1412.3205 Theory +1412.4621 Optimization and Control +1412.5078 Theory +1412.5213 +1412.5677 Astrophysics of Galaxies +1412.5904 +1412.6013 Materials Science +1412.6459 Pricing of Securities +1412.6851 Complex Variables +1412.6909 Combinatorics +1412.7003 Learning +1412.7126 Theory +1412.7309 Social and Information Networks +1412.7929 Computational Engineering, Finance, and Science +1412.8056 Numerical Analysis +1412.8083 Combinatorics +1412.8300 Information Theory +1412.8350 Strongly Correlated Electrons +1412.8460 Combinatorics +1412.8467 Computational Engineering, Finance, and Science +1412.8475 Theory +1412.8483 Theory +1412.8490 Cryptography and Security +1412.8491 Materials Science +1412.8493 Optimization and Control +1412.8495 Analysis of PDEs +1412.8496 Computer Vision and Pattern Recognition +1412.8500 Robotics +1412.8501 Computer Science and Game Theory +1412.8503 Phenomenology +1412.8508 General Topology +1412.8517 Statistical Mechanics +1412.8518 Computer Science and Game Theory +1412.8519 Optics +1412.8520 Statistical Mechanics +1412.8521 Functional Analysis +1412.8523 +1412.8524 +1412.8525 +1412.8526 +1412.8527 Logic in Computer Science +1412.8528 Logic in Computer Science +1412.8531 Artificial Intelligence +1412.8533 Combinatorics +1412.8534 Learning +1412.8535 Accelerator Physics +1412.8539 +1412.8540 +1412.8542 Logic in Computer Science +1412.8543 Logic in Computer Science +1412.8545 Logic in Computer Science +1412.8546 Logic in Computer Science +1412.8548 Logic in Computer Science +1412.8549 +1412.8552 Logic in Computer Science +1412.8553 +1412.8554 Rings and Algebras +1412.8555 Information Theory +1412.8557 +1412.8559 Geometric Topology +1412.8561 Other Computer Science +1412.8562 +1412.8564 +1412.8565 Instrumentation and Detectors +1412.8566 Learning +1412.8568 Numerical Analysis +1412.8570 Optimization and Control +1412.8571 Rings and Algebras +1412.8572 Experiment +1412.8574 Computational Engineering, Finance, and Science +1412.8579 Cosmology and Nongalactic Astrophysics +1412.8580 Complex Variables +1412.8585 +1412.8589 Mesoscale and Nanoscale Physics +1412.8593 Analysis of PDEs +1412.8594 Methodology +1412.8598 Operator Algebras +1412.8599 Optics +1412.8601 Rings and Algebras +1412.8603 Group Theory +1412.8604 Statistics Theory +1412.8605 Instrumentation and Detectors +1412.8607 +1412.8611 Earth and Planetary Astrophysics +1412.8613 Phenomenology +1412.8616 History and Philosophy of Physics +1412.8617 Networking and Internet Architecture +1412.8618 Dynamical Systems +1412.8623 Theory +1412.8625 Functional Analysis +1412.8627 High Energy Astrophysical Phenomena +1412.8628 Functional Analysis +1412.8639 Programming Languages +1412.8649 +1412.8655 +1412.8656 Computer Vision and Pattern Recognition +1412.8657 Physics and Society +1412.8660 +1412.8661 History and Philosophy of Physics +1412.8663 Functional Analysis +1412.8668 Materials Science +1412.8670 Information Theory +1412.8673 Representation Theory +1412.8677 Phenomenology +1412.8679 Representation Theory +1412.8680 Mesoscale and Nanoscale Physics +1412.8681 History and Philosophy of Physics +1412.8682 Combinatorics +1412.8684 Logic +1412.8691 Geometric Topology +1412.8692 Category Theory +1412.8700 Social and Information Networks +1412.8705 Number Theory +1412.8711 Solar and Stellar Astrophysics +1412.8712 Cryptography and Security +1412.8721 Combinatorics +1412.8722 Algebraic Topology +1412.8723 Optimization and Control +1412.8727 Algebraic Topology +1412.8735 Fluid Dynamics +1412.8736 Optimization and Control +1412.8737 Algebraic Topology +1412.8738 Cosmology and Nongalactic Astrophysics +1412.8741 Group Theory +1412.8747 Theory +1412.8752 Quantitative Methods +1412.8758 Mesoscale and Nanoscale Physics +1412.8759 Phenomenology +1412.8761 Classical Analysis and ODEs +math-ph/0005015 +math-ph/0005018 +math-ph/0101011 +math-ph/0201009 +math-ph/0206025 +math-ph/0208035 +math-ph/0211057 +math-ph/0302029 +math-ph/0405061 +math-ph/0605054 +math-ph/9912005 +math/0403072 Quantum Algebra +math/0403190 Dynamical Systems +math/0509197 Dynamical Systems +math/0607688 Number Theory +quant-ph/0507026 +quant-ph/0507050 +0706.1217 Combinatorics +0710.3857 Metric Geometry +0905.1864 Differential Geometry +0908.0165 Geometric Topology +0910.0907 Dynamical Systems +0912.2394 Combinatorics +1004.3072 Number Theory +1007.0826 Metric Geometry +1008.4633 Number Theory +1012.3846 Differential Geometry +1102.4246 Numerical Analysis +1104.2635 Number Theory +1105.4134 Statistical Mechanics +1107.1130 Number Theory +1109.0427 +1112.1015 Optics +1204.2133 Number Theory +1204.2804 Social and Information Networks +1206.2518 Complex Variables +1206.4436 Information Theory +1207.0299 Strongly Correlated Electrons +1208.2089 Number Theory +1209.3605 Algebraic Geometry +1210.6911 Computation +1211.0729 Data Structures and Algorithms +1212.0414 Strongly Correlated Electrons +1212.0790 Populations and Evolution +1212.4544 Algebraic Geometry +1212.5733 Operator Algebras +1212.6102 Combinatorics +1301.4976 Machine Learning +1301.6926 Combinatorics +1302.5505 Medical Physics +1302.6144 Number Theory +1302.6497 Combinatorics +1303.1880 Programming Languages +1303.6821 Soft Condensed Matter +1304.0105 Materials Science +1304.4018 Classical Analysis and ODEs +1304.5240 Phenomenology +1305.2446 Computer Science and Game Theory +1305.3821 +1306.0772 Networking and Internet Architecture +1306.1032 Probability +1306.2629 Phenomenology +1306.3089 +1306.6071 General Physics +1306.6906 +1307.0453 Number Theory +1307.5037 Number Theory +1307.5543 +1307.6221 Mesoscale and Nanoscale Physics +1307.6962 Computer Vision and Pattern Recognition +1307.7377 Combinatorics +1308.0164 Phenomenology +1309.1175 Classical Analysis and ODEs +1309.1689 Phenomenology +1309.2277 Cosmology and Nongalactic Astrophysics +1309.5722 Differential Geometry +1310.1490 Metric Geometry +1310.2963 Physics and Society +1310.3804 +1310.4187 Number Theory +1311.1370 Phenomenology +1311.2109 Computer Science and Game Theory +1311.3406 Optimization and Control +1311.4304 Lattice +1311.4579 Solar and Stellar Astrophysics +1311.6884 Mesoscale and Nanoscale Physics +1311.7020 Materials Science +1312.0572 +1312.2668 Systems and Control +1312.4150 Phenomenology +1312.4565 +1401.0590 Theory +1401.0604 Computation +1401.2076 Phenomenology +1401.4803 Adaptation and Self-Organizing Systems +1401.5027 Physics and Society +1401.5726 Social and Information Networks +1401.7047 Fluid Dynamics +1401.7635 Software Engineering +1401.7805 Lattice +1401.8216 Phenomenology +1402.0777 Phenomenology +1402.2033 Representation Theory +1402.5800 +1402.5977 Phenomenology +1402.6222 +1402.6323 Strongly Correlated Electrons +1402.6680 +1402.7353 Mesoscale and Nanoscale Physics +1403.0382 Mesoscale and Nanoscale Physics +1403.0943 +1403.1568 Strongly Correlated Electrons +1403.1993 Metric Geometry +1403.2527 Networking and Internet Architecture +1403.3401 Phenomenology +1403.3447 Mesoscale and Nanoscale Physics +1403.4397 +1403.5184 +1403.5668 +1403.6086 Theory +1403.6665 Metric Geometry +1403.6781 Theory +1403.6829 Theory +1403.7552 Phenomenology +1403.7852 Statistics Theory +1403.8051 Phenomenology +1404.0199 Complex Variables +1404.0276 Cosmology and Nongalactic Astrophysics +1404.0432 Phenomenology +1404.0645 Dynamical Systems +1404.0937 Optics +1404.0996 Phenomenology +1404.1304 Functional Analysis +1404.1373 Phenomenology +1404.1862 Strongly Correlated Electrons +1404.2473 Dynamical Systems +1404.2569 Operator Algebras +1404.3177 Computation +1404.3283 Experiment +1404.3452 Strongly Correlated Electrons +1404.3476 Disordered Systems and Neural Networks +1404.3607 Mesoscale and Nanoscale Physics +1404.3930 Materials Science +1404.4177 Analysis of PDEs +1404.5482 Strongly Correlated Electrons +1404.6128 Phenomenology +1404.7312 Phenomenology +1404.7554 Phenomenology +1404.7757 +1405.0667 +1405.1215 Other Condensed Matter +1405.1222 Statistical Mechanics +1405.1806 Theory +1405.2065 Theory +1405.3068 Strongly Correlated Electrons +1405.3274 +1405.3295 Machine Learning +1405.3467 Mesoscale and Nanoscale Physics +1405.3530 Phenomenology +1405.5078 +1405.5673 Materials Science +1405.6842 Experiment +1405.7288 +1405.7622 Statistical Mechanics +1406.0248 Fluid Dynamics +1406.0652 Solar and Stellar Astrophysics +1406.2249 Theory +1406.2300 K-Theory and Homology +1406.2321 Astrophysics of Galaxies +1406.2868 Astrophysics of Galaxies +1406.3024 Mesoscale and Nanoscale Physics +1406.3264 Statistical Mechanics +1406.3274 +1406.3333 +1406.3535 Mesoscale and Nanoscale Physics +1406.3643 +1406.4268 +1406.5107 Quantum Gases +1406.5154 Astrophysics of Galaxies +1406.5208 Theory +1406.5881 Methodology +1406.6019 Theory +1406.6061 Superconductivity +1406.6223 Mesoscale and Nanoscale Physics +1406.6678 Lattice +1406.6734 +1406.7051 Astrophysics of Galaxies +1406.7281 Phenomenology +1406.7837 Phenomenology +1407.0299 High Energy Astrophysical Phenomena +1407.0510 +1407.0663 High Energy Astrophysical Phenomena +1407.0737 Strongly Correlated Electrons +1407.0880 Machine Learning +1407.0998 +1407.1630 +1407.2355 Theory +1407.2471 Phenomenology +1407.2862 +1407.3227 Solar and Stellar Astrophysics +1407.3442 Solar and Stellar Astrophysics +1407.3785 Phenomenology +1407.3814 Theory +1407.4463 Astrophysics of Galaxies +1407.5375 Solar and Stellar Astrophysics +1407.5379 Solar and Stellar Astrophysics +1407.5678 +1407.5729 Astrophysics of Galaxies +1407.5981 Software Engineering +1407.6705 Computer Vision and Pattern Recognition +1407.6819 Solar and Stellar Astrophysics +1407.7139 Phenomenology +1407.7147 Probability +1407.7952 Solar and Stellar Astrophysics +1407.8190 Solar and Stellar Astrophysics +1407.8306 Astrophysics of Galaxies +1407.8346 +1408.0560 +1408.1197 Numerical Analysis +1408.1516 High Energy Astrophysical Phenomena +1408.1578 Numerical Analysis +1408.1611 Solar and Stellar Astrophysics +1408.1860 +1408.2491 Solar and Stellar Astrophysics +1408.2720 Cosmology and Nongalactic Astrophysics +1408.4495 Numerical Analysis +1408.5133 Solar and Stellar Astrophysics +1408.6330 +1409.0254 Solar and Stellar Astrophysics +1409.0710 Earth and Planetary Astrophysics +1409.0751 Statistical Mechanics +1409.2108 Theory +1409.3632 Classical Physics +1409.3917 Networking and Internet Architecture +1409.4039 Number Theory +1409.4208 Experiment +1409.4299 Computational Geometry +1409.4316 Algebraic Geometry +1409.4319 Geometric Topology +1409.4347 Metric Geometry +1409.4402 Analysis of PDEs +1409.4403 Physics and Society +1409.4404 Populations and Evolution +1409.4405 Instrumentation and Detectors +1409.4406 Instrumentation and Methods for Astrophysics +1409.4407 Instrumentation and Methods for Astrophysics +1409.4408 General Physics +1409.4409 Cryptography and Security +1409.4427 Mesoscale and Nanoscale Physics +1409.4438 Systems and Control +1409.4439 Phenomenology +1409.4446 Mesoscale and Nanoscale Physics +1409.4447 Systems and Control +1409.4449 Dynamical Systems +1409.4451 Systems and Control +1409.4452 Classical Analysis and ODEs +1409.4454 +1409.4457 Geometric Topology +1409.4466 Experiment +1409.4469 Pattern Formation and Solitons +1409.4470 Networking and Internet Architecture +1409.4477 Optimization and Control +1409.4481 Computer Vision and Pattern Recognition +1409.4484 +1409.4489 Information Theory +1409.4490 Probability +1409.4492 Analysis of PDEs +1409.4496 Materials Science +1409.4499 Networking and Internet Architecture +1409.4500 +1409.4504 Computation and Language +1409.4505 Instrumentation and Detectors +1409.4506 +1409.4507 Databases +1409.4512 Methodology +1409.4519 Analysis of PDEs +1409.4523 Probability +1409.4524 Optimization and Control +1409.4529 +1409.4530 Solar and Stellar Astrophysics +1409.4532 +1409.4541 Economics +1409.4544 Classical Analysis and ODEs +1409.4553 Statistics Theory +1409.4554 Materials Science +1409.4559 Computer Vision and Pattern Recognition +1409.4560 Networking and Internet Architecture +1409.4561 Multiagent Systems +1409.4563 Superconductivity +1409.4565 Networking and Internet Architecture +1409.4566 Machine Learning +1409.4567 Phenomenology +1409.4581 Chemical Physics +1409.4589 Representation Theory +1409.4590 Phenomenology +1409.4594 +1409.4599 +1409.4600 +1409.4602 Dynamical Systems +1409.4610 Combinatorics +1409.4612 Functional Analysis +1409.4613 Computational Geometry +1409.4616 Algebraic Geometry +1409.4617 Social and Information Networks +1409.4624 Optimization and Control +1409.4626 Distributed, Parallel, and Cluster Computing +1409.4627 Information Retrieval +1409.4628 Quantitative Methods +1409.4629 Software Engineering +1409.4633 Analysis of PDEs +1409.4634 Optics +1409.4635 Algebraic Geometry +1409.4637 Logic in Computer Science +1409.4639 Systems and Control +1409.4642 Statistics Theory +1409.4643 Superconductivity +1409.4644 Algebraic Geometry +1409.4653 Software Engineering +1409.4656 Probability +1409.4661 Materials Science +1409.4662 Functional Analysis +1409.4665 Optimization and Control +1409.4666 Analysis of PDEs +1409.4670 Representation Theory +1409.4672 Lattice +1409.4685 Numerical Analysis +1409.4686 Representation Theory +1409.4687 Computer Science and Game Theory +1409.4688 Category Theory +1409.4695 Social and Information Networks +1409.4697 Classical Analysis and ODEs +1409.4698 Learning +1409.4700 Neurons and Cognition +1409.4702 Numerical Analysis +1409.4704 Earth and Planetary Astrophysics +1409.4708 Statistical Mechanics +1409.4713 Populations and Evolution +1409.4715 Functional Analysis +1409.4717 Number Theory +1409.4718 Spectral Theory +1409.4719 Mesoscale and Nanoscale Physics +1409.4720 Optics +1409.4722 Analysis of PDEs +1409.4723 Combinatorics +1409.4725 Combinatorics +1409.4727 Neural and Evolutionary Computing +1409.4730 Category Theory +1409.4732 Probability +1409.4734 Algebraic Topology +1409.4735 Atmospheric and Oceanic Physics +1409.4737 Group Theory +1409.4740 Robotics +1409.4746 Probability +1409.4749 Classical Analysis and ODEs +1409.4750 Algebraic Geometry +1409.4751 Mesoscale and Nanoscale Physics +hep-ph/9403208 Phenomenology +math/0305308 Number Theory +math/0307064 Combinatorics +math/0310423 Combinatorics +math/0311289 Number Theory +math/0312418 Combinatorics +math/0312467 Combinatorics +math/0509316 Number Theory +math/0602498 Number Theory +math/0611293 Number Theory +math/0612535 Combinatorics +math/0701080 Number Theory +math/0701083 Metric Geometry +0705.3565 +0803.1372 Populations and Evolution +0911.1429 Probability +1007.5075 Genomics +1010.4819 Category Theory +1101.2585 Phenomenology +1101.3394 Algebraic Geometry +1101.3420 Probability +1103.4133 Programming Languages +1104.1293 Combinatorics +1104.1295 Combinatorics +1106.0271 Probability +1106.0393 Rings and Algebras +1106.4599 Strongly Correlated Electrons +1107.1047 +1107.1317 Optics +1109.5392 Number Theory +1109.6619 Combinatorics +1112.1517 Neural and Evolutionary Computing +1201.1520 Rings and Algebras +1202.1899 +1202.5485 Analysis of PDEs +1202.6097 Representation Theory +1203.1331 +1204.5087 +1204.5939 Dynamical Systems +1204.6263 +1205.6748 Representation Theory +1206.0219 Algebraic Geometry +1206.4227 Geometric Topology +1207.5421 Analysis of PDEs +1207.5926 Artificial Intelligence +1207.6836 +1209.5842 Cosmology and Nongalactic Astrophysics +1210.0368 Logic in Computer Science +1210.2083 Number Theory +1210.4013 Algebraic Geometry +1210.5236 Probability +1210.6383 Classical Analysis and ODEs +1211.1183 Computation +1211.3311 Superconductivity +1211.3910 Optics +1211.4563 Materials Science +1211.4564 Materials Science +1211.5954 Numerical Analysis +1211.6017 General Physics +1211.6018 General Physics +1212.0270 Methodology +1212.4650 Logic in Computer Science +1212.5652 Phenomenology +1212.5895 Logic in Computer Science +1301.0531 Differential Geometry +1301.2243 Representation Theory +1301.7639 +1302.2094 +1302.4006 Formal Languages and Automata Theory +1302.6309 Social and Information Networks +1303.0485 Information Retrieval +1303.2308 Information Retrieval +1303.3712 +1303.4812 Algebraic Geometry +1303.6446 Analysis of PDEs +1304.0261 +1304.0852 Group Theory +1304.5273 Analysis of PDEs +1304.5895 Number Theory +1304.7335 Representation Theory +1304.7340 Rings and Algebras +1305.2490 Neural and Evolutionary Computing +1305.3569 Algebraic Geometry +1305.4335 Mesoscale and Nanoscale Physics +1305.4472 +1306.1175 Cosmology and Nongalactic Astrophysics +1306.1212 Mesoscale and Nanoscale Physics +1306.1329 Spectral Theory +1306.3196 Materials Science +1306.6599 Classical Analysis and ODEs +1307.0735 Functional Analysis +1307.1322 Representation Theory +1307.2028 Logic in Computer Science +1307.2313 Data Structures and Algorithms +1307.4409 Quantum Gases +1307.4686 Optimization and Control +1307.5056 Classical Analysis and ODEs +1307.5706 Statistics Theory +1308.4030 +1308.4959 Atomic Physics +1309.2573 Algebraic Geometry +1309.2775 Metric Geometry +1309.3894 +1309.4238 K-Theory and Homology +1309.7311 Machine Learning +1310.1261 Algebraic Geometry +1310.2825 Phenomenology +1310.3421 +1310.4284 Networking and Internet Architecture +1310.4530 Fluid Dynamics +1310.5338 +1310.7118 Mesoscale and Nanoscale Physics +1310.7884 Geometric Topology +1311.3616 Probability +1311.4220 +1312.1193 Phenomenology +1312.1450 Information Theory +1312.4112 Algebraic Geometry +1312.4882 Combinatorics +1312.5312 Strongly Correlated Electrons +1312.6011 Instrumentation and Detectors +1312.6089 Probability +1312.7193 +1401.0666 Quantum Gases +1401.2226 Cosmology and Nongalactic Astrophysics +1401.2365 Materials Science +1401.3203 Other Quantitative Biology +1401.4288 Classical Analysis and ODEs +1401.4879 Computational Complexity +1401.7461 Mesoscale and Nanoscale Physics +1402.0488 High Energy Astrophysical Phenomena +1402.3413 Combinatorics +1402.5594 +1403.1245 Theory +1403.1467 Strongly Correlated Electrons +1403.2916 Rings and Algebras +1403.3056 Earth and Planetary Astrophysics +1403.3754 Mesoscale and Nanoscale Physics +1403.3980 Mesoscale and Nanoscale Physics +1403.4493 Combinatorics +1403.5079 Rings and Algebras +1403.5496 Methodology +1403.6590 +1404.0550 Phenomenology +1404.0971 Information Theory +1404.1125 Soft Condensed Matter +1404.1428 Symbolic Computation +1404.1521 Learning +1404.1670 Superconductivity +1404.1760 Differential Geometry +1404.1817 Symplectic Geometry +1404.2070 Mesoscale and Nanoscale Physics +1404.3335 Logic +1404.3375 Analysis of PDEs +1404.3415 Learning +1404.3591 Optimization and Control +1404.3720 Digital Libraries +1404.3733 +1404.3734 Strongly Correlated Electrons +1404.3743 Solar and Stellar Astrophysics +1404.3752 Theory +1404.3758 +1404.3759 Computation and Language +1404.3761 Number Theory +1404.3762 Materials Science +1404.3764 Optics +1404.3765 +1404.3767 Numerical Analysis +1404.3768 Data Structures and Algorithms +1404.3772 Commutative Algebra +1404.3776 Computational Geometry +1404.3777 Differential Geometry +1404.3778 Analysis of PDEs +1404.3783 Differential Geometry +1404.3785 Robotics +1404.3786 Materials Science +1404.3788 Information Theory +1404.3790 Commutative Algebra +1404.3793 Commutative Algebra +1404.3794 Materials Science +1404.3796 Commutative Algebra +1404.3802 Instrumentation and Detectors +1404.3807 Number Theory +1404.3808 Systems and Control +1404.3811 Information Theory +1404.3820 Computational Complexity +1404.3822 Geometric Topology +1404.3828 Computer Science and Game Theory +1404.3830 Operator Algebras +1404.3835 Strongly Correlated Electrons +1404.3837 +1404.3842 Solar and Stellar Astrophysics +1404.3849 Strongly Correlated Electrons +1404.3850 Functional Analysis +1404.3854 Algebraic Geometry +1404.3858 Earth and Planetary Astrophysics +1404.3872 +1404.3873 Algebraic Geometry +1404.3874 Probability +1404.3877 Hardware Architecture +1404.3878 Applications +1404.3881 Information Theory +1404.3882 Data Structures and Algorithms +1404.3883 Analysis of PDEs +1404.3884 +1404.3896 Solar and Stellar Astrophysics +1404.3900 +1404.3901 +1404.3908 Other Quantitative Biology +1404.3909 Cosmology and Nongalactic Astrophysics +1404.3910 Dynamical Systems +1404.3913 Distributed, Parallel, and Cluster Computing +1404.3914 Strongly Correlated Electrons +1404.3915 Combinatorics +1404.3916 Commutative Algebra +1404.3918 Combinatorics +1404.3920 Computers and Society +1404.3923 Solar and Stellar Astrophysics +1404.3927 Soft Condensed Matter +1404.3932 Optics +1404.3933 Computer Vision and Pattern Recognition +1404.3940 Phenomenology +1404.3945 Information Theory +1404.3952 Soft Condensed Matter +1404.3954 Probability +1404.3955 Category Theory +1404.3959 Computers and Society +1404.3961 Astrophysics of Galaxies +1404.3965 Optimization and Control +1404.3966 +1404.3967 Mesoscale and Nanoscale Physics +1404.3968 Optics +1404.3970 Solar and Stellar Astrophysics +1404.3977 Probability +1404.3978 +1404.3990 Data Structures and Algorithms +1404.3991 Computer Vision and Pattern Recognition +1404.3993 Medical Physics +1404.3994 +1404.3996 Probability +1404.3997 Information Theory +1404.3999 Differential Geometry +1404.4002 Statistics Theory +1404.4004 Logic +1404.4006 Applications +1404.4011 Analysis of PDEs +1404.4020 Computational Complexity +1404.4021 Discrete Mathematics +1404.4028 Pricing of Securities +1404.4031 Chemical Physics +1404.4033 Combinatorics +1404.4037 Superconductivity +1404.4040 Portfolio Management +1404.4041 Numerical Analysis +quant-ph/0607218 +0705.4011 +0711.1477 Probability +0801.4036 Probability +0802.3807 Algebraic Geometry +0806.0957 Materials Science +0809.3784 +0907.1297 +1005.2171 Algebraic Geometry +1007.0199 Trading and Market Microstructure +1011.6610 Probability +1012.2703 Probability +1111.0485 Experiment +1112.1803 +1201.2030 Strongly Correlated Electrons +1201.4785 +1203.3112 Combinatorics +1204.3686 Combinatorics +1206.0885 Analysis of PDEs +1206.3983 Theory +1207.2393 Combinatorics +1207.6447 Combinatorics +1207.6765 Combinatorics +1208.1327 Optimization and Control +1208.1622 +1208.3965 Combinatorics +1211.3513 Combinatorics +1212.1440 Applications +1212.1834 Number Theory +1212.2362 Theory +1301.0374 Combinatorics +1301.0873 Group Theory +1302.0412 Complex Variables +1302.0673 Probability +1303.2515 +1304.6032 Symplectic Geometry +1304.7225 +1305.0924 Probability +1305.4292 Probability +1305.5411 Populations and Evolution +1306.0368 Solar and Stellar Astrophysics +1306.3810 Atomic Physics +1307.3052 +1307.5937 Optics +1308.4460 +1308.5667 Algebraic Geometry +1308.6171 Other Condensed Matter +1309.1153 +1309.1632 Combinatorics +1309.7219 Quantum Gases +1310.1525 Social and Information Networks +1310.1761 Distributed, Parallel, and Cluster Computing +1310.4073 Biomolecules +1310.6288 Machine Learning +1310.6682 Number Theory +1311.0538 Group Theory +1311.3458 Probability +1312.1541 Theory +1312.6613 Fluid Dynamics +1401.0687 Metric Geometry +1401.1138 Information Theory +1401.1257 Physics and Society +1401.2019 Dynamical Systems +1401.2280 Optimization and Control +1401.6033 Numerical Analysis +1401.7339 Phenomenology +1402.3109 +1402.6739 Fluid Dynamics +1403.0889 Mesoscale and Nanoscale Physics +1403.1868 Optimization and Control +1403.2362 +1403.4086 Populations and Evolution +1403.4204 +1403.4389 Mesoscale and Nanoscale Physics +1403.4606 Phenomenology +1403.5020 Systems and Control +1403.5914 Functional Analysis +1403.6463 +1404.1422 +1404.3281 Mesoscale and Nanoscale Physics +1404.4537 Theory +1404.4806 Networking and Internet Architecture +1404.4839 Optimization and Control +1404.6478 Cosmology and Nongalactic Astrophysics +1404.6868 Phenomenology +1404.6974 Artificial Intelligence +1405.1652 +1405.2073 Theory +1405.2367 Mesoscale and Nanoscale Physics +1405.2460 Instrumentation and Methods for Astrophysics +1405.3150 Mesoscale and Nanoscale Physics +1405.4350 Computational Physics +1405.4997 Physics and Society +1405.5127 Fluid Dynamics +1405.6779 +1405.6874 Data Structures and Algorithms +1405.7969 Cosmology and Nongalactic Astrophysics +1406.2598 Mesoscale and Nanoscale Physics +1406.2984 Computer Vision and Pattern Recognition +1406.4190 Phenomenology +1406.7094 +1406.7580 Probability +1407.0646 +1407.0810 Soft Condensed Matter +1407.0930 +1407.1323 Strongly Correlated Electrons +1407.2804 Quantum Gases +1407.3894 Optimization and Control +1407.4635 Theory +1407.6439 Databases +1407.7494 Experiment +1407.7906 Learning +1407.8248 Instrumentation and Detectors +1408.2719 Optics +1408.3238 Strongly Correlated Electrons +1408.3392 Astrophysics of Galaxies +1408.3783 Computer Science and Game Theory +1408.4454 Astrophysics of Galaxies +1408.4772 General Physics +1408.5010 Phenomenology +1409.0076 Category Theory +1409.0201 Optimization and Control +1409.1386 Statistics Theory +1409.2101 +1409.2167 Complex Variables +1409.3498 +1409.4004 Differential Geometry +1409.4230 Discrete Mathematics +1409.4476 Systems and Control +1409.4601 Logic +1409.4736 History and Overview +1409.5052 Logic +1409.5092 Computers and Society +1409.5101 +1409.5117 Analysis of PDEs +1409.5133 Spectral Theory +1409.5138 Analysis of PDEs +1409.5142 Pricing of Securities +1409.5143 Quantum Gases +1409.5146 Combinatorics +1409.5151 Accelerator Physics +1409.5153 Cosmology and Nongalactic Astrophysics +1409.5154 Combinatorics +1409.5164 Combinatorics +1409.5165 Learning +1409.5166 Artificial Intelligence +1409.5167 Materials Science +1409.5168 Instrumentation and Detectors +1409.5169 Analysis of PDEs +1409.5172 Applications +1409.5175 Combinatorics +1409.5177 Information Theory +1409.5178 Machine Learning +1409.5182 Molecular Networks +1409.5184 Rings and Algebras +1409.5188 Computer Vision and Pattern Recognition +1409.5190 Soft Condensed Matter +1409.5192 Chemical Physics +1409.5193 Atomic Physics +1409.5194 Materials Science +1409.5200 Computer Science and Game Theory +1409.5203 Dynamical Systems +1409.5204 Dynamical Systems +1409.5206 Superconductivity +1409.5207 Representation Theory +1409.5208 Accelerator Physics +1409.5213 Combinatorics +1409.5214 Disordered Systems and Neural Networks +1409.5216 Accelerator Physics +1409.5218 Chemical Physics +1409.5220 Number Theory +1409.5221 Combinatorics +1409.5222 Optimization and Control +1409.5223 Artificial Intelligence +1409.5224 Systems and Control +1409.5225 Optimization and Control +1409.5226 Materials Science +1409.5227 Solar and Stellar Astrophysics +1409.5229 Algebraic Geometry +1409.5230 Computer Vision and Pattern Recognition +1409.5231 Complex Variables +1409.5243 Classical Analysis and ODEs +1409.5246 Plasma Physics +1409.5248 Phenomenology +1409.5250 Phenomenology +1409.5257 Networking and Internet Architecture +1409.5262 Phenomenology +1409.5266 Earth and Planetary Astrophysics +1409.5267 Mesoscale and Nanoscale Physics +1409.5269 Experiment +1409.5270 Commutative Algebra +1409.5271 Analysis of PDEs +1409.5273 Functional Analysis +1409.5279 Probability +1409.5280 Neurons and Cognition +1409.5281 Number Theory +1409.5282 Human-Computer Interaction +1409.5284 +1409.5285 Probability +1409.5286 Differential Geometry +1409.5287 Cryptography and Security +1409.5292 Systems and Control +1409.5293 Materials Science +1409.5295 Combinatorics +1409.5296 Combinatorics +1409.5298 Physics and Society +1409.5299 Analysis of PDEs +1409.5306 Computer Science and Game Theory +1409.5312 Logic +1409.5314 Algebraic Topology +1409.5316 Analysis of PDEs +1409.5317 Artificial Intelligence +1409.5318 Physics and Society +1409.5321 Statistical Finance +1409.5326 Neurons and Cognition +1409.5327 Networking and Internet Architecture +1409.5328 Combinatorics +1409.5330 Learning +1409.5332 Algebraic Geometry +1409.5333 +1409.5339 Solar and Stellar Astrophysics +1409.5344 Phenomenology +1409.5345 +1409.5346 +1409.5348 Analysis of PDEs +1409.5360 Numerical Analysis +1409.5362 +1409.5366 Computer Science and Game Theory +1409.5367 Number Theory +1409.5368 Logic in Computer Science +1409.5369 Probability +1409.5374 Soft Condensed Matter +1409.5378 Functional Analysis +1409.5381 Functional Analysis +1409.5383 Computer Science and Game Theory +1409.5384 Analysis of PDEs +1409.5385 Functional Analysis +1409.5386 +1409.5390 Mesoscale and Nanoscale Physics +1409.5391 Methodology +1409.5394 Number Theory +1409.5395 High Energy Astrophysical Phenomena +1409.5398 Earth and Planetary Astrophysics +1409.5399 Genomics +1409.5401 Optimization and Control +1409.5402 Learning +1409.5405 Dynamical Systems +1409.5410 Algebraic Geometry +1409.5416 Instrumentation and Methods for Astrophysics +1409.5418 Mesoscale and Nanoscale Physics +1409.5419 Atmospheric and Oceanic Physics +1409.5420 Accelerator Physics +1409.5424 Optimization and Control +1409.5426 Accelerator Physics +math/0012247 Quantum Algebra +math/0501268 Probability +0905.3099 Phenomenology +0905.3168 +0905.3223 Cosmology and Nongalactic Astrophysics +0905.3246 Instrumentation and Detectors +0905.3265 Phenomenology +0905.3368 High Energy Astrophysical Phenomena +0905.3388 Astrophysics of Galaxies +0905.3430 +0905.3470 Cosmology and Nongalactic Astrophysics +0905.3518 +0905.3648 Instrumentation and Detectors +0905.3658 Phenomenology +0905.3675 Instrumentation and Methods for Astrophysics +0905.3677 Instrumentation and Detectors +0905.3762 +0905.3784 Phenomenology +0905.3882 Theory +0905.3900 +0905.3916 Phenomenology +0905.3936 Phenomenology +0905.3943 Theory +0905.3977 Instrumentation and Detectors +0905.4089 Data Analysis, Statistics and Probability +0905.4113 +0905.4156 Instrumentation and Methods for Astrophysics +0905.4180 Theory +0905.4194 Geophysics +0905.4202 Algebraic Geometry +0905.4214 Theory +0905.4242 +0905.4260 Phenomenology +0905.4297 Astrophysics of Galaxies +0905.4342 Theory +0905.4353 +0905.4410 Phenomenology +0905.4416 Phenomenology +0905.4422 Phenomenology +0905.4424 Astrophysics of Galaxies +0905.4440 High Energy Astrophysical Phenomena +0905.4499 Cosmology and Nongalactic Astrophysics +0905.4554 Phenomenology +0905.4577 Phenomenology +0905.4584 +0905.4620 Phenomenology +0905.4720 Theory +0906.0003 Theory +0906.0014 Strongly Correlated Electrons +0906.0050 Theory +0906.0079 Phenomenology +0906.0140 +0906.0261 Theory +0906.0292 +0906.0307 Phenomenology +0906.0323 Phenomenology +0906.0353 Earth and Planetary Astrophysics +0906.0363 Phenomenology +0906.0369 Phenomenology +0906.0499 Theory +0906.0536 +0906.0569 +0906.0581 Theory +0906.0613 Astrophysics of Galaxies +0906.0624 +0906.0672 Phenomenology +0906.0727 Theory +0906.0803 Cosmology and Nongalactic Astrophysics +0906.0890 Phenomenology +0906.0919 Astrophysics of Galaxies +0906.0942 Solar and Stellar Astrophysics +0906.0991 High Energy Astrophysical Phenomena +0906.1103 Superconductivity +0906.1121 Phenomenology +0906.1228 +0906.1229 Phenomenology +0906.1255 Theory +0906.1281 +0906.1355 Astrophysics of Galaxies +0906.1376 Statistical Mechanics +0906.1377 Theory +0906.1396 Statistical Mechanics +0906.1494 Instrumentation and Detectors +0906.1540 Atomic Physics +0906.1572 Theory +0906.1592 Theory +0906.1602 +0906.1639 Experiment +0906.1655 Theory +0906.1708 Instrumentation and Detectors +0906.1742 Phenomenology +0906.1824 +0906.1833 Phenomenology +0906.1902 Cosmology and Nongalactic Astrophysics +0906.1904 Phenomenology +0906.1936 Theory +0906.1962 Exactly Solvable and Integrable Systems +0906.1997 Phenomenology +0906.2001 +0906.2003 High Energy Astrophysical Phenomena +0906.2007 Theory +0906.2021 High Energy Astrophysical Phenomena +0906.2142 +0906.2148 Theory +0906.2289 Phenomenology +0906.2343 +0906.2403 Cosmology and Nongalactic Astrophysics +0906.2485 Phenomenology +0906.2537 Phenomenology +0906.2668 +0906.2694 +0906.2712 Theory +0906.2734 Cosmology and Nongalactic Astrophysics +0906.2822 +0906.2913 Theory +0906.2929 +0906.2962 High Energy Astrophysical Phenomena +0906.3152 High Energy Astrophysical Phenomena +0906.3184 Phenomenology +0906.3222 Theory +0906.3242 Theory +0906.3314 Solar and Stellar Astrophysics +0906.3434 Phenomenology +0906.3435 Earth and Planetary Astrophysics +0906.3524 +0906.3559 Theory +0906.3624 Statistical Mechanics +0906.3655 +0906.3711 Theory +0906.3791 High Energy Astrophysical Phenomena +0906.3810 +0906.3811 Theory +0906.3817 Theory +0906.3947 +0906.3960 +0906.4014 +0906.4101 Cosmology and Nongalactic Astrophysics +0906.4237 +0906.4240 Theory +0906.4241 High Energy Astrophysical Phenomena +0906.4269 +0906.4307 Operator Algebras +0906.4384 Solar and Stellar Astrophysics +0906.4423 Theory +0906.4426 Theory +0906.4487 Theory +0906.4584 Quantum Gases +0906.4713 Astrophysics of Galaxies +0906.4714 +0906.4743 High Energy Astrophysical Phenomena +0906.4814 Theory +0906.4848 Theory +0906.4852 Lattice +0906.5009 Phenomenology +0906.5082 Solar and Stellar Astrophysics +0906.5088 Earth and Planetary Astrophysics +0906.5142 +0906.5161 Cosmology and Nongalactic Astrophysics +0906.5239 +0906.5294 Phenomenology +0906.5299 Theory +0906.5376 +0906.5401 Theory +0906.5443 Phenomenology +0906.5454 Phenomenology +0906.5530 +0906.5542 Phenomenology +0906.5554 Lattice +0906.5571 +0907.0018 Cosmology and Nongalactic Astrophysics +0907.0091 Instrumentation and Methods for Astrophysics +0907.0111 Solar and Stellar Astrophysics +0907.0119 +0907.0216 General Physics +0907.0327 Theory +0907.0426 Theory +0907.0434 +0907.0498 High Energy Astrophysical Phenomena +0907.0519 Phenomenology +0907.0583 Lattice +0907.0594 Phenomenology +0907.0634 Experiment +0907.0643 Cosmology and Nongalactic Astrophysics +0907.0668 Phenomenology +0907.0696 +0907.0824 +0907.0846 +0907.0926 Phenomenology +0907.1018 Cosmology and Nongalactic Astrophysics +0907.1035 High Energy Astrophysical Phenomena +0907.1058 Theory +0907.1084 Phenomenology +0907.1226 Solar and Stellar Astrophysics +0907.1242 Theory +0907.1328 High Energy Astrophysical Phenomena +0907.1330 Instrumentation and Methods for Astrophysics +0907.1360 +0907.1371 Lattice +0907.1420 Theory +0907.1437 Cosmology and Nongalactic Astrophysics +0907.1445 High Energy Astrophysical Phenomena +0907.1483 Phenomenology +0907.1496 Phenomenology +0907.1537 High Energy Astrophysical Phenomena +0907.1559 Theory +0907.1567 Theory +0907.1580 Theory +0907.1629 +0907.1646 Cosmology and Nongalactic Astrophysics +0907.1658 Cosmology and Nongalactic Astrophysics +0907.1705 +0907.1706 Theory +0907.1747 High Energy Astrophysical Phenomena +0907.1752 Theory +0907.1763 +0907.1773 Earth and Planetary Astrophysics +0907.1781 Phenomenology +0907.1894 Phenomenology +0907.1899 Astrophysics of Galaxies +0907.1904 Phenomenology +0907.1936 +0907.1938 Lattice +0907.1942 Cosmology and Nongalactic Astrophysics +0907.1952 Theory +0907.1994 +0907.2010 Theory +0907.2013 High Energy Astrophysical Phenomena +0907.2229 Cosmology and Nongalactic Astrophysics +0907.2253 +0907.2358 Theory +0907.2375 Theory +0907.2384 Cosmology and Nongalactic Astrophysics +0907.2395 Phenomenology +0907.2414 Phenomenology +0907.2424 +0907.2440 +0907.2476 Theory +0907.2520 +0907.2560 Theory +0907.2589 Phenomenology +0907.2630 Phenomenology +0907.2716 +0907.2723 +0907.2798 +0907.2871 +0907.2916 Theory +0907.2940 +0907.2942 Phenomenology +0907.3038 Accelerator Physics +0907.3073 +0907.3121 Theory +0907.3122 Theory +0907.3134 Strongly Correlated Electrons +0907.3203 Theory +0907.3395 Theory +0907.3403 Phenomenology +0907.3416 Phenomenology +0907.3477 Theory +0907.3553 Theory +0907.3555 Phenomenology +0907.3568 Theory +0907.3607 Phenomenology +0907.3609 Lattice +0907.3697 Statistical Mechanics +0907.3712 +0907.3714 Phenomenology +0907.3868 Theory +0907.3906 Phenomenology +0907.3931 Phenomenology +0907.3933 Phenomenology +0907.3941 +0907.3956 +0907.3963 Phenomenology +0907.3975 +0907.3982 Theory +0907.4002 +0907.4082 Theory +0907.4139 Theory +0907.4171 Optics +0907.4221 Theory +0907.4265 Theory +0907.4271 Theory +0907.4272 Theory +0907.4305 Quantum Gases +0907.4438 +0907.4511 Phenomenology +0907.4772 Phenomenology +0907.4773 Phenomenology +0907.4784 +0907.4801 Phenomenology +0907.4887 Theory +0907.4940 Phenomenology +0907.5008 +0907.5044 Phenomenology +0907.5084 Phenomenology +0907.5147 Theory +0907.5158 Phenomenology +0907.5229 Phenomenology +0907.5258 Theory +0907.5260 Theory +0907.5271 Phenomenology +0907.5313 +0907.5330 Quantum Algebra +0907.5354 Theory +0907.5358 +0907.5361 Phenomenology +0907.5386 Phenomenology +0907.5406 Theory +0907.5593 Theory +0907.5603 Phenomenology +0908.0056 Theory +0908.0105 Experiment +0908.0131 Theory +0908.0193 Cosmology and Nongalactic Astrophysics +0908.0215 +0908.0231 Experiment +0908.0235 +0908.0287 +0908.0315 Phenomenology +0908.0370 Theory +0908.0395 Phenomenology +0908.0457 Phenomenology +0908.0467 Theory +0908.0641 Geophysics +0908.0651 Geophysics +0908.0661 +0908.0696 Differential Geometry +0908.0726 +0908.0797 Theory +0908.0937 Lattice +0908.0953 Theory +0908.0955 Theory +0908.1049 Theory +0908.1052 Theory +0908.1079 Phenomenology +0908.1112 Theory +0908.1131 Phenomenology +0908.1229 Theory +0908.1236 High Energy Astrophysical Phenomena +0908.1269 Theory +0908.1300 +0908.1402 Theory +0908.1436 Theory +0908.1473 Theory +0908.1499 +0908.1529 Experiment +0908.1554 Phenomenology +0908.1616 +0908.1636 Phenomenology +0908.1671 Algebraic Geometry +0908.1697 +0908.1722 +0908.1832 High Energy Astrophysical Phenomena +0908.1868 Phenomenology +0908.1881 Theory +0908.1944 +0908.1964 Theory +0908.2034 Theory +0908.2155 +0908.2170 General Physics +0908.2192 Phenomenology +0908.2216 Phenomenology +0908.2233 Experiment +0908.2312 Phenomenology +0908.2407 Optics +0908.2424 Phenomenology +0908.2429 High Energy Astrophysical Phenomena +0908.2447 Phenomenology +0908.2530 Phenomenology +0908.2567 Phenomenology +0908.2568 Theory +0908.2570 Phenomenology +0908.2582 +0908.2653 Phenomenology +0908.2663 Theory +0908.2710 +0908.2716 Phenomenology +0908.2720 +0908.2760 Phenomenology +0908.2777 +0908.2809 Theory +0908.2825 +0908.2829 +0908.2856 Phenomenology +0908.2875 +0908.2882 +0908.2897 Phenomenology +0908.2944 Phenomenology +0908.2949 +0908.2973 Phenomenology +0908.2993 Phenomenology +0908.2998 Phenomenology +0908.3055 Theory +0908.3162 Instrumentation and Detectors +0908.3165 Phenomenology +0908.3189 Phenomenology +0908.3198 +0908.3214 Experiment +0908.3218 Theory +0908.3254 Phenomenology +0908.3270 +0908.3273 Phenomenology +0908.3277 Instrumentation and Detectors +0908.3283 +0908.3300 Theory +0908.3344 Phenomenology +0908.3357 +0908.3402 Theory +0908.3403 Phenomenology +0908.3449 +0908.3460 Theory +0908.3470 Phenomenology +0908.3472 +0908.3578 Phenomenology +0908.3651 Exactly Solvable and Integrable Systems +0908.3655 +0908.3696 Phenomenology +0908.3711 Phenomenology +0908.3727 Phenomenology +0908.3770 Phenomenology +0908.3795 Experiment +0908.3811 Phenomenology +0908.3918 Theory +0908.3942 Theory +0908.3969 Phenomenology +0908.3995 +0908.3996 Phenomenology +0908.4066 Experiment +0908.4082 Cosmology and Nongalactic Astrophysics +0908.4127 High Energy Astrophysical Phenomena +0908.4129 Solar and Stellar Astrophysics +0908.4133 Cosmology and Nongalactic Astrophysics +0908.4149 Phenomenology +0908.4152 Cosmology and Nongalactic Astrophysics +0908.4163 Phenomenology +0908.4172 Solar and Stellar Astrophysics +0908.4174 Solar and Stellar Astrophysics +0908.4185 Solar and Stellar Astrophysics +0908.4231 Phenomenology +0908.4260 Phenomenology +0908.4271 Cosmology and Nongalactic Astrophysics +0908.4273 Solar and Stellar Astrophysics +0908.4274 Cosmology and Nongalactic Astrophysics +0908.4276 Cosmology and Nongalactic Astrophysics +0908.4277 Cosmology and Nongalactic Astrophysics +0908.4283 Solar and Stellar Astrophysics +0908.4291 Phenomenology +0908.4300 Phenomenology +0908.4306 High Energy Astrophysical Phenomena +0908.4312 Cosmology and Nongalactic Astrophysics +0908.4345 Cosmology and Nongalactic Astrophysics +0908.4357 Phenomenology +0908.4360 Astrophysics of Galaxies +0908.4371 High Energy Astrophysical Phenomena +0908.4405 +0908.4488 Cosmology and Nongalactic Astrophysics +0908.4503 Accelerator Physics +0908.4536 Solar and Stellar Astrophysics +0908.4553 Experiment +0908.4559 Phenomenology +0908.4563 High Energy Astrophysical Phenomena +0908.4591 Solar and Stellar Astrophysics +0908.4593 +0908.4595 Complex Variables +0909.0002 Solar and Stellar Astrophysics +0909.0004 Earth and Planetary Astrophysics +0909.0006 Solar and Stellar Astrophysics +0909.0009 Cosmology and Nongalactic Astrophysics +0909.0012 Phenomenology +0909.0013 Astrophysics of Galaxies +0909.0014 Cosmology and Nongalactic Astrophysics +0909.0026 +0909.0032 Cosmology and Nongalactic Astrophysics +0909.0051 Phenomenology +0909.0054 Astrophysics of Galaxies +0909.0058 Solar and Stellar Astrophysics +0909.0059 Phenomenology +0909.0087 Theory +0909.0094 Astrophysics of Galaxies +0909.0100 Phenomenology +0909.0112 Earth and Planetary Astrophysics +0909.0133 High Energy Astrophysical Phenomena +0909.0140 Solar and Stellar Astrophysics +0909.0148 Solar and Stellar Astrophysics +0909.0202 Astrophysics of Galaxies +0909.0252 Theory +0909.0254 Lattice +0909.0258 Cosmology and Nongalactic Astrophysics +0909.0259 Earth and Planetary Astrophysics +0909.0264 Phenomenology +0909.0266 Phenomenology +0909.0267 High Energy Astrophysical Phenomena +0909.0269 Astrophysics of Galaxies +0909.0272 Cosmology and Nongalactic Astrophysics +0909.0274 +0909.0275 High Energy Astrophysical Phenomena +0909.0276 Astrophysics of Galaxies +0909.0289 Phenomenology +0909.0306 High Energy Astrophysical Phenomena +0909.0324 Solar and Stellar Astrophysics +0909.0332 Earth and Planetary Astrophysics +0909.0333 +0909.0344 Solar and Stellar Astrophysics +0909.0371 High Energy Astrophysical Phenomena +0909.0381 Phenomenology +0909.0382 Astrophysics of Galaxies +0909.0398 Cosmology and Nongalactic Astrophysics +0909.0399 Cosmology and Nongalactic Astrophysics +0909.0404 Earth and Planetary Astrophysics +0909.0437 Cosmology and Nongalactic Astrophysics +0909.0451 Astrophysics of Galaxies +0909.0484 Instrumentation and Methods for Astrophysics +0909.0485 Experiment +0909.0505 Earth and Planetary Astrophysics +0909.0507 Cosmology and Nongalactic Astrophysics +0909.0509 Solar and Stellar Astrophysics +0909.0511 Solar and Stellar Astrophysics +0909.0516 Cosmology and Nongalactic Astrophysics +0909.0518 Theory +0909.0529 Cosmology and Nongalactic Astrophysics +0909.0596 Cosmology and Nongalactic Astrophysics +0909.0601 +0909.0614 Theory +0909.0622 Cosmology and Nongalactic Astrophysics +0909.0627 Solar and Stellar Astrophysics +0909.0643 Solar and Stellar Astrophysics +0909.0649 Cosmology and Nongalactic Astrophysics +0909.0654 Instrumentation and Methods for Astrophysics +0909.0658 Cosmology and Nongalactic Astrophysics +0909.0688 Solar and Stellar Astrophysics +0909.0690 Solar and Stellar Astrophysics +0909.0691 Solar and Stellar Astrophysics +0909.0697 Theory +0909.0708 High Energy Astrophysical Phenomena +0909.0730 Solar and Stellar Astrophysics +0909.0735 Solar and Stellar Astrophysics +0909.0739 Solar and Stellar Astrophysics +0909.0741 High Energy Astrophysical Phenomena +0909.0747 Earth and Planetary Astrophysics +0909.0750 Cosmology and Nongalactic Astrophysics +0909.0754 +0909.0755 High Energy Astrophysical Phenomena +0909.0756 Cosmology and Nongalactic Astrophysics +0909.0770 Earth and Planetary Astrophysics +0909.0787 Instrumentation and Detectors +0909.0818 Solar and Stellar Astrophysics +0909.0828 Phenomenology +0909.0842 Solar and Stellar Astrophysics +0909.0864 +0909.0866 +0909.0871 Solar and Stellar Astrophysics +0909.0897 Astrophysics of Galaxies +0909.0900 Solar and Stellar Astrophysics +0909.0926 Astrophysics of Galaxies +0909.0942 Cosmology and Nongalactic Astrophysics +0909.0943 Cosmology and Nongalactic Astrophysics +0909.0948 Solar and Stellar Astrophysics +0909.0953 Phenomenology +0909.0960 Solar and Stellar Astrophysics +0909.0961 Phenomenology +0909.0962 High Energy Astrophysical Phenomena +0909.0967 High Energy Astrophysical Phenomena +0909.0971 Experiment +0909.0975 Earth and Planetary Astrophysics +0909.1012 Solar and Stellar Astrophysics +0909.1025 +0909.1028 Earth and Planetary Astrophysics +0909.1032 Theory +0909.1064 Phenomenology +0909.1079 Theory +0909.1082 Cosmology and Nongalactic Astrophysics +0909.1100 Solar and Stellar Astrophysics +0909.1114 +0909.1132 Astrophysics of Galaxies +0909.1137 Solar and Stellar Astrophysics +0909.1173 Solar and Stellar Astrophysics +0909.1179 Phenomenology +0909.1202 +0909.1203 Theory +0909.1214 Solar and Stellar Astrophysics +0909.1239 Experiment +0909.1249 Cosmology and Nongalactic Astrophysics +0909.1250 Phenomenology +0909.1256 Cosmology and Nongalactic Astrophysics +0909.1318 Astrophysics of Galaxies +0909.1321 Cosmology and Nongalactic Astrophysics +0909.1326 Cosmology and Nongalactic Astrophysics +0909.1330 Solar and Stellar Astrophysics +0909.1345 Solar and Stellar Astrophysics +0909.1347 Theory +0909.1432 +0909.1443 Experiment +0909.1448 Mesoscale and Nanoscale Physics +0909.1498 Instrumentation and Detectors +0909.1504 High Energy Astrophysical Phenomena +0909.1506 Solar and Stellar Astrophysics +0909.1507 Cosmology and Nongalactic Astrophysics +0909.1514 Earth and Planetary Astrophysics +0909.1524 Solar and Stellar Astrophysics +0909.1531 High Energy Astrophysical Phenomena +0909.1534 Phenomenology +0909.1542 +0909.1554 Cosmology and Nongalactic Astrophysics +0909.1558 Solar and Stellar Astrophysics +0909.1560 Phenomenology +0909.1566 Cosmology and Nongalactic Astrophysics +0909.1570 High Energy Astrophysical Phenomena +0909.1571 High Energy Astrophysical Phenomena +0909.1581 Cosmology and Nongalactic Astrophysics +0909.1587 Phenomenology +0909.1600 +0909.1601 Theory +0909.1602 +0909.1615 Phenomenology +0909.1621 Cosmology and Nongalactic Astrophysics +0909.1635 Astrophysics of Galaxies +0909.1657 Phenomenology +0909.1673 +0909.1675 Theory +0909.1717 +0909.1749 Phenomenology +0909.1752 Earth and Planetary Astrophysics +0909.1798 High Energy Astrophysical Phenomena +0909.1804 High Energy Astrophysical Phenomena +0909.1807 Cosmology and Nongalactic Astrophysics +0909.1816 Cosmology and Nongalactic Astrophysics +0909.1821 Solar and Stellar Astrophysics +0909.1877 Theory +0909.1899 +0909.1911 Experiment +0909.1953 Phenomenology +0909.1955 High Energy Astrophysical Phenomena +0909.1959 Astrophysics of Galaxies +0909.1971 Cosmology and Nongalactic Astrophysics +0909.2003 High Energy Astrophysical Phenomena +0909.2012 Solar and Stellar Astrophysics +0909.2018 Astrophysics of Galaxies +0909.2021 Cosmology and Nongalactic Astrophysics +0909.2025 Theory +0909.2028 Astrophysics of Galaxies +0909.2032 Cosmology and Nongalactic Astrophysics +0909.2038 Solar and Stellar Astrophysics +0909.2043 Earth and Planetary Astrophysics +0909.2045 Cosmology and Nongalactic Astrophysics +0909.2050 Cosmology and Nongalactic Astrophysics +0909.2051 High Energy Astrophysical Phenomena +0909.2063 Cosmology and Nongalactic Astrophysics +0909.2065 Astrophysics of Galaxies +0909.2069 Astrophysics of Galaxies +0909.2107 Theory +0909.2115 Solar and Stellar Astrophysics +0909.2121 Lattice +0909.2131 Phenomenology +0909.2150 Cosmology and Nongalactic Astrophysics +0909.2216 Phenomenology +0909.2218 +0909.2227 Solar and Stellar Astrophysics +0909.2235 Solar and Stellar Astrophysics +0909.2243 Astrophysics of Galaxies +0909.2249 +0909.2252 Astrophysics of Galaxies +0909.2253 Solar and Stellar Astrophysics +0909.2254 Solar and Stellar Astrophysics +0909.2256 Cosmology and Nongalactic Astrophysics +0909.2258 Cosmology and Nongalactic Astrophysics +0909.2279 Cosmology and Nongalactic Astrophysics +0909.2282 Phenomenology +0909.2284 +0909.2299 Solar and Stellar Astrophysics +0909.2354 +0909.2355 Solar and Stellar Astrophysics +0909.2374 Phenomenology +0909.2445 Astrophysics of Galaxies +0909.2459 Cosmology and Nongalactic Astrophysics +0909.2460 Phenomenology +0909.2474 High Energy Astrophysical Phenomena +0909.2486 Experiment +0909.2490 +0909.2501 Phenomenology +0909.2507 Experiment +0909.2516 Experiment +0909.2519 Experiment +0909.2520 High Energy Astrophysical Phenomena +0909.2525 Phenomenology +0909.2529 Solar and Stellar Astrophysics +0909.2535 Cosmology and Nongalactic Astrophysics +0909.2543 Phenomenology +0909.2548 Earth and Planetary Astrophysics +0909.2567 High Energy Astrophysical Phenomena +0909.2572 High Energy Astrophysical Phenomena +0909.2574 High Energy Astrophysical Phenomena +0909.2575 Cosmology and Nongalactic Astrophysics +0909.2579 High Energy Astrophysical Phenomena +0909.2580 High Energy Astrophysical Phenomena +0909.2585 High Energy Astrophysical Phenomena +0909.2587 +0909.2617 +0909.2618 +0909.2630 Cosmology and Nongalactic Astrophysics +0909.2634 Cosmology and Nongalactic Astrophysics +0909.2643 High Energy Astrophysical Phenomena +0909.2644 Earth and Planetary Astrophysics +0909.2645 Cosmology and Nongalactic Astrophysics +0909.2648 Cosmology and Nongalactic Astrophysics +0909.2650 Cosmology and Nongalactic Astrophysics +0909.2662 Earth and Planetary Astrophysics +0909.2664 Phenomenology +0909.2687 Earth and Planetary Astrophysics +0909.2689 Solar and Stellar Astrophysics +0909.2692 Cosmology and Nongalactic Astrophysics +0909.2709 Astrophysics of Galaxies +0909.2726 General Physics +0909.2739 +0909.2750 +0909.2754 +0909.2776 Theory +0909.2792 Solar and Stellar Astrophysics +0909.2794 Phenomenology +0909.2815 Cosmology and Nongalactic Astrophysics +0909.2820 Cosmology and Nongalactic Astrophysics +0909.2821 +0909.2827 High Energy Astrophysical Phenomena +0909.2837 Phenomenology +0909.2850 Astrophysics of Galaxies +0909.2871 Astrophysics of Galaxies +0909.2873 Cosmology and Nongalactic Astrophysics +0909.2875 Earth and Planetary Astrophysics +0909.2879 Theory +0909.2884 High Energy Astrophysical Phenomena +0909.2906 Astrophysics of Galaxies +0909.2920 Phenomenology +0909.2943 Cosmology and Nongalactic Astrophysics +0909.2951 +0909.2957 Experiment +0909.2959 Astrophysics of Galaxies +0909.2975 Solar and Stellar Astrophysics +0909.2976 Theory +0909.2979 Experiment +0909.2980 Phenomenology +0909.3019 Astrophysics of Galaxies +0909.3025 Astrophysics of Galaxies +0909.3044 Cosmology and Nongalactic Astrophysics +0909.3051 Experiment +0909.3053 Experiment +0909.3056 Instrumentation and Methods for Astrophysics +0909.3062 Solar and Stellar Astrophysics +0909.3065 Theory +0909.3073 Earth and Planetary Astrophysics +0909.3083 Theory +0909.3087 Astrophysics of Galaxies +0909.3092 Astrophysics of Galaxies +0909.3093 Solar and Stellar Astrophysics +0909.3095 Solar and Stellar Astrophysics +0909.3108 Phenomenology +0909.3109 Theory +0909.3113 Phenomenology +0909.3139 Phenomenology +0909.3145 Cosmology and Nongalactic Astrophysics +0909.3148 Experiment +0909.3167 Experiment +0909.3176 +0909.3177 Cosmology and Nongalactic Astrophysics +0909.3182 Phenomenology +0909.3187 Lattice +0909.3195 Solar and Stellar Astrophysics +0909.3200 Theory +0909.3224 Cosmology and Nongalactic Astrophysics +0909.3227 Phenomenology +0909.3229 Solar and Stellar Astrophysics +0909.3241 Instrumentation and Methods for Astrophysics +0909.3254 Phenomenology +0909.3261 Solar and Stellar Astrophysics +0909.3267 High Energy Astrophysical Phenomena +0909.3268 Theory +0909.3296 Phenomenology +0909.3298 Astrophysics of Galaxies +0909.3299 Cosmology and Nongalactic Astrophysics +0909.3300 Cosmology and Nongalactic Astrophysics +0909.3303 Cosmology and Nongalactic Astrophysics +0909.3308 Cosmology and Nongalactic Astrophysics +0909.3309 High Energy Astrophysical Phenomena +0909.3310 Solar and Stellar Astrophysics +0909.3314 Astrophysics of Galaxies +0909.3374 Phenomenology +0909.3377 Solar and Stellar Astrophysics +0909.3379 Cosmology and Nongalactic Astrophysics +0909.3420 Phenomenology +0909.3450 Phenomenology +0909.3454 Solar and Stellar Astrophysics +0909.3464 +0909.3484 High Energy Astrophysical Phenomena +0909.3488 Phenomenology +0909.3514 Phenomenology +0909.3517 Cosmology and Nongalactic Astrophysics +0909.3526 Theory +0909.3527 Cosmology and Nongalactic Astrophysics +0909.3550 Cosmology and Nongalactic Astrophysics +0909.3589 Solar and Stellar Astrophysics +0909.3599 Solar and Stellar Astrophysics +0909.3605 Strongly Correlated Electrons +0909.3622 High Energy Astrophysical Phenomena +0909.3636 +0909.3666 Cosmology and Nongalactic Astrophysics +0909.3671 High Energy Astrophysical Phenomena +0909.3676 Cosmology and Nongalactic Astrophysics +0909.3687 Astrophysics of Galaxies +0909.3703 High Energy Astrophysical Phenomena +0909.3748 Solar and Stellar Astrophysics +0909.3773 Astrophysics of Galaxies +0909.3792 Instrumentation and Methods for Astrophysics +0909.3804 High Energy Astrophysical Phenomena +0909.3813 Mesoscale and Nanoscale Physics +0909.3816 Cosmology and Nongalactic Astrophysics +0909.3828 Astrophysics of Galaxies +0909.3840 Cosmology and Nongalactic Astrophysics +0909.3843 High Energy Astrophysical Phenomena +0909.3846 Cosmology and Nongalactic Astrophysics +0909.3847 Cosmology and Nongalactic Astrophysics +0909.3848 High Energy Astrophysical Phenomena +0909.3852 Theory +0909.3855 Phenomenology +0909.3864 Cosmology and Nongalactic Astrophysics +0909.3865 +0909.3885 Solar and Stellar Astrophysics +0909.3899 Phenomenology +0909.3900 Phenomenology +0909.3914 Phenomenology +0909.3943 Phenomenology +0909.3949 +0909.3953 Cosmology and Nongalactic Astrophysics +0909.3960 Instrumentation and Detectors +0909.3962 Cosmology and Nongalactic Astrophysics +0909.3971 Instrumentation and Detectors +0909.3983 Cosmology and Nongalactic Astrophysics +0909.4014 Instrumentation and Methods for Astrophysics +0909.4031 Theory +0909.4038 Phenomenology +0909.4051 Theory +0909.4060 High Energy Astrophysical Phenomena +0909.4074 Cosmology and Nongalactic Astrophysics +0909.4077 Phenomenology +0909.4079 Cosmology and Nongalactic Astrophysics +0909.4082 Astrophysics of Galaxies +0909.4086 Cosmology and Nongalactic Astrophysics +0909.4093 Solar and Stellar Astrophysics +0909.4110 Cosmology and Nongalactic Astrophysics +0909.4114 Cosmology and Nongalactic Astrophysics +0909.4124 Solar and Stellar Astrophysics +0909.4127 Theory +0909.4128 Cosmology and Nongalactic Astrophysics +0909.4145 Solar and Stellar Astrophysics +0909.4161 Cosmology and Nongalactic Astrophysics +0909.4163 Phenomenology +0909.4183 Experiment +0909.4199 Phenomenology +0909.4201 Phenomenology +0909.4210 Earth and Planetary Astrophysics +0909.4211 +0909.4220 Theory +0909.4226 Astrophysics of Galaxies +0909.4227 +0909.4268 Solar and Stellar Astrophysics +0909.4274 Solar and Stellar Astrophysics +0909.4292 Theory +0909.4293 Solar and Stellar Astrophysics +0909.4295 Solar and Stellar Astrophysics +0909.4298 Cosmology and Nongalactic Astrophysics +0909.4299 Theory +0909.4300 Phenomenology +0909.4302 Cosmology and Nongalactic Astrophysics +0909.4303 Cosmology and Nongalactic Astrophysics +0909.4304 Solar and Stellar Astrophysics +0909.4311 Cosmology and Nongalactic Astrophysics +0909.4322 Earth and Planetary Astrophysics +0909.4375 Earth and Planetary Astrophysics +0909.4381 +0909.4384 Cosmology and Nongalactic Astrophysics +0909.4391 Solar and Stellar Astrophysics +0909.4419 Phenomenology +0909.4458 High Energy Astrophysical Phenomena +0909.4459 Solar and Stellar Astrophysics +0909.4477 Phenomenology +0909.4497 Phenomenology +0909.4498 Phenomenology +0909.4514 Cosmology and Nongalactic Astrophysics +0909.4531 Earth and Planetary Astrophysics +0909.4533 Solar and Stellar Astrophysics +0909.4536 Cosmology and Nongalactic Astrophysics +0909.4540 Cosmology and Nongalactic Astrophysics +0909.4542 Solar and Stellar Astrophysics +0909.4548 High Energy Astrophysical Phenomena +0909.4554 Phenomenology +0909.4560 Solar and Stellar Astrophysics +0909.4602 Solar and Stellar Astrophysics +0909.4611 Solar and Stellar Astrophysics +0909.4630 +0909.4635 Phenomenology +0909.4641 +0909.4643 Solar and Stellar Astrophysics +0909.4647 Solar and Stellar Astrophysics +0909.4657 +0909.4666 Experiment +0909.4685 Solar and Stellar Astrophysics +0909.4693 Phenomenology +0909.4716 Solar and Stellar Astrophysics +0909.4723 Cosmology and Nongalactic Astrophysics +0909.4738 Solar and Stellar Astrophysics +0909.4749 Phenomenology +0909.4769 Experiment +0909.4783 Solar and Stellar Astrophysics +0909.4784 Solar and Stellar Astrophysics +0909.4785 Solar and Stellar Astrophysics +0909.4853 Phenomenology +0909.4879 Phenomenology +0909.4903 Cosmology and Nongalactic Astrophysics +0909.4910 Astrophysics of Galaxies +0909.4911 Cosmology and Nongalactic Astrophysics +0909.4922 Phenomenology +0909.4947 Theory +0909.4949 Phenomenology +0909.4963 +0909.4986 Solar and Stellar Astrophysics +0909.5003 High Energy Astrophysical Phenomena +0909.5046 +0909.5049 Solar and Stellar Astrophysics +0909.5058 +0909.5060 Solar and Stellar Astrophysics +0909.5078 Phenomenology +0909.5084 Phenomenology +0909.5092 Cosmology and Nongalactic Astrophysics +0909.5096 Cosmology and Nongalactic Astrophysics +0909.5118 Phenomenology +0909.5122 Lattice +0909.5143 Solar and Stellar Astrophysics +0909.5154 Solar and Stellar Astrophysics +0909.5182 Astrophysics of Galaxies +0909.5184 Cosmology and Nongalactic Astrophysics +0909.5187 Cosmology and Nongalactic Astrophysics +0909.5191 Cosmology and Nongalactic Astrophysics +0909.5210 Cosmology and Nongalactic Astrophysics +0909.5212 High Energy Astrophysical Phenomena +0909.5213 Phenomenology +0909.5223 Experiment +0909.5225 High Energy Astrophysical Phenomena +0909.5227 Astrophysics of Galaxies +0909.5229 Phenomenology +0909.5235 +0909.5236 Phenomenology +0909.5237 Phenomenology +0909.5256 Astrophysics of Galaxies +0909.5258 Cosmology and Nongalactic Astrophysics +0909.5265 Astrophysics of Galaxies +0909.5273 Theory +0909.5279 Instrumentation and Methods for Astrophysics +0909.5300 Cosmology and Nongalactic Astrophysics +0909.5303 Cosmology and Nongalactic Astrophysics +0909.5318 High Energy Astrophysical Phenomena +0909.5331 Cosmology and Nongalactic Astrophysics +0909.5333 Cosmology and Nongalactic Astrophysics +0909.5337 Other Condensed Matter +0909.5357 Instrumentation and Detectors +0909.5359 Phenomenology +0909.5362 Cosmology and Nongalactic Astrophysics +0909.5373 +0909.5383 High Energy Astrophysical Phenomena +0909.5385 Cosmology and Nongalactic Astrophysics +0909.5395 Cosmology and Nongalactic Astrophysics +0909.5414 +0909.5423 Cosmology and Nongalactic Astrophysics +0909.5431 High Energy Astrophysical Phenomena +0909.5444 Astrophysics of Galaxies +0909.5455 Cosmology and Nongalactic Astrophysics +0909.5483 Solar and Stellar Astrophysics +0909.5484 +0909.5531 +0909.5532 Earth and Planetary Astrophysics +0909.5560 Solar and Stellar Astrophysics +0909.5570 Solar and Stellar Astrophysics +0909.5572 High Energy Astrophysical Phenomena +0909.5575 +0909.5576 Phenomenology +0909.5588 Phenomenology +0909.5606 +0909.5612 Phenomenology +0909.5614 Phenomenology +0909.5615 Phenomenology +0909.5621 Cosmology and Nongalactic Astrophysics +0909.5636 Solar and Stellar Astrophysics +0909.5637 Lattice +0909.5646 Experiment +0909.5695 Phenomenology +0910.0009 Cosmology and Nongalactic Astrophysics +0910.0021 High Energy Astrophysical Phenomena +0910.0023 +0910.0031 +0910.0043 Cosmology and Nongalactic Astrophysics +0910.0053 +0910.0061 Phenomenology +0910.0062 Experiment +0910.0075 Instrumentation and Methods for Astrophysics +0910.0077 Cosmology and Nongalactic Astrophysics +0910.0084 Solar and Stellar Astrophysics +0910.0138 Phenomenology +0910.0140 Phenomenology +0910.0171 High Energy Astrophysical Phenomena +0910.0194 Solar and Stellar Astrophysics +0910.0196 Cosmology and Nongalactic Astrophysics +0910.0200 Phenomenology +0910.0209 Phenomenology +0910.0212 Phenomenology +0910.0220 Phenomenology +0910.0246 Earth and Planetary Astrophysics +0910.0249 Cosmology and Nongalactic Astrophysics +0910.0251 Astrophysics of Galaxies +0910.0252 Cosmology and Nongalactic Astrophysics +0910.0254 Cosmology and Nongalactic Astrophysics +0910.0260 Phenomenology +0910.0263 Experiment +0910.0266 Astrophysics of Galaxies +0910.0293 Cosmology and Nongalactic Astrophysics +0910.0304 Astrophysics of Galaxies +0910.0318 Astrophysics of Galaxies +0910.0331 Phenomenology +0910.0332 High Energy Astrophysical Phenomena +0910.0333 Phenomenology +0910.0341 Phenomenology +0910.0347 Instrumentation and Detectors +0910.0384 Phenomenology +0910.0388 Experiment +0910.0395 Theory +0910.0398 Astrophysics of Galaxies +0910.0399 High Energy Astrophysical Phenomena +0910.0458 Solar and Stellar Astrophysics +0910.0463 Astrophysics of Galaxies +0910.0467 Phenomenology +0910.0470 Phenomenology +0910.0478 Cosmology and Nongalactic Astrophysics +0910.0503 Solar and Stellar Astrophysics +0910.0520 Experiment +0910.0522 Solar and Stellar Astrophysics +0910.0525 Solar and Stellar Astrophysics +0910.0556 +0910.0559 Experiment +0910.0579 Cosmology and Nongalactic Astrophysics +0910.0580 Cosmology and Nongalactic Astrophysics +0910.0588 Phenomenology +0910.0590 Theory +0910.0599 Phenomenology +0910.0613 Phenomenology +0910.0624 +0910.0640 Solar and Stellar Astrophysics +0910.0679 Phenomenology +0910.0705 Phenomenology +0910.0715 Cosmology and Nongalactic Astrophysics +0910.0721 Astrophysics of Galaxies +0910.0736 Phenomenology +0910.0742 Cosmology and Nongalactic Astrophysics +0910.0751 Solar and Stellar Astrophysics +0910.0765 Phenomenology +0910.0774 Cosmology and Nongalactic Astrophysics +0910.0785 Phenomenology +0910.0809 Experiment +0910.0812 Theory +0910.0821 Solar and Stellar Astrophysics +0910.0831 Solar and Stellar Astrophysics +0910.0837 Cosmology and Nongalactic Astrophysics +0910.0853 Cosmology and Nongalactic Astrophysics +0910.0855 Solar and Stellar Astrophysics +0910.0882 Astrophysics of Galaxies +0910.0883 Cosmology and Nongalactic Astrophysics +0910.0915 Earth and Planetary Astrophysics +0910.0922 Astrophysics of Galaxies +0910.0938 Theory +0910.0962 Solar and Stellar Astrophysics +0910.0965 Astrophysics of Galaxies +0910.0974 High Energy Astrophysical Phenomena +0910.0975 Phenomenology +0910.0991 High Energy Astrophysical Phenomena +0910.1004 Earth and Planetary Astrophysics +0910.1012 +0910.1032 Phenomenology +0910.1043 Phenomenology +0910.1048 Lattice +0910.1058 Instrumentation and Detectors +0910.1069 Solar and Stellar Astrophysics +0910.1072 High Energy Astrophysical Phenomena +0910.1081 Astrophysics of Galaxies +0910.1089 Cosmology and Nongalactic Astrophysics +0910.1091 Cosmology and Nongalactic Astrophysics +0910.1094 High Energy Astrophysical Phenomena +0910.1095 Astrophysics of Galaxies +0910.1097 Astrophysics of Galaxies +0910.1099 Astrophysics of Galaxies +0910.1107 Astrophysics of Galaxies +0910.1110 High Energy Astrophysical Phenomena +0910.1129 Theory +0910.1137 Instrumentation and Methods for Astrophysics +0910.1177 +0910.1183 Instrumentation and Methods for Astrophysics +0910.1200 Cosmology and Nongalactic Astrophysics +0910.1303 Phenomenology +0910.1309 Theory +0910.1317 Earth and Planetary Astrophysics +0910.1320 Cosmology and Nongalactic Astrophysics +0910.1336 Phenomenology +0910.1342 +0910.1346 Earth and Planetary Astrophysics +0910.1347 Earth and Planetary Astrophysics +0910.1348 Astrophysics of Galaxies +0910.1349 Solar and Stellar Astrophysics +0910.1352 Cosmology and Nongalactic Astrophysics +0910.1354 Solar and Stellar Astrophysics +0910.1358 Solar and Stellar Astrophysics +0910.1361 Cosmology and Nongalactic Astrophysics +0910.1363 Cosmology and Nongalactic Astrophysics +0910.1375 Phenomenology +0910.1379 Cosmology and Nongalactic Astrophysics +0910.1381 Solar and Stellar Astrophysics +0910.1384 Astrophysics of Galaxies +0910.1419 Cosmology and Nongalactic Astrophysics +0910.1421 Astrophysics of Galaxies +0910.1438 Experiment +0910.1448 Phenomenology +0910.1464 Theory +0910.1480 Cosmology and Nongalactic Astrophysics +0910.1522 Instrumentation and Detectors +0910.1550 Astrophysics of Galaxies +0910.1551 Phenomenology +0910.1563 Phenomenology +0910.1583 Instrumentation and Detectors +0910.1591 Cosmology and Nongalactic Astrophysics +0910.1592 High Energy Astrophysical Phenomena +0910.1593 Cosmology and Nongalactic Astrophysics +0910.1597 Solar and Stellar Astrophysics +0910.1599 Cosmology and Nongalactic Astrophysics +0910.1601 Theory +0910.1603 Cosmology and Nongalactic Astrophysics +0910.1604 Solar and Stellar Astrophysics +0910.1615 Solar and Stellar Astrophysics +0910.1618 Phenomenology +0910.1621 +0910.1646 +0910.1653 Theory +0910.1684 Theory +0910.1697 Phenomenology +0910.1701 Solar and Stellar Astrophysics +0910.1704 High Energy Astrophysical Phenomena +0910.1724 Solar and Stellar Astrophysics +0910.1726 Instrumentation and Methods for Astrophysics +0910.1729 Data Analysis, Statistics and Probability +0910.1731 High Energy Astrophysical Phenomena +0910.1733 Astrophysics of Galaxies +0910.1734 Cosmology and Nongalactic Astrophysics +0910.1738 High Energy Astrophysical Phenomena +0910.1751 +0910.1770 Experiment +0910.1792 Cosmology and Nongalactic Astrophysics +0910.1814 +0910.1825 Solar and Stellar Astrophysics +0910.1832 Earth and Planetary Astrophysics +0910.1833 Cosmology and Nongalactic Astrophysics +0910.1836 Cosmology and Nongalactic Astrophysics +0910.1853 Theory +0910.1881 Theory +0910.1882 High Energy Astrophysical Phenomena +0910.1885 Cosmology and Nongalactic Astrophysics +0910.1894 Solar and Stellar Astrophysics +0910.1898 Astrophysics of Galaxies +0910.1915 Solar and Stellar Astrophysics +0910.1927 Astrophysics of Galaxies +0910.1934 Cosmology and Nongalactic Astrophysics +0910.1976 Cosmology and Nongalactic Astrophysics +0910.1985 Solar and Stellar Astrophysics +0910.2016 +0910.2050 Phenomenology +0910.2128 Phenomenology +0910.2146 Cosmology and Nongalactic Astrophysics +0910.2171 Phenomenology +0910.2178 Cosmology and Nongalactic Astrophysics +0910.2190 High Energy Astrophysical Phenomena +0910.2219 Phenomenology +0910.2227 Cosmology and Nongalactic Astrophysics +0910.2232 Cosmology and Nongalactic Astrophysics +0910.2233 Instrumentation and Methods for Astrophysics +0910.2244 Cosmology and Nongalactic Astrophysics +0910.2253 Cosmology and Nongalactic Astrophysics +0910.2264 Phenomenology +0910.2269 Quantum Gases +0910.2273 High Energy Astrophysical Phenomena +0910.2275 Solar and Stellar Astrophysics +0910.2284 Astrophysics of Galaxies +0910.2288 Astrophysics of Galaxies +0910.2310 Solar and Stellar Astrophysics +0910.2337 Cosmology and Nongalactic Astrophysics +0910.2341 +0910.2347 Phenomenology +0910.2351 Cosmology and Nongalactic Astrophysics +0910.2353 Instrumentation and Methods for Astrophysics +0910.2354 Experiment +0910.2365 Earth and Planetary Astrophysics +0910.2375 Instrumentation and Methods for Astrophysics +0910.2379 Astrophysics of Galaxies +0910.2383 Solar and Stellar Astrophysics +0910.2385 Cosmology and Nongalactic Astrophysics +0910.2392 Lattice +0910.2395 High Energy Astrophysical Phenomena +0910.2396 Earth and Planetary Astrophysics +0910.2402 Astrophysics of Galaxies +0910.2423 +0910.2430 Cosmology and Nongalactic Astrophysics +0910.2431 Quantum Gases +0910.2451 Superconductivity +0910.2452 Solar and Stellar Astrophysics +0910.2467 High Energy Astrophysical Phenomena +0910.2468 Cosmology and Nongalactic Astrophysics +0910.2484 Astrophysics of Galaxies +0910.2514 Phenomenology +0910.2537 Lattice +0910.2551 Astrophysics of Galaxies +0910.2556 Phenomenology +0910.2579 Phenomenology +0910.2600 +0910.2601 Cosmology and Nongalactic Astrophysics +0910.2607 Cosmology and Nongalactic Astrophysics +0910.2617 Instrumentation and Methods for Astrophysics +0910.2619 Cosmology and Nongalactic Astrophysics +0910.2627 Theory +0910.2652 High Energy Astrophysical Phenomena +0910.2665 Solar and Stellar Astrophysics +0910.2671 Astrophysics of Galaxies +0910.2672 Cosmology and Nongalactic Astrophysics +0910.2674 Phenomenology +0910.2675 High Energy Astrophysical Phenomena +0910.2686 Solar and Stellar Astrophysics +0910.2701 High Energy Astrophysical Phenomena +0910.2705 Cosmology and Nongalactic Astrophysics +0910.2708 Cosmology and Nongalactic Astrophysics +0910.2709 Solar and Stellar Astrophysics +0910.2712 Cosmology and Nongalactic Astrophysics +0910.2715 Solar and Stellar Astrophysics +0910.2720 Phenomenology +0910.2731 Astrophysics of Galaxies +0910.2746 Theory +0910.2762 Theory +0910.2828 Cosmology and Nongalactic Astrophysics +0910.2831 Phenomenology +0910.2848 Cosmology and Nongalactic Astrophysics +0910.2866 Cosmology and Nongalactic Astrophysics +0910.2873 High Energy Astrophysical Phenomena +0910.2877 High Energy Astrophysical Phenomena +0910.2880 Theory +0910.2881 Theory +0910.2885 Solar and Stellar Astrophysics +0910.2887 Earth and Planetary Astrophysics +0910.2888 Exactly Solvable and Integrable Systems +0910.2956 Astrophysics of Galaxies +0910.2966 Phenomenology +0910.2976 Instrumentation and Methods for Astrophysics +0910.2988 Phenomenology +0910.3001 High Energy Astrophysical Phenomena +0910.3020 Phenomenology +0910.3021 High Energy Astrophysical Phenomena +0910.3025 Theory +0910.3037 Astrophysics of Galaxies +0910.3069 Astrophysics of Galaxies +0910.3074 High Energy Astrophysical Phenomena +0910.3086 Phenomenology +0910.3120 Astrophysics of Galaxies +0910.3125 Phenomenology +0910.3143 Phenomenology +0910.3145 Theory +0910.3162 Astrophysics of Galaxies +0910.3163 Experiment +0910.3190 Theory +0910.3207 Cosmology and Nongalactic Astrophysics +0910.3208 High Energy Astrophysical Phenomena +0910.3209 Cosmology and Nongalactic Astrophysics +0910.3210 Phenomenology +0910.3213 Cosmology and Nongalactic Astrophysics +0910.3214 Cosmology and Nongalactic Astrophysics +0910.3218 Solar and Stellar Astrophysics +0910.3220 Theory +0910.3229 High Energy Astrophysical Phenomena +0910.3250 Instrumentation and Methods for Astrophysics +0910.3264 Theory +0910.3277 Instrumentation and Methods for Astrophysics +0910.3296 Solar and Stellar Astrophysics +0910.3302 High Energy Astrophysical Phenomena +0910.3316 Phenomenology +0910.3339 Solar and Stellar Astrophysics +0910.3341 High Energy Astrophysical Phenomena +0910.3355 Phenomenology +0910.3361 High Energy Astrophysical Phenomena +0910.3363 Theory +0910.3370 Phenomenology +0910.3373 Cosmology and Nongalactic Astrophysics +0910.3394 Astrophysics of Galaxies +0910.3400 Phenomenology +0910.3403 Phenomenology +0910.3421 High Energy Astrophysical Phenomena +0910.3445 Cosmology and Nongalactic Astrophysics +0910.3446 Phenomenology +0910.3454 Solar and Stellar Astrophysics +0910.3458 Cosmology and Nongalactic Astrophysics +0910.3465 Cosmology and Nongalactic Astrophysics +0910.3521 Cosmology and Nongalactic Astrophysics +0910.3530 High Energy Astrophysical Phenomena +0910.3539 Solar and Stellar Astrophysics +0910.3552 High Energy Astrophysical Phenomena +0910.3560 Experiment +0910.3574 Solar and Stellar Astrophysics +0910.3576 High Energy Astrophysical Phenomena +0910.3596 Theory +0910.3610 High Energy Astrophysical Phenomena +0910.3611 Cosmology and Nongalactic Astrophysics +0910.3615 Theory +0910.3628 Phenomenology +0910.3645 Cosmology and Nongalactic Astrophysics +0910.3669 Cosmology and Nongalactic Astrophysics +0910.3670 Astrophysics of Galaxies +0910.3676 High Energy Astrophysical Phenomena +0910.3677 Cosmology and Nongalactic Astrophysics +0910.3681 Phenomenology +0910.3686 +0910.3701 Phenomenology +0910.3702 Cosmology and Nongalactic Astrophysics +0910.3711 Lattice +0910.3717 Earth and Planetary Astrophysics +0910.3725 High Energy Astrophysical Phenomena +0910.3734 +0910.3745 Solar and Stellar Astrophysics +0910.3746 Solar and Stellar Astrophysics +0910.3751 Solar and Stellar Astrophysics +0910.3763 Astrophysics of Galaxies +0910.3773 Phenomenology +0910.3806 Lattice +0910.3819 Cosmology and Nongalactic Astrophysics +0910.3823 Solar and Stellar Astrophysics +0910.3839 Earth and Planetary Astrophysics +0910.3855 Cosmology and Nongalactic Astrophysics +0910.3857 +0910.3869 Solar and Stellar Astrophysics +0910.3876 +0910.3881 Chaotic Dynamics +0910.3884 Solar and Stellar Astrophysics +0910.3885 Cosmology and Nongalactic Astrophysics +0910.3886 Theory +0910.3893 Astrophysics of Galaxies +0910.3902 +0910.3910 Astrophysics of Galaxies +0910.3935 Astrophysics of Galaxies +0910.3941 Cosmology and Nongalactic Astrophysics +0910.3948 Solar and Stellar Astrophysics +0910.3949 Cosmology and Nongalactic Astrophysics +0910.3951 High Energy Astrophysical Phenomena +0910.3953 Solar and Stellar Astrophysics +0910.3987 High Energy Astrophysical Phenomena +0910.3990 Phenomenology +0910.4013 Cosmology and Nongalactic Astrophysics +0910.4018 Cosmology and Nongalactic Astrophysics +0910.4058 Phenomenology +0910.4059 Solar and Stellar Astrophysics +0910.4099 High Energy Astrophysical Phenomena +0910.4109 Solar and Stellar Astrophysics +0910.4110 Theory +0910.4137 Solar and Stellar Astrophysics +0910.4142 Phenomenology +0910.4146 +0910.4152 High Energy Astrophysical Phenomena +0910.4159 Theory +0910.4160 Phenomenology +0910.4168 Cosmology and Nongalactic Astrophysics +0910.4176 Strongly Correlated Electrons +0910.4217 Phenomenology +0910.4231 +0910.4240 Solar and Stellar Astrophysics +0910.4247 Solar and Stellar Astrophysics +0910.4262 Solar and Stellar Astrophysics +0910.4275 +0910.4280 Phenomenology +0910.4282 Cosmology and Nongalactic Astrophysics +0910.4291 Phenomenology +0910.4318 Theory +0910.4319 Theory +0910.4321 Lattice +0910.4328 Astrophysics of Galaxies +0910.4332 Theory +0910.4343 +0910.4358 Cosmology and Nongalactic Astrophysics +0910.4394 Earth and Planetary Astrophysics +0910.4396 Phenomenology +0910.4403 Astrophysics of Galaxies +0910.4418 Solar and Stellar Astrophysics +0910.4451 Solar and Stellar Astrophysics +0910.4458 Solar and Stellar Astrophysics +0910.4480 Cosmology and Nongalactic Astrophysics +0910.4482 Solar and Stellar Astrophysics +0910.4487 Phenomenology +0910.4489 Phenomenology +0910.4521 Phenomenology +0910.4523 +0910.4528 Phenomenology +0910.4541 Astrophysics of Galaxies +0910.4546 Earth and Planetary Astrophysics +0910.4571 Instrumentation and Methods for Astrophysics +0910.4578 Cosmology and Nongalactic Astrophysics +0910.4581 Theory +0910.4586 Quantum Gases +0910.4600 Cosmology and Nongalactic Astrophysics +0910.4611 Astrophysics of Galaxies +0910.4623 Instrumentation and Methods for Astrophysics +0910.4640 Cosmology and Nongalactic Astrophysics +0910.4644 Phenomenology +0910.4679 Solar and Stellar Astrophysics +0910.4693 +0910.4697 Cosmology and Nongalactic Astrophysics +0910.4732 Theory +0910.4771 Phenomenology +0910.4803 +0910.4804 Instrumentation and Methods for Astrophysics +0910.4810 +0910.4818 High Energy Astrophysical Phenomena +0910.4837 +0910.4849 Theory +0910.4856 +0910.4859 Solar and Stellar Astrophysics +0910.4866 High Energy Astrophysical Phenomena +0910.4883 Cosmology and Nongalactic Astrophysics +0910.4895 Instrumentation and Methods for Astrophysics +0910.4904 Cosmology and Nongalactic Astrophysics +0910.4905 Cosmology and Nongalactic Astrophysics +0910.4945 Cosmology and Nongalactic Astrophysics +0910.4968 Cosmology and Nongalactic Astrophysics +0910.4970 Cosmology and Nongalactic Astrophysics +0910.4976 Phenomenology +0910.4979 +0910.4989 High Energy Astrophysical Phenomena +0910.4992 Solar and Stellar Astrophysics +0910.4998 Cosmology and Nongalactic Astrophysics +0910.5007 Cosmology and Nongalactic Astrophysics +0910.5025 Cosmology and Nongalactic Astrophysics +0910.5087 Instrumentation and Detectors +0910.5113 Phenomenology +0910.5120 Cosmology and Nongalactic Astrophysics +0910.5121 Cosmology and Nongalactic Astrophysics +0910.5142 Cosmology and Nongalactic Astrophysics +0910.5145 +0910.5151 Phenomenology +0910.5152 Solar and Stellar Astrophysics +0910.5167 Theory +0910.5191 Solar and Stellar Astrophysics +0910.5218 Cosmology and Nongalactic Astrophysics +0910.5219 Cosmology and Nongalactic Astrophysics +0910.5223 Earth and Planetary Astrophysics +0910.5225 Solar and Stellar Astrophysics +0910.5230 +0910.5236 +0910.5241 Theory +0910.5243 Phenomenology +0910.5246 Cosmology and Nongalactic Astrophysics +0910.5253 High Energy Astrophysical Phenomena +0910.5258 High Energy Astrophysical Phenomena +0910.5267 Cosmology and Nongalactic Astrophysics +0910.5268 High Energy Astrophysical Phenomena +0910.5269 Astrophysics of Galaxies +0910.5291 High Energy Astrophysical Phenomena +0910.5309 Theory +0910.5315 Theory +0910.5336 Solar and Stellar Astrophysics +0910.5338 Theory +0910.5344 High Energy Astrophysical Phenomena +0910.5372 Cosmology and Nongalactic Astrophysics +0910.5390 Theory +0910.5395 Phenomenology +0910.5424 Phenomenology +0910.5437 Phenomenology +0910.5439 +0910.5464 Theory +0910.5476 Astrophysics of Galaxies +0910.5480 High Energy Astrophysical Phenomena +0910.5482 Lattice +0910.5484 High Energy Astrophysical Phenomena +0910.5496 Theory +0910.5507 +0910.5547 Cosmology and Nongalactic Astrophysics +0910.5562 Astrophysics of Galaxies +0910.5571 Solar and Stellar Astrophysics +0910.5589 Phenomenology +0910.5596 Theory +0910.5597 Cosmology and Nongalactic Astrophysics +0910.5654 Astrophysics of Galaxies +0910.5666 High Energy Astrophysical Phenomena +0910.5670 Theory +0910.5701 Experiment +0910.5718 Cosmology and Nongalactic Astrophysics +0910.5720 Cosmology and Nongalactic Astrophysics +0910.5722 Cosmology and Nongalactic Astrophysics +0910.5736 Lattice +0910.5740 High Energy Astrophysical Phenomena +0910.5741 High Energy Astrophysical Phenomena +0910.5755 +0910.5768 Experiment +0910.5774 Cosmology and Nongalactic Astrophysics +0910.5781 Phenomenology +0910.5803 Solar and Stellar Astrophysics +0910.5821 Cosmology and Nongalactic Astrophysics +0910.5824 Cosmology and Nongalactic Astrophysics +0910.5828 Cosmology and Nongalactic Astrophysics +0910.5835 Cosmology and Nongalactic Astrophysics +0910.5837 Cosmology and Nongalactic Astrophysics +0910.5842 Experiment +0910.5843 Cosmology and Nongalactic Astrophysics +0910.5853 Phenomenology +0910.5868 High Energy Astrophysical Phenomena +0910.5875 +0910.5883 Lattice +0910.5901 Solar and Stellar Astrophysics +0910.5927 Experiment +0911.0003 Cosmology and Nongalactic Astrophysics +0911.0005 Cosmology and Nongalactic Astrophysics +0911.0015 High Energy Astrophysical Phenomena +0911.0035 Solar and Stellar Astrophysics +0911.0041 Cosmology and Nongalactic Astrophysics +0911.0067 High Energy Astrophysical Phenomena +0911.0076 +0911.0093 High Energy Astrophysical Phenomena +0911.0095 Experiment +0911.0131 +0911.0138 Cosmology and Nongalactic Astrophysics +0911.0150 Cosmology and Nongalactic Astrophysics +0911.0160 Phenomenology +0911.0161 Cosmology and Nongalactic Astrophysics +0911.0167 Theory +0911.0178 +0911.0181 Solar and Stellar Astrophysics +0911.0189 Solar and Stellar Astrophysics +0911.0202 High Energy Astrophysical Phenomena +0911.0239 Earth and Planetary Astrophysics +0911.0241 +0911.0244 Cosmology and Nongalactic Astrophysics +0911.0262 High Energy Astrophysical Phenomena +0911.0266 Theory +0911.0272 Solar and Stellar Astrophysics +0911.0314 Solar and Stellar Astrophysics +0911.0315 Phenomenology +0911.0319 Lattice +0911.0323 Cosmology and Nongalactic Astrophysics +0911.0337 +0911.0350 Cosmology and Nongalactic Astrophysics +0911.0355 Solar and Stellar Astrophysics +0911.0365 Astrophysics of Galaxies +0911.0382 Cosmology and Nongalactic Astrophysics +0911.0390 Cosmology and Nongalactic Astrophysics +0911.0392 Cosmology and Nongalactic Astrophysics +0911.0413 Cosmology and Nongalactic Astrophysics +0911.0414 Cosmology and Nongalactic Astrophysics +0911.0417 Cosmology and Nongalactic Astrophysics +0911.0424 Solar and Stellar Astrophysics +0911.0438 Phenomenology +0911.0446 Phenomenology +0911.0447 Astrophysics of Galaxies +0911.0474 High Energy Astrophysical Phenomena +0911.0495 Mesoscale and Nanoscale Physics +0911.0510 +0911.0525 +0911.0532 Solar and Stellar Astrophysics +0911.0540 Phenomenology +0911.0543 +0911.0572 Phenomenology +0911.0593 +0911.0611 Cosmology and Nongalactic Astrophysics +0911.0612 Cosmology and Nongalactic Astrophysics +0911.0659 Theory +0911.0670 Solar and Stellar Astrophysics +0911.0675 Cosmology and Nongalactic Astrophysics +0911.0680 High Energy Astrophysical Phenomena +0911.0684 Astrophysics of Galaxies +0911.0685 Cosmology and Nongalactic Astrophysics +0911.0687 Phenomenology +0911.0688 Theory +0911.0689 Theory +0911.0690 Cosmology and Nongalactic Astrophysics +0911.0700 High Energy Astrophysical Phenomena +0911.0703 Instrumentation and Methods for Astrophysics +0911.0707 High Energy Astrophysical Phenomena +0911.0720 Cosmology and Nongalactic Astrophysics +0911.0740 High Energy Astrophysical Phenomena +0911.0749 Solar and Stellar Astrophysics +0911.0809 Phenomenology +0911.0864 +0911.0872 High Energy Astrophysical Phenomena +0911.0892 Astrophysics of Galaxies +0911.0922 Algebraic Geometry +0911.0927 Cosmology and Nongalactic Astrophysics +0911.0936 Solar and Stellar Astrophysics +0911.0955 Astrophysics of Galaxies +0911.0976 Cosmology and Nongalactic Astrophysics +0911.0997 Phenomenology +0911.1008 Experiment +0911.1017 +0911.1043 +0911.1068 Solar and Stellar Astrophysics +0911.1089 High Energy Astrophysical Phenomena +0911.1092 +0911.1120 Phenomenology +0911.1121 Solar and Stellar Astrophysics +0911.1127 Earth and Planetary Astrophysics +0911.1130 Earth and Planetary Astrophysics +0911.1136 High Energy Astrophysical Phenomena +0911.1143 Mesoscale and Nanoscale Physics +0911.1149 Theory +0911.1158 Cosmology and Nongalactic Astrophysics +0911.1161 Solar and Stellar Astrophysics +0911.1165 High Energy Astrophysical Phenomena +0911.1170 Theory +0911.1173 Cosmology and Nongalactic Astrophysics +0911.1184 +0911.1208 +0911.1212 Cosmology and Nongalactic Astrophysics +0911.1218 Phenomenology +0911.1235 +0911.1249 Cosmology and Nongalactic Astrophysics +0911.1267 Phenomenology +0911.1274 +0911.1279 Cosmology and Nongalactic Astrophysics +0911.1281 Cosmology and Nongalactic Astrophysics +0911.1327 Cosmology and Nongalactic Astrophysics +0911.1336 High Energy Astrophysical Phenomena +0911.1339 High Energy Astrophysical Phenomena +0911.1352 Cosmology and Nongalactic Astrophysics +0911.1374 Phenomenology +0911.1382 +0911.1403 +0911.1416 Phenomenology +0911.1425 +0911.1431 Earth and Planetary Astrophysics +0911.1452 +0911.1457 +0911.1465 Phenomenology +0911.1481 Cosmology and Nongalactic Astrophysics +0911.1482 +0911.1492 Earth and Planetary Astrophysics +0911.1527 Solar and Stellar Astrophysics +0911.1528 Theory +0911.1533 Earth and Planetary Astrophysics +0911.1560 Lattice +0911.1561 Experiment +0911.1562 Theory +0911.1565 +0911.1569 Theory +0911.1570 Phenomenology +0911.1574 Solar and Stellar Astrophysics +0911.1579 High Energy Astrophysical Phenomena +0911.1585 +0911.1606 +0911.1609 High Energy Astrophysical Phenomena +0911.1625 +0911.1629 Cosmology and Nongalactic Astrophysics +0911.1651 Phenomenology +0911.1668 Statistical Mechanics +0911.1695 Optics +0911.1699 +0911.1701 High Energy Astrophysical Phenomena +0911.1736 Phenomenology +0911.1742 Experiment +0911.1753 Phenomenology +0911.1757 Lattice +0911.1772 Phenomenology +0911.1778 Cosmology and Nongalactic Astrophysics +0911.1781 Solar and Stellar Astrophysics +0911.1786 Astrophysics of Galaxies +0911.1794 Astrophysics of Galaxies +0911.1798 Solar and Stellar Astrophysics +0911.1811 +0911.1812 Astrophysics of Galaxies +0911.1817 Cosmology and Nongalactic Astrophysics +0911.1820 Phenomenology +0911.1822 +0911.1860 Earth and Planetary Astrophysics +0911.1865 Astrophysics of Galaxies +0911.1871 Cosmology and Nongalactic Astrophysics +0911.1880 Superconductivity +0911.1886 +0911.1889 High Energy Astrophysical Phenomena +0911.1892 Phenomenology +0911.1895 Solar and Stellar Astrophysics +0911.1906 Phenomenology +0911.1919 +0911.1925 Solar and Stellar Astrophysics +0911.1955 Cosmology and Nongalactic Astrophysics +0911.1962 Phenomenology +0911.1964 Phenomenology +0911.1974 Phenomenology +0911.1998 Astrophysics of Galaxies +0911.2000 Cosmology and Nongalactic Astrophysics +0911.2003 Cosmology and Nongalactic Astrophysics +0911.2004 Cosmology and Nongalactic Astrophysics +0911.2006 Solar and Stellar Astrophysics +0911.2008 Solar and Stellar Astrophysics +0911.2011 +0911.2013 Solar and Stellar Astrophysics +0911.2015 Instrumentation and Methods for Astrophysics +0911.2016 Phenomenology +0911.2032 Solar and Stellar Astrophysics +0911.2049 Astrophysics of Galaxies +0911.2061 Astrophysics of Galaxies +0911.2067 Phenomenology +0911.2068 Phenomenology +0911.2078 Instrumentation and Detectors +0911.2091 +0911.2096 +0911.2100 Cosmology and Nongalactic Astrophysics +0911.2115 Cosmology and Nongalactic Astrophysics +0911.2120 +0911.2139 +0911.2152 Theory +0911.2154 Phenomenology +0911.2159 +0911.2162 Classical Analysis and ODEs +0911.2187 +0911.2196 Earth and Planetary Astrophysics +0911.2198 +0911.2202 High Energy Astrophysical Phenomena +0911.2204 +0911.2208 Cosmology and Nongalactic Astrophysics +0911.2219 Cosmology and Nongalactic Astrophysics +0911.2222 Phenomenology +0911.2223 Cosmology and Nongalactic Astrophysics +0911.2225 Phenomenology +0911.2236 Cosmology and Nongalactic Astrophysics +0911.2240 High Energy Astrophysical Phenomena +0911.2248 Cosmology and Nongalactic Astrophysics +0911.2279 Phenomenology +0911.2306 High Energy Astrophysical Phenomena +0911.2310 Cosmology and Nongalactic Astrophysics +0911.2314 Cosmology and Nongalactic Astrophysics +0911.2321 Astrophysics of Galaxies +0911.2329 Phenomenology +0911.2338 High Energy Astrophysical Phenomena +0911.2341 Theory +0911.2344 Cosmology and Nongalactic Astrophysics +0911.2393 +0911.2411 +0911.2420 Solar and Stellar Astrophysics +0911.2422 Phenomenology +0911.2425 Theory +0911.2444 Cosmology and Nongalactic Astrophysics +0911.2448 Cosmology and Nongalactic Astrophysics +0911.2456 Cosmology and Nongalactic Astrophysics +0911.2467 Phenomenology +0911.2469 Solar and Stellar Astrophysics +0911.2470 Solar and Stellar Astrophysics +0911.2471 Cosmology and Nongalactic Astrophysics +0911.2473 Solar and Stellar Astrophysics +0911.2477 Theory +0911.2480 Instrumentation and Detectors +0911.2491 Cosmology and Nongalactic Astrophysics +0911.2522 Instrumentation and Detectors +0911.2548 +0911.2570 Solar and Stellar Astrophysics +0911.2572 Theory +0911.2578 Solar and Stellar Astrophysics +0911.2580 +0911.2585 Solar and Stellar Astrophysics +0911.2601 Cosmology and Nongalactic Astrophysics +0911.2613 Phenomenology +0911.2618 High Energy Astrophysical Phenomena +0911.2624 Instrumentation and Detectors +0911.2629 Cosmology and Nongalactic Astrophysics +0911.2640 Phenomenology +0911.2652 Instrumentation and Methods for Astrophysics +0911.2655 Cosmology and Nongalactic Astrophysics +0911.2664 Cosmology and Nongalactic Astrophysics +0911.2668 Instrumentation and Methods for Astrophysics +0911.2673 Cosmology and Nongalactic Astrophysics +0911.2698 +0911.2701 Cosmology and Nongalactic Astrophysics +0911.2703 Earth and Planetary Astrophysics +0911.2704 Solar and Stellar Astrophysics +0911.2705 +0911.2706 Earth and Planetary Astrophysics +0911.2708 Theory +0911.2712 Solar and Stellar Astrophysics +0911.2720 Phenomenology +0911.2738 +0911.2739 Cosmology and Nongalactic Astrophysics +0911.2740 +0911.2755 Astrophysics of Galaxies +0911.2761 Popular Physics +0911.2767 Instrumentation and Detectors +0911.2768 Solar and Stellar Astrophysics +0911.2771 Cosmology and Nongalactic Astrophysics +0911.2776 Cosmology and Nongalactic Astrophysics +0911.2786 Theory +0911.2795 Solar and Stellar Astrophysics +0911.2800 Experiment +0911.2822 Phenomenology +0911.2827 Cosmology and Nongalactic Astrophysics +0911.2830 Solar and Stellar Astrophysics +0911.2838 Cosmology and Nongalactic Astrophysics +0911.2858 +0911.2869 Phenomenology +0911.2875 Phenomenology +0911.2876 Theory +0911.2927 Cosmology and Nongalactic Astrophysics +0911.2929 +0911.2946 +0911.2949 Solar and Stellar Astrophysics +0911.2969 Cosmology and Nongalactic Astrophysics +0911.2985 Phenomenology +0911.2986 Solar and Stellar Astrophysics +0911.2997 +0911.3001 High Energy Astrophysical Phenomena +0911.3015 Phenomenology +0911.3026 Phenomenology +0911.3027 Phenomenology +0911.3049 High Energy Astrophysical Phenomena +0911.3062 +0911.3064 High Energy Astrophysical Phenomena +0911.3066 Cosmology and Nongalactic Astrophysics +0911.3080 +0911.3094 +0911.3103 Phenomenology +0911.3105 Cosmology and Nongalactic Astrophysics +0911.3139 +0911.3145 Cosmology and Nongalactic Astrophysics +0911.3146 High Energy Astrophysical Phenomena +0911.3148 Earth and Planetary Astrophysics +0911.3149 Solar and Stellar Astrophysics +0911.3151 Cosmology and Nongalactic Astrophysics +0911.3156 Cosmology and Nongalactic Astrophysics +0911.3160 Theory +0911.3163 Cosmology and Nongalactic Astrophysics +0911.3176 Solar and Stellar Astrophysics +0911.3181 Phenomenology +0911.3198 Cosmology and Nongalactic Astrophysics +0911.3219 Phenomenology +0911.3221 Cosmology and Nongalactic Astrophysics +0911.3227 Experiment +0911.3232 Cosmology and Nongalactic Astrophysics +0911.3247 Cosmology and Nongalactic Astrophysics +0911.3248 Theory +0911.3257 Theory +0911.3268 +0911.3269 Cosmology and Nongalactic Astrophysics +0911.3313 High Energy Astrophysical Phenomena +0911.3314 Accelerator Physics +0911.3322 Phenomenology +0911.3332 Cosmology and Nongalactic Astrophysics +0911.3341 Theory +0911.3348 Cosmology and Nongalactic Astrophysics +0911.3360 Astrophysics of Galaxies +0911.3362 +0911.3365 +0911.3387 +0911.3392 Cosmology and Nongalactic Astrophysics +0911.3394 Astrophysics of Galaxies +0911.3410 Instrumentation and Methods for Astrophysics +0911.3417 Earth and Planetary Astrophysics +0911.3445 Solar and Stellar Astrophysics +0911.3453 Lattice +0911.3464 Differential Geometry +0911.3479 Phenomenology +0911.3499 +0911.3506 Solar and Stellar Astrophysics +0911.3568 Phenomenology +0911.3571 Phenomenology +0911.3592 Cosmology and Nongalactic Astrophysics +0911.3605 Phenomenology +0911.3610 Theory +0911.3611 Phenomenology +0911.3625 Theory +0911.3626 Theory +0911.3642 High Energy Astrophysical Phenomena +0911.3647 +0911.3651 Astrophysics of Galaxies +0911.3652 Astrophysics of Galaxies +0911.3654 Cosmology and Nongalactic Astrophysics +0911.3655 Phenomenology +0911.3656 Phenomenology +0911.3665 Cosmology and Nongalactic Astrophysics +0911.3673 Theory +0911.3677 Phenomenology +0911.3683 Theory +0911.3686 Phenomenology +0911.3688 +0911.3702 Theory +0911.3707 Theory +0911.3709 Cosmology and Nongalactic Astrophysics +0911.3711 Phenomenology +0911.3716 Phenomenology +0911.3728 Cosmology and Nongalactic Astrophysics +0911.3731 Theory +0911.3734 Astrophysics of Galaxies +0911.3741 Cosmology and Nongalactic Astrophysics +0911.3743 High Energy Astrophysical Phenomena +0911.3747 Cosmology and Nongalactic Astrophysics +0911.3779 Cosmology and Nongalactic Astrophysics +0911.3806 Theory +0911.3811 Phenomenology +0911.3817 Solar and Stellar Astrophysics +0911.3844 Solar and Stellar Astrophysics +0911.3859 +0911.3893 Theory +0911.3896 Cosmology and Nongalactic Astrophysics +0911.3897 Astrophysics of Galaxies +0911.3898 Phenomenology +0911.3901 High Energy Astrophysical Phenomena +0911.3902 Cosmology and Nongalactic Astrophysics +0911.3905 Cosmology and Nongalactic Astrophysics +0911.3909 Astrophysics of Galaxies +0911.3910 +0911.3922 Astrophysics of Galaxies +0911.3943 +0911.3965 Solar and Stellar Astrophysics +0911.3977 Phenomenology +0911.3990 Theory +0911.3994 Cosmology and Nongalactic Astrophysics +0911.4043 Lattice +0911.4061 Theory +0911.4062 +0911.4063 Cosmology and Nongalactic Astrophysics +0911.4064 Phenomenology +0911.4078 Phenomenology +0911.4085 Solar and Stellar Astrophysics +0911.4086 Cosmology and Nongalactic Astrophysics +0911.4091 Phenomenology +0911.4103 Phenomenology +0911.4107 Cosmology and Nongalactic Astrophysics +0911.4121 Astrophysics of Galaxies +0911.4128 Cosmology and Nongalactic Astrophysics +0911.4129 Solar and Stellar Astrophysics +0911.4130 Phenomenology +0911.4132 Phenomenology +0911.4176 High Energy Astrophysical Phenomena +0911.4180 +0911.4182 +0911.4189 High Energy Astrophysical Phenomena +0911.4205 +0911.4208 Theory +0911.4215 Statistical Mechanics +0911.4220 Cosmology and Nongalactic Astrophysics +0911.4241 Theory +0911.4244 Theory +0911.4246 Cosmology and Nongalactic Astrophysics +0911.4249 Phenomenology +0911.4274 Theory +0911.4276 High Energy Astrophysical Phenomena +0911.4287 Astrophysics of Galaxies +0911.4308 Phenomenology +0911.4345 High Energy Astrophysical Phenomena +0911.4353 Chaotic Dynamics +0911.4364 Astrophysics of Galaxies +0911.4372 Phenomenology +0911.4386 Cosmology and Nongalactic Astrophysics +0911.4390 Theory +0911.4399 Astrophysics of Galaxies +0911.4405 Solar and Stellar Astrophysics +0911.4421 Astrophysics of Galaxies +0911.4439 +0911.4451 Phenomenology +0911.4453 Cosmology and Nongalactic Astrophysics +0911.4467 Differential Geometry +0911.4471 Phenomenology +0911.4482 High Energy Astrophysical Phenomena +0911.4483 Phenomenology +0911.4489 Phenomenology +0911.4492 High Energy Astrophysical Phenomena +0911.4508 Phenomenology +0911.4515 Cosmology and Nongalactic Astrophysics +0911.4518 Theory +0911.4532 Earth and Planetary Astrophysics +0911.4551 Theory +0911.4560 High Energy Astrophysical Phenomena +0911.4569 Solar and Stellar Astrophysics +0911.4574 +0911.4581 Theory +0911.4591 Solar and Stellar Astrophysics +0911.4604 Phenomenology +0911.4608 Quantum Gases +0911.4610 +0911.4630 Phenomenology +0911.4634 Phenomenology +0911.4636 High Energy Astrophysical Phenomena +0911.4637 Phenomenology +0911.4645 Solar and Stellar Astrophysics +0911.4654 Theory +0911.4655 +0911.4660 Statistical Mechanics +0911.4692 Theory +0911.4695 High Energy Astrophysical Phenomena +0911.4747 Solar and Stellar Astrophysics +0911.4749 Phenomenology +0911.4768 Cosmology and Nongalactic Astrophysics +0911.4771 Cosmology and Nongalactic Astrophysics +0911.4777 Cosmology and Nongalactic Astrophysics +0911.4779 Cosmology and Nongalactic Astrophysics +0911.4783 Phenomenology +0911.4790 Solar and Stellar Astrophysics +0911.4806 Phenomenology +0911.4822 +0911.4826 Phenomenology +0911.4827 Astrophysics of Galaxies +0911.4829 Cosmology and Nongalactic Astrophysics +0911.4868 Phenomenology +0911.4875 Phenomenology +0911.4878 Strongly Correlated Electrons +0911.4879 Instrumentation and Methods for Astrophysics +0911.4888 Solar and Stellar Astrophysics +0911.4915 +0911.4920 Instrumentation and Methods for Astrophysics +0911.4921 Lattice +0911.4924 Cosmology and Nongalactic Astrophysics +0911.4928 Instrumentation and Methods for Astrophysics +0911.4932 +0911.4942 Earth and Planetary Astrophysics +0911.4946 Cosmology and Nongalactic Astrophysics +0911.4950 +0911.4964 Phenomenology +0911.4967 Cosmology and Nongalactic Astrophysics +0911.4995 Phenomenology +0911.4997 Phenomenology +0911.5012 Phenomenology +0911.5015 +0911.5027 Astrophysics of Galaxies +0911.5045 +0911.5055 Solar and Stellar Astrophysics +0911.5059 Phenomenology +0911.5061 Lattice +0911.5075 +0911.5102 Astrophysics of Galaxies +0911.5111 Lattice +0911.5122 Solar and Stellar Astrophysics +0911.5136 +0911.5166 Phenomenology +0911.5191 Cosmology and Nongalactic Astrophysics +0911.5192 Phenomenology +0911.5193 Phenomenology +0911.5198 Cosmology and Nongalactic Astrophysics +0911.5225 Theory +0911.5248 Cosmology and Nongalactic Astrophysics +0911.5291 Cosmology and Nongalactic Astrophysics +0911.5294 Lattice +0911.5295 Theory +0911.5327 High Energy Astrophysical Phenomena +0911.5332 Phenomenology +0911.5338 Phenomenology +0911.5341 Cosmology and Nongalactic Astrophysics +0911.5350 Astrophysics of Galaxies +0911.5355 Phenomenology +0911.5356 Astrophysics of Galaxies +0911.5358 High Energy Astrophysical Phenomena +0911.5364 +0911.5403 Instrumentation and Detectors +0911.5451 Astrophysics of Galaxies +0911.5464 Cosmology and Nongalactic Astrophysics +0911.5484 Solar and Stellar Astrophysics +0911.5514 Solar and Stellar Astrophysics +0911.5523 Cosmology and Nongalactic Astrophysics +0911.5528 High Energy Astrophysical Phenomena +0911.5533 Astrophysics of Galaxies +0911.5541 Biological Physics +0911.5549 Theory +0911.5573 Solar and Stellar Astrophysics +0911.5574 High Energy Astrophysical Phenomena +0911.5578 Solar and Stellar Astrophysics +0911.5591 Cosmology and Nongalactic Astrophysics +0911.5592 Exactly Solvable and Integrable Systems +0911.5616 Phenomenology +0911.5621 Earth and Planetary Astrophysics +0911.5624 Cosmology and Nongalactic Astrophysics +0911.5635 +0911.5638 Phenomenology +0911.5651 Phenomenology +0911.5674 Solar and Stellar Astrophysics +0911.5682 Distributed, Parallel, and Cluster Computing +0911.5685 Cosmology and Nongalactic Astrophysics +0911.5692 Instrumentation and Methods for Astrophysics +0911.5697 Theory +0911.5698 Instrumentation and Methods for Astrophysics +0911.5711 Cosmology and Nongalactic Astrophysics +0912.0002 Phenomenology +0912.0014 Cosmology and Nongalactic Astrophysics +0912.0019 Cosmology and Nongalactic Astrophysics +0912.0023 Experiment +0912.0033 Phenomenology +0912.0055 Theory +0912.0075 Cosmology and Nongalactic Astrophysics +0912.0087 +0912.0098 Solar and Stellar Astrophysics +0912.0101 High Energy Astrophysical Phenomena +0912.0108 Solar and Stellar Astrophysics +0912.0121 Phenomenology +0912.0165 Phenomenology +0912.0186 Instrumentation and Methods for Astrophysics +0912.0191 Theory +0912.0192 Astrophysics of Galaxies +0912.0202 Solar and Stellar Astrophysics +0912.0209 Theory +0912.0211 +0912.0218 +0912.0220 Theory +0912.0221 +0912.0252 High Energy Astrophysical Phenomena +0912.0261 Cosmology and Nongalactic Astrophysics +0912.0263 Cosmology and Nongalactic Astrophysics +0912.0273 +0912.0282 Cosmology and Nongalactic Astrophysics +0912.0292 Cosmology and Nongalactic Astrophysics +0912.0293 Cosmology and Nongalactic Astrophysics +0912.0302 Astrophysics of Galaxies +0912.0314 +0912.0315 High Energy Astrophysical Phenomena +0912.0321 Cosmology and Nongalactic Astrophysics +0912.0332 Cosmology and Nongalactic Astrophysics +0912.0334 +0912.0340 Cosmology and Nongalactic Astrophysics +0912.0355 Quantum Gases +0912.0365 Cosmology and Nongalactic Astrophysics +0912.0369 Phenomenology +0912.0378 Experiment +0912.0402 Solar and Stellar Astrophysics +0912.0427 Theory +0912.0450 Lattice +0912.0456 High Energy Astrophysical Phenomena +0912.0462 Cosmology and Nongalactic Astrophysics +0912.0480 Theory +0912.0482 Cosmology and Nongalactic Astrophysics +0912.0490 Astrophysics of Galaxies +0912.0499 Phenomenology +0912.0502 Phenomenology +0912.0512 Theory +0912.0514 Cosmology and Nongalactic Astrophysics +0912.0516 Cosmology and Nongalactic Astrophysics +0912.0518 Earth and Planetary Astrophysics +0912.0530 Phenomenology +0912.0533 Earth and Planetary Astrophysics +0912.0539 Theory +0912.0546 Astrophysics of Galaxies +0912.0552 High Energy Astrophysical Phenomena +0912.0558 Instrumentation and Methods for Astrophysics +0912.0585 Phenomenology +0912.0588 Solar and Stellar Astrophysics +0912.0605 Solar and Stellar Astrophysics +0912.0612 Phenomenology +0912.0617 Lattice +0912.0635 Cosmology and Nongalactic Astrophysics +0912.0643 +0912.0654 +0912.0660 Astrophysics of Galaxies +0912.0678 Phenomenology +0912.0687 Phenomenology +0912.0700 Cosmology and Nongalactic Astrophysics +0912.0710 Cosmology and Nongalactic Astrophysics +0912.0733 Theory +0912.0742 Phenomenology +0912.0743 Phenomenology +0912.0744 Cosmology and Nongalactic Astrophysics +0912.0752 Theory +0912.0757 High Energy Astrophysical Phenomena +0912.0768 High Energy Astrophysical Phenomena +0912.0793 Astrophysics of Galaxies +0912.0826 Phenomenology +0912.0844 Lattice +0912.0846 Solar and Stellar Astrophysics +0912.0879 Instrumentation and Methods for Astrophysics +0912.0886 Theory +0912.0907 High Energy Astrophysical Phenomena +0912.0916 Cosmology and Nongalactic Astrophysics +0912.0929 Cosmology and Nongalactic Astrophysics +0912.0937 Phenomenology +0912.0939 Theory +0912.0953 Solar and Stellar Astrophysics +0912.0959 Theory +0912.0964 Earth and Planetary Astrophysics +0912.0969 Solar and Stellar Astrophysics +0912.0976 Solar and Stellar Astrophysics +0912.0996 Cosmology and Nongalactic Astrophysics +0912.0998 Cosmology and Nongalactic Astrophysics +0912.1003 Phenomenology +0912.1055 Astrophysics of Galaxies +0912.1056 Astrophysics of Galaxies +0912.1063 Solar and Stellar Astrophysics +0912.1067 Solar and Stellar Astrophysics +0912.1077 Cosmology and Nongalactic Astrophysics +0912.1095 Theory +0912.1103 High Energy Astrophysical Phenomena +0912.1105 Phenomenology +0912.1136 Solar and Stellar Astrophysics +0912.1139 High Energy Astrophysical Phenomena +0912.1151 Cosmology and Nongalactic Astrophysics +0912.1163 Phenomenology +0912.1173 Phenomenology +0912.1190 Earth and Planetary Astrophysics +0912.1196 Cosmology and Nongalactic Astrophysics +0912.1209 High Energy Astrophysical Phenomena +0912.1235 Solar and Stellar Astrophysics +0912.1257 Astrophysics of Galaxies +0912.1258 +0912.1304 Theory +0912.1309 Phenomenology +0912.1314 Astrophysics of Galaxies +0912.1322 Phenomenology +0912.1331 +0912.1334 Theory +0912.1338 Cosmology and Nongalactic Astrophysics +0912.1339 Phenomenology +0912.1341 Theory +0912.1349 Phenomenology +0912.1409 Earth and Planetary Astrophysics +0912.1422 Earth and Planetary Astrophysics +0912.1435 Astrophysics of Galaxies +0912.1439 Solar and Stellar Astrophysics +0912.1441 Phenomenology +0912.1445 Cosmology and Nongalactic Astrophysics +0912.1446 Phenomenology +0912.1455 High Energy Astrophysical Phenomena +0912.1462 Cosmology and Nongalactic Astrophysics +0912.1467 Statistical Mechanics +0912.1489 Theory +0912.1497 Solar and Stellar Astrophysics +0912.1499 Astrophysics of Galaxies +0912.1504 Solar and Stellar Astrophysics +0912.1505 +0912.1514 Solar and Stellar Astrophysics +0912.1566 Phenomenology +0912.1583 High Energy Astrophysical Phenomena +0912.1594 Earth and Planetary Astrophysics +0912.1597 Instrumentation and Methods for Astrophysics +0912.1600 Theory +0912.1601 Cosmology and Nongalactic Astrophysics +0912.1603 Cosmology and Nongalactic Astrophysics +0912.1615 Cosmology and Nongalactic Astrophysics +0912.1624 Theory +0912.1630 Cosmology and Nongalactic Astrophysics +0912.1639 Solar and Stellar Astrophysics +0912.1645 Earth and Planetary Astrophysics +0912.1674 +0912.1689 Phenomenology +0912.1722 +0912.1728 Cosmology and Nongalactic Astrophysics +0912.1765 Phenomenology +0912.1774 Solar and Stellar Astrophysics +0912.1780 Theory +0912.1787 Phenomenology +0912.1794 +0912.1796 Phenomenology +0912.1802 Theory +0912.1816 Solar and Stellar Astrophysics +0912.1851 High Energy Astrophysical Phenomena +0912.1852 Astrophysics of Galaxies +0912.1854 Cosmology and Nongalactic Astrophysics +0912.1857 Theory +0912.1871 +0912.1873 Cosmology and Nongalactic Astrophysics +0912.1876 High Energy Astrophysical Phenomena +0912.1877 Theory +0912.1895 +0912.1896 Astrophysics of Galaxies +0912.1913 Cosmology and Nongalactic Astrophysics +0912.1941 +0912.1944 Theory +0912.1970 +0912.1989 +0912.2028 Theory +0912.2031 Phenomenology +0912.2040 Cosmology and Nongalactic Astrophysics +0912.2042 Cosmology and Nongalactic Astrophysics +0912.2050 Cosmology and Nongalactic Astrophysics +0912.2055 Solar and Stellar Astrophysics +0912.2068 Phenomenology +0912.2071 Cosmology and Nongalactic Astrophysics +0912.2076 Earth and Planetary Astrophysics +0912.2082 Experiment +0912.2122 High Energy Astrophysical Phenomena +0912.2132 Earth and Planetary Astrophysics +0912.2137 Theory +0912.2154 High Energy Astrophysical Phenomena +0912.2156 Astrophysics of Galaxies +0912.2159 Cosmology and Nongalactic Astrophysics +0912.2197 +0912.2206 Solar and Stellar Astrophysics +0912.2220 +0912.2221 Phenomenology +0912.2223 Cosmology and Nongalactic Astrophysics +0912.2231 Cosmology and Nongalactic Astrophysics +0912.2238 Theory +0912.2250 Astrophysics of Galaxies +0912.2257 Theory +0912.2287 Instrumentation and Methods for Astrophysics +0912.2295 Cosmology and Nongalactic Astrophysics +0912.2313 Earth and Planetary Astrophysics +0912.2323 Phenomenology +0912.2335 Cosmology and Nongalactic Astrophysics +0912.2337 Instrumentation and Detectors +0912.2343 Cosmology and Nongalactic Astrophysics +0912.2347 Theory +0912.2350 Earth and Planetary Astrophysics +0912.2355 Instrumentation and Methods for Astrophysics +0912.2358 Astrophysics of Galaxies +0912.2364 Cosmology and Nongalactic Astrophysics +0912.2395 Solar and Stellar Astrophysics +0912.2397 +0912.2465 Cosmology and Nongalactic Astrophysics +0912.2470 High Energy Astrophysical Phenomena +0912.2488 Theory +0912.2490 Phenomenology +0912.2504 Cosmology and Nongalactic Astrophysics +0912.2529 Theory +0912.2533 +0912.2535 Theory +0912.2546 Computational Physics +0912.2566 Earth and Planetary Astrophysics +0912.2575 Cosmology and Nongalactic Astrophysics +0912.2578 +0912.2579 Solar and Stellar Astrophysics +0912.2585 Earth and Planetary Astrophysics +0912.2590 High Energy Astrophysical Phenomena +0912.2592 Solar and Stellar Astrophysics +0912.2597 Earth and Planetary Astrophysics +0912.2599 Earth and Planetary Astrophysics +0912.2634 Theory +0912.2636 High Energy Astrophysical Phenomena +0912.2637 Solar and Stellar Astrophysics +0912.2647 Solar and Stellar Astrophysics +0912.2648 Cosmology and Nongalactic Astrophysics +0912.2655 Astrophysics of Galaxies +0912.2664 Theory +0912.2679 +0912.2687 +0912.2691 +0912.2712 Theory +0912.2714 High Energy Astrophysical Phenomena +0912.2718 Phenomenology +0912.2719 Theory +0912.2729 Phenomenology +0912.2733 Theory +0912.2746 Cosmology and Nongalactic Astrophysics +0912.2748 Cosmology and Nongalactic Astrophysics +0912.2755 Theory +0912.2766 High Energy Astrophysical Phenomena +0912.2784 Theory +0912.2796 Cosmology and Nongalactic Astrophysics +0912.2797 Solar and Stellar Astrophysics +0912.2799 Cosmology and Nongalactic Astrophysics +0912.2802 Phenomenology +0912.2806 Phenomenology +0912.2814 +0912.2831 Phenomenology +0912.2866 Cosmology and Nongalactic Astrophysics +0912.2871 Lattice +0912.2880 Solar and Stellar Astrophysics +0912.2902 +0912.2913 Plasma Physics +0912.2915 Instrumentation and Detectors +0912.2921 High Energy Astrophysical Phenomena +0912.2928 Astrophysics of Galaxies +0912.2935 +0912.2944 Theory +0912.2961 Phenomenology +0912.2974 Theory +0912.2991 +0912.2998 Cosmology and Nongalactic Astrophysics +0912.3001 High Energy Astrophysical Phenomena +0912.3005 Cosmology and Nongalactic Astrophysics +0912.3007 Cosmology and Nongalactic Astrophysics +0912.3013 Cosmology and Nongalactic Astrophysics +0912.3015 +0912.3023 High Energy Astrophysical Phenomena +0912.3032 Cosmology and Nongalactic Astrophysics +0912.3039 Theory +0912.3042 Astrophysics of Galaxies +0912.3055 High Energy Astrophysical Phenomena +0912.3065 Astrophysics of Galaxies +0912.3073 Cosmology and Nongalactic Astrophysics +0912.3074 Theory +0912.3075 Solar and Stellar Astrophysics +0912.3090 Cosmology and Nongalactic Astrophysics +0912.3142 Theory +0912.3153 Phenomenology +0912.3164 Instrumentation and Detectors +0912.3167 Theory +0912.3173 Lattice +0912.3226 Solar and Stellar Astrophysics +0912.3243 Earth and Planetary Astrophysics +0912.3251 Cosmology and Nongalactic Astrophysics +0912.3253 Earth and Planetary Astrophysics +0912.3276 Astrophysics of Galaxies +0912.3280 Phenomenology +0912.3283 Cosmology and Nongalactic Astrophysics +0912.3288 Earth and Planetary Astrophysics +0912.3298 Astrophysics of Galaxies +0912.3317 Phenomenology +0912.3342 +0912.3347 Solar and Stellar Astrophysics +0912.3348 Phenomenology +0912.3368 Phenomenology +0912.3369 Theory +0912.3372 Experiment +0912.3375 Phenomenology +0912.3379 Theory +0912.3427 Phenomenology +0912.3430 Phenomenology +0912.3440 Phenomenology +0912.3451 +0912.3459 +0912.3462 Theory +0912.3463 Theory +0912.3468 Exactly Solvable and Integrable Systems +0912.3483 +0912.3499 Cosmology and Nongalactic Astrophysics +0912.3501 Phenomenology +0912.3511 Astrophysics of Galaxies +0912.3519 Theory +0912.3524 Theory +0912.3525 Cosmology and Nongalactic Astrophysics +0912.3527 Phenomenology +0912.3528 High Energy Astrophysical Phenomena +0912.3529 High Energy Astrophysical Phenomena +0912.3537 Solar and Stellar Astrophysics +0912.3545 Astrophysics of Galaxies +0912.3561 Phenomenology +0912.3584 Theory +0912.3590 Theory +0912.3592 Cosmology and Nongalactic Astrophysics +0912.3596 High Energy Astrophysical Phenomena +0912.3603 Cosmology and Nongalactic Astrophysics +0912.3618 High Energy Astrophysical Phenomena +0912.3622 Cosmology and Nongalactic Astrophysics +0912.3623 +0912.3624 Theory +0912.3631 Solar and Stellar Astrophysics +0912.3632 +0912.3642 Theory +0912.3643 Earth and Planetary Astrophysics +0912.3647 Phenomenology +0912.3649 Solar and Stellar Astrophysics +0912.3651 +0912.3657 Theory +0912.3661 Solar and Stellar Astrophysics +0912.3672 Theory +0912.3705 Theory +0912.3751 Phenomenology +0912.3768 +0912.3779 +0912.3796 Solar and Stellar Astrophysics +0912.3800 Phenomenology +0912.3808 Solar and Stellar Astrophysics +0912.3819 Astrophysics of Galaxies +0912.3822 High Energy Astrophysical Phenomena +0912.3836 Theory +0912.3838 Experiment +0912.3840 Theory +0912.3862 Phenomenology +0912.3872 Phenomenology +0912.3873 +0912.3905 Phenomenology +0912.3915 Earth and Planetary Astrophysics +0912.3943 Astrophysics of Galaxies +0912.3979 Atomic Physics +0912.4026 Solar and Stellar Astrophysics +0912.4028 Phenomenology +0912.4033 Phenomenology +0912.4057 +0912.4093 +0912.4156 High Energy Astrophysical Phenomena +0912.4158 +0912.4176 Astrophysics of Galaxies +0912.4183 Quantum Gases +0912.4198 +0912.4203 Lattice +0912.4208 Phenomenology +0912.4211 Theory +0912.4217 Phenomenology +0912.4259 Solar and Stellar Astrophysics +0912.4260 Cosmology and Nongalactic Astrophysics +0912.4267 Cosmology and Nongalactic Astrophysics +0912.4268 Theory +0912.4270 Phenomenology +0912.4276 Cosmology and Nongalactic Astrophysics +0912.4279 Solar and Stellar Astrophysics +0912.4282 Theory +0912.4293 Instrumentation and Methods for Astrophysics +0912.4298 Cosmology and Nongalactic Astrophysics +0912.4317 Cosmology and Nongalactic Astrophysics +0912.4319 Geophysics +0912.4332 Solar and Stellar Astrophysics +0912.4355 Phenomenology +0912.4359 Phenomenology +0912.4370 Experiment +0912.4377 Phenomenology +0912.4378 Experiment +0912.4405 Cosmology and Nongalactic Astrophysics +0912.4426 Solar and Stellar Astrophysics +0912.4440 Theory +0912.4448 Theory +0912.4471 Cosmology and Nongalactic Astrophysics +0912.4481 Theory +0912.4504 High Energy Astrophysical Phenomena +0912.4510 Phenomenology +0912.4527 Solar and Stellar Astrophysics +0912.4538 Astrophysics of Galaxies +0912.4555 +0912.4578 +0912.4580 High Energy Astrophysical Phenomena +0912.4581 +0912.4593 Phenomenology +0912.4604 Theory +0912.4622 Solar and Stellar Astrophysics +0912.4659 Theory +0912.4669 +0912.4672 Phenomenology +0912.4682 Astrophysics of Galaxies +0912.4687 Solar and Stellar Astrophysics +0912.4689 Phenomenology +0912.4692 Instrumentation and Methods for Astrophysics +0912.4696 Solar and Stellar Astrophysics +0912.4698 Phenomenology +0912.4709 +0912.4712 Theory +0912.4719 Solar and Stellar Astrophysics +0912.4724 Theory +0912.4731 Phenomenology +0912.4737 Phenomenology +0912.4738 Solar and Stellar Astrophysics +0912.4766 Cosmology and Nongalactic Astrophysics +0912.4769 High Energy Astrophysical Phenomena +0912.4777 Solar and Stellar Astrophysics +0912.4786 +0912.4792 +0912.4793 Cosmology and Nongalactic Astrophysics +0912.4811 Theory +0912.4836 +0912.4838 +0912.4864 Astrophysics of Galaxies +0912.4916 Solar and Stellar Astrophysics +0912.4929 Phenomenology +0912.4930 High Energy Astrophysical Phenomena +0912.4946 Cosmology and Nongalactic Astrophysics +0912.4979 High Energy Astrophysical Phenomena +0912.4980 Earth and Planetary Astrophysics +0912.4985 High Energy Astrophysical Phenomena +0912.4990 High Energy Astrophysical Phenomena +0912.5032 Cosmology and Nongalactic Astrophysics +0912.5080 Solar and Stellar Astrophysics +0912.5088 Astrophysics of Galaxies +0912.5103 +0912.5105 Theory +0912.5109 +0912.5125 Theory +0912.5140 Cosmology and Nongalactic Astrophysics +0912.5154 +0912.5157 +0912.5158 +0912.5165 Cosmology and Nongalactic Astrophysics +0912.5170 +0912.5184 Solar and Stellar Astrophysics +0912.5191 Theory +0912.5210 Phenomenology +0912.5219 Phenomenology +0912.5225 Theory +0912.5229 Astrophysics of Galaxies +0912.5250 Phenomenology +0912.5254 Phenomenology +0912.5256 Phenomenology +0912.5278 Phenomenology +0912.5286 +0912.5304 Theory +0912.5318 High Energy Astrophysical Phenomena +0912.5330 Cosmology and Nongalactic Astrophysics +0912.5332 Cosmology and Nongalactic Astrophysics +0912.5333 Solar and Stellar Astrophysics +0912.5335 Cosmology and Nongalactic Astrophysics +0912.5377 Phenomenology +0912.5385 +0912.5388 +0912.5404 Lattice +0912.5412 High Energy Astrophysical Phenomena +0912.5418 Theory +0912.5421 Lattice +0912.5423 Phenomenology +0912.5425 Phenomenology +0912.5430 Solar and Stellar Astrophysics +0912.5451 Theory +0912.5457 Theory +0912.5479 Phenomenology +0912.5490 +0912.5491 Solar and Stellar Astrophysics +0912.5516 Cosmology and Nongalactic Astrophysics +0912.5522 Theory +1001.0002 Theory +1001.0124 +1001.0139 Solar and Stellar Astrophysics +1001.0144 +1001.0161 +1001.0219 Theory +1001.0222 Theory +1001.0247 Phenomenology +1001.0274 Theory +1001.0332 +1001.0371 Theory +1001.0396 +1001.0428 Phenomenology +1001.0444 +1001.0460 +1001.0473 Phenomenology +1001.0475 +1001.0481 +1001.0493 Theory +1001.0508 Theory +1001.0518 Phenomenology +1001.0522 +1001.0523 Instrumentation and Detectors +1001.0572 Earth and Planetary Astrophysics +1001.0576 Astrophysics of Galaxies +1001.0584 Phenomenology +1001.0631 Theory +1001.0670 +1001.0711 Phenomenology +1001.0726 General Physics +1001.0738 Cosmology and Nongalactic Astrophysics +1001.0763 Theory +1001.0769 Cosmology and Nongalactic Astrophysics +1001.0784 Theory +1001.0847 +1001.0901 Phenomenology +1001.0932 Theory +1001.0972 High Energy Astrophysical Phenomena +1001.1010 +1001.1039 +1001.1044 +1001.1067 Phenomenology +1001.1076 Phenomenology +1001.1077 Theory +1001.1104 +1001.1151 +1001.1158 +1001.1163 Phenomenology +1001.1177 +1001.1189 Phenomenology +1001.1194 Instrumentation and Detectors +1001.1243 +1001.1251 Theory +1001.1259 Phenomenology +1001.1264 +1001.1281 Phenomenology +1001.1283 Instrumentation and Detectors +1001.1291 Cosmology and Nongalactic Astrophysics +1001.1300 +1001.1307 Phenomenology +1001.1310 +1001.1330 +1001.1381 High Energy Astrophysical Phenomena +1001.1398 Theory +1001.1437 +1001.1447 Accelerator Physics +1001.1473 Theory +1001.1486 Theory +1001.1511 +1001.1545 +1001.1561 General Physics +1001.1585 +1001.1661 +1001.1682 Lattice +1001.1712 Experiment +1001.1749 High Energy Astrophysical Phenomena +1001.1752 Theory +1001.1753 +1001.1772 Phenomenology +1001.1773 Phenomenology +1001.1788 Theory +1001.1816 Phenomenology +1001.1884 +1001.1885 Lattice +1001.1897 Theory +1001.1900 Experiment +1001.1938 Phenomenology +1001.1940 Phenomenology +1001.1950 Instrumentation and Detectors +1001.1961 +1001.1969 Atomic Physics +1001.1978 Phenomenology +1001.2023 Lattice +1001.2036 Theory +1001.2176 Phenomenology +1001.2191 Solar and Stellar Astrophysics +1001.2211 Phenomenology +1001.2214 Phenomenology +1001.2302 +1001.2306 Theory +1001.2316 +1001.2317 Theory +1001.2324 Cosmology and Nongalactic Astrophysics +1001.2361 Theory +1001.2374 +1001.2398 Cosmology and Nongalactic Astrophysics +1001.2399 Theory +1001.2454 +1001.2561 Phenomenology +1001.2578 +1001.2610 +1001.2616 +1001.2617 Solar and Stellar Astrophysics +1001.2693 Phenomenology +1001.2716 Phenomenology +1001.2736 Phenomenology +1001.2800 Phenomenology +1001.2801 +1001.2807 Experiment +1001.2914 +1001.3028 Cosmology and Nongalactic Astrophysics +1001.3041 Statistical Mechanics +1001.3051 +1001.3057 +1001.3092 Phenomenology +1001.3099 +1001.3103 Theory +1001.3108 +1001.3143 Phenomenology +1001.3146 Phenomenology +1001.3149 Phenomenology +1001.3153 Theory +1001.3155 Theory +1001.3169 +1001.3179 Mesoscale and Nanoscale Physics +1001.3243 Phenomenology +1001.3260 +1001.3267 +1001.3278 Phenomenology +1001.3282 +1001.3284 Theory +1001.3292 +1001.3294 Solar and Stellar Astrophysics +1001.3300 Phenomenology +1001.3346 Solar and Stellar Astrophysics +1001.3347 +1001.3390 Theory +1001.3408 Phenomenology +1001.3509 Phenomenology +1001.3522 High Energy Astrophysical Phenomena +1001.3598 Theory +1001.3602 Phenomenology +1001.3614 Accelerator Physics +1001.3617 Phenomenology +1001.3699 Lattice +1001.3700 Theory +1001.3754 +1001.3822 Phenomenology +1001.3835 Phenomenology +1001.3871 Theory +1001.3884 Phenomenology +1001.3960 Theory +1001.3982 Theory +1001.3999 +1001.4008 Theory +1001.4039 Phenomenology +1001.4042 Plasma Physics +1001.4082 Phenomenology +1001.4084 Phenomenology +1001.4172 Cosmology and Nongalactic Astrophysics +1001.4175 Phenomenology +1001.4179 +1001.4180 Theory +1001.4215 Theory +1001.4281 Phenomenology +1001.4359 Phenomenology +1001.4388 Theory +1001.4495 Phenomenology +1001.4501 +1001.4505 Phenomenology +1001.4518 Quantum Gases +1001.4532 Theory +1001.4544 Theory +1001.4545 +1001.4547 +1001.4604 +1001.4617 +1001.4634 Cosmology and Nongalactic Astrophysics +1001.4654 Experiment +1001.4678 +1001.4722 Computational Physics +1001.4726 +1001.4741 Instrumentation and Detectors +1001.4750 Theory +1001.4779 Theory +1001.4783 Lattice +1001.4808 Theory +1001.4817 Cosmology and Nongalactic Astrophysics +1001.4878 Phenomenology +1001.4893 +1001.4911 +1001.4936 Cosmology and Nongalactic Astrophysics +1001.4937 +1001.4979 Lattice +1001.5003 Theory +1001.5012 Cosmology and Nongalactic Astrophysics +1001.5027 Phenomenology +1001.5028 Theory +1001.5032 Theory +1001.5065 Phenomenology +1001.5071 Quantum Gases +1001.5083 +1001.5088 Cosmology and Nongalactic Astrophysics +1001.5151 Phenomenology +1001.5184 Cosmology and Nongalactic Astrophysics +1001.5261 Phenomenology +1001.5263 +1001.5267 High Energy Astrophysical Phenomena +1001.5300 Phenomenology +1001.5317 +1001.5343 Theory +1001.5382 Theory +1001.5398 Phenomenology +1001.5414 Theory +1001.5443 Phenomenology +1001.5463 +1002.0001 Solar and Stellar Astrophysics +1002.0005 Phenomenology +1002.0014 Cosmology and Nongalactic Astrophysics +1002.0018 Theory +1002.0029 Phenomenology +1002.0055 Theory +1002.0069 Statistical Mechanics +1002.0075 Atomic Physics +1002.0118 Mesoscale and Nanoscale Physics +1002.0148 Cosmology and Nongalactic Astrophysics +1002.0167 +1002.0200 +1002.0204 +1002.0229 Phenomenology +1002.0281 Experiment +1002.0290 Mesoscale and Nanoscale Physics +1002.0314 +1002.0319 +1002.0334 Phenomenology +1002.0343 Phenomenology +1002.0357 +1002.0375 Theory +1002.0399 Phenomenology +1002.0474 +1002.0526 Theory +1002.0566 Phenomenology +1002.0568 Theory +1002.0595 Phenomenology +1002.0600 Theory +1002.0602 Phenomenology +1002.0615 Theory +1002.0649 +1002.0652 Cosmology and Nongalactic Astrophysics +1002.0669 +1002.0692 Phenomenology +1002.0735 History and Philosophy of Physics +1002.0740 Phenomenology +1002.0804 Phenomenology +1002.0836 Cosmology and Nongalactic Astrophysics +1002.0869 Quantum Gases +1002.0911 Theory +1002.0922 Quantum Gases +1002.0966 Strongly Correlated Electrons +1002.0981 Phenomenology +1002.0985 +1002.1001 Theory +1002.1011 Phenomenology +1002.1048 Phenomenology +1002.1068 Theory +1002.1071 Phenomenology +1002.1075 Theory +1002.1165 +1002.1177 Phenomenology +1002.1235 Phenomenology +1002.1250 +1002.1263 Theory +1002.1291 +1002.1299 +1002.1306 Cosmology and Nongalactic Astrophysics +1002.1307 Phenomenology +1002.1308 Cosmology and Nongalactic Astrophysics +1002.1310 High Energy Astrophysical Phenomena +1002.1326 Phenomenology +1002.1402 Phenomenology +1002.1448 Cosmology and Nongalactic Astrophysics +1002.1459 +1002.1479 Instrumentation and Methods for Astrophysics +1002.1507 Lattice +1002.1553 Theory +1002.1555 Cosmology and Nongalactic Astrophysics +1002.1582 Lattice +1002.1645 +1002.1646 Phenomenology +1002.1669 +1002.1711 Theory +1002.1716 Theory +1002.1754 Phenomenology +1002.1762 Mesoscale and Nanoscale Physics +1002.1779 Phenomenology +1002.1790 Theory +1002.1793 Cosmology and Nongalactic Astrophysics +1002.1831 Theory +1002.1844 +1002.1872 Phenomenology +1002.1922 Phenomenology +1002.1962 Cosmology and Nongalactic Astrophysics +1002.2067 Theory +1002.2104 Phenomenology +1002.2220 Phenomenology +1002.2228 Theory +1002.2233 Cosmology and Nongalactic Astrophysics +1002.2315 High Energy Astrophysical Phenomena +1002.2329 +1002.2336 Phenomenology +1002.2351 Phenomenology +1002.2358 Theory +1002.2391 Phenomenology +1002.2394 +1002.2442 Instrumentation and Methods for Astrophysics +1002.2460 Atomic Physics +1002.2490 Theory +1002.2495 Phenomenology +1002.2497 Strongly Correlated Electrons +1002.2525 Phenomenology +1002.2532 Phenomenology +1002.2537 Phenomenology +1002.2541 Solar and Stellar Astrophysics +1002.2552 +1002.2553 Phenomenology +1002.2581 Phenomenology +1002.2596 Atomic Physics +1002.2639 Theory +1002.2705 Phenomenology +1002.2730 Phenomenology +1002.2758 Phenomenology +1002.2767 Phenomenology +1002.2787 Theory +1002.2828 Phenomenology +1002.2849 Theory +1002.2857 Phenomenology +1002.2884 Theory +1002.2926 +1002.2941 Theory +1002.2943 Phenomenology +1002.2981 Theory +1002.2986 Cosmology and Nongalactic Astrophysics +1002.2988 Lattice +1002.3041 +1002.3048 Phenomenology +1002.3058 Theory +1002.3097 Theory +1002.3125 Atomic Physics +1002.3132 Theory +1002.3143 Phenomenology +1002.3155 Mesoscale and Nanoscale Physics +1002.3159 Theory +1002.3160 Phenomenology +1002.3202 Theory +1002.3223 Phenomenology +1002.3225 Phenomenology +1002.3227 Theory +1002.3242 Theory +1002.3253 Theory +1002.3298 Theory +1002.3341 High Energy Astrophysical Phenomena +1002.3343 Lattice +1002.3348 Atomic Physics +1002.3349 Phenomenology +1002.3366 Phenomenology +1002.3373 Theory +1002.3452 Phenomenology +1002.3500 Theory +1002.3507 +1002.3515 +1002.3549 Atomic Physics +1002.3563 +1002.3592 Theory +1002.3604 Cosmology and Nongalactic Astrophysics +1002.3607 Astrophysics of Galaxies +1002.3609 Theory +1002.3688 +1002.3708 +1002.3714 Theory +1002.3723 +1002.3759 Cosmology and Nongalactic Astrophysics +1002.3776 +1002.3873 High Energy Astrophysical Phenomena +1002.3914 +1002.3948 Phenomenology +1002.3954 Theory +1002.3982 Phenomenology +1002.4072 +1002.4090 Theory +1002.4097 Phenomenology +1002.4100 Phenomenology +1002.4138 Theory +1002.4140 +1002.4142 Theory +1002.4153 +1002.4170 Phenomenology +1002.4176 Phenomenology +1002.4183 Phenomenology +1002.4190 +1002.4196 Cosmology and Nongalactic Astrophysics +1002.4214 Theory +1002.4216 Phenomenology +1002.4223 Theory +1002.4224 Experiment +1002.4234 Statistical Mechanics +1002.4253 Phenomenology +1002.4285 +1002.4293 Phenomenology +1002.4309 +1002.4322 Theory +1002.4333 +1002.4336 Lattice +1002.4340 Theory +1002.4375 Phenomenology +1002.4378 Theory +1002.4405 Cosmology and Nongalactic Astrophysics +1002.4407 Phenomenology +1002.4411 Theory +1002.4428 +1002.4441 +1002.4448 Theory +1002.4452 Phenomenology +1002.4484 Theory +1002.4495 +1002.4498 Theory +1002.4517 Statistical Mechanics +1002.4518 Phenomenology +1002.4572 +1002.4588 High Energy Astrophysical Phenomena +1002.4613 Theory +1002.4624 Phenomenology +1002.4625 Theory +1002.4628 Theory +1002.4633 Phenomenology +1002.4652 Quantum Gases +1002.4674 Theory +1002.4689 +1002.4705 Phenomenology +1002.4780 Phenomenology +1002.4824 Phenomenology +1002.4849 High Energy Astrophysical Phenomena +1002.4859 Theory +1002.4916 Phenomenology +1002.4917 Experiment +1002.4961 +1002.5004 Cosmology and Nongalactic Astrophysics +1003.0009 Theory +1003.0010 Theory +1003.0014 Phenomenology +1003.0025 Phenomenology +1003.0045 High Energy Astrophysical Phenomena +1003.0047 Phenomenology +1003.0062 Phenomenology +1003.0071 General Physics +1003.0119 Phenomenology +1003.0185 Theory +1003.0194 +1003.0196 Phenomenology +1003.0218 Theory +1003.0234 Theory +1003.0257 Phenomenology +1003.0307 Phenomenology +1003.0310 Phenomenology +1003.0326 Accelerator Physics +1003.0388 Theory +1003.0391 Materials Science +1003.0408 Phenomenology +1003.0417 Experiment +1003.0430 Theory +1003.0437 Phenomenology +1003.0448 Theory +1003.0452 +1003.0482 Phenomenology +1003.0555 Theory +1003.0610 Phenomenology +1003.0640 Experiment +1003.0644 Accelerator Physics +1003.0663 Theory +1003.0672 Cosmology and Nongalactic Astrophysics +1003.0698 Lattice +1003.0700 Phenomenology +1003.0701 Theory +1003.0740 Phenomenology +1003.0812 +1003.0813 Phenomenology +1003.0828 Phenomenology +1003.0844 +1003.0847 Lattice +1003.0850 +1003.0868 +1003.0878 +1003.0880 Cosmology and Nongalactic Astrophysics +1003.0905 Cosmology and Nongalactic Astrophysics +1003.0914 Theory +1003.0936 Lattice +1003.0941 Phenomenology +1003.0957 Phenomenology +1003.0972 Phenomenology +1003.0986 Phenomenology +1003.0991 Theory +1003.1017 +1003.1030 Phenomenology +1003.1041 Phenomenology +1003.1042 Strongly Correlated Electrons +1003.1080 Phenomenology +1003.1083 Theory +1003.1084 Phenomenology +1003.1086 Strongly Correlated Electrons +1003.1088 +1003.1114 Lattice +1003.1127 +1003.1143 +1003.1183 Experiment +1003.1197 High Energy Astrophysical Phenomena +1003.1205 Theory +1003.1264 Theory +1003.1298 +1003.1302 Theory +1003.1307 Phenomenology +1003.1328 Phenomenology +1003.1331 +1003.1341 Superconductivity +1003.1347 Theory +1003.1351 Phenomenology +1003.1381 Theory +1003.1384 Phenomenology +1003.1396 Theory +1003.1429 +1003.1434 Theory +1003.1437 Theory +1003.1463 Phenomenology +1003.1471 +1003.1482 Phenomenology +1003.1521 Cosmology and Nongalactic Astrophysics +1003.1578 Phenomenology +1003.1605 +1003.1606 +1003.1615 +1003.1617 +1003.1626 Theory +1003.1698 Phenomenology +1003.1702 Theory +1003.1722 Theory +1003.1725 +1003.1735 Cosmology and Nongalactic Astrophysics +1003.1779 Phenomenology +1003.1798 Phenomenology +1003.1829 Phenomenology +1003.1834 Cosmology and Nongalactic Astrophysics +1003.1854 Phenomenology +1003.1862 +1003.1918 Theory +1003.1985 Phenomenology +1003.2036 +1003.2046 Phenomenology +1003.2093 General Physics +1003.2108 Theory +1003.2126 Theory +1003.2132 Phenomenology +1003.2190 Phenomenology +1003.2207 +1003.2237 Superconductivity +1003.2250 Theory +1003.2256 Theory +1003.2284 Theory +1003.2313 Phenomenology +1003.2320 High Energy Astrophysical Phenomena +1003.2342 Theory +1003.2364 Phenomenology +1003.2365 General Physics +1003.2373 +1003.2385 Phenomenology +1003.2403 Theory +1003.2412 +1003.2416 Cosmology and Nongalactic Astrophysics +1003.2519 Theory +1003.2523 Quantum Algebra +1003.2536 Theory +1003.2572 Phenomenology +1003.2595 Phenomenology +1003.2598 +1003.2599 Theory +1003.2635 Phenomenology +1003.2648 Phenomenology +1003.2716 Theory +1003.2746 Theory +1003.2788 Cosmology and Nongalactic Astrophysics +1003.2832 Theory +1003.2849 +1003.2850 Theory +1003.2859 Instrumentation and Detectors +1003.2865 +1003.2869 Cosmology and Nongalactic Astrophysics +1003.2929 Theory +1003.2947 Phenomenology +1003.2963 Phenomenology +1003.2974 Theory +1003.2989 Theory +1003.3016 Phenomenology +1003.3051 Accelerator Physics +1003.3055 Theory +1003.3066 Phenomenology +1003.3076 +1003.3120 +1003.3148 Theory +1003.3167 +1003.3168 Phenomenology +1003.3173 Phenomenology +1003.3191 Lattice +1003.3260 Phenomenology +1003.3281 Cosmology and Nongalactic Astrophysics +1003.3287 +1003.3306 +1003.3328 +1003.3337 Phenomenology +1003.3348 Phenomenology +1003.3360 Experiment +1003.3361 Theory +1003.3368 Theory +1003.3387 Lattice +1003.3397 Experiment +1003.3398 Theory +1003.3399 +1003.3405 High Energy Astrophysical Phenomena +1003.3427 +1003.3438 +1003.3461 Phenomenology +1003.3482 Phenomenology +1003.3519 Theory +1003.3550 +1003.3590 Theory +1003.3594 Accelerator Physics +1003.3625 +1003.3636 Theory +1003.3648 Phenomenology +1003.3664 Phenomenology +1003.3724 Phenomenology +1003.3738 +1003.3753 +1003.3769 Mesoscale and Nanoscale Physics +1003.3811 +1003.3833 High Energy Astrophysical Phenomena +1003.3845 +1003.3864 +1003.3874 Strongly Correlated Electrons +1003.3926 Phenomenology +1003.3951 Theory +1003.3963 Theory +1003.4022 Phenomenology +1003.4069 Theory +1003.4098 +1003.4132 Theory +1003.4143 Theory +1003.4171 Phenomenology +1003.4244 Theory +1003.4249 Phenomenology +1003.4285 Cosmology and Nongalactic Astrophysics +1003.4312 Phenomenology +1003.4343 Theory +1003.4378 +1003.4381 Phenomenology +1003.4405 Theory +1003.4419 Mesoscale and Nanoscale Physics +1003.4420 +1003.4438 Phenomenology +1003.4442 Phenomenology +1003.4451 Phenomenology +1003.4481 Biological Physics +1003.4502 Phenomenology +1003.4505 Phenomenology +1003.4526 Cosmology and Nongalactic Astrophysics +1003.4532 Phenomenology +1003.4540 Phenomenology +1003.4582 +1003.4601 Theory +1003.4643 Lattice +1003.4664 Phenomenology +1003.4677 Phenomenology +1003.4711 +1003.4729 Phenomenology +1003.4806 Theory +1003.4957 Phenomenology +1003.4988 Theory +1003.4997 Phenomenology +1003.5027 Theory +1003.5031 Phenomenology +1003.5054 Phenomenology +1003.5057 Cosmology and Nongalactic Astrophysics +1003.5064 Theory +1003.5095 Phenomenology +1003.5130 Theory +1003.5164 Cosmology and Nongalactic Astrophysics +1003.5202 Lattice +1003.5228 Phenomenology +1003.5232 Phenomenology +1003.5245 +1003.5287 +1003.5312 Experiment +1003.5322 +1003.5357 +1003.5360 Phenomenology +1003.5374 Theory +1003.5382 +1003.5401 Optics +1003.5414 Theory +1003.5445 Phenomenology +1003.5463 Statistical Mechanics +1003.5467 Phenomenology +1003.5468 High Energy Astrophysical Phenomena +1003.5498 Phenomenology +1003.5499 Phenomenology +1003.5500 Theory +1003.5506 +1003.5508 +1003.5524 +1003.5528 +1003.5532 +1003.5542 Theory +1003.5577 Accelerator Physics +1003.5586 +1003.5590 +1003.5616 High Energy Astrophysical Phenomena +1003.5628 Phenomenology +1003.5640 +1003.5642 Theory +1003.5651 +1003.5657 Theory +1003.5662 Phenomenology +1003.5665 +1003.5666 Theory +1003.5669 Phenomenology +1003.5682 Lattice +1003.5694 Theory +1003.5695 Lattice +1003.5697 +1003.5720 +1003.5725 Phenomenology +1003.5751 Cosmology and Nongalactic Astrophysics +1003.5754 Cosmology and Nongalactic Astrophysics +1003.5767 +1003.5779 Phenomenology +1003.5788 +1003.5791 +1003.5792 Phenomenology +1003.5799 Phenomenology +1003.5805 Theory +1003.5854 Phenomenology +1003.5862 Mesoscale and Nanoscale Physics +1003.5867 Optics +1003.5869 Phenomenology +1003.5892 Cosmology and Nongalactic Astrophysics +1003.5913 Theory +1003.5932 Phenomenology +1003.5986 Theory +1003.5989 Phenomenology +1003.6005 Instrumentation and Detectors +1003.6075 Theory +1003.6111 Theory +1004.0008 Phenomenology +1004.0059 +1004.0071 +1004.0079 +1004.0091 +1004.0099 Phenomenology +1004.0124 Theory +1004.0151 +1004.0177 Experiment +1004.0231 +1004.0236 Cosmology and Nongalactic Astrophysics +1004.0237 +1004.0240 Experiment +1004.0268 Phenomenology +1004.0272 Phenomenology +1004.0279 Plasma Physics +1004.0289 +1004.0306 +1004.0309 Phenomenology +1004.0311 Phenomenology +1004.0379 +1004.0455 +1004.0464 Theory +1004.0476 Theory +1004.0494 Experiment +1004.0501 +1004.0505 +1004.0508 +1004.0513 +1004.0528 Theory +1004.0554 Theory +1004.0563 Theory +1004.0586 Astrophysics of Galaxies +1004.0600 Cosmology and Nongalactic Astrophysics +1004.0618 Theory +1004.0619 Theory +1004.0620 Phenomenology +1004.0645 Phenomenology +1004.0649 Phenomenology +1004.0693 Theory +1004.0695 Cosmology and Nongalactic Astrophysics +1004.0697 Phenomenology +1004.0709 Phenomenology +1004.0712 Theory +1004.0718 Theory +1004.0760 +1004.0808 Cosmology and Nongalactic Astrophysics +1004.0811 Instrumentation and Detectors +1004.0818 Cosmology and Nongalactic Astrophysics +1004.0823 +1004.0825 Phenomenology +1004.0837 Phenomenology +1004.0865 +1004.0868 Computational Physics +1004.0916 Theory +1004.0918 K-Theory and Homology +1004.0962 Phenomenology +1004.0982 Theory +1004.0996 Theory +1004.0998 +1004.1004 Lattice +1004.1005 Experiment +1004.1015 +1004.1030 Phenomenology +1004.1046 Cosmology and Nongalactic Astrophysics +1004.1094 +1004.1105 Phenomenology +1004.1108 Theory +1004.1110 +1004.1115 Lattice +1004.1149 Phenomenology +1004.1167 Cosmology and Nongalactic Astrophysics +1004.1177 Phenomenology +1004.1217 +1004.1223 +1004.1235 +1004.1258 Cosmology and Nongalactic Astrophysics +1004.1271 Phenomenology +1004.1282 Theory +1004.1284 Theory +1004.1291 Phenomenology +1004.1296 Theory +1004.1313 Experiment +1004.1319 Experiment +1004.1348 Theory +1004.1351 Atomic Physics +1004.1358 Experiment +1004.1394 Theory +1004.1397 Theory +1004.1401 +1004.1402 Theory +1004.1408 Phenomenology +1004.1417 Theory +1004.1435 +1004.1456 +1004.1570 +1004.1580 Mesoscale and Nanoscale Physics +1004.1587 Experiment +1004.1625 Theory +1004.1644 Phenomenology +1004.1657 Solar and Stellar Astrophysics +1004.1719 +1004.1725 +1004.1766 +1004.1771 +1004.1776 Theory +1004.1777 +1004.1790 +1004.1826 Experiment +1004.1841 Theory +1004.1846 Solar and Stellar Astrophysics +1004.1848 +1004.1858 Theory +1004.1873 +1004.1874 Cosmology and Nongalactic Astrophysics +1004.1877 High Energy Astrophysical Phenomena +1004.1889 Experiment +1004.1909 Theory +1004.1919 Phenomenology +1004.1954 Experiment +1004.1962 Theory +1004.1973 +1004.1975 +1004.1977 Theory +1004.1984 +1004.2019 Phenomenology +1004.2025 Theory +1004.2036 High Energy Astrophysical Phenomena +1004.2045 Theory +1004.2046 Cosmology and Nongalactic Astrophysics +1004.2063 Theory +1004.2075 Phenomenology +1004.2092 Cosmology and Nongalactic Astrophysics +1004.2100 Lattice +1004.2118 Theory +1004.2164 Theory +1004.2165 +1004.2169 Phenomenology +1004.2186 Phenomenology +1004.2187 Phenomenology +1004.2197 Phenomenology +1004.2200 Lattice +1004.2289 Theory +1004.2292 Lattice +1004.2310 +1004.2346 Theory +1004.2347 Phenomenology +1004.2350 Phenomenology +1004.2352 High Energy Astrophysical Phenomena +1004.2357 High Energy Astrophysical Phenomena +1004.2358 +1004.2360 Cosmology and Nongalactic Astrophysics +1004.2362 +1004.2394 +1004.2400 Theory +1004.2430 High Energy Astrophysical Phenomena +1004.2444 Phenomenology +1004.2450 Theory +1004.2489 Phenomenology +1004.2514 Strongly Correlated Electrons +1004.2521 Theory +1004.2540 Cosmology and Nongalactic Astrophysics +1004.2552 Theory +1004.2567 Quantum Gases +1004.2572 +1004.2579 Theory +1004.2597 Experiment +1004.2609 Theory +1004.2611 +1004.2621 Phenomenology +1004.2631 Phenomenology +1004.2634 +1004.2644 Atomic Physics +1004.2665 Phenomenology +1004.2676 Theory +1004.2677 +1004.2682 Phenomenology +1004.2706 Cosmology and Nongalactic Astrophysics +1004.2707 Theory +1004.2718 Theory +1004.2734 +1004.2741 Phenomenology +1004.2750 +1004.2769 Phenomenology +1004.2783 Phenomenology +1004.2804 +1004.2808 +1004.2859 Phenomenology +1004.2877 +1004.2890 Phenomenology +1004.2904 Experiment +1004.2915 Cosmology and Nongalactic Astrophysics +1004.2917 Theory +1004.2918 +1004.2964 Strongly Correlated Electrons +1004.2977 Theory +1004.3039 Phenomenology +1004.3064 +1004.3069 +1004.3078 Theory +1004.3140 Phenomenology +1004.3144 Lattice +1004.3150 +1004.3154 Phenomenology +1004.3161 +1004.3190 Phenomenology +1004.3197 Lattice +1004.3207 Phenomenology +1004.3225 Phenomenology +1004.3266 Phenomenology +1004.3269 Phenomenology +1004.3284 Phenomenology +1004.3292 Phenomenology +1004.3297 Phenomenology +1004.3305 Phenomenology +1004.3340 Cosmology and Nongalactic Astrophysics +1004.3365 Cosmology and Nongalactic Astrophysics +1004.3375 Instrumentation and Methods for Astrophysics +1004.3428 Theory +1004.3442 Strongly Correlated Electrons +1004.3444 Phenomenology +1004.3449 Phenomenology +1004.3464 Phenomenology +1004.3466 Theory +1004.3495 Theory +1004.3499 Instrumentation and Methods for Astrophysics +1004.3514 Experiment +1004.3519 Phenomenology +1004.3537 Theory +1004.3544 Cosmology and Nongalactic Astrophysics +1004.3585 Phenomenology +1004.3594 Phenomenology +1004.3612 Phenomenology +1004.3613 Theory +1004.3639 Theory +1004.3649 Theory +1004.3653 Phenomenology +1004.3660 Phenomenology +1004.3679 Phenomenology +1004.3697 Phenomenology +1004.3722 Phenomenology +1004.3724 Phenomenology +1004.3734 Theory +1004.3756 Phenomenology +1004.3791 +1004.3801 Theory +1004.3852 Phenomenology +1004.3870 Theory +1004.3875 Lattice +1004.3882 +1004.3888 Cosmology and Nongalactic Astrophysics +1004.3901 +1004.3920 Phenomenology +1004.3953 Phenomenology +1004.3959 +1004.3963 Theory +1004.3982 Phenomenology +1004.3998 Astrophysics of Galaxies +1004.4026 Theory +1004.4065 +1004.4068 Phenomenology +1004.4091 Phenomenology +1004.4098 +1004.4167 High Energy Astrophysical Phenomena +1004.4183 Phenomenology +1004.4187 Phenomenology +1004.4212 Theory +1004.4217 Phenomenology +1004.4234 Phenomenology +1004.4235 Lattice +1004.4285 Lattice +1004.4298 +1004.4331 Theory +1004.4350 Cosmology and Nongalactic Astrophysics +1004.4397 Theory +1004.4399 Theory +1004.4405 +1004.4433 +1004.4435 Mesoscale and Nanoscale Physics +1004.4452 Phenomenology +1004.4523 +1004.4525 Phenomenology +1004.4555 +1004.4567 Theory +1004.4599 +1004.4624 Phenomenology +1004.4635 Phenomenology +1004.4637 Phenomenology +1004.4651 +1004.4661 Theory +1004.4692 Phenomenology +1004.4716 Phenomenology +1004.4736 Phenomenology +1004.4767 +1004.4794 Cosmology and Nongalactic Astrophysics +1004.4810 Cosmology and Nongalactic Astrophysics +1004.4834 Theory +1004.4853 Phenomenology +1004.4884 Experiment +1004.4906 +1004.4951 Cosmology and Nongalactic Astrophysics +1004.4970 +1004.4975 +1004.4987 Phenomenology +1004.4993 Strongly Correlated Electrons +1004.4996 Instrumentation and Detectors +1004.5027 +1004.5050 +1004.5160 Cosmology and Nongalactic Astrophysics +1004.5174 Phenomenology +1004.5196 +1004.5240 +1004.5241 Quantum Gases +1004.5347 Phenomenology +1004.5371 +1004.5375 Theory +1004.5377 Cosmology and Nongalactic Astrophysics +1004.5398 Phenomenology +1004.5404 Theory +1004.5419 Phenomenology +1004.5432 Astrophysics of Galaxies +1004.5441 Phenomenology +1004.5467 Cosmology and Nongalactic Astrophysics +1004.5484 Phenomenology +1004.5489 Theory +1004.5491 Phenomenology +1004.5516 +1004.5580 +1004.5584 Lattice +1005.0022 +1005.0048 Cosmology and Nongalactic Astrophysics +1005.0059 Experiment +1005.0090 Phenomenology +1005.0227 +1005.0250 High Energy Astrophysical Phenomena +1005.0283 Phenomenology +1005.0286 +1005.0304 +1005.0324 Phenomenology +1005.0335 Phenomenology +1005.0370 Superconductivity +1005.0387 Cosmology and Nongalactic Astrophysics +1005.0393 Statistical Mechanics +1005.0396 Strongly Correlated Electrons +1005.0475 Theory +1005.0479 Cosmology and Nongalactic Astrophysics +1005.0487 +1005.0499 Theory +1005.0539 Lattice +1005.0563 Cosmology and Nongalactic Astrophysics +1005.0576 Lattice +1005.0643 Phenomenology +1005.0645 +1104.3348 Computer Science and Game Theory +1107.4776 Logic +1108.6081 Classical Analysis and ODEs +1109.0441 Differential Geometry +1112.3059 Materials Science +1201.1814 Disordered Systems and Neural Networks +1201.4090 Numerical Analysis +1202.2038 Soft Condensed Matter +1202.4175 Logic in Computer Science +1202.4893 +1203.0897 Probability +1203.5521 Disordered Systems and Neural Networks +1206.2897 +1210.0055 Commutative Algebra +1210.1268 Theory +1212.5547 Physics and Society +1301.1675 Combinatorics +1303.5315 Physics and Society +1304.1774 Adaptation and Self-Organizing Systems +1304.3657 Soft Condensed Matter +1304.3704 Adaptation and Self-Organizing Systems +1305.0662 +1305.1594 Number Theory +1305.6285 Metric Geometry +1305.6288 Metric Geometry +1306.1435 Cosmology and Nongalactic Astrophysics +1306.2874 Phenomenology +1306.5492 +1307.3987 Disordered Systems and Neural Networks +1307.4339 Data Structures and Algorithms +1308.4049 Computer Science and Game Theory +1308.6426 +1309.4763 Differential Geometry +1309.5628 Probability +1309.5713 Probability +1310.7053 Number Theory +1310.8625 Computation +1311.1371 Mesoscale and Nanoscale Physics +1311.3108 Analysis of PDEs +1312.3723 Methodology +1312.4385 Probability +1312.6601 +1312.7810 Mesoscale and Nanoscale Physics +1401.4073 Symplectic Geometry +1401.4431 +1401.4608 Mesoscale and Nanoscale Physics +1401.4665 Strongly Correlated Electrons +1401.5170 Optimization and Control +1402.0028 Materials Science +1402.0373 +1402.4771 Mesoscale and Nanoscale Physics +1402.6740 +1403.2577 Analysis of PDEs +1403.4505 Soft Condensed Matter +1403.5460 Statistical Mechanics +1403.6041 Quantum Gases +1403.8077 Statistical Mechanics +1404.1816 Optics +1404.2388 Statistical Mechanics +1404.4029 Lattice +1404.4715 Algebraic Geometry +1404.5651 Probability +1404.7357 Numerical Analysis +1404.7789 Social and Information Networks +1404.7828 Neural and Evolutionary Computing +1405.0198 +1405.0483 Statistical Mechanics +1405.1022 Cosmology and Nongalactic Astrophysics +1405.2640 +1405.5586 +1405.6009 Physics and Society +1405.6037 Quantum Gases +1406.0973 +1406.3497 Artificial Intelligence +1406.3782 Data Analysis, Statistics and Probability +1406.4249 Logic in Computer Science +1406.5194 Theory +1406.6312 Computation and Language +1406.6340 Strongly Correlated Electrons +1406.7101 Theory +1407.1183 Number Theory +1407.1574 Solar and Stellar Astrophysics +1407.3454 Disordered Systems and Neural Networks +1407.4525 Analysis of PDEs +1407.6379 Theory +1407.6380 Theory +1407.6743 Soft Condensed Matter +1407.7094 Physics and Society +1407.7403 +1407.7424 Quantum Gases +1407.7802 Spectral Theory +1407.8369 Mesoscale and Nanoscale Physics +1407.8419 Mesoscale and Nanoscale Physics +1408.0158 +1408.0717 +1408.1109 High Energy Astrophysical Phenomena +1408.1466 Earth and Planetary Astrophysics +1408.2151 Statistical Mechanics +1408.4306 Earth and Planetary Astrophysics +1408.4957 Phenomenology +1408.6083 Theory +1408.6402 Materials Science +1409.2501 Quantum Gases +1409.4086 Phenomenology +1409.4513 Quantum Gases +1409.5429 Networking and Internet Architecture +1409.5944 Logic +1409.6064 Experiment +1409.7490 +1410.0745 Computer Vision and Pattern Recognition +1410.1068 Machine Learning +1410.1739 Quantum Gases +1410.2460 Statistical Mechanics +1410.3026 Astrophysics of Galaxies +1410.3360 Statistical Mechanics +1410.5587 Differential Geometry +1410.6319 Experiment +1410.6702 Spectral Theory +1411.0582 Computer Vision and Pattern Recognition +1411.0862 Statistics Theory +1411.2002 Materials Science +1411.2044 Combinatorics +1411.2048 Combinatorics +1411.2177 +1411.2225 Differential Geometry +1411.2413 Algebraic Geometry +1411.2672 Differential Geometry +1411.2794 Dynamical Systems +1411.3062 Methodology +1411.3140 Physics and Society +1411.3366 Functional Analysis +1411.3757 Probability +1411.3844 Astrophysics of Galaxies +1411.4071 +1411.4272 Theory +1411.4642 High Energy Astrophysical Phenomena +1411.4718 Differential Geometry +1411.4847 Symplectic Geometry +1411.4888 +1411.4924 Instrumentation and Detectors +1411.4938 Astrophysics of Galaxies +1411.5013 Astrophysics of Galaxies +1411.5014 Databases +1411.5015 Soft Condensed Matter +1411.5018 Instrumentation and Methods for Astrophysics +1411.5031 Astrophysics of Galaxies +1411.5033 Analysis of PDEs +1411.5034 Theory +1411.5039 Instrumentation and Methods for Astrophysics +1411.5040 Algebraic Geometry +1411.5046 Theory +1411.5047 Geophysics +1411.5050 Data Structures and Algorithms +1411.5052 Combinatorics +1411.5053 Neural and Evolutionary Computing +1411.5054 High Energy Astrophysical Phenomena +1411.5056 +1411.5060 Computational Complexity +1411.5064 Numerical Analysis +1411.5067 Biological Physics +1411.5070 Instrumentation and Methods for Astrophysics +1411.5071 Instrumentation and Methods for Astrophysics +1411.5072 Instrumentation and Methods for Astrophysics +1411.5077 Distributed, Parallel, and Cluster Computing +1411.5078 Cryptography and Security +1411.5079 Operator Algebras +1411.5081 +1411.5085 Optics +1411.5094 Solar and Stellar Astrophysics +1411.5098 Information Theory +1411.5107 Social and Information Networks +1411.5108 Biological Physics +1411.5109 +1411.5110 Programming Languages +1411.5112 Accelerator Physics +1411.5114 Mesoscale and Nanoscale Physics +1411.5115 Algebraic Geometry +1411.5124 Phenomenology +1411.5128 Materials Science +1411.5131 Formal Languages and Automata Theory +1411.5132 Information Theory +1411.5137 Human-Computer Interaction +1411.5139 Functional Analysis +1411.5140 Computer Vision and Pattern Recognition +1411.5141 Analysis of PDEs +1411.5143 Optimization and Control +1411.5149 Optimization and Control +1411.5150 Analysis of PDEs +1411.5153 Software Engineering +1411.5156 Analysis of PDEs +1411.5157 Phenomenology +1411.5159 Probability +1411.5161 Software Engineering +1411.5164 +1411.5167 Analysis of PDEs +1411.5168 Solar and Stellar Astrophysics +1411.5172 Learning +1411.5173 Networking and Internet Architecture +1411.5174 Lattice +1411.5175 Optimization and Control +1411.5179 Quantitative Methods +1411.5183 +1411.5184 Combinatorics +1411.5191 Strongly Correlated Electrons +1411.5193 Mesoscale and Nanoscale Physics +1411.5196 Databases +1411.5197 Logic in Computer Science +1411.5204 Social and Information Networks +1411.5206 Instrumentation and Methods for Astrophysics +1411.5207 Lattice +1411.5208 Analysis of PDEs +1411.5210 Networking and Internet Architecture +1411.5211 Other Condensed Matter +1411.5213 Distributed, Parallel, and Cluster Computing +1411.5217 Complex Variables +1411.5218 Space Physics +1411.5224 Emerging Technologies +1411.5225 Computers and Society +1411.5228 Other Computer Science +1411.5236 Dynamical Systems +1411.5238 Analysis of PDEs +1411.5239 Phenomenology +1411.5241 Instrumentation and Methods for Astrophysics +1411.5244 Analysis of PDEs +1411.5245 Social and Information Networks +1411.5248 Numerical Analysis +1411.5249 Data Analysis, Statistics and Probability +1411.5251 Probability +1411.5252 Experiment +1411.5253 +1411.5255 Emerging Technologies +1411.5257 Classical Analysis and ODEs +1411.5259 Methodology +1411.5260 Machine Learning +1411.5262 Classical Analysis and ODEs +1411.5268 Computer Vision and Pattern Recognition +1411.5270 Differential Geometry +1411.5274 High Energy Astrophysical Phenomena +1411.5279 Other Statistics +1411.5283 Distributed, Parallel, and Cluster Computing +1411.5284 Mesoscale and Nanoscale Physics +1411.5293 Rings and Algebras +1411.5296 Optics +1411.5300 Solar and Stellar Astrophysics +1411.5303 Analysis of PDEs +1411.5307 Information Retrieval +1411.5309 Computer Vision and Pattern Recognition +1411.5311 Mesoscale and Nanoscale Physics +1411.5315 Mesoscale and Nanoscale Physics +1411.5317 Analysis of PDEs +1411.5320 Instrumentation and Methods for Astrophysics +1411.5322 History and Philosophy of Physics +1411.5323 Networking and Internet Architecture +1411.5326 Artificial Intelligence +1411.5328 Computer Vision and Pattern Recognition +1411.5329 Metric Geometry +1411.5331 Computer Vision and Pattern Recognition +1411.5332 Phenomenology +1411.5334 Physics Education +1411.5336 Multiagent Systems +1411.5340 Neurons and Cognition +1411.5341 Number Theory +1411.5342 Number Theory +1411.5343 Systems and Control +1411.5344 Lattice +1411.5345 Analysis of PDEs +1411.5346 Combinatorics +1411.5350 Data Analysis, Statistics and Probability +1411.5355 +cond-mat/0503172 Mesoscale and Nanoscale Physics +cond-mat/0611423 Mesoscale and Nanoscale Physics +cond-mat/9902169 Disordered Systems and Neural Networks +1405.4362 Robotics +1411.7040 Phenomenology +1411.7159 Metric Geometry +0901.0414 Geometric Topology +1007.1257 Dynamical Systems +1010.6097 High Energy Astrophysical Phenomena +1012.1703 Rings and Algebras +1012.4450 Differential Geometry +1101.0424 Number Theory +1101.1271 Theory +1107.1458 Computational Complexity +1108.4926 Strongly Correlated Electrons +1111.3321 Computational Complexity +1111.6951 Operator Algebras +1112.2412 Number Theory +1112.6401 Operator Algebras +1201.3753 Analysis of PDEs +1202.2569 +1202.3252 Combinatorics +1203.3985 +1204.3542 Statistical Mechanics +1205.4045 Materials Science +1206.1136 Dynamical Systems +1206.2629 Analysis of PDEs +1206.7073 Complex Variables +1207.0201 Analysis of PDEs +1207.3367 Numerical Analysis +1208.3120 +1209.4097 High Energy Astrophysical Phenomena +1209.5933 +1210.1862 Probability +1210.3791 Dynamical Systems +1210.5844 Numerical Analysis +1210.7279 Strongly Correlated Electrons +1211.3032 Mesoscale and Nanoscale Physics +1211.3724 Optimization and Control +1211.4601 Optimization and Control +1212.3841 Number Theory +1212.3965 +1212.6282 Geometric Topology +1301.2651 +1301.5634 Strongly Correlated Electrons +1301.7454 Optics +1302.2793 Analysis of PDEs +1303.3870 Cosmology and Nongalactic Astrophysics +1303.6325 Superconductivity +1303.7224 Strongly Correlated Electrons +1304.0836 +1304.1915 Complex Variables +1304.2295 Formal Languages and Automata Theory +1305.2324 Superconductivity +1305.3208 Symplectic Geometry +1305.4501 Algebraic Geometry +1305.5793 Computational Physics +1305.6649 Group Theory +1306.3012 Astrophysics of Galaxies +1306.4998 High Energy Astrophysical Phenomena +1307.2010 Combinatorics +1307.3528 Strongly Correlated Electrons +1307.5681 +1307.6877 Plasma Physics +1307.7691 Number Theory +1308.1520 Soft Condensed Matter +1308.2208 +1308.3109 Mesoscale and Nanoscale Physics +1308.4680 +1308.4711 Rings and Algebras +1308.4830 Mesoscale and Nanoscale Physics +1308.5583 +1308.5806 Experiment +1308.6618 +1308.6674 Theory +1309.1730 +1309.1887 Optics +1309.2988 Accelerator Physics +1309.3812 Number Theory +1309.4360 Theory +1309.5107 Probability +1309.5907 Mesoscale and Nanoscale Physics +1309.6267 Statistics Theory +1309.6392 Applications +1309.6796 Optics +1309.7541 Astrophysics of Galaxies +1310.2213 Optimization and Control +1310.2364 Disordered Systems and Neural Networks +1310.2815 Disordered Systems and Neural Networks +1310.2820 Cosmology and Nongalactic Astrophysics +1310.3698 +1310.4189 Materials Science +1310.7327 Strongly Correlated Electrons +1310.7636 Functional Analysis +1310.8387 Physics and Society +1310.8427 Mesoscale and Nanoscale Physics +1311.0859 Mesoscale and Nanoscale Physics +1311.1264 Social and Information Networks +1311.2514 Mesoscale and Nanoscale Physics +1311.2965 Combinatorics +1311.3235 Mesoscale and Nanoscale Physics +1311.4135 +1311.6407 High Energy Astrophysical Phenomena +1311.6595 +1311.6769 Instrumentation and Detectors +1311.7431 Optics +1311.7488 Rings and Algebras +1312.1433 Probability +1312.1692 Theory +1312.2846 Theory +1312.2905 Numerical Analysis +1312.2973 Theory +1312.3189 Phenomenology +1312.3776 Superconductivity +1312.3863 Mesoscale and Nanoscale Physics +1312.4765 Plasma Physics +1312.5780 General Physics +1312.6173 Computation and Language +1312.7443 Optimization and Control +1401.0206 Phenomenology +1401.1064 Statistical Mechanics +1401.2212 Mesoscale and Nanoscale Physics +1401.3402 Experiment +1401.6415 Functional Analysis +1401.6821 +1401.7050 Phenomenology +1401.7622 +1402.0231 Quantum Gases +1402.1571 +1402.2767 Materials Science +1402.3230 Cosmology and Nongalactic Astrophysics +1402.3579 Optimization and Control +1402.4587 Mesoscale and Nanoscale Physics +1402.5076 Computer Vision and Pattern Recognition +1402.5771 +1402.6154 Superconductivity +1403.1379 Probability +1403.1710 Phenomenology +1403.3249 Optimization and Control +1403.3527 +1403.3576 Phenomenology +1403.3684 Optimization and Control +1403.4799 Optics +1403.4843 Functional Analysis +1403.4929 Optimization and Control +1403.4939 Theory +1403.4955 Functional Analysis +1403.4962 Combinatorics +1403.4963 Classical Physics +1403.4964 Analysis of PDEs +1403.4966 Combinatorics +1403.4973 High Energy Astrophysical Phenomena +1403.4974 Geophysics +1403.4975 Analysis of PDEs +1403.4978 High Energy Astrophysical Phenomena +1403.4980 Physics and Society +1403.4982 Symplectic Geometry +1403.4983 Functional Analysis +1403.4984 Instrumentation and Detectors +1403.4986 Cosmology and Nongalactic Astrophysics +1403.4988 Distributed, Parallel, and Cluster Computing +1403.4990 Physics and Society +1403.4991 Data Structures and Algorithms +1403.4993 Complex Variables +1403.4998 Algebraic Topology +1403.4999 +1403.5004 Theory +1403.5005 Probability +1403.5007 Networking and Internet Architecture +1403.5010 Operating Systems +1403.5013 Combinatorics +1403.5015 Analysis of PDEs +1403.5016 Analysis of PDEs +1403.5023 Accelerator Physics +1403.5033 Mesoscale and Nanoscale Physics +1403.5040 Computation +1403.5052 Optics +1403.5058 Human-Computer Interaction +1403.5059 Mesoscale and Nanoscale Physics +1403.5062 Strongly Correlated Electrons +1403.5064 Functional Analysis +1403.5065 Computation +1403.5068 Other Condensed Matter +1403.5069 Superconductivity +1403.5071 Computers and Society +1403.5075 Instrumentation and Methods for Astrophysics +1403.5082 +1403.5083 Instrumentation and Methods for Astrophysics +1403.5085 Optimization and Control +1403.5087 Mesoscale and Nanoscale Physics +1403.5090 Differential Geometry +1403.5092 +1403.5093 Functional Analysis +1403.5101 Materials Science +1403.5102 Numerical Analysis +1403.5113 Statistics Theory +1403.5115 Learning +1403.5118 Methodology +1403.5121 Metric Geometry +1403.5125 Probability +1403.5126 Earth and Planetary Astrophysics +1403.5128 Distributed, Parallel, and Cluster Computing +1403.5132 Representation Theory +1403.5133 Functional Analysis +1403.5135 Combinatorics +1403.5138 Earth and Planetary Astrophysics +1403.5139 Optics +1403.5144 Optics +1403.5146 Lattice +1403.5151 Optimization and Control +1403.5153 Representation Theory +1403.5157 Materials Science +1403.5158 +1403.5159 Analysis of PDEs +1403.5162 Social and Information Networks +1403.5164 History and Philosophy of Physics +1403.5167 Optics +1403.5169 Artificial Intelligence +1403.5170 Optimization and Control +1403.5172 Systems and Control +1403.5173 Cosmology and Nongalactic Astrophysics +1403.5174 Dynamical Systems +1403.5177 Machine Learning +1403.5180 Optimization and Control +1403.5185 Neurons and Cognition +1403.5192 Analysis of PDEs +1403.5193 Statistical Finance +1403.5194 Statistics Theory +1403.5197 Fluid Dynamics +1403.5199 Databases +1403.5203 Optimization and Control +1403.5211 Combinatorics +1403.5213 Functional Analysis +1403.5215 Geometric Topology +1403.5217 Metric Geometry +1403.5218 Group Theory +1403.5223 Operator Algebras +1403.5229 Cosmology and Nongalactic Astrophysics +1403.5236 Pricing of Securities +1403.5237 Cosmology and Nongalactic Astrophysics +1403.5240 Complex Variables +1403.5241 Neurons and Cognition +1403.5242 Instrumentation and Methods for Astrophysics +1403.5243 +1403.5247 Portfolio Management +1403.5250 Methodology +math-ph/0410030 +math/0305220 Dynamical Systems +math/0501500 Dynamical Systems +math/0507586 Dynamical Systems +math/0509319 Algebraic Geometry +0801.3219 +0902.4694 Astrophysics of Galaxies +1004.1265 +1102.5650 Phenomenology +1103.2167 Data Structures and Algorithms +1103.3367 Mesoscale and Nanoscale Physics +1107.0844 +1202.4194 Group Theory +1203.0730 Information Theory +1204.4484 Statistical Mechanics +1206.5131 +1207.2128 Logic +1207.4311 Logic +1209.5292 +1210.2306 +1210.5833 Phenomenology +1211.0701 General Physics +1212.6458 Cryptography and Security +1301.2401 Exactly Solvable and Integrable Systems +1301.5175 Probability +1303.3699 Number Theory +1303.4549 Earth and Planetary Astrophysics +1304.3618 Phenomenology +1304.4523 Physics and Society +1304.5793 Learning +1304.7563 Computational Finance +1305.6872 Group Theory +1306.1100 Analysis of PDEs +1307.3712 Computational Engineering, Finance, and Science +1307.8002 Classical Analysis and ODEs +1308.1355 Numerical Analysis +1308.4209 Theory +1308.4752 Mesoscale and Nanoscale Physics +1308.5062 Astrophysics of Galaxies +1308.5192 Astrophysics of Galaxies +1308.6376 Quantum Gases +1309.0945 Classical Analysis and ODEs +1309.5913 Neurons and Cognition +1310.2200 +1310.4169 Social and Information Networks +1310.6743 +1310.7149 Statistics Theory +1311.1426 Physics and Society +1311.1440 Experiment +1311.5742 Atomic Physics +1311.5961 Combinatorics +1312.3524 Experiment +1312.4713 Mesoscale and Nanoscale Physics +1312.6283 Experiment +1312.6632 +1312.7855 Optics +1401.4432 Optimization and Control +1401.6084 Metric Geometry +1401.8243 +1402.1833 Superconductivity +1402.2932 +1402.6993 Disordered Systems and Neural Networks +1403.0015 General Finance +1403.1299 Instrumentation and Methods for Astrophysics +1403.3101 Strongly Correlated Electrons +1403.4030 Quantum Gases +1403.5222 Experiment +1403.5245 Mesoscale and Nanoscale Physics +1403.7090 Mesoscale and Nanoscale Physics +1404.1046 Strongly Correlated Electrons +1404.2627 Soft Condensed Matter +1404.2884 +1404.3181 Data Structures and Algorithms +1404.4407 Mesoscale and Nanoscale Physics +1404.5250 Classical Physics +1404.5564 Statistical Mechanics +1404.6950 Physics and Society +1404.7675 Physics and Society +1404.7747 Atomic Physics +1405.0191 Logic +1405.0271 Phenomenology +1405.1490 Theory +1405.2087 Statistical Mechanics +1405.2145 Soft Condensed Matter +1405.3517 Disordered Systems and Neural Networks +1405.6540 Phenomenology +1405.6932 Strongly Correlated Electrons +1406.0409 Atomic Physics +1406.0479 Cosmology and Nongalactic Astrophysics +1406.1314 Strongly Correlated Electrons +1406.1418 Astrophysics of Galaxies +1406.1669 +1406.1953 Computation and Language +1406.2248 +1406.2442 Optics +1406.2869 Cosmology and Nongalactic Astrophysics +1406.3608 Phenomenology +1406.3997 Optimization and Control +1406.4250 Plasma Physics +1406.5051 Atomic Physics +1406.5135 Number Theory +1406.5371 Materials Science +1406.5606 Atomic Physics +1406.5857 +1406.6056 Astrophysics of Galaxies +1406.6211 Mesoscale and Nanoscale Physics +1406.6455 Disordered Systems and Neural Networks +1407.0331 Rings and Algebras +1407.2350 +1407.2698 Materials Science +1407.3124 Numerical Analysis +1407.3160 Materials Science +1407.4277 Populations and Evolution +1407.6781 Strongly Correlated Electrons +1407.7849 Digital Libraries +1408.1206 High Energy Astrophysical Phenomena +1408.1522 Number Theory +1408.2267 Optics +1408.2359 Computation and Language +1408.2402 Theory +1408.2487 Atmospheric and Oceanic Physics +1408.2522 Solar and Stellar Astrophysics +1408.3072 Classical Analysis and ODEs +1408.3230 Theory +1408.3245 Cryptography and Security +1408.4195 Analysis of PDEs +1408.4208 Algebraic Geometry +1408.4276 Theory +1408.4660 Methodology +1408.4931 Materials Science +1408.5127 Dynamical Systems +1408.5149 Analysis of PDEs +1408.5152 Commutative Algebra +1408.5155 Optimization and Control +1408.5156 Strongly Correlated Electrons +1408.5167 Numerical Analysis +1408.5177 Logic +1408.5178 Number Theory +1408.5180 Numerical Analysis +1408.5181 Optics +1408.5192 Computer Science and Game Theory +1408.5200 +1408.5201 Solar and Stellar Astrophysics +1408.5202 Fluid Dynamics +1408.5204 Information Theory +1408.5205 Soft Condensed Matter +1408.5206 Systems and Control +1408.5207 Accelerator Physics +1408.5212 Fluid Dynamics +1408.5213 High Energy Astrophysical Phenomena +1408.5214 Optimization and Control +1408.5216 Quantitative Methods +1408.5218 Quantum Gases +1408.5222 Commutative Algebra +1408.5228 Analysis of PDEs +1408.5230 Mesoscale and Nanoscale Physics +1408.5241 Artificial Intelligence +1408.5242 Physics and Society +1408.5246 Learning +1408.5249 Phenomenology +1408.5250 Information Theory +1408.5251 Fluid Dynamics +1408.5254 Astrophysics of Galaxies +1408.5255 Differential Geometry +1408.5266 Mathematical Finance +1408.5270 Probability +1408.5271 Combinatorics +1408.5273 Materials Science +1408.5274 Discrete Mathematics +1408.5275 Computer Vision and Pattern Recognition +1408.5279 Dynamical Systems +1408.5283 +1408.5289 Combinatorics +1408.5296 Combinatorics +1408.5297 Statistics Theory +1408.5303 Statistical Mechanics +1408.5308 +1408.5314 Logic +1408.5316 Optimization and Control +1408.5317 Instrumentation and Methods for Astrophysics +1408.5320 Optimization and Control +1408.5321 Other Condensed Matter +1408.5322 Mesoscale and Nanoscale Physics +1408.5326 Probability +1408.5327 Instrumentation and Methods for Astrophysics +1408.5329 Logic in Computer Science +1408.5332 Optimization and Control +1408.5333 Mesoscale and Nanoscale Physics +1408.5336 Functional Analysis +1408.5339 Statistics Theory +1408.5340 Social and Information Networks +1408.5343 Optimization and Control +1408.5346 Analysis of PDEs +1408.5347 Other Computer Science +1408.5348 Optimization and Control +1408.5350 Neural and Evolutionary Computing +1408.5351 Phenomenology +1408.5352 Machine Learning +1408.5354 Optimization and Control +1408.5360 Functional Analysis +1408.5363 Analysis of PDEs +1408.5365 Differential Geometry +1408.5371 Neurons and Cognition +1408.5372 Solar and Stellar Astrophysics +1408.5374 Numerical Analysis +1408.5377 Artificial Intelligence +1408.5378 Social and Information Networks +1408.5383 Other Computer Science +1408.5385 Chemical Physics +1408.5386 Other Computer Science +1408.5387 Other Computer Science +1408.5390 Soft Condensed Matter +1408.5391 Combinatorics +1408.5392 Statistical Mechanics +1408.5393 Experiment +1408.5394 Representation Theory +1408.5399 Mesoscale and Nanoscale Physics +1408.5401 Hardware Architecture +1202.2431 Classical Analysis and ODEs +1402.5205 Distributed, Parallel, and Cluster Computing +0803.2353 Number Theory +0807.2874 Category Theory +0807.3932 Superconductivity +0809.0476 Commutative Algebra +0809.2673 Strongly Correlated Electrons +0901.1288 Information Theory +0902.3760 Superconductivity +0904.4527 Learning +0905.3932 Strongly Correlated Electrons +0906.4167 +0907.4553 Category Theory +0908.2675 Quantum Algebra +0909.1011 Information Theory +0910.3494 Information Theory +0910.5185 Methodology +1001.2755 Operator Algebras +1001.4858 Symplectic Geometry +1005.4236 Category Theory +1006.0797 Category Theory +1006.3272 Phenomenology +1008.0095 K-Theory and Homology +1008.1622 Dynamical Systems +1009.0720 Dynamical Systems +1010.2362 General Physics +1101.1663 Dynamical Systems +1102.5518 Commutative Algebra +1103.1914 Combinatorics +1105.6206 Category Theory +1106.4510 +1107.1659 Dynamical Systems +1107.2004 Physics and Society +1107.2095 Theory +1107.5528 Artificial Intelligence +1109.5785 Category Theory +1111.1441 Dynamical Systems +1111.4834 +1111.6117 Artificial Intelligence +1202.0257 Number Theory +1202.0952 Probability +1203.0280 Group Theory +1203.5140 Dynamical Systems +1204.3201 Group Theory +1204.5100 Physics and Society +1205.4302 High Energy Astrophysical Phenomena +1206.2860 Dynamical Systems +1206.4981 Statistics Theory +1208.3167 Commutative Algebra +1209.2913 +1210.0080 General Physics +1210.0828 Logic in Computer Science +1210.1639 Networking and Internet Architecture +1210.1765 Data Structures and Algorithms +1210.2068 Differential Geometry +1210.4759 Physics and Society +1211.2346 Differential Geometry +1211.2936 Mesoscale and Nanoscale Physics +1212.0213 +1212.1850 General Mathematics +1212.3724 Analysis of PDEs +1212.4902 Information Theory +1301.0286 +1301.1231 Theory +1301.3376 Discrete Mathematics +1301.5497 Risk Management +1301.7174 Number Theory +1302.2419 Classical Analysis and ODEs +1302.6395 Commutative Algebra +1303.0397 Number Theory +1303.3000 General Physics +1303.3247 Information Theory +1304.0194 Commutative Algebra +1304.1482 High Energy Astrophysical Phenomena +1304.2446 Materials Science +1304.3720 Quantitative Methods +1304.6492 +1305.1912 Computer Vision and Pattern Recognition +1305.4963 Subcellular Processes +1305.5845 Dynamical Systems +1305.6616 Combinatorics +1305.7031 Cosmology and Nongalactic Astrophysics +1306.0157 Probability +1306.2254 Combinatorics +1306.5639 Plasma Physics +1306.5662 Number Theory +1306.6617 Symplectic Geometry +1307.2242 Quantum Gases +1307.7628 +1308.2067 Number Theory +1308.2104 +1308.6394 Statistics Theory +1308.6523 Symbolic Computation +1309.0040 Disordered Systems and Neural Networks +1309.0153 Representation Theory +1309.2671 Quantum Algebra +1309.3575 +1309.7733 Methodology +1310.0649 Differential Geometry +1310.5375 Chemical Physics +1311.0544 Strongly Correlated Electrons +1311.0746 +1311.0882 Mesoscale and Nanoscale Physics +1311.2413 Superconductivity +1311.2615 Statistical Mechanics +1311.3100 +1311.3552 Number Theory +1311.4904 Formal Languages and Automata Theory +1311.6300 Dynamical Systems +1311.6916 Information Theory +1312.0209 Combinatorics +1312.0694 Programming Languages +1312.2343 Instrumentation and Detectors +1312.3397 Pattern Formation and Solitons +1312.3624 Operator Algebras +1312.3669 Biomolecules +1312.4380 +1312.4625 +1312.6468 Physics and Society +1312.6743 Information Theory +1312.7031 Biological Physics +1312.7122 +1312.7169 Differential Geometry +1401.0247 Learning +1401.0799 Physics and Society +1401.2430 +1401.3246 Strongly Correlated Electrons +1401.3720 General Physics +1401.4997 +1401.5506 Methodology +1401.7652 Materials Science +1401.7691 +1401.7803 Quantitative Methods +1401.7896 Functional Analysis +1402.0589 Artificial Intelligence +1402.0721 Operator Algebras +1402.0790 Social and Information Networks +1402.1360 +1402.1959 Neurons and Cognition +1402.2521 High Energy Astrophysical Phenomena +1402.2532 Strongly Correlated Electrons +1402.4477 High Energy Astrophysical Phenomena +1402.4606 Theory +1402.5174 +1402.5847 Methodology +1402.5983 +1402.6596 Probability +1402.6899 Materials Science +1403.0105 Theory +1403.0457 Data Structures and Algorithms +1403.0499 Mesoscale and Nanoscale Physics +1403.0800 Data Structures and Algorithms +1403.1114 +1403.1733 Phenomenology +1403.2987 Geometric Topology +1403.3400 High Energy Astrophysical Phenomena +1403.6285 Atomic Physics +1403.6460 Phenomenology +1404.0427 Molecular Networks +1404.1065 Cosmology and Nongalactic Astrophysics +1404.1680 Cosmology and Nongalactic Astrophysics +1404.1738 Quantum Algebra +1404.1745 Theory +1404.2032 Representation Theory +1404.2292 Experiment +1404.2472 Phenomenology +1404.2765 +1404.3336 Plasma Physics +1404.3337 Optics +1404.3421 +1404.3660 Data Structures and Algorithms +1404.4003 +1404.5035 Functional Analysis +1404.5076 Geometric Topology +1404.5431 Quantitative Methods +1404.5490 Strongly Correlated Electrons +1404.5602 Atomic Physics +1404.5673 Experiment +1404.5822 Functional Analysis +1404.6277 Logic in Computer Science +1404.6369 Symbolic Computation +1404.6371 Symbolic Computation +1404.6377 Quantum Gases +1404.6635 Optimization and Control +1404.6888 +1405.0351 Cryptography and Security +1405.0918 Mesoscale and Nanoscale Physics +1405.1098 General Physics +1405.1243 Superconductivity +1405.2582 Statistical Mechanics +1405.3205 Mesoscale and Nanoscale Physics +1405.3750 Social and Information Networks +1405.3766 Mesoscale and Nanoscale Physics +1405.4060 Materials Science +1405.4207 +1405.4547 +1405.4691 Computational Geometry +1405.5462 Strongly Correlated Electrons +1405.6437 Representation Theory +1405.6518 Group Theory +1405.6897 Phenomenology +1405.7434 Optics +1406.0303 Logic in Computer Science +1406.0491 Probability +1406.0877 Dynamical Systems +1406.2475 Phenomenology +1406.2806 Algebraic Geometry +1406.3005 Optics +1406.3083 Optics +1406.4126 +1406.4951 Neural and Evolutionary Computing +1406.5621 Optics +1406.5728 Mesoscale and Nanoscale Physics +1406.5895 Discrete Mathematics +1406.6588 Analysis of PDEs +1406.6631 Programming Languages +1406.7071 Phenomenology +1406.7403 Algebraic Geometry +1406.7863 Computation +1407.0342 Computer Vision and Pattern Recognition +1407.0434 Human-Computer Interaction +1407.1012 Category Theory +1407.1705 Mesoscale and Nanoscale Physics +1407.2000 Materials Science +1407.2176 Statistics Theory +1407.2483 Machine Learning +1407.2657 Learning +1407.2676 Optimization and Control +1407.2682 Experiment +1407.3009 Atmospheric and Oceanic Physics +1407.3148 Phenomenology +1407.3276 Astrophysics of Galaxies +1407.3281 Strongly Correlated Electrons +1407.3286 Distributed, Parallel, and Cluster Computing +1407.3290 Earth and Planetary Astrophysics +1407.3291 Numerical Analysis +1407.3292 +1407.3295 Algebraic Geometry +1407.3297 Physics Education +1407.3304 Experiment +1407.3305 Cosmology and Nongalactic Astrophysics +1407.3306 Analysis of PDEs +1407.3307 Earth and Planetary Astrophysics +1407.3316 Physics Education +1407.3322 Applications +1407.3324 Information Theory +1407.3326 Rings and Algebras +1407.3330 Cosmology and Nongalactic Astrophysics +1407.3332 +1407.3334 Learning +1407.3335 Systems and Control +1407.3338 Computer Science and Game Theory +1407.3341 Artificial Intelligence +1407.3342 Data Structures and Algorithms +1407.3347 Software Engineering +1407.3348 Populations and Evolution +1407.3350 Materials Science +1407.3352 +1407.3360 Computational Complexity +1407.3361 Computational Complexity +1407.3363 Combinatorics +1407.3364 Dynamical Systems +1407.3366 Cryptography and Security +1407.3367 Probability +1407.3371 +1407.3372 Pricing of Securities +1407.3373 Computational Engineering, Finance, and Science +1407.3377 Data Structures and Algorithms +1407.3382 Materials Science +1407.3383 Mathematical Software +1407.3385 Probability +1407.3387 Geometric Topology +1407.3389 Complex Variables +1407.3390 Trading and Market Microstructure +1407.3393 Superconductivity +1407.3403 Complex Variables +1407.3405 Optics +1407.3406 Plasma Physics +1407.3407 Materials Science +1407.3410 Statistics Theory +1407.3411 Functional Analysis +1407.3412 +1407.3413 +1407.3417 Classical Analysis and ODEs +1407.3419 Functional Analysis +1407.3421 Systems and Control +1407.3424 Superconductivity +1407.3425 History and Philosophy of Physics +1407.3429 Logic in Computer Science +1407.3432 Neurons and Cognition +1407.3434 Networking and Internet Architecture +1407.3437 Optimization and Control +1407.3438 +1407.3440 Strongly Correlated Electrons +1407.3446 Mesoscale and Nanoscale Physics +1407.3450 Algebraic Geometry +1407.3459 +1407.3460 Geometric Topology +1407.3461 Fluid Dynamics +1407.3466 Complex Variables +1407.3467 Combinatorics +1407.3468 High Energy Astrophysical Phenomena +1407.3470 Representation Theory +1407.3471 Dynamical Systems +1407.3473 +1407.3475 Probability +1407.3481 Number Theory +1407.3487 Distributed, Parallel, and Cluster Computing +1407.3489 Functional Analysis +1407.3492 Computation +1407.3494 Solar and Stellar Astrophysics +1407.3495 Statistics Theory +1407.3499 Cell Behavior +1407.3500 Computational Complexity +1407.3506 High Energy Astrophysical Phenomena +1407.3508 Group Theory +1407.3515 Number Theory +1407.3516 Combinatorics +1407.3517 Atmospheric and Oceanic Physics +1407.3518 Systems and Control +1407.3519 Logic in Computer Science +1407.3522 Probability +1407.3523 Optimization and Control +1407.3527 Analysis of PDEs +1407.3530 Algebraic Geometry +1407.3531 Combinatorics +1407.3538 Information Theory +1407.3539 Superconductivity +1407.3540 Computer Vision and Pattern Recognition +1407.3544 Phenomenology +1407.3546 Theory +1407.3547 Classical Physics +1407.3552 Computers and Society +1407.3555 Combinatorics +1407.3556 Information Theory +1407.3558 Number Theory +1407.3561 Networking and Internet Architecture +1407.3562 Algebraic Geometry +1407.3566 Information Theory +1407.3572 Analysis of PDEs +1407.3579 Mesoscale and Nanoscale Physics +1407.3581 Spectral Theory +1407.3597 Classical Analysis and ODEs +1407.3601 Quantum Algebra +1407.3604 Logic +1407.3608 Group Theory +1407.3609 Cryptography and Security +1407.3612 +1407.3613 Combinatorics +1407.3616 Combinatorics +1407.3619 Machine Learning +1407.3622 Cell Behavior +1407.3627 Materials Science +1407.3629 Analysis of PDEs +1407.3630 History and Overview +1407.3633 Soft Condensed Matter +1407.3634 Plasma Physics +1407.3636 Computation and Language +1407.3637 Analysis of PDEs +1407.3638 Phenomenology +1407.3639 Probability +1407.3640 Dynamical Systems +1407.3641 Computer Science and Game Theory +1407.3642 Representation Theory +1407.3644 Materials Science +1407.3646 Networking and Internet Architecture +1407.3647 Number Theory +1407.3649 Phenomenology +1407.3652 Data Analysis, Statistics and Probability +1407.3655 Functional Analysis +1407.3657 Other Computer Science +1407.3660 Cryptography and Security +1407.3662 Analysis of PDEs +1407.3664 Computer Vision and Pattern Recognition +1407.3669 Accelerator Physics +1407.3675 Computer Vision and Pattern Recognition +1407.3676 Soft Condensed Matter +1407.3681 Programming Languages +1407.3685 Learning +1407.3686 Computer Vision and Pattern Recognition +1407.3688 Optics +1407.3689 Classical Physics +1407.3690 Experiment +1407.3692 Human-Computer Interaction +1407.3695 Computer Vision and Pattern Recognition +1407.3700 Combinatorics +1407.3702 Classical Analysis and ODEs +1407.3704 Systems and Control +1407.3712 Instrumentation and Detectors +1407.3713 Statistical Mechanics +1407.3715 +1407.3717 Superconductivity +1407.3718 Functional Analysis +1407.3719 Phenomenology +1407.3723 Geometric Topology +1407.3730 +1407.3733 +1407.3745 Databases +1407.3751 Computation and Language +1407.3752 Biomolecules +1407.3757 Human-Computer Interaction +1407.3760 Commutative Algebra +1407.3761 Number Theory +1407.3767 General Topology +1407.3771 Mesoscale and Nanoscale Physics +1407.3775 History and Overview +1407.3777 History and Overview +hep-ph/0501175 Phenomenology +math/0107135 Statistics Theory +math/0107144 Probability +math/0206142 Statistics Theory +math/0505562 Symplectic Geometry +math/0601003 Operator Algebras +math/0602667 Complex Variables +math/0703380 Dynamical Systems +0803.0384 Differential Geometry +0807.1664 Differential Geometry +0910.1046 Numerical Analysis +1007.4084 Group Theory +1011.2823 Number Theory +1110.1265 Statistics Theory +1110.2604 Probability +1110.4981 Representation Theory +1112.4675 Applications +1201.0252 Number Theory +1201.0266 Number Theory +1202.6227 Differential Geometry +1203.4377 Probability +1206.3411 +1207.4890 Phenomenology +1207.6143 Complex Variables +1207.6614 Statistics Theory +1209.3144 +1209.5075 Machine Learning +1209.6346 Statistical Mechanics +1210.5189 Combinatorics +1210.8085 Statistical Mechanics +1211.1719 General Topology +1211.5858 Probability +1212.1514 Computers and Society +1212.3523 Algebraic Geometry +1301.1430 Algebraic Geometry +1301.1472 Solar and Stellar Astrophysics +1301.2603 Learning +1301.3585 +1301.6330 Numerical Analysis +1301.6431 Multiagent Systems +1301.6992 Analysis of PDEs +1302.2219 Group Theory +1302.5013 +1303.3531 Soft Condensed Matter +1304.3632 +1305.1748 Rings and Algebras +1305.3603 Cosmology and Nongalactic Astrophysics +1305.3956 Mesoscale and Nanoscale Physics +1305.5193 Functional Analysis +1306.2128 Number Theory +1306.3030 Data Structures and Algorithms +1307.3654 Statistics Theory +1307.4829 Complex Variables +1307.5055 Superconductivity +1307.7141 Computers and Society +1308.0923 Strongly Correlated Electrons +1308.4336 Strongly Correlated Electrons +1308.5102 +1308.6167 Cosmology and Nongalactic Astrophysics +1308.6457 Solar and Stellar Astrophysics +1308.6757 Superconductivity +1309.1836 Atmospheric and Oceanic Physics +1309.2138 Symbolic Computation +1309.3563 Solar and Stellar Astrophysics +1309.4250 Superconductivity +1309.5940 Biological Physics +1310.4562 Functional Analysis +1310.4850 Geometric Topology +1310.6274 Probability +1311.0301 Functional Analysis +1311.0989 Learning +1311.1858 Optics +1311.3308 Probability +1311.3702 Optics +1311.6090 Probability +1312.0873 Chaotic Dynamics +1312.1771 Algebraic Geometry +1312.4439 Superconductivity +1312.4680 +1312.6519 Soft Condensed Matter +1312.6574 Analysis of PDEs +1312.6831 Superconductivity +1401.2927 Cosmology and Nongalactic Astrophysics +1401.3391 +1401.4681 +1401.4689 Metric Geometry +1401.5192 Superconductivity +1401.6949 Quantum Gases +1401.7177 Solar and Stellar Astrophysics +1401.8172 Cryptography and Security +1401.8176 Physics and Society +1402.0376 Cosmology and Nongalactic Astrophysics +1402.0612 Instrumentation and Methods for Astrophysics +1402.2234 Group Theory +1402.2433 Probability +1402.2567 Functional Analysis +1402.2982 Experiment +1402.3748 Statistics Theory +1402.4161 +1402.4172 Logic in Computer Science +1402.4268 Combinatorics +1402.4657 +1402.5320 Theory +1402.5411 Theory +1402.5908 Mesoscale and Nanoscale Physics +1402.6998 Theory +1403.0861 +1403.1217 Numerical Analysis +1403.1544 Phenomenology +1403.3491 Strongly Correlated Electrons +1403.4067 Materials Science +1403.4715 Superconductivity +1403.5077 Analysis of PDEs +1403.5078 Analysis of PDEs +1403.5582 Mesoscale and Nanoscale Physics +1403.5702 Data Structures and Algorithms +1403.6179 Probability +1403.6325 Solar and Stellar Astrophysics +1403.7611 Statistical Mechanics +1404.0560 Metric Geometry +1404.0768 Materials Science +1404.0825 +1404.1497 Superconductivity +1404.1708 Combinatorics +1404.2071 Computation and Language +1404.3766 Distributed, Parallel, and Cluster Computing +1404.4608 Mesoscale and Nanoscale Physics +1404.7309 Instrumentation and Detectors +1404.7412 Group Theory +1404.7614 Statistical Mechanics +1405.0179 Numerical Analysis +1405.1026 +1405.1048 Astrophysics of Galaxies +1405.3050 Mesoscale and Nanoscale Physics +1405.3097 Discrete Mathematics +1405.3246 Cosmology and Nongalactic Astrophysics +1405.3774 +1405.3810 +1405.4053 Computation and Language +1405.4176 Probability +1405.4219 Theory +1405.5181 Phenomenology +1405.5771 Biological Physics +1405.5811 Experiment +1405.5873 Machine Learning +1405.5887 Information Theory +1405.5891 Probability +1405.5892 Systems and Control +1405.5893 Computation and Language +1405.5896 Analysis of PDEs +1405.5900 Statistics Theory +1405.5902 Logic in Computer Science +1405.5906 Experiment +1405.5907 Computational Physics +1405.5911 Phenomenology +1405.5914 Algebraic Geometry +1405.5915 Optics +1405.5916 Neurons and Cognition +1405.5918 +1405.5920 Quantum Algebra +1405.5924 Social and Information Networks +1405.5926 Systems and Control +1405.5928 Analysis of PDEs +1405.5929 Statistical Mechanics +1405.5930 Rings and Algebras +1405.5932 Systems and Control +1405.5935 Molecular Networks +1405.5937 Robotics +1405.5938 Combinatorics +1405.5939 Trading and Market Microstructure +1405.5940 Computer Science and Game Theory +1405.5942 Combinatorics +1405.5944 Molecular Networks +1405.5948 Multimedia +1405.5952 Differential Geometry +1405.5956 Mathematical Software +1405.5957 Combinatorics +1405.5958 Differential Geometry +1405.5960 Learning +1405.5962 Combinatorics +1405.5964 Optics +1405.5967 +1405.5969 Accelerator Physics +1405.5971 Dynamical Systems +1405.5974 Networking and Internet Architecture +1405.5978 Methodology +1405.5984 Mesoscale and Nanoscale Physics +1405.5985 Methodology +1405.5986 Solar and Stellar Astrophysics +1405.5987 +1405.5989 Statistics Theory +1405.5994 Materials Science +1405.5997 Adaptation and Self-Organizing Systems +1405.5998 Superconductivity +1405.6000 Combinatorics +1405.6003 Discrete Mathematics +1405.6012 Computer Vision and Pattern Recognition +1405.6013 Materials Science +1405.6023 Representation Theory +1405.6025 Optics +1405.6027 Trading and Market Microstructure +1405.6030 Statistics Theory +1405.6032 Plasma Physics +1405.6033 Information Theory +1405.6043 Computational Complexity +1405.6044 Statistics Theory +1405.6053 Number Theory +1405.6056 Phenomenology +1405.6057 Statistics Theory +1405.6058 Cryptography and Security +1405.6061 Statistics Theory +1405.6063 Algebraic Geometry +1405.6068 Computation and Language +1405.6073 Emerging Technologies +1405.6076 Learning +1405.6078 Phenomenology +1405.6080 Differential Geometry +1405.6088 Space Physics +1405.6089 Instrumentation and Detectors +1405.6093 History and Overview +1405.6103 Computation and Language +1405.6112 K-Theory and Homology +1405.6116 +1405.6117 +1405.6123 +1405.6130 Computer Vision and Pattern Recognition +1405.6131 Discrete Mathematics +1405.6132 Computer Vision and Pattern Recognition +1405.6133 Computer Vision and Pattern Recognition +1405.6134 General Topology +1405.6135 Computer Vision and Pattern Recognition +1405.6136 Computer Vision and Pattern Recognition +1405.6137 Computer Vision and Pattern Recognition +1405.6138 Combinatorics +1405.6139 Numerical Analysis +1405.6141 Soft Condensed Matter +1405.6142 Artificial Intelligence +1405.6144 Soft Condensed Matter +1405.6147 Multimedia +1405.6149 +1405.6150 Materials Science +1405.6152 Algebraic Geometry +1405.6154 Information Theory +1405.6158 +1405.6160 Probability +1405.6161 Other Computer Science +1405.6164 Computation and Language +1405.6168 Computer Vision and Pattern Recognition +1405.6169 Cryptography and Security +1405.6170 Information Theory +1405.6171 Information Theory +1405.6172 Quantitative Methods +1405.6173 Neural and Evolutionary Computing +1405.6177 Computer Vision and Pattern Recognition +1405.6178 Distributed, Parallel, and Cluster Computing +1405.6179 Software Engineering +1405.6181 Computational Engineering, Finance, and Science +1405.6183 Spectral Theory +1405.6184 Strongly Correlated Electrons +1405.6192 Complex Variables +1405.6193 Complex Variables +math/0309313 Group Theory +math/0312070 Representation Theory +math/0603396 Symplectic Geometry +math/0605788 Symplectic Geometry +math/0606786 Differential Geometry +math/0607236 Symplectic Geometry +math/0612232 Differential Geometry +math/0702790 Differential Geometry +0706.0725 Commutative Algebra +1009.4706 Representation Theory +1101.0338 Functional Analysis +1102.3350 Information Theory +1106.1425 Commutative Algebra +1108.5881 Information Theory +1112.1238 Information Theory +1112.3390 Number Theory +1201.0305 Metric Geometry +1201.3825 Information Theory +1202.3972 Group Theory +1203.1476 Number Theory +1203.6340 Mesoscale and Nanoscale Physics +1204.1410 Trading and Market Microstructure +1204.2840 Representation Theory +1205.2439 Algebraic Geometry +1205.5465 Information Theory +1208.1495 +1208.2072 Functional Analysis +1208.5370 Number Theory +1210.0250 Probability +1210.1600 Functional Analysis +1210.5580 Metric Geometry +1211.2345 Dynamical Systems +1211.3043 Computer Science and Game Theory +1211.4598 General Finance +1212.3244 Theory +1301.0496 Metric Geometry +1301.1901 Combinatorics +1301.2165 Information Theory +1301.7434 Soft Condensed Matter +1302.0792 Networking and Internet Architecture +1303.0107 Fluid Dynamics +1303.2653 Fluid Dynamics +1304.2510 Representation Theory +1304.3460 Phenomenology +1305.3150 Algebraic Topology +1305.7076 Combinatorics +1306.1484 Probability +1306.2245 Statistical Finance +1306.4940 Logic +1306.5285 +1306.5761 Cosmology and Nongalactic Astrophysics +1307.3632 Theory +1307.4149 Information Theory +1307.5723 Number Theory +1307.6176 High Energy Astrophysical Phenomena +1307.8432 Combinatorics +1308.1051 Analysis of PDEs +1308.1135 Commutative Algebra +1308.1377 +1308.3568 Statistics Theory +1308.4273 Applications +1308.4631 Probability +1308.6135 Mesoscale and Nanoscale Physics +1309.0403 Information Theory +1309.6905 Experiment +1310.0825 Cosmology and Nongalactic Astrophysics +1310.1768 +1310.3777 Logic +1310.6006 Theory +1310.6480 Strongly Correlated Electrons +1310.6532 Algebraic Geometry +1310.7194 High Energy Astrophysical Phenomena +1310.7425 Information Theory +1311.1272 Fluid Dynamics +1311.2245 Instrumentation and Methods for Astrophysics +1311.7632 Chaotic Dynamics +1312.0051 Phenomenology +1312.2564 Geometric Topology +1312.4911 Theory +1312.5281 Phenomenology +1401.0157 Formal Languages and Automata Theory +1401.0369 High Energy Astrophysical Phenomena +1401.1374 Theory +1401.2145 Phenomenology +1401.3749 Astrophysics of Galaxies +1401.5543 Probability +1401.7252 Statistical Mechanics +1401.7575 +1402.2115 Phenomenology +1402.2762 Operator Algebras +1402.3481 +1402.3538 Strongly Correlated Electrons +1402.6252 +1402.7037 Fluid Dynamics +1403.1656 Strongly Correlated Electrons +1403.2309 Phenomenology +1403.2690 Theory +1403.3214 Mesoscale and Nanoscale Physics +1403.3825 High Energy Astrophysical Phenomena +1403.5043 Phenomenology +1403.5719 Logic +1403.6203 Analysis of PDEs +1404.1116 Computer Vision and Pattern Recognition +1404.1143 Networking and Internet Architecture +1404.1400 Phenomenology +1404.1445 +1404.1450 Phenomenology +1404.1534 Accelerator Physics +1404.1581 Algebraic Geometry +1404.3809 Theory +1404.4606 Learning +1404.6065 +1404.6672 Cosmology and Nongalactic Astrophysics +1404.7796 Machine Learning +1405.0073 High Energy Astrophysical Phenomena +1405.2341 Solar and Stellar Astrophysics +1405.4086 Materials Science +1405.5384 Differential Geometry +1405.5800 Number Theory +1405.6898 Materials Science +1405.7307 +1405.7455 Mesoscale and Nanoscale Physics +1406.0563 Cosmology and Nongalactic Astrophysics +1406.1401 Quantum Gases +1406.2095 Phenomenology +1406.2251 Materials Science +1406.3175 Machine Learning +1406.3894 Astrophysics of Galaxies +1406.4300 +1406.4409 Algebraic Geometry +1406.4511 +1406.4801 Number Theory +1406.4817 Materials Science +1406.4821 Group Theory +1406.4838 Analysis of PDEs +1406.4861 High Energy Astrophysical Phenomena +1406.4865 Numerical Analysis +1406.4878 History and Philosophy of Physics +1406.4879 Computers and Society +1406.4881 Artificial Intelligence +1406.4882 Artificial Intelligence +1406.4887 Solar and Stellar Astrophysics +1406.4888 Atomic Physics +1406.4894 Soft Condensed Matter +1406.4895 Combinatorics +1406.4897 Representation Theory +1406.4904 Statistics Theory +1406.4910 Differential Geometry +1406.4917 Networking and Internet Architecture +1406.4924 Physics and Society +1406.4940 Number Theory +1406.4941 Networking and Internet Architecture +1406.4943 Information Theory +1406.4946 Classical Analysis and ODEs +1406.4948 +1406.4950 Functional Analysis +1406.4954 +1406.4957 Functional Analysis +1406.4958 Combinatorics +1406.4967 Solar and Stellar Astrophysics +1406.4970 Probability +1406.4972 Probability +1406.4973 Artificial Intelligence +1406.4974 Distributed, Parallel, and Cluster Computing +1406.4975 Algebraic Geometry +1406.4977 High Energy Astrophysical Phenomena +1406.4978 Strongly Correlated Electrons +1406.4982 Disordered Systems and Neural Networks +1406.4984 +1406.4986 Computers and Society +1406.4988 Cryptography and Security +1406.4989 +1406.4990 Superconductivity +1406.4991 Materials Science +1406.4992 Materials Science +1406.4994 Solar and Stellar Astrophysics +1406.4995 Information Theory +1406.5000 Hardware Architecture +1406.5001 Soft Condensed Matter +1406.5002 Theory +1406.5003 Mesoscale and Nanoscale Physics +1406.5005 Computation +1406.5007 High Energy Astrophysical Phenomena +1406.5017 Rings and Algebras +1406.5018 Numerical Analysis +1406.5019 Complex Variables +1406.5020 Computers and Society +1406.5021 Fluid Dynamics +1406.5024 Optimization and Control +1406.5035 Computer Vision and Pattern Recognition +1406.5037 Statistical Mechanics +1406.5038 Networking and Internet Architecture +1406.5039 Atmospheric and Oceanic Physics +1406.5040 Strongly Correlated Electrons +1406.5042 Dynamical Systems +1406.5050 Soft Condensed Matter +1406.5055 Instrumentation and Methods for Astrophysics +1406.5056 +1406.5059 Social and Information Networks +1406.5060 Combinatorics +1406.5062 Computation +1406.5072 Algebraic Geometry +1406.5073 Computers and Society +1406.5074 Computer Vision and Pattern Recognition +1406.5075 Group Theory +1406.5076 Probability +1406.5081 Mesoscale and Nanoscale Physics +1406.5083 Statistical Finance +1406.5089 Probability +1406.5095 Computer Vision and Pattern Recognition +1406.5099 Statistical Mechanics +1406.5102 Numerical Analysis +1406.5106 Programming Languages +1406.5115 Neurons and Cognition +1406.5118 Plasma Physics +1406.5120 Economics +1406.5121 +1406.5122 Classical Physics +1406.5133 Functional Analysis +1406.5138 Number Theory +1406.5140 +1406.5144 +1406.5146 Analysis of PDEs +1406.5147 Combinatorics +1406.5150 General Physics +1406.5151 Computational Engineering, Finance, and Science +1406.5153 Computer Science and Game Theory +1406.5157 Combinatorics +1406.5161 Distributed, Parallel, and Cluster Computing +1406.5165 Spectral Theory +1406.5166 Theory +1406.5170 Populations and Evolution +math/0306020 Probability +math/0509689 Rings and Algebras +math/0605348 Number Theory +0710.5110 Algebraic Geometry +0802.3111 Differential Geometry +0811.3870 Differential Geometry +0908.0522 Algebraic Geometry +0910.5887 Differential Geometry +1010.3902 Classical Physics +1101.5305 Combinatorics +1107.4276 +1107.5887 Differential Geometry +1112.3039 Computational Physics +1201.6133 Strongly Correlated Electrons +1202.1037 Analysis of PDEs +1202.4212 Sound +1204.4399 Algebraic Geometry +1205.2205 Combinatorics +1207.0184 Algebraic Geometry +1208.1537 Number Theory +1208.5938 Complex Variables +1209.2306 Optimization and Control +1209.2575 Numerical Analysis +1209.3414 Algebraic Geometry +1210.3178 Representation Theory +1210.8273 Combinatorics +1211.2205 Computational Physics +1211.2956 Statistical Mechanics +1212.4281 Probability +1212.5467 Mesoscale and Nanoscale Physics +1301.3671 Combinatorics +1301.5716 Probability +1302.0397 General Physics +1302.1395 Phenomenology +1302.4875 +1302.6890 Logic in Computer Science +1302.7029 Earth and Planetary Astrophysics +1302.7085 Discrete Mathematics +1303.3986 +1304.1942 Networking and Internet Architecture +1304.2601 Phenomenology +1305.5678 Mesoscale and Nanoscale Physics +1306.1910 Cosmology and Nongalactic Astrophysics +1306.1923 Operator Algebras +1306.5658 Functional Analysis +1306.6883 Instrumentation and Methods for Astrophysics +1307.0440 Soft Condensed Matter +1307.3607 Phenomenology +1307.7027 +1307.7268 Geometric Topology +1308.2814 Lattice +1309.3637 Biological Physics +1309.7118 Analysis of PDEs +1309.7806 Phenomenology +1310.4601 Superconductivity +1310.5223 Number Theory +1310.5343 Group Theory +1310.5915 Lattice +1310.6558 +1310.8219 Physics and Society +1310.8544 Experiment +1310.8562 Superconductivity +1311.1081 Theory +1311.1203 Earth and Planetary Astrophysics +1311.2318 Combinatorics +1311.2487 Mesoscale and Nanoscale Physics +1311.2718 Theory +1311.4457 +1311.5606 Theory +1311.5815 Experiment +1311.5934 Computer Science and Game Theory +1311.6753 Materials Science +1311.7219 Databases +1311.7310 Phenomenology +1312.0564 Phenomenology +1312.0991 Lattice +1312.1053 Information Theory +1312.3755 Materials Science +1312.5331 Theory +1312.6264 Strongly Correlated Electrons +1312.6326 Probability +1312.6440 Experiment +1312.7736 Theory +1401.1195 Solar and Stellar Astrophysics +1401.2367 +1401.4263 Statistical Mechanics +1401.4688 Cosmology and Nongalactic Astrophysics +1401.4977 Logic +1401.5041 Experiment +1401.6152 Earth and Planetary Astrophysics +1401.6805 Statistical Mechanics +1402.0297 +1402.0478 High Energy Astrophysical Phenomena +1402.0929 Machine Learning +1402.1793 +1402.3077 Superconductivity +1402.3256 +1402.3668 Number Theory +1402.4376 Computational Complexity +1402.4909 Mesoscale and Nanoscale Physics +1402.5253 Statistical Mechanics +1402.6010 Social and Information Networks +1403.0959 Geometric Topology +1403.2409 Cosmology and Nongalactic Astrophysics +1403.4785 Strongly Correlated Electrons +1403.5099 Spectral Theory +1403.5932 Plasma Physics +1403.5934 Subcellular Processes +1403.6980 Differential Geometry +1403.7471 Learning +1403.7750 Phenomenology +1404.0216 Statistics Theory +1404.0712 Theory +1404.1611 +1404.2247 Mesoscale and Nanoscale Physics +1404.2269 Information Theory +1404.2966 Statistical Mechanics +1404.3466 Statistics Theory +1404.4672 Strongly Correlated Electrons +1404.4853 Phenomenology +1404.6267 Populations and Evolution +1404.7392 Solar and Stellar Astrophysics +1405.2053 Materials Science +1405.2231 Materials Science +1405.2515 Cosmology and Nongalactic Astrophysics +1405.4316 Methodology +1405.4608 Information Theory +1405.4972 Combinatorics +1405.5345 Robotics +1405.5512 Social and Information Networks +1405.5555 History and Philosophy of Physics +1405.5863 +1405.6351 +1405.6828 Phenomenology +1405.7088 Biological Physics +1405.7633 General Mathematics +1406.0070 General Finance +1406.0482 Combinatorics +1406.1841 Phenomenology +1406.1875 Information Retrieval +1406.2010 Optimization and Control +1406.2039 Logic +1406.2375 Computer Vision and Pattern Recognition +1406.2807 Computer Vision and Pattern Recognition +1406.2884 Analysis of PDEs +1406.2903 Computation and Language +1406.2947 Optimization and Control +1406.3016 Other Quantitative Biology +1406.3019 Networking and Internet Architecture +1406.3028 Instrumentation and Detectors +1406.3032 Strongly Correlated Electrons +1406.3034 Exactly Solvable and Integrable Systems +1406.3036 Cosmology and Nongalactic Astrophysics +1406.3040 +1406.3041 General Physics +1406.3042 Classical Analysis and ODEs +1406.3044 History and Philosophy of Physics +1406.3048 Functional Analysis +1406.3050 Computational Physics +1406.3051 Other Quantitative Biology +1406.3054 Optimization and Control +1406.3057 Cosmology and Nongalactic Astrophysics +1406.3060 General Physics +1406.3061 Rings and Algebras +1406.3063 General Topology +1406.3064 General Finance +1406.3067 Genomics +1406.3070 Machine Learning +1406.3074 Cryptography and Security +1406.3076 Logic +1406.3077 Combinatorics +1406.3078 Rings and Algebras +1406.3079 Mesoscale and Nanoscale Physics +1406.3092 Data Structures and Algorithms +1406.3100 Neural and Evolutionary Computing +1406.3104 Algebraic Geometry +1406.3107 Differential Geometry +1406.3110 Digital Libraries +1406.3112 Portfolio Management +1406.3113 Number Theory +1406.3117 Human-Computer Interaction +1406.3118 Soft Condensed Matter +1406.3120 Soft Condensed Matter +1406.3121 Computers and Society +1406.3122 Mesoscale and Nanoscale Physics +1406.3123 Networking and Internet Architecture +1406.3124 Artificial Intelligence +1406.3125 Soft Condensed Matter +1406.3126 Optics +1406.3127 Probability +1406.3130 Probability +1406.3131 Optimization and Control +1406.3133 Instrumentation and Detectors +1406.3138 Chaotic Dynamics +1406.3140 Machine Learning +1406.3141 Algebraic Geometry +1406.3146 Solar and Stellar Astrophysics +1406.3148 Solar and Stellar Astrophysics +1406.3149 Neural and Evolutionary Computing +1406.3150 Complex Variables +1406.3153 Solar and Stellar Astrophysics +1406.3156 Neural and Evolutionary Computing +1406.3158 Classical Analysis and ODEs +1406.3170 Data Structures and Algorithms +1406.3172 Other Computer Science +1406.3176 Mesoscale and Nanoscale Physics +1406.3177 Mesoscale and Nanoscale Physics +1406.3179 +1406.3180 Algebraic Geometry +1406.3184 Number Theory +1406.3188 Information Retrieval +1406.3192 Instrumentation and Methods for Astrophysics +1406.3193 Fluid Dynamics +1406.3203 Soft Condensed Matter +1406.3208 Probability +1406.3211 Materials Science +1406.3212 Spectral Theory +1406.3214 Formal Languages and Automata Theory +1406.3225 Human-Computer Interaction +1406.3231 Algebraic Topology +1406.3238 Emerging Technologies +1406.3239 Differential Geometry +1406.3241 Instrumentation and Methods for Astrophysics +1406.3242 Biomolecules +1406.3245 Solar and Stellar Astrophysics +1406.3247 Computational Complexity +1406.3252 Other Computer Science +1406.3253 Mesoscale and Nanoscale Physics +1406.3256 Algebraic Geometry +1406.3257 Probability +1406.3258 Applications +1406.3266 Artificial Intelligence +1406.3268 Soft Condensed Matter +1406.3270 Learning +1406.3273 General Physics +1406.3275 Earth and Planetary Astrophysics +1406.3277 Information Retrieval +1406.3282 Neural and Evolutionary Computing +1406.3289 Discrete Mathematics +1406.3296 Information Theory +1406.3298 +1406.3300 Category Theory +1406.3302 Logic +1406.3308 Earth and Planetary Astrophysics +1406.3309 Logic +1406.3310 Materials Science +1406.3313 Distributed, Parallel, and Cluster Computing +1406.3320 Numerical Analysis +1406.3326 Optics +1406.3336 Probability +astro-ph/0204513 +hep-ph/0604037 Phenomenology +0707.2290 +0709.2809 Number Theory +0709.2815 Number Theory +0709.3444 Number Theory +0711.0091 Geometric Topology +0712.0678 +0810.0821 Algebraic Geometry +0907.3258 Group Theory +0908.3227 +0910.2589 Algebraic Geometry +0910.4777 Geometric Topology +0911.3090 +0911.3118 Theory +1001.0752 +1002.2387 Algebraic Geometry +1002.2429 Theory +1003.2050 Number Theory +1003.4371 Superconductivity +1006.4518 Lattice +1007.0544 Functional Analysis +1007.1648 Soft Condensed Matter +1009.5877 Lattice +1010.0862 Classical Analysis and ODEs +1010.1256 +1010.2162 Dynamical Systems +1101.0287 Information Theory +1102.5299 Quantum Gases +1103.0227 Soft Condensed Matter +1103.2154 Soft Condensed Matter +1104.1780 Statistical Mechanics +1105.0842 Analysis of PDEs +1105.1719 Number Theory +1105.2051 Algebraic Geometry +1105.4796 Rings and Algebras +1105.4893 Mesoscale and Nanoscale Physics +1106.0476 Soft Condensed Matter +1106.1455 Algebraic Topology +1106.2349 Soft Condensed Matter +1107.2026 +1107.3316 Soft Condensed Matter +1108.0852 Probability +1108.1596 Group Theory +1108.1859 +1108.3693 Symplectic Geometry +1109.1120 Mesoscale and Nanoscale Physics +1109.2546 Representation Theory +1109.5358 Rings and Algebras +1110.0431 Statistical Mechanics +1110.2030 Soft Condensed Matter +1110.2338 Algebraic Geometry +1111.0001 General Physics +1111.0812 General Physics +1111.4842 Number Theory +1111.4858 +1111.5258 Geometric Topology +1111.6519 Data Structures and Algorithms +1112.1551 +1112.3508 Differential Geometry +1112.4627 Methodology +1201.0244 Disordered Systems and Neural Networks +1201.3552 Neurons and Cognition +1201.4363 Group Theory +1202.0172 Metric Geometry +1204.3184 Analysis of PDEs +1204.3358 Statistics Theory +1204.4035 Superconductivity +1204.5516 +1204.5924 Algebraic Geometry +1205.0420 Algebraic Geometry +1205.2285 Data Structures and Algorithms +1205.4903 Theory +1205.5156 Logic +1206.0388 Operator Algebras +1206.2406 Dynamical Systems +1206.4420 Statistical Finance +1206.5685 Phenomenology +1206.6162 Dynamical Systems +1206.6641 Analysis of PDEs +1206.6957 Analysis of PDEs +1206.7050 Social and Information Networks +1207.0187 Methodology +1207.0336 +1207.3125 +1207.4880 Mesoscale and Nanoscale Physics +1207.4922 Quantum Gases +1207.6336 Optics +1208.3621 Disordered Systems and Neural Networks +1209.0877 Analysis of PDEs +1209.0917 Analysis of PDEs +1209.0928 Analysis of PDEs +1209.1235 Theory +1209.1728 Operator Algebras +1209.3178 Probability +1209.3349 Quantum Algebra +1209.6471 Soft Condensed Matter +1210.3224 Number Theory +1210.5848 Analysis of PDEs +1210.6944 Combinatorics +1210.8380 Statistical Finance +1212.0426 General Physics +1212.0740 Representation Theory +1212.0805 Quantum Gases +1212.1823 Statistical Mechanics +1212.2704 +1212.4167 Phenomenology +1212.6645 Dynamical Systems +1301.1318 Machine Learning +1301.2926 Spectral Theory +1301.2981 +1301.4370 Probability +1301.4479 +1302.0316 Soft Condensed Matter +1302.0501 +1302.0996 Analysis of PDEs +1302.3194 Dynamical Systems +1302.4872 Physics and Society +1302.5742 Commutative Algebra +1302.5787 Soft Condensed Matter +1302.5843 Statistical Mechanics +1302.7252 Analysis of PDEs +1303.0829 Strongly Correlated Electrons +1303.1375 Cosmology and Nongalactic Astrophysics +1303.1441 Information Retrieval +1303.2434 +1303.3572 Strongly Correlated Electrons +1303.3853 Algebraic Geometry +1303.5667 Differential Geometry +1303.6397 Systems and Control +1303.6895 Algebraic Topology +1304.0399 Neurons and Cognition +1304.0819 +1304.3070 Geometric Topology +1304.3736 Analysis of PDEs +1304.5308 +1304.6383 Learning +1304.6581 Theory +1304.7566 Mesoscale and Nanoscale Physics +1305.0168 +1305.0659 Theory +1305.1253 Soft Condensed Matter +1305.1985 Quantitative Methods +1305.3455 Geometric Topology +1305.4236 Group Theory +1305.4755 Information Theory +1305.4783 Differential Geometry +1305.5129 Statistical Mechanics +1305.5378 +1305.5763 Plasma Physics +1305.6096 Chemical Physics +1305.6520 Instrumentation and Detectors +1305.6740 Theory +1306.0003 Theory +1306.0444 Classical Analysis and ODEs +1306.2699 +1306.3061 Neurons and Cognition +1306.3142 +1306.3689 Differential Geometry +1306.3864 Phenomenology +1306.4012 Dynamical Systems +1306.4202 Theory +1306.4533 Classical Physics +1306.4694 Astrophysics of Galaxies +1306.6507 Classical Physics +1306.6597 Distributed, Parallel, and Cluster Computing +1307.1354 Physics and Society +1307.2019 Soft Condensed Matter +1307.2226 Analysis of PDEs +1307.3269 Quantum Algebra +1307.4338 Instrumentation and Detectors +1307.4783 Number Theory +1307.5811 Mesoscale and Nanoscale Physics +1307.6006 +1307.7394 Analysis of PDEs +1307.7525 Superconductivity +1307.7838 Networking and Internet Architecture +1308.0128 Strongly Correlated Electrons +1308.1587 Materials Science +1308.3836 Computers and Society +1308.4154 Cosmology and Nongalactic Astrophysics +1308.4900 Strongly Correlated Electrons +1308.4983 Algebraic Geometry +1308.5231 High Energy Astrophysical Phenomena +1308.5990 K-Theory and Homology +1309.0198 +1309.1606 +1309.1749 +1309.1843 Dynamical Systems +1309.2064 Theory +1309.3444 Probability +1309.4030 Number Theory +1309.4596 Strongly Correlated Electrons +1309.4779 Instrumentation and Detectors +1309.5000 Atomic Physics +1309.5892 Analysis of PDEs +1309.5934 Soft Condensed Matter +1309.6190 Combinatorics +1309.6624 Cosmology and Nongalactic Astrophysics +1309.6632 Phenomenology +1310.1888 Probability +1310.3007 +1310.3812 Quantum Algebra +1310.4987 Rings and Algebras +1310.5323 +1310.6111 Phenomenology +1310.6135 Soft Condensed Matter +1310.7629 Phenomenology +1310.8014 +1311.0007 Strongly Correlated Electrons +1311.0027 Materials Science +1311.0063 Soft Condensed Matter +1311.0064 Mesoscale and Nanoscale Physics +1311.1302 Superconductivity +1311.2809 Number Theory +1311.3569 Mesoscale and Nanoscale Physics +1311.3899 Logic in Computer Science +1311.4253 Phenomenology +1311.4273 +1311.4645 Materials Science +1311.4849 Mesoscale and Nanoscale Physics +1311.5397 +1311.5484 Theory +1311.5513 Theory +1311.6927 Mesoscale and Nanoscale Physics +1312.0049 Learning +1312.0523 Plasma Physics +1312.1478 Statistical Mechanics +1312.3102 +1312.3354 Symplectic Geometry +1312.4517 Theory +1312.4835 Cosmology and Nongalactic Astrophysics +1312.5141 Logic +1312.5565 Molecular Networks +1312.5573 +1312.5970 Chaotic Dynamics +1312.6597 Learning +1312.7010 Physics and Society +1401.0177 Group Theory +1401.0227 Materials Science +1401.0270 Physics Education +1401.0790 +1401.0964 Number Theory +1401.1153 Materials Science +1401.1361 Classical Analysis and ODEs +1401.1722 Representation Theory +1401.1763 Data Structures and Algorithms +1401.1886 Number Theory +1401.2422 Information Theory +1401.2586 Theory +1401.2645 Number Theory +1401.2705 Analysis of PDEs +1401.2880 Physics and Society +1401.2900 Computational Finance +1401.4269 Information Theory +1401.4640 +1401.4670 Representation Theory +1401.4716 Networking and Internet Architecture +1401.5463 Superconductivity +1401.5556 Number Theory +1401.5707 Data Structures and Algorithms +1401.5779 Astrophysics of Galaxies +1401.5787 Cryptography and Security +1401.6085 Experiment +1401.6214 Number Theory +1401.6302 Experiment +1401.6309 Chemical Physics +1401.6379 Cryptography and Security +1401.6462 Theory +1401.6463 Optimization and Control +1401.6470 Combinatorics +1401.6474 Solar and Stellar Astrophysics +1401.6475 Optimization and Control +1401.6476 Information Theory +1401.6477 Solar and Stellar Astrophysics +1401.6478 Optimization and Control +1401.6481 Combinatorics +1401.6482 Information Theory +1401.6483 Data Structures and Algorithms +1401.6484 Computational Engineering, Finance, and Science +1401.6485 Combinatorics +1401.6486 Rings and Algebras +1401.6492 Solar and Stellar Astrophysics +1401.6493 Complex Variables +1401.6496 Information Theory +1401.6499 Information Theory +1401.6506 Probability +1401.6507 Operator Algebras +1401.6508 Networking and Internet Architecture +1401.6512 Information Theory +1401.6516 Combinatorics +1401.6517 Robotics +1401.6521 Soft Condensed Matter +1401.6522 Numerical Analysis +1401.6523 Computer Science and Game Theory +1401.6529 +1401.6530 High Energy Astrophysical Phenomena +1401.6532 Representation Theory +1401.6533 Information Theory +1401.6534 Classical Physics +1401.6538 Solar and Stellar Astrophysics +1401.6539 +1401.6543 Information Theory +1401.6548 Fluid Dynamics +1401.6551 Quantum Gases +1401.6552 Combinatorics +1401.6553 Commutative Algebra +1401.6554 Optics +1401.6556 Analysis of PDEs +1401.6559 Earth and Planetary Astrophysics +1401.6560 Spectral Theory +1401.6567 Computation and Language +1401.6568 Classical Physics +1401.6569 Analysis of PDEs +1401.6571 Computation and Language +1401.6578 Optimization and Control +1401.6579 Commutative Algebra +1401.6581 Number Theory +1401.6583 Combinatorics +1401.6587 Mesoscale and Nanoscale Physics +1401.6588 Combinatorics +1401.6589 Rings and Algebras +1401.6592 Probability +1401.6593 Functional Analysis +1401.6596 Data Structures and Algorithms +1401.6597 Machine Learning +1401.6598 Social and Information Networks +1401.6604 Cryptography and Security +1401.6609 +1401.6617 Classical Analysis and ODEs +1401.6618 Commutative Algebra +1401.6619 Commutative Algebra +1401.6621 Networking and Internet Architecture +1401.6624 +1401.6628 Distributed, Parallel, and Cluster Computing +1401.6632 Algebraic Geometry +1401.6633 Computer Science and Game Theory +1401.6634 Rings and Algebras +1401.6638 Computer Vision and Pattern Recognition +1401.6640 Applications +1401.6646 Phenomenology +1401.6650 Materials Science +1401.6653 Instrumentation and Detectors +1401.6655 Lattice +1401.6658 +1401.6659 Number Theory +1401.6660 +1401.6661 Algebraic Geometry +1401.6662 +1401.6669 Medical Physics +1401.6680 High Energy Astrophysical Phenomena +1401.6688 Analysis of PDEs +1401.6695 Number Theory +1401.6702 Systems and Control +1401.6703 Theory +1401.6708 Geometric Topology +1401.6711 Combinatorics +1401.6716 Physics Education +1401.6717 Theory +1401.6718 High Energy Astrophysical Phenomena +1401.6720 Computers and Society +1401.6721 Probability +1401.6726 Cryptography and Security +1401.6727 Quantum Algebra +1401.6731 Materials Science +1401.6732 Strongly Correlated Electrons +1401.6735 Pricing of Securities +1401.6736 Networking and Internet Architecture +1401.6738 Information Theory +1401.6740 Machine Learning +1401.6742 Earth and Planetary Astrophysics +1401.6748 Operator Algebras +1401.6749 Lattice +1401.6752 Analysis of PDEs +1401.6754 Classical Analysis and ODEs +1401.6755 Group Theory +1401.6757 Data Structures and Algorithms +1401.6760 Group Theory +1401.6763 Accelerator Physics +1401.6767 Representation Theory +1401.6771 Mesoscale and Nanoscale Physics +1401.6773 Multiagent Systems +1401.6775 Optimization and Control +1401.6776 Experiment +1401.6778 Instrumentation and Detectors +1401.6779 +1401.6780 Soft Condensed Matter +1401.6790 Information Theory +1401.6794 Differential Geometry +1401.6799 Information Theory +1401.6802 Differential Geometry +1401.6806 Analysis of PDEs +1401.6807 Optimization and Control +1401.6808 Logic +1401.6810 Information Theory +1401.6813 Experiment +1401.6816 Combinatorics +1401.6818 Solar and Stellar Astrophysics +1401.6824 Classical Analysis and ODEs +1401.6828 Analysis of PDEs +1401.6830 Populations and Evolution +1401.6833 Analysis of PDEs +1401.6834 Strongly Correlated Electrons +1401.6835 Logic in Computer Science +1401.6836 Experiment +1401.6840 Formal Languages and Automata Theory +1401.6843 Quantum Algebra +1401.6848 Computational Complexity +1401.6852 Operator Algebras +1401.6853 Information Theory +1401.6864 Plasma Physics +1401.6866 Soft Condensed Matter +1401.6869 Functional Analysis +1401.6874 +1401.6875 Computation and Language +1401.6876 Computation and Language +1401.6877 Computers and Society +1401.6880 Mesoscale and Nanoscale Physics +1401.6883 Solar and Stellar Astrophysics +1401.6887 Databases +1401.6891 Information Retrieval +1401.6894 Probability +1401.6908 Lattice +1401.6910 Mesoscale and Nanoscale Physics +1401.6911 Earth and Planetary Astrophysics +1401.6914 Optimization and Control +1401.6916 Combinatorics +1401.6920 Differential Geometry +1401.6928 Classical Analysis and ODEs +1401.6931 Software Engineering +1401.6933 General Mathematics +1401.6934 General Mathematics +1401.6938 Experiment +1401.6942 Algebraic Geometry +1401.6948 +1401.6954 Biological Physics +1401.6955 Statistical Finance +1401.6962 Information Theory +1401.6964 Social and Information Networks +1401.6967 General Physics +1401.6968 Information Theory +1401.6969 Materials Science +1401.6971 Emerging Technologies +1401.6983 Algebraic Topology +1401.6984 Learning +1401.6988 Cryptography and Security +1401.6992 Combinatorics +1401.6994 Numerical Analysis +1401.6995 Instrumentation and Methods for Astrophysics +1401.6996 Geometric Topology +1401.6997 Classical Analysis and ODEs +1401.7001 Statistics Theory +1401.7002 Networking and Internet Architecture +1401.7003 Solar and Stellar Astrophysics +astro-ph/0610647 +gr-qc/0001064 +gr-qc/0005088 +gr-qc/9905047 +gr-qc/9910047 +hep-ph/0304168 Phenomenology +hep-th/9707128 Theory +math-ph/0405010 +math-ph/0601039 +math-ph/9907020 +math/0102148 Differential Geometry +math/0306159 Differential Geometry +math/0409341 Number Theory +math/0411262 Number Theory +math/0501195 Differential Geometry +math/0511686 Number Theory +math/0605254 Number Theory +math/0607182 Number Theory +math/0611402 Analysis of PDEs +math/0701864 Differential Geometry +1305.3847 Phenomenology +1305.6311 Theory +1306.5991 Phenomenology +1307.2788 Optics +1307.3458 Theory +1307.8099 +1308.0314 Cosmology and Nongalactic Astrophysics +1308.3042 +1308.3226 Phenomenology +1308.5673 +1308.5801 Theory +1309.0537 Cosmology and Nongalactic Astrophysics +1309.0825 Cosmology and Nongalactic Astrophysics +1309.1715 Strongly Correlated Electrons +1309.1734 Quantum Gases +1309.1992 Mesoscale and Nanoscale Physics +1310.0281 Quantum Gases +1310.0685 Strongly Correlated Electrons +1310.1091 Theory +1310.1798 Optics +1310.1839 Theory +1311.0049 Materials Science +0806.2749 +0909.2767 Discrete Mathematics +0909.4695 Functional Analysis +1008.2907 Functional Analysis +1008.3326 Functional Analysis +1010.4829 +1011.0409 Fluid Dynamics +1101.4463 Dynamical Systems +1102.1773 Logic +1105.5569 Probability +1107.1721 Theory +1112.0971 Statistical Mechanics +1112.3626 Statistical Mechanics +1112.3996 K-Theory and Homology +1112.5626 Differential Geometry +1202.4281 Logic in Computer Science +1205.1427 +1205.6192 Logic in Computer Science +1207.5893 Probability +1207.6251 Neurons and Cognition +1207.6404 Quantum Algebra +1208.2889 K-Theory and Homology +1210.6162 Analysis of PDEs +1211.0501 Data Analysis, Statistics and Probability +1211.2001 Fluid Dynamics +1212.0070 Dynamical Systems +1212.4323 Mesoscale and Nanoscale Physics +1212.5788 Commutative Algebra +1212.6559 Numerical Analysis +1301.2631 Neurons and Cognition +1301.5290 Computer Science and Game Theory +1301.6837 Cryptography and Security +1302.0794 Dynamical Systems +1302.1911 Disordered Systems and Neural Networks +1303.5952 Instrumentation and Detectors +1304.1318 Cryptography and Security +1304.2113 Phenomenology +1305.2315 Representation Theory +1305.3730 Biological Physics +1305.5029 Statistics Theory +1305.5843 Soft Condensed Matter +1306.0058 Dynamical Systems +1306.0096 +1306.0151 High Energy Astrophysical Phenomena +1306.1031 Artificial Intelligence +1306.1243 Experiment +1306.5060 Optimization and Control +1306.6410 Distributed, Parallel, and Cluster Computing +1307.2517 Complex Variables +1307.4357 Probability +1307.5697 Data Structures and Algorithms +1307.6219 +1308.2960 +1308.4207 Metric Geometry +1308.5627 Cosmology and Nongalactic Astrophysics +1309.2217 +1309.3279 +1309.6072 Complex Variables +1309.6562 Theory +1309.7588 Cosmology and Nongalactic Astrophysics +1310.2214 Analysis of PDEs +1310.2233 Number Theory +1310.3264 Strongly Correlated Electrons +1310.4141 Computational Complexity +1310.4923 Mesoscale and Nanoscale Physics +1310.5153 Statistical Mechanics +1310.5485 Computer Science and Game Theory +1310.7780 Machine Learning +1311.0041 Hardware Architecture +1311.1265 Algebraic Geometry +1311.3965 Lattice +1311.4536 Probability +1311.5345 Superconductivity +1311.6408 Solar and Stellar Astrophysics +1311.7345 Solar and Stellar Astrophysics +1312.0752 Combinatorics +1312.1162 +1312.2576 Cosmology and Nongalactic Astrophysics +1312.2937 Mesoscale and Nanoscale Physics +1312.3043 Dynamical Systems +1312.3464 +1312.3540 Theory +1312.4243 Mesoscale and Nanoscale Physics +1312.4392 +1312.4542 Theory +1312.5189 Numerical Analysis +1312.5538 +1401.0299 Mesoscale and Nanoscale Physics +1401.0474 +1401.2424 +1401.2878 Atomic Physics +1401.5186 Data Analysis, Statistics and Probability +1401.5809 Mesoscale and Nanoscale Physics +1401.6257 Superconductivity +1401.8244 Information Theory +1402.0552 Optics +1402.0835 Experiment +1402.1143 +1402.1994 Theory +1402.3443 Statistical Mechanics +1402.3519 Mesoscale and Nanoscale Physics +1402.6786 Chaotic Dynamics +1403.0646 Algebraic Geometry +1403.0737 +1403.1005 Software Engineering +1403.7776 Differential Geometry +1404.2749 +1404.2757 Probability +1404.3169 Chemical Physics +1404.3538 Computer Vision and Pattern Recognition +1404.3567 +1404.3622 Number Theory +1404.3853 Probability +1404.4505 Plasma Physics +1404.5276 Instrumentation and Detectors +1404.5717 Algebraic Geometry +1404.6176 +1404.6301 Differential Geometry +1404.6789 +1404.7073 Systems and Control +1404.7164 Information Theory +1404.7238 Algebraic Geometry +1404.7485 Soft Condensed Matter +1404.7492 +1404.7494 Distributed, Parallel, and Cluster Computing +1404.7499 Astrophysics of Galaxies +1404.7506 Earth and Planetary Astrophysics +1404.7509 Software Engineering +1404.7516 +1404.7518 Probability +1404.7519 Algebraic Geometry +1404.7529 Subcellular Processes +1404.7534 Applications +1404.7537 Materials Science +1404.7539 Astrophysics of Galaxies +1404.7541 Artificial Intelligence +1404.7542 Software Engineering +1404.7550 Computational Engineering, Finance, and Science +1404.7551 Computers and Society +1404.7553 Chaotic Dynamics +1404.7556 Dynamical Systems +1404.7557 Dynamical Systems +1404.7558 Software Engineering +1404.7559 Data Structures and Algorithms +1404.7560 Software Engineering +1404.7562 Superconductivity +1404.7563 Cryptography and Security +1404.7564 Software Engineering +1404.7566 Computer Vision and Pattern Recognition +1404.7567 Adaptation and Self-Organizing Systems +1404.7571 Databases +1404.7572 Mesoscale and Nanoscale Physics +1404.7574 Chemical Physics +1404.7577 Optimization and Control +1404.7585 Geometric Topology +1404.7586 Information Theory +1404.7591 Neurons and Cognition +1404.7592 Computer Vision and Pattern Recognition +1404.7594 Computer Vision and Pattern Recognition +1404.7595 Methodology +1404.7596 Operator Algebras +1404.7597 Operator Algebras +1404.7600 Optics +1404.7608 Computers and Society +1404.7610 Data Structures and Algorithms +1404.7613 Experiment +1404.7619 Optics +1404.7620 Combinatorics +1404.7623 Discrete Mathematics +1404.7624 Functional Analysis +1404.7625 Computation +1404.7626 Algebraic Topology +1404.7636 Applications +1404.7638 Data Structures and Algorithms +1404.7642 Applications +1404.7643 Information Theory +1404.7645 Theory +1404.7646 Statistical Mechanics +1404.7647 Spectral Theory +1404.7648 Information Theory +1404.7649 Analysis of PDEs +1404.7650 Mesoscale and Nanoscale Physics +1404.7651 Information Theory +1404.7653 Applications +1404.7657 Probability +1404.7660 Classical Analysis and ODEs +1404.7662 Symplectic Geometry +1404.7663 Operator Algebras +1404.7666 Information Theory +1404.7669 Mesoscale and Nanoscale Physics +1404.7671 Distributed, Parallel, and Cluster Computing +1404.7676 +1404.7682 Functional Analysis +1404.7685 Probability +1404.7692 Complex Variables +1404.7695 Logic in Computer Science +1404.7698 Portfolio Management +1404.7699 Mesoscale and Nanoscale Physics +1404.7703 Data Structures and Algorithms +1404.7710 Computation +1404.7719 Artificial Intelligence +1404.7722 Classical Analysis and ODEs +1404.7731 Algebraic Geometry +1404.7733 Exactly Solvable and Integrable Systems +1404.7734 Artificial Intelligence +1404.7736 Information Theory +1404.7740 Theory +1404.7742 Combinatorics +1404.7751 Networking and Internet Architecture +1404.7752 Optimization and Control +1404.7758 Data Structures and Algorithms +1404.7759 Experiment +1404.7760 Cryptography and Security +1404.7761 Computers and Society +1404.7766 Populations and Evolution +1404.7769 +1404.7770 Logic in Computer Science +1404.7771 Combinatorics +1404.7774 Chaotic Dynamics +1404.7781 Optics +1404.7784 Computer Science and Game Theory +1404.7788 Category Theory +1404.7799 Networking and Internet Architecture +1404.7800 Strongly Correlated Electrons +1404.7803 Networking and Internet Architecture +1404.7804 Analysis of PDEs +1404.7805 Materials Science +1404.7808 Statistical Mechanics +1404.7810 Data Structures and Algorithms +1404.7813 Optimization and Control +1404.7814 Software Engineering +1404.7819 Atomic Physics +1404.7827 Information Theory +1404.7829 Phenomenology +1404.7832 Materials Science +1404.7841 Dynamical Systems +1404.7842 Biomolecules +1404.7843 Information Theory +1404.7844 Methodology +1404.7845 Number Theory +1404.7851 Algebraic Geometry +math/0611231 Quantum Algebra +quant-ph/0311001 +quant-ph/0406127 +0806.4129 +0912.3191 General Topology +1006.1262 Differential Geometry +1101.3629 Combinatorics +1106.4548 Theory +1107.2908 +1107.5600 Algebraic Geometry +1108.1389 Strongly Correlated Electrons +1109.3374 Logic +1110.3339 Strongly Correlated Electrons +1202.5396 Geometric Topology +1203.2822 Formal Languages and Automata Theory +1204.1813 +1206.5531 Superconductivity +1207.5278 Algebraic Geometry +1210.6599 Genomics +1211.1324 Strongly Correlated Electrons +1211.5777 Cosmology and Nongalactic Astrophysics +1212.6422 Algebraic Topology +1301.4838 Mesoscale and Nanoscale Physics +1305.5828 Optimization and Control +1306.2359 Probability +1306.3304 +1306.4586 +1306.6027 +1307.0251 +1307.6327 Combinatorics +1307.8028 Complex Variables +1307.8030 Complex Variables +1308.6533 Quantum Gases +1309.2268 +1309.3020 +1309.3630 Geometric Topology +1310.1643 Group Theory +1310.4372 Computational Geometry +1310.5173 Analysis of PDEs +1310.8081 +1311.3791 High Energy Astrophysical Phenomena +1311.3914 Number Theory +1311.4728 Data Structures and Algorithms +1311.7151 Statistical Mechanics +1312.1039 Functional Analysis +1312.1726 Statistical Mechanics +1312.1990 +1312.3924 Symplectic Geometry +1312.7455 +1402.1688 Theory +1402.2997 Statistics Theory +1402.3626 +1402.5799 Quantum Gases +1402.6502 Mesoscale and Nanoscale Physics +1403.0140 Numerical Analysis +1403.1612 Earth and Planetary Astrophysics +1403.2342 Probability +1403.2526 Cell Behavior +1403.4306 Phenomenology +1403.4611 Superconductivity +1403.5611 Instrumentation and Methods for Astrophysics +1403.6915 +1404.1027 Statistical Mechanics +1404.7112 Cosmology and Nongalactic Astrophysics +1404.7598 Probability +1405.0657 Numerical Analysis +1405.3243 Phenomenology +1405.3632 Phenomenology +1405.3991 Earth and Planetary Astrophysics +1405.4020 Superconductivity +1405.4321 Pattern Formation and Solitons +1405.5044 Probability +1405.5810 Mesoscale and Nanoscale Physics +1406.0924 Computer Vision and Pattern Recognition +1406.2649 Analysis of PDEs +1406.6022 Materials Science +1406.6699 Algebraic Geometry +1406.7069 +1407.1904 +1407.1954 History and Overview +1407.2722 Number Theory +1407.3255 High Energy Astrophysical Phenomena +1407.4419 +1407.6490 Optimization and Control +1407.7362 Statistical Mechanics +1407.7822 High Energy Astrophysical Phenomena +1408.0259 Information Theory +1408.0740 +1408.1472 Experiment +1408.1845 Plasma Physics +1408.3306 Complex Variables +1408.3612 Materials Science +1408.4109 Geometric Topology +1408.5373 Experiment +1408.6257 Computer Vision and Pattern Recognition +1409.0274 Representation Theory +1409.0290 +1409.1710 Theory +1409.2047 Neurons and Cognition +1409.2995 Phenomenology +1409.4373 Accelerator Physics +1409.4982 Mesoscale and Nanoscale Physics +1409.6321 Cosmology and Nongalactic Astrophysics +1409.6978 +1409.7769 +1410.0249 Economics +1410.2057 Phenomenology +1410.2111 Materials Science +1410.3374 Materials Science +1410.4046 Plasma Physics +1410.5243 Theory +1410.5405 Superconductivity +1410.8724 Materials Science +1411.0150 Solar and Stellar Astrophysics +1411.1946 Strongly Correlated Electrons +1411.3194 Number Theory +1411.3779 Atomic Physics +1411.3872 Materials Science +1411.4303 Superconductivity +1411.4468 Phenomenology +1411.4549 Theory +1411.5042 Phenomenology +1411.5232 Complex Variables +1411.5611 Formal Languages and Automata Theory +1411.7395 Rings and Algebras +1411.7942 Computation and Language +1412.0803 Solar and Stellar Astrophysics +1412.0993 Classical Analysis and ODEs +1412.1076 Experiment +1412.1860 Differential Geometry +1412.2050 High Energy Astrophysical Phenomena +1412.3198 Category Theory +1412.3254 Combinatorics +1412.3258 Number Theory +1412.3286 +1412.3419 Metric Geometry +1412.3445 Distributed, Parallel, and Cluster Computing +1412.3726 Software Engineering +1412.3738 Mesoscale and Nanoscale Physics +1412.3782 Classical Analysis and ODEs +1412.3801 Medical Physics +1412.3802 Artificial Intelligence +1412.3803 Chaotic Dynamics +1412.3805 Phenomenology +1412.3810 Statistical Mechanics +1412.3812 Theory +1412.3814 Materials Science +1412.3818 Algebraic Geometry +1412.3821 Superconductivity +1412.3824 Quantum Algebra +1412.3825 Metric Geometry +1412.3832 Phenomenology +1412.3833 Combinatorics +1412.3835 High Energy Astrophysical Phenomena +1412.3837 +1412.3842 Logic +1412.3846 Exactly Solvable and Integrable Systems +1412.3853 Astrophysics of Galaxies +1412.3854 Cosmology and Nongalactic Astrophysics +1412.3855 Combinatorics +1412.3861 Systems and Control +1412.3862 Astrophysics of Galaxies +1412.3868 Optimization and Control +1412.3869 Databases +1412.3870 Instrumentation and Methods for Astrophysics +1412.3875 Materials Science +1412.3877 Quantum Gases +1412.3879 Representation Theory +1412.3880 Theory +1412.3882 Combinatorics +1412.3885 Social and Information Networks +1412.3886 High Energy Astrophysical Phenomena +1412.3891 Representation Theory +1412.3892 Analysis of PDEs +1412.3896 Superconductivity +1412.3898 Information Retrieval +1412.3900 +1412.3901 Exactly Solvable and Integrable Systems +1412.3902 Probability +1412.3906 Distributed, Parallel, and Cluster Computing +1412.3908 Artificial Intelligence +1412.3910 Social and Information Networks +1412.3912 Group Theory +1412.3913 Optimization and Control +1412.3914 Computer Vision and Pattern Recognition +1412.3915 Chemical Physics +1412.3919 Learning +1412.3920 Chemical Physics +1412.3925 Neurons and Cognition +1412.3936 Number Theory +1412.3939 Theory +1412.3941 High Energy Astrophysical Phenomena +1412.3942 Classical Physics +1412.3943 Astrophysics of Galaxies +1412.3945 Combinatorics +1412.3947 Software Engineering +1412.3949 Computer Vision and Pattern Recognition +1412.3951 Numerical Analysis +1412.3953 Phenomenology +1412.3956 Atomic and Molecular Clusters +1412.3958 Computer Vision and Pattern Recognition +1412.3959 Probability +1412.3961 Superconductivity +1412.3962 Commutative Algebra +1412.3974 Group Theory +1412.3976 Data Structures and Algorithms +1412.3980 Probability +1412.3983 Geometric Topology +1412.3984 Computational Geometry +1412.3986 High Energy Astrophysical Phenomena +1412.3987 Computational Geometry +1412.3992 Quantum Gases +1412.3994 Mesoscale and Nanoscale Physics +1412.3995 Superconductivity +1412.4000 +1412.4001 +1412.4008 Instrumentation and Detectors +1412.4015 General Physics +1412.4017 General Physics +1412.4018 General Physics +1412.4019 Materials Science +1412.4023 Analysis of PDEs +1412.4025 General Physics +1412.4026 Analysis of PDEs +1412.4031 Instrumentation and Methods for Astrophysics +1412.4034 Genomics +1412.4037 +1412.4039 Multiagent Systems +1412.4040 Quantum Gases +1412.4041 K-Theory and Homology +1412.4042 Physics and Society +1412.4047 Experiment +1412.4049 +1412.4054 Distributed, Parallel, and Cluster Computing +1412.4057 Analysis of PDEs +1412.4058 Number Theory +1412.4060 Experiment +1412.4062 Data Structures and Algorithms +1412.4065 Mesoscale and Nanoscale Physics +1412.4072 +1412.4082 Algebraic Topology +1412.4087 Materials Science +1412.4094 History and Philosophy of Physics +1412.4099 Differential Geometry +1412.4100 Combinatorics +1412.4102 Computer Vision and Pattern Recognition +1412.4103 Geometric Topology +1412.4107 Solar and Stellar Astrophysics +astro-ph/0405466 +astro-ph/0405491 +gr-qc/0512112 +hep-th/9311018 Theory +math/0311054 Complex Variables +math/0401165 Complex Variables +0704.1384 Algebraic Geometry +0712.2504 Other Condensed Matter +0812.2567 Computer Science and Game Theory +0904.0465 Analysis of PDEs +0906.0279 General Physics +1010.3904 Algebraic Geometry +1010.4151 Differential Geometry +1010.4514 Differential Geometry +1102.4818 Probability +1103.2206 Quantitative Methods +1110.6317 Optimization and Control +1111.4269 Classical Analysis and ODEs +1111.5075 Classical Analysis and ODEs +1201.4057 Probability +1202.4327 Probability +1203.4138 Commutative Algebra +1204.6637 Chaotic Dynamics +1205.5624 Spectral Theory +1206.1424 Algebraic Geometry +1206.1500 Group Theory +1206.7079 +1207.1230 Artificial Intelligence +1208.2463 Quantum Algebra +1208.3061 Combinatorics +1209.1344 +1209.3645 +1209.3796 Metric Geometry +1210.1379 +1210.6344 +1211.3585 Exactly Solvable and Integrable Systems +1211.5413 Optics +1211.6647 Atomic Physics +1212.0446 Complex Variables +1212.3422 Differential Geometry +1212.4778 +1212.5416 Phenomenology +1301.2231 +1302.1107 Complex Variables +1302.2235 Functional Analysis +1303.1639 Exactly Solvable and Integrable Systems +1303.1795 Information Theory +1303.2280 Optimization and Control +1303.6485 Performance +1303.6916 Quantum Gases +1304.0472 General Topology +1304.0625 Classical Analysis and ODEs +1304.1646 Representation Theory +1304.4398 Theory +1305.0193 Optics +1305.0473 Optics +1305.5813 Analysis of PDEs +1305.6895 Mesoscale and Nanoscale Physics +1306.0494 Analysis of PDEs +1306.3950 Analysis of PDEs +1306.4439 +1306.4570 Differential Geometry +1306.4827 Combinatorics +1306.5427 Algebraic Geometry +1307.2808 Data Structures and Algorithms +1307.3630 Networking and Internet Architecture +1307.4176 Mesoscale and Nanoscale Physics +1307.4309 +1307.4443 +1307.5190 Mesoscale and Nanoscale Physics +1307.8148 Cosmology and Nongalactic Astrophysics +1307.8372 Solar and Stellar Astrophysics +1308.0652 Risk Management +1308.1203 Phenomenology +1308.2695 Theory +1308.5596 Phenomenology +1308.5707 Strongly Correlated Electrons +1308.6790 Commutative Algebra +1309.2098 Theory +1309.2189 Theory +1309.3956 +1309.4757 +1309.4877 Theory +1309.4925 Theory +1309.6751 Fluid Dynamics +1310.0220 Statistical Mechanics +1310.0751 +1310.0757 Information Theory +1310.2021 Phenomenology +1310.2831 Algebraic Topology +1310.4384 Statistical Mechanics +1310.4979 Strongly Correlated Electrons +1310.6902 Mesoscale and Nanoscale Physics +1310.8020 +1311.1250 +1311.1411 Information Theory +1311.5673 +1311.6294 Theory +1311.6634 Quantum Gases +1311.7578 Theory +1311.7667 Experiment +1312.0205 +1312.0458 Space Physics +1312.1343 Superconductivity +1312.1347 Superconductivity +1312.1383 Dynamical Systems +1312.2639 Strongly Correlated Electrons +1312.2836 Mesoscale and Nanoscale Physics +1312.5524 Combinatorics +1312.7136 Complex Variables +1312.7416 Phenomenology +1401.1111 Superconductivity +1401.1272 Rings and Algebras +1401.2896 +1401.3597 Number Theory +1401.3915 Machine Learning +1401.4237 Information Theory +1401.4532 Information Theory +1401.4706 +1401.5243 Phenomenology +1401.5676 Information Theory +1401.5910 Logic in Computer Science +1401.6004 Quantitative Methods +1401.6119 Experiment +1401.6170 Computers and Society +1401.6175 Cosmology and Nongalactic Astrophysics +1401.6181 Earth and Planetary Astrophysics +1401.6188 Optimization and Control +1401.6189 Computational Complexity +1401.6193 Mesoscale and Nanoscale Physics +1401.6194 Mesoscale and Nanoscale Physics +1401.6196 Computer Vision and Pattern Recognition +1401.6200 Number Theory +1401.6203 Group Theory +1401.6206 Combinatorics +1401.6207 Neurons and Cognition +1401.6210 Optimization and Control +1401.6216 Commutative Algebra +1401.6218 Fluid Dynamics +1401.6220 Systems and Control +1401.6221 Analysis of PDEs +1401.6224 Computation and Language +1401.6226 Cryptography and Security +1401.6227 Programming Languages +1401.6236 Data Structures and Algorithms +1401.6238 Numerical Analysis +1401.6239 Solar and Stellar Astrophysics +1401.6240 Learning +1401.6242 Theory +1401.6244 Computers and Society +1401.6249 Logic in Computer Science +1401.6250 Cosmology and Nongalactic Astrophysics +1401.6253 General Physics +1401.6256 Differential Geometry +1401.6263 Symplectic Geometry +1401.6265 +1401.6267 Distributed, Parallel, and Cluster Computing +1401.6268 Group Theory +1401.6272 Differential Geometry +1401.6273 Combinatorics +1401.6274 Analysis of PDEs +1401.6275 Information Theory +1401.6276 Machine Learning +1401.6278 Analysis of PDEs +1401.6280 +1401.6281 +1401.6285 History and Overview +1401.6289 Lattice +1401.6290 Cryptography and Security +1401.6300 Plasma Physics +1401.6307 Computational Complexity +1401.6311 Lattice +1401.6313 +1401.6316 Spectral Theory +1401.6320 Classical Analysis and ODEs +1401.6325 Logic in Computer Science +1401.6326 Analysis of PDEs +1401.6327 Numerical Analysis +1401.6334 Instrumentation and Detectors +1401.6336 Information Theory +1401.6337 Molecular Networks +1401.6341 Metric Geometry +1401.6348 Computers and Society +1401.6349 Probability +1401.6357 Classical Analysis and ODEs +1401.6360 Databases +1401.6361 Multimedia +1401.6365 Computers and Society +1401.6370 Hardware Architecture +1401.6372 Instrumentation and Methods for Astrophysics +1401.6373 Analysis of PDEs +1401.6374 Analysis of PDEs +1401.6375 Hardware Architecture +1401.6377 Chaotic Dynamics +1401.6378 Astrophysics of Galaxies +1401.6380 Information Theory +1401.6383 Probability +1401.6385 Data Structures and Algorithms +1401.6387 Optimization and Control +1401.6389 Computation +1401.6391 Earth and Planetary Astrophysics +1401.6392 Combinatorics +1401.6395 Differential Geometry +1401.6398 Complex Variables +1401.6403 Materials Science +1401.6404 Social and Information Networks +1401.6405 Experiment +1401.6407 Materials Science +1401.6410 Information Theory +1401.6411 Phenomenology +1401.6419 Analysis of PDEs +1401.6420 Social and Information Networks +1401.6421 Learning +1401.6422 Computation and Language +1401.6424 Learning +1401.6425 Statistical Mechanics +1401.6426 Theory +1401.6427 Learning +1401.6428 Data Structures and Algorithms +1401.6429 Differential Geometry +1401.6430 Other Quantitative Biology +1401.6433 Methodology +1401.6439 Number Theory +1401.6443 Analysis of PDEs +1401.6448 Instrumentation and Methods for Astrophysics +hep-ph/0409007 Phenomenology +0812.4944 +0902.2524 Classical Analysis and ODEs +1004.1672 Data Structures and Algorithms +1102.1516 Algebraic Topology +1103.0203 Algebraic Geometry +1109.1488 Physics and Society +1110.1364 Statistics Theory +1201.0035 Systems and Control +1201.0555 Differential Geometry +1201.2130 Representation Theory +1203.4869 Algebraic Geometry +1203.5198 Dynamical Systems +1204.4998 Analysis of PDEs +1205.4150 Analysis of PDEs +1205.4480 Classical Analysis and ODEs +1205.4661 Superconductivity +1206.0956 Information Theory +1207.1142 Metric Geometry +1207.5265 Adaptation and Self-Organizing Systems +1209.6291 General Physics +1211.4763 Applications +1212.1271 Theory +1212.5873 Superconductivity +1301.2694 Genomics +1301.4716 General Physics +1301.4804 Statistics Theory +1302.0804 Differential Geometry +1303.1582 Classical Analysis and ODEs +1303.2950 Portfolio Management +1304.3927 Number Theory +1304.5219 Functional Analysis +1304.6258 Optimization and Control +1305.2275 Networking and Internet Architecture +1305.2558 Optics +1305.3421 +1305.6714 +1305.7481 Strongly Correlated Electrons +1306.1515 Algebraic Geometry +1306.3861 Phenomenology +1306.5325 Functional Analysis +1306.6554 +1306.6641 +1307.0742 Methodology +1307.2206 Phenomenology +1307.2392 Analysis of PDEs +1307.3161 +1307.3928 Combinatorics +1309.0324 Number Theory +1309.0547 Genomics +1309.0595 Probability +1309.1827 Cosmology and Nongalactic Astrophysics +1309.2852 Populations and Evolution +1309.4526 Theory +1310.2229 Representation Theory +1310.3257 Algebraic Geometry +1310.3755 Cosmology and Nongalactic Astrophysics +1310.4193 +1310.4607 Number Theory +1310.7119 Materials Science +1311.0679 +1311.0771 Astrophysics of Galaxies +1311.5625 Methodology +1311.6730 Cosmology and Nongalactic Astrophysics +1311.6805 Materials Science +1312.1030 Geometric Topology +1312.3529 Cosmology and Nongalactic Astrophysics +1312.5518 Rings and Algebras +1312.5954 Statistical Mechanics +1312.6902 Geometric Topology +1312.7527 General Topology +1312.7620 Accelerator Physics +1401.1202 Astrophysics of Galaxies +1401.2018 Social and Information Networks +1401.2117 Cosmology and Nongalactic Astrophysics +1401.4036 Differential Geometry +1401.4124 Phenomenology +1401.5267 +1401.5842 Programming Languages +1401.5845 +1401.6414 Quantum Gases +1401.7441 Materials Science +1401.7870 Statistical Mechanics +1402.0072 Operator Algebras +1402.0263 Mesoscale and Nanoscale Physics +1402.0975 Phenomenology +1402.1297 Theory +1402.1350 Cosmology and Nongalactic Astrophysics +1402.2225 Mesoscale and Nanoscale Physics +1402.2239 Experiment +1402.2673 Computer Vision and Pattern Recognition +1402.3397 Quantum Gases +1402.3608 Materials Science +1402.4219 High Energy Astrophysical Phenomena +1402.5099 Theory +1402.5970 Instrumentation and Methods for Astrophysics +1402.7046 Group Theory +1403.1422 Theory +1403.1587 Solar and Stellar Astrophysics +1403.3782 Astrophysics of Galaxies +1403.4578 Phenomenology +1403.5050 Rings and Algebras +1403.5316 High Energy Astrophysical Phenomena +1403.6128 Astrophysics of Galaxies +1403.7359 +1403.7833 +1403.8099 Astrophysics of Galaxies +1404.0359 Digital Libraries +1404.1530 Data Structures and Algorithms +1404.1994 Theory +1404.2217 Astrophysics of Galaxies +1404.2284 +1404.2446 Solar and Stellar Astrophysics +1404.2617 Solar and Stellar Astrophysics +1404.2845 Instrumentation and Methods for Astrophysics +1404.2991 Strongly Correlated Electrons +1404.3587 Instrumentation and Methods for Astrophysics +1404.3693 Mesoscale and Nanoscale Physics +1404.4051 Solar and Stellar Astrophysics +1404.4359 Solar and Stellar Astrophysics +1404.4683 Astrophysics of Galaxies +1404.4710 Mesoscale and Nanoscale Physics +1404.4978 Logic +1404.5131 Theory +1404.5636 Cosmology and Nongalactic Astrophysics +1404.5847 Earth and Planetary Astrophysics +1404.5961 Astrophysics of Galaxies +1404.6092 High Energy Astrophysical Phenomena +1404.6094 Solar and Stellar Astrophysics +1404.6952 Solar and Stellar Astrophysics +1405.2118 Optics +1405.2667 Metric Geometry +1405.3710 Artificial Intelligence +1405.4138 Artificial Intelligence +1405.4259 Phenomenology +1405.6447 Applications +1405.7716 Neural and Evolutionary Computing +1406.0085 Systems and Control +1406.0403 Other Computer Science +1406.0497 +1406.0498 Applications +1406.0500 Mesoscale and Nanoscale Physics +1406.0525 Phenomenology +1406.0532 Human-Computer Interaction +1406.0533 Optimization and Control +1406.0537 Astrophysics of Galaxies +1406.0539 +1406.0541 Statistics Theory +1406.0545 +1406.0547 Probability +1406.0554 Systems and Control +1406.0559 Instrumentation and Methods for Astrophysics +1406.0561 Accelerator Physics +1406.0562 Materials Science +1406.0564 Geometric Topology +1406.0565 Optics +1406.0567 Phenomenology +1406.0573 Number Theory +1406.0574 Social and Information Networks +1406.0576 Computer Science and Game Theory +1406.0582 Programming Languages +1406.0587 Accelerator Physics +1406.0590 Rings and Algebras +1406.0598 Medical Physics +1406.0599 Symbolic Computation +1406.0600 General Physics +1406.0602 Materials Science +1406.0604 Number Theory +1406.0606 Combinatorics +1406.0615 Astrophysics of Galaxies +1406.0622 Instrumentation and Methods for Astrophysics +1406.0623 Systems and Control +1406.0626 +1406.0627 Materials Science +1406.0629 Pattern Formation and Solitons +1406.0630 Mesoscale and Nanoscale Physics +1406.0631 Classical Physics +1406.0636 Operator Algebras +1406.0637 Accelerator Physics +1406.0641 Distributed, Parallel, and Cluster Computing +1406.0642 Dynamical Systems +1406.0646 Number Theory +1406.0651 Algebraic Topology +1406.0656 Plasma Physics +1406.0663 Statistical Mechanics +1406.0675 Algebraic Geometry +1406.0679 Mesoscale and Nanoscale Physics +1406.0680 Computer Vision and Pattern Recognition +1406.0683 Materials Science +1406.0688 Information Theory +1406.0689 Classical Analysis and ODEs +1406.0692 General Topology +1406.0693 Analysis of PDEs +1406.0695 Earth and Planetary Astrophysics +1406.0696 General Topology +1406.0699 Astrophysics of Galaxies +1406.0700 Plasma Physics +1406.0703 Superconductivity +1406.0705 Optimization and Control +1406.0707 Optimization and Control +1406.0716 Combinatorics +1406.0717 Optimization and Control +1406.0720 Exactly Solvable and Integrable Systems +1406.0724 Optimization and Control +1406.0725 Earth and Planetary Astrophysics +1406.0732 +1406.0735 High Energy Astrophysical Phenomena +1406.0736 High Energy Astrophysical Phenomena +1406.0742 Analysis of PDEs +1406.0745 Probability +1406.0747 Differential Geometry +1406.0752 Probability +1406.0753 +1406.0757 Combinatorics +1406.0758 History and Overview +1406.0762 Classical Analysis and ODEs +1406.0767 Information Theory +1406.0771 Operator Algebras +1406.0774 Logic in Computer Science +1406.0775 Networking and Internet Architecture +1406.0777 Statistical Mechanics +1406.0780 Materials Science +1406.0783 Mesoscale and Nanoscale Physics +1406.0786 Representation Theory +1406.0787 Fluid Dynamics +1406.0793 Dynamical Systems +1406.0794 Dynamical Systems +1406.0798 +1406.0801 Methodology +1406.0805 Differential Geometry +1406.0809 Materials Science +1406.0813 Metric Geometry +1406.0814 Materials Science +1406.0815 Category Theory +1406.0817 Functional Analysis +1406.0821 Numerical Analysis +1406.0823 Combinatorics +1406.0824 Statistical Finance +1406.0829 Phenomenology +1406.0830 +math/0504125 Differential Geometry +0901.1893 Other Condensed Matter +1011.0894 Representation Theory +1109.5628 Commutative Algebra +1110.3782 Dynamical Systems +1110.5390 Functional Analysis +1111.6083 +1112.5406 Theory +1203.5290 Functional Analysis +1204.0448 Networking and Internet Architecture +1205.4977 Cryptography and Security +1207.0610 Commutative Algebra +1207.2547 Commutative Algebra +1208.0511 Dynamical Systems +1208.0672 Superconductivity +1208.0930 Number Theory +1208.5408 Probability +1210.4356 Differential Geometry +1211.6421 Phenomenology +1211.6508 Combinatorics +1212.1429 Astrophysics of Galaxies +1212.3956 Algebraic Geometry +1212.5736 Representation Theory +1301.2902 +1301.4237 Representation Theory +1301.6544 Mesoscale and Nanoscale Physics +1302.5320 Superconductivity +1302.6551 Probability +1303.5039 Logic in Computer Science +1303.5236 Instrumentation and Detectors +1303.7139 +1304.3352 Number Theory +1305.6713 Mesoscale and Nanoscale Physics +1305.6852 Strongly Correlated Electrons +1305.7464 Commutative Algebra +1306.1983 Algebraic Geometry +1306.2007 Algebraic Geometry +1306.2752 Atmospheric and Oceanic Physics +1306.3069 Atomic Physics +1306.3158 Statistical Mechanics +1306.3171 Methodology +1306.4340 Algebraic Geometry +1306.4496 Phenomenology +1306.5926 Combinatorics +1306.6683 +1307.0680 Computation +1307.1180 Quantum Gases +1307.1419 +1307.1801 Algebraic Geometry +1307.3704 Lattice +1307.3929 Differential Geometry +1307.4003 Data Analysis, Statistics and Probability +1307.5035 Solar and Stellar Astrophysics +1307.5719 Number Theory +1307.5868 Phenomenology +1307.6646 Physics and Society +1307.7658 Neurons and Cognition +1307.8108 Commutative Algebra +1308.0227 Artificial Intelligence +1308.0782 Representation Theory +1308.1091 Quantum Gases +1308.1291 Phenomenology +1308.1627 Soft Condensed Matter +1308.2222 Strongly Correlated Electrons +1308.2730 Operator Algebras +1308.2760 Experiment +1308.4026 Analysis of PDEs +1308.5051 +1309.0798 Soft Condensed Matter +1309.1533 Representation Theory +1309.3892 Combinatorics +1309.5599 Number Theory +1309.6105 Physics and Society +1309.7096 Operator Algebras +1309.7235 Classical Analysis and ODEs +1309.7672 Theory +1310.0827 Theory +1310.1251 General Physics +1310.2576 +1310.3120 +1310.3188 +1310.4677 Mesoscale and Nanoscale Physics +1310.6236 Classical Analysis and ODEs +1310.6755 +1310.8307 Analysis of PDEs +1311.0389 +1311.0823 Superconductivity +1311.0967 Strongly Correlated Electrons +1311.1647 Probability +1311.3728 Data Structures and Algorithms +1311.5563 Cosmology and Nongalactic Astrophysics +1311.5935 Discrete Mathematics +1311.6641 Phenomenology +1311.6786 +1312.0006 Cosmology and Nongalactic Astrophysics +1312.3006 Theory +1312.3112 Populations and Evolution +1312.5784 Quantum Gases +1312.6142 Mesoscale and Nanoscale Physics +1312.6223 Superconductivity +1312.6493 Data Structures and Algorithms +1312.7287 +1401.0025 Theory +1401.0301 General Finance +1401.0502 Materials Science +1401.2907 Numerical Analysis +1401.2908 Numerical Analysis +1401.4542 Probability +1401.4823 Accelerator Physics +1401.5303 Statistical Mechanics +1402.0369 Statistics Theory +1402.2679 Machine Learning +1402.2816 Algebraic Geometry +1402.3669 Cosmology and Nongalactic Astrophysics +1402.4579 Neurons and Cognition +1402.6857 Superconductivity +1403.1328 Solar and Stellar Astrophysics +1403.1423 Fluid Dynamics +1403.1463 Earth and Planetary Astrophysics +1403.1972 Superconductivity +1403.1999 Combinatorics +1403.2861 +1403.2896 Statistical Mechanics +1403.3537 Theory +1403.5928 Information Theory +1403.6191 Exactly Solvable and Integrable Systems +1403.7084 Machine Learning +1403.7332 Strongly Correlated Electrons +1403.7775 Mesoscale and Nanoscale Physics +1403.8140 Symplectic Geometry +1403.8141 Symplectic Geometry +1403.8150 Cryptography and Security +1404.0091 Information Retrieval +1404.0100 Statistical Mechanics +1404.0257 +1404.0334 Computer Vision and Pattern Recognition +1404.0386 Functional Analysis +1404.0391 Solar and Stellar Astrophysics +1404.0394 Molecular Networks +1404.0396 Statistics Theory +1404.0402 Astrophysics of Galaxies +1404.0404 Information Theory +1404.0411 Statistical Mechanics +1404.0413 Optimization and Control +1404.0414 Computer Science and Game Theory +1404.0416 Differential Geometry +1404.0420 Representation Theory +1404.0426 Optics +1404.0429 Number Theory +1404.0435 Chemical Physics +1404.0436 Software Engineering +1404.0441 Optics +1404.0444 Molecular Networks +1404.0445 Differential Geometry +1404.0446 Phenomenology +1404.0449 Biomolecules +1404.0451 Statistical Mechanics +1404.0453 Computational Engineering, Finance, and Science +1404.0454 Phenomenology +1404.0457 +1404.0458 Differential Geometry +1404.0459 Networking and Internet Architecture +1404.0460 Statistical Mechanics +1404.0467 Medical Physics +1404.0471 Information Theory +1404.0476 +1404.0484 Combinatorics +1404.0488 Dynamical Systems +1404.0492 Materials Science +1404.0497 Numerical Analysis +1404.0498 Neurons and Cognition +1404.0500 Functional Analysis +1404.0501 Strongly Correlated Electrons +1404.0503 Theory +1404.0504 Differential Geometry +1404.0506 +1404.0509 Plasma Physics +1404.0513 Solar and Stellar Astrophysics +1404.0514 Accelerator Physics +1404.0515 Accelerator Physics +1404.0516 Accelerator Physics +1404.0517 Superconductivity +1404.0528 Combinatorics +1404.0530 Social and Information Networks +1404.0533 Computer Vision and Pattern Recognition +1404.0534 Mesoscale and Nanoscale Physics +1404.0536 Disordered Systems and Neural Networks +1404.0539 Biomolecules +1404.0540 Artificial Intelligence +1404.0542 Computer Science and Game Theory +1404.0543 Rings and Algebras +1404.0544 +1404.0551 Probability +1404.0552 +1404.0553 Biological Physics +1404.0554 Neural and Evolutionary Computing +1404.0555 High Energy Astrophysical Phenomena +1404.0557 Quantum Gases +1404.0562 +1404.0563 Probability +1404.0564 Data Structures and Algorithms +1404.0566 Computer Vision and Pattern Recognition +1404.0572 Soft Condensed Matter +1404.0573 Dynamical Systems +1404.0580 Strongly Correlated Electrons +1404.0585 Statistical Mechanics +1404.0588 Discrete Mathematics +1404.0590 Dynamical Systems +1404.0594 Quantitative Methods +1404.0595 Dynamical Systems +1404.0598 Representation Theory +1404.0606 Logic in Computer Science +1404.0607 Emerging Technologies +1404.0608 Dynamical Systems +1404.0612 Dynamical Systems +1404.0613 Dynamical Systems +1404.0615 Emerging Technologies +1404.0627 Computer Vision and Pattern Recognition +1404.0628 Category Theory +1404.0629 Group Theory +1404.0630 Populations and Evolution +1404.0631 Cosmology and Nongalactic Astrophysics +1404.0637 Superconductivity +1404.0639 Algebraic Geometry +1404.0640 Artificial Intelligence +1404.0642 Analysis of PDEs +1404.0643 Analysis of PDEs +1404.0649 Learning +1404.0654 Computational Complexity +1404.0655 Neurons and Cognition +1404.0657 Operator Algebras +1404.0661 Analysis of PDEs +1404.0662 Social and Information Networks +1404.0664 Populations and Evolution +1404.0666 Algebraic Topology +1404.0668 +hep-ph/9902269 Phenomenology +math-ph/0610037 +nucl-th/0605067 +0707.3515 Theory +0709.0746 Computational Complexity +1407.6747 +physics/0701125 History and Philosophy of Physics +0903.5276 +0903.5333 Spectral Theory +0908.0607 Materials Science +1010.5170 Solar and Stellar Astrophysics +1105.2899 Multimedia +1105.5267 +1112.0430 Probability +1201.3203 Differential Geometry +1204.3216 Group Theory +1205.3234 Machine Learning +1206.2962 Group Theory +1207.0856 Cosmology and Nongalactic Astrophysics +1207.5813 Data Structures and Algorithms +1209.4737 Symplectic Geometry +1209.5206 Analysis of PDEs +1210.0301 Differential Geometry +1211.0308 +1211.0798 Theory +1211.1019 Cosmology and Nongalactic Astrophysics +1211.2677 +1211.2684 +1211.5354 Cosmology and Nongalactic Astrophysics +1212.1710 Adaptation and Self-Organizing Systems +1301.1506 Probability +1301.2404 Numerical Analysis +1301.2423 Astrophysics of Galaxies +1301.3954 Materials Science +1301.4870 Symbolic Computation +1301.6384 Optics +1302.1060 Phenomenology +1302.2611 Mesoscale and Nanoscale Physics +1302.4039 +1302.4261 +1303.0266 Algebraic Geometry +1303.4828 Theory +1303.5145 Machine Learning +1304.1682 Computer Science and Game Theory +1304.3483 Symbolic Computation +1304.3521 Biological Physics +1304.4345 Lattice +1304.5611 Numerical Analysis +1304.6675 +1304.6879 +1305.4092 Differential Geometry +1305.4283 Methodology +1306.0339 Theory +1306.0473 Combinatorics +1306.3179 Superconductivity +1306.5744 Cosmology and Nongalactic Astrophysics +1306.6544 Physics Education +1307.0705 Phenomenology +1307.1247 Theory +1307.2768 Theory +1307.2890 High Energy Astrophysical Phenomena +1307.2942 Strongly Correlated Electrons +1307.3120 Soft Condensed Matter +1307.4712 Combinatorics +1307.5370 +1307.6993 +1307.7252 Information Theory +1308.1927 Soft Condensed Matter +1308.3169 Mesoscale and Nanoscale Physics +1308.4489 Solar and Stellar Astrophysics +1308.5413 +1309.0206 Statistical Mechanics +1309.0305 Statistical Mechanics +1309.0579 Methodology +1309.2857 Probability +1309.2858 Physics and Society +1309.4283 Neurons and Cognition +1309.4963 Statistical Mechanics +1309.5168 Strongly Correlated Electrons +1309.5170 Numerical Analysis +1309.5756 +1309.6478 Dynamical Systems +1310.1162 Networking and Internet Architecture +1310.2113 Theory +1310.2256 Phenomenology +1310.2474 Software Engineering +1310.5399 Statistical Mechanics +1310.6065 Theory +1310.6994 Phenomenology +1311.1496 Quantitative Methods +1311.2664 Phenomenology +1311.3210 Strongly Correlated Electrons +1311.6396 Learning +1312.0199 Fluid Dynamics +1312.0589 Lattice +1312.2394 Mesoscale and Nanoscale Physics +1312.2449 Solar and Stellar Astrophysics +1312.4823 +1312.5030 Algebraic Topology +1312.7084 +1401.2153 Artificial Intelligence +1401.2693 Information Theory +1401.3419 Phenomenology +1401.3619 Combinatorics +1401.4506 Information Theory +1401.5503 Atomic Physics +1401.5535 Computer Vision and Pattern Recognition +1401.5613 Statistics Theory +1401.5789 Neural and Evolutionary Computing +1401.5790 +1401.5791 Computational Engineering, Finance, and Science +1401.5808 Neural and Evolutionary Computing +1401.5813 Artificial Intelligence +1401.5814 Information Retrieval +1401.5817 Statistics Theory +1401.5823 Quantitative Methods +1401.5825 Instrumentation and Detectors +1401.5830 Software Engineering +1401.5835 Strongly Correlated Electrons +1401.5848 Artificial Intelligence +1401.5850 Logic in Computer Science +1401.5851 Computer Science and Game Theory +1401.5852 Artificial Intelligence +1401.5853 Artificial Intelligence +1401.5854 Artificial Intelligence +1401.5855 Computational Complexity +1401.5856 Artificial Intelligence +1401.5857 Artificial Intelligence +1401.5858 Artificial Intelligence +1401.5859 Artificial Intelligence +1401.5860 Artificial Intelligence +1401.5861 Artificial Intelligence +1401.5863 Multiagent Systems +1401.5864 High Energy Astrophysical Phenomena +1401.5866 Dynamical Systems +1401.5868 Combinatorics +1401.5869 Artificial Intelligence +1401.5871 Social and Information Networks +1401.5874 Information Theory +1401.5875 Number Theory +1401.5878 Software Engineering +1401.5879 Optics +1401.5881 Optimization and Control +1401.5882 Optimization and Control +1401.5884 Dynamical Systems +1401.5892 Functional Analysis +1401.5902 Materials Science +1401.5913 Group Theory +1401.5914 Quantum Gases +1401.5915 Numerical Analysis +1401.5916 +1401.5918 Instrumentation and Methods for Astrophysics +1401.5919 Information Theory +1401.5928 Materials Science +1401.5931 Applications +1401.5934 Information Theory +1401.5937 +1401.5939 Functional Analysis +1401.5941 Instrumentation and Methods for Astrophysics +1401.5946 General Topology +1401.5947 Representation Theory +1401.5950 Mesoscale and Nanoscale Physics +1401.5951 Formal Languages and Automata Theory +1401.5953 Logic in Computer Science +1401.5954 Statistical Mechanics +1401.5956 Optimization and Control +1401.5958 Number Theory +1401.5964 +1401.5965 Fluid Dynamics +1401.5972 Materials Science +1401.5973 Chaotic Dynamics +1401.5986 Digital Libraries +1401.5987 High Energy Astrophysical Phenomena +1401.5988 +1401.5995 Space Physics +1401.5998 +1401.6000 Data Structures and Algorithms +1401.6002 Applications +1401.6003 Instrumentation and Detectors +1401.6007 Earth and Planetary Astrophysics +1401.6008 Lattice +1401.6011 Numerical Analysis +1401.6014 Probability +1401.6015 Distributed, Parallel, and Cluster Computing +1401.6017 Dynamical Systems +1401.6019 Analysis of PDEs +1401.6022 Cryptography and Security +1401.6024 Machine Learning +1401.6026 Differential Geometry +1401.6034 Lattice +1401.6046 Instrumentation and Detectors +1401.6048 Artificial Intelligence +1401.6049 Artificial Intelligence +1401.6052 General Physics +1401.6053 Systems and Control +1401.6055 Probability +1401.6058 Social and Information Networks +1401.6074 Spectral Theory +1401.6075 Experiment +1401.6077 Experiment +1401.6081 Experiment +1401.6082 Information Theory +1401.6087 Cryptography and Security +1401.6092 Information Retrieval +1401.6097 Information Theory +1401.6098 Artificial Intelligence +1401.6100 Distributed, Parallel, and Cluster Computing +1401.6102 Computers and Society +1401.6106 Computers and Society +1401.6111 Atomic Physics +1401.6112 Computer Vision and Pattern Recognition +1401.6114 Experiment +1401.6115 Experiment +1401.6116 Experiment +1401.6117 Experiment +1401.6120 Cryptography and Security +1401.6121 Cryptography and Security +1401.6122 Computation and Language +1401.6123 Information Theory +1401.6125 Other Computer Science +1401.6126 Computer Vision and Pattern Recognition +1401.6127 Computer Vision and Pattern Recognition +1401.6129 Computer Vision and Pattern Recognition +1401.6130 Computers and Society +1401.6131 Computation and Language +1401.6132 Networking and Internet Architecture +1401.6134 Information Theory +1401.6135 Information Theory +1401.6145 Information Theory +1401.6146 Commutative Algebra +1401.6150 Number Theory +1401.6151 Representation Theory +1401.6153 Materials Science +1401.6156 Representation Theory +hep-ph/0406212 Phenomenology +math/0610777 Geometric Topology +0810.2895 Group Theory +0811.2948 +0812.4120 Representation Theory +0907.0095 Operator Algebras +0909.0642 +0912.3704 Atomic and Molecular Clusters +1001.3743 Operator Algebras +1003.5459 Discrete Mathematics +1009.5173 Quantitative Methods +1102.4961 Cosmology and Nongalactic Astrophysics +1105.5845 General Physics +1107.5637 Information Theory +1203.5448 Classical Analysis and ODEs +1204.1825 Analysis of PDEs +1204.3359 Analysis of PDEs +1204.3687 Methodology +1205.6051 Numerical Analysis +1206.2468 Geometric Topology +1207.2024 Analysis of PDEs +1207.2808 Operator Algebras +1208.6349 Numerical Analysis +1209.1761 Probability +1209.3704 Symplectic Geometry +1210.2009 Solar and Stellar Astrophysics +1210.5292 Information Theory +1210.6407 +1210.7718 Combinatorics +1211.1855 +1211.3830 +1211.4630 Solar and Stellar Astrophysics +1211.5905 Strongly Correlated Electrons +1212.0935 Computational Geometry +1212.0970 Numerical Analysis +1212.2801 Operator Algebras +1212.3084 Statistical Mechanics +1212.5325 Phenomenology +1212.6438 Strongly Correlated Electrons +1302.4415 Combinatorics +1302.5582 Lattice +1303.1166 Analysis of PDEs +1303.1445 Differential Geometry +1303.6923 Numerical Analysis +1304.3783 Combinatorics +1304.5839 Complex Variables +1304.7582 Group Theory +1305.0150 Chaotic Dynamics +1305.0999 Algebraic Geometry +1305.1238 Mesoscale and Nanoscale Physics +1305.1670 Earth and Planetary Astrophysics +1305.5563 Number Theory +1305.6763 Analysis of PDEs +1305.7199 Phenomenology +1306.5175 +1307.0044 Emerging Technologies +1307.0553 Dynamical Systems +1307.2116 +1307.5185 High Energy Astrophysical Phenomena +1308.2311 Strongly Correlated Electrons +1309.0374 Phenomenology +1309.1587 Disordered Systems and Neural Networks +1309.4045 Quantum Gases +1309.4588 Number Theory +1310.1502 Numerical Analysis +1310.2374 +1310.3020 Algebraic Geometry +1310.3858 Soft Condensed Matter +1310.5251 Information Theory +1310.8180 +1311.0811 Statistics Theory +1311.3698 +1311.5605 +1311.6569 Analysis of PDEs +1311.6575 +1311.6824 Optics +1311.7558 +1312.1133 Logic +1312.3682 +1312.4087 Statistics Theory +1312.4264 +1312.5419 Learning +1312.5909 Differential Geometry +1312.7100 Classical Analysis and ODEs +1401.1282 +1401.3053 Strongly Correlated Electrons +1401.3081 Materials Science +1401.3684 Numerical Analysis +1401.3742 Cosmology and Nongalactic Astrophysics +1401.3930 Algebraic Geometry +1401.5685 Statistical Mechanics +1401.5754 Soft Condensed Matter +1401.6489 Operator Algebras +1401.6675 Logic in Computer Science +1401.7340 Phenomenology +1402.1500 Artificial Intelligence +1402.2913 Phenomenology +1402.4898 Superconductivity +1402.5215 Mesoscale and Nanoscale Physics +1402.6259 Phenomenology +1402.6988 Soft Condensed Matter +1403.1091 Information Theory +1403.1276 Information Theory +1403.3934 Chemical Physics +1403.5495 Chemical Physics +1403.5576 Materials Science +1403.6188 Data Structures and Algorithms +1403.7317 Information Theory +1404.0152 Astrophysics of Galaxies +1404.1618 Combinatorics +1404.3180 +1404.3236 +1404.5202 +1404.5445 Differential Geometry +1404.7779 Probability +1405.1574 Digital Libraries +1405.1612 +1405.1734 Multiagent Systems +1405.2386 Information Retrieval +1405.2409 Logic in Computer Science +1405.2448 Phenomenology +1405.2473 +1405.2798 Learning +1405.2852 Logic in Computer Science +1405.2947 Optics +1405.2982 Information Theory +1405.2984 Information Theory +1405.2998 Software Engineering +1405.3188 Information Theory +1405.3261 Analysis of PDEs +1405.3382 Computer Vision and Pattern Recognition +1405.3400 Probability +1405.3456 Fluid Dynamics +1405.3487 Artificial Intelligence +1405.3622 Networking and Internet Architecture +1405.3648 Solar and Stellar Astrophysics +1405.3682 Complex Variables +1405.3683 Phenomenology +1405.3686 Combinatorics +1405.3687 Classical Analysis and ODEs +1405.3689 Methodology +1405.3693 +1405.3694 Programming Languages +1405.3697 Information Theory +1405.3706 Classical Analysis and ODEs +1405.3707 Classical Analysis and ODEs +1405.3709 Analysis of PDEs +1405.3712 Differential Geometry +1405.3721 Algebraic Geometry +1405.3722 Optics +1405.3723 Classical Analysis and ODEs +1405.3724 Software Engineering +1405.3726 Social and Information Networks +1405.3727 Computers and Society +1405.3729 Artificial Intelligence +1405.3734 Materials Science +1405.3735 Combinatorics +1405.3738 Machine Learning +1405.3739 Data Structures and Algorithms +1405.3742 Complex Variables +1405.3748 Representation Theory +1405.3753 Experiment +1405.3756 Phenomenology +1405.3758 Human-Computer Interaction +1405.3760 Cryptography and Security +1405.3763 Algebraic Geometry +1405.3764 Atomic Physics +1405.3767 Mathematical Finance +1405.3772 Computation and Language +1405.3773 +1405.3775 Information Theory +1405.3776 +1405.3777 Functional Analysis +1405.3778 Algebraic Geometry +1405.3779 +1405.3780 Combinatorics +1405.3783 Earth and Planetary Astrophysics +1405.3785 Phenomenology +1405.3786 Computation and Language +1405.3790 Artificial Intelligence +1405.3791 Programming Languages +1405.3793 Programming Languages +1405.3795 Programming Languages +1405.3800 Earth and Planetary Astrophysics +1405.3804 Materials Science +1405.3805 Computational Physics +1405.3806 Computational Geometry +1405.3816 Experiment +1405.3818 +1405.3819 Rings and Algebras +1405.3824 Artificial Intelligence +1405.3826 Artificial Intelligence +1405.3834 Cosmology and Nongalactic Astrophysics +1405.3836 Operator Algebras +1405.3840 Soft Condensed Matter +1405.3841 Phenomenology +1405.3843 Learning +1405.3844 Functional Analysis +1405.3849 Combinatorics +1405.3852 Molecular Networks +1405.3854 Solar and Stellar Astrophysics +1405.3855 Differential Geometry +1405.3856 Analysis of PDEs +1405.3859 Optics +1405.3861 Number Theory +1405.3862 Optics +1405.3863 Algebraic Geometry +1405.3866 Computer Vision and Pattern Recognition +1405.3869 Networking and Internet Architecture +1405.3870 Group Theory +1405.3874 Functional Analysis +1405.3875 Phenomenology +1405.3879 Experiment +1405.3880 Methodology +1405.3882 Number Theory +1405.3883 Programming Languages +1405.3884 Phenomenology +1405.3888 Differential Geometry +1405.3891 Dynamical Systems +1405.3894 Probability +1405.3895 Quantitative Methods +1405.3896 Artificial Intelligence +1405.3898 Superconductivity +1405.3902 Populations and Evolution +1405.3905 Statistical Mechanics +1405.3906 Logic in Computer Science +1405.3910 Probability +1405.3912 Cryptography and Security +1405.3914 Plasma Physics +1405.3917 Representation Theory +1405.3920 Methodology +1405.3921 K-Theory and Homology +1405.3922 Analysis of PDEs +1405.3925 Computation and Language +1405.3928 +1405.3929 Materials Science +1405.3931 Theory +1405.3938 +1405.3943 History and Overview +1405.3944 General Mathematics +1405.3946 Quantitative Methods +1405.3952 Machine Learning +1405.3955 Logic in Computer Science +1405.3956 Strongly Correlated Electrons +1405.3958 Subcellular Processes +1405.3968 Computational Physics +1405.3969 +1405.3973 +1405.3976 +1405.3977 Chemical Physics +1405.3978 Astrophysics of Galaxies +hep-ph/9306267 Phenomenology +math/0204107 Operator Algebras +math/0405276 Operator Algebras +quant-ph/0409032 +quant-ph/0702132 +0707.0097 Materials Science +0709.3050 Other Condensed Matter +0809.4508 +0811.4416 General Physics +0907.3860 Optics +0907.3986 Data Structures and Algorithms +0907.4951 Analysis of PDEs +0911.0391 Probability +1002.4493 Category Theory +1004.3484 Probability +1006.2580 Analysis of PDEs +1007.5039 Dynamical Systems +1010.5746 Analysis of PDEs +1011.3027 Probability +1101.1459 +1108.0944 Exactly Solvable and Integrable Systems +1108.2462 Information Theory +1111.6924 Operator Algebras +1201.3170 Tissues and Organs +1203.5168 Representation Theory +1203.5750 Exactly Solvable and Integrable Systems +1206.1036 Mesoscale and Nanoscale Physics +1206.6071 Tissues and Organs +1208.2993 Optics +1208.6075 Tissues and Organs +1209.3063 Optics +1209.3596 +1209.4436 Category Theory +1209.6055 Cosmology and Nongalactic Astrophysics +1209.6134 Algebraic Geometry +1210.0336 Operator Algebras +1210.1720 Atomic Physics +1212.1879 K-Theory and Homology +1212.3049 Operator Algebras +1301.0967 Numerical Analysis +1301.3600 Optimization and Control +1302.4418 K-Theory and Homology +1302.4488 Category Theory +1302.6374 Analysis of PDEs +1302.6405 Materials Science +1302.7038 +1303.1788 Applications +1303.5499 Statistical Mechanics +1303.6157 +1304.1220 Distributed, Parallel, and Cluster Computing +1305.3440 Lattice +1305.6809 Atomic and Molecular Clusters +1305.7429 Distributed, Parallel, and Cluster Computing +1306.0883 Number Theory +1306.3556 Phenomenology +1306.4417 Classical Physics +1306.6134 +1306.6838 Disordered Systems and Neural Networks +1307.1399 Strongly Correlated Electrons +1307.1403 Classical Analysis and ODEs +1307.1751 Systems and Control +1307.1757 +1307.3462 Functional Analysis +1307.3562 +1307.4106 Analysis of PDEs +1307.5287 Algebraic Geometry +1307.5571 Optimization and Control +1307.6322 Pricing of Securities +1307.7565 Theory +1308.2031 Operator Algebras +1308.5282 Operator Algebras +1308.5510 Atomic Physics +1308.5705 Phenomenology +1308.6828 Phenomenology +1309.0202 Lattice +1309.0876 +1309.1357 Astrophysics of Galaxies +1309.2198 Soft Condensed Matter +1309.5806 Statistical Finance +1309.5872 Cosmology and Nongalactic Astrophysics +1309.6284 Mesoscale and Nanoscale Physics +1309.6554 Disordered Systems and Neural Networks +1309.6620 +1309.6717 Optimization and Control +1309.7929 Chemical Physics +1310.0029 Cosmology and Nongalactic Astrophysics +1310.1303 Algebraic Geometry +1310.1843 Quantum Algebra +1310.3826 Phenomenology +1310.4158 Superconductivity +1310.4452 +1310.5458 Phenomenology +1310.5870 Mesoscale and Nanoscale Physics +1310.6762 Strongly Correlated Electrons +1310.6778 Machine Learning +1310.8131 Superconductivity +1310.8374 Networking and Internet Architecture +1310.8499 Learning +1311.0456 Information Theory +1311.1324 +1311.1704 Information Retrieval +1311.1958 Learning +1311.2453 Cosmology and Nongalactic Astrophysics +1311.2638 +1311.2792 Chaotic Dynamics +1311.3460 Dynamical Systems +1311.4361 Cosmology and Nongalactic Astrophysics +1311.4702 Analysis of PDEs +1311.6594 Artificial Intelligence +1311.6610 Superconductivity +1311.6944 Phenomenology +1311.6948 Physics and Society +1311.7083 Mesoscale and Nanoscale Physics +1312.0959 Cosmology and Nongalactic Astrophysics +1312.1203 Strongly Correlated Electrons +1312.2025 Earth and Planetary Astrophysics +1312.2953 High Energy Astrophysical Phenomena +1312.3097 Phenomenology +1312.3331 Phenomenology +1312.3402 Quantum Gases +1312.4046 Differential Geometry +1312.4999 Lattice +1312.6344 +1312.6348 Statistics Theory +1312.6735 Group Theory +1312.7067 Number Theory +1401.0939 +1401.1038 Disordered Systems and Neural Networks +1401.1241 Mesoscale and Nanoscale Physics +1401.2678 Methodology +1401.3168 Information Theory +1401.3323 Mesoscale and Nanoscale Physics +1401.3730 Materials Science +1401.3805 Phenomenology +1401.4120 Astrophysics of Galaxies +1401.4437 Astrophysics of Galaxies +1401.4440 +1401.5013 Earth and Planetary Astrophysics +1401.5309 Fluid Dynamics +1401.5872 +1401.6027 Mesoscale and Nanoscale Physics +1401.6353 Quantum Gases +1401.6501 Theory +1401.6611 Number Theory +1401.6751 Optics +1401.7738 Earth and Planetary Astrophysics +1401.8003 Geometric Topology +1402.0021 Astrophysics of Galaxies +1402.1173 Phenomenology +1402.1365 Phenomenology +1402.2124 Analysis of PDEs +1402.2161 Cosmology and Nongalactic Astrophysics +1402.2430 +1402.2446 Distributed, Parallel, and Cluster Computing +1402.2581 Chemical Physics +1402.2709 Cryptography and Security +1402.3098 Quantum Gases +1402.3690 Programming Languages +1402.3987 Soft Condensed Matter +1402.4250 Statistical Mechanics +1402.4691 Theory +1402.4851 Analysis of PDEs +1402.5317 Phenomenology +1402.6368 Strongly Correlated Electrons +1402.6646 Materials Science +1402.7039 Theory +1402.7304 Soft Condensed Matter +1403.0152 Materials Science +1403.0543 +1403.0566 Applications +1403.0588 Cosmology and Nongalactic Astrophysics +1403.1256 Theory +1403.1433 Mesoscale and Nanoscale Physics +1403.1536 Phenomenology +1403.1843 +1403.2049 Theory +1403.2324 Group Theory +1403.2368 +1403.2427 +1403.2555 Phenomenology +1403.2890 Strongly Correlated Electrons +1403.3044 Phenomenology +1403.3271 High Energy Astrophysical Phenomena +1403.3399 Phenomenology +1403.3494 Materials Science +1403.4159 Superconductivity +1403.4363 Strongly Correlated Electrons +1403.4398 Optics +1403.4521 Social and Information Networks +1403.4865 Instrumentation and Methods for Astrophysics +1403.4957 Strongly Correlated Electrons +1403.5324 Cosmology and Nongalactic Astrophysics +1403.5781 Phenomenology +1403.6147 Plasma Physics +1403.6310 Cosmology and Nongalactic Astrophysics +1403.6335 Solar and Stellar Astrophysics +1403.6689 Logic in Computer Science +1403.6708 High Energy Astrophysical Phenomena +1403.6715 Solar and Stellar Astrophysics +1403.6784 Biological Physics +1403.7397 Solar and Stellar Astrophysics +1403.8112 Solar and Stellar Astrophysics +1404.0132 Solar and Stellar Astrophysics +1404.0481 Fluid Dynamics +1404.1916 Astrophysics of Galaxies +1404.2120 Earth and Planetary Astrophysics +1404.2645 Solar and Stellar Astrophysics +1404.2758 Lattice +1404.2898 Earth and Planetary Astrophysics +1404.3349 Other Computer Science +1404.3662 +1404.3814 Algebraic Geometry +1404.4059 High Energy Astrophysical Phenomena +1404.4259 Solar and Stellar Astrophysics +1404.4867 Theory +1404.5898 History and Overview +1404.6104 Numerical Analysis +1404.6364 Theory +1404.7822 Group Theory +1405.0300 Phenomenology +1405.0392 Combinatorics +1405.0470 Mesoscale and Nanoscale Physics +1405.0612 Solar and Stellar Astrophysics +1405.1519 +1405.2684 Cryptography and Security +1405.2932 Earth and Planetary Astrophysics +1405.3366 Algebraic Geometry +1405.3578 Complex Variables +1405.4074 Soft Condensed Matter +1405.4232 Hardware Architecture +1405.4367 Logic +1405.4412 Differential Geometry +1405.4589 Neural and Evolutionary Computing +1405.4723 Experiment +1405.4853 Probability +1405.4856 Astrophysics of Galaxies +1405.4879 Instrumentation and Detectors +1405.4882 Probability +1405.4889 Mesoscale and Nanoscale Physics +1405.4890 Computational Engineering, Finance, and Science +1405.4894 Neural and Evolutionary Computing +1405.4895 Methodology +1405.4903 Optics +1405.4907 Phenomenology +1405.4909 Materials Science +1405.4912 Optimization and Control +1405.4918 Digital Libraries +1405.4921 Accelerator Physics +1405.4925 Symbolic Computation +1405.4926 Combinatorics +1405.4927 Social and Information Networks +1405.4929 General Topology +1405.4932 Solar and Stellar Astrophysics +1405.4936 Physics and Society +1405.4938 Mesoscale and Nanoscale Physics +1405.4941 Theory +1405.4942 Mesoscale and Nanoscale Physics +1405.4943 +1405.4946 Mesoscale and Nanoscale Physics +1405.4950 Atomic Physics +1405.4951 Cryptography and Security +1405.4952 Optics +1405.4955 Methodology +1405.4956 +1405.4958 Data Analysis, Statistics and Probability +1405.4961 Superconductivity +1405.4963 Mesoscale and Nanoscale Physics +1405.4964 Theory +1405.4968 Mesoscale and Nanoscale Physics +1405.4971 Mesoscale and Nanoscale Physics +1405.4973 Superconductivity +1405.4976 Methodology +1405.4977 Methodology +1405.4978 Dynamical Systems +1405.4979 Databases +1405.4981 Information Theory +1405.4982 Methodology +1405.4986 Methodology +1405.4987 Optimization and Control +1405.4989 Human-Computer Interaction +1405.4990 +1405.4991 Methodology +1405.4993 Metric Geometry +1405.4995 Methodology +1405.4996 Earth and Planetary Astrophysics +1405.5001 Number Theory +1405.5004 Analysis of PDEs +1405.5005 Systems and Control +1405.5006 Commutative Algebra +1405.5008 Phenomenology +1405.5009 Social and Information Networks +1405.5011 Numerical Analysis +1405.5015 Spectral Theory +1405.5019 Mesoscale and Nanoscale Physics +1405.5020 Methodology +1405.5021 +1405.5023 Discrete Mathematics +1405.5025 Populations and Evolution +1405.5028 Numerical Analysis +1405.5034 Functional Analysis +1405.5035 Quantum Gases +1405.5040 Methodology +1405.5045 +1405.5048 Artificial Intelligence +1405.5050 Neural and Evolutionary Computing +1405.5051 Methodology +1405.5055 Methodology +1405.5058 Experiment +1405.5061 Analysis of PDEs +1405.5066 Artificial Intelligence +1405.5069 Dynamical Systems +1405.5083 Information Theory +1405.5090 Rings and Algebras +1405.5093 +1405.5095 High Energy Astrophysical Phenomena +1405.5096 Learning +1405.5097 Social and Information Networks +1405.5099 +1405.5101 Information Theory +1405.5102 Group Theory +1405.5106 Complex Variables +1405.5107 Analysis of PDEs +1405.5108 +1405.5109 Databases +1405.5111 Physics and Society +1405.5117 Combinatorics +1405.5119 Multimedia +1405.5126 Experiment +1405.5128 Genomics +1405.5135 +1405.5138 +1405.5140 Computational Physics +1405.5145 Distributed, Parallel, and Cluster Computing +1405.5147 Learning +1405.5148 Computational Engineering, Finance, and Science +1405.5155 K-Theory and Homology +1405.5156 Learning +1405.5158 Atmospheric and Oceanic Physics +1405.5162 Number Theory +1405.5163 General Physics +1405.5164 Computer Vision and Pattern Recognition +1405.5165 General Physics +1405.5168 General Physics +1405.5169 General Physics +1405.5171 General Physics +1405.5172 Artificial Intelligence +1405.5173 Functional Analysis +1405.5174 General Physics +1405.5179 Algebraic Geometry +1405.5180 General Physics +1405.5182 Phenomenology +1405.5183 Functional Analysis +1405.5191 Combinatorics +1405.5198 Differential Geometry +1405.5200 Distributed, Parallel, and Cluster Computing +1405.5201 Computer Science and Game Theory +1405.5202 Computation and Language +1405.5203 Cryptography and Security +1405.5206 Computational Engineering, Finance, and Science +1405.5208 Computation and Language +1405.5209 Data Structures and Algorithms +1405.5210 Optimization and Control +cond-mat/0412004 Statistical Mechanics +cond-mat/0701018 Materials Science +math/0610640 Combinatorics +0809.1498 Fluid Dynamics +0901.4968 Dynamical Systems +0907.1750 Analysis of PDEs +1003.4498 Number Theory +1003.4750 Theory +1008.0538 Algebraic Geometry +1008.4501 Biological Physics +1011.0121 Theory +1011.1095 Theory +1102.3202 Chaotic Dynamics +1102.3203 Numerical Analysis +1105.2593 Materials Science +1105.3466 Numerical Analysis +1107.0718 +1107.1549 Populations and Evolution +1108.1999 Populations and Evolution +1108.3875 Geometric Topology +1108.5245 Combinatorics +1109.1490 Experiment +1111.2027 Exactly Solvable and Integrable Systems +1201.0163 Space Physics +1202.5223 Analysis of PDEs +1202.5498 Dynamical Systems +1203.5851 Exactly Solvable and Integrable Systems +1203.6590 Theory +1208.5103 Theory +1210.2632 +1210.3277 Distributed, Parallel, and Cluster Computing +1211.5571 +1211.7223 Analysis of PDEs +1212.2173 Algebraic Topology +1212.2319 Exactly Solvable and Integrable Systems +1301.5159 Digital Libraries +1301.6542 +1302.3203 Statistics Theory +1303.4943 Geometric Topology +1304.4215 Earth and Planetary Astrophysics +1304.6762 Logic in Computer Science +1305.1656 Methodology +1305.4278 Mesoscale and Nanoscale Physics +1305.7087 Analysis of PDEs +1306.5324 Cosmology and Nongalactic Astrophysics +1307.1907 Experiment +1307.3469 Theory +1307.3601 Mesoscale and Nanoscale Physics +1308.0979 Computer Science and Game Theory +1308.2457 Classical Analysis and ODEs +1308.3368 Experiment +1308.5266 Materials Science +1308.6739 Combinatorics +1309.1359 Mesoscale and Nanoscale Physics +1309.1512 Dynamical Systems +1309.5699 +1309.6499 Soft Condensed Matter +1309.7032 Strongly Correlated Electrons +1309.7233 Physics and Society +1310.0868 Mesoscale and Nanoscale Physics +1310.1178 Instrumentation and Detectors +1310.8118 Dynamical Systems +1311.1996 Soft Condensed Matter +1311.2665 Biomolecules +1311.3395 Superconductivity +1311.3668 Strongly Correlated Electrons +1311.5389 Phenomenology +1311.5657 Optics +1311.5776 Chaotic Dynamics +1311.7613 Phenomenology +1312.4610 Probability +1312.4722 Distributed, Parallel, and Cluster Computing +1312.6554 Instrumentation and Methods for Astrophysics +1312.6893 Strongly Correlated Electrons +1401.0562 Portfolio Management +1401.2215 Group Theory +1401.2339 +1401.5949 Exactly Solvable and Integrable Systems +1402.3471 +1402.3803 Experiment +1402.4021 Soft Condensed Matter +1402.4516 +1402.7321 Cosmology and Nongalactic Astrophysics +1403.2094 Soft Condensed Matter +1403.2380 Theory +1403.3661 Cryptography and Security +1403.4265 Mesoscale and Nanoscale Physics +1403.5378 Combinatorics +1403.5408 Atomic and Molecular Clusters +1403.5849 Cosmology and Nongalactic Astrophysics +1403.5922 Cosmology and Nongalactic Astrophysics +1403.6848 Operator Algebras +1404.1394 +1404.3223 Genomics +1404.3364 +1404.5154 Materials Science +1404.5166 Materials Science +1404.5399 Theory +1405.0150 Group Theory +1405.1231 Mesoscale and Nanoscale Physics +1405.2207 Soft Condensed Matter +1405.2860 Materials Science +1405.3838 Solar and Stellar Astrophysics +1405.4500 Quantum Gases +1405.5917 Algebraic Geometry +1405.6090 Symbolic Computation +1405.6094 Symbolic Computation +1405.6212 Theory +1405.6859 +1405.7291 Phenomenology +1406.0244 Instrumentation and Detectors +1406.0740 +1406.0993 Systems and Control +1406.2029 Quantum Gases +1406.2962 Phenomenology +1407.0344 Networking and Internet Architecture +1407.0538 Instrumentation and Methods for Astrophysics +1407.0807 Mesoscale and Nanoscale Physics +1407.1008 Materials Science +1407.3656 Classical Analysis and ODEs +1407.4895 Popular Physics +1407.5408 Mesoscale and Nanoscale Physics +1407.5659 Information Theory +1407.7501 Mesoscale and Nanoscale Physics +1407.7779 Earth and Planetary Astrophysics +1408.0234 +1408.1385 Biological Physics +1408.2091 Analysis of PDEs +1408.2119 Dynamical Systems +1408.2800 Databases +1408.3879 Mesoscale and Nanoscale Physics +1408.4329 General Physics +1408.4605 Phenomenology +1408.5349 Classical Analysis and ODEs +1408.5544 Machine Learning +1408.5694 Phenomenology +1408.5711 History and Overview +1408.5832 Optimization and Control +1408.6010 Cryptography and Security +1408.6066 Phenomenology +1408.6181 Computation and Language +1408.6225 Instrumentation and Detectors +1408.6228 Software Engineering +1408.6229 Computers and Society +1408.6254 Algebraic Geometry +1408.6259 Group Theory +1408.6262 Earth and Planetary Astrophysics +1408.6263 Earth and Planetary Astrophysics +1408.6267 Accelerator Physics +1408.6273 Computational Complexity +1408.6276 Soft Condensed Matter +1408.6279 Statistical Finance +1408.6282 Data Structures and Algorithms +1408.6285 Computational Complexity +1408.6286 Dynamical Systems +1408.6287 Complex Variables +1408.6288 Computation +1408.6290 Human-Computer Interaction +1408.6292 Computer Science and Game Theory +1408.6295 Medical Physics +1408.6303 Molecular Networks +1408.6307 Phenomenology +1408.6308 Phenomenology +1408.6312 Complex Variables +1408.6315 Computational Complexity +1408.6317 Computation +1408.6321 Data Structures and Algorithms +1408.6322 Differential Geometry +1408.6326 Analysis of PDEs +1408.6328 Distributed, Parallel, and Cluster Computing +1408.6335 Computer Vision and Pattern Recognition +1408.6337 Probability +1408.6340 Group Theory +1408.6344 Optics +1408.6346 Dynamical Systems +1408.6347 Distributed, Parallel, and Cluster Computing +1408.6348 Combinatorics +1408.6350 Multiagent Systems +1408.6355 Functional Analysis +1408.6358 Statistical Mechanics +1408.6359 Analysis of PDEs +1408.6360 Experiment +1408.6362 Dynamical Systems +1408.6364 Numerical Analysis +1408.6365 Phenomenology +1408.6367 Logic +1408.6372 Optimization and Control +1408.6373 Computational Physics +1408.6374 Phenomenology +1408.6378 Combinatorics +1408.6383 Analysis of PDEs +1408.6389 High Energy Astrophysical Phenomena +1408.6392 Strongly Correlated Electrons +1408.6394 Functional Analysis +1408.6405 Combinatorics +1408.6408 Materials Science +1408.6411 Number Theory +1408.6417 Materials Science +1408.6418 Computer Vision and Pattern Recognition +1408.6420 Data Analysis, Statistics and Probability +1408.6423 Classical Analysis and ODEs +1408.6424 Functional Analysis +1408.6425 Differential Geometry +1408.6426 High Energy Astrophysical Phenomena +1408.6429 Accelerator Physics +1408.6430 +1408.6431 Instrumentation and Detectors +1408.6434 Applications +1408.6435 +1408.6438 Digital Libraries +1408.6439 Chaotic Dynamics +1408.6440 Statistics Theory +1408.6441 General Physics +1408.6442 Plasma Physics +1408.6450 Accelerator Physics +1408.6451 Social and Information Networks +1408.6455 Portfolio Management +1408.6462 Instrumentation and Methods for Astrophysics +1408.6466 Social and Information Networks +1408.6474 Logic in Computer Science +1408.6477 Logic in Computer Science +1408.6482 Atmospheric and Oceanic Physics +1408.6484 Combinatorics +1408.6485 Data Structures and Algorithms +1408.6489 Probability +1408.6490 Pattern Formation and Solitons +1408.6493 +1408.6495 Optimization and Control +1408.6503 Optics +1408.6504 Information Theory +hep-th/0511002 Theory +math/0508242 Probability +math/0508244 Dynamical Systems +math/0508246 Dynamical Systems +physics/0604062 Fluid Dynamics +physics/0701337 Fluid Dynamics +1007.3703 Solar and Stellar Astrophysics +1012.4117 Combinatorics +1104.3842 Probability +1109.0663 General Physics +1203.2460 Algebraic Topology +1204.0377 Representation Theory +1207.2344 Algebraic Topology +1209.1245 Strongly Correlated Electrons +1210.1811 Strongly Correlated Electrons +1212.6773 Digital Libraries +1303.1588 History and Philosophy of Physics +1303.2038 Strongly Correlated Electrons +1307.3782 Neural and Evolutionary Computing +1308.0976 Mesoscale and Nanoscale Physics +1309.5314 Discrete Mathematics +1310.5299 Strongly Correlated Electrons +1311.2274 +1312.2481 General Mathematics +1402.3493 Strongly Correlated Electrons +1403.4912 Astrophysics of Galaxies +1404.1877 Operator Algebras +1404.5269 Exactly Solvable and Integrable Systems +1406.7118 +1407.6194 Differential Geometry +1408.4889 Mesoscale and Nanoscale Physics +1409.1402 Probability +1410.0572 Artificial Intelligence +1410.1330 +1410.1413 +1410.1710 Systems and Control +1410.5086 Dynamical Systems +1410.6843 Statistics Theory +1411.1355 Analysis of PDEs +1411.6125 +1411.6856 Classical Analysis and ODEs +1412.0560 +1412.2885 Probability +1501.05462 Digital Libraries +1501.07133 Information Theory +1501.07906 Phenomenology +1503.00508 Differential Geometry +1503.02296 +1503.03271 Phenomenology +1503.03799 +1503.04545 Analysis of PDEs +1503.08427 Materials Science +1504.00368 Theory +1504.00795 Complex Variables +1504.01198 Mesoscale and Nanoscale Physics +1504.02279 Representation Theory +1504.03507 Materials Science +1504.05339 Plasma Physics +1504.06904 Spectral Theory +1505.00047 Numerical Analysis +1505.03624 +1505.04047 Theory +1505.06472 Methodology +1506.02548 Combinatorics +1506.04036 Information Theory +1506.05523 Cosmology and Nongalactic Astrophysics +1506.05690 Social and Information Networks +1506.08020 Quantum Gases +1507.01375 Phenomenology +1507.01767 Data Structures and Algorithms +1507.01821 +1507.02858 +1507.04966 +1507.05969 Cosmology and Nongalactic Astrophysics +1507.07296 Instrumentation and Methods for Astrophysics +1507.08133 Pattern Formation and Solitons +1507.08484 Quantitative Methods +1507.08813 Strongly Correlated Electrons +1508.00166 Symplectic Geometry +1508.00550 Analysis of PDEs +1508.01209 +1508.04528 Soft Condensed Matter +1508.05272 +1509.00501 History and Philosophy of Physics +1509.01998 Emerging Technologies +1509.02672 High Energy Astrophysical Phenomena +1509.05811 +1509.05819 Algebraic Geometry +1509.05985 Theory +1509.06843 Materials Science +1509.07181 Computational Geometry +1509.07388 Numerical Analysis +1510.00204 Phenomenology +1510.00288 Theory +1510.00384 Computer Vision and Pattern Recognition +1510.00508 +1510.00979 Strongly Correlated Electrons +1510.01797 Category Theory +1510.03035 Computational Engineering, Finance, and Science +1510.06137 Theory +1511.00083 Neurons and Cognition +1511.00293 +1511.00780 Optics +1511.02621 High Energy Astrophysical Phenomena +1511.03027 Number Theory +1511.03171 Quantum Algebra +1511.03901 Analysis of PDEs +1511.04524 Computer Vision and Pattern Recognition +1511.05355 Computation +1511.06654 Computer Vision and Pattern Recognition +1511.07309 Biological Physics +1511.07418 Group Theory +1511.08137 Phenomenology +1512.00485 Analysis of PDEs +1512.00721 Numerical Analysis +1512.01337 Computation and Language +1512.01563 Learning +1512.01596 Neural and Evolutionary Computing +1512.02140 Artificial Intelligence +1512.02513 High Energy Astrophysical Phenomena +1512.03318 Strongly Correlated Electrons +1512.03399 Superconductivity +1512.04650 Computation and Language +1512.05112 Statistical Mechanics +1512.06864 Strongly Correlated Electrons +1512.07133 Classical Physics +1512.07501 Instrumentation and Detectors +1512.08480 +1601.01272 Computation and Language +1601.02129 Computer Vision and Pattern Recognition +1601.02658 Probability +1601.03251 Superconductivity +1601.04835 Atomic Physics +1601.05110 Phenomenology +1601.06088 High Energy Astrophysical Phenomena +1601.06297 Algebraic Topology +1601.07391 Phenomenology +1601.07807 Mesoscale and Nanoscale Physics +1602.01339 Quantum Gases +1602.02064 Materials Science +1602.02567 Theory +1602.03750 Theory +1602.03769 +1602.03835 Chemical Physics +1602.04381 Metric Geometry +1602.05885 Applications +1602.07125 Computer Vision and Pattern Recognition +1603.02531 Phenomenology +1603.02659 +1603.03615 +1603.03775 Solar and Stellar Astrophysics +1603.04449 Instrumentation and Methods for Astrophysics +1603.04690 Discrete Mathematics +1603.05054 Strongly Correlated Electrons +1603.05906 Space Physics +1603.05920 Atomic Physics +1603.06978 High Energy Astrophysical Phenomena +1603.08180 +1603.08218 Mesoscale and Nanoscale Physics +1603.09536 Software Engineering +1604.00723 Optimization and Control +1604.01633 Mesoscale and Nanoscale Physics +1604.01725 +1604.01795 Physics and Society +1604.02962 Mesoscale and Nanoscale Physics +1604.03195 Computational Engineering, Finance, and Science +1604.03343 Learning +1604.04004 Computer Vision and Pattern Recognition +1604.04280 Genomics +1604.04314 Geometric Topology +1604.04545 Astrophysics of Galaxies +1604.04707 Computational Geometry +1604.04950 +1604.05253 Statistical Mechanics +1604.05778 Experiment +1604.05822 Number Theory +1604.06071 Instrumentation and Methods for Astrophysics +1604.06174 Learning +1604.06331 Theory +1604.06397 Computer Vision and Pattern Recognition +1604.06451 Instrumentation and Detectors +1604.06452 Data Structures and Algorithms +1604.06453 Differential Geometry +1604.06457 Theory +1604.06458 Instrumentation and Methods for Astrophysics +1604.06471 +1604.06474 Statistics Theory +1604.06477 Space Physics +1604.06481 Computer Vision and Pattern Recognition +1604.06483 Logic in Computer Science +1604.06484 Artificial Intelligence +1604.06485 Materials Science +1604.06487 Differential Geometry +1604.06488 History and Philosophy of Physics +1604.06489 History and Philosophy of Physics +1604.06490 History and Philosophy of Physics +1604.06491 History and Philosophy of Physics +1604.06492 General Mathematics +1604.06499 Combinatorics +1604.06501 Optics +1604.06504 Combinatorics +1604.06505 +1604.06507 K-Theory and Homology +1604.06508 Robotics +1604.06512 Dynamical Systems +1604.06513 Combinatorics +1604.06515 Methodology +1604.06516 Dynamical Systems +1604.06517 Computational Physics +1604.06522 Probability +1604.06528 +1604.06531 Information Theory +1604.06535 Probability +1604.06540 Optimization and Control +1604.06544 Theory +1604.06545 Soft Condensed Matter +1604.06546 Statistical Mechanics +1604.06547 Analysis of PDEs +1604.06549 Chemical Physics +1604.06551 Algebraic Topology +1604.06554 Combinatorics +1604.06558 Robotics +1604.06561 +1604.06565 Popular Physics +1604.06567 Information Theory +1604.06570 Computer Vision and Pattern Recognition +1604.06571 Information Theory +1604.06575 Materials Science +1604.06576 +1604.06577 Social and Information Networks +1604.06581 Distributed, Parallel, and Cluster Computing +1604.06583 Computation and Language +1604.06586 Number Theory +1604.06590 High Energy Astrophysical Phenomena +1604.06591 Subcellular Processes +1604.06592 Logic +1604.06594 Probability +1604.06597 Geometric Topology +1604.06598 Chemical Physics +1604.06600 Formal Languages and Automata Theory +1604.06601 Cosmology and Nongalactic Astrophysics +1604.06606 Number Theory +1604.06607 Neural and Evolutionary Computing +1604.06608 Fluid Dynamics +1604.06610 Differential Geometry +1604.06612 Probability +1604.06613 Phenomenology +1604.06614 Artificial Intelligence +1604.06616 Analysis of PDEs +1604.06617 Computational Complexity +1604.06619 +1604.06622 Probability +1604.06623 Phenomenology +1604.06624 Chemical Physics +1604.06625 Fluid Dynamics +1604.06628 Other Condensed Matter +1604.06632 Other Condensed Matter +1604.06635 Computation and Language +1604.06641 Artificial Intelligence +1604.06643 Probability +1604.06646 Computer Vision and Pattern Recognition +1604.06647 Theory +1604.06648 Computation and Language +1604.06649 Chemical Physics +1604.06650 Computation and Language +1604.06651 Applications +1604.06652 +1604.06655 Complex Variables +1604.06657 Differential Geometry +1604.06658 Accelerator Physics +1604.06659 Number Theory +1604.06660 Quantitative Methods +1604.06664 Probability +1604.06670 Chaotic Dynamics +1604.06673 +1604.06674 General Physics +1604.06675 Rings and Algebras +1604.06676 Rings and Algebras +1604.06678 Representation Theory +1604.06681 Classical Physics +1604.06683 +1604.06686 General Mathematics +1604.06687 Data Structures and Algorithms +1604.06690 +1604.06692 General Physics +1604.06695 Geometric Topology +1604.06706 +1604.06707 Discrete Mathematics +1604.06710 Artificial Intelligence +1604.06711 Analysis of PDEs +1604.06714 Systems and Control +1604.06715 Artificial Intelligence +1604.06716 Methodology +1604.06721 Artificial Intelligence +1604.06726 Optics +1604.06727 Machine Learning +1604.06730 Neural and Evolutionary Computing +1604.06732 Optics +1604.06734 Distributed, Parallel, and Cluster Computing +1604.06735 Analysis of PDEs +1604.06737 Learning +1604.06738 Classical Physics +1604.06739 Instrumentation and Methods for Astrophysics +1604.06741 Probability +1604.06743 Learning +1604.06744 Networking and Internet Architecture +1604.06745 General Physics +1604.06747 Logic in Computer Science +1604.06751 Neural and Evolutionary Computing +1604.06752 Logic in Computer Science +1604.06759 Chemical Physics +1604.06761 Statistical Mechanics +1604.06762 Dynamical Systems +1604.06764 Formal Languages and Automata Theory +1604.06766 Software Engineering +1604.06769 Phenomenology +1604.06772 Phenomenology +1604.06774 Classical Physics +1604.06775 History and Philosophy of Physics +1604.06777 Computational Engineering, Finance, and Science +1604.06781 Software Engineering +1604.06782 Differential Geometry +1604.06784 Medical Physics +1604.06787 Artificial Intelligence +1604.06788 Medical Physics +1604.06789 Differential Geometry +1604.06790 Artificial Intelligence +1604.06793 Superconductivity +0805.1069 General Topology +0809.1071 Dynamical Systems +0809.1193 Dynamical Systems +0809.2019 Dynamical Systems +0809.3754 Dynamical Systems +0812.1239 Dynamical Systems +0904.2944 General Topology +1103.2233 Solar and Stellar Astrophysics +1106.0080 Theory +1106.1309 Theory +1108.6250 Algebraic Geometry +1109.5475 Optics +1202.4375 Optimization and Control +1203.0030 Systems and Control +1205.0995 Phenomenology +1205.4287 Algebraic Geometry +1206.1231 Probability +1208.0269 Algebraic Geometry +1208.3978 Combinatorics +1211.1138 Optimization and Control +1301.7636 Algebraic Geometry +1304.5522 General Physics +1306.3397 Probability +1306.4443 Differential Geometry +1308.4022 Methodology +1312.3897 Probability +1401.4502 Combinatorics +1402.2960 Combinatorics +1403.2423 Algebraic Geometry +1404.3523 Materials Science +1405.1634 +1405.4087 Representation Theory +1405.6928 Metric Geometry +1405.7515 Materials Science +1405.7911 Cosmology and Nongalactic Astrophysics +1406.3632 +1406.6710 Optics +1406.7219 Differential Geometry +1407.2872 Group Theory +1408.1634 General Physics +1408.1767 Optimization and Control +1408.4057 Statistics Theory +1409.3951 Group Theory +1409.4981 Phenomenology +1410.3020 Algebraic Geometry +1410.4703 +1410.7937 Geometric Topology +1411.0129 Computation and Language +1411.0131 Phenomenology +1411.4321 Cell Behavior +1411.4410 Rings and Algebras +1412.0613 Materials Science +1412.1774 Combinatorics +1412.3141 Algebraic Topology +1501.00153 Information Theory +1501.02331 +1501.05765 Optics +1501.07643 Materials Science +1502.00355 Distributed, Parallel, and Cluster Computing +1502.01297 Quantum Algebra +1502.02106 Multiagent Systems +1502.04012 +1502.05267 +1502.05695 +1502.07955 Analysis of PDEs +1503.06523 +1504.00399 Plasma Physics +1504.06910 Chemical Physics +1504.08018 Optics +1505.02044 Numerical Analysis +1505.03409 Data Analysis, Statistics and Probability +1505.04747 Quantum Gases +1505.07791 Mesoscale and Nanoscale Physics +1505.07793 Operator Algebras +1506.00962 Experiment +1506.01526 Instrumentation and Methods for Astrophysics +1506.02699 Machine Learning +1506.03783 Optics +1506.04052 Dynamical Systems +1506.04079 Information Theory +1506.05403 Dynamical Systems +1506.06751 Quantum Gases +1506.06810 Dynamical Systems +1507.00175 Strongly Correlated Electrons +1507.00323 Analysis of PDEs +1507.00548 Rings and Algebras +1507.01602 Cosmology and Nongalactic Astrophysics +1507.02358 +1507.03292 Learning +1507.04498 Plasma Physics +1507.04660 Probability +1507.07959 Optics +1507.08568 Classical Analysis and ODEs +1507.08986 Optics +1508.00529 Superconductivity +1508.01206 Analysis of PDEs +1508.02338 +1508.03304 +1508.04160 Strongly Correlated Electrons +1508.06263 +1508.06868 Experiment +1508.07732 Physics and Society +1509.00009 +1509.00314 +1509.01200 Physics and Society +1509.01456 General Mathematics +1509.01744 Soft Condensed Matter +1509.01902 Strongly Correlated Electrons +1509.02483 Populations and Evolution +1509.02821 General Physics +1509.02903 +1509.03679 Astrophysics of Galaxies +1509.07112 +1509.07562 Cosmology and Nongalactic Astrophysics +1509.07677 Astrophysics of Galaxies +1509.07696 +1510.00333 Solar and Stellar Astrophysics +1510.02118 +1510.03373 +1510.03808 Disordered Systems and Neural Networks +1510.04013 Phenomenology +1510.04287 Cosmology and Nongalactic Astrophysics +1510.04760 Computational Physics +1510.06215 Group Theory +1510.06769 Human-Computer Interaction +1510.07481 Phenomenology +1510.07691 Phenomenology +1510.07760 Optics +1511.00817 Superconductivity +1511.01344 Networking and Internet Architecture +1511.01511 Astrophysics of Galaxies +1511.01851 +1511.02198 General Physics +1511.03973 +1511.04445 High Energy Astrophysical Phenomena +1511.07060 Cosmology and Nongalactic Astrophysics +1511.07194 Theory +1511.07386 Computer Vision and Pattern Recognition +1511.08976 Classical Analysis and ODEs +1512.00626 Strongly Correlated Electrons +1512.00960 +1512.02200 Materials Science +1512.04289 Mesoscale and Nanoscale Physics +1512.04384 Combinatorics +1512.05260 Astrophysics of Galaxies +1512.05642 Instrumentation and Detectors +1512.05705 Multimedia +1512.06138 Materials Science +1512.06148 Instrumentation and Detectors +1512.06457 Combinatorics +1512.07751 Mesoscale and Nanoscale Physics +1512.08011 +1512.09159 Phenomenology +1512.09303 Functional Analysis +1601.00145 Metric Geometry +1601.00712 Portfolio Management +1601.00801 Mesoscale and Nanoscale Physics +1601.01421 Information Theory +1601.01450 Instrumentation and Detectors +1601.01863 Optics +1601.02128 Symplectic Geometry +1601.02672 Number Theory +1601.02674 Commutative Algebra +1601.02704 Analysis of PDEs +1601.03202 Logic in Computer Science +1601.03317 Computation and Language +1601.04759 Lattice +1601.05070 Representation Theory +1601.05123 Number Theory +1601.05371 Analysis of PDEs +1601.05561 Computers and Society +1601.05685 Analysis of PDEs +1601.05792 Cryptography and Security +1601.05793 Information Theory +1601.05794 Combinatorics +1601.05796 Pattern Formation and Solitons +1601.05813 Superconductivity +1601.05815 Phenomenology +1601.05818 Quantum Gases +1601.05819 Superconductivity +1601.05820 Methodology +1601.05822 Materials Science +1601.05823 Instrumentation and Detectors +1601.05824 Graphics +1601.05825 Functional Analysis +1601.05829 +1601.05830 Rings and Algebras +1601.05831 +1601.05833 Cryptography and Security +1601.05836 Plasma Physics +1601.05837 Software Engineering +1601.05839 Information Theory +1601.05844 Earth and Planetary Astrophysics +1601.05848 Atomic Physics +1601.05849 Materials Science +1601.05850 Software Engineering +1601.05851 Operating Systems +1601.05854 Materials Science +1601.05858 Astrophysics of Galaxies +1601.05861 Computer Vision and Pattern Recognition +1601.05863 Combinatorics +1601.05864 Theory +1601.05865 Mesoscale and Nanoscale Physics +1601.05868 Information Theory +1601.05870 Computation +1601.05873 Information Theory +1601.05876 Astrophysics of Galaxies +1601.05879 Information Theory +1601.05880 Information Theory +1601.05882 Analysis of PDEs +1601.05884 General Topology +1601.05886 Methodology +1601.05887 Methodology +1601.05889 Systems and Control +1601.05892 +1601.05893 Artificial Intelligence +1601.05896 Mesoscale and Nanoscale Physics +1601.05897 General Topology +1601.05900 Learning +1601.05908 Networking and Internet Architecture +1601.05914 Methodology +1601.05915 Chemical Physics +1601.05917 Information Theory +1601.05918 Number Theory +1601.05920 Materials Science +1601.05921 Information Theory +1601.05922 Applications +1601.05924 Number Theory +1601.05928 Information Theory +1601.05929 Information Theory +1601.05934 +1601.05936 Computation and Language +1601.05939 Number Theory +1601.05940 Methodology +1601.05941 Number Theory +1601.05942 Complex Variables +1601.05943 Representation Theory +1601.05950 Analysis of PDEs +1601.05952 Information Retrieval +1601.05956 +1601.05960 Geophysics +1601.05969 Mesoscale and Nanoscale Physics +1601.05970 Computational Physics +1601.05974 Algebraic Geometry +1601.05976 Software Engineering +1601.05978 Discrete Mathematics +1601.05980 +1601.05981 Plasma Physics +1601.05988 Combinatorics +1601.05989 Discrete Mathematics +1601.05994 Computer Vision and Pattern Recognition +1601.05996 Disordered Systems and Neural Networks +1601.05998 Lattice +1601.06000 Statistics Theory +1601.06003 Statistics Theory +1601.06004 Theory +1601.06008 Sound +1601.06009 Information Theory +1601.06010 High Energy Astrophysical Phenomena +1601.06011 Information Theory +1601.06013 Dynamical Systems +1601.06015 Materials Science +1601.06016 Information Theory +1601.06019 Analysis of PDEs +1601.06022 Strongly Correlated Electrons +1601.06024 Instrumentation and Methods for Astrophysics +1601.06027 Algebraic Geometry +1601.06030 Combinatorics +1601.06031 Combinatorics +1601.06032 Computer Vision and Pattern Recognition +1601.06034 Differential Geometry +1601.06035 Learning +1601.06036 Phenomenology +1601.06040 Distributed, Parallel, and Cluster Computing +1601.06041 Computer Vision and Pattern Recognition +1601.06042 Optimization and Control +1601.06043 Networking and Internet Architecture +1601.06045 Superconductivity +1601.06047 Genomics +1601.06051 Dynamical Systems +1601.06055 Information Theory +1601.06057 Computer Vision and Pattern Recognition +1601.06060 Distributed, Parallel, and Cluster Computing +1601.06069 Artificial Intelligence +1601.06071 Learning +1601.06076 Computational Engineering, Finance, and Science +1601.06079 Probability +1601.06081 Computation and Language +1601.06084 +1601.06085 +1601.06087 Computer Vision and Pattern Recognition +1601.06089 +1601.06093 Dynamical Systems +1601.06095 Information Theory +1601.06097 Biological Physics +1601.06099 Analysis of PDEs +1601.06100 +1601.06102 Information Theory +1601.06105 Machine Learning +1601.06106 +1601.06107 Strongly Correlated Electrons +1601.06108 Artificial Intelligence +1601.06110 Rings and Algebras +1601.06111 Superconductivity +1601.06112 Instrumentation and Detectors +1601.06119 Cryptography and Security +1601.06122 Classical Analysis and ODEs +1601.06123 Classical Analysis and ODEs +1601.06124 Classical Analysis and ODEs +1601.06125 Classical Analysis and ODEs +1601.06126 Classical Analysis and ODEs +1601.06128 Human-Computer Interaction +1601.06129 Classical Analysis and ODEs +1601.06130 Classical Analysis and ODEs +1601.06131 High Energy Astrophysical Phenomena +1601.06134 +1601.06135 Classical Analysis and ODEs +1601.06136 Symplectic Geometry +1601.06138 Classical Analysis and ODEs +1601.06139 Differential Geometry +1601.06140 Phenomenology +1601.06142 Numerical Analysis +1601.06143 Biological Physics +1601.06151 Instrumentation and Methods for Astrophysics +1601.06152 +1601.06153 Information Theory +math/9201289 Dynamical Systems +math/9201290 Dynamical Systems +0705.4004 Analysis of PDEs +0706.0190 General Physics +0805.4657 Differential Geometry +0910.0390 Analysis of PDEs +1104.0892 Differential Geometry +1110.3465 General Mathematics +1110.6573 +1112.5817 Analysis of PDEs +1203.0469 +1212.3142 Materials Science +1305.6560 Number Theory +1307.0552 Applications +1307.1176 Analysis of PDEs +1311.5933 Physics and Society +1312.5504 Analysis of PDEs +1403.3597 Rings and Algebras +1403.6795 Logic +1404.6030 Numerical Analysis +1406.5675 Learning +1407.3285 Soft Condensed Matter +1407.5780 Classical Analysis and ODEs +1407.6815 Metric Geometry +1408.3796 Commutative Algebra +1409.0473 Computation and Language +1409.0811 Strongly Correlated Electrons +1409.3127 +1409.4728 Mesoscale and Nanoscale Physics +1409.6224 Number Theory +1410.4873 Analysis of PDEs +1410.6461 Differential Geometry +1411.2122 Combinatorics +1412.3130 Group Theory +1412.6894 Number Theory +1412.6958 Dynamical Systems +1412.8027 Commutative Algebra +1412.8459 Algebraic Topology +1501.01937 Applications +1501.02862 Functional Analysis +1501.04706 Computational Geometry +1502.02077 Learning +1502.03085 Number Theory +1502.03729 Optimization and Control +1502.03785 Logic +1502.04201 Classical Analysis and ODEs +1502.04359 Mathematical Finance +1502.07302 Complex Variables +1503.04136 +1503.05880 Algebraic Geometry +1503.07687 Optics +1503.08662 Materials Science +1503.09176 +1504.00587 Dynamical Systems +1504.02587 Logic in Computer Science +1504.02597 Software Engineering +1504.05513 Formal Languages and Automata Theory +1505.01079 Algebraic Geometry +1505.01821 Cosmology and Nongalactic Astrophysics +1505.03540 Computer Vision and Pattern Recognition +1506.00441 Algebraic Topology +1506.01909 +1506.03747 Atomic Physics +1506.04158 Machine Learning +1506.05785 Quantum Algebra +1506.07016 Theory +1506.07118 Distributed, Parallel, and Cluster Computing +1506.07639 Disordered Systems and Neural Networks +1507.03843 Information Theory +1507.05612 Logic in Computer Science +1507.06422 Soft Condensed Matter +1507.06908 Group Theory +1507.08755 +1508.00365 Quantum Gases +1508.05269 Physics and Society +1508.05470 Mathematical Software +1508.06505 Statistics Theory +1508.06762 +1508.07246 Systems and Control +1508.07284 +1508.07295 Algebraic Geometry +1509.00488 Combinatorics +1509.01193 +1509.03343 Classical Analysis and ODEs +1509.04994 Optics +1509.05768 +1509.08813 Dynamical Systems +1509.08818 Dynamical Systems +1509.09229 Mesoscale and Nanoscale Physics +1510.00011 Biological Physics +1510.01335 Theory +1510.01650 Cosmology and Nongalactic Astrophysics +1510.02697 Phenomenology +1510.03882 Number Theory +1510.04357 Dynamical Systems +1510.05960 Metric Geometry +1510.07018 Theory +1510.07890 Materials Science +1510.08230 Probability +1511.01302 Strongly Correlated Electrons +1511.03610 Experiment +1511.03891 Instrumentation and Detectors +1511.05118 Social and Information Networks +1511.05734 Theory +1511.05795 Theory +1511.07026 +1511.08105 Theory +1511.08665 +1511.09412 Quantum Algebra +1512.00104 +1512.00380 Classical Analysis and ODEs +1512.03710 Statistical Mechanics +1512.04391 Phenomenology +1512.04768 Phenomenology +1512.06046 Operator Algebras +1512.06445 Theory +1512.06452 Machine Learning +1512.06560 Phenomenology +1512.06750 Mesoscale and Nanoscale Physics +1512.06985 Strongly Correlated Electrons +1512.07165 Phenomenology +1512.07876 Learning +1512.08818 Experiment +1601.00502 Algebraic Geometry +1601.05327 Exactly Solvable and Integrable Systems +1601.05777 Phenomenology +1601.06210 Materials Science +1601.06998 Probability +1601.07289 Statistical Mechanics +1601.07492 Statistical Mechanics +1601.07842 Phenomenology +1601.08167 Solar and Stellar Astrophysics +1602.01700 Disordered Systems and Neural Networks +1602.02261 Artificial Intelligence +1602.03051 Mesoscale and Nanoscale Physics +1602.03947 Quantum Gases +1602.04786 General Physics +1602.04858 Numerical Analysis +1602.05909 Discrete Mathematics +1602.06449 Geometric Topology +1602.07547 Mesoscale and Nanoscale Physics +1603.01430 Atomic Physics +1603.01740 Data Structures and Algorithms +1603.02299 Symplectic Geometry +1603.02496 Cosmology and Nongalactic Astrophysics +1603.02903 Theory +1603.03421 Phenomenology +1603.05604 Analysis of PDEs +1603.05607 Strongly Correlated Electrons +1603.05642 Optimization and Control +1603.06536 Experiment +1603.08158 Theory +1604.00605 Phenomenology +1604.00893 Representation Theory +1604.01429 Data Structures and Algorithms +1604.01575 Statistical Mechanics +1604.01595 Formal Languages and Automata Theory +1604.01664 Astrophysics of Galaxies +1604.01999 Learning +1604.02841 Theory +1604.02954 Rings and Algebras +1604.03263 +1604.03818 Numerical Analysis +1604.04069 Differential Geometry +1604.04162 Group Theory +1604.04412 Chaotic Dynamics +1604.04562 Computation and Language +1604.04849 Probability +1604.06398 Computation +1604.06935 Algebraic Geometry +1604.06967 Symbolic Computation +1604.07980 Instrumentation and Methods for Astrophysics +1604.08158 Combinatorics +1605.00035 Analysis of PDEs +1605.00093 Strongly Correlated Electrons +1605.00226 Operator Algebras +1605.00469 Fluid Dynamics +1605.01552 Solar and Stellar Astrophysics +1605.02600 +1605.04352 Probability +1605.05270 +1605.05293 Soft Condensed Matter +1605.05432 Differential Geometry +1605.05441 Computation +1605.05524 Statistics Theory +1605.05573 Computation and Language +1605.05610 Numerical Analysis +1605.05645 Lattice +1605.05843 Networking and Internet Architecture +1605.05904 Computer Vision and Pattern Recognition +1605.05924 Discrete Mathematics +1605.05944 Data Structures and Algorithms +1605.05954 Phenomenology +1605.06043 Human-Computer Interaction +1605.06062 Soft Condensed Matter +1605.06093 Distributed, Parallel, and Cluster Computing +1605.06107 Mesoscale and Nanoscale Physics +1605.06108 Cell Behavior +1605.06110 Materials Science +1605.06112 Solar and Stellar Astrophysics +1605.06120 Theory +1605.06122 Computation +1605.06126 Symbolic Computation +1605.06127 Rings and Algebras +1605.06132 Exactly Solvable and Integrable Systems +1605.06134 Information Theory +1605.06135 Quantum Gases +1605.06138 Numerical Analysis +1605.06139 Combinatorics +1605.06143 Databases +1605.06145 Group Theory +1605.06146 Strongly Correlated Electrons +1605.06147 Numerical Analysis +1605.06149 Chemical Physics +1605.06150 Networking and Internet Architecture +1605.06153 Operator Algebras +1605.06154 Digital Libraries +1605.06158 Combinatorics +1605.06160 +1605.06162 Dynamical Systems +1605.06164 Logic +1605.06165 Analysis of PDEs +1605.06167 Social and Information Networks +1605.06170 Learning +1605.06172 Combinatorics +1605.06174 Materials Science +1605.06176 Populations and Evolution +1605.06177 Computer Vision and Pattern Recognition +1605.06178 Materials Science +1605.06180 Cryptography and Security +1605.06181 Learning +1605.06182 Computer Vision and Pattern Recognition +1605.06184 Algebraic Geometry +1605.06186 Materials Science +1605.06188 Combinatorics +1605.06190 Social and Information Networks +1605.06192 Solar and Stellar Astrophysics +1605.06193 Applications +1605.06194 Earth and Planetary Astrophysics +1605.06195 General Topology +1605.06199 Soft Condensed Matter +1605.06200 Differential Geometry +1605.06203 Optimization and Control +1605.06205 Instrumentation and Methods for Astrophysics +1605.06207 Populations and Evolution +1605.06208 Populations and Evolution +1605.06209 Mesoscale and Nanoscale Physics +1605.06211 Computer Vision and Pattern Recognition +1605.06213 +1605.06214 Rings and Algebras +1605.06215 Graphics +1605.06216 Information Theory +1605.06220 Machine Learning +1605.06222 Algebraic Topology +1605.06223 Complex Variables +1605.06226 Phenomenology +1605.06229 Algebraic Geometry +1605.06230 Algebraic Geometry +1605.06234 Algebraic Geometry +1605.06236 Computers and Society +1605.06238 Computers and Society +1605.06242 Digital Libraries +1605.06243 Materials Science +1605.06245 Software Engineering +1605.06246 Numerical Analysis +1605.06247 Dynamical Systems +1605.06248 Differential Geometry +1605.06249 Social and Information Networks +1605.06251 Functional Analysis +1605.06253 Astrophysics of Galaxies +1605.06254 Differential Geometry +1605.06257 Differential Geometry +1605.06259 Rings and Algebras +1605.06260 +1605.06263 Commutative Algebra +1605.06264 Probability +1605.06266 Algebraic Topology +1605.06267 Combinatorics +1605.06269 +1605.06274 Instrumentation and Methods for Astrophysics +1605.06275 Information Theory +1605.06277 Instrumentation and Methods for Astrophysics +1605.06280 Computational Physics +1605.06282 Fluid Dynamics +1605.06285 Networking and Internet Architecture +1605.06287 Dynamical Systems +1605.06288 Numerical Analysis +1605.06289 Software Engineering +1605.06295 Differential Geometry +1605.06297 Probability +1605.06300 Phenomenology +1605.06301 Probability +1605.06302 Probability +1605.06303 Pattern Formation and Solitons +1605.06304 Social and Information Networks +1605.06305 General Physics +1605.06308 Physics and Society +1605.06309 Populations and Evolution +1605.06312 General Physics +1605.06318 Optics +1605.06319 Computation and Language +1605.06321 Combinatorics +1605.06322 Social and Information Networks +1605.06325 Computer Vision and Pattern Recognition +1605.06326 Physics and Society +1605.06327 Data Structures and Algorithms +1605.06328 Numerical Analysis +1605.06330 Representation Theory +1605.06332 Numerical Analysis +1605.06333 History and Overview +1605.06336 Machine Learning +1605.06338 Materials Science +1605.06340 Earth and Planetary Astrophysics +1605.06341 Chemical Physics +1605.06344 Algebraic Geometry +1605.06345 Optics +1605.06349 Probability +1605.06352 Strongly Correlated Electrons +1605.06354 Computers and Society +1605.06355 Strongly Correlated Electrons +1605.06357 +1605.06358 Materials Science +1605.06360 Combinatorics +1605.06361 Combinatorics +1605.06362 Metric Geometry +1605.06363 Commutative Algebra +1605.06364 Cosmology and Nongalactic Astrophysics +1605.06365 Dynamical Systems +1605.06366 Theory +1605.06368 Social and Information Networks +1605.06373 Analysis of PDEs +1605.06374 Dynamical Systems +1605.06377 Learning +1605.06379 Biomolecules +1605.06380 Materials Science +1605.06381 Mathematical Software +1605.06382 Analysis of PDEs +1605.06385 Algebraic Geometry +1605.06387 Combinatorics +1605.06388 Phenomenology +1605.06394 Learning +1605.06396 Information Theory +1605.06397 Methodology +1605.06399 Distributed, Parallel, and Cluster Computing +1605.06401 Classical Analysis and ODEs +1605.06402 Computer Vision and Pattern Recognition +1605.06404 Functional Analysis +1605.06405 Networking and Internet Architecture +1605.06408 Soft Condensed Matter +1605.06417 Computer Vision and Pattern Recognition +1605.06421 Learning +1605.06424 Databases +1605.06427 +1605.06428 Quantum Algebra +1605.06429 Mathematical Finance +1605.06430 Populations and Evolution +1605.06433 Astrophysics of Galaxies +1605.06434 Materials Science +1605.06435 Phenomenology +1605.06437 Computer Vision and Pattern Recognition +1605.06439 Learning +1605.06441 Dynamical Systems +1605.06448 +1605.06450 Learning +1605.06452 Optics +1605.06453 General Topology +1605.06454 +1605.06455 +1605.06457 Computer Vision and Pattern Recognition +1605.06462 Physics and Society +1605.06463 +1605.06465 Computer Vision and Pattern Recognition +1605.06466 Cryptography and Security +1605.06467 Networking and Internet Architecture +1605.06469 Fluid Dynamics +1605.06470 Soft Condensed Matter +1605.06471 Statistical Mechanics +1605.06472 Soft Condensed Matter +1605.06473 +1605.06478 Probability +1605.06480 Atmospheric and Oceanic Physics +1605.06483 Hardware Architecture +1605.06486 Distributed, Parallel, and Cluster Computing +1605.06491 Physics and Society +1605.06492 Optimization and Control +1605.06494 Accelerator Physics +hep-lat/0407017 Lattice +0802.0099 Phenomenology +0902.2774 Formal Languages and Automata Theory +1101.1192 +1101.1280 +1101.1282 +1101.2086 +1101.3884 +1106.4590 Classical Analysis and ODEs +1106.4859 +1109.3421 Materials Science +1109.4969 Geophysics +1112.0074 Algebraic Geometry +1203.3820 Phenomenology +1207.3796 High Energy Astrophysical Phenomena +1209.1055 +1210.4289 Programming Languages +1212.2454 Combinatorics +1301.0973 Combinatorics +1302.0521 Combinatorics +1303.3083 Combinatorics +1303.3347 Combinatorics +1305.2482 Algebraic Geometry +1306.2365 Methodology +1307.7539 Dynamical Systems +1308.5204 Theory +1310.1285 Computation and Language +1311.3681 Algebraic Topology +1311.6002 Combinatorics +1312.6856 Geometric Topology +1403.5060 Optimization and Control +1403.5825 Statistical Mechanics +1403.7211 Lattice +1404.4838 Algebraic Geometry +1404.5465 Statistics Theory +1405.5590 Programming Languages +1406.1108 Probability +1406.1910 Networking and Internet Architecture +1406.5566 +1406.5724 Logic +1406.6183 Analysis of PDEs +1406.6739 Representation Theory +1407.1552 +1407.6457 Representation Theory +1408.0590 Instrumentation and Detectors +1408.3544 Optics +1408.4068 Geometric Topology +1409.1450 +1409.3182 +1410.5023 Combinatorics +1411.5267 Materials Science +1412.3287 Differential Geometry +1412.7012 Machine Learning +1501.00210 Atomic Physics +1501.06565 Mesoscale and Nanoscale Physics +1502.00170 General Topology +1502.02511 Computational Engineering, Finance, and Science +1502.05551 Other Computer Science +1503.00888 Algebraic Topology +1503.03516 Earth and Planetary Astrophysics +1503.04766 +1503.04899 Networking and Internet Architecture +1503.05972 Computers and Society +1503.06913 Methodology +1504.01776 Algebraic Geometry +1504.02020 +1504.02813 Methodology +1504.03950 +1504.05041 Combinatorics +1504.07388 Combinatorics +1505.02061 Metric Geometry +1505.04174 Number Theory +1505.06602 Representation Theory +1505.06898 Populations and Evolution +1506.00296 +1506.04654 Computer Vision and Pattern Recognition +1506.06472 Learning +1506.08280 Metric Geometry +1507.00257 Databases +1507.02028 +1507.03329 Commutative Algebra +1507.05380 Superconductivity +1507.05502 Disordered Systems and Neural Networks +1507.05527 Programming Languages +1507.07161 Networking and Internet Architecture +1507.07267 Information Theory +1508.00014 K-Theory and Homology +1508.01687 Analysis of PDEs +1508.02020 Combinatorics +1508.02252 +1508.02704 Algebraic Geometry +1508.03039 Number Theory +1508.06448 +1508.07215 Astrophysics of Galaxies +1508.07338 +1509.00447 General Mathematics +1509.00882 Methodology +1509.04310 +1509.04563 Physics and Society +1509.05071 Statistical Mechanics +1509.06063 Algebraic Geometry +1509.06352 Probability +1510.01456 +1510.01678 Analysis of PDEs +1510.03817 Differential Geometry +1510.05625 Soft Condensed Matter +1510.05959 Statistical Mechanics +1511.00642 Representation Theory +1511.02407 Computer Vision and Pattern Recognition +1511.02801 Data Structures and Algorithms +1511.03616 Optimization and Control +1511.04404 Computer Vision and Pattern Recognition +1511.04629 Information Theory +1511.05616 Computer Vision and Pattern Recognition +1511.05727 Probability +1511.06216 Representation Theory +1511.06706 Mesoscale and Nanoscale Physics +1511.06943 Risk Management +1511.07509 Number Theory +1511.07791 Materials Science +1511.07984 Materials Science +1511.08936 Networking and Internet Architecture +1512.00950 +1512.01280 Dynamical Systems +1512.01600 Statistical Mechanics +1512.01617 Statistics Theory +1512.01684 Analysis of PDEs +1512.01852 Dynamical Systems +1512.01877 Quantum Algebra +1512.02464 Algebraic Geometry +1512.02763 Mesoscale and Nanoscale Physics +1512.03287 Materials Science +1512.04763 Phenomenology +1512.06068 Mesoscale and Nanoscale Physics +1512.07821 Statistical Mechanics +1512.07993 Strongly Correlated Electrons +1512.08052 +1512.08186 Superconductivity +1512.08639 +1601.00726 Fluid Dynamics +1601.01357 Geometric Topology +1601.01625 +1601.03793 Information Theory +1601.04294 Logic in Computer Science +1601.04305 Instrumentation and Detectors +1601.04445 Analysis of PDEs +1601.04581 Experiment +1601.05204 Mesoscale and Nanoscale Physics +1601.05594 Information Theory +1601.05843 Analysis of PDEs +1601.05948 Analysis of PDEs +1601.06046 Theory +1601.06198 Logic in Computer Science +1601.06413 Quantum Gases +1601.06761 Phenomenology +1601.06978 Information Theory +1602.00368 Differential Geometry +1602.01154 Computer Science and Game Theory +1602.01458 Information Theory +1602.02036 +1602.02608 Geometric Topology +1602.02792 Populations and Evolution +1602.03299 Geophysics +1602.03700 Algebraic Geometry +1602.03729 Programming Languages +1602.05945 Atomic Physics +1602.07265 Learning +1602.08267 Theory +1602.08918 Phenomenology +1603.00643 Metric Geometry +1603.01387 +1603.02177 Group Theory +1603.03820 Distributed, Parallel, and Cluster Computing +1603.04671 High Energy Astrophysical Phenomena +1603.05134 Combinatorics +1603.05632 Analysis of PDEs +1603.06418 +1603.06909 Mesoscale and Nanoscale Physics +1603.07656 Classical Analysis and ODEs +1603.07814 Statistical Mechanics +1603.08071 Computer Vision and Pattern Recognition +1604.01089 +1604.02573 Methodology +1604.03520 Geometric Topology +1604.04101 Soft Condensed Matter +1604.04228 Mesoscale and Nanoscale Physics +1604.04679 Superconductivity +1604.04918 Number Theory +1604.05330 Theory +1604.06801 Phenomenology +1604.08751 Plasma Physics +1605.00111 +1605.01343 Economics +1605.01526 Applications +1605.02038 Data Structures and Algorithms +1605.02346 Computer Vision and Pattern Recognition +1605.03257 Group Theory +1605.03763 Information Theory +1605.03916 Statistical Mechanics +1605.04033 Neurons and Cognition +1605.04363 Quantum Gases +1605.04591 Optimization and Control +1605.04700 Symplectic Geometry +1605.04826 Quantum Gases +1605.04889 +1605.05029 Classical Physics +1605.05237 General Physics +1605.05306 Mesoscale and Nanoscale Physics +1605.05951 +1605.06376 Machine Learning +1605.07152 Optics +1605.07650 Computer Vision and Pattern Recognition +1605.09088 Learning +1605.09576 Differential Geometry +1606.00259 Tissues and Organs +1606.00332 Algebraic Geometry +1606.00960 +1606.01583 Machine Learning +1606.02134 Soft Condensed Matter +1606.02374 Phenomenology +1606.02453 Statistical Mechanics +1606.02887 Phenomenology +1606.03073 Computer Vision and Pattern Recognition +1606.03336 Classical Analysis and ODEs +1606.03995 Theory +1606.04653 Soft Condensed Matter +1606.04835 Computation and Language +1606.04861 Information Theory +1606.05082 Fluid Dynamics +1606.06677 Phenomenology +1606.08145 Popular Physics +1606.08794 Algebraic Topology +1606.08869 +1607.00133 Machine Learning +1607.00446 Artificial Intelligence +1607.01012 Statistical Mechanics +1607.01617 Astrophysics of Galaxies +1607.01696 Strongly Correlated Electrons +1607.02452 Digital Libraries +1607.03085 Learning +1607.03209 Mesoscale and Nanoscale Physics +1607.04344 +1607.04590 Numerical Analysis +1607.05360 Theory +1607.05418 Neural and Evolutionary Computing +1607.05819 Cryptography and Security +1607.06130 Strongly Correlated Electrons +1607.06360 Lattice +1607.06605 Experiment +1607.06628 Geometric Topology +1607.07286 Logic in Computer Science +1607.07349 Classical Analysis and ODEs +1607.07762 Artificial Intelligence +1607.08846 Quantum Gases +1608.00067 Networking and Internet Architecture +1608.00236 Computation +1608.00294 +1608.00381 Information Theory +1608.00672 Cosmology and Nongalactic Astrophysics +1608.00954 Probability +1608.00955 Probability +1608.01319 Quantum Gases +1608.01814 +1608.02087 Computational Geometry +1608.02516 Differential Geometry +1608.03413 Logic +1608.04094 Mesoscale and Nanoscale Physics +1608.04220 +1608.04310 Materials Science +1608.04402 +1608.04545 Cosmology and Nongalactic Astrophysics +1608.05584 Strongly Correlated Electrons +1608.05958 +1608.06928 Number Theory +1608.07142 Algebraic Geometry +1608.07314 +1608.07334 Differential Geometry +1608.07349 Analysis of PDEs +1608.07985 Category Theory +1608.08121 Phenomenology +1608.08692 Atomic Physics +1608.08758 Analysis of PDEs +1608.08789 Statistics Theory +1608.08834 Algebraic Topology +1608.08919 Medical Physics +1608.08934 Representation Theory +1609.00095 Commutative Algebra +1609.00516 Algebraic Geometry +1609.01324 +1609.02015 Phenomenology +1609.02057 Optics +1609.02459 Solar and Stellar Astrophysics +1609.02614 Materials Science +1609.03619 Computer Vision and Pattern Recognition +1609.04548 Materials Science +1609.04625 +1609.05068 +1609.05900 Strongly Correlated Electrons +1609.06489 Number Theory +1609.06511 Physics and Society +1609.06867 Algebraic Geometry +1609.06919 Astrophysics of Galaxies +1609.07482 Accelerator Physics +1609.07618 Soft Condensed Matter +1609.07759 Phenomenology +1609.08705 Instrumentation and Methods for Astrophysics +1609.09177 Theory +1609.09190 +1609.09226 Social and Information Networks +1609.09305 Algebraic Geometry +1609.09533 Optics +1609.09691 Quantum Gases +1610.01329 Number Theory +1610.01464 +1610.01711 Mesoscale and Nanoscale Physics +1610.01785 Dynamical Systems +1610.01854 Computer Vision and Pattern Recognition +1610.02266 Materials Science +1610.02581 Machine Learning +1610.02841 Computational Geometry +1610.03323 Solar and Stellar Astrophysics +1610.03683 Materials Science +1610.03902 Emerging Technologies +1610.03933 Algebraic Topology +1610.03973 Mesoscale and Nanoscale Physics +1610.04401 Lattice +1610.04607 +1610.04631 Computer Vision and Pattern Recognition +1610.04691 Combinatorics +1610.04841 Computation and Language +1610.04893 Systems and Control +1610.05068 Data Structures and Algorithms +1610.05077 Experiment +1610.05192 Cosmology and Nongalactic Astrophysics +1610.05280 Methodology +1610.05328 Solar and Stellar Astrophysics +1610.05395 Analysis of PDEs +1610.05472 Computational Engineering, Finance, and Science +1610.05480 Number Theory +1610.05654 Neurons and Cognition +1610.05681 Phenomenology +1610.05829 Mesoscale and Nanoscale Physics +1610.05851 Classical Physics +1610.05867 Software Engineering +1610.05961 Data Structures and Algorithms +1610.06200 Atomic Physics +1610.06278 Dynamical Systems +1610.06352 Theory +1610.06570 Astrophysics of Galaxies +1610.06577 Astrophysics of Galaxies +1610.06620 Computation and Language +1610.06695 Materials Science +1610.06859 Molecular Networks +1610.06910 +1610.06920 Learning +1610.06921 Chemical Physics +1610.06922 Instrumentation and Detectors +1610.06923 Materials Science +1610.06924 Computer Vision and Pattern Recognition +1610.06928 High Energy Astrophysical Phenomena +1610.06934 Data Structures and Algorithms +1610.06935 Number Theory +1610.06936 Cryptography and Security +1610.06942 Disordered Systems and Neural Networks +1610.06943 Methodology +1610.06944 Chemical Physics +1610.06945 Tissues and Organs +1610.06946 Probability +1610.06947 Networking and Internet Architecture +1610.06948 Representation Theory +1610.06949 Machine Learning +1610.06950 Computational Complexity +1610.06956 Operator Algebras +1610.06959 Mesoscale and Nanoscale Physics +1610.06960 Statistics Theory +1610.06961 Analysis of PDEs +1610.06964 Complex Variables +1610.06965 Symplectic Geometry +1610.06967 Strongly Correlated Electrons +1610.06970 Solar and Stellar Astrophysics +1610.06971 Algebraic Topology +1610.06972 Artificial Intelligence +1610.06973 Numerical Analysis +1610.06974 Systems and Control +1610.06975 Probability +1610.06976 Commutative Algebra +1610.06977 Symplectic Geometry +1610.06978 Databases +1610.06979 Combinatorics +1610.06983 History and Overview +1610.06985 Computer Vision and Pattern Recognition +1610.06986 Phenomenology +1610.06987 Computer Vision and Pattern Recognition +1610.06991 Soft Condensed Matter +1610.06992 +1610.06993 Computational Physics +1610.06994 Phenomenology +1610.06996 Logic in Computer Science +1610.06997 Theory +1610.06998 Learning +1610.06999 Dynamical Systems +1610.07000 +1610.07005 Differential Geometry +1610.07006 Mesoscale and Nanoscale Physics +1610.07007 Algebraic Geometry +1610.07008 Computer Vision and Pattern Recognition +1610.07009 Computers and Society +1610.07010 Theory +1610.07017 Instrumentation and Detectors +1610.07018 Data Structures and Algorithms +1610.07019 +1610.07020 Materials Science +1610.07022 Materials Science +1610.07023 Materials Science +1610.07024 Applications +1610.07025 Materials Science +1610.07027 Probability +1610.07028 Statistical Finance +1610.07029 General Topology +1610.07033 Programming Languages +1610.07034 Information Theory +1610.07036 Analysis of PDEs +1610.07037 Information Theory +1610.07039 Algebraic Topology +1610.07041 Logic in Computer Science +1610.07043 Metric Geometry +1610.07045 Artificial Intelligence +1610.07046 +1610.07051 Exactly Solvable and Integrable Systems +1610.07055 Representation Theory +1610.07057 Geometric Topology +1610.07058 Number Theory +1610.07061 Digital Libraries +1610.07062 Cosmology and Nongalactic Astrophysics +1610.07063 Materials Science +1610.07064 Materials Science +1610.07065 Number Theory +1610.07066 Systems and Control +1610.07068 +1610.07070 Soft Condensed Matter +1610.07072 Numerical Analysis +1610.07073 Space Physics +1610.07074 Classical Physics +1610.07075 Numerical Analysis +1610.07077 Number Theory +1610.07078 +1610.07079 Dynamical Systems +1610.07080 Formal Languages and Automata Theory +1610.07081 Populations and Evolution +1610.07085 Accelerator Physics +1610.07089 Artificial Intelligence +1610.07090 Social and Information Networks +1610.07091 Computation and Language +1610.07092 Classical Analysis and ODEs +1610.07093 +1610.07095 Experiment +1610.07096 Combinatorics +1610.07098 Complex Variables +1610.07099 Biological Physics +1610.07104 Machine Learning +1610.07105 Mesoscale and Nanoscale Physics +1610.07108 Machine Learning +1610.07111 Quantum Gases +1610.07114 Computational Physics +1610.07116 Machine Learning +1610.07118 Programming Languages +1610.07120 Numerical Analysis +1610.07122 Geometric Topology +1610.07123 Methodology +1610.07124 Computational Physics +1610.07125 Algebraic Geometry +1610.07127 Optimization and Control +1610.07129 Computers and Society +1610.07130 +1610.07131 Probability +1610.07132 Mesoscale and Nanoscale Physics +1610.07133 Systems and Control +1610.07135 Numerical Analysis +1610.07136 Algebraic Topology +1610.07138 +1610.07140 Theory +1610.07141 Networking and Internet Architecture +1610.07142 Materials Science +1610.07143 Experiment +1610.07144 Computational Geometry +1610.07147 Probability +1610.07149 Computation and Language +1610.07150 Differential Geometry +1610.07151 Soft Condensed Matter +1610.07152 Soft Condensed Matter +1610.07153 Numerical Analysis +1610.07155 Complex Variables +1610.07159 Computer Vision and Pattern Recognition +1610.07160 Combinatorics +1610.07162 K-Theory and Homology +1610.07163 Differential Geometry +1610.07164 Category Theory +1610.07167 Dynamical Systems +1610.07168 Quantum Gases +1610.07169 +1610.07171 Analysis of PDEs +1610.07172 Analysis of PDEs +1610.07173 Materials Science +1610.07174 Algebraic Topology +1610.07175 Formal Languages and Automata Theory +1610.07176 +1610.07177 Discrete Mathematics +1610.07178 Rings and Algebras +1610.07182 Mesoscale and Nanoscale Physics +1610.07183 Learning +1610.07185 Physics and Society +1610.07186 Superconductivity +1610.07188 Solar and Stellar Astrophysics +1610.07190 Computational Complexity +1610.07191 High Energy Astrophysical Phenomena +1610.07193 Machine Learning +1610.07195 Algebraic Geometry +1610.07198 Formal Languages and Automata Theory +1610.07200 Combinatorics +1610.07201 Optimization and Control +1610.07203 Phenomenology +1610.07204 Optimization and Control +1610.07205 Theory +1610.07206 Differential Geometry +1610.07208 Combinatorics +1610.07209 Optics +1610.07210 Atomic Physics +1610.07212 Populations and Evolution +1610.07213 Methodology +1610.07214 Computer Vision and Pattern Recognition +1610.07215 Solar and Stellar Astrophysics +1610.07217 Methodology +1610.07218 Combinatorics +1610.07219 Combinatorics +1610.07220 Distributed, Parallel, and Cluster Computing +1610.07222 Methodology +1610.07223 Group Theory +1610.07224 +1610.07227 Number Theory +1610.07230 Solar and Stellar Astrophysics +1610.07231 Computer Vision and Pattern Recognition +1610.07232 Classical Analysis and ODEs +1610.07233 Robotics +1610.07234 Chemical Physics +1610.07235 Solar and Stellar Astrophysics +1610.07236 Programming Languages +1610.07237 +1610.07238 Computer Vision and Pattern Recognition +1610.07240 Information Theory +1610.07242 Algebraic Topology +1610.07244 +1610.07248 Probability +1610.07250 Information Theory +1610.07253 Group Theory +1610.07255 +1610.07256 Information Theory +1610.07260 Number Theory +1610.07268 Cosmology and Nongalactic Astrophysics +1610.07269 Number Theory +1610.07272 Computation and Language +1610.07275 Theory +1610.07276 Cryptography and Security +1610.07281 Category Theory +1610.07282 Systems and Control +1610.07283 +1610.07287 Statistical Finance +1610.07288 +1610.07289 Systems and Control +1610.07293 Mesoscale and Nanoscale Physics +1610.07296 +1610.07297 Information Theory +1610.07298 Physics and Society +1610.07299 Representation Theory +1610.07300 +1610.07302 Functional Analysis +1610.07304 Information Theory +1610.07307 Combinatorics +1610.07309 Classical Analysis and ODEs +1610.07311 Optimization and Control +1610.07313 Theory +1610.07315 Numerical Analysis +1610.07317 Differential Geometry +1610.07318 Chemical Physics +1610.07319 +1610.07320 Probability +1610.07321 +1610.07323 Solar and Stellar Astrophysics +1610.07324 Computer Vision and Pattern Recognition +1610.07325 +1610.07326 Materials Science +1610.07327 Information Theory +1610.07328 Information Retrieval +1610.07330 +1610.07332 Solar and Stellar Astrophysics +1610.07334 Combinatorics +1610.07336 Computer Vision and Pattern Recognition +1610.07337 +1610.07338 +1610.07342 Exactly Solvable and Integrable Systems +1610.07344 Biological Physics +1610.07345 Analysis of PDEs +1610.07348 High Energy Astrophysical Phenomena +1610.07351 Functional Analysis +1610.07352 Number Theory +1610.07353 Systems and Control +1610.07357 Solar and Stellar Astrophysics +1610.07359 Differential Geometry +1610.07361 Probability +1610.07363 Computation and Language +1610.07365 Computation and Language +1610.07366 General Topology +1610.07369 Analysis of PDEs +1610.07371 Distributed, Parallel, and Cluster Computing +1610.07372 Metric Geometry +1610.07373 Genomics +1610.07374 Computers and Society +1610.07375 +1610.07376 Analysis of PDEs +1610.07377 Algebraic Geometry +1610.07378 +1610.07379 Machine Learning +1610.07381 Computer Vision and Pattern Recognition +1610.07383 Probability +1610.07384 Optimization and Control +1610.07385 Instrumentation and Methods for Astrophysics +1610.07386 Multimedia +1610.07387 Information Theory +1610.07391 Probability +1610.07394 Distributed, Parallel, and Cluster Computing +1610.07395 Number Theory +1610.07400 Numerical Analysis +1610.07402 Cosmology and Nongalactic Astrophysics +1610.07403 Statistics Theory +1610.07404 Networking and Internet Architecture +1610.07405 Information Theory +1610.07406 Populations and Evolution +1610.07410 Software Engineering +1610.07412 Lattice +1610.07413 Materials Science +1610.07416 Superconductivity +1610.07417 Optics +1610.07418 Computation and Language +1610.07419 Networking and Internet Architecture +1610.07420 Computation and Language +1610.07422 +1610.07424 Digital Libraries +1610.07427 High Energy Astrophysical Phenomena +1610.07428 Algebraic Geometry +1610.07430 Probability +1610.07432 Artificial Intelligence +1610.07434 Data Structures and Algorithms +1610.07436 Differential Geometry +1610.07438 Cellular Automata and Lattice Gases +1610.07439 Lattice +1610.07440 Number Theory +1610.07446 Materials Science +1610.07447 Group Theory +1610.07450 Analysis of PDEs +1610.07452 Materials Science +1610.07453 Methodology +1610.07455 Cosmology and Nongalactic Astrophysics +1610.07456 +1610.07457 Medical Physics +1610.07458 Social and Information Networks +1610.07459 Distributed, Parallel, and Cluster Computing +1610.07462 +1610.07463 History and Philosophy of Physics +1610.07464 Complex Variables +1610.07467 +1610.07469 Group Theory +1610.07470 Solar and Stellar Astrophysics +1610.07471 Number Theory +1610.07473 Mesoscale and Nanoscale Physics +1610.07475 Computer Vision and Pattern Recognition +1610.07479 +1610.07481 Probability +1610.07483 Instrumentation and Methods for Astrophysics +1610.07485 Applications +1610.07486 Number Theory +1610.07491 Phenomenology +1610.07492 Soft Condensed Matter +1610.07493 +1610.07496 Digital Libraries +1610.07497 Information Theory +1610.07498 +1610.07499 Computational Complexity +1610.07500 Logic +1610.07501 Hardware Architecture +1610.07504 +1610.07505 Artificial Intelligence +1610.07507 Statistics Theory +1610.07508 Metric Geometry +1610.07510 Tissues and Organs +1610.07511 Soft Condensed Matter +1610.07514 Soft Condensed Matter +1610.07515 Group Theory +1610.07516 Solar and Stellar Astrophysics +1610.07517 Dynamical Systems +1610.07520 Systems and Control +1610.07521 Experiment +1610.07522 +1610.07524 Applications +1610.07528 Geometric Topology +1610.07530 Data Structures and Algorithms +1610.07532 Plasma Physics +1610.07534 +1610.07535 Formal Languages and Automata Theory +1610.07538 Astrophysics of Galaxies +1610.07539 Number Theory +1610.07541 Algebraic Geometry +1610.07542 Probability +1610.07545 Phenomenology +1610.07549 Populations and Evolution +1610.07550 Methodology +1610.07551 Optimization and Control +1610.07553 Logic +1610.07554 Statistics Theory +1610.07555 Differential Geometry +1610.07556 Optimization and Control +1610.07560 Computer Vision and Pattern Recognition +1610.07562 Computational Physics +1610.07563 Learning +1610.07564 Information Theory +1610.07565 Strongly Correlated Electrons +1610.07567 Representation Theory +1610.07569 Computation and Language +1610.07570 Computer Vision and Pattern Recognition +1610.07571 Materials Science +1610.07572 Experiment +1610.07574 Phenomenology +1610.07577 Human-Computer Interaction +1610.07578 +1610.07582 Dynamical Systems +1610.07583 Methodology +1610.07585 Experiment +1610.07592 Astrophysics of Galaxies +cond-mat/0408297 Soft Condensed Matter +math/0112068 Combinatorics +0801.1927 Human-Computer Interaction +0905.0200 Human-Computer Interaction +1007.0768 Mesoscale and Nanoscale Physics +1103.6056 Mesoscale and Nanoscale Physics +1110.1661 General Physics +1201.3474 Functional Analysis +1203.4464 Differential Geometry +1208.6253 Probability +1209.2031 Instrumentation and Methods for Astrophysics +1210.6781 Probability +1212.1379 Probability +1301.2876 Probability +1306.5645 Combinatorics +1307.0221 Probability +1308.1796 Probability +1311.1431 Symplectic Geometry +1312.0212 +1403.7942 Analysis of PDEs +1404.3344 Dynamical Systems +1405.1791 Applications +1405.2609 Mathematical Finance +1405.3670 Materials Science +1405.6819 Probability +1406.7608 Software Engineering +1407.0486 Materials Science +1407.2420 Probability +1408.3522 Metric Geometry +1409.3905 Probability +1410.2772 Combinatorics +1410.4593 Statistics Theory +1410.6205 Complex Variables +1411.1874 Functional Analysis +1411.2318 Functional Analysis +1411.6494 Statistical Mechanics +1411.7577 Soft Condensed Matter +1412.1044 Artificial Intelligence +1412.3158 Applications +1412.4240 Differential Geometry +1412.7647 Risk Management +1412.7985 Probability +1501.05118 Functional Analysis +1501.07635 Optimization and Control +1502.04496 Distributed, Parallel, and Cluster Computing +1502.06468 Analysis of PDEs +1503.03995 Mesoscale and Nanoscale Physics +1503.08452 Statistics Theory +1504.05487 Learning +1504.07164 Algebraic Geometry +1504.07800 Analysis of PDEs +1504.08292 Analysis of PDEs +1505.01699 Other Condensed Matter +1505.03273 Logic in Computer Science +1505.04722 Applications +1506.01483 Commutative Algebra +1506.03480 Materials Science +1506.07004 Classical Analysis and ODEs +1507.01090 Numerical Analysis +1507.01860 Algebraic Geometry +1507.02767 Differential Geometry +1507.02848 Probability +1507.04194 Probability +1507.06675 Rings and Algebras +1507.06856 Computational Geometry +1508.00265 Numerical Analysis +1508.01502 Theory +1508.02601 Molecular Networks +1508.06647 Astrophysics of Galaxies +1508.07011 Quantum Gases +1509.00167 Information Theory +1509.00346 +1509.06500 Probability +1509.07539 Group Theory +1510.03298 Computation +1510.03745 Statistical Mechanics +1510.04030 +1510.05508 Soft Condensed Matter +1510.05812 Other Condensed Matter +1510.06263 Robotics +1511.00182 Quantitative Methods +1511.00382 Probability +1511.01086 Operator Algebras +1511.01736 Phenomenology +1511.04149 +1511.06337 Combinatorics +1511.06692 Computer Vision and Pattern Recognition +1511.06814 Number Theory +1512.01987 Chemical Physics +1512.02224 Strongly Correlated Electrons +1512.02468 +1512.04253 Theory +1512.04292 Chemical Physics +1512.04576 Materials Science +1512.05987 +1512.06039 Soft Condensed Matter +1512.06454 Mathematical Finance +1512.07774 Mesoscale and Nanoscale Physics +1512.08033 Classical Physics +1601.00589 Astrophysics of Galaxies +1601.01875 Differential Geometry +1601.03182 Probability +1601.04619 Computer Vision and Pattern Recognition +1601.05715 Probability +1601.07711 High Energy Astrophysical Phenomena +1602.02767 +1602.02873 Cosmology and Nongalactic Astrophysics +1602.03433 +1602.05359 Analysis of PDEs +1602.07167 Combinatorics +1602.07596 +1602.07728 Atomic Physics +1602.08324 Probability +1602.08963 Functional Analysis +1603.02325 Optics +1603.03363 Materials Science +1603.03758 Computation and Language +1603.05890 Astrophysics of Galaxies +1603.06320 +1603.06574 Solar and Stellar Astrophysics +1603.06758 General Mathematics +1603.08646 Populations and Evolution +1603.09051 Artificial Intelligence +1603.09604 Quantum Gases +1604.01203 Soft Condensed Matter +1604.02118 Probability +1604.02493 Materials Science +1604.03106 Cosmology and Nongalactic Astrophysics +1604.06064 Materials Science +1604.06353 Mesoscale and Nanoscale Physics +1604.06405 +1604.06582 Computer Vision and Pattern Recognition +1604.08446 Group Theory +1604.08667 Robotics +1604.08738 Data Structures and Algorithms +1604.08766 Pattern Formation and Solitons +1605.00094 Soft Condensed Matter +1605.00754 Theory +1605.01545 Theory +1605.01589 Probability +1605.01615 Cosmology and Nongalactic Astrophysics +1605.02214 Statistics Theory +1605.02357 Quantum Gases +1605.02439 Atomic Physics +1605.03080 Soft Condensed Matter +1605.03455 Analysis of PDEs +1605.03739 Quantum Gases +1605.05164 Numerical Analysis +1605.05376 Earth and Planetary Astrophysics +1605.05763 Atomic Physics +1605.05781 Materials Science +1605.07805 Formal Languages and Automata Theory +1605.08053 +1605.08539 Mesoscale and Nanoscale Physics +1605.08758 Theory +1605.09091 Phenomenology +1605.09392 Strongly Correlated Electrons +1606.00215 Distributed, Parallel, and Cluster Computing +1606.00618 Theory +1606.00785 Sound +1606.02678 Mesoscale and Nanoscale Physics +1606.03679 Optics +1606.05045 Combinatorics +1606.05372 Mesoscale and Nanoscale Physics +1606.07582 Strongly Correlated Electrons +1606.08486 +1606.08544 History and Overview +1607.00770 Strongly Correlated Electrons +1607.01308 Analysis of PDEs +1607.01712 Materials Science +1607.02086 Classical Analysis and ODEs +1607.03390 Computation +1607.03429 Materials Science +1607.04605 Theory +1607.04925 Mesoscale and Nanoscale Physics +1607.05746 Information Retrieval +1607.06286 Analysis of PDEs +1607.06362 Analysis of PDEs +1607.06779 Methodology +1608.02223 Representation Theory +1608.03759 Networking and Internet Architecture +1608.04714 Earth and Planetary Astrophysics +1608.05119 Data Analysis, Statistics and Probability +1608.05198 Algebraic Geometry +1608.05880 Number Theory +1608.05882 Number Theory +1608.05971 Computer Vision and Pattern Recognition +1608.06925 Soft Condensed Matter +1608.06986 Human-Computer Interaction +1608.07624 Strongly Correlated Electrons +1608.07662 Computational Geometry +1608.08041 Human-Computer Interaction +1608.08316 Astrophysics of Galaxies +1608.08330 Programming Languages +1608.08353 Human-Computer Interaction +1608.08522 Distributed, Parallel, and Cluster Computing +1608.08538 Data Structures and Algorithms +1608.08779 Logic in Computer Science +1608.08851 Computer Vision and Pattern Recognition +1609.00084 Complex Variables +1609.00161 Data Structures and Algorithms +1609.00369 Classical Analysis and ODEs +1609.00373 Combinatorics +1609.00375 Cosmology and Nongalactic Astrophysics +1609.00377 Theory +1609.00380 Cosmology and Nongalactic Astrophysics +1609.00381 Cosmology and Nongalactic Astrophysics +1609.00383 +1609.00384 Astrophysics of Galaxies +1609.00389 Plasma Physics +1609.00396 Formal Languages and Automata Theory +1609.00400 Number Theory +1609.00404 +1609.00406 +1609.00410 Number Theory +1609.00411 Analysis of PDEs +1609.00412 Numerical Analysis +1609.00415 General Finance +1609.00416 +1609.00417 Computational Physics +1609.00419 Information Theory +1609.00420 Combinatorics +1609.00421 +1609.00424 Networking and Internet Architecture +1609.00425 Computation and Language +1609.00426 Networking and Internet Architecture +1609.00427 Social and Information Networks +1609.00431 Optics +1609.00439 Human-Computer Interaction +1609.00440 Number Theory +1609.00443 +1609.00445 Strongly Correlated Electrons +1609.00446 Computer Vision and Pattern Recognition +1609.00451 Methodology +1609.00453 Combinatorics +1609.00454 Algebraic Geometry +1609.00457 +1609.00462 Artificial Intelligence +1609.00463 Numerical Analysis +1609.00467 Optimization and Control +1609.00469 Physics and Society +1609.00471 Fluid Dynamics +1609.00472 Materials Science +1609.00473 Materials Science +1609.00475 Networking and Internet Architecture +1609.00476 Group Theory +1609.00477 +1609.00480 History and Overview +1609.00482 +1609.00483 Information Theory +1609.00485 Mesoscale and Nanoscale Physics +1609.00486 Statistical Mechanics +1609.00487 Solar and Stellar Astrophysics +1609.00488 Differential Geometry +1609.00491 Neurons and Cognition +1609.00492 Chemical Physics +1609.00495 Classical Analysis and ODEs +1609.00498 Numerical Analysis +1609.00500 Fluid Dynamics +1609.00501 Earth and Planetary Astrophysics +1609.00502 Experiment +1609.00503 Exactly Solvable and Integrable Systems +1609.00509 Number Theory +1609.00511 Information Retrieval +1609.00513 Theory +1609.00514 Information Retrieval +1609.00515 Combinatorics +1609.00517 Geometric Topology +1609.00518 Group Theory +1609.00519 Analysis of PDEs +1609.00525 Number Theory +1609.00526 Mesoscale and Nanoscale Physics +1609.00530 Combinatorics +1609.00533 Probability +1609.00536 Social and Information Networks +1609.00539 Geophysics +1609.00541 Materials Science +1609.00542 Materials Science +1609.00543 Social and Information Networks +1609.00544 Data Structures and Algorithms +1609.00546 Instrumentation and Methods for Astrophysics +1609.00547 Atmospheric and Oceanic Physics +1609.00548 Lattice +1609.00549 Information Theory +1609.00550 Quantum Gases +1609.00552 Information Retrieval +1609.00554 Risk Management +1609.00555 Mesoscale and Nanoscale Physics +1609.00556 Fluid Dynamics +1609.00557 Biological Physics +1609.00559 Computation and Language +1609.00560 Soft Condensed Matter +1609.00561 Mesoscale and Nanoscale Physics +1609.00563 Probability +1609.00566 Algebraic Geometry +1609.00567 Optics +1609.00568 Solar and Stellar Astrophysics +1609.00570 Differential Geometry +1609.00571 General Topology +1609.00577 Machine Learning +1609.00578 Geophysics +1609.00579 Geophysics +1609.00580 +1609.00582 Probability +1609.00583 Numerical Analysis +1609.00586 Emerging Technologies +1609.00588 Representation Theory +1609.00591 Combinatorics +1609.00592 Solar and Stellar Astrophysics +1609.00595 Commutative Algebra +1609.00597 Materials Science +1609.00600 High Energy Astrophysical Phenomena +1609.00604 Operator Algebras +1609.00605 Dynamical Systems +1609.00606 Methodology +1609.00608 Spectral Theory +1609.00609 Phenomenology +1609.00610 Formal Languages and Automata Theory +1609.00611 Mesoscale and Nanoscale Physics +1609.00614 +1609.00615 Materials Science +1609.00616 Cryptography and Security +1609.00617 Numerical Analysis +1609.00618 Fluid Dynamics +1609.00620 Populations and Evolution +1609.00627 Computers and Society +1609.00628 Optics +1609.00629 Computer Vision and Pattern Recognition +1609.00630 Instrumentation and Detectors +1609.00631 Soft Condensed Matter +1609.00632 Geometric Topology +1609.00635 Methodology +1609.00638 Social and Information Networks +1609.00642 Differential Geometry +1609.00643 +1609.00646 Algebraic Geometry +1609.00648 Materials Science +1609.00651 Robotics +1609.00652 Complex Variables +1609.00653 Networking and Internet Architecture +1609.00655 Optimization and Control +1609.00656 Methodology +1609.00658 Neurons and Cognition +1609.00661 Machine Learning +1609.00662 Statistical Mechanics +1609.00664 Networking and Internet Architecture +1609.00670 Numerical Analysis +1609.00671 Numerical Analysis +1609.00674 Combinatorics +1609.00675 Probability +1609.00677 Applications +1609.00681 Chaotic Dynamics +1609.00683 Information Retrieval +1609.00686 Learning +1609.00687 Probability +1609.00690 +1609.00693 Mesoscale and Nanoscale Physics +1609.00694 Optimization and Control +1609.00697 +1609.00698 Optics +1609.00699 Dynamical Systems +1609.00701 Mesoscale and Nanoscale Physics +1609.00705 Analysis of PDEs +1609.00706 Phenomenology +1609.00707 Earth and Planetary Astrophysics +1609.00709 Popular Physics +1609.00710 Statistics Theory +1609.00715 Classical Analysis and ODEs +1609.00717 Cosmology and Nongalactic Astrophysics +1609.00718 Computation and Language +0905.4329 +0912.0307 Quantum Algebra +1004.1785 Differential Geometry +1007.2387 Representation Theory +1008.2403 Functional Analysis +1008.3808 Analysis of PDEs +1105.0901 Phenomenology +1109.1459 History and Overview +1207.3863 Artificial Intelligence +1207.3874 Artificial Intelligence +1207.5716 +1209.3751 Logic +1212.3506 Algebraic Geometry +1212.4519 +1303.3939 Probability +1303.4876 +1304.0813 Operator Algebras +1305.6041 Classical Physics +1307.5250 Neurons and Cognition +1308.0342 Fluid Dynamics +1308.4258 Symplectic Geometry +1310.3554 Functional Analysis +1311.1284 Quantum Gases +1311.6611 Differential Geometry +1311.6756 Methodology +1311.7513 Statistics Theory +1312.7692 Quantum Algebra +1401.0398 Statistics Theory +1401.1177 Probability +1401.2956 Superconductivity +1402.1382 Algebraic Geometry +1403.3920 Statistics Theory +1403.4910 Programming Languages +1404.0932 Plasma Physics +1404.1555 +1404.4034 Algebraic Topology +1404.6237 High Energy Astrophysical Phenomena +1405.6454 Combinatorics +1405.6548 Analysis of PDEs +1405.7767 Number Theory +1406.3867 Physics Education +1406.4969 Networking and Internet Architecture +1406.5540 Applications +1406.7028 Probability +1407.1096 Optimization and Control +1407.6689 Classical Analysis and ODEs +1408.0241 Statistics Theory +1408.1587 Analysis of PDEs +1408.6869 Statistical Mechanics +1409.0031 Machine Learning +1409.1425 Analysis of PDEs +1409.2190 Differential Geometry +1409.6556 Cryptography and Security +1409.6665 Number Theory +1410.4164 Algebraic Geometry +1410.6183 +1411.0561 Geometric Topology +1412.1147 Quantum Algebra +1412.5163 Number Theory +1412.6324 Statistical Mechanics +1412.6737 Differential Geometry +1412.7545 High Energy Astrophysical Phenomena +1412.8035 Representation Theory +1412.8132 Statistics Theory +1502.00472 Superconductivity +1502.00993 Data Structures and Algorithms +1502.02470 Number Theory +1502.02637 Probability +1502.06321 Information Theory +1503.01087 High Energy Astrophysical Phenomena +1503.01430 Dynamical Systems +1503.02698 Machine Learning +1503.04439 Theory +1503.05207 Algebraic Geometry +1503.08422 Soft Condensed Matter +1504.00286 +1504.03940 Biomolecules +1504.04886 Quantum Algebra +1504.06723 +1505.03532 Distributed, Parallel, and Cluster Computing +1505.04721 Number Theory +1505.06045 Theory +1505.06059 Commutative Algebra +1505.06649 Operator Algebras +1506.00627 Physics and Society +1506.01310 Multiagent Systems +1506.04915 Methodology +1506.06294 Social and Information Networks +1507.00075 Mesoscale and Nanoscale Physics +1507.00633 +1507.01192 Representation Theory +1507.03040 Machine Learning +1507.04150 Probability +1507.05948 Physics Education +1507.05981 Combinatorics +1507.07188 Commutative Algebra +1507.08089 Functional Analysis +1507.08266 Statistics Theory +1508.00313 Combinatorics +1508.02568 Combinatorics +1508.02845 Optimization and Control +1508.04057 Algebraic Geometry +1508.04208 Functional Analysis +1508.05242 Soft Condensed Matter +1508.07675 Analysis of PDEs +1509.00106 Optimization and Control +1509.00887 Complex Variables +1509.02188 General Topology +1509.03466 +1509.04493 Algebraic Geometry +1509.05331 +1509.05599 Algebraic Topology +1509.06763 +1510.00058 Pattern Formation and Solitons +1510.02081 Quantum Gases +1510.02643 Combinatorics +1510.03346 Computers and Society +1510.05118 Statistical Finance +1510.05528 Statistical Mechanics +1510.06334 Number Theory +1510.06920 Machine Learning +1510.07636 Statistical Mechanics +1510.08717 Category Theory +1510.08724 Algebraic Topology +1511.01260 +1511.01733 Representation Theory +1511.02531 Phenomenology +1511.03303 Phenomenology +1511.04619 Strongly Correlated Electrons +1511.05152 Earth and Planetary Astrophysics +1511.07610 +1511.08435 Information Theory +1511.08787 Phenomenology +1512.00551 Analysis of PDEs +1512.01012 Quantum Gases +1512.01167 Phenomenology +1512.01744 Algebraic Geometry +1512.02266 Artificial Intelligence +1512.02888 Cryptography and Security +1512.04138 Computational Complexity +1512.04363 Solar and Stellar Astrophysics +1512.05442 Metric Geometry +1512.08344 Combinatorics +1512.08775 Applications +1512.08987 Astrophysics of Galaxies +1601.00966 +1601.01379 Information Theory +1601.01729 High Energy Astrophysical Phenomena +1601.02202 Number Theory +1601.02205 Number Theory +1601.02207 Disordered Systems and Neural Networks +1601.02208 Algebraic Geometry +1601.02689 +1601.03169 Mesoscale and Nanoscale Physics +1601.03433 Number Theory +1601.03698 Probability +1601.04951 Differential Geometry +1601.05161 Information Theory +1601.05265 Phenomenology +1601.05294 Theory +1601.06199 Algebraic Geometry +1601.06531 Computational Physics +1601.06533 Methodology +1601.07828 +1602.00532 Quantum Algebra +1602.01857 +1602.02280 Strongly Correlated Electrons +1602.02486 Functional Analysis +1602.04621 Learning +1602.05988 +1602.07088 +1602.07613 Computer Vision and Pattern Recognition +1602.08072 Logic +1603.00220 Strongly Correlated Electrons +1603.01115 Information Theory +1603.01246 General Topology +1603.01831 Number Theory +1603.03127 Experiment +1603.04065 Earth and Planetary Astrophysics +1603.04424 +1603.04851 Cosmology and Nongalactic Astrophysics +1603.05017 Statistical Mechanics +1603.05033 Optimization and Control +1603.05585 Mesoscale and Nanoscale Physics +1603.05806 +1603.05956 +1603.06195 Phenomenology +1603.06292 Theory +1603.06330 Statistical Mechanics +1603.06817 Instrumentation and Detectors +1603.07206 Group Theory +1603.09091 Analysis of PDEs +1603.09317 Theory +1603.09385 Quantum Gases +1603.09685 Probability +1604.00057 Analysis of PDEs +1604.00225 Phenomenology +1604.00266 Artificial Intelligence +1604.00947 Atomic Physics +1604.01057 Number Theory +1604.01738 Numerical Analysis +1604.01951 Phenomenology +1604.03191 Statistical Mechanics +1604.03269 Methodology +1604.03830 Mesoscale and Nanoscale Physics +1604.04451 Learning +1604.04458 Algebraic Geometry +1604.04716 Software Engineering +1604.04747 Commutative Algebra +1604.05914 Plasma Physics +1604.06500 +1604.06746 Phenomenology +1604.06812 Category Theory +1604.07303 Differential Geometry +1604.07610 Earth and Planetary Astrophysics +1605.00144 Soft Condensed Matter +1605.00389 Optics +1605.00501 Number Theory +1605.00811 Instrumentation and Detectors +1605.01504 Astrophysics of Galaxies +1605.01547 Group Theory +1605.02511 Chemical Physics +1605.02679 Phenomenology +1605.03208 Probability +1605.03280 Statistics Theory +1605.03659 High Energy Astrophysical Phenomena +1605.04514 Strongly Correlated Electrons +1605.04797 Graphics +1605.05172 Computation and Language +1605.05387 Group Theory +1605.05536 Number Theory +1605.05884 Superconductivity +1605.06701 Combinatorics +1605.07485 Experiment +1605.09007 Superconductivity +1605.09196 Machine Learning +1605.09455 Spectral Theory +1606.00326 +1606.00675 Phenomenology +1606.01778 Logic +1606.01994 Computation and Language +1606.02239 Cryptography and Security +1606.02792 Computer Vision and Pattern Recognition +1606.02932 +1606.03140 +1606.03192 Computation and Language +1606.03329 Artificial Intelligence +1606.03818 Numerical Analysis +1606.04058 Statistical Mechanics +1606.05154 +1606.05683 Atomic Physics +1606.05959 Theory +1606.06010 Probability +1606.07219 Information Retrieval +1606.07326 Computer Vision and Pattern Recognition +1606.07347 Systems and Control +1606.07487 Human-Computer Interaction +1606.07711 Artificial Intelligence +1606.08334 Optics +1606.08426 Representation Theory +1606.08514 Artificial Intelligence +1606.08539 +1606.08591 Mesoscale and Nanoscale Physics +1606.08600 High Energy Astrophysical Phenomena +1606.08698 Learning +1606.08843 Phenomenology +1606.08886 Differential Geometry +1606.08948 Software Engineering +1606.08998 Computer Vision and Pattern Recognition +1606.09088 Group Theory +1606.09187 Computer Vision and Pattern Recognition +1606.09291 Strongly Correlated Electrons +1606.09446 Social and Information Networks +1606.09477 Superconductivity +1606.09588 Combinatorics +1606.09589 Computers and Society +1606.09633 Dynamical Systems +1607.00050 Numerical Analysis +1607.00052 Group Theory +1607.00139 Computation and Language +1607.00239 Other Condensed Matter +1607.00376 Physics and Society +1607.00377 Analysis of PDEs +1607.00378 Other Computer Science +1607.00379 Other Computer Science +1607.00392 Quantum Gases +1607.00394 +1607.00395 Phenomenology +1607.00400 Combinatorics +1607.00401 High Energy Astrophysical Phenomena +1607.00402 Combinatorics +1607.00405 Computers and Society +1607.00407 Operator Algebras +1607.00410 Computation and Language +1607.00411 Applications +1607.00412 Superconductivity +1607.00414 Classical Analysis and ODEs +1607.00415 Dynamical Systems +1607.00417 Computer Vision and Pattern Recognition +1607.00418 Analysis of PDEs +1607.00419 Dynamical Systems +1607.00420 Combinatorics +1607.00421 Social and Information Networks +1607.00423 Probability +1607.00424 Artificial Intelligence +1607.00425 Medical Physics +1607.00428 Artificial Intelligence +1607.00429 Analysis of PDEs +1607.00430 Fluid Dynamics +1607.00431 Logic in Computer Science +1607.00433 Earth and Planetary Astrophysics +1607.00435 Neurons and Cognition +1607.00436 Social and Information Networks +1607.00438 Strongly Correlated Electrons +1607.00440 Instrumentation and Methods for Astrophysics +1607.00441 Materials Science +1607.00442 Robotics +1607.00443 Computational Complexity +1607.00445 Geometric Topology +1607.00448 Risk Management +1607.00451 Optimization and Control +1607.00452 Mesoscale and Nanoscale Physics +1607.00453 Differential Geometry +1607.00458 Analysis of PDEs +1607.00459 High Energy Astrophysical Phenomena +1607.00461 Dynamical Systems +1607.00464 Computer Vision and Pattern Recognition +1607.00466 Learning +1607.00467 Information Theory +1607.00468 +1607.00470 Computer Vision and Pattern Recognition +1607.00473 Combinatorics +1607.00474 Social and Information Networks +1607.00475 Software Engineering +1607.00477 Soft Condensed Matter +1607.00478 Software Engineering +1607.00479 Medical Physics +1607.00481 Rings and Algebras +1607.00482 Analysis of PDEs +1607.00483 Populations and Evolution +1607.00489 Spectral Theory +1607.00490 Information Theory +1607.00492 Probability +1607.00497 Cryptography and Security +1607.00498 Earth and Planetary Astrophysics +1607.00499 Earth and Planetary Astrophysics +1607.00501 Computer Vision and Pattern Recognition +1607.00502 Information Theory +1607.00504 Soft Condensed Matter +1607.00507 Information Theory +1607.00508 Combinatorics +1607.00509 Computers and Society +1607.00510 Information Theory +1607.00511 Information Theory +1607.00512 Materials Science +1607.00514 Numerical Analysis +1607.00516 Neurons and Cognition +1607.00517 General Topology +1607.00519 Metric Geometry +1607.00520 Optics +1607.00521 Mesoscale and Nanoscale Physics +1607.00523 Number Theory +1607.00527 Differential Geometry +1607.00530 Materials Science +1607.00533 Information Theory +1607.00534 Computation and Language +1607.00538 Computational Geometry +1607.00542 Social and Information Networks +1607.00546 Algebraic Topology +1607.00547 Combinatorics +1607.00548 Computer Vision and Pattern Recognition +1607.00549 Optimization and Control +1607.00550 Information Theory +1607.00552 Probability +1607.00553 Optimization and Control +1607.00554 Formal Languages and Automata Theory +1607.00555 +1607.00556 Learning +1607.00561 Other Quantitative Biology +1607.00562 Robotics +1607.00563 Combinatorics +1607.00566 Dynamical Systems +1607.00569 Atmospheric and Oceanic Physics +1607.00570 Information Retrieval +1607.00571 Numerical Analysis +1607.00572 Materials Science +1607.00574 +1607.00576 Number Theory +1607.00577 Computer Vision and Pattern Recognition +1607.00578 Computation and Language +1607.00579 Number Theory +1607.00580 Dynamical Systems +1607.00581 Analysis of PDEs +1607.00582 Computer Vision and Pattern Recognition +1607.00584 Analysis of PDEs +1607.00592 Computer Vision and Pattern Recognition +1607.00595 Systems and Control +1607.00596 +1607.00598 Computer Vision and Pattern Recognition +1607.00599 Materials Science +1607.00600 Optimization and Control +1607.00601 Dynamical Systems +1607.00602 Phenomenology +1607.00603 Phenomenology +1607.00604 Networking and Internet Architecture +1607.00607 Software Engineering +1607.00608 Quantum Algebra +1607.00610 +1607.00613 Materials Science +1607.00614 Analysis of PDEs +1607.00616 Probability +1607.00620 Mesoscale and Nanoscale Physics +1607.00623 Computation and Language +1607.00624 Statistics Theory +1607.00627 +1607.00628 Earth and Planetary Astrophysics +1607.00630 Solar and Stellar Astrophysics +1607.00633 Logic in Computer Science +1607.00634 Complex Variables +1607.00635 Phenomenology +1607.00636 Dynamical Systems +1607.00638 Mathematical Finance +1607.00643 Combinatorics +1607.00644 Robotics +1607.00645 Probability +1607.00647 Information Retrieval +1607.00649 Instrumentation and Detectors +1607.00652 General Mathematics +1607.00653 Social and Information Networks +1607.00656 Artificial Intelligence +1607.00657 Differential Geometry +1607.00658 Discrete Mathematics +1607.00659 Computer Vision and Pattern Recognition +1607.00660 Metric Geometry +1607.00662 Computer Vision and Pattern Recognition +1607.00664 Geometric Topology +1607.00665 +1607.00667 Hardware Architecture +1607.00673 Statistics Theory +1607.00674 Applications +1607.00675 Information Theory +1607.00677 Complex Variables +1607.00678 Logic in Computer Science +1607.00681 Analysis of PDEs +1607.00682 Probability +1607.00683 Logic +1607.00684 Logic +1607.00686 Combinatorics +1607.00687 Rings and Algebras +1607.00689 Functional Analysis +1607.00690 +1607.00695 Multiagent Systems +1607.00697 Neurons and Cognition +1607.00698 Methodology +1607.00699 Methodology +1607.00700 Combinatorics +1607.00703 Algebraic Topology +1607.00706 Machine Learning +1607.00707 Dynamical Systems +1607.00709 Number Theory +1607.00715 Artificial Intelligence +1607.00718 Computation and Language +1607.00719 Multimedia +1607.00721 Mathematical Finance +1607.00722 Quantum Algebra +1607.00723 Logic +1607.00724 Probability +1607.00727 Theory +1607.00731 Dynamical Systems +1607.00733 Commutative Algebra +1607.00736 Number Theory +1607.00741 Materials Science +1607.00743 Statistics Theory +1607.00746 Mesoscale and Nanoscale Physics +1607.00748 Probability +1607.00749 Rings and Algebras +1607.00753 Probability +1607.00754 Probability +1607.00756 Risk Management +1607.00757 Group Theory +1607.00760 Probability +1607.00762 Information Theory +1607.00765 Neural and Evolutionary Computing +1607.00767 Rings and Algebras +1607.00769 Numerical Analysis +1607.00776 Plasma Physics +1607.00778 +1607.00779 Plasma Physics +1607.00781 Probability +1607.00782 Social and Information Networks +1607.00783 Space Physics +1607.00785 Analysis of PDEs +1607.00786 Experiment +1607.00789 +1607.00790 Experiment +1607.00791 Artificial Intelligence +1607.00800 Information Theory +1607.00801 Cryptography and Security +1607.00802 Quantum Algebra +1607.00806 Statistics Theory +1607.00807 +1607.00808 Instrumentation and Detectors +1607.00810 Phenomenology +1607.00811 Formal Languages and Automata Theory +1607.00813 Databases +1607.00814 Classical Physics +1607.00819 Artificial Intelligence +1607.00821 Instrumentation and Detectors +1607.00825 Programming Languages +1607.00827 Cryptography and Security +1607.00828 Optics +1607.00830 Mathematical Finance +1607.00833 Geometric Topology +1607.00840 Algebraic Geometry +1607.00842 Chaotic Dynamics +1607.00844 Mathematical Software +1607.00845 Spectral Theory +1607.00846 Differential Geometry +1607.00849 Instrumentation and Methods for Astrophysics +1607.00850 Mathematical Software +1607.00852 Analysis of PDEs +1607.00853 Information Theory +1607.00854 Data Structures and Algorithms +1607.00855 Analysis of PDEs +1607.00856 Physics and Society +1607.00857 Geometric Topology +1607.00858 Other Statistics +1607.00859 Other Computer Science +1607.00862 Networking and Internet Architecture +1607.00867 Numerical Analysis +1607.00868 Computational Geometry +1607.00869 Artificial Intelligence +1607.00870 Mesoscale and Nanoscale Physics +1607.00872 Learning +1607.00875 Phenomenology +1607.00876 Social and Information Networks +1607.00881 +1607.00883 Phenomenology +1607.00884 +1607.00888 Artificial Intelligence +1607.00890 Digital Libraries +1607.00893 Complex Variables +1607.00894 Dynamical Systems +1607.00895 Algebraic Geometry +1607.00901 Mesoscale and Nanoscale Physics +1607.00903 Solar and Stellar Astrophysics +1607.00905 Software Engineering +1607.00906 Rings and Algebras +1607.00909 Instrumentation and Methods for Astrophysics +1607.00913 Computers and Society +1607.00918 Information Theory +1607.00921 Rings and Algebras +1607.00923 Analysis of PDEs +1607.00925 Phenomenology +1607.00927 Probability +1607.00933 Algebraic Geometry +1607.00934 Information Theory +1607.00935 Materials Science +1607.00940 Algebraic Geometry +1607.00944 Analysis of PDEs +1607.00948 +1607.00949 Phenomenology +1607.00950 Numerical Analysis +1607.00952 Neurons and Cognition +1607.00955 +1607.00959 Applications +1607.00963 Statistics Theory +1607.00964 Information Theory +1607.00965 Rings and Algebras +1607.00971 Computer Vision and Pattern Recognition +1607.00974 Information Theory +1607.00979 Classical Analysis and ODEs +1607.00985 Rings and Algebras +1607.00986 Mesoscale and Nanoscale Physics +1607.00991 Networking and Internet Architecture +1607.00992 Artificial Intelligence +1607.00996 +1607.00997 Number Theory +1607.00998 Populations and Evolution +1607.01000 Algebraic Geometry +1607.01002 Mesoscale and Nanoscale Physics +1607.01003 Combinatorics +1607.01005 Cosmology and Nongalactic Astrophysics +cond-mat/0701605 Strongly Correlated Electrons +gr-qc/9810078 +math/0104209 Complex Variables +quant-ph/9901008 +0804.3587 Category Theory +0907.1393 High Energy Astrophysical Phenomena +0911.5603 Solar and Stellar Astrophysics +1004.0997 Phenomenology +1004.2382 High Energy Astrophysical Phenomena +1010.5513 +1102.4453 Astrophysics of Galaxies +1106.4305 Theory +1108.3861 Number Theory +1109.5923 K-Theory and Homology +1203.5068 +1206.5506 Chaotic Dynamics +1208.3036 Instrumentation and Methods for Astrophysics +1210.7762 Instrumentation and Methods for Astrophysics +1211.3494 Theory +1303.0951 Chaotic Dynamics +1310.8090 Geometric Topology +1311.1068 Superconductivity +1311.2491 Number Theory +1311.5538 K-Theory and Homology +1403.2518 Optics +1403.2720 Cosmology and Nongalactic Astrophysics +1405.1540 Operator Algebras +1405.2581 Functional Analysis +1406.5946 Social and Information Networks +1407.3431 Algebraic Geometry +1407.5090 +1409.3537 Theory +1409.5495 Learning +1409.5924 Probability +1409.7928 Statistical Mechanics +1410.1311 Cosmology and Nongalactic Astrophysics +1410.2631 +1411.1935 +1411.4471 Differential Geometry +1501.00268 Disordered Systems and Neural Networks +1501.03793 Atomic Physics +1501.05364 Earth and Planetary Astrophysics +1502.05888 Artificial Intelligence +1503.00482 Quantum Gases +1503.02888 Number Theory +1503.04391 Phenomenology +1503.05318 Commutative Algebra +1503.05690 Number Theory +1503.08090 Logic in Computer Science +1504.02546 Number Theory +1504.06313 +1504.07478 Astrophysics of Galaxies +1505.00682 Quantum Gases +1505.03811 Quantum Gases +1505.05607 +1505.06078 Atomic and Molecular Clusters +1505.06625 Analysis of PDEs +1506.03525 +1506.04939 +1506.05918 Optimization and Control +1507.01256 Phenomenology +1507.03410 Spectral Theory +1507.06755 Complex Variables +1507.08630 Theory +1508.02468 Fluid Dynamics +1509.00098 Complex Variables +1509.00748 Functional Analysis +1509.01544 Materials Science +1509.04210 Machine Learning +1509.04840 Strongly Correlated Electrons +1509.05260 Algebraic Geometry +1509.06907 +1509.07124 High Energy Astrophysical Phenomena +1509.07758 +1509.07784 +1509.08318 Operator Algebras +1510.00504 Information Theory +1510.01693 Symplectic Geometry +1510.02035 +1510.02546 Statistical Mechanics +1510.03058 +1510.03339 Data Structures and Algorithms +1510.04272 Astrophysics of Galaxies +1510.04800 Number Theory +1510.05376 Number Theory +1510.05510 Computational Finance +1510.05618 Atomic Physics +1510.07943 Theory +1510.08681 Instrumentation and Methods for Astrophysics +1511.01450 Theory +1511.01628 Astrophysics of Galaxies +1511.02011 Astrophysics of Galaxies +1511.02565 Astrophysics of Galaxies +1511.03067 Astrophysics of Galaxies +1511.04856 Dynamical Systems +1511.06267 Learning +1511.07929 Astrophysics of Galaxies +1511.07959 Populations and Evolution +1511.08386 Databases +1511.08492 Quantum Gases +1511.08856 +1511.08953 Geometric Topology +1512.01227 Materials Science +1512.01675 Materials Science +1512.03029 Analysis of PDEs +1512.03067 High Energy Astrophysical Phenomena +1512.03412 +1512.04463 Theory +1512.04685 Strongly Correlated Electrons +1512.05277 +1512.05302 Populations and Evolution +1512.05936 Analysis of PDEs +1512.08706 Atomic Physics +1601.00549 Statistics Theory +1601.00829 Superconductivity +1601.00891 Quantitative Methods +1601.02765 +1601.03159 Chemical Physics +1601.04555 Logic +1601.05925 Solar and Stellar Astrophysics +1601.07026 Solar and Stellar Astrophysics +1601.07395 +1601.07508 Phenomenology +1601.07940 +1601.07942 High Energy Astrophysical Phenomena +1602.01102 Theory +1602.01875 Genomics +1602.01876 Genomics +1602.02819 Strongly Correlated Electrons +1602.02913 +1602.02921 +1602.03894 Astrophysics of Galaxies +1602.04852 +1602.05503 Superconductivity +1602.05545 Theory +1602.06029 Strongly Correlated Electrons +1602.06253 +1602.06559 Lattice +1602.06646 +1602.07624 Phenomenology +1602.08783 Materials Science +1602.08802 Populations and Evolution +1602.08825 Astrophysics of Galaxies +1603.00679 Solar and Stellar Astrophysics +1603.00802 Populations and Evolution +1603.01398 Solar and Stellar Astrophysics +1603.01619 Astrophysics of Galaxies +1603.01621 Quantum Gases +1603.02292 Quantum Gases +1603.02367 Probability +1603.02383 Astrophysics of Galaxies +1603.02682 Astrophysics of Galaxies +1603.03258 Solar and Stellar Astrophysics +1603.04317 Mesoscale and Nanoscale Physics +1603.04795 +1603.04855 Astrophysics of Galaxies +1603.05217 Instrumentation and Methods for Astrophysics +1603.05328 Quantum Gases +1603.06049 +1603.06417 Phenomenology +1603.06434 Astrophysics of Galaxies +1603.06522 Cosmology and Nongalactic Astrophysics +1603.06946 Phenomenology +1603.07074 Functional Analysis +1603.07212 Algebraic Geometry +1603.07305 Optics +1603.07409 Applications +1603.07441 Differential Geometry +1603.07697 Computer Vision and Pattern Recognition +1603.08233 Computer Vision and Pattern Recognition +1603.08464 Physics and Society +1603.08921 Solar and Stellar Astrophysics +1603.08923 Astrophysics of Galaxies +1603.09160 Accelerator Physics +1603.09182 Numerical Analysis +1603.09710 +1604.01069 Earth and Planetary Astrophysics +1604.01402 High Energy Astrophysical Phenomena +1604.01659 +1604.01748 Commutative Algebra +1604.01781 Earth and Planetary Astrophysics +1604.01986 Astrophysics of Galaxies +1604.02421 +1604.03534 +1604.03847 Theory +1604.04251 Phenomenology +1604.04670 Astrophysics of Galaxies +1604.05197 Number Theory +1604.05450 Solar and Stellar Astrophysics +1604.05452 Theory +1604.05663 +1604.06215 Optics +1604.06803 Astrophysics of Galaxies +1604.07320 Mesoscale and Nanoscale Physics +1604.07409 Cosmology and Nongalactic Astrophysics +1604.07532 Social and Information Networks +1604.07620 Earth and Planetary Astrophysics +1604.07726 Astrophysics of Galaxies +1604.07908 Atomic Physics +1604.07989 High Energy Astrophysical Phenomena +1604.08215 Astrophysics of Galaxies +1604.08221 Phenomenology +1604.08432 Phenomenology +1604.08935 Phenomenology +1605.00472 Strongly Correlated Electrons +1605.00616 Earth and Planetary Astrophysics +1605.01874 Quantum Gases +1605.02391 Theory +1605.03177 Quantum Gases +1605.03462 Cosmology and Nongalactic Astrophysics +1605.04232 Artificial Intelligence +1605.04681 Plasma Physics +1605.04903 Phenomenology +1605.05264 Cosmology and Nongalactic Astrophysics +1605.05355 Astrophysics of Galaxies +1605.05477 Materials Science +1605.05932 +1605.06197 Machine Learning +1605.06272 Statistical Mechanics +1605.07125 Solar and Stellar Astrophysics +1605.07948 +1605.08015 +1605.08086 Analysis of PDEs +1605.08124 Theory +1605.08418 Superconductivity +1605.09060 Phenomenology +1605.09087 +1605.09199 Systems and Control +1605.09287 Instrumentation and Methods for Astrophysics +1605.09289 Theory +1605.09371 Astrophysics of Galaxies +1605.09685 +1605.09714 Strongly Correlated Electrons +1605.09752 Quantum Gases +1606.00195 Distributed, Parallel, and Cluster Computing +1606.00197 Strongly Correlated Electrons +1606.00430 Superconductivity +1606.00722 Quantum Gases +1606.00969 Instrumentation and Methods for Astrophysics +1606.00992 +1606.01908 Astrophysics of Galaxies +1606.02076 Phenomenology +1606.02257 Solar and Stellar Astrophysics +1606.02299 Earth and Planetary Astrophysics +1606.02335 Mesoscale and Nanoscale Physics +1606.02677 Theory +1606.02730 Instrumentation and Methods for Astrophysics +1606.03282 +1606.03393 Strongly Correlated Electrons +1606.04290 Astrophysics of Galaxies +1606.04398 Cosmology and Nongalactic Astrophysics +1606.05097 Statistics Theory +1606.05430 Mesoscale and Nanoscale Physics +1606.05469 Mesoscale and Nanoscale Physics +1606.05655 High Energy Astrophysical Phenomena +1606.06029 High Energy Astrophysical Phenomena +1606.06097 Statistical Mechanics +1606.06124 High Energy Astrophysical Phenomena +1606.06238 Phenomenology +1606.06335 +1606.06477 Probability +1606.06893 Phenomenology +1606.07139 Instrumentation and Methods for Astrophysics +1606.07305 Instrumentation and Methods for Astrophysics +1606.07440 Phenomenology +1606.08054 Cosmology and Nongalactic Astrophysics +1606.08115 Algebraic Geometry +1606.08294 Quantitative Methods +1606.08400 Methodology +1606.08571 Machine Learning +1606.08781 Quantum Gases +1606.09019 +1606.09053 +1606.09112 Strongly Correlated Electrons +1606.09326 Mesoscale and Nanoscale Physics +1607.00032 Cosmology and Nongalactic Astrophysics +1607.00319 +1607.00693 Numerical Analysis +1607.00702 Numerical Analysis +1607.00737 Phenomenology +1607.00924 High Energy Astrophysical Phenomena +1607.01021 Cosmology and Nongalactic Astrophysics +1607.01038 Chaotic Dynamics +1607.01065 High Energy Astrophysical Phenomena +1607.01125 Theory +1607.01247 Cosmology and Nongalactic Astrophysics +1607.01263 Information Theory +1607.01269 Instrumentation and Methods for Astrophysics +1607.01448 High Energy Astrophysical Phenomena +1607.01554 Instrumentation and Methods for Astrophysics +1607.01645 High Energy Astrophysical Phenomena +1607.01926 Theory +1607.01946 Phenomenology +1607.02407 Instrumentation and Methods for Astrophysics +1607.02457 Lattice +1607.02490 Instrumentation and Methods for Astrophysics +1607.02494 Instrumentation and Methods for Astrophysics +1607.02666 Strongly Correlated Electrons +1607.02869 +1607.03083 Materials Science +1607.03100 Astrophysics of Galaxies +1607.03363 Optics +1607.03489 Solar and Stellar Astrophysics +1607.03564 Instrumentation and Detectors +1607.03719 Quantum Gases +1607.03952 +1607.04006 Mesoscale and Nanoscale Physics +1607.04207 Earth and Planetary Astrophysics +1607.04286 Theory +1607.04602 Statistical Mechanics +1607.04724 Disordered Systems and Neural Networks +1607.04726 Phenomenology +1607.04857 Phenomenology +1607.05283 Phenomenology +1607.05359 Strongly Correlated Electrons +1607.05436 Lattice +1607.05473 +1607.05562 Fluid Dynamics +1607.05748 Phenomenology +1607.06134 Experiment +1607.06249 Classical Physics +1607.06289 Statistical Mechanics +1607.06346 Mesoscale and Nanoscale Physics +1607.06798 Earth and Planetary Astrophysics +1607.06818 High Energy Astrophysical Phenomena +1607.06872 Analysis of PDEs +1607.07025 Mesoscale and Nanoscale Physics +1607.07094 Solar and Stellar Astrophysics +1607.07166 Astrophysics of Galaxies +1607.07198 Instrumentation and Methods for Astrophysics +1607.07317 Astrophysics of Galaxies +1607.07328 High Energy Astrophysical Phenomena +1607.07338 Quantum Gases +1607.07445 Astrophysics of Galaxies +1607.07601 +1607.07758 Mesoscale and Nanoscale Physics +1607.07791 +1607.08109 +1607.08213 High Energy Astrophysical Phenomena +1607.08230 Differential Geometry +1607.08452 +1607.08527 Strongly Correlated Electrons +1607.08561 +1607.08604 Quantum Gases +1607.08613 Astrophysics of Galaxies +1607.08633 Experiment +1607.08645 Solar and Stellar Astrophysics +1607.08660 Analysis of PDEs +1607.08677 Mesoscale and Nanoscale Physics +1607.08738 Solar and Stellar Astrophysics +1607.08847 Strongly Correlated Electrons +1607.08860 Solar and Stellar Astrophysics +1607.08888 +1608.00105 Combinatorics +1608.00407 Experiment +1608.00971 Astrophysics of Galaxies +1608.01163 Instrumentation and Methods for Astrophysics +1608.01165 Earth and Planetary Astrophysics +1608.01263 Cosmology and Nongalactic Astrophysics +1608.01307 Phenomenology +1608.01309 Cosmology and Nongalactic Astrophysics +1608.01318 Phenomenology +1608.01374 High Energy Astrophysical Phenomena +1608.01809 Strongly Correlated Electrons +1608.01904 Quantum Gases +1608.02557 Numerical Analysis +1608.02642 Instrumentation and Methods for Astrophysics +1608.02645 Instrumentation and Methods for Astrophysics +1608.02744 Quantum Gases +1608.02808 Solar and Stellar Astrophysics +1608.02948 Strongly Correlated Electrons +1608.03095 Earth and Planetary Astrophysics +1608.03101 Optics +1608.03141 Lattice +1608.03433 Materials Science +1608.03514 Materials Science +1608.03673 Earth and Planetary Astrophysics +1608.03741 Instrumentation and Methods for Astrophysics +1608.03813 +1608.04186 Phenomenology +1608.04297 +1608.04298 Astrophysics of Galaxies +1608.04343 Mesoscale and Nanoscale Physics +1608.04357 Strongly Correlated Electrons +1608.04693 Quantum Gases +1608.04697 Probability +1608.04742 Astrophysics of Galaxies +1608.04870 Superconductivity +1608.04964 Astrophysics of Galaxies +1608.04974 +1608.05067 +1608.05546 Solar and Stellar Astrophysics +1608.05764 +1608.05840 Superconductivity +1608.05922 +1608.06018 Phenomenology +1608.06028 Strongly Correlated Electrons +1608.06216 Earth and Planetary Astrophysics +1608.06218 +1608.06234 Atomic Physics +1608.06291 Solar and Stellar Astrophysics +1608.06302 Disordered Systems and Neural Networks +1608.06502 Optics +1608.06689 Astrophysics of Galaxies +1608.06839 Earth and Planetary Astrophysics +1608.06916 Mesoscale and Nanoscale Physics +1608.06957 Astrophysics of Galaxies +1608.06984 Learning +1608.06994 High Energy Astrophysical Phenomena +1608.07162 Strongly Correlated Electrons +1608.07218 Soft Condensed Matter +1608.07496 Probability +1608.07567 Theory +1608.07655 Space Physics +1608.07657 High Energy Astrophysical Phenomena +1608.07717 Strongly Correlated Electrons +1608.07760 Mesoscale and Nanoscale Physics +1608.07904 Solar and Stellar Astrophysics +1608.07911 High Energy Astrophysical Phenomena +1608.08026 Phenomenology +1608.08440 High Energy Astrophysical Phenomena +1609.00011 Theory +1609.00140 Soft Condensed Matter +1609.00187 High Energy Astrophysical Phenomena +1609.00357 Quantum Gases +1609.00387 High Energy Astrophysical Phenomena +1609.00437 Earth and Planetary Astrophysics +1609.00667 High Energy Astrophysical Phenomena +1609.00673 Solar and Stellar Astrophysics +1609.00792 Earth and Planetary Astrophysics +1609.00899 Phenomenology +1609.00960 Earth and Planetary Astrophysics +1609.00972 Statistical Mechanics +1609.01230 Lattice +1609.01276 Representation Theory +1609.01289 Phenomenology +1609.01342 Phenomenology +1609.01432 Superconductivity +1609.01504 Phenomenology +1609.01514 Solar and Stellar Astrophysics +1609.01683 Superconductivity +1609.01701 Cosmology and Nongalactic Astrophysics +1609.01739 Astrophysics of Galaxies +1609.01948 Social and Information Networks +1609.02006 Instrumentation and Methods for Astrophysics +1609.02073 Mesoscale and Nanoscale Physics +1609.02185 Solar and Stellar Astrophysics +1609.02189 Spectral Theory +1609.02267 Astrophysics of Galaxies +1609.02278 Astrophysics of Galaxies +1609.02323 Lattice +1609.02333 Solar and Stellar Astrophysics +1609.02497 High Energy Astrophysical Phenomena +1609.02499 Theory +1609.02579 Solar and Stellar Astrophysics +1609.02767 Earth and Planetary Astrophysics +1609.02880 Atomic Physics +1609.03072 High Energy Astrophysical Phenomena +1609.03124 Experiment +1609.03203 Phenomenology +1609.03209 Solar and Stellar Astrophysics +1609.03227 Earth and Planetary Astrophysics +1609.03554 Astrophysics of Galaxies +1609.03557 +1609.03572 Astrophysics of Galaxies +1609.03723 Solar and Stellar Astrophysics +1609.03741 Phenomenology +1609.03767 Representation Theory +1609.03824 Strongly Correlated Electrons +1609.03860 Cosmology and Nongalactic Astrophysics +1609.03906 Earth and Planetary Astrophysics +1609.04016 High Energy Astrophysical Phenomena +1609.04020 Astrophysics of Galaxies +1609.04307 Mesoscale and Nanoscale Physics +1609.04395 Astrophysics of Galaxies +1609.04461 Theory +1609.04465 Solar and Stellar Astrophysics +1609.04468 Neural and Evolutionary Computing +1609.04595 Methodology +1609.04633 Strongly Correlated Electrons +1609.04660 Solar and Stellar Astrophysics +1609.04764 Phenomenology +1609.04773 Solar and Stellar Astrophysics +1609.04798 Earth and Planetary Astrophysics +1609.04823 Astrophysics of Galaxies +1609.04832 Astrophysics of Galaxies +1609.04843 Methodology +1609.04894 Materials Science +1609.04916 Solar and Stellar Astrophysics +1609.05021 +1609.05274 Solar and Stellar Astrophysics +1609.05299 Superconductivity +1609.05375 Astrophysics of Galaxies +1609.05376 Astrophysics of Galaxies +1609.05387 Dynamical Systems +1609.05476 Cosmology and Nongalactic Astrophysics +1609.05508 Materials Science +1609.05773 Phenomenology +1609.05793 Solar and Stellar Astrophysics +1609.05798 Solar and Stellar Astrophysics +1609.05898 Earth and Planetary Astrophysics +1609.06037 Solar and Stellar Astrophysics +1609.06190 Solar and Stellar Astrophysics +1609.06278 Solar and Stellar Astrophysics +1609.06279 Statistical Mechanics +1609.06316 Astrophysics of Galaxies +1609.06362 High Energy Astrophysical Phenomena +1609.06409 Earth and Planetary Astrophysics +1609.06505 Solar and Stellar Astrophysics +1609.06549 Earth and Planetary Astrophysics +1609.06645 Solar and Stellar Astrophysics +1609.06665 +1609.06721 Astrophysics of Galaxies +1609.06940 Solar and Stellar Astrophysics +1609.06949 Physics Education +1609.07010 Optics +1609.07106 Earth and Planetary Astrophysics +1609.07136 Astrophysics of Galaxies +1609.07181 Solar and Stellar Astrophysics +1609.07241 Astrophysics of Galaxies +1609.07357 Theory +1609.07440 Astrophysics of Galaxies +1609.07491 Astrophysics of Galaxies +1609.07512 Astrophysics of Galaxies +1609.07530 High Energy Astrophysical Phenomena +1609.07571 Mesoscale and Nanoscale Physics +1609.07619 Astrophysics of Galaxies +1609.07954 Solar and Stellar Astrophysics +1609.08092 Solar and Stellar Astrophysics +1609.08120 Solar and Stellar Astrophysics +1609.08174 Astrophysics of Galaxies +1609.08223 Solar and Stellar Astrophysics +1609.08473 Optics +1609.08519 Astrophysics of Galaxies +1609.08521 Solar and Stellar Astrophysics +1609.08553 Astrophysics of Galaxies +1609.08632 Cosmology and Nongalactic Astrophysics +1609.08652 Earth and Planetary Astrophysics +1609.08714 Mesoscale and Nanoscale Physics +1609.08836 Astrophysics of Galaxies +1609.09070 Earth and Planetary Astrophysics +1609.09074 Earth and Planetary Astrophysics +1609.09095 Solar and Stellar Astrophysics +1609.09109 Solar and Stellar Astrophysics +1609.09242 Cosmology and Nongalactic Astrophysics +1609.09308 Solar and Stellar Astrophysics +1609.09381 Theory +1609.09444 Computer Vision and Pattern Recognition +1609.09505 Earth and Planetary Astrophysics +1609.09664 High Energy Astrophysical Phenomena +1609.09825 +1610.00190 +1610.00235 Experiment +1610.00244 +1610.00288 Phenomenology +1610.00296 Dynamical Systems +1610.00342 Phenomenology +1610.00387 Theory +1610.00535 High Energy Astrophysical Phenomena +1610.00715 Solar and Stellar Astrophysics +1610.00948 High Energy Astrophysical Phenomena +1610.00990 Solar and Stellar Astrophysics +1610.01001 Astrophysics of Galaxies +1610.01038 Astrophysics of Galaxies +1610.01162 Astrophysics of Galaxies +1610.01214 Phenomenology +1610.01352 High Energy Astrophysical Phenomena +1610.01539 Theory +1610.01791 Earth and Planetary Astrophysics +1610.01951 Astrophysics of Galaxies +1610.02015 Cosmology and Nongalactic Astrophysics +1610.02026 Instrumentation and Methods for Astrophysics +1610.02030 Astrophysics of Galaxies +1610.02037 Astrophysics of Galaxies +1610.02044 Earth and Planetary Astrophysics +1610.02146 High Energy Astrophysical Phenomena +1610.02151 Lattice +1610.02300 Astrophysics of Galaxies +1610.02338 Earth and Planetary Astrophysics +1610.02341 Astrophysics of Galaxies +1610.02556 Quantum Gases +1610.02648 High Energy Astrophysical Phenomena +1610.02727 Dynamical Systems +1610.02802 Earth and Planetary Astrophysics +1610.02837 Algebraic Geometry +1610.02887 Cosmology and Nongalactic Astrophysics +1610.02963 Phenomenology +1610.02981 High Energy Astrophysical Phenomena +1610.03060 Solar and Stellar Astrophysics +1610.03068 Astrophysics of Galaxies +1610.03070 Astrophysics of Galaxies +1610.03080 High Energy Astrophysical Phenomena +1610.03189 Mesoscale and Nanoscale Physics +1610.03202 +1610.03286 Solar and Stellar Astrophysics +1610.03332 Data Structures and Algorithms +1610.03441 Astrophysics of Galaxies +1610.03493 Astrophysics of Galaxies +1610.03529 Astrophysics of Galaxies +1610.03662 Solar and Stellar Astrophysics +1610.03671 Astrophysics of Galaxies +1610.03730 Superconductivity +1610.03731 Solar and Stellar Astrophysics +1610.03853 Astrophysics of Galaxies +1610.04008 Instrumentation and Methods for Astrophysics +1610.04096 Phenomenology +1610.04104 High Energy Astrophysical Phenomena +1610.04113 Solar and Stellar Astrophysics +1610.04207 Theory +1610.04355 +1610.04423 Solar and Stellar Astrophysics +1610.04515 Earth and Planetary Astrophysics +1610.04516 Astrophysics of Galaxies +1610.04620 Cosmology and Nongalactic Astrophysics +1610.04638 Solar and Stellar Astrophysics +1610.04792 High Energy Astrophysical Phenomena +1610.04817 Optics +1610.05050 High Energy Astrophysical Phenomena +1610.05302 High Energy Astrophysical Phenomena +1610.05303 Earth and Planetary Astrophysics +1610.05305 High Energy Astrophysical Phenomena +1610.05321 Cosmology and Nongalactic Astrophysics +1610.05327 Cosmology and Nongalactic Astrophysics +1610.05359 Earth and Planetary Astrophysics +1610.05692 High Energy Astrophysical Phenomena +1610.05719 Combinatorics +1610.05920 Astrophysics of Galaxies +1610.05953 Astrophysics of Galaxies +1610.06003 Cosmology and Nongalactic Astrophysics +1610.06196 Astrophysics of Galaxies +1610.06513 +1610.06651 Solar and Stellar Astrophysics +1610.06699 High Energy Astrophysical Phenomena +1610.06763 Astrophysics of Galaxies +1610.06767 High Energy Astrophysical Phenomena +1610.06785 Mesoscale and Nanoscale Physics +1610.06872 Solar and Stellar Astrophysics +1610.06932 Astrophysics of Galaxies +1610.07263 Solar and Stellar Astrophysics +1610.07445 +1610.07619 Astrophysics of Galaxies +1610.08023 Symplectic Geometry +1610.08058 Astrophysics of Galaxies +1610.08174 Astrophysics of Galaxies +1610.08652 High Energy Astrophysical Phenomena +1610.08689 +1610.08979 Astrophysics of Galaxies +1610.08990 Solar and Stellar Astrophysics +1610.09224 Combinatorics +1610.09368 +1610.09484 Astrophysics of Galaxies +1610.09643 Earth and Planetary Astrophysics +1610.09952 +1610.10039 Solar and Stellar Astrophysics +1611.00170 Optimization and Control +1611.00408 Astrophysics of Galaxies +1611.00444 Spectral Theory +1611.00762 Astrophysics of Galaxies +1611.01405 Solar and Stellar Astrophysics +1611.01548 Physics and Society +1611.01608 Fluid Dynamics +1611.01903 Representation Theory +1611.01948 High Energy Astrophysical Phenomena +1611.02190 Lattice +1611.02201 Theory +1611.02405 Astrophysics of Galaxies +1611.02522 Disordered Systems and Neural Networks +1611.03091 High Energy Astrophysical Phenomena +1611.03629 Solar and Stellar Astrophysics +1611.03654 +1611.03859 Earth and Planetary Astrophysics +1611.03952 Populations and Evolution +1611.03984 Solar and Stellar Astrophysics +1611.04063 Solar and Stellar Astrophysics +1611.04077 Populations and Evolution +1611.04294 Theory +1611.04329 Solar and Stellar Astrophysics +1611.04627 Solar and Stellar Astrophysics +1611.04705 Databases +1611.04726 Superconductivity +1611.04895 General Physics +1611.05009 Computer Vision and Pattern Recognition +1611.05024 Statistical Mechanics +1611.05126 Machine Learning +1611.05127 Mesoscale and Nanoscale Physics +1611.05310 Mesoscale and Nanoscale Physics +1611.05683 Chemical Physics +1611.05866 Earth and Planetary Astrophysics +1611.06083 Analysis of PDEs +1611.06479 Strongly Correlated Electrons +1611.06718 Chemical Physics +1611.06941 Statistical Mechanics +1611.07135 Human-Computer Interaction +1611.07192 +1611.07469 Methodology +1611.07572 Instrumentation and Methods for Astrophysics +1611.07617 Cryptography and Security +1611.07896 Phenomenology +1611.08032 Materials Science +1611.08093 Lattice +1611.08099 Optics +1611.08323 Computer Vision and Pattern Recognition +1611.08734 Earth and Planetary Astrophysics +1611.08763 Pattern Formation and Solitons +1611.08855 Solar and Stellar Astrophysics +1611.09026 Computer Vision and Pattern Recognition +1611.09130 Machine Learning +1611.09205 Mesoscale and Nanoscale Physics +1611.09269 Mesoscale and Nanoscale Physics +1611.09326 Computer Vision and Pattern Recognition +1611.09420 Methodology +1611.09582 Number Theory +1611.09862 Cosmology and Nongalactic Astrophysics +1611.09942 Social and Information Networks +1611.09991 Strongly Correlated Electrons +1611.10028 +1611.10084 +1611.10102 Optics +1611.10115 Optics +1611.10185 +1611.10197 Instrumentation and Methods for Astrophysics +1611.10200 +1611.10224 Instrumentation and Detectors +1611.10358 Rings and Algebras +1612.00052 Astrophysics of Galaxies +1612.00113 Earth and Planetary Astrophysics +1612.00203 Human-Computer Interaction +1612.00252 Rings and Algebras +1612.00419 Astrophysics of Galaxies +1612.00420 Solar and Stellar Astrophysics +1612.00430 Solar and Stellar Astrophysics +1612.00850 Phenomenology +1612.00864 Phenomenology +1612.00924 Analysis of PDEs +1612.01048 Algebraic Geometry +1612.01057 Computer Vision and Pattern Recognition +1612.01104 Molecular Networks +1612.01182 Numerical Analysis +1612.01288 Computer Vision and Pattern Recognition +1612.01320 Combinatorics +1612.01452 Computer Vision and Pattern Recognition +1612.01470 Statistical Mechanics +1612.01494 Earth and Planetary Astrophysics +1612.01519 Functional Analysis +1612.01520 Statistics Theory +1612.01521 Instrumentation and Methods for Astrophysics +1612.01523 Astrophysics of Galaxies +1612.01525 Phenomenology +1612.01531 Cosmology and Nongalactic Astrophysics +1612.01533 Cosmology and Nongalactic Astrophysics +1612.01535 Cosmology and Nongalactic Astrophysics +1612.01539 High Energy Astrophysical Phenomena +1612.01540 +1612.01541 Mesoscale and Nanoscale Physics +1612.01543 Computer Vision and Pattern Recognition +1612.01547 Other Condensed Matter +1612.01548 Mesoscale and Nanoscale Physics +1612.01550 Theory +1612.01552 Theory +1612.01553 Software Engineering +1612.01554 Optimization and Control +1612.01557 Theory +1612.01558 Commutative Algebra +1612.01559 Theory +1612.01561 Populations and Evolution +1612.01562 Analysis of PDEs +1612.01564 Information Theory +1612.01565 Analysis of PDEs +1612.01566 Analysis of PDEs +1612.01571 Quantitative Methods +1612.01572 Logic +1612.01573 Probability +1612.01574 Emerging Technologies +1612.01575 Chemical Physics +1612.01580 High Energy Astrophysical Phenomena +1612.01582 Commutative Algebra +1612.01583 Algebraic Geometry +1612.01586 Computational Engineering, Finance, and Science +1612.01587 Cryptography and Security +1612.01589 Learning +1612.01590 Theory +1612.01592 Probability +1612.01593 Computer Science and Game Theory +1612.01594 Computer Vision and Pattern Recognition +1612.01595 Methodology +1612.01596 Superconductivity +1612.01597 Numerical Analysis +1612.01599 Number Theory +1612.01602 Populations and Evolution +1612.01603 Distributed, Parallel, and Cluster Computing +1612.01605 Populations and Evolution +1612.01606 Populations and Evolution +1612.01608 Artificial Intelligence +1612.01609 Lattice +1612.01611 Computer Vision and Pattern Recognition +1612.01613 +1612.01615 +1612.01617 Optimization and Control +1612.01618 +1612.01619 Other Statistics +1612.01620 Mesoscale and Nanoscale Physics +1612.01621 Cosmology and Nongalactic Astrophysics +1612.01624 Economics +1612.01626 Software Engineering +1612.01627 Computation and Language +1612.01628 Analysis of PDEs +1612.01629 Optics +1612.01630 Logic in Computer Science +1612.01631 Materials Science +1612.01632 Soft Condensed Matter +1612.01635 Computer Vision and Pattern Recognition +1612.01636 Systems and Control +1612.01637 Software Engineering +1612.01638 Software Engineering +1612.01639 Formal Languages and Automata Theory +1612.01640 Software Engineering +1612.01641 Databases +1612.01642 Information Theory +1612.01646 Optimization and Control +1612.01647 Optics +1612.01648 Earth and Planetary Astrophysics +1612.01649 Materials Science +1612.01652 +1612.01653 +1612.01654 Geometric Topology +1612.01655 Computer Vision and Pattern Recognition +1612.01656 Experiment +1612.01657 Multimedia +1612.01661 Mesoscale and Nanoscale Physics +1612.01663 Learning +1612.01664 Optimization and Control +1612.01665 Geometric Topology +1612.01667 +1612.01669 Computer Vision and Pattern Recognition +1612.01670 Lattice +1612.01672 Differential Geometry +1612.01673 Functional Analysis +1612.01674 Phenomenology +1612.01675 Software Engineering +1612.01677 Optics +1612.01678 Machine Learning +1612.01680 Software Engineering +1612.01681 Combinatorics +1612.01682 Logic in Computer Science +1612.01684 Networking and Internet Architecture +1612.01687 Algebraic Geometry +1612.01688 Biological Physics +1612.01689 Computer Vision and Pattern Recognition +1612.01690 Algebraic Geometry +1612.01691 Artificial Intelligence +1612.01692 Theory +1612.01694 Combinatorics +1612.01696 Computational Geometry +1612.01697 Computer Vision and Pattern Recognition +1612.01698 Number Theory +1612.01700 Analysis of PDEs +1612.01702 Commutative Algebra +1612.01703 Superconductivity +1612.01704 Physics and Society +1612.01706 Representation Theory +1612.01707 Cryptography and Security +1612.01708 Functional Analysis +1612.01709 Quantum Gases +1612.01710 +1612.01711 Emerging Technologies +1612.01712 Commutative Algebra +1612.01713 Quantum Gases +1612.01715 +1612.01718 Biological Physics +1612.01719 Atmospheric and Oceanic Physics +1612.01720 Information Theory +1612.01721 Discrete Mathematics +1612.01726 +1612.01727 Materials Science +1612.01729 Strongly Correlated Electrons +1612.01730 Theory +1612.01732 Group Theory +1612.01733 Algebraic Geometry +1612.01734 Social and Information Networks +1612.01735 Biomolecules +1612.01737 Statistical Mechanics +1612.01740 Fluid Dynamics +1612.01741 Algebraic Topology +1612.01742 Functional Analysis +1612.01743 Classical Physics +1612.01744 Computation and Language +1612.01746 Learning +1612.01747 Spectral Theory +1612.01748 Data Structures and Algorithms +1612.01749 Information Theory +1612.01751 Quantum Gases +1612.01753 Systems and Control +1612.01754 Differential Geometry +1612.01755 Spectral Theory +1612.01757 Complex Variables +1612.01758 Operator Algebras +1612.01761 Dynamical Systems +1612.01762 Algebraic Geometry +1612.01763 Spectral Theory +1612.01766 Number Theory +1612.01768 Numerical Analysis +1612.01769 Soft Condensed Matter +1612.01771 Soft Condensed Matter +1612.01772 Probability +1612.01773 Methodology +1612.01776 Representation Theory +1612.01777 Phenomenology +1612.01778 Soft Condensed Matter +1612.01781 Functional Analysis +1612.01784 Solar and Stellar Astrophysics +1612.01785 Computers and Society +1612.01787 Cryptography and Security +1612.01788 Experiment +1612.01789 +1612.01790 Phenomenology +1612.01792 Phenomenology +1612.01795 Phenomenology +1612.01798 Spectral Theory +1612.01799 Computational Physics +1612.01802 +1612.01804 Strongly Correlated Electrons +1612.01807 +1612.01808 Phenomenology +1612.01809 Mesoscale and Nanoscale Physics +1612.01810 Computer Vision and Pattern Recognition +1612.01811 Astrophysics of Galaxies +1612.01812 Learning +1612.01817 Computational Complexity +1612.01818 Combinatorics +1612.01819 Metric Geometry +1612.01820 Computer Vision and Pattern Recognition +1612.01821 Quantum Algebra +1612.01823 +1612.01824 Theory +1612.01827 Commutative Algebra +1612.01828 General Physics +1612.01829 Data Structures and Algorithms +1612.01830 General Physics +1612.01831 Fluid Dynamics +1612.01833 Analysis of PDEs +1612.01837 Cryptography and Security +1612.01838 Strongly Correlated Electrons +1612.01839 +1612.01840 Sound +1612.01841 Representation Theory +1612.01843 High Energy Astrophysical Phenomena +1612.01845 Distributed, Parallel, and Cluster Computing +1612.01846 Accelerator Physics +1612.01849 +1612.01851 Materials Science +1612.01856 Representation Theory +1612.01859 Learning +1612.01861 Probability +1612.01862 Numerical Analysis +1612.01863 Solar and Stellar Astrophysics +1612.01865 High Energy Astrophysical Phenomena +1612.01866 Differential Geometry +1612.01867 Theory +1612.01868 Performance +1612.01869 Numerical Analysis +1612.01870 Formal Languages and Automata Theory +1612.01873 High Energy Astrophysical Phenomena +1612.01876 Optics +1612.01877 Optimization and Control +1612.01878 Theory +1612.01881 Dynamical Systems +1612.01882 Statistics Theory +1612.01884 Geophysics +1612.01885 Mesoscale and Nanoscale Physics +1612.01886 Analysis of PDEs +1612.01887 Computer Vision and Pattern Recognition +1612.01888 Information Theory +1612.01889 Algebraic Geometry +1612.01890 Optimization and Control +1612.01891 Mesoscale and Nanoscale Physics +1612.01892 Artificial Intelligence +1612.01893 Probability +1612.01894 Networking and Internet Architecture +1612.01895 Computer Vision and Pattern Recognition +1612.01896 Strongly Correlated Electrons +1612.01897 Fluid Dynamics +1612.01898 Materials Science +1612.01899 Dynamical Systems +1612.01900 Atmospheric and Oceanic Physics +1612.01902 Probability +1612.01903 Dynamical Systems +1612.01904 Information Theory +1612.01905 +1612.01906 Algebraic Geometry +1612.01909 Phenomenology +1612.01910 Populations and Evolution +1612.01911 +1612.01913 Combinatorics +1612.01915 Solar and Stellar Astrophysics +1612.01916 +1612.01917 Experiment +1612.01918 Materials Science +1612.01919 Algebraic Geometry +1612.01920 Mesoscale and Nanoscale Physics +1612.01921 Cosmology and Nongalactic Astrophysics +1612.01924 Number Theory +1612.01925 Computer Vision and Pattern Recognition +1612.01926 +1612.01928 Computation and Language +1612.01929 Combinatorics +1612.01930 Computation +1612.01932 Classical Analysis and ODEs +1612.01933 Classical Analysis and ODEs +1612.01934 Statistics Theory +1612.01936 Machine Learning +1612.01937 Phenomenology +1612.01939 Computer Vision and Pattern Recognition +1612.01940 Strongly Correlated Electrons +1612.01941 Artificial Intelligence +1612.01942 Machine Learning +1612.01943 Sound +1612.01945 +1612.01946 +1612.01950 Dynamical Systems +1612.01951 Mathematical Finance +1612.01952 +1612.01954 Mesoscale and Nanoscale Physics +1612.01955 Probability +1612.01958 Computer Vision and Pattern Recognition +1612.01959 Optics +1612.01960 Algebraic Geometry +1612.01961 Superconductivity +1612.01962 Differential Geometry +1612.01963 Systems and Control +1612.01965 Combinatorics +1612.01966 Data Structures and Algorithms +1612.01967 Group Theory +1612.01968 Lattice +1612.01970 Materials Science +1612.01973 Phenomenology +1612.01976 Disordered Systems and Neural Networks +1612.01977 Statistical Mechanics +1612.01978 Combinatorics +1612.01979 Pricing of Securities +1612.01980 Information Theory +1612.01981 Computer Vision and Pattern Recognition +1612.01982 Computational Physics +1612.01983 Probability +1612.01984 Metric Geometry +1612.01987 Experiment +1612.01988 Learning +1612.01989 Materials Science +1612.01990 Theory +1612.01991 Computer Vision and Pattern Recognition +1612.01992 Logic +astro-ph/0405476 +astro-ph/0405598 +astro-ph/0407211 +astro-ph/0601542 +astro-ph/0602261 +astro-ph/0604207 +gr-qc/0001010 +gr-qc/0002035 +gr-qc/0003077 +gr-qc/0008033 +gr-qc/0008074 +gr-qc/0101095 +gr-qc/0102101 +gr-qc/0103067 +gr-qc/9912027 +hep-ex/0406055 Experiment +hep-ex/0408008 Experiment +hep-ex/0511045 Experiment +hep-ex/0601020 Experiment +hep-ex/0602010 Experiment +hep-ph/0405222 Phenomenology +hep-ph/0405261 Phenomenology +hep-ph/0406049 Phenomenology +hep-ph/0406056 Phenomenology +hep-ph/0406106 Phenomenology +hep-ph/0411154 Phenomenology +hep-ph/0510357 Phenomenology +hep-ph/0510392 Phenomenology +hep-ph/0511341 Phenomenology +hep-ph/0512181 Phenomenology +hep-ph/0512354 Phenomenology +hep-ph/0601269 Phenomenology +hep-ph/0602037 Phenomenology +hep-ph/0602098 Phenomenology +hep-ph/0603006 Phenomenology +hep-ph/0603173 Phenomenology +hep-ph/0611103 Phenomenology +hep-ph/0611167 Phenomenology +hep-ph/9912276 Phenomenology +1102.0368 Combinatorics +1103.0235 Probability +1106.5942 Operator Algebras +1202.4028 +1202.4879 Atmospheric and Oceanic Physics +1206.3357 Logic in Computer Science +1301.2909 +1301.5228 Dynamical Systems +1303.4212 Optimization and Control +1305.5901 Information Theory +1308.4834 Differential Geometry +1308.4838 Differential Geometry +1403.2860 Optimization and Control +1403.2898 Optimization and Control +1404.7381 Analysis of PDEs +1405.3341 Combinatorics +1406.5375 Experiment +1407.4292 Optimization and Control +1409.3383 Optimization and Control +1411.1789 Number Theory +1501.03182 Differential Geometry +1501.04386 +1501.04639 Probability +1502.04576 Probability +1502.05685 +1503.02586 Phenomenology +1504.03500 Combinatorics +1504.03996 High Energy Astrophysical Phenomena +1504.06419 Optics +1504.07076 Algebraic Geometry +1504.08227 General Physics +1505.00553 Machine Learning +1505.00981 Differential Geometry +1505.04773 Combinatorics +1505.05620 Number Theory +1505.07010 Strongly Correlated Electrons +1506.04546 Number Theory +1506.07093 Algebraic Geometry +1507.02698 Functional Analysis +1507.03792 Instrumentation and Methods for Astrophysics +1507.06016 Materials Science +1507.08785 +1508.03989 Probability +1508.06818 Neurons and Cognition +1509.02478 Representation Theory +1509.04016 Phenomenology +1509.04611 +1509.04913 Group Theory +1509.08158 Populations and Evolution +1509.08580 Combinatorics +1509.09278 History and Philosophy of Physics +1510.02019 Functional Analysis +1510.05737 +1510.06317 Analysis of PDEs +1510.07431 +1511.00442 Computational Complexity +1511.04435 Systems and Control +1511.09112 Logic +1512.01434 Theory +1512.03095 +1512.06782 Phenomenology +1601.01055 +1601.01125 Computation +1601.01849 Methodology +1601.02467 Analysis of PDEs +1601.03997 Statistical Mechanics +1601.06717 Biological Physics +1601.06891 Phenomenology +1601.07127 Methodology +1601.07954 Theory +1602.02150 Mesoscale and Nanoscale Physics +1602.02327 Dynamical Systems +1602.03374 Geometric Topology +1602.04073 +1602.06516 Learning +1602.07717 Instrumentation and Detectors +1603.01734 Combinatorics +1603.02807 Combinatorics +1603.03519 Social and Information Networks +1603.03862 Differential Geometry +1603.03978 Combinatorics +1603.04362 Strongly Correlated Electrons +1603.04884 Phenomenology +1603.05735 Soft Condensed Matter +1603.07344 Analysis of PDEs +1603.08190 +1604.00002 Neurons and Cognition +1604.00334 +1604.00974 Computer Vision and Pattern Recognition +1604.02250 Sound +1604.05706 Numerical Analysis +1604.07236 Information Retrieval +1604.07964 +1604.08726 Dynamical Systems +1605.00500 Materials Science +1605.02548 Geometric Topology +1605.03025 Disordered Systems and Neural Networks +1605.04303 Software Engineering +1605.04758 Theory +1605.05145 High Energy Astrophysical Phenomena +1605.06443 Machine Learning +1605.06444 Machine Learning +1605.07714 Dynamical Systems +1606.01221 Numerical Analysis +1606.01549 Computation and Language +1606.02633 Differential Geometry +1606.02893 +1606.03960 +1606.04212 Computation and Language +1606.04566 Computational Physics +1606.04847 High Energy Astrophysical Phenomena +1606.04856 +1606.04988 Machine Learning +1606.05226 Plasma Physics +1606.05647 Physics and Society +1606.05851 Mesoscale and Nanoscale Physics +1606.06733 Phenomenology +1606.07001 Instrumentation and Methods for Astrophysics +1606.07665 +1606.07770 Computer Vision and Pattern Recognition +1606.07984 Computation +1606.08257 Phenomenology +1606.08774 Mesoscale and Nanoscale Physics +1607.00929 Analysis of PDEs +1607.01884 Cosmology and Nongalactic Astrophysics +1607.02289 Mathematical Finance +1607.03377 Algebraic Topology +1607.03449 Superconductivity +1607.03889 Combinatorics +1607.03949 Computer Vision and Pattern Recognition +1607.05257 Phenomenology +1607.05463 Probability +1607.05488 Probability +1607.05542 Probability +1607.05555 Probability +1607.07223 Commutative Algebra +1607.07764 +1607.08126 Soft Condensed Matter +1607.08682 Data Structures and Algorithms +1608.00458 Cosmology and Nongalactic Astrophysics +1608.01467 Probability +1608.01537 Distributed, Parallel, and Cluster Computing +1608.02477 Information Theory +1608.03120 Physics and Society +1608.03291 Cosmology and Nongalactic Astrophysics +1608.03784 Probability +1608.03806 +1608.04388 Cosmology and Nongalactic Astrophysics +1608.05622 Functional Analysis +1608.05658 Metric Geometry +1608.06555 Analysis of PDEs +1608.06828 Algebraic Geometry +1608.06971 Biomolecules +1608.07557 Mesoscale and Nanoscale Physics +1609.02148 Astrophysics of Galaxies +1609.02238 Optimization and Control +1609.02344 +1609.02555 Phenomenology +1609.02946 Systems and Control +1609.03218 Materials Science +1609.04287 Mesoscale and Nanoscale Physics +1609.04964 Number Theory +1609.05912 Earth and Planetary Astrophysics +1609.06573 Geometric Topology +1609.07256 Cryptography and Security +1609.07315 Probability +1609.07631 Differential Geometry +1609.09106 Learning +1610.00994 Atomic Physics +1610.01912 Optimization and Control +1610.02241 Phenomenology +1610.02269 Quantum Algebra +1610.02420 Data Structures and Algorithms +1610.03747 Phenomenology +1610.04563 Computer Vision and Pattern Recognition +1610.04682 +1610.04807 Data Structures and Algorithms +1610.04859 +1610.05576 +1610.05665 Optics +1610.06912 Artificial Intelligence +1610.07273 Learning +1610.07506 Theory +1610.07589 Representation Theory +1610.07822 Theory +1610.08409 Phenomenology +1610.08966 History and Philosophy of Physics +1610.09512 Learning +1611.00191 Soft Condensed Matter +1611.00428 Phenomenology +1611.01935 Digital Libraries +1611.02107 +1611.02130 Quantum Algebra +1611.02244 Exactly Solvable and Integrable Systems +1611.02505 Geometric Topology +1611.02843 Mesoscale and Nanoscale Physics +1611.02969 Instrumentation and Methods for Astrophysics +1611.03493 Theory +1611.03511 +1611.03863 Astrophysics of Galaxies +1611.03992 Statistical Mechanics +1611.04962 Analysis of PDEs +1611.05230 +1611.05363 Analysis of PDEs +1611.05367 Complex Variables +1611.05561 Social and Information Networks +1611.06691 Materials Science +1611.07263 Lattice +1611.07359 Mesoscale and Nanoscale Physics +1611.07434 Geometric Topology +1611.07497 Combinatorics +1611.07974 Phenomenology +1611.08207 Computer Vision and Pattern Recognition +1611.08240 Computer Vision and Pattern Recognition +1611.08476 Strongly Correlated Electrons +1611.09067 Programming Languages +1611.09669 Optimization and Control +1611.09709 Instrumentation and Detectors +1611.09767 Physics and Society +1611.09883 Theory +1611.09921 Learning +1611.09936 Astrophysics of Galaxies +1611.10074 +1611.10101 Algebraic Geometry +1611.10126 Strongly Correlated Electrons +1611.10234 Complex Variables +1611.10346 Robotics +1612.00001 Numerical Analysis +1612.00002 Commutative Algebra +1612.00003 +1612.00004 Superconductivity +1612.00005 Computer Vision and Pattern Recognition +1612.00007 Combinatorics +1612.00009 Phenomenology +1612.00011 High Energy Astrophysical Phenomena +1612.00016 Strongly Correlated Electrons +1612.00019 Cosmology and Nongalactic Astrophysics +1612.00023 Lattice +1612.00025 Operator Algebras +1612.00027 Phenomenology +1612.00028 Emerging Technologies +1612.00029 +1612.00031 Pattern Formation and Solitons +1612.00032 Phenomenology +1612.00034 +1612.00036 Other Quantitative Biology +1612.00037 Materials Science +1612.00039 Instrumentation and Detectors +1612.00040 Methodology +1612.00041 Phenomenology +1612.00043 Algebraic Topology +1612.00044 Biological Physics +1612.00045 Astrophysics of Galaxies +1612.00046 Space Physics +1612.00047 Phenomenology +1612.00048 Instrumentation and Methods for Astrophysics +1612.00049 Materials Science +1612.00050 Classical Analysis and ODEs +1612.00051 Number Theory +1612.00053 Robotics +1612.00054 Numerical Analysis +1612.00056 Numerical Analysis +1612.00057 Strongly Correlated Electrons +1612.00058 Number Theory +1612.00059 Optimization and Control +1612.00060 Statistical Mechanics +1612.00061 Representation Theory +1612.00062 Physics and Society +1612.00063 Instrumentation and Methods for Astrophysics +1612.00064 Methodology +1612.00065 Astrophysics of Galaxies +1612.00066 Numerical Analysis +1612.00068 Methodology +1612.00069 Rings and Algebras +1612.00072 Functional Analysis +1612.00073 Number Theory +1612.00074 Strongly Correlated Electrons +1612.00075 Differential Geometry +1612.00076 Other Condensed Matter +1612.00077 Numerical Analysis +1612.00078 Numerical Analysis +1612.00079 History and Philosophy of Physics +1612.00080 Materials Science +1612.00081 Machine Learning +1612.00082 Theory +1612.00083 Applications +1612.00085 Computer Vision and Pattern Recognition +1612.00087 Number Theory +1612.00088 Mesoscale and Nanoscale Physics +1612.00090 Optimization and Control +1612.00091 Solar and Stellar Astrophysics +1612.00092 Artificial Intelligence +1612.00093 Dynamical Systems +1612.00094 Artificial Intelligence +1612.00095 Soft Condensed Matter +1612.00096 Lattice +1612.00097 Combinatorics +1612.00099 Machine Learning +1612.00101 Computer Vision and Pattern Recognition +1612.00102 Combinatorics +1612.00103 Lattice +1612.00104 Artificial Intelligence +1612.00105 Number Theory +1612.00109 Analysis of PDEs +1612.00111 Methodology +1612.00117 Astrophysics of Galaxies +1612.00118 Information Theory +1612.00120 Fluid Dynamics +1612.00121 +1612.00122 Networking and Internet Architecture +1612.00123 Information Theory +1612.00127 Probability +1612.00129 Applications +1612.00130 Information Theory +1612.00131 Information Theory +1612.00134 Group Theory +1612.00135 Soft Condensed Matter +1612.00136 Statistics Theory +1612.00138 Computer Vision and Pattern Recognition +1612.00139 Number Theory +1612.00142 Optimization and Control +1612.00145 Quantum Algebra +1612.00146 Mesoscale and Nanoscale Physics +1612.00147 Robotics +1612.00148 Computation and Language +1612.00151 Learning +1612.00152 Statistical Mechanics +1612.00154 Algebraic Geometry +1612.00155 Neural and Evolutionary Computing +1612.00156 Data Structures and Algorithms +1612.00160 Probability +1612.00162 Exactly Solvable and Integrable Systems +1612.00163 Software Engineering +1612.00164 Software Engineering +1612.00166 +1612.00167 Solar and Stellar Astrophysics +1612.00168 Populations and Evolution +1612.00171 Sound +1612.00172 Sound +1612.00173 +1612.00176 Mesoscale and Nanoscale Physics +1612.00177 Complex Variables +1612.00178 Differential Geometry +1612.00179 Computer Science and Game Theory +1612.00181 Computer Vision and Pattern Recognition +1612.00185 Computers and Society +1612.00186 Computer Science and Game Theory +1612.00187 Dynamical Systems +1612.00189 Materials Science +1612.00191 Algebraic Geometry +1612.00192 Computer Vision and Pattern Recognition +1612.00193 Computational Physics +1612.00198 Group Theory +1612.00201 Optimization and Control +1612.00204 Cryptography and Security +1612.00205 +1612.00206 Combinatorics +1612.00209 Geometric Topology +1612.00211 Information Theory +1612.00212 Computer Vision and Pattern Recognition +1612.00213 +1612.00214 Classical Analysis and ODEs +1612.00215 Computer Vision and Pattern Recognition +1612.00216 Phenomenology +1612.00219 Phenomenology +1612.00221 Economics +1612.00222 Artificial Intelligence +1612.00223 Chemical Physics +1612.00225 Cosmology and Nongalactic Astrophysics +1612.00226 Optimization and Control +1612.00227 Artificial Intelligence +1612.00229 Plasma Physics +1612.00230 Chemical Physics +1612.00233 Quantum Gases +1612.00234 Computer Vision and Pattern Recognition +1612.00235 Classical Analysis and ODEs +1612.00236 +1612.00238 Probability +1612.00240 Artificial Intelligence +1612.00241 Physics and Society +1612.00242 Group Theory +1612.00243 Functional Analysis +1612.00244 Earth and Planetary Astrophysics +1612.00246 Computation and Language +1612.00247 Theory +1612.00254 Fluid Dynamics +1612.00255 Optimization and Control +1612.00256 Exactly Solvable and Integrable Systems +1612.00257 Plasma Physics +1612.00258 High Energy Astrophysical Phenomena +1612.00259 Computation +1612.00261 High Energy Astrophysical Phenomena +1612.00262 Computational Physics +1612.00263 Metric Geometry +1612.00264 Phenomenology +1612.00266 +1612.00275 Earth and Planetary Astrophysics +1612.00276 Combinatorics +1612.00277 Programming Languages +1612.00279 History and Overview +1612.00280 Classical Analysis and ODEs +1612.00282 Analysis of PDEs +1612.00283 Phenomenology +1612.00284 Functional Analysis +1612.00285 Lattice +1612.00287 Fluid Dynamics +1612.00288 General Physics +1612.00292 Solar and Stellar Astrophysics +1612.00294 General Physics +1612.00295 Metric Geometry +1612.00297 Soft Condensed Matter +1612.00298 Soft Condensed Matter +1612.00299 Instrumentation and Methods for Astrophysics +1612.00300 Analysis of PDEs +1612.00302 Commutative Algebra +1612.00303 Combinatorics +1612.00304 General Physics +1612.00305 Robotics +1612.00306 Theory +1612.00307 Cosmology and Nongalactic Astrophysics +1612.00309 Networking and Internet Architecture +1612.00310 +1612.00311 Soft Condensed Matter +1612.00313 Metric Geometry +1612.00316 Optimization and Control +1612.00317 Strongly Correlated Electrons +1612.00318 Fluid Dynamics +1612.00319 Solar and Stellar Astrophysics +1612.00321 Probability +1612.00327 +1612.00329 Instrumentation and Methods for Astrophysics +1612.00330 Software Engineering +1612.00331 Materials Science +1612.00332 Optimization and Control +1612.00337 Numerical Analysis +1612.00339 Statistical Mechanics +1612.00343 Computational Geometry +1612.00345 Cosmology and Nongalactic Astrophysics +1612.00346 Theory +1612.00347 Computation and Language +1612.00353 +1612.00355 Dynamical Systems +1612.00358 +1612.00362 Functional Analysis +1612.00363 Soft Condensed Matter +1612.00364 Astrophysics of Galaxies +1612.00366 Mesoscale and Nanoscale Physics +1612.00367 Learning +1612.00368 Quantum Algebra +1612.00371 +1612.00373 Statistical Mechanics +1612.00378 +1612.00380 Artificial Intelligence +1612.00384 High Energy Astrophysical Phenomena +1612.00385 Computer Vision and Pattern Recognition +1612.00387 Astrophysics of Galaxies +1612.00388 Machine Learning +1612.00392 Materials Science +1612.00393 Machine Learning +1612.00394 Computation and Language +1612.00395 +1612.00396 Populations and Evolution +1612.00397 Networking and Internet Architecture +1612.00398 Computational Physics +1612.00403 Lattice +1612.00405 Solar and Stellar Astrophysics +1612.00406 Probability +1612.00407 Cryptography and Security +1612.00408 Computer Vision and Pattern Recognition +1612.00411 Commutative Algebra +1612.00412 Instrumentation and Methods for Astrophysics +1612.00414 Systems and Control +1612.00415 Analysis of PDEs +1612.00417 Theory +1612.00418 K-Theory and Homology +1612.00421 Probability +1612.00423 Computer Vision and Pattern Recognition +1612.00424 Methodology +1612.00426 Combinatorics +1612.00431 Functional Analysis +1612.00432 Group Theory +1612.00434 Probability +1612.00437 Computer Vision and Pattern Recognition +1612.00439 Complex Variables +hep-th/0104266 Theory +0806.1285 Strongly Correlated Electrons +0810.0402 Strongly Correlated Electrons +0908.2103 Strongly Correlated Electrons +1006.2002 Information Theory +1009.4185 Strongly Correlated Electrons +1110.4077 Computational Complexity +1203.2122 Probability +1205.2940 Quantum Algebra +1205.6540 Strongly Correlated Electrons +1209.3836 Classical Analysis and ODEs +1210.2910 Rings and Algebras +1212.4059 Materials Science +1302.3459 +1310.5282 Number Theory +1311.6093 Data Structures and Algorithms +1402.2825 Mesoscale and Nanoscale Physics +1402.4947 Metric Geometry +1404.0565 +1406.3220 Operator Algebras +1406.3514 Data Structures and Algorithms +1406.4362 Group Theory +1407.6436 Group Theory +1407.7772 General Physics +1408.3590 Data Structures and Algorithms +1409.1399 Data Structures and Algorithms +1409.2293 Phenomenology +1409.6315 Astrophysics of Galaxies +1410.3516 Probability +1411.1033 Complex Variables +1411.1333 Analysis of PDEs +1412.1721 Operator Algebras +1501.02444 Information Theory +1501.02939 Functional Analysis +1501.03588 Statistics Theory +1501.05536 Combinatorics +1502.04876 Differential Geometry +1502.05971 Classical Analysis and ODEs +1503.00886 Logic in Computer Science +1503.01984 Populations and Evolution +1503.04720 Optics +1503.07464 Mesoscale and Nanoscale Physics +1503.08621 Methodology +1504.04832 +1504.05919 Probability +1504.06293 Functional Analysis +1504.07416 Social and Information Networks +1505.00113 +1505.00688 Operator Algebras +1505.00730 Combinatorics +1505.00734 Combinatorics +1505.04961 Superconductivity +1505.07077 Optimization and Control +1505.07271 Computational Physics +1506.01945 Number Theory +1506.02555 Analysis of PDEs +1506.05234 Astrophysics of Galaxies +1506.07335 Functional Analysis +1506.07379 Classical Analysis and ODEs +1506.08610 Optics +1507.02241 +1507.03899 Functional Analysis +1507.04247 Statistical Mechanics +1507.04635 Machine Learning +1507.05549 Operator Algebras +1507.06073 Computation and Language +1507.07862 Number Theory +1508.02770 History and Philosophy of Physics +1508.05177 Superconductivity +1508.06701 +1508.07904 Operator Algebras +1509.00014 Theory +1509.00703 Numerical Analysis +1509.03355 Robotics +1509.07810 Soft Condensed Matter +1510.01039 Physics and Society +1510.04795 +1510.05811 Optimization and Control +1510.05835 Number Theory +1511.01158 Learning +1511.02018 Operator Algebras +1511.02491 Symplectic Geometry +1511.02825 Computer Vision and Pattern Recognition +1511.04834 Learning +1511.07713 High Energy Astrophysical Phenomena +1512.00637 Quantum Gases +1512.01049 +1512.03087 Physics and Society +1512.07873 Probability +1512.08154 Soft Condensed Matter +1512.08357 Numerical Analysis +1601.01239 Optics +1601.01937 Dynamical Systems +1601.04968 Analysis of PDEs +1601.05335 Cryptography and Security +1601.06217 Mesoscale and Nanoscale Physics +1601.07563 +1601.08180 Probability +1602.00285 Combinatorics +1602.01612 Populations and Evolution +1602.02883 Analysis of PDEs +1602.04186 Disordered Systems and Neural Networks +1602.07580 Statistical Mechanics +1602.08438 Fluid Dynamics +1603.00202 High Energy Astrophysical Phenomena +1603.00286 Computer Science and Game Theory +1603.03260 Cosmology and Nongalactic Astrophysics +1603.03577 Quantitative Methods +1603.04137 Theory +1603.04238 Mesoscale and Nanoscale Physics +1603.04512 +1603.04618 Optics +1603.04729 Analysis of PDEs +1603.06279 Theory +1603.08046 Astrophysics of Galaxies +1604.01512 Mesoscale and Nanoscale Physics +1604.01553 Phenomenology +1604.02114 Distributed, Parallel, and Cluster Computing +1604.02400 Physics and Society +1604.03434 +1604.04038 Robotics +1604.04068 Plasma Physics +1604.06065 Cosmology and Nongalactic Astrophysics +1604.06121 Populations and Evolution +1604.06233 Other Condensed Matter +1604.07682 High Energy Astrophysical Phenomena +1604.07866 Learning +1605.00682 Systems and Control +1605.01413 Phenomenology +1605.01454 +1605.02458 +1605.02718 Methodology +1605.04013 Computation and Language +1605.04349 +1605.05227 Networking and Internet Architecture +1605.05282 Probability +1605.06775 Analysis of PDEs +1606.00484 Data Structures and Algorithms +1606.01515 Computation and Language +1606.05843 Probability +1606.06271 Computer Science and Game Theory +1606.06723 Probability +1606.06884 Theory +1606.07102 Earth and Planetary Astrophysics +1606.08258 +1607.00210 Numerical Analysis +1607.00372 Performance +1607.00861 Networking and Internet Architecture +1607.00863 Networking and Internet Architecture +1607.00967 Strongly Correlated Electrons +1607.01555 Mesoscale and Nanoscale Physics +1607.02146 Astrophysics of Galaxies +1607.02161 Functional Analysis +1607.02163 Functional Analysis +1607.03077 Robotics +1607.03742 Classical Physics +1607.04114 Theory +1607.04297 Astrophysics of Galaxies +1607.04359 +1607.04423 Computation and Language +1607.05963 +1607.06168 Adaptation and Self-Organizing Systems +1607.06195 High Energy Astrophysical Phenomena +1607.06230 Rings and Algebras +1607.06283 Computer Vision and Pattern Recognition +1607.06322 Solar and Stellar Astrophysics +1607.06324 Software Engineering +1607.06425 Numerical Analysis +1607.06512 +1607.06701 Optics +1607.07122 Functional Analysis +1607.07436 Numerical Analysis +1607.07468 Differential Geometry +1607.07709 Algebraic Geometry +1607.07726 +1607.07742 Combinatorics +1607.07930 Strongly Correlated Electrons +1607.07974 Methodology +1607.07989 High Energy Astrophysical Phenomena +1607.08050 Astrophysics of Galaxies +1607.08058 Combinatorics +1607.08265 Solar and Stellar Astrophysics +1607.08529 Instrumentation and Detectors +1607.08566 Spectral Theory +1607.08571 Spectral Theory +1607.08576 Spectral Theory +1607.08746 Analysis of PDEs +1608.00144 Theory +1608.00330 Numerical Analysis +1608.00342 Representation Theory +1608.00389 +1608.00505 Probability +1608.00823 Materials Science +1608.00828 Optimization and Control +1608.01032 Spectral Theory +1608.01170 Superconductivity +1608.01171 Soft Condensed Matter +1608.01186 Algebraic Geometry +1608.01197 Computational Finance +1608.01238 Computation and Language +1608.01271 Strongly Correlated Electrons +1608.01290 Algebraic Topology +1608.01306 Astrophysics of Galaxies +1608.01331 Dynamical Systems +1608.01332 Experiment +1608.01333 +1608.01335 Robotics +1608.01337 Methodology +1608.01339 Computational Geometry +1608.01342 Materials Science +1608.01343 Numerical Analysis +1608.01344 Numerical Analysis +1608.01345 Instrumentation and Detectors +1608.01348 Analysis of PDEs +1608.01350 Data Structures and Algorithms +1608.01351 Economics +1608.01352 Geophysics +1608.01353 Combinatorics +1608.01357 Numerical Analysis +1608.01358 Combinatorics +1608.01359 Analysis of PDEs +1608.01361 Number Theory +1608.01363 Rings and Algebras +1608.01366 Materials Science +1608.01367 +1608.01369 Soft Condensed Matter +1608.01370 Astrophysics of Galaxies +1608.01372 Computer Vision and Pattern Recognition +1608.01373 Social and Information Networks +1608.01376 Mesoscale and Nanoscale Physics +1608.01377 Networking and Internet Architecture +1608.01380 Mesoscale and Nanoscale Physics +1608.01381 Geometric Topology +1608.01383 High Energy Astrophysical Phenomena +1608.01384 Probability +1608.01385 +1608.01386 Social and Information Networks +1608.01387 Materials Science +1608.01390 Number Theory +1608.01391 Computer Vision and Pattern Recognition +1608.01392 Materials Science +1608.01393 Optimization and Control +1608.01395 Analysis of PDEs +1608.01396 Data Structures and Algorithms +1608.01399 Formal Languages and Automata Theory +1608.01400 High Energy Astrophysical Phenomena +1608.01401 Computation and Language +1608.01402 Artificial Intelligence +1608.01403 Computation and Language +1608.01404 Computation and Language +1608.01405 Computation and Language +1608.01406 Computation and Language +1608.01407 Group Theory +1608.01408 Information Theory +1608.01410 Learning +1608.01412 Number Theory +1608.01415 Mathematical Finance +1608.01418 General Mathematics +1608.01423 Quantum Algebra +1608.01426 Computational Complexity +1608.01428 +1608.01429 Systems and Control +1608.01430 Multiagent Systems +1608.01432 Information Theory +1608.01433 Logic in Computer Science +1608.01435 Earth and Planetary Astrophysics +1608.01439 Plasma Physics +1608.01440 Applications +1608.01441 Computer Vision and Pattern Recognition +1608.01443 +1608.01445 Combinatorics +1608.01446 Networking and Internet Architecture +1608.01453 Spectral Theory +1608.01455 Computation +1608.01458 Fluid Dynamics +1608.01459 Spectral Theory +1608.01460 Analysis of PDEs +1608.01461 +1608.01462 Pattern Formation and Solitons +1608.01464 Combinatorics +1608.01465 Combinatorics +1608.01468 Cryptography and Security +1608.01469 +1608.01471 Computer Vision and Pattern Recognition +1608.01482 Algebraic Geometry +1608.01486 Atomic Physics +1608.01487 Data Structures and Algorithms +1608.01490 Rings and Algebras +1608.01491 Biological Physics +1608.01492 Cryptography and Security +1608.01495 Adaptation and Self-Organizing Systems +1608.01499 Distributed, Parallel, and Cluster Computing +1608.01502 Phenomenology +1608.01503 Combinatorics +1608.01505 Computer Vision and Pattern Recognition +1608.01506 +1608.01507 +1608.01508 Phenomenology +1608.01510 Computer Science and Game Theory +1608.01511 Probability +1608.01513 Methodology +1608.01514 Numerical Analysis +1608.01519 Computational Physics +1608.01521 Combinatorics +1608.01522 Mesoscale and Nanoscale Physics +1608.01524 Information Theory +1608.01526 Probability +1608.01529 Computer Vision and Pattern Recognition +1608.01532 Methodology +1608.01533 Software Engineering +1608.01536 Computer Vision and Pattern Recognition +1608.01539 Differential Geometry +1608.01540 Computer Science and Game Theory +1608.01541 General Physics +1608.01544 General Physics +1608.01545 Representation Theory +1608.01550 Group Theory +1608.01551 Representation Theory +1608.01553 +1608.01556 Astrophysics of Galaxies +1608.01559 Category Theory +1608.01560 Logic in Computer Science +1608.01561 Computation and Language +1608.01562 Combinatorics +1608.01564 +1608.01568 Discrete Mathematics +1608.01570 Geometric Topology +1608.01573 Information Retrieval +1608.01575 Functional Analysis +1608.01580 Quantum Gases +1608.01586 Differential Geometry +1608.01588 Information Theory +1608.01589 Geometric Topology +1608.01592 +1608.01593 Methodology +1608.01595 Experiment +1608.01596 Probability +1608.01597 Probability +1608.01599 Category Theory +1608.01603 Logic in Computer Science +1608.01604 Artificial Intelligence +1608.01606 Robotics +1608.01611 Artificial Intelligence +1608.01614 Combinatorics +1608.01615 +1608.01616 Representation Theory +1608.01619 Numerical Analysis +1608.01620 Soft Condensed Matter +1608.01626 Logic in Computer Science +1608.01632 Networking and Internet Architecture +1608.01634 Theory +1608.01636 Exactly Solvable and Integrable Systems +1608.01637 Biological Physics +1608.01638 +1608.01642 +1608.01643 Phenomenology +1608.01647 Computer Vision and Pattern Recognition +1608.01648 Social and Information Networks +1608.01653 Soft Condensed Matter +1608.01655 Number Theory +1608.01656 Number Theory +1608.01658 Computer Vision and Pattern Recognition +1608.01659 High Energy Astrophysical Phenomena +1608.01662 Statistical Mechanics +1608.01663 Differential Geometry +cond-mat/0702405 Strongly Correlated Electrons +hep-ph/0407075 Phenomenology +0708.0282 Chemical Physics +0803.3694 Atomic and Molecular Clusters +0909.5234 History and Overview +1110.0977 Soft Condensed Matter +1203.3250 Differential Geometry +1207.0900 +1207.2879 Superconductivity +1208.2360 Algebraic Topology +1211.3270 Classical Analysis and ODEs +1305.5574 Soft Condensed Matter +1307.1664 Dynamical Systems +1308.0250 Group Theory +1308.5599 Theory +1309.0688 Soft Condensed Matter +1309.1229 Biological Physics +1309.2025 Number Theory +1311.3927 K-Theory and Homology +1311.5257 Algebraic Geometry +1312.0075 Biomolecules +1312.4065 Analysis of PDEs +1402.0954 Materials Science +1402.2522 Classical Analysis and ODEs +1402.5688 Dynamical Systems +1403.0719 Operator Algebras +1403.5149 Dynamical Systems +1403.5690 Analysis of PDEs +1404.3036 Materials Science +1404.3300 Methodology +1404.5701 Information Theory +1404.6920 Dynamical Systems +1405.0742 Strongly Correlated Electrons +1405.3995 Differential Geometry +1405.4924 Classical Analysis and ODEs +1405.5167 Dynamical Systems +1405.7069 Classical Analysis and ODEs +1406.0031 Strongly Correlated Electrons +1406.4546 +1406.4637 Differential Geometry +1406.4731 Dynamical Systems +1407.2992 Dynamical Systems +1407.7135 Neurons and Cognition +1408.1662 Number Theory +1408.3576 Theory +1409.2581 Classical Analysis and ODEs +1409.7252 Analysis of PDEs +1409.8226 Phenomenology +1409.8654 Representation Theory +1409.8656 Operator Algebras +1410.2194 Group Theory +1411.0836 Rings and Algebras +1411.4887 Analysis of PDEs +1411.5585 Algebraic Geometry +1412.3790 Analysis of PDEs +1412.5020 Optimization and Control +1501.01105 Geometric Topology +1501.01398 Cosmology and Nongalactic Astrophysics +1501.01852 Phenomenology +1501.02977 +1501.03611 Soft Condensed Matter +1501.05270 Soft Condensed Matter +1502.00726 Quantitative Methods +1502.07694 Soft Condensed Matter +1503.00322 Social and Information Networks +1503.02607 Commutative Algebra +1503.02681 Soft Condensed Matter +1503.03103 Algebraic Geometry +1503.08683 Physics and Society +1504.00012 Theory +1504.00912 Analysis of PDEs +1504.02471 +1504.02536 Information Theory +1504.05228 Algebraic Geometry +1504.06005 Operator Algebras +1504.07149 Data Structures and Algorithms +1504.07557 Earth and Planetary Astrophysics +1505.03647 +1505.04509 +1505.04905 Numerical Analysis +1505.05142 Strongly Correlated Electrons +1505.07682 Mesoscale and Nanoscale Physics +1506.00622 Theory +1506.01396 +1506.01959 Numerical Analysis +1506.02258 Chaotic Dynamics +1506.02572 Computational Geometry +1506.02669 Theory +1506.03111 Geometric Topology +1506.03579 Optics +1506.04288 Functional Analysis +1506.05722 +1506.08242 Mesoscale and Nanoscale Physics +1507.00722 Mesoscale and Nanoscale Physics +1507.01323 Analysis of PDEs +1507.01547 Theory +1507.01643 Astrophysics of Galaxies +1507.04237 Number Theory +1507.05636 Astrophysics of Galaxies +1507.08541 +1507.08742 Cell Behavior +1508.00221 Statistical Mechanics +1508.00226 Medical Physics +1508.00775 General Topology +1508.00869 +1508.01530 Operator Algebras +1508.01615 Astrophysics of Galaxies +1508.03129 Algebraic Topology +1508.03377 Analysis of PDEs +1508.03534 Physics and Society +1508.05601 Numerical Analysis +1508.07136 Distributed, Parallel, and Cluster Computing +1508.07772 Superconductivity +1509.00023 Solar and Stellar Astrophysics +1509.00544 Instrumentation and Methods for Astrophysics +1509.00624 Chemical Physics +1509.03835 +1509.04571 Optics +1509.04635 Statistical Mechanics +1509.04965 Classical Analysis and ODEs +1509.04998 Group Theory +1509.05588 Chemical Physics +1509.06748 Phenomenology +1509.09293 Physics and Society +1510.01000 Algebraic Geometry +1510.01711 Astrophysics of Galaxies +1510.02097 Solar and Stellar Astrophysics +1510.02760 Phenomenology +1510.03024 Soft Condensed Matter +1510.03728 Geometric Topology +1510.04742 Astrophysics of Galaxies +1510.05288 Analysis of PDEs +1510.05429 Quantum Gases +1510.05778 Theory +1510.06259 Representation Theory +1510.07834 Solar and Stellar Astrophysics +1510.08084 Astrophysics of Galaxies +1510.08428 +1510.08455 Strongly Correlated Electrons +1510.08495 Optics +1510.08870 Theory +1510.09116 +1510.09205 +1511.00070 Dynamical Systems +1511.01296 +1511.01767 Solar and Stellar Astrophysics +1511.01817 Theory +1511.01906 +1511.03221 Materials Science +1511.03245 Cosmology and Nongalactic Astrophysics +1511.04397 Computer Vision and Pattern Recognition +1511.04684 Theory +1511.04827 Algebraic Topology +1511.04865 Theory +1511.05984 Strongly Correlated Electrons +1511.07438 Astrophysics of Galaxies +1511.07486 Strongly Correlated Electrons +1511.07871 Solar and Stellar Astrophysics +1511.08088 Digital Libraries +1511.08150 Theory +1511.08483 Mesoscale and Nanoscale Physics +1511.08705 +1511.09282 Mesoscale and Nanoscale Physics +1511.09453 Soft Condensed Matter +1512.00441 Analysis of PDEs +1512.00692 +1512.00801 +1512.00822 Networking and Internet Architecture +1512.01477 +1512.01570 Instrumentation and Methods for Astrophysics +1512.01945 +1512.02388 Earth and Planetary Astrophysics +1512.03912 +1512.03928 Materials Science +1512.03994 Quantum Gases +1512.04551 Astrophysics of Galaxies +1512.04636 Methodology +1512.05013 Physics and Society +1512.05344 Cosmology and Nongalactic Astrophysics +1512.05971 Mesoscale and Nanoscale Physics +1512.06598 Optics +1512.06684 Differential Geometry +1512.06742 Phenomenology +1512.06828 Phenomenology +1512.06959 Phenomenology +1512.07036 Adaptation and Self-Organizing Systems +1512.07243 Phenomenology +1512.07313 +1512.07683 +1512.07925 Earth and Planetary Astrophysics +1512.09130 Theory +1512.09148 Phenomenology +1512.09371 Solar and Stellar Astrophysics +1601.00068 Soft Condensed Matter +1601.00615 High Energy Astrophysical Phenomena +1601.00616 High Energy Astrophysical Phenomena +1601.01355 Phenomenology +1601.01764 Optics +1601.01823 Solar and Stellar Astrophysics +1601.01970 Cosmology and Nongalactic Astrophysics +1601.01987 Trading and Market Microstructure +1601.02276 Materials Science +1601.02541 Mesoscale and Nanoscale Physics +1601.02734 High Energy Astrophysical Phenomena +1601.02760 Combinatorics +1601.02839 Astrophysics of Galaxies +1601.03078 Fluid Dynamics +1601.05086 +1601.05135 Optics +1601.05251 Combinatorics +1601.05262 Statistical Mechanics +1601.05523 Materials Science +1601.05809 +1601.05832 Plasma Physics +1601.06063 Cosmology and Nongalactic Astrophysics +1601.06446 Materials Science +1601.06837 +1601.07147 Group Theory +1601.07314 Earth and Planetary Astrophysics +1601.07333 Networking and Internet Architecture +1601.07547 Statistical Mechanics +1601.07619 +1601.07753 Phenomenology +1601.07761 Astrophysics of Galaxies +1602.00137 Fluid Dynamics +1602.00638 Earth and Planetary Astrophysics +1602.00688 Astrophysics of Galaxies +1602.01377 Phenomenology +1602.01704 Materials Science +1602.01850 +1602.01918 +1602.02239 Materials Science +1602.03136 Mesoscale and Nanoscale Physics +1602.03343 Soft Condensed Matter +1602.03560 Lattice +1602.03892 Quantum Gases +1602.03937 Strongly Correlated Electrons +1602.04222 Astrophysics of Galaxies +1602.04378 +1602.05277 Strongly Correlated Electrons +1602.05583 Phenomenology +1602.05733 Phenomenology +1602.05966 Phenomenology +1602.06055 Strongly Correlated Electrons +1602.06362 +1602.06507 Mesoscale and Nanoscale Physics +1602.06766 Mesoscale and Nanoscale Physics +1602.06960 Astrophysics of Galaxies +1602.07666 Probability +1602.07993 +1602.08424 Quantum Gases +1602.08432 Lattice +1602.08490 Phenomenology +1603.00311 Optimization and Control +1603.00392 Earth and Planetary Astrophysics +1603.00730 High Energy Astrophysical Phenomena +1603.00996 +1603.01278 Solar and Stellar Astrophysics +1603.01449 Atomic Physics +1603.02210 +1603.02219 +1603.02264 Populations and Evolution +1603.02392 Atmospheric and Oceanic Physics +1603.02548 Strongly Correlated Electrons +1603.02680 Phenomenology +1603.03354 Mesoscale and Nanoscale Physics +1603.03550 Cosmology and Nongalactic Astrophysics +1603.03993 +1603.04152 Cosmology and Nongalactic Astrophysics +1603.04471 Theory +1603.04551 Statistics Theory +1603.04763 Analysis of PDEs +1603.04776 Phenomenology +1603.04864 Quantum Gases +1603.05242 +1603.05485 Astrophysics of Galaxies +1603.05505 Phenomenology +1603.05614 Learning +1603.05630 Lattice +1603.05645 Representation Theory +1603.05773 Numerical Analysis +1603.05798 +1603.06377 +1603.06452 Quantum Gases +1603.06472 +1603.06490 Representation Theory +1603.06592 Solar and Stellar Astrophysics +1603.06593 Solar and Stellar Astrophysics +1603.06823 Statistical Mechanics +1603.06951 Solar and Stellar Astrophysics +1603.07018 +1603.07019 Optimization and Control +1603.07095 Materials Science +1603.07229 Computer Science and Game Theory +1603.07422 Astrophysics of Galaxies +1603.07450 Mesoscale and Nanoscale Physics +1603.07469 Quantum Gases +1603.07920 Astrophysics of Galaxies +1603.08003 Solar and Stellar Astrophysics +1603.08008 Earth and Planetary Astrophysics +1603.08488 Astrophysics of Galaxies +1603.08565 Earth and Planetary Astrophysics +1603.08958 Cosmology and Nongalactic Astrophysics +1603.08999 Strongly Correlated Electrons +1603.09543 Theory +1603.09617 Databases +1604.00444 Theory +1604.00495 +1604.00857 Experiment +1604.01259 Plasma Physics +1604.01336 Astrophysics of Galaxies +1604.01403 High Energy Astrophysical Phenomena +1604.01770 Cosmology and Nongalactic Astrophysics +1604.01854 Machine Learning +1604.02121 Theory +1604.02178 Solar and Stellar Astrophysics +1604.02667 Theory +1604.02837 Statistical Mechanics +1604.03070 Classical Analysis and ODEs +1604.03107 Earth and Planetary Astrophysics +1604.03315 Phenomenology +1604.03564 Astrophysics of Galaxies +1604.03955 Strongly Correlated Electrons +1604.04149 Cryptography and Security +1604.04525 Geophysics +1604.04533 Disordered Systems and Neural Networks +1604.04785 Astrophysics of Galaxies +1604.04832 +1604.05217 Accelerator Physics +1604.05443 Solar and Stellar Astrophysics +1604.05610 Solar and Stellar Astrophysics +1604.05611 Solar and Stellar Astrophysics +1604.05613 Astrophysics of Galaxies +1604.05739 +1604.05794 Astrophysics of Galaxies +1604.05935 Solar and Stellar Astrophysics +1604.05938 Mesoscale and Nanoscale Physics +1604.06362 Earth and Planetary Astrophysics +1604.06461 Astrophysics of Galaxies +1604.06533 Earth and Planetary Astrophysics +1604.06860 Materials Science +1604.06906 Statistics Theory +1604.07170 Solar and Stellar Astrophysics +1604.07263 Theory +1604.07278 Strongly Correlated Electrons +1604.07294 High Energy Astrophysical Phenomena +1604.07313 Astrophysics of Galaxies +1604.07325 Space Physics +1604.07364 Astrophysics of Galaxies +1604.07406 Earth and Planetary Astrophysics +1604.07459 Mesoscale and Nanoscale Physics +1604.07461 Earth and Planetary Astrophysics +1604.07502 Solar and Stellar Astrophysics +1604.07552 Materials Science +1604.07616 +1604.07632 +1604.07910 Cosmology and Nongalactic Astrophysics +1604.07984 Instrumentation and Methods for Astrophysics +1604.08008 Phenomenology +1604.08177 Earth and Planetary Astrophysics +1604.08404 Solar and Stellar Astrophysics +1604.08479 +1604.08522 Quantum Gases +1604.08566 High Energy Astrophysical Phenomena +1604.08604 Earth and Planetary Astrophysics +1604.08889 Optics +1605.00084 Materials Science +1605.00135 Soft Condensed Matter +1605.00270 High Energy Astrophysical Phenomena +1605.00323 Solar and Stellar Astrophysics +1605.00530 Cosmology and Nongalactic Astrophysics +1605.00644 Astrophysics of Galaxies +1605.00658 Phenomenology +1605.00665 Astrophysics of Galaxies +1605.00675 Mesoscale and Nanoscale Physics +1605.00711 High Energy Astrophysical Phenomena +1605.00753 +1605.01055 Theory +1605.01157 Phenomenology +1605.01296 High Energy Astrophysical Phenomena +1605.01352 Programming Languages +1605.01648 High Energy Astrophysical Phenomena +1605.01683 Phenomenology +1605.01846 Artificial Intelligence +1605.01951 Phenomenology +1605.01955 Earth and Planetary Astrophysics +1605.02272 High Energy Astrophysical Phenomena +1605.02279 Distributed, Parallel, and Cluster Computing +1605.02413 Theory +1605.02654 Portfolio Management +1605.02719 Experiment +1605.02780 Solar and Stellar Astrophysics +1605.02879 Mesoscale and Nanoscale Physics +1605.03054 Astrophysics of Galaxies +1605.03166 Solar and Stellar Astrophysics +1605.03216 Solar and Stellar Astrophysics +1605.03376 Solar and Stellar Astrophysics +1605.03487 Earth and Planetary Astrophysics +1605.03625 Phenomenology +1605.04259 Analysis of PDEs +1605.04298 Statistical Mechanics +1605.04442 Lattice +1605.04775 Astrophysics of Galaxies +1605.04799 Astrophysics of Galaxies +1605.05392 High Energy Astrophysical Phenomena +1605.05517 Quantitative Methods +1605.06505 Astrophysics of Galaxies +1605.06646 Phenomenology +1605.06709 Combinatorics +1605.06942 Earth and Planetary Astrophysics +1605.07565 Astrophysics of Galaxies +1605.07667 Astrophysics of Galaxies +1605.07908 Metric Geometry +1605.07989 Artificial Intelligence +1605.08037 Astrophysics of Galaxies +1605.08533 Solar and Stellar Astrophysics +1605.08706 Chemical Physics +1605.08809 Earth and Planetary Astrophysics +1605.08968 High Energy Astrophysical Phenomena +1605.09120 High Energy Astrophysical Phenomena +1605.09377 High Energy Astrophysical Phenomena +1605.09597 +1606.00784 +1606.01030 Solar and Stellar Astrophysics +1606.01106 Programming Languages +1606.01389 Optics +1606.01658 Pattern Formation and Solitons +1606.01891 Representation Theory +1606.02294 Earth and Planetary Astrophysics +1606.02548 Astrophysics of Galaxies +1606.02733 Theory +1606.02813 Earth and Planetary Astrophysics +1606.03118 Solar and Stellar Astrophysics +1606.03512 Astrophysics of Galaxies +1606.04539 Instrumentation and Methods for Astrophysics +1606.04642 Probability +1606.04989 Astrophysics of Galaxies +1606.05333 Methodology +1606.06712 +1606.06841 Methodology +1606.06977 Mathematical Software +1606.07122 Chemical Physics +1606.07131 Mesoscale and Nanoscale Physics +1606.07694 Classical Physics +1606.07746 +1606.08035 +1606.08171 Theory +1606.08274 +1606.08462 Cosmology and Nongalactic Astrophysics +1606.08478 Solar and Stellar Astrophysics +1606.08491 Solar and Stellar Astrophysics +1606.08877 Accelerator Physics +1606.09002 Computer Vision and Pattern Recognition +1606.09008 Algebraic Geometry +1606.09143 Functional Analysis +1606.09315 Databases +1606.09492 Combinatorics +1606.09625 Algebraic Geometry +1607.00003 +1607.00220 Optics +1607.00265 Solar and Stellar Astrophysics +1607.00484 Solar and Stellar Astrophysics +1607.00537 Social and Information Networks +1607.00557 Solar and Stellar Astrophysics +1607.00619 Solar and Stellar Astrophysics +1607.00666 Mesoscale and Nanoscale Physics +1607.00680 Superconductivity +1607.00729 Cryptography and Security +1607.00930 Classical Analysis and ODEs +1607.00976 Computation and Language +1607.01006 Combinatorics +1607.01008 Populations and Evolution +1607.01009 Phenomenology +1607.01016 Phenomenology +1607.01018 +1607.01029 Neurons and Cognition +1607.01030 Theory +1607.01031 Algebraic Geometry +1607.01032 Physics and Society +1607.01033 Computational Engineering, Finance, and Science +1607.01034 Combinatorics +1607.01040 Computer Vision and Pattern Recognition +1607.01042 Fluid Dynamics +1607.01043 Algebraic Geometry +1607.01044 Physics and Society +1607.01046 Databases +1607.01050 Artificial Intelligence +1607.01052 Algebraic Topology +1607.01055 Solar and Stellar Astrophysics +1607.01058 Representation Theory +1607.01063 Mesoscale and Nanoscale Physics +1607.01064 Information Theory +1607.01066 Solar and Stellar Astrophysics +1607.01069 Representation Theory +1607.01070 Analysis of PDEs +1607.01071 Classical Analysis and ODEs +1607.01073 Methodology +1607.01075 Human-Computer Interaction +1607.01076 Human-Computer Interaction +1607.01077 Human-Computer Interaction +1607.01080 Dynamical Systems +1607.01081 Analysis of PDEs +1607.01085 Information Theory +1607.01086 Mesoscale and Nanoscale Physics +1607.01087 Algebraic Geometry +1607.01091 Information Theory +1607.01092 Computer Vision and Pattern Recognition +1607.01094 Materials Science +1607.01095 Algebraic Topology +1607.01098 Classical Analysis and ODEs +1607.01102 Graphics +1607.01103 Superconductivity +1607.01104 Optimization and Control +1607.01105 Instrumentation and Methods for Astrophysics +1607.01106 Dynamical Systems +1607.01108 Algebraic Topology +1607.01110 Pricing of Securities +1607.01111 Materials Science +1607.01113 Analysis of PDEs +1607.01115 Computer Vision and Pattern Recognition +1607.01116 Information Theory +1607.01117 Combinatorics +1607.01118 Algebraic Topology +1607.01121 Optimization and Control +1607.01124 Information Theory +1607.01127 Probability +1607.01130 Mesoscale and Nanoscale Physics +1607.01131 Soft Condensed Matter +1607.01133 Computation and Language +1607.01135 Other Quantitative Biology +1607.01136 Learning +1607.01138 Other Quantitative Biology +1607.01139 Theory +1607.01140 +1607.01141 Combinatorics +1607.01144 Quantum Algebra +1607.01145 Methodology +1607.01146 Logic in Computer Science +1607.01147 Commutative Algebra +1607.01149 Computation and Language +1607.01150 Analysis of PDEs +1607.01152 Machine Learning +1607.01153 +1607.01154 +1607.01156 Analysis of PDEs +1607.01158 Phenomenology +1607.01159 Multimedia +1607.01162 Data Structures and Algorithms +1607.01163 Symplectic Geometry +1607.01165 Phenomenology +1607.01170 Lattice +1607.01172 Multimedia +1607.01181 Astrophysics of Galaxies +1607.01185 Dynamical Systems +1607.01186 Numerical Analysis +1607.01194 Optics +1607.01197 Number Theory +1607.01198 Analysis of PDEs +1607.01199 Phenomenology +1607.01200 Analysis of PDEs +1607.01202 Systems and Control +1607.01205 Computer Vision and Pattern Recognition +1607.01209 Probability +1607.01213 Optics +1607.01215 +1607.01219 Differential Geometry +1607.01220 Chemical Physics +1607.01221 Optics +1607.01224 Machine Learning +1607.01225 Optics +1607.01228 Commutative Algebra +1607.01229 Data Structures and Algorithms +1607.01233 Combinatorics +1607.01234 +1607.01235 Analysis of PDEs +1607.01236 Phenomenology +1607.01239 +1607.01241 Statistical Mechanics +1607.01243 Analysis of PDEs +1607.01249 Mathematical Software +1607.01250 General Physics +1607.01251 Statistics Theory +1607.01257 Computational Geometry +1607.01258 Number Theory +1607.01261 Multimedia +1607.01265 Physics and Society +1607.01268 General Physics +1607.01270 Statistical Mechanics +1607.01271 Dynamical Systems +1607.01274 Computation and Language +1607.01276 Algebraic Geometry +1607.01279 Solar and Stellar Astrophysics +1607.01281 Geometric Topology +1607.01282 Earth and Planetary Astrophysics +1607.01283 Discrete Mathematics +1607.01284 Information Theory +1607.01286 Theory +1607.01287 Phenomenology +1607.01289 Statistical Mechanics +1607.01293 High Energy Astrophysical Phenomena +1607.01295 +1607.01296 +1607.01297 +1607.01301 Instrumentation and Detectors +1607.01307 Materials Science +1607.01313 Computer Science and Game Theory +1607.01317 Mathematical Finance +1607.01320 Phenomenology +1607.01321 History and Overview +1607.01323 Numerical Analysis +1607.01324 Algebraic Geometry +1607.01326 +1607.01328 Quantum Gases +1607.01331 +1607.01334 +1607.01337 Artificial Intelligence +1607.01338 Analysis of PDEs +1607.01339 Plasma Physics +1607.01342 Algebraic Geometry +1607.01343 Classical Analysis and ODEs +1607.01344 Group Theory +1607.01346 Information Theory +1607.01349 Analysis of PDEs +1607.01350 +1607.01354 Learning +1607.01355 Applications +1607.01356 General Physics +1607.01358 Fluid Dynamics +1607.01359 Computers and Society +1607.01361 Theory +1607.01362 Functional Analysis +1607.01365 Astrophysics of Galaxies +1607.01366 Optics +1607.01368 Rings and Algebras +1607.01371 Applications +1607.01374 +1607.01375 Computation +1607.01376 Fluid Dynamics +1607.01377 Logic +1607.01381 Machine Learning +1607.01384 Genomics +cond-mat/0506449 Statistical Mechanics +math/0208005 Complex Variables +math/0401219 Metric Geometry +math/0412365 Group Theory +math/0502585 Geometric Topology +math/0504011 Differential Geometry +math/0506441 Complex Variables +math/0509566 Number Theory +math/0608553 Classical Analysis and ODEs +physics/0610041 Atomic and Molecular Clusters +0909.1963 Differential Geometry +1001.5312 Complex Variables +1004.1418 High Energy Astrophysical Phenomena +1009.5725 Complex Variables +1012.0156 Complex Variables +1108.0001 +1111.4221 Theory +1202.4732 Number Theory +1203.4801 +1205.2162 Quantum Gases +1208.2930 Commutative Algebra +1210.2390 +1211.7360 K-Theory and Homology +1305.0760 Phenomenology +1305.3606 Solar and Stellar Astrophysics +1305.3648 Dynamical Systems +1305.5361 Algebraic Geometry +1307.6445 Neurons and Cognition +1309.2381 Cosmology and Nongalactic Astrophysics +1309.4344 Probability +1309.5791 Algebraic Geometry +1309.7446 Differential Geometry +1309.7939 Pattern Formation and Solitons +1310.6774 Cosmology and Nongalactic Astrophysics +1311.4371 +1312.3276 Atomic Physics +1312.3791 Materials Science +1401.5486 General Mathematics +1402.2535 Analysis of PDEs +1402.4893 Computer Vision and Pattern Recognition +1403.2989 Dynamical Systems +1403.7620 Superconductivity +1404.5380 Geometric Topology +1405.4629 Combinatorics +1405.6905 Mathematical Finance +1406.0990 Differential Geometry +1406.6608 Networking and Internet Architecture +1407.4091 Metric Geometry +1407.6476 Commutative Algebra +1407.8339 Learning +1408.0361 Statistics Theory +1408.2528 Strongly Correlated Electrons +1408.3103 Materials Science +1409.0858 Cosmology and Nongalactic Astrophysics +1409.1726 Social and Information Networks +1409.1729 Rings and Algebras +1409.2831 Solar and Stellar Astrophysics +1409.4053 Classical Analysis and ODEs +1409.4327 Computer Vision and Pattern Recognition +1410.4032 Phenomenology +1410.4181 Analysis of PDEs +1410.4881 Theory +1410.5269 Algebraic Topology +1410.5619 Geometric Topology +1410.8547 +1411.1382 Rings and Algebras +1411.1492 Differential Geometry +1411.2870 Astrophysics of Galaxies +1411.3939 Analysis of PDEs +1411.4386 Accelerator Physics +1412.4063 High Energy Astrophysical Phenomena +1412.4477 Geometric Topology +1412.5168 Mesoscale and Nanoscale Physics +1412.7053 Superconductivity +1412.7847 Geometric Topology +1412.8714 Phenomenology +1412.8717 Phenomenology +1501.04308 Probability +1501.05366 Mesoscale and Nanoscale Physics +1501.06707 +1502.00431 Quantum Gases +1502.02590 Learning +1502.03166 Number Theory +1502.03262 Phenomenology +1502.04339 Dynamical Systems +1502.04852 Geometric Topology +1502.05079 Algebraic Geometry +1502.05679 Number Theory +1502.05749 Materials Science +1502.07973 +1503.01391 +1503.01629 Analysis of PDEs +1503.04160 Algebraic Geometry +1503.04532 +1503.05026 Strongly Correlated Electrons +1503.05724 Machine Learning +1503.06035 Commutative Algebra +1503.07254 Optimization and Control +1504.00289 Optics +1504.00628 Mesoscale and Nanoscale Physics +1504.01646 Representation Theory +1504.02522 Number Theory +1504.02868 Strongly Correlated Electrons +1504.03041 +1504.03444 Number Theory +1504.04484 Fluid Dynamics +1504.05300 Differential Geometry +1504.05611 Dynamical Systems +1504.05629 Symplectic Geometry +1504.07130 +1504.07517 Pattern Formation and Solitons +1504.07770 Quantum Gases +1504.07837 Number Theory +1504.08019 Quantum Gases +1505.00369 Statistics Theory +1505.01817 Social and Information Networks +1505.02017 Genomics +1505.02206 Computer Vision and Pattern Recognition +1505.02476 Physics and Society +1505.03098 Algebraic Topology +1505.03870 Phenomenology +1505.04253 Group Theory +1505.04915 Differential Geometry +1505.05102 +1505.07444 Quantum Gases +1505.08046 Probability +1505.08142 +1506.00048 Differential Geometry +1506.00742 Number Theory +1506.01342 Computer Vision and Pattern Recognition +1506.03571 Methodology +1506.03876 +1506.05032 Computer Vision and Pattern Recognition +1506.07171 Strongly Correlated Electrons +1506.07283 Statistical Mechanics +1506.07300 Learning +1506.07376 Soft Condensed Matter +1506.08948 Superconductivity +1506.09034 Probability +1506.09075 Computer Vision and Pattern Recognition +1507.00339 Theory +1507.01436 Strongly Correlated Electrons +1507.02461 Theory +1507.02661 Earth and Planetary Astrophysics +1507.02757 Physics and Society +1507.04079 Optics +1507.07285 Mesoscale and Nanoscale Physics +1508.00760 Atomic Physics +1508.01109 Astrophysics of Galaxies +1508.01114 +1508.01435 Numerical Analysis +1508.01830 Strongly Correlated Electrons +1508.02396 Theory +1508.02692 Analysis of PDEs +1508.03050 Phenomenology +1508.03321 Phenomenology +1508.03343 +1508.03405 Probability +1508.03963 Materials Science +1508.04255 Soft Condensed Matter +1508.04270 Superconductivity +1508.04332 General Finance +1508.04491 Superconductivity +1508.04682 +1508.04847 Mesoscale and Nanoscale Physics +1508.06980 Experiment +1508.07905 Superconductivity +1509.00744 Materials Science +1509.01561 +1509.01563 Materials Science +1509.02758 High Energy Astrophysical Phenomena +1509.03166 Mesoscale and Nanoscale Physics +1509.03184 +1509.03336 Theory +1509.04272 Theory +1509.04665 +1509.05506 Information Theory +1509.06924 +1509.07777 +1509.08085 +1509.08804 +1509.08939 +1510.00302 Phenomenology +1510.00448 Quantum Gases +1510.00470 Materials Science +1510.00546 +1510.00750 Mesoscale and Nanoscale Physics +1510.01097 Atomic Physics +1510.01686 Phenomenology +1510.02582 Theory +1510.02984 Computational Physics +1510.03293 Phenomenology +1510.03316 +1510.03390 Theory +1510.03428 Strongly Correlated Electrons +1510.03450 Phenomenology +1510.03460 Phenomenology +1510.03554 Cosmology and Nongalactic Astrophysics +1510.04266 Algebraic Geometry +1510.04783 Phenomenology +1510.04920 +1510.05085 Materials Science +1510.05526 Statistics Theory +1510.05692 Phenomenology +1510.05816 +1510.05928 +1510.06329 Functional Analysis +1510.06381 Dynamical Systems +1510.06719 Theory +1510.06785 Physics and Society +1510.06938 +1510.07029 Theory +1510.07754 Experiment +1510.07916 Statistical Mechanics +1510.08077 Cosmology and Nongalactic Astrophysics +1510.08088 Soft Condensed Matter +1510.08288 Phenomenology +1510.08948 Phenomenology +1510.09172 Superconductivity +1511.00602 Physics and Society +1511.00697 Phenomenology +1511.00738 +1511.01200 Phenomenology +1511.01348 Mesoscale and Nanoscale Physics +1511.01364 Mesoscale and Nanoscale Physics +1511.01843 Strongly Correlated Electrons +1511.02244 Phenomenology +1511.02708 +1511.03485 Phenomenology +1511.03654 High Energy Astrophysical Phenomena +1511.04366 High Energy Astrophysical Phenomena +1511.04638 Cosmology and Nongalactic Astrophysics +1511.05652 +1511.05823 Algebraic Topology +1511.05970 Theory +1511.06045 Soft Condensed Matter +1511.06289 +1511.06881 Computer Vision and Pattern Recognition +1511.06939 Learning +1511.07232 Mesoscale and Nanoscale Physics +1511.07323 +1511.07880 Strongly Correlated Electrons +1511.08120 Phenomenology +1511.08223 Theory +1511.08390 Mesoscale and Nanoscale Physics +1511.08418 Computer Vision and Pattern Recognition +1511.08430 Quantum Gases +1511.08835 +1511.09176 Phenomenology +1512.00452 Astrophysics of Galaxies +1512.00470 Theory +1512.00760 Strongly Correlated Electrons +1512.00913 Phenomenology +1512.01245 Superconductivity +1512.01494 +1512.01888 +1512.02212 Statistical Mechanics +1512.02453 Plasma Physics +1512.02491 Statistical Mechanics +1512.02654 Cosmology and Nongalactic Astrophysics +1512.02906 Mesoscale and Nanoscale Physics +1512.02932 +1512.02936 Optics +1512.03001 Phenomenology +1512.03010 +1512.03158 +1512.03322 Quantum Gases +1512.03369 Mesoscale and Nanoscale Physics +1512.03392 +1512.03869 Geometric Topology +1512.03893 Materials Science +1512.04440 Soft Condensed Matter +1512.04899 +1512.05032 Number Theory +1512.05274 Physics and Society +1512.05304 Mesoscale and Nanoscale Physics +1512.05439 Phenomenology +1512.05474 Phenomenology +1512.05713 +1512.05985 Materials Science +1512.05995 Quantum Gases +1512.06028 Phenomenology +1512.06048 +1512.06201 Statistical Mechanics +1512.06395 Databases +1512.06931 Mesoscale and Nanoscale Physics +1512.07028 Solar and Stellar Astrophysics +1512.07198 Cosmology and Nongalactic Astrophysics +1512.07244 +1512.07433 +1512.07555 Lattice +1512.07621 Statistics Theory +1512.07705 Theory +1512.07825 Strongly Correlated Electrons +1512.07828 High Energy Astrophysical Phenomena +1512.07913 Solar and Stellar Astrophysics +1512.07977 +1512.08214 +1512.08275 +1512.08446 Quantum Gases +1512.08616 Soft Condensed Matter +1512.08678 Lattice +1512.09102 Optics +1512.09146 +1601.00026 +1601.00189 +1601.00235 Theory +1601.00251 Instrumentation and Detectors +1601.00531 Mesoscale and Nanoscale Physics +1601.01250 +1601.01449 Solar and Stellar Astrophysics +1601.02074 Combinatorics +1601.02247 Phenomenology +1601.02534 Mesoscale and Nanoscale Physics +1601.02874 Instrumentation and Detectors +1601.03021 +1601.03046 Theory +1601.03181 High Energy Astrophysical Phenomena +1601.03270 Strongly Correlated Electrons +1601.03335 Commutative Algebra +1601.03404 Mesoscale and Nanoscale Physics +1601.03729 Cosmology and Nongalactic Astrophysics +1601.04137 Phenomenology +1601.04241 Phenomenology +1601.04645 Strongly Correlated Electrons +1601.05046 Optics +1601.05157 Soft Condensed Matter +1601.05209 Solar and Stellar Astrophysics +1601.05735 +1601.05869 Quantum Gases +1601.06080 Astrophysics of Galaxies +1601.06086 Theory +1601.06157 Analysis of PDEs +1601.06171 Astrophysics of Galaxies +1601.07017 Solar and Stellar Astrophysics +1601.07103 +1601.07542 Solar and Stellar Astrophysics +1601.07638 Representation Theory +1601.07732 +1601.07735 High Energy Astrophysical Phenomena +1601.07784 Theory +1602.00009 Earth and Planetary Astrophysics +1602.00322 Earth and Planetary Astrophysics +1602.00460 Astrophysics of Galaxies +1602.00464 Fluid Dynamics +1602.00517 Solar and Stellar Astrophysics +1602.00835 Solar and Stellar Astrophysics +1602.01194 Strongly Correlated Electrons +1602.01677 Phenomenology +1602.01685 Soft Condensed Matter +1602.02031 Statistical Mechanics +1602.02227 +1602.02259 Theory +1602.02605 Statistics Theory +1602.02694 Numerical Analysis +1602.02811 +1602.03430 High Energy Astrophysical Phenomena +1602.03802 Combinatorics +1602.04337 +1602.04788 Phenomenology +1602.05388 Computation and Language +1602.05401 Combinatorics +1602.05514 Phenomenology +1602.05553 High Energy Astrophysical Phenomena +1602.05785 Earth and Planetary Astrophysics +1602.05970 Geophysics +1602.06216 Superconductivity +1602.06715 Number Theory +1602.06955 High Energy Astrophysical Phenomena +1602.07121 Astrophysics of Galaxies +1602.07140 Physics and Society +1602.08157 Strongly Correlated Electrons +1602.08238 Information Theory +1602.08303 Atomic Physics +1602.08359 Algebraic Geometry +1602.08942 Astrophysics of Galaxies +1602.09011 Strongly Correlated Electrons +1603.00270 Solar and Stellar Astrophysics +1603.00489 Computer Vision and Pattern Recognition +1603.01050 +1603.01220 +1603.01452 Astrophysics of Galaxies +1603.01627 +1603.01713 Medical Physics +1603.01774 Digital Libraries +1603.01846 Subcellular Processes +1603.02178 Social and Information Networks +1603.02774 +1603.03120 +1603.04221 High Energy Astrophysical Phenomena +1603.05509 High Energy Astrophysical Phenomena +1603.05657 Solar and Stellar Astrophysics +1603.05999 Solar and Stellar Astrophysics +1603.06010 Cosmology and Nongalactic Astrophysics +1603.06041 Computer Vision and Pattern Recognition +1603.06096 Astrophysics of Galaxies +1603.06479 Analysis of PDEs +1603.06591 High Energy Astrophysical Phenomena +1603.06595 Astrophysics of Galaxies +1603.06601 Astrophysics of Galaxies +1603.06602 Astrophysics of Galaxies +1603.07049 Statistical Mechanics +1603.07199 Operator Algebras +1603.07228 Mesoscale and Nanoscale Physics +1603.07290 +1603.07673 Cosmology and Nongalactic Astrophysics +1603.07758 Statistical Mechanics +1603.07840 Combinatorics +1603.08162 Numerical Analysis +1603.08246 Systems and Control +1603.08247 +1603.08253 Artificial Intelligence +1603.08262 Artificial Intelligence +1603.08298 Dynamical Systems +1603.08308 Human-Computer Interaction +1603.08512 Data Analysis, Statistics and Probability +1603.08514 Databases +1603.08517 Mesoscale and Nanoscale Physics +1603.08525 Phenomenology +1603.08533 Number Theory +1603.08535 Soft Condensed Matter +1603.08540 Number Theory +1603.08541 Analysis of PDEs +1603.08543 Robotics +1603.08544 Materials Science +1603.08546 History and Overview +1603.08549 History and Overview +1603.08551 Neural and Evolutionary Computing +1603.08555 +1603.08556 Dynamical Systems +1603.08558 Theory +1603.08564 Computer Vision and Pattern Recognition +1603.08566 Differential Geometry +1603.08568 Differential Geometry +1603.08569 Rings and Algebras +1603.08570 Mesoscale and Nanoscale Physics +1603.08571 Numerical Analysis +1603.08573 Solar and Stellar Astrophysics +1603.08577 Software Engineering +1603.08581 Materials Science +1603.08582 Robotics +1603.08583 Combinatorics +1603.08584 Statistics Theory +1603.08587 Differential Geometry +1603.08589 Information Theory +1603.08590 Geometric Topology +1603.08591 Experiment +1603.08592 Computer Vision and Pattern Recognition +1603.08593 Optimization and Control +1603.08594 Computation and Language +1603.08597 Computer Vision and Pattern Recognition +1603.08598 Logic +1603.08600 +1603.08601 Logic +1603.08602 Methodology +1603.08603 Materials Science +1603.08604 Learning +1603.08605 Dynamical Systems +1603.08607 +1603.08610 Probability +1603.08611 Theory +1603.08616 Learning +1603.08617 Plasma Physics +1603.08618 Strongly Correlated Electrons +1603.08619 Distributed, Parallel, and Cluster Computing +1603.08621 Operator Algebras +1603.08622 Probability +1603.08623 Number Theory +1603.08624 Theory +1603.08625 Mesoscale and Nanoscale Physics +1603.08627 Data Structures and Algorithms +1603.08629 +1603.08631 Computer Vision and Pattern Recognition +1603.08632 Software Engineering +1603.08633 Software Engineering +1603.08634 Distributed, Parallel, and Cluster Computing +1603.08635 Systems and Control +1603.08636 Software Engineering +1603.08641 +1603.08642 Robotics +1603.08647 Biological Physics +1603.08650 Group Theory +1603.08651 Metric Geometry +1603.08652 Methodology +1603.08655 Populations and Evolution +1603.08656 +1603.08664 Networking and Internet Architecture +1603.08671 Solar and Stellar Astrophysics +1603.08674 +1603.08676 +1603.08678 Computer Vision and Pattern Recognition +1603.08680 Mesoscale and Nanoscale Physics +1603.08681 Experiment +1603.08682 Earth and Planetary Astrophysics +1603.08684 Optics +1603.08686 Numerical Analysis +1603.08687 Functional Analysis +1603.08691 Statistics Theory +1603.08697 Information Theory +1603.08699 Functional Analysis +1603.08701 Computation and Language +1603.08702 Computation and Language +1603.08704 Machine Learning +1603.08705 Computation and Language +1603.08706 Functional Analysis +1603.08708 Machine Learning +1603.08710 Superconductivity +1603.08712 Cell Behavior +1603.08713 General Topology +1603.08715 Group Theory +1603.08716 Optimization and Control +1603.08723 Functional Analysis +1603.08726 Differential Geometry +1603.08728 +1603.08730 Strongly Correlated Electrons +1603.08732 Algebraic Geometry +1603.08733 Numerical Analysis +1603.08737 +1603.08738 +1603.08740 Sound +1603.08746 Materials Science +1603.08750 Analysis of PDEs +1603.08752 Symbolic Computation +1603.08753 Graphics +1603.08755 +1603.08762 Functional Analysis +1603.08766 Optimization and Control +1603.08767 Distributed, Parallel, and Cluster Computing +1603.08768 Category Theory +1603.08769 Logic in Computer Science +1603.08771 Chaotic Dynamics +1603.08775 Combinatorics +1603.08777 Information Theory +1603.08779 Combinatorics +1603.08780 Analysis of PDEs +1603.08789 Artificial Intelligence +1603.08792 +1603.08793 +1603.08797 Representation Theory +1603.08801 +1603.08810 Computer Vision and Pattern Recognition +1603.08813 Applications +1603.08815 Computation +1603.08820 Plasma Physics +1603.08821 Physics and Society +1603.08825 +1603.08826 Quantum Gases +1603.08828 Mathematical Finance +1603.08830 Methodology +1603.08832 Computation and Language +1603.08833 Logic +1603.08835 Statistical Mechanics +1603.08839 Superconductivity +1603.08841 Instrumentation and Detectors +1603.08843 Functional Analysis +1603.08845 Probability +1603.08850 Metric Geometry +1603.08851 Optimization and Control +1603.08852 Functional Analysis +1603.08853 Computer Science and Game Theory +1603.08854 Lattice +1603.08855 Algebraic Topology +1603.08857 Space Physics +1603.08858 Numerical Analysis +1603.08863 Solar and Stellar Astrophysics +1603.08868 Computation and Language +1603.08869 Artificial Intelligence +1603.08870 Algebraic Geometry +1603.08872 Complex Variables +1603.08877 Geometric Topology +1603.08879 Materials Science +1603.08884 Computation and Language +1603.08885 Networking and Internet Architecture +1603.08888 Dynamical Systems +1603.08889 Medical Physics +1603.08891 Superconductivity +1603.08897 Superconductivity +1603.08899 Materials Science +1603.08902 Instrumentation and Methods for Astrophysics +1603.08903 Atomic Physics +1603.08907 Computer Vision and Pattern Recognition +1603.08912 Analysis of PDEs +1603.08915 Representation Theory +cond-mat/0310441 Strongly Correlated Electrons +0909.1066 Analysis of PDEs +1011.5704 Strongly Correlated Electrons +1101.3411 Mesoscale and Nanoscale Physics +1109.4547 Numerical Analysis +1201.3667 Logic in Computer Science +1205.2988 Category Theory +1205.3279 Theory +1205.3584 Theory +1205.3862 Theory +1206.0439 +1211.0885 Group Theory +1211.1296 Classical Analysis and ODEs +1211.6274 Algebraic Geometry +1212.1364 Optics +1301.7577 Theory +1302.3766 Group Theory +1302.5906 Information Theory +1303.2234 +1303.2994 Algebraic Geometry +1304.4997 Algebraic Geometry +1304.6048 Geophysics +1306.2793 Probability +1306.3669 Dynamical Systems +1307.6853 Fluid Dynamics +1308.1863 Representation Theory +1308.6082 Analysis of PDEs +1309.3904 Representation Theory +1309.7125 Soft Condensed Matter +1310.1521 Fluid Dynamics +1310.5761 Materials Science +1310.5796 Learning +1311.3524 Category Theory +1311.7277 Dynamical Systems +1401.5490 Astrophysics of Galaxies +1401.7530 Dynamical Systems +1402.1312 Dynamical Systems +1402.1717 Representation Theory +1402.3351 Representation Theory +1402.5915 Fluid Dynamics +1402.6453 Theory +1403.0310 Geometric Topology +1403.2701 Dynamical Systems +1403.7142 Plasma Physics +1404.0271 Symplectic Geometry +1404.2778 Dynamical Systems +1404.5070 Number Theory +1405.3913 Probability +1405.4224 Quantum Gases +1405.4747 Dynamical Systems +1405.5715 Functional Analysis +1406.2403 +1407.6404 Dynamical Systems +1408.0651 Artificial Intelligence +1408.2493 Logic +1408.4107 Combinatorics +1408.5488 Combinatorics +1408.6027 Learning +1408.6716 Algebraic Geometry +1409.2698 Commutative Algebra +1409.3688 +1409.5686 Learning +1409.6593 Algebraic Geometry +1409.7040 Analysis of PDEs +1410.4211 Strongly Correlated Electrons +1410.6708 Algebraic Geometry +1410.6908 K-Theory and Homology +1410.7807 Analysis of PDEs +1411.0794 Logic +1411.1098 Physics and Society +1411.6516 Numerical Analysis +1412.0396 Materials Science +1412.2860 Cosmology and Nongalactic Astrophysics +1412.2926 Theory +1412.2955 Phenomenology +1412.4020 Logic in Computer Science +1501.01618 Cosmology and Nongalactic Astrophysics +1501.02189 Phenomenology +1501.06203 Superconductivity +1501.06730 +1502.00979 Information Theory +1502.05406 Phenomenology +1503.01518 Materials Science +1503.02084 Astrophysics of Galaxies +1503.04025 Statistical Mechanics +1503.05633 Strongly Correlated Electrons +1503.05780 Optics +1504.00346 Quantum Gases +1504.00946 Methodology +1504.01652 Quantum Gases +1504.04128 Phenomenology +1504.04529 Combinatorics +1504.05141 Classical Analysis and ODEs +1504.07585 Phenomenology +1504.07974 Systems and Control +1504.08150 Performance +1505.01181 Information Theory +1505.01320 +1505.02371 Logic in Computer Science +1505.02645 Theory +1505.02753 Physics and Society +1505.03520 Strongly Correlated Electrons +1505.04529 Superconductivity +1505.04987 Category Theory +1505.06645 High Energy Astrophysical Phenomena +1505.06994 +1505.07146 Astrophysics of Galaxies +1505.07196 Strongly Correlated Electrons +1505.07998 Adaptation and Self-Organizing Systems +1506.00377 +1506.00924 Mesoscale and Nanoscale Physics +1506.03706 Instrumentation and Methods for Astrophysics +1506.04031 Phenomenology +1506.05436 Algebraic Topology +1506.06420 Commutative Algebra +1506.06453 Phenomenology +1506.07266 Pattern Formation and Solitons +1506.07293 Physics and Society +1506.08512 +1506.09115 Physics and Society +1507.00112 Numerical Analysis +1507.01836 Soft Condensed Matter +1507.02034 Fluid Dynamics +1507.02074 Statistics Theory +1507.02251 Atomic Physics +1507.02940 Populations and Evolution +1507.03135 Quantum Gases +1507.04675 +1507.05428 Numerical Analysis +1507.05697 Number Theory +1507.06955 Cryptography and Security +1507.07261 Solar and Stellar Astrophysics +1507.07333 Representation Theory +1507.08579 Phenomenology +1507.08875 Soft Condensed Matter +1508.00148 Statistical Mechanics +1508.00350 Statistical Mechanics +1508.00433 Theory +1508.01218 Experiment +1508.03409 Phenomenology +1508.03580 Astrophysics of Galaxies +1508.03635 Strongly Correlated Electrons +1508.04138 Cosmology and Nongalactic Astrophysics +1508.04375 Strongly Correlated Electrons +1508.04407 Mesoscale and Nanoscale Physics +1508.05278 Quantum Gases +1508.06278 Theory +1508.06485 Earth and Planetary Astrophysics +1508.06516 Data Analysis, Statistics and Probability +1508.06842 Optimization and Control +1508.07368 +1508.07382 Statistical Mechanics +1508.07521 Mesoscale and Nanoscale Physics +1508.07960 Experiment +1509.00851 Theory +1509.01229 Disordered Systems and Neural Networks +1509.01279 Astrophysics of Galaxies +1509.01350 Quantum Gases +1509.01479 Computational Finance +1509.02782 Instrumentation and Detectors +1509.02804 Statistical Mechanics +1509.02950 Cosmology and Nongalactic Astrophysics +1509.03396 Strongly Correlated Electrons +1509.03538 Statistical Mechanics +1509.03572 Theory +1509.03726 Theory +1509.04280 Strongly Correlated Electrons +1509.04284 Phenomenology +1509.04969 Theory +1509.05098 +1509.05307 +1509.06552 +1509.06767 Information Theory +1509.07691 Fluid Dynamics +1509.07901 Solar and Stellar Astrophysics +1509.08461 Strongly Correlated Electrons +1509.08655 Phenomenology +1510.00190 Statistical Mechanics +1510.00311 Phenomenology +1510.00660 Neurons and Cognition +1510.01561 Instrumentation and Methods for Astrophysics +1510.02025 Materials Science +1510.02051 Classical Analysis and ODEs +1510.03114 Phenomenology +1510.03738 Algebraic Geometry +1510.03834 Mesoscale and Nanoscale Physics +1510.04306 Biomolecules +1510.04416 +1510.04615 High Energy Astrophysical Phenomena +1510.04970 Mesoscale and Nanoscale Physics +1510.05007 Strongly Correlated Electrons +1510.05019 Astrophysics of Galaxies +1510.05022 High Energy Astrophysical Phenomena +1510.05298 Space Physics +1510.05504 Astrophysics of Galaxies +1510.06209 Superconductivity +1510.07677 Earth and Planetary Astrophysics +1510.08368 Systems and Control +1510.08637 Physics and Society +1510.08976 Physics and Society +1511.00407 +1511.00765 Disordered Systems and Neural Networks +1511.00828 Theory +1511.01127 Mesoscale and Nanoscale Physics +1511.01244 Theory +1511.01676 Theory +1511.01769 Mesoscale and Nanoscale Physics +1511.01797 Astrophysics of Galaxies +1511.02191 Astrophysics of Galaxies +1511.02197 Classical Physics +1511.02311 Strongly Correlated Electrons +1511.02631 High Energy Astrophysical Phenomena +1511.02787 Theory +1511.02805 Phenomenology +1511.02821 Machine Learning +1511.02861 Earth and Planetary Astrophysics +1511.03092 Mesoscale and Nanoscale Physics +1511.03276 Mesoscale and Nanoscale Physics +1511.03279 Superconductivity +1511.03627 Mesoscale and Nanoscale Physics +1511.03672 Cosmology and Nongalactic Astrophysics +1511.03718 Solar and Stellar Astrophysics +1511.03754 Atomic Physics +1511.04032 Computer Science and Game Theory +1511.04299 Cosmology and Nongalactic Astrophysics +1511.04459 Strongly Correlated Electrons +1511.04594 Cryptography and Security +1511.04624 Materials Science +1511.04660 Phenomenology +1511.05154 Phenomenology +1511.05188 Theory +1511.05228 Differential Geometry +1511.05331 Chemical Physics +1511.05343 High Energy Astrophysical Phenomena +1511.05444 +1511.05505 Theory +1511.05580 High Energy Astrophysical Phenomena +1511.05950 Learning +1511.05994 Cosmology and Nongalactic Astrophysics +1511.06003 +1511.06083 +1511.06300 Astrophysics of Galaxies +1511.06401 Strongly Correlated Electrons +1511.06402 Earth and Planetary Astrophysics +1511.06442 Learning +1511.06581 Learning +1511.06801 +1511.06816 Theory +1511.07032 Algebraic Geometry +1511.07313 Biomolecules +1511.07351 Phenomenology +1511.07435 Earth and Planetary Astrophysics +1511.07447 Phenomenology +1511.07706 Phenomenology +1511.07991 +1511.08284 Mesoscale and Nanoscale Physics +1511.08381 Mesoscale and Nanoscale Physics +1511.08401 +1511.08561 +1511.08675 Phenomenology +1511.08708 Statistical Mechanics +1511.08883 Materials Science +1511.08901 Earth and Planetary Astrophysics +1511.08983 Fluid Dynamics +1511.09151 Materials Science +1511.09309 Theory +1511.09415 Phenomenology +1511.09443 Earth and Planetary Astrophysics +1512.00068 Phenomenology +1512.00316 Physics and Society +1512.00426 Phenomenology +1512.00651 Solar and Stellar Astrophysics +1512.00924 Numerical Analysis +1512.00962 Combinatorics +1512.01077 Combinatorics +1512.01094 Experiment +1512.01367 Astrophysics of Galaxies +1512.01577 +1512.01729 Theory +1512.02055 Atomic Physics +1512.02081 Materials Science +1512.02153 Disordered Systems and Neural Networks +1512.02262 +1512.02414 Earth and Planetary Astrophysics +1512.02556 Phenomenology +1512.02694 Cosmology and Nongalactic Astrophysics +1512.03370 +1512.03579 Experiment +1512.03930 Strongly Correlated Electrons +1512.04021 Logic in Computer Science +1512.04097 Artificial Intelligence +1512.04146 Mesoscale and Nanoscale Physics +1512.04358 Artificial Intelligence +1512.04401 Theory +1512.04485 Representation Theory +1512.04544 Cosmology and Nongalactic Astrophysics +1512.04923 Optics +1512.05019 Theory +1512.05052 +1512.05149 Mesoscale and Nanoscale Physics +1512.05165 Phenomenology +1512.05247 Artificial Intelligence +1512.05254 Superconductivity +1512.05267 Mesoscale and Nanoscale Physics +1512.05410 Theory +1512.05559 Phenomenology +1512.05764 Astrophysics of Galaxies +1512.05802 General Topology +1512.05912 Strongly Correlated Electrons +1512.06177 Quantum Gases +1512.06604 +1512.06652 +1512.06739 Phenomenology +1512.06953 Fluid Dynamics +1512.07078 Mesoscale and Nanoscale Physics +1512.07083 +1512.07144 Statistical Mechanics +1512.07249 Lattice +1512.07294 Earth and Planetary Astrophysics +1512.07462 Phenomenology +1512.08434 Phenomenology +1512.08466 Theory +1512.08559 Statistical Mechanics +1512.09125 +1601.00178 Phenomenology +1601.00349 Solar and Stellar Astrophysics +1601.00406 Phenomenology +1601.00529 Artificial Intelligence +1601.01515 Cosmology and Nongalactic Astrophysics +1601.01536 Symplectic Geometry +1601.01699 Earth and Planetary Astrophysics +1601.01760 Fluid Dynamics +1601.02178 Phenomenology +1601.02457 Phenomenology +1601.02630 Astrophysics of Galaxies +1601.02682 +1601.03007 Phenomenology +1601.03045 Space Physics +1601.03269 Astrophysics of Galaxies +1601.03274 Theory +1601.03285 Soft Condensed Matter +1601.03330 Pattern Formation and Solitons +1601.03576 Phenomenology +1601.03601 +1601.03697 Fluid Dynamics +1601.03706 +1601.03761 High Energy Astrophysical Phenomena +1601.03847 Phenomenology +1601.03959 Earth and Planetary Astrophysics +1601.04050 Soft Condensed Matter +1601.04058 Disordered Systems and Neural Networks +1601.04232 Theory +1601.04459 Phenomenology +1601.04719 Instrumentation and Methods for Astrophysics +1601.05206 High Energy Astrophysical Phenomena +1601.05341 +1601.05365 Mesoscale and Nanoscale Physics +1601.05379 +1601.05424 Cosmology and Nongalactic Astrophysics +1601.05852 Theory +1601.05859 Mesoscale and Nanoscale Physics +1601.06409 Superconductivity +1601.06558 Representation Theory +1601.06696 Theory +1601.06832 Earth and Planetary Astrophysics +1601.06960 Astrophysics of Galaxies +1601.07645 High Energy Astrophysical Phenomena +1601.07675 Quantum Gases +1601.07730 Phenomenology +1601.07737 Phenomenology +1601.07748 Instrumentation and Methods for Astrophysics +1601.07786 Atomic Physics +1601.07799 Astrophysics of Galaxies +1601.07957 Optics +1602.00012 Astrophysics of Galaxies +1602.00017 Plasma Physics +1602.00058 Solar and Stellar Astrophysics +1602.00071 Data Analysis, Statistics and Probability +1602.00184 Soft Condensed Matter +1602.00370 Learning +1602.00425 Superconductivity +1602.00606 High Energy Astrophysical Phenomena +1602.00610 Differential Geometry +1602.00783 Experiment +1602.01031 +1602.01317 Phenomenology +1602.01350 Strongly Correlated Electrons +1602.01586 Mesoscale and Nanoscale Physics +1602.01649 Solar and Stellar Astrophysics +1602.02037 +1602.02161 Astrophysics of Galaxies +1602.02274 Astrophysics of Galaxies +1602.02359 Instrumentation and Methods for Astrophysics +1602.02392 Instrumentation and Methods for Astrophysics +1602.02749 Earth and Planetary Astrophysics +1602.02775 Astrophysics of Galaxies +1602.02785 Phenomenology +1602.02804 Cosmology and Nongalactic Astrophysics +1602.02947 Other Condensed Matter +1602.02951 High Energy Astrophysical Phenomena +1602.03017 High Energy Astrophysical Phenomena +1602.03182 +1602.03195 Solar and Stellar Astrophysics +1602.03296 +1602.03369 Solar and Stellar Astrophysics +1602.03470 Disordered Systems and Neural Networks +1602.03532 High Energy Astrophysical Phenomena +1602.03761 Number Theory +1602.03838 +1602.03847 +1602.03857 +1602.04123 Logic in Computer Science +1602.04375 Computation and Language +1602.04600 High Energy Astrophysical Phenomena +1602.04622 Earth and Planetary Astrophysics +1602.04879 Solar and Stellar Astrophysics +1602.04888 Phenomenology +1602.04972 Materials Science +1602.05108 Solar and Stellar Astrophysics +1602.05143 Earth and Planetary Astrophysics +1602.05190 Astrophysics of Galaxies +1602.05258 Solar and Stellar Astrophysics +1602.05464 Metric Geometry +1602.05470 Solar and Stellar Astrophysics +1602.05506 Adaptation and Self-Organizing Systems +1602.05527 Astrophysics of Galaxies +1602.06000 Earth and Planetary Astrophysics +1602.06010 Solar and Stellar Astrophysics +1602.06754 Experiment +1602.06973 Phenomenology +1602.07244 Solar and Stellar Astrophysics +1602.07339 Materials Science +1602.07481 Solar and Stellar Astrophysics +1602.07643 Cosmology and Nongalactic Astrophysics +1602.07649 Earth and Planetary Astrophysics +1602.07820 Phenomenology +1602.08008 Solar and Stellar Astrophysics +1602.08106 +1602.08190 Atomic Physics +1602.08370 Operator Algebras +1602.09142 Solar and Stellar Astrophysics +1603.00179 +1603.00205 Solar and Stellar Astrophysics +1603.00449 Mesoscale and Nanoscale Physics +1603.00473 Instrumentation and Methods for Astrophysics +1603.00482 Astrophysics of Galaxies +1603.01054 Optics +1603.01378 Earth and Planetary Astrophysics +1603.01515 Theory +1603.01913 Computation and Language +1603.02027 Solar and Stellar Astrophysics +1603.02058 Classical Analysis and ODEs +1603.02112 Group Theory +1603.02141 Earth and Planetary Astrophysics +1603.02271 High Energy Astrophysical Phenomena +1603.02278 Astrophysics of Galaxies +1603.02280 Astrophysics of Galaxies +1603.02284 Astrophysics of Galaxies +1603.02502 Earth and Planetary Astrophysics +1603.02676 +1603.02758 +1603.02777 Solar and Stellar Astrophysics +1603.03043 Instrumentation and Methods for Astrophysics +1603.03545 High Energy Astrophysical Phenomena +1603.03711 Earth and Planetary Astrophysics +1603.03909 Plasma Physics +1603.04410 Classical Analysis and ODEs +1603.04711 Cosmology and Nongalactic Astrophysics +1603.04886 High Energy Astrophysical Phenomena +1603.05226 Cryptography and Security +1603.05270 High Energy Astrophysical Phenomena +1603.05278 Astrophysics of Galaxies +1603.05517 Commutative Algebra +1603.05542 High Energy Astrophysical Phenomena +1603.05591 Soft Condensed Matter +1603.05593 Algebraic Geometry +1603.05669 High Energy Astrophysical Phenomena +1603.05771 High Energy Astrophysical Phenomena +1603.05796 Representation Theory +1603.06007 Astrophysics of Galaxies +1603.06160 Optimization and Control +1603.06295 Astrophysics of Galaxies +1603.06366 Pattern Formation and Solitons +1603.06419 Astrophysics of Galaxies +1603.06486 Solar and Stellar Astrophysics +1603.06860 Solar and Stellar Astrophysics +1603.07021 Computational Geometry +1603.07034 Solar and Stellar Astrophysics +1603.07071 Earth and Planetary Astrophysics +1603.07091 +1603.07136 Astrophysics of Galaxies +1603.07140 Astrophysics of Galaxies +1603.07196 Representation Theory +1603.07339 High Energy Astrophysical Phenomena +1603.07491 Astrophysics of Galaxies +1603.07581 Earth and Planetary Astrophysics +1603.07801 Astrophysics of Galaxies +1603.07832 Astrophysics of Galaxies +1603.08079 Computer Vision and Pattern Recognition +1603.08229 Fluid Dynamics +1603.08667 Chemical Physics +1603.08865 Computation and Language +1603.08936 Astrophysics of Galaxies +1603.09183 Theory +1603.09509 Computation and Language +1603.09572 Instrumentation and Detectors +1603.09639 High Energy Astrophysical Phenomena +1604.00206 Cryptography and Security +1604.00305 Phenomenology +1604.00474 Differential Geometry +1604.00559 Mesoscale and Nanoscale Physics +1604.00812 Optimization and Control +1604.00905 Computational Complexity +1604.00945 Classical Analysis and ODEs +1604.01014 Group Theory +1604.01015 Theory +1604.01016 +1604.01017 +1604.01019 Phenomenology +1604.01031 Solar and Stellar Astrophysics +1604.01041 Number Theory +1604.01048 Optics +1604.01054 +1604.01056 Information Theory +1604.01058 +1604.01062 Networking and Internet Architecture +1604.01064 Methodology +1604.01065 Fluid Dynamics +1604.01072 Soft Condensed Matter +1604.01074 Optimization and Control +1604.01075 Machine Learning +1604.01077 Soft Condensed Matter +1604.01079 Rings and Algebras +1604.01084 Optimization and Control +1604.01086 Earth and Planetary Astrophysics +1604.01090 Dynamical Systems +1604.01091 Computer Science and Game Theory +1604.01092 Analysis of PDEs +1604.01094 Chemical Physics +1604.01097 Numerical Analysis +1604.01098 +1604.01101 Commutative Algebra +1604.01105 Social and Information Networks +1604.01106 Number Theory +1604.01107 +1604.01108 Pattern Formation and Solitons +1604.01110 Probability +1604.01112 Cryptography and Security +1604.01113 Information Theory +1604.01115 Classical Analysis and ODEs +1604.01120 Computation +1604.01123 Mesoscale and Nanoscale Physics +1604.01128 Analysis of PDEs +1604.01131 Information Retrieval +1604.01136 Networking and Internet Architecture +1604.01139 Complex Variables +1604.01142 Optimization and Control +1604.01145 Disordered Systems and Neural Networks +1604.01146 Computer Vision and Pattern Recognition +1604.01150 Phenomenology +1604.01152 Number Theory +1604.01154 Data Structures and Algorithms +1604.01157 +1604.01162 Systems and Control +1604.01164 Combinatorics +1604.01165 Differential Geometry +1604.01166 Databases +1604.01176 Commutative Algebra +1604.01178 Computation and Language +1604.01179 Numerical Analysis +1604.01180 Computational Physics +1604.01183 Computational Geometry +1604.01185 Programming Languages +1604.01186 Logic in Computer Science +1604.01189 Phenomenology +1604.01190 Numerical Analysis +1604.01194 Mesoscale and Nanoscale Physics +1604.01197 Systems and Control +1604.01202 Systems and Control +1604.01204 Solar and Stellar Astrophysics +1604.01206 Phenomenology +1604.01209 Analysis of PDEs +1604.01211 Functional Analysis +1604.01214 Functional Analysis +1604.01215 Dynamical Systems +1604.01217 Materials Science +1604.01220 Phenomenology +1604.01221 Computation and Language +1604.01226 High Energy Astrophysical Phenomena +1604.01230 +1604.01233 Statistics Theory +1604.01234 Classical Analysis and ODEs +1604.01235 Computation and Language +1604.01236 Quantum Algebra +1604.01237 Differential Geometry +1604.01238 Differential Geometry +1604.01239 Mesoscale and Nanoscale Physics +1604.01242 Statistics Theory +1604.01243 Physics and Society +1604.01246 Dynamical Systems +1604.01251 Materials Science +1604.01257 Combinatorics +1604.01261 Optimization and Control +1604.01263 Phenomenology +1604.01268 Methodology +1604.01269 Representation Theory +1604.01272 Computation and Language +1604.01275 Networking and Internet Architecture +1604.01278 Computation and Language +1604.01280 Experiment +1604.01281 Pricing of Securities +1604.01282 Combinatorics +1604.01283 Representation Theory +1604.01284 Analysis of PDEs +1604.01286 Information Theory +1604.01288 Discrete Mathematics +1604.01290 Programming Languages +1604.01294 Analysis of PDEs +1604.01296 General Topology +1604.01298 Genomics +1604.01299 Probability +1604.01301 Instrumentation and Methods for Astrophysics +1604.01302 Classical Analysis and ODEs +1604.01304 Learning +1604.01308 Neurons and Cognition +1604.01315 Data Analysis, Statistics and Probability +1604.01316 Probability +1604.01319 Computer Vision and Pattern Recognition +1604.01320 Earth and Planetary Astrophysics +1604.01322 General Finance +1604.01326 Geometric Topology +1604.01327 Numerical Analysis +1604.01331 Human-Computer Interaction +1604.01332 +1604.01338 Statistical Finance +1604.01340 Spectral Theory +1604.01344 Other Computer Science +1604.01347 Computer Vision and Pattern Recognition +1604.01348 Machine Learning +1604.01350 Artificial Intelligence +1604.01354 Computer Vision and Pattern Recognition +1604.01357 Data Structures and Algorithms +1604.01358 Information Theory +1604.01365 +1604.01366 Dynamical Systems +1604.01367 Computational Engineering, Finance, and Science +1604.01368 +1604.01370 Soft Condensed Matter +1604.01371 Optimization and Control +1604.01372 Algebraic Geometry +1604.01375 General Physics +1604.01376 Numerical Analysis +1604.01377 Dynamical Systems +1604.01380 Classical Analysis and ODEs +1604.01383 +1604.01386 Logic +1604.01390 Mesoscale and Nanoscale Physics +chao-dyn/9406011 Chaotic Dynamics +cond-mat/0605716 Soft Condensed Matter +math/0702573 Probability +1004.1554 Quantum Algebra +1005.0185 Quantum Algebra +1111.6329 Quantum Algebra +1112.0089 Algebraic Geometry +1206.1070 Theory +1207.4276 Quantum Algebra +1209.6119 Symplectic Geometry +1210.3884 Dynamical Systems +1211.7124 Quantum Algebra +1301.0359 High Energy Astrophysical Phenomena +1301.1023 Data Analysis, Statistics and Probability +1301.1050 +1301.1992 Combinatorics +1301.4874 Logic in Computer Science +1301.6190 Information Theory +1301.7050 Rings and Algebras +1301.7071 Theory +1302.0729 Mesoscale and Nanoscale Physics +1302.0775 Materials Science +1302.1213 Experiment +1302.2678 Probability +1302.3207 Functional Analysis +1302.3803 +1302.4908 Experiment +1302.5259 Instrumentation and Detectors +1302.5524 Quantum Gases +1302.5578 Experiment +1302.5854 Experiment +1302.6082 Differential Geometry +1302.6140 High Energy Astrophysical Phenomena +1303.0524 Rings and Algebras +1303.1737 Experiment +1303.1794 +1303.2468 Probability +1303.2614 Experiment +1303.2798 Popular Physics +1303.2831 Atomic Physics +1303.3730 Materials Science +1303.4288 Statistics Theory +1303.4646 Experiment +1303.4906 Experiment +1303.5066 Instrumentation and Methods for Astrophysics +1303.5232 Quantum Gases +1303.6861 Experiment +1303.7133 Experiment +1303.7389 Combinatorics +1303.7474 Learning +1304.0084 Data Structures and Algorithms +1304.1232 Operator Algebras +1304.1341 Superconductivity +1304.2600 Experiment +1304.3035 Experiment +1304.3201 Differential Geometry +1304.3375 Physics and Society +1304.3561 +1304.3583 Group Theory +1304.4218 Classical Analysis and ODEs +1304.4246 Algebraic Geometry +1304.4500 Experiment +1304.4518 Experiment +1304.4530 Experiment +1304.4741 Experiment +1304.5721 Classical Analysis and ODEs +1304.6173 Experiment +1304.6317 Experiment +1304.6325 Experiment +1304.6365 Experiment +1304.6865 Experiment +1304.6949 Methodology +1304.6977 Experiment +1304.8081 Superconductivity +1305.0680 Cellular Automata and Lattice Gases +1305.1455 Combinatorics +1305.2050 Experiment +1305.2168 Experiment +1305.3028 +1305.3185 Mesoscale and Nanoscale Physics +1305.3628 Instrumentation and Detectors +1305.4080 Numerical Analysis +1305.4097 Quantum Gases +1305.4482 Statistics Theory +1305.4545 General Mathematics +1305.4719 Pricing of Securities +1305.5059 Experiment +1305.5662 Data Structures and Algorithms +1305.5701 Strongly Correlated Electrons +1305.6188 Probability +1305.6511 Experiment +1305.6577 Data Structures and Algorithms +1305.7350 Complex Variables +1306.0408 Methodology +1306.0806 Logic in Computer Science +1306.1036 Digital Libraries +1306.2239 Experiment +1306.2608 +1306.2773 Atomic Physics +1306.3088 Combinatorics +1306.3663 Experiment +1306.4489 Experiment +1306.5240 Cosmology and Nongalactic Astrophysics +1306.5527 Computational Geometry +1306.5800 High Energy Astrophysical Phenomena +1306.6236 Materials Science +1306.6759 Complex Variables +1307.1729 Algebraic Geometry +1307.2160 Materials Science +1307.4974 Symbolic Computation +1307.5059 High Energy Astrophysical Phenomena +1307.7877 High Energy Astrophysical Phenomena +1308.5173 Probability +1308.6722 Experiment +1308.6780 Methodology +1309.0524 Fluid Dynamics +1309.3131 Atomic Physics +1309.3940 Number Theory +1309.5816 Probability +1309.5817 Analysis of PDEs +1309.5877 Probability +1309.6531 Classical Physics +1309.6532 Classical Physics +1309.6533 Classical Physics +1309.6995 High Energy Astrophysical Phenomena +1310.0743 High Energy Astrophysical Phenomena +1310.0785 Numerical Analysis +1310.2314 Instrumentation and Methods for Astrophysics +1310.3341 Discrete Mathematics +1310.3428 +1310.4489 Statistics Theory +1310.5672 Probability +1310.5798 Probability +1311.0015 Theory +1311.0355 Dynamical Systems +1311.4767 Instrumentation and Detectors +1311.6283 Mesoscale and Nanoscale Physics +1311.6875 Plasma Physics +1312.0955 Strongly Correlated Electrons +1312.1300 Astrophysics of Galaxies +1312.4083 Probability +1312.5525 Probability +1312.6544 Mesoscale and Nanoscale Physics +1401.4494 Statistical Mechanics +1401.6882 Statistics Theory +1402.2383 +1402.6660 Probability +1402.7280 Molecular Networks +1403.0487 Quantum Gases +1403.1872 Solar and Stellar Astrophysics +1403.2119 Optics +1403.2888 Experiment +1403.2953 Chaotic Dynamics +1403.2974 +1403.3950 Probability +1403.4338 Quantum Gases +1403.5074 Optimization and Control +1403.5912 Human-Computer Interaction +1403.5917 Representation Theory +1403.7580 +1403.7602 Group Theory +1403.7621 Mesoscale and Nanoscale Physics +1403.8089 Algebraic Topology +1404.7728 Populations and Evolution +1405.0362 Computation +1405.0851 Differential Geometry +1405.0929 Biomolecules +1405.1998 Theory +1405.2217 Disordered Systems and Neural Networks +1405.3059 Phenomenology +1405.5224 +1405.5303 High Energy Astrophysical Phenomena +1405.5524 Cosmology and Nongalactic Astrophysics +1405.6532 +1406.0596 Methodology +1406.0632 High Energy Astrophysical Phenomena +1406.0974 High Energy Astrophysical Phenomena +1406.0994 Solar and Stellar Astrophysics +1406.1387 Solar and Stellar Astrophysics +1406.2393 Strongly Correlated Electrons +1406.2462 Methodology +1406.3371 +1406.4295 +1406.7482 Cosmology and Nongalactic Astrophysics +1406.7540 Distributed, Parallel, and Cluster Computing +1406.7780 Astrophysics of Galaxies +1407.3159 +1407.4871 Instrumentation and Methods for Astrophysics +1408.2010 Algebraic Topology +1408.6185 Probability +1409.4145 Number Theory +1410.0060 Group Theory +1410.0946 Portfolio Management +1410.3638 Quantum Gases +1411.0650 Probability +1411.1525 Phenomenology +1411.2309 Statistics Theory +1411.2830 Complex Variables +1411.4324 Numerical Analysis +1502.02781 Algebraic Topology +1503.06157 Dynamical Systems +1504.04970 Information Theory +1504.06238 Probability +1505.03297 +1505.05586 Information Theory +1505.05745 Number Theory +1505.05941 Cellular Automata and Lattice Gases +1505.07411 Strongly Correlated Electrons +1506.03107 Representation Theory +1506.06161 Number Theory +1506.09177 Mesoscale and Nanoscale Physics +1507.00383 Geometric Topology +1507.00541 Databases +1507.01073 Machine Learning +1507.01453 General Mathematics +1507.05819 Computers and Society +1508.01966 Mesoscale and Nanoscale Physics +1508.03197 Strongly Correlated Electrons +1508.05080 Algebraic Geometry +1508.05518 Cosmology and Nongalactic Astrophysics +1508.06689 +1509.00957 Classical Analysis and ODEs +1509.02180 Strongly Correlated Electrons +1509.06848 Complex Variables +1509.06925 Computer Vision and Pattern Recognition +1509.07462 Group Theory +1509.09279 Numerical Analysis +1510.05388 Astrophysics of Galaxies +1510.07267 Chaotic Dynamics +1511.00816 +1511.01369 Fluid Dynamics +1511.03662 Cosmology and Nongalactic Astrophysics +1511.07187 +1511.08187 Theory +1511.09130 Category Theory +1512.00810 Neurons and Cognition +1512.01981 Cosmology and Nongalactic Astrophysics +1512.02126 Analysis of PDEs +1512.03388 Strongly Correlated Electrons +1512.05716 Theory +1512.08867 Networking and Internet Architecture +1601.00019 Information Theory +1601.01549 Data Structures and Algorithms +1601.03950 +1601.04100 Analysis of PDEs +1601.04313 Rings and Algebras +1601.07365 Optimization and Control +1602.01202 Information Theory +1602.02526 Theory +1602.05128 Computation +1602.05955 +1602.08534 Information Theory +1603.00264 Pattern Formation and Solitons +1603.01117 +1603.02929 Analysis of PDEs +1603.03081 Cryptography and Security +1603.03146 Instrumentation and Detectors +1603.03276 High Energy Astrophysical Phenomena +1603.05102 Statistical Mechanics +1604.00117 Computation and Language +1604.00259 Systems and Control +1604.01274 Representation Theory +1604.03006 Learning +1604.03133 Classical Analysis and ODEs +1604.03202 +1604.04890 Optimization and Control +1604.05485 Functional Analysis +1604.05506 Classical Analysis and ODEs +1604.07633 Phenomenology +1604.07873 Solar and Stellar Astrophysics +1604.08013 Phenomenology +1605.00177 High Energy Astrophysical Phenomena +1605.00358 Cryptography and Security +1605.00589 Analysis of PDEs +1605.00607 Analysis of PDEs +1605.01137 +1605.02546 General Physics +1605.02936 Classical Analysis and ODEs +1605.03494 Astrophysics of Galaxies +1605.03757 Human-Computer Interaction +1605.06627 Astrophysics of Galaxies +1605.07302 Superconductivity +1605.07426 Quantum Gases +1605.08195 Mesoscale and Nanoscale Physics +1605.08812 Statistical Mechanics +1606.00184 Astrophysics of Galaxies +1606.00714 Optimization and Control +1606.01109 Phenomenology +1606.01290 Physics and Society +1606.01708 Cryptography and Security +1606.02135 Algebraic Geometry +1606.02413 Mesoscale and Nanoscale Physics +1606.03252 Algebraic Geometry +1606.04271 Mesoscale and Nanoscale Physics +1606.05715 Combinatorics +1606.05852 Number Theory +1606.06545 +1606.06748 Mesoscale and Nanoscale Physics +1606.06771 Cryptography and Security +1606.06885 Methodology +1606.07363 Algebraic Topology +1606.07912 +1606.08116 Logic in Computer Science +1607.01183 Strongly Correlated Electrons +1607.01865 Numerical Analysis +1607.04094 Mesoscale and Nanoscale Physics +1607.04137 Information Theory +1607.05057 +1607.05134 Optics +1607.06033 Quantum Algebra +1607.07134 Analysis of PDEs +1607.07771 Methodology +1607.07929 Materials Science +1607.08133 Phenomenology +1607.08534 +1608.00177 Software Engineering +1608.00272 Computer Vision and Pattern Recognition +1608.00309 Robotics +1608.00875 Representation Theory +1608.02257 Learning +1608.02395 +1608.02479 Statistical Mechanics +1608.02644 Artificial Intelligence +1608.02711 Dynamical Systems +1608.02756 Molecular Networks +1608.02805 Probability +1608.02882 +1608.02883 Social and Information Networks +1608.02896 Programming Languages +1608.02933 Fluid Dynamics +1608.02935 General Topology +1608.02937 Quantum Gases +1608.02939 Astrophysics of Galaxies +1608.02946 Phenomenology +1608.02947 High Energy Astrophysical Phenomena +1608.02949 Phenomenology +1608.02971 Neural and Evolutionary Computing +1608.02972 Mesoscale and Nanoscale Physics +1608.02974 Statistical Mechanics +1608.02977 Computers and Society +1608.02978 Theory +1608.02979 +1608.02984 Symplectic Geometry +1608.02985 Instrumentation and Methods for Astrophysics +1608.02988 Cryptography and Security +1608.02989 Computer Vision and Pattern Recognition +1608.02991 Human-Computer Interaction +1608.02992 Analysis of PDEs +1608.02993 Information Theory +1608.02996 Computation and Language +1608.02997 Algebraic Geometry +1608.03000 Computation and Language +1608.03001 Probability +1608.03002 Geometric Topology +1608.03004 Fluid Dynamics +1608.03008 Social and Information Networks +1608.03009 Geometric Topology +1608.03012 Methodology +1608.03014 Number Theory +1608.03016 Multimedia +1608.03017 Data Structures and Algorithms +1608.03019 Analysis of PDEs +1608.03022 Applications +1608.03024 Applications +1608.03026 Artificial Intelligence +1608.03027 Information Theory +1608.03030 Computation and Language +1608.03032 Statistics Theory +1608.03033 Optimization and Control +1608.03034 Numerical Analysis +1608.03036 Computational Geometry +1608.03037 Robotics +1608.03040 Combinatorics +1608.03042 Networking and Internet Architecture +1608.03043 General Topology +1608.03044 Distributed, Parallel, and Cluster Computing +1608.03046 Solar and Stellar Astrophysics +1608.03047 Molecular Networks +1608.03049 Computer Vision and Pattern Recognition +1608.03050 Differential Geometry +1608.03051 Lattice +1608.03052 Optimization and Control +1608.03053 Statistical Finance +1608.03054 Logic in Computer Science +1608.03055 Combinatorics +1608.03056 Accelerator Physics +1608.03057 Exactly Solvable and Integrable Systems +1608.03058 Statistical Finance +1608.03059 Materials Science +1608.03061 Human-Computer Interaction +1608.03063 Differential Geometry +1608.03065 Computation and Language +1608.03066 Computer Vision and Pattern Recognition +1608.03067 Accelerator Physics +1608.03069 Methodology +1608.03070 Probability +1608.03073 Physics and Society +1608.03074 Earth and Planetary Astrophysics +1608.03078 Combinatorics +1608.03079 Accelerator Physics +1608.03080 Functional Analysis +1608.03081 Statistics Theory +1608.03082 +1608.03084 +1608.03085 Algebraic Geometry +1608.03087 Accelerator Physics +1608.03088 Materials Science +1608.03090 Systems and Control +1608.03091 Applications +1608.03092 Accelerator Physics +1608.03094 Geometric Topology +1608.03096 Accelerator Physics +1608.03098 Materials Science +1608.03100 Machine Learning +1608.03102 Applications +1608.03105 Combinatorics +1608.03106 Representation Theory +1608.03107 Numerical Analysis +1608.03112 Number Theory +1608.03113 Accelerator Physics +1608.03115 Optimization and Control +1608.03116 Group Theory +1608.03119 +1608.03123 Neural and Evolutionary Computing +1608.03124 Solar and Stellar Astrophysics +1608.03125 Distributed, Parallel, and Cluster Computing +1608.03126 Logic in Computer Science +1608.03127 Programming Languages +1608.03128 Logic in Computer Science +1608.03129 Logic in Computer Science +1608.03131 Programming Languages +1608.03133 +1608.03134 Classical Analysis and ODEs +1608.03135 Algebraic Topology +1608.03136 Analysis of PDEs +1608.03137 Group Theory +1608.03139 Analysis of PDEs +1608.03140 Robotics +1608.03142 Representation Theory +1608.03143 Operator Algebras +1608.03146 General Topology +1608.03150 +1608.03151 Combinatorics +1608.03154 Methodology +1608.03156 Strongly Correlated Electrons +1608.03157 Numerical Analysis +1608.03159 Accelerator Physics +1608.03161 Systems and Control +1608.03165 Information Theory +1608.03166 Combinatorics +1608.03167 Chemical Physics +1608.03168 Pattern Formation and Solitons +1608.03170 Numerical Analysis +1608.03173 High Energy Astrophysical Phenomena +1608.03175 Distributed, Parallel, and Cluster Computing +1608.03176 Mesoscale and Nanoscale Physics +1608.03178 Information Theory +1608.03181 Software Engineering +1608.03182 Data Structures and Algorithms +1608.03183 Chemical Physics +1608.03186 General Physics +1608.03187 Superconductivity +1608.03189 Metric Geometry +1608.03190 +1608.03191 Applications +1608.03192 Social and Information Networks +1608.03193 Soft Condensed Matter +1608.03196 +1608.03197 General Mathematics +1608.03200 Optics +1608.03201 Data Analysis, Statistics and Probability +1608.03204 General Topology +1608.03208 Fluid Dynamics +1608.03209 Number Theory +1608.03215 Information Theory +1608.03217 Computer Vision and Pattern Recognition +1608.03219 Geometric Topology +1608.03220 Data Structures and Algorithms +1608.03221 Atomic Physics +1608.03224 Group Theory +1608.03234 Plasma Physics +1608.03235 Computer Vision and Pattern Recognition +1608.03238 Materials Science +1608.03240 Computer Vision and Pattern Recognition +1608.03241 Combinatorics +1608.03243 Probability +1608.03246 General Mathematics +1608.03248 Optimization and Control +1608.03249 Symplectic Geometry +1608.03250 +1608.03252 Differential Geometry +1608.03256 Number Theory +1608.03257 Probability +1608.03262 Exactly Solvable and Integrable Systems +1608.03265 Probability +1608.03266 Analysis of PDEs +1608.03268 Materials Science +0708.0649 Probability +0812.3619 Probability +0907.3680 Probability +1005.0810 Probability +1011.1805 General Physics +1011.6366 Probability +1104.3196 Physics and Society +1104.3199 Physics and Society +1104.4528 Physics and Society +1104.4682 Physics and Society +1104.5630 Physics and Society +1105.0589 Physics and Society +1105.4982 Physics and Society +1106.0824 Data Analysis, Statistics and Probability +1106.0887 Physics and Society +1106.1074 Physics and Society +1112.3919 Probability +1112.4427 Commutative Algebra +1201.0318 Probability +1204.6620 Numerical Analysis +1206.5398 Mesoscale and Nanoscale Physics +1207.5710 Probability +1208.2380 Representation Theory +1209.5544 Physics and Society +1209.5546 Physics and Society +1210.4230 Commutative Algebra +1210.4518 Probability +1212.2229 Group Theory +1301.5697 Combinatorics +1303.2029 Materials Science +1303.2263 Combinatorics +1304.4734 Number Theory +1306.0260 Systems and Control +1306.3818 Physics and Society +1308.0779 Number Theory +1309.3161 Strongly Correlated Electrons +1309.4860 Physics and Society +1309.4861 Physics and Society +1309.4862 Physics and Society +1309.6252 Differential Geometry +1309.6475 Algebraic Geometry +1309.7612 Physics and Society +1310.0570 Commutative Algebra +1310.7363 Algebraic Geometry +1310.7779 Commutative Algebra +1310.7793 Commutative Algebra +1311.0743 Algebraic Geometry +1311.3408 +1312.3785 Physics and Society +1312.4983 Probability +1401.0280 Materials Science +1401.0330 Rings and Algebras +1401.7782 Number Theory +1402.5244 Optics +1402.5359 Information Theory +1402.5834 Phenomenology +1403.6459 Differential Geometry +1403.6929 +1403.7007 Information Theory +1404.0358 Differential Geometry +1404.2200 +1405.1977 +1405.2310 Exactly Solvable and Integrable Systems +1405.3948 Classical Analysis and ODEs +1405.5076 Functional Analysis +1406.1368 Computational Geometry +1406.2113 Materials Science +1406.3529 Rings and Algebras +1406.3537 +1406.4143 Cosmology and Nongalactic Astrophysics +1406.6884 +1407.2724 Machine Learning +1407.3709 Complex Variables +1407.7059 Rings and Algebras +1408.1596 +1409.1389 Phenomenology +1409.5584 Analysis of PDEs +1409.7197 Theory +1410.1596 Number Theory +1410.7675 Information Theory +1411.0236 Dynamical Systems +1411.4553 Differential Geometry +1411.5524 +1411.7952 Probability +1412.4052 Sound +1412.4298 Theory +1412.5091 +1412.5278 Social and Information Networks +1501.03704 Information Theory +1501.04093 Phenomenology +1501.06473 Other Computer Science +1502.00599 +1502.02493 Social and Information Networks +1502.03060 Materials Science +1502.04697 Data Analysis, Statistics and Probability +1502.05840 Computer Vision and Pattern Recognition +1502.06351 +1502.07635 Materials Science +1502.07838 Numerical Analysis +1503.01104 Populations and Evolution +1503.01221 +1503.01799 Number Theory +1503.02908 Physics and Society +1503.02915 Physics and Society +1503.03343 Populations and Evolution +1503.03683 Functional Analysis +1503.04407 Methodology +1503.04616 Probability +1503.06247 Mesoscale and Nanoscale Physics +1504.01674 Geometric Topology +1504.04224 Physics and Society +1504.04229 Physics and Society +1504.04582 +1504.04796 Social and Information Networks +1504.06147 Probability +1505.00449 Discrete Mathematics +1505.01619 Information Theory +1505.01810 Graphics +1505.02664 Number Theory +1505.03925 Lattice +1505.04562 Dynamical Systems +1505.04829 Optimization and Control +1505.05593 Differential Geometry +1506.00922 Analysis of PDEs +1506.02625 Statistical Mechanics +1506.03048 Probability +1506.03696 Theory +1506.04146 Superconductivity +1506.04281 Analysis of PDEs +1506.05500 Category Theory +1506.06652 Symplectic Geometry +1506.07832 Quantum Algebra +1507.00671 Probability +1507.00677 Machine Learning +1507.03266 Optimization and Control +1507.04642 Social and Information Networks +1507.05352 Information Theory +1507.06083 Algebraic Geometry +1507.06405 Representation Theory +1507.06421 Phenomenology +1507.06550 Computer Vision and Pattern Recognition +1507.06910 Commutative Algebra +1507.07850 Optimization and Control +1508.02125 Theory +1508.03091 Phenomenology +1508.03716 Systems and Control +1508.06720 Geometric Topology +1508.06766 Analysis of PDEs +1508.06871 Numerical Analysis +1508.06984 +1508.07266 Social and Information Networks +1509.00248 Mesoscale and Nanoscale Physics +1509.02624 Algebraic Geometry +1509.02845 Representation Theory +1509.02966 Computational Physics +1509.03276 Analysis of PDEs +1509.05229 Theory +1509.05629 Materials Science +1509.05880 Operator Algebras +1509.06697 Analysis of PDEs +1509.07101 Differential Geometry +1509.07786 Subcellular Processes +1509.08264 Cosmology and Nongalactic Astrophysics +1509.08453 K-Theory and Homology +1509.08490 Information Theory +1510.00019 Cosmology and Nongalactic Astrophysics +1510.00982 Number Theory +1510.01107 Fluid Dynamics +1510.02351 +1510.02392 Dynamical Systems +1510.02717 Spectral Theory +1510.03055 Computation and Language +1510.05646 Phenomenology +1510.07087 Numerical Analysis +1510.07298 +1510.08848 Mesoscale and Nanoscale Physics +1510.09012 Plasma Physics +1511.01174 Physics and Society +1511.01405 Mesoscale and Nanoscale Physics +1511.01430 Chemical Physics +1511.01756 Computation and Language +1511.02477 Phenomenology +1511.02617 +1511.03704 Mathematical Finance +1511.04258 +1511.04509 Exactly Solvable and Integrable Systems +1511.05080 Optimization and Control +1511.06182 Statistical Mechanics +1511.06664 Quantum Algebra +1511.06977 Functional Analysis +1511.07295 Geometric Topology +1511.08098 +1511.08477 Group Theory +1511.08546 Optics +1511.09117 +1511.09233 Spectral Theory +1511.09339 Instrumentation and Detectors +1512.01431 Fluid Dynamics +1512.01696 Quantum Algebra +1512.01849 Quantum Gases +1512.02204 Soft Condensed Matter +1512.02777 +1512.03419 Physics and Society +1512.03503 Symbolic Computation +1512.04201 Optics +1512.04381 Phenomenology +1512.04801 General Physics +1512.05349 Cosmology and Nongalactic Astrophysics +1512.06104 +1512.06874 Quantum Gases +1512.06993 +1512.08082 Numerical Analysis +1512.09222 Number Theory +1601.00617 Computational Geometry +1601.01610 General Physics +1601.02033 Phenomenology +1601.02578 Distributed, Parallel, and Cluster Computing +1601.03086 Phenomenology +1601.03220 Superconductivity +1601.03448 Methodology +1601.03678 Probability +1601.03916 Computation and Language +1601.05639 Phenomenology +1601.05752 Strongly Correlated Electrons +1601.06551 Social and Information Networks +1601.06997 Metric Geometry +1601.07431 Atomic Physics +1602.00013 Functional Analysis +1602.00585 Computer Vision and Pattern Recognition +1602.01387 Formal Languages and Automata Theory +1602.01720 Probability +1602.01815 Neurons and Cognition +1602.01889 Neurons and Cognition +1602.02050 Physics and Society +1602.02243 High Energy Astrophysical Phenomena +1602.03066 +1602.03118 Number Theory +1602.03320 Data Structures and Algorithms +1602.03339 Analysis of PDEs +1602.04020 Phenomenology +1602.04105 Learning +1602.04369 Soft Condensed Matter +1602.04511 Learning +1602.04692 Phenomenology +1602.05155 Methodology +1602.05561 Artificial Intelligence +1602.07136 +1602.07205 Computational Physics +1602.07917 Mesoscale and Nanoscale Physics +1602.08484 Quantum Algebra +1603.00543 Disordered Systems and Neural Networks +1603.00982 Sound +1603.01697 Combinatorics +1603.01742 Cosmology and Nongalactic Astrophysics +1603.02377 Computer Science and Game Theory +1603.02664 Cosmology and Nongalactic Astrophysics +1603.02740 Machine Learning +1603.02754 Learning +1603.03232 Systems and Control +1603.03402 +1603.03566 Experiment +1603.04373 +1603.04421 High Energy Astrophysical Phenomena +1603.04433 Instrumentation and Detectors +1603.04509 +1603.04901 Operator Algebras +1603.05057 Statistical Mechanics +1603.05221 Metric Geometry +1603.05423 +1603.06392 Classical Analysis and ODEs +1603.07117 Computation +1603.07314 Statistical Mechanics +1603.07330 Theory +1603.07671 Networking and Internet Architecture +1603.07726 +1603.08237 Algebraic Topology +1603.09450 +1604.00925 Phenomenology +1604.01138 Numerical Analysis +1604.01228 Strongly Correlated Electrons +1604.01256 Number Theory +1604.01341 Cosmology and Nongalactic Astrophysics +1604.01491 Probability +1604.02082 +1604.02458 Phenomenology +1604.02628 Analysis of PDEs +1604.02707 Lattice +1604.03320 High Energy Astrophysical Phenomena +1604.03486 Statistical Mechanics +1604.03585 Mesoscale and Nanoscale Physics +1604.03738 Phenomenology +1604.03934 Cosmology and Nongalactic Astrophysics +1604.04748 +1604.05250 Numerical Analysis +1604.05649 Optimization and Control +1604.06188 Analysis of PDEs +1604.06377 Systems and Control +1604.06896 Computation and Language +1604.07337 Mesoscale and Nanoscale Physics +1605.00112 Complex Variables +1605.00279 Plasma Physics +1605.00585 Phenomenology +1605.01330 Information Theory +1605.01472 Theory +1605.01572 Combinatorics +1605.01822 Statistical Mechanics +1605.02063 +1605.02066 Computer Vision and Pattern Recognition +1605.02756 +1605.03069 Probability +1605.04135 Machine Learning +1605.04531 Strongly Correlated Electrons +1605.05085 Soft Condensed Matter +1605.05365 Learning +1605.05419 Other Quantitative Biology +1605.06002 +1605.06210 Astrophysics of Galaxies +1605.06539 Mesoscale and Nanoscale Physics +1605.06549 Functional Analysis +1605.06828 Algebraic Geometry +1605.06893 Mesoscale and Nanoscale Physics +1605.08183 Phenomenology +1605.08509 Classical Analysis and ODEs +1605.08795 Data Structures and Algorithms +1605.08859 Information Theory +1605.08953 +1606.00909 Functional Analysis +1606.01402 Group Theory +1606.01526 Functional Analysis +1606.01609 Computer Vision and Pattern Recognition +1606.01611 Algebraic Geometry +1606.01623 Data Structures and Algorithms +1606.01974 Rings and Algebras +1606.01980 Hardware Architecture +1606.02027 Functional Analysis +1606.02042 Other Computer Science +1606.02228 Neural and Evolutionary Computing +1606.02385 Cryptography and Security +1606.02450 Rings and Algebras +1606.02590 +1606.02593 Probability +1606.02617 Learning +1606.02884 Mesoscale and Nanoscale Physics +1606.02901 Mesoscale and Nanoscale Physics +1606.02914 Analysis of PDEs +1606.02933 Materials Science +1606.02967 Combinatorics +1606.02986 Optimization and Control +1606.03081 +1606.03211 Probability +1606.03277 Solar and Stellar Astrophysics +1606.03365 Sound +1606.03445 Instrumentation and Detectors +1606.03447 Number Theory +1606.03461 Classical Analysis and ODEs +1606.03463 Optimization and Control +1606.03464 Solar and Stellar Astrophysics +1606.03466 Quantum Algebra +1606.03467 +1606.03471 Optics +1606.03472 Information Theory +1606.03473 Computer Vision and Pattern Recognition +1606.03475 Computation and Language +1606.03476 Learning +1606.03479 Atomic Physics +1606.03480 Social and Information Networks +1606.03482 Other Quantitative Biology +1606.03486 Numerical Analysis +1606.03487 Theory +1606.03488 +1606.03491 Optics +1606.03496 Statistics Theory +1606.03498 Learning +1606.03499 Analysis of PDEs +1606.03500 Analysis of PDEs +1606.03502 Computers and Society +1606.03503 Computers and Society +1606.03504 Statistics Theory +1606.03505 Number Theory +1606.03506 Computers and Society +1606.03507 Computers and Society +1606.03508 Learning +1606.03509 Computers and Society +1606.03510 Computers and Society +1606.03511 Computers and Society +1606.03513 Computers and Society +1606.03516 +1606.03519 Combinatorics +1606.03520 Optimization and Control +1606.03524 Probability +1606.03525 Probability +1606.03527 Computers and Society +1606.03528 Computers and Society +1606.03529 Optimization and Control +1606.03530 Computers and Society +1606.03531 Computers and Society +1606.03534 Computers and Society +1606.03536 Strongly Correlated Electrons +1606.03537 Computers and Society +1606.03538 Physics and Society +1606.03539 Computers and Society +1606.03540 Computers and Society +1606.03541 Computers and Society +1606.03542 Computers and Society +1606.03543 Computers and Society +1606.03544 Computers and Society +1606.03545 Probability +1606.03546 Computers and Society +1606.03547 Computers and Society +1606.03548 Computers and Society +1606.03549 Computers and Society +1606.03550 Computers and Society +1606.03551 Computers and Society +1606.03552 Methodology +1606.03555 Materials Science +1606.03557 Probability +1606.03561 Information Retrieval +1606.03562 Logic +1606.03569 Computers and Society +1606.03570 Materials Science +1606.03574 Instrumentation and Detectors +1606.03575 +1606.03578 Computer Vision and Pattern Recognition +1606.03580 Numerical Analysis +1606.03581 Functional Analysis +1606.03583 Instrumentation and Methods for Astrophysics +1606.03584 +1606.03585 Computational Complexity +1606.03587 Geometric Topology +1606.03588 Cryptography and Security +1606.03590 Trading and Market Microstructure +1606.03593 Functional Analysis +1606.03594 Probability +1606.03597 Pricing of Securities +1606.03598 Formal Languages and Automata Theory +1606.03599 Numerical Analysis +1606.03600 Networking and Internet Architecture +1606.03601 Optimization and Control +1606.03604 Algebraic Geometry +1606.03606 Cosmology and Nongalactic Astrophysics +1606.03607 Algebraic Topology +1606.03608 Geometric Topology +1606.03612 Algebraic Geometry +1606.03616 Materials Science +1606.03618 Number Theory +1606.03619 +1606.03620 Other Quantitative Biology +1606.03621 Classical Analysis and ODEs +1606.03622 Computation and Language +1606.03626 Data Structures and Algorithms +1606.03628 Learning +1606.03630 Biomolecules +1606.03633 Cosmology and Nongalactic Astrophysics +1606.03635 Number Theory +1606.03639 Information Theory +1606.03641 Optimization and Control +1606.03643 Dynamical Systems +1606.03644 Programming Languages +1606.03645 Probability +1606.03646 High Energy Astrophysical Phenomena +1606.03652 Algebraic Geometry +1606.03653 Numerical Analysis +1606.03657 Learning +1606.03658 Physics and Society +1606.03660 Strongly Correlated Electrons +1606.03662 Artificial Intelligence +1606.03663 Logic in Computer Science +1606.03664 Sound +1606.03665 Information Theory +1606.03666 Analysis of PDEs +1606.03668 Information Theory +1606.03669 Computer Vision and Pattern Recognition +1606.03670 +1606.03671 Computer Vision and Pattern Recognition +1606.03672 Learning +1606.03673 Optimization and Control +1606.03677 Probability +1606.03678 Optics +1606.03680 Data Structures and Algorithms +1606.03682 Materials Science +1606.03684 Analysis of PDEs +1606.03685 Learning +1606.03687 Discrete Mathematics +1606.03688 Numerical Analysis +1606.03691 Algebraic Geometry +1606.03692 Numerical Analysis +1606.03693 Materials Science +1606.03695 Information Theory +1606.03696 Physics and Society +1606.03697 Optics +1606.03700 Materials Science +1606.03701 Computers and Society +1606.03703 Disordered Systems and Neural Networks +1606.03707 Algebraic Geometry +1606.03714 Algebraic Geometry +1606.03716 Earth and Planetary Astrophysics +1606.03717 Hardware Architecture +1606.03719 Robotics +1606.03720 +1606.03724 Strongly Correlated Electrons +1606.03728 Operator Algebras +1606.03729 Methodology +1606.03730 Probability +1606.03731 Computer Vision and Pattern Recognition +1606.03733 Number Theory +1606.03735 Instrumentation and Methods for Astrophysics +1606.03738 History and Philosophy of Physics +1606.03740 Other Condensed Matter +1606.03741 Astrophysics of Galaxies +1606.03742 Distributed, Parallel, and Cluster Computing +1606.03743 Computational Physics +1606.03745 Functional Analysis +1606.03746 Combinatorics +1606.03748 Disordered Systems and Neural Networks +1606.03751 Combinatorics +1606.03752 Information Theory +1606.03754 Systems and Control +1606.03758 Formal Languages and Automata Theory +1606.03759 Representation Theory +1606.03761 Combinatorics +1606.03763 Probability +1606.03765 Computer Vision and Pattern Recognition +1606.03766 Computation +1606.03768 Information Theory +1606.03770 Algebraic Geometry +1606.03771 Analysis of PDEs +1606.03772 Analysis of PDEs +1606.03773 Classical Analysis and ODEs +1606.03774 Computer Vision and Pattern Recognition +1606.03776 Computers and Society +1606.03777 Computation and Language +1606.03778 Logic +1606.03779 Metric Geometry +1606.03782 Combinatorics +1606.03784 Artificial Intelligence +1606.03787 Probability +1606.03788 Computer Vision and Pattern Recognition +1606.03794 Analysis of PDEs +1606.03796 Differential Geometry +1606.03797 Biomolecules +1606.03798 Computer Vision and Pattern Recognition +1606.03799 Combinatorics +1606.03800 Data Structures and Algorithms +1606.03801 Rings and Algebras +1606.03803 Methodology +1606.03805 Algebraic Topology +1606.03806 Number Theory +1606.03811 Solar and Stellar Astrophysics +1606.03813 Neurons and Cognition +1606.03814 Methodology +1606.03816 Social and Information Networks +1606.03824 Dynamical Systems +1606.03826 Algebraic Topology +1606.03828 Probability +1606.03831 Algebraic Geometry +1606.03832 Artificial Intelligence +1606.03834 Phenomenology +1606.03837 Number Theory +1606.03838 Computer Vision and Pattern Recognition +1606.03840 Numerical Analysis +1606.03845 Number Theory +1606.03846 Robotics +1606.03848 Statistics Theory +1606.03849 Materials Science +1606.03850 Probability +1606.03854 Probability +1606.03857 Digital Libraries +1606.03860 Machine Learning +1606.03863 Group Theory +1606.03866 Group Theory +1606.03868 +1606.03875 Robotics +1606.03877 Combinatorics +1606.03880 K-Theory and Homology +1606.03883 Physics Education +1606.03884 Cell Behavior +1606.03888 Logic in Computer Science +1606.03891 Dynamical Systems +1606.03894 Artificial Intelligence +1606.03897 Data Structures and Algorithms +1606.03899 Mathematical Finance +1606.03901 Mathematical Finance +1606.03904 Astrophysics of Galaxies +1606.03913 Functional Analysis +1606.03914 Analysis of PDEs +1606.03915 Analysis of PDEs +1606.03918 Numerical Analysis +1606.03923 Phenomenology +1606.03924 Statistical Mechanics +1606.03928 Distributed, Parallel, and Cluster Computing +1606.03940 Methodology +1606.03941 Spectral Theory +1606.03942 Superconductivity +1606.03946 Physics and Society +1606.03949 Mesoscale and Nanoscale Physics +1606.03953 Combinatorics +1606.03954 Optimization and Control +1606.03959 Probability +1606.03962 Dynamical Systems +1606.03963 Digital Libraries +1606.03965 Analysis of PDEs +1606.03966 Learning +1606.03968 Computer Vision and Pattern Recognition +1606.03970 +1606.03972 Algebraic Geometry +1606.03975 Algebraic Geometry +1606.03978 Systems and Control +1606.03981 +1606.03989 Social and Information Networks +1606.03992 Robotics +1606.03998 Statistics Theory +1606.04000 Artificial Intelligence +1606.04001 Materials Science +1606.04011 Information Theory +1606.04015 Mesoscale and Nanoscale Physics +1606.04020 Numerical Analysis +1606.04022 Information Theory +1606.04024 Superconductivity +1606.04027 Algebraic Geometry +1606.04029 Combinatorics +1606.04030 +1606.04031 General Mathematics +1606.04035 Materials Science +1606.04037 Optimization and Control +1606.04039 Mathematical Finance +1606.04044 +1606.04046 Probability +1606.04049 Number Theory +1606.04050 Populations and Evolution +1606.04055 Neural and Evolutionary Computing +1606.04056 Learning +1606.04063 Soft Condensed Matter +1606.04065 Number Theory +1606.04066 Materials Science +1606.04071 History and Philosophy of Physics +1606.04072 +1606.04078 Fluid Dynamics +1606.04079 Disordered Systems and Neural Networks +1606.04080 Learning +1606.04081 Computation and Language +1606.04083 Physics and Society +1606.04088 Algebraic Geometry +hep-ph/9903347 Phenomenology +math/0602527 Algebraic Geometry +quant-ph/0309069 +quant-ph/0409130 +quant-ph/9606017 +0707.4385 Metric Geometry +0802.0843 Physics and Society +0912.0789 Theory +1003.3256 Physics and Society +1007.1726 Data Structures and Algorithms +1012.1495 Dynamical Systems +1108.4429 Physics and Society +1108.4833 Group Theory +1109.2584 History and Philosophy of Physics +1111.7172 Combinatorics +1112.5121 Physics and Society +1206.3922 Combinatorics +1210.8032 Representation Theory +1212.1799 Instrumentation and Methods for Astrophysics +1212.3650 Data Analysis, Statistics and Probability +1212.5469 Quantum Gases +1301.1654 Combinatorics +1304.0187 +1306.3575 +1306.5607 Numerical Analysis +1307.2186 Numerical Analysis +1308.4720 Experiment +1308.5948 Commutative Algebra +1309.6895 Methodology +1310.4812 Algebraic Geometry +1310.6869 Probability +1312.0551 Combinatorics +1312.2520 Combinatorics +1312.3039 Optimization and Control +1312.4327 Category Theory +1312.5055 Algebraic Geometry +1312.6604 Quantum Algebra +1401.7372 Computation +1403.3087 Solar and Stellar Astrophysics +1403.3089 Solar and Stellar Astrophysics +1403.3097 Solar and Stellar Astrophysics +1403.6700 +1406.0669 Combinatorics +1406.2820 Numerical Analysis +1406.3553 Solar and Stellar Astrophysics +1406.3556 Solar and Stellar Astrophysics +1406.3559 Solar and Stellar Astrophysics +1406.5903 Information Theory +1407.5001 Classical Physics +1407.5817 Solar and Stellar Astrophysics +1408.4164 Algebraic Geometry +1408.4282 Probability +1408.6892 Probability +1409.2733 Discrete Mathematics +1409.4380 Group Theory +1409.7959 Computational Physics +1410.3951 Quantitative Methods +1410.7944 Superconductivity +1411.3323 Strongly Correlated Electrons +1411.6353 +1411.7565 Statistics Theory +1412.6640 +1412.8229 Group Theory +1501.00401 Differential Geometry +1501.02619 Combinatorics +1501.05143 Fluid Dynamics +1501.05456 Differential Geometry +1501.06074 Physics Education +1501.06460 Cosmology and Nongalactic Astrophysics +1501.06674 Chemical Physics +1502.03742 Soft Condensed Matter +1502.05398 Theory +1503.05810 Numerical Analysis +1503.06030 Materials Science +1503.07391 Dynamical Systems +1503.07901 Computational Geometry +1504.00220 +1504.01064 Geometric Topology +1504.02169 +1504.02170 +1504.03489 +1504.05157 Theory +1504.05304 +1504.05578 Cosmology and Nongalactic Astrophysics +1504.05836 Phenomenology +1504.07243 Cosmology and Nongalactic Astrophysics +1504.07274 High Energy Astrophysical Phenomena +1504.07739 Strongly Correlated Electrons +1504.07766 Numerical Analysis +1505.00739 Group Theory +1505.01732 Quantum Gases +1505.04056 +1505.06000 +1506.02090 +1506.03453 High Energy Astrophysical Phenomena +1506.04573 Machine Learning +1506.06866 Algebraic Topology +1506.07538 Complex Variables +1506.08985 Experiment +1507.03422 Materials Science +1507.03897 Mesoscale and Nanoscale Physics +1507.03971 Exactly Solvable and Integrable Systems +1507.04745 Phenomenology +1507.06567 Probability +1507.07353 Astrophysics of Galaxies +1508.01441 Discrete Mathematics +1508.01814 Materials Science +1508.03506 Theory +1508.05844 High Energy Astrophysical Phenomena +1508.06084 Phenomenology +1508.06365 History and Philosophy of Physics +1508.06532 Strongly Correlated Electrons +1509.00719 Group Theory +1509.00911 +1509.02774 Pattern Formation and Solitons +1509.03333 Cosmology and Nongalactic Astrophysics +1509.03399 Chemical Physics +1509.04074 +1509.04266 Strongly Correlated Electrons +1509.04549 Data Structures and Algorithms +1509.05724 Classical Analysis and ODEs +1509.05754 +1509.06870 Statistical Mechanics +1509.07655 +1509.09214 Materials Science +1510.00753 Physics Education +1510.01023 +1510.01630 Earth and Planetary Astrophysics +1510.02403 Materials Science +1510.02420 +1510.02827 Dynamical Systems +1510.03223 Mathematical Finance +1510.03438 Theory +1510.04173 Solar and Stellar Astrophysics +1510.04633 +1510.04645 Systems and Control +1510.05611 Phenomenology +1510.06397 Strongly Correlated Electrons +1510.07501 Phenomenology +1510.07522 Numerical Analysis +1510.08588 Mesoscale and Nanoscale Physics +1510.08597 High Energy Astrophysical Phenomena +1510.08805 Information Theory +1510.08817 Strongly Correlated Electrons +1511.00366 Analysis of PDEs +1511.00663 Cosmology and Nongalactic Astrophysics +1511.00703 Mesoscale and Nanoscale Physics +1511.00864 Mesoscale and Nanoscale Physics +1511.00980 +1511.01911 Astrophysics of Galaxies +1511.02364 Fluid Dynamics +1511.03073 Phenomenology +1511.03087 Optics +1511.04852 Materials Science +1511.05968 Astrophysics of Galaxies +1511.07409 Computer Vision and Pattern Recognition +1511.07413 Mesoscale and Nanoscale Physics +1511.07653 Astrophysics of Galaxies +1511.07830 Algebraic Geometry +1511.08768 Machine Learning +1511.09182 Mesoscale and Nanoscale Physics +1511.09223 Cosmology and Nongalactic Astrophysics +1512.00155 Phenomenology +1512.00251 Logic +1512.00347 Atomic Physics +1512.00641 Cosmology and Nongalactic Astrophysics +1512.00761 +1512.00795 Computer Vision and Pattern Recognition +1512.01032 Astrophysics of Galaxies +1512.01378 Optics +1512.01624 Chaotic Dynamics +1512.02335 Dynamical Systems +1512.02515 Information Theory +1512.02641 Theory +1512.02749 Quantum Gases +1512.03006 Number Theory +1512.03914 Theory +1512.04223 Solar and Stellar Astrophysics +1512.04420 Geometric Topology +1512.05253 +1512.05270 Materials Science +1512.05350 High Energy Astrophysical Phenomena +1512.05367 Astrophysics of Galaxies +1512.05765 Strongly Correlated Electrons +1512.06446 Solar and Stellar Astrophysics +1512.06583 Statistical Mechanics +1512.07732 Strongly Correlated Electrons +1512.08563 Phenomenology +1512.09017 Systems and Control +1512.09212 Phenomenology +1512.09319 Theory +1601.00017 High Energy Astrophysical Phenomena +1601.00082 Cryptography and Security +1601.00552 Solar and Stellar Astrophysics +1601.00682 Astrophysics of Galaxies +1601.00911 High Energy Astrophysical Phenomena +1601.01026 Astrophysics of Galaxies +1601.02305 High Energy Astrophysical Phenomena +1601.02398 Strongly Correlated Electrons +1601.02665 Astrophysics of Galaxies +1601.02844 Statistics Theory +1601.03072 High Energy Astrophysical Phenomena +1601.03403 Strongly Correlated Electrons +1601.03537 Mesoscale and Nanoscale Physics +1601.04333 Differential Geometry +1601.04489 Soft Condensed Matter +1601.04591 Optics +1601.04726 +1601.04959 Solar and Stellar Astrophysics +1601.05248 Optics +1601.05773 Cosmology and Nongalactic Astrophysics +1601.06394 Phenomenology +1601.07080 Strongly Correlated Electrons +1601.07459 Instrumentation and Methods for Astrophysics +1601.07892 Materials Science +1601.07901 Data Analysis, Statistics and Probability +1602.00213 Group Theory +1602.00451 Mesoscale and Nanoscale Physics +1602.00486 +1602.00634 +1602.01121 Solar and Stellar Astrophysics +1602.01406 Plasma Physics +1602.01524 Astrophysics of Galaxies +1602.01595 Computation and Language +1602.01725 Materials Science +1602.01941 Astrophysics of Galaxies +1602.02097 Optimization and Control +1602.02226 Probability +1602.02988 Solar and Stellar Astrophysics +1602.03049 Astrophysics of Galaxies +1602.03302 Combinatorics +1602.03411 Plasma Physics +1602.03450 Materials Science +1602.03859 Mesoscale and Nanoscale Physics +1602.03883 +1602.04018 Astrophysics of Galaxies +1602.04083 Chemical Physics +1602.04194 +1602.04535 Disordered Systems and Neural Networks +1602.04606 +1602.04728 Analysis of PDEs +1602.04814 Earth and Planetary Astrophysics +1602.05009 Mesoscale and Nanoscale Physics +1602.05118 Plasma Physics +1602.05564 Optics +1602.05601 Cosmology and Nongalactic Astrophysics +1602.05960 Cosmology and Nongalactic Astrophysics +1602.06115 Statistical Mechanics +1602.06240 Superconductivity +1602.06294 Instrumentation and Methods for Astrophysics +1602.06446 High Energy Astrophysical Phenomena +1602.06593 Group Theory +1602.06948 Astrophysics of Galaxies +1602.07119 Computer Vision and Pattern Recognition +1602.07391 Quantum Gases +1602.07639 Astrophysics of Galaxies +1602.07696 +1602.08082 High Energy Astrophysical Phenomena +1602.08152 Theory +1602.08329 Quantum Gases +1602.08363 Mesoscale and Nanoscale Physics +1602.08738 +1603.00095 Statistical Mechanics +1603.00191 Mesoscale and Nanoscale Physics +1603.00369 Dynamical Systems +1603.00526 Astrophysics of Galaxies +1603.00651 Statistical Mechanics +1603.00692 Phenomenology +1603.00750 Phenomenology +1603.00757 Mesoscale and Nanoscale Physics +1603.01239 +1603.01277 +1603.01285 Mesoscale and Nanoscale Physics +1603.01593 +1603.02259 +1603.02277 Astrophysics of Galaxies +1603.02451 +1603.02538 +1603.02726 Superconductivity +1603.02828 +1603.03084 Astrophysics of Galaxies +1603.03173 Statistical Mechanics +1603.03237 Quantum Gases +1603.03256 Materials Science +1603.03632 Phenomenology +1603.03989 High Energy Astrophysical Phenomena +1603.04557 Astrophysics of Galaxies +1603.04579 Mesoscale and Nanoscale Physics +1603.04698 Cosmology and Nongalactic Astrophysics +1603.05210 Plasma Physics +1603.05253 Cosmology and Nongalactic Astrophysics +1603.05266 Materials Science +1603.05524 Phenomenology +1603.05529 Atomic Physics +1603.05578 High Energy Astrophysical Phenomena +1603.05631 Computer Vision and Pattern Recognition +1603.06105 Algebraic Geometry +1603.06259 Disordered Systems and Neural Networks +1603.06299 Phenomenology +1603.06339 Mesoscale and Nanoscale Physics +1603.06497 Superconductivity +1603.06612 Astrophysics of Galaxies +1603.06726 Theory +1603.06921 Astrophysics of Galaxies +1603.06937 Computer Vision and Pattern Recognition +1603.06987 Computer Vision and Pattern Recognition +1603.07032 +1603.07048 Strongly Correlated Electrons +1603.07076 Computer Vision and Pattern Recognition +1603.07128 Astrophysics of Galaxies +1603.07321 Cosmology and Nongalactic Astrophysics +1603.07620 +1603.07752 +1603.07802 Phenomenology +1603.08005 Earth and Planetary Astrophysics +1603.08010 Earth and Planetary Astrophysics +1603.08378 Fluid Dynamics +1603.08513 Astrophysics of Galaxies +1603.08553 Statistical Mechanics +1603.08561 Computer Vision and Pattern Recognition +1603.08609 Cosmology and Nongalactic Astrophysics +1603.08668 Chemical Physics +1603.08748 Phenomenology +1603.09251 Solar and Stellar Astrophysics +1603.09417 +1603.09653 Experiment +1603.09654 Lattice +1603.09670 +1604.00017 High Energy Astrophysical Phenomena +1604.00129 High Energy Astrophysical Phenomena +1604.00408 Optics +1604.00489 Statistical Mechanics +1604.00770 Phenomenology +1604.01021 High Energy Astrophysical Phenomena +1604.01035 Astrophysics of Galaxies +1604.01038 Cosmology and Nongalactic Astrophysics +1604.01050 Cosmology and Nongalactic Astrophysics +1604.01076 Plasma Physics +1604.01102 Phenomenology +1604.01126 High Energy Astrophysical Phenomena +1604.01321 Materials Science +1604.01360 Computer Vision and Pattern Recognition +1604.01424 Cosmology and Nongalactic Astrophysics +1604.02037 Phenomenology +1604.02084 Materials Science +1604.02245 Computer Vision and Pattern Recognition +1604.02466 Quantum Gases +1604.02478 +1604.02583 Mesoscale and Nanoscale Physics +1604.02787 Plasma Physics +1604.02840 Mesoscale and Nanoscale Physics +1604.02953 Mesoscale and Nanoscale Physics +1604.03077 High Energy Astrophysical Phenomena +1604.03272 Materials Science +1604.03352 High Energy Astrophysical Phenomena +1604.03629 Quantitative Methods +1604.03707 Number Theory +1604.03827 Materials Science +1604.03874 +1604.03909 High Energy Astrophysical Phenomena +1604.03941 Solar and Stellar Astrophysics +1604.04022 Astrophysics of Galaxies +1604.04076 Phenomenology +1604.04080 Phenomenology +1604.04289 Statistical Mechanics +1604.04296 Chemical Physics +1604.04485 High Energy Astrophysical Phenomena +1604.04508 Number Theory +1604.04540 Materials Science +1604.04712 Computational Physics +1604.04783 Computers and Society +1604.04919 Theory +1604.04954 Astrophysics of Galaxies +1604.05000 Computer Vision and Pattern Recognition +1604.05191 Earth and Planetary Astrophysics +1604.05309 Astrophysics of Galaxies +1604.05333 Astrophysics of Galaxies +1604.05435 +1604.05465 Instrumentation and Detectors +1604.05518 Astrophysics of Galaxies +1604.05536 Mesoscale and Nanoscale Physics +1604.05556 Disordered Systems and Neural Networks +1604.05625 Cosmology and Nongalactic Astrophysics +1604.05633 Computer Vision and Pattern Recognition +1604.06073 Solar and Stellar Astrophysics +1604.06074 Solar and Stellar Astrophysics +1604.06123 Solar and Stellar Astrophysics +1604.06192 Astrophysics of Galaxies +1604.06254 Biological Physics +1604.06441 Mesoscale and Nanoscale Physics +1604.06464 Solar and Stellar Astrophysics +1604.06621 Disordered Systems and Neural Networks +1604.06800 Phenomenology +1604.06806 Astrophysics of Galaxies +1604.07003 Solar and Stellar Astrophysics +1604.07009 Lattice +1604.07258 Mesoscale and Nanoscale Physics +1604.07602 Computer Vision and Pattern Recognition +1604.07623 Disordered Systems and Neural Networks +1604.08052 Probability +1604.08061 Mesoscale and Nanoscale Physics +1604.08455 Superconductivity +1604.08528 Space Physics +1604.08567 Disordered Systems and Neural Networks +1604.08594 Astrophysics of Galaxies +1604.08669 High Energy Astrophysical Phenomena +1604.08809 Quantum Gases +1604.08876 Computational Physics +1605.00313 Computational Geometry +1605.00336 Astrophysics of Galaxies +1605.00571 High Energy Astrophysical Phenomena +1605.00578 +1605.00657 Strongly Correlated Electrons +1605.00674 Strongly Correlated Electrons +1605.00719 High Energy Astrophysical Phenomena +1605.00765 High Energy Astrophysical Phenomena +1605.00777 Chemical Physics +1605.00838 Statistical Mechanics +1605.00948 Solar and Stellar Astrophysics +1605.01007 Optics +1605.01226 +1605.01300 High Energy Astrophysical Phenomena +1605.01405 Cosmology and Nongalactic Astrophysics +1605.01516 Instrumentation and Methods for Astrophysics +1605.01605 +1605.01767 Instrumentation and Methods for Astrophysics +1605.01961 +1605.01991 Earth and Planetary Astrophysics +1605.01992 High Energy Astrophysical Phenomena +1605.02006 Astrophysics of Galaxies +1605.02194 Astrophysics of Galaxies +1605.02211 Astrophysics of Galaxies +1605.02319 Probability +1605.02438 Astrophysics of Galaxies +1605.02467 High Energy Astrophysical Phenomena +1605.02506 Astrophysics of Galaxies +1605.02507 Earth and Planetary Astrophysics +1605.02656 Astrophysics of Galaxies +1605.02706 Astrophysics of Galaxies +1605.02904 Astrophysics of Galaxies +1605.02932 Mesoscale and Nanoscale Physics +1605.02997 Lattice +1605.03055 Astrophysics of Galaxies +1605.03136 Solar and Stellar Astrophysics +1605.03161 Astrophysics of Galaxies +1605.03192 Cosmology and Nongalactic Astrophysics +1605.03193 High Energy Astrophysical Phenomena +1605.03196 Astrophysics of Galaxies +1605.03224 Phenomenology +1605.03231 Theory +1605.03354 Logic +1605.03396 Soft Condensed Matter +1605.03408 Solar and Stellar Astrophysics +1605.03476 Phenomenology +1605.03490 Astrophysics of Galaxies +1605.03536 Astrophysics of Galaxies +1605.03583 Solar and Stellar Astrophysics +1605.03600 Astrophysics of Galaxies +1605.03606 Astrophysics of Galaxies +1605.03641 High Energy Astrophysical Phenomena +1605.03732 Solar and Stellar Astrophysics +1605.03750 Solar and Stellar Astrophysics +1605.03867 Earth and Planetary Astrophysics +1605.03937 Astrophysics of Galaxies +1605.04040 Astrophysics of Galaxies +1605.04066 Earth and Planetary Astrophysics +1605.04162 Solar and Stellar Astrophysics +1605.04228 Astrophysics of Galaxies +1605.04386 Astrophysics of Galaxies +1605.04430 Experiment +1605.04545 Experiment +1605.04794 Solar and Stellar Astrophysics +1605.04795 Astrophysics of Galaxies +1605.04842 Astrophysics of Galaxies +1605.04845 Astrophysics of Galaxies +1605.04907 Astrophysics of Galaxies +1605.04956 Mesoscale and Nanoscale Physics +1605.04962 Astrophysics of Galaxies +1605.04992 Astrophysics of Galaxies +1605.05008 Solar and Stellar Astrophysics +1605.05010 High Energy Astrophysical Phenomena +1605.05044 Astrophysics of Galaxies +1605.05129 Solar and Stellar Astrophysics +1605.05183 Astrophysics of Galaxies +1605.05243 +1605.05314 Astrophysics of Galaxies +1605.05321 Solar and Stellar Astrophysics +1605.05323 Astrophysics of Galaxies +1605.05364 Astrophysics of Galaxies +1605.05472 High Energy Astrophysical Phenomena +1605.05507 High Energy Astrophysical Phenomena +1605.05741 Astrophysics of Galaxies +1605.05746 High Energy Astrophysical Phenomena +1605.06101 Astrophysics of Galaxies +1605.06115 Astrophysics of Galaxies +1605.06117 Solar and Stellar Astrophysics +1605.06329 Astrophysics of Galaxies +1605.06331 High Energy Astrophysical Phenomena +1605.06447 +1605.06458 Solar and Stellar Astrophysics +1605.06461 High Energy Astrophysical Phenomena +1605.06500 Astrophysics of Galaxies +1605.06596 Algebraic Geometry +1605.06600 Theory +1605.06604 Strongly Correlated Electrons +1605.06661 Cosmology and Nongalactic Astrophysics +1605.06674 Solar and Stellar Astrophysics +1605.06688 Cosmology and Nongalactic Astrophysics +1605.06705 Astrophysics of Galaxies +1605.06756 Cosmology and Nongalactic Astrophysics +1605.06923 High Energy Astrophysical Phenomena +1605.07109 High Energy Astrophysical Phenomena +1605.07184 Phenomenology +1605.07235 High Energy Astrophysical Phenomena +1605.07353 Performance +1605.07434 Astrophysics of Galaxies +1605.07623 Astrophysics of Galaxies +1605.07739 Atomic Physics +1605.07800 Solar and Stellar Astrophysics +1605.07803 Phenomenology +1605.07920 Solar and Stellar Astrophysics +1605.07927 Solar and Stellar Astrophysics +1605.08051 Astrophysics of Galaxies +1605.08135 Analysis of PDEs +1605.08240 Phenomenology +1605.08303 +1605.08333 Cosmology and Nongalactic Astrophysics +1605.08342 Astrophysics of Galaxies +1605.08472 Cosmology and Nongalactic Astrophysics +1605.08574 Instrumentation and Methods for Astrophysics +1605.08619 Phenomenology +1605.08947 Astrophysics of Galaxies +1605.08980 Adaptation and Self-Organizing Systems +1605.09051 Optics +1605.09300 Solar and Stellar Astrophysics +1605.09372 Plasma Physics +1605.09424 Astrophysics of Galaxies +1606.00005 Solar and Stellar Astrophysics +1606.00016 High Energy Astrophysical Phenomena +1606.00019 Phenomenology +1606.00022 Astrophysics of Galaxies +1606.00089 Solar and Stellar Astrophysics +1606.00154 Strongly Correlated Electrons +1606.00214 +1606.00292 Mesoscale and Nanoscale Physics +1606.00797 Mesoscale and Nanoscale Physics +1606.00831 Solar and Stellar Astrophysics +1606.00843 Solar and Stellar Astrophysics +1606.00973 Solar and Stellar Astrophysics +1606.01108 Solar and Stellar Astrophysics +1606.01255 High Energy Astrophysical Phenomena +1606.01289 Computational Geometry +1606.01333 Solar and Stellar Astrophysics +1606.01373 Astrophysics of Galaxies +1606.01440 Instrumentation and Methods for Astrophysics +1606.01466 High Energy Astrophysical Phenomena +1606.01525 Atomic Physics +1606.01573 Fluid Dynamics +1606.01685 High Energy Astrophysical Phenomena +1606.01744 Earth and Planetary Astrophysics +1606.01770 Theory +1606.02064 Fluid Dynamics +1606.02075 High Energy Astrophysical Phenomena +1606.02115 Solar and Stellar Astrophysics +1606.02204 Astrophysics of Galaxies +1606.02285 High Energy Astrophysical Phenomena +1606.02496 Solar and Stellar Astrophysics +1606.02620 Instrumentation and Methods for Astrophysics +1606.02707 High Energy Astrophysical Phenomena +1606.02726 Astrophysics of Galaxies +1606.02755 Solar and Stellar Astrophysics +1606.02852 +1606.02925 Solar and Stellar Astrophysics +1606.02947 Theory +1606.03028 Astrophysics of Galaxies +1606.03090 Instrumentation and Methods for Astrophysics +1606.03093 Solar and Stellar Astrophysics +1606.03230 Fluid Dynamics +1606.03303 Astrophysics of Galaxies +1606.03450 High Energy Astrophysical Phenomena +1606.03501 Experiment +1606.03517 Optics +1606.03655 Solar and Stellar Astrophysics +1606.03734 Solar and Stellar Astrophysics +1606.03781 Astrophysics of Galaxies +1606.03817 Solar and Stellar Astrophysics +1606.03842 +1606.03991 Phenomenology +1606.03997 Earth and Planetary Astrophysics +1606.04075 Cosmology and Nongalactic Astrophysics +1606.04098 High Energy Astrophysical Phenomena +1606.04154 Solar and Stellar Astrophysics +1606.04214 Mesoscale and Nanoscale Physics +1606.04318 Astrophysics of Galaxies +1606.04375 Atomic Physics +1606.04509 Earth and Planetary Astrophysics +1606.04540 Astrophysics of Galaxies +1606.04635 Solar and Stellar Astrophysics +1606.04651 Astrophysics of Galaxies +1606.04667 Astrophysics of Galaxies +1606.04862 Astrophysics of Galaxies +1606.04867 Astrophysics of Galaxies +1606.04883 Statistical Mechanics +1606.04886 Phenomenology +1606.04955 High Energy Astrophysical Phenomena +1606.04981 Astrophysics of Galaxies +1606.05003 Astrophysics of Galaxies +1606.05187 Earth and Planetary Astrophysics +1606.05189 Earth and Planetary Astrophysics +1606.05196 Earth and Planetary Astrophysics +1606.05292 Solar and Stellar Astrophysics +1606.05307 High Energy Astrophysical Phenomena +1606.05394 Astrophysics of Galaxies +1606.05456 High Energy Astrophysical Phenomena +1606.05465 Solar and Stellar Astrophysics +1606.05499 Astrophysics of Galaxies +1606.05504 High Energy Astrophysical Phenomena +1606.05511 Mesoscale and Nanoscale Physics +1606.05531 Strongly Correlated Electrons +1606.05570 Accelerator Physics +1606.05603 Earth and Planetary Astrophysics +1606.05885 Astrophysics of Galaxies +1606.06006 Cosmology and Nongalactic Astrophysics +1606.06225 Astrophysics of Galaxies +1606.06288 Astrophysics of Galaxies +1606.06303 Astrophysics of Galaxies +1606.06320 Instrumentation and Methods for Astrophysics +1606.06348 Theory +1606.06397 Analysis of PDEs +1606.06597 Number Theory +1606.06638 High Energy Astrophysical Phenomena +1606.06689 Astrophysics of Galaxies +1606.07004 Solar and Stellar Astrophysics +1606.07218 Earth and Planetary Astrophysics +1606.07387 Astrophysics of Galaxies +1606.07485 Chemical Physics +1606.07510 Solar and Stellar Astrophysics +1606.07621 Distributed, Parallel, and Cluster Computing +1606.07741 Solar and Stellar Astrophysics +1606.07836 High Energy Astrophysical Phenomena +1606.07908 Multimedia +1606.08271 Solar and Stellar Astrophysics +1606.08623 Earth and Planetary Astrophysics +1606.08662 Phenomenology +1606.08726 Algebraic Geometry +1606.09077 Chemical Physics +1606.09223 Superconductivity +1606.09246 Earth and Planetary Astrophysics +1606.09478 Mesoscale and Nanoscale Physics +1607.00014 Astrophysics of Galaxies +1607.00048 Combinatorics +1607.00060 Theory +1607.00343 High Energy Astrophysical Phenomena +1607.00397 Dynamical Systems +1607.00491 Solar and Stellar Astrophysics +1607.00639 Strongly Correlated Electrons +1607.00898 Astrophysics of Galaxies +1607.01434 Statistics Theory +1607.01553 Solar and Stellar Astrophysics +1607.01852 Superconductivity +1607.02440 Solar and Stellar Astrophysics +1607.02710 Mesoscale and Nanoscale Physics +1607.02839 Space Physics +1607.02866 High Energy Astrophysical Phenomena +1607.02971 Astrophysics of Galaxies +1607.03114 Solar and Stellar Astrophysics +1607.03577 Astrophysics of Galaxies +1607.03885 Logic +1607.04054 +1607.04330 Networking and Internet Architecture +1607.04795 Superconductivity +1607.05346 Algebraic Topology +1607.05455 Methodology +1607.05480 Earth and Planetary Astrophysics +1607.05528 Materials Science +1607.05592 Phenomenology +1607.05794 Category Theory +1607.06309 Solar and Stellar Astrophysics +1607.06530 +1607.06695 +1607.06719 Phenomenology +1607.06871 Computer Vision and Pattern Recognition +1607.06912 Soft Condensed Matter +1607.07043 Computer Vision and Pattern Recognition +1607.07065 Pattern Formation and Solitons +1607.07095 +1607.07137 +1607.07150 +1607.07215 Computer Vision and Pattern Recognition +1607.07394 Phenomenology +1607.07414 Methodology +1607.07433 Numerical Analysis +1607.07437 History and Philosophy of Physics +1607.07438 Astrophysics of Galaxies +1607.07440 Mesoscale and Nanoscale Physics +1607.07444 High Energy Astrophysical Phenomena +1607.07466 Optics +1607.07469 Physics Education +1607.07473 Strongly Correlated Electrons +1607.07474 Populations and Evolution +1607.07479 Numerical Analysis +1607.07482 Functional Analysis +1607.07483 Robotics +1607.07484 Information Theory +1607.07485 Mesoscale and Nanoscale Physics +1607.07486 Algebraic Geometry +1607.07488 +1607.07489 Cryptography and Security +1607.07490 +1607.07492 Differential Geometry +1607.07493 Physics Education +1607.07494 Networking and Internet Architecture +1607.07495 Computers and Society +1607.07496 +1607.07501 Cryptography and Security +1607.07502 Social and Information Networks +1607.07503 Genomics +1607.07504 Information Retrieval +1607.07508 Information Theory +1607.07509 Differential Geometry +1607.07510 General Finance +1607.07511 Statistical Mechanics +1607.07512 Functional Analysis +1607.07514 Computation and Language +1607.07515 Applications +1607.07516 Computational Complexity +1607.07517 Experiment +1607.07519 Machine Learning +1607.07521 Methodology +1607.07522 Combinatorics +1607.07525 Computer Vision and Pattern Recognition +1607.07527 Algebraic Geometry +1607.07529 Number Theory +1607.07532 Exactly Solvable and Integrable Systems +1607.07535 Systems and Control +1607.07536 Strongly Correlated Electrons +1607.07537 Information Theory +1607.07541 Mesoscale and Nanoscale Physics +1607.07542 Spectral Theory +1607.07543 Systems and Control +1607.07544 Classical Analysis and ODEs +1607.07547 Information Theory +1607.07553 Data Structures and Algorithms +1607.07555 Probability +1607.07556 Numerical Analysis +1607.07557 Classical Analysis and ODEs +1607.07559 Algebraic Topology +1607.07561 Computer Vision and Pattern Recognition +1607.07563 Probability +1607.07565 Computation and Language +1607.07567 +1607.07570 Social and Information Networks +1607.07572 +1607.07573 Machine Learning +1607.07577 Differential Geometry +1607.07580 Analysis of PDEs +1607.07581 Operator Algebras +1607.07582 Mathematical Finance +1607.07583 Combinatorics +1607.07584 Analysis of PDEs +1607.07589 +1607.07591 Numerical Analysis +1607.07593 Dynamical Systems +1607.07600 Statistics Theory +1607.07602 Software Engineering +1607.07604 Computer Vision and Pattern Recognition +1607.07606 Probability +1607.07607 Learning +1607.07608 Fluid Dynamics +1607.07611 Learning +1607.07614 Computer Vision and Pattern Recognition +1607.07618 Algebraic Geometry +1607.07620 Optics +1607.07622 Mesoscale and Nanoscale Physics +1607.07623 Phenomenology +1607.07629 Commutative Algebra +1607.07630 Computation and Language +1607.07632 Astrophysics of Galaxies +1607.07633 Rings and Algebras +1607.07634 Commutative Algebra +1607.07639 Computer Vision and Pattern Recognition +1607.07640 Mesoscale and Nanoscale Physics +1607.07641 Commutative Algebra +1607.07643 Analysis of PDEs +1607.07644 Group Theory +1607.07646 Computer Vision and Pattern Recognition +1607.07647 Data Structures and Algorithms +1607.07649 Atomic Physics +1607.07650 Group Theory +1607.07653 Group Theory +1607.07654 Probability +1607.07656 Cryptography and Security +1607.07657 Computation and Language +1607.07661 Geometric Topology +1607.07662 Numerical Analysis +1607.07663 Classical Analysis and ODEs +1607.07664 Applications +1607.07667 Algebraic Topology +1607.07671 Computer Vision and Pattern Recognition +1607.07673 Data Structures and Algorithms +1607.07674 Information Theory +1607.07678 Category Theory +1607.07680 Computer Vision and Pattern Recognition +1607.07681 Functional Analysis +1607.07683 Numerical Analysis +1607.07684 Computer Science and Game Theory +1607.07685 Exactly Solvable and Integrable Systems +1607.07686 +1607.07687 High Energy Astrophysical Phenomena +1607.07689 +1607.07693 Phenomenology +1607.07696 Distributed, Parallel, and Cluster Computing +1607.07697 Multimedia +1607.07701 Logic +1607.07702 Numerical Analysis +1607.07703 Physics Education +1607.07704 Analysis of PDEs +1607.07706 General Finance +1607.07707 Information Theory +1607.07708 Strongly Correlated Electrons +1607.07712 Computers and Society +1607.07714 +1607.07716 Computer Vision and Pattern Recognition +1607.07719 Information Theory +1607.07722 Materials Science +1607.07727 Programming Languages +1607.07728 Representation Theory +1607.07730 Artificial Intelligence +1607.07731 Superconductivity +1607.07734 Combinatorics +1607.07737 Data Structures and Algorithms +1607.07744 Cosmology and Nongalactic Astrophysics +1607.07746 Algebraic Geometry +1607.07747 General Topology +1607.07748 Algebraic Topology +1607.07750 Space Physics +1607.07751 Computers and Society +1607.07753 Systems and Control +1607.07754 Phenomenology +1607.07755 Strongly Correlated Electrons +1607.07756 K-Theory and Homology +1607.07760 Differential Geometry +1607.07761 Distributed, Parallel, and Cluster Computing +1607.07763 Distributed, Parallel, and Cluster Computing +1607.07769 Dynamical Systems +1607.07770 Computer Vision and Pattern Recognition +1607.07774 Soft Condensed Matter +1607.07776 Biological Physics +1607.07777 Differential Geometry +1607.07778 Algebraic Geometry +1607.07779 Algebraic Geometry +1607.07780 Other Computer Science +1607.07781 Instrumentation and Detectors +1607.07782 Mesoscale and Nanoscale Physics +1607.07784 Instrumentation and Detectors +1607.07787 Functional Analysis +1607.07788 Computation and Language +1607.07789 Combinatorics +1607.07790 Computers and Society +1607.07792 Computers and Society +1607.07793 Computers and Society +1607.07794 Mesoscale and Nanoscale Physics +1607.07795 +1607.07796 Human-Computer Interaction +1607.07798 Information Theory +1607.07799 Information Theory +1607.07800 Instrumentation and Detectors +1607.07801 Sound +1607.07802 Metric Geometry +1607.07804 Learning +1607.07805 Other Quantitative Biology +1607.07806 Quantitative Methods +1607.07809 Biological Physics +1607.07810 +1607.07812 Mesoscale and Nanoscale Physics +1607.07816 Fluid Dynamics +1607.07817 Quantitative Methods +1607.07818 Data Structures and Algorithms +1607.07820 Geometric Topology +1607.07821 Algebraic Geometry +1607.07823 Algebraic Geometry +1607.07824 Multimedia +1607.07826 Materials Science +1607.07827 Number Theory +1607.07828 Logic in Computer Science +1607.07829 Algebraic Geometry +1607.07830 Group Theory +1607.07833 Logic +1607.07834 Quantitative Methods +1607.07838 Soft Condensed Matter +1607.07841 Cryptography and Security +1607.07842 Quantum Gases +1607.07844 Statistics Theory +1607.07846 Distributed, Parallel, and Cluster Computing +1607.07848 Robotics +1607.07849 Computers and Society +1607.07853 Physics Education +1607.07856 Physics Education +1607.07858 Mesoscale and Nanoscale Physics +1607.07860 Number Theory +1607.07861 Earth and Planetary Astrophysics +1607.07864 Dynamical Systems +1607.07866 Probability +1607.07867 Mesoscale and Nanoscale Physics +cond-mat/0203044 Mesoscale and Nanoscale Physics +hep-th/0209109 Theory +0706.1988 Physics Education +0905.2258 Algebraic Geometry +1006.2334 Theory +1108.5126 Geometric Topology +1109.1082 Combinatorics +1205.5656 +1301.1756 Quantum Algebra +1305.6412 Statistical Mechanics +1309.1879 Algebraic Geometry +1309.6524 Representation Theory +1310.2921 Geometric Topology +1311.3123 Information Theory +1401.7169 Information Theory +1402.0152 Quantum Algebra +1402.0521 Networking and Internet Architecture +1402.1027 Computer Science and Game Theory +1403.1930 Symplectic Geometry +1403.2975 +1405.2662 Rings and Algebras +1405.2733 Cryptography and Security +1405.3575 Phenomenology +1407.0867 Quantitative Methods +1407.1789 +1407.6767 Geometric Topology +1407.7106 +1408.3584 Disordered Systems and Neural Networks +1408.4347 Superconductivity +1411.1699 Metric Geometry +1412.2459 +1412.6860 Probability +1501.00737 Chemical Physics +1501.03748 +1501.05164 Probability +1502.01381 Algebraic Geometry +1502.07598 Information Theory +1502.07738 Machine Learning +1503.01517 +1503.01840 +1503.06023 Algebraic Geometry +1503.08214 Cosmology and Nongalactic Astrophysics +1504.01086 Geometric Topology +1504.01396 Strongly Correlated Electrons +1504.02299 Phenomenology +1504.07255 Instrumentation and Methods for Astrophysics +1504.07645 Probability +1505.00835 Robotics +1505.02106 +1505.07996 +1506.04999 +1507.00544 +1507.03145 Information Theory +1507.03797 Probability +1507.04077 Geometric Topology +1507.04698 Metric Geometry +1507.05066 Applications +1507.05583 Geometric Topology +1508.01712 Combinatorics +1508.02535 Distributed, Parallel, and Cluster Computing +1508.04639 Commutative Algebra +1508.06280 Instrumentation and Methods for Astrophysics +1508.06616 Dynamical Systems +1508.07774 Experiment +1509.01724 Algebraic Geometry +1509.02494 High Energy Astrophysical Phenomena +1509.03431 Superconductivity +1509.03957 Accelerator Physics +1509.08626 +1510.00424 Combinatorics +1510.00480 Exactly Solvable and Integrable Systems +1510.01495 Information Theory +1510.05071 Systems and Control +1510.06243 Number Theory +1510.07487 Symbolic Computation +1511.00026 Mathematical Finance +1511.00071 Number Theory +1511.00711 Combinatorics +1511.01508 Computer Vision and Pattern Recognition +1511.01783 Lattice +1511.03408 Disordered Systems and Neural Networks +1511.03778 Statistical Mechanics +1511.05822 Classical Analysis and ODEs +1511.05885 +1511.06286 Computation +1511.06676 Computer Vision and Pattern Recognition +1511.06844 Combinatorics +1511.08258 Statistical Mechanics +1511.08861 Computer Vision and Pattern Recognition +1512.00577 Quantum Algebra +1512.01630 Cryptography and Security +1512.02010 Algebraic Geometry +1512.02087 Theory +1512.02433 Computation and Language +1512.03049 Geometric Topology +1512.06067 +1512.06335 Phenomenology +1601.01273 Algebraic Geometry +1601.01356 Learning +1601.02584 Instrumentation and Methods for Astrophysics +1601.02843 Dynamical Systems +1601.06648 Statistical Mechanics +1601.07555 +1601.08222 Earth and Planetary Astrophysics +1602.00676 Soft Condensed Matter +1602.01292 Theory +1602.01298 Combinatorics +1602.01437 Instrumentation and Detectors +1602.02028 Differential Geometry +1602.02435 Applications +1602.02990 Robotics +1602.03327 Theory +1602.04985 Combinatorics +1602.06676 Mesoscale and Nanoscale Physics +1602.07202 Computational Physics +1602.07212 +1602.07387 Machine Learning +1602.08199 Optics +1602.08357 Neural and Evolutionary Computing +1603.00167 +1603.01721 Earth and Planetary Astrophysics +1603.04473 Disordered Systems and Neural Networks +1603.05024 Statistical Mechanics +1603.06291 +1603.07400 Learning +1603.07750 +1603.07943 Group Theory +1603.08361 Representation Theory +1603.08967 Mesoscale and Nanoscale Physics +1604.00096 Quantum Gases +1604.00374 Instrumentation and Detectors +1604.01028 Mesoscale and Nanoscale Physics +1604.01658 Number Theory +1604.02260 Instrumentation and Detectors +1604.03089 +1604.05285 Statistical Mechanics +1604.05492 Information Retrieval +1604.07653 Quantum Gases +1604.08029 Differential Geometry +1604.08429 Cosmology and Nongalactic Astrophysics +1605.00092 Discrete Mathematics +1605.00550 Chemical Physics +1605.00583 +1605.02220 Quantum Gases +1605.03513 Experiment +1605.03649 Mesoscale and Nanoscale Physics +1605.04972 Geometric Topology +1605.06648 Strongly Correlated Electrons +1605.06758 Disordered Systems and Neural Networks +1605.06785 Analysis of PDEs +1605.07137 Mesoscale and Nanoscale Physics +1605.07818 +1605.07877 Algebraic Geometry +1605.07884 Mathematical Finance +1605.08719 Optimization and Control +1605.08720 Algebraic Geometry +1605.09243 Analysis of PDEs +1605.09259 Mesoscale and Nanoscale Physics +1606.00999 Experiment +1606.03115 +1606.03927 +1606.04273 Computation +1606.04333 Computer Vision and Pattern Recognition +1606.04378 Category Theory +1606.04426 Quantum Gases +1606.04470 Analysis of PDEs +1606.04482 Number Theory +1606.04533 Number Theory +1606.04534 Chemical Physics +1606.04541 Phenomenology +1606.04548 Cosmology and Nongalactic Astrophysics +1606.04551 Optimization and Control +1606.04552 Learning +1606.04553 Systems and Control +1606.04554 Mesoscale and Nanoscale Physics +1606.04555 Algebraic Geometry +1606.04556 Earth and Planetary Astrophysics +1606.04558 Geophysics +1606.04559 Earth and Planetary Astrophysics +1606.04563 Instrumentation and Methods for Astrophysics +1606.04564 Applications +1606.04568 Software Engineering +1606.04570 Optics +1606.04571 Classical Analysis and ODEs +1606.04576 Genomics +1606.04577 Dynamical Systems +1606.04578 Physics Education +1606.04579 Superconductivity +1606.04583 Analysis of PDEs +1606.04584 General Physics +1606.04585 High Energy Astrophysical Phenomena +1606.04586 Computer Vision and Pattern Recognition +1606.04587 Probability +1606.04589 Artificial Intelligence +1606.04590 Computer Vision and Pattern Recognition +1606.04592 Computational Complexity +1606.04593 Cryptography and Security +1606.04597 Computation and Language +1606.04598 Cryptography and Security +1606.04599 Cryptography and Security +1606.04607 Rings and Algebras +1606.04608 Combinatorics +1606.04609 Hardware Architecture +1606.04615 Learning +1606.04616 Computer Vision and Pattern Recognition +1606.04618 Machine Learning +1606.04620 Analysis of PDEs +1606.04623 Phenomenology +1606.04624 Learning +1606.04625 Combinatorics +1606.04631 Multimedia +1606.04637 Computer Vision and Pattern Recognition +1606.04639 Information Theory +1606.04640 Computation and Language +1606.04645 +1606.04646 Learning +1606.04647 Optimization and Control +1606.04648 Information Retrieval +1606.04649 Computational Complexity +1606.04656 Plasma Physics +1606.04658 Strongly Correlated Electrons +1606.04659 +1606.04660 Numerical Analysis +1606.04661 Information Theory +1606.04662 Cryptography and Security +1606.04664 Analysis of PDEs +1606.04665 Analysis of PDEs +1606.04670 Optimization and Control +1606.04673 Number Theory +1606.04674 Astrophysics of Galaxies +1606.04676 Solar and Stellar Astrophysics +1606.04682 Software Engineering +1606.04685 Functional Analysis +1606.04686 Computation and Language +1606.04687 Functional Analysis +1606.04689 Materials Science +1606.04690 Complex Variables +1606.04693 Analysis of PDEs +1606.04694 Accelerator Physics +1606.04695 Artificial Intelligence +1606.04701 Analysis of PDEs +1606.04702 Computer Vision and Pattern Recognition +1606.04703 Computers and Society +1606.04704 Astrophysics of Galaxies +1606.04708 Number Theory +1606.04709 Mesoscale and Nanoscale Physics +1606.04718 Data Structures and Algorithms +1606.04719 Neurons and Cognition +1606.04721 Social and Information Networks +1606.04723 Analysis of PDEs +1606.04725 +1606.04727 Superconductivity +1606.04730 Soft Condensed Matter +1606.04733 Fluid Dynamics +1606.04734 Cosmology and Nongalactic Astrophysics +1606.04735 Fluid Dynamics +1606.04740 Computational Physics +1606.04741 Earth and Planetary Astrophysics +1606.04743 Instrumentation and Detectors +1606.04746 Data Structures and Algorithms +1606.04747 Probability +1606.04749 Information Theory +1606.04750 Learning +1606.04754 Computation and Language +1606.04756 Combinatorics +1606.04758 Phenomenology +1606.04761 Information Theory +1606.04762 Algebraic Geometry +1606.04763 Data Structures and Algorithms +1606.04765 Logic +1606.04766 Computer Vision and Pattern Recognition +1606.04771 Methodology +1606.04773 Operator Algebras +1606.04774 Robotics +1606.04775 Quantum Algebra +1606.04776 Classical Analysis and ODEs +1606.04777 +1606.04779 Combinatorics +1606.04780 Plasma Physics +1606.04786 Logic in Computer Science +1606.04790 General Finance +1606.04793 Analysis of PDEs +1606.04797 Computer Vision and Pattern Recognition +1606.04800 Medical Physics +1606.04802 Methodology +1606.04804 Numerical Analysis +1606.04805 Performance +1606.04806 Complex Variables +1606.04808 +1606.04810 Functional Analysis +1606.04814 Classical Analysis and ODEs +1606.04816 Economics +1606.04819 Statistics Theory +1606.04820 Machine Learning +1606.04821 +1606.04822 Algebraic Geometry +1606.04824 Dynamical Systems +1606.04827 High Energy Astrophysical Phenomena +1606.04828 Analysis of PDEs +1606.04830 Distributed, Parallel, and Cluster Computing +1606.04831 Analysis of PDEs +1606.04832 Classical Physics +1606.04834 Materials Science +1606.04836 Human-Computer Interaction +1606.04838 Machine Learning +1606.04848 Geometric Topology +1606.04849 Networking and Internet Architecture +1606.04853 Computer Vision and Pattern Recognition +1606.04854 +1606.04855 +1606.04857 Combinatorics +1606.04858 Algebraic Geometry +1606.04859 Differential Geometry +1606.04868 Functional Analysis +1606.04869 Combinatorics +1606.04870 Computation and Language +1606.04871 Rings and Algebras +1606.04872 Physics and Society +1606.04874 Functional Analysis +1606.04875 Quantitative Methods +1606.04876 Neurons and Cognition +1606.04884 Neural and Evolutionary Computing +1606.04885 Atomic Physics +1606.04891 Methodology +1606.04892 Analysis of PDEs +1606.04897 Mesoscale and Nanoscale Physics +1606.04899 Differential Geometry +1606.04900 Physics and Society +1606.04908 Mesoscale and Nanoscale Physics +1606.04911 Statistical Mechanics +1606.04912 Numerical Analysis +1606.04918 +1606.04919 Instrumentation and Detectors +1606.04924 Functional Analysis +1606.04925 Probability +1606.04927 Strongly Correlated Electrons +1606.04928 Networking and Internet Architecture +1606.04929 Human-Computer Interaction +1606.04930 Learning +1606.04933 Information Theory +1606.04935 Networking and Internet Architecture +nucl-ex/0402005 +1103.1918 Optimization and Control +1105.6220 Probability +1107.0312 Methodology +1107.1210 Geometric Topology +1109.5417 +1205.5504 Information Theory +1207.7120 Rings and Algebras +1210.4722 +1211.1352 Number Theory +1301.4457 Theory +1304.6352 Algebraic Geometry +1309.1707 Probability +1312.5487 Rings and Algebras +1312.6429 Phenomenology +1403.1824 Information Theory +1403.5061 Number Theory +1403.5864 Other Computer Science +1404.4168 Number Theory +1404.6563 Information Theory +1406.7142 +1408.3608 Statistical Mechanics +1408.5819 Functional Analysis +1409.1079 Classical Analysis and ODEs +1409.3707 Combinatorics +1409.3970 Computer Vision and Pattern Recognition +1410.2505 Methodology +1410.6911 Analysis of PDEs +1410.7095 Analysis of PDEs +1411.1703 Number Theory +1411.3428 Phenomenology +1411.7202 +1501.00521 Probability +1501.02599 Theory +1501.03291 Machine Learning +1501.03411 Commutative Algebra +1501.03460 Astrophysics of Galaxies +1501.04955 Combinatorics +1502.02192 Rings and Algebras +1502.05554 +1502.05698 Artificial Intelligence +1503.02350 Differential Geometry +1503.05342 +1503.07190 Analysis of PDEs +1504.06304 Phenomenology +1505.00728 Mesoscale and Nanoscale Physics +1505.06428 Probability +1505.08113 Methodology +1506.00595 Theory +1506.01444 +1506.05089 Statistical Mechanics +1506.07030 Atomic Physics +1506.07565 Representation Theory +1506.07976 Populations and Evolution +1506.08911 Number Theory +1507.00951 Algebraic Geometry +1507.01570 Phenomenology +1507.06836 Discrete Mathematics +1507.06974 Combinatorics +1507.08479 Classical Analysis and ODEs +1507.08792 Data Structures and Algorithms +1508.00071 Mesoscale and Nanoscale Physics +1508.01852 Number Theory +1509.03164 Atomic Physics +1509.04429 Number Theory +1509.08283 Quantum Gases +1509.08797 Phenomenology +1510.03372 Phenomenology +1510.03490 Plasma Physics +1510.05090 Theory +1510.07624 Chemical Physics +1511.00136 Geometric Topology +1511.04236 Statistical Mechanics +1511.04359 Information Theory +1511.05782 Optimization and Control +1511.06926 Superconductivity +1511.07262 Atomic Physics +1512.00430 +1512.01861 Cosmology and Nongalactic Astrophysics +1512.03337 Category Theory +1512.03628 Space Physics +1512.04911 Soft Condensed Matter +1512.05434 +1512.06970 Systems and Control +1512.07111 Optics +1512.08617 Optimization and Control +1512.08630 Optimization and Control +1512.08668 Functional Analysis +1512.08901 Instrumentation and Detectors +1512.08991 Emerging Technologies +1512.09140 General Physics +1512.09154 Geometric Topology +1512.09160 Tissues and Organs +1512.09162 Geometric Topology +1512.09165 Metric Geometry +1512.09166 +1512.09171 Logic +1512.09173 Analysis of PDEs +1512.09174 Dynamical Systems +1512.09181 Accelerator Physics +1512.09184 Information Theory +1512.09185 Group Theory +1512.09186 Logic in Computer Science +1512.09188 Commutative Algebra +1512.09193 Statistics Theory +1512.09196 Exactly Solvable and Integrable Systems +1512.09197 Instrumentation and Detectors +1512.09198 Symplectic Geometry +1512.09199 Symplectic Geometry +1512.09201 Complex Variables +1512.09202 Phenomenology +1512.09203 Phenomenology +1512.09204 Learning +1512.09205 Dynamical Systems +1512.09206 Methodology +1512.09207 Formal Languages and Automata Theory +1512.09209 Algebraic Geometry +1512.09210 Numerical Analysis +1512.09217 +1512.09221 +1512.09226 Statistics Theory +1512.09227 Learning +1512.09228 Distributed, Parallel, and Cluster Computing +1512.09235 Optimization and Control +1512.09239 Computer Science and Game Theory +1512.09242 Fluid Dynamics +1512.09243 +1512.09244 Methodology +1512.09245 Dynamical Systems +1512.09246 Medical Physics +1512.09249 Number Theory +1512.09251 Optimization and Control +1512.09254 Artificial Intelligence +1512.09256 +1512.09259 +1512.09261 Analysis of PDEs +1512.09262 Analysis of PDEs +1512.09263 Cryptography and Security +1512.09265 +1512.09268 Analysis of PDEs +1512.09269 +1512.09270 Instrumentation and Detectors +1512.09273 Geometric Topology +1512.09277 Number Theory +1512.09280 Risk Management +1512.09283 Phenomenology +1512.09284 Phenomenology +1512.09285 K-Theory and Homology +1512.09287 Information Theory +1512.09290 Numerical Analysis +1512.09293 Physics and Society +1512.09294 Classical Analysis and ODEs +1512.09295 Machine Learning +1512.09297 Symplectic Geometry +1512.09304 Algebraic Topology +1512.09308 +1512.09309 +1512.09311 Systems and Control +1512.09314 Distributed, Parallel, and Cluster Computing +1512.09320 Differential Geometry +1512.09321 Representation Theory +1512.09322 Optics +1512.09323 Optics +1512.09326 +1512.09336 Geometric Topology +1512.09337 Exactly Solvable and Integrable Systems +1512.09338 Rings and Algebras +1512.09339 Representation Theory +1512.09341 Representation Theory +1512.09343 Number Theory +1512.09344 Representation Theory +1512.09345 Geometric Topology +1512.09348 Cosmology and Nongalactic Astrophysics +1512.09349 Data Structures and Algorithms +1512.09355 +1512.09359 Numerical Analysis +1512.09362 Number Theory +1512.09365 +1512.09366 +1512.09368 Quantitative Methods +1512.09369 Programming Languages +1512.09370 Populations and Evolution +1512.09372 Chemical Physics +1512.09373 Materials Science +1512.09375 +cond-mat/0202214 Materials Science +cond-mat/0208093 Materials Science +physics/9911030 Computational Physics +physics/9911031 Computational Physics +1001.0457 Algebraic Geometry +1002.1869 Commutative Algebra +1004.3177 Algebraic Geometry +1006.4290 Commutative Algebra +1010.0824 Classical Analysis and ODEs +1103.2930 +1111.4206 Dynamical Systems +1112.0270 Molecular Networks +1201.0856 Computational Complexity +1202.0370 Probability +1203.3072 Operator Algebras +1206.0711 Logic +1207.4228 Rings and Algebras +1208.5637 Commutative Algebra +1211.2592 Rings and Algebras +1212.6628 Geometric Topology +1301.2611 Logic +1302.2737 Algebraic Topology +1304.1062 Algebraic Geometry +1304.1695 Algebraic Geometry +1305.2868 Algebraic Geometry +1305.4578 Rings and Algebras +1307.0817 General Finance +1309.5055 Representation Theory +1311.4839 Computational Complexity +1311.6052 Algebraic Geometry +1312.0163 Rings and Algebras +1402.3534 Functional Analysis +1403.0234 Differential Geometry +1403.4648 Mesoscale and Nanoscale Physics +1403.7707 Computer Science and Game Theory +1404.2548 Quantum Gases +1404.4551 +1405.0123 Rings and Algebras +1406.0706 Methodology +1408.2136 Combinatorics +1409.4578 Optics +1410.0297 Number Theory +1410.2028 Representation Theory +1410.2950 Atomic and Molecular Clusters +1411.3736 Networking and Internet Architecture +1411.4412 Differential Geometry +1411.4689 +1411.6698 Probability +1412.0719 Probability +1502.00287 +1502.03266 Probability +1502.08042 Strongly Correlated Electrons +1503.02233 Instrumentation and Methods for Astrophysics +1503.03637 Computer Vision and Pattern Recognition +1503.03731 Algebraic Geometry +1503.05839 Geometric Topology +1503.08183 Theory +1504.03548 K-Theory and Homology +1505.03336 Data Analysis, Statistics and Probability +1505.04001 Phenomenology +1505.05433 Analysis of PDEs +1505.07674 Cosmology and Nongalactic Astrophysics +1506.01036 +1506.01321 +1506.01458 Group Theory +1506.02686 Machine Learning +1506.03109 Quantum Algebra +1507.02806 Algebraic Geometry +1507.04389 Combinatorics +1507.04942 +1508.00026 +1508.04740 Discrete Mathematics +1509.00906 Geometric Topology +1509.04653 +1509.05144 Logic in Computer Science +1509.08403 Differential Geometry +1510.05412 Functional Analysis +1510.08129 Theory +1511.01842 Superconductivity +1511.02748 Mesoscale and Nanoscale Physics +1511.03652 Soft Condensed Matter +1511.04279 +1511.04590 Computer Vision and Pattern Recognition +1511.05067 Computer Vision and Pattern Recognition +1511.05270 Computer Science and Game Theory +1511.06433 Learning +1511.09445 +1511.09450 Logic in Computer Science +1512.00382 Strongly Correlated Electrons +1512.01088 Molecular Networks +1512.03957 High Energy Astrophysical Phenomena +1512.06336 Symplectic Geometry +1512.06440 Discrete Mathematics +1512.06553 Strongly Correlated Electrons +1512.08117 Phenomenology +1512.08808 Learning +1512.09258 Algebraic Topology +1601.00898 Plasma Physics +1601.01311 Optics +1601.03178 Statistical Mechanics +1601.05959 Differential Geometry +1601.06936 +1602.02439 Computer Science and Game Theory +1602.02453 +1602.02602 Operator Algebras +1602.03040 Learning +1602.03169 Experiment +1602.03889 Phenomenology +1602.04196 Soft Condensed Matter +1602.05606 Experiment +1602.05987 +1602.08164 +1603.00017 Mesoscale and Nanoscale Physics +1603.03282 Mesoscale and Nanoscale Physics +1603.03605 Probability +1603.04416 Learning +1603.04802 Materials Science +1603.07030 Logic in Computer Science +1603.07523 Combinatorics +1603.07533 Functional Analysis +1604.00798 Statistical Mechanics +1604.01318 +1604.02947 Computational Complexity +1604.03572 Dynamical Systems +1604.04074 Data Analysis, Statistics and Probability +1604.04781 Strongly Correlated Electrons +1604.07201 Programming Languages +1604.08141 Quantum Gases +1604.08282 Theory +1605.00318 Functional Analysis +1605.00339 Pricing of Securities +1605.00941 Instrumentation and Detectors +1605.00997 Phenomenology +1605.02531 Information Theory +1605.02793 High Energy Astrophysical Phenomena +1605.02852 Functional Analysis +1605.03946 Superconductivity +1605.05856 Networking and Internet Architecture +1605.07220 Data Structures and Algorithms +1605.07224 Formal Languages and Automata Theory +1605.07770 +1605.07971 Strongly Correlated Electrons +1605.08000 Dynamical Systems +1605.08876 Statistical Mechanics +1605.09385 Mesoscale and Nanoscale Physics +1606.00633 Soft Condensed Matter +1606.01831 Logic in Computer Science +1606.02151 Biomolecules +1606.03920 Probability +1606.04172 Methodology +1606.05084 Materials Science +1606.05673 Information Theory +1606.07486 Strongly Correlated Electrons +1606.07856 Strongly Correlated Electrons +1606.08977 Superconductivity +1606.09213 Phenomenology +1606.09221 Physics and Society +1606.09549 Computer Vision and Pattern Recognition +1607.00226 Information Theory +1607.00398 Cosmology and Nongalactic Astrophysics +1607.00399 Theory +1607.00487 Analysis of PDEs +1607.01771 Statistical Mechanics +1607.02319 Risk Management +1607.02653 Information Theory +1607.02685 Materials Science +1607.04714 Optics +1607.04870 Category Theory +1607.05212 Distributed, Parallel, and Cluster Computing +1607.05221 Statistical Mechanics +1607.05306 General Physics +1607.06264 Human-Computer Interaction +1607.07652 Materials Science +1607.07759 Cryptography and Security +1607.07955 Quantum Algebra +1607.08865 Combinatorics +1608.00084 Phenomenology +1608.01175 Differential Geometry +1608.02560 Mesoscale and Nanoscale Physics +1608.03212 +1608.03434 Materials Science +1608.03477 Neurons and Cognition +1608.03698 +1608.04513 Classical Analysis and ODEs +1608.05072 Exactly Solvable and Integrable Systems +1608.05163 Probability +1608.06390 Solar and Stellar Astrophysics +1608.07045 Analysis of PDEs +1608.07094 Information Retrieval +1608.07312 Numerical Analysis +1608.08221 +1608.08334 Computer Vision and Pattern Recognition +1608.08511 Theory +1608.08786 Materials Science +1608.08860 High Energy Astrophysical Phenomena +1609.00135 Optimization and Control +1609.00229 +1609.00265 Data Structures and Algorithms +1609.00524 Solar and Stellar Astrophysics +1609.00585 Learning +1609.01423 Machine Learning +1609.01493 Logic in Computer Science +1609.02017 Soft Condensed Matter +1609.02747 +1609.02996 Experiment +1609.03295 Methodology +1609.03455 Logic +1609.03672 Combinatorics +1609.03822 Statistical Mechanics +1609.03923 Populations and Evolution +1609.03965 Computational Physics +1609.03986 Computer Vision and Pattern Recognition +1609.04005 Logic +1609.04007 Subcellular Processes +1609.04022 Cosmology and Nongalactic Astrophysics +1609.04023 Strongly Correlated Electrons +1609.04030 Geophysics +1609.04031 High Energy Astrophysical Phenomena +1609.04033 Neurons and Cognition +1609.04034 General Physics +1609.04038 Fluid Dynamics +1609.04039 Functional Analysis +1609.04040 Probability +1609.04043 Optimization and Control +1609.04045 Algebraic Geometry +1609.04046 Quantum Gases +1609.04048 Materials Science +1609.04050 General Physics +1609.04051 Data Structures and Algorithms +1609.04052 Rings and Algebras +1609.04053 Systems and Control +1609.04055 Rings and Algebras +1609.04056 Robotics +1609.04057 Statistics Theory +1609.04062 Algebraic Topology +1609.04064 Numerical Analysis +1609.04065 Risk Management +1609.04066 Differential Geometry +1609.04067 +1609.04070 Probability +1609.04071 Computers and Society +1609.04072 Category Theory +1609.04079 Computer Vision and Pattern Recognition +1609.04080 Superconductivity +1609.04083 Information Theory +1609.04085 Logic in Computer Science +1609.04086 Logic in Computer Science +1609.04087 Computer Science and Game Theory +1609.04088 Logic in Computer Science +1609.04089 Computer Science and Game Theory +1609.04090 Logic in Computer Science +1609.04091 Logic in Computer Science +1609.04092 Logic in Computer Science +1609.04093 Logic in Computer Science +1609.04094 Logic in Computer Science +1609.04095 Logic in Computer Science +1609.04096 Formal Languages and Automata Theory +1609.04097 Logic in Computer Science +1609.04098 Formal Languages and Automata Theory +1609.04099 Computer Science and Game Theory +1609.04100 Logic in Computer Science +1609.04101 Formal Languages and Automata Theory +1609.04102 Logic in Computer Science +1609.04103 Atmospheric and Oceanic Physics +1609.04104 Learning +1609.04105 Analysis of PDEs +1609.04109 Differential Geometry +1609.04110 Analysis of PDEs +1609.04111 Experiment +1609.04113 Rings and Algebras +1609.04114 Systems and Control +1609.04115 Numerical Analysis +1609.04116 Computer Vision and Pattern Recognition +1609.04118 Dynamical Systems +1609.04121 Cosmology and Nongalactic Astrophysics +1609.04122 Mesoscale and Nanoscale Physics +1609.04124 Algebraic Geometry +1609.04127 Dynamical Systems +1609.04130 Numerical Analysis +1609.04131 Populations and Evolution +1609.04132 Quantum Algebra +1609.04134 Mesoscale and Nanoscale Physics +1609.04138 Probability +1609.04140 Number Theory +1609.04141 Pattern Formation and Solitons +1609.04142 Algebraic Geometry +1609.04143 Algebraic Geometry +1609.04145 +1609.04146 Number Theory +1609.04147 Robotics +1609.04148 Computational Geometry +1609.04149 Strongly Correlated Electrons +1609.04150 Data Analysis, Statistics and Probability +1609.04152 Superconductivity +1609.04153 Instrumentation and Methods for Astrophysics +1609.04154 Algebraic Geometry +1609.04155 Atomic Physics +1609.04159 +1609.04160 Statistical Mechanics +1609.04161 Optimization and Control +1609.04163 Soft Condensed Matter +1609.04165 Algebraic Geometry +1609.04167 Numerical Analysis +1609.04169 Geophysics +1609.04171 Mesoscale and Nanoscale Physics +1609.04172 Instrumentation and Methods for Astrophysics +1609.04173 Computational Geometry +1609.04174 Probability +1609.04176 Logic in Computer Science +1609.04177 Atomic Physics +1609.04178 Numerical Analysis +1609.04180 Probability +1609.04182 Combinatorics +1609.04183 Strongly Correlated Electrons +1609.04184 Optics +1609.04185 Phenomenology +1609.04186 Computation and Language +1609.04188 Optimization and Control +1609.04190 Complex Variables +1609.04191 Combinatorics +1609.04193 Algebraic Geometry +1609.04194 Complex Variables +1609.04195 Functional Analysis +1609.04196 Multimedia +1609.04197 Networking and Internet Architecture +1609.04198 Algebraic Geometry +1609.04199 Statistical Finance +1609.04201 Rings and Algebras +1609.04202 +1609.04204 Phenomenology +1609.04205 Instrumentation and Methods for Astrophysics +1609.04208 Combinatorics +1609.04209 Analysis of PDEs +1609.04210 Astrophysics of Galaxies +1609.04215 Chemical Physics +1609.04216 Information Theory +1609.04221 Computer Science and Game Theory +1609.04222 Applications +1609.04223 Number Theory +1609.04224 Soft Condensed Matter +1609.04225 +1609.04230 Metric Geometry +1609.04231 Statistics Theory +1609.04233 Programming Languages +1609.04234 Methodology +1609.04237 Statistics Theory +1609.04238 General Physics +1609.04240 Instrumentation and Methods for Astrophysics +1609.04241 Category Theory +1609.04242 General Physics +1609.04244 Mesoscale and Nanoscale Physics +1609.04249 +1609.04250 Materials Science +1609.04251 Optics +1609.04253 Computation and Language +1609.04256 Analysis of PDEs +1609.04257 Commutative Algebra +1609.04259 Symbolic Computation +1609.04260 High Energy Astrophysical Phenomena +1609.04261 Classical Physics +1609.04271 Dynamical Systems +1609.04273 Instrumentation and Methods for Astrophysics +1609.04274 Computational Complexity +1609.04277 Spectral Theory +1609.04281 Information Retrieval +1609.04282 Physics and Society +1609.04283 Astrophysics of Galaxies +1609.04286 Instrumentation and Detectors +1609.04288 Group Theory +1609.04289 Machine Learning +1609.04290 Algebraic Geometry +1609.04291 Differential Geometry +1609.04293 Other Computer Science +1609.04296 Dynamical Systems +1609.04297 Metric Geometry +1609.04298 Physics Education +1609.04299 Combinatorics +1609.04300 Phenomenology +1609.04302 Statistical Mechanics +1609.04304 Phenomenology +1609.04306 Biomolecules +1609.04308 Dynamical Systems +1609.04312 Combinatorics +1609.04313 Classical Analysis and ODEs +1609.04314 Populations and Evolution +1609.04315 Instrumentation and Methods for Astrophysics +1609.04316 Neurons and Cognition +1609.04318 Populations and Evolution +1609.04321 Learning +1609.04322 Differential Geometry +1609.04323 Commutative Algebra +1609.04325 Computation and Language +1609.04327 Cryptography and Security +1609.04329 Computational Physics +1609.04330 Number Theory +1609.04331 Computer Vision and Pattern Recognition +1609.04332 +1609.04335 Representation Theory +1609.04341 Algebraic Geometry +1609.04342 Computational Complexity +1609.04347 Data Structures and Algorithms +1609.04348 +1609.04350 Data Structures and Algorithms +1609.04353 Geometric Topology +1609.04354 +1609.04356 Computer Vision and Pattern Recognition +1609.04361 Analysis of PDEs +1609.04362 Group Theory +1609.04364 Fluid Dynamics +1609.04365 Probability +1609.04372 Instrumentation and Methods for Astrophysics +1609.04373 Social and Information Networks +1609.04376 Social and Information Networks +1609.04379 Solar and Stellar Astrophysics +1609.04383 Applications +1609.04388 Machine Learning +1609.04391 Number Theory +1609.04393 Combinatorics +1609.04397 Theory +math/0209044 Algebraic Geometry +0706.3177 Neurons and Cognition +0707.4675 Materials Science +1002.4569 Cryptography and Security +1011.0189 Combinatorics +1105.0835 Dynamical Systems +1109.1027 Numerical Analysis +1110.2710 Dynamical Systems +1203.3561 Theory +1203.4679 Plasma Physics +1204.3527 General Physics +1209.1544 Statistical Finance +1210.0886 Classical Analysis and ODEs +1211.4799 High Energy Astrophysical Phenomena +1303.5955 Atomic Physics +1303.7451 Metric Geometry +1304.6812 Differential Geometry +1304.7146 Statistical Mechanics +1305.2638 Representation Theory +1307.1329 Solar and Stellar Astrophysics +1308.5105 Earth and Planetary Astrophysics +1309.2819 Probability +1309.4162 Number Theory +1310.8229 Solar and Stellar Astrophysics +1311.1606 Representation Theory +1311.2157 Analysis of PDEs +1312.6012 Dynamical Systems +1401.0225 K-Theory and Homology +1402.4686 Probability +1404.1578 Methodology +1404.2787 Applications +1404.6520 Quantitative Methods +1406.0607 Complex Variables +1406.0970 Probability +1406.6706 Logic +1406.6861 Representation Theory +1407.1337 Fluid Dynamics +1408.0673 Representation Theory +1411.6958 Analysis of PDEs +1412.4972 Artificial Intelligence +1412.5042 K-Theory and Homology +1501.04438 Computational Physics +1502.00320 Statistics Theory +1503.00182 Dynamical Systems +1505.04338 Algebraic Geometry +1505.04748 Symplectic Geometry +1505.07852 Operator Algebras +1507.00765 Metric Geometry +1507.01760 Statistics Theory +1507.02019 Optimization and Control +1507.06167 Rings and Algebras +1508.01598 Number Theory +1508.05838 Classical Analysis and ODEs +1508.07766 Functional Analysis +1509.02574 Physics and Society +1509.06384 Cosmology and Nongalactic Astrophysics +1509.07512 Astrophysics of Galaxies +1509.07997 +1509.08007 Optimization and Control +1509.08421 Algebraic Geometry +1510.01758 Number Theory +1510.04605 Theory +1510.06354 Statistical Mechanics +1510.07026 Systems and Control +1511.02139 Algebraic Geometry +1511.03457 Astrophysics of Galaxies +1511.07796 Earth and Planetary Astrophysics +1511.08245 Combinatorics +1512.03024 Logic in Computer Science +1512.04258 Instrumentation and Detectors +1512.06530 Strongly Correlated Electrons +1512.06537 Classical Analysis and ODEs +1512.06622 Optics +1512.07544 Algebraic Geometry +1512.07617 +1512.08942 Symplectic Geometry +1601.01004 Quantum Gases +1601.01550 Probability +1601.01817 Combinatorics +1601.03076 Fluid Dynamics +1601.03098 Algebraic Topology +1601.04628 Mesoscale and Nanoscale Physics +1601.06339 Analysis of PDEs +1601.07409 Artificial Intelligence +1601.08113 Theory +1602.02262 Learning +1602.02322 +1602.06912 Fluid Dynamics +1602.07010 Probability +1602.08448 Learning +1603.00338 Mesoscale and Nanoscale Physics +1603.01427 Functional Analysis +1603.01596 Strongly Correlated Electrons +1603.02495 Mesoscale and Nanoscale Physics +1603.02639 Metric Geometry +1603.07820 Analysis of PDEs +1603.08021 Cosmology and Nongalactic Astrophysics +1604.01200 Social and Information Networks +1604.03042 Optimization and Control +1604.04554 +1604.06317 Materials Science +1604.06349 Functional Analysis +1604.06435 Earth and Planetary Astrophysics +1604.07160 Sound +1604.07286 Data Structures and Algorithms +1604.08199 +1605.03508 Applications +1605.03566 Chaotic Dynamics +1605.05857 Combinatorics +1605.08185 Digital Libraries +1605.08469 Materials Science +1606.00306 Algebraic Topology +1606.00639 Probability +1606.01126 +1606.01295 Information Theory +1606.02994 Probability +1606.03085 Theory +1606.03325 Portfolio Management +1606.03346 Representation Theory +1606.04040 Classical Analysis and ODEs +1606.04449 Machine Learning +1606.04679 Data Structures and Algorithms +1606.05042 Superconductivity +1606.07152 Analysis of PDEs +1606.07315 Learning +1606.09216 Numerical Analysis +1606.09491 Theory +1607.00076 Optimization and Control +1607.00388 Statistical Mechanics +1607.01178 Theory +1607.02532 Materials Science +1607.03421 Plasma Physics +1607.03502 Information Retrieval +1607.03751 Probability +1607.05043 +1607.06519 Theory +1607.06715 +1607.07877 Cosmology and Nongalactic Astrophysics +1607.08397 Phenomenology +1607.08676 Phenomenology +1608.02546 Computer Science and Game Theory +1608.02877 Analysis of PDEs +1608.03953 Experiment +1608.04148 +1608.04899 Statistical Mechanics +1608.05233 Programming Languages +1608.05475 Phenomenology +1608.07016 Operator Algebras +1608.07194 Strongly Correlated Electrons +1609.00825 Materials Science +1609.01632 +1609.01694 Phenomenology +1609.04006 Differential Geometry +1609.04212 Learning +1609.06704 +1609.06982 Physics and Society +1609.07313 Classical Physics +1609.07856 Soft Condensed Matter +1609.08027 High Energy Astrophysical Phenomena +1609.08288 Soft Condensed Matter +1610.00247 Number Theory +1610.01652 +1610.01739 Quantum Gases +1610.03787 Symplectic Geometry +1610.04080 Robotics +1610.05388 +1610.06626 Adaptation and Self-Organizing Systems +1610.06988 Analysis of PDEs +1610.07870 General Physics +1610.08368 +1610.08744 +1610.08870 +1610.08933 Differential Geometry +1610.09408 +1611.00109 Phenomenology +1611.00523 Strongly Correlated Electrons +1611.01487 Computation and Language +1611.01947 Optimization and Control +1611.02138 Operator Algebras +1611.02354 Information Theory +1611.03696 Algebraic Geometry +1611.03799 Artificial Intelligence +1611.05372 Discrete Mathematics +1611.05637 Complex Variables +1611.05698 Solar and Stellar Astrophysics +1611.05745 Quantum Gases +1611.05778 Computers and Society +1611.05821 Theory +1611.05851 Optics +1611.06593 Optimization and Control +1611.06844 Operator Algebras +1611.07478 Artificial Intelligence +1611.07693 Algebraic Topology +1611.08356 Complex Variables +1611.08480 Machine Learning +1611.08583 Computer Vision and Pattern Recognition +1611.09206 Combinatorics +1611.10209 +1612.00115 +1612.00170 Mesoscale and Nanoscale Physics +1612.00595 Machine Learning +1612.00656 Strongly Correlated Electrons +1612.00767 Machine Learning +1612.00956 Fluid Dynamics +1612.01009 Symplectic Geometry +1612.01275 Statistical Mechanics +1612.01289 Lattice +1612.01436 Networking and Internet Architecture +1612.01922 Computer Vision and Pattern Recognition +1612.02134 Quantum Algebra +1612.02163 Solar and Stellar Astrophysics +1612.02180 Atomic Physics +1612.02227 Differential Geometry +1612.02278 Statistical Mechanics +1612.02282 Cosmology and Nongalactic Astrophysics +1612.02296 Phenomenology +1612.02353 Logic in Computer Science +1612.02424 High Energy Astrophysical Phenomena +1612.02425 Earth and Planetary Astrophysics +1612.02430 High Energy Astrophysical Phenomena +1612.02438 Phenomenology +1612.02439 Mesoscale and Nanoscale Physics +1612.02440 Solar and Stellar Astrophysics +1612.02442 +1612.02444 Optimization and Control +1612.02445 Phenomenology +1612.02446 Space Physics +1612.02447 Phenomenology +1612.02448 +1612.02450 Analysis of PDEs +1612.02451 Classical Physics +1612.02452 Theory +1612.02453 +1612.02455 +1612.02457 Dynamical Systems +1612.02458 Differential Geometry +1612.02459 +1612.02462 Logic in Computer Science +1612.02464 +1612.02465 +1612.02467 Distributed, Parallel, and Cluster Computing +1612.02468 Networking and Internet Architecture +1612.02469 +1612.02471 Classical Physics +1612.02472 Commutative Algebra +1612.02473 Group Theory +1612.02474 Cosmology and Nongalactic Astrophysics +1612.02479 Theory +1612.02480 +1612.02481 Exactly Solvable and Integrable Systems +1612.02483 Computational Geometry +1612.02484 +1612.02485 Databases +1612.02486 Emerging Technologies +1612.02488 +1612.02489 Analysis of PDEs +1612.02490 Learning +1612.02491 Other Quantitative Biology +1612.02492 Mesoscale and Nanoscale Physics +1612.02493 Computer Vision and Pattern Recognition +1612.02494 Mesoscale and Nanoscale Physics +1612.02497 Representation Theory +1612.02498 Computer Vision and Pattern Recognition +1612.02502 Materials Science +1612.02504 +1612.02505 Strongly Correlated Electrons +1612.02507 Solar and Stellar Astrophysics +1612.02508 Algebraic Geometry +1612.02509 Computational Geometry +1612.02512 Methodology +1612.02513 Computer Vision and Pattern Recognition +1612.02514 Materials Science +1612.02515 Materials Science +1612.02516 Machine Learning +1612.02517 Mesoscale and Nanoscale Physics +1612.02518 Algebraic Geometry +1612.02519 Optimization and Control +1612.02521 Computer Vision and Pattern Recognition +1612.02522 Neural and Evolutionary Computing +1612.02523 Optimization and Control +1612.02524 +1612.02525 +1612.02526 Learning +1612.02528 Machine Learning +1612.02530 Optics +1612.02534 Computer Vision and Pattern Recognition +1612.02535 Solar and Stellar Astrophysics +1612.02536 Statistics Theory +1612.02537 Physics and Society +1612.02538 Optimization and Control +1612.02539 +1612.02540 Other Computer Science +1612.02541 Computer Vision and Pattern Recognition +1612.02542 Information Theory +1612.02544 Solar and Stellar Astrophysics +1612.02549 Logic +1612.02550 Phenomenology +1612.02552 +1612.02553 Optics +1612.02555 Atomic Physics +1612.02557 Data Structures and Algorithms +1612.02558 Earth and Planetary Astrophysics +1612.02559 Computer Vision and Pattern Recognition +1612.02566 Atomic Physics +1612.02567 Statistical Finance +1612.02569 Networking and Internet Architecture +1612.02570 Atomic Physics +1612.02571 +1612.02572 Machine Learning +1612.02573 +1612.02574 Information Theory +1612.02575 Computer Vision and Pattern Recognition +1612.02577 Experiment +1612.02578 High Energy Astrophysical Phenomena +1612.02579 Fluid Dynamics +1612.02580 Probability +1612.02581 Algebraic Geometry +1612.02582 Algebraic Geometry +1612.02583 Computer Vision and Pattern Recognition +1612.02584 Mesoscale and Nanoscale Physics +1612.02585 Fluid Dynamics +1612.02586 +1612.02587 Artificial Intelligence +1612.02591 Representation Theory +1612.02592 Dynamical Systems +1612.02594 Analysis of PDEs +1612.02595 Quantum Gases +1612.02596 Analysis of PDEs +1612.02599 Solar and Stellar Astrophysics +1612.02600 +1612.02602 +1612.02603 Networking and Internet Architecture +1612.02604 Differential Geometry +1612.02605 Learning +1612.02606 Robotics +1612.02607 Algebraic Topology +1612.02608 Algebraic Topology +1612.02609 Fluid Dynamics +1612.02610 Solar and Stellar Astrophysics +1612.02614 Mesoscale and Nanoscale Physics +1612.02615 Numerical Analysis +1612.02620 +1612.02621 Phenomenology +1612.02622 Number Theory +1612.02625 Analysis of PDEs +1612.02626 Earth and Planetary Astrophysics +1612.02627 Materials Science +1612.02628 +1612.02629 Disordered Systems and Neural Networks +1612.02631 Computer Vision and Pattern Recognition +1612.02633 Materials Science +1612.02634 Cosmology and Nongalactic Astrophysics +1612.02635 Representation Theory +1612.02636 Cryptography and Security +1612.02637 +1612.02638 +1612.02639 Representation Theory +1612.02640 Distributed, Parallel, and Cluster Computing +1612.02641 Analysis of PDEs +1612.02642 Combinatorics +1612.02643 Combinatorics +1612.02644 +1612.02646 Computer Vision and Pattern Recognition +1612.02648 High Energy Astrophysical Phenomena +1612.02649 Computer Vision and Pattern Recognition +1612.02651 Group Theory +1612.02652 Instrumentation and Methods for Astrophysics +1612.02653 Economics +1612.02654 Economics +1612.02656 Economics +1612.02658 Economics +1612.02660 Artificial Intelligence +1612.02663 Data Structures and Algorithms +1612.02664 General Mathematics +1612.02665 Optics +1612.02666 Statistical Finance +1612.02667 Functional Analysis +1612.02668 Probability +1612.02670 Combinatorics +1612.02671 Combinatorics +1612.02672 Numerical Analysis +1612.02673 Quantum Algebra +1612.02675 Computer Vision and Pattern Recognition +1612.02678 Phenomenology +1612.02679 Analysis of PDEs +1612.02680 +1612.02683 Logic +1612.02685 Information Theory +1612.02686 Computers and Society +1612.02687 Phenomenology +1612.02692 Strongly Correlated Electrons +1612.02693 Earth and Planetary Astrophysics +1612.02694 Algebraic Topology +1612.02695 Neural and Evolutionary Computing +1612.02696 Discrete Mathematics +1612.02698 Probability +1612.02699 Computer Vision and Pattern Recognition +1612.02700 Phenomenology +1612.02701 Databases +1612.02702 +1612.02703 Computation and Language +1612.02704 Analysis of PDEs +1612.02706 Computation and Language +1612.02708 Theory +1612.02709 Computer Vision and Pattern Recognition +1612.02711 Mesoscale and Nanoscale Physics +1612.02713 Superconductivity +1612.02716 Mesoscale and Nanoscale Physics +1612.02717 Combinatorics +1612.02718 Phenomenology +1612.02719 Combinatorics +1612.02722 Differential Geometry +1612.02724 Materials Science +1612.02726 Exactly Solvable and Integrable Systems +1612.02729 Algebraic Geometry +1612.02732 Networking and Internet Architecture +1612.02734 Learning +1612.02735 Operator Algebras +1612.02736 Numerical Analysis +1612.02737 Algebraic Topology +1612.02739 Robotics +1612.02742 Computer Vision and Pattern Recognition +1612.02744 Subcellular Processes +1612.02745 Analysis of PDEs +1612.02746 Instrumentation and Detectors +1612.02750 Lattice +1612.02751 Machine Learning +1612.02754 Dynamical Systems +1612.02755 Materials Science +1612.02756 Numerical Analysis +1612.02757 Artificial Intelligence +1612.02760 Dynamical Systems +1612.02761 Computer Vision and Pattern Recognition +1612.02763 Dynamical Systems +1612.02764 High Energy Astrophysical Phenomena +1612.02765 High Energy Astrophysical Phenomena +1612.02766 Computer Vision and Pattern Recognition +1612.02767 +1612.02771 Phenomenology +1612.02772 Theory +1612.02773 Algebraic Topology +1612.02775 Analysis of PDEs +1612.02777 Numerical Analysis +1612.02779 Soft Condensed Matter +1612.02780 Learning +1612.02781 Strongly Correlated Electrons +1612.02782 +1612.02783 Classical Analysis and ODEs +1612.02784 Optimization and Control +1612.02786 Atomic Physics +1612.02788 Data Structures and Algorithms +1612.02789 Information Theory +1612.02791 Operator Algebras +1612.02792 +1612.02794 Statistics Theory +1612.02795 Optimization and Control +1612.02796 Mesoscale and Nanoscale Physics +1612.02797 Theory +1612.02799 Geometric Topology +1612.02800 Probability +1612.02801 Computation and Language +1612.02807 Neurons and Cognition +1612.02808 Computer Vision and Pattern Recognition +1612.02811 Numerical Analysis +1612.02812 Applications +1612.02813 Phenomenology +1612.02816 Logic in Computer Science +cond-mat/0502041 Strongly Correlated Electrons +0807.0919 +0904.2509 High Energy Astrophysical Phenomena +1002.3980 High Energy Astrophysical Phenomena +1002.4345 Representation Theory +1003.4959 High Energy Astrophysical Phenomena +1012.4401 Information Theory +1112.1374 Discrete Mathematics +1208.4334 Number Theory +1208.5421 Probability +1211.0853 Probability +1211.1877 Category Theory +1307.6470 Classical Analysis and ODEs +1309.2708 Representation Theory +1309.5865 Theory +1309.7187 Social and Information Networks +1311.1577 Functional Analysis +1402.3266 Strongly Correlated Electrons +1403.2511 Analysis of PDEs +1405.6323 K-Theory and Homology +1406.2561 Quantum Algebra +1406.3995 Functional Analysis +1406.7402 Logic +1407.6313 Materials Science +1408.0249 Materials Science +1408.1917 Group Theory +1408.3556 Biological Physics +1409.3113 Probability +1409.3292 Soft Condensed Matter +1410.0198 Programming Languages +1410.0547 Neural and Evolutionary Computing +1410.1468 Differential Geometry +1410.2727 Probability +1410.3924 Probability +1410.4396 +1411.6748 Phenomenology +1411.7595 +1412.3502 Methodology +1412.8348 Differential Geometry +1501.01611 Geometric Topology +1501.03478 +1502.02022 Atomic and Molecular Clusters +1502.06367 Geometric Topology +1503.01919 Quantitative Methods +1503.05193 Theory +1503.05238 Optimization and Control +1503.06854 Information Theory +1503.08705 Rings and Algebras +1504.00773 High Energy Astrophysical Phenomena +1504.02395 +1504.02530 Information Theory +1504.08080 Applications +1505.00439 Differential Geometry +1505.04122 Astrophysics of Galaxies +1505.04577 +1505.04584 +1505.06514 Classical Analysis and ODEs +1506.00276 Dynamical Systems +1506.01796 Soft Condensed Matter +1506.02846 Materials Science +1506.03198 Statistics Theory +1506.03727 Geometric Topology +1506.04047 Computer Science and Game Theory +1506.06583 +1506.07270 Probability +1507.01247 Rings and Algebras +1507.01590 Phenomenology +1507.02136 Materials Science +1507.04094 Information Theory +1507.04351 Cosmology and Nongalactic Astrophysics +1507.04621 Optics +1507.04888 Learning +1507.05756 +1507.07849 +1507.08625 Phenomenology +1508.00119 Numerical Analysis +1508.00333 Analysis of PDEs +1508.00451 Machine Learning +1508.02039 Phenomenology +1508.04577 +1508.05831 Classical Analysis and ODEs +1508.06862 Classical Analysis and ODEs +1508.07585 Optics +1508.07796 +1509.00805 High Energy Astrophysical Phenomena +1509.02118 +1509.02612 Commutative Algebra +1509.03232 Phenomenology +1509.03334 +1509.03604 Software Engineering +1509.05614 Optimization and Control +1509.07847 Theory +1509.08114 Analysis of PDEs +1509.08983 Cosmology and Nongalactic Astrophysics +1510.00385 Classical Analysis and ODEs +1510.00778 Instrumentation and Detectors +1510.01116 Social and Information Networks +1510.03064 Mesoscale and Nanoscale Physics +1510.04410 Mesoscale and Nanoscale Physics +1510.04423 +1510.06160 +1510.06931 Materials Science +1510.08621 Analysis of PDEs +1510.08718 Mesoscale and Nanoscale Physics +1510.08931 Biological Physics +1511.04037 Mesoscale and Nanoscale Physics +1511.05253 +1511.05766 +1511.07938 Learning +1511.08207 Cosmology and Nongalactic Astrophysics +1511.09252 High Energy Astrophysical Phenomena +1512.00490 Information Theory +1512.02421 +1512.02750 Analysis of PDEs +1512.02895 Computer Vision and Pattern Recognition +1512.04947 Statistical Mechanics +1512.04950 Cosmology and Nongalactic Astrophysics +1512.05402 Optimization and Control +1512.06354 Representation Theory +1512.06940 Dynamical Systems +1512.07194 +1512.08189 Networking and Internet Architecture +1512.09095 +1512.09190 Superconductivity +1601.00597 Quantitative Methods +1601.00956 Metric Geometry +1601.01181 +1601.02663 Materials Science +1601.03152 Complex Variables +1601.03621 Mesoscale and Nanoscale Physics +1601.04295 Combinatorics +1601.06296 Computers and Society +1601.07352 Distributed, Parallel, and Cluster Computing +1601.08161 +1602.01824 Mesoscale and Nanoscale Physics +1602.02321 Materials Science +1602.03934 General Literature +1602.04767 +1602.05160 Soft Condensed Matter +1602.05818 Strongly Correlated Electrons +1602.06987 +1602.07174 Medical Physics +1602.08024 Materials Science +1602.08136 Optics +1602.08339 General Physics +1603.00039 Theory +1603.01172 Analysis of PDEs +1603.01464 +1603.01520 Programming Languages +1603.01545 Optimization and Control +1603.01657 Accelerator Physics +1603.01680 Materials Science +1603.01883 Combinatorics +1603.01988 Complex Variables +1603.02788 Materials Science +1603.02993 Optics +1603.03045 Mesoscale and Nanoscale Physics +1603.03086 Cryptography and Security +1603.03123 Earth and Planetary Astrophysics +1603.03168 Earth and Planetary Astrophysics +1603.03239 Soft Condensed Matter +1603.03404 Distributed, Parallel, and Cluster Computing +1603.03427 High Energy Astrophysical Phenomena +1603.03429 +1603.03436 +1603.03451 Accelerator Physics +1603.03453 Differential Geometry +1603.03454 Materials Science +1603.03458 Risk Management +1603.03459 Superconductivity +1603.03460 Fluid Dynamics +1603.03461 Optimization and Control +1603.03463 Computational Geometry +1603.03464 Information Theory +1603.03466 Classical Analysis and ODEs +1603.03467 Classical Analysis and ODEs +1603.03468 Classical Analysis and ODEs +1603.03470 Lattice +1603.03471 +1603.03472 Rings and Algebras +1603.03473 Classical Analysis and ODEs +1603.03475 Logic in Computer Science +1603.03477 Optimization and Control +1603.03478 Physics Education +1603.03482 Multimedia +1603.03488 Programming Languages +1603.03495 Emerging Technologies +1603.03496 Statistics Theory +1603.03497 Astrophysics of Galaxies +1603.03501 Networking and Internet Architecture +1603.03502 Distributed, Parallel, and Cluster Computing +1603.03503 Dynamical Systems +1603.03508 History and Overview +1603.03509 Logic +1603.03511 Artificial Intelligence +1603.03514 Numerical Analysis +1603.03516 Statistics Theory +1603.03520 Information Theory +1603.03522 Analysis of PDEs +1603.03523 Representation Theory +1603.03525 Strongly Correlated Electrons +1603.03527 Dynamical Systems +1603.03530 Emerging Technologies +1603.03531 Strongly Correlated Electrons +1603.03532 Numerical Analysis +1603.03533 Programming Languages +1603.03534 +1603.03535 Programming Languages +1603.03536 Programming Languages +1603.03541 Computer Vision and Pattern Recognition +1603.03547 Classical Analysis and ODEs +1603.03552 Adaptation and Self-Organizing Systems +1603.03553 Algebraic Geometry +1603.03554 Number Theory +1603.03556 Dynamical Systems +1603.03562 Solar and Stellar Astrophysics +1603.03563 Plasma Physics +1603.03565 Symbolic Computation +1603.03569 Probability +1603.03571 Probability +1603.03572 Plasma Physics +1603.03574 Analysis of PDEs +1603.03575 Analysis of PDEs +1603.03580 Physics and Society +1603.03582 Mesoscale and Nanoscale Physics +1603.03583 Algebraic Geometry +1603.03584 Mesoscale and Nanoscale Physics +1603.03585 Combinatorics +1603.03586 Numerical Analysis +1603.03587 Representation Theory +1603.03590 Computer Vision and Pattern Recognition +1603.03593 Applications +1603.03597 Analysis of PDEs +1603.03599 Software Engineering +1603.03600 Information Theory +1603.03603 Phenomenology +1603.03604 Number Theory +1603.03609 Dynamical Systems +1603.03610 Formal Languages and Automata Theory +1603.03614 Combinatorics +1603.03618 Rings and Algebras +1603.03619 Probability +1603.03621 Category Theory +1603.03622 Functional Analysis +1603.03625 Earth and Planetary Astrophysics +1603.03627 Learning +1603.03630 Atomic Physics +1603.03634 Optimization and Control +1603.03635 Computers and Society +1603.03641 Analysis of PDEs +1603.03642 Probability +1603.03643 Complex Variables +1603.03645 Networking and Internet Architecture +1603.03647 Analysis of PDEs +1603.03649 K-Theory and Homology +1603.03652 Fluid Dynamics +1603.03653 Combinatorics +1603.03654 Physics and Society +1603.03657 Learning +1603.03660 Phenomenology +1603.03661 General Topology +1603.03662 +1603.03664 Fluid Dynamics +1603.03667 General Mathematics +1603.03669 Computer Vision and Pattern Recognition +1603.03674 Astrophysics of Galaxies +1603.03683 Optimization and Control +1603.03693 Probability +1603.03695 Information Theory +1603.03697 Information Theory +1603.03699 +1603.03700 Number Theory +1603.03702 Group Theory +1603.03703 Learning +1603.03704 Materials Science +1603.03710 Cryptography and Security +1603.03714 Learning +1603.03715 Geometric Topology +1603.03716 Materials Science +1603.03718 Mesoscale and Nanoscale Physics +1603.03719 Methodology +1603.03721 Analysis of PDEs +1603.03722 Mesoscale and Nanoscale Physics +1603.03723 +1603.03724 Machine Learning +1603.03725 Networking and Internet Architecture +1603.03726 +1603.03727 Programming Languages +1603.03728 Geometric Topology +1603.03729 Artificial Intelligence +1603.03732 Computers and Society +1603.03733 Methodology +1603.03735 Mesoscale and Nanoscale Physics +1603.03740 Materials Science +1603.03745 Analysis of PDEs +1603.03746 Materials Science +1603.03750 Mesoscale and Nanoscale Physics +1603.03752 Populations and Evolution +1603.03753 Number Theory +1603.03762 Classical Analysis and ODEs +0704.3099 Classical Analysis and ODEs +0707.3476 Number Theory +0801.0001 Number Theory +0804.2234 Group Theory +0805.1201 +0807.2073 Number Theory +0905.3144 Number Theory +0910.2825 Rings and Algebras +1007.2547 Geometric Topology +1007.4081 +1010.1273 +1010.1488 +1010.4732 Rings and Algebras +1011.2243 Theory +1106.3890 Algebraic Geometry +1109.1356 Numerical Analysis +1109.3963 Algebraic Topology +1109.4294 Statistical Mechanics +1109.6783 Analysis of PDEs +1110.2956 K-Theory and Homology +1111.0754 Algebraic Topology +1112.1446 +1112.5782 Combinatorics +1202.2056 General Topology +1202.2399 Plasma Physics +1206.1132 General Topology +1208.1174 Methodology +1208.1182 General Topology +1210.0726 Differential Geometry +1210.4434 Complex Variables +1305.2851 Differential Geometry +1305.2853 Differential Geometry +1305.2854 Differential Geometry +1305.2856 Differential Geometry +1305.2857 Differential Geometry +1305.2859 Differential Geometry +1305.2863 Differential Geometry +1307.0449 Adaptation and Self-Organizing Systems +1308.3403 Differential Geometry +1309.1023 Combinatorics +1310.7513 Probability +1311.1040 Machine Learning +1311.2002 Probability +1311.6966 Geometric Topology +1401.2351 Materials Science +1402.0823 +1402.2437 Data Structures and Algorithms +1403.2029 Geometric Topology +1403.2463 Theory +1403.3603 Algebraic Topology +1404.1147 Computation +1404.2520 Information Theory +1404.6263 Rings and Algebras +1404.7589 Representation Theory +1405.1627 Number Theory +1406.5044 Theory +1407.3982 Algebraic Geometry +1407.5167 Number Theory +1408.2586 Number Theory +1408.6102 Representation Theory +1409.0345 High Energy Astrophysical Phenomena +1409.3289 Optimization and Control +1410.2568 Data Analysis, Statistics and Probability +1410.3302 Discrete Mathematics +1410.8366 Information Theory +1411.3406 Numerical Analysis +1411.7018 Numerical Analysis +1411.7878 +1412.0753 Methodology +1412.1769 Metric Geometry +1412.3100 Learning +1412.3809 Mesoscale and Nanoscale Physics +1412.6787 Computational Complexity +1501.01373 General Physics +1501.05037 Metric Geometry +1501.06734 General Topology +1501.07196 Computation +1501.07558 Complex Variables +1502.00048 Astrophysics of Galaxies +1502.06440 Computation +1503.04192 Cosmology and Nongalactic Astrophysics +1503.07202 Functional Analysis +1503.08006 Geometric Topology +1504.01378 Statistical Mechanics +1504.03074 Pricing of Securities +1505.03331 Information Theory +1505.03346 Information Theory +1505.03758 Information Theory +1505.03960 Classical Analysis and ODEs +1505.05731 Numerical Analysis +1506.01560 Fluid Dynamics +1506.01642 Functional Analysis +1506.06984 Atmospheric and Oceanic Physics +1506.07008 Representation Theory +1506.07808 Theory +1507.00460 History and Philosophy of Physics +1507.00847 Differential Geometry +1507.02378 Data Structures and Algorithms +1507.04877 Theory +1507.06009 Commutative Algebra +1507.08110 Information Theory +1507.08111 Information Theory +1507.08143 Phenomenology +1507.08961 Numerical Analysis +1508.00853 Materials Science +1508.04503 Differential Geometry +1508.04606 Systems and Control +1508.07109 Combinatorics +1509.00526 Representation Theory +1509.01572 +1509.03803 Combinatorics +1509.04193 Probability +1509.04938 Plasma Physics +1509.06817 Phenomenology +1509.08656 Materials Science +1509.08897 Theory +1510.02879 Artificial Intelligence +1510.03670 Commutative Algebra +1510.03991 Representation Theory +1510.05651 Cosmology and Nongalactic Astrophysics +1510.07097 Algebraic Geometry +1510.07473 Classical Analysis and ODEs +1511.01116 Optics +1511.02119 Cryptography and Security +1511.02265 +1511.03324 +1511.04617 Mesoscale and Nanoscale Physics +1511.04794 Information Theory +1511.06052 Computation and Language +1511.06761 Astrophysics of Galaxies +1511.08782 Theory +1511.08970 Numerical Analysis +1512.02325 Computer Vision and Pattern Recognition +1512.03991 Instrumentation and Detectors +1512.04066 Category Theory +1512.05129 Differential Geometry +1512.06044 Algebraic Geometry +1512.08709 Operator Algebras +1512.08829 Robotics +1601.00025 Computer Vision and Pattern Recognition +1601.00044 Numerical Analysis +1601.00460 +1601.00581 Representation Theory +1601.02081 Mesoscale and Nanoscale Physics +1601.06952 Geometric Topology +1601.06975 Representation Theory +1602.00065 Probability +1602.00081 Soft Condensed Matter +1602.02176 Methodology +1602.02627 +1602.03018 +1602.03610 Differential Geometry +1602.03963 Artificial Intelligence +1602.04314 Representation Theory +1602.05101 Representation Theory +1602.07063 Human-Computer Interaction +1602.08392 Algebraic Geometry +1603.00702 Algebraic Geometry +1603.00811 Mesoscale and Nanoscale Physics +1603.00927 Mesoscale and Nanoscale Physics +1603.01413 +1603.04383 +1603.05421 Materials Science +1603.05533 Optimization and Control +1603.05670 Computation and Language +1603.07456 Probability +1603.07844 Analysis of PDEs +1603.07912 Number Theory +1603.08722 Combinatorics +1603.09447 Computational Physics +1604.00758 Physics and Society +1604.01005 Representation Theory +1604.02056 Astrophysics of Galaxies +1604.03019 Neurons and Cognition +1604.03655 Data Structures and Algorithms +1604.05648 Probability +1604.06602 Learning +1604.07728 Physics and Society +1604.08168 Physics and Society +1604.08342 Data Structures and Algorithms +1605.00725 Computational Physics +1605.01841 Theory +1605.02502 Quantum Gases +1605.02854 Metric Geometry +1605.02870 Commutative Algebra +1605.03024 Differential Geometry +1605.03356 Information Theory +1605.03601 Disordered Systems and Neural Networks +1605.06459 +1605.06498 +1605.07110 Machine Learning +1605.08493 +1605.08659 Geophysics +1605.09178 Strongly Correlated Electrons +1606.00272 K-Theory and Homology +1606.00517 +1606.01303 Mesoscale and Nanoscale Physics +1606.01768 Information Theory +1606.03104 Theory +1606.03929 Soft Condensed Matter +1606.04454 Fluid Dynamics +1606.04602 Statistical Mechanics +1606.05703 Computer Vision and Pattern Recognition +1606.06068 Probability +1606.06663 Combinatorics +1606.06718 Logic +1606.06982 Algebraic Geometry +1606.07310 Distributed, Parallel, and Cluster Computing +1606.08956 Phenomenology +1606.09202 Learning +1606.09598 +1607.00816 Information Theory +1607.01798 Phenomenology +1607.01901 Mesoscale and Nanoscale Physics +1607.01909 Combinatorics +1607.02094 Cosmology and Nongalactic Astrophysics +1607.03187 Algebraic Geometry +1607.03409 Mesoscale and Nanoscale Physics +1607.03987 Phenomenology +1607.04464 Mesoscale and Nanoscale Physics +1607.04917 Learning +1607.04992 Strongly Correlated Electrons +1607.05115 Strongly Correlated Electrons +1607.05349 Mesoscale and Nanoscale Physics +1607.05710 Physics and Society +1607.06702 Atmospheric and Oceanic Physics +1607.07232 Differential Geometry +1607.07331 +1607.08333 +1607.08730 +1607.08820 Instrumentation and Methods for Astrophysics +1608.00420 Phenomenology +1608.00779 Materials Science +1608.00795 Number Theory +1608.00899 Plasma Physics +1608.01504 Algebraic Geometry +1608.01548 +1608.01590 Optimization and Control +1608.02203 +1608.03368 Data Structures and Algorithms +1608.04112 Computational Complexity +1608.04707 +1608.05419 Disordered Systems and Neural Networks +1608.05828 Soft Condensed Matter +1608.06007 Social and Information Networks +1608.06417 Information Theory +1608.07112 Astrophysics of Galaxies +1608.07282 Phenomenology +1608.07615 Materials Science +1608.07623 Systems and Control +1608.07842 Number Theory +1608.08838 Phenomenology +1609.00307 Optics +1609.02502 Computational Physics +1609.03602 Geometric Topology +1609.03637 Experiment +1609.04505 Atomic Physics +1609.05292 Materials Science +1609.06501 Analysis of PDEs +1609.07670 Combinatorics +1609.07889 Optics +1609.08562 +1609.08812 Strongly Correlated Electrons +1609.08943 Solar and Stellar Astrophysics +1609.09585 Discrete Mathematics +1609.09610 Systems and Control +1610.00709 Quantum Gases +1610.01263 Probability +1610.01309 Chemical Physics +1610.02435 Quantum Gases +1610.02463 +1610.03046 Geometric Topology +1610.04747 Disordered Systems and Neural Networks +1610.04779 Distributed, Parallel, and Cluster Computing +1610.04861 Computer Vision and Pattern Recognition +1610.05014 Phenomenology +1610.05382 Phenomenology +1610.06165 Materials Science +1610.06818 Phenomenology +1610.07257 Chaotic Dynamics +1610.07591 Mesoscale and Nanoscale Physics +1610.08132 Plasma Physics +1610.08244 Methodology +1610.08900 Phenomenology +1611.00063 Plasma Physics +1611.00118 High Energy Astrophysical Phenomena +1611.00283 Cosmology and Nongalactic Astrophysics +1611.00492 Combinatorics +1611.00594 Atomic Physics +1611.00677 Theory +1611.00818 Functional Analysis +1611.01260 Computer Vision and Pattern Recognition +1611.01699 +1611.01773 Computer Vision and Pattern Recognition +1611.02179 Theory +1611.02417 +1611.02664 +1611.02717 Distributed, Parallel, and Cluster Computing +1611.02848 Numerical Analysis +1611.02892 Strongly Correlated Electrons +1611.02991 +1611.03974 Other Statistics +1611.04567 Probability +1611.05066 Systems and Control +1611.05348 Lattice +1611.05631 Algebraic Geometry +1611.06438 General Topology +1611.06510 +1611.07536 Strongly Correlated Electrons +1611.07539 Chaotic Dynamics +1611.08222 Systems and Control +1611.08836 Differential Geometry +1611.09551 Soft Condensed Matter +1611.09605 Phenomenology +1612.00098 Other Quantitative Biology +1612.00338 Computer Vision and Pattern Recognition +1612.00495 Astrophysics of Galaxies +1612.01142 Superconductivity +1612.01204 Solar and Stellar Astrophysics +1612.01297 Probability +1612.01814 Systems and Control +1612.02114 +1612.02139 Phenomenology +1612.02256 Soft Condensed Matter +1612.02294 Phenomenology +1612.02311 Experiment +1612.02350 Information Retrieval +1612.02875 Methodology +1612.02931 Fluid Dynamics +1612.02935 Analysis of PDEs +1612.03259 +1612.03828 Quantitative Methods +1612.04045 Strongly Correlated Electrons +1612.04220 Analysis of PDEs +1612.04306 Dynamical Systems +1612.04375 Phenomenology +1612.05310 Computation and Language +1612.05550 Representation Theory +1612.05564 Dynamical Systems +1612.05919 Information Theory +1612.06382 Materials Science +1612.06620 Strongly Correlated Electrons +1612.06974 Algebraic Geometry +1612.07043 High Energy Astrophysical Phenomena +1612.07087 Theory +1612.07437 Quantum Gases +1612.07552 Combinatorics +1612.07599 Theory +1612.07630 Computers and Society +1612.07806 Information Theory +1612.07822 Geometric Topology +1612.07892 High Energy Astrophysical Phenomena +1612.07976 Learning +1612.08111 Economics +1612.08118 Computer Science and Game Theory +1612.08148 +1612.08228 Digital Libraries +1612.08345 Information Theory +1612.08367 Dynamical Systems +1612.08382 Exactly Solvable and Integrable Systems +1612.08425 Machine Learning +1612.08475 Algebraic Geometry +1612.08513 Theory +1612.08528 Optics +1612.08546 Probability +1612.08649 Phenomenology +1612.08742 Other Quantitative Biology +1612.08743 Medical Physics +1612.08744 +1612.08745 Astrophysics of Galaxies +1612.08748 Strongly Correlated Electrons +1612.08749 Soft Condensed Matter +1612.08750 Optics +1612.08751 Accelerator Physics +1612.08752 Theory +1612.08753 Soft Condensed Matter +1612.08754 Soft Condensed Matter +1612.08755 Dynamical Systems +1612.08756 Soft Condensed Matter +1612.08757 Analysis of PDEs +1612.08758 Statistical Mechanics +1612.08759 Quantitative Methods +1612.08761 Computational Physics +1612.08762 Dynamical Systems +1612.08763 Molecular Networks +1612.08764 Atomic and Molecular Clusters +1612.08765 Dynamical Systems +1612.08766 Analysis of PDEs +1612.08767 Mathematical Finance +1612.08772 Functional Analysis +1612.08773 Analysis of PDEs +1612.08774 Analysis of PDEs +1612.08776 Methodology +1612.08778 Networking and Internet Architecture +1612.08779 +1612.08780 Computer Vision and Pattern Recognition +1612.08782 Materials Science +1612.08783 Number Theory +1612.08784 Cosmology and Nongalactic Astrophysics +1612.08785 Information Theory +1612.08786 Optimization and Control +1612.08787 Space Physics +1612.08788 +1612.08789 Learning +1612.08791 +1612.08794 Soft Condensed Matter +1612.08795 Learning +1612.08796 Computer Vision and Pattern Recognition +1612.08798 Quantum Gases +1612.08802 Combinatorics +1612.08803 Classical Analysis and ODEs +1612.08804 Statistics Theory +1612.08805 Materials Science +1612.08806 Accelerator Physics +1612.08807 Algebraic Geometry +1612.08808 Medical Physics +1612.08809 +1612.08811 Software Engineering +1612.08812 +1612.08813 Software Engineering +1612.08814 Biological Physics +1612.08815 Theory +1612.08819 Functional Analysis +1612.08820 Computer Vision and Pattern Recognition +1612.08821 Computer Science and Game Theory +1612.08823 Information Theory +1612.08824 Classical Physics +1612.08825 Computer Vision and Pattern Recognition +1612.08827 Theory +1612.08828 Discrete Mathematics +1612.08829 Functional Analysis +1612.08831 Algebraic Geometry +1612.08832 History and Overview +1612.08834 Materials Science +1612.08835 Databases +1612.08836 Plasma Physics +1612.08837 Information Theory +1612.08838 General Topology +1612.08840 Algebraic Topology +1612.08841 Strongly Correlated Electrons +1612.08842 Optics +1612.08844 +1612.08845 Logic in Computer Science +1612.08846 Earth and Planetary Astrophysics +1612.08848 Complex Variables +1612.08849 Earth and Planetary Astrophysics +1612.08850 Networking and Internet Architecture +1612.08851 Analysis of PDEs +1612.08852 Astrophysics of Galaxies +1612.08853 Differential Geometry +1612.08854 Mesoscale and Nanoscale Physics +1612.08855 Combinatorics +1612.08856 Combinatorics +1612.08858 Theory +1612.08859 Statistics Theory +1612.08860 Earth and Planetary Astrophysics +1612.08861 Social and Information Networks +1612.08862 Astrophysics of Galaxies +1612.08863 Phenomenology +1612.08864 +1612.08865 Number Theory +1612.08866 Numerical Analysis +1612.08869 Strongly Correlated Electrons +1612.08871 Computer Vision and Pattern Recognition +1612.08874 +1612.08875 Machine Learning +1612.08876 Statistical Mechanics +1612.08877 Instrumentation and Methods for Astrophysics +1612.08878 Phenomenology +1612.08879 Computer Vision and Pattern Recognition +1612.08881 Classical Analysis and ODEs +1612.08883 +1612.08884 Social and Information Networks +1612.08885 Soft Condensed Matter +1612.08886 Physics and Society +1612.08887 Differential Geometry +1612.08888 Computer Science and Game Theory +1612.08889 Materials Science +1612.08890 Solar and Stellar Astrophysics +1612.08891 Representation Theory +1612.08892 Functional Analysis +1612.08894 Computer Vision and Pattern Recognition +1612.08896 Mesoscale and Nanoscale Physics +1612.08897 +1612.08900 High Energy Astrophysical Phenomena +1612.08902 Algebraic Geometry +1612.08903 Representation Theory +1612.08904 Combinatorics +1612.08906 Materials Science +1612.08908 History and Philosophy of Physics +1612.08909 Mesoscale and Nanoscale Physics +1612.08910 Networking and Internet Architecture +1612.08911 Soft Condensed Matter +1612.08912 +1612.08913 Social and Information Networks +1612.08914 Networking and Internet Architecture +1612.08915 Machine Learning +1612.08916 Theory +1612.08917 +1612.08918 Combinatorics +1612.08919 Astrophysics of Galaxies +1612.08920 Quantum Gases +1612.08921 Analysis of PDEs +1612.08922 Instrumentation and Methods for Astrophysics +1612.08924 Materials Science +1612.08925 +1612.08927 Computer Vision and Pattern Recognition +1612.08928 Theory +1612.08931 Accelerator Physics +1612.08932 Machine Learning +1612.08933 Phenomenology +1612.08936 Computer Vision and Pattern Recognition +1612.08937 Space Physics +1612.08939 Dynamical Systems +1612.08940 Combinatorics +1612.08941 Rings and Algebras +1612.08942 Group Theory +1612.08943 Phenomenology +1612.08944 Group Theory +1612.08945 Optics +1612.08946 Classical Analysis and ODEs +1612.08947 Physics Education +1612.08948 Cell Behavior +1612.08949 Physics and Society +1612.08950 Phenomenology +1612.08952 Biological Physics +1612.08953 Theory +1612.08955 Analysis of PDEs +1612.08956 Theory +1612.08957 High Energy Astrophysical Phenomena +1612.08958 +1612.08959 +1612.08960 Accelerator Physics +1612.08963 +1612.08964 Analysis of PDEs +1612.08965 Computational Physics +1612.08967 Artificial Intelligence +1612.08970 Systems and Control +1612.08972 +1612.08973 Space Physics +1612.08974 Computation +1612.08975 +1612.08977 Accelerator Physics +1612.08979 Operator Algebras +1612.08980 Quantum Gases +1612.08981 Symplectic Geometry +1612.08982 Numerical Analysis +1612.08983 +1612.08985 Theory +1612.08986 Earth and Planetary Astrophysics +1612.08987 Theory +1612.08989 Computation and Language +1612.08992 +1612.08993 Optics +1612.08994 Computation and Language +1612.08995 Biological Physics +1612.08997 Solar and Stellar Astrophysics +1612.09000 +1612.09001 Distributed, Parallel, and Cluster Computing +1612.09002 Materials Science +1612.09003 Combinatorics +1612.09004 Statistics Theory +1612.09006 Computer Science and Game Theory +1612.09007 Machine Learning +1612.09008 Computational Physics +1612.09009 Fluid Dynamics +1612.09010 Algebraic Geometry +1612.09011 Materials Science +1612.09013 Solar and Stellar Astrophysics +1612.09014 Representation Theory +1612.09015 Soft Condensed Matter +1612.09017 Classical Physics +1612.09018 Accelerator Physics +1612.09019 Mesoscale and Nanoscale Physics +1612.09020 Algebraic Geometry +1612.09021 Materials Science +1612.09022 Neural and Evolutionary Computing +1612.09023 Cosmology and Nongalactic Astrophysics +1612.09024 Differential Geometry +1612.09025 Probability +1612.09026 Differential Geometry +1612.09027 Information Theory +1612.09028 Quantum Gases +1612.09029 Distributed, Parallel, and Cluster Computing +1612.09031 Optics +1612.09035 Instrumentation and Detectors +1612.09036 Rings and Algebras +1612.09037 Strongly Correlated Electrons +1612.09038 Cosmology and Nongalactic Astrophysics +1612.09039 Exactly Solvable and Integrable Systems +1612.09040 Classical Analysis and ODEs +1612.09043 Phenomenology +1612.09044 Probability +1612.09045 Probability +1612.09046 Quantum Gases +1612.09050 Phenomenology +1612.09052 Soft Condensed Matter +1612.09053 Superconductivity +1612.09054 Number Theory +1612.09055 Functional Analysis +1612.09057 Learning +1612.09058 High Energy Astrophysical Phenomena +1612.09059 Cryptography and Security +1612.09062 Information Retrieval +1612.09064 Superconductivity +1612.09065 Software Engineering +1612.09066 Information Theory +1612.09068 Rings and Algebras +1612.09070 Algebraic Geometry +1612.09073 Analysis of PDEs +1612.09075 Phenomenology +1612.09076 Learning +1612.09078 Instrumentation and Methods for Astrophysics +1612.09080 Statistical Mechanics +1612.09081 Lattice +1612.09082 Probability +1612.09083 Data Structures and Algorithms +1612.09084 Statistical Mechanics +1612.09085 Strongly Correlated Electrons +1612.09087 Computational Engineering, Finance, and Science +1612.09088 Representation Theory +1612.09090 +1612.09091 Lattice +1612.09092 Analysis of PDEs +1612.09093 Discrete Mathematics +1612.09095 Analysis of PDEs +1612.09096 Strongly Correlated Electrons +1612.09097 Numerical Analysis +1612.09098 Theory +1612.09100 Representation Theory +1612.09102 Mesoscale and Nanoscale Physics +1612.09103 Probability +1612.09104 Algebraic Geometry +1612.09105 Systems and Control +1612.09107 Representation Theory +1612.09108 Number Theory +1612.09112 Quantum Algebra +1612.09113 Computation and Language +1612.09114 +1612.09115 Materials Science +1612.09117 Analysis of PDEs +1612.09118 Solar and Stellar Astrophysics +1612.09119 +1612.09121 Methodology +1612.09122 Learning +1612.09123 Economics +1612.09124 Exactly Solvable and Integrable Systems +1612.09125 Differential Geometry +1612.09126 Probability +1612.09127 Mesoscale and Nanoscale Physics +1612.09129 Instrumentation and Methods for Astrophysics +1612.09130 Statistical Mechanics +1612.09131 Cosmology and Nongalactic Astrophysics +1612.09133 Materials Science +1612.09134 Computer Vision and Pattern Recognition +1612.09135 Theory +1612.09136 Materials Science +1612.09137 Phenomenology +1612.09138 +1612.09139 High Energy Astrophysical Phenomena +1612.09140 Instrumentation and Detectors +1612.09141 Representation Theory +1612.09142 Dynamical Systems +1612.09143 Combinatorics +1612.09144 Numerical Analysis +1612.09145 Data Structures and Algorithms +1612.09148 Other Condensed Matter +1612.09149 Strongly Correlated Electrons +1612.09151 +1612.09152 Mathematical Finance +1612.09153 Optics +1612.09154 Differential Geometry +1612.09155 Databases +1612.09156 Algebraic Geometry +1612.09157 +1612.09158 Systems and Control +1612.09159 Experiment +1612.09161 Computer Vision and Pattern Recognition +1612.09162 Computation +1612.09164 Representation Theory +1612.09165 Phenomenology +1612.09167 Probability +1612.09168 Data Structures and Algorithms +1612.09169 Information Theory +1612.09170 +1612.09171 Optimization and Control +1612.09172 Theory +1612.09173 Representation Theory +1612.09175 Instrumentation and Methods for Astrophysics +1612.09176 Number Theory +1612.09178 Phenomenology +1612.09180 Physics Education +1612.09181 +1612.09182 +1612.09183 Other Computer Science +1612.09185 Networking and Internet Architecture +1612.09187 Phenomenology +1612.09188 Physics Education +1612.09189 Statistical Finance +1612.09190 Solar and Stellar Astrophysics +1612.09192 +1612.09195 Applications +1612.09197 Complex Variables +1612.09199 Machine Learning +1612.09200 Superconductivity +1612.09201 Classical Analysis and ODEs +1612.09202 Phenomenology +1612.09203 Numerical Analysis +1612.09204 Analysis of PDEs +1612.09205 Neural and Evolutionary Computing +1612.09206 Algebraic Geometry +1612.09207 Methodology +1612.09208 Algebraic Geometry +1612.09210 Numerical Analysis +1612.09211 Disordered Systems and Neural Networks +1612.09212 Artificial Intelligence +1612.09213 Computation and Language +1612.09215 +1612.09216 Probability +1612.09217 Combinatorics +1612.09218 Phenomenology +1612.09219 Applications +1612.09220 Quantum Algebra +1612.09222 Information Theory +1612.09223 Logic +1612.09226 Phenomenology +1612.09227 Accelerator Physics +1612.09228 +1612.09229 Probability +1612.09231 +1612.09232 Number Theory +1612.09235 Instrumentation and Detectors +1612.09236 Analysis of PDEs +1612.09237 Number Theory +1612.09238 Phenomenology +1612.09240 +1612.09241 Theory +1612.09242 Plasma Physics +1612.09248 Theory +1612.09250 Probability +1612.09251 Logic in Computer Science +1612.09254 +1612.09255 Phenomenology +1612.09256 Experiment +1612.09257 Robotics +1612.09258 Quantum Algebra +1612.09259 Social and Information Networks +1612.09261 +1612.09264 Phenomenology +1612.09265 Probability +1612.09266 Physics Education +1612.09267 Mesoscale and Nanoscale Physics +1612.09268 Neurons and Cognition +1612.09270 Dynamical Systems +1612.09271 Algebraic Geometry +1612.09272 Theory +1612.09273 Computational Physics +1612.09274 Experiment +1612.09276 Superconductivity +1612.09280 Phenomenology +1612.09283 Machine Learning +1612.09285 +1612.09287 Accelerator Physics +1612.09288 Algebraic Geometry +1612.09289 Differential Geometry +1612.09291 +1612.09292 Superconductivity +1612.09293 Atomic Physics +1612.09294 Phenomenology +1612.09297 Machine Learning +1612.09300 Phenomenology +math/0002091 Number Theory +math/0002098 Number Theory +math/0203217 Number Theory +math/0204052 Number Theory +math/0207293 Quantum Algebra +math/0211204 Number Theory +math/0302091 Number Theory +math/0302155 Number Theory +math/0304428 Number Theory +math/0304496 Number Theory +math/0310005 Number Theory +math/0402041 Complex Variables +math/0503177 Number Theory +math/0507448 Quantum Algebra +math/0603469 Combinatorics +math/0605469 General Topology +math/0608148 Number Theory +math/0609244 Number Theory +math/0703646 Number Theory +math/9811175 Quantum Algebra +physics/0404044 General Physics +quant-ph/0006031 +quant-ph/0102078 +quant-ph/0401083 +quant-ph/0401091 +quant-ph/0410139 +0711.3658 Algebraic Geometry +0802.2342 Combinatorics +0902.1729 Number Theory +1007.5197 Commutative Algebra +1011.2182 Other Condensed Matter +1012.1303 Complex Variables +1105.0053 Optics +1105.4345 Operator Algebras +1109.0118 +1110.6092 Group Theory +1201.1926 Dynamical Systems +1203.6665 Statistics Theory +1205.1976 Complex Variables +1205.4144 Information Theory +1206.5490 Algebraic Geometry +1207.1332 Cosmology and Nongalactic Astrophysics +1211.4182 +1212.6853 Quantum Algebra +1301.0017 Cosmology and Nongalactic Astrophysics +1301.2676 Dynamical Systems +1301.5033 Information Theory +1301.5420 +1303.5126 Differential Geometry +1304.0155 +1304.1802 Cosmology and Nongalactic Astrophysics +1304.6749 Cosmology and Nongalactic Astrophysics +1305.0636 Combinatorics +1305.3234 Algebraic Geometry +1306.1465 Statistics Theory +1306.1554 Number Theory +1306.3092 Statistics Theory +1306.5766 Cosmology and Nongalactic Astrophysics +1306.6434 Operator Algebras +1307.1276 Geometric Topology +1307.2510 General Physics +1307.3478 +1307.4233 +1308.3470 Dynamical Systems +1308.3536 Algebraic Topology +1308.6703 Mesoscale and Nanoscale Physics +1309.3099 Dynamical Systems +1309.5082 Commutative Algebra +1310.0390 Representation Theory +1310.3948 Probability +1310.6225 +1311.6987 Complex Variables +1312.5798 Cosmology and Nongalactic Astrophysics +1312.6187 Complex Variables +1401.3332 Instrumentation and Methods for Astrophysics +1401.4647 Lattice +1401.5681 Physics Education +1402.1660 Computational Geometry +1402.2040 Combinatorics +1402.2828 Computation +1402.4973 +1402.5848 Differential Geometry +1403.0772 Probability +1403.0908 Astrophysics of Galaxies +1403.2829 Solar and Stellar Astrophysics +1403.3263 Statistical Mechanics +1403.7362 Dynamical Systems +1404.0690 Physics Education +1404.1781 Probability +1404.3779 Atomic Physics +1405.1252 Algebraic Geometry +1405.3802 +1405.5329 Information Theory +1405.5548 Optimization and Control +1406.3914 Theory +1406.7678 +1407.2498 +1407.5023 Materials Science +1407.6638 Populations and Evolution +1407.6846 Data Structures and Algorithms +1408.2636 Algebraic Geometry +1408.3918 Geometric Topology +1408.5220 Category Theory +1409.0227 Disordered Systems and Neural Networks +1409.3426 +1409.3898 +1409.4233 Atomic and Molecular Clusters +1409.6060 Analysis of PDEs +1409.7598 Applications +1409.7815 Cosmology and Nongalactic Astrophysics +1409.8094 Probability +1410.0201 Numerical Analysis +1410.0202 Numerical Analysis +1410.0875 Cosmology and Nongalactic Astrophysics +1410.1753 Instrumentation and Detectors +1410.4188 Instrumentation and Detectors +1410.5135 Differential Geometry +1410.5888 Number Theory +1410.7504 Complex Variables +1410.8570 Statistics Theory +1411.0263 Statistical Mechanics +1411.0711 +1411.0865 Phenomenology +1411.1066 Theory +1411.1253 Phenomenology +1411.4237 Differential Geometry +1411.7339 General Physics +1411.7844 Phenomenology +1412.1077 +1412.1796 Theory +1412.2490 Rings and Algebras +1412.2773 Systems and Control +1412.3164 Cryptography and Security +1412.3850 +1412.3955 Combinatorics +1412.5918 Disordered Systems and Neural Networks +1412.8713 Analysis of PDEs +1501.01199 Cryptography and Security +1501.01648 Optics +1501.02326 Computational Physics +1501.02372 Computer Vision and Pattern Recognition +1501.04867 Information Theory +1501.06319 Phenomenology +1501.06825 Instrumentation and Detectors +1501.07487 +1502.04038 Dynamical Systems +1502.04907 +1502.05985 +1502.06074 Mathematical Finance +1502.07768 Operator Algebras +1502.07853 Materials Science +1503.00106 Probability +1503.00671 Analysis of PDEs +1503.00890 Computation +1503.02272 +1503.02393 +1503.03698 Astrophysics of Galaxies +1503.03759 Instrumentation and Detectors +1503.05088 Lattice +1503.05439 Functional Analysis +1503.05522 Computers and Society +1503.05591 Mesoscale and Nanoscale Physics +1503.07954 Combinatorics +1504.01648 Commutative Algebra +1504.02128 Software Engineering +1504.02584 Analysis of PDEs +1504.02690 Representation Theory +1504.03272 Number Theory +1504.03465 Functional Analysis +1504.03545 +1504.03828 Statistical Mechanics +1504.04748 Instrumentation and Detectors +1504.05111 +1504.05139 Algebraic Topology +1504.05346 Instrumentation and Detectors +1504.07310 Combinatorics +1504.07418 +1504.07870 Experiment +1504.07894 Theory +1505.00503 Strongly Correlated Electrons +1505.00860 Classical Analysis and ODEs +1505.01818 Social and Information Networks +1505.03750 Theory +1505.06208 +1505.06935 +1505.07084 History and Philosophy of Physics +1505.07847 Mesoscale and Nanoscale Physics +1505.08037 Functional Analysis +1505.08150 Theory +1506.00382 Rings and Algebras +1506.00683 Dynamical Systems +1506.01023 Theory +1506.01068 Logic +1506.01505 Disordered Systems and Neural Networks +1506.02046 +1506.03167 Information Theory +1506.04222 Solar and Stellar Astrophysics +1506.04442 Phenomenology +1506.04808 Phenomenology +1506.05334 Phenomenology +1506.06316 +1506.06840 Learning +1506.07150 Phenomenology +1506.07606 Theory +1506.08329 Experiment +1506.09210 Systems and Control +1507.00296 Disordered Systems and Neural Networks +1507.00902 +1507.00961 Probability +1507.01255 Information Theory +1507.01345 Data Structures and Algorithms +1507.01471 Statistical Mechanics +1507.01587 Strongly Correlated Electrons +1507.02978 Classical Analysis and ODEs +1507.03718 Cell Behavior +1507.05162 Metric Geometry +1507.06190 +1507.08521 Materials Science +1507.08802 +1507.08815 Materials Science +1508.00896 Cosmology and Nongalactic Astrophysics +1508.01357 Theory +1508.01798 Phenomenology +1508.04883 Portfolio Management +1508.04935 Materials Science +1508.05732 Probability +1509.01325 Numerical Analysis +1509.01769 Theory +1509.02302 Robotics +1509.02387 Instrumentation and Detectors +1509.02464 Distributed, Parallel, and Cluster Computing +1509.02556 Methodology +1509.02836 Materials Science +1509.03066 Soft Condensed Matter +1509.03705 Programming Languages +1509.03966 Information Theory +1509.04295 +1509.04508 Statistics Theory +1509.05219 Quantitative Methods +1509.05481 +1509.06045 +1509.06143 Classical Analysis and ODEs +1509.06696 Phenomenology +1509.07518 Cosmology and Nongalactic Astrophysics +1509.07859 Machine Learning +1509.08658 Information Theory +1509.08967 Computation and Language +1510.00139 Quantum Gases +1510.00971 +1510.01385 Information Theory +1510.01491 Optics +1510.01982 Phenomenology +1510.02062 +1510.02290 Analysis of PDEs +1510.02316 Spectral Theory +1510.02332 Phenomenology +1510.02333 +1510.02389 Theory +1510.02756 Phenomenology +1510.03602 Sound +1510.04398 Theory +1510.05305 +1510.05377 Operator Algebras +1510.05604 +1510.05957 Superconductivity +1510.05999 Theory +1510.06092 Physics and Society +1510.06320 Statistical Mechanics +1510.06393 +1510.07502 Populations and Evolution +1510.07525 Numerical Analysis +1510.08578 Computer Science and Game Theory +1510.08773 Chemical Physics +1510.08974 Learning +1510.09057 Atomic Physics +1511.00341 Cryptography and Security +1511.00627 +1511.00725 Learning +1511.00735 Digital Libraries +1511.00736 Learning +1511.02342 Dynamical Systems +1511.02501 Quantum Gases +1511.02542 Solar and Stellar Astrophysics +1511.02964 +1511.02994 Materials Science +1511.03149 +1511.04129 Group Theory +1511.04748 Theory +1511.04853 Combinatorics +1511.06617 Classical Analysis and ODEs +1511.06711 Materials Science +1511.07560 +1511.07563 +1511.08903 Probability +1511.08908 +1511.09196 Data Structures and Algorithms +1511.09287 Solar and Stellar Astrophysics +1512.01135 Theory +1512.02164 Theory +1512.02427 Cosmology and Nongalactic Astrophysics +1512.02656 Astrophysics of Galaxies +1512.04191 Mesoscale and Nanoscale Physics +1512.04395 Methodology +1512.04652 Artificial Intelligence +1512.04792 Artificial Intelligence +1512.05030 Computation and Language +1512.05544 Phenomenology +1512.06274 +1512.06417 Geometric Topology +1512.06655 Combinatorics +1512.07388 Strongly Correlated Electrons +1512.07686 Mesoscale and Nanoscale Physics +1512.07851 Learning +1512.08428 Analysis of PDEs +1512.08468 +1512.08672 Algebraic Geometry +1601.00004 Solar and Stellar Astrophysics +1601.00071 Quantum Gases +1601.00795 Group Theory +1601.00802 +1601.00824 Superconductivity +1601.01133 Pattern Formation and Solitons +1601.01246 +1601.01291 Instrumentation and Detectors +1601.01708 +1601.02357 +1601.02455 Statistical Mechanics +1601.03044 Phenomenology +1601.03708 Distributed, Parallel, and Cluster Computing +1601.03770 Functional Analysis +1601.03825 Number Theory +1601.03839 Representation Theory +1601.03902 +1601.03960 Earth and Planetary Astrophysics +1601.03963 Rings and Algebras +1601.03988 Representation Theory +1601.04010 Dynamical Systems +1601.04604 Classical Analysis and ODEs +1601.04871 Computer Vision and Pattern Recognition +1601.04877 Differential Geometry +1601.04908 Computation and Language +1601.04946 Number Theory +1601.04992 General Physics +1601.05029 +1601.05113 Neurons and Cognition +1601.05242 Classical Analysis and ODEs +1601.05329 Networking and Internet Architecture +1601.05630 Social and Information Networks +1601.05797 High Energy Astrophysical Phenomena +1601.05871 Mathematical Software +1601.05909 Databases +1601.05984 Classical Analysis and ODEs +1601.06056 Algebraic Geometry +1601.06158 Combinatorics +1601.06159 Functional Analysis +1601.06164 Theory +1601.06169 Phenomenology +1601.06170 Algebraic Geometry +1601.06178 Analysis of PDEs +1601.06181 Information Theory +1601.06182 Numerical Analysis +1601.06184 Information Theory +1601.06186 Combinatorics +1601.06188 +1601.06191 Populations and Evolution +1601.06192 Classical Physics +1601.06193 Category Theory +1601.06195 Strongly Correlated Electrons +1601.06202 Networking and Internet Architecture +1601.06203 Networking and Internet Architecture +1601.06204 Risk Management +1601.06205 Materials Science +1601.06211 Algebraic Geometry +1601.06212 Statistics Theory +1601.06213 Optics +1601.06216 Optics +1601.06218 Operator Algebras +1601.06219 Probability +1601.06220 +1601.06221 Medical Physics +1601.06222 Software Engineering +1601.06223 Computer Science and Game Theory +1601.06226 Cosmology and Nongalactic Astrophysics +1601.06230 Human-Computer Interaction +1601.06231 +1601.06233 Information Theory +1601.06234 Populations and Evolution +1601.06235 Cosmology and Nongalactic Astrophysics +1601.06236 Applications +1601.06238 Rings and Algebras +1601.06242 Software Engineering +1601.06243 Computer Vision and Pattern Recognition +1601.06244 Multiagent Systems +1601.06245 Artificial Intelligence +1601.06246 Materials Science +1601.06251 Computer Vision and Pattern Recognition +1601.06255 Differential Geometry +1601.06258 Computers and Society +1601.06259 Machine Learning +1601.06260 Computer Vision and Pattern Recognition +1601.06263 Dynamical Systems +1601.06264 Functional Analysis +1601.06265 Differential Geometry +1601.06268 Dynamical Systems +1601.06270 Probability +1601.06274 Computer Vision and Pattern Recognition +1601.06275 Probability +1601.06278 Discrete Mathematics +1601.06285 Algebraic Topology +1601.06286 Atmospheric and Oceanic Physics +1601.06287 Metric Geometry +1601.06288 Methodology +1601.06289 Cryptography and Security +1601.06291 Data Structures and Algorithms +1601.06298 Logic in Computer Science +1601.06305 Theory +1601.06306 Statistical Mechanics +1601.06307 Social and Information Networks +1601.06309 +1601.06310 Optimization and Control +1601.06311 Data Structures and Algorithms +1601.06314 Physics and Society +1601.06317 Analysis of PDEs +1601.06320 Instrumentation and Methods for Astrophysics +1601.06323 Cosmology and Nongalactic Astrophysics +1601.06326 Robotics +1601.06327 Information Theory +1601.06329 Strongly Correlated Electrons +1601.06332 Combinatorics +1601.06336 Functional Analysis +1601.06337 +1601.06338 +1601.06341 Optics +1601.06342 Information Theory +1601.06345 Networking and Internet Architecture +1601.06346 Dynamical Systems +1601.06347 Geometric Topology +1601.06352 Hardware Architecture +1601.06354 Combinatorics +1601.06357 Social and Information Networks +1601.06358 Classical Analysis and ODEs +1601.06359 Human-Computer Interaction +1601.06361 Number Theory +1601.06362 Information Theory +1601.06364 +1601.06365 Medical Physics +1601.06366 Optics +1601.06367 Commutative Algebra +1601.06368 Computational Engineering, Finance, and Science +1601.06371 Computers and Society +1601.06372 Computers and Society +1601.06376 Information Theory +1601.06377 Information Theory +1601.06378 Number Theory +1601.06384 Solar and Stellar Astrophysics +1601.06387 Number Theory +1601.06388 Number Theory +1601.06389 Networking and Internet Architecture +1601.06391 Combinatorics +1601.06392 Superconductivity +1601.06400 Combinatorics +1601.06405 Information Theory +1601.06406 +1601.06412 Statistics Theory +1601.06414 Fluid Dynamics +1601.06417 Probability +1601.06419 +1601.06420 Neurons and Cognition +1601.06423 Information Theory +1601.06425 Networking and Internet Architecture +1601.06426 Information Theory +1601.06427 Algebraic Geometry +1601.06428 Complex Variables +1601.06435 Dynamical Systems +1601.06440 Information Retrieval +1601.06445 Number Theory +1601.06447 Applications +1601.06449 Information Theory +1601.06450 Rings and Algebras +1601.06452 Dynamical Systems +1601.06454 Cryptography and Security +1601.06455 +1601.06457 Phenomenology +1601.06458 Analysis of PDEs +1601.06459 Methodology +1601.06462 Commutative Algebra +1601.06463 Information Theory +1601.06464 Optimization and Control +1601.06465 Plasma Physics +1601.06466 Software Engineering +1601.06467 +1601.06470 Theory +1601.06471 Numerical Analysis +1601.06472 Differential Geometry +1601.06474 Networking and Internet Architecture +1601.06475 Combinatorics +1601.06476 Learning +1601.06477 Mathematical Finance +1601.06478 Phenomenology +1601.06485 Dynamical Systems +1601.06486 Atmospheric and Oceanic Physics +1601.06487 Classical Analysis and ODEs +1601.06488 General Topology +1601.06489 General Topology +1601.06491 Analysis of PDEs +1601.06492 Materials Science +1601.06493 +1601.06494 Other Condensed Matter +1601.06496 Distributed, Parallel, and Cluster Computing +1601.06497 Distributed, Parallel, and Cluster Computing +1601.06502 Cryptography and Security +1601.06503 Materials Science +1601.06504 Logic in Computer Science +1601.06510 Fluid Dynamics +1601.06511 Representation Theory +1601.06518 Cosmology and Nongalactic Astrophysics +1601.06519 Algebraic Geometry +1601.06522 +1601.06523 Statistics Theory +1601.06527 Social and Information Networks +1601.06532 Solar and Stellar Astrophysics +1601.06538 Dynamical Systems +1601.06541 Mesoscale and Nanoscale Physics +1601.06542 Soft Condensed Matter +1601.06544 Numerical Analysis +1601.06545 Phenomenology +1601.06548 Logic +1601.06549 Numerical Analysis +1601.06553 Chemical Physics +1601.06564 Probability +1601.06569 Artificial Intelligence +1601.06572 Complex Variables +1601.06575 Algebraic Topology +1601.06576 Information Theory +1601.06578 Information Theory +1601.06583 Optics +1601.06584 Materials Science +1601.06585 Materials Science +1601.06589 Analysis of PDEs +1601.06591 Dynamical Systems +1601.06603 Multimedia +1601.06606 Probability +1601.06607 +1601.06608 Computer Vision and Pattern Recognition +1601.06609 Optimization and Control +1601.06615 Computer Vision and Pattern Recognition +1601.06616 Robotics +1601.06619 Differential Geometry +1601.06623 Numerical Analysis +1601.06625 Solar and Stellar Astrophysics +1601.06626 Commutative Algebra +1601.06627 Materials Science +1601.06630 Methodology +1601.06631 Optics +1601.06632 Differential Geometry +1601.06633 K-Theory and Homology +1601.06635 Numerical Analysis +1601.06638 Astrophysics of Galaxies +1601.06640 Experiment +1601.06642 K-Theory and Homology +1601.06644 Fluid Dynamics +1601.06646 Fluid Dynamics +1601.06649 Mesoscale and Nanoscale Physics +1601.06650 Machine Learning +1601.06651 Machine Learning +1601.06652 Sound +1601.06658 Representation Theory +1601.06661 Logic +1601.06662 Theory +1601.06666 Networking and Internet Architecture +1601.06668 +1601.06669 Lattice +1601.06670 High Energy Astrophysical Phenomena +1601.06671 Number Theory +1601.06672 Optimization and Control +1601.06680 Machine Learning +1601.06685 Combinatorics +1601.06687 Rings and Algebras +1601.06688 Algebraic Geometry +1601.06689 Information Theory +1601.06691 Dynamical Systems +1601.06693 Data Structures and Algorithms +1601.06698 Algebraic Geometry +1601.06702 Numerical Analysis +1601.06703 Statistical Mechanics +1601.06706 +1601.06707 Classical Analysis and ODEs +1601.06709 Information Theory +1601.06711 Social and Information Networks +1601.06714 Phenomenology +1601.06725 High Energy Astrophysical Phenomena +1601.06726 Astrophysics of Galaxies +1601.06729 Numerical Analysis +1601.06731 Social and Information Networks +1601.06732 Artificial Intelligence +1601.06735 +1601.06737 Number Theory +1601.06738 Artificial Intelligence +1601.06739 Optimization and Control +1601.06740 Other Computer Science +1601.06741 Astrophysics of Galaxies +1601.06743 Methodology +1601.06751 Phenomenology +1601.06753 Analysis of PDEs +1601.06755 Artificial Intelligence +1601.06756 Information Theory +1601.06760 Differential Geometry +1601.06762 Information Theory +1601.06763 Artificial Intelligence +1601.06767 Computational Physics +astro-ph/0404393 +cond-mat/0111041 Superconductivity +cond-mat/0401296 +0910.5415 +0911.3668 +1009.3764 Number Theory +1203.3280 Discrete Mathematics +1204.1009 Probability +1204.1827 Number Theory +1208.4431 +1208.5930 Probability +1302.3249 Number Theory +1308.0228 Functional Analysis +1311.3795 Algebraic Geometry +1401.0914 Probability +1401.3075 Information Theory +1402.4999 Algebraic Geometry +1403.6173 Computer Vision and Pattern Recognition +1404.4477 Probability +1405.2588 Dynamical Systems +1406.0657 Algebraic Geometry +1406.1155 Representation Theory +1406.5417 Dynamical Systems +1407.4437 +1408.6980 Computation +1409.0599 Information Theory +1409.6847 +1410.3889 Data Structures and Algorithms +1411.4452 Algebraic Geometry +1501.00305 Information Theory +1502.02586 Algebraic Topology +1502.02648 +1502.05207 Experiment +1502.05233 Experiment +1504.00563 Functional Analysis +1504.04231 Optimization and Control +1504.06697 Materials Science +1504.07951 Theory +1505.00272 Theory +1505.00370 Numerical Analysis +1505.02155 Data Structures and Algorithms +1505.03010 Phenomenology +1505.03883 Data Structures and Algorithms +1506.00732 Rings and Algebras +1506.00736 Rings and Algebras +1506.01969 Strongly Correlated Electrons +1506.06856 Strongly Correlated Electrons +1506.07531 Astrophysics of Galaxies +1506.07693 Probability +1507.00745 Representation Theory +1507.01176 Soft Condensed Matter +1507.03192 Soft Condensed Matter +1507.03549 Optimization and Control +1507.03637 Materials Science +1507.08469 Dynamical Systems +1508.03916 Solar and Stellar Astrophysics +1508.04541 Combinatorics +1508.05743 +1508.06677 Combinatorics +1509.00518 Theory +1509.02629 +1509.05815 Algebraic Geometry +1509.07672 Probability +1509.08430 Mesoscale and Nanoscale Physics +1509.08567 Optimization and Control +1510.00932 Statistical Mechanics +1510.02060 High Energy Astrophysical Phenomena +1510.02170 Instrumentation and Detectors +1510.06830 Strongly Correlated Electrons +1511.02636 Phenomenology +1511.02930 Computation +1511.03262 Probability +1511.03573 Statistical Mechanics +1511.04118 Mesoscale and Nanoscale Physics +1511.06520 Probability +1511.06856 Computer Vision and Pattern Recognition +1511.07266 Populations and Evolution +1511.09289 Discrete Mathematics +1512.00632 Experiment +1512.03846 Strongly Correlated Electrons +1601.00088 Computer Vision and Pattern Recognition +1601.02267 Discrete Mathematics +1601.02919 Computer Vision and Pattern Recognition +1601.02957 Logic +1601.05443 Strongly Correlated Electrons +1601.06049 Materials Science +1601.07764 Superconductivity +1602.00544 Dynamical Systems +1602.01621 Soft Condensed Matter +1602.02511 +1602.06492 Optimization and Control +1602.07910 Mathematical Finance +1602.08574 Analysis of PDEs +1602.08652 Statistical Mechanics +1602.08850 Classical Analysis and ODEs +1602.09068 Mesoscale and Nanoscale Physics +1603.00245 Superconductivity +1603.01586 Statistical Finance +1603.03747 Mathematical Finance +1603.03749 +1603.03759 Phenomenology +1603.04189 Applications +1603.05289 Systems and Control +1603.05805 +1603.06959 Theory +1603.07088 Number Theory +1603.07771 Computation and Language +1603.08387 +1604.00439 Instrumentation and Methods for Astrophysics +1604.02412 Genomics +1604.03129 +1604.03388 Probability +1604.04276 Statistical Mechanics +1604.04357 Representation Theory +1604.04984 Multimedia +1604.06077 Biological Physics +1604.06780 Mesoscale and Nanoscale Physics +1604.08140 +1605.00925 Theory +1605.00949 Materials Science +1605.02635 Information Theory +1605.04427 Combinatorics +1605.04729 Statistics Theory +1605.06635 +1605.07808 Logic in Computer Science +1605.07965 Statistical Mechanics +1605.08889 Computation and Language +1605.09127 Soft Condensed Matter +1605.09743 Phenomenology +1606.01033 Superconductivity +1606.01149 Materials Science +1606.01589 Quantum Gases +1606.01627 Statistics Theory +1606.02518 Machine Learning +1606.02975 Formal Languages and Automata Theory +1606.03007 Combinatorics +1606.04017 Experiment +1606.05460 Combinatorics +1606.05524 Atomic Physics +1606.05726 Number Theory +1606.07318 Analysis of PDEs +1606.08276 +1606.08842 Learning +1606.09142 Dynamical Systems +1607.00134 +1607.01084 Emerging Technologies +1607.01410 Algebraic Geometry +1607.02111 Metric Geometry +1607.02933 Classical Physics +1607.03171 Geometric Topology +1607.04835 Strongly Correlated Electrons +1607.05822 Computation and Language +1607.06091 Astrophysics of Galaxies +1607.06243 Phenomenology +1607.06366 Number Theory +1607.08787 +1608.01416 +1608.03362 +1608.03941 Exactly Solvable and Integrable Systems +1608.04117 Computer Vision and Pattern Recognition +1608.04153 Combinatorics +1608.04385 Theory +1608.04681 Analysis of PDEs +1608.06388 Strongly Correlated Electrons +1609.00067 Strongly Correlated Electrons +1609.00553 +1609.00958 Medical Physics +1609.01152 Dynamical Systems +1609.01660 Symplectic Geometry +1609.01735 +1609.01757 +1609.01815 +1609.01971 Numerical Analysis +1609.02013 Strongly Correlated Electrons +1609.03301 Applications +1609.03505 Astrophysics of Galaxies +1609.03589 Analysis of PDEs +1609.04108 Systems and Control +1609.04248 General Physics +1609.04793 Digital Libraries +1609.05158 Computer Vision and Pattern Recognition +1609.05178 Cryptography and Security +1609.05444 Phenomenology +1609.05491 +1609.05875 +1609.05914 Theory +1609.05983 Optimization and Control +1609.06026 Sound +1609.06161 Distributed, Parallel, and Cluster Computing +1609.06275 Operator Algebras +1609.06371 Computer Vision and Pattern Recognition +1609.06423 Digital Libraries +1609.06439 Theory +1609.06469 Theory +1609.06718 Earth and Planetary Astrophysics +1609.06950 Commutative Algebra +1609.06956 Quantum Gases +1609.07008 Distributed, Parallel, and Cluster Computing +1609.07016 Materials Science +1609.07028 Computer Vision and Pattern Recognition +1609.07056 Data Structures and Algorithms +1609.07073 Statistical Mechanics +1609.07140 Quantitative Methods +1609.07142 Cosmology and Nongalactic Astrophysics +1609.07144 Theory +1609.07145 High Energy Astrophysical Phenomena +1609.07154 Numerical Analysis +1609.07155 High Energy Astrophysical Phenomena +1609.07157 Instrumentation and Methods for Astrophysics +1609.07158 Instrumentation and Methods for Astrophysics +1609.07163 Functional Analysis +1609.07165 Statistics Theory +1609.07166 Classical Analysis and ODEs +1609.07167 Combinatorics +1609.07168 Chemical Physics +1609.07170 Multimedia +1609.07171 Digital Libraries +1609.07175 Materials Science +1609.07178 Dynamical Systems +1609.07179 Populations and Evolution +1609.07180 Numerical Analysis +1609.07183 Information Theory +1609.07184 Complex Variables +1609.07186 Theory +1609.07187 Soft Condensed Matter +1609.07189 Strongly Correlated Electrons +1609.07191 Strongly Correlated Electrons +1609.07192 Networking and Internet Architecture +1609.07193 Instrumentation and Methods for Astrophysics +1609.07194 Strongly Correlated Electrons +1609.07195 Methodology +1609.07198 Phenomenology +1609.07200 Learning +1609.07201 Dynamical Systems +1609.07202 Combinatorics +1609.07204 Analysis of PDEs +1609.07205 Phenomenology +1609.07206 Probability +1609.07207 Combinatorics +1609.07209 Number Theory +1609.07211 Number Theory +1609.07213 Mesoscale and Nanoscale Physics +1609.07214 Tissues and Organs +1609.07215 Learning +1609.07216 Differential Geometry +1609.07217 Methodology +1609.07218 Number Theory +1609.07219 Probability +1609.07222 Computation and Language +1609.07231 Classical Physics +1609.07232 Analysis of PDEs +1609.07233 Methodology +1609.07234 Hardware Architecture +1609.07236 Computers and Society +1609.07237 Optimization and Control +1609.07239 Data Structures and Algorithms +1609.07240 Phenomenology +1609.07250 Statistical Mechanics +1609.07251 Mesoscale and Nanoscale Physics +1609.07253 Systems and Control +1609.07261 Optimization and Control +1609.07267 Medical Physics +1609.07269 Probability +1609.07270 Differential Geometry +1609.07271 Dynamical Systems +1609.07272 Machine Learning +1609.07274 Rings and Algebras +1609.07276 Number Theory +1609.07279 +1609.07281 Mesoscale and Nanoscale Physics +1609.07284 Dynamical Systems +1609.07288 Discrete Mathematics +1609.07291 Numerical Analysis +1609.07294 +1609.07295 Number Theory +1609.07300 +1609.07301 Combinatorics +1609.07302 Cryptography and Security +1609.07304 Computer Vision and Pattern Recognition +1609.07306 Computer Vision and Pattern Recognition +1609.07311 Astrophysics of Galaxies +1609.07312 +1609.07319 Dynamical Systems +1609.07321 Geometric Topology +1609.07323 Optimization and Control +1609.07324 Optimization and Control +1609.07325 Instrumentation and Methods for Astrophysics +1609.07327 Algebraic Geometry +1609.07328 Optics +1609.07329 Emerging Technologies +1609.07330 Methodology +1609.07331 Analysis of PDEs +1609.07333 Machine Learning +1609.07334 +1609.07335 Combinatorics +1609.07336 +1609.07339 Probability +1609.07341 Theory +1609.07342 Human-Computer Interaction +1609.07343 Human-Computer Interaction +1609.07345 Combinatorics +1609.07346 Physics Education +1609.07349 Cryptography and Security +1609.07350 Software Engineering +1609.07354 Data Structures and Algorithms +1609.07356 Commutative Algebra +1609.07358 Optimization and Control +1609.07359 General Physics +1609.07360 Dynamical Systems +1609.07363 Methodology +1609.07364 Functional Analysis +1609.07365 Neurons and Cognition +1609.07366 Analysis of PDEs +1609.07367 Combinatorics +1609.07368 Systems and Control +1609.07370 Computer Vision and Pattern Recognition +1609.07371 Computer Vision and Pattern Recognition +1609.07374 Experiment +1609.07377 Discrete Mathematics +1609.07378 Neural and Evolutionary Computing +1609.07379 Logic +1609.07380 +1609.07382 Systems and Control +1609.07383 Materials Science +1609.07385 +1609.07391 Differential Geometry +1609.07392 Rings and Algebras +1609.07393 Systems and Control +1609.07395 Physics and Society +1609.07396 Rings and Algebras +1609.07397 +1609.07398 Logic +1609.07400 Analysis of PDEs +1609.07402 Optimization and Control +1609.07404 Phenomenology +1609.07405 +1609.07407 Applications +1609.07408 Analysis of PDEs +1609.07409 Systems and Control +1609.07412 Analysis of PDEs +1609.07414 Soft Condensed Matter +1609.07415 Statistics Theory +1609.07419 Probability +1609.07420 Computer Vision and Pattern Recognition +1609.07421 Probability +1609.07424 Dynamical Systems +1609.07425 Strongly Correlated Electrons +1609.07426 Populations and Evolution +1609.07428 Optimization and Control +1609.07434 Artificial Intelligence +1609.07436 Robotics +1609.07437 Systems and Control +1609.07439 Combinatorics +1609.07441 Distributed, Parallel, and Cluster Computing +1609.07442 +1609.07443 Theory +1609.07446 Differential Geometry +1609.07447 +1609.07448 Optimization and Control +1609.07449 +1609.07451 Computation and Language +1609.07452 Statistics Theory +1609.07455 Algebraic Geometry +1609.07456 Representation Theory +1609.07458 Statistical Mechanics +1609.07460 Computer Science and Game Theory +1609.07461 Subcellular Processes +1609.07464 Applications +1609.07466 Combinatorics +1609.07471 Spectral Theory +1609.07473 +1609.07475 Operator Algebras +1609.07476 Combinatorics +1609.07478 Optimization and Control +1609.07479 Computation and Language +hep-ex/0404013 Experiment +hep-ph/0308196 Phenomenology +math/0404536 Differential Geometry +1103.1437 Number Theory +1108.1062 Number Theory +1109.2362 Algebraic Geometry +1110.1997 Algebraic Geometry +1205.2791 Strongly Correlated Electrons +1206.6623 Differential Geometry +1211.5836 Group Theory +1302.4009 Logic +1304.3006 Algebraic Topology +1305.4540 General Topology +1306.1295 Mathematical Software +1307.1815 Mesoscale and Nanoscale Physics +1310.4389 Graphics +1401.6905 Optimization and Control +1403.3803 Functional Analysis +1409.1995 Probability +1409.7670 Quantum Gases +1410.4801 Logic in Computer Science +1411.2390 Phenomenology +1411.4832 Complex Variables +1411.5863 Cosmology and Nongalactic Astrophysics +1412.4360 Symplectic Geometry +1412.5920 Combinatorics +1412.6370 Methodology +1412.6371 Methodology +1501.00340 Computational Geometry +1501.07505 Analysis of PDEs +1502.06988 Methodology +1503.02560 Solar and Stellar Astrophysics +1503.06028 Probability +1503.06054 Complex Variables +1503.06818 Group Theory +1503.08162 Phenomenology +1503.08449 Algebraic Geometry +1504.01681 Combinatorics +1504.02987 Algebraic Geometry +1504.04904 Number Theory +1505.03568 Analysis of PDEs +1505.07434 Artificial Intelligence +1505.08039 Functional Analysis +1506.00056 Analysis of PDEs +1506.01617 Spectral Theory +1506.05756 Spectral Theory +1506.08647 General Physics +1506.08656 Experiment +1507.06863 Logic +1507.08115 Algebraic Topology +1508.00471 Logic +1508.01918 Numerical Analysis +1508.02434 Spectral Theory +1508.02525 Symplectic Geometry +1508.03372 Experiment +1508.07935 Logic +1509.00383 Number Theory +1509.03150 Computer Vision and Pattern Recognition +1509.09064 +1510.04455 Neurons and Cognition +1510.07780 Atomic Physics +1510.08579 Optimization and Control +1511.02844 Differential Geometry +1511.03000 Applications +1511.05082 Learning +1511.05309 Machine Learning +1511.07303 Computational Geometry +1512.00706 Analysis of PDEs +1512.02671 Numerical Analysis +1512.04166 Mesoscale and Nanoscale Physics +1512.05288 +1512.06318 Dynamical Systems +1601.00239 Logic in Computer Science +1601.01643 Biological Physics +1601.02900 Applications +1601.05429 Theory +1601.07621 Machine Learning +1602.00553 Mesoscale and Nanoscale Physics +1602.01409 Social and Information Networks +1602.01441 +1602.02348 Economics +1602.03887 Instrumentation and Methods for Astrophysics +1602.05227 Populations and Evolution +1602.05762 Applications +1602.06082 +1602.07099 Phenomenology +1603.01020 Mesoscale and Nanoscale Physics +1603.01339 Numerical Analysis +1603.04981 Computer Science and Game Theory +1603.05173 +1603.07720 Dynamical Systems +1603.07982 Theory +1604.01651 Computational Engineering, Finance, and Science +1604.02806 Superconductivity +1604.03438 Strongly Correlated Electrons +1604.03505 Computer Vision and Pattern Recognition +1604.03588 +1604.03635 Computer Vision and Pattern Recognition +1604.04353 Mesoscale and Nanoscale Physics +1604.04962 +1604.05076 Instrumentation and Detectors +1604.05225 Computer Vision and Pattern Recognition +1604.05681 Group Theory +1604.06127 Geometric Topology +1604.06682 Data Structures and Algorithms +1604.07250 Algebraic Geometry +1604.08188 Probability +1605.00309 Social and Information Networks +1605.02128 Differential Geometry +1605.02498 Phenomenology +1605.03146 Experiment +1605.04365 Differential Geometry +1605.04381 Computer Science and Game Theory +1605.04721 Information Theory +1605.06522 +1605.06991 Theory +1605.07694 Differential Geometry +1605.09085 Learning +1606.00252 Methodology +1606.01136 Computational Physics +1606.02259 +1606.02367 Analysis of PDEs +1606.04051 Mesoscale and Nanoscale Physics +1606.06901 Chemical Physics +1606.07649 Differential Geometry +1606.07772 Computation and Language +1606.07889 +1606.09238 Number Theory +1606.09398 Spectral Theory +1607.01698 Instrumentation and Methods for Astrophysics +1607.02609 Category Theory +1607.03075 +1607.03110 Phenomenology +1607.03407 Strongly Correlated Electrons +1607.03985 Phenomenology +1607.04180 Programming Languages +1607.04973 +1607.05025 Optics +1607.05189 Computational Complexity +1607.05288 Cosmology and Nongalactic Astrophysics +1607.08341 Soft Condensed Matter +1607.08835 Algebraic Geometry +1608.00777 Differential Geometry +1608.02736 Strongly Correlated Electrons +1608.03775 Information Theory +1608.04690 Cosmology and Nongalactic Astrophysics +1608.05185 Medical Physics +1608.06275 Superconductivity +1608.06470 Phenomenology +1608.07154 Strongly Correlated Electrons +1608.08214 +1608.08417 Quantum Gases +1609.00826 +1609.01253 +1609.01405 Dynamical Systems +1609.01924 Chaotic Dynamics +1609.02770 Computer Vision and Pattern Recognition +1609.03374 Soft Condensed Matter +1609.05800 Systems and Control +1609.05873 Analysis of PDEs +1609.05977 Cell Behavior +1609.06181 Analysis of PDEs +1609.06799 +1609.06905 Soft Condensed Matter +1609.07520 Phenomenology +1609.08024 Solar and Stellar Astrophysics +1609.08547 Analysis of PDEs +1609.08909 Functional Analysis +1610.00325 Systems and Control +1610.01143 Optics +1610.02154 Mesoscale and Nanoscale Physics +1610.02595 Optimization and Control +1610.03366 Differential Geometry +1610.04750 Classical Analysis and ODEs +1610.05013 Theory +1610.05072 Logic in Computer Science +1610.06638 Rings and Algebras +1610.06764 +1610.08069 Theory +1610.09889 Computation and Language +1611.01739 Classical Analysis and ODEs +1611.02105 Theory +1611.03028 Social and Information Networks +1611.03354 Human-Computer Interaction +1611.03588 Statistical Mechanics +1611.04201 Learning +1611.05416 Learning +1611.06397 Astrophysics of Galaxies +1611.07383 Cryptography and Security +1611.07483 Experiment +1611.07642 Algebraic Geometry +1611.08385 Representation Theory +1611.08396 Cryptography and Security +1611.08402 Computer Vision and Pattern Recognition +1611.09146 +1611.09528 Distributed, Parallel, and Cluster Computing +1611.09663 Combinatorics +1611.09935 Numerical Analysis +1612.00125 Computer Vision and Pattern Recognition +1612.00416 Mesoscale and Nanoscale Physics +1612.00490 Classical Physics +1612.00520 Applications +1612.00603 Computer Vision and Pattern Recognition +1612.01371 Theory +1612.01524 High Energy Astrophysical Phenomena +1612.01600 Optimization and Control +1612.01607 Systems and Control +1612.01644 Phenomenology +1612.01660 +1612.01816 Probability +1612.01834 Computer Vision and Pattern Recognition +1612.01835 Cryptography and Security +1612.01842 Distributed, Parallel, and Cluster Computing +1612.01852 +1612.01857 Artificial Intelligence +1612.01953 +1612.01993 Lattice +1612.01995 Instrumentation and Detectors +1612.01997 Theory +1612.01998 High Energy Astrophysical Phenomena +1612.01999 Phenomenology +1612.02006 High Energy Astrophysical Phenomena +1612.02007 Mesoscale and Nanoscale Physics +1612.02016 Solar and Stellar Astrophysics +1612.02018 Cosmology and Nongalactic Astrophysics +1612.02025 Functional Analysis +1612.02026 Quantum Algebra +1612.02027 Instrumentation and Detectors +1612.02028 Instrumentation and Detectors +1612.02031 Atomic Physics +1612.02033 Analysis of PDEs +1612.02034 Data Structures and Algorithms +1612.02035 Populations and Evolution +1612.02037 +1612.02038 Optics +1612.02040 Phenomenology +1612.02041 Pattern Formation and Solitons +1612.02043 Optics +1612.02044 Systems and Control +1612.02045 Systems and Control +1612.02048 +1612.02049 Algebraic Geometry +1612.02051 +1612.02054 Materials Science +1612.02056 Accelerator Physics +1612.02057 Numerical Analysis +1612.02058 +1612.02059 Biological Physics +1612.02060 Quantum Algebra +1612.02062 Networking and Internet Architecture +1612.02063 Phenomenology +1612.02066 Dynamical Systems +1612.02068 Atomic Physics +1612.02070 Fluid Dynamics +1612.02071 Phenomenology +1612.02074 +1612.02075 Theory +1612.02076 Accelerator Physics +1612.02082 Numerical Analysis +1612.02083 Optics +1612.02089 +1612.02090 Methodology +1612.02091 Quantum Gases +1612.02092 Soft Condensed Matter +1612.02093 Fluid Dynamics +1612.02095 Computer Vision and Pattern Recognition +1612.02096 +1612.02099 Statistics Theory +1612.02100 Metric Geometry +1612.02102 Analysis of PDEs +1612.02105 Algebraic Topology +1612.02106 Logic in Computer Science +1612.02111 Computers and Society +1612.02112 Mathematical Finance +1612.02116 Molecular Networks +1612.02117 Quantum Algebra +1612.02119 Optics +1612.02122 Optics +1612.02125 Functional Analysis +1612.02126 Information Theory +1612.02127 Optics +1612.02128 Information Theory +1612.02129 +1612.02132 Group Theory +1612.02133 Optimization and Control +1612.02135 Robotics +1612.02138 Statistical Mechanics +1612.02140 Instrumentation and Detectors +1612.02141 Computer Vision and Pattern Recognition +1612.02142 Logic +1612.02143 Mesoscale and Nanoscale Physics +1612.02144 Geometric Topology +1612.02145 Information Theory +1612.02147 Solar and Stellar Astrophysics +1612.02148 Probability +1612.02149 Computational Geometry +1612.02151 Phenomenology +1612.02153 Numerical Analysis +1612.02154 Algebraic Geometry +1612.02155 Computer Vision and Pattern Recognition +1612.02156 Combinatorics +1612.02158 Combinatorics +1612.02159 Algebraic Topology +1612.02160 Combinatorics +1612.02161 Artificial Intelligence +1612.02162 Dynamical Systems +1612.02164 +1612.02165 Logic +1612.02169 Strongly Correlated Electrons +1612.02172 Human-Computer Interaction +1612.02174 Information Theory +1612.02175 Information Theory +1612.02177 Computer Vision and Pattern Recognition +1612.02179 Machine Learning +1612.02183 Computer Vision and Pattern Recognition +1612.02185 Group Theory +1612.02186 Instrumentation and Methods for Astrophysics +1612.02188 +1612.02189 Applications +1612.02190 Computer Vision and Pattern Recognition +1612.02192 Machine Learning +1612.02195 Methodology +1612.02197 Complex Variables +1612.02200 Instrumentation and Detectors +1612.02201 Rings and Algebras +1612.02203 Computer Vision and Pattern Recognition +1612.02205 Symplectic Geometry +1612.02207 High Energy Astrophysical Phenomena +1612.02208 Numerical Analysis +1612.02209 Plasma Physics +1612.02211 +1612.02212 Theory +1612.02213 Information Theory +1612.02214 Plasma Physics +1612.02215 Solar and Stellar Astrophysics +1612.02216 Group Theory +1612.02218 Computer Vision and Pattern Recognition +1612.02219 Computer Vision and Pattern Recognition +1612.02220 Complex Variables +1612.02221 Statistical Mechanics +1612.02222 Learning +1612.02223 Computer Vision and Pattern Recognition +1612.02225 Phenomenology +1612.02228 Instrumentation and Detectors +1612.02229 Probability +1612.02230 Analysis of PDEs +1612.02231 Earth and Planetary Astrophysics +1612.02233 Neural and Evolutionary Computing +1612.02234 Combinatorics +1612.02235 Materials Science +1612.02238 Strongly Correlated Electrons +1612.02240 Theory +1612.02241 Algebraic Geometry +1612.02243 Neurons and Cognition +1612.02245 Statistical Mechanics +1612.02246 Mesoscale and Nanoscale Physics +1612.02247 Functional Analysis +1612.02250 High Energy Astrophysical Phenomena +1612.02252 Other Statistics +1612.02254 Algebraic Topology +1612.02255 Artificial Intelligence +1612.02257 Classical Analysis and ODEs +1612.02258 +1612.02259 +1612.02261 Computational Geometry +1612.02262 High Energy Astrophysical Phenomena +1612.02263 Mesoscale and Nanoscale Physics +1612.02265 Lattice +1612.02269 Phenomenology +1612.02272 Chaotic Dynamics +1612.02275 Materials Science +1612.02281 General Physics +1612.02283 Optimization and Control +1612.02286 Analysis of PDEs +1612.02290 Spectral Theory +1612.02297 Computer Vision and Pattern Recognition +1612.02299 Quantum Gases +1612.02300 Methodology +1612.02301 Analysis of PDEs +1612.02302 Analysis of PDEs +1612.02303 +1612.02305 Computational Physics +1612.02307 Networking and Internet Architecture +1612.02308 Rings and Algebras +1612.02310 Artificial Intelligence +1612.02312 Pricing of Securities +1612.02313 Superconductivity +1612.02314 Human-Computer Interaction +1612.02315 Statistics Theory +1612.02316 High Energy Astrophysical Phenomena +1612.02317 Optimization and Control +1612.02320 Information Theory +1612.02321 Probability +1612.02322 Complex Variables +1612.02323 General Physics +1612.02324 Physics and Society +1612.02325 General Physics +1612.02328 Optics +1612.02329 General Physics +1612.02331 High Energy Astrophysical Phenomena +1612.02333 +1612.02335 Computer Vision and Pattern Recognition +1612.02336 Neural and Evolutionary Computing +1612.02337 Lattice +1612.02339 Space Physics +1612.02340 +1612.02342 Probability +1612.02344 Optimization and Control +1612.02345 Cell Behavior +1612.02346 Logic in Computer Science +1612.02348 Solar and Stellar Astrophysics +1612.02349 Group Theory +1612.02352 Optimization and Control +1612.02354 +1612.02356 Dynamical Systems +1612.02357 Computation +1612.02360 Materials Science +1612.02361 Combinatorics +1612.02362 Materials Science +1612.02363 Theory +1612.02364 Lattice +1612.02365 Quantum Gases +1612.02366 Astrophysics of Galaxies +1612.02367 Probability +1612.02368 Numerical Analysis +1612.02369 Numerical Analysis +1612.02372 Computer Vision and Pattern Recognition +1612.02374 Computer Vision and Pattern Recognition +1612.02375 Networking and Internet Architecture +1612.02377 Social and Information Networks +1612.02378 +1612.02380 Statistical Mechanics +1612.02381 Representation Theory +1612.02382 Applications +1612.02383 Analysis of PDEs +1612.02384 Data Structures and Algorithms +1612.02385 Probability +1612.02388 Analysis of PDEs +1612.02389 Probability +1612.02390 +1612.02391 Statistics Theory +1612.02393 Optimization and Control +1612.02395 Instrumentation and Methods for Astrophysics +1612.02399 Theory +1612.02401 Computer Vision and Pattern Recognition +1612.02402 Algebraic Geometry +1612.02403 Experiment +1612.02404 Operator Algebras +1612.02405 Methodology +1612.02406 Differential Geometry +1612.02407 Probability +1612.02409 Mesoscale and Nanoscale Physics +1612.02410 Spectral Theory +1612.02412 Metric Geometry +1612.02413 Optics +1612.02414 Earth and Planetary Astrophysics +1612.02415 Algebraic Geometry +1612.02416 Methodology +1612.02417 Numerical Analysis +1612.02421 Optics +1612.02422 Soft Condensed Matter +0708.2549 Differential Geometry +0806.4708 Differential Geometry +0905.0515 Geometric Topology +0907.3441 Biomolecules +0910.4274 Statistical Mechanics +1001.2721 Number Theory +1001.3369 Number Theory +1104.3299 Algebraic Geometry +1109.2065 Group Theory +1203.3186 Operator Algebras +1302.5478 Quantum Algebra +1304.6283 Materials Science +1307.0408 Materials Science +1307.1885 Logic +1307.3543 Combinatorics +1307.6702 Networking and Internet Architecture +1308.3814 Optimization and Control +1311.6505 Distributed, Parallel, and Cluster Computing +1312.2333 Numerical Analysis +1312.4061 Mesoscale and Nanoscale Physics +1312.5127 Quantum Algebra +1312.6290 +1402.6185 Optimization and Control +1402.6641 Number Theory +1403.2203 Geometric Topology +1403.4112 Numerical Analysis +1404.4113 Spectral Theory +1405.5505 Machine Learning +1405.6247 Theory +1405.7438 Commutative Algebra +1405.7786 Numerical Analysis +1406.0445 Functional Analysis +1406.3168 Number Theory +1406.4290 Theory +1407.0524 Information Theory +1407.3580 Probability +1407.3611 Atomic Physics +1407.3625 Statistics Theory +1407.4296 Numerical Analysis +1407.6354 Theory +1408.2107 Metric Geometry +1408.2554 Logic +1408.5358 Algebraic Geometry +1409.3013 Probability +1409.5059 Logic +1410.1321 Differential Geometry +1410.3956 Strongly Correlated Electrons +1410.4620 Quantitative Methods +1410.7658 Theory +1410.7772 High Energy Astrophysical Phenomena +1411.0526 Algebraic Geometry +1411.0577 Operator Algebras +1411.0614 Pattern Formation and Solitons +1411.3468 Number Theory +1411.4856 Representation Theory +1411.6092 Statistical Mechanics +1411.7636 Logic +1501.00472 History and Overview +1501.02235 Algebraic Geometry +1501.05135 Probability +1501.05774 Materials Science +1501.07888 Symplectic Geometry +1502.00670 Functional Analysis +1503.01454 Probability +1503.07113 +1503.08408 Mesoscale and Nanoscale Physics +1504.00245 Differential Geometry +1504.00882 +1504.04990 Operator Algebras +1504.05173 Algebraic Geometry +1504.05291 Phenomenology +1505.00437 Computer Science and Game Theory +1505.00637 Phenomenology +1505.00777 High Energy Astrophysical Phenomena +1505.03328 Number Theory +1505.03420 Analysis of PDEs +1505.07684 Applications +1506.00314 Quantum Algebra +1506.01802 Instrumentation and Detectors +1506.02177 Number Theory +1506.02898 Strongly Correlated Electrons +1506.03869 Representation Theory +1506.04360 Strongly Correlated Electrons +1506.06596 Cosmology and Nongalactic Astrophysics +1506.07154 Mesoscale and Nanoscale Physics +1506.07577 Graphics +1506.08357 Algebraic Geometry +1507.01107 Soft Condensed Matter +1507.01360 Analysis of PDEs +1507.01726 Physics and Society +1507.02099 Digital Libraries +1507.02842 Representation Theory +1507.06595 +1507.07266 Statistical Mechanics +1507.07275 Materials Science +1507.07334 Geophysics +1507.07511 Atomic Physics +1507.08187 Software Engineering +1507.08515 Accelerator Physics +1507.08519 Optics +1508.00136 Combinatorics +1508.01162 Superconductivity +1508.02321 +1508.02632 Accelerator Physics +1508.04004 Mesoscale and Nanoscale Physics +1508.04629 +1508.05635 +1508.05763 Earth and Planetary Astrophysics +1508.06163 Computer Vision and Pattern Recognition +1508.07519 Analysis of PDEs +1508.07787 Mesoscale and Nanoscale Physics +1509.01077 +1509.02797 Algebraic Geometry +1509.03722 Algebraic Geometry +1509.04673 +1509.06624 +1509.06669 Numerical Analysis +1509.07191 Superconductivity +1509.08124 Methodology +1509.08284 Algebraic Geometry +1510.01389 Superconductivity +1510.01895 Quantum Gases +1510.03104 Information Theory +1510.03288 Theory +1510.03473 Statistical Mechanics +1510.04856 Phenomenology +1510.07484 Representation Theory +1510.07515 High Energy Astrophysical Phenomena +1510.07823 Materials Science +1510.07947 Atomic Physics +1510.08238 Instrumentation and Detectors +1511.00356 Strongly Correlated Electrons +1511.00603 +1511.01026 Optimization and Control +1511.01526 Optics +1511.01626 Theory +1511.03135 Statistical Mechanics +1511.03438 Dynamical Systems +1511.04009 +1511.04102 Strongly Correlated Electrons +1511.05176 Learning +1511.05634 Disordered Systems and Neural Networks +1511.05917 Numerical Analysis +1511.05952 Learning +1511.06306 Learning +1511.06608 Mesoscale and Nanoscale Physics +1511.07217 Probability +1511.08578 Number Theory +1512.00593 Cosmology and Nongalactic Astrophysics +1512.01335 Combinatorics +1512.02383 +1512.04067 Quantum Gases +1512.04314 Materials Science +1512.05050 Cosmology and Nongalactic Astrophysics +1512.08370 Optimization and Control +1512.08923 Theory +1601.00113 +1601.00687 Materials Science +1601.00807 Mesoscale and Nanoscale Physics +1601.01684 Mesoscale and Nanoscale Physics +1601.03034 Combinatorics +1601.03796 +1601.03999 Combinatorics +1601.04995 Accelerator Physics +1601.05129 Numerical Analysis +1601.06421 Information Theory +1601.06779 Operator Algebras +1601.07916 Fluid Dynamics +1602.00377 Networking and Internet Architecture +1602.00587 Neurons and Cognition +1602.01701 +1602.03797 +1602.03849 Probability +1602.04611 Mesoscale and Nanoscale Physics +1602.04659 Astrophysics of Galaxies +1602.06064 Computation and Language +1602.06075 Numerical Analysis +1602.06312 Classical Analysis and ODEs +1602.06409 +1602.06486 Classical Analysis and ODEs +1602.06495 Phenomenology +1602.06536 +1602.06678 Human-Computer Interaction +1602.06844 Databases +1602.06919 Analysis of PDEs +1602.06977 Human-Computer Interaction +1602.07206 +1602.07462 Logic +1602.07477 High Energy Astrophysical Phenomena +1602.07486 Logic in Computer Science +1602.07498 +1602.07507 Learning +1602.07531 Metric Geometry +1602.07608 Logic +1602.07646 General Literature +1602.07680 Physics Education +1602.07681 Chemical Physics +1602.07682 Complex Variables +1602.07686 Physics Education +1602.07692 High Energy Astrophysical Phenomena +1602.07706 Theory +1602.07708 Phenomenology +1602.07709 Instrumentation and Methods for Astrophysics +1602.07715 Formal Languages and Automata Theory +1602.07720 Computer Science and Game Theory +1602.07721 Artificial Intelligence +1602.07723 +1602.07724 Differential Geometry +1602.07725 Physics Education +1602.07732 Networking and Internet Architecture +1602.07733 Optimization and Control +1602.07734 Combinatorics +1602.07735 Mesoscale and Nanoscale Physics +1602.07736 Systems and Control +1602.07738 High Energy Astrophysical Phenomena +1602.07740 Physics Education +1602.07741 Solar and Stellar Astrophysics +1602.07744 Instrumentation and Methods for Astrophysics +1602.07745 Social and Information Networks +1602.07746 Physics Education +1602.07747 Materials Science +1602.07749 Computation and Language +1602.07750 Data Structures and Algorithms +1602.07751 Probability +1602.07755 Numerical Analysis +1602.07756 Physics Education +1602.07758 Subcellular Processes +1602.07759 Rings and Algebras +1602.07760 Optimization and Control +1602.07766 High Energy Astrophysical Phenomena +1602.07767 Sound +1602.07768 Optimization and Control +1602.07775 Geometric Topology +1602.07777 +1602.07781 Social and Information Networks +1602.07786 +1602.07787 Cryptography and Security +1602.07793 Strongly Correlated Electrons +1602.07794 Combinatorics +1602.07797 Lattice +1602.07799 Information Retrieval +1602.07802 Optimization and Control +1602.07803 Computation and Language +1602.07808 Networking and Internet Architecture +1602.07809 Metric Geometry +1602.07810 Computers and Society +1602.07812 Analysis of PDEs +1602.07813 Computers and Society +1602.07824 Differential Geometry +1602.07825 Optimization and Control +1602.07826 Materials Science +1602.07828 Logic +1602.07830 Classical Analysis and ODEs +1602.07834 Computational Physics +1602.07837 +1602.07838 Software Engineering +1602.07839 Combinatorics +1602.07840 Atomic Physics +1602.07841 Solar and Stellar Astrophysics +1602.07845 +1602.07847 Representation Theory +1602.07851 Computational Engineering, Finance, and Science +1602.07855 Geometric Topology +1602.07858 Number Theory +1602.07859 Information Theory +1602.07860 Artificial Intelligence +1602.07862 Complex Variables +1602.07863 Machine Learning +1602.07865 Machine Learning +1602.07872 Optimization and Control +1602.07873 Computer Vision and Pattern Recognition +1602.07876 Data Structures and Algorithms +1602.07881 Geophysics +1602.07884 Neural and Evolutionary Computing +1602.07886 Analysis of PDEs +1602.07888 Analysis of PDEs +1602.07897 Group Theory +1602.07899 Strongly Correlated Electrons +1602.07901 Logic +1602.07902 Computational Physics +1602.07904 Chemical Physics +1602.07921 +1602.07925 Solar and Stellar Astrophysics +1602.07928 Digital Libraries +1602.07929 Number Theory +1602.07935 Superconductivity +1602.07936 Social and Information Networks +1602.07941 Cosmology and Nongalactic Astrophysics +1602.07943 Information Theory +1602.07944 Information Theory +1602.07948 Symplectic Geometry +1602.07950 Mesoscale and Nanoscale Physics +1602.07953 Algebraic Geometry +1602.07955 Information Theory +1602.07956 Quantitative Methods +1602.07957 Biomolecules +1602.07960 Methodology +1602.07961 Dynamical Systems +1602.07964 Cell Behavior +1602.07965 Algebraic Topology +1602.07967 Formal Languages and Automata Theory +1602.07969 Cell Behavior +1602.07974 Chaotic Dynamics +1602.07977 Earth and Planetary Astrophysics +1602.07978 Performance +1602.07982 Theory +1602.07985 Artificial Intelligence +1602.07987 Number Theory +1602.07988 Mesoscale and Nanoscale Physics +1602.07995 Probability +1602.07996 Commutative Algebra +1602.07998 Solar and Stellar Astrophysics +1602.07999 Quantum Algebra +1602.08000 Differential Geometry +1602.08001 Plasma Physics +1602.08007 Neural and Evolutionary Computing +1602.08012 Group Theory +1602.08015 Fluid Dynamics +1602.08016 Analysis of PDEs +1602.08018 Differential Geometry +1602.08019 +1602.08021 Optimization and Control +1602.08022 Discrete Mathematics +1602.08025 Commutative Algebra +1602.08026 Atomic Physics +1602.08029 Representation Theory +1602.08030 Accelerator Physics +1602.08034 Computational Complexity +1602.08040 Phenomenology +1602.08041 Phenomenology +1602.08042 Numerical Analysis +1602.08044 Sound +1602.08051 Quantum Algebra +1602.08052 Solar and Stellar Astrophysics +1602.08058 Superconductivity +1602.08060 Superconductivity +1602.08063 Computer Science and Game Theory +1602.08067 Networking and Internet Architecture +1602.08071 Physics and Society +1602.08078 Materials Science +1602.08079 Biomolecules +1602.08088 Phenomenology +1602.08090 Physics Education +cond-mat/0003510 Statistical Mechanics +cond-mat/0109046 +cond-mat/0109375 +cond-mat/0212430 +cond-mat/0608200 Statistical Mechanics +1504.00427 Social and Information Networks +1504.04447 +1504.05855 Strongly Correlated Electrons +1505.04060 General Finance +1507.05264 Strongly Correlated Electrons +1507.06924 Phenomenology +1508.06886 Methodology +1509.02238 Social and Information Networks +1510.03537 Methodology +1510.04963 Materials Science +1510.05678 +1510.07432 Optics +1611.00356 Computers and Society +1511.00753 High Energy Astrophysical Phenomena +1511.00915 Programming Languages +1511.00955 Astrophysics of Galaxies +1511.01345 +1511.01942 Learning +1511.02001 Applications +1511.02181 Phenomenology +1511.03308 Classical Analysis and ODEs +1511.03647 Earth and Planetary Astrophysics +1511.04414 Instrumentation and Methods for Astrophysics +1511.05483 Computation +1511.06510 Human-Computer Interaction +1511.07522 Solar and Stellar Astrophysics +1511.07584 +1511.07620 Solar and Stellar Astrophysics +1511.07686 +1511.07756 Soft Condensed Matter +1511.07823 Numerical Analysis +1511.07829 Information Theory +1511.07870 Astrophysics of Galaxies +1511.08441 Mesoscale and Nanoscale Physics +1512.00305 Instrumentation and Detectors +1512.01399 Analysis of PDEs +1512.02506 Solar and Stellar Astrophysics +1512.02909 Cryptography and Security +1512.02992 Experiment +1512.03563 Probability +1512.05568 Logic in Computer Science +1512.07366 Experiment +1601.01493 Combinatorics +1601.01794 Instrumentation and Detectors +1601.07853 Functional Analysis +1601.07866 +1602.00228 Strongly Correlated Electrons +1602.02533 Solar and Stellar Astrophysics +1602.02716 Solar and Stellar Astrophysics +1602.03112 Analysis of PDEs +1602.03839 +1602.04643 +1602.05804 Materials Science +1602.06174 Data Structures and Algorithms +1602.06804 Mesoscale and Nanoscale Physics +1602.07016 Statistical Mechanics +1602.07224 Experiment +1602.08064 +1602.08479 Solar and Stellar Astrophysics +1603.00237 Quantum Algebra +1603.00827 Lattice +1603.02312 Spectral Theory +1603.03038 Solar and Stellar Astrophysics +1603.04804 Experiment +1603.06546 Experiment +1603.07157 Chaotic Dynamics +1603.07340 Computational Geometry +1603.07928 Astrophysics of Galaxies +1603.09141 Statistics Theory +1603.09157 Computation +1603.09529 Solar and Stellar Astrophysics +1604.00323 Solar and Stellar Astrophysics +1604.00805 Soft Condensed Matter +1604.01710 Experiment +1604.02057 Solar and Stellar Astrophysics +1604.02374 +1604.05172 Data Structures and Algorithms +1604.07259 Computer Science and Game Theory +1604.07772 Complex Variables +1605.00990 Experiment +1605.01200 Astrophysics of Galaxies +1605.01524 Astrophysics of Galaxies +1605.02454 Atomic Physics +1605.02528 Functional Analysis +1605.02539 Mathematical Finance +1605.02603 Astrophysics of Galaxies +1605.03505 Instrumentation and Detectors +1605.03844 Instrumentation and Detectors +1605.03889 Experiment +1605.03978 Instrumentation and Detectors +1605.04237 Information Theory +1605.04868 Solar and Stellar Astrophysics +1606.01168 Combinatorics +1606.01209 Solar and Stellar Astrophysics +1606.01276 Experiment +1606.04028 +1606.04345 Artificial Intelligence +1606.05404 High Energy Astrophysical Phenomena +1606.06776 Atomic Physics +1606.06890 Quantum Gases +1606.08636 +1606.09265 High Energy Astrophysical Phenomena +1606.09405 Analysis of PDEs +1606.09541 +0804.4823 Differential Geometry +0904.4842 Statistical Mechanics +0906.5552 Mesoscale and Nanoscale Physics +1006.2616 +1010.0861 Differential Geometry +1010.1879 Differential Geometry +1101.4958 High Energy Astrophysical Phenomena +1104.4827 Number Theory +1108.5773 Dynamical Systems +1109.1487 +1110.0257 Astrophysics of Galaxies +1112.2495 Computational Complexity +1201.2690 Probability +1202.6551 +1204.4564 Computational Complexity +1206.1384 Astrophysics of Galaxies +1207.4728 High Energy Astrophysical Phenomena +1301.2911 Analysis of PDEs +1302.0442 Probability +1302.6168 Phenomenology +1304.2573 Algebraic Geometry +1304.7105 +1305.3211 Algebraic Geometry +1307.2082 Phenomenology +1307.2677 Geometric Topology +1308.1024 Materials Science +1308.5832 Rings and Algebras +1309.6983 Mesoscale and Nanoscale Physics +1311.1267 Accelerator Physics +1311.3011 Computation and Language +1312.4390 Materials Science +1401.7685 +1402.2524 Materials Science +1403.5741 Differential Geometry +1403.6255 Statistical Mechanics +1404.4938 Geometric Topology +1405.1417 Astrophysics of Galaxies +1405.5205 +1405.5822 Probability +1405.6342 Probability +1406.3586 Optics +1406.5712 Complex Variables +1406.7392 Algebraic Topology +1406.7730 Logic +1408.1011 Databases +1408.4769 Differential Geometry +1408.5185 Mesoscale and Nanoscale Physics +1409.0421 Cryptography and Security +1409.2149 Probability +1409.4575 Information Theory +1409.5640 Statistics Theory +1410.3698 Instrumentation and Detectors +1410.5500 Algebraic Topology +1411.3759 Number Theory +1411.4350 Number Theory +1412.3061 Fluid Dynamics +1412.3208 Symplectic Geometry +1412.4704 +1501.06435 +1501.07578 Differential Geometry +1502.00680 Trading and Market Microstructure +1502.01799 High Energy Astrophysical Phenomena +1502.04368 Discrete Mathematics +1502.05795 Differential Geometry +1502.06672 Information Theory +1502.07983 Probability +1503.01466 High Energy Astrophysical Phenomena +1503.03008 +1503.06367 Combinatorics +1504.01720 Differential Geometry +1504.02598 Number Theory +1504.02827 Combinatorics +1504.05678 +1504.06896 Applications +1505.00039 Computer Science and Game Theory +1505.00635 Algebraic Geometry +1505.01012 Numerical Analysis +1505.02622 +1505.03421 Networking and Internet Architecture +1505.05293 Metric Geometry +1505.05730 Biomolecules +1505.06682 Operator Algebras +1506.01274 Earth and Planetary Astrophysics +1506.03055 +1506.04636 Analysis of PDEs +1506.06253 Metric Geometry +1506.06861 Probability +1506.07034 Chaotic Dynamics +1506.09122 +1506.09128 Number Theory +1507.01854 Geometric Topology +1507.02878 Optimization and Control +1507.03931 Classical Analysis and ODEs +1507.07381 Combinatorics +1507.07960 Combinatorics +1507.08264 Theory +1507.08397 Differential Geometry +1508.01906 Optimization and Control +1508.02645 Data Analysis, Statistics and Probability +1508.03437 Combinatorics +1508.03570 +1508.04598 Statistical Mechanics +1508.05778 Analysis of PDEs +1508.05975 Statistical Mechanics +1508.06475 Theory +1508.07030 Combinatorics +1508.07523 Number Theory +1509.01085 Mesoscale and Nanoscale Physics +1509.02509 Operator Algebras +1509.03790 Dynamical Systems +1509.06653 Geometric Topology +1510.00040 Numerical Analysis +1510.00358 High Energy Astrophysical Phenomena +1510.00879 Fluid Dynamics +1510.01567 Analysis of PDEs +1510.02704 Probability +1510.02961 Optimization and Control +1510.04237 Geometric Topology +1510.06213 Representation Theory +1510.06291 Geometric Topology +1510.06997 Dynamical Systems +1510.07139 Combinatorics +1510.07140 Combinatorics +1510.07231 Analysis of PDEs +1511.00090 +1511.02495 Solar and Stellar Astrophysics +1511.02712 Statistical Mechanics +1511.05124 +1511.05784 Superconductivity +1511.06553 +1511.07568 Information Theory +1511.07853 Phenomenology +1511.08201 Theory +1512.00570 Learning +1512.01889 +1512.02286 Plasma Physics +1512.02892 +1512.02929 Probability +1512.03528 Algebraic Topology +1512.03987 Statistics Theory +1512.04137 Number Theory +1512.05522 Plasma Physics +1512.05838 Analysis of PDEs +1512.06718 +1512.07137 +1601.01378 +1601.01902 Probability +1601.04107 Materials Science +1601.04409 +1601.05964 Operator Algebras +1602.01802 Soft Condensed Matter +1602.01814 Mesoscale and Nanoscale Physics +1602.03448 Combinatorics +1602.04318 Analysis of PDEs +1602.04405 Representation Theory +1602.05045 Computer Science and Game Theory +1602.06298 Mesoscale and Nanoscale Physics +1602.07357 Fluid Dynamics +1602.08226 Numerical Analysis +1602.09138 +1603.00189 Representation Theory +1603.00667 Chaotic Dynamics +1603.00678 Theory +1603.00907 Probability +1603.03115 Medical Physics +1603.03433 Mesoscale and Nanoscale Physics +1603.04059 Group Theory +1603.04091 Dynamical Systems +1603.04780 Systems and Control +1603.05237 Probability +1603.05412 Optimization and Control +1603.06505 +1603.07167 Dynamical Systems +1603.08069 Chemical Physics +1603.09265 Analysis of PDEs +1603.09459 Instrumentation and Detectors +1603.09669 Instrumentation and Detectors +1604.00231 Materials Science +1604.00534 Mesoscale and Nanoscale Physics +1604.00951 Popular Physics +1604.01904 Computation and Language +1604.01980 Computer Vision and Pattern Recognition +1604.02561 Mesoscale and Nanoscale Physics +1604.02810 Numerical Analysis +1604.03118 +1604.03807 +1604.04440 Mesoscale and Nanoscale Physics +1604.05301 +1604.05926 +1604.06234 Instrumentation and Detectors +1604.06503 Logic in Computer Science +1604.07309 Logic +1604.07672 History and Philosophy of Physics +1604.07711 Machine Learning +1604.08516 Sound +1605.00655 Disordered Systems and Neural Networks +1605.00717 Algebraic Geometry +1605.01610 Analysis of PDEs +1605.01700 +1605.01850 Representation Theory +1605.02483 Cosmology and Nongalactic Astrophysics +1605.02931 Probability +1605.04273 Superconductivity +1605.05028 Solar and Stellar Astrophysics +1605.05871 Materials Science +1605.05933 Statistics Theory +1605.06017 Differential Geometry +1605.06419 +1605.06422 Learning +1605.06772 Phenomenology +1605.06875 Mesoscale and Nanoscale Physics +1605.07844 Information Retrieval +1605.08206 Analysis of PDEs +1605.08462 Optimization and Control +1605.08529 +1606.00015 Quantum Gases +1606.00221 Functional Analysis +1606.00343 Classical Analysis and ODEs +1606.00871 Analysis of PDEs +1606.01437 Probability +1606.02002 Representation Theory +1606.02079 +1606.02729 Astrophysics of Galaxies +1606.03110 Analysis of PDEs +1606.03457 Theory +1606.03579 Number Theory +1606.04121 Differential Geometry +1606.04190 Artificial Intelligence +1606.04557 Superconductivity +1606.05229 Machine Learning +1606.05379 General Topology +1606.06848 Functional Analysis +1606.07685 Adaptation and Self-Organizing Systems +1606.08437 Theory +1606.09218 Numerical Analysis +1607.00532 Geometric Topology +1607.00540 +1607.01176 Experiment +1607.01451 Differential Geometry +1607.01820 High Energy Astrophysical Phenomena +1607.02485 Strongly Correlated Electrons +1607.02555 Computer Vision and Pattern Recognition +1607.02696 +1607.03611 Artificial Intelligence +1607.05318 +1607.05469 Algebraic Geometry +1607.05825 Combinatorics +1607.05838 Combinatorics +1607.06147 Algebraic Geometry +1607.06611 Differential Geometry +1607.07377 Cosmology and Nongalactic Astrophysics +1607.08051 Phenomenology +1607.08893 Superconductivity +1608.00242 Learning +1608.00427 Optimization and Control +1608.00466 Computation and Language +1608.01234 Machine Learning +1608.01296 Information Theory +1608.01565 Instrumentation and Detectors +1608.01847 Pattern Formation and Solitons +1608.02710 Symplectic Geometry +1608.03781 Phenomenology +1608.04171 Neural and Evolutionary Computing +1608.04631 Computation and Language +1608.04757 Astrophysics of Galaxies +1608.05001 Computer Vision and Pattern Recognition +1608.05857 Operator Algebras +1608.06279 Metric Geometry +1608.06958 Optimization and Control +1608.07039 Cosmology and Nongalactic Astrophysics +1608.07177 Classical Physics +1608.08432 Analysis of PDEs +1608.08658 Mathematical Software +1608.08709 Functional Analysis +1609.00193 Phenomenology +1609.01724 Differential Geometry +1609.01847 +1609.02445 Phenomenology +1609.02795 Computer Science and Game Theory +1609.03285 Optimization and Control +1609.05352 Cryptography and Security +1609.05696 Classical Analysis and ODEs +1609.05769 Mesoscale and Nanoscale Physics +1609.06092 Atomic Physics +1609.06168 +1609.06367 Materials Science +1609.06425 Analysis of PDEs +1609.06503 Accelerator Physics +1609.06575 Machine Learning +1609.06582 Cryptography and Security +1609.07161 Materials Science +1609.07290 Statistical Mechanics +1609.07298 Statistical Mechanics +1609.07417 Phenomenology +1609.08144 Computation and Language +1609.08250 Mesoscale and Nanoscale Physics +1609.09171 Computation and Language +1609.09320 Theory +1609.09597 Social and Information Networks +1609.09799 Machine Learning +1609.09806 Differential Geometry +1610.00144 Representation Theory +1610.00267 Analysis of PDEs +1610.00360 Combinatorics +1610.00439 Superconductivity +1610.00464 Theory +1610.00487 Number Theory +1610.00499 Statistical Mechanics +1610.00550 Mesoscale and Nanoscale Physics +1610.00809 Combinatorics +1610.01063 Number Theory +1610.01217 Neurons and Cognition +1610.01260 Combinatorics +1610.01270 General Finance +1610.01327 Information Retrieval +1610.01371 Astrophysics of Galaxies +1610.01392 Materials Science +1610.01549 Machine Learning +1610.01585 Information Theory +1610.01848 Rings and Algebras +1610.01893 Classical Analysis and ODEs +1610.01985 High Energy Astrophysical Phenomena +1610.02000 Theory +1610.02114 Mesoscale and Nanoscale Physics +1610.02160 Functional Analysis +1610.02252 Dynamical Systems +1610.02260 Logic in Computer Science +1610.02276 Human-Computer Interaction +1610.02395 Neurons and Cognition +1610.02397 Algebraic Geometry +1610.02399 Cosmology and Nongalactic Astrophysics +1610.02400 Instrumentation and Methods for Astrophysics +1610.02401 Solar and Stellar Astrophysics +1610.02402 Solar and Stellar Astrophysics +1610.02406 Mesoscale and Nanoscale Physics +1610.02408 +1610.02409 Astrophysics of Galaxies +1610.02410 Group Theory +1610.02411 Astrophysics of Galaxies +1610.02413 Learning +1610.02414 Computer Vision and Pattern Recognition +1610.02417 Algebraic Geometry +1610.02418 Rings and Algebras +1610.02421 Theory +1610.02423 Analysis of PDEs +1610.02424 Artificial Intelligence +1610.02428 Differential Geometry +1610.02431 Computer Vision and Pattern Recognition +1610.02432 Optimization and Control +1610.02434 Dynamical Systems +1610.02436 Methodology +1610.02442 Human-Computer Interaction +1610.02443 Multimedia +1610.02445 Human-Computer Interaction +1610.02447 Methodology +1610.02448 Physics and Society +1610.02449 Probability +1610.02452 Analysis of PDEs +1610.02453 Category Theory +1610.02454 Computer Vision and Pattern Recognition +1610.02455 Databases +1610.02461 Classical Analysis and ODEs +1610.02462 Dynamical Systems +1610.02465 Systems and Control +1610.02466 Optics +1610.02468 Robotics +1610.02469 Optimization and Control +1610.02470 Systems and Control +1610.02471 Neurons and Cognition +1610.02473 Numerical Analysis +1610.02474 +1610.02475 Sound +1610.02477 +1610.02478 Neural and Evolutionary Computing +1610.02482 Robotics +1610.02484 Neurons and Cognition +1610.02486 Optimization and Control +1610.02488 Multimedia +1610.02489 Materials Science +1610.02491 +1610.02492 Complex Variables +1610.02493 Computation and Language +1610.02494 +1610.02497 Information Theory +1610.02498 +1610.02500 Logic in Computer Science +1610.02501 Machine Learning +1610.02502 Information Retrieval +1610.02503 Methodology +1610.02506 +1610.02508 Applications +1610.02511 Information Theory +1610.02512 Information Theory +1610.02513 +1610.02514 +1610.02515 Applications +1610.02518 Combinatorics +1610.02519 Analysis of PDEs +1610.02521 Disordered Systems and Neural Networks +1610.02524 Optics +1610.02525 Analysis of PDEs +1610.02526 Cryptography and Security +1610.02527 Learning +1610.02528 Physics and Society +1610.02529 Analysis of PDEs +1610.02532 Probability +1610.02534 Cryptography and Security +1610.02539 Combinatorics +1610.02540 Metric Geometry +1610.02541 Algebraic Geometry +1610.02543 Tissues and Organs +1610.02544 Computation and Language +1610.02545 Number Theory +1610.02546 Mesoscale and Nanoscale Physics +1610.02547 Digital Libraries +1610.02548 Neurons and Cognition +1610.02555 Soft Condensed Matter +1610.02557 Functional Analysis +1610.02558 Data Analysis, Statistics and Probability +1610.02560 +1610.02561 Probability +1610.02563 Dynamical Systems +1610.02565 Optics +1610.02566 Information Theory +1610.02567 Computation and Language +1610.02568 Atmospheric and Oceanic Physics +1610.02569 Astrophysics of Galaxies +1610.02572 Astrophysics of Galaxies +1610.02573 Robotics +1610.02574 Combinatorics +1610.02575 Social and Information Networks +1610.02577 Solar and Stellar Astrophysics +1610.02578 Information Theory +1610.02579 Computer Vision and Pattern Recognition +1610.02582 General Mathematics +1610.02583 Learning +1610.02588 Computation +1610.02589 Networking and Internet Architecture +1610.02593 Probability +1610.02594 Exactly Solvable and Integrable Systems +1610.02596 Optimization and Control +1610.02597 Optics +1610.02599 Commutative Algebra +1610.02600 Operator Algebras +1610.02601 Astrophysics of Galaxies +1610.02602 Functional Analysis +1610.02603 Analysis of PDEs +1610.02605 Strongly Correlated Electrons +1610.02607 Instrumentation and Methods for Astrophysics +1610.02611 Complex Variables +1610.02612 Statistical Mechanics +1610.02614 Pattern Formation and Solitons +1610.02615 Representation Theory +1610.02616 Computer Vision and Pattern Recognition +1610.02617 Optimization and Control +1610.02619 Metric Geometry +1610.02620 Information Theory +1610.02621 Representation Theory +1610.02622 Differential Geometry +1610.02623 Numerical Analysis +1610.02624 Accelerator Physics +1610.02625 Strongly Correlated Electrons +1610.02627 Robotics +1610.02628 Accelerator Physics +1610.02629 Phenomenology +1610.02630 Superconductivity +1610.02631 Fluid Dynamics +1610.02632 Solar and Stellar Astrophysics +1610.02633 Computation and Language +1610.02634 Logic +1610.02635 Phenomenology +1610.02637 Analysis of PDEs +1610.02638 +1610.02639 +1610.02640 Representation Theory +1610.02641 Dynamical Systems +1610.02642 Phenomenology +1610.02644 Astrophysics of Galaxies +1610.02645 Representation Theory +1610.02647 +1610.02649 Machine Learning +1610.02651 Computer Vision and Pattern Recognition +1610.02653 Applications +1610.02654 Materials Science +1610.02655 Commutative Algebra +1610.02656 Medical Physics +1610.02658 Cryptography and Security +1610.02660 Physics and Society +1610.02662 Analysis of PDEs +1610.02664 Optics +1610.02665 Chemical Physics +1610.02667 Computers and Society +1610.02670 Information Theory +1610.02671 +1610.02672 Group Theory +1610.02673 Analysis of PDEs +1610.02676 Combinatorics +1610.02677 +1610.02678 Analysis of PDEs +1610.02680 Statistics Theory +1610.02682 +1610.02683 Computation and Language +1610.02684 Computational Physics +1610.02685 Materials Science +1610.02686 Computational Complexity +1610.02688 Superconductivity +1610.02691 Geometric Topology +1610.02692 Computation and Language +1610.02693 Strongly Correlated Electrons +1610.02694 Rings and Algebras +1610.02695 Mesoscale and Nanoscale Physics +1610.02700 Probability +1610.02702 Instrumentation and Methods for Astrophysics +1610.02706 Logic +1610.02707 Artificial Intelligence +1610.02708 Applications +1610.02711 Astrophysics of Galaxies +1610.02712 Dynamical Systems +1610.02714 Computer Vision and Pattern Recognition +1610.02715 Numerical Analysis +1610.02717 Functional Analysis +1610.02718 Analysis of PDEs +1610.02719 Strongly Correlated Electrons +1610.02724 Discrete Mathematics +1610.02729 Logic +1610.02730 Differential Geometry +1610.02731 Algebraic Geometry +1610.02732 Neural and Evolutionary Computing +1610.02735 Information Theory +1610.02736 Physics and Society +1610.02739 Differential Geometry +1610.02740 Differential Geometry +1610.02742 Distributed, Parallel, and Cluster Computing +1610.02743 Cosmology and Nongalactic Astrophysics +1610.02749 Computation and Language +1610.02750 Number Theory +1610.02751 Computation and Language +1610.02753 Statistics Theory +1610.02755 +1610.02756 Chemical Physics +1610.02757 Machine Learning +1610.02759 Mesoscale and Nanoscale Physics +1610.02760 Computer Vision and Pattern Recognition +1610.02762 Computer Vision and Pattern Recognition +1610.02763 Functional Analysis +1610.02764 Materials Science +1610.02765 Information Theory +1610.02766 Probability +1610.02768 Fluid Dynamics +1610.02769 Graphics +1610.02770 Probability +1610.02772 Astrophysics of Galaxies +1610.02778 Probability +1610.02779 Atomic Physics +1610.02780 Numerical Analysis +1610.02781 Optimization and Control +1610.02782 Algebraic Geometry +1610.02783 Medical Physics +1610.02785 History and Philosophy of Physics +1610.02787 Computer Science and Game Theory +1610.02789 Functional Analysis +1610.02791 Functional Analysis +1610.02792 Phenomenology +1610.02796 Computational Engineering, Finance, and Science +1610.02799 Instrumentation and Detectors +1610.02800 Information Theory +1610.02803 Disordered Systems and Neural Networks +1610.02805 Materials Science +1610.02806 Computation and Language +1610.02809 Information Theory +1610.02810 +1610.02811 Mesoscale and Nanoscale Physics +1610.02812 Statistical Mechanics +1610.02814 Dynamical Systems +1610.02815 Other Computer Science +1610.02816 Information Theory +1610.02818 Mesoscale and Nanoscale Physics +1610.02820 Data Structures and Algorithms +1610.02822 +1610.02823 +1610.02824 +1610.02825 Functional Analysis +1610.02828 Artificial Intelligence +1610.02829 Optimization and Control +1610.02830 Optics +1610.02832 Logic +1610.02834 Dynamical Systems +1610.02838 Astrophysics of Galaxies +1610.02839 Combinatorics +1610.02843 Soft Condensed Matter +1610.02845 Rings and Algebras +1610.02847 Artificial Intelligence +1610.02850 Computer Vision and Pattern Recognition +1610.02852 Numerical Analysis +1610.02853 Analysis of PDEs +1610.02854 Strongly Correlated Electrons +1610.02857 Human-Computer Interaction +1610.02860 Lattice +1610.02863 Statistical Finance +1610.02866 Probability +1610.02869 Social and Information Networks +1610.02871 Astrophysics of Galaxies +1610.02872 Statistics Theory +1610.02873 K-Theory and Homology +1610.02874 Cryptography and Security +1610.02875 +1610.02876 Learning +1610.02877 Probability +1610.02878 Physics and Society +1610.02880 Geometric Topology +1610.02882 +1610.02883 Phenomenology +1610.02884 Instrumentation and Detectors +1610.02885 Distributed, Parallel, and Cluster Computing +1610.02888 Probability +1610.02889 Optimization and Control +1610.02893 +1610.02894 Optimization and Control +1610.02895 Computer Science and Game Theory +1610.02896 Combinatorics +1610.02897 Materials Science +1610.02898 Differential Geometry +1610.02899 Instrumentation and Methods for Astrophysics +1610.02900 Probability +1610.02901 +1610.02902 Computer Vision and Pattern Recognition +1610.02903 Optimization and Control +1610.02905 Numerical Analysis +1610.02907 Fluid Dynamics +1610.02909 Information Theory +1610.02913 Instrumentation and Methods for Astrophysics +1610.02916 Instrumentation and Methods for Astrophysics +1610.02917 Algebraic Topology +1610.02919 Information Theory +1610.02922 Computers and Society +1610.02923 Computer Vision and Pattern Recognition +1610.02924 +1610.02925 +1610.02927 Quantum Gases +1610.02928 Atomic Physics +1610.02929 Mesoscale and Nanoscale Physics +1610.02930 Dynamical Systems +1610.02931 Distributed, Parallel, and Cluster Computing +1610.02932 Differential Geometry +1610.02933 Optimization and Control +1610.02934 Representation Theory +1610.02935 Geophysics +1610.02936 Phenomenology +1610.02937 Geophysics +1610.02938 +1610.02939 Chaotic Dynamics +1610.02942 Materials Science +1610.02943 Multiagent Systems +1610.02946 Superconductivity +1610.02949 Materials Science +1610.02950 +1610.02951 +1610.02952 Programming Languages +1610.02953 Data Structures and Algorithms +1610.02954 +1610.02957 Combinatorics +1610.02961 +1610.02965 Combinatorics +1610.02966 Representation Theory +1610.02967 Optimization and Control +1610.02968 Physics Education +1610.02969 Solar and Stellar Astrophysics +1610.02971 Combinatorics +1610.02976 Statistical Mechanics +1610.02977 Mesoscale and Nanoscale Physics +1610.02978 Number Theory +1610.02979 Probability +1610.02980 Biological Physics +1610.02982 Combinatorics +1610.02984 Computer Vision and Pattern Recognition +1610.02985 Analysis of PDEs +1610.02986 Differential Geometry +1610.02993 +1610.02995 Learning +1610.02996 Theory +1610.02997 Data Structures and Algorithms +1610.02999 Lattice +1610.03000 Statistical Mechanics +1610.03004 Group Theory +1610.03006 Group Theory +1610.03007 Data Structures and Algorithms +1610.03009 Sound +1610.03010 Mesoscale and Nanoscale Physics +1610.03012 +1610.03013 Computer Science and Game Theory +1610.03014 Numerical Analysis +1610.03018 Phenomenology +1610.03021 Analysis of PDEs +1610.03022 Computation and Language +1610.03026 Mesoscale and Nanoscale Physics +1610.03028 Robotics +1610.03029 Computational Complexity +1610.03030 Materials Science +1610.03032 Mesoscale and Nanoscale Physics +1610.03034 Algebraic Geometry +1610.03036 +1610.03037 Probability +1610.03041 +1610.03043 Theory +1610.03045 Learning +1610.03047 Instrumentation and Methods for Astrophysics +1610.03048 Information Theory +1610.03050 Mathematical Finance +1610.03052 Logic in Computer Science +cs/0209024 Networking and Internet Architecture +cs/0209025 Networking and Internet Architecture +quant-ph/0402204 +quant-ph/0407008 +1510.00438 Combinatorics +0803.2690 +1003.1943 Commutative Algebra +1011.1806 Algebraic Geometry +1011.4228 Combinatorics +1106.4810 Geometric Topology +1108.2465 Differential Geometry +1110.6752 Superconductivity +1111.0632 Symplectic Geometry +1111.1893 Number Theory +1111.6691 Networking and Internet Architecture +1202.1033 +1202.3337 Category Theory +1206.4809 Logic +1210.1425 Category Theory +1212.4068 K-Theory and Homology +1305.0058 K-Theory and Homology +1306.3327 +1306.4143 Symplectic Geometry +1306.4562 Number Theory +1307.2968 Probability +1308.0178 Information Theory +1308.2773 Computational Engineering, Finance, and Science +1309.5272 Representation Theory +1309.7828 Numerical Analysis +1310.2486 Instrumentation and Detectors +1311.0457 Superconductivity +1312.1396 +1401.4827 Statistics Theory +1402.1618 Number Theory +1402.3210 Information Theory +1402.4798 Operator Algebras +1402.4922 High Energy Astrophysical Phenomena +1404.0569 Differential Geometry +1404.6462 Methodology +1405.0896 Algebraic Geometry +1405.5492 Representation Theory +1405.5776 Number Theory +1405.6602 Fluid Dynamics +1406.5726 Computer Vision and Pattern Recognition +1407.5974 Probability +1408.0902 Differential Geometry +1408.1643 Representation Theory +1409.1926 +1409.6011 Data Structures and Algorithms +1409.7421 Analysis of PDEs +1410.1219 Combinatorics +1410.2404 Differential Geometry +1412.1683 Computational Geometry +1412.3099 Materials Science +1412.7392 Computation +1501.00585 History and Philosophy of Physics +1501.00932 Dynamical Systems +1502.06135 Theory +1502.06445 Phenomenology +1502.07500 +1503.01372 Dynamical Systems +1503.07368 Statistics Theory +1503.08270 Combinatorics +1504.01055 Optics +1504.02222 Formal Languages and Automata Theory +1504.04491 Numerical Analysis +1504.05506 Differential Geometry +1504.05826 Theory +1504.06753 Instrumentation and Detectors +1504.08246 Number Theory +1504.08266 Instrumentation and Detectors +1505.03665 Algebraic Geometry +1505.05626 Rings and Algebras +1505.07085 Instrumentation and Detectors +1506.07968 Representation Theory +1507.01048 Discrete Mathematics +1507.02550 Classical Analysis and ODEs +1507.02970 +1507.04268 Representation Theory +1507.05180 Phenomenology +1507.05609 Probability +1507.08967 Distributed, Parallel, and Cluster Computing +1508.00335 Information Theory +1508.00943 Rings and Algebras +1508.01167 Methodology +1508.02460 Instrumentation and Detectors +1508.02700 Dynamical Systems +1508.02756 Probability +1508.02768 Physics and Society +1508.02963 Quantum Algebra +1508.07920 Information Theory +1509.00922 Methodology +1509.01832 Metric Geometry +1509.02029 Methodology +1509.03454 Soft Condensed Matter +1509.03914 Algebraic Geometry +1509.05044 Theory +1509.07007 Data Structures and Algorithms +1510.01728 Systems and Control +1510.02842 Solar and Stellar Astrophysics +1510.03006 Number Theory +1510.03645 Number Theory +1510.05662 Superconductivity +1510.06518 Mesoscale and Nanoscale Physics +1510.08832 Probability +1511.01657 Dynamical Systems +1511.03512 Spectral Theory +1511.04986 Learning +1511.06132 Combinatorics +1511.06895 Analysis of PDEs +1511.07019 Complex Variables +1511.07525 Instrumentation and Detectors +1512.00895 Optimization and Control +1512.02843 Optimization and Control +1512.03486 Strongly Correlated Electrons +1512.04523 Differential Geometry +1512.05556 Dynamical Systems +1512.06014 Computer Vision and Pattern Recognition +1512.06818 +1512.07815 Computer Vision and Pattern Recognition +1601.02111 Differential Geometry +1601.03060 Neurons and Cognition +1601.03682 +1601.03883 Phenomenology +1601.04042 Probability +1601.04204 Operator Algebras +1601.05661 Information Theory +1601.05798 High Energy Astrophysical Phenomena +1601.06432 Methodology +1602.00141 +1602.00387 Materials Science +1602.00483 Phenomenology +1602.01537 Databases +1602.01916 Analysis of PDEs +1602.02209 Data Analysis, Statistics and Probability +1602.02220 Learning +1602.02364 +1602.02829 History and Philosophy of Physics +1602.03778 Complex Variables +1602.03842 High Energy Astrophysical Phenomena +1602.04193 Optimization and Control +1602.04230 Soft Condensed Matter +1602.04477 Algebraic Geometry +1602.05782 Physics and Society +1602.05806 Numerical Analysis +1602.06433 Logic +1602.07116 Adaptation and Self-Organizing Systems +1602.07933 Methodology +1602.08194 Machine Learning +1603.00555 Data Analysis, Statistics and Probability +1603.01874 Methodology +1603.02636 Robotics +1603.03939 Commutative Algebra +1603.04704 Fluid Dynamics +1603.04818 Metric Geometry +1603.05083 +1603.05092 Soft Condensed Matter +1603.05841 Materials Science +1603.05847 Materials Science +1603.06825 Mathematical Finance +1603.07004 Mesoscale and Nanoscale Physics +1603.07092 Optics +1603.07973 Strongly Correlated Electrons +1603.08182 Computer Vision and Pattern Recognition +1603.08340 Systems and Control +1603.08395 Algebraic Geometry +1603.08898 Materials Science +1603.09330 K-Theory and Homology +1604.00316 Combinatorics +1604.00669 Phenomenology +1604.01133 Algebraic Geometry +1604.02523 Robotics +1604.02524 Robotics +1604.03303 Robotics +1604.03308 Robotics +1604.03451 Strongly Correlated Electrons +1604.04216 Strongly Correlated Electrons +1604.04851 Robotics +1604.04854 Robotics +1604.05094 Earth and Planetary Astrophysics +1604.05609 Discrete Mathematics +1604.06182 Computer Vision and Pattern Recognition +1604.06406 Geophysics +1604.07007 Probability +1604.07998 +1604.08043 Phenomenology +1604.08336 Robotics +1604.08656 Strongly Correlated Electrons +1605.00143 Instrumentation and Detectors +1605.00562 Quantitative Methods +1605.00638 Dynamical Systems +1605.00847 Algebraic Geometry +1605.01387 Populations and Evolution +1605.02017 Algebraic Geometry +1605.02586 Dynamical Systems +1605.03083 +1605.03531 Materials Science +1605.05475 Mesoscale and Nanoscale Physics +1605.05830 +1605.06054 Combinatorics +1605.06586 +1605.07849 Theory +1605.08259 Statistical Mechanics +1605.08822 Optics +1605.09071 Computational Complexity +1605.09429 Information Theory +1605.09650 Lattice +1605.09681 Numerical Analysis +1606.01185 +1606.01811 Optics +1606.02203 Theory +1606.02444 Rings and Algebras +1606.03384 Fluid Dynamics +1606.03392 Computational Physics +1606.03459 Mesoscale and Nanoscale Physics +1606.03939 High Energy Astrophysical Phenomena +1606.04677 Geometric Topology +1606.05514 Information Theory +1606.06206 Numerical Analysis +1606.06746 Methodology +1606.07084 Theory +1606.07875 Astrophysics of Galaxies +1606.08942 Social and Information Networks +1607.00330 General Physics +1607.00386 Astrophysics of Galaxies +1607.01292 Combinatorics +1607.01305 Information Theory +1607.01500 Number Theory +1607.02192 Cryptography and Security +1607.02426 Phenomenology +1607.02575 Dynamical Systems +1607.02604 Statistics Theory +1607.02659 Physics Education +1607.02675 Methodology +1607.02921 Algebraic Geometry +1607.03551 Algebraic Geometry +1607.04145 Number Theory +1607.04940 Social and Information Networks +1607.05569 Phenomenology +1607.06389 +1607.07177 Differential Geometry +1607.07180 Optics +1607.08505 Operator Algebras +1608.00900 Fluid Dynamics +1608.02265 Complex Variables +1608.03307 Networking and Internet Architecture +1608.03751 Strongly Correlated Electrons +1608.04053 Astrophysics of Galaxies +1608.05042 Rings and Algebras +1608.05073 Optics +1608.05093 Mesoscale and Nanoscale Physics +1608.06292 Theory +1608.06873 Phenomenology +1608.06993 Computer Vision and Pattern Recognition +1608.07017 Computer Vision and Pattern Recognition +1608.07038 Discrete Mathematics +1608.07489 Combinatorics +1608.07734 Artificial Intelligence +1608.07964 Rings and Algebras +1609.00318 Optimization and Control +1609.00522 Algebraic Topology +1609.01227 +1609.01277 Mathematical Software +1609.01412 Strongly Correlated Electrons +1609.01577 Statistics Theory +1609.01802 High Energy Astrophysical Phenomena +1609.02382 Phenomenology +1609.02645 Phenomenology +1609.02800 Mesoscale and Nanoscale Physics +1609.03102 Numerical Analysis +1609.03201 Optimization and Control +1609.03222 Algebraic Geometry +1609.04544 Mesoscale and Nanoscale Physics +1609.04716 Phenomenology +1609.05052 Biological Physics +1609.05140 Artificial Intelligence +1609.05764 High Energy Astrophysical Phenomena +1609.06408 Optimization and Control +1609.06693 Learning +1609.06870 Computer Vision and Pattern Recognition +1609.07133 Combinatorics +1609.07228 Computer Vision and Pattern Recognition +1609.07874 Mesoscale and Nanoscale Physics +1609.08350 Atomic Physics +1609.08631 Theory +1609.09869 Machine Learning +1610.00603 +1610.00745 High Energy Astrophysical Phenomena +1610.01046 Optics +1610.01094 +1610.01148 Instrumentation and Methods for Astrophysics +1610.02376 Earth and Planetary Astrophysics +1610.02483 Learning +1610.02657 Disordered Systems and Neural Networks +1610.02745 +1610.03237 Analysis of PDEs +1610.03565 Instrumentation and Methods for Astrophysics +1610.04589 +1610.04616 Strongly Correlated Electrons +1610.04797 Representation Theory +1610.04816 Differential Geometry +1610.05034 Mesoscale and Nanoscale Physics +1610.06258 Machine Learning +1610.06795 Strongly Correlated Electrons +1610.07259 Popular Physics +1610.07645 Representation Theory +1610.07905 Metric Geometry +1610.08803 +1610.09281 Materials Science +1610.09775 Combinatorics +1611.00264 Classical Analysis and ODEs +1611.00269 Algebraic Geometry +1611.00309 Solar and Stellar Astrophysics +1611.00330 Geometric Topology +1611.00919 +1611.01088 Astrophysics of Galaxies +1611.01300 +1611.01749 Operator Algebras +1611.02595 Differential Geometry +1611.02789 +1611.02800 +1611.02855 Materials Science +1611.03175 History and Overview +1611.03339 Functional Analysis +1611.03648 Combinatorics +1611.03885 Medical Physics +1611.04312 Materials Science +1611.04351 Optics +1611.04593 Phenomenology +1611.04687 Neural and Evolutionary Computing +1611.04733 Chemical Physics +1611.05196 Robotics +1611.05197 Solar and Stellar Astrophysics +1611.05485 Numerical Analysis +1611.05713 Mesoscale and Nanoscale Physics +1611.05797 Theory +1611.05813 Superconductivity +1611.05843 Statistics Theory +1611.05906 Theory +1611.06160 Optimization and Control +1611.06547 Digital Libraries +1611.06627 Operator Algebras +1611.06661 Computer Vision and Pattern Recognition +1611.06666 Trading and Market Microstructure +1611.06715 Applications +1611.07003 Solar and Stellar Astrophysics +1611.07009 Theory +1611.07086 Exactly Solvable and Integrable Systems +1611.07330 High Energy Astrophysical Phenomena +1611.07593 Computer Vision and Pattern Recognition +1611.07843 Portfolio Management +1611.07892 Soft Condensed Matter +1611.08116 Mesoscale and Nanoscale Physics +1611.08558 Functional Analysis +1611.08618 Machine Learning +1611.08669 Computer Vision and Pattern Recognition +1611.08684 High Energy Astrophysical Phenomena +1611.08699 Learning +1611.08716 Representation Theory +1611.08737 Learning +1611.08756 Dynamical Systems +1611.08758 Computational Engineering, Finance, and Science +1611.08782 Materials Science +1611.08787 Phenomenology +1611.08828 Phenomenology +1611.08837 Combinatorics +1611.08844 Computer Vision and Pattern Recognition +1611.08848 Information Retrieval +1611.08879 Mesoscale and Nanoscale Physics +1611.08889 Networking and Internet Architecture +1611.08894 History and Overview +1611.08903 Learning +1611.08929 Molecular Networks +1611.08949 Disordered Systems and Neural Networks +1611.08956 Quantitative Methods +1611.08997 Instrumentation and Detectors +1611.09019 Soft Condensed Matter +1611.09029 +1611.09034 +1611.09056 Experiment +1611.09105 Classical Analysis and ODEs +1611.09110 Chaotic Dynamics +1611.09140 Representation Theory +1611.09151 Optics +1611.09161 +1611.09192 Medical Physics +1611.09208 Mesoscale and Nanoscale Physics +1611.09218 +1611.09226 Learning +1611.09290 +1611.09517 High Energy Astrophysical Phenomena +1611.09599 Optimization and Control +1611.09804 Methodology +1611.09880 Algebraic Geometry +1611.09917 Phenomenology +1611.10054 High Energy Astrophysical Phenomena +1611.10110 Number Theory +1611.10258 Learning +1611.10320 Algebraic Geometry +1611.10325 Number Theory +1611.10335 Statistics Theory +1611.10348 Statistics Theory +1612.00021 Cosmology and Nongalactic Astrophysics +1612.00030 Solar and Stellar Astrophysics +1612.00086 Learning +1612.00184 Algebraic Geometry +1612.00265 Lattice +1612.00270 Physics and Society +1612.00293 General Physics +1612.00328 Methodology +1612.00349 Mesoscale and Nanoscale Physics +1612.00351 Theory +1612.00352 Networking and Internet Architecture +1612.00382 Number Theory +1612.00525 Learning +1612.00540 +1612.00610 Superconductivity +1612.00622 Combinatorics +1612.00628 Information Theory +1612.00632 +1612.00647 Mesoscale and Nanoscale Physics +1612.00728 Metric Geometry +1612.00797 Phenomenology +1612.00835 Computer Vision and Pattern Recognition +1612.00840 Learning +1612.00841 Learning +1612.00842 Instrumentation and Detectors +1612.00843 Populations and Evolution +1612.00844 Classical Physics +1612.00851 Statistical Mechanics +1612.00853 Theory +1612.00855 Strongly Correlated Electrons +1612.00857 Representation Theory +1612.00858 +1612.00859 Instrumentation and Detectors +1612.00860 +1612.00862 Classical Analysis and ODEs +1612.00863 Statistical Mechanics +1612.00865 +1612.00866 Computation and Language +1612.00867 Optimization and Control +1612.00869 Dynamical Systems +1612.00870 Number Theory +1612.00872 Astrophysics of Galaxies +1612.00874 Computer Vision and Pattern Recognition +1612.00876 Sound +1612.00877 Methodology +1612.00878 Computers and Society +1612.00879 Chemical Physics +1612.00880 Instrumentation and Detectors +1612.00881 Computer Vision and Pattern Recognition +1612.00882 Learning +1612.00884 Classical Physics +1612.00885 Theory +1612.00886 +1612.00887 Soft Condensed Matter +1612.00888 Networking and Internet Architecture +1612.00889 Data Structures and Algorithms +1612.00892 +1612.00894 High Energy Astrophysical Phenomena +1612.00896 Instrumentation and Methods for Astrophysics +1612.00897 Number Theory +1612.00898 Algebraic Geometry +1612.00901 Computer Vision and Pattern Recognition +1612.00902 Astrophysics of Galaxies +1612.00903 Optimization and Control +1612.00904 Information Theory +1612.00908 Logic +1612.00909 Dynamical Systems +1612.00910 Mesoscale and Nanoscale Physics +1612.00911 +1612.00914 Information Theory +1612.00916 Artificial Intelligence +1612.00919 Numerical Analysis +1612.00920 Instrumentation and Methods for Astrophysics +1612.00921 Analysis of PDEs +1612.00922 Methodology +1612.00925 Number Theory +1612.00926 Combinatorics +1612.00928 Computer Science and Game Theory +1612.00929 +1612.00930 Algebraic Topology +1612.00932 Functional Analysis +1612.00933 Emerging Technologies +1612.00934 Group Theory +1612.00935 Mesoscale and Nanoscale Physics +1612.00936 Optimization and Control +1612.00937 Combinatorics +1612.00938 Strongly Correlated Electrons +1612.00940 Computer Vision and Pattern Recognition +1612.00941 Complex Variables +1612.00942 +1612.00943 Combinatorics +1612.00944 Artificial Intelligence +1612.00946 Experiment +1612.00947 Multiagent Systems +1612.00949 Biological Physics +1612.00950 Analysis of PDEs +1612.00951 Computation +1612.00953 High Energy Astrophysical Phenomena +1612.00954 Other Condensed Matter +1612.00955 Astrophysics of Galaxies +1612.00957 Soft Condensed Matter +1612.00958 Data Structures and Algorithms +1612.00960 Data Structures and Algorithms +1612.00962 Learning +1612.00963 Logic +1612.00965 Mesoscale and Nanoscale Physics +1612.00969 Computation and Language +1612.00970 Number Theory +1612.00971 Combinatorics +1612.00972 Computational Physics +1612.00974 +1612.00975 +1612.00976 Strongly Correlated Electrons +1612.00977 Numerical Analysis +1612.00979 Computer Vision and Pattern Recognition +1612.00981 Mathematical Finance +1612.00982 Combinatorics +1612.00983 Computer Vision and Pattern Recognition +1612.00984 Social and Information Networks +1612.00986 Computer Vision and Pattern Recognition +1612.00987 Materials Science +1612.00988 Mesoscale and Nanoscale Physics +1612.00989 Data Structures and Algorithms +1612.00991 Computer Vision and Pattern Recognition +1612.00992 Computer Vision and Pattern Recognition +1612.00993 Information Theory +1612.00994 Materials Science +1612.00995 Category Theory +1612.00996 Operator Algebras +1612.00997 Networking and Internet Architecture +1612.00998 Theory +1612.00999 Experiment +1612.01001 Group Theory +1612.01003 Physics and Society +1612.01004 Probability +1612.01006 Computer Vision and Pattern Recognition +1612.01007 Pattern Formation and Solitons +1612.01008 Mesoscale and Nanoscale Physics +1612.01010 Artificial Intelligence +1612.01011 +1612.01012 Solar and Stellar Astrophysics +1612.01013 Mathematical Finance +1612.01014 Applications +1612.01015 Numerical Analysis +1612.01016 Solar and Stellar Astrophysics +1612.01018 +1612.01022 Computer Vision and Pattern Recognition +1612.01024 Dynamical Systems +1612.01025 Instrumentation and Methods for Astrophysics +1612.01026 Algebraic Geometry +1612.01029 Astrophysics of Galaxies +1612.01030 Genomics +1612.01033 Computer Vision and Pattern Recognition +1612.01034 Robotics +1612.01035 Computer Vision and Pattern Recognition +1612.01036 Functional Analysis +1612.01037 Materials Science +1612.01038 Data Structures and Algorithms +1612.01039 Computation and Language +1612.01040 Databases +1612.01041 Computational Complexity +1612.01042 Astrophysics of Galaxies +1612.01044 Robotics +1612.01045 +1612.01046 Data Analysis, Statistics and Probability +1612.01047 Information Theory +1612.01050 Operator Algebras +1612.01052 Operator Algebras +1612.01053 Data Structures and Algorithms +1612.01055 Machine Learning +1612.01056 Analysis of PDEs +1612.01058 Artificial Intelligence +1612.01060 Chaotic Dynamics +1612.01061 Distributed, Parallel, and Cluster Computing +1612.01062 Mesoscale and Nanoscale Physics +1612.01063 Differential Geometry +1612.01065 Theory +1612.01067 Human-Computer Interaction +1612.01068 Analysis of PDEs +1612.01069 Information Theory +1612.01070 Human-Computer Interaction +1612.01071 Analysis of PDEs +1612.01072 Computer Vision and Pattern Recognition +1612.01073 Symplectic Geometry +1612.01074 Computer Vision and Pattern Recognition +1612.01075 Computer Vision and Pattern Recognition +1612.01076 Number Theory +1612.01078 Software Engineering +1612.01079 Computer Vision and Pattern Recognition +1612.01081 Cosmology and Nongalactic Astrophysics +1612.01083 Mesoscale and Nanoscale Physics +1612.01084 +1612.01085 Soft Condensed Matter +1612.01087 Computational Physics +1612.01089 Applications +1612.01090 Databases +1612.01092 +1612.01093 Logic in Computer Science +1612.01094 Learning +1612.01095 Machine Learning +1612.01096 Information Theory +1612.01097 +1612.01098 Algebraic Geometry +1612.01103 Learning +1612.01105 Computer Vision and Pattern Recognition +1612.01108 Fluid Dynamics +1612.01110 Soft Condensed Matter +1612.01111 Exactly Solvable and Integrable Systems +1612.01112 Probability +1612.01114 Information Theory +1612.01115 Atmospheric and Oceanic Physics +1612.01116 Functional Analysis +1612.01117 Representation Theory +1612.01118 Mesoscale and Nanoscale Physics +1612.01119 Cryptography and Security +1612.01123 Spectral Theory +1612.01124 Numerical Analysis +1612.01128 Metric Geometry +1612.01129 Algebraic Geometry +1612.01131 Computer Vision and Pattern Recognition +1612.01132 General Finance +1612.01136 +1612.01137 Analysis of PDEs +1612.01138 Rings and Algebras +1612.01140 Rings and Algebras +1612.01143 Number Theory +1612.01144 Algebraic Geometry +1612.01145 Functional Analysis +1612.01146 Dynamical Systems +1612.01147 Computational Complexity +1612.01148 Mesoscale and Nanoscale Physics +1612.01149 Classical Analysis and ODEs +1612.01150 Neurons and Cognition +1612.01152 Analysis of PDEs +1612.01153 Functional Analysis +1612.01154 Theory +1612.01155 General Finance +1612.01157 Number Theory +1612.01158 Machine Learning +1612.01159 Statistics Theory +1612.01163 Distributed, Parallel, and Cluster Computing +1612.01164 Number Theory +1612.01165 +1612.01168 Complex Variables +1612.01169 Combinatorics +1612.01171 Data Structures and Algorithms +1612.01173 Materials Science +1612.01174 Chaotic Dynamics +1612.01176 Phenomenology +1612.01177 Functional Analysis +1612.01178 Distributed, Parallel, and Cluster Computing +1612.01179 +1612.01180 Soft Condensed Matter +1612.01183 Information Theory +1612.01184 Algebraic Geometry +1612.01185 Mesoscale and Nanoscale Physics +1612.01186 Information Theory +1612.01187 Astrophysics of Galaxies +1612.01189 Information Theory +1612.01191 Solar and Stellar Astrophysics +1612.01192 Phenomenology +1612.01193 Dynamical Systems +1612.01194 Computer Vision and Pattern Recognition +1612.01195 Chemical Physics +1612.01196 Solar and Stellar Astrophysics +1612.01197 Computation and Language +1612.01198 Software Engineering +1612.01199 +1612.01200 Machine Learning +1612.01201 Mesoscale and Nanoscale Physics +1612.01202 Computer Vision and Pattern Recognition +1612.01205 Machine Learning +1612.01206 Algebraic Geometry +1612.01207 Algebraic Geometry +1612.01208 Disordered Systems and Neural Networks +1612.01210 Statistics Theory +1612.01211 Systems and Control +1612.01212 Combinatorics +1612.01213 Computer Vision and Pattern Recognition +1612.01215 Robotics +1612.01217 Superconductivity +1612.01219 Numerical Analysis +1612.01220 Algebraic Geometry +1612.01222 Statistical Mechanics +1612.01223 Experiment +1612.01225 Computer Vision and Pattern Recognition +1612.01227 Computer Vision and Pattern Recognition +1612.01229 Neurons and Cognition +1612.01230 Computer Vision and Pattern Recognition +1612.01231 Other Condensed Matter +1612.01232 Methodology +1612.01233 Molecular Networks +1612.01234 Computer Vision and Pattern Recognition +1612.01235 Computer Vision and Pattern Recognition +1612.01236 +1612.01237 Computer Vision and Pattern Recognition +1612.01240 Materials Science +1612.01241 Probability +1612.01242 Group Theory +1612.01243 Systems and Control +1612.01246 Optimization and Control +1612.01248 +1612.01250 High Energy Astrophysical Phenomena +1612.01252 Plasma Physics +1612.01253 Computer Vision and Pattern Recognition +1612.01254 Learning +1612.01255 Differential Geometry +1612.01256 Computer Vision and Pattern Recognition +1612.01257 Differential Geometry +1612.01260 Multiagent Systems +1612.01262 High Energy Astrophysical Phenomena +1612.01263 Logic in Computer Science +1612.01264 Networking and Internet Architecture +1612.01265 Probability +1612.01266 Strongly Correlated Electrons +1612.01268 Optics +1612.01274 Statistical Mechanics +1612.01276 Information Theory +1612.01279 Lattice +1612.01281 Instrumentation and Detectors +1612.01284 Physics and Society +1612.01286 Accelerator Physics +1612.01291 Methodology +1612.01292 Quantum Algebra +1612.01294 Computer Vision and Pattern Recognition +1612.01295 Combinatorics +1612.01296 Theory +1612.01298 Statistical Mechanics +1612.01301 Analysis of PDEs +1612.01302 Portfolio Management +1612.01303 Differential Geometry +1612.01307 Metric Geometry +1612.01308 Dynamical Systems +1612.01309 Phenomenology +1612.01310 Dynamical Systems +1612.01312 Representation Theory +1612.01314 Materials Science +1612.01315 Dynamical Systems +1612.01316 Machine Learning +1612.01318 Combinatorics +1612.01319 Functional Analysis +1612.01323 Computer Vision and Pattern Recognition +1612.01325 Programming Languages +1612.01326 Experiment +1612.01327 Mathematical Finance +1612.01328 Classical Analysis and ODEs +1612.01329 +1612.01330 Analysis of PDEs +1612.01332 Chemical Physics +1612.01333 Numerical Analysis +1612.01334 Experiment +1612.01335 Computational Geometry +1612.01336 Mesoscale and Nanoscale Physics +1612.01337 Computer Vision and Pattern Recognition +1612.01338 History and Philosophy of Physics +1612.01339 Software Engineering +1612.01340 Computation and Language +1612.01341 Computer Vision and Pattern Recognition +1612.01342 Optimization and Control +1612.01343 Materials Science +1612.01345 Computer Vision and Pattern Recognition +1612.01346 Fluid Dynamics +1612.01347 Cosmology and Nongalactic Astrophysics +1612.01348 Differential Geometry +1612.01349 Learning +1612.01350 Classical Analysis and ODEs +1612.01352 Information Theory +1612.01353 Accelerator Physics +1612.01354 Optimization and Control +1612.01356 Learning +1612.01357 Computational Engineering, Finance, and Science +1612.01358 General Mathematics +1612.01360 Metric Geometry +1612.01361 Information Theory +1612.01362 Optimization and Control +1612.01365 Classical Analysis and ODEs +1612.01366 Solar and Stellar Astrophysics +1612.01367 Learning +1612.01368 +1612.01370 Computational Geometry +1612.01372 Materials Science +1612.01373 Functional Analysis +1612.01374 Complex Variables +1612.01375 Systems and Control +1612.01378 Physics Education +1612.01379 Combinatorics +1612.01381 Materials Science +1612.01382 Metric Geometry +1612.01383 Materials Science +1612.01384 Optics +1612.01385 Software Engineering +1612.01386 Physics and Society +1612.01387 Experiment +1612.01391 Classical Analysis and ODEs +1612.01392 Robotics +1612.01393 Probability +1612.01397 Learning +1612.01399 Systems and Control +1612.01400 Computer Vision and Pattern Recognition +1612.01401 Learning +1612.01404 Computation and Language +1612.01406 Systems and Control +1612.01407 Optics +1612.01408 Applications +1612.01409 Quantitative Methods +1612.01410 Numerical Analysis +1612.01411 Numerical Analysis +1612.01412 History and Overview +1612.01413 Quantitative Methods +1612.01415 Mesoscale and Nanoscale Physics +1612.01416 Networking and Internet Architecture +1612.01417 Phenomenology +1612.01419 Analysis of PDEs +1612.01421 Operator Algebras +1612.01422 Differential Geometry +1612.01424 Probability +1612.01425 Learning +1612.01426 Group Theory +1612.01427 Analysis of PDEs +1612.01429 Populations and Evolution +1612.01430 Numerical Analysis +1612.01433 Mesoscale and Nanoscale Physics +1612.01434 Computer Science and Game Theory +1612.01437 Distributed, Parallel, and Cluster Computing +1612.01440 Number Theory +1612.01441 Optimization and Control +1612.01445 Cryptography and Security +1612.01446 Geometric Topology +1612.01447 +1612.01448 Phenomenology +1612.01449 Lattice +1612.01450 Social and Information Networks +1612.01453 Combinatorics +1612.01454 Applications +1612.01457 Soft Condensed Matter +1612.01458 Distributed, Parallel, and Cluster Computing +1612.01459 Information Theory +1612.01463 Phenomenology +1612.01466 History and Philosophy of Physics +1612.01468 Number Theory +1612.01469 Representation Theory +1612.01471 High Energy Astrophysical Phenomena +1612.01472 Materials Science +1612.01473 +1612.01476 Systems and Control +1612.01478 +1612.01479 Computer Vision and Pattern Recognition +1612.01480 Learning +1612.01481 Machine Learning +1612.01482 Numerical Analysis +1612.01483 +1612.01484 Representation Theory +1612.01485 Optimization and Control +1612.01486 Classical Analysis and ODEs +1612.01487 Information Theory +1612.01488 Probability +1612.01489 Social and Information Networks +1612.01492 Data Structures and Algorithms +1612.01495 Computer Vision and Pattern Recognition +1612.01497 Networking and Internet Architecture +1612.01498 Space Physics +1612.01500 Algebraic Geometry +1612.01502 +1612.01504 Statistics Theory +1612.01505 +1612.01506 Data Structures and Algorithms +1612.01509 +1612.01513 Combinatorics +1612.01514 Distributed, Parallel, and Cluster Computing +1612.01515 Algebraic Geometry +1612.01516 Soft Condensed Matter +1612.01517 High Energy Astrophysical Phenomena +1612.01518 Mesoscale and Nanoscale Physics +math/0206136 Differential Geometry +math/0701146 Commutative Algebra +math/0701173 Dynamical Systems +0810.2444 +0903.2148 Symplectic Geometry +0908.3013 Quantum Algebra +1001.1375 Rings and Algebras +1010.4076 Quantum Algebra +1012.5747 +1103.0580 Statistical Mechanics +1105.5325 Dynamical Systems +1109.4006 Representation Theory +1111.2316 Representation Theory +1203.1893 Rings and Algebras +1205.6793 Phenomenology +1209.5654 Probability +1210.2893 Rings and Algebras +1210.7996 Classical Analysis and ODEs +1211.0697 Medical Physics +1211.1738 Dynamical Systems +1211.6414 Quantum Algebra +1212.6351 +1302.3992 Algebraic Geometry +1304.0531 Representation Theory +1304.6595 +1306.6166 Dynamical Systems +1307.4511 Medical Physics +1309.1635 Probability +1309.6776 Probability +1312.6526 Differential Geometry +1401.8026 Risk Management +1402.3962 Computer Science and Game Theory +1403.1548 General Finance +1403.7544 Probability +1404.3600 Cryptography and Security +1404.5650 Classical Physics +1405.1211 Differential Geometry +1405.1256 Numerical Analysis +1405.1542 Numerical Analysis +1405.3801 Medical Physics +1405.5057 Physics and Society +1405.6176 Methodology +1406.4597 Symplectic Geometry +1409.3436 Discrete Mathematics +1409.5352 Neurons and Cognition +1409.5531 +1409.6186 Algebraic Geometry +1410.4474 Probability +1411.4045 Robotics +1411.5704 +1412.0442 Statistics Theory +1412.1366 Probability +1412.7385 Probability +1501.05969 +1502.05201 Materials Science +1502.05460 Statistics Theory +1503.08040 Information Theory +1503.08077 Dynamical Systems +1504.02206 Optimization and Control +1504.02214 Numerical Analysis +1504.04266 Numerical Analysis +1505.00939 Group Theory +1505.05891 Mesoscale and Nanoscale Physics +1506.02396 Optimization and Control +1506.08408 Mathematical Finance +1507.02728 Classical Analysis and ODEs +1508.01123 Combinatorics +1508.02068 Optimization and Control +1508.03625 Dynamical Systems +1508.04794 Geometric Topology +1508.05112 Functional Analysis +1508.07518 Commutative Algebra +1509.00428 Theory +1509.07405 Disordered Systems and Neural Networks +1509.08614 Probability +1510.05431 Strongly Correlated Electrons +1511.01058 Theory +1511.04494 Discrete Mathematics +1511.04714 Representation Theory +1511.05081 Systems and Control +1511.05094 Probability +1511.05875 Combinatorics +1512.03185 Mesoscale and Nanoscale Physics +1512.04171 Chemical Physics +1512.04225 Phenomenology +1512.05454 +1512.08271 +1512.09106 Theory +1601.00792 Probability +1601.01792 Chemical Physics +1601.02476 Representation Theory +1601.02553 Computation and Language +1601.04974 Populations and Evolution +1601.06021 General Physics +1601.06888 +1602.00179 Mesoscale and Nanoscale Physics +1602.00659 Plasma Physics +1602.01631 Number Theory +1602.02995 Computer Vision and Pattern Recognition +1602.03286 Phenomenology +1602.05244 Representation Theory +1602.07942 +1602.08851 Mesoscale and Nanoscale Physics +1603.00959 Populations and Evolution +1603.01044 +1603.01284 Materials Science +1603.01288 Mathematical Finance +1603.03409 Networking and Internet Architecture +1603.04904 Machine Learning +1603.05417 Solar and Stellar Astrophysics +1603.05467 Theory +1603.06523 High Energy Astrophysical Phenomena +1603.06615 +1603.06773 Cosmology and Nongalactic Astrophysics +1603.07075 +1603.07497 Complex Variables +1603.07778 +1603.09117 Materials Science +1603.09203 Experiment +1604.00010 Earth and Planetary Astrophysics +1604.00164 Mesoscale and Nanoscale Physics +1604.00477 Materials Science +1604.00659 Representation Theory +1604.02989 Mesoscale and Nanoscale Physics +1604.03465 Group Theory +1604.03501 Geometric Topology +1604.03705 Theory +1604.05532 Soft Condensed Matter +1604.08343 Strongly Correlated Electrons +1605.00870 Analysis of PDEs +1605.01497 Formal Languages and Automata Theory +1605.01926 Mesoscale and Nanoscale Physics +1605.02148 Materials Science +1605.02323 Geometric Topology +1605.02392 Strongly Correlated Electrons +1605.02494 Symbolic Computation +1605.05813 Theory +1605.08395 Classical Analysis and ODEs +1605.08728 Superconductivity +1605.09035 +1605.09272 Differential Geometry +1605.09314 Complex Variables +1605.09459 Machine Learning +1605.09728 Theory +1606.00186 Complex Variables +1606.00352 +1606.00420 +1606.00674 Theory +1606.01505 +1606.02058 Spectral Theory +1606.02176 Cosmology and Nongalactic Astrophysics +1606.02243 Disordered Systems and Neural Networks +1606.02417 +1606.02924 Dynamical Systems +1606.03354 Mesoscale and Nanoscale Physics +1606.03647 Computer Vision and Pattern Recognition +1606.04588 Numerical Analysis +1606.05234 Optics +1606.06168 Algebraic Topology +1606.06918 +1606.07643 Numerical Analysis +1606.07977 Functional Analysis +1606.09130 Rings and Algebras +1607.00637 Representation Theory +1607.00714 Performance +1607.01164 Logic in Computer Science +1607.01422 Physics Education +1607.01600 +1607.01641 Mesoscale and Nanoscale Physics +1607.01849 +1607.02142 Phenomenology +1607.02284 Data Structures and Algorithms +1607.02695 Neurons and Cognition +1607.02700 Theory +1607.03225 High Energy Astrophysical Phenomena +1607.03505 +1607.03558 Exactly Solvable and Integrable Systems +1607.04793 Information Theory +1607.05065 Emerging Technologies +1607.05149 Optics +1607.05474 Superconductivity +1607.06029 Computer Vision and Pattern Recognition +1607.06691 Biological Physics +1607.06854 Computer Vision and Pattern Recognition +1607.07135 Group Theory +1607.07404 Cosmology and Nongalactic Astrophysics +1607.07472 Robotics +1607.08201 Superconductivity +1607.08493 Medical Physics +1608.00646 Social and Information Networks +1608.00881 Combinatorics +1608.00883 Theory +1608.01020 Quantum Gases +1608.01578 Optimization and Control +1608.02068 Risk Management +1608.02096 Optimization and Control +1608.02924 Statistical Mechanics +1608.03443 Atomic Physics +1608.03471 Populations and Evolution +1608.03694 Robotics +1608.03735 Computers and Society +1608.03884 Instrumentation and Detectors +1608.03994 +1608.05606 Methodology +1608.06385 Instrumentation and Methods for Astrophysics +1608.06509 +1608.06666 Data Structures and Algorithms +1608.06832 Optics +1608.06845 Artificial Intelligence +1608.07520 Complex Variables +1608.07676 Algebraic Geometry +1608.07726 Optimization and Control +1608.07845 Theory +1608.08021 Computer Vision and Pattern Recognition +1608.08170 Geometric Topology +1608.08476 Analysis of PDEs +1608.08503 Physics and Society +1608.08917 Instrumentation and Detectors +1608.08923 Analysis of PDEs +1608.08930 Analysis of PDEs +1609.00625 Representation Theory +1609.01056 +1609.01651 Differential Geometry +1609.02757 Functional Analysis +1609.03885 Statistical Mechanics +1609.04873 Computation and Language +1609.04897 Information Theory +1609.05587 Numerical Analysis +1609.06374 Artificial Intelligence +1609.07546 Programming Languages +1609.08610 Astrophysics of Galaxies +1609.09000 Databases +1609.09037 Optimization and Control +1609.09143 Machine Learning +1609.09270 Computer Vision and Pattern Recognition +1609.09328 Probability +1609.09372 Mesoscale and Nanoscale Physics +1609.09373 +1609.09494 Numerical Analysis +1609.09500 Solar and Stellar Astrophysics +1609.09504 +1609.09507 +1609.09509 Optics +1609.09510 Theory +1609.09516 Accelerator Physics +1609.09517 Instrumentation and Methods for Astrophysics +1609.09518 Optics +1609.09519 Machine Learning +1609.09520 Astrophysics of Galaxies +1609.09521 Atomic Physics +1609.09523 Theory +1609.09525 Data Structures and Algorithms +1609.09526 Combinatorics +1609.09529 Methodology +1609.09531 Information Theory +1609.09532 Applications +1609.09534 Plasma Physics +1609.09536 Materials Science +1609.09538 Representation Theory +1609.09540 Algebraic Geometry +1609.09541 Computers and Society +1609.09544 Learning +1609.09545 Computer Vision and Pattern Recognition +1609.09546 Social and Information Networks +1609.09547 Social and Information Networks +1609.09548 Data Structures and Algorithms +1609.09549 Mesoscale and Nanoscale Physics +1609.09550 Combinatorics +1609.09552 Computation and Language +1609.09553 Information Theory +1609.09555 Formal Languages and Automata Theory +1609.09558 Analysis of PDEs +1609.09559 Strongly Correlated Electrons +1609.09560 Networking and Internet Architecture +1609.09561 Classical Physics +1609.09562 Computational Complexity +1609.09563 Learning +1609.09564 High Energy Astrophysical Phenomena +1609.09565 Social and Information Networks +1609.09566 Spectral Theory +1609.09569 Optimization and Control +1609.09571 Computers and Society +1609.09573 Classical Analysis and ODEs +1609.09574 Pattern Formation and Solitons +1609.09575 High Energy Astrophysical Phenomena +1609.09578 Human-Computer Interaction +1609.09580 Computation and Language +1609.09581 Solar and Stellar Astrophysics +1609.09582 Computers and Society +1609.09586 Combinatorics +1609.09587 Geometric Topology +1609.09588 Rings and Algebras +1609.09589 Astrophysics of Galaxies +1609.09591 Functional Analysis +1609.09593 Probability +1609.09594 Optimization and Control +1609.09595 Materials Science +1609.09598 Analysis of PDEs +1609.09599 Probability +1609.09600 +1609.09601 Computational Finance +1609.09602 Neurons and Cognition +1609.09603 Numerical Analysis +1609.09604 +1609.09605 Adaptation and Self-Organizing Systems +1609.09607 +1609.09608 +1609.09615 Classical Analysis and ODEs +1609.09616 Atmospheric and Oceanic Physics +1609.09617 Operator Algebras +1609.09618 Strongly Correlated Electrons +1609.09619 Applications +1609.09621 +1609.09622 +1609.09623 Algebraic Topology +1609.09624 Mesoscale and Nanoscale Physics +1609.09628 Number Theory +1609.09629 Algebraic Geometry +1609.09634 Probability +1609.09636 +1609.09637 Probability +1609.09641 +1609.09642 Computer Vision and Pattern Recognition +1609.09643 Computational Complexity +1609.09644 Mesoscale and Nanoscale Physics +1609.09645 Mesoscale and Nanoscale Physics +1609.09646 Numerical Analysis +1609.09648 Functional Analysis +1609.09650 Mesoscale and Nanoscale Physics +1609.09651 Mesoscale and Nanoscale Physics +1609.09654 Distributed, Parallel, and Cluster Computing +1609.09655 Instrumentation and Methods for Astrophysics +1609.09656 Software Engineering +1609.09657 Probability +1609.09658 High Energy Astrophysical Phenomena +1609.09659 Strongly Correlated Electrons +1609.09660 Systems and Control +1609.09661 Information Theory +1609.09662 Combinatorics +1609.09663 Combinatorics +1609.09668 Rings and Algebras +1609.09669 Information Theory +1609.09671 Computer Vision and Pattern Recognition +1609.09672 Geometric Topology +1609.09673 +1609.09674 Probability +1609.09675 Logic in Computer Science +1609.09677 Instrumentation and Methods for Astrophysics +1609.09679 Data Structures and Algorithms +1609.09680 Analysis of PDEs +1609.09681 Learning +1609.09682 Networking and Internet Architecture +1609.09683 Instrumentation and Methods for Astrophysics +1609.09684 Combinatorics +1609.09685 Fluid Dynamics +1609.09686 Combinatorics +1609.09689 +1609.09692 Analysis of PDEs +1609.09695 General Topology +1609.09698 Computer Vision and Pattern Recognition +1609.09700 Mesoscale and Nanoscale Physics +1609.09701 Probability +1609.09702 Theory +1609.09703 Spectral Theory +1609.09705 Fluid Dynamics +1609.09707 Functional Analysis +1609.09709 Programming Languages +1609.09713 Computer Vision and Pattern Recognition +1609.09714 Analysis of PDEs +1609.09715 Materials Science +1609.09718 Programming Languages +1609.09720 Robotics +1609.09721 +1609.09724 Number Theory +1609.09726 Networking and Internet Architecture +1609.09727 Theory +1609.09728 Formal Languages and Automata Theory +1609.09729 Functional Analysis +1609.09731 +1609.09732 Solar and Stellar Astrophysics +1609.09734 Atomic Physics +1609.09735 Instrumentation and Detectors +1609.09736 Analysis of PDEs +1609.09738 Phenomenology +1609.09739 Discrete Mathematics +1609.09741 Optimization and Control +1609.09742 +1609.09743 Sound +1609.09746 Combinatorics +1609.09748 Artificial Intelligence +1609.09750 Strongly Correlated Electrons +1609.09751 +1609.09753 Algebraic Geometry +1609.09756 Computers and Society +1609.09766 Optics +1609.09767 Computers and Society +1609.09768 Optics +1609.09770 Number Theory +1609.09771 Classical Analysis and ODEs +1609.09774 Earth and Planetary Astrophysics +1609.09776 Statistical Mechanics +1609.09778 Materials Science +1609.09779 +1609.09781 +1609.09783 Logic in Computer Science +1609.09785 Computers and Society +1609.09786 Information Theory +1609.09787 Number Theory +1609.09790 Materials Science +1609.09791 Materials Science +1609.09792 Commutative Algebra +1609.09793 Number Theory +1609.09795 General Physics +1609.09796 Discrete Mathematics +1609.09797 Functional Analysis +1609.09800 Pattern Formation and Solitons +1609.09801 General Physics +1609.09802 Group Theory +1609.09803 Methodology +1609.09804 +1609.09805 Lattice +1609.09808 Analysis of PDEs +1609.09809 K-Theory and Homology +1609.09810 Rings and Algebras +1609.09812 Spectral Theory +1609.09813 Phenomenology +1609.09814 Soft Condensed Matter +1609.09815 Theory +1609.09816 Methodology +1609.09821 Group Theory +1609.09822 Robotics +1609.09823 Information Theory +1609.09826 Solar and Stellar Astrophysics +1609.09827 Distributed, Parallel, and Cluster Computing +1609.09828 +1609.09829 Analysis of PDEs +1609.09830 Applications +1609.09832 High Energy Astrophysical Phenomena +1609.09835 +1609.09836 Functional Analysis +1609.09838 Instrumentation and Detectors +1609.09839 Soft Condensed Matter +1609.09841 Numerical Analysis +1609.09842 Number Theory +1609.09843 Complex Variables +1609.09846 Mesoscale and Nanoscale Physics +1609.09847 Classical Physics +1609.09848 +1609.09849 Phenomenology +1609.09850 Computer Vision and Pattern Recognition +1609.09851 Probability +1609.09854 Phenomenology +1609.09856 Probability +1609.09862 Numerical Analysis +1609.09864 Artificial Intelligence +1609.09866 Mesoscale and Nanoscale Physics +1609.09868 Disordered Systems and Neural Networks +hep-th/9212116 Theory +1601.05744 History and Overview +0704.2469 +0806.3690 Phenomenology +1305.6076 Computational Complexity +1306.2010 Differential Geometry +1307.2154 Computational Physics +1311.4330 Fluid Dynamics +1312.0525 Information Theory +1312.0647 Pattern Formation and Solitons +1403.6363 Combinatorics +1404.5077 Analysis of PDEs +1404.5826 Combinatorics +1405.3787 Mesoscale and Nanoscale Physics +1405.4542 Geometric Topology +1405.7019 +1407.8400 Quantum Algebra +1408.5062 +1409.4615 Representation Theory +1409.5807 Optics +1410.7641 Experiment +1411.4488 Probability +1411.6174 Number Theory +1412.6822 Group Theory +1501.00264 Methodology +1501.06808 Rings and Algebras +1501.07369 Representation Theory +1502.02591 Dynamical Systems +1502.04634 Logic in Computer Science +1502.06881 Theory +1503.00612 +1504.00326 Algebraic Geometry +1505.00779 Cosmology and Nongalactic Astrophysics +1505.01352 Group Theory +1505.02526 Quantum Gases +1506.08662 Complex Variables +1506.08747 Soft Condensed Matter +1507.04474 Instrumentation and Detectors +1507.04733 +1507.06231 +1507.08009 Mesoscale and Nanoscale Physics +1507.08208 Combinatorics +1508.00353 +1508.01284 Theory +1508.02706 Astrophysics of Galaxies +1508.04644 Combinatorics +1508.05452 Representation Theory +1508.06585 Computer Vision and Pattern Recognition +1508.07402 Phenomenology +1509.00276 Optics +1509.00355 Strongly Correlated Electrons +1509.02518 +1509.07384 Numerical Analysis +1509.08776 Optics +1510.00545 Group Theory +1510.02795 Computer Vision and Pattern Recognition +1510.02971 Functional Analysis +1510.04310 Combinatorics +1510.05744 Atomic Physics +1510.06035 Mesoscale and Nanoscale Physics +1510.06186 Algebraic Geometry +1510.06190 Algebraic Geometry +1510.06192 Algebraic Geometry +1510.08518 Strongly Correlated Electrons +1510.09182 Differential Geometry +1510.09216 Algebraic Topology +1511.01250 Astrophysics of Galaxies +1511.02761 +1511.06056 Physics and Society +1511.06625 +1511.08066 Discrete Mathematics +1511.08564 Experiment +1511.08682 +1512.02405 Strongly Correlated Electrons +1512.06809 Statistics Theory +1512.06810 Solar and Stellar Astrophysics +1512.06988 +1512.07526 Group Theory +1512.08259 +1512.08311 Networking and Internet Architecture +1512.08970 Populations and Evolution +1601.01071 Pattern Formation and Solitons +1601.01605 Probability +1601.05075 Differential Geometry +1601.05087 Phenomenology +1601.05373 Group Theory +1601.05898 Mesoscale and Nanoscale Physics +1601.06072 Optics +1601.07973 Probability +1602.01260 Data Analysis, Statistics and Probability +1602.01712 Chaotic Dynamics +1602.01953 Optics +1602.01957 Mesoscale and Nanoscale Physics +1602.02389 Learning +1602.02741 Superconductivity +1602.03147 Mesoscale and Nanoscale Physics +1602.03914 Superconductivity +1602.04864 Mesoscale and Nanoscale Physics +1602.05058 Complex Variables +1602.05850 Number Theory +1602.07329 Superconductivity +1602.07483 Computational Physics +1602.07519 Phenomenology +1602.07688 Lattice +1602.08640 Plasma Physics +1602.08841 High Energy Astrophysical Phenomena +1603.00810 Computation and Language +1603.01854 Rings and Algebras +1603.01997 Strongly Correlated Electrons +1603.02336 Phenomenology +1603.02708 Phenomenology +1603.03377 Superconductivity +1603.03626 Cosmology and Nongalactic Astrophysics +1603.03969 Soft Condensed Matter +1603.04936 Experiment +1603.05284 +1603.05359 Learning +1603.05804 Optics +1603.07176 Theory +1603.07546 +1603.07988 Analysis of PDEs +1603.09419 Statistical Mechanics +1604.00009 Phenomenology +1604.00012 Theory +1604.01266 Theory +1604.01538 Functional Analysis +1604.02579 Theory +1604.03350 Fluid Dynamics +1604.03398 Cosmology and Nongalactic Astrophysics +1604.03875 Optics +1604.03893 Theory +1604.04178 Quantum Gases +1604.04517 Mesoscale and Nanoscale Physics +1604.04559 Phenomenology +1604.05566 Phenomenology +1604.06529 Computation and Language +1604.06987 Phenomenology +1604.07357 Theory +1604.08924 Theory +1605.00202 Phenomenology +1605.00364 +1605.02875 Astrophysics of Galaxies +1605.03178 Phenomenology +1605.03363 Theory +1605.04110 Optimization and Control +1605.07794 Strongly Correlated Electrons +1605.07975 Phenomenology +1605.08385 Plasma Physics +1605.08965 Analysis of PDEs +1606.00328 Rings and Algebras +1606.00492 Numerical Analysis +1606.00766 Pattern Formation and Solitons +1606.01832 Commutative Algebra +1606.03366 Computer Science and Game Theory +1606.03414 +1606.03979 Theory +1606.04751 Instrumentation and Detectors +1606.05076 Statistical Mechanics +1606.05669 Category Theory +1606.05784 Neural and Evolutionary Computing +1606.05935 Plasma Physics +1606.06139 Probability +1606.06286 +1606.06331 +1606.06631 +1606.07207 Formal Languages and Automata Theory +1606.07583 Multimedia +1606.08320 Differential Geometry +1606.08547 +1606.08568 Materials Science +1606.08614 Mesoscale and Nanoscale Physics +1606.08661 Optimization and Control +1606.08970 Group Theory +1606.09028 Solar and Stellar Astrophysics +1606.09071 Phenomenology +1606.09176 Information Theory +1606.09204 Astrophysics of Galaxies +1606.09212 Analysis of PDEs +1606.09217 +1606.09219 Robotics +1606.09242 Artificial Intelligence +1606.09244 History and Overview +1606.09248 Phenomenology +1606.09252 Astrophysics of Galaxies +1606.09258 Lattice +1606.09260 Theory +1606.09262 Mesoscale and Nanoscale Physics +1606.09266 Functional Analysis +1606.09268 Phenomenology +1606.09272 Mesoscale and Nanoscale Physics +1606.09274 Artificial Intelligence +1606.09275 Robotics +1606.09277 Neurons and Cognition +1606.09280 Optimization and Control +1606.09281 Computer Vision and Pattern Recognition +1606.09288 Statistics Theory +1606.09296 Artificial Intelligence +1606.09298 Optimization and Control +1606.09299 Group Theory +1606.09301 Algebraic Geometry +1606.09302 Soft Condensed Matter +1606.09303 Number Theory +1606.09305 Dynamical Systems +1606.09306 +1606.09308 Methodology +1606.09320 Number Theory +1606.09321 Probability +1606.09323 Pattern Formation and Solitons +1606.09325 +1606.09328 Complex Variables +1606.09329 Systems and Control +1606.09331 +1606.09333 Optimization and Control +1606.09335 High Energy Astrophysical Phenomena +1606.09341 +1606.09342 Rings and Algebras +1606.09343 Combinatorics +1606.09346 Analysis of PDEs +1606.09348 Populations and Evolution +1606.09349 Computer Vision and Pattern Recognition +1606.09354 Solar and Stellar Astrophysics +1606.09359 Representation Theory +1606.09361 +1606.09362 Statistical Mechanics +1606.09364 Optics +1606.09367 Computer Vision and Pattern Recognition +1606.09368 Discrete Mathematics +1606.09370 Computation and Language +1606.09371 Computation and Language +1606.09373 +1606.09374 Dynamical Systems +1606.09376 Databases +1606.09377 Algebraic Geometry +1606.09378 Differential Geometry +1606.09383 Learning +1606.09384 Algebraic Geometry +1606.09387 +1606.09388 Machine Learning +1606.09390 +1606.09391 Phenomenology +1606.09392 Numerical Analysis +1606.09393 Analysis of PDEs +1606.09395 Data Structures and Algorithms +1606.09399 Logic in Computer Science +1606.09401 Solar and Stellar Astrophysics +1606.09403 Computation and Language +1606.09404 Quantum Gases +1606.09408 Phenomenology +1606.09412 Combinatorics +1606.09413 Instrumentation and Detectors +1606.09418 Probability +1606.09421 +1606.09423 +1606.09427 Mesoscale and Nanoscale Physics +1606.09430 +1606.09431 Soft Condensed Matter +1606.09433 Robotics +1606.09438 Combinatorics +1606.09439 Superconductivity +1606.09440 Probability +1606.09442 +1606.09444 Algebraic Geometry +1606.09445 Representation Theory +1606.09452 Networking and Internet Architecture +1606.09456 Phenomenology +1606.09457 Phenomenology +1606.09458 Learning +1606.09460 +1606.09461 Numerical Analysis +1606.09464 Optics +1606.09465 +1606.09467 Analysis of PDEs +1606.09469 Phenomenology +1606.09470 Programming Languages +1606.09471 Optimization and Control +1606.09473 Atomic Physics +1606.09476 Materials Science +1606.09479 Theory +1606.09480 Dynamical Systems +1606.09481 Data Structures and Algorithms +1606.09487 Computational Physics +1606.09489 Atomic Physics +1606.09494 Information Theory +1606.09496 Combinatorics +1606.09497 Popular Physics +1606.09499 Phenomenology +1606.09501 Phenomenology +1606.09503 Analysis of PDEs +1606.09511 Representation Theory +1606.09512 Phenomenology +1606.09514 +1606.09515 Dynamical Systems +1606.09517 Machine Learning +1606.09521 Artificial Intelligence +1606.09522 Statistics Theory +1606.09523 Mesoscale and Nanoscale Physics +1606.09524 Plasma Physics +1606.09526 Phenomenology +1606.09530 Performance +1606.09531 Logic +1606.09532 Representation Theory +1606.09534 Quantum Algebra +1606.09537 Astrophysics of Galaxies +1606.09540 Graphics +1606.09544 Optimization and Control +1606.09546 Superconductivity +1606.09547 Numerical Analysis +1606.09548 Information Theory +1606.09550 Instrumentation and Detectors +1606.09552 Information Theory +1606.09553 Number Theory +1606.09555 Phenomenology +1606.09557 General Physics +1606.09560 Computation and Language +1606.09562 Solar and Stellar Astrophysics +1606.09567 Optimization and Control +1606.09568 General Physics +1606.09569 +1606.09570 General Physics +1606.09572 Phenomenology +1606.09574 Dynamical Systems +1606.09575 Combinatorics +1606.09577 Artificial Intelligence +1606.09583 Analysis of PDEs +1606.09584 Cosmology and Nongalactic Astrophysics +1606.09585 Methodology +1606.09587 +1606.09593 Theory +1606.09594 Artificial Intelligence +1606.09596 Computational Geometry +1606.09599 Superconductivity +1606.09600 Computation and Language +1606.09604 Computation and Language +1606.09605 Cryptography and Security +1606.09608 Algebraic Geometry +1606.09609 Plasma Physics +1606.09623 Combinatorics +1606.09629 Complex Variables +1606.09631 Algebraic Geometry +1606.09632 Learning +1606.09635 Numerical Analysis +1606.09637 Artificial Intelligence +1606.09642 Cosmology and Nongalactic Astrophysics +1606.09643 Combinatorics +astro-ph/0406436 +astro-ph/0608478 +cond-mat/0306372 Soft Condensed Matter +hep-lat/0507038 Lattice +hep-ph/0409292 Phenomenology +hep-ph/9905427 Phenomenology +math/0701634 Number Theory +0801.1923 Differential Geometry +0804.2059 Differential Geometry +1011.1389 +1012.3916 Differential Geometry +1105.1327 +1105.4596 Theory +1106.2761 Differential Geometry +1205.4230 Theory +1206.3923 Differential Geometry +1210.2792 Numerical Analysis +1301.0210 Theory +1303.2475 Representation Theory +1304.3217 Cosmology and Nongalactic Astrophysics +1304.5447 Algebraic Geometry +1305.4508 Information Theory +1306.1849 Computer Science and Game Theory +1307.2967 Physics and Society +1307.7672 Rings and Algebras +1308.0580 Information Theory +1310.0438 +1310.3317 Cosmology and Nongalactic Astrophysics +1312.2671 +1312.6382 Theory +1312.6433 Algebraic Geometry +1401.6772 Probability +1402.0233 Phenomenology +1402.3055 Theory +1403.1977 Differential Geometry +1403.5123 Geometric Topology +1404.0589 +1404.4131 Probability +1405.0816 Algebraic Geometry +1405.4860 Phenomenology +1405.7147 Combinatorics +1406.0338 Combinatorics +1406.5399 Quantum Algebra +1407.3345 Physics and Society +1407.3909 Astrophysics of Galaxies +1407.6092 Statistics Theory +1407.7014 Representation Theory +1407.8051 +1408.2322 Differential Geometry +1409.0129 Digital Libraries +1409.4462 Algebraic Topology +1409.7868 Analysis of PDEs +1410.3049 +1410.6529 Chemical Physics +1410.7140 Learning +1411.1051 Probability +1411.2992 Chemical Physics +1411.7502 Trading and Market Microstructure +1412.0523 Number Theory +1412.7275 Analysis of PDEs +1501.00890 Rings and Algebras +1501.02580 +1501.03774 Combinatorics +1501.07261 Phenomenology +1502.03650 Algebraic Topology +1502.03957 +1502.04822 Computation +1502.05445 Group Theory +1502.06502 Statistical Mechanics +1502.06578 Geometric Topology +1502.07256 Classical Analysis and ODEs +1503.01411 Strongly Correlated Electrons +1503.01539 Computer Science and Game Theory +1503.03672 Statistical Mechanics +1503.04463 Metric Geometry +1503.04878 Chemical Physics +1503.05553 Cosmology and Nongalactic Astrophysics +1503.06160 Numerical Analysis +1503.06290 Classical Analysis and ODEs +1503.06557 Soft Condensed Matter +1503.07572 Superconductivity +1503.08942 Representation Theory +1504.04428 Information Theory +1504.07525 Materials Science +1504.08159 Probability +1504.08329 Computational Physics +1505.00223 +1505.00225 +1505.01800 Differential Geometry +1505.01894 Chemical Physics +1505.02432 Algebraic Topology +1505.02554 Differential Geometry +1505.02567 Numerical Analysis +1505.06893 Data Structures and Algorithms +1505.07393 +1506.01088 Analysis of PDEs +1506.02066 Physics and Society +1506.02386 Social and Information Networks +1506.03722 Numerical Analysis +1506.04120 Popular Physics +1506.06108 +1506.07052 Commutative Algebra +1506.07103 Materials Science +1507.01482 Logic +1507.01746 Statistical Mechanics +1507.02530 Chemical Physics +1507.03401 Applications +1507.04481 Materials Science +1507.06846 +1507.07880 Learning +1507.07922 Phenomenology +1507.08722 Soft Condensed Matter +1508.06136 Soft Condensed Matter +1508.06675 Statistics Theory +1508.07565 Dynamical Systems +1509.02037 +1509.02316 Functional Analysis +1509.02445 +1509.02994 Analysis of PDEs +1509.03129 +1509.04031 Biological Physics +1509.07492 +1509.09207 Distributed, Parallel, and Cluster Computing +1510.00786 +1510.01455 Data Structures and Algorithms +1510.02703 Experiment +1510.03100 +1510.05283 Algebraic Topology +1510.06788 Software Engineering +1510.06913 Exactly Solvable and Integrable Systems +1510.07152 +1510.07319 Phenomenology +1510.08571 Plasma Physics +1511.00849 Systems and Control +1511.01169 Learning +1511.03049 Cosmology and Nongalactic Astrophysics +1511.03814 Computer Vision and Pattern Recognition +1511.04287 Materials Science +1511.04495 Plasma Physics +1511.05004 Strongly Correlated Electrons +1511.05093 Differential Geometry +1511.05262 Software Engineering +1511.05263 Software Engineering +1511.05879 Computer Vision and Pattern Recognition +1511.06391 Machine Learning +1511.06530 Computer Vision and Pattern Recognition +1511.06644 Learning +1511.06658 Theory +1511.07345 Information Theory +1511.07587 +1511.08911 Combinatorics +1511.08977 Information Theory +1512.00579 Theory +1512.00802 Dynamical Systems +1512.00951 Phenomenology +1512.01507 Combinatorics +1512.02007 Statistical Mechanics +1512.04875 Rings and Algebras +1512.04932 Computational Complexity +1512.05014 Superconductivity +1512.05312 Mesoscale and Nanoscale Physics +1512.05420 Quantitative Methods +1512.06694 Instrumentation and Methods for Astrophysics +1512.09019 +1601.00030 Soft Condensed Matter +1601.00031 Soft Condensed Matter +1601.00143 +1601.01205 Category Theory +1601.02575 Mesoscale and Nanoscale Physics +1601.02916 High Energy Astrophysical Phenomena +1601.03279 Numerical Analysis +1601.04024 Phenomenology +1601.04162 Combinatorics +1601.04172 Astrophysics of Galaxies +1601.04460 Physics and Society +1601.05568 Computation +1601.05791 Astrophysics of Galaxies +1601.06622 High Energy Astrophysical Phenomena +1601.06923 Artificial Intelligence +1601.07727 Representation Theory +1601.07856 Combinatorics +1602.00514 Analysis of PDEs +1602.00668 Molecular Networks +1602.01073 Mesoscale and Nanoscale Physics +1602.01252 Probability +1602.02063 Computer Science and Game Theory +1602.02448 Algebraic Topology +1602.02671 +1602.03061 Information Theory +1602.03224 Commutative Algebra +1602.03225 Commutative Algebra +1602.03226 Commutative Algebra +1602.03227 Commutative Algebra +1602.04038 Data Analysis, Statistics and Probability +1602.04049 Digital Libraries +1602.04177 Analysis of PDEs +1602.04498 Artificial Intelligence +1602.04797 Group Theory +1602.04956 Superconductivity +1602.04961 Superconductivity +1602.05368 Astrophysics of Galaxies +1602.05419 Optimization and Control +1602.05880 Representation Theory +1602.06155 Information Theory +1602.06305 Earth and Planetary Astrophysics +1602.06420 Logic in Computer Science +1602.06830 Fluid Dynamics +1602.07009 Systems and Control +1602.07146 Populations and Evolution +1602.07207 Quantitative Methods +1602.07259 Other Computer Science +1602.07296 Materials Science +1602.07299 +1602.07301 Metric Geometry +1602.07302 Chemical Physics +1602.07311 Neurons and Cognition +1602.07315 Mesoscale and Nanoscale Physics +1602.07320 Learning +1602.07323 Probability +1602.07324 Other Computer Science +1602.07327 Chemical Physics +1602.07330 Algebraic Geometry +1602.07332 Computer Vision and Pattern Recognition +1602.07335 Computer Vision and Pattern Recognition +1602.07336 Soft Condensed Matter +1602.07338 Social and Information Networks +1602.07340 Robotics +1602.07342 Probability +1602.07344 Physics Education +1602.07345 Theory +1602.07346 Differential Geometry +1602.07348 Computational Geometry +1602.07351 Data Structures and Algorithms +1602.07352 High Energy Astrophysical Phenomena +1602.07361 Materials Science +1602.07362 Computer Science and Game Theory +1602.07363 Numerical Analysis +1602.07365 Computational Geometry +1602.07366 Software Engineering +1602.07373 Neural and Evolutionary Computing +1602.07376 Physics Education +1602.07378 Dynamical Systems +1602.07379 Algebraic Geometry +1602.07383 Computer Vision and Pattern Recognition +1602.07385 +1602.07390 Physics Education +1602.07393 Computation and Language +1602.07394 Sound +1602.07399 Networking and Internet Architecture +1602.07403 Materials Science +1602.07407 Computational Complexity +1602.07409 Quantum Algebra +1602.07411 Superconductivity +1602.07425 Optimization and Control +1602.07426 Number Theory +1602.07428 Learning +1602.07434 +1602.07435 Computer Science and Game Theory +1602.07439 Materials Science +1602.07440 Statistics Theory +1602.07441 Theory +1602.07445 Complex Variables +1602.07446 Numerical Analysis +1602.07447 +1602.07449 Information Theory +1602.07450 Algebraic Geometry +1602.07452 General Finance +1602.07453 Multimedia +1602.07460 Phenomenology +1602.07464 Learning +1602.07466 Learning +1602.07467 Networking and Internet Architecture +1602.07473 Chaotic Dynamics +1602.07475 Computer Vision and Pattern Recognition +1602.07478 +1602.07479 Chaotic Dynamics +1602.07482 Cosmology and Nongalactic Astrophysics +1602.07484 Strongly Correlated Electrons +1602.07485 Probability +1602.07488 +1602.07490 Commutative Algebra +1602.07492 +1602.07494 K-Theory and Homology +1602.07499 High Energy Astrophysical Phenomena +1602.07500 Algebraic Topology +1602.07502 Algebraic Topology +1602.07504 Data Structures and Algorithms +1602.07510 Number Theory +1602.07514 +1602.07515 +1602.07516 +1602.07517 +1602.07520 +1602.07521 Materials Science +1602.07522 +1602.07526 Cosmology and Nongalactic Astrophysics +1602.07527 Computation +1602.07530 Soft Condensed Matter +1602.07532 Algebraic Geometry +1602.07534 General Physics +1602.07535 Computer Vision and Pattern Recognition +1602.07536 Cryptography and Security +1602.07538 General Mathematics +1602.07542 Computer Vision and Pattern Recognition +1602.07545 Mesoscale and Nanoscale Physics +1602.07549 Analysis of PDEs +1602.07550 Numerical Analysis +1602.07551 History and Overview +1602.07552 History and Overview +1602.07556 Formal Languages and Automata Theory +1602.07557 Combinatorics +1602.07559 Applications +1602.07566 Artificial Intelligence +1602.07567 Systems and Control +1602.07568 Combinatorics +1602.07573 Computer Vision and Pattern Recognition +1602.07577 Soft Condensed Matter +1602.07578 +1602.07579 Networking and Internet Architecture +1602.07581 Instrumentation and Methods for Astrophysics +1602.07584 Materials Science +1602.07585 Commutative Algebra +1602.07587 Computation +1602.07591 Systems and Control +1602.07594 Analysis of PDEs +1602.07595 Differential Geometry +1602.07600 High Energy Astrophysical Phenomena +1602.07601 High Energy Astrophysical Phenomena +1602.07602 +1602.07603 Geometric Topology +1602.07612 +1602.07614 Learning +1602.07615 Networking and Internet Architecture +1602.07616 Computational Complexity +1602.07617 Group Theory +1602.07618 Computation and Language +1602.07620 Computer Vision and Pattern Recognition +1602.07622 Spectral Theory +1602.07628 Economics +1602.07629 Classical Analysis and ODEs +1602.07630 Optimization and Control +1602.07631 Pattern Formation and Solitons +1602.07632 Algebraic Topology +1602.07633 Software Engineering +1602.07638 Symplectic Geometry +1602.07640 Computation +1602.07641 Robotics +1602.07645 Combinatorics +1602.07647 Optimization and Control +1602.07648 Physics Education +1602.07650 Geometric Topology +1602.07655 Materials Science +1602.07656 General Physics +1602.07658 Materials Science +1602.07660 Differential Geometry +1602.07661 Physics Education +1602.07662 Computers and Society +1602.07663 Trading and Market Microstructure +1602.07667 Logic +1602.07669 Mesoscale and Nanoscale Physics +1602.07674 +1602.07676 Phenomenology +1602.07677 Physics Education +1602.07678 Physics Education +1602.07679 Computer Vision and Pattern Recognition +0808.2007 Differential Geometry +1004.1315 Representation Theory +1005.5629 Representation Theory +1011.4043 Probability +1104.1785 History and Philosophy of Physics +1105.5445 Physics and Society +1106.2595 Number Theory +1202.2656 Algebraic Geometry +1203.2241 Logic in Computer Science +1211.3553 Cryptography and Security +1212.2154 Logic in Computer Science +1304.0118 Populations and Evolution +1304.3311 Number Theory +1307.8397 History and Philosophy of Physics +1308.4699 Quantum Gases +1308.6366 Geometric Topology +1309.2242 Strongly Correlated Electrons +1310.7278 Applications +1312.7583 History and Philosophy of Physics +1401.0508 History and Philosophy of Physics +1401.6160 Geometric Topology +1402.0293 Optimization and Control +1403.3303 Rings and Algebras +1404.2654 Mesoscale and Nanoscale Physics +1404.6725 Pattern Formation and Solitons +1405.0984 Differential Geometry +1405.7555 Applications +1406.6751 Statistics Theory +1408.0635 Phenomenology +1408.6017 Materials Science +1409.1529 Complex Variables +1409.3975 Symplectic Geometry +1410.2530 Symplectic Geometry +1411.0761 Algebraic Geometry +1411.4306 Symplectic Geometry +1412.0211 Category Theory +1412.0414 Spectral Theory +1412.2567 +1412.2849 Algebraic Geometry +1412.5473 Algebraic Geometry +1502.00583 Theory +1502.02509 Superconductivity +1503.03965 Computational Physics +1504.00241 Social and Information Networks +1504.00721 Combinatorics +1504.02928 Complex Variables +1504.06188 +1504.06377 Commutative Algebra +1504.07650 Theory +1504.07893 Discrete Mathematics +1504.07915 Materials Science +1504.08229 General Physics +1505.00095 Materials Science +1505.00335 Cryptography and Security +1505.00384 Neural and Evolutionary Computing +1505.00555 +1505.03600 Probability +1505.04262 Dynamical Systems +1505.05034 Combinatorics +1505.06288 Numerical Analysis +1505.07401 Geometric Topology +1506.00783 Differential Geometry +1506.00826 Quantum Algebra +1506.00985 +1506.01467 Analysis of PDEs +1506.03621 Pricing of Securities +1506.04304 Computer Vision and Pattern Recognition +1506.04717 Commutative Algebra +1506.06260 Group Theory +1506.06281 Mesoscale and Nanoscale Physics +1506.06945 Dynamical Systems +1506.07744 Optimization and Control +1506.09025 Representation Theory +1507.02208 Combinatorics +1507.02322 Analysis of PDEs +1507.02646 Computation +1507.03155 Group Theory +1507.05045 Applications +1507.07407 Algebraic Topology +1507.08417 Networking and Internet Architecture +1507.08577 Computation +1508.00364 +1508.00861 Algebraic Topology +1508.03010 Algebraic Geometry +1508.06989 +1508.07553 Dynamical Systems +1509.01310 Computation and Language +1509.01880 Information Theory +1509.03776 Mesoscale and Nanoscale Physics +1509.04393 Computation and Language +1509.04469 Chaotic Dynamics +1509.04950 Logic +1509.05084 Numerical Analysis +1509.05142 Learning +1509.07709 Geometric Topology +1509.07993 Computation +1509.08136 Algebraic Geometry +1509.08653 Classical Analysis and ODEs +1510.00404 General Mathematics +1510.00475 Probability +1510.01080 Materials Science +1510.01992 Analysis of PDEs +1510.02072 Analysis of PDEs +1510.03691 Phenomenology +1510.03859 +1510.05634 +1510.05798 +1510.05935 Number Theory +1510.07479 Superconductivity +1510.07668 Algebraic Geometry +1510.08298 +1510.08421 Phenomenology +1511.02624 +1511.06730 Applications +1511.08082 Information Theory +1511.08518 High Energy Astrophysical Phenomena +1511.08975 Information Theory +1512.01195 Systems and Control +1512.01975 Algebraic Topology +1512.02359 Analysis of PDEs +1512.02410 Mesoscale and Nanoscale Physics +1512.03271 Analysis of PDEs +1512.03970 Populations and Evolution +1512.04592 Probability +1512.06358 Representation Theory +1512.06732 Phenomenology +1512.06786 Quantum Gases +1512.06883 Functional Analysis +1512.07015 Probability +1512.07286 +1512.07590 Artificial Intelligence +1512.07980 Neural and Evolutionary Computing +1512.08338 Materials Science +1512.08722 Optimization and Control +1512.09216 +1601.00296 Rings and Algebras +1601.00431 Dynamical Systems +1601.01335 Quantum Gases +1601.02284 Information Theory +1601.02976 Analysis of PDEs +1601.03717 History and Philosophy of Physics +1601.04580 Computation and Language +1601.06780 Information Theory +1601.06907 Algebraic Geometry +1601.06935 Quantum Gases +1601.07996 Learning +1601.08123 Information Theory +1602.00052 Quantum Gases +1602.00250 Analysis of PDEs +1602.00339 Information Theory +1602.00738 Representation Theory +1602.01645 Phenomenology +1602.02087 Statistical Mechanics +1602.02285 Machine Learning +1602.02316 Probability +1602.02395 Complex Variables +1602.03572 Computation +1602.03786 Optimization and Control +1602.03795 Dynamical Systems +1602.04438 Mesoscale and Nanoscale Physics +1602.04560 Computational Complexity +1602.04583 Representation Theory +1602.04912 Statistics Theory +1602.05068 Phenomenology +1602.05092 Neurons and Cognition +1602.05409 Logic in Computer Science +1602.05581 Phenomenology +1602.06534 Quantum Algebra +1602.06950 High Energy Astrophysical Phenomena +1602.07249 Other Computer Science +1602.07471 Mesoscale and Nanoscale Physics +1602.08623 Algebraic Geometry +1603.00082 Computational Complexity +1603.00626 Materials Science +1603.01287 Cosmology and Nongalactic Astrophysics +1603.01323 Materials Science +1603.01405 Theory +1603.01638 Phenomenology +1603.01781 Classical Analysis and ODEs +1603.02717 Dynamical Systems +1603.03027 Strongly Correlated Electrons +1603.03474 Statistics Theory +1603.03824 Physics and Society +1603.03876 Computation and Language +1603.03949 Analysis of PDEs +1603.05933 Robotics +1603.07337 Cosmology and Nongalactic Astrophysics +1603.07831 Algebraic Geometry +1603.07864 +1603.07870 Optimization and Control +1603.07877 Dynamical Systems +1603.07932 +1603.08683 Materials Science +1603.08819 Data Structures and Algorithms +1603.08842 Exactly Solvable and Integrable Systems +1603.08894 +1603.09123 Learning +1603.09609 Operator Algebras +1604.00134 Plasma Physics +1604.00562 Computation and Language +1604.01130 Systems and Control +1604.01229 Functional Analysis +1604.02112 Numerical Analysis +1604.02125 Computer Vision and Pattern Recognition +1604.03252 Algebraic Geometry +1604.05378 Dynamical Systems +1604.05809 +1604.06119 Computer Vision and Pattern Recognition +1604.06573 Computer Vision and Pattern Recognition +1604.07092 +1604.07197 Theory +1604.07454 Phenomenology +1604.08131 High Energy Astrophysical Phenomena +1604.08633 Computation and Language +1605.00517 +1605.00555 Cosmology and Nongalactic Astrophysics +1605.00558 Data Structures and Algorithms +1605.00652 Mesoscale and Nanoscale Physics +1605.00820 +1605.02604 Number Theory +1605.02729 +1605.02869 Quantitative Methods +1605.03058 Analysis of PDEs +1605.03368 Differential Geometry +1605.03847 +1605.04469 Computation and Language +1605.04502 Computer Vision and Pattern Recognition +1605.04876 Networking and Internet Architecture +1605.05307 Algebraic Geometry +1605.05433 Computation and Language +1605.05442 Disordered Systems and Neural Networks +1605.06626 Analysis of PDEs +1605.06872 Probability +1605.06957 Optics +1605.07093 Algebraic Topology +1605.07458 Astrophysics of Galaxies +1605.07478 Atomic Physics +1605.07833 Learning +1605.07869 Computation and Language +1605.08339 Probability +1605.08900 Computation and Language +1605.08955 +1605.09258 Mesoscale and Nanoscale Physics +1605.09298 Classical Analysis and ODEs +1606.00323 Algebraic Geometry +1606.00499 Computation and Language +1606.00879 Computers and Society +1606.00895 +1606.00911 Systems and Control +1606.01139 Computational Physics +1606.01302 Phenomenology +1606.01648 Optimization and Control +1606.01847 Computer Vision and Pattern Recognition +1606.01933 Computation and Language +1606.02093 Phenomenology +1606.02196 Dynamical Systems +1606.02217 Theory +1606.02639 Number Theory +1606.02667 Statistical Mechanics +1606.02720 Mesoscale and Nanoscale Physics +1606.02815 Combinatorics +1606.02820 Computation and Language +1606.02821 Computation and Language +1606.03715 Analysis of PDEs +1606.03945 Materials Science +1606.04352 +1606.04428 Mesoscale and Nanoscale Physics +1606.04994 Statistical Mechanics +1606.05382 Learning +1606.05420 Functional Analysis +1606.05592 +1606.06030 Logic +1606.06598 Exactly Solvable and Integrable Systems +1606.06622 Computer Vision and Pattern Recognition +1606.06898 +1606.07046 Computation and Language +1606.07150 Cryptography and Security +1606.07235 Quantum Gases +1606.07609 Phenomenology +1606.08006 Strongly Correlated Electrons +1606.08008 Computer Vision and Pattern Recognition +1606.08059 Analysis of PDEs +1606.08359 Learning +1607.00112 Statistical Mechanics +1607.01312 Machine Learning +1607.01432 Computation and Language +1607.01672 Probability +1607.02464 Group Theory +1607.03396 +1607.03466 Algebraic Geometry +1607.03472 Algebraic Geometry +1607.03546 Differential Geometry +1607.04182 Optimization and Control +1607.04298 Performance +1607.05279 Strongly Correlated Electrons +1607.06307 Applications +1607.06481 Astrophysics of Galaxies +1607.06495 Experiment +1607.06682 Earth and Planetary Astrophysics +1607.07352 Phenomenology +1607.07964 Complex Variables +1607.07995 Distributed, Parallel, and Cluster Computing +1607.08163 Geometric Topology +1607.08378 Computer Vision and Pattern Recognition +1607.08825 Lattice +1608.00246 +1608.00305 Theory +1608.00317 Disordered Systems and Neural Networks +1608.00377 Mesoscale and Nanoscale Physics +1608.00786 High Energy Astrophysical Phenomena +1608.01041 Computer Vision and Pattern Recognition +1608.01043 Superconductivity +1608.01056 Computation and Language +1608.02054 Physics and Society +1608.02293 Algebraic Geometry +1608.02919 Complex Variables +1608.03407 Fluid Dynamics +1608.03607 Theory +1608.04054 Biomolecules +1608.04238 Astrophysics of Galaxies +1608.04588 Commutative Algebra +1608.05744 Combinatorics +1608.06186 +1608.06568 Combinatorics +1608.06956 Algebraic Topology +1608.07533 Optimization and Control +1608.07627 Algebraic Geometry +1608.08116 Theory +1608.08286 Soft Condensed Matter +1608.08394 Plasma Physics +1609.00141 Applications +1609.00370 +1609.00531 Logic +1609.00923 Materials Science +1609.01027 Algebraic Geometry +1609.01051 Machine Learning +1609.01133 Number Theory +1609.01246 Strongly Correlated Electrons +1609.01254 Operator Algebras +1609.01470 Theory +1609.02339 Human-Computer Interaction +1609.02980 Methodology +1609.02983 Methodology +1609.02984 Methodology +1609.02986 Methodology +1609.03038 Rings and Algebras +1609.03356 High Energy Astrophysical Phenomena +1609.03552 Computer Vision and Pattern Recognition +1609.03631 Dynamical Systems +1609.03681 Theory +1609.03982 +1609.04268 History and Philosophy of Physics +1609.04344 Geometric Topology +1609.04387 Computer Vision and Pattern Recognition +1609.04473 Dynamical Systems +1609.04714 Combinatorics +1609.04763 +1609.04861 Computer Vision and Pattern Recognition +1609.04884 Functional Analysis +1609.05321 Biological Physics +1609.05409 Number Theory +1609.05926 Emerging Technologies +1609.05956 Representation Theory +1609.06068 Optimization and Control +1609.06071 Networking and Internet Architecture +1609.06075 Functional Analysis +1609.06369 Optimization and Control +1609.06402 Probability +1609.06472 Strongly Correlated Electrons +1609.06616 Computation and Language +1609.06810 Combinatorics +1609.07004 Lattice +1609.07057 +1609.07066 Probability +1609.07082 Learning +1609.07249 +1609.07277 +1609.07287 Astrophysics of Galaxies +1609.07351 +1609.07411 Dynamical Systems +1609.07480 Applications +1609.07484 High Energy Astrophysical Phenomena +1609.07495 Computer Vision and Pattern Recognition +1609.07498 Sound +1609.07499 Cryptography and Security +1609.07501 Systems and Control +1609.07502 Strongly Correlated Electrons +1609.07505 Optimization and Control +1609.07507 Theory +1609.07508 +1609.07509 Logic +1609.07511 Applications +1609.07513 Instrumentation and Detectors +1609.07517 Computational Geometry +1609.07518 Systems and Control +1609.07519 Logic +1609.07521 Machine Learning +1609.07522 Logic +1609.07523 Complex Variables +1609.07525 Combinatorics +1609.07528 Information Theory +1609.07531 Computer Science and Game Theory +1609.07534 Systems and Control +1609.07536 Systems and Control +1609.07537 Optimization and Control +1609.07540 Learning +1609.07541 Dynamical Systems +1609.07542 Robotics +1609.07549 +1609.07551 Quantum Algebra +1609.07555 General Mathematics +1609.07558 Pricing of Securities +1609.07560 Robotics +1609.07561 Computation and Language +1609.07565 Algebraic Topology +1609.07567 Atomic Physics +1609.07568 Computation and Language +1609.07569 Physics and Society +1609.07582 Mesoscale and Nanoscale Physics +1609.07583 Phenomenology +1609.07585 Computation and Language +1609.07586 Geophysics +1609.07587 High Energy Astrophysical Phenomena +1609.07588 Systems and Control +1609.07590 +1609.07591 Symplectic Geometry +1609.07592 Robotics +1609.07595 +1609.07596 Analysis of PDEs +1609.07597 Computer Vision and Pattern Recognition +1609.07598 Spectral Theory +1609.07599 Computer Vision and Pattern Recognition +1609.07600 Mesoscale and Nanoscale Physics +1609.07601 Analysis of PDEs +1609.07602 Cryptography and Security +1609.07603 Distributed, Parallel, and Cluster Computing +1609.07605 Statistical Mechanics +1609.07606 Statistical Mechanics +1609.07607 Statistical Mechanics +1609.07610 Number Theory +1609.07613 Rings and Algebras +1609.07615 Computer Vision and Pattern Recognition +1609.07621 Theory +1609.07626 Superconductivity +1609.07627 Number Theory +1609.07628 Analysis of PDEs +1609.07629 Networking and Internet Architecture +1609.07630 Multimedia +1609.07634 Materials Science +1609.07635 Group Theory +1609.07636 Probability +1609.07637 Methodology +1609.07638 Combinatorics +1609.07639 Combinatorics +1609.07642 Emerging Technologies +1609.07643 Networking and Internet Architecture +1609.07645 Logic +1609.07656 Neurons and Cognition +1609.07657 Phenomenology +1609.07662 Applications +1609.07664 Machine Learning +1609.07665 +1609.07666 Information Theory +1609.07667 Dynamical Systems +1609.07668 Biological Physics +1609.07669 Number Theory +1609.07671 Quantum Gases +1609.07673 Combinatorics +1609.07676 Data Structures and Algorithms +1609.07677 Number Theory +1609.07678 Chemical Physics +1609.07679 Probability +1609.07680 Computation and Language +1609.07681 Computation and Language +1609.07682 Probability +1609.07683 Instrumentation and Methods for Astrophysics +1609.07688 Human-Computer Interaction +1609.07689 +1609.07690 Methodology +1609.07691 Medical Physics +1609.07692 Phenomenology +1609.07693 +1609.07694 Logic +1609.07696 Statistics Theory +1609.07697 Physics and Society +1609.07699 Algebraic Topology +1609.07701 Computation and Language +1609.07702 Complex Variables +1609.07703 +1609.07704 +1609.07706 Neural and Evolutionary Computing +1609.07708 Phenomenology +1609.07711 Information Theory +1609.07712 Networking and Internet Architecture +1609.07714 Methodology +1609.07719 Numerical Analysis +1609.07720 Robotics +1609.07722 Neural and Evolutionary Computing +1609.07724 Neural and Evolutionary Computing +1609.07725 +1609.07728 Algebraic Geometry +1609.07736 Formal Languages and Automata Theory +1609.07737 Differential Geometry +1609.07738 Graphics +1609.07740 Solar and Stellar Astrophysics +1609.07741 Strongly Correlated Electrons +1609.07743 Earth and Planetary Astrophysics +1609.07746 Commutative Algebra +1609.07747 Metric Geometry +1609.07749 Metric Geometry +1609.07750 Neural and Evolutionary Computing +1609.07752 Statistical Mechanics +1609.07753 Complex Variables +1609.07755 Complex Variables +1609.07756 Computation and Language +1609.07757 Chemical Physics +1609.07758 Numerical Analysis +1609.07762 Cosmology and Nongalactic Astrophysics +1609.07764 Dynamical Systems +1609.07765 Soft Condensed Matter +1609.07770 Cryptography and Security +1609.07771 Algebraic Geometry +1609.07772 Artificial Intelligence +1609.07775 +1609.07776 Operator Algebras +1609.07778 Functional Analysis +1609.07779 History and Overview +1609.07780 Data Structures and Algorithms +1609.07781 Networking and Internet Architecture +1609.07785 Materials Science +1609.07787 Phenomenology +1609.07788 Phenomenology +1609.07789 Combinatorics +1609.07790 Mesoscale and Nanoscale Physics +1609.07791 Functional Analysis +1609.07793 +1609.07794 Complex Variables +1609.07795 +1609.07796 Social and Information Networks +1609.07799 Quantitative Methods +1609.07800 Algebraic Geometry +1609.07801 Mesoscale and Nanoscale Physics +1609.07802 Dynamical Systems +1609.07803 Experiment +1609.07804 +1609.07805 Geometric Topology +1609.07806 Applications +1609.07808 Complex Variables +1609.07811 Analysis of PDEs +1609.07813 Rings and Algebras +1609.07814 +1609.07816 Instrumentation and Detectors +1609.07817 Information Theory +1609.07818 Software Engineering +1609.07819 Geometric Topology +1609.07820 Operator Algebras +1609.07823 Databases +1609.07825 Exactly Solvable and Integrable Systems +1609.07826 Computer Vision and Pattern Recognition +1609.07827 Information Theory +1609.07828 Strongly Correlated Electrons +1609.07829 Materials Science +1609.07830 Information Theory +1609.07831 Materials Science +1609.07832 Theory +1609.07833 Combinatorics +1609.07835 Robotics +1609.07838 +1609.07840 Combinatorics +1609.07843 Computation and Language +1609.07846 +1609.07847 Probability +1609.07848 Multimedia +1609.07849 Robotics +1609.07852 Functional Analysis +1609.07853 Quantitative Methods +1609.07857 Instrumentation and Detectors +1609.07858 Numerical Analysis +1609.07860 Computer Science and Game Theory +1609.07862 Number Theory +1609.07864 Algebraic Geometry +1609.07866 Information Theory +1609.07867 High Energy Astrophysical Phenomena +1609.07870 Representation Theory +1609.07871 Mesoscale and Nanoscale Physics +1609.07876 Computation and Language +1609.07877 +1609.07878 Computer Vision and Pattern Recognition +1609.07879 Number Theory +1609.07880 Differential Geometry +1609.07884 Physics and Society +1609.07887 Statistics Theory +1609.07888 Numerical Analysis +1609.07892 Biological Physics +1609.07893 Complex Variables +1609.07894 Mesoscale and Nanoscale Physics +1609.07895 Logic in Computer Science +1609.07896 Astrophysics of Galaxies +1609.07897 Risk Management +1609.07899 Computers and Society +1609.07900 Algebraic Geometry +1609.07902 Computational Engineering, Finance, and Science +1609.07903 Mathematical Finance +1609.07905 Materials Science +1609.07908 Functional Analysis +1609.07909 Statistical Mechanics +1609.07910 Robotics +1609.07911 Computers and Society +1609.07912 Applications +1609.07917 Optics +1609.07918 Optimization and Control +1609.07922 Cryptography and Security +1609.07923 Information Theory +1609.07924 Group Theory +1609.07926 Number Theory +1609.07928 +1609.07929 Functional Analysis +1609.07932 +1609.07934 Number Theory +1609.07935 Number Theory +1609.07936 Computational Physics +1609.07937 Cosmology and Nongalactic Astrophysics +1609.07938 Number Theory +1609.07939 Soft Condensed Matter +1609.07941 Exactly Solvable and Integrable Systems +1609.07942 Statistics Theory +1609.07943 Instrumentation and Methods for Astrophysics +1609.07945 Analysis of PDEs +1609.07946 +1609.07947 +1609.07949 Instrumentation and Detectors +1609.07950 Materials Science +1609.07952 Instrumentation and Methods for Astrophysics +1609.07953 Statistics Theory +1609.07955 Robotics +1609.07958 Methodology +1609.07960 Fluid Dynamics +1609.07961 +1609.07963 Theory +1609.07965 Analysis of PDEs +1609.07966 Materials Science +1609.07970 Logic +1609.07972 Logic in Computer Science +1609.07975 Digital Libraries +1609.07976 Earth and Planetary Astrophysics +1609.07978 Information Theory +1609.07983 Databases +1609.07984 General Physics +1609.07985 Optimization and Control +1609.07990 Instrumentation and Detectors +1609.07991 General Mathematics +1609.07994 Data Structures and Algorithms +1609.07995 Spectral Theory +1609.07997 Combinatorics +1609.07999 General Mathematics +1609.08000 General Mathematics +1609.08003 Mesoscale and Nanoscale Physics +1609.08005 Materials Science +1609.08006 Classical Analysis and ODEs +1609.08007 Combinatorics +1609.08008 Theory +1609.08009 Robotics +1609.08011 Classical Analysis and ODEs +1609.08012 Cosmology and Nongalactic Astrophysics +1609.08014 Functional Analysis +1609.08015 Differential Geometry +1609.08021 +1609.08025 +1609.08030 Physics and Society +1609.08031 Algebraic Geometry +1609.08032 Differential Geometry +1609.08035 Quantitative Methods +1609.08036 Differential Geometry +1609.08037 Probability +1609.08041 Optics +1609.08042 Multimedia +1609.08043 Methodology +1609.08048 Classical Analysis and ODEs +1609.08049 Digital Libraries +1609.08050 Optimization and Control +1609.08054 Commutative Algebra +1609.08056 Instrumentation and Detectors +1609.08057 Geometric Topology +1609.08059 Computational Complexity +1609.08063 Numerical Analysis +1609.08064 Probability +1609.08065 Theory +1609.08069 Instrumentation and Methods for Astrophysics +1609.08072 Combinatorics +1609.08073 Probability +1609.08074 +1609.08075 Computation and Language +1609.08077 Algebraic Topology +1609.08079 Combinatorics +1609.08080 Computer Vision and Pattern Recognition +1609.08083 Neurons and Cognition +1609.08084 Computation and Language +1609.08087 Algebraic Geometry +1609.08095 Data Structures and Algorithms +1609.08097 Computation and Language +1609.08098 Spectral Theory +1609.08099 Adaptation and Self-Organizing Systems +1609.08101 Numerical Analysis +1609.08103 +1609.08106 Combinatorics +1609.08107 Probability +1609.08109 Optics +1609.08111 Probability +1609.08112 Rings and Algebras +1609.08113 Instrumentation and Detectors +1609.08114 Distributed, Parallel, and Cluster Computing +1609.08117 Information Theory +1609.08118 Analysis of PDEs +1609.08121 Optimization and Control +1609.08124 Computer Vision and Pattern Recognition +1609.08125 Classical Analysis and ODEs +1609.08126 +1609.08128 Algebraic Geometry +1609.08132 Computational Geometry +1609.08137 Information Theory +1609.08138 Information Theory +1609.08139 Computation and Language +1609.08140 Classical Analysis and ODEs +1609.08141 Networking and Internet Architecture +1609.08142 Strongly Correlated Electrons +1609.08143 Cosmology and Nongalactic Astrophysics +cs/0409039 Computational Complexity +0808.1320 Algebraic Geometry +0810.1352 Symplectic Geometry +0810.1353 Commutative Algebra +0902.1299 +0908.1457 +0910.0577 Algebraic Geometry +1012.4583 +1101.3199 Algebraic Geometry +1106.0832 Chaotic Dynamics +1106.1768 Classical Analysis and ODEs +1108.2414 Probability +1110.0104 Algebraic Geometry +1203.4247 Mesoscale and Nanoscale Physics +1205.1873 Classical Analysis and ODEs +1208.2871 Metric Geometry +1209.1504 Statistical Mechanics +1210.3784 Solar and Stellar Astrophysics +1210.7111 Pricing of Securities +1212.2331 Metric Geometry +1301.0699 Classical Analysis and ODEs +1304.8069 Numerical Analysis +1305.6014 Algebraic Geometry +1305.7498 Geometric Topology +1308.0499 Numerical Analysis +1309.4795 Geometric Topology +1310.8638 Differential Geometry +1311.4451 Computational Complexity +1311.5028 Numerical Analysis +1311.6308 Algebraic Geometry +1312.5615 Group Theory +1402.3993 Complex Variables +1402.6604 Geophysics +1403.0691 Combinatorics +1403.1495 Phenomenology +1403.4544 Machine Learning +1405.5824 Combinatorics +1405.6083 Number Theory +1406.6441 Physics and Society +1407.4418 Probability +1407.5936 Theory +1408.3328 Numerical Analysis +1408.5194 Algebraic Geometry +1409.7304 Operator Algebras +1410.6682 Phenomenology +1411.2236 Category Theory +1411.4381 Complex Variables +1411.6884 Computational Engineering, Finance, and Science +1412.1995 Group Theory +1412.7299 Methodology +1412.8061 Commutative Algebra +1502.01335 Computational Complexity +1503.00949 Computer Vision and Pattern Recognition +1503.02006 General Physics +1503.03685 Rings and Algebras +1503.05140 Quantitative Methods +1504.00256 +1504.00624 Machine Learning +1504.01694 Biological Physics +1504.03167 Computational Physics +1505.00035 Atomic Physics +1505.07553 Cryptography and Security +1505.07734 Distributed, Parallel, and Cluster Computing +1506.01972 Learning +1506.02159 Numerical Analysis +1506.03393 Atomic Physics +1506.03805 Machine Learning +1506.04313 Probability +1506.07678 Combinatorics +1507.00817 Algebraic Geometry +1507.02540 +1507.02747 Geometric Topology +1507.06092 Optimization and Control +1507.06212 Optics +1508.00554 Theory +1508.03420 Computer Science and Game Theory +1508.03922 Algebraic Geometry +1508.06464 Computer Vision and Pattern Recognition +1509.05771 Phenomenology +1509.07892 Learning +1509.08475 Theory +1510.00857 Computer Vision and Pattern Recognition +1510.03894 Phenomenology +1510.05468 +1510.07338 Cryptography and Security +1510.08836 Algebraic Geometry +1510.08961 Materials Science +1510.09019 Combinatorics +1511.00484 +1511.00747 Complex Variables +1511.03054 Dynamical Systems +1511.03516 Probability +1511.04338 Neurons and Cognition +1511.04365 Phenomenology +1511.04542 Biological Physics +1511.05059 Algebraic Geometry +1511.05678 Learning +1511.06028 Statistics Theory +1511.07677 Fluid Dynamics +1511.08192 Materials Science +1511.08375 Computational Physics +1512.00073 Theory +1512.02062 Networking and Internet Architecture +1512.03699 +1512.04800 General Physics +1512.05848 Dynamical Systems +1512.06016 Analysis of PDEs +1512.06761 +1512.08510 Mesoscale and Nanoscale Physics +1512.09103 Optimization and Control +1512.09342 Earth and Planetary Astrophysics +1601.00060 Differential Geometry +1601.00307 Dynamical Systems +1601.01042 Quantum Gases +1601.02365 +1601.02466 Mesoscale and Nanoscale Physics +1601.03243 Molecular Networks +1601.03946 +1601.04342 Phenomenology +1601.04916 Phenomenology +1601.06094 Information Theory +1601.06167 Statistical Mechanics +1601.06208 Information Theory +1601.06720 Fluid Dynamics +1601.07868 +1602.01392 Data Analysis, Statistics and Probability +1602.02282 Machine Learning +1602.03050 Computational Complexity +1602.03748 Strongly Correlated Electrons +1602.04380 Strongly Correlated Electrons +1602.04724 Theory +1602.05352 Learning +1602.06042 Machine Learning +1603.00144 +1603.00448 Learning +1603.00752 Data Analysis, Statistics and Probability +1603.01504 Materials Science +1603.01581 Artificial Intelligence +1603.02162 Other Condensed Matter +1603.03821 +1603.04495 Phenomenology +1603.04634 Chemical Physics +1603.04723 Phenomenology +1603.06103 Number Theory +1603.06532 Atmospheric and Oceanic Physics +1603.06865 Algebraic Topology +1603.07354 Phenomenology +1603.08178 Theory +1603.08861 Learning +1603.09377 +1604.02027 Learning +1604.02311 +1604.02491 Combinatorics +1604.02658 Phenomenology +1604.02828 Optics +1604.03409 Biomolecules +1604.03604 +1604.03753 General Mathematics +1604.03930 Learning +1604.05385 +1604.05581 Metric Geometry +1604.05667 Solar and Stellar Astrophysics +1604.06534 +1604.06778 Learning +1604.08859 Learning +1605.01287 Dynamical Systems +1605.01327 Mathematical Finance +1605.02226 Learning +1605.04288 Combinatorics +1605.04504 Numerical Analysis +1605.04627 Mesoscale and Nanoscale Physics +1605.04766 Probability +1605.04951 Social and Information Networks +1605.05989 Emerging Technologies +1605.06634 Analysis of PDEs +1605.07144 Machine Learning +1605.07221 Machine Learning +1605.07475 Phenomenology +1605.07757 Representation Theory +1605.08013 Combinatorics +1605.08233 Learning +1605.08234 Disordered Systems and Neural Networks +1605.08367 Artificial Intelligence +1605.08441 Methodology +1605.08443 Cosmology and Nongalactic Astrophysics +1605.08446 Dynamical Systems +1605.08448 Data Structures and Algorithms +1605.08450 Sound +1605.08452 Quantum Gases +1605.08453 Probability +1605.08455 Learning +1605.08457 +1605.08458 Fluid Dynamics +1605.08460 Geometric Topology +1605.08461 Differential Geometry +1605.08464 Computer Vision and Pattern Recognition +1605.08466 Methodology +1605.08467 Statistics Theory +1605.08470 Computer Vision and Pattern Recognition +1605.08473 Methodology +1605.08475 Programming Languages +1605.08481 Learning +1605.08484 Computers and Society +1605.08486 Social and Information Networks +1605.08489 Accelerator Physics +1605.08490 Social and Information Networks +1605.08491 Learning +1605.08495 +1605.08496 +1605.08497 Learning +1605.08500 Functional Analysis +1605.08501 Machine Learning +1605.08504 Theory +1605.08506 +1605.08508 +1605.08510 Dynamical Systems +1605.08513 Information Theory +1605.08515 Information Theory +1605.08516 Classical Analysis and ODEs +1605.08519 +1605.08527 Optimization and Control +1605.08534 Statistics Theory +1605.08535 Software Engineering +1605.08536 Materials Science +1605.08538 Optimization and Control +1605.08540 Discrete Mathematics +1605.08541 Superconductivity +1605.08542 Systems and Control +1605.08543 Computer Vision and Pattern Recognition +1605.08546 Phenomenology +1605.08552 Information Theory +1605.08554 Cryptography and Security +1605.08558 Methodology +1605.08559 Astrophysics of Galaxies +1605.08560 Analysis of PDEs +1605.08561 Materials Science +1605.08563 Cryptography and Security +1605.08565 Optimization and Control +1605.08567 Cryptography and Security +1605.08568 Numerical Analysis +1605.08575 Populations and Evolution +1605.08576 Computation +1605.08577 Phenomenology +1605.08578 Solar and Stellar Astrophysics +1605.08579 Phenomenology +1605.08581 Functional Analysis +1605.08583 Analysis of PDEs +1605.08584 Physics and Society +1605.08591 Combinatorics +1605.08592 Dynamical Systems +1605.08593 K-Theory and Homology +1605.08594 Dynamical Systems +1605.08597 Combinatorics +1605.08598 Materials Science +1605.08602 Soft Condensed Matter +1605.08604 Mesoscale and Nanoscale Physics +1605.08612 Quantitative Methods +1605.08615 Rings and Algebras +1605.08616 Data Structures and Algorithms +1605.08617 +1605.08618 Learning +1605.08622 Pattern Formation and Solitons +1605.08623 Chaotic Dynamics +1605.08625 Probability +1605.08626 Phenomenology +1605.08627 Category Theory +1605.08629 Combinatorics +1605.08630 Information Theory +1605.08632 Systems and Control +1605.08635 Probability +1605.08637 Lattice +1605.08638 Numerical Analysis +1605.08639 General Literature +1605.08640 Combinatorics +1605.08642 Cryptography and Security +1605.08643 Materials Science +1605.08645 Mesoscale and Nanoscale Physics +1605.08649 +1605.08656 Complex Variables +1605.08660 Classical Analysis and ODEs +1605.08667 Statistics Theory +1605.08668 Optics +1605.08669 Numerical Analysis +1605.08670 Metric Geometry +1605.08671 Machine Learning +1605.08672 Analysis of PDEs +1605.08674 Complex Variables +1605.08675 Computation and Language +1605.08679 Quantum Gases +1605.08680 Computer Vision and Pattern Recognition +1605.08683 Complex Variables +1605.08687 Numerical Analysis +1605.08688 Combinatorics +1605.08689 Mesoscale and Nanoscale Physics +1605.08691 Functional Analysis +1605.08692 Medical Physics +1605.08702 Mesoscale and Nanoscale Physics +1605.08703 Statistical Mechanics +1605.08704 Analysis of PDEs +1605.08705 Data Analysis, Statistics and Probability +1605.08707 Complex Variables +1605.08708 Algebraic Topology +1605.08709 Complex Variables +1605.08712 Optimization and Control +1605.08714 Networking and Internet Architecture +1605.08716 Dynamical Systems +1605.08718 Dynamical Systems +1605.08721 Probability +1605.08722 Learning +1605.08723 Chemical Physics +1605.08724 Phenomenology +1605.08725 Dynamical Systems +1605.08730 Classical Analysis and ODEs +1605.08731 Dynamical Systems +1605.08732 Methodology +1605.08739 Algebraic Geometry +1605.08746 Numerical Analysis +1605.08747 Mesoscale and Nanoscale Physics +1605.08748 Other Condensed Matter +1605.08749 Human-Computer Interaction +1605.08750 Lattice +1605.08752 Combinatorics +1605.08753 Applications +1605.08754 Data Structures and Algorithms +1605.08755 Materials Science +1605.08756 Mesoscale and Nanoscale Physics +1605.08759 Applications +1605.08764 Computation and Language +1605.08765 Chaotic Dynamics +1605.08766 Computers and Society +1605.08770 Cosmology and Nongalactic Astrophysics +1605.08771 Numerical Analysis +quant-ph/0309212 +1006.0744 Combinatorics +1012.5438 Earth and Planetary Astrophysics +1111.7254 +1203.6110 Optics +1212.6014 Functional Analysis +1305.0885 +1307.0239 Methodology +1307.2137 Combinatorics +1307.6527 Algebraic Geometry +1308.3895 Analysis of PDEs +1308.5709 Functional Analysis +1309.6642 Theory +1310.2250 Theory +1311.4134 Mesoscale and Nanoscale Physics +1311.7634 Probability +1402.0624 +1402.2766 Optimization and Control +1403.0428 Analysis of PDEs +1403.0632 Functional Analysis +1403.1534 Theory +1403.3142 Computation and Language +1403.4370 Applications +1406.0022 Information Theory +1406.3105 Probability +1407.6179 Superconductivity +1408.0358 Materials Science +1408.5545 Numerical Analysis +1408.6656 Representation Theory +1409.1499 Probability +1409.2083 Analysis of PDEs +1409.5072 Materials Science +1409.8403 Computer Vision and Pattern Recognition +1410.0211 +1410.0807 Probability +1410.1372 Metric Geometry +1410.3990 Category Theory +1411.0043 Mesoscale and Nanoscale Physics +1411.1739 Number Theory +1411.3541 Quantum Gases +1411.3984 Statistics Theory +1411.4722 Probability +1411.7021 Optics +1412.1892 +1501.00862 Representation Theory +1501.01177 Quantum Gases +1501.06898 Algebraic Geometry +1502.02521 Algebraic Geometry +1502.02592 +1502.04354 Data Structures and Algorithms +1502.06889 +1503.00748 Optics +1503.01071 Probability +1503.01514 Networking and Internet Architecture +1503.02232 Dynamical Systems +1503.03742 Optimization and Control +1503.05815 Mesoscale and Nanoscale Physics +1503.07538 +1503.07731 +1504.05455 Information Theory +1504.06819 Strongly Correlated Electrons +1504.07189 Classical Analysis and ODEs +1505.04011 +1506.01433 +1506.04905 General Mathematics +1506.07203 Rings and Algebras +1506.08227 Geometric Topology +1507.01840 Superconductivity +1507.04634 Superconductivity +1507.05375 Rings and Algebras +1507.06213 Rings and Algebras +1508.00715 Computation and Language +1508.01041 Computational Engineering, Finance, and Science +1508.01045 Logic in Computer Science +1508.05652 Methodology +1508.06813 Theory +1508.07330 Cosmology and Nongalactic Astrophysics +1509.00212 +1509.00556 Social and Information Networks +1509.02552 Optics +1509.03233 Quantum Gases +1509.06935 Mathematical Software +1509.07928 Information Theory +1509.08375 Optics +1510.00039 Probability +1510.01409 Analysis of PDEs +1510.02046 General Mathematics +1510.03969 +1510.05911 Databases +1511.04631 Cryptography and Security +1511.05403 Phenomenology +1511.05905 Representation Theory +1511.06256 +1511.06630 Materials Science +1511.07903 Information Theory +1511.08071 +1511.08100 Statistical Mechanics +1511.09241 Materials Science +1512.00328 Accelerator Physics +1512.01495 Statistical Mechanics +1512.01536 Biological Physics +1512.02145 Experiment +1512.02602 Neurons and Cognition +1512.03689 Phenomenology +1512.03966 Quantum Algebra +1512.04868 +1512.05146 Dynamical Systems +1512.05210 Statistical Mechanics +1512.05407 Functional Analysis +1512.07097 +1512.07175 +1512.07609 +1512.08206 Chemical Physics +1512.08208 Optics +1512.08690 Materials Science +1512.09005 Algebraic Geometry +1512.09317 Materials Science +1601.00371 Quantum Gases +1601.00424 Soft Condensed Matter +1601.00586 Phenomenology +1601.00661 Phenomenology +1601.01260 +1601.01623 General Mathematics +1601.03240 Databases +1601.04080 Strongly Correlated Electrons +1601.05693 Superconductivity +1601.06144 Analysis of PDEs +1601.06185 Strongly Correlated Electrons +1601.07291 Populations and Evolution +1602.01933 +1602.03830 Mesoscale and Nanoscale Physics +1602.04258 Populations and Evolution +1602.05152 Computational Complexity +1602.06147 Quantum Gases +1602.06263 Materials Science +1602.06383 Statistics Theory +1602.06530 Number Theory +1602.06935 Physics and Society +1602.07166 Atomic Physics +1602.08924 Number Theory +1602.09065 Computer Vision and Pattern Recognition +1603.00089 +1603.00736 General Finance +1603.05140 Mesoscale and Nanoscale Physics +1603.05296 Optimization and Control +1603.06580 Phenomenology +1603.06696 Rings and Algebras +1603.06715 +1603.07045 Analysis of PDEs +1603.07435 Numerical Analysis +1603.08374 Strongly Correlated Electrons +1603.08709 Dynamical Systems +1604.00471 Materials Science +1604.01253 General Physics +1604.01323 Superconductivity +1604.02873 Soft Condensed Matter +1604.03464 Algebraic Geometry +1604.03770 +1604.03792 General Mathematics +1604.03831 Functional Analysis +1604.04093 +1604.04479 Materials Science +1604.04603 Optimization and Control +1604.04865 Materials Science +1604.05319 Phenomenology +1604.05392 Differential Geometry +1604.05422 Differential Geometry +1604.05426 Differential Geometry +1604.05542 Cryptography and Security +1604.05601 Number Theory +1604.05608 Number Theory +1604.05656 Superconductivity +1604.05668 Cryptography and Security +1604.05717 Operator Algebras +1604.05725 Earth and Planetary Astrophysics +1604.05740 Rings and Algebras +1604.05743 Differential Geometry +1604.05745 Differential Geometry +1604.05747 Computation and Language +1604.05748 +1604.05749 +1604.05750 Digital Libraries +1604.05753 Learning +1604.05754 Information Retrieval +1604.05755 Group Theory +1604.05757 Discrete Mathematics +1604.05760 Analysis of PDEs +1604.05764 Numerical Analysis +1604.05765 Data Structures and Algorithms +1604.05766 Computer Vision and Pattern Recognition +1604.05767 +1604.05771 Economics +1604.05774 Phenomenology +1604.05776 High Energy Astrophysical Phenomena +1604.05777 Algebraic Geometry +1604.05782 Optics +1604.05783 Analysis of PDEs +1604.05784 Solar and Stellar Astrophysics +1604.05785 Optics +1604.05786 Solar and Stellar Astrophysics +1604.05790 Robotics +1604.05791 Artificial Intelligence +1604.05792 Neural and Evolutionary Computing +1604.05793 Human-Computer Interaction +1604.05797 Human-Computer Interaction +1604.05799 Multimedia +1604.05802 Atmospheric and Oceanic Physics +1604.05806 Number Theory +1604.05811 Networking and Internet Architecture +1604.05813 Information Retrieval +1604.05815 Differential Geometry +1604.05817 Computer Vision and Pattern Recognition +1604.05819 Machine Learning +1604.05821 Number Theory +1604.05823 Information Theory +1604.05826 Fluid Dynamics +1604.05828 Information Theory +1604.05830 Optics +1604.05836 Algebraic Geometry +1604.05839 Combinatorics +1604.05840 Materials Science +1604.05843 Logic in Computer Science +1604.05844 Analysis of PDEs +1604.05848 Computer Vision and Pattern Recognition +1604.05850 Analysis of PDEs +1604.05853 Differential Geometry +1604.05854 +1604.05855 Spectral Theory +1604.05856 +1604.05860 Analysis of PDEs +1604.05863 Metric Geometry +1604.05864 Data Analysis, Statistics and Probability +1604.05865 Computer Vision and Pattern Recognition +1604.05866 Logic +1604.05868 Methodology +1604.05869 +1604.05871 Plasma Physics +1604.05872 Mathematical Software +1604.05873 Quantum Algebra +1604.05875 Computation and Language +1604.05877 Geophysics +1604.05878 Computation and Language +1604.05879 Information Theory +1604.05883 Category Theory +1604.05884 Differential Geometry +1604.05885 Group Theory +1604.05887 Category Theory +1604.05888 Geophysics +1604.05889 Group Theory +1604.05891 High Energy Astrophysical Phenomena +1604.05894 Phenomenology +1604.05896 Statistical Finance +1604.05898 Phenomenology +1604.05902 Group Theory +1604.05903 Software Engineering +1604.05908 Information Theory +1604.05910 Applications +1604.05913 Information Theory +1604.05915 Distributed, Parallel, and Cluster Computing +1604.05919 Mesoscale and Nanoscale Physics +1604.05920 Materials Science +1604.05923 Digital Libraries +1604.05924 General Physics +1604.05925 Networking and Internet Architecture +1604.05927 Statistics Theory +1604.05928 Materials Science +1604.05931 Analysis of PDEs +1604.05932 History and Philosophy of Physics +1604.05933 Computer Vision and Pattern Recognition +1604.05934 Materials Science +1604.05936 Quantum Gases +1604.05939 Algebraic Topology +1604.05940 Computational Complexity +1604.05942 Robotics +1604.05943 Algebraic Geometry +1604.05945 Optics +1604.05947 Commutative Algebra +1604.05950 Group Theory +1604.05951 K-Theory and Homology +1604.05953 Numerical Analysis +1604.05954 Algebraic Geometry +1604.05955 High Energy Astrophysical Phenomena +1604.05957 Human-Computer Interaction +1604.05958 Discrete Mathematics +1604.05959 Distributed, Parallel, and Cluster Computing +1604.05962 History and Philosophy of Physics +1604.05963 History and Philosophy of Physics +1604.05972 Computational Geometry +1604.05973 +1604.05975 Fluid Dynamics +1604.05979 Information Theory +1604.05983 Plasma Physics +1604.05985 Phenomenology +1604.05986 Optics +1604.05989 Number Theory +1604.05990 Probability +1604.05992 Neurons and Cognition +1604.05993 Learning +1604.05996 +1604.05998 Medical Physics +1604.05999 Data Structures and Algorithms +1604.06003 Applications +1604.06004 Theory +1604.06006 +1604.06008 Numerical Analysis +1604.06016 +1604.06018 Algebraic Geometry +1604.06020 Machine Learning +1604.06024 Number Theory +1604.06030 Distributed, Parallel, and Cluster Computing +1604.06031 Group Theory +1604.06036 Machine Learning +1604.06037 Logic +1604.06039 Analysis of PDEs +1604.06040 Materials Science +1604.06042 Optimization and Control +1604.06043 Numerical Analysis +1604.06047 Geometric Topology +1604.06052 Materials Science +1604.06053 Digital Libraries +1604.06054 Chemical Physics +1604.06059 Cryptography and Security +1604.06061 Computer Science and Game Theory +1604.06066 Rings and Algebras +1604.06067 Data Structures and Algorithms +1604.06069 Algebraic Geometry +1604.06070 Combinatorics +1604.06072 Algebraic Geometry +1604.06076 Artificial Intelligence +1604.06078 Analysis of PDEs +1604.06081 +1604.06083 Computer Vision and Pattern Recognition +1604.06086 Strongly Correlated Electrons +hep-ph/0612238 Phenomenology +0711.0958 +0712.1446 +0812.1286 +0907.4284 High Energy Astrophysical Phenomena +0909.0361 Quantum Algebra +1001.4015 High Energy Astrophysical Phenomena +1011.2448 Cosmology and Nongalactic Astrophysics +1011.6068 Commutative Algebra +1102.2994 +1110.6363 General Physics +1204.4691 +1207.0619 Materials Science +1210.1290 +1212.5585 General Physics +1301.4981 Formal Languages and Automata Theory +1303.0552 +1304.0138 Quantum Algebra +1304.5504 Learning +1306.5334 Numerical Analysis +1307.5122 Pricing of Securities +1308.5129 Cosmology and Nongalactic Astrophysics +1309.0596 Algebraic Geometry +1309.4591 Superconductivity +1309.5384 Cosmology and Nongalactic Astrophysics +1310.0904 Algebraic Geometry +1310.4127 +1310.7162 Algebraic Geometry +1311.4243 Probability +1312.0898 Algebraic Geometry +1312.1200 Statistics Theory +1401.3678 Materials Science +1401.5679 Probability +1401.6213 +1401.6649 +1404.4332 Soft Condensed Matter +1406.1031 Optimization and Control +1406.1829 Group Theory +1406.2762 Instrumentation and Methods for Astrophysics +1406.6416 Algebraic Topology +1407.2930 +1407.4952 +1408.3403 +1408.3505 Populations and Evolution +1408.5503 Optics +1408.7082 Disordered Systems and Neural Networks +1409.4351 Classical Analysis and ODEs +1409.5049 Soft Condensed Matter +1410.4629 Materials Science +1410.4949 Solar and Stellar Astrophysics +1410.6923 +1411.5142 Functional Analysis +1412.8710 Theory +1501.02279 Chemical Physics +1501.02526 Soft Condensed Matter +1501.02745 Exactly Solvable and Integrable Systems +1501.04290 +1501.04492 Chemical Physics +1501.04739 Methodology +1501.04822 Distributed, Parallel, and Cluster Computing +1501.05559 Differential Geometry +1501.06359 Mesoscale and Nanoscale Physics +1502.00415 Populations and Evolution +1502.00498 Representation Theory +1502.00785 Mesoscale and Nanoscale Physics +1502.01401 Algebraic Geometry +1502.03363 Analysis of PDEs +1502.04073 Pattern Formation and Solitons +1502.04194 Analysis of PDEs +1502.05742 Computer Vision and Pattern Recognition +1502.06088 Adaptation and Self-Organizing Systems +1502.07142 Numerical Analysis +1503.00402 Superconductivity +1503.00961 Mathematical Finance +1503.01361 Classical Analysis and ODEs +1503.01571 High Energy Astrophysical Phenomena +1503.01665 +1503.02665 Cosmology and Nongalactic Astrophysics +1503.03044 Optics +1503.03340 +1503.03867 High Energy Astrophysical Phenomena +1503.04086 +1503.04806 Theory +1503.05706 Algebraic Geometry +1503.07773 General Physics +1503.08997 Cosmology and Nongalactic Astrophysics +1504.00217 Earth and Planetary Astrophysics +1504.00421 Analysis of PDEs +1504.00509 Phenomenology +1504.00631 Dynamical Systems +1504.00970 Differential Geometry +1504.01023 Mathematical Software +1504.02102 Phenomenology +1504.03192 Number Theory +1504.04227 +1504.04378 Phenomenology +1504.04516 Cosmology and Nongalactic Astrophysics +1504.06175 Quantum Gases +1504.06552 Statistical Mechanics +1504.07572 +1505.00995 +1505.01387 Theory +1505.02963 Disordered Systems and Neural Networks +1505.03065 Emerging Technologies +1505.03119 Theory +1505.03170 Chemical Physics +1505.03444 Mesoscale and Nanoscale Physics +1505.03571 Theory +1505.04523 Quantum Gases +1505.05005 Plasma Physics +1505.05041 Commutative Algebra +1505.06179 Cosmology and Nongalactic Astrophysics +1505.06270 Information Theory +1505.06822 Computational Physics +1505.06837 Group Theory +1505.06979 +1505.07332 Physics and Society +1505.07468 Mesoscale and Nanoscale Physics +1505.08147 High Energy Astrophysical Phenomena +1506.00406 Computation and Language +1506.00707 Optics +1506.00779 Machine Learning +1506.00908 Strongly Correlated Electrons +1506.01017 Theory +1506.01184 +1506.01375 Theory +1506.01401 +1506.02110 Theory +1506.02751 Information Theory +1506.02920 Solar and Stellar Astrophysics +1506.03829 +1506.03974 Operator Algebras +1506.03975 +1506.04100 Materials Science +1506.04314 Cosmology and Nongalactic Astrophysics +1506.04335 Theory +1506.04547 High Energy Astrophysical Phenomena +1506.05131 High Energy Astrophysical Phenomena +1506.05458 Quantum Gases +1506.05465 Phenomenology +1506.05474 Social and Information Networks +1506.05838 Theory +1506.06090 Differential Geometry +1506.06609 Functional Analysis +1506.06731 +1506.06737 Probability +1506.06746 Strongly Correlated Electrons +1506.06750 Theory +1506.06757 Theory +1506.06776 +1506.07165 Physics and Society +1506.07166 Instrumentation and Methods for Astrophysics +1506.07900 Solar and Stellar Astrophysics +1506.07923 Representation Theory +1506.08189 Data Structures and Algorithms +1506.08929 Atomic Physics +1506.09054 Functional Analysis +1506.09079 +1507.00463 Theory +1507.00518 Number Theory +1507.00643 High Energy Astrophysical Phenomena +1507.00875 +1507.01141 Classical Analysis and ODEs +1507.01920 Number Theory +1507.01990 Logic +1507.02245 Phenomenology +1507.03456 Cosmology and Nongalactic Astrophysics +1507.03620 +1507.03958 Algebraic Geometry +1507.04158 Theory +1507.05103 Social and Information Networks +1507.05603 Instrumentation and Methods for Astrophysics +1507.06008 Probability +1507.06416 Mesoscale and Nanoscale Physics +1507.06520 +1507.06919 Combinatorics +1507.06975 Mesoscale and Nanoscale Physics +1507.07022 Fluid Dynamics +1507.07026 Fluid Dynamics +1507.07241 Quantum Gases +1507.07281 Accelerator Physics +1507.07367 +1507.07447 Differential Geometry +1507.07646 Computer Vision and Pattern Recognition +1507.07793 General Physics +1507.08173 Computer Vision and Pattern Recognition +1507.08399 Mesoscale and Nanoscale Physics +1507.08840 +1507.08884 Materials Science +1507.08912 Theory +1508.00480 Mesoscale and Nanoscale Physics +1508.00514 Data Structures and Algorithms +1508.00528 Biological Physics +1508.00533 General Mathematics +1508.00897 Theory +1508.00993 Mesoscale and Nanoscale Physics +1508.01079 +1508.01386 Cosmology and Nongalactic Astrophysics +1508.01397 Applications +1508.01758 Strongly Correlated Electrons +1508.01923 Quantum Algebra +1508.02096 Computation and Language +1508.02482 +1508.02820 Information Theory +1508.02976 Strongly Correlated Electrons +1508.03408 +1508.04235 Phenomenology +1508.04317 Superconductivity +1508.04480 Quantum Gases +1508.05099 Astrophysics of Galaxies +1508.05234 Differential Geometry +1508.05660 +1508.05847 Statistics Theory +1508.05962 +1508.06140 Soft Condensed Matter +1508.06771 Soft Condensed Matter +1508.07528 +1508.07530 Statistics Theory +1508.07575 Information Theory +1508.07961 +1509.00162 Materials Science +1509.00482 Cosmology and Nongalactic Astrophysics +1509.02008 Numerical Analysis +1509.02126 Theory +1509.02210 Earth and Planetary Astrophysics +1509.02219 Phenomenology +1509.02373 +1509.02416 Materials Science +1509.02572 Numerical Analysis +1509.02847 Chemical Physics +1509.02909 Atomic and Molecular Clusters +1509.03159 +1509.03820 Statistical Mechanics +1509.03848 Phenomenology +1509.04441 Theory +1509.04451 +1509.04569 Chemical Physics +1509.05285 Atmospheric and Oceanic Physics +1509.05375 High Energy Astrophysical Phenomena +1509.05634 Computer Vision and Pattern Recognition +1509.06119 Analysis of PDEs +1509.06323 Statistical Mechanics +1509.06671 Solar and Stellar Astrophysics +1509.06717 Mesoscale and Nanoscale Physics +1509.07102 Applications +1509.07111 Atomic Physics +1509.07219 Biological Physics +1509.07257 Phenomenology +1509.07311 Soft Condensed Matter +1509.07348 +1509.07745 Materials Science +1509.08390 Analysis of PDEs +1509.08851 +1509.08916 High Energy Astrophysical Phenomena +1509.08941 High Energy Astrophysical Phenomena +1510.00236 Mesoscale and Nanoscale Physics +1510.00298 Atmospheric and Oceanic Physics +1510.00314 Statistical Mechanics +1510.00623 Plasma Physics +1510.00680 +1510.00960 High Energy Astrophysical Phenomena +1510.01095 +1510.01111 High Energy Astrophysical Phenomena +1510.01680 Soft Condensed Matter +1510.01966 High Energy Astrophysical Phenomena +1510.01996 Theory +1510.02028 Instrumentation and Detectors +1510.02079 +1510.02093 High Energy Astrophysical Phenomena +1510.02277 High Energy Astrophysical Phenomena +1510.02291 Materials Science +1510.02411 Phenomenology +1510.02487 High Energy Astrophysical Phenomena +1510.02701 Materials Science +1510.02844 Computational Physics +1510.02958 Computation +1510.03244 Phenomenology +1510.03377 Number Theory +1510.03494 Cosmology and Nongalactic Astrophysics +1510.03576 High Energy Astrophysical Phenomena +1510.03741 Differential Geometry +1510.03934 Accelerator Physics +1510.03982 Cell Behavior +1510.04032 High Energy Astrophysical Phenomena +1510.04162 Applications +1510.04170 +1510.04545 High Energy Astrophysical Phenomena +1510.04779 +1510.04844 Superconductivity +1510.05000 Plasma Physics +1510.05017 +1510.05169 Optimization and Control +1510.05432 Phenomenology +1510.05670 Mesoscale and Nanoscale Physics +1510.05726 Optics +1510.05838 Mesoscale and Nanoscale Physics +1510.06188 Information Theory +1510.06200 High Energy Astrophysical Phenomena +1510.06274 Dynamical Systems +1510.06376 +1510.06422 Cosmology and Nongalactic Astrophysics +1510.06474 +1510.06644 Soft Condensed Matter +1510.06705 Exactly Solvable and Integrable Systems +1510.06891 Statistical Mechanics +1510.07049 Astrophysics of Galaxies +1510.07268 Theory +1510.07599 Statistical Finance +1510.07638 High Energy Astrophysical Phenomena +1510.07651 +1510.07686 Optics +1510.07906 +1510.08090 Theory +1510.08186 +1510.08189 High Energy Astrophysical Phenomena +1510.08242 +1510.08533 Astrophysics of Galaxies +1510.08772 Theory +1510.08827 Astrophysics of Galaxies +1510.08902 High Energy Astrophysical Phenomena +1510.09048 +1510.09163 Numerical Analysis +1511.00004 +1511.00035 Plasma Physics +1511.00058 Atomic Physics +1511.00274 Theory +1511.00336 High Energy Astrophysical Phenomena +1511.00535 Mesoscale and Nanoscale Physics +1511.00714 +1511.00719 +1511.00800 +1511.00842 Superconductivity +1511.00988 Phenomenology +1511.01099 Phenomenology +1511.01325 Theory +1511.01332 High Energy Astrophysical Phenomena +1511.01494 Cosmology and Nongalactic Astrophysics +1511.01503 Astrophysics of Galaxies +1511.01607 Cellular Automata and Lattice Gases +1511.01780 Soft Condensed Matter +1511.01895 Theory +1511.01904 Phenomenology +1511.02019 +1511.02194 Chemical Physics +1511.02214 Fluid Dynamics +1511.02493 Soft Condensed Matter +1511.02536 Theory +1511.02874 Phenomenology +1511.02885 Exactly Solvable and Integrable Systems +1511.02958 Quantum Gases +1511.03051 Soft Condensed Matter +1511.03358 Atmospheric and Oceanic Physics +1511.03432 Theory +1511.03486 Mesoscale and Nanoscale Physics +1511.03530 +1511.03969 Phenomenology +1511.04090 Cosmology and Nongalactic Astrophysics +1511.04093 Astrophysics of Galaxies +1511.04187 Theory +1511.04347 Plasma Physics +1511.04415 Earth and Planetary Astrophysics +1511.04476 Astrophysics of Galaxies +1511.04957 Quantum Algebra +1511.05051 +1511.05683 Information Theory +1511.05824 Optics +1511.05887 High Energy Astrophysical Phenomena +1511.05930 Astrophysics of Galaxies +1511.05972 Optics +1511.06002 Phenomenology +1511.06059 Theory +1511.06075 Pattern Formation and Solitons +1511.06242 +1511.06317 Phenomenology +1511.06319 Strongly Correlated Electrons +1511.06414 Plasma Physics +1511.06430 Learning +1511.06524 Optics +1511.06598 +1511.06650 +1511.06708 Atomic Physics +1511.06831 Mesoscale and Nanoscale Physics +1511.06860 Computer Vision and Pattern Recognition +1511.06903 +1511.06923 +1511.06927 Atmospheric and Oceanic Physics +1511.06953 Fluid Dynamics +1511.07053 Computer Vision and Pattern Recognition +1511.07128 Materials Science +1511.07181 High Energy Astrophysical Phenomena +1511.07336 Mesoscale and Nanoscale Physics +1511.07362 Mesoscale and Nanoscale Physics +1511.07393 High Energy Astrophysical Phenomena +1511.07691 Soft Condensed Matter +1511.07728 +1511.07924 Quantum Gases +1511.07975 High Energy Astrophysical Phenomena +1511.08210 Phenomenology +1511.08500 Soft Condensed Matter +1511.08505 Theory +1511.08531 Computer Vision and Pattern Recognition +1511.08596 High Energy Astrophysical Phenomena +1511.08673 Strongly Correlated Electrons +1511.08789 Theory +1511.08810 Astrophysics of Galaxies +1511.09114 Theory +1511.09187 Materials Science +1511.09337 Learning +1511.09452 Phenomenology +1511.09471 Symplectic Geometry +1512.00009 Solar and Stellar Astrophysics +1512.00018 Astrophysics of Galaxies +1512.00099 +1512.00737 Solar and Stellar Astrophysics +1512.00748 Accelerator Physics +1512.00751 Soft Condensed Matter +1512.00839 Mesoscale and Nanoscale Physics +1512.01091 Theory +1512.01198 High Energy Astrophysical Phenomena +1512.01214 Instrumentation and Methods for Astrophysics +1512.01241 Instrumentation and Methods for Astrophysics +1512.01511 Physics Education +1512.01528 Phenomenology +1512.01854 Astrophysics of Galaxies +1512.01957 Phenomenology +1512.02209 Theory +1512.02265 Phenomenology +1512.02288 Plasma Physics +1512.02439 Astrophysics of Galaxies +1512.02465 Theory +1512.02492 Theory +1512.02551 +1512.02643 Solar and Stellar Astrophysics +1512.02644 +1512.02663 Phenomenology +1512.02875 +1512.03050 Cosmology and Nongalactic Astrophysics +1512.03141 Cosmology and Nongalactic Astrophysics +1512.03163 Mesoscale and Nanoscale Physics +1512.03192 Theory +1512.03268 +1512.03276 Experiment +1512.03410 +1512.03475 +1512.03546 Materials Science +1512.03619 +1512.03643 Materials Science +1512.03717 Functional Analysis +1512.03775 Astrophysics of Galaxies +1512.03803 Theory +1512.03818 Astrophysics of Galaxies +1512.03984 Plasma Physics +1512.04055 Materials Science +1512.04416 Applications +1512.04536 Astrophysics of Galaxies +1512.04604 Astrophysics of Galaxies +1512.04626 Materials Science +1512.04642 +1512.04814 Chaotic Dynamics +1512.04901 Phenomenology +1512.05106 Chemical Physics +1512.05166 Optics +1512.05213 Populations and Evolution +1512.05298 +1512.05316 +1512.05336 Geophysics +1512.05366 Astrophysics of Galaxies +1512.05476 +1512.05572 +1512.05700 Phenomenology +1512.05725 Theory +1512.05739 +1512.05746 Theory +1512.05759 Phenomenology +1512.05793 Cosmology and Nongalactic Astrophysics +1512.05977 Theory +1512.05982 +1512.06035 Phenomenology +1512.06131 +1512.06157 +1512.06182 Theory +1512.06212 Experiment +1512.06277 Theory +1512.06350 Cosmology and Nongalactic Astrophysics +1512.06363 Theory +1512.06387 +1512.06542 Atmospheric and Oceanic Physics +1512.06549 +1512.06601 Statistical Mechanics +1512.06644 Plasma Physics +1512.06793 +1512.06797 Phenomenology +1512.06845 +1512.06862 Astrophysics of Galaxies +1512.06887 Mesoscale and Nanoscale Physics +1512.06924 Theory +1512.07045 Plasma Physics +1512.07130 Theory +1512.07167 Plasma Physics +1512.07217 High Energy Astrophysical Phenomena +1512.07241 Theory +1512.07291 Atomic and Molecular Clusters +1512.07412 Cosmology and Nongalactic Astrophysics +1512.07511 Atomic Physics +1512.07618 Materials Science +1512.07782 Systems and Control +1512.07867 Plasma Physics +1512.07903 High Energy Astrophysical Phenomena +1512.08132 Theory +1512.08175 Superconductivity +1512.08391 Mesoscale and Nanoscale Physics +1512.08471 Theory +1512.08550 Theory +1512.08615 Optics +1512.08682 +1512.08715 Data Analysis, Statistics and Probability +1512.08755 +1512.08770 Phenomenology +1512.08858 Theory +1512.08962 Cosmology and Nongalactic Astrophysics +1512.09034 Instrumentation and Detectors +1512.09050 Strongly Correlated Electrons +1512.09168 Exactly Solvable and Integrable Systems +1512.09220 Theory +1512.09253 History and Philosophy of Physics +1512.09275 +1512.09276 Phenomenology +1512.09357 Materials Science +1601.00006 Phenomenology +1601.00035 Fluid Dynamics +1601.00215 Astrophysics of Galaxies +1601.00298 Adaptation and Self-Organizing Systems +1601.00471 +1601.00482 Theory +1601.00614 Lattice +1601.00704 Fluid Dynamics +1601.00980 Theory +1601.01016 Mesoscale and Nanoscale Physics +1601.01312 High Energy Astrophysical Phenomena +1601.01373 Mesoscale and Nanoscale Physics +1601.01388 Cosmology and Nongalactic Astrophysics +1601.01529 Solar and Stellar Astrophysics +1601.01585 Phenomenology +1601.01627 Theory +1601.01666 Phenomenology +1601.01701 Cosmology and Nongalactic Astrophysics +1601.01739 Instrumentation and Methods for Astrophysics +1601.01805 Materials Science +1601.01827 Theory +1601.02005 +1601.02321 Phenomenology +1601.02402 +1601.02599 Theory +1601.02851 Solar and Stellar Astrophysics +1601.02951 Strongly Correlated Electrons +1601.03023 Theory +1601.03073 Learning +1601.03221 Cosmology and Nongalactic Astrophysics +1601.03256 Solar and Stellar Astrophysics +1601.03268 Mesoscale and Nanoscale Physics +1601.03318 Quantum Gases +1601.03362 Materials Science +1601.03378 Cryptography and Security +1601.03401 Astrophysics of Galaxies +1601.03553 Atomic Physics +1601.03629 Phenomenology +1601.03644 Statistical Mechanics +1601.03685 Chemical Physics +1601.03757 Optics +1601.03772 Phenomenology +1601.03846 Theory +1601.03924 Representation Theory +1601.03943 +1601.04198 Statistical Mechanics +1601.04368 Statistical Mechanics +1601.04424 Astrophysics of Galaxies +1601.04523 Theory +1601.04594 Earth and Planetary Astrophysics +1601.04652 +1601.04666 +1601.04707 Cosmology and Nongalactic Astrophysics +1601.04758 Theory +1601.04860 Chemical Physics +1601.04954 Phenomenology +1601.04957 Theory +1601.04990 Phenomenology +1601.05006 +1601.05226 Fluid Dynamics +1601.05375 Phenomenology +1601.05489 Optics +1601.05731 Phenomenology +1601.05755 Strongly Correlated Electrons +1601.05814 Earth and Planetary Astrophysics +1601.05816 Solar and Stellar Astrophysics +1601.05867 High Energy Astrophysical Phenomena +1601.06038 Quantum Gases +1601.06044 Computer Vision and Pattern Recognition +1601.06321 +1601.06355 Phenomenology +1601.06360 Theory +1601.06393 Phenomenology +1601.06422 Information Theory +1601.06438 Materials Science +1601.06469 +1601.06514 Computational Physics +1601.06528 +1601.06535 Chemical Physics +1601.06563 Statistical Mechanics +1601.06656 +1601.06781 High Energy Astrophysical Phenomena +1601.06798 Astrophysics of Galaxies +1601.06876 +1601.06989 Theory +1601.07020 Phenomenology +1601.07057 +1601.07237 Solar and Stellar Astrophysics +1601.07257 Phenomenology +1601.07286 Mesoscale and Nanoscale Physics +1601.07308 Solar and Stellar Astrophysics +1601.07329 Chemical Physics +1601.07553 Cosmology and Nongalactic Astrophysics +1601.07556 Phenomenology +1601.07557 Cosmology and Nongalactic Astrophysics +1601.07627 Statistical Mechanics +1601.07687 Materials Science +1601.07749 Theory +1601.07847 Phenomenology +1601.07913 Experiment +1601.07932 Learning +1601.08024 Classical Physics +1601.08043 Chemical Physics +1601.08094 Phenomenology +1601.08140 Cosmology and Nongalactic Astrophysics +1602.00018 Superconductivity +1602.00085 Soft Condensed Matter +1602.00086 High Energy Astrophysical Phenomena +1602.00126 Phenomenology +1602.00312 High Energy Astrophysical Phenomena +1602.00612 Mesoscale and Nanoscale Physics +1602.00630 Optics +1602.00643 Physics and Society +1602.00736 Optics +1602.00858 Instrumentation and Detectors +1602.01022 Theory +1602.01064 Machine Learning +1602.01150 Optics +1602.01256 Soft Condensed Matter +1602.01301 Data Analysis, Statistics and Probability +1602.01330 Phenomenology +1602.01336 Solar and Stellar Astrophysics +1602.01407 Machine Learning +1602.01418 Quantum Algebra +1602.01488 Theory +1602.01708 Astrophysics of Galaxies +1602.01833 Theory +1602.01843 Astrophysics of Galaxies +1602.02014 Materials Science +1602.02082 Mesoscale and Nanoscale Physics +1602.02214 +1602.02371 Geometric Topology +1602.02583 Theory +1602.02677 Plasma Physics +1602.02678 Phenomenology +1602.02679 Strongly Correlated Electrons +1602.02779 Astrophysics of Galaxies +1602.02791 Astrophysics of Galaxies +1602.02799 Materials Science +1602.02827 Plasma Physics +1602.03007 Theory +1602.03123 Earth and Planetary Astrophysics +1602.03161 Phenomenology +1602.03234 Astrophysics of Galaxies +1602.03278 High Energy Astrophysical Phenomena +1602.03405 Phenomenology +1602.03456 Solar and Stellar Astrophysics +1602.03498 Information Theory +1602.03604 Phenomenology +1602.03684 Phenomenology +1602.03708 Theory +1602.03799 Pattern Formation and Solitons +1602.03817 Astrophysics of Galaxies +1602.03827 +1602.03875 Theory +1602.04039 Plasma Physics +1602.04074 Phenomenology +1602.04175 +1602.04342 Mesoscale and Nanoscale Physics +1602.04397 +1602.04404 +1602.04510 High Energy Astrophysical Phenomena +1602.04598 Astrophysics of Galaxies +1602.04639 +1602.04811 Theory +1602.04818 Phenomenology +1602.04861 Instrumentation and Methods for Astrophysics +1602.05029 +1602.05050 High Energy Astrophysical Phenomena +1602.05099 +1602.05443 Optics +1602.05501 Solar and Stellar Astrophysics +1602.05667 Chemical Physics +1602.05915 Astrophysics of Galaxies +1602.05917 Astrophysics of Galaxies +1602.05956 Solar and Stellar Astrophysics +1602.06071 +1602.06125 Plasma Physics +1602.06212 Astrophysics of Galaxies +1602.06256 Classical Analysis and ODEs +1602.06414 High Energy Astrophysical Phenomena +1602.06619 Materials Science +1602.06710 Mesoscale and Nanoscale Physics +1602.06711 Cosmology and Nongalactic Astrophysics +1602.06729 Mesoscale and Nanoscale Physics +1602.06814 Phenomenology +1602.07068 Pattern Formation and Solitons +1602.07314 Solar and Stellar Astrophysics +1602.07463 Mesoscale and Nanoscale Physics +1602.07489 Atomic Physics +1602.07610 Soft Condensed Matter +1602.07691 Phenomenology +1602.07731 Information Theory +1602.07773 High Energy Astrophysical Phenomena +1602.07805 High Energy Astrophysical Phenomena +1602.07939 Instrumentation and Methods for Astrophysics +1602.08013 Materials Science +1602.08100 Phenomenology +1602.08107 Phenomenology +1602.08172 Strongly Correlated Electrons +1602.08193 History and Philosophy of Physics +1602.08195 Mesoscale and Nanoscale Physics +1602.08229 Astrophysics of Galaxies +1602.08300 Phenomenology +1602.08433 Cosmology and Nongalactic Astrophysics +1602.08476 Theory +1602.08482 Space Physics +1602.08495 High Energy Astrophysical Phenomena +1602.08496 Earth and Planetary Astrophysics +1602.08583 +1602.08689 Fluid Dynamics +1602.08693 Solar and Stellar Astrophysics +1602.08749 High Energy Astrophysical Phenomena +1602.08758 Plasma Physics +1602.08967 Phenomenology +1602.08994 Phenomenology +1602.09002 +1603.00148 Solar and Stellar Astrophysics +1603.00248 +1603.00253 Materials Science +1603.00258 Mesoscale and Nanoscale Physics +1603.00287 Phenomenology +1603.00313 Mesoscale and Nanoscale Physics +1603.00341 High Energy Astrophysical Phenomena +1603.00357 Theory +1603.00419 Solar and Stellar Astrophysics +1603.00436 +1603.00495 Astrophysics of Galaxies +1603.00761 Soft Condensed Matter +1603.00777 Atomic Physics +1603.00874 Astrophysics of Galaxies +1603.00880 Statistical Mechanics +1603.01036 +1603.01125 Earth and Planetary Astrophysics +1603.01144 Earth and Planetary Astrophysics +1603.01226 Astrophysics of Galaxies +1603.01235 High Energy Astrophysical Phenomena +1603.01322 Astrophysics of Galaxies +1603.01366 Phenomenology +1603.01377 Phenomenology +1603.01388 Phenomenology +1603.01432 Atomic Physics +1603.01487 High Energy Astrophysical Phenomena +1603.01556 Astrophysics of Galaxies +1603.01559 Cosmology and Nongalactic Astrophysics +1603.01617 Astrophysics of Galaxies +1603.01642 General Physics +1603.01660 History and Overview +1603.01668 Materials Science +1603.01725 Optics +1603.01779 Space Physics +1603.01903 Chemical Physics +1603.01905 Chemical Physics +1603.01923 Solar and Stellar Astrophysics +1603.01934 Earth and Planetary Astrophysics +1603.02005 +1603.02016 High Energy Astrophysical Phenomena +1603.02050 Solar and Stellar Astrophysics +1603.02076 Theory +1603.02197 Chaotic Dynamics +1603.02224 Solar and Stellar Astrophysics +1603.02348 Mesoscale and Nanoscale Physics +1603.02364 +1603.02397 Astrophysics of Galaxies +1603.02410 High Energy Astrophysical Phenomena +1603.02477 Optics +1603.02498 Phenomenology +1603.02565 Soft Condensed Matter +1603.02577 Astrophysics of Galaxies +1603.02603 Mesoscale and Nanoscale Physics +1603.02630 Earth and Planetary Astrophysics +1603.02710 Astrophysics of Galaxies +1603.02759 +1603.02812 Theory +1603.02824 Materials Science +1603.02847 Atomic Physics +1603.02885 Soft Condensed Matter +1603.03005 Solar and Stellar Astrophysics +1603.03013 Statistical Mechanics +1603.03047 Astrophysics of Galaxies +1603.03182 Materials Science +1603.03202 Quantum Gases +1603.03344 Instrumentation and Methods for Astrophysics +1603.03346 Quantitative Methods +1603.03347 Cosmology and Nongalactic Astrophysics +1603.03416 Theory +1603.03479 Statistical Mechanics +1603.03546 Solar and Stellar Astrophysics +1603.03573 Astrophysics of Galaxies +1603.03595 Astrophysics of Galaxies +1603.03596 Theory +1603.03638 Phenomenology +1603.03701 Quantum Gases +1603.03707 Astrophysics of Galaxies +1603.03738 Earth and Planetary Astrophysics +1603.03760 Theory +1603.03782 Theory +1603.03798 Astrophysics of Galaxies +1603.03812 Theory +1603.03823 Cosmology and Nongalactic Astrophysics +1603.03825 Solar and Stellar Astrophysics +1603.03861 +1603.03930 Phenomenology +1603.04039 Numerical Analysis +1603.04074 High Energy Astrophysical Phenomena +1603.04244 Astrophysics of Galaxies +1603.04253 Symplectic Geometry +1603.04323 Strongly Correlated Electrons +1603.04347 Theory +1603.04370 Superconductivity +1603.04385 Solar and Stellar Astrophysics +1603.04496 Solar and Stellar Astrophysics +1603.04533 Astrophysics of Galaxies +1603.04567 Solar and Stellar Astrophysics +1603.04593 High Energy Astrophysical Phenomena +1603.04598 Phenomenology +1603.04638 High Energy Astrophysical Phenomena +1603.04645 Solar and Stellar Astrophysics +1603.04741 Atomic Physics +1603.04824 Theory +1603.04840 Astrophysics of Galaxies +1603.04863 Astrophysics of Galaxies +1603.04968 Solar and Stellar Astrophysics +1603.05067 Instrumentation and Detectors +1603.05077 Materials Science +1603.05094 Astrophysics of Galaxies +1603.05109 Strongly Correlated Electrons +1603.05149 Plasma Physics +1603.05254 Solar and Stellar Astrophysics +1603.05275 Astrophysics of Galaxies +1603.05283 Solar and Stellar Astrophysics +1603.05397 Solar and Stellar Astrophysics +1603.05488 Theory +1603.05492 Atomic Physics +1603.05666 Solar and Stellar Astrophysics +1603.05742 Chemical Physics +1603.05754 Earth and Planetary Astrophysics +1603.05833 Astrophysics of Galaxies +1603.05885 Astrophysics of Galaxies +1603.05893 Earth and Planetary Astrophysics +1603.06050 Portfolio Management +1603.06055 Phenomenology +1603.06086 Experiment +1603.06144 Solar and Stellar Astrophysics +1603.06229 Functional Analysis +1603.06305 Solar and Stellar Astrophysics +1603.06448 Mesoscale and Nanoscale Physics +1603.06489 High Energy Astrophysical Phenomena +1603.06502 Solar and Stellar Astrophysics +1603.06526 Earth and Planetary Astrophysics +1603.06650 Physics and Society +1603.06778 Space Physics +1603.06866 Physics Education +1603.06876 Astrophysics of Galaxies +1603.06925 Plasma Physics +1603.06943 Solar and Stellar Astrophysics +1603.06949 High Energy Astrophysical Phenomena +1603.06954 High Energy Astrophysical Phenomena +1603.06982 Materials Science +1603.07090 High Energy Astrophysical Phenomena +1603.07145 Astrophysics of Galaxies +1603.07273 Solar and Stellar Astrophysics +1603.07274 Superconductivity +1603.07286 High Energy Astrophysical Phenomena +1603.07308 High Energy Astrophysical Phenomena +1603.07329 Differential Geometry +1603.07345 Astrophysics of Galaxies +1603.07361 Differential Geometry +1603.07470 +1603.07651 Solar and Stellar Astrophysics +1603.07677 Materials Science +1603.07782 +1603.07885 High Energy Astrophysical Phenomena +1603.07922 Number Theory +1603.08063 Chemical Physics +1603.08145 Earth and Planetary Astrophysics +1603.08185 High Energy Astrophysical Phenomena +1603.08195 +1603.08208 High Energy Astrophysical Phenomena +1603.08385 Astrophysics of Galaxies +1603.08448 +1603.08457 Statistical Mechanics +1603.08475 +1603.08606 Solar and Stellar Astrophysics +1603.08688 Materials Science +1603.08721 Solar and Stellar Astrophysics +1603.08724 Materials Science +1603.08761 Astrophysics of Galaxies +1603.08799 Soft Condensed Matter +1603.08807 Fluid Dynamics +1603.08809 Solar and Stellar Astrophysics +1603.08824 +1603.08920 Solar and Stellar Astrophysics +1603.08930 Earth and Planetary Astrophysics +1603.08931 Solar and Stellar Astrophysics +1603.09086 Probability +1603.09136 Earth and Planetary Astrophysics +1603.09179 Solar and Stellar Astrophysics +1603.09322 Atomic Physics +1603.09332 Astrophysics of Galaxies +1603.09358 Quantum Gases +1603.09594 Solar and Stellar Astrophysics +1604.00006 Astrophysics of Galaxies +1604.00007 Phenomenology +1604.00179 Phenomenology +1604.00185 Astrophysics of Galaxies +1604.00205 Astrophysics of Galaxies +1604.00245 Soft Condensed Matter +1604.00250 Materials Science +1604.00291 Fluid Dynamics +1604.00304 Fluid Dynamics +1604.00364 High Energy Astrophysical Phenomena +1604.00428 Probability +1604.00747 Number Theory +1604.00765 Number Theory +1604.00831 Solar and Stellar Astrophysics +1604.00891 Theory +1604.01068 Solar and Stellar Astrophysics +1604.01134 Phenomenology +1604.01276 +1604.01295 Optics +1604.01364 Materials Science +1604.01389 Mesoscale and Nanoscale Physics +1604.01409 Cosmology and Nongalactic Astrophysics +1604.01412 Experiment +1604.01492 Accelerator Physics +1604.01536 Solar and Stellar Astrophysics +1604.01552 High Energy Astrophysical Phenomena +1604.01768 Astrophysics of Galaxies +1604.01825 Experiment +1604.01884 Astrophysics of Galaxies +1604.02034 Astrophysics of Galaxies +1604.02101 Mesoscale and Nanoscale Physics +1604.02183 Chemical Physics +1604.02205 Plasma Physics +1604.02214 Astrophysics of Galaxies +1604.02273 Phenomenology +1604.02372 High Energy Astrophysical Phenomena +1604.02439 Strongly Correlated Electrons +1604.02451 +1604.02553 Subcellular Processes +1604.02554 Subcellular Processes +1604.02565 Astrophysics of Galaxies +1604.02587 +1604.02800 Solar and Stellar Astrophysics +1604.02874 Solar and Stellar Astrophysics +1604.02924 High Energy Astrophysical Phenomena +1604.02961 Soft Condensed Matter +1604.02974 Astrophysics of Galaxies +1604.02982 Optics +1604.03013 +1604.03119 Earth and Planetary Astrophysics +1604.03256 Astrophysics of Galaxies +1604.03273 Instrumentation and Methods for Astrophysics +1604.03307 Astrophysics of Galaxies +1604.03316 +1604.03361 Superconductivity +1604.03368 Plasma Physics +1604.03374 Atomic Physics +1604.03420 Mesoscale and Nanoscale Physics +1604.03667 Solar and Stellar Astrophysics +1604.03737 Strongly Correlated Electrons +1604.03748 Solar and Stellar Astrophysics +1604.03809 +1604.03819 Cosmology and Nongalactic Astrophysics +1604.03835 Solar and Stellar Astrophysics +1604.03843 Analysis of PDEs +1604.03943 Solar and Stellar Astrophysics +1604.03953 Astrophysics of Galaxies +1604.03981 Solar and Stellar Astrophysics +1604.04014 +1604.04066 High Energy Astrophysical Phenomena +1604.04184 Earth and Planetary Astrophysics +1604.04323 Accelerator Physics +1604.04332 Astrophysics of Galaxies +1604.04363 +1604.04395 Astrophysics of Galaxies +1604.04591 Distributed, Parallel, and Cluster Computing +1604.04621 Solar and Stellar Astrophysics +1604.05026 Materials Science +1604.05110 Materials Science +1604.05139 Earth and Planetary Astrophysics +1604.05202 Cosmology and Nongalactic Astrophysics +1604.05268 Numerical Analysis +1604.05306 +1604.05316 Astrophysics of Galaxies +1604.05374 Solar and Stellar Astrophysics +1604.05470 Solar and Stellar Astrophysics +1604.05512 Representation Theory +1604.05599 Astrophysics of Galaxies +1604.05669 Mesoscale and Nanoscale Physics +1604.05686 Materials Science +1604.05700 Instrumentation and Detectors +1604.05752 Materials Science +1604.05770 Solar and Stellar Astrophysics +1604.05798 Pattern Formation and Solitons +1604.05801 Representation Theory +1604.05874 Statistical Mechanics +1604.05882 Materials Science +1604.05901 +1604.06144 Dynamical Systems +1604.06287 Earth and Planetary Astrophysics +1604.06360 High Energy Astrophysical Phenomena +1604.06384 Logic in Computer Science +1604.06521 Materials Science +1604.06636 Astrophysics of Galaxies +1604.06847 Earth and Planetary Astrophysics +1604.06873 Mesoscale and Nanoscale Physics +1604.06885 Astrophysics of Galaxies +1604.07221 Astrophysics of Galaxies +1604.07247 +1604.07280 Solar and Stellar Astrophysics +1604.07285 Astrophysics of Galaxies +1604.07290 Astrophysics of Galaxies +1604.07324 Phenomenology +1604.07431 Astrophysics of Galaxies +1604.07460 Cosmology and Nongalactic Astrophysics +1604.07496 Astrophysics of Galaxies +1604.07537 Astrophysics of Galaxies +1604.07538 Earth and Planetary Astrophysics +1604.07727 Earth and Planetary Astrophysics +1604.07747 Strongly Correlated Electrons +1604.07790 Earth and Planetary Astrophysics +1604.07834 Astrophysics of Galaxies +1604.07836 Cosmology and Nongalactic Astrophysics +1604.07901 Earth and Planetary Astrophysics +1604.07902 Astrophysics of Galaxies +1604.07935 Soft Condensed Matter +1604.07950 Materials Science +1604.07955 Astrophysics of Galaxies +1604.08046 Solar and Stellar Astrophysics +1604.08337 Rings and Algebras +1604.08371 Earth and Planetary Astrophysics +1604.08380 Earth and Planetary Astrophysics +1604.08405 +1604.08411 Astrophysics of Galaxies +1604.08533 Mesoscale and Nanoscale Physics +1604.08537 Solar and Stellar Astrophysics +1604.08557 Earth and Planetary Astrophysics +1604.08560 Earth and Planetary Astrophysics +1604.08627 Astrophysics of Galaxies +1604.08700 Atomic Physics +1604.08856 +1604.08897 Information Retrieval +1604.08925 Plasma Physics +1604.08933 +1605.00006 Astrophysics of Galaxies +1605.00016 Cosmology and Nongalactic Astrophysics +1605.00120 Strongly Correlated Electrons +1605.00195 Solar and Stellar Astrophysics +1605.00330 Solar and Stellar Astrophysics +1605.00407 Astrophysics of Galaxies +1605.00661 Astrophysics of Galaxies +1605.00664 Astrophysics of Galaxies +1605.00714 Cosmology and Nongalactic Astrophysics +1605.00731 Optics +1605.00791 Instrumentation and Detectors +1605.00823 Cosmology and Nongalactic Astrophysics +1605.00938 Solar and Stellar Astrophysics +1605.01058 Astrophysics of Galaxies +1605.01187 Materials Science +1605.01346 Astrophysics of Galaxies +1605.01353 Solar and Stellar Astrophysics +1605.01453 Solar and Stellar Astrophysics +1605.01457 Mesoscale and Nanoscale Physics +1605.01638 Astrophysics of Galaxies +1605.01644 Cosmology and Nongalactic Astrophysics +1605.01677 Machine Learning +1605.01680 Mesoscale and Nanoscale Physics +1605.01730 High Energy Astrophysical Phenomena +1605.01740 Astrophysics of Galaxies +1605.01797 +1605.01816 Graphics +1605.01833 Solar and Stellar Astrophysics +1605.01963 Solar and Stellar Astrophysics +1605.01979 +1605.02039 Solar and Stellar Astrophysics +1605.02217 Solar and Stellar Astrophysics +1605.02405 Astrophysics of Galaxies +1605.02473 Earth and Planetary Astrophysics +1605.02532 Mathematical Software +1605.02536 Learning +1605.02545 Classical Physics +1605.02598 +1605.02736 Astrophysics of Galaxies +1605.02825 Earth and Planetary Astrophysics +1605.02855 Soft Condensed Matter +1605.03089 Materials Science +1605.03174 Solar and Stellar Astrophysics +1605.03440 Populations and Evolution +1605.03488 Phenomenology +1605.03752 Materials Science +1605.03784 +1605.04067 +1605.04089 Solar and Stellar Astrophysics +1605.04669 Superconductivity +1605.04720 Astrophysics of Galaxies +1605.04767 +1605.04812 Learning +1605.04827 Solar and Stellar Astrophysics +1605.04847 Materials Science +1605.04849 +1605.05020 +1605.05049 Algebraic Geometry +1605.05367 Populations and Evolution +1605.05422 Optimization and Control +1605.05581 General Physics +1605.05723 High Energy Astrophysical Phenomena +1605.05795 Systems and Control +1605.05859 Phenomenology +1605.06097 High Energy Astrophysical Phenomena +1605.06144 Symplectic Geometry +1605.06314 +1605.06315 +1605.06316 +1605.06378 Category Theory +1605.06565 Differential Geometry +1605.06570 Combinatorics +1605.06572 Combinatorics +1605.06574 Combinatorics +1605.06577 Combinatorics +1605.06643 Combinatorics +1605.06676 Artificial Intelligence +1605.07008 Sound +1605.07083 Distributed, Parallel, and Cluster Computing +1605.07167 Computers and Society +1605.07170 Combinatorics +1605.07172 Data Structures and Algorithms +1605.07173 Combinatorics +1605.07181 Theory +1605.07196 Networking and Internet Architecture +1605.07198 Numerical Analysis +1605.07203 Algebraic Geometry +1605.07204 Probability +1605.07211 Earth and Planetary Astrophysics +1605.07213 Phenomenology +1605.07216 Algebraic Geometry +1605.07230 Portfolio Management +1605.07232 Analysis of PDEs +1605.07233 Probability +1605.07234 Optimization and Control +1605.07237 Combinatorics +1605.07239 Spectral Theory +1605.07240 Probability +1605.07241 Combinatorics +1605.07242 Methodology +1605.07243 Combinatorics +1605.07244 Methodology +1605.07249 Statistics Theory +1605.07250 Differential Geometry +1605.07251 Computer Vision and Pattern Recognition +1605.07255 Differential Geometry +1605.07258 Geometric Topology +1605.07259 Symplectic Geometry +1605.07260 Artificial Intelligence +1605.07264 Applications +1605.07266 Neurons and Cognition +1605.07267 Geometric Topology +1605.07268 Computers and Society +1605.07270 Computer Vision and Pattern Recognition +1605.07277 Cryptography and Security +1605.07278 Statistical Finance +1605.07282 High Energy Astrophysical Phenomena +1605.07283 Dynamical Systems +1605.07285 Data Structures and Algorithms +1605.07288 Optics +1605.07290 Instrumentation and Methods for Astrophysics +1605.07293 Optimization and Control +1605.07294 Biomolecules +1605.07303 Numerical Analysis +1605.07308 Atomic and Molecular Clusters +1605.07311 +1605.07312 +1605.07313 Phenomenology +1605.07314 Computer Vision and Pattern Recognition +1605.07316 Robotics +1605.07318 Biological Physics +1605.07325 Solar and Stellar Astrophysics +1605.07330 Number Theory +1605.07333 Computation and Language +1605.07336 Software Engineering +1605.07337 Analysis of PDEs +1605.07341 Networking and Internet Architecture +1605.07343 Computers and Society +1605.07344 Numerical Analysis +1605.07345 Materials Science +1605.07346 Computation and Language +1605.07347 Information Theory +1605.07354 Distributed, Parallel, and Cluster Computing +1605.07358 Information Theory +1605.07361 Solar and Stellar Astrophysics +1605.07362 Information Theory +1605.07363 Computer Vision and Pattern Recognition +1605.07364 Artificial Intelligence +1605.07366 Computation and Language +1605.07369 Computer Vision and Pattern Recognition +1605.07370 Astrophysics of Galaxies +1605.07371 Neurons and Cognition +1605.07376 Soft Condensed Matter +1605.07380 Biological Physics +1605.07381 Analysis of PDEs +1605.07385 Statistics Theory +1605.07388 Analysis of PDEs +1605.07390 Group Theory +1605.07394 Analysis of PDEs +1605.07396 Analysis of PDEs +1605.07398 +1605.07399 +1605.07400 Combinatorics +1605.07404 Materials Science +1605.07408 Operator Algebras +1605.07409 Functional Analysis +1605.07411 Discrete Mathematics +1605.07412 Statistics Theory +1605.07413 Probability +1605.07417 Algebraic Geometry +1605.07419 Mathematical Finance +1605.07423 Metric Geometry +1605.07425 Dynamical Systems +1605.07427 Machine Learning +1605.07429 Instrumentation and Methods for Astrophysics +1605.07432 Classical Analysis and ODEs +1605.07433 Symbolic Computation +1605.07437 Metric Geometry +1605.07440 Combinatorics +1605.07443 Numerical Analysis +1605.07445 Analysis of PDEs +1605.07446 Strongly Correlated Electrons +1605.07448 Materials Science +1605.07449 Classical Analysis and ODEs +1605.07450 +1605.07451 Statistical Mechanics +1605.07452 +1605.07455 Analysis of PDEs +1605.07456 Instrumentation and Methods for Astrophysics +1605.07459 +1605.07461 Materials Science +1605.07464 Functional Analysis +1605.07467 Sound +1605.07471 Mesoscale and Nanoscale Physics +1605.07473 Algebraic Geometry +1605.07476 +1605.07477 Algebraic Geometry +1605.07479 Populations and Evolution +1605.07481 Space Physics +1605.07483 Computer Science and Game Theory +1605.07486 Algebraic Geometry +1605.07487 Optics +1605.07488 Genomics +1605.07491 Representation Theory +1605.07492 Combinatorics +1605.07495 Information Theory +1605.07497 +1605.07498 Learning +1605.07501 Instrumentation and Methods for Astrophysics +1605.07504 Mesoscale and Nanoscale Physics +1605.07507 Differential Geometry +1605.07511 Cryptography and Security +1605.07513 +1605.07514 Methodology +1605.07517 Theory +1605.07518 Astrophysics of Galaxies +1605.07519 Dynamical Systems +1605.07521 Methodology +1605.07522 Optimization and Control +1605.07526 Functional Analysis +1605.07527 Logic +1605.07532 Analysis of PDEs +1605.07534 Geometric Topology +1605.07535 Combinatorics +1605.07537 Superconductivity +1605.07540 Operator Algebras +1605.07541 Learning +1605.07544 Optimization and Control +1605.07546 Geometric Topology +1605.07549 +1605.07554 +1605.07559 Networking and Internet Architecture +1605.07560 Theory +1605.07561 Theory +1605.07567 Phenomenology +1605.07570 Probability +1605.07573 Differential Geometry +1605.07574 Artificial Intelligence +1605.07578 Optimization and Control +1605.07581 Dynamical Systems +1605.07582 Strongly Correlated Electrons +1605.07587 Physics and Society +1605.07590 Algebraic Geometry +1605.07591 Analysis of PDEs +1605.07592 Exactly Solvable and Integrable Systems +1605.07594 Symplectic Geometry +1605.07598 Probability +1605.07601 Probability +1605.07604 Machine Learning +astro-ph/0011092 +astro-ph/9809370 +math/0703699 Functional Analysis +nucl-th/0005064 +quant-ph/0403069 +0705.4676 Databases +0808.1311 Representation Theory +0903.2211 +1003.4960 Representation Theory +1005.5152 Representation Theory +1007.2811 Representation Theory +1007.3658 Differential Geometry +1104.0743 Plasma Physics +1104.5482 +1105.1154 Geometric Topology +1109.2557 Computational Finance +1110.1679 Representation Theory +1110.4882 Data Structures and Algorithms +1206.6426 Computation and Language +1207.0164 Combinatorics +1207.7338 Representation Theory +1208.1020 Differential Geometry +1209.1170 Geometric Topology +1210.3755 Materials Science +1210.5104 Mesoscale and Nanoscale Physics +1212.5704 Number Theory +1212.6539 Combinatorics +1303.3783 Probability +1304.1820 Differential Geometry +1307.0827 +1309.0792 +1309.4659 Differential Geometry +1309.7458 Group Theory +1310.0380 Number Theory +1310.1789 Dynamical Systems +1310.1826 Machine Learning +1311.1760 Combinatorics +1311.4722 +1311.4905 Number Theory +1311.5180 Metric Geometry +1311.7357 Data Structures and Algorithms +1312.7321 +1401.1443 Functional Analysis +1401.2433 Combinatorics +1402.3607 +1403.7071 Analysis of PDEs +1403.7240 Commutative Algebra +1403.7605 Computer Science and Game Theory +1404.0060 Representation Theory +1404.3080 Number Theory +1405.0746 Metric Geometry +1405.1218 Probability +1405.4312 Probability +1405.5449 Probability +1405.5536 Phenomenology +1406.1432 Probability +1406.2011 +1406.2796 Statistics Theory +1406.3441 Number Theory +1406.3558 Number Theory +1406.5268 Probability +1406.5484 Probability +1406.5526 Functional Analysis +1406.5614 Learning +1406.7851 Methodology +1407.1483 +1408.0848 Learning +1408.3151 Disordered Systems and Neural Networks +1408.3373 +1408.6089 Group Theory +1409.0733 Statistics Theory +1409.3302 Computer Science and Game Theory +1409.7548 Probability +1410.0423 Metric Geometry +1410.2491 Probability +1410.3280 Algebraic Geometry +1410.6857 Combinatorics +1410.7690 Machine Learning +1411.0771 Combinatorics +1411.0867 Metric Geometry +1411.1132 Social and Information Networks +1411.2738 Computation and Language +1411.4901 Physics and Society +1411.6046 Number Theory +1411.7780 Statistical Mechanics +1412.3676 +1412.5139 Statistics Theory +1412.5458 Representation Theory +1412.7700 Group Theory +1501.03285 Probability +1501.04168 +1501.06138 Mesoscale and Nanoscale Physics +1501.06300 Pattern Formation and Solitons +1502.00054 Other Computer Science +1502.05477 Learning +1502.05805 Analysis of PDEs +1503.00151 +1503.04363 Computation +1503.04507 Strongly Correlated Electrons +1503.06155 Statistics Theory +1503.06734 Analysis of PDEs +1503.07883 Theory +1503.08098 Materials Science +1503.08446 +1504.00296 Probability +1504.01013 Computer Vision and Pattern Recognition +1504.02251 Probability +1504.03231 +1504.03265 +1504.04838 +1504.05037 Commutative Algebra +1504.06069 Chemical Physics +1504.06780 +1504.08051 Numerical Analysis +1505.01657 Representation Theory +1505.02059 Astrophysics of Galaxies +1505.04730 +1505.05833 General Physics +1505.06894 Differential Geometry +1505.07460 Theory +1506.00088 Statistics Theory +1506.00497 +1506.02608 Number Theory +1506.02974 Metric Geometry +1506.03365 Computer Vision and Pattern Recognition +1506.03713 Differential Geometry +1506.05517 Group Theory +1506.06156 Mesoscale and Nanoscale Physics +1507.01974 Mesoscale and Nanoscale Physics +1507.02316 Functional Analysis +1507.03067 Data Structures and Algorithms +1507.03236 Mesoscale and Nanoscale Physics +1507.05848 +1507.06234 Representation Theory +1507.06569 Combinatorics +1507.07050 Statistics Theory +1507.08542 +1508.00945 Machine Learning +1508.02992 +1508.03226 Geometric Topology +1508.05227 Phenomenology +1508.05622 Group Theory +1508.05835 Probability +1508.06693 Instrumentation and Detectors +1509.01161 Strongly Correlated Electrons +1509.01172 Strongly Correlated Electrons +1509.02781 Neurons and Cognition +1509.03098 Probability +1509.03174 General Physics +1509.03249 +1509.03816 Dynamical Systems +1509.04363 +1509.04759 Quantum Gases +1509.05190 Experiment +1509.05552 Numerical Analysis +1509.05796 Astrophysics of Galaxies +1509.06024 Information Theory +1509.06751 Astrophysics of Galaxies +1509.08002 Mesoscale and Nanoscale Physics +1509.08275 Combinatorics +1509.09032 Quantum Algebra +1509.09148 Numerical Analysis +1510.00094 Methodology +1510.00886 Algebraic Geometry +1510.01056 Mesoscale and Nanoscale Physics +1510.01068 Dynamical Systems +1510.01635 Mesoscale and Nanoscale Physics +1510.03066 Theory +1510.03451 Mesoscale and Nanoscale Physics +1510.04672 Atomic Physics +1510.06142 Numerical Analysis +1510.06545 Group Theory +1510.06732 Applications +1510.06980 +1510.07030 Risk Management +1510.07562 Phenomenology +1510.08367 Experiment +1510.08605 Complex Variables +1510.08838 Symplectic Geometry +1511.00877 Rings and Algebras +1511.00968 Phenomenology +1511.01749 Classical Analysis and ODEs +1511.02860 Theory +1511.04428 Distributed, Parallel, and Cluster Computing +1511.04652 Spectral Theory +1511.05294 Functional Analysis +1511.06038 Computation and Language +1511.06273 +1511.06602 Geometric Topology +1511.06829 Analysis of PDEs +1511.08920 Computational Engineering, Finance, and Science +1512.00942 Plasma Physics +1512.01442 Materials Science +1512.01500 Dynamical Systems +1512.02272 Dynamical Systems +1512.02519 Theory +1512.03581 Phenomenology +1512.03927 Physics and Society +1512.03933 Algebraic Geometry +1512.04516 Differential Geometry +1512.05767 Phenomenology +1512.05932 Materials Science +1512.06292 Statistical Mechanics +1512.07940 Plasma Physics +1512.08023 +1512.08188 Group Theory +1512.09328 +1601.00007 High Energy Astrophysical Phenomena +1601.00174 Disordered Systems and Neural Networks +1601.00645 Astrophysics of Galaxies +1601.01837 Phenomenology +1601.01838 Phenomenology +1601.02318 Soft Condensed Matter +1601.02930 Materials Science +1601.03049 Phenomenology +1601.03487 Mesoscale and Nanoscale Physics +1601.03955 +1601.04337 Symplectic Geometry +1601.04353 Materials Science +1601.05560 Statistics Theory +1601.06602 Learning +1601.06924 Mesoscale and Nanoscale Physics +1601.07450 +1601.07993 Operator Algebras +1602.00159 Economics +1602.00699 Theory +1602.00830 Spectral Theory +1602.00985 Computer Vision and Pattern Recognition +1602.01168 Computer Vision and Pattern Recognition +1602.01822 Logic +1602.01849 Statistical Mechanics +1602.03492 Representation Theory +1602.03856 Geometric Topology +1602.03952 Theory +1602.04695 Classical Analysis and ODEs +1602.04732 Formal Languages and Automata Theory +1602.04895 Representation Theory +1602.06251 General Physics +1602.06677 Materials Science +1602.06752 Metric Geometry +1602.07868 Learning +1602.08009 +1603.00106 Learning +1603.00972 Representation Theory +1603.01160 Neurons and Cognition +1603.01930 +1603.02194 Learning +1603.02291 High Energy Astrophysical Phenomena +1603.02296 Statistical Mechanics +1603.03826 Other Computer Science +1603.03881 Number Theory +1603.04066 Probability +1603.04525 Computer Vision and Pattern Recognition +1603.04647 Optics +1603.04697 General Physics +1603.04912 Other Statistics +1603.05141 Quantum Gases +1603.06006 Probability +1603.06053 Databases +1603.06273 Theory +1603.06613 Disordered Systems and Neural Networks +1603.06748 Optics +1603.06961 Experiment +1603.07161 Chemical Physics +1603.07633 Soft Condensed Matter +1603.08586 Geometric Topology +1603.08917 General Mathematics +1603.09310 Number Theory +1603.09326 Methodology +1604.00679 Probability +1604.00727 Computation and Language +1604.00965 Theory +1604.01600 Numerical Analysis +1604.01885 +1604.02306 Mesoscale and Nanoscale Physics +1604.02329 Number Theory +1604.03995 Chemical Physics +1604.04589 High Energy Astrophysical Phenomena +1604.04701 Phenomenology +1604.04877 Geometric Topology +1604.05211 Fluid Dynamics +1604.05689 Systems and Control +1604.06111 Molecular Networks +1604.06222 Superconductivity +1604.06691 Systems and Control +1604.06693 +1604.07296 +1604.07387 +1604.07684 Accelerator Physics +1604.07865 Rings and Algebras +1604.08118 Probability +1605.00066 +1605.00107 +1605.00124 Data Structures and Algorithms +1605.01702 Optimization and Control +1605.01722 General Mathematics +1605.01898 Phenomenology +1605.02533 Solar and Stellar Astrophysics +1605.03885 Astrophysics of Galaxies +1605.03936 Number Theory +1605.03952 Quantitative Methods +1605.04037 Probability +1605.04171 Materials Science +1605.04293 +1605.04506 Statistical Mechanics +1605.04723 Computers and Society +1605.04807 Combinatorics +1605.04900 Operator Algebras +1605.05072 Disordered Systems and Neural Networks +1605.05396 Neural and Evolutionary Computing +1605.05489 Logic +1605.06227 Probability +1605.06909 Operator Algebras +1605.07103 Spectral Theory +1605.07335 Artificial Intelligence +1605.07424 Number Theory +1605.07866 Computer Vision and Pattern Recognition +1605.08143 Computer Science and Game Theory +1605.08273 General Mathematics +1605.08387 Theory +1605.08392 Probability +1605.08512 Learning +1605.08664 Cryptography and Security +1605.08737 Statistics Theory +1605.08894 Atomic Physics +1605.08963 Methodology +1605.08998 Information Theory +1605.09021 Distributed, Parallel, and Cluster Computing +1605.09046 Learning +1605.09481 +1605.09503 Methodology +1605.09656 Quantum Algebra +1605.09673 Learning +1605.09722 Quantum Algebra +1606.00044 Differential Geometry +1606.00047 Differential Geometry +1606.00049 Group Theory +1606.00058 Artificial Intelligence +1606.00078 Classical Analysis and ODEs +1606.00100 +1606.00236 Probability +1606.00357 Physics Education +1606.00471 Optics +1606.00573 +1606.00596 Computational Complexity +1606.00707 Algebraic Geometry +1606.00757 Information Theory +1606.00835 Combinatorics +1606.00851 Mesoscale and Nanoscale Physics +1606.00998 Systems and Control +1606.01088 Probability +1606.01243 Computational Engineering, Finance, and Science +1606.01244 Classical Physics +1606.01245 Numerical Analysis +1606.01257 Optimization and Control +1606.01259 Astrophysics of Galaxies +1606.01261 Learning +1606.01265 Probability +1606.01266 K-Theory and Homology +1606.01267 Theory +1606.01269 Computation and Language +1606.01278 Algebraic Geometry +1606.01281 Combinatorics +1606.01283 Computation and Language +1606.01284 Machine Learning +1606.01285 Probability +1606.01287 Analysis of PDEs +1606.01288 Robotics +1606.01292 Computation and Language +1606.01294 Number Theory +1606.01296 Rings and Algebras +1606.01297 K-Theory and Homology +1606.01307 Computer Vision and Pattern Recognition +1606.01308 Materials Science +1606.01312 Instrumentation and Methods for Astrophysics +1606.01322 Mesoscale and Nanoscale Physics +1606.01324 Methodology +1606.01326 Atomic Physics +1606.01335 Complex Variables +1606.01338 Numerical Analysis +1606.01343 Pricing of Securities +1606.01344 Logic in Computer Science +1606.01346 +1606.01348 Computers and Society +1606.01349 Computers and Society +1606.01351 Computers and Society +1606.01352 Systems and Control +1606.01353 High Energy Astrophysical Phenomena +1606.01354 Computers and Society +1606.01355 Computers and Society +1606.01356 Computers and Society +1606.01357 Soft Condensed Matter +1606.01359 Functional Analysis +1606.01360 Computers and Society +1606.01361 Functional Analysis +1606.01362 Computers and Society +1606.01363 Computers and Society +1606.01364 Networking and Internet Architecture +1606.01365 Computers and Society +1606.01366 Computers and Society +1606.01368 Sound +1606.01370 Analysis of PDEs +1606.01371 Data Structures and Algorithms +1606.01372 Biomolecules +1606.01374 Information Theory +1606.01376 Combinatorics +1606.01378 Analysis of PDEs +1606.01380 Artificial Intelligence +1606.01383 Algebraic Geometry +1606.01384 Algebraic Geometry +1606.01385 Methodology +1606.01393 Computer Vision and Pattern Recognition +1606.01394 Chemical Physics +1606.01396 Numerical Analysis +1606.01401 Populations and Evolution +1606.01403 Cryptography and Security +1606.01404 Computation and Language +1606.01408 Theory +1606.01412 Artificial Intelligence +1606.01413 Materials Science +1606.01417 General Physics +1606.01418 Algebraic Geometry +1606.01419 Other Computer Science +1606.01421 Combinatorics +1606.01424 Optimization and Control +1606.01425 Computers and Society +1606.01426 Computers and Society +1606.01427 Computers and Society +1606.01428 Computers and Society +1606.01430 Computers and Society +1606.01431 Other Computer Science +1606.01432 Computers and Society +1606.01433 Computation and Language +1606.01434 Computers and Society +1606.01436 Computers and Society +1606.01438 Quantum Algebra +1606.01443 Combinatorics +1606.01444 Computers and Society +1606.01445 Computers and Society +1606.01446 Geometric Topology +1606.01447 Computers and Society +1606.01448 Computers and Society +1606.01449 Computers and Society +1606.01450 Computers and Society +1606.01451 Logic in Computer Science +1606.01452 Digital Libraries +1606.01454 Computers and Society +1606.01456 Computers and Society +1606.01457 Computer Science and Game Theory +1606.01458 +1606.01459 Algebraic Geometry +1606.01460 Computer Vision and Pattern Recognition +1606.01461 Dynamical Systems +1606.01463 Algebraic Geometry +1606.01469 Differential Geometry +1606.01470 Superconductivity +1606.01472 Methodology +1606.01474 Phenomenology +1606.01475 +1606.01479 Computers and Society +1606.01481 Computer Vision and Pattern Recognition +1606.01483 Spectral Theory +1606.01487 Machine Learning +1606.01493 Group Theory +1606.01496 Combinatorics +1606.01500 Numerical Analysis +1606.01501 +1606.01504 Algebraic Topology +1606.01506 Representation Theory +1606.01511 Statistics Theory +1606.01512 Analysis of PDEs +1606.01518 Algebraic Geometry +1606.01519 Computer Vision and Pattern Recognition +1606.01521 Dynamical Systems +1606.01524 Classical Analysis and ODEs +1606.01528 Probability +1606.01530 Data Structures and Algorithms +1606.01533 +1606.01535 Computer Vision and Pattern Recognition +1606.01536 Distributed, Parallel, and Cluster Computing +1606.01540 Learning +1606.01543 Social and Information Networks +1606.01546 Rings and Algebras +1606.01548 Optimization and Control +1606.01550 Computer Vision and Pattern Recognition +1606.01552 Neural and Evolutionary Computing +1606.01555 Strongly Correlated Electrons +1606.01556 Chemical Physics +1606.01557 Information Theory +1606.01561 Computer Vision and Pattern Recognition +1606.01562 Quantum Gases +1606.01563 Spectral Theory +1606.01564 Probability +1606.01567 Information Theory +1606.01569 Optimization and Control +1606.01575 Metric Geometry +1606.01576 Symbolic Computation +1606.01579 +1606.01580 Differential Geometry +1606.01585 Differential Geometry +1606.01587 Solar and Stellar Astrophysics +1606.01590 Differential Geometry +1606.01594 Number Theory +1606.01595 Computer Vision and Pattern Recognition +1606.01596 Analysis of PDEs +1606.01597 Materials Science +1606.01601 Computer Vision and Pattern Recognition +1606.01605 Number Theory +1606.01606 Plasma Physics +1606.01607 Hardware Architecture +1606.01608 Networking and Internet Architecture +1606.01610 Computer Science and Game Theory +1606.01615 Functional Analysis +1606.01617 Probability +1606.01618 Probability +1606.01619 Probability +1606.01620 Dynamical Systems +1606.01624 Materials Science +1606.01629 Probability +1606.01631 Instrumentation and Methods for Astrophysics +1606.01632 Materials Science +1606.01633 Statistics Theory +1606.01634 Applications +1606.01638 Systems and Control +1606.01639 Dynamical Systems +1606.01642 Logic in Computer Science +1606.01644 Dynamical Systems +1606.01645 Mesoscale and Nanoscale Physics +1606.01647 Rings and Algebras +1606.01652 Space Physics +1606.01653 Theory +1606.01654 K-Theory and Homology +1606.01660 Information Theory +1606.01664 Quantum Gases +1606.01666 Applications +1606.01669 Group Theory +1606.01670 +1606.01671 Cryptography and Security +1606.01675 Solar and Stellar Astrophysics +1606.01677 Optics +1606.01679 Phenomenology +1606.01680 Functional Analysis +1606.01686 Probability +1606.01687 Probability +1606.01690 Mesoscale and Nanoscale Physics +1606.01691 Representation Theory +1606.01692 Space Physics +1606.01693 Combinatorics +1606.01694 Disordered Systems and Neural Networks +1606.01699 Astrophysics of Galaxies +1606.01704 Functional Analysis +1606.01709 Materials Science +1606.01713 Biological Physics +1606.01714 Space Physics +1606.01715 Number Theory +1606.01718 Optimization and Control +1606.01719 Networking and Internet Architecture +1606.01720 Logic in Computer Science +1606.01721 Computer Vision and Pattern Recognition +1606.01722 Category Theory +1606.01725 Probability +1606.01726 Representation Theory +1606.01727 Representation Theory +1606.01729 Materials Science +1606.01730 Space Physics +1606.01732 Theory +1606.01734 Astrophysics of Galaxies +1606.01737 Numerical Analysis +1606.01738 Classical Physics +1606.01739 Numerical Analysis +1606.01740 Systems and Control +1606.01742 Databases +1606.01745 Information Theory +1606.01746 Methodology +1606.01749 Methodology +1606.01751 Combinatorics +1606.01752 Astrophysics of Galaxies +1606.01753 Numerical Analysis +1606.01754 Data Structures and Algorithms +1606.01758 Combinatorics +1606.01760 Materials Science +1606.01765 Dynamical Systems +1606.01766 Numerical Analysis +1606.01774 High Energy Astrophysical Phenomena +1606.01776 Geometric Topology +1606.01784 Analysis of PDEs +1606.01791 Instrumentation and Detectors +1606.01792 Computation and Language +1606.01794 Complex Variables +1606.01795 Representation Theory +1606.01796 Algebraic Geometry +1606.01803 Algebraic Topology +1606.01805 Fluid Dynamics +1606.01807 Materials Science +1606.01808 Digital Libraries +1606.01809 Commutative Algebra +1606.01812 Commutative Algebra +1606.01817 Superconductivity +1606.01819 Dynamical Systems +1606.01820 Disordered Systems and Neural Networks +1606.01821 Chemical Physics +1606.01825 Soft Condensed Matter +1606.01827 Quantum Algebra +1606.01828 Differential Geometry +1606.01833 Distributed, Parallel, and Cluster Computing +1606.01834 Optics +1606.01835 Probability +1606.01836 Applications +1606.01837 Complex Variables +1606.01842 Plasma Physics +1606.01843 Algebraic Geometry +1606.01844 Computational Complexity +1606.01849 Networking and Internet Architecture +1606.01852 Popular Physics +1606.01855 Machine Learning +1606.01861 Differential Geometry +1606.01863 Probability +1606.01864 Atomic Physics +1606.01866 Popular Physics +1606.01867 Commutative Algebra +1606.01870 Accelerator Physics +1606.01873 Computer Vision and Pattern Recognition +1606.01882 Dynamical Systems +1606.01885 Learning +cs/0701185 Data Structures and Algorithms +0705.3825 Strongly Correlated Electrons +0705.4390 Materials Science +0711.3820 Algebraic Geometry +0906.0191 +0911.3967 +1002.3209 Disordered Systems and Neural Networks +1003.5969 Algebraic Geometry +1006.0048 Category Theory +1006.0829 Optics +1006.0830 Optics +1102.4393 Number Theory +1104.0475 Applications +1105.4269 +1105.5880 Materials Science +1106.2310 Group Theory +1106.2596 Materials Science +1108.3935 Materials Science +1110.1731 Materials Science +1110.5543 Rings and Algebras +1110.5981 Classical Analysis and ODEs +1110.6375 Strongly Correlated Electrons +1201.6424 Strongly Correlated Electrons +1202.3427 Classical Physics +1203.0127 Superconductivity +1203.0852 Algebraic Geometry +1206.4011 Logic +1207.1790 Commutative Algebra +1210.1522 Algebraic Geometry +1212.0771 Combinatorics +1301.3225 Chemical Physics +1301.5494 Analysis of PDEs +1302.1984 Symplectic Geometry +1302.4809 Materials Science +1303.0562 Soft Condensed Matter +1303.1973 +1303.3190 Mesoscale and Nanoscale Physics +1303.5452 Computational Engineering, Finance, and Science +1304.3197 Complex Variables +1305.2300 +1305.5696 Atomic Physics +1305.6200 Analysis of PDEs +1305.7341 Optics +1306.1042 Mesoscale and Nanoscale Physics +1306.3011 Computational Engineering, Finance, and Science +1306.5368 Methodology +1307.1625 Computational Engineering, Finance, and Science +1307.3530 Biological Physics +1309.3728 Probability +1310.6157 Statistical Mechanics +1310.6881 Dynamical Systems +1310.7881 Analysis of PDEs +1311.0046 Dynamical Systems +1312.1101 Quantum Algebra +1312.4047 Materials Science +1312.4148 Functional Analysis +1312.5541 Group Theory +1401.1439 Classical Analysis and ODEs +1401.3571 Materials Science +1401.6217 Fluid Dynamics +1401.7065 Functional Analysis +1401.7757 Cosmology and Nongalactic Astrophysics +1402.0745 +1402.0802 +1402.1886 Group Theory +1402.5843 Formal Languages and Automata Theory +1403.3184 Superconductivity +1403.3234 Quantum Gases +1403.6167 Computational Engineering, Finance, and Science +1403.7997 Logic in Computer Science +1405.4355 Superconductivity +1405.4729 Representation Theory +1405.6371 Representation Theory +1405.7022 Number Theory +1406.1479 +1406.2966 Differential Geometry +1406.7042 Computational Engineering, Finance, and Science +1407.0817 Analysis of PDEs +1407.5329 Geometric Topology +1408.4658 +1408.4686 +1409.0495 Algebraic Geometry +1409.2155 Dynamical Systems +1409.3520 Combinatorics +1409.5831 Phenomenology +1409.6936 Rings and Algebras +1409.8461 Materials Science +1410.2385 Probability +1410.4436 Instrumentation and Methods for Astrophysics +1410.5459 +1410.8275 Methodology +1411.1685 K-Theory and Homology +1411.4945 +1411.5100 Quantum Gases +1411.7676 Computer Vision and Pattern Recognition +1412.1904 +1412.3103 Information Retrieval +1412.3239 +1412.6484 Strongly Correlated Electrons +1412.6916 Cosmology and Nongalactic Astrophysics +1412.8192 Analysis of PDEs +1412.8753 Biological Physics +1501.00630 Computer Vision and Pattern Recognition +1501.00909 Computer Vision and Pattern Recognition +1501.01382 Probability +1501.04238 +1501.04287 +1501.04958 Functional Analysis +1501.05200 Machine Learning +1501.05552 Applications +1501.06146 Phenomenology +1501.06502 Statistics Theory +1501.07258 Probability +1501.07678 Strongly Correlated Electrons +1502.01029 Strongly Correlated Electrons +1502.01995 Pattern Formation and Solitons +1502.04371 Numerical Analysis +1502.04572 Optics +1502.04856 +1502.05187 Combinatorics +1502.05557 Strongly Correlated Electrons +1502.06143 Analysis of PDEs +1502.06836 Functional Analysis +1503.00263 +1503.01497 High Energy Astrophysical Phenomena +1503.01940 Methodology +1503.02015 Theory +1503.03150 Symplectic Geometry +1503.03555 Computational Physics +1503.06972 Astrophysics of Galaxies +1503.07732 Soft Condensed Matter +1503.08601 Numerical Analysis +1504.00688 Theory +1504.01056 High Energy Astrophysical Phenomena +1504.01595 Analysis of PDEs +1504.02855 Fluid Dynamics +1504.02897 Computational Physics +1504.03559 Theory +1504.04212 Materials Science +1504.06513 Functional Analysis +1504.06907 Theory +1504.06934 Materials Science +1504.07471 Astrophysics of Galaxies +1504.07526 Information Theory +1504.08291 Neural and Evolutionary Computing +1505.00753 Strongly Correlated Electrons +1505.00931 Number Theory +1505.01277 +1505.01378 Physics and Society +1505.01414 Algebraic Geometry +1505.02058 Group Theory +1505.02080 Phenomenology +1505.02097 Methodology +1505.02467 Mesoscale and Nanoscale Physics +1505.02518 Analysis of PDEs +1505.02620 Quantum Algebra +1505.02868 Strongly Correlated Electrons +1505.03178 Analysis of PDEs +1505.03763 Complex Variables +1505.05128 Number Theory +1505.06214 Strongly Correlated Electrons +1505.07359 Symplectic Geometry +1505.08017 Phenomenology +1505.08159 Physics and Society +1506.00867 Astrophysics of Galaxies +1506.00911 +1506.01554 Strongly Correlated Electrons +1506.02433 Physics and Society +1506.02834 Atomic Physics +1506.03077 Materials Science +1506.03472 Strongly Correlated Electrons +1506.04445 Pattern Formation and Solitons +1506.05196 Computer Vision and Pattern Recognition +1506.05215 Applications +1506.06491 Strongly Correlated Electrons +1506.06612 +1506.06777 Cosmology and Nongalactic Astrophysics +1506.07573 +1506.08088 Differential Geometry +1506.08141 +1506.09058 Quantum Gases +1506.09215 Computer Vision and Pattern Recognition +1507.00219 Computational Engineering, Finance, and Science +1507.00676 Cosmology and Nongalactic Astrophysics +1507.00733 Astrophysics of Galaxies +1507.00736 Astrophysics of Galaxies +1507.00743 Cosmology and Nongalactic Astrophysics +1507.01210 Astrophysics of Galaxies +1507.01214 Astrophysics of Galaxies +1507.01293 Instrumentation and Methods for Astrophysics +1507.01952 Astrophysics of Galaxies +1507.02160 Cosmology and Nongalactic Astrophysics +1507.02281 Solar and Stellar Astrophysics +1507.02534 Probability +1507.02724 Lattice +1507.02937 Dynamical Systems +1507.03345 Phenomenology +1507.03359 Analysis of PDEs +1507.03397 Cell Behavior +1507.03722 Superconductivity +1507.04923 Astrophysics of Galaxies +1507.05355 +1507.05378 Theory +1507.05505 Plasma Physics +1507.05515 Mesoscale and Nanoscale Physics +1507.05566 Analysis of PDEs +1507.06236 +1507.06546 +1507.06617 Computer Vision and Pattern Recognition +1507.06649 +1507.07164 Mesoscale and Nanoscale Physics +1507.07256 Information Theory +1507.07536 Applications +1507.07694 Astrophysics of Galaxies +1507.07762 Mesoscale and Nanoscale Physics +1507.07954 Astrophysics of Galaxies +1507.08525 Superconductivity +1508.00343 Lattice +1508.00816 Disordered Systems and Neural Networks +1508.01132 Numerical Analysis +1508.01439 Statistical Mechanics +1508.01853 Earth and Planetary Astrophysics +1508.02109 Theory +1508.03183 Optics +1508.03212 Mesoscale and Nanoscale Physics +1508.03690 Applications +1508.03709 +1508.04245 Numerical Analysis +1508.04276 Optics +1508.04298 Mesoscale and Nanoscale Physics +1508.04414 Strongly Correlated Electrons +1508.04608 Theory +1508.05333 Analysis of PDEs +1508.05716 Phenomenology +1508.05733 Statistics Theory +1508.06444 Astrophysics of Galaxies +1508.07928 Theory +1509.00394 Computation +1509.00477 Atomic Physics +1509.00516 Materials Science +1509.00655 Quantum Gases +1509.01057 Mesoscale and Nanoscale Physics +1509.01759 Materials Science +1509.01988 Computer Science and Game Theory +1509.02136 Theory +1509.02429 Earth and Planetary Astrophysics +1509.02851 Mesoscale and Nanoscale Physics +1509.02859 +1509.02995 Multimedia +1509.03097 Strongly Correlated Electrons +1509.03237 Optics +1509.03342 Instrumentation and Methods for Astrophysics +1509.03687 Mesoscale and Nanoscale Physics +1509.03877 Computer Vision and Pattern Recognition +1509.04282 Phenomenology +1509.04460 Materials Science +1509.04661 Theory +1509.04818 Phenomenology +1509.05185 Materials Science +1509.05298 Astrophysics of Galaxies +1509.05498 Systems and Control +1509.05642 Information Theory +1509.06621 Materials Science +1509.07020 Phenomenology +1509.07049 Theory +1509.07328 Quantum Gases +1509.07720 Computational Physics +1509.07932 Algebraic Topology +1509.08149 Phenomenology +1509.08485 Experiment +1509.08808 Theory +1509.08821 Geometric Topology +1509.09096 Atmospheric and Oceanic Physics +1510.00167 Superconductivity +1510.00297 Information Theory +1510.00627 Learning +1510.00707 +1510.01129 Optics +1510.01407 Astrophysics of Galaxies +1510.02181 Distributed, Parallel, and Cluster Computing +1510.02189 Information Theory +1510.02415 Information Theory +1510.02562 Materials Science +1510.02782 +1510.03000 Soft Condensed Matter +1510.03108 Materials Science +1510.03139 Theory +1510.03391 Dynamical Systems +1510.03746 Soft Condensed Matter +1510.03881 Probability +1510.04238 Computer Vision and Pattern Recognition +1510.04260 Optics +1510.04627 Medical Physics +1510.05166 Exactly Solvable and Integrable Systems +1510.06011 +1510.06210 Materials Science +1510.06327 Dynamical Systems +1510.06751 Solar and Stellar Astrophysics +1510.07073 Mesoscale and Nanoscale Physics +1510.07174 Phenomenology +1510.07720 Differential Geometry +1510.07993 Atomic Physics +1510.08028 Optics +1510.08097 Astrophysics of Galaxies +1510.08357 Biological Physics +1510.08426 Optics +1510.08664 Mesoscale and Nanoscale Physics +1510.08675 Lattice +1510.08767 Cosmology and Nongalactic Astrophysics +1510.09041 Computer Vision and Pattern Recognition +1510.09094 Atomic Physics +1511.00039 Chemical Physics +1511.00079 Analysis of PDEs +1511.00107 Genomics +1511.00379 Systems and Control +1511.00387 Differential Geometry +1511.00447 Atomic Physics +1511.01944 High Energy Astrophysical Phenomena +1511.02075 Astrophysics of Galaxies +1511.02135 +1511.02205 Strongly Correlated Electrons +1511.02887 Theory +1511.02996 Theory +1511.03239 Functional Analysis +1511.03659 Astrophysics of Galaxies +1511.03887 +1511.04244 Information Theory +1511.04274 Number Theory +1511.04315 Number Theory +1511.05347 Phenomenology +1511.05401 Materials Science +1511.05426 Optics +1511.05548 Populations and Evolution +1511.05550 Analysis of PDEs +1511.05753 Plasma Physics +1511.05790 +1511.05791 +1511.06245 Theory +1511.06592 +1511.06690 Fluid Dynamics +1511.06873 Trading and Market Microstructure +1511.06920 Neurons and Cognition +1511.06990 Phenomenology +1511.07201 Theory +1511.07949 Computational Complexity +1511.08485 Optics +1511.08676 Soft Condensed Matter +1511.08719 Mesoscale and Nanoscale Physics +1511.08756 Cryptography and Security +1511.08776 +1511.08794 Theory +1511.08830 General Finance +1511.08912 Analysis of PDEs +1511.09075 Physics and Society +1512.00013 Theory +1512.00252 +1512.00303 Fluid Dynamics +1512.00812 Dynamical Systems +1512.00876 Differential Geometry +1512.00989 Materials Science +1512.01026 Applications +1512.01267 Economics +1512.01386 +1512.01791 Mesoscale and Nanoscale Physics +1512.02030 Mesoscale and Nanoscale Physics +1512.02074 +1512.02305 Materials Science +1512.02321 Dynamical Systems +1512.02375 Analysis of PDEs +1512.02489 +1512.02903 Classical Analysis and ODEs +1512.02931 Soft Condensed Matter +1512.02942 +1512.02963 Data Structures and Algorithms +1512.03098 +1512.03102 Soft Condensed Matter +1512.03380 Mesoscale and Nanoscale Physics +1512.03441 Statistical Mechanics +1512.03462 +1512.03495 Quantum Algebra +1512.03652 +1512.03690 Materials Science +1512.03756 +1512.03937 Numerical Analysis +1512.04053 Phenomenology +1512.04073 +1512.04101 Probability +1512.04183 +1512.04438 Phenomenology +1512.04465 Fluid Dynamics +1512.04556 Materials Science +1512.04567 Phenomenology +1512.04961 Theory +1512.05085 Phenomenology +1512.05156 Materials Science +1512.05418 Mesoscale and Nanoscale Physics +1512.05435 High Energy Astrophysical Phenomena +1512.05575 Superconductivity +1512.05707 +1512.05800 Mesoscale and Nanoscale Physics +1512.06240 Theory +1512.06345 Mesoscale and Nanoscale Physics +1512.06431 Theory +1512.06464 Theory +1512.06517 Statistical Mechanics +1512.06518 Optics +1512.07203 High Energy Astrophysical Phenomena +1512.07229 Phenomenology +1512.07377 Optics +1512.07381 Geophysics +1512.07497 Phenomenology +1512.07701 Representation Theory +1512.08307 Phenomenology +1512.08514 Theory +1512.08875 Earth and Planetary Astrophysics +1512.09060 Theory +1512.09123 Exactly Solvable and Integrable Systems +1512.09127 Phenomenology +1512.09141 Solar and Stellar Astrophysics +1512.09286 Probability +1601.00013 Neural and Evolutionary Computing +1601.00240 Phenomenology +1601.00401 Experiment +1601.01068 Numerical Analysis +1601.01400 Phenomenology +1601.01624 Lattice +1601.01649 Neurons and Cognition +1601.01712 Phenomenology +1601.01968 Algebraic Geometry +1601.01994 Strongly Correlated Electrons +1601.02003 Probability +1601.02089 Optics +1601.02148 Complex Variables +1601.02152 Theory +1601.02239 Optimization and Control +1601.02435 Analysis of PDEs +1601.02875 Mesoscale and Nanoscale Physics +1601.02990 Physics and Society +1601.02995 Commutative Algebra +1601.03025 Strongly Correlated Electrons +1601.03365 Strongly Correlated Electrons +1601.03383 +1601.03502 Superconductivity +1601.03639 +1601.03663 Materials Science +1601.03688 Statistical Mechanics +1601.03813 Theory +1601.03881 Disordered Systems and Neural Networks +1601.04027 Lattice +1601.04104 Strongly Correlated Electrons +1601.04281 Theory +1601.04310 Fluid Dynamics +1601.04501 Quantum Gases +1601.04543 Materials Science +1601.04545 Phenomenology +1601.04570 Materials Science +1601.04757 Superconductivity +1601.04813 Plasma Physics +1601.05077 Mesoscale and Nanoscale Physics +1601.05089 Phenomenology +1601.05354 Strongly Correlated Electrons +1601.05405 Theory +1601.05436 Tissues and Organs +1601.05505 +1601.05548 Optics +1601.05636 +1601.05642 +1601.05999 Phenomenology +1601.06090 Operator Algebras +1601.06581 Computation and Language +1601.06612 Theory +1601.06621 Plasma Physics +1601.06700 Theory +1601.06736 Strongly Correlated Electrons +1601.06746 Theory +1601.06913 Plasma Physics +1601.07214 Strongly Correlated Electrons +1601.07385 Phenomenology +1601.07610 Theory +1601.07781 General Physics +1601.07896 Physics Education +1601.08118 Probability +1601.08242 Computational Physics +1601.08247 Fluid Dynamics +1602.00089 +1602.00178 Functional Analysis +1602.00200 Lattice +1602.00237 Cosmology and Nongalactic Astrophysics +1602.00513 Analysis of PDEs +1602.00573 +1602.00658 Earth and Planetary Astrophysics +1602.00678 Distributed, Parallel, and Cluster Computing +1602.00684 Phenomenology +1602.00917 +1602.00948 Theory +1602.00958 K-Theory and Homology +1602.01294 +1602.01351 Phenomenology +1602.01494 Instrumentation and Detectors +1602.01523 Experiment +1602.02029 +1602.02051 Mesoscale and Nanoscale Physics +1602.02248 Phenomenology +1602.02421 Theory +1602.02516 Mesoscale and Nanoscale Physics +1602.02973 Dynamical Systems +1602.03120 Disordered Systems and Neural Networks +1602.03149 +1602.03154 Phenomenology +1602.03235 Cosmology and Nongalactic Astrophysics +1602.03362 Phenomenology +1602.03375 +1602.03417 Materials Science +1602.03526 Astrophysics of Galaxies +1602.03652 Experiment +1602.03788 +1602.04065 Soft Condensed Matter +1602.04088 Materials Science +1602.04100 Solar and Stellar Astrophysics +1602.04113 Lattice +1602.04518 Information Theory +1602.04823 Astrophysics of Galaxies +1602.05024 Statistical Mechanics +1602.05288 Phenomenology +1602.05411 High Energy Astrophysical Phenomena +1602.05495 Phenomenology +1602.05636 Mesoscale and Nanoscale Physics +1602.05645 +1602.05740 Optics +1602.06087 Superconductivity +1602.06106 Theory +1602.06264 Materials Science +1602.06563 Experiment +1602.06661 Optimization and Control +1602.06747 Plasma Physics +1602.06756 Theory +1602.06776 +1602.06777 +1602.06952 +1602.07114 Optics +1602.07159 Theory +1602.07173 Solar and Stellar Astrophysics +1602.07424 Data Structures and Algorithms +1602.07476 Theory +1602.07852 +1602.07915 Optics +1602.07934 Theory +1602.08087 Optics +1602.08103 Phenomenology +1602.08165 Phenomenology +1602.08282 +1602.08387 +1602.08414 Optics +1602.08456 Social and Information Networks +1602.08638 Theory +1602.08656 +1602.09089 Theory +1602.09131 Astrophysics of Galaxies +1603.00023 Phenomenology +1603.00026 Astrophysics of Galaxies +1603.00052 +1603.00070 Strongly Correlated Electrons +1603.00114 Dynamical Systems +1603.00170 Optics +1603.00181 Strongly Correlated Electrons +1603.00387 Theory +1603.00470 Instrumentation and Methods for Astrophysics +1603.00485 Strongly Correlated Electrons +1603.00541 Theory +1603.00546 Computer Vision and Pattern Recognition +1603.00614 Strongly Correlated Electrons +1603.00615 Theory +1603.00687 Optics +1603.00865 Phenomenology +1603.00937 Computational Physics +1603.00960 Computer Vision and Pattern Recognition +1603.00962 Phenomenology +1603.01001 Atomic Physics +1603.01121 Learning +1603.01178 Phenomenology +1603.01190 Plasma Physics +1603.01383 Phenomenology +1603.01400 Pattern Formation and Solitons +1603.01602 +1603.02023 Systems and Control +1603.02037 Phenomenology +1603.02283 Theory +1603.02446 Optics +1603.02549 Superconductivity +1603.02569 +1603.02610 Chemical Physics +1603.02889 Statistical Mechanics +1603.02984 +1603.03096 +1603.03299 Strongly Correlated Electrons +1603.03422 Materials Science +1603.03485 Mesoscale and Nanoscale Physics +1603.03537 Strongly Correlated Electrons +1603.03592 Strongly Correlated Electrons +1603.03620 Theory +1603.03767 Populations and Evolution +1603.03816 Optics +1603.03895 Mesoscale and Nanoscale Physics +1603.03985 Pattern Formation and Solitons +1603.04138 Mesoscale and Nanoscale Physics +1603.04182 Optics +1603.04197 Superconductivity +1603.04485 Theory +1603.04612 Optics +1603.04686 +1603.04732 +1603.04778 Phenomenology +1603.04821 +1603.04876 +1603.05108 Optics +1603.05169 Theory +1603.05196 Theory +1603.05388 Phenomenology +1603.05668 Phenomenology +1603.05678 Theory +1603.05737 Theory +1603.05744 Dynamical Systems +1603.05751 Biological Physics +1603.05830 Theory +1603.06001 Instrumentation and Methods for Astrophysics +1603.06033 Pattern Formation and Solitons +1603.06117 +1603.06402 Theory +1603.06810 Strongly Correlated Electrons +1603.06956 Biological Physics +1603.07043 +1603.07183 Cosmology and Nongalactic Astrophysics +1603.07184 Other Condensed Matter +1603.07205 Lattice +1603.07302 Chemical Physics +1603.07307 Theory +1603.07380 Theory +1603.07386 High Energy Astrophysical Phenomena +1603.07391 Atomic Physics +1603.07676 Mesoscale and Nanoscale Physics +1603.07739 Phenomenology +1603.07902 Mesoscale and Nanoscale Physics +1603.07940 Pattern Formation and Solitons +1603.07941 Mesoscale and Nanoscale Physics +1603.08068 Materials Science +1603.08084 Theory +1603.08101 +1603.08228 Phenomenology +1603.08399 Phenomenology +1603.08534 Mesoscale and Nanoscale Physics +1603.08673 Instrumentation and Methods for Astrophysics +1603.08690 Phenomenology +1603.08719 +1603.08840 Solar and Stellar Astrophysics +1603.08881 Phenomenology +1603.08926 Phenomenology +1603.09074 Pattern Formation and Solitons +1603.09154 Phenomenology +1603.09166 Phenomenology +1603.09217 Cosmology and Nongalactic Astrophysics +1603.09227 Computational Engineering, Finance, and Science +1603.09323 Theory +1603.09528 Earth and Planetary Astrophysics +1603.09548 Lattice +1603.09693 +1604.00177 Phenomenology +1604.00246 +1604.00313 +1604.00541 +1604.00768 Lattice +1604.00782 +1604.00791 Earth and Planetary Astrophysics +1604.00793 Analysis of PDEs +1604.00897 Theory +1604.00898 Mesoscale and Nanoscale Physics +1604.00955 High Energy Astrophysical Phenomena +1604.00984 Solar and Stellar Astrophysics +1604.01032 Solar and Stellar Astrophysics +1604.01040 Mesoscale and Nanoscale Physics +1604.01213 Phenomenology +1604.01392 Astrophysics of Galaxies +1604.01411 Earth and Planetary Astrophysics +1604.01599 Optics +1604.01726 Instrumentation and Methods for Astrophysics +1604.01805 Strongly Correlated Electrons +1604.01964 Materials Science +1604.02025 Optics +1604.02263 Phenomenology +1604.02447 Astrophysics of Galaxies +1604.02586 Mesoscale and Nanoscale Physics +1604.02956 Optics +1604.03046 Theory +1604.03167 Optics +1604.03201 Materials Science +1604.03231 +1604.03355 Theory +1604.03395 +1604.03411 Statistical Mechanics +1604.03417 Atmospheric and Oceanic Physics +1604.03484 Theory +1604.03598 Phenomenology +1604.03911 Strongly Correlated Electrons +1604.03957 Astrophysics of Galaxies +1604.03990 Statistical Mechanics +1604.04439 Solar and Stellar Astrophysics +1604.04909 High Energy Astrophysical Phenomena +1604.04938 Atomic Physics +1604.04990 Theory +1604.04996 Quantum Gases +1604.05199 Strongly Correlated Electrons +1604.05315 Astrophysics of Galaxies +1604.05407 +1604.05463 Earth and Planetary Astrophysics +1604.05580 +1604.05604 Astrophysics of Galaxies +1604.05662 Optics +1604.05744 Earth and Planetary Astrophysics +1604.05768 Computational Physics +1604.05827 Lattice +1604.05971 Biological Physics +1604.06097 Instrumentation and Methods for Astrophysics +1604.06259 Instrumentation and Detectors +1604.06395 Solar and Stellar Astrophysics +1604.06399 Solar and Stellar Astrophysics +1604.06472 High Energy Astrophysical Phenomena +1604.06493 Instrumentation and Detectors +1604.06634 Social and Information Networks +1604.06672 Fluid Dynamics +1604.06680 Fluid Dynamics +1604.06795 Astrophysics of Galaxies +1604.06921 Cosmology and Nongalactic Astrophysics +1604.07068 Chemical Physics +1604.07091 Optics +1604.07159 Superconductivity +1604.07175 Phenomenology +1604.07203 Phenomenology +1604.07251 Materials Science +1604.07253 +1604.07314 Theory +1604.07388 Earth and Planetary Astrophysics +1604.07410 Astrophysics of Galaxies +1604.07430 Superconductivity +1604.07441 Astrophysics of Galaxies +1604.08025 Strongly Correlated Electrons +1604.08042 Theory +1604.08100 Biomolecules +1604.08167 Phenomenology +1604.08170 Solar and Stellar Astrophysics +1604.08307 Phenomenology +1604.08331 Astrophysics of Galaxies +1604.08431 Strongly Correlated Electrons +1604.08452 High Energy Astrophysical Phenomena +1604.08465 Materials Science +1604.08467 Materials Science +1604.08589 Astrophysics of Galaxies +1604.08638 Theory +1604.08781 Computation and Language +1604.08862 Astrophysics of Galaxies +1604.08879 Phenomenology +1605.00051 Astrophysics of Galaxies +1605.00435 Algebraic Geometry +1605.00510 Solar and Stellar Astrophysics +1605.00631 Experiment +1605.00841 High Energy Astrophysical Phenomena +1605.00849 Theory +1605.00944 High Energy Astrophysical Phenomena +1605.01047 Superconductivity +1605.01053 +1605.01067 High Energy Astrophysical Phenomena +1605.01246 +1605.01632 Theory +1605.01948 Solar and Stellar Astrophysics +1605.02015 Mesoscale and Nanoscale Physics +1605.02072 Phenomenology +1605.02081 Instrumentation and Methods for Astrophysics +1605.02334 Mesoscale and Nanoscale Physics +1605.02685 Astrophysics of Galaxies +1605.02967 Discrete Mathematics +1605.03300 Atomic Physics +1605.03339 Chaotic Dynamics +1605.03419 Phenomenology +1605.03497 Strongly Correlated Electrons +1605.03587 Instrumentation and Methods for Astrophysics +1605.03669 High Energy Astrophysical Phenomena +1605.03781 Cosmology and Nongalactic Astrophysics +1605.03963 Astrophysics of Galaxies +1605.04003 +1605.04007 Combinatorics +1605.04195 High Energy Astrophysical Phenomena +1605.04416 Functional Analysis +1605.04458 Solar and Stellar Astrophysics +1605.04512 Phenomenology +1605.04540 Optics +1605.04554 Theory +1605.04667 Phenomenology +1605.04702 Solar and Stellar Astrophysics +1605.04705 Theory +1605.04798 Mesoscale and Nanoscale Physics +1605.04997 Materials Science +1605.05165 Theory +1605.05324 High Energy Astrophysical Phenomena +1605.05497 Phenomenology +1605.05537 Methodology +1605.05594 Earth and Planetary Astrophysics +1605.05704 Solar and Stellar Astrophysics +1605.06241 Strongly Correlated Electrons +1605.06370 Cosmology and Nongalactic Astrophysics +1605.06476 Materials Science +1605.07023 Instrumentation and Methods for Astrophysics +1605.07041 Physics and Society +1605.07059 Solar and Stellar Astrophysics +1605.07253 Instrumentation and Methods for Astrophysics +1605.07384 Solar and Stellar Astrophysics +1605.07579 Earth and Planetary Astrophysics +1605.07822 +1605.07973 Earth and Planetary Astrophysics +1605.07993 Strongly Correlated Electrons +1605.08141 Plasma Physics +1605.08198 Group Theory +1605.08514 Strongly Correlated Electrons +1605.08544 Strongly Correlated Electrons +1605.08585 +1605.08915 Optics +1605.08983 Pattern Formation and Solitons +1605.09218 Instrumentation and Detectors +1605.09342 Representation Theory +1605.09352 Statistical Mechanics +1605.09622 Theory +1605.09684 Astrophysics of Galaxies +1605.09713 Cell Behavior +1605.09787 Analysis of PDEs +1606.00048 Soft Condensed Matter +1606.00053 Astrophysics of Galaxies +1606.00147 +1606.00220 Materials Science +1606.00231 Mesoscale and Nanoscale Physics +1606.00528 Astrophysics of Galaxies +1606.00564 Statistical Mechanics +1606.00643 Number Theory +1606.00756 +1606.01050 Superconductivity +1606.01092 Solar and Stellar Astrophysics +1606.01186 Statistical Mechanics +1606.01194 Materials Science +1606.01309 Strongly Correlated Electrons +1606.01382 Statistics Theory +1606.01651 Learning +1606.01804 Instrumentation and Detectors +1606.01877 Classical Physics +1606.01889 Numerical Analysis +1606.02037 Physics and Society +1606.02401 Machine Learning +1606.02491 Optics +1606.02530 Cosmology and Nongalactic Astrophysics +1606.02684 Phenomenology +1606.02830 Solar and Stellar Astrophysics +1606.02843 Atomic Physics +1606.02891 Computation and Language +1606.02892 Computation and Language +1606.03576 Classical Analysis and ODEs +1606.03654 Mesoscale and Nanoscale Physics +1606.04076 Algebraic Geometry +1606.04210 Algebraic Geometry +1606.04304 +1606.04772 Phenomenology +1606.04975 Numerical Analysis +1606.05223 Logic in Computer Science +1606.05264 +1606.05335 Probability +1606.05652 Strongly Correlated Electrons +1606.05824 Optics +1606.05901 Populations and Evolution +1606.06003 Statistical Finance +1606.06147 High Energy Astrophysical Phenomena +1606.06426 Solar and Stellar Astrophysics +1606.06567 High Energy Astrophysical Phenomena +1606.06583 Analysis of PDEs +1606.06674 Instrumentation and Methods for Astrophysics +1606.06743 Astrophysics of Galaxies +1606.06875 Materials Science +1606.07130 Phenomenology +1606.07494 Lattice +1606.07532 Theory +1606.07602 Statistics Theory +1606.07616 Disordered Systems and Neural Networks +1606.07651 Mesoscale and Nanoscale Physics +1606.07744 General Physics +1606.07860 Artificial Intelligence +1606.07894 Differential Geometry +1606.07952 Solar and Stellar Astrophysics +1606.08053 Solar and Stellar Astrophysics +1606.08094 Genomics +1606.08125 +1606.08182 Solar and Stellar Astrophysics +1606.08402 Phenomenology +1606.08434 Combinatorics +1606.08435 Solar and Stellar Astrophysics +1606.08436 Mesoscale and Nanoscale Physics +1606.08440 Astrophysics of Galaxies +1606.08450 Superconductivity +1606.08455 Machine Learning +1606.08458 Mesoscale and Nanoscale Physics +1606.08459 Statistical Mechanics +1606.08460 Superconductivity +1606.08470 Mesoscale and Nanoscale Physics +1606.08471 Analysis of PDEs +1606.08472 Logic +1606.08475 Chemical Physics +1606.08476 Machine Learning +1606.08479 Differential Geometry +1606.08480 Computers and Society +1606.08484 Classical Physics +1606.08485 Combinatorics +1606.08487 Physics Education +1606.08488 Social and Information Networks +1606.08490 Probability +1606.08492 Logic +1606.08493 Solar and Stellar Astrophysics +1606.08495 Computation and Language +1606.08504 Probability +1606.08510 Information Theory +1606.08512 Instrumentation and Detectors +1606.08515 Optimization and Control +1606.08516 Atomic Physics +1606.08517 Algebraic Geometry +1606.08521 Information Retrieval +1606.08523 Representation Theory +1606.08525 Combinatorics +1606.08526 Strongly Correlated Electrons +1606.08527 +1606.08528 Human-Computer Interaction +1606.08529 Theory +1606.08531 Artificial Intelligence +1606.08532 Combinatorics +1606.08533 Numerical Analysis +1606.08534 Digital Libraries +1606.08535 Methodology +1606.08536 Cryptography and Security +1606.08538 Artificial Intelligence +1606.08540 Number Theory +1606.08545 Information Theory +1606.08546 Analysis of PDEs +1606.08548 Astrophysics of Galaxies +1606.08549 Machine Learning +1606.08551 Optics +1606.08553 Solar and Stellar Astrophysics +1606.08555 Materials Science +1606.08567 Neurons and Cognition +1606.08572 Computer Vision and Pattern Recognition +1606.08576 Mesoscale and Nanoscale Physics +1606.08577 Computation +1606.08582 Functional Analysis +1606.08584 Group Theory +1606.08585 Genomics +1606.08590 Computer Science and Game Theory +1606.08592 Algebraic Geometry +1606.08595 Numerical Analysis +1606.08596 Statistics Theory +1606.08598 Theory +1606.08601 Analysis of PDEs +1606.08604 Optimization and Control +1606.08605 Instrumentation and Methods for Astrophysics +1606.08606 Functional Analysis +1606.08610 Analysis of PDEs +1606.08611 Optimization and Control +1606.08612 Dynamical Systems +1606.08615 Classical Analysis and ODEs +1606.08616 Number Theory +1606.08621 Commutative Algebra +1606.08625 Analysis of PDEs +1606.08626 High Energy Astrophysical Phenomena +1606.08627 Probability +1606.08628 Statistics Theory +1606.08629 Biomolecules +1606.08631 Differential Geometry +1606.08637 +1606.08638 Solar and Stellar Astrophysics +1606.08639 +1606.08643 Geometric Topology +1606.08645 Data Structures and Algorithms +1606.08646 Information Theory +1606.08647 Functional Analysis +1606.08648 High Energy Astrophysical Phenomena +1606.08649 Category Theory +1606.08653 Probability +1606.08654 Cryptography and Security +1606.08655 Probability +1606.08657 Databases +1606.08663 Systems and Control +1606.08668 Logic in Computer Science +1606.08670 Analysis of PDEs +1606.08671 Algebraic Geometry +1606.08672 Instrumentation and Methods for Astrophysics +1606.08674 Theory +1606.08675 Differential Geometry +1606.08678 Theory +1606.08683 Instrumentation and Methods for Astrophysics +1606.08684 Space Physics +1606.08686 Hardware Architecture +1606.08687 Materials Science +1606.08689 Computation and Language +1606.08691 History and Overview +1606.08693 Statistical Mechanics +1606.08694 Computer Vision and Pattern Recognition +1606.08695 Algebraic Geometry +1606.08699 Logic in Computer Science +1606.08701 Instrumentation and Methods for Astrophysics +1606.08703 Logic in Computer Science +1606.08704 Popular Physics +1606.08708 Programming Languages +1606.08709 Superconductivity +1606.08714 History and Philosophy of Physics +1606.08716 Classical Analysis and ODEs +1606.08717 Optics +1606.08719 Data Structures and Algorithms +1606.08720 Statistical Mechanics +1606.08722 Logic in Computer Science +1606.08723 Mesoscale and Nanoscale Physics +1606.08724 Neurons and Cognition +1606.08727 Functional Analysis +1606.08728 Functional Analysis +1606.08729 Classical Analysis and ODEs +1606.08734 Solar and Stellar Astrophysics +1606.08735 Mesoscale and Nanoscale Physics +1606.08736 Analysis of PDEs +1606.08737 General Physics +1606.08739 Exactly Solvable and Integrable Systems +1606.08740 Numerical Analysis +1606.08741 Systems and Control +1606.08750 +1606.08751 Information Theory +1606.08754 Optics +1606.08757 Biological Physics +1606.08759 Methodology +1606.08761 Computational Engineering, Finance, and Science +1606.08762 Group Theory +1606.08764 Formal Languages and Automata Theory +1606.08767 +1606.08773 Classical Analysis and ODEs +1606.08777 Computation and Language +1606.08784 Theory +1606.08788 Populations and Evolution +1606.08791 Atomic Physics +1606.08792 Atmospheric and Oceanic Physics +1606.08802 Materials Science +1606.08804 History and Overview +1606.08806 Systems and Control +1606.08808 Learning +1606.08809 Functional Analysis +1606.08815 Logic in Computer Science +1606.08817 Data Structures and Algorithms +1606.08818 Symplectic Geometry +1606.08819 Learning +1606.08821 Computation and Language +1606.08827 Combinatorics +1606.08828 Information Theory +1606.08830 Mesoscale and Nanoscale Physics +1606.08832 +1606.08840 Representation Theory +hep-ph/0603079 Phenomenology +physics/0203085 Optics +quant-ph/9701038 +quant-ph/9706024 +0910.0521 Optimization and Control +1006.4334 Instrumentation and Methods for Astrophysics +1102.3459 Solar and Stellar Astrophysics +1102.4610 Instrumentation and Methods for Astrophysics +1104.1897 Methodology +1106.5693 Logic +1109.3569 Numerical Analysis +1110.5284 +1111.0910 Phenomenology +1201.4234 +1206.5033 Optimization and Control +1208.3083 Trading and Market Microstructure +1302.5674 Symbolic Computation +1303.7170 Differential Geometry +1307.6252 Fluid Dynamics +1307.7145 Solar and Stellar Astrophysics +1309.2401 General Topology +1309.3217 Computation +1311.0307 Methodology +1311.3725 Classical Analysis and ODEs +1401.2319 General Topology +1401.4865 Optimization and Control +1401.6219 Information Theory +1403.0098 General Topology +1403.1394 Commutative Algebra +1403.2229 Trading and Market Microstructure +1403.4953 Phenomenology +1403.7768 Metric Geometry +1405.2151 Combinatorics +1405.6289 General Topology +1405.7375 +1406.2291 Phenomenology +1406.3656 Numerical Analysis +1406.5162 Information Retrieval +1406.6107 +1407.0381 Information Theory +1407.1986 Probability +1407.7687 General Topology +1408.1592 Logic in Computer Science +1408.1806 Analysis of PDEs +1409.2962 Functional Analysis +1409.3364 Cosmology and Nongalactic Astrophysics +1409.3922 General Topology +1409.5008 Combinatorics +1409.5219 Geometric Topology +1409.8368 Probability +1410.1902 Strongly Correlated Electrons +1410.5369 Computational Complexity +1411.6664 Mesoscale and Nanoscale Physics +1412.2239 General Topology +1412.2544 Computer Science and Game Theory +1412.3121 Neural and Evolutionary Computing +1412.3384 Quantum Algebra +1412.7509 Theory +1412.7620 Phenomenology +1412.8212 Theory +1501.00703 Category Theory +1501.01518 Numerical Analysis +1501.05692 Dynamical Systems +1501.06127 Exactly Solvable and Integrable Systems +1501.06521 Learning +1501.06901 Number Theory +1502.01306 Probability +1502.01790 Phenomenology +1502.04238 Probability +1502.06131 Combinatorics +1502.07565 Information Theory +1503.00974 +1503.04278 General Topology +1503.04480 General Topology +1503.04769 Optimization and Control +1504.02240 Operator Algebras +1504.02602 Optimization and Control +1504.06210 Probability +1504.06383 Combinatorics +1504.06728 Dynamical Systems +1504.06784 Optimization and Control +1504.07381 Number Theory +1505.02296 Instrumentation and Detectors +1505.06083 +1505.06363 Metric Geometry +1505.07427 Computer Vision and Pattern Recognition +1506.02802 Portfolio Management +1506.03726 Mathematical Software +1506.06630 General Physics +1506.07369 Phenomenology +1506.07622 Number Theory +1507.00697 +1507.04014 Analysis of PDEs +1507.04228 Statistics Theory +1507.06898 Analysis of PDEs +1507.07024 Computation +1507.07160 Adaptation and Self-Organizing Systems +1507.08635 Superconductivity +1508.00252 Probability +1508.02085 Biomolecules +1508.02533 +1508.04188 +1508.05121 Phenomenology +1508.05596 Optics +1508.06306 Cosmology and Nongalactic Astrophysics +1508.07312 General Physics +1508.07638 +1509.00093 Geophysics +1509.00114 Machine Learning +1509.00666 Logic +1509.01092 Theory +1509.01913 Neurons and Cognition +1509.01999 Optics +1509.03462 Materials Science +1509.04666 Strongly Correlated Electrons +1509.05909 Computer Vision and Pattern Recognition +1509.07284 Disordered Systems and Neural Networks +1509.07478 Number Theory +1509.08026 Representation Theory +1509.08435 +1510.00121 +1510.00124 Superconductivity +1510.00613 Soft Condensed Matter +1510.01523 Instrumentation and Detectors +1510.02064 Optimization and Control +1510.04662 Instrumentation and Methods for Astrophysics +1510.08403 Superconductivity +1510.08422 Analysis of PDEs +1511.00576 Social and Information Networks +1511.02234 Solar and Stellar Astrophysics +1511.03711 +1511.03824 High Energy Astrophysical Phenomena +1511.04233 Solar and Stellar Astrophysics +1511.04364 +1511.04954 Mesoscale and Nanoscale Physics +1511.05078 Digital Libraries +1511.05789 Learning +1511.08380 Experiment +1511.08927 Optimization and Control +1511.09030 Computer Vision and Pattern Recognition +1511.09427 Atomic Physics +1512.00227 Mathematical Finance +1512.00594 Theory +1512.00868 Analysis of PDEs +1512.02379 Computational Complexity +1512.03986 Mesoscale and Nanoscale Physics +1512.04402 Theory +1512.04498 Strongly Correlated Electrons +1512.05693 Discrete Mathematics +1512.06176 Information Theory +1512.06515 Materials Science +1512.06678 Data Structures and Algorithms +1512.06833 Phenomenology +1512.06920 +1512.07926 Instrumentation and Detectors +1512.08467 Phenomenology +1512.08732 Classical Analysis and ODEs +1601.00301 Category Theory +1601.00689 Representation Theory +1601.01102 Learning +1601.01281 Probability +1601.01491 Mesoscale and Nanoscale Physics +1601.01525 Algebraic Geometry +1601.01691 Astrophysics of Galaxies +1601.01814 Materials Science +1601.04428 Logic +1601.04948 Materials Science +1601.05718 Analysis of PDEs +1601.06215 Information Theory +1601.07253 Mesoscale and Nanoscale Physics +1601.08079 Classical Analysis and ODEs +1602.00022 High Energy Astrophysical Phenomena +1602.00106 +1602.00434 Soft Condensed Matter +1602.01887 Computer Vision and Pattern Recognition +1602.02183 Astrophysics of Galaxies +1602.02413 +1602.02636 Theory +1602.03030 Phenomenology +1602.03421 Analysis of PDEs +1602.04108 Mesoscale and Nanoscale Physics +1602.04279 Probability +1602.04343 Classical Analysis and ODEs +1602.04377 Metric Geometry +1602.04453 Phenomenology +1602.04462 Symplectic Geometry +1602.04533 Analysis of PDEs +1602.04571 Analysis of PDEs +1602.04635 Phenomenology +1602.04638 Functional Analysis +1602.04654 Phenomenology +1602.04719 Fluid Dynamics +1602.04770 Probability +1602.04806 Emerging Technologies +1602.04913 Group Theory +1602.05157 Information Retrieval +1602.05560 Probability +1602.05571 Combinatorics +1602.05572 Computer Vision and Pattern Recognition +1602.05573 Instrumentation and Methods for Astrophysics +1602.05574 Metric Geometry +1602.05590 Phenomenology +1602.05591 Rings and Algebras +1602.05596 Physics and Society +1602.05597 Strongly Correlated Electrons +1602.05598 Probability +1602.05602 Quantum Algebra +1602.05605 Classical Analysis and ODEs +1602.05607 Analysis of PDEs +1602.05608 Data Structures and Algorithms +1602.05611 +1602.05616 Physics Education +1602.05617 Probability +1602.05618 Software Engineering +1602.05619 Physics Education +1602.05620 Information Theory +1602.05622 Data Structures and Algorithms +1602.05626 Optimization and Control +1602.05628 Physics Education +1602.05632 Optimization and Control +1602.05635 Logic in Computer Science +1602.05637 Group Theory +1602.05638 Robotics +1602.05641 Probability +1602.05642 Social and Information Networks +1602.05643 Software Engineering +1602.05646 Rings and Algebras +1602.05647 Operator Algebras +1602.05651 +1602.05655 Physics Education +1602.05656 Other Computer Science +1602.05658 Probability +1602.05660 Computer Vision and Pattern Recognition +1602.05661 Optimization and Control +1602.05665 Methodology +1602.05668 Atomic Physics +1602.05669 Commutative Algebra +1602.05675 Theory +1602.05678 Chemical Physics +1602.05683 +1602.05686 Rings and Algebras +1602.05688 Algebraic Geometry +1602.05689 Physics Education +1602.05693 Functional Analysis +1602.05694 Group Theory +1602.05696 Analysis of PDEs +1602.05697 Physics Education +1602.05698 Differential Geometry +1602.05699 Artificial Intelligence +1602.05704 Algebraic Geometry +1602.05705 Artificial Intelligence +1602.05707 +1602.05709 Quantum Gases +1602.05710 Physics Education +1602.05712 Discrete Mathematics +1602.05713 Materials Science +1602.05717 Functional Analysis +1602.05719 Learning +1602.05720 Physics Education +1602.05721 Formal Languages and Automata Theory +1602.05722 Functional Analysis +1602.05727 Physics Education +1602.05728 Logic +1602.05729 Functional Analysis +1602.05731 Applications +1602.05734 Materials Science +1602.05736 Dynamical Systems +1602.05737 Analysis of PDEs +1602.05738 Combinatorics +1602.05739 Plasma Physics +1602.05741 Information Theory +1602.05742 Classical Analysis and ODEs +1602.05744 Social and Information Networks +1602.05746 Numerical Analysis +1602.05747 Mesoscale and Nanoscale Physics +1602.05748 Combinatorics +1602.05749 Risk Management +1602.05753 Computation and Language +1602.05754 Numerical Analysis +1602.05759 Algebraic Topology +1602.05761 Statistics Theory +1602.05765 Artificial Intelligence +1602.05767 +1602.05769 Fluid Dynamics +1602.05772 Computation and Language +1602.05774 +1602.05776 Geometric Topology +1602.05781 Numerical Analysis +1602.05783 Solar and Stellar Astrophysics +1602.05786 Instrumentation and Detectors +1602.05790 Superconductivity +1602.05792 Rings and Algebras +1602.05796 Rings and Algebras +1602.05798 Combinatorics +1602.05799 Rings and Algebras +1602.05801 Statistics Theory +1602.05805 Functional Analysis +1602.05807 Probability +1602.05809 Probability +1602.05813 Soft Condensed Matter +1602.05815 Mesoscale and Nanoscale Physics +1602.05819 Logic in Computer Science +1602.05820 +1602.05821 Dynamical Systems +1602.05822 Machine Learning +1602.05823 Numerical Analysis +1602.05826 Space Physics +1602.05828 Artificial Intelligence +1602.05829 Logic in Computer Science +1602.05830 Adaptation and Self-Organizing Systems +1602.05832 Biomolecules +1602.05835 Information Theory +1602.05838 Discrete Mathematics +1602.05843 Commutative Algebra +1602.05844 General Physics +1602.05846 Classical Analysis and ODEs +1602.05847 Other Quantitative Biology +1602.05848 Probability +1602.05853 Networking and Internet Architecture +1602.05856 Data Structures and Algorithms +1602.05858 Portfolio Management +1602.05860 Materials Science +1602.05862 Number Theory +1602.05866 Data Structures and Algorithms +1602.05871 Theory +1602.05873 Dynamical Systems +1602.05874 Cryptography and Security +1602.05876 Algebraic Geometry +1602.05879 Biomolecules +1602.05884 Geometric Topology +1602.05886 Optics +1602.05887 Populations and Evolution +1602.05888 Information Theory +1602.05889 Data Structures and Algorithms +1602.05890 Commutative Algebra +1602.05891 Software Engineering +1602.05895 Analysis of PDEs +1602.05899 Data Structures and Algorithms +1602.05900 Sound +1602.05906 Methodology +1602.05907 Applications +1602.05908 Learning +1602.05913 Optimization and Control +1602.05914 Computer Science and Game Theory +1602.05918 Astrophysics of Galaxies +1602.05919 Algebraic Geometry +1602.05921 Chemical Physics +1602.05922 Combinatorics +1602.05924 +1602.05925 Neural and Evolutionary Computing +1602.05927 Dynamical Systems +1602.05930 +1602.05935 Chemical Physics +1602.05938 +1602.05941 Computer Vision and Pattern Recognition +1602.05944 Computation and Language +1602.05948 Complex Variables +1602.05950 Numerical Analysis +astro-ph/0008170 +astro-ph/0201547 +physics/0207106 Physics Education +physics/0404094 Atmospheric and Oceanic Physics +physics/9812049 Chemical Physics +0804.2680 +1004.2438 Mesoscale and Nanoscale Physics +1005.4509 Analysis of PDEs +1008.1605 Analysis of PDEs +1009.1900 Algebraic Geometry +1110.0524 Instrumentation and Methods for Astrophysics +1110.6190 Fluid Dynamics +1202.1295 Analysis of PDEs +1203.2226 Discrete Mathematics +1204.1006 Logic +1205.2808 Algebraic Geometry +1206.0453 +1209.3653 Algebraic Geometry +1210.4220 Logic +1210.8161 Algebraic Geometry +1211.6154 +1212.1983 Number Theory +1302.0447 Logic +1303.1260 Analysis of PDEs +1303.4591 Biomolecules +1305.0871 Computer Vision and Pattern Recognition +1305.5953 Logic +1306.1149 Data Structures and Algorithms +1308.1872 Combinatorics +1308.4170 Analysis of PDEs +1310.0493 Group Theory +1310.5076 Logic +1311.0912 Operator Algebras +1312.1989 Analysis of PDEs +1403.4176 Analysis of PDEs +1404.1356 Machine Learning +1404.4832 History and Overview +1405.0586 Learning +1405.3322 Computer Science and Game Theory +1405.4479 Numerical Analysis +1407.2268 High Energy Astrophysical Phenomena +1408.2973 +1408.3624 Logic +1408.4332 Combinatorics +1410.2556 Functional Analysis +1410.3645 Rings and Algebras +1410.5393 Algebraic Geometry +1410.6227 Chaotic Dynamics +1410.7886 +1411.0196 Representation Theory +1411.3532 Geometric Topology +1412.0620 Statistics Theory +1412.1537 Analysis of PDEs +1412.2371 Biological Physics +1501.04845 Algebraic Geometry +1501.05478 Computation +1501.06794 Machine Learning +1502.01291 Soft Condensed Matter +1502.04640 +1503.01464 Phenomenology +1503.01806 Number Theory +1503.04981 Number Theory +1503.08487 Rings and Algebras +1504.00146 Subcellular Processes +1504.02655 Mesoscale and Nanoscale Physics +1504.03191 Algebraic Topology +1504.03712 Methodology +1504.03977 Information Theory +1505.06175 Strongly Correlated Electrons +1505.06683 +1505.07562 Algebraic Topology +1506.04675 Logic +1506.05383 Functional Analysis +1506.05449 +1506.05788 Strongly Correlated Electrons +1506.05880 Representation Theory +1506.07438 Plasma Physics +1506.07561 Numerical Analysis +1506.08295 Complex Variables +1506.08401 Number Theory +1506.08788 Phenomenology +1507.00495 Number Theory +1507.01077 Representation Theory +1507.04045 Mesoscale and Nanoscale Physics +1507.04853 Theory +1507.05788 Operator Algebras +1507.06899 +1508.00755 Analysis of PDEs +1508.02680 Phenomenology +1508.03820 +1508.03918 Quantum Algebra +1508.04817 General Physics +1508.05696 Group Theory +1508.05766 Computational Complexity +1508.06258 +1508.06772 Operator Algebras +1508.06858 Classical Analysis and ODEs +1508.07496 Rings and Algebras +1509.01727 Computer Science and Game Theory +1509.05214 Functional Analysis +1509.05525 Optics +1509.08724 Theory +1509.09079 Algebraic Geometry +1509.09215 Functional Analysis +1510.00784 Fluid Dynamics +1510.01632 Statistical Mechanics +1510.01666 +1510.01988 Differential Geometry +1510.03229 +1510.03919 Computational Geometry +1510.04124 Algebraic Geometry +1510.04291 Phenomenology +1510.04698 High Energy Astrophysical Phenomena +1510.05249 +1510.05703 +1510.08564 Logic in Computer Science +1511.00881 Strongly Correlated Electrons +1511.01752 Statistics Theory +1511.02942 Optimization and Control +1511.03397 Operator Algebras +1511.03478 Dynamical Systems +1511.04615 Atomic and Molecular Clusters +1511.07928 Differential Geometry +1511.08403 Discrete Mathematics +1511.08790 High Energy Astrophysical Phenomena +1511.09042 Optics +1511.09089 Lattice +1511.09274 Probability +1511.09316 Lattice +1511.09336 Phenomenology +1512.02300 Computer Science and Game Theory +1512.02850 Operator Algebras +1512.03352 Optics +1512.04103 Computer Vision and Pattern Recognition +1512.05324 +1512.05803 Mesoscale and Nanoscale Physics +1512.06164 +1512.06322 Superconductivity +1512.06766 Quantum Gases +1512.08176 Phenomenology +1601.00411 Phenomenology +1601.00559 Geometric Topology +1601.01190 Machine Learning +1601.01755 Representation Theory +1601.03536 Solar and Stellar Astrophysics +1601.04449 +1601.05376 Differential Geometry +1601.05633 Methodology +1601.06599 Combinatorics +1601.07821 Functional Analysis +1601.07859 Statistical Mechanics +1601.07989 +1602.00185 Strongly Correlated Electrons +1602.00828 Computer Vision and Pattern Recognition +1602.01334 Theory +1602.01381 Atomic Physics +1602.01459 Statistical Mechanics +1602.01504 High Energy Astrophysical Phenomena +1602.02099 +1602.02111 Differential Geometry +1602.02116 Commutative Algebra +1602.02934 Machine Learning +1602.03880 +1602.04197 Soft Condensed Matter +1602.04319 Data Analysis, Statistics and Probability +1602.04456 Operator Algebras +1602.05104 Strongly Correlated Electrons +1602.05381 Fluid Dynamics +1602.06513 Quantum Gases +1602.06716 Analysis of PDEs +1602.06894 Combinatorics +1602.06957 Phenomenology +1602.06966 +1602.07192 +1602.07220 Metric Geometry +1602.07518 +1602.08411 Quantum Gases +1602.08597 Strongly Correlated Electrons +1602.08882 Theory +1602.09059 Cosmology and Nongalactic Astrophysics +1602.09087 Astrophysics of Galaxies +1603.00281 Accelerator Physics +1603.01219 Optics +1603.01421 Dynamical Systems +1603.02013 Phenomenology +1603.02746 +1603.02909 Mesoscale and Nanoscale Physics +1603.02990 Atomic Physics +1603.03483 +1603.03560 Probability +1603.03612 +1603.03742 +1603.03793 Computation and Language +1603.04092 Mesoscale and Nanoscale Physics +1603.04271 +1603.04388 Optics +1603.04575 Phenomenology +1603.05247 +1603.05802 +1603.06206 +1603.06584 High Energy Astrophysical Phenomena +1603.06606 Optics +1603.06611 High Energy Astrophysical Phenomena +1603.07231 Soft Condensed Matter +1603.08919 Astrophysics of Galaxies +1603.09527 Phenomenology +1604.01191 Methodology +1604.01728 Experiment +1604.01751 Optics +1604.01906 Analysis of PDEs +1604.02145 Strongly Correlated Electrons +1604.02401 Cosmology and Nongalactic Astrophysics +1604.02457 Cosmology and Nongalactic Astrophysics +1604.02571 Phenomenology +1604.02970 +1604.03333 Strongly Correlated Electrons +1604.03750 Cellular Automata and Lattice Gases +1604.04259 Optics +1604.04351 Information Theory +1604.04462 Materials Science +1604.04530 Statistical Mechanics +1604.05486 Quantum Gases +1604.05705 Theory +1604.06237 +1604.06469 Quantum Gases +1604.06733 Adaptation and Self-Organizing Systems +1604.06760 Cosmology and Nongalactic Astrophysics +1604.07137 Materials Science +1604.07400 Phenomenology +1604.08702 Lattice +1604.08714 Numerical Analysis +1604.08730 Quantum Gases +1605.00063 Phenomenology +1605.00269 Statistical Mechanics +1605.00696 Superconductivity +1605.00915 Populations and Evolution +1605.01341 +1605.01582 Theory +1605.01721 Rings and Algebras +1605.02106 Cosmology and Nongalactic Astrophysics +1605.02335 Optics +1605.02750 Mesoscale and Nanoscale Physics +1605.02893 Materials Science +1605.03827 Superconductivity +1605.03960 Astrophysics of Galaxies +1605.04522 +1605.04958 Optics +1605.05171 Phenomenology +1605.05327 Phenomenology +1605.05606 Networking and Internet Architecture +1605.05696 Mesoscale and Nanoscale Physics +1605.05848 Strongly Correlated Electrons +1605.06031 Astrophysics of Galaxies +1605.06103 Experiment +1605.06125 Strongly Correlated Electrons +1605.06765 Phenomenology +1605.06817 Superconductivity +1605.07038 +1605.07100 Astrophysics of Galaxies +1605.07415 Statistical Mechanics +1605.07551 +1605.07898 Mesoscale and Nanoscale Physics +1605.08043 Phenomenology +1605.08287 +1605.08334 Phenomenology +1605.08433 Theory +1605.08526 Mesoscale and Nanoscale Physics +1605.08532 Materials Science +1605.08663 Phenomenology +1605.09291 Fluid Dynamics +1605.09472 +1605.09618 Theory +1605.09755 +1606.00094 Distributed, Parallel, and Cluster Computing +1606.00454 High Energy Astrophysical Phenomena +1606.00902 Theory +1606.00904 Strongly Correlated Electrons +1606.00912 Quantum Gases +1606.00949 Astrophysics of Galaxies +1606.01215 +1606.01377 Computer Vision and Pattern Recognition +1606.01480 High Energy Astrophysical Phenomena +1606.01656 Mesoscale and Nanoscale Physics +1606.01659 Statistical Mechanics +1606.02199 Atomic Physics +1606.02297 Theory +1606.02695 Lattice +1606.03485 Strongly Correlated Electrons +1606.03792 Metric Geometry +1606.03859 Materials Science +1606.04111 Phenomenology +1606.04508 Quantum Gases +1606.04683 Instrumentation and Methods for Astrophysics +1606.05116 +1606.05724 Data Structures and Algorithms +1606.05960 Phenomenology +1606.06269 Logic in Computer Science +1606.06280 Astrophysics of Galaxies +1606.06497 Solar and Stellar Astrophysics +1606.06601 Theory +1606.06756 Mesoscale and Nanoscale Physics +1606.07127 Experiment +1606.07264 Geometric Topology +1606.07339 Probability +1606.07371 Mesoscale and Nanoscale Physics +1606.07674 Information Retrieval +1606.08316 Strongly Correlated Electrons +1606.08346 Statistical Mechanics +1606.08387 Fluid Dynamics +1606.08430 +1606.08634 Mesoscale and Nanoscale Physics +1606.08725 Mesoscale and Nanoscale Physics +1606.08811 Phenomenology +1606.08891 Cosmology and Nongalactic Astrophysics +1606.09417 Instrumentation and Methods for Astrophysics +1606.09428 Astrophysics of Galaxies +1607.00026 Theory +1607.00214 Theory +1607.00500 Information Theory +1607.00910 +1607.00928 High Energy Astrophysical Phenomena +1607.01534 Theory +1607.01616 Statistical Mechanics +1607.01732 +1607.02186 High Energy Astrophysical Phenomena +1607.02715 Computer Vision and Pattern Recognition +1607.03138 Logic +1607.03593 +1607.03880 Atomic Physics +1607.04485 Mesoscale and Nanoscale Physics +1607.04701 +1607.04733 Soft Condensed Matter +1607.04753 Information Theory +1607.05420 Computational Complexity +1607.05537 Computational Physics +1607.05684 Strongly Correlated Electrons +1607.05813 Experiment +1607.05852 High Energy Astrophysical Phenomena +1607.06171 Mesoscale and Nanoscale Physics +1607.06223 Quantum Gases +1607.06241 Representation Theory +1607.06698 Strongly Correlated Electrons +1607.06868 Astrophysics of Galaxies +1607.06974 Theory +1607.07249 Artificial Intelligence +1607.07665 Mesoscale and Nanoscale Physics +1607.08206 Learning +1607.08474 Mesoscale and Nanoscale Physics +1607.08894 Statistical Mechanics +1608.00248 Theory +1608.00631 +1608.01048 High Energy Astrophysical Phenomena +1608.01104 Cosmology and Nongalactic Astrophysics +1608.01527 Mesoscale and Nanoscale Physics +1608.01949 Strongly Correlated Electrons +1608.01984 Statistical Mechanics +1608.02239 Robotics +1608.02555 Phenomenology +1608.02725 Operator Algebras +1608.03203 Combinatorics +1608.03229 Operator Algebras +1608.03565 Strongly Correlated Electrons +1608.03812 +1608.04140 +1608.04448 Computational Physics +1608.05121 Information Theory +1608.05861 Rings and Algebras +1608.06355 +1608.06376 Mathematical Finance +1608.06580 Computer Science and Game Theory +1608.08458 Phenomenology +1608.08616 Instrumentation and Detectors +1608.08627 High Energy Astrophysical Phenomena +1608.08972 Theory +1609.00083 +1609.00654 Quantum Gases +1609.00663 Mesoscale and Nanoscale Physics +1609.01425 Combinatorics +1609.02451 Information Retrieval +1609.02453 Information Retrieval +1609.02587 +1609.02594 Quantum Gases +1609.02608 +1609.02688 Statistics Theory +1609.02796 Solar and Stellar Astrophysics +1609.02878 +1609.02919 Solar and Stellar Astrophysics +1609.02992 Statistics Theory +1609.03046 Geometric Topology +1609.03095 Databases +1609.03127 Numerical Analysis +1609.03193 Learning +1609.03221 Representation Theory +1609.03322 Cryptography and Security +1609.03330 Medical Physics +1609.03344 Machine Learning +1609.03409 Sound +1609.03459 Statistical Mechanics +1609.03523 Theory +1609.03524 Theory +1609.03540 Databases +1609.03553 Quantum Gases +1609.03555 Numerical Analysis +1609.03565 High Energy Astrophysical Phenomena +1609.03575 Instrumentation and Methods for Astrophysics +1609.03576 Cosmology and Nongalactic Astrophysics +1609.03578 +1609.03579 Quantum Gases +1609.03583 Astrophysics of Galaxies +1609.03586 Solar and Stellar Astrophysics +1609.03587 Solar and Stellar Astrophysics +1609.03588 Number Theory +1609.03590 Software Engineering +1609.03593 Mesoscale and Nanoscale Physics +1609.03596 Representation Theory +1609.03604 Mesoscale and Nanoscale Physics +1609.03608 Analysis of PDEs +1609.03609 Mesoscale and Nanoscale Physics +1609.03610 Dynamical Systems +1609.03612 Strongly Correlated Electrons +1609.03615 Computers and Society +1609.03617 Physics and Society +1609.03618 Commutative Algebra +1609.03620 Combinatorics +1609.03621 Classical Analysis and ODEs +1609.03622 Neurons and Cognition +1609.03623 Geometric Topology +1609.03624 Group Theory +1609.03625 Classical Analysis and ODEs +1609.03626 Optimization and Control +1609.03627 +1609.03628 Robotics +1609.03629 Information Theory +1609.03630 Earth and Planetary Astrophysics +1609.03632 Computation and Language +1609.03634 Group Theory +1609.03635 Algebraic Topology +1609.03636 Algebraic Geometry +1609.03638 Algebraic Geometry +1609.03639 Solar and Stellar Astrophysics +1609.03640 Programming Languages +1609.03641 Programming Languages +1609.03642 Logic in Computer Science +1609.03643 Programming Languages +1609.03644 Logic in Computer Science +1609.03645 Data Structures and Algorithms +1609.03647 Distributed, Parallel, and Cluster Computing +1609.03648 Logic in Computer Science +1609.03653 Representation Theory +1609.03655 Algebraic Geometry +1609.03657 Systems and Control +1609.03658 Complex Variables +1609.03660 Number Theory +1609.03661 Geometric Topology +1609.03662 Combinatorics +1609.03663 Computation and Language +1609.03664 Combinatorics +1609.03666 Learning +1609.03667 Atomic Physics +1609.03671 Mesoscale and Nanoscale Physics +1609.03680 Statistics Theory +1609.03686 Methodology +1609.03687 +1609.03688 Differential Geometry +1609.03689 Phenomenology +1609.03690 Information Theory +1609.03691 Accelerator Physics +1609.03692 Methodology +1609.03693 Analysis of PDEs +1609.03700 +1609.03701 Numerical Analysis +1609.03704 Optimization and Control +1609.03706 Algebraic Geometry +1609.03707 Mesoscale and Nanoscale Physics +1609.03708 +1609.03714 Analysis of PDEs +1609.03717 Networking and Internet Architecture +1609.03721 +1609.03722 Logic +1609.03724 +1609.03726 Operator Algebras +1609.03727 Geometric Topology +1609.03728 Functional Analysis +1609.03729 Optics +1609.03730 Neurons and Cognition +1609.03731 Physics and Society +1609.03732 Computational Engineering, Finance, and Science +1609.03733 Algebraic Geometry +1609.03734 Cryptography and Security +1609.03735 Fluid Dynamics +1609.03738 Number Theory +1609.03739 Analysis of PDEs +1609.03740 Instrumentation and Detectors +1609.03743 Fluid Dynamics +1609.03744 +1609.03745 Numerical Analysis +1609.03747 Quantum Gases +1609.03749 Mesoscale and Nanoscale Physics +1609.03750 Distributed, Parallel, and Cluster Computing +1609.03751 +1609.03752 Instrumentation and Detectors +1609.03754 Quantitative Methods +1609.03755 Combinatorics +1609.03756 Social and Information Networks +1609.03757 Dynamical Systems +1609.03758 +1609.03760 Quantum Gases +1609.03762 Information Theory +1609.03763 Analysis of PDEs +1609.03764 Probability +1609.03765 Artificial Intelligence +1609.03766 Dynamical Systems +1609.03768 Symbolic Computation +1609.03769 Machine Learning +1609.03772 Machine Learning +1609.03773 Computer Vision and Pattern Recognition +1609.03774 Combinatorics +1609.03776 Instrumentation and Methods for Astrophysics +1609.03778 Analysis of PDEs +1609.03779 Statistics Theory +1609.03780 +1609.03781 Number Theory +1609.03782 Instrumentation and Methods for Astrophysics +1609.03783 Instrumentation and Detectors +1609.03786 Soft Condensed Matter +1609.03789 Rings and Algebras +1609.03792 High Energy Astrophysical Phenomena +1609.03794 +1609.03795 Computer Vision and Pattern Recognition +1609.03796 Quantum Gases +1609.03797 Numerical Analysis +1609.03805 Algebraic Topology +1609.03806 Digital Libraries +1609.03808 Combinatorics +1609.03811 Soft Condensed Matter +1609.03815 Computer Vision and Pattern Recognition +1609.03817 Solar and Stellar Astrophysics +1609.03819 Analysis of PDEs +1609.03821 Analysis of PDEs +1609.03823 Optics +1609.03825 Experiment +1609.03829 Subcellular Processes +1609.03831 Representation Theory +1609.03832 Soft Condensed Matter +1609.03834 Probability +1609.03838 Algebraic Geometry +1609.03839 Experiment +1609.03841 Classical Physics +1609.03844 Algebraic Geometry +1609.03845 Subcellular Processes +1609.03847 Artificial Intelligence +1609.03848 Analysis of PDEs +1609.03850 Classical Analysis and ODEs +1609.03853 Fluid Dynamics +1609.03855 Materials Science +1609.03856 Combinatorics +1609.03857 Analysis of PDEs +1609.03858 Solar and Stellar Astrophysics +1609.03862 General Physics +1609.03863 Differential Geometry +1609.03871 Fluid Dynamics +1609.03872 Number Theory +1609.03874 Computer Vision and Pattern Recognition +1609.03875 High Energy Astrophysical Phenomena +1609.03878 +1609.03881 +1609.03882 High Energy Astrophysical Phenomena +1609.03883 High Energy Astrophysical Phenomena +1609.03884 +1609.03890 Analysis of PDEs +1609.03892 Computer Vision and Pattern Recognition +1609.03893 Computational Engineering, Finance, and Science +1609.03894 Computer Vision and Pattern Recognition +1609.03895 Phenomenology +1609.03896 Astrophysics of Galaxies +1609.03898 +1609.03900 Astrophysics of Galaxies +1609.03901 +1609.03904 Algebraic Geometry +1609.03907 Accelerator Physics +1609.03911 +1609.03912 Information Theory +1609.03913 Fluid Dynamics +1609.03915 Dynamical Systems +1609.03916 Mesoscale and Nanoscale Physics +1609.03918 Mesoscale and Nanoscale Physics +1609.03919 Number Theory +1609.03920 Experiment +1609.03921 Other Condensed Matter +1609.03924 Rings and Algebras +1609.03925 Populations and Evolution +1609.03926 Populations and Evolution +1609.03927 Phenomenology +1609.03928 Plasma Physics +1609.03929 Differential Geometry +1609.03931 Classical Analysis and ODEs +1609.03933 Physics and Society +1609.03934 Combinatorics +1609.03935 Analysis of PDEs +1609.03938 Computer Science and Game Theory +1609.03939 Phenomenology +1609.03940 +1609.03942 +1609.03943 Logic +1609.03944 Differential Geometry +1609.03946 Social and Information Networks +1609.03948 Quantitative Methods +1609.03949 Dynamical Systems +1609.03950 Group Theory +1609.03951 Biological Physics +1609.03952 Rings and Algebras +1609.03953 Algebraic Geometry +1609.03958 Machine Learning +1609.03959 Classical Analysis and ODEs +1609.03960 Optimization and Control +1609.03962 Neurons and Cognition +1609.03963 Astrophysics of Galaxies +1609.03964 Combinatorics +1609.03968 Earth and Planetary Astrophysics +1609.03970 Statistics Theory +1609.03971 Neural and Evolutionary Computing +1609.03974 Combinatorics +1609.03976 Computation and Language +1609.03981 Algebraic Geometry +1609.03984 Optimization and Control +1609.03985 Lattice +1609.03987 Classical Analysis and ODEs +1609.03988 Superconductivity +1609.03990 Optimization and Control +1609.03992 Algebraic Geometry +1609.03993 Artificial Intelligence +1609.03995 Phenomenology +1609.03996 Multiagent Systems +1609.04003 Mesoscale and Nanoscale Physics +cs/0309044 Operating Systems +0705.3928 Theory +0808.0275 Commutative Algebra +0810.0359 Commutative Algebra +0811.4691 Commutative Algebra +0811.4693 Commutative Algebra +0901.1586 Optics +0903.0052 Commutative Algebra +0906.3757 Operator Algebras +1010.3404 Algebraic Geometry +1101.3854 Algebraic Geometry +1104.4644 +1202.5615 Commutative Algebra +1203.6384 Strongly Correlated Electrons +1205.3165 Cosmology and Nongalactic Astrophysics +1206.4985 Algebraic Geometry +1207.7284 Atomic Physics +1207.7294 Atomic Physics +1208.5883 Probability +1209.4790 Strongly Correlated Electrons +1209.5598 Databases +1211.6037 Functional Analysis +1301.0442 Probability +1301.2444 Computation and Language +1302.2257 Materials Science +1304.5390 Combinatorics +1306.3045 Algebraic Geometry +1308.3466 Data Structures and Algorithms +1308.5628 Algebraic Geometry +1309.0105 Number Theory +1310.6935 Phenomenology +1311.7476 Algebraic Geometry +1312.3401 Combinatorics +1312.7219 Algebraic Topology +1402.3145 Mesoscale and Nanoscale Physics +1403.1158 Methodology +1403.5397 +1403.5906 Optimization and Control +1404.6463 Analysis of PDEs +1405.3202 Physics and Society +1405.4910 Spectral Theory +1405.6616 Representation Theory +1406.4767 Strongly Correlated Electrons +1407.0508 Statistical Mechanics +1407.1958 +1407.2017 Theory +1407.5128 Computational Complexity +1408.5330 Phenomenology +1408.6071 Phenomenology +1409.1663 Theory +1409.7626 Networking and Internet Architecture +1410.1173 Methodology +1410.2695 Complex Variables +1410.6064 Optimization and Control +1411.7319 Phenomenology +1411.7904 Materials Science +1412.0041 Networking and Internet Architecture +1412.0547 Statistical Mechanics +1412.2566 Networking and Internet Architecture +1412.3341 Combinatorics +1412.4637 Lattice +1412.8319 Computation and Language +1501.02933 Algebraic Geometry +1501.06968 Fluid Dynamics +1502.02228 Strongly Correlated Electrons +1502.02800 Symbolic Computation +1502.05214 Functional Analysis +1502.06457 Popular Physics +1502.07356 Astrophysics of Galaxies +1502.07589 Theory +1503.02273 Dynamical Systems +1503.04533 Networking and Internet Architecture +1503.06525 Probability +1503.08687 Networking and Internet Architecture +1504.00374 Populations and Evolution +1504.01285 Atomic Physics +1504.03078 Differential Geometry +1504.03428 Cosmology and Nongalactic Astrophysics +1504.07250 Astrophysics of Galaxies +1505.00919 Information Theory +1505.04864 Strongly Correlated Electrons +1505.06763 Mesoscale and Nanoscale Physics +1505.07368 Programming Languages +1506.00857 Statistical Mechanics +1506.01280 Physics and Society +1506.04544 Physics and Society +1506.05700 Mesoscale and Nanoscale Physics +1506.09018 Phenomenology +1506.09119 Theory +1507.00241 Mesoscale and Nanoscale Physics +1507.00332 Phenomenology +1507.00593 Combinatorics +1507.02976 Physics Education +1507.03025 Theory +1507.03094 Lattice +1507.03281 +1507.06824 Experiment +1507.07010 Dynamical Systems +1507.07384 +1507.08063 Theory +1507.08336 Astrophysics of Galaxies +1507.08481 Cosmology and Nongalactic Astrophysics +1508.00929 Analysis of PDEs +1508.01073 Materials Science +1508.01250 Phenomenology +1508.02713 Cosmology and Nongalactic Astrophysics +1508.03605 Networking and Internet Architecture +1508.04471 Mesoscale and Nanoscale Physics +1508.04689 Superconductivity +1508.05421 Theory +1508.06318 Optics +1508.07316 +1509.00900 Number Theory +1509.02432 Strongly Correlated Electrons +1509.02467 Astrophysics of Galaxies +1509.02616 +1509.02842 Astrophysics of Galaxies +1509.02893 Strongly Correlated Electrons +1509.02900 Machine Learning +1509.02934 Phenomenology +1509.02943 Analysis of PDEs +1509.03628 Phenomenology +1509.03964 Statistical Mechanics +1509.04719 +1509.05029 High Energy Astrophysical Phenomena +1509.05931 +1509.07009 Computer Vision and Pattern Recognition +1509.07581 Operator Algebras +1509.07729 Plasma Physics +1509.07743 Plasma Physics +1509.07790 Theory +1509.08014 +1509.08548 High Energy Astrophysical Phenomena +1509.08887 Lattice +1509.08971 Computer Vision and Pattern Recognition +1509.09003 Mesoscale and Nanoscale Physics +1510.00689 Strongly Correlated Electrons +1510.01305 Instrumentation and Methods for Astrophysics +1510.01776 Information Theory +1510.02015 Quantum Gases +1510.04061 Mathematical Finance +1510.04362 +1510.05148 Phenomenology +1510.05927 Theory +1510.06169 +1510.06256 Materials Science +1510.07360 Statistical Mechanics +1510.07455 Theory +1510.08316 Plasma Physics +1511.00720 +1511.00782 Functional Analysis +1511.02587 Statistical Mechanics +1511.04289 Number Theory +1511.06940 Information Theory +1511.08226 Earth and Planetary Astrophysics +1511.08533 Soft Condensed Matter +1511.08925 High Energy Astrophysical Phenomena +1512.01104 Combinatorics +1512.01199 +1512.03883 Computation +1512.04507 Symplectic Geometry +1512.05280 Statistical Mechanics +1512.06890 Numerical Analysis +1512.07559 Analysis of PDEs +1512.08841 +1512.09010 Cosmology and Nongalactic Astrophysics +1601.00939 Phenomenology +1601.01136 +1601.01702 Solar and Stellar Astrophysics +1601.02752 Distributed, Parallel, and Cluster Computing +1601.03120 Rings and Algebras +1601.03492 Earth and Planetary Astrophysics +1601.04827 +1601.04988 Number Theory +1601.05183 Number Theory +1601.05485 Earth and Planetary Astrophysics +1601.06001 +1601.06304 Theory +1601.06509 Number Theory +1601.06580 Neural and Evolutionary Computing +1601.06681 Numerical Analysis +1601.06722 Methodology +1601.06773 +1601.06847 Information Theory +1601.06982 Group Theory +1601.07157 Software Engineering +1601.07362 Cosmology and Nongalactic Astrophysics +1601.07387 Representation Theory +1601.07444 Networking and Internet Architecture +1601.07482 Emerging Technologies +1601.07519 Algebraic Geometry +1601.07546 Statistical Mechanics +1601.07565 Pattern Formation and Solitons +1601.07569 Numerical Analysis +1601.07570 Rings and Algebras +1601.07572 Networking and Internet Architecture +1601.07580 Analysis of PDEs +1601.07581 Differential Geometry +1601.07587 Group Theory +1601.07588 Differential Geometry +1601.07590 Classical Analysis and ODEs +1601.07593 Information Theory +1601.07596 Artificial Intelligence +1601.07597 Networking and Internet Architecture +1601.07599 Representation Theory +1601.07602 Representation Theory +1601.07603 Numerical Analysis +1601.07605 Fluid Dynamics +1601.07606 Applications +1601.07607 +1601.07612 +1601.07613 Distributed, Parallel, and Cluster Computing +1601.07614 Fluid Dynamics +1601.07615 Classical Analysis and ODEs +1601.07617 Applications +1601.07620 Neurons and Cognition +1601.07622 Optimization and Control +1601.07624 Applications +1601.07625 Other Computer Science +1601.07626 Portfolio Management +1601.07628 Portfolio Management +1601.07631 Soft Condensed Matter +1601.07633 Information Theory +1601.07637 Molecular Networks +1601.07640 Materials Science +1601.07644 Materials Science +1601.07646 Representation Theory +1601.07649 Computer Vision and Pattern Recognition +1601.07650 Optics +1601.07651 +1601.07653 Commutative Algebra +1601.07654 Commutative Algebra +1601.07655 Populations and Evolution +1601.07656 Commutative Algebra +1601.07657 Commutative Algebra +1601.07658 Lattice +1601.07659 Differential Geometry +1601.07660 Commutative Algebra +1601.07663 Combinatorics +1601.07665 Machine Learning +1601.07667 Group Theory +1601.07668 +1601.07672 Representation Theory +1601.07673 Fluid Dynamics +1601.07674 Analysis of PDEs +1601.07678 Information Theory +1601.07683 +1601.07684 Phenomenology +1601.07685 Rings and Algebras +1601.07686 Information Theory +1601.07688 Analysis of PDEs +1601.07696 Differential Geometry +1601.07698 Number Theory +1601.07700 Physics and Society +1601.07709 Sound +1601.07712 Analysis of PDEs +1601.07713 Physics and Society +1601.07714 Social and Information Networks +1601.07716 Physics and Society +1601.07717 Numerical Analysis +1601.07721 Numerical Analysis +1601.07722 Analysis of PDEs +1601.07723 Discrete Mathematics +1601.07728 Computational Physics +1601.07734 Category Theory +1601.07738 Accelerator Physics +1601.07739 Methodology +1601.07740 Neurons and Cognition +1601.07742 Software Engineering +1601.07744 Analysis of PDEs +1601.07747 Commutative Algebra +1601.07751 Classical Analysis and ODEs +1601.07754 Information Retrieval +1601.07763 Algebraic Topology +1601.07765 Graphics +1601.07766 Neurons and Cognition +1601.07767 Dynamical Systems +1601.07769 Functional Analysis +1601.07770 Optimization and Control +1601.07771 +1601.07775 Combinatorics +1601.07776 Social and Information Networks +1601.07779 Optimization and Control +1601.07793 Computers and Society +1601.07797 Computational Geometry +1601.07798 Computational Geometry +1601.07800 Optimization and Control +1601.07802 +1601.07804 Learning +1601.07806 Analysis of PDEs +1601.07809 Combinatorics +1601.07811 Other Computer Science +1601.07812 Group Theory +1601.07813 Combinatorics +1601.07815 Distributed, Parallel, and Cluster Computing +1601.07816 Differential Geometry +1601.07818 Instrumentation and Detectors +1601.07825 Theory +1601.07826 Operator Algebras +1601.07827 Rings and Algebras +1601.07830 Populations and Evolution +1601.07832 Phenomenology +1601.07833 +1601.07836 Geometric Topology +1601.07843 Computer Vision and Pattern Recognition +1601.07846 High Energy Astrophysical Phenomena +1601.07848 Disordered Systems and Neural Networks +1601.07850 Functional Analysis +1601.07858 Instrumentation and Methods for Astrophysics +1601.07860 +1601.07867 Neurons and Cognition +1601.07870 Analysis of PDEs +1601.07872 Statistics Theory +1601.07873 Spectral Theory +1601.07879 Analysis of PDEs +1601.07881 Neurons and Cognition +1601.07883 Computer Vision and Pattern Recognition +1601.07884 Multimedia +1601.07885 Information Theory +1601.07891 Classical Physics +1601.07894 Dynamical Systems +1601.07895 Metric Geometry +1601.07898 Probability +math/0612431 Quantum Algebra +quant-ph/0406061 +1401.3119 General Topology +1401.6394 Optimization and Control +1401.8071 Optimization and Control +1401.8161 Optimization and Control +1402.1600 High Energy Astrophysical Phenomena +1402.2539 Experiment +1402.2554 Experiment +1402.5250 Experiment +1402.6242 Experiment +1402.6248 Experiment +1402.6543 Mesoscale and Nanoscale Physics +1512.05881 Formal Languages and Automata Theory +0904.3449 Category Theory +1003.5208 General Physics +1202.1171 Phenomenology +1204.1208 Probability +1205.5467 Methodology +1208.2121 Information Theory +1211.5865 Representation Theory +1302.5907 Theory +1306.1066 Machine Learning +1311.2717 +1311.6193 Probability +1404.0703 Databases +1410.0503 Statistics Theory +1410.5154 Analysis of PDEs +1412.4176 +1412.7231 Symplectic Geometry +1501.04445 Analysis of PDEs +1501.04898 Materials Science +1501.07740 Information Theory +1502.04083 Applications +1502.06506 Cosmology and Nongalactic Astrophysics +1502.07181 Statistics Theory +1503.06904 Differential Geometry +1504.05055 Algebraic Geometry +1504.05849 +1505.06860 Number Theory +1506.02991 Algebraic Geometry +1506.03881 Combinatorics +1507.03734 Optimization and Control +1507.07502 Probability +1507.07944 Probability +1508.00891 Phenomenology +1508.02872 Combinatorics +1508.05232 Systems and Control +1508.05918 Computation +1508.07041 Statistical Mechanics +1509.04807 Complex Variables +1509.07445 Databases +1510.03878 Optimization and Control +1510.08417 Computational Complexity +1511.00414 Statistical Mechanics +1511.01958 Populations and Evolution +1511.06750 Methodology +1511.08836 Populations and Evolution +1512.02297 Analysis of PDEs +1512.04047 Discrete Mathematics +1512.06650 Phenomenology +1512.06713 Symplectic Geometry +1512.07400 Probability +1512.09048 Phenomenology +1601.02805 +1601.04467 Information Theory +1601.05780 Strongly Correlated Electrons +1602.00602 Programming Languages +1602.01056 +1602.01760 Probability +1602.08310 Phenomenology +1603.01236 Combinatorics +1603.04229 Computation +1603.05458 Populations and Evolution +1603.06367 Phenomenology +1603.08508 Mesoscale and Nanoscale Physics +1604.02024 Methodology +1604.03053 Machine Learning +1604.05402 Numerical Analysis +1604.06945 Materials Science +1604.07005 Rings and Algebras +1604.07281 Information Theory +1604.08031 +1604.08049 Algebraic Geometry +1604.08193 Phenomenology +1604.08281 Strongly Correlated Electrons +1604.08475 Optimization and Control +1605.00554 Phenomenology +1605.00599 Soft Condensed Matter +1605.01651 Group Theory +1605.04255 Mesoscale and Nanoscale Physics +1605.04440 Quantum Gases +1605.05649 Functional Analysis +1606.00687 Soft Condensed Matter +1606.01856 Emerging Technologies +1606.07300 Computation +1606.08474 Cosmology and Nongalactic Astrophysics +1606.08889 Neurons and Cognition +1606.09293 High Energy Astrophysical Phenomena +1606.09595 Strongly Correlated Electrons +1607.01955 Analysis of PDEs +1607.02244 Classical Analysis and ODEs +1607.04251 Phenomenology +1607.04626 Complex Variables +1607.07039 Operator Algebras +1607.07808 Mesoscale and Nanoscale Physics +1607.07927 +1607.08329 Databases +1607.08542 Algebraic Geometry +1608.01362 Distributed, Parallel, and Cluster Computing +1608.01566 Methodology +1608.02185 Geometric Topology +1608.02786 +1608.03869 Soft Condensed Matter +1608.03967 Dynamical Systems +1608.05719 Cosmology and Nongalactic Astrophysics +1608.06255 Representation Theory +1608.06744 Differential Geometry +1608.06872 Quantum Algebra +1608.08958 Phenomenology +1609.00422 Strongly Correlated Electrons +1609.05573 Statistics Theory +1609.07524 Dynamical Systems +1609.08088 +1610.00119 +1610.02142 Mesoscale and Nanoscale Physics +1610.03519 Theory +1610.03578 Materials Science +1610.03896 Dynamical Systems +1610.04181 Machine Learning +1610.05587 Information Theory +1610.06614 Optimization and Control +1610.08334 General Physics +1610.08585 +1610.08621 Methodology +1610.08780 +1611.00053 Mesoscale and Nanoscale Physics +1611.00083 Applications +1611.00168 Phenomenology +1611.00789 Algebraic Geometry +1611.01045 Atmospheric and Oceanic Physics +1611.03271 Fluid Dynamics +1611.05259 Solar and Stellar Astrophysics +1611.06172 Distributed, Parallel, and Cluster Computing +1611.08572 Artificial Intelligence +1611.10128 Instrumentation and Detectors +1612.00372 Algebraic Geometry +1612.00442 +1612.00564 Optimization and Control +1612.00820 Optics +1612.00952 Superconductivity +1612.01031 Combinatorics +1612.01251 Machine Learning +1612.01801 Computation +1612.01803 Probability +1612.01836 +1612.02101 Computer Vision and Pattern Recognition +1612.02107 Group Theory +1612.02226 Geometric Topology +1612.02270 +1612.02271 +1612.02520 Superconductivity +1612.02624 Materials Science +1612.02723 Commutative Algebra +1612.04158 Computer Vision and Pattern Recognition +1612.04169 Probability +1612.04257 Plasma Physics +1612.04395 Solar and Stellar Astrophysics +1612.04916 Mesoscale and Nanoscale Physics +1612.05340 Computation and Language +1612.05480 +1612.05587 Strongly Correlated Electrons +1612.05927 +1612.05977 Phenomenology +1612.06004 +1612.06118 Methodology +1612.06505 Learning +1612.06862 Materials Science +1612.06895 Mesoscale and Nanoscale Physics +1612.07044 Pattern Formation and Solitons +1612.07373 Numerical Analysis +1612.07490 Statistics Theory +1612.07594 Optics +1612.07620 Algebraic Geometry +1612.07763 Optimization and Control +1612.07772 Quantitative Methods +1612.07801 Applications +1612.07802 Statistical Finance +1612.07803 Representation Theory +1612.07805 Quantum Gases +1612.07810 Algebraic Geometry +1612.07811 Methodology +1612.07812 Experiment +1612.07815 +1612.07816 Networking and Internet Architecture +1612.07817 Strongly Correlated Electrons +1612.07819 Number Theory +1612.07821 Instrumentation and Detectors +1612.07824 Optimization and Control +1612.07827 Computational Physics +1612.07830 Logic +1612.07831 High Energy Astrophysical Phenomena +1612.07832 Theory +1612.07833 Computation and Language +1612.07834 Astrophysics of Galaxies +1612.07835 Materials Science +1612.07836 Populations and Evolution +1612.07838 Numerical Analysis +1612.07839 Functional Analysis +1612.07840 Medical Physics +1612.07841 Cryptography and Security +1612.07842 Probability +1612.07843 Computation and Language +1612.07844 Logic in Computer Science +1612.07846 Neurons and Cognition +1612.07848 Mathematical Software +1612.07849 Atomic Physics +1612.07851 Numerical Analysis +1612.07852 Materials Science +1612.07853 Fluid Dynamics +1612.07854 Information Theory +1612.07857 Machine Learning +1612.07858 +1612.07859 Information Theory +1612.07860 Plasma Physics +1612.07861 +1612.07862 Networking and Internet Architecture +1612.07863 Digital Libraries +1612.07864 Instrumentation and Methods for Astrophysics +1612.07865 +1612.07866 Data Structures and Algorithms +1612.07867 Methodology +1612.07868 Algebraic Topology +1612.07869 Analysis of PDEs +1612.07870 Analysis of PDEs +1612.07871 +1612.07872 Multimedia +1612.07873 Lattice +1612.07874 High Energy Astrophysical Phenomena +1612.07875 Numerical Analysis +1612.07876 Dynamical Systems +1612.07877 Optimization and Control +1612.07881 Formal Languages and Automata Theory +1612.07882 Information Theory +1612.07884 Group Theory +1612.07888 Combinatorics +1612.07889 Networking and Internet Architecture +1612.07890 Disordered Systems and Neural Networks +1612.07891 High Energy Astrophysical Phenomena +1612.07895 Space Physics +1612.07896 Artificial Intelligence +1612.07897 Cell Behavior +1612.07898 Number Theory +1612.07899 Computer Vision and Pattern Recognition +1612.07900 Algebraic Geometry +1612.07901 Probability +1612.07902 Information Theory +1612.07903 Economics +1612.07904 Combinatorics +1612.07905 Soft Condensed Matter +1612.07907 Classical Analysis and ODEs +1612.07908 Populations and Evolution +1612.07909 Dynamical Systems +1612.07910 Rings and Algebras +1612.07911 Computational Physics +1612.07912 Logic in Computer Science +1612.07913 Economics +1612.07914 Analysis of PDEs +1612.07916 Optimization and Control +1612.07917 Instrumentation and Methods for Astrophysics +1612.07919 Computer Vision and Pattern Recognition +1612.07920 Social and Information Networks +1612.07921 Computer Vision and Pattern Recognition +1612.07922 Statistical Mechanics +1612.07923 Astrophysics of Galaxies +1612.07924 +1612.07925 Data Structures and Algorithms +1612.07926 +1612.07928 Information Theory +1612.07931 Information Theory +1612.07932 Optics +1612.07933 Phenomenology +1612.07934 Analysis of PDEs +1612.07936 Analysis of PDEs +1612.07937 Analysis of PDEs +1612.07938 Applications +1612.07939 Analysis of PDEs +1612.07940 Computation and Language +1612.07942 Analysis of PDEs +1612.07943 Solar and Stellar Astrophysics +1612.07944 +1612.07946 Statistics Theory +1612.07947 Networking and Internet Architecture +1612.07948 Mesoscale and Nanoscale Physics +1612.07949 Materials Science +1612.07950 Probability +1612.07951 Phenomenology +1612.07952 Phenomenology +1612.07953 Quantum Gases +1612.07954 +1612.07955 Mesoscale and Nanoscale Physics +1612.07956 Computation and Language +1612.07957 Networking and Internet Architecture +1612.07958 Phenomenology +1612.07960 Quantum Algebra +1612.07962 Optimization and Control +1612.07963 +1612.07964 Quantum Algebra +1612.07967 Phenomenology +1612.07969 Mesoscale and Nanoscale Physics +1612.07970 +1612.07971 Methodology +1612.07974 +1612.07975 Mesoscale and Nanoscale Physics +1612.07977 Mesoscale and Nanoscale Physics +1612.07978 Computer Vision and Pattern Recognition +1612.07979 +1612.07981 Materials Science +1612.07983 Logic in Computer Science +1612.07984 +1612.07985 Lattice +1612.07987 Phenomenology +1612.07992 Biological Physics +1612.07993 Machine Learning +1612.07996 General Physics +1612.07998 Mesoscale and Nanoscale Physics +1612.07999 Information Theory +1612.08000 +1612.08001 Rings and Algebras +1612.08002 High Energy Astrophysical Phenomena +1612.08003 Soft Condensed Matter +1612.08005 Strongly Correlated Electrons +1612.08007 Analysis of PDEs +1612.08008 Number Theory +1612.08009 Strongly Correlated Electrons +1612.08010 +1612.08011 Soft Condensed Matter +1612.08014 Soft Condensed Matter +1612.08015 Theory +1612.08016 Strongly Correlated Electrons +1612.08017 Mesoscale and Nanoscale Physics +1612.08018 Functional Analysis +1612.08020 Classical Analysis and ODEs +1612.08022 Systems and Control +1612.08023 Information Theory +1612.08026 Phenomenology +1612.08028 Number Theory +1612.08032 +1612.08033 Strongly Correlated Electrons +1612.08034 Robotics +1612.08035 Number Theory +1612.08037 Computer Vision and Pattern Recognition +1612.08038 Probability +1612.08039 Strongly Correlated Electrons +1612.08041 Mesoscale and Nanoscale Physics +1612.08043 Geometric Topology +1612.08044 +1612.08045 Probability +1612.08046 Optics +1612.08047 Phenomenology +1612.08049 Computer Vision and Pattern Recognition +1612.08050 Databases +1612.08051 Rings and Algebras +1612.08053 +1612.08054 Solar and Stellar Astrophysics +1612.08055 Mesoscale and Nanoscale Physics +1612.08056 +1612.08058 Quantitative Methods +1612.08059 Neurons and Cognition +1612.08060 Distributed, Parallel, and Cluster Computing +1612.08062 Methodology +1612.08065 Theory +1612.08066 Theory +1612.08067 Networking and Internet Architecture +1612.08068 Optics +1612.08070 +1612.08071 Logic +1612.08072 +1612.08073 Software Engineering +1612.08074 Analysis of PDEs +1612.08075 Data Structures and Algorithms +1612.08076 Networking and Internet Architecture +1612.08077 Numerical Analysis +1612.08078 Experiment +1612.08079 Classical Analysis and ODEs +1612.08080 Representation Theory +1612.08081 Materials Science +1612.08082 Machine Learning +1612.08083 Computation and Language +1612.08084 Molecular Networks +1612.08085 Combinatorics +1612.08086 Classical Analysis and ODEs +0905.3924 Dynamical Systems +1006.0614 Dynamical Systems +1202.2188 Number Theory +1204.4922 Optics +1212.0305 Combinatorics +1302.2275 Number Theory +1304.4559 Differential Geometry +1305.7383 Cryptography and Security +1306.4131 Algebraic Geometry +1306.4504 Algebraic Geometry +1306.6430 Statistics Theory +1308.6326 Group Theory +1310.5569 Networking and Internet Architecture +1311.6387 Dynamical Systems +1402.0647 Algebraic Geometry +1402.2263 Functional Analysis +1402.3456 K-Theory and Homology +1403.6521 Representation Theory +1404.3118 Differential Geometry +1404.3566 Physics Education +1407.5280 Differential Geometry +1407.6581 Analysis of PDEs +1408.0350 Group Theory +1408.6447 Strongly Correlated Electrons +1409.0221 Differential Geometry +1409.7613 Combinatorics +1409.8163 +1410.2072 Superconductivity +1410.4645 Dynamical Systems +1410.8332 +1411.0560 Computation +1411.2330 Algebraic Topology +1412.0381 Fluid Dynamics +1412.2262 Portfolio Management +1501.02728 Physics and Society +1501.03221 Methodology +1501.03224 Quantum Gases +1501.04248 +1501.07452 Optics +1502.02396 +1502.07201 Differential Geometry +1503.04650 Cosmology and Nongalactic Astrophysics +1503.06150 Probability +1503.08298 Superconductivity +1504.01253 Dynamical Systems +1504.04794 Operator Algebras +1504.05803 Optimization and Control +1504.06139 Chemical Physics +1504.08126 Lattice +1505.00595 +1505.04405 Superconductivity +1505.07643 Fluid Dynamics +1506.00694 Systems and Control +1506.02777 Mesoscale and Nanoscale Physics +1506.03662 Learning +1506.03714 Theory +1506.04665 General Topology +1506.04668 Soft Condensed Matter +1506.06895 Cosmology and Nongalactic Astrophysics +1506.07424 Computational Engineering, Finance, and Science +1506.07584 Distributed, Parallel, and Cluster Computing +1506.07990 Artificial Intelligence +1507.00953 Optics +1507.01745 Category Theory +1507.05130 Dynamical Systems +1507.05336 +1507.05790 Social and Information Networks +1507.06184 Probability +1507.07131 Representation Theory +1507.07682 +1507.08993 +1508.05906 Probability +1508.07313 Social and Information Networks +1509.01255 Astrophysics of Galaxies +1509.02486 Instrumentation and Detectors +1509.02527 Number Theory +1509.03850 Strongly Correlated Electrons +1509.04547 Logic +1509.05386 +1509.05782 +1509.06463 Numerical Analysis +1509.08573 Biological Physics +1510.01238 Astrophysics of Galaxies +1510.02486 Phenomenology +1510.02520 Quantum Gases +1510.02832 Rings and Algebras +1510.03009 Learning +1510.04052 Materials Science +1511.03020 Digital Libraries +1511.04431 Medical Physics +1511.04693 Optics +1511.04886 +1511.06187 Materials Science +1511.06426 Computation and Language +1511.07142 +1511.07765 Chaotic Dynamics +1511.07933 High Energy Astrophysical Phenomena +1511.08130 Artificial Intelligence +1511.08766 Superconductivity +1512.04638 +1512.04830 Information Theory +1512.05440 Earth and Planetary Astrophysics +1512.06651 Theory +1512.08097 Applications +1512.08696 Number Theory +1601.00014 Commutative Algebra +1601.01032 Differential Geometry +1601.01076 Strongly Correlated Electrons +1601.01543 Analysis of PDEs +1601.02030 Algebraic Geometry +1601.02270 Rings and Algebras +1601.03931 Instrumentation and Methods for Astrophysics +1601.04208 Materials Science +1601.04737 Optimization and Control +1601.04738 Optimization and Control +1601.04810 Information Theory +1601.05401 Strongly Correlated Electrons +1602.01421 Distributed, Parallel, and Cluster Computing +1602.03143 Astrophysics of Galaxies +1602.03315 Soft Condensed Matter +1602.03685 Plasma Physics +1602.05209 Multimedia +1602.05526 Sound +1602.05584 Earth and Planetary Astrophysics +1602.06726 Number Theory +1602.07235 Computational Geometry +1602.07636 Information Theory +1602.07783 Information Retrieval +1602.07963 +1602.08039 Fluid Dynamics +1602.08095 Mesoscale and Nanoscale Physics +1602.08096 Analysis of PDEs +1602.08097 Theory +1602.08101 Astrophysics of Galaxies +1602.08109 Computer Science and Game Theory +1602.08111 Biomolecules +1602.08113 Biomolecules +1602.08115 Biomolecules +1602.08116 Systems and Control +1602.08117 Biomolecules +1602.08118 Learning +1602.08119 Biomolecules +1602.08125 Analysis of PDEs +1602.08128 Sound +1602.08129 Algebraic Geometry +1602.08132 Sound +1602.08139 Robotics +1602.08141 Robotics +1602.08142 History and Overview +1602.08145 Optics +1602.08148 Combinatorics +1602.08149 +1602.08155 Cryptography and Security +1602.08156 Networking and Internet Architecture +1602.08158 Robotics +1602.08160 Probability +1602.08161 Information Theory +1602.08163 Analysis of PDEs +1602.08169 Classical Analysis and ODEs +1602.08175 Analysis of PDEs +1602.08176 Analysis of PDEs +1602.08178 Strongly Correlated Electrons +1602.08183 Quantitative Methods +1602.08184 Rings and Algebras +1602.08185 Sound +1602.08186 Information Retrieval +1602.08192 Materials Science +1602.08198 Disordered Systems and Neural Networks +1602.08203 Number Theory +1602.08208 Functional Analysis +1602.08209 Materials Science +1602.08212 Phenomenology +1602.08213 Robotics +1602.08214 Combinatorics +1602.08215 Sound +1602.08217 Optics +1602.08218 Strongly Correlated Electrons +1602.08220 +1602.08225 Human-Computer Interaction +1602.08227 High Energy Astrophysical Phenomena +1602.08228 Cryptography and Security +1602.08231 Number Theory +1602.08233 Computational Physics +1602.08234 Probability +1602.08235 Probability +1602.08236 Number Theory +1602.08237 Human-Computer Interaction +1602.08241 Classical Analysis and ODEs +1602.08242 Dynamical Systems +1602.08246 General Topology +1602.08247 Algebraic Topology +1602.08250 Combinatorics +1602.08253 Representation Theory +1602.08254 Data Structures and Algorithms +1602.08258 Statistical Finance +1602.08260 Logic in Computer Science +1602.08262 Materials Science +1602.08264 History and Overview +1602.08268 Populations and Evolution +1602.08270 Trading and Market Microstructure +1602.08278 +1602.08279 Functional Analysis +1602.08280 Optics +1602.08281 +1602.08284 Algebraic Geometry +1602.08285 Materials Science +1602.08288 Strongly Correlated Electrons +1602.08294 Chaotic Dynamics +1602.08297 Portfolio Management +1602.08298 Data Structures and Algorithms +1602.08301 +1602.08307 Statistics Theory +1602.08311 Probability +1602.08312 Cosmology and Nongalactic Astrophysics +1602.08313 Artificial Intelligence +1602.08314 Molecular Networks +1602.08318 Complex Variables +1602.08321 Software Engineering +1602.08326 Fluid Dynamics +1602.08331 Dynamical Systems +1602.08335 General Physics +1602.08336 Probability +1602.08337 Complex Variables +1602.08338 Numerical Analysis +1602.08340 Dynamical Systems +1602.08342 Computational Physics +1602.08343 Soft Condensed Matter +1602.08344 Analysis of PDEs +1602.08345 Dynamical Systems +1602.08347 Combinatorics +1602.08348 Materials Science +1602.08349 Logic in Computer Science +1602.08350 Learning +1602.08352 Phenomenology +1602.08354 Number Theory +1602.08355 Applications +1602.08358 Human-Computer Interaction +1602.08360 Applications +1602.08361 Distributed, Parallel, and Cluster Computing +1602.08365 Numerical Analysis +1602.08369 Data Structures and Algorithms +1602.08372 Optimization and Control +1602.08378 Optimization and Control +1602.08379 Group Theory +1602.08380 General Topology +1602.08382 Probability +1602.08386 +1602.08388 Computers and Society +1602.08391 Numerical Analysis +1602.08393 Data Structures and Algorithms +1602.08399 Computers and Society +1602.08401 Representation Theory +1602.08402 Astrophysics of Galaxies +1602.08408 Logic +1602.08410 Cryptography and Security +1602.08417 Neurons and Cognition +1602.08418 Machine Learning +1602.08420 Materials Science +1602.08423 Computers and Society +1602.08428 Probability +1602.08429 General Finance +1602.08430 Cosmology and Nongalactic Astrophysics +1602.08435 Functional Analysis +1602.08439 Phenomenology +1602.08441 Phenomenology +1602.08442 General Finance +1602.08444 Information Theory +1602.08446 Information Theory +1602.08447 Artificial Intelligence +1602.08450 Methodology +1602.08453 Mesoscale and Nanoscale Physics +1602.08455 Information Theory +1602.08457 Quantum Algebra +1602.08458 Complex Variables +1602.08459 Cryptography and Security +1602.08460 Dynamical Systems +1602.08461 Networking and Internet Architecture +1602.08463 Computational Engineering, Finance, and Science +1602.08466 Information Theory +1602.08469 Information Theory +1602.08472 Cryptography and Security +1602.08473 Optimization and Control +1602.08474 Astrophysics of Galaxies +1602.08475 Theory +math/0207108 Algebraic Geometry +math/0611658 Differential Geometry +nlin/0109006 Chaotic Dynamics +0705.0920 Functional Analysis +0707.4584 Analysis of PDEs +0710.3652 Analysis of PDEs +0712.4005 Group Theory +0801.1444 Analysis of PDEs +0802.2801 Analysis of PDEs +0803.3140 Functional Analysis +0902.3957 Superconductivity +0903.0323 Superconductivity +0903.1028 Superconductivity +0904.1508 Analysis of PDEs +0904.1691 Analysis of PDEs +0906.0403 Superconductivity +0906.4604 General Mathematics +0910.1537 Superconductivity +0912.0284 K-Theory and Homology +1002.0747 Applications +1003.1125 Rings and Algebras +1004.3686 Analysis of PDEs +1108.4267 Rings and Algebras +1110.3650 Group Theory +1110.5955 Representation Theory +1202.0695 Computer Science and Game Theory +1202.4160 Data Structures and Algorithms +1204.0020 Quantum Algebra +1205.2937 Phenomenology +1207.2962 Rings and Algebras +1208.4761 Strongly Correlated Electrons +1209.5784 Dynamical Systems +1210.0165 Number Theory +1302.5904 Dynamical Systems +1303.1579 Algebraic Topology +1304.7567 Quantum Gases +1305.0656 Spectral Theory +1305.1843 Spectral Theory +1305.3239 Numerical Analysis +1305.3426 Fluid Dynamics +1305.6028 Category Theory +1307.4697 Functional Analysis +1308.2635 Functional Analysis +1308.3431 +1308.5863 Theory +1308.6198 Cryptography and Security +1309.4183 Probability +1309.4863 Physics and Society +1310.6710 Algebraic Geometry +1311.3363 Probability +1311.6187 Probability +1312.7147 Number Theory +1401.1725 Combinatorics +1401.7071 Differential Geometry +1402.2017 Dynamical Systems +1402.6561 Optics +1403.0094 Analysis of PDEs +1404.5418 Probability +1404.6345 Number Theory +1404.7257 Probability +1405.1523 Logic in Computer Science +1405.4403 Cosmology and Nongalactic Astrophysics +1405.7463 Fluid Dynamics +1405.7590 Probability +1406.0319 Cosmology and Nongalactic Astrophysics +1406.1192 +1406.1931 Optics +1406.5261 Group Theory +1406.7312 Algebraic Geometry +1407.0416 Optimization and Control +1407.0841 Analysis of PDEs +1407.0876 Probability +1407.2629 Algebraic Geometry +1407.3594 Differential Geometry +1407.4207 Functional Analysis +1408.2676 Algebraic Geometry +1408.4308 Algebraic Geometry +1408.6468 Operator Algebras +1409.1771 Statistics Theory +1409.2757 General Mathematics +1409.7960 Probability +1410.0258 Combinatorics +1410.4278 Information Theory +1410.5916 +1410.8197 +1410.8229 Machine Learning +1410.8395 Combinatorics +1411.0541 Learning +1411.0868 Numerical Analysis +1411.1044 Discrete Mathematics +1411.3860 Operator Algebras +1411.6349 Differential Geometry +1411.6638 Superconductivity +1411.7179 Algebraic Geometry +1411.7668 Group Theory +1412.2412 Quantum Gases +1412.4228 +1412.5383 Functional Analysis +1412.8462 +1412.8622 Materials Science +1501.00054 +1501.00562 Probability +1501.01573 Portfolio Management +1501.02171 Astrophysics of Galaxies +1501.02994 Complex Variables +1501.03530 Instrumentation and Detectors +1501.03622 Analysis of PDEs +1501.04002 Computational Geometry +1501.06181 Mesoscale and Nanoscale Physics +1501.07480 Mathematical Finance +1502.00471 Methodology +1502.03374 Classical Analysis and ODEs +1502.03555 Combinatorics +1502.04400 Dynamical Systems +1502.05334 Data Structures and Algorithms +1503.00407 +1503.04413 Optimization and Control +1503.04675 Quantum Algebra +1503.05863 +1503.06171 Applications +1504.00235 Probability +1504.01924 +1505.01680 +1505.03667 Quantum Algebra +1505.04456 Materials Science +1505.04723 +1505.04753 +1505.07072 Statistics Theory +1505.07352 Methodology +1506.01728 +1506.02778 Probability +1506.04778 Computation +1506.07405 Numerical Analysis +1506.08266 Representation Theory +1507.00144 Functional Analysis +1507.00287 Information Theory +1507.00447 Optimization and Control +1507.01338 Social and Information Networks +1507.02870 Artificial Intelligence +1507.05014 Optimization and Control +1507.08632 Mesoscale and Nanoscale Physics +1507.08865 Algebraic Geometry +1508.00591 Operator Algebras +1508.00617 Probability +1508.03680 Geometric Topology +1508.04477 +1508.04869 +1509.00975 Earth and Planetary Astrophysics +1509.01862 Theory +1509.02101 Algebraic Topology +1509.03048 Logic +1509.03218 Combinatorics +1509.03598 Optics +1509.04001 Analysis of PDEs +1509.04093 Statistics Theory +1509.04697 Statistical Mechanics +1509.06638 Metric Geometry +1509.06676 +1509.06711 General Physics +1509.07141 Statistical Mechanics +1509.07243 Phenomenology +1509.08285 Computational Geometry +1509.08405 Rings and Algebras +1510.00154 Cosmology and Nongalactic Astrophysics +1510.01100 Neurons and Cognition +1510.03323 Complex Variables +1510.03666 +1510.04668 Operator Algebras +1510.05045 Adaptation and Self-Organizing Systems +1510.05188 Functional Analysis +1510.05578 Optimization and Control +1510.06806 +1510.08160 Computer Vision and Pattern Recognition +1510.08573 Optimization and Control +1511.00263 Optics +1511.00309 High Energy Astrophysical Phenomena +1511.01333 High Energy Astrophysical Phenomena +1511.02275 Lattice +1511.02982 Operator Algebras +1511.03094 Mesoscale and Nanoscale Physics +1511.03403 Optimization and Control +1511.05785 Mesoscale and Nanoscale Physics +1511.05904 Computer Vision and Pattern Recognition +1511.07389 Theory +1511.07911 Differential Geometry +1511.08144 +1511.08416 Computer Science and Game Theory +1512.00487 Applications +1512.00601 Differential Geometry +1512.00707 Dynamical Systems +1512.01384 Computation and Language +1512.01405 Strongly Correlated Electrons +1512.01407 Materials Science +1512.01717 Formal Languages and Automata Theory +1512.02430 Formal Languages and Automata Theory +1512.03075 Group Theory +1512.04254 Representation Theory +1512.05202 General Physics +1512.05306 Distributed, Parallel, and Cluster Computing +1512.06654 Geometric Topology +1512.06660 Combinatorics +1512.06708 Phenomenology +1512.07106 +1512.07733 Phenomenology +1512.07871 Probability +1512.07874 Combinatorics +1512.08316 Geometric Topology +1512.09081 +1601.00173 +1601.00454 Phenomenology +1601.00486 Phenomenology +1601.01269 Mesoscale and Nanoscale Physics +1601.01628 Mesoscale and Nanoscale Physics +1601.01873 +1601.02582 Complex Variables +1601.03189 Category Theory +1601.03699 Experiment +1601.03735 High Energy Astrophysical Phenomena +1601.04118 Optimization and Control +1601.04515 Theory +1601.04680 Number Theory +1601.05102 Optimization and Control +1601.06279 Dynamical Systems +1601.06411 Functional Analysis +1601.06679 Optics +1601.07117 Quantum Gases +1601.08157 Fluid Dynamics +1602.00909 +1602.01258 Social and Information Networks +1602.01710 Superconductivity +1602.02790 Phenomenology +1602.03046 Populations and Evolution +1602.03345 Statistical Mechanics +1602.03693 Differential Geometry +1602.03701 Instrumentation and Detectors +1602.06457 Representation Theory +1602.07543 Experiment +1602.08553 Strongly Correlated Electrons +1602.08819 Phenomenology +1603.00631 Dynamical Systems +1603.01423 Quantum Gases +1603.01782 Instrumentation and Detectors +1603.02040 Mesoscale and Nanoscale Physics +1603.02871 Probability +1603.02957 +1603.03316 Computation +1603.03850 Commutative Algebra +1603.04659 Instrumentation and Methods for Astrophysics +1603.05251 Phenomenology +1603.05301 +1603.06440 Mesoscale and Nanoscale Physics +1603.06447 Mesoscale and Nanoscale Physics +1603.06772 Optimization and Control +1603.06903 Astrophysics of Galaxies +1603.07016 Digital Libraries +1603.07295 Strongly Correlated Electrons +1603.07373 +1603.07754 +1603.08258 Mesoscale and Nanoscale Physics +1603.08495 Probability +1603.08528 Mesoscale and Nanoscale Physics +1603.09246 Computer Vision and Pattern Recognition +1603.09490 Networking and Internet Architecture +1604.00719 Dynamical Systems +1604.00876 Earth and Planetary Astrophysics +1604.01363 Phenomenology +1604.01792 Computation and Language +1604.02811 Theory +1604.03532 Biological Physics +1604.03565 Superconductivity +1604.05371 Mesoscale and Nanoscale Physics +1604.05917 General Physics +1604.06357 Mesoscale and Nanoscale Physics +1604.07677 Solar and Stellar Astrophysics +1604.07983 Lattice +1604.08681 Functional Analysis +1605.00163 High Energy Astrophysical Phenomena +1605.00481 Functional Analysis +1605.01488 Data Structures and Algorithms +1605.02309 Computers and Society +1605.02497 Phenomenology +1605.02930 Differential Geometry +1605.03901 Biological Physics +1605.03939 Experiment +1605.04570 +1605.04914 +1605.05051 Statistics Theory +1605.05428 Algebraic Geometry +1605.06278 +1605.07430 +1605.07531 +1605.07543 Algebraic Geometry +1605.07909 Superconductivity +1605.08136 Classical Analysis and ODEs +1606.00778 Differential Geometry +1606.01166 Learning +1606.01492 Phenomenology +1606.01568 Learning +1606.01786 Systems and Control +1606.01967 General Topology +1606.01995 Logic +1606.02099 Analysis of PDEs +1606.02144 Systems and Control +1606.02495 Materials Science +1606.02526 Chaotic Dynamics +1606.02600 Instrumentation and Detectors +1606.02703 Probability +1606.03351 Combinatorics +1606.03474 Learning +1606.03589 Quantum Gases +1606.03617 Logic +1606.03704 Geometric Topology +1606.03836 Probability +1606.03869 Logic +1606.04158 Algebraic Geometry +1606.04419 Combinatorics +1606.04529 +1606.05249 Earth and Planetary Astrophysics +1606.05679 Computation and Language +1606.05743 Networking and Internet Architecture +1606.05835 Algebraic Topology +1606.05992 Representation Theory +1606.06164 Computation and Language +1606.06326 Probability +1606.06354 Computer Vision and Pattern Recognition +1606.06389 Data Structures and Algorithms +1606.06476 Networking and Internet Architecture +1606.06615 Algebraic Geometry +1606.06702 Human-Computer Interaction +1606.06807 Geometric Topology +1606.06831 Atomic Physics +1606.07103 Information Retrieval +1606.07257 Algebraic Geometry +1606.07285 Computer Vision and Pattern Recognition +1606.07342 Biological Physics +1606.07425 Data Structures and Algorithms +1606.07484 Astrophysics of Galaxies +1606.07522 Logic in Computer Science +1606.07594 Group Theory +1606.07660 Information Retrieval +1606.07719 General Physics +1606.07768 Statistical Mechanics +1606.07769 Physics and Society +1606.07802 Data Structures and Algorithms +1606.07803 Computers and Society +1606.07804 High Energy Astrophysical Phenomena +1606.07807 Genomics +1606.07817 Astrophysics of Galaxies +1606.07820 Astrophysics of Galaxies +1606.07822 Computation and Language +1606.07823 Combinatorics +1606.07824 Complex Variables +1606.07825 Physics and Society +1606.07827 Computer Vision and Pattern Recognition +1606.07828 Information Retrieval +1606.07829 Computation and Language +1606.07830 Computer Vision and Pattern Recognition +1606.07831 Computational Finance +1606.07838 Classical Analysis and ODEs +1606.07840 Machine Learning +1606.07841 Human-Computer Interaction +1606.07843 Computer Science and Game Theory +1606.07844 Number Theory +1606.07845 Computation +1606.07848 Strongly Correlated Electrons +1606.07849 Computation and Language +1606.07850 Classical Analysis and ODEs +1606.07852 Hardware Architecture +1606.07853 Physics Education +1606.07855 Applications +1606.07857 Pattern Formation and Solitons +1606.07858 Systems and Control +1606.07859 Materials Science +1606.07863 Data Structures and Algorithms +1606.07864 Data Structures and Algorithms +1606.07868 Computation +1606.07869 Information Retrieval +1606.07873 Computer Vision and Pattern Recognition +1606.07874 Combinatorics +1606.07876 Distributed, Parallel, and Cluster Computing +1606.07877 Differential Geometry +1606.07878 Combinatorics +1606.07880 Theory +1606.07881 Combinatorics +1606.07883 Classical Analysis and ODEs +1606.07885 Rings and Algebras +1606.07886 Logic in Computer Science +1606.07887 Astrophysics of Galaxies +1606.07891 Analysis of PDEs +1606.07892 Computation +1606.07893 Rings and Algebras +1606.07896 Statistics Theory +1606.07901 Computation and Language +1606.07902 Computation and Language +1606.07903 Phenomenology +1606.07904 Information Theory +1606.07906 Combinatorics +1606.07907 Differential Geometry +1606.07909 Functional Analysis +1606.07910 Computational Complexity +1606.07911 Number Theory +1606.07913 Discrete Mathematics +1606.07914 Strongly Correlated Electrons +1606.07916 Social and Information Networks +1606.07918 Combinatorics +1606.07920 Complex Variables +1606.07921 Computer Vision and Pattern Recognition +1606.07925 Algebraic Topology +1606.07926 Methodology +1606.07932 Networking and Internet Architecture +1606.07935 Networking and Internet Architecture +1606.07936 +1606.07937 General Physics +1606.07939 Analysis of PDEs +1606.07940 Classical Analysis and ODEs +1606.07941 Software Engineering +1606.07943 Astrophysics of Galaxies +1606.07944 Number Theory +1606.07945 Probability +1606.07948 Statistics Theory +1606.07950 Computation and Language +1606.07955 Artificial Intelligence +1606.07956 Commutative Algebra +1606.07958 Dynamical Systems +1606.07962 Materials Science +1606.07965 Computation and Language +1606.07966 Number Theory +1606.07967 Computation and Language +1606.07968 Computer Vision and Pattern Recognition +1606.07969 Statistical Mechanics +1606.07970 Computer Vision and Pattern Recognition +1606.07973 Algebraic Geometry +1606.07975 +1606.07976 Commutative Algebra +1606.07980 Fluid Dynamics +1606.07983 Mesoscale and Nanoscale Physics +1606.07986 Applications +1606.07988 Software Engineering +1606.07990 Atomic Physics +1606.07991 Software Engineering +1606.07993 Computation and Language +1606.07994 Symplectic Geometry +1606.07996 Materials Science +1606.07997 Metric Geometry +1606.07998 Rings and Algebras +1606.08000 Materials Science +1606.08001 Combinatorics +1606.08002 Materials Science +1606.08003 Computation and Language +1606.08007 Mesoscale and Nanoscale Physics +1606.08010 +1606.08013 Mesoscale and Nanoscale Physics +1606.08014 Computational Complexity +1606.08015 Differential Geometry +1606.08016 Combinatorics +1606.08017 Group Theory +1606.08018 Differential Geometry +1606.08019 Optics +1606.08021 Number Theory +1606.08023 Computational Geometry +1606.08026 Functional Analysis +1606.08031 +1606.08033 Combinatorics +1606.08034 Number Theory +1606.08036 Group Theory +1606.08037 Combinatorics +1606.08040 Numerical Analysis +1606.08042 Number Theory +1606.08043 Differential Geometry +1606.08044 Probability +1606.08046 Methodology +1606.08047 Classical Analysis and ODEs +1606.08048 Functional Analysis +1606.08049 +1606.08057 Robotics +1606.08058 +1606.08061 Neural and Evolutionary Computing +1606.08062 Materials Science +1606.08063 Machine Learning +1606.08065 Human-Computer Interaction +1606.08066 Analysis of PDEs +1606.08069 Optimization and Control +1606.08072 Systems and Control +1606.08074 Classical Analysis and ODEs +1606.08077 Computer Science and Game Theory +1606.08080 Dynamical Systems +1606.08082 Classical Analysis and ODEs +1606.08083 Data Structures and Algorithms +1606.08084 Social and Information Networks +1606.08085 Discrete Mathematics +1606.08089 Computation and Language +1606.08090 Systems and Control +1606.08091 Complex Variables +1606.08092 Logic +1606.08095 Statistical Mechanics +1606.08096 +1606.08098 Applications +1606.08099 Functional Analysis +1606.08100 Mesoscale and Nanoscale Physics +1606.08101 Optimization and Control +1606.08102 Cosmology and Nongalactic Astrophysics +1606.08103 Social and Information Networks +1606.08104 Information Retrieval +1606.08105 Machine Learning +1606.08106 Methodology +1606.08109 Artificial Intelligence +1606.08118 Materials Science +1606.08119 Mesoscale and Nanoscale Physics +1606.08121 +1606.08122 Combinatorics +1606.08128 Information Theory +1606.08131 Fluid Dynamics +1606.08132 Social and Information Networks +1606.08133 Instrumentation and Methods for Astrophysics +1606.08134 Complex Variables +1606.08137 Materials Science +1606.08138 High Energy Astrophysical Phenomena +1606.08139 Quantum Algebra +1606.08141 Computational Complexity +1606.08143 Combinatorics +1606.08144 Complex Variables +1606.08151 Statistics Theory +1606.08153 Combinatorics +1606.08154 Social and Information Networks +1606.08156 Distributed, Parallel, and Cluster Computing +1606.08160 Computation +1606.08162 Populations and Evolution +1606.08165 Neural and Evolutionary Computing +1606.08167 Optics +1606.08170 Experiment +1606.08173 +1606.08174 Plasma Physics +1606.08175 Optics +1606.08184 Combinatorics +1606.08186 Mesoscale and Nanoscale Physics +1606.08188 Computational Physics +1606.08189 Classical Analysis and ODEs +1606.08190 Instrumentation and Methods for Astrophysics +1606.08191 Statistical Mechanics +1606.08193 Combinatorics +1606.08194 Functional Analysis +1606.08196 Group Theory +1606.08199 Applications +1606.08200 Optics +1606.08202 Mesoscale and Nanoscale Physics +1606.08209 Numerical Analysis +1606.08210 Atomic Physics +1606.08211 Analysis of PDEs +1606.08212 Probability +1606.08214 Differential Geometry +1606.08215 Soft Condensed Matter +1606.08216 Functional Analysis +1606.08220 Optimization and Control +1606.08222 Category Theory +1606.08226 Discrete Mathematics +1606.08227 Materials Science +1606.08229 +1606.08230 Probability +1606.08233 Populations and Evolution +1606.08238 Exactly Solvable and Integrable Systems +1606.08239 Chemical Physics +1606.08240 Metric Geometry +1606.08242 Algebraic Geometry +1606.08243 Phenomenology +1606.08245 Number Theory +1606.08246 Combinatorics +1606.08248 Statistics Theory +1606.08249 Analysis of PDEs +1606.08252 Mesoscale and Nanoscale Physics +1606.08253 Information Theory +1606.08254 Superconductivity +1606.08255 Classical Analysis and ODEs +1606.08259 Optics +1606.08261 Algebraic Geometry +1606.08269 Probability +1606.08270 Computation and Language +1606.08273 +1606.08275 Data Structures and Algorithms +1606.08277 Distributed, Parallel, and Cluster Computing +1606.08279 Rings and Algebras +1606.08280 Logic in Computer Science +1606.08281 Quantitative Methods +1606.08283 Experiment +1606.08288 Machine Learning +1606.08289 Experiment +1606.08290 Mesoscale and Nanoscale Physics +1606.08292 Applications +1606.08293 General Mathematics +1606.08297 Software Engineering +1606.08298 Methodology +1606.08300 General Physics +1606.08301 Mesoscale and Nanoscale Physics +1606.08302 Optics +1606.08303 Information Theory +1606.08304 High Energy Astrophysical Phenomena +1606.08306 Atomic and Molecular Clusters +1606.08309 General Physics +1606.08313 Neurons and Cognition +1606.08314 Biomolecules +1606.08315 Computer Vision and Pattern Recognition +1606.08321 Probability +1606.08322 Dynamical Systems +1606.08323 Optimization and Control +1606.08325 Classical Analysis and ODEs +1606.08326 Logic +1606.08328 Social and Information Networks +1606.08331 Exactly Solvable and Integrable Systems +1606.08332 +1606.08333 Artificial Intelligence +1606.08337 Methodology +1606.08339 Methodology +1606.08344 Materials Science +1606.08347 Differential Geometry +1606.08348 Phenomenology +1606.08354 Combinatorics +1606.08355 Materials Science +1606.08357 Group Theory +1606.08360 Analysis of PDEs +1606.08362 Data Structures and Algorithms +1606.08363 Populations and Evolution +1606.08364 Strongly Correlated Electrons +1606.08366 Neural and Evolutionary Computing +1606.08367 Information Theory +1606.08369 Classical Analysis and ODEs +1606.08370 Neurons and Cognition +1606.08371 +1606.08372 +1606.08375 +1606.08377 Genomics +1606.08378 Cryptography and Security +1606.08380 Cosmology and Nongalactic Astrophysics +1606.08381 Computational Finance +1606.08383 Combinatorics +1606.08385 Optics +1606.08386 Quantum Gases +1606.08395 Numerical Analysis +1606.08401 Information Theory +1606.08403 +1606.08404 Emerging Technologies +1606.08405 Information Theory +1606.08406 Information Retrieval +1606.08410 Systems and Control +1606.08413 Algebraic Geometry +1606.08414 Algebraic Geometry +1606.08416 Methodology +1606.08422 Systems and Control +1606.08427 Materials Science +1606.08428 Rings and Algebras +math/0601417 Group Theory +math/0610229 Analysis of PDEs +math/0611177 Group Theory +0706.2711 Combinatorics +0711.4897 +0804.0944 Combinatorics +0806.3046 Combinatorics +0811.0888 Rings and Algebras +0907.3965 Computational Complexity +1004.1204 Rings and Algebras +1103.4116 Algebraic Geometry +1105.3445 +1105.3520 +1107.3610 Combinatorics +1110.1998 Differential Geometry +1110.5250 Algebraic Geometry +1205.5544 Symplectic Geometry +1206.4140 Probability +1207.0248 Algebraic Topology +1208.4319 Combinatorics +1208.4968 Experiment +1208.5191 Combinatorics +1209.4956 Combinatorics +1210.3016 Theory +1212.6766 Theory +1302.0865 Combinatorics +1303.1575 Theory +1303.7257 +1304.1224 Combinatorics +1307.2528 Combinatorics +1307.3728 Differential Geometry +1307.4273 Combinatorics +1309.1305 Probability +1309.6500 Earth and Planetary Astrophysics +1312.1581 Differential Geometry +1401.3534 Quantum Algebra +1401.7577 Probability +1402.2570 Combinatorics +1402.4722 Data Structures and Algorithms +1402.4738 Information Theory +1404.7380 Combinatorics +1405.5000 Statistical Finance +1405.7658 Populations and Evolution +1405.7792 Algebraic Geometry +1406.4225 Differential Geometry +1407.1537 Data Structures and Algorithms +1408.5034 Group Theory +1408.5036 Probability +1410.6572 Discrete Mathematics +1410.7143 Social and Information Networks +1411.4270 Probability +1411.5723 Soft Condensed Matter +1412.1695 Rings and Algebras +1412.4876 Classical Analysis and ODEs +1412.5339 Disordered Systems and Neural Networks +1412.6846 Superconductivity +1412.7721 +1501.01624 Atomic Physics +1501.03872 Computational Complexity +1501.03889 Methodology +1502.04351 Probability +1502.06896 Combinatorics +1503.01894 Combinatorics +1503.07444 Computational Geometry +1504.00961 Differential Geometry +1504.01929 Chaotic Dynamics +1504.03086 Optics +1504.04175 Theory +1504.04533 Phenomenology +1504.05067 Analysis of PDEs +1504.06185 Statistics Theory +1504.06834 K-Theory and Homology +1504.07032 Mesoscale and Nanoscale Physics +1504.07520 Dynamical Systems +1505.01601 Strongly Correlated Electrons +1505.01913 Probability +1505.02537 Numerical Analysis +1505.03428 Differential Geometry +1505.04371 Soft Condensed Matter +1505.04465 Group Theory +1505.04639 Analysis of PDEs +1505.06012 Multiagent Systems +1506.00059 Numerical Analysis +1506.00715 Representation Theory +1506.00747 Data Structures and Algorithms +1506.01270 Number Theory +1506.01828 Atomic Physics +1506.04492 Theory +1506.06985 Classical Analysis and ODEs +1506.08964 Analysis of PDEs +1507.00228 Optimization and Control +1507.01186 Fluid Dynamics +1507.03005 Theory +1507.03693 Phenomenology +1507.04815 Soft Condensed Matter +1507.05563 Operator Algebras +1507.06308 +1508.01465 Combinatorics +1508.05607 +1508.06908 Analysis of PDEs +1508.07789 Category Theory +1508.07914 Trading and Market Microstructure +1509.00519 Learning +1509.00546 Analysis of PDEs +1509.02127 Analysis of PDEs +1509.02890 +1509.03268 Combinatorics +1509.06887 Phenomenology +1509.07001 Metric Geometry +1509.07109 Software Engineering +1509.07659 Sound +1510.00174 +1510.00452 Learning +1510.01343 Combinatorics +1510.01349 Combinatorics +1510.02390 +1510.05280 +1510.07888 Economics +1510.08613 Optics +1511.01028 Probability +1511.02084 Functional Analysis +1511.03623 Combinatorics +1511.03687 Optimization and Control +1511.03751 Numerical Analysis +1511.03979 Neural and Evolutionary Computing +1511.04078 Cosmology and Nongalactic Astrophysics +1511.05707 Differential Geometry +1511.05899 Representation Theory +1511.05986 Mathematical Software +1511.06268 Statistics Theory +1511.07342 +1511.07388 Superconductivity +1511.07854 Earth and Planetary Astrophysics +1511.09228 +1511.09232 Number Theory +1511.09280 Dynamical Systems +1512.00188 Disordered Systems and Neural Networks +1512.00218 Statistics Theory +1512.01262 Quantum Algebra +1512.01413 Instrumentation and Methods for Astrophysics +1512.02057 Statistical Mechanics +1512.04215 Complex Variables +1512.04306 Commutative Algebra +1512.04889 Analysis of PDEs +1512.05938 +1512.05991 Representation Theory +1512.05998 Logic +1512.07043 Dynamical Systems +1512.08353 Analysis of PDEs +1601.01380 +1601.01469 Optimization and Control +1601.03095 Data Structures and Algorithms +1601.04725 Astrophysics of Galaxies +1601.05080 Combinatorics +1601.05285 Machine Learning +1601.06561 Theory +1601.07824 Logic +1601.08110 Algebraic Geometry +1602.00825 +1602.00827 Dynamical Systems +1602.01033 Combinatorics +1602.01517 Computer Vision and Pattern Recognition +1602.01529 Differential Geometry +1602.01716 Optimization and Control +1602.01772 +1602.03497 High Energy Astrophysical Phenomena +1602.03622 +1602.04626 Numerical Analysis +1602.04655 +1602.04809 Analysis of PDEs +1602.06712 Geophysics +1602.07360 Computer Vision and Pattern Recognition +1602.07558 Numerical Analysis +1602.08323 Neural and Evolutionary Computing +1602.08821 Symplectic Geometry +1602.08927 Machine Learning +1602.09043 High Energy Astrophysical Phenomena +1603.00239 Probability +1603.00971 Superconductivity +1603.01847 Materials Science +1603.03538 Mathematical Finance +1603.03751 Mesoscale and Nanoscale Physics +1603.03940 Dynamical Systems +1603.04441 Cosmology and Nongalactic Astrophysics +1603.04633 Soft Condensed Matter +1603.04775 +1603.05536 Probability +1603.06368 Cosmology and Nongalactic Astrophysics +1603.06521 Mesoscale and Nanoscale Physics +1603.07012 Computation and Language +1603.07833 High Energy Astrophysical Phenomena +1603.09586 Optimization and Control +1604.00892 Dynamical Systems +1604.00909 Optics +1604.01756 Fluid Dynamics +1604.02050 Strongly Correlated Electrons +1604.02633 Strongly Correlated Electrons +1604.02832 Systems and Control +1604.02973 Theory +1604.04883 Populations and Evolution +1604.05354 Statistical Mechanics +1604.05922 Logic +1604.06316 Representation Theory +1604.06728 Combinatorics +1604.08412 +1604.08453 Complex Variables +1604.08564 Phenomenology +1604.08614 Cosmology and Nongalactic Astrophysics +1604.08639 Commutative Algebra +1604.08896 Group Theory +1605.00806 +1605.00929 Algebraic Geometry +1605.01657 Mesoscale and Nanoscale Physics +1605.01733 Phenomenology +1605.02035 +1605.02293 Complex Variables +1605.02343 Representation Theory +1605.02712 Mesoscale and Nanoscale Physics +1605.03429 +1605.03879 Theory +1605.03965 Cosmology and Nongalactic Astrophysics +1605.04152 Strongly Correlated Electrons +1605.04230 Analysis of PDEs +1605.04821 Numerical Analysis +1605.05209 Classical Physics +1605.05274 Programming Languages +1605.06348 Probability +1605.06438 Numerical Analysis +1605.06640 Neural and Evolutionary Computing +1605.07139 Learning +1605.07327 Lattice +1605.07589 Plasma Physics +1605.07689 Machine Learning +1605.07725 Machine Learning +1605.07865 Databases +1605.07880 Analysis of PDEs +1605.08128 Solar and Stellar Astrophysics +1605.08471 Earth and Planetary Astrophysics +1605.09180 Earth and Planetary Astrophysics +1605.09525 Optics +1605.09783 +1606.00077 +1606.00491 Optimization and Control +1606.00544 Mesoscale and Nanoscale Physics +1606.00645 Number Theory +1606.00672 Cosmology and Nongalactic Astrophysics +1606.01286 Computer Vision and Pattern Recognition +1606.01392 Biological Physics +1606.01865 Learning +1606.02206 Machine Learning +1606.02519 Biological Physics +1606.02719 Cosmology and Nongalactic Astrophysics +1606.02740 Physics and Society +1606.03694 +1606.03985 Strongly Correlated Electrons +1606.04285 Computational Finance +1606.04562 Cosmology and Nongalactic Astrophysics +1606.04634 +1606.04696 Data Structures and Algorithms +1606.05201 Machine Learning +1606.05525 Combinatorics +1606.05676 Classical Physics +1606.06842 Genomics +1606.07007 +1606.07493 Computation and Language +1606.08056 +1606.08064 Instrumentation and Detectors +1606.08185 Theory +1606.08424 Chemical Physics +1606.09170 Strongly Correlated Electrons +1607.00609 Probability +1607.02182 Probability +1607.02400 High Energy Astrophysical Phenomena +1607.02549 Systems and Control +1607.03066 Category Theory +1607.03455 Programming Languages +1607.03820 +1607.03956 Mesoscale and Nanoscale Physics +1607.04070 +1607.04265 Theory +1607.04599 +1607.04807 Other Statistics +1607.05127 Data Structures and Algorithms +1607.05132 Data Structures and Algorithms +1607.05160 +1607.05239 Geometric Topology +1607.05281 Astrophysics of Galaxies +1607.05994 Data Structures and Algorithms +1607.06095 +1607.06251 Neurons and Cognition +1607.06262 Cosmology and Nongalactic Astrophysics +1607.07736 Quantum Gases +1607.08154 Soft Condensed Matter +1607.08311 Information Theory +1607.08371 Robotics +1607.08449 Computational Geometry +1607.08498 Optimization and Control +1607.08649 Differential Geometry +1608.00029 Strongly Correlated Electrons +1608.00343 Theory +1608.00815 General Physics +1608.00914 Representation Theory +1608.01247 Information Retrieval +1608.01520 History and Philosophy of Physics +1608.01654 Programming Languages +1608.02311 Phenomenology +1608.02868 Quantum Gases +1608.02976 Biomolecules +1608.03086 Experiment +1608.03163 Differential Geometry +1608.03972 Theory +1608.03990 Computational Engineering, Finance, and Science +1608.04384 Solar and Stellar Astrophysics +1608.04865 Mesoscale and Nanoscale Physics +1608.05484 +1608.06228 +1608.06333 Materials Science +1608.07201 +1608.07267 Instrumentation and Detectors +1608.07756 Quantum Gases +1608.07905 Computation and Language +1608.08532 General Physics +1609.00356 +1609.01274 Pricing of Securities +1609.01491 Software Engineering +1609.01528 Analysis of PDEs +1609.01621 Mathematical Finance +1609.02373 Plasma Physics +1609.02465 +1609.02998 Plasma Physics +1609.03005 +1609.03235 Phenomenology +1609.03243 Geophysics +1609.03334 Lattice +1609.03835 +1609.04175 Atomic Physics +1609.04220 Computational Physics +1609.04382 Computer Vision and Pattern Recognition +1609.04910 Probability +1609.05146 Analysis of PDEs +1609.05404 Optimization and Control +1609.06302 Multimedia +1609.07021 +1609.07337 Analysis of PDEs +1609.07859 Computer Vision and Pattern Recognition +1609.08360 +1609.08541 Lattice +1609.09583 Strongly Correlated Electrons +1609.09670 Representation Theory +1609.09840 Data Structures and Algorithms +1610.00127 Cryptography and Security +1610.00287 Methodology +1610.00327 Computer Science and Game Theory +1610.00426 Phenomenology +1610.00489 Quantum Gases +1610.00646 +1610.01145 Learning +1610.01222 Materials Science +1610.01275 Algebraic Geometry +1610.01408 Differential Geometry +1610.01587 Social and Information Networks +1610.02553 Probability +1610.02592 Geometric Topology +1610.02734 Dynamical Systems +1610.02975 Representation Theory +1610.02991 Computers and Society +1610.03016 Numerical Analysis +1610.03259 Risk Management +1610.03379 Functional Analysis +1610.03661 +1610.04033 Geometric Topology +1610.04101 Probability +1610.04619 Strongly Correlated Electrons +1610.04900 Learning +1610.05237 Phenomenology +1610.05638 Theory +1610.05753 +1610.06158 Phenomenology +1610.06653 Soft Condensed Matter +1610.06680 Analysis of PDEs +1610.06940 Artificial Intelligence +1610.07059 Phenomenology +1610.07101 Probability +1610.07278 Quantitative Methods +1610.07414 Superconductivity +1610.07512 Materials Science +1610.07660 Classical Analysis and ODEs +1610.07876 General Physics +1610.08173 Information Theory +1610.08243 Chemical Physics +1610.08255 Rings and Algebras +1610.08345 Classical Analysis and ODEs +1610.08564 +1610.08722 Social and Information Networks +1610.08795 Methodology +1610.09077 Information Retrieval +1610.09325 Fluid Dynamics +1610.09337 Mesoscale and Nanoscale Physics +1610.09403 Trading and Market Microstructure +1610.09423 Genomics +1610.09432 Optimization and Control +1610.09536 Subcellular Processes +1610.09620 Differential Geometry +1610.09638 Information Theory +1610.09675 Dynamical Systems +1610.09751 Probability +1610.10052 Complex Variables +1610.10075 Strongly Correlated Electrons +1611.00074 Differential Geometry +1611.00172 Social and Information Networks +1611.00177 Commutative Algebra +1611.00256 Combinatorics +1611.00294 Neurons and Cognition +1611.00333 Analysis of PDEs +1611.00344 Lattice +1611.00481 Learning +1611.00736 Neural and Evolutionary Computing +1611.00918 Data Structures and Algorithms +1611.00980 Optimization and Control +1611.00999 Cosmology and Nongalactic Astrophysics +1611.01029 Computational Complexity +1611.01048 Probability +1611.01114 Genomics +1611.01119 Statistics Theory +1611.01125 Statistics Theory +1611.01132 Complex Variables +1611.01152 Human-Computer Interaction +1611.01163 Quantum Gases +1611.01189 +1611.01277 Experiment +1611.01318 Numerical Analysis +1611.01511 Machine Learning +1611.01512 Strongly Correlated Electrons +1611.01513 Astrophysics of Galaxies +1611.01517 Phenomenology +1611.01520 Superconductivity +1611.01523 Discrete Mathematics +1611.01524 Portfolio Management +1611.01525 Information Theory +1611.01527 Phenomenology +1611.01528 Theory +1611.01529 Networking and Internet Architecture +1611.01530 Probability +1611.01532 Superconductivity +1611.01534 Mathematical Software +1611.01535 Applications +1611.01536 Lattice +1611.01537 Mesoscale and Nanoscale Physics +1611.01542 Combinatorics +1611.01543 Functional Analysis +1611.01544 Phenomenology +1611.01545 Cosmology and Nongalactic Astrophysics +1611.01546 Databases +1611.01549 Human-Computer Interaction +1611.01550 Numerical Analysis +1611.01551 Differential Geometry +1611.01554 Differential Geometry +1611.01555 Mesoscale and Nanoscale Physics +1611.01558 Optimization and Control +1611.01559 Combinatorics +1611.01561 Probability +1611.01562 Rings and Algebras +1611.01563 Analysis of PDEs +1611.01564 Statistics Theory +1611.01565 Probability +1611.01567 Optics +1611.01568 Disordered Systems and Neural Networks +1611.01569 Data Structures and Algorithms +1611.01570 Combinatorics +1611.01573 Dynamical Systems +1611.01575 +1611.01579 Information Theory +1611.01581 Algebraic Geometry +1611.01582 Information Theory +1611.01585 Discrete Mathematics +1611.01586 Learning +1611.01591 Algebraic Geometry +1611.01593 Functional Analysis +1611.01595 Statistics Theory +1611.01597 Numerical Analysis +1611.01598 Distributed, Parallel, and Cluster Computing +1611.01601 Theory +1611.01605 Metric Geometry +1611.01606 Learning +1611.01607 Information Theory +1611.01609 Combinatorics +1611.01614 +1611.01615 Metric Geometry +1611.01616 Solar and Stellar Astrophysics +1611.01618 Combinatorics +1611.01621 Number Theory +1611.01622 Optics +1611.01624 Analysis of PDEs +1611.01625 Algebraic Geometry +1611.01627 Analysis of PDEs +1611.01630 Functional Analysis +1611.01631 Functional Analysis +1611.01632 Operator Algebras +1611.01633 Operator Algebras +1611.01634 Group Theory +1611.01636 Algebraic Geometry +1611.01640 Computer Vision and Pattern Recognition +1611.01641 Dynamical Systems +1611.01642 Computer Vision and Pattern Recognition +1611.01643 Neurons and Cognition +1611.01644 Data Structures and Algorithms +1611.01646 Computer Vision and Pattern Recognition +1611.01648 Logic +1611.01650 Cosmology and Nongalactic Astrophysics +1611.01651 Dynamical Systems +1611.01652 Neural and Evolutionary Computing +1611.01654 Category Theory +1611.01657 Combinatorics +1611.01658 Digital Libraries +1611.01659 Data Analysis, Statistics and Probability +1611.01660 Fluid Dynamics +1611.01661 Computational Geometry +1611.01662 Astrophysics of Galaxies +1611.01663 Analysis of PDEs +1611.01664 +1611.01665 Differential Geometry +1611.01668 Geometric Topology +1611.01669 Algebraic Geometry +1611.01674 Algebraic Geometry +1611.01675 Methodology +1611.01677 Materials Science +1611.01678 Learning +1611.01679 Atomic Physics +1611.01681 Probability +1611.01683 Cryptography and Security +1611.01684 Solar and Stellar Astrophysics +1611.01686 Probability +1611.01688 Learning +1611.01690 Distributed, Parallel, and Cluster Computing +1611.01691 Quantum Gases +1611.01692 Genomics +1611.01695 Geophysics +1611.01696 Logic in Computer Science +1611.01698 Information Theory +1611.01706 Computational Complexity +1611.01707 Differential Geometry +1611.01709 Astrophysics of Galaxies +1611.01711 Databases +1611.01714 Learning +1611.01717 Earth and Planetary Astrophysics +1611.01718 Number Theory +1611.01719 Materials Science +1611.01720 Number Theory +1611.01723 Probability +1611.01724 Computation and Language +1611.01726 Cryptography and Security +1611.01728 +1611.01729 Networking and Internet Architecture +1611.01730 Computer Vision and Pattern Recognition +1611.01731 Computer Vision and Pattern Recognition +1611.01733 High Energy Astrophysical Phenomena +1611.01735 Combinatorics +1611.01736 Representation Theory +1611.01737 Superconductivity +1611.01741 Group Theory +1611.01745 +1611.01747 Computation and Language +1611.01751 Computer Vision and Pattern Recognition +1611.01752 Programming Languages +1611.01754 Cryptography and Security +1611.01755 Combinatorics +1611.01758 Theory +1611.01761 Systems and Control +1611.01763 Analysis of PDEs +1611.01765 Graphics +1611.01766 Astrophysics of Galaxies +1611.01767 Economics +1611.01768 +1611.01769 Data Structures and Algorithms +1611.01771 Economics +1611.01774 Biological Physics +1611.01776 Materials Science +1611.01777 +1611.01778 Data Structures and Algorithms +1611.01782 Probability +1611.01783 Computation and Language +1611.01784 Representation Theory +1611.01786 Information Theory +1611.01789 +1611.01792 Chemical Physics +1611.01793 Pattern Formation and Solitons +1611.01794 Instrumentation and Detectors +1611.01796 Learning +1611.01797 +1611.01799 Learning +1611.01800 Differential Geometry +1611.01801 Other Computer Science +1611.01804 Algebraic Geometry +1611.01805 Data Structures and Algorithms +1611.01807 Geometric Topology +1611.01808 Differential Geometry +1611.01809 Algebraic Geometry +1611.01810 Theory +1611.01813 +1611.01814 Optics +1611.01815 +1611.01817 Human-Computer Interaction +1611.01818 Combinatorics +1611.01820 Digital Libraries +1611.01821 Representation Theory +1611.01825 Systems and Control +1611.01826 Instrumentation and Methods for Astrophysics +1611.01827 Systems and Control +1611.01828 Optimization and Control +1611.01829 Functional Analysis +1611.01830 Functional Analysis +1611.01831 Applications +1611.01833 Probability +1611.01835 Data Structures and Algorithms +1611.01836 Populations and Evolution +1611.01837 Probability +1611.01841 Algebraic Geometry +1611.01842 Populations and Evolution +1611.01844 Astrophysics of Galaxies +1611.01845 Machine Learning +1611.01849 Physics and Society +1611.01851 Robotics +1611.01853 Databases +1611.01855 Artificial Intelligence +1611.01857 Geometric Topology +1611.01860 Probability +1611.01863 High Energy Astrophysical Phenomena +1611.01865 Information Theory +1611.01866 Formal Languages and Automata Theory +1611.01867 Computation and Language +1611.01868 Computation and Language +1611.01869 Information Theory +1611.01870 Phenomenology +1611.01872 Computer Vision and Pattern Recognition +1611.01875 Learning +1611.01877 Differential Geometry +1611.01878 Atomic Physics +1611.01887 Information Theory +1611.01888 Theory +1611.01889 Space Physics +1611.01891 Machine Learning +1611.01894 Other Condensed Matter +1611.01895 Optics +1611.01896 Complex Variables +1611.01897 Chemical Physics +1611.01902 Differential Geometry +1611.01904 Combinatorics +1611.01905 Classical Analysis and ODEs +1611.01907 Cryptography and Security +1611.01908 Analysis of PDEs +1611.01909 Analysis of PDEs +1611.01912 Neurons and Cognition +1611.01913 +1611.01915 Commutative Algebra +1611.01916 Chemical Physics +1611.01919 Databases +1611.01920 Algebraic Topology +1611.01921 Number Theory +1611.01924 Algebraic Geometry +1611.01925 Phenomenology +1611.01926 Rings and Algebras +1611.01930 Differential Geometry +1611.01931 Algebraic Geometry +1611.01936 Combinatorics +1611.01937 Rings and Algebras +1611.01939 Information Theory +1611.01940 Commutative Algebra +1611.01941 Combinatorics +1611.01942 Learning +1611.01943 Statistical Mechanics +1611.01945 History and Overview +1611.01949 Number Theory +1611.01952 Atomic Physics +1611.01956 Soft Condensed Matter +1611.01959 +1611.01961 Astrophysics of Galaxies +1611.01962 Computer Vision and Pattern Recognition +1611.01963 Fluid Dynamics +1611.01964 Learning +1611.01966 Algebraic Geometry +1611.01969 Information Theory +1611.01972 Computer Vision and Pattern Recognition +1611.01977 Analysis of PDEs +1611.01979 +1611.01980 Soft Condensed Matter +1611.01981 Strongly Correlated Electrons +1611.01984 Analysis of PDEs +1611.01985 Distributed, Parallel, and Cluster Computing +1611.01987 Lattice +1611.01990 Graphics +1611.01991 Soft Condensed Matter +1611.01992 Quantum Algebra +1611.01993 Statistical Mechanics +1611.01995 Atomic Physics +1611.01996 Differential Geometry +1611.01997 Analysis of PDEs +1611.01998 Mesoscale and Nanoscale Physics +1611.01999 Number Theory +1611.02000 High Energy Astrophysical Phenomena +1611.02001 Networking and Internet Architecture +1611.02002 Discrete Mathematics +1611.02003 Dynamical Systems +1611.02005 Probability +1611.02006 Atomic Physics +1611.02007 Computation and Language +1611.02008 Probability +1611.02009 Lattice +1611.02010 Machine Learning +1611.02011 Dynamical Systems +1611.02012 Combinatorics +1611.02014 Dynamical Systems +1611.02015 Cryptography and Security +1611.02018 Spectral Theory +1611.02019 Learning +1611.02020 Dynamical Systems +1611.02021 Combinatorics +1611.02022 Lattice +1611.02023 Analysis of PDEs +1611.02025 Computation and Language +1611.02026 Pricing of Securities +1611.02027 Computation and Language +1611.02028 Strongly Correlated Electrons +1611.02030 Cosmology and Nongalactic Astrophysics +1611.02031 Medical Physics +1611.02034 Representation Theory +1611.02037 Mesoscale and Nanoscale Physics +1611.02040 Differential Geometry +1611.02042 Combinatorics +1611.02044 Geophysics +1611.02045 Numerical Analysis +1611.02047 Learning +1611.02048 Probability +1611.02049 Robotics +1611.02052 Systems and Control +1611.02053 Learning +1611.02054 Robotics +1611.02056 Analysis of PDEs +1611.02058 Analysis of PDEs +1611.02060 Algebraic Geometry +1611.02061 Robotics +1611.02062 Information Theory +1611.02063 Discrete Mathematics +1611.02067 Differential Geometry +1611.02068 Numerical Analysis +1611.02069 Quantum Algebra +1611.02070 Representation Theory +1611.02071 Systems and Control +1611.02072 Systems and Control +1611.02075 Statistical Mechanics +1611.02078 Lattice +1611.02080 Mesoscale and Nanoscale Physics +1611.02081 Quantum Gases +1611.02082 Number Theory +1611.02084 Dynamical Systems +1611.02087 Algebraic Geometry +1611.02088 Computational Physics +1611.02089 Differential Geometry +1611.02092 Algebraic Geometry +1611.02095 Differential Geometry +1611.02098 High Energy Astrophysical Phenomena +1611.02100 Theory +1611.02103 High Energy Astrophysical Phenomena +1611.02111 Number Theory +1611.02113 Cosmology and Nongalactic Astrophysics +1611.02114 Computational Physics +1611.02117 Networking and Internet Architecture +1611.02118 Computers and Society +1611.02119 Information Retrieval +1611.02120 Neural and Evolutionary Computing +1611.02121 Superconductivity +1611.02123 Soft Condensed Matter +1611.02124 +1611.02125 Analysis of PDEs +1611.02126 Artificial Intelligence +1611.02128 Algebraic Geometry +1611.02129 Chemical Physics +1611.02133 Functional Analysis +1611.02134 Superconductivity +1611.02135 +1611.02139 Cosmology and Nongalactic Astrophysics +1611.02140 Soft Condensed Matter +1611.02142 Combinatorics +1611.02143 Fluid Dynamics +1611.02144 Mesoscale and Nanoscale Physics +1611.02145 Computer Vision and Pattern Recognition +1611.02147 Graphics +1611.02148 Chemical Physics +1611.02153 Instrumentation and Detectors +1611.02154 Artificial Intelligence +1611.02155 Computer Vision and Pattern Recognition +1611.02156 +1611.02157 Statistical Mechanics +1611.02159 Instrumentation and Detectors +1611.02160 Probability +1611.02161 Solar and Stellar Astrophysics +1611.02164 Numerical Analysis +1611.02165 Probability +1611.02169 Mesoscale and Nanoscale Physics +1611.02171 Atomic and Molecular Clusters +1611.02173 Superconductivity +1611.02174 Computer Vision and Pattern Recognition +1611.02175 Solar and Stellar Astrophysics +1611.02176 +1611.02177 Systems and Control +1611.02178 Statistical Mechanics +1611.02181 Machine Learning +1611.02184 +1611.02188 Functional Analysis +1611.02189 Learning +1611.02192 Phenomenology +1611.02194 Analysis of PDEs +1611.02196 Earth and Planetary Astrophysics +1611.02198 Quantum Gases +1611.02199 Methodology +1611.02200 Computer Vision and Pattern Recognition +1611.02202 Computational Physics +1611.02203 Mesoscale and Nanoscale Physics +1611.02204 Logic +1611.02206 +1611.02207 Fluid Dynamics +1611.02208 Probability +1611.02209 Operator Algebras +1611.02210 Algebraic Geometry +1611.02211 Category Theory +1611.02212 Superconductivity +1611.02213 Computation +1611.02214 Differential Geometry +1611.02215 +1611.02216 Combinatorics +1611.02217 Number Theory +1611.02218 Metric Geometry +1611.02219 Numerical Analysis +1611.02220 Mesoscale and Nanoscale Physics +1611.02222 Mesoscale and Nanoscale Physics +1611.02224 Experiment +1611.02231 Combinatorics +1611.02233 Combinatorics +1611.02235 Exactly Solvable and Integrable Systems +1611.02240 +1611.02241 Methodology +1611.02242 Materials Science +1611.02246 Combinatorics +1611.02248 Exactly Solvable and Integrable Systems +1611.02249 Category Theory +1611.02251 Analysis of PDEs +1611.02252 Learning +1611.02253 +1611.02255 +1611.02256 Computational Engineering, Finance, and Science +1611.02257 Information Theory +1611.02259 Optics +1611.02260 Computer Vision and Pattern Recognition +1611.02263 +1611.02268 Learning +1611.02270 Economics +alg-geom/9703001 Algebraic Geometry +alg-geom/9709034 Algebraic Geometry +math/0002073 Combinatorics +math/0103181 Combinatorics +math/0106255 Combinatorics +math/0107155 Combinatorics +math/0109147 Combinatorics +math/0111246 Combinatorics +math/0202071 Combinatorics +math/0302278 Combinatorics +math/0304191 Combinatorics +math/0310016 Combinatorics +math/0502082 Combinatorics +math/0505612 Commutative Algebra +math/0505614 Representation Theory +math/0509265 Combinatorics +math/0612170 Rings and Algebras +math/9712256 Combinatorics +math/9712258 Combinatorics +math/9809126 Combinatorics +math/9810025 Combinatorics +math/9904105 Combinatorics +q-alg/9612012 Quantum Algebra +0806.2350 Probability +0809.2207 Optics +0809.3267 Optics +0810.0550 +0810.0592 Optics +0810.3113 Materials Science +0812.1001 Optics +0904.2679 Optics +0906.4608 Optics +0907.1870 Optics +0907.2217 +0910.2670 Optics +0910.5345 Strongly Correlated Electrons +0910.5716 Optics +0911.0636 Optics +1001.3298 High Energy Astrophysical Phenomena +1001.3889 +1001.3904 Optics +1004.0037 +1004.2340 Optics +1004.2405 Optics +1004.2549 Optics +1004.5305 Optics +1005.1470 Optics +1005.3520 Pattern Formation and Solitons +1005.4474 High Energy Astrophysical Phenomena +1007.1142 High Energy Astrophysical Phenomena +1007.5375 +1008.0896 Optics +1010.6287 +1012.1431 Optics +1012.1487 +1103.2842 Optics +1104.2430 Optics +1105.4020 Optics +1106.3024 +1108.4819 Optics +1109.1899 Optics +1109.4796 +1109.5895 Algebraic Geometry +1110.1707 Optics +1112.5175 Optics +1202.1052 Pattern Formation and Solitons +1204.2283 Optics +1204.4772 Optics +1207.0683 Optics +1208.4123 +1209.4823 Optics +1210.1009 +1210.1149 Fluid Dynamics +1210.5250 Optics +1212.6293 Mesoscale and Nanoscale Physics +1301.3515 Optics +1302.1918 +1302.5927 Optics +1302.6708 Combinatorics +1303.0544 Optics +1303.2127 Optics +1303.5028 Optics +1303.6205 Optics +1303.7174 Atomic Physics +1304.0097 Optics +1304.1031 Optics +1304.3469 Optics +1304.3511 +1304.4442 Optics +1304.7513 Pattern Formation and Solitons +1304.7999 Combinatorics +1305.2511 Optics +1305.3706 Information Theory +1305.4921 Optics +1305.5167 Pattern Formation and Solitons +1305.6460 +1305.7142 Phenomenology +1307.2311 Optics +1307.4246 Algebraic Geometry +1308.2117 Optics +1308.3653 Phenomenology +1308.6644 Optics +1309.3361 Geometric Topology +1309.5179 Biological Physics +1309.7563 Medical Physics +1310.1727 Optics +1310.7055 Probability +1311.2298 Combinatorics +1311.3064 Social and Information Networks +1402.4278 Dynamical Systems +1402.4721 Number Theory +1402.5122 Representation Theory +1402.5400 Combinatorics +1404.0339 Discrete Mathematics +1404.5132 Mesoscale and Nanoscale Physics +1404.5432 Discrete Mathematics +1404.6647 Probability +1404.7720 Mesoscale and Nanoscale Physics +1404.7730 +1405.5037 Atomic Physics +1406.3592 Quantum Gases +1406.5553 Probability +1407.6121 Atomic Physics +1408.0199 Theory +1408.0221 History and Philosophy of Physics +1408.3156 Phenomenology +1408.3921 Algebraic Topology +1408.5665 Phenomenology +1409.0393 Programming Languages +1409.0992 +1409.6909 Dynamical Systems +1410.5096 Commutative Algebra +1410.5691 Quantum Gases +1410.8479 Optimization and Control +1411.4397 +1411.6071 Group Theory +1411.6716 Statistics Theory +1411.7036 Quantum Gases +1412.0577 Atomic Physics +1412.1646 +1412.2717 Optics +1412.5271 +1412.7776 Optics +1501.01738 Analysis of PDEs +1501.06995 Soft Condensed Matter +1501.07404 Computational Finance +1501.07515 Group Theory +1501.07715 Mesoscale and Nanoscale Physics +1502.00331 Statistical Mechanics +1502.00805 Atmospheric and Oceanic Physics +1502.01492 Optics +1502.01841 Theory +1502.01879 Optics +1502.03226 Materials Science +1502.03733 Numerical Analysis +1502.06083 Optics +1502.06116 High Energy Astrophysical Phenomena +1502.06546 Algebraic Geometry +1502.06705 Solar and Stellar Astrophysics +1502.07329 Algebraic Geometry +1502.07623 Algebraic Geometry +1502.07722 Optics +1502.07899 Probability +1503.00057 Optics +1503.02716 Analysis of PDEs +1503.03609 Optics +1503.04243 Algebraic Geometry +1503.04551 Chaotic Dynamics +1503.04735 +1503.07164 Astrophysics of Galaxies +1503.07314 Algebraic Topology +1503.08654 Optics +1504.00106 Theory +1504.01609 Numerical Analysis +1504.01905 Algebraic Geometry +1504.02038 Optics +1505.00488 +1505.01034 Optimization and Control +1505.01076 Cosmology and Nongalactic Astrophysics +1505.01463 +1505.01812 Number Theory +1505.02660 Optics +1505.03011 Statistical Mechanics +1505.03071 Solar and Stellar Astrophysics +1505.03704 Earth and Planetary Astrophysics +1505.03903 +1505.05404 Information Theory +1505.06618 +1505.07871 Theory +1506.00507 Classical Analysis and ODEs +1506.00858 Artificial Intelligence +1506.01288 Analysis of PDEs +1506.02398 Phenomenology +1506.02885 Astrophysics of Galaxies +1506.03348 Optics +1506.03502 Quantum Gases +1506.03794 Fluid Dynamics +1506.04185 Instrumentation and Detectors +1506.05130 Phenomenology +1506.06280 Materials Science +1506.08257 Algebraic Geometry +1506.08741 Differential Geometry +1507.01997 Instrumentation and Detectors +1507.02558 Computer Vision and Pattern Recognition +1507.03088 Soft Condensed Matter +1507.04468 Statistical Mechanics +1507.04636 Algebraic Geometry +1507.05050 Populations and Evolution +1507.05303 Representation Theory +1507.05393 Algebraic Geometry +1507.05417 Solar and Stellar Astrophysics +1507.06399 Quantum Gases +1507.06624 Lattice +1507.06751 Atomic Physics +1507.06797 +1507.06825 Atomic Physics +1507.07005 Theory +1507.08731 Superconductivity +1507.08732 Superconductivity +1508.00436 Methodology +1508.00825 Superconductivity +1508.01390 Astrophysics of Galaxies +1508.01744 Materials Science +1508.02309 Subcellular Processes +1508.02654 Cosmology and Nongalactic Astrophysics +1508.03214 +1508.03608 High Energy Astrophysical Phenomena +1508.03786 Cosmology and Nongalactic Astrophysics +1508.04620 Combinatorics +1508.05129 Atomic Physics +1508.05354 Instrumentation and Methods for Astrophysics +1508.05675 Phenomenology +1508.06907 Statistical Mechanics +1508.06978 +1508.07940 Algebraic Geometry +1509.00265 +1509.00678 Soft Condensed Matter +1509.01987 Information Theory +1509.02033 Mesoscale and Nanoscale Physics +1509.02942 Theory +1509.03673 Strongly Correlated Electrons +1509.04060 Phenomenology +1509.04095 Quantum Gases +1509.04480 +1509.05049 Phenomenology +1509.05130 Quantum Gases +1509.06340 Theory +1509.06940 Experiment +1509.06977 Analysis of PDEs +1509.07527 Probability +1509.07546 Solar and Stellar Astrophysics +1509.07938 Phenomenology +1509.08072 Theory +1509.08522 High Energy Astrophysical Phenomena +1509.08943 Statistical Mechanics +1509.09132 Physics and Society +1510.00007 +1510.00085 +1510.01469 +1510.01664 Experiment +1510.01759 +1510.01977 Logic +1510.02024 Solar and Stellar Astrophysics +1510.02964 Algebraic Geometry +1510.03249 Optimization and Control +1510.03330 Strongly Correlated Electrons +1510.03443 Phenomenology +1510.03904 +1510.04022 +1510.04688 Phenomenology +1510.04699 +1510.04704 Strongly Correlated Electrons +1510.05251 Mesoscale and Nanoscale Physics +1510.05686 Other Condensed Matter +1510.05691 Theory +1510.05770 Classical Analysis and ODEs +1510.05823 Lattice +1510.06417 +1510.06477 Mesoscale and Nanoscale Physics +1510.06551 Mesoscale and Nanoscale Physics +1510.06820 +1510.07039 Theory +1510.07574 Instrumentation and Methods for Astrophysics +1510.07632 Astrophysics of Galaxies +1510.07650 Theory +1510.08096 Strongly Correlated Electrons +1510.08161 Pricing of Securities +1510.08670 Differential Geometry +1510.08799 Instrumentation and Detectors +1510.08969 Logic +1511.00902 Theory +1511.01338 General Physics +1511.01760 Mesoscale and Nanoscale Physics +1511.01827 Phenomenology +1511.01900 Phenomenology +1511.02169 +1511.02257 Instrumentation and Detectors +1511.02797 Phenomenology +1511.03240 Computer Vision and Pattern Recognition +1511.03548 Phenomenology +1511.03657 +1511.03994 Solar and Stellar Astrophysics +1511.04081 Phenomenology +1511.04196 Computer Vision and Pattern Recognition +1511.04294 Lattice +1511.04678 Probability +1511.04937 Number Theory +1511.05197 Computer Vision and Pattern Recognition +1511.05282 Mesoscale and Nanoscale Physics +1511.05901 Statistical Mechanics +1511.05923 Phenomenology +1511.05967 Phenomenology +1511.06062 Computer Vision and Pattern Recognition +1511.06065 Robotics +1511.06088 Statistical Mechanics +1511.06234 +1511.06347 Phenomenology +1511.06358 Theory +1511.06466 Phenomenology +1511.06583 Solar and Stellar Astrophysics +1511.07277 +1511.07380 Phenomenology +1511.07700 Solar and Stellar Astrophysics +1511.07752 Instrumentation and Detectors +1511.08060 Computers and Society +1511.08315 Mesoscale and Nanoscale Physics +1511.08339 Earth and Planetary Astrophysics +1511.08461 Phenomenology +1511.08716 Superconductivity +1511.08978 Mesoscale and Nanoscale Physics +1511.08989 Mesoscale and Nanoscale Physics +1511.09144 Disordered Systems and Neural Networks +1511.09268 +1512.00059 +1512.00089 Statistical Mechanics +1512.00168 Distributed, Parallel, and Cluster Computing +1512.00270 Instrumentation and Methods for Astrophysics +1512.01254 Lattice +1512.01740 Mesoscale and Nanoscale Physics +1512.01838 +1512.01929 Statistical Mechanics +1512.02198 +1512.02210 Phenomenology +1512.02226 Phenomenology +1512.02767 Computer Vision and Pattern Recognition +1512.03111 +1512.03249 Mesoscale and Nanoscale Physics +1512.03321 Solar and Stellar Astrophysics +1512.03413 Mesoscale and Nanoscale Physics +1512.03530 Astrophysics of Galaxies +1512.03684 +1512.04083 Category Theory +1512.04108 Computational Geometry +1512.04130 Mesoscale and Nanoscale Physics +1512.04705 Strongly Correlated Electrons +1512.04816 Cosmology and Nongalactic Astrophysics +1512.04877 Statistical Mechanics +1512.04966 High Energy Astrophysical Phenomena +1512.05357 Phenomenology +1512.05615 Fluid Dynamics +1512.05763 Mesoscale and Nanoscale Physics +1512.05847 Strongly Correlated Electrons +1512.05856 Mesoscale and Nanoscale Physics +1512.06057 Mesoscale and Nanoscale Physics +1512.06405 Theory +1512.06569 Theory +1512.06594 Phenomenology +1512.06666 Phenomenology +1512.06671 Phenomenology +1512.06716 Quantum Gases +1512.06746 Lattice +1512.06927 Learning +1512.06974 Computer Vision and Pattern Recognition +1512.07096 Solar and Stellar Astrophysics +1512.07185 Differential Geometry +1512.07218 Materials Science +1512.07228 High Energy Astrophysical Phenomena +1512.07261 Strongly Correlated Electrons +1512.07281 Social and Information Networks +1512.07453 +1512.07554 Theory +1512.07624 Phenomenology +1512.07835 +1512.08340 Soft Condensed Matter +1512.08450 Mesoscale and Nanoscale Physics +1512.08513 High Energy Astrophysical Phenomena +1512.09021 Theory +1512.09296 Algebraic Geometry +1601.00001 Mesoscale and Nanoscale Physics +1601.00553 Rings and Algebras +1601.00761 Plasma Physics +1601.00952 Phenomenology +1601.01353 Earth and Planetary Astrophysics +1601.01384 +1601.01574 Phenomenology +1601.01662 +1601.01777 Superconductivity +1601.02063 High Energy Astrophysical Phenomena +1601.03371 Instrumentation and Detectors +1601.03752 Number Theory +1601.04212 +1601.04226 Astrophysics of Galaxies +1601.04390 Solar and Stellar Astrophysics +1601.04617 Solar and Stellar Astrophysics +1601.04651 Materials Science +1601.05021 Theory +1601.05397 Solar and Stellar Astrophysics +1601.05729 Phenomenology +1601.05771 Phenomenology +1601.06067 Atomic Physics +1601.06074 High Energy Astrophysical Phenomena +1601.06154 Mesoscale and Nanoscale Physics +1601.06506 +1601.06543 Analysis of PDEs +1601.06686 Information Theory +1601.06727 +1601.06748 Networking and Internet Architecture +1601.07155 Lattice +1601.07535 Earth and Planetary Astrophysics +1601.07567 Astrophysics of Galaxies +1601.07762 Solar and Stellar Astrophysics +1601.07782 Phenomenology +1601.07922 +1601.08048 Soft Condensed Matter +1602.00088 Statistical Mechanics +1602.00134 Computer Vision and Pattern Recognition +1602.00235 Mathematical Finance +1602.00292 Earth and Planetary Astrophysics +1602.00485 +1602.00504 +1602.00533 High Energy Astrophysical Phenomena +1602.00601 Statistical Mechanics +1602.00887 Solar and Stellar Astrophysics +1602.00918 Mesoscale and Nanoscale Physics +1602.01165 Plasma Physics +1602.01166 Strongly Correlated Electrons +1602.01220 Mesoscale and Nanoscale Physics +1602.01426 Lattice +1602.01615 Solar and Stellar Astrophysics +1602.01723 Quantum Gases +1602.01985 Astrophysics of Galaxies +1602.02017 Phenomenology +1602.02062 Phenomenology +1602.02095 Strongly Correlated Electrons +1602.02189 Solar and Stellar Astrophysics +1602.02363 High Energy Astrophysical Phenomena +1602.02604 Atomic and Molecular Clusters +1602.02975 Mesoscale and Nanoscale Physics +1602.03099 High Energy Astrophysical Phenomena +1602.03141 Materials Science +1602.03185 High Energy Astrophysical Phenomena +1602.03486 Number Theory +1602.03628 Solar and Stellar Astrophysics +1602.03743 General Physics +1602.03826 Phenomenology +1602.04022 Mesoscale and Nanoscale Physics +1602.04132 Solar and Stellar Astrophysics +1602.04180 High Energy Astrophysical Phenomena +1602.04437 Solar and Stellar Astrophysics +1602.04665 Solar and Stellar Astrophysics +1602.04755 Earth and Planetary Astrophysics +1602.04772 Astrophysics of Galaxies +1602.04820 Solar and Stellar Astrophysics +1602.04865 High Energy Astrophysical Phenomena +1602.05002 Phenomenology +1602.05017 Phenomenology +1602.05252 Solar and Stellar Astrophysics +1602.05300 Phenomenology +1602.05652 Biological Physics +1602.05932 Solar and Stellar Astrophysics +1602.05986 Computation +1602.06788 Astrophysics of Galaxies +1602.07098 Earth and Planetary Astrophysics +1602.07367 Optics +1602.07701 High Energy Astrophysical Phenomena +1602.07719 Astrophysics of Galaxies +1602.07772 Astrophysics of Galaxies +1602.07792 Solar and Stellar Astrophysics +1602.07880 Astrophysics of Galaxies +1602.07954 High Energy Astrophysical Phenomena +1602.08390 Solar and Stellar Astrophysics +1602.08582 Instrumentation and Methods for Astrophysics +1602.08868 Astrophysics of Galaxies +1602.08873 Representation Theory +1602.08892 Mesoscale and Nanoscale Physics +1602.08977 Solar and Stellar Astrophysics +1603.00042 Earth and Planetary Astrophysics +1603.00199 Solar and Stellar Astrophysics +1603.00348 Astrophysics of Galaxies +1603.00376 Earth and Planetary Astrophysics +1603.00474 Astrophysics of Galaxies +1603.00641 Solar and Stellar Astrophysics +1603.00714 Solar and Stellar Astrophysics +1603.00768 Solar and Stellar Astrophysics +1603.00965 High Energy Astrophysical Phenomena +1603.01069 Solar and Stellar Astrophysics +1603.01073 Pattern Formation and Solitons +1603.01565 Solar and Stellar Astrophysics +1603.01610 Astrophysics of Galaxies +1603.01858 Theory +1603.02170 Solar and Stellar Astrophysics +1603.02690 Solar and Stellar Astrophysics +1603.02724 Computational Complexity +1603.02875 Complex Variables +1603.03274 Earth and Planetary Astrophysics +1603.03353 High Energy Astrophysical Phenomena +1603.03804 +1603.04207 Solar and Stellar Astrophysics +1603.04403 High Energy Astrophysical Phenomena +1603.04435 Earth and Planetary Astrophysics +1603.04857 Earth and Planetary Astrophysics +1603.04975 Analysis of PDEs +1603.05096 Analysis of PDEs +1603.05137 High Energy Astrophysical Phenomena +1603.05309 Solar and Stellar Astrophysics +1603.05473 +1603.05882 Applications +1603.05899 Solar and Stellar Astrophysics +1603.05901 Human-Computer Interaction +1603.06039 +1603.07718 Algebraic Geometry +1603.08468 Phenomenology +1603.08608 Solar and Stellar Astrophysics +1603.08735 Human-Computer Interaction +1603.08749 Theory +1603.08949 Programming Languages +1603.09352 Earth and Planetary Astrophysics +1603.09512 Earth and Planetary Astrophysics +1604.00013 High Energy Astrophysical Phenomena +1604.00055 Physics and Society +1604.00172 +1604.00194 +1604.00220 Exactly Solvable and Integrable Systems +1604.00238 Quantum Gases +1604.00240 Instrumentation and Detectors +1604.00386 Space Physics +1604.00435 Astrophysics of Galaxies +1604.00643 High Energy Astrophysical Phenomena +1604.00817 +1604.00910 Mesoscale and Nanoscale Physics +1604.01045 Astrophysics of Galaxies +1604.01066 Optics +1604.01116 Data Structures and Algorithms +1604.01196 Mesoscale and Nanoscale Physics +1604.01324 +1604.01328 Phenomenology +1604.01648 Soft Condensed Matter +1604.01771 Phenomenology +1604.01796 Disordered Systems and Neural Networks +1604.01898 High Energy Astrophysical Phenomena +1604.02000 Instrumentation and Detectors +1604.02004 Materials Science +1604.02078 Quantum Algebra +1604.02088 Combinatorics +1604.02124 Materials Science +1604.02530 Exactly Solvable and Integrable Systems +1604.02623 Molecular Networks +1604.02713 Phenomenology +1604.02748 Computer Vision and Pattern Recognition +1604.02753 Combinatorics +1604.03014 Systems and Control +1604.03084 Computational Complexity +1604.03097 Pattern Formation and Solitons +1604.03098 Logic in Computer Science +1604.03099 Artificial Intelligence +1604.03100 Fluid Dynamics +1604.03101 Phenomenology +1604.03102 Instrumentation and Detectors +1604.03103 Instrumentation and Detectors +1604.03108 Phenomenology +1604.03114 Computation and Language +1604.03115 Combinatorics +1604.03123 +1604.03125 Mesoscale and Nanoscale Physics +1604.03130 Computers and Society +1604.03131 Cosmology and Nongalactic Astrophysics +1604.03132 Genomics +1604.03136 Computation and Language +1604.03137 Logic +1604.03140 Information Theory +1604.03142 Solar and Stellar Astrophysics +1604.03144 +1604.03145 +1604.03152 Dynamical Systems +1604.03153 Probability +1604.03154 Functional Analysis +1604.03158 Solar and Stellar Astrophysics +1604.03160 Computers and Society +1604.03161 Probability +1604.03162 Group Theory +1604.03165 Instrumentation and Methods for Astrophysics +1604.03166 Mesoscale and Nanoscale Physics +1604.03170 Spectral Theory +1604.03171 Learning +1604.03174 Cosmology and Nongalactic Astrophysics +1604.03175 Networking and Internet Architecture +1604.03176 Algebraic Geometry +1604.03178 Computer Science and Game Theory +1604.03181 Geometric Topology +1604.03182 +1604.03184 Software Engineering +1604.03186 Applications +1604.03187 Chaotic Dynamics +1604.03190 Optics +1604.03192 Methodology +1604.03193 Computer Vision and Pattern Recognition +1604.03200 Artificial Intelligence +1604.03204 Information Theory +1604.03208 +1604.03209 Computation and Language +1604.03210 Artificial Intelligence +1604.03211 Programming Languages +1604.03214 Databases +1604.03215 Digital Libraries +1604.03217 Networking and Internet Architecture +1604.03220 Graphics +1604.03221 Social and Information Networks +1604.03222 Systems and Control +1604.03223 Systems and Control +1604.03225 Computer Vision and Pattern Recognition +1604.03227 Computer Vision and Pattern Recognition +1604.03228 Distributed, Parallel, and Cluster Computing +1604.03230 Operator Algebras +1604.03232 Materials Science +1604.03234 Databases +1604.03235 Social and Information Networks +1604.03238 Rings and Algebras +1604.03239 Computer Vision and Pattern Recognition +1604.03241 Differential Geometry +1604.03242 Chemical Physics +1604.03244 Molecular Networks +1604.03245 Classical Analysis and ODEs +1604.03246 Networking and Internet Architecture +1604.03247 Computer Vision and Pattern Recognition +1604.03248 Learning +1604.03249 Computer Vision and Pattern Recognition +1604.03250 Genomics +1604.03258 Materials Science +1604.03259 Differential Geometry +1604.03260 Astrophysics of Galaxies +1604.03261 +1604.03262 Superconductivity +1604.03264 Analysis of PDEs +1604.03266 Learning +1604.03270 Formal Languages and Automata Theory +1604.03271 Strongly Correlated Electrons +1604.03275 Numerical Analysis +1604.03277 Neural and Evolutionary Computing +1604.03278 Machine Learning +1604.03280 Information Theory +1604.03283 Mesoscale and Nanoscale Physics +1604.03284 Analysis of PDEs +1604.03287 Category Theory +1604.03288 Combinatorics +1604.03289 +1604.03290 Earth and Planetary Astrophysics +1604.03293 +1604.03296 Information Theory +1604.03300 Rings and Algebras +1604.03301 Number Theory +1604.03306 Information Theory +1604.03310 Phenomenology +1604.03313 Cryptography and Security +1604.03314 Instrumentation and Detectors +1604.03317 Probability +1604.03318 Artificial Intelligence +1604.03319 Rings and Algebras +1604.03338 Materials Science +1604.03342 Dynamical Systems +1604.03347 Group Theory +1604.03348 Learning +1604.03351 Computer Vision and Pattern Recognition +1604.03354 Number Theory +1604.03356 Distributed, Parallel, and Cluster Computing +1604.03357 Computation and Language +1604.03358 Functional Analysis +1604.03359 Information Theory +1604.03362 Computational Geometry +1604.03363 +1604.03365 Dynamical Systems +1604.03366 Soft Condensed Matter +1604.03373 Machine Learning +1604.03379 Systems and Control +1604.03389 +1604.03392 Machine Learning +1604.03396 Networking and Internet Architecture +1604.03400 Numerical Analysis +1604.03402 Soft Condensed Matter +1604.03403 Earth and Planetary Astrophysics +1604.03404 Complex Variables +1604.03405 Exactly Solvable and Integrable Systems +1604.03406 Complex Variables +1604.03407 Materials Science +1604.03408 +1604.03410 Distributed, Parallel, and Cluster Computing +1604.03412 Astrophysics of Galaxies +1604.03413 Databases +1604.03415 Group Theory +1604.03418 Combinatorics +1604.03421 Algebraic Geometry +1604.03424 Systems and Control +1604.03426 Computer Vision and Pattern Recognition +1604.03427 Social and Information Networks +1604.03432 Information Theory +1604.03435 Networking and Internet Architecture +1604.03441 History and Philosophy of Physics +1604.03442 Mesoscale and Nanoscale Physics +1604.03443 Computer Vision and Pattern Recognition +1604.03446 Computers and Society +1604.03448 +1604.03449 General Physics +1604.03450 Data Analysis, Statistics and Probability +1604.03452 Logic +1604.03453 Software Engineering +1604.03458 Optimization and Control +1604.03460 Geometric Topology +1604.03461 Functional Analysis +1604.03466 Geometric Topology +1604.03470 Distributed, Parallel, and Cluster Computing +1604.03471 Logic in Computer Science +1604.03473 Representation Theory +1604.03477 Mesoscale and Nanoscale Physics +1604.03480 Applications +1604.03481 Mesoscale and Nanoscale Physics +1604.03482 Data Structures and Algorithms +1604.03483 Analysis of PDEs +1604.03492 Machine Learning +1604.03493 Probability +1604.03494 +1604.03498 Computer Vision and Pattern Recognition +1604.03499 Classical Analysis and ODEs +1604.03502 Differential Geometry +1604.03504 Differential Geometry +1604.03506 Information Retrieval +1604.03508 Information Theory +1604.03509 Number Theory +1604.03512 Social and Information Networks +1604.03513 Computer Vision and Pattern Recognition +1604.03518 Computer Vision and Pattern Recognition +1604.03523 Mesoscale and Nanoscale Physics +1604.03526 Robotics +1604.03529 Analysis of PDEs +1604.03537 Algebraic Geometry +1604.03539 Computer Vision and Pattern Recognition +1604.03540 Computer Vision and Pattern Recognition +1604.03541 Information Theory +1604.03544 Data Structures and Algorithms +1604.03545 Superconductivity +astro-ph/0110060 +astro-ph/0202231 +astro-ph/0205551 +astro-ph/0301107 +astro-ph/0301603 +astro-ph/0303517 +astro-ph/0304112 +cond-mat/0405413 Materials Science +hep-ph/0210298 Phenomenology +hep-th/9806009 Theory +hep-th/9808159 Theory +hep-th/9809190 Theory +hep-th/9812032 Theory +hep-th/9901064 Theory +hep-th/9903003 Theory +hep-th/9903007 Theory +hep-th/9903013 Theory +hep-th/9903030 Theory +hep-th/9904060 Theory +physics/0307129 Chemical Physics +physics/0608168 Atomic and Molecular Clusters +0710.1124 Classical Analysis and ODEs +0710.1127 Classical Analysis and ODEs +0811.4437 Number Theory +0903.0117 Classical Analysis and ODEs +0909.0979 Classical Analysis and ODEs +0909.1852 Combinatorics +0912.3227 Number Theory +0912.5358 Combinatorics +0912.5376 Number Theory +1002.2049 Commutative Algebra +1002.2054 Combinatorics +1008.4660 Combinatorics +1101.4831 Commutative Algebra +1103.5895 Combinatorics +1111.3852 Cosmology and Nongalactic Astrophysics +1201.1456 Adaptation and Self-Organizing Systems +1201.2860 +1203.4538 Commutative Algebra +1204.0629 Algebraic Geometry +1209.4559 Commutative Algebra +1305.5624 Probability +1306.3494 Statistics Theory +1306.6458 Sound +1307.2477 Statistical Mechanics +1307.6444 Algebraic Topology +1307.6884 Differential Geometry +1308.2812 +1308.5348 Classical Analysis and ODEs +1308.6767 Number Theory +1309.0906 Number Theory +1312.6001 Number Theory +1401.4537 Geometric Topology +1402.0133 Number Theory +1405.6693 Statistics Theory +1407.3819 Classical Analysis and ODEs +1408.1274 Physics and Society +1408.3616 Functional Analysis +1408.5309 Differential Geometry +1409.0942 Number Theory +1410.4781 Emerging Technologies +1410.7334 Materials Science +1412.5374 Information Theory +1412.5394 Combinatorics +1412.7863 Theory +1501.00973 High Energy Astrophysical Phenomena +1501.03519 Methodology +1501.04256 Number Theory +1501.04330 Systems and Control +1503.01175 Classical Analysis and ODEs +1504.00777 Analysis of PDEs +1504.01865 Methodology +1504.05079 Probability +1504.07056 Distributed, Parallel, and Cluster Computing +1504.07272 Learning +1505.01288 Mesoscale and Nanoscale Physics +1505.02003 Numerical Analysis +1505.04087 Fluid Dynamics +1505.05198 Optimization and Control +1505.05465 Algebraic Topology +1505.05549 Other Condensed Matter +1506.00743 Databases +1506.07099 Phenomenology +1507.00401 Representation Theory +1507.00466 Quantitative Methods +1507.03354 Computational Physics +1507.07607 Number Theory +1507.08658 +1508.00857 Theory +1508.02368 +1508.04707 Rings and Algebras +1509.00454 +1509.02649 Computer Vision and Pattern Recognition +1509.08824 Dynamical Systems +1509.09141 Lattice +1510.00048 High Energy Astrophysical Phenomena +1510.02587 Category Theory +1510.04015 Computer Science and Game Theory +1510.04967 Multiagent Systems +1510.08962 Representation Theory +1510.09088 Numerical Analysis +1511.02328 Spectral Theory +1511.05001 Differential Geometry +1511.05092 Differential Geometry +1511.06450 Theory +1511.07109 Other Condensed Matter +1511.07263 Data Structures and Algorithms +1511.07365 High Energy Astrophysical Phenomena +1511.08170 Quantum Gases +1512.00999 Combinatorics +1512.02188 Computer Vision and Pattern Recognition +1512.04769 +1512.06084 Cosmology and Nongalactic Astrophysics +1601.00176 Computer Science and Game Theory +1601.01737 Astrophysics of Galaxies +1601.01862 Analysis of PDEs +1601.02164 Operator Algebras +1601.04344 Analysis of PDEs +1601.04897 Combinatorics +1601.04945 Probability +1601.05495 Learning +1601.07320 +1601.07805 Algebraic Geometry +1602.01065 Distributed, Parallel, and Cluster Computing +1602.02893 Probability +1602.04685 +1602.06335 Other Quantitative Biology +1602.06659 Data Structures and Algorithms +1602.07433 Combinatorics +1602.07753 Atomic Physics +1602.08846 Materials Science +1603.01216 Quantitative Methods +1603.01233 Complex Variables +1603.02386 Category Theory +1603.02839 Learning +1603.04053 Experiment +1603.04190 Learning +1603.04486 Pattern Formation and Solitons +1603.04812 Information Theory +1603.05219 Superconductivity +1603.05239 Cosmology and Nongalactic Astrophysics +1603.05872 Probability +1603.07937 Dynamical Systems +1604.00537 Phenomenology +1604.01362 Solar and Stellar Astrophysics +1604.02094 Data Structures and Algorithms +1604.03726 Disordered Systems and Neural Networks +1604.04518 Phenomenology +1604.05288 Artificial Intelligence +1604.06463 Cosmology and Nongalactic Astrophysics +1604.08914 Cosmology and Nongalactic Astrophysics +1605.00127 +1605.00175 Strongly Correlated Electrons +1605.01190 Probability +1605.01195 Mesoscale and Nanoscale Physics +1605.01213 Molecular Networks +1605.03971 Astrophysics of Galaxies +1605.04852 Fluid Dynamics +1605.05928 +1605.06393 Phenomenology +1605.07752 Cosmology and Nongalactic Astrophysics +1605.08507 History and Philosophy of Physics +1605.09297 Chaotic Dynamics +1605.09560 Optimization and Control +1606.00556 Computational Engineering, Finance, and Science +1606.00576 Operator Algebras +1606.02522 Theory +1606.04326 Statistical Mechanics +1606.06688 +1606.08120 +1607.00784 Mesoscale and Nanoscale Physics +1607.00797 +1607.02151 Astrophysics of Galaxies +1607.02292 Optics +1607.02565 Computer Vision and Pattern Recognition +1607.05428 Optimization and Control +1607.06193 Materials Science +1607.06375 Soft Condensed Matter +1607.07717 Superconductivity +1607.07967 Databases +1608.01832 Optimization and Control +1608.02520 High Energy Astrophysical Phenomena +1608.02669 Materials Science +1608.04961 Machine Learning +1608.05088 +1608.05974 +1608.06934 History and Philosophy of Physics +1608.07481 Social and Information Networks +1609.01529 Optimization and Control +1609.01909 Logic +1609.02407 Optimization and Control +1609.03136 Data Structures and Algorithms +1609.03961 Optimization and Control +1609.04075 Atomic Physics +1609.04927 Mesoscale and Nanoscale Physics +1609.06150 Mesoscale and Nanoscale Physics +1609.06222 +1609.06243 Algebraic Topology +1609.06642 Astrophysics of Galaxies +1609.07326 Soft Condensed Matter +1609.07651 +1609.08377 Materials Science +1609.08940 +1609.09433 Data Structures and Algorithms +1609.09725 Probability +1609.09758 Computers and Society +1610.00011 Theory +1610.00012 Theory +1610.00672 Dynamical Systems +1610.00689 Artificial Intelligence +1610.00732 Machine Learning +1610.01239 Learning +1610.01266 Phenomenology +1610.01511 Networking and Internet Architecture +1610.01682 +1610.01733 Robotics +1610.01778 Software Engineering +1610.01812 +1610.01835 Theory +1610.01922 Artificial Intelligence +1610.01925 Computer Vision and Pattern Recognition +1610.01947 Instrumentation and Detectors +1610.01993 Physics and Society +1610.02004 Solar and Stellar Astrophysics +1610.02027 Instrumentation and Detectors +1610.02029 Instrumentation and Detectors +1610.02043 Phenomenology +1610.02047 Cosmology and Nongalactic Astrophysics +1610.02050 Systems and Control +1610.02051 Other Condensed Matter +1610.02053 Strongly Correlated Electrons +1610.02055 Computer Vision and Pattern Recognition +1610.02056 Data Structures and Algorithms +1610.02058 Materials Science +1610.02059 Group Theory +1610.02060 Social and Information Networks +1610.02062 Superconductivity +1610.02063 Combinatorics +1610.02065 Cryptography and Security +1610.02067 Computer Science and Game Theory +1610.02069 +1610.02070 Statistical Mechanics +1610.02073 Category Theory +1610.02075 Commutative Algebra +1610.02077 Combinatorics +1610.02079 Group Theory +1610.02081 Phenomenology +1610.02083 Accelerator Physics +1610.02084 Neural and Evolutionary Computing +1610.02088 Probability +1610.02089 Combinatorics +1610.02090 Fluid Dynamics +1610.02092 Networking and Internet Architecture +1610.02094 Hardware Architecture +1610.02097 +1610.02100 Soft Condensed Matter +1610.02101 Logic in Computer Science +1610.02102 Mesoscale and Nanoscale Physics +1610.02103 Computer Science and Game Theory +1610.02104 +1610.02105 Computational Physics +1610.02106 Computation +1610.02109 Functional Analysis +1610.02110 Computer Science and Game Theory +1610.02111 Optics +1610.02115 Group Theory +1610.02119 Mesoscale and Nanoscale Physics +1610.02120 Analysis of PDEs +1610.02124 Computation and Language +1610.02126 Risk Management +1610.02127 Software Engineering +1610.02129 Metric Geometry +1610.02130 Accelerator Physics +1610.02131 Networking and Internet Architecture +1610.02132 Learning +1610.02133 Functional Analysis +1610.02135 Accelerator Physics +1610.02137 Dynamical Systems +1610.02138 Optics +1610.02139 Optimization and Control +1610.02141 +1610.02144 Programming Languages +1610.02148 +1610.02150 +1610.02152 +1610.02156 Space Physics +1610.02157 Number Theory +1610.02158 Classical Analysis and ODEs +1610.02159 Functional Analysis +1610.02161 Number Theory +1610.02164 Learning +1610.02165 Operator Algebras +1610.02166 Dynamical Systems +1610.02167 Functional Analysis +1610.02175 Discrete Mathematics +1610.02178 Probability +1610.02179 Optics +1610.02180 Category Theory +1610.02181 Information Theory +1610.02183 Experiment +1610.02184 Analysis of PDEs +1610.02186 Strongly Correlated Electrons +1610.02187 +1610.02188 Rings and Algebras +1610.02191 Logic +1610.02192 Optimization and Control +1610.02194 Logic +1610.02195 Solar and Stellar Astrophysics +1610.02196 Rings and Algebras +1610.02197 +1610.02198 Medical Physics +1610.02200 Solar and Stellar Astrophysics +1610.02202 Differential Geometry +1610.02204 Materials Science +1610.02205 Materials Science +1610.02206 Materials Science +1610.02207 Statistics Theory +1610.02208 +1610.02212 Combinatorics +1610.02213 Computation and Language +1610.02214 Physics and Society +1610.02216 Classical Analysis and ODEs +1610.02218 Chaotic Dynamics +1610.02222 Strongly Correlated Electrons +1610.02223 Differential Geometry +1610.02227 Neurons and Cognition +1610.02228 Social and Information Networks +1610.02229 Mesoscale and Nanoscale Physics +1610.02230 Experiment +1610.02231 Materials Science +1610.02232 Rings and Algebras +1610.02234 Analysis of PDEs +1610.02236 +1610.02237 Computer Vision and Pattern Recognition +1610.02238 Complex Variables +1610.02244 +1610.02245 Differential Geometry +1610.02249 Neurons and Cognition +1610.02250 History and Overview +1610.02251 Computer Vision and Pattern Recognition +1610.02253 Information Theory +1610.02254 Symplectic Geometry +1610.02255 Computer Vision and Pattern Recognition +1610.02256 Computer Vision and Pattern Recognition +1610.02258 Quantitative Methods +1610.02263 Multimedia +1610.02265 Numerical Analysis +1610.02268 High Energy Astrophysical Phenomena +1610.02270 Numerical Analysis +1610.02271 Optimization and Control +1610.02274 Other Computer Science +1610.02275 Phenomenology +1610.02277 Computational Engineering, Finance, and Science +1610.02278 Commutative Algebra +1610.02280 Complex Variables +1610.02281 Genomics +1610.02283 Earth and Planetary Astrophysics +1610.02285 Computational Physics +1610.02288 Distributed, Parallel, and Cluster Computing +1610.02289 Differential Geometry +1610.02290 Rings and Algebras +1610.02292 Tissues and Organs +1610.02293 Artificial Intelligence +1610.02295 Functional Analysis +1610.02298 +1610.02301 Cell Behavior +1610.02302 Combinatorics +1610.02305 Materials Science +1610.02306 Computer Vision and Pattern Recognition +1610.02307 Information Theory +1610.02308 Neurons and Cognition +1610.02309 Neurons and Cognition +1610.02310 Mesoscale and Nanoscale Physics +1610.02311 Differential Geometry +1610.02314 Chemical Physics +1610.02315 Number Theory +1610.02317 Numerical Analysis +1610.02318 Networking and Internet Architecture +1610.02321 Rings and Algebras +1610.02323 Dynamical Systems +1610.02327 Programming Languages +1610.02329 Instrumentation and Methods for Astrophysics +1610.02331 Numerical Analysis +1610.02332 Mesoscale and Nanoscale Physics +1610.02333 Distributed, Parallel, and Cluster Computing +1610.02336 Data Structures and Algorithms +1610.02337 Mesoscale and Nanoscale Physics +1610.02339 Cryptography and Security +1610.02340 Number Theory +1610.02342 Solar and Stellar Astrophysics +1610.02343 Theory +1610.02345 Soft Condensed Matter +1610.02348 Artificial Intelligence +1610.02352 Logic +1610.02353 Materials Science +1610.02354 Lattice +1610.02355 Popular Physics +1610.02356 +1610.02358 Social and Information Networks +1610.02359 Mesoscale and Nanoscale Physics +1610.02360 Cosmology and Nongalactic Astrophysics +1610.02361 Data Structures and Algorithms +1610.02362 Algebraic Topology +1610.02363 Theory +1610.02365 Optics +1610.02367 +1610.02368 Probability +1610.02371 Number Theory +1610.02372 Methodology +1610.02373 Learning +1610.02374 Software Engineering +1610.02375 Strongly Correlated Electrons +1610.02378 Functional Analysis +1610.02379 Complex Variables +1610.02381 Combinatorics +1610.02382 Complex Variables +1610.02383 Symplectic Geometry +1610.02384 Soft Condensed Matter +1610.02385 Robotics +1610.02388 Fluid Dynamics +1610.02389 Disordered Systems and Neural Networks +1610.02392 Sound +1610.02393 +math/0606173 Classical Analysis and ODEs +0811.4593 Fluid Dynamics +1004.4689 +1108.6282 Functional Analysis +1109.3216 History and Overview +1205.1455 Algebraic Topology +1209.6422 K-Theory and Homology +1211.3692 Representation Theory +1212.0174 Dynamical Systems +1305.2562 Geometric Topology +1306.0120 Differential Geometry +1311.0036 Analysis of PDEs +1401.0150 Symplectic Geometry +1402.2203 Quantum Algebra +1403.1919 Combinatorics +1403.4105 Algebraic Geometry +1404.3007 Combinatorics +1404.4275 Computational Engineering, Finance, and Science +1406.0412 Mathematical Finance +1406.6934 Functional Analysis +1406.7836 Strongly Correlated Electrons +1407.5615 Optimization and Control +1407.6309 Probability +1408.4439 Optimization and Control +1408.5037 Functional Analysis +1409.0180 Optics +1410.3331 Functional Analysis +1410.3572 Differential Geometry +1410.6394 Functional Analysis +1410.6408 Mathematical Finance +1411.0300 Numerical Analysis +1411.2475 Analysis of PDEs +1411.3059 Differential Geometry +1411.6527 Representation Theory +1412.5043 Number Theory +1412.5282 Differential Geometry +1501.04119 Combinatorics +1502.01106 Statistics Theory +1502.02451 Dynamical Systems +1502.06412 Methodology +1504.01644 Analysis of PDEs +1504.01952 Strongly Correlated Electrons +1504.03809 Multiagent Systems +1504.04535 Analysis of PDEs +1504.07790 Functional Analysis +1504.07830 Optimization and Control +1505.07007 +1506.02438 Learning +1506.04540 Number Theory +1506.05146 Computational Physics +1506.05861 Algebraic Topology +1506.07108 +1506.07275 Networking and Internet Architecture +1507.03894 Differential Geometry +1507.06816 Spectral Theory +1508.02465 +1508.04574 Mesoscale and Nanoscale Physics +1508.06659 Probability +1508.07410 Theory +1508.07646 Commutative Algebra +1509.02456 Analysis of PDEs +1510.00963 +1510.04994 High Energy Astrophysical Phenomena +1510.06288 Mesoscale and Nanoscale Physics +1511.00168 Atomic and Molecular Clusters +1511.00567 Networking and Internet Architecture +1511.01884 +1511.02207 Analysis of PDEs +1511.02315 Soft Condensed Matter +1511.02551 Dynamical Systems +1511.03425 Theory +1511.06712 Strongly Correlated Electrons +1511.06871 Number Theory +1511.07250 Classical Analysis and ODEs +1511.07407 Analysis of PDEs +1511.08194 Mathematical Finance +1511.08415 Number Theory +1512.08863 Computational Complexity +1601.01559 +1601.01720 +1601.03008 Representation Theory +1601.04539 Metric Geometry +1601.06116 Machine Learning +1601.07498 Information Theory +1601.07551 Phenomenology +1602.00881 Phenomenology +1602.01564 +1602.02456 +1602.03474 Analysis of PDEs +1602.04902 Portfolio Management +1602.06785 Quantitative Methods +1602.08608 Classical Analysis and ODEs +1603.01128 +1603.01351 Neurons and Cognition +1603.02852 Phenomenology +1603.03124 Probability +1603.03887 Dynamical Systems +1603.04883 Mesoscale and Nanoscale Physics +1603.05818 Probability +1603.08389 Information Theory +1603.08782 Analysis of PDEs +1603.09680 Optics +1604.02997 Experiment +1604.03924 Learning +1604.06105 Superconductivity +1604.06699 Phenomenology +1604.07757 Superconductivity +1604.08504 Computation and Language +1605.00182 Theory +1605.01224 Computer Vision and Pattern Recognition +1605.01856 Phenomenology +1605.02492 Quantum Gases +1605.02516 Optics +1605.04476 Optics +1605.04587 Geometric Topology +1605.05563 Superconductivity +1605.07160 Soft Condensed Matter +1605.07372 +1605.08477 Optics +1605.09322 Dynamical Systems +1605.09526 Computer Vision and Pattern Recognition +1606.00360 Networking and Internet Architecture +1606.00501 Superconductivity +1606.01636 Strongly Correlated Electrons +1606.01848 +1606.01874 Computational Physics +1606.02145 Physics and Society +1606.02528 Strongly Correlated Electrons +1606.03399 Cosmology and Nongalactic Astrophysics +1606.03489 Chemical Physics +1606.03882 +1606.03986 Information Theory +1606.06327 Numerical Analysis +1606.06603 Materials Science +1606.07020 Optics +1606.08078 Computer Vision and Pattern Recognition +1606.08823 Quantum Gases +1606.08982 Theory +1606.09498 Soft Condensed Matter +1607.00615 Theory +1607.00962 Mesoscale and Nanoscale Physics +1607.01782 Cosmology and Nongalactic Astrophysics +1607.02123 +1607.03541 Phenomenology +1607.03669 Experiment +1607.04398 +1607.04850 Algebraic Geometry +1607.04893 +1607.08142 High Energy Astrophysical Phenomena +1608.00412 Quantum Algebra +1608.00729 Soft Condensed Matter +1608.01742 Analysis of PDEs +1608.02149 Instrumentation and Methods for Astrophysics +1608.02995 High Energy Astrophysical Phenomena +1608.03162 Soft Condensed Matter +1608.03923 Plasma Physics +1608.04425 Optimization and Control +1608.04557 Statistical Mechanics +1608.04905 Optics +1608.05397 Chaotic Dynamics +1608.05411 Materials Science +1608.05575 Dynamical Systems +1608.06088 Differential Geometry +1608.06368 Graphics +1608.06404 Combinatorics +1608.06540 +1608.06599 Differential Geometry +1608.07437 Astrophysics of Galaxies +1608.07583 Phenomenology +1608.08134 +1608.08171 Computer Vision and Pattern Recognition +1608.08173 Computer Vision and Pattern Recognition +1608.08289 Dynamical Systems +1608.08673 History and Philosophy of Physics +1608.08952 Computational Geometry +1608.08974 Computer Vision and Pattern Recognition +1609.00274 Operator Algebras +1609.00429 Superconductivity +1609.00481 Computer Science and Game Theory +1609.00594 Information Theory +1609.01086 Earth and Planetary Astrophysics +1609.01233 Information Theory +1609.01371 Computer Vision and Pattern Recognition +1609.01759 Software Engineering +1609.01899 Information Theory +1609.01917 Information Theory +1609.02035 Distributed, Parallel, and Cluster Computing +1609.02063 Data Structures and Algorithms +1609.02116 Machine Learning +1609.02117 Information Theory +1609.02242 Mesoscale and Nanoscale Physics +1609.02271 Computer Vision and Pattern Recognition +1609.02371 Differential Geometry +1609.02559 Earth and Planetary Astrophysics +1609.02562 Algebraic Geometry +1609.02573 Accelerator Physics +1609.02574 +1609.02575 Chemical Physics +1609.02577 Group Theory +1609.02580 Phenomenology +1609.02583 Computer Vision and Pattern Recognition +1609.02584 Artificial Intelligence +1609.02585 Mesoscale and Nanoscale Physics +1609.02586 History and Philosophy of Physics +1609.02589 Metric Geometry +1609.02592 Physics and Society +1609.02593 Physics and Society +1609.02596 Information Theory +1609.02598 Cryptography and Security +1609.02600 Dynamical Systems +1609.02602 Solar and Stellar Astrophysics +1609.02603 Networking and Internet Architecture +1609.02605 Rings and Algebras +1609.02606 Machine Learning +1609.02609 Optimization and Control +1609.02610 Numerical Analysis +1609.02611 Probability +1609.02615 Differential Geometry +1609.02616 Logic +1609.02618 Optics +1609.02621 Physics and Society +1609.02623 +1609.02624 Analysis of PDEs +1609.02626 Materials Science +1609.02627 Logic +1609.02629 Methodology +1609.02630 Logic +1609.02631 Machine Learning +1609.02634 Representation Theory +1609.02636 Representation Theory +1609.02637 Computational Physics +1609.02639 Materials Science +1609.02640 Discrete Mathematics +1609.02641 Mesoscale and Nanoscale Physics +1609.02642 Biological Physics +1609.02643 Dynamical Systems +1609.02644 Geometric Topology +1609.02646 Artificial Intelligence +1609.02647 Materials Science +1609.02649 Soft Condensed Matter +1609.02654 Quantitative Methods +1609.02655 Statistics Theory +1609.02656 Biological Physics +1609.02657 Discrete Mathematics +1609.02659 History and Philosophy of Physics +1609.02660 Information Theory +1609.02661 Statistics Theory +1609.02664 Learning +1609.02665 Mesoscale and Nanoscale Physics +1609.02666 +1609.02667 Cryptography and Security +1609.02668 Data Structures and Algorithms +1609.02669 Physics and Society +1609.02670 Commutative Algebra +1609.02672 Artificial Intelligence +1609.02673 Pattern Formation and Solitons +1609.02674 +1609.02675 +1609.02677 +1609.02678 Systems and Control +1609.02679 Mesoscale and Nanoscale Physics +1609.02680 Group Theory +1609.02682 Networking and Internet Architecture +1609.02687 Information Retrieval +1609.02689 Solar and Stellar Astrophysics +1609.02691 Analysis of PDEs +1609.02692 Optimization and Control +1609.02694 Distributed, Parallel, and Cluster Computing +1609.02696 Methodology +1609.02697 Probability +1609.02698 +1609.02700 Machine Learning +1609.02701 Chemical Physics +1609.02702 Differential Geometry +1609.02704 Combinatorics +1609.02706 Earth and Planetary Astrophysics +1609.02707 Functional Analysis +1609.02709 Functional Analysis +1609.02710 Solar and Stellar Astrophysics +1609.02711 Optimization and Control +1609.02715 Computer Vision and Pattern Recognition +1609.02716 Algebraic Geometry +1609.02717 Dynamical Systems +1609.02718 Probability +1609.02720 Superconductivity +1609.02722 +1609.02724 Number Theory +1609.02725 Strongly Correlated Electrons +1609.02726 Discrete Mathematics +1609.02727 Computation and Language +1609.02728 Learning +1609.02730 Chaotic Dynamics +1609.02732 +1609.02733 Theory +1609.02737 Commutative Algebra +1609.02738 Algebraic Geometry +1609.02741 Numerical Analysis +1609.02742 High Energy Astrophysical Phenomena +1609.02744 Computer Vision and Pattern Recognition +1609.02745 Computation and Language +1609.02746 Computation and Language +1609.02750 Cryptography and Security +1609.02752 Soft Condensed Matter +1609.02754 +1609.02755 Combinatorics +1609.02756 Combinatorics +1609.02762 Optimization and Control +1609.02763 Numerical Analysis +1609.02764 Combinatorics +1609.02768 Algebraic Geometry +1609.02769 Other Computer Science +1609.02772 Analysis of PDEs +1609.02773 Soft Condensed Matter +1609.02774 Risk Management +1609.02775 History and Philosophy of Physics +1609.02777 Fluid Dynamics +1609.02780 Optics +1609.02781 Computer Vision and Pattern Recognition +1609.02782 Soft Condensed Matter +1609.02784 Optimization and Control +1609.02786 Phenomenology +1609.02787 Classical Physics +1609.02788 Phenomenology +1609.02789 Cryptography and Security +1609.02790 Combinatorics +1609.02791 Other Computer Science +1609.02793 Applications +1609.02794 Genomics +1609.02797 +1609.02798 Rings and Algebras +1609.02802 Analysis of PDEs +1609.02804 +1609.02805 Computer Vision and Pattern Recognition +1609.02808 +1609.02809 Computation and Language +1609.02810 Phenomenology +1609.02813 Optimization and Control +1609.02814 Optimization and Control +1609.02816 Theory +1609.02817 Earth and Planetary Astrophysics +1609.02818 Methodology +1609.02825 Computer Vision and Pattern Recognition +1609.02826 Combinatorics +1609.02828 Probability +1609.02836 Numerical Analysis +1609.02837 Number Theory +1609.02838 Differential Geometry +1609.02839 Social and Information Networks +1609.02840 Complex Variables +1609.02842 Information Theory +1609.02844 Rings and Algebras +1609.02845 Optimization and Control +1609.02846 Computation and Language +1609.02850 Theory +1609.02851 +1609.02853 Algebraic Topology +1609.02855 Statistics Theory +1609.02856 Soft Condensed Matter +1609.02858 Number Theory +1609.02860 Fluid Dynamics +1609.02866 Analysis of PDEs +1609.02867 Probability +1609.02868 History and Overview +1609.02870 Functional Analysis +1609.02871 Combinatorics +1609.02873 Rings and Algebras +1609.02874 Optics +1609.02875 +1609.02876 +1609.02881 High Energy Astrophysical Phenomena +1609.02882 Phenomenology +1609.02883 Category Theory +1609.02885 Fluid Dynamics +1609.02886 Fluid Dynamics +1609.02890 Spectral Theory +1609.02891 Statistical Mechanics +1609.02893 Neurons and Cognition +1609.02897 +1609.02898 Robotics +1609.02901 Probability +1609.02902 Mesoscale and Nanoscale Physics +1609.02906 Machine Learning +1609.02911 Information Theory +0806.2276 Dynamical Systems +0901.0018 Superconductivity +0905.3670 Complex Variables +1102.3276 Statistical Mechanics +1106.1568 History and Philosophy of Physics +1107.4418 High Energy Astrophysical Phenomena +1112.6063 +1202.0045 Probability +1203.0756 Combinatorics +1212.1943 Geometric Topology +1212.3711 +1212.6518 Algebraic Geometry +1307.5784 Functional Analysis +1310.2497 Geometric Topology +1311.3162 Differential Geometry +1311.7668 Complex Variables +1401.0100 Methodology +1401.0209 Networking and Internet Architecture +1401.3699 Geometric Topology +1402.1343 +1405.7134 Social and Information Networks +1406.5278 Chaotic Dynamics +1407.0637 Data Structures and Algorithms +1409.7132 Representation Theory +1410.1907 Materials Science +1410.3371 Classical Analysis and ODEs +1410.4054 Mathematical Software +1410.4770 Dynamical Systems +1411.0503 Analysis of PDEs +1411.1168 Methodology +1411.3578 +1411.5759 Complex Variables +1412.2594 Experiment +1412.7465 Commutative Algebra +1501.00133 Experiment +1501.02315 Methodology +1502.00827 Information Theory +1502.05890 Learning +1502.06380 Combinatorics +1503.02156 Number Theory +1503.03740 Differential Geometry +1503.04818 Astrophysics of Galaxies +1503.06258 Dynamical Systems +1503.06520 Number Theory +1504.01116 Analysis of PDEs +1504.05436 Applications +1506.01440 Analysis of PDEs +1506.01587 Optimization and Control +1506.02676 Statistics Theory +1506.04943 Classical Physics +1506.05595 Networking and Internet Architecture +1506.06293 Geometric Topology +1507.00770 Combinatorics +1507.02240 Metric Geometry +1508.01996 Computation and Language +1508.02225 Computation and Language +1509.01130 Quantum Gases +1509.02870 Methodology +1509.05681 Computational Geometry +1509.08984 Mesoscale and Nanoscale Physics +1510.00581 Differential Geometry +1510.01076 Complex Variables +1510.02427 Cryptography and Security +1511.00410 Combinatorics +1511.00884 Computational Finance +1511.05194 Geophysics +1511.05328 Optimization and Control +1511.05450 +1511.05454 +1511.05937 Combinatorics +1511.09396 Chemical Physics +1511.09429 Combinatorics +1511.09462 Theory +1512.00438 Phenomenology +1512.01416 Logic in Computer Science +1512.01647 Phenomenology +1512.01990 Functional Analysis +1512.02990 Information Theory +1512.04496 Operator Algebras +1512.04858 Other Statistics +1512.09062 Differential Geometry +1601.00258 Optimization and Control +1601.01694 Theory +1601.02946 Classical Analysis and ODEs +1601.04203 Data Structures and Algorithms +1601.07073 Mesoscale and Nanoscale Physics +1602.02151 Learning +1602.04128 Learning +1602.04419 Distributed, Parallel, and Cluster Computing +1602.05441 K-Theory and Homology +1602.06569 Algebraic Geometry +1602.06878 Theory +1602.08477 Distributed, Parallel, and Cluster Computing +1602.08481 Distributed, Parallel, and Cluster Computing +1603.00285 Statistics Theory +1603.02771 +1603.03317 Classical Analysis and ODEs +1603.03345 Mesoscale and Nanoscale Physics +1603.03506 Statistical Mechanics +1603.05203 Probability +1603.07232 Phenomenology +1603.08901 Number Theory +1604.01198 Mesoscale and Nanoscale Physics +1604.01249 Materials Science +1604.01774 Theory +1604.02138 Theory +1604.02659 Information Theory +1604.04111 Data Structures and Algorithms +1604.05974 High Energy Astrophysical Phenomena +1604.07587 Functional Analysis +1605.00058 Data Structures and Algorithms +1605.00400 High Energy Astrophysical Phenomena +1605.00656 Theory +1605.00668 Information Theory +1605.01388 +1605.03736 Algebraic Geometry +1605.04923 High Energy Astrophysical Phenomena +1605.07387 Materials Science +1605.08207 Materials Science +1605.09423 Strongly Correlated Electrons +1606.00237 Geometric Topology +1606.00327 Experiment +1606.00577 Computation and Language +1606.00730 Combinatorics +1606.01246 Astrophysics of Galaxies +1606.02862 Distributed, Parallel, and Cluster Computing +1606.03477 Phenomenology +1606.03698 Mesoscale and Nanoscale Physics +1606.04483 Superconductivity +1606.05308 Cosmology and Nongalactic Astrophysics +1606.05590 +1606.05630 Dynamical Systems +1606.06277 Strongly Correlated Electrons +1606.06554 Number Theory +1606.08786 Soft Condensed Matter +1606.08799 Algebraic Geometry +1606.09411 Optics +1606.09630 General Physics +1607.00001 Quantum Gases +1607.00213 Mesoscale and Nanoscale Physics +1607.01970 Materials Science +1607.02315 +1607.03079 Atomic Physics +1607.03688 Computer Science and Game Theory +1607.04231 Representation Theory +1607.04935 Phenomenology +1607.05870 +1607.06167 Soft Condensed Matter +1607.06387 Plasma Physics +1607.06883 Distributed, Parallel, and Cluster Computing +1607.07837 Optimization and Control +1607.08339 Astrophysics of Galaxies +1607.08436 +1607.08521 Number Theory +1608.00464 Plasma Physics +1608.00476 Methodology +1608.00733 Probability +1608.00963 Earth and Planetary Astrophysics +1608.01517 Astrophysics of Galaxies +1608.04687 Strongly Correlated Electrons +1608.04815 Mathematical Software +1608.05325 +1608.05537 Computer Science and Game Theory +1608.05548 Logic in Computer Science +1608.05552 Discrete Mathematics +1608.05583 Methodology +1608.06703 Group Theory +1608.06732 Experiment +1608.08314 Populations and Evolution +1608.08828 Neurons and Cognition +1609.00739 Biological Physics +1609.00742 Plasma Physics +1609.02812 Logic +1609.04049 +1609.04375 Quantitative Methods +1609.04492 Mesoscale and Nanoscale Physics +1609.04959 +1609.06488 High Energy Astrophysical Phenomena +1609.08022 Analysis of PDEs +1609.08384 Strongly Correlated Electrons +1610.00328 Logic in Computer Science +1610.00548 Geophysics +1610.01293 Chaotic Dynamics +1610.01295 Distributed, Parallel, and Cluster Computing +1610.02095 Functional Analysis +1610.03499 Astrophysics of Galaxies +1610.03502 Astrophysics of Galaxies +1610.03605 +1610.04126 Optics +1610.04442 Materials Science +1610.04648 Geometric Topology +1610.05284 Theory +1610.06239 Lattice +1610.06470 Discrete Mathematics +1610.06839 Phenomenology +1610.06980 +1610.07407 Machine Learning +1610.07641 Computational Physics +1610.07839 +1610.07984 Representation Theory +1610.08040 Mesoscale and Nanoscale Physics +1610.08521 Theory +1610.09461 Learning +1610.09496 Analysis of PDEs +1610.09575 Mesoscale and Nanoscale Physics +1611.00141 Mesoscale and Nanoscale Physics +1611.00158 Superconductivity +1611.00174 Disordered Systems and Neural Networks +1611.00424 +1611.00455 Logic in Computer Science +1611.00625 Learning +1611.00723 General Finance +1611.00734 Functional Analysis +1611.00790 Astrophysics of Galaxies +1611.00832 +1611.00936 Group Theory +1611.00938 Data Structures and Algorithms +1611.00997 Portfolio Management +1611.01018 General Physics +1611.01019 General Physics +1611.01076 High Energy Astrophysical Phenomena +1611.01153 General Mathematics +1611.01155 Solar and Stellar Astrophysics +1611.01157 Cosmology and Nongalactic Astrophysics +1611.01165 Phenomenology +1611.01166 Astrophysics of Galaxies +1611.01167 +1611.01169 Astrophysics of Galaxies +1611.01170 Learning +1611.01171 Strongly Correlated Electrons +1611.01172 Sound +1611.01174 Dynamical Systems +1611.01175 Algebraic Topology +1611.01176 +1611.01177 Differential Geometry +1611.01178 Geometric Topology +1611.01179 Machine Learning +1611.01180 Lattice +1611.01182 History and Overview +1611.01184 Analysis of PDEs +1611.01186 Neural and Evolutionary Computing +1611.01187 Phenomenology +1611.01188 Analysis of PDEs +1611.01190 Computational Complexity +1611.01192 Number Theory +1611.01195 Computer Vision and Pattern Recognition +1611.01196 Dynamical Systems +1611.01198 Theory +1611.01202 Numerical Analysis +1611.01203 Algebraic Geometry +1611.01204 Algebraic Topology +1611.01205 Methodology +1611.01208 Fluid Dynamics +1611.01209 Dynamical Systems +1611.01210 Data Structures and Algorithms +1611.01212 Strongly Correlated Electrons +1611.01213 Applications +1611.01214 Rings and Algebras +1611.01215 Number Theory +1611.01219 +1611.01223 +1611.01224 Learning +1611.01228 Information Retrieval +1611.01229 Theory +1611.01230 Machine Learning +1611.01232 Machine Learning +1611.01233 Mesoscale and Nanoscale Physics +1611.01235 Neural and Evolutionary Computing +1611.01237 Algebraic Geometry +1611.01239 Machine Learning +1611.01240 Statistics Theory +1611.01242 Computation and Language +1611.01243 High Energy Astrophysical Phenomena +1611.01244 Statistical Mechanics +1611.01245 Biomolecules +1611.01246 Probability +1611.01253 Number Theory +1611.01254 Probability +1611.01256 Experiment +1611.01257 Social and Information Networks +1611.01258 +1611.01259 Learning +1611.01261 Atomic Physics +1611.01262 Operator Algebras +1611.01263 +1611.01264 Materials Science +1611.01265 Materials Science +1611.01268 Learning +1611.01270 Combinatorics +1611.01274 Number Theory +1611.01276 Learning +1611.01280 Portfolio Management +1611.01281 Fluid Dynamics +1611.01284 Representation Theory +1611.01286 Software Engineering +1611.01287 Software Engineering +1611.01289 +1611.01290 Instrumentation and Methods for Astrophysics +1611.01291 Computational Complexity +1611.01294 Networking and Internet Architecture +1611.01296 Logic in Computer Science +1611.01298 Computer Vision and Pattern Recognition +1611.01301 Solar and Stellar Astrophysics +1611.01302 Statistical Mechanics +1611.01303 Analysis of PDEs +1611.01305 Combinatorics +1611.01306 Probability +1611.01307 Mesoscale and Nanoscale Physics +1611.01308 Atomic Physics +1611.01309 Optics +1611.01310 Methodology +1611.01312 Instrumentation and Methods for Astrophysics +1611.01313 Group Theory +1611.01314 Numerical Analysis +1611.01321 Strongly Correlated Electrons +1611.01323 Probability +1611.01324 Complex Variables +1611.01325 Performance +1611.01326 Biological Physics +1611.01328 Computational Complexity +1611.01329 Number Theory +1611.01330 Statistical Mechanics +1611.01334 +1611.01335 Information Theory +1611.01337 Logic in Computer Science +1611.01338 Complex Variables +1611.01340 Rings and Algebras +1611.01344 Computational Complexity +1611.01346 Group Theory +1611.01349 +1611.01350 Materials Science +1611.01351 Statistics Theory +1611.01352 Probability +1611.01354 Materials Science +1611.01355 Functional Analysis +1611.01356 Complex Variables +1611.01357 High Energy Astrophysical Phenomena +1611.01358 Combinatorics +1611.01359 Information Theory +1611.01360 Statistics Theory +1611.01361 Networking and Internet Architecture +1611.01362 Applications +1611.01363 Materials Science +1611.01364 Computer Science and Game Theory +1611.01365 Soft Condensed Matter +1611.01368 Computation and Language +1611.01369 Statistics Theory +1611.01370 Statistics Theory +1611.01372 Combinatorics +1611.01373 Statistics Theory +1611.01374 Instrumentation and Methods for Astrophysics +1611.01375 General Mathematics +1611.01376 Information Theory +1611.01377 Cryptography and Security +1611.01378 Lattice +1611.01379 Computational Finance +1611.01381 Physics and Society +1611.01382 Phenomenology +1611.01383 Lattice +1611.01384 Algebraic Geometry +1611.01386 High Energy Astrophysical Phenomena +1611.01387 Applications +1611.01389 Computational Physics +1611.01390 Neurons and Cognition +1611.01391 Numerical Analysis +1611.01392 +1611.01393 Social and Information Networks +1611.01394 Phenomenology +1611.01395 Theory +1611.01396 Soft Condensed Matter +1611.01399 Optimization and Control +1611.01400 Information Retrieval +1611.01402 Solar and Stellar Astrophysics +1611.01403 Data Structures and Algorithms +1611.01404 Biological Physics +1611.01406 Probability +1611.01407 Atmospheric and Oceanic Physics +1611.01410 Chemical Physics +1611.01411 General Mathematics +1611.01412 Optimization and Control +1611.01413 General Mathematics +1611.01414 Information Theory +1611.01417 Optimization and Control +1611.01419 Computational Geometry +1611.01420 Numerical Analysis +1611.01421 Computer Vision and Pattern Recognition +1611.01422 Analysis of PDEs +1611.01423 Learning +1611.01424 Group Theory +1611.01425 K-Theory and Homology +1611.01426 Materials Science +1611.01428 Information Theory +1611.01430 Atomic Physics +1611.01432 Phenomenology +1611.01433 Combinatorics +1611.01434 Statistical Mechanics +1611.01435 +1611.01437 Statistics Theory +1611.01438 +1611.01439 Applications +1611.01444 Theory +1611.01445 Solar and Stellar Astrophysics +1611.01447 Computational Physics +1611.01449 Learning +1611.01450 Computation +1611.01451 High Energy Astrophysical Phenomena +1611.01452 Atomic Physics +1611.01455 Learning +1611.01456 Learning +1611.01458 Lattice +1611.01461 Spectral Theory +1611.01463 Portfolio Management +1611.01465 Commutative Algebra +1611.01467 Mesoscale and Nanoscale Physics +1611.01468 Space Physics +1611.01470 Functional Analysis +1611.01471 General Finance +1611.01472 +1611.01474 Combinatorics +1611.01475 +1611.01476 Plasma Physics +1611.01477 Cryptography and Security +1611.01479 Data Structures and Algorithms +1611.01480 Methodology +1611.01481 Mesoscale and Nanoscale Physics +1611.01482 Analysis of PDEs +1611.01483 +1611.01484 Computer Vision and Pattern Recognition +1611.01486 Cosmology and Nongalactic Astrophysics +1611.01488 Rings and Algebras +1611.01489 +1611.01492 Optimization and Control +1611.01493 Quantum Algebra +1611.01494 Functional Analysis +1611.01495 Physics Education +1611.01500 Theory +1611.01501 Software Engineering +1611.01502 General Mathematics +1611.01503 Learning +1611.01504 Machine Learning +1611.01506 Statistics Theory +1611.01510 +hep-ph/9602236 Phenomenology +math/0409584 Algebraic Geometry +0705.3368 +0708.1754 Chemical Physics +0801.4080 Theory +0806.1165 General Physics +0806.4299 +0812.2630 Chemical Physics +0812.2632 Chemical Physics +0903.3494 +1108.5447 +1210.1198 Numerical Analysis +1307.5242 +1309.2798 Computer Science and Game Theory +1311.4665 Computational Geometry +1311.5699 Probability +1401.4184 Materials Science +1402.3544 +1403.7083 +1404.1754 K-Theory and Homology +1405.1696 Astrophysics of Galaxies +1407.6589 Computational Physics +1408.1645 +1409.0971 Algebraic Geometry +1409.2449 +1409.2452 +1409.4659 Classical Analysis and ODEs +1410.0331 Dynamical Systems +1410.1415 Analysis of PDEs +1412.1205 Information Theory +1412.3348 Complex Variables +1412.4267 +1412.4750 Theory +1412.5646 Combinatorics +1501.00799 Cosmology and Nongalactic Astrophysics +1501.02682 +1502.01022 Astrophysics of Galaxies +1502.04642 +1503.00126 +1503.01158 Artificial Intelligence +1503.01366 Logic +1503.02115 Machine Learning +1503.03791 Discrete Mathematics +1503.05492 Commutative Algebra +1503.07423 Statistics Theory +1503.07562 Differential Geometry +1504.03124 +1505.03127 Representation Theory +1505.03363 +1505.07835 +1507.00067 Combinatorics +1507.00159 Information Theory +1507.03614 Information Theory +1507.03970 Atomic Physics +1507.07530 Probability +1507.08007 Neural and Evolutionary Computing +1507.08858 Phenomenology +1508.04219 Theory +1508.05012 Dynamical Systems +1509.01192 Number Theory +1509.01596 Distributed, Parallel, and Cluster Computing +1509.06135 Phenomenology +1509.07276 +1510.01120 High Energy Astrophysical Phenomena +1510.01906 Differential Geometry +1510.02203 High Energy Astrophysical Phenomena +1510.02708 Numerical Analysis +1510.04595 Sound +1510.06408 Dynamical Systems +1510.08743 Number Theory +1510.08957 +1511.00454 Operator Algebras +1511.09028 Algebraic Geometry +1511.09389 Discrete Mathematics +1512.00321 Differential Geometry +1512.01540 Materials Science +1512.07071 Physics and Society +1512.07257 Superconductivity +1512.07886 Theory +1512.08544 Differential Geometry +1512.09179 Optics +1601.00318 Learning +1601.01842 +1601.03041 Disordered Systems and Neural Networks +1601.04500 Information Theory +1601.04796 Differential Geometry +1601.07218 Theory +1601.07371 Materials Science +1601.07910 Disordered Systems and Neural Networks +1601.08016 Physics Education +1602.00509 Subcellular Processes +1602.00812 Computation and Language +1602.04565 Methodology +1602.06023 Computation and Language +1602.06182 Statistical Mechanics +1602.06308 Classical Analysis and ODEs +1602.06685 Mathematical Finance +1602.07569 Earth and Planetary Astrophysics +1602.08362 +1603.00899 General Physics +1603.00964 Robotics +1603.01484 Metric Geometry +1603.01801 Computer Vision and Pattern Recognition +1603.02513 Cosmology and Nongalactic Astrophysics +1603.02572 Mesoscale and Nanoscale Physics +1603.02653 Theory +1603.04200 Statistical Mechanics +1603.04799 Strongly Correlated Electrons +1603.05273 Information Theory +1603.05953 Optimization and Control +1603.06565 Strongly Correlated Electrons +1603.06893 Number Theory +1603.08698 Atmospheric and Oceanic Physics +1603.09000 Statistics Theory +1603.09261 Algebraic Geometry +1603.09403 Mesoscale and Nanoscale Physics +1603.09634 Theory +1604.00592 General Mathematics +1604.00763 Functional Analysis +1604.01119 Group Theory +1604.01690 Theory +1604.02562 Probability +1604.03621 Strongly Correlated Electrons +1604.04145 Populations and Evolution +1604.05155 Probability +1604.06101 Strongly Correlated Electrons +1604.06272 General Physics +1604.06548 +1604.07027 Computation +1604.08192 +1604.08694 Subcellular Processes +1604.08780 Mesoscale and Nanoscale Physics +1605.00994 Mesoscale and Nanoscale Physics +1605.01066 Earth and Planetary Astrophysics +1605.03207 Theory +1605.03961 Theory +1605.04057 Materials Science +1605.04269 Astrophysics of Galaxies +1605.04380 Information Theory +1605.04541 Fluid Dynamics +1605.04887 +1605.06296 Learning +1605.07291 Classical Analysis and ODEs +1605.07926 Soft Condensed Matter +1605.09517 Algebraic Geometry +1605.09710 Biomolecules +1606.00017 Phenomenology +1606.00737 Information Theory +1606.01657 Mesoscale and Nanoscale Physics +1606.01926 Solar and Stellar Astrophysics +1606.03034 Geometric Topology +1606.03250 Phenomenology +1606.03925 Classical Analysis and ODEs +1606.03947 Strongly Correlated Electrons +1606.04250 Artificial Intelligence +1606.07261 Cosmology and Nongalactic Astrophysics +1606.07483 Astrophysics of Galaxies +1606.08005 +1606.08338 Functional Analysis +1606.08617 +1606.09089 Quantum Gases +1606.09551 Materials Science +1607.01840 Statistical Mechanics +1607.02499 +1607.02552 Learning +1607.03864 +1607.03911 Soft Condensed Matter +1607.04294 Phenomenology +1607.04334 Distributed, Parallel, and Cluster Computing +1607.04482 Materials Science +1607.04573 Computer Vision and Pattern Recognition +1607.06816 Astrophysics of Galaxies +1607.06976 Methodology +1607.08716 Classical Analysis and ODEs +1608.02166 Numerical Analysis +1608.02237 Materials Science +1608.02926 Computation and Language +1608.03674 Cosmology and Nongalactic Astrophysics +1608.03868 Group Theory +1608.04455 Probability +1608.04603 Analysis of PDEs +1608.05199 Instrumentation and Detectors +1608.05298 History and Philosophy of Physics +1608.05480 Dynamical Systems +1608.05621 Superconductivity +1608.05681 Algebraic Geometry +1608.05825 Superconductivity +1608.05903 Classical Analysis and ODEs +1608.06001 Combinatorics +1608.06010 Learning +1608.06014 Learning +1608.06345 Computational Physics +1608.06590 Biological Physics +1608.06605 Algebraic Topology +1608.06657 Metric Geometry +1608.06963 +1608.06978 +1608.07013 Strongly Correlated Electrons +1608.07182 Computers and Society +1608.07283 Phenomenology +1608.07285 Astrophysics of Galaxies +1608.07288 Astrophysics of Galaxies +1608.07290 Solar and Stellar Astrophysics +1608.07294 Theory +1608.07296 Cosmology and Nongalactic Astrophysics +1608.07297 Astrophysics of Galaxies +1608.07302 Chemical Physics +1608.07304 Combinatorics +1608.07305 Optimization and Control +1608.07306 Populations and Evolution +1608.07307 Information Theory +1608.07308 Geometric Topology +1608.07310 Optimization and Control +1608.07317 Number Theory +1608.07318 Optics +1608.07322 Solar and Stellar Astrophysics +1608.07323 Human-Computer Interaction +1608.07325 +1608.07326 +1608.07328 Learning +1608.07329 Networking and Internet Architecture +1608.07333 +1608.07336 Computer Science and Game Theory +1608.07337 Cryptography and Security +1608.07338 Computer Vision and Pattern Recognition +1608.07342 Differential Geometry +1608.07343 Cryptography and Security +1608.07344 Classical Analysis and ODEs +1608.07346 Mesoscale and Nanoscale Physics +1608.07348 Computational Geometry +1608.07350 Number Theory +1608.07352 Systems and Control +1608.07353 Algebraic Geometry +1608.07356 Biological Physics +1608.07357 Networking and Internet Architecture +1608.07358 Information Theory +1608.07359 Theory +1608.07360 High Energy Astrophysical Phenomena +1608.07362 Information Theory +1608.07363 Probability +1608.07365 Computer Vision and Pattern Recognition +1608.07366 Group Theory +1608.07367 Probability +1608.07368 Probability +1608.07369 Algebraic Geometry +1608.07371 Computers and Society +1608.07373 Neural and Evolutionary Computing +1608.07374 Materials Science +1608.07376 Functional Analysis +1608.07377 Exactly Solvable and Integrable Systems +1608.07380 Statistical Mechanics +1608.07381 Plasma Physics +1608.07382 Analysis of PDEs +1608.07383 Combinatorics +1608.07387 Theory +1608.07390 Combinatorics +1608.07391 Physics Education +1608.07394 Atomic Physics +1608.07395 Operator Algebras +1608.07396 Materials Science +1608.07397 Numerical Analysis +1608.07398 Logic in Computer Science +1608.07399 Dynamical Systems +1608.07401 Strongly Correlated Electrons +1608.07402 +1608.07403 Robotics +1608.07404 Statistical Mechanics +1608.07405 Materials Science +1608.07406 Geometric Topology +1608.07409 Materials Science +1608.07410 Computer Science and Game Theory +1608.07411 Computer Vision and Pattern Recognition +1608.07413 Discrete Mathematics +1608.07415 Analysis of PDEs +1608.07416 Phenomenology +1608.07422 Number Theory +1608.07423 Analysis of PDEs +1608.07424 Differential Geometry +1608.07426 Analysis of PDEs +1608.07427 Materials Science +1608.07429 Materials Science +1608.07430 Analysis of PDEs +1608.07431 Theory +1608.07432 Optics +1608.07435 Systems and Control +1608.07438 Spectral Theory +1608.07439 Analysis of PDEs +1608.07440 Quantitative Methods +1608.07441 Learning +1608.07443 Distributed, Parallel, and Cluster Computing +1608.07444 Computer Vision and Pattern Recognition +1608.07446 Number Theory +1608.07449 Optics +1608.07450 Optimization and Control +1608.07454 Computer Vision and Pattern Recognition +1608.07457 +1608.07459 Biological Physics +1608.07461 +1608.07463 Astrophysics of Galaxies +1608.07465 +1608.07467 Functional Analysis +1608.07469 Biological Physics +1608.07470 Computer Vision and Pattern Recognition +1608.07471 General Physics +1608.07472 Algebraic Geometry +1608.07474 Number Theory +1608.07476 Differential Geometry +1608.07477 Algebraic Geometry +1608.07478 Lattice +1608.07479 Optics +1608.07480 Optics +1608.07482 Methodology +1608.07483 Numerical Analysis +1608.07485 Hardware Architecture +1608.07486 Computational Complexity +1608.07490 Algebraic Topology +1608.07494 Machine Learning +1608.07495 Functional Analysis +1608.07497 +1608.07499 Neurons and Cognition +1608.07501 +1608.07502 Learning +1608.07505 Data Structures and Algorithms +1608.07506 Theory +1608.07508 Mesoscale and Nanoscale Physics +1608.07510 Superconductivity +1608.07512 Atmospheric and Oceanic Physics +1608.07518 Networking and Internet Architecture +1608.07519 Pattern Formation and Solitons +1608.07521 +1608.07522 Cosmology and Nongalactic Astrophysics +1608.07523 Analysis of PDEs +1608.07524 Earth and Planetary Astrophysics +1608.07525 Instrumentation and Detectors +1608.07526 Machine Learning +1608.07528 Optics +1608.07529 Analysis of PDEs +1608.07534 Probability +1608.07535 Physics and Society +1608.07536 Learning +1608.07538 Experiment +1608.07539 Differential Geometry +1608.07540 Analysis of PDEs +1608.07541 Symplectic Geometry +1608.07542 Mesoscale and Nanoscale Physics +1608.07543 Group Theory +1608.07544 Optimization and Control +1608.07545 Analysis of PDEs +1608.07546 Astrophysics of Galaxies +1608.07551 +1608.07552 Analysis of PDEs +1608.07556 Instrumentation and Detectors +1608.07560 Analysis of PDEs +1608.07562 Astrophysics of Galaxies +1608.07564 Computational Complexity +1608.07565 Physics Education +1608.07566 Complex Variables +1608.07570 Functional Analysis +1608.07571 Analysis of PDEs +gr-qc/0607046 +hep-ph/0603008 Phenomenology +hep-th/0309270 Theory +1611.09175 Theory +1612.05706 Astrophysics of Galaxies +1612.05709 +1612.05732 Biological Physics +1612.05740 Learning +1612.05747 Subcellular Processes +1612.05749 Adaptation and Self-Organizing Systems +1612.05760 Social and Information Networks +1612.05828 Phenomenology +1612.05855 Applications +1612.05930 Logic +1612.05981 Theory +1612.05990 Materials Science +1612.06003 Learning +1612.06025 Computers and Society +1612.06067 Optimization and Control +1612.06073 +1612.06083 Machine Learning +1612.06115 Social and Information Networks +1612.06167 High Energy Astrophysical Phenomena +1612.06180 +1612.06186 Economics +1612.06267 Soft Condensed Matter +1612.06357 Neurons and Cognition +0706.2756 Strongly Correlated Electrons +0707.0112 Classical Analysis and ODEs +0710.4295 Algebraic Geometry +0711.1650 Strongly Correlated Electrons +0905.1285 Theory +0906.4324 Combinatorics +0912.1813 Group Theory +1005.4804 +1007.3862 Cryptography and Security +1010.5898 +1011.0100 Theory +1012.5999 Theory +1106.4525 Rings and Algebras +1110.0731 Theory +1110.3751 Algebraic Geometry +1110.3752 Theory +1111.3160 Information Theory +1202.4707 Optimization and Control +1203.3045 Algebraic Geometry +1209.0051 Representation Theory +1209.3449 General Physics +1211.4188 Differential Geometry +1303.2500 Category Theory +1303.4230 +1303.4974 Phenomenology +1304.6236 Algebraic Geometry +1305.6557 Representation Theory +1305.7126 Statistical Mechanics +1306.5009 Experiment +1307.4968 Algebraic Topology +1308.4425 Algebraic Geometry +1309.1564 Complex Variables +1310.0420 +1310.3561 Machine Learning +1310.4818 Algebraic Geometry +1311.3028 Algebraic Geometry +1401.0176 +1401.5001 K-Theory and Homology +1401.8011 Classical Analysis and ODEs +1403.1269 Phenomenology +1403.3885 Computer Science and Game Theory +1404.0559 Astrophysics of Galaxies +1404.4075 General Physics +1404.6350 Materials Science +1405.1478 Statistics Theory +1406.1936 Mathematical Finance +1407.1614 Symplectic Geometry +1407.3744 Quantum Algebra +1407.6686 Analysis of PDEs +1408.2659 Dynamical Systems +1408.4039 Algebraic Geometry +1408.6105 Algebraic Geometry +1408.6464 Analysis of PDEs +1409.0174 Representation Theory +1409.6398 Algebraic Geometry +1410.1495 Representation Theory +1410.3745 Probability +1410.6890 Discrete Mathematics +1410.7229 Probability +1410.8434 Algebraic Geometry +1411.7849 Algebraic Geometry +1412.0199 Populations and Evolution +1412.0511 Symplectic Geometry +1412.0514 Combinatorics +1412.0855 Statistical Mechanics +1412.4468 Statistical Mechanics +1412.6949 Fluid Dynamics +1501.00883 Statistical Mechanics +1501.01038 Operator Algebras +1501.03115 Statistical Mechanics +1501.06557 Dynamical Systems +1502.02469 Operator Algebras +1502.04340 Combinatorics +1502.05315 Operator Algebras +1502.07503 Quantum Algebra +1503.00063 Materials Science +1503.00224 Quantum Algebra +1503.00860 +1503.01388 Operator Algebras +1503.02485 Number Theory +1503.03508 Probability +1504.04064 Optimization and Control +1504.07787 +1505.01073 Representation Theory +1505.01372 Dynamical Systems +1505.02236 Algebraic Geometry +1505.02900 Number Theory +1505.03679 Number Theory +1505.05698 Materials Science +1505.06445 Commutative Algebra +1506.02468 Differential Geometry +1506.03195 Group Theory +1506.05957 Numerical Analysis +1506.07002 +1507.04885 Discrete Mathematics +1508.00172 Phenomenology +1508.00389 Operator Algebras +1508.01369 Mesoscale and Nanoscale Physics +1508.01850 Rings and Algebras +1508.03246 +1508.03373 Probability +1508.04628 Logic +1508.05317 Molecular Networks +1508.07047 Geometric Topology +1509.04198 Analysis of PDEs +1509.04990 Algebraic Geometry +1509.05879 Group Theory +1509.06262 Analysis of PDEs +1509.06414 Representation Theory +1509.06646 Combinatorics +1510.00494 Phenomenology +1510.01245 Experiment +1510.01800 Data Structures and Algorithms +1510.02119 Analysis of PDEs +1510.03959 Methodology +1510.04399 Theory +1510.05410 Representation Theory +1510.07845 +1511.00077 Mesoscale and Nanoscale Physics +1511.01289 Machine Learning +1511.01930 Operator Algebras +1511.02284 Computation +1511.02516 Mesoscale and Nanoscale Physics +1511.03894 Cryptography and Security +1511.04334 Computation +1511.04336 Numerical Analysis +1511.04875 Optics +1511.06029 Numerical Analysis +1511.08494 Information Theory +1511.08594 Statistical Mechanics +1511.08962 Functional Analysis +1512.00265 Probability +1512.00351 Cryptography and Security +1512.00414 Soft Condensed Matter +1512.01515 Computer Vision and Pattern Recognition +1512.01865 Solar and Stellar Astrophysics +1512.01870 Materials Science +1512.02394 Learning +1512.02728 Machine Learning +1512.02743 Information Theory +1512.02961 Information Theory +1512.03250 Category Theory +1512.03465 Computation and Language +1512.04352 Algebraic Geometry +1512.06386 Theory +1512.06770 +1512.07613 Discrete Mathematics +1512.07884 +1512.08215 Group Theory +1512.08556 Theory +1512.08834 Instrumentation and Detectors +1601.00181 Combinatorics +1601.00487 +1601.00693 Mesoscale and Nanoscale Physics +1601.00888 Functional Analysis +1601.01417 Superconductivity +1601.01955 Computation +1601.02373 Number Theory +1601.02512 Functional Analysis +1601.03733 Complex Variables +1601.04328 +1601.04378 +1601.05691 High Energy Astrophysical Phenomena +1601.05699 Accelerator Physics +1601.06313 Experiment +1601.07418 Optimization and Control +1601.07958 Analysis of PDEs +1602.00199 Statistics Theory +1602.00490 Multimedia +1602.00506 Earth and Planetary Astrophysics +1602.00543 General Topology +1602.01779 Algebraic Geometry +1602.02065 +1602.02144 Networking and Internet Architecture +1602.02360 Number Theory +1602.03275 Optimization and Control +1602.03459 Strongly Correlated Electrons +1602.03702 Strongly Correlated Electrons +1602.04096 Number Theory +1602.04103 Functional Analysis +1602.04106 Number Theory +1602.04135 Differential Geometry +1602.04384 Experiment +1602.05136 Data Structures and Algorithms +1602.05270 Fluid Dynamics +1602.05273 Fluid Dynamics +1602.05685 +1602.05755 Analysis of PDEs +1602.06395 Computational Complexity +1602.06405 Atomic Physics +1602.06470 Probability +1602.06610 Methodology +1602.06809 Cosmology and Nongalactic Astrophysics +1602.06856 +1602.06908 +1602.07382 Symplectic Geometry +1602.07401 Instrumentation and Detectors +1602.07789 Accelerator Physics +1602.07906 +1602.08045 Sound +1602.08191 Learning +1602.08538 Combinatorics +1602.08621 Optics +1602.08919 +1603.00173 +1603.00246 Functional Analysis +1603.00333 Materials Science +1603.00497 Metric Geometry +1603.00828 Quantum Gases +1603.01560 Representation Theory +1603.01867 Algebraic Geometry +1603.02131 +1603.02924 Mesoscale and Nanoscale Physics +1603.03000 Analysis of PDEs +1603.03350 Analysis of PDEs +1603.03360 Disordered Systems and Neural Networks +1603.03405 Classical Analysis and ODEs +1603.03687 Disordered Systems and Neural Networks +1603.03734 Systems and Control +1603.03833 Robotics +1603.04084 Statistical Mechanics +1603.04129 Quantum Algebra +1603.04636 Soft Condensed Matter +1603.04894 Algebraic Geometry +1603.05208 Multiagent Systems +1603.05683 Group Theory +1603.05811 Number Theory +1603.06451 Strongly Correlated Electrons +1603.06697 Complex Variables +1603.07375 +1603.07708 Number Theory +1603.08089 Computers and Society +1603.08531 Theory +1603.09268 Theory +1603.09504 Instrumentation and Detectors +1603.09508 Instrumentation and Detectors +1603.09516 Instrumentation and Detectors +1604.00236 Instrumentation and Detectors +1604.00486 Combinatorics +1604.00670 Instrumentation and Methods for Astrophysics +1604.00865 Quantum Gases +1604.00957 Disordered Systems and Neural Networks +1604.01486 Rings and Algebras +1604.01549 Rings and Algebras +1604.02410 Number Theory +1604.02520 Probability +1604.02576 Statistics Theory +1604.03173 Dynamical Systems +1604.03276 Sound +1604.03653 Analysis of PDEs +1604.03663 +1604.04369 Differential Geometry +1604.04544 Earth and Planetary Astrophysics +1604.05138 Optics +1604.06217 +1604.06665 Numerical Analysis +1604.06816 Optics +1604.06869 Classical Analysis and ODEs +1604.07139 Computer Science and Game Theory +1604.07241 Solar and Stellar Astrophysics +1604.07300 Statistics Theory +1604.07354 Methodology +1604.07385 Combinatorics +1604.07444 Physics and Society +1604.07595 Functional Analysis +1604.07599 Instrumentation and Detectors +1604.07690 Mathematical Finance +1604.08269 Computer Vision and Pattern Recognition +1604.08363 Probability +1604.08379 Computer Science and Game Theory +1604.08701 Solar and Stellar Astrophysics +1605.00049 Classical Analysis and ODEs +1605.00239 Phenomenology +1605.00365 Computational Physics +1605.00391 Methodology +1605.00758 Methodology +1605.01642 Mesoscale and Nanoscale Physics +1605.01888 Combinatorics +1605.02043 Distributed, Parallel, and Cluster Computing +1605.02077 Statistics Theory +1605.02078 +1605.02590 +1605.02655 Commutative Algebra +1605.02824 Databases +1605.02943 Probability +1605.02972 Combinatorics +1605.03113 Quantum Algebra +1605.03141 Combinatorics +1605.03152 Data Structures and Algorithms +1605.03272 Strongly Correlated Electrons +1605.04270 Multimedia +1605.04468 Biomolecules +1605.04973 Optimization and Control +1605.05182 Mesoscale and Nanoscale Physics +1605.05194 Optimization and Control +1605.05409 Mesoscale and Nanoscale Physics +1605.05578 Information Theory +1605.05834 Optics +1605.06739 Number Theory +1605.06924 Mesoscale and Nanoscale Physics +1605.06943 Soft Condensed Matter +1605.07269 Spectral Theory +1605.07760 Human-Computer Interaction +1605.08254 Machine Learning +1605.08320 +1605.08426 Materials Science +1605.09030 Optimization and Control +1605.09132 Rings and Algebras +1605.09183 Solar and Stellar Astrophysics +1605.09329 Probability +1605.09511 Physics and Society +1605.09534 Rings and Algebras +1605.09565 +1605.09598 +1606.00045 Geometric Topology +1606.00209 High Energy Astrophysical Phenomena +1606.00554 Phenomenology +1606.00569 Operator Algebras +1606.01316 Machine Learning +1606.01406 Chemical Physics +1606.02189 Strongly Correlated Electrons +1606.02268 Theory +1606.02937 Functional Analysis +1606.03262 Statistical Mechanics +1606.03571 Networking and Internet Architecture +1606.04113 Phenomenology +1606.04643 +1606.04898 High Energy Astrophysical Phenomena +1606.05121 Strongly Correlated Electrons +1606.05291 Spectral Theory +1606.05320 Machine Learning +1606.05381 Computer Vision and Pattern Recognition +1606.05478 Functional Analysis +1606.05696 Distributed, Parallel, and Cluster Computing +1606.05800 Statistical Mechanics +1606.05825 Networking and Internet Architecture +1606.05883 Chemical Physics +1606.06293 Cosmology and Nongalactic Astrophysics +1606.06469 Functional Analysis +1606.06509 Social and Information Networks +1606.06529 Analysis of PDEs +1606.06585 Soft Condensed Matter +1606.07120 Classical Analysis and ODEs +1606.07717 Emerging Technologies +1606.07773 Phenomenology +1606.07789 Materials Science +1606.08263 Statistical Mechanics +1606.08349 Functional Analysis +1606.08432 Number Theory +1606.08468 Theory +1606.08692 Probability +1606.09183 Combinatorics +1606.09287 Materials Science +1606.09504 Experiment +1607.00099 Rings and Algebras +1607.00257 Combinatorics +1607.00267 Computer Vision and Pattern Recognition +1607.00427 Analysis of PDEs +1607.00495 Solar and Stellar Astrophysics +1607.00525 Numerical Analysis +1607.01294 Computational Geometry +1607.01367 Applications +1607.01720 Cosmology and Nongalactic Astrophysics +1607.01860 Quantum Gases +1607.02272 Statistical Mechanics +1607.02756 Classical Analysis and ODEs +1607.02798 Numerical Analysis +1607.03379 Materials Science +1607.03867 Astrophysics of Galaxies +1607.03960 Physics Education +1607.04095 Analysis of PDEs +1607.04162 Logic in Computer Science +1607.04853 Computation and Language +1607.06308 Solar and Stellar Astrophysics +1607.07007 Operator Algebras +1607.07538 Phenomenology +1607.07566 Strongly Correlated Electrons +1607.07933 Probability +1607.08375 Phenomenology +1607.08707 Medical Physics +1608.00245 Superconductivity +1608.00284 Algebraic Geometry +1608.00923 Materials Science +1608.01090 Analysis of PDEs +1608.01147 Lattice +1608.01193 Soft Condensed Matter +1608.01389 Experiment +1608.01884 Artificial Intelligence +1608.02022 Number Theory +1608.02055 Combinatorics +1608.02134 Algebraic Geometry +1608.02481 Lattice +1608.02904 Information Retrieval +1608.02998 Materials Science +1608.03251 Physics and Society +1608.04379 Probability +1608.04659 Emerging Technologies +1608.05112 Astrophysics of Galaxies +1608.05178 Group Theory +1608.05522 Information Theory +1608.06072 Learning +1608.06233 Combinatorics +1608.06374 Learning +1608.08185 Group Theory +1608.08187 Atmospheric and Oceanic Physics +1608.08260 Solar and Stellar Astrophysics +1609.00121 Algebraic Geometry +1609.00436 Analysis of PDEs +1609.00574 Algebraic Geometry +1609.00819 Pricing of Securities +1609.00901 +1609.00926 Statistical Finance +1609.00965 Metric Geometry +1609.01093 Operator Algebras +1609.02080 Logic +1609.02272 Biological Physics +1609.02943 Cryptography and Security +1609.02962 Instrumentation and Detectors +1609.02978 Optics +1609.03382 Theory +1609.03445 Phenomenology +1609.03543 Artificial Intelligence +1609.03556 Combinatorics +1609.03649 Materials Science +1609.03676 Theory +1609.04338 Physics and Society +1609.04439 Formal Languages and Automata Theory +1609.04451 High Energy Astrophysical Phenomena +1609.04518 Accelerator Physics +1609.04569 Hardware Architecture +1609.04688 Phenomenology +1609.04804 Solar and Stellar Astrophysics +1609.05403 Quantum Algebra +1609.05518 Artificial Intelligence +1609.06323 Computer Vision and Pattern Recognition +1609.06557 Theory +1609.06660 Optimization and Control +1609.06820 +1609.06886 Phenomenology +1609.07069 +1609.07118 Physics and Society +1609.07514 Instrumentation and Detectors +1609.07580 Social and Information Networks +1609.07695 Systems and Control +1609.07810 Differential Geometry +1609.07925 Symplectic Geometry +1609.07964 Databases +1609.07971 Probability +1609.08089 Computers and Society +1609.08252 Optimization and Control +1609.08370 Combinatorics +1609.08738 Probability +1609.08767 Data Structures and Algorithms +1609.09134 Discrete Mathematics +1609.09176 Analysis of PDEs +1609.09193 +1609.09232 Theory +1609.09288 Logic in Computer Science +1609.09300 Solar and Stellar Astrophysics +1609.09302 Theory +1609.09346 Computational Physics +1609.09349 +1609.09475 Computer Vision and Pattern Recognition +1609.09568 Superconductivity +1609.09611 Disordered Systems and Neural Networks +1609.09626 Earth and Planetary Astrophysics +1609.09844 +1610.00001 Systems and Control +1610.00002 Fluid Dynamics +1610.00003 Instrumentation and Detectors +1610.00004 Computational Engineering, Finance, and Science +1610.00008 Astrophysics of Galaxies +1610.00018 Theory +1610.00021 Probability +1610.00024 Distributed, Parallel, and Cluster Computing +1610.00027 Analysis of PDEs +1610.00029 Computer Vision and Pattern Recognition +1610.00030 Computation and Language +1610.00031 Computation and Language +1610.00037 Category Theory +1610.00038 Strongly Correlated Electrons +1610.00039 Applications +1610.00041 +1610.00043 Information Theory +1610.00044 Networking and Internet Architecture +1610.00045 Optics +1610.00046 Group Theory +1610.00048 Other Statistics +1610.00049 Distributed, Parallel, and Cluster Computing +1610.00052 Materials Science +1610.00054 Artificial Intelligence +1610.00055 Commutative Algebra +1610.00057 Information Theory +1610.00058 Information Theory +1610.00060 Analysis of PDEs +1610.00061 Accelerator Physics +1610.00062 Mesoscale and Nanoscale Physics +1610.00064 Learning +1610.00066 Group Theory +1610.00067 +1610.00068 Methodology +1610.00071 Networking and Internet Architecture +1610.00072 Computation and Language +1610.00074 Fluid Dynamics +1610.00076 Classical Analysis and ODEs +1610.00077 Other Quantitative Biology +1610.00078 Metric Geometry +1610.00079 Numerical Analysis +1610.00080 Optics +1610.00084 Spectral Theory +1610.00085 Learning +1610.00086 Social and Information Networks +1610.00087 Sound +1610.00088 Rings and Algebras +1610.00089 Systems and Control +1610.00092 Group Theory +1610.00093 Rings and Algebras +1610.00098 Classical Analysis and ODEs +1610.00099 Superconductivity +1610.00101 Statistical Mechanics +1610.00104 +1610.00105 +1610.00106 Instrumentation and Methods for Astrophysics +1610.00107 Combinatorics +1610.00108 Number Theory +1610.00109 Superconductivity +1610.00111 Operator Algebras +1610.00115 Theory +1610.00116 Combinatorics +1610.00118 Information Theory +1610.00120 Statistical Mechanics +1610.00121 Genomics +1610.00128 Number Theory +1610.00132 History and Philosophy of Physics +1610.00134 Computer Vision and Pattern Recognition +1610.00137 Representation Theory +1610.00139 Discrete Mathematics +1610.00142 Physics and Society +1610.00145 General Topology +1610.00146 Cosmology and Nongalactic Astrophysics +1610.00147 Methodology +1610.00148 Combinatorics +1610.00149 Performance +1610.00152 Mesoscale and Nanoscale Physics +1610.00155 Computational Geometry +1610.00157 Computer Science and Game Theory +1610.00158 Algebraic Topology +1610.00159 Computational Complexity +1610.00164 Number Theory +1610.00165 Materials Science +1610.00166 Number Theory +1610.00167 Dynamical Systems +1610.00172 Analysis of PDEs +1610.00175 Computer Vision and Pattern Recognition +1610.00176 Commutative Algebra +1610.00177 +1610.00178 Fluid Dynamics +1610.00179 Combinatorics +1610.00181 Biomolecules +1610.00183 Biological Physics +1610.00184 Biomolecules +1610.00185 Information Theory +1610.00188 Analysis of PDEs +1610.00189 Machine Learning +1610.00191 Probability +1610.00194 Probability +1610.00195 Applications +1610.00196 Optics +1610.00198 Group Theory +1610.00199 Numerical Analysis +1610.00200 Statistical Mechanics +1610.00201 Mesoscale and Nanoscale Physics +1610.00202 Strongly Correlated Electrons +1610.00203 Analysis of PDEs +1610.00204 Analysis of PDEs +1610.00205 Algebraic Geometry +1610.00207 Methodology +1610.00208 Probability +1610.00209 Data Structures and Algorithms +1610.00210 Instrumentation and Detectors +1610.00211 Computation and Language +1610.00212 Algebraic Geometry +1610.00213 Logic +1610.00214 Human-Computer Interaction +1610.00216 Biomolecules +1610.00219 Social and Information Networks +1610.00222 Mesoscale and Nanoscale Physics +1610.00224 Analysis of PDEs +1610.00225 +1610.00227 Information Theory +1610.00229 Analysis of PDEs +1610.00231 Chemical Physics +1610.00236 Optics +1610.00237 Analysis of PDEs +1610.00238 Combinatorics +1610.00241 Theory +1610.00243 Learning +1610.00245 Mesoscale and Nanoscale Physics +1610.00246 Machine Learning +1610.00248 Computers and Society +1610.00250 Earth and Planetary Astrophysics +1610.00254 Astrophysics of Galaxies +1610.00255 High Energy Astrophysical Phenomena +1610.00256 Pricing of Securities +1610.00259 Statistical Finance +1610.00262 Neurons and Cognition +1610.00265 Instrumentation and Methods for Astrophysics +1610.00266 History and Philosophy of Physics +1610.00268 Classical Analysis and ODEs +1610.00269 Materials Science +1610.00271 Materials Science +1610.00272 Instrumentation and Methods for Astrophysics +1610.00274 Economics +1610.00275 Lattice +1610.00276 Dynamical Systems +1610.00277 Computation and Language +1610.00278 Analysis of PDEs +1610.00279 Computer Vision and Pattern Recognition +1610.00281 Quantum Gases +1610.00282 Probability +1610.00289 Networking and Internet Architecture +1610.00290 Other Statistics +1610.00291 Computer Vision and Pattern Recognition +1610.00293 Populations and Evolution +1610.00297 Combinatorics +1610.00299 Commutative Algebra +1610.00300 Computational Geometry +1610.00302 Theory +1610.00305 High Energy Astrophysical Phenomena +1610.00307 Computer Vision and Pattern Recognition +1610.00310 Materials Science +1610.00311 Computation and Language +1610.00312 Mathematical Finance +1610.00313 Group Theory +1610.00316 Statistics Theory +1610.00317 Dynamical Systems +1610.00318 Computer Vision and Pattern Recognition +1610.00319 Logic +1610.00320 Computer Vision and Pattern Recognition +1610.00321 Medical Physics +1610.00322 Classical Analysis and ODEs +1610.00323 Formal Languages and Automata Theory +1610.00324 Learning +1610.00326 Theory +1610.00330 Geometric Topology +1610.00331 Formal Languages and Automata Theory +1610.00332 Statistical Finance +1610.00333 Formal Languages and Automata Theory +1610.00336 +1610.00338 Formal Languages and Automata Theory +1610.00340 Molecular Networks +1610.00341 Metric Geometry +1610.00343 Operator Algebras +1610.00344 Strongly Correlated Electrons +1610.00345 Methodology +1610.00348 Systems and Control +1610.00349 Classical Analysis and ODEs +1610.00351 Differential Geometry +1610.00356 +1610.00357 +1610.00358 Probability +1610.00361 Computational Geometry +1610.00362 Systems and Control +1610.00365 Materials Science +1610.00366 Artificial Intelligence +1610.00367 Number Theory +1610.00368 Information Theory +1610.00370 Logic +1610.00371 Solar and Stellar Astrophysics +1610.00372 Combinatorics +1610.00375 Chemical Physics +1610.00376 +1610.00379 +1610.00380 Spectral Theory +1610.00381 Information Theory +1610.00382 Computer Vision and Pattern Recognition +1610.00383 Biological Physics +1610.00384 Information Theory +1610.00385 Materials Science +1610.00386 Computer Vision and Pattern Recognition +1610.00389 Astrophysics of Galaxies +1610.00390 Mesoscale and Nanoscale Physics +1610.00395 Mathematical Finance +1610.00396 Algebraic Geometry +1610.00397 Numerical Analysis +1610.00401 Geometric Topology +1610.00404 Numerical Analysis +1610.00405 Computer Vision and Pattern Recognition +1610.00409 Materials Science +1610.00410 Computer Vision and Pattern Recognition +1610.00411 +1610.00412 Phenomenology +1610.00413 Optics +1610.00418 Theory +1610.00419 Statistical Mechanics +1610.00424 Combinatorics +1610.00425 Functional Analysis +1610.00427 Computer Vision and Pattern Recognition +1610.00429 High Energy Astrophysical Phenomena +1610.00430 Materials Science +1610.00433 Instrumentation and Detectors +1610.00434 Cryptography and Security +1610.00435 Materials Science +1610.00436 Analysis of PDEs +1610.00438 Instrumentation and Methods for Astrophysics +1610.00442 Artificial Intelligence +1610.00443 Theory +1610.00445 +1610.00446 Adaptation and Self-Organizing Systems +1610.00447 Phenomenology +1610.00448 +1610.00449 +1610.00450 Logic in Computer Science +1610.00452 Populations and Evolution +1610.00453 Statistical Mechanics +1610.00456 Analysis of PDEs +1610.00457 Distributed, Parallel, and Cluster Computing +1610.00458 Strongly Correlated Electrons +1610.00459 Other Condensed Matter +1610.00460 Computers and Society +1610.00461 Networking and Internet Architecture +1610.00463 Materials Science +1610.00466 Theory +1610.00467 Representation Theory +1610.00470 Systems and Control +1610.00471 Medical Physics +1610.00472 Materials Science +1610.00476 Populations and Evolution +1610.00477 Group Theory +1610.00481 Probability +1610.00483 +1610.00490 Chemical Physics +1610.00491 Dynamical Systems +1610.00493 Databases +1610.00498 Materials Science +1610.00502 Software Engineering +1610.00503 Analysis of PDEs +1610.00505 Data Structures and Algorithms +1610.00507 Analysis of PDEs +1610.00510 History and Overview +1610.00511 Dynamical Systems +1610.00513 Strongly Correlated Electrons +1610.00514 Probability +1610.00515 Logic +1610.00516 Symplectic Geometry +1610.00517 Logic +1610.00519 +1610.00520 Machine Learning +1610.00522 Probability +1610.00524 Astrophysics of Galaxies +1610.00525 Commutative Algebra +1610.00526 +1610.00528 +1610.00529 Robotics +1610.00532 Group Theory +1610.00536 +1610.00537 +1610.00538 Mesoscale and Nanoscale Physics +1610.00539 +1610.00541 Combinatorics +1610.00542 Neurons and Cognition +1610.00544 History and Overview +1610.00545 Spectral Theory +1610.00546 Phenomenology +1610.00549 +1610.00551 Rings and Algebras +1610.00552 Computation and Language +1610.00558 Functional Analysis +1610.00559 Instrumentation and Methods for Astrophysics +1610.00560 Performance +1610.00561 Exactly Solvable and Integrable Systems +1610.00562 Chemical Physics +1610.00563 Differential Geometry +1610.00564 Learning +1610.00566 Symplectic Geometry +1610.00567 Number Theory +1610.00570 Combinatorics +1610.00571 Computational Complexity +1610.00572 Computation and Language +1610.00573 Solar and Stellar Astrophysics +1610.00574 Databases +1610.00575 Data Structures and Algorithms +1610.00577 Pricing of Securities +1610.00578 Solar and Stellar Astrophysics +1610.00579 Learning +1610.00580 Learning +1610.00581 +1610.00582 Instrumentation and Methods for Astrophysics +1610.00584 +1610.00585 Combinatorics +1610.00588 Tissues and Organs +1610.00590 +1610.00592 Materials Science +1610.00593 High Energy Astrophysical Phenomena +1610.00594 Materials Science +1610.00596 Statistical Mechanics +1610.00598 History and Overview +1610.00599 Complex Variables +1610.00600 Earth and Planetary Astrophysics +1610.00602 Computation and Language +1610.00604 Plasma Physics +1610.00607 Solar and Stellar Astrophysics +1610.00608 Strongly Correlated Electrons +1610.00611 Neurons and Cognition +1610.00613 +1610.00614 Logic +1610.00615 Geometric Topology +1610.00617 Soft Condensed Matter +1610.00618 History and Overview +1610.00620 Networking and Internet Architecture +1610.00621 Atmospheric and Oceanic Physics +1610.00623 Biological Physics +1610.00624 Distributed, Parallel, and Cluster Computing +1610.00625 Numerical Analysis +1610.00626 +1610.00627 +1610.00630 Systems and Control +1610.00632 Cryptography and Security +1610.00634 Computation and Language +1610.00635 Networking and Internet Architecture +1610.00638 Quantitative Methods +1610.00640 Cryptography and Security +1610.00641 Probability +1610.00643 Chemical Physics +1610.00650 Materials Science +1610.00651 Computer Science and Game Theory +1610.00652 Metric Geometry +1610.00653 Statistical Mechanics +1610.00654 Theory +1610.00656 Physics and Society +1610.00661 Quantitative Methods +1610.00663 Information Theory +1610.00664 Social and Information Networks +1610.00665 Solar and Stellar Astrophysics +1610.00667 Machine Learning +1610.00668 Algebraic Geometry +1610.00671 +1610.00673 Learning +1610.00674 Analysis of PDEs +1610.00675 Symplectic Geometry +1610.00676 Analysis of PDEs +1610.00677 Analysis of PDEs +1610.00678 Experiment +1610.00682 +1610.00684 Probability +1610.00687 Geophysics +1610.00690 Statistics Theory +1610.00691 Cosmology and Nongalactic Astrophysics +1610.00692 Operator Algebras +1610.00693 Instrumentation and Methods for Astrophysics +1610.00697 Theory +hep-th/0208104 Theory +hep-th/0302099 Theory +hep-th/0402023 Theory +hep-th/0502053 Theory +hep-th/0605005 Theory +hep-th/0606034 Theory +hep-th/0701244 Theory +hep-th/9711036 Theory +hep-th/9810064 Theory +0704.3388 Geometric Topology +0709.2761 +0804.4154 Combinatorics +0912.5039 Combinatorics +1001.1002 Combinatorics +1004.1844 Algebraic Geometry +1007.1897 Combinatorics +1007.3252 Cosmology and Nongalactic Astrophysics +1008.1963 Cosmology and Nongalactic Astrophysics +1012.3716 Combinatorics +1101.4883 Algebraic Topology +1104.2414 Chemical Physics +1106.2870 Combinatorics +1106.2871 Combinatorics +1202.0844 Algebraic Topology +1203.2891 +1204.5709 K-Theory and Homology +1205.3303 Statistical Mechanics +1205.4185 Theory +1207.4382 Data Structures and Algorithms +1208.5239 Probability +1210.1199 +1211.3336 Analysis of PDEs +1211.4975 Probability +1212.2196 Algebraic Geometry +1301.6042 Differential Geometry +1303.2648 Algebraic Geometry +1303.4454 Algebraic Geometry +1303.7062 +1303.7147 Materials Science +1305.1653 Probability +1305.5719 Systems and Control +1306.4816 Probability +1306.6109 Networking and Internet Architecture +1307.7170 Systems and Control +1308.2263 Differential Geometry +1309.1439 Theory +1309.2621 Probability +1310.1696 Differential Geometry +1312.7842 Theory +1401.0936 Data Structures and Algorithms +1401.4888 +1402.6792 Social and Information Networks +1403.0647 Spectral Theory +1403.4269 Optics +1403.5021 Mesoscale and Nanoscale Physics +1404.0390 Data Structures and Algorithms +1404.2481 Differential Geometry +1404.5167 Materials Science +1405.5919 Data Structures and Algorithms +1406.2138 Symplectic Geometry +1406.3291 Theory +1406.4047 Systems and Control +1406.5392 Methodology +1406.7844 Experiment +1408.1763 Instrumentation and Detectors +1408.2266 Soft Condensed Matter +1408.3210 +1408.4953 Category Theory +1408.6427 Information Theory +1409.2547 Functional Analysis +1410.0248 Category Theory +1410.3695 Optimization and Control +1410.4430 Probability +1410.5943 Metric Geometry +1410.8346 +1411.0194 Data Structures and Algorithms +1411.2228 Differential Geometry +1411.2320 Algebraic Topology +1411.4186 Optimization and Control +1411.4498 Data Structures and Algorithms +1411.6502 General Mathematics +1411.7490 Algebraic Topology +1412.3363 Differential Geometry +1412.4404 Combinatorics +1412.5773 Populations and Evolution +1412.7758 Geometric Topology +1502.01421 Geophysics +1502.02246 +1502.02997 Dynamical Systems +1502.04880 Representation Theory +1502.05524 +1502.06685 Theory +1502.06986 Probability +1503.00763 Soft Condensed Matter +1503.00921 Representation Theory +1503.02161 Algebraic Geometry +1503.02202 Analysis of PDEs +1503.03096 +1503.06877 Optimization and Control +1503.08757 Soft Condensed Matter +1504.00922 Symplectic Geometry +1504.02926 Computer Science and Game Theory +1504.04818 Information Retrieval +1504.06456 Quantum Algebra +1504.07809 Optics +1505.00461 +1505.00677 +1505.00679 +1505.01302 +1505.02329 Algebraic Geometry +1505.03470 +1505.03953 Artificial Intelligence +1505.04160 Experiment +1505.04837 Theory +1505.05352 Number Theory +1505.05903 Algebraic Geometry +1505.05972 Learning +1505.08050 Complex Variables +1506.00018 Dynamical Systems +1506.00556 Probability +1506.00990 Learning +1506.01266 Functional Analysis +1506.01859 Numerical Analysis +1506.02910 +1506.03739 Optics +1506.04743 Mesoscale and Nanoscale Physics +1506.07722 Statistics Theory +1506.08245 Geometric Topology +1506.09194 Quantum Algebra +1507.03222 Phenomenology +1507.03847 +1507.04108 +1507.04410 Physics and Society +1507.05796 Distributed, Parallel, and Cluster Computing +1507.08327 Functional Analysis +1507.08626 Differential Geometry +1507.08965 Functional Analysis +1508.00147 Mesoscale and Nanoscale Physics +1508.01068 Logic +1508.01943 Rings and Algebras +1508.02149 Group Theory +1508.02213 Classical Physics +1508.02595 Strongly Correlated Electrons +1508.03113 Social and Information Networks +1508.03712 Machine Learning +1508.05259 Mesoscale and Nanoscale Physics +1508.05488 Computational Geometry +1508.05780 +1508.06201 Mesoscale and Nanoscale Physics +1508.06870 Materials Science +1508.07513 Probability +1509.00146 Phenomenology +1509.01866 Data Structures and Algorithms +1509.02894 Fluid Dynamics +1509.02957 Computation +1509.03382 Optics +1509.04055 Instrumentation and Detectors +1509.05326 Applications +1509.08764 Artificial Intelligence +1509.08907 Theory +1510.00457 Group Theory +1510.01294 +1510.02759 Mesoscale and Nanoscale Physics +1510.03508 +1510.04246 Numerical Analysis +1510.05185 Social and Information Networks +1510.05220 Mesoscale and Nanoscale Physics +1510.05522 +1510.05540 Phenomenology +1510.05956 Probability +1510.06630 Probability +1510.08014 Optics +1511.00347 Systems and Control +1511.00455 Statistical Mechanics +1511.01275 Optics +1511.01292 +1511.01365 Optimization and Control +1511.02546 Analysis of PDEs +1511.03562 Instrumentation and Methods for Astrophysics +1511.03588 Combinatorics +1511.03706 Combinatorics +1511.03881 Information Theory +1511.04189 Symplectic Geometry +1511.05242 Phenomenology +1511.06092 Superconductivity +1511.07452 Phenomenology +1511.07838 Learning +1511.08625 Strongly Correlated Electrons +1512.00460 Phenomenology +1512.00808 +1512.01210 Computational Complexity +1512.01265 Quantum Gases +1512.01846 High Energy Astrophysical Phenomena +1512.02012 Category Theory +1512.02017 Computer Vision and Pattern Recognition +1512.02467 Statistical Mechanics +1512.02898 Digital Libraries +1512.03090 Physics and Society +1512.04279 Theory +1512.04421 Functional Analysis +1512.06011 +1512.06559 Computer Vision and Pattern Recognition +1512.06851 Phenomenology +1512.07747 Number Theory +1512.08159 Statistics Theory +1512.08205 Data Analysis, Statistics and Probability +1512.08212 Computer Vision and Pattern Recognition +1512.08456 Computers and Society +1512.08744 Statistical Mechanics +1601.00090 Complex Variables +1601.01946 Theory +1601.02430 Numerical Analysis +1601.03905 Lattice +1601.04200 Numerical Analysis +1601.05026 Mesoscale and Nanoscale Physics +1601.05506 Molecular Networks +1601.06854 Analysis of PDEs +1601.06894 Superconductivity +1601.07970 Populations and Evolution +1602.00627 Analysis of PDEs +1602.00836 Symbolic Computation +1602.00839 Trading and Market Microstructure +1602.01582 Learning +1602.01690 Learning +1602.01925 Computation and Language +1602.01959 Distributed, Parallel, and Cluster Computing +1602.02018 Data Structures and Algorithms +1602.02109 Phenomenology +1602.02724 Classical Analysis and ODEs +1602.03012 Computer Vision and Pattern Recognition +1602.03559 Probability +1602.03876 Chemical Physics +1602.04052 Computer Vision and Pattern Recognition +1602.04474 Machine Learning +1602.04482 Information Theory +1602.04703 +1602.04900 Networking and Internet Architecture +1602.05995 Analysis of PDEs +1602.06628 Phenomenology +1602.06855 Economics +1602.07189 +1602.07307 Theory +1602.07375 Classical Analysis and ODEs +1602.07512 General Physics +1602.07597 Materials Science +1602.07831 Strongly Correlated Electrons +1602.08332 Artificial Intelligence +1602.08814 High Energy Astrophysical Phenomena +1603.00846 Geometric Topology +1603.00992 +1603.01051 Analysis of PDEs +1603.02287 Strongly Correlated Electrons +1603.02618 Computation and Language +1603.02920 +1603.03678 Machine Learning +1603.03794 Strongly Correlated Electrons +1603.04034 Optimization and Control +1603.04287 Software Engineering +1603.04899 Superconductivity +1603.05143 Materials Science +1603.05794 Populations and Evolution +1603.05887 Computational Physics +1603.06352 Learning +1603.06666 Solar and Stellar Astrophysics +1603.07707 Atomic Physics +1603.07717 Materials Science +1603.07842 Physics and Society +1603.07925 Astrophysics of Galaxies +1603.08074 Symplectic Geometry +1603.08954 Algebraic Geometry +1603.09320 Data Structures and Algorithms +1603.09477 +1604.00356 Quantum Gases +1604.00623 +1604.01124 Quantum Algebra +1604.01876 +1604.02309 Statistics Theory +1604.02336 Artificial Intelligence +1604.02568 Numerical Analysis +1604.02885 Computer Vision and Pattern Recognition +1604.02892 Computers and Society +1604.03382 Algebraic Geometry +1604.04486 Phenomenology +1604.04645 Probability +1604.04769 Phenomenology +1604.04963 Mathematical Finance +1604.05003 Theory +1604.05088 Instrumentation and Methods for Astrophysics +1604.05362 Soft Condensed Matter +1604.05387 +1604.05526 Atomic Physics +1604.06280 +1604.06372 +1604.06984 Distributed, Parallel, and Cluster Computing +1604.07218 Phenomenology +1604.07265 +1604.07489 Chemical Physics +1604.07888 Algebraic Geometry +1604.07928 Learning +1604.08179 Computer Science and Game Theory +1604.08257 Fluid Dynamics +1604.08325 Representation Theory +1604.08871 Theory +1605.00388 Machine Learning +1605.00547 +1605.00759 Theory +1605.00850 Mesoscale and Nanoscale Physics +1605.00956 +1605.01151 Computers and Society +1605.01259 Superconductivity +1605.01294 Number Theory +1605.01506 Number Theory +1605.01676 Symplectic Geometry +1605.01847 Superconductivity +1605.01994 Distributed, Parallel, and Cluster Computing +1605.02371 Phenomenology +1605.02650 Instrumentation and Methods for Astrophysics +1605.03364 Numerical Analysis +1605.03586 Astrophysics of Galaxies +1605.03789 Combinatorics +1605.04131 Optimization and Control +1605.04559 Cryptography and Security +1605.04582 Hardware Architecture +1605.04637 Number Theory +1605.05219 Databases +1605.05232 Optimization and Control +1605.05256 Theory +1605.05490 Combinatorics +1605.05568 Number Theory +1605.05692 Combinatorics +1605.05698 Combinatorics +1605.05706 Combinatorics +1605.05747 Combinatorics +1605.05807 Artificial Intelligence +1605.06077 Geophysics +1605.06084 Dynamical Systems +1605.06217 Computer Vision and Pattern Recognition +1605.06232 Complex Variables +1605.06506 Phenomenology +1605.06508 K-Theory and Homology +1605.06520 Plasma Physics +1605.06527 Dynamical Systems +1605.06532 Numerical Analysis +1605.06533 Cryptography and Security +1605.06535 Instrumentation and Detectors +1605.06536 Computers and Society +1605.06537 Computers and Society +1605.06538 Information Retrieval +1605.06541 +1605.06544 Neurons and Cognition +1605.06546 Combinatorics +1605.06547 Phenomenology +1605.06548 Materials Science +1605.06555 Social and Information Networks +1605.06557 Systems and Control +1605.06559 Quantum Gases +1605.06560 Learning +1605.06561 Learning +1605.06564 Computer Science and Game Theory +1605.06566 Statistics Theory +1605.06567 Astrophysics of Galaxies +1605.06568 Algebraic Geometry +1605.06576 Genomics +1605.06579 Methodology +1605.06580 Optics +1605.06581 Networking and Internet Architecture +1605.06583 Rings and Algebras +1605.06585 Computation +1605.06587 Optics +1605.06589 Statistical Mechanics +1605.06592 Differential Geometry +1605.06593 Learning +1605.06595 Instrumentation and Methods for Astrophysics +1605.06597 Computer Vision and Pattern Recognition +1605.06599 Analysis of PDEs +1605.06601 Classical Analysis and ODEs +1605.06602 Differential Geometry +1605.06608 Cryptography and Security +1605.06610 Cryptography and Security +1605.06619 Optimization and Control +1605.06620 Functional Analysis +1605.06621 Mesoscale and Nanoscale Physics +1605.06623 Mesoscale and Nanoscale Physics +1605.06624 Numerical Analysis +1605.06625 Superconductivity +1605.06628 Number Theory +1605.06631 Number Theory +1605.06633 Statistical Mechanics +1605.06636 Learning +1605.06639 Dynamical Systems +1605.06642 Algebraic Geometry +1605.06645 Optimization and Control +1605.06647 Combinatorics +1605.06652 Learning +1605.06653 Information Theory +1605.06654 Systems and Control +1605.06657 Group Theory +1605.06658 Computers and Society +1605.06659 Computers and Society +1605.06660 Functional Analysis +1605.06662 Analysis of PDEs +1605.06666 Numerical Analysis +1605.06668 Software Engineering +1605.06669 Software Engineering +1605.06670 Software Engineering +1605.06671 Astrophysics of Galaxies +1605.06673 Learning +1605.06677 Information Theory +1605.06681 Functional Analysis +1605.06682 Dynamical Systems +1605.06683 Complex Variables +1605.06684 Systems and Control +1605.06685 Materials Science +1605.06690 Analysis of PDEs +1605.06691 Differential Geometry +1605.06693 Information Retrieval +1605.06695 Computer Vision and Pattern Recognition +1605.06696 Commutative Algebra +1605.06700 Statistical Finance +1605.06703 Statistics Theory +1605.06704 Discrete Mathematics +1605.06706 Other Quantitative Biology +1605.06707 Fluid Dynamics +1605.06710 Neural and Evolutionary Computing +1605.06712 Phenomenology +1605.06714 Neural and Evolutionary Computing +1605.06715 Machine Learning +1605.06716 Soft Condensed Matter +1605.06717 Materials Science +1605.06718 Methodology +1605.06721 Social and Information Networks +1605.06722 Optimization and Control +1605.06726 Plasma Physics +1605.06727 +1605.06729 Software Engineering +1605.06735 Computational Engineering, Finance, and Science +1605.06740 Analysis of PDEs +1605.06745 Phenomenology +1605.06747 +1605.06748 Analysis of PDEs +1605.06752 Combinatorics +1605.06754 Combinatorics +1605.06755 Combinatorics +1605.06757 Other Condensed Matter +1605.06759 Statistics Theory +1605.06760 Numerical Analysis +1605.06761 Theory +1605.06762 Chemical Physics +1605.06763 Complex Variables +1605.06764 Computer Vision and Pattern Recognition +1605.06766 Quantum Algebra +1605.06767 K-Theory and Homology +1605.06768 Functional Analysis +1605.06770 Computation and Language +1605.06774 Number Theory +1605.06776 Computer Vision and Pattern Recognition +1605.06778 Computer Vision and Pattern Recognition +1605.06779 Applications +1605.06780 +1605.06783 Differential Geometry +1605.06787 Mesoscale and Nanoscale Physics +1605.06790 Populations and Evolution +1605.06795 Experiment +1605.06798 Instrumentation and Detectors +1605.06801 Computational Complexity +1605.06806 Combinatorics +1605.06807 Materials Science +1605.06809 Soft Condensed Matter +1605.06810 Quantum Algebra +1605.06811 Instrumentation and Methods for Astrophysics +1605.06813 Theory +1605.06814 Distributed, Parallel, and Cluster Computing +1605.06815 Geometric Topology +1605.06816 Mesoscale and Nanoscale Physics +1605.06818 Probability +1605.06819 Probability +1605.06820 Computer Vision and Pattern Recognition +1605.06824 Materials Science +1605.06825 Combinatorics +1605.06827 Information Theory +1605.06831 Mesoscale and Nanoscale Physics +1605.06835 Category Theory +1605.06837 Methodology +1605.06840 Portfolio Management +1605.06841 Analysis of PDEs +1605.06847 Information Theory +1605.06849 Portfolio Management +1605.06850 Strongly Correlated Electrons +1605.06852 Data Structures and Algorithms +1605.06853 Robotics +1605.06855 Social and Information Networks +1605.06860 Dynamical Systems +1605.06861 Materials Science +1605.06862 Algebraic Geometry +1605.06863 Computer Vision and Pattern Recognition +1605.06864 Dynamical Systems +1605.06865 Databases +1605.06868 Logic in Computer Science +1605.06871 Phenomenology +1605.06878 Computer Vision and Pattern Recognition +1605.06880 +1605.06882 Distributed, Parallel, and Cluster Computing +1605.06883 Mesoscale and Nanoscale Physics +1605.06885 Computer Vision and Pattern Recognition +1605.06888 Algebraic Geometry +1605.06889 Classical Analysis and ODEs +1605.06894 Learning +1605.06900 Optimization and Control +1605.06901 Rings and Algebras +1605.06903 Systems and Control +1605.06904 Distributed, Parallel, and Cluster Computing +1605.06905 Analysis of PDEs +1605.06906 Analysis of PDEs +1605.06910 Functional Analysis +1605.06912 Numerical Analysis +1605.06913 +1605.06915 Group Theory +1605.06917 Dynamical Systems +1605.06918 Combinatorics +1605.06921 Artificial Intelligence +1605.06926 Mesoscale and Nanoscale Physics +1605.06927 Information Theory +1605.06928 Software Engineering +1605.06929 Theory +1605.06932 Materials Science +1605.06933 Materials Science +1605.06936 +1605.06938 Programming Languages +1605.06940 Artificial Intelligence +1605.06947 Differential Geometry +1605.06948 Number Theory +1605.06949 Mesoscale and Nanoscale Physics +1605.06953 Group Theory +1605.06954 Chemical Physics +1605.06961 Algebraic Topology +1605.06963 +1605.06964 +1605.06966 +1605.06967 Materials Science +1605.06968 Numerical Analysis +1605.06972 Solar and Stellar Astrophysics +1605.06973 Systems and Control +1605.06974 Analysis of PDEs +1605.06976 Systems and Control +1605.06979 Numerical Analysis +1605.06980 Commutative Algebra +1605.06981 Symplectic Geometry +1605.06983 K-Theory and Homology +1605.06985 Complex Variables +1605.06987 Rings and Algebras +1605.06989 Discrete Mathematics +1605.06990 Experiment +1605.06993 Strongly Correlated Electrons +1605.06996 Logic in Computer Science +1605.06999 Astrophysics of Galaxies +1605.07000 Astrophysics of Galaxies +1605.07002 Combinatorics +1605.07004 Materials Science +1605.07006 Dynamical Systems +1605.07011 Optics +1605.07015 Theory +1605.07016 Combinatorics +1605.07018 Learning +1605.07022 Soft Condensed Matter +1605.07026 Computer Vision and Pattern Recognition +1605.07028 Experiment +1605.07031 Numerical Analysis +1605.07032 Software Engineering +1605.07034 +1605.07045 Geometric Topology +1605.07047 Dynamical Systems +1605.07049 Operator Algebras +1605.07050 Strongly Correlated Electrons +1605.07052 Populations and Evolution +1605.07055 Physics and Society +1605.07056 Statistics Theory +1605.07057 Machine Learning +1605.07061 Formal Languages and Automata Theory +1605.07063 Optics +1605.07069 Information Theory +1605.07070 +1605.07071 Functional Analysis +1605.07074 Neurons and Cognition +1605.07077 Mesoscale and Nanoscale Physics +1605.07084 Computational Complexity +1605.07086 Analysis of PDEs +1605.07087 Strongly Correlated Electrons +1605.07088 Analysis of PDEs +1605.07091 Computational Engineering, Finance, and Science +1605.07092 Number Theory +1605.07094 Neurons and Cognition +1605.07097 Group Theory +1605.07101 Functional Analysis +1605.07104 Computer Vision and Pattern Recognition +1605.07105 Software Engineering +1605.07107 Computer Science and Game Theory +1605.07108 Soft Condensed Matter +1605.07111 Algebraic Geometry +1605.07112 Optimization and Control +1605.07113 Analysis of PDEs +1605.07115 +1605.07116 Computer Vision and Pattern Recognition +1605.07120 Soft Condensed Matter +1605.07121 Optimization and Control +1605.07123 Logic +1605.07126 Number Theory +1605.07132 Solar and Stellar Astrophysics +1605.07133 Computation and Language +1605.07135 Representation Theory +1605.07136 High Energy Astrophysical Phenomena +1605.07141 Strongly Correlated Electrons +1605.07142 Materials Science +1605.07145 Machine Learning +1605.07147 Optimization and Control +1605.07149 Differential Geometry +1605.07153 Neurons and Cognition +1605.07154 Learning +1605.07156 Learning +1605.07159 Databases +1605.07163 Strongly Correlated Electrons +1605.07165 Theory +math/0606475 Combinatorics +quant-ph/0305100 +quant-ph/0312003 +quant-ph/0601088 +0710.2156 Databases +0711.1091 +0905.2657 Databases +0905.4436 Probability +0908.4481 Probability +1003.3947 Dynamical Systems +1010.2799 +1011.6518 Superconductivity +1012.3664 Commutative Algebra +1106.6223 Neural and Evolutionary Computing +1107.2681 Optimization and Control +1110.5465 Probability +1212.0122 Computation +1212.0811 +1301.2690 Classical Analysis and ODEs +1301.3195 Neural and Evolutionary Computing +1305.2799 Dynamical Systems +1306.1231 Strongly Correlated Electrons +1308.3607 Analysis of PDEs +1308.4320 Analysis of PDEs +1308.4376 Algebraic Geometry +1311.5322 +1401.5399 Dynamical Systems +1404.0044 Strongly Correlated Electrons +1404.4723 Number Theory +1405.7162 Differential Geometry +1406.5647 Learning +1407.1591 Probability +1407.5795 Strongly Correlated Electrons +1407.6276 Analysis of PDEs +1408.0607 +1408.4713 Combinatorics +1409.3936 Dynamical Systems +1410.4120 Physics and Society +1410.5624 Probability +1411.0399 High Energy Astrophysical Phenomena +1411.6239 Computational Physics +1411.7356 Classical Analysis and ODEs +1412.0195 Logic +1412.2172 Mesoscale and Nanoscale Physics +1412.2525 Numerical Analysis +1412.5864 Numerical Analysis +1501.06433 Probability +1502.00917 +1502.01181 Computers and Society +1502.03585 +1502.06256 Genomics +1503.00747 Mesoscale and Nanoscale Physics +1503.02310 Adaptation and Self-Organizing Systems +1503.02624 Differential Geometry +1503.03394 Information Theory +1503.04190 Chaotic Dynamics +1503.04563 Algebraic Topology +1503.07576 Social and Information Networks +1504.00556 Genomics +1504.01592 Materials Science +1504.04058 Numerical Analysis +1504.04505 Probability +1504.05599 Mesoscale and Nanoscale Physics +1504.05927 Metric Geometry +1504.06379 +1504.08087 +1504.08199 Algebraic Geometry +1505.02658 Superconductivity +1505.03982 +1505.07158 Systems and Control +1505.07602 Statistics Theory +1506.01625 Probability +1506.02656 Phenomenology +1506.03635 +1506.04282 Analysis of PDEs +1506.04412 Mesoscale and Nanoscale Physics +1506.06361 Combinatorics +1506.07981 High Energy Astrophysical Phenomena +1506.08232 +1507.00207 Number Theory +1507.01741 Optimization and Control +1507.05122 Artificial Intelligence +1507.06187 Combinatorics +1507.06323 Strongly Correlated Electrons +1507.06678 Solar and Stellar Astrophysics +1507.06804 Soft Condensed Matter +1508.01766 Dynamical Systems +1508.05938 Atmospheric and Oceanic Physics +1508.06221 +1508.06458 Algebraic Topology +1508.07088 Statistical Mechanics +1508.07569 Computational Geometry +1509.00803 Methodology +1509.02305 +1509.03325 Experiment +1509.03621 Neurons and Cognition +1509.04832 Algebraic Geometry +1509.05174 +1509.07152 Experiment +1509.07279 Instrumentation and Methods for Astrophysics +1509.07773 Phenomenology +1509.08458 Cosmology and Nongalactic Astrophysics +1509.08476 Statistical Mechanics +1510.00061 Analysis of PDEs +1510.00193 Astrophysics of Galaxies +1510.02463 Mesoscale and Nanoscale Physics +1510.03205 Statistical Finance +1510.03463 Probability +1510.04492 Theory +1510.05281 Rings and Algebras +1510.05603 Quantum Gases +1510.05609 Optics +1510.07162 Populations and Evolution +1510.08302 +1510.08710 +1510.09133 Statistical Mechanics +1511.00549 Phenomenology +1511.01474 Cosmology and Nongalactic Astrophysics +1511.04075 Cosmology and Nongalactic Astrophysics +1511.05469 Analysis of PDEs +1511.06611 Astrophysics of Galaxies +1511.07446 Astrophysics of Galaxies +1511.07490 Cosmology and Nongalactic Astrophysics +1511.08670 Applications +1512.01169 Methodology +1512.01228 Computational Physics +1512.02571 Cosmology and Nongalactic Astrophysics +1512.02765 +1512.02829 Theory +1512.04096 Phenomenology +1512.04435 Astrophysics of Galaxies +1512.04452 Number Theory +1512.05121 Cosmology and Nongalactic Astrophysics +1512.05755 Superconductivity +1512.05968 Instrumentation and Detectors +1512.06022 Algebraic Geometry +1512.06029 Quantum Gases +1512.06806 Materials Science +1512.06877 Phenomenology +1512.07519 Soft Condensed Matter +1512.08369 Chemical Physics +1601.00946 Group Theory +1601.02006 Phenomenology +1601.04289 Group Theory +1601.05007 Soft Condensed Matter +1601.05027 Chemical Physics +1601.06972 Differential Geometry +1601.07591 Superconductivity +1601.08251 Classical Analysis and ODEs +1602.00937 Phenomenology +1602.04684 Numerical Analysis +1602.05047 +1602.05248 Computer Science and Game Theory +1602.05418 Algebraic Geometry +1602.06067 Optics +1602.06393 Theory +1602.06865 Computer Science and Game Theory +1602.07951 +1602.08933 Materials Science +1603.00720 Instrumentation and Methods for Astrophysics +1603.00814 Systems and Control +1603.01706 Algebraic Geometry +1603.01826 Differential Geometry +1603.01887 Data Structures and Algorithms +1603.02415 Earth and Planetary Astrophysics +1603.02910 General Physics +1603.03071 Combinatorics +1603.03139 Analysis of PDEs +1603.03298 Combinatorics +1603.04237 Logic +1603.04397 Optics +1603.04445 Superconductivity +1603.04467 Distributed, Parallel, and Cluster Computing +1603.04532 Combinatorics +1603.04535 Computer Vision and Pattern Recognition +1603.04637 Numerical Analysis +1603.04694 Classical Analysis and ODEs +1603.04718 Experiment +1603.04726 Information Theory +1603.04830 Materials Science +1603.04845 +1603.04847 Number Theory +1603.04849 Astrophysics of Galaxies +1603.04869 Numerical Analysis +1603.04871 Computer Vision and Pattern Recognition +1603.04875 Instrumentation and Detectors +1603.04877 Metric Geometry +1603.04879 Group Theory +1603.04882 Machine Learning +1603.04887 Dynamical Systems +1603.04888 Geometric Topology +1603.04891 Distributed, Parallel, and Cluster Computing +1603.04892 Data Structures and Algorithms +1603.04893 Optimization and Control +1603.04896 Probability +1603.04897 Functional Analysis +1603.04900 Solar and Stellar Astrophysics +1603.04906 Neurons and Cognition +1603.04907 High Energy Astrophysical Phenomena +1603.04910 Functional Analysis +1603.04911 Systems and Control +1603.04913 Optimization and Control +1603.04914 Optimization and Control +1603.04916 Combinatorics +1603.04917 Discrete Mathematics +1603.04918 Learning +1603.04923 Combinatorics +1603.04924 +1603.04925 Fluid Dynamics +1603.04927 Classical Analysis and ODEs +1603.04929 Applications +1603.04930 Computer Vision and Pattern Recognition +1603.04931 Human-Computer Interaction +1603.04934 Mesoscale and Nanoscale Physics +1603.04938 Combinatorics +1603.04939 Digital Libraries +1603.04940 Analysis of PDEs +1603.04941 Data Structures and Algorithms +1603.04942 Accelerator Physics +1603.04943 Astrophysics of Galaxies +1603.04946 +1603.04947 Learning +1603.04949 +1603.04950 +1603.04952 Superconductivity +1603.04953 Information Retrieval +1603.04954 Learning +1603.04957 +1603.04958 Phenomenology +1603.04961 Strongly Correlated Electrons +1603.04962 Differential Geometry +1603.04963 Strongly Correlated Electrons +1603.04964 Optimization and Control +1603.04966 Analysis of PDEs +1603.04967 Astrophysics of Galaxies +1603.04969 Phenomenology +1603.04970 Phenomenology +1603.04971 Phenomenology +1603.04974 Number Theory +1603.04976 Quantum Algebra +1603.04978 Algebraic Geometry +1603.04980 +1603.04982 Computer Science and Game Theory +1603.04983 Soft Condensed Matter +1603.04984 +1603.04985 Rings and Algebras +1603.04986 Materials Science +1603.04990 Human-Computer Interaction +1603.04991 Rings and Algebras +1603.04994 Solar and Stellar Astrophysics +1603.04997 +1603.05003 +1603.05004 Dynamical Systems +1603.05007 +1603.05008 Strongly Correlated Electrons +1603.05010 Numerical Analysis +1603.05011 Optics +1603.05015 Computer Vision and Pattern Recognition +1603.05016 Geometric Topology +1603.05018 Combinatorics +1603.05020 Networking and Internet Architecture +1603.05021 Soft Condensed Matter +1603.05022 Numerical Analysis +1603.05026 Geometric Topology +1603.05030 Differential Geometry +1603.05032 Probability +1603.05034 Optimization and Control +1603.05035 Algebraic Geometry +1603.05037 Combinatorics +1603.05039 Analysis of PDEs +1603.05041 Classical Analysis and ODEs +1603.05042 Analysis of PDEs +1603.05046 Analysis of PDEs +1603.05047 Data Structures and Algorithms +1603.05048 Quantum Gases +1603.05049 Soft Condensed Matter +1603.05050 Algebraic Topology +1603.05052 Complex Variables +1603.05055 Materials Science +1603.05058 High Energy Astrophysical Phenomena +1603.05060 Machine Learning +1603.05062 Fluid Dynamics +1603.05063 Information Theory +1603.05065 Representation Theory +1603.05069 Software Engineering +1603.05071 +1603.05072 Computer Science and Game Theory +1603.05075 Discrete Mathematics +1603.05078 Digital Libraries +1603.05085 Analysis of PDEs +1603.05086 Number Theory +1603.05087 Analysis of PDEs +1603.05088 Probability +1603.05089 Analysis of PDEs +1603.05091 Numerical Analysis +1603.05095 Social and Information Networks +1603.05099 Robotics +1603.05103 Differential Geometry +1603.05104 Algebraic Geometry +1603.05105 Representation Theory +1603.05110 Numerical Analysis +1603.05112 +1603.05114 Analysis of PDEs +1603.05115 Classical Analysis and ODEs +1603.05116 Combinatorics +1603.05117 Optimization and Control +1603.05125 Earth and Planetary Astrophysics +1603.05127 +1603.05128 Cryptography and Security +1603.05129 Dynamical Systems +1603.05130 General Mathematics +1603.05131 General Mathematics +1603.05139 Algebraic Topology +1603.05142 Economics +1603.05144 Biological Physics +1603.05147 Statistical Mechanics +1603.05150 Theory +1603.05152 Learning +1603.05153 Materials Science +1603.05154 Computer Vision and Pattern Recognition +1603.05155 Number Theory +1603.05159 +1603.05161 Probability +1603.05162 Other Computer Science +1603.05163 Distributed, Parallel, and Cluster Computing +1603.05170 Logic +1603.05171 Probability +1603.05174 +1603.05178 Number Theory +1603.05180 Computational Physics +1603.05183 Computational Complexity +1603.05186 Analysis of PDEs +1603.05188 Optimization and Control +1603.05189 Neural and Evolutionary Computing +1603.05191 Learning +1603.05197 Programming Languages +1603.05199 Theory +1603.05202 Metric Geometry +1603.05205 Optimization and Control +1603.05211 Numerical Analysis +1603.05212 Digital Libraries +1603.05213 Phenomenology +1603.05214 Logic in Computer Science +1603.05220 Dynamical Systems +1603.05222 Probability +1603.05223 Computational Physics +1603.05229 Statistics Theory +1603.05230 Representation Theory +1603.05231 Analysis of PDEs +1603.05233 Number Theory +1603.05235 Differential Geometry +1603.05238 Information Theory +1603.05240 Cryptography and Security +1603.05241 Logic +cond-mat/0406185 Superconductivity +quant-ph/0702202 +0901.0940 Astrophysics of Galaxies +1007.5348 Astrophysics of Galaxies +1008.0622 Astrophysics of Galaxies +1110.2311 +1110.3150 Strongly Correlated Electrons +1207.4927 Number Theory +1208.5562 +1301.0056 Algebraic Topology +1305.0092 General Physics +1305.3642 +1306.1183 Algebraic Geometry +1307.4027 Classical Analysis and ODEs +1307.4296 Molecular Networks +1308.3765 Group Theory +1308.5626 Statistics Theory +1309.1619 Dynamical Systems +1310.6100 Operator Algebras +1311.3981 Methodology +1312.3586 +1401.3500 +1404.3774 +1404.5606 K-Theory and Homology +1404.6698 Algebraic Geometry +1405.3538 Probability +1406.1229 Disordered Systems and Neural Networks +1406.1480 Functional Analysis +1406.4177 General Mathematics +1406.4220 Medical Physics +1406.7634 Algebraic Geometry +1407.5707 Number Theory +1408.4063 Algebraic Geometry +1408.5193 Dynamical Systems +1408.5310 +1409.5238 Functional Analysis +1409.5549 Atomic Physics +1410.6118 Logic in Computer Science +1411.0896 Algebraic Geometry +1411.7016 Optimization and Control +1412.3174 Number Theory +1412.6742 Differential Geometry +1412.8569 Cosmology and Nongalactic Astrophysics +1501.02247 Statistics Theory +1501.06932 Analysis of PDEs +1502.04814 +1502.06952 Statistics Theory +1502.07332 Differential Geometry +1503.00525 Spectral Theory +1503.03448 Optimization and Control +1503.03701 Machine Learning +1503.05064 Category Theory +1503.05960 Data Structures and Algorithms +1503.09016 Computational Complexity +1504.06633 Solar and Stellar Astrophysics +1505.00196 Probability +1505.02742 Mesoscale and Nanoscale Physics +1505.03292 Mesoscale and Nanoscale Physics +1505.04352 +1505.05266 Methodology +1505.05763 Probability +1505.05929 Dynamical Systems +1505.06666 Geometric Topology +1505.06816 Computation and Language +1506.04576 Statistics Theory +1506.06120 Analysis of PDEs +1507.03213 Strongly Correlated Electrons +1507.04065 Economics +1507.06245 Statistics Theory +1508.01281 Quantum Algebra +1508.03616 Analysis of PDEs +1509.00200 Number Theory +1509.00534 Group Theory +1509.05113 Machine Learning +1509.08034 Differential Geometry +1510.01075 Mesoscale and Nanoscale Physics +1510.03096 Quantum Gases +1510.04048 +1510.04733 Number Theory +1510.06343 Numerical Analysis +1510.07482 Computation and Language +1510.08550 Geophysics +1510.09209 Superconductivity +1511.01601 Algebraic Topology +1511.02766 Experiment +1511.03817 Dynamical Systems +1511.04636 Artificial Intelligence +1511.04700 Optimization and Control +1511.06275 Algebraic Geometry +1511.08921 Phenomenology +1512.00358 Computational Geometry +1512.01698 Mathematical Finance +1512.02336 Geometric Topology +1512.02360 Probability +1512.02967 Algebraic Geometry +1512.05017 +1512.05702 Neural and Evolutionary Computing +1512.07587 Learning +1512.07777 Instrumentation and Detectors +1601.00440 Functional Analysis +1601.00496 Applications +1601.00568 Analysis of PDEs +1601.00770 Computation and Language +1601.00815 Statistics Theory +1601.01330 Astrophysics of Galaxies +1601.01705 Computation and Language +1601.04677 +1601.05649 Theory +1601.06765 Number Theory +1601.07246 Theory +1601.08236 Strongly Correlated Electrons +1602.00289 Cellular Automata and Lattice Gases +1602.00511 Superconductivity +1602.00853 Optimization and Control +1602.01179 Mesoscale and Nanoscale Physics +1602.01756 Materials Science +1602.01884 Instrumentation and Detectors +1602.02786 Mesoscale and Nanoscale Physics +1602.03348 Learning +1602.04001 Instrumentation and Methods for Astrophysics +1602.04461 +1602.04702 +1602.04987 Soft Condensed Matter +1602.05394 Machine Learning +1602.05456 Robotics +1602.05973 +1602.06037 Phenomenology +1602.06072 Medical Physics +1602.06217 Probability +1602.06886 Machine Learning +1602.07032 Artificial Intelligence +1602.07537 Combinatorics +1602.07804 Materials Science +1602.08053 Solar and Stellar Astrophysics +1602.08120 Solar and Stellar Astrophysics +1602.08761 Machine Learning +1602.08952 Computation and Language +1603.00027 Phenomenology +1603.00279 Numerical Analysis +1603.00607 Instrumentation and Methods for Astrophysics +1603.01072 Phenomenology +1603.02007 Neurons and Cognition +1603.02870 Experiment +1603.02918 Chemical Physics +1603.03253 Materials Science +1603.03504 Theory +1603.03606 Algebraic Topology +1603.04263 Strongly Correlated Electrons +1603.04872 Mesoscale and Nanoscale Physics +1603.04965 Mesoscale and Nanoscale Physics +1603.05537 +1603.06042 Computation and Language +1603.06067 Computation and Language +1603.06075 Computation and Language +1603.06155 Computation and Language +1603.06393 Computation and Language +1603.06598 Computation and Language +1603.06744 Computation and Language +1603.06776 High Energy Astrophysical Phenomena +1603.07037 Experiment +1603.07794 Strongly Correlated Electrons +1603.08802 Phenomenology +1603.08887 Computation and Language +1603.09440 Superconductivity +1603.09455 Lattice +1604.00425 Computation and Language +1604.01149 Strongly Correlated Electrons +1604.02779 Theory +1604.02913 +1604.02993 Computation and Language +1604.03618 +1604.03975 Astrophysics of Galaxies +1604.05615 Materials Science +1604.08153 Learning +1604.08833 Materials Science +1605.00234 +1605.00921 Phenomenology +1605.01034 Algebraic Geometry +1605.01105 Information Theory +1605.03326 Functional Analysis +1605.03619 +1605.03661 Machine Learning +1605.04278 Computation and Language +1605.04699 Functional Analysis +1605.05224 Human-Computer Interaction +1605.05273 Learning +1605.05516 Dynamical Systems +1605.05528 Human-Computer Interaction +1605.05625 Number Theory +1605.05644 Chaotic Dynamics +1605.07231 Instrumentation and Methods for Astrophysics +1605.07257 +1605.07323 Software Engineering +1605.07356 Materials Science +1605.07392 Fluid Dynamics +1605.07395 Fluid Dynamics +1605.07403 Disordered Systems and Neural Networks +1605.07405 Fluid Dynamics +1605.07499 +1605.07509 Experiment +1605.07533 Solar and Stellar Astrophysics +1605.07545 Geometric Topology +1605.07563 +1605.07566 Fluid Dynamics +1605.07692 Networking and Internet Architecture +1605.07792 Biomolecules +1605.07796 Subcellular Processes +1605.07797 Subcellular Processes +1605.07814 Classical Analysis and ODEs +1605.07845 Dynamical Systems +1605.07859 Numerical Analysis +1605.07893 Plasma Physics +1605.07935 Emerging Technologies +1605.07984 Social and Information Networks +1605.07992 Number Theory +1605.07999 Learning +1605.08016 +1605.08021 Numerical Analysis +1605.08084 Analysis of PDEs +1605.08281 Rings and Algebras +1605.08322 Dynamical Systems +1605.08398 Strongly Correlated Electrons +1605.08524 Theory +1605.08816 +1605.09133 Formal Languages and Automata Theory +1605.09629 Theory +1606.00080 Analysis of PDEs +1606.00346 Classical Physics +1606.00453 Algebraic Topology +1606.00489 +1606.00617 Combinatorics +1606.00816 +1606.01218 Statistical Finance +1606.01559 Combinatorics +1606.01604 Methodology +1606.01731 Differential Geometry +1606.01824 +1606.02011 Methodology +1606.02225 +1606.02276 Computation and Language +1606.02291 Combinatorics +1606.02305 Phenomenology +1606.02308 Strongly Correlated Electrons +1606.02312 Multimedia +1606.02314 Databases +1606.02321 Machine Learning +1606.02326 Group Theory +1606.02328 Computational Geometry +1606.02329 Numerical Analysis +1606.02330 Phenomenology +1606.02331 Probability +1606.02332 Complex Variables +1606.02338 Optimization and Control +1606.02340 Discrete Mathematics +1606.02344 Neurons and Cognition +1606.02349 Neurons and Cognition +1606.02352 Other Statistics +1606.02354 Number Theory +1606.02355 Learning +1606.02356 Materials Science +1606.02359 Methodology +1606.02360 Systems and Control +1606.02366 Dynamical Systems +1606.02372 Neurons and Cognition +1606.02373 Cryptography and Security +1606.02375 Combinatorics +1606.02377 Analysis of PDEs +1606.02379 Information Theory +1606.02381 Applications +1606.02382 Computer Vision and Pattern Recognition +1606.02384 Theory +1606.02386 Methodology +1606.02387 Systems and Control +1606.02388 Number Theory +1606.02395 Optimization and Control +1606.02396 Machine Learning +1606.02399 Number Theory +1606.02402 Differential Geometry +1606.02405 Superconductivity +1606.02406 Number Theory +1606.02407 Neural and Evolutionary Computing +1606.02408 Group Theory +1606.02411 Probability +1606.02418 +1606.02419 Accelerator Physics +1606.02423 Analysis of PDEs +1606.02424 Multimedia +1606.02426 Combinatorics +1606.02427 Human-Computer Interaction +1606.02428 Dynamical Systems +1606.02430 Combinatorics +1606.02431 Group Theory +1606.02432 Strongly Correlated Electrons +1606.02433 Information Theory +1606.02435 Materials Science +1606.02437 Plasma Physics +1606.02438 Human-Computer Interaction +1606.02440 Computation and Language +1606.02442 Software Engineering +1606.02445 +1606.02447 Computation and Language +1606.02448 Learning +1606.02451 Robotics +1606.02452 Classical Analysis and ODEs +1606.02454 Quantum Gases +1606.02455 Computers and Society +1606.02456 Fluid Dynamics +1606.02457 Disordered Systems and Neural Networks +1606.02459 Computers and Society +1606.02460 Computers and Society +1606.02461 Computation and Language +1606.02462 Computers and Society +1606.02463 Information Theory +1606.02465 Data Structures and Algorithms +1606.02467 Computer Vision and Pattern Recognition +1606.02468 Numerical Analysis +1606.02469 Materials Science +1606.02470 Dynamical Systems +1606.02474 Differential Geometry +1606.02476 Functional Analysis +1606.02478 Computers and Society +1606.02479 Discrete Mathematics +1606.02480 Computers and Society +1606.02482 Experiment +1606.02483 Computers and Society +1606.02485 Robotics +1606.02486 Computers and Society +1606.02488 Computers and Society +1606.02490 Category Theory +1606.02493 Computers and Society +1606.02497 Computers and Society +1606.02498 Classical Analysis and ODEs +1606.02499 Computers and Society +1606.02500 Computers and Society +1606.02501 High Energy Astrophysical Phenomena +1606.02502 Computers and Society +1606.02503 Computers and Society +1606.02505 Computers and Society +1606.02506 Group Theory +1606.02507 Computers and Society +1606.02508 Computers and Society +1606.02509 Computers and Society +1606.02510 Computers and Society +1606.02511 Computers and Society +1606.02513 Optimization and Control +1606.02514 Computation and Language +1606.02515 Superconductivity +1606.02517 Combinatorics +1606.02521 Quantum Algebra +1606.02524 Number Theory +1606.02525 Probability +1606.02527 Mesoscale and Nanoscale Physics +1606.02529 Computation and Language +1606.02531 Instrumentation and Methods for Astrophysics +1606.02533 Chemical Physics +1606.02534 Cryptography and Security +1606.02535 Theory +1606.02536 Applications +1606.02538 Geometric Topology +1606.02539 Differential Geometry +1606.02542 Sound +1606.02543 Atomic Physics +1606.02545 Social and Information Networks +1606.02546 Instrumentation and Methods for Astrophysics +1606.02547 Robotics +1606.02550 Combinatorics +1606.02552 Human-Computer Interaction +1606.02555 Computation and Language +1606.02557 +1606.02563 Analysis of PDEs +1606.02564 Mesoscale and Nanoscale Physics +1606.02566 Computation +1606.02568 Geometric Topology +1606.02571 Theory +1606.02572 Mesoscale and Nanoscale Physics +1606.02573 Databases +1606.02574 Algebraic Geometry +1606.02575 +1606.02578 Metric Geometry +1606.02580 Neural and Evolutionary Computing +1606.02581 Dynamical Systems +1606.02583 Robotics +1606.02584 Algebraic Geometry +1606.02585 Computer Vision and Pattern Recognition +1606.02588 Phenomenology +1606.02595 Astrophysics of Galaxies +1606.02597 Physics and Society +1606.02599 Networking and Internet Architecture +1606.02601 Computation and Language +1606.02610 Physics and Society +1606.02613 Discrete Mathematics +1606.02614 +1606.02615 Learning +1606.02619 Numerical Analysis +1606.02621 Commutative Algebra +1606.02622 Mesoscale and Nanoscale Physics +1606.02626 Medical Physics +1606.02627 Neurons and Cognition +1606.02628 Optics +1606.02631 Representation Theory +1606.02632 Robotics +1606.02634 Classical Analysis and ODEs +1606.02638 Computation and Language +1606.02640 Analysis of PDEs +1606.02641 Combinatorics +1606.02642 Classical Analysis and ODEs +1606.02644 Classical Analysis and ODEs +1606.02650 Space Physics +1606.02651 Space Physics +1606.02652 Space Physics +1606.02653 Space Physics +1606.02654 Space Physics +1606.02655 Space Physics +1606.02656 Space Physics +1606.02657 Space Physics +1606.02658 Space Physics +1606.02659 Theory +1606.02660 Combinatorics +1606.02663 Atomic and Molecular Clusters +1606.02668 Numerical Analysis +1606.02669 Software Engineering +1606.02671 Accelerator Physics +1606.02672 Phenomenology +1606.02674 Networking and Internet Architecture +1606.02676 +1606.02680 Computation and Language +1606.02682 Methodology +1606.02688 Data Structures and Algorithms +1606.02689 Computation and Language +1606.02690 Methodology +1606.02693 Theory +1606.02694 Astrophysics of Galaxies +1606.02698 Differential Geometry +1606.02700 Social and Information Networks +1606.02702 Machine Learning +1606.02705 Social and Information Networks +quant-ph/0301091 +0707.1668 Number Theory +0910.2032 Algebraic Geometry +1006.0186 Complex Variables +1009.1507 Applications +1009.3373 Probability +1009.3406 Probability +1009.3993 Differential Geometry +1009.4362 Applications +1102.5739 Networking and Internet Architecture +1110.4748 Pattern Formation and Solitons +1112.0699 Computational Complexity +1201.0864 Pattern Formation and Solitons +1202.5386 Quantum Gases +1206.6899 Data Structures and Algorithms +1208.1517 Applications +1208.1728 Computation +1209.4251 +1210.2798 Statistical Mechanics +1210.5926 Probability +1212.5180 Applications +1301.5529 +1303.6129 Formal Languages and Automata Theory +1310.2986 Analysis of PDEs +1310.4117 Probability +1310.5245 Computational Geometry +1312.3843 Probability +1312.4241 Differential Geometry +1401.5938 Probability +1401.6907 Logic +1403.6430 Group Theory +1406.0198 Optics +1406.2536 Theory +1406.3881 Analysis of PDEs +1406.6630 Exactly Solvable and Integrable Systems +1406.6636 Exactly Solvable and Integrable Systems +1407.0662 Optimization and Control +1407.7289 Number Theory +1408.0179 +1408.3751 +1410.1230 Exactly Solvable and Integrable Systems +1410.2011 Symbolic Computation +1410.2335 Exactly Solvable and Integrable Systems +1410.4654 Algebraic Geometry +1411.0165 Neurons and Cognition +1411.4844 Soft Condensed Matter +1411.5773 Analysis of PDEs +1411.7254 +1412.3069 Fluid Dynamics +1412.3467 Theory +1412.4415 Exactly Solvable and Integrable Systems +1412.5343 Biological Physics +1501.00915 Quantum Algebra +1501.05207 High Energy Astrophysical Phenomena +1501.07823 Analysis of PDEs +1502.00235 Statistics Theory +1502.01102 Geometric Topology +1502.02534 Methodology +1502.05770 Representation Theory +1503.00757 Optimization and Control +1503.04260 Artificial Intelligence +1504.03284 Operator Algebras +1505.04967 Algebraic Geometry +1505.04981 Artificial Intelligence +1506.01399 Phenomenology +1506.02721 Logic in Computer Science +1506.05094 Computational Physics +1506.06377 +1507.02618 Data Structures and Algorithms +1507.07034 Optimization and Control +1507.07494 Algebraic Geometry +1508.01264 Statistics Theory +1508.05691 +1508.06305 +1508.07258 +1509.01707 Group Theory +1509.01812 Logic +1509.04540 Lattice +1509.06969 Information Theory +1509.08157 Adaptation and Self-Organizing Systems +1509.09180 +1510.02114 Number Theory +1510.03048 +1510.07324 Analysis of PDEs +1511.01561 Distributed, Parallel, and Cluster Computing +1511.02858 Phenomenology +1511.02882 Earth and Planetary Astrophysics +1511.04387 Data Structures and Algorithms +1511.07062 General Topology +1511.07167 Functional Analysis +1511.07586 +1511.07815 +1512.00790 Popular Physics +1512.01636 +1512.01669 Operator Algebras +1512.04087 Artificial Intelligence +1512.04164 Superconductivity +1512.05927 +1512.06375 Analysis of PDEs +1512.06478 Logic +1512.06950 Analysis of PDEs +1512.07713 Statistics Theory +1512.08241 Theory +1512.08265 Combinatorics +1512.08710 Artificial Intelligence +1512.08876 Algebraic Geometry +1512.09075 Artificial Intelligence +1601.02872 Rings and Algebras +1601.05291 Phenomenology +1601.05366 Group Theory +1601.05781 Number Theory +1601.05904 Distributed, Parallel, and Cluster Computing +1601.06390 Combinatorics +1601.06610 Artificial Intelligence +1601.06713 Experiment +1601.07335 Numerical Analysis +1601.08095 +1602.01724 Solar and Stellar Astrophysics +1602.01749 Number Theory +1602.02156 Superconductivity +1602.04169 Atomic Physics +1602.04424 Numerical Analysis +1602.07374 Combinatorics +1602.07742 +1603.00346 Phenomenology +1603.03236 Mathematical Software +1603.03413 Probability +1603.03440 Theory +1603.06862 Mesoscale and Nanoscale Physics +1603.06863 Metric Geometry +1603.08152 Computer Vision and Pattern Recognition +1604.01160 Information Theory +1604.01359 Neurons and Cognition +1604.02722 Numerical Analysis +1604.03216 Algebraic Geometry +1604.04464 Experiment +1604.04985 +1604.05297 +1605.01022 Statistical Mechanics +1605.01479 Quantum Gases +1605.02966 Metric Geometry +1605.04245 Combinatorics +1605.05345 Tissues and Organs +1605.06290 Information Theory +1605.06629 Materials Science +1605.06925 Neurons and Cognition +1605.08211 Quantum Gases +1605.08686 Instrumentation and Detectors +1605.09275 +1606.00432 Earth and Planetary Astrophysics +1606.01905 Mesoscale and Nanoscale Physics +1606.02229 Quantum Gases +1606.02327 Operator Algebras +1606.02484 +1606.02587 Neurons and Cognition +1606.03109 Probability +1606.03919 Mesoscale and Nanoscale Physics +1606.04105 Strongly Correlated Electrons +1606.04139 Digital Libraries +1606.04538 High Energy Astrophysical Phenomena +1606.05451 Disordered Systems and Neural Networks +1606.07104 Graphics +1606.07492 +1607.01859 Probability +1607.02514 Theory +1607.02775 +1607.03058 Geometric Topology +1607.03654 Quantum Algebra +1607.03762 Mesoscale and Nanoscale Physics +1607.04589 Sound +1607.05005 Algebraic Geometry +1607.05153 Optics +1607.05711 Materials Science +1607.06123 Learning +1607.06438 +1607.06468 Phenomenology +1607.06590 Quantum Gases +1607.06642 Sound +1607.07059 Atomic Physics +1607.07142 Strongly Correlated Electrons +1607.08471 Mesoscale and Nanoscale Physics +1608.00097 Mesoscale and Nanoscale Physics +1608.00438 Soft Condensed Matter +1608.03075 Computer Vision and Pattern Recognition +1608.03695 Biological Physics +1608.03934 Combinatorics +1608.04036 Data Structures and Algorithms +1608.04185 Information Retrieval +1608.04211 High Energy Astrophysical Phenomena +1608.04253 Applications +1608.04648 Mesoscale and Nanoscale Physics +1608.04873 +1608.07068 Computer Vision and Pattern Recognition +1608.07752 Statistical Finance +1608.07884 +1608.08247 Optimization and Control +1608.08292 Systems and Control +1608.08676 Phenomenology +1609.00091 Logic in Computer Science +1609.00413 Optics +1609.00647 Combinatorics +1609.00858 Optics +1609.01148 Phenomenology +1609.01334 Phenomenology +1609.01376 Analysis of PDEs +1609.01443 Information Theory +1609.01509 Differential Geometry +1609.01693 Computer Vision and Pattern Recognition +1609.01803 Soft Condensed Matter +1609.02001 Computer Vision and Pattern Recognition +1609.02020 Machine Learning +1609.02092 +1609.02137 Computer Vision and Pattern Recognition +1609.02139 Artificial Intelligence +1609.02140 Classical Physics +1609.02141 Other Quantitative Biology +1609.02143 Earth and Planetary Astrophysics +1609.02146 Strongly Correlated Electrons +1609.02157 Strongly Correlated Electrons +1609.02159 +1609.02163 Quantum Gases +1609.02165 Theory +1609.02168 Representation Theory +1609.02170 +1609.02171 Information Retrieval +1609.02173 Analysis of PDEs +1609.02175 Optimization and Control +1609.02177 Algebraic Geometry +1609.02178 Astrophysics of Galaxies +1609.02180 Quantum Gases +1609.02181 Algebraic Geometry +1609.02182 Human-Computer Interaction +1609.02184 Commutative Algebra +1609.02186 Instrumentation and Methods for Astrophysics +1609.02188 Phenomenology +1609.02191 Information Theory +1609.02194 Optimization and Control +1609.02195 +1609.02196 +1609.02197 Information Theory +1609.02198 Systems and Control +1609.02199 Quantum Gases +1609.02200 Machine Learning +1609.02201 Solar and Stellar Astrophysics +1609.02202 Neurons and Cognition +1609.02206 Geometric Topology +1609.02208 Information Theory +1609.02209 Combinatorics +1609.02210 Combinatorics +1609.02211 Analysis of PDEs +1609.02214 Computer Vision and Pattern Recognition +1609.02216 Numerical Analysis +1609.02220 +1609.02224 +1609.02229 Quantum Gases +1609.02231 Algebraic Geometry +1609.02234 Cryptography and Security +1609.02235 Algebraic Geometry +1609.02239 +1609.02240 Dynamical Systems +1609.02243 Computer Vision and Pattern Recognition +1609.02244 Geometric Topology +1609.02249 Optimization and Control +1609.02250 Algebraic Topology +1609.02251 Systems and Control +1609.02252 Information Theory +1609.02254 Atomic Physics +1609.02257 Probability +1609.02258 Numerical Analysis +1609.02259 Optimization and Control +1609.02260 Spectral Theory +1609.02261 Neurons and Cognition +1609.02263 Biological Physics +1609.02264 Lattice +1609.02265 +1609.02268 Data Analysis, Statistics and Probability +1609.02269 Data Analysis, Statistics and Probability +1609.02270 Instrumentation and Detectors +1609.02273 Algebraic Geometry +1609.02275 Analysis of PDEs +1609.02277 Numerical Analysis +1609.02280 Plasma Physics +1609.02281 Robotics +1609.02284 Computer Vision and Pattern Recognition +1609.02287 +1609.02292 Number Theory +1609.02293 Soft Condensed Matter +1609.02295 +1609.02296 Algebraic Geometry +1609.02298 Materials Science +1609.02300 Information Theory +1609.02301 History and Overview +1609.02302 Numerical Analysis +1609.02303 Algebraic Geometry +1609.02305 Networking and Internet Architecture +1609.02306 Algebraic Geometry +1609.02308 Fluid Dynamics +1609.02309 Numerical Analysis +1609.02310 Dynamical Systems +1609.02312 Cosmology and Nongalactic Astrophysics +1609.02313 Applications +1609.02315 Differential Geometry +1609.02319 Mesoscale and Nanoscale Physics +1609.02320 Logic in Computer Science +1609.02321 Quantum Algebra +1609.02322 +1609.02324 Networking and Internet Architecture +1609.02325 +1609.02326 +1609.02329 +1609.02332 Analysis of PDEs +1609.02334 Economics +1609.02337 +1609.02342 Probability +1609.02343 Classical Analysis and ODEs +1609.02345 Functional Analysis +1609.02347 Dynamical Systems +1609.02348 Algebraic Geometry +1609.02349 Mathematical Finance +1609.02351 Combinatorics +1609.02353 Cryptography and Security +1609.02354 Computation +1609.02355 +1609.02360 Algebraic Geometry +1609.02362 Mesoscale and Nanoscale Physics +1609.02368 Computer Vision and Pattern Recognition +1609.02369 Statistical Finance +1609.02375 Networking and Internet Architecture +1609.02377 Geometric Topology +1609.02380 Group Theory +1609.02381 Algebraic Topology +1609.02383 Learning +1609.02384 Classical Analysis and ODEs +1609.02385 Accelerator Physics +1609.02386 Phenomenology +1609.02389 Strongly Correlated Electrons +1609.02390 Superconductivity +1609.02392 Representation Theory +1609.02393 Numerical Analysis +1609.02394 Functional Analysis +1609.02397 Algebraic Topology +1609.02398 Information Theory +1609.02399 Combinatorics +1609.02401 Solar and Stellar Astrophysics +1609.02402 Instrumentation and Detectors +1609.02404 Cryptography and Security +1609.02405 Geophysics +1609.02408 Logic +1609.02409 Computer Vision and Pattern Recognition +1609.02410 Emerging Technologies +1609.02411 Networking and Internet Architecture +1609.02412 +1609.02413 Probability +1609.02415 Complex Variables +1609.02416 +1609.02424 Phenomenology +1609.02426 Materials Science +1609.02427 Information Theory +1609.02430 General Physics +1609.02433 Logic +1609.02434 Distributed, Parallel, and Cluster Computing +1609.02436 Instrumentation and Methods for Astrophysics +1609.02437 Differential Geometry +1609.02438 Probability +1609.02440 Information Theory +1609.02441 Group Theory +1609.02442 Combinatorics +1609.02444 Analysis of PDEs +1609.02447 Probability +1609.02448 Instrumentation and Methods for Astrophysics +1609.02450 Information Theory +1609.02452 Computer Vision and Pattern Recognition +1609.02460 Information Theory +1609.02461 Physics and Society +1609.02462 Robotics +1609.02463 Methodology +1609.02464 Group Theory +1609.02467 Theory +1609.02468 Analysis of PDEs +1609.02469 Computer Vision and Pattern Recognition +1609.02470 Theory +1609.02471 Probability +1609.02472 +1609.02473 Pattern Formation and Solitons +1609.02479 Combinatorics +1609.02482 Strongly Correlated Electrons +1609.02483 Quantum Algebra +1609.02484 Group Theory +1609.02486 Algebraic Topology +1609.02489 Information Retrieval +1609.02490 Statistics Theory +1609.02494 Classical Analysis and ODEs +1609.02495 Soft Condensed Matter +1609.02496 Soft Condensed Matter +1609.02501 Computation +1609.02503 Phenomenology +1609.02504 Analysis of PDEs +1609.02505 Fluid Dynamics +1609.02512 Phenomenology +1609.02513 Learning +1609.02517 Information Theory +1609.02519 Statistical Mechanics +1609.02520 Combinatorics +1609.02521 Machine Learning +1609.02523 Representation Theory +1609.02524 Number Theory +1609.02525 +1609.02526 Combinatorics +1609.02527 Probability +1609.02528 Number Theory +1609.02529 Dynamical Systems +1609.02531 Robotics +1609.02532 Networking and Internet Architecture +1609.02534 Functional Analysis +1609.02535 Neurons and Cognition +1609.02537 Commutative Algebra +1609.02539 Number Theory +1609.02542 +1609.02543 Analysis of PDEs +1609.02548 Geometric Topology +1609.02554 Emerging Technologies +0809.3835 Analysis of PDEs +0911.5414 Rings and Algebras +0912.5078 Statistics Theory +1002.2357 Combinatorics +1005.4193 Logic +1010.2092 +1105.3223 Algebraic Geometry +1108.4790 Cell Behavior +1204.3248 Differential Geometry +1208.6254 Representation Theory +1210.5331 +1211.0006 Strongly Correlated Electrons +1211.4353 Astrophysics of Galaxies +1212.3298 Differential Geometry +1212.6244 Combinatorics +1303.0328 Data Structures and Algorithms +1303.6420 Differential Geometry +1304.4188 Mesoscale and Nanoscale Physics +1305.0526 Data Structures and Algorithms +1305.0893 Number Theory +1306.6817 Differential Geometry +1309.0485 Statistics Theory +1310.2525 Probability +1311.1031 Statistical Mechanics +1312.7054 Adaptation and Self-Organizing Systems +1312.7683 General Topology +1401.2566 Rings and Algebras +1401.8066 Machine Learning +1402.0948 Superconductivity +1402.2546 Differential Geometry +1403.5572 Biological Physics +1403.7146 Dynamical Systems +1404.4080 +1404.5049 History and Philosophy of Physics +1404.5403 Adaptation and Self-Organizing Systems +1405.1778 History and Philosophy of Physics +1405.3159 Statistical Mechanics +1405.4897 Learning +1405.7660 Probability +1406.1121 Rings and Algebras +1406.6595 Computer Vision and Pattern Recognition +1407.1601 Optimization and Control +1407.2264 Probability +1407.6761 Data Structures and Algorithms +1408.1973 Combinatorics +1408.5054 Astrophysics of Galaxies +1408.6523 Strongly Correlated Electrons +1408.6908 Artificial Intelligence +1409.4461 Algebraic Geometry +1409.8356 Combinatorics +1410.0232 Differential Geometry +1410.1100 Experiment +1410.1409 Data Structures and Algorithms +1410.8575 +1411.1893 Dynamical Systems +1411.2262 Data Structures and Algorithms +1412.0150 Combinatorics +1412.0174 Representation Theory +1412.8116 Exactly Solvable and Integrable Systems +1501.00476 Combinatorics +1501.02622 +1501.03775 Theory +1501.05229 Operator Algebras +1502.00247 +1502.02790 Algebraic Topology +1502.04246 Distributed, Parallel, and Cluster Computing +1502.06990 Computational Physics +1503.06243 Combinatorics +1504.01706 Combinatorics +1504.03032 Exactly Solvable and Integrable Systems +1504.06589 Spectral Theory +1504.08319 Methodology +1505.00725 Operator Algebras +1505.01249 +1505.01788 Commutative Algebra +1505.02457 General Mathematics +1505.03018 Combinatorics +1505.03697 Combinatorics +1505.04655 Chemical Physics +1505.05425 Computers and Society +1505.05614 +1505.07809 +1506.01882 Materials Science +1506.02739 Computation and Language +1506.05415 Differential Geometry +1506.08661 Dynamical Systems +1507.02233 Rings and Algebras +1507.04252 Strongly Correlated Electrons +1507.04875 Number Theory +1507.05152 K-Theory and Homology +1507.05518 Analysis of PDEs +1507.05949 Commutative Algebra +1507.05959 Chemical Physics +1507.06144 K-Theory and Homology +1508.00049 Soft Condensed Matter +1508.00796 Soft Condensed Matter +1508.01418 Soft Condensed Matter +1508.02038 Rings and Algebras +1508.02848 Computer Vision and Pattern Recognition +1508.03251 Biological Physics +1508.03344 Disordered Systems and Neural Networks +1508.04177 Combinatorics +1508.04342 +1508.06079 Functional Analysis +1508.06477 Learning +1509.00296 Computer Vision and Pattern Recognition +1509.00483 Disordered Systems and Neural Networks +1509.01748 Analysis of PDEs +1509.02883 Combinatorics +1509.04603 Functional Analysis +1509.05446 Instrumentation and Methods for Astrophysics +1509.08102 Learning +1509.08108 Statistics Theory +1510.00656 Soft Condensed Matter +1510.00735 Number Theory +1510.01134 Multimedia +1510.02456 Algebraic Topology +1510.03960 +1510.04441 Dynamical Systems +1510.04593 Mesoscale and Nanoscale Physics +1510.05172 +1510.05687 Number Theory +1510.08049 High Energy Astrophysical Phenomena +1510.08401 Statistics Theory +1511.00575 Systems and Control +1511.00792 Learning +1511.01577 Cosmology and Nongalactic Astrophysics +1511.01818 Optimization and Control +1511.02143 Phenomenology +1511.02878 Statistical Mechanics +1511.02935 Logic +1511.03141 Combinatorics +1511.03248 Analysis of PDEs +1511.03974 Geometric Topology +1511.04304 Strongly Correlated Electrons +1511.06207 Functional Analysis +1511.06677 +1511.06972 Strongly Correlated Electrons +1511.07846 Databases +1512.01834 Disordered Systems and Neural Networks +1512.01910 Optimization and Control +1512.03172 Instrumentation and Methods for Astrophysics +1512.03902 +1512.04334 Human-Computer Interaction +1512.05469 Machine Learning +1512.05691 Networking and Internet Architecture +1512.05841 Information Theory +1512.06025 Numerical Analysis +1512.06334 +1512.08110 Methodology +1512.08627 Experiment +1512.09325 Methodology +1601.00163 Data Structures and Algorithms +1601.00164 Data Structures and Algorithms +1601.00352 Rings and Algebras +1601.00742 Earth and Planetary Astrophysics +1601.01600 +1601.01816 Computational Geometry +1601.01972 Statistical Mechanics +1601.02012 Cosmology and Nongalactic Astrophysics +1601.02428 Analysis of PDEs +1601.04040 +1601.04109 Optics +1601.04124 +1601.05310 Numerical Analysis +1601.05315 Strongly Correlated Electrons +1601.05351 Rings and Algebras +1601.05559 Mesoscale and Nanoscale Physics +1601.05574 Geometric Topology +1601.06114 Optimization and Control +1601.07134 Probability +1601.08111 Data Structures and Algorithms +1602.01972 Numerical Analysis +1602.03471 Information Theory +1602.03843 +1602.06152 +1602.06313 Quantum Gases +1602.06770 Statistical Mechanics +1602.07067 Numerical Analysis +1602.07181 Quantitative Methods +1602.07210 Data Structures and Algorithms +1602.07827 Computational Complexity +1602.07959 General Physics +1602.08245 Solar and Stellar Astrophysics +1602.08431 Lattice +1602.08628 Geometric Topology +1603.00283 Mesoscale and Nanoscale Physics +1603.00634 Statistics Theory +1603.00815 High Energy Astrophysical Phenomena +1603.01389 +1603.01872 Algebraic Topology +1603.01916 +1603.02214 Instrumentation and Detectors +1603.02686 Strongly Correlated Electrons +1603.02987 Atmospheric and Oceanic Physics +1603.03431 High Energy Astrophysical Phenomena +1603.03675 Methodology +1603.04478 Lattice +1603.04710 Classical Analysis and ODEs +1603.04764 Experiment +1603.05122 Operator Algebras +1603.05592 Phenomenology +1603.06277 Machine Learning +1603.07312 +1603.07960 Phenomenology +1603.08148 Computation and Language +1603.09067 Geometric Topology +1603.09170 Computation and Language +1604.00068 Materials Science +1604.02103 Computer Science and Game Theory +1604.02886 Theory +1604.03391 +1604.03463 Machine Learning +1604.03876 Strongly Correlated Electrons +1604.03887 Optimization and Control +1604.03999 Category Theory +1604.05146 Statistical Mechanics +1604.05569 Phenomenology +1604.06150 Differential Geometry +1604.06288 Analysis of PDEs +1604.06566 Phenomenology +1604.06620 Computer Vision and Pattern Recognition +1604.06698 +1604.06748 Computational Physics +1604.06851 Statistical Mechanics +1604.07050 Materials Science +1605.00277 Probability +1605.00639 Disordered Systems and Neural Networks +1605.00800 Representation Theory +1605.00853 General Topology +1605.00884 Experiment +1605.01062 +1605.01408 High Energy Astrophysical Phenomena +1605.01595 Numerical Analysis +1605.02044 Optics +1605.02102 Algebraic Geometry +1605.04470 Physics and Society +1605.04742 +1605.05366 Phenomenology +1605.05984 Analysis of PDEs +1605.06323 General Topology +1605.06425 Rings and Algebras +1605.06956 Fluid Dynamics +1605.07089 +1605.07193 +1605.08133 Mesoscale and Nanoscale Physics +1605.08613 Statistical Mechanics +1606.00384 Analysis of PDEs +1606.00743 Theory +1606.00853 Number Theory +1606.00855 Number Theory +1606.00965 Tissues and Organs +1606.01152 Instrumentation and Detectors +1606.01554 Statistics Theory +1606.01665 History and Philosophy of Physics +1606.01793 Optimization and Control +1606.02050 Fluid Dynamics +1606.02814 Experiment +1606.03089 Astrophysics of Galaxies +1606.03224 Geometric Topology +1606.03294 Strongly Correlated Electrons +1606.03825 Quantum Gases +1606.04023 Cellular Automata and Lattice Gases +1606.05629 Accelerator Physics +1606.06090 Populations and Evolution +1606.06184 +1606.06999 Experiment +1606.07011 Probability +1606.08178 Chemical Physics +1606.08449 Theory +1606.09152 Learning +1607.00812 Phenomenology +1607.00889 Statistical Mechanics +1607.01264 +1607.01740 Experiment +1607.02804 Methodology +1607.03901 Theory +1607.04994 High Energy Astrophysical Phenomena +1607.05493 Chaotic Dynamics +1607.05633 Earth and Planetary Astrophysics +1607.05815 Functional Analysis +1607.06150 Combinatorics +1607.07345 Group Theory +1607.07957 Data Structures and Algorithms +1607.08588 Instrumentation and Detectors +1608.00045 Instrumentation and Methods for Astrophysics +1608.00169 +1608.00276 Information Retrieval +1608.00680 Superconductivity +1608.00783 Materials Science +1608.01055 Astrophysics of Galaxies +1608.01413 Computation and Language +1608.01493 +1608.01922 Strongly Correlated Electrons +1608.01945 High Energy Astrophysical Phenomena +1608.02243 Probability +1608.02600 +1608.03062 Phenomenology +1608.03138 Functional Analysis +1608.03613 +1608.03900 Mesoscale and Nanoscale Physics +1608.03965 Discrete Mathematics +1608.04107 Chemical Physics +1608.04283 Physics and Society +1608.04435 Quantum Algebra +1608.04494 Statistical Mechanics +1608.04501 Geometric Topology +1608.04814 +1608.04841 Distributed, Parallel, and Cluster Computing +1608.04937 +1608.05124 Representation Theory +1608.05279 Phenomenology +1608.05493 Networking and Internet Architecture +1608.05697 Number Theory +1608.05712 Astrophysics of Galaxies +1608.05713 Phenomenology +1608.05716 +1608.05717 +1608.05720 +1608.05721 Mesoscale and Nanoscale Physics +1608.05722 Combinatorics +1608.05723 Combinatorics +1608.05726 Logic +1608.05729 Combinatorics +1608.05730 Combinatorics +1608.05732 Theory +1608.05735 Combinatorics +1608.05736 Probability +1608.05737 Functional Analysis +1608.05738 Numerical Analysis +1608.05739 Computational Physics +1608.05740 Combinatorics +1608.05741 Combinatorics +1608.05746 Number Theory +1608.05747 Machine Learning +1608.05748 Phenomenology +1608.05749 Learning +1608.05751 Neurons and Cognition +1608.05752 History and Philosophy of Physics +1608.05753 Quantum Gases +1608.05754 Numerical Analysis +1608.05755 Materials Science +1608.05756 Complex Variables +1608.05757 Dynamical Systems +1608.05758 Dynamical Systems +1608.05759 Combinatorics +1608.05763 Artificial Intelligence +1608.05765 Materials Science +1608.05770 Physics and Society +1608.05772 Graphics +1608.05773 Graphics +1608.05774 +1608.05775 Complex Variables +1608.05776 Cosmology and Nongalactic Astrophysics +1608.05777 Computation and Language +1608.05778 Neurons and Cognition +1608.05780 +1608.05781 Geometric Topology +1608.05783 Networking and Internet Architecture +1608.05786 Systems and Control +1608.05787 Numerical Analysis +1608.05788 Soft Condensed Matter +1608.05791 Mesoscale and Nanoscale Physics +1608.05792 Plasma Physics +1608.05793 Information Theory +1608.05794 Computational Physics +1608.05797 Rings and Algebras +1608.05798 Algebraic Geometry +1608.05799 Quantum Gases +1608.05801 Soft Condensed Matter +1608.05802 +1608.05803 Solar and Stellar Astrophysics +1608.05808 Mesoscale and Nanoscale Physics +1608.05812 Cryptography and Security +1608.05814 Mathematical Finance +1608.05816 Data Structures and Algorithms +1608.05819 Classical Physics +1608.05820 Number Theory +1608.05821 Symplectic Geometry +1608.05823 Mesoscale and Nanoscale Physics +1608.05827 Fluid Dynamics +1608.05829 Robotics +1608.05830 Networking and Internet Architecture +1608.05832 Genomics +1608.05833 Chemical Physics +1608.05837 Mesoscale and Nanoscale Physics +1608.05839 Distributed, Parallel, and Cluster Computing +1608.05841 Mesoscale and Nanoscale Physics +1608.05842 Computer Vision and Pattern Recognition +1608.05844 Distributed, Parallel, and Cluster Computing +1608.05847 Operator Algebras +1608.05848 Soft Condensed Matter +1608.05850 Multimedia +1608.05851 General Finance +1608.05852 Computation and Language +1608.05855 Biomolecules +1608.05856 Computer Vision and Pattern Recognition +1608.05858 Number Theory +1608.05863 Rings and Algebras +1608.05864 Robotics +1608.05866 Distributed, Parallel, and Cluster Computing +1608.05867 Combinatorics +1608.05870 Probability +1608.05871 Mesoscale and Nanoscale Physics +1608.05876 Chaotic Dynamics +1608.05878 Social and Information Networks +1608.05879 Geometric Topology +1608.05883 Computational Physics +1608.05886 Dynamical Systems +1608.05887 Combinatorics +1608.05888 Phenomenology +1608.05889 Computer Vision and Pattern Recognition +1608.05891 Fluid Dynamics +1608.05892 Materials Science +1608.05893 Software Engineering +1608.05895 Computer Vision and Pattern Recognition +1608.05896 Differential Geometry +1608.05898 Number Theory +1608.05900 Mathematical Finance +1608.05901 Statistical Mechanics +1608.05905 Category Theory +1608.05910 Machine Learning +1608.05911 Strongly Correlated Electrons +1608.05912 Number Theory +1608.05913 Methodology +1608.05914 Statistical Mechanics +1608.05915 Theory +1608.05916 Neural and Evolutionary Computing +1608.05917 Distributed, Parallel, and Cluster Computing +1608.05920 Chaotic Dynamics +1608.05923 Robotics +1608.05925 Number Theory +1608.05926 Software Engineering +1608.05927 Group Theory +1608.05928 Cryptography and Security +1608.05929 Functional Analysis +1608.05930 Cryptography and Security +1608.05931 Robotics +1608.05932 Fluid Dynamics +1608.05933 Cosmology and Nongalactic Astrophysics +1608.05934 Machine Learning +1608.05936 Distributed, Parallel, and Cluster Computing +1608.05938 Number Theory +1608.05939 Algebraic Geometry +1608.05940 Probability +1608.05941 +1608.05942 Algebraic Geometry +1608.05944 Differential Geometry +1608.05946 +1608.05947 +1608.05948 +1608.05951 Distributed, Parallel, and Cluster Computing +1608.05953 Theory +1608.05955 Complex Variables +1608.05956 Materials Science +1608.05959 +1608.05960 Statistical Mechanics +1608.05961 +1608.05963 +1608.05964 Probability +1608.05965 Statistical Mechanics +1608.05966 Social and Information Networks +1608.05969 Functional Analysis +1608.05970 +1608.05981 Software Engineering +1608.05982 Social and Information Networks +1608.05983 Learning +1608.05984 Physics and Society +1608.05988 Materials Science +1608.05990 Functional Analysis +1608.05992 Pattern Formation and Solitons +1608.05993 Probability +1608.05994 Statistics Theory +1608.05999 Dynamical Systems +1608.06002 Distributed, Parallel, and Cluster Computing +1608.06005 Information Theory +1608.06006 Logic +1608.06009 Data Structures and Algorithms +1608.06011 Metric Geometry +1608.06012 Programming Languages +1608.06013 Combinatorics +1608.06016 Data Structures and Algorithms +1608.06017 Combinatorics +1608.06019 Computer Vision and Pattern Recognition +1608.06024 +1608.06025 Combinatorics +1608.06026 Information Theory +1608.06029 Algebraic Geometry +1608.06030 Plasma Physics +1608.06031 Learning +1608.06032 Combinatorics +1608.06033 Distributed, Parallel, and Cluster Computing +1608.06034 Representation Theory +1608.06036 Theory +1608.06038 Instrumentation and Methods for Astrophysics +1608.06039 Computational Geometry +1608.06045 Mathematical Finance +1608.06048 Applications +1608.06049 Learning +1608.06051 Instrumentation and Methods for Astrophysics +1608.06054 Information Retrieval +1608.06055 Strongly Correlated Electrons +1608.06056 Mesoscale and Nanoscale Physics +1608.06057 Information Theory +1608.06058 Strongly Correlated Electrons +1608.06061 Numerical Analysis +1608.06062 Representation Theory +1608.06063 Quantum Algebra +1608.06065 Information Theory +1608.06068 +1608.06069 Differential Geometry +1608.06071 +1608.06073 Instrumentation and Detectors +1608.06075 +1608.06076 General Finance +1608.06077 Algebraic Geometry +1608.06079 Digital Libraries +1608.06080 Cryptography and Security +1608.06081 Analysis of PDEs +1608.06084 Logic in Computer Science +1608.06085 +1608.06086 Number Theory +1608.06091 Discrete Mathematics +1608.06093 Chemical Physics +1608.06094 Functional Analysis +1608.06095 Functional Analysis +1608.06096 Representation Theory +1608.06101 Functional Analysis +1608.06102 Analysis of PDEs +1608.06103 Distributed, Parallel, and Cluster Computing +1608.06106 Number Theory +1608.06107 Biomolecules +1608.06109 Dynamical Systems +1608.06112 Number Theory +1608.06113 +1608.06114 Combinatorics +1608.06115 Analysis of PDEs +1608.06117 Information Theory +1608.06119 Physics and Society +1608.06121 Portfolio Management +1608.06124 Superconductivity +1608.06125 Differential Geometry +1608.06127 Combinatorics +1608.06130 Logic in Computer Science +1608.06132 Neural and Evolutionary Computing +1608.06133 Software Engineering +1608.06136 Data Structures and Algorithms +1608.06140 Representation Theory +1608.06141 History and Philosophy of Physics +1608.06143 Computation +1608.06144 Software Engineering +1608.06149 Analysis of PDEs +1608.06151 Analysis of PDEs +1608.06153 +1608.06154 Learning +1608.06159 Optimization and Control +1608.06160 Number Theory +1608.06165 Differential Geometry +1608.06167 Quantum Algebra +1608.06168 Information Theory +1608.06170 Combinatorics +1608.06171 Distributed, Parallel, and Cluster Computing +1608.06173 Astrophysics of Galaxies +1608.06175 Artificial Intelligence +1608.06176 Number Theory +1608.06177 Instrumentation and Methods for Astrophysics +1608.06183 Information Theory +1608.06188 Soft Condensed Matter +1608.06189 Computation +1608.06191 Algebraic Geometry +1608.06192 Computer Vision and Pattern Recognition +1608.06197 Computer Vision and Pattern Recognition +1608.06199 Mesoscale and Nanoscale Physics +1608.06200 Soft Condensed Matter +1608.06203 Learning +1608.06204 Systems and Control +1608.06210 General Topology +1608.06212 Logic in Computer Science +1608.06215 Representation Theory +1608.06217 General Mathematics +1608.06220 Number Theory +1608.06222 Populations and Evolution +1608.06226 Optimization and Control +1608.06227 Materials Science +1608.06229 Digital Libraries +1608.06232 Symplectic Geometry +1608.06237 Experiment +1608.06240 Astrophysics of Galaxies +1608.06241 Theory +1608.06242 Populations and Evolution +1608.06247 Adaptation and Self-Organizing Systems +1608.06248 Medical Physics +1608.06249 Cryptography and Security +1608.06253 Information Retrieval +1608.06254 Cryptography and Security +1608.06257 Atmospheric and Oceanic Physics +1608.06258 Instrumentation and Methods for Astrophysics +1608.06259 Fluid Dynamics +1608.06262 Instrumentation and Methods for Astrophysics +1608.06265 Group Theory +1608.06269 Dynamical Systems +1608.06270 +1608.06271 +1608.06272 Information Theory +1608.06273 Instrumentation and Detectors +1608.06274 Combinatorics +hep-th/0001048 Theory +hep-th/0202059 Theory +hep-th/0210121 Theory +1601.06530 Differential Geometry +1602.03073 Probability +1602.06906 K-Theory and Homology +1608.01256 Representation Theory +1609.01409 Human-Computer Interaction +1610.07258 Learning +1611.08040 Cosmology and Nongalactic Astrophysics +1611.08647 Networking and Internet Architecture +1611.08660 Information Theory +1611.08692 Chemical Physics +1611.08838 Phenomenology +1611.08841 Computer Vision and Pattern Recognition +1611.09062 Mathematical Finance +1611.09183 Analysis of PDEs +1611.09215 Metric Geometry +1611.09397 Experiment +1611.09863 +1611.09878 Computation and Language +1611.09888 Medical Physics +1611.09891 Medical Physics +1611.09893 General Finance +1611.09894 Artificial Intelligence +1611.09897 Machine Learning +1611.09907 Discrete Mathematics +1611.09929 Mesoscale and Nanoscale Physics +1611.09944 Distributed, Parallel, and Cluster Computing +1611.09948 Artificial Intelligence +1611.09953 High Energy Astrophysical Phenomena +1611.09957 Artificial Intelligence +1611.09999 +1611.10015 +1611.10031 Learning +1611.10039 +1611.10041 Optimization and Control +1611.10042 Tissues and Organs +1611.10046 +1611.10099 Classical Analysis and ODEs +1611.10127 Strongly Correlated Electrons +1611.10133 Combinatorics +1611.10157 Probability +1611.10247 Statistical Mechanics +1611.10312 Physics and Society +1611.10317 Symplectic Geometry +1611.10331 Applications +1611.10334 Computational Complexity +1611.10345 +1611.10359 Computation +1612.00100 Learning +1612.00194 Computational Physics +1612.00199 Lattice +1612.00250 Strongly Correlated Electrons +1612.00267 +1612.00326 Theory +1612.00374 Machine Learning +1612.00383 Machine Learning +1612.00402 Computational Engineering, Finance, and Science +1506.04386 Functional Analysis +1511.07129 +1512.02855 Statistical Mechanics +1512.07684 Distributed, Parallel, and Cluster Computing +1512.08534 Commutative Algebra +0706.0357 General Mathematics +0803.0297 Algebraic Geometry +0909.3604 Differential Geometry +1011.0499 Geometric Topology +1102.3928 Optimization and Control +1104.4792 Geometric Topology +1104.4796 Geometric Topology +1106.3116 Geometric Topology +1108.2467 Differential Geometry +1109.0332 Classical Analysis and ODEs +1109.0745 Dynamical Systems +1111.5277 Algebraic Topology +1111.7158 Complex Variables +1201.3432 Physics and Society +1203.5455 Differential Geometry +1205.4301 Differential Geometry +1208.6480 +1210.2560 Soft Condensed Matter +1211.1299 Discrete Mathematics +1212.4206 Analysis of PDEs +1301.1942 Machine Learning +1303.0587 Algebraic Geometry +1303.5908 Probability +1303.6319 Dynamical Systems +1305.1422 Distributed, Parallel, and Cluster Computing +1305.5511 Algebraic Geometry +1306.6035 Group Theory +1307.7438 Classical Analysis and ODEs +1309.4068 Algebraic Geometry +1309.4857 Analysis of PDEs +1309.5766 Probability +1310.5290 Soft Condensed Matter +1311.6416 Classical Analysis and ODEs +1312.1301 Probability +1312.3311 Analysis of PDEs +1312.4219 Analysis of PDEs +1312.5972 Combinatorics +1312.7014 Discrete Mathematics +1401.0149 Category Theory +1401.6043 Classical Analysis and ODEs +1402.0851 Discrete Mathematics +1402.2664 Discrete Mathematics +1402.2988 Statistical Mechanics +1402.3900 Metric Geometry +1403.2114 Functional Analysis +1404.0224 +1404.1579 Number Theory +1404.1906 Operator Algebras +1404.2436 Quantum Algebra +1404.3549 Number Theory +1404.4812 +1404.5616 Theory +1404.7158 Theory +1404.7232 Combinatorics +1405.0758 Analysis of PDEs +1405.3638 Fluid Dynamics +1405.5199 Superconductivity +1406.1721 Algebraic Geometry +1406.2457 Chemical Physics +1406.3802 +1406.3938 Instrumentation and Detectors +1406.4824 Computation and Language +1407.1272 Differential Geometry +1407.2534 Materials Science +1407.3947 Combinatorics +1407.5720 Dynamical Systems +1407.6347 Functional Analysis +1408.1045 Probability +1408.2182 +1409.2543 Atomic Physics +1409.3353 Data Analysis, Statistics and Probability +1410.0742 Combinatorics +1410.1789 Solar and Stellar Astrophysics +1410.1990 Atomic Physics +1410.2115 Phenomenology +1410.2637 Functional Analysis +1410.3519 Physics and Society +1410.3815 Applications +1410.4158 Optimization and Control +1410.4852 Mesoscale and Nanoscale Physics +1410.6239 +1410.6898 Statistical Finance +1410.8347 Operator Algebras +1411.0594 Information Theory +1411.0923 Combinatorics +1411.2221 Chemical Physics +1411.4467 Number Theory +1411.4523 Atomic Physics +1411.6520 Machine Learning +1411.7720 Numerical Analysis +1412.0181 Experiment +1412.1248 Number Theory +1412.3178 Algebraic Geometry +1412.3829 Hardware Architecture +1412.4693 +1412.4884 Materials Science +1412.6279 Computer Vision and Pattern Recognition +1412.7764 Statistical Mechanics +1501.00531 Materials Science +1501.02860 Dynamical Systems +1501.03702 Chemical Physics +1501.04687 Strongly Correlated Electrons +1501.07335 Combinatorics +1502.00533 Statistical Mechanics +1502.00610 Theory +1502.01431 Analysis of PDEs +1502.02656 Mesoscale and Nanoscale Physics +1502.04017 Chemical Physics +1502.05206 Complex Variables +1502.07919 Number Theory +1503.00511 Number Theory +1503.01313 Computer Vision and Pattern Recognition +1503.03969 Classical Analysis and ODEs +1503.05935 High Energy Astrophysical Phenomena +1503.05969 Cosmology and Nongalactic Astrophysics +1503.06055 Accelerator Physics +1503.07249 Dynamical Systems +1503.07767 Differential Geometry +1504.01085 Functional Analysis +1504.01280 Rings and Algebras +1504.01448 Soft Condensed Matter +1504.02557 Phenomenology +1504.02873 History and Philosophy of Physics +1504.03081 High Energy Astrophysical Phenomena +1504.03348 Category Theory +1504.03655 Learning +1504.03708 Biomolecules +1504.05410 Mesoscale and Nanoscale Physics +1504.06355 Logic in Computer Science +1504.06387 Networking and Internet Architecture +1504.06843 Differential Geometry +1504.07093 +1505.01138 Biomolecules +1505.01922 Statistics Theory +1505.02639 +1505.04901 Optimization and Control +1505.05553 Phenomenology +1505.05631 Materials Science +1505.05980 +1505.06232 Optimization and Control +1505.06887 Superconductivity +1505.07364 Mesoscale and Nanoscale Physics +1505.07646 Data Analysis, Statistics and Probability +1505.07882 Analysis of PDEs +1506.02252 Materials Science +1506.02563 Exactly Solvable and Integrable Systems +1506.04471 Theory +1506.06662 Biomolecules +1506.07426 Algebraic Geometry +1506.08670 Computer Vision and Pattern Recognition +1506.09073 Materials Science +1506.09213 Phenomenology +1507.00272 Numerical Analysis +1507.01444 Other Computer Science +1507.01520 Earth and Planetary Astrophysics +1507.01976 Algebraic Topology +1507.02259 Data Structures and Algorithms +1507.02624 Classical Analysis and ODEs +1507.03174 Quantum Gases +1507.04290 Combinatorics +1507.04421 Combinatorics +1507.04542 Soft Condensed Matter +1507.05032 Number Theory +1507.05409 Computer Vision and Pattern Recognition +1507.05827 Numerical Analysis +1507.06432 Strongly Correlated Electrons +1507.06470 Strongly Correlated Electrons +1507.07099 Experiment +1507.07555 Theory +1507.08472 Computational Physics +1508.00249 Statistics Theory +1508.00414 Strongly Correlated Electrons +1508.00629 Materials Science +1508.00942 Emerging Technologies +1508.01808 Classical Physics +1508.02126 Other Condensed Matter +1508.02512 Phenomenology +1508.03110 Numerical Analysis +1508.03559 Systems and Control +1508.03886 +1508.04142 Phenomenology +1508.04247 Probability +1508.04696 Spectral Theory +1508.05039 Systems and Control +1508.05160 Phenomenology +1508.07237 Strongly Correlated Electrons +1508.07607 Optimization and Control +1508.07643 Machine Learning +1508.07678 Artificial Intelligence +1508.07941 Optimization and Control +1509.00112 Representation Theory +1509.00838 Computation and Language +1509.01606 Phenomenology +1509.02679 Quantum Gases +1509.02713 Analysis of PDEs +1509.03892 Materials Science +1509.03906 Mesoscale and Nanoscale Physics +1509.04257 Quantum Gases +1509.07031 Phenomenology +1509.07609 Mesoscale and Nanoscale Physics +1509.08144 Learning +1509.08605 Programming Languages +1509.09050 High Energy Astrophysical Phenomena +1510.00045 Spectral Theory +1510.00075 Analysis of PDEs +1510.00878 Learning +1510.01386 Superconductivity +1510.01905 +1510.02667 Experiment +1510.02994 Exactly Solvable and Integrable Systems +1510.03001 Geometric Topology +1510.03111 High Energy Astrophysical Phenomena +1510.03866 Theory +1510.04228 Differential Geometry +1510.05965 Materials Science +1510.06214 Number Theory +1510.06315 Materials Science +1510.07468 Mesoscale and Nanoscale Physics +1510.07508 Strongly Correlated Electrons +1510.07884 Atmospheric and Oceanic Physics +1510.08983 Neural and Evolutionary Computing +1511.00211 +1511.00346 Logic in Computer Science +1511.01649 Astrophysics of Galaxies +1511.02412 Theory +1511.02494 Performance +1511.02559 Differential Geometry +1511.03301 +1511.04841 Information Theory +1511.05055 Astrophysics of Galaxies +1511.05216 Theory +1511.07094 Differential Geometry +1511.07394 Computer Vision and Pattern Recognition +1511.07403 Rings and Algebras +1511.07439 Solar and Stellar Astrophysics +1511.07567 Theory +1511.07777 General Physics +1511.07967 Functional Analysis +1511.08200 Cosmology and Nongalactic Astrophysics +1511.08576 Superconductivity +1511.08686 Instrumentation and Methods for Astrophysics +1511.08831 Dynamical Systems +1512.00256 Differential Geometry +1512.00275 Strongly Correlated Electrons +1512.00677 Statistics Theory +1512.00824 Information Theory +1512.00835 Algebraic Geometry +1512.00866 Group Theory +1512.00885 Mesoscale and Nanoscale Physics +1512.01213 Neurons and Cognition +1512.02170 Representation Theory +1512.02621 Theory +1512.03421 Combinatorics +1512.03589 Computational Geometry +1512.04546 Mesoscale and Nanoscale Physics +1512.04885 Soft Condensed Matter +1512.05161 +1512.05185 Systems and Control +1512.05721 Soft Condensed Matter +1512.05735 Algebraic Geometry +1512.06243 Analysis of PDEs +1512.06404 Cryptography and Security +1512.06689 +1512.06964 Statistical Mechanics +1512.07461 Algebraic Geometry +1512.07676 Rings and Algebras +1512.07802 Mesoscale and Nanoscale Physics +1512.08038 Solar and Stellar Astrophysics +1512.08204 Learning +1512.08496 Combinatorics +1512.08579 Mesoscale and Nanoscale Physics +1512.08584 Mesoscale and Nanoscale Physics +1512.08837 Fluid Dynamics +1512.08895 Phenomenology +1512.08975 Probability +1512.09161 Dynamical Systems +1512.09229 +1601.00275 Cryptography and Security +1601.00300 Phenomenology +1601.00368 Mesoscale and Nanoscale Physics +1601.00425 Superconductivity +1601.00522 Fluid Dynamics +1601.00570 Physics and Society +1601.00965 Instrumentation and Methods for Astrophysics +1601.01050 Programming Languages +1601.01546 Logic in Computer Science +1601.01609 Mesoscale and Nanoscale Physics +1601.01781 Materials Science +1601.01897 Metric Geometry +1601.02025 Theory +1601.02027 Phenomenology +1601.02034 Databases +1601.02035 Functional Analysis +1601.02036 +1601.02037 Functional Analysis +1601.02038 Phenomenology +1601.02039 Computer Science and Game Theory +1601.02042 +1601.02043 Applications +1601.02044 Solar and Stellar Astrophysics +1601.02046 Solar and Stellar Astrophysics +1601.02047 Plasma Physics +1601.02050 Biomolecules +1601.02052 Strongly Correlated Electrons +1601.02053 +1601.02056 Computational Physics +1601.02059 Programming Languages +1601.02060 +1601.02061 Soft Condensed Matter +1601.02065 Fluid Dynamics +1601.02069 Sound +1601.02071 Human-Computer Interaction +1601.02076 Multimedia +1601.02077 Theory +1601.02079 Materials Science +1601.02084 Differential Geometry +1601.02088 Computer Vision and Pattern Recognition +1601.02098 Computer Vision and Pattern Recognition +1601.02107 Analysis of PDEs +1601.02109 Information Theory +1601.02113 Phenomenology +1601.02115 Networking and Internet Architecture +1601.02117 Cryptography and Security +1601.02120 Numerical Analysis +1601.02121 Probability +1601.02122 Functional Analysis +1601.02124 Computer Vision and Pattern Recognition +1601.02127 Statistics Theory +1601.02130 Networking and Internet Architecture +1601.02131 Distributed, Parallel, and Cluster Computing +1601.02132 Logic in Computer Science +1601.02135 Group Theory +1601.02137 Information Theory +1601.02138 +1601.02142 Materials Science +1601.02143 Classical Analysis and ODEs +1601.02144 Earth and Planetary Astrophysics +1601.02145 Algebraic Geometry +1601.02146 Optimization and Control +1601.02147 Probability +1601.02149 Pricing of Securities +1601.02150 Networking and Internet Architecture +1601.02153 Algebraic Geometry +1601.02154 Analysis of PDEs +1601.02155 Social and Information Networks +1601.02156 Risk Management +1601.02158 Category Theory +1601.02165 Strongly Correlated Electrons +1601.02166 Computation and Language +1601.02167 Symplectic Geometry +1601.02169 Commutative Algebra +1601.02173 Classical Analysis and ODEs +1601.02182 Numerical Analysis +1601.02185 Algebraic Topology +1601.02186 Astrophysics of Galaxies +1601.02188 Probability +1601.02189 Neurons and Cognition +1601.02190 Systems and Control +1601.02191 Systems and Control +1601.02192 Classical Analysis and ODEs +1601.02193 Number Theory +1601.02194 Algebraic Geometry +1601.02195 +1601.02197 Human-Computer Interaction +1601.02199 Instrumentation and Detectors +1601.02200 Information Theory +1601.02201 Functional Analysis +1601.02204 Robotics +1601.02211 Materials Science +1601.02212 Combinatorics +1601.02213 Learning +1601.02214 Materials Science +1601.02215 Materials Science +1601.02216 Information Theory +1601.02218 Optimization and Control +1601.02220 Computer Vision and Pattern Recognition +1601.02221 Mesoscale and Nanoscale Physics +1601.02223 Information Theory +1601.02224 Applications +1601.02225 Computer Vision and Pattern Recognition +1601.02229 Combinatorics +1601.02230 +1601.02232 Differential Geometry +1601.02234 Combinatorics +1601.02237 Mesoscale and Nanoscale Physics +1601.02238 Probability +1601.02241 Computational Engineering, Finance, and Science +1601.02243 Number Theory +1601.02245 Numerical Analysis +1601.02246 Pricing of Securities +1601.02250 Systems and Control +1601.02252 Metric Geometry +1601.02255 Mesoscale and Nanoscale Physics +1601.02257 Learning +1601.02258 Logic in Computer Science +1601.02264 Lattice +1601.02265 Mesoscale and Nanoscale Physics +1601.02274 Rings and Algebras +1601.02275 Group Theory +1601.02277 Atomic Physics +1601.02281 Cryptography and Security +1601.02285 Probability +1601.02289 Solar and Stellar Astrophysics +1601.02291 Mesoscale and Nanoscale Physics +1601.02293 Solar and Stellar Astrophysics +1601.02294 Complex Variables +1601.02295 Complex Variables +1601.02296 Solar and Stellar Astrophysics +1601.02298 Computer Science and Game Theory +1601.02299 Analysis of PDEs +1601.02300 Information Retrieval +1601.02308 Spectral Theory +1601.02313 +1601.02314 Geometric Topology +1601.02315 Optimization and Control +1601.02316 Materials Science +1601.02317 Mesoscale and Nanoscale Physics +1601.02322 +1601.02324 +1601.02325 Analysis of PDEs +1601.02327 Information Retrieval +1601.02331 Disordered Systems and Neural Networks +1601.02332 Solar and Stellar Astrophysics +1601.02333 Numerical Analysis +1601.02334 Instrumentation and Methods for Astrophysics +1601.02338 Complex Variables +1601.02341 Phenomenology +1601.02343 General Topology +1601.02346 Materials Science +1601.02351 Software Engineering +1601.02352 Geophysics +1601.02354 Combinatorics +1601.02359 Medical Physics +1601.02361 Numerical Analysis +1601.02362 Functional Analysis +1601.02364 Superconductivity +1601.02366 Theory +1601.02370 Solar and Stellar Astrophysics +1601.02371 Discrete Mathematics +1601.02372 Social and Information Networks +1601.02376 Learning +1601.02377 Learning +1601.02378 Strongly Correlated Electrons +1601.02379 Robotics +1601.02380 Information Theory +1601.02387 Computation +1601.02397 Tissues and Organs +1601.02399 Materials Science +1601.02401 Chemical Physics +1601.02405 Earth and Planetary Astrophysics +1601.02407 Statistical Finance +1601.02408 Algebraic Geometry +1601.02410 Methodology +1601.02419 Differential Geometry +1601.02420 Information Theory +1601.02421 Algebraic Geometry +1601.02422 Algebraic Geometry +1601.02423 High Energy Astrophysical Phenomena +1601.02424 Mesoscale and Nanoscale Physics +1601.02425 Algebraic Geometry +1601.02429 Applications +1601.02431 Computation and Language +1601.02433 Artificial Intelligence +1601.02437 Information Theory +1601.02438 +1601.02441 Metric Geometry +1601.02442 Differential Geometry +1601.02443 Strongly Correlated Electrons +1601.02453 Discrete Mathematics +1601.02460 Information Theory +1601.02461 Methodology +1601.02464 Soft Condensed Matter +1601.02465 Social and Information Networks +1601.02472 Distributed, Parallel, and Cluster Computing +1601.02473 Commutative Algebra +1601.02475 +1601.02480 +1601.02481 Data Structures and Algorithms +1601.02482 Algebraic Geometry +1601.02484 Programming Languages +1601.02487 Computer Vision and Pattern Recognition +1601.02489 Sound +1601.02491 Instrumentation and Methods for Astrophysics +1601.02495 +1601.02497 High Energy Astrophysical Phenomena +1601.02499 Social and Information Networks +1601.02502 Computation and Language +1601.02504 General Physics +1601.02505 Solar and Stellar Astrophysics +1601.02509 Functional Analysis +1601.02510 Dynamical Systems +1601.02513 Machine Learning +1601.02514 Cosmology and Nongalactic Astrophysics +1601.02515 Probability +1601.02519 History and Philosophy of Physics +1601.02527 +1601.02536 Programming Languages +1601.02537 +1601.02538 Analysis of PDEs +1601.02539 Computation and Language +1601.02543 Computation and Language +1601.02546 Sound +1601.02547 Numerical Analysis +1601.02548 Analysis of PDEs +1601.02550 Analysis of PDEs +1601.02552 Analysis of PDEs +1601.02555 Geometric Topology +1601.02558 +1601.02560 Physics Education +1601.02561 Group Theory +1601.02562 Physics Education +1601.02563 +1601.02564 Combinatorics +1601.02566 Classical Analysis and ODEs +1601.02568 Functional Analysis +1601.02571 Phenomenology +1601.02572 Algebraic Geometry +1601.02579 Optics +1601.02588 +1601.02590 Materials Science +1601.02591 Number Theory +1601.02592 +1601.02596 Methodology +1601.02598 +1007.1948 +1010.0904 Molecular Networks +1110.2771 General Physics +1202.2481 Category Theory +1203.3155 Logic +1205.5878 Differential Geometry +1308.4236 Analysis of PDEs +1309.0630 Algebraic Geometry +1311.7172 Algebraic Geometry +1312.4007 +1401.0725 +1401.0758 Computational Complexity +1401.0779 Classical Analysis and ODEs +1401.1748 +1401.2370 Mesoscale and Nanoscale Physics +1401.2555 Probability +1401.2732 Hardware Architecture +1401.2958 Analysis of PDEs +1401.3669 Computation and Language +1401.4837 +1401.5230 Optics +1401.5484 Optimization and Control +1401.6615 Distributed, Parallel, and Cluster Computing +1401.7929 Combinatorics +1405.0985 Classical Analysis and ODEs +1405.4786 Representation Theory +1406.1688 Lattice +1409.5253 Physics and Society +1409.7861 Optimization and Control +1409.8537 Analysis of PDEs +1410.7280 Quantum Gases +1411.1197 Algebraic Geometry +1411.1394 Algebraic Geometry +1412.0388 Number Theory +1412.1150 Spectral Theory +1412.1540 Dynamical Systems +1412.1801 General Physics +1412.2047 Dynamical Systems +1412.2282 Methodology +1412.2829 Chemical Physics +1412.3071 Combinatorics +1412.3526 Differential Geometry +1412.4120 Strongly Correlated Electrons +1412.4409 Theory +1412.5184 Astrophysics of Galaxies +1412.5291 Optimization and Control +1412.5645 Probability +1412.6310 Differential Geometry +1412.6336 Differential Geometry +1412.6340 Number Theory +1412.6608 Methodology +1412.6745 Mathematical Finance +1412.7271 Materials Science +1412.8497 +1501.01622 Differential Geometry +1501.02108 Applications +1501.02353 Numerical Analysis +1501.02824 Spectral Theory +1501.03772 Probability +1501.04432 Operator Algebras +1501.04648 Biomolecules +1501.05179 +1501.05201 Instrumentation and Detectors +1501.05895 +1501.05988 Accelerator Physics +1501.06506 Instrumentation and Methods for Astrophysics +1501.07161 +1501.07297 Risk Management +1502.00766 Rings and Algebras +1502.00815 Statistical Mechanics +1502.00856 Instrumentation and Methods for Astrophysics +1502.01185 Materials Science +1502.02309 Machine Learning +1502.02825 Combinatorics +1502.03046 Statistical Mechanics +1502.03235 +1502.03438 Materials Science +1502.03609 Applications +1502.03909 Physics and Society +1502.05293 General Physics +1502.05612 Mesoscale and Nanoscale Physics +1502.06127 +1502.06266 Strongly Correlated Electrons +1502.06630 Solar and Stellar Astrophysics +1502.06945 Information Theory +1502.07387 Functional Analysis +1502.07910 Soft Condensed Matter +1503.01134 Number Theory +1503.04012 K-Theory and Homology +1503.06019 +1504.07377 Networking and Internet Architecture +1505.00819 Probability +1505.01517 Quantum Gases +1505.01952 +1505.02065 Machine Learning +1505.02292 Risk Management +1505.02344 Rings and Algebras +1505.02360 Optics +1505.03707 +1505.04139 Biomolecules +1505.04355 Astrophysics of Galaxies +1505.05300 Biological Physics +1505.07191 Solar and Stellar Astrophysics +1505.07229 Algebraic Geometry +1506.00618 Combinatorics +1506.00891 Plasma Physics +1506.00947 Applications +1506.01446 Distributed, Parallel, and Cluster Computing +1506.01576 Dynamical Systems +1506.03385 Numerical Analysis +1506.03972 Differential Geometry +1506.04376 Differential Geometry +1506.05292 Computational Physics +1506.05971 Mesoscale and Nanoscale Physics +1506.06087 Combinatorics +1506.06493 Analysis of PDEs +1506.06622 Group Theory +1506.06639 Strongly Correlated Electrons +1506.06812 +1506.06925 Molecular Networks +1506.07305 Space Physics +1506.07336 Materials Science +1506.07554 Computational Finance +1506.08053 Quantum Gases +1506.08224 Disordered Systems and Neural Networks +1506.08278 Statistics Theory +1506.08652 +1506.08697 +1506.09211 Optimization and Control +1507.00491 Materials Science +1507.01267 Atomic and Molecular Clusters +1507.01510 Soft Condensed Matter +1507.01640 Mesoscale and Nanoscale Physics +1507.02091 Phenomenology +1507.02825 Cryptography and Security +1507.03638 Artificial Intelligence +1507.03715 Computational Geometry +1507.03726 Group Theory +1507.03799 Instrumentation and Detectors +1507.04765 +1507.05239 Combinatorics +1507.05937 Quantum Gases +1507.06559 +1507.07143 Combinatorics +1507.08198 Information Retrieval +1507.08234 Information Retrieval +1507.08709 Algebraic Topology +1507.08789 Cellular Automata and Lattice Gases +1508.00937 Combinatorics +1508.02217 Adaptation and Self-Organizing Systems +1508.02658 +1508.02774 Neural and Evolutionary Computing +1508.03815 Biomolecules +1508.04878 Quantum Gases +1508.05179 Materials Science +1508.05265 Materials Science +1508.05656 Rings and Algebras +1508.05888 Analysis of PDEs +1508.06071 Robotics +1508.06236 Computational Finance +1508.06495 +1508.06626 Classical Analysis and ODEs +1508.07158 Number Theory +1508.07825 Methodology +1509.01822 Information Theory +1509.02092 Strongly Correlated Electrons +1509.03859 +1509.04382 Superconductivity +1509.04572 High Energy Astrophysical Phenomena +1509.04788 Social and Information Networks +1509.05873 Classical Analysis and ODEs +1509.06155 Solar and Stellar Astrophysics +1509.06260 Dynamical Systems +1509.09285 Quantitative Methods +1510.00427 Neurons and Cognition +1510.00777 Combinatorics +1510.00840 Dynamical Systems +1510.01085 Materials Science +1510.01762 Analysis of PDEs +1510.01946 Optimization and Control +1510.02043 Atmospheric and Oceanic Physics +1510.02521 Combinatorics +1510.03257 Classical Analysis and ODEs +1510.03939 Group Theory +1510.04525 +1510.04568 Optimization and Control +1510.04717 Analysis of PDEs +1510.05348 Strongly Correlated Electrons +1510.06467 +1510.06571 Materials Science +1510.06818 Mesoscale and Nanoscale Physics +1510.07203 Instrumentation and Detectors +1510.07304 Rings and Algebras +1510.09198 Theory +1511.02780 Theory +1511.03655 +1511.04637 Geometric Topology +1511.06229 Materials Science +1511.07993 Probability +1511.09193 Atomic and Molecular Clusters +1512.07749 Analysis of PDEs +1512.07985 Dynamical Systems +1601.00102 +1601.00945 Plasma Physics +1601.02722 Mesoscale and Nanoscale Physics +1601.02801 Methodology +1601.03296 Probability +1601.03649 Neural and Evolutionary Computing +1601.05278 Functional Analysis +1601.05437 Phenomenology +1601.05582 +1601.05763 +1601.06180 Artificial Intelligence +1601.07423 +1602.00369 Differential Geometry +1602.00621 Data Structures and Algorithms +1602.00863 Algebraic Geometry +1602.02075 +1602.02191 Machine Learning +1602.02311 Machine Learning +1602.02433 Phenomenology +1602.02442 Machine Learning +1602.02722 Learning +1602.05795 Applications +1602.07893 Cosmology and Nongalactic Astrophysics +1602.08085 Group Theory +1603.00288 Fluid Dynamics +1603.00940 Optimization and Control +1603.02206 Analysis of PDEs +1603.02921 +1603.03130 Learning +1603.03375 Superconductivity +1603.04159 +1603.05472 +1603.05815 Classical Analysis and ODEs +1603.05983 Theory +1603.08217 Mesoscale and Nanoscale Physics +1604.01013 +1604.02300 Number Theory +1604.03394 Analysis of PDEs +1604.04114 Logic in Computer Science +1604.05568 +1604.05937 Mathematical Software +1605.00191 Phenomenology +1605.00978 Quantum Algebra +1605.04959 Molecular Networks +1605.06794 Algebraic Topology +1605.06796 Machine Learning +1605.07254 Machine Learning +1605.07556 Cosmology and Nongalactic Astrophysics +1605.09775 Classical Analysis and ODEs +1606.01649 Phenomenology +1606.02101 Applications +1606.02556 Computer Vision and Pattern Recognition +1606.03829 Combinatorics +1606.06865 Discrete Mathematics +1606.08028 +1606.08501 Learning +1606.08513 Computation and Language +1606.08665 Phenomenology +1606.09165 Combinatorics +1607.00515 Methodology +1607.01746 Neurons and Cognition +1607.01791 High Energy Astrophysical Phenomena +1607.01817 Logic +1607.02046 Computer Vision and Pattern Recognition +1607.02931 Phenomenology +1607.04189 Strongly Correlated Electrons +1607.04323 History and Overview +1607.05053 Combinatorics +1607.05292 +1607.05329 Cosmology and Nongalactic Astrophysics +1607.05971 General Physics +1607.06801 Methodology +1607.08439 Pattern Formation and Solitons +1607.08723 Computation and Language +1607.08754 Combinatorics +1608.00231 Group Theory +1608.01635 Metric Geometry +1608.02347 Instrumentation and Detectors +1608.02595 +1608.02678 Commutative Algebra +1608.03011 Symplectic Geometry +1608.03817 Machine Learning +1608.05138 Distributed, Parallel, and Cluster Computing +1608.05247 Classical Analysis and ODEs +1608.05996 Solar and Stellar Astrophysics +1608.06860 Chemical Physics +1608.07960 Digital Libraries +1608.08300 +1608.08364 Instrumentation and Detectors +1609.01669 Phenomenology +1609.01993 Analysis of PDEs +1609.02475 Theory +1609.02478 Soft Condensed Matter +1609.03423 Information Theory +1609.05526 Strongly Correlated Electrons +1609.05636 +1609.05729 Earth and Planetary Astrophysics +1609.06182 Superconductivity +1609.06491 Phenomenology +1609.07386 Machine Learning +1609.07715 Systems and Control +1609.07723 Information Theory +1609.08129 Phenomenology +1609.08777 Computation and Language +1609.09004 Computation and Language +1609.09474 Phenomenology +1609.09551 Algebraic Geometry +1609.09764 Sound +1610.00890 Algebraic Topology +1610.02085 Computers and Society +1610.02738 Methodology +1610.03521 Quantitative Methods +1610.04385 Differential Geometry +1610.05147 Lattice +1610.05315 Biological Physics +1610.05603 Cryptography and Security +1610.05725 Data Structures and Algorithms +1610.05740 Classical Analysis and ODEs +1610.05941 Computational Physics +1610.05983 High Energy Astrophysical Phenomena +1610.06366 Formal Languages and Automata Theory +1610.06383 Computational Physics +1610.06424 History and Philosophy of Physics +1610.06493 Optics +1610.06909 Astrophysics of Galaxies +1610.07194 Analysis of PDEs +1610.07488 Computer Vision and Pattern Recognition +1610.07639 Data Structures and Algorithms +1610.07793 Number Theory +1610.07937 Phenomenology +1610.07943 Phenomenology +1610.08050 +1610.08341 +1610.08412 Geophysics +1610.08562 Solar and Stellar Astrophysics +1610.08667 Statistical Mechanics +1610.08687 Analysis of PDEs +1610.08691 Programming Languages +1610.08844 Computer Vision and Pattern Recognition +1610.08874 +1610.08883 Instrumentation and Detectors +1610.08921 Statistical Finance +1610.08955 Analysis of PDEs +1610.08976 Theory +1610.08978 +1610.08984 Instrumentation and Methods for Astrophysics +1610.08985 Phenomenology +1610.08986 Mesoscale and Nanoscale Physics +1610.08988 Mesoscale and Nanoscale Physics +1610.08989 Experiment +1610.08991 Computational Physics +1610.08992 Materials Science +1610.08993 Disordered Systems and Neural Networks +1610.08996 General Topology +1610.08999 Theory +1610.09001 Computer Vision and Pattern Recognition +1610.09002 Social and Information Networks +1610.09003 Computer Vision and Pattern Recognition +1610.09004 Differential Geometry +1610.09005 Statistics Theory +1610.09012 Software Engineering +1610.09016 History and Overview +1610.09019 Classical Analysis and ODEs +1610.09020 Optimization and Control +1610.09022 Mesoscale and Nanoscale Physics +1610.09023 Astrophysics of Galaxies +1610.09024 Phenomenology +1610.09027 Learning +1610.09030 +1610.09031 Chaotic Dynamics +1610.09032 Computer Vision and Pattern Recognition +1610.09034 Machine Learning +1610.09035 Algebraic Topology +1610.09036 Methodology +1610.09037 Methodology +1610.09038 Machine Learning +1610.09039 +1610.09041 Applications +1610.09042 Spectral Theory +1610.09045 Quantitative Methods +1610.09049 Numerical Analysis +1610.09051 Statistics Theory +1610.09052 +1610.09054 Information Theory +1610.09056 Plasma Physics +1610.09058 Data Structures and Algorithms +1610.09059 Pattern Formation and Solitons +1610.09063 Combinatorics +1610.09065 Algebraic Geometry +1610.09066 Accelerator Physics +1610.09068 Statistical Mechanics +1610.09069 Strongly Correlated Electrons +1610.09070 Statistical Mechanics +1610.09072 Learning +1610.09074 Quantum Gases +1610.09075 Machine Learning +1610.09078 Mesoscale and Nanoscale Physics +1610.09079 Numerical Analysis +1610.09080 Numerical Analysis +1610.09081 Representation Theory +1610.09083 Learning +1610.09084 Number Theory +1610.09085 Computational Finance +1610.09087 Computer Vision and Pattern Recognition +1610.09089 Logic in Computer Science +1610.09092 Plasma Physics +1610.09093 Combinatorics +1610.09094 Computational Physics +1610.09097 Pattern Formation and Solitons +1610.09098 High Energy Astrophysical Phenomena +1610.09099 Analysis of PDEs +1610.09100 High Energy Astrophysical Phenomena +1610.09101 Fluid Dynamics +1610.09102 Mesoscale and Nanoscale Physics +1610.09103 Differential Geometry +1610.09106 Dynamical Systems +1610.09107 Number Theory +1610.09110 Information Theory +1610.09111 Superconductivity +1610.09112 Optimization and Control +1610.09114 Combinatorics +1610.09115 Algebraic Geometry +1610.09116 Quantum Gases +1610.09117 Logic +1610.09118 Soft Condensed Matter +1610.09123 Networking and Internet Architecture +1610.09124 Mathematical Finance +1610.09127 Machine Learning +1610.09128 +1610.09129 Quantum Algebra +1610.09130 Computational Complexity +1610.09131 Statistical Mechanics +1610.09132 Computational Complexity +1610.09133 Mesoscale and Nanoscale Physics +1610.09135 Materials Science +1610.09136 Number Theory +1610.09137 Atomic Physics +1610.09138 Systems and Control +1610.09139 Methodology +1610.09140 +1610.09142 +1610.09144 Astrophysics of Galaxies +1610.09145 Systems and Control +1610.09146 Data Structures and Algorithms +1610.09148 Classical Analysis and ODEs +1610.09151 Functional Analysis +1610.09153 Mesoscale and Nanoscale Physics +1610.09154 Classical Analysis and ODEs +1610.09155 Optimization and Control +1610.09156 Machine Learning +1610.09157 Computer Vision and Pattern Recognition +1610.09158 Computation and Language +1610.09159 Computational Physics +1610.09162 Algebraic Geometry +1610.09163 Optics +1610.09164 Social and Information Networks +1610.09165 Classical Analysis and ODEs +1610.09166 Databases +1610.09169 Theory +1610.09170 Dynamical Systems +1610.09171 Number Theory +1610.09172 Materials Science +1610.09173 Systems and Control +1610.09175 Fluid Dynamics +1610.09179 +1610.09181 +1610.09183 Programming Languages +1610.09186 High Energy Astrophysical Phenomena +1610.09187 Statistics Theory +1610.09188 Group Theory +1610.09189 Quantitative Methods +1610.09190 Distributed, Parallel, and Cluster Computing +1610.09193 Neurons and Cognition +1610.09194 Probability +1610.09195 Probability +1610.09197 +1610.09199 Materials Science +1610.09200 Materials Science +1610.09201 Learning +1610.09202 Classical Analysis and ODEs +1610.09203 Analysis of PDEs +1610.09204 Computer Vision and Pattern Recognition +1610.09205 Systems and Control +1610.09206 +1610.09207 Numerical Analysis +1610.09208 Number Theory +1610.09210 Combinatorics +1610.09211 Numerical Analysis +1610.09212 Cryptography and Security +1610.09213 Complex Variables +1610.09214 +1610.09217 +1610.09219 Theory +1610.09221 Computer Science and Game Theory +1610.09222 +1610.09223 Data Structures and Algorithms +1610.09225 Information Retrieval +1610.09226 Computation and Language +1610.09227 Solar and Stellar Astrophysics +1610.09230 Mathematical Finance +1610.09231 Cryptography and Security +1610.09234 Mathematical Finance +1610.09235 Logic in Computer Science +1610.09236 Materials Science +1610.09237 Computer Vision and Pattern Recognition +1610.09238 Algebraic Geometry +1610.09240 Software Engineering +1610.09241 Numerical Analysis +1610.09242 +1610.09244 Information Theory +1610.09245 General Topology +1610.09246 Instrumentation and Detectors +1610.09247 Information Theory +1610.09248 Networking and Internet Architecture +1610.09250 Combinatorics +1610.09253 Social and Information Networks +1610.09254 Logic in Computer Science +1610.09256 Information Theory +1610.09258 Instrumentation and Methods for Astrophysics +1610.09260 Mesoscale and Nanoscale Physics +1610.09262 General Physics +1610.09266 +1610.09268 Commutative Algebra +1610.09269 Learning +1610.09270 Logic +1610.09271 Quantum Algebra +1610.09272 Statistics Theory +1610.09273 +1610.09274 Learning +1610.09276 Group Theory +1610.09278 Computer Vision and Pattern Recognition +1610.09279 Quantitative Methods +1610.09280 Rings and Algebras +1610.09284 Phenomenology +1610.09287 Functional Analysis +1610.09288 Lattice +1610.09292 Statistics Theory +1610.09294 Applications +1610.09295 Analysis of PDEs +1610.09297 Populations and Evolution +1610.09298 Lattice +1610.09300 Learning +1610.09301 Optimization and Control +1610.09304 Number Theory +1610.09306 Mathematical Finance +1610.09309 Other Condensed Matter +1610.09310 Probability +1610.09312 Information Theory +1610.09314 Soft Condensed Matter +1610.09315 Superconductivity +1610.09317 +1610.09318 Phenomenology +1610.09319 +1610.09321 Cosmology and Nongalactic Astrophysics +1610.09323 Group Theory +1610.09324 +1610.09327 High Energy Astrophysical Phenomena +1610.09328 Analysis of PDEs +1610.09330 Cosmology and Nongalactic Astrophysics +1610.09332 Algebraic Geometry +1610.09333 Computation and Language +1610.09334 Computer Vision and Pattern Recognition +1610.09336 Rings and Algebras +1610.09338 Analysis of PDEs +1610.09339 Solar and Stellar Astrophysics +1610.09340 Soft Condensed Matter +1610.09344 Instrumentation and Methods for Astrophysics +1610.09345 Systems and Control +1610.09347 General Physics +1610.09348 Representation Theory +1610.09349 Instrumentation and Detectors +1610.09350 Strongly Correlated Electrons +1610.09351 Superconductivity +1610.09354 Cosmology and Nongalactic Astrophysics +1610.09355 Lattice +1610.09357 Phenomenology +1610.09358 Geophysics +1610.09359 Tissues and Organs +1610.09363 Methodology +1610.09364 +1610.09365 Cosmology and Nongalactic Astrophysics +0710.5684 Soft Condensed Matter +0711.1512 Metric Geometry +0809.0103 Computation and Language +0811.4376 Data Structures and Algorithms +0909.1696 Numerical Analysis +0912.1294 Information Retrieval +1001.2151 Soft Condensed Matter +1001.4561 Materials Science +1001.5010 Solar and Stellar Astrophysics +1002.0914 Classical Physics +1002.2323 Geophysics +1002.2621 Analysis of PDEs +1005.2004 Networking and Internet Architecture +1005.3435 +1007.4009 Mesoscale and Nanoscale Physics +1007.4367 Theory +1008.1288 Mesoscale and Nanoscale Physics +1008.2253 High Energy Astrophysical Phenomena +1009.2972 Astrophysics of Galaxies +1010.2138 Computers and Society +1011.0810 Methodology +1103.5520 Cryptography and Security +1109.6354 Phenomenology +1111.5963 Dynamical Systems +1112.1546 Other Computer Science +1201.5346 Logic in Computer Science +1202.1388 Astrophysics of Galaxies +1202.4880 Performance +1206.6323 +1304.5857 Materials Science +1305.0925 Logic +1307.5387 Instrumentation and Methods for Astrophysics +1310.6820 Mesoscale and Nanoscale Physics +1601.05967 +1602.01548 +1611.06478 Computation and Language +1611.07078 Artificial Intelligence +0803.4354 Discrete Mathematics +0808.3386 Discrete Mathematics +0910.4952 +1010.0657 Mesoscale and Nanoscale Physics +1104.5331 Algebraic Topology +1109.6045 Quantum Gases +1203.0193 Statistics Theory +1204.6689 Number Theory +1210.8059 Complex Variables +1304.6111 Group Theory +1306.3299 +1306.5205 +1307.5919 Combinatorics +1309.1823 Discrete Mathematics +1309.7732 General Physics +1311.4072 Differential Geometry +1401.3993 Dynamical Systems +1401.4983 Algebraic Topology +1402.3353 Numerical Analysis +1402.3692 Exactly Solvable and Integrable Systems +1403.0529 Computational Complexity +1404.6143 +1404.6500 Physics Education +1404.7716 Combinatorics +1405.7485 Solar and Stellar Astrophysics +1407.5487 Chaotic Dynamics +1407.6565 Astrophysics of Galaxies +1408.0248 Algebraic Topology +1408.1390 Computational Complexity +1408.5836 Algebraic Geometry +1409.3718 Statistical Mechanics +1411.4127 +1411.5016 Symplectic Geometry +1411.6495 Number Theory +1412.1722 +1412.1783 +1412.4033 Symplectic Geometry +1412.4954 Analysis of PDEs +1412.5782 +1412.6174 Algebraic Geometry +1412.6776 +1501.02891 Data Analysis, Statistics and Probability +1501.05261 +1502.06027 +1502.06099 +1503.04634 Solar and Stellar Astrophysics +1503.08213 Phenomenology +1504.01999 Probability +1504.05459 Dynamical Systems +1504.07538 Phenomenology +1505.02169 Algebraic Geometry +1505.04616 Statistical Mechanics +1506.02759 Complex Variables +1506.02877 Dynamical Systems +1506.03784 Machine Learning +1506.05388 Combinatorics +1506.05664 +1506.06929 Phenomenology +1507.00816 +1507.01237 Probability +1507.01826 Social and Information Networks +1507.02231 Statistical Mechanics +1507.04461 Databases +1508.01482 Analysis of PDEs +1508.01978 +1508.02597 Dynamical Systems +1508.03149 Astrophysics of Galaxies +1508.05594 Representation Theory +1508.06272 Operator Algebras +1508.07972 Mesoscale and Nanoscale Physics +1509.02161 Atomic and Molecular Clusters +1509.06161 Computer Vision and Pattern Recognition +1509.06430 Discrete Mathematics +1509.07712 +1509.07717 Physics and Society +1510.00178 Dynamical Systems +1510.01953 +1510.05423 Group Theory +1510.08246 Numerical Analysis +1511.00458 Theory +1511.00648 Data Structures and Algorithms +1511.01049 Classical Physics +1511.01883 Accelerator Physics +1511.02392 Computational Physics +1511.02535 Classical Analysis and ODEs +1511.02609 Statistics Theory +1511.03057 Analysis of PDEs +1511.03064 Statistical Mechanics +1511.03565 +1511.03569 +1511.03797 Algebraic Geometry +1511.04202 Neurons and Cognition +1511.04798 Computer Vision and Pattern Recognition +1511.05642 Cosmology and Nongalactic Astrophysics +1511.07395 Classical Physics +1511.09416 Applications +1512.00743 Learning +1512.00858 Theory +1512.00933 Machine Learning +1512.01455 Instrumentation and Detectors +1512.04597 Cosmology and Nongalactic Astrophysics +1512.04829 Machine Learning +1512.05997 Dynamical Systems +1512.08124 Solar and Stellar Astrophysics +1601.00359 +1601.01780 Combinatorics +1601.04072 Theory +1601.04242 Operator Algebras +1601.05040 Combinatorics +1601.07150 Algebraic Topology +1601.07514 Algebraic Geometry +1602.00260 Machine Learning +1602.01793 +1602.02291 Combinatorics +1602.04050 +1602.04578 +1603.02575 Probability +1603.04800 Mesoscale and Nanoscale Physics +1603.06619 Probability +1603.07547 Strongly Correlated Electrons +1603.08477 Optics +1603.08480 +1604.03168 Computer Vision and Pattern Recognition +1604.03334 Computer Vision and Pattern Recognition +1604.04764 Neural and Evolutionary Computing +1604.06366 Biological Physics +1604.08610 Computer Vision and Pattern Recognition +1605.00083 Superconductivity +1605.01688 Combinatorics +1605.02740 Phenomenology +1605.03041 Strongly Correlated Electrons +1605.03243 Computational Complexity +1605.03357 Analysis of PDEs +1605.05199 Statistical Mechanics +1605.06337 +1605.07624 Phenomenology +1606.00127 Information Theory +1606.00322 Astrophysics of Galaxies +1606.02856 Mesoscale and Nanoscale Physics +1606.02886 Quantum Gases +1606.02982 Combinatorics +1606.03160 Algebraic Geometry +1606.03656 Superconductivity +1606.04096 Materials Science +1606.04760 Information Theory +1606.04969 Methodology +1606.05157 Digital Libraries +1606.05822 Strongly Correlated Electrons +1606.07946 Number Theory +1606.07979 Combinatorics +1606.08075 Computers and Society +1607.01155 Optimization and Control +1607.01192 Methodology +1607.01306 Physics and Society +1607.02448 Theory +1607.03689 +1607.05326 Superconductivity +1607.05617 Cosmology and Nongalactic Astrophysics +1607.05649 High Energy Astrophysical Phenomena +1607.06716 Analysis of PDEs +1607.06799 Phenomenology +1607.06832 Phenomenology +1607.07366 Group Theory +1607.08093 Mesoscale and Nanoscale Physics +1607.08632 Strongly Correlated Electrons +1608.01138 Solar and Stellar Astrophysics +1608.01484 Experiment +1608.02538 Phenomenology +1608.02838 Neurons and Cognition +1608.03077 Numerical Analysis +1608.04593 General Physics +1608.05350 +1608.07129 Computational Physics +1608.07197 Algebraic Geometry +1608.07885 Methodology +1608.08415 Strongly Correlated Electrons +1608.08840 High Energy Astrophysical Phenomena +1608.08864 General Physics +1608.08865 General Physics +1609.00342 Materials Science +1609.01575 Computational Complexity +1609.05171 +1609.06198 Theory +1609.07355 Discrete Mathematics +1609.08678 Optics +1609.09527 Solar and Stellar Astrophysics +1609.09576 Algebraic Geometry +1609.09614 +1610.00059 +1610.00094 Statistics Theory +1610.00622 Materials Science +1610.00886 +1610.01467 Materials Science +1610.02024 Strongly Correlated Electrons +1610.02118 K-Theory and Homology +1610.02173 Solar and Stellar Astrophysics +1610.03383 Data Structures and Algorithms +1610.03561 Algebraic Topology +1610.03588 Methodology +1610.03961 Theory +1610.04740 Operator Algebras +1610.04774 Software Engineering +1610.05025 +1610.05108 Machine Learning +1610.05292 Combinatorics +1610.05399 Materials Science +1610.05462 Computers and Society +1610.05485 Probability +1610.05711 Software Engineering +1610.05952 Classical Analysis and ODEs +1610.06038 Materials Science +1610.06080 Group Theory +1610.06110 Chaotic Dynamics +1610.06143 Theory +1610.06151 Accelerator Physics +1610.06170 Medical Physics +1610.06173 Numerical Analysis +1610.06175 Astrophysics of Galaxies +1610.06176 Cosmology and Nongalactic Astrophysics +1610.06178 +1610.06190 High Energy Astrophysical Phenomena +1610.06193 Phenomenology +1610.06194 Machine Learning +1610.06195 Applications +1610.06202 Representation Theory +1610.06203 Numerical Analysis +1610.06207 +1610.06210 Computation and Language +1610.06211 Phenomenology +1610.06212 Networking and Internet Architecture +1610.06213 +1610.06214 Sound +1610.06215 Cosmology and Nongalactic Astrophysics +1610.06218 Robotics +1610.06220 Geophysics +1610.06221 Lattice +1610.06222 Group Theory +1610.06224 Plasma Physics +1610.06226 Phenomenology +1610.06228 Quantum Gases +1610.06229 Logic in Computer Science +1610.06230 Soft Condensed Matter +1610.06231 Experiment +1610.06232 Metric Geometry +1610.06234 High Energy Astrophysical Phenomena +1610.06235 Machine Learning +1610.06236 +1610.06238 Strongly Correlated Electrons +1610.06240 Molecular Networks +1610.06241 Analysis of PDEs +1610.06242 Social and Information Networks +1610.06243 Astrophysics of Galaxies +1610.06244 Experiment +1610.06245 Group Theory +1610.06246 Representation Theory +1610.06247 Materials Science +1610.06249 Learning +1610.06250 Phenomenology +1610.06251 Social and Information Networks +1610.06252 Biological Physics +1610.06253 Materials Science +1610.06254 Phenomenology +1610.06256 +1610.06259 +1610.06261 Representation Theory +1610.06262 Combinatorics +1610.06263 Differential Geometry +1610.06264 Databases +1610.06265 Materials Science +1610.06266 Computer Vision and Pattern Recognition +1610.06267 Materials Science +1610.06268 Emerging Technologies +1610.06272 Computation and Language +1610.06275 +1610.06279 Methodology +1610.06281 Fluid Dynamics +1610.06282 Category Theory +1610.06283 Robotics +1610.06285 Solar and Stellar Astrophysics +1610.06286 Complex Variables +1610.06287 Materials Science +1610.06289 Logic +1610.06290 Dynamical Systems +1610.06291 Phenomenology +1610.06293 Phenomenology +1610.06294 Information Theory +1610.06295 Instrumentation and Detectors +1610.06297 Algebraic Geometry +1610.06298 Social and Information Networks +1610.06300 +1610.06301 Differential Geometry +1610.06304 Number Theory +1610.06305 Numerical Analysis +1610.06306 +1610.06307 Performance +1610.06308 Theory +1610.06309 Performance +1610.06310 Complex Variables +1610.06311 Subcellular Processes +1610.06312 Probability +1610.06315 Optimization and Control +1610.06316 Statistical Mechanics +1610.06317 Logic in Computer Science +1610.06319 +1610.06320 Numerical Analysis +1610.06321 K-Theory and Homology +1610.06323 Mesoscale and Nanoscale Physics +1610.06325 Numerical Analysis +1610.06326 Mesoscale and Nanoscale Physics +1610.06327 Soft Condensed Matter +1610.06330 Superconductivity +1610.06332 Optimization and Control +1610.06334 Accelerator Physics +1610.06335 Materials Science +1610.06336 Functional Analysis +1610.06337 Soft Condensed Matter +1610.06338 Analysis of PDEs +1610.06340 Social and Information Networks +1610.06341 General Topology +1610.06342 Mesoscale and Nanoscale Physics +1610.06343 Cryptography and Security +1610.06345 +1610.06346 Statistical Mechanics +1610.06347 Multimedia +1610.06348 Functional Analysis +1610.06350 Materials Science +1610.06354 Classical Analysis and ODEs +1610.06355 Information Theory +1610.06356 Materials Science +1610.06357 Information Theory +1610.06359 Combinatorics +1610.06361 Biological Physics +1610.06367 Instrumentation and Detectors +1610.06368 Computer Vision and Pattern Recognition +1610.06369 Materials Science +1610.06370 Computation and Language +1610.06372 Solar and Stellar Astrophysics +1610.06374 Number Theory +1610.06376 Number Theory +1610.06378 Combinatorics +1610.06379 Analysis of PDEs +1610.06382 Databases +1610.06384 Analysis of PDEs +1610.06386 Materials Science +1610.06388 Number Theory +1610.06389 Complex Variables +1610.06390 Differential Geometry +1610.06391 Mesoscale and Nanoscale Physics +1610.06392 Atomic Physics +1610.06393 Logic in Computer Science +1610.06394 Representation Theory +1610.06395 Computer Vision and Pattern Recognition +1610.06397 Instrumentation and Methods for Astrophysics +1610.06398 Rings and Algebras +1610.06399 Logic in Computer Science +1610.06400 Combinatorics +1610.06401 +1610.06402 Artificial Intelligence +1610.06403 Atmospheric and Oceanic Physics +1610.06404 Plasma Physics +1610.06405 Phenomenology +1610.06406 Mesoscale and Nanoscale Physics +1610.06407 Earth and Planetary Astrophysics +1610.06409 Logic in Computer Science +1610.06410 Optimization and Control +1610.06411 Dynamical Systems +1610.06412 High Energy Astrophysical Phenomena +1610.06413 Materials Science +1610.06414 General Physics +1610.06415 General Physics +1610.06416 +1610.06418 General Physics +1610.06419 Combinatorics +1610.06421 Neurons and Cognition +1610.06422 Chemical Physics +1610.06423 Probability +1610.06426 Emerging Technologies +1610.06427 Statistics Theory +1610.06428 Solar and Stellar Astrophysics +1610.06430 Probability +1610.06431 Social and Information Networks +1610.06432 Combinatorics +1610.06433 +1610.06434 Machine Learning +1610.06436 Theory +1610.06437 Chemical Physics +1610.06439 Functional Analysis +1610.06440 Number Theory +1610.06441 Representation Theory +1610.06442 Optics +1610.06445 Differential Geometry +1610.06447 Machine Learning +1610.06449 Computer Vision and Pattern Recognition +1610.06453 Computer Vision and Pattern Recognition +1610.06455 Optimization and Control +1610.06456 Theory +1610.06457 Computational Geometry +1610.06458 Information Theory +1610.06460 Solar and Stellar Astrophysics +1610.06461 Machine Learning +1610.06462 Machine Learning +1610.06465 Lattice +1610.06467 Computers and Society +1610.06468 Information Retrieval +1610.06469 Numerical Analysis +1610.06473 Artificial Intelligence +1610.06475 Robotics +1610.06479 Probability +1610.06482 Mesoscale and Nanoscale Physics +1610.06483 Artificial Intelligence +1610.06484 Artificial Intelligence +1610.06485 Artificial Intelligence +1610.06486 Artificial Intelligence +1610.06488 Artificial Intelligence +1610.06490 Artificial Intelligence +1610.06491 Earth and Planetary Astrophysics +1610.06492 Computer Vision and Pattern Recognition +1610.06494 Computer Vision and Pattern Recognition +1610.06496 Computers and Society +1610.06497 Social and Information Networks +1610.06498 Computation and Language +1610.06499 +1610.06500 Databases +1610.06501 Probability +1610.06503 Group Theory +1610.06504 Logic +1610.06505 Materials Science +1610.06506 Optimization and Control +1610.06509 Category Theory +1610.06510 Computation and Language +1610.06514 Geometric Topology +1610.06515 Data Structures and Algorithms +1610.06516 Rings and Algebras +1610.06517 Probability +1610.06518 History and Philosophy of Physics +1610.06519 Optimization and Control +1610.06520 Strongly Correlated Electrons +1610.06523 Analysis of PDEs +1610.06524 Algebraic Geometry +1610.06525 Machine Learning +1610.06526 Commutative Algebra +1610.06527 Analysis of PDEs +1610.06531 Classical Analysis and ODEs +1610.06533 Plasma Physics +1610.06535 Algebraic Topology +1610.06538 Optimization and Control +1610.06539 Combinatorics +1610.06540 Computation and Language +1610.06542 Computation and Language +1610.06544 Materials Science +1610.06547 +1610.06549 Cryptography and Security +1610.06550 Computation and Language +1610.06551 Applications +1610.06553 Algebraic Geometry +1610.06555 Classical Analysis and ODEs +1610.06558 Combinatorics +1610.06560 Theory +astro-ph/0606048 +astro-ph/0606448 +0709.2453 Classical Physics +0803.4392 Classical Analysis and ODEs +0807.3741 Superconductivity +0903.3079 Materials Science +1004.2273 Fluid Dynamics +1006.0541 Complex Variables +1008.1035 Superconductivity +1011.4194 Analysis of PDEs +1104.0406 Differential Geometry +1106.2271 +1201.1740 Biomolecules +1203.3800 Numerical Analysis +1204.4106 Data Structures and Algorithms +1204.4836 Quantum Algebra +1206.0078 +1206.5195 Pattern Formation and Solitons +1207.3378 Soft Condensed Matter +1208.1401 Physics and Society +1209.0160 Combinatorics +1209.2199 Theory +1211.6558 +1212.5561 Soft Condensed Matter +1212.6894 Algebraic Geometry +1301.0409 Probability +1301.3479 Differential Geometry +1305.5056 +1306.3936 Classical Analysis and ODEs +1307.5956 Quantum Algebra +1308.1765 Statistical Mechanics +1310.3478 Commutative Algebra +1311.0181 Information Theory +1311.5228 Cosmology and Nongalactic Astrophysics +1312.3533 Probability +1401.0300 Group Theory +1401.1399 Discrete Mathematics +1401.2932 Number Theory +1402.0779 Learning +1402.4093 Strongly Correlated Electrons +1402.4919 Group Theory +1403.4958 Logic in Computer Science +1405.3747 Functional Analysis +1405.4531 Algebraic Geometry +1406.2238 Probability +1406.3551 K-Theory and Homology +1406.4016 +1406.4693 Classical Analysis and ODEs +1407.2508 Probability +1407.4236 +1407.7513 Combinatorics +1408.1690 Probability +1408.2249 +1408.2290 +1408.3085 Dynamical Systems +1408.6242 Geometric Topology +1409.1315 Phenomenology +1409.5389 Cosmology and Nongalactic Astrophysics +1409.5663 Soft Condensed Matter +1409.6746 +1409.6877 Mesoscale and Nanoscale Physics +1409.7344 Analysis of PDEs +1410.5564 Mesoscale and Nanoscale Physics +1411.3592 +1411.5333 Complex Variables +1411.5360 Biomolecules +1411.6256 Functional Analysis +1411.6549 Computational Complexity +1411.6757 Neural and Evolutionary Computing +1412.0119 Pattern Formation and Solitons +1412.0555 Algebraic Geometry +1412.6239 Combinatorics +1412.7552 Numerical Analysis +1501.01491 Dynamical Systems +1501.02827 Chaotic Dynamics +1501.02874 +1501.07168 Algebraic Geometry +1501.07818 Materials Science +1502.00463 Theory +1502.02095 Strongly Correlated Electrons +1502.04052 Computer Science and Game Theory +1502.04063 General Mathematics +1502.04796 Probability +1502.04956 Artificial Intelligence +1503.02912 Methodology +1503.04156 Dynamical Systems +1503.04518 Theory +1504.01178 Quantum Algebra +1504.02818 +1504.03850 Algebraic Geometry +1504.05116 Superconductivity +1504.05951 Astrophysics of Galaxies +1504.07128 +1505.01623 Soft Condensed Matter +1505.03939 Complex Variables +1505.05895 Quantitative Methods +1505.06097 Analysis of PDEs +1506.00293 Optimization and Control +1506.01089 Soft Condensed Matter +1506.03620 Statistics Theory +1506.05102 General Mathematics +1506.06770 Theory +1506.07942 Computer Science and Game Theory +1507.01387 Materials Science +1507.04030 Soft Condensed Matter +1507.06589 Optics +1507.07023 Number Theory +1507.07291 Functional Analysis +1507.08726 Statistics Theory +1508.00525 Geometric Topology +1508.00886 Lattice +1508.01883 +1508.06150 Algebraic Topology +1508.06242 Materials Science +1509.01763 Cryptography and Security +1509.01962 Complex Variables +1509.02513 Analysis of PDEs +1509.02564 Statistics Theory +1509.04104 Analysis of PDEs +1509.04349 Databases +1509.04357 Physics and Society +1509.04599 Mesoscale and Nanoscale Physics +1509.06059 Number Theory +1509.06588 +1509.06954 +1509.07010 +1509.07566 Information Theory +1509.08041 Complex Variables +1509.08395 Soft Condensed Matter +1510.00776 Fluid Dynamics +1510.01064 Machine Learning +1510.01629 Phenomenology +1510.02418 Operator Algebras +1510.03695 +1510.05626 Theory +1510.06445 Earth and Planetary Astrophysics +1510.08697 Statistical Mechanics +1511.00777 Plasma Physics +1511.02775 Statistics Theory +1511.02939 Soft Condensed Matter +1511.03377 Numerical Analysis +1511.04929 +1511.05174 Computer Vision and Pattern Recognition +1511.05310 Optics +1511.06579 +1511.07283 Earth and Planetary Astrophysics +1511.08572 Dynamical Systems +1511.08808 Astrophysics of Galaxies +1511.09310 +1512.00897 Neurons and Cognition +1512.01289 Computer Vision and Pattern Recognition +1512.02277 Rings and Algebras +1512.02547 Analysis of PDEs +1512.03823 +1512.03858 Differential Geometry +1512.04723 Chaotic Dynamics +1512.05373 Statistical Mechanics +1512.05636 Quantum Gases +1512.06142 Optimization and Control +1512.06703 Phenomenology +1512.07033 Cell Behavior +1512.07599 Strongly Correlated Electrons +1512.07784 +1512.08759 Theory +1601.00170 Differential Geometry +1601.00754 Phenomenology +1601.01448 Optics +1601.02986 Solar and Stellar Astrophysics +1601.03310 Strongly Correlated Electrons +1601.03440 Solar and Stellar Astrophysics +1601.03447 +1601.04529 General Physics +1601.05000 Theory +1601.05413 Astrophysics of Galaxies +1601.06281 Analysis of PDEs +1601.06439 Information Retrieval +1602.00690 Astrophysics of Galaxies +1602.00861 Statistical Mechanics +1602.01473 Theory +1602.01573 +1602.01805 Instrumentation and Methods for Astrophysics +1602.02102 Numerical Analysis +1602.02252 +1602.02266 Mesoscale and Nanoscale Physics +1602.02828 +1602.03465 Lattice +1602.04058 Physics and Society +1602.04573 Classical Analysis and ODEs +1602.04802 Strongly Correlated Electrons +1602.05745 Number Theory +1602.06124 Phenomenology +1602.06404 Populations and Evolution +1602.06526 Phenomenology +1602.06909 Strongly Correlated Electrons +1602.06965 Phenomenology +1602.06969 +1602.07256 Number Theory +1603.00180 Functional Analysis +1603.01438 Chemical Physics +1603.01681 Optimization and Control +1603.01922 Analysis of PDEs +1603.02390 Soft Condensed Matter +1603.02567 Atomic Physics +1603.02600 +1603.02956 Theory +1603.03761 +1603.05100 +1603.05375 Rings and Algebras +1603.06642 Analysis of PDEs +1603.06986 Molecular Networks +1603.07120 Computer Vision and Pattern Recognition +1603.07209 History and Overview +1603.08376 Strongly Correlated Electrons +1603.08951 +1603.08971 Theory +1603.09019 +1603.09057 +1604.00183 Cosmology and Nongalactic Astrophysics +1604.00345 Strongly Correlated Electrons +1604.00472 Soft Condensed Matter +1604.00624 +1604.00756 Theory +1604.00771 Probability +1604.01059 Cosmology and Nongalactic Astrophysics +1604.01953 Pattern Formation and Solitons +1604.02127 Disordered Systems and Neural Networks +1604.02851 Differential Geometry +1604.03196 Computer Vision and Pattern Recognition +1604.03386 Algebraic Geometry +1604.03801 Solar and Stellar Astrophysics +1604.04195 Earth and Planetary Astrophysics +1604.04225 Information Theory +1604.04916 Number Theory +1604.05353 Disordered Systems and Neural Networks +1604.05433 Complex Variables +1604.06034 +1604.06257 Theory +1604.06822 Statistical Mechanics +1604.06859 Probability +1604.06884 Discrete Mathematics +1604.06909 Theory +1604.07321 Atomic Physics +1604.07718 Probability +1604.07876 Physics and Society +1604.08194 Optimization and Control +1604.08717 Number Theory +1604.08836 Phenomenology +1605.00525 Dynamical Systems +1605.00750 Theory +1605.01075 Theory +1605.01252 Materials Science +1605.01607 High Energy Astrophysical Phenomena +1605.01723 Cosmology and Nongalactic Astrophysics +1605.01737 Superconductivity +1605.01905 Neurons and Cognition +1605.02009 Disordered Systems and Neural Networks +1605.02379 Mesoscale and Nanoscale Physics +1605.02984 Quantum Gases +1605.03188 Rings and Algebras +1605.03504 Cosmology and Nongalactic Astrophysics +1605.04029 Computation +1605.04048 Atomic Physics +1605.04572 Probability +1605.04782 Optics +1605.05931 Combinatorics +1605.06196 +1605.06488 Subcellular Processes +1605.07644 Algebraic Geometry +1605.08140 Computer Vision and Pattern Recognition +1605.08571 Robotics +1605.08736 Phenomenology +1605.08782 Astrophysics of Galaxies +1605.08790 Functional Analysis +1605.08930 Statistical Mechanics +1605.09077 High Energy Astrophysical Phenomena +1605.09337 +1605.09414 Astrophysics of Galaxies +1605.09434 Algebraic Geometry +1605.09507 Sound +1606.00103 Computer Vision and Pattern Recognition +1606.00433 Cosmology and Nongalactic Astrophysics +1606.00468 +1606.00559 +1606.01256 +1606.01810 Other Computer Science +1606.01818 Phenomenology +1606.02030 Astrophysics of Galaxies +1606.02139 +1606.02269 Optimization and Control +1606.02301 Cosmology and Nongalactic Astrophysics +1606.02348 Information Theory +1606.02623 Classical Analysis and ODEs +1606.02648 Analysis of PDEs +1606.02776 Quantum Gases +1606.03130 Physics and Society +1606.03465 Mesoscale and Nanoscale Physics +1606.03623 Machine Learning +1606.03885 Atomic Physics +1606.03902 Materials Science +1606.03967 +1606.04220 Networking and Internet Architecture +1606.04353 Theory +1606.04392 Algebraic Geometry +1606.04781 Phenomenology +1606.04799 Soft Condensed Matter +1606.05015 Superconductivity +1606.05074 +1606.05180 Solar and Stellar Astrophysics +1606.05986 Materials Science +1606.06018 Superconductivity +1606.06096 +1606.06198 +1606.06398 Number Theory +1606.06456 Statistical Mechanics +1606.06695 Phenomenology +1606.07253 Computer Vision and Pattern Recognition +1606.07411 Phenomenology +1606.07740 +1606.07777 Social and Information Networks +1606.07826 Phenomenology +1606.07934 +1606.08308 Strongly Correlated Electrons +1606.08508 +1606.09030 Astrophysics of Galaxies +1606.09232 High Energy Astrophysical Phenomena +1606.09397 Cosmology and Nongalactic Astrophysics +1606.09484 Phenomenology +1607.00079 +1607.00123 Theory +1607.00337 +1607.00444 Materials Science +1607.00832 Phenomenology +1607.01039 Distributed, Parallel, and Cluster Computing +1607.01424 Combinatorics +1607.01777 Earth and Planetary Astrophysics +1607.01929 Theory +1607.02012 High Energy Astrophysical Phenomena +1607.02112 +1607.02141 Astrophysics of Galaxies +1607.02143 Astrophysics of Galaxies +1607.02156 Materials Science +1607.02159 +1607.02342 +1607.02861 Digital Libraries +1607.03137 Lattice +1607.03309 Phenomenology +1607.03491 Mesoscale and Nanoscale Physics +1607.03508 +1607.03754 Earth and Planetary Astrophysics +1607.03871 Statistical Mechanics +1607.04112 Strongly Correlated Electrons +1607.04407 Statistics Theory +1607.04620 Strongly Correlated Electrons +1607.04747 Social and Information Networks +1607.05111 Earth and Planetary Astrophysics +1607.05120 Logic in Computer Science +1607.05164 Strongly Correlated Electrons +1607.05260 Theory +1607.05854 +1607.06882 +1607.06968 Statistical Mechanics +1607.07111 +1607.07146 Materials Science +1607.07590 Data Analysis, Statistics and Probability +1607.07855 Strongly Correlated Electrons +1607.07899 Theory +1607.07914 Probability +1607.08016 Cosmology and Nongalactic Astrophysics +1607.08573 Strongly Correlated Electrons +1607.08636 Theory +1607.08646 Theory +1607.08767 Other Condensed Matter +1607.08895 High Energy Astrophysical Phenomena +1608.00017 Plasma Physics +1608.00331 Disordered Systems and Neural Networks +1608.00565 Instrumentation and Detectors +1608.00734 Optics +1608.00820 Information Theory +1608.00901 Phenomenology +1608.00928 Analysis of PDEs +1608.00965 +1608.00978 Solar and Stellar Astrophysics +1608.00996 Astrophysics of Galaxies +1608.01003 Experiment +1608.01325 Phenomenology +1608.01356 +1608.01624 Instrumentation and Methods for Astrophysics +1608.01646 Probability +1608.02113 High Energy Astrophysical Phenomena +1608.02220 Group Theory +1608.02313 Cosmology and Nongalactic Astrophysics +1608.02588 Astrophysics of Galaxies +1608.02607 +1608.02620 +1608.02625 Classical Physics +1608.02853 Theory +1608.02951 Astrophysics of Galaxies +1608.03038 +1608.03292 +1608.03441 Astrophysics of Galaxies +1608.03588 Instrumentation and Detectors +1608.03656 Social and Information Networks +1608.03753 Physics and Society +1608.03872 Phenomenology +1608.03966 Analysis of PDEs +1608.04256 Superconductivity +1608.04403 Cosmology and Nongalactic Astrophysics +1608.04414 Learning +1608.04523 Materials Science +1608.04567 Social and Information Networks +1608.04665 Solar and Stellar Astrophysics +1608.04856 Phenomenology +1608.05161 Astrophysics of Galaxies +1608.05398 Statistical Mechanics +1608.05415 Astrophysics of Galaxies +1608.05826 Strongly Correlated Electrons +1608.05885 +1608.05924 Algebraic Geometry +1608.06131 Solar and Stellar Astrophysics +1608.06205 Strongly Correlated Electrons +1608.06223 Theory +1608.06523 Theory +1608.06640 Strongly Correlated Electrons +1608.06731 +1608.06780 Representation Theory +1608.06835 +1608.06892 +1608.06912 Combinatorics +1608.06979 Theory +1608.07003 Optics +1608.07137 Quantum Gases +1608.07226 Mathematical Finance +1608.07235 +1608.07558 +1608.07791 Phenomenology +1608.07925 Statistical Mechanics +1608.07932 Atomic Physics +1608.08293 Accelerator Physics +1608.08390 +1608.08430 Plasma Physics +1608.08501 Phenomenology +1608.08566 Quantum Gases +1608.08707 Astrophysics of Galaxies +1608.08852 Machine Learning +1609.00066 Methodology +1609.00259 Statistical Mechanics +1609.00319 Earth and Planetary Astrophysics +1609.00352 Quantum Gases +1609.00402 Statistics Theory +1609.00641 Statistical Mechanics +1609.00816 Strongly Correlated Electrons +1609.00860 Phenomenology +1609.00946 Fluid Dynamics +1609.01069 High Energy Astrophysical Phenomena +1609.01318 Mesoscale and Nanoscale Physics +1609.01452 Solar and Stellar Astrophysics +1609.01741 +1609.01887 +1609.01896 Mesoscale and Nanoscale Physics +1609.01937 Soft Condensed Matter +1609.01998 Cosmology and Nongalactic Astrophysics +1609.02023 Astrophysics of Galaxies +1609.02062 Functional Analysis +1609.02352 Quantum Gases +1609.02480 Cosmology and Nongalactic Astrophysics +1609.02807 Quantum Gases +1609.02830 +1609.02864 Solar and Stellar Astrophysics +1609.02917 Earth and Planetary Astrophysics +1609.02942 High Energy Astrophysical Phenomena +1609.03246 Geophysics +1609.03370 Mesoscale and Nanoscale Physics +1609.03482 Number Theory +1609.03606 Quantum Gases +1609.03697 Cosmology and Nongalactic Astrophysics +1609.03705 Strongly Correlated Electrons +1609.04032 Solar and Stellar Astrophysics +1609.04123 Strongly Correlated Electrons +1609.04207 Materials Science +1609.04409 Astrophysics of Galaxies +1609.04557 Learning +1609.04983 Strongly Correlated Electrons +1609.05201 High Energy Astrophysical Phenomena +1609.05442 Materials Science +1609.05736 Theory +1609.05748 Instrumentation and Methods for Astrophysics +1609.05853 Analysis of PDEs +1609.05894 Astrophysics of Galaxies +1609.05972 +1609.06148 Earth and Planetary Astrophysics +1609.06300 Theory +1609.06307 High Energy Astrophysical Phenomena +1609.06308 Astrophysics of Galaxies +1609.06416 Computational Physics +1609.06735 Phenomenology +1609.06798 +1609.07099 Phenomenology +1609.07107 Solar and Stellar Astrophysics +1609.07462 Tissues and Organs +1609.07648 Strongly Correlated Electrons +1609.07707 Atomic Physics +1609.07751 Phenomenology +1609.07850 Materials Science +1609.07980 Materials Science +1609.08500 Theory +1609.08816 Methodology +1609.09492 Instrumentation and Methods for Astrophysics +1609.09512 Earth and Planetary Astrophysics +1609.09524 Materials Science +1609.09592 Algebraic Geometry +1609.09818 Solar and Stellar Astrophysics +1609.09824 Algebraic Geometry +1609.09860 Statistical Mechanics +1610.00034 Mesoscale and Nanoscale Physics +1610.00065 Materials Science +1610.00193 Solar and Stellar Astrophysics +1610.00861 Soft Condensed Matter +1610.00896 Earth and Planetary Astrophysics +1610.00919 High Energy Astrophysical Phenomena +1610.00938 Cosmology and Nongalactic Astrophysics +1610.01049 +1610.01132 Learning +1610.01244 Quantum Gases +1610.01261 +1610.01347 Phenomenology +1610.02061 +1610.02168 Solar and Stellar Astrophysics +1610.02224 Mesoscale and Nanoscale Physics +1610.02235 +1610.02322 Phenomenology +1610.02335 Cosmology and Nongalactic Astrophysics +1610.02636 +1610.02721 Solar and Stellar Astrophysics +1610.02793 Solar and Stellar Astrophysics +1610.02821 Differential Geometry +1610.03091 Cosmology and Nongalactic Astrophysics +1610.03101 Astrophysics of Galaxies +1610.03222 Solar and Stellar Astrophysics +1610.03240 Space Physics +1610.03304 +1610.03374 Phenomenology +1610.03423 Representation Theory +1610.03459 Solar and Stellar Astrophysics +1610.03544 Materials Science +1610.03670 Computer Vision and Pattern Recognition +1610.03816 Theory +1610.04006 +1610.04081 General Physics +1610.04133 Phenomenology +1610.04365 Instrumentation and Methods for Astrophysics +1610.04538 Statistical Mechanics +1610.04562 Astrophysics of Galaxies +1610.04600 Solar and Stellar Astrophysics +1610.04746 Experiment +1610.05310 Astrophysics of Galaxies +1610.05369 Astrophysics of Galaxies +1610.05407 Cosmology and Nongalactic Astrophysics +1610.05459 Astrophysics of Galaxies +1610.05543 Astrophysics of Galaxies +1610.05554 Solar and Stellar Astrophysics +1610.05582 Strongly Correlated Electrons +1610.05769 Astrophysics of Galaxies +1610.05790 Solar and Stellar Astrophysics +1610.06150 Solar and Stellar Astrophysics +1610.06164 +1610.06167 High Energy Astrophysical Phenomena +1610.06463 Earth and Planetary Astrophysics +1610.06481 Cosmology and Nongalactic Astrophysics +1610.06661 Materials Science +1610.06713 Space Physics +1610.07157 Solar and Stellar Astrophysics +1610.07280 +1610.07350 +1610.07454 Solar and Stellar Astrophysics +1610.07552 Solar and Stellar Astrophysics +1610.07740 Information Theory +1610.07790 Theory +1610.07928 Atomic Physics +1610.07953 Solar and Stellar Astrophysics +1610.08016 Earth and Planetary Astrophysics +1610.08505 Astrophysics of Galaxies +1610.08581 Astrophysics of Galaxies +1610.08596 High Energy Astrophysical Phenomena +1610.08610 Astrophysics of Galaxies +1610.08837 Quantum Gases +1610.08997 Astrophysics of Galaxies +1610.09067 Earth and Planetary Astrophysics +1610.09233 Atomic Physics +1610.09291 Solar and Stellar Astrophysics +1610.09343 Probability +1610.09374 Astrophysics of Galaxies +1610.09459 Astrophysics of Galaxies +1610.09667 Earth and Planetary Astrophysics +1610.09869 Astrophysics of Galaxies +1610.10015 Strongly Correlated Electrons +1610.10066 Astrophysics of Galaxies +1610.10089 Earth and Planetary Astrophysics +1611.00004 Astrophysics of Galaxies +1611.00006 Astrophysics of Galaxies +1611.00359 Cosmology and Nongalactic Astrophysics +1611.00364 Earth and Planetary Astrophysics +1611.00437 Astrophysics of Galaxies +1611.00653 Classical Analysis and ODEs +1611.00741 Earth and Planetary Astrophysics +1611.00754 K-Theory and Homology +1611.00781 Astrophysics of Galaxies +1611.00830 Solar and Stellar Astrophysics +1611.01020 +1611.01151 Astrophysics of Galaxies +1611.01156 Astrophysics of Galaxies +1611.01161 Astrophysics of Galaxies +1611.01183 Quantum Gases +1611.01185 Solar and Stellar Astrophysics +1611.01249 Solar and Stellar Astrophysics +1611.01521 Astrophysics of Galaxies +1611.02318 High Energy Astrophysical Phenomena +1611.02397 Phenomenology +1611.02574 Astrophysics of Galaxies +1611.02604 Earth and Planetary Astrophysics +1611.02615 Earth and Planetary Astrophysics +1611.02677 Phenomenology +1611.02712 Instrumentation and Methods for Astrophysics +1611.02887 High Energy Astrophysical Phenomena +1611.02897 Solar and Stellar Astrophysics +1611.03224 Functional Analysis +1611.03347 Theory +1611.03705 Number Theory +1611.03867 Instrumentation and Methods for Astrophysics +1611.03971 Social and Information Networks +1611.04022 Distributed, Parallel, and Cluster Computing +1611.04172 Classical Analysis and ODEs +1611.04574 Astrophysics of Galaxies +1611.04626 High Energy Astrophysical Phenomena +1611.04680 Probability +1611.04910 Number Theory +1611.04938 Exactly Solvable and Integrable Systems +1611.05069 Phenomenology +1611.05165 Astrophysics of Galaxies +1611.05192 Cosmology and Nongalactic Astrophysics +1611.05473 Solar and Stellar Astrophysics +1611.05686 Astrophysics of Galaxies +1611.05758 High Energy Astrophysical Phenomena +1611.06025 +1611.06087 High Energy Astrophysical Phenomena +1611.06275 Solar and Stellar Astrophysics +1611.06806 High Energy Astrophysical Phenomena +1611.07061 Earth and Planetary Astrophysics +1611.07160 Instrumentation and Methods for Astrophysics +1611.07174 Computation and Language +1611.07386 Numerical Analysis +1611.07415 Number Theory +1611.07574 Commutative Algebra +1611.07777 Optimization and Control +1611.08074 Statistical Mechanics +1611.08670 Mesoscale and Nanoscale Physics +1611.08708 Earth and Planetary Astrophysics +1611.09338 Number Theory +1611.09408 Statistics Theory +1611.10001 Complex Variables +1611.10125 High Energy Astrophysical Phenomena +1611.10182 Robotics +1611.10190 Mesoscale and Nanoscale Physics +1611.10203 Statistics Theory +1611.10205 +1611.10216 Representation Theory +1612.00158 High Energy Astrophysical Phenomena +1612.00296 +1612.00379 Superconductivity +1612.00580 Combinatorics +1612.00714 Astrophysics of Galaxies +1612.01188 Cryptography and Security +1612.01244 Dynamical Systems +1612.01420 Solar and Stellar Astrophysics +1612.01501 Neural and Evolutionary Computing +1612.01676 Lattice +1612.01745 Solar and Stellar Astrophysics +1612.01800 Strongly Correlated Electrons +1612.01948 Solar and Stellar Astrophysics +1612.02152 +1612.02196 Astrophysics of Galaxies +1612.02217 Phenomenology +1612.02506 Optimization and Control +1612.02677 Solar and Stellar Astrophysics +1612.02971 Mesoscale and Nanoscale Physics +1612.02972 +1612.03393 Optimization and Control +1612.03529 Materials Science +1612.03567 Populations and Evolution +1612.03680 Functional Analysis +1612.03739 General Physics +1612.03930 Computation +1612.04029 Computer Science and Game Theory +1612.04389 Phenomenology +1612.04917 Solar and Stellar Astrophysics +1612.04972 Differential Geometry +1612.05090 Representation Theory +1612.05191 Computer Science and Game Theory +1612.05233 Theory +1612.05303 Rings and Algebras +1612.05360 Computer Vision and Pattern Recognition +1612.05396 Phenomenology +1612.05526 Number Theory +1612.05695 +1612.05744 Soft Condensed Matter +1612.05835 Theory +1612.05841 Statistical Mechanics +1612.05876 Instrumentation and Detectors +1612.05903 +1612.05969 +1612.06007 Artificial Intelligence +1612.06234 Superconductivity +1612.06245 Optimization and Control +1612.06248 Theory +1612.06356 Statistical Mechanics +1612.06457 Computer Vision and Pattern Recognition +1612.06479 Mesoscale and Nanoscale Physics +1612.06488 Astrophysics of Galaxies +1612.06544 Phenomenology +1612.06631 Phenomenology +1612.06676 Learning +1612.06699 Computer Vision and Pattern Recognition +1612.06712 General Physics +1612.06765 Theory +1612.06882 High Energy Astrophysical Phenomena +1612.07016 Mathematical Finance +1612.07178 +1612.07190 Methodology +1612.07333 Robotics +1612.07398 Experiment +1612.07508 High Energy Astrophysical Phenomena +1612.07527 Combinatorics +1612.07545 Computer Vision and Pattern Recognition +1612.07566 Solar and Stellar Astrophysics +1612.07593 +1612.07667 Materials Science +1612.07713 Materials Science +1612.07723 Fluid Dynamics +1612.07818 Experiment +1612.07820 Dynamical Systems +1612.07915 Metric Geometry +1612.08004 +1612.08013 Numerical Analysis +1612.08057 Discrete Mathematics +1612.08088 Theory +1612.08090 Phenomenology +1612.08091 +1612.08092 Mesoscale and Nanoscale Physics +1612.08093 High Energy Astrophysical Phenomena +1612.08094 Numerical Analysis +1612.08095 Software Engineering +1612.08097 Data Structures and Algorithms +1612.08099 Methodology +1612.08102 Social and Information Networks +1612.08103 +1612.08105 Functional Analysis +1612.08106 Numerical Analysis +1612.08107 Numerical Analysis +1612.08108 High Energy Astrophysical Phenomena +1612.08109 Artificial Intelligence +1612.08110 Experiment +1612.08112 Phenomenology +1612.08113 Statistics Theory +1612.08114 Methodology +1612.08116 Quantitative Methods +1612.08117 Human-Computer Interaction +1612.08119 Optics +1612.08120 Analysis of PDEs +1612.08121 Fluid Dynamics +1612.08122 Theory +1612.08123 Quantum Algebra +1612.08126 Robotics +1612.08127 Functional Analysis +1612.08128 Dynamical Systems +1612.08129 Information Theory +1612.08131 Soft Condensed Matter +1612.08132 Soft Condensed Matter +1612.08134 Soft Condensed Matter +1612.08135 +1612.08136 Combinatorics +1612.08139 +1612.08142 Materials Science +1612.08143 Optics +1612.08146 Number Theory +1612.08149 Mesoscale and Nanoscale Physics +1612.08150 Mesoscale and Nanoscale Physics +1612.08152 Representation Theory +1612.08153 Computer Vision and Pattern Recognition +1612.08154 Formal Languages and Automata Theory +1612.08158 Number Theory +1612.08160 Chaotic Dynamics +1612.08161 Analysis of PDEs +1612.08163 Hardware Architecture +1612.08164 +1612.08165 Applications +1612.08167 Analysis of PDEs +1612.08168 Phenomenology +1612.08169 Computer Vision and Pattern Recognition +1612.08170 Computer Vision and Pattern Recognition +1612.08171 Computation and Language +1612.08172 +1612.08173 Algebraic Geometry +1612.08174 Soft Condensed Matter +1612.08175 Optics +1612.08177 Commutative Algebra +1612.08178 Information Retrieval +1612.08179 Soft Condensed Matter +1612.08182 +1612.08183 Differential Geometry +1612.08186 Combinatorics +1612.08188 High Energy Astrophysical Phenomena +1612.08189 Differential Geometry +1612.08190 Differential Geometry +1612.08192 Computational Complexity +1612.08193 Dynamical Systems +1612.08195 Analysis of PDEs +1612.08196 Materials Science +1612.08197 Discrete Mathematics +1612.08198 +1612.08199 Programming Languages +1612.08200 Social and Information Networks +1612.08202 Robotics +1612.08203 Programming Languages +1612.08204 Complex Variables +1612.08205 Computation and Language +1612.08207 Social and Information Networks +1612.08208 +1612.08209 Phenomenology +1612.08210 Solar and Stellar Astrophysics +1612.08211 Representation Theory +1612.08212 Complex Variables +1612.08214 Optics +1612.08215 Dynamical Systems +1612.08216 Quantum Gases +1612.08218 Materials Science +1612.08219 Number Theory +1612.08221 Dynamical Systems +1612.08224 Computation +1612.08225 Analysis of PDEs +1612.08229 General Topology +1612.08230 Computer Vision and Pattern Recognition +1612.08231 Classical Analysis and ODEs +1612.08232 Information Theory +1612.08233 Mesoscale and Nanoscale Physics +1612.08234 Discrete Mathematics +1612.08236 Quantum Algebra +1612.08237 Analysis of PDEs +1612.08239 Hardware Architecture +1612.08240 Chemical Physics +1612.08242 Computer Vision and Pattern Recognition +1612.08243 Materials Science +1612.08244 Rings and Algebras +1612.08245 Robotics +1612.08247 Analysis of PDEs +1612.08248 Mesoscale and Nanoscale Physics +1612.08249 Phenomenology +1612.08253 Numerical Analysis +1612.08254 Emerging Technologies +1612.08255 Combinatorics +1612.08256 Networking and Internet Architecture +1612.08257 Commutative Algebra +1612.08258 Soft Condensed Matter +1612.08259 Combinatorics +1612.08260 Analysis of PDEs +1612.08261 Statistics Theory +1612.08262 Geometric Topology +1612.08263 Systems and Control +1612.08264 Classical Analysis and ODEs +1612.08265 +1612.08266 Materials Science +1612.08267 Geometric Topology +1612.08270 Cosmology and Nongalactic Astrophysics +1612.08271 Algebraic Geometry +1612.08272 Chemical Physics +1612.08273 Phenomenology +1612.08274 Computer Vision and Pattern Recognition +1612.08275 Solar and Stellar Astrophysics +1612.08276 Optics +1612.08277 Soft Condensed Matter +1612.08278 Optics +1612.08281 +1612.08282 Materials Science +1612.08283 Discrete Mathematics +1612.08284 Logic +1612.08287 Methodology +1612.08288 Methodology +1612.08289 Computational Physics +1612.08290 Algebraic Topology +1612.08292 Theory +1612.08294 Theory +1612.08295 Analysis of PDEs +1612.08298 Solar and Stellar Astrophysics +1612.08299 History and Overview +1612.08301 Combinatorics +1612.08302 Optimization and Control +1612.08304 Complex Variables +1612.08305 Biological Physics +1612.08306 Combinatorics +1612.08307 Number Theory +1612.08308 Mesoscale and Nanoscale Physics +1612.08309 Number Theory +1612.08310 Analysis of PDEs +1612.08311 Biomolecules +1612.08313 Algebraic Geometry +1612.08314 +1612.08315 +1612.08316 Phenomenology +1612.08317 Physics Education +1612.08320 Phenomenology +1612.08321 Machine Learning +1612.08322 Geometric Topology +1612.08323 Solar and Stellar Astrophysics +1612.08324 Information Theory +1612.08326 Information Theory +1612.08327 Phenomenology +1612.08328 Information Theory +1612.08329 Instrumentation and Detectors +1612.08333 Computation and Language +1612.08335 Fluid Dynamics +1612.08337 Numerical Analysis +1612.08338 Physics and Society +1612.08339 +1612.08341 Mesoscale and Nanoscale Physics +1612.08342 Representation Theory +1612.08343 Space Physics +1612.08344 Rings and Algebras +1612.08346 Optics +1612.08347 Combinatorics +1612.08348 Cosmology and Nongalactic Astrophysics +1612.08349 Solar and Stellar Astrophysics +1612.08350 Multimedia +1612.08351 Social and Information Networks +1612.08352 Networking and Internet Architecture +1612.08354 Computer Vision and Pattern Recognition +1612.08355 Analysis of PDEs +1612.08356 Fluid Dynamics +1612.08357 Rings and Algebras +1612.08358 Logic +1612.08359 Computer Vision and Pattern Recognition +1612.08361 +1612.08362 Differential Geometry +1612.08363 Methodology +1612.08364 Algebraic Geometry +1612.08365 Methodology +1612.08366 Functional Analysis +1612.08369 Numerical Analysis +1612.08370 Phenomenology +1612.08371 Probability +1612.08372 Differential Geometry +1612.08374 Geometric Topology +1612.08375 Computation and Language +1612.08376 Dynamical Systems +1612.08377 Chaotic Dynamics +1612.08378 Physics and Society +1612.08380 Earth and Planetary Astrophysics +1612.08383 Fluid Dynamics +1612.08384 Spectral Theory +1612.08386 Theory +1612.08387 Probability +1612.08388 Learning +1612.08389 Mesoscale and Nanoscale Physics +1612.08390 Phenomenology +1612.08391 Information Retrieval +1612.08392 Machine Learning +1612.08394 Dynamical Systems +1612.08395 Soft Condensed Matter +1612.08396 Probability +1612.08400 Analysis of PDEs +1612.08401 Mesoscale and Nanoscale Physics +1612.08403 Analysis of PDEs +1612.08404 Statistical Mechanics +1612.08405 K-Theory and Homology +1612.08408 Computer Vision and Pattern Recognition +1612.08409 Mesoscale and Nanoscale Physics +1612.08410 +1612.08412 Optimization and Control +1612.08413 Strongly Correlated Electrons +1612.08415 Phenomenology +1612.08417 Mesoscale and Nanoscale Physics +1612.08419 +1612.08420 Phenomenology +1612.08422 Combinatorics +1612.08423 Applications +1612.08424 Logic +1612.08426 Dynamical Systems +1612.08427 Metric Geometry +1612.08428 +1612.08429 Algebraic Topology +1612.08430 Applications +1612.08431 Mesoscale and Nanoscale Physics +1612.08432 Number Theory +1612.08434 Number Theory +1612.08436 Quantum Gases +1612.08437 Atomic Physics +1612.08438 Lattice +1612.08439 Dynamical Systems +1612.08441 High Energy Astrophysical Phenomena +1612.08442 Classical Analysis and ODEs +1612.08444 Biological Physics +1612.08445 High Energy Astrophysical Phenomena +1612.08447 Social and Information Networks +1612.08449 Biological Physics +1612.08450 Soft Condensed Matter +1612.08452 Disordered Systems and Neural Networks +1612.08454 Commutative Algebra +1612.08455 Mesoscale and Nanoscale Physics +1612.08456 Materials Science +1612.08458 Mesoscale and Nanoscale Physics +1612.08459 Statistical Mechanics +1612.08460 Analysis of PDEs +1612.08461 Optimization and Control +1612.08462 +1612.08463 Optimization and Control +1612.08464 Statistical Mechanics +1612.08465 Information Theory +1612.08467 +1612.08468 Methodology +1612.08469 Systems and Control +1612.08470 Classical Analysis and ODEs +1612.08472 Phenomenology +1612.08473 Geometric Topology +1612.08474 Combinatorics +1612.08476 Operator Algebras +1612.08477 Information Theory +1612.08479 Physics and Society +1612.08480 Materials Science +1612.08481 Instrumentation and Detectors +1612.08482 +1612.08483 Differential Geometry +1612.08484 Computer Vision and Pattern Recognition +1612.08485 Probability +1612.08486 General Finance +1612.08487 Group Theory +1612.08488 Risk Management +1612.08489 Geometric Topology +1612.08490 Methodology +1612.08492 Dynamical Systems +1612.08493 Accelerator Physics +1612.08494 Statistical Mechanics +1612.08495 +1612.08497 Algebraic Geometry +1612.08498 Learning +1612.08499 Computer Vision and Pattern Recognition +1612.08502 Quantum Gases +1612.08503 Materials Science +1612.08504 Physics and Society +1612.08506 Probability +1612.08510 Computer Vision and Pattern Recognition +1612.08514 Quantum Gases +1612.08516 Probability +1612.08520 High Energy Astrophysical Phenomena +1612.08521 Probability +1612.08522 Phenomenology +1612.08526 Statistics Theory +1612.08529 Operator Algebras +1612.08530 Materials Science +1612.08531 Combinatorics +1612.08532 +1612.08533 Analysis of PDEs +1612.08534 Computer Vision and Pattern Recognition +1612.08535 Representation Theory +1612.08536 Materials Science +1612.08537 Computational Complexity +1612.08539 Information Theory +1612.08541 Computational Physics +1612.08542 Probability +1612.08543 Machine Learning +1612.08544 Learning +1612.08545 Information Theory +1612.08548 +1612.08551 +1612.08552 Multiagent Systems +1612.08553 Superconductivity +1612.08554 +1612.08555 Artificial Intelligence +1612.08558 Operator Algebras +1612.08559 Combinatorics +1612.08560 Instrumentation and Detectors +1612.08561 Probability +1612.08562 High Energy Astrophysical Phenomena +1612.08567 +1612.08568 Statistical Mechanics +1612.08569 Theory +1612.08572 Probability +1612.08575 Probability +1612.08576 Phenomenology +1612.08577 +1612.08578 +1612.08579 +1612.08580 Probability +1612.08581 Probability +1612.08583 Economics +1612.08584 Optics +1612.08585 Functional Analysis +1612.08586 Statistics Theory +1612.08587 Analysis of PDEs +1612.08588 Optimization and Control +1612.08589 High Energy Astrophysical Phenomena +1612.08590 Soft Condensed Matter +1612.08591 Classical Analysis and ODEs +1612.08592 Number Theory +1612.08593 Cryptography and Security +1612.08595 Cosmology and Nongalactic Astrophysics +1612.08596 Classical Analysis and ODEs +1612.08597 Classical Analysis and ODEs +1612.08598 Lattice +1612.08599 General Physics +1612.08600 Exactly Solvable and Integrable Systems +1612.08601 Biological Physics +1612.08603 High Energy Astrophysical Phenomena +1612.08604 Instrumentation and Methods for Astrophysics +1612.08605 Instrumentation and Methods for Astrophysics +1612.08606 Emerging Technologies +1612.08608 Distributed, Parallel, and Cluster Computing +1612.08609 +1612.08611 Probability +1612.08613 Soft Condensed Matter +1612.08616 Statistical Mechanics +1612.08617 Applications +1612.08618 Probability +1612.08620 Numerical Analysis +1612.08621 Phenomenology +1612.08624 Theory +1612.08625 K-Theory and Homology +1612.08627 Number Theory +1612.08628 Number Theory +1612.08629 Social and Information Networks +1612.08631 Physics and Society +1612.08632 Soft Condensed Matter +1612.08633 Artificial Intelligence +1612.08636 History and Overview +1612.08637 Classical Analysis and ODEs +1612.08639 Probability +1612.08640 +1612.08642 Computer Vision and Pattern Recognition +1612.08643 Dynamical Systems +1612.08644 Social and Information Networks +1612.08645 Computers and Society +1612.08647 Optics +1612.08648 Dynamical Systems +1612.08650 Machine Learning +1612.08651 Algebraic Geometry +1612.08652 Representation Theory +1612.08653 +1612.08654 Data Structures and Algorithms +1612.08655 Analysis of PDEs +1612.08656 Optimization and Control +1612.08657 Artificial Intelligence +1612.08658 +1612.08659 Number Theory +1612.08660 Analysis of PDEs +1612.08662 Differential Geometry +1612.08664 Experiment +1612.08666 Information Theory +1612.08668 Materials Science +1612.08669 Learning +1612.08670 Combinatorics +1612.08671 Soft Condensed Matter +1612.08672 Theory +1612.08673 Quantum Algebra +1612.08674 Optics +1612.08675 Theory +1612.08676 Metric Geometry +1612.08678 Cryptography and Security +1612.08679 Materials Science +1612.08680 Analysis of PDEs +1612.08681 Phenomenology +1612.08682 Theory +1612.08683 Superconductivity +1612.08684 Geometric Topology +1612.08685 Classical Physics +1612.08686 Numerical Analysis +1612.08687 Mesoscale and Nanoscale Physics +1612.08688 Phenomenology +1612.08689 General Finance +1612.08690 Geometric Topology +1612.08691 Differential Geometry +1612.08692 Differential Geometry +1612.08693 Probability +1612.08694 +1612.08696 +1612.08698 Combinatorics +1612.08699 Methodology +1612.08701 Distributed, Parallel, and Cluster Computing +1612.08702 Distributed, Parallel, and Cluster Computing +1612.08703 Statistical Mechanics +1612.08705 Statistical Finance +1612.08707 Numerical Analysis +1612.08710 +1612.08713 Soft Condensed Matter +1612.08715 +1612.08716 Probability +1612.08717 Analysis of PDEs +1612.08718 Mesoscale and Nanoscale Physics +1612.08719 Soft Condensed Matter +1612.08720 Materials Science +1612.08722 Number Theory +1612.08723 Algebraic Geometry +1612.08724 Astrophysics of Galaxies +1612.08726 +1612.08727 Multimedia +1612.08732 Exactly Solvable and Integrable Systems +1612.08733 Popular Physics +1612.08735 Complex Variables +1612.08736 Functional Analysis +1612.08738 Theory +1612.08739 Theory +1612.08740 Accelerator Physics +1612.08741 Probability +astro-ph/0412026 +astro-ph/0602452 +astro-ph/9910135 +gr-qc/0007011 +gr-qc/0007076 +gr-qc/9902022 +gr-qc/9902048 +gr-qc/9912093 +hep-ex/0002025 Experiment +hep-lat/0001005 Lattice +hep-lat/0001022 Lattice +hep-lat/9911015 Lattice +hep-ph/0002093 Phenomenology +hep-ph/0005247 Phenomenology +hep-ph/9803278 Phenomenology +hep-ph/9805305 Phenomenology +hep-ph/9811398 Phenomenology +hep-ph/9905216 Phenomenology +hep-ph/9907202 Phenomenology +hep-ph/9909451 Phenomenology +hep-ph/9910327 Phenomenology +hep-ph/9911456 Phenomenology +hep-th/0001086 Theory +hep-th/0001212 Theory +hep-th/0002065 Theory +hep-th/0002247 Theory +hep-th/0003095 Theory +hep-th/0003112 Theory +hep-th/0003119 Theory +hep-th/0004046 Theory +hep-th/0004121 Theory +hep-th/0006022 Theory +hep-th/0007018 Theory +hep-th/9701180 Theory +hep-th/9804117 Theory +hep-th/9808121 Theory +hep-th/9810073 Theory +hep-th/9811105 Theory +hep-th/9812098 Theory +hep-th/9901120 Theory +hep-th/9902198 Theory +hep-th/9904202 Theory +hep-th/9904211 Theory +hep-th/9907110 Theory +hep-th/9908100 Theory +hep-th/9908151 Theory +hep-th/9910017 Theory +hep-th/9910180 Theory +hep-th/9910237 Theory +hep-th/9911108 Theory +hep-th/9912052 Theory +hep-th/9912084 Theory +hep-th/9912154 Theory +math-ph/0610011 +math/0112122 Quantum Algebra +nlin/0001038 Exactly Solvable and Integrable Systems +nlin/0003068 Exactly Solvable and Integrable Systems +physics/0501114 Plasma Physics +physics/9712046 +quant-ph/9908014 +solv-int/9910012 Exactly Solvable and Integrable Systems +0907.2056 Strongly Correlated Electrons +0907.3721 Mesoscale and Nanoscale Physics +1004.1577 Probability +1004.3986 Probability +1005.0279 General Finance +1011.6241 Theory +1012.4415 Mesoscale and Nanoscale Physics +1102.0444 Probability +1102.5230 Exactly Solvable and Integrable Systems +1104.3541 +1110.4158 Analysis of PDEs +1111.5437 Soft Condensed Matter +1112.2872 Theory +1205.1211 Plasma Physics +1205.7036 +1208.1476 Logic in Computer Science +1209.1272 +1209.1366 Differential Geometry +1211.6670 Theory +1212.2408 +1212.5315 Numerical Analysis +1212.5405 Methodology +1301.0465 Optimization and Control +1301.6588 +1306.5525 Number Theory +1306.6796 Number Theory +1307.4570 Probability +1307.4905 Soft Condensed Matter +1308.1757 Phenomenology +1308.2697 Materials Science +1308.5649 +1309.2507 Probability +1312.2255 Commutative Algebra +1401.1169 Probability +1401.1433 Operator Algebras +1401.6975 Information Theory +1402.3742 +1402.4768 Mesoscale and Nanoscale Physics +1403.1732 Information Theory +1403.2418 Differential Geometry +1403.6215 Geometric Topology +1405.3004 Geometric Topology +1406.3973 Representation Theory +1406.4871 Cosmology and Nongalactic Astrophysics +1406.7304 Theory +1407.4376 Statistics Theory +1407.4813 Cosmology and Nongalactic Astrophysics +1408.1880 Algebraic Geometry +1408.4031 Probability +1409.0480 +1409.6937 Quantum Algebra +1409.7366 Probability +1409.7468 Probability +1410.3035 Geometric Topology +1410.6645 Analysis of PDEs +1410.7357 Statistics Theory +1410.7664 Quantum Algebra +1410.8362 Logic +1411.1420 Learning +1411.2987 Logic +1411.5035 Group Theory +1411.5495 Fluid Dynamics +1412.4188 Discrete Mathematics +1412.6234 Statistical Mechanics +1412.6281 Instrumentation and Detectors +1412.8581 Optimization and Control +1501.01283 +1501.03948 Metric Geometry +1501.04597 Rings and Algebras +1502.00886 Analysis of PDEs +1502.01253 Multiagent Systems +1502.04663 Strongly Correlated Electrons +1503.00305 Probability +1503.01397 Machine Learning +1503.02798 Number Theory +1503.08378 Number Theory +1504.04789 Probability +1504.05114 Representation Theory +1504.06389 Statistical Mechanics +1504.07332 Analysis of PDEs +1504.08355 Cosmology and Nongalactic Astrophysics +1505.04732 Computation +1505.05423 Discrete Mathematics +1505.06339 Number Theory +1505.07680 +1505.07968 Materials Science +1506.00459 Superconductivity +1506.03490 Mesoscale and Nanoscale Physics +1506.04293 Theory +1506.05405 +1506.05576 Dynamical Systems +1506.05657 Analysis of PDEs +1506.05792 Theory +1506.08064 Soft Condensed Matter +1506.08723 Number Theory +1507.00684 Number Theory +1507.02124 +1507.03518 Robotics +1507.03906 Cosmology and Nongalactic Astrophysics +1507.05829 Classical Analysis and ODEs +1507.07843 Cosmology and Nongalactic Astrophysics +1507.08084 Numerical Analysis +1507.08878 Theory +1508.00824 Analysis of PDEs +1508.00920 +1508.01238 Rings and Algebras +1508.02008 +1508.02981 +1508.06018 Systems and Control +1508.07026 +1509.00791 Spectral Theory +1509.01118 Optimization and Control +1509.04785 Dynamical Systems +1509.07702 Discrete Mathematics +1509.08771 +1509.09038 Instrumentation and Detectors +1510.00908 Exactly Solvable and Integrable Systems +1510.02113 Probability +1510.05570 Phenomenology +1510.06208 Analysis of PDEs +1510.07386 Optimization and Control +1510.08447 +1511.00121 +1511.00434 High Energy Astrophysical Phenomena +1511.00723 High Energy Astrophysical Phenomena +1511.00752 Analysis of PDEs +1511.01159 High Energy Astrophysical Phenomena +1511.01245 Computer Vision and Pattern Recognition +1511.01668 Discrete Mathematics +1511.04376 Networking and Internet Architecture +1511.04585 Information Theory +1511.04646 Computation and Language +1511.05578 Information Theory +1511.05792 Dynamical Systems +1511.06944 Analysis of PDEs +1511.07459 +1511.08905 Optimization and Control +1511.09050 Social and Information Networks +1512.00959 Fluid Dynamics +1512.00985 Materials Science +1512.01025 Theory +1512.02180 Analysis of PDEs +1512.02400 Classical Analysis and ODEs +1512.04031 Differential Geometry +1512.04874 +1512.05261 Combinatorics +1512.05453 +1512.06166 Phenomenology +1512.06778 Algebraic Geometry +1512.07715 Physics and Society +1512.08029 +1512.08207 Spectral Theory +1512.08500 Phenomenology +1512.09064 Algebraic Topology +1512.09298 Probability +1601.00948 Functional Analysis +1601.01149 Mesoscale and Nanoscale Physics +1601.01432 Computer Vision and Pattern Recognition +1601.03622 Number Theory +1601.04161 Numerical Analysis +1601.04744 Theory +1601.04784 Theory +1601.05392 Fluid Dynamics +1601.05461 Pattern Formation and Solitons +1601.06014 Information Theory +1601.06103 Statistics Theory +1601.06173 +1601.06675 Materials Science +1601.08055 Mesoscale and Nanoscale Physics +1601.08146 Differential Geometry +1602.00079 Systems and Control +1602.00540 Analysis of PDEs +1602.00770 High Energy Astrophysical Phenomena +1602.00883 Information Theory +1602.01281 Optics +1602.01340 +1602.02232 Analysis of PDEs +1602.02292 K-Theory and Homology +1602.04255 Group Theory +1602.04490 Social and Information Networks +1602.04892 +1602.05410 Chaotic Dynamics +1602.05676 Number Theory +1602.05861 Classical Analysis and ODEs +1602.06218 Computation +1602.07780 Populations and Evolution +1602.07973 Category Theory +1602.08043 Probability +1602.08373 Cosmology and Nongalactic Astrophysics +1603.00879 Phenomenology +1603.01461 +1603.01937 Numerical Analysis +1603.01955 Computational Physics +1603.02453 Subcellular Processes +1603.04559 Combinatorics +1603.06700 +1603.07442 Computer Vision and Pattern Recognition +1603.08136 Geometric Topology +1603.08443 Chemical Physics +1603.09514 Quantum Gases +1603.09724 Numerical Analysis +1604.00067 +1604.00192 Sound +1604.00937 +1604.01312 Statistical Mechanics +1604.01353 Theory +1604.01736 Optics +1604.01847 Probability +1604.02365 Mesoscale and Nanoscale Physics +1604.02606 Computer Science and Game Theory +1604.03742 Statistics Theory +1604.04025 Optics +1604.04433 +1604.04731 Phenomenology +1604.04807 +1604.04980 Methodology +1604.05756 Operator Algebras +1604.07491 Optimization and Control +1604.07588 +1604.07663 +1604.08699 Statistical Mechanics +1604.08860 Data Structures and Algorithms +1605.01512 Phenomenology +1605.01528 Statistical Mechanics +1605.02421 Probability +1605.03404 +1605.03637 +1605.03725 Fluid Dynamics +1605.04337 Learning +1605.04846 Probability +1605.05511 Classical Analysis and ODEs +1605.06137 Combinatorics +1605.06224 Solar and Stellar Astrophysics +1605.07454 Fluid Dynamics +1605.07672 Optics +1605.08518 Information Theory +1605.08569 +1605.09301 Strongly Correlated Electrons +1606.00132 Dynamical Systems +1606.00163 Atomic Physics +1606.00190 History and Philosophy of Physics +1606.00191 Networking and Internet Architecture +1606.00668 Information Theory +1606.00694 Data Analysis, Statistics and Probability +1606.01497 Representation Theory +1606.01510 Numerical Analysis +1606.01961 Group Theory +1606.02191 Biological Physics +1606.02220 Computational Geometry +1606.02797 Accelerator Physics +1606.03019 Differential Geometry +1606.03111 +1606.03145 Lattice +1606.03242 Information Theory +1606.03388 Mathematical Finance +1606.03982 Formal Languages and Automata Theory +1606.04004 Chemical Physics +1606.04752 Operator Algebras +1606.05005 Numerical Analysis +1606.05166 Geometric Topology +1606.05252 Algebraic Geometry +1606.06057 +1606.06207 Statistical Mechanics +1606.06231 Analysis of PDEs +1606.06371 Probability +1606.06470 Exactly Solvable and Integrable Systems +1606.06724 Computer Vision and Pattern Recognition +1606.06921 Information Theory +1606.07063 Phenomenology +1606.07334 Number Theory +1606.07794 +1606.09013 Phenomenology +1607.01051 Plasma Physics +1607.01599 Combinatorics +1607.02667 +1607.02999 Mesoscale and Nanoscale Physics +1607.03428 Learning +1607.04787 Data Structures and Algorithms +1607.05040 Phenomenology +1607.05223 Cosmology and Nongalactic Astrophysics +1607.05470 Atomic Physics +1607.05551 Theory +1607.05695 Computer Vision and Pattern Recognition +1607.06415 Materials Science +1607.06494 Discrete Mathematics +1607.06584 Mesoscale and Nanoscale Physics +1607.06629 Theory +1607.07419 Mesoscale and Nanoscale Physics +1607.07659 Theory +1607.07840 +1607.08047 Geometric Topology +1607.08544 Strongly Correlated Electrons +1608.00349 Theory +1608.02007 Solar and Stellar Astrophysics +1608.02532 +1608.03757 Neural and Evolutionary Computing +1608.03945 +1608.04363 Sound +1608.04404 Chemical Physics +1608.06180 Strongly Correlated Electrons +1608.06196 Social and Information Networks +1608.06328 Physics and Society +1608.06364 Theory +1608.06632 Materials Science +1608.07114 Materials Science +1608.07273 Plasma Physics +1608.08549 Fluid Dynamics +1608.08824 Cosmology and Nongalactic Astrophysics +1608.08909 Computational Geometry +1609.00157 Biomolecules +1609.00233 Phenomenology +1609.01081 Theory +1609.01161 Strongly Correlated Electrons +1609.01541 Computational Complexity +1609.01617 Fluid Dynamics +1609.01763 Geometric Topology +1609.01943 Theory +1609.02095 Materials Science +1609.02884 Chemical Physics +1609.02993 Artificial Intelligence +1609.03430 +1609.04017 High Energy Astrophysical Phenomena +1609.04120 Machine Learning +1609.04517 Complex Variables +1609.04683 Information Theory +1609.05549 Differential Geometry +1609.05981 Representation Theory +1609.06629 Biological Physics +1609.06930 Theory +1609.06931 +1609.07173 Space Physics +1609.07210 Theory +1609.07285 Superconductivity +1609.07504 Mesoscale and Nanoscale Physics +1609.07731 Computation +1609.07815 Quantum Gases +1609.08764 Computer Vision and Pattern Recognition +1610.00007 Theory +1610.00893 Computer Vision and Pattern Recognition +1610.01206 Learning +1610.01242 Accelerator Physics +1610.01354 Cryptography and Security +1610.01362 Theory +1610.01472 Lattice +1610.01914 Combinatorics +1610.02720 +1610.02795 +1610.02844 Optimization and Control +1610.03242 Exactly Solvable and Integrable Systems +1610.04253 Number Theory +1610.05103 Numerical Analysis +1610.05143 Mesoscale and Nanoscale Physics +1610.06018 Strongly Correlated Electrons +1610.06122 Statistical Mechanics +1610.06209 Learning +1610.06381 +1610.06385 Hardware Architecture +1610.06387 +1610.06554 Theory +1610.06702 Optimization and Control +1610.07076 Analysis of PDEs +1610.08619 Computer Vision and Pattern Recognition +1610.08684 Quantum Algebra +1610.09679 Data Structures and Algorithms +1610.09868 Combinatorics +1611.00113 Methodology +1611.00117 Astrophysics of Galaxies +1611.00149 +1611.01491 Learning +1611.01722 Machine Learning +1611.02245 Phenomenology +1611.02369 Phenomenology +1611.02497 +1611.02759 +1611.02864 Data Structures and Algorithms +1611.02960 Information Theory +1611.03022 +1611.03220 Numerical Analysis +1611.03435 Optimization and Control +1611.03598 Complex Variables +1611.04054 Numerical Analysis +1611.04072 Dynamical Systems +1611.04521 Strongly Correlated Electrons +1611.04583 Physics and Society +1611.04742 Operator Algebras +1611.04854 General Physics +1611.04889 Combinatorics +1611.05088 Computer Vision and Pattern Recognition +1611.05233 Optics +1611.05276 Theory +1611.05459 Quantum Gases +1611.05545 Probability +1611.05853 Cosmology and Nongalactic Astrophysics +1611.05952 +1611.06035 Spectral Theory +1611.06182 +1611.06210 Dynamical Systems +1611.06330 Numerical Analysis +1611.06336 Theory +1611.06345 Computer Vision and Pattern Recognition +1611.06541 Representation Theory +1611.06615 Data Structures and Algorithms +1611.06635 Number Theory +1611.06651 Quantitative Methods +1611.06679 Algebraic Geometry +1611.06689 Computer Vision and Pattern Recognition +1611.06841 Optics +1611.06883 Strongly Correlated Electrons +1611.06890 Instrumentation and Detectors +1611.06943 Digital Libraries +1611.07068 Materials Science +1611.07297 Computational Engineering, Finance, and Science +1611.07449 Networking and Internet Architecture +1611.07463 Geometric Topology +1611.07513 Combinatorics +1611.07708 Optimization and Control +1611.07792 Combinatorics +1611.07812 Software Engineering +1611.07864 Experiment +1611.07883 Solar and Stellar Astrophysics +1611.08000 Optimization and Control +1611.08051 Theory +1611.08134 Computer Vision and Pattern Recognition +1611.08161 Analysis of PDEs +1611.08264 Group Theory +1611.08280 Applications +1611.08291 +1611.08363 Materials Science +1611.08384 High Energy Astrophysical Phenomena +1611.08419 Discrete Mathematics +1611.08431 Discrete Mathematics +1611.08495 +1611.08512 Computer Vision and Pattern Recognition +1611.08531 Disordered Systems and Neural Networks +1611.08535 +1611.08590 Astrophysics of Galaxies +1611.08591 Phenomenology +1611.08592 Digital Libraries +1611.08599 Theory +1611.08601 Theory +1611.08602 Theory +1611.08603 Strongly Correlated Electrons +1611.08605 Chemical Physics +1611.08614 Solar and Stellar Astrophysics +1611.08619 Cosmology and Nongalactic Astrophysics +1611.08620 Materials Science +1611.08622 Numerical Analysis +1611.08623 Mesoscale and Nanoscale Physics +1611.08624 Computer Vision and Pattern Recognition +1611.08625 Computer Vision and Pattern Recognition +1611.08626 Dynamical Systems +1611.08627 Mesoscale and Nanoscale Physics +1611.08628 Lattice +1611.08629 Computer Vision and Pattern Recognition +1611.08630 Astrophysics of Galaxies +1611.08631 Methodology +1611.08632 Methodology +1611.08634 Methodology +1611.08635 Astrophysics of Galaxies +1611.08636 Methodology +1611.08637 Differential Geometry +1611.08639 Methodology +1611.08640 Methodology +1611.08641 Optimization and Control +1611.08642 Probability +1611.08643 Differential Geometry +1611.08644 Algebraic Geometry +1611.08646 Number Theory +1611.08648 Cryptography and Security +1611.08649 Methodology +1611.08651 Programming Languages +1611.08652 Fluid Dynamics +1611.08654 Probability +1611.08655 Geophysics +1611.08656 Computation and Language +1611.08658 Plasma Physics +1611.08662 Differential Geometry +1611.08663 Computer Vision and Pattern Recognition +1611.08666 Learning +1611.08667 Fluid Dynamics +1611.08671 Quantum Gases +1611.08672 Rings and Algebras +1611.08675 Artificial Intelligence +1611.08676 Functional Analysis +1611.08677 Logic in Computer Science +1611.08678 Dynamical Systems +1611.08681 Networking and Internet Architecture +1611.08682 Metric Geometry +1611.08683 Functional Analysis +1611.08685 Lattice +1611.08686 Cryptography and Security +1611.08688 Phenomenology +1611.08690 Information Theory +1611.08691 Computer Science and Game Theory +1611.08693 Number Theory +1611.08694 Cosmology and Nongalactic Astrophysics +1611.08697 Pattern Formation and Solitons +1611.08700 +1611.08703 Networking and Internet Architecture +1611.08705 +1611.08706 Numerical Analysis +1611.08707 Solar and Stellar Astrophysics +1611.08709 +1611.08710 Solar and Stellar Astrophysics +1611.08711 Lattice +1611.08713 Materials Science +1611.08714 Information Theory +1611.08717 Classical Analysis and ODEs +1611.08719 Applications +1611.08721 Statistics Theory +1611.08722 Algebraic Geometry +1611.08723 Functional Analysis +1611.08724 Functional Analysis +1611.08725 Networking and Internet Architecture +1611.08726 Analysis of PDEs +1611.08727 Analysis of PDEs +1611.08728 Networking and Internet Architecture +1611.08729 Lattice +1611.08730 Algebraic Geometry +1611.08731 Earth and Planetary Astrophysics +1611.08736 Numerical Analysis +1611.08738 Logic in Computer Science +1611.08740 Combinatorics +1611.08742 Theory +1611.08746 High Energy Astrophysical Phenomena +1611.08747 Methodology +1611.08748 Analysis of PDEs +1611.08751 Neurons and Cognition +1611.08754 Computer Vision and Pattern Recognition +1611.08755 Differential Geometry +1611.08759 Algebraic Topology +1611.08760 Populations and Evolution +1611.08761 Probability +1611.08762 Materials Science +1611.08764 Statistical Mechanics +1611.08765 Computation and Language +1611.08766 Soft Condensed Matter +1611.08767 Robotics +1611.08768 Algebraic Geometry +1611.08769 Cryptography and Security +1611.08771 Algebraic Topology +1611.08772 Numerical Analysis +1611.08773 Artificial Intelligence +1611.08774 Accelerator Physics +1611.08775 Optimization and Control +1611.08777 Combinatorics +1611.08778 Numerical Analysis +1611.08779 Information Theory +1611.08780 Computer Vision and Pattern Recognition +1611.08783 +1611.08784 Mesoscale and Nanoscale Physics +1611.08785 Phenomenology +1611.08788 Computer Vision and Pattern Recognition +1611.08789 Computer Vision and Pattern Recognition +1611.08790 K-Theory and Homology +1611.08791 Applications +1611.08792 Optics +1611.08795 Phenomenology +1611.08796 Computer Vision and Pattern Recognition +1611.08797 Instrumentation and Detectors +1611.08798 Accelerator Physics +1611.08799 Differential Geometry +1611.08800 Logic in Computer Science +1611.08801 +1611.08802 +1611.08803 Data Structures and Algorithms +1611.08804 +1611.08805 Information Theory +1611.08807 Computation and Language +1611.08810 Number Theory +1611.08812 Computer Vision and Pattern Recognition +1611.08813 Computation and Language +1611.08815 Computer Vision and Pattern Recognition +1611.08818 Algebraic Geometry +1611.08819 Algebraic Geometry +1611.08821 Algebraic Geometry +1611.08822 Information Theory +1611.08823 Soft Condensed Matter +1611.08824 +1611.08825 Optimization and Control +1611.08826 History and Overview +1611.08827 Complex Variables +1611.08829 Cellular Automata and Lattice Gases +1611.08830 Software Engineering +1611.08831 +1611.08832 Optimization and Control +1611.08833 Software Engineering +1611.08834 Software Engineering +1611.08839 Social and Information Networks +1611.08840 Commutative Algebra +1611.08842 Computational Complexity +1611.08843 Phenomenology +1611.08845 Soft Condensed Matter +1611.08846 Rings and Algebras +1611.08847 Software Engineering +1611.08849 Digital Libraries +1611.08850 Combinatorics +1611.08851 Mesoscale and Nanoscale Physics +1611.08852 Group Theory +1611.08853 Information Theory +1611.08854 Complex Variables +1611.08857 Classical Analysis and ODEs +1611.08860 Computer Vision and Pattern Recognition +1611.08861 Metric Geometry +1611.08863 Analysis of PDEs +1611.08864 Distributed, Parallel, and Cluster Computing +1611.08865 Representation Theory +1611.08866 +1611.08868 Software Engineering +1611.08869 Analysis of PDEs +1611.08870 General Topology +1611.08871 Medical Physics +1611.08872 Quantum Algebra +1611.08873 Mesoscale and Nanoscale Physics +1611.08874 Probability +1611.08875 Materials Science +1611.08878 +1611.08881 Commutative Algebra +1611.08882 Cryptography and Security +1611.08883 Analysis of PDEs +1611.08884 Astrophysics of Galaxies +1611.08885 Probability +1611.08886 Information Theory +1611.08887 Materials Science +1611.08888 Programming Languages +1611.08890 Mesoscale and Nanoscale Physics +1611.08892 Computer Science and Game Theory +1611.08893 Atomic Physics +1611.08895 Numerical Analysis +1611.08896 Computer Vision and Pattern Recognition +1611.08898 Data Structures and Algorithms +1611.08899 Analysis of PDEs +1611.08900 Algebraic Geometry +1611.08901 Chemical Physics +1611.08902 +1611.08904 Combinatorics +1611.08905 Sound +1611.08907 High Energy Astrophysical Phenomena +1611.08908 Artificial Intelligence +1611.08909 +1611.08911 Materials Science +1611.08912 Atmospheric and Oceanic Physics +1611.08913 Neurons and Cognition +1611.08917 Quantum Gases +1611.08918 Physics and Society +1611.08920 Combinatorics +1611.08921 Metric Geometry +1611.08923 Exactly Solvable and Integrable Systems +1611.08925 High Energy Astrophysical Phenomena +1611.08927 Computer Science and Game Theory +1611.08932 Probability +1611.08935 Materials Science +1611.08937 Mesoscale and Nanoscale Physics +1611.08938 Distributed, Parallel, and Cluster Computing +1611.08939 Instrumentation and Detectors +1611.08940 Materials Science +1611.08944 Artificial Intelligence +1611.08946 +1611.08947 Graphics +1611.08948 Other Quantitative Biology +1611.08951 Multiagent Systems +1611.08952 Analysis of PDEs +1611.08954 Data Structures and Algorithms +1611.08957 Strongly Correlated Electrons +1611.08958 Geophysics +1611.08959 Information Theory +1611.08960 Quantum Gases +1611.08963 Soft Condensed Matter +1611.08966 Strongly Correlated Electrons +1611.08967 Numerical Analysis +1611.08969 Number Theory +1611.08971 +1611.08973 Systems and Control +1611.08974 Computer Vision and Pattern Recognition +1611.08976 Computer Vision and Pattern Recognition +1611.08977 Number Theory +1611.08978 Theory +1611.08979 Probability +1611.08980 +1611.08981 Computers and Society +1611.08982 Optics +1611.08984 Strongly Correlated Electrons +1611.08985 Functional Analysis +1611.08986 Computer Vision and Pattern Recognition +1611.08988 Logic +1611.08989 +1611.08992 Logic in Computer Science +1611.08993 Mesoscale and Nanoscale Physics +1611.08994 Dynamical Systems +1611.08995 Software Engineering +1611.08999 Mesoscale and Nanoscale Physics +1611.09001 Differential Geometry +1611.09002 Combinatorics +1611.09003 Discrete Mathematics +1611.09004 High Energy Astrophysical Phenomena +1611.09005 Statistics Theory +1611.09006 +1611.09007 Computer Vision and Pattern Recognition +1611.09009 Cryptography and Security +1611.09010 Computer Vision and Pattern Recognition +1611.09011 Networking and Internet Architecture +1611.09012 Data Structures and Algorithms +1611.09013 Classical Analysis and ODEs +1611.09016 +1611.09018 Combinatorics +1611.09021 Numerical Analysis +1611.09022 Probability +1611.09023 Astrophysics of Galaxies +1611.09024 Neurons and Cognition +1611.09025 +1611.09027 +1611.09028 Information Retrieval +1611.09030 Social and Information Networks +1611.09031 Soft Condensed Matter +1611.09032 +1611.09033 Combinatorics +1611.09036 +1611.09037 +1611.09038 Optics +1611.09039 +1611.09040 Earth and Planetary Astrophysics +1611.09041 Numerical Analysis +1611.09043 Phenomenology +1611.09044 Strongly Correlated Electrons +1611.09045 +1611.09046 Experiment +1611.09048 Distributed, Parallel, and Cluster Computing +1611.09050 Chaotic Dynamics +1611.09051 Computer Vision and Pattern Recognition +1611.09052 Populations and Evolution +1611.09053 Computer Vision and Pattern Recognition +1611.09054 Number Theory +1611.09055 +1611.09057 Experiment +1611.09058 Information Theory +1611.09059 Quantum Algebra +1611.09063 Methodology +1611.09064 Functional Analysis +1611.09065 Computers and Society +1611.09066 Quantum Gases +1611.09068 Space Physics +1611.09069 +1611.09070 +1611.09071 Fluid Dynamics +1611.09076 Fluid Dynamics +1611.09077 Group Theory +1611.09078 Computer Vision and Pattern Recognition +1611.09079 Functional Analysis +1611.09080 Probability +1611.09081 Exactly Solvable and Integrable Systems +1611.09082 Phenomenology +1611.09083 Information Retrieval +1611.09084 Data Structures and Algorithms +1611.09088 +1611.09089 Neurons and Cognition +1611.09092 Number Theory +1611.09095 Materials Science +1611.09098 Statistical Mechanics +1611.09099 Computer Vision and Pattern Recognition +1611.09100 Computation and Language +1611.09102 Theory +1611.09104 Information Theory +1611.09106 Mesoscale and Nanoscale Physics +1611.09107 Numerical Analysis +1611.09108 Experiment +1611.09112 Complex Variables +1611.09113 Theory +1611.09114 Geometric Topology +1611.09115 Chemical Physics +1611.09116 Software Engineering +1611.09117 Complex Variables +1611.09120 Lattice +1611.09121 Optimization and Control +1611.09122 Applications +1611.09123 Soft Condensed Matter +1611.09125 Soft Condensed Matter +1611.09126 Classical Analysis and ODEs +1611.09129 Theory +1611.09131 Data Structures and Algorithms +1611.09132 Software Engineering +1611.09134 Differential Geometry +1611.09135 Functional Analysis +1611.09136 Algebraic Geometry +1611.09137 Plasma Physics +1611.09138 Mesoscale and Nanoscale Physics +1611.09139 Machine Learning +1611.09141 Experiment +1611.09142 Chemical Physics +1611.09143 Information Theory +1611.09147 Phenomenology +1611.09148 Category Theory +1611.09150 Group Theory +1611.09155 Analysis of PDEs +1611.09156 Classical Analysis and ODEs +1611.09157 Classical Analysis and ODEs +1611.09159 Computer Vision and Pattern Recognition +1611.09162 Computer Vision and Pattern Recognition +1611.09163 Lattice +1611.09164 +1611.09165 +1611.09168 Optimization and Control +1611.09169 Software Engineering +1611.09170 Databases +1611.09171 Statistical Mechanics +1611.09172 Databases +1611.09173 +1611.09174 Classical Analysis and ODEs +1611.09178 Algebraic Geometry +1611.09179 Probability +1611.09180 Computer Vision and Pattern Recognition +1611.09181 Combinatorics +1611.09182 Theory +1611.09184 Differential Geometry +1611.09185 +1611.09187 Software Engineering +1611.09189 Discrete Mathematics +1611.09190 Instrumentation and Methods for Astrophysics +1611.09191 Analysis of PDEs +1611.09193 Networking and Internet Architecture +1611.09195 Lattice +1611.09196 Dynamical Systems +1611.09197 Probability +1611.09198 Number Theory +1611.09200 Statistical Mechanics +1611.09201 Combinatorics +1611.09207 Computation and Language +1611.09210 General Physics +1611.09211 Quantum Algebra +1611.09212 Neurons and Cognition +1611.09214 Probability +1611.09216 Plasma Physics +1611.09220 +1611.09221 +1611.09222 Classical Analysis and ODEs +1611.09224 Computer Vision and Pattern Recognition +1611.09225 Methodology +1611.09227 +1611.09230 Software Engineering +1611.09232 Machine Learning +1611.09233 Cosmology and Nongalactic Astrophysics +1611.09235 Computation and Language +1611.09237 Phenomenology +1611.09238 Computation and Language +1611.09239 Molecular Networks +1611.09240 Robotics +1611.09244 Astrophysics of Galaxies +1611.09245 Neurons and Cognition +1611.09251 Dynamical Systems +1611.09252 Computation +1611.09255 Analysis of PDEs +1611.09259 Programming Languages +1611.09260 Optimization and Control +1611.09261 Cryptography and Security +1611.09263 Logic in Computer Science +1611.09264 High Energy Astrophysical Phenomena +1611.09265 Disordered Systems and Neural Networks +1611.09266 High Energy Astrophysical Phenomena +1611.09267 Analysis of PDEs +1611.09271 Analysis of PDEs +1611.09273 Metric Geometry +1611.09274 +1611.09276 Dynamical Systems +1611.09277 Analysis of PDEs +1611.09279 Combinatorics +1611.09280 Geometric Topology +1611.09281 Dynamical Systems +1611.09282 Atomic Physics +1611.09284 Materials Science +1611.09286 Chemical Physics +1611.09287 Representation Theory +1611.09289 Biomolecules +1611.09291 Combinatorics +1611.09292 Exactly Solvable and Integrable Systems +1611.09293 Numerical Analysis +1611.09294 Spectral Theory +1611.09299 +1611.09300 Probability +1611.09304 Optimization and Control +1611.09305 Superconductivity +1611.09306 +1611.09308 Phenomenology +1611.09309 Computer Vision and Pattern Recognition +1611.09315 Number Theory +1611.09316 Social and Information Networks +1611.09317 Data Structures and Algorithms +1611.09318 Logic in Computer Science +1611.09320 Phenomenology +1611.09325 Computer Vision and Pattern Recognition +1611.09327 K-Theory and Homology +1611.09329 Analysis of PDEs +1611.09332 Cryptography and Security +1611.09333 Learning +1611.09335 Networking and Internet Architecture +1611.09336 Phenomenology +1611.09337 Phenomenology +1611.09339 Solar and Stellar Astrophysics +1611.09341 Applications +1611.09342 Dynamical Systems +1611.09343 Geometric Topology +1611.09345 Learning +1611.09347 +1611.09348 Cosmology and Nongalactic Astrophysics +cond-mat/0203492 Strongly Correlated Electrons +cond-mat/9807353 Strongly Correlated Electrons +1601.01304 Optimization and Control +0709.3606 Molecular Networks +0808.1676 Strongly Correlated Electrons +0909.0799 Group Theory +0909.0804 Group Theory +1002.2260 Number Theory +1005.1444 Statistical Mechanics +1303.2441 Classical Analysis and ODEs +1303.2807 Algebraic Topology +1306.6390 Number Theory +1307.6931 Phenomenology +1308.4229 Group Theory +1310.1765 Number Theory +1311.2071 Algebraic Geometry +1311.2995 Differential Geometry +1311.6506 Materials Science +1312.3736 Theory +1312.6582 Algebraic Geometry +1312.6664 +1403.6278 Differential Geometry +1404.2379 Spectral Theory +1404.4745 Probability +1406.2562 Statistical Mechanics +1407.2783 Quantum Algebra +1407.8038 Methodology +1408.0298 Statistical Mechanics +1409.5819 Spectral Theory +1410.1282 Systems and Control +1410.2396 Differential Geometry +1410.2586 Optimization and Control +1410.3231 +1411.2434 Functional Analysis +1412.5352 Quantum Algebra +1412.5831 Information Theory +1501.03050 Analysis of PDEs +1501.03387 Probability +1501.05680 Computer Vision and Pattern Recognition +1501.07303 Spectral Theory +1502.00573 Logic +1502.02613 Computation +1502.06582 +1502.07242 Systems and Control +1503.00876 Algebraic Geometry +1503.01425 Computer Science and Game Theory +1503.02578 Learning +1503.03776 Number Theory +1503.04705 Number Theory +1504.02085 Statistical Mechanics +1504.04288 Quantum Gases +1505.04565 Digital Libraries +1505.06797 Materials Science +1505.07209 Functional Analysis +1506.02467 Quantum Gases +1506.05864 Experiment +1507.00404 Materials Science +1507.01669 Theory +1507.02975 +1508.05954 +1508.07687 Geometric Topology +1509.02065 Quantum Gases +1509.02747 History and Overview +1509.06240 Cosmology and Nongalactic Astrophysics +1509.06440 +1509.07747 Statistics Theory +1510.06084 Probability +1510.08064 +1511.00180 Symbolic Computation +1511.01528 Dynamical Systems +1511.04572 Numerical Analysis +1511.07769 Group Theory +1511.08240 Numerical Analysis +1511.08471 Complex Variables +1512.00143 Theory +1512.01093 Physics and Society +1512.03264 Superconductivity +1512.05287 Machine Learning +1512.05831 Lattice +1512.05834 Spectral Theory +1512.08767 +1512.09215 +1601.00604 Group Theory +1601.05098 Networking and Internet Architecture +1601.05834 Social and Information Networks +1601.06716 Optics +1601.07710 Probability +1602.00295 Classical Physics +1602.00697 +1602.00765 Operator Algebras +1602.01250 Functional Analysis +1602.01307 Number Theory +1602.02212 +1602.02653 Theory +1602.04312 Numerical Analysis +1602.05173 Logic +1602.08023 Computer Science and Game Theory +1602.08187 +1603.01744 Dynamical Systems +1603.03037 Astrophysics of Galaxies +1603.03578 Strongly Correlated Electrons +1603.03686 Physics Education +1603.04989 Learning +1603.05012 Optimization and Control +1603.08511 Computer Vision and Pattern Recognition +1603.09567 +1604.00086 Mesoscale and Nanoscale Physics +1604.01240 Theory +1604.01597 Methodology +1604.02218 Optimization and Control +1604.02855 Machine Learning +1604.03183 Information Theory +1604.04033 +1604.04112 Computer Vision and Pattern Recognition +1604.04239 Statistical Mechanics +1604.05665 Analysis of PDEs +1604.08620 Human-Computer Interaction +1604.08685 Computer Vision and Pattern Recognition +1605.05244 Instrumentation and Detectors +1605.05377 Operator Algebras +1605.06130 Statistical Mechanics +1605.06353 Computation and Language +1605.06562 +1605.07472 Solar and Stellar Astrophysics +1605.09247 Theory +1605.09288 Statistics Theory +1605.09715 Information Theory +1606.00442 Earth and Planetary Astrophysics +1606.00724 Probability +1606.01299 Computer Vision and Pattern Recognition +1606.01622 Atomic Physics +1606.01900 High Energy Astrophysical Phenomena +1606.01920 Theory +1606.02006 Computation and Language +1606.02606 Theory +1606.03260 +1606.03492 Phenomenology +1606.03905 Astrophysics of Galaxies +1606.05747 +1606.06165 Functional Analysis +1606.06370 Combinatorics +1606.07475 Plasma Physics +1606.07647 Materials Science +1606.07839 Computer Vision and Pattern Recognition +1606.07851 Mesoscale and Nanoscale Physics +1606.08412 Discrete Mathematics +1606.08579 Optics +1606.09638 Logic in Computer Science +1607.02061 Computation and Language +1607.03093 Phenomenology +1607.03233 Differential Geometry +1607.03268 Mesoscale and Nanoscale Physics +1607.03896 Strongly Correlated Electrons +1607.05663 Theory +1607.06794 Computer Vision and Pattern Recognition +1607.06797 Computer Vision and Pattern Recognition +1607.06870 Classical Analysis and ODEs +1607.07825 Cosmology and Nongalactic Astrophysics +1607.08740 Algebraic Geometry +1608.00368 Cosmology and Nongalactic Astrophysics +1608.00594 Strongly Correlated Electrons +1608.01528 +1608.03288 Phenomenology +1608.03661 K-Theory and Homology +1608.03685 Functional Analysis +1608.04221 Differential Geometry +1608.04336 Software Engineering +1608.04374 Machine Learning +1608.04906 Data Structures and Algorithms +1608.06278 Instrumentation and Detectors +1608.06348 Probability +1608.07738 Computation and Language +1608.08074 Probability +1609.01245 Geometric Topology +1609.01716 Instrumentation and Methods for Astrophysics +1609.01721 Astrophysics of Galaxies +1609.02340 Classical Analysis and ODEs +1609.03156 +1609.03879 Phenomenology +1609.04107 Classical Analysis and ODEs +1609.04156 Methodology +1609.04957 Superconductivity +1609.04988 Numerical Analysis +1609.05164 Analysis of PDEs +1609.05550 +1609.06476 Quantum Gases +1609.07732 Representation Theory +1609.08298 +1609.08312 Information Theory +1609.09367 Disordered Systems and Neural Networks +1609.09370 Theory +1609.09711 Materials Science +1609.09773 Information Theory +1610.00283 Astrophysics of Galaxies +1610.00286 Differential Geometry +1610.00378 Artificial Intelligence +1610.00468 Sound +1610.00662 Information Theory +1610.00770 Number Theory +1610.01013 Mesoscale and Nanoscale Physics +1610.01030 Computation and Language +1610.01064 Systems and Control +1610.01067 Group Theory +1610.01080 Complex Variables +1610.01134 Algebraic Topology +1610.01146 Instrumentation and Detectors +1610.01147 Neurons and Cognition +1610.01150 Data Structures and Algorithms +1610.01151 +1610.01152 +1610.01153 Computers and Society +1610.01155 Astrophysics of Galaxies +1610.01157 High Energy Astrophysical Phenomena +1610.01163 Astrophysics of Galaxies +1610.01164 Astrophysics of Galaxies +1610.01168 Numerical Analysis +1610.01169 Astrophysics of Galaxies +1610.01170 Earth and Planetary Astrophysics +1610.01172 +1610.01174 Astrophysics of Galaxies +1610.01175 Data Structures and Algorithms +1610.01178 Learning +1610.01182 Networking and Internet Architecture +1610.01183 Experiment +1610.01184 Differential Geometry +1610.01189 Biomolecules +1610.01190 Atomic Physics +1610.01191 Other Computer Science +1610.01192 Biomolecules +1610.01193 Biomolecules +1610.01196 Biomolecules +1610.01197 Instrumentation and Methods for Astrophysics +1610.01200 Combinatorics +1610.01201 +1610.01202 +1610.01203 +1610.01204 Fluid Dynamics +1610.01207 +1610.01208 Analysis of PDEs +1610.01209 Computers and Society +1610.01210 +1610.01211 Differential Geometry +1610.01216 Analysis of PDEs +1610.01218 +1610.01219 Algebraic Topology +1610.01220 Rings and Algebras +1610.01221 Networking and Internet Architecture +1610.01223 Computer Vision and Pattern Recognition +1610.01224 Strongly Correlated Electrons +1610.01225 Analysis of PDEs +1610.01226 Numerical Analysis +1610.01227 Mathematical Finance +1610.01228 Number Theory +1610.01229 Rings and Algebras +1610.01230 Numerical Analysis +1610.01234 Machine Learning +1610.01235 +1610.01236 Strongly Correlated Electrons +1610.01243 Systems and Control +1610.01247 Computation and Language +1610.01248 +1610.01250 Analysis of PDEs +1610.01252 +1610.01253 Probability +1610.01256 Computers and Society +1610.01257 Classical Analysis and ODEs +1610.01259 Combinatorics +1610.01262 +1610.01264 Commutative Algebra +1610.01265 Computational Engineering, Finance, and Science +1610.01272 Cosmology and Nongalactic Astrophysics +1610.01274 Dynamical Systems +1610.01276 Combinatorics +1610.01277 Superconductivity +1610.01279 Medical Physics +1610.01282 Networking and Internet Architecture +1610.01285 Space Physics +1610.01287 Information Theory +1610.01288 +1610.01289 Analysis of PDEs +1610.01290 Statistics Theory +1610.01291 Computation and Language +1610.01292 Networking and Internet Architecture +1610.01294 Dynamical Systems +1610.01296 Analysis of PDEs +1610.01302 Probability +1610.01303 Robotics +1610.01304 Earth and Planetary Astrophysics +1610.01306 Solar and Stellar Astrophysics +1610.01307 Group Theory +1610.01308 Physics and Society +1610.01310 Representation Theory +1610.01311 Number Theory +1610.01312 Physics and Society +1610.01313 Materials Science +1610.01314 Computer Science and Game Theory +1610.01315 Cryptography and Security +1610.01317 Number Theory +1610.01318 Theory +1610.01319 Soft Condensed Matter +1610.01320 Representation Theory +1610.01323 Numerical Analysis +1610.01324 Numerical Analysis +1610.01325 Optimization and Control +1610.01326 Robotics +1610.01328 Algebraic Geometry +1610.01332 +1610.01334 Phenomenology +1610.01337 +1610.01338 Pricing of Securities +1610.01339 Networking and Internet Architecture +1610.01340 Atomic Physics +1610.01342 Phenomenology +1610.01344 Logic +1610.01345 Adaptation and Self-Organizing Systems +1610.01346 K-Theory and Homology +1610.01348 High Energy Astrophysical Phenomena +1610.01349 Optimization and Control +1610.01351 Instrumentation and Methods for Astrophysics +1610.01353 Methodology +1610.01357 Combinatorics +1610.01360 Spectral Theory +1610.01363 Instrumentation and Methods for Astrophysics +1610.01364 Instrumentation and Detectors +1610.01365 Complex Variables +1610.01366 Information Retrieval +1610.01367 Computation and Language +1610.01368 Representation Theory +1610.01369 Classical Analysis and ODEs +1610.01370 Pattern Formation and Solitons +1610.01372 +1610.01377 Representation Theory +1610.01380 Superconductivity +1610.01381 Artificial Intelligence +1610.01382 Sound +1610.01385 Plasma Physics +1610.01386 Analysis of PDEs +1610.01387 Mesoscale and Nanoscale Physics +1610.01388 Fluid Dynamics +1610.01390 Computer Vision and Pattern Recognition +1610.01391 Quantitative Methods +1610.01393 Combinatorics +1610.01395 Statistical Mechanics +1610.01396 Differential Geometry +1610.01397 Formal Languages and Automata Theory +1610.01398 Instrumentation and Methods for Astrophysics +1610.01400 Computer Vision and Pattern Recognition +1610.01403 Optimization and Control +1610.01404 Other Quantitative Biology +1610.01405 Information Theory +1610.01406 Mesoscale and Nanoscale Physics +1610.01407 Robotics +1610.01409 Algebraic Geometry +1610.01412 Logic in Computer Science +1610.01413 Materials Science +1610.01414 Materials Science +1610.01415 Physics and Society +1610.01416 +1610.01417 Machine Learning +1610.01419 High Energy Astrophysical Phenomena +1610.01423 Distributed, Parallel, and Cluster Computing +1610.01426 Information Theory +1610.01427 High Energy Astrophysical Phenomena +1610.01428 Analysis of PDEs +1610.01431 Atomic Physics +1610.01432 +1610.01433 Information Theory +1610.01436 Materials Science +1610.01437 Classical Analysis and ODEs +1610.01439 Neural and Evolutionary Computing +1610.01440 Geometric Topology +1610.01442 Commutative Algebra +1610.01444 Applications +1610.01446 Populations and Evolution +1610.01447 Strongly Correlated Electrons +1610.01451 Optimization and Control +1610.01453 +1610.01455 Systems and Control +1610.01456 Probability +1610.01457 Theory +1610.01458 Discrete Mathematics +1610.01461 Systems and Control +1610.01463 Astrophysics of Galaxies +1610.01470 Logic in Computer Science +1610.01474 Differential Geometry +1610.01475 Combinatorics +1610.01476 Artificial Intelligence +1610.01479 Discrete Mathematics +1610.01481 Robotics +1610.01482 Distributed, Parallel, and Cluster Computing +1610.01483 Classical Physics +1610.01485 Soft Condensed Matter +1610.01487 Number Theory +1610.01488 Algebraic Geometry +1610.01489 Optimization and Control +1610.01491 Complex Variables +1610.01492 Machine Learning +1610.01493 Populations and Evolution +1610.01494 Algebraic Geometry +1610.01495 Robotics +1610.01496 Robotics +1610.01499 Dynamical Systems +1610.01500 Metric Geometry +1610.01501 Theory +1610.01504 Theory +1610.01505 Theory +1610.01506 Functional Analysis +1610.01507 Molecular Networks +1610.01508 Computation and Language +1610.01513 Optics +1610.01515 General Mathematics +1610.01516 Other Computer Science +1610.01517 Fluid Dynamics +1610.01518 Cryptography and Security +1610.01520 Computation and Language +1610.01521 Combinatorics +1610.01522 Solar and Stellar Astrophysics +1610.01524 Probability +1610.01525 Artificial Intelligence +1610.01527 Differential Geometry +1610.01528 Numerical Analysis +1610.01532 Algebraic Geometry +1610.01535 Functional Analysis +1610.01536 Instrumentation and Methods for Astrophysics +1610.01538 Social and Information Networks +1610.01541 Analysis of PDEs +1610.01543 Cosmology and Nongalactic Astrophysics +1610.01544 Combinatorics +1610.01546 Computation and Language +1610.01550 Materials Science +1610.01551 Optics +1610.01553 Optimization and Control +1610.01554 +1610.01555 Numerical Analysis +1610.01557 Classical Analysis and ODEs +1610.01559 Materials Science +1610.01560 Combinatorics +1610.01561 Social and Information Networks +1610.01562 Probability +1610.01563 Computer Vision and Pattern Recognition +1610.01565 General Mathematics +1610.01566 Theory +1610.01567 Classical Analysis and ODEs +1610.01568 Combinatorics +1610.01571 Theory +1610.01574 Logic +1610.01575 +1610.01576 Lattice +1610.01577 Strongly Correlated Electrons +1610.01578 Computer Vision and Pattern Recognition +1610.01579 Optics +1610.01582 Statistical Mechanics +1610.01583 Number Theory +1610.01588 Computation and Language +1610.01589 Fluid Dynamics +cond-mat/0303098 Statistical Mechanics +cond-mat/0303100 Statistical Mechanics +cond-mat/0410511 Statistical Mechanics +cond-mat/0503525 Statistical Mechanics +0901.3381 General Physics +0906.3525 General Physics +1001.2865 General Physics +1007.4497 Earth and Planetary Astrophysics +1103.0223 Dynamical Systems +1105.5612 Dynamical Systems +1206.2288 Chaotic Dynamics +1212.2001 +1301.3531 Probability +1307.0254 History and Philosophy of Physics +1307.5861 Theory +1308.0564 Algebraic Geometry +1310.0831 Number Theory +1311.1911 Machine Learning +1312.1672 Computational Complexity +1401.7718 Number Theory +1402.1673 Numerical Analysis +1403.4653 Combinatorics +1403.6295 Methodology +1403.6606 Methodology +1404.1141 Mesoscale and Nanoscale Physics +1404.5126 Statistics Theory +1405.0808 Methodology +1405.7605 Dynamical Systems +1406.1513 Theory +1406.2112 Statistics Theory +1406.2736 Phenomenology +1406.6519 Statistics Theory +1407.1649 +1407.4761 Strongly Correlated Electrons +1407.6738 +1408.1239 Statistics Theory +1408.1703 Combinatorics +1408.5951 Computer Science and Game Theory +1409.6233 Probability +1410.0995 Dynamical Systems +1410.5170 Statistics Theory +1410.7824 Fluid Dynamics +1411.4636 Theory +1412.2915 Analysis of PDEs +1412.7408 Combinatorics +1501.04210 Algebraic Geometry +1501.05475 Discrete Mathematics +1502.05222 Data Structures and Algorithms +1503.03443 Logic +1503.05114 Representation Theory +1503.05523 Category Theory +1503.08516 Number Theory +1504.04100 Statistics Theory +1504.05402 Algebraic Geometry +1504.06134 Mesoscale and Nanoscale Physics +1505.01530 Number Theory +1505.04132 +1505.05058 +1505.05542 +1505.06171 Strongly Correlated Electrons +1506.02024 Information Theory +1506.02333 Theory +1506.06966 Probability +1506.07146 Phenomenology +1507.05211 Populations and Evolution +1508.06451 Computation and Language +1508.07486 Complex Variables +1508.07879 Classical Analysis and ODEs +1509.01632 Earth and Planetary Astrophysics +1509.02402 K-Theory and Homology +1509.05094 Theory +1509.06562 Discrete Mathematics +1510.00356 Logic +1510.00733 Complex Variables +1510.03185 +1510.03519 Computation and Language +1510.04096 +1511.00333 Astrophysics of Galaxies +1511.00353 Information Theory +1511.02089 Optimization and Control +1511.02830 Statistical Mechanics +1511.02843 Cosmology and Nongalactic Astrophysics +1511.02869 Instrumentation and Methods for Astrophysics +1511.03554 Probability +1511.05208 Numerical Analysis +1511.05212 Learning +1511.05526 Robotics +1511.07676 Theory +1511.08438 Astrophysics of Galaxies +1511.08662 Theory +1511.08828 Probability +1511.09288 +1512.00544 Cell Behavior +1512.01230 Physics and Society +1512.05649 +1512.06723 Atomic Physics +1601.00190 Analysis of PDEs +1601.00868 +1601.01166 Information Theory +1601.02106 Quantum Gases +1601.03411 Artificial Intelligence +1601.05445 Operator Algebras +1601.06429 Instrumentation and Methods for Astrophysics +1601.07361 +1602.00598 Statistical Mechanics +1602.02286 +1602.02616 Computation +1602.02652 Soft Condensed Matter +1602.03253 Machine Learning +1602.03946 Soft Condensed Matter +1602.04658 Chaotic Dynamics +1602.05296 Soft Condensed Matter +1602.05499 +1602.06604 Systems and Control +1602.06915 Discrete Mathematics +1602.08134 Combinatorics +1602.08222 +1603.00610 Astrophysics of Galaxies +1603.01143 Biological Physics +1603.01332 Theory +1603.02468 Number Theory +1603.02969 Superconductivity +1603.03444 Strongly Correlated Electrons +1603.03507 Optics +1603.06011 +1603.06278 Mesoscale and Nanoscale Physics +1603.06634 Populations and Evolution +1603.07252 Computation and Language +1603.07336 Chemical Physics +1603.08613 +1604.00311 Algebraic Geometry +1604.00353 Numerical Analysis +1604.02525 Experiment +1604.03700 Mesoscale and Nanoscale Physics +1604.03722 Mesoscale and Nanoscale Physics +1604.04049 Strongly Correlated Electrons +1604.05036 Experiment +1604.06826 Networking and Internet Architecture +1604.06944 Mesoscale and Nanoscale Physics +1604.07569 Materials Science +1604.07605 Mesoscale and Nanoscale Physics +1604.07759 Learning +1604.08586 +1605.00074 Solar and Stellar Astrophysics +1605.00567 Fluid Dynamics +1605.01487 Chemical Physics +1605.02522 +1605.04290 Theory +1605.05399 High Energy Astrophysical Phenomena +1605.08793 Materials Science +1605.09697 Populations and Evolution +1606.00201 +1606.00550 Fluid Dynamics +1606.01358 Neurons and Cognition +1606.01684 Neurons and Cognition +1606.02920 Plasma Physics +1606.03079 Geophysics +1606.05009 Category Theory +1606.05258 Solar and Stellar Astrophysics +1606.05448 Instrumentation and Detectors +1606.05467 Computation and Language +1606.05475 Representation Theory +1606.05952 Earth and Planetary Astrophysics +1606.06678 Phenomenology +1606.08685 Phenomenology +1606.09309 Combinatorics +1606.09312 Combinatorics +1606.09450 Solar and Stellar Astrophysics +1606.09483 Solar and Stellar Astrophysics +1607.00019 Cosmology and Nongalactic Astrophysics +1607.00020 Quantum Algebra +1607.00021 Computation +1607.00022 Physics and Society +1607.00023 Accelerator Physics +1607.00028 Accelerator Physics +1607.00029 Probability +1607.00031 General Topology +1607.00033 Combinatorics +1607.00034 Machine Learning +1607.00035 Mathematical Finance +1607.00038 Differential Geometry +1607.00040 Functional Analysis +1607.00041 +1607.00042 +1607.00045 Accelerator Physics +1607.00046 Applications +1607.00047 Combinatorics +1607.00051 Robotics +1607.00053 Combinatorics +1607.00056 Analysis of PDEs +1607.00061 Artificial Intelligence +1607.00062 Algebraic Geometry +1607.00064 Hardware Architecture +1607.00065 Phenomenology +1607.00066 Differential Geometry +1607.00067 Learning +1607.00070 Computation and Language +1607.00072 Physics and Society +1607.00073 Classical Physics +1607.00083 Numerical Analysis +1607.00084 Machine Learning +1607.00085 Instrumentation and Methods for Astrophysics +1607.00086 Combinatorics +1607.00090 +1607.00091 Applications +1607.00096 Networking and Internet Architecture +1607.00098 Methodology +1607.00101 Optimization and Control +1607.00103 General Topology +1607.00104 Populations and Evolution +1607.00105 Classical Analysis and ODEs +1607.00106 Discrete Mathematics +1607.00107 Optics +1607.00110 Learning +1607.00113 Functional Analysis +1607.00114 +1607.00116 Mesoscale and Nanoscale Physics +1607.00120 Biological Physics +1607.00121 Physics and Society +1607.00122 Learning +1607.00126 +1607.00128 Molecular Networks +1607.00131 Combinatorics +1607.00132 Metric Geometry +1607.00136 Artificial Intelligence +1607.00137 Computer Vision and Pattern Recognition +1607.00138 Data Structures and Algorithms +1607.00141 Logic in Computer Science +1607.00144 Algebraic Topology +1607.00146 Learning +1607.00147 Instrumentation and Methods for Astrophysics +1607.00150 Systems and Control +1607.00151 Analysis of PDEs +1607.00153 Number Theory +1607.00156 +1607.00158 Mesoscale and Nanoscale Physics +1607.00159 Phenomenology +1607.00160 Materials Science +1607.00163 Optimization and Control +1607.00166 Numerical Analysis +1607.00167 Social and Information Networks +1607.00169 Mesoscale and Nanoscale Physics +1607.00170 Analysis of PDEs +1607.00171 Optimization and Control +1607.00172 Theory +1607.00174 Distributed, Parallel, and Cluster Computing +1607.00176 Algebraic Topology +1607.00177 Analysis of PDEs +1607.00178 Distributed, Parallel, and Cluster Computing +1607.00179 Metric Geometry +1607.00181 Representation Theory +1607.00183 +1607.00185 Information Theory +1607.00186 Computation and Language +1607.00188 Theory +1607.00191 Theory +1607.00192 Differential Geometry +1607.00195 Fluid Dynamics +1607.00196 Algebraic Topology +1607.00198 Computation and Language +1607.00199 +1607.00202 Experiment +1607.00205 Logic +1607.00207 Atomic Physics +1607.00208 Computational Geometry +1607.00209 Biological Physics +1607.00211 Sound +1607.00223 Information Retrieval +1607.00224 Optics +1607.00225 Computation and Language +1607.00229 Mesoscale and Nanoscale Physics +1607.00234 Artificial Intelligence +1607.00238 Phenomenology +1607.00240 Mesoscale and Nanoscale Physics +1607.00248 Combinatorics +1607.00253 Computational Physics +1607.00256 Soft Condensed Matter +1607.00262 Classical Analysis and ODEs +1607.00264 Algebraic Geometry +1607.00266 Information Theory +1607.00268 Analysis of PDEs +1607.00273 Robotics +1607.00274 Statistics Theory +1607.00275 Phenomenology +1607.00276 Genomics +1607.00279 Machine Learning +1607.00281 Astrophysics of Galaxies +1607.00286 Statistics Theory +1607.00292 Statistics Theory +1607.00295 Accelerator Physics +1607.00296 Atomic Physics +1607.00297 General Topology +1607.00298 Distributed, Parallel, and Cluster Computing +1607.00300 Quantum Algebra +1607.00301 Numerical Analysis +1607.00302 +1607.00303 Accelerator Physics +1607.00304 Earth and Planetary Astrophysics +1607.00305 Representation Theory +1607.00308 Accelerator Physics +1607.00311 Phenomenology +1607.00312 Instrumentation and Methods for Astrophysics +1607.00314 Quantum Algebra +1607.00315 Numerical Analysis +1607.00317 Materials Science +1607.00322 Earth and Planetary Astrophysics +1607.00326 Soft Condensed Matter +1607.00328 Rings and Algebras +1607.00329 Information Theory +1607.00336 Rings and Algebras +1607.00339 Dynamical Systems +1607.00347 Combinatorics +1607.00348 Phenomenology +1607.00349 Exactly Solvable and Integrable Systems +1607.00351 Numerical Analysis +1607.00353 +1607.00354 Robotics +1607.00355 Information Theory +1607.00356 Information Theory +1607.00358 Accelerator Physics +1607.00359 Computation and Language +1607.00360 Learning +1607.00361 Accelerator Physics +1607.00362 +1607.00365 Theory +1607.00366 Optimization and Control +1607.00370 Representation Theory +astro-ph/0510147 +physics/0603219 History and Philosophy of Physics +physics/0701132 General Physics +1607.03988 Dynamical Systems +1608.08207 High Energy Astrophysical Phenomena +1608.08231 Physics and Society +1608.08233 +1608.08250 Mesoscale and Nanoscale Physics +1608.08267 Neural and Evolutionary Computing +1608.08337 Optimization and Control +1608.08371 Analysis of PDEs +1608.08389 Medical Physics +1608.08403 Statistical Mechanics +1608.08412 Networking and Internet Architecture +1608.08457 Complex Variables +1608.08490 Portfolio Management +1608.08492 Human-Computer Interaction +1608.08523 Experiment +1608.08574 Learning +1608.08602 Astrophysics of Galaxies +1608.08606 Astrophysics of Galaxies +1608.08617 Earth and Planetary Astrophysics +1608.08690 Number Theory +1608.08813 History and Overview +1608.08854 Algebraic Geometry +1608.08859 Computer Science and Game Theory +1608.08945 History and Philosophy of Physics +1609.00112 Atomic Physics +0803.2674 Theory +0804.4032 Data Analysis, Statistics and Probability +0810.3972 +0901.3476 Probability +1006.5069 Quantitative Methods +1104.0241 Algebraic Geometry +1110.0172 Superconductivity +1110.5382 Experiment +1202.2280 +1205.6139 Phenomenology +1211.5327 Algebraic Geometry +1302.5672 Geometric Topology +1303.2045 +1303.3442 Strongly Correlated Electrons +1304.7719 Algebraic Geometry +1307.2689 Group Theory +1307.6351 Phenomenology +1308.5260 High Energy Astrophysical Phenomena +1309.7620 Number Theory +1310.5686 Phenomenology +1312.1918 Information Theory +1401.5223 Phenomenology +1403.0913 +1403.7547 Numerical Analysis +1405.3237 Group Theory +1406.3075 Quantitative Methods +1406.5233 Analysis of PDEs +1406.6692 Cosmology and Nongalactic Astrophysics +1407.2417 Information Theory +1408.5056 +1409.7199 Theory +1409.7778 Algebraic Geometry +1410.0523 Cosmology and Nongalactic Astrophysics +1410.1694 +1410.2467 Theory +1410.3885 Statistical Mechanics +1410.5343 Information Theory +1411.1276 Cosmology and Nongalactic Astrophysics +1411.5735 Information Theory +1411.6846 Logic +1412.0267 Applications +1412.1326 Differential Geometry +1412.1619 Learning +1412.5240 Information Theory +1412.7170 Theory +1501.01306 Cosmology and Nongalactic Astrophysics +1501.01517 Differential Geometry +1501.02577 Astrophysics of Galaxies +1501.02688 Geometric Topology +1501.03303 Geometric Topology +1501.07388 Computer Science and Game Theory +1502.02815 Fluid Dynamics +1502.03204 Information Theory +1502.04582 Cosmology and Nongalactic Astrophysics +1502.05623 Symbolic Computation +1502.07529 Group Theory +1503.03112 Statistical Mechanics +1503.03549 Geometric Topology +1503.03676 +1503.08856 Algebraic Topology +1503.09090 Theory +1504.03368 Geometric Topology +1504.04412 Cosmology and Nongalactic Astrophysics +1504.04979 +1504.05101 Analysis of PDEs +1504.05884 Populations and Evolution +1504.06820 Functional Analysis +1504.07107 Machine Learning +1505.00215 Theory +1505.01768 Fluid Dynamics +1505.01870 Astrophysics of Galaxies +1505.03502 Strongly Correlated Electrons +1505.03666 Materials Science +1505.04641 Theory +1505.05460 Algebraic Geometry +1505.06438 Materials Science +1505.06764 Differential Geometry +1505.06789 Differential Geometry +1505.07786 Group Theory +1505.08110 Group Theory +1506.00490 Information Theory +1506.01035 Astrophysics of Galaxies +1506.03081 +1506.03437 Optimization and Control +1506.04444 Information Theory +1506.04651 Numerical Analysis +1506.04789 Geometric Topology +1506.05620 Data Structures and Algorithms +1506.05922 Mesoscale and Nanoscale Physics +1506.06973 Differential Geometry +1506.08871 Phenomenology +1506.09072 Earth and Planetary Astrophysics +1507.00602 Number Theory +1507.01376 Statistical Mechanics +1507.01862 +1507.02444 Information Theory +1507.04805 Statistical Mechanics +1507.05817 Theory +1507.06663 +1507.07377 +1507.08196 Differential Geometry +1507.08991 High Energy Astrophysical Phenomena +1508.00875 Dynamical Systems +1508.02357 +1508.02635 Analysis of PDEs +1508.05818 Optics +1508.06796 Probability +1509.00795 Quantum Gases +1509.01242 Phenomenology +1509.03520 Analysis of PDEs +1509.05420 Instrumentation and Methods for Astrophysics +1509.07084 Functional Analysis +1509.08576 Numerical Analysis +1510.00998 Algebraic Geometry +1510.01792 Optics +1510.02096 Mesoscale and Nanoscale Physics +1510.02337 +1510.02440 Dynamical Systems +1510.02687 Fluid Dynamics +1510.04005 Disordered Systems and Neural Networks +1510.05636 Combinatorics +1510.05712 Materials Science +1510.09064 Lattice +1511.00113 Probability +1511.00237 Methodology +1511.00965 Materials Science +1511.02584 Fluid Dynamics +1511.03038 +1511.03644 +1511.04766 Optics +1511.05558 Astrophysics of Galaxies +1511.06789 Computer Vision and Pattern Recognition +1511.07517 +1511.08056 Combinatorics +1511.08480 Astrophysics of Galaxies +1512.00589 +1512.00798 Mesoscale and Nanoscale Physics +1512.01015 Phenomenology +1512.01760 +1512.01855 Phenomenology +1512.02079 Commutative Algebra +1512.02239 Astrophysics of Galaxies +1512.02282 Solar and Stellar Astrophysics +1512.02521 Theory +1512.02997 Algebraic Geometry +1512.03110 Mesoscale and Nanoscale Physics +1512.04774 Solar and Stellar Astrophysics +1512.05091 Astrophysics of Galaxies +1512.05216 Solar and Stellar Astrophysics +1512.05506 Astrophysics of Galaxies +1512.06627 Strongly Correlated Electrons +1512.06661 Theory +1512.07089 Spectral Theory +1512.07448 Quantum Gases +1512.08238 Solar and Stellar Astrophysics +1512.08509 Probability +1512.09129 Phenomenology +1601.00876 Geometric Topology +1601.00993 +1601.01313 Astrophysics of Galaxies +1601.01412 Solar and Stellar Astrophysics +1601.01617 Soft Condensed Matter +1601.02498 Astrophysics of Galaxies +1601.02673 Astrophysics of Galaxies +1601.02802 Solar and Stellar Astrophysics +1601.03099 Astrophysics of Galaxies +1601.03222 Theory +1601.03660 Information Theory +1601.04055 Probability +1601.04139 Logic +1601.04655 Astrophysics of Galaxies +1601.07040 Cosmology and Nongalactic Astrophysics +1601.07506 Mesoscale and Nanoscale Physics +1601.07608 Earth and Planetary Astrophysics +1601.07729 Instrumentation and Methods for Astrophysics +1601.08184 Solar and Stellar Astrophysics +1601.08241 Dynamical Systems +1602.00395 Dynamical Systems +1602.00440 +1602.00799 Mesoscale and Nanoscale Physics +1602.01115 Instrumentation and Methods for Astrophysics +1602.01596 Algebraic Geometry +1602.01828 Algebraic Topology +1602.02008 Algebraic Geometry +1602.02223 +1602.04942 Astrophysics of Galaxies +1602.05322 Phenomenology +1602.05538 Soft Condensed Matter +1602.06118 Mesoscale and Nanoscale Physics +1602.06416 Statistical Mechanics +1602.06436 +1602.06644 +1602.06956 Astrophysics of Galaxies +1602.06995 Combinatorics +1602.07861 +1602.08752 +1602.08759 +1602.08787 Computation +1603.00639 +1603.01031 Strongly Correlated Electrons +1603.01111 Mesoscale and Nanoscale Physics +1603.02553 +1603.02662 Quantum Gases +1603.04215 Materials Science +1603.04439 Phenomenology +1603.04455 Plasma Physics +1603.05156 Mesoscale and Nanoscale Physics +1603.05182 +1603.05190 Instrumentation and Methods for Astrophysics +1603.05192 Strongly Correlated Electrons +1603.05325 Mesoscale and Nanoscale Physics +1603.05405 Astrophysics of Galaxies +1603.06501 Phenomenology +1603.06608 +1603.06626 Quantum Gases +1603.07003 Group Theory +1603.07421 Systems and Control +1603.07504 Social and Information Networks +1603.08053 Atomic Physics +1603.08259 Theory +1603.08822 Superconductivity +1603.09689 Materials Science +1603.09694 Logic +1604.00063 Statistical Mechanics +1604.00156 Theory +1604.00671 Classical Analysis and ODEs +1604.01490 +1604.01566 Information Theory +1604.01668 +1604.02143 +1604.02942 Cosmology and Nongalactic Astrophysics +1604.03028 Superconductivity +1604.03111 Mesoscale and Nanoscale Physics +1604.03345 Probability +1604.03414 Physics and Society +1604.03507 High Energy Astrophysical Phenomena +1604.03816 +1604.04307 Analysis of PDEs +1604.04623 Mesoscale and Nanoscale Physics +1604.04629 Astrophysics of Galaxies +1604.04911 Phenomenology +1604.06026 Statistical Mechanics +1604.06041 Earth and Planetary Astrophysics +1604.06417 Strongly Correlated Electrons +1604.06603 Chaotic Dynamics +1604.07073 Solar and Stellar Astrophysics +1604.07708 Phenomenology +1604.07762 Fluid Dynamics +1604.07771 Astrophysics of Galaxies +1604.07868 Mesoscale and Nanoscale Physics +1604.08305 Combinatorics +1604.08308 +1604.08843 Statistical Mechanics +1605.00116 Experiment +1605.00201 Optimization and Control +1605.00276 High Energy Astrophysical Phenomena +1605.00430 Mesoscale and Nanoscale Physics +1605.00932 Instrumentation and Methods for Astrophysics +1605.01106 Data Structures and Algorithms +1605.02075 Astrophysics of Galaxies +1605.02759 Plasma Physics +1605.03186 High Energy Astrophysical Phenomena +1605.03433 Statistics Theory +1605.03671 Soft Condensed Matter +1605.04586 Earth and Planetary Astrophysics +1605.04599 +1605.04701 +1605.04825 Biomolecules +1605.04919 Astrophysics of Galaxies +1605.05574 Quantum Gases +1605.06261 Atomic Physics +1605.06680 Mesoscale and Nanoscale Physics +1605.07072 Methodology +1605.07157 Learning +1605.07217 Chaotic Dynamics +1605.07280 Quantum Gases +1605.07665 Phenomenology +1605.08177 +1605.08338 Cosmology and Nongalactic Astrophysics +1605.08417 Strongly Correlated Electrons +1605.08676 Quantum Gases +1605.08956 Strongly Correlated Electrons +1605.09730 Solar and Stellar Astrophysics +1606.00036 Physics and Society +1606.00052 Solar and Stellar Astrophysics +1606.00055 Solar and Stellar Astrophysics +1606.00057 Solar and Stellar Astrophysics +1606.00138 Combinatorics +1606.00150 +1606.00192 Cosmology and Nongalactic Astrophysics +1606.00200 Databases +1606.00404 Solar and Stellar Astrophysics +1606.00588 Mesoscale and Nanoscale Physics +1606.00736 Optics +1606.01021 Computer Vision and Pattern Recognition +1606.01252 Superconductivity +1606.01879 Classical Physics +1606.03047 Quantum Gases +1606.03219 Phenomenology +1606.03416 Computational Physics +1606.03453 Phenomenology +1606.03821 Computation and Language +1606.03827 +1606.03889 Strongly Correlated Electrons +1606.04234 +1606.05054 Strongly Correlated Electrons +1606.05485 Mesoscale and Nanoscale Physics +1606.05627 +1606.05928 Optics +1606.06042 Phenomenology +1606.06174 Phenomenology +1606.06495 Fluid Dynamics +1606.06739 Astrophysics of Galaxies +1606.06788 Optics +1606.06795 High Energy Astrophysical Phenomena +1606.06863 Solar and Stellar Astrophysics +1606.06922 Strongly Correlated Electrons +1606.06937 Materials Science +1606.07071 Solar and Stellar Astrophysics +1606.07117 Solar and Stellar Astrophysics +1606.07446 Astrophysics of Galaxies +1606.07766 Materials Science +1606.08039 Commutative Algebra +1606.08218 Biological Physics +1606.08503 Strongly Correlated Electrons +1606.08559 Materials Science +1606.08630 Phenomenology +1606.08712 Atomic Physics +1606.08749 Optimization and Control +1606.08847 Astrophysics of Galaxies +1606.09023 Statistical Mechanics +1606.09070 Optimization and Control +1606.09558 Astrophysics of Galaxies +1607.00007 Earth and Planetary Astrophysics +1607.00015 Astrophysics of Galaxies +1607.00127 Numerical Analysis +1607.00194 Soft Condensed Matter +1607.00320 High Energy Astrophysical Phenomena +1607.00374 Phenomenology +1607.00528 Superconductivity +1607.00953 Superconductivity +1607.01017 Astrophysics of Galaxies +1607.01037 +1607.01387 +1607.01435 Molecular Networks +1607.01512 Phenomenology +1607.01685 K-Theory and Homology +1607.01943 High Energy Astrophysical Phenomena +1607.02104 Computer Vision and Pattern Recognition +1607.02268 Cosmology and Nongalactic Astrophysics +1607.02322 Earth and Planetary Astrophysics +1607.02339 Earth and Planetary Astrophysics +1607.02496 Phenomenology +1607.02511 Astrophysics of Galaxies +1607.02599 Quantum Gases +1607.02625 High Energy Astrophysical Phenomena +1607.02884 Astrophysics of Galaxies +1607.02924 Materials Science +1607.03101 Superconductivity +1607.03116 High Energy Astrophysical Phenomena +1607.03285 Statistical Mechanics +1607.03415 High Energy Astrophysical Phenomena +1607.03416 High Energy Astrophysical Phenomena +1607.03539 Superconductivity +1607.03835 Phenomenology +1607.03909 Astrophysics of Galaxies +1607.04062 Earth and Planetary Astrophysics +1607.04103 +1607.04301 Quantum Gases +1607.04382 Statistical Mechanics +1607.04388 Statistical Mechanics +1607.04633 High Energy Astrophysical Phenomena +1607.04670 Astrophysics of Galaxies +1607.04674 Cosmology and Nongalactic Astrophysics +1607.04997 Astrophysics of Galaxies +1607.05010 Complex Variables +1607.05072 Solar and Stellar Astrophysics +1607.05533 Solar and Stellar Astrophysics +1607.05683 Solar and Stellar Astrophysics +1607.05734 Earth and Planetary Astrophysics +1607.05779 Astrophysics of Galaxies +1607.05954 Instrumentation and Methods for Astrophysics +1607.06102 Solar and Stellar Astrophysics +1607.06197 Phenomenology +1607.06394 High Energy Astrophysical Phenomena +1607.06596 Materials Science +1607.06840 Astrophysics of Galaxies +1607.06939 Quantum Gases +1607.07168 Optics +1607.07347 Theory +1607.07357 +1607.07371 +1607.07381 Strongly Correlated Electrons +1607.07458 Solar and Stellar Astrophysics +1607.07534 Astrophysics of Galaxies +1607.07658 Combinatorics +1607.07875 High Energy Astrophysical Phenomena +1607.07900 Theory +1607.07985 High Energy Astrophysical Phenomena +1607.07991 Solar and Stellar Astrophysics +1607.08069 Astrophysics of Galaxies +1607.08070 Functional Analysis +1607.08103 +1607.08147 Earth and Planetary Astrophysics +1607.08238 Strongly Correlated Electrons +1607.08239 Earth and Planetary Astrophysics +1607.08284 Solar and Stellar Astrophysics +1607.08334 High Energy Astrophysical Phenomena +1607.08385 Statistical Mechanics +1607.08405 Solar and Stellar Astrophysics +1607.08446 Mesoscale and Nanoscale Physics +1607.08457 Strongly Correlated Electrons +1607.08607 +1607.08654 Discrete Mathematics +1607.08776 Astrophysics of Galaxies +1608.00093 Solar and Stellar Astrophysics +1608.00225 Chemical Physics +1608.00484 Differential Geometry +1608.00495 Functional Analysis +1608.00517 Phenomenology +1608.00547 Cosmology and Nongalactic Astrophysics +1608.00556 Solar and Stellar Astrophysics +1608.00690 Astrophysics of Galaxies +1608.00838 Solar and Stellar Astrophysics +1608.00882 Phenomenology +1608.00974 Astrophysics of Galaxies +1608.00998 +1608.01000 Solar and Stellar Astrophysics +1608.01134 High Energy Astrophysical Phenomena +1608.01360 Earth and Planetary Astrophysics +1608.01444 Phenomenology +1608.01569 High Energy Astrophysical Phenomena +1608.01698 Astrophysics of Galaxies +1608.01772 Astrophysics of Galaxies +1608.01806 +1608.01892 Mesoscale and Nanoscale Physics +1608.02155 Dynamical Systems +1608.02384 Solar and Stellar Astrophysics +1608.02685 Earth and Planetary Astrophysics +1608.02987 Probability +1608.03020 +1608.03269 Logic +1608.03516 Theory +1608.03597 Earth and Planetary Astrophysics +1608.03665 Neural and Evolutionary Computing +1608.03958 High Energy Astrophysical Phenomena +1608.04065 Phenomenology +1608.04232 Solar and Stellar Astrophysics +1608.04288 Materials Science +1608.04499 Solar and Stellar Astrophysics +1608.04668 Astrophysics of Galaxies +1608.04739 +1608.04740 Strongly Correlated Electrons +1608.05077 Theory +1608.05526 Astrophysics of Galaxies +1608.06296 Chemical Physics +1608.06636 Statistical Mechanics +1608.06679 +1608.06987 Solar and Stellar Astrophysics +1608.07157 Solar and Stellar Astrophysics +1608.07261 Programming Languages +1608.07579 Astrophysics of Galaxies +1608.07621 Probability +1608.07722 Other Condensed Matter +1608.08297 Astrophysics of Galaxies +1608.08327 Strongly Correlated Electrons +1608.08446 Astrophysics of Galaxies +1608.08916 Instrumentation and Detectors +1608.08959 Earth and Planetary Astrophysics +1608.09003 Atomic Physics +1609.00219 Solar and Stellar Astrophysics +1609.00328 Cosmology and Nongalactic Astrophysics +1609.00438 Strongly Correlated Electrons +1609.00499 Astrophysics of Galaxies +1609.00596 Solar and Stellar Astrophysics +1609.00613 Phenomenology +1609.01150 +1609.01420 Solar and Stellar Astrophysics +1609.01879 Mesoscale and Nanoscale Physics +1609.02179 Optimization and Control +1609.02212 Numerical Analysis +1609.02515 Number Theory +1609.02761 Materials Science +1609.02806 Atomic Physics +1609.02979 Solar and Stellar Astrophysics +1609.03189 +1609.04246 General Physics +1609.04254 Logic +1609.04270 Combinatorics +1609.04326 Solar and Stellar Astrophysics +1609.04590 Phenomenology +1609.05031 Fluid Dynamics +1609.05139 Analysis of PDEs +1609.05153 Solar and Stellar Astrophysics +1609.05229 Mesoscale and Nanoscale Physics +1609.05273 Digital Libraries +1609.05604 Instrumentation and Methods for Astrophysics +1609.05633 Solar and Stellar Astrophysics +1609.05649 Information Theory +1609.05903 Astrophysics of Galaxies +1609.06334 Statistical Mechanics +1609.06514 Fluid Dynamics +1609.06655 Analysis of PDEs +1609.06973 Atomic Physics +1609.07047 Atomic Physics +1609.07141 Astrophysics of Galaxies +1609.07153 Theory +1609.07422 Phenomenology +1609.07620 Astrophysics of Galaxies +1609.07761 Solar and Stellar Astrophysics +1609.08347 Statistics Theory +1609.08410 +1609.08555 Mesoscale and Nanoscale Physics +1609.08864 Computer Vision and Pattern Recognition +1609.08986 Strongly Correlated Electrons +1609.09243 +1609.09393 Accelerator Physics +1609.09467 Quantum Gases +1609.09716 Solar and Stellar Astrophysics +1609.09782 Materials Science +1610.00557 Astrophysics of Galaxies +1610.00978 General Physics +1610.01672 Number Theory +1610.02530 +1610.02562 Classical Analysis and ODEs +1610.02679 +1610.02855 Cosmology and Nongalactic Astrophysics +1610.02906 Social and Information Networks +1610.03031 Solar and Stellar Astrophysics +1610.03071 High Energy Astrophysical Phenomena +1610.03108 Distributed, Parallel, and Cluster Computing +1610.03552 Number Theory +1610.03608 Methodology +1610.03624 Theory +1610.03626 Solar and Stellar Astrophysics +1610.03708 Computer Vision and Pattern Recognition +1610.03755 Mesoscale and Nanoscale Physics +1610.03781 +1610.03835 Physics and Society +1610.03856 Astrophysics of Galaxies +1610.03897 Distributed, Parallel, and Cluster Computing +1610.03964 Fluid Dynamics +1610.04219 General Physics +1610.04238 +1610.04323 Probability +1610.04406 Physics and Society +1610.04509 Numerical Analysis +1610.04561 High Energy Astrophysical Phenomena +1610.04566 High Energy Astrophysical Phenomena +1610.04605 Statistical Mechanics +1610.04644 Information Theory +1610.04647 Probability +1610.04662 Computer Vision and Pattern Recognition +1610.04760 Statistical Finance +1610.04789 Databases +1610.04828 +1610.04832 Phenomenology +1610.04919 Networking and Internet Architecture +1610.04967 Human-Computer Interaction +1610.04995 Algebraic Geometry +1610.04997 Computer Vision and Pattern Recognition +1610.05056 Physics and Society +1610.05082 Probability +1610.05083 Learning +1610.05189 Biomolecules +1610.05217 High Energy Astrophysical Phenomena +1610.05218 +1610.05270 Logic in Computer Science +1610.05274 Number Theory +1610.05300 Superconductivity +1610.05304 Astrophysics of Galaxies +1610.05306 High Energy Astrophysical Phenomena +1610.05308 Theory +1610.05309 High Energy Astrophysical Phenomena +1610.05313 Astrophysics of Galaxies +1610.05317 Theory +1610.05320 Theory +1610.05323 High Energy Astrophysical Phenomena +1610.05325 Optimization and Control +1610.05329 Quantum Gases +1610.05334 Optics +1610.05338 Commutative Algebra +1610.05340 Number Theory +1610.05341 +1610.05343 Geometric Topology +1610.05345 Algebraic Geometry +1610.05347 Social and Information Networks +1610.05348 Molecular Networks +1610.05349 Combinatorics +1610.05350 Discrete Mathematics +1610.05351 Numerical Analysis +1610.05352 Optics +1610.05353 Rings and Algebras +1610.05354 Combinatorics +1610.05355 Numerical Analysis +1610.05356 Fluid Dynamics +1610.05357 +1610.05358 Social and Information Networks +1610.05360 Probability +1610.05361 Computation and Language +1610.05363 Optics +1610.05365 Group Theory +1610.05367 Probability +1610.05368 Optics +1610.05371 Theory +1610.05372 Analysis of PDEs +1610.05376 Robotics +1610.05377 Human-Computer Interaction +1610.05379 Theory +1610.05381 Algebraic Geometry +1610.05383 Trading and Market Microstructure +1610.05384 +1610.05386 +1610.05389 +1610.05390 Plasma Physics +1610.05391 Spectral Theory +1610.05394 Learning +1610.05397 Logic +1610.05398 Quantum Gases +1610.05401 Numerical Analysis +1610.05402 Artificial Intelligence +1610.05403 Earth and Planetary Astrophysics +1610.05404 Probability +1610.05405 Logic +1610.05406 Combinatorics +1610.05408 Probability +1610.05409 Optimization and Control +1610.05412 Optimization and Control +1610.05414 Differential Geometry +1610.05416 Optimization and Control +1610.05417 Numerical Analysis +1610.05418 Phenomenology +1610.05420 Biological Physics +1610.05421 Networking and Internet Architecture +1610.05422 Algebraic Topology +1610.05424 Networking and Internet Architecture +1610.05425 Materials Science +1610.05426 Physics and Society +1610.05431 Networking and Internet Architecture +1610.05433 Instrumentation and Methods for Astrophysics +1610.05434 Systems and Control +1610.05435 Information Theory +1610.05436 Computer Science and Game Theory +1610.05437 Space Physics +1610.05438 Solar and Stellar Astrophysics +1610.05440 Methodology +1610.05441 Theory +1610.05442 Optics +1610.05443 Disordered Systems and Neural Networks +1610.05447 Analysis of PDEs +1610.05448 Machine Learning +1610.05451 Molecular Networks +1610.05452 Artificial Intelligence +1610.05453 Dynamical Systems +1610.05454 +1610.05455 Human-Computer Interaction +1610.05456 Exactly Solvable and Integrable Systems +1610.05457 Group Theory +1610.05458 Representation Theory +1610.05463 Human-Computer Interaction +1610.05464 Social and Information Networks +1610.05465 Computer Vision and Pattern Recognition +1610.05467 Algebraic Geometry +1610.05469 Plasma Physics +1610.05471 Optimization and Control +1610.05476 Phenomenology +1610.05478 Populations and Evolution +1610.05479 Mesoscale and Nanoscale Physics +1610.05482 Information Theory +1610.05484 Theory +1610.05487 Dynamical Systems +1610.05489 Space Physics +1610.05491 Mesoscale and Nanoscale Physics +1610.05492 Learning +1610.05493 Computational Complexity +1610.05495 Classical Analysis and ODEs +1610.05496 Analysis of PDEs +1610.05498 Discrete Mathematics +1610.05501 Superconductivity +1610.05503 Analysis of PDEs +1610.05504 Instrumentation and Methods for Astrophysics +1610.05505 Mesoscale and Nanoscale Physics +1610.05507 Optimization and Control +1610.05509 Chemical Physics +1610.05510 Biological Physics +1610.05511 Analysis of PDEs +1610.05512 Quantitative Methods +1610.05513 Mesoscale and Nanoscale Physics +1610.05514 Robotics +1610.05516 Social and Information Networks +1610.05517 Optimization and Control +1610.05518 Computer Vision and Pattern Recognition +1610.05520 Group Theory +1610.05521 Artificial Intelligence +1610.05522 Computation and Language +1610.05523 High Energy Astrophysical Phenomena +1610.05525 Numerical Analysis +1610.05526 Mesoscale and Nanoscale Physics +1610.05527 Accelerator Physics +1610.05528 Numerical Analysis +1610.05531 Cryptography and Security +1610.05533 Phenomenology +1610.05535 Chemical Physics +1610.05536 Analysis of PDEs +1610.05537 Analysis of PDEs +1610.05539 Statistical Mechanics +1610.05540 Computation and Language +1610.05542 +1610.05546 Analysis of PDEs +1610.05547 Dynamical Systems +1610.05550 Solar and Stellar Astrophysics +1610.05551 Artificial Intelligence +1610.05552 +1610.05555 Learning +1610.05556 Artificial Intelligence +1610.05558 Numerical Analysis +1610.05559 Methodology +1610.05561 Neurons and Cognition +1610.05562 Computers and Society +1610.05564 Neurons and Cognition +1610.05566 Computer Vision and Pattern Recognition +1610.05567 Computer Vision and Pattern Recognition +1610.05568 Algebraic Geometry +1610.05569 +1610.05570 Differential Geometry +1610.05572 Plasma Physics +1610.05574 Mesoscale and Nanoscale Physics +1610.05577 Discrete Mathematics +1610.05579 Networking and Internet Architecture +1610.05585 Chemical Physics +1610.05586 Computer Vision and Pattern Recognition +1610.05592 Symplectic Geometry +1610.05594 Statistical Mechanics +1610.05595 Plasma Physics +1610.05596 Solar and Stellar Astrophysics +1610.05597 Algebraic Geometry +1610.05602 Plasma Physics +1610.05604 Machine Learning +1610.05605 +1610.05606 General Physics +1610.05607 Combinatorics +1610.05608 General Physics +1610.05611 General Physics +1610.05612 Artificial Intelligence +1610.05613 Computer Vision and Pattern Recognition +1610.05615 Materials Science +1610.05617 Information Theory +1610.05621 Numerical Analysis +1610.05622 Solar and Stellar Astrophysics +1610.05625 Solar and Stellar Astrophysics +1610.05628 +1610.05630 Algebraic Geometry +1610.05631 Materials Science +1610.05632 Strongly Correlated Electrons +1610.05634 Materials Science +1610.05636 Probability +1610.05637 Analysis of PDEs +1610.05640 General Physics +1610.05642 Functional Analysis +1610.05643 High Energy Astrophysical Phenomena +1610.05644 Soft Condensed Matter +1610.05645 Optimization and Control +1610.05646 Distributed, Parallel, and Cluster Computing +1610.05647 Phenomenology +1610.05649 General Mathematics +1610.05650 High Energy Astrophysical Phenomena +1610.05655 High Energy Astrophysical Phenomena +1610.05657 +1610.05658 Optics +1610.05660 Computation +1610.05661 +1610.05664 Theory +1610.05666 Analysis of PDEs +1610.05667 Instrumentation and Detectors +1610.05669 Phenomenology +1610.05670 Computation and Language +1610.05671 Optimization and Control +1610.05673 Analysis of PDEs +1610.05674 Number Theory +1610.05675 +1610.05679 Astrophysics of Galaxies +1610.05680 Analysis of PDEs +1610.05684 Number Theory +1610.05685 High Energy Astrophysical Phenomena +1610.05686 Fluid Dynamics +1610.05688 Computation and Language +1610.05690 Phenomenology +1610.05693 Computer Vision and Pattern Recognition +1610.05694 Information Theory +1610.05695 Methodology +1610.05696 Cosmology and Nongalactic Astrophysics +1610.05697 Statistical Finance +1610.05698 Materials Science +1610.05699 Accelerator Physics +1610.05700 Probability +1610.05701 Differential Geometry +1610.05703 Economics +1610.05704 Fluid Dynamics +1610.05707 Instrumentation and Methods for Astrophysics +1610.05708 Optimization and Control +1610.05709 Physics and Society +1610.05710 Data Structures and Algorithms +1610.05714 Combinatorics +1610.05717 Neurons and Cognition +1610.05720 Algebraic Geometry +1610.05723 Algebraic Geometry +1610.05724 Classical Analysis and ODEs +1610.05726 Software Engineering +1610.05727 Strongly Correlated Electrons +1610.05728 Mathematical Finance +1610.05729 Neural and Evolutionary Computing +1610.05730 Combinatorics +1610.05731 Robotics +1610.05732 Mesoscale and Nanoscale Physics +1610.05733 Other Statistics +1610.05734 +1610.05735 Artificial Intelligence +1610.05736 Analysis of PDEs +1610.05737 Quantum Gases +1610.05738 Phenomenology +1610.05739 Strongly Correlated Electrons +1610.05741 K-Theory and Homology +1610.05742 Classical Analysis and ODEs +1610.05744 Geometric Topology +1610.05745 Biological Physics +1610.05747 Methodology +1610.05749 History and Philosophy of Physics +1610.05750 Earth and Planetary Astrophysics +1610.05751 Phenomenology +1610.05754 K-Theory and Homology +1610.05756 Social and Information Networks +1610.05759 Number Theory +1610.05760 Materials Science +1610.05762 Strongly Correlated Electrons +astro-ph/0202056 +astro-ph/0511258 +astro-ph/9906333 +gr-qc/0001008 +gr-qc/0003101 +gr-qc/0102085 +gr-qc/0103036 +gr-qc/0206069 +gr-qc/0306052 +gr-qc/0307032 +gr-qc/0312059 +gr-qc/0409034 +gr-qc/0502091 +gr-qc/0505065 +gr-qc/0601085 +gr-qc/9710008 +gr-qc/9805012 +0803.0447 Algebraic Geometry +0901.2279 Number Theory +1106.2751 General Physics +1109.2881 Probability +1110.6184 Combinatorics +1208.0562 Information Theory +1301.1588 +1302.1097 +1305.1833 Commutative Algebra +1401.8084 Computational Physics +1403.6771 Instrumentation and Detectors +1408.7054 Optics +1410.2746 +1410.5712 Statistical Mechanics +1411.1242 Disordered Systems and Neural Networks +1411.1320 Theory +1411.1611 Optimization and Control +1411.4255 Probability +1412.5222 Analysis of PDEs +1501.00141 Classical Analysis and ODEs +1501.00482 Statistical Mechanics +1501.00740 Number Theory +1501.02049 Strongly Correlated Electrons +1501.06092 Analysis of PDEs +1504.03224 Combinatorics +1504.08221 Analysis of PDEs +1506.04756 Combinatorics +1506.08440 Phenomenology +1507.04332 Classical Analysis and ODEs +1507.04334 Classical Analysis and ODEs +1507.07477 Classical Physics +1507.08818 Computer Vision and Pattern Recognition +1508.07543 +1509.00652 Data Analysis, Statistics and Probability +1509.05921 Theory +1509.06495 +1509.07448 Probability +1510.03236 Computational Physics +1510.04819 Probability +1510.08440 Statistics Theory +1510.08987 Pattern Formation and Solitons +1511.04401 Computer Vision and Pattern Recognition +1511.04520 Group Theory +1511.08117 Analysis of PDEs +1511.08703 Differential Geometry +1511.08780 +1512.01390 Category Theory +1512.05853 Theory +1601.02905 Logic +1601.03107 Algebraic Topology +1601.04099 Number Theory +1601.07576 Computer Vision and Pattern Recognition +1602.00495 Classical Analysis and ODEs +1602.01673 +1602.04295 Classical Analysis and ODEs +1602.07690 Astrophysics of Galaxies +1602.07854 Metric Geometry +1602.08951 Materials Science +1603.00083 Computational Physics +1603.00235 Methodology +1603.00412 Instrumentation and Methods for Astrophysics +1603.01252 Solar and Stellar Astrophysics +1603.01688 Superconductivity +1603.02127 Combinatorics +1603.02814 Computer Vision and Pattern Recognition +1603.02933 Combinatorics +1603.05453 +1603.05937 Portfolio Management +1603.07518 +1603.08579 Logic +1604.00571 Analysis of PDEs +1604.06466 Superconductivity +1605.00290 Differential Geometry +1605.00490 Algebraic Geometry +1605.01323 Probability +1605.03973 +1605.04090 Lattice +1605.04210 Atomic Physics +1605.07728 Artificial Intelligence +1606.00542 Representation Theory +1606.03683 Analysis of PDEs +1606.04236 Networking and Internet Architecture +1606.04400 Optics +1606.04757 +1606.05760 Materials Science +1606.05808 Materials Science +1606.06244 Computer Science and Game Theory +1606.06264 Representation Theory +1606.08833 Group Theory +1606.08878 Phenomenology +1606.09495 Superconductivity +1607.00097 Classical Analysis and ODEs +1607.00836 +1607.02181 Mesoscale and Nanoscale Physics +1607.02254 +1607.02467 Artificial Intelligence +1607.02617 Analysis of PDEs +1607.02875 Astrophysics of Galaxies +1607.04266 Phenomenology +1607.05368 Computation and Language +1607.05382 Physics and Society +1607.05941 Materials Science +1607.06151 Strongly Correlated Electrons +1607.06923 Quantum Gases +1607.06940 Exactly Solvable and Integrable Systems +1608.00071 +1608.01349 Phenomenology +1608.03497 +1608.04306 Theory +1608.05543 Information Theory +1609.00184 Instrumentation and Methods for Astrophysics +1609.00301 Cosmology and Nongalactic Astrophysics +1609.01638 Instrumentation and Detectors +1609.03419 Instrumentation and Detectors +1609.03513 Instrumentation and Detectors +1609.03699 Computational Physics +1609.05231 Analysis of PDEs +1609.06504 Mesoscale and Nanoscale Physics +1609.06602 Solar and Stellar Astrophysics +1609.07798 Theory +1609.08131 +1609.08135 Solar and Stellar Astrophysics +1609.08996 Instrumentation and Methods for Astrophysics +1609.09045 +1609.09313 Physics and Society +1610.00069 Methodology +1610.01700 Plasma Physics +1610.02128 +1610.02291 Distributed, Parallel, and Cluster Computing +1610.02304 Theory +1610.03863 Computational Engineering, Finance, and Science +1610.04356 Strongly Correlated Electrons +1610.04718 Learning +1610.05519 Cosmology and Nongalactic Astrophysics +1610.06794 Optics +1610.06899 Strongly Correlated Electrons +1610.07021 Soft Condensed Matter +1610.07049 Theory +1610.07717 Learning +1610.08079 Strongly Correlated Electrons +1610.08252 Soft Condensed Matter +1610.09320 Data Structures and Algorithms +1610.09572 Computation +1610.10038 Phenomenology +1611.01599 Learning +1611.01743 Methodology +1611.01876 Analysis of PDEs +1611.02529 Optics +1611.03714 Logic in Computer Science +1611.03944 Algebraic Geometry +1611.04189 Theory +1611.04587 Astrophysics of Galaxies +1611.05779 Classical Analysis and ODEs +1611.05983 Spectral Theory +1611.06572 Differential Geometry +1611.07505 Computation +1611.07528 +1611.07717 Mesoscale and Nanoscale Physics +1611.08151 Materials Science +1611.08255 +1611.09307 Materials Science +1611.09371 Theory +1611.09677 Optics +1611.10052 Distributed, Parallel, and Cluster Computing +1611.10233 Algebraic Geometry +1612.00017 +1612.00356 Computer Vision and Pattern Recognition +1612.00543 +1612.00586 Algebraic Geometry +1612.00985 Human-Computer Interaction +1612.01364 Functional Analysis +1612.01908 Lattice +1612.02008 Theory +1612.02121 Complex Variables +1612.02166 Computer Vision and Pattern Recognition +1612.02769 Theory +1612.03030 Astrophysics of Galaxies +1612.03053 Social and Information Networks +1612.03214 Learning +1612.03225 Learning +1612.03284 Computer Vision and Pattern Recognition +1612.03311 Metric Geometry +1612.03314 Systems and Control +1612.03347 Risk Management +1612.03350 Computational Engineering, Finance, and Science +1612.03364 Learning +1612.03385 Materials Science +1612.03391 Astrophysics of Galaxies +1612.03412 Learning +1612.03428 Methodology +1612.03441 Machine Learning +1612.03468 Social and Information Networks +1612.03494 Artificial Intelligence +1612.03600 Differential Geometry +1612.03610 Materials Science +1612.03640 Human-Computer Interaction +1612.03651 Computation and Language +1612.03653 Artificial Intelligence +1612.03663 Computer Vision and Pattern Recognition +1612.03699 Instrumentation and Detectors +1612.03724 Strongly Correlated Electrons +1612.03740 Strongly Correlated Electrons +1612.03742 Optimization and Control +1612.03780 Artificial Intelligence +1612.03789 Sound +1612.03805 High Energy Astrophysical Phenomena +1612.03812 Soft Condensed Matter +1612.03859 Cell Behavior +1612.04034 Combinatorics +1612.04270 Statistical Mechanics +1612.04364 Algebraic Geometry +1612.04370 Statistical Finance +1612.04376 Theory +1612.04413 Machine Learning +1612.04417 Astrophysics of Galaxies +1612.04422 Complex Variables +1612.04438 Solar and Stellar Astrophysics +1612.04443 Number Theory +1612.04453 Optimization and Control +1612.04457 Networking and Internet Architecture +1612.04459 Networking and Internet Architecture +1612.04463 Networking and Internet Architecture +1612.04471 Quantitative Methods +1612.04502 Disordered Systems and Neural Networks +1612.04512 Multiagent Systems +1612.04532 Populations and Evolution +1612.04560 Space Physics +1612.04583 Atomic Physics +1612.04618 Experiment +1612.04682 Other Quantitative Biology +1612.04703 Information Theory +1612.04747 Representation Theory +1612.04759 Artificial Intelligence +1612.04791 Artificial Intelligence +1612.04796 Numerical Analysis +1612.04887 Learning +1612.04922 Analysis of PDEs +1612.05091 Solar and Stellar Astrophysics +1612.05114 +1612.05149 Solar and Stellar Astrophysics +1612.05179 Methodology +1612.05210 Phenomenology +1612.05249 Disordered Systems and Neural Networks +1612.05253 Astrophysics of Galaxies +1612.05254 Atmospheric and Oceanic Physics +1612.05256 Theory +1612.05257 Theory +1612.05259 Earth and Planetary Astrophysics +1612.05260 Strongly Correlated Electrons +1612.05264 Astrophysics of Galaxies +1612.05265 Theory +1612.05266 Cosmology and Nongalactic Astrophysics +1612.05268 Optics +1612.05269 Mesoscale and Nanoscale Physics +1612.05270 Computation and Language +1612.05271 +1612.05272 Astrophysics of Galaxies +1612.05273 Logic +1612.05274 Networking and Internet Architecture +1612.05275 Astrophysics of Galaxies +1612.05276 Adaptation and Self-Organizing Systems +1612.05277 Astrophysics of Galaxies +1612.05278 Astrophysics of Galaxies +1612.05280 Classical Analysis and ODEs +1612.05281 High Energy Astrophysical Phenomena +1612.05282 Astrophysics of Galaxies +1612.05283 Materials Science +1612.05284 Cosmology and Nongalactic Astrophysics +1612.05286 Information Theory +1612.05291 Networking and Internet Architecture +1612.05293 Materials Science +1612.05294 Superconductivity +1612.05296 Learning +1612.05297 Rings and Algebras +1612.05298 Phenomenology +1612.05299 Learning +1612.05300 Dynamical Systems +1612.05301 Classical Analysis and ODEs +1612.05304 Spectral Theory +1612.05305 Astrophysics of Galaxies +1612.05306 Information Theory +1612.05307 Methodology +1612.05308 Instrumentation and Methods for Astrophysics +1612.05312 Differential Geometry +1612.05313 Numerical Analysis +1612.05316 Software Engineering +1612.05317 +1612.05318 Instrumentation and Detectors +1612.05321 Neurons and Cognition +1612.05323 Computer Vision and Pattern Recognition +1612.05325 +1612.05326 Strongly Correlated Electrons +1612.05327 Optimization and Control +1612.05330 Statistics Theory +1612.05331 Materials Science +1612.05332 Computer Vision and Pattern Recognition +1612.05333 +1612.05334 Dynamical Systems +1612.05335 Robotics +1612.05336 Experiment +1612.05337 Materials Science +1612.05339 Computational Physics +1612.05341 Differential Geometry +1612.05342 Numerical Analysis +1612.05343 Cryptography and Security +1612.05344 Computational Physics +1612.05346 Analysis of PDEs +1612.05347 Physics and Society +1612.05348 Artificial Intelligence +1612.05349 Algebraic Geometry +1612.05350 Analysis of PDEs +1612.05351 Earth and Planetary Astrophysics +1612.05352 Algebraic Geometry +1612.05353 Fluid Dynamics +1612.05354 Number Theory +1612.05355 +1612.05357 Mesoscale and Nanoscale Physics +1612.05358 Strongly Correlated Electrons +1612.05359 Materials Science +1612.05362 Computer Vision and Pattern Recognition +1612.05363 Computer Vision and Pattern Recognition +1612.05365 Computer Vision and Pattern Recognition +1612.05366 Analysis of PDEs +1612.05367 Combinatorics +1612.05368 Statistics Theory +1612.05370 Functional Analysis +1612.05371 Lattice +1612.05372 Combinatorics +1612.05373 Classical Analysis and ODEs +1612.05375 Analysis of PDEs +1612.05376 Optics +1612.05377 Cosmology and Nongalactic Astrophysics +1612.05378 Optics +1612.05379 Fluid Dynamics +1612.05380 +1612.05381 Combinatorics +1612.05382 Number Theory +1612.05385 Strongly Correlated Electrons +1612.05386 Computer Vision and Pattern Recognition +1612.05387 Combinatorics +1612.05388 Chemical Physics +1612.05389 Dynamical Systems +1612.05392 Functional Analysis +1612.05393 History and Overview +1612.05398 Chemical Physics +1612.05399 Materials Science +1612.05400 Computer Vision and Pattern Recognition +1612.05402 Information Theory +1612.05403 Symbolic Computation +1612.05404 Computational Physics +1612.05405 Astrophysics of Galaxies +1612.05407 Algebraic Topology +1612.05408 Analysis of PDEs +1612.05409 Probability +1612.05410 Functional Analysis +1612.05411 Atomic Physics +1612.05412 Functional Analysis +1612.05414 Solar and Stellar Astrophysics +1612.05415 Soft Condensed Matter +1612.05417 +1612.05419 Data Structures and Algorithms +1612.05420 Computation and Language +1612.05421 Strongly Correlated Electrons +1612.05422 Computational Physics +1612.05424 Computer Vision and Pattern Recognition +1612.05426 Methodology +1612.05428 Phenomenology +1612.05429 Soft Condensed Matter +1612.05431 Phenomenology +1612.05432 Sound +1612.05433 +1612.05434 Geometric Topology +1612.05435 Probability +1612.05436 Phenomenology +1612.05437 Lattice +1612.05438 Number Theory +1612.05439 Theory +1612.05442 Dynamical Systems +1612.05443 Analysis of PDEs +1612.05444 Instrumentation and Detectors +1612.05445 Statistics Theory +1612.05446 +1612.05447 Information Theory +1612.05448 +1612.05449 Algebraic Geometry +1612.05450 Biological Physics +1612.05451 Solar and Stellar Astrophysics +1612.05453 Phenomenology +1612.05454 Superconductivity +1612.05455 Classical Analysis and ODEs +1612.05456 Logic in Computer Science +1612.05457 Logic in Computer Science +1612.05458 Spectral Theory +1612.05461 Information Theory +1612.05462 Methodology +1612.05463 Populations and Evolution +1612.05464 +1612.05465 Earth and Planetary Astrophysics +1612.05467 Atomic Physics +1612.05468 Logic +1612.05469 Statistical Mechanics +1612.05470 +1612.05471 Astrophysics of Galaxies +1612.05473 Phenomenology +1612.05474 Data Structures and Algorithms +1612.05475 Experiment +1612.05477 Distributed, Parallel, and Cluster Computing +1612.05479 Medical Physics +1612.05481 Theory +1612.05482 Fluid Dynamics +1612.05484 +1612.05485 Phenomenology +1612.05488 Instrumentation and Detectors +1612.05489 Sound +1612.05490 Experiment +1612.05493 Classical Analysis and ODEs +1612.05495 Number Theory +1612.05496 Numerical Analysis +1612.05498 General Physics +1612.05499 Classical Physics +1612.05501 Computation +1612.05502 Learning +1612.05503 Phenomenology +1612.05504 Differential Geometry +1612.05506 Information Theory +1612.05507 Instrumentation and Detectors +1612.05508 Optimization and Control +1612.05511 +1612.05515 Computer Vision and Pattern Recognition +1612.05517 +1612.05518 Symbolic Computation +1612.05521 General Mathematics +1612.05522 Commutative Algebra +1612.05523 Information Theory +1612.05524 Dynamical Systems +1612.05525 General Finance +1612.05528 Spectral Theory +1612.05529 Atomic Physics +1612.05530 Populations and Evolution +1612.05531 Data Structures and Algorithms +1612.05532 Physics and Society +1612.05536 Discrete Mathematics +1612.05537 Networking and Internet Architecture +1612.05538 Theory +1612.05541 Probability +1612.05542 +1612.05543 Performance +1612.05544 Optics +1612.05545 Quantum Gases +1612.05546 Solar and Stellar Astrophysics +1612.05547 Hardware Architecture +1612.05548 Phenomenology +1612.05549 Operator Algebras +1612.05551 Numerical Analysis +1612.05552 Systems and Control +1612.05554 +1612.05558 Phenomenology +1612.05559 Materials Science +1612.05561 Phenomenology +1612.05565 Cosmology and Nongalactic Astrophysics +1612.05566 Databases +1612.05567 +1612.05568 Cryptography and Security +1612.05570 +1612.05571 Neural and Evolutionary Computing +1612.05572 Cryptography and Security +1612.05574 Plasma Physics +1612.05576 Optics +1612.05577 Plasma Physics +1612.05578 +1612.05581 Computational Physics +1612.05583 Analysis of PDEs +1612.05584 Numerical Analysis +1612.05588 +1612.05590 Theory +1612.05592 History and Overview +1612.05593 +1612.05594 Systems and Control +1612.05595 Strongly Correlated Electrons +1612.05597 Strongly Correlated Electrons +1612.05600 Chemical Physics +1612.05601 Computer Vision and Pattern Recognition +1612.05602 +1612.05603 +1612.05606 Numerical Analysis +1612.05607 Optics +1612.05608 +1612.05609 Phenomenology +1612.05610 Materials Science +1612.05611 Disordered Systems and Neural Networks +1612.05612 Statistics Theory +1612.05613 Mesoscale and Nanoscale Physics +1612.05615 Astrophysics of Galaxies +1612.05618 Strongly Correlated Electrons +1612.05619 Complex Variables +1612.05621 Instrumentation and Detectors +1612.05622 +1612.05623 Data Structures and Algorithms +1612.05625 +1612.05626 Computers and Society +1612.05627 Learning +1612.05629 +1612.05631 Quantum Gases +1106.3503 Statistics Theory +1108.0918 Atomic and Molecular Clusters +1110.6207 Combinatorics +1202.6211 Atomic and Molecular Clusters +1202.6496 Atomic and Molecular Clusters +1203.4871 Statistics Theory +1204.1228 Combinatorics +1206.5105 Atomic and Molecular Clusters +1208.4537 +1211.0627 Combinatorics +1305.5968 Logic in Computer Science +1306.5934 Quantum Gases +1307.3514 Atomic and Molecular Clusters +1310.7260 Probability +1312.0538 Applications +1312.6388 Algebraic Geometry +1401.0744 Differential Geometry +1401.1625 Combinatorics +1402.0881 Strongly Correlated Electrons +1402.4886 Combinatorics +1403.7614 Algebraic Geometry +1405.2561 Chemical Physics +1405.3001 Combinatorics +1405.3062 Geometric Topology +1405.3329 Analysis of PDEs +1405.4713 Information Theory +1406.0120 Number Theory +1407.1739 +1408.4490 Data Structures and Algorithms +1408.6627 Algebraic Geometry +1409.1546 +1409.3901 Computation +1409.5580 +1409.8637 Combinatorics +1410.6692 Number Theory +1410.8202 Computational Complexity +1411.7245 Optimization and Control +1412.2445 Probability +1412.3606 Algebraic Topology +1412.5403 +1412.5457 Atomic and Molecular Clusters +1412.5530 Atomic and Molecular Clusters +1501.03030 Operator Algebras +1501.07446 Geometric Topology +1502.00238 Programming Languages +1502.05286 General Physics +1503.05729 Algebraic Geometry +1503.08615 Spectral Theory +1503.08740 Differential Geometry +1504.00646 Materials Science +1504.01842 Programming Languages +1504.01971 Materials Science +1505.00861 Probability +1505.06931 Numerical Analysis +1505.06957 Computer Vision and Pattern Recognition +1505.07954 Information Theory +1506.02605 Probability +1506.04440 Number Theory +1506.05165 Number Theory +1506.06434 Algebraic Geometry +1506.08732 +1507.00336 Phenomenology +1507.01513 Symplectic Geometry +1507.02025 Economics +1507.03423 Chemical Physics +1507.04415 Methodology +1507.04661 Differential Geometry +1507.06523 +1507.08964 +1508.04183 +1508.05117 Computational Complexity +1508.07226 Theory +1509.00327 Combinatorics +1509.01404 Numerical Analysis +1509.05912 Classical Analysis and ODEs +1509.06942 Combinatorics +1509.07000 Differential Geometry +1510.03948 Superconductivity +1510.04366 Combinatorics +1510.05701 +1510.05731 Complex Variables +1510.05780 Dynamical Systems +1510.06790 Classical Analysis and ODEs +1510.07606 Analysis of PDEs +1510.07817 +1510.07860 Dynamical Systems +1511.00300 High Energy Astrophysical Phenomena +1511.00548 Group Theory +1511.01506 Cosmology and Nongalactic Astrophysics +1511.02868 Strongly Correlated Electrons +1511.03866 +1511.04406 Plasma Physics +1511.05219 Machine Learning +1511.05491 Statistics Theory +1511.07052 Analysis of PDEs +1511.07833 Dynamical Systems +1511.08577 Analysis of PDEs +1512.00695 Molecular Networks +1512.02437 Algebraic Geometry +1512.03081 Machine Learning +1512.04061 Soft Condensed Matter +1512.06544 Soft Condensed Matter +1512.06899 Probability +1512.06928 Experiment +1512.07334 +1512.08713 +1512.09187 Atmospheric and Oceanic Physics +1601.00800 +1601.01779 Commutative Algebra +1601.02233 +1601.02817 Optimization and Control +1601.03759 Probability +1601.05408 Methodology +1602.00146 +1602.01698 Phenomenology +1602.03399 Number Theory +1602.03782 Fluid Dynamics +1602.05371 +1602.05730 Theory +1602.07541 Rings and Algebras +1603.01316 Performance +1603.01871 Applications +1603.03385 Phenomenology +1603.05602 Phenomenology +1603.05911 Cosmology and Nongalactic Astrophysics +1603.06389 Pricing of Securities +1603.07916 Mathematical Software +1603.07993 Theory +1603.08465 Differential Geometry +1603.09049 Computational Finance +1604.00593 Fluid Dynamics +1604.01654 Optimization and Control +1604.02289 Astrophysics of Galaxies +1604.06916 +1604.06960 Solar and Stellar Astrophysics +1604.07770 Physics Education +1604.08428 Statistics Theory +1605.00492 Mathematical Software +1605.01100 Cosmology and Nongalactic Astrophysics +1605.01390 Strongly Correlated Electrons +1605.03524 Combinatorics +1605.03554 Theory +1605.04411 Functional Analysis +1605.04535 Algebraic Geometry +1605.05651 Atomic Physics +1605.05899 Statistics Theory +1605.06034 Operator Algebras +1605.07489 Superconductivity +1605.08382 Number Theory +1605.08957 Theory +1605.09552 Optics +1606.01032 Solar and Stellar Astrophysics +1606.01146 Astrophysics of Galaxies +1606.01200 Applications +1606.03158 +1606.04010 Methodology +1606.05536 Cosmology and Nongalactic Astrophysics +1606.05588 Cosmology and Nongalactic Astrophysics +1606.05595 Statistical Mechanics +1606.06203 Optics +1606.06391 Adaptation and Self-Organizing Systems +1606.06502 Phenomenology +1606.08721 Optimization and Control +1606.09115 Physics and Society +1606.09149 Solar and Stellar Astrophysics +1606.09612 Numerical Analysis +1607.00228 High Energy Astrophysical Phenomena +1607.00324 Symplectic Geometry +1607.01001 Phenomenology +1607.01211 Strongly Correlated Electrons +1607.01638 Phenomenology +1607.02530 Mesoscale and Nanoscale Physics +1607.04972 Experiment +1607.05118 Classical Analysis and ODEs +1607.05205 Statistical Mechanics +1607.06245 High Energy Astrophysical Phenomena +1607.06285 Populations and Evolution +1607.07429 Human-Computer Interaction +1607.08065 Solar and Stellar Astrophysics +1607.08080 Earth and Planetary Astrophysics +1607.08262 Symplectic Geometry +1608.00528 Methodology +1608.00642 Phenomenology +1608.00872 Experiment +1608.01336 Phenomenology +1608.01442 Optics +1608.03110 Plasma Physics +1608.03114 Mesoscale and Nanoscale Physics +1608.03206 High Energy Astrophysical Phenomena +1608.04194 Phenomenology +1608.04796 Materials Science +1608.04834 Numerical Analysis +1608.04907 Strongly Correlated Electrons +1608.05334 Phenomenology +1608.05836 Combinatorics +1608.06181 Functional Analysis +1608.06327 Functional Analysis +1608.07009 Strongly Correlated Electrons +1608.07408 Solar and Stellar Astrophysics +1608.07553 Geophysics +1608.08182 Learning +1608.08763 Analysis of PDEs +1608.08826 Soft Condensed Matter +1609.00077 Strongly Correlated Electrons +1609.00118 Logic in Computer Science +1609.00409 Operator Algebras +1609.00832 Information Theory +1609.00853 Combinatorics +1609.00879 +1609.00994 Quantum Algebra +1609.01108 +1609.01113 +1609.01347 Theory +1609.01471 Astrophysics of Galaxies +1609.02735 Solar and Stellar Astrophysics +1609.02749 Materials Science +1609.03673 Geometric Topology +1609.03682 Numerical Analysis +1609.04885 Optimization and Control +1609.05034 Discrete Mathematics +1609.05095 Plasma Physics +1609.05309 Atomic Physics +1609.06116 Superconductivity +1609.06352 Instrumentation and Methods for Astrophysics +1609.06453 Fluid Dynamics +1609.06833 Pattern Formation and Solitons +1609.07604 Operator Algebras +1609.07654 Optimization and Control +1609.08516 +1610.00075 Analysis of PDEs +1610.00760 Human-Computer Interaction +1610.01085 Artificial Intelligence +1610.01112 Learning +1610.01149 Statistical Finance +1610.01154 High Energy Astrophysical Phenomena +1610.01185 Logic in Computer Science +1610.01268 +1610.01298 +1610.01424 Methodology +1610.01430 Neural and Evolutionary Computing +1610.01438 Dynamical Systems +1610.01452 Instrumentation and Methods for Astrophysics +1610.01537 Other Statistics +1610.01592 Numerical Analysis +1610.01593 +1610.01595 Astrophysics of Galaxies +1610.01599 Cosmology and Nongalactic Astrophysics +1610.01603 High Energy Astrophysical Phenomena +1610.01616 High Energy Astrophysical Phenomena +1610.01620 Theory +1610.01621 Commutative Algebra +1610.01627 Astrophysics of Galaxies +1610.01628 +1610.01630 Networking and Internet Architecture +1610.01631 Optics +1610.01633 Applications +1610.01635 Probability +1610.01636 Medical Physics +1610.01637 Probability +1610.01639 Phenomenology +1610.01642 Machine Learning +1610.01643 Earth and Planetary Astrophysics +1610.01645 General Finance +1610.01646 Theory +1610.01647 Theory +1610.01648 Differential Geometry +1610.01649 Differential Geometry +1610.01650 Logic +1610.01651 Fluid Dynamics +1610.01653 Analysis of PDEs +1610.01656 Chaotic Dynamics +1610.01660 Numerical Analysis +1610.01661 Instrumentation and Methods for Astrophysics +1610.01664 +1610.01670 Computers and Society +1610.01671 Optics +1610.01673 Materials Science +1610.01674 Populations and Evolution +1610.01676 Combinatorics +1610.01677 Solar and Stellar Astrophysics +1610.01678 Fluid Dynamics +1610.01679 Earth and Planetary Astrophysics +1610.01680 Analysis of PDEs +1610.01681 Algebraic Topology +1610.01683 Machine Learning +1610.01684 Physics and Society +1610.01685 Robotics +1610.01686 Combinatorics +1610.01687 Computer Science and Game Theory +1610.01689 Number Theory +1610.01691 Graphics +1610.01692 +1610.01693 Optics +1610.01694 Computational Physics +1610.01696 +1610.01697 Methodology +1610.01698 Machine Learning +1610.01699 +1610.01703 Analysis of PDEs +1610.01704 Neurons and Cognition +1610.01708 Computer Vision and Pattern Recognition +1610.01709 High Energy Astrophysical Phenomena +1610.01710 +1610.01712 Learning +1610.01713 Computation and Language +1610.01714 Mesoscale and Nanoscale Physics +1610.01715 Analysis of PDEs +1610.01716 +1610.01717 Tissues and Organs +1610.01720 Computation and Language +1610.01721 Analysis of PDEs +1610.01722 Formal Languages and Automata Theory +1610.01723 Information Theory +1610.01724 Optics +1610.01727 +1610.01729 Analysis of PDEs +1610.01732 Computer Vision and Pattern Recognition +1610.01734 Cryptography and Security +1610.01735 Differential Geometry +1610.01737 Mesoscale and Nanoscale Physics +1610.01738 Fluid Dynamics +1610.01740 History and Philosophy of Physics +1610.01741 Learning +1610.01744 Theory +1610.01746 Computational Physics +1610.01747 Statistics Theory +1610.01748 Strongly Correlated Electrons +1610.01749 Information Theory +1610.01750 Logic +1610.01752 Phenomenology +1610.01753 Discrete Mathematics +1610.01754 +1610.01756 Mesoscale and Nanoscale Physics +1610.01757 Learning +1610.01758 Materials Science +1610.01759 Pattern Formation and Solitons +1610.01760 Logic +1610.01762 Mesoscale and Nanoscale Physics +1610.01763 +1610.01764 +1610.01768 Computer Science and Game Theory +1610.01770 Geometric Topology +1610.01772 Mesoscale and Nanoscale Physics +1610.01773 Algebraic Geometry +1610.01774 Mesoscale and Nanoscale Physics +1610.01776 Materials Science +1610.01777 Space Physics +1610.01779 Representation Theory +1610.01781 Astrophysics of Galaxies +1610.01782 Differential Geometry +1610.01783 Data Analysis, Statistics and Probability +1610.01784 Distributed, Parallel, and Cluster Computing +1610.01787 Analysis of PDEs +1610.01789 Materials Science +1610.01790 Social and Information Networks +1610.01792 Group Theory +1610.01793 Dynamical Systems +1610.01795 Computer Vision and Pattern Recognition +1610.01796 Classical Analysis and ODEs +1610.01797 Sound +1610.01800 Rings and Algebras +1610.01801 Computer Vision and Pattern Recognition +1610.01804 Numerical Analysis +1610.01805 Algebraic Geometry +1610.01806 Fluid Dynamics +1610.01807 Distributed, Parallel, and Cluster Computing +1610.01808 +1610.01809 Materials Science +1610.01815 Strongly Correlated Electrons +1610.01816 Plasma Physics +1610.01819 Mesoscale and Nanoscale Physics +1610.01827 Cosmology and Nongalactic Astrophysics +1610.01828 Probability +1610.01832 Hardware Architecture +1610.01836 Spectral Theory +1610.01838 Computers and Society +1610.01840 Phenomenology +1610.01842 Operator Algebras +1610.01846 Analysis of PDEs +1610.01849 Neurons and Cognition +1610.01851 Classical Analysis and ODEs +1610.01852 Computer Vision and Pattern Recognition +1610.01855 +1610.01856 Exactly Solvable and Integrable Systems +1610.01857 Data Analysis, Statistics and Probability +1610.01858 Computation and Language +1610.01859 Numerical Analysis +1610.01860 Algebraic Geometry +1610.01861 Computer Science and Game Theory +1610.01862 Representation Theory +1610.01863 Combinatorics +1610.01864 Strongly Correlated Electrons +1610.01865 Data Structures and Algorithms +1610.01866 Strongly Correlated Electrons +1610.01867 Instrumentation and Methods for Astrophysics +1610.01869 Methodology +1610.01872 Dynamical Systems +1610.01874 Computation and Language +1610.01875 +1610.01876 Data Structures and Algorithms +1610.01877 Earth and Planetary Astrophysics +1610.01878 Numerical Analysis +1610.01880 Phenomenology +1610.01881 Rings and Algebras +1610.01883 General Topology +1610.01884 Instrumentation and Methods for Astrophysics +1610.01888 Differential Geometry +1610.01889 Methodology +1610.01890 Phenomenology +1610.01891 Computation and Language +1610.01892 Optimization and Control +1610.01894 Neurons and Cognition +1610.01895 Statistics Theory +1610.01896 Systems and Control +1610.01898 Neurons and Cognition +1610.01900 Computer Science and Game Theory +1610.01901 Information Retrieval +1610.01902 Computer Science and Game Theory +1610.01903 Mesoscale and Nanoscale Physics +1610.01905 Adaptation and Self-Organizing Systems +1610.01907 +1610.01908 Combinatorics +1610.01909 Phenomenology +1610.01910 Computation and Language +1610.01911 Probability +1610.01913 Strongly Correlated Electrons +1610.01919 Soft Condensed Matter +1610.01921 Materials Science +1610.01924 Medical Physics +1610.01929 Computer Science and Game Theory +1610.01930 Algebraic Topology +1610.01931 Lattice +1610.01935 Neural and Evolutionary Computing +1610.01937 Trading and Market Microstructure +1610.01938 Probability +1610.01943 Number Theory +1610.01946 Computational Finance +1610.01948 Strongly Correlated Electrons +1610.01949 Biomolecules +1610.01950 Analysis of PDEs +1610.01952 Numerical Analysis +1610.01953 Computers and Society +1610.01954 Classical Analysis and ODEs +1610.01955 Multimedia +1610.01957 +1610.01959 Data Structures and Algorithms +1610.01960 Plasma Physics +1610.01962 Complex Variables +1610.01964 Number Theory +1610.01965 Functional Analysis +1610.01968 +1610.01970 Optimization and Control +1610.01971 Systems and Control +1610.01972 Optimization and Control +1610.01973 Systems and Control +1610.01975 Differential Geometry +1610.01976 Differential Geometry +1610.01978 Functional Analysis +1610.01979 Geometric Topology +1610.01980 Data Structures and Algorithms +1610.01981 Number Theory +1610.01982 Information Theory +1610.01986 Learning +1610.01987 Combinatorics +1610.01989 Learning +1610.01992 Soft Condensed Matter +1610.01995 Materials Science +1610.01996 Phenomenology +1610.01997 Functional Analysis +1610.01998 +1610.01999 Analysis of PDEs +1610.02001 Optics +1610.02002 Quantum Gases +1610.02003 Computation and Language +1610.02005 Materials Science +1610.02006 Number Theory +1610.02007 Plasma Physics +1610.02009 Differential Geometry +1610.02011 Instrumentation and Detectors +1610.02013 Mesoscale and Nanoscale Physics +1610.02016 Neurons and Cognition +1610.02019 Statistical Mechanics +1610.02020 +1610.02022 Information Theory +math/0201253 Combinatorics +math/0608095 General Mathematics +1611.03379 Emerging Technologies +0810.0558 Data Structures and Algorithms +0905.2621 Category Theory +0906.2364 Algebraic Geometry +0909.1680 +1006.3064 Analysis of PDEs +1012.0145 Analysis of PDEs +1109.3524 Computational Engineering, Finance, and Science +1109.6535 Computational Geometry +1110.5950 +1111.2749 Representation Theory +1201.0418 Statistics Theory +1202.4399 Combinatorics +1203.4516 +1203.5859 Classical Analysis and ODEs +1204.1565 Number Theory +1206.1547 Statistical Mechanics +1207.0697 Cosmology and Nongalactic Astrophysics +1207.1159 Algebraic Geometry +1207.3656 Earth and Planetary Astrophysics +1208.4019 Algebraic Geometry +1208.5102 +1210.5855 Functional Analysis +1210.7245 +1211.2721 Biomolecules +1301.0091 Probability +1301.2756 Differential Geometry +1301.4139 +1302.0871 Algebraic Geometry +1303.2147 Computer Science and Game Theory +1305.6634 Data Analysis, Statistics and Probability +1306.2181 Algebraic Geometry +1306.2348 +1307.4621 Statistics Theory +1307.6530 Probability +1308.0901 +1308.1138 Logic in Computer Science +1310.2012 Combinatorics +1310.7464 Solar and Stellar Astrophysics +1310.8635 Number Theory +1311.2610 Applications +1311.3320 Algebraic Geometry +1311.6660 Solar and Stellar Astrophysics +1312.1354 Cosmology and Nongalactic Astrophysics +1312.6932 Differential Geometry +1401.4736 Algebraic Geometry +1402.5816 Metric Geometry +1402.5876 Machine Learning +1402.6407 Databases +1403.5775 +1403.7399 Algebraic Geometry +1404.1500 +1404.4197 Populations and Evolution +1404.4957 Algebraic Geometry +1404.7210 +1405.1828 Logic +1405.3416 Group Theory +1405.3561 Computational Finance +1405.5124 Statistical Mechanics +1406.1451 Algebraic Geometry +1406.3527 Chaotic Dynamics +1406.3593 Statistical Mechanics +1406.3825 Chemical Physics +1406.5358 Combinatorics +1406.6662 Combinatorics +1407.4156 Analysis of PDEs +1407.6283 Algebraic Topology +1407.6810 Learning +1408.1279 Number Theory +1408.1813 Solar and Stellar Astrophysics +1408.6703 Combinatorics +1409.5915 Algebraic Geometry +1410.7803 Algebraic Geometry +1411.0023 Learning +1411.0586 Probability +1411.0733 Tissues and Organs +1411.1338 +1411.5896 Differential Geometry +1411.6907 Other Computer Science +1412.1755 +1412.3673 Algebraic Geometry +1412.4320 Databases +1412.7095 Fluid Dynamics +1412.7744 Algebraic Geometry +1412.7778 Methodology +1501.03017 Statistical Mechanics +1501.07331 Materials Science +1502.02174 +1502.02518 Number Theory +1502.03766 Rings and Algebras +1502.05041 Genomics +1502.06748 Atomic Physics +1503.03393 Statistics Theory +1503.03726 Risk Management +1503.03815 Quantitative Methods +1503.08079 Geometric Topology +1503.08150 Biological Physics +1503.08561 Phenomenology +1503.08747 +1504.00316 Distributed, Parallel, and Cluster Computing +1504.01046 Machine Learning +1504.01334 Strongly Correlated Electrons +1504.05548 Algebraic Geometry +1504.08252 Logic +1505.00769 Information Theory +1505.01101 Fluid Dynamics +1505.01116 +1505.01798 Numerical Analysis +1505.01801 Numerical Analysis +1505.02078 Soft Condensed Matter +1505.02453 Analysis of PDEs +1505.02673 Soft Condensed Matter +1505.02713 Symplectic Geometry +1505.03004 Strongly Correlated Electrons +1505.03086 Algebraic Geometry +1505.04390 +1505.04682 +1505.07236 Analysis of PDEs +1505.07575 Superconductivity +1505.07730 Instrumentation and Detectors +1506.00101 +1506.00594 Soft Condensed Matter +1506.02260 Theory +1506.02269 Algebraic Topology +1506.02418 Quantum Gases +1506.02587 +1506.03511 Algebraic Geometry +1506.03606 Numerical Analysis +1506.05275 Methodology +1506.05901 Differential Geometry +1506.07038 Mesoscale and Nanoscale Physics +1506.07287 +1506.08373 Superconductivity +1506.08435 Numerical Analysis +1506.08604 High Energy Astrophysical Phenomena +1506.08951 +1507.00455 Probability +1507.00650 Networking and Internet Architecture +1507.01430 Optimization and Control +1507.02331 Cryptography and Security +1507.02731 Optimization and Control +1507.02942 Group Theory +1507.06194 +1507.06496 Computation +1507.06900 Information Theory +1507.07519 Soft Condensed Matter +1507.07619 Algebraic Geometry +1507.07928 Phenomenology +1508.00211 Number Theory +1508.00707 Theory +1508.01166 Fluid Dynamics +1508.01729 +1508.02092 Probability +1508.02602 Theory +1508.02933 Machine Learning +1508.03259 Soft Condensed Matter +1508.03283 Numerical Analysis +1508.03390 Learning +1508.03448 Optimization and Control +1508.03676 Phenomenology +1508.03983 +1508.04214 Numerical Analysis +1508.06118 Algebraic Topology +1508.06309 Populations and Evolution +1508.06667 Theory +1509.00071 Analysis of PDEs +1509.01018 Data Structures and Algorithms +1509.02346 +1509.02743 Number Theory +1509.03777 Populations and Evolution +1509.05320 Geometric Topology +1509.06157 +1509.06351 Statistical Mechanics +1509.06670 Number Theory +1509.06888 +1509.07287 +1509.07313 Social and Information Networks +1509.07584 Category Theory +1509.08137 +1509.08877 Phenomenology +1509.09233 +1510.00049 +1510.00219 +1510.00425 Soft Condensed Matter +1510.01228 +1510.01426 Mesoscale and Nanoscale Physics +1510.01451 Strongly Correlated Electrons +1510.02224 Classical Analysis and ODEs +1510.02516 Neural and Evolutionary Computing +1510.02877 Information Theory +1510.03764 Experiment +1510.04621 Algebraic Geometry +1510.05371 Strongly Correlated Electrons +1510.05475 Theory +1510.05850 Molecular Networks +1510.06017 Populations and Evolution +1510.06454 Information Theory +1510.06724 Classical Physics +1510.07301 Number Theory +1510.07762 Strongly Correlated Electrons +1510.08042 Theory +1510.08303 Quantum Gases +1510.08365 Theory +1510.08843 Theory +1510.08846 Theory +1510.09073 Populations and Evolution +1511.00302 Classical Analysis and ODEs +1511.01267 +1511.01407 Experiment +1511.01544 Quantum Gases +1511.01562 Numerical Analysis +1511.02057 Dynamical Systems +1511.02283 Computer Vision and Pattern Recognition +1511.02336 Phenomenology +1511.02684 Physics Education +1511.02841 Computer Vision and Pattern Recognition +1511.03133 Algebraic Geometry +1511.03416 Computer Vision and Pattern Recognition +1511.03918 Soft Condensed Matter +1511.04164 Computer Vision and Pattern Recognition +1511.04166 Computer Vision and Pattern Recognition +1511.04273 Computer Vision and Pattern Recognition +1511.05289 Quantum Gases +1511.05298 Computer Vision and Pattern Recognition +1511.05776 Atomic Physics +1511.06159 Fluid Dynamics +1511.07579 Differential Geometry +1511.07811 Materials Science +1511.07885 Strongly Correlated Electrons +1511.08164 Algebraic Geometry +1511.08296 Solar and Stellar Astrophysics +1511.08426 +1511.08436 Mesoscale and Nanoscale Physics +1512.00292 Superconductivity +1512.00926 Number Theory +1512.01316 Phenomenology +1512.01815 Computer Vision and Pattern Recognition +1512.02407 Materials Science +1512.02584 +1512.03051 +1512.03305 Combinatorics +1512.03325 Cosmology and Nongalactic Astrophysics +1512.03526 Computer Vision and Pattern Recognition +1512.03758 Number Theory +1512.04408 Strongly Correlated Electrons +1512.05193 Computation and Language +1512.05227 Computer Vision and Pattern Recognition +1512.05338 Other Computer Science +1512.06538 +1512.06976 Phenomenology +1512.07468 Phenomenology +1512.07711 Computer Vision and Pattern Recognition +1512.08335 Statistical Mechanics +1512.08347 Computation and Language +1512.08438 Statistical Mechanics +1601.00048 Mesoscale and Nanoscale Physics +1601.00430 Astrophysics of Galaxies +1601.00587 Solar and Stellar Astrophysics +1601.02769 Combinatorics +1601.02876 +1601.03223 Phenomenology +1601.03307 Geometric Topology +1601.04149 Computer Vision and Pattern Recognition +1601.04168 Logic +1601.04708 Theory +1601.05709 Optimization and Control +1601.06018 Strongly Correlated Electrons +1601.06070 Computer Vision and Pattern Recognition +1601.06083 +1601.06690 +1601.07154 Physics and Society +1602.00033 Databases +1602.00271 Superconductivity +1602.00304 Analysis of PDEs +1602.00475 Phenomenology +1602.00552 Phenomenology +1602.00964 Theory +1602.01660 Classical Analysis and ODEs +1602.01804 Computers and Society +1602.02579 Quantum Gases +1602.03248 Strongly Correlated Electrons +1602.03712 Analysis of PDEs +1602.05094 Algebraic Geometry +1602.05133 +1602.05297 Materials Science +1602.05403 +1602.06429 Machine Learning +1602.06914 Algebraic Geometry +1602.06991 Metric Geometry +1602.07487 +1602.07807 Databases +1602.07989 +1602.08615 Information Theory +1602.08713 Classical Analysis and ODEs +1602.08753 Machine Learning +1603.01365 +1603.01440 Combinatorics +1603.02368 Combinatorics +1603.03175 +1603.03230 Experiment +1603.03359 Optimization and Control +1603.03911 Computer Vision and Pattern Recognition +1603.03975 Exactly Solvable and Integrable Systems +1603.05884 Phenomenology +1603.06245 Numerical Analysis +1603.06412 Dynamical Systems +1603.06610 Numerical Analysis +1603.07057 Computer Vision and Pattern Recognition +1603.07078 Instrumentation and Methods for Astrophysics +1603.07593 Machine Learning +1603.07824 Atomic Physics +1603.07944 Instrumentation and Methods for Astrophysics +1603.07976 Theory +1603.08306 Theory +1603.08754 Computer Vision and Pattern Recognition +1603.08895 Computer Vision and Pattern Recognition +1603.09088 Methodology +1603.09107 Theory +1603.09148 Combinatorics +1603.09603 Differential Geometry +1604.00123 Phenomenology +1604.00482 +1604.00644 Neural and Evolutionary Computing +1604.00726 Algebraic Geometry +1604.01158 Theory +1604.01355 Instrumentation and Methods for Astrophysics +1604.01670 Quantum Algebra +1604.01761 Number Theory +1604.01763 Classical Physics +1604.01813 Optimization and Control +1604.02449 Probability +1604.02450 Data Structures and Algorithms +1604.02453 Materials Science +1604.02454 Populations and Evolution +1604.02463 Materials Science +1604.02465 Astrophysics of Galaxies +1604.02468 Information Theory +1604.02469 Computer Vision and Pattern Recognition +1604.02476 Analysis of PDEs +1604.02480 Programming Languages +1604.02481 Phenomenology +1604.02484 History and Overview +1604.02485 Computer Vision and Pattern Recognition +1604.02486 Discrete Mathematics +1604.02487 Genomics +1604.02488 Computer Vision and Pattern Recognition +1604.02489 Dynamical Systems +1604.02494 Optimization and Control +1604.02496 Soft Condensed Matter +1604.02497 Number Theory +1604.02500 Optimization and Control +1604.02501 Solar and Stellar Astrophysics +1604.02503 Classical Analysis and ODEs +1604.02508 Fluid Dynamics +1604.02509 Artificial Intelligence +1604.02510 Geometric Topology +1604.02511 Information Theory +1604.02512 Genomics +1604.02515 Optics +1604.02517 Information Theory +1604.02518 Information Theory +1604.02519 Information Theory +1604.02522 Computers and Society +1604.02526 Networking and Internet Architecture +1604.02527 Optimization and Control +1604.02528 Mathematical Software +1604.02529 Number Theory +1604.02531 Computer Vision and Pattern Recognition +1604.02533 Distributed, Parallel, and Cluster Computing +1604.02534 Materials Science +1604.02535 Instrumentation and Detectors +1604.02536 Instrumentation and Detectors +1604.02539 Operator Algebras +1604.02543 Solar and Stellar Astrophysics +1604.02544 +1604.02546 Computer Vision and Pattern Recognition +1604.02557 Computational Complexity +1604.02558 Classical Analysis and ODEs +1604.02566 High Energy Astrophysical Phenomena +1604.02580 Information Retrieval +1604.02593 Instrumentation and Detectors +1604.02594 Learning +1604.02595 Superconductivity +1604.02596 Probability +1604.02598 Methodology +1604.02600 Instrumentation and Methods for Astrophysics +1604.02602 Information Theory +1604.02603 Logic in Computer Science +1604.02604 Category Theory +1604.02605 Data Structures and Algorithms +1604.02608 Computers and Society +1604.02610 Social and Information Networks +1604.02612 Computation and Language +1604.02613 Geophysics +1604.02616 Numerical Analysis +1604.02617 Probability +1604.02624 Computational Physics +1604.02627 Algebraic Geometry +1604.02635 Complex Variables +1604.02636 Networking and Internet Architecture +1604.02637 +1604.02639 Optimization and Control +1604.02641 Fluid Dynamics +1604.02642 Methodology +1604.02644 Probability +1604.02645 Probability +1604.02647 Computer Vision and Pattern Recognition +1604.02648 Differential Geometry +1604.02649 Classical Analysis and ODEs +1604.02650 Instrumentation and Detectors +1604.02651 +1604.02652 Methodology +1604.02654 Algebraic Geometry +1604.02656 Earth and Planetary Astrophysics +1604.02657 Computer Vision and Pattern Recognition +1604.02660 Networking and Internet Architecture +1604.02665 Networking and Internet Architecture +1604.02668 Methodology +1604.02669 General Topology +1604.02670 Instrumentation and Methods for Astrophysics +1604.02671 Dynamical Systems +1604.02672 Rings and Algebras +1604.02673 Metric Geometry +1604.02674 Differential Geometry +1604.02676 Computer Science and Game Theory +1604.02677 Computer Vision and Pattern Recognition +1604.02678 Dynamical Systems +1604.02681 Probability +1604.02682 Functional Analysis +1604.02683 Information Theory +1604.02684 Algebraic Geometry +1604.02688 Geometric Topology +1604.02691 Data Structures and Algorithms +1604.02692 Earth and Planetary Astrophysics +1604.02693 Number Theory +1604.02694 Social and Information Networks +1604.02699 Quantitative Methods +1604.02700 Distributed, Parallel, and Cluster Computing +1604.02702 Statistics Theory +1604.02704 Multiagent Systems +1604.02710 Functional Analysis +1604.02711 Data Structures and Algorithms +1604.02714 Discrete Mathematics +1604.02715 Computer Vision and Pattern Recognition +1604.02720 Mesoscale and Nanoscale Physics +1604.02721 Mesoscale and Nanoscale Physics +1604.02723 Information Theory +1604.02724 Computation +1604.02725 Group Theory +1604.02726 Analysis of PDEs +1604.02727 Optimization and Control +1604.02729 Quantum Gases +1604.02731 Materials Science +1604.02733 Populations and Evolution +1604.02734 Cryptography and Security +1604.02737 Artificial Intelligence +1604.02738 Instrumentation and Methods for Astrophysics +1604.02741 Materials Science +1604.02743 +1604.02744 Analysis of PDEs +1604.02746 Combinatorics +1604.02749 Analysis of PDEs +1604.02754 Optics +1604.02755 Combinatorics +1604.02759 Trading and Market Microstructure +1604.02760 Geometric Topology +1604.02764 Representation Theory +1604.02765 Distributed, Parallel, and Cluster Computing +1604.02768 Differential Geometry +1604.02769 Information Theory +1604.02772 Differential Geometry +1604.02774 Artificial Intelligence +1604.02778 Multimedia +1604.02780 Artificial Intelligence +1604.02781 Information Theory +1604.02782 Cryptography and Security +1604.02784 Logic in Computer Science +1604.02786 +1604.02789 Classical Analysis and ODEs +1604.02790 Logic in Computer Science +1604.02791 Combinatorics +1604.02792 +1604.02793 Materials Science +1604.02797 Cryptography and Security +1604.02799 Accelerator Physics +1604.02801 Computer Vision and Pattern Recognition +1604.02805 Algebraic Geometry +1604.02808 Computer Vision and Pattern Recognition +1604.02812 Functional Analysis +1604.02813 Representation Theory +1604.02815 Computer Vision and Pattern Recognition +1604.02819 Materials Science +1604.02822 Number Theory +1604.02825 Information Theory +1604.02826 Complex Variables +1604.02827 Differential Geometry +1604.02829 Materials Science +1604.02830 Information Theory +1604.02833 Data Structures and Algorithms +1604.02835 Analysis of PDEs +1604.02838 Networking and Internet Architecture +1604.02839 Superconductivity +1604.02843 Computation and Language +1604.02844 Distributed, Parallel, and Cluster Computing +1604.02845 Algebraic Geometry +1604.02846 Functional Analysis +1604.02847 Networking and Internet Architecture +1604.02848 Materials Science +1604.02849 Instrumentation and Methods for Astrophysics +1604.02850 Differential Geometry +1604.02852 Information Theory +1604.02854 Mesoscale and Nanoscale Physics +1604.02858 Materials Science +1604.02860 Functional Analysis +1604.02862 Commutative Algebra +1604.02863 Rings and Algebras +1604.02865 Spectral Theory +1604.02867 Superconductivity +1604.02871 Functional Analysis +1604.02877 Optics +1604.02883 Social and Information Networks +1604.02890 Probability +1604.02896 Number Theory +1604.02897 Analysis of PDEs +1604.02900 Statistical Mechanics +1604.02902 Computer Vision and Pattern Recognition +1604.02904 Phenomenology +1604.02907 Networking and Internet Architecture +1604.02909 Quantitative Methods +1604.02912 +1604.02914 Systems and Control +1604.02919 Molecular Networks +1604.02920 Materials Science +1604.02925 Information Theory +1604.02926 Category Theory +1604.02928 Methodology +1604.02929 Physics and Society +1604.02930 Robotics +1604.02931 +1604.02932 Differential Geometry +1604.02933 Commutative Algebra +1604.02934 Robotics +1604.02935 Human-Computer Interaction +1604.02936 Differential Geometry +1604.02939 Algebraic Geometry +1604.02940 Mesoscale and Nanoscale Physics +1604.02941 Fluid Dynamics +1604.02945 Geometric Topology +1604.02948 Analysis of PDEs +1604.02949 Information Theory +1604.02950 Rings and Algebras +1604.02951 +1604.02958 Optics +1604.02959 Phenomenology +1604.02960 Information Theory +1604.02963 Fluid Dynamics +1604.02966 Physics Education +1604.02967 Information Theory +1604.02971 Networking and Internet Architecture +1604.02975 Computer Vision and Pattern Recognition +1604.02979 Computers and Society +1604.02980 Computers and Society +1604.02983 Differential Geometry +1604.02984 Analysis of PDEs +1604.02985 Materials Science +1604.02998 Materials Science +1604.03001 Cryptography and Security +1604.03002 Combinatorics +1604.03003 Systems and Control +1604.03004 Number Theory +1604.03005 Atomic Physics +1604.03008 Data Structures and Algorithms +1604.03009 Data Structures and Algorithms +1604.03010 Learning +1604.03012 Soft Condensed Matter +1604.03015 Number Theory +1604.03020 Programming Languages +1604.03021 Popular Physics +1604.03022 Dynamical Systems +1604.03024 Analysis of PDEs +1604.03029 Computation and Language +1604.03030 Data Structures and Algorithms +1604.03034 Learning +1604.03035 Computation and Language +1604.03037 History and Philosophy of Physics +1604.03040 Space Physics +1604.03041 Subcellular Processes +1604.03044 Computers and Society +1604.03047 Probability +1604.03050 Solar and Stellar Astrophysics +1604.03052 Quantitative Methods +1604.03054 Logic +1604.03056 Physics and Society +1604.03057 General Physics +1604.03063 Combinatorics +1604.03067 Algebraic Topology +1604.03069 Materials Science +1604.03074 Materials Science +1604.03075 Computer Vision and Pattern Recognition +1604.03079 Algebraic Geometry +1604.03081 Quantitative Methods +1604.03083 Emerging Technologies +1604.03087 Disordered Systems and Neural Networks +1604.03091 +1604.03092 Earth and Planetary Astrophysics +1604.03094 +math/0412558 General Topology +0704.4003 K-Theory and Homology +0709.0454 Geometric Topology +0709.2215 Geometric Topology +0803.1060 Differential Geometry +0803.1876 Geometric Topology +1008.2731 Differential Geometry +1010.3764 Differential Geometry +1012.5918 Metric Geometry +1102.0344 Differential Geometry +1104.0489 Computational Physics +1105.5046 Metric Geometry +1111.4586 +1205.0662 Metric Geometry +1208.1265 Cosmology and Nongalactic Astrophysics +1211.7080 Systems and Control +1212.0519 Earth and Planetary Astrophysics +1301.3510 Complex Variables +1301.5868 Representation Theory +1306.1363 +1311.3820 Quantum Gases +1311.4426 Quantum Gases +1311.4739 Disordered Systems and Neural Networks +1311.7275 +1312.5805 Optics +1312.7688 Software Engineering +1401.6622 +1402.1802 Quantitative Methods +1402.7237 Disordered Systems and Neural Networks +1403.5343 +1404.3311 Formal Languages and Automata Theory +1404.3944 Populations and Evolution +1404.4821 Distributed, Parallel, and Cluster Computing +1404.5567 Cosmology and Nongalactic Astrophysics +1405.0854 Logic in Computer Science +1405.3634 +1407.2759 Probability +1408.5767 Disordered Systems and Neural Networks +1410.1777 Probability +1411.0906 Digital Libraries +1411.2347 Strongly Correlated Electrons +1412.1663 Phenomenology +1501.00350 Representation Theory +1501.01977 Cosmology and Nongalactic Astrophysics +1502.02476 Learning +1502.06832 Combinatorics +1502.07739 +1502.07782 +1503.01479 +1503.04161 Statistics Theory +1503.04271 Instrumentation and Methods for Astrophysics +1503.04561 Solar and Stellar Astrophysics +1503.05564 Instrumentation and Methods for Astrophysics +1503.07343 Rings and Algebras +1504.00079 Analysis of PDEs +1504.03178 +1504.06217 Astrophysics of Galaxies +1504.06822 Probability +1505.01323 Probability +1505.06467 Number Theory +1506.01271 +1506.02169 Applications +1506.02473 Differential Geometry +1506.04011 Number Theory +1507.01230 Dynamical Systems +1507.03250 Data Analysis, Statistics and Probability +1507.03511 Populations and Evolution +1507.04720 Digital Libraries +1507.06066 Number Theory +1507.06990 Astrophysics of Galaxies +1508.03502 Materials Science +1508.03808 Methodology +1508.03865 Learning +1508.05558 +1508.07945 Statistical Mechanics +1509.01002 Strongly Correlated Electrons +1509.02015 Numerical Analysis +1509.02711 Physics and Society +1509.03303 History and Philosophy of Physics +1509.04418 Quantum Gases +1509.05101 +1509.05439 Number Theory +1509.06606 Solar and Stellar Astrophysics +1509.07039 +1509.07061 Phenomenology +1509.07110 Superconductivity +1509.07306 Cosmology and Nongalactic Astrophysics +1509.07468 Analysis of PDEs +1509.08082 Computer Vision and Pattern Recognition +1509.08745 Learning +1510.00292 Computation +1510.01102 Instrumentation and Detectors +1510.02213 +1510.02242 Differential Geometry +1510.06721 +1510.08716 Cosmology and Nongalactic Astrophysics +1511.01464 Phenomenology +1511.02926 Classical Analysis and ODEs +1511.03372 Mesoscale and Nanoscale Physics +1511.03423 Functional Analysis +1511.03676 Disordered Systems and Neural Networks +1511.04801 +1511.05957 Cryptography and Security +1511.06421 Learning +1511.07071 +1511.07812 Solar and Stellar Astrophysics +1511.08685 Quantum Gases +1511.09420 Theory +1512.00815 Experiment +1512.00927 Machine Learning +1512.01219 Astrophysics of Galaxies +1512.01615 Number Theory +1512.02774 Superconductivity +1512.02863 Computation +1512.03175 Materials Science +1512.04229 Materials Science +1512.05720 Mesoscale and Nanoscale Physics +1512.06587 Phenomenology +1512.06701 Theory +1512.06803 Quantum Gases +1512.07935 Differential Geometry +1601.00514 Probability +1601.03647 Phenomenology +1601.05357 Phenomenology +1601.06062 Computer Vision and Pattern Recognition +1601.06664 Networking and Internet Architecture +1601.07222 Instrumentation and Detectors +1602.01449 Data Analysis, Statistics and Probability +1602.01899 High Energy Astrophysical Phenomena +1602.02177 Chaotic Dynamics +1602.02513 +1602.04792 Computer Science and Game Theory +1602.05670 Physics and Society +1602.06156 Information Theory +1602.08383 Phenomenology +1603.00232 Instrumentation and Detectors +1603.00797 Computers and Society +1603.00941 Solar and Stellar Astrophysics +1603.00994 Superconductivity +1603.01457 +1603.01708 Distributed, Parallel, and Cluster Computing +1603.03325 Analysis of PDEs +1603.04098 Optimization and Control +1603.04860 Astrophysics of Galaxies +1603.05315 Systems and Control +1603.05331 Classical Analysis and ODEs +1603.05343 Neurons and Cognition +1603.05523 Metric Geometry +1603.05525 Metric Geometry +1603.05648 Instrumentation and Detectors +1603.05649 Instrumentation and Detectors +1603.05650 Instrumentation and Detectors +1603.05651 Accelerator Physics +1603.05671 Atomic Physics +1603.05673 Computation and Language +1603.05676 Complex Variables +1603.05679 Differential Geometry +1603.05680 Information Theory +1603.05681 +1603.05687 Astrophysics of Galaxies +1603.05693 Probability +1603.05695 Astrophysics of Galaxies +1603.05697 Differential Geometry +1603.05698 Classical Physics +1603.05699 Representation Theory +1603.05701 Networking and Internet Architecture +1603.05702 Category Theory +1603.05704 Combinatorics +1603.05707 Populations and Evolution +1603.05710 Systems and Control +1603.05714 +1603.05715 Data Structures and Algorithms +1603.05716 Classical Analysis and ODEs +1603.05718 Numerical Analysis +1603.05723 Analysis of PDEs +1603.05725 Group Theory +1603.05728 Complex Variables +1603.05730 Analysis of PDEs +1603.05731 High Energy Astrophysical Phenomena +1603.05732 Functional Analysis +1603.05733 Complex Variables +1603.05734 Earth and Planetary Astrophysics +1603.05736 Information Theory +1603.05738 Optimization and Control +1603.05739 Computation and Language +1603.05743 +1603.05745 Earth and Planetary Astrophysics +1603.05752 Networking and Internet Architecture +1603.05757 Operator Algebras +1603.05758 Methodology +1603.05759 +1603.05760 +1603.05762 Optimization and Control +1603.05763 Computer Vision and Pattern Recognition +1603.05764 Superconductivity +1603.05765 Algebraic Geometry +1603.05766 Applications +1603.05767 Optics +1603.05768 Quantum Algebra +1603.05769 Superconductivity +1603.05770 Machine Learning +1603.05772 Computer Vision and Pattern Recognition +1603.05775 Other Computer Science +1603.05778 +1603.05780 Mesoscale and Nanoscale Physics +1603.05782 Computer Vision and Pattern Recognition +1603.05784 Representation Theory +1603.05785 Analysis of PDEs +1603.05787 Rings and Algebras +1603.05788 Group Theory +1603.05791 Probability +1603.05793 Symplectic Geometry +1603.05799 Accelerator Physics +1603.05800 Learning +1603.05803 Combinatorics +1603.05808 Phenomenology +1603.05810 Number Theory +1603.05812 Classical Physics +1603.05819 Symbolic Computation +1603.05824 Neural and Evolutionary Computing +1603.05828 Social and Information Networks +1603.05836 +1603.05838 Differential Geometry +1603.05840 Optics +1603.05842 +1603.05845 Theory +1603.05850 Learning +1603.05851 Group Theory +1603.05855 Numerical Analysis +1603.05856 Astrophysics of Galaxies +1603.05858 Analysis of PDEs +1603.05865 Combinatorics +1603.05867 Numerical Analysis +1603.05868 Differential Geometry +1603.05873 Geometric Topology +1603.05874 +1603.05875 Computer Vision and Pattern Recognition +1603.05876 Optimization and Control +1603.05877 Mesoscale and Nanoscale Physics +1603.05880 Fluid Dynamics +1603.05883 Phenomenology +1603.05886 High Energy Astrophysical Phenomena +1603.05889 Probability +1603.05892 Soft Condensed Matter +1603.05894 Information Theory +1603.05898 Representation Theory +1603.05900 Optimization and Control +1603.05902 General Physics +1603.05904 General Physics +1603.05907 Space Physics +1603.05908 Optimization and Control +1603.05909 Group Theory +1603.05912 Representation Theory +1603.05915 Applications +1603.05916 Differential Geometry +1603.05917 Dynamical Systems +1603.05922 Distributed, Parallel, and Cluster Computing +1603.05925 Probability +1603.05930 Computer Vision and Pattern Recognition +1603.05932 Phenomenology +1603.05934 Tissues and Organs +1603.05936 Analysis of PDEs +1603.05939 Distributed, Parallel, and Cluster Computing +1603.05942 Social and Information Networks +1603.05943 +1603.05944 Computational Geometry +1603.05945 Data Structures and Algorithms +1603.05946 Analysis of PDEs +1603.05948 Number Theory +1603.05949 Probability +1603.05951 Systems and Control +1603.05955 Computer Vision and Pattern Recognition +1603.05957 Populations and Evolution +1603.05958 Phenomenology +1603.05962 Learning +1603.05964 Optics +1603.05965 General Physics +1603.05966 Optimization and Control +gr-qc/0506102 +math/0409396 Geometric Topology +math/0505462 Geometric Topology +0707.2348 Algebraic Geometry +0902.3133 Quantitative Methods +0902.3148 Quantitative Methods +1104.4879 Complex Variables +1110.1555 Symplectic Geometry +1110.4269 Differential Geometry +1111.1552 Algebraic Geometry +1112.3069 Algebraic Geometry +1204.1070 Classical Analysis and ODEs +1204.2568 Combinatorics +1204.2954 Differential Geometry +1204.2988 Differential Geometry +1204.5859 Logic in Computer Science +1205.1394 Representation Theory +1205.1646 Number Theory +1210.4634 Combinatorics +1301.6211 Number Theory +1301.7097 Number Theory +1302.1025 Symplectic Geometry +1303.5104 Numerical Analysis +1304.1034 +1304.2087 Complex Variables +1304.7448 Classical Analysis and ODEs +1305.2456 Combinatorics +1305.5996 Differential Geometry +1305.5997 Differential Geometry +1305.7509 Theory +1306.2429 Analysis of PDEs +1307.6375 Differential Geometry +1307.7422 Combinatorics +1308.6343 Mesoscale and Nanoscale Physics +1310.0803 High Energy Astrophysical Phenomena +1310.1177 Learning +1310.2168 Algebraic Geometry +1310.6213 Materials Science +1310.7212 Classical Analysis and ODEs +1310.7312 Probability +1311.3737 Analysis of PDEs +1311.4907 Metric Geometry +1312.2106 Astrophysics of Galaxies +1312.2979 Geometric Topology +1401.4025 Formal Languages and Automata Theory +1401.4071 Algebraic Geometry +1401.4913 Quantitative Methods +1401.5040 Differential Geometry +1401.5899 Machine Learning +1402.5202 +1403.0665 Number Theory +1403.6977 Networking and Internet Architecture +1404.2384 Materials Science +1404.6580 Learning +1404.6780 Algebraic Geometry +1405.0862 Analysis of PDEs +1405.1053 High Energy Astrophysical Phenomena +1405.1428 Solar and Stellar Astrophysics +1405.2512 Other Computer Science +1405.5100 Differential Geometry +1405.5556 Superconductivity +1405.5587 Combinatorics +1406.0064 Classical Analysis and ODEs +1406.0111 Data Analysis, Statistics and Probability +1406.3129 Popular Physics +1406.3374 Number Theory +1406.6463 Probability +1407.3107 Quantum Gases +1407.4306 Cosmology and Nongalactic Astrophysics +1407.8032 Computer Science and Game Theory +1407.8294 Analysis of PDEs +1408.2541 Algebraic Geometry +1408.5291 Probability +1408.6927 Information Theory +1409.5340 Artificial Intelligence +1409.5465 Representation Theory +1409.5840 +1411.0501 Probability +1411.1152 Economics +1411.1367 Computer Science and Game Theory +1411.2796 Differential Geometry +1411.4760 Representation Theory +1411.6257 Probability +1412.0578 Astrophysics of Galaxies +1412.1481 Functional Analysis +1412.2118 Logic in Computer Science +1412.2855 Cryptography and Security +1412.2903 Quantum Gases +1412.2997 Classical Analysis and ODEs +1412.6574 Computer Vision and Pattern Recognition +1412.8631 Group Theory +1501.02226 Applications +1501.02229 Probability +1501.02687 Differential Geometry +1502.02288 Dynamical Systems +1502.03014 Pattern Formation and Solitons +1502.03760 Mesoscale and Nanoscale Physics +1502.03837 Probability +1502.04900 Statistics Theory +1502.06926 Group Theory +1502.06975 +1503.00358 Strongly Correlated Electrons +1503.00985 Superconductivity +1503.01014 Superconductivity +1503.02845 Probability +1503.05979 Dynamical Systems +1504.01026 Mathematical Finance +1504.02371 Functional Analysis +1504.04152 Logic in Computer Science +1504.04617 +1504.06361 Optics +1504.06680 Group Theory +1505.01037 Phenomenology +1505.01698 Analysis of PDEs +1505.02561 Materials Science +1505.02644 General Finance +1505.06213 Instrumentation and Methods for Astrophysics +1505.06300 Dynamical Systems +1505.06730 Commutative Algebra +1505.07101 Superconductivity +1506.00082 Mathematical Finance +1506.00338 +1506.00506 Social and Information Networks +1506.05791 Superconductivity +1506.07298 Probability +1506.07766 Rings and Algebras +1506.08463 Atomic Physics +1507.01279 Learning +1507.01405 Strongly Correlated Electrons +1507.02314 Data Structures and Algorithms +1507.02560 Quantum Gases +1507.02608 Statistics Theory +1507.02665 Materials Science +1507.03632 Systems and Control +1507.04239 Theory +1507.04599 Mesoscale and Nanoscale Physics +1507.05087 Learning +1507.05309 Algebraic Geometry +1507.06182 Biological Physics +1507.06481 Cell Behavior +1507.07823 Dynamical Systems +1507.08372 Phenomenology +1507.08562 Spectral Theory +1507.08581 Astrophysics of Galaxies +1508.01388 +1508.01434 Optics +1508.01816 Classical Analysis and ODEs +1508.02746 Operator Algebras +1508.03173 Combinatorics +1508.03924 Economics +1508.04384 Statistical Mechanics +1508.04653 Analysis of PDEs +1508.04695 Soft Condensed Matter +1508.05854 Differential Geometry +1508.06384 Theory +1508.07012 Cosmology and Nongalactic Astrophysics +1508.07138 Mesoscale and Nanoscale Physics +1508.07473 +1509.01269 Mesoscale and Nanoscale Physics +1509.02860 Strongly Correlated Electrons +1509.03153 Dynamical Systems +1509.03398 Analysis of PDEs +1509.04145 Biological Physics +1509.05797 Algebraic Geometry +1509.06227 Dynamical Systems +1509.07619 Numerical Analysis +1509.08217 Geometric Topology +1509.08382 Geometric Topology +1509.08684 Astrophysics of Galaxies +1510.00409 General Physics +1510.00503 Computation +1510.03768 Statistical Mechanics +1510.04367 +1510.05381 +1510.05631 Populations and Evolution +1510.06068 Instrumentation and Detectors +1510.06300 Dynamical Systems +1510.06490 +1510.07708 +1510.08657 +1510.09049 Probability +1511.00115 +1511.01193 Operator Algebras +1511.02408 Superconductivity +1511.02802 +1511.03691 Astrophysics of Galaxies +1511.03864 Methodology +1511.04285 Robotics +1511.04850 Analysis of PDEs +1511.06560 Theory +1511.06732 Learning +1511.07005 Quantum Algebra +1511.07126 Chemical Physics +1511.07972 Artificial Intelligence +1511.08113 Computational Complexity +1511.08273 +1511.08464 Human-Computer Interaction +1511.08695 Cosmology and Nongalactic Astrophysics +1511.08775 Methodology +1511.09148 Cosmology and Nongalactic Astrophysics +1511.09296 Classical Analysis and ODEs +1512.00323 Algebraic Geometry +1512.00580 Symplectic Geometry +1512.01121 Classical Analysis and ODEs +1512.01285 Mesoscale and Nanoscale Physics +1512.01450 +1512.02143 Mesoscale and Nanoscale Physics +1512.03042 Mesoscale and Nanoscale Physics +1512.03965 Learning +1512.04989 Dynamical Systems +1512.05365 Cosmology and Nongalactic Astrophysics +1512.05600 Superconductivity +1512.05740 +1512.05777 Phenomenology +1512.05788 High Energy Astrophysical Phenomena +1512.05931 Numerical Analysis +1512.06919 +1512.07026 +1512.07329 +1512.08588 Rings and Algebras +1512.08733 Theory +1601.00983 Plasma Physics +1601.02965 Rings and Algebras +1601.03707 Strongly Correlated Electrons +1601.03971 +1601.04003 Mesoscale and Nanoscale Physics +1601.04288 Phenomenology +1601.04366 Learning +1601.04939 Strongly Correlated Electrons +1601.05557 Data Structures and Algorithms +1601.06752 +1601.06942 Superconductivity +1601.07019 Quantitative Methods +1601.07106 +1601.07699 Logic +1601.07943 Strongly Correlated Electrons +1602.00618 Strongly Correlated Electrons +1602.01648 Information Theory +1602.01795 Strongly Correlated Electrons +1602.03616 Neural and Evolutionary Computing +1602.04503 Cryptography and Security +1602.04631 Statistical Mechanics +1602.04907 Quantum Algebra +1602.05691 General Topology +1602.06702 Solar and Stellar Astrophysics +1602.06932 Networking and Internet Architecture +1602.06985 Combinatorics +1602.07371 +1602.07553 History and Overview +1602.07554 History and Overview +1602.07572 Computation and Language +1602.07774 Metric Geometry +1602.09095 Computational Physics +1603.00255 Phenomenology +1603.00575 High Energy Astrophysical Phenomena +1603.00987 Pricing of Securities +1603.01002 +1603.01914 Numerical Analysis +1603.02285 Cosmology and Nongalactic Astrophysics +1603.02609 Human-Computer Interaction +1603.03218 Probability +1603.04191 Rings and Algebras +1603.04458 Theory +1603.05120 Cosmology and Nongalactic Astrophysics +1603.05373 Risk Management +1603.05829 Computer Science and Game Theory +1603.06385 Dynamical Systems +1603.06498 Probability +1603.08818 Quantum Gases +1603.08953 Solar and Stellar Astrophysics +1603.09017 Probability +1603.09325 Numerical Analysis +1603.09483 +1604.00940 Atomic Physics +1604.01067 Numerical Analysis +1604.01496 Functional Analysis +1604.01665 Phenomenology +1604.01799 High Energy Astrophysical Phenomena +1604.01939 Superconductivity +1604.02611 Fluid Dynamics +1604.03198 Atomic Physics +1604.04024 Computer Vision and Pattern Recognition +1604.04174 Number Theory +1604.04230 Logic +1604.04275 Combinatorics +1604.04558 Information Retrieval +1604.05173 Classical Analysis and ODEs +1604.05246 Quantum Algebra +1604.05541 Dynamical Systems +1604.05789 Astrophysics of Galaxies +1604.06155 Algebraic Geometry +1604.06246 Digital Libraries +1604.06387 Group Theory +1604.06985 Learning +1604.07036 Discrete Mathematics +1604.07123 Algebraic Geometry +1604.07270 Algebraic Geometry +1604.08356 Medical Physics +1604.08425 Materials Science +1604.08441 Classical Analysis and ODEs +1604.08584 +1604.08784 Software Engineering +1605.00002 Physics and Society +1605.00130 Classical Analysis and ODEs +1605.00176 Learning +1605.00434 Networking and Internet Architecture +1605.00735 Phenomenology +1605.00905 High Energy Astrophysical Phenomena +1605.01371 Number Theory +1605.01431 Solar and Stellar Astrophysics +1605.01435 Databases +1605.01442 Optimization and Control +1605.01704 Materials Science +1605.01713 Learning +1605.01960 Superconductivity +1605.02027 Probability +1605.02031 Optimization and Control +1605.02069 Fluid Dynamics +1605.02082 Applications +1605.02084 Solar and Stellar Astrophysics +1605.02085 Instrumentation and Detectors +1605.02087 Combinatorics +1605.02088 High Energy Astrophysical Phenomena +1605.02089 High Energy Astrophysical Phenomena +1605.02090 Analysis of PDEs +1605.02093 Computers and Society +1605.02094 Disordered Systems and Neural Networks +1605.02096 High Energy Astrophysical Phenomena +1605.02099 Learning +1605.02103 Geometric Topology +1605.02105 Optimization and Control +1605.02107 Classical Physics +1605.02109 +1605.02110 Atomic Physics +1605.02114 Dynamical Systems +1605.02115 Social and Information Networks +1605.02117 Differential Geometry +1605.02119 Optics +1605.02120 Optics +1605.02121 Numerical Analysis +1605.02123 Data Structures and Algorithms +1605.02124 Combinatorics +1605.02129 Computation and Language +1605.02130 Computation and Language +1605.02131 Combinatorics +1605.02132 Digital Libraries +1605.02134 Computation and Language +1605.02138 Methodology +1605.02139 Fluid Dynamics +1605.02140 Computer Vision and Pattern Recognition +1605.02144 Methodology +1605.02150 Computation and Language +1605.02151 Instrumentation and Methods for Astrophysics +1605.02153 +1605.02157 Analysis of PDEs +1605.02160 Artificial Intelligence +1605.02164 Computer Vision and Pattern Recognition +1605.02168 Data Structures and Algorithms +1605.02170 Statistical Mechanics +1605.02171 Complex Variables +1605.02174 Social and Information Networks +1605.02175 Information Theory +1605.02180 Cosmology and Nongalactic Astrophysics +1605.02181 +1605.02185 Logic in Computer Science +1605.02188 Statistical Finance +1605.02190 Machine Learning +1605.02196 Systems and Control +1605.02197 Social and Information Networks +1605.02198 Number Theory +1605.02199 Superconductivity +1605.02200 Classical Analysis and ODEs +1605.02201 Optics +1605.02202 Statistical Mechanics +1605.02204 Instrumentation and Detectors +1605.02205 Probability +1605.02206 Logic in Computer Science +1605.02210 Databases +1605.02212 Functional Analysis +1605.02213 Information Theory +1605.02215 Digital Libraries +1605.02216 Learning +1605.02218 Solar and Stellar Astrophysics +1605.02221 Solar and Stellar Astrophysics +1605.02222 Combinatorics +1605.02223 Solar and Stellar Astrophysics +1605.02224 Data Structures and Algorithms +1605.02227 Computers and Society +1605.02228 Group Theory +1605.02229 Algebraic Geometry +1605.02230 Networking and Internet Architecture +1605.02232 General Mathematics +1605.02235 Symplectic Geometry +1605.02238 Information Theory +1605.02239 +1605.02240 Computer Vision and Pattern Recognition +1605.02243 +1605.02244 Superconductivity +1605.02245 Computational Geometry +1605.02246 +1605.02248 Optics +1605.02249 +1605.02251 Molecular Networks +1605.02255 Earth and Planetary Astrophysics +1605.02257 Computation and Language +1605.02258 Geometric Topology +1605.02260 Computer Vision and Pattern Recognition +1605.02263 Software Engineering +1605.02265 Computers and Society +1605.02266 Computer Vision and Pattern Recognition +1605.02267 Fluid Dynamics +1605.02269 Computers and Society +1605.02270 Materials Science +1605.02271 Adaptation and Self-Organizing Systems +1605.02275 Number Theory +1605.02277 Machine Learning +1605.02278 Mesoscale and Nanoscale Physics +1605.02281 Information Theory +1605.02283 Statistical Finance +1605.02284 Complex Variables +1605.02286 Differential Geometry +1605.02287 Networking and Internet Architecture +1605.02288 Social and Information Networks +1605.02289 Computer Vision and Pattern Recognition +1605.02290 Information Theory +1605.02291 Combinatorics +1605.02298 Combinatorics +1605.02301 Chemical Physics +1605.02302 Algebraic Geometry +1605.02303 +1605.02306 Geometric Topology +1605.02307 Combinatorics +1605.02315 Machine Learning +1605.02317 Information Theory +1605.02318 Soft Condensed Matter +1605.02320 +1605.02321 Artificial Intelligence +1605.02326 Statistics Theory +1605.02327 Superconductivity +1605.02328 Cryptography and Security +1605.02332 Methodology +1605.02337 Data Structures and Algorithms +1605.02340 Analysis of PDEs +1605.02341 Optimization and Control +1605.02344 Mesoscale and Nanoscale Physics +1605.02347 Optimization and Control +1605.02349 Information Theory +1605.02350 Logic in Computer Science +1605.02352 Probability +1605.02353 Data Structures and Algorithms +1605.02358 High Energy Astrophysical Phenomena +1605.02361 Combinatorics +1605.02362 Analysis of PDEs +1605.02363 Analysis of PDEs +1605.02364 Number Theory +1605.02366 Combinatorics +1605.02367 Materials Science +1605.02376 Dynamical Systems +1605.02377 Social and Information Networks +1605.02378 Digital Libraries +1605.02380 Strongly Correlated Electrons +1605.02382 Representation Theory +1605.02387 Algebraic Topology +1605.02388 Theory +1605.02389 Representation Theory +1605.02398 Number Theory +1605.02400 Classical Analysis and ODEs +1605.02402 Computer Science and Game Theory +1605.02412 Analysis of PDEs +1605.02414 Combinatorics +1605.02415 Combinatorics +1605.02416 +1605.02417 Statistical Mechanics +1605.02418 Methodology +1605.02419 Logic +1605.02422 Materials Science +1605.02423 Information Theory +1605.02424 Computer Vision and Pattern Recognition +1605.02425 Earth and Planetary Astrophysics +1605.02427 Sound +1605.02430 +1605.02432 Distributed, Parallel, and Cluster Computing +1605.02434 Number Theory +1605.02436 Dynamical Systems +1605.02440 Number Theory +1605.02441 Information Theory +1605.02442 Artificial Intelligence +1605.02443 Complex Variables +1605.02444 Rings and Algebras +1605.02445 Multiagent Systems +1605.02446 Computation +1605.02448 Differential Geometry +1605.02452 Optimization and Control +1605.02453 Fluid Dynamics +1605.02455 Other Computer Science +1605.02456 Classical Analysis and ODEs +1605.02457 Computation and Language +1605.02460 Computer Vision and Pattern Recognition +1605.02461 +1605.02463 Medical Physics +1605.02464 Computer Vision and Pattern Recognition +1605.02465 Plasma Physics +1605.02466 +1605.02468 Optics +1605.02469 Combinatorics +1605.02470 Learning +1605.02471 Chaotic Dynamics +1605.02472 Mathematical Finance +1605.02474 Distributed, Parallel, and Cluster Computing +1605.02478 Number Theory +1605.02479 Fluid Dynamics +1605.02480 Functional Analysis +1605.02484 Functional Analysis +1605.02485 Functional Analysis +1605.02486 Neural and Evolutionary Computing +1605.02487 Experiment +1605.02489 Computer Science and Game Theory +1605.02490 Dynamical Systems +1605.02493 Differential Geometry +1605.02495 Information Theory +1605.02499 Computational Geometry +1605.02500 Classical Analysis and ODEs +1605.02501 Differential Geometry +1605.02508 Classical Analysis and ODEs +1605.02510 Numerical Analysis +1605.02512 Differential Geometry +1605.02513 Materials Science +1605.02514 Other Computer Science +1605.02515 Optics +1605.02518 Symbolic Computation +1605.02521 Materials Science +1605.02523 Analysis of PDEs +1605.02524 Instrumentation and Detectors +1605.02525 Instrumentation and Detectors +1605.02530 Data Structures and Algorithms +1605.02535 Analysis of PDEs +1605.02537 Plasma Physics +1605.02538 Number Theory +1605.02540 Machine Learning +1605.02541 Machine Learning +1605.02542 General Physics +1605.02543 General Physics +1605.02544 Functional Analysis +1605.02547 General Physics +1605.02550 Chaotic Dynamics +1605.02551 Logic +1605.02555 Fluid Dynamics +1605.02556 General Physics +1605.02557 General Physics +1605.02559 Computer Vision and Pattern Recognition +1605.02560 Applications +1605.02561 Methodology +1605.02563 Probability +1605.02566 Materials Science +1605.02567 Number Theory +1605.02568 Popular Physics +1605.02571 General Topology +1605.02576 Algebraic Geometry +1605.02577 Optimization and Control +1605.02579 Algebraic Geometry +1605.02581 Analysis of PDEs +1605.02582 History and Overview +1605.02583 History and Overview +1605.02584 Analysis of PDEs +1605.02585 Optimization and Control +1605.02587 Analysis of PDEs +1605.02588 Discrete Mathematics +1605.02589 Analysis of PDEs +1605.02592 Computation and Language +1605.02594 Accelerator Physics +1605.02595 Analysis of PDEs +1605.02599 Atomic Physics +1605.02602 Rings and Algebras +1605.02605 Multimedia +1605.02606 Networking and Internet Architecture +1605.02607 Information Theory +1605.02609 Neurons and Cognition +1605.02612 Mesoscale and Nanoscale Physics +1605.02614 Analysis of PDEs +1605.02616 Classical Analysis and ODEs +1605.02619 Neural and Evolutionary Computing +1605.02626 Computational Geometry +1605.02628 Formal Languages and Automata Theory +1605.02633 Learning +1605.02637 Number Theory +1605.02642 Quantum Gases +1605.02644 Probability +1605.02646 Cryptography and Security +1605.02647 Quantum Gases +1605.02651 Computer Science and Game Theory +1605.02652 Multiagent Systems +1605.02653 +1605.02659 Probability +1605.02660 Computers and Society +1605.02661 Software Engineering +1605.02662 Theory +1605.02665 Probability +1605.02668 Number Theory +1605.02669 Distributed, Parallel, and Cluster Computing +1605.02670 Statistical Mechanics +1605.02676 Mesoscale and Nanoscale Physics +1605.02677 Artificial Intelligence +1605.02678 Quantum Algebra +1605.02680 Cosmology and Nongalactic Astrophysics +1605.02682 Algebraic Topology +1605.02684 Phenomenology +1605.02688 Symbolic Computation +1605.02690 Combinatorics +1605.02691 Dynamical Systems +1605.02692 Instrumentation and Detectors +1605.02693 Machine Learning +1605.02700 Functional Analysis +1605.02707 Earth and Planetary Astrophysics +1605.02714 Probability +1605.02717 Number Theory +1605.02720 Neural and Evolutionary Computing +1605.02721 Algebraic Geometry +hep-ph/0503164 Phenomenology +math-ph/0606035 +math/0303142 Analysis of PDEs +math/9903034 Algebraic Geometry +quant-ph/9910029 +0708.0444 +0709.4485 Combinatorics +0908.2791 Combinatorics +1012.4724 Statistical Mechanics +1101.2080 Differential Geometry +1101.3619 History and Philosophy of Physics +1102.1617 Symplectic Geometry +1201.5135 Data Structures and Algorithms +1203.6127 Information Theory +1204.2065 General Finance +1207.0088 Mesoscale and Nanoscale Physics +1207.2200 Chemical Physics +1207.3455 High Energy Astrophysical Phenomena +1207.6326 Instrumentation and Methods for Astrophysics +1208.2618 Physics and Society +1208.3430 Data Analysis, Statistics and Probability +1208.4823 Logic +1211.2343 +1211.4293 Information Theory +1212.2379 +1212.5662 Number Theory +1301.2148 Chemical Physics +1301.5361 Instrumentation and Methods for Astrophysics +1302.0113 Cosmology and Nongalactic Astrophysics +1302.3987 Differential Geometry +1302.5658 Geometric Topology +1303.3381 Probability +1304.2042 General Topology +1304.4626 Data Structures and Algorithms +1306.0204 Logic +1306.6637 Cosmology and Nongalactic Astrophysics +1307.1175 +1307.2444 Combinatorics +1307.2526 Operator Algebras +1307.6669 High Energy Astrophysical Phenomena +1308.5501 Instrumentation and Methods for Astrophysics +1309.1403 History and Philosophy of Physics +1309.2444 Distributed, Parallel, and Cluster Computing +1310.5311 Number Theory +1310.6118 Mesoscale and Nanoscale Physics +1310.7178 +1310.7467 Applications +1311.2009 Optimization and Control +1311.3755 Statistics Theory +1311.5904 Distributed, Parallel, and Cluster Computing +1312.0104 High Energy Astrophysical Phenomena +1312.0778 Space Physics +1312.2024 Probability +1312.2204 Category Theory +1312.2695 Cosmology and Nongalactic Astrophysics +1312.4511 Social and Information Networks +1312.5893 Probability +1401.0645 Symbolic Computation +1401.3034 Statistics Theory +1401.3972 Probability +1401.4086 Dynamical Systems +1401.5336 Geometric Topology +1401.6963 Discrete Mathematics +1402.0123 Atomic Physics +1402.3460 Cosmology and Nongalactic Astrophysics +1402.3496 +1402.5842 Analysis of PDEs +1402.6178 Combinatorics +1402.6504 Optimization and Control +1402.7031 Biological Physics +1403.2193 Optics +1403.4644 Optics +1403.5986 Systems and Control +1404.0443 Representation Theory +1404.0807 Computer Science and Game Theory +1405.1261 Materials Science +1405.6379 Combinatorics +1406.0390 Numerical Analysis +1406.3084 Performance +1406.3587 Numerical Analysis +1406.5784 Atomic Physics +1406.6757 High Energy Astrophysical Phenomena +1406.7842 Learning +1407.1829 Fluid Dynamics +1407.3259 Geometric Topology +1407.4219 +1407.7258 Functional Analysis +1407.7725 Mathematical Finance +1407.8330 Optimization and Control +1408.2902 Physics and Society +1408.3374 Data Structures and Algorithms +1408.5263 Mesoscale and Nanoscale Physics +1408.5794 Number Theory +1409.0734 Representation Theory +1409.1231 Theory +1409.1562 Geometric Topology +1409.2448 Genomics +1409.4167 General Topology +1409.4535 High Energy Astrophysical Phenomena +1409.4573 Machine Learning +1409.7446 History and Philosophy of Physics +1409.8168 General Mathematics +1410.6596 General Topology +1411.0201 Strongly Correlated Electrons +1411.0978 Soft Condensed Matter +1411.1166 Statistics Theory +1411.1390 +1411.1719 Optimization and Control +1411.4459 Combinatorics +1411.6982 Functional Analysis +1411.7520 Plasma Physics +1412.0213 +1412.2976 Rings and Algebras +1412.3353 Molecular Networks +1412.4170 Statistics Theory +1412.8756 Numerical Analysis +1412.8760 Dynamical Systems +1501.00206 Phenomenology +1501.01058 Optimization and Control +1501.01268 Spectral Theory +1501.01664 High Energy Astrophysical Phenomena +1501.04289 +1501.04990 +1502.00154 Optimization and Control +1502.02522 Experiment +1502.03506 Optics +1502.04213 Instrumentation and Detectors +1502.05003 Probability +1503.00052 Statistical Mechanics +1503.00443 +1503.00621 Risk Management +1503.01349 Algebraic Geometry +1503.01609 Statistical Mechanics +1503.04559 Geometric Topology +1503.05322 Probability +1503.05901 Dynamical Systems +1503.06360 Dynamical Systems +1503.06396 General Topology +1503.06472 Theory +1503.06837 History and Philosophy of Physics +1503.06866 Neural and Evolutionary Computing +1503.06977 Algebraic Topology +1503.07759 Distributed, Parallel, and Cluster Computing +1503.08709 +1503.08710 +1503.08826 Cosmology and Nongalactic Astrophysics +1504.01036 Combinatorics +1504.01689 Probability +1504.01849 Theory +1504.02881 Numerical Analysis +1504.07463 Algebraic Geometry +1504.08061 Algebraic Geometry +1504.08139 Analysis of PDEs +1505.00483 Operator Algebras +1505.02177 Classical Analysis and ODEs +1505.04374 Differential Geometry +1505.06689 Phenomenology +1505.06881 Group Theory +1505.07259 High Energy Astrophysical Phenomena +1505.07743 Solar and Stellar Astrophysics +1505.08112 Theory +1506.01590 +1506.02000 Geometric Topology +1506.02335 Combinatorics +1506.03015 Functional Analysis +1506.04380 Combinatorics +1506.04726 Algebraic Geometry +1506.04830 Systems and Control +1506.04913 Mesoscale and Nanoscale Physics +1506.05005 Theory +1506.06459 Complex Variables +1506.07875 +1506.08963 General Mathematics +1506.09203 Classical Analysis and ODEs +1507.00105 Strongly Correlated Electrons +1507.00746 Soft Condensed Matter +1507.01204 Optics +1507.01715 Software Engineering +1507.02051 Optimization and Control +1507.02713 Probability +1507.03144 Algebraic Geometry +1507.03570 +1507.04541 Mesoscale and Nanoscale Physics +1507.04867 Materials Science +1507.06054 Materials Science +1507.06563 Theory +1507.07475 Instrumentation and Detectors +1507.08137 Human-Computer Interaction +1507.08242 Combinatorics +1507.08434 Phenomenology +1507.08633 +1508.00377 Artificial Intelligence +1508.01039 Analysis of PDEs +1508.01242 Atomic Physics +1508.01251 Rings and Algebras +1508.01953 Probability +1508.02144 Number Theory +1508.02156 Materials Science +1508.02249 Chemical Physics +1508.03418 Accelerator Physics +1508.03781 Strongly Correlated Electrons +1508.04030 Information Theory +1508.05413 Mesoscale and Nanoscale Physics +1508.05895 Phenomenology +1508.06145 Mesoscale and Nanoscale Physics +1508.07845 Distributed, Parallel, and Cluster Computing +1509.00017 Astrophysics of Galaxies +1509.00341 Algebraic Geometry +1509.01277 Computer Vision and Pattern Recognition +1509.01391 Mesoscale and Nanoscale Physics +1509.01457 General Physics +1509.03789 Artificial Intelligence +1509.04127 Accelerator Physics +1509.05243 Physics and Society +1509.05542 General Topology +1509.05913 Materials Science +1509.06208 Mesoscale and Nanoscale Physics +1509.06283 Cosmology and Nongalactic Astrophysics +1509.06735 +1509.07653 Number Theory +1509.07998 Cosmology and Nongalactic Astrophysics +1509.08212 Statistical Mechanics +1509.08234 Quantum Gases +1509.08452 Physics and Society +1509.08463 Cosmology and Nongalactic Astrophysics +1510.00391 Phenomenology +1510.01345 +1510.01360 Strongly Correlated Electrons +1510.01571 Complex Variables +1510.02473 Phenomenology +1510.02658 Information Theory +1510.03122 +1510.03420 Classical Analysis and ODEs +1510.03862 Mesoscale and Nanoscale Physics +1510.04494 +1510.04532 Combinatorics +1510.04701 +1510.05124 Representation Theory +1510.05302 Experiment +1510.08296 Mesoscale and Nanoscale Physics +1510.08314 Dynamical Systems +1510.08497 Materials Science +1511.00460 Materials Science +1511.00521 Methodology +1511.00770 Physics and Society +1511.00874 Phenomenology +1511.00923 Soft Condensed Matter +1511.01462 Analysis of PDEs +1511.01574 Computation and Language +1511.02062 Algebraic Topology +1511.02209 K-Theory and Homology +1511.02511 Cryptography and Security +1511.03560 +1511.03812 Information Theory +1511.03962 Computation and Language +1511.04222 Complex Variables +1511.04383 Machine Learning +1511.04725 Statistical Mechanics +1511.05050 Theory +1511.05458 Mesoscale and Nanoscale Physics +1511.05467 Machine Learning +1511.05510 Plasma Physics +1511.05647 +1511.05711 +1511.05751 +1511.05765 Strongly Correlated Electrons +1511.05962 Cosmology and Nongalactic Astrophysics +1511.06342 Learning +1511.06346 Phenomenology +1511.06394 Computer Vision and Pattern Recognition +1511.06697 Analysis of PDEs +1511.07057 Information Theory +1511.07243 Algebraic Geometry +1511.07289 Learning +1511.07979 +1511.07987 Operator Algebras +1511.08002 Theory +1511.09080 Artificial Intelligence +1512.00752 Combinatorics +1512.00905 Applications +1512.02459 Superconductivity +1512.02476 Disordered Systems and Neural Networks +1512.03326 +1512.04910 Statistical Mechanics +1512.05491 Phenomenology +1512.06349 Phenomenology +1512.06788 Formal Languages and Automata Theory +1512.06821 Optics +1512.07053 Quantum Gases +1512.07355 Plasma Physics +1512.07831 Social and Information Networks +1512.08921 Strongly Correlated Electrons +1512.08951 Information Theory +1512.09164 +1512.09175 Theory +1601.00313 Multiagent Systems +1601.00596 Rings and Algebras +1601.02886 Dynamical Systems +1601.03544 Chemical Physics +1601.03840 +1601.04697 Number Theory +1601.04925 Strongly Correlated Electrons +1601.05072 K-Theory and Homology +1601.05617 Differential Geometry +1601.06261 Functional Analysis +1601.06395 Differential Geometry +1602.00335 Geometric Topology +1602.00646 Systems and Control +1602.00797 Quantum Algebra +1602.01962 Theory +1602.02067 Disordered Systems and Neural Networks +1602.02338 Learning +1602.02343 Computer Vision and Pattern Recognition +1602.03329 +1602.03338 Numerical Analysis +1602.03897 Analysis of PDEs +1602.03949 Optics +1602.03981 +1602.03990 Methodology +1602.04693 Cryptography and Security +1602.04844 Social and Information Networks +1602.05106 Cryptography and Security +1602.05260 Accelerator Physics +1602.05536 Information Theory +1602.05662 Number Theory +1602.05663 Classical Analysis and ODEs +1602.05664 Physics Education +1602.05926 Combinatorics +1602.06062 Theory +1602.06111 Optimization and Control +1602.06159 Data Structures and Algorithms +1602.06293 Soft Condensed Matter +1602.06295 General Finance +1602.06301 Instrumentation and Methods for Astrophysics +1602.06303 Theory +1602.06311 Strongly Correlated Electrons +1602.06314 Solar and Stellar Astrophysics +1602.06315 Classical Analysis and ODEs +1602.06317 Genomics +1602.06318 Statistics Theory +1602.06319 Classical Analysis and ODEs +1602.06320 Number Theory +1602.06324 Soft Condensed Matter +1602.06328 Complex Variables +1602.06329 General Physics +1602.06330 +1602.06331 General Physics +1602.06333 Numerical Analysis +1602.06337 Astrophysics of Galaxies +1602.06339 Group Theory +1602.06344 Numerical Analysis +1602.06348 Biological Physics +1602.06349 Machine Learning +1602.06351 Dynamical Systems +1602.06352 Physics Education +1602.06353 +1602.06354 Theory +1602.06359 Computation and Language +1602.06360 Statistical Mechanics +1602.06361 Physics Education +1602.06363 Phenomenology +1602.06366 Methodology +1602.06367 Physics Education +1602.06368 Analysis of PDEs +1602.06369 Physics Education +1602.06372 Metric Geometry +1602.06373 Information Theory +1602.06374 Physics Education +1602.06375 Information Theory +1602.06376 Analysis of PDEs +1602.06380 Combinatorics +1602.06382 +1602.06386 Algebraic Geometry +1602.06387 +1602.06388 Physics Education +1602.06389 Physics Education +1602.06390 Physics Education +1602.06391 Physics Education +1602.06392 Physics Education +1602.06394 Differential Geometry +1602.06396 Strongly Correlated Electrons +1602.06397 Atmospheric and Oceanic Physics +1602.06398 Superconductivity +1602.06399 Information Theory +1602.06403 Algebraic Geometry +1602.06411 Data Structures and Algorithms +1602.06413 Soft Condensed Matter +1602.06415 Space Physics +1602.06417 Systems and Control +1602.06418 Cosmology and Nongalactic Astrophysics +1602.06422 Theory +1602.06423 Physics Education +1602.06424 Space Physics +1602.06426 Data Structures and Algorithms +1602.06427 Algebraic Geometry +1602.06428 Chemical Physics +1602.06431 Machine Learning +1602.06432 +1602.06438 Numerical Analysis +1602.06439 Computer Vision and Pattern Recognition +1602.06441 Physics Education +1602.06444 Numerical Analysis +1602.06445 Number Theory +1602.06447 Biological Physics +1602.06450 Algebraic Topology +1602.06452 Astrophysics of Galaxies +1602.06453 Software Engineering +1602.06455 Dynamical Systems +1602.06458 Databases +1602.06460 Multiagent Systems +1602.06462 Artificial Intelligence +1602.06464 Complex Variables +1602.06466 Quantitative Methods +1602.06467 Dynamical Systems +1602.06473 Number Theory +1602.06474 Algebraic Geometry +1602.06475 Probability +1602.06476 Numerical Analysis +1602.06480 Rings and Algebras +1602.06484 Artificial Intelligence +1602.06485 Rings and Algebras +1602.06487 Materials Science +1602.06488 Distributed, Parallel, and Cluster Computing +1602.06489 Distributed, Parallel, and Cluster Computing +1602.06490 Mesoscale and Nanoscale Physics +1602.06494 Algebraic Geometry +1602.06497 Physics Education +1602.06499 Physics Education +1602.06515 Mesoscale and Nanoscale Physics +1602.06519 Mesoscale and Nanoscale Physics +1602.06522 Disordered Systems and Neural Networks +1602.06529 Information Theory +1602.06533 Geophysics +1602.06535 Analysis of PDEs +1602.06537 Combinatorics +1602.06538 Number Theory +1602.06539 Learning +1602.06544 Superconductivity +1602.06546 Algebraic Geometry +1602.06548 Combinatorics +1602.06551 Analysis of PDEs +1602.06552 Optics +1602.06554 Plasma Physics +1602.06557 Theory +1602.06558 Differential Geometry +1602.06560 Geometric Topology +1602.06564 Computer Vision and Pattern Recognition +1602.06565 Differential Geometry +1602.06566 Artificial Intelligence +1602.06567 Metric Geometry +1602.06568 Programming Languages +1602.06571 Computer Science and Game Theory +1602.06572 Number Theory +1602.06574 Atomic Physics +1602.06576 Functional Analysis +1602.06577 Machine Learning +1602.06579 Applications +1602.06583 Classical Analysis and ODEs +1602.06584 Populations and Evolution +1602.06591 Molecular Networks +1602.06595 Methodology +1602.06597 Commutative Algebra +1602.06598 Information Theory +1602.06599 Software Engineering +1602.06600 Theory +1602.06601 Optics +1602.06602 Numerical Analysis +1602.06603 Number Theory +1602.06605 Analysis of PDEs +1602.06607 Algebraic Geometry +1602.06608 Number Theory +1602.06609 Methodology +1602.06611 Optics +1602.06614 Representation Theory +1602.06615 Analysis of PDEs +1602.06616 Differential Geometry +1602.06617 Number Theory +1602.06621 Optimization and Control +1602.06626 Probability +1602.06629 Probability +1602.06634 Human-Computer Interaction +1602.06635 Instrumentation and Detectors +1602.06636 Chaotic Dynamics +1602.06637 Physics Education +1602.06643 Databases +1602.06645 Graphics +1602.06650 Analysis of PDEs +1602.06651 Phenomenology +1602.06652 Robotics +1602.06653 Networking and Internet Architecture +1602.06654 Learning +1602.06660 Physics Education +1602.06666 Physics Education +1602.06669 Strongly Correlated Electrons +1602.06672 Fluid Dynamics +1602.06675 Robotics +1602.06680 Dynamical Systems +1602.06682 Differential Geometry +1602.06683 Distributed, Parallel, and Cluster Computing +1602.06694 Rings and Algebras +1602.06695 Information Theory +1602.06696 Methodology +1602.06698 Information Theory +1602.06701 Machine Learning +1602.06707 Materials Science +1602.06708 Data Structures and Algorithms +1602.06713 Earth and Planetary Astrophysics +1602.06717 Applications +1602.06720 Fluid Dynamics +1602.06722 Information Theory +1602.06724 Number Theory +1602.06731 Multiagent Systems +1602.06735 Group Theory +1602.06736 Algebraic Topology +1602.06738 Functional Analysis +1602.06739 Astrophysics of Galaxies +1602.06746 Learning +1602.06749 Analysis of PDEs +1602.06751 Combinatorics +1602.06763 Mathematical Software +1602.06768 Strongly Correlated Electrons +1602.06774 Materials Science +1602.06775 Space Physics +1602.06779 Geometric Topology +1602.06781 Numerical Analysis +1602.06783 +1602.06794 Optimization and Control +1602.06796 Combinatorics +1602.06797 Computation and Language +1602.06799 Instrumentation and Methods for Astrophysics +1602.06801 Instrumentation and Detectors +1602.06802 Optics +1602.06803 High Energy Astrophysical Phenomena +1602.06817 Combinatorics +1602.06819 Data Structures and Algorithms +1602.06822 Learning +1602.06823 Software Engineering +1602.06827 Neurons and Cognition +1602.06831 Superconductivity +1602.06834 Mesoscale and Nanoscale Physics +1602.06835 Physics and Society +1602.06838 Solar and Stellar Astrophysics +1602.06839 Mesoscale and Nanoscale Physics +1602.06841 Functional Analysis +1602.06842 Chaotic Dynamics +1602.06843 Dynamical Systems +1602.06845 Dynamical Systems +1602.06849 +1602.06853 Fluid Dynamics +1602.06857 +1602.06859 Cell Behavior +1602.06863 Learning +1602.06864 Numerical Analysis +1602.06869 Numerical Analysis +1602.06870 +1602.06871 Computers and Society +1602.06872 Data Structures and Algorithms +1602.06873 Differential Geometry +1602.06874 +1602.06876 Representation Theory +1602.06879 Numerical Analysis +1602.06882 Spectral Theory +1602.06887 Differential Geometry +1602.06891 General Topology +1602.06896 Statistics Theory +1602.06900 Superconductivity +1602.06904 Computer Vision and Pattern Recognition +1602.06910 Discrete Mathematics +1602.06911 Algebraic Topology +1602.06913 Information Theory +1602.06917 Superconductivity +1602.06925 Networking and Internet Architecture +1602.06926 Physics Education +1602.06933 Complex Variables +1602.06934 Functional Analysis +1602.06940 Computer Science and Game Theory +1602.06941 Differential Geometry +1602.06943 General Finance +math/0609464 Spectral Theory +quant-ph/0103116 +quant-ph/0311106 +0805.3541 Quantum Algebra +0807.4730 +0901.0020 Quantum Algebra +0903.4075 Soft Condensed Matter +0906.1364 Quantum Algebra +0908.1542 +0911.2197 Probability +1004.0887 Computation +1101.0015 Quantum Algebra +1102.5644 Phenomenology +1105.5382 Combinatorics +1110.0472 Quantum Algebra +1111.4640 Representation Theory +1112.1923 Combinatorics +1205.5077 Number Theory +1206.6629 Algebraic Topology +1207.5748 Representation Theory +1211.3351 +1212.1515 Algebraic Geometry +1308.2558 Quantum Algebra +1310.2529 Algebraic Geometry +1312.2388 Fluid Dynamics +1312.5473 Probability +1312.6163 Classical Analysis and ODEs +1401.0050 Information Theory +1401.1956 Algebraic Geometry +1402.0064 Computational Physics +1403.6149 Combinatorics +1404.0700 Optimization and Control +1404.4529 Combinatorics +1404.5871 Commutative Algebra +1406.1502 Multiagent Systems +1406.7509 Classical Analysis and ODEs +1409.2456 Computational Geometry +1409.2568 +1409.6246 Differential Geometry +1410.3554 Superconductivity +1410.5186 Computer Science and Game Theory +1410.6072 Computational Complexity +1410.6252 +1410.6800 Functional Analysis +1411.2273 Neurons and Cognition +1411.3282 Quantum Algebra +1412.0869 Analysis of PDEs +1412.1458 Number Theory +1412.3530 Optimization and Control +1412.8583 +1501.00621 +1501.02223 Networking and Internet Architecture +1501.05726 Materials Science +1501.06965 Operator Algebras +1502.02420 Symplectic Geometry +1502.06699 Analysis of PDEs +1502.07137 Computational Physics +1503.00542 Mesoscale and Nanoscale Physics +1503.03404 Materials Science +1503.09010 Analysis of PDEs +1503.09157 Numerical Analysis +1504.05802 Number Theory +1505.01445 +1505.01650 Differential Geometry +1505.05075 +1505.05086 Cosmology and Nongalactic Astrophysics +1505.07744 Physics and Society +1506.00517 +1506.03588 Cryptography and Security +1506.05860 Machine Learning +1506.06112 Learning +1506.08275 Differential Geometry +1507.00658 Strongly Correlated Electrons +1507.02242 Combinatorics +1507.02370 Number Theory +1507.03018 Phenomenology +1507.06807 Computation +1507.06849 Numerical Analysis +1507.07092 Numerical Analysis +1507.08219 Combinatorics +1507.08913 Mesoscale and Nanoscale Physics +1508.02729 Optics +1508.05965 Astrophysics of Galaxies +1509.00480 Computational Physics +1509.03588 Strongly Correlated Electrons +1509.04996 Strongly Correlated Electrons +1509.08953 Earth and Planetary Astrophysics +1510.01991 Information Retrieval +1510.03272 Soft Condensed Matter +1510.03734 Theory +1510.04165 Other Computer Science +1510.05368 +1510.05970 Computer Vision and Pattern Recognition +1510.06062 Quantitative Methods +1511.01220 Cosmology and Nongalactic Astrophysics +1511.01406 Theory +1511.01518 Statistical Mechanics +1511.05545 +1511.06101 Algebraic Topology +1511.06778 High Energy Astrophysical Phenomena +1511.07168 Information Theory +1511.08573 Soft Condensed Matter +1512.01326 Instrumentation and Methods for Astrophysics +1512.01725 Social and Information Networks +1512.02103 Materials Science +1512.03436 +1512.04128 Phenomenology +1512.04755 +1512.04777 Soft Condensed Matter +1512.05098 Dynamical Systems +1512.05635 Methodology +1512.06853 Phenomenology +1512.07104 Probability +1512.07532 Complex Variables +1512.07620 Theory +1512.08688 +1601.00872 Number Theory +1601.01182 Strongly Correlated Electrons +1601.01571 Phenomenology +1601.02602 Optimization and Control +1601.04021 +1601.04601 Medical Physics +1601.07877 High Energy Astrophysical Phenomena +1601.08203 +1602.00310 Computer Vision and Pattern Recognition +1602.00545 Symbolic Computation +1602.00607 Theory +1602.01572 Algebraic Geometry +1602.02657 Quantum Gases +1602.03824 Theory +1602.04373 Analysis of PDEs +1602.04804 Strongly Correlated Electrons +1602.06448 Phenomenology +1602.07203 Geometric Topology +1602.07894 Optics +1603.00252 Quantum Gases +1603.03442 Theory +1603.04635 Materials Science +1603.04782 Numerical Analysis +1603.05721 Optics +1603.05896 Soft Condensed Matter +1603.06230 Quantitative Methods +1603.06900 Optics +1603.08031 Earth and Planetary Astrophysics +1603.09207 Materials Science +1604.02952 Solar and Stellar Astrophysics +1604.03878 Combinatorics +1604.04504 Complex Variables +1604.04566 High Energy Astrophysical Phenomena +1604.05645 Analysis of PDEs +1604.06414 Distributed, Parallel, and Cluster Computing +1605.00287 Computer Vision and Pattern Recognition +1605.00343 Combinatorics +1605.00812 Probability +1605.01368 Computer Vision and Pattern Recognition +1605.01645 Functional Analysis +1605.01758 Probability +1605.03271 Computational Geometry +1605.03388 Classical Analysis and ODEs +1605.03630 Theory +1605.04078 Methodology +1605.04206 Combinatorics +1605.04652 Distributed, Parallel, and Cluster Computing +1605.04896 Functional Analysis +1605.04925 Astrophysics of Galaxies +1605.04948 Trading and Market Microstructure +1605.04998 Quantum Gases +1605.05014 Analysis of PDEs +1605.05108 Probability +1605.05234 Software Engineering +1605.05316 Differential Geometry +1605.05317 History and Overview +1605.05318 Analysis of PDEs +1605.05319 Multimedia +1605.05326 Astrophysics of Galaxies +1605.05334 Computational Physics +1605.05340 Analysis of PDEs +1605.05342 Other Computer Science +1605.05343 Experiment +1605.05346 Number Theory +1605.05348 Chemical Physics +1605.05349 Machine Learning +1605.05351 Optimization and Control +1605.05352 Cosmology and Nongalactic Astrophysics +1605.05353 Information Theory +1605.05354 Dynamical Systems +1605.05356 +1605.05358 Classical Physics +1605.05361 Differential Geometry +1605.05362 Computation and Language +1605.05363 Information Theory +1605.05369 Information Retrieval +1605.05379 Information Theory +1605.05380 Algebraic Geometry +1605.05382 Applications +1605.05384 Networking and Internet Architecture +1605.05391 Information Theory +1605.05394 Geometric Topology +1605.05395 Computer Vision and Pattern Recognition +1605.05398 Differential Geometry +1605.05400 Number Theory +1605.05401 Social and Information Networks +1605.05402 Physics and Society +1605.05404 Data Structures and Algorithms +1605.05405 Combinatorics +1605.05406 Geophysics +1605.05410 Analysis of PDEs +1605.05415 Computer Vision and Pattern Recognition +1605.05416 Computation and Language +1605.05420 Data Analysis, Statistics and Probability +1605.05424 Optics +1605.05425 Algebraic Geometry +1605.05426 +1605.05429 Computation +1605.05430 Combinatorics +1605.05431 +1605.05436 Data Structures and Algorithms +1605.05437 Physics and Society +1605.05438 Distributed, Parallel, and Cluster Computing +1605.05439 Materials Science +1605.05440 Computer Vision and Pattern Recognition +1605.05444 Numerical Analysis +1605.05445 +1605.05446 +1605.05447 High Energy Astrophysical Phenomena +1605.05448 Neural and Evolutionary Computing +1605.05452 Classical Analysis and ODEs +1605.05458 K-Theory and Homology +1605.05459 Strongly Correlated Electrons +1605.05461 Materials Science +1605.05462 Computer Vision and Pattern Recognition +1605.05463 Group Theory +1605.05465 Space Physics +1605.05466 Computer Vision and Pattern Recognition +1605.05468 Analysis of PDEs +1605.05469 Complex Variables +1605.05470 +1605.05474 Optimization and Control +1605.05478 Optics +1605.05480 Dynamical Systems +1605.05481 Numerical Analysis +1605.05482 Numerical Analysis +1605.05487 Probability +1605.05491 Fluid Dynamics +1605.05493 Experiment +1605.05494 Symplectic Geometry +1605.05495 Geophysics +1605.05496 Instrumentation and Methods for Astrophysics +1605.05498 Probability +1605.05500 Strongly Correlated Electrons +1605.05506 Analysis of PDEs +1605.05509 Machine Learning +1605.05510 Combinatorics +1605.05514 Materials Science +1605.05518 Plasma Physics +1605.05520 Astrophysics of Galaxies +1605.05521 Dynamical Systems +1605.05522 Networking and Internet Architecture +1605.05529 Space Physics +1605.05530 Geometric Topology +1605.05532 Chaotic Dynamics +1605.05533 Fluid Dynamics +1605.05538 Computer Vision and Pattern Recognition +1605.05540 Algebraic Geometry +1605.05542 Discrete Mathematics +1605.05545 Economics +1605.05546 Computational Geometry +1605.05547 Strongly Correlated Electrons +1605.05549 Cryptography and Security +1605.05551 Logic in Computer Science +1605.05552 Analysis of PDEs +1605.05555 Probability +1605.05556 Quantum Gases +1605.05557 Statistical Mechanics +1605.05558 Optimization and Control +1605.05560 Information Theory +1605.05561 Quantum Algebra +1605.05564 Analysis of PDEs +1605.05566 General Literature +1605.05570 Space Physics +1605.05571 Combinatorics +1605.05575 Cosmology and Nongalactic Astrophysics +1605.05576 Earth and Planetary Astrophysics +1605.05577 Complex Variables +1605.05580 Computers and Society +1605.05583 Differential Geometry +1605.05586 General Physics +1605.05589 High Energy Astrophysical Phenomena +1605.05593 +1605.05598 +1605.05599 Combinatorics +1605.05601 Combinatorics +1605.05602 Methodology +1605.05604 Probability +1605.05611 Solar and Stellar Astrophysics +1605.05612 Logic +1605.05615 Statistics Theory +1605.05619 Distributed, Parallel, and Cluster Computing +1605.05621 +1605.05627 Phenomenology +1605.05628 Learning +1605.05629 Computational Geometry +1605.05630 General Topology +1605.05631 Economics +1605.05632 Phenomenology +1605.05633 Information Theory +1605.05634 Quantum Algebra +1605.05636 Strongly Correlated Electrons +1605.05639 Information Theory +1605.05641 Optimization and Control +1605.05652 Computer Vision and Pattern Recognition +1605.05654 High Energy Astrophysical Phenomena +1605.05656 Operator Algebras +1605.05657 Biological Physics +1605.05660 Phenomenology +1605.05663 Popular Physics +1605.05664 +1605.05666 Materials Science +1605.05667 Combinatorics +1605.05669 Superconductivity +1605.05671 Statistics Theory +1605.05676 Artificial Intelligence +1605.05677 Plasma Physics +1605.05678 Theory +1605.05679 Complex Variables +1605.05681 Other Quantitative Biology +1605.05682 Other Quantitative Biology +1605.05684 Other Quantitative Biology +1605.05685 Other Quantitative Biology +1605.05686 Other Quantitative Biology +1605.05687 Other Quantitative Biology +1605.05688 Other Quantitative Biology +1605.05689 Analysis of PDEs +1605.05693 Information Theory +1605.05697 Machine Learning +1605.05702 Plasma Physics +1605.05703 Other Condensed Matter +1605.05705 Quantum Algebra +1605.05710 Learning +1605.05713 Information Theory +1605.05714 Numerical Analysis +1605.05715 Methodology +1605.05719 Representation Theory +math/0110235 Algebraic Geometry +math/0611442 Algebraic Geometry +math/0703151 Combinatorics +0705.1232 General Physics +0705.3895 Genomics +0706.1413 +0706.2409 +0707.3863 Probability +0801.2505 Classical Analysis and ODEs +0802.2251 +0803.3470 Materials Science +0804.4140 Optics +0812.2380 Data Analysis, Statistics and Probability +0901.0306 Phenomenology +0901.1489 Theory +0902.0292 +0902.0767 Theory +0902.1904 Theory +0902.3346 Phenomenology +0902.4041 Theory +0902.4515 Theory +0903.1096 Phenomenology +0903.1330 Phenomenology +0903.1865 Theory +0904.0429 Theory +0904.0711 Theory +0904.1748 Phenomenology +0904.2159 +0904.2272 Phenomenology +0904.4467 Theory +0905.0174 +0905.0235 Phenomenology +0905.0384 Cosmology and Nongalactic Astrophysics +0905.2433 +0905.2722 Phenomenology +0906.3263 Phenomenology +0906.5074 Mesoscale and Nanoscale Physics +0908.3385 Superconductivity +0909.2882 Fluid Dynamics +0909.4958 Chaotic Dynamics +0910.2633 Chaotic Dynamics +0911.2334 Adaptation and Self-Organizing Systems +0911.4800 Statistical Mechanics +0912.2273 Phenomenology +0912.3003 Theory +0912.3270 Phenomenology +0912.4148 Plasma Physics +1003.3942 +1003.4237 Probability +1003.4251 Probability +1005.3347 Superconductivity +1005.4113 +1008.0357 Soft Condensed Matter +1009.5845 Algebraic Geometry +1012.5844 +1101.3542 Phenomenology +1102.1098 History and Philosophy of Physics +1102.2408 Statistical Mechanics +1103.2621 +1103.5631 Accelerator Physics +1103.6223 Chaotic Dynamics +1104.3127 Chaotic Dynamics +1106.6226 Chaotic Dynamics +1108.1693 Data Analysis, Statistics and Probability +1109.1234 Theory +1111.6540 Dynamical Systems +1112.3212 Information Theory +1202.6661 High Energy Astrophysical Phenomena +1203.2588 Optics +1203.4662 Number Theory +1203.5940 Chaotic Dynamics +1204.3278 Chaotic Dynamics +1204.3917 Cosmology and Nongalactic Astrophysics +1205.0875 Chaotic Dynamics +1205.6771 +1206.2978 Optics +1206.3986 Chaotic Dynamics +1210.7528 Dynamical Systems +1211.1412 Mesoscale and Nanoscale Physics +1211.1839 Geometric Topology +1211.3140 Phenomenology +1211.3837 +1211.6317 Optics +1211.7282 Astrophysics of Galaxies +1301.0529 Complex Variables +1301.2943 Optics +1301.5945 Optics +1301.6055 Optics +1302.2965 Optics +1302.2980 Mesoscale and Nanoscale Physics +1302.5980 Optics +1303.5823 Optics +1304.0465 Geometric Topology +1304.1064 Optics +1304.1383 Statistics Theory +1304.3520 Optics +1304.6674 Optics +1304.7337 Optics +1304.7871 +1305.5909 Optics +1306.5119 Quantum Gases +1307.5077 Optics +1307.5269 Analysis of PDEs +1308.1537 Analysis of PDEs +1308.3244 High Energy Astrophysical Phenomena +1309.0077 Optics +1309.0666 Classical Analysis and ODEs +1310.5373 Group Theory +1310.6696 Geometric Topology +1310.6756 Cosmology and Nongalactic Astrophysics +1311.1863 Geometric Topology +1311.5510 Differential Geometry +1311.6855 Group Theory +1311.7014 Materials Science +1312.2361 Theory +1312.7093 Geometric Topology +1312.7609 Cosmology and Nongalactic Astrophysics +1402.1871 K-Theory and Homology +1403.2086 Lattice +1403.6654 Pattern Formation and Solitons +1403.8075 General Mathematics +1404.3442 Computer Science and Game Theory +1404.6321 Theory +1405.0414 Pattern Formation and Solitons +1405.3573 Functional Analysis +1406.1884 High Energy Astrophysical Phenomena +1407.7001 Quantum Algebra +1409.7587 Combinatorics +1409.7886 Phenomenology +1410.3846 Operator Algebras +1410.3881 +1410.6318 Geometric Topology +1411.0651 Group Theory +1411.3845 Theory +1411.6329 Geometric Topology +1501.06803 Analysis of PDEs +1502.00970 Operator Algebras +1502.03129 Theory +1502.03260 +1502.04209 Number Theory +1502.04317 Accelerator Physics +1502.05130 +1503.00271 Analysis of PDEs +1503.01424 Theory +1503.02036 Algebraic Topology +1503.03610 Differential Geometry +1503.04695 Plasma Physics +1503.05910 Differential Geometry +1503.06620 Complex Variables +1503.07410 Theory +1503.07419 Analysis of PDEs +1503.07685 Optimization and Control +1504.00727 Analysis of PDEs +1504.01034 Differential Geometry +1504.02284 +1504.02465 Theory +1504.04290 +1504.04692 Analysis of PDEs +1504.05013 Algebraic Geometry +1504.05830 Data Structures and Algorithms +1504.06079 Statistics Theory +1504.06835 Geometric Topology +1504.07439 +1504.07936 General Physics +1505.03757 Theory +1505.04212 Materials Science +1505.05859 Rings and Algebras +1505.07657 Theory +1506.00692 Symplectic Geometry +1506.01507 Computational Physics +1506.02095 Dynamical Systems +1506.02150 Analysis of PDEs +1506.02417 +1506.02598 Theory +1506.03664 Analysis of PDEs +1506.04139 Geometric Topology +1506.04441 Algebraic Geometry +1506.06975 Computation +1506.07804 Dynamical Systems +1506.08672 Differential Geometry +1507.00374 Strongly Correlated Electrons +1507.02017 Probability +1507.02287 Theory +1507.02340 Complex Variables +1507.03191 Probability +1507.03832 Quantum Gases +1507.06002 Physics and Society +1507.06607 +1507.07231 Geometric Topology +1507.08317 Superconductivity +1508.01082 Theory +1508.01640 Information Theory +1508.02007 Analysis of PDEs +1508.02197 Other Condensed Matter +1508.03521 Pattern Formation and Solitons +1508.03877 Probability +1508.06021 Information Theory +1508.06043 Dynamical Systems +1508.06722 +1508.07807 Category Theory +1509.00158 Astrophysics of Galaxies +1509.00847 Theory +1509.01073 Algebraic Topology +1509.01116 Learning +1509.01366 +1509.01725 Dynamical Systems +1509.02066 +1509.02363 Materials Science +1509.02635 Superconductivity +1509.02744 Materials Science +1509.02790 Numerical Analysis +1509.02792 Numerical Analysis +1509.03216 Algebraic Geometry +1509.03228 Algebraic Topology +1509.03600 Learning +1509.04140 Soft Condensed Matter +1509.04141 Chaotic Dynamics +1509.04645 Theory +1509.04650 Probability +1509.05206 Quantum Gases +1509.05578 Differential Geometry +1509.05699 Classical Analysis and ODEs +1509.05892 Classical Analysis and ODEs +1509.06568 +1509.07080 Probability +1509.07736 Optics +1509.08253 +1509.08309 Information Theory +1509.08607 Strongly Correlated Electrons +1509.09056 Theory +1510.00145 Analysis of PDEs +1510.00474 Applications +1510.00492 +1510.00677 Geometric Topology +1510.01054 Theory +1510.01279 +1510.02038 Statistical Mechanics +1510.02252 Dynamical Systems +1510.02338 Systems and Control +1510.04293 Astrophysics of Galaxies +1510.04556 Instrumentation and Methods for Astrophysics +1510.04648 Phenomenology +1510.04916 Spectral Theory +1510.05645 Astrophysics of Galaxies +1510.06023 Theory +1510.06234 High Energy Astrophysical Phenomena +1510.06238 +1510.06452 Data Structures and Algorithms +1510.07418 Biological Physics +1510.07476 Methodology +1510.08791 Geometric Topology +1510.09036 Materials Science +1510.09160 +1510.09220 Materials Science +1511.00587 Soft Condensed Matter +1511.01119 Algebraic Topology +1511.01959 Statistical Mechanics +1511.02269 Functional Analysis +1511.02468 +1511.03965 Molecular Networks +1511.04316 +1511.05877 Applications +1511.06168 Algebraic Topology +1511.06589 +1511.07308 Functional Analysis +1511.07338 Information Theory +1511.08034 +1511.08218 Phenomenology +1511.08371 Materials Science +1511.08746 Information Theory +1511.08749 Physics and Society +1512.00183 Rings and Algebras +1512.00503 Probability +1512.00526 Cosmology and Nongalactic Astrophysics +1512.00604 Materials Science +1512.00606 Symplectic Geometry +1512.00644 Materials Science +1512.01835 +1512.01970 Spectral Theory +1512.03273 Mesoscale and Nanoscale Physics +1512.03678 Number Theory +1512.03999 Theory +1512.04439 Mesoscale and Nanoscale Physics +1512.05450 Optics +1512.06098 Machine Learning +1512.06443 Theory +1512.06596 +1512.06859 Astrophysics of Galaxies +1512.09042 Experiment +1512.09085 Instrumentation and Methods for Astrophysics +1512.09312 Experiment +1601.00129 Numerical Analysis +1601.00723 Geometric Topology +1601.00854 Statistical Mechanics +1601.01056 +1601.01075 Instrumentation and Detectors +1601.01147 Applications +1601.01310 Theory +1601.01509 Statistical Mechanics +1601.01719 Instrumentation and Detectors +1601.01886 Combinatorics +1601.02066 Differential Geometry +1601.02496 Optics +1601.02525 Optics +1601.02776 Materials Science +1601.02933 +1601.03051 Earth and Planetary Astrophysics +1601.03052 Earth and Planetary Astrophysics +1601.03130 Statistical Mechanics +1601.03300 Phenomenology +1601.03445 Fluid Dynamics +1601.03549 Instrumentation and Detectors +1601.03726 +1601.03949 Optics +1601.03993 +1601.04030 Theory +1601.04174 Information Theory +1601.04429 Numerical Analysis +1601.04663 Theory +1601.05013 +1601.05555 +1601.05902 +1601.05931 Materials Science +1601.05944 Differential Geometry +1601.06160 Dynamical Systems +1601.06283 +1601.06724 Soft Condensed Matter +1601.06963 Phenomenology +1601.07142 +1601.07169 +1601.07239 Information Theory +1601.07545 +1601.07986 Differential Geometry +1601.08075 Algebraic Geometry +1601.08149 Exactly Solvable and Integrable Systems +1602.00083 Phenomenology +1602.00087 Optimization and Control +1602.00111 Theory +1602.00147 Physics and Society +1602.00205 Optics +1602.00209 Phenomenology +1602.00992 Representation Theory +1602.01135 +1602.01217 Theory +1602.01288 Instrumentation and Methods for Astrophysics +1602.01763 Statistical Mechanics +1602.02459 Phenomenology +1602.02737 Information Theory +1602.02936 Theory +1602.03257 +1602.03282 Other Condensed Matter +1602.03916 Theory +1602.03932 +1602.03977 Optics +1602.04029 +1602.04228 Phenomenology +1602.04315 +1602.04344 Superconductivity +1602.04436 Learning +1602.04566 Theory +1602.05083 +1602.05096 +1602.05145 Optics +1602.05405 +1602.05562 Phenomenology +1602.05763 Astrophysics of Galaxies +1602.06060 +1602.06061 +1602.06066 Phenomenology +1602.06068 +1602.06211 +1602.06270 Phenomenology +1602.06730 Experiment +1602.06840 +1602.06847 Information Theory +1602.06848 +1602.06851 Mesoscale and Nanoscale Physics +1602.06928 Strongly Correlated Electrons +1602.07020 Phenomenology +1602.07102 Statistical Mechanics +1602.07138 +1602.07226 Data Analysis, Statistics and Probability +1602.07242 Computational Physics +1602.07421 Strongly Correlated Electrons +1602.07811 Social and Information Networks +1602.07924 Strongly Correlated Electrons +1602.07949 Instrumentation and Detectors +1602.07994 Functional Analysis +1602.08102 Mesoscale and Nanoscale Physics +1602.08289 Theory +1602.08330 Complex Variables +1602.08843 Materials Science +1602.08872 +1602.08897 Quantum Gases +1602.09085 Strongly Correlated Electrons +1602.09091 Theory +1603.00420 Phenomenology +1603.00516 Physics Education +1603.01003 Statistics Theory +1603.01064 Atomic Physics +1603.01096 Computer Vision and Pattern Recognition +1603.01123 Materials Science +1603.01182 Artificial Intelligence +1603.02431 Mesoscale and Nanoscale Physics +1603.02522 +1603.02574 +1603.02595 Optimization and Control +1603.02707 Probability +1603.02793 Optics +1603.02931 +1603.03006 Phenomenology +1603.03051 Quantum Gases +1603.03064 Phenomenology +1603.03180 +1603.03445 Phenomenology +1603.03617 +1603.03717 +1603.03787 Atomic Physics +1603.03797 Phenomenology +1603.03851 Superconductivity +1603.03926 Materials Science +1603.03979 Mesoscale and Nanoscale Physics +1603.04097 Quantum Gases +1603.04195 Materials Science +1603.04231 Number Theory +1603.04431 Functional Analysis +1603.04511 +1603.04731 Phenomenology +1603.05038 Computation +1603.05051 Analysis of PDEs +1603.05500 Dynamical Systems +1603.05801 Optics +1603.06187 Disordered Systems and Neural Networks +1603.06411 Theory +1603.06576 Theory +1603.06749 +1603.07202 Spectral Theory +1603.07414 Optics +1603.07854 Phenomenology +1603.08033 Strongly Correlated Electrons +1603.08759 Probability +1603.08880 High Energy Astrophysical Phenomena +1603.09206 Statistical Mechanics +1603.09414 +1603.09456 Mesoscale and Nanoscale Physics +1603.09480 Functional Analysis +1603.09616 Materials Science +1603.09664 +1604.00208 Phenomenology +1604.00212 Phenomenology +1604.00247 Chaotic Dynamics +1604.00257 Numerical Analysis +1604.00267 Phenomenology +1604.00333 Phenomenology +1604.00403 Physics Education +1604.00418 Theory +1604.00431 Dynamical Systems +1604.00453 +1604.00547 Computational Engineering, Finance, and Science +1604.00701 Optics +1604.00769 Fluid Dynamics +1604.00813 +1604.00896 Computer Science and Game Theory +1604.00983 Strongly Correlated Electrons +1604.01207 +1604.01247 Quantum Algebra +1604.01262 Phenomenology +1604.01279 Astrophysics of Galaxies +1604.01451 Numerical Analysis +1604.01775 Astrophysics of Galaxies +1604.01963 +1604.01994 Instrumentation and Detectors +1604.02043 Quantum Algebra +1604.02225 Representation Theory +1604.02420 Phenomenology +1604.02584 Mesoscale and Nanoscale Physics +1604.02634 Machine Learning +1604.02894 Numerical Analysis +1604.03045 Phenomenology +1604.03051 Medical Physics +1604.03237 +1604.03370 Phenomenology +1604.03416 Phenomenology +1604.03479 Theory +1604.03485 Phenomenology +1604.03584 Learning +1604.03771 Strongly Correlated Electrons +1604.03970 Pattern Formation and Solitons +1604.03971 Soft Condensed Matter +1604.04108 Theory +1604.04237 Computational Physics +1604.04477 Analysis of PDEs +1604.04492 Systems and Control +1604.04572 Phenomenology +1604.04611 Phenomenology +1604.04625 High Energy Astrophysical Phenomena +1604.04869 Mesoscale and Nanoscale Physics +1604.05183 Theory +1604.05343 +1604.05438 +1604.05761 +1604.05812 Fluid Dynamics +1604.05845 Earth and Planetary Astrophysics +1604.06319 +1604.06322 Mesoscale and Nanoscale Physics +1604.06328 Earth and Planetary Astrophysics +1604.06385 +1604.06496 +1604.06520 Phenomenology +1604.06550 +1604.06662 Phenomenology +1604.06709 Phenomenology +1604.06731 Phenomenology +1604.06786 Theory +1604.06839 Probability +1604.07046 Statistical Mechanics +1604.07204 Fluid Dynamics +1604.07763 Astrophysics of Galaxies +1604.07799 +1604.07810 +1604.07934 Dynamical Systems +1604.07960 +1604.08001 Multimedia +1604.08020 +1604.08068 Fluid Dynamics +1604.08323 Analysis of PDEs +1604.08353 Classical Physics +1604.08495 +1604.08550 +1604.08619 Operator Algebras +1604.08746 Mesoscale and Nanoscale Physics +1604.08767 Phenomenology +1604.08771 History and Philosophy of Physics +1605.00133 Numerical Analysis +1605.00237 +1605.00380 Atmospheric and Oceanic Physics +1605.00524 Superconductivity +1605.00536 Accelerator Physics +1605.00893 Analysis of PDEs +1605.01070 Theory +1605.01174 Statistical Mechanics +1605.01179 Phenomenology +1605.01310 Disordered Systems and Neural Networks +1605.01338 Phenomenology +1605.01393 Solar and Stellar Astrophysics +1605.01420 +1605.01509 Superconductivity +1605.02167 Instrumentation and Detectors +1605.02172 Phenomenology +1605.02191 Chaotic Dynamics +1605.02375 Numerical Analysis +1605.02554 Mesoscale and Nanoscale Physics +1605.02575 Disordered Systems and Neural Networks +1605.02645 Data Analysis, Statistics and Probability +1605.02902 Materials Science +1605.02919 Phenomenology +1605.03206 +1605.03225 +1605.03400 Numerical Analysis +1605.03450 Number Theory +1605.03552 Theory +1605.03574 Astrophysics of Galaxies +1605.03686 Quantum Gases +1605.03748 Theory +1605.03910 Numerical Analysis +1605.04036 Fluid Dynamics +1605.04685 Mesoscale and Nanoscale Physics +1605.04828 Theory +1605.04858 Solar and Stellar Astrophysics +1605.04999 Instrumentation and Methods for Astrophysics +1605.05214 Strongly Correlated Electrons +1605.05254 +1605.05375 Statistical Mechanics +1605.05484 Theory +1605.05508 Computational Physics +1605.05562 +1605.05674 +1605.05945 Theory +1605.06040 Classical Physics +1605.06091 Phenomenology +1605.06173 Plasma Physics +1605.06346 Theory +1605.06501 Theory +1605.06711 Learning +1605.06808 High Energy Astrophysical Phenomena +1605.07155 Mesoscale and Nanoscale Physics +1605.07161 Phenomenology +1605.07174 Machine Learning +1605.07183 Phenomenology +1605.07227 Materials Science +1605.07284 Information Theory +1605.07386 +1605.07431 Combinatorics +1605.07599 Mesoscale and Nanoscale Physics +1605.07635 Solar and Stellar Astrophysics +1605.07666 +1605.07698 Atmospheric and Oceanic Physics +1605.07967 Atomic Physics +1605.07977 Disordered Systems and Neural Networks +1605.08060 Theory +1605.08202 +1605.08227 Phenomenology +1605.08435 Algebraic Geometry +1605.08487 Information Theory +1605.08572 Chemical Physics +1605.08713 Statistical Mechanics +1605.08818 Fluid Dynamics +1605.08835 Astrophysics of Galaxies +1605.09328 Molecular Networks +1605.09356 Spectral Theory +1605.09490 Statistical Mechanics +1605.09521 Instrumentation and Detectors +1605.09628 Statistical Mechanics +1606.00064 Strongly Correlated Electrons +1606.00355 Phenomenology +1606.00419 Phenomenology +1606.00455 Phenomenology +1606.00566 Atmospheric and Oceanic Physics +1606.00599 Instrumentation and Detectors +1606.00685 +1606.00810 Theory +1606.00837 Phenomenology +1606.00863 Cell Behavior +1606.01224 Materials Science +1606.01415 Fluid Dynamics +1606.01547 Materials Science +1606.01741 Phenomenology +1606.02029 +1606.02036 +1606.02136 +1606.02160 Fluid Dynamics +1606.02383 Numerical Analysis +1606.02425 Theory +1606.02523 High Energy Astrophysical Phenomena +1606.02554 Theory +1606.02589 Differential Geometry +1606.02611 Representation Theory +1606.02721 Phenomenology +1606.02745 Theory +1606.02769 Biological Physics +1606.02839 Disordered Systems and Neural Networks +1606.02880 Phenomenology +1606.03273 +1606.03334 Optics +1606.03400 Superconductivity +1606.03573 +1606.03627 Mesoscale and Nanoscale Physics +1606.03638 +1606.03640 Theory +1606.03690 +1606.03835 Fluid Dynamics +1606.03851 Information Theory +1606.03964 Instrumentation and Detectors +1606.04193 Lattice +1606.04388 +1606.04420 High Energy Astrophysical Phenomena +1606.04663 Analysis of PDEs +1606.04717 +1606.04724 Theory +1606.04744 Theory +1606.04895 High Energy Astrophysical Phenomena +1606.04921 High Energy Astrophysical Phenomena +1606.05010 Optics +1606.05080 Instrumentation and Detectors +1606.05120 Astrophysics of Galaxies +1606.05324 Theory +1606.05338 Cosmology and Nongalactic Astrophysics +1606.05376 Statistical Mechanics +1606.05434 Superconductivity +1606.05581 +1606.05695 Earth and Planetary Astrophysics +1606.06073 Instrumentation and Methods for Astrophysics +1606.06255 Dynamical Systems +1606.06260 Theory +1606.06270 Mesoscale and Nanoscale Physics +1606.06330 Probability +1606.06468 Strongly Correlated Electrons +1606.06546 Optics +1606.06652 Plasma Physics +1606.06849 +1606.06855 Plasma Physics +1606.06906 +1606.06914 Mesoscale and Nanoscale Physics +1606.07016 Phenomenology +1606.07078 Theory +1606.07191 Accelerator Physics +1606.07193 High Energy Astrophysical Phenomena +1606.07439 Astrophysics of Galaxies +1606.07482 Optics +1606.07543 Strongly Correlated Electrons +1606.07579 Adaptation and Self-Organizing Systems +1606.07732 Superconductivity +1606.07737 Phenomenology +1606.07816 Strongly Correlated Electrons +1606.07924 +1606.07930 +1606.08073 +1606.08123 Statistical Mechanics +1606.08148 Statistical Mechanics +1606.08217 General Physics +1606.08312 Mesoscale and Nanoscale Physics +1606.08429 Theory +1606.08594 +1606.08669 Strongly Correlated Electrons +1606.08882 Machine Learning +1606.08953 Theory +1606.09037 High Energy Astrophysical Phenomena +1606.09052 Quantum Algebra +1606.09119 Pattern Formation and Solitons +1606.09159 Instrumentation and Detectors +1606.09243 High Energy Astrophysical Phenomena +1606.09304 Theory +1606.09338 Mesoscale and Nanoscale Physics +1606.09410 Plasma Physics +1606.09425 Superconductivity +1607.00204 Phenomenology +1607.00241 +1607.00263 Theory +1607.00363 Physics Education +1607.00413 +1607.00617 Statistical Mechanics +1607.00654 Dynamical Systems +1607.00708 Superconductivity +1607.00728 Theory +1607.00763 Phenomenology +1607.00804 Combinatorics +1607.00822 Phenomenology +1607.00900 Phenomenology +1607.00993 Soft Condensed Matter +1607.00999 Probability +1607.01024 Cosmology and Nongalactic Astrophysics +1607.01079 Exactly Solvable and Integrable Systems +1607.01277 Theory +1607.01336 Materials Science +1607.01348 Theory +1607.01488 Accelerator Physics +1607.01495 Accelerator Physics +1607.01507 Phenomenology +1607.01571 Phenomenology +1607.01670 Phenomenology +1607.01709 Fluid Dynamics +1607.01743 Theory +1607.01767 Theory +1607.01787 Mesoscale and Nanoscale Physics +1607.01895 Computer Vision and Pattern Recognition +1607.02026 +1607.02042 High Energy Astrophysical Phenomena +1607.02074 Strongly Correlated Electrons +1607.02097 Superconductivity +1607.02240 Quantum Gases +1607.02317 Information Theory +1607.02336 Mesoscale and Nanoscale Physics +1607.02412 +1607.02475 Phenomenology +1607.02509 Quantum Gases +1607.02765 Strongly Correlated Electrons +1607.02823 Phenomenology +1607.02954 Optics +1607.02977 Mesoscale and Nanoscale Physics +1607.02984 Statistical Mechanics +1607.03028 Dynamical Systems +1607.03069 Instrumentation and Methods for Astrophysics +1607.03162 Optics +1607.03267 Earth and Planetary Astrophysics +1607.03381 Strongly Correlated Electrons +1607.03538 Strongly Correlated Electrons +1607.03616 Chaotic Dynamics +1607.03622 Astrophysics of Galaxies +1607.03641 Quantum Gases +1607.03808 Astrophysics of Galaxies +1607.03833 +1607.03857 Plasma Physics +1607.03870 Atomic and Molecular Clusters +1607.03875 +1607.03904 Astrophysics of Galaxies +1607.03912 Strongly Correlated Electrons +1607.04011 Soft Condensed Matter +1607.04015 Fluid Dynamics +1607.04016 Strongly Correlated Electrons +1607.04058 +1607.04151 +1607.04168 +1607.04191 +1607.04258 Phenomenology +1607.04465 Phenomenology +1607.04469 Populations and Evolution +1607.04483 Plasma Physics +1607.04572 Soft Condensed Matter +1607.04584 Other Condensed Matter +1607.04608 Atomic Physics +1607.04716 Materials Science +1607.04782 +1607.04794 Materials Science +1607.04977 +1607.05044 Optics +1607.05158 Optics +1607.05227 Quantum Gases +1607.05238 Superconductivity +1607.05293 Theory +1607.05438 Statistical Mechanics +1607.05580 Strongly Correlated Electrons +1607.05802 Soft Condensed Matter +1607.05814 +1607.05919 Theory +1607.06032 Computer Vision and Pattern Recognition +1607.06073 Strongly Correlated Electrons +1607.06194 Cosmology and Nongalactic Astrophysics +1607.06272 Instrumentation and Methods for Astrophysics +1607.06276 Disordered Systems and Neural Networks +1607.06321 +1607.06367 Soft Condensed Matter +1607.06414 Theory +1607.06421 Analysis of PDEs +1607.06457 Strongly Correlated Electrons +1607.06478 Numerical Analysis +1607.06516 Computational Physics +1607.06558 Phenomenology +1607.06615 High Energy Astrophysical Phenomena +1607.06635 Applications +1607.06643 Theory +1607.06668 Statistical Mechanics +1607.06727 Phenomenology +1607.06741 Phenomenology +1607.06821 Phenomenology +1607.06845 Fluid Dynamics +1607.06921 Statistics Theory +1607.06963 Optics +1607.06991 Optics +1607.07016 Statistical Mechanics +1607.07064 Atomic Physics +1607.07074 Theory +1607.07103 +1607.07147 +1607.07222 Exactly Solvable and Integrable Systems +1607.07261 +1607.07264 Optics +1607.07336 Quantum Gases +1607.07337 +1607.07340 Lattice +1607.07341 Superconductivity +1607.07406 +1607.07464 Optics +1607.07477 Optics +1607.07587 Soft Condensed Matter +1607.07613 Optics +1607.07615 Theory +1607.07711 Optics +1607.07893 Optics +1607.07907 Phenomenology +1607.07968 +1607.08007 Atomic Physics +1607.08039 +1607.08082 Solar and Stellar Astrophysics +1607.08107 Theory +1607.08129 Quantitative Methods +1607.08222 Optics +1607.08293 Materials Science +1607.08407 Optics +1607.08459 +1607.08462 +1607.08519 Disordered Systems and Neural Networks +1607.08655 Superconductivity +1607.08698 Theory +1607.08734 Materials Science +1607.08788 Cosmology and Nongalactic Astrophysics +1608.00213 Economics +1608.00256 Astrophysics of Galaxies +1608.00314 Mesoscale and Nanoscale Physics +1608.00437 Strongly Correlated Electrons +1608.00445 Theory +1608.00503 +1608.00637 Materials Science +1608.00645 Optics +1608.00688 +1608.00699 +1608.00979 +1608.00992 Mesoscale and Nanoscale Physics +1608.01159 Instrumentation and Methods for Astrophysics +1608.01177 +1608.01182 +1608.01221 Theory +1608.01317 +1608.01330 Theory +1608.01419 Biological Physics +1608.01436 Theory +1608.01476 Instrumentation and Methods for Astrophysics +1608.01600 Strongly Correlated Electrons +1608.01644 Superconductivity +1608.01657 Soft Condensed Matter +1608.01660 Theory +1608.01673 Phenomenology +1608.01675 Phenomenology +1608.01715 High Energy Astrophysical Phenomena +1608.01744 Strongly Correlated Electrons +1608.01964 Instrumentation and Methods for Astrophysics +1608.01985 Phenomenology +1608.02042 Optics +1608.02083 Statistical Mechanics +1608.02219 Spectral Theory +1608.02232 Quantum Gases +1608.02270 Phenomenology +1608.02284 Theory +1608.02361 Materials Science +1608.02422 Optics +1608.02454 Cosmology and Nongalactic Astrophysics +1608.02529 Phenomenology +1608.02576 Mesoscale and Nanoscale Physics +1608.02660 Other Condensed Matter +1608.02716 Phenomenology +1608.02735 Statistical Mechanics +1608.02762 Quantum Gases +1608.02764 High Energy Astrophysical Phenomena +1608.02855 Instrumentation and Detectors +1608.02891 Chaotic Dynamics +1608.02892 Phenomenology +1608.02907 Strongly Correlated Electrons +1608.02938 High Energy Astrophysical Phenomena +1608.02943 +1608.03103 +1608.03202 Optics +1608.03277 Theory +1608.03340 +1608.03348 High Energy Astrophysical Phenomena +1608.03409 +1608.03447 Plasma Physics +1608.03458 Phenomenology +1608.03512 Atomic Physics +1608.03520 Neurons and Cognition +1608.03633 Probability +1608.03634 Plasma Physics +1608.03756 Mesoscale and Nanoscale Physics +1608.03765 Phenomenology +1608.03776 Materials Science +1608.03848 Materials Science +1608.03864 Statistics Theory +1608.03880 High Energy Astrophysical Phenomena +1608.03881 Dynamical Systems +1608.03896 High Energy Astrophysical Phenomena +1608.04008 Data Analysis, Statistics and Probability +1608.04034 Fluid Dynamics +1608.04124 Phenomenology +1608.04360 +1608.04482 Statistical Mechanics +1608.04532 Superconductivity +1608.04607 Computational Physics +1608.04919 Phenomenology +1608.04921 Theory +1608.04948 Theory +1608.04951 Astrophysics of Galaxies +1608.04994 Astrophysics of Galaxies +1608.05055 Instrumentation and Methods for Astrophysics +1608.05120 Strongly Correlated Electrons +1608.05134 Instrumentation and Methods for Astrophysics +1608.05212 Phenomenology +1608.05234 Fluid Dynamics +1608.05238 Medical Physics +1608.05250 Optics +1608.05286 Medical Physics +1608.05294 Mesoscale and Nanoscale Physics +1608.05336 Theory +1608.05353 Phenomenology +1608.05361 Fluid Dynamics +1608.05450 Materials Science +1608.05508 Solar and Stellar Astrophysics +1608.05513 Artificial Intelligence +1608.05520 Solar and Stellar Astrophysics +1608.05553 Pattern Formation and Solitons +1608.05576 Spectral Theory +1608.05642 Optics +1608.05703 Soft Condensed Matter +1608.05760 Soft Condensed Matter +1608.05800 Materials Science +1608.05806 Data Analysis, Statistics and Probability +1608.05894 Theory +1608.05906 Phenomenology +1608.05908 Theory +1608.05991 Strongly Correlated Electrons +1608.06035 Strongly Correlated Electrons +1608.06162 Other Condensed Matter +1608.06184 Differential Geometry +1608.06187 +1608.06209 +1608.06287 Theory +1608.06331 +1608.06410 Mesoscale and Nanoscale Physics +1608.06414 Materials Science +1608.06482 Mesoscale and Nanoscale Physics +1608.06493 +1608.06600 Theory +1608.06603 Optics +1608.06634 Strongly Correlated Electrons +1608.06641 Theory +1608.06772 Earth and Planetary Astrophysics +1608.06870 Chemical Physics +1608.06915 Fluid Dynamics +1608.07046 Performance +1608.07065 Statistical Mechanics +1608.07118 +1608.07123 Strongly Correlated Electrons +1608.07178 High Energy Astrophysical Phenomena +1608.07309 Numerical Analysis +1608.07320 Chemical Physics +1608.07407 Phenomenology +1608.07417 Cosmology and Nongalactic Astrophysics +1608.07428 Solar and Stellar Astrophysics +1608.07517 Materials Science +1608.07582 Theory +1608.07765 Materials Science +1608.07767 Information Theory +1608.07806 +1608.07903 Phenomenology +1608.07926 Number Theory +1608.07954 Astrophysics of Galaxies +1608.07971 +1608.08093 Atomic Physics +1608.08120 Phenomenology +1608.08145 Solar and Stellar Astrophysics +1608.08195 Materials Science +1608.08244 Plasma Physics +1608.08263 Probability +1608.08345 Instrumentation and Detectors +1608.08357 Mesoscale and Nanoscale Physics +1608.08595 Theory +1608.08626 High Energy Astrophysical Phenomena +1608.08705 +1608.08706 +1608.08777 Phenomenology +1608.08822 +1608.08845 General Physics +1608.08880 High Energy Astrophysical Phenomena +1608.09011 Theory +1609.00007 Theory +1609.00026 Theory +1609.00035 Instrumentation and Methods for Astrophysics +1609.00058 Materials Science +1609.00186 Soft Condensed Matter +1609.00194 Quantum Gases +1609.00235 Biological Physics +1609.00240 Quantum Gases +1609.00248 +1609.00272 Chemical Physics +1609.00324 Numerical Analysis +1609.00332 Materials Science +1609.00390 Disordered Systems and Neural Networks +1609.00395 Differential Geometry +1609.00534 Solar and Stellar Astrophysics +1609.00564 Statistical Mechanics +1609.00649 +1609.00714 Phenomenology +1609.00716 Theory +1609.00746 Phenomenology +1609.00760 Optics +1609.00863 Materials Science +1609.00872 Theory +1609.00918 Fluid Dynamics +1609.00929 High Energy Astrophysical Phenomena +1609.00975 Theory +1609.00985 Strongly Correlated Electrons +1609.01024 Phenomenology +1609.01040 Experiment +1609.01059 Solar and Stellar Astrophysics +1609.01091 High Energy Astrophysical Phenomena +1609.01157 Astrophysics of Galaxies +1609.01199 Solar and Stellar Astrophysics +1609.01216 Phenomenology +1609.01248 Mesoscale and Nanoscale Physics +1609.01251 Statistical Mechanics +1609.01311 Theory +1609.01429 Number Theory +1609.01573 Lattice +1609.01620 Statistical Mechanics +1609.01678 Sound +1609.01706 Classical Analysis and ODEs +1609.01731 +1609.01752 Materials Science +1609.01758 +1609.01904 Solar and Stellar Astrophysics +1609.01957 Materials Science +1609.02107 Information Theory +1609.02164 Quantum Gases +1609.02176 Strongly Correlated Electrons +1609.02338 Materials Science +1609.02378 +1609.02423 Computer Science and Game Theory +1609.02456 Systems and Control +1609.02474 Mesoscale and Nanoscale Physics +1609.02488 Solar and Stellar Astrophysics +1609.02514 Theory +1609.02550 Theory +1609.02551 Atomic Physics +1609.02557 Astrophysics of Galaxies +1609.02558 Theory +1609.02560 Strongly Correlated Electrons +1609.02569 Astrophysics of Galaxies +1609.02601 Fluid Dynamics +1609.02663 Strongly Correlated Electrons +1609.02681 +1609.02877 +1609.02937 Cosmology and Nongalactic Astrophysics +1609.02951 High Energy Astrophysical Phenomena +1609.02952 Experiment +1609.03018 Phenomenology +1609.03040 Astrophysics of Galaxies +1609.03052 Phenomenology +1609.03100 Solar and Stellar Astrophysics +1609.03113 Quantum Gases +1609.03196 +1609.03343 +1609.03425 High Energy Astrophysical Phenomena +1609.03434 Superconductivity +1609.03477 Astrophysics of Galaxies +1609.03577 Cosmology and Nongalactic Astrophysics +1609.03614 Software Engineering +1609.03684 Optics +1609.03685 Chemical Physics +1609.03698 Phenomenology +1609.03742 Mesoscale and Nanoscale Physics +1609.04004 Strongly Correlated Electrons +1609.04011 Phenomenology +1609.04036 Theory +1609.04076 Astrophysics of Galaxies +1609.04284 Phenomenology +1609.04343 Phenomenology +1609.04355 Phenomenology +1609.04380 Soft Condensed Matter +1609.04401 Cosmology and Nongalactic Astrophysics +1609.04413 High Energy Astrophysical Phenomena +1609.04416 Earth and Planetary Astrophysics +1609.04534 Optics +1609.04537 Phenomenology +1609.04538 Experiment +1609.04591 Mesoscale and Nanoscale Physics +1609.04605 Phenomenology +1609.04648 Artificial Intelligence +1609.04675 Optimization and Control +1609.04702 Theory +1609.04790 Phenomenology +1609.04806 Theory +1609.04863 +1609.04954 Solar and Stellar Astrophysics +1609.05022 Theory +1609.05029 Phenomenology +1609.05030 High Energy Astrophysical Phenomena +1609.05053 Earth and Planetary Astrophysics +1609.05062 Theory +1609.05114 Lattice +1609.05214 Astrophysics of Galaxies +1609.05250 Instrumentation and Detectors +1609.05290 Solar and Stellar Astrophysics +1609.05293 Databases +1609.05350 Optics +1609.05377 Astrophysics of Galaxies +1609.05379 Numerical Analysis +1609.05417 Atomic Physics +1609.05467 Experiment +1609.05584 Chaotic Dynamics +1609.05589 Phenomenology +1609.05652 Phenomenology +1609.05668 +1609.05711 Phenomenology +1609.05737 Materials Science +1609.05770 Theory +1609.05826 Number Theory +1609.06014 Theory +1609.06211 Atomic Physics +1609.06251 Theory +1609.06271 Theory +1609.06293 +1609.06361 Statistical Mechanics +1609.06363 Numerical Analysis +1609.06387 Solar and Stellar Astrophysics +1609.06446 Astrophysics of Galaxies +1609.06449 +1609.06466 Lattice +1609.06603 Plasma Physics +1609.06631 Experiment +1609.06650 Solar and Stellar Astrophysics +1609.06722 Phenomenology +1609.06748 Soft Condensed Matter +1609.06969 Phenomenology +1609.07227 Materials Science +1609.07266 Solar and Stellar Astrophysics +1609.07275 Statistical Mechanics +1609.07314 Geophysics +1609.07369 Astrophysics of Galaxies +1609.07416 Solar and Stellar Astrophysics +1609.07465 +1609.07477 Theory +1609.07492 Solar and Stellar Astrophysics +1609.07739 Solar and Stellar Astrophysics +1609.07754 Chemical Physics +1609.07822 Mesoscale and Nanoscale Physics +1609.07913 Chemical Physics +1609.07921 Theory +1609.08019 Atomic Physics +1609.08044 Solar and Stellar Astrophysics +1609.08055 Phenomenology +1609.08068 Medical Physics +1609.08081 Plasma Physics +1609.08165 Theory +1609.08294 Mesoscale and Nanoscale Physics +1609.08339 Cosmology and Nongalactic Astrophysics +1609.08413 Phenomenology +1609.08450 Physics and Society +1609.08480 Theory +1609.08528 +1609.08543 Solar and Stellar Astrophysics +1609.08591 Atomic Physics +1609.08731 Adaptation and Self-Organizing Systems +1609.08772 Astrophysics of Galaxies +1609.08802 Superconductivity +1609.08985 Optics +1609.09009 Statistical Mechanics +1609.09023 +1609.09032 Instrumentation and Methods for Astrophysics +1609.09052 Probability +1609.09061 Theory +1609.09079 Phenomenology +1609.09112 Astrophysics of Galaxies +1609.09179 Data Structures and Algorithms +1609.09183 High Energy Astrophysical Phenomena +1609.09231 Sound +1609.09255 Mesoscale and Nanoscale Physics +1609.09273 Theory +1609.09289 +1609.09752 Atomic Physics +1609.09834 Theory +1609.09852 +1610.00014 Astrophysics of Galaxies +1610.00051 Chemical Physics +1610.00123 Theory +1610.00126 Accelerator Physics +1610.00141 Fluid Dynamics +1610.00153 Phenomenology +1610.00156 Materials Science +1610.00285 Mesoscale and Nanoscale Physics +1610.00339 Strongly Correlated Electrons +1610.00556 Mesoscale and Nanoscale Physics +1610.00595 Theory +1610.00840 Cosmology and Nongalactic Astrophysics +1610.00877 Earth and Planetary Astrophysics +1610.00880 Astrophysics of Galaxies +1610.00894 Materials Science +1610.00910 Phenomenology +1610.00943 Theory +1610.00989 Cosmology and Nongalactic Astrophysics +1610.01041 Superconductivity +1610.01142 +1610.01158 Astrophysics of Galaxies +1610.01166 Phenomenology +1610.01173 Earth and Planetary Astrophysics +1610.01273 Materials Science +1610.01284 Chemical Physics +1610.01336 Earth and Planetary Astrophysics +1610.01420 Materials Science +1610.01429 Theory +1610.01497 Theory +1610.01514 Phenomenology +1610.01558 Theory +1610.01608 Phenomenology +1610.01609 Astrophysics of Galaxies +1610.01638 Astrophysics of Galaxies +1610.01730 Atomic Physics +1610.01843 Phenomenology +1610.01927 Solar and Stellar Astrophysics +1610.01990 Instrumentation and Methods for Astrophysics +1610.02021 Instrumentation and Detectors +1610.02040 High Energy Astrophysical Phenomena +1610.02042 Astrophysics of Galaxies +1610.02116 Theory +1610.02259 Phenomenology +1610.02272 Phenomenology +1610.02370 Lattice +1610.02576 +1610.02650 Cosmology and Nongalactic Astrophysics +1610.02784 Theory +1610.02848 Earth and Planetary Astrophysics +1610.02989 Solar and Stellar Astrophysics +1610.03074 Phenomenology +1610.03081 Theory +1610.03197 Mesoscale and Nanoscale Physics +1610.03247 Phenomenology +1610.03249 Plasma Physics +1610.03254 Solar and Stellar Astrophysics +1610.03273 Mesoscale and Nanoscale Physics +1610.03333 Phenomenology +1610.03487 Cosmology and Nongalactic Astrophysics +1610.03489 Instrumentation and Methods for Astrophysics +1610.03656 Astrophysics of Galaxies +1610.03699 Mesoscale and Nanoscale Physics +1610.03732 Astrophysics of Galaxies +1610.03746 Superconductivity +1610.03758 +1610.03778 Astrophysics of Galaxies +1610.03785 Materials Science +1610.03800 Solar and Stellar Astrophysics +1610.03852 Astrophysics of Galaxies +1610.03866 Biological Physics +1610.03877 Astrophysics of Galaxies +1610.03979 Phenomenology +1610.03985 Logic +1610.04059 Strongly Correlated Electrons +1610.04060 Atomic and Molecular Clusters +1610.04082 +1610.04146 Mesoscale and Nanoscale Physics +1610.04202 Theory +1610.04264 Astrophysics of Galaxies +1610.04269 Astrophysics of Galaxies +1610.04307 Solar and Stellar Astrophysics +1610.04363 Materials Science +1610.04481 Plasma Physics +1610.04567 Phenomenology +1610.04569 High Energy Astrophysical Phenomena +1610.04621 Astrophysics of Galaxies +1610.04729 Phenomenology +1610.04860 Quantum Gases +1610.04867 High Energy Astrophysical Phenomena +1610.04966 +1610.04975 Phenomenology +1610.05109 Mesoscale and Nanoscale Physics +1610.05161 Instrumentation and Detectors +1610.05195 Soft Condensed Matter +1610.05219 High Energy Astrophysical Phenomena +1610.05307 Earth and Planetary Astrophysics +1610.05475 Solar and Stellar Astrophysics +1610.05618 Dynamical Systems +1610.05619 High Energy Astrophysical Phenomena +1610.05662 +1610.05676 +1610.05689 Astrophysics of Galaxies +1610.05705 Earth and Planetary Astrophysics +1610.05752 High Energy Astrophysical Phenomena +1610.05772 High Energy Astrophysical Phenomena +1610.05877 Instrumentation and Detectors +1610.05910 Astrophysics of Galaxies +1610.05978 Astrophysics of Galaxies +1610.06059 Classical Physics +1610.06180 Solar and Stellar Astrophysics +1610.06182 High Energy Astrophysical Phenomena +1610.06216 Instrumentation and Methods for Astrophysics +1610.06225 Soft Condensed Matter +1610.06255 Theory +1610.06260 +1610.06377 Materials Science +1610.06396 Astrophysics of Galaxies +1610.06444 +1610.06508 Phenomenology +1610.06709 Quantum Gases +1610.06797 +1610.06989 Materials Science +1610.07003 Cosmology and Nongalactic Astrophysics +1610.07106 Optics +1610.07166 Instrumentation and Detectors +1610.07170 Accelerator Physics +1610.07211 +1610.07265 Astrophysics of Galaxies +1610.07451 Materials Science +1610.07544 Astrophysics of Galaxies +1610.07546 Representation Theory +1610.07609 Solar and Stellar Astrophysics +1610.07699 Astrophysics of Galaxies +1610.07704 Solar and Stellar Astrophysics +1610.07745 Phenomenology +1610.07819 High Energy Astrophysical Phenomena +1610.07826 Strongly Correlated Electrons +1610.07851 Statistical Mechanics +1610.07898 Phenomenology +1610.07947 Astrophysics of Galaxies +1610.08082 +1610.08184 Cosmology and Nongalactic Astrophysics +1610.08185 Solar and Stellar Astrophysics +1610.08502 Earth and Planetary Astrophysics +1610.08517 High Energy Astrophysical Phenomena +1610.08554 Astrophysics of Galaxies +1610.08582 +1610.08641 Superconductivity +1610.08688 Solar and Stellar Astrophysics +1610.08708 Physics and Society +1610.09015 Phenomenology +1610.09021 Mesoscale and Nanoscale Physics +1610.09043 Astrophysics of Galaxies +1610.09086 Quantum Gases +1610.09134 Earth and Planetary Astrophysics +1610.09150 Superconductivity +1610.09152 Information Theory +1610.09228 High Energy Astrophysical Phenomena +1610.09255 Solar and Stellar Astrophysics +1610.09257 General Physics +1610.09282 Solar and Stellar Astrophysics +1610.09308 Biological Physics +1610.09353 Disordered Systems and Neural Networks +1610.09479 Mesoscale and Nanoscale Physics +1610.09695 Mesoscale and Nanoscale Physics +1610.09798 Astrophysics of Galaxies +1610.09848 Plasma Physics +1610.09932 Data Analysis, Statistics and Probability +1610.10072 Astrophysics of Galaxies +1611.00007 Earth and Planetary Astrophysics +1611.00082 Numerical Analysis +1611.00091 Astrophysics of Galaxies +1611.00125 Phenomenology +1611.00139 Astrophysics of Galaxies +1611.00236 +1611.00263 Information Theory +1611.00318 Strongly Correlated Electrons +1611.00334 Solar and Stellar Astrophysics +1611.00346 Solar and Stellar Astrophysics +1611.00475 Solar and Stellar Astrophysics +1611.00520 Soft Condensed Matter +1611.00587 Soft Condensed Matter +1611.00611 +1611.00614 Mesoscale and Nanoscale Physics +1611.00642 Mesoscale and Nanoscale Physics +1611.00758 Instrumentation and Methods for Astrophysics +1611.00768 Astrophysics of Galaxies +1611.00776 Mesoscale and Nanoscale Physics +1611.00777 Astrophysics of Galaxies +1611.00802 Cosmology and Nongalactic Astrophysics +1611.00816 High Energy Astrophysical Phenomena +1611.00849 Solar and Stellar Astrophysics +1611.00927 +1611.01009 Information Theory +1611.01218 +1611.01227 Mesoscale and Nanoscale Physics +1611.01288 Number Theory +1611.01293 Chemical Physics +1611.01538 Earth and Planetary Astrophysics +1611.01596 Instrumentation and Methods for Astrophysics +1611.01612 Strongly Correlated Electrons +1611.01671 Instrumentation and Detectors +1611.01762 Materials Science +1611.01770 +1611.01798 Solar and Stellar Astrophysics +1611.01859 Phenomenology +1611.01986 Superconductivity +1611.02127 Astrophysics of Galaxies +1611.02136 +1611.02282 Astrophysics of Galaxies +1611.02289 High Energy Astrophysical Phenomena +1611.02306 High Energy Astrophysical Phenomena +1611.02502 Astrophysics of Galaxies +1611.02876 Astrophysics of Galaxies +1611.02999 Fluid Dynamics +1611.03049 Quantum Gases +1611.03123 Plasma Physics +1611.03150 Materials Science +1611.03173 Fluid Dynamics +1611.03200 Statistical Mechanics +1611.03289 Space Physics +1611.03326 Theory +1611.03359 +1611.03546 Optics +1611.03551 Chaotic Dynamics +1611.03563 Astrophysics of Galaxies +1611.03587 Solar and Stellar Astrophysics +1611.03617 Phenomenology +1611.03640 Chemical Physics +1611.03658 High Energy Astrophysical Phenomena +1611.03709 Mesoscale and Nanoscale Physics +1611.03792 Plasma Physics +1611.03803 Strongly Correlated Electrons +1611.03816 Strongly Correlated Electrons +1611.03881 Instrumentation and Detectors +1611.03916 Other Condensed Matter +1611.04073 Fluid Dynamics +1611.04096 Quantum Algebra +1611.04270 Astrophysics of Galaxies +1611.04373 Differential Geometry +1611.04375 +1611.04378 Geometric Topology +1611.04386 Mesoscale and Nanoscale Physics +1611.04451 Plasma Physics +1611.04555 Soft Condensed Matter +1611.04612 Theory +1611.04622 Solar and Stellar Astrophysics +1611.04802 Space Physics +1611.04875 Atomic Physics +1611.05135 High Energy Astrophysical Phenomena +1611.05156 Atomic Physics +1611.05179 Instrumentation and Methods for Astrophysics +1611.05395 Earth and Planetary Astrophysics +1611.05452 Cosmology and Nongalactic Astrophysics +1611.05464 Mesoscale and Nanoscale Physics +1611.05495 Materials Science +1611.05505 Solar and Stellar Astrophysics +1611.05600 Analysis of PDEs +1611.05648 Phenomenology +1611.05687 Mesoscale and Nanoscale Physics +1611.05781 Mesoscale and Nanoscale Physics +1611.06096 Popular Physics +1611.06109 Mesoscale and Nanoscale Physics +1611.06281 Plasma Physics +1611.06286 Soft Condensed Matter +1611.06324 Statistical Mechanics +1611.06390 Lattice +1611.06578 Solar and Stellar Astrophysics +1611.06649 Computation +1611.06820 Strongly Correlated Electrons +1611.06934 Cosmology and Nongalactic Astrophysics +1611.06966 Astrophysics of Galaxies +1611.07162 Solar and Stellar Astrophysics +1611.07250 +1611.07283 Chemical Physics +1611.07331 Optics +1611.07389 Astrophysics of Galaxies +1611.07568 Soft Condensed Matter +1611.07731 Plasma Physics +1611.07737 +1611.07813 Strongly Correlated Electrons +1611.07835 +1611.07880 Algebraic Geometry +1611.07966 Cosmology and Nongalactic Astrophysics +1611.07976 Astrophysics of Galaxies +1611.08065 Mesoscale and Nanoscale Physics +1611.08179 Mesoscale and Nanoscale Physics +1611.08216 Instrumentation and Methods for Astrophysics +1611.08376 Astrophysics of Galaxies +1611.08450 Phenomenology +1611.08544 Group Theory +1611.08695 +1611.08702 Phenomenology +1611.08735 Earth and Planetary Astrophysics +1611.09101 +1611.09658 Earth and Planetary Astrophysics +1611.09699 General Physics +1611.09713 Instrumentation and Methods for Astrophysics +1611.09721 Rings and Algebras +1611.09761 Solar and Stellar Astrophysics +1611.09787 Cosmology and Nongalactic Astrophysics +1611.09825 Adaptation and Self-Organizing Systems +1611.09869 High Energy Astrophysical Phenomena +1611.10032 Solar and Stellar Astrophysics +1611.10119 +1611.10137 Mesoscale and Nanoscale Physics +1611.10196 Phenomenology +1612.00253 Solar and Stellar Astrophysics +1612.00333 Earth and Planetary Astrophysics +1612.00544 Differential Geometry +1612.00912 Optics +1612.01059 +1612.01532 Solar and Stellar Astrophysics +1612.01622 Solar and Stellar Astrophysics +1612.01723 Theory +1612.01750 Materials Science +1612.02239 Superconductivity +1612.02966 +1612.03045 Instrumentation and Methods for Astrophysics +1612.03086 Computational Complexity +1612.03126 Materials Science +1612.03162 Algebraic Geometry +1612.03193 Physics and Society +1612.03305 Astrophysics of Galaxies +1612.03366 Solar and Stellar Astrophysics +1612.03476 High Energy Astrophysical Phenomena +1612.03679 Instrumentation and Methods for Astrophysics +1612.03887 Space Physics +1612.03909 Cosmology and Nongalactic Astrophysics +1612.04028 Sound +1612.04177 +1612.04259 Solar and Stellar Astrophysics +1612.04267 Algebraic Topology +1612.04362 Astrophysics of Galaxies +1612.04479 +1612.04517 High Energy Astrophysical Phenomena +1612.04794 Data Structures and Algorithms +1612.04823 +1612.04912 Phenomenology +1612.04959 +1612.05107 Materials Science +1612.05222 Data Structures and Algorithms +1612.05320 Formal Languages and Automata Theory +1612.05361 Algebraic Geometry +1612.05472 Plasma Physics +1612.05534 Combinatorics +1612.05535 +1612.05553 Phenomenology +1612.05560 Instrumentation and Methods for Astrophysics +1612.05687 Phenomenology +1612.05861 +1612.05992 Mesoscale and Nanoscale Physics +1612.06043 Computation and Language +1612.06100 Optimization and Control +1612.06109 Statistics Theory +1612.06174 Emerging Technologies +1612.06177 Fluid Dynamics +1612.06292 +1612.06374 Statistical Mechanics +1612.06377 +1612.06379 Phenomenology +1612.06380 Instrumentation and Methods for Astrophysics +1612.06381 Astrophysics of Galaxies +1612.06386 Theory +1612.06387 Astrophysics of Galaxies +1612.06388 Algebraic Geometry +1612.06391 Social and Information Networks +1612.06392 Quantum Gases +1612.06393 Theory +1612.06394 Solar and Stellar Astrophysics +1612.06395 Theory +1612.06396 +1612.06398 Astrophysics of Galaxies +1612.06399 Theory +1612.06403 Phenomenology +1612.06404 Methodology +1612.06405 Astrophysics of Galaxies +1612.06408 Probability +1612.06409 Earth and Planetary Astrophysics +1612.06411 Phenomenology +1612.06412 Phenomenology +1612.06413 Phenomenology +1612.06414 Theory +1612.06415 Astrophysics of Galaxies +1612.06416 Mesoscale and Nanoscale Physics +1612.06422 Atmospheric and Oceanic Physics +1612.06423 Computer Vision and Pattern Recognition +1612.06425 Biological Physics +1612.06426 Phenomenology +1612.06428 Astrophysics of Galaxies +1612.06429 High Energy Astrophysical Phenomena +1612.06432 Quantum Gases +1612.06434 Solar and Stellar Astrophysics +1612.06435 Computer Vision and Pattern Recognition +1612.06436 Phenomenology +1612.06437 Probability +1612.06438 Materials Science +1612.06439 Physics and Society +1612.06440 Statistical Mechanics +1612.06442 Medical Physics +1612.06443 Computer Vision and Pattern Recognition +1612.06446 Theory +1612.06447 Metric Geometry +1612.06448 Information Theory +1612.06449 Dynamical Systems +1612.06450 Plasma Physics +1612.06451 Networking and Internet Architecture +1612.06452 Astrophysics of Galaxies +1612.06454 Computer Vision and Pattern Recognition +1612.06455 Classical Physics +1612.06456 Number Theory +1612.06458 Robotics +1612.06460 +1612.06461 Lattice +1612.06466 Optics +1612.06468 Computation +1612.06469 Cosmology and Nongalactic Astrophysics +1612.06470 Machine Learning +1612.06472 Statistical Mechanics +1612.06475 Computation and Language +1612.06477 Physics and Society +1612.06478 Optics +1612.06480 Differential Geometry +1612.06483 Numerical Analysis +1612.06484 Optimization and Control +1612.06485 +1612.06486 Soft Condensed Matter +1612.06489 Analysis of PDEs +1612.06490 Phenomenology +1612.06491 +1612.06493 Dynamical Systems +1612.06496 Computer Vision and Pattern Recognition +1612.06497 Soft Condensed Matter +1612.06498 Optimization and Control +1612.06501 Analysis of PDEs +1612.06502 Soft Condensed Matter +1612.06503 Soft Condensed Matter +1612.06508 Computer Vision and Pattern Recognition +1612.06511 Phenomenology +1612.06512 Strongly Correlated Electrons +1612.06514 Theory +1612.06515 +1612.06516 Optimization and Control +1612.06517 +1612.06518 Computation +1612.06519 Computer Vision and Pattern Recognition +1612.06523 Combinatorics +1612.06524 Computer Vision and Pattern Recognition +1612.06525 Logic +1612.06526 Logic +1612.06530 Computer Vision and Pattern Recognition +1612.06531 Number Theory +1612.06532 Statistical Mechanics +1612.06533 Optimization and Control +1612.06534 +1612.06535 Cosmology and Nongalactic Astrophysics +1612.06539 Combinatorics +1612.06540 High Energy Astrophysical Phenomena +1612.06541 Category Theory +1612.06543 Computer Vision and Pattern Recognition +1612.06545 Probability +1612.06546 +1612.06547 Methodology +1612.06548 Phenomenology +1612.06552 +1612.06553 Information Theory +1612.06554 Populations and Evolution +1612.06555 Mesoscale and Nanoscale Physics +1612.06557 Symplectic Geometry +1612.06558 Computer Vision and Pattern Recognition +1612.06559 Cosmology and Nongalactic Astrophysics +1612.06560 Functional Analysis +1612.06562 Materials Science +1612.06563 Number Theory +1612.06565 Quantitative Methods +1612.06566 +1612.06567 Complex Variables +1612.06569 Phenomenology +1612.06570 Solar and Stellar Astrophysics +1612.06571 Statistics Theory +1612.06573 Computer Vision and Pattern Recognition +1612.06576 Combinatorics +1612.06577 Number Theory +1612.06578 Quantum Gases +1612.06579 +1612.06580 Computational Physics +1612.06581 Computation and Language +1612.06582 Solar and Stellar Astrophysics +1612.06584 Group Theory +1612.06585 Phenomenology +1612.06586 High Energy Astrophysical Phenomena +1612.06587 Optimization and Control +1612.06588 Physics and Society +1612.06590 Fluid Dynamics +1612.06591 +1612.06592 Instrumentation and Methods for Astrophysics +1612.06593 Algebraic Geometry +1612.06595 Cosmology and Nongalactic Astrophysics +1612.06596 Analysis of PDEs +1612.06598 Machine Learning +1612.06599 Combinatorics +1612.06601 Methodology +1612.06602 Logic +1612.06603 General Mathematics +1612.06604 Analysis of PDEs +1612.06605 Mesoscale and Nanoscale Physics +1612.06606 Logic +1612.06608 Strongly Correlated Electrons +1612.06609 Combinatorics +1612.06610 Analysis of PDEs +1612.06611 Phenomenology +1612.06615 Computer Vision and Pattern Recognition +1612.06617 Materials Science +1612.06618 Statistics Theory +1612.06619 Phenomenology +1612.06623 Learning +1612.06624 Solar and Stellar Astrophysics +1612.06625 Number Theory +1612.06626 Phenomenology +1612.06627 Mesoscale and Nanoscale Physics +1612.06628 Quantum Algebra +1612.06636 Solar and Stellar Astrophysics +1612.06641 Instrumentation and Detectors +1612.06642 Sound +1612.06643 Solar and Stellar Astrophysics +1612.06644 Physics and Society +1612.06645 +1612.06647 Statistics Theory +1612.06649 Information Theory +1612.06650 Quantitative Methods +1612.06651 General Topology +1612.06654 Mathematical Finance +1612.06655 Numerical Analysis +1612.06656 Instrumentation and Methods for Astrophysics +1612.06657 +1612.06659 Theory +1612.06661 Probability +1612.06662 Statistical Mechanics +1612.06664 Instrumentation and Detectors +1612.06665 Pricing of Securities +1612.06666 Mesoscale and Nanoscale Physics +1612.06667 Mesoscale and Nanoscale Physics +1612.06668 Programming Languages +1612.06669 Optimization and Control +1612.06671 Computation and Language +1612.06672 Numerical Analysis +1612.06674 Rings and Algebras +1612.06675 Data Structures and Algorithms +1612.06677 General Physics +1612.06678 Differential Geometry +1612.06682 Quantum Gases +1612.06683 Strongly Correlated Electrons +1612.06684 Soft Condensed Matter +1612.06685 Computation and Language +1612.06686 Information Theory +1612.06687 Numerical Analysis +1612.06688 Quantum Algebra +1612.06690 Numerical Analysis +1612.06692 Strongly Correlated Electrons +1612.06693 Optimization and Control +1612.06696 General Physics +1612.06698 Atomic Physics +1612.06700 History and Overview +1612.06701 Combinatorics +1612.06703 Computer Vision and Pattern Recognition +1612.06704 Computer Vision and Pattern Recognition +1612.06706 General Physics +1612.06707 +1612.06711 Quantum Gases +1612.06713 Number Theory +1612.06714 High Energy Astrophysical Phenomena +1612.06717 Dynamical Systems +1612.06719 Neurons and Cognition +1612.06720 Earth and Planetary Astrophysics +1612.06721 Phenomenology +1612.06723 Exactly Solvable and Integrable Systems +1612.06724 Optimization and Control +1612.06725 +1612.06727 +1612.06729 Classical Analysis and ODEs +1612.06731 Mesoscale and Nanoscale Physics +1612.06733 +1612.06734 Plasma Physics +1612.06735 Populations and Evolution +1612.06736 Differential Geometry +1612.06737 Commutative Algebra +1612.06738 Computer Vision and Pattern Recognition +1612.06740 Programming Languages +1612.06741 Medical Physics +1612.06743 +1612.06745 Cosmology and Nongalactic Astrophysics +1612.06748 Distributed, Parallel, and Cluster Computing +1612.06749 Distributed, Parallel, and Cluster Computing +1612.06750 Astrophysics of Galaxies +1612.06751 Probability +1612.06752 Numerical Analysis +1612.06753 Information Retrieval +1612.06754 +1612.06755 Lattice +1612.06756 Strongly Correlated Electrons +1612.06758 Statistical Mechanics +1612.06760 Metric Geometry +1612.06762 Mesoscale and Nanoscale Physics +1612.06767 Metric Geometry +1612.06768 Analysis of PDEs +1612.06770 Materials Science +1612.06773 Algebraic Geometry +1612.06774 +1612.06777 +1612.06779 Mesoscale and Nanoscale Physics +1612.06781 +1612.06783 Analysis of PDEs +1612.06784 Optimization and Control +1612.06785 Materials Science +1612.06786 Geometric Topology +1612.06790 Numerical Analysis +1612.06791 Classical Analysis and ODEs +1612.06793 Algebraic Topology +1612.06796 Plasma Physics +1612.06797 Combinatorics +1612.06798 Materials Science +1612.06799 Cosmology and Nongalactic Astrophysics +1612.06800 Representation Theory +1612.06801 Geometric Topology +1612.06802 Materials Science +1612.06803 Phenomenology +1612.06804 +1612.06806 +1612.06808 Analysis of PDEs +1612.06809 Information Theory +1612.06810 Algebraic Geometry +1612.06812 +1612.06813 Analysis of PDEs +1612.06815 Differential Geometry +1612.06816 Combinatorics +1612.06817 Astrophysics of Galaxies +1612.06818 Complex Variables +1612.06820 History and Overview +1612.06821 Computation and Language +1612.06822 Mesoscale and Nanoscale Physics +1612.06823 Theory +1612.06824 Optics +1612.06826 +1612.06829 Solar and Stellar Astrophysics +1612.06830 Operating Systems +1612.06831 +1612.06832 Social and Information Networks +1612.06833 Applications +1612.06834 Soft Condensed Matter +1612.06835 Probability +1612.06836 Computer Vision and Pattern Recognition +1612.06837 Astrophysics of Galaxies +1612.06838 +1612.06839 Optimization and Control +1612.06842 Complex Variables +1612.06844 Information Theory +1612.06845 Combinatorics +1612.06846 Mesoscale and Nanoscale Physics +1612.06847 Theory +1612.06851 Computer Vision and Pattern Recognition +astro-ph/0602401 +astro-ph/9910205 +cond-mat/0005244 Disordered Systems and Neural Networks +cond-mat/0103256 +cond-mat/0104260 Statistical Mechanics +cond-mat/0112387 +cond-mat/0602297 Statistical Mechanics +gr-qc/0003108 +gr-qc/0004017 +gr-qc/0005080 +gr-qc/0006001 +gr-qc/0006075 +gr-qc/0007022 +gr-qc/0107022 +gr-qc/0409015 +gr-qc/0412107 +gr-qc/0703007 +gr-qc/9903037 +gr-qc/9906081 +gr-qc/9910063 +gr-qc/9911061 +hep-ph/0001247 Phenomenology +hep-ph/0002055 Phenomenology +hep-ph/0002211 Phenomenology +hep-ph/0003023 Phenomenology +hep-ph/0102053 Phenomenology +hep-ph/0104272 Phenomenology +hep-ph/0104299 Phenomenology +hep-ph/0202143 Phenomenology +hep-ph/0302178 Phenomenology +hep-ph/0307387 Phenomenology +hep-ph/0410073 Phenomenology +hep-ph/0605010 Phenomenology +hep-ph/9903293 Phenomenology +hep-ph/9910450 Phenomenology +hep-th/0002030 Theory +hep-th/0002109 Theory +hep-th/0004024 Theory +hep-th/0004108 Theory +hep-th/0004175 Theory +hep-th/0005043 Theory +hep-th/0005111 Theory +hep-th/0005175 Theory +hep-th/0006085 Theory +hep-th/0006209 Theory +hep-th/0007016 Theory +hep-th/0007101 Theory +hep-th/0009102 Theory +hep-th/0009193 Theory +hep-th/0101100 Theory +hep-th/0204151 Theory +hep-th/0301174 Theory +hep-th/0306207 Theory +hep-th/0406144 Theory +hep-th/9609165 Theory +hep-th/9610103 Theory +hep-th/9610110 Theory +hep-th/9610176 Theory +hep-th/9611013 Theory +hep-th/9611018 Theory +hep-th/9611029 Theory +hep-th/9611043 Theory +hep-th/9611066 Theory +hep-th/9611076 Theory +hep-th/9611099 Theory +hep-th/9611112 Theory +hep-th/9611135 Theory +hep-th/9611152 Theory +hep-th/9611188 Theory +hep-th/9701019 Theory +hep-th/9903130 Theory +hep-th/9905167 Theory +hep-th/9909177 Theory +hep-th/9911103 Theory +hep-th/9912143 Theory +hep-th/9912177 Theory +hep-th/9912179 Theory +math-ph/0006026 +math-ph/0203036 +math-ph/0601004 +math/0408215 Algebraic Topology +nlin/0005022 Exactly Solvable and Integrable Systems +nlin/0504003 Pattern Formation and Solitons +nlin/0506043 Chaotic Dynamics +nlin/0509030 Chaotic Dynamics +patt-sol/9401006 Pattern Formation and Solitons +physics/0007091 Computational Physics +physics/0009013 Space Physics +physics/0610263 General Physics +q-bio/0510042 Genomics +quant-ph/0001010 +quant-ph/0109062 +quant-ph/9911022 +0704.0334 Chemical Physics +0704.1959 Chemical Physics +0705.1090 Soft Condensed Matter +0706.0716 Other Condensed Matter +0707.0337 Atomic and Molecular Clusters +0707.0809 Chemical Physics +0707.3214 Chemical Physics +0708.4348 Chemical Physics +0711.1247 General Physics +0801.1427 Materials Science +0804.0215 Statistical Mechanics +0804.1958 Atomic Physics +0804.3145 Materials Science +0804.3281 Chemical Physics +0806.2221 Atomic and Molecular Clusters +0806.3205 Functional Analysis +0809.1599 Disordered Systems and Neural Networks +0809.2519 Chemical Physics +0810.2676 Materials Science +0812.0630 +0812.2446 Other Condensed Matter +0812.4734 Materials Science +0902.2529 Soft Condensed Matter +0903.0971 Chemical Physics +0903.4850 Numerical Analysis +0903.5116 +0905.0366 Materials Science +0905.0596 +0905.1736 Soft Condensed Matter +0906.1028 +0908.2475 Operator Algebras +0909.4347 Atomic Physics +0910.2548 Materials Science +1002.4383 High Energy Astrophysical Phenomena +1003.5310 Chemical Physics +1005.1829 Mesoscale and Nanoscale Physics +1006.5840 Disordered Systems and Neural Networks +1009.0205 Statistical Mechanics +1010.0589 Atomic and Molecular Clusters +1010.1358 Information Theory +1012.4383 Soft Condensed Matter +1101.5054 Statistical Mechanics +1103.0946 Other Condensed Matter +1103.3734 Atomic and Molecular Clusters +1109.3704 Probability +1109.5756 Chemical Physics +1110.2013 Functional Analysis +1112.2731 Biological Physics +1112.4546 Materials Science +1202.0325 +1202.0601 +1202.1332 Information Theory +1202.5582 Computational Physics +1202.6678 Computation +1206.6644 Functional Analysis +1209.3463 +1210.0007 Probability +1211.5443 Algebraic Geometry +1302.1722 Combinatorics +1302.2021 Solar and Stellar Astrophysics +1304.0498 Group Theory +1309.1380 Probability +1309.1596 Information Theory +1309.2757 Atomic Physics +1309.4202 Chemical Physics +1309.4718 Computational Complexity +1310.1560 Geometric Topology +1310.2112 Chemical Physics +1310.6723 K-Theory and Homology +1311.1826 Number Theory +1311.3003 +1311.5675 Algebraic Topology +1312.5468 Chemical Physics +1312.6165 Probability +1401.3814 Statistics Theory +1402.4201 Algebraic Geometry +1403.1013 Information Theory +1403.1335 Functional Analysis +1403.3036 Information Theory +1403.3761 Superconductivity +1403.4766 Materials Science +1406.1766 Combinatorics +1407.2860 Probability +1407.5568 Theory +1408.0250 Group Theory +1408.5404 Machine Learning +1409.0830 Geometric Topology +1409.3897 +1409.4460 Analysis of PDEs +1410.4153 Number Theory +1410.4633 Probability +1410.4935 +1410.6949 Metric Geometry +1410.6966 Statistics Theory +1411.0251 Analysis of PDEs +1411.1273 Geometric Topology +1411.2970 Cosmology and Nongalactic Astrophysics +1411.3423 Computer Vision and Pattern Recognition +1411.4390 Numerical Analysis +1411.5582 Analysis of PDEs +1411.6857 Geometric Topology +1412.0256 Algebraic Geometry +1412.2038 Dynamical Systems +1412.2467 Group Theory +1412.5668 Algebraic Topology +1412.8041 Dynamical Systems +1501.00763 Representation Theory +1501.05330 High Energy Astrophysical Phenomena +1501.05480 Computational Engineering, Finance, and Science +1501.06711 Optimization and Control +1502.01046 Chemical Physics +1502.01582 Cosmology and Nongalactic Astrophysics +1502.01585 Cosmology and Nongalactic Astrophysics +1502.01588 Cosmology and Nongalactic Astrophysics +1502.01590 Cosmology and Nongalactic Astrophysics +1502.01594 Cosmology and Nongalactic Astrophysics +1502.01598 Cosmology and Nongalactic Astrophysics +1502.01599 Astrophysics of Galaxies +1502.01953 Systems and Control +1502.01956 Systems and Control +1502.02114 Cosmology and Nongalactic Astrophysics +1502.03337 Computer Science and Game Theory +1502.04110 Computer Vision and Pattern Recognition +1502.05956 Cosmology and Nongalactic Astrophysics +1502.06110 Differential Geometry +1503.01018 Number Theory +1503.04371 Information Theory +1503.06503 Algebraic Geometry +1503.07028 Analysis of PDEs +1503.07110 +1503.07145 Symplectic Geometry +1504.06499 Differential Geometry +1505.00749 Probability +1505.01147 Applications +1505.01396 Physics and Society +1505.02485 Medical Physics +1505.03051 +1505.04408 Dynamical Systems +1505.04970 Analysis of PDEs +1505.05264 Phenomenology +1505.05815 Quantitative Methods +1505.06353 Neural and Evolutionary Computing +1505.07901 Dynamical Systems +1505.08114 Dynamical Systems +1506.01226 Optics +1506.01461 Social and Information Networks +1506.03417 Optimization and Control +1506.04739 High Energy Astrophysical Phenomena +1506.05587 Category Theory +1506.06806 Differential Geometry +1506.06971 Populations and Evolution +1506.08143 Probability +1506.08454 Computation and Language +1506.08995 Neurons and Cognition +1507.00802 Probability +1507.01223 Materials Science +1507.02058 Cosmology and Nongalactic Astrophysics +1507.03287 +1507.05943 Applications +1507.06621 Algebraic Geometry +1507.07176 Biological Physics +1507.07375 Optimization and Control +1507.07776 Solar and Stellar Astrophysics +1507.07915 Statistical Mechanics +1507.08853 Cosmology and Nongalactic Astrophysics +1507.08877 Other Condensed Matter +1508.00326 Analysis of PDEs +1508.00439 +1508.01789 Superconductivity +1508.02029 Statistical Mechanics +1508.02775 Medical Physics +1508.03640 High Energy Astrophysical Phenomena +1508.04751 Neurons and Cognition +1508.04954 Algebraic Geometry +1508.05156 Optimization and Control +1508.05315 Chemical Physics +1508.05465 Combinatorics +1508.05615 Geometric Topology +1508.07435 Computational Engineering, Finance, and Science +1508.07958 Probability +1509.00320 Number Theory +1509.00800 Astrophysics of Galaxies +1509.01711 Group Theory +1509.02816 Genomics +1509.03596 +1509.04064 Artificial Intelligence +1509.04122 Dynamical Systems +1509.05444 Dynamical Systems +1509.05703 Neurons and Cognition +1509.06373 Cosmology and Nongalactic Astrophysics +1509.06386 Cosmology and Nongalactic Astrophysics +1509.06534 Complex Variables +1509.07936 Quantum Gases +1509.08084 +1509.09110 +1510.00095 Learning +1510.00803 Soft Condensed Matter +1510.01130 Optimization and Control +1510.02083 +1510.02913 +1510.02985 Cosmology and Nongalactic Astrophysics +1510.03214 Dynamical Systems +1510.03610 Biological Physics +1510.04624 Dynamical Systems +1510.05236 Numerical Analysis +1510.06479 Neurons and Cognition +1510.06622 Algebraic Geometry +1510.06647 Fluid Dynamics +1510.07541 History and Overview +1510.07592 Neurons and Cognition +1510.08202 Information Theory +1510.08359 +1510.08519 Chemical Physics +1510.08566 Logic in Computer Science +1510.08649 Classical Analysis and ODEs +1510.08939 Soft Condensed Matter +1511.00810 Atmospheric and Oceanic Physics +1511.01129 Mesoscale and Nanoscale Physics +1511.01268 Quantitative Methods +1511.01418 Rings and Algebras +1511.01721 Probability +1511.02221 Number Theory +1511.02647 Social and Information Networks +1511.03567 Earth and Planetary Astrophysics +1511.03844 Theory +1511.04156 Machine Learning +1511.04369 +1511.04471 Dynamical Systems +1511.05712 Soft Condensed Matter +1511.06193 Optics +1511.06330 Rings and Algebras +1511.07070 Computational Complexity +1511.07454 Soft Condensed Matter +1511.07742 Mesoscale and Nanoscale Physics +1511.07768 Molecular Networks +1512.01313 Dynamical Systems +1512.01322 Learning +1512.01792 Probability +1512.01886 Social and Information Networks +1512.01899 Statistics Theory +1512.02026 Number Theory +1512.02094 Phenomenology +1512.02264 Dynamical Systems +1512.02539 +1512.02925 Mesoscale and Nanoscale Physics +1512.03059 Astrophysics of Galaxies +1512.03470 Materials Science +1512.03804 Superconductivity +1512.04451 Solar and Stellar Astrophysics +1512.05317 Probability +1512.05436 Mesoscale and Nanoscale Physics +1512.06137 Materials Science +1512.07031 Superconductivity +1512.07188 Plasma Physics +1512.07205 Algebraic Geometry +1512.07279 +1512.07520 Phenomenology +1512.07596 Neurons and Cognition +1512.07807 Learning +1512.08071 Dynamical Systems +1512.08173 Phenomenology +1512.08798 Molecular Networks +1512.09233 Cell Behavior +1601.00397 Information Theory +1601.00421 Combinatorics +1601.00450 Theory +1601.00657 Strongly Correlated Electrons +1601.00897 Quantum Algebra +1601.02062 Materials Science +1601.02133 Mesoscale and Nanoscale Physics +1601.02440 Fluid Dynamics +1601.02759 Experiment +1601.03063 Soft Condensed Matter +1601.03506 Number Theory +1601.03773 Classical Analysis and ODEs +1601.04837 Differential Geometry +1601.04869 Atomic Physics +1601.06028 Computers and Society +1601.06248 Neurons and Cognition +1601.06539 +1601.06614 Optics +1601.06855 +1601.06944 +1601.07183 Phenomenology +1601.07692 Phenomenology +1602.00222 Algebraic Geometry +1602.01424 Group Theory +1602.02964 Machine Learning +1602.02966 Soft Condensed Matter +1602.03070 Classical Analysis and ODEs +1602.03398 Phenomenology +1602.03603 Analysis of PDEs +1602.03766 Mesoscale and Nanoscale Physics +1602.05649 Soft Condensed Matter +1602.05771 Solar and Stellar Astrophysics +1602.06862 +1602.07286 +1602.07295 Strongly Correlated Electrons +1602.07898 Atomic and Molecular Clusters +1602.07991 Optics +1602.08454 Optics +1602.09108 Physics and Society +1603.00833 Phenomenology +1603.01303 Robotics +1603.01434 Soft Condensed Matter +1603.01714 Materials Science +1603.01953 Solar and Stellar Astrophysics +1603.01967 Atomic Physics +1603.02184 Phenomenology +1603.02258 Materials Science +1603.02268 Fluid Dynamics +1603.02379 Logic +1603.02407 +1603.02838 Solar and Stellar Astrophysics +1603.02894 Earth and Planetary Astrophysics +1603.03658 Materials Science +1603.03962 +1603.04250 Classical Analysis and ODEs +1603.05348 Strongly Correlated Electrons +1603.05502 Phenomenology +1603.05513 Trading and Market Microstructure +1603.05629 Learning +1603.05821 Fluid Dynamics +1603.06236 Formal Languages and Automata Theory +1603.06808 Fluid Dynamics +1603.06936 Mesoscale and Nanoscale Physics +1603.07118 +1603.07179 Representation Theory +1603.07446 Optics +1603.07472 Classical Physics +1603.08159 Soft Condensed Matter +1603.08207 High Energy Astrophysical Phenomena +1603.08363 Physics Education +1603.08596 Combinatorics +1603.08660 Number Theory +1603.09032 Statistical Mechanics +1603.09193 +1603.09239 +1603.09460 Computation and Language +1603.09643 Computation and Language +1604.00125 Information Retrieval +1604.00151 Systems and Control +1604.00166 Materials Science +1604.00463 +1604.00781 Atomic Physics +1604.00903 Physics and Society +1604.00928 Analysis of PDEs +1604.01070 Information Retrieval +1604.01188 Materials Science +1604.01557 General Finance +1604.01585 Atomic Physics +1604.01808 Strongly Correlated Electrons +1604.01881 Atomic Physics +1604.02040 Mesoscale and Nanoscale Physics +1604.02123 Machine Learning +1604.02296 Pattern Formation and Solitons +1604.02615 +1604.02705 Social and Information Networks +1604.03007 Earth and Planetary Astrophysics +1604.03704 Solar and Stellar Astrophysics +1604.03858 Cosmology and Nongalactic Astrophysics +1604.04015 +1604.04319 +1604.04568 Numerical Analysis +1604.05289 Cosmology and Nongalactic Astrophysics +1604.05305 Instrumentation and Methods for Astrophysics +1604.05381 +1604.06084 Soft Condensed Matter +1604.06389 Popular Physics +1604.06526 Superconductivity +1604.07126 Instrumentation and Methods for Astrophysics +1604.07999 +1604.08054 Theory +1604.08487 Materials Science +1604.08523 +1605.00014 Quantum Gases +1605.00046 Astrophysics of Galaxies +1605.00103 Theory +1605.00522 High Energy Astrophysical Phenomena +1605.00993 +1605.01013 +1605.01165 Solar and Stellar Astrophysics +1605.01584 Distributed, Parallel, and Cluster Computing +1605.01621 Soft Condensed Matter +1605.01884 Solar and Stellar Astrophysics +1605.01899 Classical Analysis and ODEs +1605.02252 +1605.02313 Theory +1605.02331 Mesoscale and Nanoscale Physics +1605.02339 +1605.02394 Exactly Solvable and Integrable Systems +1605.02649 Statistical Mechanics +1605.02671 Mesoscale and Nanoscale Physics +1605.02725 Dynamical Systems +1605.02965 Astrophysics of Galaxies +1605.03087 Phenomenology +1605.03194 Astrophysics of Galaxies +1605.03274 Strongly Correlated Electrons +1605.03405 +1605.03582 Strongly Correlated Electrons +1605.03984 Earth and Planetary Astrophysics +1605.04223 Statistical Mechanics +1605.04594 +1605.05315 Earth and Planetary Astrophysics +1605.05978 Mesoscale and Nanoscale Physics +1605.06003 Logic +1605.06873 Mesoscale and Nanoscale Physics +1605.06898 Applications +1605.06971 Materials Science +1605.07248 Theory +1605.07265 Astrophysics of Galaxies +1605.07304 Quantitative Methods +1605.08004 +1605.08020 Number Theory +1605.08939 Solar and Stellar Astrophysics +1605.09031 Materials Science +1605.09096 Computation and Language +1605.09152 Earth and Planetary Astrophysics +1605.09215 High Energy Astrophysical Phenomena +1605.09326 +1605.09364 Cosmology and Nongalactic Astrophysics +1605.09391 +1605.09627 Exactly Solvable and Integrable Systems +1605.09726 Representation Theory +1606.00004 Solar and Stellar Astrophysics +1606.00054 Molecular Networks +1606.00109 Strongly Correlated Electrons +1606.00162 High Energy Astrophysical Phenomena +1606.00329 Superconductivity +1606.00529 Atomic Physics +1606.00605 Other Condensed Matter +1606.00638 Mesoscale and Nanoscale Physics +1606.00641 Soft Condensed Matter +1606.00805 Plasma Physics +1606.00823 Mesoscale and Nanoscale Physics +1606.00932 Soft Condensed Matter +1606.01006 Phenomenology +1606.01253 Astrophysics of Galaxies +1606.01772 Theory +1606.01893 Theory +1606.02086 Atmospheric and Oceanic Physics +1606.02132 High Energy Astrophysical Phenomena +1606.02602 Statistical Mechanics +1606.02723 Solar and Stellar Astrophysics +1606.03057 Cosmology and Nongalactic Astrophysics +1606.03074 High Energy Astrophysical Phenomena +1606.03086 Astrophysics of Galaxies +1606.03096 Strongly Correlated Electrons +1606.03107 Phenomenology +1606.03124 Disordered Systems and Neural Networks +1606.03149 Phenomenology +1606.03458 Mesoscale and Nanoscale Physics +1606.03532 Strongly Correlated Electrons +1606.03567 Physics and Society +1606.03853 Algebraic Geometry +1606.04018 Phenomenology +1606.04124 Materials Science +1606.04138 Phenomenology +1606.04159 Instrumentation and Methods for Astrophysics +1606.04580 Quantum Gases +1606.04692 Theory +1606.04881 +1606.04882 Phenomenology +1606.05102 +1606.05359 Phenomenology +1606.05410 Solar and Stellar Astrophysics +1606.05464 Computation and Language +1606.05567 Mesoscale and Nanoscale Physics +1606.05640 Instrumentation and Methods for Astrophysics +1606.05662 Phenomenology +1606.05719 +1606.05770 Astrophysics of Galaxies +1606.06093 Strongly Correlated Electrons +1606.06196 History and Overview +1606.06247 Solar and Stellar Astrophysics +1606.06281 Astrophysics of Galaxies +1606.06313 Theory +1606.06405 Theory +1606.06479 Mesoscale and Nanoscale Physics +1606.06780 Statistical Mechanics +1606.06862 Astrophysics of Galaxies +1606.07033 Geometric Topology +1606.07067 Theory +1606.07293 Cosmology and Nongalactic Astrophysics +1606.07303 Atomic Physics +1606.07813 Strongly Correlated Electrons +1606.08597 Phenomenology +1606.08635 Phenomenology +1606.08987 Complex Variables +1606.09045 Solar and Stellar Astrophysics +1606.09122 +1606.09129 Phenomenology +1606.09177 Phenomenology +1606.09247 Astrophysics of Galaxies +1606.09324 Solar and Stellar Astrophysics +1606.09527 Statistics Theory +1606.09627 Astrophysics of Galaxies +1607.00012 Earth and Planetary Astrophysics +1607.00030 Computation and Language +1607.00094 Astrophysics of Galaxies +1607.00246 Phenomenology +1607.00651 +1607.00670 Dynamical Systems +1607.00871 Astrophysics of Galaxies +1607.00932 +1607.01157 Atomic Physics +1607.01357 Earth and Planetary Astrophysics +1607.01469 Phenomenology +1607.01576 +1607.01745 Phenomenology +1607.01766 Atomic Physics +1607.01891 Strongly Correlated Electrons +1607.01931 Instrumentation and Methods for Astrophysics +1607.02082 Phenomenology +1607.02140 +1607.02148 High Energy Astrophysical Phenomena +1607.02169 Phenomenology +1607.02302 Quantum Gases +1607.02320 Theory +1607.02405 Phenomenology +1607.02408 Fluid Dynamics +1607.02577 Solar and Stellar Astrophysics +1607.02650 Materials Science +1607.02761 Astrophysics of Galaxies +1607.02996 Solar and Stellar Astrophysics +1607.03023 General Physics +1607.03122 Theory +1607.03149 Cosmology and Nongalactic Astrophysics +1607.03230 Earth and Planetary Astrophysics +1607.03316 Computation and Language +1607.03446 Astrophysics of Galaxies +1607.03494 Solar and Stellar Astrophysics +1607.03497 Theory +1607.03567 Cosmology and Nongalactic Astrophysics +1607.03570 Astrophysics of Galaxies +1607.03806 Solar and Stellar Astrophysics +1607.03903 High Energy Astrophysical Phenomena +1607.04389 Representation Theory +1607.04415 Astrophysics of Galaxies +1607.04802 Mesoscale and Nanoscale Physics +1607.05087 Astrophysics of Galaxies +1607.05103 Astrophysics of Galaxies +1607.05598 Optics +1607.05843 Atomic Physics +1607.05905 Solar and Stellar Astrophysics +1607.06035 +1607.06378 Solar and Stellar Astrophysics +1607.06614 Soft Condensed Matter +1607.06662 +1607.06726 +1607.06732 Classical Physics +1607.06739 +1607.06859 Materials Science +1607.06958 Phenomenology +1607.07004 Solar and Stellar Astrophysics +1607.07046 High Energy Astrophysical Phenomena +1607.07049 Astrophysics of Galaxies +1607.07118 +1607.07124 Physics and Society +1607.07256 Computational Geometry +1607.07554 Cosmology and Nongalactic Astrophysics +1607.07676 Computational Complexity +1607.07724 Solar and Stellar Astrophysics +1607.07865 Phenomenology +1607.07938 Solar and Stellar Astrophysics +1607.08023 Astrophysics of Galaxies +1607.08427 +1607.08432 Phenomenology +1607.08690 Analysis of PDEs +1607.08715 Mesoscale and Nanoscale Physics +1607.08833 Cosmology and Nongalactic Astrophysics +1608.00254 Strongly Correlated Electrons +1608.00261 Robotics +1608.00267 +1608.00418 +1608.00674 +1608.00827 Strongly Correlated Electrons +1608.00886 Superconductivity +1608.01151 +1608.01279 Biological Physics +1608.01587 High Energy Astrophysical Phenomena +1608.01631 Theory +1608.01780 Earth and Planetary Astrophysics +1608.01812 Geometric Topology +1608.01893 Analysis of PDEs +1608.01924 High Energy Astrophysical Phenomena +1608.01937 Differential Geometry +1608.02160 High Energy Astrophysical Phenomena +1608.02218 Soft Condensed Matter +1608.02345 Instrumentation and Methods for Astrophysics +1608.02452 Instrumentation and Methods for Astrophysics +1608.02597 Solar and Stellar Astrophysics +1608.02694 Phenomenology +1608.02795 Quantitative Methods +1608.03294 Earth and Planetary Astrophysics +1608.03495 Astrophysics of Galaxies +1608.03717 Materials Science +1608.04067 Phenomenology +1608.04176 +1608.04592 Programming Languages +1608.04633 +1608.04776 Solar and Stellar Astrophysics +1608.04886 High Energy Astrophysical Phenomena +1608.04895 High Energy Astrophysical Phenomena +1608.05006 Physics Education +1608.05075 Astrophysics of Galaxies +1608.05331 Theory +1608.06152 Mesoscale and Nanoscale Physics +1608.06179 Mesoscale and Nanoscale Physics +1608.06202 Plasma Physics +1608.06895 Superconductivity +1608.07095 Astrophysics of Galaxies +1608.07330 Applications +1608.07351 High Energy Astrophysical Phenomena +1608.07609 Geometric Topology +1608.07668 Materials Science +1608.07811 Optics +1608.07868 Phenomenology +1608.07877 +1608.07974 Solar and Stellar Astrophysics +1608.08083 Astrophysics of Galaxies +1608.08201 Plasma Physics +1608.08317 Chemical Physics +1608.08837 Astrophysics of Galaxies +1608.08935 Mesoscale and Nanoscale Physics +1609.00021 High Energy Astrophysical Phenomena +1609.00075 +1609.00097 Astrophysics of Galaxies +1609.00447 +1609.00812 Functional Analysis +1609.00848 +1609.01212 Information Theory +1609.01419 Astrophysics of Galaxies +1609.01548 General Mathematics +1609.01925 High Energy Astrophysical Phenomena +1609.01992 High Energy Astrophysical Phenomena +1609.02084 Soft Condensed Matter +1609.02304 Mesoscale and Nanoscale Physics +1609.02365 Astrophysics of Galaxies +1609.02823 Mesoscale and Nanoscale Physics +1609.03190 Logic in Computer Science +1609.03240 Machine Learning +1609.04217 Solar and Stellar Astrophysics +1609.04301 Sound +1609.04816 High Energy Astrophysical Phenomena +1609.04819 Astrophysics of Galaxies +1609.04845 High Energy Astrophysical Phenomena +1609.04920 Astrophysics of Galaxies +1609.05226 High Energy Astrophysical Phenomena +1609.05276 Classical Analysis and ODEs +1609.05279 Mesoscale and Nanoscale Physics +1609.05319 Mesoscale and Nanoscale Physics +1609.05360 Mesoscale and Nanoscale Physics +1609.05415 Astrophysics of Galaxies +1609.05436 Mesoscale and Nanoscale Physics +1609.05474 Materials Science +1609.05477 Astrophysics of Galaxies +1609.05570 Number Theory +1609.05653 Mesoscale and Nanoscale Physics +1609.05704 High Energy Astrophysical Phenomena +1609.05968 Astrophysics of Galaxies +1609.06096 Analysis of PDEs +1609.06358 +1609.06410 Strongly Correlated Electrons +1609.06417 Computer Vision and Pattern Recognition +1609.06437 +1609.06705 Astrophysics of Galaxies +1609.06717 +1609.06746 Instrumentation and Detectors +1609.06764 Machine Learning +1609.06975 Materials Science +1609.06980 Populations and Evolution +1609.07123 Quantum Gases +1609.07146 +1609.07177 Materials Science +1609.07238 Earth and Planetary Astrophysics +1609.07244 Mesoscale and Nanoscale Physics +1609.07268 Solar and Stellar Astrophysics +1609.07283 Solar and Stellar Astrophysics +1609.07433 Optics +1609.07748 Plasma Physics +1609.07872 Logic +1609.07957 Mesoscale and Nanoscale Physics +1609.07969 Phenomenology +1609.08004 Computer Vision and Pattern Recognition +1609.08067 Information Theory +1609.08148 +1609.08149 Classical Physics +1609.08150 Mesoscale and Nanoscale Physics +1609.08153 Optics +1609.08154 Operating Systems +1609.08155 Fluid Dynamics +1609.08156 Theory +1609.08157 Phenomenology +1609.08162 Algebraic Geometry +1609.08163 Soft Condensed Matter +1609.08167 Cosmology and Nongalactic Astrophysics +1609.08168 Cosmology and Nongalactic Astrophysics +1609.08172 +1609.08173 +1609.08175 Astrophysics of Galaxies +1609.08176 Algebraic Geometry +1609.08177 Optimization and Control +1609.08180 Numerical Analysis +1609.08182 Information Theory +1609.08183 Number Theory +1609.08186 Analysis of PDEs +1609.08188 +1609.08189 +1609.08190 Statistical Mechanics +1609.08191 Materials Science +1609.08192 Information Theory +1609.08193 Analysis of PDEs +1609.08194 Computation and Language +1609.08195 Soft Condensed Matter +1609.08196 Optics +1609.08197 Analysis of PDEs +1609.08198 Information Theory +1609.08199 Probability +1609.08200 Analysis of PDEs +1609.08201 Databases +1609.08202 Mesoscale and Nanoscale Physics +1609.08203 Machine Learning +1609.08205 Biomolecules +1609.08208 Medical Physics +1609.08209 Computer Vision and Pattern Recognition +1609.08210 Computation and Language +1609.08211 Sound +1609.08212 Combinatorics +1609.08213 Neurons and Cognition +1609.08214 Classical Analysis and ODEs +1609.08216 Mesoscale and Nanoscale Physics +1609.08217 Applications +1609.08219 Dynamical Systems +1609.08225 Classical Analysis and ODEs +1609.08227 Methodology +1609.08228 Databases +1609.08230 Functional Analysis +1609.08231 Functional Analysis +1609.08232 Theory +1609.08233 Number Theory +1609.08234 +1609.08235 Machine Learning +1609.08237 Computation and Language +1609.08239 Computers and Society +1609.08241 Theory +1609.08244 Combinatorics +1609.08248 +1609.08251 Numerical Analysis +1609.08253 Computational Complexity +1609.08255 Combinatorics +1609.08257 Geometric Topology +1609.08261 Analysis of PDEs +1609.08262 Optimization and Control +1609.08263 Operator Algebras +1609.08264 Information Retrieval +1609.08265 Information Theory +1609.08266 Social and Information Networks +1609.08268 +1609.08269 Disordered Systems and Neural Networks +1609.08270 Information Theory +1609.08272 Discrete Mathematics +1609.08274 Dynamical Systems +1609.08275 Optics +1609.08276 Biomolecules +1609.08278 K-Theory and Homology +1609.08279 Algebraic Geometry +1609.08280 Experiment +1609.08282 Number Theory +1609.08283 Social and Information Networks +1609.08285 Medical Physics +1609.08286 Learning +1609.08287 +1609.08289 Solar and Stellar Astrophysics +1609.08291 Computer Vision and Pattern Recognition +1609.08292 Spectral Theory +1609.08293 Computation and Language +1609.08295 +1609.08299 Numerical Analysis +1609.08300 Information Theory +1609.08302 Metric Geometry +1609.08303 Geometric Topology +1609.08306 +1609.08308 Group Theory +1609.08310 Molecular Networks +1609.08311 Group Theory +1609.08313 Graphics +1609.08315 +1609.08317 Differential Geometry +1609.08318 Molecular Networks +1609.08321 Probability +1609.08322 Group Theory +1609.08326 Learning +1609.08328 Applications +1609.08329 Optics +1609.08331 Molecular Networks +1609.08333 Medical Physics +1609.08336 Information Theory +1609.08337 Computation and Language +1609.08340 Algebraic Geometry +1609.08343 Classical Physics +1609.08345 Human-Computer Interaction +1609.08348 Phenomenology +1609.08351 Atomic Physics +1609.08353 Combinatorics +1609.08355 Physics and Society +1609.08356 Mesoscale and Nanoscale Physics +1609.08357 Analysis of PDEs +1609.08358 Strongly Correlated Electrons +1609.08363 Instrumentation and Detectors +1609.08364 Computer Vision and Pattern Recognition +1609.08365 Classical Analysis and ODEs +1609.08366 Geophysics +1609.08369 Experiment +1609.08373 +1609.08378 Soft Condensed Matter +1609.08379 Optimization and Control +1609.08380 Physics and Society +1609.08381 Physics and Society +1609.08383 +1609.08385 Materials Science +1609.08386 Dynamical Systems +1609.08387 Computer Vision and Pattern Recognition +1609.08388 Analysis of PDEs +1609.08389 Computation and Language +1609.08390 Probability +1609.08393 Computer Vision and Pattern Recognition +1609.08394 Computer Science and Game Theory +1609.08397 Machine Learning +1609.08398 Information Theory +1609.08399 Computer Vision and Pattern Recognition +1609.08401 Algebraic Topology +1609.08403 Data Structures and Algorithms +1609.08405 Analysis of PDEs +1609.08406 Quantum Gases +1609.08407 +1609.08408 Sound +1609.08409 Computation and Language +1609.08411 High Energy Astrophysical Phenomena +1609.08412 Computation and Language +1609.08414 Neural and Evolutionary Computing +1609.08415 Materials Science +1609.08418 Functional Analysis +1609.08419 Sound +1609.08420 Commutative Algebra +1609.08421 Fluid Dynamics +1609.08422 Information Theory +1609.08424 Functional Analysis +1609.08426 General Physics +1609.08427 General Physics +1609.08428 Systems and Control +1609.08429 Mesoscale and Nanoscale Physics +1609.08432 Quantum Gases +1609.08433 Sound +1609.08434 Experiment +1609.08435 Learning +1609.08438 Computer Vision and Pattern Recognition +1609.08441 Learning +1609.08442 Sound +1609.08443 Combinatorics +1609.08444 General Physics +1609.08445 Computation and Language +1609.08446 Robotics +1609.08447 Probability +1609.08452 Algebraic Geometry +1609.08453 General Mathematics +1609.08454 Lattice +1609.08457 +1609.08458 History and Overview +1609.08460 Geometric Topology +1609.08467 Group Theory +1609.08469 Mesoscale and Nanoscale Physics +1609.08470 Artificial Intelligence +1609.08471 Phenomenology +1609.08474 Geometric Topology +1609.08475 Computer Vision and Pattern Recognition +1609.08476 Networking and Internet Architecture +1609.08477 Analysis of PDEs +1609.08479 Theory +1609.08481 Dynamical Systems +1609.08482 Quantum Gases +1609.08483 Analysis of PDEs +1609.08484 Data Structures and Algorithms +1609.08487 +1609.08488 Earth and Planetary Astrophysics +1609.08489 Dynamical Systems +1609.08491 Phenomenology +1609.08493 Optimization and Control +1609.08496 Computation and Language +1609.08498 Spectral Theory +1609.08502 Optimization and Control +1609.08503 Analysis of PDEs +1609.08504 Quantum Gases +1609.08505 Dynamical Systems +1609.08506 Earth and Planetary Astrophysics +1609.08508 Medical Physics +1609.08510 Cosmology and Nongalactic Astrophysics +1609.08511 Solar and Stellar Astrophysics +1609.08512 Statistics Theory +1609.08517 Other Computer Science +1609.08520 General Finance +1609.08522 Information Theory +1609.08524 Artificial Intelligence +1609.08526 +1609.08527 +1609.08529 Numerical Analysis +1609.08531 Software Engineering +1609.08533 Fluid Dynamics +1609.08534 Astrophysics of Galaxies +1609.08535 Human-Computer Interaction +1609.08536 Systems and Control +1609.08539 Numerical Analysis +1609.08542 Operator Algebras +1609.08544 Commutative Algebra +1609.08545 Symplectic Geometry +1609.08548 Instrumentation and Detectors +1609.08549 Number Theory +1609.08550 Learning +1609.08554 Cosmology and Nongalactic Astrophysics +1609.08556 Physics and Society +1609.08558 Instrumentation and Methods for Astrophysics +1609.08560 +1609.08563 Phenomenology +1609.08564 Optimization and Control +1609.08565 Medical Physics +1609.08566 Mesoscale and Nanoscale Physics +1609.08568 Differential Geometry +1609.08569 Computation +1609.08570 Number Theory +1609.08571 +1609.08573 Statistical Mechanics +1609.08574 Distributed, Parallel, and Cluster Computing +1609.08575 Classical Analysis and ODEs +1609.08577 Chemical Physics +1609.08578 Number Theory +1609.08579 +1609.08582 Probability +1609.08584 +1609.08587 Strongly Correlated Electrons +1609.08589 +1609.08590 +1609.08592 +1609.08593 Representation Theory +1609.08594 +1609.08595 +1609.08597 Analysis of PDEs +1609.08599 Differential Geometry +1609.08600 Complex Variables +1609.08602 Number Theory +1609.08605 Astrophysics of Galaxies +1609.08606 High Energy Astrophysical Phenomena +chao-dyn/9808003 Chaotic Dynamics +cond-mat/0001097 Soft Condensed Matter +cond-mat/0009335 Mesoscale and Nanoscale Physics +cond-mat/0103399 +cond-mat/0108419 +cond-mat/0207016 +cond-mat/0305553 Materials Science +cond-mat/0408183 Materials Science +cond-mat/0507236 Materials Science +cond-mat/0612287 Statistical Mechanics +cond-mat/9806089 +cond-mat/9807215 Soft Condensed Matter +cond-mat/9809385 Statistical Mechanics +cond-mat/9903088 Superconductivity +cond-mat/9903105 Superconductivity +cond-mat/9906238 Materials Science +math/0512115 Algebraic Geometry +physics/0011029 Chemical Physics +physics/0211122 Chemical Physics +physics/0303107 Chemical Physics +physics/0312130 Atomic and Molecular Clusters +physics/0401080 Chemical Physics +physics/0404056 Chemical Physics +physics/0405013 Chemical Physics +physics/0407119 Chemical Physics +physics/0501086 Chemical Physics +physics/0501112 Chemical Physics +physics/0509137 Chemical Physics +physics/0511223 Chemical Physics +physics/0512142 Chemical Physics +physics/0607228 General Physics +physics/0611176 Data Analysis, Statistics and Probability +physics/0612165 Atomic and Molecular Clusters +physics/0702008 Atomic and Molecular Clusters +physics/9710026 Chemical Physics +physics/9806023 Chemical Physics +physics/9902054 Chemical Physics +q-bio/0612039 Biomolecules +quant-ph/0401140 +quant-ph/0601195 +1008.0094 Analysis of PDEs +1011.2820 Materials Science +1103.5920 +1104.2492 Representation Theory +1201.0302 +1203.1609 Differential Geometry +1208.2412 Differential Geometry +1209.2777 Representation Theory +1209.3940 Differential Geometry +1209.4094 Operator Algebras +1210.7899 Materials Science +1302.2462 Algebraic Geometry +1306.1788 Dynamical Systems +1306.5316 Combinatorics +1308.5543 Dynamical Systems +1310.6051 +1311.1174 Representation Theory +1311.5454 Number Theory +1312.0823 Geometric Topology +1312.4028 Rings and Algebras +1312.7357 Geometric Topology +1401.7268 Superconductivity +1403.5904 Geometric Topology +1403.7554 Dynamical Systems +1404.1796 Classical Analysis and ODEs +1404.7338 Analysis of PDEs +1405.0186 Analysis of PDEs +1406.6145 Learning +1406.7276 Accelerator Physics +1407.0125 +1407.1253 Atomic Physics +1407.3496 Dynamical Systems +1407.5803 Geometric Topology +1409.5033 Algebraic Geometry +1410.4832 Probability +1411.0181 Robotics +1411.0917 Analysis of PDEs +1411.2371 Analysis of PDEs +1411.3864 Differential Geometry +1411.5229 Classical Analysis and ODEs +1411.6629 Phenomenology +1412.0531 Symplectic Geometry +1412.5024 Geometric Topology +1412.5608 +1501.04518 Quantum Algebra +1501.05088 High Energy Astrophysical Phenomena +1502.00384 Methodology +1502.06968 +1503.00240 Probability +1503.00736 Numerical Analysis +1503.00918 Differential Geometry +1503.03592 Materials Science +1503.03601 Strongly Correlated Electrons +1503.03602 Materials Science +1503.07962 Number Theory +1504.01212 Analysis of PDEs +1504.03383 +1504.05124 Probability +1505.00201 Geometric Topology +1505.04771 Learning +1505.05671 Cosmology and Nongalactic Astrophysics +1506.01138 Information Theory +1506.03172 Neural and Evolutionary Computing +1506.04614 Superconductivity +1506.06446 Populations and Evolution +1507.00515 Optics +1507.06001 Experiment +1507.07205 Optimization and Control +1507.07207 Optimization and Control +1508.05507 Analysis of PDEs +1508.07909 Computation and Language +1509.00628 Pattern Formation and Solitons +1509.02465 Information Theory +1509.02491 Computer Vision and Pattern Recognition +1509.02840 Systems and Control +1509.02848 Optimization and Control +1509.02852 Optimization and Control +1509.02861 Optimization and Control +1509.04775 Materials Science +1509.05359 Experiment +1509.06560 Mesoscale and Nanoscale Physics +1509.08419 History and Overview +1509.09022 Soft Condensed Matter +1510.00399 Combinatorics +1510.04003 Soft Condensed Matter +1510.04108 Computational Physics +1510.04522 Classical Analysis and ODEs +1510.04921 Cryptography and Security +1511.01777 Differential Geometry +1511.04089 Phenomenology +1511.05260 +1511.06068 Learning +1511.06307 +1511.08498 Computer Vision and Pattern Recognition +1511.08674 Combinatorics +1511.09388 Quantum Gases +1512.00442 Data Structures and Algorithms +1512.02913 Experiment +1512.03008 Theory +1512.03824 +1512.03853 Systems and Control +1512.03901 Symbolic Computation +1512.04411 +1512.05547 Phenomenology +1512.06491 +1512.06878 Phenomenology +1512.09271 Quantum Algebra +1601.00698 Optimization and Control +1601.00714 Probability +1601.00715 Probability +1601.01343 Computation and Language +1601.03042 Astrophysics of Galaxies +1601.03287 Plasma Physics +1601.03344 Mesoscale and Nanoscale Physics +1601.05064 Materials Science +1601.05490 Geometric Topology +1601.05919 Soft Condensed Matter +1601.07690 Materials Science +1601.07908 Mesoscale and Nanoscale Physics +1602.01578 Physics and Society +1602.03156 Mesoscale and Nanoscale Physics +1602.03614 Differential Geometry +1602.04867 Plasma Physics +1602.05030 Plasma Physics +1602.05240 Social and Information Networks +1602.06153 Analysis of PDEs +1602.06953 Phenomenology +1603.02228 High Energy Astrophysical Phenomena +1603.03602 Analysis of PDEs +1603.03629 Machine Learning +1603.04050 Differential Geometry +1603.04188 Chemical Physics +1603.04404 Information Theory +1603.08547 Geometric Topology +1603.08812 Physics and Society +1603.09043 Quantum Gases +1603.09551 Cosmology and Nongalactic Astrophysics +1604.00608 Phenomenology +1604.02803 Phenomenology +1604.04115 Materials Science +1604.04227 Logic +1604.06079 Computer Vision and Pattern Recognition +1604.06940 Functional Analysis +1604.07972 +1604.08618 Networking and Internet Architecture +1605.04244 Combinatorics +1605.04621 Materials Science +1605.05457 Analysis of PDEs +1605.05613 Combinatorics +1605.05948 Chemical Physics +1605.06911 Probability +1605.07168 Cryptography and Security +1605.08193 Materials Science +1605.08357 Cryptography and Security +1605.09761 Computer Science and Game Theory +1606.00168 +1606.01039 Machine Learning +1606.01577 Probability +1606.01797 Applications +1606.02270 Computation and Language +1606.02304 Astrophysics of Galaxies +1606.02315 +1606.02562 Artificial Intelligence +1606.02708 Geophysics +1606.02717 Astrophysics of Galaxies +1606.02825 Computer Science and Game Theory +1606.02961 Analysis of PDEs +1606.03003 Geophysics +1606.03046 +1606.03048 Information Retrieval +1606.03060 Networking and Internet Architecture +1606.03083 Phenomenology +1606.03091 Commutative Algebra +1606.03102 Phenomenology +1606.03103 Theory +1606.03106 Probability +1606.03113 Combinatorics +1606.03116 Complex Variables +1606.03121 Astrophysics of Galaxies +1606.03123 Materials Science +1606.03127 Algebraic Geometry +1606.03128 Number Theory +1606.03132 Dynamical Systems +1606.03138 Quantitative Methods +1606.03139 +1606.03141 Computer Vision and Pattern Recognition +1606.03143 Computation and Language +1606.03144 Computation and Language +1606.03146 Mesoscale and Nanoscale Physics +1606.03147 Cryptography and Security +1606.03150 Information Theory +1606.03153 Computation and Language +1606.03155 Functional Analysis +1606.03156 Operator Algebras +1606.03159 Complex Variables +1606.03164 Phenomenology +1606.03166 Soft Condensed Matter +1606.03167 +1606.03171 Numerical Analysis +1606.03174 Analysis of PDEs +1606.03178 Plasma Physics +1606.03182 Networking and Internet Architecture +1606.03184 Networking and Internet Architecture +1606.03188 Medical Physics +1606.03189 Other Statistics +1606.03190 Materials Science +1606.03191 Artificial Intelligence +1606.03194 Systems and Control +1606.03196 Information Theory +1606.03197 Group Theory +1606.03198 Data Structures and Algorithms +1606.03199 Systems and Control +1606.03200 Data Structures and Algorithms +1606.03203 Machine Learning +1606.03204 Chaotic Dynamics +1606.03210 Operator Algebras +1606.03212 Learning +1606.03217 Formal Languages and Automata Theory +1606.03220 Optics +1606.03223 Theory +1606.03227 Chemical Physics +1606.03228 Atomic Physics +1606.03229 Artificial Intelligence +1606.03233 Computational Complexity +1606.03234 Materials Science +1606.03236 Human-Computer Interaction +1606.03237 Computer Vision and Pattern Recognition +1606.03245 Computation +1606.03248 Hardware Architecture +1606.03253 Probability +1606.03255 Numerical Analysis +1606.03257 Combinatorics +1606.03263 Probability +1606.03265 Phenomenology +1606.03266 Software Engineering +1606.03268 Data Structures and Algorithms +1606.03274 Materials Science +1606.03275 Statistics Theory +1606.03281 Probability +1606.03284 +1606.03289 Artificial Intelligence +1606.03291 Physics Education +1606.03295 Applications +1606.03297 Phenomenology +1606.03298 Artificial Intelligence +1606.03300 Astrophysics of Galaxies +1606.03301 Algebraic Geometry +1606.03302 Computers and Society +1606.03304 Cryptography and Security +1606.03306 Materials Science +1606.03308 Space Physics +1606.03309 Commutative Algebra +1606.03310 Optics +1606.03313 Mesoscale and Nanoscale Physics +1606.03315 History and Overview +1606.03318 +1606.03320 Number Theory +1606.03321 Solar and Stellar Astrophysics +1606.03324 General Physics +1606.03326 Neural and Evolutionary Computing +1606.03327 Optimization and Control +1606.03328 K-Theory and Homology +1606.03330 Optimization and Control +1606.03331 Geometric Topology +1606.03332 Optimization and Control +1606.03333 Multimedia +1606.03335 Computation and Language +1606.03341 Theory +1606.03342 Probability +1606.03343 Cosmology and Nongalactic Astrophysics +1606.03344 Number Theory +1606.03345 +1606.03348 Probability +1606.03349 Solar and Stellar Astrophysics +1606.03350 Phenomenology +1606.03352 Computation and Language +1606.03356 +1606.03357 Computational Geometry +1606.03359 Analysis of PDEs +1606.03362 Statistics Theory +1606.03363 Functional Analysis +1606.03364 Soft Condensed Matter +1606.03368 Cryptography and Security +1606.03369 Computer Vision and Pattern Recognition +1606.03370 High Energy Astrophysical Phenomena +1606.03371 Classical Analysis and ODEs +1606.03372 Geometric Topology +1606.03374 High Energy Astrophysical Phenomena +1606.03376 Methodology +1606.03377 Number Theory +1606.03378 Number Theory +1606.03379 Numerical Analysis +1606.03380 Information Theory +1606.03381 +1606.03386 Social and Information Networks +1606.03394 Representation Theory +1606.03397 Geometric Topology +1606.03401 Neural and Evolutionary Computing +1606.03403 Mesoscale and Nanoscale Physics +1606.03404 Analysis of PDEs +1606.03405 Phenomenology +1606.03408 Geometric Topology +1606.03409 Materials Science +1606.03410 Numerical Analysis +1606.03411 Phenomenology +1606.03412 +1606.03413 +1606.03418 Distributed, Parallel, and Cluster Computing +1606.03419 +1606.03422 Quantitative Methods +1606.03423 +1606.03425 Materials Science +1606.03427 Data Structures and Algorithms +1606.03429 Commutative Algebra +1606.03431 Commutative Algebra +1606.03432 Learning +1606.03433 Physics and Society +1606.03434 Physics and Society +1606.03436 Classical Physics +1606.03439 Learning +1606.03441 Dynamical Systems +1606.03442 Combinatorics +1606.03444 Quantum Gases +cond-mat/0404416 Statistical Mechanics +0901.3862 Other Condensed Matter +0911.2031 Probability +1005.0193 Symplectic Geometry +1111.7010 Number Theory +1112.4309 Differential Geometry +1203.1554 Numerical Analysis +1203.4275 Classical Analysis and ODEs +1210.5753 +1212.2674 Analysis of PDEs +1212.3265 Probability +1303.0760 Group Theory +1305.2989 Symplectic Geometry +1306.6263 Computer Vision and Pattern Recognition +1308.2488 Phenomenology +1309.6902 Representation Theory +1311.4704 Phenomenology +1312.4515 Representation Theory +1312.6355 +1401.0780 Probability +1401.7417 Algebraic Geometry +1402.0473 Complex Variables +1404.0538 Algebraic Geometry +1404.6957 Numerical Analysis +1404.7065 +1405.0642 Pattern Formation and Solitons +1405.6343 Spectral Theory +1406.1682 +1406.5274 Analysis of PDEs +1407.2893 Social and Information Networks +1408.3450 Differential Geometry +1408.4335 Spectral Theory +1409.3524 Number Theory +1409.6101 Functional Analysis +1410.3712 Distributed, Parallel, and Cluster Computing +1410.8780 Rings and Algebras +1411.6538 Data Structures and Algorithms +1501.01479 Representation Theory +1501.01499 +1501.03267 Functional Analysis +1501.05747 Logic +1501.06429 +1502.02238 Complex Variables +1502.02630 Algebraic Topology +1502.04180 Materials Science +1502.05508 Populations and Evolution +1503.01712 Probability +1503.06984 Dynamical Systems +1504.00902 Number Theory +1504.02460 +1504.02714 Geometric Topology +1504.05959 Theory +1504.08058 Complex Variables +1505.03553 +1505.03996 Multiagent Systems +1505.07484 Risk Management +1506.04402 Mesoscale and Nanoscale Physics +1506.06540 Computational Complexity +1507.03500 Quantum Gases +1507.05260 +1507.07309 Number Theory +1507.07497 Discrete Mathematics +1507.07806 Fluid Dynamics +1508.01217 Methodology +1508.02630 Group Theory +1508.02869 Theory +1508.03977 Mesoscale and Nanoscale Physics +1508.04033 +1508.06378 Methodology +1508.06723 Materials Science +1508.07522 Dynamical Systems +1509.00348 +1509.00903 Strongly Correlated Electrons +1509.01182 Mesoscale and Nanoscale Physics +1509.01934 Differential Geometry +1509.03291 Theory +1509.04230 Superconductivity +1509.07534 Cosmology and Nongalactic Astrophysics +1509.09188 Discrete Mathematics +1510.01105 Optics +1510.01315 Computation and Language +1510.01420 Biomolecules +1510.01947 Numerical Analysis +1510.03296 Operator Algebras +1510.03547 Statistics Theory +1510.03671 Methodology +1510.03980 Number Theory +1510.04680 Analysis of PDEs +1510.05810 Statistical Mechanics +1510.07043 Instrumentation and Methods for Astrophysics +1510.07274 Representation Theory +1510.07866 Instrumentation and Detectors +1510.08419 Programming Languages +1510.09025 Social and Information Networks +1511.00025 +1511.00406 Algebraic Geometry +1511.02458 Classical Physics +1511.02688 Methodology +1511.02790 +1511.03599 Instrumentation and Methods for Astrophysics +1511.03855 Learning +1511.03908 Learning +1511.04997 Genomics +1511.05179 Theory +1511.05350 Methodology +1511.06522 Computer Vision and Pattern Recognition +1511.06792 Soft Condensed Matter +1511.07088 Group Theory +1511.07230 Probability +1511.09320 Rings and Algebras +1512.00135 Information Theory +1512.00283 Algebraic Topology +1512.01982 Dynamical Systems +1512.03138 Probability +1512.03316 Theory +1512.03748 Representation Theory +1512.07604 Superconductivity +1512.08865 Strongly Correlated Electrons +1601.00407 Materials Science +1601.00718 Atmospheric and Oceanic Physics +1601.01402 Mesoscale and Nanoscale Physics +1601.02008 Theory +1601.02846 Statistical Mechanics +1601.03765 +1601.05103 Atomic Physics +1601.05180 Number Theory +1601.05203 Representation Theory +1601.05205 Information Theory +1601.05549 +1601.05853 Mesoscale and Nanoscale Physics +1601.06293 Theory +1601.08041 Experiment +1602.01072 +1602.02093 Strongly Correlated Electrons +1602.02933 Solar and Stellar Astrophysics +1602.03119 Theory +1602.07405 Experiment +1603.01623 Astrophysics of Galaxies +1603.01964 +1603.02481 Formal Languages and Automata Theory +1603.04004 Analysis of PDEs +1603.05640 Mesoscale and Nanoscale Physics +1603.05711 Commutative Algebra +1603.07390 Strongly Correlated Electrons +1603.09737 K-Theory and Homology +1604.00115 Algebraic Geometry +1604.01095 +1604.01604 General Physics +1604.01608 General Physics +1604.01618 General Physics +1604.01625 General Physics +1604.01638 General Physics +1604.02209 Statistical Mechanics +1604.02357 Computational Physics +1604.02577 Quantum Algebra +1604.02696 Differential Geometry +1604.03325 Applications +1604.03692 Robotics +1604.04665 Numerical Analysis +1604.04967 Information Theory +1604.05213 Medical Physics +1604.05454 Group Theory +1604.05709 Probability +1604.05852 Materials Science +1604.05861 Cryptography and Security +1604.05905 +1604.05907 Computer Vision and Pattern Recognition +1604.05948 +1604.06002 Data Structures and Algorithms +1604.06044 Logic +1604.06087 +1604.06089 Quantitative Methods +1604.06090 Theory +1604.06103 Astrophysics of Galaxies +1604.06112 Mathematical Software +1604.06115 Instrumentation and Detectors +1604.06116 Metric Geometry +1604.06117 Information Theory +1604.06122 Physics Education +1604.06126 Analysis of PDEs +1604.06128 Solar and Stellar Astrophysics +1604.06132 Populations and Evolution +1604.06133 Learning +1604.06136 Number Theory +1604.06137 Combinatorics +1604.06141 Representation Theory +1604.06142 Functional Analysis +1604.06145 Methodology +1604.06146 Differential Geometry +1604.06147 Mesoscale and Nanoscale Physics +1604.06152 Probability +1604.06153 Learning +1604.06154 Learning +1604.06156 Chemical Physics +1604.06157 Human-Computer Interaction +1604.06158 Human-Computer Interaction +1604.06159 Human-Computer Interaction +1604.06161 Phenomenology +1604.06163 Geometric Topology +1604.06164 Information Theory +1604.06166 Logic +1604.06167 Applications +1604.06168 Optics +1604.06170 Methodology +1604.06171 Numerical Analysis +1604.06172 Combinatorics +1604.06173 Soft Condensed Matter +1604.06176 Algebraic Geometry +1604.06178 General Topology +1604.06181 Discrete Mathematics +1604.06183 +1604.06187 Neural and Evolutionary Computing +1604.06194 Machine Learning +1604.06195 Computer Vision and Pattern Recognition +1604.06197 Rings and Algebras +1604.06198 Functional Analysis +1604.06199 Functional Analysis +1604.06204 Logic in Computer Science +1604.06207 +1604.06209 +1604.06213 Dynamical Systems +1604.06219 Dynamical Systems +1604.06223 Artificial Intelligence +1604.06225 Information Retrieval +1604.06226 Algebraic Geometry +1604.06227 Statistical Mechanics +1604.06229 Applications +1604.06230 Astrophysics of Galaxies +1604.06236 Information Theory +1604.06240 High Energy Astrophysical Phenomena +1604.06243 Computer Vision and Pattern Recognition +1604.06247 Algebraic Geometry +1604.06248 +1604.06252 Human-Computer Interaction +1604.06253 +1604.06255 Functional Analysis +1604.06258 Computer Vision and Pattern Recognition +1604.06260 Social and Information Networks +1604.06261 Complex Variables +1604.06263 Classical Analysis and ODEs +1604.06264 Data Structures and Algorithms +1604.06270 Information Retrieval +1604.06275 Materials Science +1604.06277 +1604.06279 +1604.06281 Analysis of PDEs +1604.06282 Optimization and Control +1604.06283 Probability +1604.06285 Computation and Language +1604.06292 Quantum Gases +1604.06295 Solar and Stellar Astrophysics +1604.06300 Populations and Evolution +1604.06304 Statistics Theory +1604.06306 Group Theory +1604.06308 Applications +1604.06309 Quantum Algebra +1604.06310 Methodology +1604.06313 Theory +1604.06315 Differential Geometry +1604.06325 Superconductivity +1604.06327 Cosmology and Nongalactic Astrophysics +1604.06329 Optimization and Control +1604.06332 Materials Science +1604.06333 Differential Geometry +1604.06335 Applications +1604.06336 Probability +1604.06337 Differential Geometry +1604.06340 Probability +1604.06341 Functional Analysis +1604.06342 Computational Finance +1604.06347 Commutative Algebra +1604.06348 Dynamical Systems +1604.06350 Optimization and Control +1604.06352 Analysis of PDEs +1604.06358 Populations and Evolution +1604.06359 Group Theory +1604.06361 Computation and Language +1604.06363 Algebraic Geometry +1604.06365 +1604.06370 Probability +1604.06373 +1604.06375 Differential Geometry +1604.06376 Logic in Computer Science +1604.06379 Discrete Mathematics +1604.06380 Methodology +1604.06386 Logic in Computer Science +1604.06392 Combinatorics +1604.06393 Rings and Algebras +1604.06394 Probability +1604.06403 Statistical Mechanics +1604.06404 Probability +1604.06407 Algebraic Geometry +1604.06408 Materials Science +1604.06411 Number Theory +1604.06412 Databases +1604.06413 Number Theory +1604.06416 Data Analysis, Statistics and Probability +1604.06418 Probability +1604.06419 +1604.06420 Probability +1604.06421 Probability +1604.06422 High Energy Astrophysical Phenomena +1604.06423 Optimization and Control +1604.06424 Optics +1604.06425 Mesoscale and Nanoscale Physics +1604.06428 +1604.06429 Quantum Algebra +1604.06434 Metric Geometry +1604.06436 Optics +1604.06440 Differential Geometry +1604.06443 Data Structures and Algorithms +1604.06449 Strongly Correlated Electrons +1604.06450 Superconductivity +0806.2108 Cell Behavior +0909.4065 Symplectic Geometry +1009.0446 Optics +1109.0593 Data Analysis, Statistics and Probability +1203.1575 +1205.5026 Biomolecules +1206.2915 Spectral Theory +1207.0092 Symplectic Geometry +1207.3657 +1208.2342 Analysis of PDEs +1208.4422 Exactly Solvable and Integrable Systems +1209.1183 Algebraic Geometry +1211.6435 Symplectic Geometry +1212.1057 Astrophysics of Galaxies +1302.4832 +1304.5343 Solar and Stellar Astrophysics +1304.7620 Analysis of PDEs +1305.0442 Instrumentation and Detectors +1305.2187 +1308.3802 Materials Science +1310.1959 Geometric Topology +1311.2374 Algebraic Geometry +1312.0545 Instrumentation and Detectors +1312.1975 Exactly Solvable and Integrable Systems +1312.2421 Exactly Solvable and Integrable Systems +1312.4133 Dynamical Systems +1312.4321 Pattern Formation and Solitons +1312.4609 Differential Geometry +1401.3605 Classical Analysis and ODEs +1401.4241 Pattern Formation and Solitons +1401.4428 Combinatorics +1403.8111 Analysis of PDEs +1404.4728 Theory +1404.6636 +1405.2054 +1405.3042 Differential Geometry +1405.5240 Statistics Theory +1408.4445 Optimization and Control +1409.2134 Optics +1409.2232 Computer Vision and Pattern Recognition +1410.3914 Data Analysis, Statistics and Probability +1410.4534 Computation +1411.0151 Commutative Algebra +1411.2383 Geometric Topology +1411.7652 +1501.00395 Spectral Theory +1501.02269 High Energy Astrophysical Phenomena +1501.02831 Spectral Theory +1501.03890 Geometric Topology +1501.04677 Probability +1502.00069 Theory +1502.00902 Exactly Solvable and Integrable Systems +1502.01648 Optics +1502.02276 +1502.02715 Analysis of PDEs +1502.02803 Information Theory +1502.04507 +1502.04657 Numerical Analysis +1502.04998 +1502.05351 Category Theory +1503.00423 Data Structures and Algorithms +1503.01559 Materials Science +1503.01730 Atomic and Molecular Clusters +1503.03724 Algebraic Topology +1503.04800 Theory +1504.00135 Combinatorics +1504.01090 Information Theory +1504.02541 +1504.03177 +1504.04316 Dynamical Systems +1504.04668 Functional Analysis +1504.07100 +1505.01641 Analysis of PDEs +1505.02243 Theory +1505.03461 +1505.04159 Probability +1505.06019 +1505.06352 Optics +1505.06841 Information Theory +1505.07589 Mathematical Software +1506.01090 +1506.01758 Analysis of PDEs +1506.01942 Representation Theory +1506.02362 Exactly Solvable and Integrable Systems +1506.02688 General Physics +1506.02693 Information Theory +1506.02708 +1506.05532 Computer Vision and Pattern Recognition +1506.05634 Complex Variables +1506.08402 Materials Science +1506.08639 Exactly Solvable and Integrable Systems +1506.08660 Atomic Physics +1507.00032 Spectral Theory +1507.00461 Optimization and Control +1507.00897 Exactly Solvable and Integrable Systems +1507.01978 Learning +1507.02147 Metric Geometry +1507.02243 Fluid Dynamics +1507.02609 Rings and Algebras +1507.03357 Atomic Physics +1507.03420 +1507.06120 Computer Vision and Pattern Recognition +1507.06145 Statistics Theory +1507.07655 Solar and Stellar Astrophysics +1507.08796 Spectral Theory +1508.00017 Cosmology and Nongalactic Astrophysics +1508.01446 Dynamical Systems +1508.06635 Phenomenology +1509.00088 +1509.00254 +1509.00604 Fluid Dynamics +1509.01360 Systems and Control +1509.01558 +1509.03791 Algebraic Geometry +1509.03912 Mesoscale and Nanoscale Physics +1509.04959 +1509.05208 Computational Engineering, Finance, and Science +1509.06277 Analysis of PDEs +1509.06650 Materials Science +1509.07252 Classical Physics +1509.07277 Dynamical Systems +1509.07482 Algebraic Geometry +1509.08357 Computational Engineering, Finance, and Science +1509.08441 Symplectic Geometry +1509.08496 Computer Science and Game Theory +1509.08903 Probability +1510.00191 Soft Condensed Matter +1510.00533 +1510.00787 Representation Theory +1510.01358 Fluid Dynamics +1510.01522 Theory +1510.01540 Exactly Solvable and Integrable Systems +1510.02145 Optimization and Control +1510.02171 Optimization and Control +1510.05152 Numerical Analysis +1510.06077 Analysis of PDEs +1510.07260 Neurons and Cognition +1510.07937 Instrumentation and Detectors +1510.07987 Operator Algebras +1510.08023 +1510.08231 Learning +1510.08379 +1510.08866 Quantum Gases +1510.09149 Earth and Planetary Astrophysics +1511.00585 +1511.01397 Analysis of PDEs +1511.01542 Theory +1511.01792 Atomic Physics +1511.02086 Quantitative Methods +1511.02187 Machine Learning +1511.02314 Pattern Formation and Solitons +1511.02812 Theory +1511.02928 Computer Vision and Pattern Recognition +1511.02952 Materials Science +1511.03293 Atomic Physics +1511.03883 Geometric Topology +1511.04333 Group Theory +1511.04382 Classical Analysis and ODEs +1511.04595 Theory +1511.04921 Theory +1511.05279 Phenomenology +1511.05299 Theory +1511.05305 Analysis of PDEs +1511.06023 Combinatorics +1511.06202 General Mathematics +1511.07003 Mesoscale and Nanoscale Physics +1511.07030 Statistics Theory +1511.08011 Soft Condensed Matter +1511.08058 Computer Vision and Pattern Recognition +1511.08575 Information Theory +1511.09362 Theory +1511.09380 Optics +1512.00037 Neurons and Cognition +1512.00101 Data Structures and Algorithms +1512.00207 Theory +1512.00232 Phenomenology +1512.00468 Phenomenology +1512.00880 +1512.01003 Computer Vision and Pattern Recognition +1512.01119 Phenomenology +1512.01489 Theory +1512.01592 Theory +1512.02345 +1512.03041 Quantum Algebra +1512.04297 Combinatorics +1512.04388 Computational Geometry +1512.04569 Numerical Analysis +1512.04732 Theory +1512.04879 Optics +1512.04941 Phenomenology +1512.05824 Optics +1512.05945 Theory +1512.07143 Artificial Intelligence +1512.07293 Information Theory +1512.07387 Materials Science +1512.07622 Phenomenology +1512.07687 Theory +1512.07898 Fluid Dynamics +1512.08309 Neurons and Cognition +1512.08524 Quantum Algebra +1512.09061 Theory +1601.00530 Information Theory +1601.00670 Computation +1601.00860 Theory +1601.01115 +1601.01329 Theory +1601.01900 Optics +1601.02253 Theory +1601.02458 +1601.02531 Theory +1601.03170 Representation Theory +1601.03367 Classical Analysis and ODEs +1601.04425 Atomic Physics +1601.04466 +1601.04843 Chaotic Dynamics +1601.04892 +1601.05043 Classical Physics +1601.05446 +1601.05807 Statistical Mechanics +1601.05860 Geometric Topology +1601.05933 Atomic Physics +1601.05972 Spectral Theory +1601.07661 Computer Vision and Pattern Recognition +1601.07705 Materials Science +1601.07974 Optics +1602.00082 Mesoscale and Nanoscale Physics +1602.00186 Mesoscale and Nanoscale Physics +1602.00298 Phenomenology +1602.00941 +1602.01147 Theory +1602.01332 Mesoscale and Nanoscale Physics +1602.01674 Theory +1602.02027 Numerical Analysis +1602.02718 Information Theory +1602.02720 Computer Vision and Pattern Recognition +1602.02751 +1602.03724 +1602.03815 Statistical Mechanics +1602.03979 Computational Engineering, Finance, and Science +1602.03987 Materials Science +1602.03992 Machine Learning +1602.04064 Instrumentation and Detectors +1602.04098 +1602.04288 Strongly Correlated Electrons +1602.04345 Information Theory +1602.04988 +1602.05422 Metric Geometry +1602.05447 Statistical Mechanics +1602.05502 General Physics +1602.05633 Materials Science +1602.07124 Mesoscale and Nanoscale Physics +1602.07248 Algebraic Geometry +1602.07564 Plasma Physics +1602.07621 Lattice +1602.07705 Theory +1602.08130 Cosmology and Nongalactic Astrophysics +1602.08595 Numerical Analysis +1602.08658 Networking and Internet Architecture +1602.08710 Networking and Internet Architecture +1602.09039 Networking and Internet Architecture +1603.00038 Optics +1603.00316 Optimization and Control +1603.00394 Solar and Stellar Astrophysics +1603.00645 Probability +1603.00851 Theory +1603.01301 Optics +1603.01406 +1603.01411 Applications +1603.01477 Optics +1603.01875 +1603.02427 Fluid Dynamics +1603.03243 Cosmology and Nongalactic Astrophysics +1603.03277 Strongly Correlated Electrons +1603.04217 +1603.04325 Optics +1603.04477 Molecular Networks +1603.04608 Optics +1603.05215 Optimization and Control +1603.05234 Cosmology and Nongalactic Astrophysics +1603.05511 Theory +1603.06380 Phenomenology +1603.06643 Adaptation and Self-Organizing Systems +1603.07681 Functional Analysis +1603.07869 High Energy Astrophysical Phenomena +1603.07956 Symplectic Geometry +1603.08221 Computational Physics +1603.08527 Phenomenology +1603.08720 Computer Vision and Pattern Recognition +1603.08727 Optics +1603.08764 Strongly Correlated Electrons +1603.08795 Mesoscale and Nanoscale Physics +1603.08935 Theory +1603.08955 +1603.09253 Geophysics +1603.09515 Chaotic Dynamics +1603.09532 Discrete Mathematics +1604.00074 Information Theory +1604.00289 Artificial Intelligence +1604.00292 Phenomenology +1604.00339 Materials Science +1604.00767 Plasma Physics +1604.00834 Computation and Language +1604.00964 Phenomenology +1604.00968 +1604.01232 Mesoscale and Nanoscale Physics +1604.01516 +1604.01529 Computer Science and Game Theory +1604.01783 Theory +1604.01818 Computer Vision and Pattern Recognition +1604.02312 Optics +1604.02545 +1604.02589 Theory +1604.02817 Optics +1604.03341 Earth and Planetary Astrophysics +1604.03740 Atomic Physics +1604.03779 Optics +1604.03846 Optics +1604.04136 +1604.04150 Fluid Dynamics +1604.04234 Geometric Topology +1604.04782 Phenomenology +1604.05203 Phenomenology +1604.06063 Quantum Gases +1604.06205 Theory +1604.06367 Phenomenology +1604.06627 Statistical Mechanics +1604.06677 Phenomenology +1604.06827 Chemical Physics +1604.06893 +1604.06937 Materials Science +1604.07028 +1604.07118 Analysis of PDEs +1604.07341 Soft Condensed Matter +1604.07419 Phenomenology +1604.07421 Phenomenology +1604.07614 Statistical Mechanics +1604.07740 Phenomenology +1604.08111 General Mathematics +1604.08119 Optics +1604.08165 Plasma Physics +1604.08400 Strongly Correlated Electrons +1604.08596 Phenomenology +1604.08757 Mesoscale and Nanoscale Physics +1604.08840 Atomic Physics +1605.00200 Materials Science +1605.00667 Instrumentation and Detectors +1605.00673 Geophysics +1605.00685 Disordered Systems and Neural Networks +1605.00694 Other Condensed Matter +1605.00816 Fluid Dynamics +1605.01230 Logic +1605.01253 Software Engineering +1605.01427 Strongly Correlated Electrons +1605.01594 Mesoscale and Nanoscale Physics +1605.01983 +1605.02011 +1605.02155 Instrumentation and Detectors +1605.02189 Instrumentation and Detectors +1605.02667 Theory +1605.03110 Fluid Dynamics +1605.03138 Mesoscale and Nanoscale Physics +1605.03511 Materials Science +1605.03618 +1605.03766 Solar and Stellar Astrophysics +1605.04010 Optics +1605.04092 Theory +1605.04182 Optics +1605.04445 Materials Science +1605.04564 Analysis of PDEs +1605.04592 Functional Analysis +1605.04716 Mesoscale and Nanoscale Physics +1605.04769 Algebraic Geometry +1605.04819 +1605.05207 +1605.05228 Soft Condensed Matter +1605.05242 General Physics +1605.05845 Phenomenology +1605.06008 Optics +1605.06235 Instrumentation and Detectors +1605.06281 +1605.06284 Fluid Dynamics +1605.06578 Mesoscale and Nanoscale Physics +1605.06584 Mesoscale and Nanoscale Physics +1605.06607 Physics and Society +1605.06823 Mesoscale and Nanoscale Physics +1605.06851 Probability +1605.07007 +1605.07078 Learning +1605.07143 Space Physics +1605.07310 +1605.07368 Theory +1605.07444 +1605.07463 Plasma Physics +1605.07903 Phenomenology +1605.07933 Statistical Mechanics +1605.08045 Theory +1605.08052 Theory +1605.08077 Phenomenology +1605.08378 +1605.08482 +1606.00246 Accelerator Physics +1606.00718 Complex Variables +1606.00739 Computation and Language +1606.01000 Theory +1606.01192 Optics +1606.01197 Optics +1606.01318 Cosmology and Nongalactic Astrophysics +1606.01489 +1606.01498 +1606.01850 Dynamical Systems +1606.01922 +1606.02150 Number Theory +1606.02290 Instrumentation and Detectors +1606.02336 Accelerator Physics +1606.02394 +1606.02472 +1606.02612 Optimization and Control +1606.02728 Theory +1606.02784 Accelerator Physics +1606.02970 Phenomenology +1606.03080 Phenomenology +1606.03165 Instrumentation and Detectors +1606.03175 Information Theory +1606.03193 Optics +1606.03382 Accelerator Physics +1606.03757 Computation +1606.03786 Accelerator Physics +1606.03802 Learning +1606.03922 Strongly Correlated Electrons +1606.03951 +1606.04149 Phenomenology +1606.04227 Accelerator Physics +1606.04237 Accelerator Physics +1606.04440 Accelerator Physics +1606.04650 Accelerator Physics +1606.04675 Plasma Physics +1606.04681 Mesoscale and Nanoscale Physics +1606.04982 +1606.05044 Optics +1606.05882 Phenomenology +1606.06074 Number Theory +1606.06211 Phenomenology +1606.06503 Strongly Correlated Electrons +1606.06609 Theory +1606.06693 Phenomenology +1606.06968 Cosmology and Nongalactic Astrophysics +1606.06981 Phenomenology +1606.07054 +1606.07289 Machine Learning +1606.07444 Theory +1606.07495 Combinatorics +1606.07549 Instrumentation and Detectors +1606.07562 Optics +1606.07786 Neural and Evolutionary Computing +1606.07808 Phenomenology +1606.07842 Optics +1606.08067 Phenomenology +1606.08097 Instrumentation and Detectors +1606.08187 Plasma Physics +1606.08223 Soft Condensed Matter +1606.08489 Plasma Physics +1606.08624 Theory +1606.08713 Phenomenology +1606.08766 Distributed, Parallel, and Cluster Computing +1606.08796 +1606.08836 Optics +1606.08839 Mesoscale and Nanoscale Physics +1606.08895 +1606.09026 Soft Condensed Matter +1606.09072 Optics +1606.09168 Probability +1606.09486 Accelerator Physics +1607.00004 Phenomenology +1607.00037 Theory +1607.00039 +1607.00494 Information Theory +1607.01060 High Energy Astrophysical Phenomena +1607.01109 Statistical Mechanics +1607.01161 Plasma Physics +1607.01193 Fluid Dynamics +1607.01646 Chemical Physics +1607.01654 Phenomenology +1607.01781 Theory +1607.01810 Mesoscale and Nanoscale Physics +1607.01853 Statistics Theory +1607.01928 Phenomenology +1607.01969 Atomic Physics +1607.02558 +1607.02697 Optics +1607.02772 +1607.02801 Information Theory +1607.02818 Data Analysis, Statistics and Probability +1607.02879 Computer Science and Game Theory +1607.03119 Theory +1607.03125 Phenomenology +1607.03128 Information Theory +1607.03194 Strongly Correlated Electrons +1607.03397 Mesoscale and Nanoscale Physics +1607.03398 +1607.03536 Phenomenology +1607.03552 Statistical Mechanics +1607.03563 Strongly Correlated Electrons +1607.03600 Combinatorics +1607.03918 Discrete Mathematics +1607.03934 Optics +1607.03950 Superconductivity +1607.04119 Quantum Gases +1607.04319 Dynamical Systems +1607.04776 Information Theory +1607.04854 Chemical Physics +1607.04964 Instrumentation and Detectors +1607.05063 +1607.05098 Optics +1607.05451 Data Structures and Algorithms +1607.05461 Astrophysics of Galaxies +1607.05481 Chemical Physics +1607.05511 Statistical Mechanics +1607.05548 Phenomenology +1607.05576 Solar and Stellar Astrophysics +1607.05641 Phenomenology +1607.05728 Theory +1607.05844 Plasma Physics +1607.06037 Chemical Physics +1607.06046 Mesoscale and Nanoscale Physics +1607.06052 Optics +1607.06199 Materials Science +1607.06220 Astrophysics of Galaxies +1607.06591 Optics +1607.06713 Superconductivity +1607.06828 Theory +1607.07066 Materials Science +1607.07154 Optics +1607.07310 Atomic Physics +1607.07367 Earth and Planetary Astrophysics +1607.07428 Metric Geometry +1607.07621 Phenomenology +1607.08045 Instrumentation and Detectors +1607.08092 Materials Science +1607.08295 Optimization and Control +1607.08347 +1607.08379 Disordered Systems and Neural Networks +1607.08425 Biological Physics +1607.08685 Methodology +1607.08811 Computer Vision and Pattern Recognition +1607.08866 Materials Science +1607.08869 Chemical Physics +1608.00200 Phenomenology +1608.00215 Plasma Physics +1608.00562 Instrumentation and Detectors +1608.00907 +1608.00975 Phenomenology +1608.01180 Data Analysis, Statistics and Probability +1608.01388 Optics +1608.01485 Instrumentation and Detectors +1608.01530 +1608.01694 Computational Physics +1608.01855 Earth and Planetary Astrophysics +1608.01861 Atomic Physics +1608.02122 Soft Condensed Matter +1608.02133 Instrumentation and Methods for Astrophysics +1608.02457 Instrumentation and Methods for Astrophysics +1608.02528 Materials Science +1608.02570 Optics +1608.02596 Theory +1608.02703 Number Theory +1608.02723 Chaotic Dynamics +1608.02934 Instrumentation and Detectors +1608.03267 Statistical Mechanics +1608.03270 Data Structures and Algorithms +1608.03370 Optics +1608.03385 Optimization and Control +1608.03418 Plasma Physics +1608.03455 Solar and Stellar Astrophysics +1608.03570 Theory +1608.03805 Phenomenology +1608.04290 Machine Learning +1608.04320 Learning +1608.04373 Algebraic Geometry +1608.04676 Instrumentation and Detectors +1608.04930 Exactly Solvable and Integrable Systems +1608.05014 Computation and Language +1608.05727 History and Philosophy of Physics +1608.05907 Numerical Analysis +1608.05967 Materials Science +1608.06037 Computer Vision and Pattern Recognition +1608.06074 +1608.06110 Superconductivity +1608.06156 Materials Science +1608.06686 Mesoscale and Nanoscale Physics +1608.07295 Phenomenology +1608.07453 Superconductivity +1608.07725 Chemical Physics +1608.08243 +1608.08264 Optics +1608.08303 +1608.08411 +1608.08805 +1609.00180 Biological Physics +1609.00449 Astrophysics of Galaxies +1609.00599 Trading and Market Microstructure +1609.00624 Algebraic Geometry +1609.01077 Mesoscale and Nanoscale Physics +1609.01520 +1609.01625 Data Analysis, Statistics and Probability +1609.02077 Computer Vision and Pattern Recognition +1609.02414 Probability +1609.02578 Strongly Correlated Electrons +1609.02650 Analysis of PDEs +1609.02676 Optics +1609.02944 High Energy Astrophysical Phenomena +1609.03364 Phenomenology +1609.03422 Materials Science +1609.03502 Combinatorics +1609.03973 Cosmology and Nongalactic Astrophysics +1609.04447 Optimization and Control +1609.04582 Chaotic Dynamics +1609.04766 Operator Algebras +1609.04922 Materials Science +1609.04940 Optics +1609.04968 Mesoscale and Nanoscale Physics +1609.05006 Mesoscale and Nanoscale Physics +1609.05322 Soft Condensed Matter +1609.05445 Optics +1609.05453 Statistical Mechanics +1609.05494 Rings and Algebras +1609.05659 Chemical Physics +1609.05701 Information Theory +1609.05725 Mesoscale and Nanoscale Physics +1609.05855 Materials Science +1609.05859 Mesoscale and Nanoscale Physics +1609.05861 Instrumentation and Detectors +1609.05888 Soft Condensed Matter +1609.05906 Materials Science +1609.06073 Chaotic Dynamics +1609.06237 Theory +1609.06422 +1609.06541 Soft Condensed Matter +1609.06871 Soft Condensed Matter +1609.06924 Soft Condensed Matter +1609.07023 Materials Science +1609.07273 Analysis of PDEs +1609.07286 Materials Science +1609.07310 Mesoscale and Nanoscale Physics +1609.07553 Materials Science +1609.07578 Strongly Correlated Electrons +1609.07579 +1609.07863 Materials Science +1609.07883 Optics +1609.07906 Physics Education +1609.08108 Populations and Evolution +1609.08178 +1609.08437 Computers and Society +1609.08459 Quantum Gases +1609.08688 Combinatorics +1609.08695 +1609.08722 Algebraic Geometry +1609.09031 Data Structures and Algorithms +1609.09539 Mesoscale and Nanoscale Physics +1609.09620 Instrumentation and Detectors +1609.09853 Soft Condensed Matter +1610.00161 Neurons and Cognition +1610.00329 Mesoscale and Nanoscale Physics +1610.00391 Soft Condensed Matter +1610.00534 +1610.00929 Superconductivity +1610.01084 +1610.01486 Computation and Language +1610.01534 +1610.01641 Soft Condensed Matter +1610.01725 Mesoscale and Nanoscale Physics +1610.02033 Theory +1610.02112 Statistical Mechanics +1610.02840 +1610.03100 Statistical Mechanics +1610.03525 Graphics +1610.04098 Geometric Topology +1610.04380 Soft Condensed Matter +1610.04529 Plasma Physics +1610.04720 Chemical Physics +1610.04996 Superconductivity +1610.05089 Chemical Physics +1610.05130 Optics +1610.05380 Number Theory +1610.05515 Biological Physics +1610.05763 Rings and Algebras +1610.05764 Disordered Systems and Neural Networks +1610.06931 Phenomenology +1610.06982 +1610.07184 Distributed, Parallel, and Cluster Computing +1610.07271 Methodology +1610.07291 Differential Geometry +1610.07415 Superconductivity +1610.07672 Information Theory +1610.08062 Mesoscale and Nanoscale Physics +1610.08176 Cosmology and Nongalactic Astrophysics +1610.08327 Materials Science +1610.08542 +1610.08601 Strongly Correlated Electrons +1610.08651 Number Theory +1610.08826 Lattice +1610.08942 Phenomenology +1610.09076 Quantum Gases +1610.09322 Machine Learning +1610.09428 Learning +1610.09435 Distributed, Parallel, and Cluster Computing +1610.09457 Experiment +1610.09555 Learning +1610.09650 Learning +1610.09741 Quantum Algebra +1610.09744 Quantum Algebra +1610.09989 Lattice +1610.09996 Computation and Language +1610.10045 Superconductivity +1610.10074 Lattice +1611.00013 Phenomenology +1611.00265 Metric Geometry +1611.00319 Numerical Analysis +1611.00336 Machine Learning +1611.00357 Functional Analysis +1611.00358 Neurons and Cognition +1611.00363 Instrumentation and Methods for Astrophysics +1611.00366 Cosmology and Nongalactic Astrophysics +1611.00370 Computers and Society +1611.00373 Experiment +1611.00374 Cryptography and Security +1611.00375 +1611.00376 Cosmology and Nongalactic Astrophysics +1611.00377 Social and Information Networks +1611.00379 Human-Computer Interaction +1611.00381 Cryptography and Security +1611.00382 Algebraic Topology +1611.00383 Soft Condensed Matter +1611.00384 Information Retrieval +1611.00386 Soft Condensed Matter +1611.00387 Classical Analysis and ODEs +1611.00391 Algebraic Geometry +1611.00393 Computer Vision and Pattern Recognition +1611.00396 Statistical Mechanics +1611.00398 Methodology +1611.00399 +1611.00400 Methodology +1611.00401 Logic in Computer Science +1611.00403 Networking and Internet Architecture +1611.00406 Instrumentation and Detectors +1611.00409 Probability +1611.00410 Rings and Algebras +1611.00411 Probability +1611.00414 Mesoscale and Nanoscale Physics +1611.00415 Commutative Algebra +1611.00416 Algebraic Geometry +1611.00417 Number Theory +1611.00420 Astrophysics of Galaxies +1611.00421 Computer Vision and Pattern Recognition +1611.00423 Databases +1611.00426 Quantum Gases +1611.00427 Mesoscale and Nanoscale Physics +1611.00430 +1611.00432 Geometric Topology +1611.00433 Analysis of PDEs +1611.00435 Information Theory +1611.00436 Materials Science +1611.00438 Classical Analysis and ODEs +1611.00439 Logic +1611.00440 Information Retrieval +1611.00442 Statistics Theory +1611.00445 Instrumentation and Detectors +1611.00446 Theory +1611.00447 Computers and Society +1611.00448 Learning +1611.00450 Optimization and Control +1611.00454 Learning +1611.00457 Social and Information Networks +1611.00458 High Energy Astrophysical Phenomena +1611.00460 Applications +1611.00461 Group Theory +1611.00462 Analysis of PDEs +1611.00464 Computational Finance +1611.00465 Geometric Topology +1611.00466 Lattice +1611.00467 Programming Languages +1611.00468 Computer Vision and Pattern Recognition +1611.00469 Cryptography and Security +1611.00470 Algebraic Geometry +1611.00472 Computation and Language +1611.00473 Cosmology and Nongalactic Astrophysics +1611.00476 Operator Algebras +1611.00478 Materials Science +1611.00479 +1611.00485 Number Theory +1611.00487 Algebraic Topology +1611.00488 Instrumentation and Methods for Astrophysics +1611.00490 Materials Science +1611.00491 Information Theory +1611.00493 Probability +1611.00494 Functional Analysis +1611.00495 Phenomenology +1611.00499 Rings and Algebras +1611.00500 Phenomenology +1611.00502 Combinatorics +1611.00503 Lattice +1611.00504 Algebraic Geometry +1611.00505 Fluid Dynamics +1611.00507 Data Structures and Algorithms +1611.00508 Dynamical Systems +1611.00509 Neurons and Cognition +1611.00511 Solar and Stellar Astrophysics +1611.00514 Sound +1611.00515 Probability +1611.00517 Superconductivity +1611.00518 Multiagent Systems +1611.00519 Statistics Theory +1611.00521 Optimization and Control +1611.00522 Systems and Control +1611.00524 Optimization and Control +1611.00525 Rings and Algebras +1611.00527 Physics and Society +1611.00528 Astrophysics of Galaxies +1611.00529 Combinatorics +1611.00530 Theory +1611.00531 Computational Engineering, Finance, and Science +1611.00532 Data Structures and Algorithms +1611.00534 Mesoscale and Nanoscale Physics +1611.00535 Representation Theory +1611.00536 Complex Variables +1611.00537 Geometric Topology +1611.00538 Artificial Intelligence +1611.00539 Differential Geometry +1611.00540 Solar and Stellar Astrophysics +1611.00542 Cosmology and Nongalactic Astrophysics +1611.00544 Applications +1611.00545 Biological Physics +1611.00546 Theory +1611.00548 Classical Analysis and ODEs +1611.00549 Artificial Intelligence +1611.00550 Spectral Theory +1611.00551 Lattice +1611.00552 Mesoscale and Nanoscale Physics +1611.00553 Algebraic Geometry +1611.00554 Astrophysics of Galaxies +1611.00555 Machine Learning +1611.00556 Algebraic Geometry +1611.00557 Geophysics +1611.00558 Information Retrieval +1611.00559 Data Structures and Algorithms +1611.00560 Accelerator Physics +1611.00561 Numerical Analysis +1611.00562 General Topology +1611.00563 Analysis of PDEs +1611.00565 Machine Learning +1611.00566 Networking and Internet Architecture +1611.00567 Group Theory +1611.00568 Social and Information Networks +1611.00569 Differential Geometry +1611.00570 Soft Condensed Matter +1611.00571 Number Theory +1611.00574 Formal Languages and Automata Theory +1611.00575 Dynamical Systems +1611.00576 Artificial Intelligence +1611.00577 Neural and Evolutionary Computing +1611.00578 Software Engineering +1611.00579 Pattern Formation and Solitons +1611.00581 Optimization and Control +1611.00582 Systems and Control +1611.00583 Mesoscale and Nanoscale Physics +1611.00586 Systems and Control +1611.00588 Differential Geometry +1611.00590 Theory +1611.00591 Computer Vision and Pattern Recognition +1611.00592 Theory +1611.00593 Theory +1611.00596 Geophysics +1611.00598 Information Retrieval +1611.00599 General Physics +1611.00602 Programming Languages +1611.00603 General Physics +1611.00605 Computational Physics +1611.00606 Computational Engineering, Finance, and Science +1611.00607 Data Analysis, Statistics and Probability +1611.00609 Astrophysics of Galaxies +1611.00610 Numerical Analysis +1611.00615 +1611.00616 Computational Engineering, Finance, and Science +1611.00617 Information Theory +1611.00618 Numerical Analysis +1611.00619 +1611.00620 Lattice +1611.00622 Functional Analysis +1611.00623 High Energy Astrophysical Phenomena +1611.00624 Statistical Mechanics +1611.00627 Atomic Physics +1611.00628 Quantum Algebra +1611.00630 Statistics Theory +1611.00631 +1611.00633 Biological Physics +1611.00637 Statistical Mechanics +1611.00638 Optics +1611.00639 Physics and Society +1611.00641 Mesoscale and Nanoscale Physics +1611.00643 Fluid Dynamics +1611.00644 +1611.00645 Phenomenology +1611.00648 Optics +1611.00650 Statistical Mechanics +1611.00655 Plasma Physics +1611.00657 Pattern Formation and Solitons +1611.00658 Probability +1611.00661 +1611.00662 Representation Theory +1611.00663 Quantum Gases +1611.00664 +1611.00665 Data Structures and Algorithms +1611.00666 Molecular Networks +1611.00671 Optimization and Control +1611.00672 Differential Geometry +1611.00673 Strongly Correlated Electrons +1611.00675 Mathematical Software +1611.00676 Databases +1611.00678 Classical Analysis and ODEs +1611.00679 Networking and Internet Architecture +1611.00681 Optics +1611.00684 Computer Vision and Pattern Recognition +1611.00685 Artificial Intelligence +1611.00687 Social and Information Networks +1611.00688 Networking and Internet Architecture +1611.00692 Programming Languages +1611.00693 Biomolecules +1611.00694 Theory +1611.00695 Optics +1611.00698 Analysis of PDEs +1611.00702 Lattice +1611.00706 Atomic Physics +1611.00707 Optimization and Control +1611.00708 Networking and Internet Architecture +1611.00709 Information Theory +1611.00710 Neural and Evolutionary Computing +1611.00711 Optimization and Control +1611.00713 +1611.00714 Learning +1611.00715 Category Theory +1611.00716 Biomolecules +1611.00717 Methodology +1611.00718 Combinatorics +1611.00720 Number Theory +1611.00721 Data Structures and Algorithms +1611.00722 Dynamical Systems +1611.00724 Optimization and Control +1611.00730 Cell Behavior +1611.00731 Computational Physics +1611.00732 Populations and Evolution +1611.00735 Symplectic Geometry +1611.00737 Soft Condensed Matter +1611.00739 Other Computer Science +1611.00742 Cryptography and Security +1611.00743 Analysis of PDEs +1611.00744 Disordered Systems and Neural Networks +1611.00745 Probability +1611.00748 Strongly Correlated Electrons +1611.00750 +1611.00751 Instrumentation and Methods for Astrophysics +1611.00752 Cosmology and Nongalactic Astrophysics +1611.00755 Data Structures and Algorithms +astro-ph/0001255 +astro-ph/0002193 +astro-ph/0002204 +astro-ph/0002268 +astro-ph/0002307 +astro-ph/0003485 +astro-ph/0004046 +astro-ph/0004096 +astro-ph/0004098 +astro-ph/0004244 +astro-ph/0004356 +astro-ph/0005594 +astro-ph/0007290 +astro-ph/0009271 +astro-ph/0010570 +astro-ph/0011171 +astro-ph/0011292 +astro-ph/0011295 +astro-ph/0011553 +astro-ph/0012026 +astro-ph/0012084 +astro-ph/0012233 +astro-ph/0012234 +astro-ph/0012235 +astro-ph/0012338 +astro-ph/0101071 +astro-ph/0101176 +astro-ph/0101203 +astro-ph/0101204 +astro-ph/0101212 +astro-ph/0101263 +astro-ph/0101284 +astro-ph/0101286 +astro-ph/0101323 +astro-ph/0101338 +astro-ph/0101343 +astro-ph/0101376 +astro-ph/0101383 +astro-ph/0101414 +astro-ph/0101415 +astro-ph/0101432 +astro-ph/0101438 +astro-ph/0101439 +astro-ph/0101469 +astro-ph/0101561 +astro-ph/0102082 +astro-ph/0102247 +astro-ph/0102305 +astro-ph/0103094 +astro-ph/0103169 +astro-ph/0103170 +astro-ph/0104048 +astro-ph/0105299 +astro-ph/0106200 +astro-ph/0109495 +astro-ph/0202517 +astro-ph/0203070 +astro-ph/0305209 +astro-ph/0305501 +astro-ph/0306094 +astro-ph/0306114 +astro-ph/0306265 +astro-ph/0306427 +astro-ph/0306553 +astro-ph/0409549 +astro-ph/0411215 +astro-ph/0411222 +astro-ph/0411396 +astro-ph/0411409 +astro-ph/0411491 +astro-ph/0411629 +astro-ph/0412059 +astro-ph/0412273 +astro-ph/0501007 +astro-ph/0501276 +astro-ph/0502118 +astro-ph/9512060 +astro-ph/9608077 +astro-ph/9611054 +astro-ph/9701225 +astro-ph/9908247 +cond-mat/9308014 +cond-mat/9309047 +cond-mat/9312051 +cond-mat/9407027 +cond-mat/9408101 +cond-mat/9411017 +cond-mat/9503063 +cond-mat/9601060 +cond-mat/9703026 Mesoscale and Nanoscale Physics +cond-mat/9704055 Mesoscale and Nanoscale Physics +cond-mat/9708148 Soft Condensed Matter +cond-mat/9709293 Materials Science +cond-mat/9802244 Mesoscale and Nanoscale Physics +cond-mat/9803111 Soft Condensed Matter +cond-mat/9810353 +cond-mat/9812186 Mesoscale and Nanoscale Physics +funct-an/9502006 Functional Analysis +gr-qc/0001099 +gr-qc/0004010 +gr-qc/0203076 +gr-qc/0501064 +gr-qc/0508122 +gr-qc/9511014 +gr-qc/9705015 +gr-qc/9910021 +hep-ex/0004030 Experiment +hep-ex/0101019 Experiment +hep-ex/0504022 Experiment +hep-ex/9707026 Experiment +hep-ex/9709029 Experiment +hep-ex/9709030 Experiment +hep-lat/9402010 Lattice +hep-lat/9411073 Lattice +hep-lat/9504013 Lattice +hep-lat/9505006 Lattice +hep-lat/9505024 Lattice +hep-lat/9505026 Lattice +hep-lat/9506005 Lattice +hep-lat/9506016 Lattice +hep-lat/9506017 Lattice +hep-lat/9506018 Lattice +hep-lat/9506024 Lattice +hep-lat/9506033 Lattice +hep-lat/9508015 Lattice +hep-lat/9710057 Lattice +hep-ph/0001026 Phenomenology +hep-ph/0001077 Phenomenology +hep-ph/0001173 Phenomenology +hep-ph/0001199 Phenomenology +hep-ph/0001207 Phenomenology +hep-ph/0001210 Phenomenology +hep-ph/0001236 Phenomenology +hep-ph/0001241 Phenomenology +hep-ph/0001285 Phenomenology +hep-ph/0001292 Phenomenology +hep-ph/0001294 Phenomenology +hep-ph/0001328 Phenomenology +hep-ph/0002002 Phenomenology +hep-ph/0002012 Phenomenology +hep-ph/0002026 Phenomenology +hep-ph/0002031 Phenomenology +hep-ph/0002107 Phenomenology +hep-ph/0002109 Phenomenology +hep-ph/0002125 Phenomenology +hep-ph/0002146 Phenomenology +hep-ph/0002187 Phenomenology +hep-ph/0002197 Phenomenology +hep-ph/0002256 Phenomenology +hep-ph/0002273 Phenomenology +hep-ph/0003069 Phenomenology +hep-ph/0003120 Phenomenology +hep-ph/0003166 Phenomenology +hep-ph/0003208 Phenomenology +hep-ph/0003232 Phenomenology +hep-ph/0003248 Phenomenology +hep-ph/0003250 Phenomenology +hep-ph/0003265 Phenomenology +hep-ph/0003294 Phenomenology +hep-ph/0003306 Phenomenology +hep-ph/0003310 Phenomenology +hep-ph/0003314 Phenomenology +hep-ph/0003315 Phenomenology +hep-ph/0004036 Phenomenology +hep-ph/0004042 Phenomenology +hep-ph/0004058 Phenomenology +hep-ph/0004072 Phenomenology +hep-ph/0004096 Phenomenology +hep-ph/0004102 Phenomenology +hep-ph/0004129 Phenomenology +hep-ph/0004202 Phenomenology +hep-ph/0004240 Phenomenology +hep-ph/0005011 Phenomenology +hep-ph/0005079 Phenomenology +hep-ph/0005091 Phenomenology +hep-ph/0005256 Phenomenology +hep-ph/0008330 Phenomenology +hep-ph/0010335 Phenomenology +hep-ph/0011313 Phenomenology +hep-ph/0011318 Phenomenology +hep-ph/0102099 Phenomenology +hep-ph/0103077 Phenomenology +hep-ph/0103079 Phenomenology +hep-ph/0401178 Phenomenology +hep-ph/0409251 Phenomenology +hep-ph/0409252 Phenomenology +hep-ph/0409272 Phenomenology +hep-ph/0409323 Phenomenology +hep-ph/0409344 Phenomenology +hep-ph/0410007 Phenomenology +hep-ph/0411149 Phenomenology +hep-ph/0412076 Phenomenology +hep-ph/0412351 Phenomenology +hep-ph/0501113 Phenomenology +hep-ph/0511122 Phenomenology +hep-ph/0511265 Phenomenology +hep-ph/9204201 Phenomenology +hep-ph/9211275 Phenomenology +hep-ph/9404205 Phenomenology +hep-ph/9404264 Phenomenology +hep-ph/9404265 Phenomenology +hep-ph/9404314 Phenomenology +hep-ph/9412361 Phenomenology +hep-ph/9503400 Phenomenology +hep-ph/9503425 Phenomenology +hep-ph/9503427 Phenomenology +hep-ph/9504210 Phenomenology +hep-ph/9504216 Phenomenology +hep-ph/9504289 Phenomenology +hep-ph/9504310 Phenomenology +hep-ph/9504324 Phenomenology +hep-ph/9504325 Phenomenology +hep-ph/9505208 Phenomenology +hep-ph/9505263 Phenomenology +hep-ph/9505265 Phenomenology +hep-ph/9505293 Phenomenology +hep-ph/9505307 Phenomenology +hep-ph/9505345 Phenomenology +hep-ph/9505346 Phenomenology +hep-ph/9506365 Phenomenology +hep-ph/9506366 Phenomenology +hep-ph/9510375 Phenomenology +hep-ph/9511206 Phenomenology +hep-ph/9701231 Phenomenology +hep-ph/9702287 Phenomenology +hep-ph/9702375 Phenomenology +hep-ph/9702431 Phenomenology +hep-ph/9703387 Phenomenology +hep-ph/9703412 Phenomenology +hep-ph/9703442 Phenomenology +hep-ph/9704347 Phenomenology +hep-ph/9704376 Phenomenology +hep-ph/9704453 Phenomenology +hep-ph/9705282 Phenomenology +hep-ph/9705292 Phenomenology +hep-ph/9705404 Phenomenology +hep-ph/9705461 Phenomenology +hep-ph/9706340 Phenomenology +hep-ph/9706380 Phenomenology +hep-ph/9706384 Phenomenology +hep-ph/9706463 Phenomenology +hep-ph/9706466 Phenomenology +hep-ph/9706524 Phenomenology +hep-ph/9706532 Phenomenology +hep-ph/9706548 Phenomenology +hep-ph/9707209 Phenomenology +hep-ph/9707217 Phenomenology +hep-ph/9707241 Phenomenology +hep-ph/9707280 Phenomenology +hep-ph/9707283 Phenomenology +hep-ph/9707295 Phenomenology +hep-ph/9707410 Phenomenology +hep-ph/9707451 Phenomenology +hep-ph/9707497 Phenomenology +hep-ph/9707544 Phenomenology +hep-ph/9708214 Phenomenology +hep-ph/9708252 Phenomenology +hep-ph/9708254 Phenomenology +hep-ph/9708296 Phenomenology +hep-ph/9709244 Phenomenology +hep-ph/9709336 Phenomenology +hep-ph/9709356 Phenomenology +hep-ph/9709425 Phenomenology +hep-ph/9709440 Phenomenology +hep-ph/9709471 Phenomenology +hep-ph/9710475 Phenomenology +hep-ph/9710483 Phenomenology +hep-ph/9710559 Phenomenology +hep-ph/9712489 Phenomenology +hep-ph/9712509 Phenomenology +hep-ph/9712513 Phenomenology +hep-ph/9801331 Phenomenology +hep-ph/9801443 Phenomenology +hep-ph/9805263 Phenomenology +hep-ph/9806266 Phenomenology +hep-ph/9912466 Phenomenology +hep-ph/9912480 Phenomenology +hep-th/0001157 Theory +hep-th/0002166 Theory +hep-th/0003156 Theory +hep-th/0003251 Theory +hep-th/0004016 Theory +hep-th/0409189 Theory +hep-th/0501002 Theory +hep-th/0503110 Theory +hep-th/9308011 Theory +hep-th/9308135 Theory +hep-th/9309072 Theory +hep-th/9309115 Theory +hep-th/9309125 Theory +hep-th/9401138 Theory +hep-th/9404075 Theory +hep-th/9408129 Theory +hep-th/9505019 Theory +hep-th/9506123 Theory +hep-th/9510021 Theory +hep-th/9511190 Theory +hep-th/9601020 Theory +hep-th/9601022 Theory +hep-th/9703118 Theory +hep-th/9705011 Theory +hep-th/9705127 Theory +hep-th/9707075 Theory +hep-th/9902003 Theory +hep-th/9903252 Theory +nucl-th/9403014 +nucl-th/9409013 +nucl-th/9502045 +nucl-th/9504015 +nucl-th/9505004 +nucl-th/9510062 +physics/0006049 General Physics +physics/9710038 +q-alg/9512017 Quantum Algebra +q-alg/9512018 Quantum Algebra +q-alg/9602016 Quantum Algebra +quant-ph/9812037 +0802.1268 Differential Geometry +1111.4173 Differential Geometry +1203.6700 Logic +1205.0716 Differential Geometry +1210.0107 +1301.2942 Operator Algebras +1306.0024 Digital Libraries +1306.3599 Solar and Stellar Astrophysics +1307.4847 Learning +1309.2389 Soft Condensed Matter +1310.0950 Functional Analysis +1311.6372 Numerical Analysis +1312.2666 Differential Geometry +1401.2770 Chemical Physics +1402.0827 Lattice +1402.0831 Lattice +1403.7837 +1406.1293 Differential Geometry +1406.2139 Computer Vision and Pattern Recognition +1406.5683 Differential Geometry +1409.0146 Quantum Gases +1409.7706 Cosmology and Nongalactic Astrophysics +1409.8320 +1411.1624 Pricing of Securities +1411.5235 Numerical Analysis +1412.2580 Optics +1412.2582 Group Theory +1412.2605 +1412.2662 Emerging Technologies +1412.7103 Statistics Theory +1412.7595 Multimedia +1412.7885 Combinatorics +1412.8331 +1501.00508 Algebraic Topology +1501.06843 Number Theory +1502.05183 Distributed, Parallel, and Cluster Computing +1502.06619 Theory +1502.06794 +1503.01293 Phenomenology +1503.02999 Analysis of PDEs +1503.03441 Combinatorics +1503.06253 Materials Science +1503.06822 Discrete Mathematics +1504.01128 Methodology +1504.02797 +1504.04093 Computation +1505.05274 Strongly Correlated Electrons +1505.06186 General Physics +1505.07533 Probability +1506.05302 Atomic Physics +1506.08184 Quantum Gases +1506.09150 Numerical Analysis +1507.00778 Probability +1507.01521 Group Theory +1507.04310 Algebraic Topology +1507.05602 Digital Libraries +1507.05814 Materials Science +1507.06039 Superconductivity +1508.00012 Theory +1508.01981 +1508.02807 Numerical Analysis +1508.02833 Materials Science +1508.02965 Numerical Analysis +1508.03137 Geophysics +1508.06682 Phenomenology +1509.00016 Social and Information Networks +1509.00914 +1509.01099 Logic +1509.02259 +1509.03383 Group Theory +1509.05737 Disordered Systems and Neural Networks +1509.08030 Rings and Algebras +1510.00950 Number Theory +1510.03088 Spectral Theory +1510.05033 Adaptation and Self-Organizing Systems +1510.07643 Analysis of PDEs +1510.08040 Group Theory +1510.08224 Computational Physics +1510.08341 Information Theory +1510.08750 Analysis of PDEs +1511.01071 Theory +1511.01497 Theory +1511.03217 +1511.04203 Plasma Physics +1511.05944 Experiment +1511.06135 Atomic Physics +1511.06148 Representation Theory +1511.08738 Mesoscale and Nanoscale Physics +1512.02059 Networking and Internet Architecture +1512.03068 Mesoscale and Nanoscale Physics +1512.03828 General Mathematics +1512.04284 Superconductivity +1512.04312 Algebraic Geometry +1512.05005 Fluid Dynamics +1512.05209 Atomic Physics +1512.05444 Complex Variables +1512.05657 Phenomenology +1512.06220 Applications +1512.06541 +1512.06628 Quantum Gases +1512.06776 Representation Theory +1512.07459 Populations and Evolution +1512.08838 Symplectic Geometry +1512.08919 Instrumentation and Detectors +1512.09055 Theory +1601.00204 Optimization and Control +1601.00556 Probability +1601.01552 +1601.02011 Statistical Mechanics +1601.02436 Information Theory +1601.02634 Theory +1601.02964 Materials Science +1601.03212 Mesoscale and Nanoscale Physics +1601.03724 Classical Analysis and ODEs +1601.04868 +1601.05435 Statistical Mechanics +1601.07303 Spectral Theory +1602.00720 Theory +1602.00829 Soft Condensed Matter +1602.05076 Superconductivity +1602.06117 +1602.06905 Dynamical Systems +1602.07038 Graphics +1602.07197 +1602.07252 Experiment +1602.07652 Numerical Analysis +1602.08916 Phenomenology +1603.00383 Strongly Correlated Electrons +1603.02816 +1603.02925 Disordered Systems and Neural Networks +1603.02934 Experiment +1603.03663 +1603.03676 Mesoscale and Nanoscale Physics +1603.05236 Differential Geometry +1603.05469 High Energy Astrophysical Phenomena +1603.06707 Phenomenology +1603.07525 Lattice +1603.08836 +1603.08867 High Energy Astrophysical Phenomena +1603.09701 Social and Information Networks +1603.09742 Computer Vision and Pattern Recognition +1604.00959 Group Theory +1604.01619 General Physics +1604.02751 Computational Physics +1604.03088 Phenomenology +1604.03521 Chaotic Dynamics +1604.03725 +1604.04008 Populations and Evolution +1604.04316 Geometric Topology +1604.04408 Functional Analysis +1604.04993 Mesoscale and Nanoscale Physics +1604.05420 Differential Geometry +1604.05436 Differential Geometry +1604.06355 Atomic and Molecular Clusters +1604.06953 Geometric Topology +1604.08683 Computer Vision and Pattern Recognition +1605.00363 +1605.00509 Digital Libraries +1605.02135 Group Theory +1605.02373 Strongly Correlated Electrons +1605.02527 +1605.02549 Materials Science +1605.02664 Combinatorics +1605.04803 Algebraic Geometry +1605.05943 Fluid Dynamics +1605.08611 Materials Science +1605.09294 Phenomenology +1606.00173 Chaotic Dynamics +1606.00520 K-Theory and Homology +1606.01098 Combinatorics +1606.01206 Databases +1606.01764 Combinatorics +1606.01790 Theory +1606.02872 Superconductivity +1606.03361 Accelerator Physics +1606.03395 Statistical Mechanics +1606.03420 +1606.04189 Computer Vision and Pattern Recognition +1606.04422 Artificial Intelligence +1606.04430 Statistics Theory +1606.04672 Computation and Language +1606.05599 Combinatorics +1606.06959 Machine Learning +1606.09402 Numerical Analysis +1606.09447 Theory +1606.09539 Numerical Analysis +1607.00068 Theory +1607.00089 Information Theory +1607.00299 Lattice +1607.00331 Computer Vision and Pattern Recognition +1607.00426 Representation Theory +1607.00877 Dynamical Systems +1607.00917 K-Theory and Homology +1607.01007 Combinatorics +1607.01173 Lattice +1607.01332 Mesoscale and Nanoscale Physics +1607.01441 Information Theory +1607.01505 Analysis of PDEs +1607.01523 Mesoscale and Nanoscale Physics +1607.01536 Geometric Topology +1607.01703 Materials Science +1607.01713 Soft Condensed Matter +1607.01729 Artificial Intelligence +1607.01763 Geometric Topology +1607.01775 History and Philosophy of Physics +1607.01776 Instrumentation and Methods for Astrophysics +1607.01778 Strongly Correlated Electrons +1607.01780 High Energy Astrophysical Phenomena +1607.01793 High Energy Astrophysical Phenomena +1607.01794 Computer Vision and Pattern Recognition +1607.01796 +1607.01801 +1607.01804 Combinatorics +1607.01811 Geophysics +1607.01812 Pattern Formation and Solitons +1607.01815 +1607.01819 Theory +1607.01821 Optimization and Control +1607.01822 Numerical Analysis +1607.01823 Optics +1607.01824 Astrophysics of Galaxies +1607.01826 Computational Complexity +1607.01827 Information Theory +1607.01828 Formal Languages and Automata Theory +1607.01831 Phenomenology +1607.01833 Methodology +1607.01834 Group Theory +1607.01835 Programming Languages +1607.01838 Multiagent Systems +1607.01839 Analysis of PDEs +1607.01841 Cell Behavior +1607.01848 Systems and Control +1607.01850 Optics +1607.01851 Quantum Gases +1607.01854 Materials Science +1607.01855 Computer Vision and Pattern Recognition +1607.01856 Computation and Language +1607.01861 Optimization and Control +1607.01864 Information Theory +1607.01869 Information Retrieval +1607.01870 +1607.01872 Information Theory +1607.01876 Combinatorics +1607.01878 Strongly Correlated Electrons +1607.01880 Discrete Mathematics +1607.01885 Populations and Evolution +1607.01886 Logic in Computer Science +1607.01887 Information Theory +1607.01888 Fluid Dynamics +1607.01889 Astrophysics of Galaxies +1607.01893 Software Engineering +1607.01894 Earth and Planetary Astrophysics +1607.01897 Differential Geometry +1607.01898 Experiment +1607.01900 Strongly Correlated Electrons +1607.01905 +1607.01906 +1607.01907 Experiment +1607.01908 Information Theory +1607.01911 +1607.01915 Populations and Evolution +1607.01922 Theory +1607.01923 Analysis of PDEs +1607.01927 Soft Condensed Matter +1607.01930 Quantum Gases +1607.01932 Phenomenology +1607.01938 Atomic and Molecular Clusters +1607.01939 K-Theory and Homology +1607.01940 +1607.01941 Physics and Society +1607.01942 Networking and Internet Architecture +1607.01947 Commutative Algebra +1607.01950 Differential Geometry +1607.01951 Group Theory +1607.01952 Social and Information Networks +1607.01957 Rings and Algebras +1607.01958 Computation and Language +1607.01959 Neurons and Cognition +1607.01960 Materials Science +1607.01961 +1607.01967 Symbolic Computation +1607.01971 Computer Vision and Pattern Recognition +1607.01972 Astrophysics of Galaxies +1607.01976 High Energy Astrophysical Phenomena +1607.01977 Computer Vision and Pattern Recognition +1607.01978 Number Theory +1607.01983 Emerging Technologies +1607.01986 Analysis of PDEs +1607.01987 Exactly Solvable and Integrable Systems +1607.01990 Computers and Society +1607.01991 Analysis of PDEs +1607.01992 Mesoscale and Nanoscale Physics +1607.01995 Information Theory +1607.01996 Information Theory +1607.01999 Economics +1607.02001 Logic in Computer Science +1607.02002 Phenomenology +1607.02003 Computer Vision and Pattern Recognition +1607.02006 Complex Variables +1607.02007 Fluid Dynamics +1607.02010 Dynamical Systems +1607.02013 Optics +1607.02016 Symbolic Computation +1607.02017 Methodology +1607.02018 Artificial Intelligence +1607.02019 Number Theory +1607.02020 Social and Information Networks +1607.02025 Differential Geometry +1607.02027 Phenomenology +1607.02028 Neural and Evolutionary Computing +1607.02029 Accelerator Physics +1607.02031 Representation Theory +1607.02032 K-Theory and Homology +1607.02033 Experiment +1607.02035 Earth and Planetary Astrophysics +1607.02038 Statistical Mechanics +1607.02039 Combinatorics +1607.02041 Classical Analysis and ODEs +1607.02044 Commutative Algebra +1607.02045 Networking and Internet Architecture +1607.02049 Accelerator Physics +1607.02052 Computational Geometry +1607.02057 Analysis of PDEs +1607.02060 Social and Information Networks +1607.02062 Computers and Society +1607.02064 Category Theory +1607.02065 Accelerator Physics +1607.02066 Probability +1607.02067 Pricing of Securities +1607.02068 Quantum Algebra +1607.02070 Geometric Topology +1607.02071 Computer Science and Game Theory +1607.02072 Mesoscale and Nanoscale Physics +1607.02078 Learning +1607.02079 Group Theory +1607.02080 Materials Science +1607.02081 Number Theory +1607.02085 Machine Learning +1607.02089 Experiment +1607.02090 Materials Science +1607.02091 Earth and Planetary Astrophysics +1607.02092 Probability +1607.02093 Statistical Finance +1607.02096 Social and Information Networks +1607.02098 Complex Variables +1607.02100 Complex Variables +1607.02101 Complex Variables +1607.02103 Theory +1607.02105 Complex Variables +1607.02106 Geometric Topology +1607.02108 Solar and Stellar Astrophysics +1607.02109 Computation and Language +1607.02110 Biomolecules +1607.02114 Probability +1607.02116 Soft Condensed Matter +1607.02117 Representation Theory +1607.02121 Materials Science +1607.02122 Number Theory +1607.02124 Soft Condensed Matter +1607.02125 Materials Science +1607.02127 Instrumentation and Detectors +1607.02128 Materials Science +1607.02130 Optimization and Control +1607.02131 Combinatorics +1607.02133 Distributed, Parallel, and Cluster Computing +1607.02134 Probability +1607.02135 Commutative Algebra +hep-th/0205266 Theory +math/0510140 Complex Variables +math/0606756 Metric Geometry +nlin/0208048 Chaotic Dynamics +0710.2975 Theory +0806.4878 Analysis of PDEs +0904.2648 Optics +1006.5548 Plasma Physics +1010.4839 Earth and Planetary Astrophysics +1101.5452 Atomic Physics +1104.2372 Algebraic Topology +1105.2186 +1202.5067 Mesoscale and Nanoscale Physics +1204.3038 Analysis of PDEs +1204.5349 Optics +1207.3627 +1208.0656 Solar and Stellar Astrophysics +1302.1755 +1305.3418 Populations and Evolution +1307.5374 Solar and Stellar Astrophysics +1310.7220 +1311.1909 Geometric Topology +1312.2124 +1402.3334 +1403.0026 Group Theory +1404.0948 Data Structures and Algorithms +1404.6459 Materials Science +1405.0497 Metric Geometry +1405.3698 Theory +1405.4998 Representation Theory +1405.5705 Chaotic Dynamics +1405.5754 Discrete Mathematics +1405.7453 Differential Geometry +1407.1119 Numerical Analysis +1407.8534 +1409.0298 Probability +1409.6537 Combinatorics +1410.2097 Theory +1410.3660 Cosmology and Nongalactic Astrophysics +1410.3715 Probability +1410.6182 +1411.2675 Optimization and Control +1411.4344 Materials Science +1411.6340 Computer Vision and Pattern Recognition +1411.6408 Data Structures and Algorithms +1411.7894 Spectral Theory +1412.0913 Numerical Analysis +1412.2475 Algebraic Geometry +1412.5302 Data Structures and Algorithms +1412.7332 Statistics Theory +1501.04010 Neural and Evolutionary Computing +1501.06031 Applications +1502.00412 Statistics Theory +1502.01413 Statistics Theory +1502.04365 Logic +1502.05209 Logic in Computer Science +1502.05704 Phenomenology +1502.08008 Logic in Computer Science +1503.00630 Complex Variables +1503.01207 Optimization and Control +1503.06325 General Physics +1503.07463 Data Structures and Algorithms +1503.08144 Strongly Correlated Electrons +1504.00914 Differential Geometry +1504.03046 Theory +1504.03530 Probability +1504.03556 Combinatorics +1504.07889 Computer Vision and Pattern Recognition +1504.08089 Combinatorics +1504.08194 Differential Geometry +1505.01192 Quantum Algebra +1505.01962 Data Structures and Algorithms +1505.02572 Materials Science +1505.04035 +1505.05838 Phenomenology +1506.00225 Instrumentation and Methods for Astrophysics +1506.00937 Risk Management +1506.02406 Geometric Topology +1506.03730 Geometric Topology +1506.07579 +1506.08299 +1507.00670 Probability +1507.01428 Data Structures and Algorithms +1507.03153 +1507.03746 Logic +1507.05880 Learning +1508.00763 Quantum Gases +1508.02013 Logic +1508.02609 Symplectic Geometry +1508.02682 Mesoscale and Nanoscale Physics +1508.04308 Experiment +1508.04923 Solar and Stellar Astrophysics +1508.07115 Phenomenology +1509.00246 Lattice +1509.00939 Optics +1509.01803 Quantum Gases +1509.04113 +1509.04346 General Topology +1509.04921 Metric Geometry +1510.02876 +1510.03989 Databases +1510.07808 Strongly Correlated Electrons +1510.07979 +1510.08061 Algebraic Geometry +1511.00383 +1511.00646 +1511.01305 Analysis of PDEs +1511.06487 Mathematical Software +1511.06744 Computer Vision and Pattern Recognition +1511.07284 Mesoscale and Nanoscale Physics +1511.08468 Algebraic Geometry +1511.09096 Statistical Mechanics +1511.09231 Computer Vision and Pattern Recognition +1512.00605 +1512.00853 Astrophysics of Galaxies +1512.01022 Computation +1512.01631 Methodology +1512.01770 +1512.01923 Lattice +1512.02794 Computational Geometry +1512.03107 Optimization and Control +1512.03456 Strongly Correlated Electrons +1512.03548 +1512.03845 +1512.04631 +1512.05065 +1512.06326 +1512.06384 Algebraic Geometry +1512.07840 Numerical Analysis +1512.08855 Theory +1601.00179 Number Theory +1601.00326 Analysis of PDEs +1601.01015 Geometric Topology +1601.01105 +1601.02310 Solar and Stellar Astrophysics +1601.02643 Superconductivity +1601.03132 History and Overview +1601.03552 Superconductivity +1601.04276 Information Theory +1601.04980 Databases +1601.05450 Number Theory +1601.06017 Geometric Topology +1601.06890 Combinatorics +1601.07899 Mesoscale and Nanoscale Physics +1602.01012 Cosmology and Nongalactic Astrophysics +1602.02012 High Energy Astrophysical Phenomena +1602.02354 Soft Condensed Matter +1602.02501 Combinatorics +1602.02658 Learning +1602.02687 +1602.03481 Learning +1602.04095 Distributed, Parallel, and Cluster Computing +1602.04530 Logic in Computer Science +1602.07716 +1602.08151 Learning +1602.08265 Phenomenology +1602.08853 Computational Physics +1602.08863 Programming Languages +1602.09004 Number Theory +1603.00321 +1603.00447 Theory +1603.01242 Statistical Mechanics +1603.01497 +1603.01852 Mesoscale and Nanoscale Physics +1603.02111 Optics +1603.03384 +1603.04414 Materials Science +1603.04622 Phenomenology +1603.04642 Phenomenology +1603.04668 Theory +1603.04808 Algebraic Geometry +1603.05014 Quantum Algebra +1603.05344 Theory +1603.06374 Populations and Evolution +1603.06514 Classical Physics +1603.06631 Theory +1603.06963 Quantum Gases +1603.07129 Solar and Stellar Astrophysics +1603.08358 Computer Vision and Pattern Recognition +1603.09613 Combinatorics +1603.09743 Commutative Algebra +1604.00393 Phenomenology +1604.00867 Chaotic Dynamics +1604.01559 Mesoscale and Nanoscale Physics +1604.01729 Computation and Language +1604.02010 Group Theory +1604.02190 Representation Theory +1604.04002 Statistics Theory +1604.04253 Number Theory +1604.04760 Geometric Topology +1604.04971 +1604.05127 Probability +1604.06028 Probability +1604.06445 Mesoscale and Nanoscale Physics +1604.06460 +1604.07205 Plasma Physics +1604.08003 Materials Science +1605.00464 Solar and Stellar Astrophysics +1605.00827 Soft Condensed Matter +1605.00830 Mesoscale and Nanoscale Physics +1605.01222 Soft Condensed Matter +1605.01913 Algebraic Geometry +1605.02146 High Energy Astrophysical Phenomena +1605.03098 Theory +1605.03406 Phenomenology +1605.04101 Materials Science +1605.04112 Instrumentation and Methods for Astrophysics +1605.04231 Optics +1605.04709 Cosmology and Nongalactic Astrophysics +1605.05074 Combinatorics +1605.05569 Materials Science +1605.05914 High Energy Astrophysical Phenomena +1605.05949 +1605.06324 Solar and Stellar Astrophysics +1605.06551 Materials Science +1605.06838 Machine Learning +1605.07066 Machine Learning +1605.07262 Learning +1605.07377 +1605.07462 Solar and Stellar Astrophysics +1605.07569 +1605.07931 Mesoscale and Nanoscale Physics +1605.08582 Strongly Correlated Electrons +1605.08757 +1605.09047 Experiment +1605.09209 Soft Condensed Matter +1605.09341 Phenomenology +1605.09653 Computer Vision and Pattern Recognition +1606.00066 +1606.00074 +1606.00167 +1606.00281 Statistical Mechanics +1606.00333 Materials Science +1606.00353 Rings and Algebras +1606.01369 Theory +1606.01553 Geometric Topology +1606.01667 Strongly Correlated Electrons +1606.01735 Machine Learning +1606.01829 Theory +1606.01913 Quantum Gases +1606.02302 +1606.04183 Plasma Physics +1606.06202 Analysis of PDEs +1606.06321 Probability +1606.06538 Phenomenology +1606.06859 Experiment +1606.07064 Mesoscale and Nanoscale Physics +1606.07089 Strongly Correlated Electrons +1606.07682 Combinatorics +1606.08391 Experiment +1606.08408 Mesoscale and Nanoscale Physics +1606.08835 Physics and Society +1606.09007 +1606.09125 Mesoscale and Nanoscale Physics +1606.09128 Cosmology and Nongalactic Astrophysics +1606.09134 Theory +1606.09276 Superconductivity +1606.09564 Systems and Control +1607.00011 Phenomenology +1607.00055 Superconductivity +1607.00212 Cosmology and Nongalactic Astrophysics +1607.00701 Phenomenology +1607.01188 Astrophysics of Galaxies +1607.01372 +1607.01662 Strongly Correlated Electrons +1607.02152 Phenomenology +1607.02155 Mesoscale and Nanoscale Physics +1607.02850 Mesoscale and Nanoscale Physics +1607.02932 Phenomenology +1607.03542 Computation and Language +1607.03681 Sound +1607.04059 Theory +1607.04969 +1607.05089 Astrophysics of Galaxies +1607.05188 Differential Geometry +1607.05412 Databases +1607.05525 Phenomenology +1607.05738 Materials Science +1607.05925 Solar and Stellar Astrophysics +1607.06101 Phenomenology +1607.06210 Fluid Dynamics +1607.06549 Superconductivity +1607.06613 Quantum Gases +1607.06634 Solar and Stellar Astrophysics +1607.08165 Solar and Stellar Astrophysics +1607.08617 Disordered Systems and Neural Networks +1607.08744 Quantum Gases +1608.00068 Theory +1608.00115 Materials Science +1608.00298 Optics +1608.00302 Artificial Intelligence +1608.00513 Solar and Stellar Astrophysics +1608.00584 Materials Science +1608.00720 Materials Science +1608.01178 Mesoscale and Nanoscale Physics +1608.01305 Statistical Mechanics +1608.01489 Solar and Stellar Astrophysics +1608.01574 Statistical Mechanics +1608.01748 Strongly Correlated Electrons +1608.01857 Experiment +1608.01988 Solar and Stellar Astrophysics +1608.02208 Fluid Dynamics +1608.02294 +1608.02580 High Energy Astrophysical Phenomena +1608.04099 +1608.04933 Phenomenology +1608.05218 Phenomenology +1608.05725 Group Theory +1608.05952 Superconductivity +1608.06354 Metric Geometry +1608.06394 Phenomenology +1608.06717 +1608.06931 Combinatorics +1608.07240 Number Theory +1608.07900 Phenomenology +1608.07970 Mesoscale and Nanoscale Physics +1608.08060 Quantum Gases +1608.08164 Superconductivity +1608.08460 +1608.08470 Materials Science +1608.08965 Statistical Mechanics +1609.00196 Solar and Stellar Astrophysics +1609.00224 Astrophysics of Galaxies +1609.00275 Earth and Planetary Astrophysics +1609.00349 Cosmology and Nongalactic Astrophysics +1609.00351 Mesoscale and Nanoscale Physics +1609.00650 Astrophysics of Galaxies +1609.00751 +1609.00924 Mesoscale and Nanoscale Physics +1609.01656 Statistical Mechanics +1609.01824 +1609.02485 Astrophysics of Galaxies +1609.02662 Mesoscale and Nanoscale Physics +1609.02759 Earth and Planetary Astrophysics +1609.02888 Computational Complexity +1609.03090 +1609.03208 Strongly Correlated Electrons +1609.03339 Mesoscale and Nanoscale Physics +1609.03379 Astrophysics of Galaxies +1609.03424 Instrumentation and Methods for Astrophysics +1609.03533 Theory +1609.03594 Phenomenology +1609.03827 Mesoscale and Nanoscale Physics +1609.03983 Strongly Correlated Electrons +1609.04269 Solar and Stellar Astrophysics +1609.04303 Astrophysics of Galaxies +1609.04340 Cryptography and Security +1609.04396 +1609.04508 Learning +1609.04800 Quantum Gases +1609.04950 Mesoscale and Nanoscale Physics +1609.05502 Computational Engineering, Finance, and Science +1609.05911 Astrophysics of Galaxies +1609.05924 Mesoscale and Nanoscale Physics +1609.06019 Databases +1609.06242 Astrophysics of Galaxies +1609.06295 Computational Geometry +1609.06487 High Energy Astrophysical Phenomena +1609.06539 Astrophysics of Galaxies +1609.06682 Algebraic Geometry +1609.06766 +1609.06879 Astrophysics of Galaxies +1609.07062 Solar and Stellar Astrophysics +1609.07255 Instrumentation and Methods for Astrophysics +1609.07406 +1609.07453 +1609.07729 Mesoscale and Nanoscale Physics +1609.07944 Solar and Stellar Astrophysics +1609.08038 Phenomenology +1609.08806 Solar and Stellar Astrophysics +1609.08825 Solar and Stellar Astrophysics +1609.08945 Solar and Stellar Astrophysics +1609.09123 Theory +1609.09159 Phenomenology +1609.09556 Mesoscale and Nanoscale Physics +1609.09647 Solar and Stellar Astrophysics +1610.00162 Mesoscale and Nanoscale Physics +1610.00486 Algebraic Topology +1610.00610 Astrophysics of Galaxies +1610.00717 High Energy Astrophysical Phenomena +1610.00803 Mesoscale and Nanoscale Physics +1610.00884 Group Theory +1610.01448 Classical Analysis and ODEs +1610.01823 Superconductivity +1610.02078 Theory +1610.02334 Classical Analysis and ODEs +1610.02419 +1610.02790 Earth and Planetary Astrophysics +1610.03530 High Energy Astrophysical Phenomena +1610.03899 Machine Learning +1610.04007 Solar and Stellar Astrophysics +1610.04417 Solar and Stellar Astrophysics +1610.04934 Fluid Dynamics +1610.05106 Classical Analysis and ODEs +1610.05252 Algebraic Geometry +1610.05483 Number Theory +1610.08034 Theory +1610.08303 Solar and Stellar Astrophysics +1610.08454 Group Theory +1610.08791 +1610.08958 Mesoscale and Nanoscale Physics +1610.09018 Statistics Theory +1610.09521 Optics +1610.09534 Computer Vision and Pattern Recognition +1611.00057 Number Theory +1611.00245 Algebraic Geometry +1611.00541 High Energy Astrophysical Phenomena +1611.00964 Theory +1611.01098 Disordered Systems and Neural Networks +1611.01138 Materials Science +1611.01216 Group Theory +1611.01443 Other Condensed Matter +1611.01577 Materials Science +1611.01785 +1611.02036 Instrumentation and Methods for Astrophysics +1611.03683 High Energy Astrophysical Phenomena +1611.04121 +1611.04722 Mesoscale and Nanoscale Physics +1611.04751 Chaotic Dynamics +1611.04803 Solar and Stellar Astrophysics +1611.04963 Cosmology and Nongalactic Astrophysics +1611.05839 Information Theory +1611.06032 Group Theory +1611.06234 Earth and Planetary Astrophysics +1611.06244 +1611.06262 Materials Science +1611.06551 Cosmology and Nongalactic Astrophysics +1611.06769 Atomic and Molecular Clusters +1611.06805 Lattice +1611.06838 General Mathematics +1611.07271 Disordered Systems and Neural Networks +1611.07285 Computer Vision and Pattern Recognition +1611.07315 Soft Condensed Matter +1611.07316 Analysis of PDEs +1611.07498 Theory +1611.07563 Analysis of PDEs +1611.07727 Computer Vision and Pattern Recognition +1611.07744 Pattern Formation and Solitons +1611.07956 Phenomenology +1611.07958 +1611.08145 Methodology +1611.08156 Chemical Physics +1611.08229 Learning +1611.08570 +1611.08687 Data Structures and Algorithms +1611.08757 Discrete Mathematics +1611.08781 Optimization and Control +1611.08793 Materials Science +1611.08891 Optimization and Control +1611.08910 Strongly Correlated Electrons +1611.08987 Computation and Language +1611.08991 Computer Vision and Pattern Recognition +1611.09075 Cosmology and Nongalactic Astrophysics +1611.09118 High Energy Astrophysical Phenomena +1611.09166 Dynamical Systems +1611.09199 Mesoscale and Nanoscale Physics +1611.09248 +1611.09253 Experiment +1611.09268 Computation and Language +1611.09323 +1611.09349 Fluid Dynamics +1611.09350 Group Theory +1611.09352 Atomic Physics +1611.09354 Astrophysics of Galaxies +1611.09356 Phenomenology +1611.09363 Theory +1611.09364 Strongly Correlated Electrons +1611.09368 Theory +1611.09372 Astrophysics of Galaxies +1611.09373 Earth and Planetary Astrophysics +1611.09377 Physics Education +1611.09378 Statistical Mechanics +1611.09379 Numerical Analysis +1611.09382 Geometric Topology +1611.09384 Learning +1611.09387 Social and Information Networks +1611.09388 Cosmology and Nongalactic Astrophysics +1611.09389 Earth and Planetary Astrophysics +1611.09390 Functional Analysis +1611.09391 Machine Learning +1611.09392 Computer Vision and Pattern Recognition +1611.09393 Mesoscale and Nanoscale Physics +1611.09394 Computer Vision and Pattern Recognition +1611.09395 Chemical Physics +1611.09396 Theory +1611.09398 Algebraic Geometry +1611.09399 Solar and Stellar Astrophysics +1611.09400 Information Theory +1611.09401 Astrophysics of Galaxies +1611.09402 Analysis of PDEs +1611.09403 High Energy Astrophysical Phenomena +1611.09405 Computation and Language +1611.09410 Quantitative Methods +1611.09412 Differential Geometry +1611.09413 Phenomenology +1611.09414 Methodology +1611.09415 Geometric Topology +1611.09417 Analysis of PDEs +1611.09418 Cryptography and Security +1611.09421 Methodology +1611.09422 Materials Science +1611.09424 Robotics +1611.09425 Number Theory +1611.09426 Cosmology and Nongalactic Astrophysics +1611.09427 Human-Computer Interaction +1611.09429 Number Theory +1611.09430 Neural and Evolutionary Computing +1611.09431 Robotics +1611.09432 Numerical Analysis +1611.09433 Robotics +1611.09434 Artificial Intelligence +1611.09435 Applications +1611.09436 Robotics +1611.09437 Numerical Analysis +1611.09438 Solar and Stellar Astrophysics +1611.09439 Theory +1611.09440 Instrumentation and Methods for Astrophysics +1611.09441 Computation and Language +1611.09442 Theory +1611.09443 Metric Geometry +1611.09444 Machine Learning +1611.09446 Hardware Architecture +1611.09447 High Energy Astrophysical Phenomena +1611.09451 +1611.09457 Combinatorics +1611.09460 Accelerator Physics +1611.09461 Learning +1611.09462 Materials Science +1611.09463 Mesoscale and Nanoscale Physics +1611.09464 Computer Vision and Pattern Recognition +1611.09466 Combinatorics +1611.09468 Materials Science +1611.09469 Combinatorics +1611.09470 Computers and Society +1611.09471 Programming Languages +1611.09472 Programming Languages +1611.09473 Programming Languages +1611.09474 Data Structures and Algorithms +1611.09475 Computers and Society +1611.09476 Probability +1611.09480 Robotics +1611.09481 Fluid Dynamics +1611.09482 Sound +1611.09485 Computational Geometry +1611.09486 Probability +1611.09487 Group Theory +1611.09488 Methodology +1611.09489 Fluid Dynamics +1611.09490 Robotics +1611.09491 +1611.09492 Superconductivity +1611.09493 Dynamical Systems +1611.09494 Complex Variables +1611.09496 Information Retrieval +1611.09497 Statistical Mechanics +1611.09498 Computer Vision and Pattern Recognition +1611.09500 Combinatorics +1611.09501 Information Theory +1611.09502 Computer Vision and Pattern Recognition +1611.09503 Cosmology and Nongalactic Astrophysics +1611.09509 Methodology +1611.09510 Learning +1611.09511 Software Engineering +1611.09512 Networking and Internet Architecture +1611.09513 Rings and Algebras +1611.09515 Computer Science and Game Theory +1611.09516 Adaptation and Self-Organizing Systems +1611.09519 Experiment +1611.09521 Mesoscale and Nanoscale Physics +1611.09523 Mesoscale and Nanoscale Physics +1611.09524 Sound +1611.09525 Combinatorics +1611.09526 Sound +1611.09530 Phenomenology +1611.09531 Combinatorics +1611.09533 Earth and Planetary Astrophysics +1611.09534 Computer Vision and Pattern Recognition +1611.09535 Materials Science +1611.09536 Combinatorics +1611.09537 Optics +1611.09538 Numerical Analysis +1611.09539 Analysis of PDEs +1611.09541 Formal Languages and Automata Theory +1611.09545 Combinatorics +1611.09550 Optics +1611.09553 Astrophysics of Galaxies +1611.09554 Differential Geometry +1611.09556 Algebraic Geometry +1611.09558 Optics +1611.09559 Computer Vision and Pattern Recognition +1611.09560 Logic +1611.09562 Optics +1611.09563 +1611.09564 Cryptography and Security +1611.09565 Populations and Evolution +1611.09566 Cryptography and Security +1611.09567 Mathematical Software +1611.09568 Probability +1611.09569 Distributed, Parallel, and Cluster Computing +1611.09570 Distributed, Parallel, and Cluster Computing +1611.09572 Computer Vision and Pattern Recognition +1611.09573 Artificial Intelligence +1611.09574 Strongly Correlated Electrons +1611.09577 Computer Vision and Pattern Recognition +1611.09578 Materials Science +1611.09579 Combinatorics +1611.09580 Computer Vision and Pattern Recognition +1611.09581 Astrophysics of Galaxies +1611.09584 Lattice +1611.09586 +1611.09587 Computer Vision and Pattern Recognition +1611.09589 Logic +1611.09591 Optics +1611.09593 +1611.09595 Optics +1611.09597 Analysis of PDEs +1611.09598 +1611.09601 Solar and Stellar Astrophysics +1611.09606 Programming Languages +1611.09607 Experiment +1611.09609 Optics +1611.09610 +1611.09611 Superconductivity +1611.09612 +1611.09613 Computer Science and Game Theory +1611.09615 Fluid Dynamics +1611.09616 Combinatorics +1611.09617 Quantum Gases +1611.09618 Combinatorics +1611.09621 Machine Learning +1611.09623 Systems and Control +1611.09624 Populations and Evolution +1611.09625 Instrumentation and Methods for Astrophysics +1611.09626 Programming Languages +1611.09627 Optics +1611.09631 Mathematical Finance +1611.09632 +1611.09633 Logic in Computer Science +1611.09635 Physics and Society +1611.09637 Combinatorics +1611.09639 Combinatorics +1611.09640 +1611.09641 Group Theory +1611.09643 Optimization and Control +1611.09644 Soft Condensed Matter +1611.09645 Differential Geometry +1611.09646 Numerical Analysis +1611.09648 Biomolecules +1611.09649 Optics +1611.09650 Classical Physics +1611.09651 Optics +1611.09654 +1611.09656 Representation Theory +1611.09657 Experiment +1611.09660 +1611.09661 Experiment +1611.09662 High Energy Astrophysical Phenomena +1611.09664 Data Structures and Algorithms +1611.09666 Discrete Mathematics +1611.09668 Algebraic Geometry +1611.09671 Emerging Technologies +1611.09673 Phenomenology +1611.09674 Analysis of PDEs +1611.09679 Number Theory +1611.09682 Cosmology and Nongalactic Astrophysics +1611.09683 Combinatorics +1611.09686 Combinatorics +1611.09689 Lattice +1611.09691 Databases +1611.09692 Functional Analysis +1611.09693 Optics +1611.09695 Strongly Correlated Electrons +1611.09697 Optimization and Control +1611.09698 Functional Analysis +1611.09701 Systems and Control +1611.09702 Systems and Control +1611.09703 Computation and Language +1611.09704 Instrumentation and Methods for Astrophysics +1611.09705 Instrumentation and Detectors +1611.09706 Machine Learning +1611.09707 Optimization and Control +1611.09708 Instrumentation and Detectors +1611.09711 Lattice +1611.09712 Instrumentation and Detectors +1611.09715 Instrumentation and Detectors +1611.09716 Soft Condensed Matter +1611.09717 Strongly Correlated Electrons +1611.09719 Probability +1611.09720 +1611.09722 Mesoscale and Nanoscale Physics +1611.09723 Probability +1611.09724 Mesoscale and Nanoscale Physics +1611.09725 +1611.09726 Computer Vision and Pattern Recognition +1611.09727 Methodology +1611.09728 Combinatorics +1611.09729 +1611.09731 Mesoscale and Nanoscale Physics +1611.09732 Disordered Systems and Neural Networks +1611.09733 Sound +1611.09736 Instrumentation and Methods for Astrophysics +1611.09738 Information Theory +1611.09739 Instrumentation and Detectors +1611.09743 +1611.09744 Statistics Theory +1611.09745 Optimization and Control +1611.09746 Fluid Dynamics +1611.09747 Differential Geometry +1611.09750 Statistical Mechanics +1611.09751 Physics and Society +1611.09753 Cosmology and Nongalactic Astrophysics +1611.09754 Data Structures and Algorithms +1611.09755 Systems and Control +1611.09756 Instrumentation and Methods for Astrophysics +1611.09757 Number Theory +1611.09759 Metric Geometry +1611.09762 Classical Analysis and ODEs +1611.09768 Lattice +1611.09769 Computer Vision and Pattern Recognition +1611.09771 Soft Condensed Matter +1611.09772 +1611.09773 Analysis of PDEs +1611.09774 Distributed, Parallel, and Cluster Computing +1611.09775 Analysis of PDEs +1611.09777 Strongly Correlated Electrons +1611.09781 +1611.09784 Numerical Analysis +1611.09786 Materials Science +1611.09790 Methodology +1611.09791 Medical Physics +1611.09792 Optics +1611.09793 Optimization and Control +1611.09794 Combinatorics +1611.09795 Systems and Control +1611.09798 +1611.09799 Computation and Language +1611.09801 Solar and Stellar Astrophysics +1611.09805 Optimization and Control +1611.09811 Computer Vision and Pattern Recognition +1611.09814 Optimization and Control +1611.09815 Quantum Algebra +1611.09817 Phenomenology +1611.09818 Algebraic Geometry +1611.09819 Neurons and Cognition +1611.09820 Biological Physics +1611.09821 Probability +1611.09822 High Energy Astrophysical Phenomena +1611.09824 Other Quantitative Biology +1611.09827 Machine Learning +1611.09828 Representation Theory +1611.09829 Medical Physics +1611.09831 Fluid Dynamics +1611.09832 Instrumentation and Methods for Astrophysics +1611.09834 Theory +1611.09835 Optimization and Control +1611.09836 +1611.09837 +1611.09838 Phenomenology +1611.09840 Dynamical Systems +1611.09842 Computer Vision and Pattern Recognition +1611.09843 Quantum Algebra +1611.09844 Chaotic Dynamics +1611.09845 Phenomenology +1611.09847 Strongly Correlated Electrons +1611.09848 Earth and Planetary Astrophysics +cond-mat/9811074 Strongly Correlated Electrons +0711.0685 +0806.0602 +0807.0794 +0808.1788 Differential Geometry +0908.1341 General Physics +0911.1142 +1007.4272 +1009.3133 Cosmology and Nongalactic Astrophysics +1010.2817 Experiment +1011.4865 Cosmology and Nongalactic Astrophysics +1011.6591 Cosmology and Nongalactic Astrophysics +1012.0642 Cosmology and Nongalactic Astrophysics +1105.5529 Phenomenology +1107.1469 Differential Geometry +1107.4819 Rings and Algebras +1108.4406 Solar and Stellar Astrophysics +1109.6736 Astrophysics of Galaxies +1112.1305 +1206.6192 Cosmology and Nongalactic Astrophysics +1206.6286 Neurons and Cognition +1207.0015 Cosmology and Nongalactic Astrophysics +1207.0734 Cosmology and Nongalactic Astrophysics +1207.3443 Combinatorics +1211.2662 Data Structures and Algorithms +1211.6784 Geometric Topology +1301.0192 Theory +1302.6500 Discrete Mathematics +1303.0256 Neurons and Cognition +1303.2513 Portfolio Management +1303.6710 Group Theory +1304.3599 Algebraic Topology +1304.4955 Classical Analysis and ODEs +1304.7195 +1305.1332 Differential Geometry +1307.2037 Numerical Analysis +1307.7747 Combinatorics +1309.4817 +1309.5881 Optics +1310.1848 +1310.4519 +1310.6592 Physics and Society +1311.4478 Dynamical Systems +1311.5282 Instrumentation and Methods for Astrophysics +1311.7225 Information Theory +1401.3707 +1402.0120 Number Theory +1402.4986 Distributed, Parallel, and Cluster Computing +1402.6172 +1402.6984 Algebraic Topology +1403.2669 Group Theory +1403.6084 Functional Analysis +1403.6558 Probability +1403.6780 Strongly Correlated Electrons +1405.0585 Economics +1405.2331 Dynamical Systems +1405.5071 Rings and Algebras +1405.6918 +1405.6925 Algebraic Geometry +1405.7863 +1406.3667 Solar and Stellar Astrophysics +1406.5094 +1406.6334 +1406.6362 Cosmology and Nongalactic Astrophysics +1407.2901 Algebraic Geometry +1407.5520 Numerical Analysis +1407.6838 Algebraic Geometry +1407.7320 Mesoscale and Nanoscale Physics +1409.1120 Solar and Stellar Astrophysics +1409.2241 Logic +1409.3699 Numerical Analysis +1409.3964 Computer Vision and Pattern Recognition +1409.6439 Chemical Physics +1410.0303 Geometric Topology +1410.2572 +1410.6509 +1410.7543 +1410.8574 Statistical Mechanics +1410.8598 Optics +1411.1795 Theory +1411.3354 Strongly Correlated Electrons +1411.5432 Mesoscale and Nanoscale Physics +1412.1282 Statistical Mechanics +1412.2832 +1412.3183 Phenomenology +1412.4340 Geometric Topology +1501.03313 Theory +1501.05244 Algebraic Geometry +1501.05563 Probability +1502.01400 Computation +1502.01923 Category Theory +1502.04630 +1502.04984 Astrophysics of Galaxies +1502.05670 Combinatorics +1502.05754 +1502.07304 Theory +1502.07876 Theory +1503.00428 Mesoscale and Nanoscale Physics +1503.00742 Algebraic Geometry +1503.00752 Geometric Topology +1503.00896 Theory +1503.01089 High Energy Astrophysical Phenomena +1503.01456 +1503.01627 +1503.02157 +1503.04083 Plasma Physics +1503.04494 Strongly Correlated Electrons +1503.05466 Symplectic Geometry +1503.07315 +1503.08603 Differential Geometry +1503.08833 Cosmology and Nongalactic Astrophysics +1504.01397 Cosmology and Nongalactic Astrophysics +1504.01527 +1504.01860 Number Theory +1504.01969 Mesoscale and Nanoscale Physics +1504.02682 +1504.03035 High Energy Astrophysical Phenomena +1504.03773 +1504.04088 Cosmology and Nongalactic Astrophysics +1504.04352 Superconductivity +1504.04419 Information Theory +1504.05048 High Energy Astrophysical Phenomena +1504.07847 Quantum Gases +1504.08026 Operator Algebras +1505.01751 Probability +1505.01892 Solar and Stellar Astrophysics +1505.03217 Phenomenology +1505.03386 Theory +1505.03677 Number Theory +1505.03865 Cosmology and Nongalactic Astrophysics +1505.04896 Earth and Planetary Astrophysics +1505.05879 Solar and Stellar Astrophysics +1505.07848 Cosmology and Nongalactic Astrophysics +1506.00881 Analysis of PDEs +1506.01230 Analysis of PDEs +1506.01473 +1506.01640 Quantum Gases +1506.02049 Earth and Planetary Astrophysics +1506.02864 Theory +1506.02890 Information Theory +1506.02917 Optics +1506.03470 Combinatorics +1506.03644 Phenomenology +1506.03811 Phenomenology +1506.03812 Cosmology and Nongalactic Astrophysics +1506.04193 Solar and Stellar Astrophysics +1506.05105 Strongly Correlated Electrons +1506.05132 Solar and Stellar Astrophysics +1506.05207 +1506.06135 Cosmology and Nongalactic Astrophysics +1506.06421 Functional Analysis +1506.06685 Solar and Stellar Astrophysics +1506.06889 +1506.07265 +1506.07661 Phenomenology +1506.08355 +1507.00005 Astrophysics of Galaxies +1507.00322 Mesoscale and Nanoscale Physics +1507.01047 Quantum Gases +1507.01050 Materials Science +1507.01149 +1507.01828 +1507.01944 Earth and Planetary Astrophysics +1507.02247 Optics +1507.02364 Physics Education +1507.02572 Strongly Correlated Electrons +1507.02619 Representation Theory +1507.03052 Quantum Gases +1507.03643 Astrophysics of Galaxies +1507.04078 Cosmology and Nongalactic Astrophysics +1507.04096 Solar and Stellar Astrophysics +1507.04931 Phenomenology +1507.05177 Earth and Planetary Astrophysics +1507.05293 Solar and Stellar Astrophysics +1507.06142 Representation Theory +1507.06180 Analysis of PDEs +1507.06460 Solar and Stellar Astrophysics +1507.06697 Solar and Stellar Astrophysics +1507.06931 Soft Condensed Matter +1507.07865 Superconductivity +1507.07876 Operator Algebras +1507.08194 +1507.08288 High Energy Astrophysical Phenomena +1507.08292 Cosmology and Nongalactic Astrophysics +1507.08303 Experiment +1507.08724 Cosmology and Nongalactic Astrophysics +1507.08801 Astrophysics of Galaxies +1507.08977 High Energy Astrophysical Phenomena +1508.00137 Theory +1508.00174 Phenomenology +1508.00422 Phenomenology +1508.00544 Theory +1508.00880 Earth and Planetary Astrophysics +1508.00898 Solar and Stellar Astrophysics +1508.01341 Materials Science +1508.01398 Optics +1508.01427 Mesoscale and Nanoscale Physics +1508.01515 Quantum Gases +1508.01803 Cosmology and Nongalactic Astrophysics +1508.02184 Earth and Planetary Astrophysics +1508.02462 +1508.02642 +1508.02711 Astrophysics of Galaxies +1508.02726 Mesoscale and Nanoscale Physics +1508.02785 +1508.02917 Pattern Formation and Solitons +1508.02923 Theory +1508.03018 Quantum Gases +1508.03031 Phenomenology +1508.03339 Cosmology and Nongalactic Astrophysics +1508.03759 Phenomenology +1508.04046 Theory +1508.04110 +1508.04191 +1508.04460 Theory +1508.04694 Mesoscale and Nanoscale Physics +1508.04700 +1508.04940 Logic in Computer Science +1508.05144 Theory +1508.05820 Chemical Physics +1508.06051 Quantum Gases +1508.06077 Soft Condensed Matter +1508.06368 Superconductivity +1508.06484 Theory +1508.06786 +1508.06914 +1508.06949 +1508.07293 Disordered Systems and Neural Networks +1508.07524 +1508.07719 Cosmology and Nongalactic Astrophysics +1508.07745 High Energy Astrophysical Phenomena +1508.07779 Strongly Correlated Electrons +1508.07780 +1509.00064 Cosmology and Nongalactic Astrophysics +1509.00170 Solar and Stellar Astrophysics +1509.00232 +1509.00324 Soft Condensed Matter +1509.00592 Lattice +1509.00762 Quantum Gases +1509.00787 Space Physics +1509.01163 Cosmology and Nongalactic Astrophysics +1509.01340 Fluid Dynamics +1509.01414 Theory +1509.01689 Materials Science +1509.01983 Plasma Physics +1509.02365 Mesoscale and Nanoscale Physics +1509.02524 Cosmology and Nongalactic Astrophysics +1509.02820 Materials Science +1509.03147 Social and Information Networks +1509.03309 Theory +1509.03442 Mesoscale and Nanoscale Physics +1509.03517 Phenomenology +1509.03566 Other Condensed Matter +1509.03581 Materials Science +1509.03586 Solar and Stellar Astrophysics +1509.03622 Solar and Stellar Astrophysics +1509.04287 Phenomenology +1509.04308 Astrophysics of Galaxies +1509.04342 Cosmology and Nongalactic Astrophysics +1509.04351 Solar and Stellar Astrophysics +1509.04419 Mesoscale and Nanoscale Physics +1509.04421 Phenomenology +1509.04497 +1509.04523 Phenomenology +1509.04798 Phenomenology +1509.04930 Superconductivity +1509.05354 Solar and Stellar Astrophysics +1509.05387 Phenomenology +1509.05694 +1509.05719 Superconductivity +1509.05726 Solar and Stellar Astrophysics +1509.05728 +1509.05843 Phenomenology +1509.06007 Strongly Correlated Electrons +1509.06387 Mesoscale and Nanoscale Physics +1509.06396 High Energy Astrophysical Phenomena +1509.06550 High Energy Astrophysical Phenomena +1509.06608 Mesoscale and Nanoscale Physics +1509.06758 Astrophysics of Galaxies +1509.06806 +1509.07169 +1509.07177 Solar and Stellar Astrophysics +1509.07232 Quantum Gases +1509.07750 Earth and Planetary Astrophysics +1509.07846 Strongly Correlated Electrons +1509.07866 High Energy Astrophysical Phenomena +1509.07906 Phenomenology +1509.08920 Earth and Planetary Astrophysics +1510.00336 Statistical Mechanics +1510.00421 Phenomenology +1510.00739 Solar and Stellar Astrophysics +1510.00741 Solar and Stellar Astrophysics +1510.00807 +1510.00858 Earth and Planetary Astrophysics +1510.01128 Solar and Stellar Astrophysics +1510.01142 Solar and Stellar Astrophysics +1510.01161 Solar and Stellar Astrophysics +1510.01327 Solar and Stellar Astrophysics +1510.01382 Solar and Stellar Astrophysics +1510.01496 Theory +1510.01543 Statistical Mechanics +1510.01701 Phenomenology +1510.01702 Solar and Stellar Astrophysics +1510.01994 Optics +1510.02016 +1510.02090 Earth and Planetary Astrophysics +1510.02410 Optics +1510.02444 Lattice +1510.02785 Solar and Stellar Astrophysics +1510.03065 Mesoscale and Nanoscale Physics +1510.03067 Solar and Stellar Astrophysics +1510.03134 Quantum Gases +1510.03180 History and Overview +1510.03453 Phenomenology +1510.03526 Superconductivity +1510.03618 Solar and Stellar Astrophysics +1510.03832 Earth and Planetary Astrophysics +1510.03873 High Energy Astrophysical Phenomena +1510.04012 Phenomenology +1510.04276 Earth and Planetary Astrophysics +1510.04337 Materials Science +1510.04429 +1510.04560 Functional Analysis +1510.04658 Numerical Analysis +1510.04750 Earth and Planetary Astrophysics +1510.04903 Solar and Stellar Astrophysics +1510.05010 Astrophysics of Galaxies +1510.05330 Quantum Algebra +1510.05487 Superconductivity +1510.05655 +1510.05896 Solar and Stellar Astrophysics +1510.06072 Astrophysics of Galaxies +1510.06144 Optics +1510.06374 Earth and Planetary Astrophysics +1510.06388 Theory +1510.06642 Solar and Stellar Astrophysics +1510.06735 Theory +1510.07266 Materials Science +1510.07535 Materials Science +1510.07536 Astrophysics of Galaxies +1510.07628 Astrophysics of Galaxies +1510.07647 Astrophysics of Galaxies +1510.07846 +1510.07849 Phenomenology +1510.07895 Mesoscale and Nanoscale Physics +1510.08632 Phenomenology +1510.08774 Disordered Systems and Neural Networks +1510.09065 Materials Science +1510.09136 +1511.00231 +1511.00258 High Energy Astrophysical Phenomena +1511.00377 Superconductivity +1511.00445 Astrophysics of Galaxies +1511.00659 Astrophysics of Galaxies +1511.00682 Theory +1511.00698 Earth and Planetary Astrophysics +1511.00845 Solar and Stellar Astrophysics +1511.00867 Discrete Mathematics +1511.00951 Pattern Formation and Solitons +1511.00966 Solar and Stellar Astrophysics +1511.01215 Analysis of PDEs +1511.01840 Theory +1511.02034 Cosmology and Nongalactic Astrophysics +1511.02668 Materials Science +1511.02730 Superconductivity +1511.02890 Astrophysics of Galaxies +1511.02896 Earth and Planetary Astrophysics +1511.02988 Earth and Planetary Astrophysics +1511.03158 +1511.03195 Solar and Stellar Astrophysics +1511.03388 Soft Condensed Matter +1511.03431 Earth and Planetary Astrophysics +1511.03734 Astrophysics of Galaxies +1511.03846 High Energy Astrophysical Phenomena +1511.03903 Earth and Planetary Astrophysics +1511.03912 Statistical Mechanics +1511.03960 +1511.04107 Phenomenology +1511.04266 Solar and Stellar Astrophysics +1511.04296 Phenomenology +1511.04528 Biological Physics +1511.04712 Quantum Gases +1511.04878 Astrophysics of Galaxies +1511.05142 Astrophysics of Galaxies +1511.05317 Biological Physics +1511.05448 Atomic Physics +1511.05909 Statistical Mechanics +1511.06041 Space Physics +1511.06172 Instrumentation and Detectors +1511.06368 High Energy Astrophysical Phenomena +1511.06447 High Energy Astrophysical Phenomena +1511.06900 Solar and Stellar Astrophysics +1511.06970 Solar and Stellar Astrophysics +1511.07010 High Energy Astrophysical Phenomena +1511.07213 Solar and Stellar Astrophysics +1511.07301 Phenomenology +1511.07501 +1511.07502 +1511.07575 Astrophysics of Galaxies +1511.07680 Mesoscale and Nanoscale Physics +1511.07695 +1511.07820 Earth and Planetary Astrophysics +1511.07881 Solar and Stellar Astrophysics +1511.07998 Spectral Theory +1511.08039 Experiment +1511.08085 Mesoscale and Nanoscale Physics +1511.08149 +1511.08175 Mesoscale and Nanoscale Physics +1511.08311 Astrophysics of Galaxies +1511.08402 Solar and Stellar Astrophysics +1512.00318 Solar and Stellar Astrophysics +1512.00325 High Energy Astrophysical Phenomena +1512.00334 Solar and Stellar Astrophysics +1512.00402 +1512.00417 Earth and Planetary Astrophysics +1512.00476 Phenomenology +1512.00479 Astrophysics of Galaxies +1512.00625 Astrophysics of Galaxies +1512.00793 Mesoscale and Nanoscale Physics +1512.00904 Astrophysics of Galaxies +1512.01089 Solar and Stellar Astrophysics +1512.01233 Astrophysics of Galaxies +1512.01240 Solar and Stellar Astrophysics +1512.01597 Solar and Stellar Astrophysics +1512.01679 High Energy Astrophysical Phenomena +1512.01763 Solar and Stellar Astrophysics +1512.01951 Phenomenology +1512.02095 Solar and Stellar Astrophysics +1512.02132 Superconductivity +1512.02199 Solar and Stellar Astrophysics +1512.02276 Solar and Stellar Astrophysics +1512.02431 Mesoscale and Nanoscale Physics +1512.02502 Cosmology and Nongalactic Astrophysics +1512.02646 Mesoscale and Nanoscale Physics +1512.02658 Theory +1512.02741 High Energy Astrophysical Phenomena +1512.02823 Soft Condensed Matter +1512.02884 Cosmology and Nongalactic Astrophysics +1512.03258 Materials Science +1512.03411 Instrumentation and Methods for Astrophysics +1512.03414 High Energy Astrophysical Phenomena +1512.03453 Solar and Stellar Astrophysics +1512.03611 Astrophysics of Galaxies +1512.03650 Analysis of PDEs +1512.03745 Solar and Stellar Astrophysics +1512.03746 Statistical Mechanics +1512.03783 High Energy Astrophysical Phenomena +1512.03815 Astrophysics of Galaxies +1512.03995 Solar and Stellar Astrophysics +1512.04088 Solar and Stellar Astrophysics +1512.04167 High Energy Astrophysical Phenomena +1512.04221 Phenomenology +1512.04524 Instrumentation and Detectors +1512.04625 Astrophysics of Galaxies +1512.04738 Solar and Stellar Astrophysics +1512.04931 Phenomenology +1512.04956 Astrophysics of Galaxies +1512.05092 High Energy Astrophysical Phenomena +1512.05125 Solar and Stellar Astrophysics +1512.05175 Earth and Planetary Astrophysics +1512.05263 Solar and Stellar Astrophysics +1512.05295 Phenomenology +1512.05363 Astrophysics of Galaxies +1512.05430 Computer Vision and Pattern Recognition +1512.05514 High Energy Astrophysical Phenomena +1512.05546 Solar and Stellar Astrophysics +1512.05548 Theory +1512.05553 Solar and Stellar Astrophysics +1512.05816 Solar and Stellar Astrophysics +1512.06031 Solar and Stellar Astrophysics +1512.06224 Astrophysics of Galaxies +1512.06229 History and Philosophy of Physics +1512.06276 Quantum Gases +1512.06421 Solar and Stellar Astrophysics +1512.06691 Analysis of PDEs +1512.06714 Astrophysics of Galaxies +1512.06857 Astrophysics of Galaxies +1512.06968 Earth and Planetary Astrophysics +1512.07090 Earth and Planetary Astrophysics +1512.07169 Solar and Stellar Astrophysics +1512.07697 High Energy Astrophysical Phenomena +1512.07811 Solar and Stellar Astrophysics +1512.08054 +1512.08835 Theory +1512.08900 Astrophysics of Galaxies +1512.09031 +1601.00085 Economics +1601.00226 Complex Variables +1601.00327 Atomic Physics +1601.00412 Solar and Stellar Astrophysics +1601.00503 High Energy Astrophysical Phenomena +1601.00539 Solar and Stellar Astrophysics +1601.00771 High Energy Astrophysical Phenomena +1601.00805 Solar and Stellar Astrophysics +1601.00867 Solar and Stellar Astrophysics +1601.00871 High Energy Astrophysical Phenomena +1601.01005 Solar and Stellar Astrophysics +1601.01209 Earth and Planetary Astrophysics +1601.01225 Instrumentation and Methods for Astrophysics +1601.01282 Astrophysics of Galaxies +1601.01289 Networking and Internet Architecture +1601.01337 Astrophysics of Galaxies +1601.01636 Solar and Stellar Astrophysics +1601.01812 High Energy Astrophysical Phenomena +1601.01855 Solar and Stellar Astrophysics +1601.01908 Solar and Stellar Astrophysics +1601.01941 High Energy Astrophysical Phenomena +1601.02023 Cosmology and Nongalactic Astrophysics +1601.02024 Astrophysics of Galaxies +1601.02290 Quantum Gases +1601.02389 Astrophysics of Galaxies +1601.02620 Astrophysics of Galaxies +1601.02635 High Energy Astrophysical Phenomena +1601.02721 High Energy Astrophysical Phenomena +1601.02796 Astrophysics of Galaxies +1601.03040 Solar and Stellar Astrophysics +1601.03209 Astrophysics of Galaxies +1601.03311 Data Structures and Algorithms +1601.03652 Earth and Planetary Astrophysics +1601.03776 High Energy Astrophysical Phenomena +1601.04035 Theory +1601.04063 +1601.04636 Numerical Analysis +1601.04706 Astrophysics of Galaxies +1601.05250 Classical Analysis and ODEs +1601.05432 Astrophysics of Galaxies +1601.05724 +1601.06120 High Energy Astrophysical Phenomena +1601.06322 Group Theory +1601.06356 Commutative Algebra +1601.06500 High Energy Astrophysical Phenomena +1601.06550 High Energy Astrophysical Phenomena +1601.06596 Solar and Stellar Astrophysics +1601.06715 Solar and Stellar Astrophysics +1601.06718 Probability +1601.06818 Classical Physics +1601.06886 Solar and Stellar Astrophysics +1601.07000 High Energy Astrophysical Phenomena +1601.07008 High Energy Astrophysical Phenomena +1601.07066 Number Theory +1601.07296 Astrophysics of Galaxies +1601.07461 Phenomenology +1601.07540 Solar and Stellar Astrophysics +1601.07550 Astrophysics of Galaxies +1601.07562 Solar and Stellar Astrophysics +1601.07598 Fluid Dynamics +1601.07703 Superconductivity +1601.07785 Solar and Stellar Astrophysics +1601.07988 Combinatorics +1601.08147 Optimization and Control +1601.08148 High Energy Astrophysical Phenomena +1601.08216 High Energy Astrophysical Phenomena +1602.00032 Robotics +1602.00306 +1602.00389 Databases +1602.00446 Information Theory +1602.00515 Artificial Intelligence +1602.00534 Differential Geometry +1602.00636 Spectral Theory +1602.00642 Statistical Mechanics +1602.00681 Neurons and Cognition +1602.00685 +1602.00687 Strongly Correlated Electrons +1602.00695 Phenomenology +1602.00700 Numerical Analysis +1602.00711 Popular Physics +1602.00713 Soft Condensed Matter +1602.00715 Computer Vision and Pattern Recognition +1602.00716 Algebraic Geometry +1602.00717 Classical Analysis and ODEs +1602.00718 Plasma Physics +1602.00719 Methodology +1602.00722 Hardware Architecture +1602.00723 Populations and Evolution +1602.00724 Optimization and Control +1602.00725 General Topology +1602.00728 Spectral Theory +1602.00729 Distributed, Parallel, and Cluster Computing +1602.00730 Analysis of PDEs +1602.00732 Differential Geometry +1602.00734 Information Theory +1602.00739 Sound +1602.00743 Number Theory +1602.00744 Numerical Analysis +1602.00746 Numerical Analysis +1602.00747 Numerical Analysis +1602.00748 Algebraic Topology +1602.00749 Computer Vision and Pattern Recognition +1602.00750 Materials Science +1602.00753 Artificial Intelligence +1602.00755 Optics +1602.00760 Operator Algebras +1602.00761 Information Theory +1602.00762 Functional Analysis +1602.00763 Computer Vision and Pattern Recognition +1602.00766 Information Theory +1602.00768 Representation Theory +1602.00769 Methodology +1602.00772 Fluid Dynamics +1602.00775 Probability +1602.00776 Molecular Networks +1602.00777 Materials Science +1602.00778 Combinatorics +1602.00780 Number Theory +1602.00781 +1602.00786 Programming Languages +1602.00788 Theory +1602.00789 Analysis of PDEs +1602.00791 +1602.00796 Lattice +1602.00798 Social and Information Networks +1602.00800 Probability +1602.00804 Human-Computer Interaction +1602.00807 Quantum Gases +1602.00808 Neurons and Cognition +1602.00810 Symbolic Computation +1602.00811 Algebraic Geometry +1602.00815 Analysis of PDEs +1602.00818 High Energy Astrophysical Phenomena +1602.00819 Analysis of PDEs +1602.00820 Functional Analysis +1602.00822 +1602.00823 Algebraic Topology +1602.00824 Optics +1602.00831 Human-Computer Interaction +1602.00832 +1602.00833 Information Theory +1602.00834 Geometric Topology +1602.00837 Number Theory +1602.00841 Computers and Society +1602.00845 General Topology +1602.00848 Symbolic Computation +1602.00851 +1602.00854 Differential Geometry +1602.00855 Optimization and Control +1602.00856 Statistics Theory +1602.00857 Operator Algebras +1602.00865 Pricing of Securities +1602.00867 Instrumentation and Detectors +1602.00869 Statistics Theory +1602.00871 +1602.00878 Information Theory +1602.00879 Statistics Theory +1602.00886 Statistics Theory +1602.00888 Superconductivity +1602.00889 Astrophysics of Galaxies +1602.00894 Mesoscale and Nanoscale Physics +1602.00895 Cryptography and Security +1602.00896 Soft Condensed Matter +1602.00900 Popular Physics +1602.00903 Superconductivity +1602.00912 Logic in Computer Science +1602.00913 Differential Geometry +1602.00914 Information Theory +1602.00919 Group Theory +1602.00921 Quantum Algebra +1602.00922 Combinatorics +1602.00923 Phenomenology +1602.00924 +1602.00925 Dynamical Systems +1602.00927 Operator Algebras +1602.00928 Information Theory +1602.00932 Robotics +1602.00933 Quantitative Methods +1602.00934 Number Theory +1602.00942 Probability +1602.00943 Phenomenology +1602.00945 Fluid Dynamics +1602.00950 High Energy Astrophysical Phenomena +1602.00952 Quantum Gases +1602.00953 Numerical Analysis +1602.00956 Mesoscale and Nanoscale Physics +1602.00957 Strongly Correlated Electrons +1602.00959 Metric Geometry +1602.00960 Metric Geometry +1602.00961 Optimization and Control +1602.00962 Optics +1602.00963 Distributed, Parallel, and Cluster Computing +1602.00967 Metric Geometry +1602.00969 Combinatorics +1602.00972 Number Theory +1602.00973 Soft Condensed Matter +1602.00978 Materials Science +1602.00980 Algebraic Geometry +1602.00983 Analysis of PDEs +1602.00984 Software Engineering +1602.00986 Optimization and Control +1602.00989 Applications +1602.00990 Soft Condensed Matter +1602.00996 Representation Theory +1602.00997 Computer Vision and Pattern Recognition +1602.00998 Algebraic Topology +1602.00999 Number Theory +1602.01000 Algebraic Geometry +1602.01006 Computer Vision and Pattern Recognition +1602.01007 Computer Science and Game Theory +1602.01009 Probability +1602.01011 Number Theory +1602.01013 Social and Information Networks +1602.01014 Optics +1602.01016 Social and Information Networks +1602.01017 Dynamical Systems +1602.01019 Category Theory +1602.01021 +1602.01024 Learning +1602.01027 Phenomenology +1602.01028 Systems and Control +1602.01029 Classical Analysis and ODEs +1602.01035 Geometric Topology +1602.01036 Number Theory +1602.01038 Information Theory +1602.01040 Databases +1602.01042 Information Theory +1602.01043 +1602.01045 Representation Theory +1602.01046 Differential Geometry +1602.01048 Atomic Physics +1602.01051 Methodology +1602.01054 +1602.01059 Artificial Intelligence +1602.01060 Analysis of PDEs +1602.01061 Information Theory +1602.01069 Disordered Systems and Neural Networks +1602.01074 Optics +1602.01077 Geometric Topology +1602.01079 Materials Science +1602.01080 Numerical Analysis +1602.01083 +1602.01084 Emerging Technologies +astro-ph/0502256 +astro-ph/0601448 +astro-ph/0702118 +cond-mat/0211250 Mesoscale and Nanoscale Physics +cond-mat/0611558 Mesoscale and Nanoscale Physics +cond-mat/0611560 Strongly Correlated Electrons +math/0512539 Geometric Topology +0807.1539 Analysis of PDEs +0811.1784 Analysis of PDEs +0903.4295 +0908.3327 Analysis of PDEs +0908.3332 Analysis of PDEs +0908.3334 Analysis of PDEs +1006.3149 +1008.4964 Theory +1011.4886 Commutative Algebra +1109.2051 Analysis of PDEs +1109.4542 Analysis of PDEs +1205.1383 +1209.3814 Analysis of PDEs +1212.6445 Analysis of PDEs +1212.6447 Analysis of PDEs +1307.5018 +1308.5680 Quantum Gases +1310.5372 +1310.5996 +1310.7240 Classical Analysis and ODEs +1311.1738 Statistics Theory +1311.3268 Discrete Mathematics +1401.2184 Artificial Intelligence +1401.5834 Representation Theory +1401.6399 Information Retrieval +1402.4333 Complex Variables +1403.2847 +1403.7603 Dynamical Systems +1404.1310 Statistics Theory +1404.2905 Number Theory +1405.6423 Geometric Topology +1406.5933 Methodology +1407.3397 Statistics Theory +1407.4910 Probability +1407.5588 +1408.1635 General Physics +1409.4109 Differential Geometry +1409.6647 Quantum Gases +1410.1880 Theory +1410.6900 Combinatorics +1411.3624 Combinatorics +1412.0364 Databases +1412.1195 Complex Variables +1412.1515 General Topology +1412.2720 Probability +1412.7303 Algebraic Geometry +1412.7523 +1501.02957 +1501.06638 Quantum Algebra +1501.07748 Theory +1502.04226 Computational Complexity +1502.07205 +1503.00223 Statistical Mechanics +1503.03013 Information Theory +1503.03465 Data Structures and Algorithms +1503.05251 Solar and Stellar Astrophysics +1503.06686 Number Theory +1503.07128 +1503.08523 +1504.00626 Functional Analysis +1504.02145 Solar and Stellar Astrophysics +1504.06564 Quantum Gases +1504.06586 Discrete Mathematics +1504.07112 Spectral Theory +1504.07702 Optimization and Control +1505.01584 Cosmology and Nongalactic Astrophysics +1505.03653 Networking and Internet Architecture +1505.05950 Fluid Dynamics +1506.00030 +1506.03761 Analysis of PDEs +1506.04426 Solar and Stellar Astrophysics +1506.04600 +1506.07312 Statistical Mechanics +1506.08249 Astrophysics of Galaxies +1507.02684 Theory +1507.04818 Differential Geometry +1507.05021 Statistics Theory +1507.07064 Computer Science and Game Theory +1508.00934 Statistics Theory +1508.02170 Combinatorics +1508.03671 Artificial Intelligence +1508.03763 Databases +1508.03952 Information Theory +1508.04026 Theory +1508.06688 Optics +1508.07763 Theory +1509.00289 +1509.01532 Materials Science +1509.03328 Neurons and Cognition +1509.04294 Phenomenology +1509.04654 Theory +1509.07724 Classical Analysis and ODEs +1510.00380 Quantum Gases +1510.00591 Dynamical Systems +1510.00842 Applications +1510.01106 +1510.01897 Classical Analysis and ODEs +1510.02973 Optimization and Control +1510.05064 Information Theory +1510.06251 Classical Analysis and ODEs +1511.00809 Materials Science +1511.02555 +1511.02853 Computer Vision and Pattern Recognition +1511.03934 Instrumentation and Detectors +1511.04069 Functional Analysis +1511.04271 Logic in Computer Science +1511.05226 Operator Algebras +1512.00527 Instrumentation and Detectors +1512.01609 Distributed, Parallel, and Cluster Computing +1512.02755 Analysis of PDEs +1512.03096 +1512.03713 +1512.03867 Number Theory +1512.04667 Fluid Dynamics +1512.06119 Materials Science +1512.06234 Probability +1512.07638 Learning +1512.09252 General Topology +1512.09310 Phenomenology +1601.01833 +1601.02456 Strongly Correlated Electrons +1601.02565 Analysis of PDEs +1601.02783 Geometric Topology +1601.03521 Discrete Mathematics +1601.05398 Probability +1601.06214 Information Theory +1601.06402 +1602.00692 High Energy Astrophysical Phenomena +1602.00733 Combinatorics +1602.01826 Algebraic Geometry +1602.02647 Theory +1602.03259 Differential Geometry +1602.05520 Computational Physics +1602.06706 Number Theory +1602.06836 Combinatorics +1602.07968 Differential Geometry +1602.08201 Differential Geometry +1602.08938 Physics and Society +1603.00129 Rings and Algebras +1603.00432 Probability +1603.01445 Logic in Computer Science +1603.01507 Information Theory +1603.01892 Superconductivity +1603.02615 Risk Management +1603.04100 Numerical Analysis +1603.04230 +1603.05045 +1603.05719 Optimization and Control +1603.05839 +1603.06077 Computational Geometry +1603.06323 Probability +1603.07351 Distributed, Parallel, and Cluster Computing +1603.07356 +1603.07535 Materials Science +1603.07765 Statistical Mechanics +1603.07810 Computer Vision and Pattern Recognition +1603.08910 Materials Science +1603.09331 Superconductivity +1603.09559 +1604.00165 Mesoscale and Nanoscale Physics +1604.02506 Computation and Language +1604.02795 Commutative Algebra +1604.03076 +1604.03243 Computational Complexity +1604.04385 Analysis of PDEs +1604.04567 Information Theory +1604.04826 Information Theory +1604.05820 Theory +1604.06482 Networking and Internet Architecture +1604.06819 Probability +1604.07069 Dynamical Systems +1604.08616 Optimization and Control +1605.00548 Superconductivity +1605.00591 Quantitative Methods +1605.00995 +1605.01040 Phenomenology +1605.01471 Mesoscale and Nanoscale Physics +1605.01864 Soft Condensed Matter +1605.02390 Physics Education +1605.02475 Numerical Analysis +1605.02735 Astrophysics of Galaxies +1605.02748 Theory +1605.02871 +1605.02874 Fluid Dynamics +1605.03070 Phenomenology +1605.03084 +1605.03114 Mesoscale and Nanoscale Physics +1605.03822 Soft Condensed Matter +1605.03998 Probability +1605.04004 Computer Science and Game Theory +1605.04071 Artificial Intelligence +1605.04076 Numerical Analysis +1605.06168 Experiment +1605.06183 Data Structures and Algorithms +1605.06262 Cosmology and Nongalactic Astrophysics +1605.06649 +1605.07298 +1605.07328 Differential Geometry +1605.07916 Materials Science +1605.09108 Mesoscale and Nanoscale Physics +1606.00025 Computation and Language +1606.00614 Statistics Theory +1606.00910 +1606.01034 Phenomenology +1606.01196 Physics Education +1606.01872 Information Theory +1606.01886 Theory +1606.02091 Mesoscale and Nanoscale Physics +1606.03935 Artificial Intelligence +1606.04312 Complex Variables +1606.04324 Mesoscale and Nanoscale Physics +1606.04712 +1606.04990 Instrumentation and Detectors +1606.05023 Emerging Technologies +1606.05071 Materials Science +1606.06759 +1606.07464 General Physics +1606.07888 Phenomenology +1606.07964 +1606.09339 Fluid Dynamics +1607.00915 Experiment +1607.01119 Information Theory +1607.01386 Cosmology and Nongalactic Astrophysics +1607.01750 Neural and Evolutionary Computing +1607.03169 +1607.04160 Mesoscale and Nanoscale Physics +1607.04683 Learning +1607.04779 +1607.04825 Numerical Analysis +1607.05218 +1607.05328 +1607.05729 Theory +1607.06906 Systems and Control +1607.07351 Differential Geometry +1607.07418 Theory +1607.08000 +1607.08094 Theory +1607.08120 Instrumentation and Detectors +1607.08223 +1607.08388 Distributed, Parallel, and Cluster Computing +1608.00566 +1608.01829 Superconductivity +1608.02121 Phenomenology +1608.03245 Computational Geometry +1608.03866 Distributed, Parallel, and Cluster Computing +1608.03947 Theory +1608.04004 Optimization and Control +1608.04010 Functional Analysis +1608.04580 Phenomenology +1608.05373 Plasma Physics +1608.06308 Analysis of PDEs +1608.06316 Functional Analysis +1608.06487 +1608.06614 Number Theory +1608.06642 Strongly Correlated Electrons +1608.06945 Phenomenology +1608.07121 Operator Algebras +1608.07279 Theory +1608.07451 Materials Science +1608.07527 Number Theory +1608.07766 +1608.07871 Combinatorics +1608.07899 Physics and Society +1608.08198 Strongly Correlated Electrons +1609.00014 +1609.00303 Dynamical Systems +1609.00505 Algebraic Topology +1609.00854 Numerical Analysis +1609.01092 Materials Science +1609.02221 Probability +1609.02330 Atomic Physics +1609.03007 Theory +1609.03275 Fluid Dynamics +1609.03551 Phenomenology +1609.03826 Astrophysics of Galaxies +1609.04366 Statistical Mechanics +1609.04438 Analysis of PDEs +1609.04886 Software Engineering +1609.05475 Portfolio Management +1609.05932 Mesoscale and Nanoscale Physics +1609.05951 Logic +1609.06139 +1609.07070 Information Theory +1609.07401 Functional Analysis +1609.07644 Numerical Analysis +1609.07650 Data Structures and Algorithms +1609.08258 Quantum Gases +1609.08588 Data Structures and Algorithms +1609.09250 Earth and Planetary Astrophysics +1609.09784 +1610.00223 Quantum Gases +1610.00306 Optimization and Control +1610.00836 Differential Geometry +1610.01137 Probability +1610.01531 Classical Analysis and ODEs +1610.02210 Instrumentation and Detectors +1610.02226 Statistical Mechanics +1610.02948 Numerical Analysis +1610.03062 Mesoscale and Nanoscale Physics +1610.03066 Astrophysics of Galaxies +1610.03442 Astrophysics of Galaxies +1610.03765 Rings and Algebras +1610.04318 Materials Science +1610.05191 +1610.05580 Fluid Dynamics +1610.06536 Experiment +1610.06559 Cosmology and Nongalactic Astrophysics +1610.06597 Theory +1610.07047 Numerical Analysis +1610.08352 +1610.08825 Materials Science +1610.08972 Cosmology and Nongalactic Astrophysics +1610.09050 Plasma Physics +1610.09520 Computer Vision and Pattern Recognition +1610.10093 Dynamical Systems +1611.00365 Phenomenology +1611.01620 Superconductivity +1611.02264 High Energy Astrophysical Phenomena +1611.03024 Analysis of PDEs +1611.03336 Networking and Internet Architecture +1611.03630 Probability +1611.03633 Representation Theory +1611.03900 +1611.03964 Algebraic Geometry +1611.04021 Computer Vision and Pattern Recognition +1611.04082 Rings and Algebras +1611.04314 Number Theory +1611.04721 Algebraic Geometry +1611.05073 Data Analysis, Statistics and Probability +1611.05104 Computation and Language +1611.05169 Mesoscale and Nanoscale Physics +1611.05321 Computer Vision and Pattern Recognition +1611.05509 Methodology +1611.06570 Combinatorics +1611.07520 +1611.07644 Optics +1611.07691 Mesoscale and Nanoscale Physics +1611.08121 Phenomenology +1611.08296 Representation Theory +1611.09154 Classical Analysis and ODEs +1611.09246 Accelerator Physics +1611.09249 Accelerator Physics +1612.00391 Theory +1612.00531 Social and Information Networks +1612.01125 Instrumentation and Detectors +1612.01321 Theory +1612.01491 Emerging Technologies +1612.01650 Robotics +1612.01651 Representation Theory +1612.01668 Statistics Theory +1612.01679 Phenomenology +1612.01850 +1612.01971 Strongly Correlated Electrons +1612.02078 Operator Algebras +1612.02081 Phenomenology +1612.02248 Mesoscale and Nanoscale Physics +1612.02527 Applications +1612.02748 Materials Science +1612.02753 Analysis of PDEs +1612.02814 Learning +1612.02913 Emerging Technologies +1612.02953 +1612.02964 Combinatorics +1612.03034 Cosmology and Nongalactic Astrophysics +1612.03267 Classical Analysis and ODEs +1612.03276 +1612.03307 Geophysics +1612.03448 Networking and Internet Architecture +1612.03575 +1612.03627 Theory +1612.03698 Portfolio Management +1612.03904 Statistics Theory +1612.03908 +1612.04281 +1612.04311 Algebraic Geometry +1612.04321 +1612.04346 Probability +1612.04377 Theory +1612.04394 Theory +1612.04440 Computer Vision and Pattern Recognition +1612.04461 Instrumentation and Detectors +1612.04519 Distributed, Parallel, and Cluster Computing +1612.04668 Physics and Society +1612.04954 Mesoscale and Nanoscale Physics +1612.05150 Materials Science +1612.05180 +1612.05240 Instrumentation and Methods for Astrophysics +1612.05242 Instrumentation and Methods for Astrophysics +1612.05243 Instrumentation and Methods for Astrophysics +1612.05244 Instrumentation and Methods for Astrophysics +1612.05292 History and Overview +1612.05302 +1612.05314 +1612.05391 +1612.05413 Digital Libraries +1612.05605 Cryptography and Security +1612.05620 Optimization and Control +1612.05633 Distributed, Parallel, and Cluster Computing +1612.05634 +1612.05635 Astrophysics of Galaxies +1612.05638 Phenomenology +1612.05640 Theory +1612.05642 Phenomenology +1612.05647 Cosmology and Nongalactic Astrophysics +1612.05648 Disordered Systems and Neural Networks +1612.05652 Phenomenology +1612.05653 Methodology +1612.05654 High Energy Astrophysical Phenomena +1612.05657 Mesoscale and Nanoscale Physics +1612.05658 Astrophysics of Galaxies +1612.05659 Accelerator Physics +1612.05660 Neurons and Cognition +1612.05661 Soft Condensed Matter +1612.05662 Accelerator Physics +1612.05664 Rings and Algebras +1612.05665 Data Structures and Algorithms +1612.05668 Instrumentation and Methods for Astrophysics +1612.05671 Quantum Gases +1612.05673 Atmospheric and Oceanic Physics +1612.05675 Cryptography and Security +1612.05676 Analysis of PDEs +1612.05677 Phenomenology +1612.05678 Machine Learning +1612.05679 Materials Science +1612.05680 +1612.05682 Information Theory +1612.05683 Operator Algebras +1612.05684 Discrete Mathematics +1612.05685 Functional Analysis +1612.05686 Phenomenology +1612.05689 Exactly Solvable and Integrable Systems +1612.05693 Artificial Intelligence +1612.05694 Category Theory +1612.05696 Analysis of PDEs +1612.05698 Theory +1612.05700 High Energy Astrophysical Phenomena +1612.05701 Theory +1612.05702 Computer Science and Game Theory +1612.05703 Cosmology and Nongalactic Astrophysics +1612.05704 Optimization and Control +1612.05705 Optics +1612.05707 Lattice +1612.05708 Optimization and Control +1612.05710 Networking and Internet Architecture +1612.05712 Computer Vision and Pattern Recognition +1612.05713 Differential Geometry +1612.05715 Networking and Internet Architecture +1612.05716 Materials Science +1612.05717 Combinatorics +1612.05719 Computer Vision and Pattern Recognition +1612.05722 Lattice +1612.05724 +1612.05725 +1612.05726 +1612.05727 +1612.05729 Information Retrieval +1612.05731 Quantum Algebra +1612.05733 Data Structures and Algorithms +1612.05735 History and Overview +1612.05736 Materials Science +1612.05737 Commutative Algebra +1612.05746 Probability +1612.05748 Mesoscale and Nanoscale Physics +1612.05751 +1612.05754 Soft Condensed Matter +1612.05755 Functional Analysis +1612.05756 Logic +1612.05757 Probability +1612.05758 +1612.05759 Numerical Analysis +1612.05761 Analysis of PDEs +1612.05762 Soft Condensed Matter +1612.05763 Functional Analysis +1612.05764 Probability +1612.05765 Complex Variables +1612.05766 Symbolic Computation +1612.05768 Combinatorics +1612.05769 Mesoscale and Nanoscale Physics +1612.05772 Combinatorics +1612.05773 Soft Condensed Matter +1612.05774 Analysis of PDEs +1612.05775 Analysis of PDEs +1612.05778 Symbolic Computation +1612.05780 Software Engineering +1612.05784 Functional Analysis +1612.05785 Algebraic Geometry +1612.05786 Databases +1612.05787 Algebraic Geometry +1612.05789 Analysis of PDEs +1612.05790 Superconductivity +1612.05791 Mesoscale and Nanoscale Physics +1612.05792 Superconductivity +1612.05793 Robotics +1612.05794 Learning +1612.05795 High Energy Astrophysical Phenomena +1612.05798 Plasma Physics +1612.05803 General Topology +1612.05804 Optimization and Control +1612.05806 Cryptography and Security +1612.05807 Optimization and Control +1612.05808 Fluid Dynamics +1612.05809 Quantum Gases +1612.05810 Digital Libraries +1612.05811 Phenomenology +1612.05812 Optimization and Control +1612.05813 Earth and Planetary Astrophysics +1612.05814 Discrete Mathematics +1612.05816 Phenomenology +1612.05817 Social and Information Networks +1612.05818 Combinatorics +1612.05819 Differential Geometry +1612.05821 Functional Analysis +1612.05822 Instrumentation and Detectors +1612.05823 +1612.05825 Strongly Correlated Electrons +1612.05826 Fluid Dynamics +1612.05827 Discrete Mathematics +1612.05829 +1612.05830 +1612.05832 Computational Complexity +1612.05833 Logic +1612.05834 Numerical Analysis +1612.05836 Computer Vision and Pattern Recognition +1612.05837 Functional Analysis +1612.05838 +1612.05842 Statistical Mechanics +1612.05843 Differential Geometry +1612.05844 Methodology +1612.05845 Information Theory +1612.05846 Machine Learning +1612.05848 Phenomenology +1612.05849 Computational Complexity +1612.05852 Applications +1612.05853 Theory +1612.05856 +1612.05858 Databases +1612.05859 Distributed, Parallel, and Cluster Computing +1612.05862 Chemical Physics +1612.05864 Networking and Internet Architecture +1612.05865 Networking and Internet Architecture +1612.05867 Representation Theory +1612.05868 +1612.05869 Number Theory +1612.05871 High Energy Astrophysical Phenomena +1612.05872 Computer Vision and Pattern Recognition +1612.05873 Materials Science +1612.05874 Materials Science +1612.05875 Probability +1612.05877 Computer Vision and Pattern Recognition +1612.05878 Systems and Control +1612.05879 Mesoscale and Nanoscale Physics +1612.05880 Information Theory +1612.05881 Networking and Internet Architecture +1612.05882 Biomolecules +1612.05883 Soft Condensed Matter +1612.05884 Analysis of PDEs +1612.05885 Networking and Internet Architecture +1612.05887 Information Theory +1612.05888 Learning +1612.05890 Computer Vision and Pattern Recognition +1612.05891 Theory +1612.05892 Dynamical Systems +1612.05893 Dynamical Systems +1612.05894 Information Theory +1612.05895 Theory +1612.05898 Theory +1612.05899 Mesoscale and Nanoscale Physics +1612.05901 Computational Physics +1612.05904 Computational Physics +1612.05905 Number Theory +1612.05906 Statistics Theory +1612.05907 Machine Learning +1612.05908 Phenomenology +1612.05912 Algebraic Geometry +1612.05913 Spectral Theory +1612.05915 Functional Analysis +1612.05917 +1612.05918 Phenomenology +1612.05920 Probability +1612.05922 Human-Computer Interaction +1612.05925 Quantum Gases +1612.05926 Chaotic Dynamics +1612.05928 Mesoscale and Nanoscale Physics +1612.05929 Quantum Algebra +1612.05932 Robotics +1612.05933 Theory +1612.05935 Number Theory +1612.05936 Mesoscale and Nanoscale Physics +1612.05937 Dynamical Systems +1612.05939 Category Theory +1612.05940 +1612.05941 Logic +1612.05942 Theory +1612.05943 Cryptography and Security +1612.05944 History and Overview +1612.05946 Differential Geometry +1612.05948 Functional Analysis +1612.05949 High Energy Astrophysical Phenomena +1612.05951 Statistics Theory +1612.05953 Geometric Topology +1612.05954 Computational Complexity +1612.05955 Populations and Evolution +1612.05956 Disordered Systems and Neural Networks +1612.05957 Probability +1612.05958 Cosmology and Nongalactic Astrophysics +1612.05960 Biological Physics +1612.05961 Lattice +1612.05962 Lattice +1612.05963 Dynamical Systems +1612.05965 Mesoscale and Nanoscale Physics +1612.05966 Optimization and Control +1612.05967 Materials Science +1612.05968 Computer Vision and Pattern Recognition +1612.05970 Computer Vision and Pattern Recognition +1612.05972 Complex Variables +1612.05975 Software Engineering +1612.05976 Commutative Algebra +1612.05978 Astrophysics of Galaxies +1612.05979 Fluid Dynamics +1612.05982 +1612.05983 Probability +1612.05984 Probability +1612.05987 Soft Condensed Matter +1612.05988 Soft Condensed Matter +1612.05994 Statistics Theory +1612.05995 Cosmology and Nongalactic Astrophysics +1612.05996 Instrumentation and Methods for Astrophysics +1612.05997 Algebraic Geometry +1612.05998 Networking and Internet Architecture +1612.06000 Artificial Intelligence +1612.06001 Geophysics +1612.06002 Phenomenology +1612.06008 Robotics +1612.06010 Theory +1612.06011 Combinatorics +1612.06012 +1612.06013 Numerical Analysis +1612.06014 Optics +1612.06016 Data Structures and Algorithms +1612.06017 Computer Vision and Pattern Recognition +1612.06018 Learning +1612.06019 +1612.06020 +1612.06021 Combinatorics +1612.06023 Differential Geometry +1612.06024 Combinatorics +1612.06026 Combinatorics +1612.06028 High Energy Astrophysical Phenomena +1612.06029 Methodology +1612.06030 Materials Science +1612.06032 General Topology +1612.06033 Optics +1612.06034 Algebraic Topology +1612.06035 Populations and Evolution +1612.06036 Statistical Mechanics +1612.06037 Instrumentation and Methods for Astrophysics +1612.06038 Artificial Intelligence +1612.06039 Commutative Algebra +1612.06040 Methodology +1612.06041 Materials Science +1612.06042 Analysis of PDEs +1612.06044 Analysis of PDEs +1612.06047 Instrumentation and Detectors +1612.06048 Quantum Algebra +1612.06049 Materials Science +1612.06051 Representation Theory +1612.06052 Learning +1612.06053 Computer Vision and Pattern Recognition +1612.06056 Networking and Internet Architecture +1612.06057 Data Structures and Algorithms +1612.06058 Probability +1612.06060 Cosmology and Nongalactic Astrophysics +1612.06061 Machine Learning +1612.06062 Computation and Language +1612.06063 +1612.06069 Symbolic Computation +1612.06070 Computer Vision and Pattern Recognition +1612.06072 Dynamical Systems +1612.06075 Strongly Correlated Electrons +1612.06076 Computational Physics +1612.06077 Materials Science +1612.06078 Analysis of PDEs +1612.06081 Information Theory +1612.06086 Numerical Analysis +1612.06087 Plasma Physics +1612.06089 Phenomenology +1612.06090 Distributed, Parallel, and Cluster Computing +1612.06092 Computational Complexity +1612.06093 Neural and Evolutionary Computing +1612.06094 Phenomenology +1612.06098 Computer Vision and Pattern Recognition +1612.06101 Fluid Dynamics +1612.06102 High Energy Astrophysical Phenomena +1612.06103 Representation Theory +1612.06104 High Energy Astrophysical Phenomena +1612.06105 Materials Science +1612.06106 Lattice +1612.06107 Group Theory +1612.06108 Mesoscale and Nanoscale Physics +1612.06110 Analysis of PDEs +1612.06111 Mesoscale and Nanoscale Physics +1612.06113 Lattice +1612.06114 Human-Computer Interaction +1612.06117 Group Theory +1612.06119 Algebraic Geometry +1612.06120 Systems and Control +1612.06122 +1612.06123 Strongly Correlated Electrons +1612.06124 Instrumentation and Detectors +1612.06125 Probability +1612.06126 Networking and Internet Architecture +1612.06127 Statistics Theory +1612.06129 Computer Vision and Pattern Recognition +1612.06130 Functional Analysis +1612.06131 Statistical Mechanics +1612.06132 Popular Physics +1612.06133 Portfolio Management +1612.06134 Analysis of PDEs +1612.06135 Strongly Correlated Electrons +1612.06136 Information Retrieval +1612.06138 Computation and Language +1612.06139 Computation and Language +1612.06140 Computation and Language +1612.06141 Computation and Language +1612.06143 Combinatorics +1612.06144 Dynamical Systems +1612.06146 Methodology +1612.06147 Functional Analysis +1612.06148 Astrophysics of Galaxies +1612.06150 Commutative Algebra +1612.06152 Computer Vision and Pattern Recognition +1612.06153 Combinatorics +1612.06155 Mesoscale and Nanoscale Physics +1612.06157 Solar and Stellar Astrophysics +1612.06158 Rings and Algebras +1612.06159 Information Theory +1612.06160 Materials Science +1612.06162 Digital Libraries +1612.06164 Robotics +1612.06168 Fluid Dynamics +1612.06170 Computer Vision and Pattern Recognition +1612.06171 Representation Theory +1612.06172 Solar and Stellar Astrophysics +1612.06173 Complex Variables +1612.06176 Computer Vision and Pattern Recognition +1612.06178 Group Theory +1612.06179 Functional Analysis +1612.06181 Statistical Mechanics +1612.06182 Plasma Physics +1612.06185 Disordered Systems and Neural Networks +1612.06187 Number Theory +1612.06189 Human-Computer Interaction +1612.06190 Mesoscale and Nanoscale Physics +1612.06191 Cryptography and Security +1612.06192 Strongly Correlated Electrons +1612.06193 Analysis of PDEs +1612.06194 Phenomenology +1612.06195 Databases +1612.06196 Soft Condensed Matter +1612.06197 +1612.06198 Methodology +1612.06199 Mesoscale and Nanoscale Physics +1612.06202 Digital Libraries +1612.06204 Statistical Mechanics +1612.06205 Optimization and Control +1612.06208 Plasma Physics +1612.06210 Number Theory +1612.06212 Neural and Evolutionary Computing +1612.06213 Number Theory +1612.06214 Theory +1612.06215 Optics +1612.06216 Materials Science +1612.06218 Materials Science +1612.06219 History and Overview +1612.06220 Group Theory +1612.06221 Theory +1612.06222 Logic +1612.06223 Theory +1612.06224 +1612.06226 Classical Analysis and ODEs +1612.06227 Cosmology and Nongalactic Astrophysics +1612.06228 +1612.06229 Optimization and Control +1612.06230 Analysis of PDEs +1612.06231 Analysis of PDEs +1612.06233 Formal Languages and Automata Theory +1612.06235 Theory +1612.06236 Theory +1612.06237 Geometric Topology +1612.06238 Instrumentation and Methods for Astrophysics +1612.06240 +1612.06242 History and Overview +1612.06243 Combinatorics +1612.06244 General Finance +1612.06247 Formal Languages and Automata Theory +1612.06249 Materials Science +1612.06250 Classical Analysis and ODEs +1612.06251 +1612.06253 Phenomenology +1612.06256 Operator Algebras +1612.06259 Computer Vision and Pattern Recognition +1612.06260 Number Theory +1612.06261 Commutative Algebra +1612.06262 Networking and Internet Architecture +1612.06263 +1612.06265 Optimization and Control +1612.06266 Materials Science +1612.06269 Lattice +1612.06270 Functional Analysis +1612.06271 Information Theory +1612.06272 Group Theory +1612.06273 Strongly Correlated Electrons +1612.06274 Phenomenology +1612.06275 Materials Science +1612.06276 Theory +1612.06277 Analysis of PDEs +1612.06278 +1612.06279 Optimization and Control +1612.06280 Analysis of PDEs +1612.06281 Analysis of PDEs +1612.06282 Cosmology and Nongalactic Astrophysics +1612.06283 Analysis of PDEs +1612.06284 Analysis of PDEs +1612.06285 Analysis of PDEs +1612.06286 Metric Geometry +1612.06287 Sound +1612.06288 Optimization and Control +1612.06290 Materials Science +1612.06291 Economics +1612.06293 Accelerator Physics +1612.06295 Algebraic Geometry +1612.06296 Cosmology and Nongalactic Astrophysics +1612.06299 Learning +1612.06302 Distributed, Parallel, and Cluster Computing +1612.06303 Methodology +1612.06304 Methodology +1612.06305 Cryptography and Security +1612.06306 Probability +1612.06307 Complex Variables +1612.06308 Theory +1612.06309 Solar and Stellar Astrophysics +1612.06310 +1612.06312 Numerical Analysis +1612.06313 Quantitative Methods +1612.06314 Algebraic Topology +1612.06315 Algebraic Topology +1612.06316 Phenomenology +1612.06317 Quantum Algebra +1612.06318 Number Theory +1612.06319 Biomolecules +1612.06321 Computer Vision and Pattern Recognition +1612.06322 +1612.06327 Superconductivity +1612.06329 Astrophysics of Galaxies +1612.06331 Materials Science +1612.06333 Phenomenology +1612.06334 Phenomenology +1612.06335 Information Theory +1612.06336 Tissues and Organs +1612.06341 Computer Vision and Pattern Recognition +1612.06343 Probability +1612.06344 Optimization and Control +1612.06345 Information Theory +1612.06347 Computer Science and Game Theory +1612.06348 Theory +1612.06350 Phenomenology +1612.06352 Representation Theory +1612.06353 Mesoscale and Nanoscale Physics +1612.06355 Mesoscale and Nanoscale Physics +1612.06358 Statistics Theory +1612.06359 Probability +1612.06361 Optimization and Control +1612.06362 Mesoscale and Nanoscale Physics +1612.06363 Algebraic Topology +1612.06365 Mesoscale and Nanoscale Physics +1612.06367 Cosmology and Nongalactic Astrophysics +1612.06369 High Energy Astrophysical Phenomena +1612.06370 Computer Vision and Pattern Recognition +1612.06371 Computer Vision and Pattern Recognition +math/0504375 Logic +1602.04277 Learning +1602.04352 Physics and Society +1602.04368 Data Structures and Algorithms +1602.04420 Optimization and Control +1602.04513 Quantitative Methods +1602.04544 Mesoscale and Nanoscale Physics +1602.04607 Phenomenology +1602.04681 Mesoscale and Nanoscale Physics +1602.04718 Optimization and Control +1602.04721 Applications +1602.04759 Experiment +1602.04799 +0905.0203 Human-Computer Interaction +1001.4002 Graphics +1002.0690 Algebraic Geometry +1003.0302 Number Theory +1109.3314 Solar and Stellar Astrophysics +1109.5421 Theory +1110.2358 Geometric Topology +1205.6124 Algebraic Geometry +1211.0304 Algebraic Geometry +1211.3000 Combinatorics +1302.0872 General Mathematics +1307.0241 Probability +1307.5645 Combinatorics +1307.5957 Analysis of PDEs +1311.1095 +1401.2007 Quantum Gases +1402.1769 Probability +1403.2662 Functional Analysis +1405.4561 Algebraic Geometry +1405.7709 Computer Science and Game Theory +1406.5623 Superconductivity +1406.7756 Information Theory +1407.6326 +1408.2549 +1409.1751 +1409.1874 Combinatorics +1409.4228 Metric Geometry +1410.0585 Mesoscale and Nanoscale Physics +1410.4237 Neurons and Cognition +1410.7425 Dynamical Systems +1411.4802 Instrumentation and Detectors +1412.3644 Logic in Computer Science +1501.03855 Superconductivity +1502.06291 Statistics Theory +1502.07442 Instrumentation and Methods for Astrophysics +1503.01495 Mesoscale and Nanoscale Physics +1503.05087 Learning +1504.03225 General Physics +1504.03238 Mathematical Finance +1504.08310 Commutative Algebra +1505.05793 Metric Geometry +1505.07941 Number Theory +1506.03649 Representation Theory +1506.03806 Probability +1506.05330 +1506.06914 +1506.07869 Number Theory +1507.02272 Distributed, Parallel, and Cluster Computing +1507.03831 Algebraic Geometry +1507.04572 Algebraic Geometry +1507.07577 High Energy Astrophysical Phenomena +1507.08024 Representation Theory +1507.08185 +1508.00352 Materials Science +1508.01541 General Topology +1508.03040 Computation and Language +1508.07208 Cosmology and Nongalactic Astrophysics +1509.00133 Functional Analysis +1509.01062 +1509.05598 Optimization and Control +1509.06002 Number Theory +1510.00586 Logic +1510.00632 Mesoscale and Nanoscale Physics +1510.00943 Number Theory +1510.01733 Astrophysics of Galaxies +1510.03517 Optimization and Control +1510.06020 Logic in Computer Science +1510.06782 Differential Geometry +1511.00857 Category Theory +1511.01772 Algebraic Topology +1511.01805 +1511.02763 General Physics +1511.06309 Learning +1511.06498 Mesoscale and Nanoscale Physics +1511.06689 Number Theory +1511.07715 Machine Learning +1511.08031 Fluid Dynamics +1512.00553 Physics and Society +1512.00772 Differential Geometry +1512.04037 +1512.04632 Analysis of PDEs +1512.06293 Information Theory +1512.06503 Mesoscale and Nanoscale Physics +1512.07382 Number Theory +1512.07603 Populations and Evolution +1512.09013 Theory +1601.01414 Materials Science +1601.01982 Materials Science +1601.02994 Strongly Correlated Electrons +1601.04906 Dynamical Systems +1601.06911 Methodology +1601.07476 Analysis of PDEs +1601.07677 Classical Analysis and ODEs +1602.01160 Methodology +1602.01784 Cosmology and Nongalactic Astrophysics +1602.03034 K-Theory and Homology +1602.03071 Mesoscale and Nanoscale Physics +1602.04752 Cosmology and Nongalactic Astrophysics +1602.05684 Mesoscale and Nanoscale Physics +1602.06641 Differential Geometry +1602.07240 +1602.07907 Geometric Topology +1602.08173 Strongly Correlated Electrons +1603.00093 Atomic Physics +1603.00175 Numerical Analysis +1603.00176 Numerical Analysis +1603.00275 Computer Vision and Pattern Recognition +1603.00358 Mesoscale and Nanoscale Physics +1603.04379 Optimization and Control +1603.04661 Probability +1603.05860 +1603.06586 Cosmology and Nongalactic Astrophysics +1603.07067 Number Theory +1603.07328 +1603.07910 Physics Education +1603.09056 Computer Vision and Pattern Recognition +1603.09562 Algebraic Geometry +1604.00479 +1604.01033 Mesoscale and Nanoscale Physics +1604.01174 Probability +1604.01460 Strongly Correlated Electrons +1604.03011 Solar and Stellar Astrophysics +1604.03514 Theory +1604.03951 Strongly Correlated Electrons +1604.04285 Cosmology and Nongalactic Astrophysics +1604.04513 Mesoscale and Nanoscale Physics +1604.05252 Strongly Correlated Electrons +1604.06578 Information Theory +1605.01379 Computer Vision and Pattern Recognition +1605.01591 Group Theory +1605.02233 Information Theory +1605.02342 Chaotic Dynamics +1605.02817 Artificial Intelligence +1605.04871 Cosmology and Nongalactic Astrophysics +1605.08283 Learning +1606.00634 Cosmology and Nongalactic Astrophysics +1606.01334 +1606.01435 Adaptation and Self-Organizing Systems +1606.02692 +1606.02959 Numerical Analysis +1606.03307 Theory +1606.04837 Phenomenology +1606.06028 Metric Geometry +1606.06156 +1606.07626 Geometric Topology +1606.08894 Algebraic Geometry +1606.09054 Experiment +1607.00278 Computational Geometry +1607.01196 Computational Geometry +1607.01747 Theory +1607.02000 Representation Theory +1607.02305 Mesoscale and Nanoscale Physics +1607.02439 Theory +1607.02551 Solar and Stellar Astrophysics +1607.03045 Methodology +1607.04282 Earth and Planetary Astrophysics +1607.04481 +1607.04928 Theory +1607.06275 Computation and Language +1607.07123 Experiment +1607.08115 +1607.08671 Optimization and Control +1608.00871 Atomic Physics +1608.00936 Graphics +1608.01119 Astrophysics of Galaxies +1608.02099 Metric Geometry +1608.02200 High Energy Astrophysical Phenomena +1608.02534 Programming Languages +1608.02598 Strongly Correlated Electrons +1608.03341 +1608.03509 Earth and Planetary Astrophysics +1608.03546 General Topology +1608.03593 High Energy Astrophysical Phenomena +1608.03885 Quantum Algebra +1608.04982 Materials Science +1608.05811 +1608.06591 Materials Science +1608.07179 Learning +1608.07637 Software Engineering +1608.07793 Artificial Intelligence +1608.08161 Computational Geometry +1608.08336 Computer Vision and Pattern Recognition +1608.08367 Information Theory +1608.08407 Geophysics +1608.08542 Medical Physics +1608.08704 Logic in Computer Science +1608.08726 +1608.08764 Number Theory +1608.08967 Learning +1608.08968 Methodology +1609.00001 Neurons and Cognition +1609.00002 Instrumentation and Detectors +1609.00003 Astrophysics of Galaxies +1609.00004 Physics and Society +1609.00017 Robotics +1609.00018 Physics Education +1609.00030 Artificial Intelligence +1609.00031 Methodology +1609.00032 Neurons and Cognition +1609.00039 +1609.00040 Functional Analysis +1609.00042 Rings and Algebras +1609.00045 Multimedia +1609.00046 Methodology +1609.00047 Theory +1609.00048 Numerical Analysis +1609.00049 Symplectic Geometry +1609.00050 Phenomenology +1609.00051 Systems and Control +1609.00053 Computer Vision and Pattern Recognition +1609.00054 Optics +1609.00055 Instrumentation and Methods for Astrophysics +1609.00056 Systems and Control +1609.00059 Functional Analysis +1609.00060 Computational Physics +1609.00061 Numerical Analysis +1609.00062 Information Theory +1609.00063 Fluid Dynamics +1609.00064 High Energy Astrophysical Phenomena +1609.00065 Methodology +1609.00070 Computation and Language +1609.00072 Computer Vision and Pattern Recognition +1609.00073 Optics +1609.00076 Mathematical Software +1609.00081 Computation and Language +1609.00082 Probability +1609.00087 Superconductivity +1609.00088 Combinatorics +1609.00089 Combinatorics +1609.00092 Combinatorics +1609.00093 Logic +1609.00096 Computer Vision and Pattern Recognition +1609.00101 Cosmology and Nongalactic Astrophysics +1609.00102 +1609.00103 Materials Science +1609.00104 Cryptography and Security +1609.00105 Superconductivity +1609.00107 Analysis of PDEs +1609.00108 Social and Information Networks +1609.00109 Discrete Mathematics +1609.00111 Algebraic Geometry +1609.00115 Optimization and Control +1609.00117 Databases +1609.00119 Computational Engineering, Finance, and Science +1609.00120 Solar and Stellar Astrophysics +1609.00122 Analysis of PDEs +1609.00123 Algebraic Geometry +1609.00126 Networking and Internet Architecture +1609.00127 Analysis of PDEs +1609.00129 Computer Vision and Pattern Recognition +1609.00130 Distributed, Parallel, and Cluster Computing +1609.00131 Soft Condensed Matter +1609.00132 Logic in Computer Science +1609.00133 Cryptography and Security +1609.00134 Solar and Stellar Astrophysics +1609.00136 Strongly Correlated Electrons +1609.00137 Instrumentation and Methods for Astrophysics +1609.00139 Numerical Analysis +1609.00142 Information Theory +1609.00144 Algebraic Geometry +1609.00145 Category Theory +1609.00148 Phenomenology +1609.00149 Social and Information Networks +1609.00152 Combinatorics +1609.00154 Geophysics +1609.00155 +1609.00158 Soft Condensed Matter +1609.00160 Chemical Physics +1609.00162 Computer Vision and Pattern Recognition +1609.00163 Instrumentation and Methods for Astrophysics +1609.00165 Probability +1609.00167 Theory +1609.00169 Software Engineering +1609.00170 Complex Variables +1609.00172 Lattice +1609.00173 +1609.00175 High Energy Astrophysical Phenomena +1609.00176 Functional Analysis +1609.00177 Robotics +1609.00178 Solar and Stellar Astrophysics +1609.00179 Classical Analysis and ODEs +1609.00181 Lattice +1609.00182 Fluid Dynamics +1609.00185 Populations and Evolution +1609.00192 +1609.00195 Logic in Computer Science +1609.00198 Strongly Correlated Electrons +1609.00201 Strongly Correlated Electrons +1609.00203 Learning +1609.00205 Theory +1609.00210 Lattice +1609.00211 Combinatorics +1609.00212 Mesoscale and Nanoscale Physics +1609.00214 Formal Languages and Automata Theory +1609.00215 Probability +1609.00216 Optics +1609.00217 Geometric Topology +1609.00218 Complex Variables +1609.00220 Mesoscale and Nanoscale Physics +1609.00221 Computer Vision and Pattern Recognition +1609.00223 Geometric Topology +1609.00225 Cryptography and Security +1609.00231 Number Theory +1609.00232 Numerical Analysis +1609.00234 Classical Analysis and ODEs +1609.00236 Materials Science +1609.00237 Instrumentation and Methods for Astrophysics +1609.00242 Logic +1609.00243 Applications +1609.00251 Statistical Mechanics +1609.00254 Phenomenology +1609.00255 Materials Science +1609.00256 Plasma Physics +1609.00262 Representation Theory +1609.00266 Cryptography and Security +1609.00267 Materials Science +1609.00268 Soft Condensed Matter +1609.00269 Atomic Physics +1609.00273 Solar and Stellar Astrophysics +1609.00276 +1609.00277 History and Philosophy of Physics +1609.00278 Computer Vision and Pattern Recognition +1609.00279 Group Theory +1609.00281 Plasma Physics +1609.00283 Systems and Control +1609.00284 Combinatorics +1609.00288 Learning +1609.00289 Materials Science +1609.00290 Combinatorics +1609.00291 Sound +1609.00292 Artificial Intelligence +1609.00293 Methodology +1609.00294 +1609.00295 General Mathematics +1609.00298 Probability +1609.00299 Number Theory +1609.00300 Networking and Internet Architecture +1609.00302 Systems and Control +1609.00304 Superconductivity +1609.00306 Hardware Architecture +1609.00308 Mesoscale and Nanoscale Physics +1609.00309 Analysis of PDEs +1609.00311 History and Philosophy of Physics +1609.00314 Combinatorics +1609.00315 +1609.00320 Algebraic Geometry +1609.00321 Computational Geometry +1609.00325 Group Theory +1609.00327 Soft Condensed Matter +1609.00329 Solar and Stellar Astrophysics +1609.00330 High Energy Astrophysical Phenomena +1609.00333 Mesoscale and Nanoscale Physics +1609.00337 Commutative Algebra +1609.00338 Probability +1609.00339 Computation +1609.00340 Materials Science +1609.00341 Optimization and Control +1609.00344 Computer Vision and Pattern Recognition +1609.00345 Algebraic Geometry +1609.00346 Instrumentation and Detectors +1609.00347 Fluid Dynamics +1609.00355 Solar and Stellar Astrophysics +1609.00366 Differential Geometry +0711.3343 +0802.3956 Probability +0805.3407 Probability +0812.2432 Probability +0908.0257 Numerical Analysis +1011.2878 Numerical Analysis +1011.2880 Numerical Analysis +1011.2972 Numerical Analysis +1012.5906 Complex Variables +1103.1731 Algebraic Geometry +1107.2372 Operator Algebras +1203.3283 Strongly Correlated Electrons +1203.3896 Methodology +1204.2451 Number Theory +1207.4085 Methodology +1307.5173 Logic +1401.5436 Theory +1402.4492 Probability +1404.1455 Cosmology and Nongalactic Astrophysics +1405.5103 Statistics Theory +1406.6006 Analysis of PDEs +1409.0527 +1410.7217 Applications +1411.4686 Statistics Theory +1501.05732 Experiment +1501.06234 +1501.06314 Methodology +1502.00611 Logic in Computer Science +1502.00681 +1502.02928 +1502.06222 Optimization and Control +1503.07289 Fluid Dynamics +1504.01687 +1504.02509 +1504.05525 Chaotic Dynamics +1505.01216 Number Theory +1505.04923 Statistical Mechanics +1505.06371 Dynamical Systems +1505.07055 Strongly Correlated Electrons +1506.02773 Mesoscale and Nanoscale Physics +1506.04012 Probability +1506.05406 Phenomenology +1506.08320 General Topology +1506.08650 +1507.06504 Computer Vision and Pattern Recognition +1507.08191 Dynamical Systems +1508.01960 Functional Analysis +1508.01961 Functional Analysis +1508.02066 Functional Analysis +1508.06609 Mesoscale and Nanoscale Physics +1509.01755 Representation Theory +1509.04733 Social and Information Networks +1509.07044 +1509.07726 Astrophysics of Galaxies +1510.00921 Computer Vision and Pattern Recognition +1510.02852 Algebraic Geometry +1510.03297 Theory +1510.06683 +1511.00921 Subcellular Processes +1511.00940 Functional Analysis +1511.01009 Statistics Theory +1511.02280 High Energy Astrophysical Phenomena +1511.06084 Instrumentation and Detectors +1511.09410 +1512.03109 Functional Analysis +1512.08125 Theory +1512.08261 Number Theory +1601.00685 Algebraic Geometry +1601.02887 Combinatorics +1602.00494 Functional Analysis +1602.00619 Pricing of Securities +1602.01296 Instrumentation and Detectors +1602.01735 Functional Analysis +1602.03133 +1602.06673 Statistical Mechanics +1602.08221 Symplectic Geometry +1602.08730 Data Structures and Algorithms +1602.08744 Analysis of PDEs +1602.08983 Differential Geometry +1603.01818 Analysis of PDEs +1603.02735 Optics +1603.03564 Systems and Control +1603.04194 Probability +1603.05938 Methodology +1603.08783 Materials Science +1603.08800 +1604.03163 Functional Analysis +1604.04813 Complex Variables +1604.05553 Optimization and Control +1604.05602 Astrophysics of Galaxies +1604.06035 Analysis of PDEs +1604.07295 Probability +1604.07952 Computer Vision and Pattern Recognition +1605.00125 Optimization and Control +1605.00456 +1605.02517 Phenomenology +1605.03190 Phenomenology +1605.03512 Probability +1605.03679 +1605.04753 Functional Analysis +1605.04864 Phenomenology +1605.05213 Quantum Gases +1605.05451 Theory +1605.05476 Applications +1605.06530 Populations and Evolution +1605.08236 Complex Variables +1606.00615 Information Retrieval +1606.01084 Exactly Solvable and Integrable Systems +1606.01280 Computation and Language +1606.02183 Combinatorics +1606.02943 Dynamical Systems +1606.03793 Analysis of PDEs +1606.04244 Optimization and Control +1606.07372 Neurons and Cognition +1606.08743 Numerical Analysis +1607.00817 Cosmology and Nongalactic Astrophysics +1607.00882 Methodology +1607.02034 Mesoscale and Nanoscale Physics +1607.02129 Classical Analysis and ODEs +1607.02543 Number Theory +1607.03179 Digital Libraries +1607.03735 Theory +1607.03854 Information Theory +1607.03928 +1607.05187 Theory +1607.05432 Machine Learning +1607.06382 Phenomenology +1607.07498 Data Analysis, Statistics and Probability +1607.08517 Phenomenology +1608.00021 Theory +1608.00039 Computer Science and Game Theory +1608.01481 Optics +1608.01764 +1608.02112 Information Theory +1608.02833 Computer Vision and Pattern Recognition +1608.03099 Phenomenology +1608.03412 +1608.03714 Disordered Systems and Neural Networks +1608.04233 Computer Vision and Pattern Recognition +1608.04449 +1608.04741 Strongly Correlated Electrons +1608.05028 High Energy Astrophysical Phenomena +1608.05645 Optics +1608.05846 Mesoscale and Nanoscale Physics +1608.06923 +1608.07152 Quantum Gases +1608.08135 Theory +1608.08281 Mesoscale and Nanoscale Physics +1608.08419 Solar and Stellar Astrophysics +1609.00379 Cosmology and Nongalactic Astrophysics +1609.00565 Computation and Language +1609.00902 Classical Analysis and ODEs +1609.01214 Physics and Society +1609.02686 Machine Learning +1609.02971 Probability +1609.04736 Experiment +1609.04971 Soft Condensed Matter +1609.04995 Chaotic Dynamics +1609.05137 Combinatorics +1609.06325 Statistical Mechanics +1609.06630 Discrete Mathematics +1609.07529 Mesoscale and Nanoscale Physics +1609.07982 Computer Vision and Pattern Recognition +1609.08319 Astrophysics of Galaxies +1610.00112 Mesoscale and Nanoscale Physics +1610.00186 Medical Physics +1610.00819 Plasma Physics +1610.00870 Accelerator Physics +1610.01743 Mesoscale and Nanoscale Physics +1610.02549 Theory +1610.02945 Numerical Analysis +1610.03205 +1610.03388 Mesoscale and Nanoscale Physics +1610.03701 Computation +1610.03763 Cosmology and Nongalactic Astrophysics +1610.04196 Applications +1610.04422 General Topology +1610.07067 Analysis of PDEs +1610.07425 Mesoscale and Nanoscale Physics +1610.07830 Machine Learning +1610.08635 High Energy Astrophysical Phenomena +1610.09945 Dynamical Systems +1611.00340 Machine Learning +1611.00871 Rings and Algebras +1611.00933 Dynamical Systems +1611.01090 Databases +1611.02099 Combinatorics +1611.02271 Exactly Solvable and Integrable Systems +1611.04019 Statistical Mechanics +1611.04146 Artificial Intelligence +1611.05026 Programming Languages +1611.05031 Theory +1611.06091 Materials Science +1611.06156 Computational Physics +1611.06506 Algebraic Geometry +1611.07362 Logic +1611.07598 Disordered Systems and Neural Networks +1611.07827 Phenomenology +1611.08234 Phenomenology +1611.08466 K-Theory and Homology +1611.08562 Computation and Language +1611.09194 Learning +1611.09362 Cosmology and Nongalactic Astrophysics +1611.09749 Rings and Algebras +1612.00071 Physics and Society +1612.00685 +1612.00765 Number Theory +1612.00792 Algebraic Geometry +1612.00905 +1612.01051 Computer Vision and Pattern Recognition +1612.01414 Learning +1612.01465 Computer Vision and Pattern Recognition +1612.01797 Combinatorics +1612.02548 Phenomenology +1612.02728 Phenomenology +1612.02965 Machine Learning +1612.03131 +1612.03381 Earth and Planetary Astrophysics +1612.03644 Combinatorics +1612.03899 Strongly Correlated Electrons +1612.04070 +1612.04202 Phenomenology +1612.04690 Statistical Mechanics +1612.04983 Logic in Computer Science +1612.05003 Superconductivity +1612.05032 Theory +1612.05245 Instrumentation and Methods for Astrophysics +1612.05771 Representation Theory +1612.05831 Dynamical Systems +1612.05980 Geometric Topology +1612.06121 Earth and Planetary Astrophysics +1612.06161 Phenomenology +1612.06378 +1612.06433 Data Analysis, Statistics and Probability +1612.06658 Information Theory +1612.06772 Numerical Analysis +1612.06811 Cosmology and Nongalactic Astrophysics +1612.06856 Learning +1612.06907 Materials Science +1612.06938 Theory +1612.07014 Materials Science +1612.07059 Artificial Intelligence +1612.07201 Optics +1612.07213 Systems and Control +1612.07224 Information Theory +1612.07244 +1612.07318 Other Computer Science +1612.07319 +1612.07321 High Energy Astrophysical Phenomena +1612.07330 +1612.07331 +1612.07335 Optimization and Control +1612.07338 Statistical Mechanics +1612.07339 Accelerator Physics +1612.07340 Optimization and Control +1612.07342 Phenomenology +1612.07345 Logic in Computer Science +1612.07346 Fluid Dynamics +1612.07347 Lattice +1612.07348 Experiment +1612.07349 Statistics Theory +1612.07350 Optimization and Control +1612.07351 +1612.07352 Solar and Stellar Astrophysics +1612.07353 Graphics +1612.07354 General Topology +1612.07355 Solar and Stellar Astrophysics +1612.07356 Superconductivity +1612.07357 Complex Variables +1612.07358 Accelerator Physics +1612.07359 +1612.07360 Computer Vision and Pattern Recognition +1612.07361 Fluid Dynamics +1612.07363 Solar and Stellar Astrophysics +1612.07365 Social and Information Networks +1612.07366 +1612.07367 Optimization and Control +1612.07369 Accelerator Physics +1612.07370 Theory +1612.07371 Analysis of PDEs +1612.07372 Complex Variables +1612.07374 Learning +1612.07375 Optics +1612.07376 Earth and Planetary Astrophysics +1612.07377 Phenomenology +1612.07378 Algebraic Geometry +1612.07379 Computer Vision and Pattern Recognition +1612.07380 Lattice +1612.07381 Astrophysics of Galaxies +1612.07384 Complex Variables +1612.07385 Combinatorics +1612.07387 +1612.07388 Phenomenology +1612.07390 +1612.07391 Combinatorics +1612.07394 Information Theory +1612.07395 +1612.07396 Mesoscale and Nanoscale Physics +1612.07399 Solar and Stellar Astrophysics +1612.07400 Logic in Computer Science +1612.07402 Dynamical Systems +1612.07403 Computer Vision and Pattern Recognition +1612.07404 Databases +1612.07405 Computational Geometry +1612.07406 +1612.07408 Statistics Theory +1612.07409 Fluid Dynamics +1612.07410 Mesoscale and Nanoscale Physics +1612.07411 Computation and Language +1612.07412 +1612.07413 Information Theory +1612.07414 Algebraic Geometry +1612.07415 Phenomenology +1612.07417 Information Theory +1612.07418 High Energy Astrophysical Phenomena +1612.07419 +1612.07420 Analysis of PDEs +1612.07423 Representation Theory +1612.07424 +1612.07425 Populations and Evolution +1612.07426 Instrumentation and Detectors +1612.07427 +1612.07428 Optics +1612.07430 Subcellular Processes +1612.07432 Algebraic Geometry +1612.07435 Optimization and Control +1612.07436 Optimization and Control +1612.07439 Applications +1612.07441 Plasma Physics +1612.07442 Soft Condensed Matter +1612.07443 Soft Condensed Matter +1612.07444 Materials Science +1612.07445 Complex Variables +1612.07446 Complex Variables +1612.07447 Category Theory +1612.07451 Experiment +1612.07453 Computer Vision and Pattern Recognition +1612.07454 Learning +1612.07455 +1612.07456 Materials Science +1612.07457 Phenomenology +1612.07458 Functional Analysis +1612.07459 High Energy Astrophysical Phenomena +1612.07461 Algebraic Topology +1612.07462 Combinatorics +1612.07463 Methodology +1612.07465 Optics +1612.07466 Data Analysis, Statistics and Probability +1612.07467 Materials Science +1612.07469 Atomic Physics +1612.07470 Computational Physics +1612.07471 Computation +1612.07472 Quantum Algebra +1612.07473 Algebraic Geometry +1612.07474 Atmospheric and Oceanic Physics +1612.07475 Data Structures and Algorithms +1612.07476 Phenomenology +1612.07477 Lattice +1612.07478 Probability +1612.07479 Phenomenology +1612.07480 Superconductivity +1612.07481 Probability +1612.07483 +1612.07484 +1612.07487 Social and Information Networks +1612.07488 Differential Geometry +1612.07491 Computational Complexity +1612.07493 Data Structures and Algorithms +1612.07496 +1612.07497 Methodology +1612.07498 Computation +1612.07499 +1612.07500 +1612.07501 Numerical Analysis +1612.07503 Solar and Stellar Astrophysics +1612.07504 Materials Science +1612.07506 +1612.07507 +1612.07509 Phenomenology +1612.07510 Quantum Gases +1612.07511 Mesoscale and Nanoscale Physics +1612.07512 Machine Learning +1612.07514 Databases +1612.07516 Learning +1612.07517 Mesoscale and Nanoscale Physics +1612.07518 Materials Science +1612.07519 Probability +1612.07520 Accelerator Physics +1612.07522 Computational Physics +1612.07523 Sound +1612.07524 Astrophysics of Galaxies +1612.07529 Optics +1612.07530 Classical Analysis and ODEs +1612.07532 Numerical Analysis +1612.07533 Analysis of PDEs +1612.07534 Classical Physics +1612.07535 Analysis of PDEs +1612.07536 Instrumentation and Methods for Astrophysics +1612.07537 Geometric Topology +1612.07538 Combinatorics +1612.07539 Statistical Mechanics +1612.07540 Combinatorics +1612.07542 Other Statistics +1612.07543 Economics +1612.07546 Strongly Correlated Electrons +1612.07548 Artificial Intelligence +1612.07549 Instrumentation and Methods for Astrophysics +1612.07550 Numerical Analysis +1612.07553 Numerical Analysis +1612.07554 Functional Analysis +1612.07555 Artificial Intelligence +1612.07556 Materials Science +1612.07558 Quantum Gases +1612.07559 +1612.07560 Logic +1612.07561 Methodology +1612.07563 Numerical Analysis +1612.07564 Earth and Planetary Astrophysics +1612.07567 +1612.07568 Systems and Control +1612.07569 Algebraic Geometry +1612.07570 +1612.07571 Strongly Correlated Electrons +1612.07572 Instrumentation and Methods for Astrophysics +1612.07573 +1612.07579 Analysis of PDEs +1612.07580 Analysis of PDEs +1612.07581 Mesoscale and Nanoscale Physics +1612.07582 Analysis of PDEs +1612.07583 Statistics Theory +1612.07584 +1612.07585 Mesoscale and Nanoscale Physics +1612.07586 Cryptography and Security +1612.07587 Instrumentation and Methods for Astrophysics +1612.07588 K-Theory and Homology +1612.07589 Artificial Intelligence +1612.07590 Theory +1612.07591 Combinatorics +1612.07592 Plasma Physics +1612.07595 Solar and Stellar Astrophysics +1612.07596 Differential Geometry +1612.07598 Astrophysics of Galaxies +1612.07600 Computation and Language +1612.07601 Logic in Computer Science +1612.07603 Neural and Evolutionary Computing +1612.07606 Commutative Algebra +1612.07607 +1612.07608 Computers and Society +1612.07609 Strongly Correlated Electrons +1612.07611 Statistical Mechanics +1612.07613 Mesoscale and Nanoscale Physics +1612.07614 Mesoscale and Nanoscale Physics +1612.07615 +1612.07616 +1612.07617 Pattern Formation and Solitons +1612.07618 Mathematical Finance +1612.07619 Numerical Analysis +1612.07621 Solar and Stellar Astrophysics +1612.07623 Metric Geometry +1612.07624 Mesoscale and Nanoscale Physics +1612.07627 +1612.07628 Phenomenology +1612.07631 Instrumentation and Detectors +1612.07632 Number Theory +1612.07633 Superconductivity +1612.07634 Lattice +1612.07635 Probability +1612.07636 Digital Libraries +1612.07637 Theory +1612.07638 Commutative Algebra +1612.07639 Theory +1612.07640 Learning +1612.07641 Combinatorics +1612.07642 History and Philosophy of Physics +1612.07643 Mesoscale and Nanoscale Physics +1612.07644 +1612.07645 Biological Physics +1612.07646 +1612.07647 Probability +1612.07650 Cosmology and Nongalactic Astrophysics +1612.07651 Phenomenology +1612.07653 Dynamical Systems +1612.07654 Solar and Stellar Astrophysics +1612.07655 Geophysics +1612.07656 Phenomenology +1612.07657 Combinatorics +1612.07658 +1612.07659 Machine Learning +1612.07660 Phenomenology +1612.07661 Optimization and Control +1612.07662 Experiment +1612.07663 Algebraic Geometry +1612.07664 +1612.07665 Differential Geometry +1612.07669 +1612.07670 Statistics Theory +1612.07671 Optimization and Control +1612.07672 Theory +1612.07674 +1612.07675 +1612.07676 Classical Physics +1612.07677 Human-Computer Interaction +1612.07679 Representation Theory +1612.07680 Numerical Analysis +1612.07681 Phenomenology +1612.07682 Logic in Computer Science +1612.07685 Cryptography and Security +1612.07686 +1612.07688 Computers and Society +1612.07690 Quantum Gases +1612.07692 +1612.07694 Soft Condensed Matter +1612.07695 Computer Vision and Pattern Recognition +1612.07697 Computer Vision and Pattern Recognition +1612.07698 High Energy Astrophysical Phenomena +1612.07699 Accelerator Physics +1612.07700 +1612.07701 Theory +1612.07702 Distributed, Parallel, and Cluster Computing +1612.07704 Statistics Theory +1612.07707 Analysis of PDEs +1612.07708 Emerging Technologies +1612.07709 Fluid Dynamics +1612.07710 Data Structures and Algorithms +1612.07714 Human-Computer Interaction +1612.07716 Quantum Gases +1612.07717 Numerical Analysis +1612.07718 +1612.07721 Lattice +1612.07722 Analysis of PDEs +1612.07724 Astrophysics of Galaxies +1612.07726 Phenomenology +1612.07727 Analysis of PDEs +1612.07731 Differential Geometry +1612.07732 Rings and Algebras +1612.07733 Lattice +1612.07734 +1612.07735 +1612.07736 Cryptography and Security +1612.07737 Lattice +1612.07738 Cosmology and Nongalactic Astrophysics +1612.07739 Representation Theory +1612.07741 Phenomenology +1612.07742 Trading and Market Microstructure +1612.07743 Phenomenology +1612.07744 Probability +1612.07745 Probability +1612.07746 Quantum Gases +1612.07747 +1612.07748 Rings and Algebras +1612.07749 +1612.07750 Phenomenology +1612.07752 Lattice +1612.07753 Differential Geometry +1612.07754 +1612.07756 +1612.07757 Phenomenology +1612.07758 Phenomenology +1612.07759 Optics +1612.07761 Information Theory +1612.07762 Algebraic Topology +1612.07765 +1612.07767 Computer Vision and Pattern Recognition +1612.07768 Computational Complexity +1612.07769 Theory +1612.07770 Logic in Computer Science +1612.07773 Information Theory +1612.07775 Theory +1612.07777 Accelerator Physics +1612.07778 Human-Computer Interaction +1612.07780 Probability +1612.07781 Astrophysics of Galaxies +1612.07785 Theory +1612.07786 Algebraic Geometry +1612.07788 Earth and Planetary Astrophysics +1612.07790 Phenomenology +1612.07791 Algebraic Topology +1612.07792 Strongly Correlated Electrons +1612.07793 Materials Science +1612.07794 Phenomenology +1612.07795 Optics +1612.07796 Computer Vision and Pattern Recognition +1612.07797 Combinatorics +1612.07798 Theory +1612.07799 Strongly Correlated Electrons +1612.07800 Theory +cs/0604055 Data Structures and Algorithms +cs/0703093 Computational Geometry +math/0201048 Functional Analysis +math/0203275 Functional Analysis +math/0306314 Functional Analysis +math/0403278 Functional Analysis +math/0404192 Functional Analysis +math/0404500 Functional Analysis +math/0404502 Functional Analysis +math/0405566 Functional Analysis +math/0410001 Functional Analysis +math/0502299 Functional Analysis +math/0503442 Functional Analysis +math/0601112 Functional Analysis +math/0602559 Numerical Analysis +math/0608795 Differential Geometry +math/0611343 Numerical Analysis +math/0703503 Probability +0805.2306 Commutative Algebra +0807.2963 Algebraic Geometry +0808.2657 Commutative Algebra +0901.1625 +0902.1143 Algebraic Geometry +0906.1105 Commutative Algebra +0907.1232 Commutative Algebra +0911.3539 Number Theory +1001.5287 Soft Condensed Matter +1001.5289 Physics and Society +1001.5292 Cell Behavior +1001.5295 Soft Condensed Matter +1001.5468 Soft Condensed Matter +1003.1659 Algebraic Geometry +1005.1248 Geometric Topology +1005.1984 Algebraic Geometry +1010.1205 Statistical Mechanics +1010.1883 Algebraic Geometry +1012.1032 Geometric Topology +1101.1442 Data Analysis, Statistics and Probability +1101.4379 Commutative Algebra +1106.4029 Commutative Algebra +1107.2984 Information Theory +1107.3359 Commutative Algebra +1111.2847 +1111.5837 Probability +1112.4956 Commutative Algebra +1201.4734 Theory +1202.6345 Physics and Society +1204.1055 Theory +1207.1883 Algebraic Geometry +1207.2364 K-Theory and Homology +1208.5141 Analysis of PDEs +1209.2078 Functional Analysis +1210.0444 Probability +1210.2214 Commutative Algebra +1211.0319 Analysis of PDEs +1211.0898 Optimization and Control +1211.6791 Geometric Topology +1212.6826 Quantum Gases +1301.1973 Theory +1304.3333 Number Theory +1304.7206 Dynamical Systems +1305.0365 Algebraic Geometry +1305.1551 Soft Condensed Matter +1305.3235 Statistics Theory +1305.6749 Quantum Gases +1306.3773 Category Theory +1306.5806 Statistics Theory +1307.6412 Analysis of PDEs +1308.4915 Optimization and Control +1310.6763 Theory +1311.3161 +1311.4269 Materials Science +1312.4291 Instrumentation and Methods for Astrophysics +1312.7794 Information Theory +1312.7845 Numerical Analysis +1401.7667 Phenomenology +1402.0240 Data Structures and Algorithms +1402.1292 Algebraic Geometry +1403.1037 Pattern Formation and Solitons +1403.3181 Probability +1403.3630 Number Theory +1403.3926 Dynamical Systems +1403.4185 Quantum Gases +1403.4800 +1403.5318 Pattern Formation and Solitons +1403.5959 Pattern Formation and Solitons +1404.3780 Category Theory +1404.4078 Information Theory +1404.7713 Classical Analysis and ODEs +1405.4560 Logic in Computer Science +1405.4944 Differential Geometry +1406.3009 +1406.5364 Theory +1406.6304 Networking and Internet Architecture +1406.7471 Materials Science +1407.4005 +1407.4420 Computer Vision and Pattern Recognition +1407.5246 Analysis of PDEs +1408.1556 +1408.4531 +1408.4854 Theory +1409.0993 Number Theory +1409.5191 Computation +1409.6448 Computer Vision and Pattern Recognition +1410.3128 General Finance +1410.3585 Probability +1410.3811 Physics and Society +1410.3851 General Finance +1410.3860 General Finance +1410.3865 General Finance +1410.4866 General Finance +1410.5484 Geophysics +1410.6467 Algebraic Geometry +1410.6658 +1411.0624 Commutative Algebra +1411.0806 Statistical Mechanics +1411.2652 Geometric Topology +1411.3267 Dynamical Systems +1411.4136 +1412.0325 Discrete Mathematics +1412.2647 Probability +1412.3036 Plasma Physics +1412.3371 Analysis of PDEs +1412.5192 +1412.7204 Algebraic Geometry +1501.00707 +1501.02848 Earth and Planetary Astrophysics +1501.06661 Optimization and Control +1501.06821 Dynamical Systems +1502.01339 Astrophysics of Galaxies +1502.03280 Quantum Algebra +1502.03813 Applications +1502.04386 Algebraic Geometry +1502.04460 Number Theory +1502.04462 Number Theory +1502.06248 Analysis of PDEs +1502.06259 Optimization and Control +1503.01768 Strongly Correlated Electrons +1503.02285 Combinatorics +1503.04393 Representation Theory +1503.06705 Analysis of PDEs +1503.07771 Theory +1503.07804 Popular Physics +1503.08586 Risk Management +1504.00302 Computation +1504.01511 Cell Behavior +1504.01785 General Topology +1504.02045 Analysis of PDEs +1504.06390 +1504.06595 Optimization and Control +1504.06745 Statistics Theory +1505.00264 Phenomenology +1505.00900 Pattern Formation and Solitons +1505.02111 Information Theory +1505.04279 Materials Science +1505.04676 Analysis of PDEs +1505.04770 Superconductivity +1505.04957 Theory +1505.06143 Analysis of PDEs +1505.06463 Analysis of PDEs +1506.00626 Optics +1506.02178 Computer Vision and Pattern Recognition +1506.03840 Theory +1506.04459 Combinatorics +1506.05844 +1506.07378 +1506.08861 Phenomenology +1506.08983 Strongly Correlated Electrons +1507.00265 Mesoscale and Nanoscale Physics +1507.01675 Strongly Correlated Electrons +1507.01702 Phenomenology +1507.01815 Theory +1507.03272 Complex Variables +1507.04167 Economics +1507.05065 +1507.05246 Strongly Correlated Electrons +1507.06040 Analysis of PDEs +1507.06052 +1507.06281 Statistical Mechanics +1507.06970 Machine Learning +1507.07190 +1507.08553 Theory +1507.08765 Phenomenology +1508.00218 High Energy Astrophysical Phenomena +1508.00740 +1508.01391 Differential Geometry +1508.01561 Dynamical Systems +1508.01742 Networking and Internet Architecture +1508.02464 Number Theory +1508.04758 Numerical Analysis +1508.05167 Superconductivity +1508.05417 Emerging Technologies +1508.05542 Networking and Internet Architecture +1508.05708 Instrumentation and Detectors +1508.06623 +1508.07570 +1508.07971 Statistical Mechanics +1509.00473 Phenomenology +1509.01058 Statistics Theory +1509.02979 Probability +1509.04112 Logic +1509.04614 Theory +1509.06720 Computer Vision and Pattern Recognition +1509.06965 Functional Analysis +1509.07867 Phenomenology +1509.08766 Analysis of PDEs +1510.00646 Applications +1510.00934 Computation +1510.02732 Materials Science +1510.02740 Group Theory +1510.02744 Quantum Gases +1510.03206 Emerging Technologies +1510.04415 Superconductivity +1510.04725 Mesoscale and Nanoscale Physics +1510.05012 Number Theory +1510.05694 Mesoscale and Nanoscale Physics +1510.06578 Information Theory +1510.06887 Superconductivity +1510.06918 +1510.08283 Analysis of PDEs +1510.08688 +1510.08889 +1510.09020 Theory +1510.09070 Physics Education +1511.00806 Phenomenology +1511.02693 High Energy Astrophysical Phenomena +1511.03336 Mesoscale and Nanoscale Physics +1511.04108 Computation and Language +1511.04610 Representation Theory +1511.05582 High Energy Astrophysical Phenomena +1511.06515 Strongly Correlated Electrons +1511.06721 Representation Theory +1511.06933 Mesoscale and Nanoscale Physics +1511.07387 Materials Science +1511.08050 +1512.01526 Analysis of PDEs +1512.01593 Fluid Dynamics +1512.01980 Cryptography and Security +1512.02005 Networking and Internet Architecture +1512.02444 Materials Science +1512.03707 Number Theory +1512.05962 High Energy Astrophysical Phenomena +1512.06619 Cosmology and Nongalactic Astrophysics +1512.07965 Mesoscale and Nanoscale Physics +1512.08477 +1512.08536 +1512.08684 Mesoscale and Nanoscale Physics +1512.08783 Mesoscale and Nanoscale Physics +1512.08864 Phenomenology +1601.00072 Distributed, Parallel, and Cluster Computing +1601.00320 +1601.00988 Materials Science +1601.01198 Strongly Correlated Electrons +1601.01376 Information Theory +1601.02078 Dynamical Systems +1601.03819 Experiment +1601.05270 Databases +1601.06404 Combinatorics +1601.06860 Computational Physics +1601.07741 Physics and Society +1601.07948 Superconductivity +1601.08015 +1602.00158 Methodology +1602.00759 Solar and Stellar Astrophysics +1602.02313 Materials Science +1602.02507 Quantum Gases +1602.02875 +1602.03200 Populations and Evolution +1602.03941 Group Theory +1602.04232 Populations and Evolution +1602.05089 Superconductivity +1602.06463 Superconductivity +1602.06929 Learning +1602.07163 Combinatorics +1602.07325 Materials Science +1602.07501 Combinatorics +1603.00968 Computation and Language +1603.01004 +1603.01381 High Energy Astrophysical Phenomena +1603.02748 +1603.03183 Computer Vision and Pattern Recognition +1603.03381 Computer Vision and Pattern Recognition +1603.04173 Neurons and Cognition +1603.04408 Computer Vision and Pattern Recognition +1603.04490 Differential Geometry +1603.06083 Multimedia +1603.06112 +1603.06181 +1603.06290 Combinatorics +1603.06300 Dynamical Systems +1603.06552 Combinatorics +1603.06835 Computational Physics +1603.06887 Combinatorics +1603.07318 Mesoscale and Nanoscale Physics +1603.07324 Cosmology and Nongalactic Astrophysics +1603.07377 Statistics Theory +1603.07478 Probability +1603.07503 Mesoscale and Nanoscale Physics +1603.07735 +1603.07999 Subcellular Processes +1603.08012 +1603.08013 Materials Science +1603.08014 Networking and Internet Architecture +1603.08015 Networking and Internet Architecture +1603.08018 Networking and Internet Architecture +1603.08019 Networking and Internet Architecture +1603.08020 Networking and Internet Architecture +1603.08024 Numerical Analysis +1603.08026 Networking and Internet Architecture +1603.08028 Learning +1603.08029 Learning +1603.08030 Materials Science +1603.08034 Numerical Analysis +1603.08035 Machine Learning +1603.08037 Learning +1603.08038 +1603.08039 Computer Vision and Pattern Recognition +1603.08041 Chemical Physics +1603.08044 Representation Theory +1603.08045 Classical Analysis and ODEs +1603.08047 Robotics +1603.08048 Computation and Language +1603.08050 Information Theory +1603.08051 Optics +1603.08055 Classical Analysis and ODEs +1603.08059 Programming Languages +1603.08062 Networking and Internet Architecture +1603.08067 Computer Vision and Pattern Recognition +1603.08070 Computer Vision and Pattern Recognition +1603.08073 Combinatorics +1603.08076 +1603.08077 Geometric Topology +1603.08078 Information Theory +1603.08080 Information Theory +1603.08082 Functional Analysis +1603.08083 Phenomenology +1603.08085 Superconductivity +1603.08086 +1603.08090 Materials Science +1603.08092 Computer Vision and Pattern Recognition +1603.08094 Optimization and Control +1603.08095 Computer Vision and Pattern Recognition +1603.08097 Number Theory +1603.08098 Group Theory +1603.08099 Optimization and Control +1603.08102 Distributed, Parallel, and Cluster Computing +1603.08103 Human-Computer Interaction +1603.08105 Computer Vision and Pattern Recognition +1603.08106 Information Theory +1603.08108 Computer Vision and Pattern Recognition +1603.08111 Information Theory +1603.08112 +1603.08115 Functional Analysis +1603.08116 Computational Geometry +1603.08119 Networking and Internet Architecture +1603.08121 Quantum Algebra +1603.08124 Computer Vision and Pattern Recognition +1603.08125 Probability +1603.08126 Analysis of PDEs +1603.08129 Systems and Control +1603.08132 Information Theory +1603.08135 Numerical Analysis +1603.08137 Optimization and Control +1603.08138 Dynamical Systems +1603.08139 +1603.08141 Earth and Planetary Astrophysics +1603.08142 Economics +1603.08146 Neural and Evolutionary Computing +1603.08151 Data Structures and Algorithms +1603.08153 Combinatorics +1603.08154 Geometric Topology +1603.08155 Computer Vision and Pattern Recognition +1603.08156 Classical Analysis and ODEs +1603.08163 Machine Learning +1603.08164 Materials Science +1603.08169 Portfolio Management +1603.08171 Classical Analysis and ODEs +1603.08174 Social and Information Networks +1603.08175 Combinatorics +1603.08177 Computer Science and Game Theory +1603.08181 Category Theory +1603.08183 +1603.08184 Group Theory +1603.08188 Information Theory +1603.08189 Information Theory +1603.08191 Probability +1603.08192 Functional Analysis +1603.08193 Cosmology and Nongalactic Astrophysics +1603.08194 Classical Analysis and ODEs +1603.08197 Optics +1603.08198 Combinatorics +1603.08200 Instrumentation and Methods for Astrophysics +1603.08201 Metric Geometry +1603.08203 Materials Science +1603.08204 Logic +1603.08205 Analysis of PDEs +1603.08206 Logic in Computer Science +1603.08209 Number Theory +1603.08210 Analysis of PDEs +1603.08211 Phenomenology +1603.08212 Computer Vision and Pattern Recognition +1603.08213 Logic in Computer Science +1603.08215 Soft Condensed Matter +1603.08216 Computational Finance +1603.08219 +1603.08220 Logic +1603.08223 Representation Theory +1603.08225 Dynamical Systems +1603.08227 Number Theory +1603.08230 Number Theory +1603.08231 Optimization and Control +1603.08234 +1603.08239 Materials Science +1603.08240 Computer Vision and Pattern Recognition +1603.08241 +1603.08242 Statistics Theory +1603.08245 Mathematical Finance +1603.08248 Materials Science +1603.08249 Logic +1603.08252 Social and Information Networks +1603.08255 Combinatorics +1603.08257 Astrophysics of Galaxies +1603.08260 Computational Engineering, Finance, and Science +1603.08261 Social and Information Networks +1603.08264 Logic in Computer Science +1603.08268 Classical Physics +1603.08271 Analysis of PDEs +1603.08273 Physics and Society +1603.08279 Probability +1603.08280 Materials Science +1603.08282 +1603.08283 Combinatorics +1603.08284 Geometric Topology +1603.08285 Materials Science +1603.08286 Materials Science +1603.08287 Mesoscale and Nanoscale Physics +1603.08289 Mathematical Finance +1603.08290 Numerical Analysis +1603.08292 Phenomenology +1603.08293 Learning +1603.08295 Statistical Mechanics +1603.08296 Learning +1603.08297 Computers and Society +1603.08300 Cryptography and Security +1603.08304 Cryptography and Security +1603.08305 Cryptography and Security +1603.08307 Cryptography and Security +1603.08309 Cryptography and Security +1603.08311 Economics +1603.08312 Cryptography and Security +1603.08314 Cryptography and Security +1603.08315 Statistics Theory +1603.08316 Number Theory +1603.08320 Materials Science +1603.08321 Computer Vision and Pattern Recognition +1603.08322 Materials Science +1603.08323 Computer Vision and Pattern Recognition +1603.08324 Differential Geometry +1603.08328 Computer Vision and Pattern Recognition +1603.08331 Geometric Topology +1603.08332 Number Theory +1603.08334 History and Philosophy of Physics +1603.08336 Systems and Control +1603.08341 Logic +1603.08342 Learning +1603.08346 Systems and Control +1603.08347 Functional Analysis +1603.08351 Logic +1603.08355 Systems and Control +1603.08357 Computational Physics +1603.08359 Networking and Internet Architecture +1603.08362 Logic +1603.08365 Materials Science +1603.08369 +1603.08371 Software Engineering +1603.08372 Instrumentation and Methods for Astrophysics +1603.08373 Algebraic Geometry +1603.08375 +1603.08379 Cryptography and Security +1603.08383 General Finance +1603.08384 Solar and Stellar Astrophysics +1603.08388 Statistics Theory +1603.08390 Databases +1603.08393 Distributed, Parallel, and Cluster Computing +1603.08397 Tissues and Organs +1603.08398 Combinatorics +1603.08400 Combinatorics +1603.08401 Dynamical Systems +1603.08403 Materials Science +1603.08404 Rings and Algebras +1603.08406 General Physics +1603.08410 Probability +1603.08412 Metric Geometry +1603.08414 Rings and Algebras +1603.08415 Differential Geometry +1603.08417 History and Overview +1603.08418 Geometric Topology +1603.08419 Classical Analysis and ODEs +1603.08420 Number Theory +1603.08421 Group Theory +1603.08424 Algebraic Geometry +1603.08425 General Physics +1603.08426 Rings and Algebras +1603.08427 General Mathematics +1603.08428 Classical Analysis and ODEs +1603.08429 Theory +1603.08430 Computational Complexity +1603.08432 Neurons and Cognition +1603.08433 Group Theory +1603.08434 Experiment +1603.08438 +1603.08439 +1603.08444 Differential Geometry +1603.08446 Rings and Algebras +1603.08450 Geometric Topology +1603.08453 Number Theory +1603.08454 Hardware Architecture +1603.08456 General Mathematics +1603.08460 Statistics Theory +1603.08461 Networking and Internet Architecture +1603.08462 Networking and Internet Architecture +1603.08467 Functional Analysis +1603.08470 Phenomenology +1603.08471 Strongly Correlated Electrons +1603.08472 Algebraic Topology +1603.08474 Computation and Language +1603.08478 Theory +1603.08481 Optics +1603.08482 Machine Learning +1603.08485 Computational Geometry +1603.08486 Computer Vision and Pattern Recognition +1603.08489 Accelerator Physics +1603.08490 Combinatorics +1603.08492 Optics +1603.08493 Number Theory +1603.08494 Spectral Theory +1603.08497 Computer Vision and Pattern Recognition +1603.08498 Rings and Algebras +1603.08499 History and Overview +1603.08500 Combinatorics +1603.08501 General Mathematics +1603.08502 Rings and Algebras +1603.08505 Quantum Gases +1603.08507 Computer Vision and Pattern Recognition +hep-th/0011259 Theory +math/0412303 Number Theory +math/0610441 Commutative Algebra +math/0610649 Commutative Algebra +math/0611284 Algebraic Geometry +math/0702041 Commutative Algebra +math/0702283 Commutative Algebra +math/0702508 Commutative Algebra +math/0703757 Commutative Algebra +1103.1560 Dynamical Systems +1105.4447 Strongly Correlated Electrons +1107.3668 Algebraic Geometry +1206.2529 Algebraic Geometry +1206.2535 Algebraic Geometry +1207.2423 Dynamical Systems +1209.1285 Differential Geometry +1209.5692 Probability +1210.2157 Dynamical Systems +1211.2627 Computational Complexity +1212.0347 Combinatorics +1212.2059 Phenomenology +1303.0727 Probability +1303.5606 Materials Science +1304.7419 Materials Science +1306.3826 Classical Analysis and ODEs +1308.2871 Dynamical Systems +1308.6556 Algebraic Geometry +1310.4831 +1311.0316 Probability +1311.2758 Dynamical Systems +1312.1965 Geometric Topology +1402.0030 Learning +1403.0604 Chemical Physics +1403.7287 +1404.0750 +1405.1297 Machine Learning +1407.6329 Combinatorics +1409.3355 Metric Geometry +1409.4844 General Topology +1409.6753 Theory +1501.03332 +1502.00552 Methodology +1502.00661 Adaptation and Self-Organizing Systems +1503.00527 Geometric Topology +1503.02618 +1503.04213 +1503.04936 Experiment +1503.06034 Algebraic Geometry +1504.03767 Optics +1504.05169 Phenomenology +1504.05843 Computer Vision and Pattern Recognition +1504.06271 Phenomenology +1505.00189 Instrumentation and Detectors +1505.02023 Methodology +1505.03462 Group Theory +1505.06044 Theory +1506.01556 Optimization and Control +1507.00727 Theory +1507.02811 Commutative Algebra +1507.02991 Statistical Mechanics +1508.00437 Analysis of PDEs +1508.00595 Phenomenology +1508.01757 +1508.02779 +1508.05890 Numerical Analysis +1508.06480 Materials Science +1508.07439 +1508.07747 +1509.03281 Machine Learning +1509.03552 Theory +1509.03783 +1509.05349 Mesoscale and Nanoscale Physics +1510.00393 Astrophysics of Galaxies +1510.02125 Computation and Language +1510.03562 +1510.05898 +1510.06708 Classical Physics +1510.06722 +1510.07709 +1510.07924 Complex Variables +1511.01431 High Energy Astrophysical Phenomena +1511.03321 +1511.04613 Materials Science +1511.04899 Superconductivity +1511.06482 Molecular Networks +1511.06709 Computation and Language +1511.08300 Complex Variables +1512.00597 Systems and Control +1512.00956 Quantitative Methods +1512.03259 Pricing of Securities +1512.04011 Learning +1512.04257 High Energy Astrophysical Phenomena +1512.04454 Statistical Mechanics +1512.04526 High Energy Astrophysical Phenomena +1512.06204 Representation Theory +1512.06272 Combinatorics +1512.07210 +1512.08198 +1512.09083 Mesoscale and Nanoscale Physics +1601.00185 +1601.00628 Quantum Gases +1601.02479 Representation Theory +1601.04077 Materials Science +1601.04936 Chaotic Dynamics +1601.06565 Experiment +1601.06918 Quantum Gases +1601.07441 Differential Geometry +1602.00968 Superconductivity +1602.01366 Databases +1602.03577 Chemical Physics +1602.04563 Materials Science +1602.04781 Computational Complexity +1602.05205 Learning +1602.06410 Machine Learning +1602.07576 Learning +1602.07905 Learning +1602.08269 Statistical Mechanics +1602.08287 High Energy Astrophysical Phenomena +1602.09013 Machine Learning +1603.00055 Materials Science +1603.00263 Instrumentation and Methods for Astrophysics +1603.00524 High Energy Astrophysical Phenomena +1603.01279 Mesoscale and Nanoscale Physics +1603.02463 Disordered Systems and Neural Networks +1603.04453 Superconductivity +1603.05984 Astrophysics of Galaxies +1603.09260 Learning +1603.09282 Solar and Stellar Astrophysics +1604.00943 Mesoscale and Nanoscale Physics +1604.04393 Computer Vision and Pattern Recognition +1604.04718 +1604.05804 Computational Physics +1604.07089 Number Theory +1604.08497 Materials Science +1605.00482 Computation and Language +1605.00611 Phenomenology +1605.02864 Quantum Gases +1605.03260 Theory +1605.03539 +1605.04507 Dynamical Systems +1605.04521 Computational Physics +1605.04650 Theory +1605.05257 Spectral Theory +1605.06342 Fluid Dynamics +1605.06528 Theory +1605.07493 Optimization and Control +1605.07673 Other Computer Science +1605.08034 Information Theory +1605.08251 Earth and Planetary Astrophysics +1605.08440 +1605.08607 Phenomenology +1605.08832 +1605.09240 Differential Geometry +1605.09252 Algebraic Topology +1605.09317 Chemical Physics +1605.09508 Number Theory +1606.00008 Astrophysics of Galaxies +1606.00105 +1606.00131 Dynamical Systems +1606.00144 Neurons and Cognition +1606.00224 Statistical Mechanics +1606.00277 Geometric Topology +1606.00368 Computational Physics +1606.00482 Number Theory +1606.00513 Theory +1606.00650 Mesoscale and Nanoscale Physics +1606.00700 Classical Analysis and ODEs +1606.00842 Cosmology and Nongalactic Astrophysics +1606.00847 +1606.00856 Machine Learning +1606.00857 Superconductivity +1606.00858 Probability +1606.00862 Statistical Mechanics +1606.00864 Other Computer Science +1606.00867 Astrophysics of Galaxies +1606.00868 Learning +1606.00870 Combinatorics +1606.00874 Computers and Society +1606.00875 Computers and Society +1606.00876 Computers and Society +1606.00877 Computers and Society +1606.00878 Computers and Society +1606.00880 Computers and Society +1606.00881 Computers and Society +1606.00882 Computers and Society +1606.00883 Computers and Society +1606.00884 Computers and Society +1606.00885 Computers and Society +1606.00886 Computers and Society +1606.00887 Computers and Society +1606.00888 Computers and Society +1606.00889 Computers and Society +1606.00890 Computers and Society +1606.00891 Computers and Society +1606.00892 Computers and Society +1606.00893 Computers and Society +1606.00894 Computers and Society +1606.00898 Number Theory +1606.00900 Logic +1606.00907 Computational Physics +1606.00908 Computer Science and Game Theory +1606.00913 Mesoscale and Nanoscale Physics +1606.00917 Learning +1606.00927 Optimization and Control +1606.00930 Learning +1606.00933 Information Theory +1606.00934 Plasma Physics +1606.00935 Commutative Algebra +1606.00936 Strongly Correlated Electrons +1606.00937 Strongly Correlated Electrons +1606.00938 Representation Theory +1606.00939 Atomic Physics +1606.00941 Systems and Control +1606.00943 Representation Theory +1606.00944 Statistical Mechanics +1606.00946 Phenomenology +1606.00947 Phenomenology +1606.00948 Combinatorics +1606.00950 Social and Information Networks +1606.00952 Information Theory +1606.00953 +1606.00954 Optics +1606.00956 +1606.00957 Optimization and Control +1606.00958 Representation Theory +1606.00959 Analysis of PDEs +1606.00961 Representation Theory +1606.00962 +1606.00964 Plasma Physics +1606.00968 Learning +1606.00972 Machine Learning +1606.00974 Discrete Mathematics +1606.00976 Statistics Theory +1606.00978 +1606.00979 Information Retrieval +1606.00981 Other Computer Science +1606.00983 Statistics Theory +1606.00984 Statistics Theory +1606.00985 Learning +1606.00989 Materials Science +1606.00993 Instrumentation and Detectors +1606.00994 Networking and Internet Architecture +1606.00995 Numerical Analysis +1606.00996 Data Structures and Algorithms +1606.00997 Mesoscale and Nanoscale Physics +1606.01001 Computer Vision and Pattern Recognition +1606.01003 Solar and Stellar Astrophysics +1606.01004 Statistics Theory +1606.01005 Optimization and Control +1606.01009 Methodology +1606.01010 Cryptography and Security +1606.01012 Superconductivity +1606.01013 General Topology +1606.01014 Logic in Computer Science +1606.01015 Artificial Intelligence +1606.01017 Neurons and Cognition +1606.01019 Functional Analysis +1606.01020 Numerical Analysis +1606.01023 Analysis of PDEs +1606.01024 Functional Analysis +1606.01025 Statistics Theory +1606.01026 Combinatorics +1606.01028 Optimization and Control +1606.01029 Number Theory +1606.01035 Analysis of PDEs +1606.01036 Differential Geometry +1606.01037 Hardware Architecture +1606.01038 Networking and Internet Architecture +1606.01042 Learning +1606.01045 Cryptography and Security +1606.01048 Numerical Analysis +1606.01049 Astrophysics of Galaxies +1606.01051 Materials Science +1606.01053 Rings and Algebras +1606.01054 Analysis of PDEs +1606.01055 Materials Science +1606.01056 Numerical Analysis +1606.01057 Optics +1606.01062 Probability +1606.01063 Functional Analysis +1606.01064 Functional Analysis +1606.01066 Solar and Stellar Astrophysics +1606.01067 Quantum Algebra +1606.01071 Functional Analysis +1606.01072 Probability +1606.01073 High Energy Astrophysical Phenomena +1606.01074 Space Physics +1606.01075 Biological Physics +1606.01076 Space Physics +1606.01080 Analysis of PDEs +1606.01081 Programming Languages +1606.01085 Space Physics +1606.01087 Superconductivity +1606.01093 Computer Vision and Pattern Recognition +1606.01095 High Energy Astrophysical Phenomena +1606.01096 Geometric Topology +1606.01099 Disordered Systems and Neural Networks +1606.01100 Computer Vision and Pattern Recognition +1606.01101 +1606.01105 Earth and Planetary Astrophysics +1606.01112 Differential Geometry +1606.01113 Artificial Intelligence +1606.01116 Artificial Intelligence +1606.01117 Statistics Theory +1606.01120 Software Engineering +1606.01129 Differential Geometry +1606.01130 Disordered Systems and Neural Networks +1606.01131 Number Theory +1606.01137 Dynamical Systems +1606.01140 Symbolic Computation +1606.01145 +1606.01147 +1606.01148 Logic in Computer Science +1606.01153 Probability +1606.01155 Mesoscale and Nanoscale Physics +1606.01157 Differential Geometry +1606.01159 Analysis of PDEs +1606.01160 Machine Learning +1606.01161 Computation and Language +1606.01163 Numerical Analysis +1606.01167 Computer Vision and Pattern Recognition +1606.01171 General Mathematics +1606.01172 Computational Complexity +1606.01174 Materials Science +1606.01175 Learning +1606.01176 General Physics +1606.01177 Other Computer Science +1606.01178 Computer Vision and Pattern Recognition +1606.01179 Classical Analysis and ODEs +1606.01180 Optimization and Control +1606.01182 Logic +1606.01183 Other Statistics +1606.01187 Materials Science +1606.01188 Classical Analysis and ODEs +1606.01190 Information Theory +1606.01199 Formal Languages and Automata Theory +1606.01202 Statistical Mechanics +1606.01204 Combinatorics +1606.01205 Algebraic Topology +1606.01208 Physics and Society +1606.01211 Materials Science +1606.01219 Computation and Language +1606.01220 Instrumentation and Detectors +1606.01225 Phenomenology +1606.01227 Dynamical Systems +1606.01228 Lattice +1606.01231 Phenomenology +1606.01232 Probability +1606.01234 Solar and Stellar Astrophysics +1606.01235 Strongly Correlated Electrons +1606.01236 Solar and Stellar Astrophysics +1606.01237 Biological Physics +1606.01239 Neural and Evolutionary Computing +1606.01241 Mesoscale and Nanoscale Physics +0904.4834 Algebraic Geometry +0907.3228 Physics and Society +1007.3576 Representation Theory +1007.4398 Geometric Topology +1010.4298 Number Theory +1012.0012 Data Structures and Algorithms +1103.4957 General Topology +1111.6179 Probability +1112.0792 Rings and Algebras +1112.3160 Probability +1205.4697 Methodology +1205.5456 Plasma Physics +1206.5603 Algebraic Topology +1208.2586 Algebraic Geometry +1208.5170 Combinatorics +1209.0365 +1210.5456 Probability +1210.6958 Methodology +1211.6912 Phenomenology +1212.3362 Mesoscale and Nanoscale Physics +1301.1439 Populations and Evolution +1302.1409 Networking and Internet Architecture +1302.2206 Networking and Internet Architecture +1303.2456 Probability +1305.2620 Differential Geometry +1307.4229 Combinatorics +1307.5492 Phenomenology +1307.5628 Algebraic Geometry +1307.7364 Data Structures and Algorithms +1308.0962 Populations and Evolution +1309.2029 Classical Analysis and ODEs +1310.1632 Instrumentation and Methods for Astrophysics +1310.5162 Dynamical Systems +1310.5607 Earth and Planetary Astrophysics +1310.5924 Differential Geometry +1311.0244 Systems and Control +1312.3215 Metric Geometry +1312.4817 Probability +1312.7442 Multimedia +1402.3188 Probability +1402.7178 Algebraic Topology +1403.3604 Algebraic Geometry +1404.4198 Materials Science +1404.5285 High Energy Astrophysical Phenomena +1404.5887 Combinatorics +1404.6982 Representation Theory +1405.0981 Differential Geometry +1405.2023 Mathematical Finance +1405.7138 General Physics +1406.1103 Fluid Dynamics +1406.6168 Combinatorics +1406.6826 Populations and Evolution +1407.1627 Populations and Evolution +1407.5876 Other Condensed Matter +1407.8484 Probability +1408.0015 High Energy Astrophysical Phenomena +1408.0057 Strongly Correlated Electrons +1408.0527 +1408.1156 Statistics Theory +1408.2183 Materials Science +1408.7062 +1409.0610 Information Theory +1409.1396 Number Theory +1409.1780 Number Theory +1409.3996 Mesoscale and Nanoscale Physics +1409.6801 Phenomenology +1409.8029 Physics and Society +1409.8150 Statistics Theory +1410.5477 Optimization and Control +1410.5841 Quantum Gases +1411.1785 Theory +1411.5294 Algebraic Geometry +1411.6927 Computation +1411.7921 Operator Algebras +1412.0310 Geometric Topology +1412.6292 Numerical Analysis +1412.6671 Cosmology and Nongalactic Astrophysics +1501.00388 Statistical Mechanics +1501.02106 Populations and Evolution +1501.04999 Solar and Stellar Astrophysics +1501.05371 Information Theory +1501.07845 Differential Geometry +1502.00043 Statistics Theory +1502.00204 +1502.00598 Learning +1502.01345 High Energy Astrophysical Phenomena +1502.01654 Commutative Algebra +1502.02416 Algebraic Geometry +1502.02623 Combinatorics +1502.03000 +1502.03403 +1502.04195 Solar and Stellar Astrophysics +1502.04918 Computational Geometry +1502.05424 K-Theory and Homology +1502.05576 Functional Analysis +1502.06995 Astrophysics of Galaxies +1502.07426 High Energy Astrophysical Phenomena +1503.00794 Complex Variables +1503.01707 Databases +1503.01739 Solar and Stellar Astrophysics +1503.03357 Combinatorics +1503.05937 +1504.00969 Phenomenology +1504.01343 Representation Theory +1504.03763 Computational Geometry +1504.04463 Phenomenology +1504.05545 Lattice +1504.05905 Data Structures and Algorithms +1504.06256 +1504.06597 +1504.07170 Earth and Planetary Astrophysics +1504.07194 Astrophysics of Galaxies +1504.07237 Phenomenology +1504.07868 Instrumentation and Detectors +1504.08115 Superconductivity +1505.00204 Combinatorics +1505.00521 Learning +1505.02670 Superconductivity +1505.03146 Quantum Gases +1505.03371 Astrophysics of Galaxies +1505.03433 Combinatorics +1505.03523 Astrophysics of Galaxies +1505.03781 Phenomenology +1505.04764 Probability +1505.04991 Mesoscale and Nanoscale Physics +1505.05503 Cosmology and Nongalactic Astrophysics +1505.06122 Materials Science +1505.06447 Superconductivity +1505.06962 Solar and Stellar Astrophysics +1505.07887 Cosmology and Nongalactic Astrophysics +1506.00032 Mesoscale and Nanoscale Physics +1506.01816 +1506.01823 Disordered Systems and Neural Networks +1506.03592 Quantum Gases +1506.03868 Solar and Stellar Astrophysics +1506.04453 Probability +1506.04454 Phenomenology +1506.04832 Cryptography and Security +1506.05526 Theory +1506.05724 +1506.05736 High Energy Astrophysical Phenomena +1506.05789 Theory +1506.05984 Astrophysics of Galaxies +1506.06485 +1506.06807 Number Theory +1506.07025 +1506.07380 +1506.07406 Algebraic Geometry +1506.07431 Analysis of PDEs +1506.07771 Cosmology and Nongalactic Astrophysics +1506.08473 Learning +1506.08722 Soft Condensed Matter +1507.00030 Quantum Gases +1507.00769 Astrophysics of Galaxies +1507.00771 Astrophysics of Galaxies +1507.01229 Theory +1507.01686 +1507.02149 Category Theory +1507.02291 Astrophysics of Galaxies +1507.02462 +1507.04357 Phenomenology +1507.04463 Mesoscale and Nanoscale Physics +1507.04616 Soft Condensed Matter +1507.04838 Combinatorics +1507.05300 Combinatorics +1507.06014 High Energy Astrophysical Phenomena +1507.06082 +1507.06107 Quantum Algebra +1507.06129 High Energy Astrophysical Phenomena +1507.06465 Solar and Stellar Astrophysics +1507.06686 Space Physics +1507.07276 Strongly Correlated Electrons +1507.07730 +1507.07734 Optics +1507.08026 Statistical Mechanics +1507.08297 Phenomenology +1508.00368 +1508.00372 Phenomenology +1508.00409 Functional Analysis +1508.00566 Cosmology and Nongalactic Astrophysics +1508.00581 Phenomenology +1508.00589 Phenomenology +1508.01046 Phenomenology +1508.01524 Astrophysics of Galaxies +1508.01626 Theory +1508.01900 Complex Variables +1508.02328 Plasma Physics +1508.02707 Instrumentation and Detectors +1508.02763 Earth and Planetary Astrophysics +1508.02772 Mesoscale and Nanoscale Physics +1508.02791 Earth and Planetary Astrophysics +1508.02948 High Energy Astrophysical Phenomena +1508.02961 Mesoscale and Nanoscale Physics +1508.03920 Phenomenology +1508.03950 Digital Libraries +1508.04726 Information Theory +1508.05257 Mesoscale and Nanoscale Physics +1508.05283 Theory +1508.05334 +1508.05426 High Energy Astrophysical Phenomena +1508.05614 Theory +1508.05773 Phenomenology +1508.05829 Strongly Correlated Electrons +1508.06060 Atomic Physics +1508.06755 +1508.06959 Strongly Correlated Electrons +1508.07161 Phenomenology +1508.07348 High Energy Astrophysical Phenomena +1508.07629 Phenomenology +1508.07711 Phenomenology +1508.07882 Instrumentation and Methods for Astrophysics +1508.07938 Rings and Algebras +1508.07946 Materials Science +1509.00022 Theory +1509.00026 Phenomenology +1509.00039 Phenomenology +1509.00107 Social and Information Networks +1509.00122 Mesoscale and Nanoscale Physics +1509.00371 Phenomenology +1509.00417 Earth and Planetary Astrophysics +1509.00742 Cosmology and Nongalactic Astrophysics +1509.01027 Classical Analysis and ODEs +1509.01086 +1509.01362 Earth and Planetary Astrophysics +1509.01461 Strongly Correlated Electrons +1509.01530 Soft Condensed Matter +1509.01814 +1509.02056 Strongly Correlated Electrons +1509.02558 Materials Science +1509.03298 +1509.03357 Physics and Society +1509.03636 Astrophysics of Galaxies +1509.03921 Mesoscale and Nanoscale Physics +1509.03980 +1509.04056 Theory +1509.04129 +1509.04163 +1509.04275 Cosmology and Nongalactic Astrophysics +1509.04822 High Energy Astrophysical Phenomena +1509.05978 Theory +1509.06003 Computer Vision and Pattern Recognition +1509.06366 +1509.06378 Phenomenology +1509.07037 Astrophysics of Galaxies +1509.07090 Phenomenology +1509.07139 +1509.07247 Astrophysics of Galaxies +1509.07359 +1509.07410 Phenomenology +1509.07499 Materials Science +1509.07783 Strongly Correlated Electrons +1509.08297 +1509.08935 Astrophysics of Galaxies +1509.09247 Fluid Dynamics +1510.00368 Atomic Physics +1510.00557 Cosmology and Nongalactic Astrophysics +1510.00724 Phenomenology +1510.00829 Phenomenology +1510.00975 Strongly Correlated Electrons +1510.00978 Theory +1510.01081 Mesoscale and Nanoscale Physics +1510.01404 Cosmology and Nongalactic Astrophysics +1510.01475 Statistical Mechanics +1510.01615 Mesoscale and Nanoscale Physics +1510.01682 Atomic Physics +1510.01922 Astrophysics of Galaxies +1510.02317 Experiment +1510.02341 Solar and Stellar Astrophysics +1510.02447 Astrophysics of Galaxies +1510.02496 Strongly Correlated Electrons +1510.03168 High Energy Astrophysical Phenomena +1510.03563 Phenomenology +1510.04202 Cosmology and Nongalactic Astrophysics +1510.04255 Strongly Correlated Electrons +1510.04285 Mesoscale and Nanoscale Physics +1510.04348 Number Theory +1510.04408 Quantum Algebra +1510.04438 Quantum Gases +1510.04606 Earth and Planetary Astrophysics +1510.05052 Mesoscale and Nanoscale Physics +1510.05313 +1510.05972 Statistical Mechanics +1510.06066 Astrophysics of Galaxies +1510.06114 Solar and Stellar Astrophysics +1510.06370 Materials Science +1510.06446 Earth and Planetary Astrophysics +1510.06679 Atomic Physics +1510.06737 Astrophysics of Galaxies +1510.07047 Cosmology and Nongalactic Astrophysics +1510.07210 Analysis of PDEs +1510.07359 +1510.07375 Statistical Mechanics +1510.07381 +1510.07496 Theory +1510.07524 Solar and Stellar Astrophysics +1510.07848 +1510.07870 Solar and Stellar Astrophysics +1510.08070 High Energy Astrophysical Phenomena +1510.08087 Solar and Stellar Astrophysics +1510.08255 Solar and Stellar Astrophysics +1510.08273 Solar and Stellar Astrophysics +1510.08284 Experiment +1510.08329 Solar and Stellar Astrophysics +1510.08374 Solar and Stellar Astrophysics +1510.08445 Cosmology and Nongalactic Astrophysics +1510.08515 Mesoscale and Nanoscale Physics +1510.08527 Phenomenology +1510.08554 Cryptography and Security +1510.08709 +1510.08890 Earth and Planetary Astrophysics +1510.08996 Mesoscale and Nanoscale Physics +1511.00469 +1511.00584 Astrophysics of Galaxies +1511.00768 Earth and Planetary Astrophysics +1511.00889 Astrophysics of Galaxies +1511.01519 Astrophysics of Galaxies +1511.02045 Mesoscale and Nanoscale Physics +1511.02159 Solar and Stellar Astrophysics +1511.02710 Astrophysics of Galaxies +1511.03558 Solar and Stellar Astrophysics +1511.03941 Earth and Planetary Astrophysics +1511.04013 Theory +1511.04079 Astrophysics of Galaxies +1511.04195 Cosmology and Nongalactic Astrophysics +1511.04469 Astrophysics of Galaxies +1511.04699 Cosmology and Nongalactic Astrophysics +1511.04909 Astrophysics of Galaxies +1511.04998 Earth and Planetary Astrophysics +1511.05171 Earth and Planetary Astrophysics +1511.05213 Solar and Stellar Astrophysics +1511.05325 Solar and Stellar Astrophysics +1511.05581 +1511.05621 High Energy Astrophysical Phenomena +1511.05884 Astrophysics of Galaxies +1511.05919 Earth and Planetary Astrophysics +1511.06006 Astrophysics of Galaxies +1511.06047 Astrophysics of Galaxies +1511.06115 Disordered Systems and Neural Networks +1511.06280 Mesoscale and Nanoscale Physics +1511.06387 Astrophysics of Galaxies +1511.06763 Earth and Planetary Astrophysics +1511.06804 Mesoscale and Nanoscale Physics +1511.06819 Solar and Stellar Astrophysics +1511.06947 Solar and Stellar Astrophysics +1511.07145 Solar and Stellar Astrophysics +1511.07383 Astrophysics of Galaxies +1511.07415 Exactly Solvable and Integrable Systems +1511.07432 Astrophysics of Galaxies +1511.07541 Combinatorics +1511.07738 High Energy Astrophysical Phenomena +1511.07973 Solar and Stellar Astrophysics +1511.08079 Strongly Correlated Electrons +1511.08215 Astrophysics of Galaxies +1511.08627 Statistics Theory +1511.08884 Solar and Stellar Astrophysics +1511.09271 Earth and Planetary Astrophysics +1511.09372 Solar and Stellar Astrophysics +1512.00024 Astrophysics of Galaxies +1512.00044 High Energy Astrophysical Phenomena +1512.00065 Solar and Stellar Astrophysics +1512.00463 High Energy Astrophysical Phenomena +1512.00469 Astrophysics of Galaxies +1512.00662 High Energy Astrophysical Phenomena +1512.00740 +1512.00744 Plasma Physics +1512.02291 +1512.02531 Optics +1512.02785 High Energy Astrophysical Phenomena +1512.02821 Earth and Planetary Astrophysics +1512.03816 Astrophysics of Galaxies +1512.04077 Computer Vision and Pattern Recognition +1512.04157 Phenomenology +1512.04529 Solar and Stellar Astrophysics +1512.04543 Astrophysics of Galaxies +1512.04661 Astrophysics of Galaxies +1512.04949 Solar and Stellar Astrophysics +1512.04957 Astrophysics of Galaxies +1512.05037 High Energy Astrophysical Phenomena +1512.05231 Superconductivity +1512.05510 Statistical Mechanics +1512.05624 Cosmology and Nongalactic Astrophysics +1512.05685 Databases +1512.05828 Analysis of PDEs +1512.05836 Solar and Stellar Astrophysics +1512.05888 Astrophysics of Galaxies +1512.05891 Optimization and Control +1512.06078 Classical Physics +1512.06090 Solar and Stellar Astrophysics +1512.06269 Atomic Physics +1512.06321 Operator Algebras +1512.06323 Rings and Algebras +1512.06592 Soft Condensed Matter +1512.06662 K-Theory and Homology +1512.07227 +1512.08155 Combinatorics +1512.08561 Theory +1601.00123 Instrumentation and Detectors +1601.00186 Combinatorics +1601.00464 Mesoscale and Nanoscale Physics +1601.00763 Cryptography and Security +1601.01556 Software Engineering +1601.01843 Combinatorics +1601.01868 Mesoscale and Nanoscale Physics +1601.01957 General Physics +1601.02320 Information Theory +1601.02328 Information Theory +1601.02393 K-Theory and Homology +1601.02451 +1601.02452 Software Engineering +1601.02551 High Energy Astrophysical Phenomena +1601.02600 Functional Analysis +1601.02601 Combinatorics +1601.02603 Learning +1601.02604 Representation Theory +1601.02605 Computers and Society +1601.02627 +1601.02628 High Energy Astrophysical Phenomena +1601.02631 Solar and Stellar Astrophysics +1601.02639 Theory +1601.02640 Numerical Analysis +1601.02641 Mesoscale and Nanoscale Physics +1601.02645 Numerical Analysis +1601.02646 Astrophysics of Galaxies +1601.02647 General Physics +1601.02648 General Physics +1601.02650 Databases +1601.02653 Astrophysics of Galaxies +1601.02656 Computational Physics +1601.02662 General Mathematics +1601.02668 Materials Science +1601.02676 Phenomenology +1601.02678 Phenomenology +1601.02679 Computational Physics +1601.02680 Learning +1601.02681 Soft Condensed Matter +1601.02683 Mathematical Software +1601.02684 Phenomenology +1601.02685 Mesoscale and Nanoscale Physics +1601.02686 Superconductivity +1601.02687 Distributed, Parallel, and Cluster Computing +1601.02693 Cosmology and Nongalactic Astrophysics +1601.02695 Probability +1601.02697 Computational Complexity +1601.02698 Computation +1601.02701 Earth and Planetary Astrophysics +1601.02703 Statistical Mechanics +1601.02705 Robotics +1601.02709 Neurons and Cognition +1601.02712 Data Structures and Algorithms +1601.02717 Numerical Analysis +1601.02719 History and Overview +1601.02723 Mesoscale and Nanoscale Physics +1601.02724 Analysis of PDEs +1601.02730 Optimization and Control +1601.02731 Representation Theory +1601.02733 Learning +1601.02737 Representation Theory +1601.02738 Materials Science +1601.02739 Statistics Theory +1601.02741 +1601.02742 Logic in Computer Science +1601.02743 Algebraic Geometry +1601.02744 General Topology +1601.02745 Artificial Intelligence +1601.02748 Quantitative Methods +1601.02750 +1601.02751 Commutative Algebra +1601.02753 Superconductivity +1601.02754 Optimization and Control +1601.02755 Statistical Mechanics +1601.02756 Symbolic Computation +1601.02762 Statistics Theory +1601.02763 Information Theory +1601.02766 Commutative Algebra +1601.02768 Human-Computer Interaction +1601.02770 Biological Physics +1601.02771 Number Theory +1601.02772 Solar and Stellar Astrophysics +1601.02773 Numerical Analysis +1601.02778 Robotics +1601.02779 Optics +1601.02781 Distributed, Parallel, and Cluster Computing +1601.02785 Mesoscale and Nanoscale Physics +1601.02786 +1601.02788 Information Theory +1601.02789 Computation and Language +1601.02790 +1601.02791 Probability +1601.02798 Statistics Theory +1601.02799 +1601.02800 Distributed, Parallel, and Cluster Computing +1601.02803 Analysis of PDEs +1601.02806 Applications +1601.02810 Number Theory +1601.02812 Analysis of PDEs +1601.02814 Earth and Planetary Astrophysics +1601.02815 Phenomenology +1601.02818 Combinatorics +1601.02819 Analysis of PDEs +1601.02820 Methodology +1601.02821 Optics +1601.02822 Quantitative Methods +1601.02825 Symplectic Geometry +1601.02826 Dynamical Systems +1601.02829 +1601.02830 Solar and Stellar Astrophysics +1601.02831 Optimization and Control +1601.02834 Differential Geometry +1601.02840 Analysis of PDEs +1601.02842 Rings and Algebras +1601.02845 Analysis of PDEs +1601.02849 Solar and Stellar Astrophysics +1601.02852 Computer Vision and Pattern Recognition +1601.02854 Phenomenology +1601.02859 Differential Geometry +1601.02862 Classical Analysis and ODEs +1601.02864 Combinatorics +1601.02865 Artificial Intelligence +1601.02867 Data Structures and Algorithms +1601.02869 Statistics Theory +1601.02881 Soft Condensed Matter +1601.02882 +1601.02885 Optimization and Control +1601.02888 Probability +1601.02889 High Energy Astrophysical Phenomena +1601.02890 General Mathematics +1601.02893 +1601.02898 Probability +1601.02903 Analysis of PDEs +1601.02904 Information Retrieval +1601.02906 +1601.02908 Plasma Physics +1601.02912 Numerical Analysis +1601.02913 Multimedia +1601.02914 Combinatorics +1601.02915 Logic +1601.02923 Physics and Society +1601.02924 Adaptation and Self-Organizing Systems +1601.02927 Digital Libraries +1601.02928 Combinatorics +1601.02929 Lattice +1601.02931 +1601.02938 +1601.02939 Data Structures and Algorithms +1601.02941 Operator Algebras +1601.02942 Numerical Analysis +1601.02944 Probability +1601.02947 Systems and Control +1601.02948 Neurons and Cognition +1601.02950 Cosmology and Nongalactic Astrophysics +1601.02952 Statistical Mechanics +1601.02955 Mesoscale and Nanoscale Physics +1601.02958 Metric Geometry +1601.02959 Differential Geometry +1601.02960 Information Theory +1601.02961 Logic +1601.02966 Geophysics +1601.02968 Algebraic Geometry +1601.02969 Geophysics +1601.02970 Computer Vision and Pattern Recognition +1601.02975 Computers and Society +1601.02980 Instrumentation and Methods for Astrophysics +1601.02981 Differential Geometry +1601.02982 Physics Education +1601.02984 Instrumentation and Detectors +1601.02989 Complex Variables +1601.02991 Probability +1601.02992 Dynamical Systems +1601.02996 Combinatorics +1601.02997 Combinatorics +1601.02999 Materials Science +1601.03002 Plasma Physics +1601.03003 Combinatorics +1601.03004 Other Computer Science +1601.03006 +1601.03012 Number Theory +1601.03014 Complex Variables +1601.03015 Risk Management +1601.03016 Phenomenology +1601.03018 Fluid Dynamics +1601.03020 Materials Science +1601.03027 Cryptography and Security +1601.03032 +astro-ph/0010007 +astro-ph/0101227 +astro-ph/0104041 +astro-ph/0104157 +astro-ph/0105293 +astro-ph/0105404 +astro-ph/0105499 +astro-ph/0106029 +astro-ph/0106039 +astro-ph/0106127 +astro-ph/0106130 +astro-ph/0106216 +astro-ph/0106234 +astro-ph/0106275 +astro-ph/0106337 +astro-ph/0106442 +astro-ph/0106545 +astro-ph/0108286 +astro-ph/0108290 +astro-ph/0108291 +astro-ph/0108454 +astro-ph/0108468 +astro-ph/0110142 +astro-ph/9608171 +astro-ph/9608191 +astro-ph/9609076 +astro-ph/9611104 +astro-ph/9611206 +astro-ph/9612055 +astro-ph/9612166 +astro-ph/9701078 +astro-ph/9701246 +astro-ph/9702024 +astro-ph/9702100 +astro-ph/9703083 +astro-ph/9703100 +astro-ph/9703129 +astro-ph/9704128 +astro-ph/9704153 +astro-ph/9704199 +astro-ph/9705029 +astro-ph/9705079 +astro-ph/9706174 +astro-ph/9706246 +astro-ph/9707046 +astro-ph/9707082 +astro-ph/9707225 +astro-ph/9707314 +astro-ph/9707317 +astro-ph/9708005 +astro-ph/9708122 +astro-ph/9708127 +astro-ph/9708197 +astro-ph/9709007 +astro-ph/9709014 +astro-ph/9709050 +astro-ph/9709242 +astro-ph/9709283 +astro-ph/9710170 +astro-ph/9710240 +astro-ph/9712329 +1004.5150 +1103.3207 Materials Science +1302.5888 Quantum Algebra +1307.3795 High Energy Astrophysical Phenomena +1308.0745 Algebraic Geometry +1308.0784 Quantum Gases +1308.3604 Group Theory +1308.4757 Numerical Analysis +1308.6571 +1311.2645 Statistics Theory +1312.5382 Group Theory +1406.2054 Number Theory +1409.8668 Optics +1410.7478 Number Theory +1412.0109 Phenomenology +1412.4806 Cosmology and Nongalactic Astrophysics +1502.02342 +1502.05997 Optics +1502.07303 Computational Physics +1503.01979 Materials Science +1505.00615 Algebraic Geometry +1505.06234 Combinatorics +1506.04534 Geometric Topology +1507.00331 +1507.03248 Combinatorics +1508.00150 Neurons and Cognition +1508.03352 Quantum Gases +1508.03795 Mesoscale and Nanoscale Physics +1508.07448 Methodology +1509.01698 Machine Learning +1509.02222 +1509.07060 Number Theory +1510.01178 Algebraic Geometry +1510.03780 Logic +1510.05315 Spectral Theory +1510.05448 Algebraic Geometry +1511.00452 Computer Science and Game Theory +1511.01207 Mathematical Finance +1511.02149 Experiment +1511.03401 Other Condensed Matter +1511.03743 Number Theory +1511.06478 Number Theory +1511.08370 Complex Variables +1512.01184 Geometric Topology +1512.02390 Numerical Analysis +1512.04020 Accelerator Physics +1512.04892 Lattice +1512.06656 Experiment +1512.09172 Phenomenology +1601.00115 Cosmology and Nongalactic Astrophysics +1601.03214 Information Theory +1601.06974 Software Engineering +1602.00061 Learning +1602.02845 Machine Learning +1602.07142 +1603.00804 Probability +1603.01767 Solar and Stellar Astrophysics +1603.02524 Computational Engineering, Finance, and Science +1603.02635 Phenomenology +1603.04035 +1603.04393 Exactly Solvable and Integrable Systems +1603.05914 Risk Management +1603.06822 Combinatorics +1603.07682 Computer Science and Game Theory +1603.07863 Number Theory +1603.07904 Classical Analysis and ODEs +1603.09223 Optimization and Control +1603.09228 Optimization and Control +1603.09234 Optimization and Control +1604.01175 Computational Geometry +1604.01417 +1604.02643 +1604.03832 Computer Vision and Pattern Recognition +1604.04257 +1604.04535 Algebraic Geometry +1604.04979 Phenomenology +1604.07479 Numerical Analysis +1604.07961 Soft Condensed Matter +1604.08099 Phenomenology +1604.08290 Strongly Correlated Electrons +1604.08849 +1605.00437 Numerical Analysis +1605.00441 +1605.02779 Strongly Correlated Electrons +1605.04666 Theory +1605.05277 Differential Geometry +1605.05486 Systems and Control +1605.06650 Computation and Language +1605.06667 Accelerator Physics +1605.06821 Computer Science and Game Theory +1605.07722 Human-Computer Interaction +1605.08511 Optimization and Control +1605.08774 Phenomenology +1605.08820 Algebraic Geometry +1606.00647 Numerical Analysis +1606.01716 +1606.02153 Accelerator Physics +1606.02661 +1606.02984 +1606.03105 Rings and Algebras +1606.04094 Materials Science +1606.04297 Strongly Correlated Electrons +1606.04431 Methodology +1606.05384 Combinatorics +1606.05507 Combinatorics +1606.07633 Superconductivity +1606.08353 Spectral Theory +1607.00712 +1607.02601 Materials Science +1607.02899 Differential Geometry +1607.05143 Computer Science and Game Theory +1607.05740 Algebraic Geometry +1607.06905 +1607.07127 Symplectic Geometry +1607.07346 Chaotic Dynamics +1607.08393 Mesoscale and Nanoscale Physics +1608.00892 Computation and Language +1608.01803 Complex Variables +1608.02047 Functional Analysis +1608.02658 Machine Learning +1608.02740 Economics +1608.02869 Statistical Mechanics +1608.03261 Theory +1608.03470 +1608.03600 General Mathematics +1608.03906 Classical Analysis and ODEs +1608.05762 Strongly Correlated Electrons +1608.06539 Group Theory +1608.07055 Data Analysis, Statistics and Probability +1608.07289 High Energy Astrophysical Phenomena +1608.08326 Geophysics +1609.00069 Combinatorics +1609.01184 Data Structures and Algorithms +1609.01596 Machine Learning +1609.01994 Information Theory +1609.02055 +1609.04243 Neural and Evolutionary Computing +1609.05249 Instrumentation and Detectors +1609.05788 Physics and Society +1609.05943 Analysis of PDEs +1609.06926 Methodology +1609.06943 Instrumentation and Detectors +1609.07245 Sound +1609.07309 Strongly Correlated Electrons +1609.07782 Fluid Dynamics +1609.07812 +1609.08402 Theory +1609.09358 Information Theory +1609.09427 Theory +1609.09470 Systems and Control +1610.01136 Algebraic Topology +1610.01695 Combinatorics +1610.03384 Number Theory +1610.05798 Cosmology and Nongalactic Astrophysics +1610.06652 Optics +1610.09293 Phenomenology +1611.00186 Algebraic Geometry +1611.00206 Analysis of PDEs +1611.00855 Astrophysics of Galaxies +1611.01272 Digital Libraries +1611.01547 Computation and Language +1611.03076 Experiment +1611.03408 +1611.05022 Mesoscale and Nanoscale Physics +1611.05194 Mathematical Finance +1611.05496 Group Theory +1611.05823 Algebraic Geometry +1611.06220 Theory +1611.06272 Operator Algebras +1611.07566 Statistical Mechanics +1611.07909 Computer Vision and Pattern Recognition +1611.07920 Phenomenology +1611.07960 Atomic and Molecular Clusters +1611.08377 History and Overview +1611.08645 Materials Science +1611.09783 Theory +1611.09850 Combinatorics +1611.09902 Analysis of PDEs +1611.10045 Data Structures and Algorithms +1611.10275 Classical Analysis and ODEs +1612.00190 Computer Science and Game Theory +1612.00413 Phenomenology +1612.00484 Logic in Computer Science +1612.01166 Numerical Analysis +1612.01398 Solar and Stellar Astrophysics +1612.01431 Digital Libraries +1612.01444 Group Theory +1612.01510 Social and Information Networks +1612.02080 Analysis of PDEs +1612.03084 Geometric Topology +1612.03239 Systems and Control +1612.03370 +1612.04277 Hardware Architecture +1612.04535 Methodology +1612.04929 +1612.05000 Computer Vision and Pattern Recognition +1612.05033 Materials Science +1612.05338 +1612.05555 Computation and Language +1612.05628 Artificial Intelligence +1612.05730 Machine Learning +1612.06050 Populations and Evolution +1612.06301 Materials Science +1612.06328 Geometric Topology +1612.06459 +1612.06471 Phenomenology +1612.06494 Instrumentation and Detectors +1612.06499 Group Theory +1612.06679 Theory +1612.06739 Cosmology and Nongalactic Astrophysics +1612.06775 Analysis of PDEs +1612.06776 Strongly Correlated Electrons +1612.06859 Theory +1612.06860 Theory +1612.06865 Mesoscale and Nanoscale Physics +1612.06867 Phenomenology +1612.06868 Mesoscale and Nanoscale Physics +1612.06869 Astrophysics of Galaxies +1612.06870 Classical Physics +1612.06872 +1612.06873 Cosmology and Nongalactic Astrophysics +1612.06874 Theory +1612.06875 Materials Science +1612.06877 Geometric Topology +1612.06878 +1612.06879 Methodology +1612.06881 Adaptation and Self-Organizing Systems +1612.06885 Theory +1612.06888 Materials Science +1612.06889 +1612.06890 Computer Vision and Pattern Recognition +1612.06891 Astrophysics of Galaxies +1612.06892 +1612.06894 +1612.06896 High Energy Astrophysical Phenomena +1612.06897 Computation and Language +1612.06900 Information Theory +1612.06901 Biological Physics +1612.06902 +1612.06906 +1612.06908 Quantum Gases +1612.06911 Representation Theory +1612.06912 Group Theory +1612.06913 Representation Theory +1612.06914 Dynamical Systems +1612.06916 Analysis of PDEs +1612.06919 Computer Vision and Pattern Recognition +1612.06921 Quantitative Methods +1612.06922 Earth and Planetary Astrophysics +1612.06923 Theory +1612.06924 Solar and Stellar Astrophysics +1612.06925 Optics +1612.06926 Differential Geometry +1612.06928 Methodology +1612.06929 High Energy Astrophysical Phenomena +1612.06930 Applications +1612.06932 Algebraic Geometry +1612.06933 Computer Vision and Pattern Recognition +1612.06934 +1612.06936 Combinatorics +1612.06937 Optics +1612.06939 +1612.06942 Quantum Gases +1612.06943 Quantum Gases +1612.06945 Algebraic Geometry +1612.06946 Materials Science +1612.06947 Earth and Planetary Astrophysics +1612.06948 Number Theory +1612.06949 Theory +1612.06950 Computer Vision and Pattern Recognition +1612.06951 Materials Science +1612.06952 +1612.06953 Cryptography and Security +1612.06956 +1612.06960 Algebraic Geometry +1612.06961 Information Theory +1612.06962 Data Structures and Algorithms +1612.06963 Lattice +1612.06966 Logic +1612.06967 Statistics Theory +1612.06968 Methodology +1612.06969 Phenomenology +1612.06970 Geometric Topology +1612.06971 Combinatorics +1612.06972 Mesoscale and Nanoscale Physics +1612.06973 Geometric Topology +1612.06975 Neurons and Cognition +1612.06976 Analysis of PDEs +1612.06977 Numerical Analysis +1612.06978 Theory +1612.06979 +1612.06980 Category Theory +1612.06981 +1612.06982 Geometric Topology +1612.06983 Algebraic Topology +1612.06984 Earth and Planetary Astrophysics +1612.06986 Geometric Topology +1612.06987 Earth and Planetary Astrophysics +1612.06988 Probability +1612.06990 Complex Variables +1612.06991 Quantum Algebra +1612.06993 Number Theory +1612.06994 Astrophysics of Galaxies +1612.06995 Information Theory +1612.06996 Symplectic Geometry +1612.06997 Optimization and Control +1612.06998 Numerical Analysis +1612.06999 Optics +1612.07001 Mesoscale and Nanoscale Physics +1612.07002 Numerical Analysis +1612.07004 Experiment +1612.07007 Statistical Mechanics +1612.07009 Computational Physics +1612.07010 Methodology +1612.07011 Numerical Analysis +1612.07012 Phenomenology +1612.07015 Computational Complexity +1612.07017 Probability +1612.07018 Mesoscale and Nanoscale Physics +1612.07019 Machine Learning +1612.07020 Mesoscale and Nanoscale Physics +1612.07022 +1612.07025 Information Retrieval +1612.07026 Mesoscale and Nanoscale Physics +1612.07028 Quantum Gases +1612.07029 Chaotic Dynamics +1612.07030 Statistics Theory +1612.07031 Adaptation and Self-Organizing Systems +1612.07033 Algebraic Geometry +1612.07034 Applications +1612.07035 Classical Analysis and ODEs +1612.07038 Materials Science +1612.07040 Information Retrieval +1612.07042 Classical Analysis and ODEs +1612.07045 Mesoscale and Nanoscale Physics +1612.07047 Lattice +1612.07048 Optimization and Control +1612.07050 Category Theory +1612.07051 Analysis of PDEs +1612.07055 Fluid Dynamics +1612.07058 +1612.07061 +1612.07063 Differential Geometry +1612.07064 Networking and Internet Architecture +1612.07068 Materials Science +1612.07069 Instrumentation and Detectors +1612.07070 Statistical Mechanics +1612.07071 Materials Science +1612.07072 Methodology +1612.07073 Complex Variables +1612.07074 Discrete Mathematics +1612.07076 Other Condensed Matter +1612.07077 +1612.07078 Materials Science +1612.07082 Dynamical Systems +1612.07084 Information Theory +1612.07085 Combinatorics +1612.07088 Probability +1612.07089 Optimization and Control +1612.07090 Superconductivity +1612.07091 Phenomenology +1612.07092 Strongly Correlated Electrons +1612.07093 +1612.07094 Biological Physics +1612.07095 Theory +1612.07098 Mesoscale and Nanoscale Physics +1612.07101 Optimization and Control +1612.07102 Instrumentation and Detectors +1612.07103 Combinatorics +1612.07105 Atomic Physics +1612.07106 Neurons and Cognition +1612.07107 Algebraic Geometry +1612.07108 Classical Analysis and ODEs +1612.07109 Data Analysis, Statistics and Probability +1612.07111 Fluid Dynamics +1612.07112 Atomic Physics +1612.07113 Discrete Mathematics +1612.07114 Soft Condensed Matter +1612.07115 Phenomenology +1612.07116 +1612.07117 Information Retrieval +1612.07118 Information Theory +1612.07119 Computer Vision and Pattern Recognition +1612.07120 Computer Vision and Pattern Recognition +1612.07121 +1612.07122 Information Theory +1612.07124 Materials Science +1612.07125 Phenomenology +1612.07127 +1612.07130 Computation and Language +1612.07132 Risk Management +1612.07133 Combinatorics +1612.07134 +1612.07135 Dynamical Systems +1612.07136 Dynamical Systems +1612.07140 Other Statistics +1612.07141 Learning +1612.07142 Algebraic Topology +1612.07143 Classical Analysis and ODEs +1612.07144 Classical Analysis and ODEs +1612.07146 Learning +1612.07147 Earth and Planetary Astrophysics +1612.07148 Theory +1612.07149 General Physics +1612.07150 +1612.07151 Earth and Planetary Astrophysics +1612.07152 +1612.07153 Computer Vision and Pattern Recognition +1612.07154 Logic +1612.07155 High Energy Astrophysical Phenomena +1612.07157 Information Theory +1612.07158 Number Theory +1612.07160 Probability +1612.07161 General Physics +1612.07162 Computational Complexity +1612.07163 Information Theory +1612.07164 General Physics +1612.07167 Logic +1612.07168 Numerical Analysis +1612.07169 Dynamical Systems +1612.07170 Instrumentation and Detectors +1612.07171 Accelerator Physics +1612.07172 +1612.07173 Quantum Gases +1612.07174 Theory +1612.07177 Information Theory +1612.07180 Computer Vision and Pattern Recognition +1612.07184 Biological Physics +1612.07185 Operator Algebras +1612.07186 Data Analysis, Statistics and Probability +1612.07187 Combinatorics +1612.07189 Combinatorics +1612.07193 Algebraic Geometry +1612.07194 Risk Management +1612.07195 Logic in Computer Science +1612.07197 Statistics Theory +1612.07199 Mesoscale and Nanoscale Physics +1612.07202 Strongly Correlated Electrons +1612.07203 Mesoscale and Nanoscale Physics +1612.07204 Materials Science +1612.07205 Atomic Physics +1612.07206 Cryptography and Security +1612.07207 Strongly Correlated Electrons +1612.07208 Digital Libraries +1612.07209 Pattern Formation and Solitons +1612.07215 Computation and Language +1612.07216 Statistics Theory +1612.07217 Computer Vision and Pattern Recognition +1612.07220 Networking and Internet Architecture +1612.07222 Machine Learning +1612.07223 Statistical Mechanics +1612.07226 Instrumentation and Methods for Astrophysics +1612.07229 Classical Analysis and ODEs +1612.07230 Classical Analysis and ODEs +1612.07231 Experiment +1612.07233 Experiment +1612.07235 Instrumentation and Detectors +1612.07236 +1612.07237 Accelerator Physics +1612.07240 Classical Analysis and ODEs +1612.07241 Phenomenology +1612.07243 +1612.07245 Cosmology and Nongalactic Astrophysics +1612.07246 +1612.07247 Combinatorics +1612.07248 Phenomenology +1612.07250 +1612.07254 Dynamical Systems +1612.07255 Optimization and Control +1612.07256 Biological Physics +1612.07257 Operator Algebras +1612.07258 +1612.07259 Theory +1612.07261 Analysis of PDEs +1612.07262 Analysis of PDEs +1612.07263 Cosmology and Nongalactic Astrophysics +1612.07264 Cosmology and Nongalactic Astrophysics +1612.07266 Plasma Physics +1612.07267 Theory +1612.07268 Plasma Physics +1612.07269 Statistics Theory +1612.07271 Astrophysics of Galaxies +1612.07272 Data Analysis, Statistics and Probability +1612.07273 Logic in Computer Science +1612.07274 Analysis of PDEs +1612.07275 Phenomenology +1612.07276 Computational Geometry +1612.07277 Physics and Society +1612.07278 Algebraic Geometry +1612.07280 Analysis of PDEs +1612.07281 Cosmology and Nongalactic Astrophysics +1612.07283 Analysis of PDEs +1612.07285 Information Theory +1612.07286 Combinatorics +1612.07287 Optimization and Control +1612.07288 Cosmology and Nongalactic Astrophysics +1612.07289 Information Theory +1612.07290 High Energy Astrophysical Phenomena +1612.07292 +1612.07293 Accelerator Physics +1612.07294 Information Theory +1612.07296 Optimization and Control +1612.07297 Physics and Society +1612.07298 Classical Physics +1612.07301 Materials Science +1612.07302 Mesoscale and Nanoscale Physics +1612.07303 Human-Computer Interaction +1612.07305 Mesoscale and Nanoscale Physics +1612.07306 Probability +1612.07309 Multimedia +1612.07310 Computer Vision and Pattern Recognition +1612.07312 Functional Analysis +1612.07315 Theory +1612.07316 High Energy Astrophysical Phenomena +math/0604209 Logic +quant-ph/0503035 +0804.2540 Disordered Systems and Neural Networks +0805.2647 Superconductivity +0811.1404 Geometric Topology +0912.1502 Commutative Algebra +1012.5575 Rings and Algebras +1012.5824 Materials Science +1102.0781 Strongly Correlated Electrons +1106.0711 +1112.2127 Computational Complexity +1201.2169 Cosmology and Nongalactic Astrophysics +1201.5851 Superconductivity +1202.2956 Optics +1203.3804 Experiment +1203.4512 Statistical Mechanics +1204.0614 +1204.3446 Statistical Mechanics +1204.3980 Probability +1205.6591 Mesoscale and Nanoscale Physics +1209.0384 Cosmology and Nongalactic Astrophysics +1210.3417 Solar and Stellar Astrophysics +1211.3124 Cosmology and Nongalactic Astrophysics +1211.4296 Optics +1211.5764 Strongly Correlated Electrons +1301.1129 Cosmology and Nongalactic Astrophysics +1301.3643 Materials Science +1302.6197 Populations and Evolution +1302.6443 Functional Analysis +1304.4510 Atomic Physics +1305.5994 Differential Geometry +1308.6548 Category Theory +1309.1655 +1309.6949 Instrumentation and Methods for Astrophysics +1311.4001 Computational Complexity +1312.3357 Probability +1312.6788 Soft Condensed Matter +1401.2431 Numerical Analysis +1401.3345 Phenomenology +1401.4463 Statistical Mechanics +1402.0677 Cosmology and Nongalactic Astrophysics +1402.0799 Group Theory +1402.1724 Quantitative Methods +1402.5856 Statistical Mechanics +1402.6817 Combinatorics +1403.6710 Computational Complexity +1403.7304 Machine Learning +1404.0268 Theory +1404.0779 Quantum Gases +1404.4042 Phenomenology +1405.3817 Data Structures and Algorithms +1406.3560 Atomic Physics +1406.7141 Strongly Correlated Electrons +1407.4916 Methodology +1407.6674 Analysis of PDEs +1409.0790 Astrophysics of Galaxies +1409.7159 +1409.7282 Statistical Mechanics +1410.3224 +1411.4298 +1411.4644 +1411.5821 Classical Physics +1411.7751 +1412.1877 Probability +1412.2735 Logic +1412.3621 Operator Algebras +1412.4336 Analysis of PDEs +1412.8171 Numerical Analysis +1412.8372 Cosmology and Nongalactic Astrophysics +1501.01779 Computational Engineering, Finance, and Science +1501.03566 Information Theory +1501.04866 Geometric Topology +1501.05918 +1501.06110 Differential Geometry +1502.01478 Chaotic Dynamics +1502.02264 Strongly Correlated Electrons +1502.03026 Functional Analysis +1502.04802 +1502.07246 Applications +1502.07698 Symplectic Geometry +1503.01017 +1503.05024 Analysis of PDEs +1503.05052 Cosmology and Nongalactic Astrophysics +1503.07109 +1503.07676 Computational Finance +1503.08166 Functional Analysis +1503.09120 Solar and Stellar Astrophysics +1504.00071 Methodology +1504.01573 Mesoscale and Nanoscale Physics +1504.04460 +1504.07903 Numerical Analysis +1505.01175 Group Theory +1505.02957 Optics +1505.03423 +1505.03425 Logic +1506.00800 Analysis of PDEs +1506.02262 Analysis of PDEs +1506.03049 Materials Science +1506.05365 Number Theory +1506.07779 Analysis of PDEs +1506.08990 Statistical Mechanics +1507.00047 Phenomenology +1507.00213 +1507.04337 Mesoscale and Nanoscale Physics +1507.04508 Analysis of PDEs +1507.05203 General Finance +1507.05647 Cosmology and Nongalactic Astrophysics +1507.05664 Networking and Internet Architecture +1508.00020 Analysis of PDEs +1508.00050 Representation Theory +1508.00506 Optimization and Control +1508.00573 Strongly Correlated Electrons +1508.01059 Data Structures and Algorithms +1508.01627 Representation Theory +1508.02825 Astrophysics of Galaxies +1508.03220 +1508.03909 Analysis of PDEs +1508.07531 Number Theory +1508.07872 +1509.01241 Quantum Algebra +1509.01966 Statistical Finance +1509.02198 Cosmology and Nongalactic Astrophysics +1509.02584 Cryptography and Security +1509.02793 Experiment +1509.03496 +1509.04356 High Energy Astrophysical Phenomena +1509.04575 Computational Geometry +1509.05391 Phenomenology +1509.06392 Phenomenology +1509.06516 +1509.07133 Strongly Correlated Electrons +1509.07436 Geophysics +1509.09083 +1510.00029 Astrophysics of Galaxies +1510.00043 Dynamical Systems +1510.00091 Optimization and Control +1510.01748 Symplectic Geometry +1510.03038 Superconductivity +1510.03729 Materials Science +1510.05653 +1510.06018 Astrophysics of Galaxies +1510.06284 Probability +1510.08503 Quantum Gases +1511.00797 Networking and Internet Architecture +1511.03469 +1511.04664 Learning +1511.08017 Statistical Mechanics +1511.08193 Analysis of PDEs +1511.08250 Computer Vision and Pattern Recognition +1511.08482 +1511.09049 Mesoscale and Nanoscale Physics +1512.00279 Phenomenology +1512.01484 Superconductivity +1512.02052 Optimization and Control +1512.02283 Solar and Stellar Astrophysics +1512.02508 Phenomenology +1512.03658 Astrophysics of Galaxies +1512.03856 Strongly Correlated Electrons +1512.04960 Learning +1512.05131 Functional Analysis +1512.05242 Strongly Correlated Electrons +1512.05875 Neurons and Cognition +1512.06846 Mesoscale and Nanoscale Physics +1512.07052 Statistics Theory +1512.07245 Theory +1512.07413 +1601.00063 Dynamical Systems +1601.00382 Fluid Dynamics +1601.02094 Number Theory +1601.02583 Space Physics +1601.03815 Computational Physics +1601.03947 Cosmology and Nongalactic Astrophysics +1601.03948 Cosmology and Nongalactic Astrophysics +1601.04807 Discrete Mathematics +1601.06269 +1601.06295 Classical Analysis and ODEs +1601.08098 Probability +1602.01568 Dynamical Systems +1602.02904 Instrumentation and Methods for Astrophysics +1602.03297 +1602.03545 High Energy Astrophysical Phenomena +1602.03672 Algebraic Geometry +1602.06524 Analysis of PDEs +1602.06732 Algebraic Geometry +1602.07322 Cosmology and Nongalactic Astrophysics +1602.07784 Materials Science +1602.08416 +1602.08506 Phenomenology +1602.08856 Mesoscale and Nanoscale Physics +1603.00096 Mesoscale and Nanoscale Physics +1603.02608 Materials Science +1603.03242 Strongly Correlated Electrons +1603.03492 Astrophysics of Galaxies +1603.04275 Functional Analysis +1603.04318 Quantum Algebra +1603.05165 +1603.05432 +1603.05576 Information Theory +1603.05814 Quantum Gases +1603.06244 +1603.07733 High Energy Astrophysical Phenomena +1603.08595 +1603.08963 +1603.09356 Cosmology and Nongalactic Astrophysics +1603.09364 Computer Vision and Pattern Recognition +1604.00877 Superconductivity +1604.01300 +1604.01554 Geophysics +1604.02168 Astrophysics of Galaxies +1604.02717 Analysis of PDEs +1604.03367 Algebraic Geometry +1604.03377 Phenomenology +1604.03536 Mesoscale and Nanoscale Physics +1604.03938 Phenomenology +1604.04250 Phenomenology +1604.04345 Statistical Mechanics +1604.04799 +1604.04835 Computation and Language +1604.04943 Mesoscale and Nanoscale Physics +1604.04975 Astrophysics of Galaxies +1604.05209 Physics and Society +1604.05560 +1604.05670 High Energy Astrophysical Phenomena +1604.06045 Computation and Language +1604.06046 Phenomenology +1604.06307 Phenomenology +1604.06400 +1604.06410 K-Theory and Homology +1604.06495 Atomic and Molecular Clusters +1604.06630 Quantum Gases +1604.07086 Information Theory +1604.07127 Differential Geometry +1604.07210 +1604.07284 Superconductivity +1604.07755 Analysis of PDEs +1604.07974 +1604.08009 +1604.08541 Atomic Physics +1604.08762 Mesoscale and Nanoscale Physics +1605.00121 Strongly Correlated Electrons +1605.00357 +1605.00629 Phenomenology +1605.00701 High Energy Astrophysical Phenomena +1605.01235 Systems and Control +1605.01258 Mesoscale and Nanoscale Physics +1605.01279 Subcellular Processes +1605.01448 Accelerator Physics +1605.01477 +1605.02133 Materials Science +1605.02520 Functional Analysis +1605.02593 +1605.03090 Neurons and Cognition +1605.03380 Strongly Correlated Electrons +1605.03401 Probability +1605.03710 Materials Science +1605.04252 Materials Science +1605.04302 +1605.04589 Strongly Correlated Electrons +1605.04641 Strongly Correlated Electrons +1605.04748 Strongly Correlated Electrons +1605.04831 Fluid Dynamics +1605.05268 +1605.05291 Neurons and Cognition +1605.05505 Algebraic Geometry +1605.05680 Phenomenology +1605.05796 +1605.06049 Optimization and Control +1605.06081 Mesoscale and Nanoscale Physics +1605.06240 Computer Vision and Pattern Recognition +1605.06265 Machine Learning +1605.06306 +1605.06750 Solar and Stellar Astrophysics +1605.06939 Instrumentation and Detectors +1605.07043 Theory +1605.07179 Mesoscale and Nanoscale Physics +1605.07223 Quantum Algebra +1605.07275 Category Theory +1605.07391 Astrophysics of Galaxies +1605.07640 Instrumentation and Methods for Astrophysics +1605.07780 Solar and Stellar Astrophysics +1605.07925 Adaptation and Self-Organizing Systems +1605.08164 Superconductivity +1605.08209 Astrophysics of Galaxies +1605.08389 +1605.08454 Neurons and Cognition +1605.08601 Astrophysics of Galaxies +1605.08698 Mesoscale and Nanoscale Physics +1605.08715 +1605.08769 +1605.08780 High Energy Astrophysical Phenomena +1605.09140 Strongly Correlated Electrons +1605.09195 Mesoscale and Nanoscale Physics +1605.09261 Cosmology and Nongalactic Astrophysics +1605.09311 Statistical Mechanics +1605.09402 Astrophysics of Galaxies +1605.09592 Astrophysics of Galaxies +1606.00050 Mesoscale and Nanoscale Physics +1606.00063 +1606.00218 Atomic Physics +1606.00696 Instrumentation and Detectors +1606.00755 Information Theory +1606.00848 Earth and Planetary Astrophysics +1606.00931 Machine Learning +1606.01210 +1606.01516 Astrophysics of Galaxies +1606.01689 Information Theory +1606.02044 Number Theory +1606.02051 Mesoscale and Nanoscale Physics +1606.02249 Optics +1606.02380 Mesoscale and Nanoscale Physics +1606.03053 High Energy Astrophysical Phenomena +1606.03087 Phenomenology +1606.03133 Materials Science +1606.03337 Materials Science +1606.03385 Lattice +1606.03451 Cosmology and Nongalactic Astrophysics +1606.03624 Astrophysics of Galaxies +1606.03822 Strongly Correlated Electrons +1606.03887 Instrumentation and Methods for Astrophysics +1606.03916 Optics +1606.04005 Mesoscale and Nanoscale Physics +1606.04102 Astrophysics of Galaxies +1606.04180 Earth and Planetary Astrophysics +1606.04196 Pattern Formation and Solitons +1606.04348 +1606.04367 Solar and Stellar Astrophysics +1606.04373 Astrophysics of Galaxies +1606.04391 Phenomenology +1606.04759 +1606.04767 Theory +1606.04865 Superconductivity +1606.04947 Solar and Stellar Astrophysics +1606.05175 Classical Analysis and ODEs +1606.05192 Earth and Planetary Astrophysics +1606.05587 Phenomenology +1606.05600 Statistical Mechanics +1606.05657 Cosmology and Nongalactic Astrophysics +1606.05661 Solar and Stellar Astrophysics +1606.05686 Phenomenology +1606.05769 Astrophysics of Galaxies +1606.05802 Populations and Evolution +1606.06561 +1606.07073 Cosmology and Nongalactic Astrophysics +1606.07162 +1606.07199 Statistical Mechanics +1606.07586 Mesoscale and Nanoscale Physics +1606.07809 Astrophysics of Galaxies +1606.08203 Optimization and Control +1606.08241 Theory +1606.08417 Analysis of PDEs +1606.08425 Computation and Language +1606.08498 Earth and Planetary Astrophysics +1606.08852 Astrophysics of Galaxies +1606.09056 +1606.09057 +1606.09137 Information Theory +1606.09485 Solar and Stellar Astrophysics +1607.00009 Theory +1607.00135 +1607.00389 Phenomenology +1607.00618 Materials Science +1607.00676 Phenomenology +1607.00815 Phenomenology +1607.00839 Solar and Stellar Astrophysics +1607.00943 Solar and Stellar Astrophysics +1607.01020 Astrophysics of Galaxies +1607.01132 Mesoscale and Nanoscale Physics +1607.01180 Superconductivity +1607.01226 Mesoscale and Nanoscale Physics +1607.02445 Phenomenology +1607.02749 Astrophysics of Galaxies +1607.02981 Strongly Correlated Electrons +1607.03009 Solar and Stellar Astrophysics +1607.03049 Solar and Stellar Astrophysics +1607.03111 Phenomenology +1607.03123 Theory +1607.03181 Astrophysics of Galaxies +1607.03293 High Energy Astrophysical Phenomena +1607.03387 Functional Analysis +1607.03674 Astrophysics of Galaxies +1607.03772 Statistical Mechanics +1607.03779 +1607.03841 Dynamical Systems +1607.03900 Cosmology and Nongalactic Astrophysics +1607.03907 High Energy Astrophysical Phenomena +1607.03932 Optics +1607.03963 Earth and Planetary Astrophysics +1607.04036 Mesoscale and Nanoscale Physics +1607.04068 Astrophysics of Galaxies +1607.04239 Instrumentation and Methods for Astrophysics +1607.04273 Quantum Gases +1607.04338 Solar and Stellar Astrophysics +1607.04749 Chemical Physics +1607.04814 Software Engineering +1607.05007 Cosmology and Nongalactic Astrophysics +1607.05016 Atomic Physics +1607.05226 +1607.05255 Earth and Planetary Astrophysics +1607.05311 Strongly Correlated Electrons +1607.05588 Superconductivity +1607.05632 Earth and Planetary Astrophysics +1607.05713 Earth and Planetary Astrophysics +1607.05753 Strongly Correlated Electrons +1607.05767 +1607.05935 High Energy Astrophysical Phenomena +1607.05961 Solar and Stellar Astrophysics +1607.06007 Earth and Planetary Astrophysics +1607.06026 Mesoscale and Nanoscale Physics +1607.06152 Solar and Stellar Astrophysics +1607.06205 Strongly Correlated Electrons +1607.06242 Solar and Stellar Astrophysics +1607.06331 Optics +1607.06443 Astrophysics of Galaxies +1607.06493 Theory +1607.06761 Theory +1607.06860 Cell Behavior +1607.07325 Astrophysics of Galaxies +1607.07447 Astrophysics of Galaxies +1607.07528 Solar and Stellar Astrophysics +1607.07545 Cosmology and Nongalactic Astrophysics +1607.07564 Mesoscale and Nanoscale Physics +1607.07595 Astrophysics of Galaxies +1607.07720 Cryptography and Security +1607.07723 Cosmology and Nongalactic Astrophysics +1607.07772 Superconductivity +1607.07785 Astrophysics of Galaxies +1607.07811 Astrophysics of Galaxies +1607.07851 Astrophysics of Galaxies +1607.07888 Solar and Stellar Astrophysics +1607.07916 Representation Theory +1607.08008 Mesoscale and Nanoscale Physics +1607.08261 Strongly Correlated Electrons +1607.08431 Soft Condensed Matter +1607.08454 High Energy Astrophysical Phenomena +1607.08724 Quantum Gases +1608.00282 Instrumentation and Methods for Astrophysics +1608.00393 High Energy Astrophysical Phenomena +1608.00516 Mesoscale and Nanoscale Physics +1608.00810 Artificial Intelligence +1608.00850 Theory +1608.00962 Solar and Stellar Astrophysics +1608.00980 High Energy Astrophysical Phenomena +1608.00986 Solar and Stellar Astrophysics +1608.01076 High Energy Astrophysical Phenomena +1608.01087 Solar and Stellar Astrophysics +1608.01211 Astrophysics of Galaxies +1608.01229 Astrophysics of Galaxies +1608.01249 Number Theory +1608.01315 Earth and Planetary Astrophysics +1608.01316 Solar and Stellar Astrophysics +1608.01378 Instrumentation and Methods for Astrophysics +1608.01379 Spectral Theory +1608.01497 Solar and Stellar Astrophysics +1608.01702 Astrophysics of Galaxies +1608.01967 Astrophysics of Galaxies +1608.02033 Astrophysics of Galaxies +1608.02046 Mesoscale and Nanoscale Physics +1608.02057 Solar and Stellar Astrophysics +1608.02288 Solar and Stellar Astrophysics +1608.02302 Astrophysics of Galaxies +1608.02480 Solar and Stellar Astrophysics +1608.02590 Earth and Planetary Astrophysics +1608.02602 Solar and Stellar Astrophysics +1608.02656 Materials Science +1608.02704 Solar and Stellar Astrophysics +1608.02714 Astrophysics of Galaxies +1608.02758 Theory +1608.03035 High Energy Astrophysical Phenomena +1608.03185 Astrophysics of Galaxies +1608.03330 Number Theory +1608.03346 High Energy Astrophysical Phenomena +1608.03411 Astrophysics of Galaxies +1608.03457 Mesoscale and Nanoscale Physics +1608.03469 Mesoscale and Nanoscale Physics +1608.03537 +1608.03541 Solar and Stellar Astrophysics +1608.03629 Earth and Planetary Astrophysics +1608.03660 Cosmology and Nongalactic Astrophysics +1608.03687 Cosmology and Nongalactic Astrophysics +1608.03831 Astrophysics of Galaxies +1608.03893 Astrophysics of Galaxies +1608.03901 Strongly Correlated Electrons +1608.04362 Cryptography and Security +1608.04392 Algebraic Topology +1608.05149 Astrophysics of Galaxies +1608.05200 Optics +1608.05369 Astrophysics of Galaxies +1608.05557 Astrophysics of Galaxies +1608.05559 Astrophysics of Galaxies +1608.05563 Astrophysics of Galaxies +1608.05614 +1608.05743 Information Theory +1608.06158 Solar and Stellar Astrophysics +1608.06224 Phenomenology +1608.06283 Astrophysics of Galaxies +1608.06437 Strongly Correlated Electrons +1608.06586 Solar and Stellar Astrophysics +1608.06619 Phenomenology +1608.06633 Mesoscale and Nanoscale Physics +1608.06803 Strongly Correlated Electrons +1608.06820 Phenomenology +1608.06824 General Physics +1608.06849 Astrophysics of Galaxies +1608.07135 +1608.07513 Strongly Correlated Electrons +1608.07685 Learning +1608.07702 Solar and Stellar Astrophysics +1608.07705 Solar and Stellar Astrophysics +1608.07737 Algebraic Geometry +1608.08153 Quantum Gases +1608.08154 High Energy Astrophysical Phenomena +1608.08354 Astrophysics of Galaxies +1608.08392 Solar and Stellar Astrophysics +1608.08536 Astrophysics of Galaxies +1608.08550 Solar and Stellar Astrophysics +1608.08593 Earth and Planetary Astrophysics +1608.08637 +1608.08781 Theory +1609.00013 Astrophysics of Galaxies +1609.00331 Artificial Intelligence +1609.00376 Astrophysics of Galaxies +1609.00378 Astrophysics of Galaxies +1609.00382 Earth and Planetary Astrophysics +1609.00535 Solar and Stellar Astrophysics +1609.00692 Experiment +1609.00803 +1609.01094 Mesoscale and Nanoscale Physics +1609.01280 Astrophysics of Galaxies +1609.01391 Strongly Correlated Electrons +1609.01673 +1609.01690 Information Theory +1609.01713 Astrophysics of Galaxies +1609.01785 Earth and Planetary Astrophysics +1609.02115 Solar and Stellar Astrophysics +1609.02400 Astrophysics of Galaxies +1609.02827 Classical Analysis and ODEs +1609.03051 Astrophysics of Galaxies +1609.03154 Solar and Stellar Astrophysics +1609.03179 Astrophysics of Galaxies +1609.03249 Instrumentation and Methods for Astrophysics +1609.03317 Computation +1609.03329 Astrophysics of Galaxies +1609.03402 Solar and Stellar Astrophysics +1609.03469 Solar and Stellar Astrophysics +1609.04024 High Energy Astrophysical Phenomena +1609.04162 Astrophysics of Galaxies +1609.04457 Solar and Stellar Astrophysics +1609.04614 Phenomenology +1609.04728 Astrophysics of Galaxies +1609.04774 Classical Analysis and ODEs +1609.05016 Earth and Planetary Astrophysics +1609.05176 Representation Theory +1609.05227 Space Physics +1609.05841 Statistical Mechanics +1609.05860 Phenomenology +1609.05923 Solar and Stellar Astrophysics +1609.05973 Astrophysics of Galaxies +1609.06328 Solar and Stellar Astrophysics +1609.06806 Statistics Theory +1609.07767 Solar and Stellar Astrophysics +1609.07959 Neural and Evolutionary Computing +1609.08171 Solar and Stellar Astrophysics +1609.08598 High Energy Astrophysical Phenomena +1609.08645 Combinatorics +1609.08761 Plasma Physics +1609.08775 Algebraic Geometry +1609.09081 Astrophysics of Galaxies +1609.09857 Mesoscale and Nanoscale Physics +1610.00440 Astrophysics of Galaxies +1610.00576 Strongly Correlated Electrons +1610.00862 Strongly Correlated Electrons +1610.01077 Solar and Stellar Astrophysics +1610.01092 +1610.01421 Cosmology and Nongalactic Astrophysics +1610.01598 High Energy Astrophysical Phenomena +1610.01623 Astrophysics of Galaxies +1610.01625 High Energy Astrophysical Phenomena +1610.01923 High Energy Astrophysical Phenomena +1610.02387 Networking and Internet Architecture +1610.02531 Solar and Stellar Astrophysics +1610.02698 Algebraic Geometry +1610.03039 Networking and Internet Architecture +1610.03532 Logic +1610.03942 Solar and Stellar Astrophysics +1610.04043 Probability +1610.04045 Differential Geometry +1610.04273 Information Theory +1610.04433 Soft Condensed Matter +1610.04463 Earth and Planetary Astrophysics +1610.04473 Classical Analysis and ODEs +1610.04639 Dynamical Systems +1610.04689 Astrophysics of Galaxies +1610.04849 Strongly Correlated Electrons +1610.05095 Materials Science +1610.05206 Cosmology and Nongalactic Astrophysics +1610.05269 Earth and Planetary Astrophysics +1610.05508 Instrumentation and Methods for Astrophysics +1610.05840 Number Theory +1610.05990 Solar and Stellar Astrophysics +1610.06008 Data Structures and Algorithms +1610.06145 Methodology +1610.06201 Symplectic Geometry +1610.06373 Geometric Topology +1610.06541 Materials Science +1610.06607 Instrumentation and Detectors +1610.06865 Differential Geometry +1610.06896 Materials Science +1610.06925 Theory +1610.06937 Information Theory +1610.07012 +1610.07053 Experiment +1610.07071 Instrumentation and Methods for Astrophysics +1610.07094 Dynamical Systems +1610.07109 Systems and Control +1610.07115 Instrumentation and Detectors +1610.07192 Theory +1610.07303 Algebraic Geometry +1610.07306 Populations and Evolution +1610.07335 Complex Variables +1610.07393 Computer Vision and Pattern Recognition +1610.07396 Geometric Topology +1610.07441 Theory +1610.07468 Combinatorics +1610.07559 Optimization and Control +1610.07579 Mesoscale and Nanoscale Physics +1610.07594 Metric Geometry +1610.07595 +1610.07596 High Energy Astrophysical Phenomena +1610.07597 Analysis of PDEs +1610.07598 Instrumentation and Detectors +1610.07599 Numerical Analysis +1610.07600 Physics and Society +1610.07601 High Energy Astrophysical Phenomena +1610.07603 Strongly Correlated Electrons +1610.07604 Instrumentation and Methods for Astrophysics +1610.07605 Astrophysics of Galaxies +1610.07613 Mesoscale and Nanoscale Physics +1610.07618 Theory +1610.07620 Astrophysics of Galaxies +1610.07621 Strongly Correlated Electrons +1610.07622 Solar and Stellar Astrophysics +1610.07627 Strongly Correlated Electrons +1610.07628 Quantum Algebra +1610.07630 Instrumentation and Detectors +1610.07633 Quantum Gases +1610.07637 History and Philosophy of Physics +1610.07638 High Energy Astrophysical Phenomena +1610.07642 Biological Physics +1610.07643 +1610.07644 +1610.07649 Databases +1610.07650 Machine Learning +1610.07651 Computation and Language +1610.07655 Instrumentation and Methods for Astrophysics +1610.07657 Classical Analysis and ODEs +1610.07658 Dynamical Systems +1610.07662 Statistics Theory +1610.07663 Astrophysics of Galaxies +1610.07664 Combinatorics +1610.07665 Geometric Topology +1610.07668 Number Theory +1610.07669 Earth and Planetary Astrophysics +1610.07670 Applications +1610.07671 Robotics +1610.07674 Cosmology and Nongalactic Astrophysics +1610.07676 Atmospheric and Oceanic Physics +1610.07677 Machine Learning +1610.07680 Classical Analysis and ODEs +1610.07683 Methodology +1610.07684 Applications +1610.07685 Statistical Mechanics +1610.07686 Learning +1610.07687 Systems and Control +1610.07689 +1610.07691 Geometric Topology +1610.07692 Disordered Systems and Neural Networks +1610.07694 Portfolio Management +1610.07696 Programming Languages +1610.07697 Statistics Theory +1610.07698 Probability +1610.07700 Distributed, Parallel, and Cluster Computing +1610.07701 Computer Science and Game Theory +1610.07702 Strongly Correlated Electrons +1610.07703 Information Retrieval +1610.07705 Populations and Evolution +1610.07706 Differential Geometry +1610.07707 Databases +1610.07708 Artificial Intelligence +1610.07710 Computation and Language +1610.07712 Number Theory +1610.07713 General Mathematics +1610.07715 Commutative Algebra +1610.07716 Number Theory +1610.07719 Information Theory +1610.07721 Strongly Correlated Electrons +1610.07722 Learning +1610.07723 Algebraic Geometry +1610.07724 Information Theory +1610.07725 Statistical Mechanics +1610.07726 Optimization and Control +1610.07727 Probability +1610.07728 Computer Vision and Pattern Recognition +1610.07731 Geometric Topology +1610.07732 Databases +1610.07733 Machine Learning +1610.07734 +1610.07735 Distributed, Parallel, and Cluster Computing +1610.07736 Information Theory +1610.07737 Category Theory +1610.07738 Optics +1610.07739 Functional Analysis +1610.07741 Networking and Internet Architecture +1610.07742 Strongly Correlated Electrons +1610.07743 Theory +1610.07744 Astrophysics of Galaxies +1610.07746 Group Theory +1610.07748 Applications +1610.07749 Fluid Dynamics +1610.07750 +1610.07752 Neural and Evolutionary Computing +1610.07753 Multimedia +1610.07754 Social and Information Networks +1610.07755 Combinatorics +1610.07756 Algebraic Geometry +1610.07758 Human-Computer Interaction +1610.07760 Analysis of PDEs +1610.07761 Rings and Algebras +1610.07762 Analysis of PDEs +1610.07763 +1610.07764 Theory +1610.07765 Probability +1610.07766 Data Structures and Algorithms +1610.07767 Tissues and Organs +1610.07769 Neurons and Cognition +1610.07770 Discrete Mathematics +1610.07771 Information Theory +1610.07772 Social and Information Networks +1610.07775 Rings and Algebras +1610.07776 Number Theory +1610.07777 +1610.07778 Data Structures and Algorithms +1610.07779 Chemical Physics +1610.07780 Optics +1610.07782 Number Theory +1610.07783 Astrophysics of Galaxies +1610.07784 Biological Physics +1610.07785 Cosmology and Nongalactic Astrophysics +1610.07789 Information Theory +1610.07791 Group Theory +1610.07792 Mesoscale and Nanoscale Physics +1610.07794 Representation Theory +1610.07795 Phenomenology +1610.07798 Optics +1610.07800 Soft Condensed Matter +1610.07801 Lattice +1610.07802 Instrumentation and Methods for Astrophysics +1610.07803 Instrumentation and Detectors +1610.07804 Computer Vision and Pattern Recognition +1610.07805 Theory +1610.07807 Analysis of PDEs +1610.07808 Computational Physics +1610.07809 Computation and Language +1610.07817 Number Theory +1610.07820 +1610.07821 Chaotic Dynamics +1610.07823 Algebraic Geometry +1610.07824 Materials Science +1610.07825 Experiment +1610.07827 Algebraic Geometry +1610.07828 Analysis of PDEs +1610.07829 Differential Geometry +1610.07831 Astrophysics of Galaxies +1610.07832 Algebraic Geometry +1610.07833 Materials Science +1610.07834 Rings and Algebras +1610.07835 Mesoscale and Nanoscale Physics +1610.07836 Combinatorics +1610.07837 Representation Theory +1610.07838 Analysis of PDEs +1610.07840 High Energy Astrophysical Phenomena +1610.07841 Combinatorics +1610.07842 Functional Analysis +1610.07843 Medical Physics +1610.07844 Computation and Language +1610.07845 Number Theory +1610.07846 Soft Condensed Matter +1610.07848 Strongly Correlated Electrons +1610.07850 Accelerator Physics +1610.07852 Differential Geometry +1610.07853 Mesoscale and Nanoscale Physics +1610.07854 Classical Analysis and ODEs +1610.07856 Dynamical Systems +1610.07857 Learning +1610.07864 Differential Geometry +1610.07867 History and Overview +1610.07868 Group Theory +1610.07871 High Energy Astrophysical Phenomena +1610.07872 Analysis of PDEs +1610.07873 General Physics +1610.07877 General Physics +1610.07878 Chemical Physics +1610.07880 Mesoscale and Nanoscale Physics +1610.07882 Computer Vision and Pattern Recognition +1610.07883 Learning +1610.07884 Software Engineering +1610.07887 Phenomenology +1610.07888 Combinatorics +1610.07889 Fluid Dynamics +1610.07890 +1610.07892 Multiagent Systems +1610.07894 Computation +1610.07896 +1610.07899 Other Computer Science +1610.07901 Multiagent Systems +1610.07902 Distributed, Parallel, and Cluster Computing +1610.07907 Combinatorics +1610.07909 Chemical Physics +1610.07911 Metric Geometry +1610.07913 Strongly Correlated Electrons +1610.07915 +1610.07917 Analysis of PDEs +1610.07918 Computation and Language +1610.07921 Machine Learning +1610.07922 Phenomenology +1610.07923 Dynamical Systems +1610.07925 Methodology +1610.07927 +1610.07929 +1610.07930 Computer Vision and Pattern Recognition +1610.07931 Computer Vision and Pattern Recognition +1610.07932 +1610.07933 Materials Science +1610.07935 Computer Vision and Pattern Recognition +1610.07936 General Physics +1610.07940 Computer Vision and Pattern Recognition +1610.07942 Fluid Dynamics +1610.07944 Fluid Dynamics +1610.07945 Number Theory +1610.07946 History and Overview +1610.07948 Cryptography and Security +1610.07949 Methodology +1610.07951 +1610.07952 Logic +1610.07954 Numerical Analysis +1610.07956 High Energy Astrophysical Phenomena +1610.07957 Phenomenology +1610.07959 Metric Geometry +1610.07961 Analysis of PDEs +1610.07963 Earth and Planetary Astrophysics +1610.07965 Programming Languages +1610.07968 Algebraic Topology +1610.07969 Information Theory +1610.07971 Number Theory +1610.07972 Theory +1610.07973 Representation Theory +1610.07974 Soft Condensed Matter +1610.07977 Cosmology and Nongalactic Astrophysics +1610.07978 Programming Languages +1610.07979 +1610.07981 Analysis of PDEs +1610.07982 Computers and Society +1610.07988 Combinatorics +1610.07990 +1610.07991 Theory +1610.07992 Numerical Analysis +1610.07994 Probability +1610.07995 Computer Vision and Pattern Recognition +1610.07997 Artificial Intelligence +1610.07998 Differential Geometry +1610.07999 Probability +1610.08000 Computation and Language +1610.08001 Solar and Stellar Astrophysics +1610.08002 Numerical Analysis +1610.08003 Physics and Society +1610.08004 Information Theory +1610.08008 Mesoscale and Nanoscale Physics +1610.08009 Statistical Mechanics +1610.08010 Classical Physics +1610.08012 Materials Science +1610.08013 Methodology +1610.08014 Materials Science +1610.08015 Distributed, Parallel, and Cluster Computing +1610.08018 Numerical Analysis +1610.08020 Software Engineering +1610.08021 +1610.08025 Optics +1610.08026 Information Theory +1610.08027 Logic +1610.08028 Phenomenology +1610.08030 Information Theory +1610.08031 Quantum Gases +1610.08033 Algebraic Geometry +1610.08036 Medical Physics +1610.08037 +1610.08041 Theory +astro-ph/9305005 +astro-ph/9404040 +astro-ph/9710235 +astro-ph/9711288 +astro-ph/9711310 +astro-ph/9712315 +astro-ph/9801163 +astro-ph/9802135 +astro-ph/9802216 +astro-ph/9802262 +chem-ph/9608001 Chemical Physics +cond-mat/0006280 +cond-mat/0203058 Materials Science +cond-mat/0701560 Disordered Systems and Neural Networks +cond-mat/9802233 Strongly Correlated Electrons +cond-mat/9803164 +cond-mat/9805063 Mesoscale and Nanoscale Physics +cond-mat/9806370 Strongly Correlated Electrons +gr-qc/9604049 +gr-qc/9805014 +hep-lat/9403018 Lattice +hep-ph/9309309 Phenomenology +hep-ph/9401324 Phenomenology +hep-ph/9403263 Phenomenology +hep-ph/9404296 Phenomenology +hep-ph/9705337 Phenomenology +hep-ph/9708399 Phenomenology +hep-ph/9710318 Phenomenology +hep-ph/9710329 Phenomenology +hep-ph/9712378 Phenomenology +hep-ph/9712423 Phenomenology +hep-ph/9801249 Phenomenology +hep-ph/9801259 Phenomenology +hep-ph/9801286 Phenomenology +hep-ph/9801299 Phenomenology +hep-ph/9801313 Phenomenology +hep-ph/9801340 Phenomenology +hep-ph/9801428 Phenomenology +hep-ph/9801451 Phenomenology +hep-ph/9801452 Phenomenology +hep-ph/9802332 Phenomenology +hep-ph/9805352 Phenomenology +hep-ph/9805361 Phenomenology +hep-ph/9806469 Phenomenology +hep-th/0007195 Theory +hep-th/0103203 Theory +hep-th/9508168 Theory +hep-th/9604038 Theory +hep-th/9707203 Theory +hep-th/9708165 Theory +hep-th/9801008 Theory +physics/9712056 General Physics +quant-ph/9709042 +quant-ph/9710062 +quant-ph/9711016 +quant-ph/9807065 +quant-ph/9906061 +quant-ph/9906077 +quant-ph/9907083 +0910.3875 Number Theory +1001.0953 Dynamical Systems +1003.4467 Dynamical Systems +1004.0214 General Topology +1009.1565 General Topology +1104.4130 Dynamical Systems +1106.0273 Dynamical Systems +1106.2467 Statistics Theory +1106.5022 Dynamical Systems +1110.0801 Probability +1201.2541 Dynamical Systems +1201.2861 Dynamical Systems +1203.6877 Probability +1205.3128 High Energy Astrophysical Phenomena +1207.4983 Probability +1301.2699 Methodology +1303.1698 Statistics Theory +1303.2423 Computation +1303.7259 Materials Science +1304.4490 Differential Geometry +1304.6746 Statistics Theory +1304.7089 Mesoscale and Nanoscale Physics +1305.5788 Dynamical Systems +1305.5798 Dynamical Systems +1305.6261 Superconductivity +1310.0048 Algebraic Geometry +1311.4748 Functional Analysis +1311.4821 Computational Complexity +1401.5605 Differential Geometry +1401.6610 Theory +1401.7064 Probability +1402.3227 Combinatorics +1403.2065 Learning +1403.4050 Geometric Topology +1403.5116 Spectral Theory +1403.5625 +1403.6450 Biological Physics +1405.0834 Probability +1405.2573 Probability +1406.3836 Methodology +1406.7188 +1407.3293 Geometric Topology +1407.8092 Probability +1408.0196 Information Theory +1408.3756 Optimization and Control +1409.2656 Cosmology and Nongalactic Astrophysics +1409.3452 Algebraic Topology +1409.6006 Number Theory +1409.6520 Analysis of PDEs +1409.8262 High Energy Astrophysical Phenomena +1410.1484 Theory +1410.2691 +1410.4463 Analysis of PDEs +1410.4724 Applications +1410.4754 Multiagent Systems +1410.5710 Phenomenology +1411.3983 Other Condensed Matter +1411.4750 Probability +1411.5864 Differential Geometry +1411.7551 Probability +1412.1120 Optics +1412.4625 Optics +1412.5797 Information Theory +1501.02135 Superconductivity +1501.03407 Information Theory +1501.04188 Group Theory +1502.04434 Machine Learning +1502.04958 Classical Analysis and ODEs +1502.06297 Software Engineering +1503.00347 Dynamical Systems +1503.01983 Probability +1503.02035 Probability +1503.02777 Neurons and Cognition +1503.03765 Mesoscale and Nanoscale Physics +1503.06997 Rings and Algebras +1503.09082 Learning +1504.00575 Fluid Dynamics +1504.00697 +1504.00800 Optimization and Control +1504.04570 Superconductivity +1504.04964 Statistical Mechanics +1504.05887 Classical Analysis and ODEs +1504.06769 Quantum Gases +1504.07688 Commutative Algebra +1504.08171 Instrumentation and Detectors +1505.00498 Strongly Correlated Electrons +1505.02818 Computers and Society +1505.02862 Information Theory +1505.04192 Phenomenology +1505.05078 Theory +1505.06420 Group Theory +1505.07914 +1506.01636 Statistical Mechanics +1506.02400 Graphics +1506.03052 +1506.03062 Experiment +1506.06083 Geometric Topology +1506.08477 Data Structures and Algorithms +1507.01714 +1507.02527 Phenomenology +1507.03320 Superconductivity +1507.04497 Information Theory +1507.04983 High Energy Astrophysical Phenomena +1507.05509 Algebraic Geometry +1508.01325 Strongly Correlated Electrons +1508.01795 Social and Information Networks +1508.02325 +1508.02919 Mathematical Finance +1508.03454 Quantitative Methods +1508.03646 Statistical Mechanics +1508.04456 Combinatorics +1508.07819 Experiment +1509.00160 Phenomenology +1509.01322 Cosmology and Nongalactic Astrophysics +1509.01808 Data Analysis, Statistics and Probability +1509.04152 +1509.04246 +1509.04366 Networking and Internet Architecture +1509.05385 Rings and Algebras +1509.05423 Phenomenology +1509.05606 Mesoscale and Nanoscale Physics +1509.06409 Strongly Correlated Electrons +1509.06497 Phenomenology +1509.06614 Theory +1509.07248 Probability +1510.01253 Differential Geometry +1510.01566 Cosmology and Nongalactic Astrophysics +1510.02152 +1510.02607 Optics +1510.02903 Statistics Theory +1510.04687 Probability +1510.04831 +1510.06610 Optics +1510.07593 Statistical Mechanics +1510.08221 Chemical Physics +1510.08785 Classical Physics +1511.00621 +1511.01929 Instrumentation and Methods for Astrophysics +1511.03307 Geophysics +1511.03674 Phenomenology +1511.04165 Metric Geometry +1511.04866 Algebraic Geometry +1511.05492 Group Theory +1511.05668 Solar and Stellar Astrophysics +1511.06511 Theory +1511.08298 High Energy Astrophysical Phenomena +1511.08803 High Energy Astrophysical Phenomena +1511.08812 Astrophysics of Galaxies +1511.08896 Astrophysics of Galaxies +1512.00290 Metric Geometry +1512.01389 Quantitative Methods +1512.01550 Solar and Stellar Astrophysics +1512.01561 Astrophysics of Galaxies +1512.03435 Mesoscale and Nanoscale Physics +1512.03554 Theory +1512.04935 Networking and Internet Architecture +1512.07692 Materials Science +1512.08869 Geometric Topology +1601.02134 Fluid Dynamics +1601.02612 Astrophysics of Galaxies +1601.02746 Atomic Physics +1601.03118 Information Theory +1601.03229 Databases +1601.03645 Physics and Society +1601.03672 +1601.03705 Number Theory +1601.03740 Cosmology and Nongalactic Astrophysics +1601.03748 Phenomenology +1601.03750 +1601.03753 Astrophysics of Galaxies +1601.03754 Data Structures and Algorithms +1601.03758 Representation Theory +1601.03767 Distributed, Parallel, and Cluster Computing +1601.03768 Systems and Control +1601.03769 Instrumentation and Methods for Astrophysics +1601.03774 Experiment +1601.03780 Combinatorics +1601.03783 Computation and Language +1601.03785 Artificial Intelligence +1601.03787 Numerical Analysis +1601.03789 Cosmology and Nongalactic Astrophysics +1601.03791 Combinatorics +1601.03794 Solar and Stellar Astrophysics +1601.03797 Databases +1601.03798 General Topology +1601.03799 Optimization and Control +1601.03803 Information Theory +1601.03809 Neural and Evolutionary Computing +1601.03810 Networking and Internet Architecture +1601.03814 Solar and Stellar Astrophysics +1601.03816 +1601.03817 Computational Geometry +1601.03820 Materials Science +1601.03823 +1601.03824 +1601.03829 Networking and Internet Architecture +1601.03830 Information Theory +1601.03831 Logic +1601.03832 Astrophysics of Galaxies +1601.03834 Atomic Physics +1601.03835 Logic in Computer Science +1601.03836 Complex Variables +1601.03841 Optics +1601.03842 Atomic Physics +1601.03843 +1601.03848 Classical Analysis and ODEs +1601.03849 Experiment +1601.03852 Metric Geometry +1601.03854 Distributed, Parallel, and Cluster Computing +1601.03855 Learning +1601.03856 Classical Analysis and ODEs +1601.03857 Astrophysics of Galaxies +1601.03861 Mesoscale and Nanoscale Physics +1601.03863 Analysis of PDEs +1601.03864 Statistical Mechanics +1601.03865 Theory +1601.03867 Astrophysics of Galaxies +1601.03868 Methodology +1601.03871 +1601.03873 Functional Analysis +1601.03882 Differential Geometry +1601.03885 Complex Variables +1601.03886 Fluid Dynamics +1601.03889 Analysis of PDEs +1601.03895 Instrumentation and Detectors +1601.03896 Computation and Language +1601.03897 Analysis of PDEs +1601.03898 Astrophysics of Galaxies +1601.03899 Representation Theory +1601.03900 Statistics Theory +1601.03901 Phenomenology +1601.03906 Statistics Theory +1601.03909 Populations and Evolution +1601.03910 Dynamical Systems +1601.03911 Probability +1601.03913 Solar and Stellar Astrophysics +1601.03914 Quantum Gases +1601.03915 Robotics +1601.03919 Metric Geometry +1601.03921 Cryptography and Security +1601.03922 Fluid Dynamics +1601.03928 Data Structures and Algorithms +1601.03933 Fluid Dynamics +1601.03934 Number Theory +1601.03937 Probability +1601.03938 Number Theory +1601.03939 Metric Geometry +1601.03940 +1601.03941 +1601.03942 +1601.03945 Computer Vision and Pattern Recognition +1601.03951 Algebraic Geometry +1601.03953 Theory +1601.03956 +1601.03965 Probability +1601.03976 Networking and Internet Architecture +1601.03980 Distributed, Parallel, and Cluster Computing +1601.03984 Networking and Internet Architecture +1601.03987 Commutative Algebra +1601.03992 +1601.03994 Phenomenology +1601.03995 History and Overview +1601.03998 Robotics +1601.04000 Functional Analysis +1601.04001 Optimization and Control +1601.04004 High Energy Astrophysical Phenomena +1601.04006 High Energy Astrophysical Phenomena +1601.04012 Computation and Language +1601.04019 +1601.04025 Dynamical Systems +1601.04028 Economics +1601.04029 Human-Computer Interaction +1601.04031 Complex Variables +1601.04032 Complex Variables +1601.04033 Machine Learning +1601.04034 Combinatorics +1601.04036 Databases +1601.04038 Social and Information Networks +1601.04044 Combinatorics +1601.04045 Number Theory +1601.04048 Symplectic Geometry +1601.04052 Instrumentation and Methods for Astrophysics +1601.04054 Representation Theory +1601.04056 Soft Condensed Matter +1601.04057 Materials Science +1601.04059 Information Theory +1601.04065 Computation +cs/9809118 Computational Complexity +nucl-th/0306078 +0904.4141 Differential Geometry +1103.1614 Representation Theory +1106.5463 Combinatorics +1212.0496 Category Theory +1302.3502 +1307.8371 Learning +1309.4361 Optics +1310.7063 Optimization and Control +1403.1453 Combinatorics +1403.3772 Logic in Computer Science +1403.7393 Probability +1408.5405 Neural and Evolutionary Computing +1409.3137 Numerical Analysis +1409.8594 Group Theory +1410.0661 Statistics Theory +1411.4821 Soft Condensed Matter +1412.3058 Analysis of PDEs +1412.4679 Machine Learning +1412.6111 +1501.01361 Social and Information Networks +1501.03505 +1502.00554 +1502.04020 +1503.01628 Combinatorics +1503.04879 Analysis of PDEs +1504.02559 Group Theory +1504.03015 Spectral Theory +1504.07496 Experiment +1505.05001 Group Theory +1505.05945 Symplectic Geometry +1505.06892 Probability +1505.06984 Computer Science and Game Theory +1506.00890 Strongly Correlated Electrons +1506.02345 Computer Vision and Pattern Recognition +1506.04418 Analysis of PDEs +1506.05597 +1506.05739 +1506.06369 Discrete Mathematics +1507.00503 Category Theory +1507.06160 Molecular Networks +1508.04334 Geometric Topology +1508.06951 +1508.07386 +1508.07407 Commutative Algebra +1508.07676 Soft Condensed Matter +1509.02508 Superconductivity +1509.03045 Digital Libraries +1509.07361 Materials Science +1509.08741 Complex Variables +1510.01448 Strongly Correlated Electrons +1510.02966 Soft Condensed Matter +1510.04536 Metric Geometry +1510.05279 Analysis of PDEs +1510.07046 Astrophysics of Galaxies +1510.07066 Rings and Algebras +1510.08012 Computer Vision and Pattern Recognition +1510.08270 Phenomenology +1511.05272 Algebraic Geometry +1511.06464 Learning +1511.08007 Commutative Algebra +1511.08798 Statistical Mechanics +1512.03432 Cosmology and Nongalactic Astrophysics +1512.06235 Computer Vision and Pattern Recognition +1512.08055 Logic in Computer Science +1512.08545 +1601.00319 Combinatorics +1601.00762 Phenomenology +1601.01566 Robotics +1601.07604 Commutative Algebra +1601.07623 +1602.00588 Group Theory +1602.02113 +1602.02199 Numerical Analysis +1602.02615 Complex Variables +1602.03866 Mesoscale and Nanoscale Physics +1602.03870 Theory +1602.04574 +1602.06384 Phenomenology +1602.07776 Computation and Language +1602.08002 Combinatorics +1602.08366 +1602.08400 Atomic Physics +1603.04123 Number Theory +1603.04136 Optimization and Control +1603.05098 Instrumentation and Detectors +1603.06698 Quantum Gases +1603.07299 Astrophysics of Galaxies +1603.08270 Neural and Evolutionary Computing +1603.08518 High Energy Astrophysical Phenomena +1604.01135 Complex Variables +1604.01224 Economics +1604.03918 Probability +1604.03925 +1604.05361 Geometric Topology +1604.07326 Mesoscale and Nanoscale Physics +1604.07470 +1604.07483 Dynamical Systems +1604.07604 +1604.08057 Lattice +1605.00349 Operator Algebras +1605.00561 Computer Vision and Pattern Recognition +1605.01271 +1605.01389 Phenomenology +1605.03495 Experiment +1605.03645 Differential Geometry +1605.03840 Classical Analysis and ODEs +1605.04183 Superconductivity +1605.06445 +1605.06446 High Energy Astrophysical Phenomena +1605.07338 Operator Algebras +1605.07649 +1606.00258 Neurons and Cognition +1606.00777 Phenomenology +1606.02591 Complex Variables +1606.03468 Combinatorics +1606.03706 Geometric Topology +1606.04043 Materials Science +1606.04168 Superconductivity +1606.04215 Analysis of PDEs +1606.06015 Theory +1606.07497 Populations and Evolution +1606.07834 +1606.08494 Experiment +1606.08569 +1606.08829 Physics and Society +1606.09255 Mesoscale and Nanoscale Physics +1606.09554 Materials Science +1606.09603 +1607.00434 Geophysics +1607.00472 General Mathematics +1607.00758 +1607.00980 Fluid Dynamics +1607.01300 Strongly Correlated Electrons +1607.01302 +1607.02286 Representation Theory +1607.05272 Earth and Planetary Astrophysics +1607.06405 Mesoscale and Nanoscale Physics +1607.06758 Strongly Correlated Electrons +1607.07093 Lattice +1607.07872 Cosmology and Nongalactic Astrophysics +1607.08750 Mesoscale and Nanoscale Physics +1608.00292 General Topology +1608.00384 Algebraic Geometry +1608.01289 Experiment +1608.01308 Theory +1608.01911 Social and Information Networks +1608.02352 Analysis of PDEs +1608.02754 Strongly Correlated Electrons +1608.02791 Instrumentation and Detectors +1608.02863 Combinatorics +1608.03899 Strongly Correlated Electrons +1608.04165 Information Theory +1608.04324 Analysis of PDEs +1608.04407 Theory +1608.04729 +1608.05237 Combinatorics +1608.05696 +1608.06616 Quantum Gases +1608.06807 Learning +1608.08132 Number Theory +1609.00071 Number Theory +1609.00868 Theory +1609.01029 Mesoscale and Nanoscale Physics +1609.01816 Information Theory +1609.01858 Phenomenology +1609.02112 Methodology +1609.02282 +1609.03800 Analysis of PDEs +1609.03801 Theory +1609.04896 Quantum Algebra +1609.04931 Digital Libraries +1609.05026 Fluid Dynamics +1609.05236 Algebraic Geometry +1609.06052 Applications +1609.06392 Mesoscale and Nanoscale Physics +1609.06822 Disordered Systems and Neural Networks +1609.07143 Phenomenology +1609.07229 Optimization and Control +1609.07566 Mesoscale and Nanoscale Physics +1609.07786 +1609.08187 Cryptography and Security +1609.08992 +1610.00260 Commutative Algebra +1610.00540 K-Theory and Homology +1610.01198 Methodology +1610.01462 Number Theory +1610.01542 Theory +1610.01742 Phenomenology +1610.02496 Distributed, Parallel, and Cluster Computing +1610.02606 Other Computer Science +1610.02652 Chemical Physics +1610.02808 Theory +1610.02846 Combinatorics +1610.03024 Artificial Intelligence +1610.03073 Strongly Correlated Electrons +1610.03139 Cosmology and Nongalactic Astrophysics +1610.03199 Differential Geometry +1610.03274 Complex Variables +1610.03360 Distributed, Parallel, and Cluster Computing +1610.03368 Optimization and Control +1610.03375 Statistics Theory +1610.03444 Mesoscale and Nanoscale Physics +1610.03486 Phenomenology +1610.03495 Astrophysics of Galaxies +1610.03504 Earth and Planetary Astrophysics +1610.03505 High Energy Astrophysical Phenomena +1610.03506 Cosmology and Nongalactic Astrophysics +1610.03509 High Energy Astrophysical Phenomena +1610.03510 Optics +1610.03511 Disordered Systems and Neural Networks +1610.03514 Networking and Internet Architecture +1610.03518 Robotics +1610.03520 Optics +1610.03523 Complex Variables +1610.03527 Information Theory +1610.03528 Number Theory +1610.03531 Solar and Stellar Astrophysics +1610.03534 Networking and Internet Architecture +1610.03535 Combinatorics +1610.03536 Soft Condensed Matter +1610.03537 Dynamical Systems +1610.03538 +1610.03540 +1610.03542 Computers and Society +1610.03543 Computational Complexity +1610.03547 Functional Analysis +1610.03548 Robotics +1610.03554 Social and Information Networks +1610.03555 Statistics Theory +1610.03556 +1610.03558 Mesoscale and Nanoscale Physics +1610.03560 Fluid Dynamics +1610.03563 Algebraic Geometry +1610.03566 Strongly Correlated Electrons +1610.03568 +1610.03569 +1610.03570 Optics +1610.03571 +1610.03572 Atomic Physics +1610.03573 Artificial Intelligence +1610.03574 +1610.03575 Probability +1610.03576 Superconductivity +1610.03577 Learning +1610.03580 Methodology +1610.03581 Analysis of PDEs +1610.03582 Computational Complexity +1610.03583 Rings and Algebras +1610.03584 Optics +1610.03585 Computation and Language +1610.03587 Information Theory +1610.03589 Numerical Analysis +1610.03591 Logic +1610.03593 Number Theory +1610.03595 Statistics Theory +1610.03596 Cell Behavior +1610.03598 Differential Geometry +1610.03599 Cosmology and Nongalactic Astrophysics +1610.03602 Combinatorics +1610.03603 Quantum Gases +1610.03606 Artificial Intelligence +1610.03607 +1610.03609 Metric Geometry +1610.03610 Probability +1610.03611 Probability +1610.03612 Computer Vision and Pattern Recognition +1610.03613 Numerical Analysis +1610.03614 Computer Vision and Pattern Recognition +1610.03615 Computer Vision and Pattern Recognition +1610.03616 Representation Theory +1610.03617 Statistical Mechanics +1610.03618 Distributed, Parallel, and Cluster Computing +1610.03620 Analysis of PDEs +1610.03622 +1610.03623 Computer Vision and Pattern Recognition +1610.03625 Group Theory +1610.03628 Computer Vision and Pattern Recognition +1610.03629 Solar and Stellar Astrophysics +1610.03632 +1610.03633 +1610.03634 Numerical Analysis +1610.03638 Functional Analysis +1610.03639 Optics +1610.03641 Dynamical Systems +1610.03643 Materials Science +1610.03644 Mesoscale and Nanoscale Physics +1610.03645 Optics +1610.03646 Robotics +1610.03647 Cryptography and Security +1610.03648 +1610.03649 Geophysics +1610.03650 +1610.03651 Robotics +1610.03654 Classical Analysis and ODEs +1610.03658 Commutative Algebra +1610.03660 Computer Vision and Pattern Recognition +1610.03664 Exactly Solvable and Integrable Systems +1610.03668 Populations and Evolution +1610.03669 Group Theory +1610.03674 +1610.03676 Social and Information Networks +1610.03677 Robotics +1610.03678 +1610.03679 Quantum Gases +1610.03681 Soft Condensed Matter +1610.03682 +1610.03684 Computer Vision and Pattern Recognition +1610.03685 Combinatorics +1610.03687 Methodology +1610.03688 Computational Physics +1610.03689 Lattice +1610.03691 Geometric Topology +1610.03693 Number Theory +1610.03694 Statistics Theory +1610.03696 Mesoscale and Nanoscale Physics +1610.03697 Phenomenology +1610.03700 +1610.03702 General Physics +1610.03703 General Physics +1610.03704 Human-Computer Interaction +1610.03705 Social and Information Networks +1610.03706 Digital Libraries +1610.03707 Analysis of PDEs +1610.03709 Commutative Algebra +1610.03712 Group Theory +1610.03713 Machine Learning +1610.03715 Computer Science and Game Theory +1610.03716 Mesoscale and Nanoscale Physics +1610.03717 Materials Science +1610.03719 Probability +1610.03720 Strongly Correlated Electrons +1610.03721 Data Structures and Algorithms +1610.03723 Physics Education +1610.03724 Applications +1610.03726 Functional Analysis +1610.03729 Systems and Control +1610.03734 Analysis of PDEs +1610.03735 Plasma Physics +1610.03736 Information Theory +1610.03737 Solar and Stellar Astrophysics +1610.03738 Learning +1610.03740 Rings and Algebras +1610.03741 Solar and Stellar Astrophysics +1610.03742 Mesoscale and Nanoscale Physics +1610.03744 +1610.03745 Computer Science and Game Theory +1610.03748 Analysis of PDEs +1610.03749 Classical Physics +1610.03750 Computation and Language +1610.03751 High Energy Astrophysical Phenomena +1610.03754 Classical Physics +1610.03757 Space Physics +1610.03762 Probability +1610.03764 Numerical Analysis +1610.03766 Discrete Mathematics +1610.03767 Theory +1610.03768 Geometric Topology +1610.03771 Computation and Language +1610.03772 Sound +1610.03775 Materials Science +1610.03776 Statistics Theory +1610.03777 Computer Vision and Pattern Recognition +1610.03782 Computer Vision and Pattern Recognition +1610.03784 Analysis of PDEs +1610.03786 Quantitative Methods +1610.03788 Data Structures and Algorithms +1610.03789 Solar and Stellar Astrophysics +1610.03790 +1610.03791 Algebraic Geometry +1610.03792 Information Theory +1610.03793 Learning +1610.03794 +1610.03796 Metric Geometry +1610.03798 Computational Complexity +1610.03801 Theory +1610.03803 Probability +1610.03804 Classical Analysis and ODEs +1610.03806 Soft Condensed Matter +1610.03808 +1610.03809 Neurons and Cognition +1610.03810 Quantum Algebra +1610.03817 Probability +1610.03818 +1610.03819 Numerical Analysis +1610.03820 Commutative Algebra +1610.03821 Probability +1610.03824 Analysis of PDEs +1610.03826 Strongly Correlated Electrons +1610.03827 Instrumentation and Detectors +1610.03830 Geometric Topology +1610.03831 Optimization and Control +1610.03833 Numerical Analysis +1610.03834 Networking and Internet Architecture +1610.03837 Quantum Algebra +1610.03838 +1610.03840 High Energy Astrophysical Phenomena +1610.03841 Theory +1610.03842 Algebraic Geometry +1610.03844 Rings and Algebras +hep-ph/0609282 Phenomenology +0801.2357 Chemical Physics +0811.1930 Combinatorics +0907.3925 Algebraic Topology +0908.0647 Mesoscale and Nanoscale Physics +1001.4213 Combinatorics +1003.4493 Symplectic Geometry +1004.0282 Combinatorics +1004.5023 Probability +1010.3884 Combinatorics +1103.3808 Dynamical Systems +1105.1860 Group Theory +1105.5087 Combinatorics +1202.0100 Statistical Finance +1202.4644 Other Condensed Matter +1207.1842 Statistical Finance +1208.0750 Mesoscale and Nanoscale Physics +1209.5475 Soft Condensed Matter +1209.6114 Computational Physics +1210.0463 +1211.6134 Differential Geometry +1212.4983 Mesoscale and Nanoscale Physics +1301.7293 Spectral Theory +1302.2613 Theory +1303.1879 Combinatorics +1303.2770 Combinatorics +1303.3082 Combinatorics +1303.3084 Combinatorics +1304.3549 Phenomenology +1306.1818 Chemical Physics +1306.2473 +1306.3541 Methodology +1306.5621 Instrumentation and Methods for Astrophysics +1306.6132 Combinatorics +1307.4912 Spectral Theory +1307.6437 Data Analysis, Statistics and Probability +1310.3032 Logic +1310.7236 Quantum Algebra +1311.1246 Complex Variables +1311.4932 Dynamical Systems +1311.7211 Disordered Systems and Neural Networks +1312.1634 Materials Science +1312.3161 Dynamical Systems +1401.6769 Materials Science +1402.4880 Combinatorics +1402.6981 Numerical Analysis +1403.1080 Artificial Intelligence +1403.2173 Optics +1403.6964 Solar and Stellar Astrophysics +1404.1992 Combinatorics +1406.1165 Statistical Mechanics +1407.2317 Probability +1408.0536 Rings and Algebras +1408.6882 Complex Variables +1409.1525 Differential Geometry +1409.3928 Optimization and Control +1410.0063 Algebraic Geometry +1410.5298 Symplectic Geometry +1410.6242 Numerical Analysis +1411.4274 Data Structures and Algorithms +1411.4419 Computer Vision and Pattern Recognition +1411.4705 Complex Variables +1411.6085 Quantum Algebra +1411.6946 Differential Geometry +1412.0280 Theory +1412.1354 Algebraic Geometry +1412.1355 Solar and Stellar Astrophysics +1412.2408 Differential Geometry +1412.4722 Analysis of PDEs +1412.8154 Quantum Algebra +1501.02785 Networking and Internet Architecture +1502.00328 Algebraic Geometry +1502.01204 Instrumentation and Detectors +1502.02854 Number Theory +1502.07423 Computer Vision and Pattern Recognition +1503.00689 +1503.04472 Probability +1503.07278 Differential Geometry +1504.00513 Social and Information Networks +1504.02394 Algebraic Topology +1504.02828 Algebraic Geometry +1504.03360 Mesoscale and Nanoscale Physics +1504.04424 Combinatorics +1504.05171 Computational Complexity +1504.06997 Functional Analysis +1504.08362 Computer Vision and Pattern Recognition +1505.01163 Statistics Theory +1505.03963 +1505.05044 Materials Science +1505.06761 Differential Geometry +1506.03059 Neural and Evolutionary Computing +1506.04212 Accelerator Physics +1506.07778 Number Theory +1506.08479 +1506.08568 Optimization and Control +1507.00208 Pricing of Securities +1507.00319 Fluid Dynamics +1507.03873 Numerical Analysis +1507.04852 Materials Science +1507.05235 Probability +1507.06275 Combinatorics +1507.06869 Algebraic Topology +1507.08876 Algebraic Geometry +1508.00827 Analysis of PDEs +1508.02307 Networking and Internet Architecture +1508.03302 +1508.03656 Pattern Formation and Solitons +1508.03891 Robotics +1508.04999 Learning +1508.05007 Quantum Gases +1508.07750 Logic +1509.00337 Computer Science and Game Theory +1509.00372 Trading and Market Microstructure +1509.02146 +1509.02197 Phenomenology +1509.03996 Astrophysics of Galaxies +1509.05009 Neural and Evolutionary Computing +1509.05246 Dynamical Systems +1509.05862 K-Theory and Homology +1509.06457 Trading and Market Microstructure +1509.06603 Numerical Analysis +1509.06805 Physics and Society +1509.07825 Theory +1509.08139 Analysis of PDEs +1510.00897 Representation Theory +1510.01317 Statistical Mechanics +1510.01985 Mesoscale and Nanoscale Physics +1510.02870 Soft Condensed Matter +1510.03406 Metric Geometry +1510.04386 Combinatorics +1510.05411 Number Theory +1510.05453 Cosmology and Nongalactic Astrophysics +1510.05474 Biological Physics +1510.05518 Optics +1510.05760 High Energy Astrophysical Phenomena +1510.06670 Differential Geometry +1510.07057 Astrophysics of Galaxies +1510.07060 Solar and Stellar Astrophysics +1511.00492 Physics and Society +1511.01160 Phenomenology +1511.03061 Algebraic Geometry +1511.03766 Learning +1511.04167 Superconductivity +1511.04352 Artificial Intelligence +1511.07376 Distributed, Parallel, and Cluster Computing +1511.08490 Strongly Correlated Electrons +1511.08595 Dynamical Systems +1512.00105 Differential Geometry +1512.01573 Combinatorics +1512.02620 Algebraic Geometry +1512.03058 High Energy Astrophysical Phenomena +1512.04612 Algebraic Topology +1512.05948 Computational Complexity +1512.06132 +1512.08195 Commutative Algebra +1512.08415 Computational Physics +1512.08554 Disordered Systems and Neural Networks +1512.08985 Algebraic Geometry +1601.00969 Combinatorics +1601.01009 Mesoscale and Nanoscale Physics +1601.01041 Combinatorics +1601.01325 Probability +1601.02126 Classical Analysis and ODEs +1601.04364 Dynamical Systems +1601.05074 Optimization and Control +1601.05173 Materials Science +1601.06536 Combinatorics +1601.07317 Group Theory +1601.07405 Algebraic Topology +1601.07452 Analysis of PDEs +1601.07530 Theory +1601.07718 Superconductivity +1601.07874 +1601.08197 Methodology +1602.00603 Numerical Analysis +1602.02026 Combinatorics +1602.02250 Information Theory +1602.03655 Computer Science and Game Theory +1602.03801 Computational Physics +1602.04407 Cosmology and Nongalactic Astrophysics +1602.05020 +1602.05147 Mesoscale and Nanoscale Physics +1602.05644 +1602.06520 Number Theory +1602.06980 Astrophysics of Galaxies +1602.07364 Information Theory +1602.07459 Geometric Topology +1602.07800 Machine Learning +1602.08073 Combinatorics +1602.08502 Group Theory +1602.08811 Analysis of PDEs +1603.00162 Neural and Evolutionary Computing +1603.00251 Probability +1603.00570 Learning +1603.00703 Fluid Dynamics +1603.00772 Artificial Intelligence +1603.01527 Probability +1603.01719 Instrumentation and Detectors +1603.02098 Geometric Topology +1603.02286 +1603.02343 Algebraic Geometry +1603.02493 Representation Theory +1603.02749 Mesoscale and Nanoscale Physics +1603.03164 Theory +1603.03210 Analysis of PDEs +1603.03455 Soft Condensed Matter +1603.03480 Differential Geometry +1603.03736 Materials Science +1603.04146 Computer Vision and Pattern Recognition +1603.04160 Methodology +1603.06312 Probability +1603.08317 Optics +1603.08366 Numerical Analysis +1603.08640 Number Theory +1603.08770 Theory +1603.09155 Optimization and Control +1604.00280 Complex Variables +1604.00927 Differential Geometry +1604.01397 Astrophysics of Galaxies +1604.03151 Cosmology and Nongalactic Astrophysics +1604.03384 Solar and Stellar Astrophysics +1604.03758 Computational Complexity +1604.03783 Mesoscale and Nanoscale Physics +1604.04822 Phenomenology +1604.05886 Soft Condensed Matter +1604.06055 Quantum Gases +1604.07070 Learning +1604.07338 Soft Condensed Matter +1604.07852 Superconductivity +1604.08207 High Energy Astrophysical Phenomena +1604.08551 Number Theory +1604.08591 Strongly Correlated Electrons +1604.08882 Strongly Correlated Electrons +1605.00012 Algebraic Geometry +1605.00021 Quantitative Methods +1605.02173 Theory +1605.02234 Methodology +1605.02365 Earth and Planetary Astrophysics +1605.02657 Mesoscale and Nanoscale Physics +1605.04339 Computational Physics +1605.05418 +1605.06013 Computers and Society +1605.06299 Theory +1605.06456 Theory +1605.06792 Learning +1605.07520 Statistics Theory +1605.07953 Combinatorics +1605.08285 Machine Learning +1605.08451 Superconductivity +1605.08521 +1605.08798 Machine Learning +1605.09019 Biomolecules +1605.09643 Statistical Mechanics +1605.09740 Rings and Algebras +1606.00899 Strongly Correlated Electrons +1606.00905 Superconductivity +1606.00971 Functional Analysis +1606.01499 Optics +1606.01600 Number Theory +1606.01743 High Energy Astrophysical Phenomena +1606.02216 +1606.02481 Cosmology and Nongalactic Astrophysics +1606.02516 +1606.02718 Statistical Mechanics +1606.03305 Materials Science +1606.03591 Number Theory +1606.03722 Materials Science +1606.03844 Methodology +1606.04103 Strongly Correlated Electrons +1606.04736 Mesoscale and Nanoscale Physics +1606.04970 Optimization and Control +1606.06172 Discrete Mathematics +1606.06338 Superconductivity +1606.06425 Astrophysics of Galaxies +1606.06792 +1606.06887 Phenomenology +1606.07776 Classical Physics +1606.08020 Theory +1606.09035 Logic in Computer Science +1606.09051 Materials Science +1606.09148 +1607.00203 Mesoscale and Nanoscale Physics +1607.00307 Distributed, Parallel, and Cluster Computing +1607.00368 Numerical Analysis +1607.00541 Materials Science +1607.00766 Numerical Analysis +1607.01177 Experiment +1607.01862 Superconductivity +1607.01934 +1607.01989 Computer Science and Game Theory +1607.02058 Phenomenology +1607.03367 Cosmology and Nongalactic Astrophysics +1607.03501 +1607.03848 Discrete Mathematics +1607.04120 Strongly Correlated Electrons +1607.04503 Algebraic Geometry +1607.04845 Cosmology and Nongalactic Astrophysics +1607.05006 Information Theory +1607.05008 Combinatorics +1607.05110 Strongly Correlated Electrons +1607.05331 Pattern Formation and Solitons +1607.05429 Numerical Analysis +1607.05970 Machine Learning +1607.06024 Theory +1607.06056 Mesoscale and Nanoscale Physics +1607.06148 Algebraic Geometry +1607.06180 Quantum Gases +1607.06546 Theory +1607.08197 Superconductivity +1607.08357 Dynamical Systems +1607.08657 Strongly Correlated Electrons +1608.00535 Molecular Networks +1608.00958 +1608.01382 Atomic Physics +1608.01394 Probability +1608.01488 Combinatorics +1608.02628 Numerical Analysis +1608.02638 Geometric Topology +1608.02780 Programming Languages +1608.02953 Theory +1608.02954 Theory +1608.02955 Theory +1608.02956 Theory +1608.02957 Theory +1608.02958 Theory +1608.02959 Theory +1608.02960 Theory +1608.02961 Theory +1608.02962 Theory +1608.02963 Theory +1608.02964 Theory +1608.02965 Theory +1608.02966 Theory +1608.02967 Theory +1608.02968 Theory +1608.02969 Theory +1608.03239 Earth and Planetary Astrophysics +1608.03574 Computer Science and Game Theory +1608.04118 Computational Physics +1608.05003 Mesoscale and Nanoscale Physics +1608.05919 Soft Condensed Matter +1608.06339 Information Theory +1608.06397 Analysis of PDEs +1608.06631 Optics +1608.06743 Differential Geometry +1608.08672 Number Theory +1609.01842 Materials Science +1609.02037 +1609.02241 +1609.03310 Fluid Dynamics +1609.03446 Algebraic Geometry +1609.03597 Geometric Topology +1609.04578 Number Theory +1609.04813 Theory +1609.04941 High Energy Astrophysical Phenomena +1609.05085 Statistical Mechanics +1609.05301 Functional Analysis +1609.05408 Chemical Physics +1609.05500 Dynamical Systems +1609.05521 Artificial Intelligence +1609.05537 +1609.05761 Algebraic Topology +1609.06090 Combinatorics +1609.06318 Theory +1609.06832 Combinatorics +1609.07388 +1609.07496 +1609.07594 Probability +1609.07614 Materials Science +1609.07675 Differential Geometry +1609.08053 Dynamical Systems +1609.08325 Functional Analysis +1609.09040 Probability +1609.09203 Strongly Correlated Electrons +1609.09465 Dynamical Systems +1609.09590 Differential Geometry +1610.00050 Analysis of PDEs +1610.00163 Machine Learning +1610.00230 Number Theory +1610.00292 Other Condensed Matter +1610.01129 +1610.01237 +1610.01245 Software Engineering +1610.01384 Dynamical Systems +1610.01401 Combinatorics +1610.01533 Theory +1610.01570 Mesoscale and Nanoscale Physics +1610.01825 Algebraic Geometry +1610.01833 +1610.01961 Social and Information Networks +1610.02171 Statistical Mechanics +1610.02172 Mesoscale and Nanoscale Physics +1610.02185 Analysis of PDEs +1610.02211 +1610.02247 Logic in Computer Science +1610.02328 Materials Science +1610.02446 Combinatorics +1610.02460 Numerical Analysis +1610.02608 Computational Engineering, Finance, and Science +1610.02609 Robotics +1610.02681 Theory +1610.02725 Methodology +1610.02798 Operator Algebras +1610.02891 Artificial Intelligence +1610.03005 Differential Geometry +1610.03044 Analysis of PDEs +1610.03136 Rings and Algebras +1610.03144 Analysis of PDEs +1610.03147 Learning +1610.03256 Computation and Language +1610.03325 Earth and Planetary Astrophysics +1610.03402 Theory +1610.03637 Algebraic Geometry +1610.03773 Instrumentation and Methods for Astrophysics +1610.04212 Probability +1610.04282 Dynamical Systems +1610.04431 Soft Condensed Matter +1610.04535 Rings and Algebras +1610.04543 +1610.04547 Disordered Systems and Neural Networks +1610.04608 General Physics +1610.04610 Computational Engineering, Finance, and Science +1610.04611 Phenomenology +1610.04614 Strongly Correlated Electrons +1610.04625 Spectral Theory +1610.04626 Algebraic Geometry +1610.04627 Information Theory +1610.04628 +1610.04629 Plasma Physics +1610.04632 Strongly Correlated Electrons +1610.04635 Space Physics +1610.04636 Distributed, Parallel, and Cluster Computing +1610.04637 Materials Science +1610.04641 Programming Languages +1610.04643 Logic +1610.04649 Analysis of PDEs +1610.04651 Mesoscale and Nanoscale Physics +1610.04652 Analysis of PDEs +1610.04654 Algebraic Topology +1610.04655 Fluid Dynamics +1610.04656 Other Quantitative Biology +1610.04657 Materials Science +1610.04660 Distributed, Parallel, and Cluster Computing +1610.04661 +1610.04663 Analysis of PDEs +1610.04664 Numerical Analysis +1610.04666 Accelerator Physics +1610.04667 Algebraic Geometry +1610.04668 Learning +1610.04669 Complex Variables +1610.04670 +1610.04671 Materials Science +1610.04672 Combinatorics +1610.04676 Distributed, Parallel, and Cluster Computing +1610.04678 Numerical Analysis +1610.04681 Optimization and Control +1610.04683 Dynamical Systems +1610.04684 Materials Science +1610.04687 Optics +1610.04688 Networking and Internet Architecture +1610.04690 Combinatorics +1610.04692 Materials Science +1610.04693 +1610.04695 Sound +1610.04696 Instrumentation and Methods for Astrophysics +1610.04697 Strongly Correlated Electrons +1610.04698 Numerical Analysis +1610.04699 Rings and Algebras +1610.04700 Dynamical Systems +1610.04701 Functional Analysis +1610.04702 Optimization and Control +1610.04703 Soft Condensed Matter +1610.04705 Emerging Technologies +1610.04706 Algebraic Geometry +1610.04708 +1610.04711 Data Structures and Algorithms +1610.04714 Distributed, Parallel, and Cluster Computing +1610.04715 Mesoscale and Nanoscale Physics +1610.04719 Plasma Physics +1610.04725 Computer Vision and Pattern Recognition +1610.04728 Geometric Topology +1610.04730 Computers and Society +1610.04734 Mesoscale and Nanoscale Physics +1610.04735 +1610.04738 Analysis of PDEs +1610.04741 Combinatorics +1610.04742 +1610.04751 Machine Learning +1610.04752 Databases +1610.04754 Tissues and Organs +1610.04755 +1610.04756 Analysis of PDEs +1610.04758 Human-Computer Interaction +1610.04759 Physics and Society +1610.04765 Phenomenology +1610.04766 Materials Science +1610.04767 Optimization and Control +1610.04768 Logic +1610.04770 Sound +1610.04771 Experiment +1610.04772 Analysis of PDEs +1610.04775 Strongly Correlated Electrons +1610.04780 Optics +1610.04781 +1610.04782 Machine Learning +1610.04783 Learning +1610.04784 Commutative Algebra +1610.04785 Data Structures and Algorithms +1610.04786 Earth and Planetary Astrophysics +1610.04787 Computer Vision and Pattern Recognition +1610.04788 Mesoscale and Nanoscale Physics +1610.04790 Programming Languages +1610.04793 Networking and Internet Architecture +1610.04794 Learning +1610.04795 Robotics +1610.04796 +1610.04798 Machine Learning +1610.04799 Programming Languages +1610.04800 General Topology +1610.04802 Experiment +1610.04804 Machine Learning +1610.04805 Computer Vision and Pattern Recognition +1610.04808 Physics Education +1610.04809 Computer Science and Game Theory +1610.04810 Geometric Topology +1610.04814 Information Retrieval +1610.04815 Systems and Control +1610.04820 Instrumentation and Methods for Astrophysics +1610.04821 Statistics Theory +1610.04822 Dynamical Systems +1610.04823 Computer Vision and Pattern Recognition +1610.04825 History and Overview +1610.04826 Combinatorics +1610.04827 Geophysics +1610.04829 General Topology +1610.04830 Robotics +1610.04833 Differential Geometry +1610.04835 Subcellular Processes +1610.04836 Networking and Internet Architecture +1610.04837 Symplectic Geometry +1610.04838 Data Structures and Algorithms +1610.04839 Number Theory +1610.04840 Analysis of PDEs +1610.04842 Biological Physics +1610.04843 Dynamical Systems +1610.04845 Commutative Algebra +1610.04846 Representation Theory +1610.04847 +1610.04848 +1610.04850 Information Retrieval +1610.04851 Information Theory +1610.04853 Solar and Stellar Astrophysics +1610.04856 Mesoscale and Nanoscale Physics +1610.04858 Optimization and Control +1610.04865 Number Theory +1610.04868 Optimization and Control +1610.04870 Experiment +1610.04872 Artificial Intelligence +1610.04874 Combinatorics +1610.04876 Superconductivity +1610.04877 Mesoscale and Nanoscale Physics +1610.04878 Mesoscale and Nanoscale Physics +1610.04879 K-Theory and Homology +1610.04880 Probability +1610.04881 Materials Science +1610.04882 Materials Science +1610.04883 Materials Science +1610.04884 Materials Science +1610.04885 Number Theory +1610.04887 Materials Science +1610.04888 Geometric Topology +1610.04889 Computer Vision and Pattern Recognition +1610.04890 Materials Science +1610.04891 Mesoscale and Nanoscale Physics +1610.04892 +1610.04894 Soft Condensed Matter +1610.04895 Solar and Stellar Astrophysics +1610.04896 Optics +1610.04897 +1610.04898 Theory +1610.04899 +1610.04901 Optimization and Control +1610.04902 Probability +1610.04903 +1610.04904 Differential Geometry +1610.04905 Optimization and Control +1610.04906 Experiment +1610.04910 Optimization and Control +1610.04912 Analysis of PDEs +1610.04913 Other Condensed Matter +1610.04916 Analysis of PDEs +1610.04917 Optics +1610.04920 Geometric Topology +1610.04922 Sound +1610.04924 Information Theory +1610.04927 +1610.04929 Machine Learning +1610.04930 +1610.04931 Probability +1610.04935 Data Structures and Algorithms +1610.04936 Graphics +1610.04937 +1610.04938 Classical Analysis and ODEs +1610.04939 Numerical Analysis +1610.04942 +1610.04943 Dynamical Systems +1610.04944 Algebraic Geometry +1610.04945 +1610.04947 +1610.04948 Algebraic Geometry +1610.04950 Networking and Internet Architecture +1610.04951 Instrumentation and Methods for Astrophysics +1610.04953 Materials Science +1610.04955 Logic +1610.04956 +1610.04957 Computer Vision and Pattern Recognition +1610.04958 Strongly Correlated Electrons +1610.04959 Quantitative Methods +1610.04960 Methodology +1610.04962 Neurons and Cognition +1610.04963 Databases +1610.04964 Artificial Intelligence +1610.04965 Sound +1610.04969 Number Theory +1610.04970 Strongly Correlated Electrons +1610.04971 Materials Science +1610.04972 Computer Science and Game Theory +1610.04973 Neural and Evolutionary Computing +1610.04974 Information Theory +1610.04976 Differential Geometry +1610.04977 Number Theory +1610.04979 Plasma Physics +1610.04983 Information Theory +1610.04984 Mesoscale and Nanoscale Physics +1610.04985 Probability +1610.04987 Analysis of PDEs +1610.04988 Systems and Control +1610.04989 Computation and Language +1610.04991 Phenomenology +1610.04993 Representation Theory +1610.04998 K-Theory and Homology +1610.04999 Geometric Topology +1610.05000 Solar and Stellar Astrophysics +1610.05005 Methodology +1610.05006 Representation Theory +1610.05007 Materials Science +1610.05009 Learning +1610.05010 Astrophysics of Galaxies +1610.05011 Computation and Language +1610.05015 Instrumentation and Methods for Astrophysics +1610.05016 Neural and Evolutionary Computing +1610.05018 Mathematical Finance +1610.05020 Differential Geometry +1610.05021 Optimization and Control +1610.05022 Statistics Theory +1610.05024 Strongly Correlated Electrons +1610.05026 Classical Analysis and ODEs +1610.05027 Differential Geometry +1610.05028 +1610.05029 Computational Engineering, Finance, and Science +1610.05031 Astrophysics of Galaxies +1610.05035 Methodology +1610.05036 Computer Vision and Pattern Recognition +1610.05037 Superconductivity +1610.05038 Theory +1610.05039 Combinatorics +1610.05040 Phenomenology +1610.05042 Commutative Algebra +1610.05043 Materials Science +1610.05044 Metric Geometry +1610.05045 Social and Information Networks +1610.05046 Applications +1610.05047 Computer Vision and Pattern Recognition +1610.05048 Space Physics +1610.05051 Numerical Analysis +1610.05053 Combinatorics +1610.05054 Medical Physics +1610.05055 Quantum Gases +1610.05058 Systems and Control +1610.05059 Plasma Physics +1610.05060 +1610.05063 Strongly Correlated Electrons +1610.05064 Logic in Computer Science +1610.05065 Instrumentation and Methods for Astrophysics +1610.05066 Populations and Evolution +1610.05069 K-Theory and Homology +1610.05070 Fluid Dynamics +1610.05071 Numerical Analysis +1610.05073 Differential Geometry +1610.05074 Mesoscale and Nanoscale Physics +1610.05075 Computers and Society +1610.05076 Methodology +1610.05078 +1610.05079 Materials Science +1610.05080 +1610.05081 Group Theory +1610.05085 Statistical Mechanics +1610.05086 Phenomenology +1610.05087 Number Theory +1610.05092 Analysis of PDEs +1610.05093 Combinatorics +1610.05096 Algebraic Geometry +1610.05097 Classical Physics +1610.05099 Classical Physics +1610.05100 Materials Science +1610.05101 Phenomenology +1610.05102 Differential Geometry +1610.05105 Applications +1610.05110 Strongly Correlated Electrons +1610.05112 Computers and Society +1610.05113 Populations and Evolution +1610.05116 Distributed, Parallel, and Cluster Computing +1610.05117 +1610.05118 Distributed, Parallel, and Cluster Computing +1610.05119 Materials Science +1610.05123 Phenomenology +1610.05124 Strongly Correlated Electrons +1610.05125 Analysis of PDEs +1610.05127 Optimization and Control +1610.05128 Mesoscale and Nanoscale Physics +1610.05129 Learning +1610.05132 +1610.05135 Soft Condensed Matter +1610.05137 Combinatorics +1610.05138 Analysis of PDEs +1610.05139 Astrophysics of Galaxies +1610.05140 +1610.05141 Data Structures and Algorithms +1610.05142 Systems and Control +1610.05144 Phenomenology +1610.05145 Category Theory +1610.05148 Instrumentation and Detectors +1610.05149 Astrophysics of Galaxies +1610.05151 High Energy Astrophysical Phenomena +1610.05152 Analysis of PDEs +1610.05153 +1610.05154 Materials Science +1610.05155 Data Structures and Algorithms +1610.05157 Number Theory +1610.05159 Geometric Topology +1610.05160 Machine Learning +1610.05162 Functional Analysis +1610.05163 Machine Learning +1610.05166 Materials Science +1610.05167 Chemical Physics +1610.05168 Chemical Physics +1610.05169 Chemical Physics +1610.05171 Economics +1610.05172 High Energy Astrophysical Phenomena +1610.05173 Solar and Stellar Astrophysics +1610.05174 Computer Vision and Pattern Recognition +1610.05175 Robotics +1610.05177 Astrophysics of Galaxies +1610.05178 Rings and Algebras +1610.05179 Materials Science +1610.05181 Numerical Analysis +1610.05182 Robotics +1610.05183 Applications +1610.05184 Networking and Internet Architecture +1610.05185 Solar and Stellar Astrophysics +1610.05186 Probability +1610.05188 Numerical Analysis +1610.05190 +1610.05194 Mesoscale and Nanoscale Physics +1610.05197 Materials Science +1610.05199 Probability +1610.05200 Probability +1610.05203 Classical Analysis and ODEs +1610.05205 Theory +1610.05207 Geometric Topology +1610.05208 Materials Science +1610.05209 Networking and Internet Architecture +1610.05212 Cryptography and Security +1610.05216 +1610.05220 Quantum Algebra +1610.05221 Probability +1610.05223 +1610.05224 Materials Science +1610.05225 Probability +1610.05226 Analysis of PDEs +1610.05227 Analysis of PDEs +1610.05228 Experiment +1610.05231 Neural and Evolutionary Computing +1610.05232 Statistics Theory +1610.05233 Classical Analysis and ODEs +1610.05234 Differential Geometry +1610.05235 Subcellular Processes +1610.05236 Mesoscale and Nanoscale Physics +1610.05238 Networking and Internet Architecture +1610.05239 Differential Geometry +1610.05240 Analysis of PDEs +1610.05242 Number Theory +1610.05243 Computation and Language +1610.05245 Theory +1610.05247 Machine Learning +1610.05248 Representation Theory +1610.05249 Analysis of PDEs +1610.05250 Combinatorics +1610.05251 Mesoscale and Nanoscale Physics +1610.05253 Accelerator Physics +1610.05254 +1610.05257 Physics and Society +1610.05258 Fluid Dynamics +1610.05259 Phenomenology +1610.05262 Dynamical Systems +1610.05264 Systems and Control +1610.05265 Complex Variables +1610.05267 Computer Vision and Pattern Recognition +1610.05268 Operator Algebras +1610.05272 Probability +1610.05275 Machine Learning +1610.05276 Numerical Analysis +1610.05277 Differential Geometry +1610.05278 Algebraic Geometry +1610.05279 Strongly Correlated Electrons +1610.05283 Theory +1610.05285 +1610.05288 Medical Physics +1610.05290 Algebraic Geometry +1610.05291 Quantum Algebra +1610.05293 Earth and Planetary Astrophysics +1610.05294 Dynamical Systems +1610.05296 +math/0411268 Combinatorics +math/0608702 Representation Theory +quant-ph/0406088 +1103.3713 Algebraic Geometry +1104.5661 Representation Theory +1204.5027 Statistical Mechanics +1207.4227 Rings and Algebras +1208.3537 Astrophysics of Galaxies +1301.0950 +1303.7357 Materials Science +1304.7625 Probability +1309.5502 Artificial Intelligence +1309.5508 Optimization and Control +1310.3430 Analysis of PDEs +1311.5404 Materials Science +1311.7470 +1312.5031 +1402.2970 Computer Science and Game Theory +1403.3282 Complex Variables +1403.8142 Algebraic Geometry +1405.2443 Dynamical Systems +1408.1292 Computer Vision and Pattern Recognition +1409.1107 Operator Algebras +1409.3562 +1411.2325 Algebraic Geometry +1411.6565 Materials Science +1411.7673 +1411.7799 Group Theory +1412.1559 Methodology +1501.06147 Symplectic Geometry +1502.01058 +1502.02952 Analysis of PDEs +1502.05852 Analysis of PDEs +1502.05856 Analysis of PDEs +1502.05861 Analysis of PDEs +1504.06952 Learning +1505.01692 Probability +1505.02950 Information Theory +1506.01406 Databases +1507.05051 +1507.05735 Complex Variables +1507.06243 Optimization and Control +1508.03932 Complex Variables +1508.04643 Representation Theory +1508.04713 Classical Physics +1508.04873 Geophysics +1508.04950 Algebraic Geometry +1508.05539 Logic +1509.06177 Algebraic Geometry +1509.07078 Dynamical Systems +1510.02515 Algebraic Geometry +1510.05175 Cryptography and Security +1510.05819 Optimization and Control +1510.06695 Optimization and Control +1510.08237 Molecular Networks +1511.00294 Algebraic Geometry +1511.01957 Statistics Theory +1511.02902 Mesoscale and Nanoscale Physics +1511.03697 Algebraic Geometry +1511.03721 Populations and Evolution +1511.04136 Computer Vision and Pattern Recognition +1511.06373 Theory +1511.06932 Probability +1511.07226 Numerical Analysis +1511.09152 Superconductivity +1511.09418 Exactly Solvable and Integrable Systems +1512.00216 Optimization and Control +1512.04320 Combinatorics +1512.05319 Group Theory +1512.05554 +1512.08250 Systems and Control +1512.08549 Theory +1512.09080 Probability +1601.04136 Optimization and Control +1601.04508 Mesoscale and Nanoscale Physics +1601.04767 Methodology +1601.05238 Optimization and Control +1601.05647 Computation and Language +1601.06710 Analysis of PDEs +1601.06983 Mesoscale and Nanoscale Physics +1601.07148 Pattern Formation and Solitons +1601.07750 Classical Physics +1602.01445 Methodology +1602.02015 Functional Analysis +1602.02675 Computational Engineering, Finance, and Science +1602.02708 Probability +1602.03776 Quantum Gases +1602.04164 Analysis of PDEs +1602.05621 Algebraic Geometry +1602.08121 Cosmology and Nongalactic Astrophysics +1603.02190 Phenomenology +1603.02606 Cosmology and Nongalactic Astrophysics +1603.03238 Quantitative Methods +1603.03287 Dynamical Systems +1603.03401 Analysis of PDEs +1603.03947 Sound +1603.04184 Systems and Control +1603.04407 Materials Science +1603.05859 Physics and Society +1603.07281 +1603.07334 High Energy Astrophysical Phenomena +1603.07915 Differential Geometry +1603.07974 Rings and Algebras +1603.08487 Rings and Algebras +1603.08509 Theory +1604.00702 Algebraic Geometry +1604.00850 Quantum Gases +1604.01499 Strongly Correlated Electrons +1604.01643 Neural and Evolutionary Computing +1604.01719 Theory +1604.04342 Analysis of PDEs +1604.04397 Information Theory +1604.05043 Number Theory +1604.05646 Fluid Dynamics +1604.05899 Information Theory +1604.06093 High Energy Astrophysical Phenomena +1604.07165 Mesoscale and Nanoscale Physics +1604.08606 Operator Algebras +1605.02360 Rings and Algebras +1605.03072 Learning +1605.03743 +1605.03758 Operator Algebras +1605.03990 +1605.04734 Classical Analysis and ODEs +1605.05716 Information Theory +1605.07421 Optimization and Control +1605.07539 +1605.08485 Human-Computer Interaction +1605.09098 Differential Geometry +1606.00032 Combinatorics +1606.00773 Mesoscale and Nanoscale Physics +1606.02266 Experiment +1606.02691 Differential Geometry +1606.03038 Mesoscale and Nanoscale Physics +1606.03241 Disordered Systems and Neural Networks +1606.03980 Materials Science +1606.04968 Analysis of PDEs +1606.05158 Statistics Theory +1606.05284 Operator Algebras +1606.05462 Medical Physics +1606.06676 Functional Analysis +1606.07123 Mesoscale and Nanoscale Physics +1606.08296 +1606.09245 Theory +1606.09365 Optimization and Control +1607.01299 Data Structures and Algorithms +1607.01467 Theory +1607.02271 Soft Condensed Matter +1607.02626 Mesoscale and Nanoscale Physics +1607.03342 Functional Analysis +1607.03791 Data Structures and Algorithms +1607.03840 Probability +1607.04838 Soft Condensed Matter +1607.05366 Theory +1607.05774 Analysis of PDEs +1607.06645 Medical Physics +1607.07729 Number Theory +1608.00905 Multimedia +1608.02822 Probability +1608.03725 Commutative Algebra +1608.05118 Instrumentation and Detectors +1608.05985 Statistics Theory +1608.05987 Statistics Theory +1608.06323 Mesoscale and Nanoscale Physics +1608.06430 Materials Science +1608.07005 Artificial Intelligence +1608.07151 Materials Science +1608.07671 +1608.07718 Materials Science +1608.07928 Fluid Dynamics +1608.08295 Geometric Topology +1608.08905 Learning +1609.00368 Machine Learning +1609.00508 Solar and Stellar Astrophysics +1609.00795 Biological Physics +1609.01057 Statistics Theory +1609.01295 Theory +1609.01408 Human-Computer Interaction +1609.01444 Dynamical Systems +1609.01453 Dynamical Systems +1609.01646 Analysis of PDEs +1609.01945 Logic +1609.02099 Differential Geometry +1609.02190 Geophysics +1609.02498 High Energy Astrophysical Phenomena +1609.02546 Systems and Control +1609.02604 High Energy Astrophysical Phenomena +1609.03120 +1609.03181 Algebraic Geometry +1609.03695 Human-Computer Interaction +1609.03977 Probability +1609.03980 Probability +1609.04059 +1609.04168 Theory +1609.04232 Methodology +1609.04235 Combinatorics +1609.04320 Fluid Dynamics +1609.04357 Analysis of PDEs +1609.04385 +1609.04390 Optics +1609.04398 Astrophysics of Galaxies +1609.04400 Cosmology and Nongalactic Astrophysics +1609.04402 Astrophysics of Galaxies +1609.04404 Theory +1609.04405 Astrophysics of Galaxies +1609.04406 Theory +1609.04408 +1609.04410 Instrumentation and Methods for Astrophysics +1609.04411 Instrumentation and Methods for Astrophysics +1609.04412 Instrumentation and Methods for Astrophysics +1609.04414 Probability +1609.04417 Computation and Language +1609.04418 +1609.04422 +1609.04423 Astrophysics of Galaxies +1609.04424 Dynamical Systems +1609.04425 Astrophysics of Galaxies +1609.04426 +1609.04427 +1609.04428 +1609.04429 Chaotic Dynamics +1609.04431 Algebraic Geometry +1609.04433 Combinatorics +1609.04434 High Energy Astrophysical Phenomena +1609.04435 Analysis of PDEs +1609.04436 Artificial Intelligence +1609.04437 Numerical Analysis +1609.04440 Logic +1609.04441 Analysis of PDEs +1609.04443 Populations and Evolution +1609.04445 Mesoscale and Nanoscale Physics +1609.04448 Phenomenology +1609.04449 Cryptography and Security +1609.04453 Computer Vision and Pattern Recognition +1609.04454 Theory +1609.04455 Experiment +1609.04456 Phenomenology +1609.04460 +1609.04464 Methodology +1609.04466 Applications +1609.04469 Materials Science +1609.04471 Data Structures and Algorithms +1609.04479 Optics +1609.04480 Combinatorics +1609.04482 Combinatorics +1609.04484 Numerical Analysis +1609.04486 Algebraic Geometry +1609.04487 Complex Variables +1609.04490 Number Theory +1609.04491 Numerical Analysis +1609.04493 Robotics +1609.04494 Differential Geometry +1609.04495 Learning +1609.04497 Representation Theory +1609.04498 +1609.04499 Information Theory +1609.04500 Algebraic Topology +1609.04504 Mathematical Software +1609.04506 Numerical Analysis +1609.04507 Representation Theory +1609.04510 Mesoscale and Nanoscale Physics +1609.04511 Strongly Correlated Electrons +1609.04512 Data Structures and Algorithms +1609.04514 Cryptography and Security +1609.04515 Subcellular Processes +1609.04520 Cosmology and Nongalactic Astrophysics +1609.04521 Networking and Internet Architecture +1609.04522 Machine Learning +1609.04528 Algebraic Geometry +1609.04529 Probability +1609.04530 Combinatorics +1609.04531 History and Overview +1609.04532 Representation Theory +1609.04535 Information Theory +1609.04536 Information Theory +1609.04540 Classical Analysis and ODEs +1609.04541 Machine Learning +1609.04542 Representation Theory +1609.04543 Functional Analysis +1609.04545 Mesoscale and Nanoscale Physics +1609.04546 +1609.04549 Information Theory +1609.04550 Theory +1609.04552 Networking and Internet Architecture +1609.04553 Networking and Internet Architecture +1609.04554 Networking and Internet Architecture +1609.04555 Optics +1609.04556 Information Retrieval +1609.04559 Probability +1609.04560 Differential Geometry +1609.04563 Theory +1609.04564 Optics +1609.04565 Theory +1609.04567 Distributed, Parallel, and Cluster Computing +1609.04571 Classical Analysis and ODEs +1609.04573 Algebraic Geometry +1609.04575 Phenomenology +1609.04579 Combinatorics +1609.04580 Cosmology and Nongalactic Astrophysics +1609.04583 High Energy Astrophysical Phenomena +1609.04584 +1609.04586 Information Theory +1609.04587 Analysis of PDEs +1609.04588 Dynamical Systems +1609.04589 Analysis of PDEs +1609.04593 Computational Complexity +1609.04596 Analysis of PDEs +1609.04600 Robotics +1609.04601 Numerical Analysis +1609.04602 Information Theory +1609.04603 Performance +1609.04604 Networking and Internet Architecture +1609.04606 Computational Geometry +1609.04607 Number Theory +1609.04608 Machine Learning +1609.04609 Rings and Algebras +1609.04610 Complex Variables +1609.04611 Analysis of PDEs +1609.04612 Cosmology and Nongalactic Astrophysics +1609.04613 Optics +1609.04615 Number Theory +1609.04616 Complex Variables +1609.04617 Phenomenology +1609.04618 Data Structures and Algorithms +1609.04619 Mesoscale and Nanoscale Physics +1609.04620 Trading and Market Microstructure +1609.04621 Computation and Language +1609.04622 Category Theory +1609.04623 Machine Learning +1609.04626 Combinatorics +1609.04627 Strongly Correlated Electrons +1609.04628 Computer Vision and Pattern Recognition +1609.04629 General Finance +1609.04630 Soft Condensed Matter +1609.04631 Analysis of PDEs +1609.04632 Soft Condensed Matter +1609.04635 Popular Physics +1609.04638 Populations and Evolution +1609.04642 Combinatorics +1609.04646 General Mathematics +1609.04650 Commutative Algebra +1609.04652 Human-Computer Interaction +1609.04653 Computer Vision and Pattern Recognition +1609.04654 K-Theory and Homology +1609.04656 Human-Computer Interaction +1609.04657 Human-Computer Interaction +1609.04659 Social and Information Networks +1609.04661 Data Structures and Algorithms +1609.04665 Chemical Physics +1609.04666 Systems and Control +1609.04667 Computers and Society +1609.04669 Optics +1609.04670 Differential Geometry +1609.04672 Optics +1609.04676 Algebraic Geometry +1609.04678 Chemical Physics +1609.04681 Optics +1609.04682 Methodology +1609.04684 Instrumentation and Methods for Astrophysics +1609.04685 Algebraic Geometry +1609.04689 +1609.04690 Analysis of PDEs +1609.04691 Optics +1609.04692 Combinatorics +1609.04693 Logic in Computer Science +1609.04694 Quantum Gases +1609.04695 Mesoscale and Nanoscale Physics +1609.04699 Quantitative Methods +1609.04701 Earth and Planetary Astrophysics +1609.04703 Mesoscale and Nanoscale Physics +1609.04705 Robotics +1609.04707 Probability +1609.04709 History and Philosophy of Physics +1609.04711 Fluid Dynamics +1609.04712 Analysis of PDEs +1609.04715 Number Theory +1609.04718 Cryptography and Security +1609.04720 +1609.04721 Machine Learning +1609.04727 Systems and Control +1609.04730 Robotics +1609.04731 Number Theory +1609.04732 Mesoscale and Nanoscale Physics +1609.04734 Mesoscale and Nanoscale Physics +1609.04737 Operator Algebras +1609.04738 Mesoscale and Nanoscale Physics +1609.04740 Computation +1609.04742 Instrumentation and Methods for Astrophysics +1609.04744 Probability +1609.04745 Robotics +1609.04747 Learning +1609.04748 General Mathematics +1609.04749 Differential Geometry +1609.04751 Earth and Planetary Astrophysics +1609.04754 +1609.04757 Computer Vision and Pattern Recognition +1609.04760 Materials Science +1609.04761 Combinatorics +1609.04762 Quantum Gases +1609.04765 Strongly Correlated Electrons +1609.04768 Materials Science +1609.04770 Cosmology and Nongalactic Astrophysics +1609.04771 Classical Analysis and ODEs +1609.04772 Classical Analysis and ODEs +1609.04778 Methodology +1609.04779 Computation and Language +1609.04780 Geometric Topology +1609.04781 Operating Systems +1609.04782 Computer Science and Game Theory +1609.04784 Numerical Analysis +1609.04785 Operating Systems +1609.04787 Group Theory +1609.04792 Number Theory +1609.04797 Algebraic Geometry +1609.04803 +1609.04807 Number Theory +gr-qc/0610095 +0906.2206 Analysis of PDEs +0906.4152 Algebraic Geometry +0911.3216 Cosmology and Nongalactic Astrophysics +1012.3494 Operator Algebras +1201.5921 Information Theory +1205.0956 Statistics Theory +1205.4207 Algebraic Geometry +1206.6229 General Mathematics +1208.1449 +1209.5036 Logic in Computer Science +1210.2073 Group Theory +1211.4260 Probability +1212.3261 Algebraic Geometry +1303.2103 Combinatorics +1304.0698 Logic +1305.0231 Algebraic Geometry +1305.1237 Phenomenology +1305.1567 +1308.4998 K-Theory and Homology +1310.7481 Geometric Topology +1312.3553 Combinatorics +1401.0307 Functional Analysis +1401.4197 Dynamical Systems +1401.7702 Social and Information Networks +1402.5500 Social and Information Networks +1403.4229 Probability +1403.4381 Category Theory +1403.6575 Analysis of PDEs +1404.0556 Algebraic Topology +1404.3423 Probability +1404.5097 Methodology +1405.4363 Combinatorics +1405.6004 Functional Analysis +1406.4305 Numerical Analysis +1406.6755 Dynamical Systems +1406.7057 Algebraic Geometry +1406.7808 Numerical Analysis +1407.2922 Phenomenology +1407.6661 Optimization and Control +1408.0356 Group Theory +1408.0542 Combinatorics +1408.1018 Number Theory +1409.4859 Combinatorics +1410.1038 Combinatorics +1410.2270 Phenomenology +1410.2801 Genomics +1410.2882 +1411.5874 Logic +1411.6449 Group Theory +1411.7476 Dynamical Systems +1411.7997 Functional Analysis +1412.1640 Biological Physics +1412.2402 Materials Science +1412.2909 Metric Geometry +1412.3327 Group Theory +1412.4069 Quantitative Methods +1501.00603 Theory +1501.01840 Methodology +1501.05187 Chaotic Dynamics +1501.06122 Metric Geometry +1501.06942 Combinatorics +1502.03463 Phenomenology +1502.07272 Theory +1502.07800 Algebraic Topology +1503.01139 Classical Analysis and ODEs +1503.01964 Probability +1503.03063 Analysis of PDEs +1503.03127 Chaotic Dynamics +1503.04999 Systems and Control +1503.05003 Classical Analysis and ODEs +1503.05836 Phenomenology +1504.00314 +1504.00896 Algebraic Topology +1504.01559 Superconductivity +1504.03000 Group Theory +1504.05438 Methodology +1505.00167 Mesoscale and Nanoscale Physics +1505.00675 Statistics Theory +1505.00994 Phenomenology +1505.03173 Computation +1505.04468 Group Theory +1505.04645 Phenomenology +1505.05068 Statistics Theory +1505.06460 General Topology +1505.06917 +1505.06983 Representation Theory +1505.07412 Probability +1505.07448 Combinatorics +1505.07629 Algebraic Topology +1505.08042 +1506.01022 Representation Theory +1506.03094 Cosmology and Nongalactic Astrophysics +1506.05378 Combinatorics +1506.08411 +1507.01003 +1507.01710 +1507.04373 Group Theory +1507.05888 Systems and Control +1507.06277 Number Theory +1507.07775 +1507.07881 +1507.07894 Geometric Topology +1508.00290 Analysis of PDEs +1508.00449 +1508.01462 Representation Theory +1508.03474 +1508.03758 Methodology +1508.04597 Commutative Algebra +1508.04669 Probability +1508.05771 Commutative Algebra +1509.02216 Phenomenology +1509.02959 Algebraic Topology +1509.04680 Classical Analysis and ODEs +1509.04689 +1509.05114 Group Theory +1509.05994 Dynamical Systems +1509.07168 Analysis of PDEs +1509.08067 Computer Vision and Pattern Recognition +1510.00024 Numerical Analysis +1510.04974 Analysis of PDEs +1510.04981 Analysis of PDEs +1510.06550 Phenomenology +1510.07027 Numerical Analysis +1510.07742 Dynamical Systems +1510.08125 Quantum Gases +1510.09014 Analysis of PDEs +1510.09144 Analysis of PDEs +1511.00232 Mesoscale and Nanoscale Physics +1511.00982 Logic +1511.01531 +1511.02153 Classical Analysis and ODEs +1511.06872 General Mathematics +1511.06942 Superconductivity +1511.07147 Learning +1511.07214 Differential Geometry +1511.07304 Probability +1511.07398 Materials Science +1511.08203 Solar and Stellar Astrophysics +1511.09354 Methodology +1511.09422 Machine Learning +1511.09430 Exactly Solvable and Integrable Systems +1512.00667 Mesoscale and Nanoscale Physics +1512.02187 Theory +1512.02275 Functional Analysis +1512.04220 Cosmology and Nongalactic Astrophysics +1512.07302 Operator Algebras +1512.07575 K-Theory and Homology +1512.07849 Discrete Mathematics +1512.08384 Algebraic Geometry +1512.09092 Phenomenology +1512.09250 Number Theory +1601.00078 Probability +1601.01629 Algebraic Topology +1601.01671 Cosmology and Nongalactic Astrophysics +1601.01959 Analysis of PDEs +1601.02119 Representation Theory +1601.03033 Algebraic Geometry +1601.03297 Experiment +1601.03958 Social and Information Networks +1601.04485 Information Theory +1601.07574 Neurons and Cognition +1602.00890 Phenomenology +1602.01587 Functional Analysis +1602.01816 Phenomenology +1602.02355 Machine Learning +1602.02557 Mesoscale and Nanoscale Physics +1602.02915 Optimization and Control +1602.04306 +1602.04997 Classical Analysis and ODEs +1602.05303 Quantum Gases +1602.05465 Exactly Solvable and Integrable Systems +1602.06032 Statistical Mechanics +1602.06748 Analysis of PDEs +1602.07129 Materials Science +1602.07184 Commutative Algebra +1602.07438 Instrumentation and Detectors +1602.07508 Number Theory +1602.08204 Information Theory +1602.08895 Numerical Analysis +1603.00446 Statistical Mechanics +1603.00663 Robotics +1603.01489 Software Engineering +1603.02281 Astrophysics of Galaxies +1603.02696 Strongly Correlated Electrons +1603.03656 Networking and Internet Architecture +1603.05076 General Physics +1603.05177 Materials Science +1603.07248 Differential Geometry +1603.07272 Group Theory +1603.07939 Computer Science and Game Theory +1603.08263 +1603.08422 Commutative Algebra +1604.00307 Algebraic Geometry +1604.00409 Computer Vision and Pattern Recognition +1604.01379 Theory +1604.01691 Mesoscale and Nanoscale Physics +1604.01927 Mesoscale and Nanoscale Physics +1604.02740 Number Theory +1604.03423 Combinatorics +1604.04203 Neurons and Cognition +1604.05079 Solar and Stellar Astrophysics +1604.05736 Statistical Mechanics +1604.05960 Probability +1604.06265 Algebraic Geometry +1604.06740 Statistical Mechanics +1604.07467 Data Structures and Algorithms +1604.08224 Mathematical Finance +1605.00431 Dynamical Systems +1605.00975 Information Theory +1605.00989 Earth and Planetary Astrophysics +1605.01360 Chemical Physics +1605.01640 Strongly Correlated Electrons +1605.02125 Operator Algebras +1605.02663 Statistical Mechanics +1605.03303 Disordered Systems and Neural Networks +1605.05310 Number Theory +1605.06005 +1605.07553 Number Theory +1605.07585 Quantum Gases +1605.07646 Methodology +1605.08201 Information Theory +1605.09146 Dynamical Systems +1605.09175 Theory +1605.09278 +1606.00426 Commutative Algebra +1606.01070 Superconductivity +1606.01128 Optimization and Control +1606.01736 Experiment +1606.02345 Group Theory +1606.03974 Classical Analysis and ODEs +1606.04118 Strongly Correlated Electrons +1606.05111 Strongly Correlated Electrons +1606.05445 General Topology +1606.06157 Classical Analysis and ODEs +1606.06760 Probability +1606.08798 Lattice +1606.09432 Computational Physics +1607.00831 Materials Science +1607.00904 Number Theory +1607.01107 Dynamical Systems +1607.01962 Classical Analysis and ODEs +1607.02259 +1607.03223 Phenomenology +1607.03311 Analysis of PDEs +1607.04043 Differential Geometry +1607.04264 High Energy Astrophysical Phenomena +1607.05137 Mesoscale and Nanoscale Physics +1607.05783 +1607.06802 Methodology +1607.06815 High Energy Astrophysical Phenomena +1607.07057 Computation and Language +1607.07959 Learning +1608.00110 Rings and Algebras +1608.02079 High Energy Astrophysical Phenomena +1608.02148 Computation +1608.02183 Computer Vision and Pattern Recognition +1608.02251 Statistics Theory +1608.02675 +1608.02709 Data Structures and Algorithms +1608.02875 Optimization and Control +1608.03255 Theory +1608.03915 Number Theory +1608.03924 Classical Analysis and ODEs +1608.04161 Chemical Physics +1608.04173 Instrumentation and Detectors +1608.05582 Computational Physics +1608.05822 Analysis of PDEs +1608.05862 +1608.05918 Number Theory +1608.05921 Machine Learning +1608.06350 Combinatorics +1608.06472 Cryptography and Security +1608.06613 Information Theory +1608.06742 Algebraic Geometry +1608.06884 Machine Learning +1608.06980 Data Structures and Algorithms +1608.07084 Probability +1608.07568 Discrete Mathematics +1608.07719 Learning +1608.07769 Analysis of PDEs +1608.07800 Information Theory +1608.07801 Applications +1608.08051 Operating Systems +1608.08159 Combinatorics +1608.08271 Biological Physics +1608.08360 +1608.08435 Learning +1608.08647 Number Theory +1608.08657 Optimization and Control +1608.08697 +1608.08897 Statistical Mechanics +1608.08898 Learning +1609.00086 Learning +1609.00099 Cryptography and Security +1609.00100 Cryptography and Security +1609.00183 Human-Computer Interaction +1609.00435 Computation and Language +1609.00464 Information Retrieval +1609.00573 Numerical Analysis +1609.00633 Symplectic Geometry +1609.00682 Physics and Society +1609.00711 Statistics Theory +1609.00719 Computational Geometry +1609.00721 Algebraic Geometry +1609.00724 Solar and Stellar Astrophysics +1609.00730 Cosmology and Nongalactic Astrophysics +1609.00731 Solar and Stellar Astrophysics +1609.00734 Atmospheric and Oceanic Physics +1609.00735 +1609.00736 Methodology +1609.00738 Combinatorics +1609.00740 Medical Physics +1609.00741 Classical Physics +1609.00743 Fluid Dynamics +1609.00745 +1609.00748 Geometric Topology +1609.00749 Phenomenology +1609.00752 Data Analysis, Statistics and Probability +1609.00754 Human-Computer Interaction +1609.00755 Data Structures and Algorithms +1609.00758 Mesoscale and Nanoscale Physics +1609.00759 Artificial Intelligence +1609.00762 Neurons and Cognition +1609.00763 Combinatorics +1609.00765 Numerical Analysis +1609.00766 Optics +1609.00769 Probability +1609.00770 Computation +1609.00772 Dynamical Systems +1609.00773 Symplectic Geometry +1609.00774 Symplectic Geometry +1609.00775 Information Theory +1609.00776 Analysis of PDEs +1609.00778 Algebraic Topology +1609.00781 Fluid Dynamics +1609.00783 Fluid Dynamics +1609.00784 Classical Analysis and ODEs +1609.00787 +1609.00788 Populations and Evolution +1609.00790 Social and Information Networks +1609.00791 Databases +1609.00793 Soft Condensed Matter +1609.00798 +1609.00799 Information Retrieval +1609.00800 Atomic Physics +1609.00805 General Topology +1609.00807 Numerical Analysis +1609.00808 Combinatorics +1609.00809 Instrumentation and Methods for Astrophysics +1609.00810 Data Structures and Algorithms +1609.00813 Information Theory +1609.00814 Statistics Theory +1609.00815 Optics +1609.00817 Computer Vision and Pattern Recognition +1609.00821 Analysis of PDEs +1609.00823 Probability +1609.00829 Numerical Analysis +1609.00830 Commutative Algebra +1609.00833 Information Theory +1609.00834 Methodology +1609.00835 Combinatorics +1609.00837 Geometric Topology +1609.00838 Probability +1609.00839 General Mathematics +1609.00840 Commutative Algebra +1609.00842 Optimization and Control +1609.00843 Learning +1609.00844 Phenomenology +1609.00845 Machine Learning +1609.00847 +1609.00849 Commutative Algebra +1609.00850 Physics Education +1609.00859 Materials Science +1609.00861 Statistics Theory +1609.00862 Optimization and Control +1609.00866 Computer Vision and Pattern Recognition +1609.00867 Computational Geometry +1609.00869 Risk Management +1609.00871 Data Analysis, Statistics and Probability +1609.00873 Experiment +1609.00875 Operating Systems +1609.00876 Physics and Society +1609.00878 Computer Vision and Pattern Recognition +1609.00880 Materials Science +1609.00881 Cryptography and Security +1609.00883 Statistics Theory +1609.00885 Probability +1609.00887 Systems and Control +1609.00888 Materials Science +1609.00890 Classical Analysis and ODEs +1609.00891 Classical Analysis and ODEs +1609.00893 Numerical Analysis +1609.00896 Data Structures and Algorithms +1609.00897 Differential Geometry +1609.00898 Earth and Planetary Astrophysics +1609.00900 Neurons and Cognition +1609.00903 Accelerator Physics +1609.00904 Artificial Intelligence +1609.00908 Methodology +1609.00909 Combinatorics +1609.00910 Algebraic Geometry +1609.00911 +1609.00913 +1609.00914 Combinatorics +1609.00915 Instrumentation and Methods for Astrophysics +1609.00916 Fluid Dynamics +1609.00917 +1609.00920 Algebraic Topology +1609.00921 Machine Learning +1609.00922 Analysis of PDEs +1609.00925 Mesoscale and Nanoscale Physics +1609.00932 Learning +1609.00933 Combinatorics +1609.00934 Information Theory +1609.00935 Probability +1609.00936 Functional Analysis +1609.00938 Soft Condensed Matter +1609.00939 Representation Theory +1609.00940 Statistics Theory +1609.00943 Phenomenology +1609.00944 Rings and Algebras +1609.00952 Commutative Algebra +1609.00953 +1609.00954 +1609.00955 Commutative Algebra +1609.00956 Algebraic Geometry +1609.00957 Complex Variables +1609.00959 Genomics +1609.00961 +1609.00963 Representation Theory +1609.00964 +1609.00966 +1609.00967 Computer Vision and Pattern Recognition +1609.00968 +1609.00969 Information Retrieval +1609.00971 +1609.00974 Statistical Mechanics +1609.00978 Machine Learning +1609.00979 Analysis of PDEs +1609.00980 Combinatorics +1609.00982 Solar and Stellar Astrophysics +1609.00983 Combinatorics +1609.00984 Quantum Algebra +1609.00989 Probability +1609.00990 Databases +1609.00992 Information Retrieval +1609.00993 Probability +1609.00995 Instrumentation and Methods for Astrophysics +1609.00996 Computational Physics +1609.00997 Algebraic Geometry +1609.00999 Mathematical Software +1609.01000 Learning +1609.01002 Combinatorics +1609.01003 Probability +1609.01007 Probability +1609.01008 Differential Geometry +1609.01010 Symbolic Computation +1609.01011 Analysis of PDEs +1609.01014 Astrophysics of Galaxies +1609.01015 Neurons and Cognition +1609.01016 Combinatorics +1609.01017 Human-Computer Interaction +1609.01019 Optimization and Control +1609.01020 Materials Science +1609.01021 Superconductivity +1609.01022 Computation +1609.01023 Plasma Physics +1609.01028 Optimization and Control +1609.01033 Algebraic Geometry +1609.01034 Geophysics +1609.01036 Metric Geometry +1609.01038 Superconductivity +1609.01039 Representation Theory +1609.01041 Instrumentation and Methods for Astrophysics +1609.01042 Combinatorics +1609.01043 Networking and Internet Architecture +1609.01044 Robotics +1609.01045 Emerging Technologies +1609.01046 Numerical Analysis +1609.01047 Materials Science +1609.01048 Combinatorics +1609.01053 Information Theory +1609.01054 Materials Science +1609.01055 Distributed, Parallel, and Cluster Computing +1609.01058 Number Theory +1609.01062 Complex Variables +1609.01064 Computer Vision and Pattern Recognition +1609.01065 Quantum Gases +1609.01066 Probability +1609.01067 Statistics Theory +1609.01068 Distributed, Parallel, and Cluster Computing +1609.01070 Human-Computer Interaction +1609.01071 Solar and Stellar Astrophysics +1609.01072 Astrophysics of Galaxies +1609.01073 +1609.01074 Optimization and Control +1609.01075 Mesoscale and Nanoscale Physics +1609.01076 Strongly Correlated Electrons +1609.01078 Computational Complexity +1609.01082 Fluid Dynamics +1609.01083 Functional Analysis +1609.01084 Dynamical Systems +1609.01088 Mathematical Software +1609.01097 Operator Algebras +1609.01100 Computer Vision and Pattern Recognition +1609.01101 Networking and Internet Architecture +1609.01102 Combinatorics +1609.01104 Information Theory +1609.01105 Physics and Society +1609.01107 Software Engineering +1609.01109 Functional Analysis +1609.01110 Cosmology and Nongalactic Astrophysics +1609.01112 Optics +1609.01115 Combinatorics +1609.01116 Discrete Mathematics +1609.01117 Information Theory +1609.01120 Combinatorics +1609.01123 Analysis of PDEs +1609.01124 +1609.01128 Combinatorics +1609.01131 Computers and Society +1609.01134 Instrumentation and Methods for Astrophysics +1609.01136 Information Theory +1609.01137 Biological Physics +1609.01138 Probability +1609.01139 Information Theory +1609.01140 Solar and Stellar Astrophysics +1609.01141 Rings and Algebras +1609.01144 Rings and Algebras +1609.01145 Atomic and Molecular Clusters +1609.01146 Numerical Analysis +1609.01149 +1609.01155 General Mathematics +1609.01156 +1609.01158 Optics +1609.01160 Number Theory +1609.01163 Popular Physics +1609.01165 Statistics Theory +1609.01166 Algebraic Geometry +1609.01167 High Energy Astrophysical Phenomena +1609.01169 Differential Geometry +1609.01170 Geometric Topology +1609.01171 Programming Languages +1609.01172 Chemical Physics +1609.01173 Statistical Mechanics +1609.01175 +1609.01176 Learning +1609.01178 Information Theory +1609.01180 Statistical Mechanics +1609.01183 Representation Theory +1609.01186 Computers and Society +1609.01187 Computers and Society +1609.01188 Computation and Language +1609.01190 Networking and Internet Architecture +1609.01191 +1609.01194 Classical Analysis and ODEs +1609.01195 Algebraic Geometry +1609.01196 Dynamical Systems +1609.01197 Number Theory +1609.01198 +1609.01200 Mesoscale and Nanoscale Physics +1609.01201 Chemical Physics +1609.01202 Theory +1609.01203 Learning +1609.01205 Cosmology and Nongalactic Astrophysics +1609.01206 Experiment +1609.01207 Physics and Society +1609.01210 Soft Condensed Matter +1609.01211 Systems and Control +1609.01213 Number Theory +1609.01215 Materials Science +1609.01217 Physics and Society +1609.01218 Classical Analysis and ODEs +1609.01219 Mesoscale and Nanoscale Physics +1609.01220 Logic in Computer Science +1609.01221 Combinatorics +1609.01223 Materials Science +1609.01224 Number Theory +1609.01226 Learning +1609.01228 Computer Vision and Pattern Recognition +1609.01232 Complex Variables +1609.01235 Computation and Language +1609.01236 Classical Analysis and ODEs +1609.01238 Probability +1609.01239 Physics and Society +1609.01240 Combinatorics +1609.01241 +1609.01242 Differential Geometry +1609.01243 Differential Geometry +1609.01244 Mesoscale and Nanoscale Physics +1609.01247 Combinatorics +1609.01249 Classical Analysis and ODEs +1609.01255 Numerical Analysis +1609.01256 Earth and Planetary Astrophysics +1609.01259 High Energy Astrophysical Phenomena +1609.01261 Dynamical Systems +1609.01262 Number Theory +1609.01264 Complex Variables +1609.01266 Discrete Mathematics +1609.01268 Mesoscale and Nanoscale Physics +1609.01269 Analysis of PDEs +1609.01273 Probability +hep-ph/0001059 Phenomenology +hep-ph/0001100 Phenomenology +hep-ph/0001174 Phenomenology +hep-ph/0001183 Phenomenology +hep-ph/0001230 Phenomenology +hep-ph/0001243 Phenomenology +hep-ph/0001270 Phenomenology +hep-ph/0001303 Phenomenology +hep-ph/0001320 Phenomenology +hep-ph/0002029 Phenomenology +hep-ph/0002035 Phenomenology +hep-ph/0002043 Phenomenology +hep-ph/0002060 Phenomenology +hep-ph/0002084 Phenomenology +hep-ph/0002091 Phenomenology +hep-ph/0002119 Phenomenology +hep-ph/0002159 Phenomenology +hep-ph/0002291 Phenomenology +hep-ph/0003016 Phenomenology +hep-ph/0003087 Phenomenology +hep-ph/0003104 Phenomenology +hep-ph/0003150 Phenomenology +hep-ph/0003202 Phenomenology +hep-ph/0003285 Phenomenology +hep-ph/0003291 Phenomenology +hep-ph/0003322 Phenomenology +hep-ph/0004080 Phenomenology +hep-ph/0004109 Phenomenology +hep-ph/0004132 Phenomenology +hep-ph/0004176 Phenomenology +hep-ph/0004185 Phenomenology +hep-ph/0004193 Phenomenology +hep-ph/0004230 Phenomenology +hep-ph/0005024 Phenomenology +hep-ph/0005063 Phenomenology +hep-ph/0005071 Phenomenology +hep-ph/0005107 Phenomenology +hep-ph/0005141 Phenomenology +hep-ph/0005154 Phenomenology +hep-ph/0005186 Phenomenology +hep-ph/0005212 Phenomenology +hep-ph/0005213 Phenomenology +hep-ph/0005231 Phenomenology +hep-ph/0005260 Phenomenology +hep-ph/0005271 Phenomenology +hep-ph/0006057 Phenomenology +hep-ph/0006130 Phenomenology +hep-ph/0006194 Phenomenology +hep-ph/0006210 Phenomenology +hep-ph/0006236 Phenomenology +hep-ph/0006326 Phenomenology +hep-ph/0006336 Phenomenology +hep-ph/0006337 Phenomenology +hep-ph/0007014 Phenomenology +hep-ph/0007044 Phenomenology +hep-ph/0007048 Phenomenology +hep-ph/0007115 Phenomenology +hep-ph/0007127 Phenomenology +hep-ph/0007144 Phenomenology +hep-ph/0007232 Phenomenology +hep-ph/0007248 Phenomenology +hep-ph/0007274 Phenomenology +hep-ph/0007279 Phenomenology +hep-ph/0007303 Phenomenology +hep-ph/0007306 Phenomenology +hep-ph/0008151 Phenomenology +hep-ph/0008163 Phenomenology +hep-ph/0008282 Phenomenology +hep-ph/0009056 Phenomenology +hep-ph/0009097 Phenomenology +hep-ph/0009120 Phenomenology +hep-ph/0009239 Phenomenology +hep-ph/0009287 Phenomenology +hep-ph/0009322 Phenomenology +hep-ph/0010020 Phenomenology +hep-ph/0010063 Phenomenology +hep-ph/0010108 Phenomenology +hep-ph/0010159 Phenomenology +hep-ph/0010261 Phenomenology +hep-ph/0010285 Phenomenology +hep-ph/0011037 Phenomenology +hep-ph/0011069 Phenomenology +hep-ph/0011101 Phenomenology +hep-ph/0011125 Phenomenology +hep-ph/0011171 Phenomenology +hep-ph/0011198 Phenomenology +hep-ph/0011204 Phenomenology +hep-ph/0011237 Phenomenology +hep-ph/0011319 Phenomenology +hep-ph/0011347 Phenomenology +hep-ph/0012006 Phenomenology +hep-ph/0012022 Phenomenology +hep-ph/0012030 Phenomenology +hep-ph/0012041 Phenomenology +hep-ph/0012106 Phenomenology +hep-ph/0012136 Phenomenology +hep-ph/0012142 Phenomenology +hep-ph/0012220 Phenomenology +hep-ph/0012312 Phenomenology +hep-ph/0012320 Phenomenology +hep-ph/0012342 Phenomenology +hep-ph/0012343 Phenomenology +hep-ph/0012356 Phenomenology +hep-ph/0012368 Phenomenology +hep-ph/0101112 Phenomenology +hep-ph/0101138 Phenomenology +hep-ph/0101189 Phenomenology +hep-ph/0102023 Phenomenology +hep-ph/0102064 Phenomenology +hep-ph/0102065 Phenomenology +hep-ph/0102092 Phenomenology +hep-ph/0102194 Phenomenology +hep-ph/0102199 Phenomenology +hep-ph/0102219 Phenomenology +hep-ph/0102232 Phenomenology +hep-ph/0102248 Phenomenology +hep-ph/0102276 Phenomenology +hep-ph/0102335 Phenomenology +hep-ph/0103007 Phenomenology +hep-ph/0103008 Phenomenology +hep-ph/0103047 Phenomenology +hep-ph/0103060 Phenomenology +hep-ph/0103097 Phenomenology +hep-ph/0103109 Phenomenology +hep-ph/0103173 Phenomenology +hep-ph/0103189 Phenomenology +hep-ph/0103190 Phenomenology +hep-ph/0103262 Phenomenology +hep-ph/0103287 Phenomenology +hep-ph/0104046 Phenomenology +hep-ph/0104064 Phenomenology +hep-ph/0104073 Phenomenology +hep-ph/0104098 Phenomenology +hep-ph/0104123 Phenomenology +hep-ph/0104138 Phenomenology +hep-ph/0104179 Phenomenology +hep-ph/0104205 Phenomenology +hep-ph/0104220 Phenomenology +hep-ph/0104230 Phenomenology +hep-ph/0105003 Phenomenology +hep-ph/0105060 Phenomenology +hep-ph/0105075 Phenomenology +hep-ph/0105077 Phenomenology +hep-ph/0105094 Phenomenology +hep-ph/0105117 Phenomenology +hep-ph/0105230 Phenomenology +hep-ph/0105244 Phenomenology +hep-ph/0105281 Phenomenology +hep-ph/0105282 Phenomenology +hep-ph/0105294 Phenomenology +hep-ph/0105311 Phenomenology +hep-ph/0105320 Phenomenology +hep-ph/0106012 Phenomenology +hep-ph/0106018 Phenomenology +hep-ph/0106066 Phenomenology +hep-ph/0106082 Phenomenology +hep-ph/0106087 Phenomenology +hep-ph/0106100 Phenomenology +hep-ph/0106118 Phenomenology +hep-ph/0106149 Phenomenology +hep-ph/0106185 Phenomenology +hep-ph/0106202 Phenomenology +hep-ph/0107019 Phenomenology +hep-ph/0107170 Phenomenology +hep-ph/0107302 Phenomenology +hep-ph/0108013 Phenomenology +hep-ph/0108153 Phenomenology +hep-ph/0108179 Phenomenology +hep-ph/0109035 Phenomenology +hep-ph/0109065 Phenomenology +hep-ph/0109086 Phenomenology +hep-ph/0109116 Phenomenology +hep-ph/0109261 Phenomenology +hep-ph/0109281 Phenomenology +hep-ph/0110012 Phenomenology +hep-ph/0110048 Phenomenology +hep-ph/0110101 Phenomenology +hep-ph/0110130 Phenomenology +hep-ph/0110149 Phenomenology +hep-ph/0110162 Phenomenology +hep-ph/0110173 Phenomenology +hep-ph/0110202 Phenomenology +hep-ph/0110383 Phenomenology +hep-ph/0111064 Phenomenology +hep-ph/0111158 Phenomenology +hep-ph/0111188 Phenomenology +hep-ph/0111271 Phenomenology +hep-ph/0111332 Phenomenology +hep-ph/0111350 Phenomenology +hep-ph/0111371 Phenomenology +hep-ph/0112102 Phenomenology +hep-ph/0112180 Phenomenology +hep-ph/0112185 Phenomenology +hep-ph/0112228 Phenomenology +hep-ph/0112359 Phenomenology +hep-ph/0201030 Phenomenology +hep-ph/0201058 Phenomenology +hep-ph/0201061 Phenomenology +hep-ph/0201065 Phenomenology +hep-ph/0201135 Phenomenology +hep-ph/0201152 Phenomenology +hep-ph/0201171 Phenomenology +hep-ph/0201186 Phenomenology +hep-ph/0201202 Phenomenology +hep-ph/0201219 Phenomenology +hep-ph/0201231 Phenomenology +hep-ph/0201303 Phenomenology +hep-ph/0202057 Phenomenology +hep-ph/0202133 Phenomenology +hep-ph/0202211 Phenomenology +hep-ph/0202260 Phenomenology +hep-ph/0202276 Phenomenology +hep-ph/0203055 Phenomenology +hep-ph/0203087 Phenomenology +hep-ph/0203142 Phenomenology +hep-ph/0203144 Phenomenology +hep-ph/0203155 Phenomenology +hep-ph/0203157 Phenomenology +hep-ph/0203197 Phenomenology +hep-ph/0203249 Phenomenology +hep-ph/0204021 Phenomenology +hep-ph/0204055 Phenomenology +hep-ph/0204079 Phenomenology +hep-ph/0204117 Phenomenology +hep-ph/0204160 Phenomenology +hep-ph/0204351 Phenomenology +hep-ph/0204355 Phenomenology +hep-ph/0205028 Phenomenology +hep-ph/0205045 Phenomenology +hep-ph/0205116 Phenomenology +hep-ph/0205123 Phenomenology +hep-ph/0205170 Phenomenology +hep-ph/0205278 Phenomenology +hep-ph/0206030 Phenomenology +hep-ph/0206048 Phenomenology +hep-ph/0206144 Phenomenology +hep-ph/0206223 Phenomenology +hep-ph/0207046 Phenomenology +hep-ph/0207090 Phenomenology +hep-ph/0207157 Phenomenology +hep-ph/0207174 Phenomenology +hep-ph/0207176 Phenomenology +hep-ph/0207301 Phenomenology +hep-ph/0207309 Phenomenology +hep-ph/0207337 Phenomenology +hep-ph/0208085 Phenomenology +hep-ph/0208192 Phenomenology +hep-ph/0208211 Phenomenology +hep-ph/0208275 Phenomenology +hep-ph/0209062 Phenomenology +hep-ph/0209106 Phenomenology +hep-ph/0209126 Phenomenology +hep-ph/0209198 Phenomenology +hep-ph/0209354 Phenomenology +hep-ph/0210008 Phenomenology +hep-ph/0210010 Phenomenology +hep-ph/0210113 Phenomenology +hep-ph/0210140 Phenomenology +hep-ph/0210227 Phenomenology +hep-ph/0210307 Phenomenology +hep-ph/0211053 Phenomenology +hep-ph/0211221 Phenomenology +hep-ph/0211347 Phenomenology +hep-ph/0211355 Phenomenology +hep-ph/0211375 Phenomenology +hep-ph/0211391 Phenomenology +hep-ph/0211414 Phenomenology +hep-ph/0212021 Phenomenology +hep-ph/0212052 Phenomenology +hep-ph/0212055 Phenomenology +hep-ph/0212060 Phenomenology +hep-ph/0212061 Phenomenology +hep-ph/0212110 Phenomenology +hep-ph/0212139 Phenomenology +hep-ph/0212145 Phenomenology +hep-ph/0212169 Phenomenology +hep-ph/0212194 Phenomenology +hep-ph/0212212 Phenomenology +hep-ph/0212308 Phenomenology +hep-ph/0212368 Phenomenology +hep-ph/0212403 Phenomenology +hep-ph/0301138 Phenomenology +hep-ph/0301144 Phenomenology +hep-ph/0301194 Phenomenology +hep-ph/0301239 Phenomenology +hep-ph/0301250 Phenomenology +hep-ph/0301252 Phenomenology +hep-ph/0302010 Phenomenology +hep-ph/0302019 Phenomenology +hep-ph/0302044 Phenomenology +hep-ph/0302104 Phenomenology +hep-ph/0302190 Phenomenology +hep-ph/0303047 Phenomenology +hep-ph/0303097 Phenomenology +hep-ph/0303101 Phenomenology +hep-ph/0303121 Phenomenology +hep-ph/0303131 Phenomenology +hep-ph/0303144 Phenomenology +hep-ph/0303245 Phenomenology +hep-ph/0304045 Phenomenology +hep-ph/0304050 Phenomenology +hep-ph/0304172 Phenomenology +hep-ph/0304196 Phenomenology +hep-ph/0304204 Phenomenology +hep-ph/0304292 Phenomenology +hep-ph/0305074 Phenomenology +hep-ph/0305140 Phenomenology +hep-ph/0305185 Phenomenology +hep-ph/0305220 Phenomenology +hep-ph/0305222 Phenomenology +hep-ph/0305228 Phenomenology +hep-ph/0305231 Phenomenology +hep-ph/0305259 Phenomenology +hep-ph/0305303 Phenomenology +hep-ph/0306007 Phenomenology +hep-ph/0306030 Phenomenology +hep-ph/0306040 Phenomenology +hep-ph/0306047 Phenomenology +hep-ph/0306052 Phenomenology +hep-ph/0306100 Phenomenology +hep-ph/0306133 Phenomenology +hep-ph/0306151 Phenomenology +hep-ph/0307006 Phenomenology +hep-ph/0307077 Phenomenology +hep-ph/0307189 Phenomenology +hep-ph/0307209 Phenomenology +hep-ph/0307249 Phenomenology +hep-ph/0307267 Phenomenology +hep-ph/0307364 Phenomenology +hep-ph/0308171 Phenomenology +hep-ph/0308236 Phenomenology +hep-ph/0308256 Phenomenology +hep-ph/0309012 Phenomenology +hep-ph/0309029 Phenomenology +hep-ph/0310002 Phenomenology +hep-ph/0310120 Phenomenology +hep-ph/0310131 Phenomenology +hep-ph/0310179 Phenomenology +hep-ph/0311097 Phenomenology +hep-ph/0311225 Phenomenology +hep-ph/0311230 Phenomenology +hep-ph/0311261 Phenomenology +hep-ph/0311317 Phenomenology +hep-ph/0311323 Phenomenology +hep-ph/0311350 Phenomenology +hep-ph/0311365 Phenomenology +hep-ph/0312029 Phenomenology +hep-ph/0312069 Phenomenology +hep-ph/0312085 Phenomenology +hep-ph/0312198 Phenomenology +hep-ph/0312199 Phenomenology +hep-ph/0401046 Phenomenology +hep-ph/0401157 Phenomenology +hep-ph/0402059 Phenomenology +hep-ph/0402086 Phenomenology +hep-ph/0402089 Phenomenology +hep-ph/0403170 Phenomenology +hep-ph/0403259 Phenomenology +hep-ph/0403283 Phenomenology +hep-ph/0403301 Phenomenology +hep-ph/0404171 Phenomenology +hep-ph/0404223 Phenomenology +hep-ph/0404241 Phenomenology +hep-ph/0404279 Phenomenology +hep-ph/0405018 Phenomenology +hep-ph/0405046 Phenomenology +hep-ph/0405259 Phenomenology +hep-ph/0405284 Phenomenology +hep-ph/0406002 Phenomenology +hep-ph/0406010 Phenomenology +hep-ph/0406129 Phenomenology +hep-ph/0406131 Phenomenology +hep-ph/0406173 Phenomenology +hep-ph/0406185 Phenomenology +hep-ph/0406249 Phenomenology +hep-ph/0406250 Phenomenology +hep-ph/0406324 Phenomenology +hep-ph/0407038 Phenomenology +hep-ph/0407092 Phenomenology +hep-ph/0407108 Phenomenology +hep-ph/0407152 Phenomenology +hep-ph/0407183 Phenomenology +hep-ph/0407225 Phenomenology +hep-ph/0407259 Phenomenology +hep-ph/0407310 Phenomenology +hep-ph/0407333 Phenomenology +hep-ph/0408042 Phenomenology +hep-ph/0408090 Phenomenology +hep-ph/0408151 Phenomenology +hep-ph/0408177 Phenomenology +hep-ph/0408302 Phenomenology +hep-ph/0409117 Phenomenology +hep-ph/0409123 Phenomenology +hep-ph/0409174 Phenomenology +hep-ph/0409267 Phenomenology +hep-ph/0409283 Phenomenology +hep-ph/0409285 Phenomenology +hep-ph/0409301 Phenomenology +hep-ph/0409343 Phenomenology +hep-ph/0409359 Phenomenology +hep-ph/0410077 Phenomenology +hep-ph/0410086 Phenomenology +hep-ph/0410108 Phenomenology +hep-ph/0410324 Phenomenology +hep-ph/0411100 Phenomenology +hep-ph/0411278 Phenomenology +hep-ph/0411303 Phenomenology +hep-ph/0411365 Phenomenology +hep-ph/0412040 Phenomenology +hep-ph/0412109 Phenomenology +hep-ph/0412141 Phenomenology +hep-ph/0412239 Phenomenology +hep-ph/0412261 Phenomenology +hep-ph/0412271 Phenomenology +hep-ph/0412287 Phenomenology +hep-ph/0412322 Phenomenology +hep-ph/0412411 Phenomenology +hep-ph/0501122 Phenomenology +hep-ph/0501155 Phenomenology +hep-ph/0501177 Phenomenology +hep-ph/0501187 Phenomenology +hep-ph/0501208 Phenomenology +hep-ph/0501209 Phenomenology +hep-ph/0501228 Phenomenology +hep-ph/0502057 Phenomenology +hep-ph/0502117 Phenomenology +hep-ph/0502164 Phenomenology +hep-ph/0502213 Phenomenology +hep-ph/0502221 Phenomenology +hep-ph/0502225 Phenomenology +hep-ph/0503001 Phenomenology +hep-ph/0503106 Phenomenology +hep-ph/0503120 Phenomenology +hep-ph/0503163 Phenomenology +hep-ph/0503216 Phenomenology +hep-ph/0503265 Phenomenology +hep-ph/0504048 Phenomenology +hep-ph/0504236 Phenomenology +hep-ph/0505011 Phenomenology +hep-ph/0505066 Phenomenology +hep-ph/0505087 Phenomenology +hep-ph/0505117 Phenomenology +hep-ph/0505210 Phenomenology +hep-ph/0506001 Phenomenology +hep-ph/0506017 Phenomenology +hep-ph/0506035 Phenomenology +hep-ph/0506100 Phenomenology +hep-ph/0506108 Phenomenology +hep-ph/0506132 Phenomenology +hep-ph/0506144 Phenomenology +hep-ph/0506213 Phenomenology +hep-ph/0506282 Phenomenology +hep-ph/0507033 Phenomenology +hep-ph/0507123 Phenomenology +hep-ph/0507194 Phenomenology +hep-ph/0508034 Phenomenology +hep-ph/0508059 Phenomenology +hep-ph/0508088 Phenomenology +hep-ph/0508096 Phenomenology +hep-ph/0508102 Phenomenology +hep-ph/0508116 Phenomenology +hep-ph/0508199 Phenomenology +hep-ph/0508217 Phenomenology +hep-ph/0508220 Phenomenology +hep-ph/0508304 Phenomenology +hep-ph/0509081 Phenomenology +hep-ph/0509082 Phenomenology +hep-ph/0509086 Phenomenology +hep-ph/0509112 Phenomenology +hep-ph/0509154 Phenomenology +hep-ph/0509171 Phenomenology +hep-ph/0509179 Phenomenology +hep-ph/0509189 Phenomenology +hep-ph/0509210 Phenomenology +hep-ph/0509217 Phenomenology +hep-ph/0509225 Phenomenology +hep-ph/0509249 Phenomenology +hep-ph/0509259 Phenomenology +hep-ph/0509260 Phenomenology +hep-ph/0509262 Phenomenology +hep-ph/0509281 Phenomenology +hep-ph/0509288 Phenomenology +hep-ph/0509303 Phenomenology +hep-ph/0509311 Phenomenology +hep-ph/0509318 Phenomenology +hep-ph/0509319 Phenomenology +hep-ph/0509323 Phenomenology +hep-ph/0509324 Phenomenology +hep-ph/0509341 Phenomenology +hep-ph/0509343 Phenomenology +hep-ph/0509346 Phenomenology +hep-ph/0509347 Phenomenology +hep-ph/0509348 Phenomenology +hep-ph/0509354 Phenomenology +hep-ph/0509371 Phenomenology +hep-ph/0510019 Phenomenology +hep-ph/0510024 Phenomenology +hep-ph/0510025 Phenomenology +hep-ph/0510026 Phenomenology +hep-ph/0510030 Phenomenology +hep-ph/0510034 Phenomenology +hep-ph/0510038 Phenomenology +hep-ph/0510043 Phenomenology +hep-ph/0510048 Phenomenology +hep-ph/0510053 Phenomenology +hep-ph/0510067 Phenomenology +hep-ph/0510070 Phenomenology +hep-ph/0510072 Phenomenology +hep-ph/0510073 Phenomenology +hep-ph/0510084 Phenomenology +hep-ph/0510208 Phenomenology +hep-ph/0510321 Phenomenology +hep-ph/0510345 Phenomenology +hep-ph/0511049 Phenomenology +hep-ph/0511275 Phenomenology +hep-ph/0512018 Phenomenology +hep-ph/0512067 Phenomenology +hep-ph/0512075 Phenomenology +hep-ph/0512319 Phenomenology +hep-ph/0601019 Phenomenology +hep-ph/0602013 Phenomenology +hep-ph/0602132 Phenomenology +hep-ph/0602140 Phenomenology +hep-ph/0603119 Phenomenology +hep-ph/0604044 Phenomenology +hep-ph/0604070 Phenomenology +hep-ph/0604194 Phenomenology +hep-ph/0605320 Phenomenology +hep-ph/0606111 Phenomenology +hep-ph/0607200 Phenomenology +hep-ph/0607333 Phenomenology +hep-ph/0608168 Phenomenology +hep-ph/0608244 Phenomenology +hep-ph/0608257 Phenomenology +hep-ph/0608295 Phenomenology +hep-ph/0609080 Phenomenology +hep-ph/0610063 Phenomenology +hep-ph/0611230 Phenomenology +hep-ph/9605431 Phenomenology +hep-ph/9605459 Phenomenology +hep-ph/9606223 Phenomenology +hep-ph/9606232 Phenomenology +hep-ph/9606270 Phenomenology +hep-ph/9606283 Phenomenology +hep-ph/9606357 Phenomenology +hep-ph/9606364 Phenomenology +hep-ph/9606441 Phenomenology +hep-ph/9606452 Phenomenology +hep-ph/9606460 Phenomenology +hep-ph/9606486 Phenomenology +hep-ph/9607227 Phenomenology +hep-ph/9607283 Phenomenology +hep-ph/9607295 Phenomenology +hep-ph/9607303 Phenomenology +hep-ph/9607357 Phenomenology +hep-ph/9607407 Phenomenology +hep-ph/9607438 Phenomenology +hep-ph/9607459 Phenomenology +hep-ph/9607485 Phenomenology +hep-ph/9608213 Phenomenology +hep-ph/9608293 Phenomenology +hep-ph/9608306 Phenomenology +hep-ph/9608314 Phenomenology +hep-ph/9608345 Phenomenology +hep-ph/9608348 Phenomenology +hep-ph/9608364 Phenomenology +hep-ph/9608376 Phenomenology +hep-ph/9608381 Phenomenology +hep-ph/9608395 Phenomenology +hep-ph/9608405 Phenomenology +hep-ph/9608431 Phenomenology +hep-ph/9608447 Phenomenology +hep-ph/9608478 Phenomenology +hep-ph/9608480 Phenomenology +hep-ph/9609209 Phenomenology +hep-ph/9609214 Phenomenology +hep-ph/9609242 Phenomenology +hep-ph/9609254 Phenomenology +hep-ph/9609258 Phenomenology +hep-ph/9609269 Phenomenology +hep-ph/9609289 Phenomenology +hep-ph/9609291 Phenomenology +hep-ph/9609324 Phenomenology +hep-ph/9609348 Phenomenology +hep-ph/9609357 Phenomenology +hep-ph/9609363 Phenomenology +hep-ph/9609392 Phenomenology +hep-ph/9609393 Phenomenology +hep-ph/9609399 Phenomenology +hep-ph/9609402 Phenomenology +hep-ph/9609420 Phenomenology +hep-ph/9609423 Phenomenology +hep-ph/9609431 Phenomenology +hep-ph/9609445 Phenomenology +hep-ph/9609470 Phenomenology +hep-ph/9609485 Phenomenology +hep-ph/9609489 Phenomenology +hep-ph/9609496 Phenomenology +hep-ph/9609503 Phenomenology +hep-ph/9609505 Phenomenology +hep-ph/9609519 Phenomenology +hep-ph/9610208 Phenomenology +hep-ph/9610211 Phenomenology +hep-ph/9610227 Phenomenology +hep-ph/9610247 Phenomenology +hep-ph/9610262 Phenomenology +hep-ph/9610264 Phenomenology +hep-ph/9610269 Phenomenology +hep-ph/9610283 Phenomenology +hep-ph/9610287 Phenomenology +hep-ph/9610297 Phenomenology +hep-ph/9610306 Phenomenology +hep-ph/9610309 Phenomenology +hep-ph/9610320 Phenomenology +hep-ph/9610345 Phenomenology +hep-ph/9610380 Phenomenology +hep-ph/9610387 Phenomenology +hep-ph/9610391 Phenomenology +hep-ph/9610394 Phenomenology +hep-ph/9610397 Phenomenology +hep-ph/9610408 Phenomenology +hep-ph/9610411 Phenomenology +hep-ph/9610436 Phenomenology +hep-ph/9610439 Phenomenology +hep-ph/9610455 Phenomenology +hep-ph/9610469 Phenomenology +hep-ph/9610484 Phenomenology +hep-ph/9610496 Phenomenology +hep-ph/9610503 Phenomenology +hep-ph/9610530 Phenomenology +hep-ph/9610534 Phenomenology +hep-ph/9610548 Phenomenology +hep-ph/9610554 Phenomenology +hep-ph/9611201 Phenomenology +hep-ph/9611208 Phenomenology +hep-ph/9611211 Phenomenology +hep-ph/9611213 Phenomenology +hep-ph/9611218 Phenomenology +hep-ph/9611232 Phenomenology +hep-ph/9611249 Phenomenology +hep-ph/9611253 Phenomenology +hep-ph/9611255 Phenomenology +hep-ph/9611256 Phenomenology +hep-ph/9611263 Phenomenology +hep-ph/9611273 Phenomenology +hep-ph/9611287 Phenomenology +hep-ph/9611313 Phenomenology +hep-ph/9611315 Phenomenology +hep-ph/9611334 Phenomenology +hep-ph/9611366 Phenomenology +hep-ph/9611374 Phenomenology +hep-ph/9611380 Phenomenology +hep-ph/9611395 Phenomenology +hep-ph/9611402 Phenomenology +hep-ph/9611407 Phenomenology +hep-ph/9611417 Phenomenology +hep-ph/9611450 Phenomenology +hep-ph/9611458 Phenomenology +hep-ph/9611460 Phenomenology +hep-ph/9612202 Phenomenology +hep-ph/9612207 Phenomenology +hep-ph/9612221 Phenomenology +hep-ph/9612243 Phenomenology +hep-ph/9612276 Phenomenology +hep-ph/9612298 Phenomenology +hep-ph/9612308 Phenomenology +hep-ph/9612334 Phenomenology +hep-ph/9612337 Phenomenology +hep-ph/9612393 Phenomenology +hep-ph/9612422 Phenomenology +hep-ph/9612426 Phenomenology +hep-ph/9612428 Phenomenology +hep-ph/9612448 Phenomenology +hep-ph/9612469 Phenomenology +hep-ph/9612483 Phenomenology +hep-ph/9701207 Phenomenology +hep-ph/9701260 Phenomenology +hep-ph/9701262 Phenomenology +hep-ph/9701278 Phenomenology +hep-ph/9701281 Phenomenology +hep-ph/9701286 Phenomenology +hep-ph/9701307 Phenomenology +hep-ph/9701317 Phenomenology +hep-ph/9701341 Phenomenology +hep-ph/9701352 Phenomenology +hep-ph/9701371 Phenomenology +hep-ph/9701373 Phenomenology +hep-ph/9701376 Phenomenology +hep-ph/9701393 Phenomenology +hep-ph/9701405 Phenomenology +hep-ph/9701406 Phenomenology +hep-ph/9701407 Phenomenology +hep-ph/9701409 Phenomenology +hep-ph/9702202 Phenomenology +hep-ph/9702220 Phenomenology +hep-ph/9702221 Phenomenology +hep-ph/9702238 Phenomenology +hep-ph/9702258 Phenomenology +hep-ph/9702260 Phenomenology +hep-ph/9702263 Phenomenology +hep-ph/9702292 Phenomenology +hep-ph/9702297 Phenomenology +hep-ph/9702315 Phenomenology +hep-ph/9702317 Phenomenology +hep-ph/9702320 Phenomenology +hep-ph/9702339 Phenomenology +hep-ph/9702347 Phenomenology +hep-ph/9702370 Phenomenology +hep-ph/9702409 Phenomenology +hep-ph/9702428 Phenomenology +hep-ph/9703208 Phenomenology +hep-ph/9703215 Phenomenology +hep-ph/9703217 Phenomenology +hep-ph/9703235 Phenomenology +hep-ph/9703245 Phenomenology +hep-ph/9703311 Phenomenology +hep-ph/9703322 Phenomenology +hep-ph/9703324 Phenomenology +hep-ph/9703334 Phenomenology +hep-ph/9703346 Phenomenology +hep-ph/9703348 Phenomenology +hep-ph/9703353 Phenomenology +hep-ph/9703364 Phenomenology +hep-ph/9703388 Phenomenology +hep-ph/9703396 Phenomenology +hep-ph/9703409 Phenomenology +hep-ph/9703427 Phenomenology +hep-ph/9703448 Phenomenology +hep-ph/9703450 Phenomenology +hep-ph/9703458 Phenomenology +hep-ph/9703459 Phenomenology +hep-ph/9704231 Phenomenology +hep-ph/9704236 Phenomenology +hep-ph/9704259 Phenomenology +hep-ph/9704279 Phenomenology +hep-ph/9704282 Phenomenology +hep-ph/9704284 Phenomenology +hep-ph/9704291 Phenomenology +hep-ph/9704312 Phenomenology +hep-ph/9704322 Phenomenology +hep-ph/9704348 Phenomenology +hep-ph/9704358 Phenomenology +hep-ph/9704362 Phenomenology +hep-ph/9704370 Phenomenology +hep-ph/9704392 Phenomenology +hep-ph/9704394 Phenomenology +hep-ph/9704397 Phenomenology +hep-ph/9704403 Phenomenology +hep-ph/9704404 Phenomenology +hep-ph/9704417 Phenomenology +hep-ph/9704434 Phenomenology +hep-ph/9704437 Phenomenology +hep-ph/9704438 Phenomenology +hep-ph/9704444 Phenomenology +hep-ph/9704446 Phenomenology +hep-ph/9704449 Phenomenology +hep-ph/9704451 Phenomenology +hep-ph/9705238 Phenomenology +hep-ph/9705253 Phenomenology +hep-ph/9705257 Phenomenology +hep-ph/9705262 Phenomenology +hep-ph/9705267 Phenomenology +hep-ph/9705271 Phenomenology +hep-ph/9705294 Phenomenology +hep-ph/9705295 Phenomenology +hep-ph/9705312 Phenomenology +hep-ph/9705329 Phenomenology +hep-ph/9705407 Phenomenology +hep-ph/9705411 Phenomenology +hep-ph/9705433 Phenomenology +hep-ph/9705474 Phenomenology +hep-ph/9706231 Phenomenology +hep-ph/9706304 Phenomenology +hep-ph/9706320 Phenomenology +hep-ph/9706328 Phenomenology +hep-ph/9706394 Phenomenology +hep-ph/9706402 Phenomenology +hep-ph/9706472 Phenomenology +hep-ph/9707236 Phenomenology +hep-ph/9707294 Phenomenology +hep-ph/9707328 Phenomenology +hep-ph/9707329 Phenomenology +hep-ph/9707375 Phenomenology +hep-ph/9707416 Phenomenology +hep-ph/9707488 Phenomenology +hep-ph/9708215 Phenomenology +hep-ph/9708224 Phenomenology +hep-ph/9708240 Phenomenology +hep-ph/9708257 Phenomenology +hep-ph/9708268 Phenomenology +hep-ph/9708272 Phenomenology +hep-ph/9708359 Phenomenology +hep-ph/9708379 Phenomenology +hep-ph/9708471 Phenomenology +hep-ph/9709207 Phenomenology +hep-ph/9709277 Phenomenology +hep-ph/9709364 Phenomenology +hep-ph/9709477 Phenomenology +hep-ph/9709512 Phenomenology +hep-ph/9710216 Phenomenology +hep-ph/9710281 Phenomenology +hep-ph/9710322 Phenomenology +hep-ph/9710330 Phenomenology +hep-ph/9710372 Phenomenology +hep-ph/9710386 Phenomenology +hep-ph/9710434 Phenomenology +hep-ph/9710516 Phenomenology +hep-ph/9711220 Phenomenology +hep-ph/9711283 Phenomenology +hep-ph/9711317 Phenomenology +hep-ph/9711332 Phenomenology +hep-ph/9711342 Phenomenology +hep-ph/9711428 Phenomenology +hep-ph/9712211 Phenomenology +hep-ph/9712232 Phenomenology +hep-ph/9712336 Phenomenology +hep-ph/9712429 Phenomenology +hep-ph/9801276 Phenomenology +hep-ph/9801379 Phenomenology +hep-ph/9801404 Phenomenology +hep-ph/9801450 Phenomenology +hep-ph/9802202 Phenomenology +hep-ph/9802203 Phenomenology +hep-ph/9802249 Phenomenology +hep-ph/9802361 Phenomenology +hep-ph/9802364 Phenomenology +hep-ph/9802399 Phenomenology +hep-ph/9802410 Phenomenology +hep-ph/9802448 Phenomenology +hep-ph/9803234 Phenomenology +hep-ph/9803244 Phenomenology +hep-ph/9803287 Phenomenology +hep-ph/9803300 Phenomenology +hep-ph/9803332 Phenomenology +hep-ph/9803340 Phenomenology +hep-ph/9803432 Phenomenology +hep-ph/9803450 Phenomenology +hep-ph/9803478 Phenomenology +hep-ph/9803482 Phenomenology +hep-ph/9803494 Phenomenology +hep-ph/9804259 Phenomenology +hep-ph/9804277 Phenomenology +hep-ph/9804289 Phenomenology +hep-ph/9804345 Phenomenology +hep-ph/9804413 Phenomenology +hep-ph/9804418 Phenomenology +hep-ph/9805214 Phenomenology +hep-ph/9805228 Phenomenology +hep-ph/9805292 Phenomenology +hep-ph/9805317 Phenomenology +hep-ph/9805499 Phenomenology +hep-ph/9806205 Phenomenology +hep-ph/9806211 Phenomenology +hep-ph/9806273 Phenomenology +hep-ph/9806305 Phenomenology +hep-ph/9806327 Phenomenology +hep-ph/9806449 Phenomenology +hep-ph/9806480 Phenomenology +hep-ph/9806519 Phenomenology +hep-ph/9807255 Phenomenology +hep-ph/9807267 Phenomenology +hep-ph/9807368 Phenomenology +hep-ph/9807447 Phenomenology +hep-ph/9807456 Phenomenology +hep-ph/9807487 Phenomenology +hep-ph/9807507 Phenomenology +hep-ph/9807540 Phenomenology +hep-ph/9807547 Phenomenology +hep-ph/9807553 Phenomenology +hep-ph/9808307 Phenomenology +hep-ph/9808320 Phenomenology +hep-ph/9808363 Phenomenology +hep-ph/9808387 Phenomenology +hep-ph/9808439 Phenomenology +hep-ph/9809211 Phenomenology +hep-ph/9809355 Phenomenology +hep-ph/9809491 Phenomenology +hep-ph/9809567 Phenomenology +hep-ph/9810338 Phenomenology +hep-ph/9810344 Phenomenology +hep-ph/9810476 Phenomenology +hep-ph/9810533 Phenomenology +hep-ph/9811280 Phenomenology +hep-ph/9811306 Phenomenology +hep-ph/9812295 Phenomenology +hep-ph/9812306 Phenomenology +hep-ph/9812390 Phenomenology +hep-ph/9812469 Phenomenology +hep-ph/9812498 Phenomenology +hep-ph/9901232 Phenomenology +hep-ph/9901297 Phenomenology +hep-ph/9901339 Phenomenology +hep-ph/9901364 Phenomenology +hep-ph/9901376 Phenomenology +hep-ph/9901410 Phenomenology +hep-ph/9901419 Phenomenology +hep-ph/9903260 Phenomenology +hep-ph/9903297 Phenomenology +hep-ph/9903414 Phenomenology +hep-ph/9903464 Phenomenology +hep-ph/9903494 Phenomenology +hep-ph/9904221 Phenomenology +hep-ph/9904290 Phenomenology +hep-ph/9904308 Phenomenology +hep-ph/9904418 Phenomenology +hep-ph/9905228 Phenomenology +hep-ph/9905266 Phenomenology +hep-ph/9905268 Phenomenology +hep-ph/9905337 Phenomenology +hep-ph/9905349 Phenomenology +hep-ph/9905372 Phenomenology +hep-ph/9905392 Phenomenology +hep-ph/9905400 Phenomenology +hep-ph/9905441 Phenomenology +hep-ph/9905483 Phenomenology +hep-ph/9905519 Phenomenology +hep-ph/9905526 Phenomenology +hep-ph/9905555 Phenomenology +hep-ph/9906233 Phenomenology +hep-ph/9906354 Phenomenology +hep-ph/9906369 Phenomenology +hep-ph/9906372 Phenomenology +hep-ph/9906505 Phenomenology +hep-ph/9906531 Phenomenology +hep-ph/9907201 Phenomenology +hep-ph/9907241 Phenomenology +hep-ph/9907265 Phenomenology +hep-ph/9907328 Phenomenology +hep-ph/9907347 Phenomenology +hep-ph/9907506 Phenomenology +hep-ph/9907526 Phenomenology +hep-ph/9908207 Phenomenology +hep-ph/9908271 Phenomenology +hep-ph/9908317 Phenomenology +hep-ph/9908332 Phenomenology +hep-ph/9908352 Phenomenology +hep-ph/9908435 Phenomenology +hep-ph/9908462 Phenomenology +hep-ph/9908466 Phenomenology +hep-ph/9908521 Phenomenology +hep-ph/9909210 Phenomenology +hep-ph/9909232 Phenomenology +hep-ph/9909280 Phenomenology +hep-ph/9909380 Phenomenology +hep-ph/9909402 Phenomenology +hep-ph/9909458 Phenomenology +hep-ph/9909525 Phenomenology +hep-ph/9909567 Phenomenology +hep-ph/9910229 Phenomenology +hep-ph/9910235 Phenomenology +hep-ph/9910247 Phenomenology +hep-ph/9910295 Phenomenology +hep-ph/9910406 Phenomenology +hep-ph/9910417 Phenomenology +hep-ph/9910426 Phenomenology +hep-ph/9910427 Phenomenology +hep-ph/9910533 Phenomenology +hep-ph/9911234 Phenomenology +hep-ph/9911292 Phenomenology +hep-ph/9911317 Phenomenology +hep-ph/9911351 Phenomenology +hep-ph/9911352 Phenomenology +hep-ph/9911354 Phenomenology +hep-ph/9911381 Phenomenology +hep-ph/9911432 Phenomenology +hep-ph/9911489 Phenomenology +hep-ph/9911497 Phenomenology +hep-ph/9912225 Phenomenology +hep-ph/9912228 Phenomenology +hep-ph/9912289 Phenomenology +hep-ph/9912406 Phenomenology +hep-ph/9912418 Phenomenology +hep-ph/9912477 Phenomenology +hep-ph/9912531 Phenomenology +hep-ph/9912552 Phenomenology +hep-th/0001088 Theory +hep-th/0002173 Theory +hep-th/0003149 Theory +hep-th/0003159 Theory +hep-th/0003218 Theory +hep-th/0003227 Theory +hep-th/0003285 Theory +hep-th/0004040 Theory +hep-th/0004041 Theory +hep-th/0004132 Theory +hep-th/0004136 Theory +hep-th/0004165 Theory +hep-th/0004173 Theory +hep-th/0005077 Theory +hep-th/0005099 Theory +hep-th/0005152 Theory +hep-th/0005192 Theory +hep-th/0005286 Theory +hep-th/0006009 Theory +hep-th/0006016 Theory +hep-th/0006145 Theory +hep-th/0007134 Theory +hep-th/0007145 Theory +hep-th/0008027 Theory +hep-th/0008085 Theory +hep-th/0008103 Theory +hep-th/0008165 Theory +hep-th/0008221 Theory +hep-th/0009034 Theory +hep-th/0009044 Theory +hep-th/0009047 Theory +hep-th/0009097 Theory +hep-th/0009142 Theory +hep-th/0009234 Theory +hep-th/0010043 Theory +hep-th/0010044 Theory +hep-th/0010078 Theory +hep-th/0010233 Theory +hep-th/0010285 Theory +hep-th/0011017 Theory +hep-th/0011065 Theory +hep-th/0011187 Theory +hep-th/0011273 Theory +hep-th/0012085 Theory +hep-th/0012157 Theory +hep-th/0012261 Theory +hep-th/0012265 Theory +hep-th/0101063 Theory +hep-th/0101169 Theory +hep-th/0101181 Theory +hep-th/0102007 Theory +hep-th/0102017 Theory +hep-th/0102021 Theory +hep-th/0102030 Theory +hep-th/0102043 Theory +hep-th/0102088 Theory +hep-th/0102105 Theory +hep-th/0102193 Theory +hep-th/0103030 Theory +hep-th/0103065 Theory +hep-th/0103083 Theory +hep-th/0103155 Theory +hep-th/0103176 Theory +hep-th/0103241 Theory +hep-th/0103251 Theory +hep-th/0103261 Theory +hep-th/0104023 Theory +hep-th/0104056 Theory +hep-th/0104079 Theory +hep-th/0104123 Theory +hep-th/0104131 Theory +hep-th/0104197 Theory +hep-th/0104207 Theory +hep-th/0105035 Theory +hep-th/0105071 Theory +hep-th/0105091 Theory +hep-th/0105149 Theory +hep-th/0105235 Theory +hep-th/0105258 Theory +hep-th/0106056 Theory +hep-th/0106093 Theory +hep-th/0106235 Theory +hep-th/0106269 Theory +hep-th/0106276 Theory +hep-th/0107014 Theory +hep-th/0107032 Theory +hep-th/0107067 Theory +hep-th/0107074 Theory +hep-th/0107174 Theory +hep-th/0107210 Theory +hep-th/0108014 Theory +hep-th/0108147 Theory +hep-th/0108166 Theory +hep-th/0108217 Theory +hep-th/0109029 Theory +hep-th/0109083 Theory +hep-th/0109132 Theory +hep-th/0110088 Theory +hep-th/0110177 Theory +hep-th/0110191 Theory +hep-th/0110210 Theory +hep-th/0110241 Theory +hep-th/0110266 Theory +hep-th/0111002 Theory +hep-th/0111048 Theory +hep-th/0111076 Theory +hep-th/0111098 Theory +hep-th/0111147 Theory +hep-th/0111180 Theory +hep-th/0112045 Theory +hep-th/0112159 Theory +hep-th/0112176 Theory +hep-th/0112221 Theory +hep-th/0201025 Theory +hep-th/0201052 Theory +hep-th/0201100 Theory +hep-th/0201110 Theory +hep-th/0201156 Theory +hep-th/0201162 Theory +hep-th/0202027 Theory +hep-th/0202106 Theory +hep-th/0202142 Theory +hep-th/0202159 Theory +hep-th/0202209 Theory +hep-th/0203017 Theory +hep-th/0203059 Theory +hep-th/0203067 Theory +hep-th/0203104 Theory +hep-th/0203238 Theory +hep-th/0204034 Theory +hep-th/0204070 Theory +hep-th/0204119 Theory +hep-th/0204155 Theory +hep-th/0204180 Theory +hep-th/0204221 Theory +hep-th/0204230 Theory +hep-th/0205018 Theory +hep-th/0205067 Theory +hep-th/0205074 Theory +hep-th/0205123 Theory +hep-th/0205183 Theory +hep-th/0205203 Theory +hep-th/0205205 Theory +hep-th/0205224 Theory +hep-th/0206232 Theory +hep-th/0206246 Theory +hep-th/0207061 Theory +hep-th/0207063 Theory +hep-th/0207184 Theory +hep-th/0207218 Theory +hep-th/0207225 Theory +hep-th/0207283 Theory +hep-th/0208161 Theory +hep-th/0209018 Theory +hep-th/0209083 Theory +hep-th/0209202 Theory +hep-th/0209219 Theory +hep-th/0210152 Theory +hep-th/0210249 Theory +hep-th/0210258 Theory +hep-th/0210284 Theory +hep-th/0211027 Theory +hep-th/0211033 Theory +hep-th/0211076 Theory +hep-th/0211127 Theory +hep-th/0211138 Theory +hep-th/0211228 Theory +hep-th/0211248 Theory +hep-th/0211261 Theory +hep-th/0211289 Theory +hep-th/0212112 Theory +hep-th/0212182 Theory +hep-th/0212216 Theory +hep-th/0212220 Theory +hep-th/0212225 Theory +hep-th/0212227 Theory +hep-th/0212249 Theory +hep-th/0212291 Theory +hep-th/0301014 Theory +hep-th/0301040 Theory +hep-th/0301073 Theory +hep-th/0301090 Theory +hep-th/0301113 Theory +hep-th/0301202 Theory +hep-th/0302032 Theory +hep-th/0303014 Theory +hep-th/0303030 Theory +hep-th/0303236 Theory +hep-th/0304012 Theory +hep-th/0304047 Theory +hep-th/0305076 Theory +hep-th/0305088 Theory +hep-th/0305105 Theory +hep-th/0305106 Theory +hep-th/0305172 Theory +hep-th/0305213 Theory +hep-th/0305216 Theory +hep-th/0305217 Theory +hep-th/0305249 Theory +hep-th/0306108 Theory +hep-th/0306141 Theory +hep-th/0306189 Theory +hep-th/0306193 Theory +hep-th/0306255 Theory +hep-th/0307017 Theory +hep-th/0307060 Theory +hep-th/0307061 Theory +hep-th/0307083 Theory +hep-th/0307090 Theory +hep-th/0307238 Theory +hep-th/0307255 Theory +hep-th/0309014 Theory +hep-th/0309055 Theory +hep-th/0309208 Theory +hep-th/0309271 Theory +hep-th/0310169 Theory +hep-th/0310194 Theory +hep-th/0310225 Theory +hep-th/0310294 Theory +hep-th/0311022 Theory +hep-th/0311029 Theory +hep-th/0311096 Theory +hep-th/0311215 Theory +hep-th/0312009 Theory +hep-th/0312152 Theory +hep-th/0312242 Theory +hep-th/0401069 Theory +hep-th/0401196 Theory +hep-th/0401215 Theory +hep-th/0402033 Theory +hep-th/0402120 Theory +hep-th/0402146 Theory +hep-th/0402163 Theory +hep-th/0402200 Theory +hep-th/0403034 Theory +hep-th/0403055 Theory +hep-th/0403108 Theory +hep-th/0403127 Theory +hep-th/0403167 Theory +hep-th/0404048 Theory +hep-th/0404092 Theory +hep-th/0404109 Theory +hep-th/0404131 Theory +hep-th/0404166 Theory +hep-th/0404184 Theory +hep-th/0405073 Theory +hep-th/0405117 Theory +hep-th/0405275 Theory +hep-th/0406030 Theory +hep-th/0406042 Theory +hep-th/0406063 Theory +hep-th/0406091 Theory +hep-th/0406125 Theory +hep-th/0406145 Theory +hep-th/0406225 Theory +hep-th/0407036 Theory +hep-th/0407198 Theory +hep-th/0407201 Theory +hep-th/0407211 Theory +hep-th/0407223 Theory +hep-th/0407231 Theory +hep-th/0407268 Theory +hep-th/0408004 Theory +hep-th/0408030 Theory +hep-th/0408065 Theory +hep-th/0408090 Theory +hep-th/0408126 Theory +hep-th/0408220 Theory +hep-th/0408226 Theory +hep-th/0409007 Theory +hep-th/0409019 Theory +hep-th/0409032 Theory +hep-th/0409163 Theory +hep-th/0410024 Theory +hep-th/0410071 Theory +hep-th/0410111 Theory +hep-th/0411048 Theory +hep-th/0412054 Theory +hep-th/0412233 Theory +hep-th/0412237 Theory +hep-th/0501019 Theory +hep-th/0501132 Theory +hep-th/0501196 Theory +hep-th/0502013 Theory +hep-th/0502024 Theory +hep-th/0502070 Theory +hep-th/0502088 Theory +hep-th/0502096 Theory +hep-th/0502179 Theory +hep-th/0502192 Theory +hep-th/0502227 Theory +hep-th/0503036 Theory +hep-th/0503148 Theory +hep-th/0503159 Theory +hep-th/0503162 Theory +hep-th/0503245 Theory +hep-th/0504129 Theory +hep-th/0504206 Theory +hep-th/0504226 Theory +hep-th/0505015 Theory +hep-th/0505143 Theory +hep-th/0505148 Theory +hep-th/0505209 Theory +hep-th/0506026 Theory +hep-th/0506084 Theory +hep-th/0506107 Theory +hep-th/0506118 Theory +hep-th/0506199 Theory +hep-th/0506264 Theory +hep-th/0507159 Theory +hep-th/0508056 Theory +hep-th/0508100 Theory +hep-th/0508125 Theory +hep-th/0508199 Theory +hep-th/0509061 Theory +hep-th/0509078 Theory +hep-th/0509114 Theory +hep-th/0509157 Theory +hep-th/0509162 Theory +hep-th/0509173 Theory +hep-th/0509178 Theory +hep-th/0509187 Theory +hep-th/0509223 Theory +hep-th/0510003 Theory +hep-th/0510014 Theory +hep-th/0510037 Theory +hep-th/0510038 Theory +hep-th/0510041 Theory +hep-th/0510163 Theory +hep-th/0601097 Theory +hep-th/0602151 Theory +hep-th/0603130 Theory +hep-th/0603172 Theory +hep-th/0603247 Theory +hep-th/0604199 Theory +hep-th/0605077 Theory +hep-th/0605285 Theory +hep-th/0606119 Theory +hep-th/0608125 Theory +hep-th/0608142 Theory +hep-th/0608172 Theory +hep-th/0611350 Theory +hep-th/0703219 Theory +hep-th/9201001 Theory +hep-th/9201051 Theory +hep-th/9203032 Theory +hep-th/9204064 Theory +hep-th/9205055 Theory +hep-th/9205070 Theory +hep-th/9207088 Theory +hep-th/9208061 Theory +hep-th/9209013 Theory +hep-th/9209082 Theory +hep-th/9209088 Theory +hep-th/9210040 Theory +hep-th/9210121 Theory +hep-th/9210160 Theory +hep-th/9211070 Theory +hep-th/9212034 Theory +hep-th/9212071 Theory +hep-th/9212088 Theory +hep-th/9212091 Theory +hep-th/9212115 Theory +hep-th/9212152 Theory +hep-th/9301074 Theory +hep-th/9301128 Theory +hep-th/9302035 Theory +hep-th/9302055 Theory +hep-th/9302059 Theory +hep-th/9302112 Theory +hep-th/9303014 Theory +hep-th/9303088 Theory +hep-th/9303127 Theory +hep-th/9303154 Theory +hep-th/9304161 Theory +hep-th/9305082 Theory +hep-th/9305085 Theory +hep-th/9305093 Theory +hep-th/9306003 Theory +hep-th/9306020 Theory +hep-th/9306049 Theory +hep-th/9306145 Theory +hep-th/9306147 Theory +hep-th/9306156 Theory +hep-th/9306157 Theory +hep-th/9307024 Theory +hep-th/9307122 Theory +hep-th/9307125 Theory +hep-th/9307170 Theory +hep-th/9307194 Theory +hep-th/9308010 Theory +hep-th/9308153 Theory +hep-th/9309021 Theory +hep-th/9309081 Theory +hep-th/9309117 Theory +hep-th/9310007 Theory +hep-th/9310083 Theory +hep-th/9311013 Theory +hep-th/9311067 Theory +hep-th/9311112 Theory +hep-th/9311134 Theory +hep-th/9311152 Theory +hep-th/9312082 Theory +hep-th/9312084 Theory +hep-th/9312141 Theory +hep-th/9312182 Theory +hep-th/9401011 Theory +hep-th/9401047 Theory +hep-th/9401072 Theory +hep-th/9401114 Theory +hep-th/9402026 Theory +hep-th/9402081 Theory +hep-th/9402116 Theory +hep-th/9402123 Theory +hep-th/9402142 Theory +hep-th/9403134 Theory +hep-th/9403182 Theory +hep-th/9404029 Theory +hep-th/9404037 Theory +hep-th/9404157 Theory +hep-th/9404189 Theory +hep-th/9405012 Theory +hep-th/9405044 Theory +hep-th/9405105 Theory +hep-th/9406053 Theory +hep-th/9406140 Theory +hep-th/9407034 Theory +hep-th/9407040 Theory +hep-th/9407070 Theory +hep-th/9407174 Theory +hep-th/9408016 Theory +hep-th/9408020 Theory +hep-th/9408021 Theory +hep-th/9408053 Theory +hep-th/9408086 Theory +hep-th/9408093 Theory +hep-th/9408136 Theory +hep-th/9409016 Theory +hep-th/9409093 Theory +hep-th/9409095 Theory +hep-th/9409114 Theory +hep-th/9409178 Theory +hep-th/9410076 Theory +hep-th/9410079 Theory +hep-th/9410105 Theory +hep-th/9410128 Theory +hep-th/9410185 Theory +hep-th/9411070 Theory +hep-th/9411103 Theory +hep-th/9411104 Theory +hep-th/9412003 Theory +hep-th/9412112 Theory +hep-th/9412122 Theory +hep-th/9501003 Theory +hep-th/9501004 Theory +hep-th/9501006 Theory +hep-th/9501007 Theory +hep-th/9501013 Theory +hep-th/9501014 Theory +hep-th/9501016 Theory +hep-th/9501017 Theory +hep-th/9501019 Theory +hep-th/9501021 Theory +hep-th/9501022 Theory +hep-th/9501023 Theory +hep-th/9501024 Theory +hep-th/9501027 Theory +hep-th/9501028 Theory +hep-th/9501029 Theory +hep-th/9501033 Theory +hep-th/9501034 Theory +hep-th/9501036 Theory +hep-th/9501037 Theory +hep-th/9501038 Theory +hep-th/9501039 Theory +hep-th/9501040 Theory +hep-th/9501041 Theory +hep-th/9501042 Theory +hep-th/9501043 Theory +hep-th/9501049 Theory +hep-th/9501050 Theory +hep-th/9501051 Theory +hep-th/9501053 Theory +hep-th/9501054 Theory +hep-th/9501056 Theory +hep-th/9501057 Theory +hep-th/9501058 Theory +hep-th/9501059 Theory +hep-th/9501060 Theory +hep-th/9501061 Theory +hep-th/9501064 Theory +hep-th/9501065 Theory +hep-th/9501067 Theory +hep-th/9501068 Theory +hep-th/9501069 Theory +hep-th/9501070 Theory +hep-th/9501072 Theory +hep-th/9501074 Theory +hep-th/9501076 Theory +hep-th/9501078 Theory +hep-th/9501082 Theory +hep-th/9501084 Theory +hep-th/9501086 Theory +hep-th/9501088 Theory +hep-th/9501089 Theory +hep-th/9501090 Theory +hep-th/9501091 Theory +hep-th/9501092 Theory +hep-th/9501093 Theory +hep-th/9501098 Theory +hep-th/9501100 Theory +hep-th/9501101 Theory +hep-th/9501104 Theory +hep-th/9501105 Theory +hep-th/9501109 Theory +hep-th/9501111 Theory +hep-th/9501112 Theory +hep-th/9501115 Theory +hep-th/9501117 Theory +hep-th/9501120 Theory +hep-th/9501121 Theory +hep-th/9501122 Theory +hep-th/9501125 Theory +hep-th/9501126 Theory +hep-th/9501127 Theory +hep-th/9501129 Theory +hep-th/9501130 Theory +hep-th/9501134 Theory +hep-th/9501135 Theory +hep-th/9501138 Theory +hep-th/9501140 Theory +hep-th/9501141 Theory +hep-th/9501142 Theory +hep-th/9502001 Theory +hep-th/9502005 Theory +hep-th/9502007 Theory +hep-th/9502010 Theory +hep-th/9502011 Theory +hep-th/9502013 Theory +hep-th/9502014 Theory +hep-th/9502018 Theory +hep-th/9502019 Theory +hep-th/9502021 Theory +hep-th/9502022 Theory +hep-th/9502026 Theory +hep-th/9502028 Theory +hep-th/9502030 Theory +hep-th/9502033 Theory +hep-th/9502034 Theory +hep-th/9502037 Theory +hep-th/9502039 Theory +hep-th/9502040 Theory +hep-th/9502041 Theory +hep-th/9502042 Theory +hep-th/9502043 Theory +hep-th/9502045 Theory +hep-th/9502047 Theory +hep-th/9502048 Theory +hep-th/9502050 Theory +hep-th/9502051 Theory +hep-th/9502052 Theory +hep-th/9502055 Theory +hep-th/9502057 Theory +hep-th/9502058 Theory +hep-th/9502059 Theory +hep-th/9502060 Theory +hep-th/9502065 Theory +hep-th/9502066 Theory +hep-th/9502067 Theory +hep-th/9502068 Theory +hep-th/9502071 Theory +hep-th/9502072 Theory +hep-th/9502076 Theory +hep-th/9502077 Theory +hep-th/9502083 Theory +hep-th/9502085 Theory +hep-th/9502088 Theory +hep-th/9502089 Theory +hep-th/9502091 Theory +hep-th/9502092 Theory +hep-th/9502093 Theory +hep-th/9502096 Theory +hep-th/9502097 Theory +hep-th/9502098 Theory +hep-th/9502099 Theory +hep-th/9502103 Theory +hep-th/9502105 Theory +hep-th/9502106 Theory +hep-th/9502108 Theory +hep-th/9502109 Theory +hep-th/9502111 Theory +hep-th/9502112 Theory +hep-th/9502113 Theory +hep-th/9502114 Theory +hep-th/9502115 Theory +hep-th/9502117 Theory +hep-th/9502118 Theory +hep-th/9502119 Theory +hep-th/9502124 Theory +hep-th/9502126 Theory +hep-th/9502127 Theory +hep-th/9502128 Theory +hep-th/9502130 Theory +hep-th/9502132 Theory +hep-th/9502134 Theory +hep-th/9502135 Theory +hep-th/9502136 Theory +hep-th/9502137 Theory +hep-th/9502142 Theory +hep-th/9502144 Theory +hep-th/9502147 Theory +hep-th/9502148 Theory +hep-th/9502149 Theory +hep-th/9502151 Theory +hep-th/9502154 Theory +hep-th/9502159 Theory +hep-th/9502161 Theory +hep-th/9502162 Theory +hep-th/9502164 Theory +hep-th/9503001 Theory +hep-th/9503005 Theory +hep-th/9503008 Theory +hep-th/9503009 Theory +hep-th/9503010 Theory +hep-th/9503011 Theory +hep-th/9503015 Theory +hep-th/9503017 Theory +hep-th/9503018 Theory +hep-th/9503020 Theory +hep-th/9503022 Theory +hep-th/9503023 Theory +hep-th/9503026 Theory +hep-th/9503030 Theory +hep-th/9503032 Theory +hep-th/9503034 Theory +hep-th/9503036 Theory +hep-th/9503037 Theory +hep-th/9503038 Theory +hep-th/9503039 Theory +hep-th/9503040 Theory +hep-th/9503041 Theory +hep-th/9503045 Theory +hep-th/9503048 Theory +hep-th/9503050 Theory +hep-th/9503052 Theory +hep-th/9503053 Theory +hep-th/9503054 Theory +hep-th/9503056 Theory +hep-th/9503057 Theory +hep-th/9503059 Theory +hep-th/9503060 Theory +hep-th/9503063 Theory +hep-th/9503065 Theory +hep-th/9503066 Theory +hep-th/9503067 Theory +hep-th/9503069 Theory +hep-th/9503076 Theory +hep-th/9503077 Theory +hep-th/9503080 Theory +hep-th/9503086 Theory +hep-th/9503087 Theory +hep-th/9503089 Theory +hep-th/9503090 Theory +hep-th/9503092 Theory +hep-th/9503094 Theory +hep-th/9503096 Theory +hep-th/9503100 Theory +hep-th/9503102 Theory +hep-th/9503103 Theory +hep-th/9503104 Theory +hep-th/9503109 Theory +hep-th/9503110 Theory +hep-th/9503111 Theory +hep-th/9503112 Theory +hep-th/9503114 Theory +hep-th/9503115 Theory +hep-th/9503116 Theory +hep-th/9503117 Theory +hep-th/9503120 Theory +hep-th/9503154 Theory +hep-th/9503237 Theory +hep-th/9504008 Theory +hep-th/9504017 Theory +hep-th/9504126 Theory +hep-th/9504129 Theory +hep-th/9505007 Theory +hep-th/9505030 Theory +hep-th/9505111 Theory +hep-th/9505194 Theory +hep-th/9506003 Theory +hep-th/9506042 Theory +hep-th/9506092 Theory +hep-th/9506194 Theory +hep-th/9507051 Theory +hep-th/9507102 Theory +hep-th/9507128 Theory +hep-th/9507151 Theory +hep-th/9507169 Theory +hep-th/9508062 Theory +hep-th/9508105 Theory +hep-th/9508158 Theory +hep-th/9509017 Theory +hep-th/9509121 Theory +hep-th/9510076 Theory +hep-th/9510179 Theory +hep-th/9510230 Theory +hep-th/9511027 Theory +hep-th/9511029 Theory +hep-th/9511032 Theory +hep-th/9511052 Theory +hep-th/9511114 Theory +hep-th/9511144 Theory +hep-th/9511147 Theory +hep-th/9511210 Theory +hep-th/9511214 Theory +hep-th/9512028 Theory +hep-th/9512112 Theory +hep-th/9512136 Theory +hep-th/9512189 Theory +hep-th/9601021 Theory +hep-th/9601034 Theory +hep-th/9601041 Theory +hep-th/9601055 Theory +hep-th/9601063 Theory +hep-th/9601075 Theory +hep-th/9601105 Theory +hep-th/9601155 Theory +hep-th/9601162 Theory +hep-th/9601170 Theory +hep-th/9602013 Theory +hep-th/9602045 Theory +hep-th/9602077 Theory +hep-th/9602093 Theory +hep-th/9602127 Theory +hep-th/9602133 Theory +hep-th/9602164 Theory +hep-th/9603086 Theory +hep-th/9603124 Theory +hep-th/9603168 Theory +hep-th/9603187 Theory +hep-th/9604036 Theory +hep-th/9604065 Theory +hep-th/9604087 Theory +hep-th/9604156 Theory +hep-th/9604161 Theory +hep-th/9604187 Theory +hep-th/9605089 Theory +hep-th/9605090 Theory +hep-th/9605103 Theory +hep-th/9605122 Theory +hep-th/9605132 Theory +hep-th/9605190 Theory +hep-th/9605195 Theory +hep-th/9606021 Theory +hep-th/9606026 Theory +hep-th/9606063 Theory +hep-th/9606064 Theory +hep-th/9606065 Theory +hep-th/9606085 Theory +hep-th/9606166 Theory +hep-th/9607033 Theory +hep-th/9607045 Theory +hep-th/9607073 Theory +hep-th/9607078 Theory +hep-th/9607134 Theory +hep-th/9607154 Theory +hep-th/9607164 Theory +hep-th/9607220 Theory +hep-th/9607226 Theory +hep-th/9608009 Theory +hep-th/9608035 Theory +hep-th/9608073 Theory +hep-th/9608093 Theory +hep-th/9608108 Theory +hep-th/9608141 Theory +hep-th/9608177 Theory +hep-th/9608193 Theory +hep-th/9609025 Theory +hep-th/9609056 Theory +hep-th/9609064 Theory +hep-th/9609066 Theory +hep-th/9609070 Theory +hep-th/9609110 Theory +hep-th/9609114 Theory +hep-th/9609119 Theory +hep-th/9609125 Theory +hep-th/9609133 Theory +hep-th/9609190 Theory +hep-th/9609204 Theory +hep-th/9609219 Theory +hep-th/9610004 Theory +hep-th/9610011 Theory +hep-th/9610031 Theory +hep-th/9610048 Theory +hep-th/9610049 Theory +hep-th/9610053 Theory +hep-th/9610055 Theory +hep-th/9610064 Theory +hep-th/9610076 Theory +hep-th/9610087 Theory +hep-th/9610092 Theory +hep-th/9610098 Theory +hep-th/9610125 Theory +hep-th/9610130 Theory +hep-th/9610137 Theory +hep-th/9610139 Theory +hep-th/9610150 Theory +hep-th/9610160 Theory +hep-th/9610174 Theory +hep-th/9610185 Theory +hep-th/9610190 Theory +hep-th/9610194 Theory +hep-th/9610205 Theory +hep-th/9610225 Theory +hep-th/9610241 Theory +hep-th/9610252 Theory +hep-th/9611001 Theory +hep-th/9611002 Theory +hep-th/9611032 Theory +hep-th/9611036 Theory +hep-th/9611040 Theory +hep-th/9611049 Theory +hep-th/9611056 Theory +hep-th/9611086 Theory +hep-th/9611088 Theory +hep-th/9611090 Theory +hep-th/9611104 Theory +hep-th/9611110 Theory +hep-th/9611121 Theory +hep-th/9611122 Theory +hep-th/9611129 Theory +hep-th/9611136 Theory +hep-th/9611157 Theory +hep-th/9611180 Theory +hep-th/9611199 Theory +hep-th/9611216 Theory +hep-th/9611222 Theory +hep-th/9611232 Theory +hep-th/9611234 Theory +hep-th/9611235 Theory +hep-th/9612012 Theory +hep-th/9612013 Theory +hep-th/9612025 Theory +hep-th/9612039 Theory +hep-th/9612046 Theory +hep-th/9612051 Theory +hep-th/9612066 Theory +hep-th/9612071 Theory +hep-th/9612080 Theory +hep-th/9612085 Theory +hep-th/9612090 Theory +hep-th/9612101 Theory +hep-th/9612103 Theory +hep-th/9612104 Theory +hep-th/9612134 Theory +hep-th/9612175 Theory +hep-th/9612182 Theory +hep-th/9612205 Theory +hep-th/9612227 Theory +hep-th/9612243 Theory +hep-th/9612246 Theory +hep-th/9612252 Theory +hep-th/9701006 Theory +hep-th/9701012 Theory +hep-th/9701015 Theory +hep-th/9701020 Theory +hep-th/9701041 Theory +hep-th/9701049 Theory +hep-th/9701073 Theory +hep-th/9701107 Theory +hep-th/9701129 Theory +hep-th/9701144 Theory +hep-th/9701172 Theory +hep-th/9701173 Theory +hep-th/9701187 Theory +hep-th/9702012 Theory +hep-th/9702018 Theory +hep-th/9702042 Theory +hep-th/9702087 Theory +hep-th/9702096 Theory +hep-th/9702099 Theory +hep-th/9702117 Theory +hep-th/9702142 Theory +hep-th/9702190 Theory +hep-th/9703007 Theory +hep-th/9703009 Theory +hep-th/9703014 Theory +hep-th/9703022 Theory +hep-th/9703034 Theory +hep-th/9703050 Theory +hep-th/9703052 Theory +hep-th/9703096 Theory +hep-th/9703106 Theory +hep-th/9703111 Theory +hep-th/9703125 Theory +hep-th/9703186 Theory +hep-th/9703191 Theory +hep-th/9704001 Theory +hep-th/9704018 Theory +hep-th/9704061 Theory +hep-th/9704068 Theory +hep-th/9704098 Theory +hep-th/9704131 Theory +hep-th/9704136 Theory +hep-th/9704158 Theory +hep-th/9704181 Theory +hep-th/9704182 Theory +hep-th/9704188 Theory +hep-th/9704191 Theory +hep-th/9704198 Theory +hep-th/9704210 Theory +hep-th/9704213 Theory +hep-th/9705022 Theory +hep-th/9705024 Theory +hep-th/9705055 Theory +hep-th/9705057 Theory +hep-th/9705097 Theory +hep-th/9705137 Theory +hep-th/9705142 Theory +hep-th/9705181 Theory +hep-th/9705184 Theory +hep-th/9705189 Theory +hep-th/9705190 Theory +hep-th/9705232 Theory +hep-th/9706001 Theory +hep-th/9706006 Theory +hep-th/9706029 Theory +hep-th/9706041 Theory +hep-th/9706054 Theory +hep-th/9706125 Theory +hep-th/9706152 Theory +hep-th/9706158 Theory +hep-th/9706167 Theory +hep-th/9706179 Theory +hep-th/9706186 Theory +hep-th/9707001 Theory +hep-th/9707110 Theory +hep-th/9707232 Theory +hep-th/9707250 Theory +hep-th/9708005 Theory +hep-th/9708022 Theory +hep-th/9708073 Theory +hep-th/9708148 Theory +hep-th/9709064 Theory +hep-th/9709105 Theory +hep-th/9709132 Theory +hep-th/9710036 Theory +hep-th/9710055 Theory +hep-th/9710068 Theory +hep-th/9710083 Theory +hep-th/9710116 Theory +hep-th/9711014 Theory +hep-th/9711032 Theory +hep-th/9711049 Theory +hep-th/9711115 Theory +hep-th/9711147 Theory +hep-th/9712023 Theory +hep-th/9712025 Theory +hep-th/9712043 Theory +hep-th/9712092 Theory +hep-th/9712117 Theory +hep-th/9712121 Theory +hep-th/9712139 Theory +hep-th/9712164 Theory +hep-th/9712186 Theory +hep-th/9712189 Theory +hep-th/9712194 Theory +hep-th/9712219 Theory +hep-th/9801042 Theory +hep-th/9801069 Theory +hep-th/9801134 Theory +hep-th/9801142 Theory +hep-th/9802029 Theory +hep-th/9802032 Theory +hep-th/9802102 Theory +hep-th/9802110 Theory +hep-th/9802111 Theory +hep-th/9802128 Theory +hep-th/9802157 Theory +hep-th/9803002 Theory +hep-th/9803038 Theory +hep-th/9803071 Theory +hep-th/9803085 Theory +hep-th/9803095 Theory +hep-th/9803096 Theory +hep-th/9803140 Theory +hep-th/9803157 Theory +hep-th/9803178 Theory +hep-th/9803187 Theory +hep-th/9804077 Theory +hep-th/9804114 Theory +hep-th/9804134 Theory +hep-th/9804193 Theory +hep-th/9805030 Theory +hep-th/9805154 Theory +hep-th/9805155 Theory +hep-th/9805178 Theory +hep-th/9805198 Theory +hep-th/9806051 Theory +hep-th/9806140 Theory +hep-th/9806213 Theory +hep-th/9806215 Theory +hep-th/9806217 Theory +hep-th/9807019 Theory +hep-th/9807093 Theory +hep-th/9807103 Theory +hep-th/9807127 Theory +hep-th/9807186 Theory +hep-th/9808006 Theory +hep-th/9808043 Theory +hep-th/9808058 Theory +hep-th/9808108 Theory +hep-th/9808144 Theory +hep-th/9809008 Theory +hep-th/9809085 Theory +hep-th/9809132 Theory +hep-th/9809154 Theory +hep-th/9810011 Theory +hep-th/9810057 Theory +hep-th/9810076 Theory +hep-th/9810103 Theory +hep-th/9810129 Theory +hep-th/9810136 Theory +hep-th/9810151 Theory +hep-th/9810160 Theory +hep-th/9810213 Theory +hep-th/9811118 Theory +hep-th/9812022 Theory +hep-th/9812061 Theory +hep-th/9812087 Theory +hep-th/9901028 Theory +hep-th/9901035 Theory +hep-th/9901127 Theory +hep-th/9902074 Theory +hep-th/9902081 Theory +hep-th/9902091 Theory +hep-th/9902096 Theory +hep-th/9902109 Theory +hep-th/9902192 Theory +hep-th/9902193 Theory +hep-th/9903174 Theory +hep-th/9903230 Theory +hep-th/9903249 Theory +hep-th/9904048 Theory +hep-th/9904057 Theory +hep-th/9904159 Theory +hep-th/9905020 Theory +hep-th/9905088 Theory +hep-th/9905101 Theory +hep-th/9905123 Theory +hep-th/9905124 Theory +hep-th/9905149 Theory +hep-th/9905186 Theory +hep-th/9906018 Theory +hep-th/9906078 Theory +hep-th/9906085 Theory +hep-th/9906087 Theory +hep-th/9906091 Theory +hep-th/9906108 Theory +hep-th/9906120 Theory +hep-th/9906216 Theory +hep-th/9907005 Theory +hep-th/9907026 Theory +hep-th/9907049 Theory +hep-th/9907070 Theory +hep-th/9907102 Theory +hep-th/9907144 Theory +hep-th/9907153 Theory +hep-th/9908045 Theory +hep-th/9908058 Theory +hep-th/9908069 Theory +hep-th/9908102 Theory +hep-th/9909020 Theory +hep-th/9909223 Theory +hep-th/9910051 Theory +hep-th/9910118 Theory +hep-th/9910159 Theory +hep-th/9910190 Theory +hep-th/9910198 Theory +hep-th/9910199 Theory +hep-th/9910223 Theory +hep-th/9910239 Theory +hep-th/9911020 Theory +hep-th/9911130 Theory +hep-th/9911133 Theory +hep-th/9911167 Theory +hep-th/9912034 Theory +hep-th/9912271 Theory +math/0512450 Analysis of PDEs +math/9201203 Metric Geometry +math/9201204 Metric Geometry +math/9201208 Probability +math/9201209 Functional Analysis +math/9201230 Functional Analysis +math/9201233 Functional Analysis +math/9201234 Functional Analysis +math/9201244 Logic +math/9201246 Logic +math/9201249 Logic +math/9201253 Logic +math/9201254 Functional Analysis +math/9201255 Differential Geometry +math/9201256 Representation Theory +math/9201258 Differential Geometry +math/9201260 Analysis of PDEs +math/9201261 Analysis of PDEs +math/9201263 Geometric Topology +math/9201265 Group Theory +math/9201266 Numerical Analysis +math/9201267 Complex Variables +math/9201268 Analysis of PDEs +math/9201272 Dynamical Systems +math/9201274 Dynamical Systems +math/9201277 Dynamical Systems +math/9201281 Dynamical Systems +math/9201282 Dynamical Systems +math/9201283 Dynamical Systems +math/9201284 Dynamical Systems +math/9201285 Dynamical Systems +math/9201286 Dynamical Systems +math/9201288 Dynamical Systems +math/9201291 Dynamical Systems +math/9201294 Dynamical Systems +math/9201295 Dynamical Systems +math/9201298 Dynamical Systems +math/9201299 Differential Geometry +math/9201300 Dynamical Systems +math/9201301 Quantum Algebra +math/9201302 Quantum Algebra +math/9202202 Functional Analysis +math/9202206 Differential Geometry +math/9202207 Differential Geometry +math/9202208 Differential Geometry +math/9202209 Dynamical Systems +math/9203202 Differential Geometry +math/9203203 Dynamical Systems +math/9204202 Logic +math/9204203 Logic +math/9204205 Logic +math/9204209 Logic +math/9204211 Functional Analysis +math/9204212 Functional Analysis +math/9204213 Functional Analysis +math/9204215 Functional Analysis +math/9204216 Functional Analysis +math/9204217 Number Theory +math/9204219 Logic +math/9204220 Group Theory +math/9204222 Representation Theory +math/9204224 Complex Variables +math/9204226 Differential Geometry +math/9204227 Representation Theory +math/9204228 Operator Algebras +math/9204229 Representation Theory +math/9204230 Algebraic Geometry +math/9204231 Algebraic Topology +math/9204232 Complex Variables +math/9204235 Spectral Theory +math/9204237 Complex Variables +math/9204238 Complex Variables +math/9204240 Dynamical Systems +math/9205202 Logic +math/9205205 Functional Analysis +math/9205207 Functional Analysis +math/9205208 Logic +math/9205209 Dynamical Systems +math/9205210 Dynamical Systems +math/9206204 Functional Analysis +math/9207206 Functional Analysis +math/9207207 Functional Analysis +math/9207208 Functional Analysis +math/9207209 Quantum Algebra +math/9207211 Differential Geometry +math/9207214 Complex Variables +math/9207220 Dynamical Systems +math/9208201 Functional Analysis +math/9208202 Functional Analysis +math/9208203 Quantum Algebra +math/9209210 Logic +math/9209213 Functional Analysis +math/9209215 Functional Analysis +math/9209217 Functional Analysis +math/9209218 Logic +math/9209219 Differential Geometry +math/9209220 Dynamical Systems +math/9209221 Dynamical Systems +math/9210201 Complex Variables +math/9210202 Logic +math/9210205 Functional Analysis +math/9210206 Functional Analysis +math/9210208 Functional Analysis +math/9210209 Functional Analysis +math/9210210 Functional Analysis +math/9210211 Functional Analysis +math/9210213 Metric Geometry +math/9210215 Analysis of PDEs +math/9210216 Differential Geometry +math/9210217 Dynamical Systems +math/9210218 Metric Geometry +math/9210220 Functional Analysis +math/9210222 Metric Geometry +math/9210223 Differential Geometry +math/9210224 Geometric Topology +math/9210225 Complex Variables +math/9210227 Operator Algebras +math/9211201 Logic +math/9211202 Logic +math/9211210 Functional Analysis +math/9211211 Functional Analysis +math/9211212 Functional Analysis +math/9211214 Logic +math/9212204 Functional Analysis +math/9212206 Functional Analysis +math/9212207 Functional Analysis +math/9212208 Functional Analysis +math/9212209 Quantum Algebra +math/9301201 Functional Analysis +math/9301203 Logic +math/9301204 Logic +math/9301205 Logic +math/9301208 Logic +math/9301209 Logic +math/9301212 Geometric Topology +math/9301216 Combinatorics +math/9301220 Dynamical Systems +math/9302203 Logic +math/9302206 Functional Analysis +math/9302207 Functional Analysis +math/9302208 Functional Analysis +math/9302209 Functional Analysis +math/9302210 Metric Geometry +math/9302211 Functional Analysis +math/9302212 Functional Analysis +math/9302213 Functional Analysis +math/9302214 Functional Analysis +math/9302216 Functional Analysis +math/9303201 Functional Analysis +math/9303207 Logic +math/9303208 Logic +math/9303209 Dynamical Systems +math/9304202 Logic +math/9304206 Functional Analysis +math/9304207 Logic +math/9304208 Logic +math/9304211 Number Theory +math/9304212 Algebraic Geometry +math/9304214 Numerical Analysis +math/9304215 Representation Theory +math/9305203 Functional Analysis +math/9305205 Logic +math/9306203 Group Theory +math/9306206 Functional Analysis +math/9306207 Functional Analysis +math/9306208 Functional Analysis +math/9306209 Functional Analysis +math/9306210 Functional Analysis +math/9306211 Functional Analysis +math/9307203 Classical Analysis and ODEs +math/9307204 Classical Analysis and ODEs +math/9307207 Classical Analysis and ODEs +math/9307208 Classical Analysis and ODEs +math/9307209 Classical Analysis and ODEs +math/9307210 Classical Analysis and ODEs +math/9307211 Classical Analysis and ODEs +math/9307213 Classical Analysis and ODEs +math/9307214 Classical Analysis and ODEs +math/9307217 Classical Analysis and ODEs +math/9307218 Classical Analysis and ODEs +math/9307222 Classical Analysis and ODEs +math/9307224 Classical Analysis and ODEs +math/9307227 History and Overview +math/9307230 Geometric Topology +math/9307234 Numerical Analysis +math/9308204 Functional Analysis +math/9308205 Functional Analysis +math/9308207 Functional Analysis +math/9308208 Functional Analysis +math/9308209 Classical Analysis and ODEs +math/9308210 Logic +math/9308213 Logic +math/9308214 Logic +math/9308215 Logic +math/9308218 Logic +math/9308219 Logic +math/9308220 Logic +math/9308221 Logic +math/9308222 Logic +math/9308223 Dynamical Systems +math/9309204 Logic +math/9309209 Logic +math/9309210 Functional Analysis +math/9309213 Classical Analysis and ODEs +math/9309214 Differential Geometry +math/9309215 Dynamical Systems +math/9310201 Complex Variables +math/9310216 Functional Analysis +math/9310220 Classical Analysis and ODEs +math/9310221 Classical Analysis and ODEs +math/9310222 Classical Analysis and ODEs +math/9310223 Classical Analysis and ODEs +math/9310224 Logic +math/9310225 Probability +math/9310226 Dynamical Systems +math/9310228 Algebraic Topology +math/9310231 Differential Geometry +math/9310233 Operator Algebras +math/9310235 Dynamical Systems +math/9311205 Logic +math/9311208 Functional Analysis +math/9311209 Classical Analysis and ODEs +math/9311210 Classical Analysis and ODEs +math/9311213 Dynamical Systems +math/9312205 Functional Analysis +math/9312206 Functional Analysis +math/9312208 Functional Analysis +math/9312210 Classical Analysis and ODEs +math/9312212 Logic +math/9312213 Symplectic Geometry +math/9401205 Functional Analysis +math/9401206 Functional Analysis +math/9401209 Classical Analysis and ODEs +math/9401211 Logic +math/9401213 Logic +math/9401217 Logic +math/9401218 Logic +math/9401221 Functional Analysis +math/9401223 Complex Variables +math/9401224 Dynamical Systems +math/9402204 Functional Analysis +math/9402205 Functional Analysis +math/9402206 Functional Analysis +math/9402210 Functional Analysis +math/9402212 Classical Analysis and ODEs +math/9402213 Logic +math/9402214 Logic +math/9403202 Logic +math/9403203 Logic +math/9403205 Functional Analysis +math/9403206 Functional Analysis +math/9403207 Functional Analysis +math/9403208 Functional Analysis +math/9403210 Functional Analysis +math/9403211 Functional Analysis +math/9403213 Classical Analysis and ODEs +math/9403214 Classical Analysis and ODEs +math/9403218 Quantum Algebra +math/9403219 Logic +math/9403222 Dynamical Systems +math/9404204 Logic +math/9404207 Functional Analysis +math/9404208 Functional Analysis +math/9404209 Functional Analysis +math/9404210 Functional Analysis +math/9404211 Functional Analysis +math/9404212 Functional Analysis +math/9404214 Functional Analysis +math/9404215 Functional Analysis +math/9404219 Classical Analysis and ODEs +math/9404220 Classical Analysis and ODEs +math/9404221 Classical Analysis and ODEs +math/9404223 Classical Analysis and ODEs +math/9404225 Quantum Algebra +math/9404226 Logic +math/9404232 Geometric Topology +math/9404233 History and Overview +math/9404234 Functional Analysis +math/9404237 Dynamical Systems +math/9405206 Logic +math/9405209 Functional Analysis +math/9405211 Functional Analysis +math/9405213 Classical Analysis and ODEs +math/9405216 Dynamical Systems +math/9405217 Dynamical Systems +math/9405218 Metric Geometry +math/9406210 Functional Analysis +math/9406212 Probability +math/9406215 Functional Analysis +math/9406217 Functional Analysis +math/9406224 Classical Analysis and ODEs +math/9406225 Combinatorics +math/9406227 Classical Analysis and ODEs +math/9406228 Logic +math/9406229 Logic +math/9407204 Logic +math/9407205 Logic +math/9407206 Logic +math/9407207 Logic +math/9407210 Functional Analysis +math/9407214 Quantum Algebra +math/9407215 Functional Analysis +math/9407216 Differential Geometry +math/9407217 Geometric Topology +math/9407218 Dynamical Systems +math/9407219 Number Theory +math/9407220 Number Theory +math/9407222 Geometric Topology +math/9408202 Logic +math/9408209 Classical Analysis and ODEs +math/9408211 Classical Analysis and ODEs +math/9408212 Representation Theory +math/9408213 Logic +math/9408217 Dynamical Systems +math/9409207 Logic +math/9409208 Commutative Algebra +math/9409209 Geometric Topology +math/9409211 K-Theory and Homology +math/9409212 Combinatorics +math/9409213 Combinatorics +math/9409214 Combinatorics +math/9409215 Combinatorics +math/9409217 Combinatorics +math/9409218 Combinatorics +math/9409221 Combinatorics +math/9409224 Combinatorics +math/9409225 Combinatorics +math/9409226 Combinatorics +math/9409229 Classical Analysis and ODEs +math/9409231 Classical Analysis and ODEs +math/9409232 Geometric Topology +math/9410201 Logic +math/9410204 Functional Analysis +math/9410205 Functional Analysis +math/9410206 Logic +math/9410207 Rings and Algebras +math/9410208 Combinatorics +math/9410209 Combinatorics +math/9410210 Combinatorics +math/9410212 Number Theory +math/9410214 Representation Theory +math/9410215 Geometric Topology +math/9410218 Geometric Topology +math/9410221 Dynamical Systems +math/9410223 Dynamical Systems +math/9410224 Combinatorics +math/9411202 Complex Variables +math/9411203 Group Theory +math/9411206 Logic +math/9411210 Functional Analysis +math/9411212 Number Theory +math/9411215 Combinatorics +math/9411219 Combinatorics +math/9411220 Combinatorics +math/9411221 Combinatorics +math/9411222 Combinatorics +math/9411223 Combinatorics +math/9411224 Classical Analysis and ODEs +math/9411225 Quantum Algebra +math/9411227 Classical Analysis and ODEs +math/9411229 Classical Analysis and ODEs +math/9411230 Quantum Algebra +math/9411231 Quantum Algebra +math/9411233 Algebraic Geometry +math/9411235 Logic +math/9411236 Logic +math/9411237 Dynamical Systems +math/9412208 Logic +math/9412211 Functional Analysis +math/9412213 Functional Analysis +math/9412216 Functional Analysis +math/9412219 Functional Analysis +math/9412221 Differential Geometry +math/9412222 Combinatorics +math/9412224 Classical Analysis and ODEs +math/9412225 Quantum Algebra +math/9412227 Classical Analysis and ODEs +math/9412229 Logic +math/9412230 Logic +math/9412233 Dynamical Systems +math/9501203 Logic +math/9501204 Logic +math/9501205 Logic +math/9501207 Logic +math/9501208 Logic +math/9501209 Logic +math/9501210 Functional Analysis +math/9501215 Functional Analysis +math/9501216 Representation Theory +math/9501218 Classical Analysis and ODEs +math/9501219 Quantum Algebra +math/9501221 Logic +math/9501222 Logic +math/9501224 Classical Analysis and ODEs +math/9501226 Classical Analysis and ODEs +math/9501230 Dynamical Systems +math/9501231 Combinatorics +math/9501232 Dynamical Systems +math/9501233 Dynamical Systems +math/9502203 Logic +math/9502204 Logic +math/9502205 Logic +math/9502209 Number Theory +math/9502210 Combinatorics +math/9502211 Combinatorics +math/9502213 Combinatorics +math/9502215 Combinatorics +math/9502216 Combinatorics +math/9502218 Combinatorics +math/9502219 Combinatorics +math/9502220 Combinatorics +math/9502224 Combinatorics +math/9502226 Combinatorics +math/9502229 Classical Analysis and ODEs +math/9502230 Logic +math/9502232 Logic +math/9502234 Combinatorics +math/9503203 Logic +math/9503204 Logic +math/9503207 Logic +math/9503208 Logic +math/9503209 Logic +math/9503211 Functional Analysis +math/9503212 Functional Analysis +math/9503214 Metric Geometry +math/9503215 Dynamical Systems +math/9503216 Differential Geometry +math/9503218 Number Theory +math/9503221 Combinatorics +math/9503222 Combinatorics +math/9503223 Classical Analysis and ODEs +math/9503224 Quantum Algebra +math/9503225 Quantum Algebra +math/9503226 Logic +math/9503232 Group Theory +math/9504201 Logic +math/9504205 Functional Analysis +math/9504208 Differential Geometry +math/9504209 Differential Geometry +math/9504211 Combinatorics +math/9504213 Combinatorics +math/9504215 Classical Analysis and ODEs +math/9504216 Classical Analysis and ODEs +math/9504217 Classical Analysis and ODEs +math/9504218 Classical Analysis and ODEs +math/9504220 Logic +math/9504222 Number Theory +math/9504223 Number Theory +math/9504224 Rings and Algebras +math/9504225 Complex Variables +math/9504226 Analysis of PDEs +math/9504227 Dynamical Systems +math/9505202 Complex Variables +math/9505204 Logic +math/9505205 Metric Geometry +math/9505206 Representation Theory +math/9505207 Dynamical Systems +math/9505209 Representation Theory +math/9505210 Metric Geometry +math/9505212 Logic +math/9505213 Classical Analysis and ODEs +math/9505215 Logic +math/9505216 Logic +math/9505217 Differential Geometry +math/9506208 Logic +math/9506209 Geometric Topology +math/9506211 Dynamical Systems +math/9506212 Dynamical Systems +math/9506213 Complex Variables +math/9506216 Quantum Algebra +math/9506217 Representation Theory +math/9506219 Representation Theory +math/9506221 Geometric Topology +math/9506222 Logic +math/9506223 Differential Geometry +math/9506225 Combinatorics +math/9507208 Logic +math/9507209 Logic +math/9507210 Logic +math/9507211 Logic +math/9507212 Logic +math/9507214 Logic +math/9507217 Number Theory +math/9507218 Number Theory +math/9507219 Combinatorics +math/9507223 Dynamical Systems +math/9507225 Dynamical Systems +math/9508206 Logic +math/9508207 Functional Analysis +math/9508208 Number Theory +math/9508210 Number Theory +math/9508212 Dynamical Systems +math/9508213 Differential Geometry +math/9508214 Differential Geometry +math/9508217 Algebraic Topology +math/9508218 Combinatorics +math/9508220 Logic +math/9509207 Logic +math/9509208 Logic +math/9509209 Logic +math/9509210 Logic +math/9509211 Logic +math/9509215 Functional Analysis +math/9509217 Functional Analysis +math/9509218 Representation Theory +math/9509219 Algebraic Topology +math/9509220 Differential Geometry +math/9509221 Dynamical Systems +math/9509222 Quantum Algebra +math/9509224 Number Theory +math/9509228 Logic +math/9510201 Complex Variables +math/9510202 Functional Analysis +math/9510203 Probability +math/9510204 Representation Theory +math/9510206 Complex Variables +math/9510207 Differential Geometry +math/9510208 Number Theory +math/9510211 Classical Analysis and ODEs +math/9510215 Logic +math/9510216 Logic +math/9510217 Metric Geometry +math/9510219 Dynamical Systems +math/9511202 Complex Variables +math/9511206 Functional Analysis +math/9511207 Functional Analysis +math/9511208 Dynamical Systems +math/9511210 Complex Variables +math/9511212 Functional Analysis +math/9511214 Functional Analysis +math/9511215 Representation Theory +math/9511216 Representation Theory +math/9511217 Operator Algebras +math/9511218 Classical Analysis and ODEs +math/9512201 Logic +math/9512202 Logic +math/9512203 Functional Analysis +math/9512204 Functional Analysis +math/9512205 Functional Analysis +math/9512206 Functional Analysis +math/9512209 Functional Analysis +math/9512212 Functional Analysis +math/9512213 Complex Variables +math/9512214 Operator Algebras +math/9512215 Analysis of PDEs +math/9512216 Analysis of PDEs +math/9512217 Number Theory +math/9512219 Spectral Theory +math/9512220 Operator Algebras +math/9512221 Dynamical Systems +math/9512222 Classical Analysis and ODEs +math/9512226 Logic +math/9512229 Dynamical Systems +math/9601204 Functional Analysis +math/9601208 Differential Geometry +math/9601210 Functional Analysis +math/9601211 Functional Analysis +math/9601212 Dynamical Systems +math/9601213 Dynamical Systems +math/9601214 Dynamical Systems +math/9601215 Representation Theory +math/9601216 Classical Analysis and ODEs +math/9601218 Logic +math/9601220 Functional Analysis +math/9601221 Quantum Algebra +math/9602204 Logic +math/9602205 Logic +math/9602206 Functional Analysis +math/9602207 Functional Analysis +math/9602209 Functional Analysis +math/9602213 Differential Geometry +math/9602214 Classical Analysis and ODEs +math/9602215 Number Theory +math/9602216 Logic +math/9602218 Functional Analysis +math/9602219 Operator Algebras +math/9603205 Logic +math/9603209 Probability +math/9603210 Complex Variables +math/9603211 Combinatorics +math/9603212 Functional Analysis +math/9603217 Classical Analysis and ODEs +math/9603219 Logic +math/9604201 Complex Variables +math/9604207 Logic +math/9604209 Logic +math/9604211 Logic +math/9604212 Functional Analysis +math/9604213 Functional Analysis +math/9604214 Functional Analysis +math/9604218 Functional Analysis +math/9604219 Functional Analysis +math/9604221 Complex Variables +math/9604223 Number Theory +math/9604224 Complex Variables +math/9604227 Algebraic Geometry +math/9604228 Complex Variables +math/9604229 Functional Analysis +math/9604231 Dynamical Systems +math/9604235 Dynamical Systems +math/9604237 Dynamical Systems +math/9604238 Dynamical Systems +math/9604240 Dynamical Systems +math/9604242 Logic +math/9604243 Logic +math/9604244 Logic +math/9604245 Numerical Analysis +math/9605208 Logic +math/9605209 Logic +math/9605210 Logic +math/9605212 Functional Analysis +math/9605213 Functional Analysis +math/9605215 Functional Analysis +math/9605216 Number Theory +math/9605217 Metric Geometry +math/9605218 Metric Geometry +math/9605219 Representation Theory +math/9605220 Geometric Topology +math/9605222 Differential Geometry +math/9605224 Functional Analysis +math/9605226 Functional Analysis +math/9605227 Operator Algebras +math/9605228 Dynamical Systems +math/9605229 Dynamical Systems +math/9605232 Geometric Topology +math/9605234 Logic +math/9605235 Logic +math/9606205 Logic +math/9606206 Logic +math/9606208 Logic +math/9606209 Functional Analysis +math/9606210 Functional Analysis +math/9606212 Operator Algebras +math/9606214 Spectral Theory +math/9606215 Algebraic Geometry +math/9606216 Geometric Topology +math/9606218 Dynamical Systems +math/9606219 Dynamical Systems +math/9606223 Dynamical Systems +math/9606225 Geometric Topology +math/9606227 Logic +math/9606230 Logic +math/9606231 Logic +math/9607203 Logic +math/9607208 Functional Analysis +math/9607209 Probability +math/9607210 Probability +math/9607211 Functional Analysis +math/9607214 Dynamical Systems +math/9607215 Algebraic Geometry +math/9607217 Algebraic Geometry +math/9607218 Representation Theory +math/9607219 Representation Theory +math/9607222 Representation Theory +math/9607226 Logic +math/9607228 Logic +math/9607231 Representation Theory +math/9607232 Rings and Algebras +math/9608203 Logic +math/9608204 Logic +math/9608205 Logic +math/9608206 Group Theory +math/9608208 Metric Geometry +math/9608210 Differential Geometry +math/9608211 Geometric Topology +math/9608212 Dynamical Systems +math/9608213 Dynamical Systems +math/9609202 Logic +math/9609203 Logic +math/9609207 Geometric Topology +math/9609208 Geometric Topology +math/9609210 Differential Geometry +math/9609211 Combinatorics +math/9609214 Number Theory +math/9609215 Logic +math/9609216 Logic +math/9610207 Logic +math/9610208 Functional Analysis +math/9610209 Functional Analysis +math/9610213 Functional Analysis +math/9610214 Functional Analysis +math/9610216 Spectral Theory +math/9610218 Representation Theory +math/9610219 Logic +math/9610220 Geometric Topology +math/9610225 Classical Analysis and ODEs +math/9610226 Logic +math/9611207 Logic +math/9611208 Logic +math/9611209 Logic +math/9611210 Logic +math/9611212 Group Theory +math/9611214 Group Theory +math/9611215 Combinatorics +math/9611217 Dynamical Systems +math/9611218 Classical Analysis and ODEs +math/9611219 Representation Theory +math/9611220 Representation Theory +math/9611223 Differential Geometry +math/9612201 Complex Variables +math/9612203 Complex Variables +math/9612207 Logic +0704.2585 +0704.3324 Soft Condensed Matter +0705.0823 Statistical Mechanics +0705.3753 +0705.3924 Superconductivity +0705.4189 Soft Condensed Matter +0706.2406 +0707.2506 Artificial Intelligence +0707.2527 Information Theory +0707.2776 Geometric Topology +0707.3094 +0707.3611 Lattice +0708.0214 +0708.4132 Statistics Theory +0709.4285 Probability +0710.2203 Differential Geometry +0710.3071 Operator Algebras +0710.4566 Soft Condensed Matter +0710.4882 +0711.2140 +0711.3655 +0711.3724 +0711.4913 Mesoscale and Nanoscale Physics +0712.2186 +0812.0811 +0904.0698 Computational Complexity +0907.4894 Number Theory +0911.3173 Group Theory +0912.5354 Phenomenology +1002.4564 Group Theory +1112.4829 Metric Geometry +1201.3343 Theory +1207.3137 Molecular Networks +1208.3964 Probability +1210.7146 Algebraic Geometry +1211.1355 Analysis of PDEs +1304.1467 Data Structures and Algorithms +1306.2851 Geometric Topology +1307.6491 Algebraic Geometry +1308.5024 Materials Science +1309.7857 Machine Learning +1401.0218 Probability +1401.4563 Complex Variables +1402.4169 Probability +1403.3033 +1405.3278 Symplectic Geometry +1406.1693 Complex Variables +1408.2998 Probability +1408.5783 Combinatorics +1410.1736 Analysis of PDEs +1410.4767 Analysis of PDEs +1410.6887 Analysis of PDEs +1410.8160 Mathematical Finance +1411.0383 Representation Theory +1411.6751 Differential Geometry +1412.8575 +1501.00031 Atomic Physics +1501.00783 Optimization and Control +1501.02102 Machine Learning +1502.06927 Representation Theory +1504.03971 Number Theory +1504.07630 Mesoscale and Nanoscale Physics +1505.01197 Computer Vision and Pattern Recognition +1505.04038 Materials Science +1505.04284 Number Theory +1505.06279 Machine Learning +1505.07305 Number Theory +1506.01020 +1506.01100 Cosmology and Nongalactic Astrophysics +1506.01894 Statistics Theory +1506.02410 Representation Theory +1506.03037 Dynamical Systems +1506.03560 Phenomenology +1506.05855 Machine Learning +1506.06275 Distributed, Parallel, and Cluster Computing +1506.07756 +1506.08617 Mesoscale and Nanoscale Physics +1507.02097 Numerical Analysis +1507.05349 Mesoscale and Nanoscale Physics +1507.06358 Superconductivity +1508.00046 Theory +1508.00667 General Topology +1508.01185 +1508.01274 Networking and Internet Architecture +1508.02239 Optimization and Control +1508.05487 Combinatorics +1508.07922 +1509.01843 +1509.01946 Differential Geometry +1509.02276 Earth and Planetary Astrophysics +1509.03667 Combinatorics +1510.00109 Multiagent Systems +1510.04034 Materials Science +1510.05224 Instrumentation and Detectors +1510.05293 Analysis of PDEs +1510.06944 Mesoscale and Nanoscale Physics +1510.07327 Statistical Mechanics +1511.00429 Analysis of PDEs +1511.03581 High Energy Astrophysical Phenomena +1511.04096 Trading and Market Microstructure +1511.05005 Instrumentation and Detectors +1511.06205 Phenomenology +1511.08611 +1511.09167 Differential Geometry +1511.09218 Atomic Physics +1511.09359 Materials Science +1512.00336 Applications +1512.02533 Theory +1512.06487 +1512.06603 Phenomenology +1601.00968 Strongly Correlated Electrons +1601.01804 General Finance +1601.03282 Statistical Mechanics +1601.04315 +1601.04332 Mesoscale and Nanoscale Physics +1601.04686 Economics +1601.05024 Theory +1601.05444 Materials Science +1601.06647 Strongly Correlated Electrons +1601.06792 Cosmology and Nongalactic Astrophysics +1601.07075 Analysis of PDEs +1602.00417 Computer Vision and Pattern Recognition +1602.02738 Complex Variables +1602.03534 Machine Learning +1602.03768 Information Theory +1602.04738 +1602.05718 Economics +1602.06986 Optimization and Control +1602.08462 Atmospheric and Oceanic Physics +1603.00633 Data Analysis, Statistics and Probability +1603.01292 Computer Vision and Pattern Recognition +1603.01294 Theory +1603.01643 General Physics +1603.01861 Algebraic Topology +1603.01889 Probability +1603.02220 Representation Theory +1603.02995 Biological Physics +1603.03301 Combinatorics +1603.04223 Neural and Evolutionary Computing +1603.05446 Physics Education +1603.06199 +1603.06712 Combinatorics +1603.06846 Machine Learning +1603.07110 Phenomenology +1603.07296 +1603.07392 Computer Science and Game Theory +1603.07513 Information Theory +1603.07728 Fluid Dynamics +1603.07730 High Energy Astrophysical Phenomena +1603.07732 Astrophysics of Galaxies +1603.07737 Computational Geometry +1603.07738 Machine Learning +1603.07743 Optics +1603.07744 +1603.07745 Computer Vision and Pattern Recognition +1603.07746 Numerical Analysis +1603.07749 Machine Learning +1603.07751 Computer Science and Game Theory +1603.07756 +1603.07759 Neurons and Cognition +1603.07763 Computer Vision and Pattern Recognition +1603.07764 Astrophysics of Galaxies +1603.07767 Analysis of PDEs +1603.07768 Data Structures and Algorithms +1603.07772 Computer Vision and Pattern Recognition +1603.07773 Solar and Stellar Astrophysics +1603.07779 Computational Complexity +1603.07780 Number Theory +1603.07783 Optimization and Control +1603.07789 Optimization and Control +1603.07791 Mesoscale and Nanoscale Physics +1603.07792 Functional Analysis +1603.07793 Differential Geometry +1603.07796 Data Structures and Algorithms +1603.07797 Computer Vision and Pattern Recognition +1603.07799 Number Theory +1603.07800 Computer Vision and Pattern Recognition +1603.07803 Mesoscale and Nanoscale Physics +1603.07806 Probability +1603.07809 Combinatorics +1603.07813 Social and Information Networks +1603.07816 Methodology +1603.07817 Number Theory +1603.07819 Strongly Correlated Electrons +1603.07821 Algebraic Geometry +1603.07822 Statistical Finance +1603.07825 Networking and Internet Architecture +1603.07826 Number Theory +1603.07834 Computer Vision and Pattern Recognition +1603.07836 Functional Analysis +1603.07838 Numerical Analysis +1603.07839 Computer Vision and Pattern Recognition +1603.07841 Functional Analysis +1603.07843 Methodology +1603.07846 Learning +1603.07848 Solar and Stellar Astrophysics +1603.07849 Information Retrieval +1603.07850 Machine Learning +1603.07853 Classical Physics +1603.07859 Probability +1603.07866 Learning +1603.07867 Strongly Correlated Electrons +1603.07868 Combinatorics +1603.07874 Representation Theory +1603.07875 Optimization and Control +1603.07876 Symplectic Geometry +1603.07879 Learning +1603.07881 Computational Complexity +1603.07883 Combinatorics +1603.07884 Number Theory +1603.07886 Computer Vision and Pattern Recognition +1603.07889 Functional Analysis +1603.07892 High Energy Astrophysical Phenomena +1603.07895 Methodology +1603.07896 Fluid Dynamics +1603.07897 Statistical Mechanics +1603.07898 Soft Condensed Matter +1603.07900 Probability +1603.07901 Probability +1603.07903 Data Analysis, Statistics and Probability +1603.07909 Probability +1603.07911 Physics Education +1603.07914 Number Theory +1603.07918 Fluid Dynamics +1603.07919 Computational Engineering, Finance, and Science +1603.07924 Cryptography and Security +1603.07927 Statistical Mechanics +1603.07929 Theory +1603.07930 Exactly Solvable and Integrable Systems +1603.07931 +1603.07933 Social and Information Networks +1603.07935 Algebraic Geometry +1603.07947 Data Structures and Algorithms +1603.07948 Applications +1603.07949 Instrumentation and Detectors +1603.07951 Pattern Formation and Solitons +1603.07952 Differential Geometry +1603.07953 Analysis of PDEs +1603.07957 Computer Vision and Pattern Recognition +1603.07958 Quantum Algebra +1603.07959 High Energy Astrophysical Phenomena +1603.07961 Hardware Architecture +1603.07962 Hardware Architecture +1603.07964 Hardware Architecture +1603.07965 Computer Vision and Pattern Recognition +1603.07968 Mesoscale and Nanoscale Physics +1603.07969 +1603.07970 Probability +1603.07971 +1603.07972 Phenomenology +1603.07975 Quantum Gases +1603.07978 Methodology +1603.07980 +1603.07981 Networking and Internet Architecture +1603.07984 Systems and Control +1603.07990 Networking and Internet Architecture +1603.07992 Social and Information Networks +1603.07995 Networking and Internet Architecture +1603.07996 Materials Science +math/0604465 Number Theory +0810.3317 Analysis of PDEs +1209.2491 Algebraic Geometry +1301.6252 Pricing of Securities +1307.4673 +1308.5446 +1309.6280 Computational Complexity +1312.7119 +1401.2853 Networking and Internet Architecture +1402.7364 Algebraic Geometry +1403.5556 Learning +1411.3272 Optimization and Control +1411.5906 Classical Analysis and ODEs +1411.6354 Algebraic Geometry +1412.1798 Systems and Control +1412.4912 Statistics Theory +1501.03372 Algebraic Geometry +1502.00662 Strongly Correlated Electrons +1502.06967 +1503.04244 Information Theory +1503.05622 Combinatorics +1506.01583 Methodology +1506.01901 Analysis of PDEs +1506.04248 Optics +1506.05557 Information Theory +1506.07222 Optimization and Control +1506.08810 +1507.00747 Methodology +1507.03719 Data Structures and Algorithms +1507.05709 Functional Analysis +1507.08080 Computational Geometry +1508.01102 +1508.01484 Theory +1508.02211 Operator Algebras +1508.02943 Operator Algebras +1508.03774 Populations and Evolution +1508.03870 Combinatorics +1508.03875 Combinatorics +1509.03072 Combinatorics +1509.03326 General Physics +1509.04190 Combinatorics +1509.05408 Mesoscale and Nanoscale Physics +1509.05597 Strongly Correlated Electrons +1510.01863 Soft Condensed Matter +1510.02196 Human-Computer Interaction +1510.04374 Information Theory +1510.04957 +1510.07985 Phenomenology +1511.00146 Machine Learning +1511.01315 Combinatorics +1511.03952 Operator Algebras +1511.07872 Cosmology and Nongalactic Astrophysics +1512.05461 Materials Science +1512.07693 Pattern Formation and Solitons +1512.08323 Phenomenology +1601.01342 Optimization and Control +1601.03599 Instrumentation and Detectors +1601.04111 Probability +1601.05071 Strongly Correlated Electrons +1601.06098 Logic in Computer Science +1601.06788 Theory +1601.07791 Theory +1602.00127 Representation Theory +1602.02139 Graphics +1602.07337 Methodology +1602.07574 Phenomenology +1602.07685 +1602.08780 Machine Learning +1602.09017 Lattice +1603.03235 Computer Vision and Pattern Recognition +1603.04167 +1603.05935 Theory +1603.05968 Cosmology and Nongalactic Astrophysics +1603.05971 Quantum Gases +1603.06280 Atomic Physics +1603.06935 Theory +1603.08060 Materials Science +1603.08575 Computer Vision and Pattern Recognition +1603.09538 Analysis of PDEs +1604.00420 Materials Science +1604.00510 Materials Science +1604.00821 Mesoscale and Nanoscale Physics +1604.02074 +1604.02473 Logic +1604.07469 +1604.07511 Mesoscale and Nanoscale Physics +1604.07514 Mesoscale and Nanoscale Physics +1604.07568 +1604.08553 Data Structures and Algorithms +1605.00187 Classical Analysis and ODEs +1605.01674 Chemical Physics +1605.01715 Computational Physics +1605.01827 Materials Science +1605.02702 Cosmology and Nongalactic Astrophysics +1605.03456 Optimization and Control +1605.05650 Materials Science +1605.07339 +1605.09036 Geometric Topology +1606.00387 Methodology +1606.00824 Quantum Gases +1606.01750 Information Theory +1606.03732 Phenomenology +1606.04617 +1606.05765 Numerical Analysis +1606.07121 Materials Science +1606.08775 +1606.08810 High Energy Astrophysical Phenomena +1606.09606 +1607.00564 Geometric Topology +1607.00694 Strongly Correlated Electrons +1607.02024 Machine Learning +1607.03371 Group Theory +1607.03510 Theory +1607.03872 Mesoscale and Nanoscale Physics +1607.04081 High Energy Astrophysical Phenomena +1607.04343 Category Theory +1607.04830 Algebraic Topology +1607.05744 Mesoscale and Nanoscale Physics +1607.06094 Superconductivity +1607.06214 Analysis of PDEs +1607.06234 Phenomenology +1607.06498 Probability +1607.06533 High Energy Astrophysical Phenomena +1607.07405 Computer Vision and Pattern Recognition +1607.08598 Soft Condensed Matter +1607.08830 +1608.00364 Algebraic Geometry +1608.01061 Materials Science +1608.01431 Computer Vision and Pattern Recognition +1608.01751 Earth and Planetary Astrophysics +1608.01883 Materials Science +1608.02082 Artificial Intelligence +1608.02115 +1608.02317 Number Theory +1608.02404 +1608.02436 Instrumentation and Methods for Astrophysics +1608.02592 +1608.02653 Computational Geometry +1608.03259 Combinatorics +1608.03329 Geometric Topology +1608.03459 Number Theory +1608.03530 Learning +1608.03589 Numerical Analysis +1608.03590 Differential Geometry +1608.03594 Populations and Evolution +1608.03595 Instrumentation and Methods for Astrophysics +1608.03598 +1608.03603 Instrumentation and Detectors +1608.03605 Physics and Society +1608.03606 Earth and Planetary Astrophysics +1608.03608 Software Engineering +1608.03609 Computer Vision and Pattern Recognition +1608.03610 Robotics +1608.03611 Data Structures and Algorithms +1608.03614 Optics +1608.03615 Mesoscale and Nanoscale Physics +1608.03616 Neurons and Cognition +1608.03617 Computer Vision and Pattern Recognition +1608.03618 Fluid Dynamics +1608.03619 Neurons and Cognition +1608.03620 Optics +1608.03622 Systems and Control +1608.03624 Software Engineering +1608.03625 Strongly Correlated Electrons +1608.03626 Functional Analysis +1608.03628 Classical Analysis and ODEs +1608.03631 High Energy Astrophysical Phenomena +1608.03632 Combinatorics +1608.03635 Combinatorics +1608.03636 Statistical Finance +1608.03637 Physics and Society +1608.03638 Information Theory +1608.03639 Machine Learning +1608.03640 Information Theory +1608.03642 +1608.03645 Optics +1608.03646 Algebraic Geometry +1608.03647 Learning +1608.03648 Algebraic Geometry +1608.03649 Computer Science and Game Theory +1608.03650 Programming Languages +1608.03651 Phenomenology +1608.03652 High Energy Astrophysical Phenomena +1608.03654 Algebraic Topology +1608.03655 Neurons and Cognition +1608.03657 Algebraic Topology +1608.03658 Computer Vision and Pattern Recognition +1608.03662 Phenomenology +1608.03663 Information Theory +1608.03664 Information Theory +1608.03666 Functional Analysis +1608.03667 Computer Vision and Pattern Recognition +1608.03668 Functional Analysis +1608.03669 +1608.03670 Number Theory +1608.03672 Artificial Intelligence +1608.03676 Performance +1608.03677 Information Theory +1608.03678 Materials Science +1608.03680 Computational Geometry +1608.03682 Analysis of PDEs +1608.03684 Information Theory +1608.03686 Methodology +1608.03688 Rings and Algebras +1608.03689 Information Theory +1608.03696 Analysis of PDEs +1608.03697 Discrete Mathematics +1608.03699 Functional Analysis +1608.03700 Combinatorics +1608.03701 Analysis of PDEs +1608.03703 Statistics Theory +1608.03706 Methodology +1608.03708 Mesoscale and Nanoscale Physics +1608.03710 Information Theory +1608.03712 Complex Variables +1608.03713 Classical Analysis and ODEs +1608.03715 Analysis of PDEs +1608.03719 Atomic and Molecular Clusters +1608.03720 Sound +1608.03722 Soft Condensed Matter +1608.03723 Information Theory +1608.03724 Other Computer Science +1608.03726 Mesoscale and Nanoscale Physics +1608.03729 Optimization and Control +1608.03730 Biological Physics +1608.03731 +1608.03732 Cryptography and Security +1608.03733 Functional Analysis +1608.03736 Probability +1608.03737 +1608.03738 Theory +1608.03740 Commutative Algebra +1608.03744 +1608.03747 Functional Analysis +1608.03749 Information Theory +1608.03750 Analysis of PDEs +1608.03752 Superconductivity +1608.03754 Group Theory +1608.03755 Strongly Correlated Electrons +1608.03758 Functional Analysis +1608.03761 Materials Science +1608.03762 Quantum Algebra +1608.03764 Computation and Language +1608.03766 Probability +1608.03767 Computation and Language +1608.03768 Metric Geometry +1608.03769 Methodology +1608.03770 Networking and Internet Architecture +1608.03771 Programming Languages +1608.03774 Physics and Society +1608.03777 Mesoscale and Nanoscale Physics +1608.03778 +1608.03780 Databases +1608.03783 Materials Science +1608.03785 Artificial Intelligence +1608.03786 Algebraic Geometry +1608.03787 Applications +1608.03788 Solar and Stellar Astrophysics +1608.03790 Atmospheric and Oceanic Physics +1608.03791 Materials Science +1608.03794 Geophysics +1608.03795 Algebraic Topology +1608.03796 Number Theory +1608.03800 Earth and Planetary Astrophysics +1608.03802 Geophysics +1608.03803 Computation and Language +1608.03804 Group Theory +1608.03807 Differential Geometry +1608.03808 +1608.03811 Machine Learning +1608.03818 Numerical Analysis +1608.03819 Computer Vision and Pattern Recognition +1608.03820 +1608.03821 Materials Science +1608.03822 Plasma Physics +1608.03823 Geometric Topology +1608.03824 Artificial Intelligence +1608.03827 Superconductivity +1608.03829 Quantum Algebra +1608.03832 Computer Vision and Pattern Recognition +1608.03833 Solar and Stellar Astrophysics +1608.03834 Soft Condensed Matter +1608.03836 Numerical Analysis +1608.03840 Representation Theory +1608.03843 Optimization and Control +1608.03845 Robotics +1608.03846 Phenomenology +1608.03847 Instrumentation and Detectors +1608.03849 Instrumentation and Detectors +1608.03856 Probability +1608.03857 Number Theory +1608.03860 Combinatorics +1608.03862 Systems and Control +1608.03871 Optimization and Control +1608.03874 Information Theory +1608.03875 Information Theory +1608.03877 Chemical Physics +1608.03878 Analysis of PDEs +1608.03882 Algebraic Geometry +1608.03887 Probability +1608.03889 Social and Information Networks +1608.03890 Materials Science +alg-geom/9604019 Algebraic Geometry +alg-geom/9606009 Algebraic Geometry +alg-geom/9701015 Algebraic Geometry +alg-geom/9703013 Algebraic Geometry +alg-geom/9706009 Algebraic Geometry +alg-geom/9711022 Algebraic Geometry +astro-ph/0001034 +astro-ph/0001416 +astro-ph/0002310 +astro-ph/0003025 +astro-ph/0004382 +astro-ph/0005352 +astro-ph/0005588 +astro-ph/0006218 +astro-ph/0007150 +astro-ph/0007189 +astro-ph/0007217 +astro-ph/0007477 +astro-ph/0008100 +astro-ph/0008101 +astro-ph/0008215 +astro-ph/0009358 +astro-ph/0010102 +astro-ph/0011136 +astro-ph/0011492 +astro-ph/0501427 +astro-ph/0601067 +astro-ph/0601068 +astro-ph/0601069 +astro-ph/0601071 +astro-ph/0601097 +astro-ph/0601150 +astro-ph/0601300 +astro-ph/0601418 +astro-ph/0601426 +astro-ph/0601607 +astro-ph/0602112 +astro-ph/0602150 +astro-ph/0602151 +astro-ph/0602396 +astro-ph/0602427 +astro-ph/0602435 +astro-ph/0602436 +astro-ph/0602444 +astro-ph/0603299 +astro-ph/0603670 +astro-ph/0603846 +astro-ph/0603854 +astro-ph/0604058 +astro-ph/0605714 +astro-ph/0605751 +astro-ph/0606113 +astro-ph/0606114 +astro-ph/0606163 +astro-ph/0606171 +astro-ph/0606225 +astro-ph/0606380 +astro-ph/0606681 +astro-ph/0606745 +astro-ph/0607026 +astro-ph/0607259 +astro-ph/0607291 +astro-ph/0607365 +astro-ph/0608214 +astro-ph/0608218 +astro-ph/0608290 +astro-ph/0608510 +astro-ph/0608551 +astro-ph/0609491 +astro-ph/0609649 +astro-ph/0609677 +astro-ph/0609817 +astro-ph/0609826 +astro-ph/0610200 +astro-ph/0610211 +astro-ph/0610290 +astro-ph/0610548 +astro-ph/0610849 +astro-ph/0610915 +astro-ph/0610957 +astro-ph/0611027 +astro-ph/0611067 +astro-ph/0611278 +astro-ph/0611362 +astro-ph/0611414 +astro-ph/0611941 +astro-ph/0612223 +astro-ph/0612242 +astro-ph/0612588 +astro-ph/9503066 +astro-ph/9505032 +astro-ph/9505146 +astro-ph/9601154 +astro-ph/9603041 +astro-ph/9603093 +astro-ph/9604037 +astro-ph/9604170 +astro-ph/9605142 +astro-ph/9606164 +astro-ph/9607106 +astro-ph/9608176 +astro-ph/9609059 +astro-ph/9609062 +astro-ph/9609063 +astro-ph/9609064 +astro-ph/9611147 +astro-ph/9702183 +astro-ph/9703028 +astro-ph/9709004 +astro-ph/9709047 +astro-ph/9709049 +astro-ph/9709103 +astro-ph/9709191 +astro-ph/9709290 +astro-ph/9710113 +astro-ph/9711322 +astro-ph/9711346 +astro-ph/9712256 +astro-ph/9801312 +astro-ph/9806044 +astro-ph/9809045 +astro-ph/9809183 +astro-ph/9809292 +astro-ph/9809297 +astro-ph/9810161 +astro-ph/9811368 +astro-ph/9812099 +astro-ph/9812282 +astro-ph/9812483 +astro-ph/9904077 +astro-ph/9908034 +astro-ph/9911265 +astro-ph/9911531 +astro-ph/9912090 +astro-ph/9912122 +atom-ph/9602001 Atomic Physics +atom-ph/9607004 Atomic Physics +chao-dyn/9502024 Chaotic Dynamics +chao-dyn/9504012 Chaotic Dynamics +chao-dyn/9509019 Chaotic Dynamics +chao-dyn/9510007 Chaotic Dynamics +chao-dyn/9603006 Chaotic Dynamics +chao-dyn/9605016 Chaotic Dynamics +chao-dyn/9608011 Chaotic Dynamics +chao-dyn/9702013 Chaotic Dynamics +chao-dyn/9708008 Chaotic Dynamics +chao-dyn/9906033 Chaotic Dynamics +chao-dyn/9910011 Chaotic Dynamics +chem-ph/9602004 Chemical Physics +chem-ph/9609001 Chemical Physics +cmp-lg/9505035 Computation and Language +cmp-lg/9507002 Computation and Language +cmp-lg/9507004 Computation and Language +cmp-lg/9603006 Computation and Language +cmp-lg/9607001 Computation and Language +cond-mat/0001088 +cond-mat/0001102 Materials Science +cond-mat/0001142 +cond-mat/0001144 +cond-mat/0001290 +cond-mat/0002164 Superconductivity +cond-mat/0002327 Disordered Systems and Neural Networks +cond-mat/0002354 Statistical Mechanics +cond-mat/0002397 Statistical Mechanics +cond-mat/0003010 +cond-mat/0003023 Soft Condensed Matter +cond-mat/0003323 +cond-mat/0003374 Statistical Mechanics +cond-mat/0003499 Superconductivity +cond-mat/0004067 Superconductivity +cond-mat/0004217 Superconductivity +cond-mat/0004223 Superconductivity +cond-mat/0004359 Disordered Systems and Neural Networks +cond-mat/0004385 Mesoscale and Nanoscale Physics +cond-mat/0004397 Statistical Mechanics +cond-mat/0004429 Statistical Mechanics +cond-mat/0004493 Strongly Correlated Electrons +cond-mat/0005052 Strongly Correlated Electrons +cond-mat/0005133 Soft Condensed Matter +cond-mat/0005191 Statistical Mechanics +cond-mat/0005204 Soft Condensed Matter +cond-mat/0005432 Soft Condensed Matter +cond-mat/0006063 Statistical Mechanics +cond-mat/0006083 Disordered Systems and Neural Networks +cond-mat/0006229 +cond-mat/0006292 Mesoscale and Nanoscale Physics +cond-mat/0006396 Disordered Systems and Neural Networks +cond-mat/0006458 Superconductivity +cond-mat/0007213 Statistical Mechanics +cond-mat/0010357 Soft Condensed Matter +cond-mat/0011426 +cond-mat/0011491 Materials Science +cond-mat/0012083 +cond-mat/0012426 Mesoscale and Nanoscale Physics +cond-mat/0012452 Strongly Correlated Electrons +cond-mat/0109290 Soft Condensed Matter +cond-mat/0310022 +cond-mat/0310102 +cond-mat/0310113 +cond-mat/0606147 Mesoscale and Nanoscale Physics +cond-mat/9503030 +cond-mat/9503080 +cond-mat/9504012 +cond-mat/9504015 +cond-mat/9504022 +cond-mat/9504115 +cond-mat/9505102 +cond-mat/9505111 +cond-mat/9506017 +cond-mat/9506077 +cond-mat/9507045 +cond-mat/9509162 +cond-mat/9509175 +cond-mat/9510033 +cond-mat/9510138 +cond-mat/9511019 +cond-mat/9511115 +cond-mat/9512139 +cond-mat/9601059 +cond-mat/9601094 +cond-mat/9601102 +cond-mat/9601104 +cond-mat/9601129 +cond-mat/9601148 +cond-mat/9602020 +cond-mat/9602067 +cond-mat/9602083 +cond-mat/9603098 Mesoscale and Nanoscale Physics +cond-mat/9603153 +cond-mat/9603180 +cond-mat/9605069 +cond-mat/9605071 +cond-mat/9607144 +cond-mat/9609077 +cond-mat/9609078 +cond-mat/9609276 +cond-mat/9610051 Superconductivity +cond-mat/9610125 Statistical Mechanics +cond-mat/9611208 Superconductivity +cond-mat/9612093 Superconductivity +cond-mat/9612151 Soft Condensed Matter +cond-mat/9612230 Superconductivity +cond-mat/9612234 Soft Condensed Matter +cond-mat/9702026 +cond-mat/9702183 +cond-mat/9702205 +cond-mat/9703015 +cond-mat/9703016 +cond-mat/9703139 Superconductivity +cond-mat/9703191 Disordered Systems and Neural Networks +cond-mat/9704027 Strongly Correlated Electrons +cond-mat/9704042 Materials Science +cond-mat/9704090 Statistical Mechanics +cond-mat/9704136 +cond-mat/9705025 Superconductivity +cond-mat/9706077 +cond-mat/9706136 +cond-mat/9706141 Disordered Systems and Neural Networks +cond-mat/9706142 Disordered Systems and Neural Networks +cond-mat/9706184 Superconductivity +cond-mat/9706213 Statistical Mechanics +cond-mat/9707044 +cond-mat/9707141 +cond-mat/9707197 Mesoscale and Nanoscale Physics +cond-mat/9707198 Mesoscale and Nanoscale Physics +cond-mat/9707305 +cond-mat/9707309 Materials Science +cond-mat/9708164 Mesoscale and Nanoscale Physics +cond-mat/9708227 Disordered Systems and Neural Networks +cond-mat/9709005 Superconductivity +cond-mat/9709080 +cond-mat/9710071 Soft Condensed Matter +cond-mat/9710307 +cond-mat/9710318 +cond-mat/9711047 Strongly Correlated Electrons +cond-mat/9711300 Statistical Mechanics +cond-mat/9712095 +cond-mat/9712157 +cond-mat/9712186 +cond-mat/9801129 +cond-mat/9801259 Statistical Mechanics +cond-mat/9801261 Statistical Mechanics +cond-mat/9802033 Statistical Mechanics +cond-mat/9803025 Disordered Systems and Neural Networks +cond-mat/9803213 Statistical Mechanics +cond-mat/9805310 Superconductivity +cond-mat/9806106 +cond-mat/9807013 Disordered Systems and Neural Networks +cond-mat/9807157 +cond-mat/9807322 Superconductivity +cond-mat/9808042 Mesoscale and Nanoscale Physics +cond-mat/9809418 Disordered Systems and Neural Networks +cond-mat/9810253 Strongly Correlated Electrons +cond-mat/9810272 Strongly Correlated Electrons +cond-mat/9810297 Mesoscale and Nanoscale Physics +cond-mat/9811186 Disordered Systems and Neural Networks +cond-mat/9811356 +cond-mat/9812012 Statistical Mechanics +cond-mat/9812027 Superconductivity +cond-mat/9812143 Materials Science +cond-mat/9812163 Mesoscale and Nanoscale Physics +cond-mat/9812254 Mesoscale and Nanoscale Physics +cond-mat/9901084 Superconductivity +cond-mat/9901111 Statistical Mechanics +cond-mat/9902055 +cond-mat/9903222 Statistical Mechanics +cond-mat/9903234 Superconductivity +cond-mat/9903359 +cond-mat/9903363 Strongly Correlated Electrons +cond-mat/9903374 Superconductivity +cond-mat/9903388 Statistical Mechanics +cond-mat/9904407 Superconductivity +cond-mat/9904425 Soft Condensed Matter +cond-mat/9904447 +cond-mat/9905036 Strongly Correlated Electrons +cond-mat/9905124 +cond-mat/9905329 Statistical Mechanics +cond-mat/9905369 +cond-mat/9905389 Materials Science +cond-mat/9906035 +cond-mat/9906233 Superconductivity +cond-mat/9906321 Disordered Systems and Neural Networks +cond-mat/9907448 Strongly Correlated Electrons +cond-mat/9908047 Superconductivity +cond-mat/9909024 Superconductivity +cond-mat/9909210 Disordered Systems and Neural Networks +cond-mat/9909366 +cond-mat/9910488 +cond-mat/9911029 Disordered Systems and Neural Networks +cond-mat/9911073 Statistical Mechanics +cond-mat/9911462 +cond-mat/9912193 Strongly Correlated Electrons +cond-mat/9912385 Strongly Correlated Electrons +cs/0010011 Computational Complexity +cs/0312057 Logic in Computer Science +dg-ga/9501001 Differential Geometry +funct-an/9707001 Functional Analysis +funct-an/9711004 Functional Analysis +funct-an/9712002 Functional Analysis +gr-qc/0001004 +gr-qc/0002067 +gr-qc/0005101 +gr-qc/0006002 +gr-qc/0006108 +gr-qc/0009077 +gr-qc/0012019 +gr-qc/9504027 +gr-qc/9505003 +gr-qc/9508053 +gr-qc/9510035 +gr-qc/9510036 +gr-qc/9510042 +gr-qc/9511065 +gr-qc/9511066 +gr-qc/9511072 +gr-qc/9512028 +gr-qc/9601020 +gr-qc/9605035 +gr-qc/9606082 +gr-qc/9607004 +gr-qc/9607023 +gr-qc/9609059 +gr-qc/9610007 +gr-qc/9702028 +gr-qc/9706009 +gr-qc/9706080 +gr-qc/9707061 +gr-qc/9710039 +gr-qc/9711019 +gr-qc/9711041 +gr-qc/9802009 +gr-qc/9804062 +gr-qc/9906007 +gr-qc/9907075 +gr-qc/9911046 +gr-qc/9911069 +gr-qc/9911084 +gr-qc/9912088 +hep-ex/0002004 Experiment +hep-ex/9802016 Experiment +hep-ex/9806024 Experiment +hep-ex/9912045 Experiment +hep-lat/9509077 Lattice +hep-lat/9512031 Lattice +hep-lat/9603026 Lattice +hep-lat/9606016 Lattice +hep-lat/9607049 Lattice +hep-lat/9608090 Lattice +hep-lat/9608123 Lattice +hep-lat/9610023 Lattice +hep-lat/9612009 Lattice +hep-lat/9701017 Lattice +hep-lat/9702001 Lattice +hep-lat/9710073 Lattice +hep-lat/9801005 Lattice +hep-lat/9804029 Lattice +hep-lat/9809076 Lattice +hep-lat/9809086 Lattice +hep-lat/9809124 Lattice +hep-lat/9809185 Lattice +hep-lat/9811034 Lattice +hep-lat/9901019 Lattice +hep-lat/9911025 Lattice +hep-ph/0006093 Phenomenology +hep-ph/0007037 Phenomenology +hep-ph/0008117 Phenomenology +hep-ph/0011164 Phenomenology +hep-ph/0011328 Phenomenology +hep-ph/0012084 Phenomenology +hep-ph/0012117 Phenomenology +hep-ph/0101261 Phenomenology +hep-ph/9502369 Phenomenology +hep-ph/9502371 Phenomenology +hep-ph/9502377 Phenomenology +hep-ph/9504228 Phenomenology +hep-ph/9505223 Phenomenology +hep-ph/9506236 Phenomenology +hep-ph/9506389 Phenomenology +hep-ph/9508334 Phenomenology +hep-ph/9511229 Phenomenology +hep-ph/9511254 Phenomenology +hep-ph/9511358 Phenomenology +hep-ph/9512246 Phenomenology +hep-ph/9512294 Phenomenology +hep-ph/9512305 Phenomenology +hep-ph/9512431 Phenomenology +hep-ph/9602244 Phenomenology +hep-ph/9602259 Phenomenology +hep-ph/9603302 Phenomenology +hep-ph/9604273 Phenomenology +hep-ph/9604403 Phenomenology +hep-ph/9604419 Phenomenology +hep-ph/9605208 Phenomenology +hep-ph/9606240 Phenomenology +hep-ph/9606329 Phenomenology +hep-ph/9606339 Phenomenology +hep-ph/9607308 Phenomenology +hep-ph/9607376 Phenomenology +hep-ph/9608266 Phenomenology +hep-ph/9609405 Phenomenology +hep-ph/9612438 Phenomenology +hep-ph/9702254 Phenomenology +hep-ph/9704406 Phenomenology +hep-ph/9705232 Phenomenology +hep-ph/9706416 Phenomenology +hep-ph/9708491 Phenomenology +hep-ph/9709205 Phenomenology +hep-ph/9709466 Phenomenology +hep-ph/9710480 Phenomenology +hep-ph/9711221 Phenomenology +hep-ph/9711477 Phenomenology +hep-ph/9801356 Phenomenology +hep-ph/9804220 Phenomenology +hep-ph/9806207 Phenomenology +hep-ph/9806279 Phenomenology +hep-ph/9809292 Phenomenology +hep-ph/9902236 Phenomenology +hep-ph/9902240 Phenomenology +hep-ph/9908407 Phenomenology +hep-ph/9908517 Phenomenology +hep-ph/9909422 Phenomenology +hep-ph/9909510 Phenomenology +hep-ph/9910208 Phenomenology +hep-ph/9910439 Phenomenology +hep-ph/9911361 Phenomenology +hep-th/0003141 Theory +hep-th/0007183 Theory +hep-th/0008215 Theory +hep-th/0008224 Theory +hep-th/0008251 Theory +hep-th/0009092 Theory +hep-th/0011178 Theory +hep-th/0012056 Theory +hep-th/0012268 Theory +hep-th/0012269 Theory +hep-th/0507039 Theory +hep-th/9408140 Theory +hep-th/9502008 Theory +hep-th/9502049 Theory +hep-th/9502140 Theory +hep-th/9503051 Theory +hep-th/9503075 Theory +hep-th/9504007 Theory +hep-th/9504050 Theory +hep-th/9504096 Theory +hep-th/9505157 Theory +hep-th/9506115 Theory +hep-th/9507021 Theory +hep-th/9507113 Theory +hep-th/9508008 Theory +hep-th/9508019 Theory +hep-th/9510051 Theory +hep-th/9510120 Theory +hep-th/9511136 Theory +hep-th/9601012 Theory +hep-th/9601145 Theory +hep-th/9602151 Theory +hep-th/9603082 Theory +hep-th/9603108 Theory +hep-th/9603148 Theory +hep-th/9604188 Theory +hep-th/9605034 Theory +hep-th/9606172 Theory +hep-th/9607150 Theory +hep-th/9607215 Theory +hep-th/9608101 Theory +hep-th/9609194 Theory +hep-th/9610010 Theory +hep-th/9612100 Theory +hep-th/9612189 Theory +hep-th/9701160 Theory +hep-th/9702169 Theory +hep-th/9703098 Theory +hep-th/9704051 Theory +hep-th/9704070 Theory +hep-th/9705007 Theory +hep-th/9705122 Theory +hep-th/9705185 Theory +hep-th/9707165 Theory +hep-th/9709140 Theory +hep-th/9712069 Theory +hep-th/9803037 Theory +hep-th/9804025 Theory +hep-th/9805173 Theory +hep-th/9807158 Theory +hep-th/9809193 Theory +hep-th/9812095 Theory +hep-th/9901024 Theory +hep-th/9902037 Theory +hep-th/9902060 Theory +hep-th/9903250 Theory +hep-th/9904099 Theory +hep-th/9905090 Theory +hep-th/9909005 Theory +hep-th/9909142 Theory +hep-th/9910141 Theory +hep-th/9910151 Theory +hep-th/9910166 Theory +hep-th/9911174 Theory +math-ph/0003043 +math-ph/9809018 +math-ph/9812007 +math-ph/9904022 +math-ph/9909025 +math/0002239 Functional Analysis +math/0003020 Functional Analysis +math/0003055 Complex Variables +math/0003111 Functional Analysis +math/0003124 Functional Analysis +math/0004016 Classical Analysis and ODEs +math/0004101 Functional Analysis +math/0005303 Dynamical Systems +math/0008004 Algebraic Geometry +math/0008005 Algebraic Geometry +math/0011066 Algebraic Geometry +math/0012072 Classical Analysis and ODEs +math/0604613 Operator Algebras +math/0604614 Operator Algebras +math/0604616 Functional Analysis +math/0604618 Quantum Algebra +math/0604621 Quantum Algebra +math/0604622 Operator Algebras +math/0604623 Operator Algebras +math/0702474 Probability +math/9502201 Geometric Topology +math/9801138 Algebraic Geometry +math/9801147 Combinatorics +math/9802102 Differential Geometry +math/9804031 Probability +math/9807047 Algebraic Geometry +math/9808111 Algebraic Topology +math/9901080 Quantum Algebra +math/9904088 Algebraic Geometry +math/9905026 Algebraic Geometry +math/9907054 Rings and Algebras +math/9907069 Algebraic Geometry +math/9911187 Algebraic Geometry +nlin/0001028 Exactly Solvable and Integrable Systems +nlin/0002026 Chaotic Dynamics +nlin/0010047 Pattern Formation and Solitons +nlin/0012050 Pattern Formation and Solitons +nucl-ex/0002005 +nucl-ex/0007005 +nucl-ex/0007006 +nucl-ex/0012009 +nucl-ex/9805006 +nucl-ex/9904009 +nucl-th/0003026 +nucl-th/0006011 +nucl-th/0006072 +nucl-th/9503013 +nucl-th/9508022 +nucl-th/9508024 +nucl-th/9511009 +nucl-th/9511038 +nucl-th/9603041 +nucl-th/9611021 +nucl-th/9612007 +nucl-th/9701042 +nucl-th/9702017 +nucl-th/9702055 +nucl-th/9703049 +nucl-th/9709018 +nucl-th/9709047 +nucl-th/9711029 +nucl-th/9711035 +nucl-th/9712069 +nucl-th/9803045 +nucl-th/9804063 +nucl-th/9806068 +nucl-th/9806098 +nucl-th/9810076 +nucl-th/9811021 +nucl-th/9903017 +nucl-th/9903041 +nucl-th/9903066 +nucl-th/9904010 +nucl-th/9909026 +nucl-th/9912018 +patt-sol/9709002 Pattern Formation and Solitons +physics/0001030 Physics Education +physics/0008003 Instrumentation and Detectors +physics/0008029 Chemical Physics +physics/0008246 Atomic Physics +physics/0509228 Optics +physics/9611026 Atomic Physics +physics/9702015 +physics/9705022 +physics/9706017 +physics/9805022 Atomic Physics +physics/9805023 Atomic Physics +physics/9807001 Chemical Physics +physics/9810034 Classical Physics +physics/9905024 Plasma Physics +q-alg/9506027 Quantum Algebra +q-alg/9604017 Quantum Algebra +q-alg/9612027 Quantum Algebra +q-alg/9710003 Quantum Algebra +quant-ph/0005072 +quant-ph/0006024 +quant-ph/0011073 +quant-ph/0012103 +quant-ph/9502018 +quant-ph/9502019 +quant-ph/9502027 +quant-ph/9503004 +quant-ph/9503013 +quant-ph/9506001 +quant-ph/9506038 +quant-ph/9510004 +quant-ph/9511002 +quant-ph/9606011 +quant-ph/9702005 +quant-ph/9702013 +quant-ph/9807030 +quant-ph/9809059 +quant-ph/9809063 +quant-ph/9812041 +quant-ph/9812054 +quant-ph/9812055 +quant-ph/9902043 +quant-ph/9903086 +quant-ph/9905067 +quant-ph/9908020 +quant-ph/9908069 +quant-ph/9910116 +quant-ph/9912051 +0912.0888 Analysis of PDEs +1006.3605 Analysis of PDEs +1007.1276 Analysis of PDEs +1007.3744 Analysis of PDEs +1008.1559 Statistical Mechanics +1010.5068 Differential Geometry +1011.5561 Analysis of PDEs +1012.1158 Analysis of PDEs +1012.2890 Analysis of PDEs +1101.5580 Analysis of PDEs +1103.1469 Differential Geometry +1103.5551 Differential Geometry +1106.1579 Analysis of PDEs +1109.5806 Lattice +1111.0333 Experiment +1112.0613 +1112.5801 Theory +1112.6161 General Topology +1202.2471 Analysis of PDEs +1202.4088 Analysis of PDEs +1206.0027 Analysis of PDEs +1206.3713 Learning +1206.5618 General Physics +1207.7339 +1208.2559 Computational Complexity +1209.3239 Rings and Algebras +1301.0795 Number Theory +1301.6589 Information Theory +1302.2248 Combinatorics +1302.4072 Optimization and Control +1303.4703 Theory +1305.2516 Combinatorics +1306.4104 Number Theory +1307.6167 +1307.6263 Theory +1308.2087 Optimization and Control +1308.2206 +1308.2709 Geophysics +1309.0515 Strongly Correlated Electrons +1309.4023 Analysis of PDEs +1309.4262 Dynamical Systems +1309.6522 Representation Theory +1310.0349 Representation Theory +1310.2539 Systems and Control +1310.8244 Methodology +1311.0066 Algebraic Geometry +1311.0200 Analysis of PDEs +1311.2205 Analysis of PDEs +1311.3230 Numerical Analysis +1311.3806 Logic +1311.3904 Rings and Algebras +1312.0908 +1312.1485 Group Theory +1312.5943 Number Theory +1312.7364 Solar and Stellar Astrophysics +1401.1137 Methodology +1401.2034 Adaptation and Self-Organizing Systems +1401.2094 Materials Science +1401.2188 Statistics Theory +1401.5624 Strongly Correlated Electrons +1401.7318 Differential Geometry +1401.7466 Algebraic Geometry +1401.7861 Group Theory +1402.0349 Combinatorics +1402.0791 +1402.2643 Quantitative Methods +1403.6150 Information Theory +1403.6737 Functional Analysis +1404.4001 Algebraic Geometry +1404.5339 Chaotic Dynamics +1404.5340 Probability +1404.5343 Phenomenology +1404.5509 Differential Geometry +1404.6611 Analysis of PDEs +1404.6933 Classical Analysis and ODEs +1405.0135 Optimization and Control +1405.4613 Logic +1405.5064 Dynamical Systems +1406.0165 Analysis of PDEs +1406.0168 Analysis of PDEs +1406.0169 Analysis of PDEs +1406.0681 Analysis of PDEs +1406.2751 Learning +1406.5467 Theory +1406.6228 Combinatorics +1406.7873 Solar and Stellar Astrophysics +1407.0821 Functional Analysis +1407.5685 Representation Theory +1407.8340 Mesoscale and Nanoscale Physics +1408.3098 Solar and Stellar Astrophysics +1408.4168 +1408.4255 Commutative Algebra +1408.7093 Classical Analysis and ODEs +1409.0448 Quantum Algebra +1409.1201 Representation Theory +1409.1575 +1409.3314 Logic in Computer Science +1409.4274 Statistics Theory +1409.4632 Combinatorics +1409.4783 Solar and Stellar Astrophysics +1409.5779 Solar and Stellar Astrophysics +1409.6787 Superconductivity +1409.8396 Group Theory +1410.0633 Machine Learning +1410.3383 Mesoscale and Nanoscale Physics +1410.4397 +1410.8194 Solar and Stellar Astrophysics +1410.8464 Digital Libraries +1411.0512 Operator Algebras +1411.1691 +1411.2386 +1411.3081 Dynamical Systems +1411.3174 Methodology +1411.3202 Superconductivity +1411.4952 Computer Vision and Pattern Recognition +1411.6177 Dynamical Systems +1412.0234 Optics +1412.0597 Materials Science +1412.2122 Human-Computer Interaction +1412.5004 Neurons and Cognition +1412.5052 Networking and Internet Architecture +1412.6045 Computation and Language +1412.8429 Cosmology and Nongalactic Astrophysics +1412.8541 +1412.8547 Information Theory +1501.01304 Quantum Gases +1501.01621 Theory +1501.02660 Atomic Physics +1501.03988 Formal Languages and Automata Theory +1501.04968 Astrophysics of Galaxies +1501.06005 Systems and Control +1501.06021 Numerical Analysis +1501.06059 Logic in Computer Science +1501.06466 Group Theory +1501.06658 Phenomenology +1501.07628 Representation Theory +1502.01317 Group Theory +1502.03759 Algebraic Geometry +1502.04769 Logic in Computer Science +1502.06735 Software Engineering +1502.06751 Representation Theory +1502.07976 Computer Vision and Pattern Recognition +1503.00165 Solar and Stellar Astrophysics +1503.01386 Computational Geometry +1503.01564 Theory +1503.01797 Mesoscale and Nanoscale Physics +1503.03980 Optimization and Control +1503.04546 Numerical Analysis +1503.04631 Number Theory +1503.04638 Mesoscale and Nanoscale Physics +1503.05691 Number Theory +1503.07079 Differential Geometry +1503.08318 Materials Science +1503.09166 Information Theory +1504.01263 Functional Analysis +1504.04189 Optimization and Control +1504.04673 Probability +1504.04720 Distributed, Parallel, and Cluster Computing +1504.06975 Other Computer Science +1505.00224 Instrumentation and Methods for Astrophysics +1505.00979 Other Condensed Matter +1505.01779 Combinatorics +1505.03075 Analysis of PDEs +1505.04368 Neurons and Cognition +1505.06281 Analysis of PDEs +1506.02742 Combinatorics +1506.03627 Methodology +1506.03670 Computation +1506.04127 +1506.05702 Computation and Language +1506.05865 Computation and Language +1506.06543 Classical Analysis and ODEs +1506.06917 Computational Physics +1506.08898 Multimedia +1507.00700 Logic in Computer Science +1507.01673 Multimedia +1507.02617 +1507.03698 Computer Vision and Pattern Recognition +1507.04090 Statistics Theory +1507.05319 Geometric Topology +1507.05424 +1507.07826 Computation and Language +1508.00650 +1508.02327 Phenomenology +1508.04167 Phenomenology +1508.04253 Computation +1508.04549 +1508.06779 Logic in Computer Science +1508.07059 Instrumentation and Detectors +1508.07248 Theory +1509.00087 Lattice +1509.00789 Cryptography and Security +1509.01010 Data Analysis, Statistics and Probability +1509.01944 Probability +1509.04314 Analysis of PDEs +1509.04628 Instrumentation and Methods for Astrophysics +1509.05378 +1509.07012 Soft Condensed Matter +1509.07755 Learning +1509.08163 Plasma Physics +1510.02167 Mesoscale and Nanoscale Physics +1510.02682 Computational Complexity +1510.03835 Dynamical Systems +1510.05180 Mesoscale and Nanoscale Physics +1510.05456 Theory +1510.06132 Statistical Mechanics +1510.06946 Statistics Theory +1510.07067 Differential Geometry +1510.07488 Instrumentation and Detectors +1510.07509 +1510.07976 Optics +1510.08834 Cosmology and Nongalactic Astrophysics +1511.00029 Cosmology and Nongalactic Astrophysics +1511.00265 Optimization and Control +1511.00493 Data Structures and Algorithms +1511.00618 Disordered Systems and Neural Networks +1511.01032 Social and Information Networks +1511.01403 Quantum Gases +1511.02782 Logic +1511.04398 +1511.04561 Neural and Evolutionary Computing +1511.04750 Human-Computer Interaction +1511.05835 Machine Learning +1511.06332 Operator Algebras +1511.06412 Learning +1511.06422 Learning +1511.06830 Computer Vision and Pattern Recognition +1511.06998 Phenomenology +1511.07557 Dynamical Systems +1511.07817 Representation Theory +1512.02338 Solar and Stellar Astrophysics +1512.05176 Plasma Physics +1512.05644 Instrumentation and Detectors +1512.06707 +1512.08157 Representation Theory +1512.08742 Phenomenology +1601.00056 High Energy Astrophysical Phenomena +1601.00809 Algebraic Geometry +1601.01512 Soft Condensed Matter +1601.03731 Plasma Physics +1601.04418 Instrumentation and Detectors +1601.04716 Theory +1601.04740 Computers and Society +1601.07101 Cryptography and Security +1601.07330 Phenomenology +1601.07731 Materials Science +1601.08025 Probability +1601.08168 General Topology +1602.00093 Physics and Society +1602.00489 Multimedia +1602.01242 Information Theory +1602.01762 Phenomenology +1602.02601 Software Engineering +1602.03031 Computational Engineering, Finance, and Science +1602.03038 Mesoscale and Nanoscale Physics +1602.03229 Group Theory +1602.03877 Phenomenology +1602.03983 Phenomenology +1602.04762 Robotics +1602.04854 Social and Information Networks +1602.04874 Learning +1602.04876 Optimization and Control +1602.04959 Operator Algebras +1602.04962 +1602.04976 Machine Learning +1602.04996 Astrophysics of Galaxies +1602.05028 Formal Languages and Automata Theory +1602.05069 Applications +1602.05077 +1602.05087 Instrumentation and Detectors +1602.05129 Adaptation and Self-Organizing Systems +1602.05163 Computers and Society +1602.05231 Software Engineering +1602.05326 Theory +1602.05423 +1602.05541 Computational Finance +1602.05897 Learning +1602.05958 +1602.05965 High Energy Astrophysical Phenomena +1602.05972 Combinatorics +1602.05979 +1602.05981 Tissues and Organs +1602.05982 Geometric Topology +1602.05985 +1602.05990 Computer Vision and Pattern Recognition +1602.05992 Algebraic Geometry +1602.05993 High Energy Astrophysical Phenomena +1602.05994 Metric Geometry +1602.05996 Neural and Evolutionary Computing +1602.05998 Pricing of Securities +1602.06001 Probability +1602.06003 +1602.06005 Distributed, Parallel, and Cluster Computing +1602.06006 Cryptography and Security +1602.06008 Complex Variables +1602.06009 Information Theory +1602.06012 Computational Complexity +1602.06015 Soft Condensed Matter +1602.06017 Group Theory +1602.06018 Group Theory +1602.06019 Atomic Physics +1602.06025 Learning +1602.06026 Quantum Algebra +1602.06031 Analysis of PDEs +1602.06038 Software Engineering +1602.06039 +1602.06045 Networking and Internet Architecture +1602.06049 Machine Learning +1602.06050 Numerical Analysis +1602.06052 Logic in Computer Science +1602.06053 Optimization and Control +1602.06057 Neural and Evolutionary Computing +1602.06065 Statistical Mechanics +1602.06070 Information Theory +1602.06077 +1602.06078 Spectral Theory +1602.06079 Computational Complexity +1602.06081 Probability +1602.06083 +1602.06085 Rings and Algebras +1602.06088 Rings and Algebras +1602.06089 Materials Science +1602.06091 Computers and Society +1602.06092 Analysis of PDEs +1602.06093 Dynamical Systems +1602.06094 Rings and Algebras +1602.06095 Dynamical Systems +1602.06097 Symbolic Computation +1602.06098 Analysis of PDEs +1602.06101 Probability +1602.06102 Analysis of PDEs +1602.06103 Analysis of PDEs +1602.06104 +1602.06105 Soft Condensed Matter +1602.06108 Rings and Algebras +1602.06110 Number Theory +1602.06114 Physics Education +1602.06119 Classical Analysis and ODEs +1602.06122 Statistical Mechanics +1602.06123 Classical Analysis and ODEs +1602.06126 Classical Analysis and ODEs +1602.06127 Number Theory +1602.06132 Biomolecules +1602.06133 Information Theory +1602.06135 Adaptation and Self-Organizing Systems +1602.06136 Information Retrieval +1602.06137 Analysis of PDEs +1602.06138 Materials Science +1602.06139 Materials Science +1602.06144 Metric Geometry +1602.06146 Phenomenology +1602.06148 Probability +1602.06149 Computer Vision and Pattern Recognition +1602.06150 Algebraic Geometry +1602.06161 Medical Physics +1602.06162 Physics Education +1602.06167 Information Theory +1602.06168 Solar and Stellar Astrophysics +1602.06169 Data Structures and Algorithms +1602.06172 Physics Education +1602.06178 Differential Geometry +1602.06179 Spectral Theory +1602.06180 Optimization and Control +1602.06183 Learning +1602.06186 Statistical Finance +1602.06187 Analysis of PDEs +1602.06188 Economics +1602.06189 Pricing of Securities +1602.06191 Geometric Topology +1602.06192 Atomic Physics +1602.06195 Adaptation and Self-Organizing Systems +1602.06199 Information Theory +1602.06203 Probability +1602.06205 Dynamical Systems +1602.06207 Experiment +1602.06208 Number Theory +1602.06213 Trading and Market Microstructure +1602.06215 Information Theory +1602.06219 Physics and Society +1602.06220 Logic in Computer Science +1602.06222 K-Theory and Homology +1602.06224 Other Condensed Matter +1602.06227 General Topology +1602.06235 Machine Learning +1602.06236 Databases +1602.06239 Graphics +1602.06241 Analysis of PDEs +1602.06242 Instrumentation and Detectors +1602.06246 Networking and Internet Architecture +1602.06249 Symplectic Geometry +1602.06250 +1602.06252 +1602.06254 History and Philosophy of Physics +1602.06257 Phenomenology +1602.06260 Computational Complexity +1602.06274 Combinatorics +1602.06275 Soft Condensed Matter +1602.06276 Machine Learning +1602.06281 Dynamical Systems +1602.06284 +1602.06285 Materials Science +1602.06289 Computation and Language +0706.2010 Cryptography and Security +0711.2241 General Mathematics +0712.0890 Category Theory +0804.0815 Representation Theory +0806.1540 Category Theory +0809.2270 Computational Finance +0901.3977 Optimization and Control +1002.1053 Representation Theory +1010.2986 Differential Geometry +1110.6554 History and Philosophy of Physics +1112.0255 Probability +1202.0923 Group Theory +1207.5099 Number Theory +1209.0197 Geometric Topology +1209.4421 Theory +1209.6519 Mesoscale and Nanoscale Physics +1210.7097 Representation Theory +1301.2682 Analysis of PDEs +1303.2183 +1304.1620 Cosmology and Nongalactic Astrophysics +1304.3780 Combinatorics +1305.6291 Logic in Computer Science +1306.2923 Biological Physics +1306.6234 Commutative Algebra +1309.1785 Social and Information Networks +1309.1890 Social and Information Networks +1309.2884 Numerical Analysis +1310.7161 Optimization and Control +1311.6420 Operator Algebras +1311.6545 +1312.3958 Methodology +1312.3977 Instrumentation and Detectors +1401.2585 +1401.6013 Computer Vision and Pattern Recognition +1401.7214 Methodology +1402.4209 Dynamical Systems +1402.4719 Algebraic Topology +1402.6280 Group Theory +1403.0074 Solar and Stellar Astrophysics +1403.0689 Geometric Topology +1403.4460 General Finance +1405.0904 Theory +1405.1176 Functional Analysis +1405.3529 Combinatorics +1405.4083 +1405.4172 Materials Science +1405.5885 Cosmology and Nongalactic Astrophysics +1406.2616 Robotics +1406.3629 Theory +1406.4026 Optimization and Control +1407.4842 Soft Condensed Matter +1407.6105 Mesoscale and Nanoscale Physics +1408.2591 Dynamical Systems +1409.3241 Strongly Correlated Electrons +1409.3605 Rings and Algebras +1410.4392 Differential Geometry +1411.0209 Optimization and Control +1411.2361 +1411.2607 +1411.2898 Strongly Correlated Electrons +1411.4158 Methodology +1411.5573 Programming Languages +1411.5635 Artificial Intelligence +1411.5791 Disordered Systems and Neural Networks +1412.0412 Geometric Topology +1412.6766 +1412.6875 Cosmology and Nongalactic Astrophysics +1412.7483 Analysis of PDEs +1501.01419 Algebraic Geometry +1501.01531 Dynamical Systems +1501.01715 +1501.03901 Strongly Correlated Electrons +1501.04079 Dynamical Systems +1501.06442 Statistical Mechanics +1501.07736 Complex Variables +1502.00387 Number Theory +1502.00426 Representation Theory +1502.01449 Mesoscale and Nanoscale Physics +1502.01788 Optics +1502.02430 Differential Geometry +1502.02664 Mesoscale and Nanoscale Physics +1502.03715 Discrete Mathematics +1502.05892 Phenomenology +1502.06638 Subcellular Processes +1502.07310 Physics and Society +1502.07932 Metric Geometry +1503.02014 Soft Condensed Matter +1503.02412 +1503.02602 +1503.04227 Geometric Topology +1503.05363 Lattice +1503.05425 Experiment +1503.05842 Accelerator Physics +1503.06146 Optics +1503.06475 Phenomenology +1503.08543 +1503.08863 Dynamical Systems +1503.09179 Theory +1504.00908 +1504.01528 Cosmology and Nongalactic Astrophysics +1504.02275 Strongly Correlated Electrons +1504.03254 Functional Analysis +1504.04142 +1504.04162 Atomic Physics +1504.04248 Lattice +1504.04476 Chaotic Dynamics +1504.05019 +1504.05164 Theory +1504.05693 Mesoscale and Nanoscale Physics +1504.06008 Dynamical Systems +1504.06901 Strongly Correlated Electrons +1504.07576 Materials Science +1504.08158 Biological Physics +1505.00140 Mesoscale and Nanoscale Physics +1505.01307 Algebraic Geometry +1505.01498 Strongly Correlated Electrons +1505.01556 +1505.02060 +1505.03951 Theory +1505.04099 Phenomenology +1505.05162 +1505.05896 Phenomenology +1505.06172 +1505.06205 Theory +1505.06753 Soft Condensed Matter +1505.06978 Analysis of PDEs +1505.07540 Instrumentation and Methods for Astrophysics +1506.01037 Astrophysics of Galaxies +1506.01189 +1506.01649 +1506.02118 Strongly Correlated Electrons +1506.03162 Methodology +1506.04069 Materials Science +1506.04833 Solar and Stellar Astrophysics +1506.05254 Learning +1506.05351 Disordered Systems and Neural Networks +1506.05468 Statistical Mechanics +1506.05594 Mesoscale and Nanoscale Physics +1506.06221 Social and Information Networks +1506.06263 Materials Science +1506.06432 Materials Science +1506.06763 Mesoscale and Nanoscale Physics +1506.07647 Mesoscale and Nanoscale Physics +1506.08892 +1506.08919 Artificial Intelligence +1507.00530 Mesoscale and Nanoscale Physics +1507.00628 +1507.00981 Theory +1507.01222 +1507.01811 +1507.02633 Soft Condensed Matter +1507.03139 +1507.03141 Statistical Finance +1507.03402 Quantum Gases +1507.03524 +1507.03592 Theory +1507.04793 Information Theory +1507.04926 Soft Condensed Matter +1507.05109 Strongly Correlated Electrons +1507.05643 +1507.06509 Phenomenology +1507.06726 Phenomenology +1507.06930 Mesoscale and Nanoscale Physics +1507.07861 Optics +1507.08059 Theory +1507.08894 Theory +1507.08925 Experiment +1507.08945 Soft Condensed Matter +1508.00216 Phenomenology +1508.01121 Theory +1508.01215 Soft Condensed Matter +1508.01275 Quantum Gases +1508.01347 Other Condensed Matter +1508.01371 Strongly Correlated Electrons +1508.01629 Atomic Physics +1508.02524 +1508.02555 Strongly Correlated Electrons +1508.03048 Lattice +1508.03230 +1508.03340 Theory +1508.03595 Complex Variables +1508.03735 Data Structures and Algorithms +1508.03962 Superconductivity +1508.03980 Phenomenology +1508.04042 Statistical Mechanics +1508.04129 Phenomenology +1508.04150 Statistical Mechanics +1508.04166 +1508.04353 Representation Theory +1508.04513 Theory +1508.05199 Biomolecules +1508.05218 Statistical Mechanics +1508.05295 Mesoscale and Nanoscale Physics +1508.05390 Phenomenology +1508.05832 Theory +1508.06009 Materials Science +1508.06094 Solar and Stellar Astrophysics +1508.06117 Computational Finance +1508.06745 Solar and Stellar Astrophysics +1508.06856 Lattice +1508.06953 +1508.07517 Mesoscale and Nanoscale Physics +1508.07816 Strongly Correlated Electrons +1508.07957 Mesoscale and Nanoscale Physics +1509.00756 Statistical Mechanics +1509.00846 +1509.01106 Strongly Correlated Electrons +1509.01154 Probability +1509.01761 Theory +1509.01929 Atomic Physics +1509.02461 Cosmology and Nongalactic Astrophysics +1509.02550 +1509.02582 Mesoscale and Nanoscale Physics +1509.02881 Strongly Correlated Electrons +1509.03070 Strongly Correlated Electrons +1509.03171 Phenomenology +1509.03290 Superconductivity +1509.04891 Theory +1509.05077 Materials Science +1509.05095 Materials Science +1509.05152 Mesoscale and Nanoscale Physics +1509.05316 Fluid Dynamics +1509.05895 Numerical Analysis +1509.06511 Biomolecules +1509.07085 Materials Science +1509.07420 Biological Physics +1509.07604 Phenomenology +1509.08013 Phenomenology +1509.08321 Materials Science +1509.08326 +1509.08964 Astrophysics of Galaxies +1509.09052 Instrumentation and Detectors +1510.00261 Mesoscale and Nanoscale Physics +1510.00308 Experiment +1510.00566 Statistical Mechanics +1510.01067 Phenomenology +1510.01477 +1510.01484 Numerical Analysis +1510.01802 Strongly Correlated Electrons +1510.02085 +1510.02221 Astrophysics of Galaxies +1510.02431 Statistical Mechanics +1510.02459 Soft Condensed Matter +1510.02544 +1510.02613 Disordered Systems and Neural Networks +1510.02764 Experiment +1510.03290 Category Theory +1510.03432 High Energy Astrophysical Phenomena +1510.03520 Phenomenology +1510.03723 Cosmology and Nongalactic Astrophysics +1510.03852 Theory +1510.03868 Cosmology and Nongalactic Astrophysics +1510.04178 Astrophysics of Galaxies +1510.04269 Solar and Stellar Astrophysics +1510.04759 Theory +1510.04988 Earth and Planetary Astrophysics +1510.05738 +1510.06120 +1510.06339 Mesoscale and Nanoscale Physics +1510.06648 Phenomenology +1510.06661 Mesoscale and Nanoscale Physics +1510.06716 Mesoscale and Nanoscale Physics +1510.07605 Phenomenology +1510.07634 Strongly Correlated Electrons +1510.08072 Phenomenology +1510.08358 Instrumentation and Methods for Astrophysics +1510.08747 Mesoscale and Nanoscale Physics +1510.08757 Phenomenology +1510.08775 Cosmology and Nongalactic Astrophysics +1510.08965 Populations and Evolution +1511.00229 Phenomenology +1511.00247 +1511.01248 Phenomenology +1511.01322 Astrophysics of Galaxies +1511.01382 +1511.01514 Cryptography and Security +1511.01793 +1511.01831 Mesoscale and Nanoscale Physics +1511.02389 Mesoscale and Nanoscale Physics +1511.02757 Theory +1511.02848 Analysis of PDEs +1511.03585 Atomic Physics +1511.04140 Lattice +1511.04141 Astrophysics of Galaxies +1511.04325 Solar and Stellar Astrophysics +1511.04641 Instrumentation and Methods for Astrophysics +1511.05334 Logic in Computer Science +1511.05929 Soft Condensed Matter +1511.07092 Cosmology and Nongalactic Astrophysics +1511.07442 Strongly Correlated Electrons +1511.08271 Classical Analysis and ODEs +1511.08724 Learning +1512.01969 Medical Physics +1512.02552 +1512.02683 Number Theory +1512.04186 Materials Science +1512.04552 Solar and Stellar Astrophysics +1512.04644 Optimization and Control +1512.04945 +1512.05090 Astrophysics of Galaxies +1512.05119 Astrophysics of Galaxies +1512.05665 Learning +1512.05714 Mesoscale and Nanoscale Physics +1512.05937 Combinatorics +1512.06168 Databases +1512.07984 Mesoscale and Nanoscale Physics +1512.08021 Mesoscale and Nanoscale Physics +1512.08116 +1512.08167 Materials Science +1512.08301 Neural and Evolutionary Computing +1512.08716 Numerical Analysis +1512.08748 Plasma Physics +1512.08795 Functional Analysis +1512.08965 +1512.08966 Chemical Physics +1512.08971 Chemical Physics +1512.08972 +1512.08988 +1512.08994 +1512.09192 Astrophysics of Galaxies +1512.09247 +1601.00022 Computer Vision and Pattern Recognition +1601.00148 Theory +1601.00249 Instrumentation and Detectors +1601.00461 Superconductivity +1601.00492 Materials Science +1601.00643 Information Retrieval +1601.00655 Strongly Correlated Electrons +1601.00662 Cosmology and Nongalactic Astrophysics +1601.00665 Other Statistics +1601.00668 Group Theory +1601.00669 Artificial Intelligence +1601.00674 Mesoscale and Nanoscale Physics +1601.00675 Classical Analysis and ODEs +1601.00690 Dynamical Systems +1601.00694 Algebraic Geometry +1601.00697 Category Theory +1601.00700 Materials Science +1601.00702 Materials Science +1601.00703 Analysis of PDEs +1601.00705 Subcellular Processes +1601.00706 Learning +1601.00707 Databases +1601.00710 Computation and Language +1601.00713 Programming Languages +1601.00717 Probability +1601.00719 Functional Analysis +1601.00722 Computer Vision and Pattern Recognition +1601.00728 Classical Analysis and ODEs +1601.00729 Differential Geometry +1601.00730 Physics Education +1601.00733 Fluid Dynamics +1601.00735 Fluid Dynamics +1601.00736 Methodology +1601.00737 Fluid Dynamics +1601.00738 Distributed, Parallel, and Cluster Computing +1601.00740 Robotics +1601.00741 Robotics +1601.00744 Lattice +1601.00745 Strongly Correlated Electrons +1601.00750 Differential Geometry +1601.00751 Networking and Internet Architecture +1601.00752 Theory +1601.00755 Fluid Dynamics +1601.00756 Quantitative Methods +1601.00760 Chaotic Dynamics +1601.00764 Mesoscale and Nanoscale Physics +1601.00767 Optimization and Control +1601.00768 Phenomenology +1601.00769 Complex Variables +1601.00772 Optimization and Control +1601.00773 Statistics Theory +1601.00774 Spectral Theory +1601.00775 Number Theory +1601.00776 Materials Science +1601.00778 Numerical Analysis +1601.00779 Analysis of PDEs +1601.00780 Mesoscale and Nanoscale Physics +1601.00781 Computer Vision and Pattern Recognition +1601.00784 Analysis of PDEs +1601.00785 +1601.00786 Instrumentation and Detectors +1601.00787 Materials Science +1601.00788 Networking and Internet Architecture +1601.00790 Experiment +1601.00797 Methodology +1601.00798 Algebraic Topology +1601.00804 Soft Condensed Matter +1601.00806 Soft Condensed Matter +1601.00808 Materials Science +1601.00810 Analysis of PDEs +1601.00812 Mesoscale and Nanoscale Physics +1601.00813 Numerical Analysis +1601.00814 Functional Analysis +1601.00816 Artificial Intelligence +1601.00818 Dynamical Systems +1601.00820 Materials Science +1601.00821 Earth and Planetary Astrophysics +1601.00823 Optimization and Control +1601.00825 Computer Vision and Pattern Recognition +1601.00826 +1601.00827 Differential Geometry +1601.00831 Optics +1601.00832 High Energy Astrophysical Phenomena +1601.00833 Sound +1601.00834 Distributed, Parallel, and Cluster Computing +1601.00835 Networking and Internet Architecture +1601.00837 Analysis of PDEs +1601.00839 Data Structures and Algorithms +1601.00840 Soft Condensed Matter +1601.00843 Probability +1601.00845 Popular Physics +1601.00846 Cryptography and Security +1601.00847 Data Structures and Algorithms +1601.00848 Pattern Formation and Solitons +1601.00849 Instrumentation and Methods for Astrophysics +1601.00850 Soft Condensed Matter +1601.00852 Robotics +1601.00855 Information Retrieval +1601.00856 Analysis of PDEs +1601.00858 Optics +1601.00861 Numerical Analysis +1601.00869 Atomic Physics +1601.00870 Combinatorics +1601.00873 Networking and Internet Architecture +1601.00875 +1601.00879 General Physics +1601.00882 Classical Analysis and ODEs +1601.00883 Combinatorics +1601.00884 Exactly Solvable and Integrable Systems +1601.00885 Algebraic Geometry +1601.00893 Computation and Language +1601.00901 Artificial Intelligence +1601.00902 +1601.00908 Instrumentation and Detectors +1601.00912 Cryptography and Security +1601.00916 Commutative Algebra +1601.00918 Fluid Dynamics +1601.00919 Computational Finance +1601.00923 Solar and Stellar Astrophysics +1601.00924 Earth and Planetary Astrophysics +1601.00925 Learning +1601.00926 Combinatorics +1601.00929 Algebraic Geometry +1601.00930 Commutative Algebra +1601.00932 Differential Geometry +1601.00934 Statistics Theory +1601.00935 Dynamical Systems +1601.00936 Analysis of PDEs +1601.00938 Classical Analysis and ODEs +1601.00940 Pricing of Securities +1601.00944 Combinatorics +1601.00947 +1601.00955 Machine Learning +1601.00957 Analysis of PDEs +1601.00960 Computers and Society +1601.00962 +hep-th/0509168 Theory +quant-ph/0101046 +0811.2113 Logic in Computer Science +1001.5222 Dynamical Systems +1003.0380 Dynamical Systems +1003.0708 Dynamical Systems +1005.5267 Solar and Stellar Astrophysics +1007.0702 Astrophysics of Galaxies +1108.1518 Analysis of PDEs +1108.2863 Rings and Algebras +1108.4804 Artificial Intelligence +1108.4942 Artificial Intelligence +1109.1300 Classical Analysis and ODEs +1201.2427 Algebraic Geometry +1204.1740 Optimization and Control +1205.4209 Atomic Physics +1207.6582 Classical Analysis and ODEs +1209.2733 Algebraic Geometry +1209.5577 Classical Analysis and ODEs +1210.6470 Astrophysics of Galaxies +1212.1243 Number Theory +1303.6109 Cosmology and Nongalactic Astrophysics +1304.0680 Logic +1305.2678 Dynamical Systems +1305.3258 Theory +1308.3990 Solar and Stellar Astrophysics +1310.7069 Solar and Stellar Astrophysics +1311.6910 Probability +1312.2554 Differential Geometry +1312.3332 +1401.3590 Computer Vision and Pattern Recognition +1401.4209 Optimization and Control +1402.0311 Algebraic Topology +1402.2346 Number Theory +1402.7212 Analysis of PDEs +1403.6108 Differential Geometry +1404.3723 Phenomenology +1404.3973 Combinatorics +1405.1161 Atomic Physics +1405.2770 Atomic Physics +1405.6931 Classical Analysis and ODEs +1405.7585 Probability +1406.0470 Materials Science +1406.1239 Algebraic Geometry +1406.6323 Computer Vision and Pattern Recognition +1407.4100 Number Theory +1407.4379 Mesoscale and Nanoscale Physics +1408.4553 Phenomenology +1409.2305 Materials Science +1409.2646 Experiment +1409.4478 Group Theory +1409.6668 Phenomenology +1409.7920 +1409.8116 Numerical Analysis +1410.0079 Combinatorics +1410.1183 Classical Analysis and ODEs +1410.1585 Algebraic Geometry +1410.4680 Optics +1410.7113 Analysis of PDEs +1411.0882 Differential Geometry +1411.1340 Probability +1411.1736 Logic +1411.3369 Probability +1411.6650 Cosmology and Nongalactic Astrophysics +1411.6829 Computational Complexity +1411.7380 Probability +1412.4003 +1412.5569 Classical Analysis and ODEs +1412.6490 +1412.8507 Theory +1501.00899 Accelerator Physics +1501.01342 Physics Education +1501.01352 Information Theory +1501.01679 Phenomenology +1501.02039 Representation Theory +1501.02843 +1501.02900 Computational Physics +1501.02940 Information Theory +1501.02950 +1501.03229 Mesoscale and Nanoscale Physics +1501.03443 Phenomenology +1501.03965 Dynamical Systems +1501.04483 Fluid Dynamics +1501.05101 Optics +1501.05175 Analysis of PDEs +1501.05383 Analysis of PDEs +1501.05737 Optimization and Control +1501.05972 Materials Science +1501.06068 Plasma Physics +1501.06193 Phenomenology +1501.06254 Materials Science +1501.06514 Statistical Mechanics +1501.07160 Theory +1501.07579 Analysis of PDEs +1502.01125 Computational Finance +1502.01285 +1502.02156 Analysis of PDEs +1502.02185 Differential Geometry +1502.02410 Computer Vision and Pattern Recognition +1502.02742 Atomic Physics +1502.02869 Fluid Dynamics +1502.03044 Learning +1502.03050 Probability +1502.03107 Cosmology and Nongalactic Astrophysics +1502.03331 Solar and Stellar Astrophysics +1502.03389 Soft Condensed Matter +1502.04102 Representation Theory +1502.04291 Materials Science +1502.04486 Accelerator Physics +1502.04858 Applications +1502.05055 Phenomenology +1502.05327 Quantum Algebra +1502.05335 Materials Science +1502.05488 Soft Condensed Matter +1502.05608 Numerical Analysis +1502.06024 Quantum Gases +1502.06077 Commutative Algebra +1502.06538 Strongly Correlated Electrons +1502.07374 Probability +1502.07560 Theory +1502.07619 Optics +1502.07914 +1503.00103 Strongly Correlated Electrons +1503.00739 Theory +1503.01507 +1503.01582 Spectral Theory +1503.02529 +1503.02538 Astrophysics of Galaxies +1503.02972 +1503.03268 Statistical Mechanics +1503.04456 Mesoscale and Nanoscale Physics +1503.04544 Numerical Analysis +1503.04609 Information Theory +1503.04776 Optimization and Control +1503.05477 Information Theory +1503.05521 Computer Vision and Pattern Recognition +1503.05648 Quantum Gases +1503.06083 Theory +1503.06148 Fluid Dynamics +1503.07260 Phenomenology +1503.07263 Phenomenology +1503.07354 Differential Geometry +1503.07964 Phenomenology +1504.00259 Materials Science +1504.00271 Materials Science +1504.00636 Computational Physics +1504.00702 Learning +1504.00988 Optics +1504.01204 Phenomenology +1504.01210 Algebraic Geometry +1504.01252 Information Theory +1504.01372 Statistical Mechanics +1504.01933 Applications +1504.01935 Numerical Analysis +1504.02382 Methodology +1504.02528 +1504.02596 Dynamical Systems +1504.02629 Materials Science +1504.02666 Biological Physics +1504.03168 Phenomenology +1504.03361 Atmospheric and Oceanic Physics +1504.03679 Information Theory +1504.04040 Mesoscale and Nanoscale Physics +1504.04407 Learning +1504.04687 Social and Information Networks +1504.05091 Phenomenology +1504.05229 Learning +1504.05552 Data Analysis, Statistics and Probability +1504.05715 Computation +1504.06160 Rings and Algebras +1504.06445 Mesoscale and Nanoscale Physics +1504.06775 Materials Science +1504.06914 Soft Condensed Matter +1504.07007 Differential Geometry +1504.07015 Theory +1504.07061 Probability +1504.07259 Computer Vision and Pattern Recognition +1504.07832 +1504.07902 Biomolecules +1505.00208 Pattern Formation and Solitons +1505.00273 Information Theory +1505.00474 +1505.00961 +1505.01027 Statistical Mechanics +1505.01042 Analysis of PDEs +1505.01339 +1505.01429 Computer Vision and Pattern Recognition +1505.01527 Phenomenology +1505.02489 Optics +1505.02534 Information Theory +1505.03006 Information Theory +1505.03232 Optics +1505.03495 Superconductivity +1505.03752 Materials Science +1505.03837 +1505.04092 Mesoscale and Nanoscale Physics +1505.04202 Information Theory +1505.04515 Numerical Analysis +1505.04664 Materials Science +1505.05029 +1505.05104 Lattice +1505.05194 +1505.05219 Materials Science +1505.05414 Optics +1505.05520 Superconductivity +1505.05943 Analysis of PDEs +1505.06278 Fluid Dynamics +1505.06343 Disordered Systems and Neural Networks +1505.06357 Computation +1505.06507 +1505.07407 Computational Physics +1505.07711 Probability +1505.08044 Combinatorics +1505.08081 Phenomenology +1506.00092 Social and Information Networks +1506.00658 Numerical Analysis +1506.01196 High Energy Astrophysical Phenomena +1506.01358 Strongly Correlated Electrons +1506.01660 Statistical Finance +1506.01803 Numerical Analysis +1506.02479 +1506.02566 Materials Science +1506.02702 Materials Science +1506.02937 Information Theory +1506.03001 Phenomenology +1506.03290 Cell Behavior +1506.03745 Computational Physics +1506.04234 Optimization and Control +1506.04298 Soft Condensed Matter +1506.04300 +1506.04919 Classical Physics +1506.04934 Numerical Analysis +1506.05002 Fluid Dynamics +1506.05224 Theory +1506.05387 Phenomenology +1506.05494 Plasma Physics +1506.05635 Strongly Correlated Electrons +1506.05760 Materials Science +1506.05815 +1506.05850 Phenomenology +1506.05994 Phenomenology +1506.06176 Quantum Gases +1506.06560 Probability +1506.06847 Strongly Correlated Electrons +1506.07086 Algebraic Geometry +1506.07090 Analysis of PDEs +1506.07361 Mesoscale and Nanoscale Physics +1506.07490 Computational Complexity +1506.07611 Machine Learning +1506.07633 +1506.07710 Quantum Gases +1506.07880 Astrophysics of Galaxies +1506.07885 Phenomenology +1506.07951 Biomolecules +1506.08185 Phenomenology +1506.08354 Social and Information Networks +1506.08613 +1506.08913 Mesoscale and Nanoscale Physics +1506.09088 Theory +1507.00011 +1507.00018 +1507.00123 Statistics Theory +1507.00146 Quantum Algebra +1507.00156 Materials Science +1507.01045 +1507.01248 Information Theory +1507.01544 Biological Physics +1507.01607 Phenomenology +1507.01751 Materials Science +1507.02369 Data Analysis, Statistics and Probability +1507.02474 Theory +1507.02511 Applications +1507.03247 Superconductivity +1507.03404 +1507.03645 High Energy Astrophysical Phenomena +1507.03757 Phenomenology +1507.03785 Differential Geometry +1507.04025 +1507.04156 Soft Condensed Matter +1507.04193 Theory +1507.04230 Machine Learning +1507.04364 Phenomenology +1507.04583 Mesoscale and Nanoscale Physics +1507.04707 +1507.04727 Neural and Evolutionary Computing +1507.05000 Analysis of PDEs +1507.05092 Cosmology and Nongalactic Astrophysics +1507.05329 Cosmology and Nongalactic Astrophysics +1507.05655 Biological Physics +1507.05698 Information Theory +1507.05893 Instrumentation and Detectors +1507.06067 +1507.07087 Phenomenology +1507.07392 Computation +1507.07527 Experiment +1507.07617 Analysis of PDEs +1507.07641 Phenomenology +1507.07679 +1507.07712 Materials Science +1507.07726 +1507.07891 Phenomenology +1507.08128 +1507.08342 Theory +1507.08369 Optics +1507.08406 Materials Science +1507.08616 Mesoscale and Nanoscale Physics +1507.08712 Materials Science +1507.08747 Neurons and Cognition +1507.08955 Superconductivity +1508.00289 Numerical Analysis +1508.00806 Materials Science +1508.00815 Phenomenology +1508.00859 Theory +1508.00923 Accelerator Physics +1508.00979 Theory +1508.01075 Optics +1508.01261 +1508.01307 Experiment +1508.01538 Fluid Dynamics +1508.01611 Other Condensed Matter +1508.01891 Optics +1508.02276 Fluid Dynamics +1508.02337 +1508.02403 +1508.02648 Mesoscale and Nanoscale Physics +1508.02697 +1508.03147 Physics and Society +1508.03216 Applications +1508.03271 +1508.03328 Fluid Dynamics +1508.03468 Strongly Correlated Electrons +1508.03734 Number Theory +1508.03794 Atmospheric and Oceanic Physics +1508.03991 Phenomenology +1508.04086 Instrumentation and Detectors +1508.04088 +1508.04144 Phenomenology +1508.04152 Applications +1508.04408 Phenomenology +1508.04426 High Energy Astrophysical Phenomena +1508.04615 Materials Science +1508.04642 Fluid Dynamics +1508.04660 Theory +1508.04690 +1508.04722 +1508.04840 +1508.04846 Accelerator Physics +1508.04861 +1508.04890 Phenomenology +1508.05019 +1508.05042 +1508.05101 Phenomenology +1508.05214 Methodology +1508.05493 High Energy Astrophysical Phenomena +1508.05548 High Energy Astrophysical Phenomena +1508.05625 Materials Science +1508.05846 Analysis of PDEs +1508.05952 Dynamical Systems +1508.06030 Mesoscale and Nanoscale Physics +1508.06372 Mesoscale and Nanoscale Physics +1508.06398 Superconductivity +1508.06657 Materials Science +1508.06876 +1508.07244 Other Quantitative Biology +1508.07328 Astrophysics of Galaxies +1508.07363 +1508.07492 +1508.07493 +1508.07614 +1508.07674 +1508.07718 Theory +1508.07781 Numerical Analysis +1509.00108 Statistical Mechanics +1509.00198 Spectral Theory +1509.00385 Optics +1509.00405 Plasma Physics +1509.00429 Materials Science +1509.00450 +1509.00451 +1509.00472 Phenomenology +1509.00502 Materials Science +1509.00841 +1509.00878 +1509.00928 +1509.00971 +1509.01026 Soft Condensed Matter +1509.01107 Superconductivity +1509.01497 Phenomenology +1509.01587 Phenomenology +1509.01617 Materials Science +1509.01678 Dynamical Systems +1509.01766 Soft Condensed Matter +1509.01807 Materials Science +1509.02059 +1509.02306 Materials Science +1509.02555 +1509.02698 Strongly Correlated Electrons +1509.02770 Mesoscale and Nanoscale Physics +1509.02780 Phenomenology +1509.02862 Statistical Mechanics +1509.02916 Theory +1509.02919 +1509.03077 Theory +1509.03084 Exactly Solvable and Integrable Systems +1509.03182 Optics +1509.03235 Atomic Physics +1509.03261 Soft Condensed Matter +1509.03265 Phenomenology +1509.03378 Optics +1509.03379 Materials Science +1509.03424 Logic in Computer Science +1509.03495 Computation +1509.03855 Combinatorics +1509.03861 +1509.03924 +1509.04058 Optics +1509.04288 Theory +1509.04490 High Energy Astrophysical Phenomena +1509.04555 Information Theory +1509.04605 Fluid Dynamics +1509.04613 Computation +1509.04726 Phenomenology +1509.05008 Optimization and Control +1509.05092 Mesoscale and Nanoscale Physics +1509.05235 Theory +1509.05305 Data Structures and Algorithms +1509.05311 Theory +1509.05561 Theory +1509.05658 Plasma Physics +1509.05847 Mesoscale and Nanoscale Physics +1509.05882 +1509.05922 Lattice +1509.05968 +1509.05987 Quantum Gases +1509.06071 Phenomenology +1509.06230 Materials Science +1509.06525 +1509.06531 Solar and Stellar Astrophysics +1509.06833 Numerical Analysis +1509.06886 Mesoscale and Nanoscale Physics +1509.07008 +1509.07030 +1509.07097 Optics +1509.07355 Classical Physics +1509.07392 Soft Condensed Matter +1509.07472 +1509.07931 Optics +1509.08009 Soft Condensed Matter +1509.08324 Phenomenology +1509.08355 Combinatorics +1509.08470 Mesoscale and Nanoscale Physics +1509.08578 Phenomenology +1509.08913 Biological Physics +1509.09009 +1509.09159 Phenomenology +1509.09282 Information Theory +1510.00100 Phenomenology +1510.00138 Quantum Gases +1510.00281 Quantum Gases +1510.00454 Phenomenology +1510.00489 Optics +1510.00608 +1510.00795 +1510.00828 +1510.00898 Phenomenology +1510.01421 Software Engineering +1510.01462 Pattern Formation and Solitons +1510.01474 Statistical Mechanics +1510.01609 Theory +1510.01789 Phenomenology +1510.01805 Superconductivity +1510.01893 High Energy Astrophysical Phenomena +1510.01914 Phenomenology +1510.01979 Atomic Physics +1510.02206 +1510.02248 +1510.02264 Statistical Mechanics +1510.02508 +1510.02509 Atomic Physics +1510.02535 Theory +1510.02540 Probability +1510.02551 Statistics Theory +1510.02630 Biomolecules +1510.02799 +1510.02809 Instrumentation and Methods for Astrophysics +1510.03043 +1510.03332 Theory +1510.03620 +1510.03636 Statistical Mechanics +1510.04021 Rings and Algebras +1510.04047 Phenomenology +1510.04119 Accelerator Physics +1510.04232 Computational Physics +1510.04485 Phenomenology +1510.04561 Phenomenology +1510.04643 High Energy Astrophysical Phenomena +1510.04714 Soft Condensed Matter +1510.04818 Optics +1510.04887 Theory +1510.04964 Accelerator Physics +1510.05018 Phenomenology +1510.05020 Phenomenology +1510.05047 Mesoscale and Nanoscale Physics +1510.05055 +1510.05197 Mesoscale and Nanoscale Physics +1510.05450 +1510.05471 Instrumentation and Methods for Astrophysics +1510.05756 Optics +1510.06036 Theory +1510.06117 +1510.06154 +1510.06159 +1510.06335 Artificial Intelligence +1510.06341 Atomic Physics +1510.06424 Phenomenology +1510.06442 Cosmology and Nongalactic Astrophysics +1510.06652 Phenomenology +1510.06798 Mesoscale and Nanoscale Physics +1510.06844 Mesoscale and Nanoscale Physics +1510.06919 Mesoscale and Nanoscale Physics +1510.07048 High Energy Astrophysical Phenomena +1510.07159 Solar and Stellar Astrophysics +1510.07392 High Energy Astrophysical Phenomena +1510.07399 Statistical Mechanics +1510.07410 Emerging Technologies +1510.07514 Earth and Planetary Astrophysics +1510.07602 Optics +1510.07627 Theory +1510.07644 Theory +1510.07797 Instrumentation and Methods for Astrophysics +1510.07821 Optimization and Control +1510.07841 Lattice +1510.07854 +1510.07886 Theory +1510.07973 Numerical Analysis +1510.08067 Astrophysics of Galaxies +1510.08157 Medical Physics +1510.08252 Materials Science +1510.08309 Cosmology and Nongalactic Astrophysics +1510.08451 Phenomenology +1510.08522 Solar and Stellar Astrophysics +1510.08698 Atomic Physics +1510.08768 Phenomenology +1510.08888 Mesoscale and Nanoscale Physics +1510.08917 Computational Geometry +1510.08967 Optics +1510.08975 Strongly Correlated Electrons +1510.09060 Theory +1510.09071 Strongly Correlated Electrons +1510.09076 Cosmology and Nongalactic Astrophysics +1511.00102 +1511.00122 High Energy Astrophysical Phenomena +1511.00172 Dynamical Systems +1511.00292 Statistical Mechanics +1511.00466 Numerical Analysis +1511.00503 Mesoscale and Nanoscale Physics +1511.00691 Phenomenology +1511.00693 Cosmology and Nongalactic Astrophysics +1511.00868 +1511.01195 Spectral Theory +1511.01228 Atomic Physics +1511.01243 Astrophysics of Galaxies +1511.01307 +1511.01452 Phenomenology +1511.01512 Learning +1511.01576 Optics +1511.01651 Optics +1511.01698 Phenomenology +1511.01801 Theory +1511.01872 Quantum Gases +1511.01972 Mesoscale and Nanoscale Physics +1511.01998 Astrophysics of Galaxies +1511.02013 Atomic Physics +1511.02060 +1511.02063 Plasma Physics +1511.02087 Atmospheric and Oceanic Physics +1511.02266 Optics +1511.02288 Theory +1511.02350 Phenomenology +1511.02444 Theory +1511.02509 Phenomenology +1511.02781 +1511.02946 +1511.03109 Quantum Gases +1511.03127 +1511.03235 Physics and Society +1511.03348 Mesoscale and Nanoscale Physics +1511.03463 Methodology +1511.03539 Instrumentation and Detectors +1511.03587 Theory +1511.03615 High Energy Astrophysical Phenomena +1511.03630 Theory +1511.03731 Cosmology and Nongalactic Astrophysics +1511.03750 Materials Science +1511.03836 Atomic Physics +1511.03878 Computational Physics +1511.04126 Information Theory +1511.04241 +1511.04392 Materials Science +1511.04396 Mesoscale and Nanoscale Physics +1511.04407 +1511.04506 Instrumentation and Methods for Astrophysics +1511.04575 Theory +1511.04605 Phenomenology +1511.04722 +1511.04759 Mesoscale and Nanoscale Physics +1511.05099 Computation and Language +1511.05114 Populations and Evolution +1511.05125 High Energy Astrophysical Phenomena +1511.05159 Theory +1511.05175 Computer Vision and Pattern Recognition +1511.05293 Theory +1511.05344 +1511.05359 Information Theory +1511.05476 Astrophysics of Galaxies +1511.05484 Theory +1511.05537 Materials Science +1511.05556 Computational Physics +1511.05588 Classical Physics +1511.05786 Optics +1511.05829 +1511.06097 +1511.06215 Phenomenology +1511.06298 Materials Science +1511.06315 Theory +1511.06506 Materials Science +1511.06565 +1511.06686 Theory +1511.06716 Theory +1511.06749 Optics +1511.06796 Mesoscale and Nanoscale Physics +1511.06931 Computation and Language +1511.07198 +1511.07225 Superconductivity +1511.07241 Materials Science +1511.07324 +1511.07463 Phenomenology +1511.07645 Statistical Mechanics +1511.07840 Plasma Physics +1511.07909 Strongly Correlated Electrons +1511.07923 Materials Science +1511.08022 Numerical Analysis +1511.08363 Optics +1511.08379 Phenomenology +1511.08614 Strongly Correlated Electrons +1511.08747 Theory +1511.08759 Theory +1511.08820 Theory +1511.09029 Instrumentation and Detectors +1511.09098 Optics +1511.09248 Fluid Dynamics +1511.09449 Probability +1512.00111 Mesoscale and Nanoscale Physics +1512.00457 Theory +1512.00559 Astrophysics of Galaxies +1512.00560 Astrophysics of Galaxies +1512.00702 Mesoscale and Nanoscale Physics +1512.00762 Emerging Technologies +1512.00769 Cellular Automata and Lattice Gases +1512.00854 Theory +1512.00857 Phenomenology +1512.01151 Superconductivity +1512.01170 Theory +1512.01231 Theory +1512.01460 Space Physics +1512.01461 Solar and Stellar Astrophysics +1512.01508 Optics +1512.01531 Theory +1512.01575 +1512.01777 Soft Condensed Matter +1512.01859 Statistical Mechanics +1512.01903 Instrumentation and Detectors +1512.01964 Theory +1512.02020 +1512.02101 +1512.02119 Quantum Gases +1512.02147 Strongly Correlated Electrons +1512.02246 +1512.02352 +1512.02401 Optics +1512.02462 Theory +1512.02557 Phenomenology +1512.02605 Optics +1512.02613 Mesoscale and Nanoscale Physics +1512.02642 Astrophysics of Galaxies +1512.02647 Phenomenology +1512.02669 Strongly Correlated Electrons +1512.02725 Mesoscale and Nanoscale Physics +1512.02742 Information Theory +1512.02753 Atomic Physics +1512.02779 +1512.02812 Theory +1512.03003 Phenomenology +1512.03136 Phenomenology +1512.03179 Phenomenology +1512.03257 +1512.03317 Phenomenology +1512.03429 Phenomenology +1512.03608 +1512.03688 Dynamical Systems +1512.03800 Theory +1512.03811 Representation Theory +1512.03822 Astrophysics of Galaxies +1512.03849 +1512.03891 Computational Physics +1512.03941 Optics +1512.04091 Quantum Gases +1512.04125 Optics +1512.04154 +1512.04285 Optics +1512.04448 Strongly Correlated Electrons +1512.04497 Phenomenology +1512.04500 Theory +1512.04558 Theory +1512.04646 Mesoscale and Nanoscale Physics +1512.04659 +1512.04846 Theory +1512.04917 Phenomenology +1512.04928 Phenomenology +1512.04933 Phenomenology +1512.04952 Theory +1512.04984 Lattice +1512.05076 +1512.05097 Optics +1512.05186 Phenomenology +1512.05195 Lattice +1512.05205 +1512.05221 Phenomenology +1512.05327 Phenomenology +1512.05328 Phenomenology +1512.05333 Phenomenology +1512.05358 +1512.05369 Phenomenology +1512.05388 Theory +1512.05477 +1512.05478 Disordered Systems and Neural Networks +1512.05620 Solar and Stellar Astrophysics +1512.05630 Phenomenology +1512.05662 Physics Education +1512.05825 Phenomenology +1512.05884 +1512.05890 Phenomenology +1512.05922 +1512.05933 Atomic Physics +1512.05946 Cosmology and Nongalactic Astrophysics +1512.05969 Chaotic Dynamics +1512.05981 Atomic Physics +1512.06091 Phenomenology +1512.06128 Phenomenology +1512.06135 Phenomenology +1512.06160 Instrumentation and Detectors +1512.06218 Optics +1512.06239 Cosmology and Nongalactic Astrophysics +1512.06314 Information Theory +1512.06324 Probability +1512.06414 Theory +1512.06437 Phenomenology +1512.06636 Soft Condensed Matter +1512.06653 Materials Science +1512.06783 Mesoscale and Nanoscale Physics +1512.06801 Theory +1512.06822 Phenomenology +1512.06824 Phenomenology +1512.06861 Theory +1512.06904 Theory +1512.06914 Quantum Gases +1512.06917 Mesoscale and Nanoscale Physics +1512.06930 Materials Science +1512.07014 Lattice +1512.07105 +1512.07127 Phenomenology +1512.07131 Theory +1512.07230 Plasma Physics +1512.07403 +1512.07506 Computer Vision and Pattern Recognition +1512.07588 Statistical Mechanics +1512.07698 +1512.07754 Fluid Dynamics +1512.07761 Phenomenology +1512.07763 Optics +1512.07820 Solar and Stellar Astrophysics +1512.07909 Theory +1512.07929 Mesoscale and Nanoscale Physics +1512.07930 Solar and Stellar Astrophysics +1512.07979 Optics +1512.08114 Theory +1512.08131 High Energy Astrophysical Phenomena +1512.08217 Materials Science +1512.08342 Theory +1512.08359 Classical Physics +1512.08374 Phenomenology +1512.08416 Optics +1512.08508 Phenomenology +1512.08631 Soft Condensed Matter +1512.08725 Materials Science +1512.08749 Phenomenology +1512.08774 Solar and Stellar Astrophysics +1512.08894 Phenomenology +1512.08941 Phenomenology +1512.08947 Chaotic Dynamics +1512.09014 Phenomenology +1512.09195 Mesoscale and Nanoscale Physics +1512.09315 +1512.09361 Optics +1601.00036 Instrumentation and Methods for Astrophysics +1601.00095 Strongly Correlated Electrons +1601.00435 +1601.00560 Optics +1601.00598 Mesoscale and Nanoscale Physics +1601.00708 +1601.00747 +1601.00803 +1601.00973 +1601.00997 Dynamical Systems +1601.01040 Materials Science +1601.01290 Mesoscale and Nanoscale Physics +1601.01306 +1601.01333 Optics +1601.01368 +1601.01371 Materials Science +1601.01424 Chaotic Dynamics +1601.01458 Optics +1601.01481 Optics +1601.01547 +1601.01575 Strongly Correlated Electrons +1601.01583 Theory +1601.01725 Programming Languages +1601.01813 Phenomenology +1601.01818 +1601.01830 Phenomenology +1601.01889 Mesoscale and Nanoscale Physics +1601.01930 Solar and Stellar Astrophysics +1601.01938 Phenomenology +1601.01945 Theory +1601.02026 Optics +1601.02048 Materials Science +1601.02086 Strongly Correlated Electrons +1601.02162 Chaotic Dynamics +1601.02374 Optics +1601.02384 Solar and Stellar Astrophysics +1601.02518 Optics +1601.02540 Phenomenology +1601.02576 Algebraic Geometry +1601.02651 Statistical Mechanics +1601.02657 Materials Science +1601.02757 Theory +1601.02761 Mesoscale and Nanoscale Physics +1601.02774 Instrumentation and Methods for Astrophysics +1601.02856 Phenomenology +1601.02866 Fluid Dynamics +1601.03010 Strongly Correlated Electrons +1601.03066 Theory +1601.03087 Strongly Correlated Electrons +1601.03134 +1601.03399 Astrophysics of Galaxies +1601.03417 Optics +1601.03579 Optics +1601.03604 Phenomenology +1601.03636 Cosmology and Nongalactic Astrophysics +1601.03703 +1601.03744 High Energy Astrophysical Phenomena +1601.03746 Physics and Society +1601.03781 +1601.03782 +1601.03996 +1601.04018 Statistical Mechanics +1601.04090 +1601.04339 Atomic Physics +1601.04393 Fluid Dynamics +1601.04475 Exactly Solvable and Integrable Systems +1601.04559 High Energy Astrophysical Phenomena +1601.04639 Fluid Dynamics +1601.04656 +1601.04659 Solar and Stellar Astrophysics +1601.04690 Disordered Systems and Neural Networks +1601.04718 Phenomenology +1601.04909 +1601.05038 Phenomenology +1601.05079 Phenomenology +1601.05094 Phenomenology +1601.05154 +1601.05170 Mesoscale and Nanoscale Physics +1601.05211 Instrumentation and Methods for Astrophysics +1601.05254 Computers and Society +1601.05267 +1601.05368 High Energy Astrophysical Phenomena +1601.05406 Astrophysics of Galaxies +1601.05423 Astrophysics of Galaxies +1601.05526 +1601.05802 Cosmology and Nongalactic Astrophysics +1601.05937 Phenomenology +1601.05993 Materials Science +1601.06121 Classical Analysis and ODEs +1601.06150 Phenomenology +1601.06161 Instrumentation and Methods for Astrophysics +1601.06328 Phenomenology +1601.06340 Physics and Society +1601.06350 Optics +1601.06418 Theory +1601.06499 Phenomenology +1601.06507 Materials Science +1601.06513 Solar and Stellar Astrophysics +1601.06552 Phenomenology +1601.06557 Phenomenology +1601.06600 Materials Science +1601.06665 Phenomenology +1601.06851 Theory +1601.06856 Solar and Stellar Astrophysics +1601.06883 Plasma Physics +1601.06914 Theory +1601.06966 Solar and Stellar Astrophysics +1601.06968 Statistical Mechanics +1601.07032 Soft Condensed Matter +1601.07043 Astrophysics of Galaxies +1601.07045 Phenomenology +1601.07083 Optics +1601.07115 Phenomenology +1601.07156 Solar and Stellar Astrophysics +1601.07226 Accelerator Physics +1601.07242 Phenomenology +1601.07328 Phenomenology +1601.07338 Phenomenology +1601.07426 Instrumentation and Methods for Astrophysics +1601.07512 Phenomenology +1601.07536 Cosmology and Nongalactic Astrophysics +1601.07666 Phenomenology +1601.07801 Phenomenology +1601.07822 +1601.07905 Astrophysics of Galaxies +1601.07980 Materials Science +1601.07987 Phenomenology +1601.08004 High Energy Astrophysical Phenomena +1601.08087 Solar and Stellar Astrophysics +1601.08105 Solar and Stellar Astrophysics +1601.08175 +1601.08239 Instrumentation and Methods for Astrophysics +1602.00129 Optics +1602.00151 Solar and Stellar Astrophysics +1602.00241 +1602.00254 Phenomenology +1602.00317 Mesoscale and Nanoscale Physics +1602.00455 Phenomenology +1602.00539 Phenomenology +1602.00767 Computational Geometry +1602.00866 Strongly Correlated Electrons +1602.00870 Optics +1602.00891 Strongly Correlated Electrons +1602.01393 Atmospheric and Oceanic Physics +1602.01453 Disordered Systems and Neural Networks +1602.01508 Theory +1602.01602 Optics +1602.01745 Phenomenology +1602.01755 Instrumentation and Detectors +1602.01769 Earth and Planetary Astrophysics +1602.01773 Phenomenology +1602.01774 Phenomenology +1602.01797 Solar and Stellar Astrophysics +1602.01853 +1602.01890 Computer Vision and Pattern Recognition +1602.01999 Solar and Stellar Astrophysics +1602.02307 Phenomenology +1602.02419 Materials Science +1602.02444 High Energy Astrophysical Phenomena +1602.02478 Quantum Gases +1602.02503 Astrophysics of Galaxies +1602.02587 Optics +1602.02812 Cosmology and Nongalactic Astrophysics +1602.02959 +1602.02960 Cosmology and Nongalactic Astrophysics +1602.03151 Earth and Planetary Astrophysics +1602.03173 Theory +1602.03245 Mesoscale and Nanoscale Physics +1602.03284 Superconductivity +1602.03359 High Energy Astrophysical Phenomena +1602.03443 Mesoscale and Nanoscale Physics +1602.03822 Learning +1602.03891 Astrophysics of Galaxies +1602.03895 Earth and Planetary Astrophysics +1602.03955 Astrophysics of Galaxies +1602.04077 Solar and Stellar Astrophysics +1602.04119 Statistical Mechanics +1602.04192 Phenomenology +1602.04501 Cosmology and Nongalactic Astrophysics +1602.04509 Superconductivity +1602.04715 High Energy Astrophysical Phenomena +1602.04737 Astrophysics of Galaxies +1602.04837 Cosmology and Nongalactic Astrophysics +1602.04901 +1602.04921 Computer Vision and Pattern Recognition +1602.04954 +1602.05025 +1602.05065 +1602.05120 Optics +1602.05280 Statistical Mechanics +1602.05293 Soft Condensed Matter +1602.05317 Materials Science +1602.05364 Astrophysics of Galaxies +1602.05586 High Energy Astrophysical Phenomena +1602.05589 Astrophysics of Galaxies +1602.05609 +1602.05630 Solar and Stellar Astrophysics +1602.05700 Instrumentation and Methods for Astrophysics +1602.05878 Mesoscale and Nanoscale Physics +1602.06022 Optics +1602.06036 Plasma Physics +1602.06044 Solar and Stellar Astrophysics +1602.06141 Quantum Gases +1602.06145 +1602.06190 High Energy Astrophysical Phenomena +1602.06234 General Finance +1602.06286 Solar and Stellar Astrophysics +1602.06521 +1602.06523 Solar and Stellar Astrophysics +1602.06549 High Energy Astrophysical Phenomena +1602.06733 Earth and Planetary Astrophysics +1602.06740 Phenomenology +1602.06780 Combinatorics +1602.06837 +1602.06854 Astrophysics of Galaxies +1602.06898 Plasma Physics +1602.06945 Astrophysics of Galaxies +1602.06959 Astrophysics of Galaxies +1602.06993 Strongly Correlated Electrons +1602.07011 Solar and Stellar Astrophysics +1602.07014 Earth and Planetary Astrophysics +1602.07023 Optics +1602.07186 Fluid Dynamics +1602.07222 Phenomenology +1602.07343 High Energy Astrophysical Phenomena +1602.07404 +1602.07611 Physics Education +1602.07687 Astrophysics of Galaxies +1602.07704 Cosmology and Nongalactic Astrophysics +1602.07707 Earth and Planetary Astrophysics +1602.07771 Materials Science +1602.07843 Earth and Planetary Astrophysics +1602.07908 Astrophysics of Galaxies +1602.07976 Instrumentation and Methods for Astrophysics +1602.07997 Computational Physics +1602.08167 Astrophysics of Galaxies +1602.08170 Solar and Stellar Astrophysics +1602.08263 Strongly Correlated Electrons +1602.08273 Information Theory +1602.08292 +1602.08364 High Energy Astrophysical Phenomena +1602.08375 Statistical Mechanics +1602.08381 Instrumentation and Methods for Astrophysics +1602.08537 Fluid Dynamics +1602.08726 Lattice +1602.08756 High Energy Astrophysical Phenomena +1602.08842 +1602.08959 Materials Science +1602.09026 Strongly Correlated Electrons +1602.09027 Classical Analysis and ODEs +1602.09064 Materials Science +1602.09075 High Energy Astrophysical Phenomena +1603.00019 Astrophysics of Galaxies +1603.00035 Astrophysics of Galaxies +1603.00036 Solar and Stellar Astrophysics +1603.00057 Astrophysics of Galaxies +1603.00068 Statistical Mechanics +1603.00366 +1603.00455 High Energy Astrophysical Phenomena +1603.00480 Solar and Stellar Astrophysics +1603.00523 Strongly Correlated Electrons +1603.00549 Solar and Stellar Astrophysics +1603.00586 Astrophysics of Galaxies +1603.00685 +1603.00852 +1603.00873 High Energy Astrophysical Phenomena +1603.00989 Lattice +1603.01000 Mesoscale and Nanoscale Physics +1603.01034 High Energy Astrophysical Phenomena +1603.01108 +1603.01119 Solar and Stellar Astrophysics +1603.01131 Phenomenology +1603.01146 Instrumentation and Methods for Astrophysics +1603.01151 High Energy Astrophysical Phenomena +1603.01163 Astrophysics of Galaxies +1603.01197 Solar and Stellar Astrophysics +1603.01211 +1603.01245 Solar and Stellar Astrophysics +1603.01286 +1603.01410 Solar and Stellar Astrophysics +1603.01474 High Energy Astrophysical Phenomena +1603.01792 +1603.01968 Earth and Planetary Astrophysics +1603.02095 +1603.02101 Numerical Analysis +1603.02108 Strongly Correlated Electrons +1603.02134 Materials Science +1603.02174 Chemical Physics +1603.02192 Strongly Correlated Electrons +1603.02207 Strongly Correlated Electrons +1603.02332 Solar and Stellar Astrophysics +1603.02356 Cosmology and Nongalactic Astrophysics +1603.02374 Solar and Stellar Astrophysics +1603.02475 Earth and Planetary Astrophysics +1603.02483 Fluid Dynamics +1603.02505 Solar and Stellar Astrophysics +1603.02573 +1603.02654 Fluid Dynamics +1603.02744 Numerical Analysis +1603.02773 Neurons and Cognition +1603.02855 Solar and Stellar Astrophysics +1603.02962 High Energy Astrophysical Phenomena +1603.03032 +1603.03063 Phenomenology +1603.03067 +1603.03074 Theory +1603.03118 Strongly Correlated Electrons +1603.03331 Phenomenology +1603.03386 Instrumentation and Methods for Astrophysics +1603.03548 High Energy Astrophysical Phenomena +1603.03646 Earth and Planetary Astrophysics +1603.03709 Earth and Planetary Astrophysics +1603.03777 High Energy Astrophysical Phenomena +1603.03879 Cosmology and Nongalactic Astrophysics +1603.03915 Computer Vision and Pattern Recognition +1603.03933 Phenomenology +1603.04133 Mesoscale and Nanoscale Physics +1603.04204 +1603.04208 Strongly Correlated Electrons +1603.04346 +1603.04365 High Energy Astrophysical Phenomena +1603.04377 Strongly Correlated Electrons +1603.04430 +1603.04728 High Energy Astrophysical Phenomena +1603.04762 Phenomenology +1603.04766 Cell Behavior +1603.04769 Statistical Mechanics +1603.04895 High Energy Astrophysical Phenomena +1603.05006 Earth and Planetary Astrophysics +1603.05135 +1603.05187 High Energy Astrophysical Phenomena +1603.05276 Solar and Stellar Astrophysics +1603.05504 High Energy Astrophysical Phenomena +1603.05560 High Energy Astrophysical Phenomena +1603.05658 High Energy Astrophysical Phenomena +1603.06008 +1603.06149 Combinatorics +1603.06250 Chaotic Dynamics +1603.06575 Earth and Planetary Astrophysics +1603.06594 High Energy Astrophysical Phenomena +1603.06629 Materials Science +1603.06638 Solar and Stellar Astrophysics +1603.06651 Cosmology and Nongalactic Astrophysics +1603.06753 Computational Physics +1603.06769 +1603.06803 Astrophysics of Galaxies +1603.06831 +1603.06836 Solar and Stellar Astrophysics +1603.06839 Earth and Planetary Astrophysics +1603.06840 Earth and Planetary Astrophysics +1603.06864 Mesoscale and Nanoscale Physics +1603.06890 High Energy Astrophysical Phenomena +1603.06938 +1603.07024 High Energy Astrophysical Phenomena +1603.07084 High Energy Astrophysical Phenomena +1603.07109 Soft Condensed Matter +1603.07223 Astrophysics of Galaxies +1603.07332 Astrophysics of Galaxies +1603.07381 Solar and Stellar Astrophysics +1603.07407 High Energy Astrophysical Phenomena +1603.07527 Instrumentation and Methods for Astrophysics +1603.07645 Earth and Planetary Astrophysics +1603.07731 Solar and Stellar Astrophysics +1603.07736 Astrophysics of Galaxies +1603.07812 Operator Algebras +1603.07829 Astrophysics of Galaxies +1603.08081 Computer Vision and Pattern Recognition +1603.08364 Astrophysics of Galaxies +1603.08469 +1603.08537 Astrophysics of Galaxies +1603.08630 High Energy Astrophysical Phenomena +1603.08757 High Energy Astrophysical Phenomena +1603.08823 Earth and Planetary Astrophysics +1603.08905 Spectral Theory +1603.08991 Instrumentation and Methods for Astrophysics +1603.09151 Chaotic Dynamics +1603.09226 Solar and Stellar Astrophysics +1603.09328 High Energy Astrophysical Phenomena +1603.09342 Astrophysics of Galaxies +1603.09368 Solar and Stellar Astrophysics +1603.09461 Instrumentation and Methods for Astrophysics +1603.09525 Astrophysics of Galaxies +1603.09591 Astrophysics of Galaxies +1603.09637 Astrophysics of Galaxies +1604.00008 Astrophysics of Galaxies +1604.00070 High Energy Astrophysical Phenomena +1604.00137 Atomic Physics +1604.00173 Cosmology and Nongalactic Astrophysics +1604.00394 Astrophysics of Galaxies +1604.00397 Solar and Stellar Astrophysics +1604.00401 Astrophysics of Galaxies +1604.00414 Astrophysics of Galaxies +1604.00485 Solar and Stellar Astrophysics +1604.00587 Astrophysics of Galaxies +1604.00792 Earth and Planetary Astrophysics +1604.00888 Combinatorics +1604.00901 Astrophysics of Galaxies +1604.01046 Astrophysics of Galaxies +1604.01071 +1604.01273 Other Condensed Matter +1604.01342 Astrophysics of Galaxies +1604.01393 +1604.01457 Solar and Stellar Astrophysics +1604.01463 Cosmology and Nongalactic Astrophysics +1604.01494 High Energy Astrophysical Phenomena +1604.01822 Astrophysics of Galaxies +1604.01962 Computer Vision and Pattern Recognition +1604.02185 Superconductivity +1604.02202 +1604.02204 Astrophysics of Galaxies +1604.02259 Instrumentation and Detectors +1604.02283 High Energy Astrophysical Phenomena +1604.02409 Classical Analysis and ODEs +1604.02498 Popular Physics +1604.02521 Optics +1604.02766 Mesoscale and Nanoscale Physics +1604.02807 Mesoscale and Nanoscale Physics +1604.02861 Strongly Correlated Electrons +1604.02876 Mesoscale and Nanoscale Physics +1604.02969 Combinatorics +1604.03016 Combinatorics +1604.03255 Phenomenology +1604.03324 Computer Science and Game Theory +1604.03332 History and Philosophy of Physics +1604.03335 Phenomenology +1604.03339 Phenomenology +1604.03469 Phenomenology +1604.03490 Mesoscale and Nanoscale Physics +1604.03527 Instrumentation and Methods for Astrophysics +1604.03854 Strongly Correlated Electrons +1604.03894 High Energy Astrophysical Phenomena +1604.03923 Soft Condensed Matter +1604.04011 Quantum Gases +1604.04017 Earth and Planetary Astrophysics +1604.04029 Learning +1604.04128 Instrumentation and Detectors +1604.04129 Probability +1604.04262 +1604.04268 Solar and Stellar Astrophysics +1604.04378 Computation and Language +1604.04588 Populations and Evolution +1604.04598 Combinatorics +1604.04643 Molecular Networks +1604.04735 Information Theory +1604.04805 Phenomenology +1604.04867 Solar and Stellar Astrophysics +1604.05004 Group Theory +1604.05017 Optimization and Control +1604.05091 Learning +1604.05108 Combinatorics +1604.05276 Algebraic Geometry +1604.05299 Optimization and Control +1604.05304 Optics +1604.05307 Learning +1604.05321 Cosmology and Nongalactic Astrophysics +1604.05322 Astrophysics of Galaxies +1604.05324 Phenomenology +1604.05331 Earth and Planetary Astrophysics +1604.05334 Number Theory +1604.05337 Data Structures and Algorithms +1604.05338 Classical Analysis and ODEs +1604.05340 Instrumentation and Detectors +1604.05341 Networking and Internet Architecture +1604.05342 Solar and Stellar Astrophysics +1604.05344 Classical Analysis and ODEs +1604.05345 Combinatorics +1604.05347 +1604.05348 Commutative Algebra +1604.05350 Computational Geometry +1604.05351 Metric Geometry +1604.05355 Networking and Internet Architecture +1604.05356 Earth and Planetary Astrophysics +1604.05357 +1604.05358 Artificial Intelligence +1604.05363 Digital Libraries +1604.05364 Populations and Evolution +1604.05365 Algebraic Geometry +1604.05366 Earth and Planetary Astrophysics +1604.05367 Metric Geometry +1604.05368 Earth and Planetary Astrophysics +1604.05369 Optimization and Control +1604.05372 Computation and Language +1604.05375 Methodology +1604.05376 Probability +1604.05377 Machine Learning +1604.05379 Phenomenology +1604.05380 Solar and Stellar Astrophysics +1604.05383 Computer Vision and Pattern Recognition +1604.05384 Earth and Planetary Astrophysics +1604.05390 Differential Geometry +1604.05391 Optimization and Control +1604.05393 Information Theory +1604.05399 Optimization and Control +1604.05408 Rings and Algebras +1604.05410 Number Theory +1604.05411 Plasma Physics +1604.05412 Combinatorics +1604.05413 Computer Vision and Pattern Recognition +1604.05414 Combinatorics +1604.05415 +1604.05418 Other Statistics +1604.05419 Artificial Intelligence +1604.05428 Distributed, Parallel, and Cluster Computing +1604.05429 Learning +1604.05430 Networking and Internet Architecture +1604.05440 Probability +1604.05442 Distributed, Parallel, and Cluster Computing +1604.05444 Materials Science +1604.05446 Analysis of PDEs +1604.05447 Theory +1604.05448 Data Structures and Algorithms +1604.05449 Machine Learning +1604.05451 Computer Vision and Pattern Recognition +1604.05453 Probability +1604.05455 Systems and Control +1604.05458 Representation Theory +1604.05459 Neural and Evolutionary Computing +1604.05460 Networking and Internet Architecture +1604.05461 Analysis of PDEs +1604.05462 Information Retrieval +1604.05464 Probability +1604.05466 General Topology +1604.05467 Soft Condensed Matter +1604.05468 Information Retrieval +1604.05478 Computation +1604.05479 Human-Computer Interaction +1604.05480 Analysis of PDEs +1604.05487 Computational Complexity +1604.05488 High Energy Astrophysical Phenomena +1604.05490 Social and Information Networks +1604.05491 Metric Geometry +1604.05494 Complex Variables +1604.05495 Computer Vision and Pattern Recognition +1604.05497 Materials Science +1604.05498 Analysis of PDEs +1604.05499 Computation and Language +1604.05500 Complex Variables +1604.05501 Astrophysics of Galaxies +1604.05503 Software Engineering +1604.05507 Physics Education +1604.05509 Algebraic Geometry +1604.05510 Computational Complexity +1604.05511 Accelerator Physics +1604.05514 Computational Physics +1604.05515 Materials Science +1604.05517 Optimization and Control +1604.05521 Physics and Society +1604.05522 Mesoscale and Nanoscale Physics +1604.05524 Dynamical Systems +1604.05525 Computation and Language +1604.05528 Plasma Physics +1604.05534 Networking and Internet Architecture +1604.05537 Statistical Mechanics +1604.05539 Analysis of PDEs +1604.05540 Numerical Analysis +1604.05545 +1604.05548 +1604.05549 Dynamical Systems +1604.05550 Information Theory +1604.05551 Classical Analysis and ODEs +1604.05558 Spectral Theory +1604.05559 Computation and Language +1604.05561 Materials Science +1604.05562 Computer Science and Game Theory +1604.05563 Classical Physics +1604.05564 Spectral Theory +1604.05567 Dynamical Systems +1604.05570 Other Computer Science +1604.05571 Other Computer Science +1604.05572 Human-Computer Interaction +1604.05573 Information Theory +1604.05575 Physics and Society +1604.05576 Computer Vision and Pattern Recognition +1604.05577 Software Engineering +1604.05579 Classical Analysis and ODEs +1604.05583 Fluid Dynamics +1604.05584 Mathematical Finance +1604.05585 Astrophysics of Galaxies +1604.05588 Computational Complexity +1604.05589 Methodology +1604.05594 Analysis of PDEs +1604.05597 Mesoscale and Nanoscale Physics +1604.05598 Statistical Finance +1604.05603 Data Structures and Algorithms +1604.05605 Computer Vision and Pattern Recognition +1604.05606 Algebraic Topology +1604.05607 Operator Algebras +1604.05617 Soft Condensed Matter +1604.05619 Complex Variables +1604.05621 Dynamical Systems +1604.05622 Networking and Internet Architecture +1604.05623 Networking and Internet Architecture +1604.05624 Fluid Dynamics +1604.05627 Optics +1604.05628 Solar and Stellar Astrophysics +1604.05629 Theory +1604.05631 Materials Science +1604.05632 Accelerator Physics +1604.05636 Artificial Intelligence +1604.05637 Strongly Correlated Electrons +1604.05638 +1604.05642 High Energy Astrophysical Phenomena +1604.05643 Methodology +1604.05647 Optics +1604.05650 Astrophysics of Galaxies +1604.05652 +1604.05653 Numerical Analysis +1604.05654 Dynamical Systems +1604.05655 +1604.05658 Computation +1604.05659 Emerging Technologies +1604.05660 Superconductivity +1604.05661 Methodology +1604.05672 General Finance +1604.05673 K-Theory and Homology +1604.05674 History and Philosophy of Physics +1604.05677 Materials Science +1604.05678 Rings and Algebras +1604.05680 Information Theory +1604.05683 Classical Analysis and ODEs +1604.05685 +1604.05688 +1604.05694 Optimization and Control +1604.05695 Group Theory +1604.05697 Analysis of PDEs +1604.05698 +1604.05699 Mesoscale and Nanoscale Physics +1604.05702 Earth and Planetary Astrophysics +1604.05703 Probability +1604.05704 +1604.05707 Differential Geometry +1604.05710 Analysis of PDEs +1604.05713 Superconductivity +1604.05715 Data Analysis, Statistics and Probability +cond-mat/0007019 Disordered Systems and Neural Networks +cond-mat/0009403 Strongly Correlated Electrons +cond-mat/0010355 Superconductivity +cond-mat/0111060 Statistical Mechanics +cond-mat/9812199 Disordered Systems and Neural Networks +cond-mat/9812247 Mesoscale and Nanoscale Physics +gr-qc/0703045 +hep-th/9112020 Theory +physics/9810008 Classical Physics +quant-ph/9809030 +quant-ph/9810009 +0810.4948 History and Philosophy of Physics +1202.2194 Atmospheric and Oceanic Physics +1204.0097 Materials Science +1205.1735 Probability +1206.2248 Learning +1206.6527 Cosmology and Nongalactic Astrophysics +1210.7013 Probability +1211.4795 Information Theory +1301.5085 Instrumentation and Detectors +1302.1513 Phenomenology +1303.3278 Chemical Physics +1304.4036 Group Theory +1305.2487 Exactly Solvable and Integrable Systems +1307.5741 Probability +1309.1262 Statistics Theory +1309.4433 Mesoscale and Nanoscale Physics +1310.4633 Physics and Society +1311.0913 Computer Science and Game Theory +1312.5686 Computational Complexity +1401.6595 Applications +1402.6011 Combinatorics +1404.1258 Group Theory +1404.1351 Pricing of Securities +1405.4523 Cosmology and Nongalactic Astrophysics +1405.7801 Economics +1406.0297 Optics +1407.0545 Materials Science +1407.3139 Algebraic Geometry +1408.3889 Numerical Analysis +1409.5925 Analysis of PDEs +1409.6873 Logic in Computer Science +1409.7358 Chemical Physics +1409.7601 Algebraic Geometry +1410.1630 Applications +1410.2455 Machine Learning +1410.4652 Complex Variables +1410.6370 +1410.7719 Optimization and Control +1410.7811 Theory +1411.1622 Strongly Correlated Electrons +1411.3697 Representation Theory +1411.4082 Representation Theory +1411.4558 Strongly Correlated Electrons +1411.4788 Functional Analysis +1411.5051 Representation Theory +1412.0393 Numerical Analysis +1412.4007 +1412.5578 Materials Science +1412.6022 Analysis of PDEs +1501.01615 +1501.02374 Populations and Evolution +1501.02663 Methodology +1501.03560 Mesoscale and Nanoscale Physics +1501.05876 Computation +1501.07550 Combinatorics +1502.00350 Mesoscale and Nanoscale Physics +1502.00682 Number Theory +1502.00833 Materials Science +1502.01901 Dynamical Systems +1502.03395 Superconductivity +1502.03533 Materials Science +1503.01963 Materials Science +1503.02057 Dynamical Systems +1503.07324 Atomic Physics +1504.03166 Numerical Analysis +1504.03605 Probability +1504.05969 Algebraic Geometry +1505.01211 Mesoscale and Nanoscale Physics +1505.02411 History and Overview +1505.03156 Phenomenology +1505.05221 Physics Education +1505.06912 Probability +1505.07228 Computation +1506.00967 Graphics +1506.01370 Probability +1506.02025 Computer Vision and Pattern Recognition +1506.04433 Fluid Dynamics +1506.04671 Quantum Algebra +1506.05195 Strongly Correlated Electrons +1506.06395 Physics and Society +1506.07223 +1507.02855 Phenomenology +1507.04074 Combinatorics +1507.04625 Optics +1507.05269 +1507.06402 +1507.06764 Computational Physics +1507.08591 Chemical Physics +1507.08824 Materials Science +1507.08985 Number Theory +1508.01835 Numerical Analysis +1508.02718 Phenomenology +1508.04907 Distributed, Parallel, and Cluster Computing +1508.05860 Functional Analysis +1508.06115 Applications +1509.01638 Populations and Evolution +1509.02877 Systems and Control +1509.02933 Mesoscale and Nanoscale Physics +1509.04279 +1509.04686 Probability +1509.05223 Mesoscale and Nanoscale Physics +1509.05841 Phenomenology +1509.05937 Robotics +1509.06055 Quantitative Methods +1509.06666 Optics +1509.08987 High Energy Astrophysical Phenomena +1509.09010 +1510.00381 Chemical Physics +1510.01535 Fluid Dynamics +1510.01784 Information Retrieval +1510.01813 Materials Science +1510.02854 Fluid Dynamics +1510.03020 Mesoscale and Nanoscale Physics +1510.04640 Number Theory +1510.04936 Accelerator Physics +1510.05067 Learning +1510.06992 Atomic Physics +1510.07025 Machine Learning +1510.07226 Number Theory +1510.07646 High Energy Astrophysical Phenomena +1510.08295 Biological Physics +1510.08687 Geometric Topology +1511.00490 +1511.00830 Machine Learning +1511.02239 Cosmology and Nongalactic Astrophysics +1511.02503 Computer Vision and Pattern Recognition +1511.02741 +1511.03260 Machine Learning +1511.03666 Theory +1511.04181 Strongly Correlated Electrons +1511.05308 +1511.05381 Optics +1511.05873 +1511.05880 +1511.06764 Phenomenology +1511.07595 Optimization and Control +1511.07912 Algebraic Geometry +1511.08134 Metric Geometry +1511.08205 Artificial Intelligence +1511.08362 +1511.08451 Metric Geometry +1511.09301 Combinatorics +1512.02218 Phenomenology +1512.02761 Optics +1512.05323 Probability +1512.06983 +1512.07317 Quantum Gases +1512.07648 Optics +1512.08637 Representation Theory +1512.09194 Computer Vision and Pattern Recognition +1601.00133 Algebraic Geometry +1601.01554 +1601.01621 General Mathematics +1601.01911 Numerical Analysis +1601.02262 Numerical Analysis +1601.02593 Category Theory +1601.02823 Mesoscale and Nanoscale Physics +1601.03558 Superconductivity +1601.04246 +1601.04854 Earth and Planetary Astrophysics +1601.05750 Classical Analysis and ODEs +1601.05907 Differential Geometry +1601.06023 Information Theory +1601.06498 Group Theory +1601.06517 Programming Languages +1601.07300 Programming Languages +1601.07520 Algebraic Topology +1601.07648 Computer Vision and Pattern Recognition +1601.07862 Computers and Society +1601.08011 Networking and Internet Architecture +1602.00428 Experiment +1602.00507 Strongly Correlated Electrons +1602.00955 Computer Vision and Pattern Recognition +1602.01070 Mathematical Finance +1602.01431 Number Theory +1602.01463 Analysis of PDEs +1602.01464 Computer Vision and Pattern Recognition +1602.01471 Superconductivity +1602.01478 Algebraic Geometry +1602.01480 Instrumentation and Methods for Astrophysics +1602.01486 Classical Analysis and ODEs +1602.01490 Dynamical Systems +1602.01495 Differential Geometry +1602.01496 Classical Analysis and ODEs +1602.01497 History and Philosophy of Physics +1602.01498 Classical Analysis and ODEs +1602.01505 Probability +1602.01506 Optimization and Control +1602.01507 Number Theory +1602.01510 Neural and Evolutionary Computing +1602.01511 Information Theory +1602.01513 Classical Analysis and ODEs +1602.01514 Algebraic Geometry +1602.01516 Systems and Control +1602.01520 Systems and Control +1602.01522 Methodology +1602.01531 Differential Geometry +1602.01532 Information Theory +1602.01533 Operator Algebras +1602.01535 Algebraic Geometry +1602.01536 Experiment +1602.01538 +1602.01544 Materials Science +1602.01545 Information Theory +1602.01546 Materials Science +1602.01551 Number Theory +1602.01552 Solar and Stellar Astrophysics +1602.01553 Number Theory +1602.01554 +1602.01555 Astrophysics of Galaxies +1602.01556 Materials Science +1602.01557 Learning +1602.01558 Geometric Topology +1602.01560 Information Theory +1602.01561 Combinatorics +1602.01567 Networking and Internet Architecture +1602.01571 Spectral Theory +1602.01574 Strongly Correlated Electrons +1602.01576 Computation and Language +1602.01580 Learning +1602.01583 Instrumentation and Detectors +1602.01584 +1602.01585 Artificial Intelligence +1602.01591 Number Theory +1602.01593 Analysis of PDEs +1602.01597 Probability +1602.01598 Numerical Analysis +1602.01603 Group Theory +1602.01604 Pattern Formation and Solitons +1602.01605 Instrumentation and Methods for Astrophysics +1602.01606 Probability +1602.01611 Chemical Physics +1602.01613 Probability +1602.01617 Combinatorics +1602.01618 Operator Algebras +1602.01619 Networking and Internet Architecture +1602.01620 Networking and Internet Architecture +1602.01623 Networking and Internet Architecture +1602.01625 Computer Vision and Pattern Recognition +1602.01629 Networking and Internet Architecture +1602.01634 Classical Analysis and ODEs +1602.01635 Computation and Language +1602.01637 Algebraic Geometry +1602.01638 Mesoscale and Nanoscale Physics +1602.01639 Mesoscale and Nanoscale Physics +1602.01641 Discrete Mathematics +1602.01643 Solar and Stellar Astrophysics +1602.01647 Computational Physics +1602.01653 Mesoscale and Nanoscale Physics +1602.01654 High Energy Astrophysical Phenomena +1602.01656 Functional Analysis +1602.01657 Probability +1602.01658 Numerical Analysis +1602.01659 Data Structures and Algorithms +1602.01661 Group Theory +1602.01662 Materials Science +1602.01663 Mesoscale and Nanoscale Physics +1602.01664 Earth and Planetary Astrophysics +1602.01665 Information Retrieval +1602.01670 Strongly Correlated Electrons +1602.01672 Populations and Evolution +1602.01675 Numerical Analysis +1602.01680 Computational Physics +1602.01683 High Energy Astrophysical Phenomena +1602.01684 Materials Science +1602.01687 Differential Geometry +1602.01689 Chemical Physics +1602.01692 +1602.01694 High Energy Astrophysical Phenomena +1602.01697 Combinatorics +1602.01703 Numerical Analysis +1602.01706 Number Theory +1602.01709 Materials Science +1602.01711 Learning +1602.01713 Solar and Stellar Astrophysics +1602.01715 +1602.01718 Artificial Intelligence +1602.01719 Plasma Physics +1602.01726 Soft Condensed Matter +1602.01727 Number Theory +1602.01728 Computer Vision and Pattern Recognition +1602.01729 Machine Learning +1602.01737 Optimization and Control +1602.01739 Computational Complexity +1602.01743 Quantitative Methods +1602.01748 Materials Science +1602.01750 Number Theory +1602.01751 Probability +1602.01752 General Physics +1602.01753 Logic +1602.01757 Solar and Stellar Astrophysics +1602.01759 Category Theory +1602.01770 Combinatorics +1602.01771 +1602.01775 +1602.01777 Data Structures and Algorithms +1602.01778 Tissues and Organs +1602.01780 Theory +1602.01781 Strongly Correlated Electrons +1602.01782 General Topology +1602.01789 Rings and Algebras +1602.01790 Mesoscale and Nanoscale Physics +1602.01799 Complex Variables +1602.01800 High Energy Astrophysical Phenomena +1602.01809 Fluid Dynamics +1602.01810 Soft Condensed Matter +1602.01811 Materials Science +1602.01817 Logic +1602.01818 Computer Vision and Pattern Recognition +1602.01819 Computational Complexity +1602.01820 Analysis of PDEs +1602.01821 Complex Variables +1602.01823 Analysis of PDEs +hep-th/0411047 Theory +math/0611830 Group Theory +0710.2079 Number Theory +0906.0290 History and Overview +0906.1934 Number Theory +0909.2808 Number Theory +0910.5177 Astrophysics of Galaxies +1008.1905 Number Theory +1008.3919 Dynamical Systems +1009.3560 Adaptation and Self-Organizing Systems +1010.4496 Complex Variables +1103.1109 Data Structures and Algorithms +1103.1979 Number Theory +1106.3654 Quantum Algebra +1106.6018 Solar and Stellar Astrophysics +1107.3516 Number Theory +1108.3364 Algebraic Geometry +1108.5462 Analysis of PDEs +1201.5331 Analysis of PDEs +1204.3076 Functional Analysis +1205.4456 Number Theory +1206.0178 K-Theory and Homology +1208.3505 Dynamical Systems +1208.3909 Algebraic Geometry +1210.2531 Mesoscale and Nanoscale Physics +1210.7736 Analysis of PDEs +1211.5994 Experiment +1212.5870 Classical Analysis and ODEs +1302.0061 Number Theory +1302.1748 Theory +1302.2537 General Physics +1302.6565 +1306.4564 Geometric Topology +1307.7490 Dynamical Systems +1308.1620 Combinatorics +1308.2046 Geometric Topology +1308.2048 Geometric Topology +1308.2419 History and Overview +1308.3934 Number Theory +1309.4421 Number Theory +1310.1154 Geometric Topology +1310.4045 Mesoscale and Nanoscale Physics +1310.5391 Algebraic Geometry +1311.7193 Algebraic Geometry +1312.1086 Materials Science +1312.5195 Operator Algebras +1312.5931 +1401.0704 Dynamical Systems +1401.0992 Dynamical Systems +1401.1749 Applications +1402.2886 Functional Analysis +1402.2901 Materials Science +1402.6032 Quantum Algebra +1403.1646 Analysis of PDEs +1403.1738 Optimization and Control +1404.1416 Representation Theory +1404.3187 Group Theory +1405.0162 Analysis of PDEs +1405.3013 Dynamical Systems +1405.3203 Solar and Stellar Astrophysics +1405.4409 Combinatorics +1405.5088 Geometric Topology +1405.5968 Solar and Stellar Astrophysics +1405.6431 Physics and Society +1405.7100 +1406.4595 +1406.7455 +1406.7815 +1407.1766 Fluid Dynamics +1407.3380 Operator Algebras +1407.3474 Information Theory +1407.4906 Superconductivity +1408.2125 Logic +1408.2239 Strongly Correlated Electrons +1408.4556 Instrumentation and Methods for Astrophysics +1408.5186 Analysis of PDEs +1409.0438 Quantum Algebra +1409.2158 Number Theory +1409.3121 Mesoscale and Nanoscale Physics +1409.4059 Classical Analysis and ODEs +1409.4146 +1409.5688 Combinatorics +1409.7341 Strongly Correlated Electrons +1410.0947 +1410.2323 Methodology +1410.2444 Classical Analysis and ODEs +1410.3017 Operator Algebras +1410.4589 Group Theory +1410.5227 Commutative Algebra +1410.7767 Operator Algebras +1410.7892 Number Theory +1410.8785 Number Theory +1411.0100 Digital Libraries +1411.5530 Dynamical Systems +1411.6295 Algebraic Geometry +1411.6790 Materials Science +1412.1820 Computation and Language +1412.2284 Quantum Algebra +1412.2532 Dynamical Systems +1412.4588 Number Theory +1412.8733 Algebraic Geometry +1501.00654 Strongly Correlated Electrons +1501.01290 +1501.02545 +1501.04421 Dynamical Systems +1501.05064 Materials Science +1501.07001 Group Theory +1502.00998 +1502.03541 Phenomenology +1502.04296 Accelerator Physics +1503.01033 Dynamical Systems +1503.01106 Instrumentation and Detectors +1503.01204 Biological Physics +1503.01270 Dynamical Systems +1503.01530 Accelerator Physics +1503.02139 Strongly Correlated Electrons +1503.02929 Biological Physics +1503.04335 Commutative Algebra +1503.04977 Group Theory +1503.05372 Instrumentation and Detectors +1503.05856 Medical Physics +1503.06183 Quantum Algebra +1503.06724 +1503.06856 Metric Geometry +1503.07136 Experiment +1503.07160 Networking and Internet Architecture +1503.07196 Number Theory +1503.07326 Accelerator Physics +1503.07389 Economics +1503.08005 Probability +1504.00294 Solar and Stellar Astrophysics +1504.01457 Instrumentation and Detectors +1504.01500 Accelerator Physics +1504.02187 Statistical Mechanics +1504.02271 Number Theory +1504.02570 Instrumentation and Detectors +1504.03902 Instrumentation and Detectors +1504.04553 Combinatorics +1504.04681 Instrumentation and Detectors +1504.05034 +1504.05444 Instrumentation and Detectors +1504.05649 Instrumentation and Detectors +1504.06300 Theory +1504.07155 Materials Science +1504.07219 +1504.07353 Atmospheric and Oceanic Physics +1504.07812 Mesoscale and Nanoscale Physics +1504.07998 Differential Geometry +1504.08277 Number Theory +1505.01221 Artificial Intelligence +1505.01270 Accelerator Physics +1505.01546 Instrumentation and Detectors +1505.02382 Materials Science +1505.03487 Operator Algebras +1505.04172 Commutative Algebra +1505.04942 +1505.05866 Geometric Topology +1505.07528 Accelerator Physics +1506.01817 Number Theory +1506.01888 Dynamical Systems +1506.02072 Strongly Correlated Electrons +1506.02370 Accelerator Physics +1506.03460 Rings and Algebras +1506.05227 Fluid Dynamics +1506.05476 Rings and Algebras +1506.06008 Instrumentation and Detectors +1506.06037 Materials Science +1506.06227 Theory +1506.06498 Mesoscale and Nanoscale Physics +1506.06789 Combinatorics +1506.06839 +1506.06851 Computational Physics +1506.06901 Classical Analysis and ODEs +1506.06923 Instrumentation and Detectors +1506.07179 Strongly Correlated Electrons +1506.07219 Instrumentation and Detectors +1506.07684 Optics +1506.07812 +1507.00153 Algebraic Topology +1507.00707 Accelerator Physics +1507.00901 +1507.01164 +1507.01540 Optimization and Control +1507.01711 Numerical Analysis +1507.01788 Statistical Mechanics +1507.02217 Accelerator Physics +1507.02367 Accelerator Physics +1507.03218 Materials Science +1507.03383 Instrumentation and Detectors +1507.03389 Instrumentation and Detectors +1507.03453 Experiment +1507.03595 Mesoscale and Nanoscale Physics +1507.04257 Cosmology and Nongalactic Astrophysics +1507.04371 Optimization and Control +1507.04430 Medical Physics +1507.04493 Cosmology and Nongalactic Astrophysics +1507.04882 Instrumentation and Methods for Astrophysics +1507.05038 Numerical Analysis +1507.05075 Classical Physics +1507.05113 Classical Analysis and ODEs +1507.05193 Theory +1507.05673 Combinatorics +1507.05691 Optimization and Control +1507.05740 Instrumentation and Detectors +1507.05914 Optimization and Control +1507.05957 Superconductivity +1507.06241 Theory +1507.06410 Theory +1507.06641 Classical Analysis and ODEs +1507.07621 Strongly Correlated Electrons +1507.07966 Computer Science and Game Theory +1507.08320 Fluid Dynamics +1507.08404 +1507.08547 Algebraic Geometry +1508.00396 Computational Geometry +1508.00735 Medical Physics +1508.01726 Number Theory +1508.02146 Atomic Physics +1508.02224 Astrophysics of Galaxies +1508.02484 Astrophysics of Galaxies +1508.02641 +1508.02918 Representation Theory +1508.03394 Instrumentation and Detectors +1508.03544 Phenomenology +1508.03707 Probability +1508.03749 +1508.04049 Optics +1508.04611 Strongly Correlated Electrons +1508.04701 Materials Science +1508.04715 Mesoscale and Nanoscale Physics +1508.04820 Superconductivity +1508.05139 Quantum Gases +1508.05618 Instrumentation and Detectors +1508.05692 Statistical Mechanics +1508.07087 Superconductivity +1508.07979 Classical Physics +1509.00267 Theory +1509.00442 Data Structures and Algorithms +1509.00780 +1509.01908 Theory +1509.02068 Functional Analysis +1509.02167 Astrophysics of Galaxies +1509.02229 Instrumentation and Detectors +1509.02968 Strongly Correlated Electrons +1509.03244 +1509.03457 +1509.04096 Phenomenology +1509.04248 Algebraic Geometry +1509.04871 High Energy Astrophysical Phenomena +1509.04980 Theory +1509.05309 Geometric Topology +1509.05399 Mesoscale and Nanoscale Physics +1509.05645 High Energy Astrophysical Phenomena +1509.05661 Analysis of PDEs +1509.05721 Strongly Correlated Electrons +1509.06149 Probability +1509.06443 Cosmology and Nongalactic Astrophysics +1509.06573 Number Theory +1509.07394 Optimization and Control +1509.07459 +1509.07984 Spectral Theory +1509.08673 Materials Science +1509.08965 +1509.09275 Accelerator Physics +1510.00467 Accelerator Physics +1510.00516 Instrumentation and Detectors +1510.00531 Probability +1510.00620 Networking and Internet Architecture +1510.00973 Classical Analysis and ODEs +1510.01538 Functional Analysis +1510.02140 +1510.02202 Mesoscale and Nanoscale Physics +1510.02273 Superconductivity +1510.02379 Phenomenology +1510.02781 Computer Vision and Pattern Recognition +1510.02891 Accelerator Physics +1510.03080 Mesoscale and Nanoscale Physics +1510.03407 Theory +1510.04338 Accelerator Physics +1510.04719 Solar and Stellar Astrophysics +1510.04739 Pattern Formation and Solitons +1510.04857 +1510.04898 Strongly Correlated Electrons +1510.05375 +1510.05489 Numerical Analysis +1510.05548 +1510.06005 Number Theory +1510.06899 Numerical Analysis +1510.07241 Mesoscale and Nanoscale Physics +1510.07259 Biological Physics +1510.07419 +1510.07896 Strongly Correlated Electrons +1510.08167 Instrumentation and Detectors +1510.08828 +1510.08886 Fluid Dynamics +1511.00625 Accelerator Physics +1511.01121 Plasma Physics +1511.01385 +1511.01979 Computational Physics +1511.02473 +1511.02673 Instrumentation and Methods for Astrophysics +1511.02714 Numerical Analysis +1511.03121 Phenomenology +1511.03454 Mesoscale and Nanoscale Physics +1511.03839 Accelerator Physics +1511.04038 +1511.04193 Plasma Physics +1511.04360 Plasma Physics +1511.04560 Mesoscale and Nanoscale Physics +1511.04573 Phenomenology +1511.05327 +1511.05497 Learning +1511.05723 +1511.05729 +1511.05874 Classical Analysis and ODEs +1511.05988 Fluid Dynamics +1511.06475 Atomic Physics +1511.06537 Plasma Physics +1511.06610 Materials Science +1511.06634 Quantum Gases +1511.06702 Computer Vision and Pattern Recognition +1511.07684 +1511.07824 Accelerator Physics +1511.07848 Materials Science +1511.07892 Mesoscale and Nanoscale Physics +1511.08001 Superconductivity +1511.08107 Accelerator Physics +1511.08155 Spectral Theory +1511.08295 Lattice +1511.08377 Accelerator Physics +1511.08763 Instrumentation and Detectors +1511.09032 Plasma Physics +1511.09457 Phenomenology +1512.00012 High Energy Astrophysical Phenomena +1512.00015 Astrophysics of Galaxies +1512.00072 Cosmology and Nongalactic Astrophysics +1512.00083 Combinatorics +1512.00109 +1512.00361 Group Theory +1512.00392 Mesoscale and Nanoscale Physics +1512.01209 Analysis of PDEs +1512.01264 High Energy Astrophysical Phenomena +1512.01331 Quantum Gases +1512.01547 Strongly Correlated Electrons +1512.01735 +1512.02398 Strongly Correlated Electrons +1512.03061 Theory +1512.03076 Analysis of PDEs +1512.03442 High Energy Astrophysical Phenomena +1512.03570 Rings and Algebras +1512.03940 Theory +1512.03996 Atomic Physics +1512.04045 Fluid Dynamics +1512.04149 Phenomenology +1512.04162 Populations and Evolution +1512.04494 +1512.04745 Materials Science +1512.05113 Group Theory +1512.05123 +1512.05235 Plasma Physics +1512.05248 Instrumentation and Methods for Astrophysics +1512.05310 Mesoscale and Nanoscale Physics +1512.05376 Theory +1512.05498 Accelerator Physics +1512.05504 Computer Science and Game Theory +1512.05660 Atomic Physics +1512.05731 Phenomenology +1512.05743 +1512.05781 Phenomenology +1512.07231 Number Theory +1512.07476 +1512.07480 Lattice +1512.07834 +1512.08024 Accelerator Physics +1512.08076 Phenomenology +1512.08232 Optics +1512.08308 Medical Physics +1512.08376 +1512.08386 Phenomenology +1512.08727 Phenomenology +1512.08777 Phenomenology +1512.08928 Phenomenology +1512.08977 Cosmology and Nongalactic Astrophysics +1512.08989 +1512.09147 Phenomenology +1601.00141 Digital Libraries +1601.00304 Materials Science +1601.00523 Soft Condensed Matter +1601.00561 Materials Science +1601.00678 Theory +1601.01369 Optics +1601.01383 Mesoscale and Nanoscale Physics +1601.01485 Plasma Physics +1601.01854 Mesoscale and Nanoscale Physics +1601.02102 Classical Physics +1601.02350 +1601.02356 +1601.02382 Atomic Physics +1601.02625 High Energy Astrophysical Phenomena +1601.02728 Theory +1601.02749 Atomic Physics +1601.02808 Physics and Society +1601.02850 +1601.02879 Statistical Mechanics +1601.02922 +1601.03529 Fluid Dynamics +1601.03658 +1601.03877 Solar and Stellar Astrophysics +1601.04350 Materials Science +1601.04376 Materials Science +1601.04379 Atomic Physics +1601.04472 Phenomenology +1601.04482 Numerical Analysis +1601.04502 +1601.04633 Computational Physics +1601.04643 Computational Physics +1601.04646 Optics +1601.04934 Theory +1601.05513 +1601.06073 Mesoscale and Nanoscale Physics +1601.06508 Accelerator Physics +1601.06624 +1601.06930 Quantitative Methods +1601.07208 Phenomenology +1601.07367 Mesoscale and Nanoscale Physics +1601.07425 Superconductivity +1601.07561 Theory +1601.07681 Solar and Stellar Astrophysics +1601.07808 +1601.07849 High Energy Astrophysical Phenomena +1602.00004 Phenomenology +1602.00006 Cosmology and Nongalactic Astrophysics +1602.00037 Fluid Dynamics +1602.00118 Mesoscale and Nanoscale Physics +1602.00119 Analysis of PDEs +1602.00130 Theory +1602.00152 Geophysics +1602.00444 Cell Behavior +1602.00470 Statistical Mechanics +1602.00680 Phenomenology +1602.00814 Computational Physics +1602.00971 Materials Science +1602.01209 Theory +1602.01257 Atomic Physics +1602.01371 Probability +1602.01372 Phenomenology +1602.01375 Theory +1602.01434 +1602.01539 Strongly Correlated Electrons +1602.01566 High Energy Astrophysical Phenomena +1602.01682 Theory +1602.01861 +1602.01997 +1602.02160 Astrophysics of Galaxies +1602.02193 Soft Condensed Matter +1602.02353 Mesoscale and Nanoscale Physics +1602.02420 Superconductivity +1602.02498 Strongly Correlated Electrons +1602.02565 +1602.02590 Numerical Analysis +1602.02640 +1602.02696 Statistical Mechanics +1602.02926 Mesoscale and Nanoscale Physics +1602.03036 High Energy Astrophysical Phenomena +1602.03176 +1602.03241 +1602.03294 Optics +1602.03561 Soft Condensed Matter +1602.03834 Digital Libraries +1602.03913 Materials Science +1602.04235 Biomolecules +1602.04271 Phenomenology +1602.04293 Astrophysics of Galaxies +1602.04429 Numerical Analysis +1602.04452 +1602.04648 Data Analysis, Statistics and Probability +1602.04656 Mathematical Finance +1602.04670 Phenomenology +1602.04764 +1602.04794 Astrophysics of Galaxies +1602.04965 Accelerator Physics +1602.05031 Mesoscale and Nanoscale Physics +1602.05150 Computational Complexity +1602.05212 Phenomenology +1602.05306 Mesoscale and Nanoscale Physics +1602.05475 +1602.05498 Physics and Society +1602.05552 Materials Science +1602.05615 Chemical Physics +1602.05810 Atomic Physics +1602.05812 Optics +1602.06016 Earth and Planetary Astrophysics +1602.06247 Quantum Gases +1602.06261 +1602.06272 Mesoscale and Nanoscale Physics +1602.06377 Atomic Physics +1602.06547 Soft Condensed Matter +1602.06757 +1602.06907 High Energy Astrophysical Phenomena +1602.06923 Mesoscale and Nanoscale Physics +1602.07096 Experiment +1602.07196 +1602.07300 Economics +1602.07493 +1602.07497 High Energy Astrophysical Phenomena +1602.07659 Mesoscale and Nanoscale Physics +1602.07895 Mesoscale and Nanoscale Physics +1602.08091 Mesoscale and Nanoscale Physics +1602.08094 Soft Condensed Matter +1602.08105 Phenomenology +1602.08205 Data Analysis, Statistics and Probability +1602.08443 Mesoscale and Nanoscale Physics +1602.08501 High Energy Astrophysical Phenomena +1602.08555 Materials Science +1602.08632 Chaotic Dynamics +1602.08803 Soft Condensed Matter +1602.08831 Soft Condensed Matter +1602.08865 +1602.08893 Soft Condensed Matter +1602.08921 Mesoscale and Nanoscale Physics +1602.08935 Materials Science +1602.08947 Soft Condensed Matter +1603.00008 Instrumentation and Detectors +1603.00249 High Energy Astrophysical Phenomena +1603.00533 +1603.00688 Plasma Physics +1603.00842 Adaptation and Self-Organizing Systems +1603.00868 Phenomenology +1603.01127 Materials Science +1603.01154 Theory +1603.01195 Experiment +1603.01223 Instrumentation and Methods for Astrophysics +1603.01343 Statistical Mechanics +1603.01361 Strongly Correlated Electrons +1603.01380 Phenomenology +1603.01608 Cosmology and Nongalactic Astrophysics +1603.01653 Instrumentation and Detectors +1603.01674 Mesoscale and Nanoscale Physics +1603.01683 Soft Condensed Matter +1603.01856 +1603.01992 Mesoscale and Nanoscale Physics +1603.02035 Mesoscale and Nanoscale Physics +1603.02203 Phenomenology +1603.02537 Computational Physics +1603.02591 Materials Science +1603.02673 Geometric Topology +1603.02755 +1603.02772 Robotics +1603.02904 Instrumentation and Detectors +1603.02974 Phenomenology +1603.02980 Multimedia +1603.03035 Cosmology and Nongalactic Astrophysics +1603.03049 Phenomenology +1603.03326 Earth and Planetary Astrophysics +1603.03428 Other Condensed Matter +1603.03489 Optics +1603.03529 Instrumentation and Detectors +1603.03576 Mesoscale and Nanoscale Physics +1603.03601 Mesoscale and Nanoscale Physics +1603.03864 Cosmology and Nongalactic Astrophysics +1603.03967 Plasma Physics +1603.04072 Materials Science +1603.04101 Theory +1603.04213 Theory +1603.04226 Cosmology and Nongalactic Astrophysics +1603.04607 Adaptation and Self-Organizing Systems +1603.04648 Statistical Mechanics +1603.04817 Accelerator Physics +1603.04850 High Energy Astrophysical Phenomena +1603.04932 Dynamical Systems +1603.04993 Phenomenology +1603.05023 Statistical Mechanics +1603.05059 Social and Information Networks +1603.05206 Pattern Formation and Solitons +1603.05477 +1603.05551 Theory +1603.05588 Phenomenology +1603.05597 Chemical Physics +1603.05612 Statistical Mechanics +1603.05779 Mesoscale and Nanoscale Physics +1603.05816 Atomic Physics +1603.05879 Mesoscale and Nanoscale Physics +1603.05961 Plasma Physics +1603.05972 Statistical Mechanics +1603.06074 Mesoscale and Nanoscale Physics +1603.06095 Strongly Correlated Electrons +1603.06118 Soft Condensed Matter +1603.06314 Disordered Systems and Neural Networks +1603.06316 Phenomenology +1603.06326 Phenomenology +1603.06382 +1603.06534 +1603.06566 Phenomenology +1603.07122 Statistical Mechanics +1603.07220 Combinatorics +1603.07360 +1603.07507 Plasma Physics +1603.07592 Superconductivity +1603.07597 Earth and Planetary Astrophysics +1603.07741 Mesoscale and Nanoscale Physics +1603.07742 +1603.07776 Instrumentation and Detectors +1603.07798 Instrumentation and Detectors +1603.07882 Materials Science +1603.08032 Atomic Physics +1603.08056 +1603.08087 +1603.08130 Plasma Physics +1603.08313 Theory +1603.08411 +1603.08886 Astrophysics of Galaxies +1603.08994 Theory +1603.09108 Theory +1603.09115 Soft Condensed Matter +1603.09306 Instrumentation and Methods for Astrophysics +1603.09319 Physics and Society +1603.09505 Phenomenology +1603.09662 Mesoscale and Nanoscale Physics +1604.00108 Materials Science +1604.00131 High Energy Astrophysical Phenomena +1604.00329 +1604.00574 Optics +1604.00583 Numerical Analysis +1604.00601 Mesoscale and Nanoscale Physics +1604.00639 Plasma Physics +1604.00810 Theory +1604.00873 Physics and Society +1604.00998 Phenomenology +1604.01148 Phenomenology +1604.01212 +1604.01309 +1604.01489 Cosmology and Nongalactic Astrophysics +1604.01905 Mesoscale and Nanoscale Physics +1604.01920 Materials Science +1604.02054 Soft Condensed Matter +1604.02189 +1604.02207 Astrophysics of Galaxies +1604.02351 Chemical Physics +1604.02384 Theory +1604.02592 Pattern Formation and Solitons +1604.02689 +1604.02770 Materials Science +1604.02859 Plasma Physics +1604.02866 Cosmology and Nongalactic Astrophysics +1604.02981 Experiment +1604.03253 Theory +1604.03281 Materials Science +1604.03323 Mesoscale and Nanoscale Physics +1604.03445 High Energy Astrophysical Phenomena +1604.03495 Statistical Mechanics +1604.03522 General Finance +1604.03528 Mesoscale and Nanoscale Physics +1604.03643 Accelerator Physics +1604.03644 Theory +1604.03646 +1604.03674 Soft Condensed Matter +1604.03828 +1604.03985 Strongly Correlated Electrons +1604.04288 High Energy Astrophysical Phenomena +1604.04301 Instrumentation and Detectors +1604.04662 Theory +1604.04770 +1604.04836 Statistical Mechanics +1604.04923 Optics +1604.04972 Mesoscale and Nanoscale Physics +1604.05002 Phenomenology +1604.05092 Theory +1604.05115 Materials Science +1604.05205 Instrumentation and Methods for Astrophysics +1604.05693 Logic +1604.05712 Mesoscale and Nanoscale Physics +1604.05723 Astrophysics of Galaxies +1604.05818 Phenomenology +1604.05837 Space Physics +1604.05918 Mesoscale and Nanoscale Physics +1604.06114 Solar and Stellar Astrophysics +1604.06179 Mesoscale and Nanoscale Physics +1604.06267 Phenomenology +1604.06297 +1604.06334 +1604.06456 Solar and Stellar Astrophysics +1604.06532 Instrumentation and Methods for Astrophysics +1604.06696 Plasma Physics +1604.06756 Solar and Stellar Astrophysics +1604.06825 Superconductivity +1604.06841 Mesoscale and Nanoscale Physics +1604.07024 Disordered Systems and Neural Networks +1604.07061 Phenomenology +1604.07146 +1604.07262 Mesoscale and Nanoscale Physics +1604.07598 Phenomenology +1604.07697 +1604.07721 Earth and Planetary Astrophysics +1604.07941 Phenomenology +1604.08022 High Energy Astrophysical Phenomena +1604.08051 Disordered Systems and Neural Networks +1604.08060 Instrumentation and Detectors +1604.08110 Quantum Gases +1604.08588 Phenomenology +1604.08653 Theory +1604.08678 Optics +1604.08776 Instrumentation and Detectors +1604.08782 Mesoscale and Nanoscale Physics +1604.08907 Experiment +1605.00005 Theory +1605.00077 Theory +1605.00209 Cosmology and Nongalactic Astrophysics +1605.00376 Statistical Mechanics +1605.00418 Instrumentation and Detectors +1605.00458 Quantum Gases +1605.00485 Chemical Physics +1605.00516 Materials Science +1605.00729 Quantum Gases +1605.00808 Soft Condensed Matter +1605.00851 Chemical Physics +1605.01044 Instrumentation and Detectors +1605.01069 Pattern Formation and Solitons +1605.01093 Theory +1605.01150 Statistical Mechanics +1605.01181 Theory +1605.01273 +1605.01378 Physics and Society +1605.01383 +1605.01439 Astrophysics of Galaxies +1605.01637 Statistical Mechanics +1605.01780 Instrumentation and Detectors +1605.02074 Earth and Planetary Astrophysics +1605.02385 Astrophysics of Galaxies +1605.02462 Materials Science +1605.02610 Theory +1605.02638 Other Condensed Matter +1605.02648 +1605.02739 Phenomenology +1605.02746 Astrophysics of Galaxies +1605.02766 Learning +1605.02771 Earth and Planetary Astrophysics +1605.02773 Astrophysics of Galaxies +1605.02814 Mesoscale and Nanoscale Physics +1605.02844 +1605.02857 Mesoscale and Nanoscale Physics +1605.03077 Solar and Stellar Astrophysics +1605.03258 Soft Condensed Matter +1605.03681 Materials Science +1605.03703 Solar and Stellar Astrophysics +1605.03765 Mesoscale and Nanoscale Physics +1605.03788 Quantum Gases +1605.03856 Atomic Physics +1605.03917 Astrophysics of Galaxies +1605.03940 Solar and Stellar Astrophysics +1605.03944 Experiment +1605.03966 High Energy Astrophysical Phenomena +1605.04047 Solar and Stellar Astrophysics +1605.04052 Theory +1605.04216 High Energy Astrophysical Phenomena +1605.04236 Atomic Physics +1605.04308 Phenomenology +1605.04309 Astrophysics of Galaxies +1605.04660 High Energy Astrophysical Phenomena +1605.04802 Earth and Planetary Astrophysics +1605.04804 Phenomenology +1605.04902 Earth and Planetary Astrophysics +1605.04938 General Finance +1605.05093 Earth and Planetary Astrophysics +1605.05116 Phenomenology +1605.05160 Astrophysics of Galaxies +1605.05184 Superconductivity +1605.05230 Atomic Physics +1605.05304 Theory +1605.05373 Cosmology and Nongalactic Astrophysics +1605.05407 Superconductivity +1605.05483 Theory +1605.05624 Statistical Mechanics +1605.05675 Chaotic Dynamics +1605.05699 Chemical Physics +1605.05732 Astrophysics of Galaxies +1605.05739 Mesoscale and Nanoscale Physics +1605.05740 Solar and Stellar Astrophysics +1605.05821 Astrophysics of Galaxies +1605.05840 Phenomenology +1605.06136 Astrophysics of Galaxies +1605.06218 Fluid Dynamics +1605.06239 Astrophysics of Galaxies +1605.06512 Astrophysics of Galaxies +1605.06614 Soft Condensed Matter +1605.07003 Computer Vision and Pattern Recognition +1605.07096 Earth and Planetary Astrophysics +1605.07138 Mesoscale and Nanoscale Physics +1605.07176 Astrophysics of Galaxies +1605.07271 High Energy Astrophysical Phenomena +1605.07351 Materials Science +1605.07355 Phenomenology +1605.07536 Materials Science +1605.07691 Earth and Planetary Astrophysics +1605.07724 Phenomenology +1605.07885 +1605.07899 Mesoscale and Nanoscale Physics +1605.07957 Atomic Physics +1605.07970 Instrumentation and Detectors +1605.08186 Phenomenology +1605.08213 Strongly Correlated Electrons +1605.08216 Phenomenology +1605.08229 Solar and Stellar Astrophysics +1605.08406 Astrophysics of Galaxies +1605.08620 Earth and Planetary Astrophysics +1605.08641 +1605.08662 Instrumentation and Methods for Astrophysics +1605.08684 Theory +1605.08690 Physics and Society +1605.08871 Mesoscale and Nanoscale Physics +1605.08901 +1605.09015 Solar and Stellar Astrophysics +1605.09224 Mesoscale and Nanoscale Physics +1605.09315 Solar and Stellar Astrophysics +1605.09482 Theory +1605.09642 High Energy Astrophysical Phenomena +1606.00115 Numerical Analysis +1606.00270 High Energy Astrophysical Phenomena +1606.00302 Superconductivity +1606.00378 Phenomenology +1606.00443 Astrophysics of Galaxies +1606.00565 Earth and Planetary Astrophysics +1606.00644 Superconductivity +1606.00677 +1606.00733 +1606.00763 Materials Science +1606.00990 Solar and Stellar Astrophysics +1606.01007 Analysis of PDEs +1606.01022 Theory +1606.01134 Solar and Stellar Astrophysics +1606.01144 Solar and Stellar Astrophysics +1606.01279 +1606.01816 High Energy Astrophysical Phenomena +1606.01826 Mesoscale and Nanoscale Physics +1606.01895 Earth and Planetary Astrophysics +1606.01923 High Energy Astrophysical Phenomena +1606.01930 Databases +1606.02152 +1606.02273 Theory +1606.02743 Astrophysics of Galaxies +1606.02859 Molecular Networks +1606.02936 Experiment +1606.02945 Theory +1606.02951 Theory +1606.03016 Theory +1606.03246 Soft Condensed Matter +1606.03271 +1606.03283 Other Condensed Matter +1606.03375 Cosmology and Nongalactic Astrophysics +1606.03438 Theory +1606.03448 Instrumentation and Detectors +1606.03856 Mesoscale and Nanoscale Physics +1606.03876 High Energy Astrophysical Phenomena +1606.03900 +1606.03931 Probability +1606.04019 +1606.04112 Cosmology and Nongalactic Astrophysics +1606.04243 Strongly Correlated Electrons +1606.04330 Earth and Planetary Astrophysics +1606.04638 Phenomenology +1606.04706 Strongly Correlated Electrons +1606.04840 Earth and Planetary Astrophysics +1606.04879 Theory +1606.04941 High Energy Astrophysical Phenomena +1606.05108 Atmospheric and Oceanic Physics +1606.05138 Astrophysics of Galaxies +1606.05227 Statistical Mechanics +1606.05440 Solar and Stellar Astrophysics +1606.05645 Instrumentation and Detectors +1606.05748 +1606.05949 Astrophysics of Galaxies +1606.05953 Astrophysics of Galaxies +1606.06181 Soft Condensed Matter +1606.06182 Astrophysics of Galaxies +1606.06185 Astrophysics of Galaxies +1606.06304 Astrophysics of Galaxies +1606.06458 Fluid Dynamics +1606.06485 Computational Physics +1606.06498 Chemical Physics +1606.06506 Materials Science +1606.06713 Chemical Physics +1606.06762 Instrumentation and Detectors +1606.06847 Solar and Stellar Astrophysics +1606.06905 Computation and Language +1606.06955 Materials Science +1606.06978 Atomic Physics +1606.07147 High Energy Astrophysical Phenomena +1606.07236 Combinatorics +1606.07281 +1606.07323 Phenomenology +1606.07344 +1606.07397 High Energy Astrophysical Phenomena +1606.07599 Solar and Stellar Astrophysics +1606.07669 Chaotic Dynamics +1606.07811 High Energy Astrophysical Phenomena +1606.07900 +1606.07923 Cosmology and Nongalactic Astrophysics +1606.07974 Materials Science +1606.08147 Superconductivity +1606.08236 +1606.08336 Phenomenology +1606.08442 Astrophysics of Galaxies +1606.08461 Earth and Planetary Astrophysics +1606.08477 Astrophysics of Galaxies +1606.08537 High Energy Astrophysical Phenomena +1606.08632 Statistical Mechanics +1606.08664 Plasma Physics +1606.08676 Plasma Physics +1606.08778 Astrophysics of Galaxies +1606.08800 Quantum Gases +1606.08858 Astrophysics of Galaxies +1606.08899 Phenomenology +1606.09179 Solar and Stellar Astrophysics +1606.09363 Cosmology and Nongalactic Astrophysics +1606.09386 Soft Condensed Matter +1606.09416 Strongly Correlated Electrons +1606.09536 High Energy Astrophysical Phenomena +1606.09556 General Physics +1606.09592 Phenomenology +1607.00074 High Energy Astrophysical Phenomena +1607.00143 Atomic Physics +1607.00161 Solar and Stellar Astrophysics +1607.00187 +1607.00201 Chaotic Dynamics +1607.00206 Probability +1607.00230 Materials Science +1607.00258 Fluid Dynamics +1607.00404 Phenomenology +1607.00450 Optics +1607.00471 +1607.00551 Plasma Physics +1607.00632 Strongly Correlated Electrons +1607.00732 High Energy Astrophysical Phenomena +1607.00792 Optics +1607.01019 Astrophysics of Galaxies +1607.01054 Solar and Stellar Astrophysics +1607.01093 Strongly Correlated Electrons +1607.01175 Astrophysics of Galaxies +1607.01238 Superconductivity +1607.01329 Solar and Stellar Astrophysics +1607.01397 Earth and Planetary Astrophysics +1607.01427 Dynamical Systems +1607.01514 Adaptation and Self-Organizing Systems +1607.01543 High Energy Astrophysical Phenomena +1607.01737 High Energy Astrophysical Phenomena +1607.01953 Astrophysics of Galaxies +1607.01973 Combinatorics +1607.02150 Cosmology and Nongalactic Astrophysics +1607.02519 High Energy Astrophysical Phenomena +1607.02807 Superconductivity +1607.02891 +1607.03375 Earth and Planetary Astrophysics +1607.03516 Computer Vision and Pattern Recognition +1607.03595 Astrophysics of Galaxies +1607.03636 Astrophysics of Galaxies +1607.03695 Earth and Planetary Astrophysics +1607.03771 High Energy Astrophysical Phenomena +1607.03849 Learning +1607.03866 Data Structures and Algorithms +1607.03953 Strongly Correlated Electrons +1607.04121 +1607.04276 Phenomenology +1607.04351 Solar and Stellar Astrophysics +1607.04451 Social and Information Networks +1607.04792 Materials Science +1607.05124 Statistical Mechanics +1607.05211 Phenomenology +1607.05265 High Energy Astrophysical Phenomena +1607.06513 Optimization and Control +1607.07255 Soft Condensed Matter +1607.07297 Instrumentation and Detectors +1607.07408 Astrophysics of Galaxies +1607.07412 Dynamical Systems +1607.07836 +1607.08509 Materials Science +1607.08691 Learning +1607.08692 Computation and Language +1607.08778 +1607.08892 Phenomenology +1608.00040 +1608.00078 Solar and Stellar Astrophysics +1608.00151 Theory +1608.00153 Phenomenology +1608.00210 Solar and Stellar Astrophysics +1608.00265 Computer Vision and Pattern Recognition +1608.00268 Computer Vision and Pattern Recognition +1608.00270 Computer Vision and Pattern Recognition +1608.00273 Computer Vision and Pattern Recognition +1608.00274 Computer Vision and Pattern Recognition +1608.00277 Computer Vision and Pattern Recognition +1608.00279 Computer Vision and Pattern Recognition +1608.00297 Representation Theory +1608.00396 Solar and Stellar Astrophysics +1608.00398 Solar and Stellar Astrophysics +1608.00557 Optimization and Control +1608.00558 Classical Physics +1608.00563 Instrumentation and Detectors +1608.00564 Differential Geometry +1608.00567 Genomics +1608.00570 Computers and Society +1608.00571 Distributed, Parallel, and Cluster Computing +1608.00572 Networking and Internet Architecture +1608.00581 Mesoscale and Nanoscale Physics +1608.00591 +1608.00592 Logic +1608.00596 Instrumentation and Methods for Astrophysics +1608.00598 Optimization and Control +1608.00600 Geometric Topology +1608.00601 Classical Analysis and ODEs +1608.00604 Accelerator Physics +1608.00605 Superconductivity +1608.00606 Information Theory +1608.00607 Methodology +1608.00609 Robotics +1608.00610 Operator Algebras +1608.00611 Computer Vision and Pattern Recognition +1608.00612 Computation and Language +1608.00614 Strongly Correlated Electrons +1608.00615 Applications +1608.00616 Classical Physics +1608.00617 Group Theory +1608.00622 Numerical Analysis +1608.00623 Methodology +1608.00624 Statistics Theory +1608.00625 Soft Condensed Matter +1608.00627 Robotics +1608.00628 Probability +1608.00629 Methodology +1608.00630 Geophysics +1608.00632 Dynamical Systems +1608.00633 Computers and Society +1608.00634 Information Theory +1608.00635 Optimization and Control +1608.00636 Performance +1608.00639 General Topology +1608.00640 Optics +1608.00643 +1608.00644 Numerical Analysis +1608.00648 +1608.00649 Geometric Topology +1608.00652 Computer Science and Game Theory +1608.00653 Computer Science and Game Theory +1608.00654 Formal Languages and Automata Theory +1608.00655 Systems and Control +1608.00656 Distributed, Parallel, and Cluster Computing +1608.00657 Logic in Computer Science +1608.00658 Systems and Control +1608.00659 Classical Physics +1608.00660 +1608.00661 Information Theory +1608.00663 Optimization and Control +1608.00664 Differential Geometry +1608.00666 Lattice +1608.00667 Learning +1608.00668 Computer Vision and Pattern Recognition +1608.00669 Cryptography and Security +1608.00671 Soft Condensed Matter +1608.00673 Data Structures and Algorithms +1608.00676 Instrumentation and Methods for Astrophysics +1608.00681 +1608.00684 Social and Information Networks +1608.00687 Distributed, Parallel, and Cluster Computing +1608.00693 Classical Physics +1608.00696 Methodology +1608.00697 Symbolic Computation +1608.00701 +1608.00703 Algebraic Geometry +1608.00708 Social and Information Networks +1608.00710 Probability +1608.00712 Learning +1608.00713 Combinatorics +1608.00715 Combinatorics +1608.00718 Physics Education +1608.00719 +1608.00722 Information Theory +1608.00724 Data Structures and Algorithms +1608.00726 Distributed, Parallel, and Cluster Computing +1608.00727 Analysis of PDEs +1608.00728 Numerical Analysis +1608.00730 Artificial Intelligence +1608.00731 Logic in Computer Science +1608.00732 Logic +1608.00735 +1608.00736 Materials Science +1608.00737 Robotics +1608.00738 Methodology +1608.00739 +1608.00740 Number Theory +1608.00743 Information Theory +1608.00744 Atomic and Molecular Clusters +1608.00745 Instrumentation and Methods for Astrophysics +1608.00747 Combinatorics +1608.00749 Formal Languages and Automata Theory +1608.00751 Information Theory +1608.00752 Geometric Topology +1608.00753 Computer Vision and Pattern Recognition +1608.00755 Functional Analysis +1608.00757 Statistics Theory +1608.00758 Information Retrieval +1608.00759 Solar and Stellar Astrophysics +1608.00761 Analysis of PDEs +1608.00763 Physics and Society +1608.00764 Earth and Planetary Astrophysics +1608.00766 +1608.00767 Number Theory +1608.00769 Combinatorics +1608.00770 High Energy Astrophysical Phenomena +1608.00774 Group Theory +1608.00780 Algebraic Geometry +1608.00785 Computer Vision and Pattern Recognition +1608.00787 Programming Languages +1608.00788 Information Retrieval +1608.00789 Computation and Language +1608.00790 Complex Variables +1608.00792 Probability +1608.00793 Materials Science +1608.00794 Applications +1608.00797 Computer Vision and Pattern Recognition +1608.00798 Digital Libraries +1608.00800 Combinatorics +1608.00801 Classical Analysis and ODEs +1608.00803 Number Theory +1608.00807 Soft Condensed Matter +1608.00811 Exactly Solvable and Integrable Systems +1608.00812 Strongly Correlated Electrons +1608.00814 Probability +1608.00816 Programming Languages +1608.00817 General Physics +1608.00818 Methodology +1608.00821 Analysis of PDEs +1608.00822 Theory +1608.00831 Numerical Analysis +1608.00832 Probability +1608.00833 Pattern Formation and Solitons +1608.00834 Representation Theory +1608.00835 Cryptography and Security +1608.00836 Instrumentation and Detectors +1608.00839 Networking and Internet Architecture +1608.00840 Physics and Society +1608.00842 Learning +1608.00846 Algebraic Geometry +1608.00847 +1608.00848 Cryptography and Security +1608.00849 Cryptography and Security +1608.00853 Computer Vision and Pattern Recognition +1608.00854 Analysis of PDEs +1608.00855 Networking and Internet Architecture +1608.00856 General Mathematics +1608.00859 Computer Vision and Pattern Recognition +1608.00860 Learning +1608.00861 General Mathematics +1608.00865 Data Structures and Algorithms +1608.00866 Cryptography and Security +1608.00867 Logic in Computer Science +1608.00876 Machine Learning +1608.00878 General Finance +1608.00879 Experiment +1608.00880 Chemical Physics +1608.00885 Probability +1608.00887 Robotics +1608.00888 Solar and Stellar Astrophysics +1608.00891 Optimization and Control +1608.00893 Complex Variables +1608.00902 Theory +1608.00906 Numerical Analysis +1608.00909 +1608.00911 Computer Vision and Pattern Recognition +1608.00912 Statistical Mechanics +1608.00913 Networking and Internet Architecture +1608.00916 Materials Science +1608.00919 Experiment +1608.00921 Graphics +1608.00922 Algebraic Geometry +1608.00925 Multimedia +1608.00926 Algebraic Geometry +1608.00927 Pattern Formation and Solitons +1608.00929 Computation and Language +1608.00930 Tissues and Organs +1608.00933 Group Theory +1608.00934 Solar and Stellar Astrophysics +1608.00937 +1608.00938 Populations and Evolution +1608.00940 Theory +1608.00941 Information Theory +1608.00943 Solar and Stellar Astrophysics +1608.00944 Distributed, Parallel, and Cluster Computing +1608.00945 Computation +1608.00946 Materials Science +1608.00947 Fluid Dynamics +1608.00948 Methodology +1608.00949 Differential Geometry +1608.00950 Complex Variables +1608.00951 Algebraic Geometry +1608.00952 Combinatorics +1608.00953 Complex Variables +1608.00959 Group Theory +1608.00960 Geometric Topology +1608.00961 Differential Geometry +1608.00964 Statistical Mechanics +math/0606465 Number Theory +math/0606580 Number Theory +math/0611606 Number Theory +0906.2450 Number Theory +1004.3236 Logic in Computer Science +1008.4788 Accelerator Physics +1205.5761 +1208.2711 Experiment +1210.3615 +1211.2851 Logic +1211.6764 Mesoscale and Nanoscale Physics +1301.7156 Probability +1303.2209 Statistics Theory +1304.1675 Emerging Technologies +1306.2602 Probability +1306.6118 Number Theory +1307.2717 Computational Physics +1307.6921 Disordered Systems and Neural Networks +1307.7177 Physics Education +1308.0415 Mesoscale and Nanoscale Physics +1310.2285 Analysis of PDEs +1310.7525 +1311.4833 Machine Learning +1312.1415 Dynamical Systems +1312.2142 Dynamical Systems +1312.4218 +1312.7186 Statistics Theory +1401.0062 Statistics Theory +1402.0142 Statistics Theory +1402.4791 Probability +1403.7383 Algebraic Geometry +1405.3904 Methodology +1405.5882 Phenomenology +1406.6256 Differential Geometry +1407.0471 Statistics Theory +1407.7290 Phenomenology +1408.0904 Probability +1408.3769 Algebraic Topology +1409.3587 Algebraic Geometry +1409.4050 Probability +1409.7525 +1410.1380 Group Theory +1410.5716 Information Theory +1411.2098 Strongly Correlated Electrons +1411.2568 Phenomenology +1411.3047 Combinatorics +1411.5192 Analysis of PDEs +1411.7172 Differential Geometry +1411.7919 Methodology +1411.7984 Statistical Mechanics +1501.02195 +1501.04499 Probability +1501.04750 Combinatorics +1501.05139 Social and Information Networks +1501.06984 +1502.02711 Information Theory +1502.05185 Probability +1503.03272 Combinatorics +1503.04673 Emerging Technologies +1503.08963 Probability +1505.00056 Computational Physics +1505.03723 +1505.05910 Combinatorics +1506.02667 Mesoscale and Nanoscale Physics +1506.03418 +1506.04086 Theory +1506.07064 Quantum Gases +1506.07870 Probability +1507.01621 Analysis of PDEs +1507.02621 +1507.04264 +1507.05545 Numerical Analysis +1508.00512 Number Theory +1508.02041 Analysis of PDEs +1508.02565 +1508.06685 +1508.07908 Differential Geometry +1509.03488 Computation and Language +1509.03730 Applications +1509.05570 Methodology +1509.07045 Numerical Analysis +1509.07855 +1510.01121 Probability +1510.02387 Computation and Language +1510.03389 Dynamical Systems +1510.04708 +1510.05328 Neural and Evolutionary Computing +1510.05463 Algebraic Geometry +1510.08102 Commutative Algebra +1510.08986 Statistics Theory +1511.00028 Statistics Theory +1511.01923 Earth and Planetary Astrophysics +1511.02270 Statistics Theory +1511.02846 Cosmology and Nongalactic Astrophysics +1511.03771 Neural and Evolutionary Computing +1511.03888 Optics +1511.05268 Strongly Correlated Electrons +1511.06095 Mesoscale and Nanoscale Physics +1511.07358 Materials Science +1511.08102 Statistics Theory +1511.08254 +1511.09267 Mesoscale and Nanoscale Physics +1511.09327 Computational Geometry +1512.01610 Lattice +1512.02273 Quantum Gases +1512.03681 Differential Geometry +1512.03838 Optimization and Control +1512.04181 +1512.04480 Soft Condensed Matter +1512.05164 Computational Geometry +1512.05456 Materials Science +1512.06705 Disordered Systems and Neural Networks +1512.07040 Phenomenology +1512.07149 Other Condensed Matter +1512.07346 +1601.01322 Cosmology and Nongalactic Astrophysics +1601.01538 Chaotic Dynamics +1601.02517 +1601.03530 Optics +1601.04335 Mesoscale and Nanoscale Physics +1601.07907 Astrophysics of Galaxies +1602.03539 +1602.04260 Information Theory +1602.04296 +1602.04748 Algebraic Topology +1602.05557 Functional Analysis +1602.06194 Experiment +1602.06262 Adaptation and Self-Organizing Systems +1602.07122 Strongly Correlated Electrons +1602.07456 Quantum Algebra +1602.08539 Physics and Society +1603.00857 Dynamical Systems +1603.01563 +1603.03157 Phenomenology +1603.03437 Astrophysics of Galaxies +1603.03817 Probability +1603.04626 Databases +1603.04733 Machine Learning +1603.04935 Representation Theory +1603.08743 Discrete Mathematics +1603.08791 Experiment +1604.00788 Computation and Language +1604.02516 Analysis of PDEs +1604.02763 Operator Algebras +1604.03156 Differential Geometry +1604.05445 Astrophysics of Galaxies +1604.05481 Systems and Control +1604.06433 Computer Vision and Pattern Recognition +1604.07195 Superconductivity +1604.08086 Systems and Control +1604.08346 Lattice +1604.08494 Number Theory +1605.01474 Combinatorics +1605.01601 Accelerator Physics +1605.01873 Earth and Planetary Astrophysics +1605.04655 Computation and Language +1605.04800 Computation and Language +1605.04809 Computation and Language +1605.04970 +1605.06992 Data Structures and Algorithms +1605.07465 Physics and Society +1605.07500 Numerical Analysis +1605.07891 Information Retrieval +1605.07894 Differential Geometry +1605.08114 Representation Theory +1605.08813 Numerical Analysis +1605.09231 Optics +1606.00723 Dynamical Systems +1606.01924 Artificial Intelligence +1606.02260 Probability +1606.02272 Astrophysics of Galaxies +1606.02767 Artificial Intelligence +1606.02775 Algebraic Geometry +1606.02833 +1606.03209 Combinatorics +1606.03264 Mesoscale and Nanoscale Physics +1606.03686 Physics and Society +1606.04006 Logic in Computer Science +1606.04535 Computer Vision and Pattern Recognition +1606.04569 Probability +1606.05459 Algebraic Topology +1606.06080 Representation Theory +1606.06103 Number Theory +1606.06176 Analysis of PDEs +1606.06222 Networking and Internet Architecture +1606.06339 Networking and Internet Architecture +1606.06368 Learning +1606.06647 Accelerator Physics +1606.06790 Strongly Correlated Electrons +1606.06812 Social and Information Networks +1606.06907 Phenomenology +1606.07015 Computer Vision and Pattern Recognition +1606.07079 Networking and Internet Architecture +1606.07080 Cryptography and Security +1606.07081 Machine Learning +1606.07082 Phenomenology +1606.07088 Social and Information Networks +1606.07090 Phenomenology +1606.07091 Astrophysics of Galaxies +1606.07092 Other Computer Science +1606.07093 Numerical Analysis +1606.07094 Analysis of PDEs +1606.07095 Artificial Intelligence +1606.07096 High Energy Astrophysical Phenomena +1606.07098 +1606.07099 Networking and Internet Architecture +1606.07100 Quantum Gases +1606.07101 Materials Science +1606.07106 Probability +1606.07110 Instrumentation and Detectors +1606.07111 Distributed, Parallel, and Cluster Computing +1606.07112 Machine Learning +1606.07116 +1606.07118 Probability +1606.07119 Geometric Topology +1606.07124 Logic in Computer Science +1606.07125 Complex Variables +1606.07129 Machine Learning +1606.07132 +1606.07133 Analysis of PDEs +1606.07134 Instrumentation and Methods for Astrophysics +1606.07135 Rings and Algebras +1606.07136 Sound +1606.07137 Artificial Intelligence +1606.07141 Probability +1606.07145 Analysis of PDEs +1606.07149 Neural and Evolutionary Computing +1606.07153 Machine Learning +1606.07154 Artificial Intelligence +1606.07156 Instrumentation and Methods for Astrophysics +1606.07157 Combinatorics +1606.07158 Analysis of PDEs +1606.07159 Spectral Theory +1606.07160 Populations and Evolution +1606.07161 Information Theory +1606.07163 Machine Learning +1606.07164 Networking and Internet Architecture +1606.07165 Quantum Algebra +1606.07166 Computer Vision and Pattern Recognition +1606.07167 +1606.07170 Physics Education +1606.07171 Phenomenology +1606.07172 Numerical Analysis +1606.07176 Information Theory +1606.07178 Number Theory +1606.07183 Mesoscale and Nanoscale Physics +1606.07184 Other Quantitative Biology +1606.07187 Classical Analysis and ODEs +1606.07188 Information Retrieval +1606.07189 Computation and Language +1606.07190 Quantum Gases +1606.07197 Networking and Internet Architecture +1606.07198 Networking and Internet Architecture +1606.07201 Rings and Algebras +1606.07202 Functional Analysis +1606.07204 Combinatorics +1606.07205 Differential Geometry +1606.07208 Data Structures and Algorithms +1606.07209 +1606.07211 Information Retrieval +1606.07215 Systems and Control +1606.07217 Superconductivity +1606.07222 Phenomenology +1606.07223 Solar and Stellar Astrophysics +1606.07224 Geometric Topology +1606.07226 Networking and Internet Architecture +1606.07227 Probability +1606.07228 Applications +1606.07230 Computer Vision and Pattern Recognition +1606.07231 Information Theory +1606.07232 Information Theory +1606.07233 Artificial Intelligence +1606.07234 Numerical Analysis +1606.07237 Disordered Systems and Neural Networks +1606.07241 Information Theory +1606.07243 Analysis of PDEs +1606.07244 Probability +1606.07245 Classical Analysis and ODEs +1606.07246 Statistics Theory +1606.07247 Human-Computer Interaction +1606.07250 Functional Analysis +1606.07251 Machine Learning +1606.07254 Algebraic Geometry +1606.07255 Instrumentation and Detectors +1606.07256 Computer Vision and Pattern Recognition +1606.07258 Combinatorics +1606.07260 Optimization and Control +1606.07262 Neural and Evolutionary Computing +1606.07265 +1606.07267 Analysis of PDEs +1606.07268 Methodology +1606.07269 Biomolecules +1606.07270 Analysis of PDEs +1606.07271 Astrophysics of Galaxies +1606.07273 +1606.07274 Experiment +1606.07275 +1606.07277 Disordered Systems and Neural Networks +1606.07278 +1606.07280 Materials Science +1606.07283 Learning +1606.07284 Algebraic Geometry +1606.07286 Learning +1606.07287 Information Retrieval +1606.07288 Combinatorics +1606.07290 +1606.07292 +1606.07294 Probability +1606.07295 Computer Science and Game Theory +1606.07298 Computation and Language +1606.07306 Instrumentation and Detectors +1606.07309 Methodology +1606.07311 Portfolio Management +1606.07312 Robotics +1606.07313 +1606.07314 Instrumentation and Detectors +1606.07317 Group Theory +1606.07322 Dynamical Systems +1606.07324 Computer Vision and Pattern Recognition +1606.07336 Distributed, Parallel, and Cluster Computing +1606.07337 Logic in Computer Science +1606.07345 Instrumentation and Methods for Astrophysics +1606.07348 Pattern Formation and Solitons +1606.07350 Populations and Evolution +1606.07351 Information Retrieval +1606.07358 Methodology +1606.07362 Combinatorics +1606.07364 Representation Theory +1606.07365 Machine Learning +1606.07367 Biological Physics +1606.07368 Medical Physics +1606.07369 Applications +1606.07370 Combinatorics +1606.07378 Statistics Theory +1606.07380 Optimization and Control +1606.07381 Trading and Market Microstructure +1606.07382 Fluid Dynamics +1606.07383 Social and Information Networks +1606.07384 Data Structures and Algorithms +1606.07385 Networking and Internet Architecture +1606.07386 Networking and Internet Architecture +1606.07392 Logic +1606.07396 Computer Vision and Pattern Recognition +1606.07405 Astrophysics of Galaxies +1606.07408 Number Theory +1606.07410 Mesoscale and Nanoscale Physics +1606.07414 Computer Vision and Pattern Recognition +1606.07415 Computer Vision and Pattern Recognition +1606.07416 Theory +1606.07418 Analysis of PDEs +1606.07420 Theory +1606.07422 +1606.07424 +1606.07426 Differential Geometry +1606.07427 Number Theory +0805.3753 Algebraic Geometry +0901.1840 Differential Geometry +1202.1135 Representation Theory +1210.0530 Mathematical Software +1302.1910 Differential Geometry +1302.4475 Artificial Intelligence +1302.7091 Mesoscale and Nanoscale Physics +1308.4004 Optimization and Control +1308.6536 Combinatorics +1311.3788 Materials Science +1311.4197 Exactly Solvable and Integrable Systems +1401.0459 Commutative Algebra +1402.4125 +1403.5831 Combinatorics +1403.8058 Logic +1404.2314 Artificial Intelligence +1404.7105 Information Theory +1405.5230 Mathematical Finance +1407.1547 Category Theory +1409.4843 Data Structures and Algorithms +1410.1655 Materials Science +1410.3504 Classical Analysis and ODEs +1412.3358 Experiment +1501.00652 +1501.04234 Statistical Mechanics +1501.07353 Logic +1502.01894 High Energy Astrophysical Phenomena +1502.05244 Materials Science +1503.00816 Mesoscale and Nanoscale Physics +1503.02026 Theory +1503.03703 Optimization and Control +1503.07378 Materials Science +1504.01095 Algebraic Geometry +1504.03485 Classical Physics +1504.07305 Number Theory +1505.01017 Numerical Analysis +1505.04812 Mesoscale and Nanoscale Physics +1505.07584 Phenomenology +1505.08007 Differential Geometry +1506.00598 Information Theory +1506.01448 Operator Algebras +1506.02228 +1506.02554 Machine Learning +1506.02698 Phenomenology +1506.03413 Probability +1506.04063 Probability +1506.06476 Formal Languages and Automata Theory +1506.07063 Analysis of PDEs +1506.07105 Combinatorics +1506.08385 Algebraic Geometry +1506.08488 +1507.00426 Optics +1507.00899 Mesoscale and Nanoscale Physics +1507.01125 Probability +1507.02363 Commutative Algebra +1507.03448 Numerical Analysis +1507.03821 Analysis of PDEs +1507.05333 Machine Learning +1507.07570 Analysis of PDEs +1507.08751 Systems and Control +1508.03533 Physics and Society +1508.05162 Probability +1509.02183 Symplectic Geometry +1509.03304 +1509.06576 General Topology +1509.08919 Quantum Gases +1509.08996 Exactly Solvable and Integrable Systems +1510.05420 Optimization and Control +1510.06678 Geometric Topology +1510.09140 Physics and Society +1511.02803 Phenomenology +1511.03669 Theory +1511.04792 Systems and Control +1511.06311 Quantum Gases +1511.07858 Differential Geometry +1512.02887 Theory +1512.02971 Computational Physics +1512.03479 Statistics Theory +1512.03877 Algebraic Geometry +1512.04039 Learning +1512.04113 +1601.00532 Mesoscale and Nanoscale Physics +1601.00595 Learning +1601.04064 +1601.05083 Cosmology and Nongalactic Astrophysics +1601.05805 Theory +1601.06588 Rings and Algebras +1602.00072 +1602.00946 +1602.01403 Representation Theory +1602.03896 Complex Variables +1602.04305 Experiment +1602.05959 Theory +1602.06753 Differential Geometry +1602.06921 Algebraic Topology +1602.07867 Theory +1602.08328 History and Overview +1602.08412 Other Computer Science +1602.08688 +1603.00367 Geometric Topology +1603.01110 Chaotic Dynamics +1603.01535 Functional Analysis +1603.02479 +1603.05279 Computer Vision and Pattern Recognition +1603.06078 Graphics +1603.06568 Computer Vision and Pattern Recognition +1603.07069 Geometric Topology +1603.07096 Mesoscale and Nanoscale Physics +1603.07420 +1603.07704 Artificial Intelligence +1603.08804 Statistical Mechanics +1604.01117 +1604.01330 Mesoscale and Nanoscale Physics +1604.01893 Theory +1604.02879 Formal Languages and Automata Theory +1604.03459 Rings and Algebras +1604.05614 Geometric Topology +1605.00804 Space Physics +1605.01284 Astrophysics of Galaxies +1605.02333 Cosmology and Nongalactic Astrophysics +1605.04164 +1605.04204 +1605.05090 Rings and Algebras +1605.05797 Social and Information Networks +1605.06311 Computation +1605.08311 Information Theory +1605.08609 Atomic Physics +1605.08885 Algebraic Geometry +1605.09460 History and Philosophy of Physics +1605.09478 Soft Condensed Matter +1605.09707 Astrophysics of Galaxies +1606.01442 Probability +1606.01681 Strongly Correlated Electrons +1606.02683 Materials Science +1606.03183 History and Philosophy of Physics +1606.04260 +1606.04729 +1606.06472 Computer Vision and Pattern Recognition +1606.08949 Metric Geometry +1607.00093 Numerical Analysis +1607.01210 Distributed, Parallel, and Cluster Computing +1607.01510 +1607.02373 Phenomenology +1607.04277 High Energy Astrophysical Phenomena +1607.04667 Materials Science +1607.05070 Plasma Physics +1607.05399 Strongly Correlated Electrons +1607.05573 Applications +1607.05932 Algebraic Geometry +1607.06041 Quantum Algebra +1607.06049 +1607.06527 Soft Condensed Matter +1607.06550 Algebraic Geometry +1607.06869 Earth and Planetary Astrophysics +1607.06878 Human-Computer Interaction +1607.06951 Mesoscale and Nanoscale Physics +1607.07603 Superconductivity +1607.07612 Instrumentation and Detectors +1607.08489 Optimization and Control +1607.08518 Astrophysics of Galaxies +1607.08600 Physics and Society +1607.08602 Number Theory +1607.08864 Computation and Language +1608.00186 Solar and Stellar Astrophysics +1608.00255 Logic +1608.00263 +1608.00329 Computation and Language +1608.00487 +1608.00542 Biological Physics +1608.00589 +1608.00641 Computer Vision and Pattern Recognition +1608.00678 Cryptography and Security +1608.00841 Computation and Language +1608.00844 Optimization and Control +1608.00874 Methodology +1608.00967 Cosmology and Nongalactic Astrophysics +1608.00968 Classical Physics +1608.00969 Astrophysics of Galaxies +1608.00973 Astrophysics of Galaxies +1608.00981 Disordered Systems and Neural Networks +1608.00985 Populations and Evolution +1608.00988 Materials Science +1608.00989 Programming Languages +1608.00991 Group Theory +1608.00993 Materials Science +1608.00995 Instrumentation and Detectors +1608.01004 Instrumentation and Methods for Astrophysics +1608.01009 Distributed, Parallel, and Cluster Computing +1608.01011 +1608.01012 High Energy Astrophysical Phenomena +1608.01013 Databases +1608.01016 Probability +1608.01017 Computer Vision and Pattern Recognition +1608.01018 Computation and Language +1608.01019 Distributed, Parallel, and Cluster Computing +1608.01021 Networking and Internet Architecture +1608.01022 Combinatorics +1608.01023 Performance +1608.01024 Computer Vision and Pattern Recognition +1608.01025 Combinatorics +1608.01026 Computer Vision and Pattern Recognition +1608.01027 Combinatorics +1608.01031 Data Structures and Algorithms +1608.01034 Phenomenology +1608.01036 Data Structures and Algorithms +1608.01039 Computer Science and Game Theory +1608.01040 Combinatorics +1608.01042 Solar and Stellar Astrophysics +1608.01044 Superconductivity +1608.01045 Materials Science +1608.01047 +1608.01049 Computational Physics +1608.01051 Operator Algebras +1608.01052 +1608.01054 Solar and Stellar Astrophysics +1608.01057 Solar and Stellar Astrophysics +1608.01058 Materials Science +1608.01063 Plasma Physics +1608.01064 Plasma Physics +1608.01065 Functional Analysis +1608.01068 Information Retrieval +1608.01071 Disordered Systems and Neural Networks +1608.01072 Learning +1608.01074 Computer Vision and Pattern Recognition +1608.01077 Materials Science +1608.01078 Materials Science +1608.01079 Computer Vision and Pattern Recognition +1608.01081 Information Theory +1608.01082 Computer Vision and Pattern Recognition +1608.01084 Computation and Language +1608.01085 Exactly Solvable and Integrable Systems +1608.01086 +1608.01088 +1608.01092 Operator Algebras +1608.01094 Superconductivity +1608.01096 Strongly Correlated Electrons +1608.01102 Graphics +1608.01103 Statistical Finance +1608.01107 Differential Geometry +1608.01112 Category Theory +1608.01113 Networking and Internet Architecture +1608.01115 Dynamical Systems +1608.01116 Dynamical Systems +1608.01117 Networking and Internet Architecture +1608.01118 Machine Learning +1608.01120 Networking and Internet Architecture +1608.01122 +1608.01123 Analysis of PDEs +1608.01125 Computational Physics +1608.01127 Robotics +1608.01128 Systems and Control +1608.01129 Probability +1608.01130 Strongly Correlated Electrons +1608.01132 Solar and Stellar Astrophysics +1608.01133 Probability +1608.01135 +1608.01136 Strongly Correlated Electrons +1608.01140 Computational Geometry +1608.01141 +1608.01143 Probability +1608.01144 Combinatorics +1608.01145 Probability +1608.01146 Chemical Physics +1608.01148 Category Theory +1608.01149 Statistical Mechanics +1608.01150 Differential Geometry +1608.01152 Number Theory +1608.01153 Functional Analysis +1608.01154 Physics and Society +1608.01155 High Energy Astrophysical Phenomena +1608.01156 Representation Theory +1608.01158 Combinatorics +1608.01160 Instrumentation and Detectors +1608.01164 Numerical Analysis +1608.01166 Materials Science +1608.01167 Optimization and Control +1608.01172 Information Theory +1608.01173 Logic +1608.01176 Dynamical Systems +1608.01179 Neurons and Cognition +1608.01181 +1608.01187 High Energy Astrophysical Phenomena +1608.01189 Combinatorics +1608.01190 Superconductivity +1608.01191 Mesoscale and Nanoscale Physics +1608.01199 Dynamical Systems +1608.01201 Methodology +1608.01202 Earth and Planetary Astrophysics +1608.01204 Superconductivity +1608.01206 Algebraic Topology +1608.01208 Solar and Stellar Astrophysics +1608.01212 Artificial Intelligence +1608.01216 Geophysics +1608.01220 Optics +1608.01223 Astrophysics of Galaxies +1608.01224 Experiment +1608.01225 Hardware Architecture +1608.01226 Computational Physics +1608.01228 +1608.01230 Learning +1608.01233 Probability +1608.01235 Numerical Analysis +1608.01236 Spectral Theory +1608.01237 Soft Condensed Matter +1608.01239 Representation Theory +1608.01242 Solar and Stellar Astrophysics +1608.01243 Earth and Planetary Astrophysics +1608.01244 Computer Science and Game Theory +1608.01246 Number Theory +1608.01251 High Energy Astrophysical Phenomena +1608.01252 Statistical Mechanics +1608.01253 +1608.01254 Logic +1608.01255 Rings and Algebras +1608.01259 Classical Analysis and ODEs +1608.01261 Fluid Dynamics +1608.01262 Computational Physics +1608.01264 Learning +1608.01267 Information Theory +1608.01268 Formal Languages and Automata Theory +1608.01272 Superconductivity +1608.01274 Applications +1608.01275 Data Structures and Algorithms +1608.01276 Computer Vision and Pattern Recognition +1608.01278 Combinatorics +1608.01281 Learning +1608.01284 +1608.01291 Physics and Society +1608.01292 Combinatorics +1608.01294 Combinatorics +1608.01295 Earth and Planetary Astrophysics +1608.01298 Computation and Language +1608.01302 Artificial Intelligence +1608.01303 Symplectic Geometry +1608.01304 Symplectic Geometry +cond-mat/0112069 Statistical Mechanics +cs/0510032 Information Theory +math/0410493 Differential Geometry +1001.0023 Algebraic Geometry +1006.4069 High Energy Astrophysical Phenomena +1011.3377 Strongly Correlated Electrons +1209.2289 +1212.6949 Probability +1306.3134 Multiagent Systems +1307.2824 Portfolio Management +1309.5665 Representation Theory +1312.7547 Optimization and Control +1401.1418 +1401.3319 +1402.0489 +1404.2051 Astrophysics of Galaxies +1404.2285 Astrophysics of Galaxies +1404.2373 +1404.2676 Materials Science +1404.3013 Phenomenology +1404.3073 Phenomenology +1404.3595 +1404.4257 +1404.4336 Data Analysis, Statistics and Probability +1404.5100 Optimization and Control +1404.5573 Combinatorics +1404.6026 Optimization and Control +1404.6306 Materials Science +1404.6553 Differential Geometry +1404.7089 +1404.7262 Mesoscale and Nanoscale Physics +1404.7479 Data Structures and Algorithms +1406.7287 Probability +1407.7201 Algebraic Topology +1409.1040 Superconductivity +1410.5040 Information Theory +1410.6531 Statistical Mechanics +1411.1282 Physics and Society +1411.1919 Data Structures and Algorithms +1411.7635 Neurons and Cognition +1411.7661 Number Theory +1501.00924 Numerical Analysis +1501.03142 Numerical Analysis +1501.03928 Numerical Analysis +1501.04059 Representation Theory +1501.06235 Combinatorics +1501.06646 Numerical Analysis +1503.01160 Physics and Society +1503.04058 Physics and Society +1503.04531 +1503.07926 Probability +1504.00020 +1504.02921 Systems and Control +1504.07698 Materials Science +1505.06777 +1505.06975 Dynamical Systems +1506.00231 Information Theory +1506.01332 Methodology +1506.02562 Instrumentation and Methods for Astrophysics +1507.00434 Optics +1507.02362 Combinatorics +1507.03004 Probability +1507.05111 Physics and Society +1507.07410 Representation Theory +1507.07644 Analysis of PDEs +1508.07078 Phenomenology +1509.03202 Strongly Correlated Electrons +1509.04030 Optics +1509.07254 +1509.09013 Numerical Analysis +1510.01273 Theory +1510.02450 +1510.03109 Mesoscale and Nanoscale Physics +1510.05097 Portfolio Management +1510.05709 Statistical Mechanics +1510.06362 Combinatorics +1510.06378 Numerical Analysis +1510.06677 +1510.07314 Mesoscale and Nanoscale Physics +1510.08057 +1510.08185 Mesoscale and Nanoscale Physics +1510.08393 Logic in Computer Science +1511.00727 +1511.01111 Data Structures and Algorithms +1511.01541 Mesoscale and Nanoscale Physics +1511.03147 +1511.03525 Theory +1511.04351 Applications +1511.04830 Earth and Planetary Astrophysics +1511.06049 Learning +1511.06320 Risk Management +1511.07673 Subcellular Processes +1512.03797 Strongly Correlated Electrons +1512.04119 Phenomenology +1512.05329 +1512.05574 Molecular Networks +1512.06626 Numerical Analysis +1601.00020 Astrophysics of Galaxies +1601.00067 Instrumentation and Methods for Astrophysics +1601.00334 Neurons and Cognition +1601.00377 Instrumentation and Methods for Astrophysics +1601.00711 Biological Physics +1601.00999 Analysis of PDEs +1601.02329 Solar and Stellar Astrophysics +1601.02330 Differential Geometry +1601.02500 Probability +1601.02835 Phenomenology +1601.03930 +1601.05846 Algebraic Geometry +1601.06618 +1601.07072 Phenomenology +1601.07543 Quantum Gases +1602.00278 Theory +1602.00488 +1602.01156 Logic +1602.02474 Optics +1602.03878 +1602.04527 Functional Analysis +1602.05841 +1602.06271 +1602.07419 Geometric Topology +1602.07429 Optics +1602.07575 Phenomenology +1602.07625 Neurons and Cognition +1602.07718 Fluid Dynamics +1602.07819 Optimization and Control +1602.08497 Cosmology and Nongalactic Astrophysics +1602.08996 Classical Analysis and ODEs +1603.00211 Optimization and Control +1603.00538 Theory +1603.01027 Populations and Evolution +1603.01983 Discrete Mathematics +1603.01991 Information Theory +1603.03245 +1603.03333 Phenomenology +1603.03780 Superconductivity +1603.04554 Pattern Formation and Solitons +1603.05250 Theory +1603.06304 Materials Science +1603.06409 Strongly Correlated Electrons +1603.06908 Mesoscale and Nanoscale Physics +1603.07000 Phenomenology +1603.07009 Information Theory +1603.07256 Logic in Computer Science +1603.07297 Superconductivity +1603.07701 Optimization and Control +1603.08144 Physics and Society +1603.08503 General Physics +1603.09159 Functional Analysis +1603.09740 Probability +1604.00176 Materials Science +1604.00524 Representation Theory +1604.01356 Earth and Planetary Astrophysics +1604.01957 Chemical Physics +1604.02321 High Energy Astrophysical Phenomena +1604.03326 Mesoscale and Nanoscale Physics +1604.03476 +1604.03696 Theory +1604.03917 Disordered Systems and Neural Networks +1604.05291 Theory +1604.05320 Phenomenology +1604.05439 Operator Algebras +1604.05523 Strongly Correlated Electrons +1604.06175 Statistical Mechanics +1604.06193 Phenomenology +1604.06580 Computer Science and Game Theory +1604.06908 +1604.07249 Soft Condensed Matter +1604.07448 Theory +1604.07650 Phenomenology +1604.07924 Information Theory +1604.08183 Optimization and Control +1604.08246 Information Theory +1604.08348 Logic in Computer Science +1604.08454 +1604.08647 Representation Theory +1604.08740 Learning +1604.08741 Theory +1604.08832 Statistical Mechanics +1605.00356 Statistical Mechanics +1605.00419 Information Theory +1605.00935 +1605.01159 +1605.01255 Mesoscale and Nanoscale Physics +1605.02482 Strongly Correlated Electrons +1605.02570 Data Analysis, Statistics and Probability +1605.03053 Cosmology and Nongalactic Astrophysics +1605.03604 +1605.03685 Disordered Systems and Neural Networks +1605.04172 Phenomenology +1605.04320 Cosmology and Nongalactic Astrophysics +1605.04398 +1605.04854 Materials Science +1605.04946 +1605.05378 Materials Science +1605.06313 Phenomenology +1605.06372 Phenomenology +1605.06713 Phenomenology +1605.07175 Phenomenology +1605.07299 Functional Analysis +1605.07523 +1605.09476 +1605.09760 Quantum Gases +1606.01789 Mesoscale and Nanoscale Physics +1606.02277 Quantum Gases +1606.02553 Statistical Mechanics +1606.02934 High Energy Astrophysical Phenomena +1606.02955 General Physics +1606.03015 Solar and Stellar Astrophysics +1606.03195 Lattice +1606.03205 Statistical Mechanics +1606.03762 Strongly Correlated Electrons +1606.03878 +1606.04246 +1606.04807 +1606.05329 Phenomenology +1606.05385 Mathematical Software +1606.05610 Phenomenology +1606.06107 Fluid Dynamics +1606.06341 Theory +1606.06634 Statistical Mechanics +1606.06945 Earth and Planetary Astrophysics +1606.07297 Mesoscale and Nanoscale Physics +1606.07928 Lattice +1606.07954 High Energy Astrophysical Phenomena +1606.08071 +1606.08114 Instrumentation and Detectors +1606.08554 +1606.08780 Strongly Correlated Electrons +1606.08787 Exactly Solvable and Integrable Systems +1607.00130 +1607.01010 Neurons and Cognition +1607.01316 Theory +1607.01351 +1607.01440 Phenomenology +1607.01652 +1607.02099 Phenomenology +1607.02158 Phenomenology +1607.02406 Quantum Gases +1607.02517 Superconductivity +1607.02967 Theory +1607.03185 Lattice +1607.03219 Phenomenology +1607.03399 Numerical Analysis +1607.03710 Mesoscale and Nanoscale Physics +1607.03782 +1607.03939 Phenomenology +1607.04178 Strongly Correlated Electrons +1607.04697 +1607.04952 Phenomenology +1607.05207 Materials Science +1607.05261 Theory +1607.05275 Quantum Gases +1607.05563 Astrophysics of Galaxies +1607.05631 +1607.05670 Plasma Physics +1607.05751 Phenomenology +1607.06092 Quantum Gases +1607.06112 Instrumentation and Detectors +1607.06176 Functional Analysis +1607.06578 +1607.06703 Materials Science +1607.06925 +1607.07089 Phenomenology +1607.07434 Instrumentation and Detectors +1607.07460 Theory +1607.07560 Atomic Physics +1607.07569 Differential Geometry +1607.07876 Phenomenology +1607.08095 Statistical Mechanics +1607.08643 Astrophysics of Galaxies +1607.08813 Superconductivity +1608.00238 Phenomenology +1608.00468 Phenomenology +1608.00469 +1608.00894 Mesoscale and Nanoscale Physics +1608.00918 Earth and Planetary Astrophysics +1608.01397 Solar and Stellar Astrophysics +1608.02086 Operator Algebras +1608.02244 +1608.03076 +1608.03296 Disordered Systems and Neural Networks +1608.03303 Quantum Gases +1608.03313 Computational Complexity +1608.03483 Mesoscale and Nanoscale Physics +1608.03792 Solar and Stellar Astrophysics +1608.04443 Materials Science +1608.04574 High Energy Astrophysical Phenomena +1608.04657 Fluid Dynamics +1608.04839 Learning +1608.04860 Atomic Physics +1608.04900 Theory +1608.04988 Cosmology and Nongalactic Astrophysics +1608.05037 +1608.05063 High Energy Astrophysical Phenomena +1608.05083 Quantum Gases +1608.05139 Cosmology and Nongalactic Astrophysics +1608.05685 Materials Science +1608.05702 Experiment +1608.06246 +1608.06263 Earth and Planetary Astrophysics +1608.06289 Astrophysics of Galaxies +1608.06518 High Energy Astrophysical Phenomena +1608.06796 Astrophysics of Galaxies +1608.06831 +1608.07057 Astrophysics of Galaxies +1608.07101 Solar and Stellar Astrophysics +1608.07248 Quantum Gases +1608.07331 Soft Condensed Matter +1608.07442 Phenomenology +1608.07503 Mesoscale and Nanoscale Physics +1608.07589 +1608.07661 Solar and Stellar Astrophysics +1608.07826 Theory +1608.08141 Combinatorics +1608.08776 Astrophysics of Galaxies +1608.08778 Instrumentation and Detectors +1609.00207 Theory +1609.00777 Computation and Language +1609.01363 Solar and Stellar Astrophysics +1609.01670 Computer Vision and Pattern Recognition +1609.01818 Astrophysics of Galaxies +1609.02086 Algebraic Topology +1609.02124 Phenomenology +1609.02219 +1609.02549 Computation and Language +1609.02829 +1609.03355 Information Theory +1609.03421 Astrophysics of Galaxies +1609.03426 Learning +1609.03736 Quantum Gases +1609.03807 Cosmology and Nongalactic Astrophysics +1609.04133 Phenomenology +1609.04336 Theory +1609.04599 Instrumentation and Methods for Astrophysics +1609.04820 Astrophysics of Galaxies +1609.04855 Human-Computer Interaction +1609.05870 Theory +1609.06078 Statistical Mechanics +1609.06291 +1609.06853 Formal Languages and Automata Theory +1609.06883 Solar and Stellar Astrophysics +1609.07920 Phenomenology +1609.08518 Strongly Correlated Electrons +1609.08667 Computation and Language +1609.09017 +1610.00009 Phenomenology +1610.00655 Materials Science +1610.00724 Theory +1610.01135 Optics +1610.01473 +1610.02170 Optimization and Control +1610.02344 +1610.02487 +1610.02537 +1610.02728 Networking and Internet Architecture +1610.03017 Computation and Language +1610.03480 Social and Information Networks +1610.04099 Geometric Topology +1610.04412 Theory +1610.05090 +1610.05322 Astrophysics of Galaxies +1610.05337 Strongly Correlated Electrons +1610.05346 Analysis of PDEs +1610.05748 Number Theory +1610.06074 Quantum Gases +1610.06091 Materials Science +1610.06796 +1610.06906 Computer Vision and Pattern Recognition +1610.06939 Astrophysics of Galaxies +1610.07816 Logic +1610.08249 Statistics Theory +1610.08366 Mesoscale and Nanoscale Physics +1610.08439 +1610.08471 Earth and Planetary Astrophysics +1610.08694 Computation and Language +1610.08695 +1610.08715 Probability +1610.08815 Computation and Language +1610.09033 Machine Learning +1610.09120 Cosmology and Nongalactic Astrophysics +1610.09126 Fluid Dynamics +1610.09160 Social and Information Networks +1610.09264 Atomic and Molecular Clusters +1610.09283 +1610.09398 Phenomenology +1610.09508 Experiment +1610.09518 Lattice +1610.09533 Earth and Planetary Astrophysics +1610.09559 Learning +1610.09706 Number Theory +1610.09731 Probability +1610.09736 Computer Vision and Pattern Recognition +1610.09746 +1610.09805 +1610.09855 Lattice +1610.09935 Computation and Language +1610.09947 +1610.09987 Differential Geometry +1610.09991 Computational Engineering, Finance, and Science +1610.09998 Probability +1610.10035 Subcellular Processes +1611.00001 Theory +1611.00005 Astrophysics of Galaxies +1611.00010 Astrophysics of Galaxies +1611.00012 Earth and Planetary Astrophysics +1611.00014 Cosmology and Nongalactic Astrophysics +1611.00016 Theory +1611.00019 Lattice +1611.00022 Lattice +1611.00023 Strongly Correlated Electrons +1611.00027 Computation and Language +1611.00028 +1611.00029 Data Structures and Algorithms +1611.00030 Methodology +1611.00031 Strongly Correlated Electrons +1611.00033 Neurons and Cognition +1611.00034 Computational Physics +1611.00035 Machine Learning +1611.00038 Computational Physics +1611.00040 Computation +1611.00043 Cosmology and Nongalactic Astrophysics +1611.00044 Information Theory +1611.00047 Strongly Correlated Electrons +1611.00052 Data Structures and Algorithms +1611.00054 Molecular Networks +1611.00055 Digital Libraries +1611.00059 Materials Science +1611.00060 +1611.00062 Quantum Gases +1611.00066 Geometric Topology +1611.00067 Dynamical Systems +1611.00069 Differential Geometry +1611.00070 Instrumentation and Methods for Astrophysics +1611.00071 Quantum Algebra +1611.00073 Atmospheric and Oceanic Physics +1611.00075 Materials Science +1611.00076 +1611.00078 Mesoscale and Nanoscale Physics +1611.00079 High Energy Astrophysical Phenomena +1611.00080 +1611.00081 Algebraic Geometry +1611.00084 Combinatorics +1611.00088 Astrophysics of Galaxies +1611.00090 Optimization and Control +1611.00092 Dynamical Systems +1611.00095 Soft Condensed Matter +1611.00096 Networking and Internet Architecture +1611.00098 Group Theory +1611.00100 Mesoscale and Nanoscale Physics +1611.00102 Numerical Analysis +1611.00103 Quantitative Methods +1611.00104 +1611.00105 Instrumentation and Methods for Astrophysics +1611.00106 Computational Geometry +1611.00107 Classical Analysis and ODEs +1611.00108 Solar and Stellar Astrophysics +1611.00114 Representation Theory +1611.00115 Functional Analysis +1611.00119 Information Theory +1611.00121 Materials Science +1611.00123 Information Theory +1611.00124 +1611.00126 Computation and Language +1611.00127 Numerical Analysis +1611.00129 Data Structures and Algorithms +1611.00133 Solar and Stellar Astrophysics +1611.00134 Instrumentation and Methods for Astrophysics +1611.00135 Computer Vision and Pattern Recognition +1611.00136 +1611.00137 Computer Vision and Pattern Recognition +1611.00138 Learning +1611.00143 Differential Geometry +1611.00144 Learning +1611.00146 Optimization and Control +1611.00147 Phenomenology +1611.00148 Computer Vision and Pattern Recognition +1611.00150 Theory +1611.00151 Instrumentation and Detectors +1611.00154 Numerical Analysis +1611.00155 Atomic Physics +1611.00156 General Finance +1611.00157 Theory +1611.00160 Materials Science +1611.00162 Differential Geometry +1611.00163 Differential Geometry +1611.00164 Numerical Analysis +1611.00165 Instrumentation and Detectors +1611.00167 Earth and Planetary Astrophysics +1611.00169 Information Theory +1611.00175 Learning +1611.00176 Logic +1611.00178 Phenomenology +1611.00179 Computation and Language +1611.00180 Other Condensed Matter +1611.00181 Analysis of PDEs +1611.00182 +1611.00183 Artificial Intelligence +1611.00184 Analysis of PDEs +1611.00185 Instrumentation and Detectors +1611.00187 Astrophysics of Galaxies +1611.00188 +1611.00192 Instrumentation and Detectors +1611.00195 Lattice +1611.00200 Solar and Stellar Astrophysics +1611.00201 Robotics +1611.00202 Group Theory +1611.00203 Methodology +1611.00205 Quantum Gases +1611.00208 +1611.00209 Materials Science +1611.00211 Networking and Internet Architecture +1611.00212 Physics and Society +1611.00214 Probability +1611.00215 Analysis of PDEs +1611.00216 Combinatorics +1611.00217 Digital Libraries +1611.00218 Computer Vision and Pattern Recognition +1611.00220 Phenomenology +1611.00221 Operator Algebras +1611.00224 +1611.00228 Other Computer Science +1611.00229 Differential Geometry +1611.00230 Robotics +1611.00233 Probability +1611.00234 Analysis of PDEs +1611.00235 Information Theory +1611.00238 Other Condensed Matter +1611.00239 Superconductivity +1611.00242 Numerical Analysis +1611.00244 Geophysics +1611.00246 Combinatorics +1611.00248 Commutative Algebra +1611.00249 Algebraic Topology +1611.00250 +1611.00251 Computational Physics +1611.00254 Social and Information Networks +1611.00255 Learning +1611.00257 Mesoscale and Nanoscale Physics +1611.00258 Combinatorics +1611.00259 Populations and Evolution +1611.00260 Neural and Evolutionary Computing +1611.00261 Machine Learning +1611.00266 Numerical Analysis +1611.00267 Classical Analysis and ODEs +1611.00268 Atmospheric and Oceanic Physics +1611.00270 Information Theory +1611.00271 Programming Languages +1611.00272 +1611.00273 Materials Science +1611.00274 Artificial Intelligence +1611.00275 Lattice +1611.00276 Classical Physics +1611.00277 Information Theory +1611.00280 Lattice +1611.00281 Analysis of PDEs +1611.00282 Lattice +1611.00286 Geometric Topology +1611.00288 Numerical Analysis +1611.00289 Networking and Internet Architecture +1611.00290 Combinatorics +1611.00291 Social and Information Networks +1611.00296 Instrumentation and Detectors +1611.00300 Disordered Systems and Neural Networks +1611.00301 Learning +1611.00302 Combinatorics +1611.00304 Analysis of PDEs +1611.00305 Quantum Algebra +1611.00306 Cryptography and Security +1611.00307 Geophysics +1611.00312 Information Theory +1611.00313 Quantitative Methods +1611.00314 Group Theory +1611.00315 Computers and Society +1611.00316 Computational Finance +1611.00317 Other Computer Science +1611.00320 +1611.00321 Information Theory +1611.00322 Differential Geometry +1611.00323 Software Engineering +1611.00331 Robotics +1611.00335 Atomic Physics +1611.00337 Group Theory +1611.00338 Experiment +1611.00339 Systems and Control +1611.00347 Optimization and Control +1611.00350 Social and Information Networks +1611.00351 Probability +1611.00354 Computation and Language +1611.00355 +astro-ph/0302436 +cond-mat/0402363 Strongly Correlated Electrons +cond-mat/0502555 Strongly Correlated Electrons +quant-ph/0207120 +0811.1712 +0907.5332 Analysis of PDEs +0907.5334 Analysis of PDEs +1001.0624 Logic +1003.0985 Category Theory +1004.0820 General Physics +1006.0894 Logic +1006.5526 Logic +1007.2426 Logic +1007.3692 Logic +1011.4337 Cosmology and Nongalactic Astrophysics +1012.2451 Algebraic Geometry +1101.1947 Logic +1102.2334 Analysis of PDEs +1102.3237 Cosmology and Nongalactic Astrophysics +1103.1416 Combinatorics +1103.2625 Algebraic Geometry +1105.4135 Logic +1107.2284 Logic in Computer Science +1108.6315 Logic +1109.2246 Logic +1109.5437 Logic +1112.1890 Logic +1112.4784 Logic +1112.5237 Logic +1112.6331 Logic +1201.5799 Logic +1203.4026 Logic +1204.3610 Number Theory +1204.5860 High Energy Astrophysical Phenomena +1205.0826 Dynamical Systems +1205.3351 Analysis of PDEs +1205.3791 Theory +1206.2713 Logic +1206.6032 Logic +1207.2533 Logic +1207.4857 Quantum Algebra +1207.5433 Algebraic Geometry +1207.6434 Logic +1208.2858 Logic +1208.2991 Logic +1210.3787 Logic +1211.1245 Analysis of PDEs +1211.1626 Statistical Mechanics +1211.5547 Differential Geometry +1211.6165 Group Theory +1211.7187 +1212.5796 Combinatorics +1212.6925 Computational Complexity +1301.0712 Number Theory +1301.4102 Algebraic Geometry +1301.6911 Probability +1302.5446 Logic +1302.6964 Methodology +1303.3252 Operator Algebras +1303.3914 Functional Analysis +1303.4279 Differential Geometry +1304.0246 Probability +1304.0670 +1304.1199 Applications +1304.5687 Analysis of PDEs +1306.1056 Classical Analysis and ODEs +1306.1964 Quantum Gases +1306.2797 Probability +1306.3930 Statistics Theory +1307.0604 Logic +1307.3730 Statistics Theory +1307.6396 Logic +1307.6674 Complex Variables +1308.1599 High Energy Astrophysical Phenomena +1308.3602 Probability +1309.3553 Geometric Topology +1309.7560 Classical Analysis and ODEs +1310.3148 Combinatorics +1311.4366 +1311.6307 Algebraic Geometry +1312.1045 Analysis of PDEs +1312.4284 +1312.7216 +1401.0054 Lattice +1401.5204 Algebraic Geometry +1401.7256 Representation Theory +1402.0272 Combinatorics +1402.1929 Number Theory +1402.5591 Probability +1403.0542 Number Theory +1403.1166 Optimization and Control +1403.3049 Combinatorics +1403.3639 +1403.6792 Algebraic Geometry +1403.7281 Dynamical Systems +1404.0015 Subcellular Processes +1404.3306 Combinatorics +1404.4227 Differential Geometry +1405.4007 Strongly Correlated Electrons +1405.6070 Methodology +1405.6865 Analysis of PDEs +1405.7938 Group Theory +1406.1858 Dynamical Systems +1406.6528 Group Theory +1407.1299 Strongly Correlated Electrons +1407.1518 Mesoscale and Nanoscale Physics +1407.1570 Strongly Correlated Electrons +1407.3108 +1407.3789 Theory +1407.4307 Symplectic Geometry +1407.6267 Optimization and Control +1408.3310 Data Structures and Algorithms +1408.4488 Group Theory +1408.6712 Analysis of PDEs +1409.0270 +1409.2971 Complex Variables +1409.4587 Multimedia +1409.5094 Combinatorics +1409.5325 Theory +1409.5738 Cosmology and Nongalactic Astrophysics +1409.5746 Astrophysics of Galaxies +1409.6574 Atomic Physics +1409.6728 Astrophysics of Galaxies +1410.0212 Algebraic Geometry +1410.1846 General Physics +1410.2477 Methodology +1410.5634 +1410.7051 Group Theory +1410.8748 Differential Geometry +1411.2271 Astrophysics of Galaxies +1411.3914 +1411.5711 Atomic Physics +1411.7129 +1411.7214 Differential Geometry +1412.1997 +1412.2853 Dynamical Systems +1501.00922 Astrophysics of Galaxies +1501.01657 Networking and Internet Architecture +1501.01776 Statistical Mechanics +1501.02358 Algebraic Topology +1501.04537 Computer Vision and Pattern Recognition +1501.05564 Materials Science +1501.06822 Analysis of PDEs +1501.07491 Operator Algebras +1502.03136 Populations and Evolution +1502.04123 Astrophysics of Galaxies +1502.04624 Mesoscale and Nanoscale Physics +1502.05268 +1502.05547 Rings and Algebras +1502.05686 Experiment +1503.00396 Superconductivity +1503.02457 Superconductivity +1503.04223 Strongly Correlated Electrons +1503.05267 Cosmology and Nongalactic Astrophysics +1503.06012 Cosmology and Nongalactic Astrophysics +1503.07861 Theory +1503.08580 Theory +1504.00050 Physics and Society +1504.01932 Superconductivity +1504.04182 Theory +1504.05825 Fluid Dynamics +1504.05925 Differential Geometry +1504.06443 Computational Physics +1505.00105 Optics +1505.00735 Phenomenology +1505.01492 Theory +1505.02142 Neurons and Cognition +1505.02514 Combinatorics +1505.02684 Disordered Systems and Neural Networks +1505.02779 Astrophysics of Galaxies +1505.02970 Mesoscale and Nanoscale Physics +1505.03413 Materials Science +1505.05214 Soft Condensed Matter +1505.05255 Complex Variables +1505.06006 Phenomenology +1505.07034 Mesoscale and Nanoscale Physics +1505.07112 High Energy Astrophysical Phenomena +1506.00111 +1506.02297 Atomic Physics +1506.02526 High Energy Astrophysical Phenomena +1506.04630 Differential Geometry +1506.05124 High Energy Astrophysical Phenomena +1506.07142 Materials Science +1506.07181 Theory +1506.08151 Chemical Physics +1506.08729 Strongly Correlated Electrons +1506.08819 Strongly Correlated Electrons +1506.08950 Functional Analysis +1507.00751 Populations and Evolution +1507.01420 Statistical Mechanics +1507.01462 Dynamical Systems +1507.01594 Phenomenology +1507.02562 Molecular Networks +1507.02688 +1507.03202 Strongly Correlated Electrons +1507.03364 Numerical Analysis +1507.04503 Phenomenology +1507.04613 Strongly Correlated Electrons +1507.04639 Atomic Physics +1507.05475 Classical Analysis and ODEs +1507.06375 Theory +1507.06705 Phenomenology +1507.07181 Differential Geometry +1507.07452 Cosmology and Nongalactic Astrophysics +1507.08248 Quantum Gases +1507.08290 Strongly Correlated Electrons +1507.08428 Dynamical Systems +1507.08614 Phenomenology +1507.08782 +1508.00132 Analysis of PDEs +1508.00296 Strongly Correlated Electrons +1508.00441 +1508.02504 Cosmology and Nongalactic Astrophysics +1508.03472 Quantum Gases +1508.04777 Phenomenology +1508.04995 Statistical Mechanics +1508.05097 Disordered Systems and Neural Networks +1508.05110 Quantum Gases +1508.05111 Quantum Gases +1508.06067 Soft Condensed Matter +1508.06470 Statistical Mechanics +1508.06849 +1508.06974 Strongly Correlated Electrons +1508.07164 Quantum Gases +1508.07188 +1508.07250 +1508.07253 +1508.07318 Phenomenology +1508.07669 Statistical Mechanics +1509.00005 Quantum Gases +1509.00294 Experiment +1509.01110 Phenomenology +1509.01228 High Energy Astrophysical Phenomena +1509.01315 Statistical Mechanics +1509.01667 +1509.02329 Chaotic Dynamics +1509.02376 Logic +1509.02406 Phenomenology +1509.02677 Mesoscale and Nanoscale Physics +1509.02967 Phenomenology +1509.03632 Astrophysics of Galaxies +1509.03826 Quantum Gases +1509.04009 Mesoscale and Nanoscale Physics +1509.04800 Statistical Mechanics +1509.05627 +1509.06425 Algebraic Geometry +1509.06821 Phenomenology +1509.07664 Classical Analysis and ODEs +1509.08213 +1509.08472 Theory +1509.08817 +1509.09006 Mesoscale and Nanoscale Physics +1509.09024 +1509.09242 Phenomenology +1510.00173 Mesoscale and Nanoscale Physics +1510.00584 Mesoscale and Nanoscale Physics +1510.01182 Mesoscale and Nanoscale Physics +1510.01250 Mesoscale and Nanoscale Physics +1510.01381 +1510.01790 Solar and Stellar Astrophysics +1510.01817 Mesoscale and Nanoscale Physics +1510.01974 Strongly Correlated Electrons +1510.02110 Phenomenology +1510.02164 +1510.03271 Programming Languages +1510.03441 Lattice +1510.03442 Astrophysics of Galaxies +1510.03471 +1510.03751 +1510.03756 +1510.03901 Phenomenology +1510.04520 Superconductivity +1510.04990 +1510.05165 Solar and Stellar Astrophysics +1510.05206 Atomic Physics +1510.05428 Lattice +1510.05680 Astrophysics of Galaxies +1510.05908 Solar and Stellar Astrophysics +1510.06314 Solar and Stellar Astrophysics +1510.06483 +1510.06504 Phenomenology +1510.06777 Mesoscale and Nanoscale Physics +1510.07446 Lattice +1510.07705 Plasma Physics +1510.07840 Methodology +1510.08079 Logic in Computer Science +1510.08453 Earth and Planetary Astrophysics +1510.08883 Information Theory +1510.09210 +1511.00014 High Energy Astrophysical Phenomena +1511.00246 Number Theory +1511.00295 Algebraic Topology +1511.00751 Soft Condensed Matter +1511.01300 Astrophysics of Galaxies +1511.01876 Mesoscale and Nanoscale Physics +1511.02200 Experiment +1511.02215 +1511.02371 Phenomenology +1511.03047 Strongly Correlated Electrons +1511.03394 +1511.03598 Strongly Correlated Electrons +1511.03642 Superconductivity +1511.03963 Subcellular Processes +1511.04029 Lattice +1511.05095 Theory +1511.05209 Phenomenology +1511.05248 Differential Geometry +1511.05312 K-Theory and Homology +1511.05443 Mesoscale and Nanoscale Physics +1511.05486 Astrophysics of Galaxies +1511.06428 Learning +1511.06451 Phenomenology +1511.06635 Theory +1511.06678 +1511.06717 Earth and Planetary Astrophysics +1511.06894 Solar and Stellar Astrophysics +1511.06954 Computer Science and Game Theory +1511.07143 Theory +1511.07593 Quantum Gases +1511.07663 Artificial Intelligence +1511.07705 Analysis of PDEs +1511.08209 +1511.08651 +1512.00041 Mesoscale and Nanoscale Physics +1512.00288 Chaotic Dynamics +1512.00886 Phenomenology +1512.00937 Solar and Stellar Astrophysics +1512.01243 Phenomenology +1512.01556 +1512.02165 Mesoscale and Nanoscale Physics +1512.02168 Phenomenology +1512.02409 High Energy Astrophysical Phenomena +1512.03069 Phenomenology +1512.03112 Superconductivity +1512.03356 Strongly Correlated Electrons +1512.03835 Astrophysics of Galaxies +1512.03842 Mesoscale and Nanoscale Physics +1512.04232 +1512.04291 Astrophysics of Galaxies +1512.04789 Optics +1512.05378 Instrumentation and Methods for Astrophysics +1512.05776 Phenomenology +1512.05865 +1512.07085 Strongly Correlated Electrons +1512.07129 Dynamical Systems +1512.07345 Other Condensed Matter +1512.07483 Functional Analysis +1512.08769 Astrophysics of Galaxies +1512.08871 High Energy Astrophysical Phenomena +1601.00291 Astrophysics of Galaxies +1601.00830 Statistical Mechanics +1601.01532 Category Theory +1601.01682 Astrophysics of Galaxies +1601.02183 Instrumentation and Detectors +1601.02545 Statistical Mechanics +1601.03534 Statistical Mechanics +1601.03548 Probability +1601.05120 +1601.06481 Phenomenology +1601.07915 Astrophysics of Galaxies +1601.08217 Astrophysics of Galaxies +1602.00143 +1602.00333 Soft Condensed Matter +1602.00782 Portfolio Management +1602.01025 Solar and Stellar Astrophysics +1602.01041 +1602.01148 Solar and Stellar Astrophysics +1602.01950 Digital Libraries +1602.02035 Phenomenology +1602.02290 Combinatorics +1602.02317 Rings and Algebras +1602.02440 Number Theory +1602.02574 Computers and Society +1602.02644 Learning +1602.02673 Information Theory +1602.02743 Logic in Computer Science +1602.02747 Combinatorics +1602.02748 Functional Analysis +1602.02750 Cosmology and Nongalactic Astrophysics +1602.02764 Theory +1602.02769 Geometric Topology +1602.02772 Theory +1602.02784 Superconductivity +1602.02787 Geometric Topology +1602.02788 Discrete Mathematics +1602.02794 Distributed, Parallel, and Cluster Computing +1602.02795 +1602.02797 Combinatorics +1602.02798 Analysis of PDEs +1602.02800 Optimization and Control +1602.02803 Probability +1602.02807 Optics +1602.02808 Analysis of PDEs +1602.02815 Probability +1602.02822 Computer Vision and Pattern Recognition +1602.02823 Learning +1602.02826 Category Theory +1602.02831 Information Theory +1602.02834 Multimedia +1602.02836 K-Theory and Homology +1602.02837 Analysis of PDEs +1602.02840 +1602.02842 Machine Learning +1602.02847 Computational Engineering, Finance, and Science +1602.02849 Materials Science +1602.02852 Machine Learning +1602.02853 Representation Theory +1602.02854 Statistics Theory +1602.02858 +1602.02859 Classical Analysis and ODEs +1602.02860 Cryptography and Security +1602.02861 Statistics Theory +1602.02862 Neural and Evolutionary Computing +1602.02863 Computational Complexity +1602.02865 Computer Vision and Pattern Recognition +1602.02866 Probability +1602.02868 Systems and Control +1602.02869 Analysis of PDEs +1602.02874 +1602.02877 Earth and Planetary Astrophysics +1602.02880 Soft Condensed Matter +1602.02881 Computer Vision and Pattern Recognition +1602.02882 Statistics Theory +1602.02884 Plasma Physics +1602.02885 Computer Vision and Pattern Recognition +1602.02886 Computational Physics +1602.02887 Learning +1602.02888 Learning +1602.02889 Methodology +1602.02891 Applications +1602.02894 Dynamical Systems +1602.02895 Applications +1602.02898 Applications +1602.02899 Cryptography and Security +1602.02900 Applications +1602.02902 Applications +1602.02905 Statistics Theory +1602.02907 Statistics Theory +1602.02908 Methodology +1602.02911 Information Retrieval +1602.02912 Physics and Society +1602.02916 Combinatorics +1602.02919 Differential Geometry +1602.02932 Number Theory +1602.02937 Materials Science +1602.02938 Computer Vision and Pattern Recognition +1602.02940 Rings and Algebras +1602.02942 Rings and Algebras +1602.02945 Neurons and Cognition +1602.02949 Discrete Mathematics +1602.02950 Learning +1602.02952 Materials Science +1602.02953 Probability +1602.02954 Analysis of PDEs +1602.02955 Differential Geometry +1602.02956 Classical Analysis and ODEs +1602.02958 Geometric Topology +1602.02961 Analysis of PDEs +1602.02982 Computational Engineering, Finance, and Science +1602.02985 Geophysics +1602.02987 Combinatorics +1602.02989 Algebraic Geometry +1602.02993 Classical Analysis and ODEs +1602.02994 Logic +1602.02996 Algebraic Geometry +1602.02998 Representation Theory +1602.02999 Computer Vision and Pattern Recognition +1602.03000 General Physics +1602.03002 Analysis of PDEs +1602.03005 History and Overview +1602.03008 Neurons and Cognition +1602.03009 Algebraic Topology +1602.03010 Earth and Planetary Astrophysics +1602.03013 +1602.03016 Hardware Architecture +1602.03019 +1602.03020 Group Theory +1602.03023 Biological Physics +1602.03024 Mesoscale and Nanoscale Physics +1602.03025 Number Theory +1602.03026 +1602.03027 Machine Learning +1602.03033 Information Theory +1602.03035 Statistical Mechanics +1602.03043 Trading and Market Microstructure +1602.03044 Chaotic Dynamics +1602.03045 Optimization and Control +1602.03048 Machine Learning +1602.03053 Physics and Society +1602.03054 Probability +1602.03055 Cellular Automata and Lattice Gases +1602.03057 +1602.03058 General Physics +1602.03059 Analysis of PDEs +1602.03063 Populations and Evolution +1602.03067 +1602.03068 Solar and Stellar Astrophysics +1602.03069 Classical Physics +1602.03074 +1602.03075 Combinatorics +1602.03077 Rings and Algebras +1602.03078 Functional Analysis +1602.03080 Quantum Algebra +1602.03084 Information Theory +1602.03089 Accelerator Physics +1602.03091 Information Theory +1602.03092 Geometric Topology +1602.03093 Populations and Evolution +1602.03094 Numerical Analysis +1602.03095 Hardware Architecture +1602.03098 Combinatorics +1602.03100 Other Computer Science +1602.03101 Information Retrieval +1602.03103 Physics and Society +1602.03104 Robotics +1602.03106 Optimization and Control +1602.03107 Probability +1602.03109 Combinatorics +1602.03110 Social and Information Networks +1602.03115 Information Theory +1602.03116 Mesoscale and Nanoscale Physics +1602.03117 Information Theory +1602.03121 Cosmology and Nongalactic Astrophysics +1602.03122 +1602.03125 Differential Geometry +1602.03127 Dynamical Systems +1602.03129 Numerical Analysis +1602.03132 +1602.03137 Solar and Stellar Astrophysics +1602.03139 Robotics +1602.03142 Dynamical Systems +1602.03145 Computer Vision and Pattern Recognition +1602.03148 Algebraic Geometry +1602.03150 Instrumentation and Detectors +1602.03153 Networking and Internet Architecture +1602.03155 Spectral Theory +1602.03162 Group Theory +1602.03163 Fluid Dynamics +1602.03164 Rings and Algebras +1602.03165 Classical Analysis and ODEs +1602.03166 Phenomenology +1602.03168 Quantitative Methods +astro-ph/9609126 +astro-ph/9701167 +0704.2795 +0801.2664 Algebraic Topology +0809.3341 Algebraic Topology +0812.2968 +0902.0556 Algebraic Topology +0902.1567 +0908.0156 +0911.0956 Probability +1002.4220 Spectral Theory +1004.4146 +1011.5644 Algebraic Geometry +1101.3064 Category Theory +1108.2903 Optimization and Control +1201.2134 Algebraic Topology +1201.3135 +1204.0563 Optimization and Control +1205.1038 +1206.4019 +1301.3408 Spectral Theory +1304.2504 Cryptography and Security +1304.6790 +1305.0480 Group Theory +1305.4026 +1306.4222 Superconductivity +1307.1459 Cosmology and Nongalactic Astrophysics +1308.6186 Cosmology and Nongalactic Astrophysics +1309.3717 Number Theory +1311.0194 Probability +1401.3424 Statistics Theory +1401.3602 Probability +1403.6481 Statistical Mechanics +1404.0410 Pricing of Securities +1406.0526 Statistics Theory +1406.0571 Number Theory +1406.0766 Combinatorics +1406.4807 Dynamical Systems +1406.5136 Strongly Correlated Electrons +1406.6276 Soft Condensed Matter +1407.0195 Numerical Analysis +1408.1228 Social and Information Networks +1408.1829 Classical Analysis and ODEs +1408.2467 Optimization and Control +1409.3868 +1409.4358 Materials Science +1409.4455 Differential Geometry +1409.8669 Superconductivity +1410.1118 Differential Geometry +1410.1656 Probability +1410.3322 Networking and Internet Architecture +1410.3920 Optics +1412.4339 Numerical Analysis +1412.5007 Algebraic Geometry +1412.7113 Phenomenology +1412.8609 Information Theory +1501.03379 Computation +1501.04682 Statistical Finance +1501.07439 Information Theory +1502.00217 Analysis of PDEs +1502.01456 Optimization and Control +1502.07803 History and Overview +1503.00127 Physics and Society +1503.06732 Analysis of PDEs +1503.08719 Statistical Mechanics +1504.00630 Popular Physics +1504.01168 Materials Science +1504.01307 Number Theory +1504.02338 Machine Learning +1504.05341 Strongly Correlated Electrons +1505.03548 Classical Analysis and ODEs +1505.04350 Functional Analysis +1505.07515 Information Theory +1506.02774 Probability +1506.03294 Mesoscale and Nanoscale Physics +1506.07094 Mathematical Software +1506.09155 Physics and Society +1507.02293 Social and Information Networks +1507.04151 Instrumentation and Methods for Astrophysics +1507.04331 Quantitative Methods +1507.06775 Superconductivity +1507.07569 Phenomenology +1508.01939 Methodology +1508.04300 Algebraic Geometry +1508.06239 Representation Theory +1508.06389 Strongly Correlated Electrons +1509.00228 Spectral Theory +1509.00439 Materials Science +1509.01699 Cosmology and Nongalactic Astrophysics +1509.01781 Probability +1509.01861 Dynamical Systems +1509.02561 +1509.05203 Representation Theory +1509.05891 Phenomenology +1510.02575 Number Theory +1510.03711 Disordered Systems and Neural Networks +1510.06773 Representation Theory +1510.06843 Algebraic Geometry +1511.02301 Computation and Language +1511.05074 Materials Science +1511.05838 Computation +1511.07355 +1511.08023 Combinatorics +1511.08700 Information Theory +1511.08781 +1512.01565 Number Theory +1512.02974 Superconductivity +1512.03646 Mesoscale and Nanoscale Physics +1512.04270 +1512.05602 Cell Behavior +1512.05621 Representation Theory +1512.07619 Methodology +1512.07651 Differential Geometry +1512.07812 K-Theory and Homology +1512.08058 Theory +1601.00516 Logic in Computer Science +1601.01397 Quantum Gases +1601.02732 Computational Geometry +1601.02863 Number Theory +1601.03213 Superconductivity +1601.04153 Computer Vision and Pattern Recognition +1601.04218 Optics +1601.04817 +1601.05760 Mesoscale and Nanoscale Physics +1601.06254 Differential Geometry +1601.06721 +1601.07839 Number Theory +1602.01399 Lattice +1602.01786 Statistical Mechanics +1602.03608 Materials Science +1602.04450 Robotics +1602.07606 Disordered Systems and Neural Networks +1603.01099 +1603.02123 +1603.02727 Cryptography and Security +1603.02768 Theory +1603.02835 Chemical Physics +1603.03153 Physics and Society +1603.03973 Analysis of PDEs +1603.04781 Human-Computer Interaction +1603.04944 Probability +1603.05312 +1603.06047 Portfolio Management +1603.06623 Number Theory +1603.07267 +1603.07580 Probability +1603.08370 Combinatorics +1603.08747 Exactly Solvable and Integrable Systems +1603.09318 Materials Science +1603.09372 Strongly Correlated Electrons +1603.09373 +1603.09406 Statistics Theory +1603.09439 Computer Vision and Pattern Recognition +1603.09540 Social and Information Networks +1603.09678 Numerical Analysis +1603.09730 Dynamical Systems +1604.00001 Other Quantitative Biology +1604.00023 +1604.00025 Cryptography and Security +1604.00033 Computers and Society +1604.00036 Computer Vision and Pattern Recognition +1604.00039 Statistics Theory +1604.00041 Materials Science +1604.00044 Phenomenology +1604.00045 Biomolecules +1604.00046 +1604.00047 Graphics +1604.00049 Popular Physics +1604.00050 Algebraic Geometry +1604.00051 Statistics Theory +1604.00052 Algebraic Geometry +1604.00053 Representation Theory +1604.00056 Probability +1604.00058 Functional Analysis +1604.00059 Applications +1604.00060 Networking and Internet Architecture +1604.00061 Systems and Control +1604.00062 Analysis of PDEs +1604.00065 Materials Science +1604.00066 Computer Vision and Pattern Recognition +1604.00069 Neurons and Cognition +1604.00071 Information Retrieval +1604.00072 Rings and Algebras +1604.00076 Combinatorics +1604.00077 Computation and Language +1604.00080 Human-Computer Interaction +1604.00081 +1604.00082 Applications +1604.00085 Mesoscale and Nanoscale Physics +1604.00090 High Energy Astrophysical Phenomena +1604.00091 Neurons and Cognition +1604.00092 Computer Vision and Pattern Recognition +1604.00094 +1604.00097 Probability +1604.00098 Instrumentation and Detectors +1604.00099 +1604.00100 Computation and Language +1604.00101 Analysis of PDEs +1604.00104 Combinatorics +1604.00105 Pricing of Securities +1604.00107 Information Theory +1604.00109 Group Theory +1604.00114 Symplectic Geometry +1604.00116 +1604.00118 Cryptography and Security +1604.00121 Functional Analysis +1604.00126 Computation and Language +1604.00130 Dynamical Systems +1604.00133 Computer Vision and Pattern Recognition +1604.00136 Computer Vision and Pattern Recognition +1604.00138 Numerical Analysis +1604.00140 Chemical Physics +1604.00142 Differential Geometry +1604.00149 General Topology +1604.00150 General Topology +1604.00154 +1604.00155 Analysis of PDEs +1604.00158 High Energy Astrophysical Phenomena +1604.00159 Operator Algebras +1604.00162 Artificial Intelligence +1604.00168 Soft Condensed Matter +1604.00170 Instrumentation and Methods for Astrophysics +1604.00174 Materials Science +1604.00175 Social and Information Networks +1604.00178 Networking and Internet Architecture +1604.00180 Differential Geometry +1604.00182 Functional Analysis +1604.00186 Classical Analysis and ODEs +1604.00190 Probability +1604.00191 Astrophysics of Galaxies +1604.00193 Number Theory +1604.00198 Functional Analysis +1604.00200 Computational Physics +1604.00201 Phenomenology +1604.00202 Discrete Mathematics +1604.00204 Cryptography and Security +1604.00209 Mesoscale and Nanoscale Physics +1604.00211 Analysis of PDEs +1604.00215 Algebraic Geometry +1604.00216 Computational Complexity +1604.00217 Systems and Control +1604.00219 Systems and Control +1604.00221 Exactly Solvable and Integrable Systems +1604.00223 Information Retrieval +1604.00224 Computational Physics +1604.00228 Phenomenology +1604.00229 High Energy Astrophysical Phenomena +1604.00233 Computers and Society +1604.00235 Combinatorics +1604.00237 Analysis of PDEs +1604.00243 Rings and Algebras +1604.00252 Algebraic Geometry +1604.00253 Systems and Control +1604.00254 Mathematical Finance +1604.00256 Solar and Stellar Astrophysics +1604.00258 Logic in Computer Science +1604.00260 History and Philosophy of Physics +1604.00261 Numerical Analysis +1604.00262 Numerical Analysis +1604.00263 High Energy Astrophysical Phenomena +1604.00270 Functional Analysis +1604.00271 Astrophysics of Galaxies +1604.00273 Networking and Internet Architecture +1604.00274 Information Theory +1604.00275 Information Theory +1604.00276 Instrumentation and Detectors +1604.00277 Combinatorics +1604.00281 Number Theory +1604.00282 Astrophysics of Galaxies +1604.00283 General Finance +1604.00285 Numerical Analysis +1604.00287 Analysis of PDEs +1604.00290 Geometric Topology +1604.00293 Spectral Theory +1604.00298 Soft Condensed Matter +1604.00300 Artificial Intelligence +1604.00301 Artificial Intelligence +1604.00306 Statistics Theory +1604.00310 Data Structures and Algorithms +1604.00314 Methodology +1604.00317 Computation and Language +1604.00318 High Energy Astrophysical Phenomena +1604.00319 +1604.00320 Cryptography and Security +1604.00322 Data Structures and Algorithms +1604.00325 +1604.00326 Computer Vision and Pattern Recognition +1604.00327 Chemical Physics +1604.00330 Geometric Topology +1604.00331 Strongly Correlated Electrons +1604.00337 Materials Science +1604.00340 Materials Science +1604.00341 Group Theory +1604.00346 Software Engineering +1604.00347 Software Engineering +1604.00348 Software Engineering +1604.00349 Software Engineering +1604.00350 Logic in Computer Science +1604.00351 +1604.00352 Materials Science +1604.00355 Numerical Analysis +1604.00357 Data Structures and Algorithms +1604.00358 Logic +1604.00360 Other Computer Science +1604.00362 Statistics Theory +1604.00363 +1604.00365 Algebraic Topology +1604.00367 Computer Vision and Pattern Recognition +1604.00368 Probability +1604.00369 Economics +1604.00371 Probability +1604.00372 High Energy Astrophysical Phenomena +1604.00376 Methodology +1604.00377 Artificial Intelligence +1604.00379 Optics +1604.00384 Programming Languages +1604.00385 Quantitative Methods +1604.00387 Materials Science +math-ph/0308012 +math-ph/0605037 +math-ph/0609021 +math/0503075 Classical Analysis and ODEs +math/0503128 Analysis of PDEs +1003.3327 Cosmology and Nongalactic Astrophysics +1008.3418 Functional Analysis +1102.3326 Soft Condensed Matter +1207.2940 Machine Learning +1207.5136 Machine Learning +1211.2446 Theory +1304.0236 +1305.5767 Theory +1306.1043 Machine Learning +1307.4848 +1308.3649 Spectral Theory +1309.6779 Machine Learning +1310.3023 Geometric Topology +1310.3033 Geometric Topology +1310.3159 Strongly Correlated Electrons +1312.2304 Functional Analysis +1401.3661 Algebraic Geometry +1401.4095 Functional Analysis +1402.3905 Geometric Topology +1403.0408 Probability +1404.5012 Information Theory +1404.5657 Algebraic Geometry +1405.4396 Number Theory +1405.4902 Algebraic Geometry +1405.4965 +1405.5620 Combinatorics +1405.5624 Combinatorics +1405.7228 Representation Theory +1405.7236 Representation Theory +1406.4423 Soft Condensed Matter +1407.3012 +1409.0810 Analysis of PDEs +1409.8632 +1410.5449 Combinatorics +1410.7899 Combinatorics +1411.1208 Algebraic Geometry +1411.3134 Numerical Analysis +1411.6506 Methodology +1411.7755 +1412.0477 Computer Vision and Pattern Recognition +1412.3129 Analysis of PDEs +1501.01307 Number Theory +1501.01810 Geometric Topology +1502.02462 Analysis of PDEs +1502.02987 +1503.03379 Cosmology and Nongalactic Astrophysics +1503.04702 Discrete Mathematics +1504.03749 Numerical Analysis +1504.06066 Computer Vision and Pattern Recognition +1504.06136 Information Theory +1505.05061 Numerical Analysis +1506.04755 +1506.07557 +1507.01012 Strongly Correlated Electrons +1507.02595 Algebraic Geometry +1507.02597 Algebraic Geometry +1507.02653 Solar and Stellar Astrophysics +1507.06394 Numerical Analysis +1508.00737 Cosmology and Nongalactic Astrophysics +1508.00747 Instrumentation and Methods for Astrophysics +1508.04997 +1509.02838 Chemical Physics +1509.03576 +1509.03619 Information Theory +1509.04641 Materials Science +1509.05371 Computer Vision and Pattern Recognition +1509.06480 Solar and Stellar Astrophysics +1509.06482 Solar and Stellar Astrophysics +1509.06580 Information Theory +1509.07958 Plasma Physics +1510.07115 +1511.05385 Machine Learning +1511.08116 Number Theory +1512.01277 Quantum Gases +1512.02066 Analysis of PDEs +1512.02660 Strongly Correlated Electrons +1512.02678 Representation Theory +1512.03308 Machine Learning +1512.04608 Number Theory +1512.04618 Combinatorics +1512.04831 Computation +1512.05255 Strongly Correlated Electrons +1512.07322 Differential Geometry +1601.00237 Methodology +1601.00467 Disordered Systems and Neural Networks +1601.01286 Information Theory +1601.01852 Optimization and Control +1601.02688 Number Theory +1601.02932 Quantitative Methods +1601.04389 +1601.04699 Materials Science +1601.05775 Social and Information Networks +1601.05923 Plasma Physics +1601.06611 +1601.07088 Optics +1601.07138 Solar and Stellar Astrophysics +1601.07583 Number Theory +1601.07768 Information Theory +1601.08249 Strongly Correlated Electrons +1602.01626 Numerical Analysis +1602.01991 +1602.02265 Systems and Control +1602.02314 +1602.03744 General Physics +1602.04202 Differential Geometry +1602.05052 Quantum Algebra +1602.07075 Symplectic Geometry +1602.07529 General Physics +1603.00765 Experiment +1603.02115 Strongly Correlated Electrons +1603.05967 Materials Science +1603.06182 Computer Vision and Pattern Recognition +1603.06944 Strongly Correlated Electrons +1603.07065 Rings and Algebras +1603.07777 Superconductivity +1604.00022 Phenomenology +1604.01750 Number Theory +1604.02315 Materials Science +1604.03397 Theory +1604.03805 Data Analysis, Statistics and Probability +1604.03860 Superconductivity +1604.04242 Methodology +1604.05097 +1604.05332 +1604.06895 Instrumentation and Detectors +1604.07401 Cosmology and Nongalactic Astrophysics +1604.08202 Computer Vision and Pattern Recognition +1605.00283 Programming Languages +1605.03211 Quantum Gases +1605.04431 Cosmology and Nongalactic Astrophysics +1605.04482 +1605.05471 Mesoscale and Nanoscale Physics +1605.05513 Statistical Mechanics +1605.07763 Cryptography and Security +1605.09435 +1605.09474 Emerging Technologies +1605.09563 Phenomenology +1605.09579 Formal Languages and Automata Theory +1606.01602 +1606.03710 Solar and Stellar Astrophysics +1606.04641 +1606.05321 Algebraic Geometry +1606.05810 Algebraic Geometry +1606.06474 +1606.07143 Logic in Computer Science +1606.07628 Theory +1606.08816 Statistical Mechanics +1606.08851 Phenomenology +1607.00994 +1607.02471 Superconductivity +1607.03487 Astrophysics of Galaxies +1607.04806 Optics +1607.06461 Mesoscale and Nanoscale Physics +1607.06600 Combinatorics +1607.07478 Popular Physics +1608.00586 Instrumentation and Methods for Astrophysics +1608.00587 Instrumentation and Methods for Astrophysics +1608.00982 +1608.01518 Earth and Planetary Astrophysics +1608.01585 +1608.01929 Combinatorics +1608.02038 Populations and Evolution +1608.03226 Combinatorics +1608.03237 Risk Management +1608.03939 Cryptography and Security +1608.03976 Classical Physics +1608.04055 Representation Theory +1608.04115 Cryptography and Security +1608.04459 +1608.04460 +1608.04529 Software Engineering +1608.04548 High Energy Astrophysical Phenomena +1608.04572 Combinatorics +1608.04612 Analysis of PDEs +1608.04616 Instrumentation and Methods for Astrophysics +1608.04684 +1608.04743 Astrophysics of Galaxies +1608.04744 Theory +1608.04752 Probability +1608.04753 Solar and Stellar Astrophysics +1608.04756 Logic +1608.04758 Instrumentation and Methods for Astrophysics +1608.04759 Data Structures and Algorithms +1608.04763 Optimization and Control +1608.04764 Computational Complexity +1608.04765 Astrophysics of Galaxies +1608.04766 Cryptography and Security +1608.04767 Computation and Language +1608.04768 Computer Science and Game Theory +1608.04769 Data Structures and Algorithms +1608.04770 Analysis of PDEs +1608.04773 Machine Learning +1608.04774 Mesoscale and Nanoscale Physics +1608.04777 Classical Analysis and ODEs +1608.04778 Atomic Physics +1608.04779 Mesoscale and Nanoscale Physics +1608.04780 Classical Analysis and ODEs +1608.04783 Learning +1608.04784 Phenomenology +1608.04787 Atomic Physics +1608.04789 Computers and Society +1608.04791 Computational Geometry +1608.04792 Fluid Dynamics +1608.04793 Lattice +1608.04794 Combinatorics +1608.04795 Operator Algebras +1608.04797 Algebraic Geometry +1608.04799 Strongly Correlated Electrons +1608.04800 Combinatorics +1608.04804 +1608.04806 Instrumentation and Methods for Astrophysics +1608.04807 Instrumentation and Methods for Astrophysics +1608.04809 Group Theory +1608.04810 Differential Geometry +1608.04821 Materials Science +1608.04823 Space Physics +1608.04824 Biological Physics +1608.04825 Spectral Theory +1608.04826 Optimization and Control +1608.04827 Dynamical Systems +1608.04829 +1608.04830 Machine Learning +1608.04833 Numerical Analysis +1608.04838 Combinatorics +1608.04840 Mesoscale and Nanoscale Physics +1608.04843 Other Statistics +1608.04845 Data Structures and Algorithms +1608.04847 Fluid Dynamics +1608.04849 +1608.04850 Dynamical Systems +1608.04851 Multiagent Systems +1608.04852 Data Structures and Algorithms +1608.04854 Mesoscale and Nanoscale Physics +1608.04858 Number Theory +1608.04859 Operator Algebras +1608.04866 Discrete Mathematics +1608.04867 Methodology +1608.04869 Astrophysics of Galaxies +1608.04871 Probability +1608.04872 Information Theory +1608.04875 Digital Libraries +1608.04876 Mesoscale and Nanoscale Physics +1608.04877 Differential Geometry +1608.04879 Systems and Control +1608.04880 Dynamical Systems +1608.04883 Discrete Mathematics +1608.04885 Software Engineering +1608.04888 Instrumentation and Methods for Astrophysics +1608.04894 Accelerator Physics +1608.04896 Spectral Theory +1608.04897 Instrumentation and Detectors +1608.04901 Strongly Correlated Electrons +1608.04902 Computer Vision and Pattern Recognition +1608.04903 Mesoscale and Nanoscale Physics +1608.04908 +1608.04909 +1608.04910 Applications +1608.04913 Logic +1608.04914 Computer Vision and Pattern Recognition +1608.04925 +1608.04926 Exactly Solvable and Integrable Systems +1608.04929 Learning +1608.04932 Analysis of PDEs +1608.04935 Neurons and Cognition +1608.04936 Geometric Topology +1608.04938 Strongly Correlated Electrons +1608.04940 Phenomenology +1608.04941 Dynamical Systems +1608.04942 +1608.04943 Computer Science and Game Theory +1608.04944 Differential Geometry +1608.04945 Metric Geometry +1608.04947 Complex Variables +1608.04952 Optimization and Control +1608.04953 Graphics +1608.04954 Experiment +1608.04955 Optimization and Control +1608.04956 Mesoscale and Nanoscale Physics +1608.04959 Computer Vision and Pattern Recognition +1608.04963 Probability +1608.04965 Astrophysics of Galaxies +1608.04967 Distributed, Parallel, and Cluster Computing +1608.04968 Algebraic Geometry +1608.04970 Chemical Physics +1608.04971 Instrumentation and Methods for Astrophysics +1608.04972 Neurons and Cognition +1608.04973 Commutative Algebra +1608.04975 Fluid Dynamics +1608.04980 Learning +1608.04981 Information Theory +1608.04983 Computation and Language +1608.04984 +1608.04985 Rings and Algebras +1608.04986 History and Philosophy of Physics +1608.04987 Dynamical Systems +1608.04989 Classical Analysis and ODEs +1608.04990 Algebraic Geometry +1608.04992 Instrumentation and Methods for Astrophysics +1608.04996 Artificial Intelligence +1608.04998 Computational Engineering, Finance, and Science +1608.05007 Cryptography and Security +1608.05010 Materials Science +1608.05011 Software Engineering +1608.05013 Commutative Algebra +1608.05015 Probability +1608.05016 Solar and Stellar Astrophysics +1608.05018 Materials Science +1608.05020 +1608.05021 Soft Condensed Matter +1608.05022 Strongly Correlated Electrons +1608.05023 Materials Science +1608.05029 Soft Condensed Matter +1608.05030 Fluid Dynamics +1608.05031 Optimization and Control +1608.05034 +1608.05035 Geometric Topology +1608.05038 Economics +1608.05039 Algebraic Geometry +1608.05041 Phenomenology +1608.05043 Computational Complexity +1608.05044 Computer Science and Game Theory +1608.05045 Computer Vision and Pattern Recognition +1608.05046 Artificial Intelligence +1608.05049 +1608.05050 Functional Analysis +1608.05051 Optics +1608.05054 Multimedia +1608.05056 Algebraic Geometry +1608.05058 Methodology +1608.05060 Trading and Market Microstructure +1608.05061 Quantum Gases +1608.05062 Strongly Correlated Electrons +1608.05064 Optimization and Control +1608.05065 Logic +1608.05068 Pattern Formation and Solitons +cond-mat/0703363 Disordered Systems and Neural Networks +0810.4637 Classical Physics +1005.1721 Combinatorics +1009.3036 Probability +1011.1715 Superconductivity +1104.4343 +1105.1685 Earth and Planetary Astrophysics +1107.0295 Algebraic Geometry +1107.1087 Phenomenology +1107.2019 Differential Geometry +1107.2712 Theory +1111.4427 +1111.4980 +1111.5455 Number Theory +1111.5459 Number Theory +1112.4078 Logic +1204.0492 Popular Physics +1205.5898 +1206.2254 Computational Geometry +1209.0841 Computer Vision and Pattern Recognition +1209.5895 Strongly Correlated Electrons +1210.1316 Computer Vision and Pattern Recognition +1210.6363 Quantum Algebra +1211.0217 Symplectic Geometry +1211.2887 Theory +1212.2521 Combinatorics +1212.6444 Algebraic Geometry +1302.1805 Methodology +1304.3969 Methodology +1305.0972 Probability +1306.1157 Information Theory +1306.2472 Analysis of PDEs +1306.6560 Classical Analysis and ODEs +1307.7536 Methodology +1309.0408 Genomics +1309.3754 Algebraic Geometry +1309.4739 Algebraic Geometry +1309.6487 Learning +1309.7241 Representation Theory +1309.7606 Operator Algebras +1309.7970 Numerical Analysis +1310.2902 Analysis of PDEs +1310.5023 Group Theory +1310.5080 Symplectic Geometry +1311.0689 Computation +1311.2970 Networking and Internet Architecture +1312.1619 +1312.6923 Symplectic Geometry +1401.6101 Algebraic Geometry +1401.6237 Analysis of PDEs +1401.7287 Physics and Society +1402.5874 Learning +1402.7250 +1403.3111 Differential Geometry +1403.3314 Geometric Topology +1403.3426 Theory +1403.6377 Earth and Planetary Astrophysics +1404.1390 Classical Analysis and ODEs +1404.1568 Data Structures and Algorithms +1404.2337 Earth and Planetary Astrophysics +1404.5064 Optimization and Control +1405.0478 Materials Science +1405.2044 Quantitative Methods +1405.2203 Analysis of PDEs +1405.2303 Symplectic Geometry +1405.3512 General Finance +1405.6091 General Physics +1405.6708 Earth and Planetary Astrophysics +1406.0873 Machine Learning +1406.1739 Differential Geometry +1406.3089 Subcellular Processes +1406.3873 Analysis of PDEs +1406.5835 Algebraic Geometry +1407.0427 Number Theory +1407.2505 Statistical Mechanics +1407.6644 +1407.7228 Commutative Algebra +1408.1422 Computational Geometry +1408.1503 Chaotic Dynamics +1408.4200 Logic +1408.5328 +1409.2035 Medical Physics +1409.4071 Representation Theory +1409.4652 +1409.5786 Computer Vision and Pattern Recognition +1409.5929 Computational Physics +1409.6906 Differential Geometry +1410.1970 Logic +1410.2353 Combinatorics +1410.2363 Geometric Topology +1410.6363 Theory +1410.8157 Geometric Topology +1411.0732 Logic +1411.4946 Quantum Gases +1411.6371 Data Structures and Algorithms +1411.6534 Group Theory +1411.6763 Databases +1411.6931 Category Theory +1411.7928 Instrumentation and Methods for Astrophysics +1412.0458 Spectral Theory +1412.1273 +1412.2097 Statistical Mechanics +1412.2229 Geometric Topology +1412.2521 +1412.2627 Probability +1412.3456 Superconductivity +1412.3817 +1412.4293 Analysis of PDEs +1412.7223 Multiagent Systems +1501.00226 Algebraic Geometry +1501.00366 Fluid Dynamics +1501.00768 +1501.01884 Representation Theory +1501.06263 Geometric Topology +1502.02368 Complex Variables +1502.02833 +1502.04212 Analysis of PDEs +1502.04295 Neurons and Cognition +1502.04538 Information Theory +1503.00164 Machine Learning +1503.03788 Group Theory +1503.05933 Optimization and Control +1503.05995 +1503.07253 Systems and Control +1503.07591 Numerical Analysis +1503.07615 Symplectic Geometry +1503.08177 Numerical Analysis +1503.08817 Phenomenology +1503.09182 Biological Physics +1504.00925 Quantum Gases +1504.02230 Instrumentation and Detectors +1504.03948 Number Theory +1504.07001 Phenomenology +1504.07306 +1504.07843 Physics and Society +1504.08326 Chemical Physics +1505.00650 Differential Geometry +1505.02372 Computational Complexity +1505.05914 Computer Vision and Pattern Recognition +1505.06580 Number Theory +1505.07501 Biological Physics +1505.07746 Analysis of PDEs +1505.07995 Geometric Topology +1506.00136 Biological Physics +1506.00713 Earth and Planetary Astrophysics +1506.00719 Number Theory +1506.00981 +1506.01569 Complex Variables +1506.01848 Solar and Stellar Astrophysics +1506.03590 Quantum Gases +1506.04372 Algebraic Geometry +1506.05454 +1506.07049 +1506.07475 Phenomenology +1506.07499 +1506.07842 Complex Variables +1506.08045 Physics and Society +1506.08159 Statistics Theory +1506.08527 Symbolic Computation +1507.01346 +1507.01851 Superconductivity +1507.02847 Computational Finance +1507.04031 Mesoscale and Nanoscale Physics +1507.04817 Programming Languages +1507.05115 Metric Geometry +1507.05951 Differential Geometry +1507.08872 Algebraic Topology +1507.08980 Spectral Theory +1508.00316 Symplectic Geometry +1508.00438 +1508.01223 +1508.01277 +1508.02451 Instrumentation and Detectors +1508.02751 Instrumentation and Detectors +1508.02783 Analysis of PDEs +1508.03414 Analysis of PDEs +1508.04968 Mesoscale and Nanoscale Physics +1508.05300 Strongly Correlated Electrons +1508.05423 Probability +1508.05848 Superconductivity +1508.06377 Systems and Control +1508.06461 +1508.06579 Neurons and Cognition +1508.07212 Strongly Correlated Electrons +1508.07370 Computer Science and Game Theory +1509.00171 Neurons and Cognition +1509.00572 Rings and Algebras +1509.00897 Probability +1509.01584 High Energy Astrophysical Phenomena +1509.02703 +1509.03007 Spectral Theory +1509.03469 +1509.04165 Strongly Correlated Electrons +1509.05097 Analysis of PDEs +1509.05936 Neural and Evolutionary Computing +1509.05998 Optics +1509.06178 Probability +1509.08110 Portfolio Management +1510.00338 Optimization and Control +1510.00488 Populations and Evolution +1510.00855 +1510.01170 Mesoscale and Nanoscale Physics +1510.02533 Learning +1510.03966 Statistics Theory +1510.04384 Classical Analysis and ODEs +1510.04448 Mesoscale and Nanoscale Physics +1510.04862 Computer Vision and Pattern Recognition +1510.04947 Differential Geometry +1510.05201 Programming Languages +1510.05619 Statistical Mechanics +1510.05630 Cosmology and Nongalactic Astrophysics +1510.06191 Probability +1510.06198 Cosmology and Nongalactic Astrophysics +1510.06325 Geometric Topology +1510.07427 Strongly Correlated Electrons +1510.07729 Algebraic Topology +1510.08322 Disordered Systems and Neural Networks +1510.08465 Astrophysics of Galaxies +1510.08653 Strongly Correlated Electrons +1511.00823 Symplectic Geometry +1511.00914 Accelerator Physics +1511.01350 High Energy Astrophysical Phenomena +1511.01498 +1511.01534 Networking and Internet Architecture +1511.01540 Social and Information Networks +1511.02576 +1511.03942 Strongly Correlated Electrons +1511.04252 +1511.04277 +1511.04505 Numerical Analysis +1511.05234 Computer Vision and Pattern Recognition +1511.05946 Learning +1511.06366 Quantum Gases +1511.06612 Classical Analysis and ODEs +1511.06753 Theory +1511.06755 Mesoscale and Nanoscale Physics +1511.06780 +1511.07369 Mesoscale and Nanoscale Physics +1512.00630 Phenomenology +1512.00820 Statistics Theory +1512.01218 Systems and Control +1512.01883 Social and Information Networks +1512.01946 +1512.02003 Earth and Planetary Astrophysics +1512.02138 Databases +1512.02402 Populations and Evolution +1512.02590 Fluid Dynamics +1512.02633 Astrophysics of Galaxies +1512.02637 Cosmology and Nongalactic Astrophysics +1512.02685 Number Theory +1512.03556 Computational Physics +1512.04319 Statistical Mechanics +1512.05423 Information Theory +1512.05880 Algebraic Geometry +1512.06169 Physics and Society +1512.06749 Optics +1512.06840 Social and Information Networks +1512.07633 Soft Condensed Matter +1512.08361 Chemical Physics +1512.08704 Strongly Correlated Electrons +1512.08764 Lattice +1512.08851 Atmospheric and Oceanic Physics +1512.09143 Superconductivity +1512.09236 Data Structures and Algorithms +1601.00257 +1601.00442 Phenomenology +1601.01320 Strongly Correlated Electrons +1601.02139 Mesoscale and Nanoscale Physics +1601.03194 Analysis of PDEs +1601.03298 Theory +1601.03879 Disordered Systems and Neural Networks +1601.04157 Numerical Analysis +1601.04223 Combinatorics +1601.05482 Geometric Topology +1601.06273 Atomic Physics +1601.07820 Optics +1601.08017 Optimization and Control +1602.00029 Phenomenology +1602.00101 Emerging Technologies +1602.00821 Materials Science +1602.01205 Digital Libraries +1602.02058 Instrumentation and Detectors +1602.02320 Functional Analysis +1602.03957 Group Theory +1602.03959 Materials Science +1602.04298 High Energy Astrophysical Phenomena +1602.05342 Computer Science and Game Theory +1602.05516 Instrumentation and Detectors +1602.06773 Representation Theory +1602.08153 Fluid Dynamics +1602.09122 Mesoscale and Nanoscale Physics +1603.00644 Information Theory +1603.00681 Number Theory +1603.00859 Networking and Internet Architecture +1603.01085 Classical Analysis and ODEs +1603.01669 Superconductivity +1603.02267 +1603.02520 Mesoscale and Nanoscale Physics +1603.02562 Combinatorics +1603.02699 Classical Analysis and ODEs +1603.02752 Learning +1603.02761 Algebraic Geometry +1603.02837 +1603.03518 Artificial Intelligence +1603.03542 Exactly Solvable and Integrable Systems +1603.03847 Phenomenology +1603.03928 Probability +1603.04051 Group Theory +1603.04094 Hardware Architecture +1603.04174 Information Theory +1603.04428 +1603.04476 Combinatorics +1603.04834 Systems and Control +1603.04905 Spectral Theory +1603.05073 Computer Vision and Pattern Recognition +1603.05193 Mesoscale and Nanoscale Physics +1603.05338 Combinatorics +1603.05495 Programming Languages +1603.05512 Classical Analysis and ODEs +1603.05720 Astrophysics of Galaxies +1603.05809 Number Theory +1603.05905 Optimization and Control +1603.05910 Experiment +1603.05979 Earth and Planetary Astrophysics +1603.05985 Chemical Physics +1603.05987 +1603.05990 Instrumentation and Methods for Astrophysics +1603.05991 Differential Geometry +1603.05995 Group Theory +1603.06002 Data Structures and Algorithms +1603.06005 Analysis of PDEs +1603.06009 Computation and Language +1603.06012 Networking and Internet Architecture +1603.06014 Statistical Mechanics +1603.06016 Experiment +1603.06017 Formal Languages and Automata Theory +1603.06018 General Literature +1603.06020 Geometric Topology +1603.06022 Functional Analysis +1603.06024 Physics Education +1603.06025 Physics Education +1603.06030 Combinatorics +1603.06031 Accelerator Physics +1603.06035 Learning +1603.06038 Learning +1603.06043 Functional Analysis +1603.06044 Networking and Internet Architecture +1603.06045 Methodology +1603.06046 +1603.06048 Physics Education +1603.06051 Materials Science +1603.06056 Category Theory +1603.06060 Computer Vision and Pattern Recognition +1603.06063 Soft Condensed Matter +1603.06065 Sound +1603.06068 Databases +1603.06070 Materials Science +1603.06073 Algebraic Topology +1603.06079 Solar and Stellar Astrophysics +1603.06080 Representation Theory +1603.06084 Operator Algebras +1603.06085 Functional Analysis +1603.06087 General Topology +1603.06088 Analysis of PDEs +1603.06089 Number Theory +1603.06093 Computer Vision and Pattern Recognition +1603.06094 Differential Geometry +1603.06097 Mesoscale and Nanoscale Physics +1603.06099 Combinatorics +1603.06100 Statistics Theory +1603.06109 Data Structures and Algorithms +1603.06110 Software Engineering +1603.06113 Cryptography and Security +1603.06114 Physics and Society +1603.06115 Combinatorics +1603.06119 Computational Engineering, Finance, and Science +1603.06122 Number Theory +1603.06123 Multimedia +1603.06124 Combinatorics +1603.06125 Artificial Intelligence +1603.06128 K-Theory and Homology +1603.06129 Programming Languages +1603.06130 Phenomenology +1603.06131 Phenomenology +1603.06132 Optics +1603.06133 Cryptography and Security +1603.06134 Instrumentation and Methods for Astrophysics +1603.06135 Statistics Theory +1603.06136 Earth and Planetary Astrophysics +1603.06138 Methodology +1603.06139 Fluid Dynamics +1603.06141 Artificial Intelligence +1603.06142 Populations and Evolution +1603.06145 Methodology +1603.06148 +1603.06150 Mesoscale and Nanoscale Physics +1603.06151 Optimization and Control +1603.06152 Algebraic Geometry +1603.06156 Quantum Gases +1603.06158 Astrophysics of Galaxies +1603.06159 Optimization and Control +1603.06161 Number Theory +1603.06162 General Topology +1603.06163 Optimization and Control +1603.06164 Combinatorics +1603.06167 Analysis of PDEs +1603.06168 Theory +1603.06170 Learning +1603.06171 Quantum Algebra +1603.06174 Operator Algebras +1603.06176 Number Theory +1603.06177 Statistics Theory +1603.06178 Number Theory +1603.06179 Number Theory +1603.06180 Computer Vision and Pattern Recognition +1603.06183 Portfolio Management +1603.06184 Algebraic Geometry +1603.06188 Computational Physics +1603.06190 Representation Theory +1603.06191 Probability +1603.06192 Rings and Algebras +1603.06193 Statistical Mechanics +1603.06196 General Finance +1603.06197 Algebraic Geometry +1603.06200 Social and Information Networks +1603.06202 Statistical Finance +1603.06203 Experiment +1603.06204 Group Theory +1603.06205 Number Theory +1603.06210 Functional Analysis +1603.06211 Differential Geometry +1603.06212 Neural and Evolutionary Computing +1603.06213 Mesoscale and Nanoscale Physics +1603.06214 Mesoscale and Nanoscale Physics +1603.06215 Commutative Algebra +1603.06216 Systems and Control +1603.06217 Robotics +1603.06220 Information Theory +1603.06223 Other Computer Science +1603.06225 Statistical Mechanics +1603.06226 Discrete Mathematics +1603.06227 Cryptography and Security +1603.06228 Rings and Algebras +1603.06235 Materials Science +1603.06239 Classical Analysis and ODEs +1603.06241 Distributed, Parallel, and Cluster Computing +1603.06243 Human-Computer Interaction +1603.06247 Algebraic Geometry +1603.06248 Neurons and Cognition +1603.06252 Computational Geometry +1603.06257 Rings and Algebras +1603.06260 +1603.06261 +1603.06262 Astrophysics of Galaxies +1603.06266 Programming Languages +1603.06267 Number Theory +1603.06274 +1603.06275 +1603.06276 Probability +1603.06281 Dynamical Systems +1603.06282 +1603.06283 Medical Physics +1603.06284 Methodology +1603.06286 Information Theory +1603.06289 Cryptography and Security +1603.06293 Functional Analysis +1603.06296 Quantum Gases +1603.06297 Cryptography and Security +1603.06301 Optics +1603.06302 Theory +1603.06303 Geometric Topology +1603.06306 Optimization and Control +1603.06307 Number Theory +1603.06308 Materials Science +1603.06311 Representation Theory +1603.06315 Differential Geometry +1603.06317 Robotics +1603.06319 Strongly Correlated Electrons +1603.06321 Combinatorics +1603.06327 Computer Vision and Pattern Recognition +1603.06329 Differential Geometry +1603.06335 Biomolecules +1603.06337 Analysis of PDEs +1603.06340 Machine Learning +1603.06342 Neurons and Cognition +1603.06349 Methodology +1603.06351 Information Theory +1603.06353 Neural and Evolutionary Computing +1603.06358 Methodology +1603.06359 Computer Vision and Pattern Recognition +1603.06371 History and Overview +1603.06372 Methodology +1603.06378 Probability +1603.06381 Computation +1603.06386 Statistics Theory +1603.06387 Representation Theory +1603.06388 Chaotic Dynamics +1603.06390 Robotics +1603.06394 Mesoscale and Nanoscale Physics +1603.06397 Analysis of PDEs +1603.06398 Computer Vision and Pattern Recognition +1603.06399 Cosmology and Nongalactic Astrophysics +1603.06400 Computer Vision and Pattern Recognition +1603.06401 Neurons and Cognition +1603.06405 Differential Geometry +1603.06406 Cosmology and Nongalactic Astrophysics +1603.06408 Methodology +1603.06415 Methodology +1603.06422 Logic in Computer Science +1603.06423 Materials Science +1603.06424 Mathematical Software +1603.06425 Algebraic Geometry +1603.06427 Commutative Algebra +1603.06428 Rings and Algebras +1603.06431 Analysis of PDEs +1603.06433 Computer Vision and Pattern Recognition +1603.06439 Numerical Analysis +1603.06445 Analysis of PDEs +1603.06450 Dynamical Systems +1603.06453 Theory +1603.06455 Applications +1603.06456 Fluid Dynamics +1603.06459 Artificial Intelligence +1603.06465 Systems and Control +1603.06466 Instrumentation and Detectors +1603.06469 Combinatorics +1603.06473 Statistical Mechanics +1603.06476 Applications +1603.06477 Information Theory +1603.06478 Learning +1603.06480 Dynamical Systems +1603.06483 Systems and Control +1603.06485 Artificial Intelligence +1603.06491 Classical Analysis and ODEs +1603.06494 Digital Libraries +1603.06500 Earth and Planetary Astrophysics +1603.06503 Computation and Language +1603.06504 +1603.06507 Networking and Internet Architecture +1603.06508 Fluid Dynamics +1603.06511 Numerical Analysis +1603.06513 Group Theory +1603.06517 Analysis of PDEs +1603.06525 Strongly Correlated Electrons +1603.06528 Differential Geometry +1603.06530 +1603.06531 Computer Vision and Pattern Recognition +1603.06533 Complex Variables +1603.06539 Differential Geometry +1603.06540 Instrumentation and Methods for Astrophysics +1603.06541 Machine Learning +1603.06542 Cryptography and Security +1603.06547 Logic +1603.06551 Group Theory +1603.06553 Number Theory +1603.06554 Computer Vision and Pattern Recognition +1603.06556 Probability +1603.06557 Category Theory +1603.06558 Trading and Market Microstructure +1603.06559 Geometric Topology +1603.06562 Rings and Algebras +1603.06564 Probability +physics/0310096 Biological Physics +0804.0264 Algebraic Topology +0911.0562 Pricing of Securities +1007.4531 Computer Vision and Pattern Recognition +1010.4535 Optimization and Control +1109.4994 +1202.1573 Numerical Analysis +1301.4089 Cryptography and Security +1309.6579 Representation Theory +1309.7812 Commutative Algebra +1402.6246 Data Structures and Algorithms +1403.3117 Optimization and Control +1403.4137 Algebraic Geometry +1405.5553 Solar and Stellar Astrophysics +1405.5701 Classical Analysis and ODEs +1407.0408 Phenomenology +1407.0679 Dynamical Systems +1407.2570 Materials Science +1408.5743 Number Theory +1409.7275 Computation and Language +1410.4276 Statistics Theory +1411.5116 Number Theory +1412.5548 Probability +1501.04972 Probability +1502.01941 Combinatorics +1502.02278 Metric Geometry +1502.05002 Logic +1504.01066 Commutative Algebra +1504.02784 Cosmology and Nongalactic Astrophysics +1504.04514 Analysis of PDEs +1505.00762 Logic +1505.02418 Optimization and Control +1505.02990 Group Theory +1506.04364 Learning +1507.04673 Strongly Correlated Electrons +1508.02118 +1508.07818 Probability +1509.00696 Strongly Correlated Electrons +1509.02844 Instrumentation and Detectors +1509.04423 Fluid Dynamics +1509.04678 Materials Science +1510.05502 Discrete Mathematics +1510.07330 Number Theory +1511.00280 Theory +1511.00597 Cosmology and Nongalactic Astrophysics +1511.00645 +1511.04456 +1511.05671 Information Theory +1511.05841 Phenomenology +1511.06254 Mesoscale and Nanoscale Physics +1511.09008 Cosmology and Nongalactic Astrophysics +1512.01721 Algebraic Geometry +1512.02549 Optimization and Control +1512.06116 Cosmology and Nongalactic Astrophysics +1512.08348 Combinatorics +1512.09011 Phenomenology +1601.01196 Representation Theory +1601.03453 Geometric Topology +1601.03651 Computation and Language +1601.03828 Dynamical Systems +1601.04564 Theory +1601.04975 Discrete Mathematics +1601.06149 Instrumentation and Detectors +1602.02527 Computer Science and Game Theory +1602.03687 Other Condensed Matter +1602.03752 Superconductivity +1602.03993 Commutative Algebra +1602.04141 Strongly Correlated Electrons +1602.07763 Physics and Society +1602.07844 Learning +1602.08066 Applications +1602.08182 Mesoscale and Nanoscale Physics +1602.08259 Analysis of PDEs +1602.08686 +1602.08877 Optimization and Control +1603.00638 +1603.01260 Mesoscale and Nanoscale Physics +1603.02187 Cryptography and Security +1603.02411 Mesoscale and Nanoscale Physics +1603.02456 Category Theory +1603.03394 Mesoscale and Nanoscale Physics +1603.03579 Statistical Mechanics +1603.03631 Number Theory +1603.03883 +1603.06111 Computation and Language +1603.06858 Mesoscale and Nanoscale Physics +1603.07208 Optics +1603.08104 Theory +1604.01010 Superconductivity +1604.02413 Analysis of PDEs +1604.02499 Mesoscale and Nanoscale Physics +1604.04087 Differential Geometry +1604.05080 Neurons and Cognition +1604.05476 Systems and Control +1604.06302 Discrete Mathematics +1604.08582 +1605.00213 +1605.00875 Materials Science +1605.01186 +1605.01667 Cosmology and Nongalactic Astrophysics +1605.01906 Geophysics +1605.02897 +1605.04623 Lattice +1605.05220 Commutative Algebra +1605.05737 Disordered Systems and Neural Networks +1605.06096 Information Theory +1605.07025 Machine Learning +1605.07350 +1605.07774 Computer Science and Game Theory +1606.00607 Disordered Systems and Neural Networks +1606.00798 Combinatorics +1606.01388 +1606.01464 Optics +1606.01700 Computation and Language +1606.01993 Optimization and Control +1606.03272 Functional Analysis +1606.03955 Discrete Mathematics +1606.04120 Astrophysics of Galaxies +1606.05665 Physics and Society +1606.05671 High Energy Astrophysical Phenomena +1606.06463 Strongly Correlated Electrons +1606.07138 Social and Information Networks +1606.09164 Number Theory +1606.09434 Phenomenology +1606.09502 Strongly Correlated Electrons +1607.00071 Machine Learning +1607.00125 Phenomenology +1607.00568 Strongly Correlated Electrons +1607.00970 Computation and Language +1607.01426 Computation and Language +1607.01710 Theory +1607.02195 Theory +1607.03118 +1607.03306 Databases +1607.03726 Mesoscale and Nanoscale Physics +1607.03941 +1607.06201 Data Structures and Algorithms +1607.06731 +1608.00131 Group Theory +1608.01424 Mesoscale and Nanoscale Physics +1608.01672 Operator Algebras +1608.02491 Instrumentation and Methods for Astrophysics +1608.02812 Methodology +1608.02952 Theory +1608.03149 Solar and Stellar Astrophysics +1608.04400 Fluid Dynamics +1608.04837 Robotics +1608.05220 Fluid Dynamics +1608.05854 Astrophysics of Galaxies +1608.06720 Functional Analysis +1608.06910 Artificial Intelligence +1608.08163 Geometric Topology +1608.08454 Information Theory +1609.00043 +1609.00397 +1609.00644 Chemical Physics +1609.01478 Mesoscale and Nanoscale Physics +1609.03398 Number Theory +1609.04729 Theory +1609.04733 Atomic Physics +1609.05088 Materials Science +1609.05169 Analysis of PDEs +1609.05612 +1609.05946 Classical Analysis and ODEs +1609.06398 +1609.06788 Rings and Algebras +1609.06987 Medical Physics +1609.07152 Learning +1609.07299 Data Analysis, Statistics and Probability +1609.07718 +1609.07927 Rings and Algebras +1609.08346 Instrumentation and Methods for Astrophysics +1609.08352 Quantum Gases +1609.08431 Databases +1609.08886 Machine Learning +1609.09508 Plasma Physics +1610.00192 Information Retrieval +1610.00373 Group Theory +1610.00725 Instrumentation and Detectors +1610.00807 Number Theory +1610.00958 Optics +1610.00972 Solar and Stellar Astrophysics +1610.01120 +1610.01394 Computer Vision and Pattern Recognition +1610.01454 +1610.01548 +1610.01586 Information Theory +1610.02072 Data Structures and Algorithms +1610.02551 Distributed, Parallel, and Cluster Computing +1610.02701 Optimization and Control +1610.02842 Strongly Correlated Electrons +1610.03098 Computation and Language +1610.03294 +1610.03299 +1610.03378 Data Analysis, Statistics and Probability +1610.03475 Information Theory +1610.03484 Computational Engineering, Finance, and Science +1610.03492 Astrophysics of Galaxies +1610.03533 Materials Science +1610.03722 Materials Science +1610.03825 Geometric Topology +1610.03832 Atomic Physics +1610.03839 Optimization and Control +1610.03845 Instrumentation and Detectors +1610.03849 Phenomenology +1610.03850 Astrophysics of Galaxies +1610.03854 Cosmology and Nongalactic Astrophysics +1610.03857 Astrophysics of Galaxies +1610.03862 Logic +1610.03864 Optics +1610.03865 Instrumentation and Methods for Astrophysics +1610.03867 Solar and Stellar Astrophysics +1610.03868 Operator Algebras +1610.03869 Functional Analysis +1610.03870 Differential Geometry +1610.03871 Optimization and Control +1610.03873 Combinatorics +1610.03875 Instrumentation and Detectors +1610.03876 Instrumentation and Methods for Astrophysics +1610.03878 Classical Physics +1610.03879 Fluid Dynamics +1610.03884 Analysis of PDEs +1610.03885 High Energy Astrophysical Phenomena +1610.03887 Probability +1610.03888 Combinatorics +1610.03889 Symplectic Geometry +1610.03891 Differential Geometry +1610.03892 Information Theory +1610.03894 Phenomenology +1610.03898 Computer Vision and Pattern Recognition +1610.03900 Number Theory +1610.03901 Social and Information Networks +1610.03903 Optics +1610.03904 Strongly Correlated Electrons +1610.03905 Computational Physics +1610.03907 Algebraic Topology +1610.03909 +1610.03910 Analysis of PDEs +1610.03915 Populations and Evolution +1610.03916 +1610.03917 Applications +1610.03918 Plasma Physics +1610.03919 +1610.03923 Differential Geometry +1610.03924 Combinatorics +1610.03927 Methodology +1610.03928 Social and Information Networks +1610.03929 Functional Analysis +1610.03930 Populations and Evolution +1610.03931 Commutative Algebra +1610.03932 Computational Engineering, Finance, and Science +1610.03935 Logic in Computer Science +1610.03936 Physics and Society +1610.03937 Geometric Topology +1610.03938 Methodology +1610.03939 Computation +1610.03943 Geometric Topology +1610.03944 Methodology +1610.03945 Statistics Theory +1610.03946 Computation and Language +1610.03948 Operator Algebras +1610.03950 Computation and Language +1610.03952 Theory +1610.03953 Materials Science +1610.03954 +1610.03955 Computation and Language +1610.03956 Analysis of PDEs +1610.03958 Portfolio Management +1610.03959 Combinatorics +1610.03960 Software Engineering +1610.03962 History and Overview +1610.03963 Probability +1610.03965 Functional Analysis +1610.03966 Functional Analysis +1610.03967 Strongly Correlated Electrons +1610.03968 Strongly Correlated Electrons +1610.03970 Algebraic Topology +1610.03971 Formal Languages and Automata Theory +1610.03976 Dynamical Systems +1610.03977 Rings and Algebras +1610.03978 +1610.03981 Disordered Systems and Neural Networks +1610.03983 Materials Science +1610.03984 Number Theory +1610.03986 Subcellular Processes +1610.03987 Solar and Stellar Astrophysics +1610.03988 Machine Learning +1610.03990 Information Theory +1610.03992 Rings and Algebras +1610.03993 Optics +1610.03996 Learning +1610.03999 Combinatorics +1610.04001 Dynamical Systems +1610.04002 Information Retrieval +1610.04003 Numerical Analysis +1610.04005 Artificial Intelligence +1610.04010 Data Structures and Algorithms +1610.04011 Materials Science +1610.04012 Data Structures and Algorithms +1610.04013 +1610.04015 Analysis of PDEs +1610.04018 Soft Condensed Matter +1610.04019 Machine Learning +1610.04020 Number Theory +1610.04023 Functional Analysis +1610.04024 Soft Condensed Matter +1610.04025 Cryptography and Security +1610.04027 Information Theory +1610.04028 Artificial Intelligence +1610.04031 Metric Geometry +1610.04039 Logic +1610.04041 Molecular Networks +1610.04042 Systems and Control +1610.04046 Populations and Evolution +1610.04049 Dynamical Systems +1610.04050 Logic +1610.04051 Mathematical Finance +1610.04052 Statistics Theory +1610.04055 Data Structures and Algorithms +1610.04056 Information Theory +1610.04057 Computer Vision and Pattern Recognition +1610.04058 Analysis of PDEs +1610.04062 Computer Vision and Pattern Recognition +1610.04064 Cryptography and Security +1610.04065 Cryptography and Security +1610.04066 +1610.04067 Functional Analysis +1610.04068 Mesoscale and Nanoscale Physics +1610.04070 Numerical Analysis +1610.04071 Computer Science and Game Theory +1610.04072 +1610.04073 Artificial Intelligence +1610.04074 Phenomenology +1610.04075 Phenomenology +1610.04076 Systems and Control +1610.04077 Algebraic Geometry +1610.04078 Methodology +1610.04079 Computer Vision and Pattern Recognition +1610.04083 Computational Physics +1610.04086 Information Retrieval +1610.04087 +1610.04088 +1610.04090 History and Overview +1610.04091 Systems and Control +1610.04094 +1610.04097 Computer Vision and Pattern Recognition +1610.04100 Functional Analysis +1610.04103 Representation Theory +1610.04105 Quantum Algebra +1610.04107 Applications +1610.04108 +1610.04109 Experiment +1610.04110 Superconductivity +1610.04114 Computational Physics +1610.04115 Information Theory +1610.04116 Other Quantitative Biology +1610.04117 Algebraic Geometry +1610.04118 Operator Algebras +1610.04119 Materials Science +1610.04120 Artificial Intelligence +1610.04121 Computer Vision and Pattern Recognition +1610.04122 Representation Theory +1610.04124 Computer Vision and Pattern Recognition +1610.04127 Analysis of PDEs +1610.04129 Mesoscale and Nanoscale Physics +1610.04130 Phenomenology +1610.04131 Phenomenology +1610.04134 Neurons and Cognition +1610.04135 Statistics Theory +1610.04136 Materials Science +1610.04137 Representation Theory +1610.04138 +1610.04139 Accelerator Physics +1610.04140 Instrumentation and Methods for Astrophysics +1610.04141 Human-Computer Interaction +1610.04142 Software Engineering +1610.04143 Group Theory +1610.04144 Theory +1610.04147 Analysis of PDEs +1610.04148 Plasma Physics +1610.04151 Materials Science +1610.04152 Emerging Technologies +1610.04153 Materials Science +1610.04155 +1610.04156 Mesoscale and Nanoscale Physics +1610.04158 Analysis of PDEs +1610.04159 Materials Science +1610.04160 Genomics +1610.04162 Functional Analysis +1610.04164 Mesoscale and Nanoscale Physics +1610.04165 Functional Analysis +1610.04166 Superconductivity +1610.04168 Mesoscale and Nanoscale Physics +1610.04169 Materials Science +1610.04170 Social and Information Networks +1610.04172 Analysis of PDEs +1610.04173 Instrumentation and Methods for Astrophysics +1610.04174 Information Theory +1610.04175 Physics and Society +1610.04176 Mesoscale and Nanoscale Physics +1610.04178 Instrumentation and Methods for Astrophysics +1610.04179 Optics +1610.04182 Dynamical Systems +1610.04183 Fluid Dynamics +1610.04184 Materials Science +1610.04185 Algebraic Geometry +1610.04186 Mesoscale and Nanoscale Physics +1610.04187 Combinatorics +1610.04188 Lattice +1610.04189 Cosmology and Nongalactic Astrophysics +1610.04191 Experiment +1610.04192 Information Theory +1610.04194 Optimization and Control +1610.04195 Probability +1610.04201 Neurons and Cognition +1610.04203 Networking and Internet Architecture +1610.04206 Combinatorics +1610.04208 Solar and Stellar Astrophysics +1610.04213 Robotics +1610.04216 Theory +1610.04217 Discrete Mathematics +1610.04220 Experiment +1610.04223 +cond-mat/0409538 Statistical Mechanics +hep-th/0009081 Theory +math/0112027 Differential Geometry +math/0401099 General Mathematics +0705.2524 +0709.1917 +0709.2348 Theory +0709.2447 +0710.0411 Theory +0710.0701 +0711.2519 Phenomenology +0711.3822 +0801.1711 +0802.3785 Phenomenology +0803.2228 +0804.0269 Phenomenology +0903.5459 Quantum Gases +0908.1721 Optics +1006.1010 +1012.0849 High Energy Astrophysical Phenomena +1105.2328 Combinatorics +1110.0651 Algebraic Topology +1110.3617 Materials Science +1110.6202 Cosmology and Nongalactic Astrophysics +1205.4450 Computer Vision and Pattern Recognition +1205.6724 Materials Science +1206.4284 Category Theory +1209.4005 Materials Science +1212.6498 Algebraic Topology +1301.1820 +1302.2211 Materials Science +1303.1978 Astrophysics of Galaxies +1303.6219 Theory +1304.1211 General Topology +1307.4331 Phenomenology +1308.0790 Algebraic Geometry +1309.6567 Phenomenology +1310.1562 Machine Learning +1310.3474 Cosmology and Nongalactic Astrophysics +1311.5052 Methodology +1311.5239 Materials Science +1312.0468 Statistical Mechanics +1312.6904 Algebraic Geometry +1401.2458 Earth and Planetary Astrophysics +1401.6488 Cryptography and Security +1401.6635 Algebraic Geometry +1402.1700 Statistics Theory +1402.4182 Software Engineering +1402.5357 Algebraic Geometry +1404.0417 Software Engineering +1404.6437 Materials Science +1405.0609 Mesoscale and Nanoscale Physics +1405.6309 Materials Science +1406.4388 Other Condensed Matter +1408.3927 Functional Analysis +1408.5210 Combinatorics +1409.7115 Algebraic Geometry +1410.0247 Methodology +1410.1139 Differential Geometry +1410.3479 Astrophysics of Galaxies +1411.7905 Analysis of PDEs +1412.0317 K-Theory and Homology +1412.5167 Group Theory +1502.05831 Distributed, Parallel, and Cluster Computing +1503.02205 Algebraic Geometry +1503.03869 Computational Physics +1503.08882 Number Theory +1504.03129 Geometric Topology +1504.04097 Strongly Correlated Electrons +1504.05209 Astrophysics of Galaxies +1504.06461 Robotics +1504.07210 Mesoscale and Nanoscale Physics +1504.08016 Functional Analysis +1505.07507 Soft Condensed Matter +1506.03282 Data Structures and Algorithms +1506.05128 Theory +1507.04691 K-Theory and Homology +1507.06036 Mesoscale and Nanoscale Physics +1507.07045 Computer Science and Game Theory +1508.05476 Statistics Theory +1508.06175 Optimization and Control +1508.06299 +1508.06414 Metric Geometry +1509.00410 +1509.02729 Theory +1509.02855 Probability +1509.04887 Computer Vision and Pattern Recognition +1509.05409 Cosmology and Nongalactic Astrophysics +1509.06231 Numerical Analysis +1509.06705 Spectral Theory +1509.07768 Statistical Mechanics +1509.07877 Instrumentation and Methods for Astrophysics +1509.08115 High Energy Astrophysical Phenomena +1509.08133 Chaotic Dynamics +1509.08161 Optimization and Control +1509.08568 Optimization and Control +1510.02477 Astrophysics of Galaxies +1510.04354 +1510.04822 Machine Learning +1510.06129 Cosmology and Nongalactic Astrophysics +1510.07053 Phenomenology +1510.07202 Logic +1510.08299 Biological Physics +1511.01103 Theory +1511.01586 Strongly Correlated Electrons +1511.02577 Materials Science +1511.03714 Theory +1511.04430 Phenomenology +1511.04779 Analysis of PDEs +1511.05512 Computer Vision and Pattern Recognition +1511.07697 Representation Theory +1511.09243 Dynamical Systems +1512.00113 Solar and Stellar Astrophysics +1512.00262 +1512.00277 +1512.00394 Analysis of PDEs +1512.00505 +1512.02109 +1512.02136 +1512.03834 Astrophysics of Galaxies +1512.04287 Analysis of PDEs +1512.04691 Number Theory +1512.05331 +1512.05655 Astrophysics of Galaxies +1512.08519 Strongly Correlated Electrons +1512.08597 Strongly Correlated Electrons +1601.01888 Experiment +1601.02544 +1601.03009 Earth and Planetary Astrophysics +1601.03205 Strongly Correlated Electrons +1601.03790 Information Theory +1601.04092 Astrophysics of Galaxies +1601.04624 Theory +1601.04635 Phenomenology +1601.05402 Astrophysics of Galaxies +1601.05538 Mesoscale and Nanoscale Physics +1601.05945 Earth and Planetary Astrophysics +1601.06179 Exactly Solvable and Integrable Systems +1601.06534 High Energy Astrophysical Phenomena +1601.06547 Number Theory +1601.06821 Differential Geometry +1602.00696 +1602.02230 Strongly Correlated Electrons +1602.03370 Statistical Mechanics +1602.04066 Soft Condensed Matter +1602.04729 Functional Analysis +1602.05100 Databases +1602.05125 Methodology +1602.05839 Statistical Mechanics +1602.06028 Statistics Theory +1602.06129 Lattice +1602.06472 Cosmology and Nongalactic Astrophysics +1603.00197 Combinatorics +1603.00604 Phenomenology +1603.01379 Analysis of PDEs +1603.01637 Instrumentation and Detectors +1603.01952 Phenomenology +1603.02927 Networking and Internet Architecture +1603.03432 Astrophysics of Galaxies +1603.03932 Soft Condensed Matter +1603.04779 Computer Vision and Pattern Recognition +1603.04828 Soft Condensed Matter +1603.04898 Quantum Gases +1603.05111 Optimization and Control +1603.05391 Mesoscale and Nanoscale Physics +1603.05584 Information Theory +1603.05677 Earth and Planetary Astrophysics +1603.07288 High Energy Astrophysical Phenomena +1603.07660 Systems and Control +1603.08274 Optimization and Control +1603.09718 Strongly Correlated Electrons +1604.00398 Solar and Stellar Astrophysics +1604.00960 Computational Geometry +1604.01111 Strongly Correlated Electrons +1604.01708 Classical Physics +1604.01754 Theory +1604.02891 Lattice +1604.02986 Networking and Internet Architecture +1604.02996 +1604.03714 Optimization and Control +1604.03772 Theory +1604.04179 Mesoscale and Nanoscale Physics +1604.04236 Dynamical Systems +1604.04299 Phenomenology +1604.04350 +1604.04406 Experiment +1604.05325 Theory +1604.06430 Phenomenology +1604.07113 Dynamical Systems +1604.07367 +1604.07818 Theory +1604.07848 High Energy Astrophysical Phenomena +1604.08595 Phenomenology +1604.08710 High Energy Astrophysical Phenomena +1604.08830 Analysis of PDEs +1605.00208 Experiment +1605.00291 Combinatorics +1605.00527 +1605.00669 Probability +1605.01056 Cosmology and Nongalactic Astrophysics +1605.01119 Dynamical Systems +1605.01475 Cosmology and Nongalactic Astrophysics +1605.01672 Superconductivity +1605.01763 Statistical Mechanics +1605.01975 +1605.02274 Quantum Gases +1605.02842 Astrophysics of Galaxies +1605.03120 Phenomenology +1605.03849 Statistical Mechanics +1605.04024 Phenomenology +1605.04113 Materials Science +1605.04132 Statistical Mechanics +1605.04405 Statistical Mechanics +1605.04952 Solar and Stellar Astrophysics +1605.05151 +1605.05235 High Energy Astrophysical Phenomena +1605.05350 Statistical Mechanics +1605.05368 Learning +1605.05707 Chemical Physics +1605.05986 Astrophysics of Galaxies +1605.06475 Mesoscale and Nanoscale Physics +1605.06519 Astrophysics of Galaxies +1605.06744 Numerical Analysis +1605.07616 High Energy Astrophysical Phenomena +1605.07693 Other Condensed Matter +1605.07747 Optimization and Control +1605.07816 Mesoscale and Nanoscale Physics +1605.08456 Numerical Analysis +1605.08768 Cosmology and Nongalactic Astrophysics +1605.08864 Networking and Internet Architecture +1605.09129 Theory +1605.09358 Other Condensed Matter +1605.09495 Astrophysics of Galaxies +1605.09734 Astrophysics of Galaxies +1605.09764 Mesoscale and Nanoscale Physics +1606.00194 High Energy Astrophysical Phenomena +1606.00314 High Energy Astrophysical Phenomena +1606.01868 Artificial Intelligence +1606.02635 Operating Systems +1606.02647 Learning +1606.02670 Algebraic Geometry +1606.02968 Mesoscale and Nanoscale Physics +1606.03039 Numerical Analysis +1606.03747 Cosmology and Nongalactic Astrophysics +1606.03808 Phenomenology +1606.04070 Other Condensed Matter +1606.04395 Materials Science +1606.04489 High Energy Astrophysical Phenomena +1606.04951 Lattice +1606.05263 +1606.05509 Solar and Stellar Astrophysics +1606.05608 Data Structures and Algorithms +1606.05821 Disordered Systems and Neural Networks +1606.06179 Statistics Theory +1606.06570 Distributed, Parallel, and Cluster Computing +1606.06579 Astrophysics of Galaxies +1606.06821 +1606.07072 Mesoscale and Nanoscale Physics +1606.07077 Astrophysics of Galaxies +1606.07114 Cosmology and Nongalactic Astrophysics +1606.07331 Strongly Correlated Electrons +1606.07546 Earth and Planetary Astrophysics +1606.07635 +1606.07691 Strongly Correlated Electrons +1606.07812 Phenomenology +1606.07938 Strongly Correlated Electrons +1606.08599 Mesoscale and Nanoscale Physics +1606.08744 Cosmology and Nongalactic Astrophysics +1606.08779 Statistical Mechanics +1606.08893 Data Structures and Algorithms +1606.09020 Solar and Stellar Astrophysics +1606.09206 Networking and Internet Architecture +1607.00095 +1607.00115 Instrumentation and Methods for Astrophysics +1607.00244 Phenomenology +1607.00250 +1607.00416 High Energy Astrophysical Phenomena +1607.00496 +1607.01506 Mesoscale and Nanoscale Physics +1607.01557 Number Theory +1607.01675 Phenomenology +1607.01718 Machine Learning +1607.01944 Physics and Society +1607.02353 High Energy Astrophysical Phenomena +1607.02476 +1607.02663 High Energy Astrophysical Phenomena +1607.02892 Soft Condensed Matter +1607.03382 +1607.03411 Theory +1607.03535 Astrophysics of Galaxies +1607.03687 Neurons and Cognition +1607.04007 +1607.04205 Theory +1607.04361 Analysis of PDEs +1607.04405 +1607.04414 Superconductivity +1607.04468 +1607.04553 Trading and Market Microstructure +1607.04556 Fluid Dynamics +1607.04658 Number Theory +1607.04706 Instrumentation and Methods for Astrophysics +1607.04762 Strongly Correlated Electrons +1607.05000 High Energy Astrophysical Phenomena +1607.05095 +1607.05254 Quantum Gases +1607.05379 Theory +1607.05677 Cosmology and Nongalactic Astrophysics +1607.06084 Theory +1607.06159 +1607.06268 Formal Languages and Automata Theory +1607.06354 Phenomenology +1607.06368 Solar and Stellar Astrophysics +1607.06396 Phenomenology +1607.06463 Theory +1607.06710 Earth and Planetary Astrophysics +1607.06904 Phenomenology +1607.06995 Theory +1607.07296 Cosmology and Nongalactic Astrophysics +1607.07688 Strongly Correlated Electrons +1607.07691 Materials Science +1607.07692 Solar and Stellar Astrophysics +1607.07735 High Energy Astrophysical Phenomena +1607.08076 Plasma Physics +1607.08229 Mesoscale and Nanoscale Physics +1607.08251 Phenomenology +1607.08487 High Energy Astrophysical Phenomena +1607.08564 Algebraic Geometry +1607.08614 Phenomenology +1607.08688 Phenomenology +1608.00013 Solar and Stellar Astrophysics +1608.00119 Theory +1608.00123 Solar and Stellar Astrophysics +1608.00240 Solar and Stellar Astrophysics +1608.00465 Astrophysics of Galaxies +1608.00711 Astrophysics of Galaxies +1608.00864 Quantum Gases +1608.01326 Quantum Gases +1608.01329 Cosmology and Nongalactic Astrophysics +1608.01768 Earth and Planetary Astrophysics +1608.01837 Optics +1608.01844 Sound +1608.02058 Computational Physics +1608.02471 Statistical Mechanics +1608.02583 High Energy Astrophysical Phenomena +1608.02584 Astrophysics of Galaxies +1608.02741 Optimization and Control +1608.02975 Astrophysics of Galaxies +1608.02981 Materials Science +1608.03169 Cosmology and Nongalactic Astrophysics +1608.03218 Theory +1608.03232 High Energy Astrophysical Phenomena +1608.03531 High Energy Astrophysical Phenomena +1608.03571 Earth and Planetary Astrophysics +1608.03621 Earth and Planetary Astrophysics +1608.03683 Astrophysics of Galaxies +1608.03709 Theory +1608.03799 Solar and Stellar Astrophysics +1608.03879 Mesoscale and Nanoscale Physics +1608.04432 Solar and Stellar Astrophysics +1608.04781 Astrophysics of Galaxies +1608.05158 Astrophysics of Galaxies +1608.05348 High Energy Astrophysical Phenomena +1608.05593 Instrumentation and Methods for Astrophysics +1608.05750 Astrophysics of Galaxies +1608.05804 Statistical Mechanics +1608.05853 Solar and Stellar Astrophysics +1608.06015 Solar and Stellar Astrophysics +1608.06092 +1608.06464 High Energy Astrophysical Phenomena +1608.06480 Astrophysics of Galaxies +1608.06499 Programming Languages +1608.06857 Cosmology and Nongalactic Astrophysics +1608.06962 +1608.07107 Solar and Stellar Astrophysics +1608.07172 Solar and Stellar Astrophysics +1608.07184 High Energy Astrophysical Phenomena +1608.07211 Atomic Physics +1608.07212 High Energy Astrophysical Phenomena +1608.07252 Instrumentation and Methods for Astrophysics +1608.07271 Phenomenology +1608.07798 Solar and Stellar Astrophysics +1608.08030 Algebraic Geometry +1608.08129 Astrophysics of Galaxies +1608.08224 High Energy Astrophysical Phenomena +1608.08361 Instrumentation and Methods for Astrophysics +1608.08414 Physics and Society +1608.08544 Earth and Planetary Astrophysics +1608.08741 Solar and Stellar Astrophysics +1608.08811 +1609.00009 Astrophysics of Galaxies +1609.00016 Earth and Planetary Astrophysics +1609.00146 Instrumentation and Methods for Astrophysics +1609.00252 Chemical Physics +1609.00323 +1609.00353 Theory +1609.00388 Astrophysics of Galaxies +1609.00470 Mesoscale and Nanoscale Physics +1609.00551 Earth and Planetary Astrophysics +1609.01004 Theory +1609.01079 Instrumentation and Methods for Astrophysics +1609.01095 High Energy Astrophysical Phenomena +1609.01130 Solar and Stellar Astrophysics +1609.01168 Astrophysics of Galaxies +1609.01700 Number Theory +1609.01742 Astrophysics of Galaxies +1609.01961 Computer Science and Game Theory +1609.02019 Instrumentation and Methods for Astrophysics +1609.02085 Earth and Planetary Astrophysics +1609.02203 High Energy Astrophysical Phenomena +1609.02477 Instrumentation and Methods for Astrophysics +1609.02508 High Energy Astrophysical Phenomena +1609.03725 +1609.04027 Earth and Planetary Astrophysics +1609.04063 Solar and Stellar Astrophysics +1609.04472 Materials Science +1609.04677 Earth and Planetary Astrophysics +1609.05413 Computers and Society +1609.05702 Networking and Internet Architecture +1609.05816 Phenomenology +1609.06337 Earth and Planetary Astrophysics +1609.06388 Instrumentation and Methods for Astrophysics +1609.06794 +1609.07129 High Energy Astrophysical Phenomena +1609.07188 Astrophysics of Galaxies +1609.07527 High Energy Astrophysical Phenomena +1609.07907 Information Theory +1609.08362 Soft Condensed Matter +1609.08685 Graphics +1609.08791 Solar and Stellar Astrophysics +1609.09030 Theory +1610.00280 Metric Geometry +1610.00303 Strongly Correlated Electrons +1610.00649 Solar and Stellar Astrophysics +1610.00844 Machine Learning +1610.00909 Soft Condensed Matter +1610.01181 Superconductivity +1610.01195 Number Theory +1610.01205 Algebraic Geometry +1610.01213 Programming Languages +1610.01373 High Energy Astrophysical Phenomena +1610.01378 High Energy Astrophysical Phenomena +1610.01736 Mesoscale and Nanoscale Physics +1610.02279 +1610.02369 +1610.03170 +1610.03550 Earth and Planetary Astrophysics +1610.03949 Differential Geometry +1610.03957 Computers and Society +1610.04038 Earth and Planetary Astrophysics +1610.04089 Tissues and Organs +1610.04106 Astrophysics of Galaxies +1610.04149 Representation Theory +1610.04270 High Energy Astrophysical Phenomena +1610.04448 +1610.04722 Chaotic Dynamics +1610.04911 Phenomenology +1610.05222 Mesoscale and Nanoscale Physics +1610.05428 +1610.05581 Rings and Algebras +1610.06111 Symplectic Geometry +1610.06318 Earth and Planetary Astrophysics +1610.06464 Theory +1610.06789 General Physics +1610.07279 Instrumentation and Methods for Astrophysics +1610.07916 Theory +1610.08578 +1610.08824 Numerical Analysis +1610.09220 Plasma Physics +1610.09265 Materials Science +1610.09494 Materials Science +1610.09598 Strongly Correlated Electrons +1610.09614 +1610.09938 +1610.09961 +1610.10094 Instrumentation and Methods for Astrophysics +1611.00486 Astrophysics of Galaxies +1611.00669 +1611.00746 Astrophysics of Galaxies +1611.00835 Solar and Stellar Astrophysics +1611.00901 Materials Science +1611.01154 Theory +1611.01164 Adaptation and Self-Organizing Systems +1611.01193 Lattice +1611.01221 Cosmology and Nongalactic Astrophysics +1611.01556 Operator Algebras +1611.01574 +1611.01667 Programming Languages +1611.01710 Data Structures and Algorithms +1611.01760 High Energy Astrophysical Phenomena +1611.01775 Instrumentation and Methods for Astrophysics +1611.01788 Commutative Algebra +1611.01802 Artificial Intelligence +1611.01944 Optimization and Control +1611.01960 Cryptography and Security +1611.01974 Information Retrieval +1611.02038 Optics +1611.02077 +1611.02091 Computation and Language +1611.02267 Category Theory +1611.02273 Software Engineering +1611.02274 Mathematical Software +1611.02275 Distributed, Parallel, and Cluster Computing +1611.02276 Other Quantitative Biology +1611.02277 Cell Behavior +1611.02279 Earth and Planetary Astrophysics +1611.02281 Astrophysics of Galaxies +1611.02284 +1611.02286 Astrophysics of Galaxies +1611.02288 Strongly Correlated Electrons +1611.02293 Phenomenology +1611.02294 +1611.02298 Chaotic Dynamics +1611.02299 Instrumentation and Detectors +1611.02300 Materials Science +1611.02305 Social and Information Networks +1611.02307 Materials Science +1611.02308 Data Structures and Algorithms +1611.02309 Soft Condensed Matter +1611.02310 +1611.02312 Lattice +1611.02313 Classical Analysis and ODEs +1611.02314 Methodology +1611.02315 Learning +1611.02316 Numerical Analysis +1611.02320 Neural and Evolutionary Computing +1611.02322 Physics Education +1611.02323 Computational Geometry +1611.02327 Optimization and Control +1611.02328 Phenomenology +1611.02329 Computer Science and Game Theory +1611.02333 Probability +1611.02334 Probability +1611.02335 Statistics Theory +1611.02336 Information Theory +1611.02337 Information Retrieval +1611.02338 Systems and Control +1611.02339 Analysis of PDEs +1611.02340 +1611.02342 Algebraic Geometry +1611.02343 Robotics +1611.02346 Optics +1611.02347 Differential Geometry +1611.02350 Dynamical Systems +1611.02351 Discrete Mathematics +1611.02352 Soft Condensed Matter +1611.02355 Information Theory +1611.02356 +1611.02357 Complex Variables +1611.02359 Materials Science +1611.02361 Computation and Language +1611.02362 Plasma Physics +1611.02363 Symplectic Geometry +1611.02365 Machine Learning +1611.02367 Methodology +1611.02370 Networking and Internet Architecture +1611.02371 Algebraic Geometry +1611.02373 Mesoscale and Nanoscale Physics +1611.02374 Materials Science +1611.02375 Computational Physics +1611.02376 History and Overview +1611.02377 Number Theory +1611.02379 Discrete Mathematics +1611.02380 Information Theory +1611.02381 Optimization and Control +1611.02384 Differential Geometry +1611.02385 Artificial Intelligence +1611.02387 Phenomenology +1611.02388 Social and Information Networks +1611.02390 Differential Geometry +1611.02391 Strongly Correlated Electrons +1611.02392 Programming Languages +1611.02393 +1611.02395 Mesoscale and Nanoscale Physics +1611.02396 Experiment +1611.02399 Materials Science +1611.02400 Discrete Mathematics +1611.02403 Applications +1611.02404 Disordered Systems and Neural Networks +1611.02406 Atomic Physics +1611.02408 Optimization and Control +1611.02410 Optimization and Control +1611.02412 Physics and Society +1611.02413 Lattice +1611.02414 High Energy Astrophysical Phenomena +1611.02415 +1611.02416 Learning +1611.02419 Physics and Society +1611.02420 History and Philosophy of Physics +1611.02421 Computers and Society +1611.02423 Number Theory +1611.02424 Number Theory +1611.02425 Combinatorics +1611.02427 +1611.02428 Experiment +1611.02429 Software Engineering +1611.02430 +1611.02432 Materials Science +1611.02433 Methodology +1611.02434 Probability +1611.02436 Phenomenology +1611.02439 Artificial Intelligence +1611.02440 Machine Learning +1611.02441 +1611.02443 Computer Vision and Pattern Recognition +1611.02444 +1611.02445 Distributed, Parallel, and Cluster Computing +1611.02446 Combinatorics +1611.02448 Astrophysics of Galaxies +1611.02450 Hardware Architecture +1611.02451 Soft Condensed Matter +1611.02453 Artificial Intelligence +1611.02454 Experiment +1611.02455 Combinatorics +1611.02457 Earth and Planetary Astrophysics +1611.02458 Materials Science +1611.02459 Human-Computer Interaction +1611.02460 Discrete Mathematics +1611.02461 Chemical Physics +1611.02463 Information Theory +1611.02464 Mesoscale and Nanoscale Physics +1611.02465 Numerical Analysis +1611.02466 Commutative Algebra +1611.02468 Commutative Algebra +1611.02469 Commutative Algebra +1611.02470 Complex Variables +1611.02471 Commutative Algebra +1611.02472 Information Theory +1611.02473 Probability +1611.02474 Analysis of PDEs +1611.02475 Algebraic Geometry +1611.02478 Complex Variables +1611.02480 Methodology +1611.02481 Instrumentation and Methods for Astrophysics +1611.02482 Quantitative Methods +1611.02483 Mesoscale and Nanoscale Physics +1611.02484 Functional Analysis +1611.02485 Theory +1611.02486 Representation Theory +1611.02487 Classical Analysis and ODEs +1611.02488 Networking and Internet Architecture +1611.02491 Networking and Internet Architecture +1611.02492 Computation +1611.02493 Digital Libraries +1611.02494 Networking and Internet Architecture +1611.02495 Probability +1611.02496 Distributed, Parallel, and Cluster Computing +1611.02499 Lattice +1611.02501 Group Theory +1611.02503 Materials Science +1611.02504 +1611.02506 Data Structures and Algorithms +1611.02507 Theory +1611.02510 Mesoscale and Nanoscale Physics +1611.02512 Artificial Intelligence +1611.02514 +1611.02515 +1611.02516 Software Engineering +1611.02518 Systems and Control +1611.02521 +1611.02523 Strongly Correlated Electrons +1611.02525 Computer Vision and Pattern Recognition +1611.02527 Logic +1611.02528 Logic in Computer Science +1611.02530 Applications +1611.02531 Logic +1611.02533 Lattice +1611.02534 Logic +1611.02537 Networking and Internet Architecture +1611.02538 Molecular Networks +1611.02539 Phenomenology +1611.02540 Functional Analysis +1611.02542 Logic +1611.02543 Logic +1611.02544 Strongly Correlated Electrons +1611.02545 Combinatorics +1611.02547 Economics +1611.02548 Superconductivity +1611.02549 Statistical Finance +1611.02550 Computation and Language +1611.02551 Rings and Algebras +1611.02552 Information Theory +1611.02553 Complex Variables +1611.02555 High Energy Astrophysical Phenomena +1611.02556 Statistical Finance +1611.02557 +1611.02563 Geometric Topology +1611.02564 General Physics +1611.02565 Physics and Society +1611.02566 General Physics +1611.02567 General Physics +1611.02569 Symbolic Computation +1611.02573 General Physics +1611.02576 General Physics +1611.02577 Cosmology and Nongalactic Astrophysics +1611.02579 Solar and Stellar Astrophysics +1611.02580 Soft Condensed Matter +1611.02581 Optics +1611.02582 Number Theory +1611.02583 Methodology +1611.02584 Functional Analysis +1611.02587 Group Theory +1611.02591 Algebraic Topology +1611.02592 Lattice +1611.02593 Other Condensed Matter +1611.02594 +1611.02596 Instrumentation and Methods for Astrophysics +1611.02597 Tissues and Organs +1611.02601 Number Theory +1611.02603 Systems and Control +1611.02606 Mesoscale and Nanoscale Physics +1611.02608 Probability +1611.02609 Methodology +1611.02610 Probability +1611.02614 Networking and Internet Architecture +1611.02616 Networking and Internet Architecture +1611.02617 Physics and Society +1611.02619 Software Engineering +1611.02620 +1611.02622 Theory +1611.02623 Numerical Analysis +1611.02624 Networking and Internet Architecture +1611.02626 +1611.02628 Networking and Internet Architecture +1611.02629 Information Theory +1611.02633 Materials Science +1611.02634 Solar and Stellar Astrophysics +1611.02636 Computational Physics +1611.02637 Computer Vision and Pattern Recognition +1611.02640 Analysis of PDEs +1611.02642 Networking and Internet Architecture +1611.02644 Computer Vision and Pattern Recognition +1611.02645 Rings and Algebras +1611.02646 Artificial Intelligence +1611.02649 Number Theory +1611.02650 +1611.02651 Exactly Solvable and Integrable Systems +1611.02652 Space Physics +1611.02653 Functional Analysis +1611.02654 Computation and Language +1611.02655 Numerical Analysis +1611.02656 Molecular Networks +1611.02657 Astrophysics of Galaxies +1611.02658 Plasma Physics +1611.02659 Other Computer Science +1611.02660 Information Theory +1611.02661 Astrophysics of Galaxies +1611.02662 General Physics +1611.02663 Data Structures and Algorithms +1611.02665 Distributed, Parallel, and Cluster Computing +1611.02666 Human-Computer Interaction +1611.02667 Representation Theory +1611.02668 Number Theory +1611.02669 Instrumentation and Detectors +1611.02670 Functional Analysis +1611.02673 History and Philosophy of Physics +1611.02674 Algebraic Geometry +1611.02675 Cryptography and Security +1611.02676 Symplectic Geometry +1611.02678 Accelerator Physics +1611.02679 Geometric Topology +1611.02680 +1611.02682 Human-Computer Interaction +1611.02683 Computation and Language +1611.02684 Materials Science +1611.02685 Group Theory +1611.02686 Statistics Theory +1611.02687 Solar and Stellar Astrophysics +1611.02688 Combinatorics +1611.02690 Methodology +astro-ph/0401010 +astro-ph/0401277 +astro-ph/0401296 +astro-ph/0401342 +astro-ph/0401590 +astro-ph/0401624 +astro-ph/0401632 +astro-ph/0402032 +astro-ph/0402058 +astro-ph/0402101 +astro-ph/0402178 +astro-ph/0402179 +astro-ph/0402369 +astro-ph/0402438 +astro-ph/0402677 +astro-ph/0403008 +astro-ph/0403096 +astro-ph/0403110 +astro-ph/0403290 +astro-ph/0403586 +astro-ph/0404064 +astro-ph/0404122 +astro-ph/0404254 +astro-ph/0404608 +astro-ph/0405110 +astro-ph/0409378 +astro-ph/0409496 +astro-ph/0501290 +astro-ph/0501291 +astro-ph/0501292 +astro-ph/0501293 +astro-ph/0501294 +astro-ph/0501295 +astro-ph/0503109 +astro-ph/0503475 +astro-ph/0604441 +astro-ph/0604602 +astro-ph/0605028 +astro-ph/0605166 +astro-ph/0605434 +astro-ph/0606130 +astro-ph/0608231 +astro-ph/0608526 +astro-ph/0608553 +astro-ph/0611700 +astro-ph/0611788 +astro-ph/0612052 +astro-ph/0612239 +astro-ph/0612255 +astro-ph/0612422 +astro-ph/0701230 +astro-ph/0701530 +astro-ph/0701627 +astro-ph/0701696 +astro-ph/0701835 +cond-mat/0511331 Disordered Systems and Neural Networks +cond-mat/0603190 Superconductivity +gr-qc/0201025 +gr-qc/0201029 +gr-qc/0204025 +gr-qc/0307114 +gr-qc/0308022 +gr-qc/0401003 +gr-qc/0401015 +gr-qc/0401040 +gr-qc/0401082 +gr-qc/0401087 +gr-qc/0401091 +gr-qc/0401094 +gr-qc/0401095 +gr-qc/0401096 +gr-qc/0401104 +gr-qc/0401124 +gr-qc/0401127 +gr-qc/0402002 +gr-qc/0402006 +gr-qc/0402007 +gr-qc/0402009 +gr-qc/0402010 +gr-qc/0402019 +gr-qc/0402071 +gr-qc/0402072 +gr-qc/0402073 +gr-qc/0402091 +gr-qc/0402092 +gr-qc/0402100 +gr-qc/0402115 +gr-qc/0402122 +gr-qc/0403021 +gr-qc/0403062 +gr-qc/0403086 +gr-qc/0403101 +gr-qc/0403112 +gr-qc/0405005 +gr-qc/0405043 +gr-qc/0407065 +gr-qc/0408082 +gr-qc/0409090 +gr-qc/0410042 +gr-qc/0410112 +gr-qc/0411049 +gr-qc/0508098 +gr-qc/0605036 +gr-qc/0610066 +gr-qc/0701004 +hep-ex/0503016 Experiment +hep-ex/0505002 Experiment +hep-ex/0505085 Experiment +hep-ex/0506054 Experiment +hep-ex/0506060 Experiment +hep-ex/0507058 Experiment +hep-ex/0508016 Experiment +hep-ex/0511034 Experiment +hep-ex/0604021 Experiment +hep-ex/0604028 Experiment +hep-ph/0402102 Phenomenology +hep-ph/0402142 Phenomenology +hep-ph/0402271 Phenomenology +hep-ph/0403001 Phenomenology +hep-ph/0505018 Phenomenology +hep-ph/0510211 Phenomenology +hep-ph/0602092 Phenomenology +hep-ph/0606157 Phenomenology +hep-ph/0610414 Phenomenology +hep-ph/0610433 Phenomenology +hep-ph/0612024 Phenomenology +hep-ph/0612056 Phenomenology +hep-ph/0612127 Phenomenology +hep-ph/0612141 Phenomenology +hep-ph/0701053 Phenomenology +hep-ph/0702018 Phenomenology +hep-th/0401117 Theory +hep-th/0401123 Theory +hep-th/0401124 Theory +hep-th/0401182 Theory +hep-th/0402081 Theory +hep-th/0402166 Theory +hep-th/0403054 Theory +hep-th/0403140 Theory +hep-th/0405009 Theory +hep-th/0505010 Theory +hep-th/0702200 Theory +math/0405098 Differential Geometry +math/0411278 Number Theory +nlin/0702044 Chaotic Dynamics +nucl-ex/0505001 +nucl-ex/0505004 +nucl-ex/0604017 +nucl-th/0503077 +nucl-th/0602018 +nucl-th/0602067 +nucl-th/0604039 +nucl-th/0607028 +physics/0604110 Instrumentation and Detectors +physics/0610016 Plasma Physics +physics/0611156 Instrumentation and Detectors +physics/0701118 Instrumentation and Detectors +physics/0703274 Plasma Physics +quant-ph/0308065 +0910.2511 Analysis of PDEs +1108.1306 Mesoscale and Nanoscale Physics +1109.5045 Analysis of PDEs +1203.1640 Representation Theory +1203.6276 Computation +1204.2270 Theory +1302.3358 +1304.7349 Differential Geometry +1306.0182 Combinatorics +1309.1400 Plasma Physics +1311.3203 Phenomenology +1312.4665 +1401.8249 Algebraic Geometry +1403.2166 Probability +1403.3990 Algebraic Geometry +1405.6646 Programming Languages +1407.2898 Symplectic Geometry +1407.6625 Metric Geometry +1407.6984 Analysis of PDEs +1408.4050 Methodology +1409.0428 Physics and Society +1409.1744 Physics and Society +1409.6203 Data Analysis, Statistics and Probability +1410.1654 Combinatorics +1410.2520 Logic +1411.4735 +1412.4923 Differential Geometry +1412.7298 +1412.8481 Functional Analysis +1501.00280 Numerical Analysis +1501.04024 Algebraic Geometry +1501.04227 Soft Condensed Matter +1502.02130 Computation +1502.02756 Functional Analysis +1503.05793 +1503.06297 Quantum Algebra +1504.03644 Mathematical Finance +1504.03718 Methodology +1504.04557 Representation Theory +1504.04987 +1505.00607 Metric Geometry +1505.01305 Dynamical Systems +1505.02389 Algebraic Geometry +1506.02453 Operator Algebras +1506.04168 Probability +1506.04660 Theory +1506.06669 Economics +1506.07612 Number Theory +1506.07844 Pattern Formation and Solitons +1507.00962 Soft Condensed Matter +1507.01429 Mesoscale and Nanoscale Physics +1507.02502 Metric Geometry +1507.02861 Complex Variables +1507.07001 High Energy Astrophysical Phenomena +1507.08627 High Energy Astrophysical Phenomena +1508.00225 Applications +1508.02033 Dynamical Systems +1508.06810 Optics +1509.00980 Machine Learning +1509.01165 Rings and Algebras +1509.02256 Distributed, Parallel, and Cluster Computing +1509.04552 Probability +1509.06866 Methodology +1509.07077 +1509.07292 Analysis of PDEs +1509.07312 Rings and Algebras +1509.07333 Strongly Correlated Electrons +1509.08232 Cosmology and Nongalactic Astrophysics +1510.00078 Logic +1510.02677 Combinatorics +1510.03387 Computational Complexity +1510.06476 Strongly Correlated Electrons +1510.06834 Classical Analysis and ODEs +1511.00634 Methodology +1511.01354 Robotics +1511.01565 Superconductivity +1511.01863 Applications +1511.03068 +1511.03790 Biological Physics +1511.05222 Neurons and Cognition +1511.09386 Fluid Dynamics +1512.01190 +1512.06693 Statistics Theory +1512.07808 Astrophysics of Galaxies +1512.08366 Logic in Computer Science +1601.00880 Plasma Physics +1601.02828 Computation and Language +1601.04185 Computational Physics +1601.04407 +1601.04476 Mesoscale and Nanoscale Physics +1601.05363 Analysis of PDEs +1601.05416 Theory +1601.05997 Computational Physics +1601.07392 Software Engineering +1601.08065 Statistics Theory +1601.08104 +1602.00210 Optimization and Control +1602.00441 +1602.00995 Numerical Analysis +1602.01010 K-Theory and Homology +1602.01157 Group Theory +1602.04817 Theory +1602.06300 +1602.06800 Representation Theory +1602.06895 Superconductivity +1602.07110 Differential Geometry +1602.07506 Mesoscale and Nanoscale Physics +1602.07970 Artificial Intelligence +1602.08665 Mesoscale and Nanoscale Physics +1603.00195 +1603.00243 +1603.00574 Superconductivity +1603.01238 Algebraic Geometry +1603.01302 Experiment +1603.01745 Superconductivity +1603.01811 Materials Science +1603.02444 +1603.02732 Materials Science +1603.02896 Pricing of Securities +1603.02899 Solar and Stellar Astrophysics +1603.02968 Optics +1603.03568 Phenomenology +1603.04285 Symbolic Computation +1603.04516 +1603.05079 +1603.07029 Artificial Intelligence +1603.07865 Algebraic Geometry +1603.08002 Phenomenology +1603.08542 History and Overview +1603.08700 Materials Science +1603.08848 Phenomenology +1603.09630 Computation and Language +1604.00545 Artificial Intelligence +1604.01591 Probability +1604.01634 Analysis of PDEs +1604.02011 +1604.03557 Strongly Correlated Electrons +1604.05472 Artificial Intelligence +1604.05508 Robotics +1604.06644 Formal Languages and Automata Theory +1604.06689 Dynamical Systems +1604.06783 Quantitative Methods +1604.08079 Mathematical Software +1605.00403 Theory +1605.00447 +1605.01126 Networking and Internet Architecture +1605.01921 Optics +1605.02836 Computers and Society +1605.03059 Data Structures and Algorithms +1605.04117 Spectral Theory +1605.04606 Rings and Algebras +1605.05614 Networking and Internet Architecture +1605.05804 Molecular Networks +1605.06407 Combinatorics +1605.06418 Theory +1605.07418 Complex Variables +1605.09469 Superconductivity +1606.01473 Applications +1606.01907 Solar and Stellar Astrophysics +1606.04457 Methodology +1606.04705 Cryptography and Security +1606.05170 Geometric Topology +1606.06248 Combinatorics +1606.06908 Cryptography and Security +1606.07181 Chemical Physics +1606.07762 Soft Condensed Matter +1606.07917 Biological Physics +1606.08164 Robotics +1606.09095 Neurons and Cognition +1606.09105 Chemical Physics +1606.09108 Chemical Physics +1606.09451 Instrumentation and Detectors +1607.00759 Phenomenology +1607.00983 Mesoscale and Nanoscale Physics +1607.01586 Classical Analysis and ODEs +1607.01975 Analysis of PDEs +1607.01979 Computer Vision and Pattern Recognition +1607.02265 +1607.02367 Plasma Physics +1607.02398 +1607.02882 Analysis of PDEs +1607.02919 Systems and Control +1607.03052 Group Theory +1607.03163 +1607.03264 Dynamical Systems +1607.03272 Information Theory +1607.03347 Phenomenology +1607.03434 Emerging Technologies +1607.03485 +1607.03495 High Energy Astrophysical Phenomena +1607.03498 +1607.03503 Group Theory +1607.03509 +1607.03511 Number Theory +1607.03513 Representation Theory +1607.03514 Plasma Physics +1607.03515 Dynamical Systems +1607.03519 Information Theory +1607.03525 Differential Geometry +1607.03526 Probability +1607.03527 Classical Analysis and ODEs +1607.03528 Quantum Gases +1607.03531 Number Theory +1607.03533 Optimization and Control +1607.03534 Applications +1607.03543 Solar and Stellar Astrophysics +1607.03545 Probability +1607.03549 Experiment +1607.03550 Operator Algebras +1607.03555 Mesoscale and Nanoscale Physics +1607.03556 Numerical Analysis +1607.03557 K-Theory and Homology +1607.03559 Learning +1607.03565 +1607.03566 Optimization and Control +1607.03572 Information Theory +1607.03573 Spectral Theory +1607.03575 Computers and Society +1607.03576 General Topology +1607.03578 Human-Computer Interaction +1607.03579 Instrumentation and Methods for Astrophysics +1607.03581 Information Theory +1607.03582 Strongly Correlated Electrons +1607.03583 Computer Science and Game Theory +1607.03587 Functional Analysis +1607.03588 Materials Science +1607.03589 Materials Science +1607.03590 Materials Science +1607.03598 Combinatorics +1607.03601 Probability +1607.03603 Logic +1607.03604 Probability +1607.03606 Combinatorics +1607.03607 Networking and Internet Architecture +1607.03609 Analysis of PDEs +1607.03610 Probability +1607.03612 Number Theory +1607.03613 Number Theory +1607.03614 Probability +1607.03615 Machine Learning +1607.03617 Statistical Mechanics +1607.03619 Probability +1607.03620 Experiment +1607.03623 Analysis of PDEs +1607.03626 Learning +1607.03627 Symplectic Geometry +1607.03628 Phenomenology +1607.03629 Cryptography and Security +1607.03631 Probability +1607.03634 Complex Variables +1607.03637 +1607.03639 Mesoscale and Nanoscale Physics +1607.03640 Phenomenology +1607.03643 Materials Science +1607.03644 Algebraic Topology +1607.03646 Atomic Physics +1607.03649 Software Engineering +1607.03651 Combinatorics +1607.03652 Algebraic Topology +1607.03655 Group Theory +1607.03658 Solar and Stellar Astrophysics +1607.03659 Cryptography and Security +1607.03661 Probability +1607.03662 Analysis of PDEs +1607.03664 Symplectic Geometry +1607.03665 Information Theory +1607.03667 Algebraic Geometry +1607.03668 Analysis of PDEs +1607.03670 Number Theory +1607.03671 Information Theory +1607.03672 Soft Condensed Matter +1607.03675 Methodology +1607.03676 Analysis of PDEs +1607.03677 Distributed, Parallel, and Cluster Computing +1607.03680 Earth and Planetary Astrophysics +1607.03683 Information Theory +1607.03685 Computer Science and Game Theory +1607.03690 Functional Analysis +1607.03691 Learning +1607.03692 +1607.03694 Physics and Society +1607.03696 Statistical Mechanics +1607.03698 Methodology +1607.03702 +1607.03703 Probability +1607.03704 +1607.03705 Artificial Intelligence +1607.03706 Phenomenology +1607.03707 Computation and Language +1607.03708 Complex Variables +1607.03717 Methodology +1607.03718 Data Structures and Algorithms +1607.03720 Fluid Dynamics +1607.03721 Theory +1607.03722 Solar and Stellar Astrophysics +1607.03723 +1607.03727 Group Theory +1607.03730 Machine Learning +1607.03731 Atomic Physics +1607.03733 Programming Languages +1607.03734 +1607.03736 Physics Education +1607.03737 Information Theory +1607.03739 Other Computer Science +1607.03740 Cosmology and Nongalactic Astrophysics +1607.03741 Algebraic Geometry +1607.03744 Differential Geometry +1607.03746 Combinatorics +1607.03747 Logic in Computer Science +1607.03748 Software Engineering +1607.03750 Phenomenology +1607.03752 Methodology +1607.03755 Computational Physics +1607.03760 Logic in Computer Science +1607.03761 Phenomenology +1607.03764 Biomolecules +1607.03765 Applications +1607.03766 Sound +1607.03767 Earth and Planetary Astrophysics +1607.03774 Astrophysics of Galaxies +1607.03775 Methodology +1607.03780 Computation and Language +1607.03783 Biomolecules +1607.03785 Computer Vision and Pattern Recognition +1607.03786 Distributed, Parallel, and Cluster Computing +1607.03787 Information Theory +1607.03788 Probability +1607.03790 Group Theory +1607.03792 Machine Learning +1607.03794 Molecular Networks +1607.03797 +1607.03798 Group Theory +1607.03799 Astrophysics of Galaxies +1607.03800 Symplectic Geometry +1607.03802 Optimization and Control +1607.03804 Mesoscale and Nanoscale Physics +1607.03805 Metric Geometry +1607.03807 Algebraic Geometry +1607.03810 Computational Complexity +1607.03813 Mesoscale and Nanoscale Physics +1607.03814 Algebraic Geometry +1607.03816 Analysis of PDEs +1607.03818 High Energy Astrophysical Phenomena +1607.03819 Logic in Computer Science +1607.03821 Computer Science and Game Theory +1607.03822 Machine Learning +1607.03823 +1607.03825 Earth and Planetary Astrophysics +1607.03827 Robotics +1607.03830 Distributed, Parallel, and Cluster Computing +1607.03834 Quantum Algebra +1607.03837 Popular Physics +1607.03839 +1607.03842 Machine Learning +1607.03846 Number Theory +1607.03847 Accelerator Physics +1607.03852 Analysis of PDEs +1607.03859 +1607.03862 Functional Analysis +1607.03863 General Mathematics +1607.03865 Complex Variables +1607.03869 General Mathematics +1607.03873 +1607.03878 Phenomenology +1607.03881 Social and Information Networks +0802.3471 Representation Theory +0907.0454 Geometric Topology +1009.2937 History and Overview +1009.2938 History and Overview +1009.2939 History and Overview +1103.5906 Number Theory +1112.0729 Phenomenology +1202.2678 Cosmology and Nongalactic Astrophysics +1202.2822 Dynamical Systems +1203.1583 Representation Theory +1208.2157 Computation +1307.0048 Machine Learning +1307.3292 Classical Analysis and ODEs +1309.0797 Spectral Theory +1309.2660 Robotics +1311.3347 Geometric Topology +1312.0331 +1401.2404 General Physics +1401.6104 Theory +1403.1235 +1403.2938 Classical Analysis and ODEs +1403.6682 Rings and Algebras +1404.0058 Applications +1404.2791 Spectral Theory +1404.3367 Probability +1407.4924 +1407.5472 Methodology +1410.1442 Algebraic Geometry +1410.6148 Geometric Topology +1410.6338 Computational Physics +1410.6798 Number Theory +1411.0729 +1411.7176 Phenomenology +1411.7360 Algebraic Topology +1411.7969 +1412.2427 +1412.5844 Statistics Theory +1412.6051 Cosmology and Nongalactic Astrophysics +1412.6520 Applications +1412.6952 Systems and Control +1412.7151 Phenomenology +1501.03209 Neural and Evolutionary Computing +1501.03250 Probability +1501.07345 Numerical Analysis +1501.07434 Analysis of PDEs +1502.00519 Differential Geometry +1502.00545 Other Condensed Matter +1502.00826 Metric Geometry +1502.00978 Logic +1502.03240 Computer Vision and Pattern Recognition +1502.06701 Earth and Planetary Astrophysics +1503.07062 Materials Science +1503.08122 Earth and Planetary Astrophysics +1503.08490 Optimization and Control +1503.08714 +1504.02043 Differential Geometry +1504.04790 Mesoscale and Nanoscale Physics +1504.05312 High Energy Astrophysical Phenomena +1504.05605 Algebraic Geometry +1505.01561 Mesoscale and Nanoscale Physics +1505.03066 Earth and Planetary Astrophysics +1505.04571 Phenomenology +1505.07403 Analysis of PDEs +1506.00431 +1506.02387 +1506.02480 Statistical Mechanics +1506.04714 Computer Vision and Pattern Recognition +1506.05905 Computational Engineering, Finance, and Science +1506.06458 +1506.07218 +1506.07569 Astrophysics of Galaxies +1507.03409 Computer Vision and Pattern Recognition +1507.03779 Statistical Mechanics +1507.04441 Human-Computer Interaction +1507.06139 +1507.06553 Mesoscale and Nanoscale Physics +1507.08455 Chaotic Dynamics +1507.08931 Differential Geometry +1508.00955 Solar and Stellar Astrophysics +1508.02087 Optimization and Control +1508.06363 Fluid Dynamics +1509.00582 Statistical Mechanics +1509.00831 +1509.03599 +1509.04044 Experiment +1509.05867 High Energy Astrophysical Phenomena +1509.07838 Computer Vision and Pattern Recognition +1510.00702 Cosmology and Nongalactic Astrophysics +1510.00987 Quantum Gases +1510.01460 Materials Science +1510.01954 Differential Geometry +1510.03085 Subcellular Processes +1510.04282 Disordered Systems and Neural Networks +1510.04320 Methodology +1510.05751 Computational Engineering, Finance, and Science +1510.05866 Strongly Correlated Electrons +1510.07130 Applications +1511.00109 Mesoscale and Nanoscale Physics +1511.00443 Atomic Physics +1511.01096 Cosmology and Nongalactic Astrophysics +1511.02296 Computer Science and Game Theory +1511.03037 Strongly Correlated Electrons +1511.03482 Theory +1511.05041 Astrophysics of Galaxies +1511.05639 Populations and Evolution +1511.06078 Computer Vision and Pattern Recognition +1511.06503 Mesoscale and Nanoscale Physics +1511.06973 Computer Vision and Pattern Recognition +1511.08121 Dynamical Systems +1512.00565 Theory +1512.01349 Rings and Algebras +1512.01414 Complex Variables +1512.01612 Probability +1512.02144 Mesoscale and Nanoscale Physics +1512.02696 +1512.02809 Quantum Gases +1512.02849 Rings and Algebras +1512.04611 Symplectic Geometry +1512.04796 Mesoscale and Nanoscale Physics +1512.05283 Cosmology and Nongalactic Astrophysics +1512.06419 Number Theory +1512.06729 Instrumentation and Detectors +1512.07425 Plasma Physics +1512.07907 Phenomenology +1512.08827 Earth and Planetary Astrophysics +1601.00434 Quantum Gases +1601.00677 +1601.02080 High Energy Astrophysical Phenomena +1601.02787 Phenomenology +1601.02871 Algebraic Geometry +1601.03560 Plasma Physics +1601.04022 +1601.04303 +1601.04791 Materials Science +1601.04815 Superconductivity +1601.05150 Computer Vision and Pattern Recognition +1601.05973 Instrumentation and Methods for Astrophysics +1601.06078 Geophysics +1601.07440 Mesoscale and Nanoscale Physics +1602.00884 Soft Condensed Matter +1602.01318 Mesoscale and Nanoscale Physics +1602.01412 Distributed, Parallel, and Cluster Computing +1602.01590 Rings and Algebras +1602.02573 K-Theory and Homology +1602.02599 Fluid Dynamics +1602.02702 Solar and Stellar Astrophysics +1602.03082 Theory +1602.05585 Mesoscale and Nanoscale Physics +1602.05859 Theory +1602.06867 Computational Complexity +1602.07200 Rings and Algebras +1603.00560 Computer Vision and Pattern Recognition +1603.01802 High Energy Astrophysical Phenomena +1603.01809 High Energy Astrophysical Phenomena +1603.03896 Mesoscale and Nanoscale Physics +1603.04438 Astrophysics of Galaxies +1603.04595 Computer Vision and Pattern Recognition +1603.05001 Quantum Gases +1603.06454 Mesoscale and Nanoscale Physics +1603.06652 Combinatorics +1603.06676 +1603.07451 Phenomenology +1603.08349 Optics +1603.09412 Number Theory +1604.00978 High Energy Astrophysical Phenomena +1604.01087 +1604.01182 Exactly Solvable and Integrable Systems +1604.01219 Artificial Intelligence +1604.02504 Distributed, Parallel, and Cluster Computing +1604.02698 History and Overview +1604.02706 Information Theory +1604.02747 Networking and Internet Architecture +1604.02903 Phenomenology +1604.03579 Differential Geometry +1604.03687 Emerging Technologies +1604.03752 General Mathematics +1604.03864 Physics and Society +1604.03877 Information Theory +1604.03935 Medical Physics +1604.03947 Mesoscale and Nanoscale Physics +1604.03949 Superconductivity +1604.03954 Combinatorics +1604.03956 +1604.03959 +1604.03960 Analysis of PDEs +1604.03962 Logic in Computer Science +1604.03968 Computation and Language +1604.03972 Soft Condensed Matter +1604.03973 +1604.03974 +1604.03976 +1604.03977 Phenomenology +1604.03979 Earth and Planetary Astrophysics +1604.03982 Atomic Physics +1604.03986 Learning +1604.03987 Algebraic Geometry +1604.03989 Materials Science +1604.03992 Materials Science +1604.03993 Probability +1604.03997 Metric Geometry +1604.04005 General Topology +1604.04006 Hardware Architecture +1604.04007 Information Retrieval +1604.04009 Networking and Internet Architecture +1604.04010 Strongly Correlated Electrons +1604.04016 Strongly Correlated Electrons +1604.04021 Information Theory +1604.04023 Number Theory +1604.04026 Optimization and Control +1604.04028 Combinatorics +1604.04037 Geometric Topology +1604.04041 Astrophysics of Galaxies +1604.04046 Algebraic Geometry +1604.04047 Mesoscale and Nanoscale Physics +1604.04048 Computer Vision and Pattern Recognition +1604.04050 Atmospheric and Oceanic Physics +1604.04051 Optimization and Control +1604.04052 Numerical Analysis +1604.04054 Machine Learning +1604.04056 Superconductivity +1604.04058 Probability +1604.04060 Analysis of PDEs +1604.04063 Soft Condensed Matter +1604.04064 Physics and Society +1604.04070 Commutative Algebra +1604.04072 Combinatorics +1604.04073 Dynamical Systems +1604.04079 Probability +1604.04085 Phenomenology +1604.04089 Atomic Physics +1604.04090 Rings and Algebras +1604.04091 Classical Analysis and ODEs +1604.04094 Optics +1604.04095 Computer Science and Game Theory +1604.04096 Artificial Intelligence +1604.04100 Analysis of PDEs +1604.04103 Distributed, Parallel, and Cluster Computing +1604.04107 Optics +1604.04113 Optics +1604.04116 Earth and Planetary Astrophysics +1604.04117 Differential Geometry +1604.04119 Operator Algebras +1604.04120 Classical Analysis and ODEs +1604.04122 Solar and Stellar Astrophysics +1604.04125 Computer Vision and Pattern Recognition +1604.04131 Functional Analysis +1604.04133 Soft Condensed Matter +1604.04134 Differential Geometry +1604.04135 Numerical Analysis +1604.04138 Neural and Evolutionary Computing +1604.04139 Formal Languages and Automata Theory +1604.04140 Combinatorics +1604.04141 Rings and Algebras +1604.04142 Computer Vision and Pattern Recognition +1604.04144 Computer Vision and Pattern Recognition +1604.04146 Neural and Evolutionary Computing +1604.04152 High Energy Astrophysical Phenomena +1604.04153 Neural and Evolutionary Computing +1604.04154 Optimization and Control +1604.04156 Dynamical Systems +1604.04157 Computer Science and Game Theory +1604.04158 Systems and Control +1604.04161 Statistical Mechanics +1604.04166 Information Theory +1604.04167 Computers and Society +1604.04169 Optimization and Control +1604.04171 Atomic Physics +1604.04172 Optimization and Control +1604.04176 Commutative Algebra +1604.04177 Analysis of PDEs +1604.04180 Multiagent Systems +1604.04182 Learning +1604.04185 Databases +1604.04187 Differential Geometry +1604.04188 Algebraic Topology +1604.04189 Analysis of PDEs +1604.04191 Machine Learning +1604.04192 Geometric Topology +1604.04197 Logic in Computer Science +1604.04199 Instrumentation and Methods for Astrophysics +1604.04200 Materials Science +1604.04204 Number Theory +1604.04205 Distributed, Parallel, and Cluster Computing +1604.04206 Distributed, Parallel, and Cluster Computing +1604.04209 Number Theory +1604.04210 Instrumentation and Detectors +1604.04211 Methodology +1604.04214 Neurons and Cognition +1604.04217 Distributed, Parallel, and Cluster Computing +1604.04220 Information Theory +1604.04223 Economics +1604.04224 Optimization and Control +1604.04226 Fluid Dynamics +1604.04235 Applications +1604.04238 Representation Theory +1604.04240 Logic in Computer Science +1604.04241 Chemical Physics +1604.04243 Number Theory +1604.04249 Strongly Correlated Electrons +1604.04255 Analysis of PDEs +1604.04256 Information Theory +1604.04258 Representation Theory +1604.04260 Geometric Topology +1604.04261 Dynamical Systems +1604.04264 Methodology +1604.04265 Cryptography and Security +1604.04267 Numerical Analysis +1604.04270 Physics and Society +1604.04271 Combinatorics +1604.04272 Numerical Analysis +1604.04273 Geometric Topology +1604.04274 Numerical Analysis +1604.04281 Mesoscale and Nanoscale Physics +0803.3841 Algebraic Geometry +0809.3366 Commutative Algebra +0903.4546 Dynamical Systems +0906.1412 +0911.5129 Rings and Algebras +1001.3235 Commutative Algebra +1001.3238 Commutative Algebra +1001.4375 Commutative Algebra +1003.4495 Commutative Algebra +1009.0645 Cosmology and Nongalactic Astrophysics +1101.1670 General Physics +1102.4521 Algebraic Geometry +1103.4010 Algebraic Geometry +1104.3401 +1106.0381 Commutative Algebra +1111.2754 Algebraic Geometry +1202.0510 Algebraic Geometry +1202.1964 Statistics Theory +1203.5382 Algebraic Geometry +1207.2071 Commutative Algebra +1207.6256 Rings and Algebras +1207.6536 Cryptography and Security +1208.2582 Plasma Physics +1210.0575 Mesoscale and Nanoscale Physics +1303.2081 Cosmology and Nongalactic Astrophysics +1305.0024 Algebraic Geometry +1306.0868 General Physics +1306.4016 Algebraic Geometry +1306.5615 Cryptography and Security +1307.4493 Atomic Physics +1309.3341 K-Theory and Homology +1310.7834 Data Structures and Algorithms +1310.8523 Classical Analysis and ODEs +1311.5668 Algebraic Topology +1311.6883 Computer Science and Game Theory +1312.7594 Probability +1401.5123 Dynamical Systems +1402.0135 Operator Algebras +1402.6477 Probability +1403.0303 Combinatorics +1406.1816 +1406.4440 High Energy Astrophysical Phenomena +1407.5272 Statistics Theory +1408.0471 Phenomenology +1408.0943 Discrete Mathematics +1410.2321 Number Theory +1410.7180 Optimization and Control +1411.3025 Algebraic Geometry +1411.4434 High Energy Astrophysical Phenomena +1412.8343 Number Theory +1501.01899 Classical Analysis and ODEs +1501.03717 Probability +1501.04523 Commutative Algebra +1502.00857 +1502.03688 Adaptation and Self-Organizing Systems +1503.00068 Classical Analysis and ODEs +1503.00212 Mesoscale and Nanoscale Physics +1503.00350 Populations and Evolution +1503.00822 Algebraic Geometry +1503.02649 Solar and Stellar Astrophysics +1503.02650 Earth and Planetary Astrophysics +1503.02652 Astrophysics of Galaxies +1503.03303 Number Theory +1503.03537 Social and Information Networks +1503.03976 Probability +1503.04121 Complex Variables +1503.04360 Optimization and Control +1503.07290 Analysis of PDEs +1504.00400 Dynamical Systems +1504.03158 +1504.03453 +1504.03472 +1504.03856 Computational Complexity +1504.04877 Instrumentation and Methods for Astrophysics +1505.00232 Numerical Analysis +1505.04343 Machine Learning +1506.00776 Probability +1506.07029 Optimization and Control +1507.01382 Dynamical Systems +1507.05512 Materials Science +1507.07376 Statistical Mechanics +1507.07398 Computational Physics +1508.01510 +1508.02865 Systems and Control +1508.07510 +1509.04776 Experiment +1509.04812 +1510.04538 Functional Analysis +1510.06043 Dynamical Systems +1510.06421 Optimization and Control +1510.06441 Number Theory +1510.06699 +1511.01866 Algebraic Geometry +1511.03106 Symplectic Geometry +1511.03673 Cosmology and Nongalactic Astrophysics +1511.03761 Methodology +1511.04033 Statistics Theory +1511.07524 Algebraic Geometry +1511.09259 Data Structures and Algorithms +1512.00246 Astrophysics of Galaxies +1512.00369 Optimization and Control +1512.01100 Computation and Language +1512.01118 Solar and Stellar Astrophysics +1512.02625 Materials Science +1512.05488 Chemical Physics +1512.06403 Geometric Topology +1512.06687 Phenomenology +1512.07428 Fluid Dynamics +1512.09307 +1601.02157 +1601.05502 Statistical Mechanics +1601.05551 +1601.06433 Spectral Theory +1601.07193 +1601.08112 Information Theory +1602.02690 Optimization and Control +1602.05535 Combinatorics +1602.05773 Materials Science +1602.07081 +1602.08561 +1602.08960 Computer Vision and Pattern Recognition +1603.02509 +1603.03058 Astrophysics of Galaxies +1603.04139 Computer Vision and Pattern Recognition +1603.06537 High Energy Astrophysical Phenomena +1603.06845 Mesoscale and Nanoscale Physics +1603.07333 High Energy Astrophysical Phenomena +1603.08251 Differential Geometry +1603.09473 Information Retrieval +1603.09620 Learning +1604.00255 Physics and Society +1604.00735 Analysis of PDEs +1604.01565 Statistical Mechanics +1604.01742 Geophysics +1604.02888 High Energy Astrophysical Phenomena +1604.03212 Software Engineering +1604.03712 +1604.04263 Experiment +1604.07162 +1604.07751 Computer Vision and Pattern Recognition +1604.08149 Combinatorics +1604.08602 Theory +1605.00539 Mesoscale and Nanoscale Physics +1605.01428 Materials Science +1605.05092 +1605.05626 Algebraic Geometry +1605.05794 +1605.05874 Strongly Correlated Electrons +1605.06651 Learning +1605.07802 Number Theory +1605.08170 Mesoscale and Nanoscale Physics +1605.09067 Group Theory +1606.00157 Neural and Evolutionary Computing +1606.01118 Experiment +1606.01123 +1606.01541 Computation and Language +1606.01948 Algebraic Geometry +1606.03142 Geometric Topology +1606.05067 Applications +1606.05995 Networking and Internet Architecture +1606.08235 Statistical Mechanics +1606.08307 +1606.08507 Biological Physics +1606.09091 Cosmology and Nongalactic Astrophysics +1606.09591 Phenomenology +1607.00173 Theory +1607.00469 Number Theory +1607.00975 +1607.00981 Classical Analysis and ODEs +1607.01191 Mathematical Software +1607.01498 Theory +1607.02270 Quantum Gases +1607.02354 Instrumentation and Detectors +1607.03335 Statistical Mechanics +1607.03745 Experiment +1607.04472 Operator Algebras +1607.04587 Disordered Systems and Neural Networks +1607.04941 Mesoscale and Nanoscale Physics +1607.06085 Strongly Correlated Electrons +1607.07401 Mesoscale and Nanoscale Physics +1607.08672 Cosmology and Nongalactic Astrophysics +1608.00009 Astrophysics of Galaxies +1608.00136 +1608.01448 Computation and Language +1608.03132 Instrumentation and Methods for Astrophysics +1608.04005 Neurons and Cognition +1608.04436 Numerical Analysis +1608.05655 Applications +1608.05943 Differential Geometry +1608.08784 Classical Analysis and ODEs +1608.08969 Phenomenology +1609.00253 Lattice +1609.02648 +1609.02653 +1609.02713 Solar and Stellar Astrophysics +1609.02714 Rings and Algebras +1609.02801 +1609.02835 Information Theory +1609.02863 Optics +1609.03030 Phenomenology +1609.03253 Analysis of PDEs +1609.04077 Group Theory +1609.04525 Representation Theory +1609.05563 Software Engineering +1609.05908 Solar and Stellar Astrophysics +1609.06030 Materials Science +1609.06227 Mesoscale and Nanoscale Physics +1609.06229 Logic +1609.06470 Physics and Society +1609.06750 Phenomenology +1609.06804 Learning +1609.06993 Theory +1609.07160 Neural and Evolutionary Computing +1609.07226 Symplectic Geometry +1609.07258 Functional Analysis +1609.07259 Instrumentation and Methods for Astrophysics +1609.07494 Methodology +1609.07535 Superconductivity +1609.07641 Superconductivity +1609.07686 +1609.07836 Phenomenology +1609.08023 Materials Science +1609.08151 Learning +1609.08161 Atomic Physics +1609.08341 Astrophysics of Galaxies +1609.08349 Learning +1609.08430 Analysis of PDEs +1609.08651 Tissues and Organs +1609.08673 Soft Condensed Matter +1609.08697 Optimization and Control +1609.08736 Computational Physics +1609.08819 Optics +1609.08971 Functional Analysis +1609.09051 Quantitative Methods +1609.09062 Databases +1609.09063 Strongly Correlated Electrons +1609.09064 Instrumentation and Detectors +1609.09065 Computers and Society +1609.09066 Computers and Society +1609.09067 Computers and Society +1609.09068 Data Structures and Algorithms +1609.09071 Solar and Stellar Astrophysics +1609.09080 Strongly Correlated Electrons +1609.09083 Theory +1609.09084 Superconductivity +1609.09087 Disordered Systems and Neural Networks +1609.09089 Quantum Gases +1609.09096 Probability +1609.09097 Solar and Stellar Astrophysics +1609.09098 Combinatorics +1609.09101 Solar and Stellar Astrophysics +1609.09103 Systems and Control +1609.09104 Phenomenology +1609.09108 High Energy Astrophysical Phenomena +1609.09110 Theory +1609.09111 Phenomenology +1609.09113 Theory +1609.09114 High Energy Astrophysical Phenomena +1609.09115 Combinatorics +1609.09116 Learning +1609.09117 Optics +1609.09118 Combinatorics +1609.09119 Complex Variables +1609.09121 Dynamical Systems +1609.09122 Combinatorics +1609.09129 +1609.09130 Mesoscale and Nanoscale Physics +1609.09131 Mesoscale and Nanoscale Physics +1609.09132 Symplectic Geometry +1609.09133 Number Theory +1609.09137 +1609.09140 +1609.09141 Probability +1609.09144 Biological Physics +1609.09145 Biological Physics +1609.09146 Mesoscale and Nanoscale Physics +1609.09147 Statistics Theory +1609.09148 High Energy Astrophysical Phenomena +1609.09149 Combinatorics +1609.09151 Analysis of PDEs +1609.09152 Information Retrieval +1609.09154 Distributed, Parallel, and Cluster Computing +1609.09155 Strongly Correlated Electrons +1609.09157 Cryptography and Security +1609.09158 Neural and Evolutionary Computing +1609.09160 +1609.09161 Information Theory +1609.09162 Learning +1609.09163 Materials Science +1609.09164 Complex Variables +1609.09167 Information Theory +1609.09168 Number Theory +1609.09172 Databases +1609.09173 Probability +1609.09174 Computation +1609.09178 Learning +1609.09180 Disordered Systems and Neural Networks +1609.09181 Populations and Evolution +1609.09182 Number Theory +1609.09184 +1609.09185 Atmospheric and Oceanic Physics +1609.09187 Phenomenology +1609.09188 Computation and Language +1609.09189 Computation and Language +1609.09191 +1609.09192 Symplectic Geometry +1609.09194 Learning +1609.09195 Dynamical Systems +1609.09196 Machine Learning +1609.09198 Superconductivity +1609.09199 Learning +1609.09200 Superconductivity +1609.09202 Molecular Networks +1609.09206 Systems and Control +1609.09207 +1609.09208 Mesoscale and Nanoscale Physics +1609.09211 Distributed, Parallel, and Cluster Computing +1609.09212 Data Analysis, Statistics and Probability +1609.09213 Optics +1609.09216 Commutative Algebra +1609.09217 Mesoscale and Nanoscale Physics +1609.09218 Chaotic Dynamics +1609.09219 Cryptography and Security +1609.09220 Computer Vision and Pattern Recognition +1609.09221 +1609.09223 +1609.09225 Geophysics +1609.09227 Computer Vision and Pattern Recognition +1609.09228 Phenomenology +1609.09229 Functional Analysis +1609.09230 Numerical Analysis +1609.09235 Phenomenology +1609.09236 Information Theory +1609.09237 +1609.09238 Probability +1609.09239 Optics +1609.09240 Computer Vision and Pattern Recognition +1609.09244 High Energy Astrophysical Phenomena +1609.09246 Commutative Algebra +1609.09247 Computation and Language +1609.09249 Phenomenology +1609.09251 Computer Vision and Pattern Recognition +1609.09253 Artificial Intelligence +1609.09256 Algebraic Geometry +1609.09258 Statistical Mechanics +1609.09261 Materials Science +1609.09263 Probability +1609.09265 Soft Condensed Matter +1609.09266 Fluid Dynamics +1609.09267 Robotics +1609.09268 Solar and Stellar Astrophysics +1609.09271 Mesoscale and Nanoscale Physics +1609.09272 Methodology +1609.09277 Analysis of PDEs +1609.09278 Methodology +1609.09279 Solar and Stellar Astrophysics +1609.09280 Numerical Analysis +1609.09281 Distributed, Parallel, and Cluster Computing +1609.09282 Probability +1609.09283 Probability +1609.09284 Soft Condensed Matter +1609.09285 Algebraic Geometry +1609.09286 Computation +1609.09287 Statistics Theory +1609.09292 Logic +1609.09293 Classical Analysis and ODEs +1609.09294 Performance +1609.09296 Computer Vision and Pattern Recognition +1609.09297 Category Theory +1609.09299 Theory +1609.09304 Data Structures and Algorithms +1609.09306 Symplectic Geometry +1609.09307 Materials Science +1609.09309 Strongly Correlated Electrons +1609.09314 Networking and Internet Architecture +1609.09315 Computation and Language +1609.09316 Pattern Formation and Solitons +1609.09319 Number Theory +1609.09321 Combinatorics +1609.09322 High Energy Astrophysical Phenomena +1609.09323 Soft Condensed Matter +1609.09324 Experiment +1609.09325 Astrophysics of Galaxies +1609.09326 Tissues and Organs +1609.09327 Probability +1609.09329 Cryptography and Security +1609.09331 Statistics Theory +1609.09332 Differential Geometry +1609.09333 Distributed, Parallel, and Cluster Computing +1609.09334 Number Theory +1609.09335 Probability +1609.09336 Number Theory +1609.09337 Functional Analysis +1609.09338 Probability +1609.09340 Databases +1609.09341 Computer Science and Game Theory +1609.09342 +1609.09344 Chaotic Dynamics +1609.09348 Statistical Mechanics +1609.09350 Quantum Gases +1609.09351 Chemical Physics +1609.09352 Representation Theory +1609.09354 Chaotic Dynamics +1609.09356 Number Theory +1609.09357 Differential Geometry +1609.09360 High Energy Astrophysical Phenomena +1609.09362 +1609.09363 High Energy Astrophysical Phenomena +1609.09366 Biological Physics +1609.09368 Networking and Internet Architecture +1609.09369 Optimization and Control +1609.09374 Probability +1609.09376 Instrumentation and Methods for Astrophysics +1609.09377 Cosmology and Nongalactic Astrophysics +1609.09379 Number Theory +1609.09380 Methodology +1609.09382 Computation and Language +1609.09384 Rings and Algebras +1609.09385 +1609.09387 Probability +1609.09390 Sound +1609.09394 Analysis of PDEs +1609.09395 Systems and Control +1609.09398 +1609.09400 History and Philosophy of Physics +1609.09401 Quantum Gases +1609.09404 Fluid Dynamics +1609.09407 Combinatorics +1609.09409 Differential Geometry +1609.09410 Analysis of PDEs +1609.09411 Physics and Society +1609.09412 Optics +1609.09413 Physics and Society +1609.09417 Strongly Correlated Electrons +1609.09420 Accelerator Physics +1609.09421 Other Quantitative Biology +1609.09425 Numerical Analysis +1609.09426 +1609.09428 Instrumentation and Methods for Astrophysics +1609.09429 Applications +1609.09432 Machine Learning +1609.09434 Materials Science +1609.09436 +1609.09437 Optimization and Control +1609.09439 Dynamical Systems +1609.09440 +1609.09441 Optimization and Control +1609.09445 Atomic Physics +1609.09447 Combinatorics +1609.09448 Computer Science and Game Theory +1609.09449 Systems and Control +1609.09450 Optimization and Control +1609.09451 Computer Vision and Pattern Recognition +1609.09452 Dynamical Systems +1609.09453 Operator Algebras +1609.09454 Information Theory +1609.09455 Soft Condensed Matter +1609.09457 Fluid Dynamics +1609.09459 Soft Condensed Matter +1609.09460 Differential Geometry +1609.09463 Robotics +1609.09464 Commutative Algebra +1609.09466 Solar and Stellar Astrophysics +1609.09468 Computer Vision and Pattern Recognition +1609.09469 Cosmology and Nongalactic Astrophysics +1609.09472 Mesoscale and Nanoscale Physics +1609.09473 +1609.09476 Algebraic Geometry +1609.09478 Atomic Physics +1609.09480 Functional Analysis +1609.09481 Machine Learning +1609.09482 Mesoscale and Nanoscale Physics +1609.09483 Instrumentation and Detectors +1609.09484 Materials Science +1609.09485 History and Overview +1609.09486 Materials Science +1609.09487 +1609.09488 +cs/0509015 Data Structures and Algorithms +math/0306381 Group Theory +physics/0102007 General Physics +0811.3358 Symplectic Geometry +1007.3516 Operator Algebras +1010.5543 Differential Geometry +1011.6429 Logic in Computer Science +1011.6431 Logic in Computer Science +1011.6432 Formal Languages and Automata Theory +1011.6434 Logic in Computer Science +1012.0695 Statistical Mechanics +1107.4190 Adaptation and Self-Organizing Systems +1107.4195 Disordered Systems and Neural Networks +1107.4197 Adaptation and Self-Organizing Systems +1203.3419 +1203.3585 Probability +1204.6011 Instrumentation and Detectors +1208.0744 Combinatorics +1209.1950 Disordered Systems and Neural Networks +1210.4996 Geometric Topology +1303.5534 Soft Condensed Matter +1307.0119 Probability +1307.2787 Probability +1309.0139 Differential Geometry +1309.6471 Discrete Mathematics +1309.7395 Combinatorics +1309.7659 Exactly Solvable and Integrable Systems +1311.1919 Adaptation and Self-Organizing Systems +1311.5909 Number Theory +1312.2664 Computational Physics +1401.7997 +1402.1975 Probability +1402.2746 Number Theory +1402.6381 +1404.3240 Optimization and Control +1405.3118 Combinatorics +1405.7877 Adaptation and Self-Organizing Systems +1406.2589 Dynamical Systems +1406.5473 +1406.7149 High Energy Astrophysical Phenomena +1406.7262 High Energy Astrophysical Phenomena +1407.0396 Disordered Systems and Neural Networks +1407.2972 Quantum Gases +1407.3732 Instrumentation and Methods for Astrophysics +1407.3955 Astrophysics of Galaxies +1407.4121 Phenomenology +1407.4469 Earth and Planetary Astrophysics +1407.4604 Instrumentation and Methods for Astrophysics +1407.4605 Instrumentation and Methods for Astrophysics +1407.4741 +1407.5265 Mesoscale and Nanoscale Physics +1407.5416 Information Retrieval +1407.5873 Experiment +1407.5907 Experiment +1407.5973 Experiment +1407.6127 Experiment +1407.6663 Cosmology and Nongalactic Astrophysics +1407.7409 Mesoscale and Nanoscale Physics +1407.7516 Earth and Planetary Astrophysics +1407.7574 Experiment +1407.7657 High Energy Astrophysical Phenomena +1407.7696 Earth and Planetary Astrophysics +1407.7704 Experiment +1407.7712 Experiment +1407.7734 Experiment +1407.8406 Applications +1408.0005 Astrophysics of Galaxies +1408.0275 Experiment +1408.0405 Mesoscale and Nanoscale Physics +1408.0662 Quantum Gases +1408.0971 Experiment +1408.0978 Experiment +1408.1137 Experiment +1408.1169 Astrophysics of Galaxies +1408.1251 Experiment +1408.1299 Experiment +1408.1883 Soft Condensed Matter +1408.2735 Phenomenology +1408.2748 Experiment +1408.2821 Astrophysics of Galaxies +1408.4137 Solar and Stellar Astrophysics +1408.4259 Solar and Stellar Astrophysics +1408.4354 Experiment +1408.4368 Experiment +1408.4800 Theory +1408.6107 Physics and Society +1408.6173 +1408.6190 Strongly Correlated Electrons +1408.6641 Mesoscale and Nanoscale Physics +1408.6652 +1409.0152 Superconductivity +1409.0253 High Energy Astrophysical Phenomena +1409.0433 Strongly Correlated Electrons +1409.1408 Experiment +1409.1463 Phenomenology +1409.2126 Astrophysics of Galaxies +1409.2518 High Energy Astrophysical Phenomena +1409.2577 Symplectic Geometry +1409.2585 Databases +1409.2631 Optimization and Control +1409.2659 +1409.2747 Astrophysics of Galaxies +1409.2825 Statistical Mechanics +1409.2853 Instrumentation and Detectors +1409.2911 Differential Geometry +1409.2954 Space Physics +1409.3067 Analysis of PDEs +1409.3848 Astrophysics of Galaxies +1409.4286 Mesoscale and Nanoscale Physics +1409.4619 Experiment +1409.4747 Machine Learning +1409.6287 Artificial Intelligence +1409.6370 Mesoscale and Nanoscale Physics +1409.6421 Algebraic Geometry +1409.6648 Earth and Planetary Astrophysics +1409.6941 Optimization and Control +1409.7119 Astrophysics of Galaxies +1409.7882 +1409.7888 +1409.7915 Populations and Evolution +1409.7942 Populations and Evolution +1409.7991 Combinatorics +1409.8548 Experiment +1410.0021 Solar and Stellar Astrophysics +1410.0149 Experiment +1410.0180 Statistics Theory +1410.0238 Mesoscale and Nanoscale Physics +1410.0241 Physics and Society +1410.0477 Methodology +1410.0889 Solar and Stellar Astrophysics +1410.1350 Solar and Stellar Astrophysics +1410.1693 Geometric Topology +1410.1808 Instrumentation and Methods for Astrophysics +1410.2032 +1410.3129 Astrophysics of Galaxies +1410.4170 Experiment +1410.5200 Robotics +1410.5248 Solar and Stellar Astrophysics +1410.5367 High Energy Astrophysical Phenomena +1410.5939 Statistics Theory +1410.6020 Statistics Theory +1410.6210 Number Theory +1410.6676 High Energy Astrophysical Phenomena +1410.7737 +1410.7926 Classical Physics +1410.8674 Computational Engineering, Finance, and Science +1411.1108 Robotics +1411.1111 Astrophysics of Galaxies +1411.1241 +1411.1297 Computer Vision and Pattern Recognition +1411.1359 Solar and Stellar Astrophysics +1411.1369 Differential Geometry +1411.2402 Differential Geometry +1411.2597 Cosmology and Nongalactic Astrophysics +1411.3051 Solar and Stellar Astrophysics +1411.3104 Experiment +1411.3240 Solar and Stellar Astrophysics +1411.4000 Learning +1411.4413 Experiment +1411.4747 Probability +1411.4905 Mesoscale and Nanoscale Physics +1411.4987 Logic +1411.5093 Soft Condensed Matter +1411.5237 Analysis of PDEs +1411.5637 Solar and Stellar Astrophysics +1411.5638 Solar and Stellar Astrophysics +1411.5733 +1411.6355 Astrophysics of Galaxies +1411.7295 Instrumentation and Methods for Astrophysics +1411.7568 High Energy Astrophysical Phenomena +1412.1365 Solar and Stellar Astrophysics +1412.2280 Combinatorics +1412.3114 Astrophysics of Galaxies +1412.3899 Astrophysics of Galaxies +1412.4149 High Energy Astrophysical Phenomena +1412.4423 Algebraic Geometry +1412.4678 Phenomenology +1412.4694 Astrophysics of Galaxies +1412.5324 Cosmology and Nongalactic Astrophysics +1412.6352 Experiment +1412.6433 Experiment +1412.6997 High Energy Astrophysical Phenomena +1412.7065 +1412.7591 Geometric Topology +1412.7615 Quantum Gases +1412.7654 Experiment +1412.7670 Functional Analysis +1412.7737 Analysis of PDEs +1501.06777 Experiment +1501.06962 Cosmology and Nongalactic Astrophysics +1502.01568 Probability +1502.02638 Experiment +1502.03484 Commutative Algebra +1502.04156 Learning +1502.06041 +1502.07601 Multiagent Systems +1503.00963 Experiment +1503.05362 Experiment +1503.06944 Machine Learning +1503.07055 Experiment +1503.07089 Experiment +1503.07112 Experiment +1503.07138 Experiment +1503.07483 Experiment +1503.07606 Quantum Gases +1503.07657 Adaptation and Self-Organizing Systems +1503.07803 Symplectic Geometry +1503.08123 Statistics Theory +1503.08386 Combinatorics +1503.08413 Information Theory +1503.09024 Phenomenology +1503.09086 Experiment +1504.01568 Experiment +1504.05060 Strongly Correlated Electrons +1504.05398 +1504.05442 Experiment +1504.05462 Biological Physics +1504.06298 Optimization and Control +1504.06339 Experiment +1504.07670 Experiment +1505.01505 Experiment +1505.01654 Experiment +1505.01710 Experiment +1505.01986 Information Theory +1505.02140 Logic in Computer Science +1505.03295 Experiment +1505.04051 Experiment +1505.04382 Computer Vision and Pattern Recognition +1505.05546 Probability +1505.05711 Materials Science +1505.07024 Experiment +1505.08139 Experiment +1505.08162 Combinatorics +1506.00669 Probability +1506.00903 Experiment +1506.01724 Cosmology and Nongalactic Astrophysics +1506.02635 +1506.04192 Soft Condensed Matter +1506.05507 High Energy Astrophysical Phenomena +1506.07903 Computational Geometry +1506.08158 Phenomenology +1506.08209 Astrophysics of Galaxies +1506.08325 +1506.08614 Experiment +1506.08634 Experiment +1506.08777 Experiment +1506.09004 Instrumentation and Methods for Astrophysics +1507.00244 Risk Management +1507.03414 Experiment +1507.03516 Experiment +1507.05752 +1507.05875 Artificial Intelligence +1507.06267 Soft Condensed Matter +1507.07360 Logic +1507.07506 Functional Analysis +1507.07803 Solar and Stellar Astrophysics +1507.07892 Experiment +1508.00237 Dynamical Systems +1508.00607 Economics +1508.00788 Experiment +1508.01977 Data Structures and Algorithms +1508.02966 Optimization and Control +1508.03974 Atomic Physics +1508.04094 Experiment +1508.05633 +1508.06087 Experiment +1508.06268 Computational Physics +1509.00292 Experiment +1509.00400 Experiment +1509.00414 Experiment +1509.00771 Experiment +1509.02318 Statistical Mechanics +1509.02372 Experiment +1509.03331 Analysis of PDEs +1509.03429 Representation Theory +1509.04764 Information Theory +1509.05045 Cosmology and Nongalactic Astrophysics +1510.01271 General Mathematics +1510.01612 Superconductivity +1510.03454 +1510.05795 Number Theory +1510.05949 Experiment +1510.07637 Strongly Correlated Electrons +1510.07926 Combinatorics +1510.08435 Cryptography and Security +1510.09124 Information Theory +1511.00197 Differential Geometry +1511.03011 Biomolecules +1511.05153 Mesoscale and Nanoscale Physics +1511.06214 Computer Vision and Pattern Recognition +1511.06439 Mesoscale and Nanoscale Physics +1511.07921 +1511.08508 Earth and Planetary Astrophysics +1511.08826 Combinatorics +1511.09104 Combinatorics +1512.00138 Soft Condensed Matter +1512.00373 Mesoscale and Nanoscale Physics +1512.00376 +1512.01111 Astrophysics of Galaxies +1512.01562 Fluid Dynamics +1512.02206 +1512.02413 Computer Vision and Pattern Recognition +1512.02485 Probability +1512.04124 Solar and Stellar Astrophysics +1512.04271 Strongly Correlated Electrons +1512.04277 Computer Science and Game Theory +1512.04893 Commutative Algebra +1512.05958 Mesoscale and Nanoscale Physics +1512.06242 Mesoscale and Nanoscale Physics +1512.06244 Systems and Control +1512.07328 Methodology +1512.07470 Probability +1512.07869 Cosmology and Nongalactic Astrophysics +1512.08221 Phenomenology +1512.08570 Phenomenology +1512.09086 +1601.01295 +1601.02447 Phenomenology +1601.02694 Strongly Correlated Electrons +1601.02979 Theory +1601.03712 Information Theory +1601.03893 Mesoscale and Nanoscale Physics +1601.04026 Instrumentation and Methods for Astrophysics +1601.04471 Networking and Internet Architecture +1601.05658 Physics and Society +1601.05710 Tissues and Organs +1601.07061 +1601.08014 Experiment +1602.00456 Mesoscale and Nanoscale Physics +1602.00847 Classical Analysis and ODEs +1602.01216 +1602.01885 Materials Science +1602.02841 Populations and Evolution +1602.03167 Soft Condensed Matter +1602.04938 Learning +1602.05014 Phenomenology +1602.05431 Cosmology and Nongalactic Astrophysics +1602.05442 Fluid Dynamics +1602.05634 Quantum Gases +1602.06086 Theory +1602.06230 Applications +1602.06505 Theory +1602.06784 Quantum Gases +1602.07398 Probability +1602.08171 Superconductivity +1602.08295 +1602.08880 +1602.08980 Experiment +1602.09112 Phenomenology +1603.00413 Experiment +1603.00999 Superconductivity +1603.01574 +1603.01920 Phenomenology +1603.02898 Instrumentation and Methods for Astrophysics +1603.03616 Combinatorics +1603.03688 Mesoscale and Nanoscale Physics +1603.03806 Computer Science and Game Theory +1603.04488 Phenomenology +1603.04624 Mesoscale and Nanoscale Physics +1603.05148 +1603.05184 Cosmology and Nongalactic Astrophysics +1603.06258 +1603.06270 Computation and Language +1603.06544 Algebraic Geometry +1603.06561 Quantum Gases +1603.07137 +1603.07250 Theory +1603.07762 Dynamical Systems +1603.07774 Chaotic Dynamics +1603.08333 +1603.08338 Cosmology and Nongalactic Astrophysics +1603.08844 Systems and Control +1603.08890 Medical Physics +1603.08922 Astrophysics of Galaxies +1603.08929 Phenomenology +1603.09245 +1603.09672 Systems and Control +1604.00032 +1604.00496 Strongly Correlated Electrons +1604.01526 Instrumentation and Methods for Astrophysics +1604.01895 Mesoscale and Nanoscale Physics +1604.01988 Strongly Correlated Electrons +1604.02003 +1604.02179 Cosmology and Nongalactic Astrophysics +1604.02999 Materials Science +1604.03298 Phenomenology +1604.03360 Computational Physics +1604.03475 Experiment +1604.03510 Phenomenology +1604.03634 +1604.04364 Superconductivity +1604.04455 Materials Science +1604.04708 Materials Science +1604.04757 +1604.05105 Number Theory +1604.05137 Materials Science +1604.05277 Mesoscale and Nanoscale Physics +1604.05530 +1604.05639 Quantum Gases +1604.05895 Data Analysis, Statistics and Probability +1604.06203 Adaptation and Self-Organizing Systems +1604.06585 Phenomenology +1604.06749 Statistics Theory +1604.06767 +1604.07622 Phenomenology +1604.08116 Astrophysics of Galaxies +1604.08285 +1604.08621 +1604.08850 Astrophysics of Galaxies +1605.00030 Optics +1605.00053 Superconductivity +1605.00413 +1605.00470 Quantum Gases +1605.00617 Phenomenology +1605.00927 High Energy Astrophysical Phenomena +1605.01272 +1605.01415 High Energy Astrophysical Phenomena +1605.01634 Superconductivity +1605.02250 Mesoscale and Nanoscale Physics +1605.02694 Optics +1605.02734 Strongly Correlated Electrons +1605.02743 Phenomenology +1605.02760 Solar and Stellar Astrophysics +1605.02837 Mesoscale and Nanoscale Physics +1605.03061 Phenomenology +1605.03065 Astrophysics of Galaxies +1605.03169 Quantum Gases +1605.03873 Astrophysics of Galaxies +1605.03993 Lattice +1605.04016 Quantum Gases +1605.04254 Mesoscale and Nanoscale Physics +1605.04341 Lattice +1605.04438 Adaptation and Self-Organizing Systems +1605.04749 Mesoscale and Nanoscale Physics +1605.04862 +1605.04978 Biological Physics +1605.05617 Superconductivity +1605.05738 Quantum Gases +1605.06141 Solar and Stellar Astrophysics +1605.06351 Theory +1605.06411 +1605.06959 Earth and Planetary Astrophysics +1605.07226 Biological Physics +1605.07229 Number Theory +1605.07365 Solar and Stellar Astrophysics +1605.07564 Superconductivity +1605.07790 Phenomenology +1605.07958 Solar and Stellar Astrophysics +1605.08130 Solar and Stellar Astrophysics +1605.08189 Astrophysics of Galaxies +1605.08431 Theory +1605.08523 Instrumentation and Methods for Astrophysics +1605.09268 Networking and Internet Architecture +1605.09421 Strongly Correlated Electrons +1605.09527 Computer Vision and Pattern Recognition +1605.09768 Experiment +1606.00178 +1606.00204 Optics +1606.01282 Theory +1606.01582 Optics +1606.01650 Lattice +1606.02415 +1606.02858 Computation and Language +1606.03026 Phenomenology +1606.03056 Materials Science +1606.03406 Solar and Stellar Astrophysics +1606.03675 Solar and Stellar Astrophysics +1606.03676 Computation and Language +1606.04091 Cosmology and Nongalactic Astrophysics +1606.04329 Astrophysics of Galaxies +1606.04359 +1606.05202 Solar and Stellar Astrophysics +1606.05437 Computational Physics +1606.05497 Solar and Stellar Astrophysics +1606.05503 Optics +1606.05856 Strongly Correlated Electrons +1606.06082 Cosmology and Nongalactic Astrophysics +1606.06679 Phenomenology +1606.06742 Astrophysics of Galaxies +1606.07379 Functional Analysis +1606.08176 Strongly Correlated Electrons +1606.08620 Atomic Physics +1606.08890 Experiment +1606.08912 Phenomenology +1606.08965 Artificial Intelligence +1607.00184 Cosmology and Nongalactic Astrophysics +1607.00919 Phenomenology +1607.01082 Number Theory +1607.01504 Phenomenology +1607.01759 Computation and Language +1607.02454 Spectral Theory +1607.02849 Dynamical Systems +1607.03457 Astrophysics of Galaxies +1607.04586 Group Theory +1607.05921 Strongly Correlated Electrons +1607.05998 +1607.06237 Strongly Correlated Electrons +1607.06877 +1607.08736 Soft Condensed Matter +1608.00380 Materials Science +1608.00825 Functional Analysis +1608.00910 Cosmology and Nongalactic Astrophysics +1608.01198 Learning +1608.01623 Materials Science +1608.01778 Earth and Planetary Astrophysics +1608.01789 Networking and Internet Architecture +1608.01868 Robotics +1608.01948 High Energy Astrophysical Phenomena +1608.02354 Number Theory +1608.02468 Functional Analysis +1608.02579 Classical Analysis and ODEs +1608.02582 +1608.02608 Geometric Topology +1608.02610 Group Theory +1608.02611 Databases +1608.02616 Classical Analysis and ODEs +1608.02617 Analysis of PDEs +1608.02619 Physics and Society +1608.02623 Soft Condensed Matter +1608.02626 Classical Analysis and ODEs +1608.02629 Operator Algebras +1608.02630 Classical Physics +1608.02632 Pattern Formation and Solitons +1608.02633 High Energy Astrophysical Phenomena +1608.02637 Analysis of PDEs +1608.02639 Cryptography and Security +1608.02643 Medical Physics +1608.02646 Social and Information Networks +1608.02647 Differential Geometry +1608.02649 Instrumentation and Methods for Astrophysics +1608.02650 +1608.02654 Theory +1608.02655 Analysis of PDEs +1608.02657 Human-Computer Interaction +1608.02659 Artificial Intelligence +1608.02661 Human-Computer Interaction +1608.02665 Optimization and Control +1608.02666 Optimization and Control +1608.02674 Distributed, Parallel, and Cluster Computing +1608.02676 Computer Vision and Pattern Recognition +1608.02679 Geometric Topology +1608.02680 Computer Vision and Pattern Recognition +1608.02686 Algebraic Geometry +1608.02687 Information Theory +1608.02688 Logic in Computer Science +1608.02689 Computation and Language +1608.02690 Pricing of Securities +1608.02691 Instrumentation and Methods for Astrophysics +1608.02692 Logic in Computer Science +1608.02693 Artificial Intelligence +1608.02695 +1608.02697 Dynamical Systems +1608.02698 +1608.02699 Optimization and Control +1608.02700 Instrumentation and Methods for Astrophysics +1608.02701 Group Theory +1608.02702 Computer Vision and Pattern Recognition +1608.02706 Mathematical Finance +1608.02712 Optimization and Control +1608.02715 Software Engineering +1608.02717 Computer Vision and Pattern Recognition +1608.02718 Probability +1608.02719 Numerical Analysis +1608.02720 Combinatorics +1608.02721 Classical Physics +1608.02722 Other Condensed Matter +1608.02724 History and Overview +1608.02726 Strongly Correlated Electrons +1608.02727 Representation Theory +1608.02728 Computer Vision and Pattern Recognition +1608.02729 Instrumentation and Detectors +1608.02731 Machine Learning +1608.02732 Machine Learning +1608.02733 Analysis of PDEs +1608.02734 Phenomenology +1608.02738 Accelerator Physics +1608.02743 Statistics Theory +1608.02745 Accelerator Physics +1608.02746 Operator Algebras +1608.02748 Solar and Stellar Astrophysics +1608.02750 Materials Science +1608.02752 Molecular Networks +1608.02753 Probability +1608.02757 Software Engineering +1608.02759 Number Theory +1608.02760 Group Theory +1608.02763 Artificial Intelligence +1608.02767 Functional Analysis +1608.02769 High Energy Astrophysical Phenomena +1608.02770 Differential Geometry +1608.02771 Phenomenology +1608.02772 Superconductivity +1608.02774 Computer Science and Game Theory +1608.02776 +1608.02778 Computer Vision and Pattern Recognition +1608.02781 +1608.02782 Computational Physics +1608.02784 Computation and Language +1608.02787 Accelerator Physics +1608.02788 Number Theory +1608.02793 Soft Condensed Matter +1608.02794 Complex Variables +1608.02797 Computation +1608.02800 Performance +1608.02803 +1608.02804 Chemical Physics +1608.02807 Logic in Computer Science +1608.02809 Materials Science +1608.02811 Analysis of PDEs +1608.02815 Algebraic Geometry +1608.02816 Differential Geometry +1608.02817 Combinatorics +1608.02821 Probability +1608.02823 Differential Geometry +1608.02824 Computer Vision and Pattern Recognition +1608.02825 Chemical Physics +1608.02826 Accelerator Physics +1608.02827 +1608.02829 Human-Computer Interaction +1608.02830 Information Theory +1608.02831 Analysis of PDEs +1608.02832 Differential Geometry +1608.02834 Phenomenology +1608.02836 Accelerator Physics +1608.02837 Rings and Algebras +1608.02841 Cosmology and Nongalactic Astrophysics +1608.02842 Medical Physics +1608.02843 Dynamical Systems +1608.02844 Combinatorics +1608.02846 Geometric Topology +1608.02848 Dynamical Systems +1608.02850 Logic +1608.02852 Solar and Stellar Astrophysics +1608.02854 +1608.02856 Fluid Dynamics +1608.02857 Analysis of PDEs +1608.02858 Artificial Intelligence +1608.02859 Medical Physics +1608.02861 Machine Learning +1608.02864 Optics +1608.02865 Statistical Mechanics +1608.02866 Information Theory +1608.02870 Analysis of PDEs +1608.02873 Earth and Planetary Astrophysics +1608.02874 Analysis of PDEs +1608.02876 Algebraic Topology +1608.02878 Statistical Mechanics +1608.02879 +1608.02880 Analysis of PDEs +1608.02881 Combinatorics +1608.02884 Networking and Internet Architecture +1608.02885 Complex Variables +1608.02887 Materials Science +1608.02888 Learning +1608.02889 Chaotic Dynamics +1608.02890 Combinatorics +1608.02897 +1608.02898 Classical Physics +1608.02900 Quantum Algebra +1608.02901 Algebraic Topology +1608.02902 Statistics Theory +1608.02903 Algebraic Topology +1608.02905 Quantum Gases +1608.02909 Optics +1608.02910 +1608.02913 Algebraic Geometry +1608.02917 Software Engineering +1608.02918 Combinatorics +1608.02921 Algebraic Geometry +1608.02922 +1608.02927 Computation and Language +1608.02931 Mesoscale and Nanoscale Physics +1608.02932 Theory +1111.0235 Probability +1302.2645 Machine Learning +1303.5796 Optimization and Control +1304.5990 Group Theory +1305.0327 Mesoscale and Nanoscale Physics +1309.4054 Methodology +1309.5180 Mesoscale and Nanoscale Physics +1402.2898 +1402.6437 Symplectic Geometry +1404.0994 Populations and Evolution +1404.1851 Combinatorics +1404.6571 Classical Analysis and ODEs +1405.6457 +1407.7598 Cryptography and Security +1408.2949 Algebraic Geometry +1408.4314 Mesoscale and Nanoscale Physics +1408.6698 Algebraic Geometry +1409.3575 Theory +1410.5499 Information Theory +1411.3182 Quantum Gases +1412.1093 Theory +1412.2455 Networking and Internet Architecture +1501.01100 +1501.04697 Rings and Algebras +1503.00374 Data Structures and Algorithms +1503.00404 Geometric Topology +1503.02975 Atomic and Molecular Clusters +1503.03234 Analysis of PDEs +1503.07853 Theory +1504.00463 Mesoscale and Nanoscale Physics +1504.01273 Classical Physics +1504.08278 Dynamical Systems +1505.03321 Classical Analysis and ODEs +1505.03535 Mesoscale and Nanoscale Physics +1505.07656 Functional Analysis +1506.00566 Phenomenology +1506.04631 Numerical Analysis +1506.08264 Information Theory +1507.01795 +1507.03729 Information Theory +1507.07524 Operator Algebras +1507.08010 Networking and Internet Architecture +1508.00388 Mesoscale and Nanoscale Physics +1508.03624 Phenomenology +1508.04065 Learning +1508.06420 Computer Science and Game Theory +1508.07699 Logic +1509.04160 Functional Analysis +1509.04656 Plasma Physics +1509.06235 Lattice +1509.07379 +1510.03656 +1510.03679 Statistics Theory +1510.05383 Statistical Mechanics +1510.07170 Information Theory +1510.07209 Group Theory +1511.01036 Quantum Gases +1511.01190 Statistical Mechanics +1511.01472 Biological Physics +1511.06161 +1511.07084 +1511.08878 Spectral Theory +1511.09294 +1512.03021 Group Theory +1512.03949 Populations and Evolution +1512.04679 Dynamical Systems +1512.05517 Quantum Gases +1512.05778 Phenomenology +1512.06621 Functional Analysis +1512.06973 Numerical Analysis +1512.08721 +1601.00591 Mesoscale and Nanoscale Physics +1601.01530 Computation and Language +1601.03024 Representation Theory +1601.04862 Robotics +1601.05063 Earth and Planetary Astrophysics +1601.05462 Fluid Dynamics +1601.05470 Numerical Analysis +1601.05540 Mesoscale and Nanoscale Physics +1602.02175 Combinatorics +1602.05353 Quantum Gases +1602.06892 Phenomenology +1602.08751 Physics and Society +1603.00380 Mesoscale and Nanoscale Physics +1603.00467 High Energy Astrophysical Phenomena +1603.00507 Algebraic Topology +1603.03061 Phenomenology +1603.04409 +1603.06917 Superconductivity +1603.08637 Computer Vision and Pattern Recognition +1604.00269 +1604.02059 Combinatorics +1604.02102 Phenomenology +1604.03788 Group Theory +1604.06075 Analysis of PDEs +1604.06339 +1604.06426 +1604.06876 Soft Condensed Matter +1604.06883 Soft Condensed Matter +1604.08641 Algebraic Geometry +1604.08823 Computers and Society +1604.08921 Populations and Evolution +1605.00146 Theory +1605.01247 Optics +1605.01870 Quantum Gases +1605.02073 Mesoscale and Nanoscale Physics +1605.03176 Cosmology and Nongalactic Astrophysics +1605.03550 Theory +1605.04566 +1605.06738 +1605.06984 Functional Analysis +1606.00865 Phenomenology +1606.01455 Computer Vision and Pattern Recognition +1606.01551 Disordered Systems and Neural Networks +1606.01702 Strongly Correlated Electrons +1606.02202 Phenomenology +1606.02317 Strongly Correlated Electrons +1606.02885 Soft Condensed Matter +1606.02949 Theory +1606.03231 Strongly Correlated Electrons +1606.03736 Robotics +1606.03890 Computational Geometry +1606.04864 Strongly Correlated Electrons +1606.06963 General Physics +1606.07673 Cosmology and Nongalactic Astrophysics +1606.07797 +1606.08813 Machine Learning +1606.08996 +1606.09345 Materials Science +1606.09350 Algebraic Geometry +1607.02273 Atomic Physics +1607.03005 Differential Geometry +1607.04446 Data Structures and Algorithms +1607.05567 Cosmology and Nongalactic Astrophysics +1607.05667 Fluid Dynamics +1607.05676 Strongly Correlated Electrons +1607.05926 Theory +1607.06484 +1607.06851 Soft Condensed Matter +1607.07339 Dynamical Systems +1607.07815 Information Theory +1607.08030 Logic +1607.08266 Fluid Dynamics +1608.02356 Strongly Correlated Electrons +1608.02455 Algebraic Geometry +1608.03334 +1608.05052 Theory +1608.05383 Phenomenology +1608.05592 Earth and Planetary Astrophysics +1608.06365 Optics +1608.06695 Optimization and Control +1608.06727 Logic +1608.06841 General Physics +1608.06851 Statistics Theory +1608.07163 Logic in Computer Science +1608.07214 Fluid Dynamics +1608.07452 Cosmology and Nongalactic Astrophysics +1608.07763 Strongly Correlated Electrons +1608.08003 Chemical Physics +1608.08088 General Mathematics +1608.08143 Mesoscale and Nanoscale Physics +1608.08158 Algebraic Geometry +1608.08169 Analysis of PDEs +1608.08215 +1608.08220 +1608.08266 Learning +1608.08381 Information Theory +1608.08526 Computer Vision and Pattern Recognition +1608.08597 Optimization and Control +1608.08632 Phenomenology +1608.08635 Statistical Mechanics +1608.08641 Mesoscale and Nanoscale Physics +1608.08645 Analysis of PDEs +1608.08648 Data Structures and Algorithms +1608.08652 Spectral Theory +1608.08654 Geometric Topology +1608.08659 Machine Learning +1608.08660 Networking and Internet Architecture +1608.08662 Computational Geometry +1608.08663 Symbolic Computation +1608.08665 Optimization and Control +1608.08666 Computation +1608.08667 Symplectic Geometry +1608.08669 Differential Geometry +1608.08674 +1608.08675 Probability +1608.08677 Astrophysics of Galaxies +1608.08678 Information Theory +1608.08679 Computational Complexity +1608.08680 Probability +1608.08683 Optimization and Control +1608.08685 Complex Variables +1608.08686 Phenomenology +1608.08687 Numerical Analysis +1608.08689 Formal Languages and Automata Theory +1608.08691 Data Structures and Algorithms +1608.08693 Commutative Algebra +1608.08695 Theory +1608.08696 Instrumentation and Detectors +1608.08698 Social and Information Networks +1608.08700 Algebraic Geometry +1608.08702 Combinatorics +1608.08711 Computer Vision and Pattern Recognition +1608.08712 Probability +1608.08714 Astrophysics of Galaxies +1608.08716 Artificial Intelligence +1608.08717 Statistics Theory +1608.08718 Applications +1608.08721 Complex Variables +1608.08724 Artificial Intelligence +1608.08725 Networking and Internet Architecture +1608.08728 Probability +1608.08729 Networking and Internet Architecture +1608.08731 Representation Theory +1608.08732 Metric Geometry +1608.08733 Differential Geometry +1608.08734 Dynamical Systems +1608.08736 Software Engineering +1608.08737 Mesoscale and Nanoscale Physics +1608.08738 Computation and Language +1608.08740 Discrete Mathematics +1608.08742 Information Theory +1608.08743 Probability +1608.08746 Algebraic Geometry +1608.08747 Combinatorics +1608.08748 Instrumentation and Methods for Astrophysics +1608.08749 Artificial Intelligence +1608.08750 +1608.08753 Robotics +1608.08754 Software Engineering +1608.08755 Combinatorics +1608.08759 Numerical Analysis +1608.08760 Optimization and Control +1608.08765 Mesoscale and Nanoscale Physics +1608.08767 Optics +1608.08770 Popular Physics +1608.08771 Pattern Formation and Solitons +1608.08773 Combinatorics +1608.08774 Earth and Planetary Astrophysics +1608.08780 Optimization and Control +1608.08782 Neural and Evolutionary Computing +1608.08783 Statistics Theory +1608.08785 +1608.08787 Cryptography and Security +1608.08791 Computational Geometry +1608.08792 Computer Vision and Pattern Recognition +1608.08796 Soft Condensed Matter +1608.08797 Dynamical Systems +1608.08800 Combinatorics +1608.08804 Algebraic Geometry +1608.08806 High Energy Astrophysical Phenomena +1608.08807 Human-Computer Interaction +1608.08808 Cosmology and Nongalactic Astrophysics +1608.08814 Computation +1608.08816 Earth and Planetary Astrophysics +1608.08817 Numerical Analysis +1608.08819 Theory +1608.08820 Mesoscale and Nanoscale Physics +1608.08821 +1608.08829 Numerical Analysis +1608.08830 Numerical Analysis +1608.08832 Probability +1608.08835 Dynamical Systems +1608.08839 Physics and Society +1608.08841 Phenomenology +1608.08843 Combinatorics +1608.08844 Computational Geometry +1608.08846 General Physics +1608.08847 Earth and Planetary Astrophysics +1608.08857 General Physics +1608.08861 Functional Analysis +1608.08863 General Physics +1608.08866 Dynamical Systems +1608.08867 Plasma Physics +1608.08868 Computation and Language +1608.08870 Optics +1608.08871 Numerical Analysis +1608.08872 Analysis of PDEs +1608.08873 Methodology +1608.08878 Computer Vision and Pattern Recognition +1608.08882 Algebraic Geometry +1608.08883 Optimization and Control +1608.08889 Mesoscale and Nanoscale Physics +1608.08890 Dynamical Systems +1608.08892 Computational Geometry +1608.08894 Fluid Dynamics +1608.08899 Computational Geometry +1608.08900 Lattice +1608.08902 Superconductivity +1608.08903 +1608.08912 Mesoscale and Nanoscale Physics +1608.08913 Analysis of PDEs +1608.08914 Materials Science +1608.08915 Instrumentation and Detectors +1608.08918 Logic in Computer Science +1608.08924 Soft Condensed Matter +1608.08926 Probability +1608.08927 Computation and Language +1608.08929 Mesoscale and Nanoscale Physics +1608.08931 +1608.08933 Software Engineering +1608.08936 Human-Computer Interaction +1608.08937 Classical Analysis and ODEs +1608.08940 Computation and Language +1608.08941 Methodology +1608.08942 Commutative Algebra +1608.08944 Commutative Algebra +1608.08946 Soft Condensed Matter +1608.08948 Combinatorics +1608.08954 Combinatorics +1608.08956 Logic in Computer Science +1608.08957 Algebraic Geometry +1608.08961 Fluid Dynamics +1608.08962 Algebraic Geometry +1608.08964 Rings and Algebras +1608.08970 Data Structures and Algorithms +1608.08975 Numerical Analysis +1608.08979 Atomic Physics +1608.08986 Astrophysics of Galaxies +1608.08988 Phenomenology +1608.08989 Representation Theory +1608.08990 Combinatorics +1608.08992 Symplectic Geometry +1608.08994 Mesoscale and Nanoscale Physics +1608.08996 +1608.08997 Analysis of PDEs +1608.08998 Superconductivity +1608.09000 Software Engineering +1608.09001 Dynamical Systems +1608.09002 Information Retrieval +1608.09005 Computer Vision and Pattern Recognition +1608.09006 Strongly Correlated Electrons +1608.09009 Biomolecules +1608.09014 Learning +hep-lat/0004026 Lattice +hep-lat/0005027 Lattice +hep-lat/0006009 Lattice +hep-lat/0008017 Lattice +hep-lat/0009009 Lattice +hep-lat/0009028 Lattice +hep-lat/0009035 Lattice +hep-lat/0010041 Lattice +hep-lat/0010062 Lattice +hep-lat/0010098 Lattice +hep-lat/0011024 Lattice +hep-lat/0011050 Lattice +hep-lat/0011092 Lattice +hep-lat/0103016 Lattice +hep-lat/0108003 Lattice +hep-lat/0108018 Lattice +hep-lat/0110036 Lattice +hep-lat/0110183 Lattice +hep-lat/0111056 Lattice +hep-lat/0112036 Lattice +hep-lat/0112041 Lattice +hep-lat/0201006 Lattice +hep-lat/0201016 Lattice +hep-lat/0203005 Lattice +hep-lat/0203016 Lattice +hep-lat/0203019 Lattice +hep-lat/0205024 Lattice +hep-lat/0205027 Lattice +hep-lat/0206021 Lattice +hep-lat/0206028 Lattice +hep-lat/0207012 Lattice +hep-lat/0209083 Lattice +hep-lat/0209107 Lattice +hep-lat/0209157 Lattice +hep-lat/0210016 Lattice +hep-lat/0210028 Lattice +hep-lat/0210047 Lattice +hep-lat/0211006 Lattice +hep-lat/0211010 Lattice +hep-lat/0301002 Lattice +hep-lat/0301003 Lattice +hep-lat/0303023 Lattice +hep-lat/0305018 Lattice +hep-lat/0306005 Lattice +hep-lat/0308017 Lattice +hep-lat/0308036 Lattice +hep-lat/0309043 Lattice +hep-lat/0309111 Lattice +hep-lat/0309118 Lattice +hep-lat/0309120 Lattice +hep-lat/0309143 Lattice +hep-lat/0310010 Lattice +hep-lat/0310037 Lattice +hep-lat/0312036 Lattice +hep-lat/0401002 Lattice +hep-lat/0405023 Lattice +hep-lat/0407010 Lattice +hep-lat/0409007 Lattice +hep-lat/0409145 Lattice +hep-lat/0410028 Lattice +hep-lat/0507008 Lattice +hep-lat/0507015 Lattice +hep-lat/0508022 Lattice +hep-lat/0509024 Lattice +hep-lat/0509038 Lattice +hep-lat/0509039 Lattice +hep-lat/0509044 Lattice +hep-lat/0509061 Lattice +hep-lat/0509062 Lattice +hep-lat/0509068 Lattice +hep-lat/0509070 Lattice +hep-lat/0509076 Lattice +hep-lat/0509089 Lattice +hep-lat/0509095 Lattice +hep-lat/0509097 Lattice +hep-lat/0509103 Lattice +hep-lat/0509105 Lattice +hep-lat/0509113 Lattice +hep-lat/0509136 Lattice +hep-lat/0509144 Lattice +hep-lat/0509150 Lattice +hep-lat/0509155 Lattice +hep-lat/0509159 Lattice +hep-lat/0509167 Lattice +hep-lat/0509170 Lattice +hep-lat/0509171 Lattice +hep-lat/0509178 Lattice +hep-lat/0509182 Lattice +hep-lat/0509191 Lattice +hep-lat/0509193 Lattice +hep-lat/0509196 Lattice +hep-lat/0510001 Lattice +hep-lat/0510006 Lattice +hep-lat/0510016 Lattice +hep-lat/0510020 Lattice +hep-lat/0510021 Lattice +hep-lat/0510032 Lattice +hep-lat/0510033 Lattice +hep-lat/0510034 Lattice +hep-lat/0510035 Lattice +hep-lat/0510037 Lattice +hep-lat/0510038 Lattice +hep-lat/0510039 Lattice +hep-lat/0510040 Lattice +hep-lat/0510044 Lattice +hep-lat/0510045 Lattice +hep-lat/0510080 Lattice +hep-lat/0601017 Lattice +hep-lat/0602009 Lattice +hep-lat/0603007 Lattice +hep-lat/0603015 Lattice +hep-lat/0604002 Lattice +hep-lat/0604009 Lattice +hep-lat/0607021 Lattice +hep-lat/0609024 Lattice +hep-lat/0610032 Lattice +hep-lat/9503012 Lattice +hep-lat/9503013 Lattice +hep-lat/9503014 Lattice +hep-lat/9503015 Lattice +hep-lat/9503018 Lattice +hep-lat/9503019 Lattice +hep-lat/9504007 Lattice +hep-lat/9504015 Lattice +hep-lat/9505003 Lattice +hep-lat/9506021 Lattice +hep-lat/9509094 Lattice +hep-lat/9510005 Lattice +hep-lat/9510030 Lattice +hep-lat/9510035 Lattice +hep-lat/9511018 Lattice +hep-lat/9511024 Lattice +hep-lat/9511029 Lattice +hep-lat/9601029 Lattice +hep-lat/9607002 Lattice +hep-lat/9607056 Lattice +hep-lat/9607082 Lattice +hep-lat/9607086 Lattice +hep-lat/9608032 Lattice +hep-lat/9608113 Lattice +hep-lat/9608129 Lattice +hep-lat/9608135 Lattice +hep-lat/9609017 Lattice +hep-lat/9609035 Lattice +hep-lat/9609046 Lattice +hep-lat/9610024 Lattice +hep-lat/9611009 Lattice +hep-lat/9611015 Lattice +hep-lat/9611026 Lattice +hep-lat/9612008 Lattice +hep-lat/9612016 Lattice +hep-lat/9701001 Lattice +hep-lat/9703002 Lattice +hep-lat/9703008 Lattice +hep-lat/9704010 Lattice +hep-lat/9705014 Lattice +hep-lat/9705017 Lattice +hep-lat/9707027 Lattice +hep-lat/9708017 Lattice +hep-lat/9709043 Lattice +hep-lat/9709091 Lattice +hep-lat/9709158 Lattice +hep-lat/9710001 Lattice +hep-lat/9710026 Lattice +hep-lat/9711053 Lattice +hep-lat/9801015 Lattice +hep-lat/9801037 Lattice +hep-lat/9802038 Lattice +hep-lat/9803011 Lattice +hep-lat/9805025 Lattice +hep-lat/9805027 Lattice +hep-lat/9809011 Lattice +hep-lat/9809044 Lattice +hep-lat/9809059 Lattice +hep-lat/9809079 Lattice +hep-lat/9809139 Lattice +hep-lat/9809157 Lattice +hep-lat/9809176 Lattice +hep-lat/9812002 Lattice +hep-lat/9902032 Lattice +hep-lat/9903038 Lattice +hep-lat/9906026 Lattice +hep-lat/9907021 Lattice +hep-lat/9909033 Lattice +hep-lat/9909112 Lattice +hep-lat/9910013 Lattice +hep-lat/9910030 Lattice +hep-lat/9912023 Lattice +hep-ph/9203218 Phenomenology +hep-ph/9204234 Phenomenology +hep-ph/9204238 Phenomenology +hep-ph/9205234 Phenomenology +hep-ph/9206201 Phenomenology +hep-ph/9207239 Phenomenology +hep-ph/9207246 Phenomenology +hep-ph/9208250 Phenomenology +hep-ph/9209227 Phenomenology +hep-ph/9209246 Phenomenology +hep-ph/9210215 Phenomenology +hep-ph/9210246 Phenomenology +hep-ph/9212223 Phenomenology +hep-ph/9212285 Phenomenology +hep-ph/9301284 Phenomenology +hep-ph/9302254 Phenomenology +hep-ph/9302289 Phenomenology +hep-ph/9302311 Phenomenology +hep-ph/9302316 Phenomenology +hep-ph/9305206 Phenomenology +hep-ph/9305252 Phenomenology +hep-ph/9305277 Phenomenology +hep-ph/9305291 Phenomenology +hep-ph/9307317 Phenomenology +hep-ph/9307325 Phenomenology +hep-ph/9308227 Phenomenology +hep-ph/9308378 Phenomenology +hep-ph/9309201 Phenomenology +hep-ph/9309212 Phenomenology +hep-ph/9309245 Phenomenology +hep-ph/9309280 Phenomenology +hep-ph/9310229 Phenomenology +hep-ph/9310245 Phenomenology +hep-ph/9310282 Phenomenology +hep-ph/9310329 Phenomenology +hep-ph/9310340 Phenomenology +hep-ph/9311214 Phenomenology +hep-ph/9311287 Phenomenology +hep-ph/9311289 Phenomenology +hep-ph/9312227 Phenomenology +hep-ph/9312229 Phenomenology +hep-ph/9312239 Phenomenology +hep-ph/9401317 Phenomenology +hep-ph/9402226 Phenomenology +hep-ph/9402245 Phenomenology +hep-ph/9402282 Phenomenology +hep-ph/9403241 Phenomenology +hep-ph/9403245 Phenomenology +hep-ph/9403261 Phenomenology +hep-ph/9403273 Phenomenology +hep-ph/9403297 Phenomenology +hep-ph/9403348 Phenomenology +hep-ph/9404219 Phenomenology +hep-ph/9404221 Phenomenology +hep-ph/9404252 Phenomenology +hep-ph/9404278 Phenomenology +hep-ph/9404329 Phenomenology +hep-ph/9404341 Phenomenology +hep-ph/9405396 Phenomenology +hep-ph/9406202 Phenomenology +hep-ph/9406337 Phenomenology +hep-ph/9406390 Phenomenology +hep-ph/9407233 Phenomenology +hep-ph/9407249 Phenomenology +hep-ph/9407383 Phenomenology +hep-ph/9407387 Phenomenology +hep-ph/9407391 Phenomenology +hep-ph/9408214 Phenomenology +hep-ph/9408260 Phenomenology +hep-ph/9409216 Phenomenology +hep-ph/9409262 Phenomenology +hep-ph/9409372 Phenomenology +hep-ph/9409383 Phenomenology +hep-ph/9409408 Phenomenology +hep-ph/9410219 Phenomenology +hep-ph/9410266 Phenomenology +hep-ph/9410286 Phenomenology +hep-ph/9410360 Phenomenology +hep-ph/9410380 Phenomenology +hep-ph/9411338 Phenomenology +hep-ph/9412319 Phenomenology +hep-ph/9412321 Phenomenology +hep-ph/9412366 Phenomenology +hep-ph/9501204 Phenomenology +hep-ph/9501205 Phenomenology +hep-ph/9501206 Phenomenology +hep-ph/9501207 Phenomenology +hep-ph/9501208 Phenomenology +hep-ph/9501209 Phenomenology +hep-ph/9501213 Phenomenology +hep-ph/9501214 Phenomenology +hep-ph/9501215 Phenomenology +hep-ph/9501216 Phenomenology +hep-ph/9501217 Phenomenology +hep-ph/9501219 Phenomenology +hep-ph/9501220 Phenomenology +hep-ph/9501224 Phenomenology +hep-ph/9501226 Phenomenology +hep-ph/9501227 Phenomenology +hep-ph/9501228 Phenomenology +hep-ph/9501229 Phenomenology +hep-ph/9501233 Phenomenology +hep-ph/9501234 Phenomenology +hep-ph/9501235 Phenomenology +hep-ph/9501236 Phenomenology +hep-ph/9501239 Phenomenology +hep-ph/9501240 Phenomenology +hep-ph/9501241 Phenomenology +hep-ph/9501242 Phenomenology +hep-ph/9501243 Phenomenology +hep-ph/9501244 Phenomenology +hep-ph/9501246 Phenomenology +hep-ph/9501247 Phenomenology +hep-ph/9501248 Phenomenology +hep-ph/9501249 Phenomenology +hep-ph/9501250 Phenomenology +hep-ph/9501253 Phenomenology +hep-ph/9501255 Phenomenology +hep-ph/9501256 Phenomenology +hep-ph/9501257 Phenomenology +hep-ph/9501258 Phenomenology +hep-ph/9501259 Phenomenology +hep-ph/9501260 Phenomenology +hep-ph/9501261 Phenomenology +hep-ph/9501262 Phenomenology +hep-ph/9501264 Phenomenology +hep-ph/9501267 Phenomenology +hep-ph/9501270 Phenomenology +hep-ph/9501271 Phenomenology +hep-ph/9501274 Phenomenology +hep-ph/9501276 Phenomenology +hep-ph/9501277 Phenomenology +hep-ph/9501278 Phenomenology +hep-ph/9501279 Phenomenology +hep-ph/9501280 Phenomenology +hep-ph/9501281 Phenomenology +hep-ph/9501282 Phenomenology +hep-ph/9501285 Phenomenology +hep-ph/9501286 Phenomenology +hep-ph/9501288 Phenomenology +hep-ph/9501289 Phenomenology +hep-ph/9501291 Phenomenology +hep-ph/9501293 Phenomenology +hep-ph/9501294 Phenomenology +hep-ph/9501297 Phenomenology +hep-ph/9501298 Phenomenology +hep-ph/9501300 Phenomenology +hep-ph/9501301 Phenomenology +hep-ph/9501302 Phenomenology +hep-ph/9501303 Phenomenology +hep-ph/9501305 Phenomenology +hep-ph/9501306 Phenomenology +hep-ph/9501307 Phenomenology +hep-ph/9501308 Phenomenology +hep-ph/9501309 Phenomenology +hep-ph/9501311 Phenomenology +hep-ph/9501312 Phenomenology +hep-ph/9501313 Phenomenology +hep-ph/9501315 Phenomenology +hep-ph/9501320 Phenomenology +hep-ph/9501322 Phenomenology +hep-ph/9501327 Phenomenology +hep-ph/9501328 Phenomenology +hep-ph/9501333 Phenomenology +hep-ph/9501335 Phenomenology +hep-ph/9501336 Phenomenology +hep-ph/9501337 Phenomenology +hep-ph/9501338 Phenomenology +hep-ph/9501340 Phenomenology +hep-ph/9501341 Phenomenology +hep-ph/9501344 Phenomenology +hep-ph/9501346 Phenomenology +hep-ph/9501348 Phenomenology +hep-ph/9501349 Phenomenology +hep-ph/9501351 Phenomenology +hep-ph/9501352 Phenomenology +hep-ph/9501353 Phenomenology +hep-ph/9501354 Phenomenology +hep-ph/9501362 Phenomenology +hep-ph/9501364 Phenomenology +hep-ph/9501365 Phenomenology +hep-ph/9501366 Phenomenology +hep-ph/9501367 Phenomenology +hep-ph/9501368 Phenomenology +hep-ph/9501372 Phenomenology +hep-ph/9501375 Phenomenology +hep-ph/9501376 Phenomenology +hep-ph/9501377 Phenomenology +hep-ph/9501378 Phenomenology +hep-ph/9501379 Phenomenology +hep-ph/9501381 Phenomenology +hep-ph/9501383 Phenomenology +hep-ph/9501385 Phenomenology +hep-ph/9501386 Phenomenology +hep-ph/9501390 Phenomenology +hep-ph/9501392 Phenomenology +hep-ph/9501393 Phenomenology +hep-ph/9501396 Phenomenology +hep-ph/9501398 Phenomenology +hep-ph/9501400 Phenomenology +hep-ph/9501403 Phenomenology +hep-ph/9501405 Phenomenology +hep-ph/9501406 Phenomenology +hep-ph/9501407 Phenomenology +hep-ph/9501408 Phenomenology +hep-ph/9501412 Phenomenology +hep-ph/9501413 Phenomenology +hep-ph/9501415 Phenomenology +hep-ph/9501416 Phenomenology +hep-ph/9501418 Phenomenology +hep-ph/9502201 Phenomenology +hep-ph/9502202 Phenomenology +hep-ph/9502203 Phenomenology +hep-ph/9502204 Phenomenology +hep-ph/9502207 Phenomenology +hep-ph/9502208 Phenomenology +hep-ph/9502211 Phenomenology +hep-ph/9502212 Phenomenology +hep-ph/9502213 Phenomenology +hep-ph/9502214 Phenomenology +hep-ph/9502216 Phenomenology +hep-ph/9502217 Phenomenology +hep-ph/9502218 Phenomenology +hep-ph/9502220 Phenomenology +hep-ph/9502221 Phenomenology +hep-ph/9502227 Phenomenology +hep-ph/9502230 Phenomenology +hep-ph/9502231 Phenomenology +hep-ph/9502232 Phenomenology +hep-ph/9502233 Phenomenology +hep-ph/9502234 Phenomenology +hep-ph/9502235 Phenomenology +hep-ph/9502236 Phenomenology +hep-ph/9502238 Phenomenology +hep-ph/9502240 Phenomenology +hep-ph/9502241 Phenomenology +hep-ph/9502242 Phenomenology +hep-ph/9502244 Phenomenology +hep-ph/9502247 Phenomenology +hep-ph/9502249 Phenomenology +hep-ph/9502251 Phenomenology +hep-ph/9502253 Phenomenology +hep-ph/9502254 Phenomenology +hep-ph/9502256 Phenomenology +hep-ph/9502257 Phenomenology +hep-ph/9502259 Phenomenology +hep-ph/9502260 Phenomenology +hep-ph/9502261 Phenomenology +hep-ph/9502262 Phenomenology +hep-ph/9502265 Phenomenology +hep-ph/9502267 Phenomenology +hep-ph/9502268 Phenomenology +hep-ph/9502269 Phenomenology +hep-ph/9502272 Phenomenology +hep-ph/9502273 Phenomenology +hep-ph/9502275 Phenomenology +hep-ph/9502277 Phenomenology +hep-ph/9502278 Phenomenology +hep-ph/9502279 Phenomenology +hep-ph/9502280 Phenomenology +hep-ph/9502282 Phenomenology +hep-ph/9502284 Phenomenology +hep-ph/9502287 Phenomenology +hep-ph/9502288 Phenomenology +hep-ph/9502289 Phenomenology +hep-ph/9502291 Phenomenology +hep-ph/9502292 Phenomenology +hep-ph/9502296 Phenomenology +hep-ph/9502298 Phenomenology +hep-ph/9502299 Phenomenology +hep-ph/9502301 Phenomenology +hep-ph/9502304 Phenomenology +hep-ph/9502305 Phenomenology +hep-ph/9502306 Phenomenology +hep-ph/9502307 Phenomenology +hep-ph/9502309 Phenomenology +hep-ph/9502310 Phenomenology +hep-ph/9502312 Phenomenology +hep-ph/9502313 Phenomenology +hep-ph/9502314 Phenomenology +hep-ph/9502315 Phenomenology +hep-ph/9502316 Phenomenology +hep-ph/9502319 Phenomenology +hep-ph/9502320 Phenomenology +hep-ph/9502321 Phenomenology +hep-ph/9502322 Phenomenology +hep-ph/9502325 Phenomenology +hep-ph/9502326 Phenomenology +hep-ph/9502328 Phenomenology +hep-ph/9502330 Phenomenology +hep-ph/9502331 Phenomenology +hep-ph/9502334 Phenomenology +hep-ph/9502336 Phenomenology +hep-ph/9502338 Phenomenology +hep-ph/9502341 Phenomenology +hep-ph/9502343 Phenomenology +hep-ph/9502344 Phenomenology +hep-ph/9502345 Phenomenology +hep-ph/9502349 Phenomenology +hep-ph/9502350 Phenomenology +hep-ph/9502351 Phenomenology +hep-ph/9502352 Phenomenology +hep-ph/9502354 Phenomenology +hep-ph/9502357 Phenomenology +hep-ph/9502359 Phenomenology +hep-ph/9502360 Phenomenology +hep-ph/9502361 Phenomenology +hep-ph/9502364 Phenomenology +hep-ph/9502365 Phenomenology +hep-ph/9502367 Phenomenology +hep-ph/9502368 Phenomenology +hep-ph/9502374 Phenomenology +hep-ph/9502379 Phenomenology +hep-ph/9502381 Phenomenology +hep-ph/9502383 Phenomenology +hep-ph/9502384 Phenomenology +hep-ph/9502388 Phenomenology +hep-ph/9502389 Phenomenology +hep-ph/9502390 Phenomenology +hep-ph/9502392 Phenomenology +hep-ph/9502393 Phenomenology +hep-ph/9502394 Phenomenology +hep-ph/9502397 Phenomenology +hep-ph/9502398 Phenomenology +hep-ph/9502399 Phenomenology +hep-ph/9502400 Phenomenology +hep-ph/9502401 Phenomenology +hep-ph/9502402 Phenomenology +hep-ph/9502403 Phenomenology +hep-ph/9502405 Phenomenology +hep-ph/9502407 Phenomenology +hep-ph/9502409 Phenomenology +hep-ph/9502410 Phenomenology +hep-ph/9502411 Phenomenology +hep-ph/9502412 Phenomenology +hep-ph/9502413 Phenomenology +hep-ph/9502414 Phenomenology +hep-ph/9502415 Phenomenology +hep-ph/9502416 Phenomenology +hep-ph/9502417 Phenomenology +hep-ph/9502418 Phenomenology +hep-ph/9503202 Phenomenology +hep-ph/9503203 Phenomenology +hep-ph/9503204 Phenomenology +hep-ph/9503205 Phenomenology +hep-ph/9503206 Phenomenology +hep-ph/9503209 Phenomenology +hep-ph/9503210 Phenomenology +hep-ph/9503211 Phenomenology +hep-ph/9503212 Phenomenology +hep-ph/9503213 Phenomenology +hep-ph/9503214 Phenomenology +hep-ph/9503219 Phenomenology +hep-ph/9503220 Phenomenology +hep-ph/9503221 Phenomenology +hep-ph/9503222 Phenomenology +hep-ph/9503225 Phenomenology +hep-ph/9503226 Phenomenology +hep-ph/9503227 Phenomenology +hep-ph/9503228 Phenomenology +hep-ph/9503229 Phenomenology +hep-ph/9503235 Phenomenology +hep-ph/9503241 Phenomenology +hep-ph/9503242 Phenomenology +hep-ph/9503245 Phenomenology +hep-ph/9503246 Phenomenology +hep-ph/9503247 Phenomenology +hep-ph/9503248 Phenomenology +hep-ph/9503249 Phenomenology +hep-ph/9503250 Phenomenology +hep-ph/9503251 Phenomenology +hep-ph/9503253 Phenomenology +hep-ph/9503254 Phenomenology +hep-ph/9503256 Phenomenology +hep-ph/9503257 Phenomenology +hep-ph/9503258 Phenomenology +hep-ph/9503261 Phenomenology +hep-ph/9503264 Phenomenology +hep-ph/9503265 Phenomenology +hep-ph/9503267 Phenomenology +hep-ph/9503271 Phenomenology +hep-ph/9503272 Phenomenology +hep-ph/9503275 Phenomenology +hep-ph/9503277 Phenomenology +hep-ph/9503279 Phenomenology +hep-ph/9503281 Phenomenology +hep-ph/9503283 Phenomenology +hep-ph/9503284 Phenomenology +hep-ph/9503286 Phenomenology +hep-ph/9503288 Phenomenology +hep-ph/9503292 Phenomenology +hep-ph/9503294 Phenomenology +hep-ph/9503296 Phenomenology +hep-ph/9503297 Phenomenology +hep-ph/9503299 Phenomenology +hep-ph/9503301 Phenomenology +hep-ph/9503302 Phenomenology +hep-ph/9503303 Phenomenology +hep-ph/9503306 Phenomenology +hep-ph/9503311 Phenomenology +hep-ph/9503312 Phenomenology +hep-ph/9503314 Phenomenology +hep-ph/9503315 Phenomenology +hep-ph/9503316 Phenomenology +hep-ph/9503317 Phenomenology +hep-ph/9503318 Phenomenology +hep-ph/9503319 Phenomenology +hep-ph/9503320 Phenomenology +hep-ph/9503321 Phenomenology +hep-ph/9503324 Phenomenology +hep-ph/9503325 Phenomenology +hep-ph/9503327 Phenomenology +hep-ph/9503328 Phenomenology +hep-ph/9503329 Phenomenology +hep-ph/9503330 Phenomenology +hep-ph/9503333 Phenomenology +hep-ph/9503336 Phenomenology +hep-ph/9503339 Phenomenology +hep-ph/9503340 Phenomenology +hep-ph/9503341 Phenomenology +hep-ph/9503342 Phenomenology +hep-ph/9503343 Phenomenology +hep-ph/9503344 Phenomenology +hep-ph/9503349 Phenomenology +hep-ph/9503350 Phenomenology +hep-ph/9503356 Phenomenology +hep-ph/9503360 Phenomenology +hep-ph/9503361 Phenomenology +hep-ph/9503363 Phenomenology +hep-ph/9503364 Phenomenology +hep-ph/9503365 Phenomenology +hep-ph/9503366 Phenomenology +hep-ph/9503367 Phenomenology +hep-ph/9503368 Phenomenology +hep-ph/9503369 Phenomenology +hep-ph/9503370 Phenomenology +hep-ph/9503371 Phenomenology +hep-ph/9503372 Phenomenology +hep-ph/9503374 Phenomenology +hep-ph/9503375 Phenomenology +hep-ph/9503378 Phenomenology +hep-ph/9503386 Phenomenology +hep-ph/9503399 Phenomenology +hep-ph/9503412 Phenomenology +hep-ph/9503424 Phenomenology +hep-ph/9503436 Phenomenology +hep-ph/9503469 Phenomenology +hep-ph/9504217 Phenomenology +hep-ph/9504247 Phenomenology +hep-ph/9504284 Phenomenology +hep-ph/9504292 Phenomenology +hep-ph/9504293 Phenomenology +hep-ph/9504302 Phenomenology +hep-ph/9504311 Phenomenology +hep-ph/9504320 Phenomenology +hep-ph/9504372 Phenomenology +hep-ph/9505368 Phenomenology +hep-ph/9505402 Phenomenology +hep-ph/9505414 Phenomenology +hep-ph/9505415 Phenomenology +hep-ph/9505439 Phenomenology +hep-ph/9506220 Phenomenology +hep-ph/9506225 Phenomenology +hep-ph/9506246 Phenomenology +hep-ph/9506299 Phenomenology +hep-ph/9506303 Phenomenology +hep-ph/9506349 Phenomenology +hep-ph/9506384 Phenomenology +hep-ph/9506434 Phenomenology +hep-ph/9507205 Phenomenology +hep-ph/9507237 Phenomenology +hep-ph/9507276 Phenomenology +hep-ph/9507300 Phenomenology +hep-ph/9507335 Phenomenology +hep-ph/9507434 Phenomenology +hep-ph/9508206 Phenomenology +hep-ph/9508215 Phenomenology +hep-ph/9508228 Phenomenology +hep-ph/9508249 Phenomenology +hep-ph/9508315 Phenomenology +hep-ph/9508319 Phenomenology +hep-ph/9508324 Phenomenology +hep-ph/9508337 Phenomenology +hep-ph/9508352 Phenomenology +hep-ph/9508365 Phenomenology +hep-ph/9509202 Phenomenology +hep-ph/9509215 Phenomenology +hep-ph/9509241 Phenomenology +hep-ph/9509283 Phenomenology +hep-ph/9509335 Phenomenology +hep-ph/9510241 Phenomenology +hep-ph/9510247 Phenomenology +hep-ph/9510307 Phenomenology +hep-ph/9510401 Phenomenology +hep-ph/9511231 Phenomenology +hep-ph/9511238 Phenomenology +hep-ph/9511244 Phenomenology +hep-ph/9511274 Phenomenology +hep-ph/9511360 Phenomenology +hep-ph/9511421 Phenomenology +hep-ph/9512277 Phenomenology +hep-ph/9512295 Phenomenology +hep-ph/9512304 Phenomenology +hep-ph/9512432 Phenomenology +hep-ph/9601208 Phenomenology +hep-ph/9601221 Phenomenology +hep-ph/9601293 Phenomenology +hep-ph/9601310 Phenomenology +hep-ph/9601348 Phenomenology +hep-ph/9601358 Phenomenology +hep-ph/9602247 Phenomenology +hep-ph/9602345 Phenomenology +hep-ph/9602352 Phenomenology +hep-ph/9602398 Phenomenology +hep-ph/9602431 Phenomenology +hep-ph/9603224 Phenomenology +hep-ph/9603226 Phenomenology +hep-ph/9603227 Phenomenology +hep-ph/9603241 Phenomenology +hep-ph/9603298 Phenomenology +hep-ph/9603322 Phenomenology +hep-ph/9603360 Phenomenology +hep-ph/9603375 Phenomenology +hep-ph/9603421 Phenomenology +hep-ph/9603422 Phenomenology +hep-ph/9604217 Phenomenology +hep-ph/9604274 Phenomenology +hep-ph/9604295 Phenomenology +hep-ph/9604304 Phenomenology +hep-ph/9604309 Phenomenology +hep-ph/9604343 Phenomenology +hep-ph/9604356 Phenomenology +hep-ph/9604368 Phenomenology +hep-ph/9604380 Phenomenology +hep-ph/9604437 Phenomenology +hep-ph/9604438 Phenomenology +hep-ph/9605217 Phenomenology +hep-ph/9605262 Phenomenology +hep-ph/9605281 Phenomenology +hep-ph/9605289 Phenomenology +hep-ph/9605299 Phenomenology +hep-ph/9605362 Phenomenology +hep-ph/9605369 Phenomenology +0903.2802 High Energy Astrophysical Phenomena +0906.3878 Fluid Dynamics +1001.3701 Materials Science +1006.0847 Quantum Algebra +1007.2697 Classical Analysis and ODEs +1010.4724 Materials Science +1104.1559 Quantum Algebra +1112.6043 Phenomenology +1202.1460 Analysis of PDEs +1207.2045 Rings and Algebras +1209.0307 Logic +1210.4471 Statistical Mechanics +1210.4767 Commutative Algebra +1211.2528 Statistical Mechanics +1301.5271 Combinatorics +1303.6752 Dynamical Systems +1304.1642 +1305.0834 Astrophysics of Galaxies +1305.2405 Instrumentation and Detectors +1311.1825 Quantum Gases +1311.4711 Mesoscale and Nanoscale Physics +1311.5095 +1401.4968 Materials Science +1402.0689 Materials Science +1402.2587 Category Theory +1403.0298 Data Structures and Algorithms +1404.3704 Strongly Correlated Electrons +1404.5960 High Energy Astrophysical Phenomena +1405.4276 Materials Science +1405.7762 Phenomenology +1406.1725 Information Theory +1406.3612 Probability +1406.6079 Astrophysics of Galaxies +1408.2729 +1408.2919 +1408.4779 Geometric Topology +1409.1306 Operator Algebras +1409.2099 +1410.6111 Algebraic Topology +1410.7322 Materials Science +1410.7407 Disordered Systems and Neural Networks +1411.6911 Group Theory +1412.6836 Algebraic Geometry +1501.02606 Geometric Topology +1501.04197 Algebraic Geometry +1501.06188 Probability +1502.03804 Number Theory +1503.00651 Mesoscale and Nanoscale Physics +1503.02928 Mesoscale and Nanoscale Physics +1503.03399 Number Theory +1503.05085 +1503.05717 Plasma Physics +1503.08966 Atomic Physics +1504.02643 +1504.02717 Group Theory +1504.05417 Earth and Planetary Astrophysics +1504.06335 Cosmology and Nongalactic Astrophysics +1505.00647 Number Theory +1505.04697 Methodology +1506.00841 Algebraic Geometry +1506.02304 +1506.03093 Mesoscale and Nanoscale Physics +1506.06201 Methodology +1506.08148 Metric Geometry +1507.00982 Cosmology and Nongalactic Astrophysics +1507.02225 Quantum Gases +1507.04999 Representation Theory +1507.07676 Quantum Algebra +1507.07696 Probability +1508.01361 Statistical Mechanics +1508.01606 +1508.01985 Number Theory +1508.02245 Combinatorics +1508.02611 Theory +1508.04171 Astrophysics of Galaxies +1508.07967 Optimization and Control +1509.00129 Instrumentation and Methods for Astrophysics +1509.00366 Quantum Gases +1509.01377 Information Theory +1509.01486 Probability +1509.06027 +1509.06675 Classical Analysis and ODEs +1509.07067 Quantum Algebra +1509.07073 Analysis of PDEs +1510.00432 Emerging Technologies +1510.00710 Phenomenology +1510.01820 Representation Theory +1510.02304 Statistical Mechanics +1510.02657 Probability +1510.03484 Earth and Planetary Astrophysics +1510.04656 +1510.07068 Number Theory +1510.07958 General Physics +1510.08425 +1511.02829 Combinatorics +1511.03617 Astrophysics of Galaxies +1511.03668 Strongly Correlated Electrons +1511.05156 Cosmology and Nongalactic Astrophysics +1511.07066 Cosmology and Nongalactic Astrophysics +1511.08115 Materials Science +1511.08423 Dynamical Systems +1511.08452 Classical Analysis and ODEs +1511.09305 Number Theory +1512.00767 Solar and Stellar Astrophysics +1512.01086 Mesoscale and Nanoscale Physics +1512.02882 Cosmology and Nongalactic Astrophysics +1512.03009 +1512.04030 Number Theory +1512.05799 Superconductivity +1512.06533 Algebraic Geometry +1512.06779 Theory +1512.06812 Mathematical Finance +1512.09065 +1601.00546 Astrophysics of Galaxies +1601.01126 Applications +1601.02632 Strongly Correlated Electrons +1601.02633 Theory +1601.02793 Commutative Algebra +1601.04525 Astrophysics of Galaxies +1601.05415 Theory +1601.05521 Materials Science +1601.05912 +1601.07046 Algebraic Geometry +1601.07630 Computer Vision and Pattern Recognition +1602.00245 Applications +1602.00575 Learning +1602.00691 Earth and Planetary Astrophysics +1602.00773 Databases +1602.01034 Mesoscale and Nanoscale Physics +1602.01088 High Energy Astrophysical Phenomena +1602.01099 Astrophysics of Galaxies +1602.02122 Mesoscale and Nanoscale Physics +1602.02425 Mesoscale and Nanoscale Physics +1602.05110 Learning +1602.06624 Astrophysics of Galaxies +1602.07054 +1602.07105 Algebraic Topology +1602.07331 Algebraic Geometry +1602.07505 Quantum Gases +1602.07588 Experiment +1602.07885 Number Theory +1602.08010 Information Theory +1602.08076 Differential Geometry +1602.09010 Cosmology and Nongalactic Astrophysics +1603.00465 Astrophysics of Galaxies +1603.00545 High Energy Astrophysical Phenomena +1603.00640 Number Theory +1603.01553 +1603.01810 Atomic Physics +1603.01959 Cosmology and Nongalactic Astrophysics +1603.02409 Quantum Gases +1603.03778 Astrophysics of Galaxies +1603.04615 Discrete Mathematics +1603.04919 Cosmology and Nongalactic Astrophysics +1603.05000 +1603.05232 Cosmology and Nongalactic Astrophysics +1603.05327 +1603.05534 Optimization and Control +1603.05545 +1603.06403 Fluid Dynamics +1603.07068 Combinatorics +1603.07498 +1603.08267 Statistical Mechanics +1603.08859 Theory +1603.09119 +1603.09605 Fluid Dynamics +1604.00102 Astrophysics of Galaxies +1604.00336 Materials Science +1604.00396 High Energy Astrophysical Phenomena +1604.01029 Astrophysics of Galaxies +1604.01264 Phenomenology +1604.01345 Computer Vision and Pattern Recognition +1604.01788 Cosmology and Nongalactic Astrophysics +1604.03080 +1604.03589 Materials Science +1604.04071 Complex Variables +1604.04612 Cosmology and Nongalactic Astrophysics +1604.04838 +1604.04929 Quantum Gases +1604.05314 Astrophysics of Galaxies +1604.05370 Instrumentation and Methods for Astrophysics +1604.05729 Solar and Stellar Astrophysics +1604.06249 Quantum Gases +1604.06459 Astrophysics of Galaxies +1604.06807 Strongly Correlated Electrons +1604.06969 Quantum Gases +1604.07071 +1604.07524 Experiment +1604.07833 Cosmology and Nongalactic Astrophysics +1604.07842 Astrophysics of Galaxies +1604.08108 +1604.08920 Soft Condensed Matter +1604.08941 Earth and Planetary Astrophysics +1605.00007 Theory +1605.00196 +1605.00560 Quantum Algebra +1605.00597 Quantum Gases +1605.00966 Astrophysics of Galaxies +1605.01104 Astrophysics of Galaxies +1605.01830 Mesoscale and Nanoscale Physics +1605.02596 +1605.02985 Cosmology and Nongalactic Astrophysics +1605.03411 Functional Analysis +1605.03412 Astrophysics of Galaxies +1605.03479 Physics and Society +1605.03507 Cosmology and Nongalactic Astrophysics +1605.03575 Astrophysics of Galaxies +1605.03591 High Energy Astrophysical Phenomena +1605.03814 Experiment +1605.04310 Earth and Planetary Astrophysics +1605.04659 Lattice +1605.05623 Cosmology and Nongalactic Astrophysics +1605.05700 Instrumentation and Methods for Astrophysics +1605.05820 Materials Science +1605.05956 +1605.06334 Astrophysics of Galaxies +1605.06395 Operator Algebras +1605.06479 Phenomenology +1605.06503 Astrophysics of Galaxies +1605.06569 Instrumentation and Methods for Astrophysics +1605.06733 Quantum Algebra +1605.07117 Differential Geometry +1605.07621 Cosmology and Nongalactic Astrophysics +1605.07636 Theory +1605.07777 Mesoscale and Nanoscale Physics +1605.07855 Strongly Correlated Electrons +1605.08057 Astrophysics of Galaxies +1605.08479 Geophysics +1605.08520 Phenomenology +1605.08633 Cosmology and Nongalactic Astrophysics +1605.08810 Earth and Planetary Astrophysics +1605.08821 +1605.09387 Cosmology and Nongalactic Astrophysics +1605.09660 Instrumentation and Methods for Astrophysics +1606.00208 +1606.00476 Phenomenology +1606.00660 +1606.00690 Instrumentation and Methods for Astrophysics +1606.00838 Theory +1606.01566 Rings and Algebras +1606.01813 Experiment +1606.01902 Theory +1606.02001 Instrumentation and Detectors +1606.02087 Information Theory +1606.02594 Statistical Mechanics +1606.02687 Strongly Correlated Electrons +1606.02896 Instrumentation and Detectors +1606.03125 Astrophysics of Galaxies +1606.03232 Mesoscale and Nanoscale Physics +1606.04057 Neurons and Cognition +1606.04286 Cosmology and Nongalactic Astrophysics +1606.04413 Instrumentation and Methods for Astrophysics +1606.04575 Solar and Stellar Astrophysics +1606.04595 Mesoscale and Nanoscale Physics +1606.04932 +1606.04973 Physics and Society +1606.05280 Astrophysics of Galaxies +1606.05584 Methodology +1606.05624 Physics and Society +1606.05648 Astrophysics of Galaxies +1606.06205 Strongly Correlated Electrons +1606.06496 +1606.06600 +1606.06869 +1606.07097 High Energy Astrophysical Phenomena +1606.07115 Lattice +1606.07140 Instrumentation and Methods for Astrophysics +1606.07340 Theory +1606.07361 Theory +1606.07680 Mesoscale and Nanoscale Physics +1606.07756 Statistical Mechanics +1606.08045 +1606.08198 +1606.08873 High Energy Astrophysical Phenomena +1606.09209 Mesoscale and Nanoscale Physics +1606.09214 Instrumentation and Methods for Astrophysics +1607.00081 +1607.00261 +1607.00294 +1607.00340 Metric Geometry +1607.00704 Experiment +1607.01013 Earth and Planetary Astrophysics +1607.01560 Instrumentation and Methods for Astrophysics +1607.01954 Instrumentation and Methods for Astrophysics +1607.02119 Cosmology and Nongalactic Astrophysics +1607.02197 Computational Physics +1607.02248 Statistics Theory +1607.02357 Instrumentation and Detectors +1607.02393 Solar and Stellar Astrophysics +1607.02432 Instrumentation and Methods for Astrophysics +1607.02462 Materials Science +1607.02507 Astrophysics of Galaxies +1607.02520 Astrophysics of Galaxies +1607.02965 Instrumentation and Methods for Astrophysics +1607.03256 Superconductivity +1607.03490 Instrumentation and Methods for Astrophysics +1607.03701 Solar and Stellar Astrophysics +1607.03729 Instrumentation and Methods for Astrophysics +1607.03919 Earth and Planetary Astrophysics +1607.04089 Strongly Correlated Electrons +1607.04124 Phenomenology +1607.04275 Astrophysics of Galaxies +1607.04506 Logic +1607.04533 Astrophysics of Galaxies +1607.04569 Cosmology and Nongalactic Astrophysics +1607.04690 Logic in Computer Science +1607.04708 Earth and Planetary Astrophysics +1607.05003 Instrumentation and Methods for Astrophysics +1607.05027 Lattice +1607.05232 Cosmology and Nongalactic Astrophysics +1607.05245 Phenomenology +1607.05471 Probability +1607.05634 Instrumentation and Methods for Astrophysics +1607.05775 Earth and Planetary Astrophysics +1607.05811 Earth and Planetary Astrophysics +1607.05886 High Energy Astrophysical Phenomena +1607.06075 Astrophysics of Galaxies +1607.06218 Phenomenology +1607.06336 Solar and Stellar Astrophysics +1607.06352 Quantum Gases +1607.06449 Mesoscale and Nanoscale Physics +1607.06476 High Energy Astrophysical Phenomena +1607.06592 Solar and Stellar Astrophysics +1607.06735 +1607.06767 Instrumentation and Methods for Astrophysics +1607.06768 Astrophysics of Galaxies +1607.06769 Astrophysics of Galaxies +1607.06770 Astrophysics of Galaxies +1607.06771 Astrophysics of Galaxies +1607.06772 Astrophysics of Galaxies +1607.06773 Astrophysics of Galaxies +1607.06970 Earth and Planetary Astrophysics +1607.07058 Cosmology and Nongalactic Astrophysics +1607.07231 Solar and Stellar Astrophysics +1607.07237 Instrumentation and Methods for Astrophysics +1607.07456 High Energy Astrophysical Phenomena +1607.07480 Plasma Physics +1607.07585 Solar and Stellar Astrophysics +1607.07710 Astrophysics of Galaxies +1607.07721 Instrumentation and Methods for Astrophysics +1607.07869 Cosmology and Nongalactic Astrophysics +1607.07923 Experiment +1607.07928 Solar and Stellar Astrophysics +1607.07945 Strongly Correlated Electrons +1607.08172 Solar and Stellar Astrophysics +1607.08231 Theory +1607.08237 Earth and Planetary Astrophysics +1607.08346 Geophysics +1607.08481 Computer Vision and Pattern Recognition +1607.08749 Instrumentation and Methods for Astrophysics +1608.00049 Astrophysics of Galaxies +1608.00050 High Energy Astrophysical Phenomena +1608.00590 Mesoscale and Nanoscale Physics +1608.00593 Solar and Stellar Astrophysics +1608.00675 Instrumentation and Methods for Astrophysics +1608.00714 Soft Condensed Matter +1608.00843 Phenomenology +1608.01033 +1608.01035 Numerical Analysis +1608.01075 Instrumentation and Methods for Astrophysics +1608.01196 Instrumentation and Methods for Astrophysics +1608.01287 Instrumentation and Methods for Astrophysics +1608.01327 Astrophysics of Galaxies +1608.01421 Earth and Planetary Astrophysics +1608.01649 Superconductivity +1608.01690 Instrumentation and Methods for Astrophysics +1608.01693 Instrumentation and Methods for Astrophysics +1608.01720 Instrumentation and Methods for Astrophysics +1608.01733 Instrumentation and Methods for Astrophysics +1608.01791 Optics +1608.01876 Optics +1608.01902 Phenomenology +1608.01913 Instrumentation and Methods for Astrophysics +1608.01991 Phenomenology +1608.02001 Earth and Planetary Astrophysics +1608.02118 Phenomenology +1608.02159 Phenomenology +1608.02298 Strongly Correlated Electrons +1608.02350 Instrumentation and Methods for Astrophysics +1608.02351 Instrumentation and Methods for Astrophysics +1608.02396 Astrophysics of Galaxies +1608.02428 Economics +1608.02435 Instrumentation and Methods for Astrophysics +1608.02601 Astrophysics of Galaxies +1608.02640 Instrumentation and Methods for Astrophysics +1608.02751 Solar and Stellar Astrophysics +1608.02936 Instrumentation and Detectors +1608.03097 High Energy Astrophysical Phenomena +1608.03121 +1608.03230 Instrumentation and Methods for Astrophysics +1608.03318 +1608.03523 Strongly Correlated Electrons +1608.03630 Distributed, Parallel, and Cluster Computing +1608.03844 Atomic Physics +1608.03865 Earth and Planetary Astrophysics +1608.03886 Astrophysics of Galaxies +1608.03930 High Energy Astrophysical Phenomena +1608.04022 Classical Analysis and ODEs +1608.04138 Information Theory +1608.04180 Cryptography and Security +1608.04368 Mesoscale and Nanoscale Physics +1608.04583 Statistical Mechanics +1608.04751 High Energy Astrophysical Phenomena +1608.04760 Earth and Planetary Astrophysics +1608.04928 +1608.04934 Astrophysics of Galaxies +1608.05301 Statistical Mechanics +1608.05399 Mesoscale and Nanoscale Physics +1608.05423 Instrumentation and Methods for Astrophysics +1608.05459 +1608.05482 High Energy Astrophysical Phenomena +1608.06089 +1608.06090 Instrumentation and Methods for Astrophysics +1608.06245 Instrumentation and Methods for Astrophysics +1608.06637 Strongly Correlated Electrons +1608.06648 Atomic Physics +1608.06806 Phenomenology +1608.06813 Earth and Planetary Astrophysics +1608.06827 Earth and Planetary Astrophysics +1608.06869 Astrophysics of Galaxies +1608.07023 High Energy Astrophysical Phenomena +1608.07099 Atomic Physics +1608.07120 Atomic Physics +1608.07280 Astrophysics of Galaxies +1608.07515 Instrumentation and Methods for Astrophysics +1608.07584 Astrophysics of Galaxies +1608.07653 Astrophysics of Galaxies +1608.07673 High Energy Astrophysical Phenomena +1608.07984 Disordered Systems and Neural Networks +1608.08310 Phenomenology +1608.08321 Optimization and Control +1608.08350 Astrophysics of Galaxies +1608.08421 Logic +1608.08621 Astrophysics of Galaxies +1608.08625 Phenomenology +1608.08735 Earth and Planetary Astrophysics +1608.08757 Experiment +1608.08772 Earth and Planetary Astrophysics +1608.08842 Solar and Stellar Astrophysics +1608.08881 High Energy Astrophysical Phenomena +1608.08884 High Energy Astrophysical Phenomena +1608.08943 +1608.08983 High Energy Astrophysical Phenomena +1609.00012 Astrophysics of Galaxies +1609.00033 Strongly Correlated Electrons +1609.00270 +1609.00407 +1609.00497 Instrumentation and Methods for Astrophysics +1609.00669 Theory +1609.00725 High Energy Astrophysical Phenomena +1609.00894 Solar and Stellar Astrophysics +1609.01018 Phenomenology +1609.01026 Solar and Stellar Astrophysics +1609.01106 Solar and Stellar Astrophysics +1609.01151 Optics +1609.01291 Astrophysics of Galaxies +1609.01350 Phenomenology +1609.01463 Solar and Stellar Astrophysics +1609.01522 Astrophysics of Galaxies +1609.01588 Cosmology and Nongalactic Astrophysics +1609.02134 Solar and Stellar Astrophysics +1609.02150 Astrophysics of Galaxies +1609.02155 Astrophysics of Galaxies +1609.02204 Solar and Stellar Astrophysics +1609.02215 Solar and Stellar Astrophysics +1609.02256 Solar and Stellar Astrophysics +1609.02376 Solar and Stellar Astrophysics +1609.02417 Astrophysics of Galaxies +1609.02561 Astrophysics of Galaxies +1609.02734 Plasma Physics +1609.02861 Superconductivity +1609.02908 Cosmology and Nongalactic Astrophysics +1609.03269 Astrophysics of Galaxies +1609.03280 Astrophysics of Galaxies +1609.03489 Experiment +1609.03560 Theory +1609.03567 Solar and Stellar Astrophysics +1609.03656 Instrumentation and Methods for Astrophysics +1609.03748 Astrophysics of Galaxies +1609.03759 Robotics +1609.03932 Instrumentation and Methods for Astrophysics +1609.04008 High Energy Astrophysical Phenomena +1609.04015 High Energy Astrophysical Phenomena +1609.04245 Neurons and Cognition +1609.04639 Soft Condensed Matter +1609.04674 Solar and Stellar Astrophysics +1609.04708 Strongly Correlated Electrons +1609.04824 Astrophysics of Galaxies +1609.04825 Cosmology and Nongalactic Astrophysics +1609.04858 Solar and Stellar Astrophysics +1609.04970 Earth and Planetary Astrophysics +1609.05061 Biomolecules +1609.05089 Instrumentation and Methods for Astrophysics +1609.05346 Solar and Stellar Astrophysics +1609.05392 Fluid Dynamics +1609.05460 Earth and Planetary Astrophysics +1609.05538 Astrophysics of Galaxies +1609.05568 Theory +1609.05688 Astrophysics of Galaxies +1609.06152 Instrumentation and Methods for Astrophysics +1609.06255 Phenomenology +1609.06319 High Energy Astrophysical Phenomena +1609.06357 Statistics Theory +1609.06360 +1609.06366 Astrophysics of Galaxies +1609.06381 Systems and Control +1609.06440 Astrophysics of Galaxies +1609.06540 Astrophysics of Galaxies +1609.06611 Solar and Stellar Astrophysics +1609.06695 Solar and Stellar Astrophysics +1609.06857 Astrophysics of Galaxies +1609.07470 Astrophysics of Galaxies +1609.07500 Astrophysics of Galaxies +1609.07617 Earth and Planetary Astrophysics +1609.07821 Astrophysics of Galaxies +1609.07891 +1609.07987 Materials Science +1609.08179 Cosmology and Nongalactic Astrophysics +1609.08271 Solar and Stellar Astrophysics +1609.08290 High Energy Astrophysical Phenomena +1609.08634 Earth and Planetary Astrophysics +1609.08660 Astrophysics of Galaxies +1609.08693 Instrumentation and Methods for Astrophysics +1609.08711 Solar and Stellar Astrophysics +1609.09076 Solar and Stellar Astrophysics +1609.09093 High Energy Astrophysical Phenomena +1609.09100 Solar and Stellar Astrophysics +1609.09136 Theory +1609.09138 Quantum Gases +1609.09479 Solar and Stellar Astrophysics +1609.09503 High Energy Astrophysical Phenomena +1609.09649 Astrophysics of Galaxies +1609.09763 Solar and Stellar Astrophysics +1610.00056 +1610.00347 Astrophysics of Galaxies +1610.00403 High Energy Astrophysical Phenomena +1610.00431 High Energy Astrophysical Phenomena +1610.00495 Astrophysics of Galaxies +1610.00583 Rings and Algebras +1610.00658 Astrophysics of Galaxies +1610.00713 Astrophysics of Galaxies +1610.00716 Astrophysics of Galaxies +1610.00721 Solar and Stellar Astrophysics +1610.00834 Astrophysics of Galaxies +1610.00927 Dynamical Systems +1610.01167 Astrophysics of Galaxies +1610.01186 Earth and Planetary Astrophysics +1610.01233 Astrophysics of Galaxies +1610.01258 Theory +1610.01286 Astrophysics of Galaxies +1610.01358 Cosmology and Nongalactic Astrophysics +1610.01503 Phenomenology +1610.01581 Instrumentation and Methods for Astrophysics +1610.01619 Astrophysics of Galaxies +1610.01657 Optics +1610.01662 Statistical Mechanics +1610.01667 Solar and Stellar Astrophysics +1610.01705 High Energy Astrophysical Phenomena +1610.01780 Solar and Stellar Astrophysics +1610.01904 Solar and Stellar Astrophysics +1610.01934 Learning +1610.01963 Theory +1610.01984 Solar and Stellar Astrophysics +1610.02034 Astrophysics of Galaxies +1610.02066 Data Structures and Algorithms +1610.02082 Solar and Stellar Astrophysics +1610.02113 Solar and Stellar Astrophysics +1610.02404 Astrophysics of Galaxies +1610.02416 Astrophysics of Galaxies +1610.02773 Astrophysics of Galaxies +1610.02944 Solar and Stellar Astrophysics +1610.02947 Computer Vision and Pattern Recognition +1610.03051 Solar and Stellar Astrophysics +1610.03059 Astrophysics of Galaxies +1610.03236 Astrophysics of Galaxies +1610.03407 Solar and Stellar Astrophysics +1610.03436 Earth and Planetary Astrophysics +1610.03802 Category Theory +1610.03811 Phenomenology +1610.03859 Astrophysics of Galaxies +1610.03925 Astrophysics of Galaxies +1610.03997 Phenomenology +1610.04061 High Energy Astrophysical Phenomena +1610.04221 High Energy Astrophysical Phenomena +1610.04313 High Energy Astrophysical Phenomena +1610.04316 Solar and Stellar Astrophysics +1610.04328 Solar and Stellar Astrophysics +1610.04381 Solar and Stellar Astrophysics +1610.04402 High Energy Astrophysical Phenomena +1610.04428 Optics +1610.04508 High Energy Astrophysical Phenomena +1610.04685 High Energy Astrophysical Phenomena +1610.04709 High Energy Astrophysical Phenomena +1610.04732 Solar and Stellar Astrophysics +1610.04739 Statistical Mechanics +1610.04992 Earth and Planetary Astrophysics +1610.05121 Distributed, Parallel, and Cluster Computing +1610.05158 Space Physics +1610.05176 Solar and Stellar Astrophysics +1610.05316 Astrophysics of Galaxies +1610.05326 Instrumentation and Methods for Astrophysics +1610.05332 Solar and Stellar Astrophysics +1610.05393 Astrophysics of Galaxies +1610.05449 Functional Analysis +1610.05488 Solar and Stellar Astrophysics +1610.05678 Materials Science +1610.05687 Solar and Stellar Astrophysics +1610.05713 Atomic Physics +1610.05761 Solar and Stellar Astrophysics +1610.05777 Astrophysics of Galaxies +1610.05904 Differential Geometry +1610.06333 High Energy Astrophysical Phenomena +1610.06511 Social and Information Networks +1610.06561 High Energy Astrophysical Phenomena +1610.06580 Astrophysics of Galaxies +1610.06642 Astrophysics of Galaxies +1610.06777 Numerical Analysis +1610.06926 Earth and Planetary Astrophysics +1610.06951 Solar and Stellar Astrophysics +1610.07002 Astrophysics of Galaxies +1610.07113 Materials Science +1610.07139 Solar and Stellar Astrophysics +1610.07247 Astrophysics of Galaxies +1610.07616 High Energy Astrophysical Phenomena +1610.07679 Earth and Planetary Astrophysics +1610.07768 Complex Variables +1610.07818 Astrophysics of Galaxies +1610.07920 Cosmology and Nongalactic Astrophysics +1610.07924 Mesoscale and Nanoscale Physics +1610.08056 High Energy Astrophysical Phenomena +1610.08061 Astrophysics of Galaxies +1610.08125 Solar and Stellar Astrophysics +1610.08130 Solar and Stellar Astrophysics +1610.08149 Solar and Stellar Astrophysics +1610.08264 Solar and Stellar Astrophysics +1610.08323 High Energy Astrophysical Phenomena +1610.08493 Optics +1610.08817 Phenomenology +1610.08980 Astrophysics of Galaxies +1610.09178 Theory +1610.09662 Solar and Stellar Astrophysics +1611.00024 Information Theory +1611.00036 Instrumentation and Methods for Astrophysics +1611.00037 Instrumentation and Methods for Astrophysics +1611.00765 Solar and Stellar Astrophysics +1611.00930 Astrophysics of Galaxies +1611.01095 Astrophysics of Galaxies +1611.01207 Solar and Stellar Astrophysics +1611.01588 High Energy Astrophysical Phenomena +1611.01746 Solar and Stellar Astrophysics +1611.01953 Solar and Stellar Astrophysics +1611.01994 Optics +1611.02074 Solar and Stellar Astrophysics +1611.02509 Solar and Stellar Astrophysics +1611.02715 Solar and Stellar Astrophysics +1611.03207 Materials Science +1611.03325 Solar and Stellar Astrophysics +1611.03499 Astrophysics of Galaxies +1611.03521 Solar and Stellar Astrophysics +1611.04283 Astrophysics of Galaxies +1611.04318 Earth and Planetary Astrophysics +1611.04331 High Energy Astrophysical Phenomena +1611.04342 High Energy Astrophysical Phenomena +1611.04348 Logic +1611.04406 Dynamical Systems +1611.04615 Cosmology and Nongalactic Astrophysics +1611.04880 Cryptography and Security +1611.05198 Computer Vision and Pattern Recognition +1611.05608 Differential Geometry +1611.05708 Computer Vision and Pattern Recognition +1611.05834 Chaotic Dynamics +1611.05854 Populations and Evolution +1611.06015 Solar and Stellar Astrophysics +1611.06427 Optimization and Control +1611.06975 Solar and Stellar Astrophysics +1611.07149 High Energy Astrophysical Phenomena +1611.07371 Data Structures and Algorithms +1611.07603 Instrumentation and Methods for Astrophysics +1611.07888 Optics +1611.08349 Solar and Stellar Astrophysics +1611.08546 Networking and Internet Architecture +1611.08661 Computation and Language +1611.08704 Astrophysics of Galaxies +1611.08862 Methodology +1611.09331 Metric Geometry +1611.09467 +1611.09508 Strongly Correlated Electrons +1611.09546 Differential Geometry +1611.09653 Mesoscale and Nanoscale Physics +1612.00119 Computer Vision and Pattern Recognition +1612.00381 Quantum Gases +1612.00483 Astrophysics of Galaxies +1612.00650 Probability +1612.00907 Numerical Analysis +1612.00980 Phenomenology +1612.01019 Strongly Correlated Electrons +1612.01127 Complex Variables +1612.01141 Combinatorics +1612.01405 Soft Condensed Matter +1612.01545 Astrophysics of Galaxies +1612.01569 Theory +1612.01588 Other Condensed Matter +1612.01724 Fluid Dynamics +1612.01844 +1612.02001 Astrophysics of Galaxies +1612.02061 Lattice +1612.02123 Theory +1612.02167 +1612.02193 +1612.02198 Sound +1612.02204 Astrophysics of Galaxies +1612.02426 Solar and Stellar Astrophysics +1612.02449 Cosmology and Nongalactic Astrophysics +1612.02531 Data Structures and Algorithms +1612.02551 History and Philosophy of Physics +1612.02662 +1612.02674 Numerical Analysis +1612.02681 +1612.02790 Instrumentation and Methods for Astrophysics +1612.02819 +1612.02823 Astrophysics of Galaxies +1612.02869 Statistical Mechanics +1612.02969 Instrumentation and Methods for Astrophysics +1612.03078 Probability +1612.03100 +1612.03173 High Energy Astrophysical Phenomena +1612.03211 Artificial Intelligence +1612.03462 Quantum Gases +1612.03466 Theory +1612.03549 Operator Algebras +1612.03595 Soft Condensed Matter +1612.03671 High Energy Astrophysical Phenomena +1612.03747 +1612.03758 +1612.03769 Computation and Language +1612.03801 Artificial Intelligence +1612.03894 Theory +1612.03910 Numerical Analysis +1612.03913 High Energy Astrophysical Phenomena +1612.03915 Theory +1612.03917 Phenomenology +1612.03918 Astrophysics of Galaxies +1612.03919 Superconductivity +1612.03921 Materials Science +1612.03924 High Energy Astrophysical Phenomena +1612.03925 Computer Vision and Pattern Recognition +1612.03931 Instrumentation and Methods for Astrophysics +1612.03933 Soft Condensed Matter +1612.03935 Instrumentation and Methods for Astrophysics +1612.03936 Operator Algebras +1612.03937 Distributed, Parallel, and Cluster Computing +1612.03938 Astrophysics of Galaxies +1612.03939 Earth and Planetary Astrophysics +1612.03940 Neural and Evolutionary Computing +1612.03944 Mesoscale and Nanoscale Physics +1612.03946 Information Theory +1612.03950 Learning +1612.03951 Strongly Correlated Electrons +1612.03954 Statistical Mechanics +1612.03955 History and Overview +1612.03956 Mesoscale and Nanoscale Physics +1612.03958 Analysis of PDEs +1612.03959 Computer Vision and Pattern Recognition +1612.03961 Computer Vision and Pattern Recognition +1612.03962 Digital Libraries +1612.03964 Probability +1612.03965 Rings and Algebras +1612.03967 Accelerator Physics +1612.03968 Dynamical Systems +1612.03970 Functional Analysis +1612.03973 Numerical Analysis +1612.03974 Methodology +1612.03975 Computation and Language +1612.03976 Populations and Evolution +1612.03977 Pattern Formation and Solitons +1612.03979 Robotics +1612.03981 Machine Learning +1612.03982 Computer Vision and Pattern Recognition +1612.03983 Dynamical Systems +1612.03984 Chemical Physics +1612.03985 Networking and Internet Architecture +1612.03986 Materials Science +1612.03988 +1612.03990 Computation and Language +1612.03993 Information Theory +1612.03995 Mesoscale and Nanoscale Physics +1612.03997 Robotics +1612.03998 Representation Theory +1612.03999 Accelerator Physics +1612.04001 High Energy Astrophysical Phenomena +1612.04002 +1612.04003 Distributed, Parallel, and Cluster Computing +1612.04005 Information Theory +1612.04006 Cosmology and Nongalactic Astrophysics +1612.04008 Analysis of PDEs +1612.04012 Operator Algebras +1612.04013 Algebraic Geometry +1612.04014 Numerical Analysis +1612.04015 Analysis of PDEs +1612.04018 Numerical Analysis +1612.04019 Mesoscale and Nanoscale Physics +1612.04021 Learning +1612.04023 Systems and Control +1612.04025 Methodology +1612.04026 Quantum Gases +1612.04027 Materials Science +1612.04030 Information Theory +1612.04031 Materials Science +1612.04032 Dynamical Systems +1612.04033 Dynamical Systems +1612.04035 Learning +1612.04036 Materials Science +1612.04037 Logic in Computer Science +1612.04038 +1612.04039 Information Theory +1612.04040 Computational Physics +1612.04041 Cosmology and Nongalactic Astrophysics +1612.04042 Cosmology and Nongalactic Astrophysics +1612.04047 +1612.04048 Quantum Gases +1612.04049 Populations and Evolution +1612.04050 Numerical Analysis +1612.04051 Spectral Theory +1612.04052 Machine Learning +1612.04053 Networking and Internet Architecture +1612.04054 Instrumentation and Detectors +1612.04055 Quantum Gases +1612.04057 Phenomenology +1612.04058 Information Theory +1612.04059 Statistics Theory +1612.04060 Statistics Theory +1612.04061 Computer Vision and Pattern Recognition +1612.04062 Computer Vision and Pattern Recognition +1612.04063 Numerical Analysis +1612.04064 Strongly Correlated Electrons +1612.04065 Information Theory +1612.04066 Statistical Mechanics +1612.04067 Networking and Internet Architecture +1612.04068 Numerical Analysis +1612.04069 Combinatorics +1612.04071 Number Theory +1612.04072 Quantum Gases +1612.04074 Populations and Evolution +1612.04075 Digital Libraries +1612.04076 Discrete Mathematics +1612.04079 +1612.04082 Optimization and Control +1612.04083 Algebraic Geometry +1612.04085 Numerical Analysis +1612.04087 +1612.04088 Operator Algebras +1612.04090 K-Theory and Homology +1612.04091 Applications +1612.04093 Computation +1612.04094 Data Structures and Algorithms +1612.04097 +1612.04098 Instrumentation and Methods for Astrophysics +1612.04099 Cryptography and Security +1612.04100 Optics +1612.04101 Computation +1612.04103 Analysis of PDEs +1612.04104 Soft Condensed Matter +1612.04106 Functional Analysis +1612.04108 Computers and Society +1612.04110 Quantitative Methods +1612.04111 Machine Learning +1612.04113 Computation and Language +1612.04114 Combinatorics +1612.04115 Plasma Physics +1612.04116 Mesoscale and Nanoscale Physics +1612.04119 Differential Geometry +1612.04120 Dynamical Systems +1612.04121 Plasma Physics +1612.04122 Mesoscale and Nanoscale Physics +1612.04123 Analysis of PDEs +1612.04126 Risk Management +1612.04127 Numerical Analysis +1612.04129 Materials Science +1612.04130 Information Theory +1612.04131 Networking and Internet Architecture +1612.04133 Representation Theory +1612.04134 Statistical Mechanics +1612.04135 +1612.04136 Subcellular Processes +1612.04137 Number Theory +1612.04138 Analysis of PDEs +1612.04139 Software Engineering +1612.04140 +1612.04142 Functional Analysis +1612.04143 Plasma Physics +1612.04144 Fluid Dynamics +1612.04146 Optimization and Control +1612.04147 Statistical Mechanics +1612.04148 Spectral Theory +1612.04149 Analysis of PDEs +1612.04152 Optics +1612.04153 Algebraic Topology +1612.04156 Computational Physics +1612.04157 Cosmology and Nongalactic Astrophysics +1612.04159 Dynamical Systems +1612.04160 Mesoscale and Nanoscale Physics +1612.04161 Analysis of PDEs +1612.04162 Materials Science +1612.04163 Mesoscale and Nanoscale Physics +1612.04164 Software Engineering +1612.04165 Information Theory +1612.04168 +1612.04170 Logic +1612.04171 Soft Condensed Matter +1612.04172 Combinatorics +1612.04173 +1612.04174 Computation and Language +1612.04175 Analysis of PDEs +1612.04176 Information Theory +1612.04178 Atomic Physics +1612.04179 +1612.04180 +1612.04181 Adaptation and Self-Organizing Systems +1612.04183 Instrumentation and Methods for Astrophysics +1612.04184 +1612.04185 Medical Physics +1612.04186 Computational Physics +1612.04187 General Topology +1612.04188 Astrophysics of Galaxies +1612.04189 Combinatorics +1612.04191 Other Computer Science +1612.04192 +1612.04193 General Physics +1612.04194 General Mathematics +1612.04196 Numerical Analysis +1612.04197 Distributed, Parallel, and Cluster Computing +1612.04198 General Physics +1612.04199 General Physics +1612.04200 History and Overview +1612.04201 General Physics +1612.04204 Representation Theory +1612.04205 +1612.04207 Statistical Mechanics +1612.04209 Data Structures and Algorithms +1612.04210 Chemical Physics +1612.04211 Computation and Language +1612.04212 Statistical Mechanics +1612.04213 Geometric Topology +1612.04214 Mesoscale and Nanoscale Physics +1612.04217 Networking and Internet Architecture +1612.04219 Rings and Algebras +1612.04221 Algebraic Geometry +1612.04223 Mesoscale and Nanoscale Physics +1612.04224 Algebraic Geometry +1612.04225 Earth and Planetary Astrophysics +1612.04226 Cosmology and Nongalactic Astrophysics +1612.04227 Information Theory +1612.04229 Computer Vision and Pattern Recognition +1612.04232 Materials Science +1612.04233 Group Theory +1612.04234 Neurons and Cognition +1612.04236 Analysis of PDEs +1612.04237 Number Theory +1612.04238 Theory +1612.04239 +1612.04240 Analysis of PDEs +1612.04241 Analysis of PDEs +1612.04242 Astrophysics of Galaxies +1612.04243 Operator Algebras +1612.04244 Networking and Internet Architecture +1612.04245 Theory +1612.04247 Cosmology and Nongalactic Astrophysics +1612.04248 High Energy Astrophysical Phenomena +1612.04250 Astrophysics of Galaxies +1612.04251 Distributed, Parallel, and Cluster Computing +1612.04253 Classical Analysis and ODEs +1612.04254 General Mathematics +1612.04256 Quantitative Methods +1612.04260 Combinatorics +1612.04261 Group Theory +1612.04266 Probability +1612.04268 Information Theory +1612.04269 Analysis of PDEs +1612.04271 Computation +1612.04273 +1612.04274 Probability +1612.04275 Cosmology and Nongalactic Astrophysics +1612.04276 Instrumentation and Detectors +1612.04278 Solar and Stellar Astrophysics +1612.04279 Mesoscale and Nanoscale Physics +1612.04280 Functional Analysis +1612.04283 Theory +1612.04284 Instrumentation and Detectors +1612.04286 Databases +1612.04287 Solar and Stellar Astrophysics +1612.04288 Statistics Theory +1612.04289 +1612.04291 Lattice +1612.04292 Phenomenology +1612.04295 Neurons and Cognition +1612.04297 Analysis of PDEs +1612.04298 +1612.04299 Multiagent Systems +1612.04300 Group Theory +1612.04301 High Energy Astrophysical Phenomena +1612.04302 Group Theory +1612.04304 Data Structures and Algorithms +1612.04308 Geophysics +1612.04312 Optics +1612.04313 Instrumentation and Methods for Astrophysics +1612.04314 Mesoscale and Nanoscale Physics +1612.04315 Machine Learning +1612.04317 Materials Science +1612.04318 Robotics +1612.04319 Combinatorics +1612.04322 Materials Science +1612.04323 Optics +1612.04324 Robotics +1612.04328 Optics +1612.04330 Statistics Theory +1612.04333 Phenomenology +1612.04335 Computer Vision and Pattern Recognition +1612.04336 Graphics +1612.04337 Computer Vision and Pattern Recognition +1612.04338 Computational Complexity +1612.04339 Cryptography and Security +1612.04340 Machine Learning +1612.04341 +1612.04342 Computation and Language +1612.04347 Numerical Analysis +1612.04349 Exactly Solvable and Integrable Systems +1612.04350 Cryptography and Security +1612.04351 Software Engineering +1612.04353 Logic +1612.04354 Probability +1612.04356 Materials Science +1612.04358 Networking and Internet Architecture +1612.04359 +1612.04363 Networking and Internet Architecture +1612.04365 General Mathematics +1612.04367 Rings and Algebras +astro-ph/9806249 +0802.2741 Geometric Topology +0802.2746 Geometric Topology +0905.3007 Probability +0908.1839 Probability +0910.4846 Probability +1003.1150 +1009.2120 Representation Theory +1110.4915 Dynamical Systems +1110.5961 Algebraic Topology +1303.3771 +1306.3077 Populations and Evolution +1312.7806 +1401.1048 Mesoscale and Nanoscale Physics +1402.4727 Theory +1402.5079 Probability +1405.4628 Information Theory +1405.6435 Physics Education +1406.6447 Physics and Society +1406.6903 Combinatorics +1407.2109 Data Structures and Algorithms +1407.6117 Molecular Networks +1411.4708 Statistics Theory +1411.6227 Dynamical Systems +1412.0633 Geometric Topology +1412.1001 Computational Geometry +1412.1028 +1501.05579 Group Theory +1501.05887 Information Theory +1501.07234 +1501.07586 Networking and Internet Architecture +1502.04731 Analysis of PDEs +1502.06594 Theory +1503.06248 Statistical Mechanics +1504.01369 Information Theory +1504.04603 +1504.07674 Classical Analysis and ODEs +1504.07829 Machine Learning +1505.00790 Superconductivity +1505.04686 Cosmology and Nongalactic Astrophysics +1505.05390 +1505.06874 Other Condensed Matter +1506.03101 Learning +1506.05384 Methodology +1506.06814 Atomic Physics +1506.07353 Cell Behavior +1506.07931 Differential Geometry +1507.00333 Numerical Analysis +1507.01238 Computer Vision and Pattern Recognition +1507.01535 Cosmology and Nongalactic Astrophysics +1507.03546 +1507.05913 Number Theory +1508.01637 +1508.01787 Cosmology and Nongalactic Astrophysics +1508.03402 Probability +1508.03708 +1508.05749 Mesoscale and Nanoscale Physics +1508.07403 Methodology +1509.03419 Atmospheric and Oceanic Physics +1509.04983 +1510.00042 Analysis of PDEs +1510.00327 +1510.00637 Plasma Physics +1510.02270 Statistical Mechanics +1510.03285 Classical Analysis and ODEs +1510.03415 Analysis of PDEs +1510.03612 +1510.06230 +1510.06730 Probability +1510.06951 Statistics Theory +1510.07459 Accelerator Physics +1510.07952 Quantum Gases +1510.08770 +1511.03520 +1511.03900 +1511.05370 Probability +1511.07177 Biological Physics +1511.08661 Physics and Society +1512.01727 Data Structures and Algorithms +1512.03133 Instrumentation and Detectors +1512.03204 Strongly Correlated Electrons +1512.04407 Computer Vision and Pattern Recognition +1512.04951 Earth and Planetary Astrophysics +1512.05203 Superconductivity +1512.05395 Theory +1512.05480 Quantum Algebra +1512.06294 Instrumentation and Detectors +1512.08030 Neural and Evolutionary Computing +1601.00245 Digital Libraries +1601.00783 Commutative Algebra +1601.01396 Data Structures and Algorithms +1601.01942 Strongly Correlated Electrons +1601.02181 High Energy Astrophysical Phenomena +1601.02263 Classical Analysis and ODEs +1601.02804 Statistics Theory +1601.03600 Theory +1601.03695 Quantum Gases +1601.03737 Phenomenology +1601.03827 +1601.04657 Information Theory +1601.05426 Mesoscale and Nanoscale Physics +1601.05673 Algebraic Geometry +1601.08061 Experiment +1602.00477 Logic in Computer Science +1602.01092 Phenomenology +1602.01699 Phenomenology +1602.01834 Theory +1602.04055 Probability +1602.05547 Formal Languages and Automata Theory +1602.06734 Differential Geometry +1602.07000 Experiment +1602.07402 Quantum Algebra +1602.08909 +1603.00241 Functional Analysis +1603.00649 Programming Languages +1603.01189 Representation Theory +1603.01470 Strongly Correlated Electrons +1603.01525 +1603.02307 Chemical Physics +1603.04316 +1603.05005 +1603.05665 Theory +1603.05729 Machine Learning +1603.07143 Instrumentation and Detectors +1603.08329 Physics and Society +1603.08661 Learning +1604.00370 Theory +1604.00492 Materials Science +1604.02921 Superconductivity +1604.03344 Information Theory +1604.05117 Probability +1604.05147 Analysis of PDEs +1604.06228 Algebraic Geometry +1604.08283 Algebraic Geometry +1604.08288 Optics +1604.08416 Analysis of PDEs +1604.08658 Combinatorics +1605.00045 Emerging Technologies +1605.00078 Dynamical Systems +1605.00253 Combinatorics +1605.00761 Popular Physics +1605.01134 Phenomenology +1605.01135 +1605.01329 Sound +1605.01561 +1605.01592 Quantitative Methods +1605.01695 Data Structures and Algorithms +1605.01698 Dynamical Systems +1605.01711 Geometric Topology +1605.01727 High Energy Astrophysical Phenomena +1605.01735 Strongly Correlated Electrons +1605.01741 Social and Information Networks +1605.01742 Group Theory +1605.01743 Metric Geometry +1605.01744 Computation and Language +1605.01745 Analysis of PDEs +1605.01746 Neural and Evolutionary Computing +1605.01747 Dynamical Systems +1605.01749 Learning +1605.01750 Combinatorics +1605.01751 Phenomenology +1605.01752 Data Structures and Algorithms +1605.01754 Medical Physics +1605.01755 Sound +1605.01759 Algebraic Geometry +1605.01760 Graphics +1605.01761 Optics +1605.01764 +1605.01768 Disordered Systems and Neural Networks +1605.01769 Cryptography and Security +1605.01770 Operator Algebras +1605.01773 Solar and Stellar Astrophysics +1605.01774 History and Philosophy of Physics +1605.01779 Machine Learning +1605.01781 Combinatorics +1605.01782 Analysis of PDEs +1605.01783 Dynamical Systems +1605.01784 Neurons and Cognition +1605.01787 Phenomenology +1605.01788 Algebraic Geometry +1605.01789 Materials Science +1605.01790 Computer Vision and Pattern Recognition +1605.01791 +1605.01792 Computational Physics +1605.01794 Dynamical Systems +1605.01798 Superconductivity +1605.01799 Optimization and Control +1605.01801 Probability +1605.01802 Distributed, Parallel, and Cluster Computing +1605.01803 Algebraic Geometry +1605.01806 Mesoscale and Nanoscale Physics +1605.01807 Commutative Algebra +1605.01808 +1605.01810 Formal Languages and Automata Theory +1605.01811 Classical Analysis and ODEs +1605.01813 Computer Vision and Pattern Recognition +1605.01814 Probability +1605.01815 Numerical Analysis +1605.01817 Statistical Mechanics +1605.01819 Mesoscale and Nanoscale Physics +1605.01820 Complex Variables +1605.01821 Digital Libraries +1605.01823 Complex Variables +1605.01825 Computer Vision and Pattern Recognition +1605.01828 Computational Complexity +1605.01829 Information Theory +1605.01831 Probability +1605.01832 Learning +1605.01834 Information Theory +1605.01835 History and Philosophy of Physics +1605.01836 History and Philosophy of Physics +1605.01837 Analysis of PDEs +1605.01838 Quantitative Methods +1605.01839 Computer Vision and Pattern Recognition +1605.01842 +1605.01843 Computer Vision and Pattern Recognition +1605.01845 Computation and Language +1605.01848 Information Theory +1605.01852 Instrumentation and Methods for Astrophysics +1605.01853 Multiagent Systems +1605.01855 Neural and Evolutionary Computing +1605.01857 Combinatorics +1605.01861 Information Theory +1605.01866 Data Structures and Algorithms +1605.01868 Number Theory +1605.01872 Metric Geometry +1605.01877 Number Theory +1605.01878 Software Engineering +1605.01879 Complex Variables +1605.01880 Information Theory +1605.01882 Differential Geometry +1605.01885 Analysis of PDEs +1605.01886 Logic in Computer Science +1605.01887 Number Theory +1605.01889 Applications +1605.01890 Differential Geometry +1605.01893 Other Quantitative Biology +1605.01895 Social and Information Networks +1605.01896 Materials Science +1605.01907 Theory +1605.01909 Complex Variables +1605.01914 Atomic Physics +1605.01919 Human-Computer Interaction +1605.01923 Computer Vision and Pattern Recognition +1605.01925 Spectral Theory +1605.01928 Spectral Theory +1605.01929 Quantum Gases +1605.01930 Information Theory +1605.01931 Computation +1605.01935 Differential Geometry +1605.01936 Statistics Theory +1605.01939 Machine Learning +1605.01940 Probability +1605.01941 Information Theory +1605.01942 Combinatorics +1605.01943 +1605.01946 Phenomenology +1605.01952 Biological Physics +1605.01954 Analysis of PDEs +1605.01956 Computers and Society +1605.01958 Rings and Algebras +1605.01962 Quantum Algebra +1605.01965 +1605.01968 Operator Algebras +1605.01969 Functional Analysis +1605.01970 Rings and Algebras +1605.01974 Atomic Physics +1605.01976 General Finance +1605.01977 Networking and Internet Architecture +1605.01981 Classical Analysis and ODEs +1605.01982 Combinatorics +1605.01984 Cosmology and Nongalactic Astrophysics +1605.01985 Commutative Algebra +1605.01987 Networking and Internet Architecture +1605.01993 Information Theory +1605.01997 Information Theory +1605.01998 Computational Finance +1605.01999 Computer Vision and Pattern Recognition +1605.02000 Soft Condensed Matter +1605.02002 Analysis of PDEs +1605.02003 Geometric Topology +1605.02007 Geometric Topology +1605.02008 Adaptation and Self-Organizing Systems +1605.02010 Algebraic Geometry +1605.02013 Phenomenology +1605.02014 Analysis of PDEs +1605.02019 Computation and Language +1605.02020 Probability +1605.02021 Mesoscale and Nanoscale Physics +1605.02022 Distributed, Parallel, and Cluster Computing +1605.02026 Learning +1605.02033 Programming Languages +1605.02037 Neurons and Cognition +1605.02040 Software Engineering +1605.02041 Digital Libraries +1605.02045 Data Structures and Algorithms +1605.02046 Learning +1605.02048 Classical Analysis and ODEs +1605.02049 Analysis of PDEs +1605.02050 Classical Analysis and ODEs +1605.02053 Optics +1605.02054 Computer Science and Game Theory +1605.02055 Information Theory +1605.02060 Quantitative Methods +1605.02065 Cryptography and Security +dg-ga/9704015 Differential Geometry +gr-qc/0611104 +math/0612416 Probability +0704.2456 Mesoscale and Nanoscale Physics +0704.3771 Populations and Evolution +0705.1134 Biological Physics +0705.3997 Experiment +0706.0156 General Physics +0706.1148 Mesoscale and Nanoscale Physics +0706.4413 +0710.1768 Strongly Correlated Electrons +0711.0753 +0711.2973 General Physics +0711.4827 Chaotic Dynamics +0712.1720 Chaotic Dynamics +0712.1752 Statistical Mechanics +0712.3497 Differential Geometry +0801.0366 +0801.2562 Phenomenology +0802.1041 Experiment +0809.0239 Chaotic Dynamics +0809.4982 Biological Physics +0812.2095 +0812.4750 Strongly Correlated Electrons +0906.2155 +0906.3981 Instrumentation and Methods for Astrophysics +0908.1176 Astrophysics of Galaxies +1006.2223 Optics +1007.4166 Chaotic Dynamics +1012.4526 Category Theory +1101.3374 Geometric Topology +1104.1662 +1105.2246 Logic in Computer Science +1109.0470 Chaotic Dynamics +1111.0163 Dynamical Systems +1201.0039 Statistical Mechanics +1206.1218 Symplectic Geometry +1206.1737 Representation Theory +1208.5023 Theory +1209.2064 Algebraic Geometry +1210.4456 +1210.6670 Symplectic Geometry +1211.2434 Theory +1212.4802 +1212.6151 Probability +1301.0069 +1304.6271 Probability +1304.6298 Phenomenology +1309.6956 Complex Variables +1309.7059 Cosmology and Nongalactic Astrophysics +1401.1423 Probability +1402.2078 +1403.2303 Mesoscale and Nanoscale Physics +1404.3852 Analysis of PDEs +1408.3325 Computational Geometry +1409.1247 +1409.2385 Symplectic Geometry +1410.0302 Phenomenology +1410.5178 Algebraic Geometry +1410.5391 K-Theory and Homology +1411.4361 Fluid Dynamics +1411.4874 Accelerator Physics +1411.7220 Probability +1412.2218 Probability +1412.3876 Other Condensed Matter +1412.5881 +1501.01955 Analysis of PDEs +1501.02581 Numerical Analysis +1501.04269 Number Theory +1501.06967 Quantum Gases +1502.00398 Analysis of PDEs +1502.00764 Rings and Algebras +1502.02097 Analysis of PDEs +1502.03254 Pricing of Securities +1502.06571 Differential Geometry +1502.06687 Soft Condensed Matter +1503.00065 Analysis of PDEs +1503.00145 Physics and Society +1503.02663 Theory +1503.04319 Dynamical Systems +1503.04741 Numerical Analysis +1503.04809 Theory +1503.04902 Superconductivity +1503.06144 Systems and Control +1503.06777 +1503.07127 Strongly Correlated Electrons +1503.08405 Instrumentation and Methods for Astrophysics +1504.02401 +1504.02822 +1504.03070 +1504.03461 Computation +1504.05056 +1504.06674 Fluid Dynamics +1505.00494 Information Theory +1505.00689 Theory +1505.01752 +1505.02723 Solar and Stellar Astrophysics +1505.03335 Numerical Analysis +1505.04479 Group Theory +1505.05856 Strongly Correlated Electrons +1505.06026 Spectral Theory +1505.06225 Systems and Control +1505.06308 Theory +1505.07588 Mesoscale and Nanoscale Physics +1506.01192 Computation and Language +1506.01669 Analysis of PDEs +1506.01770 Plasma Physics +1506.01789 Probability +1506.01970 Theory +1506.02245 Human-Computer Interaction +1506.03597 Economics +1506.03807 Theory +1506.03832 Statistics Theory +1506.04420 +1506.05201 Optics +1506.05294 Materials Science +1506.06601 Theory +1506.07754 Phenomenology +1507.00414 Differential Geometry +1507.01527 Differential Geometry +1507.02104 +1507.02432 Experiment +1507.04013 Theory +1507.04277 Physics and Society +1507.04587 Social and Information Networks +1507.04602 Numerical Analysis +1507.04641 Spectral Theory +1507.04930 Physics and Society +1507.06940 Materials Science +1507.07772 Numerical Analysis +1507.08643 Phenomenology +1508.00398 Quantum Gases +1508.01389 Instrumentation and Methods for Astrophysics +1508.01642 Statistical Mechanics +1508.01984 Soft Condensed Matter +1508.02077 Soft Condensed Matter +1508.02978 +1508.03146 Analysis of PDEs +1508.03333 Theory +1508.06566 Theory +1508.07428 Statistical Finance +1509.00056 Differential Geometry +1509.00898 Probability +1509.01522 +1509.02245 Quantum Algebra +1509.02442 +1509.02457 Mesoscale and Nanoscale Physics +1509.03177 History and Overview +1509.03338 Materials Science +1509.03865 High Energy Astrophysical Phenomena +1509.03997 +1509.04181 Phenomenology +1509.04325 Theory +1509.04514 Chaotic Dynamics +1509.04971 +1509.06473 Chemical Physics +1509.07601 Probability +1509.07610 Phenomenology +1509.07849 Cell Behavior +1509.09243 Computer Vision and Pattern Recognition +1510.00228 Other Condensed Matter +1510.00936 Social and Information Networks +1510.01101 Soft Condensed Matter +1510.02541 Applications +1510.03112 Phenomenology +1510.03141 Probability +1510.03286 Theory +1510.03587 Materials Science +1510.05011 Theory +1510.05287 Theory +1510.05782 Theory +1510.05829 Operator Algebras +1510.05936 Probability +1510.07433 Exactly Solvable and Integrable Systems +1510.07878 Mesoscale and Nanoscale Physics +1510.07951 +1511.00482 Materials Science +1511.00570 Cosmology and Nongalactic Astrophysics +1511.01451 Soft Condensed Matter +1511.02059 Medical Physics +1511.02219 Soft Condensed Matter +1511.02353 Phenomenology +1511.02834 Phenomenology +1511.03104 Analysis of PDEs +1511.03253 Algebraic Geometry +1511.03289 Strongly Correlated Electrons +1511.03435 +1511.03583 Popular Physics +1511.03810 Number Theory +1511.04436 Exactly Solvable and Integrable Systems +1511.04956 Analysis of PDEs +1511.05204 Computer Vision and Pattern Recognition +1511.05238 +1511.05521 Mesoscale and Nanoscale Physics +1511.05827 Chaotic Dynamics +1511.05856 Cosmology and Nongalactic Astrophysics +1511.06212 Fluid Dynamics +1511.06698 +1511.06742 +1511.07111 Computer Vision and Pattern Recognition +1511.07144 +1511.07431 Cosmology and Nongalactic Astrophysics +1511.07496 Phenomenology +1511.08202 Phenomenology +1511.08509 Exactly Solvable and Integrable Systems +1511.08527 Atomic Physics +1511.08559 +1511.09136 +1511.09441 Theory +1512.00042 High Energy Astrophysical Phenomena +1512.00888 +1512.00902 Phenomenology +1512.01046 Dynamical Systems +1512.01051 Analysis of PDEs +1512.01115 Optics +1512.01900 +1512.02197 Optics +1512.02202 Instrumentation and Detectors +1512.02450 Plasma Physics +1512.02570 Fluid Dynamics +1512.02904 Experiment +1512.03335 Numerical Analysis +1512.03372 Experiment +1512.03445 Earth and Planetary Astrophysics +1512.03738 Experiment +1512.03920 +1512.04136 Mesoscale and Nanoscale Physics +1512.04230 +1512.04446 +1512.04580 +1512.05132 Phenomenology +1512.05136 Differential Geometry +1512.05250 +1512.05273 Experiment +1512.05289 Lattice +1512.05397 +1512.05603 +1512.06111 Strongly Correlated Electrons +1512.06213 +1512.06215 +1512.06250 Theory +1512.06299 +1512.06402 Phenomenology +1512.06465 +1512.06602 +1512.06702 Phenomenology +1512.06855 Theory +1512.06901 Theory +1512.06906 Information Theory +1512.06987 Lattice +1512.07135 +1512.07178 Theory +1512.07209 Phenomenology +1512.07368 Atomic Physics +1512.07373 +1512.07416 Analysis of PDEs +1512.07535 Phenomenology +1512.07567 Biological Physics +1512.07571 Phenomenology +1512.07610 +1512.07631 +1512.07882 +1512.07924 Quantum Gases +1512.08022 +1512.08095 Superconductivity +1512.08177 +1512.08231 +1512.08260 +1512.08276 +1512.08327 Strongly Correlated Electrons +1512.08329 Exactly Solvable and Integrable Systems +1512.08388 Phenomenology +1512.08465 +1512.08592 Phenomenology +1512.08784 +1512.08877 +1512.09004 Mesoscale and Nanoscale Physics +1512.09009 +1512.09071 Theory +1512.09074 Physics and Society +1512.09142 Earth and Planetary Astrophysics +1512.09152 +1512.09157 +1512.09170 Learning +1512.09214 +1512.09231 +1512.09238 History and Philosophy of Physics +1512.09255 Phenomenology +1512.09274 Phenomenology +1512.09318 Phenomenology +1512.09329 +1512.09352 +1512.09353 Phenomenology +1601.00015 Phenomenology +1601.00058 +1601.00278 Phenomenology +1601.00308 +1601.00343 Group Theory +1601.00381 +1601.00466 +1601.00600 +1601.00629 Solar and Stellar Astrophysics +1601.00695 +1601.00743 Experiment +1601.00887 Phenomenology +1601.00904 +1601.00951 +1601.01119 Atomic Physics +1601.01177 Phenomenology +1601.01296 +1601.01588 Materials Science +1601.01644 +1601.01783 Dynamical Systems +1601.01943 Theory +1601.01947 Theory +1601.02031 Materials Science +1601.02236 +1601.02242 Analysis of PDEs +1601.02260 +1601.02367 Lattice +1601.02559 Mesoscale and Nanoscale Physics +1601.02918 Cell Behavior +1601.02963 Phenomenology +1601.03000 Cosmology and Nongalactic Astrophysics +1601.03283 Phenomenology +1601.03386 Phenomenology +1601.03414 Theory +1601.03450 +1601.03520 Experiment +1601.03833 Atomic Physics +1601.03853 Analysis of PDEs +1601.04128 Phenomenology +1601.04216 Probability +1601.04240 Classical Analysis and ODEs +1601.04561 Theory +1601.04577 Lattice +1601.04720 Theory +1601.05025 Experiment +1601.05316 Exactly Solvable and Integrable Systems +1601.05576 Quantum Algebra +1601.05632 +1601.05668 Cosmology and Nongalactic Astrophysics +1601.05910 Earth and Planetary Astrophysics +1601.06525 Phenomenology +1601.06594 Other Condensed Matter +1601.06730 Biological Physics +1601.06766 +1601.06771 +1601.06813 Phenomenology +1601.07393 Dynamical Systems +1601.07437 +1601.07671 Algebraic Geometry +1601.07852 +1601.07904 Theory +1601.07911 Statistics Theory +1601.08209 Theory +1602.00794 +1602.00908 Theory +1602.00938 Strongly Correlated Electrons +1602.01047 Phenomenology +1602.01974 Instrumentation and Detectors +1602.02140 +1602.02173 +1602.02197 Lattice +1602.02242 Biological Physics +1602.02263 Optimization and Control +1602.02723 Mesoscale and Nanoscale Physics +1602.02925 Lattice +1602.02983 Instrumentation and Detectors +1602.03621 Optics +1602.03637 +1602.03791 Statistical Mechanics +1602.03901 Phenomenology +1602.04116 Theory +1602.04765 Theory +1602.04884 Functional Analysis +1602.05195 Cosmology and Nongalactic Astrophysics +1602.05250 Phenomenology +1602.05276 Phenomenology +1602.05278 +1602.05336 Theory +1602.05493 Phenomenology +1602.05576 Solar and Stellar Astrophysics +1602.05811 Phenomenology +1602.05863 +1602.05881 +1602.05943 Theory +1602.06198 Phenomenology +1602.06206 Phenomenology +1602.06332 +1602.06356 High Energy Astrophysical Phenomena +1602.06658 +1602.06791 Phenomenology +1602.06818 Learning +1602.06930 Theory +1602.07002 General Topology +1602.07006 +1602.07071 Numerical Analysis +1602.07219 Strongly Correlated Electrons +1602.07319 +1602.07417 Mesoscale and Nanoscale Physics +1602.07634 Lattice +1602.07671 Phenomenology +1602.07932 Superconductivity +1602.08177 +1602.08272 Theory +1602.08275 Theory +1602.08566 Theory +1602.08570 Theory +1602.08624 Spectral Theory +1602.09034 Materials Science +1603.00694 Mesoscale and Nanoscale Physics +1603.00731 Dynamical Systems +1603.00887 Theory +1603.01024 Numerical Analysis +1603.01129 Statistical Mechanics +1603.01132 Physics and Society +1603.01218 Atmospheric and Oceanic Physics +1603.01258 Strongly Correlated Electrons +1603.01414 Optics +1603.01516 Optics +1603.01888 Theory +1603.02026 Atomic Physics +1603.02096 Analysis of PDEs +1603.02110 Materials Science +1603.02254 +1603.02359 Theory +1603.02581 +1603.02795 Theory +1603.03004 Optics +1603.03042 Strongly Correlated Electrons +1603.03050 Theory +1603.03055 Theory +1603.03193 +1603.03213 Theory +1603.03312 +1603.03320 +1603.03356 Numerical Analysis +1603.03448 Information Theory +1603.03651 Strongly Correlated Electrons +1603.03666 Analysis of PDEs +1603.03839 Analysis of PDEs +1603.03923 +1603.03999 +1603.04143 Optics +1603.04454 Theory +1603.04540 Mesoscale and Nanoscale Physics +1603.04757 Plasma Physics +1603.04761 Phenomenology +1603.04829 Mesoscale and Nanoscale Physics +1603.04858 Astrophysics of Galaxies +1603.04868 Computer Vision and Pattern Recognition +1603.05019 Optics +1603.05036 +1603.05440 Statistical Mechanics +1603.05532 Lattice +1603.05807 +1603.05822 Theory +1603.05927 +1603.06154 Mesoscale and Nanoscale Physics +1603.06410 Populations and Evolution +1603.06446 Dynamical Systems +1603.06467 Lattice +1603.06579 Theory +1603.06654 Mesoscale and Nanoscale Physics +1603.06681 Phenomenology +1603.06800 Theory +1603.06962 Phenomenology +1603.07698 Superconductivity +1603.07891 Statistical Mechanics +1603.08007 Astrophysics of Galaxies +1603.08350 Materials Science +1603.08382 Theory +1603.08496 Spectral Theory +1603.08574 Fluid Dynamics +1603.08580 Instrumentation and Detectors +1603.08860 Differential Geometry +1603.09431 Experiment +1603.09432 +1603.09539 Differential Geometry +1603.09542 Theory +1603.09549 Experiment +1603.09582 Optics +1604.00014 High Energy Astrophysical Phenomena +1604.00303 Analysis of PDEs +1604.00335 Phenomenology +1604.00483 Mesoscale and Nanoscale Physics +1604.00531 +1604.00667 High Energy Astrophysical Phenomena +1604.00703 Theory +1604.01577 Materials Science +1604.01829 Soft Condensed Matter +1604.01989 +1604.02334 Distributed, Parallel, and Cluster Computing +1604.02762 +1604.02773 +1604.02946 Computer Vision and Pattern Recognition +1604.03124 +1604.03139 Experiment +1604.03428 +1604.03488 Mesoscale and Nanoscale Physics +1604.03525 Materials Science +1604.03567 Fluid Dynamics +1604.03575 Theory +1604.03765 Materials Science +1604.03916 Mesoscale and Nanoscale Physics +1604.04099 Theory +1604.04193 Phenomenology +1604.04292 Theory +1604.04449 Astrophysics of Galaxies +1604.04522 Theory +1604.04541 Numerical Analysis +1604.04614 Statistical Mechanics +1604.04940 Experiment +1604.05071 Dynamical Systems +1604.05547 +1604.05600 Physics and Society +1604.05904 Cosmology and Nongalactic Astrophysics +1604.06124 Number Theory +1604.06572 Statistical Mechanics +1604.06595 Phenomenology +1604.06618 Numerical Analysis +1604.06736 Experiment +1604.06890 Optics +1604.07192 +1604.07611 Soft Condensed Matter +1604.07912 Materials Science +1604.07932 +1604.08030 Mesoscale and Nanoscale Physics +1604.08109 Fluid Dynamics +1604.08135 +1604.08241 Number Theory +1604.08296 Phenomenology +1604.08304 Quantum Algebra +1604.08548 Theory +1604.08687 History and Philosophy of Physics +1604.08712 +1604.08835 Optics +1604.08869 History and Philosophy of Physics +1604.08870 Quantum Gases +1605.00048 Instrumentation and Methods for Astrophysics +1605.00067 Materials Science +1605.00334 Theory +1605.00534 Optics +1605.00636 Theory +1605.00899 Populations and Evolution +1605.00963 Plasma Physics +1605.01337 Phenomenology +1605.01351 +1605.01398 Phenomenology +1605.01458 Numerical Analysis +1605.01600 Computer Vision and Pattern Recognition +1605.01777 Combinatorics +1605.01785 +1605.01805 Data Analysis, Statistics and Probability +1605.01927 +1605.02047 Phenomenology +1605.02116 Mesoscale and Nanoscale Physics +1605.02203 Mesoscale and Nanoscale Physics +1605.02241 +1605.02259 Pattern Formation and Solitons +1605.02428 Analysis of PDEs +1605.02451 +1605.02608 Theory +1605.02672 High Energy Astrophysical Phenomena +1605.02687 Data Structures and Algorithms +1605.02696 Quantum Gases +1605.02709 Lattice +1605.02737 Phenomenology +1605.02767 Statistical Mechanics +1605.02846 +1605.02909 Optics +1605.02986 Plasma Physics +1605.02990 Statistical Mechanics +1605.03010 Phenomenology +1605.03056 Phenomenology +1605.03067 Quantum Gases +1605.03156 Phenomenology +1605.03164 Plasma Physics +1605.03181 Phenomenology +1605.03278 Soft Condensed Matter +1605.03541 Cosmology and Nongalactic Astrophysics +1605.03605 Optics +1605.04139 Soft Condensed Matter +1605.04175 Theory +1605.04286 Soft Condensed Matter +1605.04332 +1605.04498 Phenomenology +1605.04585 Combinatorics +1605.04713 Pattern Formation and Solitons +1605.04762 +1605.04855 Phenomenology +1605.04937 Materials Science +1605.05035 Mesoscale and Nanoscale Physics +1605.05113 Phenomenology +1605.05178 Instrumentation and Methods for Astrophysics +1605.05292 Cosmology and Nongalactic Astrophysics +1605.05403 Quantum Gases +1605.05467 Superconductivity +1605.05635 Theory +1605.05690 Statistical Mechanics +1605.05921 Numerical Analysis +1605.05961 Atomic Physics +1605.06142 Phenomenology +1605.06286 +1605.06468 Mesoscale and Nanoscale Physics +1605.06513 Phenomenology +1605.06526 Theory +1605.06540 +1605.06675 Phenomenology +1605.06736 Instrumentation and Methods for Astrophysics +1605.06741 Statistical Mechanics +1605.06784 Theory +1605.06834 Phenomenology +1605.06958 Statistical Mechanics +1605.07051 Machine Learning +1605.07053 Subcellular Processes +1605.07185 Earth and Planetary Astrophysics +1605.07195 Phenomenology +1605.07238 Statistical Mechanics +1605.07584 Phenomenology +1605.07600 Phenomenology +1605.07622 Theory +1605.07817 Analysis of PDEs +1605.08200 Quantum Gases +1605.08345 Plasma Physics +1605.08376 Mesoscale and Nanoscale Physics +1605.08442 Phenomenology +1605.08465 Pattern Formation and Solitons +1605.08547 +1605.08624 Quantum Gases +1605.08897 Mesoscale and Nanoscale Physics +1605.09075 Mesoscale and Nanoscale Physics +1605.09138 Instrumentation and Detectors +1605.09181 Portfolio Management +1605.09241 +1605.09249 Numerical Analysis +1605.09253 Atomic Physics +1605.09594 Phenomenology +1605.09603 Exactly Solvable and Integrable Systems +1605.09639 Pattern Formation and Solitons +1605.09677 Theory +1606.00072 Phenomenology +1606.00141 Superconductivity +1606.00164 Analysis of PDEs +1606.00241 Materials Science +1606.00469 Astrophysics of Galaxies +1606.00509 Instrumentation and Detectors +1606.00896 +1606.00929 +1606.01011 +1606.01170 Superconductivity +1606.01300 Soft Condensed Matter +1606.01405 Mesoscale and Nanoscale Physics +1606.01411 Materials Science +1606.01490 Theory +1606.01612 Systems and Control +1606.01839 Optics +1606.01883 Phenomenology +1606.01894 Theory +1606.01936 Cell Behavior +1606.01989 Theory +1606.02288 Computer Vision and Pattern Recognition +1606.02295 Theory +1606.02333 +1606.02404 Learning +1606.02416 +1606.02439 Mesoscale and Nanoscale Physics +1606.02586 Accelerator Physics +1606.02798 Mesoscale and Nanoscale Physics +1606.02906 Mesoscale and Nanoscale Physics +1606.02964 +1606.02983 Superconductivity +1606.02996 Phenomenology +1606.03004 Fluid Dynamics +1606.03008 Phenomenology +1606.03068 Theory +1606.03222 Chemical Physics +1606.03239 Phenomenology +1606.03261 Physics and Society +1606.03270 Chaotic Dynamics +1606.03455 Theory +1606.03554 Fluid Dynamics +1606.03603 Optics +1606.03648 +1606.03739 Mesoscale and Nanoscale Physics +1606.03934 Soft Condensed Matter +1606.04013 Adaptation and Self-Organizing Systems +1606.04084 Phenomenology +1606.04222 +1606.04355 Classical Analysis and ODEs +1606.04499 Soft Condensed Matter +1606.04500 Materials Science +1606.04604 High Energy Astrophysical Phenomena +1606.04610 Probability +1606.04829 Mesoscale and Nanoscale Physics +1606.04833 Experiment +1606.04917 Instrumentation and Detectors +1606.04979 Instrumentation and Methods for Astrophysics +1606.05021 Methodology +1606.05036 Emerging Technologies +1606.05089 Geophysics +1606.05098 Mesoscale and Nanoscale Physics +1606.05218 Phenomenology +1606.05356 Strongly Correlated Electrons +1606.05369 +1606.05537 +1606.05557 +1606.05558 Cosmology and Nongalactic Astrophysics +1606.05607 Quantum Gases +1606.05636 Theory +1606.05674 Physics and Society +1606.06008 Atomic Physics +1606.06009 Strongly Correlated Electrons +1606.06016 Atomic Physics +1606.06038 Soft Condensed Matter +1606.06050 Materials Science +1606.06091 Phenomenology +1606.06110 Chemical Physics +1606.06145 Chemical Physics +1606.06166 Phenomenology +1606.06194 Theory +1606.06276 Plasma Physics +1606.06292 +1606.06312 Lattice +1606.06322 Representation Theory +1606.06494 Instrumentation and Methods for Astrophysics +1606.06505 Statistical Mechanics +1606.06544 Solar and Stellar Astrophysics +1606.06616 +1606.06635 +1606.06754 Phenomenology +1606.06773 Pattern Formation and Solitons +1606.07005 Plasma Physics +1606.07009 Phenomenology +1606.07051 Theory +1606.07086 Phenomenology +1606.07126 Physics Education +1606.07186 Theory +1606.07212 Optics +1606.07291 Mesoscale and Nanoscale Physics +1606.07338 Instrumentation and Methods for Astrophysics +1606.07376 Theory +1606.07377 +1606.07406 Theory +1606.07432 Instrumentation and Detectors +1606.07456 Instrumentation and Methods for Astrophysics +1606.07458 Theory +1606.07547 Plasma Physics +1606.07559 +1606.07570 Theory +1606.07654 Strongly Correlated Electrons +1606.07862 Phenomenology +1606.07890 Mesoscale and Nanoscale Physics +1606.07982 Plasma Physics +1606.08155 Statistical Mechanics +1606.08159 Materials Science +1606.08166 Mesoscale and Nanoscale Physics +1606.08213 Mesoscale and Nanoscale Physics +1606.08286 Astrophysics of Galaxies +1606.08438 Theory +1606.08563 Superconductivity +1606.08573 Materials Science +1606.08765 Mesoscale and Nanoscale Physics +1606.08789 Chemical Physics +1606.08803 Cosmology and Nongalactic Astrophysics +1606.08812 Lattice +1606.08837 +1606.08838 +1606.08853 Phenomenology +1606.09078 Superconductivity +1606.09146 +1606.09263 +1606.09372 +1606.09379 Experiment +1606.09414 +1606.09448 Solar and Stellar Astrophysics +1606.09468 Astrophysics of Galaxies +1606.09510 Information Theory +1606.09535 Theory +1606.09538 Plasma Physics +1606.09543 Theory +1606.09576 Phenomenology +1606.09601 Optics +1606.09616 Theory +1606.09619 +1606.09628 Theory +1606.09644 Theory +1607.00016 Astrophysics of Galaxies +1607.00027 Solar and Stellar Astrophysics +1607.00069 Mesoscale and Nanoscale Physics +1607.00080 Materials Science +1607.00168 +1607.00280 General Physics +1607.00284 Atomic Physics +1607.00287 Mesoscale and Nanoscale Physics +1607.00310 Numerical Analysis +1607.00390 Theory +1607.00529 +1607.00531 Optimization and Control +1607.00535 Space Physics +1607.00539 Chemical Physics +1607.00544 Optics +1607.00593 Chemical Physics +1607.00594 Phenomenology +1607.00605 Materials Science +1607.00622 Phenomenology +1607.00795 Theory +1607.00834 Instrumentation and Methods for Astrophysics +1607.00873 +1607.00878 Instrumentation and Methods for Astrophysics +1607.00892 Soft Condensed Matter +1607.01014 Cosmology and Nongalactic Astrophysics +1607.01025 Theory +1607.01171 Instrumentation and Detectors +1607.01230 Materials Science +1607.01246 Theory +1607.01632 Phenomenology +1607.01635 Statistical Mechanics +1607.01659 Phenomenology +1607.01754 Fluid Dynamics +1607.01757 Materials Science +1607.01785 Astrophysics of Galaxies +1607.01807 Theory +1607.01846 Strongly Correlated Electrons +1607.01868 Plasma Physics +1607.01871 Theory +1607.01913 Quantum Gases +1607.01916 Materials Science +1607.01917 High Energy Astrophysical Phenomena +1607.01919 Materials Science +1607.01925 Probability +1607.02102 Phenomenology +1607.02183 Space Physics +1607.02206 +1607.02222 Operator Algebras +1607.02249 Information Theory +1607.02260 Phenomenology +1607.02313 Mesoscale and Nanoscale Physics +1607.02321 Mesoscale and Nanoscale Physics +1607.02323 Mesoscale and Nanoscale Physics +1607.02351 Mesoscale and Nanoscale Physics +1607.02486 Mesoscale and Nanoscale Physics +1607.02658 Optics +1607.02664 Astrophysics of Galaxies +1607.02831 Fluid Dynamics +1607.02896 Statistics Theory +1607.02900 +1607.02947 Strongly Correlated Electrons +1607.03120 Theory +1607.03259 Mesoscale and Nanoscale Physics +1607.03263 Materials Science +1607.03283 Strongly Correlated Electrons +1607.03395 Optics +1607.03403 Mesoscale and Nanoscale Physics +1607.03473 Theory +1607.03488 Astrophysics of Galaxies +1607.03512 Earth and Planetary Astrophysics +1607.03517 Earth and Planetary Astrophysics +1607.03580 Quantum Gases +1607.03602 Earth and Planetary Astrophysics +1607.03630 +1607.03686 Optics +1607.03711 Mesoscale and Nanoscale Physics +1607.03756 Theory +1607.03773 Phenomenology +1607.03812 Soft Condensed Matter +1607.03850 Physics and Society +1607.03924 +1607.03968 Strongly Correlated Electrons +1607.03974 Mesoscale and Nanoscale Physics +1607.03982 Astrophysics of Galaxies +1607.04050 +1607.04187 Phenomenology +1607.04237 Theory +1607.04304 Phenomenology +1607.04307 +1607.04326 +1607.04337 Mesoscale and Nanoscale Physics +1607.04412 Instrumentation and Methods for Astrophysics +1607.04434 Phenomenology +1607.04447 Phenomenology +1607.04517 Instrumentation and Methods for Astrophysics +1607.04519 +1607.04651 Optics +1607.04743 Materials Science +1607.04832 Theory +1607.04843 Plasma Physics +1607.04924 Quantum Gases +1607.04955 Instrumentation and Detectors +1607.04970 Optics +1607.04974 Mesoscale and Nanoscale Physics +1607.04980 +1607.05029 Instrumentation and Methods for Astrophysics +1607.05126 Fluid Dynamics +1607.05170 Instrumentation and Methods for Astrophysics +1607.05193 Theory +1607.05224 Probability +1607.05240 Strongly Correlated Electrons +1607.05330 Phenomenology +1607.05354 Physics and Society +1607.05361 Fluid Dynamics +1607.05450 Theory +1607.05497 Instrumentation and Methods for Astrophysics +1607.05541 Phenomenology +1607.05635 Distributed, Parallel, and Cluster Computing +1607.05680 Materials Science +1607.05700 Instrumentation and Methods for Astrophysics +1607.05730 Mesoscale and Nanoscale Physics +1607.05737 Numerical Analysis +1607.05778 +1607.05846 Phenomenology +1607.05881 +1607.06047 Theory +1607.06185 +1607.06200 Strongly Correlated Electrons +1607.06371 Lattice +1607.06395 Geometric Topology +1607.06427 Theory +1607.06431 Optics +1607.06488 Solar and Stellar Astrophysics +1607.06496 Instrumentation and Methods for Astrophysics +1607.06693 Computational Physics +1607.06866 Theory +1607.06900 Phenomenology +1607.06949 Instrumentation and Methods for Astrophysics +1607.07017 Soft Condensed Matter +1607.07152 Theory +1607.07201 Mesoscale and Nanoscale Physics +1607.07294 Fluid Dynamics +1607.07617 Other Condensed Matter +1607.07624 Instrumentation and Methods for Astrophysics +1607.07651 Theory +1607.07655 Phenomenology +1607.07700 Instrumentation and Methods for Astrophysics +1607.07718 Representation Theory +1607.07752 Mesoscale and Nanoscale Physics +1607.07773 Theory +1607.07854 Superconductivity +1607.07898 Phenomenology +1607.07962 +1607.08241 Phenomenology +1607.08268 Statistical Mechanics +1607.08298 Materials Science +1607.08304 Soft Condensed Matter +1607.08313 Phenomenology +1607.08327 Theory +1607.08361 Theory +1607.08410 Strongly Correlated Electrons +1607.08447 Other Condensed Matter +1607.08476 Theory +1607.08513 Phenomenology +1607.08565 +1607.08586 Instrumentation and Methods for Astrophysics +1607.08587 Theory +1607.08652 Phenomenology +1607.08703 Optics +1607.08726 Soft Condensed Matter +1607.08757 Soft Condensed Matter +1607.08777 Soft Condensed Matter +1607.08823 Instrumentation and Methods for Astrophysics +1607.08854 Theory +1607.08873 Optics +1608.00028 High Energy Astrophysical Phenomena +1608.00227 Plasma Physics +1608.00283 Phenomenology +1608.00285 +1608.00320 Phenomenology +1608.00336 Phenomenology +1608.00522 Cosmology and Nongalactic Astrophysics +1608.00575 Earth and Planetary Astrophysics +1608.00579 Instrumentation and Methods for Astrophysics +1608.00662 Phenomenology +1608.00665 Space Physics +1608.00741 +1608.00791 Phenomenology +1608.00829 Theory +1608.00920 Social and Information Networks +1608.01029 Materials Science +1608.01037 Social and Information Networks +1608.01038 Social and Information Networks +1608.01073 Instrumentation and Methods for Astrophysics +1608.01105 +1608.01121 Fluid Dynamics +1608.01124 Instrumentation and Methods for Astrophysics +1608.01194 Phenomenology +1608.01310 Cosmology and Nongalactic Astrophysics +1608.01456 Other Condensed Matter +1608.01457 Instrumentation and Methods for Astrophysics +1608.01512 Logic +1608.01584 Phenomenology +1608.01665 Theory +1608.01804 Instrumentation and Methods for Astrophysics +1608.01850 Phenomenology +1608.01860 Phenomenology +1608.01885 Computational Physics +1608.01943 Physics and Society +1608.02077 +1608.02213 Strongly Correlated Electrons +1608.02331 Phenomenology +1608.02343 Analysis of PDEs +1608.02358 Cosmology and Nongalactic Astrophysics +1608.02496 Instrumentation and Detectors +1608.02507 Phenomenology +1608.02521 Phenomenology +1608.02605 Phenomenology +1608.02613 Disordered Systems and Neural Networks +1608.02622 Theory +1608.02796 Astrophysics of Galaxies +1608.02941 Astrophysics of Galaxies +1608.02970 Theory +1608.03003 Astrophysics of Galaxies +1608.03068 Mesoscale and Nanoscale Physics +1608.03279 Astrophysics of Galaxies +1608.03420 Instrumentation and Methods for Astrophysics +1608.03476 Theory +1608.03627 Earth and Planetary Astrophysics +1608.03867 Statistical Mechanics +1608.03904 Materials Science +1608.03917 Solar and Stellar Astrophysics +1608.04050 +1608.04129 Phenomenology +1608.04157 Other Condensed Matter +1608.04252 Phenomenology +1608.04269 Materials Science +1608.04378 Phenomenology +1608.04387 Theory +1608.04429 Phenomenology +1608.04450 Materials Science +1608.04582 Theory +1608.04646 Phenomenology +1608.04663 Theory +1608.04749 +1608.04790 Instrumentation and Methods for Astrophysics +1608.04798 Phenomenology +1608.04950 Phenomenology +1608.04957 Superconductivity +1608.04962 Optics +1608.05000 Theory +1608.05070 Cosmology and Nongalactic Astrophysics +1608.05257 Optics +1608.05291 Theory +1608.05341 Phenomenology +1608.05402 Theory +1608.05429 High Energy Astrophysical Phenomena +1608.05534 Theory +1608.05545 +1608.05549 Astrophysics of Galaxies +1608.05644 Optics +1608.05718 Phenomenology +1608.05884 Optics +1608.05937 Strongly Correlated Electrons +1608.06120 Mesoscale and Nanoscale Physics +1608.06163 Theory +1608.06194 Chemical Physics +1608.06267 Phenomenology +1608.06320 Solar and Stellar Astrophysics +1608.06534 Accelerator Physics +1608.06597 Phenomenology +1608.06653 +1608.06662 High Energy Astrophysical Phenomena +1608.06681 Chemical Physics +1608.06762 Plasma Physics +1608.06823 Materials Science +1608.06836 Earth and Planetary Astrophysics +1608.07008 Strongly Correlated Electrons +1608.07106 Accelerator Physics +1608.07264 +1608.07287 Quantum Gases +1608.07313 +1608.07316 +1608.07345 Earth and Planetary Astrophysics +1608.07456 History and Philosophy of Physics +1608.07473 +1608.07484 +1608.07530 High Energy Astrophysical Phenomena +1608.07554 Theory +1608.07555 Theory +1608.07618 Methodology +1608.07706 Computer Vision and Pattern Recognition +1608.07773 Strongly Correlated Electrons +1608.07776 Phenomenology +1608.07947 Phenomenology +1608.08056 Applications +1608.08095 Soft Condensed Matter +1608.08177 Atomic Physics +1608.08259 Solar and Stellar Astrophysics +1608.08280 Soft Condensed Matter +1608.08369 Materials Science +1608.08404 Astrophysics of Galaxies +1608.08478 Chemical Physics +1608.08585 +1608.08661 Experiment +1608.08703 Solar and Stellar Astrophysics +1608.08790 Numerical Analysis +1608.08848 Phenomenology +1608.08862 Solar and Stellar Astrophysics +1608.08896 Mesoscale and Nanoscale Physics +1608.08921 +1608.08960 +1608.08982 Phenomenology +1608.08985 Optics +1609.00125 Superconductivity +1609.00204 Phenomenology +1609.00239 Earth and Planetary Astrophysics +1609.00484 Strongly Correlated Electrons +1609.00490 Theory +1609.00545 Astrophysics of Galaxies +1609.00569 Solar and Stellar Astrophysics +1609.00665 +1609.00666 Probability +1609.00801 Theory +1609.00846 Materials Science +1609.00865 Materials Science +1609.01126 +1609.01185 Probability +1609.01192 Cosmology and Nongalactic Astrophysics +1609.01302 Astrophysics of Galaxies +1609.01346 Phenomenology +1609.01358 Probability +1609.01360 Learning +1609.01525 Soft Condensed Matter +1609.01727 Theory +1609.01738 Theory +1609.01768 High Energy Astrophysical Phenomena +1609.01772 +1609.01787 Phenomenology +1609.01794 Optics +1609.01918 High Energy Astrophysical Phenomena +1609.01960 Other Condensed Matter +1609.02104 Databases +1609.02152 Solar and Stellar Astrophysics +1609.02372 Fluid Dynamics +1609.02387 Strongly Correlated Electrons +1609.02388 High Energy Astrophysical Phenomena +1609.02454 Phenomenology +1609.02455 Phenomenology +1609.02466 +1609.02547 Statistical Mechanics +1609.02553 Astrophysics of Galaxies +1609.02566 Astrophysics of Galaxies +1609.02567 Astrophysics of Galaxies +1609.02597 Phenomenology +1609.02671 Cosmology and Nongalactic Astrophysics +1609.02693 Solar and Stellar Astrophysics +1609.02719 History and Philosophy of Physics +1609.02766 +1609.02834 History and Philosophy of Physics +1609.02915 Astrophysics of Galaxies +1609.03019 Earth and Planetary Astrophysics +1609.03121 Mesoscale and Nanoscale Physics +1609.03165 Solar and Stellar Astrophysics +1609.03288 +1609.03324 Physics and Society +1609.03331 +1609.03342 Fluid Dynamics +1609.03431 Numerical Analysis +1609.03466 Cosmology and Nongalactic Astrophysics +1609.03480 Theory +1609.03522 Astrophysics of Galaxies +1609.03595 Astrophysics of Galaxies +1609.03665 Theory +1609.03679 Theory +1609.03761 +1609.03813 Astrophysics of Galaxies +1609.03849 +1609.03902 Optics +1609.03972 Phenomenology +1609.04018 Astrophysics of Galaxies +1609.04082 Atomic Physics +1609.04264 Astrophysics of Galaxies +1609.04265 Theory +1609.04324 +1609.04346 Astrophysics of Galaxies +1609.04374 Atomic Physics +1609.04419 Neurons and Cognition +1609.04463 +1609.04519 Superconductivity +1609.04663 +1609.04786 Earth and Planetary Astrophysics +1609.04805 Astrophysics of Galaxies +1609.04834 Materials Science +1609.04871 Solar and Stellar Astrophysics +1609.05149 Mesoscale and Nanoscale Physics +1609.05208 Solar and Stellar Astrophysics +1609.05210 High Energy Astrophysical Phenomena +1609.05269 Mesoscale and Nanoscale Physics +1609.05446 Strongly Correlated Electrons +1609.05746 Phenomenology +1609.05753 +1609.05850 Solar and Stellar Astrophysics +1609.05864 Other Condensed Matter +1609.05899 Astrophysics of Galaxies +1609.05916 High Energy Astrophysical Phenomena +1609.05991 Solar and Stellar Astrophysics +1609.06043 Instrumentation and Detectors +1609.06162 Chemical Physics +1609.06240 Mesoscale and Nanoscale Physics +1609.06461 Statistical Mechanics +1609.06802 Experiment +1609.06835 +1609.06934 +1609.07110 High Energy Astrophysical Phenomena +1609.07185 High Energy Astrophysical Phenomena +1609.07280 Optics +1609.07303 +1609.07340 Superconductivity +1609.07399 Theory +1609.07435 Solar and Stellar Astrophysics +1609.07457 Materials Science +1609.07493 Analysis of PDEs +1609.07716 Phenomenology +1609.07865 Number Theory +1609.07933 +1609.07940 Soft Condensed Matter +1609.07988 Optics +1609.08002 High Energy Astrophysical Phenomena +1609.08061 Mesoscale and Nanoscale Physics +1609.08085 Materials Science +1609.08324 Solar and Stellar Astrophysics +1609.08448 General Physics +1609.08468 Classical Physics +1609.08485 Earth and Planetary Astrophysics +1609.08638 High Energy Astrophysical Phenomena +1609.08657 Accelerator Physics +1609.08782 Statistical Mechanics +1609.08800 Mesoscale and Nanoscale Physics +1609.08850 Plasma Physics +1609.08857 Soft Condensed Matter +1609.08890 +1609.08905 Learning +1609.08993 Strongly Correlated Electrons +1609.09150 Optics +1609.09233 Chaotic Dynamics +1609.09241 High Energy Astrophysical Phenomena +1609.09260 Classical Physics +1609.09262 Materials Science +1609.09355 Earth and Planetary Astrophysics +1609.09491 Phenomenology +1609.09640 Pattern Formation and Solitons +1609.09676 Mesoscale and Nanoscale Physics +1609.09833 Computational Physics +1610.00110 Superconductivity +1610.00304 Phenomenology +1610.00420 Astrophysics of Galaxies +1610.00455 Fluid Dynamics +1610.00501 Instrumentation and Methods for Astrophysics +1610.00800 Mesoscale and Nanoscale Physics +1610.00925 +1610.00942 Computational Physics +1610.00946 Artificial Intelligence +1610.01006 Classical Physics +1610.01007 Chemical Physics +1610.01026 Quantum Gases +1610.01179 +1610.01379 Earth and Planetary Astrophysics +1610.01512 Cosmology and Nongalactic Astrophysics +1610.01591 +1610.01617 Astrophysics of Galaxies +1610.01658 Optics +1610.01761 Chaotic Dynamics +1610.01814 Experiment +1610.01873 Plasma Physics +1610.01885 Functional Analysis +1610.01942 Atomic Physics +1610.02163 Plasma Physics +1610.02176 Instrumentation and Methods for Astrophysics +1610.02219 Statistical Mechanics +1610.02464 Astrophysics of Galaxies +1610.02564 Phenomenology +1610.02696 High Energy Astrophysical Phenomena +1610.02716 +1610.02754 Number Theory +1610.02817 Mesoscale and Nanoscale Physics +1610.02862 Instrumentation and Methods for Astrophysics +1610.02886 Theory +1610.02890 Theory +1610.02892 Theory +1610.02912 Space Physics +1610.02941 Astrophysics of Galaxies +1610.03200 Strongly Correlated Electrons +1610.03431 Mesoscale and Nanoscale Physics +1610.03439 Optics +1610.03469 High Energy Astrophysical Phenomena +1610.03551 Astrophysics of Galaxies +1610.03586 Optics +1610.03728 Plasma Physics +1610.03969 Strongly Correlated Electrons +1610.04204 Chemical Physics +1610.04205 Strongly Correlated Electrons +1610.04291 Theory +1610.04376 Materials Science +1610.04394 Lattice +1610.04409 Quantum Algebra +1610.04446 Earth and Planetary Astrophysics +1610.04694 Populations and Evolution +1610.04731 +1610.04733 +1610.04736 +1610.04757 Optics +1610.04801 Statistical Mechanics +1610.04869 +1610.05091 Optics +1610.05286 Optics +1610.05460 Plasma Physics +1610.05601 Distributed, Parallel, and Cluster Computing +1610.05610 General Physics +1610.05807 +1610.05808 Materials Science +1610.05821 Statistical Mechanics +1610.06017 High Energy Astrophysical Phenomena +1610.06030 Analysis of PDEs +1610.06045 Other Condensed Matter +1610.06055 Materials Science +1610.06063 Solar and Stellar Astrophysics +1610.06189 Astrophysics of Galaxies +1610.06206 Astrophysics of Galaxies +1610.06257 +1610.06313 Instrumentation and Methods for Astrophysics +1610.06604 Phenomenology +1610.06647 Phenomenology +1610.06778 Mesoscale and Nanoscale Physics +1610.06787 General Physics +1610.06927 Astrophysics of Galaxies +1610.07048 Numerical Analysis +1610.07050 Numerical Analysis +1610.07295 Algebraic Geometry +1610.07347 Theory +1610.07411 +1610.07548 Materials Science +1610.07866 Mesoscale and Nanoscale Physics +1610.07950 Quantum Gases +1610.08052 Soft Condensed Matter +1610.08178 High Energy Astrophysical Phenomena +1610.08179 Cosmology and Nongalactic Astrophysics +1610.08182 Cosmology and Nongalactic Astrophysics +1610.08467 Quantum Gases +1610.08513 Solar and Stellar Astrophysics +1610.08535 Information Theory +1610.08540 Solar and Stellar Astrophysics +1610.08829 +1610.08880 Mesoscale and Nanoscale Physics +1610.09104 Plasma Physics +1610.09121 Astrophysics of Galaxies +1610.09397 Other Condensed Matter +1610.09528 Category Theory +1610.09663 +1610.09707 +1611.00189 Solar and Stellar Astrophysics +1611.00253 Solar and Stellar Astrophysics +1611.00298 Lattice +1611.00372 Astrophysics of Galaxies +1611.00480 Astrophysics of Galaxies +1611.00656 Solar and Stellar Astrophysics +1611.00956 Instrumentation and Methods for Astrophysics +1611.01001 Astrophysics of Galaxies +1611.01056 Physics and Society +1611.01158 Solar and Stellar Astrophysics +1611.01222 Cosmology and Nongalactic Astrophysics +1611.01611 Fluid Dynamics +1611.01790 Solar and Stellar Astrophysics +1611.02050 Optimization and Control +1611.02225 Materials Science +1611.02227 Materials Science +1611.02228 Materials Science +1611.02229 Materials Science +1611.02230 Materials Science +1611.02326 Combinatorics +1611.02589 Data Structures and Algorithms +1611.02811 Strongly Correlated Electrons +1611.03093 Theory +1611.03164 Theory +1611.03273 Discrete Mathematics +1611.03522 Earth and Planetary Astrophysics +1611.03560 +1611.03649 Phenomenology +1611.03744 Soft Condensed Matter +1611.04301 Statistical Mechanics +1611.04326 Computation and Language +1611.04699 Solar and Stellar Astrophysics +1611.04736 Experiment +1611.04863 Plasma Physics +1611.04890 Strongly Correlated Electrons +1611.05111 +1611.05149 Quantitative Methods +1611.05168 Plasma Physics +1611.05244 Computer Vision and Pattern Recognition +1611.05435 Computer Vision and Pattern Recognition +1611.05484 +1611.05672 Logic in Computer Science +1611.05724 Learning +1611.06245 Neural and Evolutionary Computing +1611.06266 Materials Science +1611.06276 Programming Languages +1611.06284 Computer Vision and Pattern Recognition +1611.06369 Quantum Gases +1611.06385 Computational Complexity +1611.06422 Superconductivity +1611.06440 Learning +1611.06442 +1611.06448 Computer Vision and Pattern Recognition +1611.06476 Atomic Physics +1611.06496 Differential Geometry +1611.06504 Representation Theory +1611.06531 Experiment +1611.06596 Computer Vision and Pattern Recognition +1611.06636 Mesoscale and Nanoscale Physics +1611.06643 Algebraic Geometry +1611.06684 Learning +1611.06843 Applications +1611.06889 Quantitative Methods +1611.06892 Mathematical Software +1611.06953 Learning +1611.06996 Machine Learning +1611.07015 +1611.07016 Classical Physics +1611.07018 Chaotic Dynamics +1611.07020 Networking and Internet Architecture +1611.07021 Theory +1611.07023 Theory +1611.07024 Astrophysics of Galaxies +1611.07028 Astrophysics of Galaxies +1611.07031 Phenomenology +1611.07032 Tissues and Organs +1611.07036 Astrophysics of Galaxies +1611.07038 Astrophysics of Galaxies +1611.07041 Theory +1611.07042 Cosmology and Nongalactic Astrophysics +1611.07044 Cosmology and Nongalactic Astrophysics +1611.07045 Astrophysics of Galaxies +1611.07046 Cosmology and Nongalactic Astrophysics +1611.07047 Astrophysics of Galaxies +1611.07048 Astrophysics of Galaxies +1611.07052 Mesoscale and Nanoscale Physics +1611.07054 Learning +1611.07055 Data Structures and Algorithms +1611.07056 Computation +1611.07057 Algebraic Geometry +1611.07058 Mesoscale and Nanoscale Physics +1611.07059 Theory +1611.07060 Robotics +1611.07062 Theory +1611.07063 +1611.07074 Theory +1611.07076 Classical Physics +1611.07077 History and Philosophy of Physics +1611.07079 Mesoscale and Nanoscale Physics +1611.07081 Statistical Mechanics +1611.07082 +1611.07083 Distributed, Parallel, and Cluster Computing +1611.07085 Chemical Physics +1611.07087 Combinatorics +1611.07090 Strongly Correlated Electrons +1611.07091 Quantum Gases +1611.07094 Superconductivity +1611.07095 High Energy Astrophysical Phenomena +1611.07097 Classical Analysis and ODEs +1611.07101 Optics +1611.07102 Computer Science and Game Theory +1611.07105 Computer Science and Game Theory +1611.07108 Optimization and Control +1611.07109 Cryptography and Security +1611.07110 +1611.07111 Combinatorics +1611.07113 Strongly Correlated Electrons +1611.07115 Machine Learning +1611.07116 Theory +1611.07117 +1611.07119 Computer Vision and Pattern Recognition +1611.07120 Operator Algebras +1611.07121 Functional Analysis +1611.07122 +1611.07124 Information Theory +1611.07129 +1611.07130 Materials Science +1611.07133 +1611.07134 Experiment +1611.07136 Computer Vision and Pattern Recognition +1611.07137 Combinatorics +1611.07138 Optimization and Control +1611.07139 Human-Computer Interaction +1611.07140 Statistical Mechanics +1611.07141 Algebraic Geometry +1611.07142 Atomic Physics +1611.07143 Computer Vision and Pattern Recognition +1611.07144 Symbolic Computation +1611.07145 Computer Vision and Pattern Recognition +1611.07146 Number Theory +1611.07148 Soft Condensed Matter +1611.07150 Lattice +1611.07151 Distributed, Parallel, and Cluster Computing +1611.07152 +1611.07153 Strongly Correlated Electrons +1611.07154 Mesoscale and Nanoscale Physics +1611.07155 +1611.07157 Soft Condensed Matter +1611.07158 Optics +1611.07159 Phenomenology +1611.07161 Machine Learning +1611.07163 Software Engineering +1611.07164 Information Theory +1611.07165 Soft Condensed Matter +1611.07166 +1611.07167 +1611.07168 Instrumentation and Detectors +1611.07170 Numerical Analysis +1611.07171 Numerical Analysis +1611.07172 Numerical Analysis +1611.07173 Functional Analysis +1611.07175 Systems and Control +1611.07176 Mesoscale and Nanoscale Physics +1611.07178 Logic in Computer Science +1611.07179 Superconductivity +1611.07180 High Energy Astrophysical Phenomena +1611.07181 Physics and Society +1611.07182 Materials Science +1611.07183 Number Theory +1611.07185 Spectral Theory +1611.07186 +1611.07187 Analysis of PDEs +1611.07188 Information Theory +1611.07189 +1611.07190 Materials Science +1611.07191 Data Structures and Algorithms +1611.07193 Astrophysics of Galaxies +1611.07194 Phenomenology +1611.07195 Phenomenology +1611.07197 Methodology +1611.07198 Materials Science +1611.07199 Functional Analysis +1611.07200 Classical Analysis and ODEs +1611.07201 Numerical Analysis +1611.07203 Instrumentation and Methods for Astrophysics +1611.07204 Functional Analysis +1611.07205 Lattice +1611.07206 Computation and Language +1611.07208 Materials Science +1611.07210 Mesoscale and Nanoscale Physics +1611.07212 Computer Vision and Pattern Recognition +1611.07213 Numerical Analysis +1611.07214 Information Theory +1611.07215 Experiment +1611.07217 Optics +1611.07219 Functional Analysis +1611.07220 Instrumentation and Detectors +1611.07221 Lattice +1611.07223 Probability +1611.07224 Information Theory +1611.07226 Phenomenology +1611.07227 Mesoscale and Nanoscale Physics +1611.07228 Analysis of PDEs +1611.07230 Statistics Theory +1611.07231 Computer Vision and Pattern Recognition +1611.07233 Computer Vision and Pattern Recognition +1611.07235 Computational Complexity +1611.07236 Probability +1611.07238 Distributed, Parallel, and Cluster Computing +1611.07241 Dynamical Systems +1611.07242 Statistics Theory +1611.07245 Computer Vision and Pattern Recognition +1611.07248 Dynamical Systems +1611.07249 Phenomenology +1611.07251 Number Theory +1611.07252 Machine Learning +1611.07253 Statistics Theory +1611.07260 Combinatorics +1611.07261 Phenomenology +1611.07264 Biological Physics +1611.07266 Materials Science +1611.07269 Number Theory +1611.07270 Machine Learning +1611.07272 Neurons and Cognition +1611.07275 Probability +1611.07276 Statistics Theory +1611.07281 Lattice +1611.07282 Probability +1611.07286 Materials Science +1611.07287 Number Theory +1611.07288 Strongly Correlated Electrons +1611.07291 Mesoscale and Nanoscale Physics +1611.07292 Numerical Analysis +1611.07293 +1611.07296 Fluid Dynamics +1611.07298 Quantum Algebra +1611.07299 Cryptography and Security +1611.07303 Data Structures and Algorithms +1611.07306 Commutative Algebra +1611.07308 Machine Learning +1611.07309 Solar and Stellar Astrophysics +1611.07310 Soft Condensed Matter +1611.07312 Phenomenology +1611.07313 Theory +1611.07314 Solar and Stellar Astrophysics +1611.07317 Atmospheric and Oceanic Physics +1611.07319 Atmospheric and Oceanic Physics +1611.07320 Superconductivity +1611.07321 Mesoscale and Nanoscale Physics +1611.07323 High Energy Astrophysical Phenomena +1611.07324 Probability +1611.07326 Accelerator Physics +1611.07328 +1611.07329 Robotics +1611.07332 +1611.07333 Quantum Gases +1611.07336 Data Structures and Algorithms +1611.07337 Numerical Analysis +1611.07339 Earth and Planetary Astrophysics +1611.07340 Mesoscale and Nanoscale Physics +1611.07341 General Physics +1611.07343 Learning +1611.07347 Statistics Theory +1611.07348 Representation Theory +1611.07350 Cryptography and Security +1611.07351 Sound +1611.07352 Phenomenology +1611.07353 Instrumentation and Detectors +1611.07356 Computational Geometry +1611.07358 Differential Geometry +1611.07360 Computational Geometry +1611.07365 +1611.07366 Networking and Internet Architecture +1611.07368 Computational Engineering, Finance, and Science +1611.07370 Phenomenology +1611.07372 Logic in Computer Science +1611.07374 Mesoscale and Nanoscale Physics +1611.07375 Experiment +1611.07377 Phenomenology +1611.07379 Computer Science and Game Theory +1611.07381 Representation Theory +1611.07382 Optimization and Control +1611.07384 History and Overview +1611.07385 Computer Vision and Pattern Recognition +1611.07388 Optimization and Control +1611.07390 Medical Physics +1611.07391 Phenomenology +1611.07392 Cryptography and Security +1611.07393 Optimization and Control +1611.07394 Instrumentation and Detectors +1611.07395 Solar and Stellar Astrophysics +1611.07396 Number Theory +1611.07397 Networking and Internet Architecture +1611.07398 +1611.07399 Robotics +1611.07400 Networking and Internet Architecture +1611.07401 Popular Physics +1611.07403 Computational Engineering, Finance, and Science +1611.07404 Mesoscale and Nanoscale Physics +1611.07406 Materials Science +1611.07407 Combinatorics +1611.07408 Mesoscale and Nanoscale Physics +1611.07409 Performance +1611.07411 Lattice +1611.07412 Applications +1611.07413 Earth and Planetary Astrophysics +1611.07414 Data Structures and Algorithms +1611.07416 Solar and Stellar Astrophysics +1611.07417 Computation +1611.07419 Phenomenology +1611.07420 Computer Science and Game Theory +1611.07421 Symbolic Computation +1611.07422 Learning +1611.07423 Algebraic Geometry +1611.07424 Superconductivity +1611.07425 Information Theory +1611.07427 Lattice +1611.07429 Machine Learning +1611.07431 Instrumentation and Detectors +1611.07433 Algebraic Geometry +1611.07436 Symplectic Geometry +1611.07437 Combinatorics +1611.07438 Learning +1611.07439 Commutative Algebra +1611.07440 Probability +1611.07441 General Topology +1611.07442 Functional Analysis +1611.07443 Machine Learning +1611.07444 Geometric Topology +1611.07446 Phenomenology +1611.07448 Networking and Internet Architecture +1611.07451 Data Structures and Algorithms +1611.07453 Group Theory +1611.07454 Social and Information Networks +1611.07457 +1611.07458 Number Theory +1611.07460 Machine Learning +1611.07464 Solar and Stellar Astrophysics +1611.07466 Probability +1611.07467 Group Theory +1611.07468 Discrete Mathematics +1611.07471 Algebraic Geometry +1611.07472 Theory +1611.07473 +1611.07475 Solar and Stellar Astrophysics +1611.07476 Learning +1611.07480 Experiment +1611.07481 Materials Science +1611.07482 Materials Science +1611.07484 Mesoscale and Nanoscale Physics +1611.07487 Dynamical Systems +1611.07489 Data Structures and Algorithms +1611.07490 Robotics +1611.07492 Machine Learning +1611.07493 Combinatorics +1611.07494 Phenomenology +1611.07495 +1611.07499 Classical Analysis and ODEs +1611.07500 +1611.07501 +1611.07502 Programming Languages +1611.07503 Data Structures and Algorithms +1611.07504 Optics +1611.07507 Learning +1611.07509 Learning +1611.07510 Materials Science +1611.07511 Distributed, Parallel, and Cluster Computing +1611.07514 Phenomenology +1611.07515 +1611.07516 Earth and Planetary Astrophysics +astro-ph/0008224 +astro-ph/0101496 +astro-ph/0104388 +astro-ph/0106075 +astro-ph/0108259 +astro-ph/0605626 +astro-ph/9804043 +astro-ph/9804078 +astro-ph/9810209 +astro-ph/9903346 +astro-ph/9906155 +astro-ph/9912211 +chao-dyn/9907005 Chaotic Dynamics +cond-mat/0002072 Statistical Mechanics +cond-mat/0011049 Statistical Mechanics +cond-mat/0105509 +cond-mat/0106334 Disordered Systems and Neural Networks +cond-mat/0106442 +cond-mat/0107326 Strongly Correlated Electrons +cond-mat/0107394 Statistical Mechanics +cond-mat/0107491 Disordered Systems and Neural Networks +cond-mat/0108469 Statistical Mechanics +cond-mat/0109034 Statistical Mechanics +cond-mat/0109182 Materials Science +cond-mat/0109215 Statistical Mechanics +cond-mat/0110317 Statistical Mechanics +cond-mat/0110373 Statistical Mechanics +cond-mat/0110413 Disordered Systems and Neural Networks +cond-mat/0110472 Disordered Systems and Neural Networks +cond-mat/0110496 Superconductivity +cond-mat/0111246 Statistical Mechanics +cond-mat/0111471 Statistical Mechanics +cond-mat/0112463 Disordered Systems and Neural Networks +cond-mat/0206122 +cond-mat/0206367 Statistical Mechanics +cond-mat/0210042 Disordered Systems and Neural Networks +cond-mat/0210166 Disordered Systems and Neural Networks +cond-mat/0302283 Statistical Mechanics +cond-mat/0303485 Superconductivity +cond-mat/0310038 Statistical Mechanics +cond-mat/0310405 Strongly Correlated Electrons +cond-mat/0310479 Statistical Mechanics +cond-mat/0311314 Statistical Mechanics +cond-mat/0312432 Disordered Systems and Neural Networks +cond-mat/0312567 Soft Condensed Matter +cond-mat/0408407 Statistical Mechanics +cond-mat/0409602 Strongly Correlated Electrons +cond-mat/0412421 Strongly Correlated Electrons +cond-mat/0412581 Soft Condensed Matter +cond-mat/0412682 Statistical Mechanics +cond-mat/0505520 Mesoscale and Nanoscale Physics +cond-mat/0612655 Statistical Mechanics +cond-mat/9906164 Statistical Mechanics +cond-mat/9907372 Statistical Mechanics +cond-mat/9910495 Strongly Correlated Electrons +cond-mat/9911115 Strongly Correlated Electrons +cond-mat/9911261 +cs/0605065 Neural and Evolutionary Computing +cs/0610049 Computational Complexity +gr-qc/0101090 +gr-qc/0202016 +gr-qc/0206034 +gr-qc/0405135 +gr-qc/0411036 +gr-qc/0503107 +gr-qc/0503112 +gr-qc/0504096 +gr-qc/0508097 +gr-qc/9906109 +gr-qc/9911045 +hep-ex/0002011 Experiment +hep-ex/0002031 Experiment +hep-ex/0002059 Experiment +hep-ex/0005004 Experiment +hep-ex/0005044 Experiment +hep-ex/0103046 Experiment +hep-ex/0104018 Experiment +hep-ex/0104024 Experiment +hep-ex/0104028 Experiment +hep-ex/0104041 Experiment +hep-ex/0104045 Experiment +hep-ex/0104048 Experiment +hep-ex/0104053 Experiment +hep-ex/0105005 Experiment +hep-ex/0106064 Experiment +hep-ex/0112043 Experiment +hep-ex/9909001 Experiment +hep-ex/9909053 Experiment +hep-ex/9910018 Experiment +hep-ex/9911005 Experiment +hep-ex/9911034 Experiment +hep-lat/0205021 Lattice +hep-lat/0302001 Lattice +hep-lat/0307027 Lattice +hep-lat/0406007 Lattice +hep-lat/0406033 Lattice +hep-lat/9903029 Lattice +hep-ph/0001003 Phenomenology +hep-ph/0001088 Phenomenology +hep-ph/0001170 Phenomenology +hep-ph/0001280 Phenomenology +hep-ph/0001313 Phenomenology +hep-ph/0001317 Phenomenology +hep-ph/0001321 Phenomenology +hep-ph/0001324 Phenomenology +hep-ph/0002025 Phenomenology +hep-ph/0002114 Phenomenology +hep-ph/0002121 Phenomenology +hep-ph/0002131 Phenomenology +hep-ph/0002171 Phenomenology +hep-ph/0002173 Phenomenology +hep-ph/0002210 Phenomenology +hep-ph/0002254 Phenomenology +hep-ph/0002280 Phenomenology +hep-ph/0002296 Phenomenology +hep-ph/0003092 Phenomenology +hep-ph/0003116 Phenomenology +hep-ph/0003155 Phenomenology +hep-ph/0004025 Phenomenology +hep-ph/0004055 Phenomenology +hep-ph/0004061 Phenomenology +hep-ph/0004152 Phenomenology +hep-ph/0005134 Phenomenology +hep-ph/0006127 Phenomenology +hep-ph/0007092 Phenomenology +hep-ph/0008124 Phenomenology +hep-ph/0008206 Phenomenology +hep-ph/0009006 Phenomenology +hep-ph/0009131 Phenomenology +hep-ph/0009138 Phenomenology +hep-ph/0009298 Phenomenology +hep-ph/0010007 Phenomenology +hep-ph/0010023 Phenomenology +hep-ph/0010049 Phenomenology +hep-ph/0010099 Phenomenology +hep-ph/0010175 Phenomenology +hep-ph/0010208 Phenomenology +hep-ph/0010328 Phenomenology +hep-ph/0011193 Phenomenology +hep-ph/0011333 Phenomenology +hep-ph/0011390 Phenomenology +hep-ph/0101042 Phenomenology +hep-ph/0101225 Phenomenology +hep-ph/0102060 Phenomenology +hep-ph/0102167 Phenomenology +hep-ph/0103011 Phenomenology +hep-ph/0103074 Phenomenology +hep-ph/0103145 Phenomenology +hep-ph/0103264 Phenomenology +hep-ph/0103305 Phenomenology +hep-ph/0103310 Phenomenology +hep-ph/0103319 Phenomenology +hep-ph/0103345 Phenomenology +hep-ph/0104002 Phenomenology +hep-ph/0104008 Phenomenology +hep-ph/0104018 Phenomenology +hep-ph/0104050 Phenomenology +hep-ph/0104080 Phenomenology +hep-ph/0104136 Phenomenology +hep-ph/0104153 Phenomenology +hep-ph/0104157 Phenomenology +hep-ph/0104202 Phenomenology +hep-ph/0106039 Phenomenology +hep-ph/0106200 Phenomenology +hep-ph/0106273 Phenomenology +hep-ph/0107070 Phenomenology +hep-ph/0110293 Phenomenology +hep-ph/0111249 Phenomenology +hep-ph/0112253 Phenomenology +hep-ph/0112325 Phenomenology +hep-ph/0112339 Phenomenology +hep-ph/0112349 Phenomenology +hep-ph/0201005 Phenomenology +hep-ph/0204068 Phenomenology +hep-ph/0204299 Phenomenology +hep-ph/0302227 Phenomenology +hep-ph/0303185 Phenomenology +hep-ph/0303204 Phenomenology +hep-ph/0304151 Phenomenology +hep-ph/0405043 Phenomenology +hep-ph/0405147 Phenomenology +hep-ph/0406165 Phenomenology +hep-ph/0406238 Phenomenology +hep-ph/0409168 Phenomenology +hep-ph/0505177 Phenomenology +hep-ph/0508233 Phenomenology +hep-ph/0702124 Phenomenology +hep-ph/9908477 Phenomenology +hep-ph/9909531 Phenomenology +hep-ph/9910207 Phenomenology +hep-ph/9910480 Phenomenology +hep-ph/9910552 Phenomenology +hep-ph/9911228 Phenomenology +hep-ph/9911334 Phenomenology +hep-ph/9911519 Phenomenology +hep-ph/9912245 Phenomenology +hep-ph/9912372 Phenomenology +hep-ph/9912401 Phenomenology +hep-ph/9912413 Phenomenology +hep-ph/9912440 Phenomenology +hep-th/0001149 Theory +hep-th/0002204 Theory +hep-th/0003182 Theory +hep-th/0006083 Theory +hep-th/0008175 Theory +hep-th/0010228 Theory +hep-th/0012130 Theory +hep-th/0104233 Theory +hep-th/0105193 Theory +hep-th/0109045 Theory +hep-th/0110140 Theory +hep-th/0110261 Theory +hep-th/0111119 Theory +hep-th/0111174 Theory +hep-th/0112072 Theory +hep-th/0112103 Theory +hep-th/0112144 Theory +hep-th/0112225 Theory +hep-th/0201164 Theory +hep-th/0203207 Theory +hep-th/0204040 Theory +hep-th/0205026 Theory +hep-th/0207081 Theory +hep-th/0302028 Theory +hep-th/0403071 Theory +hep-th/0403090 Theory +hep-th/0403152 Theory +hep-th/0403166 Theory +hep-th/0403225 Theory +hep-th/0403294 Theory +hep-th/0404052 Theory +hep-th/0404102 Theory +hep-th/0404108 Theory +hep-th/0405040 Theory +hep-th/0405068 Theory +hep-th/0405189 Theory +hep-th/0405289 Theory +hep-th/0406162 Theory +hep-th/0406216 Theory +hep-th/0406234 Theory +hep-th/0406272 Theory +hep-th/0407003 Theory +hep-th/0407007 Theory +hep-th/0407026 Theory +hep-th/0407100 Theory +hep-th/0407197 Theory +hep-th/0407209 Theory +hep-th/0407236 Theory +hep-th/0408118 Theory +hep-th/0408162 Theory +hep-th/0409028 Theory +hep-th/0409105 Theory +hep-th/0411024 Theory +hep-th/0505153 Theory +hep-th/9902029 Theory +hep-th/9903005 Theory +hep-th/9905218 Theory +hep-th/9907061 Theory +hep-th/9907114 Theory +hep-th/9908105 Theory +hep-th/9908146 Theory +hep-th/9908160 Theory +hep-th/9908202 Theory +hep-th/9908204 Theory +hep-th/9908208 Theory +hep-th/9909125 Theory +hep-th/9910096 Theory +hep-th/9911004 Theory +hep-th/9911008 Theory +hep-th/9912142 Theory +hep-th/9912264 Theory +hep-th/9912292 Theory +math-ph/0012009 +math-ph/0112053 +math-ph/0202001 +math-ph/0202026 +math-ph/0209056 +math-ph/0407050 +math-ph/0502034 +math/0001136 Quantum Algebra +math/0007065 Quantum Algebra +math/0202193 Representation Theory +math/0208045 Spectral Theory +math/0208173 Combinatorics +math/0407245 Differential Geometry +math/0610687 Metric Geometry +nlin/0207025 Exactly Solvable and Integrable Systems +nlin/0209035 Exactly Solvable and Integrable Systems +nlin/0509008 Adaptation and Self-Organizing Systems +nucl-th/0008064 +nucl-th/0009016 +nucl-th/0011099 +nucl-th/0012002 +nucl-th/0012019 +nucl-th/0012021 +nucl-th/0012035 +nucl-th/0012079 +nucl-th/0012084 +nucl-th/0103024 +nucl-th/0103080 +nucl-th/0106004 +nucl-th/0106017 +nucl-th/0108054 +nucl-th/0111076 +nucl-th/0302077 +nucl-th/0304013 +nucl-th/0305064 +nucl-th/0509016 +nucl-th/9904043 +physics/0010079 Fluid Dynamics +physics/0107010 History and Philosophy of Physics +physics/0204089 Chemical Physics +physics/0207103 Atomic Physics +physics/0609062 Popular Physics +physics/0702250 General Physics +quant-ph/0004025 +quant-ph/0103041 +quant-ph/0105095 +quant-ph/0204156 +quant-ph/0303034 +quant-ph/9906111 +quant-ph/9911066 +solv-int/9908003 Exactly Solvable and Integrable Systems +solv-int/9909017 Exactly Solvable and Integrable Systems +1207.1527 Classical Analysis and ODEs +0709.3894 Other Condensed Matter +0905.2824 +0905.4169 Data Analysis, Statistics and Probability +1103.3475 Representation Theory +1110.0288 Numerical Analysis +1205.3756 Information Theory +1206.0370 Functional Analysis +1206.2611 Representation Theory +1301.0204 Optics +1303.1122 Mesoscale and Nanoscale Physics +1303.5960 Computation and Language +1304.4907 Probability +1304.6924 Statistics Theory +1311.3016 Probability +1312.3937 Statistics Theory +1312.5990 Information Theory +1401.2010 Formal Languages and Automata Theory +1401.6823 Combinatorics +1401.7895 Probability +1402.0988 Computer Science and Game Theory +1403.3957 +1403.7494 Differential Geometry +1404.1430 Soft Condensed Matter +1404.1894 Discrete Mathematics +1404.5429 Algebraic Geometry +1405.6843 Cryptography and Security +1405.7157 Analysis of PDEs +1406.2768 +1406.3958 Combinatorics +1406.7728 Statistics Theory +1407.0492 Analysis of PDEs +1407.1440 Algebraic Geometry +1407.8202 +1408.0618 Analysis of PDEs +1408.2214 Information Theory +1408.5188 Materials Science +1409.3570 Cosmology and Nongalactic Astrophysics +1409.5276 Combinatorics +1409.7011 Algebraic Geometry +1410.0193 Differential Geometry +1410.0778 Rings and Algebras +1410.8638 Analysis of PDEs +1411.0276 Materials Science +1411.1618 +1411.5662 Geometric Topology +1411.7925 Information Theory +1412.4716 High Energy Astrophysical Phenomena +1412.4857 Statistics Theory +1412.5597 Strongly Correlated Electrons +1412.7262 Optics +1412.7333 +1501.00839 Group Theory +1501.01672 +1501.04979 Mathematical Software +1501.07060 Probability +1502.00844 Theory +1502.01127 Optics +1502.05010 +1502.05425 Geometric Topology +1502.05510 Statistics Theory +1503.00516 Computer Vision and Pattern Recognition +1503.00828 Operator Algebras +1503.04143 +1503.07379 Materials Science +1504.02015 Soft Condensed Matter +1504.02138 +1504.02252 Mesoscale and Nanoscale Physics +1504.03261 High Energy Astrophysical Phenomena +1504.03733 Methodology +1504.04451 Mesoscale and Nanoscale Physics +1504.06003 Social and Information Networks +1504.06493 Probability +1504.07080 Analysis of PDEs +1504.07233 +1505.00522 Mesoscale and Nanoscale Physics +1505.05307 +1505.06378 Learning +1505.07604 Functional Analysis +1506.00438 Learning +1506.01135 +1506.01516 Physics and Society +1506.02638 +1506.03912 K-Theory and Homology +1506.05767 Mesoscale and Nanoscale Physics +1506.07449 Combinatorics +1507.00991 Strongly Correlated Electrons +1507.01598 High Energy Astrophysical Phenomena +1507.01830 Analysis of PDEs +1507.02765 +1507.03558 Data Structures and Algorithms +1507.04234 Distributed, Parallel, and Cluster Computing +1508.00128 Commutative Algebra +1508.00871 Rings and Algebras +1508.01020 Geometric Topology +1508.01024 Classical Analysis and ODEs +1508.03038 Representation Theory +1508.03349 Information Theory +1508.05040 +1508.06312 +1508.06514 General Mathematics +1508.06681 Materials Science +1508.06683 Strongly Correlated Electrons +1508.07480 Digital Libraries +1509.01251 Mesoscale and Nanoscale Physics +1509.01447 Analysis of PDEs +1509.02009 Analysis of PDEs +1509.02656 Strongly Correlated Electrons +1509.04094 Classical Physics +1509.04402 Plasma Physics +1509.04481 +1509.06958 Solar and Stellar Astrophysics +1509.07572 Mesoscale and Nanoscale Physics +1509.08192 Materials Science +1509.08393 Astrophysics of Galaxies +1509.08404 Experiment +1509.08466 Cosmology and Nongalactic Astrophysics +1509.09145 Mesoscale and Nanoscale Physics +1510.00833 Probability +1510.02157 Materials Science +1510.03014 Functional Analysis +1510.03054 Mesoscale and Nanoscale Physics +1510.04283 Astrophysics of Galaxies +1510.05125 +1510.05654 Solar and Stellar Astrophysics +1510.06202 Phenomenology +1510.06404 Astrophysics of Galaxies +1511.00808 Exactly Solvable and Integrable Systems +1511.01456 Phenomenology +1511.01681 Neurons and Cognition +1511.01854 +1511.03366 Mesoscale and Nanoscale Physics +1511.03785 +1511.06748 Experiment +1511.08319 Materials Science +1511.09408 High Energy Astrophysical Phenomena +1512.00228 Learning +1512.00965 Artificial Intelligence +1512.01932 Number Theory +1512.03079 Solar and Stellar Astrophysics +1512.04369 Instrumentation and Methods for Astrophysics +1512.05425 Optics +1512.05820 Numerical Analysis +1512.08016 +1601.01031 Number Theory +1601.02417 Astrophysics of Galaxies +1601.04007 Analysis of PDEs +1601.04169 Data Structures and Algorithms +1601.04674 Machine Learning +1601.04878 +1601.04928 Phenomenology +1601.05244 Functional Analysis +1601.05271 Digital Libraries +1601.05411 Accelerator Physics +1601.05419 Earth and Planetary Astrophysics +1601.05438 Earth and Planetary Astrophysics +1601.05439 Distributed, Parallel, and Cluster Computing +1601.05447 Computer Vision and Pattern Recognition +1601.05448 Computational Physics +1601.05449 Quantitative Methods +1601.05451 Optics +1601.05452 Instrumentation and Methods for Astrophysics +1601.05454 Logic +1601.05458 Distributed, Parallel, and Cluster Computing +1601.05466 Physics Education +1601.05467 Physics Education +1601.05468 Algebraic Geometry +1601.05469 Physics Education +1601.05471 Instrumentation and Detectors +1601.05472 Computation and Language +1601.05474 Cosmology and Nongalactic Astrophysics +1601.05477 Chaotic Dynamics +1601.05480 Data Structures and Algorithms +1601.05483 Human-Computer Interaction +1601.05487 Complex Variables +1601.05488 Mesoscale and Nanoscale Physics +1601.05491 Number Theory +1601.05493 Optics +1601.05494 Computational Complexity +1601.05496 Analysis of PDEs +1601.05498 Combinatorics +1601.05504 Dynamical Systems +1601.05507 Probability +1601.05510 Dynamical Systems +1601.05511 Computer Vision and Pattern Recognition +1601.05514 Materials Science +1601.05515 Number Theory +1601.05516 Information Theory +1601.05520 Programming Languages +1601.05525 Functional Analysis +1601.05527 Social and Information Networks +1601.05530 Mesoscale and Nanoscale Physics +1601.05531 +1601.05532 Social and Information Networks +1601.05534 Mesoscale and Nanoscale Physics +1601.05535 Computer Vision and Pattern Recognition +1601.05536 Mesoscale and Nanoscale Physics +1601.05539 Information Theory +1601.05542 Classical Analysis and ODEs +1601.05545 Classical Physics +1601.05547 Analysis of PDEs +1601.05552 Analysis of PDEs +1601.05554 Optics +1601.05558 Optics +1601.05562 Combinatorics +1601.05566 +1601.05567 Probability +1601.05569 Software Engineering +1601.05571 Materials Science +1601.05572 Probability +1601.05573 Optics +1601.05580 Combinatorics +1601.05581 Analysis of PDEs +1601.05586 +1601.05590 Distributed, Parallel, and Cluster Computing +1601.05591 +1601.05593 Computer Vision and Pattern Recognition +1601.05595 Information Theory +1601.05597 Probability +1601.05601 Optics +1601.05607 High Energy Astrophysical Phenomena +1601.05608 Optimization and Control +1601.05610 Computer Vision and Pattern Recognition +1601.05612 Algebraic Topology +1601.05614 Dynamical Systems +1601.05618 Probability +1601.05622 Commutative Algebra +1601.05624 Numerical Analysis +1601.05626 +1601.05628 Theory +1601.05629 Combinatorics +1601.05634 +1601.05637 Combinatorics +1601.05638 Information Theory +1601.05640 Solar and Stellar Astrophysics +1601.05644 Computer Vision and Pattern Recognition +1601.05645 Combinatorics +1601.05653 Probability +1601.05654 Instrumentation and Methods for Astrophysics +1601.05655 Experiment +1601.05656 Logic in Computer Science +1601.05660 Physics and Society +1601.05662 Experiment +1601.05664 Physics and Society +1601.05666 Analysis of PDEs +1601.05667 Strongly Correlated Electrons +1601.05670 Dynamical Systems +1601.05675 Machine Learning +1601.05678 Optimization and Control +1601.05680 Numerical Analysis +1601.05682 Statistics Theory +1601.05684 Geophysics +1601.05686 Statistics Theory +1601.05690 Information Theory +1601.05695 Numerical Analysis +1601.05696 Geometric Topology +1601.05697 Differential Geometry +1601.05700 Populations and Evolution +1601.05704 Analysis of PDEs +1601.05706 Computational Geometry +1601.05707 +1601.05708 Symplectic Geometry +1601.05711 Geophysics +1601.05712 +1601.05713 Probability +1601.05716 Complex Variables +1601.05717 Lattice +1601.05721 Soft Condensed Matter +1601.05722 Solar and Stellar Astrophysics +1601.05723 Algebraic Geometry +1601.05725 Distributed, Parallel, and Cluster Computing +1601.05727 Rings and Algebras +1601.05728 Analysis of PDEs +1601.05734 Materials Science +1601.05737 General Physics +1601.05738 Software Engineering +1601.05742 Phenomenology +1601.05743 Number Theory +1601.05745 Analysis of PDEs +1601.05746 Phenomenology +1601.05747 Computational Geometry +1601.05748 Databases +1601.05751 +1601.05754 Computational Engineering, Finance, and Science +1601.05756 Probability +1601.05759 Superconductivity +1601.05762 Combinatorics +1601.05764 Learning +1601.05765 Data Analysis, Statistics and Probability +1601.05766 Statistics Theory +1601.05767 Computer Vision and Pattern Recognition +1601.05768 Computation and Language +1601.05770 Probability +1601.05774 Operator Algebras +1601.05778 Classical Analysis and ODEs +1601.05779 Cosmology and Nongalactic Astrophysics +1601.05782 Plasma Physics +1601.05783 Analysis of PDEs +nlin/0202021 Exactly Solvable and Integrable Systems +quant-ph/0703052 +1012.3692 Phenomenology +1105.4007 +1109.0426 Phenomenology +1110.2657 Theory +1112.1497 Information Theory +1201.1792 Probability +1202.0632 +1203.4346 Statistics Theory +1203.5590 Quantum Algebra +1205.0905 Differential Geometry +1205.6034 +1206.0734 Mesoscale and Nanoscale Physics +1206.4939 Probability +1206.6924 Theory +1207.1499 Phenomenology +1207.3497 Theory +1208.1902 Experiment +1208.3590 Symplectic Geometry +1208.4910 Theory +1208.5328 Phenomenology +1208.6219 Theory +1209.0561 Theory +1209.0903 Cosmology and Nongalactic Astrophysics +1209.1914 Theory +1209.2556 +1209.2867 +1209.4712 Theory +1209.5150 Phenomenology +1209.5159 +1209.6318 Phenomenology +1209.6622 Statistical Mechanics +1210.2848 Phenomenology +1210.6108 +1210.6308 Theory +1210.7305 Theory +1210.8306 Cosmology and Nongalactic Astrophysics +1211.3525 +1211.5949 Theory +1211.5963 Theory +1211.5976 Theory +1211.6135 Theory +1211.6627 Phenomenology +1212.0063 Theory +1212.1353 Lattice +1212.2717 Adaptation and Self-Organizing Systems +1212.5235 Phenomenology +1212.5913 Phenomenology +1212.5958 Experiment +1212.6803 +1301.2644 +1301.3088 Theory +1301.5435 Numerical Analysis +1301.7543 Theory +1302.2502 +1302.6121 Number Theory +1302.6438 Phenomenology +1303.2744 High Energy Astrophysical Phenomena +1303.6815 Representation Theory +1304.0533 Lattice +1304.0598 +1304.3976 Quantum Algebra +1304.5144 Group Theory +1304.7455 +1304.7885 Phenomenology +1304.7904 Theory +1305.1500 Theory +1305.3423 Instrumentation and Detectors +1305.5307 Phenomenology +1306.0341 Differential Geometry +1307.6415 +1308.3030 Representation Theory +1308.4939 Probability +1309.3394 +1310.1358 +1310.2378 Combinatorics +1310.2802 Dynamical Systems +1312.0271 Metric Geometry +1312.2081 Combinatorics +1312.3627 Theory +1312.4954 Strongly Correlated Electrons +1312.5415 Theory +1312.7207 Phenomenology +1401.0169 Combinatorics +1401.0171 Combinatorics +1401.0813 Phenomenology +1401.1029 Algebraic Topology +1401.1854 Algebraic Geometry +1401.4214 High Energy Astrophysical Phenomena +1401.4737 Cosmology and Nongalactic Astrophysics +1401.6692 Algebraic Geometry +1402.0223 Differential Geometry +1402.0550 Optimization and Control +1402.5296 Group Theory +1402.6209 Differential Geometry +1402.7188 Phenomenology +1403.0174 Theory +1403.0507 Group Theory +1403.2304 Group Theory +1403.2564 Group Theory +1403.4772 Lattice +1403.5131 Differential Geometry +1403.7629 Phenomenology +1404.2719 Differential Geometry +1404.5228 Chemical Physics +1405.6067 +1406.1967 Numerical Analysis +1406.2549 Phenomenology +1406.2900 Theory +1406.3607 Number Theory +1406.5892 Rings and Algebras +1406.6023 Theory +1406.6259 Logic in Computer Science +1406.7833 Classical Analysis and ODEs +1407.0198 Representation Theory +1407.2328 Phenomenology +1407.2507 Representation Theory +1407.2526 +1408.0386 Instrumentation and Detectors +1408.0668 Geometric Topology +1408.1030 +1408.4462 Phenomenology +1408.5535 Numerical Analysis +1408.6318 Theory +1408.6856 Numerical Analysis +1409.2858 Cosmology and Nongalactic Astrophysics +1409.3334 Phenomenology +1409.5931 Combinatorics +1409.7172 Materials Science +1409.8183 Optimization and Control +1409.8436 Theory +1409.8472 Phenomenology +1410.2114 Differential Geometry +1410.2386 Computer Vision and Pattern Recognition +1410.5037 Logic in Computer Science +1410.7476 Solar and Stellar Astrophysics +1410.7572 Analysis of PDEs +1411.1814 +1411.3057 +1411.3352 Classical Analysis and ODEs +1411.7258 +1412.0194 Instrumentation and Detectors +1412.2350 Theory +1412.5281 Theory +1412.6543 Strongly Correlated Electrons +1412.6880 Instrumentation and Detectors +1412.8699 Computers and Society +1501.05526 Numerical Analysis +1501.05713 Phenomenology +1501.06991 +1502.00103 High Energy Astrophysical Phenomena +1502.00385 +1502.00715 Phenomenology +1502.01809 Lattice +1502.04036 +1502.04786 Differential Geometry +1502.05451 Commutative Algebra +1502.06206 Phenomenology +1502.06449 Methodology +1503.00494 Combinatorics +1503.03054 Solar and Stellar Astrophysics +1503.03376 Combinatorics +1503.08536 Quantum Algebra +1503.08578 Theory +1504.01039 Distributed, Parallel, and Cluster Computing +1504.01829 Combinatorics +1504.03532 Theory +1504.04191 Theory +1504.05024 Quantum Gases +1504.07887 Algebraic Geometry +1504.08025 Learning +1505.00032 +1505.00131 Theory +1505.00202 Methodology +1505.01218 Materials Science +1505.01236 High Energy Astrophysical Phenomena +1505.03630 Experiment +1505.04395 Probability +1505.05090 Cryptography and Security +1505.05561 Machine Learning +1505.06146 Computational Complexity +1505.06244 +1505.07335 Molecular Networks +1505.07663 Atomic Physics +1506.02388 +1506.02476 +1506.03174 Geometric Topology +1506.04390 Theory +1506.05242 Numerical Analysis +1506.05582 Theory +1506.08503 Cryptography and Security +1506.08505 Distributed, Parallel, and Cluster Computing +1506.08506 Databases +1506.08590 Representation Theory +1507.00555 Geometric Topology +1507.00558 +1507.01239 Learning +1507.02357 Distributed, Parallel, and Cluster Computing +1507.04127 Phenomenology +1507.05560 +1508.01308 Computer Vision and Pattern Recognition +1508.01916 Quantitative Methods +1508.01983 Computer Vision and Pattern Recognition +1508.02048 +1508.02137 +1508.03027 Phenomenology +1508.03310 Group Theory +1508.04178 Methodology +1508.04267 High Energy Astrophysical Phenomena +1508.05569 Theory +1508.07076 Systems and Control +1508.07449 Rings and Algebras +1508.07667 Mesoscale and Nanoscale Physics +1509.00528 Number Theory +1509.00784 Strongly Correlated Electrons +1509.01098 Experiment +1509.01790 Complex Variables +1509.02275 Logic +1509.02977 Phenomenology +1509.04059 Functional Analysis +1509.04323 Number Theory +1509.05126 Phenomenology +1509.05489 Instrumentation and Methods for Astrophysics +1509.05832 Fluid Dynamics +1509.06730 Theory +1509.07816 Cosmology and Nongalactic Astrophysics +1509.07964 Analysis of PDEs +1509.08056 Artificial Intelligence +1510.00212 Theory +1510.02183 Probability +1510.03701 +1510.03884 Theory +1510.04576 +1510.04634 Strongly Correlated Electrons +1510.06706 Neural and Evolutionary Computing +1510.07237 Theory +1510.08569 Chaotic Dynamics +1510.09152 High Energy Astrophysical Phenomena +1511.01635 Optimization and Control +1511.03696 Astrophysics of Galaxies +1511.03880 Soft Condensed Matter +1511.03987 Plasma Physics +1511.04135 Quantum Algebra +1511.04188 Analysis of PDEs +1511.04897 Cryptography and Security +1511.05056 Applications +1511.05665 Optimization and Control +1511.05922 Quantum Gases +1511.06540 Statistics Theory +1511.06955 History and Philosophy of Physics +1511.07760 Mesoscale and Nanoscale Physics +1511.08328 Statistical Mechanics +1511.08677 Statistics Theory +1511.08999 Logic in Computer Science +1511.09239 Optics +1512.00014 High Energy Astrophysical Phenomena +1512.00400 Astrophysics of Galaxies +1512.01334 Theory +1512.01663 Complex Variables +1512.02422 +1512.02530 Theory +1512.02857 Statistics Theory +1512.03207 Programming Languages +1512.04000 +1512.04280 Computation and Language +1512.04355 Mesoscale and Nanoscale Physics +1512.05104 History and Overview +1512.05611 Phenomenology +1512.06179 Superconductivity +1512.06484 Theory +1512.06529 Analysis of PDEs +1512.06571 Disordered Systems and Neural Networks +1512.07364 Cosmology and Nongalactic Astrophysics +1512.08419 Information Theory +1512.09119 Theory +1512.09163 Human-Computer Interaction +1512.09178 Populations and Evolution +1601.00563 +1601.00996 Mesoscale and Nanoscale Physics +1601.01403 Phenomenology +1601.01561 Numerical Analysis +1601.02075 Systems and Control +1601.02096 Differential Geometry +1601.02426 High Energy Astrophysical Phenomena +1601.02901 Accelerator Physics +1601.05218 Information Theory +1601.05290 Analysis of PDEs +1601.07140 Computer Vision and Pattern Recognition +1601.07217 High Energy Astrophysical Phenomena +1601.07255 Computer Vision and Pattern Recognition +1601.07719 Plasma Physics +1602.00171 Materials Science +1602.00402 Instrumentation and Methods for Astrophysics +1602.00694 Mesoscale and Nanoscale Physics +1602.01304 Symbolic Computation +1602.01956 Data Structures and Algorithms +1602.01979 +1602.01994 Phenomenology +1602.02426 Social and Information Networks +1602.02691 Statistical Mechanics +1602.03840 +1602.04062 Optimization and Control +1602.04256 Databases +1602.04662 Mathematical Finance +1602.05504 Category Theory +1602.06226 Algebraic Geometry +1602.06238 Neurons and Cognition +1602.06786 Theory +1602.07657 Materials Science +1602.08219 Complex Variables +1602.08315 Analysis of PDEs +1602.08319 Analysis of PDEs +1602.08653 Discrete Mathematics +1602.08861 Applications +1602.09032 Algebraic Geometry +1603.00156 Statistical Mechanics +1603.00223 Computation and Language +1603.00519 Atomic and Molecular Clusters +1603.00849 +1603.01756 Phenomenology +1603.01977 Computational Complexity +1603.01995 Theory +1603.02075 Optimization and Control +1603.02212 Probability +1603.04783 Biological Physics +1603.04988 Astrophysics of Galaxies +1603.05126 Dynamical Systems +1603.06310 Theory +1603.06430 Learning +1603.06582 High Energy Astrophysical Phenomena +1603.06637 Lattice +1603.07508 +1603.07795 Theory +1603.08117 Theory +1603.08787 Soft Condensed Matter +1603.09229 Phenomenology +1603.09249 +1603.09708 Astrophysics of Galaxies +1604.01892 Mesoscale and Nanoscale Physics +1604.02108 Instrumentation and Methods for Astrophysics +1604.02590 Materials Science +1604.02906 Discrete Mathematics +1604.03285 Phenomenology +1604.03628 Computer Vision and Pattern Recognition +1604.03673 +1604.04013 Performance +1604.04510 Theory +1604.04653 Computer Vision and Pattern Recognition +1604.04773 Solar and Stellar Astrophysics +1604.04857 Theory +1604.05423 Solar and Stellar Astrophysics +1604.05592 Computer Vision and Pattern Recognition +1604.05851 Strongly Correlated Electrons +1604.06776 History and Philosophy of Physics +1604.06920 +1604.07063 Computational Complexity +1604.07380 Representation Theory +1604.07666 Computer Vision and Pattern Recognition +1604.07683 Algebraic Geometry +1604.08072 Phenomenology +1604.08191 Computer Science and Game Theory +1604.08572 Classical Physics +1605.00730 Probability +1605.01532 Phenomenology +1605.01553 Astrophysics of Galaxies +1605.02611 Chemical Physics +1605.02621 Statistics Theory +1605.03378 Methodology +1605.03759 +1605.04045 Materials Science +1605.04184 Information Theory +1605.04515 Computation and Language +1605.05134 Social and Information Networks +1605.05150 Computation and Language +1605.05156 Computation and Language +1605.05166 Social and Information Networks +1605.05655 +1605.05853 Subcellular Processes +1605.06550 Phenomenology +1605.06896 Analysis of PDEs +1605.07773 Combinatorics +1605.08228 Neurons and Cognition +1605.08415 Disordered Systems and Neural Networks +1605.09044 Number Theory +1606.00082 +1606.00715 Social and Information Networks +1606.00861 Symplectic Geometry +1606.02636 Mesoscale and Nanoscale Physics +1606.02756 Phenomenology +1606.02878 Computers and Society +1606.02911 Computers and Society +1606.02953 General Physics +1606.03163 +1606.03415 Phenomenology +1606.03610 Soft Condensed Matter +1606.03789 Number Theory +1606.03895 Functional Analysis +1606.04074 Hardware Architecture +1606.04097 +1606.04117 Quantum Gases +1606.04137 Combinatorics +1606.04294 Classical Analysis and ODEs +1606.04340 Optics +1606.04438 Fluid Dynamics +1606.04498 +1606.04611 Number Theory +1606.04787 Dynamical Systems +1606.04942 Astrophysics of Galaxies +1606.05176 Quantum Gases +1606.05328 Computer Vision and Pattern Recognition +1606.05330 Logic +1606.05424 Quantum Algebra +1606.05596 Machine Learning +1606.05658 Applications +1606.05660 Formal Languages and Automata Theory +1606.05663 Mesoscale and Nanoscale Physics +1606.05666 Other Computer Science +1606.05668 Analysis of PDEs +1606.05672 Machine Learning +1606.05675 Computer Vision and Pattern Recognition +1606.05681 Computer Vision and Pattern Recognition +1606.05684 Soft Condensed Matter +1606.05687 Statistics Theory +1606.05688 Distributed, Parallel, and Cluster Computing +1606.05689 Data Structures and Algorithms +1606.05690 Computers and Society +1606.05691 Computer Science and Game Theory +1606.05693 Machine Learning +1606.05694 Computation and Language +1606.05697 Phenomenology +1606.05698 Instrumentation and Detectors +1606.05699 Computation and Language +1606.05700 Probability +1606.05701 Logic +1606.05702 Computation and Language +1606.05704 Computation and Language +1606.05705 Information Retrieval +1606.05706 Computation and Language +1606.05708 Databases +1606.05709 Differential Geometry +1606.05711 Optics +1606.05712 Superconductivity +1606.05714 Earth and Planetary Astrophysics +1606.05717 +1606.05718 Quantitative Methods +1606.05720 Information Theory +1606.05722 Number Theory +1606.05725 Learning +1606.05727 Materials Science +1606.05729 Robotics +1606.05730 Social and Information Networks +1606.05731 Soft Condensed Matter +1606.05732 Data Structures and Algorithms +1606.05733 Mesoscale and Nanoscale Physics +1606.05736 Functional Analysis +1606.05739 Instrumentation and Detectors +1606.05740 Medical Physics +1606.05742 Fluid Dynamics +1606.05744 Analysis of PDEs +1606.05746 Software Engineering +1606.05749 Networking and Internet Architecture +1606.05750 Logic +1606.05751 Solar and Stellar Astrophysics +1606.05752 Digital Libraries +1606.05753 Computers and Society +1606.05756 Materials Science +1606.05757 Dynamical Systems +1606.05759 Computation and Language +1606.05761 Differential Geometry +1606.05763 Computer Vision and Pattern Recognition +1606.05768 Networking and Internet Architecture +1606.05771 Methodology +1606.05773 Instrumentation and Detectors +1606.05774 Differential Geometry +1606.05778 Applications +1606.05779 Number Theory +1606.05781 Databases +1606.05783 Soft Condensed Matter +1606.05785 Computer Vision and Pattern Recognition +1606.05786 Physics and Society +1606.05787 Databases +1606.05788 Instrumentation and Detectors +1606.05789 Materials Science +1606.05792 Probability +1606.05793 Atmospheric and Oceanic Physics +1606.05798 Machine Learning +1606.05801 Numerical Analysis +1606.05803 Optimization and Control +1606.05806 Systems and Control +1606.05807 Group Theory +1606.05809 Information Theory +1606.05814 Computer Vision and Pattern Recognition +1606.05816 Probability +1606.05817 +1606.05819 Machine Learning +1606.05820 Logic in Computer Science +1606.05829 Computation and Language +1606.05832 Computers and Society +1606.05833 History and Overview +1606.05834 Optimization and Control +1606.05836 +1606.05837 Multiagent Systems +1606.05839 Programming Languages +1606.05842 Instrumentation and Detectors +1606.05844 Sound +1606.05845 Analysis of PDEs +1606.05848 Optimization and Control +1606.05857 Probability +1606.05859 Information Retrieval +1606.05861 Optimization and Control +1606.05862 Accelerator Physics +1606.05866 +1606.05868 Analysis of PDEs +1606.05871 Complex Variables +1606.05875 Other Computer Science +1606.05876 Geometric Topology +1606.05877 Mathematical Finance +1606.05878 Optimization and Control +1606.05884 Symplectic Geometry +1606.05886 Differential Geometry +1606.05887 Networking and Internet Architecture +1606.05889 Machine Learning +1606.05891 Commutative Algebra +1606.05893 Social and Information Networks +1606.05894 +1606.05895 Spectral Theory +1606.05896 Machine Learning +1606.05897 Computer Vision and Pattern Recognition +1606.05899 Earth and Planetary Astrophysics +1606.05900 Applications +1606.05902 Differential Geometry +1606.05903 Emerging Technologies +1606.05904 Information Theory +1606.05906 Complex Variables +1606.05910 Data Structures and Algorithms +1606.05911 Dynamical Systems +1606.05915 Cryptography and Security +1606.05916 Algebraic Topology +1606.05917 Computer Science and Game Theory +1606.05918 Learning +1606.05920 Complex Variables +1606.05923 Combinatorics +1606.05924 Optimization and Control +1606.05925 Machine Learning +1606.05926 Software Engineering +1606.05927 Neural and Evolutionary Computing +1606.05931 Information Theory +1606.05932 Algebraic Geometry +1606.05933 Hardware Architecture +1606.05934 Learning +1606.05936 Logic in Computer Science +1606.05937 Distributed, Parallel, and Cluster Computing +1606.05938 Logic in Computer Science +1606.05939 Programming Languages +1606.05940 Programming Languages +1606.05941 Logic in Computer Science +1606.05942 Logic in Computer Science +1606.05943 Programming Languages +1606.05944 Programming Languages +1606.05945 Logic in Computer Science +1606.05946 Logic in Computer Science +1606.05947 Logic in Computer Science +1606.05948 Logic in Computer Science +1606.05951 Phenomenology +1606.05954 Information Theory +1606.05958 Number Theory +1606.05962 Distributed, Parallel, and Cluster Computing +1606.05963 Distributed, Parallel, and Cluster Computing +1606.05964 Functional Analysis +1606.05966 Geometric Topology +1606.05967 Computation and Language +1606.05970 General Mathematics +1606.05971 Number Theory +1606.05973 Data Structures and Algorithms +1606.05978 Information Retrieval +1606.05979 Optimization and Control +1606.05980 Systems and Control +1606.05982 Information Theory +1606.05985 +1606.05987 Optimization and Control +1606.05988 Methodology +1606.05989 Discrete Mathematics +1606.05990 Neural and Evolutionary Computing +1606.05991 Software Engineering +1606.05993 Spectral Theory +1606.05997 Theory +1606.05998 Probability +1606.06000 +1606.06007 Computer Vision and Pattern Recognition +1606.06011 Combinatorics +1606.06012 Probability +1606.06014 Optimization and Control +1606.06023 Soft Condensed Matter +1606.06024 Mesoscale and Nanoscale Physics +1606.06025 Distributed, Parallel, and Cluster Computing +1606.06026 Exactly Solvable and Integrable Systems +1606.06031 Computation and Language +1606.06033 Statistics Theory +1606.06035 Numerical Analysis +1606.06036 Emerging Technologies +1606.06037 Phenomenology +1606.06039 Information Theory +1606.06041 Artificial Intelligence +1606.06043 Probability +1606.06044 Astrophysics of Galaxies +1606.06045 Probability +1606.06047 Cryptography and Security +1606.06048 Accelerator Physics +1606.06049 Soft Condensed Matter +1606.06051 General Finance +1606.06052 Algebraic Geometry +1606.06053 Optics +1606.06056 Systems and Control +1606.06060 Analysis of PDEs +1606.06062 Disordered Systems and Neural Networks +1606.06064 Number Theory +1606.06066 Databases +1606.06067 Geometric Topology +1606.06069 Learning +1606.06070 +1606.06075 Materials Science +1606.06078 Dynamical Systems +1606.06079 General Mathematics +1606.06081 Information Retrieval +1606.06085 Algebraic Topology +1606.06086 Computation and Language +1606.06087 Accelerator Physics +1606.06088 Accelerator Physics +1606.06089 Analysis of PDEs +1606.06094 Instrumentation and Methods for Astrophysics +1606.06095 Chemical Physics +1606.06098 +1606.06102 General Topology +1606.06104 Robotics +1606.06106 +1606.06108 Computer Vision and Pattern Recognition +1606.06111 Statistical Finance +1606.06112 Cosmology and Nongalactic Astrophysics +1606.06114 Combinatorics +1606.06115 Physics and Society +1606.06116 Physics and Society +1606.06117 Computational Physics +1606.06119 Dynamical Systems +1606.06121 Computation and Language +1606.06122 Number Theory +1606.06123 Emerging Technologies +1606.06127 Computer Vision and Pattern Recognition +1606.06128 Complex Variables +1606.06129 Computers and Society +1606.06130 Methodology +1606.06131 +1606.06133 Distributed, Parallel, and Cluster Computing +1606.06136 Computers and Society +1606.06137 Information Retrieval +1606.06138 Differential Geometry +1606.06140 Social and Information Networks +1606.06141 Theory +1606.06143 Computational Finance +1606.06146 Populations and Evolution +1606.06149 Classical Analysis and ODEs +1606.06150 +1606.06152 Multimedia +1606.06153 Atomic Physics +1606.06154 Computational Engineering, Finance, and Science +1606.06155 Classical Analysis and ODEs +1606.06158 Functional Analysis +1606.06162 Physics and Society +1606.06163 +1606.06170 +1606.06173 Number Theory +1606.06177 Computers and Society +1606.06180 +1606.06187 Materials Science +1606.06190 Functional Analysis +1606.06192 Materials Science +1606.06195 Materials Science +1606.06201 Optimization and Control +1606.06209 Phenomenology +1606.06210 K-Theory and Homology +1606.06213 Analysis of PDEs +1606.06217 Mesoscale and Nanoscale Physics +1606.06223 Information Theory +1606.06224 Systems and Control +1606.06228 Combinatorics +1606.06234 Learning +1606.06236 Solar and Stellar Astrophysics +1606.06243 Earth and Planetary Astrophysics +1606.06249 Quantitative Methods +1606.06250 Learning +1606.06251 Probability +1606.06253 Dynamical Systems +1606.06254 +1606.06256 Optimization and Control +1606.06257 Networking and Internet Architecture +1606.06258 Sound +1606.06261 Analysis of PDEs +1606.06262 Chemical Physics +1606.06263 Combinatorics +1606.06265 Combinatorics +1606.06266 Computer Vision and Pattern Recognition +1606.06268 Cosmology and Nongalactic Astrophysics +1606.06273 Cosmology and Nongalactic Astrophysics +1606.06274 Computation and Language +1606.06275 Combinatorics +1606.06279 Computers and Society +cond-mat/9911333 Mesoscale and Nanoscale Physics +cs/0404030 Artificial Intelligence +0807.1793 General Mathematics +0906.2994 Representation Theory +0908.2516 Combinatorics +0911.4494 Algebraic Geometry +1006.0732 Classical Analysis and ODEs +1009.0146 Number Theory +1010.4691 Probability +1102.2065 Combinatorics +1103.5259 Probability +1110.1533 Complex Variables +1110.3290 General Physics +1203.3991 +1209.4150 Probability +1301.1180 Probability +1303.6539 General Physics +1304.5547 Functional Analysis +1307.5220 +1308.2927 Statistics Theory +1308.5429 Cosmology and Nongalactic Astrophysics +1308.5936 Differential Geometry +1309.3873 Probability +1310.8240 Statistics Theory +1311.0021 Probability +1311.1067 Statistics Theory +1311.3118 Statistics Theory +1312.0623 +1312.6418 Number Theory +1312.7390 Probability +1401.8104 Statistics Theory +1402.7243 Numerical Analysis +1403.7447 Complex Variables +1404.2822 Probability +1404.4747 Statistical Mechanics +1405.5491 Group Theory +1406.0416 Neural and Evolutionary Computing +1407.6870 Combinatorics +1408.0938 Statistics Theory +1409.4604 Rings and Algebras +1409.8491 Statistics Theory +1410.3330 Biological Physics +1411.1512 Rings and Algebras +1411.3058 Algebraic Geometry +1411.3575 Information Theory +1412.1716 Methodology +1412.3985 Operator Algebras +1412.6465 +1501.00448 Quantum Gases +1501.05255 K-Theory and Homology +1501.06002 Optics +1501.06874 Analysis of PDEs +1502.00169 Combinatorics +1502.01815 Networking and Internet Architecture +1502.04633 Combinatorics +1502.07061 Statistics Theory +1502.07596 Instrumentation and Methods for Astrophysics +1503.00051 Biological Physics +1503.05347 Algebraic Topology +1505.00374 Strongly Correlated Electrons +1505.01879 +1505.02492 Populations and Evolution +1505.02565 +1505.02602 Soft Condensed Matter +1505.05821 Information Retrieval +1505.07763 Functional Analysis +1506.02741 +1506.05451 Functional Analysis +1506.06150 Cosmology and Nongalactic Astrophysics +1506.07152 Systems and Control +1506.08190 Superconductivity +1506.08514 Probability +1506.08709 Materials Science +1507.00186 Quantum Gases +1507.00203 Soft Condensed Matter +1507.00240 +1507.03239 Pattern Formation and Solitons +1507.04791 Plasma Physics +1507.04847 Mesoscale and Nanoscale Physics +1507.06517 Applications +1507.06574 Mesoscale and Nanoscale Physics +1507.08725 Strongly Correlated Electrons +1508.00284 Operator Algebras +1508.00795 Soft Condensed Matter +1508.03078 Strongly Correlated Electrons +1508.05729 Strongly Correlated Electrons +1508.06050 Strongly Correlated Electrons +1509.00743 Mesoscale and Nanoscale Physics +1509.02023 Computer Science and Game Theory +1509.03748 Algebraic Topology +1509.04438 Neural and Evolutionary Computing +1509.06542 Systems and Control +1509.06846 +1509.08059 Experiment +1509.08398 Methodology +1510.01037 Atomic Physics +1510.03202 Dynamical Systems +1510.07264 Differential Geometry +1510.07424 Multiagent Systems +1510.07499 Computational Geometry +1510.09137 Phenomenology +1511.00781 Information Theory +1511.01233 Analysis of PDEs +1511.01836 Theory +1511.02102 Soft Condensed Matter +1511.02440 Mesoscale and Nanoscale Physics +1511.02545 Populations and Evolution +1511.06435 Learning +1511.07585 Optimization and Control +1511.07637 Information Theory +1511.08398 Atomic Physics +1511.08886 Computer Vision and Pattern Recognition +1511.08897 Number Theory +1512.00021 Theory +1512.00324 Strongly Correlated Electrons +1512.00340 Solar and Stellar Astrophysics +1512.02488 Statistical Mechanics +1512.04607 Theory +1512.05099 Experiment +1512.05224 Strongly Correlated Electrons +1512.06670 Phenomenology +1512.07395 Accelerator Physics +1512.07703 Cosmology and Nongalactic Astrophysics +1512.08356 Theory +1601.00676 Theory +1601.02014 Formal Languages and Automata Theory +1601.04866 Algebraic Geometry +1601.05037 Experiment +1601.05537 Other Condensed Matter +1601.05885 Atomic Physics +1601.06479 Superconductivity +1601.07299 Algebraic Geometry +1602.01423 Analysis of PDEs +1602.01829 Phenomenology +1602.02927 Astrophysics of Galaxies +1602.04047 +1602.05341 Materials Science +1602.05840 Materials Science +1602.06942 +1602.07070 Astrophysics of Galaxies +1602.07273 Systems and Control +1602.07444 Mesoscale and Nanoscale Physics +1602.07778 Solar and Stellar Astrophysics +1602.07850 Classical Analysis and ODEs +1602.07856 Soft Condensed Matter +1602.08074 Soft Condensed Matter +1602.08540 Information Theory +1602.08541 Cosmology and Nongalactic Astrophysics +1602.08768 Geometric Topology +1603.01402 Solar and Stellar Astrophysics +1603.01533 Optimization and Control +1603.02126 Instrumentation and Methods for Astrophysics +1603.02470 Astrophysics of Galaxies +1603.02841 Combinatorics +1603.03233 Mesoscale and Nanoscale Physics +1603.03526 Combinatorics +1603.03964 +1603.04114 Differential Geometry +1603.04141 Chemical Physics +1603.04394 Computer Science and Game Theory +1603.04434 Number Theory +1603.05195 Theory +1603.05313 Trading and Market Microstructure +1603.07691 Theory +1603.07899 Distributed, Parallel, and Cluster Computing +1603.08091 Digital Libraries +1603.08479 Number Theory +1603.08491 Networking and Internet Architecture +1603.08539 Classical Analysis and ODEs +1603.08665 +1603.08707 +1603.08916 General Mathematics +1603.08918 Space Physics +1603.08924 Cosmology and Nongalactic Astrophysics +1603.08937 Differential Geometry +1603.08946 Phenomenology +1603.08948 +1603.08956 Solar and Stellar Astrophysics +1603.08957 Cosmology and Nongalactic Astrophysics +1603.08959 Popular Physics +1603.08962 +1603.08964 Probability +1603.08965 Analysis of PDEs +1603.08966 General Physics +1603.08968 Computer Vision and Pattern Recognition +1603.08969 Applications +1603.08970 Numerical Analysis +1603.08978 Networking and Internet Architecture +1603.08979 Functional Analysis +1603.08982 Applications +1603.08984 Graphics +1603.08987 Information Theory +1603.08988 Artificial Intelligence +1603.08989 Optimization and Control +1603.08990 Phenomenology +1603.08995 Systems and Control +1603.08996 Computers and Society +1603.08997 Computational Complexity +1603.09001 Probability +1603.09002 Neural and Evolutionary Computing +1603.09005 Computation +1603.09007 Physics Education +1603.09009 Data Structures and Algorithms +1603.09011 Quantum Gases +1603.09012 Multimedia +1603.09013 Combinatorics +1603.09014 Optimization and Control +1603.09015 Materials Science +1603.09022 Systems and Control +1603.09027 Computer Vision and Pattern Recognition +1603.09028 Spectral Theory +1603.09029 Artificial Intelligence +1603.09031 Phenomenology +1603.09034 Mesoscale and Nanoscale Physics +1603.09035 Learning +1603.09036 Materials Science +1603.09037 Computer Vision and Pattern Recognition +1603.09038 Rings and Algebras +1603.09039 Geometric Topology +1603.09041 Geometric Topology +1603.09042 Logic +1603.09044 Operator Algebras +1603.09046 Computer Vision and Pattern Recognition +1603.09050 Learning +1603.09052 Information Theory +1603.09054 Computation and Language +1603.09055 Logic in Computer Science +1603.09058 Solar and Stellar Astrophysics +1603.09059 Statistics Theory +1603.09061 Mesoscale and Nanoscale Physics +1603.09062 Hardware Architecture +1603.09063 Theory +1603.09065 Computer Vision and Pattern Recognition +1603.09066 Phenomenology +1603.09068 Quantum Algebra +1603.09069 Strongly Correlated Electrons +1603.09070 Combinatorics +1603.09075 Space Physics +1603.09077 Probability +1603.09079 Dynamical Systems +1603.09080 Algebraic Geometry +1603.09081 +1603.09084 +1603.09087 +1603.09089 Optimization and Control +1603.09090 Cryptography and Security +1603.09092 Probability +1603.09093 Instrumentation and Detectors +1603.09094 Probability +1603.09096 Earth and Planetary Astrophysics +1603.09099 Complex Variables +1603.09100 Materials Science +1603.09101 Number Theory +1603.09102 Cosmology and Nongalactic Astrophysics +1603.09103 Combinatorics +1603.09104 Fluid Dynamics +1603.09110 Geometric Topology +1603.09111 Digital Libraries +1603.09113 Differential Geometry +1603.09125 Algebraic Topology +1603.09128 Computation and Language +1603.09129 Computer Vision and Pattern Recognition +1603.09130 Statistics Theory +1603.09131 Differential Geometry +1603.09132 Metric Geometry +1603.09135 Differential Geometry +1603.09138 Statistics Theory +1603.09139 Materials Science +1603.09143 Superconductivity +1603.09144 Statistics Theory +1603.09145 Statistics Theory +1603.09152 Phenomenology +1603.09153 Networking and Internet Architecture +1603.09158 Networking and Internet Architecture +1603.09163 Geometric Topology +1603.09164 Social and Information Networks +1603.09165 Operator Algebras +1603.09168 Algebraic Geometry +1603.09169 Information Theory +1603.09171 +1603.09173 Optimization and Control +1603.09176 Distributed, Parallel, and Cluster Computing +1603.09180 Distributed, Parallel, and Cluster Computing +1603.09181 Algebraic Topology +1603.09187 Combinatorics +1603.09188 Computation and Language +1603.09189 Analysis of PDEs +1603.09191 Algebraic Geometry +1603.09192 Quantum Algebra +1603.09194 Artificial Intelligence +1603.09195 Genomics +1603.09196 Logic +1603.09198 Theory +1603.09201 Mesoscale and Nanoscale Physics +1603.09205 Discrete Mathematics +1603.09208 Applications +1603.09209 Differential Geometry +1603.09212 Biological Physics +1603.09213 Algebraic Geometry +1603.09215 Mesoscale and Nanoscale Physics +1603.09218 Representation Theory +1603.09220 Analysis of PDEs +1603.09221 Geophysics +1603.09224 Classical Analysis and ODEs +1603.09231 Numerical Analysis +1603.09232 Combinatorics +1603.09233 Learning +1603.09235 Algebraic Geometry +1603.09237 Phenomenology +1603.09238 Complex Variables +1603.09247 +1603.09252 Analysis of PDEs +1603.09254 Machine Learning +1603.09255 Quantitative Methods +1603.09256 Superconductivity +1603.09258 Systems and Control +1603.09259 Differential Geometry +1603.09262 Algebraic Geometry +1603.09264 Theory +1603.09266 Category Theory +1603.09267 Algebraic Geometry +1603.09269 Differential Geometry +1603.09270 Cosmology and Nongalactic Astrophysics +1603.09271 History and Philosophy of Physics +1603.09273 Optimization and Control +1603.09276 High Energy Astrophysical Phenomena +1603.09277 Atomic Physics +1603.09281 Combinatorics +1603.09284 Algebraic Geometry +1603.09285 Metric Geometry +1603.09286 Logic in Computer Science +1603.09288 Group Theory +1603.09290 Programming Languages +1603.09292 Analysis of PDEs +1603.09293 Chemical Physics +1603.09297 Applications +1603.09304 Dynamical Systems +1603.09305 Algebraic Topology +1603.09309 Dynamical Systems +1603.09311 Geophysics +1603.09313 Physics and Society +1603.09314 +1603.09316 Optics +1603.09321 Materials Science +1603.09329 Probability +gr-qc/0312049 +physics/0604204 Classical Physics +0910.2755 +1106.0425 Rings and Algebras +1109.6109 Theory +1111.3555 Atomic Physics +1210.2542 Number Theory +1301.7116 History and Overview +1302.6116 Differential Geometry +1303.6632 Phenomenology +1305.6061 Optimization and Control +1312.2110 Astrophysics of Galaxies +1402.3007 +1404.0298 Information Theory +1404.4076 +1405.6118 Theory +1406.2510 Rings and Algebras +1406.3898 +1406.5956 Algebraic Geometry +1407.0581 Machine Learning +1408.3464 Probability +1409.5616 Learning +1410.4958 Mesoscale and Nanoscale Physics +1410.7497 Rings and Algebras +1411.4240 Functional Analysis +1412.3213 Analysis of PDEs +1412.5098 Representation Theory +1412.5654 Algebraic Geometry +1412.6085 Combinatorics +1501.00166 Cryptography and Security +1501.04615 Probability +1501.06479 Distributed, Parallel, and Cluster Computing +1501.06929 Machine Learning +1501.07071 +1502.00797 Computers and Society +1502.02086 Optics +1503.00184 Networking and Internet Architecture +1503.00194 +1503.01648 Probability +1503.02114 +1503.05228 Analysis of PDEs +1503.05914 Physics and Society +1504.04834 Astrophysics of Galaxies +1504.05391 Solar and Stellar Astrophysics +1505.00767 Combinatorics +1505.04912 Theory +1505.05971 Phenomenology +1505.06156 Mesoscale and Nanoscale Physics +1505.06520 Experiment +1506.01145 Differential Geometry +1506.02247 Computer Vision and Pattern Recognition +1506.02285 Numerical Analysis +1506.02474 Functional Analysis +1506.04972 Optimization and Control +1506.05217 Cryptography and Security +1506.08423 Analysis of PDEs +1507.02470 Experiment +1507.03119 Experiment +1507.03743 Materials Science +1507.04881 Computational Physics +1507.05727 Pattern Formation and Solitons +1507.06384 Materials Science +1507.06571 Fluid Dynamics +1507.07752 Algebraic Topology +1508.01429 +1508.03176 Experiment +1508.05396 Phenomenology +1508.07806 +1509.01851 Learning +1509.03114 Chemical Physics +1509.03139 Statistical Mechanics +1509.03353 Information Theory +1509.03780 Differential Geometry +1509.06187 +1509.08448 Theory +1510.00325 Analysis of PDEs +1510.01438 Mesoscale and Nanoscale Physics +1510.01459 Probability +1510.01508 Phenomenology +1510.04279 Other Condensed Matter +1510.05845 Phenomenology +1510.06609 Instrumentation and Methods for Astrophysics +1510.07253 Logic in Computer Science +1510.08568 Neural and Evolutionary Computing +1511.00288 +1511.02612 Data Structures and Algorithms +1511.02947 Chemical Physics +1511.03335 +1511.03808 Analysis of PDEs +1511.05044 Quantum Gases +1511.05626 Atomic and Molecular Clusters +1511.08070 Number Theory +1511.09161 Theory +1512.00022 Phenomenology +1512.00097 Algebraic Geometry +1512.00304 +1512.01147 Analysis of PDEs +1512.02933 Superconductivity +1512.03171 Dynamical Systems +1512.03330 High Energy Astrophysical Phenomena +1512.03813 Phenomenology +1512.04296 Functional Analysis +1512.05152 Computational Geometry +1512.05236 Mesoscale and Nanoscale Physics +1512.06190 Probability +1512.06268 Astrophysics of Galaxies +1512.06921 Number Theory +1512.07038 Multiagent Systems +1512.07778 Computational Physics +1512.08243 Theory +1512.08256 Experiment +1512.08813 Instrumentation and Methods for Astrophysics +1601.00404 Number Theory +1601.03904 Phenomenology +1601.05333 Superconductivity +1602.00216 Machine Learning +1602.01765 Cosmology and Nongalactic Astrophysics +1602.02499 Machine Learning +1602.02801 Combinatorics +1602.03903 Computer Vision and Pattern Recognition +1602.04144 Mesoscale and Nanoscale Physics +1602.06688 Data Structures and Algorithms +1602.07172 Instrumentation and Detectors +1602.07818 Theory +1602.08962 +1603.02449 Differential Geometry +1603.02820 +1603.04973 Superconductivity +1603.06040 Functional Analysis +1603.06265 Learning +1603.06741 Instrumentation and Detectors +1603.06899 +1603.07532 Applications +1603.08423 Probability +1603.08442 Classical Analysis and ODEs +1603.08772 Superconductivity +1603.08998 Chemical Physics +1603.09327 Computational Physics +1603.09485 Dynamical Systems +1603.09686 +1604.00083 Logic +1604.00213 Theory +1604.00454 Information Theory +1604.00466 Computation and Language +1604.00645 Information Theory +1604.01292 Information Theory +1604.01569 Complex Variables +1604.01602 Machine Learning +1604.01649 Classical Analysis and ODEs +1604.01916 Statistical Mechanics +1604.01931 Computer Vision and Pattern Recognition +1604.01982 Chemical Physics +1604.02005 Human-Computer Interaction +1604.02038 Learning +1604.02140 +1604.02141 Phenomenology +1604.02142 Differential Geometry +1604.02152 Instrumentation and Methods for Astrophysics +1604.02153 Optimization and Control +1604.02155 Theory +1604.02158 Statistics Theory +1604.02159 Geometric Topology +1604.02165 Number Theory +1604.02166 Algebraic Geometry +1604.02170 Metric Geometry +1604.02171 Operating Systems +1604.02175 Physics and Society +1604.02177 Algebraic Topology +1604.02180 Networking and Internet Architecture +1604.02182 Computer Vision and Pattern Recognition +1604.02184 Optimization and Control +1604.02186 Earth and Planetary Astrophysics +1604.02187 Numerical Analysis +1604.02188 Data Structures and Algorithms +1604.02193 Genomics +1604.02195 Spectral Theory +1604.02201 Computation and Language +1604.02203 +1604.02208 Molecular Networks +1604.02210 +1604.02211 Superconductivity +1604.02212 Optimization and Control +1604.02215 Dynamical Systems +1604.02217 Commutative Algebra +1604.02223 Networking and Internet Architecture +1604.02228 Logic +1604.02229 Quantum Gases +1604.02231 Analysis of PDEs +1604.02232 Mesoscale and Nanoscale Physics +1604.02233 Genomics +1604.02234 Information Theory +1604.02237 Computational Finance +1604.02238 Discrete Mathematics +1604.02239 Analysis of PDEs +1604.02240 Optimization and Control +1604.02242 Combinatorics +1604.02243 Sound +1604.02244 Classical Analysis and ODEs +1604.02246 Instrumentation and Detectors +1604.02247 Atmospheric and Oceanic Physics +1604.02248 Atmospheric and Oceanic Physics +1604.02249 Optics +1604.02251 Fluid Dynamics +1604.02253 Networking and Internet Architecture +1604.02254 Instrumentation and Detectors +1604.02255 Instrumentation and Detectors +1604.02257 Computational Physics +1604.02258 Instrumentation and Detectors +1604.02262 Mesoscale and Nanoscale Physics +1604.02264 Learning +1604.02267 Numerical Analysis +1604.02268 Complex Variables +1604.02269 Mathematical Finance +1604.02274 Mathematical Finance +1604.02275 Computer Vision and Pattern Recognition +1604.02277 Cryptography and Security +1604.02278 Computational Complexity +1604.02281 +1604.02286 Instrumentation and Detectors +1604.02287 Human-Computer Interaction +1604.02288 Discrete Mathematics +1604.02291 Analysis of PDEs +1604.02292 Numerical Analysis +1604.02293 Functional Analysis +1604.02294 Probability +1604.02295 Probability +1604.02303 Discrete Mathematics +1604.02304 Differential Geometry +1604.02305 Number Theory +1604.02317 Combinatorics +1604.02320 Optics +1604.02322 Networking and Internet Architecture +1604.02323 Artificial Intelligence +1604.02325 Combinatorics +1604.02326 Chemical Physics +1604.02327 Combinatorics +1604.02330 General Physics +1604.02331 General Physics +1604.02332 General Physics +1604.02335 Methodology +1604.02339 Fluid Dynamics +1604.02342 Algebraic Geometry +1604.02343 Phenomenology +1604.02345 Fluid Dynamics +1604.02347 Information Theory +1604.02348 Algebraic Geometry +1604.02349 Commutative Algebra +1604.02352 Operator Algebras +1604.02354 Computer Vision and Pattern Recognition +1604.02355 Neural and Evolutionary Computing +1604.02356 Phenomenology +1604.02358 Computers and Society +1604.02359 +1604.02361 Number Theory +1604.02362 History and Philosophy of Physics +1604.02363 Digital Libraries +1604.02364 Computer Science and Game Theory +1604.02368 Cryptography and Security +1604.02369 Differential Geometry +1604.02370 General Finance +1604.02371 Phenomenology +1604.02375 +1604.02377 Databases +1604.02378 Quantum Algebra +1604.02380 Cryptography and Security +1604.02381 Algebraic Geometry +1604.02383 Fluid Dynamics +1604.02386 Logic in Computer Science +1604.02389 Algebraic Geometry +1604.02390 Statistics Theory +1604.02391 Solar and Stellar Astrophysics +1604.02392 Systems and Control +1604.02393 Solar and Stellar Astrophysics +1604.02395 Combinatorics +1604.02398 High Energy Astrophysical Phenomena +1604.02399 Genomics +1604.02402 Analysis of PDEs +1604.02403 Neurons and Cognition +1604.02404 Neurons and Cognition +1604.02405 Geometric Topology +1604.02406 Classical Physics +1604.02407 Analysis of PDEs +1604.02408 Soft Condensed Matter +1604.02417 Dynamical Systems +1604.02422 Algebraic Geometry +1604.02425 Analysis of PDEs +1604.02429 Mesoscale and Nanoscale Physics +1604.02430 Functional Analysis +1604.02431 High Energy Astrophysical Phenomena +1604.02434 Materials Science +1604.02436 Spectral Theory +1604.02437 Dynamical Systems +1604.02438 Materials Science +1604.02442 Information Theory +dg-ga/9503001 Differential Geometry +dg-ga/9505004 Differential Geometry +dg-ga/9707001 Differential Geometry +math-ph/0402030 +math-ph/0412004 +math-ph/0506003 +math-ph/9904007 +math-ph/9904008 +math-ph/9907007 +math/0211090 Logic +math/0608423 Representation Theory +math/9805040 Differential Geometry +1512.08042 Fluid Dynamics +0706.2553 Phenomenology +0708.2167 Phenomenology +0709.1576 Geometric Topology +0801.2422 +0805.1301 Statistics Theory +0806.2552 Chaotic Dynamics +0809.0786 Combinatorics +0906.4873 Commutative Algebra +0911.3517 Geometric Topology +0912.4450 Disordered Systems and Neural Networks +1001.2343 Dynamical Systems +1105.3164 Dynamical Systems +1106.0979 +1106.4165 Group Theory +1106.5968 Commutative Algebra +1107.3548 Dynamical Systems +1112.4824 Analysis of PDEs +1201.0190 Differential Geometry +1201.2591 Commutative Algebra +1202.4042 Algebraic Geometry +1202.6499 Strongly Correlated Electrons +1203.4252 Dynamical Systems +1204.1317 Probability +1204.6613 Analysis of PDEs +1206.0831 Analysis of PDEs +1207.5003 Dynamical Systems +1210.5399 +1210.6727 Analysis of PDEs +1211.4636 Probability +1212.3426 Commutative Algebra +1301.1998 Dynamical Systems +1301.4191 Theory +1301.7187 Neurons and Cognition +1302.4132 Dynamical Systems +1302.4391 Computational Engineering, Finance, and Science +1302.5571 Dynamical Systems +1303.4079 Algebraic Geometry +1303.4437 Representation Theory +1305.3449 +1305.4700 Combinatorics +1307.4029 Commutative Algebra +1308.5725 Probability +1310.4224 Statistical Mechanics +1311.2180 Dynamical Systems +1311.5407 Differential Geometry +1312.3651 Analysis of PDEs +1401.1637 Strongly Correlated Electrons +1401.4411 Strongly Correlated Electrons +1402.4736 Dynamical Systems +1402.6081 Computational Physics +1403.4016 Functional Analysis +1403.5535 Number Theory +1403.7805 Group Theory +1404.0995 Metric Geometry +1404.6785 Systems and Control +1405.6954 Analysis of PDEs +1405.7889 Quantum Algebra +1406.0327 Differential Geometry +1406.0421 Representation Theory +1406.3215 Metric Geometry +1406.6932 +1407.5124 Strongly Correlated Electrons +1407.5407 Software Engineering +1407.6963 +1407.7994 Representation Theory +1407.8048 Mesoscale and Nanoscale Physics +1408.5109 Molecular Networks +1408.5683 Operator Algebras +1408.6471 Probability +1409.2558 Optimization and Control +1409.4091 Dynamical Systems +1409.4918 +1410.6433 Data Structures and Algorithms +1410.7536 Pattern Formation and Solitons +1410.8627 Differential Geometry +1411.0483 Functional Analysis +1411.5818 Algebraic Geometry +1411.7729 Functional Analysis +1412.2404 Learning +1412.3828 +1412.4114 Differential Geometry +1501.04669 Analysis of PDEs +1502.00590 Rings and Algebras +1502.03229 Differential Geometry +1502.04046 Probability +1502.05324 Analysis of PDEs +1502.05533 Computational Complexity +1502.05553 Algebraic Geometry +1503.00133 +1503.02935 Systems and Control +1503.04355 +1503.05527 Theory +1503.06379 Information Theory +1503.08481 Optimization and Control +1503.08879 Phenomenology +1504.02407 Solar and Stellar Astrophysics +1504.05033 +1505.01708 Probability +1505.01909 Pattern Formation and Solitons +1505.02242 Quantum Gases +1505.02359 Differential Geometry +1505.02983 Discrete Mathematics +1505.05422 Dynamical Systems +1505.06125 Learning +1505.07496 Superconductivity +1506.02216 Learning +1506.03124 Medical Physics +1506.03680 Materials Science +1506.04831 +1506.06754 Strongly Correlated Electrons +1506.08449 Numerical Analysis +1507.01335 Cosmology and Nongalactic Astrophysics +1507.02223 Quantum Gases +1507.03267 Optics +1507.04808 Computation and Language +1507.05669 +1507.05956 Artificial Intelligence +1508.00173 Rings and Algebras +1508.01577 Computation and Language +1508.01705 Phenomenology +1508.03024 Astrophysics of Galaxies +1508.03959 Systems and Control +1508.05813 Commutative Algebra +1508.07621 Statistical Mechanics +1509.00515 +1509.01702 Number Theory +1509.01784 Instrumentation and Methods for Astrophysics +1509.03818 Optimization and Control +1509.05295 Mesoscale and Nanoscale Physics +1509.06222 Phenomenology +1509.06687 Algebraic Geometry +1509.08032 Mesoscale and Nanoscale Physics +1510.00041 Computation +1510.01490 Computer Vision and Pattern Recognition +1510.01845 Commutative Algebra +1510.02358 Computation and Language +1510.02824 Data Structures and Algorithms +1510.03820 Computation and Language +1510.05117 Combinatorics +1510.07554 Optics +1510.07844 Statistical Mechanics +1510.08472 Astrophysics of Galaxies +1510.08905 +1510.09199 Theory +1511.01702 +1511.01845 Biological Physics +1511.02252 Soft Condensed Matter +1511.02601 Materials Science +1511.02606 Materials Science +1511.02675 Superconductivity +1511.02809 Analysis of PDEs +1511.03178 Strongly Correlated Electrons +1511.03393 +1511.03653 Theory +1511.03683 Computation and Language +1511.04298 Combinatorics +1511.07763 Computer Vision and Pattern Recognition +1511.08769 Statistical Mechanics +1511.09214 +1511.09312 Materials Science +1511.09413 Information Theory +1512.01168 Combinatorics +1512.01652 Theory +1512.02787 Mesoscale and Nanoscale Physics +1512.03052 Theory +1512.03384 Computer Vision and Pattern Recognition +1512.05651 History and Philosophy of Physics +1512.05989 Plasma Physics +1512.06570 Materials Science +1512.07986 Mesoscale and Nanoscale Physics +1601.00039 Operator Algebras +1601.00134 Theory +1601.00188 +1601.03489 Probability +1601.04582 Atomic Physics +1601.06127 Disordered Systems and Neural Networks +1601.06272 Atmospheric and Oceanic Physics +1601.06468 Information Theory +1601.07098 Mesoscale and Nanoscale Physics +1601.07302 Mesoscale and Nanoscale Physics +1601.07364 Fluid Dynamics +1602.00354 Machine Learning +1602.00447 Data Structures and Algorithms +1602.00478 Populations and Evolution +1602.02686 Superconductivity +1602.04254 Algebraic Geometry +1602.05226 +1602.05834 Data Analysis, Statistics and Probability +1602.05892 Solar and Stellar Astrophysics +1602.05975 Multimedia +1602.06051 Geometric Topology +1602.06627 Computational Complexity +1602.08486 Neurons and Cognition +1603.01186 Solar and Stellar Astrophysics +1603.01360 Computation and Language +1603.01609 Dynamical Systems +1603.02294 Astrophysics of Galaxies +1603.04107 Probability +1603.04709 Dynamical Systems +1603.05227 Soft Condensed Matter +1603.05350 Computation and Language +1603.05443 Instrumentation and Methods for Astrophysics +1603.06932 Analysis of PDEs +1603.07484 Logic in Computer Science +1603.08458 Computation and Language +1603.08928 Earth and Planetary Astrophysics +1603.08972 Soft Condensed Matter +1603.08980 Algebraic Geometry +1603.09045 Machine Learning +1603.09458 Statistics Theory +1603.09535 Data Structures and Algorithms +1603.09702 Probability +1604.00111 Databases +1604.00615 +1604.00646 Astrophysics of Galaxies +1604.01155 Algebraic Geometry +1604.01349 Quantum Gases +1604.01472 Statistics Theory +1604.01560 Computational Complexity +1604.01589 Spectral Theory +1604.01662 Machine Learning +1604.01673 Logic in Computer Science +1604.01685 Computer Vision and Pattern Recognition +1604.01743 Functional Analysis +1604.01757 Group Theory +1604.01758 Operator Algebras +1604.01760 General Mathematics +1604.01762 General Mathematics +1604.01769 High Energy Astrophysical Phenomena +1604.01780 Superconductivity +1604.01785 Methodology +1604.01787 Computer Vision and Pattern Recognition +1604.01790 +1604.01791 Materials Science +1604.01793 +1604.01797 Human-Computer Interaction +1604.01798 +1604.01800 Optics +1604.01801 Optics +1604.01803 Fluid Dynamics +1604.01806 Learning +1604.01807 +1604.01810 Functional Analysis +1604.01812 Geometric Topology +1604.01815 Materials Science +1604.01816 Earth and Planetary Astrophysics +1604.01819 Economics +1604.01821 Materials Science +1604.01828 Systems and Control +1604.01830 Cosmology and Nongalactic Astrophysics +1604.01833 Social and Information Networks +1604.01836 Analysis of PDEs +1604.01839 Data Structures and Algorithms +1604.01840 Computers and Society +1604.01841 Computer Vision and Pattern Recognition +1604.01843 +1604.01844 Methodology +1604.01846 Information Theory +1604.01848 Databases +1604.01851 Networking and Internet Architecture +1604.01852 Classical Analysis and ODEs +1604.01853 Classical Analysis and ODEs +1604.01855 Classical Analysis and ODEs +1604.01857 Classical Analysis and ODEs +1604.01860 Numerical Analysis +1604.01862 Functional Analysis +1604.01865 Representation Theory +1604.01866 Optimization and Control +1604.01868 Geometric Topology +1604.01869 Geometric Topology +1604.01871 Statistics Theory +1604.01872 Functional Analysis +1604.01873 Mesoscale and Nanoscale Physics +1604.01874 Methodology +1604.01875 Strongly Correlated Electrons +1604.01877 Atmospheric and Oceanic Physics +1604.01878 Information Theory +1604.01882 Systems and Control +1604.01886 Phenomenology +1604.01887 Combinatorics +1604.01889 Computer Vision and Pattern Recognition +1604.01890 Performance +1604.01891 Computer Vision and Pattern Recognition +1604.01894 Computer Vision and Pattern Recognition +1604.01907 Algebraic Geometry +1604.01908 Optics +1604.01910 Numerical Analysis +1604.01911 Differential Geometry +1604.01913 Number Theory +1604.01915 +1604.01919 Methodology +1604.01922 Algebraic Topology +1604.01928 Systems and Control +1604.01929 Phenomenology +1604.01930 Cosmology and Nongalactic Astrophysics +1604.01934 Combinatorics +1604.01936 Algebraic Geometry +1604.01940 Superconductivity +1604.01941 +1604.01942 Formal Languages and Automata Theory +1604.01943 Neurons and Cognition +1604.01945 +1604.01946 Learning +1604.01950 Distributed, Parallel, and Cluster Computing +1604.01952 Learning +1604.01954 +1604.01955 Machine Learning +1604.01958 Symbolic Computation +1604.01960 +1604.01961 +1604.01966 Instrumentation and Methods for Astrophysics +1604.01968 Operator Algebras +1604.01969 Probability +1604.01970 Algebraic Geometry +1604.01971 Computer Science and Game Theory +1604.01974 General Physics +1604.01976 Geometric Topology +1604.01978 Probability +1604.01979 +1604.01981 Systems and Control +1604.01983 Statistics Theory +1604.01985 Human-Computer Interaction +1604.01992 Statistics Theory +1604.01993 Metric Geometry +1604.01996 Methodology +1604.01998 Algebraic Geometry +1604.02001 Phenomenology +1604.02006 Computers and Society +1604.02013 Graphics +1604.02014 Classical Analysis and ODEs +1604.02015 Operator Algebras +1604.02016 Representation Theory +1604.02018 Methodology +1604.02020 Materials Science +1604.02028 Computers and Society +1604.02030 Computer Vision and Pattern Recognition +1604.02032 Computer Vision and Pattern Recognition +1604.02035 Information Theory +1604.02036 Number Theory +1604.02039 Differential Geometry +1604.02044 Materials Science +1604.02047 Information Theory +1604.02048 Astrophysics of Galaxies +1604.02051 Applications +1604.02052 Soft Condensed Matter +1604.02058 Information Theory +1604.02062 Cosmology and Nongalactic Astrophysics +1604.02063 Quantum Algebra +1604.02068 Materials Science +1604.02071 Information Retrieval +1604.02080 Artificial Intelligence +1604.02081 Analysis of PDEs +1604.02083 Optimization and Control +1604.02099 Quantitative Methods +1604.02104 Number Theory +1604.02105 Combinatorics +1604.02106 Atmospheric and Oceanic Physics +1604.02107 Geometric Topology +1604.02111 Numerical Analysis +1604.02115 Computer Vision and Pattern Recognition +1604.02116 Materials Science +1604.02122 Robotics +1604.02126 Artificial Intelligence +1604.02128 Cryptography and Security +1604.02130 Statistics Theory +1604.02132 Differential Geometry +1604.02133 Artificial Intelligence +1604.02137 Optimization and Control +1604.02139 Strongly Correlated Electrons +dg-ga/9709022 Differential Geometry +dg-ga/9711004 Differential Geometry +dg-ga/9712005 Differential Geometry +math/0007190 Differential Geometry +math/0106238 Differential Geometry +math/0305442 Representation Theory +math/0609530 Differential Geometry +math/9809001 Differential Geometry +math/9812125 Differential Geometry +math/9903021 Differential Geometry +0707.1913 Digital Libraries +1001.2621 +1003.2934 Atmospheric and Oceanic Physics +1003.4542 Plasma Physics +1010.1233 Soft Condensed Matter +1010.2602 Cosmology and Nongalactic Astrophysics +1101.0692 +1104.3911 Information Theory +1105.0286 Information Theory +1105.5645 High Energy Astrophysical Phenomena +1107.2143 Numerical Analysis +1110.4050 Information Theory +1110.6469 Computational Physics +1112.3331 Strongly Correlated Electrons +1203.4870 Information Theory +1206.4822 Learning +1207.4393 Information Theory +1208.3449 Computational Physics +1209.0897 Applications +1209.4994 Numerical Analysis +1210.0056 Numerical Analysis +1212.0017 Databases +1212.4295 Fluid Dynamics +1212.6630 Astrophysics of Galaxies +1302.3076 Numerical Analysis +1302.5947 Commutative Algebra +1303.5785 Genomics +1304.1770 Differential Geometry +1304.5188 Analysis of PDEs +1305.1759 Numerical Analysis +1305.3676 Computational Physics +1306.5880 Dynamical Systems +1307.0319 Statistical Mechanics +1307.1938 Solar and Stellar Astrophysics +1308.0094 Information Theory +1308.2590 Plasma Physics +1308.3082 Fluid Dynamics +1308.4605 Numerical Analysis +1309.0560 +1309.1779 Computational Complexity +1310.4555 Numerical Analysis +1310.6005 Numerical Analysis +1311.2952 Probability +1311.3574 Dynamical Systems +1312.1145 Differential Geometry +1312.7508 Plasma Physics +1401.0442 Metric Geometry +1401.4223 Adaptation and Self-Organizing Systems +1403.6087 Differential Geometry +1404.0903 Dynamical Systems +1404.3403 Computational Geometry +1405.2415 Algebraic Geometry +1405.3386 Differential Geometry +1405.4503 Analysis of PDEs +1405.7580 Probability +1406.0633 +1406.4776 Analysis of PDEs +1406.6565 Numerical Analysis +1406.6637 Algebraic Geometry +1407.0674 Numerical Analysis +1407.0906 Algebraic Geometry +1410.1103 Learning +1410.2837 Algebraic Geometry +1410.2928 +1410.3059 Logic in Computer Science +1410.7619 Information Theory +1411.4784 Plasma Physics +1412.0129 Computer Science and Game Theory +1412.2149 Methodology +1412.5988 +1412.7611 Number Theory +1501.00439 Theory +1501.01714 Phenomenology +1501.02394 Cosmology and Nongalactic Astrophysics +1501.02692 Complex Variables +1501.03896 Analysis of PDEs +1501.05019 Other Statistics +1501.05551 Solar and Stellar Astrophysics +1501.06855 +1501.07658 Information Theory +1502.00867 Combinatorics +1502.01099 Numerical Analysis +1502.02181 Classical Analysis and ODEs +1502.05446 Chaotic Dynamics +1502.05673 +1502.05857 Analysis of PDEs +1502.06290 +1502.07532 Computation +1503.00449 Strongly Correlated Electrons +1503.01868 Computer Vision and Pattern Recognition +1503.03670 Analysis of PDEs +1503.05853 General Physics +1503.06714 Systems and Control +1503.07720 Optimization and Control +1503.08217 +1503.08301 Dynamical Systems +1503.08360 Numerical Analysis +1504.00203 Information Theory +1504.01222 +1504.01515 Computer Vision and Pattern Recognition +1504.01722 Algebraic Geometry +1504.01962 Spectral Theory +1504.03727 Mesoscale and Nanoscale Physics +1504.03901 Disordered Systems and Neural Networks +1504.04049 Information Theory +1504.04071 Theory +1504.04214 Dynamical Systems +1504.05574 +1504.05851 Classical Analysis and ODEs +1504.06661 Computational Physics +1504.07555 Analysis of PDEs +1504.07952 Phenomenology +1504.07999 +1504.08137 Dynamical Systems +1505.00091 Instrumentation and Detectors +1505.00169 Optics +1505.00305 High Energy Astrophysical Phenomena +1505.01536 +1505.02105 Mesoscale and Nanoscale Physics +1505.02109 Probability +1505.02506 +1505.02700 Exactly Solvable and Integrable Systems +1505.02919 +1505.03475 Atmospheric and Oceanic Physics +1505.04101 Analysis of PDEs +1505.05966 Biological Physics +1505.07717 Information Theory +1506.01664 +1506.01721 Populations and Evolution +1506.02309 +1506.02342 Dynamical Systems +1506.03396 Cosmology and Nongalactic Astrophysics +1506.03641 Statistical Mechanics +1506.04013 Probability +1506.04055 +1506.04209 Machine Learning +1506.04462 Computational Physics +1506.05297 Systems and Control +1506.05578 Statistical Mechanics +1506.05613 Theory +1506.05924 Fluid Dynamics +1506.06096 Computer Vision and Pattern Recognition +1506.06449 Atomic Physics +1506.07274 Differential Geometry +1506.08079 +1506.08484 Probability +1506.08710 +1507.00117 +1507.00429 +1507.00490 Cosmology and Nongalactic Astrophysics +1507.00574 Disordered Systems and Neural Networks +1507.01294 Number Theory +1507.01661 Machine Learning +1507.01982 Information Theory +1507.02692 Theory +1507.03324 Chemical Physics +1507.04232 Theory +1507.04248 Materials Science +1507.05107 Physics Education +1507.05231 Analysis of PDEs +1507.06600 +1507.06655 Cosmology and Nongalactic Astrophysics +1507.07426 Atomic Physics +1507.07670 Materials Science +1507.07677 Computer Science and Game Theory +1507.07770 Geophysics +1507.07868 Atomic and Molecular Clusters +1507.07952 Soft Condensed Matter +1507.08057 Chaotic Dynamics +1507.08100 Physics and Society +1507.08302 Statistical Mechanics +1507.08364 Social and Information Networks +1507.08822 Discrete Mathematics +1507.08941 Phenomenology +1508.00549 +1508.00842 Learning +1508.00964 Information Theory +1508.01074 Analysis of PDEs +1508.04002 Fluid Dynamics +1508.04151 Fluid Dynamics +1508.05365 Fluid Dynamics +1508.05636 Exactly Solvable and Integrable Systems +1508.05793 Mesoscale and Nanoscale Physics +1508.05802 Fluid Dynamics +1508.05978 +1508.06176 Analysis of PDEs +1508.06411 Theory +1508.06718 +1508.07082 Materials Science +1508.07581 Spectral Theory +1508.07794 Mesoscale and Nanoscale Physics +1509.01139 Quantum Gases +1509.01235 +1509.01309 Theory +1509.01942 Information Theory +1509.02002 Numerical Analysis +1509.02443 General Physics +1509.02462 Probability +1509.02540 Pattern Formation and Solitons +1509.03609 Dynamical Systems +1509.04003 +1509.04952 Computational Finance +1509.05134 Cosmology and Nongalactic Astrophysics +1509.05196 Information Theory +1509.06005 +1509.06009 Combinatorics +1509.06259 Instrumentation and Detectors +1509.06284 Optics +1509.06494 Applications +1509.06556 Optics +1509.06593 Group Theory +1509.06897 Algebraic Geometry +1509.06910 +1509.07082 Soft Condensed Matter +1509.08093 Mesoscale and Nanoscale Physics +1509.08170 Mesoscale and Nanoscale Physics +1509.08252 +1509.08313 Analysis of PDEs +1509.08533 Analysis of PDEs +1509.08735 Phenomenology +1509.08901 Fluid Dynamics +1509.09042 Optics +1509.09175 Computation +1509.09231 History and Philosophy of Physics +1509.09256 Mesoscale and Nanoscale Physics +1510.00252 Information Theory +1510.00630 Number Theory +1510.01512 Phenomenology +1510.01747 Instrumentation and Detectors +1510.01821 +1510.01851 Probability +1510.01898 Probability +1510.02464 Theory +1510.02618 Quantum Gases +1510.02728 Information Theory +1510.02822 Information Theory +1510.02831 Dynamical Systems +1510.03222 Statistical Mechanics +1510.03364 +1510.03686 Pattern Formation and Solitons +1510.04234 Optics +1510.04797 Fluid Dynamics +1510.04996 Astrophysics of Galaxies +1510.05027 +1510.05484 Computer Vision and Pattern Recognition +1510.05893 Data Analysis, Statistics and Probability +1510.06767 Computer Vision and Pattern Recognition +1510.07023 Numerical Analysis +1510.07164 Mesoscale and Nanoscale Physics +1510.07316 +1510.07578 Analysis of PDEs +1510.07633 Cosmology and Nongalactic Astrophysics +1510.07914 Atomic Physics +1510.08065 Theory +1510.08261 Phenomenology +1510.08301 Information Theory +1510.08482 Phenomenology +1510.08494 Analysis of PDEs +1510.08849 High Energy Astrophysical Phenomena +1510.09112 Soft Condensed Matter +1510.09145 Plasma Physics +1511.00216 Medical Physics +1511.00307 Operator Algebras +1511.00393 Sound +1511.00598 +1511.00903 +1511.01069 +1511.01167 Fluid Dynamics +1511.01370 Theory +1511.01457 Materials Science +1511.01669 Information Theory +1511.02065 Phenomenology +1511.02118 Probability +1511.02277 Mesoscale and Nanoscale Physics +1511.02327 Numerical Analysis +1511.02588 Astrophysics of Galaxies +1511.02807 Analysis of PDEs +1511.02871 Astrophysics of Galaxies +1511.02873 Mesoscale and Nanoscale Physics +1511.03060 Astrophysics of Galaxies +1511.03411 Lattice +1511.03634 Adaptation and Self-Organizing Systems +1511.03774 Learning +1511.04047 +1511.04207 Discrete Mathematics +1511.04215 +1511.04246 Complex Variables +1511.04292 Numerical Analysis +1511.04449 Phenomenology +1511.04681 Theory +1511.04687 Computer Vision and Pattern Recognition +1511.04695 Numerical Analysis +1511.04771 Classical Analysis and ODEs +1511.04870 Numerical Analysis +1511.04879 +1511.04939 Mesoscale and Nanoscale Physics +1511.05345 Atomic Physics +1511.05501 Algebraic Geometry +1511.05656 +1511.05698 Data Analysis, Statistics and Probability +1511.05832 Solar and Stellar Astrophysics +1511.05850 Physics and Society +1511.05859 +1511.05876 Accelerator Physics +1511.06166 +1511.06199 Theory +1511.06472 Materials Science +1511.06505 Other Condensed Matter +1511.06713 Theory +1511.06799 Analysis of PDEs +1511.07492 Numerical Analysis +1511.07668 Accelerator Physics +1511.07735 Atomic Physics +1511.07918 Optimization and Control +1511.08136 Machine Learning +1511.08282 Numerical Analysis +1511.08535 Group Theory +1511.08634 Materials Science +1511.08974 +1511.09100 Differential Geometry +1511.09314 Computational Physics +1511.09395 Fluid Dynamics +1511.09421 Mesoscale and Nanoscale Physics +1512.00006 Phenomenology +1512.00464 Earth and Planetary Astrophysics +1512.00722 Plasma Physics +1512.00730 Fluid Dynamics +1512.00850 Phenomenology +1512.01073 Disordered Systems and Neural Networks +1512.01108 Cosmology and Nongalactic Astrophysics +1512.01301 +1512.01470 Number Theory +1512.01548 Theory +1512.01711 +1512.01868 Solar and Stellar Astrophysics +1512.01869 Solar and Stellar Astrophysics +1512.02024 Quantum Gases +1512.02044 Quantum Gases +1512.02572 Phenomenology +1512.02739 Instrumentation and Detectors +1512.02864 +1512.02926 Theory +1512.03126 Quantitative Methods +1512.03203 Theory +1512.03229 Strongly Correlated Electrons +1512.03553 Plasma Physics +1512.03562 Cosmology and Nongalactic Astrophysics +1512.03618 Economics +1512.03900 +1512.03943 Fluid Dynamics +1512.04102 Mesoscale and Nanoscale Physics +1512.04117 +1512.04153 Strongly Correlated Electrons +1512.04179 Mesoscale and Nanoscale Physics +1512.04415 Number Theory +1512.04461 Mesoscale and Nanoscale Physics +1512.04533 Phenomenology +1512.04595 Astrophysics of Galaxies +1512.04660 Mesoscale and Nanoscale Physics +1512.04710 Quantum Algebra +1512.04712 Optics +1512.04730 Plasma Physics +1512.04930 +1512.04982 Quantitative Methods +1512.05001 Theory +1512.05038 +1512.05081 Classical Analysis and ODEs +1512.05211 Soft Condensed Matter +1512.05243 +1512.05354 +1512.05551 +1512.05748 +1512.06053 Soft Condensed Matter +1512.06072 Theory +1512.06156 Fluid Dynamics +1512.06301 Optics +1512.06459 Numerical Analysis +1512.06727 Phenomenology +1512.06741 Phenomenology +1512.06791 Quantum Gases +1512.06807 Strongly Correlated Electrons +1512.06838 Theory +1512.06892 Spectral Theory +1512.06986 +1512.07179 Commutative Algebra +1512.07348 Accelerator Physics +1512.07456 Chemical Physics +1512.07578 Numerical Analysis +1512.07589 +1512.07920 Theory +1512.08118 Fluid Dynamics +1512.08343 Optimization and Control +1512.08581 Quantum Gases +1512.08598 Phenomenology +1512.08924 Theory +1512.08980 +1512.09177 Dynamical Systems +1601.00195 Astrophysics of Galaxies +1601.00395 Accelerator Physics +1601.00565 Phenomenology +1601.00727 +1601.00844 Pattern Formation and Solitons +1601.00886 +1601.01078 Instrumentation and Detectors +1601.01099 Exactly Solvable and Integrable Systems +1601.01124 Statistical Mechanics +1601.01321 Cosmology and Nongalactic Astrophysics +1601.01331 Materials Science +1601.01441 Analysis of PDEs +1601.01454 Phenomenology +1601.01560 Atmospheric and Oceanic Physics +1601.01570 Space Physics +1601.01726 Analysis of PDEs +1601.01847 Superconductivity +1601.02032 +1601.02123 +1601.02259 Optics +1601.02304 Applications +1601.02309 Sound +1601.02623 Strongly Correlated Electrons +1601.02747 Plasma Physics +1601.02767 Probability +1601.02953 Phenomenology +1601.03168 Materials Science +1601.03360 +1601.03476 Theory +1601.03540 Statistical Mechanics +1601.03666 Operator Algebras +1601.03745 Mesoscale and Nanoscale Physics +1601.03912 Classical Physics +1601.03932 Fluid Dynamics +1601.03977 Strongly Correlated Electrons +1601.03991 Mesoscale and Nanoscale Physics +1601.04078 Theory +1601.04151 +1601.04197 Mesoscale and Nanoscale Physics +1601.04317 Chaotic Dynamics +1601.04506 +1601.04551 Combinatorics +1601.04695 Phenomenology +1601.04741 Materials Science +1601.04770 Computer Vision and Pattern Recognition +1601.04771 +1601.04958 Theory +1601.05088 Phenomenology +1601.05145 Phenomenology +1601.05321 Materials Science +1601.05927 Information Theory +1601.05946 Phenomenology +1601.05954 +1601.05975 Mesoscale and Nanoscale Physics +1601.06005 Robotics +1601.06156 Astrophysics of Galaxies +1601.06166 +1601.06641 Accelerator Physics +1601.06824 Numerical Analysis +1601.06893 Optimization and Control +1601.06916 +1601.07185 Statistical Mechanics +1601.07372 Accelerator Physics +1601.07794 Statistical Mechanics +1601.07992 +1601.08248 Numerical Analysis +1602.00074 Numerical Analysis +1602.00153 Mesoscale and Nanoscale Physics +1602.00275 Atomic Physics +1602.00622 Earth and Planetary Astrophysics +1602.00679 Theory +1602.00846 Solar and Stellar Astrophysics +1602.01316 Instrumentation and Detectors +1602.01344 Strongly Correlated Electrons +1602.01512 Numerical Analysis +1602.01642 +1602.01681 Mesoscale and Nanoscale Physics +1602.01734 +1602.01961 Strongly Correlated Electrons +1602.01996 Combinatorics +1602.02042 +1602.02072 Numerical Analysis +1602.02107 Theory +1602.02380 Phenomenology +1602.02417 Mesoscale and Nanoscale Physics +1602.02545 Statistical Mechanics +1602.02664 Combinatorics +1602.02717 +1602.02759 Earth and Planetary Astrophysics +1602.02817 Mesoscale and Nanoscale Physics +1602.02824 High Energy Astrophysical Phenomena +1602.02855 Soft Condensed Matter +1602.03108 Fluid Dynamics +1602.03170 Mesoscale and Nanoscale Physics +1602.03232 Mesoscale and Nanoscale Physics +1602.03335 Strongly Correlated Electrons +1602.03902 Mesoscale and Nanoscale Physics +1602.03925 Solar and Stellar Astrophysics +1602.03961 Soft Condensed Matter +1602.03975 Exactly Solvable and Integrable Systems +1602.04379 Applications +1602.04439 Computation +1602.04451 +1602.04542 High Energy Astrophysical Phenomena +1602.04592 +1602.04801 Phenomenology +1602.05071 +1602.05206 Astrophysics of Galaxies +1602.05215 Mesoscale and Nanoscale Physics +1602.05218 +1602.05246 Chemical Physics +1602.05438 Phenomenology +1602.05550 Atomic Physics +1602.05595 Soft Condensed Matter +1602.05613 Theory +1602.05760 Chaotic Dynamics +1602.05802 Strongly Correlated Electrons +1602.05911 +1602.05912 Optics +1602.06059 Chaotic Dynamics +1602.06090 Strongly Correlated Electrons +1602.06517 Theory +1602.06944 Mesoscale and Nanoscale Physics +1602.06968 Trading and Market Microstructure +1602.07069 Phenomenology +1602.07148 Astrophysics of Galaxies +1602.07177 Theory +1602.07261 Computer Vision and Pattern Recognition +1602.07326 Atomic Physics +1602.07370 Analysis of PDEs +1602.07654 Chemical Physics +1602.07814 Statistical Mechanics +1602.08137 Numerical Analysis +1602.08146 Optics +1602.08188 Plasma Physics +1602.08211 Computational Physics +1602.08249 +1602.08317 Statistical Mechanics +1602.08356 Algebraic Geometry +1602.08465 Computer Vision and Pattern Recognition +1602.08546 Materials Science +1602.08550 Computational Physics +1602.08852 Phenomenology +1602.08939 Adaptation and Self-Organizing Systems +1602.09057 Theory +1602.09060 +1603.00062 Theory +1603.00099 Mesoscale and Nanoscale Physics +1603.00233 +1603.00385 Phenomenology +1603.00433 Theory +1603.00529 +1603.00609 Materials Science +1603.00723 Solar and Stellar Astrophysics +1603.00866 Mesoscale and Nanoscale Physics +1603.00946 +1603.00961 Computer Vision and Pattern Recognition +1603.00983 Solar and Stellar Astrophysics +1603.01093 Theory +1603.01142 Strongly Correlated Electrons +1603.01147 Solar and Stellar Astrophysics +1603.01176 Chemical Physics +1603.01256 Phenomenology +1603.01298 Mesoscale and Nanoscale Physics +1603.01521 Chemical Physics +1603.01540 Theory +1603.01803 Experiment +1603.01855 Learning +1603.01860 Learning +1603.01981 Phenomenology +1603.02029 +1603.02071 +1603.02616 Quantum Gases +1603.02637 Phenomenology +1603.02657 Probability +1603.02663 Phenomenology +1603.02693 Astrophysics of Galaxies +1603.02857 +1603.02951 +1603.02996 Cosmology and Nongalactic Astrophysics +1603.03015 Space Physics +1603.03052 Phenomenology +1603.03057 Theory +1603.03332 Astrophysics of Galaxies +1603.03341 Exactly Solvable and Integrable Systems +1603.03462 Theory +1603.03588 Materials Science +1603.03594 +1603.03607 +1603.03689 Theory +1603.03755 +1603.03768 Learning +1603.04030 Complex Variables +1603.04063 +1603.04157 Atomic Physics +1603.04366 Phenomenology +1603.04436 Theory +1603.04613 Computation +1603.04672 Phenomenology +1603.04676 Soft Condensed Matter +1603.04752 +1603.04794 Soft Condensed Matter +1603.04796 +1603.04846 Instrumentation and Detectors +1603.05113 +1603.05258 Theory +1603.05316 Pattern Formation and Solitons +1603.05411 Materials Science +1603.05498 Optimization and Control +1603.05552 Theory +1603.05582 Theory +1603.05590 Materials Science +1603.05652 Strongly Correlated Electrons +1603.05761 +1603.05853 Fluid Dynamics +1603.05862 Mesoscale and Nanoscale Physics +1603.05864 Functional Analysis +1603.05978 Phenomenology +1603.06032 +1603.06062 Atomic Physics +1603.06120 Materials Science +1603.06121 Computer Vision and Pattern Recognition +1603.06140 Computer Vision and Pattern Recognition +1603.06219 Other Quantitative Biology +1603.06251 Category Theory +1603.06285 Soft Condensed Matter +1603.06328 Pattern Formation and Solitons +1603.06384 Soft Condensed Matter +1603.06481 Cosmology and Nongalactic Astrophysics +1603.06529 Phenomenology +1603.06609 Phenomenology +1603.06682 Phenomenology +1603.06721 Optics +1603.06724 Quantum Gases +1603.06728 Materials Science +1603.06812 Computer Vision and Pattern Recognition +1603.06847 Statistical Mechanics +1603.06880 Instrumentation and Detectors +1603.06969 Theory +1603.07042 Solar and Stellar Astrophysics +1603.07050 Statistical Mechanics +1603.07108 +1603.07146 Optics +1603.07240 Materials Science +1603.07265 +1603.07283 Mesoscale and Nanoscale Physics +1603.07301 Optimization and Control +1603.07303 Phenomenology +1603.07411 Accelerator Physics +1603.07490 Numerical Analysis +1603.07519 Cosmology and Nongalactic Astrophysics +1603.07553 Quantum Algebra +1603.07568 High Energy Astrophysical Phenomena +1603.07769 Strongly Correlated Electrons +1603.07827 Strongly Correlated Electrons +1603.07845 Theory +1603.07955 Astrophysics of Galaxies +1603.08065 Phenomenology +1603.08107 Mesoscale and Nanoscale Physics +1603.08236 Information Theory +1603.08299 Cosmology and Nongalactic Astrophysics +1603.08319 Plasma Physics +1603.08463 Phenomenology +1603.08476 +1603.08524 Theory +1603.08659 Atomic and Molecular Clusters +1603.08692 Materials Science +1603.08829 Soft Condensed Matter +1603.08874 Soft Condensed Matter +1603.08896 Strongly Correlated Electrons +1603.08913 Phenomenology +1603.09146 Theory +1603.09174 Soft Condensed Matter +1603.09275 Group Theory +1603.09338 Phenomenology +1603.09369 Soft Condensed Matter +1603.09517 Lattice +1603.09523 Numerical Analysis +1603.09625 Theory +1603.09655 +1603.09731 Theory +1603.09745 Theory +1604.00380 Soft Condensed Matter +1604.00412 Biological Physics +1604.00443 Chemical Physics +1604.00506 Numerical Analysis +1604.00673 Fluid Dynamics +1604.00785 Soft Condensed Matter +1604.00844 Optics +1604.00871 Phenomenology +1604.01343 Instrumentation and Detectors +1604.01346 Theory +1604.01437 +1604.01453 +1604.01466 +1604.01469 Information Theory +1604.01473 Materials Science +1604.01555 +1604.01561 Theory +1604.01621 Logic +1604.01784 Classical Physics +1604.01811 Mesoscale and Nanoscale Physics +1604.01817 +1604.01827 Computer Vision and Pattern Recognition +1604.01880 Superconductivity +1604.01909 Accelerator Physics +1604.01947 Optics +1604.02072 Atomic Physics +1604.02134 Superconductivity +1604.02532 Computer Vision and Pattern Recognition +1604.02631 Statistics Theory +1604.02719 Pattern Formation and Solitons +1604.02735 Strongly Correlated Electrons +1604.03017 Phenomenology +1604.03105 Phenomenology +1604.03155 Numerical Analysis +1604.03286 Computer Vision and Pattern Recognition +1604.03327 Phenomenology +1604.03371 Optics +1604.03381 +1604.03401 Lattice +1604.03552 Theory +1604.03574 Theory +1604.03682 +1604.03685 Optics +1604.03699 Atomic Physics +1604.03855 Phenomenology +1604.03922 Instrumentation and Detectors +1604.03964 Theory +1604.04036 +1604.04077 Materials Science +1604.04086 Accelerator Physics +1604.04222 Cosmology and Nongalactic Astrophysics +1604.04388 High Energy Astrophysical Phenomena +1604.04441 Phenomenology +1604.04491 Materials Science +1604.04502 Theory +1604.04597 +1604.04627 Phenomenology +1604.04691 +1604.04763 Solar and Stellar Astrophysics +1604.04787 Soft Condensed Matter +1604.04965 Phenomenology +1604.05001 Information Theory +1604.05059 Superconductivity +1604.05098 Chemical Physics +1604.05123 Atomic Physics +1604.05149 Optics +1604.05204 Mesoscale and Nanoscale Physics +1604.05257 Learning +1604.05386 Fluid Dynamics +1604.05397 Materials Science +1604.05421 Lattice +1604.05469 Solar and Stellar Astrophysics +1604.05520 Theory +1604.05531 Algebraic Geometry +1604.05587 Instrumentation and Methods for Astrophysics +1604.05593 Lattice +1604.05708 Experiment +1604.05711 Theory +1604.05846 Superconductivity +1604.06060 Theory +1604.06108 Theory +1604.06180 Phenomenology +1604.06211 Cosmology and Nongalactic Astrophysics +1604.06442 Theory +1604.06446 Phenomenology +1604.06523 Optics +1604.06638 Quantum Gases +1604.06642 +1604.06656 Materials Science +1604.06694 Soft Condensed Matter +1604.06703 Algebraic Geometry +1604.06717 Strongly Correlated Electrons +1604.06757 +1604.06771 +1604.06891 Theory +1604.06928 Instrumentation and Methods for Astrophysics +1604.07052 Mesoscale and Nanoscale Physics +1604.07076 Computers and Society +1604.07079 Mesoscale and Nanoscale Physics +1604.07112 Lattice +1604.07132 High Energy Astrophysical Phenomena +1604.07145 Phenomenology +1604.07252 Phenomenology +1604.07376 Optics +1604.07494 +1604.07571 Theory +1604.07612 Statistical Mechanics +1604.07619 Atomic Physics +1604.07637 Populations and Evolution +1604.07701 Networking and Internet Architecture +1604.07717 Lattice +1604.07752 High Energy Astrophysical Phenomena +1604.07851 Theory +1604.07886 Optics +1604.07896 Phenomenology +1604.07987 Theory +1604.08081 Soft Condensed Matter +1604.08156 Cosmology and Nongalactic Astrophysics +1604.08159 Fluid Dynamics +1604.08211 Phenomenology +1604.08228 Materials Science +1604.08251 Plasma Physics +1604.08344 Optics +1604.08384 Strongly Correlated Electrons +1604.08457 Materials Science +1604.08628 Mesoscale and Nanoscale Physics +1604.08635 +1604.08645 Optics +1604.08749 Chemical Physics +1604.08855 Materials Science +1604.08867 Atomic Physics +1604.08881 Optics +1605.00010 Theory +1605.00022 Fluid Dynamics +1605.00032 Materials Science +1605.00110 Systems and Control +1605.00183 Theory +1605.00206 Phenomenology +1605.00222 Atomic Physics +1605.00248 +1605.00326 +1605.00457 Materials Science +1605.00542 Phenomenology +1605.00586 Soft Condensed Matter +1605.00602 Fluid Dynamics +1605.00712 Biological Physics +1605.00727 Numerical Analysis +1605.00780 +1605.00792 +1605.00815 Phenomenology +1605.00852 Plasma Physics +1605.01083 Logic in Computer Science +1605.01122 Theory +1605.01129 Phenomenology +1605.01239 Astrophysics of Galaxies +1605.01249 Materials Science +1605.01290 Disordered Systems and Neural Networks +1605.01392 Cosmology and Nongalactic Astrophysics +1605.01476 +1605.01503 Dynamical Systems +1605.01507 Superconductivity +1605.01522 Numerical Analysis +1605.01523 Astrophysics of Galaxies +1605.01732 Theory +1605.01771 Mesoscale and Nanoscale Physics +1605.01804 Analysis of PDEs +1605.01871 Classical Physics +1605.01915 Phenomenology +1605.02067 Instrumentation and Detectors +1605.02141 Numerical Analysis +1605.02187 +1605.02311 Programming Languages +1605.02395 Instrumentation and Detectors +1605.02397 Strongly Correlated Electrons +1605.02553 Theory +1605.02573 +1605.02591 Theory +1605.02636 Fluid Dynamics +1605.02640 +1605.02681 Soft Condensed Matter +1605.02753 Social and Information Networks +1605.02799 Mesoscale and Nanoscale Physics +1605.02804 Theory +1605.02808 Atomic Physics +1605.02811 Plasma Physics +1605.02889 Experiment +1605.02901 Quantum Gases +1605.02910 Phenomenology +1605.02944 +1605.03002 Fluid Dynamics +1605.03082 Solar and Stellar Astrophysics +1605.03233 +1605.03246 Optics +1605.03251 Phenomenology +1605.03314 Theory +1605.03351 Materials Science +1605.03365 Solar and Stellar Astrophysics +1605.03381 Strongly Correlated Electrons +1605.03386 Lattice +1605.03402 General Physics +1605.03434 Biological Physics +1605.03469 Mesoscale and Nanoscale Physics +1605.03473 Mesoscale and Nanoscale Physics +1605.03537 Soft Condensed Matter +1605.03585 Phenomenology +1605.03631 Machine Learning +1605.03767 +1605.04028 Atomic Physics +1605.04075 Instrumentation and Detectors +1605.04161 Fluid Dynamics +1605.04311 Phenomenology +1605.04334 Optics +1605.04357 Cosmology and Nongalactic Astrophysics +1605.04377 Mesoscale and Nanoscale Physics +1605.04494 Emerging Technologies +1605.04610 Phenomenology +1605.04727 Optics +1605.04759 +1605.04939 Atomic Physics +1605.05075 Instrumentation and Detectors +1605.05095 Fluid Dynamics +1605.05127 +1605.05175 Strongly Correlated Electrons +1605.05185 Cosmology and Nongalactic Astrophysics +1605.05250 High Energy Astrophysical Phenomena +1605.05328 Phenomenology +1605.05338 Astrophysics of Galaxies +1605.05383 Statistical Mechanics +1605.05464 Mesoscale and Nanoscale Physics +1605.05519 Strongly Correlated Electrons +1605.05541 Phenomenology +1605.05585 Experiment +1605.05646 +1605.05691 Soft Condensed Matter +1605.05734 Superconductivity +1605.05748 +1605.05800 Chemical Physics +1605.05922 Materials Science +1605.05999 Theory +1605.06086 Populations and Evolution +1605.06118 Earth and Planetary Astrophysics +1605.06152 Astrophysics of Galaxies +1605.06163 Solar and Stellar Astrophysics +1605.06198 Accelerator Physics +1605.06219 +1605.06231 +1605.06298 Phenomenology +1605.06367 Mesoscale and Nanoscale Physics +1605.06392 Optics +1605.06406 Optics +1605.06415 Optics +1605.06517 Solar and Stellar Astrophysics +1605.06609 Computational Physics +1605.06637 Cosmology and Nongalactic Astrophysics +1605.06694 Plasma Physics +1605.06698 Differential Geometry +1605.06962 Superconductivity +1605.06969 Statistical Mechanics +1605.07021 Theory +1605.07065 Computational Physics +1605.07090 Soft Condensed Matter +1605.07130 Earth and Planetary Astrophysics +1605.07150 Optics +1605.07317 Materials Science +1605.07393 +1605.07402 Theory +1605.07406 +1605.07548 Cosmology and Nongalactic Astrophysics +1605.07647 Dynamical Systems +1605.07934 Phenomenology +1605.07962 Phenomenology +1605.08014 Quantum Gases +1605.08040 Lattice +1605.08103 Phenomenology +1605.08256 Phenomenology +1605.08262 Statistical Mechanics +1605.08282 Mesoscale and Nanoscale Physics +1605.08373 Quantitative Methods +1605.08557 Atomic Physics +1605.08586 Mesoscale and Nanoscale Physics +1605.08631 Astrophysics of Galaxies +1605.08655 +1605.08868 Theory +1605.08921 Optics +1605.08922 +1605.08927 Statistical Mechanics +1605.08934 Superconductivity +1605.08999 Cosmology and Nongalactic Astrophysics +1605.09078 Optics +1605.09103 Experiment +1605.09151 Plasma Physics +1605.09485 Mesoscale and Nanoscale Physics +1605.09568 +1605.09686 Quantum Gases +1605.09751 Chemical Physics +1606.00027 Optics +1606.00073 Dynamical Systems +1606.00165 Materials Science +1606.00179 Theory +1606.00271 Atomic Physics +1606.00287 Optics +1606.00383 Statistical Mechanics +1606.00394 Theory +1606.00567 Other Condensed Matter +1606.00580 Chemical Physics +1606.00646 Theory +1606.00761 Phenomenology +1606.00872 Solar and Stellar Astrophysics +1606.00924 +1606.01068 Optics +1606.01165 Astrophysics of Galaxies +1606.01233 Analysis of PDEs +1606.01254 Theory +1606.01313 Computational Engineering, Finance, and Science +1606.01507 +1606.01571 +1606.01703 Materials Science +1606.01705 Atomic Physics +1606.01756 Statistical Mechanics +1606.01780 Geophysics +1606.01862 Phenomenology +1606.01958 Solar and Stellar Astrophysics +1606.02048 +1606.02156 Disordered Systems and Neural Networks +1606.02289 Classical Physics +1606.02293 Cosmology and Nongalactic Astrophysics +1606.02322 Instrumentation and Detectors +1606.02324 Astrophysics of Galaxies +1606.02339 Optics +1606.02346 Learning +1606.02361 Phenomenology +1606.02389 Phenomenology +1606.02446 Instrumentation and Methods for Astrophysics +1606.02579 Soft Condensed Matter +1606.02810 Phenomenology +1606.02922 Theory +1606.02980 +1606.02990 Chemical Physics +1606.03011 Chemical Physics +1606.03030 Earth and Planetary Astrophysics +1606.03070 Mesoscale and Nanoscale Physics +1606.03202 Information Theory +1606.03207 Computation and Language +1606.03312 Theory +1606.03358 Optimization and Control +1606.03495 Number Theory +1606.03586 Materials Science +1606.03780 Atomic Physics +1606.03852 Numerical Analysis +1606.03861 Theory +1606.03999 +1606.04053 Phenomenology +1606.04085 Combinatorics +1606.04093 Experiment +1606.04144 Phenomenology +1606.04152 Theory +1606.04201 Materials Science +1606.04295 Biological Physics +1606.04336 Optics +1606.04362 +1606.04416 Phenomenology +1606.04612 Earth and Planetary Astrophysics +1606.04630 Classical Physics +1606.04699 Optics +1606.04783 Strongly Correlated Electrons +1606.04784 Superconductivity +1606.04785 Strongly Correlated Electrons +1606.04860 Superconductivity +1606.04873 Phenomenology +1606.04931 +1606.05295 +1606.05362 Soft Condensed Matter +1606.05399 Optics +1606.05423 Optimization and Control +1606.05454 Plasma Physics +1606.05476 Mesoscale and Nanoscale Physics +1606.05552 Phenomenology +1606.05828 Earth and Planetary Astrophysics +1606.05849 +1606.05881 Optics +1606.06019 Solar and Stellar Astrophysics +1606.06032 Information Theory +1606.06214 Solar and Stellar Astrophysics +1606.06241 Optics +1606.06267 Chemical Physics +1606.06297 +1606.06337 Soft Condensed Matter +1606.06344 Phenomenology +1606.06455 Cosmology and Nongalactic Astrophysics +1606.06537 Phenomenology +1606.06549 +1606.06605 +1606.06779 Materials Science +1606.06827 +1606.07105 +1606.07242 Dynamical Systems +1606.07539 Earth and Planetary Astrophysics +1606.07542 Optics +1606.07564 +1606.07675 Phenomenology +1606.07819 Earth and Planetary Astrophysics +1606.07832 Astrophysics of Galaxies +1606.07884 Phenomenology +1606.07919 Other Condensed Matter +1606.07929 Solar and Stellar Astrophysics +1606.08108 Phenomenology +1606.08146 Fluid Dynamics +1606.08179 Phenomenology +1606.08287 Phenomenology +1606.08311 Strongly Correlated Electrons +1606.08341 Probability +1606.08466 Atomic Physics +1606.08607 Molecular Networks +1606.08825 +1606.08945 Mesoscale and Nanoscale Physics +1606.08959 Strongly Correlated Electrons +1606.08966 +1606.09084 Optics +1606.09182 Soft Condensed Matter +1606.09311 Strongly Correlated Electrons +1606.09322 Solar and Stellar Astrophysics +1606.09327 Optics +1606.09441 Atomic Physics +1606.09472 +1606.09500 Phenomenology +1606.09571 Strongly Correlated Electrons +1607.00005 Astrophysics of Galaxies +1607.00075 Theory +1607.00165 Physics and Society +1607.00221 Strongly Correlated Electrons +1607.00283 +1607.00518 Algebraic Geometry +1607.00823 Soft Condensed Matter +1607.00912 Astrophysics of Galaxies +1607.00916 Lattice +1607.01011 Astrophysics of Galaxies +1607.01096 Astrophysics of Galaxies +1607.01137 Soft Condensed Matter +1607.01160 +1607.01227 Phenomenology +1607.01244 Theory +1607.01309 Adaptation and Self-Organizing Systems +1607.01322 Optics +1607.01470 Materials Science +1607.01875 Phenomenology +1607.01918 Mesoscale and Nanoscale Physics +1607.01921 Materials Science +1607.01948 Information Theory +1607.02126 +1607.02203 Atomic Physics +1607.02275 Plasma Physics +1607.02403 Geometric Topology +1607.02545 Statistical Mechanics +1607.02773 Theory +1607.02813 Instrumentation and Detectors +1607.03059 High Energy Astrophysical Phenomena +1607.03115 Earth and Planetary Astrophysics +1607.03133 +1607.03159 Theory +1607.03325 +1607.03361 High Energy Astrophysical Phenomena +1607.03507 +1607.03562 Physics and Society +1607.03584 +1607.03635 Mesoscale and Nanoscale Physics +1607.03653 High Energy Astrophysical Phenomena +1607.03757 Solar and Stellar Astrophysics +1607.03759 Superconductivity +1607.03768 Solar and Stellar Astrophysics +1607.03899 Superconductivity +1607.03962 Pattern Formation and Solitons +1607.04079 Astrophysics of Galaxies +1607.04085 Optics +1607.04117 Instrumentation and Detectors +1607.04140 Theory +1607.04148 +1607.04314 Phenomenology +1607.04335 Physics and Society +1607.04386 Exactly Solvable and Integrable Systems +1607.04665 Plasma Physics +1607.04705 Strongly Correlated Electrons +1607.04746 Materials Science +1607.04869 Rings and Algebras +1607.05012 Strongly Correlated Electrons +1607.05389 Mesoscale and Nanoscale Physics +1607.05416 Superconductivity +1607.05435 +1607.05510 Phenomenology +1607.05611 Plasma Physics +1607.05623 Phenomenology +1607.05646 Differential Geometry +1607.05706 +1607.05731 Astrophysics of Galaxies +1607.05782 Strongly Correlated Electrons +1607.05804 Soft Condensed Matter +1607.05821 Mesoscale and Nanoscale Physics +1607.05857 Soft Condensed Matter +1607.05899 +1607.05916 +1607.06013 Optics +1607.06119 Mesoscale and Nanoscale Physics +1607.06184 Mesoscale and Nanoscale Physics +1607.06188 +1607.06248 Pattern Formation and Solitons +1607.06311 Phenomenology +1607.06399 Strongly Correlated Electrons +1607.06485 Instrumentation and Methods for Astrophysics +1607.06567 +1607.06602 Phenomenology +1607.06826 Phenomenology +1607.06888 Theory +1607.06893 Mesoscale and Nanoscale Physics +1607.06919 +1607.06944 +1607.06954 +1607.06957 Solar and Stellar Astrophysics +1607.06987 +1607.07026 Mesoscale and Nanoscale Physics +1607.07107 +1607.07189 Mesoscale and Nanoscale Physics +1607.07242 Soft Condensed Matter +1607.07442 Plasma Physics +1607.07465 Solar and Stellar Astrophysics +1607.07579 Plasma Physics +1607.07592 Statistical Mechanics +1607.07609 Instrumentation and Methods for Astrophysics +1607.07638 Lattice +1607.07677 Strongly Correlated Electrons +1607.07699 Astrophysics of Galaxies +1607.07813 Number Theory +1607.07909 Mesoscale and Nanoscale Physics +1607.07946 Mesoscale and Nanoscale Physics +1607.07961 +1607.08055 +1607.08060 Astrophysics of Galaxies +1607.08281 Atomic Physics +1607.08286 Statistical Mechanics +1607.08323 +1607.08389 Disordered Systems and Neural Networks +1607.08532 Optics +1607.08651 Superconductivity +1607.08747 Astrophysics of Galaxies +1607.08768 +1607.08814 Disordered Systems and Neural Networks +1608.00044 Mathematical Software +1608.00165 +1608.00489 Fluid Dynamics +1608.00700 Computer Vision and Pattern Recognition +1608.00826 Plasma Physics +1608.01015 High Energy Astrophysical Phenomena +1608.01142 Fluid Dynamics +1608.01241 High Energy Astrophysical Phenomena +1608.01498 Differential Geometry +1608.01581 Materials Science +1608.01605 +1608.01678 Solar and Stellar Astrophysics +1608.01957 Materials Science +1608.02070 Cosmology and Nongalactic Astrophysics +1608.02142 Mesoscale and Nanoscale Physics +1608.02335 +1608.02667 Algebraic Geometry +1608.02789 Mesoscale and Nanoscale Physics +1608.03010 Solar and Stellar Astrophysics +1608.03205 +1608.03553 Earth and Planetary Astrophysics +1608.03653 Astrophysics of Galaxies +1608.03743 Astrophysics of Galaxies +1608.03861 Optimization and Control +1608.03895 Solar and Stellar Astrophysics +1608.04049 Physics and Society +1608.04353 Astrophysics of Galaxies +1608.04386 Astrophysics of Galaxies +1608.04391 Instrumentation and Methods for Astrophysics +1608.04506 Statistical Finance +1608.04589 High Energy Astrophysical Phenomena +1608.04978 Solar and Stellar Astrophysics +1608.05017 Earth and Planetary Astrophysics +1608.05143 Computer Vision and Pattern Recognition +1608.05153 Pattern Formation and Solitons +1608.05228 Superconductivity +1608.05287 Commutative Algebra +1608.05477 Computer Vision and Pattern Recognition +1608.05675 Logic in Computer Science +1608.06128 Information Theory +1608.06129 Theory +1608.06138 Chaotic Dynamics +1608.06139 Phenomenology +1608.06146 Subcellular Processes +1608.06169 Databases +1608.06182 Numerical Analysis +1608.06195 Fluid Dynamics +1608.06236 Geometric Topology +1608.06276 Combinatorics +1608.06277 Computer Vision and Pattern Recognition +1608.06280 Statistical Mechanics +1608.06286 Solar and Stellar Astrophysics +1608.06290 Astrophysics of Galaxies +1608.06298 Information Retrieval +1608.06301 Materials Science +1608.06304 Mesoscale and Nanoscale Physics +1608.06305 Other Quantitative Biology +1608.06312 +1608.06314 Populations and Evolution +1608.06315 Learning +1608.06317 Geometric Topology +1608.06318 +1608.06321 Materials Science +1608.06325 Data Structures and Algorithms +1608.06326 Combinatorics +1608.06332 Superconductivity +1608.06334 Soft Condensed Matter +1608.06336 Optimization and Control +1608.06340 Category Theory +1608.06341 Information Theory +1608.06342 Astrophysics of Galaxies +1608.06343 Instrumentation and Detectors +1608.06346 Number Theory +1608.06349 Artificial Intelligence +1608.06351 Dynamical Systems +1608.06353 +1608.06356 Plasma Physics +1608.06357 Soft Condensed Matter +1608.06358 Fluid Dynamics +1608.06361 Probability +1608.06367 Applications +1608.06370 +1608.06372 Commutative Algebra +1608.06373 Combinatorics +1608.06375 Operator Algebras +1608.06378 Computation and Language +1608.06379 Computers and Society +1608.06381 Materials Science +1608.06383 Machine Learning +1608.06384 Probability +1608.06386 Computation and Language +1608.06389 Astrophysics of Galaxies +1608.06391 Experiment +1608.06392 Logic in Computer Science +1608.06395 Quantum Algebra +1608.06398 Combinatorics +1608.06399 Instrumentation and Detectors +1608.06400 Logic +1608.06401 Number Theory +1608.06403 Computer Science and Game Theory +1608.06408 Learning +1608.06409 Learning +1608.06411 Strongly Correlated Electrons +1608.06412 Machine Learning +1608.06413 +1608.06415 Data Structures and Algorithms +1608.06416 Computational Finance +1608.06420 Robotics +1608.06422 Optimization and Control +1608.06424 Analysis of PDEs +1608.06425 Phenomenology +1608.06426 Operator Algebras +1608.06427 Social and Information Networks +1608.06428 Number Theory +1608.06434 Computer Vision and Pattern Recognition +1608.06438 Differential Geometry +1608.06439 Instrumentation and Methods for Astrophysics +1608.06440 Robotics +1608.06444 Solar and Stellar Astrophysics +1608.06446 Space Physics +1608.06447 Analysis of PDEs +1608.06448 Quantum Gases +1608.06450 Phenomenology +1608.06451 Computer Vision and Pattern Recognition +1608.06452 Theory +1608.06453 Complex Variables +1608.06454 Complex Variables +1608.06456 Soft Condensed Matter +1608.06457 Complex Variables +1608.06458 Computational Geometry +1608.06459 Computation and Language +1608.06460 +1608.06462 Data Structures and Algorithms +1608.06465 Algebraic Geometry +1608.06467 Differential Geometry +1608.06468 Theory +1608.06469 Databases +1608.06473 Numerical Analysis +1608.06474 Symplectic Geometry +1608.06475 Optimization and Control +1608.06477 Classical Physics +1608.06478 Combinatorics +1608.06481 Theory +1608.06486 Experiment +1608.06488 Solar and Stellar Astrophysics +1608.06489 Instrumentation and Methods for Astrophysics +1608.06490 Superconductivity +1608.06491 Distributed, Parallel, and Cluster Computing +1608.06492 Social and Information Networks +1608.06495 Computer Vision and Pattern Recognition +1608.06496 Optics +1608.06497 Representation Theory +1608.06498 Information Theory +1608.06500 Popular Physics +1608.06504 +1608.06505 Solar and Stellar Astrophysics +1608.06506 Instrumentation and Methods for Astrophysics +1608.06507 Representation Theory +1608.06510 Systems and Control +1608.06511 Networking and Internet Architecture +1608.06515 Astrophysics of Galaxies +1608.06516 Physics and Society +1608.06517 Numerical Analysis +1608.06522 Solar and Stellar Astrophysics +1608.06524 Numerical Analysis +1608.06525 General Physics +1608.06529 Statistical Mechanics +1608.06530 High Energy Astrophysical Phenomena +1608.06533 Combinatorics +1608.06536 Statistics Theory +1608.06538 Mesoscale and Nanoscale Physics +1608.06542 Instrumentation and Methods for Astrophysics +1608.06544 Strongly Correlated Electrons +1608.06545 Information Theory +1608.06547 +1608.06549 Software Engineering +1608.06550 Combinatorics +1608.06554 Algebraic Geometry +1608.06556 Probability +1608.06557 Computer Vision and Pattern Recognition +1608.06558 Computer Vision and Pattern Recognition +1608.06559 Distributed, Parallel, and Cluster Computing +1608.06562 Disordered Systems and Neural Networks +1608.06563 Information Theory +1608.06564 Probability +1608.06565 Optics +1608.06566 Instrumentation and Methods for Astrophysics +1608.06567 Logic in Computer Science +1608.06569 Phenomenology +1608.06570 Number Theory +1608.06571 Classical Analysis and ODEs +1608.06575 Differential Geometry +1608.06576 +1608.06577 Computational Physics +1608.06578 Phenomenology +1608.06579 +1608.06583 Programming Languages +1608.06587 Materials Science +1608.06588 Mesoscale and Nanoscale Physics +1608.06589 Theory +1608.06592 Cryptography and Security +1608.06593 Number Theory +1608.06595 Dynamical Systems +1608.06598 Biological Physics +1608.06601 Plasma Physics +1608.06602 Information Theory +1608.06606 Networking and Internet Architecture +1608.06608 Learning +1608.06609 Probability +1608.06610 +1608.06611 Operator Algebras +1608.06612 Metric Geometry +1608.06617 +1608.06621 Combinatorics +1608.06623 Soft Condensed Matter +1608.06625 Mesoscale and Nanoscale Physics +astro-ph/9411104 +astro-ph/9504081 +astro-ph/9505120 +astro-ph/9510029 +astro-ph/9511029 +astro-ph/9603034 +astro-ph/9603138 +astro-ph/9608106 +astro-ph/9610183 +astro-ph/9611106 +astro-ph/9702006 +cond-mat/0011283 Materials Science +cond-mat/0206513 Superconductivity +cond-mat/0401447 Superconductivity +cond-mat/9612019 Mesoscale and Nanoscale Physics +gr-qc/9403027 +gr-qc/9408015 +gr-qc/9412001 +gr-qc/9412066 +gr-qc/9506029 +gr-qc/9506050 +gr-qc/9602056 +gr-qc/9607064 +gr-qc/9608034 +gr-qc/9609057 +gr-qc/9610040 +gr-qc/9610051 +gr-qc/9612026 +gr-qc/9702018 +gr-qc/9702038 +gr-qc/9702049 +gr-qc/9704050 +hep-lat/9511021 Lattice +hep-lat/9603016 Lattice +hep-lat/9606021 Lattice +hep-lat/9610001 Lattice +hep-lat/9612002 Lattice +hep-lat/9702015 Lattice +hep-lat/9703010 Lattice +hep-ph/0603047 Phenomenology +hep-ph/9407299 Phenomenology +hep-ph/9408247 Phenomenology +hep-ph/9408254 Phenomenology +hep-ph/9408384 Phenomenology +hep-ph/9409221 Phenomenology +hep-ph/9409319 Phenomenology +hep-ph/9411206 Phenomenology +hep-ph/9411249 Phenomenology +hep-ph/9411365 Phenomenology +hep-ph/9411383 Phenomenology +hep-ph/9411430 Phenomenology +hep-ph/9412217 Phenomenology +hep-ph/9412305 Phenomenology +hep-ph/9502223 Phenomenology +hep-ph/9502324 Phenomenology +hep-ph/9503244 Phenomenology +hep-ph/9503476 Phenomenology +hep-ph/9505226 Phenomenology +hep-ph/9505245 Phenomenology +hep-ph/9505326 Phenomenology +hep-ph/9507262 Phenomenology +hep-ph/9507375 Phenomenology +hep-ph/9507378 Phenomenology +hep-ph/9507420 Phenomenology +hep-ph/9508252 Phenomenology +hep-ph/9508253 Phenomenology +hep-ph/9508279 Phenomenology +hep-ph/9508322 Phenomenology +hep-ph/9508406 Phenomenology +hep-ph/9509325 Phenomenology +hep-ph/9509351 Phenomenology +hep-ph/9510424 Phenomenology +hep-ph/9511356 Phenomenology +hep-ph/9512225 Phenomenology +hep-ph/9512306 Phenomenology +hep-ph/9512430 Phenomenology +hep-ph/9512433 Phenomenology +hep-ph/9601211 Phenomenology +hep-ph/9602221 Phenomenology +hep-ph/9602300 Phenomenology +hep-ph/9602323 Phenomenology +hep-ph/9602349 Phenomenology +hep-ph/9603212 Phenomenology +hep-ph/9603247 Phenomenology +hep-ph/9603253 Phenomenology +hep-ph/9603261 Phenomenology +hep-ph/9603266 Phenomenology +hep-ph/9603442 Phenomenology +hep-ph/9604237 Phenomenology +hep-ph/9604452 Phenomenology +hep-ph/9605332 Phenomenology +hep-ph/9605409 Phenomenology +hep-ph/9607217 Phenomenology +hep-ph/9607243 Phenomenology +hep-ph/9608269 Phenomenology +hep-ph/9608275 Phenomenology +hep-ph/9608303 Phenomenology +hep-ph/9608361 Phenomenology +hep-ph/9608443 Phenomenology +hep-ph/9609221 Phenomenology +hep-ph/9609246 Phenomenology +hep-ph/9609285 Phenomenology +hep-ph/9609302 Phenomenology +hep-ph/9609372 Phenomenology +hep-ph/9609411 Phenomenology +hep-ph/9609448 Phenomenology +hep-ph/9609463 Phenomenology +hep-ph/9609469 Phenomenology +hep-ph/9609480 Phenomenology +hep-ph/9609509 Phenomenology +hep-ph/9609510 Phenomenology +hep-ph/9609520 Phenomenology +hep-ph/9610377 Phenomenology +hep-ph/9610495 Phenomenology +hep-ph/9610540 Phenomenology +hep-ph/9611209 Phenomenology +hep-ph/9611330 Phenomenology +hep-ph/9611422 Phenomenology +hep-ph/9612231 Phenomenology +hep-ph/9612267 Phenomenology +hep-ph/9612282 Phenomenology +hep-ph/9612285 Phenomenology +hep-ph/9612302 Phenomenology +hep-ph/9612304 Phenomenology +hep-ph/9612316 Phenomenology +hep-ph/9612402 Phenomenology +hep-ph/9612485 Phenomenology +hep-ph/9612493 Phenomenology +hep-ph/9701229 Phenomenology +hep-ph/9701247 Phenomenology +hep-ph/9701283 Phenomenology +hep-ph/9701294 Phenomenology +hep-ph/9701347 Phenomenology +hep-ph/9701354 Phenomenology +hep-ph/9701423 Phenomenology +hep-ph/9702207 Phenomenology +hep-ph/9702270 Phenomenology +hep-ph/9702283 Phenomenology +hep-ph/9702377 Phenomenology +hep-ph/9702380 Phenomenology +hep-ph/9702423 Phenomenology +hep-ph/9702427 Phenomenology +hep-ph/9703232 Phenomenology +hep-ph/9703340 Phenomenology +hep-ph/9703370 Phenomenology +hep-ph/9703408 Phenomenology +hep-ph/9704247 Phenomenology +hep-ph/9705308 Phenomenology +hep-th/9312150 Theory +hep-th/9407167 Theory +hep-th/9407169 Theory +hep-th/9408120 Theory +hep-th/9411221 Theory +hep-th/9412065 Theory +hep-th/9501094 Theory +hep-th/9502073 Theory +hep-th/9502146 Theory +hep-th/9502153 Theory +hep-th/9503029 Theory +hep-th/9504022 Theory +hep-th/9504026 Theory +hep-th/9504141 Theory +hep-th/9505141 Theory +hep-th/9506059 Theory +hep-th/9506109 Theory +hep-th/9506113 Theory +hep-th/9506196 Theory +hep-th/9507045 Theory +hep-th/9507107 Theory +hep-th/9508091 Theory +hep-th/9508179 Theory +hep-th/9509168 Theory +hep-th/9509169 Theory +hep-th/9510104 Theory +hep-th/9510136 Theory +hep-th/9510212 Theory +hep-th/9511016 Theory +hep-th/9511116 Theory +hep-th/9601154 Theory +hep-th/9601167 Theory +hep-th/9602067 Theory +hep-th/9602135 Theory +hep-th/9602136 Theory +hep-th/9602179 Theory +hep-th/9603090 Theory +hep-th/9603136 Theory +hep-th/9603195 Theory +hep-th/9604168 Theory +hep-th/9604193 Theory +hep-th/9604195 Theory +hep-th/9605121 Theory +hep-th/9605218 Theory +hep-th/9606052 Theory +hep-th/9606113 Theory +hep-th/9606157 Theory +hep-th/9606174 Theory +hep-th/9607075 Theory +hep-th/9607202 Theory +hep-th/9608050 Theory +hep-th/9608156 Theory +hep-th/9609085 Theory +hep-th/9609100 Theory +hep-th/9609106 Theory +hep-th/9609152 Theory +hep-th/9610074 Theory +hep-th/9610171 Theory +hep-th/9611140 Theory +hep-th/9611189 Theory +hep-th/9611207 Theory +hep-th/9612022 Theory +hep-th/9612031 Theory +hep-th/9612130 Theory +hep-th/9612183 Theory +hep-th/9701077 Theory +hep-th/9701136 Theory +hep-th/9702025 Theory +hep-th/9702075 Theory +hep-th/9702161 Theory +hep-th/9703138 Theory +hep-th/9703179 Theory +hep-th/9703216 Theory +nlin/0310036 Exactly Solvable and Integrable Systems +nucl-th/9412025 +nucl-th/9612049 +quant-ph/0506010 +0704.1142 +0810.3908 +0906.0259 Probability +0909.3726 +0912.2527 +1003.2771 +1004.3842 Computational Complexity +1006.0837 +1007.2682 +1007.5105 Algebraic Topology +1009.3146 Optics +1009.3647 Dynamical Systems +1102.3343 Statistical Mechanics +1105.0100 Optics +1105.3836 Popular Physics +1105.5578 Statistics Theory +1106.3541 Optics +1109.2125 Optics +1110.6587 +1201.3534 Optics +1205.0508 Fluid Dynamics +1205.2131 +1207.1143 Optics +1208.1373 Algebraic Geometry +1209.5147 Fluid Dynamics +1212.6536 Materials Science +1302.0438 Optics +1303.5021 Combinatorics +1303.6223 Machine Learning +1304.8033 Combinatorics +1305.1834 Optics +1305.4793 Pattern Formation and Solitons +1305.5150 Phenomenology +1307.0426 Computer Vision and Pattern Recognition +1307.2681 Fluid Dynamics +1307.2820 Atomic Physics +1307.4566 Networking and Internet Architecture +1310.1650 Number Theory +1310.1682 Probability +1310.3287 Soft Condensed Matter +1310.4544 +1310.5589 Group Theory +1310.6845 Analysis of PDEs +1311.1405 Functional Analysis +1311.1766 Analysis of PDEs +1311.5179 Statistics Theory +1312.4081 Exactly Solvable and Integrable Systems +1401.2111 Geometric Topology +1401.5659 High Energy Astrophysical Phenomena +1402.0599 Information Theory +1402.1989 Mesoscale and Nanoscale Physics +1402.5539 Probability +1402.6778 Classical Analysis and ODEs +1403.1540 +1403.5270 Astrophysics of Galaxies +1404.1494 Logic +1404.1973 Fluid Dynamics +1404.5813 Distributed, Parallel, and Cluster Computing +1404.6795 Astrophysics of Galaxies +1404.7033 Differential Geometry +1405.6978 Numerical Analysis +1406.1202 Solar and Stellar Astrophysics +1407.0032 +1407.0838 +1407.2389 Fluid Dynamics +1407.3321 Geometric Topology +1407.4165 Differential Geometry +1407.5040 Other Computer Science +1408.0273 Optics +1408.0276 Theory +1408.3391 +1408.3948 Analysis of PDEs +1408.4818 General Topology +1409.3711 Combinatorics +1410.0777 Algebraic Geometry +1410.2448 Algebraic Geometry +1410.4172 +1410.5292 Combinatorics +1411.0657 Optics +1411.3754 +1412.0210 Superconductivity +1412.1111 Astrophysics of Galaxies +1412.7725 Computer Vision and Pattern Recognition +1412.8397 Statistics Theory +1412.8762 Statistical Mechanics +1501.01812 Complex Variables +1501.03853 Disordered Systems and Neural Networks +1501.03916 +1501.04092 Mesoscale and Nanoscale Physics +1501.04489 Algebraic Geometry +1501.04569 Phenomenology +1501.04704 Information Theory +1501.06100 +1501.07131 Formal Languages and Automata Theory +1501.07148 Solar and Stellar Astrophysics +1501.07840 Probability +1502.00136 Astrophysics of Galaxies +1502.01262 +1502.01300 Soft Condensed Matter +1502.01947 Astrophysics of Galaxies +1502.03799 Solar and Stellar Astrophysics +1502.05493 +1502.07354 Cosmology and Nongalactic Astrophysics +1502.07931 Superconductivity +1502.07969 Molecular Networks +1503.00811 Fluid Dynamics +1503.00891 Dynamical Systems +1503.00913 Trading and Market Microstructure +1503.00925 Physics and Society +1503.01775 Cosmology and Nongalactic Astrophysics +1503.01817 Multimedia +1503.03908 Theory +1503.04056 Cosmology and Nongalactic Astrophysics +1503.04059 Quantitative Methods +1503.05868 Mesoscale and Nanoscale Physics +1503.06862 Mesoscale and Nanoscale Physics +1503.08470 Solar and Stellar Astrophysics +1503.08572 Logic +1504.01958 Optics +1504.02200 High Energy Astrophysical Phenomena +1504.04263 Information Theory +1504.05246 Solar and Stellar Astrophysics +1504.05706 Populations and Evolution +1504.05891 Information Theory +1504.06284 Astrophysics of Galaxies +1504.07451 Experiment +1505.00216 Astrophysics of Galaxies +1505.00286 +1505.01949 Methodology +1505.03034 +1505.03431 Methodology +1505.03854 Physics and Society +1505.03987 Earth and Planetary Astrophysics +1505.04346 Molecular Networks +1505.04605 Materials Science +1505.06948 Cosmology and Nongalactic Astrophysics +1505.07218 +1505.07446 Algebraic Geometry +1505.07909 Computation and Language +1506.00855 +1506.00889 Adaptation and Self-Organizing Systems +1506.00964 Mesoscale and Nanoscale Physics +1506.01441 Solar and Stellar Astrophysics +1506.01703 High Energy Astrophysical Phenomena +1506.02076 Biomolecules +1506.02123 +1506.02266 Mesoscale and Nanoscale Physics +1506.02826 Geometric Topology +1506.02892 Cosmology and Nongalactic Astrophysics +1506.03022 Social and Information Networks +1506.03496 +1506.03944 Distributed, Parallel, and Cluster Computing +1506.03959 High Energy Astrophysical Phenomena +1506.05171 Quantitative Methods +1506.05705 Mesoscale and Nanoscale Physics +1506.06141 Phenomenology +1506.06187 Materials Science +1506.06381 Phenomenology +1506.06822 Information Theory +1506.06949 Phenomenology +1506.07564 Computation +1506.07578 Soft Condensed Matter +1506.08168 Biological Physics +1506.09165 Mesoscale and Nanoscale Physics +1507.00116 Biological Physics +1507.00812 +1507.01312 Materials Science +1507.01532 Cosmology and Nongalactic Astrophysics +1507.02049 Computer Vision and Pattern Recognition +1507.02308 Phenomenology +1507.02694 High Energy Astrophysical Phenomena +1507.02829 Dynamical Systems +1507.03451 Soft Condensed Matter +1507.03627 Spectral Theory +1507.04049 High Energy Astrophysical Phenomena +1507.04178 Quantitative Methods +1507.04385 Cosmology and Nongalactic Astrophysics +1507.05074 Statistical Mechanics +1507.05366 Statistics Theory +1507.05807 Optics +1507.05917 +1507.06027 Soft Condensed Matter +1507.06351 Disordered Systems and Neural Networks +1507.08268 Information Theory +1507.08487 Spectral Theory +1507.08852 +1508.00033 +1508.00832 Dynamical Systems +1508.01356 Astrophysics of Galaxies +1508.01772 Materials Science +1508.01849 +1508.01919 High Energy Astrophysical Phenomena +1508.02401 Theory +1508.02424 Disordered Systems and Neural Networks +1508.02805 Computational Physics +1508.03241 Earth and Planetary Astrophysics +1508.03429 +1508.03520 Probability +1508.04184 Strongly Correlated Electrons +1508.04692 Cell Behavior +1508.05676 Solar and Stellar Astrophysics +1508.06340 +1508.06409 Astrophysics of Galaxies +1508.06412 Solar and Stellar Astrophysics +1508.07571 Molecular Networks +1508.07642 Probability +1509.00639 Astrophysics of Galaxies +1509.00731 Information Theory +1509.00862 +1509.01239 +1509.01246 Strongly Correlated Electrons +1509.01721 Solar and Stellar Astrophysics +1509.01879 Cosmology and Nongalactic Astrophysics +1509.02187 Pattern Formation and Solitons +1509.02267 Systems and Control +1509.02343 Theory +1509.02350 Probability +1509.02389 Numerical Analysis +1509.02450 Populations and Evolution +1509.02639 +1509.02936 Phenomenology +1509.02969 High Energy Astrophysical Phenomena +1509.03180 +1509.03310 Cosmology and Nongalactic Astrophysics +1509.03580 Dynamical Systems +1509.03775 Other Quantitative Biology +1509.03981 Mesoscale and Nanoscale Physics +1509.04299 Mesoscale and Nanoscale Physics +1509.04592 +1509.04629 Computational Physics +1509.04662 +1509.04723 Materials Science +1509.05083 Physics and Society +1509.05148 Statistical Mechanics +1509.05367 Analysis of PDEs +1509.05380 +1509.05558 +1509.05622 +1509.05691 Strongly Correlated Electrons +1509.06038 +1509.06145 Statistical Mechanics +1509.06342 Strongly Correlated Electrons +1509.06434 Discrete Mathematics +1509.06578 Biological Physics +1509.06643 Materials Science +1509.06684 Mesoscale and Nanoscale Physics +1509.06709 General Physics +1509.06738 Phenomenology +1509.06746 +1509.06873 Analysis of PDEs +1509.07131 Cosmology and Nongalactic Astrophysics +1509.07377 Logic +1509.07385 Machine Learning +1509.07399 Superconductivity +1509.07500 +1509.08298 Materials Science +1509.08429 +1509.08682 +1509.08732 Earth and Planetary Astrophysics +1509.08752 Materials Science +1509.08825 Computational Complexity +1509.08974 Quantum Gases +1510.00166 Mesoscale and Nanoscale Physics +1510.00294 Phenomenology +1510.00524 Mesoscale and Nanoscale Physics +1510.00718 Astrophysics of Galaxies +1510.00775 Methodology +1510.00875 Atmospheric and Oceanic Physics +1510.01109 Solar and Stellar Astrophysics +1510.01195 Populations and Evolution +1510.01503 Mesoscale and Nanoscale Physics +1510.01936 Solar and Stellar Astrophysics +1510.02569 Strongly Correlated Electrons +1510.02778 Materials Science +1510.02919 Materials Science +1510.03007 Dynamical Systems +1510.03431 Cosmology and Nongalactic Astrophysics +1510.03556 Solar and Stellar Astrophysics +1510.04075 Cosmology and Nongalactic Astrophysics +1510.04110 Optics +1510.04372 High Energy Astrophysical Phenomena +1510.04664 Solar and Stellar Astrophysics +1510.04703 Astrophysics of Galaxies +1510.04927 Mesoscale and Nanoscale Physics +1510.05100 General Topology +1510.05392 Superconductivity +1510.05515 +1510.05539 Astrophysics of Galaxies +1510.05545 Cosmology and Nongalactic Astrophysics +1510.05648 Astrophysics of Galaxies +1510.05868 Disordered Systems and Neural Networks +1510.06296 Soft Condensed Matter +1510.06426 Atomic Physics +1510.06498 Astrophysics of Galaxies +1510.06675 Phenomenology +1510.07005 Optics +1510.07662 High Energy Astrophysical Phenomena +1510.07806 Disordered Systems and Neural Networks +1510.07909 +1510.07994 Cosmology and Nongalactic Astrophysics +1510.08400 +1510.08639 Materials Science +1510.08685 Materials Science +1510.09028 Differential Geometry +1510.09165 Earth and Planetary Astrophysics +1510.09168 Pattern Formation and Solitons +1511.00238 High Energy Astrophysical Phenomena +1511.00299 Mesoscale and Nanoscale Physics +1511.00606 Mesoscale and Nanoscale Physics +1511.00692 Cosmology and Nongalactic Astrophysics +1511.00841 Phenomenology +1511.00957 Solar and Stellar Astrophysics +1511.01231 +1511.01384 +1511.01679 +1511.01723 +1511.01892 Emerging Technologies +1511.02014 Computation and Language +1511.02116 High Energy Astrophysical Phenomena +1511.02133 Atomic Physics +1511.02238 +1511.02891 High Energy Astrophysical Phenomena +1511.03076 Cosmology and Nongalactic Astrophysics +1511.03460 Differential Geometry +1511.03514 +1511.03663 Earth and Planetary Astrophysics +1511.04391 Cosmology and Nongalactic Astrophysics +1511.04439 +1511.04819 Atomic Physics +1511.04829 +1511.04905 Mesoscale and Nanoscale Physics +1511.04936 Biological Physics +1511.04991 General Physics +1511.05037 Materials Science +1511.05332 Differential Geometry +1511.05446 +1511.05487 Solar and Stellar Astrophysics +1511.05695 Theory +1511.05974 Phenomenology +1511.06321 Learning +1511.06624 Computational Geometry +1511.06645 Computer Vision and Pattern Recognition +1511.06671 Strongly Correlated Electrons +1511.07054 Astrophysics of Galaxies +1511.07282 Mesoscale and Nanoscale Physics +1511.07487 Social and Information Networks +1511.07746 High Energy Astrophysical Phenomena +1511.07873 Astrophysics of Galaxies +1511.07950 Superconductivity +1511.08024 +1511.08036 +1511.08092 +1511.08126 Materials Science +1511.08400 Neural and Evolutionary Computing +1511.08445 Quantitative Methods +1511.08519 Instrumentation and Methods for Astrophysics +1511.08654 +1511.08679 Earth and Planetary Astrophysics +1511.08801 +1511.08811 Solar and Stellar Astrophysics +1511.09071 Lattice +1511.09318 Soft Condensed Matter +1511.09434 Instrumentation and Detectors +1511.09468 Neurons and Cognition +1512.00128 Applications +1512.00462 Astrophysics of Galaxies +1512.00756 Strongly Correlated Electrons +1512.00763 Statistical Mechanics +1512.00782 Superconductivity +1512.00978 Quantum Gases +1512.01175 Phenomenology +1512.01481 Probability +1512.01651 Astrophysics of Galaxies +1512.01674 +1512.01968 Computational Complexity +1512.01979 Numerical Analysis +1512.02083 +1512.02205 Cosmology and Nongalactic Astrophysics +1512.02417 Materials Science +1512.02638 Instrumentation and Methods for Astrophysics +1512.02982 Fluid Dynamics +1512.03064 Astrophysics of Galaxies +1512.03125 Optics +1512.03157 Theory +1512.03217 Lattice +1512.03339 Mesoscale and Nanoscale Physics +1512.03386 Fluid Dynamics +1512.03402 Cosmology and Nongalactic Astrophysics +1512.03837 Theory +1512.03894 Theory +1512.04094 Theory +1512.04278 Mesoscale and Nanoscale Physics +1512.04955 +1512.05011 Phenomenology +1512.05072 +1512.05747 Strongly Correlated Electrons +1512.05751 Phenomenology +1512.05779 Phenomenology +1512.05911 +1512.06055 Optics +1512.06165 Phenomenology +1512.06436 Phenomenology +1512.06455 Cosmology and Nongalactic Astrophysics +1512.06481 Mesoscale and Nanoscale Physics +1512.06507 Cosmology and Nongalactic Astrophysics +1512.06977 +1512.07011 Mesoscale and Nanoscale Physics +1512.07180 Lattice +1512.07298 Solar and Stellar Astrophysics +1512.07367 Quantum Gases +1512.07407 +1512.07533 Computational Geometry +1512.07729 Computer Vision and Pattern Recognition +1512.07854 +1512.07916 Cosmology and Nongalactic Astrophysics +1512.08330 Solar and Stellar Astrophysics +1512.08412 Mesoscale and Nanoscale Physics +1512.08441 Phenomenology +1512.08470 Soft Condensed Matter +1512.09025 Optics +1512.09056 +1512.09063 Phenomenology +1512.09097 Phenomenology +1512.09149 High Energy Astrophysical Phenomena +1512.09350 General Physics +1601.00346 Systems and Control +1601.00452 Earth and Planetary Astrophysics +1601.00613 Operator Algebras +1601.00900 Applications +1601.00922 Strongly Correlated Electrons +1601.01179 Theory +1601.01287 Theory +1601.01438 Fluid Dynamics +1601.01551 Mesoscale and Nanoscale Physics +1601.01741 Algebraic Topology +1601.01949 Phenomenology +1601.02342 Solar and Stellar Astrophysics +1601.02412 +1601.02445 Mesoscale and Nanoscale Physics +1601.02469 Mesoscale and Nanoscale Physics +1601.02725 Algebraic Geometry +1601.02907 Algebraic Geometry +1601.02911 Algebraic Geometry +1601.03058 Cosmology and Nongalactic Astrophysics +1601.03114 Number Theory +1601.03158 Chemical Physics +1601.03493 +1601.04130 Differential Geometry +1601.04513 +1601.04649 Cosmology and Nongalactic Astrophysics +1601.04788 Phenomenology +1601.04920 Machine Learning +1601.05093 Phenomenology +1601.05143 Earth and Planetary Astrophysics +1601.05192 Astrophysics of Galaxies +1601.05245 Experiment +1601.05342 Mesoscale and Nanoscale Physics +1601.05500 +1601.05565 Astrophysics of Galaxies +1601.05592 Experiment +1601.05650 Information Theory +1601.05733 Solar and Stellar Astrophysics +1601.05795 +1601.06163 Phenomenology +1601.06189 Materials Science +1601.06593 Logic +1601.06605 Materials Science +1601.06636 Optimization and Control +1601.06791 Astrophysics of Galaxies +1601.07042 Astrophysics of Galaxies +1601.07130 Mesoscale and Nanoscale Physics +1601.07167 Phenomenology +1601.07173 Astrophysics of Galaxies +1601.07510 +1601.07523 Phenomenology +1601.07552 +1601.07559 Astrophysics of Galaxies +1601.07595 Earth and Planetary Astrophysics +1601.07726 Quantum Gases +1601.07787 Phenomenology +1601.08058 +1602.00011 Astrophysics of Galaxies +1602.00272 Strongly Correlated Electrons +1602.00501 Instrumentation and Methods for Astrophysics +1602.00628 Mesoscale and Nanoscale Physics +1602.00632 Theory +1602.00707 Solar and Stellar Astrophysics +1602.00735 Theory +1602.00840 Soft Condensed Matter +1602.00873 Strongly Correlated Electrons +1602.00936 Theory +1602.00993 Astrophysics of Galaxies +1602.01015 Cosmology and Nongalactic Astrophysics +1602.01078 Theory +1602.01195 Solar and Stellar Astrophysics +1602.01234 +1602.01356 Chaotic Dynamics +1602.01390 Phenomenology +1602.01442 Physics and Society +1602.01447 Strongly Correlated Electrons +1602.01502 +1602.01550 High Energy Astrophysical Phenomena +1602.01854 Astrophysics of Galaxies +1602.01901 Solar and Stellar Astrophysics +1602.01912 Solar and Stellar Astrophysics +1602.01967 Earth and Planetary Astrophysics +1602.01986 Algebraic Geometry +1602.02167 Instrumentation and Methods for Astrophysics +1602.02303 Superconductivity +1602.02674 Cosmology and Nongalactic Astrophysics +1602.02770 Astrophysics of Galaxies +1602.02914 +1602.03037 Earth and Planetary Astrophysics +1602.03189 Astrophysics of Galaxies +1602.03261 +1602.03289 Solar and Stellar Astrophysics +1602.03385 Cosmology and Nongalactic Astrophysics +1602.03517 Optics +1602.03544 +1602.03696 Solar and Stellar Astrophysics +1602.03879 High Energy Astrophysical Phenomena +1602.03928 Astrophysics of Galaxies +1602.04035 Phenomenology +1602.04362 Earth and Planetary Astrophysics +1602.04447 Solar and Stellar Astrophysics +1602.04646 Instrumentation and Detectors +1602.04751 Earth and Planetary Astrophysics +1602.04766 +1602.04782 +1602.04953 +1602.05027 Superconductivity +1602.05140 High Energy Astrophysical Phenomena +1602.05304 Functional Analysis +1602.05315 Space Physics +1602.05325 Astrophysics of Galaxies +1602.05743 Fluid Dynamics +1602.05865 Geometric Topology +1602.05963 Earth and Planetary Astrophysics +1602.06296 Solar and Stellar Astrophysics +1602.06327 High Energy Astrophysical Phenomena +1602.06345 Optics +1602.06355 Solar and Stellar Astrophysics +1602.06587 Astrophysics of Galaxies +1602.06596 Chaotic Dynamics +1602.06743 Cosmology and Nongalactic Astrophysics +1602.06764 High Energy Astrophysical Phenomena +1602.06883 Solar and Stellar Astrophysics +1602.06890 +1602.07080 Optimization and Control +1602.07246 High Energy Astrophysical Phenomena +1602.07318 Solar and Stellar Astrophysics +1602.07465 Earth and Planetary Astrophysics +1602.07598 Solar and Stellar Astrophysics +1602.07604 Astrophysics of Galaxies +1602.07635 Solar and Stellar Astrophysics +1602.07711 Cosmology and Nongalactic Astrophysics +1602.08092 Phenomenology +1602.08112 Strongly Correlated Electrons +1602.08197 Computational Physics +1602.08374 Physics and Society +1602.08404 Phenomenology +1602.08434 Cosmology and Nongalactic Astrophysics +1602.08644 Applications +1602.08748 Cosmology and Nongalactic Astrophysics +1602.08770 Cosmology and Nongalactic Astrophysics +1602.08810 Medical Physics +1602.08976 Soft Condensed Matter +1603.00135 Optics +1603.00355 Strongly Correlated Electrons +1603.00463 Astrophysics of Galaxies +1603.00484 Earth and Planetary Astrophysics +1603.00559 Phenomenology +1603.00606 Materials Science +1603.00655 Solar and Stellar Astrophysics +1603.00876 Astrophysics of Galaxies +1603.00891 High Energy Astrophysical Phenomena +1603.00967 Instrumentation and Methods for Astrophysics +1603.01009 Earth and Planetary Astrophysics +1603.01048 High Energy Astrophysical Phenomena +1603.01088 High Energy Astrophysical Phenomena +1603.01090 Other Computer Science +1603.01225 Mesoscale and Nanoscale Physics +1603.01522 Phenomenology +1603.01558 Theory +1603.01572 Astrophysics of Galaxies +1603.01588 Mesoscale and Nanoscale Physics +1603.01616 Astrophysics of Galaxies +1603.01632 Solar and Stellar Astrophysics +1603.01666 Solar and Stellar Astrophysics +1603.01703 Astrophysics of Galaxies +1603.01728 High Energy Astrophysical Phenomena +1603.01741 Solar and Stellar Astrophysics +1603.01862 Earth and Planetary Astrophysics +1603.01910 Astrophysics of Galaxies +1603.01933 High Energy Astrophysical Phenomena +1603.01969 Algebraic Topology +1603.02143 Phenomenology +1603.02202 Astrophysics of Galaxies +1603.02265 Populations and Evolution +1603.02302 Astrophysics of Galaxies +1603.02363 Astrophysics of Galaxies +1603.02369 Strongly Correlated Electrons +1603.02459 Accelerator Physics +1603.02697 Solar and Stellar Astrophysics +1603.02785 High Energy Astrophysical Phenomena +1603.02809 Solar and Stellar Astrophysics +1603.03090 Earth and Planetary Astrophysics +1603.03091 Cosmology and Nongalactic Astrophysics +1603.03166 Statistical Mechanics +1603.03559 Solar and Stellar Astrophysics +1603.03731 Solar and Stellar Astrophysics +1603.03801 Astrophysics of Galaxies +1603.04256 Solar and Stellar Astrophysics +1603.04282 Solar and Stellar Astrophysics +1603.04640 High Energy Astrophysical Phenomena +1603.04673 Solar and Stellar Astrophysics +1603.04768 Solar and Stellar Astrophysics +1603.04909 Astrophysics of Galaxies +1603.04998 High Energy Astrophysical Phenomena +1603.05166 Instrumentation and Methods for Astrophysics +1603.05244 Optimization and Control +1603.05302 +1603.05370 Solar and Stellar Astrophysics +1603.05622 Astrophysics of Galaxies +1603.06344 Information Theory +1603.06347 +1603.06355 High Energy Astrophysical Phenomena +1603.06395 Instrumentation and Methods for Astrophysics +1603.06578 Astrophysics of Galaxies +1603.06614 Phenomenology +1603.06670 Solar and Stellar Astrophysics +1603.06735 Solar and Stellar Astrophysics +1603.06745 Solar and Stellar Astrophysics +1603.06911 Earth and Planetary Astrophysics +1603.06993 +1603.07062 Solar and Stellar Astrophysics +1603.07189 Solar and Stellar Astrophysics +1603.07236 Sound +1603.07514 Theory +1603.07583 Solar and Stellar Astrophysics +1603.07652 Mesoscale and Nanoscale Physics +1603.07723 Cosmology and Nongalactic Astrophysics +1603.07880 Functional Analysis +1603.07985 Solar and Stellar Astrophysics +1603.08096 Astrophysics of Galaxies +1603.08391 Differential Geometry +1603.08435 Statistical Mechanics +1603.08529 Solar and Stellar Astrophysics +1603.08892 Astrophysics of Galaxies +1603.08943 Instrumentation and Methods for Astrophysics +1603.09004 Spectral Theory +1603.09053 Symplectic Geometry +1603.09167 Solar and Stellar Astrophysics +1603.09343 Solar and Stellar Astrophysics +1603.09593 Astrophysics of Galaxies +1603.09719 Earth and Planetary Astrophysics +1604.00144 Astrophysics of Galaxies +1604.00152 Solar and Stellar Astrophysics +1604.00887 High Energy Astrophysical Phenomena +1604.01205 Instrumentation and Methods for Astrophysics +1604.01241 Solar and Stellar Astrophysics +1604.01255 Phenomenology +1604.01307 Solar and Stellar Astrophysics +1604.01400 Astrophysics of Galaxies +1604.01510 Solar and Stellar Astrophysics +1604.01523 Astrophysics of Galaxies +1604.01563 Instrumentation and Methods for Astrophysics +1604.01571 High Energy Astrophysical Phenomena +1604.01923 Astrophysics of Galaxies +1604.01987 High Energy Astrophysical Phenomena +1604.02092 Phenomenology +1604.02150 Cosmology and Nongalactic Astrophysics +1604.02162 Solar and Stellar Astrophysics +1604.02176 Solar and Stellar Astrophysics +1604.02192 Astrophysics of Galaxies +1604.02252 Solar and Stellar Astrophysics +1604.02276 Solar and Stellar Astrophysics +1604.02310 Earth and Planetary Astrophysics +1604.02570 Materials Science +1604.02661 High Energy Astrophysical Phenomena +1604.02679 Solar and Stellar Astrophysics +1604.02816 Theory +1604.02901 Information Theory +1604.03018 Solar and Stellar Astrophysics +1604.03031 Solar and Stellar Astrophysics +1604.03059 Astrophysics of Galaxies +1604.03135 Earth and Planetary Astrophysics +1604.03143 Earth and Planetary Astrophysics +1604.03254 Cosmology and Nongalactic Astrophysics +1604.03372 High Energy Astrophysical Phenomena +1604.03556 High Energy Astrophysical Phenomena +1604.03559 Astrophysics of Galaxies +1604.03562 High Energy Astrophysical Phenomena +1604.03623 High Energy Astrophysical Phenomena +1604.03624 Astrophysics of Galaxies +1604.03631 Astrophysics of Galaxies +1604.03899 Solar and Stellar Astrophysics +1604.03942 Solar and Stellar Astrophysics +1604.03978 Astrophysics of Galaxies +1604.03994 Astrophysics of Galaxies +1604.04031 Astrophysics of Galaxies +1604.04284 Solar and Stellar Astrophysics +1604.04637 Optimization and Control +1604.04901 Geometric Topology +1604.04921 Numerical Analysis +1604.05040 Solar and Stellar Astrophysics +1604.05228 Numerical Analysis +1604.05230 Complex Variables +1604.05310 Astrophysics of Galaxies +1604.05388 Astrophysics of Galaxies +1604.05513 Data Analysis, Statistics and Probability +1604.05620 +1604.05644 High Energy Astrophysical Phenomena +1604.05682 Solar and Stellar Astrophysics +1604.05720 Astrophysics of Galaxies +1604.05721 High Energy Astrophysical Phenomena +1604.05730 High Energy Astrophysical Phenomena +1604.05897 Emerging Technologies +1604.05906 Earth and Planetary Astrophysics +1604.05946 High Energy Astrophysical Phenomena +1604.06106 Astrophysics of Galaxies +1604.06120 Cosmology and Nongalactic Astrophysics +1604.06266 Data Analysis, Statistics and Probability +1604.06593 Astrophysics of Galaxies +1604.06626 Learning +1604.06668 +1604.06857 Theory +1604.06955 Chemical Physics +1604.07097 Artificial Intelligence +1604.07103 Social and Information Networks +1604.07164 Symplectic Geometry +1604.07176 Biomolecules +1604.07183 Artificial Intelligence +1604.07223 Dynamical Systems +1604.07229 General Mathematics +1604.07264 Methodology +1604.07382 Probability +1604.07389 Materials Science +1604.07390 Metric Geometry +1604.07391 Data Analysis, Statistics and Probability +1604.07393 Functional Analysis +1604.07394 Fluid Dynamics +1604.07395 Fluid Dynamics +1604.07396 Functional Analysis +1604.07397 Other Statistics +1604.07398 High Energy Astrophysical Phenomena +1604.07402 Astrophysics of Galaxies +1604.07407 Computation and Language +1604.07417 Phenomenology +1604.07420 Differential Geometry +1604.07422 +1604.07426 Computational Engineering, Finance, and Science +1604.07427 Computational Engineering, Finance, and Science +1604.07429 Artificial Intelligence +1604.07432 Computational Complexity +1604.07434 Astrophysics of Galaxies +1604.07436 +1604.07442 Solar and Stellar Astrophysics +1604.07445 Combinatorics +1604.07446 Robotics +1604.07447 Classical Physics +1604.07449 Statistics Theory +1604.07452 +1604.07456 Combinatorics +1604.07457 Neurons and Cognition +1604.07458 Quantum Gases +1604.07462 +1604.07463 Machine Learning +1604.07464 Methodology +1604.07468 Computer Vision and Pattern Recognition +1604.07472 Rings and Algebras +1604.07474 Software Engineering +1604.07481 +1604.07482 Soft Condensed Matter +1604.07484 Learning +1604.07485 +1604.07488 Functional Analysis +1604.07492 Soft Condensed Matter +1604.07495 Number Theory +1604.07499 Computer Vision and Pattern Recognition +1604.07500 Algebraic Geometry +1604.07504 Space Physics +1604.07506 Information Theory +1604.07507 Computer Vision and Pattern Recognition +1604.07510 Cryptography and Security +1604.07517 +1604.07519 Multimedia +1604.07520 Statistics Theory +1604.07521 Information Retrieval +1604.07523 General Topology +1604.07526 Analysis of PDEs +1604.07528 Computer Vision and Pattern Recognition +1604.07530 Logic in Computer Science +1604.07533 Functional Analysis +1604.07534 Mesoscale and Nanoscale Physics +1604.07535 Data Structures and Algorithms +1604.07539 Networking and Internet Architecture +1604.07540 Computer Science and Game Theory +1604.07541 Mesoscale and Nanoscale Physics +1604.07546 Mesoscale and Nanoscale Physics +1604.07550 Quantum Algebra +1604.07553 Computational Complexity +1604.07554 Computer Vision and Pattern Recognition +1604.07555 Geometric Topology +1604.07556 Trading and Market Microstructure +1604.07559 Analysis of PDEs +1604.07563 Differential Geometry +1604.07564 Distributed, Parallel, and Cluster Computing +1604.07566 Number Theory +1604.07567 Materials Science +1604.07570 Functional Analysis +1604.07572 Networking and Internet Architecture +1604.07573 Phenomenology +1604.07575 Functional Analysis +1604.07578 +1604.07579 Popular Physics +1604.07584 High Energy Astrophysical Phenomena +1604.07585 Algebraic Geometry +1604.07586 Functional Analysis +1604.07591 Representation Theory +1604.07592 Complex Variables +1604.07593 Multimedia +1604.07596 Numerical Analysis +1604.07597 Complex Variables +1604.07606 Rings and Algebras +1604.07607 Numerical Analysis +1604.07615 Metric Geometry +1604.07618 Complex Variables +1604.07621 Networking and Internet Architecture +1604.07625 Artificial Intelligence +1604.07626 Cosmology and Nongalactic Astrophysics +1604.07627 Methodology +1604.07628 +1604.07629 Complex Variables +1604.07630 Metric Geometry +1604.07631 Probability +1604.07634 Computer Science and Game Theory +1604.07635 Dynamical Systems +1604.07639 +1604.07643 Analysis of PDEs +1604.07644 Number Theory +1604.07645 Chemical Physics +1604.07649 Tissues and Organs +1604.07651 Numerical Analysis +1604.07654 +1604.07656 Commutative Algebra +1604.07657 Analysis of PDEs +1604.07658 Optimization and Control +1604.07660 Human-Computer Interaction +1604.07661 Optimization and Control +1604.07667 Biomolecules +1604.07668 Numerical Analysis +1604.07669 Computer Vision and Pattern Recognition +1604.07670 Complex Variables +1604.07673 +1604.07675 Analysis of PDEs +1604.07676 Analysis of PDEs +1604.07679 Networking and Internet Architecture +1604.07681 Computer Vision and Pattern Recognition +1604.07686 Fluid Dynamics +1604.07689 Applications +1604.07691 Algebraic Geometry +1604.07694 Analysis of PDEs +1604.07695 Differential Geometry +1604.07698 Combinatorics +1604.07699 Analysis of PDEs +1604.07700 Solar and Stellar Astrophysics +1604.07702 Differential Geometry +1604.07704 Artificial Intelligence +1604.07705 Probability +1604.07707 Probability +1604.07709 Computational Physics +1604.07710 Combinatorics +1604.07715 Materials Science +1604.07724 Computational Complexity +1604.07725 Earth and Planetary Astrophysics +1604.07731 Geophysics +1604.07732 Spectral Theory +1604.07735 Dynamical Systems +1604.07736 Group Theory +1604.07737 Analysis of PDEs +1604.07738 Instrumentation and Detectors +1604.07739 Number Theory +1604.07744 +1604.07745 +1604.07746 Number Theory +1604.07748 Quantum Algebra +1604.07750 Statistics Theory +1604.07756 Analysis of PDEs +1604.07758 Functional Analysis +1604.07761 Astrophysics of Galaxies +1604.07764 +1604.07766 +1604.07768 Mesoscale and Nanoscale Physics +1604.07769 Networking and Internet Architecture +1604.07774 Number Theory +1604.07775 Atomic Physics +1604.07778 Physics and Society +1604.07780 Strongly Correlated Electrons +1604.07781 Social and Information Networks +1604.07782 General Finance +1604.07783 Physics and Society +1604.07784 Plasma Physics +1604.07787 Differential Geometry +1604.07788 Computer Vision and Pattern Recognition +1604.07789 Materials Science +1604.07792 Classical Physics +1604.07796 Neural and Evolutionary Computing +1604.07797 Rings and Algebras +1604.07800 Computational Complexity +1604.07803 Emerging Technologies +1604.07805 Distributed, Parallel, and Cluster Computing +1604.07806 Artificial Intelligence +1604.07809 Computation and Language +1604.07811 Combinatorics +1604.07819 Mesoscale and Nanoscale Physics +astro-ph/0605623 +gr-qc/9912119 +hep-th/0501138 Theory +hep-th/0608030 Theory +nucl-th/9909020 +0706.1929 General Mathematics +1111.7093 +1207.5845 Classical Analysis and ODEs +1211.2308 Complex Variables +1211.6182 Combinatorics +1301.0994 Logic +1301.1005 +1301.1602 Commutative Algebra +1301.3095 Biomolecules +1301.3136 Strongly Correlated Electrons +1301.3354 Mesoscale and Nanoscale Physics +1301.4486 +1301.4632 Algebraic Geometry +1301.4633 +1301.4853 Combinatorics +1301.5923 Numerical Analysis +1301.6459 Accelerator Physics +1301.6462 +1301.6642 Astrophysics of Galaxies +1301.7224 +1301.7249 Probability +1301.7493 Mesoscale and Nanoscale Physics +1301.7529 +1302.0062 Materials Science +1302.0160 Functional Analysis +1302.0471 Number Theory +1302.0588 +1302.1224 Digital Libraries +1302.1859 Algebraic Geometry +1302.2809 Differential Geometry +1302.3438 Probability +1302.3570 Artificial Intelligence +1302.3588 Artificial Intelligence +1302.4497 +1302.4507 Statistical Mechanics +1302.5654 Combinatorics +1302.5681 Computer Science and Game Theory +1302.6616 Astrophysics of Galaxies +1302.6621 Atomic Physics +1302.6838 Methodology +1303.0316 Cosmology and Nongalactic Astrophysics +1303.3028 Solar and Stellar Astrophysics +1305.2125 Classical Analysis and ODEs +1309.2720 Optimization and Control +1309.5034 Classical Physics +1310.5344 Algebraic Geometry +1310.5585 Statistical Mechanics +1311.6926 Number Theory +1401.3026 Optimization and Control +1403.6764 Optimization and Control +1405.0475 Analysis of PDEs +1405.0568 Logic +1406.1671 Combinatorics +1406.5725 Operator Algebras +1406.5907 Analysis of PDEs +1407.0678 Symplectic Geometry +1408.1262 Combinatorics +1408.5049 Materials Science +1408.5598 Probability +1409.0239 Number Theory +1409.0407 Portfolio Management +1409.0414 Strongly Correlated Electrons +1409.0745 Machine Learning +1409.1837 Theory +1409.1879 Software Engineering +1409.2169 Probability +1409.2721 Commutative Algebra +1409.3722 Astrophysics of Galaxies +1409.4250 Probability +1409.5202 Optimization and Control +1409.5547 Superconductivity +1409.5649 Quantum Gases +1409.5949 Rings and Algebras +1409.5950 Rings and Algebras +1409.5952 Rings and Algebras +1409.6032 Optimization and Control +1409.6033 Physics and Society +1409.6122 Probability +1409.6180 Rings and Algebras +1409.6464 Commutative Algebra +1409.7161 +1409.7368 Networking and Internet Architecture +1410.0580 Methodology +1410.1048 Theory +1410.1051 Astrophysics of Galaxies +1410.1518 Probability +1410.2188 Computer Vision and Pattern Recognition +1410.2347 Statistical Mechanics +1410.2387 Functional Analysis +1410.3422 Information Theory +1410.3946 Fluid Dynamics +1410.4312 Cryptography and Security +1410.4771 Cell Behavior +1410.5148 +1410.5515 +1410.5891 +1410.6113 +1410.6133 Chemical Physics +1410.6788 General Physics +1410.7626 Differential Geometry +1410.7829 Functional Analysis +1410.7845 Risk Management +1410.7866 Chemical Physics +1411.0049 Exactly Solvable and Integrable Systems +1411.0430 Strongly Correlated Electrons +1411.0617 Analysis of PDEs +1411.0908 General Topology +1411.1974 Theory +1411.2047 Performance +1411.2776 Operator Algebras +1411.3596 Cosmology and Nongalactic Astrophysics +1411.3938 Numerical Analysis +1411.5009 Complex Variables +1412.3789 Geometric Topology +1501.01818 Cosmology and Nongalactic Astrophysics +1501.02990 Machine Learning +1501.03474 Systems and Control +1501.04260 Systems and Control +1502.01179 Analysis of PDEs +1502.05028 Algebraic Geometry +1502.07384 Social and Information Networks +1503.00139 Combinatorics +1503.03034 Optimization and Control +1503.06403 Analysis of PDEs +1504.03364 Cosmology and Nongalactic Astrophysics +1504.05518 Classical Physics +1504.05734 Operator Algebras +1505.00195 Classical Analysis and ODEs +1506.02984 Statistics Theory +1506.03247 Plasma Physics +1506.03968 +1507.00256 Optics +1507.00844 Combinatorics +1507.01762 Computer Science and Game Theory +1507.01935 Earth and Planetary Astrophysics +1507.02465 Probability +1507.04006 Phenomenology +1507.07017 Social and Information Networks +1508.04761 +1508.06985 Optimization and Control +1508.07867 Algebraic Geometry +1509.01875 Mesoscale and Nanoscale Physics +1509.02139 Algebraic Geometry +1509.02495 +1509.05821 Combinatorics +1509.06446 Superconductivity +1509.09317 +1510.00505 Probability +1510.00506 Classical Analysis and ODEs +1510.05772 +1511.00657 +1511.01041 Differential Geometry +1511.01446 Distributed, Parallel, and Cluster Computing +1511.01529 General Finance +1511.03985 Algebraic Geometry +1511.04309 +1511.04858 Mesoscale and Nanoscale Physics +1511.05704 Materials Science +1511.08455 Dynamical Systems +1511.09203 Economics +1512.00196 Databases +1512.00412 +1512.03812 Numerical Analysis +1512.03975 Algebraic Geometry +1512.04286 Algebraic Geometry +1512.04290 Mesoscale and Nanoscale Physics +1512.04525 Theory +1512.04915 Theory +1512.05952 Mesoscale and Nanoscale Physics +1512.08612 Chemical Physics +1601.00389 Methodology +1601.00995 Mesoscale and Nanoscale Physics +1601.02323 Data Structures and Algorithms +1601.04734 Computers and Society +1601.05234 +1601.05399 Phenomenology +1601.06344 Applications +1601.06495 Classical Physics +1601.06784 High Energy Astrophysical Phenomena +1601.06971 Computation and Language +1602.01652 Social and Information Networks +1602.03072 Distributed, Parallel, and Cluster Computing +1602.03111 Social and Information Networks +1602.04484 Learning +1602.06228 High Energy Astrophysical Phenomena +1602.08667 Group Theory +1603.01524 Computer Science and Game Theory +1603.01786 Data Structures and Algorithms +1603.02628 Theory +1603.05013 Dynamical Systems +1603.05792 Optimization and Control +1603.06942 Phenomenology +1603.09026 Dynamical Systems +1604.02750 Networking and Internet Architecture +1604.02864 +1604.03387 Analysis of PDEs +1604.03870 Geometric Topology +1604.04392 Analysis of PDEs +1604.04445 Plasma Physics +1604.04647 Algebraic Topology +1604.06191 +1604.07222 +1604.07451 Statistics Theory +1604.08477 +1604.08903 Databases +1605.00230 Applications +1605.02755 Algebraic Geometry +1605.03031 Neurons and Cognition +1605.06398 Learning +1605.07420 Strongly Correlated Electrons +1605.07838 +1605.08697 Theory +1605.09649 Phenomenology +1605.09692 Statistical Mechanics +1606.00318 Statistical Mechanics +1606.00321 +1606.01841 Materials Science +1606.02414 Theory +1606.02489 Analysis of PDEs +1606.02771 Theory +1606.04155 Computation and Language +1606.04314 Functional Analysis +1606.04742 Analysis of PDEs +1606.04803 Functional Analysis +1606.06671 Geometric Topology +1606.07631 Cosmology and Nongalactic Astrophysics +1606.08011 Differential Geometry +1606.08769 Combinatorics +1607.00809 Optimization and Control +1607.01128 +1607.01285 Disordered Systems and Neural Networks +1607.01902 Optimization and Control +1607.02153 Phenomenology +1607.02817 Information Theory +1607.02938 Instrumentation and Methods for Astrophysics +1607.03467 Data Structures and Algorithms +1607.03815 Optimization and Control +1607.03938 Data Structures and Algorithms +1607.04229 Computational Complexity +1607.04877 Commutative Algebra +1607.04929 +1607.05342 Data Structures and Algorithms +1607.06470 Mesoscale and Nanoscale Physics +1607.06579 Analysis of PDEs +1608.00163 Physics and Society +1608.01700 Data Structures and Algorithms +1608.03517 Mesoscale and Nanoscale Physics +1608.04418 Social and Information Networks +1608.04444 Statistical Mechanics +1608.05239 Materials Science +1608.05430 Information Theory +1608.05835 Commutative Algebra +1608.07573 Distributed, Parallel, and Cluster Computing +1608.08104 Computer Vision and Pattern Recognition +1608.08183 High Energy Astrophysical Phenomena +1609.00285 Machine Learning +1609.00430 Chemical Physics +1609.00947 Commutative Algebra +1609.01271 Quantum Gases +1609.01931 Operator Algebras +1609.02091 Algebraic Geometry +1609.04112 Computer Vision and Pattern Recognition +1609.04524 +1609.04945 Superconductivity +1609.06482 Materials Science +1609.06720 Earth and Planetary Astrophysics +1609.08486 Distributed, Parallel, and Cluster Computing +1610.00036 Mesoscale and Nanoscale Physics +1610.00129 Cosmology and Nongalactic Astrophysics +1610.00695 Strongly Correlated Electrons +1610.01655 Social and Information Networks +1610.01969 Cryptography and Security +1610.01991 Cosmology and Nongalactic Astrophysics +1610.02297 Optics +1610.02643 Data Analysis, Statistics and Probability +1610.02990 Algebraic Geometry +1610.03714 +1610.05331 Probability +1610.05344 Number Theory +1610.05375 Optimization and Control +1610.05427 Numerical Analysis +1610.05743 Phenomenology +1610.06047 Representation Theory +1610.06489 Representation Theory +1610.06990 Commutative Algebra +1610.07267 Mesoscale and Nanoscale Physics +1610.07270 Complex Variables +1610.08337 +1610.08339 Algebraic Topology +1610.08636 Materials Science +1610.09096 Atomic Physics +1610.09147 Differential Geometry +1610.09366 Differential Geometry +1610.09758 Theory +1610.09985 Subcellular Processes +1611.00020 Computation and Language +1611.00021 Optics +1611.00045 Optics +1611.00077 Instrumentation and Detectors +1611.00099 +1611.00325 +1611.00378 Phenomenology +1611.00483 Computation and Language +1611.00601 Computation and Language +1611.00612 Chemical Physics +1611.00634 Mesoscale and Nanoscale Physics +1611.00659 Quantum Gases +1611.00670 Mesoscale and Nanoscale Physics +1611.00728 Lattice +1611.00760 +1611.00764 High Energy Astrophysical Phenomena +1611.00766 Instrumentation and Methods for Astrophysics +1611.00770 Disordered Systems and Neural Networks +1611.00771 Phenomenology +1611.00785 +1611.00786 Theory +1611.00788 Phenomenology +1611.00791 Cryptography and Security +1611.00796 Strongly Correlated Electrons +1611.00797 +1611.00798 Machine Learning +1611.00799 Astrophysics of Galaxies +1611.00800 Learning +1611.00801 Computation and Language +1611.00803 Instrumentation and Detectors +1611.00805 Atomic Physics +1611.00806 Fluid Dynamics +1611.00807 Fluid Dynamics +1611.00808 Theory +1611.00811 Earth and Planetary Astrophysics +1611.00812 Information Retrieval +1611.00813 Functional Analysis +1611.00815 Exactly Solvable and Integrable Systems +1611.00817 Machine Learning +1611.00819 Statistics Theory +1611.00820 Experiment +1611.00821 Experiment +1611.00822 Computer Vision and Pattern Recognition +1611.00824 Rings and Algebras +1611.00826 Statistics Theory +1611.00827 Computational Complexity +1611.00828 Representation Theory +1611.00829 Data Structures and Algorithms +1611.00833 Biomolecules +1611.00834 Neurons and Cognition +1611.00836 Biomolecules +1611.00837 Cryptography and Security +1611.00839 Solar and Stellar Astrophysics +1611.00840 Data Structures and Algorithms +1611.00842 Biological Physics +1611.00843 Statistics Theory +1611.00844 Optimization and Control +1611.00846 +1611.00848 Group Theory +1611.00851 Computer Vision and Pattern Recognition +1611.00853 Theory +1611.00854 Computational Physics +1611.00856 Probability +1611.00860 Programming Languages +1611.00861 Networking and Internet Architecture +1611.00862 Learning +1611.00864 Neural and Evolutionary Computing +1611.00865 +1611.00866 Machine Learning +1611.00867 Biological Physics +1611.00868 Statistics Theory +1611.00869 Multimedia +1611.00870 Plasma Physics +1611.00872 Human-Computer Interaction +1611.00873 Artificial Intelligence +1611.00875 Algebraic Geometry +1611.00876 Materials Science +1611.00877 Cosmology and Nongalactic Astrophysics +1611.00878 Mesoscale and Nanoscale Physics +1611.00882 Soft Condensed Matter +1611.00883 Accelerator Physics +1611.00884 Statistics Theory +1611.00885 Mathematical Finance +1611.00887 Mesoscale and Nanoscale Physics +1611.00889 Robotics +1611.00891 Materials Science +1611.00893 Differential Geometry +1611.00894 Materials Science +1611.00897 Statistical Finance +1611.00898 Data Structures and Algorithms +1611.00900 Mesoscale and Nanoscale Physics +1611.00902 Instrumentation and Methods for Astrophysics +1611.00903 Materials Science +1611.00905 Fluid Dynamics +1611.00908 Strongly Correlated Electrons +1611.00909 Numerical Analysis +1611.00911 Data Structures and Algorithms +1611.00912 Lattice +1611.00916 Differential Geometry +1611.00917 +1611.00920 Differential Geometry +1611.00921 Lattice +1611.00922 Disordered Systems and Neural Networks +1611.00923 Materials Science +1611.00924 Optics +1611.00925 Differential Geometry +1611.00926 Analysis of PDEs +1611.00928 Classical Analysis and ODEs +1611.00929 Spectral Theory +1611.00932 Rings and Algebras +1611.00934 Computational Complexity +1611.00935 Mesoscale and Nanoscale Physics +1611.00937 Group Theory +1611.00939 Computer Vision and Pattern Recognition +1611.00944 Analysis of PDEs +1611.00946 Distributed, Parallel, and Cluster Computing +1611.00947 Software Engineering +1611.00948 Fluid Dynamics +1611.00949 Statistical Mechanics +1611.00950 Mesoscale and Nanoscale Physics +1611.00951 Soft Condensed Matter +1611.00959 Probability +1611.00960 Computer Vision and Pattern Recognition +1611.00961 Exactly Solvable and Integrable Systems +1611.00962 Machine Learning +1611.00965 Statistics Theory +1611.00966 Sound +1611.00968 Numerical Analysis +1611.00970 General Finance +1611.00971 Algebraic Geometry +1611.00974 Materials Science +1611.00976 Algebraic Geometry +1611.00977 +1611.00978 Plasma Physics +1611.00979 Numerical Analysis +1611.00981 Combinatorics +1611.00982 Group Theory +1611.00983 Analysis of PDEs +1611.00984 Analysis of PDEs +1611.00985 Disordered Systems and Neural Networks +1611.00987 Complex Variables +1611.00988 Rings and Algebras +1611.00989 Analysis of PDEs +1611.00991 Probability +1611.00992 Data Structures and Algorithms +1611.00993 Optimization and Control +1611.00994 Fluid Dynamics +1611.00995 Computation and Language +1611.00996 Optimization and Control +1611.01002 Probability +1611.01003 +1611.01004 Combinatorics +1611.01006 Multiagent Systems +1611.01008 Solar and Stellar Astrophysics +1611.01010 Combinatorics +1611.01011 Algebraic Geometry +1611.01013 Theory +1611.01016 Quantum Algebra +1611.01017 Data Structures and Algorithms +1611.01021 Phenomenology +1611.01022 Lattice +1611.01023 General Physics +1611.01024 Applications +1611.01025 Fluid Dynamics +1611.01030 Information Theory +1611.01031 Data Analysis, Statistics and Probability +1611.01032 Data Structures and Algorithms +1611.01033 Atomic Physics +1611.01034 Lattice +1611.01036 Adaptation and Self-Organizing Systems +1611.01037 Quantitative Methods +1611.01038 Group Theory +1611.01039 Mesoscale and Nanoscale Physics +1611.01042 Information Theory +1611.01047 Chemical Physics +1611.01051 Optimization and Control +1611.01052 Operator Algebras +1611.01053 Strongly Correlated Electrons +1611.01054 Soft Condensed Matter +1611.01055 Learning +1611.01059 Spectral Theory +1611.01060 Learning +1611.01061 Combinatorics +1611.01065 Differential Geometry +1611.01066 Methodology +1611.01067 Astrophysics of Galaxies +1611.01068 +1611.01069 Computation +1611.01073 Quantum Gases +1611.01074 Atomic and Molecular Clusters +1611.01075 Algebraic Geometry +1611.01077 Number Theory +1611.01079 Probability +1611.01080 Artificial Intelligence +1611.01081 Differential Geometry +1611.01083 Computation and Language +1611.01086 Social and Information Networks +1611.01087 Phenomenology +1611.01089 Instrumentation and Methods for Astrophysics +1611.01091 Algebraic Geometry +1611.01092 Algebraic Geometry +1611.01093 Networking and Internet Architecture +1611.01096 Machine Learning +1611.01097 Phenomenology +1611.01099 Statistical Mechanics +1611.01100 Numerical Analysis +1611.01101 Computation and Language +1611.01102 Logic +1611.01103 Group Theory +1611.01106 Mesoscale and Nanoscale Physics +1611.01107 Probability +1611.01110 Mesoscale and Nanoscale Physics +1611.01111 +1611.01112 Phenomenology +1611.01113 Solar and Stellar Astrophysics +1611.01115 Probability +1611.01117 Phenomenology +1611.01118 +1611.01120 Mathematical Software +1611.01121 Solar and Stellar Astrophysics +1611.01127 Plasma Physics +1611.01128 Materials Science +1611.01129 Methodology +1611.01130 Information Theory +1611.01135 Phenomenology +1611.01136 Experiment +1611.01137 Databases +1611.01139 +1611.01142 Learning +1611.01147 Probability +1611.01148 Computers and Society +1611.01149 Strongly Correlated Electrons +0808.1490 Analysis of PDEs +0902.0087 Symplectic Geometry +0903.0221 Analysis of PDEs +1006.5024 Human-Computer Interaction +1011.4243 K-Theory and Homology +1109.1857 Functional Analysis +1109.5544 Metric Geometry +1112.0232 Algebraic Geometry +1208.0842 Other Condensed Matter +1208.3410 Classical Analysis and ODEs +1209.6421 Combinatorics +1210.0936 Optics +1212.2601 +1302.3320 Dynamical Systems +1306.0316 Complex Variables +1307.0676 Representation Theory +1307.6316 Combinatorics +1308.3359 Analysis of PDEs +1310.0112 Physics and Society +1310.6281 Probability +1311.0384 Optics +1311.5203 Algebraic Topology +1312.0256 Information Theory +1312.5549 Algebraic Geometry +1312.5759 Complex Variables +1312.7318 Differential Geometry +1401.7396 Exactly Solvable and Integrable Systems +1402.1472 Computation +1402.3886 Classical Analysis and ODEs +1402.4754 Combinatorics +1402.5523 Classical Analysis and ODEs +1402.6187 Atmospheric and Oceanic Physics +1403.5127 Algebraic Geometry +1404.5101 Quantum Algebra +1404.7523 Fluid Dynamics +1406.6110 +1407.0184 Geometric Topology +1407.0465 Optimization and Control +1407.2086 +1407.4786 Classical Analysis and ODEs +1407.5598 Probability +1408.0534 Methodology +1408.2313 Computer Vision and Pattern Recognition +1408.3242 Chemical Physics +1408.4235 Combinatorics +1408.6522 Theory +1410.0173 +1410.3571 Optimization and Control +1410.7870 Number Theory +1411.0608 Optics +1411.2640 Algebraic Geometry +1411.3609 Statistics Theory +1412.0309 +1412.2571 Logic +1412.6915 Cosmology and Nongalactic Astrophysics +1501.02865 +1501.05352 Learning +1501.06624 Combinatorics +1502.01407 Differential Geometry +1502.01804 Analysis of PDEs +1502.02113 Superconductivity +1502.03361 Phenomenology +1503.02505 Differential Geometry +1503.03046 Operator Algebras +1503.04857 Theory +1503.06064 Metric Geometry +1503.06493 Classical Analysis and ODEs +1503.06987 Phenomenology +1503.07555 Complex Variables +1503.08668 Algebraic Geometry +1504.03908 Phenomenology +1504.07251 +1505.02051 Algebraic Geometry +1505.04898 Methodology +1505.04916 Complex Variables +1505.05803 Biological Physics +1505.07830 Theory +1505.07908 +1506.00916 K-Theory and Homology +1506.05711 Algebraic Topology +1506.06674 Analysis of PDEs +1506.06742 +1506.07437 Combinatorics +1506.09146 Analysis of PDEs +1507.00960 Phenomenology +1507.01288 Commutative Algebra +1507.03566 Optimization and Control +1507.03651 Phenomenology +1507.03974 Phenomenology +1507.04061 +1507.04629 Analysis of PDEs +1507.06699 Optics +1507.07029 Fluid Dynamics +1507.08874 Computers and Society +1507.08940 Physics and Society +1508.00366 Theory +1508.00768 Materials Science +1508.00785 High Energy Astrophysical Phenomena +1508.02049 High Energy Astrophysical Phenomena +1508.05397 Phenomenology +1508.05433 Combinatorics +1508.05669 Probability +1508.07204 Phenomenology +1508.07709 Computation and Language +1509.01311 Instrumentation and Detectors +1509.02260 Numerical Analysis +1509.03075 Networking and Internet Architecture +1509.05786 Lattice +1509.06861 Strongly Correlated Electrons +1509.07216 Optics +1509.08535 Statistics Theory +1510.00096 Astrophysics of Galaxies +1510.00758 +1510.01175 Learning +1510.02841 +1510.04280 Cosmology and Nongalactic Astrophysics +1510.04397 Optics +1510.05216 Programming Languages +1510.06842 Materials Science +1510.08815 Cosmology and Nongalactic Astrophysics +1511.00259 Mesoscale and Nanoscale Physics +1511.00798 Optics +1511.01108 Theory +1511.02453 Algebraic Geometry +1511.04579 Dynamical Systems +1511.06060 Superconductivity +1511.06685 Soft Condensed Matter +1511.06800 +1511.06805 Differential Geometry +1512.04406 Quantum Gases +1512.04621 Functional Analysis +1512.04920 Phenomenology +1512.07139 Methodology +1512.09354 Optimization and Control +1601.00667 Probability +1601.00914 Number Theory +1601.01266 General Mathematics +1601.01413 Statistics Theory +1601.02383 Instrumentation and Methods for Astrophysics +1601.03694 +1601.04114 Learning +1601.04320 Quantum Algebra +1601.04395 +1601.04560 Social and Information Networks +1601.04886 Number Theory +1601.04967 Information Theory +1601.05938 Cosmology and Nongalactic Astrophysics +1601.07315 Information Theory +1601.07585 +1601.07991 +1602.00433 Materials Science +1602.00516 Phenomenology +1602.00583 Phenomenology +1602.00981 Programming Languages +1602.01071 Analysis of PDEs +1602.01204 Materials Science +1602.01370 Applications +1602.01391 Combinatorics +1602.01438 Functional Analysis +1602.01476 Phenomenology +1602.01484 Probability +1602.01563 +1602.01614 Networking and Internet Architecture +1602.01624 +1602.01644 Graphics +1602.01830 Instrumentation and Methods for Astrophysics +1602.01832 +1602.01841 Astrophysics of Galaxies +1602.01842 Astrophysics of Galaxies +1602.01844 Astrophysics of Galaxies +1602.01845 Astrophysics of Galaxies +1602.01852 Geometric Topology +1602.01855 Materials Science +1602.01859 +1602.01860 Probability +1602.01862 Cosmology and Nongalactic Astrophysics +1602.01864 Classical Analysis and ODEs +1602.01866 General Topology +1602.01867 Data Structures and Algorithms +1602.01868 Robotics +1602.01869 Geometric Topology +1602.01882 Phenomenology +1602.01883 Systems and Control +1602.01891 Robotics +1602.01892 Analysis of PDEs +1602.01893 +1602.01895 Computer Vision and Pattern Recognition +1602.01897 Astrophysics of Galaxies +1602.01898 Instrumentation and Detectors +1602.01902 Functional Analysis +1602.01903 Number Theory +1602.01904 Digital Libraries +1602.01909 High Energy Astrophysical Phenomena +1602.01910 Learning +1602.01911 Information Theory +1602.01913 Graphics +1602.01914 Astrophysics of Galaxies +1602.01915 Applications +1602.01919 Operator Algebras +1602.01920 K-Theory and Homology +1602.01923 Dynamical Systems +1602.01927 Computer Vision and Pattern Recognition +1602.01928 Atomic Physics +1602.01929 Computation and Language +1602.01930 Social and Information Networks +1602.01932 Optimization and Control +1602.01936 Solar and Stellar Astrophysics +1602.01937 Cryptography and Security +1602.01940 Computer Vision and Pattern Recognition +1602.01946 Analysis of PDEs +1602.01948 Classical Analysis and ODEs +1602.01951 Statistics Theory +1602.01954 Symplectic Geometry +1602.01955 Statistics Theory +1602.01960 Statistical Finance +1602.01963 Computer Science and Game Theory +1602.01964 Complex Variables +1602.01966 High Energy Astrophysical Phenomena +1602.01969 Optimization and Control +1602.01970 Computer Science and Game Theory +1602.01971 Artificial Intelligence +1602.01973 Optimization and Control +1602.01977 Algebraic Geometry +1602.01980 Number Theory +1602.01984 Number Theory +1602.01988 Phenomenology +1602.01992 Combinatorics +1602.01995 Information Theory +1602.01998 +1602.02000 Solar and Stellar Astrophysics +1602.02002 Combinatorics +1602.02004 Software Engineering +1602.02006 Differential Geometry +1602.02007 Probability +1602.02011 Pricing of Securities +1602.02013 Mesoscale and Nanoscale Physics +1602.02016 Logic +1602.02019 Differential Geometry +1602.02021 +1602.02022 Computer Vision and Pattern Recognition +1602.02023 Computer Vision and Pattern Recognition +1602.02032 Multiagent Systems +1602.02033 Physics Education +1602.02041 Networking and Internet Architecture +1602.02043 Operator Algebras +1602.02044 Instrumentation and Methods for Astrophysics +1602.02045 Optimization and Control +1602.02046 Computers and Society +1602.02047 Computation and Language +1602.02048 Exactly Solvable and Integrable Systems +1602.02049 Symbolic Computation +1602.02055 Applications +1602.02056 Mesoscale and Nanoscale Physics +1602.02057 Information Theory +1602.02059 Probability +1602.02060 Differential Geometry +1602.02066 Computer Science and Game Theory +1602.02069 Combinatorics +1602.02073 Number Theory +1602.02074 Algebraic Geometry +1602.02076 Differential Geometry +1602.02077 Medical Physics +1602.02078 Chemical Physics +1602.02079 General Physics +1602.02081 Probability +1602.02083 Materials Science +1602.02084 Functional Analysis +1602.02085 Combinatorics +1602.02086 Artificial Intelligence +1602.02089 Artificial Intelligence +1602.02091 Networking and Internet Architecture +1602.02094 Algebraic Geometry +1602.02098 Dynamical Systems +1602.02101 Learning +1602.02108 Probability +1602.02114 Methodology +1602.02117 Medical Physics +1602.02118 Analysis of PDEs +1602.02123 Learning +1602.02124 Numerical Analysis +1602.02126 Dynamical Systems +1602.02127 Algebraic Geometry +1602.02128 Analysis of PDEs +1602.02129 Computational Complexity +1602.02130 Computer Vision and Pattern Recognition +1602.02131 +1602.02132 Numerical Analysis +1602.02133 Computation and Language +1602.02134 Complex Variables +1602.02136 Learning +1602.02137 Applications +1602.02142 Combinatorics +1602.02143 High Energy Astrophysical Phenomena +1602.02148 Cryptography and Security +hep-ph/9603254 Phenomenology +0805.1521 +0902.2900 Plasma Physics +0907.0289 Algebraic Geometry +0908.2799 Algebraic Geometry +1007.3028 Algebraic Geometry +1012.0389 +1102.3848 Mesoscale and Nanoscale Physics +1105.1468 Probability +1109.3520 Quantum Algebra +1110.0539 Cosmology and Nongalactic Astrophysics +1202.3896 Algebraic Geometry +1210.6158 Atomic Physics +1210.6921 Representation Theory +1211.3112 Solar and Stellar Astrophysics +1303.1045 +1303.2997 Combinatorics +1304.6667 Statistical Mechanics +1305.1265 Algebraic Geometry +1305.3073 Algebraic Geometry +1306.0913 Cosmology and Nongalactic Astrophysics +1306.2265 Solar and Stellar Astrophysics +1307.0382 Algebraic Geometry +1307.5718 Algebraic Geometry +1307.6961 Solar and Stellar Astrophysics +1307.8356 Rings and Algebras +1308.4526 Logic in Computer Science +1309.7548 Analysis of PDEs +1310.1386 Combinatorics +1311.2982 Operator Algebras +1311.3249 Number Theory +1311.5051 Combinatorics +1312.1680 Combinatorics +1401.4246 Strongly Correlated Electrons +1402.5154 Algebraic Geometry +1402.5649 Numerical Analysis +1403.6851 Probability +1404.1197 Analysis of PDEs +1404.1510 Dynamical Systems +1404.3210 High Energy Astrophysical Phenomena +1404.5153 +1404.6407 Algebraic Geometry +1405.2183 Statistics Theory +1405.4066 +1405.5765 Differential Geometry +1405.6609 Rings and Algebras +1406.0222 Differential Geometry +1406.1491 Algebraic Geometry +1406.7144 Dynamical Systems +1407.3214 High Energy Astrophysical Phenomena +1407.7125 Data Structures and Algorithms +1407.7367 +1407.7986 Differential Geometry +1408.1288 Combinatorics +1408.1447 Analysis of PDEs +1408.3947 Dynamical Systems +1408.4033 Operator Algebras +1409.3564 Group Theory +1409.8229 Algebraic Geometry +1410.3473 High Energy Astrophysical Phenomena +1410.4532 Combinatorics +1410.6777 Strongly Correlated Electrons +1411.1605 Category Theory +1412.2406 Geometric Topology +1412.2418 Operator Algebras +1501.01999 Category Theory +1501.02937 Astrophysics of Galaxies +1501.04841 Differential Geometry +1501.06687 Phenomenology +1502.03193 Methodology +1502.04590 Representation Theory +1502.05644 Quantum Gases +1503.00607 Commutative Algebra +1503.01878 Cosmology and Nongalactic Astrophysics +1503.05536 Dynamical Systems +1504.02427 Logic +1504.03320 Astrophysics of Galaxies +1504.03755 Algebraic Geometry +1504.06198 Representation Theory +1504.06234 Combinatorics +1504.07873 Biological Physics +1504.07914 Complex Variables +1505.00183 Differential Geometry +1505.00984 Group Theory +1505.03809 +1505.03997 Solar and Stellar Astrophysics +1505.05176 Solar and Stellar Astrophysics +1505.07737 Combinatorics +1505.08164 Quantum Gases +1506.00410 Phenomenology +1506.01168 Algebraic Geometry +1506.02499 Phenomenology +1506.02860 Number Theory +1506.03455 Strongly Correlated Electrons +1506.04162 Logic +1506.04379 Number Theory +1506.04408 Solar and Stellar Astrophysics +1506.06111 +1506.07102 +1506.08784 General Physics +1507.00647 Analysis of PDEs +1507.03514 Cosmology and Nongalactic Astrophysics +1507.04120 Soft Condensed Matter +1507.04263 +1507.04479 Materials Science +1507.04582 Algebraic Geometry +1507.04742 Theory +1507.04878 Optimization and Control +1507.05323 +1507.05909 Cosmology and Nongalactic Astrophysics +1507.06106 Physics and Society +1507.07227 Numerical Analysis +1507.08841 Group Theory +1508.00101 +1508.01271 Mesoscale and Nanoscale Physics +1508.02537 +1508.04440 Theory +1508.04538 Statistical Mechanics +1508.05294 Rings and Algebras +1508.06031 Number Theory +1508.06392 Materials Science +1508.06570 Information Theory +1509.00094 +1509.00332 Number Theory +1509.00402 Geometric Topology +1509.01473 Dynamical Systems +1509.04358 Strongly Correlated Electrons +1509.04532 Geometric Topology +1509.05036 Astrophysics of Galaxies +1509.05050 Superconductivity +1509.05685 Theory +1509.05799 Quantum Gases +1509.05930 Strongly Correlated Electrons +1509.05997 Astrophysics of Galaxies +1509.07148 Astrophysics of Galaxies +1509.08159 Experiment +1509.08473 Astrophysics of Galaxies +1509.08541 Astrophysics of Galaxies +1509.08613 Strongly Correlated Electrons +1509.09304 Astrophysics of Galaxies +1510.00507 Astrophysics of Galaxies +1510.00873 Astrophysics of Galaxies +1510.01157 Probability +1510.01929 Astrophysics of Galaxies +1510.02476 Earth and Planetary Astrophysics +1510.02578 Solar and Stellar Astrophysics +1510.03181 Astrophysics of Galaxies +1510.03425 Strongly Correlated Electrons +1510.03487 Astrophysics of Galaxies +1510.04023 High Energy Astrophysical Phenomena +1510.05647 Cosmology and Nongalactic Astrophysics +1510.05989 Solar and Stellar Astrophysics +1510.06006 Astrophysics of Galaxies +1510.06558 Mesoscale and Nanoscale Physics +1510.06822 Dynamical Systems +1510.07200 Experiment +1510.07929 Cosmology and Nongalactic Astrophysics +1510.08127 Experiment +1511.00011 Astrophysics of Galaxies +1511.00552 +1511.02002 Astrophysics of Galaxies +1511.03189 +1511.03329 Theory +1511.04454 Cosmology and Nongalactic Astrophysics +1511.04492 Mesoscale and Nanoscale Physics +1511.04787 Solar and Stellar Astrophysics +1511.05143 Theory +1511.05739 High Energy Astrophysical Phenomena +1511.05811 Astrophysics of Galaxies +1511.06293 Phenomenology +1511.06741 Cosmology and Nongalactic Astrophysics +1511.07420 Phenomenology +1511.07976 Atomic Physics +1511.09166 Populations and Evolution +1511.09195 Materials Science +1512.01122 Mesoscale and Nanoscale Physics +1512.01304 Astrophysics of Galaxies +1512.01722 Computer Vision and Pattern Recognition +1512.02221 Astrophysics of Galaxies +1512.02496 Combinatorics +1512.03254 Representation Theory +1512.03333 +1512.03801 Superconductivity +1512.03827 General Physics +1512.05399 Theory +1512.05495 +1512.06339 Differential Geometry +1512.06605 Analysis of PDEs +1512.06688 Strongly Correlated Electrons +1512.08711 Dynamical Systems +1512.09116 Solar and Stellar Astrophysics +1601.00512 Statistical Mechanics +1601.00889 Probability +1601.01718 Solar and Stellar Astrophysics +1601.02474 Phenomenology +1601.03616 Theory +1601.03811 Differential Geometry +1601.03967 Plasma Physics +1601.04017 Data Structures and Algorithms +1601.04343 +1601.04480 Group Theory +1601.04650 Machine Learning +1601.05185 +1601.05380 Group Theory +1601.05400 Distributed, Parallel, and Cluster Computing +1601.05627 Experiment +1601.05681 Materials Science +1601.05688 +1601.05821 Astrophysics of Galaxies +1601.06117 Phenomenology +1601.06515 Optimization and Control +1601.07102 +1601.07135 Mesoscale and Nanoscale Physics +1601.07290 +1601.07516 +1601.07579 Functional Analysis +1601.07823 +1602.00461 Probability +1602.00902 Solar and Stellar Astrophysics +1602.00920 Optimization and Control +1602.01314 +1602.01345 Machine Learning +1602.01489 Mesoscale and Nanoscale Physics +1602.01562 Mesoscale and Nanoscale Physics +1602.02281 Pattern Formation and Solitons +1602.03184 High Energy Astrophysical Phenomena +1602.03285 Materials Science +1602.03336 +1602.03790 High Energy Astrophysical Phenomena +1602.04150 Strongly Correlated Electrons +1602.04253 Dynamical Systems +1602.04455 +1602.04634 Theory +1602.04671 Populations and Evolution +1602.04758 Numerical Analysis +1602.05554 High Energy Astrophysical Phenomena +1602.05604 Analysis of PDEs +1602.06096 Mesoscale and Nanoscale Physics +1602.06477 +1602.06984 Phenomenology +1602.07282 Cosmology and Nongalactic Astrophysics +1602.07727 Phenomenology +1602.07762 Information Theory +1602.07903 Theory +1602.08038 +1602.08089 Strongly Correlated Electrons +1602.08320 Mesoscale and Nanoscale Physics +1602.08671 Neural and Evolutionary Computing +1602.08767 Astrophysics of Galaxies +1603.00361 Formal Languages and Automata Theory +1603.00535 +1603.00624 Materials Science +1603.01130 Mesoscale and Nanoscale Physics +1603.02405 Solar and Stellar Astrophysics +1603.03223 High Energy Astrophysical Phenomena +1603.03265 Optimization and Control +1603.03365 Strongly Correlated Electrons +1603.03858 +1603.04021 Algebraic Topology +1603.04142 Information Theory +1603.04163 Information Theory +1603.04183 High Energy Astrophysical Phenomena +1603.04426 Theory +1603.04662 Computational Physics +1603.04921 Strongly Correlated Electrons +1603.04999 Mesoscale and Nanoscale Physics +1603.05070 Phenomenology +1603.05074 Phenomenology +1603.05160 Astrophysics of Galaxies +1603.06003 Disordered Systems and Neural Networks +1603.06471 Mesoscale and Nanoscale Physics +1603.06796 Statistical Mechanics +1603.07204 Atomic Physics +1603.07755 Materials Science +1603.09336 Theory +1603.09339 Astrophysics of Galaxies +1603.09348 Astrophysics of Galaxies +1604.00020 Astrophysics of Galaxies +1604.00122 Strongly Correlated Electrons +1604.00207 Mesoscale and Nanoscale Physics +1604.00342 Cosmology and Nongalactic Astrophysics +1604.00410 Quantum Gases +1604.00649 +1604.00690 Biological Physics +1604.00789 +1604.00948 Statistical Mechanics +1604.01297 +1604.01418 Astrophysics of Galaxies +1604.01444 Experiment +1604.02117 Phenomenology +1604.02456 Astrophysics of Galaxies +1604.02853 +1604.02882 +1604.03425 Systems and Control +1604.03616 Statistical Mechanics +1604.03679 Atomic Physics +1604.03944 Theory +1604.04311 Mesoscale and Nanoscale Physics +1604.04379 Analysis of PDEs +1604.04859 Computer Science and Game Theory +1604.04908 Experiment +1604.05010 High Energy Astrophysical Phenomena +1604.05175 Physics and Society +1604.05292 Strongly Correlated Electrons +1604.05328 Phenomenology +1604.05719 Earth and Planetary Astrophysics +1604.06402 +1604.07010 Astrophysics of Galaxies +1604.07404 Astrophysics of Galaxies +1604.07475 Metric Geometry +1604.08097 Materials Science +1604.08210 Astrophysics of Galaxies +1604.08376 Statistical Mechanics +1604.08536 Phenomenology +1604.08770 Astrophysics of Galaxies +1604.08787 Instrumentation and Methods for Astrophysics +1605.00009 Astrophysics of Galaxies +1605.00140 Phenomenology +1605.00570 Mesoscale and Nanoscale Physics +1605.00745 Quantum Gases +1605.01495 Materials Science +1605.01550 Mesoscale and Nanoscale Physics +1605.01912 Phenomenology +1605.02036 Cosmology and Nongalactic Astrophysics +1605.02159 Mesoscale and Nanoscale Physics +1605.02285 Cosmology and Nongalactic Astrophysics +1605.02574 Solar and Stellar Astrophysics +1605.02731 Earth and Planetary Astrophysics +1605.03026 Solar and Stellar Astrophysics +1605.03458 +1605.03482 Quantitative Methods +1605.03728 Soft Condensed Matter +1605.03928 Cosmology and Nongalactic Astrophysics +1605.03962 Earth and Planetary Astrophysics +1605.04145 Earth and Planetary Astrophysics +1605.04170 Superconductivity +1605.04289 Combinatorics +1605.04297 Combinatorics +1605.04525 +1605.04607 Astrophysics of Galaxies +1605.04967 Theory +1605.05523 Atomic Physics +1605.05582 Astrophysics of Galaxies +1605.05880 Materials Science +1605.05995 +1605.06001 Mesoscale and Nanoscale Physics +1605.06016 Atomic Physics +1605.06116 Solar and Stellar Astrophysics +1605.06175 Optics +1605.06273 Statistical Mechanics +1605.06390 +1605.06781 Optics +1605.06941 Superconductivity +1605.07119 Superconductivity +1605.07342 Phenomenology +1605.07382 Solar and Stellar Astrophysics +1605.07438 +1605.07441 Mesoscale and Nanoscale Physics +1605.07552 +1605.07668 Solar and Stellar Astrophysics +1605.07997 Metric Geometry +1605.08148 +1605.08235 Mesoscale and Nanoscale Physics +1605.08237 Mesoscale and Nanoscale Physics +1605.08341 Cosmology and Nongalactic Astrophysics +1605.08439 Cosmology and Nongalactic Astrophysics +1605.08468 Materials Science +1605.08661 Earth and Planetary Astrophysics +1605.08783 High Energy Astrophysical Phenomena +1605.08787 Strongly Correlated Electrons +1605.09048 Strongly Correlated Electrons +1605.09056 Cosmology and Nongalactic Astrophysics +1605.09105 High Energy Astrophysical Phenomena +1605.09286 +1605.09321 Information Theory +1605.09443 Mesoscale and Nanoscale Physics +1605.09732 Cosmology and Nongalactic Astrophysics +1606.00436 +1606.00437 +1606.00452 Quantum Gases +1606.00689 Experiment +1606.01058 Phenomenology +1606.01103 Earth and Planetary Astrophysics +1606.01347 Chemical Physics +1606.01502 Probability +1606.01529 +1606.01640 Astrophysics of Galaxies +1606.01747 Phenomenology +1606.01773 Mesoscale and Nanoscale Physics +1606.02281 Mesoscale and Nanoscale Physics +1606.02300 Solar and Stellar Astrophysics +1606.02364 Optics +1606.02699 Experiment +1606.02715 Astrophysics of Galaxies +1606.02742 Lattice +1606.02752 Solar and Stellar Astrophysics +1606.03037 Solar and Stellar Astrophysics +1606.03069 +1606.03396 Quantum Gases +1606.03681 Solar and Stellar Astrophysics +1606.03996 Astrophysics of Galaxies +1606.04536 Astrophysics of Galaxies +1606.04574 High Energy Astrophysical Phenomena +1606.04711 High Energy Astrophysical Phenomena +1606.04811 Solar and Stellar Astrophysics +1606.04813 Atomic Physics +1606.04923 Solar and Stellar Astrophysics +1606.04937 Strongly Correlated Electrons +1606.05318 Materials Science +1606.05377 Astrophysics of Galaxies +1606.05412 Optics +1606.05489 Solar and Stellar Astrophysics +1606.05651 Astrophysics of Galaxies +1606.05680 Mesoscale and Nanoscale Physics +1606.05840 Atomic Physics +1606.05841 Instrumentation and Methods for Astrophysics +1606.06132 Solar and Stellar Astrophysics +1606.06188 +1606.06296 Theory +1606.06300 Mesoscale and Nanoscale Physics +1606.06413 Analysis of PDEs +1606.06471 Fluid Dynamics +1606.06793 Learning +1606.06804 Representation Theory +1606.07066 Astrophysics of Galaxies +1606.07192 Astrophysics of Galaxies +1606.07266 Earth and Planetary Astrophysics +1606.07447 High Energy Astrophysical Phenomena +1606.07636 Learning +1606.07725 High Energy Astrophysical Phenomena +1606.07942 Astrophysics of Galaxies +1606.08051 Learning +1606.08225 Metric Geometry +1606.08423 High Energy Astrophysical Phenomena +1606.08499 Phenomenology +1606.08505 +1606.08520 High Energy Astrophysical Phenomena +1606.08562 Social and Information Networks +1606.08782 Astrophysics of Galaxies +1606.08854 Solar and Stellar Astrophysics +1606.08914 Astrophysics of Galaxies +1606.09110 Logic in Computer Science +1606.09226 Mesoscale and Nanoscale Physics +1606.09334 Solar and Stellar Astrophysics +1606.09357 Solar and Stellar Astrophysics +1606.09455 Logic in Computer Science +1606.09506 Solar and Stellar Astrophysics +1606.09529 Astrophysics of Galaxies +1606.09586 Solar and Stellar Astrophysics +1607.00129 Astrophysics of Galaxies +1607.00142 Solar and Stellar Astrophysics +1607.00290 High Energy Astrophysical Phenomena +1607.00344 Solar and Stellar Astrophysics +1607.00380 High Energy Astrophysical Phenomena +1607.00385 Solar and Stellar Astrophysics +1607.00432 Astrophysics of Galaxies +1607.00641 Astrophysics of Galaxies +1607.00848 Astrophysics of Galaxies +1607.00879 High Energy Astrophysical Phenomena +1607.00951 Astrophysics of Galaxies +1607.00987 Phenomenology +1607.01056 Solar and Stellar Astrophysics +1607.01090 Solar and Stellar Astrophysics +1607.01278 Phenomenology +1607.01352 Other Condensed Matter +1607.01531 Statistical Mechanics +1607.01711 Phenomenology +1607.01779 Astrophysics of Galaxies +1607.01799 Atomic Physics +1607.01806 +1607.01829 Solar and Stellar Astrophysics +1607.01847 Cosmology and Nongalactic Astrophysics +1607.02053 High Energy Astrophysical Phenomena +1607.02054 Astrophysics of Galaxies +1607.02132 Earth and Planetary Astrophysics +1607.02190 Astrophysics of Galaxies +1607.02215 Instrumentation and Methods for Astrophysics +1607.02243 Astrophysics of Galaxies +1607.02266 Astrophysics of Galaxies +1607.02274 Astrophysics of Galaxies +1607.02309 +1607.02331 Astrophysics of Galaxies +1607.02365 Analysis of PDEs +1607.02466 Logic in Computer Science +1607.02797 Cosmology and Nongalactic Astrophysics +1607.02832 +1607.02876 Solar and Stellar Astrophysics +1607.03203 Phenomenology +1607.03330 Superconductivity +1607.03336 Mesoscale and Nanoscale Physics +1607.03861 Instrumentation and Methods for Astrophysics +1607.03874 Solar and Stellar Astrophysics +1607.04107 High Energy Astrophysical Phenomena +1607.04271 Representation Theory +1607.04385 Solar and Stellar Astrophysics +1607.04686 Cosmology and Nongalactic Astrophysics +1607.05139 Computer Science and Game Theory +1607.05299 Astrophysics of Galaxies +1607.05503 Algebraic Geometry +1607.05532 Astrophysics of Galaxies +1607.05715 +1607.05799 Astrophysics of Galaxies +1607.06284 Analysis of PDEs +1607.06304 +1607.06453 High Energy Astrophysical Phenomena +1607.07250 Materials Science +1607.07308 Astrophysics of Galaxies +1607.07333 Earth and Planetary Astrophysics +1607.07369 Earth and Planetary Astrophysics +1607.07725 High Energy Astrophysical Phenomena +1607.07822 High Energy Astrophysical Phenomena +1607.07934 Astrophysics of Galaxies +1607.08245 Astrophysics of Galaxies +1607.08257 Astrophysics of Galaxies +1607.08568 Solar and Stellar Astrophysics +1607.08596 Astrophysics of Galaxies +1607.08603 Astrophysics of Galaxies +1607.08605 High Energy Astrophysical Phenomena +1607.08606 Earth and Planetary Astrophysics +1607.08615 Solar and Stellar Astrophysics +1607.08630 Earth and Planetary Astrophysics +1607.08761 Astrophysics of Galaxies +1608.00002 +1608.00030 Strongly Correlated Electrons +1608.00773 Materials Science +1608.00972 Solar and Stellar Astrophysics +1608.01066 Strongly Correlated Electrons +1608.01114 Solar and Stellar Astrophysics +1608.01210 Numerical Analysis +1608.01417 Astrophysics of Galaxies +1608.01531 General Physics +1608.01534 Solar and Stellar Astrophysics +1608.01650 Phenomenology +1608.02225 Solar and Stellar Astrophysics +1608.02249 Exactly Solvable and Integrable Systems +1608.02671 Phenomenology +1608.02684 Strongly Correlated Electrons +1608.02739 Solar and Stellar Astrophysics +1608.02790 High Energy Astrophysical Phenomena +1608.03539 Astrophysics of Galaxies +1608.03596 Soft Condensed Matter +1608.03671 Solar and Stellar Astrophysics +1608.03763 Astrophysics of Galaxies +1608.04406 Atomic Physics +1608.04464 High Energy Astrophysical Phenomena +1608.04504 Instrumentation and Methods for Astrophysics +1608.04664 Machine Learning +1608.04666 Rings and Algebras +1608.05026 Astrophysics of Galaxies +1608.05509 Astrophysics of Galaxies +1608.05796 Solar and Stellar Astrophysics +1608.05809 +1608.05813 Computation and Language +1608.06100 Materials Science +1608.06193 Solar and Stellar Astrophysics +1608.06309 Applications +1608.06553 +1608.06675 Instrumentation and Detectors +1608.06685 Astrophysics of Galaxies +1608.06746 Algebraic Geometry +1608.06812 Astrophysics of Galaxies +1608.06907 Optics +1608.06948 High Energy Astrophysical Phenomena +1608.06960 Solar and Stellar Astrophysics +1608.06973 High Energy Astrophysical Phenomena +1608.06990 Systems and Control +1608.07012 Astrophysics of Galaxies +1608.07109 +1608.07130 Astrophysics of Galaxies +1608.07278 Earth and Planetary Astrophysics +1608.07281 Solar and Stellar Astrophysics +1608.07286 Solar and Stellar Astrophysics +1608.07291 Solar and Stellar Astrophysics +1608.07293 Astrophysics of Galaxies +1608.07504 Rings and Algebras +1608.07509 Representation Theory +1608.07580 Earth and Planetary Astrophysics +1608.07629 Phenomenology +1608.07678 Soft Condensed Matter +1608.07687 Mesoscale and Nanoscale Physics +1608.07839 Probability +1608.07933 Earth and Planetary Astrophysics +1608.07978 Soft Condensed Matter +1608.07994 Phenomenology +1608.08034 Solar and Stellar Astrophysics +1608.08059 Classical Analysis and ODEs +1608.08071 High Energy Astrophysical Phenomena +1608.08091 High Energy Astrophysical Phenomena +1608.08238 Astrophysics of Galaxies +1608.08239 Astrophysics of Galaxies +1608.08248 Astrophysics of Galaxies +1608.08309 Geometric Topology +1608.08380 Solar and Stellar Astrophysics +1608.08461 Soft Condensed Matter +1608.08539 Solar and Stellar Astrophysics +1608.08540 Mesoscale and Nanoscale Physics +1608.08557 High Energy Astrophysical Phenomena +1608.08656 +1608.08694 Astrophysics of Galaxies +1608.08751 Astrophysics of Galaxies +1608.08853 Astrophysics of Galaxies +1608.08993 Earth and Planetary Astrophysics +1609.00023 Astrophysics of Galaxies +1609.00038 Chemical Physics +1609.00110 Information Theory +1609.00202 Mesoscale and Nanoscale Physics +1609.00209 Astrophysics of Galaxies +1609.00313 Mesoscale and Nanoscale Physics +1609.00441 Molecular Networks +1609.00458 High Energy Astrophysical Phenomena +1609.00489 Software Engineering +1609.00589 +1609.00678 Statistical Mechanics +1609.00684 +1609.00804 Learning +1609.00827 Numerical Analysis +1609.00919 Logic in Computer Science +1609.00951 Optimization and Control +1609.01001 Combinatorics +1609.01006 Computer Vision and Pattern Recognition +1609.01009 Dynamical Systems +1609.01129 Astrophysics of Galaxies +1609.01182 Atomic and Molecular Clusters +1609.01237 Geophysics +1609.01252 Instrumentation and Methods for Astrophysics +1609.01275 Combinatorics +1609.01278 Instrumentation and Detectors +1609.01279 +1609.01281 Theory +1609.01282 Astrophysics of Galaxies +1609.01283 Solar and Stellar Astrophysics +1609.01294 Astrophysics of Galaxies +1609.01297 +1609.01303 Strongly Correlated Electrons +1609.01305 Instrumentation and Methods for Astrophysics +1609.01309 Human-Computer Interaction +1609.01313 Group Theory +1609.01315 Number Theory +1609.01317 Graphics +1609.01319 Databases +1609.01321 Numerical Analysis +1609.01322 Information Theory +1609.01323 Dynamical Systems +1609.01325 Mesoscale and Nanoscale Physics +1609.01326 Computer Vision and Pattern Recognition +1609.01327 +1609.01328 Probability +1609.01330 Superconductivity +1609.01331 Information Retrieval +1609.01332 Instrumentation and Detectors +1609.01333 Statistical Mechanics +1609.01335 Dynamical Systems +1609.01337 Combinatorics +1609.01338 Spectral Theory +1609.01339 Classical Analysis and ODEs +1609.01341 Soft Condensed Matter +1609.01343 Number Theory +1609.01344 Computer Vision and Pattern Recognition +1609.01345 Computer Vision and Pattern Recognition +1609.01348 Human-Computer Interaction +1609.01349 Optics +1609.01351 Analysis of PDEs +1609.01352 Solar and Stellar Astrophysics +1609.01353 Logic +1609.01355 Phenomenology +1609.01357 Social and Information Networks +1609.01361 Data Structures and Algorithms +1609.01362 Number Theory +1609.01364 Probability +1609.01365 Algebraic Topology +1609.01366 Computer Vision and Pattern Recognition +1609.01367 Combinatorics +1609.01368 Classical Analysis and ODEs +1609.01370 Combinatorics +1609.01373 Data Structures and Algorithms +1609.01374 Networking and Internet Architecture +1609.01375 Analysis of PDEs +1609.01377 Differential Geometry +1609.01378 Phenomenology +1609.01380 Computer Vision and Pattern Recognition +1609.01381 Mesoscale and Nanoscale Physics +1609.01382 Human-Computer Interaction +1609.01383 Systems and Control +1609.01386 Number Theory +1609.01388 Multimedia +1609.01390 Materials Science +1609.01392 Soft Condensed Matter +1609.01393 Dynamical Systems +1609.01395 Differential Geometry +1609.01396 Methodology +1609.01401 Phenomenology +1609.01402 Commutative Algebra +1609.01403 Rings and Algebras +1609.01406 Combinatorics +1609.01407 +1609.01410 Cryptography and Security +1609.01411 Number Theory +1609.01413 Theory +1609.01414 Computer Vision and Pattern Recognition +1609.01415 Information Retrieval +1609.01416 +1609.01417 Lattice +1609.01421 +1609.01426 Phenomenology +1609.01427 Algebraic Geometry +1609.01428 Analysis of PDEs +1609.01430 Fluid Dynamics +1609.01431 Analysis of PDEs +1609.01434 Optics +1609.01435 Probability +1609.01436 Numerical Analysis +1609.01437 Computer Science and Game Theory +1609.01439 Soft Condensed Matter +1609.01440 Analysis of PDEs +1609.01441 Analysis of PDEs +1609.01442 Analysis of PDEs +1609.01445 Phenomenology +1609.01446 Rings and Algebras +1609.01447 Analysis of PDEs +1609.01448 Mesoscale and Nanoscale Physics +1609.01449 Information Theory +1609.01450 Functional Analysis +1609.01451 Probability +1609.01454 Computation and Language +1609.01456 Plasma Physics +1609.01458 Optimization and Control +1609.01460 Combinatorics +1609.01461 Computer Vision and Pattern Recognition +1609.01462 Computation and Language +1609.01464 Social and Information Networks +1609.01465 Computer Vision and Pattern Recognition +1609.01467 Optimization and Control +1609.01468 Learning +1609.01472 Computers and Society +1609.01475 Multiagent Systems +1609.01476 +1609.01477 +1609.01481 Accelerator Physics +1609.01482 Dynamical Systems +1609.01483 Medical Physics +1609.01484 Human-Computer Interaction +1609.01485 Differential Geometry +1609.01486 Dynamical Systems +1609.01488 Probability +1609.01490 Distributed, Parallel, and Cluster Computing +1609.01494 Materials Science +1609.01495 Analysis of PDEs +1609.01497 Soft Condensed Matter +1609.01498 Materials Science +1609.01499 Computer Vision and Pattern Recognition +1609.01502 Disordered Systems and Neural Networks +1609.01507 Distributed, Parallel, and Cluster Computing +1609.01508 Learning +1609.01510 Discrete Mathematics +1609.01511 Instrumentation and Methods for Astrophysics +1609.01512 Analysis of PDEs +1609.01516 Analysis of PDEs +1609.01517 Data Structures and Algorithms +1609.01521 Soft Condensed Matter +1609.01523 Materials Science +1609.01524 Computer Vision and Pattern Recognition +1609.01530 Information Theory +1609.01531 Optimization and Control +1609.01535 Fluid Dynamics +1609.01537 Digital Libraries +1609.01539 Soft Condensed Matter +1609.01542 Representation Theory +1609.01543 Functional Analysis +1609.01544 Combinatorics +1609.01545 +1609.01547 Methodology +1609.01549 Representation Theory +1609.01550 Numerical Analysis +1609.01551 Strongly Correlated Electrons +1609.01555 Exactly Solvable and Integrable Systems +1609.01561 Quantum Gases +1609.01562 Algebraic Geometry +1609.01563 Metric Geometry +1609.01564 Classical Analysis and ODEs +1609.01565 Classical Physics +1609.01566 Other Quantitative Biology +1609.01567 Information Theory +1609.01568 Phenomenology +1609.01569 Biomolecules +1609.01570 Quantitative Methods +1609.01571 Computer Vision and Pattern Recognition +1609.01574 Computation and Language +1609.01576 +1609.01578 Optics +1609.01579 Differential Geometry +1609.01580 Computation and Language +1609.01582 Combinatorics +1609.01583 Atomic Physics +1609.01585 Hardware Architecture +1609.01586 Learning +1609.01587 Functional Analysis +1609.01589 +1609.01592 Computation and Language +1609.01593 Astrophysics of Galaxies +1609.01594 Computation and Language +1609.01597 Computation and Language +1609.01600 +1609.01601 Probability +1609.01602 Algebraic Geometry +1609.01603 Statistical Mechanics +1609.01604 Molecular Networks +1609.01606 Differential Geometry +1609.01609 +1609.01611 Experiment +1609.01612 Combinatorics +1609.01614 Human-Computer Interaction +1609.01615 Materials Science +1609.01616 Social and Information Networks +1609.01618 +1609.01619 Phenomenology +1609.01622 Networking and Internet Architecture +1609.01623 Astrophysics of Galaxies +1609.01624 Chemical Physics +1609.01627 Optimization and Control +1609.01633 Complex Variables +1609.01634 Data Structures and Algorithms +1609.01635 Representation Theory +1609.01636 Fluid Dynamics +1609.01639 +1609.01640 Analysis of PDEs +1609.01641 Social and Information Networks +1609.01642 Analysis of PDEs +1609.01644 Superconductivity +1609.01645 Analysis of PDEs +1609.01648 Computer Vision and Pattern Recognition +1609.01652 +1609.01657 History and Overview +1609.01658 Geometric Topology +1609.01661 Accelerator Physics +1609.01662 Computational Geometry +1609.01665 +1609.01668 Data Analysis, Statistics and Probability +1609.01671 Probability +1609.01672 Methodology +1609.01675 Combinatorics +1609.01676 Software Engineering +1609.01679 Statistics Theory +1609.01680 +1609.01682 Computer Science and Game Theory +1609.01684 Analysis of PDEs +1609.01686 Experiment +1609.01688 Materials Science +1609.01695 Spectral Theory +1609.01698 +1609.01699 Combinatorics +1609.01703 Strongly Correlated Electrons +astro-ph/0103366 +astro-ph/9503015 +astro-ph/9702079 +astro-ph/9910567 +cond-mat/0106574 Superconductivity +cond-mat/0201472 Statistical Mechanics +cond-mat/0212600 Materials Science +cond-mat/0503425 Soft Condensed Matter +cond-mat/0701444 Disordered Systems and Neural Networks +cond-mat/9502042 +cond-mat/9509167 +cond-mat/9803305 +cs/0508114 Cryptography and Security +math-ph/0001013 +math-ph/0002005 +math-ph/0003016 +math-ph/0003020 +math-ph/0003032 +math-ph/0006009 +math-ph/0008005 +math-ph/0009007 +math-ph/0009008 +math-ph/0009022 +math-ph/0010034 +math-ph/0010041 +math-ph/0011007 +math-ph/0011053 +math-ph/0012046 +math-ph/0102001 +math-ph/0102002 +math-ph/0105045 +math-ph/0106010 +math-ph/0107001 +math-ph/0107027 +math-ph/0108007 +math-ph/0109004 +math-ph/0110037 +math-ph/0201015 +math-ph/0201038 +math-ph/0201039 +math-ph/0202007 +math-ph/0202012 +math-ph/0202030 +math-ph/0202031 +math-ph/0203055 +math-ph/0204022 +math-ph/0204034 +math-ph/0205003 +math-ph/0205008 +math-ph/0205028 +math-ph/0208007 +math-ph/0209023 +math-ph/0210011 +math-ph/0210041 +math-ph/0211028 +math-ph/0212007 +math-ph/0212025 +math-ph/0212030 +math-ph/0212053 +math-ph/0301040 +math-ph/0301046 +math-ph/0302021 +math-ph/0302026 +math-ph/0303052 +math-ph/0305018 +math-ph/0305048 +math-ph/0306017 +math-ph/0306044 +math-ph/0306054 +math-ph/0306060 +math-ph/0308034 +math-ph/0309038 +math-ph/0309057 +math-ph/0310052 +math-ph/0310055 +math-ph/0311008 +math-ph/0311033 +math-ph/0312016 +math-ph/0312063 +math-ph/0312070 +math-ph/0401037 +math-ph/0402003 +math-ph/0402062 +math-ph/0403002 +math-ph/0403058 +math-ph/0404046 +math-ph/0404048 +math-ph/0404051 +math-ph/0404054 +math-ph/0404071 +math-ph/0405015 +math-ph/0407030 +math-ph/0501005 +math-ph/0501007 +math-ph/0501013 +math-ph/0501020 +math-ph/0503024 +math-ph/0504003 +math-ph/0504073 +math-ph/0505011 +math-ph/0506054 +math-ph/0506065 +math-ph/0506069 +math-ph/0507016 +math-ph/0508009 +math-ph/0509034 +math-ph/0509061 +math-ph/0510003 +math-ph/0510013 +math-ph/0510019 +math-ph/0510035 +math-ph/0511006 +math-ph/0604034 +math-ph/0605057 +math-ph/0606055 +math-ph/0611019 +math-ph/0703019 +math-ph/9806011 +math-ph/9807028 +math-ph/9808002 +math-ph/9808012 +math-ph/9809021 +math-ph/9809023 +math-ph/9809026 +math-ph/9811026 +math-ph/9812024 +math-ph/9901013 +math-ph/9902025 +math-ph/9904006 +math-ph/9904025 +math-ph/9906008 +math-ph/9907002 +math-ph/9907025 +math-ph/9910002 +math-ph/9910008 +math-ph/9910026 +math-ph/9911021 +math-ph/9911045 +math/0001028 Quantum Algebra +math/0001176 Differential Geometry +math/0002040 Quantum Algebra +math/0002105 Rings and Algebras +math/0002126 Operator Algebras +math/0002167 Differential Geometry +math/0002210 Numerical Analysis +math/0002248 Dynamical Systems +math/0002254 Number Theory +math/0003104 Algebraic Geometry +math/0003109 Quantum Algebra +math/0003135 Numerical Analysis +math/0003136 Number Theory +math/0003153 Algebraic Geometry +math/0003176 Geometric Topology +math/0003200 Quantum Algebra +math/0003201 Algebraic Geometry +math/0003205 Spectral Theory +math/0003237 Number Theory +math/0003238 Number Theory +math/0003239 Number Theory +math/0003240 Algebraic Geometry +math/0003241 Number Theory +math/0003242 Representation Theory +math/0004041 Differential Geometry +math/0004188 History and Overview +math/0004189 Number Theory +math/0005002 Symplectic Geometry +math/0005068 Differential Geometry +math/0005102 Algebraic Geometry +math/0005108 Geometric Topology +math/0005176 Differential Geometry +math/0005194 Functional Analysis +math/0005196 Algebraic Geometry +math/0005225 Operator Algebras +math/0005232 Algebraic Geometry +math/0005259 Differential Geometry +math/0005273 Rings and Algebras +math/0005302 Representation Theory +math/0005304 Dynamical Systems +math/0005305 Representation Theory +math/0005306 Analysis of PDEs +math/0005307 Complex Variables +math/0006024 History and Overview +math/0006043 Algebraic Geometry +math/0006081 General Topology +math/0006083 Quantum Algebra +math/0006106 Combinatorics +math/0006136 Complex Variables +math/0006170 K-Theory and Homology +math/0006226 Quantum Algebra +math/0007004 Algebraic Geometry +math/0007010 Operator Algebras +math/0007022 Algebraic Geometry +math/0007061 Dynamical Systems +math/0007156 Algebraic Geometry +math/0007163 Quantum Algebra +math/0007198 Differential Geometry +math/0007199 Logic +math/0007200 Representation Theory +math/0007201 Algebraic Geometry +math/0007202 Number Theory +math/0007203 Number Theory +math/0007204 Representation Theory +math/0008008 Complex Variables +math/0008018 Differential Geometry +math/0008088 Spectral Theory +math/0008095 Functional Analysis +math/0008103 Quantum Algebra +math/0008142 Rings and Algebras +math/0008157 Symplectic Geometry +math/0008195 Quantum Algebra +math/0008203 Algebraic Geometry +math/0008235 Geometric Topology +math/0008236 Algebraic Topology +math/0008246 Number Theory +math/0009027 Dynamical Systems +math/0009108 Algebraic Geometry +math/0009123 Algebraic Geometry +math/0009142 Classical Analysis and ODEs +math/0009154 Algebraic Geometry +math/0009161 Differential Geometry +math/0009216 Geometric Topology +math/0009219 Quantum Algebra +math/0009231 Quantum Algebra +math/0009238 Classical Analysis and ODEs +math/0009243 Differential Geometry +math/0009251 Complex Variables +math/0009252 Number Theory +math/0009253 Complex Variables +math/0009254 Analysis of PDEs +math/0010051 Functional Analysis +math/0010071 Metric Geometry +math/0010114 Algebraic Geometry +math/0010177 Differential Geometry +math/0010211 Algebraic Geometry +math/0010221 Combinatorics +math/0010250 Quantum Algebra +math/0010256 Analysis of PDEs +math/0010283 Algebraic Geometry +math/0010303 Group Theory +math/0010311 Metric Geometry +math/0010312 Quantum Algebra +math/0011025 Numerical Analysis +math/0011085 Differential Geometry +math/0011095 Complex Variables +math/0011102 Number Theory +math/0011149 Algebraic Geometry +math/0011152 General Topology +math/0011198 Algebraic Geometry +math/0011225 Rings and Algebras +math/0011257 Algebraic Geometry +math/0011268 Dynamical Systems +math/0012065 Geometric Topology +math/0012085 Geometric Topology +math/0012125 Operator Algebras +math/0012127 Operator Algebras +math/0012128 Operator Algebras +math/0101001 Analysis of PDEs +math/0101108 Geometric Topology +math/0101146 Operator Algebras +math/0101184 Operator Algebras +math/0101248 Differential Geometry +math/0102066 Combinatorics +math/0102098 Geometric Topology +math/0102109 Differential Geometry +math/0102198 Analysis of PDEs +math/0102207 Dynamical Systems +math/0102226 Algebraic Geometry +math/0102228 Algebraic Geometry +math/0103022 Algebraic Geometry +math/0103186 Algebraic Geometry +math/0103196 Optimization and Control +math/0104019 Rings and Algebras +math/0104023 K-Theory and Homology +math/0104071 Quantum Algebra +math/0104142 Analysis of PDEs +math/0104143 Analysis of PDEs +math/0104176 Number Theory +math/0104205 Number Theory +math/0104258 Operator Algebras +math/0105133 Differential Geometry +math/0105170 Quantum Algebra +math/0105184 Rings and Algebras +math/0105198 Algebraic Geometry +math/0105228 Analysis of PDEs +math/0105230 Geometric Topology +math/0105242 Algebraic Geometry +math/0105251 Quantum Algebra +math/0106011 Representation Theory +math/0106012 Classical Analysis and ODEs +math/0106039 Combinatorics +math/0106077 Differential Geometry +math/0106141 Differential Geometry +math/0106155 Probability +math/0106180 Optimization and Control +math/0106231 Analysis of PDEs +math/0107050 Operator Algebras +math/0107068 Probability +math/0107075 Operator Algebras +math/0107085 Dynamical Systems +math/0107089 Quantum Algebra +math/0107102 Classical Analysis and ODEs +math/0107115 Group Theory +math/0107121 Probability +math/0108010 Geometric Topology +math/0108037 Algebraic Geometry +math/0108085 Analysis of PDEs +math/0108086 Analysis of PDEs +math/0108209 Dynamical Systems +math/0109014 Algebraic Geometry +math/0109075 Differential Geometry +math/0109151 Algebraic Geometry +math/0109173 Analysis of PDEs +math/0109174 Analysis of PDEs +math/0109186 Complex Variables +math/0109227 Number Theory +math/0110232 Algebraic Geometry +math/0110254 Algebraic Geometry +math/0110266 Quantum Algebra +math/0110284 Group Theory +math/0110326 Symplectic Geometry +math/0110330 Symplectic Geometry +math/0110337 Differential Geometry +math/0110339 Representation Theory +math/0111042 Quantum Algebra +math/0111129 Differential Geometry +math/0111207 Algebraic Geometry +math/0111208 Differential Geometry +math/0111227 Functional Analysis +math/0112085 Functional Analysis +math/0112088 Geometric Topology +math/0112154 Quantum Algebra +math/0112155 Quantum Algebra +math/0112177 Quantum Algebra +math/0112181 Functional Analysis +math/0112183 Algebraic Geometry +math/0112236 Operator Algebras +math/0112241 Rings and Algebras +math/0201045 Group Theory +math/0201130 Probability +math/0201215 Differential Geometry +math/0201278 Dynamical Systems +math/0201282 Symplectic Geometry +math/0201312 Group Theory +math/0202061 Operator Algebras +math/0202116 General Topology +math/0202131 Algebraic Geometry +math/0202174 Group Theory +math/0202213 Representation Theory +math/0202229 Number Theory +math/0202309 General Mathematics +math/0203020 Group Theory +math/0203035 Quantum Algebra +math/0203054 Algebraic Geometry +math/0203077 Differential Geometry +math/0203106 Algebraic Geometry +math/0203135 Differential Geometry +math/0203148 Algebraic Geometry +math/0203198 Differential Geometry +math/0204050 Differential Geometry +math/0204073 Complex Variables +math/0204083 Algebraic Geometry +math/0204087 Probability +math/0204098 Classical Analysis and ODEs +math/0204184 Quantum Algebra +math/0204289 Probability +math/0204317 Classical Analysis and ODEs +math/0204335 Differential Geometry +math/0204336 Algebraic Geometry +math/0205012 Differential Geometry +math/0205030 Symplectic Geometry +math/0205035 Algebraic Geometry +math/0205043 Algebraic Topology +math/0205062 Algebraic Geometry +math/0205101 Probability +math/0205141 Group Theory +math/0205183 General Mathematics +math/0205190 Differential Geometry +math/0205228 Algebraic Geometry +math/0205331 Logic +math/0206004 Algebraic Geometry +math/0206054 Dynamical Systems +math/0206086 Complex Variables +math/0206116 Algebraic Geometry +math/0206156 Geometric Topology +math/0206184 Statistics Theory +math/0206205 Quantum Algebra +math/0206248 Algebraic Geometry +math/0206289 Probability +math/0207029 Number Theory +math/0207035 Quantum Algebra +math/0207075 Optimization and Control +math/0207083 Rings and Algebras +math/0207180 Number Theory +math/0207192 Combinatorics +math/0207218 Quantum Algebra +math/0208034 Differential Geometry +math/0208096 Algebraic Geometry +math/0208145 Analysis of PDEs +math/0208178 Algebraic Geometry +math/0208244 Classical Analysis and ODEs +math/0209092 Algebraic Geometry +math/0209102 Number Theory +math/0209162 Number Theory +math/0209195 Number Theory +math/0209201 Differential Geometry +math/0209349 Differential Geometry +math/0209378 Commutative Algebra +math/0209408 Logic +math/0210160 Differential Geometry +math/0210174 Geometric Topology +math/0210253 Differential Geometry +math/0210277 Analysis of PDEs +math/0210303 Differential Geometry +math/0210318 Algebraic Geometry +math/0210325 Symplectic Geometry +math/0211031 Quantum Algebra +math/0211067 Representation Theory +math/0211078 History and Overview +math/0211124 Classical Analysis and ODEs +math/0211190 Classical Analysis and ODEs +math/0211259 Number Theory +math/0211267 Combinatorics +math/0211295 Differential Geometry +math/0211333 Differential Geometry +math/0211428 Algebraic Geometry +math/0211431 Algebraic Geometry +math/0212135 Commutative Algebra +math/0212157 Algebraic Topology +math/0212229 Functional Analysis +math/0212241 Operator Algebras +math/0212313 Quantum Algebra +math/0212314 Algebraic Geometry +math/0212344 Number Theory +math/0301059 Complex Variables +math/0301107 Functional Analysis +math/0301138 Algebraic Geometry +math/0301221 Category Theory +math/0301244 Quantum Algebra +math/0301249 Algebraic Geometry +math/0301259 Operator Algebras +math/0301262 Commutative Algebra +math/0301263 Representation Theory +math/0301306 Number Theory +math/0302002 Numerical Analysis +math/0302045 Algebraic Geometry +math/0302098 Geometric Topology +math/0302105 Combinatorics +math/0302193 Classical Analysis and ODEs +math/0302326 Analysis of PDEs +math/0303008 Analysis of PDEs +math/0303039 Analysis of PDEs +math/0303056 Differential Geometry +math/0303057 General Topology +math/0303069 K-Theory and Homology +math/0303112 Differential Geometry +math/0303135 Differential Geometry +math/0303186 Functional Analysis +math/0303274 Differential Geometry +math/0303329 Algebraic Geometry +math/0303367 Algebraic Geometry +math/0304017 Number Theory +math/0304020 Representation Theory +math/0304075 Quantum Algebra +math/0304269 Differential Geometry +math/0304366 Probability +math/0304426 Probability +math/0304469 Dynamical Systems +math/0304482 Complex Variables +math/0304487 Symplectic Geometry +math/0305014 Numerical Analysis +math/0305042 Algebraic Geometry +math/0305090 Algebraic Geometry +math/0305115 Quantum Algebra +math/0305117 Quantum Algebra +math/0305200 Probability +math/0305242 Combinatorics +math/0305252 Probability +math/0305313 Probability +math/0305316 Geometric Topology +math/0305339 Number Theory +math/0305371 Operator Algebras +math/0305401 Geometric Topology +math/0305413 Quantum Algebra +math/0305429 Representation Theory +math/0306047 Combinatorics +math/0306118 Complex Variables +math/0306239 Analysis of PDEs +math/0306244 Rings and Algebras +math/0306286 Classical Analysis and ODEs +math/0306341 Differential Geometry +math/0306389 Combinatorics +math/0306398 Geometric Topology +math/0306431 Analysis of PDEs +math/0307030 Dynamical Systems +math/0307062 Representation Theory +math/0307180 Algebraic Geometry +math/0308003 History and Overview +math/0308064 Algebraic Topology +math/0308074 Classical Analysis and ODEs +math/0308079 Algebraic Geometry +math/0308123 Analysis of PDEs +math/0308147 Geometric Topology +math/0308213 Number Theory +math/0308257 Operator Algebras +math/0308284 Probability +math/0309056 Algebraic Geometry +math/0309084 Differential Geometry +math/0309094 Spectral Theory +math/0309125 Algebraic Geometry +math/0309130 Algebraic Geometry +math/0309198 Operator Algebras +math/0309318 Combinatorics +math/0309400 Algebraic Topology +math/0309463 Analysis of PDEs +math/0309471 Group Theory +math/0310039 Analysis of PDEs +math/0310060 Algebraic Geometry +math/0310084 Algebraic Geometry +math/0310119 Complex Variables +math/0310255 Combinatorics +math/0310361 Algebraic Geometry +math/0310398 Functional Analysis +math/0310446 Differential Geometry +math/0310454 Algebraic Geometry +math/0311010 Number Theory +math/0311041 Combinatorics +math/0311137 Algebraic Geometry +math/0311185 Geometric Topology +math/0311211 Combinatorics +math/0311282 Geometric Topology +math/0311320 Differential Geometry +math/0311461 Operator Algebras +math/0312042 Dynamical Systems +math/0312054 Analysis of PDEs +math/0312123 Functional Analysis +math/0312124 Representation Theory +math/0312256 Probability +math/0312277 Algebraic Topology +math/0401091 Functional Analysis +math/0401198 Analysis of PDEs +math/0401206 Dynamical Systems +math/0401212 Symplectic Geometry +math/0401298 Representation Theory +math/0401374 Algebraic Geometry +math/0401396 Algebraic Geometry +math/0401407 Differential Geometry +math/0402013 Metric Geometry +math/0402096 Complex Variables +math/0402118 Quantum Algebra +math/0402204 History and Overview +math/0402271 Combinatorics +math/0402280 Differential Geometry +math/0402305 Classical Analysis and ODEs +math/0402343 Dynamical Systems +math/0402350 Quantum Algebra +math/0403040 Functional Analysis +math/0403061 Quantum Algebra +math/0403119 Number Theory +math/0403160 Algebraic Geometry +math/0403187 Spectral Theory +math/0403232 Analysis of PDEs +math/0403286 Differential Geometry +math/0403344 Classical Analysis and ODEs +math/0403355 Numerical Analysis +math/0403412 Differential Geometry +math/0403423 Group Theory +math/0404004 Differential Geometry +math/0404008 Quantum Algebra +math/0404063 Combinatorics +math/0404092 Probability +math/0404142 Combinatorics +math/0404232 Differential Geometry +math/0404296 Numerical Analysis +math/0404315 Operator Algebras +math/0404387 Algebraic Geometry +math/0404404 Geometric Topology +math/0404475 Geometric Topology +math/0404494 Differential Geometry +math/0405005 Quantum Algebra +math/0405021 Algebraic Geometry +math/0405070 Probability +math/0405083 Number Theory +math/0405138 Representation Theory +math/0405202 Commutative Algebra +math/0405300 Algebraic Geometry +math/0405344 Commutative Algebra +math/0405387 Operator Algebras +math/0405444 Representation Theory +math/0405514 Operator Algebras +math/0405520 Probability +math/0406007 Operator Algebras +math/0406020 Differential Geometry +math/0406021 Differential Geometry +math/0406178 Probability +math/0406289 Functional Analysis +math/0406317 Quantum Algebra +math/0406365 Rings and Algebras +math/0406418 Combinatorics +math/0406448 Metric Geometry +math/0406500 Complex Variables +math/0406505 Logic +math/0407034 Algebraic Geometry +math/0407057 Probability +math/0407074 Rings and Algebras +math/0407110 Group Theory +math/0407118 Probability +math/0407125 Probability +math/0407128 Probability +math/0407131 Probability +math/0407136 Probability +math/0407140 Probability +math/0407192 Analysis of PDEs +math/0407345 Dynamical Systems +math/0407388 K-Theory and Homology +math/0407401 Differential Geometry +math/0407421 Number Theory +math/0408042 Rings and Algebras +math/0408053 Combinatorics +math/0408112 Geometric Topology +math/0408121 Differential Geometry +math/0408130 Algebraic Geometry +math/0408152 Differential Geometry +math/0408193 Numerical Analysis +math/0408194 Functional Analysis +math/0408216 Algebraic Topology +math/0408248 Differential Geometry +math/0408260 K-Theory and Homology +math/0408273 Analysis of PDEs +math/0408296 Operator Algebras +math/0408300 Functional Analysis +math/0408352 Analysis of PDEs +math/0408407 Complex Variables +math/0409001 Dynamical Systems +math/0409037 Algebraic Geometry +math/0409062 Combinatorics +math/0409103 Logic +math/0409115 Number Theory +math/0409146 Group Theory +math/0409269 Algebraic Geometry +math/0409303 Differential Geometry +math/0409325 Dynamical Systems +math/0409355 Symplectic Geometry +math/0409382 Group Theory +math/0409554 Probability +math/0410019 Differential Geometry +math/0410046 Algebraic Geometry +math/0410057 Classical Analysis and ODEs +math/0410103 Probability +math/0410106 Probability +math/0410110 Probability +math/0410114 Probability +math/0410116 Probability +math/0410135 Probability +math/0410137 Probability +math/0410139 Probability +math/0410151 Probability +math/0410155 Probability +math/0410156 Probability +math/0410158 Probability +math/0410164 Probability +math/0410165 Probability +math/0410168 Probability +math/0410169 Probability +math/0410170 Probability +math/0410177 Probability +math/0410357 Representation Theory +math/0410400 Operator Algebras +math/0410406 Rings and Algebras +math/0410422 Functional Analysis +math/0410427 Functional Analysis +math/0410452 Analysis of PDEs +math/0410598 Commutative Algebra +math/0410605 Quantum Algebra +math/0411007 Combinatorics +math/0411145 Combinatorics +math/0411152 Number Theory +math/0411187 Commutative Algebra +math/0411194 Analysis of PDEs +math/0411226 Logic +math/0411324 Commutative Algebra +math/0411355 Algebraic Geometry +math/0411378 Number Theory +math/0411477 Quantum Algebra +math/0411495 Operator Algebras +math/0411505 Quantum Algebra +math/0411572 Complex Variables +math/0411621 Quantum Algebra +math/0411644 Group Theory +math/0412011 Differential Geometry +math/0412150 Algebraic Geometry +math/0412241 Analysis of PDEs +math/0412271 Algebraic Topology +math/0412296 Complex Variables +math/0412346 Probability +math/0412368 Number Theory +math/0412374 Number Theory +math/0412392 Probability +math/0412414 Symplectic Geometry +math/0412458 Quantum Algebra +math/0501034 Dynamical Systems +math/0501039 Numerical Analysis +math/0501095 Probability +math/0501179 Commutative Algebra +math/0501238 Operator Algebras +math/0501272 Quantum Algebra +math/0501296 Dynamical Systems +math/0501332 Representation Theory +math/0501348 Algebraic Geometry +math/0501422 Differential Geometry +math/0501446 Representation Theory +math/0501473 Quantum Algebra +math/0501488 Differential Geometry +math/0502070 Algebraic Geometry +math/0502074 Commutative Algebra +math/0502108 Metric Geometry +math/0502169 Algebraic Geometry +math/0502209 Geometric Topology +math/0502217 Functional Analysis +math/0502261 Number Theory +math/0502345 Metric Geometry +math/0502495 Differential Geometry +math/0502529 Rings and Algebras +math/0502581 Probability +math/0503029 Algebraic Geometry +math/0503071 Probability +math/0503086 Functional Analysis +math/0503114 Combinatorics +math/0503132 Quantum Algebra +math/0503137 Probability +math/0503140 Functional Analysis +math/0503153 Differential Geometry +math/0503157 Commutative Algebra +math/0503168 Symplectic Geometry +math/0503200 Number Theory +math/0503209 Number Theory +math/0503253 Algebraic Geometry +math/0503259 Complex Variables +math/0503268 Symplectic Geometry +math/0503307 Representation Theory +math/0503487 Probability +math/0503493 Analysis of PDEs +math/0503535 Probability +math/0503547 Probability +math/0504049 Geometric Topology +math/0504134 Analysis of PDEs +math/0504147 Geometric Topology +math/0504215 Number Theory +math/0504247 Probability +math/0504258 Geometric Topology +math/0504332 Number Theory +math/0504373 Quantum Algebra +math/0504420 Quantum Algebra +math/0504422 Differential Geometry +math/0504492 Algebraic Geometry +math/0504536 Analysis of PDEs +math/0505111 Algebraic Geometry +math/0505183 Algebraic Geometry +math/0505288 Group Theory +math/0505294 Classical Analysis and ODEs +math/0505311 Operator Algebras +math/0505421 Commutative Algebra +math/0505487 Group Theory +math/0505581 Commutative Algebra +math/0505618 Probability +math/0506030 Quantum Algebra +math/0506036 Dynamical Systems +math/0506184 Functional Analysis +math/0506248 Algebraic Geometry +math/0506274 Combinatorics +math/0506375 Geometric Topology +math/0506387 Quantum Algebra +math/0506443 Geometric Topology +math/0506507 Quantum Algebra +math/0506542 Combinatorics +math/0506547 Geometric Topology +math/0506584 Commutative Algebra +math/0507092 Representation Theory +math/0507141 Dynamical Systems +math/0507174 Differential Geometry +math/0507220 Probability +math/0507272 Complex Variables +math/0507281 Symplectic Geometry +math/0507556 Differential Geometry +math/0508006 Differential Geometry +math/0508048 Group Theory +math/0508065 Geometric Topology +math/0508133 Algebraic Geometry +math/0508221 Commutative Algebra +math/0508262 Probability +math/0508433 Algebraic Geometry +math/0508435 Combinatorics +math/0508508 Dynamical Systems +math/0508544 Functional Analysis +math/0508568 Spectral Theory +math/0509045 Algebraic Geometry +math/0509119 Algebraic Geometry +math/0509145 Quantum Algebra +math/0509166 Probability +math/0509188 Rings and Algebras +math/0509196 Number Theory +math/0509199 Analysis of PDEs +math/0509248 Logic +math/0509263 Analysis of PDEs +math/0509369 Dynamical Systems +math/0509485 Number Theory +math/0509495 Operator Algebras +math/0509506 Operator Algebras +math/0509521 Combinatorics +math/0509545 Analysis of PDEs +math/0509571 Differential Geometry +math/0509572 Differential Geometry +math/0509585 Probability +math/0509594 K-Theory and Homology +math/0509626 Dynamical Systems +math/0509641 Algebraic Geometry +math/0509643 Operator Algebras +math/0509697 Commutative Algebra +math/0509725 Algebraic Geometry +math/0510035 Probability +math/0510038 Probability +math/0510043 Probability +math/0510069 Differential Geometry +math/0510086 Geometric Topology +math/0510118 General Topology +math/0510120 General Topology +math/0510262 Rings and Algebras +math/0510299 Algebraic Geometry +math/0510371 Spectral Theory +math/0510556 Probability +math/0510577 Analysis of PDEs +math/0510588 Probability +math/0510592 Analysis of PDEs +math/0511025 Probability +math/0511062 Dynamical Systems +math/0511103 Numerical Analysis +math/0511319 Functional Analysis +math/0511650 Group Theory +math/0511654 Rings and Algebras +math/0511655 Functional Analysis +math/0511709 Classical Analysis and ODEs +math/0512171 Rings and Algebras +math/0512264 Probability +math/0512422 Rings and Algebras +math/0512596 Algebraic Topology +math/0601081 Combinatorics +math/0601100 Algebraic Geometry +math/0601120 Algebraic Geometry +math/0601121 Combinatorics +math/0601486 Geometric Topology +math/0601609 Functional Analysis +math/0601668 Algebraic Geometry +math/0602075 Representation Theory +math/0602301 Algebraic Geometry +math/0602309 Dynamical Systems +math/0602433 Dynamical Systems +math/0602658 Quantum Algebra +math/0603178 Probability +math/0603294 Analysis of PDEs +math/0603580 Probability +math/0604002 Spectral Theory +math/0604046 Commutative Algebra +math/0604489 Number Theory +math/0605073 Rings and Algebras +math/0605170 Algebraic Geometry +math/0605265 Analysis of PDEs +math/0605575 Analysis of PDEs +math/0605579 Quantum Algebra +math/0605651 Dynamical Systems +math/0605795 Quantum Algebra +math/0606011 Quantum Algebra +math/0606155 Representation Theory +math/0606161 Representation Theory +math/0606191 Operator Algebras +math/0606319 Functional Analysis +math/0606640 Analysis of PDEs +math/0607148 Differential Geometry +math/0607400 Probability +math/0608096 Rings and Algebras +math/0608099 Quantum Algebra +math/0608311 Dynamical Systems +math/0608338 Probability +math/0608345 Commutative Algebra +math/0608394 Optimization and Control +math/0608581 Group Theory +math/0608678 Quantum Algebra +math/0608686 Metric Geometry +math/0609141 Algebraic Topology +math/0609629 Algebraic Geometry +math/0610078 Analysis of PDEs +math/0610191 Classical Analysis and ODEs +math/0610243 Probability +math/0610893 Combinatorics +math/0610927 Functional Analysis +math/0611047 Commutative Algebra +math/0611236 Quantum Algebra +math/0611473 Statistics Theory +math/0611766 Algebraic Topology +math/0611785 Differential Geometry +math/0611879 Operator Algebras +math/0612048 Probability +math/0702339 Analysis of PDEs +math/0702880 Differential Geometry +math/0703909 Differential Geometry +math/9612209 Functional Analysis +math/9612210 Functional Analysis +math/9612211 Group Theory +math/9612212 Combinatorics +math/9612213 Combinatorics +math/9612214 Geometric Topology +math/9612215 Geometric Topology +math/9612216 Geometric Topology +math/9612218 Combinatorics +math/9612219 Combinatorics +math/9701201 Complex Variables +math/9701202 Logic +math/9701207 Combinatorics +math/9701208 Number Theory +math/9701209 Number Theory +math/9701210 Commutative Algebra +math/9701214 Analysis of PDEs +math/9701216 Dynamical Systems +math/9701217 Dynamical Systems +math/9701219 Logic +math/9701221 Complex Variables +math/9701223 Probability +math/9701224 Probability +math/9701227 Probability +math/9702204 Logic +math/9702205 Logic +math/9702206 Logic +math/9702207 Logic +math/9702208 Logic +math/9702209 Logic +math/9702215 Functional Analysis +math/9702217 Functional Analysis +math/9702218 Optimization and Control +math/9702219 Combinatorics +math/9702223 Combinatorics +math/9702224 Combinatorics +math/9702225 Dynamical Systems +math/9702226 Combinatorics +math/9702229 Complex Variables +math/9702234 Group Theory +math/9703203 Logic +math/9703204 Logic +math/9703205 Spectral Theory +math/9703207 Geometric Topology +math/9703209 Combinatorics +math/9703210 Representation Theory +math/9703212 Combinatorics +math/9703214 Classical Analysis and ODEs +math/9703215 Classical Analysis and ODEs +math/9703216 Classical Analysis and ODEs +math/9703217 Classical Analysis and ODEs +math/9703218 Logic +math/9703222 Logic +math/9703223 Differential Geometry +math/9704205 Logic +math/9704206 Logic +math/9704207 Logic +math/9704208 Functional Analysis +math/9704210 Functional Analysis +math/9704214 Functional Analysis +math/9704215 Functional Analysis +math/9704216 Functional Analysis +math/9704217 Combinatorics +math/9704220 Combinatorics +math/9704226 Combinatorics +math/9704227 Combinatorics +math/9704228 Combinatorics +math/9704230 Dynamical Systems +math/9705201 Complex Variables +math/9705210 Functional Analysis +math/9705214 Number Theory +math/9705215 Algebraic Geometry +math/9705217 Geometric Topology +math/9705219 Combinatorics +math/9705223 Combinatorics +math/9705226 Logic +math/9705229 Algebraic Topology +math/9706204 Logic +math/9706205 Logic +math/9706206 Logic +math/9706207 Logic +math/9706209 Functional Analysis +math/9706210 Functional Analysis +math/9706211 Functional Analysis +math/9706214 Functional Analysis +math/9706215 Metric Geometry +math/9706217 Algebraic Geometry +math/9706218 Geometric Topology +math/9706219 Combinatorics +math/9706220 Combinatorics +math/9706221 Spectral Theory +math/9706222 Geometric Topology +math/9706225 Logic +math/9706226 Differential Geometry +math/9706227 Differential Geometry +math/9707202 Logic +math/9707203 Logic +math/9707204 Logic +math/9707205 Logic +math/9707206 Logic +math/9707208 Functional Analysis +math/9707209 Metric Geometry +math/9707213 Classical Analysis and ODEs +math/9707214 Differential Geometry +math/9707217 Differential Geometry +math/9707218 Combinatorics +math/9707223 Dynamical Systems +math/9707224 Dynamical Systems +math/9707225 Logic +math/9707226 Combinatorics +math/9707232 Geometric Topology +math/9708201 Complex Variables +math/9708206 Geometric Topology +math/9708207 Representation Theory +math/9708208 Dynamical Systems +math/9708209 Representation Theory +math/9708213 Differential Geometry +math/9709203 Logic +math/9709204 Logic +math/9709208 Functional Analysis +math/9709209 Functional Analysis +math/9709212 Functional Analysis +math/9709213 Functional Analysis +math/9709214 Functional Analysis +math/9709217 Functional Analysis +math/9709222 Analysis of PDEs +math/9709223 Classical Analysis and ODEs +math/9709227 Dynamical Systems +math/9709228 Logic +math/9709232 Rings and Algebras +math/9709233 Geometric Topology +math/9710201 Logic +math/9710203 Functional Analysis +math/9710204 Functional Analysis +math/9710205 Functional Analysis +math/9710208 Differential Geometry +math/9710209 Classical Analysis and ODEs +math/9710217 Logic +math/9710219 Differential Geometry +math/9710221 Analysis of PDEs +math/9711202 Group Theory +math/9711208 Functional Analysis +math/9711210 Functional Analysis +math/9711212 Functional Analysis +math/9711214 Dynamical Systems +math/9711217 Classical Analysis and ODEs +math/9711219 Algebraic Geometry +math/9711220 Logic +math/9711223 Logic +math/9711224 Rings and Algebras +math/9711225 Differential Geometry +math/9711226 Rings and Algebras +math/9712229 Combinatorics +math/9712245 Complex Variables +math/9712270 Logic +math/9712272 Logic +math/9712273 Logic +math/9712275 Logic +math/9712277 Functional Analysis +math/9712280 Complex Variables +math/9712282 Logic +math/9712283 Logic +math/9712284 Logic +math/9712285 Logic +math/9712288 Logic +math/9712289 Logic +math/9712291 Rings and Algebras +math/9712293 Representation Theory +math/9801017 Algebraic Geometry +math/9801057 Numerical Analysis +math/9801073 Differential Geometry +math/9801095 Quantum Algebra +math/9801141 Quantum Algebra +math/9801142 Functional Analysis +math/9801143 Probability +math/9801146 Analysis of PDEs +math/9801150 Dynamical Systems +math/9801151 Logic +math/9801152 Logic +math/9801154 Logic +math/9801155 Logic +math/9802015 Operator Algebras +math/9802038 Differential Geometry +math/9802108 Rings and Algebras +math/9802133 Geometric Topology +math/9802134 Logic +math/9802135 Logic +math/9803038 Differential Geometry +math/9803053 Algebraic Geometry +math/9803071 Algebraic Geometry +math/9803083 Differential Geometry +math/9803108 Algebraic Geometry +math/9803158 Complex Variables +math/9803159 Representation Theory +math/9803160 Probability +math/9803162 Probability +math/9803163 Classical Analysis and ODEs +math/9803164 Classical Analysis and ODEs +math/9803167 Logic +math/9804007 Complex Variables +math/9804009 Complex Variables +math/9804013 Algebraic Geometry +math/9804048 Algebraic Geometry +math/9804066 Functional Analysis +math/9804084 Quantum Algebra +math/9804104 Operator Algebras +math/9804147 Differential Geometry +math/9804148 Probability +math/9804149 Analysis of PDEs +math/9804151 Differential Geometry +math/9804152 Differential Geometry +math/9804153 Logic +math/9804155 Logic +math/9804156 Logic +math/9804160 Analysis of PDEs +math/9805067 Algebraic Geometry +math/9805070 Differential Geometry +math/9805101 Algebraic Geometry +math/9805135 Quantum Algebra +math/9805137 Combinatorics +math/9805143 Classical Analysis and ODEs +math/9805146 Logic +math/9805151 Logic +math/9805153 Representation Theory +math/9806003 Algebraic Geometry +math/9806007 Operator Algebras +math/9806026 Operator Algebras +math/9806132 Probability +math/9806142 Complex Variables +math/9806153 Algebraic Geometry +math/9806155 Algebraic Geometry +math/9806160 Differential Geometry +math/9806164 Dynamical Systems +math/9807061 Algebraic Geometry +math/9807180 Logic +math/9807181 Logic +math/9807183 Logic +math/9807185 Logic +math/9807187 Number Theory +math/9808063 Differential Geometry +math/9808140 Logic +math/9809013 Geometric Topology +math/9809025 Representation Theory +math/9809095 Combinatorics +math/9809112 Algebraic Geometry +math/9809154 Geometric Topology +math/9809177 Group Theory +math/9809186 Analysis of PDEs +math/9809193 Probability +math/9809194 Probability +math/9809195 Algebraic Topology +math/9809196 Logic +math/9809197 Logic +math/9809198 Logic +math/9809200 Logic +math/9809201 Logic +math/9809202 Logic +math/9809203 Probability +math/9809205 Logic +math/9809206 Number Theory +math/9810040 Geometric Topology +math/9810048 Algebraic Geometry +math/9810135 Differential Geometry +math/9810159 Complex Variables +math/9810181 Logic +math/9810186 Geometric Topology +math/9810187 Group Theory +math/9810190 Group Theory +math/9810192 Geometric Topology +math/9810193 Geometric Topology +math/9810194 Geometric Topology +math/9811022 Algebraic Geometry +math/9811033 Symplectic Geometry +math/9811107 Group Theory +math/9811134 Number Theory +math/9811178 Analysis of PDEs +math/9811179 Number Theory +math/9811180 Geometric Topology +math/9811181 Geometric Topology +math/9811182 Geometric Topology +math/9811184 Analysis of PDEs +math/9811187 Logic +math/9811188 Complex Variables +math/9811189 Representation Theory +math/9812068 Geometric Topology +math/9812158 Algebraic Geometry +math/9812165 Probability +math/9812167 Group Theory +math/9812169 Algebraic Topology +math/9901031 Algebraic Geometry +math/9901062 Differential Geometry +math/9901123 Numerical Analysis +math/9901144 K-Theory and Homology +math/9901145 K-Theory and Homology +math/9901146 Analysis of PDEs +math/9901147 Analysis of PDEs +math/9901148 Complex Variables +math/9901149 Algebraic Geometry +math/9901150 Differential Geometry +math/9901151 Rings and Algebras +math/9902002 Algebraic Geometry +math/9902022 Algebraic Geometry +math/9902066 Quantum Algebra +math/9902102 Algebraic Geometry +math/9902139 Quantum Algebra +math/9902162 Number Theory +math/9903008 Quantum Algebra +math/9903042 Analysis of PDEs +math/9903047 Differential Geometry +math/9903078 Geometric Topology +math/9903098 Functional Analysis +math/9903111 Dynamical Systems +math/9903124 Algebraic Geometry +math/9903155 Representation Theory +math/9903181 Algebraic Geometry +math/9903193 Complex Variables +math/9903195 Number Theory +math/9903196 Number Theory +math/9903197 Number Theory +math/9903199 Complex Variables +math/9903200 Metric Geometry +math/9903201 Dynamical Systems +math/9903203 Classical Analysis and ODEs +math/9903205 Metric Geometry +math/9904044 Number Theory +math/9904075 Quantum Algebra +math/9904076 Algebraic Geometry +math/9904102 Algebraic Geometry +math/9904183 Complex Variables +math/9904184 Probability +math/9904185 Symplectic Geometry +math/9905031 Probability +math/9905049 Algebraic Geometry +math/9905068 Algebraic Geometry +math/9905072 Quantum Algebra +math/9905081 Algebraic Geometry +math/9905192 Quantum Algebra +math/9905204 Metric Geometry +math/9905205 Dynamical Systems +math/9905207 Number Theory +math/9905208 Number Theory +math/9905210 Geometric Topology +math/9905211 Geometric Topology +math/9905212 Metric Geometry +math/9905214 Differential Geometry +math/9905215 Classical Analysis and ODEs +math/9906039 Category Theory +math/9906050 Probability +math/9906073 Operator Algebras +math/9906106 Operator Algebras +math/9906115 Geometric Topology +math/9906181 Rings and Algebras +math/9906186 Operator Algebras +math/9906213 Probability +math/9906214 Number Theory +math/9906215 Number Theory +math/9907026 Operator Algebras +math/9907073 Algebraic Topology +math/9907103 Number Theory +math/9907136 Algebraic Geometry +math/9907175 Quantum Algebra +math/9907183 Combinatorics +math/9907196 Probability +math/9907201 Combinatorics +math/9907202 Representation Theory +math/9907204 Number Theory +math/9907205 Dynamical Systems +math/9907206 Differential Geometry +math/9907207 Number Theory +math/9907209 Classical Analysis and ODEs +math/9908049 Functional Analysis +math/9908111 Functional Analysis +math/9909003 Differential Geometry +math/9909004 Symplectic Geometry +math/9909048 Operator Algebras +math/9909120 Algebraic Topology +math/9909187 Probability +math/9909189 Probability +math/9909190 Number Theory +math/9909193 Classical Analysis and ODEs +math/9909197 Classical Analysis and ODEs +math/9910002 Differential Geometry +math/9910108 Geometric Topology +math/9910128 Classical Analysis and ODEs +math/9910174 Algebraic Geometry +math/9911026 Functional Analysis +math/9911058 Quantum Algebra +math/9911062 Differential Geometry +math/9911166 Algebraic Geometry +math/9911247 Geometric Topology +math/9911248 Geometric Topology +math/9911249 Geometric Topology +math/9911250 Geometric Topology +math/9911251 Geometric Topology +math/9911253 Geometric Topology +math/9911256 Geometric Topology +math/9911257 Geometric Topology +math/9911258 Geometric Topology +math/9911259 Geometric Topology +math/9911261 Number Theory +math/9911262 Group Theory +math/9911263 Group Theory +math/9911264 Number Theory +math/9911265 Spectral Theory +math/9911266 Differential Geometry +math/9911268 Combinatorics +math/9911269 Geometric Topology +math/9912041 Algebraic Geometry +math/9912113 Classical Analysis and ODEs +math/9912124 Combinatorics +math/9912199 Algebraic Topology +math/9912241 Algebraic Geometry +mtrl-th/9411009 Materials Science +mtrl-th/9412006 Materials Science +mtrl-th/9412008 Materials Science +mtrl-th/9501001 Materials Science +mtrl-th/9501002 Materials Science +mtrl-th/9501003 Materials Science +mtrl-th/9501004 Materials Science +mtrl-th/9501005 Materials Science +mtrl-th/9501006 Materials Science +mtrl-th/9502002 Materials Science +mtrl-th/9502003 Materials Science +mtrl-th/9502004 Materials Science +mtrl-th/9502005 Materials Science +mtrl-th/9502006 Materials Science +mtrl-th/9503001 Materials Science +mtrl-th/9503003 Materials Science +mtrl-th/9503005 Materials Science +mtrl-th/9503006 Materials Science +mtrl-th/9505006 Materials Science +mtrl-th/9607012 Materials Science +mtrl-th/9607014 Materials Science +mtrl-th/9609009 Materials Science +mtrl-th/9609011 Materials Science +nlin/0001043 Pattern Formation and Solitons +nlin/0002039 Pattern Formation and Solitons +nlin/0003039 Exactly Solvable and Integrable Systems +nlin/0003064 Chaotic Dynamics +nlin/0004028 Pattern Formation and Solitons +nlin/0005049 Pattern Formation and Solitons +nlin/0006006 Chaotic Dynamics +nlin/0006038 Chaotic Dynamics +nlin/0007002 Exactly Solvable and Integrable Systems +nlin/0008012 Pattern Formation and Solitons +nlin/0009002 Exactly Solvable and Integrable Systems +nlin/0009052 Chaotic Dynamics +nlin/0010004 Chaotic Dynamics +nlin/0102006 Chaotic Dynamics +nlin/0103034 Chaotic Dynamics +nlin/0104004 Chaotic Dynamics +nlin/0104034 Chaotic Dynamics +nlin/0104067 Pattern Formation and Solitons +0711.3666 Analysis of PDEs +0808.0051 Algebraic Topology +0906.3039 Atomic Physics +0912.3186 Algebraic Geometry +1001.0587 Atomic Physics +1006.3161 +1009.2633 Other Condensed Matter +1105.2338 Strongly Correlated Electrons +1105.2964 Strongly Correlated Electrons +1106.3861 Analysis of PDEs +1107.3342 Computer Science and Game Theory +1108.0714 Geometric Topology +1110.0671 Metric Geometry +1111.0321 Data Structures and Algorithms +1111.3123 General Physics +1111.4629 Dynamical Systems +1111.4976 Metric Geometry +1112.0499 Metric Geometry +1112.3892 Differential Geometry +1201.0147 Differential Geometry +1201.0321 Neurons and Cognition +1207.6848 Physics Education +1208.4066 Genomics +1209.5527 Computer Science and Game Theory +1210.5597 Differential Geometry +1211.4514 Metric Geometry +1211.4764 Classical Physics +1211.4814 Functional Analysis +1212.5564 Numerical Analysis +1305.4725 Quantum Algebra +1305.4887 Group Theory +1305.5365 Functional Analysis +1306.5648 Number Theory +1306.6452 +1307.4170 Superconductivity +1307.6626 Cryptography and Security +1307.7657 Algebraic Geometry +1401.4580 Spectral Theory +1401.7823 Group Theory +1401.7860 Metric Geometry +1402.6313 Portfolio Management +1402.6907 Phenomenology +1404.0989 Probability +1404.4269 Dynamical Systems +1404.4437 Theory +1404.6788 Information Theory +1404.7342 Representation Theory +1405.2583 Analysis of PDEs +1405.5899 Geometric Topology +1406.1877 Soft Condensed Matter +1406.2458 Dynamical Systems +1406.4488 Group Theory +1406.4996 General Mathematics +1406.7282 Statistical Mechanics +1407.4352 Soft Condensed Matter +1407.5684 Trading and Market Microstructure +1407.7714 Materials Science +1408.0133 K-Theory and Homology +1408.1051 Symplectic Geometry +1408.1932 Analysis of PDEs +1408.5342 Dynamical Systems +1408.5611 +1408.6207 Phenomenology +1408.6445 Quantum Algebra +1409.1326 Cosmology and Nongalactic Astrophysics +1409.2451 Classical Analysis and ODEs +1409.3202 Analysis of PDEs +1409.4338 +1409.7087 Strongly Correlated Electrons +1410.2182 Number Theory +1410.2610 Neurons and Cognition +1410.4178 Theory +1410.4190 +1410.4378 Algebraic Geometry +1410.4867 Theory +1410.7224 Analysis of PDEs +1410.7686 Statistical Mechanics +1410.7856 Artificial Intelligence +1410.8320 Solar and Stellar Astrophysics +1411.1156 +1411.1219 Solar and Stellar Astrophysics +1411.3877 Number Theory +1411.4456 Classical Physics +1411.4596 Mesoscale and Nanoscale Physics +1411.6476 Numerical Analysis +1412.0730 Probability +1412.6050 Phenomenology +1412.6845 Numerical Analysis +1412.8207 Algebraic Geometry +1412.8674 Probability +1501.03766 Chaotic Dynamics +1501.05086 Networking and Internet Architecture +1501.05512 Theory +1501.05681 Algebraic Geometry +1501.06089 Experiment +1501.07183 Geometric Topology +1502.00259 +1502.00445 Combinatorics +1502.02377 Learning +1502.03115 Probability +1503.00488 Computer Vision and Pattern Recognition +1503.01788 Physics Education +1503.02857 Optimization and Control +1503.04181 Combinatorics +1503.04514 +1503.05125 +1503.05400 Classical Analysis and ODEs +1503.07393 Numerical Analysis +1503.08894 Number Theory +1504.01647 Networking and Internet Architecture +1504.02245 Mesoscale and Nanoscale Physics +1504.02925 Commutative Algebra +1504.06200 Materials Science +1504.08353 Statistical Mechanics +1505.00415 Group Theory +1505.01220 Physics and Society +1505.01939 +1505.03070 +1505.03593 Differential Geometry +1505.04417 Distributed, Parallel, and Cluster Computing +1505.05800 Computational Complexity +1505.05881 Superconductivity +1505.07244 Mesoscale and Nanoscale Physics +1505.07285 Number Theory +1505.07624 Soft Condensed Matter +1506.00398 +1506.00801 +1506.01081 Experiment +1506.01218 Operator Algebras +1506.01795 +1506.02232 Combinatorics +1506.04343 +1506.04411 Algebraic Geometry +1506.06044 +1506.06388 Dynamical Systems +1506.07341 Algebraic Topology +1506.07755 High Energy Astrophysical Phenomena +1506.07954 +1506.09109 Networking and Internet Architecture +1507.00560 Strongly Correlated Electrons +1507.01126 Mesoscale and Nanoscale Physics +1507.01331 Analysis of PDEs +1507.02292 Astrophysics of Galaxies +1507.02337 Functional Analysis +1507.02480 Mesoscale and Nanoscale Physics +1507.02526 Probability +1507.03325 Distributed, Parallel, and Cluster Computing +1507.03937 Physics Education +1507.03939 Physics Education +1507.03941 Physics Education +1507.05093 Phenomenology +1507.05136 Data Structures and Algorithms +1507.05899 Machine Learning +1507.06333 Statistical Mechanics +1507.07252 Phenomenology +1507.08330 Mesoscale and Nanoscale Physics +1507.08476 Networking and Internet Architecture +1507.08826 Artificial Intelligence +1508.00008 Phenomenology +1508.00125 Complex Variables +1508.00552 Phenomenology +1508.01400 Classical Analysis and ODEs +1508.02745 Metric Geometry +1508.03439 Instrumentation and Methods for Astrophysics +1508.03483 Computation +1508.03714 Distributed, Parallel, and Cluster Computing +1508.05331 Superconductivity +1508.06863 Probability +1508.06991 Algebraic Geometry +1508.07533 Soft Condensed Matter +1509.02308 Hardware Architecture +1509.02684 Mesoscale and Nanoscale Physics +1509.02884 Logic +1509.02973 Mesoscale and Nanoscale Physics +1509.03655 Analysis of PDEs +1509.04713 Mesoscale and Nanoscale Physics +1509.04742 Quantum Gases +1509.04976 Experiment +1509.05372 Disordered Systems and Neural Networks +1509.06076 Experiment +1509.06702 Optics +1509.07262 Materials Science +1509.07637 Theory +1509.07988 Phenomenology +1509.08037 Graphics +1509.09143 Analysis of PDEs +1510.00105 Mesoscale and Nanoscale Physics +1510.00150 Astrophysics of Galaxies +1510.00458 Instrumentation and Detectors +1510.02706 Machine Learning +1510.03684 Numerical Analysis +1510.04057 Optics +1510.04160 Distributed, Parallel, and Cluster Computing +1510.04236 Soft Condensed Matter +1510.04439 Methodology +1510.04913 Strongly Correlated Electrons +1510.04928 Strongly Correlated Electrons +1510.05353 +1510.06227 Optics +1510.06276 Instrumentation and Detectors +1510.06297 Phenomenology +1510.06360 Strongly Correlated Electrons +1510.06972 Plasma Physics +1510.07138 Quantum Gases +1510.07706 Differential Geometry +1510.08344 Populations and Evolution +1510.08407 Lattice +1510.08442 Theory +1510.09217 Cosmology and Nongalactic Astrophysics +1511.02070 Materials Science +1511.02268 Biological Physics +1511.03075 Theory +1511.03079 Number Theory +1511.03549 Theory +1511.03939 Materials Science +1511.04012 Number Theory +1511.04152 Exactly Solvable and Integrable Systems +1511.04508 Cryptography and Security +1511.04933 Materials Science +1511.06180 Group Theory +1511.06184 Cosmology and Nongalactic Astrophysics +1511.06492 Optics +1511.06605 +1511.07321 Algebraic Geometry +1511.07478 Materials Science +1511.07678 Lattice +1511.08073 Combinatorics +1511.08581 Statistical Mechanics +1511.08843 Theory +1512.00030 Superconductivity +1512.00349 Theory +1512.00571 Number Theory +1512.00590 +1512.00882 Chemical Physics +1512.01420 Physics and Society +1512.01428 Atomic Physics +1512.01662 Theory +1512.03214 Astrophysics of Galaxies +1512.03538 Astrophysics of Galaxies +1512.03544 Mesoscale and Nanoscale Physics +1512.03735 Analysis of PDEs +1512.03841 High Energy Astrophysical Phenomena +1512.03959 Representation Theory +1512.05173 +1512.05356 Cosmology and Nongalactic Astrophysics +1512.05549 Earth and Planetary Astrophysics +1512.05699 Probability +1512.05839 +1512.06311 Solar and Stellar Astrophysics +1512.06615 Mesoscale and Nanoscale Physics +1512.06956 +1512.07246 Computation +1512.07305 Distributed, Parallel, and Cluster Computing +1512.07362 Systems and Control +1512.07543 Mesoscale and Nanoscale Physics +1512.07654 Operating Systems +1512.08009 Logic in Computer Science +1512.08284 Statistical Mechanics +1512.08957 Statistical Mechanics +1601.00271 Data Structures and Algorithms +1601.00355 Atomic Physics +1601.00865 Chemical Physics +1601.01592 Superconductivity +1601.01851 Analysis of PDEs +1601.03005 Strongly Correlated Electrons +1601.03690 Earth and Planetary Astrophysics +1601.03808 Theory +1601.04164 Materials Science +1601.04732 Theory +1601.05739 Classical Physics +1601.06239 Learning +1601.06884 Information Theory +1601.07521 Statistics Theory +1601.07586 Physics and Society +1602.00492 Experiment +1602.01003 Social and Information Networks +1602.01353 Fluid Dynamics +1602.02278 Strongly Correlated Electrons +1602.02591 Analysis of PDEs +1602.02774 High Energy Astrophysical Phenomena +1602.02979 Statistical Mechanics +1602.03418 Computer Vision and Pattern Recognition +1602.03648 Information Theory +1602.03663 Combinatorics +1602.03881 Data Structures and Algorithms +1602.03904 Combinatorics +1602.04211 Networking and Internet Architecture +1602.04252 Optics +1602.04657 Materials Science +1602.04734 Chemical Physics +1602.04984 Computer Vision and Pattern Recognition +1602.05567 Spectral Theory +1602.05869 Soft Condensed Matter +1602.06268 Probability +1602.06692 Materials Science +1602.06924 Networking and Internet Architecture +1602.07153 Earth and Planetary Astrophysics +1602.07188 Computer Vision and Pattern Recognition +1602.07582 Solar and Stellar Astrophysics +1602.08061 Theory +1602.08958 Algebraic Geometry +1602.08988 Materials Science +1603.00002 Combinatorics +1603.00558 Superconductivity +1603.00766 Combinatorics +1603.01320 Materials Science +1603.01344 Mesoscale and Nanoscale Physics +1603.01611 +1603.01664 Differential Geometry +1603.01686 Optics +1603.01711 Differential Geometry +1603.01730 Mesoscale and Nanoscale Physics +1603.01865 Probability +1603.01896 Analysis of PDEs +1603.01901 Learning +1603.01951 Instrumentation and Methods for Astrophysics +1603.01974 Instrumentation and Methods for Astrophysics +1603.01979 Digital Libraries +1603.02047 Mesoscale and Nanoscale Physics +1603.02113 Mesoscale and Nanoscale Physics +1603.02168 Soft Condensed Matter +1603.02169 Mesoscale and Nanoscale Physics +1603.02504 Discrete Mathematics +1603.02521 Representation Theory +1603.02620 Molecular Networks +1603.02729 Computer Vision and Pattern Recognition +1603.02895 Information Theory +1603.02960 Combinatorics +1603.02997 Spectral Theory +1603.03178 Data Structures and Algorithms +1603.03185 Computation and Language +1603.03465 Information Theory +1603.03505 Data Structures and Algorithms +1603.03513 Optics +1603.03764 Classical Physics +1603.03765 Number Theory +1603.03766 Cosmology and Nongalactic Astrophysics +1603.03769 Medical Physics +1603.03772 Phenomenology +1603.03773 Earth and Planetary Astrophysics +1603.03781 Strongly Correlated Electrons +1603.03783 Computer Vision and Pattern Recognition +1603.03784 Computation and Language +1603.03788 Machine Learning +1603.03789 Number Theory +1603.03790 Analysis of PDEs +1603.03791 Computational Physics +1603.03792 History and Philosophy of Physics +1603.03795 Human-Computer Interaction +1603.03802 Optics +1603.03805 Machine Learning +1603.03808 Geometric Topology +1603.03809 Software Engineering +1603.03813 Number Theory +1603.03814 Artificial Intelligence +1603.03818 Computational Geometry +1603.03819 Computation +1603.03822 Geometric Topology +1603.03827 Computation and Language +1603.03829 Strongly Correlated Electrons +1603.03830 Statistics Theory +1603.03834 Networking and Internet Architecture +1603.03836 Data Structures and Algorithms +1603.03837 Cryptography and Security +1603.03840 Representation Theory +1603.03842 Operator Algebras +1603.03843 Representation Theory +1603.03844 Chaotic Dynamics +1603.03846 +1603.03849 Distributed, Parallel, and Cluster Computing +1603.03855 Combinatorics +1603.03856 Computer Vision and Pattern Recognition +1603.03857 Analysis of PDEs +1603.03860 Mesoscale and Nanoscale Physics +1603.03863 Commutative Algebra +1603.03865 Instrumentation and Methods for Astrophysics +1603.03866 Astrophysics of Galaxies +1603.03868 High Energy Astrophysical Phenomena +1603.03869 Rings and Algebras +1603.03871 Analysis of PDEs +1603.03872 Materials Science +1603.03873 Computation and Language +1603.03874 Pricing of Securities +1603.03875 Computer Vision and Pattern Recognition +1603.03877 Differential Geometry +1603.03884 Artificial Intelligence +1603.03885 Complex Variables +1603.03886 Computational Geometry +1603.03888 Distributed, Parallel, and Cluster Computing +1603.03892 Algebraic Topology +1603.03893 Algebraic Topology +1603.03894 Computational Physics +1603.03898 Information Theory +1603.03899 +1603.03900 +1603.03903 Experiment +1603.03905 Solar and Stellar Astrophysics +1603.03906 Solar and Stellar Astrophysics +1603.03907 +1603.03908 Combinatorics +1603.03910 Number Theory +1603.03912 Classical Analysis and ODEs +1603.03913 Number Theory +1603.03914 Representation Theory +1603.03917 Materials Science +1603.03918 Operator Algebras +1603.03919 Optics +1603.03921 Emerging Technologies +1603.03924 Mesoscale and Nanoscale Physics +1603.03925 Computer Vision and Pattern Recognition +1603.03927 Phenomenology +1603.03929 Algebraic Geometry +1603.03931 Geometric Topology +1603.03934 Statistics Theory +1603.03936 Optimization and Control +1603.03938 Networking and Internet Architecture +1603.03941 +1603.03945 Numerical Analysis +1603.03946 Group Theory +1603.03950 Applications +1603.03952 Statistics Theory +1603.03955 Analysis of PDEs +1603.03956 Computer Science and Game Theory +1603.03963 +1603.03965 Classical Analysis and ODEs +1603.03968 Computer Vision and Pattern Recognition +1603.03970 Materials Science +1603.03971 Distributed, Parallel, and Cluster Computing +1603.03976 Analysis of PDEs +1603.03981 Combinatorics +1603.03982 Analysis of PDEs +1603.03984 Computer Vision and Pattern Recognition +1603.03986 Number Theory +1603.03987 Symbolic Computation +1603.03988 Materials Science +1603.03991 Number Theory +1603.03992 +1603.03994 Exactly Solvable and Integrable Systems +1603.03995 Combinatorics +1603.04000 Computer Vision and Pattern Recognition +1603.04002 Learning +1603.04003 Strongly Correlated Electrons +1603.04006 Analysis of PDEs +1603.04007 Populations and Evolution +1603.04009 +1603.04010 Social and Information Networks +1603.04012 Computers and Society +1603.04018 Group Theory +1603.04020 Information Theory +1603.04024 Classical Analysis and ODEs +1603.04025 Mesoscale and Nanoscale Physics +1603.04026 Computer Vision and Pattern Recognition +1603.04027 Accelerator Physics +1603.04028 Biological Physics +1603.04029 Geometric Topology +1603.04031 Networking and Internet Architecture +1603.04032 Commutative Algebra +1603.04033 Chemical Physics +1603.04041 Strongly Correlated Electrons +1603.04042 Computer Vision and Pattern Recognition +1603.04046 Computer Vision and Pattern Recognition +1603.04047 Classical Analysis and ODEs +1603.04049 Metric Geometry +1603.04052 Combinatorics +1603.04055 Information Theory +1603.04056 Strongly Correlated Electrons +1603.04058 Biological Physics +1603.04060 Graphics +1603.04064 Optimization and Control +1603.04069 Mesoscale and Nanoscale Physics +1603.04071 High Energy Astrophysical Phenomena +1603.04073 Numerical Analysis +1603.04076 Number Theory +1603.04078 Theory +1603.04085 Cryptography and Security +1603.04086 Number Theory +1603.04087 Algebraic Geometry +1603.04093 Methodology +1603.04096 Statistics Theory +1603.04099 Computational Finance +1603.04103 Materials Science +1603.04104 Complex Variables +1603.04105 Superconductivity +1603.04106 Differential Geometry +1603.04109 Computational Geometry +1603.04111 Number Theory +1603.04112 Robotics +1603.04113 Materials Science +1603.04116 Computer Vision and Pattern Recognition +1603.04117 Computer Vision and Pattern Recognition +1603.04119 Artificial Intelligence +1603.04121 Combinatorics +1603.04122 Methodology +1603.04125 Systems and Control +1603.04128 Optimization and Control +1603.04130 Probability +1603.04140 Methodology +1603.04144 Phenomenology +1603.04145 Number Theory +1603.04148 Analysis of PDEs +1603.04150 Computer Vision and Pattern Recognition +1603.04151 Dynamical Systems +1603.04153 Learning +1603.04154 Optimization and Control +1603.04156 Experiment +1603.04161 Materials Science +1603.04162 Metric Geometry +1603.04164 Phenomenology +1603.04166 Computation +1603.04169 Optics +1603.04175 Mesoscale and Nanoscale Physics +1603.04176 Methodology +1603.04177 Mesoscale and Nanoscale Physics +1603.04180 Combinatorics +1603.04185 Analysis of PDEs +1603.04187 Number Theory +1603.04192 Phenomenology +1603.04196 Methodology +1603.04198 Dynamical Systems +1603.04199 Distributed, Parallel, and Cluster Computing +1603.04201 Analysis of PDEs +1603.04202 Functional Analysis +1603.04203 Computer Vision and Pattern Recognition +1603.04205 Phenomenology +1603.04211 Dynamical Systems +1603.04212 Group Theory +1603.04214 Mesoscale and Nanoscale Physics +1603.04218 Atmospheric and Oceanic Physics +1603.04219 Analysis of PDEs +1603.04222 Methodology +1603.04224 Computational Physics +1603.04225 Physics and Society +1603.04228 Cryptography and Security +1603.04233 Analysis of PDEs +1603.04234 Distributed, Parallel, and Cluster Computing +1603.04236 Computation and Language +1603.04241 Materials Science +1603.04243 Instrumentation and Detectors +1603.04245 Optimization and Control +1603.04246 Number Theory +1603.04251 Phenomenology +1603.04254 Strongly Correlated Electrons +1603.04257 Numerical Analysis +1603.04258 Combinatorics +1603.04260 Numerical Analysis +1603.04261 Statistics Theory +1603.04265 Computer Vision and Pattern Recognition +1603.04267 Adaptation and Self-Organizing Systems +1603.04268 Combinatorics +1603.04270 Analysis of PDEs +1603.04272 Adaptation and Self-Organizing Systems +1603.04274 +1603.04277 Functional Analysis +1603.04278 Instrumentation and Methods for Astrophysics +1603.04279 Functional Analysis +1603.04280 Combinatorics +1603.04283 Learning +1603.04284 Numerical Analysis +1603.04286 Differential Geometry +1603.04289 Theory +1603.04290 Information Theory +1603.04292 Discrete Mathematics +1603.04293 Representation Theory +1603.04297 Commutative Algebra +1603.04298 Programming Languages +1603.04299 Pattern Formation and Solitons +1603.04301 Combinatorics +1603.04303 +1603.04305 Optimization and Control +1603.04307 Networking and Internet Architecture +1603.04308 Computer Vision and Pattern Recognition +1603.04314 Systems and Control +1603.04315 Computational Physics +1603.04319 Learning +1603.04320 Algebraic Geometry +1603.04321 Optimization and Control +1603.04322 Computers and Society +1603.04327 Computer Vision and Pattern Recognition +1603.04333 +1603.04335 Software Engineering +1603.04336 Biomolecules +1603.04337 Combinatorics +1603.04338 Robotics +1603.04340 Soft Condensed Matter +1603.04344 Probability +1603.04345 Algebraic Geometry +1603.04348 Probability +1603.04352 Number Theory +1603.04360 Computation +1603.04364 Statistical Mechanics +1603.04372 Materials Science +1603.04375 Optimization and Control +1603.04387 Networking and Internet Architecture +1603.04390 Mesoscale and Nanoscale Physics +1603.04391 Soft Condensed Matter +1603.04392 Computer Vision and Pattern Recognition +1603.04395 Networking and Internet Architecture +1603.04399 Quantum Algebra +1603.04400 Astrophysics of Galaxies +1603.04401 Software Engineering +1603.04402 Artificial Intelligence +1603.04411 Algebraic Geometry +1603.04412 Algebraic Topology +1603.04413 Earth and Planetary Astrophysics +1603.04422 Computational Geometry +1603.04423 Social and Information Networks +1603.04425 Social and Information Networks +1603.04427 Strongly Correlated Electrons +cond-mat/0208383 Strongly Correlated Electrons +cond-mat/0302032 Statistical Mechanics +cond-mat/0407244 Other Condensed Matter +gr-qc/0604047 +math/0411518 Optimization and Control +math/0501123 Optimization and Control +math/0501133 Optimization and Control +physics/0504062 General Physics +physics/0510242 Physics and Society +quant-ph/0403130 +0901.4975 Astrophysics of Galaxies +0906.2953 Functional Analysis +0908.2717 Probability +0911.5706 Analysis of PDEs +1005.0915 Disordered Systems and Neural Networks +1012.1236 Probability +1102.4054 Analysis of PDEs +1111.0824 Analysis of PDEs +1201.3089 Probability +1202.3094 Probability +1204.4571 Analysis of PDEs +1211.0054 Category Theory +1301.0408 Probability +1304.5774 Formal Languages and Automata Theory +1305.2486 Spectral Theory +1307.6589 General Physics +1307.6629 Differential Geometry +1308.3430 Rings and Algebras +1309.2766 Complex Variables +1309.5839 Classical Analysis and ODEs +1310.7845 Probability +1312.4861 Probability +1404.5863 Probability +1404.7403 Methodology +1405.2806 Systems and Control +1405.7405 Cosmology and Nongalactic Astrophysics +1406.1837 Learning +1406.3800 Materials Science +1407.1810 High Energy Astrophysical Phenomena +1407.3267 Performance +1408.0320 Combinatorics +1408.0786 +1409.2969 Algebraic Geometry +1409.5120 Astrophysics of Galaxies +1409.6843 Physics and Society +1409.8263 Phenomenology +1409.8545 +1410.3959 +1410.4204 Phenomenology +1410.6962 Algebraic Geometry +1410.7165 Statistics Theory +1410.7673 Instrumentation and Detectors +1411.4389 Computer Vision and Pattern Recognition +1501.00179 Computational Geometry +1501.00282 Cosmology and Nongalactic Astrophysics +1501.05103 Analysis of PDEs +1501.05888 Classical Analysis and ODEs +1502.02547 Optics +1502.02898 Strongly Correlated Electrons +1502.04608 +1502.07881 +1503.02430 Spectral Theory +1503.06335 +1504.00649 Geometric Topology +1504.02888 Classical Analysis and ODEs +1504.03356 +1504.04532 Probability +1504.06653 Methodology +1504.06709 Optimization and Control +1505.02791 Probability +1505.04983 Methodology +1505.06344 Optimization and Control +1505.07947 Classical Analysis and ODEs +1506.00105 Statistical Mechanics +1506.03000 Phenomenology +1506.06069 Economics +1506.06457 +1506.06570 Representation Theory +1506.06831 Methodology +1506.07868 Numerical Analysis +1506.09143 Cosmology and Nongalactic Astrophysics +1507.04741 Algebraic Topology +1507.07691 Soft Condensed Matter +1507.08238 Algebraic Geometry +1508.01146 Methodology +1508.03788 Neurons and Cognition +1508.03947 Other Condensed Matter +1508.05038 Computer Vision and Pattern Recognition +1508.05689 Strongly Correlated Electrons +1508.07035 Materials Science +1508.07721 Mesoscale and Nanoscale Physics +1509.00172 Computation +1509.06698 Optimization and Control +1509.08107 Cosmology and Nongalactic Astrophysics +1509.08278 Operator Algebras +1509.09248 Superconductivity +1510.01211 +1510.02527 Optics +1510.03774 Theory +1510.04043 Classical Analysis and ODEs +1510.05366 Theory +1510.06702 Systems and Control +1511.00729 +1511.01486 Mesoscale and Nanoscale Physics +1511.02799 Computer Vision and Pattern Recognition +1511.03243 Machine Learning +1511.03600 Analysis of PDEs +1511.03608 Theory +1511.05200 Solar and Stellar Astrophysics +1511.06710 Optimization and Control +1511.07305 Social and Information Networks +1511.08358 Statistical Mechanics +1512.00429 Differential Geometry +1512.00958 Probability +1512.01754 General Topology +1512.02192 Experiment +1512.02796 Numerical Analysis +1512.04759 Mesoscale and Nanoscale Physics +1512.05955 Experiment +1512.06097 Group Theory +1512.06150 Atomic Physics +1512.06155 Chemical Physics +1601.02175 Theory +1601.02649 Phenomenology +1601.03011 Theory +1601.03361 Logic +1601.03874 Cryptography and Security +1601.04437 Mesoscale and Nanoscale Physics +1601.04778 High Energy Astrophysical Phenomena +1601.06701 Materials Science +1602.00001 Numerical Analysis +1602.00136 Statistics Theory +1602.00641 Combinatorics +1602.00726 Instrumentation and Detectors +1602.00949 Phenomenology +1602.01153 Cosmology and Nongalactic Astrophysics +1602.03146 Learning +1602.03828 Information Theory +1602.04187 +1602.04589 Statistics Theory +1602.04741 Learning +1602.04849 +1602.06171 Strongly Correlated Electrons +1602.06725 Learning +1602.07593 Computer Science and Game Theory +1602.08405 Computer Vision and Pattern Recognition +1602.08468 Dynamical Systems +1603.00943 Optimization and Control +1603.03033 Combinatorics +1603.03890 Algebraic Geometry +1603.09048 Learning +1603.09122 Theory +1603.09295 Representation Theory +1604.02474 Programming Languages +1604.02625 Differential Geometry +1604.03419 +1604.05394 Phenomenology +1604.06149 Mesoscale and Nanoscale Physics +1604.06241 Earth and Planetary Astrophysics +1604.06509 Logic in Computer Science +1605.00369 Strongly Correlated Electrons +1605.00790 Chemical Physics +1605.00951 Experiment +1605.02122 +1605.02169 Popular Physics +1605.02689 +1605.02992 Cell Behavior +1605.03828 Logic +1605.04524 Information Theory +1605.05492 Combinatorics +1605.05720 Spectral Theory +1605.06293 Computation +1605.06490 Earth and Planetary Astrophysics +1605.06731 Geometric Topology +1605.07037 Soft Condensed Matter +1605.07128 Theory +1605.07732 Networking and Internet Architecture +1605.08062 Learning +1605.08294 Cryptography and Security +1605.09065 Mesoscale and Nanoscale Physics +1605.09190 Data Structures and Algorithms +1605.09437 Computers and Society +1605.09519 Information Theory +1605.09577 Superconductivity +1605.09769 Human-Computer Interaction +1606.00001 Data Structures and Algorithms +1606.00003 Phenomenology +1606.00010 Analysis of PDEs +1606.00020 Combinatorics +1606.00021 Computer Vision and Pattern Recognition +1606.00026 Earth and Planetary Astrophysics +1606.00028 Analysis of PDEs +1606.00030 Mesoscale and Nanoscale Physics +1606.00031 Distributed, Parallel, and Cluster Computing +1606.00037 Sound +1606.00038 Group Theory +1606.00040 Logic +1606.00041 Group Theory +1606.00042 Molecular Networks +1606.00043 Instrumentation and Methods for Astrophysics +1606.00046 Databases +1606.00051 Operator Algebras +1606.00056 +1606.00059 Materials Science +1606.00060 Instrumentation and Methods for Astrophysics +1606.00062 Numerical Analysis +1606.00068 Artificial Intelligence +1606.00069 Differential Geometry +1606.00071 Analysis of PDEs +1606.00075 Artificial Intelligence +1606.00084 Solar and Stellar Astrophysics +1606.00086 Analysis of PDEs +1606.00087 Algebraic Geometry +1606.00090 +1606.00092 Statistics Theory +1606.00093 Computational Engineering, Finance, and Science +1606.00096 Materials Science +1606.00098 Dynamical Systems +1606.00099 Complex Variables +1606.00104 Dynamical Systems +1606.00107 +1606.00110 Computer Vision and Pattern Recognition +1606.00112 Computational Geometry +1606.00113 Machine Learning +1606.00114 Atomic Physics +1606.00116 Materials Science +1606.00117 Data Structures and Algorithms +1606.00118 Machine Learning +1606.00120 Combinatorics +1606.00121 Complex Variables +1606.00122 Optimization and Control +1606.00125 Geometric Topology +1606.00133 Artificial Intelligence +1606.00134 Information Theory +1606.00135 +1606.00136 Machine Learning +1606.00137 Software Engineering +1606.00142 Machine Learning +1606.00149 Classical Analysis and ODEs +1606.00152 Dynamical Systems +1606.00153 Digital Libraries +1606.00155 Digital Libraries +1606.00156 Symplectic Geometry +1606.00160 History and Overview +1606.00161 Cryptography and Security +1606.00166 Computer Vision and Pattern Recognition +1606.00169 Networking and Internet Architecture +1606.00171 Operator Algebras +1606.00172 Analysis of PDEs +1606.00174 Algebraic Geometry +1606.00175 Logic in Computer Science +1606.00176 Analysis of PDEs +1606.00177 Earth and Planetary Astrophysics +1606.00180 Cosmology and Nongalactic Astrophysics +1606.00181 Materials Science +1606.00185 Computer Vision and Pattern Recognition +1606.00189 Computation and Language +1606.00193 Digital Libraries +1606.00196 +1606.00198 Solar and Stellar Astrophysics +1606.00199 Algebraic Topology +1606.00205 History and Philosophy of Physics +1606.00210 Computation and Language +1606.00211 +1606.00216 Group Theory +1606.00217 Representation Theory +1606.00226 Machine Learning +1606.00228 Physics and Society +1606.00232 Digital Libraries +1606.00233 Cosmology and Nongalactic Astrophysics +1606.00234 Formal Languages and Automata Theory +1606.00235 Instrumentation and Methods for Astrophysics +1606.00240 Digital Libraries +1606.00242 Computation +1606.00245 Physics Education +1606.00247 Computational Physics +1606.00249 Functional Analysis +1606.00250 Statistics Theory +1606.00251 Numerical Analysis +1606.00253 Computation and Language +1606.00255 +1606.00256 +1606.00257 Tissues and Organs +1606.00261 Tissues and Organs +1606.00263 Statistics Theory +1606.00264 Multimedia +1606.00265 Methodology +1606.00266 Soft Condensed Matter +1606.00267 Number Theory +1606.00268 General Mathematics +1606.00274 Numerical Analysis +1606.00279 Dynamical Systems +1606.00280 Logic in Computer Science +1606.00282 Learning +1606.00283 Astrophysics of Galaxies +1606.00285 Robotics +1606.00288 Software Engineering +1606.00289 Combinatorics +1606.00290 Logic +1606.00291 Optics +1606.00294 Computation and Language +1606.00295 Databases +1606.00298 Sound +1606.00299 +1606.00300 Number Theory +1606.00303 Algebraic Geometry +1606.00307 Strongly Correlated Electrons +1606.00309 Quantitative Methods +1606.00312 Group Theory +1606.00313 Learning +1606.00316 Statistical Mechanics +1606.00319 Functional Analysis +1606.00320 Theory +1606.00324 Optimization and Control +1606.00325 Dynamical Systems +1606.00330 Number Theory +1606.00338 Logic +1606.00339 Artificial Intelligence +1606.00341 Multimedia +1606.00347 Mesoscale and Nanoscale Physics +1606.00349 Complex Variables +1606.00350 Optimization and Control +1606.00354 Physics Education +1606.00358 Number Theory +1606.00359 Discrete Mathematics +1606.00361 Applications +1606.00362 High Energy Astrophysical Phenomena +1606.00365 Theory +1606.00369 Solar and Stellar Astrophysics +1606.00370 Human-Computer Interaction +1606.00372 Computation and Language +1606.00374 Soft Condensed Matter +1606.00376 Number Theory +1606.00379 Analysis of PDEs +1606.00381 Rings and Algebras +1606.00382 Instrumentation and Detectors +1606.00386 Plasma Physics +1606.00389 Machine Learning +1606.00390 Optics +1606.00391 Data Analysis, Statistics and Probability +1606.00396 Performance +1606.00398 Learning +1606.00399 Learning +1606.00400 Networking and Internet Architecture +1606.00405 Digital Libraries +1606.00408 Soft Condensed Matter +1606.00409 Functional Analysis +1606.00410 Cryptography and Security +1606.00411 Social and Information Networks +1606.00413 Spectral Theory +1606.00414 Computation and Language +1606.00417 Optics +1606.00421 Symplectic Geometry +1606.00422 Probability +1606.00424 Economics +1606.00425 Computational Geometry +1606.00427 +cs/0503039 Discrete Mathematics +1307.1357 Solar and Stellar Astrophysics +1307.2476 Experiment +1307.2782 Experiment +1307.3473 High Energy Astrophysical Phenomena +1307.4285 Experiment +1307.4556 Experiment +1307.4889 Experiment +1307.4991 Complex Variables +1307.5024 Experiment +1307.5379 Soft Condensed Matter +1307.6379 Experiment +1307.6982 Systems and Control +1307.7335 Experiment +1307.7595 Experiment +1308.1340 Experiment +1308.2487 Group Theory +1308.2933 Superconductivity +1308.2949 Superconductivity +1308.4105 Rings and Algebras +1308.5916 Experiment +1308.6396 Optics +1308.6729 +1309.0694 Discrete Mathematics +1309.0811 Earth and Planetary Astrophysics +1309.0979 Combinatorics +1309.1547 Discrete Mathematics +1309.1553 Discrete Mathematics +1309.1841 Discrete Mathematics +1309.2009 Solar and Stellar Astrophysics +1309.3519 Instrumentation and Methods for Astrophysics +1309.3742 Experiment +1309.5332 Differential Geometry +1309.5335 Quantum Gases +1309.5535 Astrophysics of Galaxies +1309.6534 Experiment +1309.7580 Number Theory +1310.0596 Differential Geometry +1310.1268 Algebraic Geometry +1310.1554 Cosmology and Nongalactic Astrophysics +1310.1994 Earth and Planetary Astrophysics +1310.2145 Experiment +1310.2535 Experiment +1310.2538 Experiment +1310.4740 Experiment +1310.5517 Cosmology and Nongalactic Astrophysics +1310.6041 Earth and Planetary Astrophysics +1310.7201 Experiment +1310.7953 Experiment +1310.8156 Logic in Computer Science +1310.8197 Experiment +1311.2083 Earth and Planetary Astrophysics +1311.5206 Mesoscale and Nanoscale Physics +1311.5820 +1312.1217 Experiment +1312.2268 Formal Languages and Automata Theory +1312.3927 Logic in Computer Science +1312.4957 Cosmology and Nongalactic Astrophysics +1312.5618 Cosmology and Nongalactic Astrophysics +1312.5631 High Energy Astrophysical Phenomena +1403.3054 +1403.3606 Experiment +1403.3828 +1403.5306 +1403.6317 Symplectic Geometry +1403.7761 Probability +1403.8045 Experiment +1404.0275 Experiment +1404.1273 Probability +1404.1961 Differential Geometry +1404.6476 Digital Libraries +1404.7455 Dynamical Systems +1405.0988 +1405.1212 Risk Management +1405.2032 Mesoscale and Nanoscale Physics +1405.2758 +1405.4178 Complex Variables +1405.4627 Commutative Algebra +1405.4905 Risk Management +1405.4933 Analysis of PDEs +1405.4988 Functional Analysis +1405.5194 Group Theory +1405.6322 Information Theory +1405.6630 Computer Science and Game Theory +1406.0187 Information Theory +1407.6509 Statistical Mechanics +0709.0738 +0810.1861 +0901.4138 Probability +0904.1221 Solar and Stellar Astrophysics +0904.2457 Discrete Mathematics +0904.3613 Probability +0904.4566 Biological Physics +0904.4745 Analysis of PDEs +0905.1104 Statistical Mechanics +0905.2287 Data Structures and Algorithms +0905.4119 Analysis of PDEs +0906.4940 Strongly Correlated Electrons +0906.5473 Materials Science +0908.2564 Differential Geometry +0908.2711 Differential Geometry +0908.4005 Programming Languages +0909.2562 +0909.3600 Differential Geometry +0909.4839 Cosmology and Nongalactic Astrophysics +0909.5550 Algebraic Topology +0910.1013 Machine Learning +0910.1690 Software Engineering +0910.2086 Analysis of PDEs +0910.2087 Analysis of PDEs +0910.2155 Solar and Stellar Astrophysics +0910.3150 Theory +0910.3943 High Energy Astrophysical Phenomena +0910.4341 Mesoscale and Nanoscale Physics +0910.5443 Phenomenology +0911.0107 Classical Physics +0911.1708 Artificial Intelligence +0911.2995 Rings and Algebras +1001.0233 Operator Algebras +1001.0710 Strongly Correlated Electrons +1001.0890 Data Structures and Algorithms +1002.0730 Statistics Theory +1002.2902 Optics +1002.3460 Probability +1004.1040 Strongly Correlated Electrons +1005.0425 Solar and Stellar Astrophysics +1005.0749 Symbolic Computation +1005.0927 Probability +1005.1953 Cryptography and Security +1005.3060 Cosmology and Nongalactic Astrophysics +1005.3518 General Finance +1005.4324 High Energy Astrophysical Phenomena +1005.4720 +1005.4745 Materials Science +1006.0321 Solar and Stellar Astrophysics +1006.1278 +1006.1572 Methodology +1006.1881 Computer Science and Game Theory +1006.2955 Computational Geometry +1006.3108 +1006.5278 Information Retrieval +1006.5511 Artificial Intelligence +1006.5829 Robotics +1006.5951 Mesoscale and Nanoscale Physics +1007.0983 +1007.2964 Probability +1007.3628 Analysis of PDEs +1007.5120 Artificial Intelligence +1008.1720 +1008.2667 History and Overview +1008.3268 Applications +1008.4086 Classical Physics +1008.4706 Materials Science +1009.0207 Mesoscale and Nanoscale Physics +1009.2952 +1009.2992 Cosmology and Nongalactic Astrophysics +1009.3237 +1009.3697 Biomolecules +1009.5930 +1010.1169 Biological Physics +1010.3154 Solar and Stellar Astrophysics +1010.3731 +1010.3804 Strongly Correlated Electrons +1010.4061 Mesoscale and Nanoscale Physics +1010.4658 Analysis of PDEs +1011.1538 +1011.4700 Materials Science +1011.5044 +1011.5243 Strongly Correlated Electrons +1012.0048 Medical Physics +1012.1217 Differential Geometry +1012.1623 Human-Computer Interaction +1012.2099 Instrumentation and Methods for Astrophysics +1012.3002 Cosmology and Nongalactic Astrophysics +1012.4683 Differential Geometry +1012.5408 Populations and Evolution +1101.0956 Differential Geometry +1101.0960 Differential Geometry +1101.2301 Software Engineering +1101.2471 Category Theory +1101.3500 Systems and Control +1101.5218 Probability +1101.6040 +1102.0152 Earth and Planetary Astrophysics +1102.0415 Functional Analysis +1102.1373 Rings and Algebras +1102.2543 Cosmology and Nongalactic Astrophysics +1102.3351 Optics +1102.4127 Number Theory +1102.4867 Strongly Correlated Electrons +1102.5493 General Topology +1103.0045 Networking and Internet Architecture +1103.4794 Algebraic Geometry +1104.0324 Combinatorics +1104.0989 Mesoscale and Nanoscale Physics +1104.1536 Statistics Theory +1104.4092 Cell Behavior +1104.4139 Probability +1104.5683 Analysis of PDEs +1104.5684 Analysis of PDEs +1104.5685 Analysis of PDEs +1105.3353 Computational Physics +1105.4318 Digital Libraries +1105.5020 Representation Theory +1105.5389 Phenomenology +1105.5434 +1105.5726 Probability +1105.6289 Quantum Gases +1106.0119 Materials Science +1106.1588 Algebraic Geometry +1106.1781 Analysis of PDEs +1106.3199 Probability +1106.5883 +1107.0259 Quantum Gases +1107.0670 Strongly Correlated Electrons +1107.0843 Analysis of PDEs +1107.0859 Algebraic Topology +1107.2265 +1107.2443 Data Structures and Algorithms +1107.2522 Mesoscale and Nanoscale Physics +1107.3115 Other Condensed Matter +1107.3344 Functional Analysis +1107.3526 Computational Physics +1107.4153 Multiagent Systems +1107.4300 Materials Science +1107.5220 +1108.0737 Earth and Planetary Astrophysics +1108.0805 Earth and Planetary Astrophysics +1108.1042 Numerical Analysis +1108.1248 Mesoscale and Nanoscale Physics +1108.1269 Analysis of PDEs +1108.1721 Functional Analysis +1108.2493 Optics +1108.3393 Strongly Correlated Electrons +1108.3577 Optics +1108.3874 +1108.3881 Geometric Topology +1108.5210 Combinatorics +1108.5353 Other Condensed Matter +1108.5415 Probability +1108.5745 Instrumentation and Methods for Astrophysics +1108.6047 Quantum Gases +1109.0411 Mesoscale and Nanoscale Physics +1109.0899 Cosmology and Nongalactic Astrophysics +1109.3131 Instrumentation and Methods for Astrophysics +1109.4608 Mesoscale and Nanoscale Physics +1109.5451 Materials Science +1109.5480 Quantum Gases +1109.5546 Superconductivity +1109.5571 Quantum Gases +1109.6794 Software Engineering +1110.0158 +1110.1352 Optimization and Control +1110.2667 Strongly Correlated Electrons +1110.3688 Phenomenology +1110.3982 Fluid Dynamics +1110.4294 Neurons and Cognition +1110.5211 Optics +1110.5291 Materials Science +1110.5293 Category Theory +1110.5442 +1110.6041 K-Theory and Homology +1111.0349 Applications +1111.0405 Computational Complexity +1111.0589 Solar and Stellar Astrophysics +1111.1135 Differential Geometry +1111.1149 Solar and Stellar Astrophysics +1111.1364 +1111.2984 Dynamical Systems +1111.3280 Differential Geometry +1111.3463 Optics +1111.3470 Optics +1111.4143 Algebraic Geometry +1111.4242 Solar and Stellar Astrophysics +1111.4247 Solar and Stellar Astrophysics +1111.4928 Experiment +1111.5178 Analysis of PDEs +1111.5989 Statistics Theory +1111.6378 Optimization and Control +1112.0903 +1112.1515 Mesoscale and Nanoscale Physics +1112.1652 Pricing of Securities +1112.2760 Probability +1112.3217 General Finance +1112.3373 Methodology +1112.4035 Information Theory +1112.4168 +1112.4376 Numerical Analysis +1112.4779 General Physics +1112.5798 Statistical Mechanics +1112.5989 Chemical Physics +1309.0026 Experiment +1309.0174 Combinatorics +1309.0310 Materials Science +1309.0377 General Physics +1309.1143 Mesoscale and Nanoscale Physics +1309.1903 Strongly Correlated Electrons +1309.2436 Mesoscale and Nanoscale Physics +1309.2654 +1309.2688 Earth and Planetary Astrophysics +1309.2754 +1309.2755 Mesoscale and Nanoscale Physics +1309.2910 Optics +1309.3429 Functional Analysis +1309.4220 Functional Analysis +1309.4395 Classical Physics +1309.4484 Solar and Stellar Astrophysics +1309.4490 Solar and Stellar Astrophysics +1309.5052 Geometric Topology +1309.5237 Biological Physics +1309.5359 +1309.5538 Plasma Physics +1309.5639 +1309.5943 Optics +1309.6659 Computational Geometry +1309.7041 High Energy Astrophysical Phenomena +1309.7210 Probability +1309.7480 Instrumentation and Detectors +1310.0369 Superconductivity +1310.1486 Probability +1310.1862 Commutative Algebra +1310.1984 Classical Analysis and ODEs +1310.2010 Differential Geometry +1310.2386 Data Structures and Algorithms +1310.3065 Strongly Correlated Electrons +1310.3144 Functional Analysis +1310.3508 Geometric Topology +1310.4033 Representation Theory +1310.4670 High Energy Astrophysical Phenomena +1310.4755 Differential Geometry +1310.5476 Cryptography and Security +1310.5492 +1310.5501 Strongly Correlated Electrons +1310.7496 Atomic Physics +1310.7663 Group Theory +1310.7713 Analysis of PDEs +1310.8037 Methodology +1310.8461 Combinatorics +1311.0102 Quantum Algebra +1311.0191 Dynamical Systems +1311.3256 Analysis of PDEs +1311.5551 Plasma Physics +1311.5765 Information Retrieval +1311.6001 Cryptography and Security +1311.6913 +1311.7507 Rings and Algebras +1311.7587 Rings and Algebras +1312.0063 Complex Variables +1312.0064 Complex Variables +1312.0439 Algebraic Geometry +1312.0503 +1312.0872 Fluid Dynamics +1312.1400 Optimization and Control +1312.1594 Phenomenology +1312.1854 Classical Physics +1312.1881 Data Analysis, Statistics and Probability +1312.1926 Mesoscale and Nanoscale Physics +1312.2784 Computers and Society +1312.3132 Solar and Stellar Astrophysics +1312.3444 Discrete Mathematics +1312.4356 Optimization and Control +1312.4404 Metric Geometry +1312.4406 Metric Geometry +1312.4460 Phenomenology +1312.4936 Statistics Theory +1312.5109 Networking and Internet Architecture +1312.5407 Phenomenology +1312.5981 Cosmology and Nongalactic Astrophysics +1312.6167 Strongly Correlated Electrons +1312.6294 Optics +1312.6334 Instrumentation and Detectors +1312.6841 Portfolio Management +1312.6909 Optics +1312.7238 Classical Analysis and ODEs +1312.7813 Quantum Algebra +1401.0982 Exactly Solvable and Integrable Systems +1401.2197 Analysis of PDEs +1402.0104 Combinatorics +1402.0154 Group Theory +1402.0277 Statistics Theory +1402.0731 Combinatorics +1402.0908 Statistical Mechanics +1402.1062 Probability +1402.1319 Chemical Physics +1402.1614 Information Theory +1402.3172 Chaotic Dynamics +1402.3721 Analysis of PDEs +1402.3799 Materials Science +1402.4767 Optics +1402.5278 Phenomenology +1402.6012 Combinatorics +1402.6023 Phenomenology +1402.6194 +1402.6892 Dynamical Systems +1402.7199 +1402.7371 Superconductivity +1403.0006 Solar and Stellar Astrophysics +1403.3497 +1404.4558 Group Theory +1404.4906 Chaotic Dynamics +1405.0448 Probability +1405.0517 +1405.0738 Strongly Correlated Electrons +1405.0920 General Physics +1405.0946 Mesoscale and Nanoscale Physics +1405.1187 Number Theory +1405.1407 Superconductivity +1405.1704 Optics +1405.2171 Number Theory +1405.3077 Mesoscale and Nanoscale Physics +1405.3102 Combinatorics +1405.3130 Strongly Correlated Electrons +1405.3356 Category Theory +1405.3885 Optics +1405.4283 Mesoscale and Nanoscale Physics +1405.4544 Learning +1405.4767 +1405.4953 Materials Science +1405.4983 Mesoscale and Nanoscale Physics +1405.5056 Earth and Planetary Astrophysics +1405.5819 Numerical Analysis +1405.6455 +1405.6500 Databases +1405.6765 +1405.7644 +1405.7849 Computational Complexity +1406.0182 Computation +1406.0913 Other Statistics +1406.1149 Pricing of Securities +1406.1471 Strongly Correlated Electrons +1406.1885 +1406.2034 Chemical Physics +1406.2153 Phenomenology +1406.2500 Populations and Evolution +1406.3106 Applications +1406.3489 Plasma Physics +1406.4280 Mesoscale and Nanoscale Physics +1406.4337 Functional Analysis +1406.4401 Dynamical Systems +1406.4434 Instrumentation and Detectors +1406.4780 Classical Physics +1406.4963 +1406.5937 Optimization and Control +1406.6202 Functional Analysis +1406.6465 Rings and Algebras +1406.6857 Soft Condensed Matter +1406.7190 Optics +1406.7241 Commutative Algebra +1406.7687 Superconductivity +1407.0780 Solar and Stellar Astrophysics +1407.0878 Analysis of PDEs +1407.0903 Instrumentation and Methods for Astrophysics +1407.2337 Numerical Analysis +1407.3607 Soft Condensed Matter +1407.4041 +1407.4044 +1407.4495 Group Theory +1407.4894 Materials Science +1407.5211 Biomolecules +1407.5634 +1407.6082 Computer Vision and Pattern Recognition +1407.7048 Numerical Analysis +1407.7262 Functional Analysis +1407.7820 Statistics Theory +1407.8005 Numerical Analysis +1407.8019 Plasma Physics +1407.8361 Numerical Analysis +1407.8503 Solar and Stellar Astrophysics +1408.0963 Other Statistics +1408.1322 Algebraic Topology +1408.4485 Mesoscale and Nanoscale Physics +1409.3447 Probability +1409.5503 Geometric Topology +1410.2065 Digital Libraries +1410.3223 Representation Theory +1410.5475 Quantum Gases +1410.6602 Materials Science +1410.7560 Hardware Architecture +1410.8296 Materials Science +1411.2141 Computer Vision and Pattern Recognition +1411.5915 Systems and Control +1411.7049 Statistics Theory +1511.03184 Group Theory +1609.00197 Solar and Stellar Astrophysics +1611.06450 Group Theory +cond-mat/0302428 +cond-mat/0404436 Materials Science +math/0206193 Algebraic Geometry +0707.2165 Algebraic Topology +1005.3962 Combinatorics +1011.3568 Earth and Planetary Astrophysics +1104.0435 Atmospheric and Oceanic Physics +1206.5029 +1208.5310 Exactly Solvable and Integrable Systems +1209.0648 +1211.6693 Probability +1307.0978 Probability +1308.6817 Probability +1309.7947 +1311.0490 Spectral Theory +1311.0658 Spectral Theory +1311.0669 Statistics Theory +1311.0862 Spectral Theory +1401.1485 +1401.4191 Astrophysics of Galaxies +1403.0667 Learning +1403.2141 Numerical Analysis +1403.2310 Methodology +1403.2538 Algebraic Geometry +1403.5006 Databases +1405.0352 Statistics Theory +1405.2325 Theory +1405.4058 Atmospheric and Oceanic Physics +1405.7828 Discrete Mathematics +1406.1084 +1406.2115 Probability +1406.2428 Computational Geometry +1406.3397 Combinatorics +1406.4301 Mathematical Finance +1406.4480 Atmospheric and Oceanic Physics +1406.6108 +1407.0543 Soft Condensed Matter +1407.1873 Programming Languages +1407.5052 Experiment +1407.7349 Functional Analysis +1408.0916 Mathematical Finance +1408.5122 Probability +1409.2791 Functional Analysis +1410.1481 Trading and Market Microstructure +1410.5593 Logic +1410.6228 Numerical Analysis +1410.8298 Logic +1411.3209 Differential Geometry +1412.1896 Probability +1412.3605 Algebraic Geometry +1412.5399 Dynamical Systems +1412.6604 Learning +1412.8314 Combinatorics +1501.00813 Combinatorics +1501.02861 Statistics Theory +1502.00366 Combinatorics +1502.04914 Representation Theory +1502.07152 Materials Science +1503.05671 Learning +1503.08187 Algebraic Geometry +1504.04884 Information Theory +1504.07099 Number Theory +1504.07198 Strongly Correlated Electrons +1504.07414 Strongly Correlated Electrons +1504.07664 Mesoscale and Nanoscale Physics +1505.03919 Optimization and Control +1505.04740 Number Theory +1505.08031 Optimization and Control +1506.03410 Machine Learning +1506.04622 Neurons and Cognition +1506.06097 Algebraic Geometry +1506.06696 Methodology +1506.07268 +1507.05713 Statistical Mechanics +1507.06298 Representation Theory +1507.08230 Quantum Gases +1508.02295 Group Theory +1508.02661 Group Theory +1508.04064 Probability +1508.05398 Soft Condensed Matter +1508.07744 Digital Libraries +1509.01064 Materials Science +1509.02251 Probability +1509.03862 Differential Geometry +1509.04433 Combinatorics +1509.05051 Experiment +1509.05355 Analysis of PDEs +1509.06955 Optics +1509.07249 Soft Condensed Matter +1509.09017 +1509.09273 Statistics Theory +1510.00351 Pattern Formation and Solitons +1510.05386 Logic +1510.05801 +1510.06207 Statistics Theory +1510.06255 Combinatorics +1510.06553 Systems and Control +1510.07696 Statistical Mechanics +1510.08195 Theory +1511.00063 Differential Geometry +1511.00499 Strongly Correlated Electrons +1511.01324 Soft Condensed Matter +1511.01404 +1511.02179 Number Theory +1511.04577 Combinatorics +1511.05322 Superconductivity +1511.05493 Learning +1511.09221 Mesoscale and Nanoscale Physics +1512.00912 +1512.01499 Optics +1512.01541 +1512.02037 High Energy Astrophysical Phenomena +1512.02251 Numerical Analysis +1512.05683 Mesoscale and Nanoscale Physics +1512.07717 Statistical Mechanics +1601.00182 Databases +1601.02415 Data Structures and Algorithms +1601.03308 Dynamical Systems +1601.03359 Chemical Physics +1601.03555 Distributed, Parallel, and Cluster Computing +1601.03866 Optics +1601.04504 Information Theory +1601.06237 Instrumentation and Detectors +1602.00059 Theory +1602.00267 Materials Science +1602.01847 +1602.03042 Number Theory +1602.03308 Computer Vision and Pattern Recognition +1602.03516 +1602.03806 Number Theory +1602.04107 Methodology +1602.04897 Algebraic Topology +1602.05298 Probability +1602.05764 +1602.05778 Optics +1602.06744 Metric Geometry +1602.07461 Chemical Physics +1602.07523 Mesoscale and Nanoscale Physics +1602.08257 Quantum Gases +1602.08840 Solar and Stellar Astrophysics +1602.09135 High Energy Astrophysical Phenomena +1603.00831 Computer Vision and Pattern Recognition +1603.01857 Machine Learning +1603.03698 Geometric Topology +1603.04343 Soft Condensed Matter +1603.04417 +1603.04790 Theory +1603.05317 Classical Analysis and ODEs +1603.05970 +1603.06730 Group Theory +1603.07860 Numerical Analysis +1603.08758 Operator Algebras +1604.00650 Theory +1604.02136 Combinatorics +1604.03122 Theory +1604.03203 Instrumentation and Detectors +1604.04035 Probability +1604.04594 Mesoscale and Nanoscale Physics +1604.05278 Methodology +1604.05751 +1604.06941 Optimization and Control +1604.07043 Computer Vision and Pattern Recognition +1604.07077 Materials Science +1605.00023 +1605.00065 Data Structures and Algorithms +1605.00242 Representation Theory +1605.00417 Representation Theory +1605.00440 Instrumentation and Detectors +1605.00702 Artificial Intelligence +1605.00751 Learning +1605.00962 Computers and Society +1605.01057 Astrophysics of Galaxies +1605.01063 Astrophysics of Galaxies +1605.01064 +1605.01071 Analysis of PDEs +1605.01072 Cryptography and Security +1605.01073 +1605.01074 Mesoscale and Nanoscale Physics +1605.01078 Mathematical Software +1605.01079 Data Structures and Algorithms +1605.01081 Information Theory +1605.01084 +1605.01085 Dynamical Systems +1605.01086 Dynamical Systems +1605.01088 +1605.01090 Phenomenology +1605.01091 Social and Information Networks +1605.01092 Databases +1605.01094 Metric Geometry +1605.01096 Neurons and Cognition +1605.01097 Software Engineering +1605.01098 Populations and Evolution +1605.01099 Phenomenology +1605.01101 Computer Vision and Pattern Recognition +1605.01102 Physics and Society +1605.01107 Machine Learning +1605.01109 Numerical Analysis +1605.01110 Information Theory +1605.01114 Phenomenology +1605.01116 Machine Learning +1605.01117 Algebraic Geometry +1605.01118 +1605.01120 Information Theory +1605.01125 +1605.01127 Dynamical Systems +1605.01128 Analysis of PDEs +1605.01130 Computer Vision and Pattern Recognition +1605.01136 Materials Science +1605.01143 Classical Analysis and ODEs +1605.01144 Differential Geometry +1605.01146 Methodology +1605.01147 Strongly Correlated Electrons +1605.01149 Phenomenology +1605.01155 Biomolecules +1605.01156 Computer Vision and Pattern Recognition +1605.01158 Probability +1605.01162 Solar and Stellar Astrophysics +1605.01164 Materials Science +1605.01166 Group Theory +1605.01167 Dynamical Systems +1605.01168 Operating Systems +1605.01170 Analysis of PDEs +1605.01171 Exactly Solvable and Integrable Systems +1605.01176 Complex Variables +1605.01180 Artificial Intelligence +1605.01182 Information Theory +1605.01184 Information Theory +1605.01185 Machine Learning +1605.01189 Computer Vision and Pattern Recognition +1605.01191 Information Theory +1605.01194 Computation and Language +1605.01197 Optics +1605.01198 Logic in Computer Science +1605.01199 Logic in Computer Science +1605.01202 Operator Algebras +1605.01204 +1605.01207 Databases +1605.01210 +1605.01211 Information Theory +1605.01212 Numerical Analysis +1605.01214 Methodology +1605.01215 Astrophysics of Galaxies +1605.01217 Metric Geometry +1605.01218 High Energy Astrophysical Phenomena +1605.01219 Genomics +1605.01221 Logic +1605.01228 Networking and Internet Architecture +1605.01229 Databases +1605.01231 Combinatorics +1605.01232 Complex Variables +1605.01236 Computer Science and Game Theory +1605.01242 Computer Vision and Pattern Recognition +1605.01243 Probability +1605.01248 Solar and Stellar Astrophysics +1605.01250 Analysis of PDEs +1605.01251 Analysis of PDEs +1605.01256 Analysis of PDEs +1605.01257 Statistical Mechanics +1605.01260 Number Theory +1605.01262 Social and Information Networks +1605.01264 Group Theory +1605.01274 +1605.01275 Probability +1605.01276 Analysis of PDEs +1605.01283 Geophysics +1605.01285 Numerical Analysis +1605.01286 +1605.01289 Algebraic Geometry +1605.01291 Physics Education +1605.01292 Phenomenology +1605.01297 Probability +1605.01298 Commutative Algebra +1605.01299 Algebraic Geometry +1605.01301 Distributed, Parallel, and Cluster Computing +1605.01302 Other Computer Science +1605.01304 General Mathematics +1605.01305 Commutative Algebra +1605.01308 Numerical Analysis +1605.01313 Solar and Stellar Astrophysics +1605.01315 Fluid Dynamics +1605.01317 Biological Physics +1605.01318 High Energy Astrophysical Phenomena +1605.01319 Discrete Mathematics +1605.01320 Combinatorics +1605.01321 Fluid Dynamics +1605.01324 Dynamical Systems +1605.01328 +1605.01331 Information Theory +1605.01333 Statistics Theory +1605.01335 Learning +1605.01336 Logic +1605.01344 +1605.01345 Networking and Internet Architecture +1605.01347 +1605.01349 Probability +1605.01350 General Mathematics +1605.01356 Mesoscale and Nanoscale Physics +1605.01358 Statistical Mechanics +1605.01359 Algebraic Geometry +1605.01361 Distributed, Parallel, and Cluster Computing +1605.01362 Programming Languages +1605.01364 Optimization and Control +1605.01365 Probability +1605.01370 Physics Education +1605.01373 Representation Theory +1605.01374 Differential Geometry +1605.01375 High Energy Astrophysical Phenomena +1605.01376 Quantum Algebra +1605.01377 Soft Condensed Matter +1605.01381 Neurons and Cognition +1605.01385 General Topology +1605.01386 Theory +1605.01394 Cryptography and Security +1605.01395 Fluid Dynamics +1605.01396 Graphics +1605.01397 Computer Vision and Pattern Recognition +1605.01399 Earth and Planetary Astrophysics +1605.01400 Probability +1605.01401 Cryptography and Security +1605.01402 Computational Engineering, Finance, and Science +math/0207185 Combinatorics +physics/0605244 Geophysics +astro-ph/9610094 +1001.2930 Algebraic Geometry +1004.0294 Commutative Algebra +1008.2500 Probability +1110.2283 Algebraic Topology +1111.6987 +1201.0209 Combinatorics +1201.3014 Combinatorics +1203.2270 Logic +1204.2124 Discrete Mathematics +1208.4737 Algebraic Topology +1209.0366 Combinatorics +1211.3981 Combinatorics +1301.7266 Strongly Correlated Electrons +1302.3200 Discrete Mathematics +1303.2753 Combinatorics +1305.2467 Combinatorics +1305.2670 Combinatorics +1305.6797 Data Analysis, Statistics and Probability +1306.1477 Combinatorics +1306.5283 Combinatorics +1307.4394 Methodology +1308.5944 Materials Science +1310.1555 Symplectic Geometry +1311.6501 Differential Geometry +1312.3107 Number Theory +1402.7313 Dynamical Systems +1404.3339 Rings and Algebras +1404.4504 Data Structures and Algorithms +1405.2890 Analysis of PDEs +1406.3832 +1406.5404 Combinatorics +1407.1124 +1407.6664 Combinatorics +1408.5724 Statistics Theory +1409.2245 Representation Theory +1410.0720 Combinatorics +1411.4645 Combinatorics +1411.4759 Performance +1411.6421 Complex Variables +1412.1107 Probability +1412.7032 Computational Physics +1412.7112 +1501.00769 History and Philosophy of Physics +1501.01032 Phenomenology +1501.04085 Quantum Algebra +1501.04763 Symplectic Geometry +1501.04804 Probability +1503.02185 Theory +1503.02352 Numerical Analysis +1503.03155 Data Structures and Algorithms +1504.02573 Lattice +1504.03458 Representation Theory +1504.07423 Number Theory +1505.03986 Dynamical Systems +1506.00740 Information Theory +1507.00202 Geometric Topology +1507.04177 Systems and Control +1508.05140 Probability +1508.07722 Number Theory +1509.08586 Instrumentation and Detectors +1509.08869 Statistics Theory +1510.02914 Phenomenology +1510.03875 Statistical Mechanics +1510.04249 Data Structures and Algorithms +1510.06577 Quantum Algebra +1510.07363 Numerical Analysis +1511.01073 Operator Algebras +1511.03578 +1511.04484 Neural and Evolutionary Computing +1511.07874 Superconductivity +1511.09024 Information Theory +1512.01203 Theory +1512.02284 Optics +1512.03231 Statistical Mechanics +1512.04365 General Physics +1512.04848 Learning +1512.05627 Mesoscale and Nanoscale Physics +1512.06154 Optimization and Control +1512.06460 Differential Geometry +1512.08397 Probability +1512.08950 Theory +1601.02520 +1601.05311 Numerical Analysis +1601.07265 Computer Vision and Pattern Recognition +1602.01655 Mesoscale and Nanoscale Physics +1602.01880 Number Theory +1602.03765 Data Analysis, Statistics and Probability +1602.06402 Materials Science +1603.01159 Data Analysis, Statistics and Probability +1603.02854 +1603.03543 Social and Information Networks +1603.09623 +1604.00521 Exactly Solvable and Integrable Systems +1604.01470 Dynamical Systems +1604.02471 Differential Geometry +1604.02836 +1604.05657 Robotics +1604.06033 +1604.06244 Theory +1604.06256 Cosmology and Nongalactic Astrophysics +1604.06290 Operator Algebras +1604.07423 Quantum Gases +1604.07497 Neurons and Cognition +1605.01564 Earth and Planetary Astrophysics +1605.01697 Fluid Dynamics +1605.04604 Numerical Analysis +1605.06615 Data Structures and Algorithms +1605.09069 Rings and Algebras +1606.00097 Phenomenology +1606.00664 Mesoscale and Nanoscale Physics +1606.01683 Mesoscale and Nanoscale Physics +1606.02616 +1606.02646 +1606.02921 Theory +1606.03595 Economics +1606.03984 Logic +1606.04082 Methodology +1606.04737 Algebraic Geometry +1606.05604 Quantum Algebra +1606.06237 Machine Learning +1606.07438 Earth and Planetary Astrophysics +1606.07445 Solar and Stellar Astrophysics +1606.08129 Analysis of PDEs +1606.09316 High Energy Astrophysical Phenomena +1606.09459 Neurons and Cognition +1607.00249 Distributed, Parallel, and Cluster Computing +1607.01101 Materials Science +1607.01601 High Energy Astrophysical Phenomena +1607.01914 Computational Physics +1607.03991 Computer Vision and Pattern Recognition +1607.04860 Algebraic Geometry +1607.05459 Information Theory +1607.05979 Experiment +1607.05984 Algebraic Geometry +1607.06154 Astrophysics of Galaxies +1607.06165 Dynamical Systems +1607.06419 +1607.06807 Combinatorics +1607.07797 Robotics +1607.08161 Machine Learning +1607.08174 Lattice +1608.00211 Probability +1608.00504 Mesoscale and Nanoscale Physics +1608.01106 Programming Languages +1608.01346 Quantum Gases +1608.02906 +1608.03398 +1608.03837 Representation Theory +1608.04606 Number Theory +1608.06829 Differential Geometry +1608.08720 Quantum Gases +1609.00612 Mesoscale and Nanoscale Physics +1609.01336 Methodology +1609.01404 K-Theory and Homology +1609.01650 Strongly Correlated Electrons +1609.03257 Biomolecules +1609.03978 Mesoscale and Nanoscale Physics +1609.04126 Dynamical Systems +1609.06528 Mesoscale and Nanoscale Physics +1609.07559 Pricing of Securities +1609.08361 Materials Science +1609.08456 Geophysics +1609.08783 +1609.09757 Earth and Planetary Astrophysics +1609.09837 Combinatorics +1610.01956 +1610.02771 Algebraic Geometry +1610.02911 Materials Science +1610.03630 Computational Physics +1610.04633 Logic +1610.05593 Logic in Computer Science +1610.05973 Representation Theory +1610.06364 Rings and Algebras +1610.07813 Optics +1611.00696 Spectral Theory +1611.01014 Statistical Mechanics +1611.01884 Computation and Language +1611.02878 Algebraic Geometry +1611.03245 +1611.03331 Functional Analysis +1611.03414 Geophysics +1611.03662 Algebraic Topology +1611.07325 Probability +1611.07869 Combinatorics +1611.08811 Information Theory +1611.08942 Artificial Intelligence +1611.09456 +1611.10134 Algebraic Geometry +1612.00390 Computer Vision and Pattern Recognition +1612.00521 Distributed, Parallel, and Cluster Computing +1612.00575 Social and Information Networks +1612.00668 Cryptography and Security +1612.00854 Exactly Solvable and Integrable Systems +1612.01032 Fluid Dynamics +1612.01106 Solar and Stellar Astrophysics +1612.01267 Analysis of PDEs +1612.01270 Phenomenology +1612.01394 Number Theory +1612.01499 +1612.01530 Materials Science +1612.01591 Phenomenology +1612.01601 Computer Vision and Pattern Recognition +1612.01779 Classical Analysis and ODEs +1612.01806 Theory +1612.02110 Classical Physics +1612.02267 Phenomenology +1612.02319 Astrophysics of Galaxies +1612.02616 +1612.03024 Analysis of PDEs +1612.03147 Data Structures and Algorithms +1612.03706 Cryptography and Security +1612.04235 +1612.04343 Combinatorics +1612.04415 Optics +1612.04496 Computers and Society +1612.04504 +1612.04593 Quantum Gases +1612.04641 Algebraic Geometry +1612.04742 Sound +1612.04801 Algebraic Topology +1612.04812 Theory +1612.04817 Phenomenology +1612.04820 High Energy Astrophysical Phenomena +1612.04822 Mesoscale and Nanoscale Physics +1612.04825 Astrophysics of Galaxies +1612.04827 Astrophysics of Galaxies +1612.04828 +1612.04829 High Energy Astrophysical Phenomena +1612.04831 Social and Information Networks +1612.04833 Theory +1612.04834 Instrumentation and Methods for Astrophysics +1612.04835 +1612.04837 Statistical Mechanics +1612.04838 Statistics Theory +1612.04839 Theory +1612.04840 Mesoscale and Nanoscale Physics +1612.04841 Statistical Mechanics +1612.04843 Phenomenology +1612.04844 Computer Vision and Pattern Recognition +1612.04845 Quantum Gases +1612.04846 Numerical Analysis +1612.04847 Optimization and Control +1612.04848 Astrophysics of Galaxies +1612.04850 Phenomenology +1612.04853 Learning +1612.04854 Computer Vision and Pattern Recognition +1612.04855 Hardware Architecture +1612.04857 Theory +1612.04858 Learning +1612.04859 +1612.04860 Materials Science +1612.04861 Computational Geometry +1612.04862 Computer Vision and Pattern Recognition +1612.04864 +1612.04865 Materials Science +1612.04867 Materials Science +1612.04868 Computation and Language +1612.04869 Computer Vision and Pattern Recognition +1612.04870 Superconductivity +1612.04874 +1612.04875 Machine Learning +1612.04876 Artificial Intelligence +1612.04878 General Topology +1612.04880 Classical Analysis and ODEs +1612.04882 Representation Theory +1612.04883 Information Retrieval +1612.04884 Computer Vision and Pattern Recognition +1612.04885 Artificial Intelligence +1612.04886 Number Theory +1612.04888 History and Overview +1612.04890 Computational Geometry +1612.04891 Machine Learning +1612.04892 Exactly Solvable and Integrable Systems +1612.04893 Superconductivity +1612.04894 Theory +1612.04895 Strongly Correlated Electrons +1612.04896 Systems and Control +1612.04897 Neural and Evolutionary Computing +1612.04900 Combinatorics +1612.04901 Computer Vision and Pattern Recognition +1612.04902 Computers and Society +1612.04903 Solar and Stellar Astrophysics +1612.04904 Computer Vision and Pattern Recognition +1612.04905 Strongly Correlated Electrons +1612.04906 Number Theory +1612.04907 Soft Condensed Matter +1612.04910 Materials Science +1612.04911 Methodology +1612.04913 Systems and Control +1612.04914 +1612.04915 Robotics +1612.04919 Sound +1612.04920 +1612.04921 Geometric Topology +1612.04924 High Energy Astrophysical Phenomena +1612.04925 Astrophysics of Galaxies +1612.04926 Strongly Correlated Electrons +1612.04927 Analysis of PDEs +1612.04928 Sound +1612.04930 Theory +1612.04931 Instrumentation and Detectors +1612.04932 Statistics Theory +1612.04933 Machine Learning +1612.04934 High Energy Astrophysical Phenomena +1612.04935 Group Theory +1612.04938 Theory +1612.04940 Combinatorics +1612.04942 Systems and Control +1612.04943 Information Theory +1612.04944 Networking and Internet Architecture +1612.04946 Solar and Stellar Astrophysics +1612.04949 Computer Vision and Pattern Recognition +1612.04951 Earth and Planetary Astrophysics +1612.04952 Numerical Analysis +1612.04953 Mesoscale and Nanoscale Physics +1612.04955 Lattice +1612.04957 Logic +1612.04958 Information Theory +1612.04960 Combinatorics +1612.04961 Strongly Correlated Electrons +1612.04963 Operator Algebras +1612.04965 Methodology +1612.04966 Computer Vision and Pattern Recognition +1612.04967 Quantum Gases +1612.04968 Statistical Mechanics +1612.04969 Statistics Theory +1612.04970 Neural and Evolutionary Computing +1612.04971 Phenomenology +1612.04973 Logic in Computer Science +1612.04974 Systems and Control +1612.04975 Logic in Computer Science +1612.04976 Formal Languages and Automata Theory +1612.04977 Software Engineering +1612.04978 Information Retrieval +1612.04979 Logic +1612.04980 Discrete Mathematics +1612.04981 Formal Languages and Automata Theory +1612.04982 Cryptography and Security +1612.04984 Cryptography and Security +1612.04985 Data Structures and Algorithms +1612.04986 Hardware Architecture +1612.04987 Quantum Algebra +1612.04988 Computation and Language +1612.04989 Strongly Correlated Electrons +1612.04990 Statistical Finance +1612.04991 +1612.04992 Lattice +1612.04993 Atomic and Molecular Clusters +1612.04994 Experiment +1612.04996 Statistics Theory +1612.04997 Cryptography and Security +1612.04998 Theory +1612.05001 Social and Information Networks +1612.05002 Logic in Computer Science +1612.05004 Combinatorics +1612.05006 Biological Physics +1612.05007 +1612.05008 Representation Theory +1612.05009 Classical Analysis and ODEs +1612.05010 Phenomenology +1612.05011 Dynamical Systems +1612.05013 Solar and Stellar Astrophysics +1612.05014 Experiment +1612.05015 Functional Analysis +1612.05016 Digital Libraries +1612.05017 Number Theory +1612.05018 Statistical Mechanics +1612.05019 Logic in Computer Science +1612.05020 Complex Variables +1612.05021 Applications +1612.05022 Fluid Dynamics +1612.05023 Chaotic Dynamics +1612.05024 Statistical Mechanics +1612.05025 Rings and Algebras +1612.05026 Optimization and Control +1612.05028 Artificial Intelligence +1612.05029 Lattice +1612.05030 Formal Languages and Automata Theory +1612.05031 Phenomenology +1612.05034 Quantum Algebra +1612.05036 Phenomenology +1612.05038 Computer Vision and Pattern Recognition +1612.05039 Solar and Stellar Astrophysics +1612.05040 Rings and Algebras +1612.05042 Solar and Stellar Astrophysics +1612.05043 Combinatorics +1612.05044 Optimization and Control +1612.05045 Instrumentation and Detectors +1612.05046 Chemical Physics +1612.05048 Machine Learning +1612.05049 Functional Analysis +1612.05050 Learning +1612.05051 Classical Analysis and ODEs +1612.05052 Strongly Correlated Electrons +1612.05053 Machine Learning +1612.05054 Neural and Evolutionary Computing +1612.05055 +1612.05056 Dynamical Systems +1612.05057 Optimization and Control +1612.05058 Functional Analysis +1612.05059 Lattice +1612.05060 Earth and Planetary Astrophysics +1612.05061 Solar and Stellar Astrophysics +1612.05062 Computer Vision and Pattern Recognition +1612.05063 Mesoscale and Nanoscale Physics +1612.05064 Graphics +1612.05065 Sound +1612.05067 Accelerator Physics +1612.05070 Sound +1612.05071 Solar and Stellar Astrophysics +1612.05072 Statistical Finance +1612.05073 Mesoscale and Nanoscale Physics +1612.05075 Geophysics +1612.05076 Sound +1612.05077 +1612.05078 Number Theory +1612.05080 +1612.05081 Algebraic Geometry +1612.05082 Learning +1612.05083 Human-Computer Interaction +1612.05085 Information Theory +1612.05086 Learning +1612.05087 Other Computer Science +1612.05095 General Physics +1612.05096 Analysis of PDEs +1612.05097 +1612.05098 General Physics +1612.05099 +1612.05100 General Physics +1612.05102 Classical Analysis and ODEs +1612.05103 Classical Analysis and ODEs +1612.05104 Probability +1612.05108 General Physics +1612.05109 General Physics +1612.05110 Databases +1612.05111 High Energy Astrophysical Phenomena +1612.05112 Lattice +1612.05113 Classical Analysis and ODEs +1612.05115 Analysis of PDEs +1612.05116 +1612.05117 +1612.05118 Experiment +1612.05122 Astrophysics of Galaxies +1612.05124 Statistics Theory +1612.05125 Phenomenology +1612.05127 Operator Algebras +1612.05128 +1612.05129 Networking and Internet Architecture +1612.05130 Materials Science +1612.05131 Computation and Language +1612.05132 Phenomenology +1612.05133 Functional Analysis +1612.05135 Soft Condensed Matter +1612.05136 Logic +1612.05137 Logic +1612.05139 Category Theory +1612.05142 Analysis of PDEs +1612.05144 +1612.05145 Instrumentation and Detectors +1612.05146 Fluid Dynamics +1612.05147 Materials Science +1612.05148 Solar and Stellar Astrophysics +1612.05151 +1612.05152 Group Theory +1612.05153 Sound +1612.05154 Chaotic Dynamics +1612.05156 Sound +1612.05157 Mesoscale and Nanoscale Physics +1612.05158 Strongly Correlated Electrons +1612.05160 Commutative Algebra +1612.05161 +1612.05162 Instrumentation and Detectors +1612.05163 Disordered Systems and Neural Networks +1612.05164 Computers and Society +1612.05166 Hardware Architecture +1612.05167 History and Overview +1612.05168 Sound +1612.05169 Quantum Gases +1612.05171 Atomic Physics +1612.05172 Strongly Correlated Electrons +1612.05173 +1612.05174 Materials Science +1612.05175 K-Theory and Homology +1612.05177 Materials Science +1612.05178 Statistics Theory +1612.05181 Astrophysics of Galaxies +1612.05184 Strongly Correlated Electrons +1612.05185 Phenomenology +1612.05186 Number Theory +1612.05188 Analysis of PDEs +1612.05190 Numerical Analysis +1612.05192 Algebraic Geometry +1612.05194 Phenomenology +1612.05195 +1612.05196 Mesoscale and Nanoscale Physics +1612.05197 Theory +1612.05199 Fluid Dynamics +1612.05201 Optimization and Control +1612.05202 Computation and Language +1612.05204 +1612.05205 Distributed, Parallel, and Cluster Computing +1612.05206 +1612.05207 Dynamical Systems +1612.05209 Plasma Physics +1612.05211 Strongly Correlated Electrons +1612.05212 Strongly Correlated Electrons +1612.05213 Dynamical Systems +1612.05214 Mesoscale and Nanoscale Physics +1612.05215 +1612.05218 Computers and Society +1612.05219 Phenomenology +1612.05220 Experiment +1612.05221 Logic in Computer Science +1612.05223 Fluid Dynamics +1612.05224 Theory +1612.05225 Information Theory +1612.05226 Neurons and Cognition +1612.05227 Risk Management +1612.05228 Algebraic Topology +1612.05229 Statistical Finance +1612.05230 Theory +1612.05232 Number Theory +1612.05234 Computer Vision and Pattern Recognition +1612.05235 Theory +1612.05236 Distributed, Parallel, and Cluster Computing +1612.05237 +1612.05238 +1612.05239 Digital Libraries +1612.05246 Combinatorics +1612.05247 Mesoscale and Nanoscale Physics +1612.05248 Cosmology and Nongalactic Astrophysics +1612.05250 Astrophysics of Galaxies +1612.05251 Computation and Language +math/0311095 Logic +0704.2611 Mesoscale and Nanoscale Physics +0906.5511 High Energy Astrophysical Phenomena +1002.2604 Risk Management +1104.4766 Strongly Correlated Electrons +1104.5087 +1108.0752 +1206.6927 Methodology +1208.0616 Quantum Algebra +1209.3558 Materials Science +1301.5030 Operator Algebras +1303.2201 Programming Languages +1303.6693 Materials Science +1304.6503 Geometric Topology +1305.0968 Symplectic Geometry +1305.2769 Populations and Evolution +1308.0959 Networking and Internet Architecture +1308.2297 Analysis of PDEs +1309.5679 Optimization and Control +1309.6397 Computational Physics +1402.0692 Classical Analysis and ODEs +1402.3044 Computer Science and Game Theory +1402.4466 Databases +1403.5406 K-Theory and Homology +1404.5492 Quantum Algebra +1405.2298 Fluid Dynamics +1405.4581 Classical Analysis and ODEs +1406.0940 Combinatorics +1406.1634 Representation Theory +1406.1744 Category Theory +1406.2957 +1406.3647 Methodology +1408.3114 Biomolecules +1408.5899 Instrumentation and Methods for Astrophysics +1409.0293 Complex Variables +1409.2736 Probability +1409.4094 Mesoscale and Nanoscale Physics +1409.4425 Astrophysics of Galaxies +1409.4437 Differential Geometry +1409.5764 Chaotic Dynamics +1411.0510 Logic +1411.2654 Mesoscale and Nanoscale Physics +1412.1768 K-Theory and Homology +1412.4210 Neural and Evolutionary Computing +1412.8766 +1501.03591 Combinatorics +1501.05331 Theory +1501.06268 Classical Analysis and ODEs +1502.00608 Instrumentation and Methods for Astrophysics +1502.00846 Materials Science +1502.04000 Optimization and Control +1502.05631 Probability +1503.00725 Differential Geometry +1503.01877 Cosmology and Nongalactic Astrophysics +1503.05718 Functional Analysis +1503.08416 Probability +1503.08448 +1504.00547 Algebraic Geometry +1504.02962 Instrumentation and Methods for Astrophysics +1504.03491 Optics +1504.03597 Functional Analysis +1504.05456 Astrophysics of Galaxies +1504.05465 Astrophysics of Galaxies +1504.05546 Astrophysics of Galaxies +1504.06448 Classical Analysis and ODEs +1504.06976 Functional Analysis +1504.07502 Symplectic Geometry +1504.07828 Data Structures and Algorithms +1504.08046 +1504.08328 Mesoscale and Nanoscale Physics +1505.00381 Mesoscale and Nanoscale Physics +1505.00572 Operator Algebras +1505.00821 Methodology +1505.03818 Mesoscale and Nanoscale Physics +1505.04281 Rings and Algebras +1505.05705 Applications +1505.05712 Probability +1505.06099 High Energy Astrophysical Phenomena +1505.06632 Solar and Stellar Astrophysics +1505.07840 Cosmology and Nongalactic Astrophysics +1505.07854 +1506.01066 Computation and Language +1506.02450 Theory +1506.02494 Methodology +1506.02961 Theory +1506.04196 Lattice +1506.04325 +1506.04925 Classical Analysis and ODEs +1506.05056 +1506.05483 Statistics Theory +1506.05794 +1506.05930 Theory +1506.06411 Lattice +1506.06635 Mesoscale and Nanoscale Physics +1506.08622 +1506.08700 Machine Learning +1506.09192 Number Theory +1507.01000 Phenomenology +1507.02027 Space Physics +1507.02453 Disordered Systems and Neural Networks +1507.02483 Phenomenology +1507.03012 Mesoscale and Nanoscale Physics +1507.05371 Learning +1507.07563 Astrophysics of Galaxies +1508.00868 Representation Theory +1508.02099 Instrumentation and Detectors +1508.02320 Strongly Correlated Electrons +1508.02435 Data Structures and Algorithms +1508.02915 Materials Science +1508.03101 Information Theory +1508.05142 Combinatorics +1508.06129 Strongly Correlated Electrons +1508.06165 Materials Science +1509.00243 Networking and Internet Architecture +1509.01115 Differential Geometry +1509.01818 Number Theory +1509.02914 Strongly Correlated Electrons +1509.04024 Materials Science +1509.04522 Astrophysics of Galaxies +1509.05556 Neurons and Cognition +1509.06297 Metric Geometry +1509.07395 Distributed, Parallel, and Cluster Computing +1509.07721 Numerical Analysis +1509.08370 Theory +1509.09020 Astrophysics of Galaxies +1510.01032 Computation and Language +1510.01771 Instrumentation and Methods for Astrophysics +1510.02416 Mesoscale and Nanoscale Physics +1510.02838 Discrete Mathematics +1510.03538 +1510.04567 Earth and Planetary Astrophysics +1510.05213 +1510.06667 Combinatorics +1510.06853 +1510.09102 Logic in Computer Science +1511.00175 Computer Vision and Pattern Recognition +1511.02021 Numerical Analysis +1511.02725 Software Engineering +1511.02877 Theory +1511.04377 Computer Vision and Pattern Recognition +1511.04541 Cryptography and Security +1511.05236 Learning +1511.06297 Learning +1511.06328 Learning +1511.06333 Learning +1511.06348 Learning +1511.06407 Learning +1511.06423 Machine Learning +1511.06434 Learning +1511.06437 Computer Vision and Pattern Recognition +1511.06507 Mesoscale and Nanoscale Physics +1512.01688 Digital Libraries +1512.01876 Computational Geometry +1512.02537 Classical Analysis and ODEs +1512.02653 +1512.02826 Molecular Networks +1512.04367 General Physics +1512.04658 Statistics Theory +1512.06013 Phenomenology +1512.06328 Materials Science +1512.08281 Fluid Dynamics +1512.08451 Artificial Intelligence +1512.09313 Quantum Gases +1601.00065 Geometric Topology +1601.00074 Plasma Physics +1601.00127 Theory +1601.00362 Astrophysics of Galaxies +1601.00691 Computational Complexity +1601.00864 Physics and Society +1601.00942 Dynamical Systems +1601.01014 +1601.01058 Digital Libraries +1601.01188 Combinatorics +1601.01394 Information Theory +1601.01482 Operator Algebras +1601.01672 +1601.01673 Number Theory +1601.01674 Classical Physics +1601.01675 Artificial Intelligence +1601.01683 Solar and Stellar Astrophysics +1601.01688 Strongly Correlated Electrons +1601.01700 Methodology +1601.01706 +1601.01709 Statistical Mechanics +1601.01710 Mathematical Finance +1601.01711 Rings and Algebras +1601.01713 Soft Condensed Matter +1601.01721 Chemical Physics +1601.01722 Hardware Architecture +1601.01723 Analysis of PDEs +1601.01724 +1601.01730 Lattice +1601.01733 Probability +1601.01734 +1601.01736 Distributed, Parallel, and Cluster Computing +1601.01738 Optimization and Control +1601.01743 Analysis of PDEs +1601.01744 +1601.01746 Data Structures and Algorithms +1601.01747 Human-Computer Interaction +1601.01749 Solar and Stellar Astrophysics +1601.01751 Phenomenology +1601.01754 Graphics +1601.01757 Dynamical Systems +1601.01758 Cosmology and Nongalactic Astrophysics +1601.01759 Materials Science +1601.01761 Instrumentation and Methods for Astrophysics +1601.01763 Probability +1601.01765 +1601.01766 Analysis of PDEs +1601.01768 Discrete Mathematics +1601.01770 Databases +1601.01771 Economics +1601.01778 Systems and Control +1601.01782 Logic in Computer Science +1601.01785 Materials Science +1601.01788 Populations and Evolution +1601.01789 Algebraic Topology +1601.01791 Combinatorics +1601.01793 Materials Science +1601.01795 Strongly Correlated Electrons +1601.01796 Software Engineering +1601.01798 Symbolic Computation +1601.01802 Analysis of PDEs +1601.01806 Complex Variables +1601.01807 Optimization and Control +1601.01808 Numerical Analysis +1601.01809 Superconductivity +1601.01810 Fluid Dynamics +1601.01811 Probability +1601.01815 Human-Computer Interaction +1601.01821 Logic +1601.01822 +1601.01825 Networking and Internet Architecture +1601.01826 Mesoscale and Nanoscale Physics +1601.01831 Analysis of PDEs +1601.01835 Number Theory +1601.01841 Probability +1601.01848 Mesoscale and Nanoscale Physics +1601.01850 Algebraic Geometry +1601.01853 Dynamical Systems +1601.01856 Symbolic Computation +1601.01857 Algebraic Geometry +1601.01861 Instrumentation and Detectors +1601.01864 Mesoscale and Nanoscale Physics +1601.01866 Soft Condensed Matter +1601.01867 Biological Physics +1601.01869 Algebraic Geometry +1601.01870 Representation Theory +1601.01872 Optics +1601.01876 Computer Vision and Pattern Recognition +1601.01879 Methodology +1601.01881 Distributed, Parallel, and Cluster Computing +1601.01882 Differential Geometry +1601.01884 Mesoscale and Nanoscale Physics +1601.01885 Computer Vision and Pattern Recognition +1601.01887 Computation and Language +1601.01891 Logic +1601.01893 Mesoscale and Nanoscale Physics +1601.01894 Group Theory +1601.01895 Optimization and Control +1601.01899 Logic +1601.01901 +1601.01907 Analysis of PDEs +1601.01909 Information Theory +1601.01910 Distributed, Parallel, and Cluster Computing +1601.01912 Distributed, Parallel, and Cluster Computing +1601.01915 Numerical Analysis +1601.01916 Numerical Analysis +1601.01917 Information Retrieval +1601.01919 +1601.01920 Artificial Intelligence +1601.01922 Group Theory +1601.01923 Information Theory +1601.01925 Phenomenology +1601.01927 Cell Behavior +1601.01928 Logic in Computer Science +1601.01932 Soft Condensed Matter +1601.01933 Geometric Topology +1601.01934 Fluid Dynamics +1601.01935 Populations and Evolution +1601.01940 Physics and Society +1601.01944 Machine Learning +1601.01948 Number Theory +1601.01950 Combinatorics +1601.01951 Systems and Control +1601.01956 General Physics +1601.01958 Computational Complexity +1601.01963 Digital Libraries +1601.01964 Fluid Dynamics +1601.01967 Analysis of PDEs +1601.01975 +1601.01976 Optics +1601.01977 Mesoscale and Nanoscale Physics +1601.01979 Instrumentation and Detectors +1601.01980 Statistical Finance +1601.01981 Methodology +1601.01983 Information Theory +1601.01984 Mesoscale and Nanoscale Physics +1601.01985 Geometric Topology +1601.01986 Methodology +1601.01988 Information Theory +1601.01991 Number Theory +1601.01992 Optimization and Control +1601.01993 Mesoscale and Nanoscale Physics +1601.01995 Strongly Correlated Electrons +1601.01996 Mesoscale and Nanoscale Physics +1601.01997 Optimization and Control +1601.02002 +1601.02009 Strongly Correlated Electrons +1601.02010 Optimization and Control +1601.02013 Materials Science +cond-mat/0201379 Disordered Systems and Neural Networks +cond-mat/0308052 Mesoscale and Nanoscale Physics +quant-ph/0112044 +0704.0590 Information Theory +0704.0805 Information Theory +0704.1308 Information Theory +0704.1751 Information Theory +0704.2017 Information Theory +0704.2505 Information Theory +0704.2507 Information Theory +0704.2509 Information Theory +0704.2511 Information Theory +0704.2651 Information Theory +0704.2786 Information Theory +0704.2811 Information Theory +0704.3239 Atomic Physics +0704.3399 Information Theory +0704.3644 Information Theory +0704.3878 Information Theory +0704.3880 Information Theory +0705.0123 Information Theory +0705.0124 Information Theory +0705.0128 Information Theory +0705.0130 Information Theory +0705.0204 Data Structures and Algorithms +0705.0423 Information Theory +0705.1187 Information Theory +0705.1682 Information Theory +0705.3261 Information Theory +0705.3344 Information Theory +0705.3669 Neural and Evolutionary Computing +0706.3170 Information Theory +0707.0743 Distributed, Parallel, and Cluster Computing +0707.1470 Information Theory +0707.1912 Information Theory +0707.2780 Information Theory +0707.3959 Information Theory +0708.0648 Information Theory +0708.0741 Information Retrieval +0708.0805 Information Theory +0708.2566 Information Theory +0708.3057 Information Theory +0708.3573 Information Theory +0709.0599 Information Theory +0709.2191 Classical Physics +0709.3541 Information Theory +0710.0270 Networking and Internet Architecture +0710.1436 Distributed, Parallel, and Cluster Computing +0710.1484 Networking and Internet Architecture +0710.4948 Number Theory +0710.5235 Networking and Internet Architecture +0710.5236 Networking and Internet Architecture +0710.5238 Networking and Internet Architecture +0710.5241 Networking and Internet Architecture +0710.5242 Networking and Internet Architecture +0710.5327 Networking and Internet Architecture +0710.5758 Information Theory +0711.0237 Information Theory +0711.0277 Information Theory +0711.1383 Information Theory +0711.2501 Information Theory +0711.2642 Information Theory +0711.2745 Information Theory +0711.3077 Information Theory +0711.3251 Information Theory +0711.3398 Instrumentation and Detectors +0711.3545 Information Theory +0711.3751 Instrumentation and Detectors +0711.4388 Information Retrieval +0711.4406 Information Theory +0711.4864 Information Theory +0712.0035 Networking and Internet Architecture +0712.0042 Information Theory +0712.2430 Probability +0712.2467 Information Theory +0712.2806 Instrumentation and Detectors +0712.2857 Information Theory +0712.2872 Information Theory +0712.4011 Information Theory +0712.4135 Information Theory +0801.0061 Information Theory +0801.0426 Information Theory +0801.0938 Information Theory +0801.1276 Information Theory +0801.1282 Information Theory +0801.1544 +0801.3289 Information Theory +0801.3710 Data Structures and Algorithms +0801.4048 Information Theory +0801.4544 Information Theory +0801.4592 Networking and Internet Architecture +0802.0766 Networking and Internet Architecture +0802.1754 Information Theory +0802.2013 Information Theory +0802.2125 Information Theory +0802.2159 Information Theory +0802.2768 Mesoscale and Nanoscale Physics +0802.3401 Information Theory +0802.3535 Information Theory +0802.4282 Information Theory +0802.4284 Information Theory +0802.4291 Information Theory +0802.4299 Information Theory +0802.4330 Information Theory +0802.4344 Information Theory +0803.1144 Information Theory +0803.1195 Information Theory +0803.2639 Information Theory +0803.3816 Information Theory +0803.4025 Software Engineering +0804.0813 Information Theory +0804.0819 Information Theory +0804.1382 Information Theory +0804.3421 Computer Science and Game Theory +0804.4239 Information Theory +0804.4255 Information Theory +0804.4316 +0805.0092 Information Theory +0805.0507 Information Theory +0805.1262 Information Theory +0805.1485 Information Theory +0805.2427 Information Theory +0805.2684 Hardware Architecture +0805.2890 +0805.2995 Information Theory +0805.2996 Information Theory +0805.3082 Statistics Theory +0805.3638 Information Theory +0805.4374 Information Theory +0805.4583 Information Theory +0806.0036 Information Theory +0806.0080 Information Theory +0806.0387 Optimization and Control +0806.1565 Information Theory +0806.1577 Information Theory +0806.2198 Information Theory +0806.2216 Artificial Intelligence +0806.2395 Distributed, Parallel, and Cluster Computing +0806.3650 Information Theory +0806.3653 Computer Science and Game Theory +0806.4347 Materials Science +0806.4667 Information Theory +0807.0610 Cryptography and Security +0807.1158 Information Theory +0807.1372 Information Theory +0807.3065 Information Theory +0807.3097 Information Theory +0808.0272 Information Theory +0808.0745 Information Theory +0808.2530 Information Theory +0808.2591 Cryptography and Security +0808.2662 Computational Complexity +0808.2666 Cryptography and Security +0808.2676 Cryptography and Security +0808.2833 Information Theory +0808.3510 Numerical Analysis +0808.3540 Distributed, Parallel, and Cluster Computing +0808.3546 Distributed, Parallel, and Cluster Computing +0808.3558 Distributed, Parallel, and Cluster Computing +0808.3572 Information Theory +0808.3689 Information Theory +0808.3756 Information Theory +0808.3937 Networking and Internet Architecture +0808.4133 Logic in Computer Science +0808.4156 Information Theory +0809.0016 Information Theory +0809.0116 Databases +0809.0686 Information Theory +0809.1039 Information Theory +0809.1043 Information Theory +0809.1258 Information Theory +0809.1260 Optimization and Control +0809.1934 +0809.2152 Information Theory +0809.2226 Information Theory +0809.3546 Information Theory +0809.3554 Information Theory +0809.3731 Information Theory +0809.3908 Networking and Internet Architecture +0809.4138 +0809.5008 Information Theory +0809.5022 Networking and Internet Architecture +0810.1187 Information Theory +0810.1735 Networking and Internet Architecture +0810.2323 Information Theory +0810.4182 Information Theory +0810.4657 Information Theory +0811.2431 Instrumentation and Detectors +0811.2432 Instrumentation and Detectors +0811.4565 Information Theory +0812.1713 Information Theory +0812.3648 Distributed, Parallel, and Cluster Computing +0812.3927 Mesoscale and Nanoscale Physics +0812.4889 Information Theory +0901.0492 Information Theory +0901.1705 Information Theory +0901.2090 Information Theory +0901.2094 Information Theory +0901.2356 Information Theory +0901.2373 Atomic Physics +0901.3314 Information Theory +0901.3583 Dynamical Systems +0901.4068 Information Theory +0901.4129 Information Theory +0902.0838 Information Theory +0902.2436 Information Theory +0902.2932 +0902.3210 Networking and Internet Architecture +0902.3593 Information Theory +0903.0604 Networking and Internet Architecture +0903.0673 Information Theory +0903.0996 +0903.1379 Information Theory +0903.1388 Distributed, Parallel, and Cluster Computing +0903.1624 Information Theory +0903.1638 +0903.1952 Information Theory +0903.2292 Data Analysis, Statistics and Probability +0903.2310 Data Structures and Algorithms +0903.2653 Information Theory +0903.2966 Computer Science and Game Theory +0903.3276 Cryptography and Security +0903.3624 Robotics +0903.4251 Data Structures and Algorithms +0903.4365 Networking and Internet Architecture +0903.4378 Distributed, Parallel, and Cluster Computing +0903.5074 Information Theory +0903.5108 Information Theory +0903.5282 Information Theory +0904.0288 Instrumentation and Detectors +0904.0308 Information Theory +0904.2722 Networking and Internet Architecture +0904.2759 +0904.2863 Information Theory +0904.2921 Information Theory +0904.3310 Databases +0904.3312 Databases +0904.4635 Optimization and Control +0904.4789 Information Theory +0904.4872 Optimization and Control +0905.0483 Optimization and Control +0905.2355 Software Engineering +0905.2364 Software Engineering +0905.2638 Information Theory +0905.2643 Information Theory +0905.2659 Computer Science and Game Theory +0905.3023 Information Theory +0905.3030 Information Theory +0905.3076 Information Theory +0905.3086 Information Theory +0905.4164 Information Theory +0906.0391 Data Structures and Algorithms +0906.0744 Information Theory +0906.1055 Optimization and Control +0906.1147 Distributed, Parallel, and Cluster Computing +0906.1565 Information Theory +0906.1599 Information Theory +0906.1985 Atomic Physics +0906.2212 Computers and Society +0906.2742 Networking and Internet Architecture +0906.3394 Networking and Internet Architecture +0906.3461 Networking and Internet Architecture +0906.3816 Information Theory +0906.3821 Information Theory +0906.3988 Information Theory +0907.0472 Information Theory +0907.1099 Information Theory +0907.2252 Networking and Internet Architecture +0907.2312 Adaptation and Self-Organizing Systems +0907.2313 Adaptation and Self-Organizing Systems +0907.2599 Information Theory +0907.3341 Information Theory +0907.5168 Distributed, Parallel, and Cluster Computing +0907.5321 Computer Vision and Pattern Recognition +0907.5464 Optimization and Control +0908.0515 Information Theory +0908.0794 Information Theory +0908.2494 Information Theory +0908.2529 Information Theory +0908.3262 Applications +0908.3929 Robotics +0908.4051 Information Theory +0909.0553 Information Theory +0909.1241 Networking and Internet Architecture +0909.1293 Optimization and Control +0909.1623 Information Theory +0909.2119 Networking and Internet Architecture +0909.2489 Information Retrieval +0909.3691 Genomics +0909.5393 Logic in Computer Science +0910.2486 Information Theory +0910.3068 Artificial Intelligence +0910.3509 Information Theory +0910.3591 Optimization and Control +0910.3920 +0910.3973 Information Theory +0910.4901 Information Theory +0910.5002 Computer Vision and Pattern Recognition +0911.0130 Information Theory +0911.0351 Information Theory +0911.0467 Information Theory +0911.0519 Information Theory +0911.1426 Information Theory +0911.2639 Instrumentation and Detectors +0911.2746 Information Theory +0911.2904 Learning +0911.3203 Instrumentation and Detectors +0911.3213 Information Theory +0911.3357 Networking and Internet Architecture +0911.3921 Information Theory +0911.4357 Networking and Internet Architecture +0911.4575 Instrumentation and Detectors +0911.5462 Computer Vision and Pattern Recognition +0911.5515 Information Theory +0911.5683 Instrumentation and Methods for Astrophysics +0912.5497 Cryptography and Security +1001.0080 Information Theory +1001.1187 Information Theory +1001.1278 Information Theory +1001.1482 Information Theory +1001.1603 Information Theory +1001.1763 Information Theory +1001.1826 Information Theory +1001.2112 Information Theory +1001.2218 Information Theory +1001.2410 Information Theory +1001.2411 Artificial Intelligence +1001.2421 Information Theory +1001.2488 Information Theory +1001.2806 Information Theory +1001.2900 Information Theory +1001.2947 Information Theory +1001.3173 Information Theory +1001.3187 Information Theory +1001.3365 Information Theory +1001.3387 Information Theory +1001.3760 Information Theory +1001.3765 Information Theory +1001.4271 Information Theory +1001.4519 Information Theory +1001.4520 Information Theory +1001.4992 Cryptography and Security +1001.5336 Information Theory +1002.0019 Information Theory +1002.0043 Information Theory +1002.1897 Networking and Internet Architecture +1002.2293 Information Theory +1002.3047 Information Theory +1002.3065 Information Theory +1002.3192 Information Theory +1002.4263 Information Theory +1003.0064 Information Theory +1003.0227 +1003.0339 Artificial Intelligence +1003.0514 Information Theory +1003.0520 Information Theory +1003.0955 Distributed, Parallel, and Cluster Computing +1003.1821 Other Computer Science +1003.2012 Instrumentation and Methods for Astrophysics +1003.2022 Computer Vision and Pattern Recognition +1003.2883 Information Theory +1003.3195 +1003.3966 Cryptography and Security +1003.4655 Physics Education +1003.5309 Distributed, Parallel, and Cluster Computing +1003.5517 Networking and Internet Architecture +1004.0152 Networking and Internet Architecture +1004.0487 Optimization and Control +1004.0488 Instrumentation and Detectors +1004.0897 Information Theory +1004.1324 Distributed, Parallel, and Cluster Computing +1004.2764 Logic in Computer Science +1004.3071 Information Theory +1004.4437 Networking and Internet Architecture +1004.4514 Plasma Physics +1004.5424 Computer Vision and Pattern Recognition +1004.5548 Cryptography and Security +1005.0017 Molecular Networks +1005.0117 Information Theory +1005.0351 Adaptation and Self-Organizing Systems +1005.0945 Computer Vision and Pattern Recognition +1005.1065 Information Theory +1005.1339 Information Theory +1005.1871 Information Theory +1005.2108 Populations and Evolution +1005.2251 Information Theory +1005.3119 +1005.4834 Information Theory +1005.4895 Other Computer Science +1005.5574 Information Theory +1006.0379 Information Theory +1006.0386 Information Theory +1006.0646 Information Theory +1006.0659 Information Theory +1006.1024 Information Theory +1006.1057 Cryptography and Security +1006.1673 Networking and Internet Architecture +1006.2162 Information Theory +1006.2565 Information Theory +1006.3417 Computer Science and Game Theory +1006.3782 Networking and Internet Architecture +1006.4557 Networking and Internet Architecture +1007.1282 Learning +1007.2053 Computational Physics +1007.2088 Cryptography and Security +1007.4840 Information Theory +1008.0420 Information Theory +1008.0961 Information Theory +1008.1043 Information Theory +1008.1145 Information Theory +1008.1615 Information Theory +1008.3932 Systems and Control +1009.0282 Information Theory +1009.1080 Data Analysis, Statistics and Probability +1009.1254 Information Theory +1009.1670 Optimization and Control +1009.2378 Networking and Internet Architecture +1009.2574 Networking and Internet Architecture +1009.2575 Networking and Internet Architecture +1009.2576 Networking and Internet Architecture +1009.2830 Dynamical Systems +1009.3130 Information Theory +1009.3522 Networking and Internet Architecture +1009.3916 Information Theory +1009.4352 Information Theory +1009.4610 Information Theory +1009.4780 Information Theory +1009.4866 Atomic Physics +1009.5145 Information Theory +1009.5614 Optimization and Control +1009.5975 Information Theory +1009.6053 Information Theory +1010.0333 Information Theory +1010.1409 Molecular Networks +1010.1583 Cryptography and Security +1010.1584 Information Theory +1010.2438 Distributed, Parallel, and Cluster Computing +1010.2789 Information Theory +1010.3469 Information Theory +1010.4499 Information Theory +1010.4501 Information Theory +1010.4548 Information Theory +1010.5416 Information Theory +1010.5734 Information Theory +1010.5806 Information Theory +1011.1050 Cryptography and Security +1011.1584 Networking and Internet Architecture +1011.1939 Robotics +1011.3087 Distributed, Parallel, and Cluster Computing +1011.3088 Networking and Internet Architecture +1011.3091 Networking and Internet Architecture +1011.3092 Networking and Internet Architecture +1011.3094 Distributed, Parallel, and Cluster Computing +1011.3096 Distributed, Parallel, and Cluster Computing +1011.3097 Networking and Internet Architecture +1011.3098 Cryptography and Security +1011.3099 Human-Computer Interaction +1011.3231 Instrumentation and Detectors +1011.3498 Information Theory +1011.3852 Other Computer Science +1011.5674 Networking and Internet Architecture +1011.6017 Information Theory +1012.0081 Information Theory +1012.0416 Information Theory +1012.0602 Information Theory +1012.1095 Networking and Internet Architecture +1012.1425 Information Theory +1012.4225 Information Theory +1012.4552 Information Theory +1012.4715 Information Theory +1012.5043 +1012.5197 Information Theory +1012.5430 Information Theory +1101.0082 Logic in Computer Science +1101.0133 Information Theory +1101.0858 Networking and Internet Architecture +1101.1345 Information Theory +1101.1350 Information Theory +1101.1607 Atomic Physics +1101.1688 Information Theory +1101.2516 Information Theory +1101.2713 Information Theory +1101.3824 Information Theory +1101.3979 Multimedia +1101.4617 Information Theory +1101.4849 Optimization and Control +1101.6004 Rings and Algebras +1102.0424 Information Theory +1102.0522 Information Theory +1102.1466 Information Theory +1102.2176 Information Theory +1102.2593 Information Theory +1102.2936 Information Theory +1102.2939 Information Theory +1102.3126 Information Theory +1102.3235 Information Theory +1102.3520 Information Theory +1102.3527 Information Theory +1102.3617 Information Theory +1102.3669 Information Theory +1102.4085 Information Theory +1102.4126 Information Theory +1102.4176 Networking and Internet Architecture +1102.4711 Information Theory +1102.4810 Information Theory +1102.5364 Information Theory +1102.5593 Information Theory +1103.0361 Information Theory +1103.0484 Information Theory +1103.0561 Information Theory +1103.0801 Information Theory +1103.1324 +1103.1559 Information Theory +1103.2431 Information Theory +1103.2573 Information Theory +1103.2750 Systems and Control +1103.3915 Information Theory +1103.3933 Information Theory +1103.4684 Information Theory +1103.4687 Information Theory +1103.4749 Software Engineering +1103.4784 Information Theory +1103.4787 Information Theory +1103.5678 Systems and Control +1103.6060 Information Theory +1103.6258 Information Theory +1104.0909 Medical Physics +1104.2285 Computer Vision and Pattern Recognition +1104.4155 Information Theory +1104.4731 Computational Engineering, Finance, and Science +1105.0452 Information Theory +1105.0769 Information Theory +1105.1841 Geophysics +1105.1843 Space Physics +1105.1891 Distributed, Parallel, and Cluster Computing +1105.3264 Social and Information Networks +1105.5215 Information Theory +1105.5895 Information Theory +1105.5975 Information Theory +1106.0436 Information Theory +1106.0736 Distributed, Parallel, and Cluster Computing +1106.0941 Networking and Internet Architecture +1106.1006 Algebraic Geometry +1106.2013 Information Theory +1106.2581 Information Theory +1106.2662 Learning +1106.3412 +1106.3681 Hardware Architecture +1106.3713 Information Theory +1106.3858 Computer Science and Game Theory +1106.5364 Information Theory +1106.5387 Information Theory +1106.5601 Computational Complexity +1106.5615 Information Theory +1106.6328 Networking and Internet Architecture +1107.1276 Information Theory +1107.1339 Networking and Internet Architecture +1107.1937 Distributed, Parallel, and Cluster Computing +1107.1970 Networking and Internet Architecture +1107.4255 Optimization and Control +1107.4617 Computer Vision and Pattern Recognition +1107.5676 Optimization and Control +1107.6027 Information Theory +1108.0870 Information Theory +1108.1136 Information Theory +1108.1844 Adaptation and Self-Organizing Systems +1108.2106 Cryptography and Security +1108.2111 Cryptography and Security +1108.3706 Networking and Internet Architecture +1108.3708 Networking and Internet Architecture +1108.4063 Networking and Internet Architecture +1108.5250 Artificial Intelligence +1108.5499 Computational Geometry +1109.0724 Information Theory +1109.1021 Cryptography and Security +1109.1507 Information Theory +1109.2028 Networking and Internet Architecture +1109.3410 Cosmology and Nongalactic Astrophysics +1109.4102 Optimization and Control +1109.5338 Networking and Internet Architecture +1109.5373 Information Theory +1109.5444 Optics +1109.5664 Learning +1109.6586 Instrumentation and Detectors +1109.6766 Statistical Mechanics +1109.6845 Information Theory +1110.0594 Information Theory +1110.1020 +1110.1732 Computer Science and Game Theory +1110.2343 Information Theory +1110.4535 Performance +1110.6282 Atomic Physics +1110.6476 Information Theory +1111.0689 Information Theory +1111.0711 Information Theory +1111.1827 Information Theory +1111.1995 Information Theory +1111.3163 Information Theory +1111.4232 Artificial Intelligence +1111.5280 Optimization and Control +1111.6828 Information Theory +1111.7076 Information Theory +1111.7221 Optimization and Control +1112.0371 Information Theory +1112.0711 Information Theory +1112.0789 Information Theory +1112.0941 Cryptography and Security +1112.0958 Cryptography and Security +1112.1086 Networking and Internet Architecture +1112.1229 Optimization and Control +1112.1863 Optimization and Control +1112.1968 Information Theory +1112.2409 Information Theory +1112.2690 Information Theory +1112.3573 Mesoscale and Nanoscale Physics +1112.4909 Systems and Control +1201.0218 Networking and Internet Architecture +1201.1835 Information Theory +1201.2859 Information Theory +1201.2985 Information Theory +1201.3140 Information Theory +1201.4949 Information Theory +1201.5805 Information Theory +1202.0798 Information Theory +1202.1209 Information Theory +1202.2231 Information Theory +1202.3192 Optimization and Control +1202.5014 Information Theory +1203.0046 Optimization and Control +1203.0628 +1203.0630 +1203.1304 Information Theory +1203.2468 Information Theory +1203.2550 Information Theory +1203.3287 Information Theory +1203.3288 Information Theory +1203.3659 Information Theory +1203.4040 Information Theory +1203.4358 Information Theory +1203.4865 Information Theory +1203.4924 Information Theory +1203.5638 Information Theory +1203.6798 Systems and Control +1204.0069 Numerical Analysis +1204.0166 Information Theory +1204.2428 Information Theory +1204.2504 Dynamical Systems +1204.2518 Information Theory +1204.2587 Information Theory +1204.3006 Atomic Physics +1204.3047 Statistical Mechanics +1204.3379 Information Theory +1204.3388 Information Theory +1204.3997 Information Theory +1204.4000 Information Theory +1204.4249 Information Theory +1204.4419 Optimization and Control +1204.4427 Multiagent Systems +1204.4518 Information Theory +1204.4840 Information Theory +1204.5507 Networking and Internet Architecture +1205.1672 Networking and Internet Architecture +1205.1885 Information Theory +1205.2546 Distributed, Parallel, and Cluster Computing +1205.2590 Information Theory +1205.3317 Information Theory +1205.3322 Networking and Internet Architecture +1205.4353 Networking and Internet Architecture +1205.4551 Information Theory +1205.4781 Information Theory +1205.5522 Information Theory +1205.5614 Information Theory +1205.5904 Information Theory +1205.5914 Information Theory +1205.6752 Information Theory +1205.6829 Instrumentation and Detectors +1205.6852 Information Theory +1206.1074 Neural and Evolutionary Computing +1206.1282 Information Theory +1206.1973 Information Theory +1206.2534 Emerging Technologies +1206.5389 Information Theory +1206.6172 Information Theory +1206.6682 Information Theory +1207.0436 Information Theory +1207.1760 Information Theory +1207.1768 Networking and Internet Architecture +1207.1777 Networking and Internet Architecture +1207.1860 Information Theory +1207.2038 Representation Theory +1207.2761 Artificial Intelligence +1207.3045 Information Theory +1207.3582 Information Theory +1207.3595 Networking and Internet Architecture +1207.3599 Networking and Internet Architecture +1207.4502 +1207.4807 Information Theory +1207.6819 Optics +1208.1443 Optimization and Control +1208.3017 Information Theory +1208.3227 Cryptography and Security +1208.4901 Information Theory +1208.5374 Information Theory +1208.5919 Information Theory +1208.6406 Operating Systems +1209.1350 Chaotic Dynamics +1209.1380 Information Theory +1209.1681 Instrumentation and Methods for Astrophysics +1209.1763 Networking and Internet Architecture +1209.2179 Information Theory +1209.2192 Information Theory +1209.3356 Distributed, Parallel, and Cluster Computing +1209.3721 Distributed, Parallel, and Cluster Computing +1209.3728 Information Theory +1209.5259 Information Theory +1209.5370 Information Theory +1209.6186 Networking and Internet Architecture +1209.6367 Information Theory +1210.0510 Networking and Internet Architecture +1210.0848 Social and Information Networks +1210.3335 Machine Learning +1210.3906 Information Theory +1210.4749 Networking and Internet Architecture +1210.5614 Networking and Internet Architecture +1210.6488 Systems and Control +1210.6738 Machine Learning +1210.6764 Information Theory +1210.6954 Information Theory +1210.7533 Information Theory +1211.0951 Information Theory +1211.1044 Information Theory +1211.1239 Optimization and Control +1211.2065 Computer Science and Game Theory +1211.3322 Information Theory +1211.4041 Information Theory +1211.4060 Instrumentation and Detectors +1211.4198 Information Theory +1211.4227 Differential Geometry +1211.4728 Information Theory +1211.5235 Risk Management +1211.5358 Information Theory +1211.5399 Instrumentation and Detectors +1211.5757 Information Theory +1211.5856 Optimization and Control +1211.6120 +1211.7200 Combinatorics +1212.0047 Information Theory +1212.1198 Information Theory +1212.2262 Learning +1212.3225 Systems and Control +1212.3638 Information Theory +1212.3640 Information Theory +1212.4092 Networking and Internet Architecture +1212.4106 Networking and Internet Architecture +1212.4237 Networking and Internet Architecture +1212.4244 Networking and Internet Architecture +1212.4336 Networking and Internet Architecture +1212.4617 Systems and Control +1212.4633 Instrumentation and Detectors +1212.4649 Information Theory +1212.4654 +1212.4950 Information Theory +1212.4991 Information Theory +1212.5032 Networking and Internet Architecture +1212.5185 Optimization and Control +1212.5394 Information Theory +1212.5406 Information Theory +1212.5462 Information Theory +1212.5654 Applications +1212.5687 +1212.5829 Information Theory +1212.6058 Multimedia +1212.6235 Computer Science and Game Theory +1301.0087 Information Theory +1301.0858 Machine Learning +1301.0859 Information Theory +1301.1084 Software Engineering +1301.2013 +1301.3106 Information Theory +1301.3401 Superconductivity +1301.4315 Networking and Internet Architecture +1301.4397 Information Theory +1301.4643 Information Theory +1301.4646 Information Theory +1301.4738 Networking and Internet Architecture +1301.5309 Information Theory +1301.5687 Information Theory +1301.5852 Information Theory +1301.6312 Social and Information Networks +1301.6779 Combinatorics +1301.6915 Machine Learning +1301.6956 Information Theory +1301.7506 Information Theory +1301.7515 Information Theory +1302.1610 Information Theory +1302.2702 Information Theory +1302.3446 Applications +1302.4128 Networking and Internet Architecture +1302.4463 Hardware Architecture +1302.4786 Information Theory +1302.5021 Information Theory +1302.5182 +1302.6615 Neural and Evolutionary Computing +1302.7080 Neural and Evolutionary Computing +1302.7264 Information Theory +1303.0166 Optics +1303.0323 Neural and Evolutionary Computing +1303.0592 Information Theory +1303.2774 Information Theory +1303.3018 Data Structures and Algorithms +1303.3177 Other Computer Science +1303.3400 Information Theory +1303.3480 Computation +1303.3668 Information Theory +1303.3938 Physics and Society +1303.4006 Information Theory +1303.4092 Other Computer Science +1303.5194 Information Theory +1303.5310 Information Theory +1303.6242 Networking and Internet Architecture +1303.6518 Networking and Internet Architecture +1303.6573 Networking and Internet Architecture +1303.7043 Learning +1303.7083 Information Theory +1304.0062 Information Theory +1304.0183 Information Theory +1304.0507 Instrumentation and Detectors +1304.1926 Information Theory +1304.2222 Systems and Control +1304.2269 Information Theory +1304.2444 Information Theory +1304.2475 Other Computer Science +1304.2476 Information Retrieval +1304.3519 Networking and Internet Architecture +1304.3531 Information Theory +1304.3553 Information Theory +1304.3640 Computer Science and Game Theory +1304.4028 Artificial Intelligence +1304.4181 Cryptography and Security +1304.4577 Optimization and Control +1304.4664 Software Engineering +1304.4778 Information Theory +1304.5150 Information Theory +1304.5315 Networking and Internet Architecture +1304.5509 Networking and Internet Architecture +1304.5590 Systems and Control +1304.5817 Information Theory +1304.5850 Information Theory +1304.6360 Multiagent Systems +1304.6761 Cryptography and Security +1304.7311 +1304.7423 Neural and Evolutionary Computing +1304.7487 Information Theory +1304.8083 Networking and Internet Architecture +1305.0185 Information Theory +1305.0510 Networking and Internet Architecture +1305.0664 Information Theory +1305.0735 Information Theory +1305.0817 Information Theory +1305.0982 Software Engineering +1305.1044 Systems and Control +1305.1187 Information Theory +1305.1434 Information Theory +1305.2091 Social and Information Networks +1305.2112 Information Theory +1305.2123 Information Theory +1305.2245 Information Theory +1305.3265 Information Theory +1305.3483 Information Theory +1305.3537 Information Theory +1305.3586 Information Theory +1305.4219 Information Theory +1305.4403 Information Theory +1305.4419 Information Theory +1305.4560 Information Theory +1305.4897 Networking and Internet Architecture +1305.4980 Information Theory +1305.5082 Information Theory +1305.5216 Information Theory +1305.5376 Information Theory +1305.5601 Applications +1305.5762 Information Theory +1305.6971 Networking and Internet Architecture +1305.7181 Computer Vision and Pattern Recognition +1305.7323 Information Theory +1306.0969 Information Theory +1306.1057 Information Theory +1306.1304 Networking and Internet Architecture +1306.1346 Information Theory +1306.1350 Computational Engineering, Finance, and Science +1306.1913 Computer Vision and Pattern Recognition +1306.2454 Optimization and Control +1306.2701 Information Theory +1306.3624 Computers and Society +1306.3717 Information Theory +1306.3786 Information Theory +1306.4350 Information Theory +1306.4414 Information Theory +1306.5781 Information Theory +1307.0214 Cryptography and Security +1307.0309 Social and Information Networks +1307.1461 Information Theory +1307.1599 Learning +1307.1778 Functional Analysis +1307.2800 Information Theory +1307.2889 Information Theory +1307.3156 Networking and Internet Architecture +1307.4138 Dynamical Systems +1307.4666 Statistics Theory +1307.5095 Information Theory +1307.6125 Information Theory +1307.6679 Information Theory +1307.7052 Networking and Internet Architecture +1307.7059 Networking and Internet Architecture +1307.7068 Networking and Internet Architecture +1307.7075 Networking and Internet Architecture +1307.7612 Networking and Internet Architecture +1307.7779 Information Theory +1307.8012 Instrumentation and Methods for Astrophysics +1308.0104 Numerical Analysis +1308.1144 Information Theory +1308.1714 Physics Education +1308.1762 Discrete Mathematics +1308.1968 Systems and Control +1308.3200 Information Theory +1308.3384 Networking and Internet Architecture +1308.3827 Information Theory +1308.4764 Systems and Control +1308.4840 Information Theory +1308.5133 Robotics +1308.5136 Artificial Intelligence +1308.5144 Computational Engineering, Finance, and Science +1308.5434 Information Theory +1309.0462 Optimization and Control +1309.0576 +1309.1200 Networking and Internet Architecture +1309.1208 Networking and Internet Architecture +1309.1644 Information Theory +1309.2143 Information Theory +1309.3147 Systems and Control +1309.3323 Computation and Language +1309.3376 Statistics Theory +1309.3582 Information Theory +1309.3618 Networking and Internet Architecture +1309.3674 Information Theory +1309.3808 Information Theory +1309.4372 Computer Science and Game Theory +1309.4873 Information Theory +1309.4942 Information Theory +1309.5067 Networking and Internet Architecture +1309.5262 Information Theory +1309.5546 Networking and Internet Architecture +1309.6270 Optimization and Control +1309.7817 Information Theory +1309.7910 Information Theory +1309.7949 Digital Libraries +1310.0054 Information Theory +1310.0892 Medical Physics +1310.1174 Information Theory +1310.2148 Distributed, Parallel, and Cluster Computing +1310.2435 Information Theory +1310.2490 Information Theory +1310.2703 Information Theory +1310.2773 Information Theory +1310.3001 Neurons and Cognition +1310.3101 Machine Learning +1310.3381 Information Theory +1310.3724 Information Theory +1310.4939 Information Theory +1310.5542 Computer Vision and Pattern Recognition +1310.6502 Distributed, Parallel, and Cluster Computing +1310.6546 Distributed, Parallel, and Cluster Computing +1310.8067 Information Theory +1310.8135 Networking and Internet Architecture +1311.1025 Other Computer Science +1311.1084 Distributed, Parallel, and Cluster Computing +1311.1240 Networking and Internet Architecture +1311.3141 Information Theory +1311.4111 Information Theory +1311.4242 Space Physics +1311.4310 Information Theory +1311.5360 Information Theory +1311.5376 Information Theory +1311.6020 Information Theory +1311.6570 Databases +1311.7298 Information Theory +1312.0116 Information Theory +1312.0659 Systems and Control +1312.0914 Information Theory +1312.1439 Algebraic Topology +1312.1756 Information Theory +1312.2316 +1312.2598 Systems and Control +1312.3662 Information Theory +1312.4016 Networking and Internet Architecture +1312.4318 Systems and Control +1312.4370 Systems and Control +1312.4805 Information Theory +1312.4875 Quantitative Methods +1312.5035 Cryptography and Security +1312.5555 Networking and Internet Architecture +1312.6721 Networking and Internet Architecture +1312.6808 Information Retrieval +1312.7079 Materials Science +1401.0994 Information Theory +1401.1406 Databases +1401.1714 Information Theory +1401.1779 Space Physics +1401.3201 Databases +1401.3202 Information Theory +1401.4020 Systems and Control +1401.4337 Information Theory +1401.4727 Statistical Mechanics +1401.5037 Information Theory +1401.5099 Networking and Internet Architecture +1401.5297 Systems and Control +1401.5530 Networking and Internet Architecture +1401.6444 Cryptography and Security +1401.6455 Computer Science and Game Theory +1401.6728 Information Theory +1401.7088 Networking and Internet Architecture +1401.7100 Computational Geometry +1401.7141 Networking and Internet Architecture +1401.7161 Information Theory +1402.0327 Information Theory +1402.0639 Classical Analysis and ODEs +1402.0911 Systems and Control +1402.1223 Instrumentation and Methods for Astrophysics +1402.1572 Information Theory +1402.2091 Information Theory +1402.2710 Data Structures and Algorithms +1402.2863 Systems and Control +1402.2902 Emerging Technologies +1402.5869 Information Theory +1402.7092 Classical Analysis and ODEs +1403.1881 Classical Physics +1403.2010 Information Theory +1403.2079 Information Theory +1403.3376 Information Theory +1403.4077 Other Computer Science +1403.4378 Learning +1403.5089 Information Theory +1403.5204 Systems and Control +1403.6143 Information Theory +1403.7012 Information Theory +1403.7017 Information Theory +1403.7164 Information Theory +1404.0400 Sound +1404.0424 Information Theory +1404.0425 Information Theory +1404.0660 Information Theory +1404.0864 Information Theory +1404.1107 Information Theory +1404.1547 Information Theory +1404.1561 Computer Vision and Pattern Recognition +1404.1785 Methodology +1404.1955 Systems and Control +1404.2258 Information Theory +1404.2357 Information Theory +1404.2366 Networking and Internet Architecture +1404.3018 Multimedia +1404.3075 Information Theory +1404.3099 Networking and Internet Architecture +1404.3104 Emerging Technologies +1404.3165 Information Theory +1404.3891 Networking and Internet Architecture +1404.4152 Distributed, Parallel, and Cluster Computing +1404.5020 Other Computer Science +1404.5538 Information Theory +1404.5859 Information Theory +1404.6150 Information Theory +1404.6162 Statistical Mechanics +1404.6560 Information Theory +1404.6687 Information Theory +1404.6810 Information Theory +1404.6813 Systems and Control +1404.6862 Information Theory +1404.6891 +1404.7211 Computer Vision and Pattern Recognition +1404.7251 Information Theory +1404.7306 Computer Vision and Pattern Recognition +1404.7374 Information Theory +1404.7478 Information Theory +1404.7704 Algebraic Geometry +1405.0032 Information Theory +1405.0209 Information Theory +1405.0212 Applications +1405.0751 Optimization and Control +1405.1472 Information Theory +1405.1593 Information Theory +1405.1963 Networking and Internet Architecture +1405.2202 Information Theory +1405.2295 Information Theory +1405.4160 Spectral Theory +1405.4372 Information Theory +1405.4380 Networking and Internet Architecture +1405.4623 Information Theory +1405.4626 Information Theory +1405.5704 Cryptography and Security +1405.6052 Information Theory +1405.7432 Materials Science +1405.7789 Optimization and Control +1406.0121 Materials Science +1406.0173 Information Theory +1406.0895 Instrumentation and Detectors +1406.1169 Information Theory +1406.1308 Information Theory +1406.1738 Systems and Control +1406.1818 Networking and Internet Architecture +1406.2312 Instrumentation and Detectors +1406.3237 +1406.3619 Information Theory +1406.3789 Instrumentation and Detectors +1406.4259 Emerging Technologies +1406.4651 Optimization and Control +1406.4662 Other Condensed Matter +1406.4952 Optimization and Control +1406.5105 Information Theory +1406.5521 Networking and Internet Architecture +1406.5555 Information Theory +1406.5732 Information Theory +1406.5765 Human-Computer Interaction +1406.6133 Applications +1406.6673 Atomic Physics +1406.6852 Information Theory +1406.7116 Networking and Internet Architecture +1406.7315 Information Theory +1406.7373 Information Theory +1406.7699 Information Theory +1407.0118 Systems and Control +1407.0453 Analysis of PDEs +1407.0536 Networking and Internet Architecture +1407.0597 Optimization and Control +1407.1065 Information Theory +1407.2201 Information Theory +1407.2542 Information Theory +1407.2857 Networking and Internet Architecture +1407.2990 Information Theory +1407.3006 Systems and Control +1407.3023 Computational Engineering, Finance, and Science +1407.3502 Instrumentation and Methods for Astrophysics +1407.3936 Statistical Mechanics +1407.4000 Neural and Evolutionary Computing +1407.4017 Other Computer Science +1407.4171 Information Theory +1407.4177 Information Theory +1407.4318 Information Theory +1407.5366 Information Theory +1407.6751 Information Theory +1407.7150 Information Theory +1407.8016 +1407.8463 Information Theory +1407.8469 Information Theory +1408.0177 Information Theory +1408.1468 Information Theory +1408.2302 Information Theory +1408.2335 Networking and Internet Architecture +1408.2401 Social and Information Networks +1408.3025 Systems and Control +1408.3164 Systems and Control +1408.3206 Information Theory +1408.3717 Information Theory +1408.4215 Information Theory +1408.4435 Applications +1408.4590 Information Theory +1408.4792 Computational Engineering, Finance, and Science +1408.5057 Information Theory +1408.5072 Information Theory +1408.5245 Information Theory +1408.5574 Learning +1408.5583 Information Theory +1408.5699 Software Engineering +1408.5710 Information Theory +1408.5717 Networking and Internet Architecture +1408.5928 Networking and Internet Architecture +1408.6245 Accelerator Physics +1408.6369 Information Theory +1408.7004 Information Theory +1409.0561 Information Theory +1409.0586 Information Theory +1409.1730 Systems and Control +1409.3909 Computers and Society +1409.3940 Networking and Internet Architecture +1409.3954 Information Theory +1409.5700 Instrumentation and Detectors +1409.6151 Systems and Control +1409.6620 Software Engineering +1409.6624 Software Engineering +1409.7900 Statistical Mechanics +1409.8588 Physics and Society +1410.0213 Information Theory +1410.0765 Optimization and Control +1410.1031 Information Theory +1410.1085 Information Theory +1410.1266 Information Theory +1410.1606 Computer Vision and Pattern Recognition +1410.1830 Systems and Control +1410.1966 Networking and Internet Architecture +1410.1969 Networking and Internet Architecture +1410.1973 Networking and Internet Architecture +1410.1980 Computer Vision and Pattern Recognition +1410.2291 Information Theory +1410.2419 Networking and Internet Architecture +1410.3691 Information Theory +1410.3728 Information Theory +1410.3947 Information Theory +1410.3976 Optimization and Control +1410.4017 Computer Vision and Pattern Recognition +1410.4086 Information Theory +1410.4162 Classical Physics +1410.5358 Computer Vision and Pattern Recognition +1410.5585 Information Theory +1410.5605 Computer Vision and Pattern Recognition +1410.5890 Information Theory +1410.6086 Probability +1410.6095 Machine Learning +1410.6569 Information Theory +1410.6831 Other Computer Science +1410.7174 Information Theory +1410.8023 Information Theory +1410.8078 Information Theory +1410.8521 Social and Information Networks +1410.8660 Information Theory +1410.8714 Information Theory +1410.8797 Information Theory +1411.0220 Information Theory +1411.0224 Information Theory +1411.0390 Information Theory +1411.0912 Distributed, Parallel, and Cluster Computing +1411.1211 Optimization and Control +1411.1215 Distributed, Parallel, and Cluster Computing +1411.1339 Information Theory +1411.1352 Methodology +1411.1356 Risk Management +1411.2269 Number Theory +1411.2744 Sound +1411.3769 Optimization and Control +1411.3990 Physics and Society +1411.4105 Optimization and Control +1411.5003 Networking and Internet Architecture +1411.5319 Computer Vision and Pattern Recognition +1411.5620 Optimization and Control +1411.6382 Computer Vision and Pattern Recognition +1411.7529 Information Theory +1411.7533 Information Theory +1411.7564 Computer Vision and Pattern Recognition +1412.0349 Information Theory +1412.0524 Dynamical Systems +1412.0614 Information Theory +1412.1964 Information Theory +1412.1993 Information Theory +1412.2096 Instrumentation and Methods for Astrophysics +1412.2584 Number Theory +1412.4474 Networking and Internet Architecture +1412.5867 Computers and Society +1412.6546 Computer Science and Game Theory +1412.6677 Information Theory +1412.6699 Information Theory +1412.7512 Information Theory +1412.7713 Information Theory +1412.8339 Computers and Society +1501.00029 Computers and Society +1501.00155 Logic +1501.00188 Optimization and Control +1501.00409 Information Theory +1501.01184 Information Theory +1501.01563 Information Theory +1501.01661 Distributed, Parallel, and Cluster Computing +1501.01726 Information Theory +1501.01957 Information Theory +1501.02317 Networking and Internet Architecture +1501.02410 Information Theory +1501.02429 Information Theory +1501.02478 Computer Science and Game Theory +1501.02480 Computer Science and Game Theory +1501.02594 Networking and Internet Architecture +1501.02988 Information Theory +1501.03569 Information Theory +1501.04204 Information Theory +1501.04721 Information Theory +1501.05376 Information Theory +1501.05379 Information Theory +1501.05450 Networking and Internet Architecture +1501.05501 Information Theory +1501.05590 Machine Learning +1501.05695 Information Theory +1501.05819 Networking and Internet Architecture +1501.06026 Information Theory +1501.06123 Information Theory +1501.06180 Computer Vision and Pattern Recognition +1501.06647 Networking and Internet Architecture +1502.00206 Distributed, Parallel, and Cluster Computing +1502.00451 Information Theory +1502.00507 Networking and Internet Architecture +1502.00679 Optimization and Control +1502.00687 Analysis of PDEs +1502.01621 Information Theory +1502.03221 Optimization and Control +1502.03493 Networking and Internet Architecture +1502.04348 Information Retrieval +1502.05435 Computer Vision and Pattern Recognition +1502.05789 Systems and Control +1502.05938 Computational Engineering, Finance, and Science +1502.05943 Databases +1502.06084 Cryptography and Security +1502.06669 Information Theory +1502.06670 Information Theory +1502.06743 Networking and Internet Architecture +1502.06809 Information Theory +1502.07411 Computer Vision and Pattern Recognition +1502.07828 Multimedia +1503.00083 Multimedia +1503.00085 Multimedia +1503.00087 Multimedia +1503.00118 Multimedia +1503.00121 Multimedia +1503.00205 Information Theory +1503.00587 Computers and Society +1503.01415 Information Theory +1503.01440 Networking and Internet Architecture +1503.02254 Exactly Solvable and Integrable Systems +1503.02318 Social and Information Networks +1503.02815 Information Theory +1503.02877 Information Theory +1503.02878 Information Theory +1503.03121 +1503.03366 Networking and Internet Architecture +1503.03597 Information Theory +1503.03600 Emerging Technologies +1503.05144 Cryptography and Security +1503.05241 Information Theory +1503.05962 Optics +1503.05964 Medical Physics +1503.06021 Information Theory +1503.06202 Instrumentation and Methods for Astrophysics +1503.06614 Information Theory +1503.07073 Programming Languages +1503.07288 Social and Information Networks +1503.07612 Information Theory +1503.07717 Logic in Computer Science +1503.08093 Probability +1503.08134 Computer Science and Game Theory +1503.08627 Information Theory +1503.09039 Information Theory +1503.09170 Information Theory +1503.09178 Information Theory +1504.00088 Systems and Control +1504.00183 Optimization and Control +1504.00553 Information Theory +1504.00724 Systems and Control +1504.00788 Distributed, Parallel, and Cluster Computing +1504.00953 Information Theory +1504.00954 Data Structures and Algorithms +1504.01000 Information Theory +1504.01002 Information Theory +1504.01267 Materials Science +1504.01492 Computer Vision and Pattern Recognition +1504.01690 Information Theory +1504.01802 Information Theory +1504.02083 Complex Variables +1504.03240 Information Theory +1504.03274 Optimization and Control +1504.03410 Computer Vision and Pattern Recognition +1504.03803 Networking and Internet Architecture +1504.03810 Computer Vision and Pattern Recognition +1504.04113 Information Theory +1504.04494 Information Theory +1504.04499 Information Theory +1504.04515 Information Theory +1504.04568 Materials Science +1504.04615 Information Theory +1504.04663 Social and Information Networks +1504.04806 Information Theory +1504.04975 Information Theory +1504.05358 Information Theory +1504.05756 Information Theory +1504.05898 Information Theory +1504.05931 Information Theory +1504.06224 Dynamical Systems +1504.06416 Information Theory +1504.06746 Information Theory +1504.06749 Information Theory +1504.07014 Algebraic Geometry +1504.07544 Information Theory +1504.07547 Information Theory +1504.07615 Information Theory +1504.07969 Dynamical Systems +1504.08068 Information Theory +1504.08076 Information Theory +1504.08231 Information Theory +1504.08245 Information Theory +1505.00145 Computer Vision and Pattern Recognition +1505.00181 Emerging Technologies +1505.00303 Information Theory +1505.00330 Information Theory +1505.00511 Information Theory +1505.01786 Information Theory +1505.02098 Systems and Control +1505.02147 Logic +1505.02597 Information Theory +1505.02819 Functional Analysis +1505.02911 Information Theory +1505.02928 Quantitative Methods +1505.03209 Networking and Internet Architecture +1505.03357 Mathematical Software +1505.03460 Networking and Internet Architecture +1505.04651 Materials Science +1505.04679 Information Theory +1505.04868 Computer Vision and Pattern Recognition +1505.06345 Information Theory +1505.06553 Information Theory +1505.06608 Networking and Internet Architecture +1505.06699 Computational Engineering, Finance, and Science +1505.07919 Information Theory +1505.07929 Information Theory +1505.08097 Distributed, Parallel, and Cluster Computing +1506.00485 Distributed, Parallel, and Cluster Computing +1506.01158 Probability +1506.01394 Networking and Internet Architecture +1506.01853 Information Theory +1506.02031 Information Theory +1506.02197 Instrumentation and Detectors +1506.02600 Dynamical Systems +1506.03065 Differential Geometry +1506.03236 Information Theory +1506.03495 Computer Vision and Pattern Recognition +1506.03774 Systems and Control +1506.04226 Neurons and Cognition +1506.04233 Information Theory +1506.04303 Cryptography and Security +1506.04374 Neurons and Cognition +1506.04458 Neurons and Cognition +1506.04461 Neurons and Cognition +1506.04737 +1506.04775 Probability +1506.05072 Social and Information Networks +1506.05222 Information Theory +1506.06114 Information Theory +1506.06345 Information Theory +1506.06372 Information Theory +1506.06390 Information Theory +1506.06537 Formal Languages and Automata Theory +1506.06646 Artificial Intelligence +1506.06691 Emerging Technologies +1506.06797 Dynamical Systems +1506.07158 Information Theory +1506.07367 Cryptography and Security +1506.07466 Networking and Internet Architecture +1506.07614 Theory +1506.07742 Distributed, Parallel, and Cluster Computing +1506.07789 Materials Science +1506.08307 Networking and Internet Architecture +1506.08308 Networking and Internet Architecture +1506.08754 Human-Computer Interaction +1506.08762 Systems and Control +1506.09074 Cryptography and Security +1507.00071 Information Theory +1507.00095 Cryptography and Security +1507.00389 Information Theory +1507.00598 Information Theory +1507.00787 Physics and Society +1507.01269 Information Theory +1507.01780 Information Theory +1507.02129 Optics +1507.02598 Information Theory +1507.02615 Computer Science and Game Theory +1507.02853 Data Structures and Algorithms +1507.02874 Information Theory +1507.02973 Social and Information Networks +1507.03214 Theory +1507.04159 Information Theory +1507.04300 Systems and Control +1507.04540 Learning +1507.05228 Systems and Control +1507.05268 Artificial Intelligence +1507.05479 Statistical Mechanics +1507.05533 Information Theory +1507.05679 Emerging Technologies +1507.05737 Computer Vision and Pattern Recognition +1507.05924 Information Theory +1507.05994 Information Theory +1507.06296 Information Theory +1507.06881 Information Theory +1507.07056 Information Theory +1507.07142 Dynamical Systems +1507.07217 Networking and Internet Architecture +1507.07458 Computer Vision and Pattern Recognition +1507.08800 Optimization and Control +1507.08810 Networking and Internet Architecture +1508.00105 Information Theory +1508.00187 Combinatorics +1508.00349 Optimization and Control +1508.00951 Combinatorics +1508.01055 Multimedia +1508.01602 Information Theory +1508.01617 Information Theory +1508.01773 Information Theory +1508.01775 Physics and Society +1508.02668 Information Theory +1508.02808 Networking and Internet Architecture +1508.03517 Information Theory +1508.03940 Information Theory +1508.05037 Optimization and Control +1508.05149 Information Theory +1508.05181 Information Theory +1508.05336 High Energy Astrophysical Phenomena +1508.05348 Networking and Internet Architecture +1508.05703 Information Theory +1508.06011 Information Theory +1508.06093 Information Theory +1508.06158 Information Theory +1508.06223 Analysis of PDEs +1508.06227 Analysis of PDEs +1508.06366 Networking and Internet Architecture +1508.06369 Networking and Internet Architecture +1508.07635 Soft Condensed Matter +1509.00174 Neural and Evolutionary Computing +1509.00244 Computer Vision and Pattern Recognition +1509.00291 Information Theory +1509.00338 Networking and Internet Architecture +1509.00374 Networking and Internet Architecture +1509.00395 Information Theory +1509.01038 Networking and Internet Architecture +1509.01187 Information Theory +1509.01774 Information Theory +1509.01788 Computer Vision and Pattern Recognition +1509.01886 Information Theory +1509.02268 Cryptography and Security +1509.02297 Information Theory +1509.02956 Information Theory +1509.03057 Artificial Intelligence +1509.03252 Optimization and Control +1509.03381 Machine Learning +1509.03854 Fluid Dynamics +1509.04035 Symplectic Geometry +1509.04125 Systems and Control +1509.04154 Optimization and Control +1509.04186 Computer Vision and Pattern Recognition +1509.04619 Computer Vision and Pattern Recognition +1509.04648 Robotics +1509.04664 Computer Vision and Pattern Recognition +1509.04674 Information Theory +1509.04845 Information Theory +1509.04934 Sound +1509.05395 Information Theory +1509.05618 Information Theory +1509.05671 Multimedia +1509.07223 Information Theory +1509.07302 Neural and Evolutionary Computing +1509.07922 Optimization and Control +1509.07950 Information Theory +1509.08152 Algebraic Geometry +1509.08189 Strongly Correlated Electrons +1509.08316 Networking and Internet Architecture +1509.08331 Systems and Control +1509.09222 Information Theory +1509.09227 Optimization and Control +1510.00073 Optimization and Control +1510.00082 Information Theory +1510.00563 Computation +1510.01240 Robotics +1510.01392 Information Theory +1510.01434 Information Theory +1510.02073 Computer Vision and Pattern Recognition +1510.02078 Computer Vision and Pattern Recognition +1510.02384 +1510.02436 Algebraic Geometry +1510.02462 Optimization and Control +1510.02574 Hardware Architecture +1510.03125 Computer Vision and Pattern Recognition +1510.03336 Artificial Intelligence +1510.04031 Social and Information Networks +1510.04039 Sound +1510.04161 Methodology +1510.04330 Optimization and Control +1510.04472 Networking and Internet Architecture +1510.04503 Networking and Internet Architecture +1510.04571 Probability +1510.04574 Probability +1510.04583 Computational Engineering, Finance, and Science +1510.05557 Information Theory +1510.05594 Information Theory +1510.06469 Robotics +1510.06486 Distributed, Parallel, and Cluster Computing +1510.06495 Information Theory +1510.06796 Dynamical Systems +1510.07295 Information Theory +1510.07320 Computer Vision and Pattern Recognition +1510.07323 Computer Vision and Pattern Recognition +1510.07355 Information Theory +1510.07394 Information Theory +1510.07517 Information Theory +1510.07550 Networking and Internet Architecture +1510.07672 Information Theory +1510.08174 Medical Physics +1510.08380 Networking and Internet Architecture +1510.08612 Information Theory +1510.08736 Optimization and Control +1510.08979 Software Engineering +1510.09046 Information Theory +1511.00207 Information Theory +1511.00799 Systems and Control +1511.01291 Information Theory +1511.01556 Computation and Language +1511.01631 Computer Vision and Pattern Recognition +1511.01646 Information Theory +1511.02128 Information Theory +1511.02150 Information Theory +1511.02547 Systems and Control +1511.02548 Systems and Control +1511.02574 Information Theory +1511.02667 Computer Vision and Pattern Recognition +1511.02727 Information Theory +1511.02833 Information Theory +1511.03144 Multiagent Systems +1511.03342 Information Theory +1511.03418 Computers and Society +1511.03561 Information Theory +1511.03611 Systems and Control +1511.03698 Networking and Internet Architecture +1511.04240 Computer Vision and Pattern Recognition +1511.04515 Computational Engineering, Finance, and Science +1511.04519 Computational Engineering, Finance, and Science +1511.04540 Mesoscale and Nanoscale Physics +1511.04763 Networking and Internet Architecture +1511.05076 Computation and Language +1511.05261 Computer Vision and Pattern Recognition +1511.05499 Information Theory +1511.05612 Networking and Internet Architecture +1511.05677 Systems and Control +1511.05892 Information Theory +1511.06715 Information Theory +1511.06815 Computer Vision and Pattern Recognition +1511.06888 Networking and Internet Architecture +1511.07042 Numerical Analysis +1511.07311 Information Theory +1511.07316 Information Theory +1511.07374 Information Theory +1511.07499 Information Theory +1511.07693 Distributed, Parallel, and Cluster Computing +1511.07844 Instrumentation and Detectors +1511.07913 Instrumentation and Detectors +1511.08242 Theory +1511.08587 Networking and Internet Architecture +1511.08862 +1511.08876 Systems and Control +1512.01148 +1512.01738 Information Theory +1512.01780 Information Theory +1512.01944 Instrumentation and Detectors +1512.02784 Instrumentation and Methods for Astrophysics +1512.02908 Instrumentation and Methods for Astrophysics +1512.02918 Information Theory +1512.02945 Information Theory +1512.03766 Probability +1512.03839 Networking and Internet Architecture +1512.03982 Information Theory +1512.03985 Information Theory +1512.04042 Information Retrieval +1512.04116 Cryptography and Security +1512.04133 Computer Vision and Pattern Recognition +1512.04134 Computer Vision and Pattern Recognition +1512.04255 Logic in Computer Science +1512.04833 Information Theory +1512.04968 Instrumentation and Detectors +1512.06197 Computer Science and Game Theory +1512.06238 Data Structures and Algorithms +1512.06726 Emerging Technologies +1512.06785 Information Retrieval +1512.06896 Cell Behavior +1512.06938 Information Theory +1512.07221 Information Theory +1512.07735 Cryptography and Security +1512.08523 Superconductivity +1512.08650 Computational Physics +1601.00042 Systems and Control +1601.00086 Instrumentation and Detectors +1601.00721 Information Theory +1601.01062 Representation Theory +1601.01435 Information Theory +1601.01786 Networking and Internet Architecture +1601.02082 Information Theory +1601.02699 Networking and Internet Architecture +1601.02807 Earth and Planetary Astrophysics +1601.03121 Information Theory +1601.03164 Information Theory +1601.03821 Computer Vision and Pattern Recognition +1601.03876 Networking and Internet Architecture +1601.03926 Networking and Internet Architecture +1601.03981 Combinatorics +1601.04247 Information Theory +1601.05164 Systems and Control +1601.05275 Classical Analysis and ODEs +1601.05769 Information Theory +1601.06113 Information Theory +1601.06209 Information Theory +1601.06537 Statistics Theory +1601.07375 Applications +1601.07468 Information Theory +1601.07471 Computer Vision and Pattern Recognition +1601.08020 Dynamical Systems +1601.08062 Information Theory +1601.08117 Information Theory +1601.08198 Soft Condensed Matter +1601.08201 Numerical Analysis +1601.08245 Instrumentation and Detectors +1602.00043 Information Theory +1602.00066 Networking and Internet Architecture +1602.00145 Information Theory +1602.00173 Information Theory +1602.00193 Computers and Society +1602.00223 Learning +1602.01026 Dynamical Systems +1602.01066 Information Theory +1602.01149 Information Theory +1602.01208 Artificial Intelligence +1602.01565 Information Theory +1602.01944 Human-Computer Interaction +1602.02040 Information Theory +1602.02100 Phenomenology +1602.02159 Distributed, Parallel, and Cluster Computing +1602.02366 Information Theory +1602.03342 Networking and Internet Architecture +1602.03571 Learning +1602.03602 Information Theory +1602.03617 Networking and Internet Architecture +1602.03654 Information Theory +1602.03676 Information Theory +1602.04183 Hardware Architecture +1602.04207 Information Theory +1602.04445 Strongly Correlated Electrons +1602.04591 Information Theory +1602.05318 Networking and Internet Architecture +1602.05703 Learning +1602.05715 Materials Science +1602.06063 Information Theory +1602.06365 Information Theory +1602.06401 Human-Computer Interaction +1602.06498 Systems and Control +1602.06665 Information Theory +1602.06727 Sound +1602.06755 Differential Geometry +1602.06931 Medical Physics +1602.07022 Information Theory +1602.07423 Information Theory +1602.07495 Learning +1602.07570 Computer Science and Game Theory +1602.07743 Information Theory +1602.08327 Information Theory +1602.08567 Information Theory +1602.08857 Information Theory +1603.01217 Information Theory +1603.01420 Information Theory +1603.01869 Information Theory +1603.01926 Information Theory +1603.02713 Medical Physics +1603.03133 Information Theory +1603.03551 Information Theory +1603.03677 Optimization and Control +1603.03682 Networking and Internet Architecture +1603.03935 Systems and Control +1603.04079 Information Theory +1603.04341 Information Theory +1603.04418 Systems and Control +1603.04777 Numerical Analysis +1603.04908 Computer Vision and Pattern Recognition +1603.05225 +1603.05692 Optimization and Control +1603.05923 Atomic Physics +1603.06173 Information Theory +1603.06318 Learning +1603.06616 Information Theory +1603.06644 Mesoscale and Nanoscale Physics +1603.06777 Computer Vision and Pattern Recognition +1603.06970 Systems and Control +1603.07357 Distributed, Parallel, and Cluster Computing +1603.07683 Materials Science +1603.07807 Computer Vision and Pattern Recognition +1603.07936 Distributed, Parallel, and Cluster Computing +1603.07938 Distributed, Parallel, and Cluster Computing +1603.08027 Networking and Internet Architecture +1603.08150 Machine Learning +1603.08386 Genomics +1603.08763 Analysis of PDEs +1603.08876 Information Theory +1603.08900 Mesoscale and Nanoscale Physics +1603.09278 Networking and Internet Architecture +1604.00861 Sound +1604.00913 Networking and Internet Architecture +1604.00933 Computation and Language +1604.01680 Neurons and Cognition +1604.02559 Networking and Internet Architecture +1604.02687 Theory +1604.02752 Information Theory +1604.02758 Rings and Algebras +1604.02802 Networking and Internet Architecture +1604.02937 Computers and Society +1604.03049 Information Theory +1604.03693 Quantum Gases +1604.03764 Computer Science and Game Theory +1604.03984 Systems and Control +1604.04804 Distributed, Parallel, and Cluster Computing +1604.04906 Computer Vision and Pattern Recognition +1604.04966 Information Theory +1604.05240 +1604.05890 Theory +1604.06051 +1604.06113 Computation and Language +1604.06140 Earth and Planetary Astrophysics +1604.06722 Disordered Systems and Neural Networks +1604.06842 Information Theory +1604.07213 +1604.07318 Information Theory +1604.07918 Information Theory +1604.08315 Information Theory +1604.08319 Information Theory +1604.08937 Networking and Internet Architecture +1605.00301 Statistical Mechanics +1605.00305 Networking and Internet Architecture +1605.00451 Other Computer Science +1605.00710 Materials Science +1605.01160 Information Theory +1605.01178 Information Theory +1605.01201 Networking and Internet Architecture +1605.01668 Information Theory +1605.01972 Materials Science +1605.02242 Dynamical Systems +1605.02268 Information Theory +1605.02314 Information Theory +1605.02324 Information Theory +1605.02372 Learning +1605.02410 Information Theory +1605.02411 Optimization and Control +1605.03035 Computers and Society +1605.03338 Networking and Internet Architecture +1605.03498 Computer Vision and Pattern Recognition +1605.03547 Distributed, Parallel, and Cluster Computing +1605.03616 Numerical Analysis +1605.03621 Computer Vision and Pattern Recognition +1605.03778 Group Theory +1605.04039 Computer Vision and Pattern Recognition +1605.04065 Group Theory +1605.04180 Digital Libraries +1605.04227 Information Retrieval +1605.04283 Information Theory +1605.04634 Computer Vision and Pattern Recognition +1605.05026 Information Theory +1605.05137 Information Theory +1605.05140 Probability +1605.05179 Instrumentation and Detectors +1605.05195 Social and Information Networks +1605.05284 Information Theory +1605.05393 Materials Science +1605.05488 Information Theory +1605.05527 Fluid Dynamics +1605.05622 Computation +1605.06436 Experiment +1605.06474 Computer Vision and Pattern Recognition +1605.07098 Information Theory +1605.07164 Phenomenology +1605.07466 Sound +1605.07468 Sound +1605.07469 Sound +1605.07681 Computer Vision and Pattern Recognition +1605.07729 Information Theory +1605.07853 Information Theory +1605.08962 Cryptography and Security +1605.09038 Information Theory +1606.00219 Computer Vision and Pattern Recognition +1606.00284 Astrophysics of Galaxies +1606.00397 Information Theory +1606.00656 Applications +1606.00940 Theory +1606.01275 Data Structures and Algorithms +1606.01314 Information Theory +1606.01581 Networking and Internet Architecture +1606.01599 Information Theory +1606.01952 Mesoscale and Nanoscale Physics +1606.02213 Information Theory +1606.02371 Information Theory +1606.03129 +1606.03469 Mesoscale and Nanoscale Physics +1606.03535 +1606.03636 Sound +1606.04191 Information Theory +1606.04322 Information Theory +1606.04488 Information Theory +1606.04794 Information Theory +1606.05677 History and Philosophy of Physics +1606.05905 Digital Libraries +1606.06408 Information Theory +1606.06900 Computation and Language +1606.08407 Networking and Internet Architecture +1606.08642 +1606.08772 Experiment +1606.08924 +1607.00054 Dynamical Systems +1607.00565 Group Theory +1607.00589 Computer Vision and Pattern Recognition +1607.01383 Information Theory +1607.01657 Data Structures and Algorithms +1607.02014 Information Theory +1607.02295 Strongly Correlated Electrons +1607.02864 Systems and Control +1607.02920 Information Theory +1607.03362 Instrumentation and Detectors +1607.04024 Cosmology and Nongalactic Astrophysics +1607.05017 Information Theory +1607.05090 Computational Physics +1607.05203 Phenomenology +1607.05553 Optics +1607.05850 Data Structures and Algorithms +1607.06124 +1607.06190 Learning +1607.06351 Information Theory +1607.06384 Information Theory +1607.06540 Information Theory +1607.06708 Robotics +1607.06734 Strongly Correlated Electrons +1607.07277 +1607.08096 Methodology +1607.08175 Plasma Physics +1607.08200 Information Theory +1607.08220 Distributed, Parallel, and Cluster Computing +1607.08292 Information Theory +1608.00721 +1608.00990 Computation +1608.01398 Machine Learning +1608.01849 Astrophysics of Galaxies +1608.01907 +1608.01996 Strongly Correlated Electrons +1608.02322 Number Theory +1608.02414 Mesoscale and Nanoscale Physics +1608.02755 Computer Vision and Pattern Recognition +1608.02775 Metric Geometry +1608.03464 Neurons and Cognition +1608.03643 Learning +1608.03718 Earth and Planetary Astrophysics +1608.03728 Number Theory +1608.03798 Optimization and Control +1608.04135 Optimization and Control +1608.04167 Methodology +1608.04213 Information Theory +1608.04977 +1608.05265 Distributed, Parallel, and Cluster Computing +1608.05470 Information Theory +1608.05473 Information Theory +1608.05631 Probability +1608.06041 Information Theory +1608.06369 Instrumentation and Detectors +1608.06581 Learning +1608.06997 Superconductivity +1608.08150 High Energy Astrophysical Phenomena +1608.08313 Networking and Internet Architecture +1608.08451 Theory +1608.08605 Strongly Correlated Electrons +1608.08744 Computer Science and Game Theory +1609.00189 Information Theory +1609.00230 Soft Condensed Matter +1609.00468 Quantum Gases +1609.00987 Pricing of Securities +1609.01090 Classical Analysis and ODEs +1609.01103 Computer Vision and Pattern Recognition +1609.01885 Computer Vision and Pattern Recognition +1609.01955 Solar and Stellar Astrophysics +1609.02285 Soft Condensed Matter +1609.02500 Computer Vision and Pattern Recognition +1609.03490 Learning +1609.04360 Information Theory +1609.05490 Information Theory +1609.05789 Optics +1609.05831 Information Theory +1609.05836 Information Theory +1609.05871 Computer Vision and Pattern Recognition +1609.05971 Information Theory +1609.06261 Information Theory +1609.06353 Information Theory +1609.06395 Information Theory +1609.06460 Information Theory +1609.07576 Computer Science and Game Theory +1609.07589 Information Theory +1609.09471 Learning +1609.09789 Systems and Control +1610.00125 Distributed, Parallel, and Cluster Computing +1610.00473 Metric Geometry +1610.00966 Information Theory +1610.01654 Theory +1610.01706 Computer Vision and Pattern Recognition +1610.01820 Chemical Physics +1610.02826 Computer Science and Game Theory +1610.03132 Geometric Topology +1610.03428 Combinatorics +1610.04420 Machine Learning +1610.05094 Information Theory +1610.05423 Symplectic Geometry +1610.05600 Number Theory +1610.05999 Quantum Algebra +1610.06138 Networking and Internet Architecture +1610.06349 Computational Physics +1610.06507 Chaotic Dynamics +1610.07026 Functional Analysis +1610.07030 Probability +1610.07084 Probability +1610.07435 Optimization and Control +1610.07647 Computation and Language +1610.09029 Geometric Topology +1610.09259 Theory +1610.09851 Dynamical Systems +1611.00278 Number Theory +1611.00998 +1611.01063 Programming Languages +1611.01082 Complex Variables +1611.01589 Materials Science +1611.01721 Accelerator Physics +1611.01950 Information Theory +1611.01982 Computer Vision and Pattern Recognition +1611.02064 Computer Vision and Pattern Recognition +1611.02151 +1611.02187 Algebraic Topology +1611.02348 Numerical Analysis +1611.02409 Fluid Dynamics +1611.02559 Solar and Stellar Astrophysics +1611.02737 Databases +1611.02992 Social and Information Networks +1611.03035 +1611.03660 Computers and Society +1611.03847 Algebraic Geometry +1611.03938 Rings and Algebras +1611.03997 Lattice +1611.04290 Experiment +1611.04472 +1611.04663 Classical Analysis and ODEs +1611.04743 Quantitative Methods +1611.04801 Optimization and Control +1611.04952 Theory +1611.04989 Computation and Language +1611.05033 Solar and Stellar Astrophysics +1611.05034 Analysis of PDEs +1611.05036 Theory +1611.05041 Solar and Stellar Astrophysics +1611.05042 Phenomenology +1611.05045 Astrophysics of Galaxies +1611.05046 Phenomenology +1611.05049 Strongly Correlated Electrons +1611.05050 +1611.05051 Cosmology and Nongalactic Astrophysics +1611.05053 Computer Vision and Pattern Recognition +1611.05055 Cosmology and Nongalactic Astrophysics +1611.05057 +1611.05058 Physics and Society +1611.05059 Combinatorics +1611.05060 Phenomenology +1611.05061 Phenomenology +1611.05063 Information Theory +1611.05064 Astrophysics of Galaxies +1611.05067 Commutative Algebra +1611.05070 Probability +1611.05072 Mesoscale and Nanoscale Physics +1611.05074 +1611.05075 Mesoscale and Nanoscale Physics +1611.05077 +1611.05078 +1611.05079 Phenomenology +1611.05081 Optics +1611.05082 Biomolecules +1611.05084 Chaotic Dynamics +1611.05086 Computational Complexity +1611.05087 Networking and Internet Architecture +1611.05089 +1611.05090 Statistical Mechanics +1611.05091 Phenomenology +1611.05092 Robotics +1611.05094 Phenomenology +1611.05095 Learning +1611.05096 Numerical Analysis +1611.05097 Numerical Analysis +1611.05099 Classical Analysis and ODEs +1611.05101 Symbolic Computation +1611.05102 Optics +1611.05103 Quantum Algebra +1611.05105 Programming Languages +1611.05107 +1611.05108 Functional Analysis +1611.05110 Materials Science +1611.05112 Algebraic Geometry +1611.05113 Computer Vision and Pattern Recognition +1611.05116 Materials Science +1611.05117 Applications +1611.05118 Computer Vision and Pattern Recognition +1611.05120 Phenomenology +1611.05122 Networking and Internet Architecture +1611.05123 Cosmology and Nongalactic Astrophysics +1611.05124 Analysis of PDEs +1611.05129 Numerical Analysis +1611.05130 Numerical Analysis +1611.05132 Learning +1611.05134 Computer Vision and Pattern Recognition +1611.05137 Neurons and Cognition +1611.05138 Learning +1611.05141 Neural and Evolutionary Computing +1611.05142 Optimization and Control +1611.05143 Superconductivity +1611.05144 Materials Science +1611.05145 +1611.05146 Learning +1611.05148 Computer Vision and Pattern Recognition +1611.05150 Neurons and Cognition +1611.05152 Social and Information Networks +1611.05153 Algebraic Geometry +1611.05154 Robotics +1611.05157 Category Theory +1611.05159 Operator Algebras +1611.05161 Distributed, Parallel, and Cluster Computing +1611.05164 Systems and Control +1611.05166 Functional Analysis +1611.05167 Mesoscale and Nanoscale Physics +1611.05170 Artificial Intelligence +1611.05172 Networking and Internet Architecture +1611.05173 Dynamical Systems +1611.05175 Solar and Stellar Astrophysics +1611.05176 Logic +1611.05177 Networking and Internet Architecture +1611.05178 Cosmology and Nongalactic Astrophysics +1611.05180 Mesoscale and Nanoscale Physics +1611.05181 Learning +1611.05182 Sound +1611.05184 Solar and Stellar Astrophysics +1611.05185 +1611.05187 Discrete Mathematics +1611.05188 Analysis of PDEs +1611.05190 Artificial Intelligence +1611.05195 Mesoscale and Nanoscale Physics +1611.05199 Functional Analysis +1611.05200 Analysis of PDEs +1611.05203 Computer Vision and Pattern Recognition +1611.05204 Social and Information Networks +1611.05205 Computer Science and Game Theory +1611.05206 Digital Libraries +1611.05207 +1611.05208 Materials Science +1611.05209 Machine Learning +1611.05210 Spectral Theory +1611.05212 Numerical Analysis +1611.05213 Astrophysics of Galaxies +1611.05215 Computer Vision and Pattern Recognition +1611.05217 +1611.05218 K-Theory and Homology +1611.05219 Probability +1611.05220 Probability +1611.05222 Information Retrieval +1611.05225 Information Theory +1611.05227 Solar and Stellar Astrophysics +1611.05228 Instrumentation and Detectors +1611.05229 +1611.05231 Logic +1611.05232 Instrumentation and Detectors +1611.05234 Materials Science +1611.05235 Statistical Mechanics +1611.05237 Spectral Theory +1611.05238 Quantum Gases +1611.05239 Computation and Language +1611.05240 Probability +1611.05241 Computer Vision and Pattern Recognition +1611.05242 Analysis of PDEs +1611.05243 +1611.05245 Instrumentation and Detectors +1611.05246 Mesoscale and Nanoscale Physics +1611.05248 Data Structures and Algorithms +1611.05249 Solar and Stellar Astrophysics +1611.05250 Computer Vision and Pattern Recognition +1611.05251 Combinatorics +1611.05252 Combinatorics +1611.05255 Mesoscale and Nanoscale Physics +1611.05257 Dynamical Systems +1611.05258 Number Theory +1611.05260 Astrophysics of Galaxies +1611.05261 Differential Geometry +1611.05263 Complex Variables +1611.05265 Complex Variables +1611.05266 Statistical Mechanics +1611.05267 Computer Vision and Pattern Recognition +1611.05268 Instrumentation and Methods for Astrophysics +1611.05269 Information Theory +1611.05271 Computer Vision and Pattern Recognition +1611.05273 Analysis of PDEs +1611.05274 Experiment +1611.05275 Probability +1611.05277 Soft Condensed Matter +1611.05278 Analysis of PDEs +1611.05279 Instrumentation and Methods for Astrophysics +1611.05282 Soft Condensed Matter +1611.05284 Metric Geometry +1611.05285 Classical Analysis and ODEs +1611.05286 Phenomenology +1611.05287 Superconductivity +1611.05288 General Finance +1611.05289 Applications +1611.05290 Materials Science +1611.05295 General Physics +1611.05296 Classical Analysis and ODEs +1611.05297 Physics Education +1611.05298 Combinatorics +1611.05299 Atomic Physics +1611.05300 Analysis of PDEs +1611.05301 Computer Vision and Pattern Recognition +1611.05302 Applications +1611.05304 General Physics +1611.05305 Strongly Correlated Electrons +1611.05312 Differential Geometry +1611.05313 Physics Education +1611.05314 Combinatorics +1611.05316 General Physics +1611.05317 Learning +1611.05318 Analysis of PDEs +1611.05320 Combinatorics +1611.05322 Information Theory +1611.05326 +1611.05327 +1611.05328 Multimedia +1611.05330 Phenomenology +1611.05331 +1611.05332 Instrumentation and Detectors +1611.05333 Materials Science +1611.05334 Representation Theory +1611.05336 Phenomenology +1611.05339 Computers and Society +1611.05341 Number Theory +1611.05342 Computer Science and Game Theory +1611.05343 Numerical Analysis +1611.05344 Methodology +1611.05346 Distributed, Parallel, and Cluster Computing +1611.05349 Number Theory +1611.05350 Pattern Formation and Solitons +1611.05351 General Topology +1611.05353 Networking and Internet Architecture +1611.05355 Algebraic Geometry +1611.05360 Computation and Language +1611.05362 Networking and Internet Architecture +1611.05364 Probability +1611.05366 Solar and Stellar Astrophysics +1611.05368 Computer Vision and Pattern Recognition +1611.05369 Computer Vision and Pattern Recognition +1611.05371 Mesoscale and Nanoscale Physics +1611.05373 Social and Information Networks +1611.05375 Superconductivity +1611.05377 Computer Vision and Pattern Recognition +1611.05378 Learning +1611.05379 Artificial Intelligence +1611.05384 Computation and Language +1611.05385 Classical Analysis and ODEs +1611.05386 Complex Variables +1611.05387 +1611.05394 +1611.05396 Computer Vision and Pattern Recognition +1611.05397 Learning +1611.05398 Classical Analysis and ODEs +1611.05399 Optics +1611.05400 Instrumentation and Methods for Astrophysics +1611.05401 Statistics Theory +1611.05403 Biological Physics +1611.05405 Methodology +1611.05406 Physics and Society +1611.05407 Statistics Theory +1611.05408 Strongly Correlated Electrons +1611.05410 Statistics Theory +1611.05411 +1611.05412 Quantum Gases +1611.05413 Information Theory +1611.05414 Data Analysis, Statistics and Probability +1611.05415 Hardware Architecture +1611.05417 Algebraic Geometry +1611.05419 Social and Information Networks +1611.05420 Methodology +1611.05422 Logic +1611.05423 Combinatorics +1611.05424 Computer Vision and Pattern Recognition +1611.05425 Artificial Intelligence +1611.05427 Complex Variables +1611.05429 Data Structures and Algorithms +1611.05430 Optimization and Control +1611.05431 Computer Vision and Pattern Recognition +1611.05432 Mesoscale and Nanoscale Physics +1611.05433 Machine Learning +1611.05434 +1611.05436 Theory +1611.05437 Astrophysics of Galaxies +1611.05438 Other Computer Science +1611.05441 Dynamical Systems +acc-phys/9504001 Accelerator Physics +astro-ph/0304312 +astro-ph/0504651 +astro-ph/9906098 +astro-ph/9906099 +cond-mat/0012120 Superconductivity +cond-mat/0101384 Superconductivity +cond-mat/0210535 Disordered Systems and Neural Networks +cond-mat/0410529 Statistical Mechanics +cond-mat/0608056 Materials Science +cond-mat/9802293 Materials Science +cond-mat/9901118 Mesoscale and Nanoscale Physics +cs/0005022 Sound +cs/0005032 Computational Complexity +cs/0010010 Computational Engineering, Finance, and Science +cs/0106010 Artificial Intelligence +cs/0203014 Computational Complexity +cs/0208023 Networking and Internet Architecture +cs/0403029 Networking and Internet Architecture +cs/0405026 Artificial Intelligence +cs/0405028 Artificial Intelligence +cs/0405033 Artificial Intelligence +cs/0405065 Neural and Evolutionary Computing +cs/0407010 Information Theory +cs/0410012 Performance +cs/0412071 Artificial Intelligence +cs/0412072 Artificial Intelligence +cs/0412118 Networking and Internet Architecture +cs/0501057 Information Theory +cs/0501061 Information Theory +cs/0501064 Information Theory +cs/0501066 Information Theory +cs/0501067 Information Theory +cs/0501085 Information Theory +cs/0502091 Cryptography and Security +cs/0505032 Information Theory +cs/0505064 Human-Computer Interaction +cs/0506012 Information Theory +cs/0506028 Information Theory +cs/0506042 Information Theory +cs/0506043 Information Theory +cs/0506045 Information Theory +cs/0506093 Information Theory +cs/0507005 Information Theory +cs/0507009 Networking and Internet Architecture +cs/0507068 Information Theory +cs/0508011 Cryptography and Security +cs/0508012 Information Theory +cs/0508013 Information Theory +cs/0508014 Information Theory +cs/0508019 Information Theory +cs/0508027 Information Theory +cs/0508030 Information Theory +cs/0508039 Information Theory +cs/0508046 Information Theory +cs/0508051 Information Theory +cs/0508054 Information Theory +cs/0508055 Discrete Mathematics +cs/0508057 Information Theory +cs/0508077 Information Theory +cs/0508099 Information Theory +cs/0508104 Information Theory +cs/0508124 Information Theory +cs/0510005 Information Theory +cs/0511003 Information Theory +cs/0511019 Information Theory +cs/0511065 Information Theory +cs/0601012 Information Theory +cs/0601017 Information Theory +cs/0601036 Information Theory +cs/0601041 Information Theory +cs/0601048 Information Theory +cs/0601090 Information Theory +cs/0602035 Information Theory +cs/0603068 Information Theory +cs/0603112 Distributed, Parallel, and Cluster Computing +cs/0603126 Multiagent Systems +cs/0604077 Information Theory +cs/0604110 Multiagent Systems +cs/0605100 Information Theory +cs/0605106 Logic in Computer Science +cs/0605118 Information Theory +cs/0605137 Information Theory +cs/0608021 Information Theory +cs/0608044 Networking and Internet Architecture +cs/0608046 Distributed, Parallel, and Cluster Computing +cs/0608047 Distributed, Parallel, and Cluster Computing +cs/0609018 Information Theory +cs/0609023 Hardware Architecture +cs/0609042 Information Theory +cs/0610025 Information Theory +cs/0610079 Information Theory +cs/0610090 Hardware Architecture +cs/0610106 Information Theory +cs/0610112 Information Theory +cs/0611106 Information Theory +cs/0611118 Artificial Intelligence +cs/0611160 Information Theory +cs/0611161 Information Theory +cs/0612007 Information Theory +cs/0612083 Distributed, Parallel, and Cluster Computing +cs/0612089 Computational Complexity +cs/0612099 Information Theory +cs/0701006 Information Theory +cs/0701034 Information Theory +cs/0701050 Information Theory +cs/0701065 Information Theory +cs/0701090 Information Theory +cs/0701093 Information Theory +cs/0701152 Information Theory +cs/0701178 Information Theory +cs/0702105 Information Theory +cs/0702115 Information Theory +cs/0702147 Information Theory +cs/0702158 Networking and Internet Architecture +cs/0702161 Information Theory +cs/0703005 Information Theory +cs/0703016 Information Theory +cs/0703022 Information Theory +cs/0703035 Information Theory +cs/0703078 Information Theory +cs/0703125 Learning +cs/0703132 Data Structures and Algorithms +cs/9809090 Networking and Internet Architecture +cs/9809102 Networking and Internet Architecture +cs/9809104 Networking and Internet Architecture +cs/9810011 Hardware Architecture +cs/9812006 Neural and Evolutionary Computing +cs/9904002 Information Retrieval +cs/9906031 Software Engineering +cs/9909006 Computational Geometry +math-ph/0503037 +math/0006133 Optimization and Control +math/0309285 Numerical Analysis +math/0506060 Optimization and Control +math/0506420 Combinatorics +math/0509536 Optimization and Control +math/0608556 Statistics Theory +math/0612193 Optimization and Control +math/0701261 Statistics Theory +math/9705212 Probability +nlin/0006050 Adaptation and Self-Organizing Systems +nlin/0409038 Chaotic Dynamics +nlin/0512031 Adaptation and Self-Organizing Systems +nlin/0606029 Chaotic Dynamics +nlin/0606032 Chaotic Dynamics +physics/0107020 Accelerator Physics +physics/0112013 Instrumentation and Detectors +physics/0308094 General Physics +physics/0404052 Chemical Physics +physics/0406129 Optics +physics/0411136 Instrumentation and Detectors +physics/0504013 Atomic Physics +physics/0509202 Optics +physics/0511173 Instrumentation and Detectors +physics/0604015 Medical Physics +physics/0605004 Computational Physics +physics/0612129 Data Analysis, Statistics and Probability +physics/0612166 Instrumentation and Detectors +physics/0701161 Medical Physics +q-bio/0407030 Biomolecules +q-bio/0407039 Biomolecules +q-bio/0508012 Genomics +q-bio/0606018 Quantitative Methods +quant-ph/0102108 +quant-ph/0205057 +quant-ph/0206093 +quant-ph/0206185 +quant-ph/0206186 +quant-ph/0206187 +quant-ph/0209076 +quant-ph/0304112 +quant-ph/0304161 +quant-ph/0305105 +quant-ph/0305154 +quant-ph/0404154 +quant-ph/0405016 +quant-ph/0409135 +quant-ph/0501099 +quant-ph/0506189 +quant-ph/0601168 +quant-ph/0610195 +quant-ph/0702005 +quant-ph/9808063 +quant-ph/9907087 +0705.0114 +0706.2286 +0710.5103 +0802.1173 Dynamical Systems +0807.1480 +0903.4746 High Energy Astrophysical Phenomena +0904.1683 Commutative Algebra +0907.2065 Biological Physics +1103.0348 High Energy Astrophysical Phenomena +1106.0534 Analysis of PDEs +1108.0530 Biological Physics +1203.1827 Strongly Correlated Electrons +1203.4553 Differential Geometry +1207.6604 Quantum Algebra +1208.2881 Superconductivity +1210.1000 +1210.7894 Number Theory +1212.4817 Symplectic Geometry +1306.5941 Soft Condensed Matter +1308.4644 Commutative Algebra +1309.0492 Group Theory +1309.1068 Symplectic Geometry +1309.2719 Superconductivity +1310.2243 Astrophysics of Galaxies +1311.0431 Applications +1312.3167 Algebraic Geometry +1312.4089 Soft Condensed Matter +1401.0803 Applications +1401.5702 Algebraic Geometry +1401.7179 Number Theory +1402.1231 Differential Geometry +1402.6553 Probability +1403.5514 Superconductivity +1404.0761 Phenomenology +1404.6902 Statistical Mechanics +1405.1219 Differential Geometry +1405.1645 +1405.2946 Dynamical Systems +1405.5465 Representation Theory +1406.1366 Number Theory +1406.3662 Probability +1407.1093 Number Theory +1407.5295 Combinatorics +1407.5698 Classical Analysis and ODEs +1407.8328 Operator Algebras +1408.2084 +1408.2795 +1408.4193 Probability +1409.0176 Group Theory +1409.4759 General Physics +1409.7353 Number Theory +1410.2249 Astrophysics of Galaxies +1410.2257 Theory +1410.2351 Astrophysics of Galaxies +1410.2872 Representation Theory +1410.4605 Superconductivity +1410.4853 Biological Physics +1410.5554 Probability +1410.6389 Strongly Correlated Electrons +1410.6845 Algebraic Geometry +1410.6960 Artificial Intelligence +1410.7272 +1410.7541 Numerical Analysis +1411.0728 Learning +1411.3554 Theory +1411.5434 High Energy Astrophysical Phenomena +1411.6813 Group Theory +1411.7893 +1412.1875 Biological Physics +1412.3309 Algebraic Topology +1412.3754 Differential Geometry +1501.00622 Optimization and Control +1501.02557 Atomic Physics +1501.04522 Logic +1501.05160 Probability +1501.05291 Phenomenology +1501.07355 Superconductivity +1501.07390 Operator Algebras +1501.07753 +1502.00403 Quantum Algebra +1502.00941 +1502.01008 Atmospheric and Oceanic Physics +1502.01163 Dynamical Systems +1502.01232 +1502.01859 +1502.02480 +1502.03030 +1502.04787 Exactly Solvable and Integrable Systems +1502.06535 Dynamical Systems +1503.01810 Quantum Gases +1503.02553 Numerical Analysis +1503.02690 Soft Condensed Matter +1503.02995 Experiment +1503.03263 Operator Algebras +1503.03412 Mesoscale and Nanoscale Physics +1503.04305 Dynamical Systems +1503.04523 Atomic Physics +1503.06327 Rings and Algebras +1503.07061 +1503.07818 Statistical Mechanics +1503.08919 Quantum Gases +1503.09102 High Energy Astrophysical Phenomena +1504.01412 Plasma Physics +1504.01498 Differential Geometry +1504.02379 Plasma Physics +1504.02884 Soft Condensed Matter +1504.02923 Information Theory +1504.04055 Theory +1504.04220 +1504.04729 Differential Geometry +1504.04745 Soft Condensed Matter +1504.04793 +1504.05668 +1504.05881 +1504.06261 Astrophysics of Galaxies +1504.06452 +1504.06799 Phenomenology +1504.07185 Strongly Correlated Electrons +1504.07187 Phenomenology +1504.07191 Chemical Physics +1504.07326 Numerical Analysis +1504.07799 Theory +1504.08336 +1505.00034 Cosmology and Nongalactic Astrophysics +1505.01233 Phenomenology +1505.02032 Analysis of PDEs +1505.02303 Analysis of PDEs +1505.02654 Atomic Physics +1505.03749 Analysis of PDEs +1505.04082 Phenomenology +1505.04684 +1505.04799 Solar and Stellar Astrophysics +1505.04940 High Energy Astrophysical Phenomena +1505.05009 Operator Algebras +1505.06687 Quantum Gases +1505.06720 Phenomenology +1505.07172 Soft Condensed Matter +1505.07316 Analysis of PDEs +1505.07451 Strongly Correlated Electrons +1505.07767 Instrumentation and Detectors +1506.00207 Differential Geometry +1506.00519 +1506.00854 Astrophysics of Galaxies +1506.01469 Cosmology and Nongalactic Astrophysics +1506.01595 +1506.01898 Spectral Theory +1506.02179 +1506.02643 Popular Physics +1506.03690 +1506.04545 Strongly Correlated Electrons +1506.04772 Phenomenology +1506.05800 Astrophysics of Galaxies +1506.06248 Analysis of PDEs +1506.07138 Materials Science +1506.07792 Biological Physics +1506.08135 Mesoscale and Nanoscale Physics +1506.08403 Optics +1506.08413 Quantum Gases +1506.08462 Phenomenology +1506.08673 Instrumentation and Detectors +1506.08936 Mesoscale and Nanoscale Physics +1506.09012 Materials Science +1507.00456 Representation Theory +1507.00645 +1507.00795 Analysis of PDEs +1507.01219 Operator Algebras +1507.01250 Phenomenology +1507.01451 Artificial Intelligence +1507.02557 Numerical Analysis +1507.03079 +1507.03199 Numerical Analysis +1507.03312 Geometric Topology +1507.03964 Differential Geometry +1507.03990 Phenomenology +1507.04386 Geometric Topology +1507.04896 Materials Science +1507.05262 Group Theory +1507.05326 Cosmology and Nongalactic Astrophysics +1507.05659 Mesoscale and Nanoscale Physics +1507.05845 Instrumentation and Detectors +1507.06309 Quantum Gases +1507.06935 Analysis of PDEs +1507.07007 Mesoscale and Nanoscale Physics +1507.07129 Experiment +1507.07654 Strongly Correlated Electrons +1507.07796 High Energy Astrophysical Phenomena +1507.08062 Molecular Networks +1507.08686 Disordered Systems and Neural Networks +1507.08817 Neurons and Cognition +1507.08828 Theory +1507.08962 Statistical Mechanics +1508.00007 Astrophysics of Galaxies +1508.00149 Analysis of PDEs +1508.00234 Theory +1508.00807 Mesoscale and Nanoscale Physics +1508.00876 Computational Physics +1508.01417 +1508.01528 Soft Condensed Matter +1508.01801 Phenomenology +1508.02573 +1508.02822 Strongly Correlated Electrons +1508.02875 Complex Variables +1508.02894 Strongly Correlated Electrons +1508.03263 Programming Languages +1508.03486 Phenomenology +1508.03561 Mesoscale and Nanoscale Physics +1508.03683 +1508.03738 Superconductivity +1508.04000 Analysis of PDEs +1508.04222 +1508.04501 +1508.05060 Phenomenology +1508.05095 Phenomenology +1508.05264 Soft Condensed Matter +1508.05482 Quantum Gases +1508.05590 Disordered Systems and Neural Networks +1508.05664 Chaotic Dynamics +1508.05755 Exactly Solvable and Integrable Systems +1508.05875 +1508.05912 Instrumentation and Detectors +1508.05947 Quantum Gases +1508.05961 High Energy Astrophysical Phenomena +1508.06160 +1508.06297 Mesoscale and Nanoscale Physics +1508.06416 Phenomenology +1508.07102 Analysis of PDEs +1508.07156 Mesoscale and Nanoscale Physics +1508.07242 Materials Science +1508.07274 Differential Geometry +1508.07359 Phenomenology +1508.07441 Computational Physics +1508.07498 Dynamical Systems +1508.07707 +1508.07853 Phenomenology +1508.07860 +1508.07947 Mesoscale and Nanoscale Physics +1509.00059 Dynamical Systems +1509.00802 Theory +1509.01048 +1509.01519 Commutative Algebra +1509.01616 Probability +1509.02042 Probability +1509.02044 Populations and Evolution +1509.02097 Representation Theory +1509.02248 +1509.02336 Instrumentation and Detectors +1509.02538 High Energy Astrophysical Phenomena +1509.02791 Superconductivity +1509.02905 Phenomenology +1509.02925 +1509.03266 +1509.03359 Algebraic Topology +1509.03418 Strongly Correlated Electrons +1509.03519 Superconductivity +1509.03923 Mesoscale and Nanoscale Physics +1509.04195 Experiment +1509.04226 +1509.04231 +1509.04253 +1509.04692 Soft Condensed Matter +1509.04813 Phenomenology +1509.05254 Sound +1509.05332 Numerical Analysis +1509.05368 Superconductivity +1509.05557 +1509.05608 +1509.05708 Instrumentation and Detectors +1509.05711 Materials Science +1509.06219 Phenomenology +1509.06270 Astrophysics of Galaxies +1509.06952 +1509.06973 Theory +1509.07429 +1509.07506 Cosmology and Nongalactic Astrophysics +1509.07542 Computational Physics +1509.07592 Fluid Dynamics +1509.07781 +1509.07953 Portfolio Management +1509.08005 Mesoscale and Nanoscale Physics +1509.08151 +1509.08459 Astrophysics of Galaxies +1509.08617 Number Theory +1509.08719 Quantum Algebra +1509.08952 +1509.09025 +1509.09074 Mesoscale and Nanoscale Physics +1509.09094 Theory +1509.09144 +1509.09181 +1509.09184 Optics +1509.09284 Data Analysis, Statistics and Probability +1510.00153 Phenomenology +1510.00444 +1510.00451 Numerical Analysis +1510.00752 +1510.00762 Mesoscale and Nanoscale Physics +1510.00780 Plasma Physics +1510.00854 Phenomenology +1510.00929 Phenomenology +1510.00962 Soft Condensed Matter +1510.01062 +1510.01377 +1510.01383 Mesoscale and Nanoscale Physics +1510.01488 +1510.01660 +1510.01803 Phenomenology +1510.02327 +1510.02336 Mesoscale and Nanoscale Physics +1510.02365 Instrumentation and Detectors +1510.02465 Plasma Physics +1510.02466 Statistical Mechanics +1510.02571 Algebraic Topology +1510.02586 Materials Science +1510.02691 Analysis of PDEs +1510.02748 Dynamical Systems +1510.02804 Theory +1510.03204 +1510.03408 Classical Analysis and ODEs +1510.03414 Probability +1510.03475 Quantum Algebra +1510.03536 Space Physics +1510.03624 Strongly Correlated Electrons +1510.03962 Cosmology and Nongalactic Astrophysics +1510.04019 Mesoscale and Nanoscale Physics +1510.04304 Space Physics +1510.04345 Data Analysis, Statistics and Probability +1510.04506 +1510.04610 +1510.04665 +1510.04847 Statistical Mechanics +1510.05087 Mesoscale and Nanoscale Physics +1510.05089 Numerical Analysis +1510.05219 +1510.05239 Methodology +1510.05246 Combinatorics +1510.05254 Statistical Mechanics +1510.05595 Materials Science +1510.05629 High Energy Astrophysical Phenomena +1510.05640 Chaotic Dynamics +1510.05796 Phenomenology +1510.06049 +1510.06330 +1510.06515 +1510.06529 Mesoscale and Nanoscale Physics +1510.06933 Chaotic Dynamics +1510.07101 Materials Science +1510.07110 Plasma Physics +1510.07157 Theory +1510.07173 Analysis of PDEs +1510.07201 Fluid Dynamics +1510.07396 Phenomenology +1510.07413 +1510.07445 +1510.07457 Plasma Physics +1510.07750 Materials Science +1510.07940 Soft Condensed Matter +1510.07950 +1510.08253 +1510.08278 +1510.08523 Cosmology and Nongalactic Astrophysics +1510.08686 Phenomenology +1510.08730 +1510.08741 Plasma Physics +1510.09097 Instrumentation and Detectors +1511.00142 +1511.00173 +1511.00252 +1511.00358 +1511.00450 Phenomenology +1511.00498 Phenomenology +1511.00608 +1511.00609 +1511.00702 +1511.00712 Statistical Mechanics +1511.00870 Phenomenology +1511.01070 Theory +1511.01082 Instrumentation and Methods for Astrophysics +1511.01185 Spectral Theory +1511.01187 Phenomenology +1511.01227 Dynamical Systems +1511.01241 Analysis of PDEs +1511.01329 Phenomenology +1511.01551 +1511.01558 Discrete Mathematics +1511.01583 Materials Science +1511.01640 Artificial Intelligence +1511.01795 Social and Information Networks +1511.01816 Optimization and Control +1511.01878 Pattern Formation and Solitons +1511.01992 +1511.02015 +1511.02028 Theory +1511.02271 Phenomenology +1511.02450 Accelerator Physics +1511.02719 High Energy Astrophysical Phenomena +1511.03201 Statistical Mechanics +1511.03203 Phenomenology +1511.03231 Plasma Physics +1511.03300 Biological Physics +1511.03365 Strongly Correlated Electrons +1511.03544 Exactly Solvable and Integrable Systems +1511.03614 Phenomenology +1511.03618 +1511.03795 Soft Condensed Matter +1511.03831 Phenomenology +1511.03838 Phenomenology +1511.03874 +1511.03936 +1511.03989 +1511.04015 Phenomenology +1511.04213 Materials Science +1511.04237 Mesoscale and Nanoscale Physics +1511.04249 Cell Behavior +1511.04268 Physics and Society +1511.04421 Phenomenology +1511.04462 Materials Science +1511.04473 Phenomenology +1511.04496 +1511.04675 Quantum Gases +1511.04826 +1511.04882 Instrumentation and Detectors +1511.04959 Lattice +1511.05316 +1511.05405 Phenomenology +1511.05515 Mesoscale and Nanoscale Physics +1511.05562 Phenomenology +1511.05679 Phenomenology +1511.05852 Geophysics +1511.06203 +1511.06231 Mesoscale and Nanoscale Physics +1511.06305 Earth and Planetary Astrophysics +1511.06345 Instrumentation and Detectors +1511.06496 Materials Science +1511.06569 Combinatorics +1511.06637 Differential Geometry +1511.06826 Phenomenology +1511.07034 Theory +1511.07219 +1511.07569 Social and Information Networks +1511.07646 Mesoscale and Nanoscale Physics +1511.07661 Mesoscale and Nanoscale Physics +1511.07782 Atomic Physics +1511.07793 Mesoscale and Nanoscale Physics +1511.07818 Superconductivity +1511.07999 Quantum Gases +1511.08222 Phenomenology +1511.08334 Computer Science and Game Theory +1511.08590 Phenomenology +1511.08650 High Energy Astrophysical Phenomena +1511.08757 +1511.08761 Quantum Algebra +1511.08778 Algebraic Geometry +1511.08882 Quantum Gases +1511.08910 Data Analysis, Statistics and Probability +1511.08932 Phenomenology +1511.08988 Mesoscale and Nanoscale Physics +1511.09015 High Energy Astrophysical Phenomena +1511.09133 Materials Science +1511.09146 Lattice +1511.09219 Phenomenology +1511.09269 Mesoscale and Nanoscale Physics +1511.09331 Fluid Dynamics +1511.09461 Phenomenology +1512.00125 Superconductivity +1512.00211 Atomic and Molecular Clusters +1512.00230 +1512.00481 Data Structures and Algorithms +1512.00532 Mesoscale and Nanoscale Physics +1512.00548 Experiment +1512.00603 Atomic Physics +1512.00674 +1512.00928 Experiment +1512.01066 Materials Science +1512.01096 General Mathematics +1512.01134 Soft Condensed Matter +1512.01234 Mesoscale and Nanoscale Physics +1512.01328 Phenomenology +1512.01336 Superconductivity +1512.01640 Theory +1512.01682 +1512.01822 Mesoscale and Nanoscale Physics +1512.02092 Statistical Mechanics +1512.02099 Differential Geometry +1512.02104 Materials Science +1512.02112 Dynamical Systems +1512.02190 Phenomenology +1512.02193 Spectral Theory +1512.02313 Strongly Correlated Electrons +1512.02350 Atomic Physics +1512.02358 Chaotic Dynamics +1512.02494 Experiment +1512.02548 Computational Physics +1512.02639 +1512.02762 +1512.02770 +1512.02771 Lattice +1512.02959 Statistical Mechanics +1512.03046 +1512.03089 Physics and Society +1512.03161 Strongly Correlated Electrons +1512.03241 High Energy Astrophysical Phenomena +1512.03281 Experiment +1512.03416 +1512.03599 Experiment +1512.03612 Space Physics +1512.03676 Statistical Mechanics +1512.03763 Fluid Dynamics +1512.03767 Classical Analysis and ODEs +1512.03782 Phenomenology +1512.03799 Theory +1512.03814 Cosmology and Nongalactic Astrophysics +1512.03833 Cosmology and Nongalactic Astrophysics +1512.03890 Materials Science +1512.03905 Phenomenology +1512.03910 Statistical Mechanics +1512.04059 Mesoscale and Nanoscale Physics +1512.04151 Experiment +1512.04239 Instrumentation and Methods for Astrophysics +1512.04249 Experiment +1512.04264 Cosmology and Nongalactic Astrophysics +1512.04317 Cosmology and Nongalactic Astrophysics +1512.04322 Astrophysics of Galaxies +1512.04359 Cosmology and Nongalactic Astrophysics +1512.04414 Phenomenology +1512.04447 Solar and Stellar Astrophysics +1512.04511 High Energy Astrophysical Phenomena +1512.04547 Strongly Correlated Electrons +1512.04645 Instrumentation and Methods for Astrophysics +1512.04649 Phenomenology +1512.04669 Physics and Society +1512.04708 Phenomenology +1512.04721 +1512.04758 Phenomenology +1512.04853 Phenomenology +1512.04863 Analysis of PDEs +1512.04896 Phenomenology +1512.05029 Mesoscale and Nanoscale Physics +1512.05130 Phenomenology +1512.05145 Lattice +1512.05174 Plasma Physics +1512.05409 Instrumentation and Detectors +1512.05432 Probability +1512.05496 Experiment +1512.05536 +1512.05545 +1512.05564 Phenomenology +1512.05723 Phenomenology +1512.05916 Chaotic Dynamics +1512.06162 Instrumentation and Methods for Astrophysics +1512.06200 Strongly Correlated Electrons +1512.06225 Number Theory +1512.06254 Phenomenology +1512.06296 Populations and Evolution +1512.06302 Superconductivity +1512.06394 Quantum Gases +1512.06435 Optics +1512.06555 +1512.06575 Operator Algebras +1512.06599 +1512.06638 Phenomenology +1512.06719 Strongly Correlated Electrons +1512.06787 Phenomenology +1512.06856 Phenomenology +1512.06965 Instrumentation and Detectors +1512.07234 Statistical Mechanics +1512.07260 Phenomenology +1512.07268 Phenomenology +1512.07280 Phenomenology +1512.07303 Chaotic Dynamics +1512.07325 +1512.07406 Quantum Gases +1512.07427 +1512.07464 Statistical Mechanics +1512.07510 Mesoscale and Nanoscale Physics +1512.07601 Materials Science +1512.07814 Number Theory +1512.07837 Phenomenology +1512.07895 Phenomenology +1512.07967 +1512.07987 Phenomenology +1512.08074 Biomolecules +1512.08115 +1512.08121 Superconductivity +1512.08127 Quantum Gases +1512.08274 +1512.08328 Molecular Networks +1512.08355 High Energy Astrophysical Phenomena +1512.08380 Instrumentation and Detectors +1512.08430 +1512.08481 Instrumentation and Detectors +1512.08522 Theory +1512.08703 Superconductivity +1512.08724 Physics and Society +1512.08752 Phenomenology +1512.08890 Materials Science +1512.09018 Phenomenology +1512.09104 Physics and Society +1512.09122 Statistical Mechanics +1512.09225 Theory +1512.09237 Instrumentation and Detectors +1512.09279 +1512.09316 Superconductivity +1512.09334 Quantum Gases +1512.09351 Instrumentation and Detectors +1601.00171 Theory +1601.00223 Materials Science +1601.00244 Soft Condensed Matter +1601.00451 Atomic Physics +1601.00520 Astrophysics of Galaxies +1601.00734 +1601.00793 Strongly Correlated Electrons +1601.00817 Cosmology and Nongalactic Astrophysics +1601.00881 Information Theory +1601.00910 Fluid Dynamics +1601.01072 +1601.01223 Algebraic Geometry +1601.01327 +1601.01445 Instrumentation and Detectors +1601.01514 Materials Science +1601.01594 Lattice +1601.01716 +1601.01732 Accelerator Physics +1601.01819 Statistical Mechanics +1601.01846 Earth and Planetary Astrophysics +1601.01859 +1601.01903 Instrumentation and Detectors +1601.01939 +1601.02083 Exactly Solvable and Integrable Systems +1601.02097 +1601.02141 Soft Condensed Matter +1601.02369 Phenomenology +1601.02490 Phenomenology +1601.02503 Mesoscale and Nanoscale Physics +1601.02700 Materials Science +1601.02775 Applications +1601.02782 Superconductivity +1601.02832 High Energy Astrophysical Phenomena +1601.02853 +1601.02858 Materials Science +1601.03055 Computer Vision and Pattern Recognition +1601.03064 Chemical Physics +1601.03113 Accelerator Physics +1601.03232 Strongly Correlated Electrons +1601.03352 +1601.03394 +1601.03397 Theory +1601.03421 Space Physics +1601.03496 Instrumentation and Detectors +1601.03559 Molecular Networks +1601.03566 Phenomenology +1601.03641 Statistical Mechanics +1601.03779 Instrumentation and Detectors +1601.03888 Chemical Physics +1601.03970 Instrumentation and Detectors +1601.03974 Theory +1601.03986 Optics +1601.04142 Phenomenology +1601.04284 Phenomenology +1601.04322 High Energy Astrophysical Phenomena +1601.04405 Methodology +1601.04505 Superconductivity +1601.04544 Other Condensed Matter +1601.04597 Theory +1601.04693 High Energy Astrophysical Phenomena +1601.04804 Superconductivity +1601.04847 Accelerator Physics +1601.04851 Statistical Mechanics +1601.04867 High Energy Astrophysical Phenomena +1601.04989 +1601.04993 +1601.05004 Phenomenology +1601.05018 High Energy Astrophysical Phenomena +1601.05049 Atomic Physics +1601.05085 Astrophysics of Galaxies +1601.05104 Digital Libraries +1601.05233 Experiment +1601.05252 Algebraic Geometry +1601.05253 +1601.05307 Instrumentation and Detectors +1601.05314 Medical Physics +1601.05332 Materials Science +1601.05476 Mesoscale and Nanoscale Physics +1601.05578 +1601.05583 +1601.05598 +1601.05619 Optics +1601.05676 High Energy Astrophysical Phenomena +1601.05698 +1601.05935 Instrumentation and Detectors +1601.05979 Phenomenology +1601.06104 Rings and Algebras +1601.06165 Astrophysics of Galaxies +1601.06190 Phenomenology +1601.06250 +1601.06252 Statistical Mechanics +1601.06348 Solar and Stellar Astrophysics +1601.06582 Soft Condensed Matter +1601.06597 Materials Science +1601.06699 Instrumentation and Detectors +1601.06734 +1601.06802 High Energy Astrophysical Phenomena +1601.06863 Soft Condensed Matter +1601.06866 Earth and Planetary Astrophysics +1601.06881 Atomic Physics +1601.06976 Fluid Dynamics +1601.06981 Phenomenology +1601.07048 Instrumentation and Detectors +1601.07263 Optimization and Control +1601.07292 Mesoscale and Nanoscale Physics +1601.07384 Numerical Analysis +1601.07494 Materials Science +1601.07566 Statistical Mechanics +1601.07777 Phenomenology +1601.07831 Materials Science +1601.07926 +1601.07938 Materials Science +1601.07960 Fluid Dynamics +1601.07981 Mesoscale and Nanoscale Physics +1601.08007 Theory +1601.08204 +1601.08234 +1602.00227 Phenomenology +1602.00277 Materials Science +1602.00315 Dynamical Systems +1602.00373 Mesoscale and Nanoscale Physics +1602.00394 Numerical Analysis +1602.00445 Experiment +1602.00604 Soft Condensed Matter +1602.00671 Phenomenology +1602.00790 Quantum Gases +1602.00864 Phenomenology +1602.00876 Statistical Mechanics +1602.00898 Instrumentation and Detectors +1602.01237 Computer Vision and Pattern Recognition +1602.01238 Instrumentation and Methods for Astrophysics +1602.01310 Statistical Mechanics +1602.01402 Phenomenology +1602.01420 +1602.01499 Phenomenology +1602.01534 Mesoscale and Nanoscale Physics +1602.01667 Phenomenology +1602.01695 Soft Condensed Matter +1602.01766 Computational Physics +1602.01794 Optics +1602.01808 Physics and Society +1602.01827 Computer Vision and Pattern Recognition +1602.01839 Cosmology and Nongalactic Astrophysics +1602.01905 Statistical Mechanics +1602.02195 Rings and Algebras +1602.02254 Theory +1602.02462 Instrumentation and Detectors +1602.02469 +1602.02494 Quantum Gases +1602.02532 +1602.02578 Lattice +1602.02621 Instrumentation and Methods for Astrophysics +1602.02689 Accelerator Physics +1602.02766 Phenomenology +1602.02813 +1602.03003 Phenomenology +1602.03065 Statistical Mechanics +1602.03204 Earth and Planetary Astrophysics +1602.03215 +1602.03268 Materials Science +1602.03317 Optics +1602.03460 +1602.03477 Statistical Mechanics +1602.03491 +1602.03737 Phenomenology +1602.03792 Phenomenology +1602.03800 +1602.03844 +1602.03863 +1602.03935 Computer Vision and Pattern Recognition +1602.03991 Experiment +1602.04016 +1602.04110 Physics and Society +1602.04125 Logic +1602.04320 +1602.04470 Biomolecules +1602.04624 Statistical Mechanics +1602.04641 Fluid Dynamics +1602.04710 High Energy Astrophysical Phenomena +1602.04771 +1602.04958 Optics +1602.05075 Phenomenology +1602.05283 Theory +1602.05366 Quantum Gases +1602.05385 Statistical Finance +1602.05490 Materials Science +1602.05528 Statistical Mechanics +1602.05827 +1602.05902 Cosmology and Nongalactic Astrophysics +1602.06047 +1602.06204 Materials Science +1602.06350 Solar and Stellar Astrophysics +1602.06503 Phenomenology +1602.06545 Phenomenology +1602.06575 +1602.06640 +1602.06679 +1602.06689 Statistical Mechanics +1602.06846 Instrumentation and Detectors +1602.07005 Strongly Correlated Electrons +1602.07154 Data Structures and Algorithms +1602.07288 +1602.07333 +1602.07410 Solar and Stellar Astrophysics +1602.07623 Performance +1602.07697 Phenomenology +1602.07864 Phenomenology +1602.07883 Soft Condensed Matter +1602.07914 Cosmology and Nongalactic Astrophysics +1602.07972 Solar and Stellar Astrophysics +1602.07981 +1602.08224 High Energy Astrophysical Phenomena +1602.08322 Materials Science +1602.08333 General Physics +1602.08398 +1602.08478 Solar and Stellar Astrophysics +1602.08493 Theory +1602.08569 Atomic Physics +1602.08589 Theory +1602.08691 Disordered Systems and Neural Networks +1602.08695 Materials Science +1602.08722 High Energy Astrophysical Phenomena +1602.08764 Instrumentation and Methods for Astrophysics +1602.08795 Instrumentation and Methods for Astrophysics +1603.00152 +1603.00261 Chemical Physics +1603.00265 Disordered Systems and Neural Networks +1603.00425 Superconductivity +1603.00434 Quantum Gases +1603.00478 Lattice +1603.00496 Optics +1603.00561 Chemical Physics +1603.00710 Soft Condensed Matter +1603.00843 Strongly Correlated Electrons +1603.00901 Strongly Correlated Electrons +1603.01057 Statistical Mechanics +1603.01089 Chaotic Dynamics +1603.01153 Solar and Stellar Astrophysics +1603.01188 Strongly Correlated Electrons +1603.01272 Earth and Planetary Astrophysics +1603.01307 Materials Science +1603.01418 High Energy Astrophysical Phenomena +1603.01456 Pattern Formation and Solitons +1603.01567 Instrumentation and Detectors +1603.01613 Earth and Planetary Astrophysics +1603.01652 Instrumentation and Detectors +1603.01658 Chemical Physics +1603.01667 Plasma Physics +1603.01805 +1603.01834 Mesoscale and Nanoscale Physics +1603.01918 High Energy Astrophysical Phenomena +1603.02001 Phenomenology +1603.02089 +1603.02159 Theory +1603.02196 Earth and Planetary Astrophysics +1603.02249 Phenomenology +1603.02436 Soft Condensed Matter +1603.02462 Phenomenology +1603.02694 Strongly Correlated Electrons +1603.02800 Phenomenology +1603.02831 Materials Science +1603.02873 Materials Science +1603.03186 Soft Condensed Matter +1603.03279 Plasma Physics +1603.03285 Chemical Physics +1603.03338 Theory +1603.03420 Optics +1603.03441 Astrophysics of Galaxies +1603.03476 Mesoscale and Nanoscale Physics +1603.03636 Mesoscale and Nanoscale Physics +1603.03672 +1603.03730 Phenomenology +1603.03859 Solar and Stellar Astrophysics +1603.03920 Strongly Correlated Electrons +1603.04038 Materials Science +1603.04062 Chemical Physics +1603.04075 +1603.04089 Atomic Physics +1603.04102 Astrophysics of Galaxies +1603.04120 High Energy Astrophysical Phenomena +1603.04232 Plasma Physics +1603.04479 Phenomenology +1603.04582 Computational Geometry +1603.04616 Solar and Stellar Astrophysics +1603.04631 Phenomenology +1603.04646 +1603.04801 Theory +1603.04960 +1603.04995 High Energy Astrophysical Phenomena +1603.05252 Phenomenology +1603.05268 Optics +1603.05304 Phenomenology +1603.05454 +1603.05455 Soft Condensed Matter +1603.05478 Materials Science +1603.05555 High Energy Astrophysical Phenomena +1603.05564 Soft Condensed Matter +1603.05712 Earth and Planetary Astrophysics +1603.05820 +1603.05832 High Energy Astrophysical Phenomena +1603.05852 Phenomenology +1603.06054 Superconductivity +1603.06147 Computation and Language +1603.06209 Statistical Mechanics +1603.06242 Phenomenology +1603.06268 Earth and Planetary Astrophysics +1603.06407 Economics +1603.06492 +1603.06588 Disordered Systems and Neural Networks +1603.06662 Mesoscale and Nanoscale Physics +1603.06690 High Energy Astrophysical Phenomena +1603.06720 Phenomenology +1603.06794 Plasma Physics +1603.06815 Physics and Society +1603.06841 Phenomenology +1603.06973 High Energy Astrophysical Phenomena +1603.06975 Computational Physics +1603.07101 Theory +1603.07561 +1603.07665 Strongly Correlated Electrons +1603.07784 Mesoscale and Nanoscale Physics +1603.07906 Algebraic Topology +1603.07908 Phenomenology +1603.08040 Solar and Stellar Astrophysics +1603.08277 Fluid Dynamics +1603.08302 +1603.08325 Exactly Solvable and Integrable Systems +1603.08353 Solar and Stellar Astrophysics +1603.08356 Mesoscale and Nanoscale Physics +1603.08466 Superconductivity +1603.08484 Instrumentation and Methods for Astrophysics +1603.08521 Astrophysics of Galaxies +1603.08523 Instrumentation and Methods for Astrophysics +1603.08672 Solar and Stellar Astrophysics +1603.08696 Phenomenology +1603.08725 Atomic Physics +1603.08803 Chaotic Dynamics +1603.08941 Astrophysics of Galaxies +1603.09161 Solar and Stellar Astrophysics +1603.09172 Phenomenology +1603.09175 +1603.09177 Astrophysics of Galaxies +1603.09307 Solar and Stellar Astrophysics +1603.09347 Phenomenology +1603.09353 +1603.09393 Optics +1603.09467 Theory +1603.09544 Instrumentation and Detectors +1603.09554 Lattice +1603.09681 Strongly Correlated Electrons +1604.00021 Mesoscale and Nanoscale Physics +1604.00034 Astrophysics of Galaxies +1604.00244 Superconductivity +1604.00249 Mesoscale and Nanoscale Physics +1604.00744 Phenomenology +1604.00778 High Energy Astrophysical Phenomena +1604.00807 Fluid Dynamics +1604.00826 Analysis of PDEs +1604.00859 Earth and Planetary Astrophysics +1604.01003 Theory +1604.01085 Strongly Correlated Electrons +1604.01114 Strongly Correlated Electrons +1604.01137 +1604.01193 Phenomenology +1604.01208 Astrophysics of Galaxies +1604.01245 Phenomenology +1604.01291 Earth and Planetary Astrophysics +1604.01394 +1604.01407 Astrophysics of Galaxies +1604.01546 Solar and Stellar Astrophysics +1604.01572 Instrumentation and Detectors +1604.01776 Phenomenology +1604.02045 Disordered Systems and Neural Networks +1604.02055 Solar and Stellar Astrophysics +1604.02095 Solar and Stellar Astrophysics +1604.02191 Phenomenology +1604.02226 Strongly Correlated Electrons +1604.02301 Biological Physics +1604.02338 Astrophysics of Galaxies +1604.02353 Astrophysics of Galaxies +1604.02373 Data Analysis, Statistics and Probability +1604.02379 +1604.02416 Artificial Intelligence +1604.02472 High Energy Astrophysical Phenomena +1604.02591 Mesoscale and Nanoscale Physics +1604.02632 +1604.02664 Mesoscale and Nanoscale Physics +1604.02685 +1604.02868 Plasma Physics +1604.02869 Mesoscale and Nanoscale Physics +1604.02895 Astrophysics of Galaxies +1604.02972 High Energy Astrophysical Phenomena +1604.03116 Solar and Stellar Astrophysics +1604.03194 Materials Science +1604.03197 +1604.03206 Symplectic Geometry +1604.03369 Earth and Planetary Astrophysics +1604.03516 Cosmology and Nongalactic Astrophysics +1604.03561 Theory +1604.03576 Statistical Mechanics +1604.03730 Theory +1604.04034 Mesoscale and Nanoscale Physics +1604.04075 Atomic Physics +1604.04088 Soft Condensed Matter +1604.04151 Solar and Stellar Astrophysics +1604.04327 Computer Vision and Pattern Recognition +1604.04409 Optics +1604.04456 +1604.04538 Solar and Stellar Astrophysics +1604.04607 Solar and Stellar Astrophysics +1604.04714 Numerical Analysis +1604.04814 Solar and Stellar Astrophysics +1604.04925 +1604.04959 Solar and Stellar Astrophysics +1604.05030 Materials Science +1604.05168 +1604.05425 Differential Geometry +1604.05457 Atomic Physics +1604.05496 Solar and Stellar Astrophysics +1604.05618 Solar and Stellar Astrophysics +1604.05687 Solar and Stellar Astrophysics +1604.05735 Solar and Stellar Astrophysics +1604.05941 Solar and Stellar Astrophysics +1604.05961 History and Philosophy of Physics +1604.06021 Numerical Analysis +1604.06091 Earth and Planetary Astrophysics +1604.06100 Phenomenology +1604.06104 Astrophysics of Galaxies +1604.06189 High Energy Astrophysical Phenomena +1604.06251 Mesoscale and Nanoscale Physics +1604.06291 +1604.06391 Phenomenology +1604.06541 Materials Science +1604.06553 Information Theory +1604.06701 Solar and Stellar Astrophysics +1604.06797 Astrophysics of Galaxies +1604.07238 Materials Science +1604.07323 Earth and Planetary Astrophysics +1604.07361 Computer Vision and Pattern Recognition +1604.07424 Earth and Planetary Astrophysics +1604.07527 +1604.07536 Phenomenology +1604.07713 Computational Physics +1604.07742 +1604.07802 Materials Science +1604.07982 Solar and Stellar Astrophysics +1604.08011 Chemical Physics +1604.08035 Pattern Formation and Solitons +1604.08062 Analysis of PDEs +1604.08129 +1604.08278 Biomolecules +1604.08292 Instrumentation and Detectors +1604.08312 Numerical Analysis +1604.08328 Phenomenology +1604.08415 Astrophysics of Galaxies +1604.08422 Theory +1604.08520 Mesoscale and Nanoscale Physics +1604.08578 Cosmology and Nongalactic Astrophysics +1604.08816 Physics and Society +1604.08883 Fluid Dynamics +1604.08932 +1605.00099 Mesoscale and Nanoscale Physics +1605.00238 +1605.00340 Solar and Stellar Astrophysics +1605.00483 High Energy Astrophysical Phenomena +1605.00523 Phenomenology +1605.00653 Solar and Stellar Astrophysics +1605.00720 Theory +1605.00969 +1605.00984 Soft Condensed Matter +1605.01295 Other Condensed Matter +1605.01468 High Energy Astrophysical Phenomena +1605.01500 Soft Condensed Matter +1605.01567 Solar and Stellar Astrophysics +1605.01579 +1605.01609 Statistical Mechanics +1605.01707 High Energy Astrophysical Phenomena +1605.01724 High Energy Astrophysical Phenomena +1605.01786 Physics Education +1605.01809 Dynamical Systems +1605.02016 High Energy Astrophysical Phenomena +1605.02051 Cryptography and Security +1605.02104 Mesoscale and Nanoscale Physics +1605.02162 Number Theory +1605.02192 Probability +1605.02236 Theory +1605.02308 General Physics +1605.02316 +1605.02336 +1605.02359 Solar and Stellar Astrophysics +1605.02381 Strongly Correlated Electrons +1605.02399 +1605.02449 Strongly Correlated Electrons +1605.02459 Plasma Physics +1605.02529 Software Engineering +1605.02564 High Energy Astrophysical Phenomena +1605.02565 General Physics +1605.02695 Superconductivity +1605.02699 Computer Vision and Pattern Recognition +1605.02744 Earth and Planetary Astrophysics +1605.02872 Astrophysics of Galaxies +1605.02939 +1605.02947 Physics and Society +1605.02957 Solar and Stellar Astrophysics +1605.03011 Soft Condensed Matter +1605.03049 Solar and Stellar Astrophysics +1605.03073 High Energy Astrophysical Phenomena +1605.03287 +1605.03336 Solar and Stellar Astrophysics +1605.03341 Strongly Correlated Electrons +1605.03362 Mesoscale and Nanoscale Physics +1605.03447 Differential Geometry +1605.03461 Instrumentation and Detectors +1605.03517 Optics +1605.03528 Strongly Correlated Electrons +1605.03588 High Energy Astrophysical Phenomena +1605.03676 Strongly Correlated Electrons +1605.03852 Computation and Language +1605.03913 Mesoscale and Nanoscale Physics +1605.03968 Solar and Stellar Astrophysics +1605.03972 Mesoscale and Nanoscale Physics +1605.04202 High Energy Astrophysical Phenomena +1605.04225 Plasma Physics +1605.04647 Superconductivity +1605.04879 Statistical Mechanics +1605.04905 High Energy Astrophysical Phenomena +1605.04921 Theory +1605.04927 Astrophysics of Galaxies +1605.05012 Strongly Correlated Electrons +1605.05033 +1605.05048 +1605.05064 Earth and Planetary Astrophysics +1605.05107 Strongly Correlated Electrons +1605.05161 Statistical Mechanics +1605.05200 Solar and Stellar Astrophysics +1605.05262 Solar and Stellar Astrophysics +1605.05330 Solar and Stellar Astrophysics +1605.05504 Solar and Stellar Astrophysics +1605.05539 Materials Science +1605.05605 Astrophysics of Galaxies +1605.05712 Numerical Analysis +1605.05749 Phenomenology +1605.05849 High Energy Astrophysical Phenomena +1605.05866 +1605.05897 Materials Science +1605.05902 +1605.05905 +1605.06237 +1605.06291 Earth and Planetary Astrophysics +1605.06386 Physics and Society +1605.06409 Computer Vision and Pattern Recognition +1605.06464 +1605.06524 +1605.06545 Plasma Physics +1605.06689 Operator Algebras +1605.06842 Superconductivity +1605.06879 Earth and Planetary Astrophysics +1605.06890 Superconductivity +1605.06895 Astrophysics of Galaxies +1605.06919 +1605.07122 Materials Science +1605.07300 Astrophysics of Galaxies +1605.07502 +1605.07602 Chemical Physics +1605.07677 Solar and Stellar Astrophysics +1605.07710 +1605.07764 Earth and Planetary Astrophysics +1605.07815 Quantum Gases +1605.07829 Graphics +1605.07852 Information Retrieval +1605.08008 Phenomenology +1605.08138 Phenomenology +1605.08223 Cosmology and Nongalactic Astrophysics +1605.08286 +1605.08314 Biological Physics +1605.08528 Strongly Correlated Electrons +1605.08553 Populations and Evolution +1605.08773 Astrophysics of Galaxies +1605.08837 Phenomenology +1605.08905 Discrete Mathematics +1605.08991 High Energy Astrophysical Phenomena +1605.09121 +1605.09267 Solar and Stellar Astrophysics +1605.09778 +1606.00011 Combinatorics +1606.00088 Quantum Gases +1606.00140 Astrophysics of Galaxies +1606.00145 Mesoscale and Nanoscale Physics +1606.00401 Human-Computer Interaction +1606.00477 Optics +1606.00485 +1606.00727 Superconductivity +1606.00975 Optics +1606.01082 Rings and Algebras +1606.01248 High Energy Astrophysical Phenomena +1606.01306 +1606.01327 Optimization and Control +1606.01429 +1606.01439 Physics and Society +1606.01748 Probability +1606.01763 Logic +1606.01785 Earth and Planetary Astrophysics +1606.02000 Phenomenology +1606.02089 Mesoscale and Nanoscale Physics +1606.02164 +1606.02306 +1606.02731 Solar and Stellar Astrophysics +1606.02747 Complex Variables +1606.02847 Materials Science +1606.02912 Mesoscale and Nanoscale Physics +1606.03040 Strongly Correlated Electrons +1606.03299 Quantum Gases +1606.03755 Probability +1606.03760 Phenomenology +1606.03783 Information Retrieval +1606.03881 Number Theory +1606.04134 Dynamical Systems +1606.04179 Materials Science +1606.04356 +1606.04405 Information Theory +1606.04697 Mesoscale and Nanoscale Physics +1606.04788 Phenomenology +1606.04896 Applications +1606.04922 Solar and Stellar Astrophysics +1606.04944 +1606.05340 Machine Learning +1606.05421 +1606.05549 Earth and Planetary Astrophysics +1606.05667 History and Philosophy of Physics +1606.05685 Machine Learning +1606.05854 Computation and Language +1606.05869 Accelerator Physics +1606.05912 Populations and Evolution +1606.05919 Materials Science +1606.05957 Combinatorics +1606.06151 Combinatorics +1606.06159 Social and Information Networks +1606.06197 Sound +1606.06282 +1606.06283 Materials Science +1606.06284 Applications +1606.06285 +1606.06287 Operator Algebras +1606.06290 High Energy Astrophysical Phenomena +1606.06299 Astrophysics of Galaxies +1606.06302 +1606.06306 Theory +1606.06308 Dynamical Systems +1606.06309 Phenomenology +1606.06310 Numerical Analysis +1606.06311 Mathematical Software +1606.06316 Networking and Internet Architecture +1606.06317 +1606.06318 Optimization and Control +1606.06319 +1606.06323 Populations and Evolution +1606.06325 Number Theory +1606.06328 Methodology +1606.06332 Materials Science +1606.06333 Combinatorics +1606.06340 Probability +1606.06343 Social and Information Networks +1606.06347 Materials Science +1606.06349 Astrophysics of Galaxies +1606.06350 Phenomenology +1606.06352 Machine Learning +1606.06353 Logic +1606.06355 Artificial Intelligence +1606.06356 Social and Information Networks +1606.06357 Artificial Intelligence +1606.06361 Computation and Language +1606.06362 Number Theory +1606.06363 Materials Science +1606.06365 Popular Physics +1606.06366 Machine Learning +1606.06369 Cryptography and Security +1606.06373 Fluid Dynamics +1606.06374 Instrumentation and Methods for Astrophysics +1606.06376 Logic in Computer Science +1606.06377 Machine Learning +1606.06378 Programming Languages +1606.06379 Programming Languages +1606.06380 Programming Languages +1606.06381 Programming Languages +1606.06382 Programming Languages +1606.06384 Logic in Computer Science +1606.06385 Logic in Computer Science +1606.06386 Logic in Computer Science +1606.06387 Logic in Computer Science +1606.06388 Numerical Analysis +1606.06390 Number Theory +1606.06392 Analysis of PDEs +1606.06395 Data Structures and Algorithms +1606.06396 Number Theory +1606.06399 Discrete Mathematics +1606.06401 Adaptation and Self-Organizing Systems +1606.06402 Strongly Correlated Electrons +1606.06404 Geometric Topology +1606.06406 Computation and Language +1606.06407 Theory +1606.06410 Quantum Gases +1606.06411 Probability +1606.06417 Logic +1606.06419 +1606.06421 Optimization and Control +1606.06422 Logic in Computer Science +1606.06423 Applications +1606.06424 Information Retrieval +1606.06427 Optimization and Control +1606.06428 Information Theory +1606.06429 Differential Geometry +1606.06432 Soft Condensed Matter +1606.06434 Artificial Intelligence +1606.06435 Mesoscale and Nanoscale Physics +1606.06437 Computer Vision and Pattern Recognition +1606.06439 Machine Learning +1606.06440 Analysis of PDEs +1606.06444 Representation Theory +1606.06445 Materials Science +1606.06447 Social and Information Networks +1606.06449 Complex Variables +1606.06450 Social and Information Networks +1606.06451 Hardware Architecture +1606.06452 Hardware Architecture +1606.06453 Probability +1606.06454 Hardware Architecture +1606.06457 Hardware Architecture +1606.06459 Statistics Theory +1606.06460 Hardware Architecture +1606.06464 Analysis of PDEs +1606.06466 Mesoscale and Nanoscale Physics +1606.06473 Probability +1606.06475 Numerical Analysis +1606.06478 Commutative Algebra +1606.06482 Number Theory +1606.06483 Hardware Architecture +1606.06487 Statistical Mechanics +1606.06488 Computational Geometry +1606.06489 Analysis of PDEs +1606.06491 Geometric Topology +1606.06492 Earth and Planetary Astrophysics +1606.06500 Analysis of PDEs +1606.06501 Statistical Mechanics +1606.06504 Information Theory +1606.06507 +1606.06508 Computational Geometry +1606.06510 Computer Science and Game Theory +1606.06511 Numerical Analysis +1606.06512 Systems and Control +1606.06513 Emerging Technologies +1606.06514 Mesoscale and Nanoscale Physics +1606.06515 Theory +1606.06517 Algebraic Geometry +1606.06518 Probability +1606.06519 Statistics Theory +1606.06521 Applications +1606.06522 Methodology +1606.06523 Mesoscale and Nanoscale Physics +1606.06524 Atomic Physics +1606.06526 High Energy Astrophysical Phenomena +1606.06530 Cryptography and Security +1606.06532 Combinatorics +1606.06534 Plasma Physics +1606.06535 Number Theory +1606.06536 Probability +1606.06539 Computer Vision and Pattern Recognition +1606.06541 Numerical Analysis +1606.06542 Phenomenology +1606.06543 Distributed, Parallel, and Cluster Computing +1606.06547 Combinatorics +1606.06548 K-Theory and Homology +1606.06551 Representation Theory +1606.06553 Complex Variables +1606.06556 Numerical Analysis +1606.06557 Logic in Computer Science +1606.06562 Applications +1606.06563 Soft Condensed Matter +1606.06564 Learning +1606.06566 Data Structures and Algorithms +1606.06568 Astrophysics of Galaxies +1606.06569 Differential Geometry +1606.06572 Commutative Algebra +1606.06573 +1606.06574 Materials Science +1606.06575 Analysis of PDEs +1606.06576 Information Theory +1606.06577 Combinatorics +1606.06580 Computer Science and Game Theory +1606.06581 Computational Complexity +1606.06582 Learning +1606.06587 Solar and Stellar Astrophysics +1606.06588 Robotics +1606.06590 +1606.06593 Distributed, Parallel, and Cluster Computing +1606.06594 Biological Physics +1606.06599 Soft Condensed Matter +1606.06602 Probability +1606.06604 Computational Physics +1606.06606 Strongly Correlated Electrons +1606.06607 Logic +1606.06610 Theory +1606.06612 Experiment +1606.06613 Numerical Analysis +1606.06620 Combinatorics +1606.06623 Computation and Language +1606.06628 Algebraic Geometry +1606.06629 Distributed, Parallel, and Cluster Computing +1606.06633 Applications +1606.06636 Data Structures and Algorithms +1606.06637 +1606.06640 Computation and Language +1606.06644 Cryptography and Security +1606.06645 Methodology +1606.06648 Numerical Analysis +1606.06649 Materials Science +1606.06650 Computer Vision and Pattern Recognition +1606.06653 Learning +1606.06655 Probability +1606.06659 Computation +1606.06660 Computational Geometry +1606.06661 +1606.06662 Numerical Analysis +1606.06664 Computer Science and Game Theory +1606.06667 Soft Condensed Matter +1606.06670 Phenomenology +1606.06672 Superconductivity +1606.06680 Geometric Topology +1606.06682 Systems and Control +1606.06683 Fluid Dynamics +1606.06685 Operator Algebras +1606.06692 Information Theory +1606.06697 Accelerator Physics +1606.06699 Systems and Control +1606.06701 Rings and Algebras +1606.06704 Software Engineering +1606.06705 Functional Analysis +1606.06706 Analysis of PDEs +1606.06710 Computation and Language +1606.06711 Materials Science +1606.06714 Complex Variables +1606.06715 Instrumentation and Detectors +1606.06717 Metric Geometry +1606.06721 Functional Analysis +1606.06725 Fluid Dynamics +1606.06728 Astrophysics of Galaxies +1606.06729 Earth and Planetary Astrophysics +astro-ph/0702731 +cond-mat/0207635 Strongly Correlated Electrons +math/0609217 Classical Analysis and ODEs +1004.2717 Logic in Computer Science +1008.3111 +1012.3800 Theory +1103.2938 +1108.3582 Differential Geometry +1111.2626 Computer Science and Game Theory +1111.7045 Theory +1201.0663 +1203.1601 Differential Geometry +1205.2186 Differential Geometry +1212.5319 Theory +1303.6686 Physics and Society +1306.5718 Methodology +1306.6154 Strongly Correlated Electrons +1309.2118 Differential Geometry +1309.6235 +1310.6931 Differential Geometry +1401.2829 Plasma Physics +1402.0298 Probability +1402.2925 Systems and Control +1402.5723 Methodology +1404.0421 Metric Geometry +1404.4601 Applications +1404.6943 High Energy Astrophysical Phenomena +1405.1940 +1406.0361 +1406.3307 Logic +1406.3671 Networking and Internet Architecture +1408.3779 +1409.1851 Classical Analysis and ODEs +1410.3544 Metric Geometry +1410.4891 Differential Geometry +1410.7006 Differential Geometry +1411.7916 Neurons and Cognition +1412.3115 Solar and Stellar Astrophysics +1412.4046 Complex Variables +1412.6783 Logic +1412.7852 Mesoscale and Nanoscale Physics +1412.8024 Algebraic Geometry +1501.01579 Systems and Control +1501.01856 Materials Science +1501.02559 Statistics Theory +1501.02629 Machine Learning +1502.04135 +1503.03836 Phenomenology +1503.07597 Metric Geometry +1503.08237 Information Theory +1503.08248 Information Retrieval +1504.01626 General Topology +1505.01241 Theory +1506.00194 Information Theory +1506.01067 Phenomenology +1506.02039 Earth and Planetary Astrophysics +1506.02322 +1506.02690 Learning +1506.04059 Formal Languages and Automata Theory +1507.00611 +1507.01031 Probability +1507.02284 Machine Learning +1507.02414 Discrete Mathematics +1507.04736 Differential Geometry +1507.06098 Quantum Algebra +1507.06172 +1507.06396 Information Theory +1507.07041 Quantum Algebra +1508.02709 Theory +1508.04877 Materials Science +1508.06919 Probability +1509.00381 +1509.01237 +1509.01265 +1509.01567 Quantum Algebra +1509.03280 Statistical Mechanics +1509.03774 Logic +1510.01007 Strongly Correlated Electrons +1510.01565 Experiment +1510.02858 +1510.03073 Soft Condensed Matter +1510.03266 Instrumentation and Detectors +1510.04481 Quantum Gases +1510.04559 Quantum Gases +1510.05352 Strongly Correlated Electrons +1510.06235 Materials Science +1510.08048 Algebraic Geometry +1510.08410 Spectral Theory +1511.00944 Solar and Stellar Astrophysics +1511.03316 +1511.04497 Earth and Planetary Astrophysics +1511.04918 Strongly Correlated Electrons +1511.05462 Logic +1511.05992 Cosmology and Nongalactic Astrophysics +1511.06131 Number Theory +1511.06728 Computer Vision and Pattern Recognition +1511.07827 Neurons and Cognition +1512.00612 Phenomenology +1512.01720 Combinatorics +1512.02872 Statistical Mechanics +1512.05355 Phenomenology +1512.05539 +1512.06563 Statistical Mechanics +1512.06869 Physics Education +1512.08674 +1601.00292 Numerical Analysis +1601.00836 Phenomenology +1601.02217 Dynamical Systems +1601.02973 Superconductivity +1601.03299 Mesoscale and Nanoscale Physics +1601.03957 Probability +1601.04876 Logic +1601.05835 Statistics Theory +1601.07003 Superconductivity +1602.00784 Dynamical Systems +1602.01188 +1602.02706 Learning +1602.03841 +1602.06760 Commutative Algebra +1602.08584 Representation Theory +1603.00957 Computation and Language +1603.01966 Mesoscale and Nanoscale Physics +1603.02518 Computer Vision and Pattern Recognition +1603.03323 Materials Science +1603.04054 Biomolecules +1603.05386 Computational Physics +1603.05986 Mesoscale and Nanoscale Physics +1603.06059 Computation and Language +1603.07294 Learning +1603.08677 Disordered Systems and Neural Networks +1603.08786 Phenomenology +1604.01333 Optics +1604.01674 Quantitative Methods +1604.02110 Theory +1604.02388 Computer Vision and Pattern Recognition +1604.02663 Fluid Dynamics +1604.03025 Phenomenology +1604.04503 +1604.07342 Computer Vision and Pattern Recognition +1604.08172 Space Physics +1605.00267 Optimization and Control +1605.00688 Fluid Dynamics +1605.02029 Computer Vision and Pattern Recognition +1605.03780 Representation Theory +1605.05155 Cosmology and Nongalactic Astrophysics +1605.06033 Representation Theory +1605.06157 Earth and Planetary Astrophysics +1605.06270 Theory +1605.06914 Computer Vision and Pattern Recognition +1605.06937 Cellular Automata and Lattice Gases +1605.07658 Fluid Dynamics +1605.07682 Strongly Correlated Electrons +1605.08595 Dynamical Systems +1605.08599 Dynamical Systems +1605.08804 Probability +1606.00547 Methodology +1606.00568 Optics +1606.00779 Operator Algebras +1606.00846 +1606.01323 Computation and Language +1606.02307 Machine Learning +1606.02347 Software Engineering +1606.02376 Differential Geometry +1606.02421 Machine Learning +1606.02582 Plasma Physics +1606.02596 Computational Physics +1606.02608 Learning +1606.02709 Materials Science +1606.02710 Artificial Intelligence +1606.02711 Human-Computer Interaction +1606.02712 +1606.02714 Astrophysics of Galaxies +1606.02716 Phenomenology +1606.02734 +1606.02736 Robotics +1606.02737 Biomolecules +1606.02738 Distributed, Parallel, and Cluster Computing +1606.02746 Atomic Physics +1606.02748 Economics +1606.02749 Accelerator Physics +1606.02750 Complex Variables +1606.02753 Computer Vision and Pattern Recognition +1606.02754 +1606.02759 Chemical Physics +1606.02760 Algebraic Geometry +1606.02763 Information Theory +1606.02764 Materials Science +1606.02765 Neurons and Cognition +1606.02770 Mesoscale and Nanoscale Physics +1606.02773 Numerical Analysis +1606.02774 Instrumentation and Detectors +1606.02777 Analysis of PDEs +1606.02779 Dynamical Systems +1606.02780 Functional Analysis +1606.02781 High Energy Astrophysical Phenomena +1606.02782 Pattern Formation and Solitons +1606.02785 Computation and Language +1606.02786 Data Structures and Algorithms +1606.02787 Functional Analysis +1606.02788 Geometric Topology +1606.02789 Quantum Algebra +1606.02790 Analysis of PDEs +1606.02791 Functional Analysis +1606.02793 Analysis of PDEs +1606.02794 Probability +1606.02795 Probability +1606.02796 Chemical Physics +1606.02800 Dynamical Systems +1606.02801 Quantitative Methods +1606.02803 Number Theory +1606.02805 +1606.02807 Human-Computer Interaction +1606.02808 Dynamical Systems +1606.02809 Information Theory +1606.02811 Computer Vision and Pattern Recognition +1606.02812 +1606.02818 Mesoscale and Nanoscale Physics +1606.02827 Machine Learning +1606.02828 Information Theory +1606.02829 Soft Condensed Matter +1606.02831 Networking and Internet Architecture +1606.02835 Astrophysics of Galaxies +1606.02837 Populations and Evolution +1606.02838 Learning +1606.02842 Materials Science +1606.02844 Geometric Topology +1606.02845 Symbolic Computation +1606.02848 Probability +1606.02849 Information Theory +1606.02850 Fluid Dynamics +1606.02851 Astrophysics of Galaxies +1606.02854 Learning +1606.02860 Molecular Networks +1606.02861 Computer Vision and Pattern Recognition +1606.02863 Analysis of PDEs +1606.02866 Information Theory +1606.02870 Mesoscale and Nanoscale Physics +1606.02873 Optimization and Control +1606.02874 Number Theory +1606.02877 Robotics +1606.02879 Formal Languages and Automata Theory +1606.02881 Astrophysics of Galaxies +1606.02882 Software Engineering +1606.02889 Data Structures and Algorithms +1606.02894 Computer Vision and Pattern Recognition +1606.02898 Analysis of PDEs +1606.02899 Artificial Intelligence +1606.02902 Optics +1606.02903 Software Engineering +1606.02905 Algebraic Topology +1606.02909 Computer Vision and Pattern Recognition +1606.02913 Classical Analysis and ODEs +1606.02915 Phenomenology +1606.02917 Cell Behavior +1606.02918 Dynamical Systems +1606.02919 Optimization and Control +1606.02926 Combinatorics +1606.02928 Combinatorics +1606.02930 Instrumentation and Methods for Astrophysics +1606.02931 Methodology +1606.02938 Mesoscale and Nanoscale Physics +1606.02939 Probability +1606.02940 Functional Analysis +1606.02942 Networking and Internet Architecture +1606.02948 General Physics +1606.02954 General Physics +1606.02958 Combinatorics +1606.02963 Materials Science +1606.02974 Algebraic Geometry +1606.02976 Information Retrieval +1606.02977 Biological Physics +1606.02978 Combinatorics +1606.02985 Mesoscale and Nanoscale Physics +1606.02989 Probability +1606.02992 Dynamical Systems +1606.02995 Cryptography and Security +1606.03000 Information Theory +1606.03001 Probability +1606.03002 Neural and Evolutionary Computing +1606.03005 +1606.03006 +1606.03010 +1606.03014 Computer Vision and Pattern Recognition +1606.03017 Materials Science +1606.03021 Computer Vision and Pattern Recognition +1606.03023 Exactly Solvable and Integrable Systems +1606.03024 High Energy Astrophysical Phenomena +1606.03025 Optimization and Control +1606.03027 Instrumentation and Detectors +1606.03029 Dynamical Systems +1606.03031 Space Physics +1606.03032 Numerical Analysis +1606.03035 Cosmology and Nongalactic Astrophysics +1606.03041 Analysis of PDEs +1606.03043 High Energy Astrophysical Phenomena +1606.03044 Sound +1606.03045 Dynamical Systems +1606.03049 Number Theory +1606.03051 Instrumentation and Detectors +1606.03052 Physics Education +1606.03054 Instrumentation and Detectors +1606.03055 Information Theory +1606.03058 Astrophysics of Galaxies +1606.03059 Populations and Evolution +1606.03062 Computer Science and Game Theory +1606.03063 Neurons and Cognition +1606.03064 Group Theory +1606.03065 Geophysics +1606.03066 Information Retrieval +1606.03076 Probability +1606.03077 Data Structures and Algorithms +1606.03078 Differential Geometry +1606.03084 +astro-ph/0307543 +cond-mat/0608345 Materials Science +hep-ph/9712526 Phenomenology +0801.3741 Analysis of PDEs +0804.0403 Metric Geometry +0909.5648 Number Theory +1002.2061 +1006.4872 Probability +1007.0021 Combinatorics +1010.2902 Combinatorics +1102.3785 Representation Theory +1105.2232 Superconductivity +1105.5777 Representation Theory +1106.3979 Group Theory +1109.4501 Representation Theory +1109.5540 Algebraic Geometry +1204.3365 Combinatorics +1204.4107 Neural and Evolutionary Computing +1207.6236 Representation Theory +1207.6938 Differential Geometry +1208.6582 High Energy Astrophysical Phenomena +1210.6602 Representation Theory +1210.7163 Dynamical Systems +1212.3420 Probability +1301.2548 Representation Theory +1301.6430 Classical Analysis and ODEs +1302.1732 Chaotic Dynamics +1303.3261 Operator Algebras +1304.5506 Theory +1305.3543 Algebraic Geometry +1305.3899 Probability +1305.6526 Machine Learning +1307.1331 +1307.5321 Computational Complexity +1308.0310 Probability +1308.0521 Probability +1308.0919 Solar and Stellar Astrophysics +1309.0034 Superconductivity +1309.0496 Algebraic Geometry +1309.0861 Networking and Internet Architecture +1309.1808 Category Theory +1309.2896 Statistics Theory +1309.3445 Formal Languages and Automata Theory +1309.4329 Probability +1310.0948 High Energy Astrophysical Phenomena +1310.1549 Statistics Theory +1310.7085 Combinatorics +1311.4338 Representation Theory +1311.5725 Algebraic Geometry +1311.6070 Dynamical Systems +1311.6459 Superconductivity +1312.2730 Discrete Mathematics +1312.6322 History and Philosophy of Physics +1312.7687 Representation Theory +1401.5498 Probability +1402.0635 Machine Learning +1402.1096 Probability +1402.2351 Social and Information Networks +1402.3391 Number Theory +1402.6256 Classical Analysis and ODEs +1403.2376 +1403.3972 Formal Languages and Automata Theory +1404.4222 Representation Theory +1405.2545 Algebraic Geometry +1406.0879 Computational Complexity +1406.6753 Differential Geometry +1407.1482 Computational Complexity +1407.6609 Optimization and Control +1407.7795 Methodology +1408.3040 +1408.3686 Computer Vision and Pattern Recognition +1408.5594 Chaotic Dynamics +1409.6086 Machine Learning +1410.0051 Analysis of PDEs +1410.1608 Genomics +1410.1964 Complex Variables +1410.3088 Algebraic Topology +1410.6951 Computational Engineering, Finance, and Science +1410.8129 Numerical Analysis +1410.8645 Phenomenology +1410.8720 Computational Geometry +1411.0067 Chemical Physics +1411.1869 Methodology +1411.4551 Probability +1411.4885 Cellular Automata and Lattice Gases +1411.6065 Numerical Analysis +1411.6113 Combinatorics +1411.6458 Algebraic Topology +1411.7191 Data Structures and Algorithms +1411.7888 Methodology +1412.1387 Analysis of PDEs +1412.7260 Machine Learning +1412.7635 Number Theory +1412.7730 +1501.00820 Logic in Computer Science +1501.01122 Solar and Stellar Astrophysics +1501.01205 +1501.01271 Statistics Theory +1501.02243 Computer Science and Game Theory +1501.02587 Differential Geometry +1501.04344 Emerging Technologies +1501.04512 +1501.05829 General Physics +1501.06003 Information Theory +1502.01623 Disordered Systems and Neural Networks +1502.05017 Statistics Theory +1502.05952 Cosmology and Nongalactic Astrophysics +1502.07439 Social and Information Networks +1503.00258 Formal Languages and Automata Theory +1503.03781 Optics +1503.04104 Mesoscale and Nanoscale Physics +1503.05407 Classical Analysis and ODEs +1503.05988 Computer Science and Game Theory +1503.06858 Learning +1503.06916 K-Theory and Homology +1503.07206 Optimization and Control +1504.00109 Representation Theory +1504.00865 Statistics Theory +1504.05439 Algebraic Geometry +1504.06876 Emerging Technologies +1504.06883 Superconductivity +1505.00690 Materials Science +1505.02996 Phenomenology +1505.03775 +1505.04025 Theory +1505.05629 Machine Learning +1505.05779 Cryptography and Security +1505.06369 Phenomenology +1506.00132 Combinatorics +1506.00166 Mathematical Finance +1506.00186 +1506.00272 Distributed, Parallel, and Cluster Computing +1506.00390 +1506.00473 Computer Vision and Pattern Recognition +1506.02351 Machine Learning +1506.02620 Machine Learning +1506.03106 Economics +1506.05747 Classical Analysis and ODEs +1506.05824 Superconductivity +1506.06169 Methodology +1506.06451 Algebraic Topology +1506.07520 Phenomenology +1506.07590 Optics +1506.07798 Theory +1506.09198 +1507.01189 Strongly Correlated Electrons +1507.01981 Data Structures and Algorithms +1507.02603 Strongly Correlated Electrons +1507.03386 Optics +1507.04787 Probability +1507.04811 Computer Science and Game Theory +1507.04995 Theory +1507.06965 Numerical Analysis +1507.07352 Differential Geometry +1507.07435 Commutative Algebra +1507.07845 +1507.08118 Functional Analysis +1507.08270 Operator Algebras +1507.08746 Strongly Correlated Electrons +1508.01269 Probability +1508.01468 Phenomenology +1508.01539 Differential Geometry +1508.01791 Theory +1508.03065 Strongly Correlated Electrons +1508.03522 Lattice +1508.04401 Statistical Mechanics +1508.04462 Mesoscale and Nanoscale Physics +1508.04922 +1508.05370 Instrumentation and Detectors +1508.05909 Materials Science +1508.06828 Phenomenology +1508.07090 +1508.07114 Theory +1508.07354 +1509.00233 +1509.00788 Plasma Physics +1509.01515 Cosmology and Nongalactic Astrophysics +1509.01669 Dynamical Systems +1509.01802 Phenomenology +1509.04109 Differential Geometry +1509.04816 +1509.05859 Group Theory +1509.06488 Superconductivity +1509.06635 Atomic Physics +1509.07342 +1509.07347 Functional Analysis +1509.07508 Strongly Correlated Electrons +1509.07999 Analysis of PDEs +1509.08193 Optimization and Control +1509.08203 Optimization and Control +1509.08225 Quantum Gases +1509.08499 +1510.00149 Computer Vision and Pattern Recognition +1510.00954 Symplectic Geometry +1510.01162 Strongly Correlated Electrons +1510.01744 Theory +1510.01968 +1510.02349 Phenomenology +1510.03094 Instrumentation and Detectors +1510.04146 Probability +1510.04812 Strongly Correlated Electrons +1510.05385 Solar and Stellar Astrophysics +1510.05490 Theory +1510.06674 Cosmology and Nongalactic Astrophysics +1510.06779 Machine Learning +1510.07215 +1510.07246 Systems and Control +1510.07591 Metric Geometry +1510.07747 Cosmology and Nongalactic Astrophysics +1510.08490 Social and Information Networks +1511.00666 Probability +1511.01342 General Physics +1511.01708 High Energy Astrophysical Phenomena +1511.02107 Phenomenology +1511.02357 Theory +1511.02455 Artificial Intelligence +1511.03197 Solar and Stellar Astrophysics +1511.03359 Optics +1511.04119 Learning +1511.04209 Strongly Correlated Electrons +1511.04581 Machine Learning +1511.04747 Computation and Language +1511.05333 Statistics Theory +1511.05692 +1511.06067 Learning +1511.06431 Biomolecules +1511.06660 Learning +1511.06823 Materials Science +1511.06941 Information Theory +1511.07683 Rings and Algebras +1511.08497 Software Engineering +1512.00092 Mesoscale and Nanoscale Physics +1512.01874 +1512.02216 Instrumentation and Detectors +1512.03013 Phenomenology +1512.03195 Astrophysics of Galaxies +1512.05244 Learning +1512.06365 Algebraic Topology +1512.06526 Combinatorics +1512.07776 Operator Algebras +1512.07966 Social and Information Networks +1512.07988 Discrete Mathematics +1512.08304 Optics +1512.09137 +1512.09213 Chemical Physics +1601.00913 Phenomenology +1601.00920 Dynamical Systems +1601.02099 Combinatorics +1601.02348 Solar and Stellar Astrophysics +1601.02978 Earth and Planetary Astrophysics +1601.03289 Soft Condensed Matter +1601.03778 Learning +1601.04073 Materials Science +1601.04220 Combinatorics +1601.05499 Probability +1601.06091 Statistical Mechanics +1601.06316 Databases +1601.07099 Logic +1601.07324 Numerical Analysis +1601.07353 Theory +1601.07589 Geometric Topology +1601.07854 Combinatorics +1601.07864 Numerical Analysis +1601.08164 +1602.00574 Combinatorics +1602.00645 Algebraic Geometry +1602.00982 Functional Analysis +1602.01198 Learning +1602.01425 +1602.01543 Optimization and Control +1602.01678 Theory +1602.01754 Solar and Stellar Astrophysics +1602.01812 Phenomenology +1602.02246 +1602.02255 Information Retrieval +1602.03131 Applications +1602.03220 Machine Learning +1602.03266 Systems and Control +1602.03287 Symplectic Geometry +1602.03469 Combinatorics +1602.03496 Algebraic Geometry +1602.03582 Number Theory +1602.03631 Pattern Formation and Solitons +1602.03692 Computation +1602.03697 Methodology +1602.04210 Networking and Internet Architecture +1602.04213 +1602.04215 +1602.04216 Instrumentation and Methods for Astrophysics +1602.04217 Complex Variables +1602.04218 Functional Analysis +1602.04227 Machine Learning +1602.04231 Analysis of PDEs +1602.04233 +1602.04234 Systems and Control +1602.04236 Materials Science +1602.04238 Materials Science +1602.04239 Spectral Theory +1602.04241 Classical Analysis and ODEs +1602.04243 Dynamical Systems +1602.04244 Number Theory +1602.04246 Metric Geometry +1602.04247 +1602.04249 General Physics +1602.04250 Complex Variables +1602.04257 Artificial Intelligence +1602.04261 Systems and Control +1602.04264 Theory +1602.04265 Machine Learning +1602.04268 Logic in Computer Science +1602.04269 Biological Physics +1602.04270 Data Structures and Algorithms +1602.04272 Optics +1602.04278 Computation and Language +1602.04280 Materials Science +1602.04281 Computers and Society +1602.04282 Machine Learning +1602.04283 Distributed, Parallel, and Cluster Computing +1602.04286 Optimization and Control +1602.04287 Machine Learning +1602.04289 Materials Science +1602.04292 Data Analysis, Statistics and Probability +1602.04294 Formal Languages and Automata Theory +1602.04297 Phenomenology +1602.04299 +1602.04310 Statistics Theory +1602.04311 Representation Theory +1602.04316 Combinatorics +1602.04317 Number Theory +1602.04321 Representation Theory +1602.04325 Representation Theory +1602.04326 Classical Analysis and ODEs +1602.04328 Computer Science and Game Theory +1602.04330 Statistics Theory +1602.04331 Combinatorics +1602.04335 Neural and Evolutionary Computing +1602.04340 Optics +1602.04341 Computation and Language +1602.04346 Optics +1602.04347 Number Theory +1602.04348 Computer Vision and Pattern Recognition +1602.04349 Mesoscale and Nanoscale Physics +1602.04350 Physics and Society +1602.04351 Combinatorics +1602.04353 Logic in Computer Science +1602.04354 Group Theory +1602.04355 Dynamical Systems +1602.04356 Superconductivity +1602.04358 Artificial Intelligence +1602.04361 Statistics Theory +1602.04363 Statistical Mechanics +1602.04364 Learning +1602.04366 Plasma Physics +1602.04370 Combinatorics +1602.04371 Mesoscale and Nanoscale Physics +1602.04372 Computational Finance +1602.04376 Artificial Intelligence +1602.04383 Representation Theory +1602.04385 Numerical Analysis +1602.04386 Numerical Analysis +1602.04387 Statistics Theory +1602.04388 Algebraic Geometry +1602.04389 Instrumentation and Methods for Astrophysics +1602.04390 +1602.04391 Machine Learning +1602.04392 Representation Theory +1602.04393 Information Retrieval +1602.04394 Mesoscale and Nanoscale Physics +1602.04395 +1602.04396 Information Theory +1602.04399 Data Structures and Algorithms +1602.04400 Networking and Internet Architecture +1602.04401 Instrumentation and Methods for Astrophysics +1602.04402 Systems and Control +1602.04406 Superconductivity +1602.04409 Learning +1602.04410 Computer Science and Game Theory +1602.04414 Hardware Architecture +1602.04415 Hardware Architecture +1602.04416 +1602.04417 Group Theory +1602.04421 Data Structures and Algorithms +1602.04422 Computer Vision and Pattern Recognition +1602.04423 Economics +1602.04431 Databases +1602.04432 Logic +1602.04435 Artificial Intelligence +1602.04440 Networking and Internet Architecture +1602.04443 Dynamical Systems +1602.04444 Algebraic Geometry +1602.04448 Algebraic Geometry +1602.04449 Combinatorics +1602.04454 +1602.04459 +1602.04463 Optics +1602.04464 Optics +1602.04465 Functional Analysis +1602.04466 Economics +1602.04469 Geophysics +1602.04471 Materials Science +1602.04472 Algebraic Geometry +1602.04473 Artificial Intelligence +1602.04475 Soft Condensed Matter +1602.04486 Earth and Planetary Astrophysics +1602.04489 Computer Vision and Pattern Recognition +1602.04491 Earth and Planetary Astrophysics +1602.04492 Geophysics +1602.04496 Information Theory +1602.04497 Numerical Analysis +1602.04502 Computer Vision and Pattern Recognition +1602.04504 Computer Vision and Pattern Recognition +1602.04505 Discrete Mathematics +1602.04506 Human-Computer Interaction +1602.04507 Rings and Algebras +1602.04508 Disordered Systems and Neural Networks +1602.04515 Algebraic Topology +1602.04517 Number Theory +1602.04519 Materials Science +1602.04520 Optics +1602.04521 Information Theory +1602.04523 Probability +1602.04528 Methodology +1602.04532 Dynamical Systems +1602.04536 Distributed, Parallel, and Cluster Computing +1602.04537 Solar and Stellar Astrophysics +1602.04540 Analysis of PDEs +1602.04546 Geometric Topology +1602.04547 Geometric Topology +1602.04548 Machine Learning +1602.04550 Computational Physics +1602.04552 Distributed, Parallel, and Cluster Computing +1602.04556 Numerical Analysis +1602.04557 Optics +1602.04561 Probability +1602.04567 Information Retrieval +1602.04568 Logic in Computer Science +1602.04570 Probability +1602.04572 Information Retrieval +1602.04575 +1602.04576 Combinatorics +1602.04577 Information Theory +1602.04579 Machine Learning +1602.04580 Mathematical Finance +1602.04582 Solar and Stellar Astrophysics +1602.04585 Analysis of PDEs +1602.04586 Dynamical Systems +1602.04590 Materials Science +1602.04593 Computer Vision and Pattern Recognition +1602.04594 Classical Analysis and ODEs +1602.04595 Lattice +1602.04597 Differential Geometry +1602.04602 Differential Geometry +1602.04603 Operator Algebras +1602.04604 Classical Analysis and ODEs +1602.04608 Instrumentation and Methods for Astrophysics +1602.04609 Optimization and Control +1602.04612 Operator Algebras +1602.04613 Artificial Intelligence +1602.04614 Lattice +1602.04615 Instrumentation and Methods for Astrophysics +1602.04617 Atomic Physics +1602.04619 Mesoscale and Nanoscale Physics +1602.04620 Computers and Society +1602.04623 Combinatorics +1602.04627 Instrumentation and Methods for Astrophysics +1602.04629 Networking and Internet Architecture +1602.04630 Information Theory +1602.04633 Instrumentation and Methods for Astrophysics +1602.04637 Metric Geometry +1602.04644 Algebraic Geometry +1602.04647 Strongly Correlated Electrons +1602.04649 Dynamical Systems +1602.04653 Analysis of PDEs +1602.04660 Mathematical Finance +1602.04663 +1602.04668 Combinatorics +1602.04669 Category Theory +1602.04673 Theory +1602.04674 History and Philosophy of Physics +1602.04675 Combinatorics +1602.04676 Statistics Theory +1602.04677 Differential Geometry +1602.04678 +1602.04680 Materials Science +1602.04689 Group Theory +1602.04690 Phenomenology +1602.04691 Numerical Analysis +1602.04697 Probability +1602.04698 General Mathematics +1602.04700 Analysis of PDEs +1602.04707 Computational Geometry +1602.04708 Superconductivity +1602.04709 Information Retrieval +1602.04713 Computers and Society +1602.04716 Other Computer Science +1602.04717 Combinatorics +1602.04720 Materials Science +1602.04722 Chemical Physics +1602.04723 Neural and Evolutionary Computing +1602.04725 Materials Science +1602.04726 Operator Algebras +1602.04727 Discrete Mathematics +1602.04730 Number Theory +1602.04733 Solar and Stellar Astrophysics +1602.04740 Probability +1602.04742 Neural and Evolutionary Computing +1602.04743 Optimization and Control +1602.04745 Dynamical Systems +1602.04746 Probability +1602.04747 Cryptography and Security +1602.04750 Functional Analysis +1602.04753 Biological Physics +1602.04754 Robotics +1602.04756 Complex Variables +1602.04757 Mesoscale and Nanoscale Physics +1602.04760 Operator Algebras +1602.04761 Theory +1602.04768 +1602.04774 +1602.04775 Astrophysics of Galaxies +1602.04776 Neurons and Cognition +1602.04778 Functional Analysis +1602.04783 Physics and Society +1602.04784 Numerical Analysis +1602.04785 Optimization and Control +1602.04787 Plasma Physics +1602.04791 Classical Analysis and ODEs +1602.04793 Spectral Theory +1602.04795 Analysis of PDEs +1602.04798 Phenomenology +1602.04800 Data Structures and Algorithms +1602.04805 Machine Learning +math/0502138 Algebraic Geometry +quant-ph/9904085 +0801.4612 +1301.2993 Statistical Mechanics +1505.06303 Plasma Physics +astro-ph/0702399 +0704.1313 Geometric Topology +0705.0090 Geometric Topology +0705.1143 Geometric Topology +0705.3453 Geometric Topology +0706.0339 Geometric Topology +0706.0715 Algebraic Geometry +0706.1581 Geometric Topology +0707.2350 Algebraic Topology +0708.1585 Dynamical Systems +0709.0376 Geometric Topology +0709.0720 Geometric Topology +0709.0827 Atomic Physics +0709.1427 Geometric Topology +0710.4150 Geometric Topology +0710.5940 Group Theory +0711.2677 Algebraic Geometry +0712.2803 Symplectic Geometry +0712.4060 Geometric Topology +0801.4596 Group Theory +0801.4925 Mesoscale and Nanoscale Physics +0803.1333 Geometric Topology +0803.4281 Dynamical Systems +0804.0427 Geometric Topology +0804.4229 Geometric Topology +0805.4222 Group Theory +0806.1518 Optics +0807.0852 +0809.0454 Geometric Topology +0811.0950 Mesoscale and Nanoscale Physics +0811.2254 Geometric Topology +0811.2383 Group Theory +0811.2917 Algebraic Geometry +0811.4566 Mesoscale and Nanoscale Physics +0812.4696 Geometric Topology +0903.3565 Optics +0904.1893 Geometric Topology +0904.3888 Optics +0905.0048 Geometric Topology +0905.0059 Algebraic Geometry +0905.2760 Geometric Topology +0906.1192 Dynamical Systems +0907.4639 Geometric Topology +0908.2863 Geometric Topology +0909.0918 Algebraic Geometry +0909.3485 Algebraic Topology +0909.4182 Geometric Topology +0910.1030 Algebraic Topology +0910.1102 Geometric Topology +0910.5642 Optics +0910.5691 Geometric Topology +0911.0085 Algebraic Topology +0912.4296 Geometric Topology +1001.4906 Algebraic Topology +1002.1731 Number Theory +1003.0598 Geometric Topology +1003.2088 Mesoscale and Nanoscale Physics +1003.4845 Dynamical Systems +1003.5021 Classical Analysis and ODEs +1004.0964 Algebraic Topology +1004.1884 Algebraic Geometry +1005.0329 Geometric Topology +1005.1902 Dynamical Systems +1005.3366 Optics +1006.2762 Algebraic Topology +1006.3864 Number Theory +1006.3953 Mesoscale and Nanoscale Physics +1007.0447 Phenomenology +1007.2407 Geometric Topology +1007.2913 Algebraic Topology +1007.2949 Differential Geometry +1008.5338 Dynamical Systems +1009.0603 Differential Geometry +1009.1067 Number Theory +1009.1365 Number Theory +1009.3132 Optics +1009.5271 Algebraic Topology +1009.6038 Analysis of PDEs +1010.0284 Geometric Topology +1010.0457 Commutative Algebra +1010.3014 Differential Geometry +1010.3274 Geometric Topology +1010.4133 Dynamical Systems +1010.5235 Geometric Topology +1011.1697 Differential Geometry +1011.2966 Mesoscale and Nanoscale Physics +1011.3695 Geometric Topology +1011.5051 Geometric Topology +1012.0994 Geometric Topology +1012.1039 Geometric Topology +1012.2780 Geometric Topology +1012.3212 Analysis of PDEs +1012.4146 Symplectic Geometry +1012.5963 +1101.0301 Graphics +1101.3196 Analysis of PDEs +1101.4119 Materials Science +1102.0328 Number Theory +1102.0750 Geometric Topology +1102.0991 Differential Geometry +1102.3086 Analysis of PDEs +1102.3234 Differential Geometry +1102.4589 Group Theory +1102.5653 Algebraic Geometry +1103.0874 Chaotic Dynamics +1103.1721 Representation Theory +1103.1829 Dynamical Systems +1103.1921 Algebraic Geometry +1103.3480 Symplectic Geometry +1103.3839 Geometric Topology +1103.5116 Analysis of PDEs +1103.6213 Algebraic Topology +1104.0177 Analysis of PDEs +1104.0805 +1104.0818 Algebraic Geometry +1104.4460 Group Theory +1104.5474 Optimization and Control +1105.2415 Combinatorics +1105.5056 Group Theory +1105.5478 Group Theory +1105.5564 Analysis of PDEs +1106.0947 Geometric Topology +1106.1677 Numerical Analysis +1106.3132 Complex Variables +1106.3221 Combinatorics +1106.4642 Analysis of PDEs +1107.1009 Optics +1107.2154 Geometric Topology +1107.4674 Symplectic Geometry +1108.0317 Geometric Topology +1108.0724 Geometric Topology +1108.4714 Algebraic Geometry +1108.5459 Theory +1109.3964 Analysis of PDEs +1109.4211 Differential Geometry +1109.6287 Number Theory +1109.6396 Classical Analysis and ODEs +1110.1615 Chaotic Dynamics +1110.2041 Group Theory +1110.2370 Algebraic Topology +1110.3389 Operator Algebras +1110.3916 Algebraic Geometry +1110.4609 Algebraic Topology +1110.4847 Algebraic Geometry +1110.5155 Analysis of PDEs +1110.5976 Algebraic Geometry +1110.6701 Rings and Algebras +1111.2902 Commutative Algebra +1111.3087 Differential Geometry +1111.3896 Number Theory +1111.5061 Classical Analysis and ODEs +1111.5065 Geometric Topology +1111.6827 Analysis of PDEs +1112.0030 Theory +1112.3063 Complex Variables +1112.3211 Mesoscale and Nanoscale Physics +1112.4306 Algebraic Geometry +1112.5596 Mesoscale and Nanoscale Physics +1112.6185 +1112.6296 Geometric Topology +1201.0201 Materials Science +1201.0957 Group Theory +1201.1110 +1201.1626 Fluid Dynamics +1201.2385 Analysis of PDEs +1201.2545 Probability +1201.3191 Theory +1201.3274 Algebraic Geometry +1201.3646 Representation Theory +1201.4231 Theory +1201.5051 Algebraic Geometry +1201.6027 Geometric Topology +1202.0084 Theory +1202.0336 Theory +1202.0543 Theory +1202.0765 Geometric Topology +1202.2240 K-Theory and Homology +1202.3227 Differential Geometry +1202.3487 Geometric Topology +1202.4683 Number Theory +1202.5029 Theory +1202.5045 Theory +1202.5065 Numerical Analysis +1202.5201 Analysis of PDEs +1202.5756 Differential Geometry +1202.6385 Analysis of PDEs +1202.6508 Theory +1203.0479 Analysis of PDEs +1203.0831 K-Theory and Homology +1203.1063 Quantum Algebra +1203.1608 Geometric Topology +1203.2413 Geometric Topology +1203.2904 Classical Analysis and ODEs +1203.3808 Differential Geometry +1203.4019 Geometric Topology +1203.4963 Number Theory +1203.5041 Mesoscale and Nanoscale Physics +1203.5589 Symplectic Geometry +1203.5722 Algebraic Geometry +1203.6302 Analysis of PDEs +1203.6383 Algebraic Topology +1204.0289 Operator Algebras +1204.2013 Algebraic Topology +1204.2209 Symplectic Geometry +1204.4068 Differential Geometry +1204.4269 Number Theory +1204.5079 Analysis of PDEs +1204.5630 Mesoscale and Nanoscale Physics +1205.0342 Analysis of PDEs +1205.0708 Representation Theory +1205.0713 Differential Geometry +1205.0992 Representation Theory +1205.1047 Mesoscale and Nanoscale Physics +1205.2420 Classical Analysis and ODEs +1205.3457 Number Theory +1205.5165 Complex Variables +1205.5196 +1206.0137 Commutative Algebra +1206.2025 Representation Theory +1206.2102 Number Theory +1206.3505 Mesoscale and Nanoscale Physics +1206.4746 Number Theory +1206.4922 Differential Geometry +1206.5955 Differential Geometry +1206.6237 Geometric Topology +1206.6249 Symplectic Geometry +1207.0109 Geometric Topology +1207.2363 Algebraic Topology +1207.2408 Optimization and Control +1207.2685 Number Theory +1207.2964 Algebraic Topology +1207.3299 Quantum Algebra +1207.4855 Symplectic Geometry +1207.4980 Algebraic Geometry +1207.5090 Operator Algebras +1207.6898 Analysis of PDEs +1207.7012 Algebraic Geometry +1208.0703 Number Theory +1208.1492 Representation Theory +1208.1671 Rings and Algebras +1208.1747 Number Theory +1208.1808 Analysis of PDEs +1208.2040 Differential Geometry +1208.2108 Analysis of PDEs +1208.2152 Differential Geometry +1208.2484 Classical Analysis and ODEs +1208.3547 Algebraic Geometry +1208.3917 Geometric Topology +1208.5326 Number Theory +1208.5548 Functional Analysis +1208.5788 Geometric Topology +1208.5806 Number Theory +1208.6339 Geometric Topology +1209.0238 Rings and Algebras +1209.0581 Biological Physics +1209.1256 Probability +1209.1268 Geometric Topology +1209.1894 Number Theory +1209.2068 Algebraic Geometry +1209.2882 Representation Theory +1209.3529 Symplectic Geometry +1210.0180 Optimization and Control +1210.0212 Algebraic Topology +1210.0382 Geometric Topology +1210.1322 Analysis of PDEs +1210.1460 Combinatorics +1210.1982 Commutative Algebra +1210.3785 Algebraic Geometry +1210.4088 Analysis of PDEs +1210.4127 Number Theory +1210.4653 Algebraic Geometry +1210.5433 Combinatorics +1210.6184 Representation Theory +1210.6399 Quantum Algebra +1210.6879 Analysis of PDEs +1210.6946 Number Theory +1210.7226 Analysis of PDEs +1210.7534 Analysis of PDEs +1210.7602 Analysis of PDEs +1210.7713 Differential Geometry +1210.8069 Combinatorics +1210.8091 Operator Algebras +1211.0031 Group Theory +1211.1054 Analysis of PDEs +1211.1353 Number Theory +1211.1423 Geometric Topology +1211.2005 Classical Analysis and ODEs +1211.2173 +1211.3066 Geometric Topology +1211.3197 Commutative Algebra +1211.3637 Geometric Topology +1211.3712 Geometric Topology +1211.4754 Differential Geometry +1211.5366 Representation Theory +1211.7111 Analysis of PDEs +1211.7198 Dynamical Systems +1211.7281 Analysis of PDEs +1212.0150 Representation Theory +1212.0176 Differential Geometry +1212.1010 Number Theory +1212.1569 Mesoscale and Nanoscale Physics +1212.1906 Differential Geometry +1212.2644 Numerical Analysis +1212.2739 Group Theory +1212.6117 Geometric Topology +1301.1101 Geometric Topology +1301.1210 Analysis of PDEs +1301.1579 +1301.1859 Analysis of PDEs +1301.2983 Methodology +1301.3976 Number Theory +1301.4210 Algebraic Geometry +1301.4369 Geometric Topology +1301.6217 +1301.7284 Algebraic Geometry +1301.7647 Number Theory +1302.0048 Algebraic Geometry +1302.0979 Number Theory +1302.1247 Geometric Topology +1302.1407 Metric Geometry +1302.3149 Differential Geometry +1302.4108 Dynamical Systems +1302.4850 Classical Analysis and ODEs +1302.5188 Geometric Topology +1302.5191 Operator Algebras +1302.5659 Functional Analysis +1302.6457 Differential Geometry +1303.0234 Number Theory +1303.0655 Metric Geometry +1303.0689 Optics +1303.1032 Algebraic Geometry +1303.1421 Differential Geometry +1303.1694 K-Theory and Homology +1303.2128 Geometric Topology +1303.2862 Differential Geometry +1303.3750 Methodology +1303.4040 Functional Analysis +1303.4125 Number Theory +1303.4167 Analysis of PDEs +1303.5278 Geometric Topology +1303.5944 +1303.6019 Differential Geometry +1303.6843 Algebraic Geometry +1303.7196 Analysis of PDEs +1304.0551 Optics +1304.2954 +1304.3491 Representation Theory +1304.4135 Analysis of PDEs +1304.4295 Classical Analysis and ODEs +1304.4827 Differential Geometry +1304.4871 Algebraic Geometry +1304.5204 Number Theory +1304.5376 Algebraic Geometry +1304.6651 Analysis of PDEs +1304.7274 Commutative Algebra +1305.0289 Metric Geometry +1305.0402 Differential Geometry +1305.0411 Differential Geometry +1305.1715 Analysis of PDEs +1305.1905 Differential Geometry +1305.2142 Algebraic Geometry +1305.2501 Representation Theory +1305.2896 Analysis of PDEs +1305.3231 Metric Geometry +1305.4138 Optics +1305.4658 Optics +1305.5293 Geometric Topology +1305.5403 Group Theory +1305.6165 Numerical Analysis +1305.7020 Differential Geometry +1305.7306 Quantum Algebra +1306.0133 Number Theory +1306.1055 Classical Analysis and ODEs +1306.3549 Differential Geometry +1306.3634 Rings and Algebras +1306.3698 Quantum Algebra +1306.4431 Differential Geometry +1306.4670 Differential Geometry +1306.5227 Probability +1306.6362 Number Theory +1307.1033 Algebraic Geometry +1307.1495 Geometric Topology +1307.2462 Analysis of PDEs +1307.2871 Differential Geometry +1307.3351 Algebraic Topology +1307.3977 Algebraic Geometry +1307.3981 Analysis of PDEs +1307.4646 Algebraic Geometry +1307.5284 Analysis of PDEs +1307.5650 Algebraic Geometry +1307.5944 Machine Learning +1307.6062 Mesoscale and Nanoscale Physics +1307.6843 Information Theory +1307.7739 Representation Theory +1307.8110 Number Theory +1307.8402 Analysis of PDEs +1308.0935 K-Theory and Homology +1308.0998 Analysis of PDEs +1308.2213 Rings and Algebras +1308.2332 Theory +1308.2374 Differential Geometry +1308.3022 Geometric Topology +1308.3266 Geometric Topology +1308.3339 Numerical Analysis +1308.4219 Algebraic Topology +1308.4388 Representation Theory +1308.4640 Numerical Analysis +1308.4991 Number Theory +1308.5197 Operator Algebras +1308.5544 Differential Geometry +1308.6011 Rings and Algebras +1309.0452 Symplectic Geometry +1309.0550 Geometric Topology +1309.0655 Analysis of PDEs +1309.0795 Analysis of PDEs +1309.0859 Representation Theory +1309.1486 Theory +1309.1639 Analysis of PDEs +1309.1661 Algebraic Geometry +1309.2123 Number Theory +1309.2743 Optics +1309.2793 Quantum Algebra +1309.3762 Representation Theory +1309.3875 Differential Geometry +1309.3898 Analysis of PDEs +1309.4370 K-Theory and Homology +1309.5072 Symplectic Geometry +1309.5322 Spectral Theory +1309.6097 Group Theory +1309.7018 Group Theory +1309.7103 Dynamical Systems +1310.0604 +1310.0719 Differential Geometry +1310.0724 Representation Theory +1310.1211 Analysis of PDEs +1310.1473 +1310.1749 Analysis of PDEs +1310.2207 Spectral Theory +1310.2508 Number Theory +1310.2537 Geometric Topology +1310.2735 Geometric Topology +1310.2784 Algebraic Geometry +1310.3336 Algebraic Topology +1310.3798 Representation Theory +1310.3862 Geometric Topology +1310.3874 Differential Geometry +1310.4448 Number Theory +1310.4476 Geometric Topology +1310.4806 Group Theory +1310.5278 Theory +1310.5844 Probability +1310.8505 Algebraic Geometry +1311.0817 Differential Geometry +1311.1461 Theory +1311.1809 Differential Geometry +1311.1930 Dynamical Systems +1311.2343 K-Theory and Homology +1311.2431 Numerical Analysis +1311.2477 Analysis of PDEs +1311.2804 Geometric Topology +1311.3756 Symplectic Geometry +1311.4024 +1311.5004 Differential Geometry +1311.5097 Differential Geometry +1311.6727 Differential Geometry +1311.7062 Combinatorics +1311.7191 Differential Geometry +1312.0913 Geometric Topology +1312.2283 Complex Variables +1312.2577 Algebraic Geometry +1312.3417 Information Theory +1312.3584 Differential Geometry +1312.3705 Geometric Topology +1312.5470 Representation Theory +1312.5787 Analysis of PDEs +1312.5958 Quantum Algebra +1312.6465 Group Theory +1312.7166 Algebraic Topology +1401.0499 Group Theory +1401.0552 Algebraic Geometry +1401.0792 Superconductivity +1401.0854 Number Theory +1401.1953 Symplectic Geometry +1401.2313 Numerical Analysis +1401.2478 Geometric Topology +1401.2584 Algebraic Geometry +1401.2715 Analysis of PDEs +1401.2935 Analysis of PDEs +1401.3264 Geometric Topology +1401.3764 Number Theory +1401.4342 Applications +1401.5670 +1401.7184 Differential Geometry +1401.7379 Algebraic Geometry +1402.0811 Number Theory +1402.1049 Differential Geometry +1402.1439 Algebraic Geometry +1402.1562 Statistical Mechanics +1402.1632 Number Theory +1402.1671 Phenomenology +1402.1980 Operator Algebras +1402.2106 Functional Analysis +1402.2636 Analysis of PDEs +1402.2984 +1402.4052 Commutative Algebra +1402.4082 Number Theory +1402.4177 Analysis of PDEs +1402.4751 Analysis of PDEs +1402.5854 Probability +1402.5980 Theory +1402.7160 Applications +1403.0203 +1403.0553 Number Theory +1403.0624 Classical Analysis and ODEs +1403.0767 Quantum Gases +1403.0924 Superconductivity +1403.1741 Algebraic Geometry +1403.2554 Geometric Topology +1403.2968 Strongly Correlated Electrons +1403.3799 Operator Algebras +1403.3954 Metric Geometry +1403.4805 Theory +1403.4875 Representation Theory +1403.5070 Analysis of PDEs +1403.5593 Mesoscale and Nanoscale Physics +1403.5767 +1403.5958 Operator Algebras +1403.6211 Geometric Topology +1403.6362 Differential Geometry +1403.6452 Group Theory +1403.6867 Analysis of PDEs +1403.6981 K-Theory and Homology +1403.7140 Analysis of PDEs +1403.7169 Analysis of PDEs +1403.7567 Theory +1403.7584 Rings and Algebras +1404.0050 Complex Variables +1404.0190 Differential Geometry +1404.1006 Physics and Society +1404.1552 Phenomenology +1404.3008 Applications +1404.3390 Algebraic Geometry +1404.4007 Number Theory +1404.4399 Commutative Algebra +1404.4657 Dynamical Systems +1404.5159 Analysis of PDEs +1404.5585 Computation and Language +1404.5938 Algebraic Geometry +1404.6362 Analysis of PDEs +1404.6853 Machine Learning +1404.7052 Theory +1404.7085 Theory +1404.7304 Theory +1404.7635 Theory +1405.0097 Theory +1405.0116 Analysis of PDEs +1405.1347 Mesoscale and Nanoscale Physics +1405.1538 Analysis of PDEs +1405.1830 Theory +1405.2014 Analysis of PDEs +1405.2348 Algebraic Topology +1405.2353 Theory +1405.2546 Combinatorics +1405.4999 Theory +1405.5551 Functional Analysis +1405.5722 Geometric Topology +1405.5904 Theory +1405.6125 Algebraic Geometry +1405.6554 Numerical Analysis +1405.6957 Algebraic Geometry +1405.7754 Complex Variables +1405.7950 Quantum Algebra +1406.0279 Geometric Topology +1406.0434 Group Theory +1406.1932 Group Theory +1406.1990 Number Theory +1406.2517 Quantum Algebra +1406.2723 +1406.3925 Instrumentation and Detectors +1406.4232 Group Theory +1406.4436 Plasma Physics +1406.5242 Logic +1406.5912 Number Theory +1406.6502 Number Theory +1406.6674 Number Theory +1406.6723 Functional Analysis +1406.7012 Atomic Physics +1406.7254 +1406.7767 Strongly Correlated Electrons +1407.0284 Theory +1407.1436 Analysis of PDEs +1407.1896 Fluid Dynamics +1407.2472 Classical Analysis and ODEs +1407.2966 Algebraic Geometry +1407.3488 Geophysics +1407.3705 Geometric Topology +1407.4235 Data Structures and Algorithms +1407.4435 Number Theory +1407.4737 Symplectic Geometry +1407.5146 Algebraic Geometry +1407.5181 Algebraic Geometry +1407.5245 Computer Vision and Pattern Recognition +1407.5306 Rings and Algebras +1407.5322 Theory +1407.5505 Populations and Evolution +1407.6375 Representation Theory +1407.6734 Analysis of PDEs +1407.6936 Differential Geometry +1407.6956 Theory +1407.7298 Accelerator Physics +1407.8431 Phenomenology +1407.8464 Algebraic Geometry +1407.8541 Dynamical Systems +1407.8543 Combinatorics +1408.0564 Theory +1408.0571 Theory +1408.1733 Number Theory +1408.2879 Combinatorics +1408.3051 Classical Analysis and ODEs +1408.3289 +1408.3749 Analysis of PDEs +1408.3824 Computational Physics +1408.3982 Group Theory +1408.4061 +1408.4094 +1408.4299 Representation Theory +1408.4783 Classical Analysis and ODEs +1408.5361 Commutative Algebra +1408.5457 Phenomenology +1408.5735 Data Analysis, Statistics and Probability +1408.5822 Mesoscale and Nanoscale Physics +1408.6018 +1408.6506 Number Theory +1408.6700 Mesoscale and Nanoscale Physics +1408.7101 Spectral Theory +1409.0593 Biological Physics +1409.1188 Optics +1409.1286 Analysis of PDEs +1409.1641 Differential Geometry +1409.1810 +1409.2335 Cosmology and Nongalactic Astrophysics +1409.2700 Chemical Physics +1409.2912 Differential Geometry +1409.3573 +1409.3672 Materials Science +1409.4525 Analysis of PDEs +1409.5255 +1409.5494 Quantum Gases +1409.5689 Functional Analysis +1409.5851 Phenomenology +1409.5890 Classical Analysis and ODEs +1409.5967 Rings and Algebras +1409.6364 Materials Science +1409.6535 Number Theory +1409.6572 +1409.6754 Theory +1409.6778 Theory +1409.7015 Algebraic Geometry +1409.7076 Theory +1409.7335 Probability +1409.7505 Biological Physics +1409.7899 Symplectic Geometry +1409.7958 Algebraic Topology +1409.8316 Geometric Topology +1409.8533 Algebraic Geometry +1410.0668 Theory +1410.1367 Atmospheric and Oceanic Physics +1410.1433 Analysis of PDEs +1410.1763 Classical Analysis and ODEs +1410.1827 Soft Condensed Matter +1410.2103 Algebraic Topology +1410.2300 Numerical Analysis +1410.3899 Systems and Control +1410.3943 Systems and Control +1410.5569 K-Theory and Homology +1410.6062 Analysis of PDEs +1410.6974 Geometric Topology +1410.7073 Number Theory +1410.7131 Atomic Physics +1410.7179 Materials Science +1410.8032 Atomic Physics +1410.8038 Mesoscale and Nanoscale Physics +1410.8341 Statistical Mechanics +1410.8816 Computational Complexity +1410.8836 Group Theory +1410.8840 +1411.0545 Symplectic Geometry +1411.0957 Fluid Dynamics +1411.1164 +1411.1616 Strongly Correlated Electrons +1411.1912 Classical Physics +1411.2429 Distributed, Parallel, and Cluster Computing +1411.2431 Algebraic Geometry +1411.2538 Functional Analysis +1411.3213 Plasma Physics +1411.4641 +1411.4690 High Energy Astrophysical Phenomena +1411.4703 Quantum Gases +1411.5242 Materials Science +1411.5272 Representation Theory +1411.6605 Phenomenology +1411.7146 Statistical Mechanics +1411.7499 Differential Geometry +1412.0249 Soft Condensed Matter +1412.0297 Materials Science +1412.0631 Operator Algebras +1412.0678 Cosmology and Nongalactic Astrophysics +1412.0826 Computer Vision and Pattern Recognition +1412.0886 Space Physics +1412.1033 +1412.1071 Mesoscale and Nanoscale Physics +1412.2376 Combinatorics +1412.2382 Analysis of PDEs +1412.2668 +1412.2805 Soft Condensed Matter +1412.2865 Combinatorics +1412.2998 Cosmology and Nongalactic Astrophysics +1412.3152 Theory +1412.3337 Theory +1412.4417 Instrumentation and Methods for Astrophysics +1412.5216 Analysis of PDEs +1412.5964 Analysis of PDEs +1412.6155 Social and Information Networks +1412.6217 Optics +1412.6288 Numerical Analysis +1412.6720 Information Theory +1412.6968 Category Theory +1412.7227 General Finance +1412.8376 Mesoscale and Nanoscale Physics +1501.00628 Statistical Mechanics +1501.00867 Solar and Stellar Astrophysics +1501.01018 +1501.01112 Phenomenology +1501.01380 Phenomenology +1501.02091 Quantum Gases +1501.03012 Fluid Dynamics +1501.03025 Optics +1501.03428 Statistical Mechanics +1501.03515 Theory +1501.03718 Analysis of PDEs +1501.03800 Plasma Physics +1501.04414 Numerical Analysis +1501.04685 Mesoscale and Nanoscale Physics +1501.04705 Information Theory +1501.04723 Instrumentation and Detectors +1501.04776 Mesoscale and Nanoscale Physics +1501.04988 Phenomenology +1501.05091 Physics and Society +1501.05094 Quantum Algebra +1501.05370 Probability +1501.05768 Chemical Physics +1501.05884 Materials Science +1501.05945 +1501.05966 Instrumentation and Detectors +1501.06077 +1501.06895 Theory +1501.06923 Phenomenology +1501.06924 +1501.06961 Strongly Correlated Electrons +1501.07089 +1501.07195 Logic in Computer Science +1501.07299 Algebraic Geometry +1501.07483 +1501.07523 Phenomenology +1501.07654 Differential Geometry +1502.00924 +1502.00959 Representation Theory +1502.01044 Statistical Mechanics +1502.01094 Machine Learning +1502.01260 Methodology +1502.01373 Mesoscale and Nanoscale Physics +1502.01437 Theory +1502.01466 Instrumentation and Detectors +1502.01619 Mesoscale and Nanoscale Physics +1502.01950 Mesoscale and Nanoscale Physics +1502.02464 Biological Physics +1502.03073 Theory +1502.03125 Cosmology and Nongalactic Astrophysics +1502.03140 Pattern Formation and Solitons +1502.03435 Analysis of PDEs +1502.03523 Materials Science +1502.03904 Geometric Topology +1502.04573 +1502.04594 Analysis of PDEs +1502.04668 Theory +1502.04720 Analysis of PDEs +1502.05163 Algebraic Geometry +1502.05325 +1502.05394 Physics and Society +1502.05405 Theory +1502.05537 Statistical Mechanics +1502.05588 Materials Science +1502.05601 Solar and Stellar Astrophysics +1502.05643 Analysis of PDEs +1502.06257 +1502.06300 Instrumentation and Detectors +1502.07010 Atmospheric and Oceanic Physics +1502.07066 Information Theory +1502.07498 Superconductivity +1502.07563 +1502.07577 Information Theory +1502.07684 +1502.07939 Multimedia +1503.00122 +1503.00217 Materials Science +1503.00283 Analysis of PDEs +1503.00287 Statistical Mechanics +1503.00339 Computation and Language +1503.00641 +1503.00780 Astrophysics of Galaxies +1503.00954 Adaptation and Self-Organizing Systems +1503.01053 Data Analysis, Statistics and Probability +1503.01076 General Physics +1503.01294 Theory +1503.01319 Functional Analysis +1503.01384 Quantum Gases +1503.01608 +1503.01864 Numerical Analysis +1503.02211 Differential Geometry +1503.02474 Computational Physics +1503.02483 Optics +1503.02595 Cosmology and Nongalactic Astrophysics +1503.02904 Quantitative Methods +1503.03259 Atomic Physics +1503.03406 +1503.03857 +1503.03914 Numerical Analysis +1503.03936 Numerical Analysis +1503.04084 Physics and Society +1503.04085 Physics and Society +1503.04111 Analysis of PDEs +1503.04188 Materials Science +1503.04620 Neurons and Cognition +1503.04698 +1503.04719 Phenomenology +1503.04789 Accelerator Physics +1503.04822 +1503.04920 Fluid Dynamics +1503.05046 Phenomenology +1503.05048 Plasma Physics +1503.05057 Mesoscale and Nanoscale Physics +1503.05095 Theory +1503.05121 Number Theory +1503.05126 Phenomenology +1503.05460 +1503.05505 Phenomenology +1503.05569 Materials Science +1503.05634 Theory +1503.05637 Information Theory +1503.05687 Instrumentation and Detectors +1503.06578 Cosmology and Nongalactic Astrophysics +1503.06679 Information Theory +1503.06785 Theory +1503.06914 Information Theory +1503.06929 Discrete Mathematics +1503.07207 Operator Algebras +1503.07210 Mesoscale and Nanoscale Physics +1503.07267 Superconductivity +1503.07305 +1503.07401 Human-Computer Interaction +1503.07416 Numerical Analysis +1503.07698 Instrumentation and Methods for Astrophysics +1503.07865 +1503.07955 Probability +1503.07961 Solar and Stellar Astrophysics +1503.08013 Portfolio Management +1503.08116 Numerical Analysis +1503.08196 Methodology +1503.08216 Phenomenology +1503.08233 Pattern Formation and Solitons +1503.08299 Materials Science +1503.08334 Plasma Physics +1503.08701 Differential Geometry +1503.08704 Phenomenology +1503.08729 Materials Science +1503.08824 Quantum Gases +1503.08861 Phenomenology +1503.08864 High Energy Astrophysical Phenomena +1503.08935 Experiment +1503.08977 Accelerator Physics +1503.09007 +1504.00336 Other Condensed Matter +1504.00392 Chemical Physics +1504.00643 +1504.00653 Social and Information Networks +1504.00787 Physics and Society +1504.00861 Phenomenology +1504.00986 Chemical Physics +1504.01319 High Energy Astrophysical Phenomena +1504.01521 Strongly Correlated Electrons +1504.01621 Symplectic Geometry +1504.01766 Optics +1504.02204 High Energy Astrophysical Phenomena +1504.02249 Optimization and Control +1504.02434 Operator Algebras +1504.02458 Phenomenology +1504.02711 Instrumentation and Detectors +1504.02793 Instrumentation and Detectors +1504.02854 Optimization and Control +1504.02907 Quantum Gases +1504.03088 Materials Science +1504.03245 +1504.03538 +1504.03549 Statistical Mechanics +1504.03970 Dynamical Systems +1504.04063 Optics +1504.04256 Spectral Theory +1504.04268 Phenomenology +1504.04381 Phenomenology +1504.04469 Phenomenology +1504.04571 Space Physics +1504.04786 Quantum Gases +1504.04949 Mesoscale and Nanoscale Physics +1504.05030 Numerical Analysis +1504.05170 Probability +1504.05541 High Energy Astrophysical Phenomena +1504.05658 Soft Condensed Matter +1504.05775 Cell Behavior +1504.06202 Accelerator Physics +1504.06233 Accelerator Physics +1504.06289 Numerical Analysis +1504.06331 Chemical Physics +1504.06802 Theory +1504.06849 Algebraic Geometry +1504.06922 Physics and Society +1504.07214 Classical Analysis and ODEs +1504.07223 +1504.07276 Theory +1504.07285 +1504.07515 Mesoscale and Nanoscale Physics +1504.07617 Phenomenology +1504.07975 +1504.08154 Solar and Stellar Astrophysics +1504.08279 +1504.08311 Materials Science +1504.08348 Theory +1505.00188 Physics and Society +1505.00344 Mathematical Software +1505.00347 Soft Condensed Matter +1505.00389 Computer Vision and Pattern Recognition +1505.00499 Mesoscale and Nanoscale Physics +1505.00642 +1505.00945 Optics +1505.01006 +1505.01263 +1505.01370 Strongly Correlated Electrons +1505.01399 Phenomenology +1505.01499 Plasma Physics +1505.01528 Classical Analysis and ODEs +1505.01608 Soft Condensed Matter +1505.01636 Experiment +1505.01960 Quantum Gases +1505.02107 Phenomenology +1505.02116 Mesoscale and Nanoscale Physics +1505.02117 +1505.02201 Populations and Evolution +1505.02285 +1505.02398 +1505.02571 Soft Condensed Matter +1505.02698 +1505.02709 +1505.03029 Soft Condensed Matter +1505.03384 Solar and Stellar Astrophysics +1505.03565 Superconductivity +1505.03583 Phenomenology +1505.03746 +1505.03866 Astrophysics of Galaxies +1505.03876 Optimization and Control +1505.03888 Phenomenology +1505.03955 Cosmology and Nongalactic Astrophysics +1505.04004 Theory +1505.04146 Cosmology and Nongalactic Astrophysics +1505.04359 +1505.04525 Statistical Mechanics +1505.04540 Instrumentation and Detectors +1505.04569 Hardware Architecture +1505.04604 Physics Education +1505.05015 Mesoscale and Nanoscale Physics +1505.05172 Mesoscale and Nanoscale Physics +1505.05237 Phenomenology +1505.05299 Solar and Stellar Astrophysics +1505.05333 Solar and Stellar Astrophysics +1505.05488 Phenomenology +1505.05589 Phenomenology +1505.05591 +1505.05850 +1505.05862 Superconductivity +1505.05884 Theory +1505.05887 Theory +1505.05897 Lattice +1505.05944 +1505.05954 Optics +1505.05985 Phenomenology +1505.06076 Computational Physics +1505.06456 Phenomenology +1505.06612 High Energy Astrophysical Phenomena +1505.06801 Strongly Correlated Electrons +1505.06802 Disordered Systems and Neural Networks +1505.07156 Optics +1505.07180 Mesoscale and Nanoscale Physics +1505.07213 Optics +1505.07288 Strongly Correlated Electrons +1505.07301 Theory +1505.07439 Phenomenology +1505.07474 Instrumentation and Methods for Astrophysics +1505.07590 Numerical Analysis +1505.07898 Fluid Dynamics +1505.07942 Materials Science +1505.08016 Optics +1506.00039 Quantum Gases +1506.00205 Statistical Mechanics +1506.00280 Quantum Gases +1506.00487 +1506.00523 +1506.00608 Instrumentation and Detectors +1506.00647 Phenomenology +1506.00836 Chaotic Dynamics +1506.01045 Theory +1506.01154 Information Theory +1506.01235 Dynamical Systems +1506.01251 Solar and Stellar Astrophysics +1506.01278 Materials Science +1506.01312 Solar and Stellar Astrophysics +1506.01460 Analysis of PDEs +1506.01578 Differential Geometry +1506.01579 Fluid Dynamics +1506.01807 Theory +1506.02111 Statistical Mechanics +1506.02205 Materials Science +1506.02296 +1506.02302 Instrumentation and Detectors +1506.02330 Optics +1506.02332 Materials Science +1506.02403 Geophysics +1506.02411 High Energy Astrophysical Phenomena +1506.02415 Materials Science +1506.02419 +1506.02525 Mesoscale and Nanoscale Physics +1506.02527 Quantum Gases +1506.02534 Analysis of PDEs +1506.02537 Commutative Algebra +1506.02624 Phenomenology +1506.02760 +1506.02800 Experiment +1506.02807 Atmospheric and Oceanic Physics +1506.02817 +1506.02971 Soft Condensed Matter +1506.03082 Quantum Gases +1506.03207 Atomic Physics +1506.03221 Earth and Planetary Astrophysics +1506.03239 Experiment +1506.03390 Superconductivity +1506.03732 Materials Science +1506.03738 Classical Physics +1506.03991 Mesoscale and Nanoscale Physics +1506.04295 Atmospheric and Oceanic Physics +1506.04381 Statistical Mechanics +1506.04382 +1506.04414 +1506.04753 Solar and Stellar Astrophysics +1506.04777 Mesoscale and Nanoscale Physics +1506.04795 Theory +1506.04997 +1506.05033 +1506.05036 Computer Vision and Pattern Recognition +1506.05037 Disordered Systems and Neural Networks +1506.05050 +1506.05085 Learning +1506.05190 Optics +1506.05359 Mesoscale and Nanoscale Physics +1506.05363 Solar and Stellar Astrophysics +1506.05490 Social and Information Networks +1506.05625 Materials Science +1506.05670 Analysis of PDEs +1506.05978 Statistical Mechanics +1506.06206 Statistical Mechanics +1506.06209 Strongly Correlated Electrons +1506.06210 Soft Condensed Matter +1506.06257 Materials Science +1506.06393 Physics and Society +1506.06443 Plasma Physics +1506.06466 Probability +1506.06846 Phenomenology +1506.06927 Optics +1506.06955 Soft Condensed Matter +1506.07054 Information Theory +1506.07130 Fluid Dynamics +1506.07177 Phenomenology +1506.07188 Theory +1506.07201 Phenomenology +1506.07247 Optimization and Control +1506.07542 Optics +1506.07593 +1506.07938 Superconductivity +1506.08016 +1506.08132 Statistical Mechanics +1506.08156 Theory +1506.08174 Optics +1506.08241 +1506.08276 +1506.08305 Mesoscale and Nanoscale Physics +1506.08371 Instrumentation and Detectors +1506.08390 Phenomenology +1506.08433 Theory +1506.08442 Phenomenology +1506.08446 Strongly Correlated Electrons +1506.08481 Computational Physics +1506.08490 Solar and Stellar Astrophysics +1506.08504 Statistics Theory +1506.08508 Materials Science +1506.08539 Optics +1506.08609 Cosmology and Nongalactic Astrophysics +1506.08739 +1506.08795 Theory +1506.08799 Phenomenology +1506.08856 Instrumentation and Detectors +1506.08883 +1506.09020 +1506.09199 Instrumentation and Detectors +1507.00035 Atomic Physics +1507.00082 Analysis of PDEs +1507.00247 General Physics +1507.00261 Theory +1507.00361 Strongly Correlated Electrons +1507.00422 Mesoscale and Nanoscale Physics +1507.00610 Physics and Society +1507.00858 Materials Science +1507.00974 Optics +1507.01252 Soft Condensed Matter +1507.01352 Materials Science +1507.01401 Theory +1507.01582 Theory +1507.01680 Mesoscale and Nanoscale Physics +1507.01829 Classical Analysis and ODEs +1507.01864 Classical Physics +1507.01874 Fluid Dynamics +1507.01910 Solar and Stellar Astrophysics +1507.01950 Theory +1507.01994 Social and Information Networks +1507.02009 Solar and Stellar Astrophysics +1507.02014 Materials Science +1507.02060 Earth and Planetary Astrophysics +1507.02073 Experiment +1507.02116 Strongly Correlated Electrons +1507.02181 +1507.02185 Computational Physics +1507.02197 +1507.02215 Analysis of PDEs +1507.02325 Statistical Mechanics +1507.02354 High Energy Astrophysical Phenomena +1507.02512 +1507.02548 Theory +1507.02649 +1507.02756 +1507.02785 Instrumentation and Detectors +1507.02915 Differential Geometry +1507.03023 Mesoscale and Nanoscale Physics +1507.03115 Mesoscale and Nanoscale Physics +1507.03381 Mesoscale and Nanoscale Physics +1507.03522 General Physics +1507.03590 Astrophysics of Galaxies +1507.03593 Solar and Stellar Astrophysics +1507.03649 Earth and Planetary Astrophysics +1507.03697 +1507.03765 +1507.03774 +1507.03793 Strongly Correlated Electrons +1507.03806 Optics +1507.03812 Mesoscale and Nanoscale Physics +1507.03912 Fluid Dynamics +1507.04012 Plasma Physics +1507.04047 Distributed, Parallel, and Cluster Computing +1507.04066 Mesoscale and Nanoscale Physics +1507.04103 Numerical Analysis +1507.04225 Mesoscale and Nanoscale Physics +1507.04270 Mesoscale and Nanoscale Physics +1507.04319 Learning +1507.04446 Plasma Physics +1507.04456 Materials Science +1507.04490 Materials Science +1507.04514 Mesoscale and Nanoscale Physics +1507.04557 Theory +1507.04694 Phenomenology +1507.04726 Mesoscale and Nanoscale Physics +1507.04937 +1507.04949 Atomic Physics +1507.05218 Theory +1507.05261 Classical Analysis and ODEs +1507.05267 Phenomenology +1507.05318 Analysis of PDEs +1507.05320 +1507.05322 Biological Physics +1507.05400 Superconductivity +1507.05420 Theory +1507.05426 Theory +1507.05496 Quantum Gases +1507.05628 Phenomenology +1507.05792 Theory +1507.05841 Computational Complexity +1507.06004 Subcellular Processes +1507.06063 Materials Science +1507.06088 Strongly Correlated Electrons +1507.06130 Theory +1507.06164 Phenomenology +1507.06170 Earth and Planetary Astrophysics +1507.06177 Disordered Systems and Neural Networks +1507.06279 Spectral Theory +1507.06419 Mesoscale and Nanoscale Physics +1507.06425 Mesoscale and Nanoscale Physics +1507.06426 Quantum Gases +1507.06428 +1507.06434 Strongly Correlated Electrons +1507.06468 Instrumentation and Detectors +1507.06973 Optics +1507.07166 +1507.07223 Instrumentation and Detectors +1507.07240 Theory +1507.07347 Soft Condensed Matter +1507.07404 +1507.07428 Mesoscale and Nanoscale Physics +1507.07429 Distributed, Parallel, and Cluster Computing +1507.07430 Distributed, Parallel, and Cluster Computing +1507.07525 Phenomenology +1507.07559 Theory +1507.07741 Pattern Formation and Solitons +1507.07827 Numerical Analysis +1507.07834 Phenomenology +1507.07841 Phenomenology +1507.07867 +1507.07972 Atomic Physics +1507.08019 Plasma Physics +1507.08067 Phenomenology +1507.08157 Computational Physics +1507.08176 Optics +1507.08183 Disordered Systems and Neural Networks +1507.08239 Fluid Dynamics +1507.08352 Mesoscale and Nanoscale Physics +1507.08460 Mesoscale and Nanoscale Physics +1507.08468 Mesoscale and Nanoscale Physics +1507.08557 Optics +1507.08646 +1507.08657 Theory +1507.08673 Phenomenology +1507.08844 Mesoscale and Nanoscale Physics +1508.00100 Materials Science +1508.00122 Soft Condensed Matter +1508.00167 +1508.00260 Mesoscale and Nanoscale Physics +1508.00300 Materials Science +1508.00402 Phenomenology +1508.00500 Materials Science +1508.00557 +1508.00558 +1508.00578 Quantum Gases +1508.00624 Mesoscale and Nanoscale Physics +1508.00658 Materials Science +1508.00660 +1508.00678 Earth and Planetary Astrophysics +1508.00693 Physics and Society +1508.00733 Quantum Gases +1508.00745 Computational Physics +1508.00771 Materials Science +1508.00833 Materials Science +1508.00838 Instrumentation and Detectors +1508.00839 Medical Physics +1508.01061 Phenomenology +1508.01108 Computer Vision and Pattern Recognition +1508.01111 Strongly Correlated Electrons +1508.01143 Statistical Mechanics +1508.01201 Theory +1508.01232 Statistical Mechanics +1508.01352 Physics and Society +1508.01370 Cosmology and Nongalactic Astrophysics +1508.01380 Statistical Mechanics +1508.01414 Atomic and Molecular Clusters +1508.01440 Chaotic Dynamics +1508.01449 Phenomenology +1508.01516 Phenomenology +1508.01527 Theory +1508.01597 +1508.01650 Experiment +1508.01652 +1508.01702 +1508.01746 Sound +1508.01785 +1508.01812 Phenomenology +1508.01897 Phenomenology +1508.01948 Phenomenology +1508.02072 Classical Physics +1508.02107 Mesoscale and Nanoscale Physics +1508.02114 Quantum Gases +1508.02165 Materials Science +1508.02180 Phenomenology +1508.02269 Strongly Correlated Electrons +1508.02457 Atomic Physics +1508.02475 Statistical Mechanics +1508.02510 Instrumentation and Methods for Astrophysics +1508.02516 Materials Science +1508.02522 +1508.02534 Phenomenology +1508.02554 Theory +1508.02561 High Energy Astrophysical Phenomena +1508.02696 +1508.02809 Dynamical Systems +1508.02892 Plasma Physics +1508.03132 Quantum Gases +1508.03172 Phenomenology +1508.03245 Phenomenology +1508.03290 Classical Physics +1508.03300 Materials Science +1508.03361 +1508.03368 Disordered Systems and Neural Networks +1508.03392 +1508.03430 Theory +1508.03456 Materials Science +1508.03491 +1508.03551 +1508.03563 Materials Science +1508.03627 Theory +1508.03634 +1508.03743 Materials Science +1508.03803 Statistical Mechanics +1508.03967 Plasma Physics +1508.04012 Optics +1508.04067 Materials Science +1508.04118 Phenomenology +1508.04176 Phenomenology +1508.04187 Adaptation and Self-Organizing Systems +1508.04223 Statistical Mechanics +1508.04252 Disordered Systems and Neural Networks +1508.04287 Mesoscale and Nanoscale Physics +1508.04292 Theory +1508.04313 Theory +1508.04346 Astrophysics of Galaxies +1508.04355 Mesoscale and Nanoscale Physics +1508.04391 Materials Science +1508.04415 Atomic Physics +1508.04493 Theory +1508.04497 Mesoscale and Nanoscale Physics +1508.04539 High Energy Astrophysical Phenomena +1508.04592 Phenomenology +1508.04743 Atomic Physics +1508.04754 Statistical Finance +1508.04776 Theory +1508.04788 Materials Science +1508.04844 +1508.05094 Phenomenology +1508.05113 Solar and Stellar Astrophysics +1508.05287 Phenomenology +1508.05350 Theory +1508.05402 Superconductivity +1508.05422 +1508.05472 Phenomenology +1508.05521 Solar and Stellar Astrophysics +1508.05610 Computational Physics +1508.05722 Plasma Physics +1508.05731 Instrumentation and Detectors +1508.05758 Soft Condensed Matter +1508.05781 Superconductivity +1508.05789 Information Theory +1508.05799 Theory +1508.05859 Representation Theory +1508.05876 Mesoscale and Nanoscale Physics +1508.05877 Optics +1508.05940 Phenomenology +1508.06057 Phenomenology +1508.06290 Instrumentation and Methods for Astrophysics +1508.06357 Phenomenology +1508.06521 Optics +1508.06544 +1508.06601 Instrumentation and Methods for Astrophysics +1508.06646 Astrophysics of Galaxies +1508.06648 Mesoscale and Nanoscale Physics +1508.06658 Plasma Physics +1508.06661 Instrumentation and Methods for Astrophysics +1508.06664 Plasma Physics +1508.06687 Functional Analysis +1508.06691 Quantum Gases +1508.06740 Cosmology and Nongalactic Astrophysics +1508.06850 Optics +1508.06964 Phenomenology +1508.07029 Instrumentation and Detectors +1508.07031 +1508.07042 Soft Condensed Matter +1508.07074 Instrumentation and Detectors +1508.07085 Instrumentation and Detectors +1508.07104 Phenomenology +1508.07105 Differential Geometry +1508.07143 Instrumentation and Detectors +1508.07152 Pattern Formation and Solitons +1508.07160 +1508.07210 Functional Analysis +1508.07238 Lattice +1508.07247 Strongly Correlated Electrons +1508.07290 Materials Science +1508.07311 Theory +1508.07352 +1508.07397 Materials Science +1508.07424 Number Theory +1508.07487 Instrumentation and Methods for Astrophysics +1508.07500 Theory +1508.07546 Theory +1508.07609 Quantum Gases +1508.07648 Machine Learning +1508.07681 Atomic Physics +1508.07746 Materials Science +1508.07913 Information Theory +1508.07915 Strongly Correlated Electrons +1508.07963 Mesoscale and Nanoscale Physics +1508.07975 Theory +1509.00008 Theory +1509.00084 Mesoscale and Nanoscale Physics +1509.00145 Lattice +1509.00182 Superconductivity +1509.00208 Materials Science +1509.00218 Phenomenology +1509.00448 Optics +1509.00627 Instrumentation and Methods for Astrophysics +1509.00641 +1509.00680 Materials Science +1509.00832 Information Theory +1509.00904 Mesoscale and Nanoscale Physics +1509.00972 +1509.01000 Theory +1509.01029 Biological Physics +1509.01068 Solar and Stellar Astrophysics +1509.01113 +1509.01124 Astrophysics of Galaxies +1509.01166 Optics +1509.01245 Theory +1509.01249 Phenomenology +1509.01254 Astrophysics of Galaxies +1509.01299 Instrumentation and Methods for Astrophysics +1509.01341 Materials Science +1509.01395 Materials Science +1509.01408 Theory +1509.01413 Classical Physics +1509.01435 +1509.01540 Mesoscale and Nanoscale Physics +1509.01573 Optics +1509.01640 +1509.01670 Statistical Mechanics +1509.01825 +1509.01901 High Energy Astrophysical Phenomena +1509.01914 Superconductivity +1509.01939 Astrophysics of Galaxies +1509.02040 Theory +1509.02083 Phenomenology +1509.02091 Atomic Physics +1509.02184 Fluid Dynamics +1509.02232 Optics +1509.02252 Optics +1509.02257 Probability +1509.02392 +1509.02535 +1509.02542 Theory +1509.02598 High Energy Astrophysical Phenomena +1509.02659 +1509.02982 +1509.02983 Theory +1509.02988 Fluid Dynamics +1509.03058 +1509.03133 Analysis of PDEs +1509.03168 High Energy Astrophysical Phenomena +1509.03229 Optics +1509.03311 +1509.03395 Statistical Mechanics +1509.03416 Instrumentation and Methods for Astrophysics +1509.03430 Materials Science +1509.03438 Materials Science +1509.03690 Instrumentation and Detectors +1509.03702 Disordered Systems and Neural Networks +1509.03707 +1509.03763 +1509.03827 +1509.03942 Neurons and Cognition +1509.04068 Phenomenology +1509.04114 Materials Science +1509.04136 Optics +1509.04401 Materials Science +1509.04440 Mesoscale and Nanoscale Physics +1509.04447 Data Analysis, Statistics and Probability +1509.04520 Materials Science +1509.04606 Materials Science +1509.04649 Statistical Mechanics +1509.04782 Astrophysics of Galaxies +1509.04803 +1509.04830 +1509.04873 Fluid Dynamics +1509.04877 Fluid Dynamics +1509.04907 Soft Condensed Matter +1509.04966 Solar and Stellar Astrophysics +1509.05034 Cosmology and Nongalactic Astrophysics +1509.05080 Astrophysics of Galaxies +1509.05116 +1509.05177 Neural and Evolutionary Computing +1509.05233 Materials Science +1509.05237 Instrumentation and Detectors +1509.05335 Biological Physics +1509.05340 Logic +1509.05352 Theory +1509.05462 Strongly Correlated Electrons +1509.05467 Fluid Dynamics +1509.05470 +1509.05563 Biological Physics +1509.05600 Information Theory +1509.05641 Statistical Mechanics +1509.05817 Adaptation and Self-Organizing Systems +1509.05885 Optics +1509.05971 Materials Science +1509.06012 +1509.06028 Algebraic Geometry +1509.06131 Fluid Dynamics +1509.06144 +1509.06153 Optics +1509.06186 Theory +1509.06202 Materials Science +1509.06307 +1509.06313 Phenomenology +1509.06345 Theory +1509.06400 Cosmology and Nongalactic Astrophysics +1509.06439 Mesoscale and Nanoscale Physics +1509.06622 Statistical Mechanics +1509.06636 Instrumentation and Detectors +1509.06750 Cosmology and Nongalactic Astrophysics +1509.06798 Theory +1509.06809 Instrumentation and Detectors +1509.06819 Mesoscale and Nanoscale Physics +1509.06871 Materials Science +1509.06879 Instrumentation and Detectors +1509.06912 Pattern Formation and Solitons +1509.06978 Atomic Physics +1509.07015 Classical Analysis and ODEs +1509.07099 Mesoscale and Nanoscale Physics +1509.07123 Phenomenology +1509.07176 +1509.07237 Mesoscale and Nanoscale Physics +1509.07280 Phenomenology +1509.07381 Theory +1509.07441 Materials Science +1509.07509 Theory +1509.07549 Disordered Systems and Neural Networks +1509.07648 Atomic Physics +1509.07748 Theory +1509.07957 Optics +1509.07972 Materials Science +1509.08057 Statistical Mechanics +1509.08135 +1509.08168 Experiment +1509.08176 Lattice +1509.08348 +1509.08492 Optics +1509.08498 +1509.08616 Quantum Algebra +1509.08620 Phenomenology +1509.08633 Optics +1509.08727 Phenomenology +1509.08809 Theory +1509.08884 Medical Physics +1509.09178 Materials Science +1509.09212 Soft Condensed Matter +1509.09223 High Energy Astrophysical Phenomena +1509.09280 Superconductivity +1510.00055 Systems and Control +1510.00106 Materials Science +1510.00132 Distributed, Parallel, and Cluster Computing +1510.00182 High Energy Astrophysical Phenomena +1510.00207 Quantum Gases +1510.00321 Optics +1510.00572 Instrumentation and Detectors +1510.00624 Data Analysis, Statistics and Probability +1510.00694 +1510.00706 Mesoscale and Nanoscale Physics +1510.00806 +1510.00893 +1510.00928 Statistical Mechanics +1510.00965 Phenomenology +1510.01015 Phenomenology +1510.01021 +1510.01035 Phenomenology +1510.01070 Quantitative Methods +1510.01089 Phenomenology +1510.01138 Statistical Mechanics +1510.01173 +1510.01237 Fluid Dynamics +1510.01252 Theory +1510.01297 Computational Physics +1510.01310 Optics +1510.01339 +1510.01408 +1510.01418 Atomic Physics +1510.01487 +1510.01547 Data Analysis, Statistics and Probability +1510.01551 +1510.01649 Chemical Physics +1510.01651 Theory +1510.01715 Phenomenology +1510.01726 +1510.01766 Plasma Physics +1510.01859 +1510.01870 Soft Condensed Matter +1510.01887 Mesoscale and Nanoscale Physics +1510.01894 Materials Science +1510.01912 Phenomenology +1510.02007 Theory +1510.02012 Superconductivity +1510.02031 Soft Condensed Matter +1510.02034 Optics +1510.02048 Phenomenology +1510.02095 Earth and Planetary Astrophysics +1510.02099 Theory +1510.02128 Mesoscale and Nanoscale Physics +1510.02162 Astrophysics of Galaxies +1510.02253 Phenomenology +1510.02254 Superconductivity +1510.02478 Instrumentation and Methods for Astrophysics +1510.02479 Instrumentation and Methods for Astrophysics +1510.02489 Instrumentation and Methods for Astrophysics +1510.02490 Instrumentation and Methods for Astrophysics +1510.02529 Mesoscale and Nanoscale Physics +1510.02563 Theory +1510.02672 Atomic Physics +1510.02692 Plasma Physics +1510.02715 Materials Science +1510.02719 Numerical Analysis +1510.02766 Soft Condensed Matter +1510.02810 +1510.02887 Optics +1510.02898 +1510.02920 Optics +1510.02936 Phenomenology +1510.02965 Classical Analysis and ODEs +1510.02968 Quantum Gases +1510.03093 Earth and Planetary Astrophysics +1510.03113 Quantitative Methods +1510.03172 Quantitative Methods +1510.03177 Phenomenology +1510.03217 Superconductivity +1510.03268 Phenomenology +1510.03314 Optics +1510.03326 Soft Condensed Matter +1510.03413 Phenomenology +1510.03568 +1510.03593 Chaotic Dynamics +1510.03626 Phenomenology +1510.03668 Phenomenology +1510.03676 Distributed, Parallel, and Cluster Computing +1510.03718 Soft Condensed Matter +1510.03749 Optics +1510.03762 Phenomenology +1510.03763 Solar and Stellar Astrophysics +1510.03792 Instrumentation and Detectors +1510.03841 Mesoscale and Nanoscale Physics +1510.03857 Information Theory +1510.03877 Cosmology and Nongalactic Astrophysics +1510.03936 Optics +1510.04042 +1510.04084 Theory +1510.04116 Phenomenology +1510.04120 +1510.04177 Optics +1510.04288 High Energy Astrophysical Phenomena +1510.04358 Materials Science +1510.04369 Mesoscale and Nanoscale Physics +1510.04382 +1510.04401 Quantum Gases +1510.04422 Digital Libraries +1510.04477 High Energy Astrophysical Phenomena +1510.04660 Astrophysics of Galaxies +1510.04786 Materials Science +1510.04804 Mesoscale and Nanoscale Physics +1510.04910 Statistical Finance +1510.04950 Soft Condensed Matter +1510.04960 +1510.04979 Phenomenology +1510.05003 Quantum Gases +1510.05121 Quantum Gases +1510.05163 +1510.05259 Astrophysics of Galaxies +1510.05273 +1510.05303 +1510.05529 Soft Condensed Matter +1510.05536 Optics +1510.05657 Phenomenology +1510.05659 Astrophysics of Galaxies +1510.05715 Materials Science +1510.05735 Strongly Correlated Electrons +1510.05988 Chemical Physics +1510.05992 Physics Education +1510.06026 Cosmology and Nongalactic Astrophysics +1510.06032 Strongly Correlated Electrons +1510.06089 Phenomenology +1510.06100 Optics +1510.06105 Plasma Physics +1510.06127 Materials Science +1510.06223 Social and Information Networks +1510.06225 Solar and Stellar Astrophysics +1510.06239 Optics +1510.06413 Solar and Stellar Astrophysics +1510.06509 Superconductivity +1510.06601 Atomic Physics +1510.06690 Phenomenology +1510.06857 Quantum Gases +1510.06868 Mesoscale and Nanoscale Physics +1510.06895 Learning +1510.07002 Strongly Correlated Electrons +1510.07100 Lattice +1510.07236 Optics +1510.07279 Phenomenology +1510.07345 Superconductivity +1510.07477 Optics +1510.07478 Experiment +1510.07497 Materials Science +1510.07569 Materials Science +1510.07571 Instrumentation and Detectors +1510.07575 Strongly Correlated Electrons +1510.07580 Cosmology and Nongalactic Astrophysics +1510.07626 Astrophysics of Galaxies +1510.07629 Earth and Planetary Astrophysics +1510.07660 High Energy Astrophysical Phenomena +1510.07673 Mesoscale and Nanoscale Physics +1510.07699 Biomolecules +1510.07707 Optics +1510.07794 +1510.07831 Materials Science +1510.07847 Physics and Society +1510.07853 Chaotic Dynamics +1510.07967 +1510.07977 Strongly Correlated Electrons +1510.08092 Disordered Systems and Neural Networks +1510.08111 +1510.08133 Optimization and Control +1510.08220 Materials Science +1510.08306 Instrumentation and Detectors +1510.08340 +1510.08563 Mesoscale and Nanoscale Physics +1510.08602 Analysis of PDEs +1510.08691 Theory +1510.08726 Phenomenology +1510.08748 Formal Languages and Automata Theory +1510.08810 High Energy Astrophysical Phenomena +1510.08853 Earth and Planetary Astrophysics +1510.08918 Earth and Planetary Astrophysics +1510.08922 High Energy Astrophysical Phenomena +1510.09117 Distributed, Parallel, and Cluster Computing +1510.09158 Optics +1510.09204 Cosmology and Nongalactic Astrophysics +1511.00064 Fluid Dynamics +1511.00069 Exactly Solvable and Integrable Systems +1511.00171 Biological Physics +1511.00236 Chaotic Dynamics +1511.00254 Statistical Mechanics +1511.00327 Mesoscale and Nanoscale Physics +1511.00343 Solar and Stellar Astrophysics +1511.00391 Optics +1511.00518 Instrumentation and Methods for Astrophysics +1511.00555 Optics +1511.00558 Chemical Physics +1511.00612 Analysis of PDEs +1511.00629 Atomic Physics +1511.00812 Mesoscale and Nanoscale Physics +1511.00854 Theory +1511.00913 Phenomenology +1511.01012 Solar and Stellar Astrophysics +1511.01092 Astrophysics of Galaxies +1511.01183 Instrumentation and Methods for Astrophysics +1511.01201 Materials Science +1511.01221 Atomic Physics +1511.01251 +1511.01317 Astrophysics of Galaxies +1511.01323 Phenomenology +1511.01547 Mesoscale and Nanoscale Physics +1511.01592 +1511.01595 Strongly Correlated Electrons +1511.01623 Phenomenology +1511.01645 Mesoscale and Nanoscale Physics +1511.01701 Quantum Gases +1511.01729 +1511.01879 Materials Science +1511.01931 Accelerator Physics +1511.02016 Optics +1511.02208 Astrophysics of Galaxies +1511.02397 Optics +1511.02406 Phenomenology +1511.02449 Phenomenology +1511.02638 Fluid Dynamics +1511.02653 Superconductivity +1511.02749 Strongly Correlated Electrons +1511.02919 Computer Vision and Pattern Recognition +1511.02957 +1511.02961 Materials Science +1511.02971 Theory +1511.03116 Theory +1511.03206 Computer Vision and Pattern Recognition +1511.03208 Solar and Stellar Astrophysics +1511.03214 +1511.03228 +1511.03263 Astrophysics of Galaxies +1511.03318 Solar and Stellar Astrophysics +1511.03344 Earth and Planetary Astrophysics +1511.03373 Statistical Mechanics +1511.03419 Materials Science +1511.03492 Strongly Correlated Electrons +1511.03533 Optimization and Control +1511.03540 Phenomenology +1511.03594 Astrophysics of Galaxies +1511.03648 Optics +1511.03695 High Energy Astrophysical Phenomena +1511.03789 Astrophysics of Galaxies +1511.03799 +1511.03823 Solar and Stellar Astrophysics +1511.03859 Statistical Mechanics +1511.03919 Astrophysics of Galaxies +1511.04175 Soft Condensed Matter +1511.04318 Phenomenology +1511.04367 Materials Science +1511.04379 Phenomenology +1511.04490 Astrophysics of Galaxies +1511.04682 Solar and Stellar Astrophysics +1511.04760 Instrumentation and Methods for Astrophysics +1511.04796 Atomic Physics +1511.04802 Mesoscale and Nanoscale Physics +1511.04895 Optics +1511.04912 Physics and Society +1511.05103 Physics Education +1511.05135 Solar and Stellar Astrophysics +1511.05166 Astrophysics of Galaxies +1511.05206 +1511.05329 +1511.05336 Soft Condensed Matter +1511.05351 Chaotic Dynamics +1511.05416 Astrophysics of Galaxies +1511.05489 Atomic Physics +1511.05517 Soft Condensed Matter +1511.05724 Materials Science +1511.05828 Soft Condensed Matter +1511.05863 Quantum Gases +1511.05906 Dynamical Systems +1511.05918 Theory +1511.05965 Solar and Stellar Astrophysics +1511.05973 Earth and Planetary Astrophysics +1511.06019 Strongly Correlated Electrons +1511.06104 Neural and Evolutionary Computing +1511.06111 Mesoscale and Nanoscale Physics +1511.06292 Learning +1511.06310 Soft Condensed Matter +1511.06456 Learning +1511.06501 Fluid Dynamics +1511.06516 +1511.06564 Chemical Physics +1511.06580 Earth and Planetary Astrophysics +1511.06747 Learning +1511.06776 +1511.06777 Materials Science +1511.06840 +1511.06842 Theory +1511.06851 High Energy Astrophysical Phenomena +1511.06889 Solar and Stellar Astrophysics +1511.06935 Cosmology and Nongalactic Astrophysics +1511.06993 Experiment +1511.07047 +1511.07119 Astrophysics of Galaxies +1511.07138 Astrophysics of Galaxies +1511.07160 Solar and Stellar Astrophysics +1511.07258 Solar and Stellar Astrophysics +1511.07264 Mesoscale and Nanoscale Physics +1511.07344 Astrophysics of Galaxies +1511.07346 Phenomenology +1511.07404 Computer Vision and Pattern Recognition +1511.07430 Astrophysics of Galaxies +1511.07513 Astrophysics of Galaxies +1511.07547 Theory +1511.07602 Soft Condensed Matter +1511.07630 High Energy Astrophysical Phenomena +1511.07711 Algebraic Geometry +1511.07749 Space Physics +1511.07757 Solar and Stellar Astrophysics +1511.07761 Strongly Correlated Electrons +1511.07882 High Energy Astrophysical Phenomena +1511.07904 High Energy Astrophysical Phenomena +1511.07960 Strongly Correlated Electrons +1511.08045 Chaotic Dynamics +1511.08127 Optics +1511.08171 Solar and Stellar Astrophysics +1511.08217 Astrophysics of Galaxies +1511.08306 Optics +1511.08356 Solar and Stellar Astrophysics +1511.08608 Astrophysics of Galaxies +1511.08740 +1511.08815 High Energy Astrophysical Phenomena +1511.08928 Atomic Physics +1511.08955 Theory +1511.08992 High Energy Astrophysical Phenomena +1511.08998 +1511.09005 Superconductivity +1511.09010 +1511.09059 Databases +1511.09236 Physics and Society +1511.09358 +1512.00028 Fluid Dynamics +1512.00087 Materials Science +1512.00167 Astrophysics of Galaxies +1512.00190 Phenomenology +1512.00272 Computational Physics +1512.00286 Mesoscale and Nanoscale Physics +1512.00381 Astrophysics of Galaxies +1512.00453 Astrophysics of Galaxies +1512.00477 Astrophysics of Galaxies +1512.00492 Instrumentation and Methods for Astrophysics +1512.00649 Solar and Stellar Astrophysics +1512.00872 Soft Condensed Matter +1512.00878 Solar and Stellar Astrophysics +1512.00980 Astrophysics of Galaxies +1512.01000 Solar and Stellar Astrophysics +1512.01002 Solar and Stellar Astrophysics +1512.01050 Astrophysics of Galaxies +1512.01062 +1512.01109 Instrumentation and Detectors +1512.01212 Astrophysics of Galaxies +1512.01251 Astrophysics of Galaxies +1512.01350 Solar and Stellar Astrophysics +1512.01623 Geometric Topology +1512.01772 +1512.01992 Solar and Stellar Astrophysics +1512.02014 Physics and Society +1512.02122 High Energy Astrophysical Phenomena +1512.02124 Molecular Networks +1512.02292 Theory +1512.02362 Mesoscale and Nanoscale Physics +1512.02649 Earth and Planetary Astrophysics +1512.02702 Solar and Stellar Astrophysics +1512.02833 Spectral Theory +1512.02852 Earth and Planetary Astrophysics +1512.02955 +1512.03114 Solar and Stellar Astrophysics +1512.03304 Astrophysics of Galaxies +1512.03482 Pattern Formation and Solitons +1512.03493 +1512.03496 Solar and Stellar Astrophysics +1512.03499 Theory +1512.03505 Chemical Physics +1512.03529 Materials Science +1512.03534 Mesoscale and Nanoscale Physics +1512.03547 Data Structures and Algorithms +1512.03585 Earth and Planetary Astrophysics +1512.03625 Cosmology and Nongalactic Astrophysics +1512.03772 High Energy Astrophysical Phenomena +1512.03908 Fluid Dynamics +1512.03947 Optics +1512.04159 Astrophysics of Galaxies +1512.04298 Data Analysis, Statistics and Probability +1512.04300 High Energy Astrophysical Phenomena +1512.04518 Solar and Stellar Astrophysics +1512.04539 Solar and Stellar Astrophysics +1512.04549 Astrophysics of Galaxies +1512.04624 Statistical Mechanics +1512.04836 High Energy Astrophysical Phenomena +1512.04845 Solar and Stellar Astrophysics +1512.04903 Mesoscale and Nanoscale Physics +1512.04914 Mesoscale and Nanoscale Physics +1512.05271 Astrophysics of Galaxies +1512.05455 Computational Physics +1512.05483 Cryptography and Security +1512.05664 Solar and Stellar Astrophysics +1512.05768 Astrophysics of Galaxies +1512.05867 Materials Science +1512.05898 Phenomenology +1512.05902 Solar and Stellar Astrophysics +1512.05920 Earth and Planetary Astrophysics +1512.05960 Atomic Physics +1512.06006 +1512.06103 Materials Science +1512.06105 Biological Physics +1512.06106 Phenomenology +1512.06129 High Energy Astrophysical Phenomena +1512.06184 Systems and Control +1512.06251 Statistical Mechanics +1512.06261 Astrophysics of Galaxies +1512.06327 +1512.06495 Materials Science +1512.06512 Solar and Stellar Astrophysics +1512.06748 Solar and Stellar Astrophysics +1512.06814 Fluid Dynamics +1512.06865 Astrophysics of Galaxies +1512.06936 Mesoscale and Nanoscale Physics +1512.06996 +1512.07579 +1512.07673 Astrophysics of Galaxies +1512.08245 Strongly Correlated Electrons +1512.08399 Instrumentation and Detectors +1512.08425 Statistics Theory +1512.08729 Atomic Physics +1512.08868 Dynamical Systems +1512.08882 Mesoscale and Nanoscale Physics +1512.09211 +1601.00417 Atomic Physics +1601.00656 Cosmology and Nongalactic Astrophysics +1601.00660 High Energy Astrophysical Phenomena +1601.00895 Plasma Physics +1601.00971 Astrophysics of Galaxies +1601.01338 +1601.01520 Astrophysics of Galaxies +1601.01591 High Energy Astrophysical Phenomena +1601.01680 High Energy Astrophysical Phenomena +1601.01898 Theory +1601.02007 Astrophysics of Galaxies +1601.02072 Mesoscale and Nanoscale Physics +1601.02219 Mesoscale and Nanoscale Physics +1601.02222 Mesoscale and Nanoscale Physics +1601.02312 Mesoscale and Nanoscale Physics +1601.02345 Solar and Stellar Astrophysics +1601.02394 Earth and Planetary Astrophysics +1601.02418 +1601.02940 Instrumentation and Detectors +1601.03498 Materials Science +1601.03692 +1601.03755 +1601.03756 +1601.03788 Geophysics +1601.03870 Classical Analysis and ODEs +1601.03875 Rings and Algebras +1601.04120 Numerical Analysis +1601.04358 Analysis of PDEs +1601.04640 Computational Physics +1601.04694 Instrumentation and Detectors +1601.04696 Complex Variables +1601.04698 Instrumentation and Detectors +1601.04701 +1601.04702 Instrumentation and Detectors +1601.04724 Information Theory +1601.04730 Atmospheric and Oceanic Physics +1601.04731 Probability +1601.04735 +1601.04736 Applications +1601.04739 Physics and Society +1601.04742 +1601.04743 Computational Complexity +1601.04745 Information Retrieval +1601.04746 Social and Information Networks +1601.04747 Popular Physics +1601.04748 Optics +1601.04749 Networking and Internet Architecture +1601.04752 Combinatorics +1601.04753 Applications +1601.04754 Number Theory +1601.04756 Learning +1601.04762 Mesoscale and Nanoscale Physics +1601.04766 Probability +1601.04780 Cryptography and Security +1601.04781 Differential Geometry +1601.04782 Number Theory +1601.04785 Number Theory +1601.04786 Metric Geometry +1601.04790 +1601.04793 +1601.04794 Computational Complexity +1601.04795 Information Theory +1601.04799 Exactly Solvable and Integrable Systems +1601.04800 Information Retrieval +1601.04801 Optics +1601.04808 Probability +1601.04816 Graphics +1601.04818 Lattice +1601.04819 Differential Geometry +1601.04820 Distributed, Parallel, and Cluster Computing +1601.04824 Logic +1601.04825 Analysis of PDEs +1601.04826 Methodology +1601.04828 +1601.04830 Logic +1601.04832 +1601.04836 +1601.04840 Combinatorics +1601.04841 Methodology +1601.04842 +1601.04844 +1601.04845 Statistical Mechanics +1601.04850 Probability +1601.04856 Combinatorics +1601.04857 +1601.04858 Probability +1601.04859 Information Theory +1601.04861 Astrophysics of Galaxies +1601.04863 Computational Physics +1601.04864 +1601.04865 +1601.04873 Functional Analysis +1601.04875 Materials Science +1601.04882 Numerical Analysis +1601.04883 Astrophysics of Galaxies +1601.04884 Information Theory +1601.04885 Instrumentation and Detectors +1601.04891 Probability +1601.04895 Information Theory +1601.04898 Mesoscale and Nanoscale Physics +1601.04901 Accelerator Physics +1601.04902 Computer Vision and Pattern Recognition +1601.04904 Number Theory +1601.04907 Accelerator Physics +1601.04910 +1601.04911 Logic +1601.04912 Analysis of PDEs +1601.04913 Accelerator Physics +1601.04915 Geometric Topology +1601.04917 Chaotic Dynamics +1601.04922 Numerical Analysis +1601.04924 Symplectic Geometry +1601.04930 Differential Geometry +1601.04932 Differential Geometry +1601.04933 Mesoscale and Nanoscale Physics +1601.04935 Computational Complexity +1601.04937 History and Overview +1601.04938 Number Theory +1601.04942 Mesoscale and Nanoscale Physics +1601.04949 Economics +1601.04950 Digital Libraries +1601.04953 Analysis of PDEs +1601.04955 Algebraic Geometry +1601.04956 +1601.04960 Differential Geometry +1601.04961 Information Theory +1601.04964 Logic in Computer Science +1601.04965 Cosmology and Nongalactic Astrophysics +1601.04966 Theory +1601.04970 Number Theory +1601.04973 Symplectic Geometry +1601.04979 Combinatorics +1601.04982 Materials Science +1601.04984 Optimization and Control +1601.04986 Differential Geometry +1601.04987 Dynamical Systems +1601.04998 Category Theory +1601.04999 Number Theory +1601.05001 Differential Geometry +1601.05003 Data Structures and Algorithms +1601.05011 Optimization and Control +1601.05016 Commutative Algebra +1601.05019 +1601.05030 Computer Vision and Pattern Recognition +1601.05032 Number Theory +1601.05034 Combinatorics +1601.05036 Optics +1601.05042 Functional Analysis +1601.05044 Classical Physics +1601.05048 Quantum Algebra +1601.05050 Systems and Control +1601.05052 Distributed, Parallel, and Cluster Computing +1601.05053 Statistics Theory +1601.05055 Analysis of PDEs +1601.05058 Combinatorics +1601.05059 Geometric Topology +1601.05060 Mesoscale and Nanoscale Physics +1601.05069 Networking and Internet Architecture +1601.05073 Combinatorics +1601.05076 Combinatorics +1601.05078 Methodology +1601.05081 General Finance +1601.05082 Phenomenology +astro-ph/0607543 +math/0412492 Group Theory +math/0507266 Geometric Topology +math/0605471 Algebraic Topology +math/0611588 Group Theory +math/0612473 Geometric Topology +math/0701327 Algebraic Topology +0709.0321 Statistical Mechanics +0812.3677 Combinatorics +1007.1314 Algebraic Geometry +1010.3413 +1104.0320 Algebraic Geometry +1106.5519 Algebraic Geometry +1107.1435 General Topology +1109.4286 Algebraic Geometry +1110.1820 Differential Geometry +1110.5066 Disordered Systems and Neural Networks +1111.3988 Methodology +1201.4832 General Topology +1203.3555 Disordered Systems and Neural Networks +1204.1837 Algebraic Geometry +1204.6589 Algebraic Geometry +1205.3471 Rings and Algebras +1207.3999 Differential Geometry +1211.2718 Algebraic Geometry +1212.0373 Algebraic Geometry +1212.3276 Machine Learning +1303.5570 +1304.0806 Artificial Intelligence +1304.3914 +1304.5129 Materials Science +1305.1182 Algebraic Geometry +1305.3937 Information Theory +1307.1827 Learning +1308.2241 Soft Condensed Matter +1308.2893 Learning +1309.3340 Combinatorics +1309.4403 Algebraic Geometry +1310.2519 Mesoscale and Nanoscale Physics +1310.5726 Methodology +1310.8422 Dynamical Systems +1311.6358 Group Theory +1312.0258 Analysis of PDEs +1312.1237 Number Theory +1312.1428 Group Theory +1402.5129 Combinatorics +1403.0726 Numerical Analysis +1403.6799 Probability +1404.3746 Operator Algebras +1406.1755 Geometric Topology +1406.4175 Information Theory +1406.6579 Logic +1406.7642 Physics and Society +1407.7771 Dynamical Systems +1408.0376 Fluid Dynamics +1408.1223 +1408.4493 Geometric Topology +1408.5380 Computational Engineering, Finance, and Science +1408.5604 Statistics Theory +1409.0439 +1409.1111 Number Theory +1409.5900 Data Structures and Algorithms +1409.8379 Analysis of PDEs +1410.2412 +1410.3123 Optimization and Control +1410.3642 Classical Analysis and ODEs +1410.4351 Optimization and Control +1410.5464 Algebraic Topology +1410.5626 Networking and Internet Architecture +1410.7320 Algebraic Geometry +1411.0924 Applications +1411.1046 Optics +1411.1697 Analysis of PDEs +1411.6747 +1411.7256 Probability +1412.0011 Combinatorics +1412.1426 Differential Geometry +1412.2409 History and Philosophy of Physics +1412.2674 Algebraic Topology +1412.3890 Optimization and Control +1412.7282 Databases +1412.7804 Rings and Algebras +1412.8153 Algebraic Geometry +1501.01574 Geometric Topology +1501.02416 Complex Variables +1501.03097 Group Theory +1501.06161 +1502.01180 Mesoscale and Nanoscale Physics +1502.02432 Plasma Physics +1502.02822 Chaotic Dynamics +1502.03424 +1502.04239 Populations and Evolution +1502.05180 Applications +1502.05228 Logic +1502.05716 +1502.06586 Optics +1502.07891 +1503.02960 Phenomenology +1503.04669 Biological Physics +1503.06435 Algebraic Geometry +1503.07286 Accelerator Physics +1503.08206 Optics +1503.08384 Algebraic Geometry +1504.01336 Symplectic Geometry +1504.03993 +1504.04106 Algebraic Geometry +1504.04827 Representation Theory +1504.07527 Cosmology and Nongalactic Astrophysics +1504.08318 Physics and Society +1505.00209 +1505.02033 Other Quantitative Biology +1505.03517 Phenomenology +1505.03904 Algebraic Geometry +1505.05858 High Energy Astrophysical Phenomena +1505.06622 Logic in Computer Science +1505.07160 Analysis of PDEs +1505.07442 Representation Theory +1505.07445 Probability +1505.07754 Algebraic Geometry +1505.07816 Classical Analysis and ODEs +1506.00292 Optimization and Control +1506.02243 Computational Complexity +1506.02797 Combinatorics +1506.03792 Information Theory +1506.04633 +1506.08298 Group Theory +1506.08300 Group Theory +1507.00108 Methodology +1507.01653 Number Theory +1507.02988 Programming Languages +1507.03254 Chaotic Dynamics +1507.03260 Chaotic Dynamics +1507.03753 Dynamical Systems +1507.03857 Information Theory +1507.04087 Group Theory +1507.04113 Social and Information Networks +1507.05131 Machine Learning +1507.05150 Multimedia +1507.05573 Differential Geometry +1507.05987 Phenomenology +1507.06556 Theory +1507.07008 Phenomenology +1507.07049 Programming Languages +1507.08116 Quantum Gases +1507.08517 Number Theory +1507.08907 Soft Condensed Matter +1508.00304 Materials Science +1508.00858 Optimization and Control +1508.01424 Strongly Correlated Electrons +1508.01908 Classical Physics +1508.02166 Information Theory +1508.02293 Algebraic Geometry +1508.03945 Analysis of PDEs +1508.04929 Strongly Correlated Electrons +1508.04948 Statistics Theory +1509.00092 Computational Complexity +1509.00478 Quantum Gases +1509.00919 Mesoscale and Nanoscale Physics +1509.01022 Strongly Correlated Electrons +1509.01514 Computer Vision and Pattern Recognition +1509.02206 Strongly Correlated Electrons +1509.02295 Mesoscale and Nanoscale Physics +1509.02680 Quantum Gases +1509.03643 Number Theory +1509.03785 Analysis of PDEs +1509.03917 Machine Learning +1509.04270 Optics +1509.04377 Materials Science +1509.04450 Fluid Dynamics +1509.06872 Disordered Systems and Neural Networks +1509.07570 Physics Education +1509.08409 Molecular Networks +1509.08590 +1509.09198 Numerical Analysis +1509.09255 Strongly Correlated Electrons +1510.00484 Plasma Physics +1510.00628 Fluid Dynamics +1510.00685 +1510.00882 +1510.01331 Strongly Correlated Electrons +1510.01433 Number Theory +1510.01685 Methodology +1510.02103 Theory +1510.03681 Statistical Mechanics +1510.04663 Probability +1510.04932 Phenomenology +1510.05234 Quantitative Methods +1510.05466 Optimization and Control +1510.05622 Algebraic Geometry +1510.06310 Probability +1510.06889 Materials Science +1510.07305 Differential Geometry +1510.07489 Disordered Systems and Neural Networks +1510.07836 +1510.08771 Complex Variables +1511.00363 Learning +1511.00721 Optimization and Control +1511.02881 Mesoscale and Nanoscale Physics +1511.03096 Differential Geometry +1511.03128 Strongly Correlated Electrons +1511.04704 Combinatorics +1511.04706 Probability +1511.04847 Atomic Physics +1511.05277 Fluid Dynamics +1511.05767 Group Theory +1511.06107 Mesoscale and Nanoscale Physics +1511.06389 Disordered Systems and Neural Networks +1511.06481 Machine Learning +1511.06499 Machine Learning +1511.06552 Quantum Gases +1511.07356 Computer Vision and Pattern Recognition +1511.08313 Mesoscale and Nanoscale Physics +1511.08470 Cosmology and Nongalactic Astrophysics +1512.01087 +1512.02028 +1512.02497 Computer Vision and Pattern Recognition +1512.02622 Optics +1512.03729 Logic +1512.03983 +1512.04008 Theory +1512.04224 Theory +1512.04654 Cosmology and Nongalactic Astrophysics +1512.06275 Rings and Algebras +1512.06722 +1512.07598 Mesoscale and Nanoscale Physics +1512.07740 Theory +1512.07932 Theory +1512.08255 Phenomenology +1512.08266 Statistical Mechanics +1512.08762 Metric Geometry +1512.08828 Group Theory +1512.09169 Classical Analysis and ODEs +1512.09257 Quantum Gases +1512.09335 Computer Science and Game Theory +1601.00654 +1601.01091 Mesoscale and Nanoscale Physics +1601.02226 Dynamical Systems +1601.03088 Fluid Dynamics +1601.03320 Analysis of PDEs +1601.03586 Representation Theory +1601.04262 Statistics Theory +1601.04270 Mesoscale and Nanoscale Physics +1601.04375 Statistical Mechanics +1601.04620 +1601.04929 Quantum Gases +1601.05428 Earth and Planetary Astrophysics +1601.07679 Physics and Society +1602.00563 Databases +1602.00609 Optics +1602.00944 Instrumentation and Detectors +1602.01540 Geophysics +1602.01896 Computer Science and Game Theory +1602.02039 Theory +1602.02692 Computers and Society +1602.02972 Materials Science +1602.03321 Optics +1602.04952 Distributed, Parallel, and Cluster Computing +1602.05367 Mesoscale and Nanoscale Physics +1602.07372 Solar and Stellar Astrophysics +1602.07752 Theory +1602.07975 Theory +1602.08580 Functional Analysis +1602.08594 Strongly Correlated Electrons +1603.00682 +1603.00758 +1603.00776 Earth and Planetary Astrophysics +1603.01705 Algebraic Geometry +1603.01785 Numerical Analysis +1603.01851 Applications +1603.03845 Representation Theory +1603.04332 Classical Analysis and ODEs +1603.05172 Mesoscale and Nanoscale Physics +1603.05572 Information Retrieval +1603.06198 Functional Analysis +1603.06232 Algebraic Geometry +1603.06515 Earth and Planetary Astrophysics +1603.06520 Earth and Planetary Astrophysics +1603.06538 Subcellular Processes +1603.07025 Social and Information Networks +1603.07291 Materials Science +1603.08143 Probability +1603.08149 +1603.08367 Learning +1603.08449 Statistical Mechanics +1603.08536 History and Overview +1603.08612 Operator Algebras +1603.08871 Astrophysics of Galaxies +1603.09303 Computational Physics +1603.09463 +1604.00295 Number Theory +1604.00591 +1604.02441 Algebraic Geometry +1604.02542 Complex Variables +1604.02555 Functional Analysis +1604.02620 Physics Education +1604.02742 Information Theory +1604.02796 Social and Information Networks +1604.02818 +1604.03126 Phenomenology +1604.03159 Social and Information Networks +1604.03240 Social and Information Networks +1604.03279 Analysis of PDEs +1604.03302 Computational Geometry +1604.03321 +1604.03625 Representation Theory +1604.03701 Theory +1604.03703 Distributed, Parallel, and Cluster Computing +1604.03797 General Physics +1604.03885 Number Theory +1604.03980 +1604.04018 Computer Vision and Pattern Recognition +1604.04042 Experiment +1604.04083 Analysis of PDEs +1604.04401 Analysis of PDEs +1604.04414 Classical Physics +1604.04633 Statistical Mechanics +1604.04638 Software Engineering +1604.04639 Programming Languages +1604.04641 Digital Libraries +1604.04642 Combinatorics +1604.04646 Numerical Analysis +1604.04649 Computers and Society +1604.04652 Number Theory +1604.04654 Tissues and Organs +1604.04655 Logic +1604.04656 Methodology +1604.04657 Optimization and Control +1604.04658 Atomic Physics +1604.04659 Robotics +1604.04663 Algebraic Geometry +1604.04664 Data Structures and Algorithms +1604.04666 Information Theory +1604.04667 Cryptography and Security +1604.04668 Atomic Physics +1604.04669 Sound +1604.04672 Representation Theory +1604.04673 Computer Vision and Pattern Recognition +1604.04675 Computer Vision and Pattern Recognition +1604.04676 Computer Vision and Pattern Recognition +1604.04677 Computation and Language +1604.04678 Computer Vision and Pattern Recognition +1604.04680 +1604.04682 Classical Analysis and ODEs +1604.04685 Numerical Analysis +1604.04686 Combinatorics +1604.04687 Applications +1604.04688 Materials Science +1604.04692 Fluid Dynamics +1604.04694 Materials Science +1604.04695 Programming Languages +1604.04696 Social and Information Networks +1604.04699 Networking and Internet Architecture +1604.04700 Algebraic Topology +1604.04703 Theory +1604.04704 Strongly Correlated Electrons +1604.04705 Digital Libraries +1604.04711 Computers and Society +1604.04713 Optimization and Control +1604.04715 Analysis of PDEs +1604.04720 Number Theory +1604.04721 Artificial Intelligence +1604.04723 Cryptography and Security +1604.04724 Computer Vision and Pattern Recognition +1604.04725 Multiagent Systems +1604.04727 Multiagent Systems +1604.04728 Multiagent Systems +1604.04729 Programming Languages +1604.04730 Multiagent Systems +1604.04732 Applications +1604.04733 Rings and Algebras +1604.04734 +1604.04736 Multiagent Systems +1604.04737 Multiagent Systems +1604.04738 Optics +1604.04739 +1604.04741 Machine Learning +1604.04742 Phenomenology +1604.04743 Networking and Internet Architecture +1604.04744 Complex Variables +1604.04745 Astrophysics of Galaxies +1604.04746 Category Theory +1604.04749 Human-Computer Interaction +1604.04750 +1604.04753 Algebraic Geometry +1604.04754 Materials Science +1604.04756 Dynamical Systems +1604.04758 Physics and Society +1604.04759 Combinatorics +1604.04762 Physics and Society +1604.04765 Probability +1604.04766 Combinatorics +1604.04767 Learning +1604.04771 Dynamical Systems +1604.04775 Number Theory +1604.04778 +1604.04779 Robotics +1604.04780 Digital Libraries +1604.04784 Computer Vision and Pattern Recognition +1604.04786 Biomolecules +1604.04788 Solar and Stellar Astrophysics +1604.04791 Phenomenology +1604.04792 Formal Languages and Automata Theory +1604.04793 Methodology +1604.04794 Optics +1604.04796 Neurons and Cognition +1604.04797 Combinatorics +1604.04798 Analysis of PDEs +1604.04802 Computation and Language +1604.04803 Genomics +1604.04806 Analysis of PDEs +1604.04809 Computer Science and Game Theory +1604.04810 Cryptography and Security +1604.04811 Social and Information Networks +1604.04815 Distributed, Parallel, and Cluster Computing +1604.04816 Adaptation and Self-Organizing Systems +1604.04819 +1604.04823 Networking and Internet Architecture +1604.04824 Networking and Internet Architecture +1604.04825 Computer Vision and Pattern Recognition +1604.04828 Algebraic Geometry +1604.04829 Discrete Mathematics +1604.04830 Theory +1604.04831 Earth and Planetary Astrophysics +1604.04833 Geometric Topology +1604.04834 Information Theory +1604.04839 Chemical Physics +1604.04840 Optimization and Control +1604.04842 Computer Vision and Pattern Recognition +1604.04843 Materials Science +1604.04844 Statistical Mechanics +1604.04845 Optimization and Control +1604.04847 High Energy Astrophysical Phenomena +1604.04850 Phenomenology +1604.04852 Optimization and Control +1604.04853 +1604.04856 +1604.04858 Functional Analysis +1604.04860 Information Theory +1604.04862 Differential Geometry +1604.04863 Numerical Analysis +1604.04866 Commutative Algebra +1604.04870 Geometric Topology +1604.04871 Computer Science and Game Theory +1604.04873 Computation and Language +1604.04874 Probability +1604.04875 Chemical Physics +1604.04879 Learning +1604.04880 Dynamical Systems +1604.04881 Analysis of PDEs +1604.04884 Number Theory +1604.04886 Analysis of PDEs +1604.04887 Analysis of PDEs +1604.04888 Information Theory +1604.04891 History and Philosophy of Physics +1604.04892 Cryptography and Security +1604.04893 Learning +1604.04894 Artificial Intelligence +1604.04895 Computers and Society +1604.04896 Digital Libraries +1604.04897 Probability +1604.04898 Superconductivity +1604.04899 Methodology +1604.04902 Geometric Topology +1604.04903 Quantitative Methods +1604.04904 Classical Analysis and ODEs +1604.04910 Statistical Mechanics +1604.04912 Logic +1604.04914 Soft Condensed Matter +1604.04915 Algebraic Geometry +1604.04917 Earth and Planetary Astrophysics +1604.04920 Classical Analysis and ODEs +1604.04926 Computer Vision and Pattern Recognition +1604.04927 Metric Geometry +1604.04928 Computer Science and Game Theory +1604.04931 Applications +1604.04937 Optics +1604.04939 Machine Learning +1604.04941 Instrumentation and Methods for Astrophysics +1604.04945 Combinatorics +1604.04946 Classical Physics +1604.04947 Combinatorics +1604.04951 Performance +1604.04953 Computer Vision and Pattern Recognition +1604.04955 +1604.04956 Combinatorics +1604.04957 Solar and Stellar Astrophysics +1604.04958 Atomic Physics +1604.04960 Machine Learning +1604.04961 Information Theory +1604.04964 Superconductivity +1604.04968 Information Theory +1604.04969 Group Theory +1604.04973 Group Theory +1604.04976 Complex Variables +1604.04981 Complex Variables +1604.04983 Cryptography and Security +1604.04986 Medical Physics +1604.04988 Solar and Stellar Astrophysics +1604.04989 Quantum Algebra +1604.04992 Information Theory +1604.04994 Computer Vision and Pattern Recognition +1604.04997 Performance +1604.04998 +1604.05005 Information Retrieval +1604.05008 Neural and Evolutionary Computing +1604.05009 Analysis of PDEs +1604.05013 +1604.05014 Complex Variables +1604.05015 Computational Engineering, Finance, and Science +1604.05018 Emerging Technologies +1604.05019 Number Theory +1604.05020 Combinatorics +1604.05021 Dynamical Systems +1604.05023 Data Structures and Algorithms +1604.05024 Learning +1604.05034 Computational Physics +1604.05038 Functional Analysis +1604.05039 Strongly Correlated Electrons +1604.05041 Algebraic Geometry +1604.05042 Optics +1604.05044 Programming Languages +1604.05046 Optics +1604.05047 Logic in Computer Science +1604.05048 Networking and Internet Architecture +1604.05049 Optics +1604.05055 Information Theory +1604.05056 Cell Behavior +1604.05057 Complex Variables +1604.05058 Cryptography and Security +1604.05060 Differential Geometry +1604.05061 Numerical Analysis +1604.05062 Soft Condensed Matter +1604.05063 +1604.05064 Robotics +1604.05066 Combinatorics +1604.05067 Classical Analysis and ODEs +1604.05070 Digital Libraries +1604.05072 Spectral Theory +1604.05073 Computation and Language +1604.05074 Numerical Analysis +1604.05075 Instrumentation and Detectors +1604.05077 Classical Analysis and ODEs +1604.05078 Earth and Planetary Astrophysics +1604.05082 Tissues and Organs +1604.05086 Artificial Intelligence +1604.05090 Computer Science and Game Theory +1604.05095 Networking and Internet Architecture +1604.05102 Quantitative Methods +1604.05103 Data Structures and Algorithms +1604.05104 Analysis of PDEs +1604.05106 Optics +1604.05107 Networking and Internet Architecture +1604.05111 Information Theory +1604.05114 Functional Analysis +1604.05116 General Topology +1604.05118 Optimization and Control +1604.05120 Numerical Analysis +1604.05122 Computational Engineering, Finance, and Science +1604.05124 Probability +1604.05126 Numerical Analysis +1604.05128 Logic +1604.05132 Computer Vision and Pattern Recognition +1604.05134 Optics +1604.05135 Combinatorics +1604.05141 Cosmology and Nongalactic Astrophysics +1604.05142 Astrophysics of Galaxies +1604.05143 High Energy Astrophysical Phenomena +1604.05144 Computer Vision and Pattern Recognition +1604.05148 Classical Analysis and ODEs +1604.05151 Information Theory +1604.05152 General Mathematics +1604.05154 Classical Analysis and ODEs +1604.05156 Materials Science +1604.05157 Classical Analysis and ODEs +1604.05159 Plasma Physics +1604.05160 General Physics +1604.05161 Plasma Physics +1604.05162 General Physics +1604.05163 Classical Analysis and ODEs +1604.05165 General Physics +1604.05167 Accelerator Physics +1604.05169 Information Theory +1604.05171 Medical Physics +1604.05174 General Physics +1604.05177 Medical Physics +1604.05178 Computational Finance +1604.05179 Classical Analysis and ODEs +1604.05180 Cryptography and Security +1604.05181 Theory +1604.05184 Classical Analysis and ODEs +1604.05185 Analysis of PDEs +1604.05192 Logic +1604.05194 Computer Science and Game Theory +1604.05196 Geometric Topology +1604.05198 Neural and Evolutionary Computing +1604.05201 Computational Engineering, Finance, and Science +1604.05207 Popular Physics +1604.05208 Materials Science +1604.05210 Computer Vision and Pattern Recognition +1604.05214 Probability +1604.05215 Materials Science +1604.05216 Astrophysics of Galaxies +1604.05218 Analysis of PDEs +1604.05219 Numerical Analysis +1604.05220 Earth and Planetary Astrophysics +1604.05221 Accelerator Physics +1604.05223 Number Theory +1604.05226 Combinatorics +1604.05227 Numerical Analysis +1604.05229 Analysis of PDEs +1604.05231 Probability +1604.05233 Astrophysics of Galaxies +1604.05235 Probability +1604.05236 Materials Science +1604.05238 Differential Geometry +1604.05243 Computer Science and Game Theory +1604.05244 Optics +1604.05245 History and Overview +1604.05247 General Physics +1604.05248 Metric Geometry +1604.05249 Metric Geometry +1604.05251 Machine Learning +1604.05255 Networking and Internet Architecture +1604.05256 Information Theory +1604.05258 Logic in Computer Science +1604.05259 Probability +1604.05260 General Physics +1604.05261 Algebraic Geometry +1604.05262 Combinatorics +1604.05263 Machine Learning +1604.05264 Computational Complexity +1604.05265 Soft Condensed Matter +1604.05267 Classical Analysis and ODEs +1604.05269 Group Theory +1604.05272 Databases +1604.05273 Artificial Intelligence +1604.05274 Databases +1604.05279 Soft Condensed Matter +1604.05281 Group Theory +1604.05282 Information Theory +1604.05287 Probability +1604.05290 Differential Geometry +1604.05293 Plasma Physics +1604.05294 Number Theory +1604.05296 Strongly Correlated Electrons +cond-mat/0407118 Other Condensed Matter +math/0601490 Logic +math/0607488 Operator Algebras +quant-ph/0303004 +1607.06920 +0807.3096 Probability +0810.3218 Analysis of PDEs +1004.2937 Algebraic Geometry +1201.1933 Differential Geometry +1205.2693 Astrophysics of Galaxies +1206.4255 Algebraic Geometry +1210.4140 Analysis of PDEs +1303.1333 Statistical Mechanics +1303.5687 Algebraic Geometry +1303.5690 Algebraic Geometry +1311.0398 Numerical Analysis +1312.2922 Algebraic Geometry +1403.6625 Algebraic Geometry +1404.6543 Optimization and Control +1404.7632 Statistical Finance +1405.0678 Algebraic Geometry +1406.1840 Analysis of PDEs +1406.1955 Dynamical Systems +1406.4427 History and Philosophy of Physics +1407.6327 Data Structures and Algorithms +1409.1289 Group Theory +1409.7979 Computer Science and Game Theory +1409.8286 Cosmology and Nongalactic Astrophysics +1410.4391 Machine Learning +1410.4718 Applications +1411.4843 Algebraic Geometry +1412.3523 Number Theory +1501.00949 Probability +1501.01732 Statistics Theory +1501.04713 Algebraic Geometry +1501.06630 Applications +1502.01053 Systems and Control +1502.06807 Computer Vision and Pattern Recognition +1502.07235 +1503.02900 Classical Analysis and ODEs +1503.04209 Rings and Algebras +1503.06939 Analysis of PDEs +1504.00955 Analysis of PDEs +1504.01299 Algebraic Geometry +1505.07325 Dynamical Systems +1506.00503 Complex Variables +1507.02843 Complex Variables +1507.03904 Fluid Dynamics +1507.05605 Data Structures and Algorithms +1507.08868 Phenomenology +1508.02440 Computer Science and Game Theory +1508.03362 Algebraic Geometry +1509.00096 Numerical Analysis +1509.02960 Number Theory +1509.03712 Formal Languages and Automata Theory +1509.04880 Data Structures and Algorithms +1509.07742 Analysis of PDEs +1510.00010 +1510.03823 Experiment +1510.07361 Methodology +1510.08808 History and Philosophy of Physics +1511.00131 +1511.02839 +1511.02991 Cosmology and Nongalactic Astrophysics +1511.04458 Computer Vision and Pattern Recognition +1511.06680 Statistical Mechanics +1512.00907 Computer Vision and Pattern Recognition +1512.02254 Data Structures and Algorithms +1512.03978 Phenomenology +1512.04026 Combinatorics +1512.04247 Neurons and Cognition +1512.04427 General Physics +1512.07037 Mesoscale and Nanoscale Physics +1601.00724 Soft Condensed Matter +1601.03800 Combinatorics +1601.03975 Optimization and Control +1601.03978 Numerical Analysis +1601.07282 +1601.08143 Phenomenology +1602.02272 Number Theory +1602.03484 Soft Condensed Matter +1602.03642 Cryptography and Security +1602.04079 Algebraic Geometry +1602.07228 Applications +1603.00652 Robotics +1603.01076 Computer Vision and Pattern Recognition +1603.01446 Algebraic Topology +1603.02004 Numerical Analysis +1603.02157 Instrumentation and Detectors +1603.02266 Quantitative Methods +1603.03197 Group Theory +1603.04589 Superconductivity +1603.06028 Cryptography and Security +1603.06919 Algebraic Geometry +1603.09560 Probability +1604.00248 Statistical Mechanics +1604.00299 Optimization and Control +1604.00762 Physics and Society +1604.02067 Number Theory +1604.03048 Strongly Correlated Electrons +1604.05093 +1604.08032 Theory +1604.08366 Theory +1604.08543 Number Theory +1605.01793 Dynamical Systems +1605.03389 Computer Vision and Pattern Recognition +1605.04123 Analysis of PDEs +1605.04316 Quantum Gases +1605.05873 Soft Condensed Matter +1605.08308 Multimedia +1605.08711 Quantum Algebra +1605.09148 Numerical Analysis +1605.09694 +1605.09779 Cryptography and Security +1606.00457 Fluid Dynamics +1606.00897 Quantitative Methods +1606.01869 Machine Learning +1606.02363 Analysis of PDEs +1606.02369 Algebraic Geometry +1606.03602 Classical Analysis and ODEs +1606.03961 Analysis of PDEs +1606.04300 Computation and Language +1606.06169 Cosmology and Nongalactic Astrophysics +1606.06493 General Topology +1606.06611 Computation +1606.07659 Learning +1606.07972 Information Theory +1606.08181 Algebraic Geometry +1606.09231 Theory +1607.00087 Artificial Intelligence +1607.00193 Phenomenology +1607.00408 Instrumentation and Methods for Astrophysics +1607.00734 Statistical Mechanics +1607.01240 Theory +1607.01254 Artificial Intelligence +1607.02349 General Finance +1607.03660 Optimization and Control +1607.04427 Learning +1607.04512 Instrumentation and Detectors +1607.05687 +1607.06547 Phenomenology +1607.06724 Materials Science +1607.06975 Experiment +1607.07022 +1607.08756 Optimization and Control +1607.08786 Phenomenology +1608.02162 Cosmology and Nongalactic Astrophysics +1608.02217 Lattice +1608.04300 Applications +1608.04549 Probability +1608.05831 Optics +1608.05973 Methodology +1608.06573 Classical Analysis and ODEs +1608.07597 Machine Learning +1608.08308 Statistical Mechanics +1608.08351 Theory +1608.08858 Phenomenology +1609.00078 Physics and Society +1609.00246 Numerical Analysis +1609.01591 Phenomenology +1609.01626 Solar and Stellar Astrophysics +1609.01892 +1609.02218 Atomic Physics +1609.02223 Theory +1609.02435 Strongly Correlated Electrons +1609.02481 Astrophysics of Galaxies +1609.04668 Analysis of PDEs +1609.04735 Networking and Internet Architecture +1609.04904 Computation and Language +1609.05120 +1609.05614 +1609.05847 Logic in Computer Science +1609.06212 Analysis of PDEs +1609.08376 Lattice +1609.09011 Probability +1610.00261 Trading and Market Microstructure +1610.02303 Exactly Solvable and Integrable Systems +1610.02584 Cell Behavior +1610.02722 +1610.02861 Probability +1610.03485 Strongly Correlated Electrons +1610.04915 Data Structures and Algorithms +1610.05314 Theory +1610.05541 Computer Vision and Pattern Recognition +1610.06736 Representation Theory +1610.07262 Machine Learning +1610.08324 Statistical Mechanics +1610.09360 Mesoscale and Nanoscale Physics +1610.09563 Astrophysics of Galaxies +1611.02799 Materials Science +1611.02940 +1611.03068 Learning +1611.03329 Computational Physics +1611.04056 Differential Geometry +1611.04333 Methodology +1611.04620 Operator Algebras +1611.06075 +1611.06877 Representation Theory +1611.06962 Computer Vision and Pattern Recognition +1611.06970 Spectral Theory +1611.07037 Theory +1611.07342 Mesoscale and Nanoscale Physics +1611.07462 History and Overview +1611.07590 Superconductivity +1611.08400 Discrete Mathematics +1611.08715 Classical Analysis and ODEs +1611.08970 +1611.09060 Combinatorics +1611.09096 Combinatorics +1611.09219 Computer Science and Game Theory +1611.09346 Computational Physics +1611.09367 Mesoscale and Nanoscale Physics +1611.09404 Functional Analysis +1611.09419 Robotics +1611.09445 Mesoscale and Nanoscale Physics +1611.09514 High Energy Astrophysical Phenomena +1611.09543 Plasma Physics +1611.09544 Biomolecules +1611.09549 Phenomenology +1611.09602 Classical Analysis and ODEs +1611.09667 Lattice +1611.09958 Machine Learning +1611.09972 Methodology +1611.10121 Operator Algebras +1612.00012 Phenomenology +1612.00106 Optimization and Control +1612.00108 Learning +1612.00144 Computer Vision and Pattern Recognition +1612.00239 Exactly Solvable and Integrable Systems +1612.00274 Soft Condensed Matter +1612.00323 Computers and Society +1612.00335 Optics +1612.00440 Phenomenology +1612.00441 +1612.00443 Other Computer Science +1612.00444 Phenomenology +1612.00445 Hardware Architecture +1612.00449 Astrophysics of Galaxies +1612.00450 Phenomenology +1612.00451 Astrophysics of Galaxies +1612.00453 Theory +1612.00455 Cosmology and Nongalactic Astrophysics +1612.00456 Instrumentation and Methods for Astrophysics +1612.00457 High Energy Astrophysical Phenomena +1612.00458 Astrophysics of Galaxies +1612.00460 Phenomenology +1612.00461 Astrophysics of Galaxies +1612.00462 Theory +1612.00463 Chaotic Dynamics +1612.00464 Astrophysics of Galaxies +1612.00466 Phenomenology +1612.00467 Computation and Language +1612.00469 Mesoscale and Nanoscale Physics +1612.00470 Theory +1612.00471 Combinatorics +1612.00472 Computer Vision and Pattern Recognition +1612.00475 Machine Learning +1612.00476 Databases +1612.00477 Astrophysics of Galaxies +1612.00478 Computer Vision and Pattern Recognition +1612.00480 Multiagent Systems +1612.00487 Number Theory +1612.00489 Number Theory +1612.00491 Astrophysics of Galaxies +1612.00492 +1612.00493 Statistical Mechanics +1612.00494 +1612.00496 Computer Vision and Pattern Recognition +1612.00497 Applications +1612.00498 Probability +1612.00499 Numerical Analysis +1612.00500 Computer Vision and Pattern Recognition +1612.00502 Physics and Society +1612.00503 Methodology +1612.00504 Soft Condensed Matter +1612.00505 Optimization and Control +1612.00506 Algebraic Topology +1612.00507 Atomic and Molecular Clusters +1612.00509 Commutative Algebra +1612.00510 +1612.00511 Phenomenology +1612.00513 Astrophysics of Galaxies +1612.00514 Probability +1612.00515 Classical Analysis and ODEs +1612.00517 Complex Variables +1612.00518 Statistical Mechanics +1612.00519 Complex Variables +1612.00522 Computer Vision and Pattern Recognition +1612.00523 Computer Vision and Pattern Recognition +1612.00526 Analysis of PDEs +1612.00529 Experiment +1612.00530 Mathematical Software +1612.00532 Algebraic Topology +1612.00536 Representation Theory +1612.00537 Dynamical Systems +1612.00539 Classical Analysis and ODEs +1612.00541 Algebraic Topology +1612.00542 Computer Vision and Pattern Recognition +1612.00545 Optics +1612.00546 Exactly Solvable and Integrable Systems +1612.00548 Algebraic Topology +1612.00549 Methodology +1612.00550 Quantum Gases +1612.00551 Theory +1612.00552 Information Theory +1612.00553 Materials Science +1612.00554 Learning +1612.00555 Machine Learning +1612.00556 Algebraic Geometry +1612.00557 +1612.00559 Differential Geometry +1612.00562 Numerical Analysis +1612.00563 Learning +1612.00565 Robotics +1612.00566 Optics +1612.00567 Computation and Language +1612.00568 +1612.00569 Mesoscale and Nanoscale Physics +1612.00570 Systems and Control +1612.00571 Statistics Theory +1612.00572 Mesoscale and Nanoscale Physics +1612.00574 Soft Condensed Matter +1612.00576 Computer Vision and Pattern Recognition +1612.00577 Differential Geometry +1612.00578 +1612.00581 +1612.00582 Computers and Society +1612.00583 Machine Learning +1612.00585 Learning +1612.00587 Probability +1612.00588 Probability +1612.00589 Combinatorics +1612.00590 High Energy Astrophysical Phenomena +1612.00591 Astrophysics of Galaxies +1612.00592 Space Physics +1612.00593 Computer Vision and Pattern Recognition +1612.00594 Mesoscale and Nanoscale Physics +1612.00596 Computer Vision and Pattern Recognition +1612.00597 Complex Variables +1612.00598 Lattice +1612.00599 Learning +1612.00602 Space Physics +1612.00604 Computer Vision and Pattern Recognition +1612.00606 Computer Vision and Pattern Recognition +1612.00607 Phenomenology +1612.00608 Instrumentation and Detectors +1612.00611 Learning +1612.00612 Instrumentation and Methods for Astrophysics +1612.00615 Machine Learning +1612.00617 Numerical Analysis +1612.00618 High Energy Astrophysical Phenomena +1612.00619 +1612.00621 Lattice +1612.00623 Databases +1612.00624 Instrumentation and Detectors +1612.00625 Computer Vision and Pattern Recognition +1612.00626 Instrumentation and Detectors +1612.00627 Differential Geometry +1612.00629 +1612.00631 +1612.00633 Mesoscale and Nanoscale Physics +1612.00636 Representation Theory +1612.00637 Learning +1612.00641 Soft Condensed Matter +1612.00642 Functional Analysis +1612.00643 Phenomenology +1612.00644 Neurons and Cognition +1612.00645 Computer Vision and Pattern Recognition +1612.00646 Operator Algebras +1612.00648 Combinatorics +1612.00649 Systems and Control +1612.00651 Functional Analysis +1612.00652 Algebraic Geometry +1612.00654 +1612.00657 Numerical Analysis +1612.00658 Adaptation and Self-Organizing Systems +1612.00661 Combinatorics +1612.00662 Machine Learning +1612.00663 Functional Analysis +1612.00664 Applications +1612.00665 Geometric Topology +1612.00666 Programming Languages +1612.00670 Programming Languages +1612.00671 Neural and Evolutionary Computing +1612.00672 Chemical Physics +1612.00673 Experiment +1612.00675 Computational Complexity +1612.00676 History and Philosophy of Physics +1612.00677 Optimization and Control +1612.00678 Algebraic Geometry +1612.00679 Materials Science +1612.00680 Dynamical Systems +1612.00682 +1612.00683 +1612.00684 +1612.00686 Learning +1612.00688 Combinatorics +1612.00691 Phenomenology +1612.00692 Probability +1612.00693 Logic in Computer Science +1612.00696 Theory +1612.00698 Complex Variables +1612.00700 Phenomenology +1612.00701 Theory +1612.00703 Neurons and Cognition +1612.00704 Soft Condensed Matter +1612.00706 Solar and Stellar Astrophysics +1612.00707 Optics +1612.00708 +1612.00711 Instrumentation and Methods for Astrophysics +1612.00712 Neural and Evolutionary Computing +1612.00713 +1612.00715 Systems and Control +1612.00716 Systems and Control +1612.00719 Number Theory +1612.00720 Mathematical Finance +1612.00725 Cosmology and Nongalactic Astrophysics +1612.00727 +1612.00730 Computers and Society +1612.00731 Combinatorics +1612.00732 Populations and Evolution +1612.00733 Computers and Society +1612.00734 Software Engineering +1612.00735 Software Engineering +1612.00736 Combinatorics +1612.00738 Computer Vision and Pattern Recognition +1612.00739 Lattice +1612.00741 Soft Condensed Matter +1612.00742 Artificial Intelligence +1612.00744 Optimization and Control +1612.00745 Learning +1612.00746 +1612.00747 Atomic Physics +1612.00748 Algebraic Geometry +1612.00749 Commutative Algebra +1612.00751 +1612.00753 Strongly Correlated Electrons +1612.00754 Algebraic Geometry +1612.00755 +1612.00756 Algebraic Geometry +1612.00757 Complex Variables +1612.00760 +1612.00761 Strongly Correlated Electrons +1612.00762 +1612.00766 Cryptography and Security +1612.00768 Theory +1612.00770 Cosmology and Nongalactic Astrophysics +1612.00772 +1612.00773 Phenomenology +1612.00774 Astrophysics of Galaxies +1612.00776 Astrophysics of Galaxies +1612.00777 Theory +1612.00780 Pricing of Securities +1612.00781 Strongly Correlated Electrons +1612.00783 Cosmology and Nongalactic Astrophysics +1612.00784 Phenomenology +1612.00785 Logic +1612.00787 Representation Theory +1612.00788 Numerical Analysis +1612.00789 Numerical Analysis +1612.00793 Numerical Analysis +1612.00795 Phenomenology +1612.00798 Analysis of PDEs +1612.00799 Computer Vision and Pattern Recognition +1612.00800 Computers and Society +1612.00802 Astrophysics of Galaxies +1612.00803 Analysis of PDEs +1612.00804 Machine Learning +1612.00805 Astrophysics of Galaxies +1612.00806 Probability +1612.00807 Multimedia +1612.00809 Theory +1612.00810 Theory +1612.00812 Cosmology and Nongalactic Astrophysics +1612.00816 Optimization and Control +1612.00817 Learning +1612.00818 Group Theory +1612.00819 Quantum Gases +1612.00822 Classical Analysis and ODEs +1612.00823 +1612.00824 Machine Learning +1612.00825 Populations and Evolution +1612.00826 Phenomenology +1612.00827 Learning +1612.00828 Pricing of Securities +1612.00829 Differential Geometry +1612.00830 Analysis of PDEs +1612.00831 Phenomenology +1612.00832 Rings and Algebras +1612.00833 General Finance +1612.00834 Solar and Stellar Astrophysics +1612.00837 Computer Vision and Pattern Recognition +1612.00838 Numerical Analysis +0705.1792 Algebraic Geometry +0711.2307 Dynamical Systems +0802.2011 Differential Geometry +0804.0605 Differential Geometry +0805.2605 Commutative Algebra +0806.2434 Optics +0810.3351 Differential Geometry +0811.0496 +0812.1602 Differential Geometry +0901.3813 Optics +0904.1069 Commutative Algebra +0909.2306 Optics +1001.3293 Commutative Algebra +1102.2132 Commutative Algebra +1102.4174 Analysis of PDEs +1106.0525 Geometric Topology +1201.5933 Commutative Algebra +1202.5392 Analysis of PDEs +1204.6669 Algebraic Geometry +1205.2129 Numerical Analysis +1206.7067 Computational Geometry +1208.1738 Geometric Topology +1208.1755 Dynamical Systems +1208.4279 Algebraic Geometry +1209.6477 Classical Analysis and ODEs +1210.5125 Combinatorics +1211.3426 Operator Algebras +1212.0157 Logic +1212.5826 Classical Analysis and ODEs +1301.2051 Dynamical Systems +1301.3831 Earth and Planetary Astrophysics +1301.5500 Logic in Computer Science +1303.0126 Optimization and Control +1303.6257 Computational Physics +1304.3824 General Finance +1304.4836 Algebraic Topology +1305.4888 Analysis of PDEs +1305.5799 Dynamical Systems +1308.0802 Numerical Analysis +1308.2735 +1310.1723 Probability +1310.3392 Number Theory +1311.3787 Cosmology and Nongalactic Astrophysics +1312.0145 Metric Geometry +1312.5701 Number Theory +1312.6434 Algebraic Geometry +1402.4299 Commutative Algebra +1402.4718 Data Structures and Algorithms +1403.0706 Algebraic Geometry +1403.0894 Optics +1405.2711 Group Theory +1406.1914 Algebraic Topology +1406.5311 Optimization and Control +1406.5734 Analysis of PDEs +1406.7769 Combinatorics +1406.7857 Combinatorics +1408.0552 Algebraic Geometry +1409.5074 Quantum Algebra +1409.6034 Applications +1409.7187 Methodology +1409.7246 +1410.0327 Theory +1410.8144 +1412.1805 Algebraic Topology +1412.1977 +1412.3570 Symbolic Computation +1412.8209 Theory +1501.00914 Combinatorics +1501.02406 Optics +1501.06678 Systems and Control +1502.00830 Rings and Algebras +1502.05699 Chemical Physics +1502.05741 Physics and Society +1503.00899 Artificial Intelligence +1503.00982 Methodology +1503.04611 Strongly Correlated Electrons +1503.05867 Soft Condensed Matter +1503.08131 Multiagent Systems +1503.08249 Earth and Planetary Astrophysics +1504.03174 Instrumentation and Detectors +1504.04183 Probability +1504.04267 Analysis of PDEs +1504.04270 Phenomenology +1504.04659 Differential Geometry +1504.05666 Information Theory +1504.07181 Group Theory +1504.08234 Plasma Physics +1505.00684 Functional Analysis +1505.01066 Quantitative Methods +1505.01994 Differential Geometry +1505.03566 Computer Vision and Pattern Recognition +1505.04387 Quantum Gases +1505.04418 High Energy Astrophysical Phenomena +1505.04606 +1505.05622 Group Theory +1505.06379 Systems and Control +1506.00294 Analysis of PDEs +1506.00846 Phenomenology +1506.01743 Information Retrieval +1506.02963 Physics and Society +1506.05382 Artificial Intelligence +1506.06109 Strongly Correlated Electrons +1507.02529 +1507.03294 Algebraic Geometry +1507.04242 Chaotic Dynamics +1507.04355 +1507.05024 Instrumentation and Detectors +1507.06276 Quantum Algebra +1507.06557 +1507.08031 Cosmology and Nongalactic Astrophysics +1507.08598 Analysis of PDEs +1508.02416 Theory +1508.02507 Experiment +1508.04394 Geometric Topology +1508.04427 K-Theory and Homology +1508.05371 Cellular Automata and Lattice Gases +1508.05994 Statistics Theory +1508.06686 Social and Information Networks +1508.07199 Functional Analysis +1509.01830 Atomic Physics +1509.02301 Computation and Language +1509.02833 Cosmology and Nongalactic Astrophysics +1509.03155 +1509.03484 Physics and Society +1509.04410 Phenomenology +1509.05238 Computers and Society +1509.06659 Social and Information Networks +1509.07497 Machine Learning +1509.08679 Materials Science +1510.01174 Mesoscale and Nanoscale Physics +1510.01597 Optimization and Control +1510.02191 Mesoscale and Nanoscale Physics +1510.04670 Mesoscale and Nanoscale Physics +1510.05505 Strongly Correlated Electrons +1510.06540 Statistical Mechanics +1510.06628 +1510.06892 Phenomenology +1511.00132 Phenomenology +1511.00153 Phenomenology +1511.03582 Number Theory +1511.04344 +1511.04427 +1511.04481 Solar and Stellar Astrophysics +1511.04731 Computational Complexity +1511.04917 Mesoscale and Nanoscale Physics +1511.05672 Human-Computer Interaction +1511.06375 Phenomenology +1511.07228 Experiment +1511.07922 Symbolic Computation +1512.00502 Earth and Planetary Astrophysics +1512.02399 Algebraic Topology +1512.03784 Neurons and Cognition +1512.04212 Classical Analysis and ODEs +1512.04888 Atomic Physics +1512.05783 Solar and Stellar Astrophysics +1512.08853 Geometric Topology +1601.00447 Astrophysics of Galaxies +1601.01541 Quantum Gases +1601.02000 Analysis of PDEs +1601.02486 Theory +1601.02595 +1601.03028 Theory +1601.03048 Theory +1601.04039 Analysis of PDEs +1601.05546 Algebraic Geometry +1601.05758 Numerical Analysis +1601.06026 Analysis of PDEs +1601.06241 Information Theory +1601.06308 Algebraic Geometry +1601.06604 Materials Science +1601.06750 Learning +1601.07047 Distributed, Parallel, and Cluster Computing +1601.07288 Phenomenology +1601.07463 Methodology +1601.07488 Information Theory +1601.07670 Data Structures and Algorithms +1601.07708 Mesoscale and Nanoscale Physics +1601.07788 Rings and Algebras +1601.07878 +1601.07902 Strongly Correlated Electrons +1601.07914 Algebraic Geometry +1601.07917 Tissues and Organs +1601.07920 Complex Variables +1601.07923 Instrumentation and Methods for Astrophysics +1601.07924 Logic +1601.07925 Learning +1601.07930 Dynamical Systems +1601.07936 Dynamical Systems +1601.07941 Computational Engineering, Finance, and Science +1601.07944 Distributed, Parallel, and Cluster Computing +1601.07947 Machine Learning +1601.07949 Probability +1601.07950 Computer Vision and Pattern Recognition +1601.07953 Graphics +1601.07959 Materials Science +1601.07961 Mathematical Finance +1601.07962 Software Engineering +1601.07963 Soft Condensed Matter +1601.07964 Materials Science +1601.07972 Optimization and Control +1601.07975 Combinatorics +1601.07976 Information Theory +1601.07977 Computer Vision and Pattern Recognition +1601.07978 Group Theory +1601.07982 Optics +1601.07984 General Topology +1601.07985 Information Theory +1601.07994 Applications +1601.07995 Physics and Society +1601.07997 Chemical Physics +1601.07998 Algebraic Geometry +1601.07999 Applications +1601.08000 Materials Science +1601.08001 Lattice +1601.08002 Methodology +1601.08003 Computer Vision and Pattern Recognition +1601.08005 Atomic Physics +1601.08006 Group Theory +1601.08008 Analysis of PDEs +1601.08009 Combinatorics +1601.08010 Geometric Topology +1601.08013 Probability +1601.08019 Dynamical Systems +1601.08021 Social and Information Networks +1601.08023 Optimization and Control +1601.08026 Probability +1601.08027 Networking and Internet Architecture +1601.08028 Statistical Mechanics +1601.08029 Algebraic Geometry +1601.08030 Human-Computer Interaction +1601.08031 Computational Complexity +1601.08032 Human-Computer Interaction +1601.08033 Phenomenology +1601.08034 Applications +1601.08035 Mesoscale and Nanoscale Physics +1601.08037 Instrumentation and Methods for Astrophysics +1601.08038 Analysis of PDEs +1601.08039 Distributed, Parallel, and Cluster Computing +1601.08040 Mesoscale and Nanoscale Physics +1601.08042 Functional Analysis +1601.08044 Soft Condensed Matter +1601.08046 Other Computer Science +1601.08047 Analysis of PDEs +1601.08050 Mesoscale and Nanoscale Physics +1601.08051 Data Structures and Algorithms +1601.08053 Probability +1601.08056 Probability +1601.08059 Human-Computer Interaction +1601.08067 Distributed, Parallel, and Cluster Computing +1601.08068 Machine Learning +1601.08072 Complex Variables +1601.08073 Classical Analysis and ODEs +1601.08074 Medical Physics +1601.08084 Combinatorics +1601.08090 Applications +1601.08091 Fluid Dynamics +1601.08096 Solar and Stellar Astrophysics +1601.08097 Applications +1601.08102 Complex Variables +1601.08103 Numerical Analysis +1601.08106 +1601.08109 Number Theory +1601.08114 Instrumentation and Methods for Astrophysics +1601.08115 Algebraic Geometry +1601.08116 Multiagent Systems +1601.08119 Fluid Dynamics +1601.08120 Theory +1601.08121 Quantitative Methods +1601.08125 Materials Science +1601.08126 Rings and Algebras +1601.08127 Analysis of PDEs +1601.08129 +1601.08130 Combinatorics +1601.08132 Information Theory +1601.08133 Methodology +1601.08138 High Energy Astrophysical Phenomena +1601.08139 Cryptography and Security +1601.08142 Group Theory +1601.08144 Functional Analysis +1601.08145 Numerical Analysis +1601.08151 Probability +1601.08154 Multiagent Systems +1601.08156 Optics +1601.08158 Robotics +1601.08162 Multiagent Systems +1601.08163 Probability +1601.08165 Machine Learning +1601.08166 Optimization and Control +1601.08169 Machine Learning +1601.08172 Metric Geometry +1601.08173 Number Theory +1601.08174 Statistics Theory +1601.08176 Information Theory +1601.08177 Differential Geometry +1601.08178 Classical Analysis and ODEs +1601.08179 Numerical Analysis +1601.08183 Mesoscale and Nanoscale Physics +1601.08186 Algebraic Geometry +1601.08188 Computer Vision and Pattern Recognition +1601.08190 Information Theory +1601.08193 Phenomenology +1601.08194 Group Theory +1601.08195 Superconductivity +1601.08196 Quantum Algebra +1601.08202 Quantitative Methods +1601.08205 +1601.08208 Operator Algebras +1601.08210 Physics Education +1601.08212 Mesoscale and Nanoscale Physics +1601.08214 Logic +1601.08215 Theory +1601.08219 Probability +1601.08220 +1601.08223 Theory +1601.08226 Superconductivity +1601.08227 Cryptography and Security +1601.08229 Algebraic Geometry +1601.08230 +1601.08235 Strongly Correlated Electrons +1601.08237 Group Theory +1601.08240 Number Theory +1601.08243 Materials Science +1601.08244 Methodology +cond-mat/0502338 Strongly Correlated Electrons +gr-qc/0107100 +math/0303207 Algebraic Topology +math/0602111 Algebraic Geometry +math/0610698 Differential Geometry +1601.03597 Numerical Analysis +0705.0681 +0911.4709 Theory +1003.5823 Theory +1012.2399 Soft Condensed Matter +1110.2375 Phenomenology +1201.1439 Mesoscale and Nanoscale Physics +1207.4658 Rings and Algebras +1210.6141 Phenomenology +1211.7306 Commutative Algebra +1212.6348 Combinatorics +1301.1057 Combinatorics +1306.6593 Data Structures and Algorithms +1307.2702 Representation Theory +1308.3336 Data Structures and Algorithms +1309.5675 +1311.0514 Algebraic Topology +1312.0754 Analysis of PDEs +1401.5042 Symplectic Geometry +1403.5422 Group Theory +1405.4129 Mesoscale and Nanoscale Physics +1405.6891 Algebraic Topology +1406.4829 Computer Science and Game Theory +1407.1414 Theory +1407.3359 Number Theory +1407.6616 +1407.6799 Quantum Gases +1408.3158 Logic +1408.3641 Probability +1408.4848 Mathematical Finance +1409.0160 Analysis of PDEs +1409.3325 Combinatorics +1409.4445 Theory +1409.4487 Analysis of PDEs +1409.4585 Combinatorics +1409.5397 Classical Analysis and ODEs +1409.6077 Phenomenology +1409.8560 Analysis of PDEs +1412.5541 Classical Physics +1501.03420 Spectral Theory +1502.05645 Spectral Theory +1502.07016 Combinatorics +1502.07118 Programming Languages +1503.07990 Machine Learning +1504.05776 Computer Vision and Pattern Recognition +1504.06352 Computation +1505.00955 Rings and Algebras +1505.05250 Theory +1505.07083 Algebraic Geometry +1505.07269 Phenomenology +1505.07348 Soft Condensed Matter +1506.01284 Phenomenology +1506.07898 Data Structures and Algorithms +1507.06102 Probability +1507.07121 Data Structures and Algorithms +1508.00420 +1508.01410 Mesoscale and Nanoscale Physics +1508.04122 Soft Condensed Matter +1508.05581 Computer Vision and Pattern Recognition +1508.06749 Methodology +1508.06770 Probability +1509.00175 Algebraic Geometry +1509.01387 +1509.05980 Statistical Mechanics +1509.08373 Systems and Control +1510.03810 Differential Geometry +1510.07838 Analysis of PDEs +1511.01105 +1511.01106 +1511.01226 Numerical Analysis +1511.02376 +1511.03129 Cosmology and Nongalactic Astrophysics +1511.03229 Data Structures and Algorithms +1511.04116 Trading and Market Microstructure +1511.04288 Lattice +1511.04893 Formal Languages and Automata Theory +1511.06818 Theory +1511.07135 Physics and Society +1511.07786 Metric Geometry +1511.08710 +1512.00280 Probability +1512.00359 Lattice +1512.05669 +1512.06765 Algebraic Geometry +1512.08779 Combinatorics +1512.08892 Probability +1601.01451 Cosmology and Nongalactic Astrophysics +1601.02303 +1601.02306 Social and Information Networks +1601.03463 Probability +1601.04848 Networking and Internet Architecture +1601.06225 +1601.06676 Information Theory +1601.07780 Methodology +1602.00714 Phenomenology +1602.00926 +1602.03988 +1602.04686 Mesoscale and Nanoscale Physics +1602.05612 Phenomenology +1602.05872 Complex Variables +1602.06468 Learning +1602.07131 +1602.07583 Logic +1602.08389 Earth and Planetary Astrophysics +1602.09082 Applications +1603.00422 Soft Condensed Matter +1603.01547 Computation and Language +1603.03227 Mesoscale and Nanoscale Physics +1603.03882 Astrophysics of Galaxies +1603.03901 Representation Theory +1603.05869 Strongly Correlated Electrons +1603.06004 Mesoscale and Nanoscale Physics +1603.06061 +1603.06091 +1603.06370 Materials Science +1603.07362 Theory +1603.07923 Materials Science +1603.09097 +1604.00464 K-Theory and Homology +1604.01078 Materials Science +1604.01199 Combinatorics +1604.01361 High Energy Astrophysical Phenomena +1604.01647 Phenomenology +1604.03062 Hardware Architecture +1604.04644 +1604.06697 Data Structures and Algorithms +1604.07198 +1605.00186 Formal Languages and Automata Theory +1605.00346 Methodology +1605.00647 Astrophysics of Galaxies +1605.02163 Instrumentation and Detectors +1605.04176 High Energy Astrophysical Phenomena +1605.06697 Formal Languages and Automata Theory +1605.09238 Classical Analysis and ODEs +1605.09491 Differential Geometry +1606.00126 Materials Science +1606.00662 Physics and Society +1606.01668 Materials Science +1606.01678 Geophysics +1606.02067 Materials Science +1606.02102 Probability +1606.02441 Instrumentation and Detectors +1606.03131 Classical Analysis and ODEs +1606.03906 Metric Geometry +1606.04012 Physics and Society +1606.04147 Instrumentation and Detectors +1606.04316 Machine Learning +1606.04636 Applications +1606.05030 Optimization and Control +1606.05115 Classical Analysis and ODEs +1606.05395 Analysis of PDEs +1606.05429 Phenomenology +1606.06571 Adaptation and Self-Organizing Systems +1606.06681 Computer Vision and Pattern Recognition +1606.06973 Other Computer Science +1606.07179 Chemical Physics +1606.07180 Chemical Physics +1606.07195 High Energy Astrophysical Phenomena +1606.07239 Computer Vision and Pattern Recognition +1606.07301 +1606.07327 Phenomenology +1606.07366 Materials Science +1606.07389 Networking and Internet Architecture +1606.07429 Statistical Mechanics +1606.07430 Accelerator Physics +1606.07433 High Energy Astrophysical Phenomena +1606.07434 Cosmology and Nongalactic Astrophysics +1606.07441 Strongly Correlated Electrons +1606.07451 Probability +1606.07455 Phenomenology +1606.07457 Emerging Technologies +1606.07459 Instrumentation and Detectors +1606.07460 History and Overview +1606.07461 Computation and Language +1606.07463 Social and Information Networks +1606.07465 Operator Algebras +1606.07467 Emerging Technologies +1606.07468 Accelerator Physics +1606.07470 Computation and Language +1606.07474 Combinatorics +1606.07476 Functional Analysis +1606.07478 Algebraic Geometry +1606.07479 Networking and Internet Architecture +1606.07480 Networking and Internet Architecture +1606.07481 Computation and Language +1606.07489 Logic +1606.07490 Distributed, Parallel, and Cluster Computing +1606.07491 Probability +1606.07496 Computer Vision and Pattern Recognition +1606.07502 Distributed, Parallel, and Cluster Computing +1606.07505 Phenomenology +1606.07506 Distributed, Parallel, and Cluster Computing +1606.07507 Statistical Mechanics +1606.07509 Computer Vision and Pattern Recognition +1606.07511 Computer Vision and Pattern Recognition +1606.07513 Logic in Computer Science +1606.07514 Artificial Intelligence +1606.07515 Logic in Computer Science +1606.07516 Artificial Intelligence +1606.07517 Computer Science and Game Theory +1606.07518 Logic in Computer Science +1606.07519 Computer Science and Game Theory +1606.07520 Artificial Intelligence +1606.07521 Computer Science and Game Theory +1606.07523 Computer Science and Game Theory +1606.07524 Logic in Computer Science +1606.07525 Multiagent Systems +1606.07526 Logic in Computer Science +1606.07527 Logic in Computer Science +1606.07528 Artificial Intelligence +1606.07529 Artificial Intelligence +1606.07530 Analysis of PDEs +1606.07531 Information Theory +1606.07533 Computer Science and Game Theory +1606.07534 Complex Variables +1606.07535 +1606.07537 Computers and Society +1606.07538 Experiment +1606.07540 Mesoscale and Nanoscale Physics +1606.07545 Computation and Language +1606.07548 Computation and Language +1606.07550 Social and Information Networks +1606.07553 Subcellular Processes +1606.07555 Mesoscale and Nanoscale Physics +1606.07556 Social and Information Networks +1606.07557 Programming Languages +1606.07558 Learning +1606.07560 Numerical Analysis +1606.07561 Information Theory +1606.07565 Information Retrieval +1606.07568 Dynamical Systems +1606.07569 Strongly Correlated Electrons +1606.07573 Dynamical Systems +1606.07574 Medical Physics +1606.07575 Machine Learning +1606.07576 Probability +1606.07578 Machine Learning +1606.07580 Computational Physics +1606.07584 Quantum Algebra +1606.07585 Formal Languages and Automata Theory +1606.07588 Representation Theory +1606.07591 Numerical Analysis +1606.07593 Theory +1606.07595 Differential Geometry +1606.07597 Combinatorics +1606.07598 Sound +1606.07601 Computation and Language +1606.07603 Atomic Physics +1606.07604 Information Retrieval +1606.07605 Information Theory +1606.07606 Information Theory +1606.07607 Dynamical Systems +1606.07608 Information Retrieval +1606.07610 Methodology +1606.07611 +1606.07613 Networking and Internet Architecture +1606.07614 Combinatorics +1606.07617 Lattice +1606.07620 Computation +1606.07622 Number Theory +1606.07623 Emerging Technologies +1606.07624 Phenomenology +1606.07625 Phenomenology +1606.07629 Materials Science +1606.07630 Networking and Internet Architecture +1606.07632 Classical Analysis and ODEs +1606.07634 Mesoscale and Nanoscale Physics +1606.07637 Analysis of PDEs +1606.07638 Materials Science +1606.07641 Analysis of PDEs +1606.07642 Instrumentation and Methods for Astrophysics +1606.07648 Operator Algebras +1606.07652 Numerical Analysis +1606.07653 Soft Condensed Matter +1606.07655 Combinatorics +1606.07664 Probability +1606.07666 Phenomenology +1606.07667 Applications +1606.07668 Social and Information Networks +1606.07670 Atomic Physics +1606.07671 Materials Science +1606.07676 Distributed, Parallel, and Cluster Computing +1606.07679 Algebraic Geometry +1606.07681 General Physics +1606.07683 Physics and Society +1606.07684 Risk Management +1606.07686 Numerical Analysis +1606.07687 Programming Languages +1606.07688 Materials Science +1606.07690 Differential Geometry +1606.07692 Probability +1606.07696 Materials Science +1606.07698 Numerical Analysis +1606.07699 Differential Geometry +1606.07701 Differential Geometry +1606.07702 Statistics Theory +1606.07704 Probability +1606.07707 Social and Information Networks +1606.07708 Probability +1606.07710 Logic +1606.07712 +1606.07714 Algebraic Geometry +1606.07715 Algebraic Geometry +1606.07716 Dynamical Systems +1606.07720 Materials Science +1606.07722 Information Retrieval +1606.07723 +1606.07724 Analysis of PDEs +1606.07726 Soft Condensed Matter +1606.07727 Number Theory +1606.07728 Group Theory +1606.07729 Systems and Control +1606.07731 Analysis of PDEs +1606.07734 Analysis of PDEs +1606.07736 Computation and Language +1606.07738 Analysis of PDEs +1606.07749 Statistics Theory +1606.07750 Combinatorics +1606.07752 Analysis of PDEs +1606.07754 Classical Analysis and ODEs +1606.07757 Computer Vision and Pattern Recognition +1606.07758 Superconductivity +1606.07760 Cryptography and Security +1606.07761 Algebraic Geometry +1606.07763 Analysis of PDEs +1606.07765 Analysis of PDEs +1606.07771 Dynamical Systems +1606.07778 Group Theory +1606.07779 Other Quantitative Biology +1606.07780 Complex Variables +1606.07781 Human-Computer Interaction +1606.07782 Number Theory +1606.07783 Computation and Language +1606.07784 Databases +1606.07785 Distributed, Parallel, and Cluster Computing +1606.07787 Optics +1606.07788 Algebraic Geometry +1606.07792 Learning +1606.07793 Phenomenology +1606.07795 +1606.07796 Functional Analysis +1606.07799 Rings and Algebras +1606.07800 Rings and Algebras +cond-mat/0403496 Soft Condensed Matter +cond-mat/0702339 Soft Condensed Matter +cs/0502074 Learning +hep-th/0703055 Theory +0808.1199 Geometric Topology +0906.2984 +1001.4031 Computational Finance +1009.0627 Earth and Planetary Astrophysics +1104.4542 Group Theory +1107.0435 Analysis of PDEs +1107.4632 Risk Management +1111.2325 +1111.6246 Analysis of PDEs +1201.1214 Computational Complexity +1201.2314 Theory +1201.4741 Phenomenology +1206.3746 Computers and Society +1208.4523 Optics +1212.6696 Algebraic Geometry +1302.4559 Neurons and Cognition +1302.5982 Group Theory +1303.1870 Information Theory +1303.5531 Algebraic Geometry +1305.5510 Differential Geometry +1306.0126 Algebraic Geometry +1308.6323 Phenomenology +1309.6141 Probability +1311.2537 +1402.0600 +1404.2359 Group Theory +1404.2963 Algebraic Geometry +1404.7153 Number Theory +1405.0721 Number Theory +1405.2436 Functional Analysis +1405.4463 Networking and Internet Architecture +1405.7880 Probability +1406.5688 Digital Libraries +1406.6756 Geometric Topology +1408.1384 +1408.1664 Artificial Intelligence +1408.6751 Differential Geometry +1409.0485 Combinatorics +1410.1611 Mathematical Finance +1410.8170 Operator Algebras +1411.4725 Combinatorics +1411.5532 Mesoscale and Nanoscale Physics +1412.4090 Geophysics +1412.7443 Logic +1501.00386 Logic in Computer Science +1501.00644 Networking and Internet Architecture +1501.03690 Category Theory +1501.05893 Pricing of Securities +1501.06085 +1501.06518 Combinatorics +1502.00392 Physics and Society +1502.05290 Combinatorics +1502.06106 Pricing of Securities +1502.06834 Geometric Topology +1502.07154 Theory +1503.00797 Complex Variables +1503.01363 Data Structures and Algorithms +1503.02977 Number Theory +1503.03032 Commutative Algebra +1503.03139 Group Theory +1503.05061 +1503.05761 Information Theory +1504.00666 Probability +1504.03426 Information Theory +1504.05172 Group Theory +1505.00460 Analysis of PDEs +1505.00531 Analysis of PDEs +1505.04091 Operator Algebras +1505.06293 Group Theory +1505.06318 Methodology +1505.06389 Computer Vision and Pattern Recognition +1505.06929 Algebraic Topology +1506.00886 Group Theory +1506.05408 Algebraic Topology +1506.07555 Fluid Dynamics +1506.08010 Computation +1506.08547 Data Structures and Algorithms +1506.09126 Algebraic Topology +1506.09170 Number Theory +1507.01034 Algebraic Topology +1507.01924 Algebraic Geometry +1507.02361 Theory +1507.06408 Phenomenology +1507.06939 Rings and Algebras +1507.08400 Operator Algebras +1508.00230 Networking and Internet Architecture +1508.00793 Methodology +1508.01870 Group Theory +1508.01982 Optimization and Control +1508.03923 Probability +1508.04250 Computer Science and Game Theory +1508.05517 Optics +1509.01384 Probability +1509.01562 Algebraic Geometry +1509.01692 Computation and Language +1509.04085 Distributed, Parallel, and Cluster Computing +1509.06199 Phenomenology +1509.06471 Phenomenology +1509.08678 +1510.00047 +1510.01171 Machine Learning +1510.01447 Phenomenology +1510.02232 Statistics Theory +1510.04214 Optimization and Control +1510.04883 +1510.07555 Optics +1510.08386 Number Theory +1510.08954 Statistical Mechanics +1510.09106 Computer Science and Game Theory +1511.01173 Analysis of PDEs +1511.01716 Optimization and Control +1511.02666 Differential Geometry +1511.02700 Analysis of PDEs +1511.02879 Phenomenology +1511.03619 Commutative Algebra +1511.04011 Representation Theory +1511.05754 Superconductivity +1511.09213 Earth and Planetary Astrophysics +1512.00107 Differential Geometry +1512.00564 Cosmology and Nongalactic Astrophysics +1512.00616 Optimization and Control +1512.00753 Number Theory +1512.02382 Fluid Dynamics +1512.02460 Populations and Evolution +1512.02500 Soft Condensed Matter +1512.02795 +1512.03374 Differential Geometry +1512.04902 Materials Science +1512.07349 Social and Information Networks +1512.07957 Strongly Correlated Electrons +1601.00083 Classical Analysis and ODEs +1601.00863 Optimization and Control +1601.02251 Algebraic Geometry +1601.03673 +1601.03968 Probability +1601.05146 Physics and Society +1601.05761 Functional Analysis +1601.07449 Group Theory +1602.00328 Computer Vision and Pattern Recognition +1602.01518 Logic +1602.02352 Numerical Analysis +1602.03202 Computer Science and Game Theory +1602.03898 +1602.03930 Computer Vision and Pattern Recognition +1602.04102 Statistics Theory +1602.04309 Differential Geometry +1602.04555 Quantum Gases +1602.05690 Optimization and Control +1602.06107 Algebraic Geometry +1602.06511 Theory +1602.06589 Computational Engineering, Finance, and Science +1602.06790 Materials Science +1602.07001 Mesoscale and Nanoscale Physics +1602.07031 Distributed, Parallel, and Cluster Computing +1602.07605 Probability +1602.07782 Strongly Correlated Electrons +1602.07966 Statistical Mechanics +1602.08406 Programming Languages +1602.08620 Logic in Computer Science +1602.08692 Strongly Correlated Electrons +1602.08754 Applications +1603.00799 Mesoscale and Nanoscale Physics +1603.01329 Optics +1603.01499 Probability +1603.02241 Materials Science +1603.02787 Atomic Physics +1603.03633 Materials Science +1603.03670 High Energy Astrophysical Phenomena +1603.04081 Strongly Correlated Electrons +1603.04951 Solar and Stellar Astrophysics +1603.05061 Theory +1603.05185 +1603.05224 Statistics Theory +1603.05813 Quantum Gases +1603.05837 Phenomenology +1603.06218 Theory +1603.06271 Algebraic Topology +1603.06356 Commutative Algebra +1603.07171 Number Theory +1603.08256 Theory +1604.00406 Phenomenology +1604.00736 Networking and Internet Architecture +1604.01782 Theory +1604.01972 Machine Learning +1604.02271 Computer Vision and Pattern Recognition +1604.03268 Commutative Algebra +1604.03939 Cosmology and Nongalactic Astrophysics +1604.05544 Lattice +1604.06346 +1604.06968 Data Structures and Algorithms +1604.07733 Complex Variables +1604.07841 Theory +1604.08082 Phenomenology +1604.08150 Dynamical Systems +1604.08617 Theory +1605.00122 Information Retrieval +1605.01142 +1605.01419 +1605.02447 Probability +1605.02623 Solar and Stellar Astrophysics +1605.03103 +1605.03171 Experiment +1605.03806 Phenomenology +1605.04436 Experiment +1605.04462 Computation and Language +1605.04770 Computer Vision and Pattern Recognition +1605.05087 Learning +1605.05565 Theory +1605.06605 Phenomenology +1605.08498 Theory +1605.08801 Dynamical Systems +1605.09072 Theory +1605.09426 +1606.00254 General Physics +1606.00490 Optimization and Control +1606.01089 Strongly Correlated Electrons +1606.01319 Molecular Networks +1606.01423 Soft Condensed Matter +1606.01484 Machine Learning +1606.02046 Algebraic Geometry +1606.02271 Theory +1606.02618 +1606.02997 Strongly Correlated Electrons +1606.03254 Computation and Language +1606.03711 History and Overview +1606.04341 Representation Theory +1606.05908 Machine Learning +1606.05976 Analysis of PDEs +1606.06894 Optics +1606.07695 Computer Vision and Pattern Recognition +1606.08384 Theory +1606.08556 +1606.09240 Number Theory +1607.02288 Soft Condensed Matter +1607.02303 Neural and Evolutionary Computing +1607.02306 Sound +1607.03039 Computational Geometry +1607.03682 Sound +1607.04003 +1607.04699 Number Theory +1607.04882 +1607.05351 Artificial Intelligence +1607.05615 Chemical Physics +1607.05654 Human-Computer Interaction +1607.05863 Theory +1607.05877 Disordered Systems and Neural Networks +1607.06437 Fluid Dynamics +1607.06986 Computer Vision and Pattern Recognition +1607.07432 Combinatorics +1607.07452 Astrophysics of Galaxies +1607.07944 Logic +1607.08308 +1607.08373 Theory +1608.00063 Numerical Analysis +1608.00189 Operator Algebras +1608.00474 Information Theory +1608.00492 Cryptography and Security +1608.00884 Superconductivity +1608.00984 Mesoscale and Nanoscale Physics +1608.01010 Classical Analysis and ODEs +1608.01046 +1608.01098 Atomic Physics +1608.01612 Combinatorics +1608.01682 Instrumentation and Methods for Astrophysics +1608.01745 Computer Vision and Pattern Recognition +1608.01754 Algebraic Geometry +1608.01820 Discrete Mathematics +1608.01835 Artificial Intelligence +1608.01914 Quantum Gases +1608.01975 Quantitative Methods +1608.02040 Theory +1608.02178 Pattern Formation and Solitons +1608.02357 Combinatorics +1608.02437 Optics +1608.02542 +1608.02615 Data Structures and Algorithms +1608.02663 Differential Geometry +1608.03282 Social and Information Networks +1608.03333 Learning +1608.03393 Computation +1608.03478 Probability +1608.03507 Artificial Intelligence +1608.03572 Geometric Topology +1608.03601 Representation Theory +1608.03898 Graphics +1608.03902 Computation and Language +1608.03905 Information Retrieval +1608.03907 Computer Vision and Pattern Recognition +1608.03908 Optimization and Control +1608.03909 Instrumentation and Methods for Astrophysics +1608.03911 Materials Science +1608.03912 Programming Languages +1608.03913 Statistics Theory +1608.03914 Computer Vision and Pattern Recognition +1608.03919 Theory +1608.03922 Fluid Dynamics +1608.03925 Dynamical Systems +1608.03926 Earth and Planetary Astrophysics +1608.03928 Optimization and Control +1608.03929 History and Overview +1608.03931 Numerical Analysis +1608.03932 Computer Vision and Pattern Recognition +1608.03933 Learning +1608.03937 Dynamical Systems +1608.03938 Computation and Language +1608.03943 Discrete Mathematics +1608.03944 Mesoscale and Nanoscale Physics +1608.03946 Chemical Physics +1608.03948 Strongly Correlated Electrons +1608.03950 +1608.03954 Geometric Topology +1608.03959 Classical Analysis and ODEs +1608.03961 Information Theory +1608.03962 Combinatorics +1608.03964 Quantum Gases +1608.03968 Systems and Control +1608.03969 Operator Algebras +1608.03973 Instrumentation and Detectors +1608.03974 Machine Learning +1608.03975 Geometric Topology +1608.03977 Algebraic Geometry +1608.03979 Probability +1608.03981 Computer Vision and Pattern Recognition +1608.03985 General Finance +1608.03986 Operator Algebras +1608.03987 Numerical Analysis +1608.03988 Social and Information Networks +1608.03989 Information Theory +1608.03991 Applications +1608.03993 Molecular Networks +1608.03995 Computation and Language +1608.03996 Operator Algebras +1608.03997 High Energy Astrophysical Phenomena +1608.03999 Computer Science and Game Theory +1608.04000 Rings and Algebras +1608.04001 Information Theory +1608.04003 History and Overview +1608.04006 General Mathematics +1608.04011 Fluid Dynamics +1608.04016 Programming Languages +1608.04017 Networking and Internet Architecture +1608.04018 Representation Theory +1608.04019 Chemical Physics +1608.04020 Logic +1608.04021 Analysis of PDEs +1608.04023 Theory +1608.04024 Networking and Internet Architecture +1608.04025 Combinatorics +1608.04026 Classical Analysis and ODEs +1608.04027 Commutative Algebra +1608.04028 Solar and Stellar Astrophysics +1608.04029 Logic +1608.04030 Software Engineering +1608.04033 Astrophysics of Galaxies +1608.04035 Fluid Dynamics +1608.04037 Learning +1608.04038 Fluid Dynamics +1608.04042 Computer Vision and Pattern Recognition +1608.04044 Commutative Algebra +1608.04045 Computer Vision and Pattern Recognition +1608.04048 Machine Learning +1608.04051 Computer Vision and Pattern Recognition +1608.04058 Commutative Algebra +1608.04059 Quantitative Methods +1608.04060 Numerical Analysis +1608.04061 Analysis of PDEs +1608.04063 Learning +1608.04064 Computer Vision and Pattern Recognition +1608.04066 Combinatorics +1608.04069 Sound +1608.04070 Information Theory +1608.04071 Classical Physics +1608.04072 Analysis of PDEs +1608.04073 +1608.04076 Strongly Correlated Electrons +1608.04078 Atomic Physics +1608.04080 Computer Vision and Pattern Recognition +1608.04082 Graphics +1608.04083 Plasma Physics +1608.04084 Complex Variables +1608.04085 Group Theory +1608.04086 Superconductivity +1608.04089 Computation and Language +1608.04090 Social and Information Networks +1608.04093 Combinatorics +1608.04097 +1608.04101 Mesoscale and Nanoscale Physics +1608.04102 Mesoscale and Nanoscale Physics +1608.04104 Systems and Control +1608.04105 Emerging Technologies +1608.04106 Dynamical Systems +1608.04108 Materials Science +1608.04109 Computation +1608.04110 Instrumentation and Methods for Astrophysics +1608.04114 Classical Analysis and ODEs +1608.04122 Differential Geometry +1608.04123 Computation +1608.04125 Number Theory +1608.04126 Combinatorics +1608.04127 Combinatorics +1608.04131 Differential Geometry +1608.04134 Optics +1608.04136 Materials Science +1608.04137 Optimization and Control +1608.04142 Databases +1608.04145 +1608.04146 Number Theory +1608.04147 Computation and Language +1608.04149 +1608.04152 Mathematical Software +1608.04155 Systems and Control +1608.04156 Fluid Dynamics +1608.04158 Combinatorics +1608.04159 High Energy Astrophysical Phenomena +1608.04168 Optimization and Control +1608.04174 Distributed, Parallel, and Cluster Computing +1608.04175 Populations and Evolution +1608.04177 Combinatorics +1608.04179 Representation Theory +1608.04188 Computer Vision and Pattern Recognition +1608.04190 High Energy Astrophysical Phenomena +1608.04191 Algebraic Geometry +1608.04192 Solar and Stellar Astrophysics +1608.04193 Computational Physics +1608.04195 +1608.04196 Number Theory +1608.04198 Information Theory +1608.04199 Accelerator Physics +1608.04201 Phenomenology +1608.04203 Physics and Society +1608.04204 Rings and Algebras +1608.04206 Number Theory +1608.04209 Algebraic Geometry +1608.04210 Classical Analysis and ODEs +1608.04215 +1608.04217 Discrete Mathematics +1608.04222 Theory +1608.04224 Computer Vision and Pattern Recognition +1608.04225 Earth and Planetary Astrophysics +1608.04226 K-Theory and Homology +1608.04229 Analysis of PDEs +1608.04231 Optics +1608.04235 Functional Analysis +1608.04237 +1608.04239 Phenomenology +1608.04240 +1608.04241 Fluid Dynamics +1608.04242 Statistics Theory +1608.04243 Numerical Analysis +1608.04244 Statistics Theory +1608.04246 Spectral Theory +1608.04247 +1608.04249 High Energy Astrophysical Phenomena +1608.04250 Probability +1608.04254 Group Theory +1608.04255 Plasma Physics +1608.04258 Mesoscale and Nanoscale Physics +1608.04260 Networking and Internet Architecture +1608.04261 Probability +1608.04264 Mesoscale and Nanoscale Physics +1608.04265 Algebraic Geometry +1608.04266 Chemical Physics +1608.04267 Computer Vision and Pattern Recognition +1608.04271 Information Theory +1608.04274 Computer Vision and Pattern Recognition +1608.04275 +1608.04276 Tissues and Organs +1608.04279 Combinatorics +1608.04280 Astrophysics of Galaxies +1608.04281 Instrumentation and Detectors +1608.04282 Analysis of PDEs +1608.04291 General Physics +1608.04293 +1608.04294 Optimization and Control +1608.04295 Performance +1608.04296 History and Overview +1608.04299 Metric Geometry +1608.04301 Logic in Computer Science +1608.04303 Cryptography and Security +1608.04304 Statistical Mechanics +1608.04305 +1608.04307 Computer Vision and Pattern Recognition +1608.04317 Probability +1608.04318 +1608.04319 Discrete Mathematics +1608.04321 Optimization and Control +1608.04323 Instrumentation and Detectors +1608.04325 Functional Analysis +1608.04327 Functional Analysis +1608.04328 Fluid Dynamics +1608.04329 Computation +1608.04331 Learning +1608.04333 Dynamical Systems +1608.04334 Biological Physics +1608.04335 Materials Science +1608.04338 Algebraic Geometry +1608.04339 Computer Vision and Pattern Recognition +1608.04340 Instrumentation and Methods for Astrophysics +1608.04342 Computer Vision and Pattern Recognition +1608.04346 Lattice +1608.04347 Instrumentation and Methods for Astrophysics +1608.04350 Operator Algebras +1608.04354 Phenomenology +1608.04355 Data Structures and Algorithms +1608.04356 Astrophysics of Galaxies +1608.04358 +1608.04367 Data Analysis, Statistics and Probability +1608.04370 Statistical Mechanics +1608.04371 Differential Geometry +1608.04375 +1608.04376 Phenomenology +adap-org/9602001 Adaptation and Self-Organizing Systems +adap-org/9608002 Adaptation and Self-Organizing Systems +astro-ph/0001432 +astro-ph/0101103 +astro-ph/0101310 +astro-ph/0101522 +astro-ph/0102044 +astro-ph/0102191 +astro-ph/0103257 +astro-ph/0103288 +astro-ph/0103327 +astro-ph/0103419 +astro-ph/0108035 +astro-ph/0108221 +astro-ph/0108249 +astro-ph/0108472 +astro-ph/0110295 +astro-ph/0110364 +astro-ph/0110643 +astro-ph/0111115 +astro-ph/0111372 +astro-ph/0112140 +astro-ph/0112143 +astro-ph/0112561 +astro-ph/0201282 +astro-ph/0201284 +astro-ph/0201291 +astro-ph/0202041 +astro-ph/0202246 +astro-ph/0203441 +astro-ph/0205167 +astro-ph/0205421 +astro-ph/0207328 +astro-ph/0207330 +astro-ph/0207331 +astro-ph/0207544 +astro-ph/0208060 +astro-ph/0208152 +astro-ph/0208267 +astro-ph/0208312 +astro-ph/0209458 +astro-ph/0210162 +astro-ph/0210204 +astro-ph/0210409 +astro-ph/0210484 +astro-ph/0210498 +astro-ph/0211216 +astro-ph/0211412 +astro-ph/0212063 +astro-ph/0212203 +astro-ph/0212239 +astro-ph/0301251 +astro-ph/0301382 +astro-ph/0301482 +astro-ph/0301500 +astro-ph/0302092 +astro-ph/0302554 +astro-ph/0303462 +astro-ph/0304166 +astro-ph/0305052 +astro-ph/0306391 +astro-ph/0307198 +astro-ph/0308094 +astro-ph/0308269 +astro-ph/0309115 +astro-ph/0309427 +astro-ph/0310022 +astro-ph/0310162 +astro-ph/0310182 +astro-ph/0310397 +astro-ph/0310459 +astro-ph/0310466 +astro-ph/0310672 +astro-ph/0310788 +astro-ph/0311073 +astro-ph/0311096 +astro-ph/0311196 +astro-ph/0312026 +astro-ph/0401271 +astro-ph/0401396 +astro-ph/0401585 +astro-ph/0402209 +astro-ph/0402219 +astro-ph/0403007 +astro-ph/0403182 +astro-ph/0403458 +astro-ph/0403629 +astro-ph/0404108 +astro-ph/0405228 +astro-ph/0405237 +astro-ph/0405308 +astro-ph/0405470 +astro-ph/0405618 +astro-ph/0406130 +astro-ph/0406414 +astro-ph/0406427 +astro-ph/0407527 +astro-ph/0408041 +astro-ph/0408210 +astro-ph/0408220 +astro-ph/0408385 +astro-ph/0408389 +astro-ph/0409019 +astro-ph/0409559 +astro-ph/0409750 +astro-ph/0410230 +astro-ph/0410446 +astro-ph/0410544 +astro-ph/0411693 +astro-ph/0501040 +astro-ph/0501042 +astro-ph/0501059 +astro-ph/0501213 +astro-ph/0501420 +astro-ph/0501459 +astro-ph/0501674 +astro-ph/0502117 +astro-ph/0502235 +astro-ph/0502341 +astro-ph/0503073 +astro-ph/0503380 +astro-ph/0503619 +astro-ph/0503667 +astro-ph/0504023 +astro-ph/0504078 +astro-ph/0504545 +astro-ph/0505019 +astro-ph/0505123 +astro-ph/0505242 +astro-ph/0505264 +astro-ph/0505342 +astro-ph/0505620 +astro-ph/0506378 +astro-ph/0506695 +astro-ph/0506745 +astro-ph/0507088 +astro-ph/0507233 +astro-ph/0507255 +astro-ph/0507318 +astro-ph/0507415 +astro-ph/0507559 +astro-ph/0507580 +astro-ph/0508113 +astro-ph/0508452 +astro-ph/0508511 +astro-ph/0508541 +astro-ph/0508614 +astro-ph/0509014 +astro-ph/0509139 +astro-ph/0509166 +astro-ph/0509208 +astro-ph/0509500 +astro-ph/0509613 +astro-ph/0509816 +astro-ph/0509903 +astro-ph/0509908 +astro-ph/0510368 +astro-ph/0510381 +astro-ph/0510602 +astro-ph/0510695 +astro-ph/0510700 +astro-ph/0511134 +astro-ph/0511135 +astro-ph/0511261 +astro-ph/0511556 +astro-ph/0511672 +astro-ph/0512039 +astro-ph/0512290 +astro-ph/0512293 +astro-ph/0512482 +astro-ph/0512604 +astro-ph/0604404 +astro-ph/0611237 +astro-ph/9803121 +astro-ph/9905077 +chao-dyn/9510005 Chaotic Dynamics +cond-mat/0007451 Superconductivity +cond-mat/0101040 Strongly Correlated Electrons +cond-mat/0101236 Mesoscale and Nanoscale Physics +cond-mat/0101263 Soft Condensed Matter +cond-mat/0101318 Statistical Mechanics +cond-mat/0102085 +cond-mat/0102087 Statistical Mechanics +cond-mat/0102243 Superconductivity +cond-mat/0102430 Statistical Mechanics +cond-mat/0102478 Statistical Mechanics +cond-mat/0103125 +cond-mat/0103143 +cond-mat/0103567 Superconductivity +cond-mat/0103571 Superconductivity +cond-mat/0104326 Superconductivity +cond-mat/0104361 +cond-mat/0104483 Soft Condensed Matter +cond-mat/0104514 Soft Condensed Matter +cond-mat/0104539 Mesoscale and Nanoscale Physics +cond-mat/0105244 Materials Science +cond-mat/0105298 Mesoscale and Nanoscale Physics +cond-mat/0105405 Disordered Systems and Neural Networks +cond-mat/0106008 Materials Science +cond-mat/0106136 Statistical Mechanics +cond-mat/0106167 Materials Science +cond-mat/0106344 Superconductivity +cond-mat/0106406 Disordered Systems and Neural Networks +cond-mat/0106511 Strongly Correlated Electrons +cond-mat/0106521 Strongly Correlated Electrons +cond-mat/0107211 Strongly Correlated Electrons +cond-mat/0107373 Strongly Correlated Electrons +cond-mat/0107457 +cond-mat/0108430 Mesoscale and Nanoscale Physics +cond-mat/0108442 Materials Science +cond-mat/0109270 Statistical Mechanics +cond-mat/0109427 Soft Condensed Matter +cond-mat/0110391 Superconductivity +cond-mat/0110442 Statistical Mechanics +cond-mat/0110530 +cond-mat/0110559 Strongly Correlated Electrons +cond-mat/0111090 Disordered Systems and Neural Networks +cond-mat/0111296 Strongly Correlated Electrons +cond-mat/0111352 Strongly Correlated Electrons +cond-mat/0111367 Statistical Mechanics +cond-mat/0112159 Strongly Correlated Electrons +cond-mat/0112284 Superconductivity +cond-mat/0112320 Statistical Mechanics +cond-mat/0112413 Superconductivity +cond-mat/0112425 Soft Condensed Matter +cond-mat/0201003 Strongly Correlated Electrons +cond-mat/0201004 Strongly Correlated Electrons +cond-mat/0201016 Strongly Correlated Electrons +cond-mat/0201157 Materials Science +cond-mat/0201347 Strongly Correlated Electrons +cond-mat/0202113 Disordered Systems and Neural Networks +cond-mat/0202485 Superconductivity +cond-mat/0203067 Statistical Mechanics +cond-mat/0203102 Strongly Correlated Electrons +cond-mat/0203378 Materials Science +cond-mat/0203445 Soft Condensed Matter +cond-mat/0204281 Superconductivity +cond-mat/0204335 Soft Condensed Matter +cond-mat/0204354 Mesoscale and Nanoscale Physics +cond-mat/0204395 Materials Science +cond-mat/0204573 Statistical Mechanics +cond-mat/0205224 Strongly Correlated Electrons +cond-mat/0205292 Materials Science +cond-mat/0205306 Mesoscale and Nanoscale Physics +cond-mat/0205468 Statistical Mechanics +cond-mat/0205595 Superconductivity +cond-mat/0206274 Soft Condensed Matter +cond-mat/0206417 +cond-mat/0206494 Soft Condensed Matter +cond-mat/0206522 Statistical Mechanics +cond-mat/0206545 Statistical Mechanics +cond-mat/0207072 Superconductivity +cond-mat/0207092 +cond-mat/0207099 Mesoscale and Nanoscale Physics +cond-mat/0207254 Materials Science +cond-mat/0207531 Materials Science +cond-mat/0207541 Soft Condensed Matter +cond-mat/0208187 Strongly Correlated Electrons +cond-mat/0208432 Disordered Systems and Neural Networks +cond-mat/0208510 Materials Science +cond-mat/0208552 Statistical Mechanics +cond-mat/0208593 Soft Condensed Matter +cond-mat/0209389 +cond-mat/0209481 Strongly Correlated Electrons +cond-mat/0209559 Mesoscale and Nanoscale Physics +cond-mat/0210019 Mesoscale and Nanoscale Physics +cond-mat/0210092 Strongly Correlated Electrons +cond-mat/0211108 Statistical Mechanics +cond-mat/0211115 Statistical Mechanics +cond-mat/0211143 Materials Science +cond-mat/0211176 Statistical Mechanics +cond-mat/0211177 Statistical Mechanics +cond-mat/0211488 Mesoscale and Nanoscale Physics +cond-mat/0211662 Strongly Correlated Electrons +cond-mat/0211692 Statistical Mechanics +cond-mat/0212085 Superconductivity +cond-mat/0212238 Strongly Correlated Electrons +cond-mat/0212465 Statistical Mechanics +cond-mat/0212480 Soft Condensed Matter +cond-mat/0301164 Strongly Correlated Electrons +cond-mat/0301350 Strongly Correlated Electrons +cond-mat/0301387 Strongly Correlated Electrons +cond-mat/0301567 Superconductivity +cond-mat/0302155 +cond-mat/0302384 Superconductivity +cond-mat/0302581 Soft Condensed Matter +cond-mat/0303002 Superconductivity +cond-mat/0303026 Mesoscale and Nanoscale Physics +cond-mat/0303070 Strongly Correlated Electrons +cond-mat/0303246 Mesoscale and Nanoscale Physics +cond-mat/0303284 Superconductivity +cond-mat/0303536 Mesoscale and Nanoscale Physics +cond-mat/0304015 Statistical Mechanics +cond-mat/0304248 Other Condensed Matter +cond-mat/0304260 Mesoscale and Nanoscale Physics +cond-mat/0304358 Other Condensed Matter +cond-mat/0304401 +cond-mat/0304567 Statistical Mechanics +cond-mat/0304619 Materials Science +cond-mat/0305033 Superconductivity +cond-mat/0305261 Mesoscale and Nanoscale Physics +cond-mat/0305321 Superconductivity +cond-mat/0305489 Soft Condensed Matter +cond-mat/0305497 Soft Condensed Matter +cond-mat/0305662 Soft Condensed Matter +cond-mat/0306063 Mesoscale and Nanoscale Physics +cond-mat/0306102 Soft Condensed Matter +cond-mat/0306251 Strongly Correlated Electrons +cond-mat/0306514 Soft Condensed Matter +cond-mat/0307018 Superconductivity +cond-mat/0307143 Superconductivity +cond-mat/0307216 Disordered Systems and Neural Networks +cond-mat/0307231 +cond-mat/0307589 Statistical Mechanics +cond-mat/0307616 Mesoscale and Nanoscale Physics +cond-mat/0307650 Materials Science +cond-mat/0308086 Mesoscale and Nanoscale Physics +cond-mat/0308292 Superconductivity +cond-mat/0308311 Superconductivity +cond-mat/0308312 Superconductivity +cond-mat/0308450 Statistical Mechanics +cond-mat/0308627 Statistical Mechanics +cond-mat/0309012 +cond-mat/0309104 +cond-mat/0309232 Strongly Correlated Electrons +cond-mat/0309388 Statistical Mechanics +cond-mat/0309426 Disordered Systems and Neural Networks +cond-mat/0309489 Soft Condensed Matter +cond-mat/0309561 Superconductivity +cond-mat/0309637 Statistical Mechanics +cond-mat/0309655 +cond-mat/0310110 Materials Science +cond-mat/0310651 Soft Condensed Matter +cond-mat/0311064 Strongly Correlated Electrons +cond-mat/0311655 Soft Condensed Matter +cond-mat/0312100 Materials Science +cond-mat/0312204 Soft Condensed Matter +cond-mat/0401030 Mesoscale and Nanoscale Physics +cond-mat/0401185 Strongly Correlated Electrons +cond-mat/0401623 Superconductivity +cond-mat/0402043 Materials Science +cond-mat/0402067 Soft Condensed Matter +cond-mat/0402093 Materials Science +cond-mat/0402148 Disordered Systems and Neural Networks +cond-mat/0402529 Disordered Systems and Neural Networks +cond-mat/0403060 Materials Science +cond-mat/0403065 Materials Science +cond-mat/0403075 Strongly Correlated Electrons +cond-mat/0403139 Soft Condensed Matter +cond-mat/0403333 Statistical Mechanics +cond-mat/0403418 Superconductivity +cond-mat/0403483 Materials Science +cond-mat/0403565 Other Condensed Matter +cond-mat/0403589 Superconductivity +cond-mat/0403706 Disordered Systems and Neural Networks +cond-mat/0404018 Disordered Systems and Neural Networks +cond-mat/0404176 Materials Science +cond-mat/0404311 Strongly Correlated Electrons +cond-mat/0404559 Other Condensed Matter +cond-mat/0405093 Statistical Mechanics +cond-mat/0405096 Disordered Systems and Neural Networks +cond-mat/0405147 Materials Science +cond-mat/0405319 Statistical Mechanics +cond-mat/0405404 Superconductivity +cond-mat/0405476 Strongly Correlated Electrons +cond-mat/0405478 Strongly Correlated Electrons +cond-mat/0405493 Superconductivity +cond-mat/0405500 Materials Science +cond-mat/0405555 Statistical Mechanics +cond-mat/0405617 Mesoscale and Nanoscale Physics +cond-mat/0406060 Superconductivity +cond-mat/0406173 Other Condensed Matter +cond-mat/0406268 Disordered Systems and Neural Networks +cond-mat/0406515 Strongly Correlated Electrons +cond-mat/0406634 Strongly Correlated Electrons +cond-mat/0406656 Other Condensed Matter +cond-mat/0406727 Other Condensed Matter +cond-mat/0406734 Other Condensed Matter +cond-mat/0407037 Materials Science +cond-mat/0407038 Materials Science +cond-mat/0407047 Statistical Mechanics +cond-mat/0407071 Mesoscale and Nanoscale Physics +cond-mat/0407200 Mesoscale and Nanoscale Physics +cond-mat/0407210 Mesoscale and Nanoscale Physics +cond-mat/0407329 Materials Science +cond-mat/0407393 Soft Condensed Matter +cond-mat/0407648 Superconductivity +cond-mat/0408024 Strongly Correlated Electrons +cond-mat/0408086 Disordered Systems and Neural Networks +cond-mat/0408368 Mesoscale and Nanoscale Physics +cond-mat/0409015 Other Condensed Matter +cond-mat/0409223 Other Condensed Matter +cond-mat/0409357 Strongly Correlated Electrons +cond-mat/0409368 Superconductivity +cond-mat/0409397 Superconductivity +cond-mat/0409447 Materials Science +cond-mat/0409534 Other Condensed Matter +cond-mat/0409545 Statistical Mechanics +cond-mat/0409617 Materials Science +cond-mat/0409707 Materials Science +cond-mat/0409713 Materials Science +cond-mat/0409726 Other Condensed Matter +cond-mat/0409753 Materials Science +cond-mat/0410203 Strongly Correlated Electrons +cond-mat/0410394 Strongly Correlated Electrons +cond-mat/0410506 Mesoscale and Nanoscale Physics +cond-mat/0410513 Materials Science +cond-mat/0410514 Materials Science +cond-mat/0410540 Materials Science +cond-mat/0410592 Statistical Mechanics +cond-mat/0410632 Superconductivity +cond-mat/0410633 Superconductivity +cond-mat/0410666 Mesoscale and Nanoscale Physics +cond-mat/0410674 Mesoscale and Nanoscale Physics +cond-mat/0410687 Mesoscale and Nanoscale Physics +cond-mat/0410747 Strongly Correlated Electrons +cond-mat/0411038 Materials Science +cond-mat/0411062 Disordered Systems and Neural Networks +cond-mat/0411135 Strongly Correlated Electrons +cond-mat/0411200 Strongly Correlated Electrons +cond-mat/0411259 Materials Science +cond-mat/0411290 Superconductivity +cond-mat/0411552 Materials Science +cond-mat/0411623 Mesoscale and Nanoscale Physics +cond-mat/0411647 Soft Condensed Matter +cond-mat/0412005 Superconductivity +cond-mat/0412030 Other Condensed Matter +cond-mat/0412249 Strongly Correlated Electrons +cond-mat/0412276 Strongly Correlated Electrons +cond-mat/0412277 Strongly Correlated Electrons +cond-mat/0412393 Mesoscale and Nanoscale Physics +cond-mat/0412400 Soft Condensed Matter +cond-mat/0412530 Strongly Correlated Electrons +cond-mat/0412560 Strongly Correlated Electrons +cond-mat/0412762 Mesoscale and Nanoscale Physics +cond-mat/0501212 Mesoscale and Nanoscale Physics +cond-mat/0501300 Materials Science +cond-mat/0501346 Statistical Mechanics +cond-mat/0501422 Other Condensed Matter +cond-mat/0501687 Materials Science +cond-mat/0501745 Other Condensed Matter +cond-mat/0502026 Statistical Mechanics +cond-mat/0502105 Strongly Correlated Electrons +cond-mat/0502148 Superconductivity +cond-mat/0502265 Other Condensed Matter +cond-mat/0502300 Strongly Correlated Electrons +cond-mat/0502428 Materials Science +cond-mat/0502510 Strongly Correlated Electrons +cond-mat/0502529 Other Condensed Matter +cond-mat/0502565 Strongly Correlated Electrons +cond-mat/0502596 Mesoscale and Nanoscale Physics +cond-mat/0502622 Soft Condensed Matter +cond-mat/0503067 Superconductivity +cond-mat/0503074 Materials Science +cond-mat/0503084 Soft Condensed Matter +cond-mat/0503151 Other Condensed Matter +cond-mat/0503159 Statistical Mechanics +cond-mat/0503204 Mesoscale and Nanoscale Physics +cond-mat/0503439 Disordered Systems and Neural Networks +cond-mat/0503460 Strongly Correlated Electrons +cond-mat/0503485 Materials Science +cond-mat/0503569 Superconductivity +cond-mat/0503602 Mesoscale and Nanoscale Physics +cond-mat/0503691 Superconductivity +cond-mat/0503704 Statistical Mechanics +cond-mat/0504021 Other Condensed Matter +cond-mat/0504182 Other Condensed Matter +cond-mat/0504387 Materials Science +cond-mat/0504476 Mesoscale and Nanoscale Physics +cond-mat/0504506 Mesoscale and Nanoscale Physics +cond-mat/0504586 Soft Condensed Matter +cond-mat/0504612 Other Condensed Matter +cond-mat/0504713 Materials Science +cond-mat/0504738 Materials Science +cond-mat/0505065 Materials Science +cond-mat/0505210 Other Condensed Matter +cond-mat/0505240 Other Condensed Matter +cond-mat/0505381 Other Condensed Matter +cond-mat/0505420 Other Condensed Matter +cond-mat/0505454 Statistical Mechanics +cond-mat/0505507 Materials Science +cond-mat/0505561 Superconductivity +cond-mat/0505602 Materials Science +cond-mat/0505610 Statistical Mechanics +cond-mat/0505651 Soft Condensed Matter +cond-mat/0505699 Strongly Correlated Electrons +cond-mat/0505709 Other Condensed Matter +cond-mat/0505725 Other Condensed Matter +cond-mat/0506155 Materials Science +cond-mat/0506180 Other Condensed Matter +cond-mat/0506258 Strongly Correlated Electrons +cond-mat/0506483 Strongly Correlated Electrons +cond-mat/0506522 Superconductivity +cond-mat/0506638 Other Condensed Matter +cond-mat/0506656 Soft Condensed Matter +cond-mat/0506736 Statistical Mechanics +cond-mat/0506781 Soft Condensed Matter +cond-mat/0507062 Mesoscale and Nanoscale Physics +cond-mat/0507079 Other Condensed Matter +cond-mat/0507203 Statistical Mechanics +cond-mat/0507224 Mesoscale and Nanoscale Physics +cond-mat/0507225 Materials Science +cond-mat/0507240 Strongly Correlated Electrons +cond-mat/0507264 Mesoscale and Nanoscale Physics +cond-mat/0507317 Materials Science +cond-mat/0507399 Other Condensed Matter +cond-mat/0507439 Strongly Correlated Electrons +cond-mat/0507469 Soft Condensed Matter +cond-mat/0507503 Mesoscale and Nanoscale Physics +cond-mat/0507641 Superconductivity +cond-mat/0507656 Mesoscale and Nanoscale Physics +cond-mat/0507696 Other Condensed Matter +cond-mat/0507707 Strongly Correlated Electrons +cond-mat/0507722 Mesoscale and Nanoscale Physics +cond-mat/0508097 Strongly Correlated Electrons +cond-mat/0508125 Statistical Mechanics +cond-mat/0508131 Other Condensed Matter +cond-mat/0508265 Strongly Correlated Electrons +cond-mat/0508281 Other Condensed Matter +cond-mat/0508284 Mesoscale and Nanoscale Physics +cond-mat/0508503 Other Condensed Matter +cond-mat/0508548 Materials Science +cond-mat/0508609 Disordered Systems and Neural Networks +cond-mat/0508635 Materials Science +cond-mat/0508759 Disordered Systems and Neural Networks +cond-mat/0509029 Other Condensed Matter +cond-mat/0509327 Materials Science +cond-mat/0509336 Soft Condensed Matter +cond-mat/0509419 Materials Science +cond-mat/0509503 Statistical Mechanics +cond-mat/0509562 Statistical Mechanics +cond-mat/0509605 Other Condensed Matter +cond-mat/0509792 Strongly Correlated Electrons +cond-mat/0510021 Statistical Mechanics +cond-mat/0510083 Mesoscale and Nanoscale Physics +cond-mat/0510127 Disordered Systems and Neural Networks +cond-mat/0510221 Materials Science +cond-mat/0510256 Mesoscale and Nanoscale Physics +cond-mat/0510582 Strongly Correlated Electrons +cond-mat/0510677 Soft Condensed Matter +cond-mat/0510833 Statistical Mechanics +cond-mat/0511078 Mesoscale and Nanoscale Physics +cond-mat/0511079 Strongly Correlated Electrons +cond-mat/0511101 Mesoscale and Nanoscale Physics +cond-mat/0511123 Materials Science +cond-mat/0511187 Soft Condensed Matter +cond-mat/0511362 Other Condensed Matter +cond-mat/0511408 Strongly Correlated Electrons +cond-mat/0511511 Other Condensed Matter +cond-mat/0511547 Mesoscale and Nanoscale Physics +cond-mat/0511644 Superconductivity +cond-mat/0511671 Statistical Mechanics +cond-mat/0512100 Soft Condensed Matter +cond-mat/0512181 Statistical Mechanics +cond-mat/0512304 Other Condensed Matter +cond-mat/0512338 Materials Science +cond-mat/0512403 Other Condensed Matter +cond-mat/0512405 Superconductivity +cond-mat/0512536 Strongly Correlated Electrons +cond-mat/0601078 Superconductivity +cond-mat/0601086 Statistical Mechanics +cond-mat/0601122 Statistical Mechanics +cond-mat/0601145 Materials Science +cond-mat/0601196 Statistical Mechanics +cond-mat/0601199 Mesoscale and Nanoscale Physics +cond-mat/0601253 Statistical Mechanics +cond-mat/0601255 Statistical Mechanics +cond-mat/0601286 Strongly Correlated Electrons +cond-mat/0601399 Statistical Mechanics +cond-mat/0601472 Other Condensed Matter +cond-mat/0601477 Soft Condensed Matter +cond-mat/0601510 Mesoscale and Nanoscale Physics +cond-mat/0601516 Materials Science +cond-mat/0601546 Materials Science +cond-mat/0601635 Mesoscale and Nanoscale Physics +cond-mat/0601709 Other Condensed Matter +cond-mat/0601718 Other Condensed Matter +cond-mat/0602069 Other Condensed Matter +cond-mat/0602169 Strongly Correlated Electrons +cond-mat/0602174 Other Condensed Matter +cond-mat/0602276 Disordered Systems and Neural Networks +cond-mat/0602282 Soft Condensed Matter +cond-mat/0602337 Disordered Systems and Neural Networks +cond-mat/0602346 Other Condensed Matter +cond-mat/0602388 Materials Science +cond-mat/0602426 Statistical Mechanics +cond-mat/0602448 Superconductivity +cond-mat/0602498 Soft Condensed Matter +cond-mat/0602523 Soft Condensed Matter +cond-mat/0602582 Other Condensed Matter +cond-mat/0602594 Materials Science +cond-mat/0602665 Mesoscale and Nanoscale Physics +cond-mat/0603040 Mesoscale and Nanoscale Physics +cond-mat/0603122 Superconductivity +cond-mat/0603239 Mesoscale and Nanoscale Physics +cond-mat/0603262 Other Condensed Matter +cond-mat/0603279 Other Condensed Matter +cond-mat/0603338 Statistical Mechanics +cond-mat/0603356 Mesoscale and Nanoscale Physics +cond-mat/0603358 Materials Science +cond-mat/0603417 Statistical Mechanics +cond-mat/0603420 Soft Condensed Matter +cond-mat/0603562 Statistical Mechanics +cond-mat/0603667 Soft Condensed Matter +cond-mat/0603818 Disordered Systems and Neural Networks +cond-mat/0603857 Soft Condensed Matter +cond-mat/0604025 Materials Science +cond-mat/0604039 Soft Condensed Matter +cond-mat/0604067 Other Condensed Matter +cond-mat/0604141 Soft Condensed Matter +cond-mat/0604156 Other Condensed Matter +cond-mat/0604312 Other Condensed Matter +cond-mat/0604368 Materials Science +cond-mat/0604369 Mesoscale and Nanoscale Physics +cond-mat/0604371 Other Condensed Matter +cond-mat/0604461 Soft Condensed Matter +cond-mat/0605038 Other Condensed Matter +cond-mat/0605057 Other Condensed Matter +cond-mat/0605107 Materials Science +cond-mat/0605141 Mesoscale and Nanoscale Physics +cond-mat/0605199 Mesoscale and Nanoscale Physics +cond-mat/0605272 Other Condensed Matter +cond-mat/0605291 Other Condensed Matter +cond-mat/0605302 Other Condensed Matter +cond-mat/0605330 Other Condensed Matter +cond-mat/0605374 Other Condensed Matter +cond-mat/0605482 Strongly Correlated Electrons +cond-mat/0605727 Statistical Mechanics +cond-mat/0605738 Materials Science +cond-mat/0605751 Statistical Mechanics +cond-mat/0606006 Materials Science +cond-mat/0606015 Other Condensed Matter +cond-mat/0606092 Other Condensed Matter +cond-mat/0606276 Strongly Correlated Electrons +cond-mat/0606496 Statistical Mechanics +cond-mat/0606533 Materials Science +cond-mat/0606562 Superconductivity +cond-mat/0606761 Superconductivity +cond-mat/0606798 Statistical Mechanics +cond-mat/0607170 Other Condensed Matter +cond-mat/0607197 Mesoscale and Nanoscale Physics +cond-mat/0607260 Superconductivity +cond-mat/0607264 Soft Condensed Matter +cond-mat/0607337 Statistical Mechanics +cond-mat/0607438 Other Condensed Matter +cond-mat/0607480 Other Condensed Matter +cond-mat/0607561 Superconductivity +cond-mat/0607696 Materials Science +cond-mat/0607723 Other Condensed Matter +cond-mat/0607785 Other Condensed Matter +cond-mat/0607820 Statistical Mechanics +cond-mat/0607821 Other Condensed Matter +cond-mat/0608088 Statistical Mechanics +cond-mat/0608261 Other Condensed Matter +cond-mat/0608315 Materials Science +cond-mat/0608359 Strongly Correlated Electrons +cond-mat/0608457 Mesoscale and Nanoscale Physics +cond-mat/0608529 Other Condensed Matter +cond-mat/0608612 Statistical Mechanics +cond-mat/0608623 Soft Condensed Matter +cond-mat/0608658 Statistical Mechanics +cond-mat/0609031 Disordered Systems and Neural Networks +cond-mat/0609086 Mesoscale and Nanoscale Physics +cond-mat/0609099 Disordered Systems and Neural Networks +cond-mat/0609216 Soft Condensed Matter +cond-mat/0609397 Materials Science +cond-mat/0609420 Soft Condensed Matter +cond-mat/0609504 Materials Science +cond-mat/0609506 Materials Science +cond-mat/0609689 Soft Condensed Matter +cond-mat/0609704 Superconductivity +cond-mat/0609761 Other Condensed Matter +cond-mat/0609772 Superconductivity +cond-mat/0610174 Other Condensed Matter +cond-mat/0610297 Other Condensed Matter +cond-mat/0610346 Other Condensed Matter +cond-mat/0610408 Superconductivity +cond-mat/0610517 Materials Science +cond-mat/0610556 Mesoscale and Nanoscale Physics +cond-mat/0610572 Mesoscale and Nanoscale Physics +cond-mat/0610656 Materials Science +cond-mat/0610840 Other Condensed Matter +cond-mat/0610841 Mesoscale and Nanoscale Physics +cond-mat/0610867 Statistical Mechanics +cond-mat/0610880 Superconductivity +cond-mat/0611127 Mesoscale and Nanoscale Physics +cond-mat/0611204 Strongly Correlated Electrons +cond-mat/0611307 Materials Science +cond-mat/0611388 Statistical Mechanics +cond-mat/0611559 Materials Science +cond-mat/0611564 Disordered Systems and Neural Networks +cond-mat/0611627 Strongly Correlated Electrons +cond-mat/0611644 Mesoscale and Nanoscale Physics +cond-mat/0611728 Materials Science +cond-mat/0612108 Statistical Mechanics +cond-mat/0612110 Soft Condensed Matter +cond-mat/0612142 Strongly Correlated Electrons +cond-mat/0612242 Materials Science +cond-mat/0612324 Other Condensed Matter +cond-mat/0612375 Materials Science +cond-mat/0612547 Other Condensed Matter +cond-mat/0612695 Statistical Mechanics +cond-mat/9405001 +cond-mat/9409016 +cond-mat/9601109 +cond-mat/9709124 Mesoscale and Nanoscale Physics +cond-mat/9711041 Strongly Correlated Electrons +cond-mat/9711130 Materials Science +cond-mat/9711131 Materials Science +cs/0106041 Computational Complexity +cs/0109018 Computational Complexity +cs/0110025 Computational Complexity +cs/0112021 Computational Complexity +cs/0212016 Computational Complexity +cs/0402034 Computational Complexity +cs/0405006 Distributed, Parallel, and Cluster Computing +cs/0405059 Discrete Mathematics +cs/0405069 Databases +cs/0405106 Artificial Intelligence +cs/0501074 Symbolic Computation +cs/0502073 Data Structures and Algorithms +cs/0502076 Learning +cs/0502081 Multiagent Systems +cs/0503013 Distributed, Parallel, and Cluster Computing +cs/0503059 Artificial Intelligence +cs/0504082 Discrete Mathematics +cs/0504107 Networking and Internet Architecture +cs/0505027 Data Structures and Algorithms +cs/0506006 Distributed, Parallel, and Cluster Computing +cs/0506017 Databases +cs/0506049 Digital Libraries +cs/0506096 Computational Complexity +cs/0507025 Computational Engineering, Finance, and Science +cs/0509003 Computational Engineering, Finance, and Science +cs/0509004 Discrete Mathematics +cs/0510014 Symbolic Computation +cs/0510034 Human-Computer Interaction +cs/0510041 Symbolic Computation +cs/0510081 Distributed, Parallel, and Cluster Computing +cs/0510082 Networking and Internet Architecture +cs/0511093 Computer Science and Game Theory +cs/0512018 Neural and Evolutionary Computing +cs/0512032 Information Retrieval +cs/0512050 Learning +cs/0512051 Discrete Mathematics +cs/0601004 Artificial Intelligence +cs/0601025 Human-Computer Interaction +cs/0601027 Discrete Mathematics +cs/0601031 Artificial Intelligence +cs/0601044 Learning +cs/0602005 Mathematical Software +cs/0602017 Other Computer Science +cs/0602021 Artificial Intelligence +cs/0602022 Artificial Intelligence +cs/0602036 Neural and Evolutionary Computing +cs/0603017 Computational Complexity +cs/0603122 Data Structures and Algorithms +cs/0604023 Networking and Internet Architecture +cs/0604060 Symbolic Computation +cs/0604081 Logic in Computer Science +cs/0605019 Discrete Mathematics +cs/0605055 Artificial Intelligence +cs/0605080 Networking and Internet Architecture +cs/0605096 Distributed, Parallel, and Cluster Computing +cs/0605142 Hardware Architecture +cs/0605143 Hardware Architecture +cs/0605144 Hardware Architecture +cs/0605145 Hardware Architecture +cs/0605146 Hardware Architecture +cs/0605147 Human-Computer Interaction +cs/0606005 Networking and Internet Architecture +cs/0606030 Cryptography and Security +cs/0606069 Information Retrieval +cs/0606073 Information Retrieval +cs/0606076 Networking and Internet Architecture +cs/0606092 Software Engineering +cs/0606105 Information Retrieval +cs/0606108 Software Engineering +cs/0606112 Software Engineering +cs/0606117 Information Theory +cs/0606118 Computation and Language +cs/0606120 Computational Complexity +cs/0607008 Discrete Mathematics +cs/0607017 Information Theory +cs/0607041 Distributed, Parallel, and Cluster Computing +cs/0607048 Neural and Evolutionary Computing +cs/0607049 Cryptography and Security +cs/0607082 Discrete Mathematics +cs/0607096 Learning +cs/0607097 Networking and Internet Architecture +cs/0608125 Logic in Computer Science +cs/0609002 Logic in Computer Science +cs/0609013 Logic in Computer Science +cs/0609026 Networking and Internet Architecture +cs/0609039 Logic in Computer Science +cs/0609044 Computation and Language +cs/0609086 Networking and Internet Architecture +cs/0609107 Other Computer Science +cs/0609114 Numerical Analysis +cs/0609133 Artificial Intelligence +cs/0609134 Artificial Intelligence +cs/0609135 Artificial Intelligence +cs/0609136 Artificial Intelligence +cs/0609137 Artificial Intelligence +cs/0609151 Networking and Internet Architecture +cs/0609152 Networking and Internet Architecture +cs/0610004 Computation and Language +cs/0610014 Cryptography and Security +cs/0610041 Neural and Evolutionary Computing +cs/0610044 Networking and Internet Architecture +cs/0610064 Logic in Computer Science +cs/0610065 Logic in Computer Science +cs/0610068 Logic in Computer Science +cs/0610069 Logic in Computer Science +cs/0610070 Logic in Computer Science +cs/0610071 Logic in Computer Science +cs/0610072 Logic in Computer Science +cs/0610073 Logic in Computer Science +cs/0610097 Software Engineering +cs/0610131 Distributed, Parallel, and Cluster Computing +cs/0611016 Networking and Internet Architecture +cs/0611027 Cryptography and Security +cs/0611034 Distributed, Parallel, and Cluster Computing +cs/0611056 Networking and Internet Architecture +cs/0611084 Distributed, Parallel, and Cluster Computing +cs/0611101 Data Structures and Algorithms +cs/0611104 Neural and Evolutionary Computing +cs/0611105 Networking and Internet Architecture +cs/0611127 Mathematical Software +cs/0611135 Artificial Intelligence +cs/0611138 Artificial Intelligence +cs/0611139 Distributed, Parallel, and Cluster Computing +cs/0611151 Human-Computer Interaction +cs/0611152 Human-Computer Interaction +cs/0611153 Human-Computer Interaction +cs/0611154 Human-Computer Interaction +cs/0611158 Human-Computer Interaction +cs/0611159 Human-Computer Interaction +cs/0612004 Human-Computer Interaction +cs/0612005 Human-Computer Interaction +cs/0612008 Human-Computer Interaction +cs/0612009 Human-Computer Interaction +cs/0612010 Human-Computer Interaction +cs/0612016 Human-Computer Interaction +cs/0612017 Human-Computer Interaction +cs/0612018 Human-Computer Interaction +cs/0612020 Other Computer Science +cs/0612021 Human-Computer Interaction +cs/0612023 Human-Computer Interaction +cs/0612037 Data Structures and Algorithms +cs/0612059 Networking and Internet Architecture +gr-qc/0101079 +gr-qc/0104047 +gr-qc/0105070 +gr-qc/0105081 +gr-qc/0109094 +gr-qc/0202030 +gr-qc/0203101 +gr-qc/0204016 +gr-qc/0206088 +gr-qc/0207018 +gr-qc/0207099 +gr-qc/0207110 +gr-qc/0212063 +gr-qc/0303020 +gr-qc/0308051 +gr-qc/0308091 +gr-qc/0309059 +gr-qc/0310049 +gr-qc/0311027 +gr-qc/0312035 +gr-qc/0312051 +gr-qc/0405058 +gr-qc/0406122 +gr-qc/0407104 +gr-qc/0408071 +gr-qc/0409072 +gr-qc/0411005 +gr-qc/0501019 +gr-qc/0501069 +gr-qc/0502002 +gr-qc/0502041 +gr-qc/0503040 +gr-qc/0506004 +gr-qc/0507040 +gr-qc/0507065 +gr-qc/0601125 +gr-qc/0602015 +gr-qc/0602040 +gr-qc/0602067 +gr-qc/0603081 +gr-qc/0605075 +gr-qc/0606044 +gr-qc/0607037 +gr-qc/0607105 +gr-qc/0609100 +gr-qc/0610120 +gr-qc/0611089 +gr-qc/0612031 +gr-qc/0612097 +gr-qc/0612114 +hep-ex/0107007 Experiment +hep-ex/0406074 Experiment +hep-ex/0409045 Experiment +hep-ex/0501058 Experiment +hep-ex/0506074 Experiment +hep-lat/0107002 Lattice +hep-lat/0110206 Lattice +hep-lat/0110223 Lattice +hep-lat/0112051 Lattice +hep-lat/0202003 Lattice +hep-lat/0206011 Lattice +hep-lat/0208058 Lattice +hep-lat/0209061 Lattice +hep-lat/0209124 Lattice +hep-lat/0304005 Lattice +hep-lat/0305024 Lattice +hep-lat/0307026 Lattice +hep-lat/0402026 Lattice +hep-lat/0404016 Lattice +hep-lat/0405031 Lattice +hep-lat/0408010 Lattice +hep-lat/0409014 Lattice +hep-lat/0410002 Lattice +hep-lat/0507020 Lattice +hep-lat/0507022 Lattice +hep-lat/0509110 Lattice +hep-lat/0610050 Lattice +hep-ph/0101284 Phenomenology +hep-ph/0102017 Phenomenology +hep-ph/0102142 Phenomenology +hep-ph/0103186 Phenomenology +hep-ph/0105063 Phenomenology +hep-ph/0105221 Phenomenology +hep-ph/0107249 Phenomenology +hep-ph/0107278 Phenomenology +hep-ph/0109112 Phenomenology +hep-ph/0110172 Phenomenology +hep-ph/0110232 Phenomenology +hep-ph/0110244 Phenomenology +hep-ph/0110289 Phenomenology +hep-ph/0111011 Phenomenology +hep-ph/0111441 Phenomenology +hep-ph/0112111 Phenomenology +hep-ph/0112244 Phenomenology +hep-ph/0204152 Phenomenology +hep-ph/0205187 Phenomenology +hep-ph/0206237 Phenomenology +hep-ph/0207109 Phenomenology +hep-ph/0208008 Phenomenology +hep-ph/0209031 Phenomenology +hep-ph/0209294 Phenomenology +hep-ph/0210098 Phenomenology +hep-ph/0211199 Phenomenology +hep-ph/0212192 Phenomenology +hep-ph/0212313 Phenomenology +hep-ph/0301199 Phenomenology +hep-ph/0301221 Phenomenology +hep-ph/0301230 Phenomenology +hep-ph/0301231 Phenomenology +hep-ph/0302120 Phenomenology +hep-ph/0303070 Phenomenology +hep-ph/0303151 Phenomenology +hep-ph/0303152 Phenomenology +hep-ph/0303199 Phenomenology +hep-ph/0303205 Phenomenology +hep-ph/0303241 Phenomenology +hep-ph/0306108 Phenomenology +hep-ph/0306199 Phenomenology +hep-ph/0306300 Phenomenology +hep-ph/0312299 Phenomenology +hep-ph/0312332 Phenomenology +hep-ph/0403233 Phenomenology +hep-ph/0405021 Phenomenology +hep-ph/0406313 Phenomenology +hep-ph/0408005 Phenomenology +hep-ph/0408123 Phenomenology +hep-ph/0409193 Phenomenology +hep-ph/0409207 Phenomenology +hep-ph/0409235 Phenomenology +hep-ph/0410347 Phenomenology +hep-ph/0412081 Phenomenology +hep-ph/0506328 Phenomenology +hep-ph/0507241 Phenomenology +hep-ph/0509329 Phenomenology +hep-ph/0509361 Phenomenology +hep-ph/0510285 Phenomenology +hep-ph/0511264 Phenomenology +hep-ph/0512159 Phenomenology +hep-ph/0605249 Phenomenology +hep-ph/0608044 Phenomenology +hep-ph/0609174 Phenomenology +hep-ph/0611170 Phenomenology +hep-ph/0612210 Phenomenology +hep-ph/0612302 Phenomenology +hep-ph/9310345 Phenomenology +hep-ph/9312203 Phenomenology +hep-th/0101044 Theory +hep-th/0102089 Theory +hep-th/0103027 Theory +hep-th/0103044 Theory +hep-th/0103127 Theory +hep-th/0104137 Theory +hep-th/0105022 Theory +hep-th/0109118 Theory +hep-th/0109205 Theory +hep-th/0111064 Theory +hep-th/0112237 Theory +hep-th/0208164 Theory +hep-th/0209017 Theory +hep-th/0209019 Theory +hep-th/0210306 Theory +hep-th/0211211 Theory +hep-th/0301171 Theory +hep-th/0301224 Theory +hep-th/0302143 Theory +hep-th/0302145 Theory +hep-th/0303003 Theory +hep-th/0304104 Theory +hep-th/0306126 Theory +hep-th/0306147 Theory +hep-th/0307038 Theory +hep-th/0307126 Theory +hep-th/0307241 Theory +hep-th/0308124 Theory +hep-th/0309110 Theory +hep-th/0310255 Theory +hep-th/0311061 Theory +hep-th/0311128 Theory +hep-th/0312227 Theory +hep-th/0402048 Theory +hep-th/0403099 Theory +hep-th/0403227 Theory +hep-th/0403228 Theory +hep-th/0403229 Theory +hep-th/0404165 Theory +hep-th/0404169 Theory +hep-th/0406087 Theory +hep-th/0408112 Theory +hep-th/0409150 Theory +hep-th/0410023 Theory +hep-th/0411265 Theory +hep-th/0412178 Theory +hep-th/0501040 Theory +hep-th/0501116 Theory +hep-th/0501129 Theory +hep-th/0502230 Theory +hep-th/0505013 Theory +hep-th/0507088 Theory +hep-th/0510072 Theory +hep-th/0512055 Theory +hep-th/0512074 Theory +hep-th/0512115 Theory +hep-th/0601200 Theory +hep-th/0601217 Theory +hep-th/0603223 Theory +hep-th/0603227 Theory +hep-th/0605174 Theory +hep-th/0606159 Theory +hep-th/0607207 Theory +hep-th/0610112 Theory +hep-th/0612068 Theory +hep-th/9411002 Theory +hep-th/9703211 Theory +math-ph/0105012 +math-ph/0105018 +math-ph/0107006 +math-ph/0110029 +math-ph/0202005 +math-ph/0203026 +math-ph/0206036 +math-ph/0211078 +math-ph/0212002 +math-ph/0212043 +math-ph/0212046 +math-ph/0212048 +math-ph/0212049 +math-ph/0212066 +math-ph/0302007 +math-ph/0305045 +math-ph/0306020 +math-ph/0307011 +math-ph/0311014 +math-ph/0311015 +math-ph/0311016 +math-ph/0406027 +math-ph/0409037 +math-ph/0410057 +math-ph/0411047 +math-ph/0412058 +math-ph/0502031 +math-ph/0502039 +math-ph/0502054 +math-ph/0505030 +math-ph/0505034 +math-ph/0506045 +math-ph/0506056 +math-ph/0507014 +math-ph/0509022 +math-ph/0511091 +math-ph/0512004 +math-ph/0512052 +math-ph/0603045 +math-ph/0603055 +math-ph/0603061 +math-ph/0605029 +math-ph/0605030 +math-ph/0605031 +math-ph/0607061 +math-ph/0610065 +math-ph/0612009 +math-ph/0612062 +math-ph/9909017 +math/0101181 Symplectic Geometry +math/0102046 Symplectic Geometry +math/0102080 Classical Analysis and ODEs +math/0102095 Symplectic Geometry +math/0103097 Combinatorics +math/0104199 Analysis of PDEs +math/0105199 Probability +math/0105258 Probability +math/0106029 Numerical Analysis +math/0109046 Geometric Topology +math/0109123 Algebraic Geometry +math/0109182 Combinatorics +math/0111266 Algebraic Geometry +math/0112159 Differential Geometry +math/0112160 Differential Geometry +math/0112161 Differential Geometry +math/0201200 Dynamical Systems +math/0202298 Classical Analysis and ODEs +math/0202299 Probability +math/0207091 Algebraic Geometry +math/0207202 Algebraic Geometry +math/0207208 Combinatorics +math/0208171 Differential Geometry +math/0210405 Algebraic Topology +math/0212222 General Mathematics +math/0212223 General Mathematics +math/0212224 General Mathematics +math/0212233 Logic +math/0302184 Number Theory +math/0304004 Quantum Algebra +math/0304027 Geometric Topology +math/0305273 Statistics Theory +math/0305307 Optimization and Control +math/0309033 Algebraic Geometry +math/0310095 Differential Geometry +math/0311003 Quantum Algebra +math/0311201 Operator Algebras +math/0311350 Complex Variables +math/0312314 Probability +math/0312376 Spectral Theory +math/0401041 Probability +math/0401233 Probability +math/0404462 Dynamical Systems +math/0404519 Differential Geometry +math/0405092 Logic +math/0405350 Algebraic Geometry +math/0405550 Rings and Algebras +math/0406266 Probability +math/0407385 Metric Geometry +math/0408148 Algebraic Geometry +math/0409481 Dynamical Systems +math/0409502 Probability +math/0410354 Statistics Theory +math/0410426 Operator Algebras +math/0410454 Representation Theory +math/0410572 Algebraic Geometry +math/0411011 Probability +math/0411113 Representation Theory +math/0411242 Algebraic Geometry +math/0411361 Probability +math/0411655 Probability +math/0411660 Probability +math/0412188 Probability +math/0412548 Combinatorics +math/0501057 Representation Theory +math/0501107 Probability +math/0501135 Probability +math/0501366 General Mathematics +math/0501370 General Mathematics +math/0501416 General Mathematics +math/0501418 General Mathematics +math/0501419 General Mathematics +math/0501430 General Mathematics +math/0501431 General Mathematics +math/0501436 General Mathematics +math/0501438 General Mathematics +math/0502012 Probability +math/0502023 Algebraic Geometry +math/0502083 Numerical Analysis +math/0502182 Probability +math/0502208 Probability +math/0502285 Statistics Theory +math/0502308 Rings and Algebras +math/0502361 Optimization and Control +math/0502375 Probability +math/0502424 Differential Geometry +math/0502508 Number Theory +math/0503070 Probability +math/0503110 Probability +math/0503195 Differential Geometry +math/0503256 Spectral Theory +math/0503715 Statistics Theory +math/0504022 Numerical Analysis +math/0504040 Algebraic Geometry +math/0504162 Differential Geometry +math/0504236 Probability +math/0504237 Numerical Analysis +math/0504291 Group Theory +math/0504294 Functional Analysis +math/0504398 Differential Geometry +math/0504464 Probability +math/0505081 Statistics Theory +math/0505109 Numerical Analysis +math/0505117 Differential Geometry +math/0505126 General Mathematics +math/0505145 Analysis of PDEs +math/0505179 General Mathematics +math/0505184 Statistics Theory +math/0505207 Rings and Algebras +math/0505228 Functional Analysis +math/0505281 Numerical Analysis +math/0505295 Number Theory +math/0505303 Functional Analysis +math/0505439 Probability +math/0506042 Dynamical Systems +math/0506148 Differential Geometry +math/0506194 Algebraic Geometry +math/0506299 Differential Geometry +math/0506365 Differential Geometry +math/0507032 Combinatorics +math/0507133 Probability +math/0507194 Algebraic Geometry +math/0507211 Functional Analysis +math/0507239 Geometric Topology +math/0507256 Combinatorics +math/0507594 Symplectic Geometry +math/0508073 Statistics Theory +math/0508173 Analysis of PDEs +math/0508616 Probability +math/0509256 Statistics Theory +math/0509278 Spectral Theory +math/0509308 Probability +math/0509352 Optimization and Control +math/0509546 Algebraic Topology +math/0509634 Statistics Theory +math/0509713 Probability +math/0510066 Numerical Analysis +math/0510111 Operator Algebras +math/0510351 Probability +math/0510384 Probability +math/0510439 Probability +math/0510453 Probability +math/0510497 Probability +math/0510611 Classical Analysis and ODEs +math/0510626 Analysis of PDEs +math/0510630 Analysis of PDEs +math/0510655 Probability +math/0510656 Probability +math/0511005 Geometric Topology +math/0511049 Probability +math/0511096 Functional Analysis +math/0511242 Differential Geometry +math/0511280 Quantum Algebra +math/0511442 Group Theory +math/0511465 Dynamical Systems +math/0511545 Probability +math/0511607 Probability +math/0511708 Probability +math/0511736 Algebraic Geometry +math/0512030 Operator Algebras +math/0512174 Algebraic Geometry +math/0512244 Group Theory +math/0512314 Number Theory +math/0512321 Functional Analysis +math/0601065 Statistics Theory +math/0601087 Logic +math/0601099 Statistics Theory +math/0601118 Combinatorics +math/0601177 Probability +math/0601243 Probability +math/0601315 Probability +math/0601363 Group Theory +math/0601495 Spectral Theory +math/0601551 Analysis of PDEs +math/0601586 Differential Geometry +math/0601611 Analysis of PDEs +math/0601698 Quantum Algebra +math/0602207 Probability +math/0602217 Statistics Theory +math/0602241 Statistics Theory +math/0602244 Statistics Theory +math/0602305 Numerical Analysis +math/0602349 Numerical Analysis +math/0602381 Probability +math/0602482 Logic +math/0602493 Logic +math/0602501 Probability +math/0602503 Probability +math/0602560 Analysis of PDEs +math/0602663 Statistics Theory +math/0602664 Probability +math/0603084 Statistics Theory +math/0603107 Analysis of PDEs +math/0603123 Statistics Theory +math/0603132 Statistics Theory +math/0603250 Probability +math/0603333 Probability +math/0603337 Probability +math/0603448 Statistics Theory +math/0603514 Differential Geometry +math/0603526 Statistics Theory +math/0603613 Probability +math/0603640 Classical Analysis and ODEs +math/0603641 Classical Analysis and ODEs +math/0603642 Classical Analysis and ODEs +math/0603721 Analysis of PDEs +math/0603741 Optimization and Control +math/0604010 Numerical Analysis +math/0604023 Algebraic Geometry +math/0604041 Probability +math/0604064 Statistics Theory +math/0604184 Complex Variables +math/0604214 Dynamical Systems +math/0604223 Differential Geometry +math/0604246 Statistics Theory +math/0604332 Analysis of PDEs +math/0604446 Probability +math/0604603 Rings and Algebras +math/0605323 Statistics Theory +math/0605364 Geometric Topology +math/0605400 Probability +math/0605438 Dynamical Systems +math/0605491 Probability +math/0605504 Geometric Topology +math/0605621 Representation Theory +math/0605688 Analysis of PDEs +math/0605719 Probability +math/0605750 Algebraic Geometry +math/0606166 Statistics Theory +math/0606307 Analysis of PDEs +math/0606328 Analysis of PDEs +math/0606346 Combinatorics +math/0606516 Functional Analysis +math/0606750 Probability +math/0606788 Probability +math/0606789 Statistics Theory +math/0606792 Logic +math/0607010 Statistics Theory +math/0607013 Statistics Theory +math/0607015 Statistics Theory +math/0607041 Probability +math/0607046 Statistics Theory +math/0607087 Representation Theory +math/0607186 Analysis of PDEs +math/0607280 Combinatorics +math/0607282 Probability +math/0607411 Combinatorics +math/0607412 Combinatorics +math/0607419 Combinatorics +math/0607420 Combinatorics +math/0607424 Optimization and Control +math/0607425 Optimization and Control +math/0607426 Optimization and Control +math/0607439 Statistics Theory +math/0607453 Probability +math/0607455 Optimization and Control +math/0607457 Optimization and Control +math/0607466 Optimization and Control +math/0607493 Numerical Analysis +math/0607495 Analysis of PDEs +math/0607530 Analysis of PDEs +math/0607532 Analysis of PDEs +math/0607535 Analysis of PDEs +math/0607536 Analysis of PDEs +math/0607538 Analysis of PDEs +math/0607539 Analysis of PDEs +math/0607540 Analysis of PDEs +math/0607541 Analysis of PDEs +math/0607542 Analysis of PDEs +math/0607545 Probability +math/0607550 Analysis of PDEs +math/0607573 Analysis of PDEs +math/0607595 Representation Theory +math/0607597 Numerical Analysis +math/0607604 Optimization and Control +math/0607803 Statistics Theory +math/0607812 Statistics Theory +math/0608017 Statistics Theory +math/0608022 Statistics Theory +math/0608025 Statistics Theory +math/0608216 Probability +math/0608249 Dynamical Systems +math/0608484 Quantum Algebra +math/0608610 Combinatorics +math/0608613 Statistics Theory +math/0608641 Logic +math/0608667 Probability +math/0608757 Numerical Analysis +math/0609164 Functional Analysis +math/0609212 Probability +math/0609231 Optimization and Control +math/0609353 Probability +math/0609391 Analysis of PDEs +math/0609397 Analysis of PDEs +math/0609400 Quantum Algebra +math/0609496 Optimization and Control +math/0609679 Probability +math/0609682 Probability +math/0609738 Probability +math/0609745 Statistics Theory +math/0609781 Analysis of PDEs +math/0610113 Statistics Theory +math/0610178 Probability +math/0610182 Analysis of PDEs +math/0610219 Probability +math/0610221 Statistics Theory +math/0610317 Probability +math/0610323 Probability +math/0610324 Probability +math/0610328 Probability +math/0610584 Statistics Theory +math/0610585 Statistics Theory +math/0610598 Algebraic Topology +math/0610807 Probability +math/0610838 Statistics Theory +math/0610899 Algebraic Topology +math/0611069 Probability +math/0611133 Statistics Theory +math/0611166 Statistics Theory +math/0611193 Statistics Theory +math/0611217 Statistics Theory +math/0611270 Statistics Theory +math/0611336 K-Theory and Homology +math/0611413 Statistics Theory +math/0611422 Statistics Theory +math/0611433 Statistics Theory +math/0611508 Combinatorics +math/0611512 Statistics Theory +math/0611598 Probability +math/0611646 Rings and Algebras +math/0611652 Probability +math/0611684 Statistics Theory +math/0611708 Probability +math/0611723 Rings and Algebras +math/0611861 Representation Theory +math/0612017 Classical Analysis and ODEs +math/0612066 Statistics Theory +math/0612188 Rings and Algebras +math/0612212 Probability +math/0612241 Logic +math/0612413 Probability +math/0612546 Statistics Theory +math/0612648 Probability +math/0612649 Probability +math/0612694 Probability +math/0612697 Statistics Theory +math/0612726 Probability +math/0612777 Probability +math/0612812 Probability +math/0612817 Statistics Theory +math/0612820 Statistics Theory +math/0612825 Statistics Theory +nlin/0102004 Pattern Formation and Solitons +nlin/0104048 Chaotic Dynamics +nlin/0108048 Pattern Formation and Solitons +nlin/0111058 Exactly Solvable and Integrable Systems +nlin/0212037 Chaotic Dynamics +nlin/0301046 Pattern Formation and Solitons +nlin/0303049 Chaotic Dynamics +nlin/0309056 Exactly Solvable and Integrable Systems +nlin/0402028 Chaotic Dynamics +nlin/0406029 Exactly Solvable and Integrable Systems +nlin/0406031 Chaotic Dynamics +nlin/0406055 Chaotic Dynamics +nlin/0407052 Chaotic Dynamics +nlin/0408062 Chaotic Dynamics +nlin/0411007 Chaotic Dynamics +nlin/0501015 Pattern Formation and Solitons +nlin/0501018 Chaotic Dynamics +nlin/0501035 Chaotic Dynamics +nlin/0503044 Chaotic Dynamics +nlin/0504015 Chaotic Dynamics +nlin/0505060 Exactly Solvable and Integrable Systems +nlin/0506030 Adaptation and Self-Organizing Systems +nlin/0506050 Chaotic Dynamics +nlin/0507066 Adaptation and Self-Organizing Systems +nlin/0510063 Chaotic Dynamics +nlin/0511054 Pattern Formation and Solitons +nlin/0512011 Chaotic Dynamics +nlin/0604071 Cellular Automata and Lattice Gases +nlin/0607018 Chaotic Dynamics +nlin/0609003 Pattern Formation and Solitons +nlin/0610042 Chaotic Dynamics +nucl-ex/0010003 +nucl-ex/0108020 +nucl-ex/0109005 +nucl-ex/0111008 +nucl-ex/0206005 +nucl-ex/0208006 +nucl-ex/0311022 +nucl-ex/0312018 +nucl-ex/0404017 +nucl-ex/0404030 +nucl-ex/0409026 +nucl-ex/0411022 +nucl-ex/0501008 +nucl-ex/0501012 +nucl-ex/0505007 +nucl-ex/0506004 +nucl-ex/0508033 +nucl-ex/0511054 +nucl-ex/0512022 +nucl-ex/0602018 +nucl-ex/0603020 +nucl-ex/0610047 +nucl-th/0011063 +nucl-th/0107059 +nucl-th/0107060 +nucl-th/0107073 +nucl-th/0112010 +nucl-th/0112028 +nucl-th/0201004 +nucl-th/0201005 +nucl-th/0202053 +nucl-th/0205021 +nucl-th/0208033 +nucl-th/0209053 +nucl-th/0211019 +nucl-th/0211098 +nucl-th/0302010 +nucl-th/0303023 +nucl-th/0303075 +nucl-th/0310018 +nucl-th/0311022 +nucl-th/0408059 +nucl-th/0411050 +nucl-th/0501005 +nucl-th/0501048 +nucl-th/0503059 +nucl-th/0504082 +nucl-th/0506030 +nucl-th/0508035 +nucl-th/0508044 +nucl-th/0509049 +nucl-th/0511049 +nucl-th/0512087 +nucl-th/0604003 +nucl-th/0604019 +nucl-th/0604066 +nucl-th/0605018 +nucl-th/0605047 +nucl-th/0605079 +nucl-th/0612084 +nucl-th/9310002 +physics/0102017 Atomic Physics +physics/0103027 Instrumentation and Detectors +physics/0109015 Atomic Physics +physics/0207059 Atomic Physics +physics/0209007 Biological Physics +physics/0209054 Biological Physics +physics/0302008 Classical Physics +physics/0303057 Biological Physics +physics/0304049 Atomic Physics +physics/0306025 Computational Physics +physics/0307039 Fluid Dynamics +physics/0307133 Classical Physics +physics/0310135 Fluid Dynamics +physics/0311128 Atomic Physics +physics/0312074 Accelerator Physics +physics/0402061 Atomic Physics +physics/0402106 Atomic Physics +physics/0403073 Atomic Physics +physics/0406027 Atomic Physics +physics/0407049 Physics Education +physics/0407094 Atomic Physics +physics/0407095 Atomic Physics +physics/0408134 Data Analysis, Statistics and Probability +physics/0409146 Atomic Physics +physics/0410206 Space Physics +physics/0410272 Computational Physics +physics/0411048 Biological Physics +physics/0411055 Space Physics +physics/0411062 Computational Physics +physics/0411083 Fluid Dynamics +physics/0411145 Instrumentation and Detectors +physics/0411213 Fluid Dynamics +physics/0411230 Space Physics +physics/0412053 Atomic Physics +physics/0412136 Plasma Physics +physics/0501019 Plasma Physics +physics/0501127 Medical Physics +physics/0502064 Computational Physics +physics/0502067 Physics and Society +physics/0502075 Chemical Physics +physics/0502076 Chemical Physics +physics/0502077 Chemical Physics +physics/0502086 Instrumentation and Detectors +physics/0502134 Atmospheric and Oceanic Physics +physics/0502135 Geophysics +physics/0503038 Geophysics +physics/0503047 Classical Physics +physics/0503055 Optics +physics/0503096 Atomic Physics +physics/0503143 Atomic Physics +physics/0503153 Geophysics +physics/0503171 Physics Education +physics/0503183 Geophysics +physics/0503205 Classical Physics +physics/0504020 Instrumentation and Detectors +physics/0504068 Optics +physics/0504120 Instrumentation and Detectors +physics/0504206 Chemical Physics +physics/0505012 Atomic and Molecular Clusters +physics/0505084 Fluid Dynamics +physics/0505177 Optics +physics/0506025 Atomic Physics +physics/0506044 Atomic Physics +physics/0506076 Computational Physics +physics/0506137 Physics and Society +physics/0506225 Atomic Physics +physics/0507025 Geophysics +physics/0507060 Atomic Physics +physics/0507195 Physics and Society +physics/0507208 Atomic Physics +physics/0507209 Atomic Physics +physics/0508018 Classical Physics +physics/0508048 Atomic Physics +physics/0508097 Classical Physics +physics/0508106 Plasma Physics +physics/0509032 Atomic Physics +physics/0509053 Medical Physics +physics/0509086 Atmospheric and Oceanic Physics +physics/0509094 Atomic Physics +physics/0509116 Chemical Physics +physics/0509120 Chemical Physics +physics/0509231 Fluid Dynamics +physics/0510016 Biological Physics +physics/0510074 Optics +physics/0510093 Biological Physics +physics/0510094 Atomic and Molecular Clusters +physics/0510095 Atomic and Molecular Clusters +physics/0510096 Atomic and Molecular Clusters +physics/0510097 Chemical Physics +physics/0510098 Atomic and Molecular Clusters +physics/0510099 Atomic and Molecular Clusters +physics/0510101 Atomic Physics +physics/0510119 Atomic and Molecular Clusters +physics/0510120 Atomic and Molecular Clusters +physics/0510121 Atomic and Molecular Clusters +physics/0510133 Atomic and Molecular Clusters +physics/0510171 Biological Physics +physics/0510174 Optics +physics/0510192 Atomic and Molecular Clusters +physics/0510202 Atomic Physics +physics/0510231 Geophysics +physics/0510261 Atomic Physics +physics/0510272 Instrumentation and Detectors +physics/0511089 Atomic Physics +physics/0511094 Chemical Physics +physics/0511104 Atomic Physics +physics/0511121 Classical Physics +physics/0511122 Classical Physics +physics/0511150 Atomic and Molecular Clusters +physics/0511164 Classical Physics +physics/0511169 Physics Education +physics/0511203 Atmospheric and Oceanic Physics +physics/0511226 Fluid Dynamics +physics/0511230 Classical Physics +physics/0511244 Optics +physics/0512002 Optics +physics/0512015 Atomic Physics +physics/0512021 Classical Physics +physics/0512028 Biological Physics +physics/0512029 Biological Physics +physics/0512030 Biological Physics +physics/0512044 Biological Physics +physics/0512123 Biological Physics +physics/0512190 Optics +physics/0512201 Atomic Physics +physics/0512217 Geophysics +physics/0601008 Chemical Physics +physics/0601062 Fluid Dynamics +physics/0601076 Atomic and Molecular Clusters +physics/0601091 Physics and Society +physics/0601099 Atomic and Molecular Clusters +physics/0601105 Fluid Dynamics +physics/0601212 Plasma Physics +physics/0601215 Atomic Physics +physics/0602014 Geophysics +physics/0602093 Atomic Physics +physics/0602106 Atomic Physics +physics/0603032 Medical Physics +physics/0603102 Chemical Physics +physics/0603131 Atomic Physics +physics/0603236 Chemical Physics +physics/0604125 Optics +physics/0604176 Classical Physics +physics/0604222 Plasma Physics +physics/0605039 Optics +physics/0605043 Atomic and Molecular Clusters +physics/0605134 Atomic Physics +physics/0605177 Fluid Dynamics +physics/0605198 Classical Physics +physics/0605200 Atomic Physics +physics/0605259 Fluid Dynamics +physics/0606026 Optics +physics/0606052 Optics +physics/0606080 Biological Physics +physics/0606099 Atmospheric and Oceanic Physics +physics/0606149 Medical Physics +physics/0606215 Medical Physics +physics/0606232 Medical Physics +physics/0607011 Classical Physics +physics/0607097 Classical Physics +physics/0607116 Medical Physics +physics/0607145 Classical Physics +physics/0607160 Classical Physics +physics/0607196 Plasma Physics +physics/0608085 Chemical Physics +physics/0608311 Geophysics +physics/0609073 Atomic Physics +physics/0609108 Geophysics +physics/0609111 Geophysics +physics/0610012 Optics +physics/0610013 Atomic Physics +physics/0610078 Optics +physics/0610141 Optics +physics/0610161 Geophysics +physics/0610167 Medical Physics +physics/0610171 Medical Physics +physics/0610176 Medical Physics +physics/0610182 Medical Physics +physics/0610188 Medical Physics +physics/0610204 Medical Physics +physics/0611005 Geophysics +physics/0611019 Optics +physics/0611174 Plasma Physics +physics/0611255 Optics +physics/0611298 Chemical Physics +physics/0612003 Chemical Physics +physics/0612125 Accelerator Physics +physics/0612181 Chemical Physics +physics/0612226 Classical Physics +q-bio/0501012 Genomics +q-bio/0504012 Genomics +q-bio/0506007 Populations and Evolution +q-bio/0508003 Populations and Evolution +q-bio/0508005 Populations and Evolution +q-bio/0509030 Genomics +q-bio/0511025 Populations and Evolution +q-bio/0511038 Molecular Networks +q-bio/0511044 Populations and Evolution +q-bio/0601005 Populations and Evolution +q-bio/0601011 Neurons and Cognition +q-bio/0601018 Biomolecules +q-bio/0603006 Quantitative Methods +q-bio/0606020 Neurons and Cognition +q-bio/0606040 Neurons and Cognition +q-bio/0609024 Quantitative Methods +q-bio/0610021 Genomics +q-bio/0610022 Genomics +q-bio/0610049 Biomolecules +q-bio/0611010 Populations and Evolution +q-bio/0611019 Populations and Evolution +q-bio/0611028 Quantitative Methods +q-bio/0611034 Other Quantitative Biology +q-bio/0611036 Neurons and Cognition +q-bio/0611053 Quantitative Methods +q-bio/0611075 Genomics +q-bio/0611076 Genomics +q-bio/0611077 Genomics +q-bio/0611079 Genomics +q-bio/0611081 Genomics +q-bio/0611082 Genomics +q-bio/0611083 Genomics +q-bio/0612006 Genomics +quant-ph/0102032 +quant-ph/0104056 +quant-ph/0106007 +quant-ph/0106087 +quant-ph/0106130 +quant-ph/0106136 +quant-ph/0106159 +quant-ph/0107150 +quant-ph/0108094 +quant-ph/0109139 +quant-ph/0111161 +quant-ph/0112005 +quant-ph/0112136 +quant-ph/0202068 +quant-ph/0202078 +quant-ph/0202158 +quant-ph/0203022 +quant-ph/0205056 +quant-ph/0205099 +quant-ph/0205192 +quant-ph/0206063 +quant-ph/0207023 +quant-ph/0207133 +quant-ph/0207137 +quant-ph/0208129 +quant-ph/0208180 +quant-ph/0208181 +quant-ph/0209006 +quant-ph/0209028 +quant-ph/0209087 +quant-ph/0210069 +quant-ph/0210070 +quant-ph/0210111 +quant-ph/0210135 +quant-ph/0211187 +quant-ph/0212011 +quant-ph/0212111 +quant-ph/0212154 +quant-ph/0302083 +quant-ph/0302100 +quant-ph/0302133 +quant-ph/0302150 +quant-ph/0302169 +quant-ph/0302177 +quant-ph/0304057 +quant-ph/0305092 +quant-ph/0306028 +quant-ph/0306172 +quant-ph/0307012 +quant-ph/0307180 +quant-ph/0307214 +quant-ph/0308038 +quant-ph/0308048 +quant-ph/0308091 +quant-ph/0308108 +quant-ph/0308121 +quant-ph/0309130 +quant-ph/0311175 +quant-ph/0312162 +quant-ph/0312229 +quant-ph/0401002 +quant-ph/0401128 +quant-ph/0401129 +quant-ph/0403128 +quant-ph/0403182 +quant-ph/0403204 +quant-ph/0404118 +quant-ph/0404162 +quant-ph/0405045 +quant-ph/0405048 +quant-ph/0405084 +quant-ph/0405092 +quant-ph/0406016 +quant-ph/0406109 +quant-ph/0406138 +quant-ph/0406221 +quant-ph/0407075 +quant-ph/0407166 +quant-ph/0407184 +quant-ph/0407250 +quant-ph/0408134 +quant-ph/0408165 +quant-ph/0408179 +quant-ph/0409047 +quant-ph/0409060 +quant-ph/0409092 +quant-ph/0409097 +quant-ph/0409162 +quant-ph/0409180 +quant-ph/0410024 +quant-ph/0410033 +quant-ph/0410124 +quant-ph/0410182 +quant-ph/0410214 +quant-ph/0411092 +quant-ph/0412051 +quant-ph/0501031 +quant-ph/0501111 +quant-ph/0502067 +quant-ph/0503055 +quant-ph/0503103 +quant-ph/0503134 +quant-ph/0503203 +quant-ph/0503217 +quant-ph/0504039 +quant-ph/0504046 +quant-ph/0504152 +quant-ph/0505058 +quant-ph/0505074 +quant-ph/0505163 +quant-ph/0506106 +quant-ph/0506120 +quant-ph/0506143 +quant-ph/0506146 +quant-ph/0507067 +quant-ph/0507276 +quant-ph/0508082 +quant-ph/0508101 +quant-ph/0508235 +quant-ph/0509057 +quant-ph/0509200 +quant-ph/0510008 +quant-ph/0510163 +quant-ph/0511038 +quant-ph/0512197 +quant-ph/0512254 +quant-ph/0602197 +quant-ph/0603058 +quant-ph/0603191 +quant-ph/0603216 +quant-ph/0603246 +quant-ph/0604022 +quant-ph/0604028 +quant-ph/0604094 +quant-ph/0605055 +quant-ph/0605119 +quant-ph/0606048 +quant-ph/0606119 +quant-ph/0606147 +quant-ph/0606247 +quant-ph/0607002 +quant-ph/0607017 +quant-ph/0607036 +quant-ph/0607054 +quant-ph/0607198 +quant-ph/0608041 +quant-ph/0608182 +quant-ph/0609019 +quant-ph/0609188 +quant-ph/0609199 +quant-ph/0609208 +quant-ph/0610016 +quant-ph/0610019 +quant-ph/0610087 +quant-ph/0610149 +quant-ph/0610226 +quant-ph/0611028 +quant-ph/0611056 +quant-ph/0611114 +quant-ph/0611185 +quant-ph/0611210 +quant-ph/0611266 +quant-ph/0612031 +quant-ph/0612189 +1604.04126 Differential Geometry +1007.2706 Group Theory +1008.4940 Combinatorics +1012.5804 Computational Complexity +1104.4530 Numerical Analysis +1107.1489 Group Theory +1109.1792 Group Theory +1207.3240 Numerical Analysis +1207.5394 Operator Algebras +1209.0523 Numerical Analysis +1210.2946 Mesoscale and Nanoscale Physics +1212.5107 Probability +1306.1612 Phenomenology +1308.3072 Analysis of PDEs +1308.3228 Analysis of PDEs +1309.6003 +1401.8093 Complex Variables +1407.3157 Biological Physics +1407.4543 Machine Learning +1407.6574 Theory +1407.6672 Number Theory +1407.6813 Quantum Algebra +1408.0042 Numerical Analysis +1408.0799 Cosmology and Nongalactic Astrophysics +1408.3867 Analysis of PDEs +1408.6894 +1409.3698 Combinatorics +1409.7793 Probability +1410.2279 Representation Theory +1410.3315 Mesoscale and Nanoscale Physics +1410.6847 Statistics Theory +1411.7248 +1412.0785 Analysis of PDEs +1412.5197 Cosmology and Nongalactic Astrophysics +1412.8447 Numerical Analysis +1501.00288 Optimization and Control +1501.03729 Phenomenology +1501.04964 Phenomenology +1502.01533 Statistics Theory +1502.02762 Soft Condensed Matter +1502.07842 +1503.04109 Phenomenology +1503.04406 Combinatorics +1503.06370 Methodology +1504.02665 Analysis of PDEs +1504.04299 Combinatorics +1504.05273 Numerical Analysis +1504.06459 +1504.06947 Analysis of PDEs +1505.00300 Soft Condensed Matter +1505.00700 Phenomenology +1505.04601 Disordered Systems and Neural Networks +1505.04614 Analysis of PDEs +1505.05734 +1505.07308 Number Theory +1506.01030 High Energy Astrophysical Phenomena +1506.01484 +1506.02873 Spectral Theory +1506.07949 Combinatorics +1506.08096 Analysis of PDEs +1507.03362 Group Theory +1507.05793 Numerical Analysis +1507.06391 Algebraic Geometry +1509.01191 Logic +1509.04917 Analysis of PDEs +1509.04989 Theory +1509.05720 Statistics Theory +1509.05810 Methodology +1509.08021 Optimization and Control +1509.08758 Optics +1509.08882 Theory +1510.01449 Mesoscale and Nanoscale Physics +1510.04516 Information Theory +1510.06835 Materials Science +1510.06988 Software Engineering +1510.08581 Operator Algebras +1511.03807 Theory +1511.03865 +1511.08698 Statistics Theory +1512.00375 Optimization and Control +1512.02137 Numerical Analysis +1512.02384 Phenomenology +1512.06618 Information Theory +1512.09340 Dynamical Systems +1601.00277 Statistical Mechanics +1601.01929 Exactly Solvable and Integrable Systems +1601.04023 Systems and Control +1601.05231 Differential Geometry +1601.05631 +1601.05689 Representation Theory +1601.07412 Algebraic Topology +1602.00382 Optimization and Control +1602.00882 Mesoscale and Nanoscale Physics +1602.01265 Information Theory +1602.04166 +1602.04696 +1602.05600 +1602.08334 Mesoscale and Nanoscale Physics +1603.00781 Exactly Solvable and Integrable Systems +1603.02074 Learning +1603.02982 Methodology +1603.03137 Cosmology and Nongalactic Astrophysics +1603.05608 Number Theory +1603.06442 +1603.06854 Geometric Topology +1603.07367 Theory +1603.09178 Superconductivity +1604.00841 Optimization and Control +1604.01747 Analysis of PDEs +1604.03731 Physics and Society +1604.05538 Experiment +1604.06718 Operator Algebras +1604.07120 Optimization and Control +1604.07894 Phenomenology +1604.07956 Mesoscale and Nanoscale Physics +1604.08261 Algebraic Geometry +1604.08515 Fluid Dynamics +1605.00480 Networking and Internet Architecture +1605.00545 Strongly Correlated Electrons +1605.00928 Distributed, Parallel, and Cluster Computing +1605.02231 Applications +1605.02880 Methodology +1605.03256 Experiment +1605.03660 Populations and Evolution +1605.03836 Probability +1605.04981 Strongly Correlated Electrons +1605.07158 Phenomenology +1605.07755 Differential Geometry +1606.00091 +1606.00515 Computational Physics +1606.01052 Phenomenology +1606.01782 Statistics Theory +1606.02607 Statistical Mechanics +1606.03238 Computer Vision and Pattern Recognition +1606.03705 Geometric Topology +1606.04135 High Energy Astrophysical Phenomena +1606.04487 Distributed, Parallel, and Cluster Computing +1606.06220 Systems and Control +1606.06820 Computation and Language +1606.07663 Mesoscale and Nanoscale Physics +1606.08578 +1607.00835 +1607.00931 Formal Languages and Automata Theory +1607.01623 Strongly Correlated Electrons +1607.02959 Computer Science and Game Theory +1607.03099 +1607.03132 Information Theory +1607.03192 Superconductivity +1607.04999 Mesoscale and Nanoscale Physics +1607.08190 Superconductivity +1607.08399 Combinatorics +1607.08631 Statistical Mechanics +1607.08907 Group Theory +1608.02124 Mesoscale and Nanoscale Physics +1608.03472 Lattice +1608.03644 Learning +1608.03690 Optics +1608.04369 Instrumentation and Methods for Astrophysics +1608.04476 Algebraic Geometry +1608.06027 Learning +1608.06705 Number Theory +1608.07024 Geometric Topology +1608.07059 +1608.07962 +1608.08991 Astrophysics of Galaxies +1609.00036 Computer Vision and Pattern Recognition +1609.00764 Astrophysics of Galaxies +1609.01096 Mesoscale and Nanoscale Physics +1609.02228 Neural and Evolutionary Computing +1609.03262 Materials Science +1609.03378 +1609.03842 Materials Science +1609.03937 Quantum Gases +1609.04247 +1609.04717 Algebraic Topology +1609.06120 Solar and Stellar Astrophysics +1609.06587 Statistical Mechanics +1609.06785 Category Theory +1609.07362 Theory +1609.07659 +1609.07901 Materials Science +1609.08260 Solar and Stellar Astrophysics +1609.08586 High Energy Astrophysical Phenomena +1609.08939 Number Theory +1609.09175 Other Quantitative Biology +1610.00784 Strongly Correlated Electrons +1610.01095 Strongly Correlated Electrons +1610.01845 +1610.02287 Machine Learning +1610.02319 +1610.02674 Statistical Mechanics +1610.03264 High Energy Astrophysical Phenomena +1610.03385 Number Theory +1610.03799 Number Theory +1610.03883 Number Theory +1610.04069 Computer Science and Game Theory +1610.04154 Artificial Intelligence +1610.04177 Experiment +1610.04265 Computation and Language +1610.04275 Rings and Algebras +1610.04331 Fluid Dynamics +1610.04372 Quantum Gases +1610.04410 Phenomenology +1610.04923 Fluid Dynamics +1610.05214 Geometric Topology +1610.05400 Computation +1610.05419 Networking and Internet Architecture +1610.05439 Solar and Stellar Astrophysics +1610.05446 Learning +1610.05575 Superconductivity +1610.05578 High Energy Astrophysical Phenomena +1610.05616 Combinatorics +1610.05652 Computation and Language +1610.05715 Biomolecules +1610.05718 Analysis of PDEs +1610.05758 Information Theory +1610.05766 Phenomenology +1610.05768 Cosmology and Nongalactic Astrophysics +1610.05771 Phenomenology +1610.05773 Machine Learning +1610.05775 Machine Learning +1610.05779 Biomolecules +1610.05781 High Energy Astrophysical Phenomena +1610.05785 Classical Physics +1610.05788 Software Engineering +1610.05789 Biological Physics +1610.05793 Combinatorics +1610.05794 Complex Variables +1610.05795 Methodology +1610.05796 Learning +1610.05797 Theory +1610.05799 High Energy Astrophysical Phenomena +1610.05800 Biological Physics +1610.05801 Computational Physics +1610.05803 Combinatorics +1610.05809 Methodology +1610.05811 Fluid Dynamics +1610.05814 Theory +1610.05815 Learning +1610.05817 Populations and Evolution +1610.05818 +1610.05819 Information Retrieval +1610.05823 Optimization and Control +1610.05824 Robotics +1610.05825 Computational Complexity +1610.05826 Medical Physics +1610.05827 Dynamical Systems +1610.05828 Operator Algebras +1610.05830 Metric Geometry +1610.05833 Theory +1610.05837 Geometric Topology +1610.05839 Combinatorics +1610.05841 +1610.05842 Earth and Planetary Astrophysics +1610.05843 Optimization and Control +1610.05844 Differential Geometry +1610.05845 Superconductivity +1610.05847 Systems and Control +1610.05848 Computational Physics +1610.05849 Other Computer Science +1610.05850 Numerical Analysis +1610.05852 Materials Science +1610.05853 Number Theory +1610.05854 Computer Vision and Pattern Recognition +1610.05855 Numerical Analysis +1610.05856 +1610.05857 Methodology +1610.05858 Computation and Language +1610.05862 Numerical Analysis +1610.05863 Systems and Control +1610.05866 Mesoscale and Nanoscale Physics +1610.05868 Social and Information Networks +1610.05869 Probability +1610.05870 Geophysics +1610.05871 Differential Geometry +1610.05873 Instrumentation and Methods for Astrophysics +1610.05874 Commutative Algebra +1610.05876 Phenomenology +1610.05881 Classical Analysis and ODEs +1610.05882 Robotics +1610.05883 Computer Vision and Pattern Recognition +1610.05884 Instrumentation and Detectors +1610.05885 Theory +1610.05888 Solar and Stellar Astrophysics +1610.05889 Differential Geometry +1610.05890 Optimization and Control +1610.05891 Statistics Theory +1610.05892 Social and Information Networks +1610.05894 Spectral Theory +1610.05895 Optimization and Control +1610.05896 Soft Condensed Matter +1610.05897 Data Structures and Algorithms +1610.05900 Strongly Correlated Electrons +1610.05902 Spectral Theory +1610.05903 Mesoscale and Nanoscale Physics +1610.05907 Spectral Theory +1610.05908 Analysis of PDEs +1610.05912 Dynamical Systems +1610.05913 Analysis of PDEs +1610.05915 Functional Analysis +1610.05919 Chaotic Dynamics +1610.05922 Probability +1610.05924 Algebraic Topology +1610.05925 Machine Learning +1610.05927 Soft Condensed Matter +1610.05928 Number Theory +1610.05929 Computer Vision and Pattern Recognition +1610.05930 Algebraic Geometry +1610.05932 Information Theory +1610.05933 Materials Science +1610.05935 Number Theory +1610.05937 Digital Libraries +1610.05938 Number Theory +1610.05940 Quantum Gases +1610.05942 Phenomenology +1610.05944 Group Theory +1610.05945 Sound +1610.05946 Cosmology and Nongalactic Astrophysics +1610.05947 Functional Analysis +1610.05948 Sound +1610.05950 Machine Learning +1610.05951 +1610.05954 Programming Languages +1610.05956 Machine Learning +1610.05958 +1610.05959 Chaotic Dynamics +1610.05960 Probability +1610.05962 Phenomenology +1610.05964 Number Theory +1610.05965 +1610.05966 Plasma Physics +1610.05969 Probability +1610.05970 Networking and Internet Architecture +1610.05971 Cryptography and Security +1610.05974 +1610.05975 Fluid Dynamics +1610.05976 Number Theory +1610.05977 Optics +1610.05979 Algebraic Geometry +1610.05981 Mesoscale and Nanoscale Physics +1610.05982 Neurons and Cognition +1610.05984 Neural and Evolutionary Computing +1610.05986 Differential Geometry +1610.05987 Soft Condensed Matter +1610.05991 Information Theory +1610.05993 Quantum Gases +1610.05994 Data Structures and Algorithms +1610.05995 +1610.05996 Methodology +1610.05998 Dynamical Systems +1610.06002 Dynamical Systems +1610.06005 Number Theory +1610.06006 Physics and Society +1610.06009 Artificial Intelligence +1610.06010 Complex Variables +1610.06011 +1610.06013 +1610.06015 Instrumentation and Detectors +1610.06019 Experiment +1610.06020 General Physics +1610.06021 Combinatorics +1610.06022 Cryptography and Security +1610.06023 Data Structures and Algorithms +1610.06024 Phenomenology +1610.06025 +1610.06026 Statistics Theory +1610.06028 Analysis of PDEs +1610.06029 Fluid Dynamics +1610.06031 Analysis of PDEs +1610.06033 Other Quantitative Biology +1610.06035 Fluid Dynamics +1610.06039 +1610.06040 +1610.06042 Strongly Correlated Electrons +1610.06043 Robotics +1610.06044 Databases +1610.06046 Computers and Society +1610.06049 Numerical Analysis +1610.06050 Hardware Architecture +1610.06052 Social and Information Networks +1610.06053 Computation and Language +1610.06054 Numerical Analysis +1610.06056 Geometric Topology +1610.06057 Atomic Physics +1610.06058 Combinatorics +1610.06060 Data Structures and Algorithms +1610.06064 Physics and Society +1610.06065 +1610.06066 +1610.06067 Programming Languages +1610.06068 Optimization and Control +1610.06071 +1610.06072 Learning +1610.06073 Networking and Internet Architecture +1610.06076 Statistical Mechanics +1610.06077 Cryptography and Security +1610.06078 Theory +1610.06079 Solar and Stellar Astrophysics +1610.06082 Information Theory +1610.06084 Databases +1610.06085 Social and Information Networks +1610.06086 Numerical Analysis +1610.06087 Classical Physics +1610.06088 Emerging Technologies +1610.06089 Networking and Internet Architecture +1610.06090 Phenomenology +1610.06093 +1610.06094 +1610.06095 Cryptography and Security +1610.06096 K-Theory and Homology +1610.06098 Information Theory +1610.06100 Cosmology and Nongalactic Astrophysics +1610.06102 Analysis of PDEs +1610.06104 +1610.06105 Optimization and Control +1610.06106 Human-Computer Interaction +1610.06108 +1610.06112 Statistical Mechanics +1610.06114 Combinatorics +1610.06115 Representation Theory +1610.06116 Geophysics +1610.06117 Superconductivity +1610.06118 Functional Analysis +1610.06120 Number Theory +1610.06121 Lattice +1610.06124 +1610.06126 +1610.06127 Populations and Evolution +1610.06128 Populations and Evolution +1610.06129 Other Computer Science +1610.06130 Geometric Topology +1610.06131 Data Structures and Algorithms +1610.06132 Analysis of PDEs +1610.06135 +1610.06136 Computer Vision and Pattern Recognition +1610.06140 Cryptography and Security +1610.06147 Geometric Topology +1610.06148 Algebraic Geometry +1610.06149 Optimization and Control +1610.06152 Materials Science +1610.06153 Atomic Physics +1610.06154 Applications +1610.06156 Theory +1610.06157 Methodology +1610.06159 Spectral Theory +1610.06160 Learning +1610.06163 Optics +1610.06168 Strongly Correlated Electrons +math/0103015 Metric Geometry +1507.05063 Numerical Analysis +1602.07853 Analysis of PDEs +1606.09010 Algebraic Geometry +1608.08630 Cosmology and Nongalactic Astrophysics +1608.08664 Atmospheric and Oceanic Physics +1608.08768 Chemical Physics +1608.08809 Other Condensed Matter +1608.08818 Experiment +1608.08823 Optimization and Control +1608.08825 Methodology +1608.08827 Chemical Physics +1608.08876 Analysis of PDEs +1608.08877 Chemical Physics +1608.08886 +1608.08984 Machine Learning +1608.09013 +0802.1665 Analysis of PDEs +0812.3058 +0906.3109 Algebraic Geometry +0907.2202 Numerical Analysis +0911.0664 Computational Complexity +0912.0650 General Physics +1012.5479 Numerical Analysis +1203.2208 Classical Analysis and ODEs +1203.5010 Statistics Theory +1209.1759 Computer Vision and Pattern Recognition +1210.8245 Probability +1305.1503 Algebraic Geometry +1307.3930 General Topology +1309.6376 Optimization and Control +1312.0480 Algebraic Geometry +1312.7472 Operator Algebras +1401.1020 Numerical Analysis +1402.4062 Logic in Computer Science +1403.3796 Group Theory +1403.5295 Rings and Algebras +1403.7048 Logic in Computer Science +1406.1999 Algebraic Geometry +1406.2293 Physics and Society +1406.2567 Geometric Topology +1406.5472 Computer Vision and Pattern Recognition +1406.7515 Computers and Society +1407.0336 Dynamical Systems +1408.4154 Populations and Evolution +1408.6630 Analysis of PDEs +1409.0217 Methodology +1409.0865 Experiment +1409.2068 Probability +1409.7203 Functional Analysis +1409.7406 Theory +1411.4951 Probability +1411.7935 Computer Vision and Pattern Recognition +1412.5604 +1412.7895 +1412.8240 Operator Algebras +1501.06397 Algebraic Geometry +1502.04872 Algebraic Geometry +1504.00703 Computational Complexity +1504.00966 Differential Geometry +1504.03233 Geometric Topology +1504.06184 Probability +1504.06568 Algebraic Geometry +1504.08023 Computer Vision and Pattern Recognition +1505.05202 Operator Algebras +1505.07234 Analysis of PDEs +1506.02911 Optimization and Control +1506.04732 Theory +1506.05862 Probability +1507.00923 +1507.06739 Statistics Theory +1507.07863 Quantum Gases +1508.00656 Quantum Gases +1508.01423 Materials Science +1508.03341 +1508.04325 Quantitative Methods +1509.02640 Distributed, Parallel, and Cluster Computing +1509.05664 Software Engineering +1509.07330 Computer Science and Game Theory +1510.00163 Experiment +1510.03922 Statistical Mechanics +1510.03928 Numerical Analysis +1510.07350 Probability +1510.08745 Analysis of PDEs +1511.00862 Probability +1511.01359 Algebraic Geometry +1511.01366 Algebraic Geometry +1511.02332 Probability +1511.03972 Probability +1511.07370 Materials Science +1511.08235 Phenomenology +1511.08893 +1511.09160 Optics +1512.00892 Quantitative Methods +1512.01395 +1512.04147 Optics +1512.04426 Dynamical Systems +1512.04689 Dynamical Systems +1512.05003 Algebraic Geometry +1512.06189 Algebraic Geometry +1512.06442 +1601.00550 Representation Theory +1601.00866 Phenomenology +1601.01681 Phenomenology +1601.05212 Number Theory +1601.06133 Cosmology and Nongalactic Astrophysics +1601.07251 Methodology +1602.00246 Commutative Algebra +1602.01114 Cosmology and Nongalactic Astrophysics +1602.04219 Phenomenology +1602.06443 Probability +1602.06771 Category Theory +1602.07043 Machine Learning +1603.00479 Materials Science +1603.00563 Optics +1603.00743 Number Theory +1603.01026 Differential Geometry +1603.01391 Functional Analysis +1603.02084 General Physics +1603.03980 Machine Learning +1603.04036 Analysis of PDEs +1603.04384 Systems and Control +1603.06019 +1603.06071 Probability +1603.07130 +1603.08133 Quantum Algebra +1603.09383 +1604.01576 Dynamical Systems +1604.04202 Methodology +1604.04674 Combinatorics +1604.05140 Numerical Analysis +1604.05416 Quantum Algebra +1604.06708 Analysis of PDEs +1604.07255 Artificial Intelligence +1604.07557 +1604.08468 Earth and Planetary Astrophysics +1605.01245 Analysis of PDEs +1605.03170 Computer Vision and Pattern Recognition +1605.03640 Phenomenology +1605.04049 Methodology +1605.04181 Optics +1605.04993 Optimization and Control +1605.06489 Neural and Evolutionary Computing +1605.06846 Operator Algebras +1605.06986 Atomic Physics +1605.07410 Fluid Dynamics +1605.07928 Theory +1606.01682 +1606.01711 Physics and Society +1606.02215 +1606.02819 Computer Vision and Pattern Recognition +1606.03292 Phenomenology +1606.03484 Atomic Physics +1606.03907 +1606.03977 Experiment +1606.04089 Quantum Gases +1606.04474 Neural and Evolutionary Computing +1606.04698 Neurons and Cognition +1606.05818 Earth and Planetary Astrophysics +1606.06621 +1606.06997 Machine Learning +1606.07960 Materials Science +1606.08820 Phenomenology +1606.09337 Number Theory +1607.01083 +1607.02785 Combinatorics +1607.03207 +1607.04896 Mesoscale and Nanoscale Physics +1607.06363 Experiment +1607.06538 Strongly Correlated Electrons +1607.06692 Statistical Mechanics +1607.08664 Algebraic Geometry +1608.00987 Materials Science +1608.01174 +1608.03850 Functional Analysis +1608.05263 Programming Languages +1608.05845 Physics and Society +1608.05902 Mesoscale and Nanoscale Physics +1608.06116 Astrophysics of Galaxies +1608.07108 Tissues and Organs +1608.08054 Algebraic Topology +1608.08236 +1608.08483 Networking and Internet Architecture +1608.09010 Physics and Society +1609.00824 +1609.01797 Information Theory +1609.03646 Statistical Mechanics +1609.03713 Computer Science and Game Theory +1609.04203 Cryptography and Security +1609.04880 Social and Information Networks +1609.05599 Experiment +1609.05796 Instrumentation and Methods for Astrophysics +1609.06946 +1609.07044 +1609.08585 Functional Analysis +1609.09107 Statistical Mechanics +1610.01108 Computation and Language +1610.01254 Chaotic Dynamics +1610.02591 Artificial Intelligence +1610.03088 Experiment +1610.03212 Quantum Gases +1610.03843 Lattice +1610.03934 Computation and Language +1610.04016 Geometric Topology +1610.04357 Probability +1610.07126 Computer Vision and Pattern Recognition +1610.07274 Representation Theory +1610.08215 Strongly Correlated Electrons +1610.08839 +1610.09833 Analysis of PDEs +1610.10012 Materials Science +1611.00389 Mathematical Finance +1611.00613 +1611.01295 +1611.01539 Strongly Correlated Electrons +1611.01864 Algebraic Geometry +1611.01927 Data Analysis, Statistics and Probability +1611.02266 Machine Learning +1611.02612 Differential Geometry +1611.02691 Phenomenology +1611.02857 +1611.02935 +1611.03462 Theory +1611.03722 High Energy Astrophysical Phenomena +1611.03824 Machine Learning +1611.03851 +1611.04074 Numerical Analysis +1611.04303 Rings and Algebras +1611.04365 Statistics Theory +1611.04370 Combinatorics +1611.05109 Computer Vision and Pattern Recognition +1611.05151 Analysis of PDEs +1611.05174 Strongly Correlated Electrons +1611.05256 Combinatorics +1611.05465 Theory +1611.05970 Lattice +1611.06034 Statistics Theory +1611.07211 Phenomenology +1611.07402 Statistical Mechanics +1611.07418 Statistics Theory +1611.07832 Cryptography and Security +1611.08516 Superconductivity +1611.08657 Computer Vision and Pattern Recognition +1611.08720 Algebraic Geometry +1611.08877 Analysis of PDEs +1611.08953 Theory +1611.08990 Combinatorics +1611.09014 Artificial Intelligence +1611.09158 Applications +1611.09188 Chemical Physics +1611.09448 Machine Learning +1611.09479 Metric Geometry +1611.09506 Algebraic Geometry +1611.09548 Analysis of PDEs +1611.09629 Phenomenology +1611.09681 Number Theory +1611.09694 Statistical Mechanics +1611.09766 Applications +1611.09778 Optimization and Control +1611.09789 Optics +1611.09802 Optimization and Control +1611.09806 Number Theory +1611.09809 Systems and Control +1611.09816 Machine Learning +1611.09849 Chemical Physics +1611.09851 Algebraic Geometry +1611.09853 High Energy Astrophysical Phenomena +1611.09861 Astrophysics of Galaxies +1611.09866 Phenomenology +1611.09868 Phenomenology +1611.09872 Plasma Physics +1611.09875 Systems and Control +1611.09876 Solar and Stellar Astrophysics +1611.09877 Probability +1611.09881 Systems and Control +1611.09887 K-Theory and Homology +1611.09889 Number Theory +1611.09890 Methodology +1611.09892 Cosmology and Nongalactic Astrophysics +1611.09895 Materials Science +1611.09898 Rings and Algebras +1611.09900 Computation and Language +1611.09901 Fluid Dynamics +1611.09903 +1611.09904 Artificial Intelligence +1611.09908 Phenomenology +1611.09909 Probability +1611.09911 Instrumentation and Detectors +1611.09915 Networking and Internet Architecture +1611.09916 +1611.09919 +1611.09920 Soft Condensed Matter +1611.09922 Astrophysics of Galaxies +1611.09923 Instrumentation and Methods for Astrophysics +1611.09924 Quantum Algebra +1611.09925 Methodology +1611.09926 Economics +1611.09927 Geometric Topology +1611.09928 Computer Science and Game Theory +1611.09930 Materials Science +1611.09931 Combinatorics +1611.09932 Computer Vision and Pattern Recognition +1611.09933 Statistics Theory +1611.09934 Software Engineering +1611.09937 High Energy Astrophysical Phenomena +1611.09938 Astrophysics of Galaxies +1611.09939 Differential Geometry +1611.09941 Dynamical Systems +1611.09943 Geophysics +1611.09945 Optics +1611.09947 Theory +1611.09949 +1611.09951 Chemical Physics +1611.09952 Numerical Analysis +1611.09954 High Energy Astrophysical Phenomena +1611.09955 Analysis of PDEs +1611.09956 Computer Vision and Pattern Recognition +1611.09959 Analysis of PDEs +1611.09960 Computer Vision and Pattern Recognition +1611.09961 Computer Vision and Pattern Recognition +1611.09962 Probability +1611.09963 Materials Science +1611.09964 Information Theory +1611.09965 Metric Geometry +1611.09967 Computer Vision and Pattern Recognition +1611.09968 Information Theory +1611.09969 Computer Vision and Pattern Recognition +1611.09970 +1611.09977 Number Theory +1611.09978 Computer Vision and Pattern Recognition +1611.09981 Probability +1611.09982 +1611.09983 Networking and Internet Architecture +1611.09984 Optimization and Control +1611.09986 Geometric Topology +1611.09987 Systems and Control +1611.09988 Hardware Architecture +1611.09990 +1611.09993 Differential Geometry +1611.09994 Instrumentation and Methods for Astrophysics +1611.09995 Earth and Planetary Astrophysics +1611.09996 Theory +1611.09997 Earth and Planetary Astrophysics +1611.09998 Atomic Physics +1611.10000 Representation Theory +1611.10002 Numerical Analysis +1611.10003 Neurons and Cognition +1611.10004 +1611.10005 Materials Science +1611.10007 Systems and Control +1611.10008 Computational Physics +1611.10010 Computer Vision and Pattern Recognition +1611.10011 Statistics Theory +1611.10012 Computer Vision and Pattern Recognition +1611.10014 Information Theory +1611.10016 Atomic Physics +1611.10017 Computer Vision and Pattern Recognition +1611.10018 +1611.10019 Superconductivity +1611.10021 Software Engineering +1611.10022 Software Engineering +1611.10023 Software Engineering +1611.10024 Software Engineering +1611.10025 Cosmology and Nongalactic Astrophysics +1611.10026 Optimization and Control +1611.10027 +1611.10029 Numerical Analysis +1611.10030 +1611.10033 +1611.10034 Numerical Analysis +1611.10035 Dynamical Systems +1611.10038 Computation and Language +1611.10043 Complex Variables +1611.10044 Numerical Analysis +1611.10048 Materials Science +1611.10049 Experiment +1611.10053 Software Engineering +1611.10055 Soft Condensed Matter +1611.10056 Dynamical Systems +1611.10057 Exactly Solvable and Integrable Systems +1611.10058 Combinatorics +1611.10059 Computational Geometry +1611.10060 Theory +1611.10061 Computers and Society +1611.10063 Fluid Dynamics +1611.10064 Algebraic Geometry +1611.10065 History and Overview +1611.10067 Soft Condensed Matter +1611.10068 Distributed, Parallel, and Cluster Computing +1611.10071 Analysis of PDEs +1611.10073 Machine Learning +1611.10075 Analysis of PDEs +1611.10076 Cryptography and Security +1611.10079 Strongly Correlated Electrons +1611.10080 Computer Vision and Pattern Recognition +1611.10081 Analysis of PDEs +1611.10082 General Topology +1611.10083 Analysis of PDEs +1611.10087 +1611.10089 Representation Theory +1611.10090 +1611.10091 Populations and Evolution +1611.10093 Group Theory +1611.10094 Social and Information Networks +1611.10095 Artificial Intelligence +1611.10096 Theory +1611.10097 Software Engineering +1611.10098 Mesoscale and Nanoscale Physics +1611.10104 Computer Vision and Pattern Recognition +1611.10106 Classical Analysis and ODEs +1611.10107 +1611.10108 Optics +1611.10109 Optics +1611.10111 Dynamical Systems +1611.10112 Instrumentation and Detectors +1611.10113 Atomic Physics +1611.10114 General Physics +1611.10116 Algebraic Geometry +1611.10117 Commutative Algebra +1611.10120 Artificial Intelligence +1611.10122 Computation and Language +1611.10123 +1611.10124 Analysis of PDEs +1611.10129 Analysis of PDEs +1611.10131 Solar and Stellar Astrophysics +1611.10135 Quantum Gases +1611.10136 Information Theory +1611.10140 Combinatorics +1611.10141 Phenomenology +1611.10142 Numerical Analysis +1611.10143 Rings and Algebras +1611.10144 +1611.10147 Combinatorics +1611.10150 Phenomenology +1611.10151 Theory +1611.10152 Computer Vision and Pattern Recognition +1611.10153 Algebraic Geometry +1611.10154 Computer Science and Game Theory +1611.10155 Phenomenology +1611.10156 Optimization and Control +1611.10158 Dynamical Systems +1611.10160 Software Engineering +1611.10161 Computers and Society +1611.10163 Soft Condensed Matter +1611.10164 Optimization and Control +1611.10165 Numerical Analysis +1611.10167 Probability +1611.10168 Functional Analysis +1611.10169 Software Engineering +1611.10170 Lattice +1611.10171 Computation +1611.10173 Optics +1611.10175 +1611.10176 Learning +1611.10178 Fluid Dynamics +1611.10179 General Physics +1611.10180 Analysis of PDEs +1611.10181 Software Engineering +1611.10183 High Energy Astrophysical Phenomena +1611.10186 Number Theory +1611.10187 Software Engineering +1611.10188 Number Theory +1611.10189 Data Analysis, Statistics and Probability +1611.10191 Computer Science and Game Theory +1611.10192 Analysis of PDEs +1611.10193 Astrophysics of Galaxies +1611.10198 +1611.10202 Probability +1611.10204 Distributed, Parallel, and Cluster Computing +1611.10206 Phenomenology +1611.10208 Data Structures and Algorithms +1611.10210 Distributed, Parallel, and Cluster Computing +1611.10211 Information Theory +1611.10212 Logic in Computer Science +1611.10213 Theory +1611.10215 Learning +1611.10217 Phenomenology +1611.10218 Operator Algebras +1611.10219 Statistical Mechanics +1611.10220 Number Theory +1611.10221 Methodology +1611.10223 High Energy Astrophysical Phenomena +1611.10225 Plasma Physics +1611.10226 High Energy Astrophysical Phenomena +1611.10227 Complex Variables +1611.10228 Learning +1611.10229 Computer Vision and Pattern Recognition +1611.10231 Cryptography and Security +1611.10235 Instrumentation and Detectors +1611.10236 Populations and Evolution +1611.10237 Optics +1611.10239 Combinatorics +1611.10243 Numerical Analysis +1611.10248 Information Retrieval +1611.10249 General Physics +1611.10250 Analysis of PDEs +1611.10252 Neurons and Cognition +1611.10254 Exactly Solvable and Integrable Systems +1611.10255 Theory +1611.10257 Optimization and Control +1611.10259 Combinatorics +1611.10260 Analysis of PDEs +1611.10261 +1611.10263 Materials Science +1611.10264 +1611.10266 Statistics Theory +1611.10268 Information Theory +1611.10270 Computer Science and Game Theory +1611.10271 Analysis of PDEs +1611.10276 Formal Languages and Automata Theory +1611.10277 Computation and Language +1611.10278 Algebraic Geometry +1611.10279 Number Theory +1611.10280 +1611.10281 Theory +1611.10282 +1611.10283 Learning +1611.10284 Fluid Dynamics +1611.10285 Quantum Algebra +1611.10286 Quantum Gases +1611.10287 +1611.10288 Software Engineering +1611.10289 Probability +1611.10290 Theory +1611.10291 Theory +1611.10294 Probability +1611.10295 Phenomenology +1611.10296 Optimization and Control +1611.10299 Combinatorics +1611.10300 Theory +1611.10301 Optics +1611.10302 Information Theory +1611.10305 Social and Information Networks +1611.10306 Phenomenology +1611.10307 Mesoscale and Nanoscale Physics +1611.10309 Information Theory +1611.10310 +1611.10311 Numerical Analysis +1611.10314 Computer Vision and Pattern Recognition +1611.10315 Combinatorics +1611.10316 Hardware Architecture +1611.10318 Populations and Evolution +1611.10319 Computational Complexity +1611.10321 Space Physics +1611.10322 Instrumentation and Methods for Astrophysics +1611.10326 Cosmology and Nongalactic Astrophysics +1611.10327 Theory +1611.10328 Learning +1611.10330 Geometric Topology +1611.10333 Statistics Theory +1611.10336 Computer Vision and Pattern Recognition +1611.10337 Number Theory +1611.10338 Distributed, Parallel, and Cluster Computing +1611.10339 Physics and Society +1611.10340 Representation Theory +1611.10341 Operator Algebras +1611.10347 Instrumentation and Methods for Astrophysics +1611.10349 Machine Learning +1611.10350 Cosmology and Nongalactic Astrophysics +1611.10352 Instrumentation and Detectors +1611.10355 Optics +1611.10356 Mesoscale and Nanoscale Physics +hep-th/0208093 Theory +math/0703800 Operator Algebras +1605.06009 Data Analysis, Statistics and Probability +0801.4072 General Mathematics +1207.2480 +1209.4040 Symplectic Geometry +1210.0184 +1210.4521 Algebraic Geometry +1212.0322 +1301.7106 Commutative Algebra +1303.3757 +1306.6030 Dynamical Systems +1307.2494 +1310.0207 +1310.2109 +1311.0379 +1311.4109 Combinatorics +1311.5396 Representation Theory +1312.1863 Analysis of PDEs +1312.6289 Operator Algebras +1401.2854 Cryptography and Security +1401.6514 Representation Theory +1402.2582 Instrumentation and Methods for Astrophysics +1402.5002 +1403.4055 Representation Theory +1403.6212 Methodology +1403.7312 Operator Algebras +1403.7342 Number Theory +1404.1818 Soft Condensed Matter +1405.0408 +1405.0410 +1405.6531 Methodology +1406.2381 Quantum Algebra +1407.3898 History and Philosophy of Physics +1407.7787 Dynamical Systems +1408.3517 Geometric Topology +1409.1128 +1409.8391 Number Theory +1410.1255 Computer Science and Game Theory +1410.2518 Operator Algebras +1410.3923 Analysis of PDEs +1411.5295 Dynamical Systems +1412.0223 Databases +1412.1199 +1412.2643 Software Engineering +1412.4772 Optics +1412.5086 +1501.00629 Differential Geometry +1501.00821 Combinatorics +1501.03632 Populations and Evolution +1501.04893 Number Theory +1502.04376 Geometric Topology +1502.05440 Combinatorics +1502.07845 +1503.04834 +1503.05534 Phenomenology +1503.08756 Number Theory +1504.02456 Analysis of PDEs +1504.02869 +1504.03832 Populations and Evolution +1504.04855 Phenomenology +1505.03129 +1505.05210 Commutative Algebra +1505.06966 Methodology +1506.02162 Data Structures and Algorithms +1506.02409 Numerical Analysis +1506.05284 Chaotic Dynamics +1507.07540 Soft Condensed Matter +1508.06629 High Energy Astrophysical Phenomena +1508.06630 High Energy Astrophysical Phenomena +1508.07949 Algebraic Geometry +1509.02179 Computational Finance +1509.07307 Plasma Physics +1510.00606 +1510.01932 Social and Information Networks +1510.03149 Databases +1510.04207 Differential Geometry +1510.04555 Operator Algebras +1510.05774 Computer Science and Game Theory +1510.06686 Statistical Mechanics +1510.08041 Atomic Physics +1511.00272 Combinatorics +1511.01667 Chemical Physics +1511.06054 Geometric Topology +1511.06965 Programming Languages +1511.07021 General Topology +1511.07055 Representation Theory +1511.07079 Analysis of PDEs +1511.07699 Representation Theory +1512.00530 Optics +1512.01045 Rings and Algebras +1512.01101 Mesoscale and Nanoscale Physics +1512.01797 Representation Theory +1512.02334 Strongly Correlated Electrons +1512.05667 Logic in Computer Science +1512.07099 +1601.01159 Number Theory +1601.01742 Analysis of PDEs +1601.02271 Combinatorics +1601.02920 Instrumentation and Methods for Astrophysics +1601.04189 Probability +1601.05486 Superconductivity +1601.06059 Social and Information Networks +1601.06373 Analysis of PDEs +1601.07871 Geometric Topology +1601.08088 Methodology +1602.01112 Solar and Stellar Astrophysics +1602.01938 Dynamical Systems +1602.04587 Materials Science +1602.05103 Networking and Internet Architecture +1602.06562 Mesoscale and Nanoscale Physics +1602.08694 Algebraic Geometry +1603.01011 Superconductivity +1603.03138 Combinatorics +1603.03361 General Topology +1603.04503 +1603.05903 Physics and Society +1603.08265 Geometric Topology +1604.01047 Superconductivity +1604.02021 Physics and Society +1604.02427 Mesoscale and Nanoscale Physics +1604.02771 Soft Condensed Matter +1604.03676 Populations and Evolution +1604.04463 Number Theory +1604.04634 Networking and Internet Architecture +1604.04936 Populations and Evolution +1604.05788 +1604.06023 +1605.00188 Phenomenology +1605.00261 +1605.00988 Optimization and Control +1605.02330 Information Theory +1605.02431 Information Theory +1605.02988 +1605.05512 Number Theory +1605.06027 Rings and Algebras +1605.06244 +1605.06514 +1605.06870 +1605.07332 Machine Learning +1605.07630 +1605.08031 Neurons and Cognition +1605.08098 Combinatorics +1605.08600 Operator Algebras +1605.09168 +1606.00148 +1606.00439 Cosmology and Nongalactic Astrophysics +1606.01674 Phenomenology +1606.02875 Accelerator Physics +1606.03120 Atomic Physics +1606.03615 +1606.04123 Theory +1606.05278 Optics +1606.06540 Category Theory +1606.06836 Strongly Correlated Electrons +1606.07070 Theory +1606.07185 Geometric Topology +1606.07488 Methodology +1606.08050 Statistical Mechanics +1606.08593 Phenomenology +1606.09290 +1606.09573 +1607.00480 Phenomenology +1607.01704 Information Theory +1607.02004 Geometric Topology +1607.02011 Machine Learning +1607.02239 Strongly Correlated Electrons +1607.04013 +1607.04493 Mesoscale and Nanoscale Physics +1607.04666 Materials Science +1607.07574 Phenomenology +1607.08110 Machine Learning +1607.08804 Statistical Mechanics +1608.01557 +1608.03440 Computer Vision and Pattern Recognition +1608.05310 Soft Condensed Matter +1608.05381 Instrumentation and Detectors +1608.05995 Machine Learning +1608.06652 +1608.07976 +1608.08400 Dynamical Systems +1608.08668 Optics +1609.01687 +1609.02591 Strongly Correlated Electrons +1609.02612 Computer Vision and Pattern Recognition +1609.02620 Optimization and Control +1609.03613 +1609.05038 Classical Analysis and ODEs +1609.05929 +1609.07015 Multiagent Systems +1609.07190 Computers and Society +1609.08644 Cosmology and Nongalactic Astrophysics +1609.08646 Combinatorics +1609.09708 General Topology +1610.00122 Analysis of PDEs +1610.00133 Complex Variables +1610.00631 Phenomenology +1610.01180 Soft Condensed Matter +1610.02590 Machine Learning +1610.02958 Commutative Algebra +1610.03653 Populations and Evolution +1610.04330 Classical Analysis and ODEs +1610.04353 Commutative Algebra +1610.04370 +1610.05229 Probability +1610.05273 Analysis of PDEs +1610.05939 Operator Algebras +1610.06331 Number Theory +1610.06363 Information Theory +1610.06602 Computation and Language +1610.06656 Machine Learning +1610.07004 Computers and Society +1610.07197 Materials Science +1610.07322 Number Theory +1610.07346 +1610.07356 Geometric Topology +1610.07557 Computer Vision and Pattern Recognition +1610.07588 Atomic Physics +1610.07635 Physics and Society +1610.07667 Learning +1610.07688 Materials Science +1610.07693 Information Theory +1610.07759 Materials Science +1610.07796 Computation and Language +1610.07847 Cosmology and Nongalactic Astrophysics +1610.07862 Artificial Intelligence +1610.07891 Information Theory +1610.07914 Software Engineering +1610.07989 Artificial Intelligence +1610.08024 Metric Geometry +1610.08035 Machine Learning +1610.08044 Chemical Physics +1610.08045 +1610.08049 +1610.08057 +1610.08060 Phenomenology +1610.08064 Analysis of PDEs +1610.08065 Astrophysics of Galaxies +1610.08068 Algebraic Topology +1610.08070 Information Theory +1610.08073 Information Theory +1610.08074 Machine Learning +1610.08077 Machine Learning +1610.08078 Computation and Language +1610.08081 +1610.08084 Physics and Society +1610.08085 Physics and Society +1610.08086 Statistical Mechanics +1610.08088 Methodology +1610.08089 Instrumentation and Detectors +1610.08090 +1610.08094 +1610.08095 Information Retrieval +1610.08098 Social and Information Networks +1610.08100 +1610.08106 Computational Physics +1610.08108 Analysis of PDEs +1610.08110 Quantum Gases +1610.08111 Data Structures and Algorithms +1610.08112 Phenomenology +1610.08114 Information Theory +1610.08116 Logic in Computer Science +1610.08117 Information Retrieval +1610.08118 +1610.08119 Computer Vision and Pattern Recognition +1610.08120 Robotics +1610.08122 Materials Science +1610.08124 Theory +1610.08126 Representation Theory +1610.08128 Distributed, Parallel, and Cluster Computing +1610.08129 Operating Systems +1610.08131 History and Philosophy of Physics +1610.08133 Computer Vision and Pattern Recognition +1610.08134 Plasma Physics +1610.08136 Information Retrieval +1610.08137 Materials Science +1610.08140 Algebraic Geometry +1610.08143 Mathematical Finance +1610.08145 Optics +1610.08146 +1610.08147 +1610.08148 Populations and Evolution +1610.08151 Probability +1610.08152 Networking and Internet Architecture +1610.08153 Combinatorics +1610.08154 Data Structures and Algorithms +1610.08155 Classical Analysis and ODEs +1610.08159 Complex Variables +1610.08160 Dynamical Systems +1610.08161 Group Theory +1610.08162 Differential Geometry +1610.08163 Populations and Evolution +1610.08167 Logic in Computer Science +1610.08168 Multiagent Systems +1610.08169 Logic in Computer Science +1610.08170 Programming Languages +1610.08171 Logic in Computer Science +1610.08172 Performance +1610.08177 Cosmology and Nongalactic Astrophysics +1610.08183 Cosmology and Nongalactic Astrophysics +1610.08186 Instrumentation and Detectors +1610.08189 Machine Learning +1610.08190 Differential Geometry +1610.08191 Representation Theory +1610.08193 Information Theory +1610.08195 Optimization and Control +1610.08196 Phenomenology +1610.08197 Probability +1610.08198 Distributed, Parallel, and Cluster Computing +1610.08199 Distributed, Parallel, and Cluster Computing +1610.08201 Distributed, Parallel, and Cluster Computing +1610.08204 Probability +1610.08205 Fluid Dynamics +1610.08206 Information Theory +1610.08208 Differential Geometry +1610.08209 Differential Geometry +1610.08210 Computer Science and Game Theory +1610.08214 Differential Geometry +1610.08216 Human-Computer Interaction +1610.08218 Mesoscale and Nanoscale Physics +1610.08219 +1610.08220 Materials Science +1610.08221 Fluid Dynamics +1610.08222 Artificial Intelligence +1610.08223 Information Theory +1610.08225 +1610.08226 Optics +1610.08227 Quantitative Methods +1610.08228 Mesoscale and Nanoscale Physics +1610.08229 Learning +1610.08230 Statistical Finance +1610.08231 Algebraic Geometry +1610.08232 Atomic Physics +1610.08233 Superconductivity +1610.08234 +1610.08235 Systems and Control +1610.08236 Materials Science +1610.08237 Materials Science +1610.08240 Optics +1610.08242 Probability +1610.08245 High Energy Astrophysical Phenomena +1610.08246 Applications +1610.08247 Computational Physics +1610.08248 Earth and Planetary Astrophysics +1610.08250 Learning +1610.08251 +1610.08253 Solar and Stellar Astrophysics +1610.08254 History and Philosophy of Physics +1610.08256 Networking and Internet Architecture +1610.08257 Information Theory +1610.08258 Mesoscale and Nanoscale Physics +1610.08262 Social and Information Networks +1610.08263 Materials Science +1610.08265 Lattice +1610.08266 Networking and Internet Architecture +1610.08268 +1610.08269 Phenomenology +1610.08270 Chemical Physics +1610.08271 Phenomenology +1610.08272 +1610.08273 Phenomenology +1610.08274 Systems and Control +1610.08275 +1610.08276 Dynamical Systems +1610.08277 Dynamical Systems +1610.08280 +1610.08282 Metric Geometry +1610.08284 Superconductivity +1610.08285 Analysis of PDEs +1610.08286 Analysis of PDEs +1610.08287 Instrumentation and Methods for Astrophysics +1610.08289 Instrumentation and Methods for Astrophysics +1610.08290 Information Theory +1610.08291 +1610.08292 +1610.08293 Networking and Internet Architecture +1610.08294 Solar and Stellar Astrophysics +1610.08295 Analysis of PDEs +1610.08298 Analysis of PDEs +1610.08299 Number Theory +1610.08300 Materials Science +1610.08301 Materials Science +1610.08302 High Energy Astrophysical Phenomena +1610.08304 Strongly Correlated Electrons +1610.08306 Geometric Topology +1610.08307 Fluid Dynamics +1610.08309 Data Structures and Algorithms +1610.08311 +1610.08313 Strongly Correlated Electrons +1610.08316 Optics +1610.08317 Solar and Stellar Astrophysics +1610.08322 Physics and Society +1610.08325 Multiagent Systems +1610.08328 Data Analysis, Statistics and Probability +1610.08329 Computation +1610.08330 General Physics +1610.08331 General Physics +1610.08332 Systems and Control +1610.08333 Combinatorics +1610.08335 Analysis of PDEs +1610.08342 Computers and Society +1610.08344 +1610.08347 General Mathematics +1610.08349 Computational Complexity +1610.08350 +1610.08351 Optics +1610.08353 Optimization and Control +1610.08356 Phenomenology +1610.08357 +1610.08359 +1610.08360 Methodology +1610.08362 Cosmology and Nongalactic Astrophysics +1610.08363 Methodology +1610.08364 Computational Complexity +1610.08365 Materials Science +1610.08369 Cryptography and Security +1610.08370 Combinatorics +1610.08371 Materials Science +1610.08372 Social and Information Networks +1610.08373 Distributed, Parallel, and Cluster Computing +1610.08375 Computation and Language +1610.08379 Systems and Control +1610.08380 Systems and Control +1610.08384 Analysis of PDEs +1610.08385 Fluid Dynamics +1610.08386 Applications +1610.08387 Category Theory +1610.08389 Combinatorics +1610.08390 Complex Variables +1610.08391 Number Theory +1610.08392 Category Theory +1610.08393 Representation Theory +1610.08398 Representation Theory +1610.08399 Instrumentation and Detectors +1610.08400 Computer Vision and Pattern Recognition +1610.08402 Mesoscale and Nanoscale Physics +1610.08403 Algebraic Geometry +1610.08404 Geometric Topology +1610.08405 Statistics Theory +1610.08407 Computer Science and Game Theory +1610.08408 Information Theory +1610.08410 Number Theory +1610.08411 Databases +1610.08413 Exactly Solvable and Integrable Systems +1610.08414 Statistical Finance +1610.08415 Statistical Finance +1610.08416 Statistical Finance +1610.08417 Numerical Analysis +1610.08420 Phenomenology +1610.08421 +1610.08422 Classical Analysis and ODEs +1610.08424 Robotics +1610.08425 Biological Physics +1610.08427 Fluid Dynamics +1610.08430 Rings and Algebras +1610.08432 Optics +1610.08434 Geometric Topology +1610.08435 Combinatorics +1610.08436 Computer Vision and Pattern Recognition +1610.08437 Dynamical Systems +1610.08438 Materials Science +1610.08441 Classical Analysis and ODEs +1610.08442 Information Retrieval +1610.08443 Materials Science +1610.08445 Artificial Intelligence +1610.08446 Statistical Mechanics +1610.08448 Materials Science +1610.08450 Applications +1610.08451 Phenomenology +1610.08453 Mesoscale and Nanoscale Physics +1610.08456 Complex Variables +1610.08457 Representation Theory +1610.08459 Category Theory +1610.08460 +1610.08462 Computation and Language +1610.08463 Strongly Correlated Electrons +1610.08464 Group Theory +1610.08465 Machine Learning +1610.08466 Machine Learning +1610.08468 Rings and Algebras +1610.08473 Machine Learning +1610.08474 Astrophysics of Galaxies +1610.08476 Programming Languages +1610.08478 Strongly Correlated Electrons +1610.08479 Cosmology and Nongalactic Astrophysics +1610.08480 Materials Science +1610.08482 Information Theory +1610.08483 Geometric Topology +1610.08485 Combinatorics +1610.08486 Superconductivity +1610.08487 Algebraic Geometry +1610.08488 Group Theory +1610.08490 +1610.08491 Systems and Control +1610.08492 Probability +1610.08494 Distributed, Parallel, and Cluster Computing +1610.08495 Learning +1610.08497 Astrophysics of Galaxies +cond-mat/0504606 Mesoscale and Nanoscale Physics +hep-th/0106094 Theory +quant-ph/0304140 +0704.3278 Representation Theory +1003.3069 General Mathematics +1003.5108 +1004.4737 Number Theory +1011.1701 Information Theory +1106.1379 Learning +1108.2335 Differential Geometry +1203.1719 Strongly Correlated Electrons +1203.6839 Phenomenology +1211.0899 Metric Geometry +1211.7091 Representation Theory +1305.3156 Materials Science +1306.2515 Metric Geometry +1306.2644 Number Theory +1306.3349 Analysis of PDEs +1307.3175 Algebraic Geometry +1308.5386 Quantum Algebra +1308.6090 Optimization and Control +1310.3061 Pricing of Securities +1310.5764 Machine Learning +1401.5154 Number Theory +1403.4828 Systems and Control +1404.2995 Strongly Correlated Electrons +1404.4115 Category Theory +1404.5106 History and Overview +1404.7184 Symplectic Geometry +1405.1797 +1405.2038 Materials Science +1405.6585 Information Theory +1407.4507 Algebraic Geometry +1407.6091 +1408.1946 Operator Algebras +1408.3053 Quantum Algebra +1408.3902 Number Theory +1408.3903 Materials Science +1408.6139 +1409.4576 Algebraic Geometry +1409.5536 Statistical Mechanics +1409.6935 Strongly Correlated Electrons +1410.3119 Probability +1410.4229 Astrophysics of Galaxies +1410.5952 Computational Geometry +1410.8075 Information Theory +1410.8506 Combinatorics +1411.1810 Machine Learning +1411.1811 +1411.2613 +1411.7083 Analysis of PDEs +1412.1921 Mesoscale and Nanoscale Physics +1412.2743 Number Theory +1412.5135 +1412.5465 +1412.5799 Quantum Gases +1412.7400 Phenomenology +1412.8730 Phenomenology +1501.00434 Economics +1501.02386 Fluid Dynamics +1501.04019 Algebraic Geometry +1501.07176 Number Theory +1502.03683 Artificial Intelligence +1502.04799 Strongly Correlated Electrons +1502.05086 Computational Complexity +1503.04578 Analysis of PDEs +1503.08768 Cryptography and Security +1504.00210 General Mathematics +1504.00554 Analysis of PDEs +1504.00743 Quantum Algebra +1504.01362 Machine Learning +1504.02903 Analysis of PDEs +1504.03025 Numerical Analysis +1504.03366 Symplectic Geometry +1504.04922 Representation Theory +1504.05652 Analysis of PDEs +1504.05846 Artificial Intelligence +1504.07070 Operating Systems +1505.00707 Discrete Mathematics +1505.01209 Theory +1505.03282 +1505.04491 Pattern Formation and Solitons +1505.05381 Metric Geometry +1505.06471 Number Theory +1505.06854 Quantum Gases +1505.07539 Theory +1506.00662 Analysis of PDEs +1506.00915 Cosmology and Nongalactic Astrophysics +1506.02045 Theory +1506.02975 Machine Learning +1506.04154 Earth and Planetary Astrophysics +1506.05205 Algebraic Geometry +1506.05888 Solar and Stellar Astrophysics +1506.06343 Computer Vision and Pattern Recognition +1507.00783 Statistical Mechanics +1507.01221 +1507.02947 Lattice +1507.03042 Analysis of PDEs +1507.04925 Computer Science and Game Theory +1507.06038 +1507.07487 Rings and Algebras +1507.07738 +1507.08419 +1508.00186 +1508.00241 Differential Geometry +1508.01479 Representation Theory +1508.03597 Optics +1508.03801 Astrophysics of Galaxies +1508.04212 +1508.05997 Differential Geometry +1508.06304 +1508.07892 Classical Analysis and ODEs +1509.00521 +1509.00769 Theory +1509.01618 Learning +1509.01619 Superconductivity +1509.01681 Analysis of PDEs +1509.03515 Probability +1509.04072 Machine Learning +1509.04326 Numerical Analysis +1509.04521 Systems and Control +1509.04773 Analysis of PDEs +1509.05763 Quantum Gases +1509.07052 Materials Science +1509.07319 Theory +1509.08265 Geometric Topology +1509.08273 Analysis of PDEs +1510.00405 Classical Analysis and ODEs +1510.02149 Optimization and Control +1510.02640 +1510.02882 Data Structures and Algorithms +1510.04128 High Energy Astrophysical Phenomena +1510.04886 Complex Variables +1510.05534 Astrophysics of Galaxies +1510.06517 +1510.07858 Mesoscale and Nanoscale Physics +1510.08896 Data Structures and Algorithms +1511.00007 Quantum Gases +1511.00225 +1511.00352 Learning +1511.01259 Information Retrieval +1511.03552 Emerging Technologies +1511.05098 General Physics +1511.05721 Astrophysics of Galaxies +1511.05964 Phenomenology +1511.06014 Learning +1511.06240 Materials Science +1511.06600 +1511.06740 +1511.06934 Spectral Theory +1511.07222 Neurons and Cognition +1511.08511 Analysis of PDEs +1512.00268 Molecular Networks +1512.00413 Information Theory +1512.00742 Probability +1512.01072 Optics +1512.01110 Numerical Analysis +1512.01158 Optics +1512.01193 Astrophysics of Galaxies +1512.01221 Statistical Mechanics +1512.01842 Dynamical Systems +1512.01904 Machine Learning +1512.02312 +1512.02793 Lattice +1512.02835 Theory +1512.03093 General Physics +1512.04553 Strongly Correlated Electrons +1512.05914 Computational Physics +1512.06368 Logic +1512.08836 Learning +1601.00247 Combinatorics +1601.00609 Probability +1601.01012 Logic +1601.01480 +1601.01769 Algebraic Geometry +1601.01773 Quantum Gases +1601.02118 Accelerator Physics +1601.02659 Phenomenology +1601.02954 Phenomenology +1601.03187 +1601.03580 +1601.03693 Combinatorics +1601.04526 General Physics +1601.04637 Probability +1601.05301 Materials Science +1601.06262 Networking and Internet Architecture +1601.06573 Quantum Gases +1601.07745 Logic +1601.07783 Systems and Control +1601.07921 +1602.00201 Logic +1602.00905 Materials Science +1602.01417 Astrophysics of Galaxies +1602.01691 +1602.03052 Algebraic Geometry +1602.03731 +1602.03745 Strongly Correlated Electrons +1602.04374 Quantum Gases +1602.04426 Optimization and Control +1602.04485 Learning +1602.05144 +1602.05291 Group Theory +1602.05631 Theory +1602.05825 Probability +1602.05947 Phenomenology +1602.06210 Theory +1602.06378 +1602.07416 Learning +1602.07539 Instrumentation and Detectors +1602.07764 Artificial Intelligence +1602.08017 Artificial Intelligence +1602.08031 Quantum Gases +1602.08055 Numerical Analysis +1602.08286 Differential Geometry +1602.08673 Numerical Analysis +1602.08755 Algebraic Geometry +1603.00015 Instrumentation and Detectors +1603.00031 Strongly Correlated Electrons +1603.00304 Theory +1603.00409 Optics +1603.00464 Cosmology and Nongalactic Astrophysics +1603.00544 Probability +1603.00550 Computer Vision and Pattern Recognition +1603.00970 Atomic Physics +1603.00988 Learning +1603.01241 Dynamical Systems +1603.01354 Learning +1603.01895 Social and Information Networks +1603.02052 +1603.03073 Computer Science and Game Theory +1603.03148 Quantum Gases +1603.03270 Theory +1603.03720 Number Theory +1603.04844 Fluid Dynamics +1603.05598 Experiment +1603.05717 Combinatorics +1603.05756 Phenomenology +1603.06052 Learning +1603.06186 Machine Learning +1603.06338 +1603.06506 Representation Theory +1603.06807 Computation and Language +1603.07100 Solar and Stellar Astrophysics +1603.07260 Materials Science +1603.08140 Complex Variables +1603.08567 Superconductivity +1603.08649 Optimization and Control +1603.08945 Statistical Mechanics +1604.00430 High Energy Astrophysical Phenomena +1604.01687 Mesoscale and Nanoscale Physics +1604.03177 Phenomenology +1604.03826 Probability +1604.04123 Number Theory +1604.05129 Neurons and Cognition +1604.05431 Formal Languages and Automata Theory +1604.06139 Logic in Computer Science +1604.07032 +1604.07958 Superconductivity +1604.07981 Computational Complexity +1604.08113 +1604.08145 Optics +1605.00013 Phenomenology +1605.00788 Artificial Intelligence +1605.01278 Machine Learning +1605.03309 Complex Variables +1605.03475 Probability +1605.03731 Information Theory +1605.03886 Phenomenology +1605.03926 Information Theory +1605.04107 Phenomenology +1605.05336 Strongly Correlated Electrons +1605.05756 +1605.05988 Information Theory +1605.06026 +1605.06051 Logic +1605.06212 +1605.06339 Solar and Stellar Astrophysics +1605.06375 History and Philosophy of Physics +1605.06857 History and Overview +1605.07064 Phenomenology +1605.07297 Optics +1605.07435 Operator Algebras +1605.07703 Optics +1605.07921 Geometric Topology +1605.08263 General Physics +1605.08269 General Physics +1605.08361 Machine Learning +1605.08494 Social and Information Networks +1605.08564 Materials Science +1605.08589 Spectral Theory +1605.08590 Systems and Control +1605.08743 Geophysics +1605.08775 Chemical Physics +1605.08776 Chemical Physics +1605.08779 Classical Physics +1605.08781 High Energy Astrophysical Phenomena +1605.08786 +1605.08788 Phenomenology +1605.08792 Information Theory +1605.08794 Probability +1605.08796 Rings and Algebras +1605.08799 Methodology +1605.08800 Analysis of PDEs +1605.08805 Cryptography and Security +1605.08806 Networking and Internet Architecture +1605.08807 Lattice +1605.08811 Logic +1605.08815 Networking and Internet Architecture +1605.08819 Combinatorics +1605.08823 Optimization and Control +1605.08825 +1605.08827 Populations and Evolution +1605.08829 Mesoscale and Nanoscale Physics +1605.08831 Computer Vision and Pattern Recognition +1605.08833 Learning +1605.08836 Analysis of PDEs +1605.08838 Learning +1605.08839 Statistics Theory +1605.08841 Human-Computer Interaction +1605.08842 Optics +1605.08843 K-Theory and Homology +1605.08844 Computers and Society +1605.08846 Computers and Society +1605.08847 +1605.08848 Analysis of PDEs +1605.08851 Information Theory +1605.08852 Numerical Analysis +1605.08853 Differential Geometry +1605.08854 Theory +1605.08855 Metric Geometry +1605.08856 Computer Vision and Pattern Recognition +1605.08857 Computer Vision and Pattern Recognition +1605.08858 +1605.08862 Probability +1605.08863 Computer Science and Game Theory +1605.08866 Chemical Physics +1605.08867 Logic +1605.08869 Complex Variables +1605.08870 Discrete Mathematics +1605.08872 Learning +1605.08873 Dynamical Systems +1605.08874 Information Theory +1605.08875 Statistics Theory +1605.08878 Computers and Society +1605.08879 Combinatorics +1605.08880 Statistics Theory +1605.08882 Learning +1605.08883 Multiagent Systems +1605.08884 Number Theory +1605.08886 Materials Science +1605.08887 Genomics +1605.08888 Digital Libraries +1605.08890 Instrumentation and Detectors +1605.08893 Mesoscale and Nanoscale Physics +1605.08895 Optics +1605.08898 Methodology +1605.08902 +1605.08903 Dynamical Systems +1605.08904 Number Theory +1605.08906 +1605.08908 Portfolio Management +1605.08909 Neurons and Cognition +1605.08911 Algebraic Geometry +1605.08912 Algebraic Topology +1605.08914 Superconductivity +1605.08916 +1605.08917 Astrophysics of Galaxies +1605.08920 +1605.08923 Phenomenology +1605.08925 Computational Physics +1605.08928 Computers and Society +1605.08931 Mesoscale and Nanoscale Physics +1605.08933 Methodology +1605.08935 Data Structures and Algorithms +1605.08937 Algebraic Geometry +1605.08938 General Mathematics +1605.08940 Dynamical Systems +1605.08941 Algebraic Geometry +1605.08943 Geometric Topology +1605.08944 Biological Physics +1605.08945 Dynamical Systems +1605.08946 Probability +1605.08948 Dynamical Systems +1605.08950 Dynamical Systems +1605.08951 Computational Complexity +1605.08954 +1605.08958 Systems and Control +1605.08960 Classical Analysis and ODEs +1605.08961 Machine Learning +1605.08966 Exactly Solvable and Integrable Systems +1605.08967 Statistical Mechanics +1605.08969 Multimedia +1605.08971 Group Theory +1605.08972 Classical Analysis and ODEs +1605.08973 Classical Analysis and ODEs +1605.08974 Networking and Internet Architecture +1605.08977 Geometric Topology +1605.08978 Computation +1605.08981 Group Theory +1605.08982 Optimization and Control +1605.08984 Analysis of PDEs +1605.08985 Chemical Physics +1605.08986 Chaotic Dynamics +1605.08987 Dynamical Systems +1605.08989 Probability +1605.08990 Number Theory +1605.08992 Category Theory +1605.08995 Computers and Society +1605.08996 Probability +1605.09000 Methodology +1605.09001 Atomic Physics +1605.09002 Networking and Internet Architecture +1605.09003 Algebraic Geometry +1605.09004 Machine Learning +1605.09005 Analysis of PDEs +1605.09006 Mesoscale and Nanoscale Physics +1605.09008 Optics +1605.09009 Computation +1605.09012 Computer Science and Game Theory +1605.09022 Superconductivity +1605.09025 +1605.09026 Machine Learning +1605.09027 +1605.09028 Phenomenology +1605.09029 +1605.09033 Optics +1605.09034 Cryptography and Security +1605.09037 Dynamical Systems +1605.09039 Probability +1605.09041 Numerical Analysis +1605.09045 Phenomenology +1605.09049 Learning +1605.09052 Probability +1605.09053 Lattice +1605.09055 Combinatorics +1605.09058 Space Physics +1605.09059 High Energy Astrophysical Phenomena +1605.09061 Formal Languages and Automata Theory +1605.09062 Computer Vision and Pattern Recognition +1605.09063 Probability +1605.09070 Genomics +1605.09073 Neurons and Cognition +1605.09074 Optimization and Control +1605.09079 Instrumentation and Methods for Astrophysics +1605.09082 Learning +1605.09083 Probability +1605.09086 Mesoscale and Nanoscale Physics +1605.09089 Robotics +1605.09090 Computation and Language +1605.09092 Soft Condensed Matter +1605.09095 Analysis of PDEs +1605.09104 Numerical Analysis +1605.09109 Numerical Analysis +1605.09112 Optimization and Control +1605.09113 Optimization and Control +1605.09114 Learning +1605.09115 Cryptography and Security +1605.09116 Optimization and Control +1605.09117 Materials Science +1605.09118 Instrumentation and Detectors +1605.09119 Space Physics +1605.09122 Experiment +1605.09126 +1605.09128 Artificial Intelligence +1605.09130 Cosmology and Nongalactic Astrophysics +1605.09131 Learning +1605.09134 +1605.09135 Number Theory +1605.09136 Computer Vision and Pattern Recognition +1605.09137 Materials Science +1605.09141 Combinatorics +1605.09142 Statistical Mechanics +1605.09143 Differential Geometry +1605.09145 Commutative Algebra +1605.09150 Differential Geometry +1605.09153 Computational Geometry +1605.09157 Differential Geometry +1605.09158 Theory +1605.09161 Symplectic Geometry +1605.09162 Computational Engineering, Finance, and Science +1605.09163 Optics +1605.09164 Superconductivity +1605.09167 Optics +1605.09169 Combinatorics +1605.09170 Computers and Society +1605.09171 Applications +1605.09173 Group Theory +1605.09176 Phenomenology +1605.09177 Logic +1605.09179 Number Theory +1605.09182 Strongly Correlated Electrons +1605.09184 Computers and Society +1605.09185 Robotics +1605.09187 Popular Physics +1605.09191 Cosmology and Nongalactic Astrophysics +1605.09192 Category Theory +1605.09194 Computer Science and Game Theory +1605.09197 Representation Theory +1605.09198 Classical Analysis and ODEs +1605.09200 Classical Analysis and ODEs +1605.09201 Numerical Analysis +1605.09202 Numerical Analysis +1605.09204 Number Theory +1605.09206 Category Theory +1605.09207 K-Theory and Homology +1605.09210 Analysis of PDEs +1605.09211 Multimedia +1605.09212 Metric Geometry +1605.09213 Number Theory +1605.09216 Algebraic Geometry +1605.09217 Complex Variables +1605.09219 Instrumentation and Methods for Astrophysics +1605.09220 Probability +1605.09221 Learning +1605.09222 Logic +1605.09223 Combinatorics +1605.09226 Analysis of PDEs +1605.09227 Learning +1605.09228 Number Theory +1605.09232 Numerical Analysis +1605.09233 General Physics +1605.09234 Analysis of PDEs +1605.09235 Strongly Correlated Electrons +1605.09244 Computational Geometry +1605.09245 Atomic Physics +1605.09250 Computational Geometry +1605.09255 Representation Theory +1605.09257 Physics and Society +1605.09264 Pattern Formation and Solitons +1605.09265 Rings and Algebras +1605.09266 Biomolecules +1605.09269 Biomolecules +1605.09274 Rings and Algebras +1605.09277 Optics +1605.09279 Number Theory +1605.09280 Classical Analysis and ODEs +1605.09282 Neurons and Cognition +1605.09283 Metric Geometry +1605.09284 Phenomenology +1605.09285 Theory +1605.09290 Differential Geometry +1605.09292 Number Theory +1605.09293 Logic in Computer Science +1605.09295 Instrumentation and Methods for Astrophysics +1605.09296 Robotics +1605.09299 Learning +1605.09302 Group Theory +1605.09306 Optics +1605.09307 Networking and Internet Architecture +1605.09312 Neurons and Cognition +1605.09316 Metric Geometry +1605.09319 Mesoscale and Nanoscale Physics +1605.09323 Number Theory +1605.09324 Statistical Mechanics +1605.09327 Statistical Mechanics +1605.09331 High Energy Astrophysical Phenomena +1605.09333 Combinatorics +1605.09336 Computer Vision and Pattern Recognition +1605.09343 Combinatorics +1605.09344 Differential Geometry +1605.09349 Optimization and Control +1605.09350 Networking and Internet Architecture +1605.09353 Neurons and Cognition +1605.09354 Theory +1605.09355 Statistical Mechanics +1605.09359 Phenomenology +1605.09360 Number Theory +1605.09361 Instrumentation and Detectors +1605.09363 Number Theory +1605.09366 Instrumentation and Detectors +1605.09369 Theory +1605.09370 Machine Learning +cond-mat/0504527 Strongly Correlated Electrons +math/0611004 Geometric Topology +q-alg/9506005 Quantum Algebra +0804.0006 Combinatorics +0909.3747 General Mathematics +1103.1496 General Physics +1105.0103 Computational Geometry +1105.3820 Popular Physics +1108.2579 Number Theory +1109.0855 +1110.1462 Statistics Theory +1110.2295 Methodology +1112.3414 +1202.1436 Methodology +1204.2392 Statistics Theory +1206.2068 Computer Vision and Pattern Recognition +1209.1031 Statistics Theory +1209.4161 Classical Analysis and ODEs +1210.6578 Information Theory +1212.3595 Differential Geometry +1301.6295 Information Theory +1302.1124 Commutative Algebra +1303.0250 Functional Analysis +1304.1476 Astrophysics of Galaxies +1304.3384 High Energy Astrophysical Phenomena +1305.1451 Combinatorics +1305.3789 Instrumentation and Methods for Astrophysics +1307.5297 Representation Theory +1307.6325 Classical Physics +1308.1269 Statistics Theory +1308.5623 Applications +1309.0587 Experiment +1310.6982 Phenomenology +1311.1757 Computers and Society +1311.2209 Functional Analysis +1311.3959 Artificial Intelligence +1312.0384 Biological Physics +1402.2193 Analysis of PDEs +1402.3019 Methodology +1402.5277 Materials Science +1402.5830 Optimization and Control +1403.0476 Computational Complexity +1403.2155 Combinatorics +1403.4290 Computation +1403.4680 Computation +1403.4735 Information Theory +1403.6596 Complex Variables +1404.1214 Statistics Theory +1404.2239 General Topology +1404.4951 Dynamical Systems +1404.5933 Instrumentation and Detectors +1405.0360 Instrumentation and Methods for Astrophysics +1405.5466 Instrumentation and Methods for Astrophysics +1405.7542 Lattice +1406.3585 Strongly Correlated Electrons +1406.5943 Combinatorics +1407.1152 Phenomenology +1407.1710 Instrumentation and Methods for Astrophysics +1407.3081 Geometric Topology +1407.4217 Strongly Correlated Electrons +1408.0222 Phenomenology +1408.2899 Earth and Planetary Astrophysics +1408.5549 Differential Geometry +1409.0755 +1409.4621 Computational Geometry +1410.0472 +1410.1319 +1410.1358 Geometric Topology +1410.2203 Quantum Gases +1410.5516 Dynamical Systems +1410.7563 Mesoscale and Nanoscale Physics +1410.7834 Combinatorics +1411.1766 Algebraic Geometry +1411.3034 Optics +1411.3688 Computation +1411.6141 Analysis of PDEs +1411.6872 Probability +1411.7765 Functional Analysis +1412.2082 +1412.2813 Computer Vision and Pattern Recognition +1412.3773 Learning +1412.6971 Combinatorics +1412.8253 Complex Variables +1412.8325 +1412.8450 +1501.00372 Methodology +1501.01350 Numerical Analysis +1501.01797 Information Theory +1501.05937 Phenomenology +1502.00221 Fluid Dynamics +1502.04539 Computer Science and Game Theory +1502.04547 Symplectic Geometry +1502.05739 +1502.06695 Classical Analysis and ODEs +1503.02228 Quantum Algebra +1503.02619 Computer Vision and Pattern Recognition +1503.02779 Combinatorics +1503.04856 Functional Analysis +1503.05636 +1503.06388 Statistics Theory +1503.07176 Astrophysics of Galaxies +1503.07513 High Energy Astrophysical Phenomena +1503.08052 Cosmology and Nongalactic Astrophysics +1503.08239 Optimization and Control +1503.08496 Commutative Algebra +1503.08626 Combinatorics +1503.08962 Analysis of PDEs +1504.01974 Cryptography and Security +1504.02845 Metric Geometry +1504.04680 Optimization and Control +1504.04917 Number Theory +1504.04952 Mesoscale and Nanoscale Physics +1504.05211 Theory +1504.06779 Computer Vision and Pattern Recognition +1504.07345 +1505.01409 Representation Theory +1505.01653 Classical Analysis and ODEs +1505.01785 Pattern Formation and Solitons +1505.01804 Classical Analysis and ODEs +1505.02404 Dynamical Systems +1505.02507 High Energy Astrophysical Phenomena +1505.03259 Systems and Control +1505.04296 Phenomenology +1505.04802 Disordered Systems and Neural Networks +1505.05108 Functional Analysis +1505.05926 +1505.07492 Optimization and Control +1505.07564 Data Analysis, Statistics and Probability +1506.00467 Combinatorics +1506.06531 +1506.06608 Mathematical Finance +1506.07660 Analysis of PDEs +1506.07924 Optimization and Control +1507.00303 +1507.01349 Representation Theory +1507.02010 +1507.02155 +1507.02792 Quantum Algebra +1507.03084 Information Theory +1507.04009 Earth and Planetary Astrophysics +1507.04027 Social and Information Networks +1507.04191 Superconductivity +1507.04233 +1507.04606 Social and Information Networks +1507.05492 Social and Information Networks +1507.05522 Probability +1507.05705 +1507.05885 Analysis of PDEs +1507.07737 Materials Science +1507.08480 +1507.08850 +1508.00586 Astrophysics of Galaxies +1508.01362 Analysis of PDEs +1508.01752 +1508.01822 Phenomenology +1508.02456 Algebraic Geometry +1508.02596 Combinatorics +1508.03008 Pattern Formation and Solitons +1508.03647 Cosmology and Nongalactic Astrophysics +1508.05030 Quantum Gases +1508.05243 Machine Learning +1508.05431 Methodology +1508.05555 Geometric Topology +1508.07218 Strongly Correlated Electrons +1508.07768 Probability +1509.00118 Data Structures and Algorithms +1509.00408 +1509.01430 +1509.01723 Dynamical Systems +1509.02120 Cosmology and Nongalactic Astrophysics +1509.03307 Dynamical Systems +1509.04914 +1509.05139 Cosmology and Nongalactic Astrophysics +1509.05150 +1509.06612 Economics +1509.07590 Statistical Mechanics +1509.08623 Combinatorics +1509.08747 Instrumentation and Detectors +1510.00143 Computer Vision and Pattern Recognition +1510.00931 Computer Science and Game Theory +1510.01290 Statistics Theory +1510.01436 +1510.01499 Algebraic Geometry +1510.02098 Theory +1510.02176 Materials Science +1510.03140 +1510.05167 Populations and Evolution +1510.05174 Strongly Correlated Electrons +1510.06053 Computation +1510.06267 Atomic Physics +1510.06935 Materials Science +1510.06990 Classical Analysis and ODEs +1510.07272 Instrumentation and Detectors +1510.08222 Algebraic Geometry +1511.00389 Dynamical Systems +1511.00755 Mesoscale and Nanoscale Physics +1511.00906 Social and Information Networks +1511.00931 Physics Education +1511.02148 Phenomenology +1511.02398 Optimization and Control +1511.03155 +1511.04350 Symplectic Geometry +1511.04690 Learning +1511.04715 Phenomenology +1511.04840 Probability +1511.05565 Theory +1511.05622 Learning +1511.06138 +1511.06390 Machine Learning +1511.06473 Commutative Algebra +1511.07122 Computer Vision and Pattern Recognition +1511.07247 Computer Vision and Pattern Recognition +1511.07649 Materials Science +1511.08935 Analysis of PDEs +1512.00096 +1512.00129 Geometric Topology +1512.00267 Metric Geometry +1512.00620 Optimization and Control +1512.00697 Probability +1512.01290 Information Theory +1512.01323 +1512.01649 Fluid Dynamics +1512.01839 Information Theory +1512.02938 Probability +1512.03211 Computers and Society +1512.03223 Methodology +1512.03284 Numerical Analysis +1512.05741 Digital Libraries +1512.05773 +1512.06658 Robotics +1512.06717 Algebraic Geometry +1512.06918 Classical Analysis and ODEs +1512.08512 Computer Vision and Pattern Recognition +1512.09052 Methodology +1601.00672 Mesoscale and Nanoscale Physics +1601.02051 Statistical Mechanics +1601.03364 Earth and Planetary Astrophysics +1601.03567 Experiment +1601.04336 Phenomenology +1601.05022 Experiment +1601.05171 Strongly Correlated Electrons +1601.05390 +1601.05421 Strongly Correlated Electrons +1601.05528 Materials Science +1601.05862 Mesoscale and Nanoscale Physics +1601.05930 Materials Science +1601.06277 Theory +1601.06431 Experiment +1601.06747 Solar and Stellar Astrophysics +1601.07133 Distributed, Parallel, and Cluster Computing +1601.07810 Computational Engineering, Finance, and Science +1601.07951 Statistical Mechanics +1601.08221 Databases +1602.00439 Strongly Correlated Electrons +1602.00590 Phenomenology +1602.01062 Quantum Gases +1602.02233 Solar and Stellar Astrophysics +1602.02416 Logic +1602.02648 Information Theory +1602.03260 Numerical Analysis +1602.03718 Distributed, Parallel, and Cluster Computing +1602.04365 Data Structures and Algorithms +1602.04796 Soft Condensed Matter +1602.05207 Probability +1602.05339 Fluid Dynamics +1602.05432 Formal Languages and Automata Theory +1602.05980 Learning +1602.06279 Theory +1602.06430 Functional Analysis +1602.07896 High Energy Astrophysical Phenomena +1602.08870 Soft Condensed Matter +1603.00404 Optics +1603.01319 +1603.01594 High Energy Astrophysical Phenomena +1603.01678 Mesoscale and Nanoscale Physics +1603.01685 Economics +1603.02215 +1603.02248 Experiment +1603.03102 Networking and Internet Architecture +1603.03328 Cosmology and Nongalactic Astrophysics +1603.03411 Algebraic Geometry +1603.03983 Number Theory +1603.06237 Analysis of PDEs +1603.06869 +1603.07210 Computer Science and Game Theory +1603.07545 Robotics +1603.08042 Computation and Language +1603.08648 Programming Languages +1604.00590 Social and Information Networks +1604.01637 Superconductivity +1604.01914 Number Theory +1604.02019 Number Theory +1604.02435 Computer Science and Game Theory +1604.02732 K-Theory and Homology +1604.02917 Machine Learning +1604.03780 Instrumentation and Methods for Astrophysics +1604.03841 Logic +1604.04740 Distributed, Parallel, and Cluster Computing +1604.04841 Optimization and Control +1604.04846 +1604.05298 Functional Analysis +1604.05841 Programming Languages +1604.06343 Classical Analysis and ODEs +1604.06604 +1604.07059 Complex Variables +1604.07166 Social and Information Networks +1604.07351 +1604.07353 Solar and Stellar Astrophysics +1604.07359 Data Structures and Algorithms +1604.07450 +1604.07478 Systems and Control +1604.07821 Instrumentation and Methods for Astrophysics +1604.07882 High Energy Astrophysical Phenomena +1604.07909 Classical Analysis and ODEs +1604.07945 Analysis of PDEs +1604.07977 Number Theory +1604.08096 Optimization and Control +1604.08334 Instrumentation and Methods for Astrophysics +1604.08437 Computational Complexity +1604.08448 Data Structures and Algorithms +1604.08521 Combinatorics +1604.08568 Databases +1604.08670 Number Theory +1604.08752 Plasma Physics +1604.08756 Networking and Internet Architecture +1604.08758 Networking and Internet Architecture +1604.08877 Instrumentation and Detectors +1604.08916 Cell Behavior +1605.00001 Probability +1605.00003 Learning +1605.00015 Methodology +1605.00018 Exactly Solvable and Integrable Systems +1605.00024 Probability +1605.00025 Physics Education +1605.00026 Robotics +1605.00028 Mesoscale and Nanoscale Physics +1605.00029 Computer Vision and Pattern Recognition +1605.00033 Other Quantitative Biology +1605.00034 Differential Geometry +1605.00039 Probability +1605.00040 Applications +1605.00041 +1605.00043 Analysis of PDEs +1605.00047 Combinatorics +1605.00050 Systems and Control +1605.00052 Computer Vision and Pattern Recognition +1605.00055 Computer Vision and Pattern Recognition +1605.00060 Databases +1605.00061 Phenomenology +1605.00064 Neural and Evolutionary Computing +1605.00070 Geometric Topology +1605.00071 Optimization and Control +1605.00072 Number Theory +1605.00073 Geometric Topology +1605.00075 Computer Vision and Pattern Recognition +1605.00079 Learning +1605.00080 General Finance +1605.00085 Distributed, Parallel, and Cluster Computing +1605.00087 Dynamical Systems +1605.00088 Number Theory +1605.00089 Data Structures and Algorithms +1605.00091 Networking and Internet Architecture +1605.00097 Neural and Evolutionary Computing +1605.00101 Networking and Internet Architecture +1605.00102 Analysis of PDEs +1605.00104 Methodology +1605.00105 Networking and Internet Architecture +1605.00118 Probability +1605.00119 Data Structures and Algorithms +1605.00126 Materials Science +1605.00128 Differential Geometry +1605.00129 Computer Vision and Pattern Recognition +1605.00131 Number Theory +1605.00132 Numerical Analysis +1605.00136 Computer Science and Game Theory +1605.00139 Data Structures and Algorithms +1605.00141 Experiment +1605.00147 Mesoscale and Nanoscale Physics +1605.00148 Mesoscale and Nanoscale Physics +1605.00150 Materials Science +1605.00153 Networking and Internet Architecture +1605.00154 Experiment +1605.00155 Methodology +1605.00156 Numerical Analysis +1605.00157 Statistics Theory +1605.00158 Optimization and Control +1605.00159 Theory +1605.00160 Algebraic Geometry +1605.00161 +1605.00162 Probability +1605.00165 Functional Analysis +1605.00169 Robotics +1605.00170 Computer Vision and Pattern Recognition +1605.00171 Earth and Planetary Astrophysics +1605.00172 Combinatorics +1605.00173 Portfolio Management +1605.00178 Neurons and Cognition +1605.00179 Experiment +1605.00185 Methodology +1605.00192 Representation Theory +1605.00193 Group Theory +1605.00194 Information Theory +1605.00198 Physics and Society +1605.00199 +1605.00204 Information Theory +1605.00205 Information Theory +1605.00207 High Energy Astrophysical Phenomena +1605.00211 Information Theory +1605.00212 Materials Science +1605.00214 Cryptography and Security +1605.00215 Instrumentation and Detectors +1605.00218 Logic +1605.00219 +1605.00223 Learning +1605.00225 +1605.00227 Quantum Algebra +1605.00228 Representation Theory +1605.00232 Analysis of PDEs +1605.00233 Functional Analysis +1605.00235 Plasma Physics +1605.00236 Algebraic Geometry +1605.00241 Artificial Intelligence +1605.00244 Fluid Dynamics +1605.00245 Functional Analysis +1605.00247 Functional Analysis +1605.00249 Applications +1605.00255 Medical Physics +1605.00256 +1605.00257 Combinatorics +1605.00258 Dynamical Systems +1605.00266 Combinatorics +1605.00268 Quantum Algebra +1605.00271 Group Theory +1605.00272 Accelerator Physics +1605.00273 Combinatorics +1605.00274 Systems and Control +1605.00281 Classical Analysis and ODEs +1605.00284 Human-Computer Interaction +1605.00285 Probability +1605.00286 Computer Vision and Pattern Recognition +1605.00296 Logic +1605.00297 Algebraic Geometry +1605.00298 Optics +1605.00300 Cryptography and Security +1605.00302 Algebraic Geometry +1605.00303 Computational Engineering, Finance, and Science +1605.00306 Computer Science and Game Theory +1605.00307 Computational Finance +1605.00310 Physics and Society +1605.00311 Dynamical Systems +1605.00312 Atomic Physics +1605.00314 Commutative Algebra +1605.00316 Machine Learning +1605.00319 Information Theory +1605.00320 Optimization and Control +1605.00322 Information Theory +1605.00324 Computer Vision and Pattern Recognition +1605.00325 +1605.00329 Learning +1605.00331 Geometric Topology +1605.00337 Soft Condensed Matter +1605.00338 Materials Science +1605.00344 Phenomenology +1605.00345 Optics +1605.00347 Systems and Control +1605.00351 Number Theory +1605.00352 Chaotic Dynamics +1605.00354 Robotics +1605.00355 Machine Learning +1605.00359 Classical Analysis and ODEs +1605.00361 Probability +1605.00362 Operating Systems +1605.00366 Computer Vision and Pattern Recognition +1605.00367 Solar and Stellar Astrophysics +1605.00370 +1605.00371 Formal Languages and Automata Theory +1605.00372 Data Structures and Algorithms +1605.00373 Combinatorics +1605.00374 Chemical Physics +1605.00375 Number Theory +1605.00377 Phenomenology +1605.00378 Number Theory +1605.00381 Logic in Computer Science +1605.00382 Networking and Internet Architecture +1605.00385 Theory +1605.00386 Soft Condensed Matter +1605.00390 Information Theory +1605.00392 Computer Vision and Pattern Recognition +1605.00393 Spectral Theory +1605.00395 High Energy Astrophysical Phenomena +1605.00396 Strongly Correlated Electrons +1605.00397 Functional Analysis +1605.00398 Networking and Internet Architecture +1605.00399 Fluid Dynamics +1605.00402 Symbolic Computation +1605.00404 Learning +1605.00406 Discrete Mathematics +1605.00409 Networking and Internet Architecture +1605.00410 Mathematical Software +1605.00412 Mesoscale and Nanoscale Physics +1605.00415 Probability +1605.00420 Computer Vision and Pattern Recognition +1605.00422 Symbolic Computation +1605.00423 Numerical Analysis +1605.00425 Cryptography and Security +1605.00428 Fluid Dynamics +1605.00429 Numerical Analysis +1605.00432 Differential Geometry +1605.00433 Phenomenology +1605.00439 Analysis of PDEs +1605.00442 Discrete Mathematics +1605.00443 Metric Geometry +1605.00445 Numerical Analysis +1605.00446 Cryptography and Security +1605.00449 Complex Variables +1605.00450 Combinatorics +1605.00452 Computer Vision and Pattern Recognition +1605.00453 Numerical Analysis +1605.00455 History and Overview +1605.00459 Computation and Language +1605.00460 Differential Geometry +1605.00462 Information Theory +1605.00465 Materials Science +1605.00467 Dynamical Systems +1605.00468 Earth and Planetary Astrophysics +1605.00475 Computer Vision and Pattern Recognition +1605.00476 Classical Analysis and ODEs +1605.00477 Optics +1605.00478 Materials Science +1605.00479 Optimization and Control +1605.00487 Number Theory +1605.00488 Dynamical Systems +1605.00489 Statistical Mechanics +1605.00493 Physics Education +1605.00494 Fluid Dynamics +1605.00495 Artificial Intelligence +1605.00498 Distributed, Parallel, and Cluster Computing +1605.00502 Analysis of PDEs +1605.00506 Numerical Analysis +1605.00508 Information Theory +1605.00511 Number Theory +1605.00513 Machine Learning +1605.00515 Astrophysics of Galaxies +1605.00520 Plasma Physics +1605.00526 Systems and Control +1605.00528 Combinatorics +1605.00532 Data Structures and Algorithms +1605.00533 Statistics Theory +1605.00535 Analysis of PDEs +1605.00537 Atomic and Molecular Clusters +1605.00538 Geometric Topology +1605.00540 Strongly Correlated Electrons +1605.00541 Atmospheric and Oceanic Physics +1605.00544 Analysis of PDEs +1605.00549 Mesoscale and Nanoscale Physics +1605.00552 +1605.00556 Pattern Formation and Solitons +1605.00559 Performance +1605.00566 History and Philosophy of Physics +1605.00568 Numerical Analysis +1605.00572 Computer Vision and Pattern Recognition +1605.00573 Phenomenology +1605.00574 Classical Analysis and ODEs +1605.00576 +1605.00577 Symplectic Geometry +1605.00581 Probability +1605.00587 Algebraic Geometry +1605.00588 Numerical Analysis +1605.00590 Computational Physics +1605.00592 Representation Theory +1605.00593 Fluid Dynamics +1605.00595 Theory +1605.00596 Machine Learning +1605.00598 Group Theory +1605.00604 Systems and Control +1605.00605 Logic +1605.00609 Learning +1605.00612 Experiment +1605.00613 Logic +1605.00614 Chemical Physics +1605.00615 Number Theory +1605.00621 Numerical Analysis +1605.00623 +1605.00625 Combinatorics +1605.00626 Information Theory +1605.00627 Optimization and Control +1605.00630 High Energy Astrophysical Phenomena +1605.00632 Analysis of PDEs +1605.00635 Information Theory +1605.00637 Mesoscale and Nanoscale Physics +1605.00641 Logic +quant-ph/0111149 +0705.2067 Rings and Algebras +0809.4977 Phenomenology +0902.4716 Exactly Solvable and Integrable Systems +1205.3214 Quantum Algebra +1210.0943 Combinatorics +1306.3235 Algebraic Geometry +1307.8277 Phenomenology +1308.5566 Functional Analysis +1310.1634 Statistical Finance +1310.4605 Quantum Algebra +1311.0054 Theory +1311.6588 Algebraic Geometry +1401.3992 Rings and Algebras +1402.2135 Combinatorics +1402.2242 +1402.5135 Theory +1402.6435 Algebraic Geometry +1403.0185 Logic in Computer Science +1403.6864 Quantum Algebra +1404.4209 Number Theory +1405.5554 Statistical Mechanics +1405.7964 Artificial Intelligence +1406.2274 General Mathematics +1406.3088 +1407.5278 Portfolio Management +1408.2666 +1408.2984 Combinatorics +1408.5355 Statistics Theory +1410.2482 Algebraic Topology +1410.4746 Theory +1411.6276 Social and Information Networks +1411.6973 Systems and Control +1411.7418 Numerical Analysis +1412.1592 Cosmology and Nongalactic Astrophysics +1412.7147 Theory +1501.00753 High Energy Astrophysical Phenomena +1501.01016 Experiment +1501.03061 Theory +1501.06065 Geometric Topology +1501.07698 Algebraic Topology +1502.01379 Numerical Analysis +1502.01464 Optics +1502.03434 Complex Variables +1502.03527 Chaotic Dynamics +1502.05572 +1502.07166 Biological Physics +1503.00540 Disordered Systems and Neural Networks +1503.02165 +1503.02467 Strongly Correlated Electrons +1503.03023 Fluid Dynamics +1503.05027 Experiment +1503.05864 Numerical Analysis +1503.06889 Phenomenology +1503.07696 Numerical Analysis +1503.08491 Instrumentation and Methods for Astrophysics +1504.00530 +1504.02479 Astrophysics of Galaxies +1504.02482 Astrophysics of Galaxies +1504.04524 Number Theory +1504.05534 Algebraic Geometry +1505.00877 Strongly Correlated Electrons +1505.01053 Phenomenology +1505.01125 History and Philosophy of Physics +1505.02016 Physics and Society +1505.02145 Statistical Mechanics +1505.03426 +1505.04096 Functional Analysis +1505.05345 Mesoscale and Nanoscale Physics +1505.07863 Lattice +1506.03293 Probability +1506.05716 Number Theory +1506.06931 +1506.08565 Information Theory +1506.09161 +1507.00777 Earth and Planetary Astrophysics +1507.01662 +1507.07965 Soft Condensed Matter +1508.00787 Superconductivity +1508.00865 Tissues and Organs +1508.01564 +1508.01601 +1508.02454 Information Theory +1508.03966 Optics +1508.04439 Complex Variables +1508.05212 Soft Condensed Matter +1508.06173 Systems and Control +1508.06538 Neural and Evolutionary Computing +1508.06587 Algebraic Geometry +1508.07760 Number Theory +1508.07861 Strongly Correlated Electrons +1509.00631 Soft Condensed Matter +1509.04242 Superconductivity +1509.04933 Phenomenology +1509.06514 Soft Condensed Matter +1509.06541 Classical Analysis and ODEs +1509.07568 +1509.07811 Algebraic Topology +1509.08008 +1509.08948 Solar and Stellar Astrophysics +1510.00062 Biological Physics +1510.00471 Populations and Evolution +1510.00672 Theory +1510.00992 Populations and Evolution +1510.01235 Phenomenology +1510.01467 Category Theory +1510.03752 Experiment +1510.04897 Atomic Physics +1510.05296 Populations and Evolution +1510.05914 Number Theory +1510.06534 Experiment +1510.07786 Machine Learning +1510.07802 Algebraic Topology +1510.08076 Instrumentation and Methods for Astrophysics +1510.08608 +1510.08796 Instrumentation and Methods for Astrophysics +1511.00432 Optimization and Control +1511.00681 Optimization and Control +1511.01481 Theory +1511.03168 High Energy Astrophysical Phenomena +1511.03392 Astrophysics of Galaxies +1511.04836 Genomics +1511.04871 Lattice +1511.06380 Learning +1511.06418 Learning +1511.08834 Solar and Stellar Astrophysics +1512.00554 Cosmology and Nongalactic Astrophysics +1512.01707 Materials Science +1512.02011 Learning +1512.02650 Solar and Stellar Astrophysics +1512.03023 Algebraic Topology +1512.05457 Social and Information Networks +1512.06355 Combinatorics +1601.00315 Mesoscale and Nanoscale Physics +1601.00758 Atomic Physics +1601.00877 Robotics +1601.01318 Solar and Stellar Astrophysics +1601.01676 Phenomenology +1601.02020 Solar and Stellar Astrophysics +1601.02278 Materials Science +1601.02857 Logic +1601.02937 Phenomenology +1601.02943 +1601.03145 Pattern Formation and Solitons +1601.03304 Differential Geometry +1601.03313 Computation and Language +1601.03513 Representation Theory +1601.03664 Information Theory +1601.03675 Information Theory +1601.03979 Differential Geometry +1601.04159 Chemical Physics +1601.04243 Algebraic Geometry +1601.04524 General Physics +1601.04615 Information Retrieval +1601.04634 Phenomenology +1601.04881 Algebraic Geometry +1601.04888 Computer Vision and Pattern Recognition +1601.04899 Classical Analysis and ODEs +1601.04952 Multiagent Systems +1601.04963 Earth and Planetary Astrophysics +1601.05009 Number Theory +1601.05012 Statistical Finance +1601.05092 Strongly Correlated Electrons +1601.05100 Physics and Society +1601.05105 Information Theory +1601.05106 Programming Languages +1601.05108 Materials Science +1601.05111 Optimization and Control +1601.05112 Earth and Planetary Astrophysics +1601.05115 Systems and Control +1601.05116 Computer Vision and Pattern Recognition +1601.05117 Molecular Networks +1601.05119 Algebraic Geometry +1601.05121 Instrumentation and Methods for Astrophysics +1601.05122 +1601.05124 +1601.05125 Dynamical Systems +1601.05127 Algebraic Geometry +1601.05128 Algebraic Geometry +1601.05130 Analysis of PDEs +1601.05132 Numerical Analysis +1601.05133 Algebraic Geometry +1601.05141 Computers and Society +1601.05142 Digital Libraries +1601.05144 Solar and Stellar Astrophysics +1601.05147 Complex Variables +1601.05149 Instrumentation and Detectors +1601.05152 Pattern Formation and Solitons +1601.05155 Statistics Theory +1601.05162 +1601.05163 +1601.05167 +1601.05174 +1601.05177 Probability +1601.05184 Solar and Stellar Astrophysics +1601.05187 Cryptography and Security +1601.05188 Analysis of PDEs +1601.05189 Analysis of PDEs +1601.05190 Discrete Mathematics +1601.05193 Information Theory +1601.05194 Computation and Language +1601.05197 General Topology +1601.05199 Portfolio Management +1601.05200 Pattern Formation and Solitons +1601.05201 Accelerator Physics +1601.05202 Optimization and Control +1601.05207 Accelerator Physics +1601.05210 Accelerator Physics +1601.05213 Analysis of PDEs +1601.05214 Accelerator Physics +1601.05216 Accelerator Physics +1601.05219 Analysis of PDEs +1601.05220 Rings and Algebras +1601.05221 Materials Science +1601.05222 +1601.05224 Superconductivity +1601.05225 Optics +1601.05227 Accelerator Physics +1601.05228 Logic in Computer Science +1601.05230 Accelerator Physics +1601.05232 Geophysics +1601.05235 Accelerator Physics +1601.05239 +1601.05241 Probability +1601.05247 Information Theory +1601.05256 Cosmology and Nongalactic Astrophysics +1601.05258 Accelerator Physics +1601.05259 Accelerator Physics +1601.05260 Biological Physics +1601.05264 Mesoscale and Nanoscale Physics +1601.05266 Networking and Internet Architecture +1601.05269 Superconductivity +1601.05272 +1601.05273 Emerging Technologies +1601.05276 Mesoscale and Nanoscale Physics +1601.05277 Earth and Planetary Astrophysics +1601.05279 Algebraic Geometry +1601.05286 Analysis of PDEs +1601.05287 Number Theory +1601.05289 High Energy Astrophysical Phenomena +1601.05295 Biological Physics +1601.05296 +1601.05297 Complex Variables +1601.05298 Fluid Dynamics +1601.05299 +1601.05300 Materials Science +1601.05303 Functional Analysis +1601.05305 Combinatorics +1601.05306 Pricing of Securities +1601.05308 Instrumentation and Detectors +1601.05313 Distributed, Parallel, and Cluster Computing +1601.05318 Superconductivity +1601.05320 Classical Analysis and ODEs +1601.05323 History and Overview +1601.05326 Mesoscale and Nanoscale Physics +1601.05334 Chemical Physics +1601.05339 +1601.05340 Populations and Evolution +1601.05344 General Physics +1601.05345 Rings and Algebras +1601.05346 Probability +1601.05349 Differential Geometry +1601.05355 Analysis of PDEs +1601.05356 Emerging Technologies +1601.05358 Analysis of PDEs +1601.05359 +1601.05362 Numerical Analysis +1601.05369 Mesoscale and Nanoscale Physics +1601.05370 Optimization and Control +1601.05381 +1601.05382 Analysis of PDEs +1601.05383 Algebraic Geometry +1601.05384 Distributed, Parallel, and Cluster Computing +1601.05387 Adaptation and Self-Organizing Systems +1601.05388 Populations and Evolution +1601.05393 Mesoscale and Nanoscale Physics +1601.05403 Computation and Language +1601.05404 Adaptation and Self-Organizing Systems +1601.05407 Space Physics +1601.05409 Computer Vision and Pattern Recognition +0705.1833 Algebraic Geometry +0801.1520 Theory +1009.0763 Algebraic Geometry +1112.5646 Phenomenology +1202.6542 Classical Physics +1205.3230 +1205.4818 Statistics Theory +1304.2477 Logic +1307.7189 +1307.8238 +1308.2033 Complex Variables +1310.0528 Algebraic Geometry +1310.8161 +1311.5140 Differential Geometry +1311.6835 Instrumentation and Methods for Astrophysics +1401.0315 Category Theory +1401.1790 Cell Behavior +1402.0531 +1402.1665 Dynamical Systems +1402.1823 Probability +1403.6403 Phenomenology +1403.7885 +1404.5698 Dynamical Systems +1404.7029 Probability +1405.4911 Materials Science +1405.5479 Representation Theory +1406.1066 Distributed, Parallel, and Cluster Computing +1406.2361 Category Theory +1406.5695 Probability +1407.2242 Statistical Mechanics +1407.8394 Computer Science and Game Theory +1408.0738 +1408.4352 Algebraic Geometry +1409.0475 +1409.3702 Operator Algebras +1409.3800 +1409.5349 Geometric Topology +1410.2352 +1410.6758 Methodology +1411.5154 +1412.2938 Phenomenology +1412.3262 Information Theory +1412.3392 Analysis of PDEs +1412.3872 Theory +1412.4841 Methodology +1412.5342 +1412.6835 Geometric Topology +1502.00567 Probability +1502.02120 Statistics Theory +1502.03858 Dynamical Systems +1502.06309 Machine Learning +1503.00024 Social and Information Networks +1503.04867 Computational Geometry +1503.05701 Number Theory +1503.07349 Algebraic Geometry +1504.02657 Soft Condensed Matter +1504.03312 Phenomenology +1504.04792 Computer Vision and Pattern Recognition +1504.05446 Complex Variables +1504.06243 Computer Vision and Pattern Recognition +1505.05664 Probability +1506.01944 Mesoscale and Nanoscale Physics +1506.02753 Neural and Evolutionary Computing +1506.02830 Geometric Topology +1506.03058 +1506.06706 +1507.01939 Quantum Gases +1507.02220 Category Theory +1507.03385 Differential Geometry +1507.06334 +1508.00582 +1508.00638 Materials Science +1508.00837 Social and Information Networks +1508.00906 Quantum Gases +1508.02776 Optics +1508.03904 Quantum Gases +1508.05085 +1508.05655 Instrumentation and Methods for Astrophysics +1508.06571 Dynamical Systems +1509.01623 Earth and Planetary Astrophysics +1509.01971 Differential Geometry +1509.02632 Chemical Physics +1509.04970 Representation Theory +1509.05135 Cosmology and Nongalactic Astrophysics +1509.05308 Statistical Mechanics +1509.05695 Analysis of PDEs +1509.07632 Category Theory +1509.07862 Materials Science +1510.00018 +1510.00080 Dynamical Systems +1510.00256 Computational Physics +1510.00599 Fluid Dynamics +1510.01181 Experiment +1510.03227 Formal Languages and Automata Theory +1510.04088 Biological Physics +1510.04747 Learning +1510.04823 Optimization and Control +1510.06379 Software Engineering +1510.06871 Applications +1510.07194 Phenomenology +1510.08228 Astrophysics of Galaxies +1510.08599 Classical Analysis and ODEs +1511.01316 Fluid Dynamics +1511.01419 Machine Learning +1511.01501 Strongly Correlated Electrons +1511.02920 Category Theory +1511.02921 Theory +1511.04450 Mesoscale and Nanoscale Physics +1511.04513 Phenomenology +1511.04776 Machine Learning +1511.05748 Methodology +1511.06386 Fluid Dynamics +1511.07043 Strongly Correlated Electrons +1511.07510 High Energy Astrophysical Phenomena +1511.08524 Differential Geometry +1511.08660 Algebraic Geometry +1511.09258 Differential Geometry +1512.00333 Computational Complexity +1512.01989 +1512.02628 +1512.02860 Theory +1512.03282 Metric Geometry +1512.03371 Phenomenology +1512.03757 Strongly Correlated Electrons +1512.04798 Analysis of PDEs +1512.05346 Cosmology and Nongalactic Astrophysics +1512.06019 Combinatorics +1512.06735 Computer Vision and Pattern Recognition +1512.06773 Phenomenology +1512.08440 Phenomenology +1512.08949 Learning +1512.09356 Classical Analysis and ODEs +1601.00050 Logic +1601.01044 Statistical Mechanics +1601.01144 Phenomenology +1601.01283 +1601.01334 +1601.03650 Computation and Language +1601.04399 Theory +1601.05284 Experiment +1601.05842 Statistics Theory +1601.05932 +1601.06667 Theory +1601.07201 Materials Science +1602.00518 Metric Geometry +1602.01067 Theory +1602.01373 Algebraic Topology +1602.02135 Optimization and Control +1602.03258 Learning +1602.05682 Sound +1602.07143 Numerical Analysis +1602.09069 Cryptography and Security +1603.00314 Phenomenology +1603.01101 Complex Variables +1603.02171 Strongly Correlated Electrons +1603.03737 Classical Analysis and ODEs +1603.05376 Formal Languages and Automata Theory +1603.05497 Subcellular Processes +1603.05891 Probability +1603.05895 Probability +1603.07054 Computer Vision and Pattern Recognition +1603.07153 Differential Geometry +1603.07235 Computer Vision and Pattern Recognition +1603.08016 Computation and Language +1603.08122 Materials Science +1603.08739 Mesoscale and Nanoscale Physics +1603.09534 Theory +1603.09592 +1604.00127 Representation Theory +1604.00775 +1604.01480 Complex Variables +1604.01786 +1604.01901 +1604.03462 Data Structures and Algorithms +1604.03688 Multimedia +1604.04003 Logic +1604.05006 Artificial Intelligence +1604.05403 Representation Theory +1604.05552 Logic +1604.05977 Probability +1604.06232 Computer Vision and Pattern Recognition +1604.06314 Plasma Physics +1604.06653 Materials Science +1604.06947 +1604.07057 Computer Vision and Pattern Recognition +1604.07067 Superconductivity +1604.07276 Combinatorics +1604.07322 Multimedia +1604.07486 Numerical Analysis +1604.07503 Algebraic Geometry +1604.07608 Rings and Algebras +1604.07641 Experiment +1604.07646 Number Theory +1604.07693 Probability +1604.07729 Physics and Society +1604.07822 Astrophysics of Galaxies +1604.07827 Theory +1604.07830 Theory +1604.07837 Theory +1604.07839 Analysis of PDEs +1604.07840 Analysis of PDEs +1604.07843 Theory +1604.07844 Instrumentation and Methods for Astrophysics +1604.07846 Classical Analysis and ODEs +1604.07847 Classical Analysis and ODEs +1604.07850 Computers and Society +1604.07853 Chemical Physics +1604.07856 Rings and Algebras +1604.07858 Instrumentation and Detectors +1604.07860 Theory +1604.07861 Experiment +1604.07862 Algebraic Topology +1604.07863 Information Theory +1604.07867 Combinatorics +1604.07870 Probability +1604.07872 Neurons and Cognition +1604.07874 +1604.07875 Functional Analysis +1604.07877 Combinatorics +1604.07878 Social and Information Networks +1604.07879 +1604.07880 Fluid Dynamics +1604.07881 Networking and Internet Architecture +1604.07885 Mesoscale and Nanoscale Physics +1604.07887 Soft Condensed Matter +1604.07890 Social and Information Networks +1604.07891 +1604.07892 Differential Geometry +1604.07893 Rings and Algebras +1604.07895 Combinatorics +1604.07897 Combinatorics +1604.07903 Numerical Analysis +1604.07904 Computer Vision and Pattern Recognition +1604.07905 Robotics +1604.07906 Artificial Intelligence +1604.07911 Probability +1604.07915 High Energy Astrophysical Phenomena +1604.07916 Optimization and Control +1604.07919 Materials Science +1604.07922 Analysis of PDEs +1604.07923 Differential Geometry +1604.07938 Mesoscale and Nanoscale Physics +1604.07944 Computer Vision and Pattern Recognition +1604.07946 Optics +1604.07948 Computer Vision and Pattern Recognition +1604.07954 Algebraic Geometry +1604.07959 Disordered Systems and Neural Networks +1604.07962 Dynamical Systems +1604.07963 Statistical Mechanics +1604.07965 Soft Condensed Matter +1604.07967 Representation Theory +1604.07969 Applications +1604.07970 Probability +1604.07973 Software Engineering +1604.07975 Phenomenology +1604.07978 Mesoscale and Nanoscale Physics +1604.07979 Functional Analysis +1604.07986 Commutative Algebra +1604.07990 Artificial Intelligence +1604.07991 Solar and Stellar Astrophysics +1604.07994 Numerical Analysis +1604.07996 Phenomenology +1604.08000 Number Theory +1604.08002 +1604.08004 Performance +1604.08005 Solar and Stellar Astrophysics +1604.08006 Algebraic Topology +1604.08007 Dynamical Systems +1604.08010 Computer Vision and Pattern Recognition +1604.08012 Analysis of PDEs +1604.08016 Methodology +1604.08017 +1604.08019 Solar and Stellar Astrophysics +1604.08021 Chemical Physics +1604.08026 Phenomenology +1604.08027 Theory +1604.08033 Materials Science +1604.08034 Group Theory +1604.08037 Probability +1604.08039 +1604.08040 Logic in Computer Science +1604.08044 Numerical Analysis +1604.08047 Functional Analysis +1604.08050 Optics +1604.08053 Combinatorics +1604.08055 Artificial Intelligence +1604.08058 Logic in Computer Science +1604.08065 Instrumentation and Detectors +1604.08069 Dynamical Systems +1604.08070 Mathematical Finance +1604.08071 Cryptography and Security +1604.08074 Dynamical Systems +1604.08078 Statistical Mechanics +1604.08083 Analysis of PDEs +1604.08084 Differential Geometry +1604.08085 Methodology +1604.08087 Robotics +1604.08088 Multimedia +1604.08090 Optics +1604.08091 Probability +1604.08092 Fluid Dynamics +1604.08095 Sound +1604.08101 Optics +1604.08102 Computation +1604.08104 Information Theory +1604.08106 Dynamical Systems +1604.08112 +1604.08114 Atomic Physics +1604.08115 Optics +1604.08117 Optics +1604.08120 Computation and Language +1604.08121 Computational Complexity +1604.08122 Experiment +1604.08123 Information Theory +1604.08124 Optics +1604.08125 Data Structures and Algorithms +1604.08127 Optimization and Control +1604.08128 Chemical Physics +1604.08130 Optics +1604.08132 Data Structures and Algorithms +1604.08134 Subcellular Processes +1604.08139 +1604.08143 +1604.08144 Combinatorics +1604.08146 Classical Physics +1604.08147 Data Structures and Algorithms +1604.08148 Artificial Intelligence +1604.08152 Algebraic Geometry +1604.08154 Materials Science +1604.08155 Software Engineering +1604.08161 Distributed, Parallel, and Cluster Computing +1604.08162 Materials Science +1604.08164 Computer Vision and Pattern Recognition +1604.08171 Social and Information Networks +1604.08173 Space Physics +1604.08174 Lattice +1604.08175 Classical Analysis and ODEs +1604.08178 Information Theory +1604.08181 Probability +1604.08187 +1604.08189 Optimization and Control +1604.08195 Complex Variables +1604.08200 Instrumentation and Methods for Astrophysics +1604.08201 Neural and Evolutionary Computing +math-ph/0512002 +0805.4448 Classical Analysis and ODEs +0807.4145 Number Theory +1001.4895 General Topology +1002.2419 +1002.4730 General Topology +1003.0587 Probability +1004.1404 Phenomenology +1101.2973 Data Structures and Algorithms +1104.4647 General Physics +1107.5633 Instrumentation and Methods for Astrophysics +1109.4265 Lattice +1201.1496 Probability +1201.1497 Probability +1201.1498 Probability +1203.3213 Cosmology and Nongalactic Astrophysics +1204.0918 General Topology +1205.0467 Phenomenology +1210.7495 Neurons and Cognition +1211.4300 Group Theory +1301.1340 Phenomenology +1302.0520 Metric Geometry +1303.3038 Algebraic Geometry +1303.3288 Algebraic Geometry +1304.5359 Metric Geometry +1305.4684 Instrumentation and Methods for Astrophysics +1306.2014 Probability +1307.6809 Data Structures and Algorithms +1307.8240 Information Theory +1309.4664 Analysis of PDEs +1309.5011 Optics +1310.1147 Optimization and Control +1310.2901 Combinatorics +1310.7082 Differential Geometry +1312.1243 Optimization and Control +1401.3598 Symplectic Geometry +1401.6025 Information Theory +1401.6845 +1402.1238 Phenomenology +1402.2317 Dynamical Systems +1402.4318 Statistical Mechanics +1403.3293 Plasma Physics +1403.7276 Numerical Analysis +1404.4241 +1404.7044 Algebraic Geometry +1405.1047 Astrophysics of Galaxies +1405.4490 General Finance +1405.4763 Statistical Mechanics +1405.6726 Astrophysics of Galaxies +1406.0258 Analysis of PDEs +1406.2380 Experiment +1406.3429 Algebraic Geometry +1406.6018 Other Statistics +1407.2002 Social and Information Networks +1407.2056 Chemical Physics +1407.2575 Data Structures and Algorithms +1407.3422 Machine Learning +1407.5625 High Energy Astrophysical Phenomena +1407.8198 Operator Algebras +1408.0372 Geometric Topology +1408.3345 Plasma Physics +1408.5423 Analysis of PDEs +1408.5983 Probability +1408.6354 Combinatorics +1408.6507 Probability +1409.2387 Probability +1409.2690 Analysis of PDEs +1409.5196 Other Statistics +1409.7055 Probability +1410.0894 Quantum Gases +1410.2502 Functional Analysis +1410.7595 Differential Geometry +1410.7707 Dynamical Systems +1411.4039 Theory +1411.4988 Numerical Analysis +1411.7292 Functional Analysis +1411.7335 Strongly Correlated Electrons +1411.8001 Analysis of PDEs +1412.1225 Strongly Correlated Electrons +1412.1434 High Energy Astrophysical Phenomena +1412.1810 Differential Geometry +1412.2487 Physics and Society +1412.7783 +1501.00885 Number Theory +1501.00904 +1501.01260 Representation Theory +1501.01368 Dynamical Systems +1501.01815 Optimization and Control +1501.02753 Algebraic Geometry +1501.03757 Networking and Internet Architecture +1501.07030 +1501.07778 Trading and Market Microstructure +1502.03849 Computer Science and Game Theory +1502.04169 Information Theory +1503.00262 +1503.00264 +1503.00946 Statistics Theory +1503.01678 Chaotic Dynamics +1504.01348 Cosmology and Nongalactic Astrophysics +1504.02953 Probability +1504.03455 Operator Algebras +1504.03898 Mesoscale and Nanoscale Physics +1504.04131 Numerical Analysis +1504.05350 Probability +1504.06847 Instrumentation and Methods for Astrophysics +1504.06891 General Topology +1504.07744 Theory +1505.00364 Operator Algebras +1505.01819 Strongly Correlated Electrons +1505.02504 Probability +1505.03792 +1505.03814 Cosmology and Nongalactic Astrophysics +1505.04675 Quantum Gases +1505.05576 Information Theory +1505.06633 Operator Algebras +1505.07516 Astrophysics of Galaxies +1505.08145 Algebraic Geometry +1506.02364 Atmospheric and Oceanic Physics +1506.02632 Learning +1506.03010 Astrophysics of Galaxies +1506.03064 Differential Geometry +1506.03476 Differential Geometry +1506.03804 Probability +1506.03887 Quantum Gases +1506.04331 +1506.04506 Physics and Society +1506.05157 Distributed, Parallel, and Cluster Computing +1506.05306 Classical Analysis and ODEs +1506.05907 Chemical Physics +1506.07115 Spectral Theory +1506.07761 Phenomenology +1507.00012 Astrophysics of Galaxies +1507.00070 Statistics Theory +1507.00719 Probability +1507.01615 Probability +1507.01995 Optimization and Control +1507.03424 Materials Science +1507.07985 Phenomenology +1507.08090 Analysis of PDEs +1507.08209 Numerical Analysis +1507.08617 Algebraic Geometry +1507.08675 +1508.00786 Materials Science +1508.01525 Cosmology and Nongalactic Astrophysics +1508.03385 Mesoscale and Nanoscale Physics +1508.03396 Chemical Physics +1508.03874 Theory +1508.04717 Logic +1508.04880 +1508.06910 +1508.07038 Materials Science +1508.07864 Mesoscale and Nanoscale Physics +1509.00681 Optimization and Control +1509.01019 Dynamical Systems +1509.01263 Astrophysics of Galaxies +1509.02971 Learning +1509.03087 Mesoscale and Nanoscale Physics +1509.03295 Computation and Language +1509.04292 Phenomenology +1509.04524 Digital Libraries +1509.04597 Quantum Gases +1509.06632 Theory +1509.07021 +1509.07308 Computation and Language +1509.07362 Quantum Gases +1509.07640 Analysis of PDEs +1509.07788 Geometric Topology +1509.08491 +1510.00098 Computer Vision and Pattern Recognition +1510.00273 Probability +1510.02325 Soft Condensed Matter +1510.02803 Strongly Correlated Electrons +1510.03037 Geometric Topology +1510.03716 Mesoscale and Nanoscale Physics +1510.03957 Phenomenology +1510.06357 Materials Science +1510.06646 Learning +1510.07358 Computer Science and Game Theory +1510.07771 Mesoscale and Nanoscale Physics +1510.08923 Plasma Physics +1511.00244 Theory +1511.02151 +1511.02527 Combinatorics +1511.02706 Strongly Correlated Electrons +1511.02793 Learning +1511.03071 +1511.04634 Robotics +1511.04773 Learning +1511.05042 Neural and Evolutionary Computing +1511.05440 Learning +1511.05553 Number Theory +1511.06051 Machine Learning +1511.06141 Mesoscale and Nanoscale Physics +1511.06279 Learning +1511.06410 Learning +1511.06559 Data Structures and Algorithms +1511.07543 Learning +1511.07635 Algebraic Geometry +1511.07750 Instrumentation and Detectors +1511.08169 Astrophysics of Galaxies +1511.08247 Mesoscale and Nanoscale Physics +1511.08429 Phenomenology +1511.08465 +1511.09257 Strongly Correlated Electrons +1511.09363 Numerical Analysis +1512.00140 Lattice +1512.00443 Digital Libraries +1512.00654 Materials Science +1512.00813 Superconductivity +1512.00848 Disordered Systems and Neural Networks +1512.01061 Superconductivity +1512.02018 Space Physics +1512.03164 Economics +1512.03871 Cryptography and Security +1512.05074 General Finance +1512.05266 Strongly Correlated Electrons +1512.05817 Exactly Solvable and Integrable Systems +1512.05975 Materials Science +1512.06309 General Finance +1512.06576 Analysis of PDEs +1512.06610 +1512.06827 Phenomenology +1512.06841 Mesoscale and Nanoscale Physics +1512.08067 Economics +1512.08291 Other Computer Science +1512.08952 Analysis of PDEs +1601.00227 Materials Science +1601.00457 Soft Condensed Matter +1601.00572 Combinatorics +1601.00688 Solar and Stellar Astrophysics +1601.00949 High Energy Astrophysical Phenomena +1601.01013 Mesoscale and Nanoscale Physics +1601.01214 +1601.01248 Strongly Correlated Electrons +1601.01921 Earth and Planetary Astrophysics +1601.02184 Algebraic Topology +1601.02319 Optimization and Control +1601.03013 Instrumentation and Methods for Astrophysics +1601.03231 Phenomenology +1601.03248 Combinatorics +1601.03338 Solar and Stellar Astrophysics +1601.03966 +1601.04272 Numerical Analysis +1601.04338 Mesoscale and Nanoscale Physics +1601.04787 Combinatorics +1601.05455 Solar and Stellar Astrophysics +1601.06380 Group Theory +1601.06764 Biomolecules +1601.06849 Combinatorics +1601.07965 Computer Science and Game Theory +1601.08077 Differential Geometry +1602.00148 Software Engineering +1602.00421 Commutative Algebra +1602.00521 Combinatorics +1602.00595 Chemical Physics +1602.01044 Quantum Gases +1602.01180 Chemical Physics +1602.01218 Information Theory +1602.01280 +1602.01559 Superconductivity +1602.01983 Algebraic Geometry +1602.02184 Methodology +1602.02402 Superconductivity +1602.02445 Computational Complexity +1602.02821 Analysis of PDEs +1602.03305 Networking and Internet Architecture +1602.04480 Probability +1602.05188 Mesoscale and Nanoscale Physics +1602.05224 Probability +1602.05378 Materials Science +1602.05920 Computer Vision and Pattern Recognition +1602.06007 Cryptography and Security +1602.06046 Materials Science +1602.06232 Logic +1602.06245 Computational Geometry +1602.06550 Learning +1602.06606 Statistics Theory +1602.06810 +1602.07072 Differential Geometry +1602.07128 Cryptography and Security +1602.07496 Operator Algebras +1602.07548 Physics and Society +1602.07642 Neurons and Cognition +1602.07675 Discrete Mathematics +1602.07739 Commutative Algebra +1602.07769 Logic +1602.07790 Representation Theory +1602.07796 Computational Complexity +1602.07836 Applications +1602.07842 Materials Science +1602.07913 Computational Physics +1602.08028 History and Overview +1602.08062 Methodology +1602.08255 Information Theory +1602.08274 Instrumentation and Methods for Astrophysics +1602.08296 Statistics Theory +1602.08385 Commutative Algebra +1602.08485 Functional Analysis +1602.08487 Classical Physics +1602.08488 History and Overview +1602.08507 Sound +1602.08508 Optimization and Control +1602.08510 Computer Vision and Pattern Recognition +1602.08514 General Physics +1602.08515 Data Structures and Algorithms +1602.08517 Optimization and Control +1602.08518 Earth and Planetary Astrophysics +1602.08519 Data Structures and Algorithms +1602.08520 Analysis of PDEs +1602.08521 Methodology +1602.08523 Pattern Formation and Solitons +1602.08526 Molecular Networks +1602.08527 Analysis of PDEs +1602.08528 Materials Science +1602.08529 Probability +1602.08532 Combinatorics +1602.08533 Economics +1602.08535 Geometric Topology +1602.08536 Quantum Algebra +1602.08542 Fluid Dynamics +1602.08544 Classical Analysis and ODEs +1602.08545 Complex Variables +1602.08547 Theory +1602.08548 Methodology +1602.08549 Cryptography and Security +1602.08552 Instrumentation and Detectors +1602.08554 Soft Condensed Matter +1602.08556 Neural and Evolutionary Computing +1602.08557 Neural and Evolutionary Computing +1602.08559 Materials Science +1602.08562 Metric Geometry +1602.08563 Data Structures and Algorithms +1602.08565 Formal Languages and Automata Theory +1602.08571 Artificial Intelligence +1602.08572 Pattern Formation and Solitons +1602.08573 Dynamical Systems +1602.08575 Computer Vision and Pattern Recognition +1602.08576 Physics and Society +1602.08577 Group Theory +1602.08581 Information Retrieval +1602.08585 Algebraic Topology +1602.08588 Numerical Analysis +1602.08592 Number Theory +1602.08593 Combinatorics +1602.08596 +1602.08599 Cosmology and Nongalactic Astrophysics +1602.08600 Optics +1602.08601 Optics +1602.08603 Mesoscale and Nanoscale Physics +1602.08605 Space Physics +1602.08607 Soft Condensed Matter +1602.08609 Sound +1602.08611 Group Theory +1602.08612 Analysis of PDEs +1602.08614 Information Theory +1602.08618 Optimization and Control +1602.08619 Optimization and Control +1602.08625 Commutative Algebra +1602.08627 Category Theory +1602.08629 Robotics +1602.08633 Sound +1602.08634 Chaotic Dynamics +1602.08635 Group Theory +1602.08636 Numerical Analysis +1602.08637 Dynamical Systems +1602.08639 Rings and Algebras +1602.08646 +1602.08648 Computational Complexity +1602.08650 Geometric Topology +1602.08654 Statistics Theory +1602.08655 Classical Analysis and ODEs +1602.08657 Computation and Language +1602.08659 Number Theory +1602.08660 Numerical Analysis +1602.08663 Numerical Analysis +1602.08664 Analysis of PDEs +1602.08666 Physics Education +1602.08668 Sound +1602.08669 Combinatorics +1602.08672 Dynamical Systems +1602.08675 Social and Information Networks +1602.08676 Theory +1602.08681 Statistical Mechanics +1602.08682 Plasma Physics +1602.08683 Algebraic Geometry +1602.08684 Combinatorics +1602.08685 Optics +1602.08687 Computer Science and Game Theory +1602.08696 Applications +1602.08698 Number Theory +1602.08700 Populations and Evolution +1602.08701 Analysis of PDEs +1602.08705 Combinatorics +1602.08712 Numerical Analysis +1602.08714 Information Theory +1602.08715 Computation and Language +1602.08716 Combinatorics +1602.08717 Algebraic Geometry +1602.08718 Theory +1602.08720 Theory +1602.08721 Databases +1602.08723 Group Theory +1602.08724 Plasma Physics +1602.08727 Numerical Analysis +1602.08728 Information Theory +1602.08731 Rings and Algebras +1602.08732 Analysis of PDEs +1602.08733 Theory +1602.08734 Machine Learning +1602.08736 Combinatorics +1602.08737 +1602.08741 Computation and Language +1602.08743 Symplectic Geometry +1602.08746 Mesoscale and Nanoscale Physics +1602.08747 +1602.08750 Human-Computer Interaction +1602.08757 Analysis of PDEs +1602.08760 Differential Geometry +1602.08763 Analysis of PDEs +1602.08765 Information Theory +1602.08773 Applications +1602.08774 +1602.08775 Physics Education +1602.08781 Physics Education +1602.08782 Combinatorics +1602.08784 Combinatorics +1602.08788 Analysis of PDEs +1602.08791 Databases +1602.08792 Quantum Algebra +1602.08793 Methodology +1602.08794 Numerical Analysis +1602.08800 Numerical Analysis +1602.08801 Probability +1602.08807 Methodology +1602.08808 Classical Analysis and ODEs +1602.08812 Numerical Analysis +1602.08813 Numerical Analysis +1602.08815 Numerical Analysis +1602.08817 Numerical Analysis +1602.08823 Materials Science +1602.08826 Optics +1602.08828 +1602.08829 Information Theory +1602.08830 High Energy Astrophysical Phenomena +1602.08832 Algebraic Topology +1602.08833 Optics +1602.08835 +1602.08836 Information Theory +1602.08837 Algebraic Topology +1602.08839 +1602.08844 Computation and Language +1602.08848 +1602.08849 Computation +1602.08854 Classical Analysis and ODEs +1602.08855 Computer Vision and Pattern Recognition +1602.08858 Probability +1602.08859 Number Theory +1602.08860 +1602.08862 Optics +1602.08864 Commutative Algebra +1602.08866 Algebraic Geometry +1602.08867 Quantum Algebra +1602.08869 High Energy Astrophysical Phenomena +1602.08871 +1602.08875 Probability +1602.08876 Combinatorics +1602.08881 Neurons and Cognition +1602.08883 Spectral Theory +1602.08885 Materials Science +1602.08887 Probability +1602.08888 +1602.08889 Biomolecules +1602.08891 Operator Algebras +1602.08896 +1602.08899 Space Physics +1602.08900 Probability +1602.08901 Probability +1602.08902 +1602.08903 Logic in Computer Science +1602.08908 Information Theory +1602.08910 Numerical Analysis +1602.08911 Theory +1602.08913 Other Quantitative Biology +1602.08917 +1602.08920 Materials Science +1602.08922 Number Theory +1602.08923 Theory +1602.08925 Distributed, Parallel, and Cluster Computing +1602.08929 +1602.08930 Solar and Stellar Astrophysics +1602.08931 Optimization and Control +1602.08934 Number Theory +1602.08937 Complex Variables +1602.08940 Analysis of PDEs +1602.08943 Optimization and Control +1602.08945 Materials Science +1602.08953 Dynamical Systems +1602.08954 +1602.08956 Medical Physics +1602.08961 Numerical Analysis +1602.08964 +1602.08968 Differential Geometry +1602.08970 Experiment +1602.08971 Logic in Computer Science +1602.08974 Applications +1602.08975 Information Theory +1602.08978 Social and Information Networks +1602.08979 Computers and Society +1602.08981 Formal Languages and Automata Theory +1602.08984 Algebraic Geometry +1602.08985 Physics and Society +1602.08986 Learning +1602.08989 Algebraic Geometry +1602.08998 Commutative Algebra +1602.08999 Combinatorics +1602.09000 Social and Information Networks +1602.09006 Experiment +1602.09007 +1602.09008 Experiment +1602.09012 Rings and Algebras +1602.09016 Number Theory +1602.09020 Phenomenology +1602.09021 Theory +1602.09023 General Physics +1602.09025 Dynamical Systems +1602.09029 Geophysics +1602.09030 Astrophysics of Galaxies +1602.09033 Plasma Physics +1602.09037 Data Structures and Algorithms +1602.09046 Neural and Evolutionary Computing +1602.09047 +1602.09050 Accelerator Physics +1602.09051 Rings and Algebras +1602.09052 Combinatorics +1602.09054 Molecular Networks +1602.09056 Phenomenology +1602.09067 Computers and Society +1602.09070 Adaptation and Self-Organizing Systems +1602.09071 Economics +1602.09072 +1602.09074 Soft Condensed Matter +1602.09079 Instrumentation and Methods for Astrophysics +1602.09081 Materials Science +1602.09090 Theory +1602.09092 Analysis of PDEs +1602.09094 Geophysics +1602.09100 Methodology +1602.09101 Differential Geometry +1602.09102 Digital Libraries +1602.09103 Analysis of PDEs +1602.09104 Networking and Internet Architecture +1602.09105 Fluid Dynamics +1602.09106 Number Theory +1602.09107 Multiagent Systems +1602.09110 +1602.09111 Discrete Mathematics +1602.09113 Rings and Algebras +1602.09116 Representation Theory +1602.09118 Learning +1602.09121 Astrophysics of Galaxies +1602.09123 Digital Libraries +1602.09124 Discrete Mathematics +1602.09125 Software Engineering +1602.09128 Methodology +1602.09136 Algebraic Geometry +1602.09137 Earth and Planetary Astrophysics +1602.09140 +astro-ph/9701005 +gr-qc/0501063 +math/0505302 Operator Algebras +nucl-th/0512045 +1411.7403 +1511.00961 Methodology +1511.01266 Functional Analysis +1511.01436 Social and Information Networks +1511.03819 +1511.04532 Statistical Mechanics +1511.04732 Cosmology and Nongalactic Astrophysics +1511.04833 +1511.05063 Instrumentation and Detectors +1511.05869 Emerging Technologies +1511.06793 Atomic Physics +1511.07065 +1511.07276 Materials Science +1511.07778 General Mathematics +1511.08069 Rings and Algebras +1511.08450 Analysis of PDEs +1511.08556 Probability +1512.04028 +1512.05923 Functional Analysis +1601.04584 Soft Condensed Matter +1601.06917 Rings and Algebras +1602.04780 Superconductivity +1604.08559 +0803.0191 Statistical Mechanics +0810.2397 Exactly Solvable and Integrable Systems +1106.1650 Cosmology and Nongalactic Astrophysics +1107.3821 Analysis of PDEs +1112.0976 Theory +1201.3285 Rings and Algebras +1203.3333 Complex Variables +1204.0781 Number Theory +1206.3817 Probability +1206.3856 Probability +1208.3238 Instrumentation and Detectors +1209.2578 Dynamical Systems +1212.1437 Analysis of PDEs +1212.1635 Analysis of PDEs +1212.1713 Analysis of PDEs +1304.3224 K-Theory and Homology +1305.1328 Mesoscale and Nanoscale Physics +1305.2088 Number Theory +1305.4778 Optimization and Control +1305.6579 Probability +1307.0882 Probability +1307.5994 Phenomenology +1308.4942 Information Theory +1309.1586 Probability +1310.7873 Algebraic Geometry +1311.5854 +1311.6521 Superconductivity +1312.2692 Analysis of PDEs +1312.2870 Probability +1312.2917 Analysis of PDEs +1312.7324 Dynamical Systems +1312.7426 Dynamical Systems +1401.0217 Probability +1401.0769 +1401.2626 +1401.3935 Algebraic Geometry +1401.4046 Algebraic Geometry +1402.1112 Operator Algebras +1402.2265 +1402.6021 Representation Theory +1404.4154 Theory +1404.5069 Symbolic Computation +1405.0431 Operator Algebras +1405.1643 Dynamical Systems +1405.2952 Probability +1405.4473 Algebraic Geometry +1405.4922 Analysis of PDEs +1406.7413 Logic +1407.4279 Mesoscale and Nanoscale Physics +1407.6729 Probability +1408.0533 +1408.3222 Number Theory +1408.5781 Information Theory +1408.6642 Logic +1409.8103 Probability +1410.1679 Solar and Stellar Astrophysics +1410.2537 Logic +1410.2747 Dynamical Systems +1410.8398 Algebraic Geometry +1411.4029 Dynamical Systems +1411.6394 +1412.0050 +1412.5059 Statistics Theory +1412.8239 Analysis of PDEs +1412.8267 Analysis of PDEs +1501.02974 Mesoscale and Nanoscale Physics +1501.03968 +1501.04031 Algebraic Geometry +1501.05823 Instrumentation and Methods for Astrophysics +1501.07044 +1501.07696 Phenomenology +1502.02249 +1502.02938 Mesoscale and Nanoscale Physics +1502.03843 Astrophysics of Galaxies +1502.04526 Symplectic Geometry +1503.00277 Chemical Physics +1503.00663 Operator Algebras +1503.01395 Mesoscale and Nanoscale Physics +1503.01753 Astrophysics of Galaxies +1503.03035 Dynamical Systems +1503.03147 General Topology +1503.03291 Discrete Mathematics +1503.03310 Solar and Stellar Astrophysics +1503.06073 Combinatorics +1503.06519 Phenomenology +1503.06980 Systems and Control +1504.00595 Statistics Theory +1504.02080 Cosmology and Nongalactic Astrophysics +1504.04620 Astrophysics of Galaxies +1504.06885 Cosmology and Nongalactic Astrophysics +1504.07105 Astrophysics of Galaxies +1504.07207 Algebraic Geometry +1504.07262 Theory +1504.07895 Theory +1504.08223 Functional Analysis +1505.01014 Number Theory +1505.02223 +1505.04508 Astrophysics of Galaxies +1505.05131 Popular Physics +1505.05256 Mathematical Finance +1505.05349 Strongly Correlated Electrons +1505.06202 Astrophysics of Galaxies +1505.06559 Cosmology and Nongalactic Astrophysics +1505.07062 Other Computer Science +1506.00378 Optics +1506.00710 Representation Theory +1506.00861 Classical Analysis and ODEs +1506.01420 Earth and Planetary Astrophysics +1506.02294 Cryptography and Security +1506.02505 +1506.02567 Lattice +1506.03407 Information Theory +1506.04172 High Energy Astrophysical Phenomena +1506.04504 Analysis of PDEs +1506.05374 Information Theory +1506.05471 Astrophysics of Galaxies +1506.05836 Commutative Algebra +1506.07119 +1506.07303 Dynamical Systems +1506.07525 Astrophysics of Galaxies +1506.09016 Learning +1507.00223 Statistical Mechanics +1507.00622 Algebraic Geometry +1507.01464 Cosmology and Nongalactic Astrophysics +1507.02255 Cosmology and Nongalactic Astrophysics +1507.02960 Dynamical Systems +1507.03296 Operator Algebras +1507.03355 Astrophysics of Galaxies +1507.04081 High Energy Astrophysical Phenomena +1507.04752 Astrophysics of Galaxies +1507.05852 High Energy Astrophysical Phenomena +1507.06951 Fluid Dynamics +1507.07467 Materials Science +1507.07640 +1507.07938 Astrophysics of Galaxies +1507.08289 Cosmology and Nongalactic Astrophysics +1507.08295 Phenomenology +1507.08551 Earth and Planetary Astrophysics +1507.08893 Number Theory +1508.00421 Theory +1508.00510 Computational Geometry +1508.01180 High Energy Astrophysical Phenomena +1508.02302 Astrophysics of Galaxies +1508.02399 High Energy Astrophysical Phenomena +1508.02972 Differential Geometry +1508.04087 Artificial Intelligence +1508.04395 Computation and Language +1508.04451 Physics and Society +1508.04468 Optimization and Control +1508.05058 +1508.05092 +1508.06547 +1508.06753 Soft Condensed Matter +1508.07000 High Energy Astrophysical Phenomena +1508.07027 Earth and Planetary Astrophysics +1508.07108 High Energy Astrophysical Phenomena +1508.07398 Cosmology and Nongalactic Astrophysics +1508.07911 High Energy Astrophysical Phenomena +1508.07939 High Energy Astrophysical Phenomena +1509.00033 Theory +1509.00812 Phenomenology +1509.01621 +1509.01726 Physics Education +1509.02191 Cosmology and Nongalactic Astrophysics +1509.03293 Physics Education +1509.03793 Astrophysics of Galaxies +1509.03928 Astrophysics of Galaxies +1509.04714 Cosmology and Nongalactic Astrophysics +1509.04899 Solar and Stellar Astrophysics +1509.05451 Astrophysics of Galaxies +1509.05532 Theory +1509.05833 High Energy Astrophysical Phenomena +1509.05864 Astrophysics of Galaxies +1509.06436 Phenomenology +1509.06438 Instrumentation and Methods for Astrophysics +1509.06546 Strongly Correlated Electrons +1509.06824 Learning +1509.06975 Solar and Stellar Astrophysics +1509.07130 Astrophysics of Galaxies +1509.07156 High Energy Astrophysical Phenomena +1509.08945 High Energy Astrophysical Phenomena +1509.09265 Classical Analysis and ODEs +1510.00141 Theory +1510.01061 +1510.01226 High Energy Astrophysical Phenomena +1510.01326 Astrophysics of Galaxies +1510.02201 Phenomenology +1510.02303 Astrophysics of Galaxies +1510.03069 +1510.03147 +1510.03318 Optimization and Control +1510.03440 Astrophysics of Galaxies +1510.03594 Astrophysics of Galaxies +1510.03638 Other Computer Science +1510.03696 +1510.03699 +1510.03703 +1510.03849 Earth and Planetary Astrophysics +1510.03870 Astrophysics of Galaxies +1510.03997 Earth and Planetary Astrophysics +1510.04297 Earth and Planetary Astrophysics +1510.04465 Astrophysics of Galaxies +1510.04471 Functional Analysis +1510.04607 Combinatorics +1510.04685 Phenomenology +1510.04754 +1510.04992 Theory +1510.06083 Learning +1510.06088 Solar and Stellar Astrophysics +1510.06605 Fluid Dynamics +1510.06763 High Energy Astrophysical Phenomena +1510.07083 Astrophysics of Galaxies +1510.07233 +1510.07286 Optics +1510.07425 Astrophysics of Galaxies +1510.07582 Earth and Planetary Astrophysics +1510.07746 Phenomenology +1510.07822 Phenomenology +1510.07869 Earth and Planetary Astrophysics +1510.08387 High Energy Astrophysical Phenomena +1510.08479 Differential Geometry +1510.08485 Cryptography and Security +1510.08489 Differential Geometry +1510.08677 Solar and Stellar Astrophysics +1510.08851 High Energy Astrophysical Phenomena +1510.08860 High Energy Astrophysical Phenomena +1510.09061 Astrophysics of Galaxies +1511.00005 Astrophysics of Galaxies +1511.00022 Phenomenology +1511.00403 Theory +1511.00436 Astrophysics of Galaxies +1511.00566 Earth and Planetary Astrophysics +1511.00588 +1511.00704 Cosmology and Nongalactic Astrophysics +1511.00993 Solar and Stellar Astrophysics +1511.01094 Astrophysics of Galaxies +1511.01140 Combinatorics +1511.01253 Mesoscale and Nanoscale Physics +1511.01490 Astrophysics of Galaxies +1511.01613 Astrophysics of Galaxies +1511.01648 Astrophysics of Galaxies +1511.01912 Earth and Planetary Astrophysics +1511.02363 Instrumentation and Methods for Astrophysics +1511.02983 Adaptation and Self-Organizing Systems +1511.03090 High Energy Astrophysical Phenomena +1511.03199 Instrumentation and Methods for Astrophysics +1511.03224 Solar and Stellar Astrophysics +1511.03272 Astrophysics of Galaxies +1511.03740 Solar and Stellar Astrophysics +1511.04276 Quantum Gases +1511.04816 +1511.04960 Computer Vision and Pattern Recognition +1511.04963 Earth and Planetary Astrophysics +1511.05158 Cosmology and Nongalactic Astrophysics +1511.05658 Solar and Stellar Astrophysics +1511.05915 Theory +1511.06105 Superconductivity +1511.06296 Astrophysics of Galaxies +1511.06587 Functional Analysis +1511.07199 Earth and Planetary Astrophysics +1511.07385 Earth and Planetary Astrophysics +1511.07659 Earth and Planetary Astrophysics +1511.07891 +1511.08228 Learning +1511.08293 Earth and Planetary Astrophysics +1511.09021 Social and Information Networks +1511.09132 Astrophysics of Galaxies +1511.09281 Instrumentation and Methods for Astrophysics +1512.00052 Solar and Stellar Astrophysics +1512.00159 Instrumentation and Methods for Astrophysics +1512.00193 High Energy Astrophysical Phenomena +1512.00729 High Energy Astrophysical Phenomena +1512.01523 Solar and Stellar Astrophysics +1512.01819 Theory +1512.01851 Astrophysics of Galaxies +1512.01879 Phenomenology +1512.01920 Astrophysics of Galaxies +1512.02438 Astrophysics of Galaxies +1512.02486 Cosmology and Nongalactic Astrophysics +1512.02586 Experiment +1512.02751 Phenomenology +1512.02805 High Energy Astrophysical Phenomena +1512.02889 High Energy Astrophysical Phenomena +1512.03054 Astrophysics of Galaxies +1512.03430 Astrophysics of Galaxies +1512.03491 Analysis of PDEs +1512.03630 High Energy Astrophysical Phenomena +1512.04071 Theory +1512.04129 Solar and Stellar Astrophysics +1512.04192 High Energy Astrophysical Phenomena +1512.04756 Soft Condensed Matter +1512.04948 Astrophysics of Galaxies +1512.05262 Quantum Gases +1512.05552 Astrophysics of Galaxies +1512.05701 Cosmology and Nongalactic Astrophysics +1512.05769 High Energy Astrophysical Phenomena +1512.06099 High Energy Astrophysical Phenomena +1512.06153 Astrophysics of Galaxies +1512.06418 Theory +1512.06668 Phenomenology +1512.06826 Theory +1512.06867 Instrumentation and Detectors +1512.07707 Astrophysics of Galaxies +1512.07780 Logic in Computer Science +1512.08830 Solar and Stellar Astrophysics +1601.00116 Astrophysics of Galaxies +1601.00623 Astrophysics of Galaxies +1601.00905 Earth and Planetary Astrophysics +1601.00941 Astrophysics of Galaxies +1601.01117 Cosmology and Nongalactic Astrophysics +1601.01162 Mesoscale and Nanoscale Physics +1601.01601 Astrophysics of Galaxies +1601.01631 Astrophysics of Galaxies +1601.01692 High Energy Astrophysical Phenomena +1601.01731 Solar and Stellar Astrophysics +1601.01960 Theory +1601.01971 Astrophysics of Galaxies +1601.02054 Earth and Planetary Astrophysics +1601.02103 Earth and Planetary Astrophysics +1601.02104 Cosmology and Nongalactic Astrophysics +1601.02385 High Energy Astrophysical Phenomena +1601.02427 Astrophysics of Galaxies +1601.02450 Solar and Stellar Astrophysics +1601.02587 Earth and Planetary Astrophysics +1601.02891 High Energy Astrophysical Phenomena +1601.02926 Solar and Stellar Astrophysics +1601.03047 Astrophysics of Galaxies +1601.03057 Astrophysics of Galaxies +1601.03104 Instrumentation and Methods for Astrophysics +1601.03165 Astrophysics of Galaxies +1601.03261 High Energy Astrophysical Phenomena +1601.03405 Solar and Stellar Astrophysics +1601.03406 Astrophysics of Galaxies +1601.03507 Solar and Stellar Astrophysics +1601.03850 Astrophysics of Galaxies +1601.04070 Solar and Stellar Astrophysics +1601.04155 Computer Vision and Pattern Recognition +1601.04318 Astrophysics of Galaxies +1601.04356 Astrophysics of Galaxies +1601.04417 Earth and Planetary Astrophysics +1601.04443 Solar and Stellar Astrophysics +1601.04488 Astrophysics of Galaxies +1601.04552 Superconductivity +1601.04562 Earth and Planetary Astrophysics +1601.04715 Astrophysics of Galaxies +1601.04729 Solar and Stellar Astrophysics +1601.04947 Cosmology and Nongalactic Astrophysics +1601.05028 Instrumentation and Methods for Astrophysics +1601.05151 Astrophysics of Galaxies +1601.05312 Solar and Stellar Astrophysics +1601.05343 High Energy Astrophysical Phenomena +1601.05465 Earth and Planetary Astrophysics +1601.05503 Astrophysics of Galaxies +1601.05508 Solar and Stellar Astrophysics +1601.05553 Earth and Planetary Astrophysics +1601.05620 Astrophysics of Galaxies +1601.05651 Earth and Planetary Astrophysics +1601.05652 +1601.05800 Astrophysics of Galaxies +1601.05806 High Energy Astrophysical Phenomena +1601.05810 High Energy Astrophysical Phenomena +1601.05857 Instrumentation and Methods for Astrophysics +1601.05878 Astrophysics of Galaxies +1601.05913 Solar and Stellar Astrophysics +1601.06029 High Energy Astrophysical Phenomena +1601.06168 Earth and Planetary Astrophysics +1601.06177 Instrumentation and Methods for Astrophysics +1601.06232 Phenomenology +1601.06240 Solar and Stellar Astrophysics +1601.06783 Astrophysics of Galaxies +1601.06835 Solar and Stellar Astrophysics +1601.07465 Solar and Stellar Astrophysics +1601.07495 Earth and Planetary Astrophysics +1601.07571 Theory +1601.07639 High Energy Astrophysical Phenomena +1601.07906 Astrophysics of Galaxies +1601.08083 Solar and Stellar Astrophysics +1602.00007 Astrophysics of Galaxies +1602.00038 Solar and Stellar Astrophysics +1602.00142 Solar and Stellar Astrophysics +1602.00319 Instrumentation and Methods for Astrophysics +1602.00527 Astrophysics of Galaxies +1602.00541 Astrophysics of Galaxies +1602.00701 Astrophysics of Galaxies +1602.00844 Information Theory +1602.01575 Solar and Stellar Astrophysics +1602.01688 Solar and Stellar Astrophysics +1602.01856 Astrophysics of Galaxies +1602.01935 Solar and Stellar Astrophysics +1602.02090 Solar and Stellar Astrophysics +1602.02781 Earth and Planetary Astrophysics +1602.02890 Earth and Planetary Astrophysics +1602.03135 High Energy Astrophysical Phenomena +1602.03188 Solar and Stellar Astrophysics +1602.03306 Solar and Stellar Astrophysics +1602.03373 Solar and Stellar Astrophysics +1602.03403 Astrophysics of Galaxies +1602.03570 Computer Vision and Pattern Recognition +1602.03680 Solar and Stellar Astrophysics +1602.04002 Astrophysics of Galaxies +1602.04069 High Energy Astrophysical Phenomena +1602.04082 +1602.04237 Solar and Stellar Astrophysics +1602.04303 Earth and Planetary Astrophysics +1602.04476 +1602.04735 High Energy Astrophysical Phenomena +1602.04898 Solar and Stellar Astrophysics +1602.04911 Theory +1602.05013 High Energy Astrophysical Phenomena +1602.05176 Earth and Planetary Astrophysics +1602.05474 Physics and Society +1602.05594 +1602.05706 +1602.05903 Astrophysics of Galaxies +1602.05967 Astrophysics of Galaxies +1602.06310 Astrophysics of Galaxies +1602.06370 Solar and Stellar Astrophysics +1602.06493 Solar and Stellar Astrophysics +1602.07341 Solar and Stellar Astrophysics +1602.07380 Earth and Planetary Astrophysics +1602.07457 Earth and Planetary Astrophysics +1602.07470 Solar and Stellar Astrophysics +1602.07544 High Energy Astrophysical Phenomena +1602.07619 Astrophysics of Galaxies +1602.07700 Astrophysics of Galaxies +1602.07748 Phenomenology +1602.07849 Solar and Stellar Astrophysics +1602.07874 Solar and Stellar Astrophysics +1602.07920 Astrophysics of Galaxies +1602.08037 Instrumentation and Methods for Astrophysics +1602.08098 High Energy Astrophysical Phenomena +1602.08498 Cosmology and Nongalactic Astrophysics +1602.08560 Materials Science +1602.08670 Astrophysics of Galaxies +1602.08703 Astrophysics of Galaxies +1602.08708 Solar and Stellar Astrophysics +1602.09055 Earth and Planetary Astrophysics +1602.09080 Instrumentation and Methods for Astrophysics +1603.00025 Earth and Planetary Astrophysics +1603.00078 Astrophysics of Galaxies +1603.00110 Computer Vision and Pattern Recognition +1603.00134 Astrophysics of Galaxies +1603.00174 Earth and Planetary Astrophysics +1603.00238 Exactly Solvable and Integrable Systems +1603.00305 High Energy Astrophysical Phenomena +1603.00309 High Energy Astrophysical Phenomena +1603.00691 Group Theory +1603.00773 Optimization and Control +1603.01185 Biomolecules +1603.01266 Solar and Stellar Astrophysics +1603.01460 Statistical Mechanics +1603.01473 Analysis of PDEs +1603.01629 Solar and Stellar Astrophysics +1603.01649 Statistics Theory +1603.01661 Software Engineering +1603.01665 Dynamical Systems +1603.01676 Probability +1603.01684 Computer Vision and Pattern Recognition +1603.01712 High Energy Astrophysical Phenomena +1603.01778 Logic +1603.01795 Statistics Theory +1603.01797 +1603.01804 Physics and Society +1603.01822 Optimization and Control +1603.01853 +1603.01978 Differential Geometry +1603.02011 Discrete Mathematics +1603.02073 Instrumentation and Detectors +1603.02473 Number Theory +1603.02564 Systems and Control +1603.02669 +1603.02674 Mesoscale and Nanoscale Physics +1603.02691 Solar and Stellar Astrophysics +1603.02715 Mesoscale and Nanoscale Physics +1603.03100 Differential Geometry +1603.03206 Mesoscale and Nanoscale Physics +1603.03392 High Energy Astrophysical Phenomena +1603.03403 Functional Analysis +1603.03770 Representation Theory +1603.03796 Tissues and Organs +1603.03878 Solar and Stellar Astrophysics +1603.03916 Systems and Control +1603.04019 Optimization and Control +1603.04132 Computer Vision and Pattern Recognition +1603.04210 Computational Geometry +1603.04247 Operator Algebras +1603.04350 Learning +1603.04432 Atomic Physics +1603.04443 Astrophysics of Galaxies +1603.04444 Theory +1603.04447 Social and Information Networks +1603.04450 Strongly Correlated Electrons +1603.04451 Data Structures and Algorithms +1603.04452 Analysis of PDEs +1603.04456 Numerical Analysis +1603.04459 Number Theory +1603.04460 Optimization and Control +1603.04462 Combinatorics +1603.04466 Social and Information Networks +1603.04472 Classical Analysis and ODEs +1603.04480 Algebraic Geometry +1603.04481 Metric Geometry +1603.04482 Information Retrieval +1603.04483 Mathematical Software +1603.04484 +1603.04489 Number Theory +1603.04494 Analysis of PDEs +1603.04497 Computers and Society +1603.04498 Cosmology and Nongalactic Astrophysics +1603.04500 Statistics Theory +1603.04502 Analysis of PDEs +1603.04504 Theory +1603.04506 Learning +1603.04507 Instrumentation and Methods for Astrophysics +1603.04508 Materials Science +1603.04510 Systems and Control +1603.04513 Computation and Language +1603.04514 Phenomenology +1603.04515 Optics +1603.04517 Combinatorics +1603.04518 Populations and Evolution +1603.04519 Optimization and Control +1603.04520 Geometric Topology +1603.04521 Instrumentation and Detectors +1603.04522 Information Retrieval +1603.04524 +1603.04526 Theory +1603.04527 Operator Algebras +1603.04528 Number Theory +1603.04529 Instrumentation and Detectors +1603.04530 Computer Vision and Pattern Recognition +1603.04536 Earth and Planetary Astrophysics +1603.04539 Classical Analysis and ODEs +1603.04541 Formal Languages and Automata Theory +1603.04542 Statistics Theory +1603.04543 +1603.04546 Mesoscale and Nanoscale Physics +1603.04547 Optimization and Control +1603.04549 Learning +1603.04550 Computer Vision and Pattern Recognition +1603.04553 Computation and Language +1603.04558 Number Theory +1603.04560 Dynamical Systems +1603.04561 Number Theory +1603.04562 Optimization and Control +1603.04563 Number Theory +1603.04564 Information Theory +1603.04565 Methodology +1603.04569 Computational Complexity +1603.04570 Numerical Analysis +1603.04572 Machine Learning +1603.04576 +1603.04578 Classical Analysis and ODEs +1603.04580 Earth and Planetary Astrophysics +1603.04583 +1603.04584 Software Engineering +1603.04585 Phenomenology +1603.04586 Artificial Intelligence +1603.04588 Computer Vision and Pattern Recognition +1603.04590 Materials Science +1603.04591 Information Theory +1603.04594 Quantum Algebra +1603.04596 Materials Science +1603.04597 Data Structures and Algorithms +1603.04599 Representation Theory +1603.04606 Computational Complexity +1603.04609 Materials Science +1603.04611 Probability +1603.04614 Computer Vision and Pattern Recognition +1603.04620 Human-Computer Interaction +1603.04621 Combinatorics +1603.04623 +1603.04625 Strongly Correlated Electrons +1603.04627 Hardware Architecture +1603.04628 Fluid Dynamics +1603.04630 +1603.04632 Discrete Mathematics +1603.04643 Social and Information Networks +1603.04649 Analysis of PDEs +1603.04650 Quantum Algebra +1603.04653 Numerical Analysis +1603.04654 Combinatorics +1603.04657 Classical Analysis and ODEs +1603.04658 Classical Analysis and ODEs +1603.04663 Experiment +1603.04665 Lattice +1603.04666 Materials Science +1603.04667 Systems and Control +1603.04669 Materials Science +1603.04670 Probability +1603.04678 Operator Algebras +1603.04680 Analysis of PDEs +1603.04681 Algebraic Topology +1603.04683 Optimization and Control +1603.04685 Number Theory +1603.04687 Neurons and Cognition +1603.04691 Number Theory +1603.04693 Number Theory +1603.04695 General Topology +1603.04703 +1603.04706 Combinatorics +1603.04712 Logic +1603.04713 Computer Vision and Pattern Recognition +1603.04715 Analysis of PDEs +1603.04719 Strongly Correlated Electrons +1603.04721 Quantitative Methods +1603.04724 Combinatorics +1603.04727 Plasma Physics +1603.04734 Probability +1603.04735 Probability +1603.04738 Computers and Society +1603.04739 Systems and Control +1603.04740 Geometric Topology +1603.04742 Solar and Stellar Astrophysics +1603.04743 Probability +1603.04745 Numerical Analysis +1603.04747 Computation and Language +1603.04750 Fluid Dynamics +1603.04754 Group Theory +1603.04756 Optics +1603.04758 Materials Science +1603.04759 Metric Geometry +1603.04760 Astrophysics of Galaxies +1603.04765 Mesoscale and Nanoscale Physics +1603.04767 Computation and Language +1603.04774 +1603.04785 Optimization and Control +1603.04786 Analysis of PDEs +1603.04788 Discrete Mathematics +1603.04791 Optics +1603.04792 Databases +1603.04793 Theory +1603.04797 +1603.04798 Data Structures and Algorithms +1603.04807 Quantum Gases +1603.04810 Physics and Society +1603.04811 Algebraic Topology +1603.04814 Physics and Society +1603.04822 Information Theory +1603.04823 Combinatorics +1603.04825 High Energy Astrophysical Phenomena +1603.04831 Number Theory +1603.04832 Number Theory +1603.04833 Learning +1603.04835 Applications +1603.04836 Combinatorics +1603.04839 Instrumentation and Methods for Astrophysics +1603.04843 Statistics Theory +0801.4040 Probability +0806.3026 General Physics +0811.2196 +0902.1601 +0902.4700 Representation Theory +0908.1489 Representation Theory +1003.3416 Representation Theory +1005.1472 Differential Geometry +1011.6468 Representation Theory +1104.3135 Theory +1105.5590 Solar and Stellar Astrophysics +1108.2435 Materials Science +1204.2125 +1204.3768 Analysis of PDEs +1205.2996 Information Theory +1206.1639 Geometric Topology +1206.4067 Statistical Mechanics +1210.6247 Numerical Analysis +1212.1417 General Physics +1212.6814 Algebraic Geometry +1301.5126 Analysis of PDEs +1304.4403 Theory +1305.0164 Commutative Algebra +1305.1497 +1305.2977 Dynamical Systems +1306.0639 Theory +1306.1759 Geometric Topology +1306.4338 Theory +1307.1818 Representation Theory +1307.4814 Probability +1307.7985 Number Theory +1308.2014 Superconductivity +1308.6611 Representation Theory +1309.1738 Analysis of PDEs +1309.6472 Metric Geometry +1310.3256 Theory +1311.0096 Methodology +1311.3280 Cosmology and Nongalactic Astrophysics +1311.6531 Dynamical Systems +1312.1661 +1312.3217 Experiment +1312.3904 Computational Geometry +1312.4675 Methodology +1402.4539 Methodology +1402.6405 Representation Theory +1403.3195 Differential Geometry +1403.3895 Rings and Algebras +1403.3963 Spectral Theory +1403.5311 Classical Analysis and ODEs +1403.7482 +1404.1901 Commutative Algebra +1404.3773 Computational Physics +1405.0521 Information Theory +1405.1386 Analysis of PDEs +1405.3975 Strongly Correlated Electrons +1405.4579 Geometric Topology +1405.5220 Materials Science +1405.7368 Combinatorics +1406.0741 Exactly Solvable and Integrable Systems +1406.1968 +1406.2326 Materials Science +1406.2558 Applications +1406.3721 Rings and Algebras +1406.6299 Commutative Algebra +1406.6657 Functional Analysis +1407.0789 Representation Theory +1407.1026 +1407.3584 Theory +1407.4344 Statistical Mechanics +1407.4625 Representation Theory +1408.2194 Adaptation and Self-Organizing Systems +1408.4982 +1408.5837 Group Theory +1409.1741 Exactly Solvable and Integrable Systems +1409.4188 Classical Analysis and ODEs +1409.6284 Analysis of PDEs +1409.6465 Differential Geometry +1410.3858 Classical Analysis and ODEs +1410.3866 Classical Analysis and ODEs +1410.4018 Geometric Topology +1410.4619 Statistical Mechanics +1410.5338 Analysis of PDEs +1411.0281 Information Theory +1411.0492 Differential Geometry +1411.4206 Algebraic Geometry +1411.6610 Solar and Stellar Astrophysics +1411.6663 Combinatorics +1411.7415 Physics and Society +1412.0812 Adaptation and Self-Organizing Systems +1412.1105 Phenomenology +1412.3793 Strongly Correlated Electrons +1412.4098 Machine Learning +1412.7025 Combinatorics +1412.7998 Logic +1412.8764 Probability +1501.00343 Discrete Mathematics +1501.00502 Representation Theory +1501.01478 +1501.03397 Statistical Mechanics +1501.03877 Materials Science +1501.04265 Computer Science and Game Theory +1501.04453 Superconductivity +1501.04525 Differential Geometry +1501.04901 Neurons and Cognition +1501.05733 Analysis of PDEs +1502.00020 +1502.01380 Neural and Evolutionary Computing +1502.04304 Superconductivity +1502.05803 Computer Vision and Pattern Recognition +1502.07516 Differential Geometry +1503.03182 Theory +1503.05999 Dynamical Systems +1503.06577 Mesoscale and Nanoscale Physics +1503.07174 Strongly Correlated Electrons +1503.09181 Rings and Algebras +1504.00255 Differential Geometry +1504.01779 Superconductivity +1504.02774 Group Theory +1504.04520 Probability +1504.06107 Probability +1504.07879 Probability +1505.01223 Superconductivity +1505.01522 Geometric Topology +1505.01686 +1505.05308 Numerical Analysis +1505.05983 Quantitative Methods +1505.06236 Computer Vision and Pattern Recognition +1505.06665 Classical Analysis and ODEs +1505.06889 Numerical Analysis +1505.07014 +1505.07821 Populations and Evolution +1506.00833 Number Theory +1506.02073 +1506.04344 Statistics Theory +1506.04557 Learning +1506.04735 Functional Analysis +1506.06030 Mesoscale and Nanoscale Physics +1506.06602 Disordered Systems and Neural Networks +1506.07285 Computation and Language +1506.07767 Differential Geometry +1506.07794 Cosmology and Nongalactic Astrophysics +1506.07809 +1506.08140 +1507.00545 Commutative Algebra +1507.01629 +1507.02179 Materials Science +1507.02256 Cosmology and Nongalactic Astrophysics +1507.02643 Algebraic Geometry +1507.02818 Quantum Gases +1507.04434 Solar and Stellar Astrophysics +1507.05629 Astrophysics of Galaxies +1507.05930 Experiment +1507.06013 Probability +1507.06056 Computers and Society +1507.08298 Statistics Theory +1507.08766 Statistical Mechanics +1508.00570 +1508.01843 Social and Information Networks +1508.02070 Fluid Dynamics +1508.02720 +1508.03528 Physics and Society +1508.03557 High Energy Astrophysical Phenomena +1508.03606 Probability +1508.04180 Distributed, Parallel, and Cluster Computing +1508.05943 Mesoscale and Nanoscale Physics +1508.06323 Astrophysics of Galaxies +1508.07395 Soft Condensed Matter +1508.07427 Classical Analysis and ODEs +1508.07630 Machine Learning +1508.07658 Quantum Algebra +1508.07886 Strongly Correlated Electrons +1509.01708 Statistics Theory +1509.01731 Analysis of PDEs +1509.01968 Classical Analysis and ODEs +1509.02551 Combinatorics +1509.03611 Computation and Language +1509.03689 Biological Physics +1509.03915 Computer Science and Game Theory +1509.04054 Physics and Society +1509.04108 Phenomenology +1509.05197 Distributed, Parallel, and Cluster Computing +1509.06225 Dynamical Systems +1509.06503 Programming Languages +1509.07095 Number Theory +1509.07970 +1509.08708 Combinatorics +1510.00278 Mesoscale and Nanoscale Physics +1510.00955 Symplectic Geometry +1510.02362 Dynamical Systems +1510.03426 Astrophysics of Galaxies +1510.03557 Numerical Analysis +1510.03608 Computer Vision and Pattern Recognition +1510.05467 Information Theory +1510.06786 Computation and Language +1510.06904 Space Physics +1510.07485 Atmospheric and Oceanic Physics +1510.07923 Probability +1510.08082 Data Analysis, Statistics and Probability +1510.08456 Phenomenology +1510.08580 Optimization and Control +1510.08811 +1510.08856 Strongly Correlated Electrons +1511.00135 Earth and Planetary Astrophysics +1511.00278 Mesoscale and Nanoscale Physics +1511.01122 Phenomenology +1511.02170 Astrophysics of Galaxies +1511.02216 Materials Science +1511.02227 Mesoscale and Nanoscale Physics +1511.02258 Learning +1511.02405 Analysis of PDEs +1511.02591 Data Structures and Algorithms +1511.03006 Cosmology and Nongalactic Astrophysics +1511.03420 Phenomenology +1511.03445 +1511.04018 +1511.06024 Phenomenology +1511.06341 Computation and Language +1511.06843 Analysis of PDEs +1511.08044 Mesoscale and Nanoscale Physics +1511.08732 +1512.00123 +1512.00908 Dynamical Systems +1512.01223 Probability +1512.01604 Computational Physics +1512.01766 Phenomenology +1512.02512 Information Theory +1512.04366 Mesoscale and Nanoscale Physics +1512.04603 Geometric Topology +1512.05673 Strongly Correlated Electrons +1512.05766 Strongly Correlated Electrons +1512.05787 Phenomenology +1512.06720 Dynamical Systems +1512.07512 Materials Science +1512.07593 Operator Algebras +1512.08426 +1512.08656 +1512.09289 Plasma Physics +1601.00414 Computer Vision and Pattern Recognition +1601.00432 Functional Analysis +1601.00558 Combinatorics +1601.01033 Group Theory +1601.01255 +1601.01404 Astrophysics of Galaxies +1601.03277 +1601.04229 Phenomenology +1601.04355 +1601.04362 Probability +1601.04493 Number Theory +1601.04774 +1601.04991 General Physics +1601.05283 Social and Information Networks +1601.05615 Commutative Algebra +1601.05741 Plasma Physics +1601.06331 Networking and Internet Architecture +1601.06333 Networking and Internet Architecture +1601.06655 Representation Theory +1601.06770 High Energy Astrophysical Phenomena +1601.07044 Probability +1601.07069 Strongly Correlated Electrons +1602.00138 Numerical Analysis +1602.00323 Fluid Dynamics +1602.00709 +1602.01151 Commutative Algebra +1602.01519 +1602.02222 Phenomenology +1602.02570 Theory +1602.02715 Programming Languages +1602.03114 Differential Geometry +1602.03212 +1602.03665 Solar and Stellar Astrophysics +1602.03746 Social and Information Networks +1602.03833 Strongly Correlated Electrons +1602.03970 Theory +1602.04042 Combinatorics +1602.04212 +1602.04967 Emerging Technologies +1602.05295 Algebraic Topology +1602.05610 Classical Analysis and ODEs +1602.06514 Solar and Stellar Astrophysics +1602.06824 Materials Science +1602.07170 Molecular Networks +1602.07198 +1602.07231 Probability +1602.07422 Data Structures and Algorithms +1602.07432 Combinatorics +1602.08516 General Physics +1602.08907 Combinatorics +1602.08950 Strongly Correlated Electrons +1602.09096 Mesoscale and Nanoscale Physics +1602.09097 Number Theory +1603.00048 Instrumentation and Methods for Astrophysics +1603.00350 Theory +1603.00671 Information Theory +1603.01482 General Physics +1603.01615 Earth and Planetary Astrophysics +1603.01631 Methodology +1603.01633 Computer Vision and Pattern Recognition +1603.01634 Information Theory +1603.01635 +1603.01639 Theory +1603.01640 Data Analysis, Statistics and Probability +1603.01641 Metric Geometry +1603.01644 Numerical Analysis +1603.01646 Statistical Mechanics +1603.01648 Computation and Language +1603.01650 Optimization and Control +1603.01651 Information Theory +1603.01654 Instrumentation and Detectors +1603.01656 Atmospheric and Oceanic Physics +1603.01662 Chemical Physics +1603.01663 Superconductivity +1603.01671 Number Theory +1603.01672 Optimization and Control +1603.01673 Differential Geometry +1603.01675 Information Theory +1603.01677 Analysis of PDEs +1603.01682 Databases +1603.01687 Spectral Theory +1603.01689 Instrumentation and Methods for Astrophysics +1603.01690 Solar and Stellar Astrophysics +1603.01691 Differential Geometry +1603.01692 Fluid Dynamics +1603.01694 Information Theory +1603.01695 Computer Vision and Pattern Recognition +1603.01696 Computer Vision and Pattern Recognition +1603.01698 Information Theory +1603.01701 Mesoscale and Nanoscale Physics +1603.01707 High Energy Astrophysical Phenomena +1603.01715 +1603.01716 Learning +1603.01717 Strongly Correlated Electrons +1603.01718 +1603.01720 Probability +1603.01722 Artificial Intelligence +1603.01726 Group Theory +1603.01727 Probability +1603.01729 Information Theory +1603.01731 +1603.01732 Mesoscale and Nanoscale Physics +1603.01733 Data Structures and Algorithms +1603.01735 Operator Algebras +1603.01736 Combinatorics +1603.01739 Computer Vision and Pattern Recognition +1603.01747 Geophysics +1603.01753 Functional Analysis +1603.01760 Mesoscale and Nanoscale Physics +1603.01761 Numerical Analysis +1603.01765 Numerical Analysis +1603.01766 Logic +1603.01768 Computer Vision and Pattern Recognition +1603.01769 Phenomenology +1603.01770 Sound +1603.01771 Soft Condensed Matter +1603.01772 Computer Vision and Pattern Recognition +1603.01775 Methodology +1603.01776 Logic in Computer Science +1603.01784 Representation Theory +1603.01787 Multiagent Systems +1603.01790 Statistical Mechanics +1603.01791 Materials Science +1603.01793 Numerical Analysis +1603.01794 Biomolecules +1603.01796 Mesoscale and Nanoscale Physics +1603.01798 Optimization and Control +1603.01799 Probability +1603.01800 Strongly Correlated Electrons +1603.01806 History and Philosophy of Physics +1603.01807 Discrete Mathematics +1603.01808 Soft Condensed Matter +1603.01813 Algebraic Geometry +1603.01815 +1603.01817 Information Theory +1603.01820 Databases +1603.01823 Combinatorics +1603.01824 Sound +1603.01828 Number Theory +1603.01832 Classical Analysis and ODEs +1603.01833 Computation and Language +1603.01836 Functional Analysis +1603.01838 Theory +1603.01839 Optimization and Control +1603.01840 Artificial Intelligence +1603.01841 Commutative Algebra +1603.01842 Computer Vision and Pattern Recognition +1603.01843 Instrumentation and Detectors +1603.01845 Systems and Control +1603.01849 Probability +1603.01850 Commutative Algebra +1603.01859 Combinatorics +1603.01863 Sound +1603.01868 Functional Analysis +1603.01870 Learning +1603.01873 Metric Geometry +1603.01882 Machine Learning +1603.01884 Operator Algebras +1603.01885 Probability +1603.01886 Probability +1603.01890 +1603.01891 Classical Analysis and ODEs +1603.01897 Methodology +1603.01899 +1603.01900 Logic +1603.01904 Dynamical Systems +1603.01907 Classical Analysis and ODEs +1603.01909 Classical Physics +1603.01919 Phenomenology +1603.01921 Information Theory +1603.01924 +1603.01928 Optics +1603.01929 Social and Information Networks +1603.01931 Robotics +1603.01932 Robotics +1603.01938 Astrophysics of Galaxies +1603.01939 Quantitative Methods +1603.01940 Optics +1603.01943 Information Theory +1603.01944 Analysis of PDEs +1603.01945 Probability +1603.01947 Analysis of PDEs +1603.01949 Number Theory +1603.01950 High Energy Astrophysical Phenomena +1603.01954 Emerging Technologies +1603.01956 Metric Geometry +1603.01961 Cosmology and Nongalactic Astrophysics +1603.01963 +1603.01965 Robotics +1603.01972 Optics +1603.01973 Social and Information Networks +1603.01975 Differential Geometry +1603.01976 Computer Vision and Pattern Recognition +1603.01982 Cell Behavior +1603.01985 Applications +1603.01987 Information Retrieval +1603.01993 Astrophysics of Galaxies +1603.01996 Quantum Gases +1603.01999 Networking and Internet Architecture +1603.02003 Computer Vision and Pattern Recognition +1603.02006 Symplectic Geometry +1603.02008 Computational Geometry +1603.02009 Functional Analysis +1603.02010 Learning +1603.02015 Soft Condensed Matter +1603.02018 Information Theory +1603.02019 Physics and Society +1603.02020 Numerical Analysis +1603.02021 Genomics +1603.02024 Logic +1603.02025 Combinatorics +1603.02028 Computer Vision and Pattern Recognition +1603.02030 Soft Condensed Matter +1603.02031 Cryptography and Security +1603.02038 Robotics +1603.02039 Strongly Correlated Electrons +1603.02041 Artificial Intelligence +1603.02042 Astrophysics of Galaxies +1603.02043 Strongly Correlated Electrons +1603.02048 General Physics +1603.02055 Superconductivity +1603.02056 Databases +1603.02057 Probability +1603.02059 Classical Analysis and ODEs +1603.02060 Classical Analysis and ODEs +1603.02062 Other Quantitative Biology +1603.02064 Classical Analysis and ODEs +1603.02065 Classical Analysis and ODEs +1603.02067 Numerical Analysis +1603.02068 General Physics +1603.02069 General Physics +1603.02070 Classical Analysis and ODEs +1603.02072 Classical Analysis and ODEs +1603.02077 +1603.02080 Computational Geometry +1603.02081 Soft Condensed Matter +1603.02086 Classical Analysis and ODEs +1603.02088 Analysis of PDEs +1603.02091 Group Theory +1603.02092 Algebraic Geometry +1603.02093 Commutative Algebra +1603.02094 Networking and Internet Architecture +1603.02097 Analysis of PDEs +1603.02100 Logic +1603.02104 Algebraic Geometry +1603.02107 Logic +1603.02114 Algebraic Geometry +1603.02118 Algebraic Geometry +1603.02121 Functional Analysis +1603.02128 Complex Variables +1603.02129 Differential Geometry +1603.02132 Materials Science +1603.02133 Logic in Computer Science +1603.02138 Analysis of PDEs +1603.02139 Computer Vision and Pattern Recognition +1603.02142 Fluid Dynamics +1603.02144 High Energy Astrophysical Phenomena +1603.02148 Logic in Computer Science +1603.02149 Astrophysics of Galaxies +1603.02150 Algebraic Geometry +1603.02152 Geometric Topology +1603.02153 Strongly Correlated Electrons +1603.02155 Plasma Physics +1603.02161 Mesoscale and Nanoscale Physics +1603.02163 Soft Condensed Matter +1603.02166 Soft Condensed Matter +1603.02167 +1603.02172 Soft Condensed Matter +1603.02173 Commutative Algebra +1603.02175 Social and Information Networks +1603.02176 Soft Condensed Matter +1603.02179 Logic +1603.02180 Soft Condensed Matter +1603.02183 Soft Condensed Matter +1603.02185 Learning +1603.02186 Soft Condensed Matter +1603.02188 Distributed, Parallel, and Cluster Computing +1603.02193 Differential Geometry +1603.02195 +1603.02198 High Energy Astrophysical Phenomena +1603.02201 Differential Geometry +1603.02204 Rings and Algebras +1603.02205 +1603.02209 +1603.02211 Computer Vision and Pattern Recognition +1603.02217 Probability +1603.02221 Probability +1603.02223 Probability +1603.02225 Algebraic Geometry +1603.02226 Distributed, Parallel, and Cluster Computing +1603.02227 Algebraic Geometry +1603.02229 Geometric Topology +1603.02230 Phenomenology +1603.02231 Physics and Society +1603.02232 Combinatorics +1603.02234 Chaotic Dynamics +1603.02235 Probability +1603.02244 Dynamical Systems +1603.02245 Statistics Theory +1603.02250 Learning +1603.02252 Computer Vision and Pattern Recognition +1603.02253 Computer Vision and Pattern Recognition +1603.02255 Mesoscale and Nanoscale Physics +cond-mat/0703734 Other Condensed Matter +cs/0003078 Data Structures and Algorithms +gr-qc/0401117 +hep-th/0003140 Theory +math/0309469 Representation Theory +math/0410302 Representation Theory +math/0701681 Analysis of PDEs +math/0702015 Analysis of PDEs +0710.4155 Combinatorics +1103.2312 Logic +1105.0487 +1202.4679 Atmospheric and Oceanic Physics +1205.6684 Materials Science +1207.6068 +1210.6527 Algebraic Geometry +1210.7001 Phenomenology +1212.0884 Data Structures and Algorithms +1212.5708 Differential Geometry +1303.2981 Computational Complexity +1305.7078 Astrophysics of Galaxies +1306.2371 Phenomenology +1308.0810 Statistics Theory +1308.3353 Complex Variables +1311.1393 Numerical Analysis +1312.3804 Commutative Algebra +1402.2402 Probability +1403.1981 Analysis of PDEs +1403.5655 +1404.0748 Probability +1404.4335 Group Theory +1405.1143 Information Theory +1405.2153 Classical Analysis and ODEs +1405.2433 Differential Geometry +1405.5752 Atmospheric and Oceanic Physics +1406.0046 Analysis of PDEs +1406.0410 Quantum Algebra +1406.4901 Statistics Theory +1406.6033 Geometric Topology +1406.6411 Logic +1406.7130 Machine Learning +1407.4942 Complex Variables +1407.7216 Data Structures and Algorithms +1408.1437 Systems and Control +1408.6644 Mesoscale and Nanoscale Physics +1409.4510 Combinatorics +1410.2190 Combinatorics +1410.3928 +1411.0665 Phenomenology +1412.1272 Biological Physics +1412.2216 General Topology +1412.3349 Probability +1412.3772 Theory +1412.7766 Probability +1412.8582 Group Theory +1412.8749 Astrophysics of Galaxies +1501.04307 Symplectic Geometry +1501.05874 Probability +1501.06669 Algebraic Geometry +1502.01375 Physics and Society +1502.06053 Atomic Physics +1503.02836 Analysis of PDEs +1503.04461 Analysis of PDEs +1503.08015 Mesoscale and Nanoscale Physics +1503.08993 Geometric Topology +1504.06415 +1505.04693 Data Structures and Algorithms +1505.05411 Numerical Analysis +1505.06839 Classical Analysis and ODEs +1506.01279 +1506.02603 Phenomenology +1506.02909 Mesoscale and Nanoscale Physics +1506.07464 Methodology +1506.08969 Group Theory +1507.00285 Algebraic Geometry +1507.00504 Learning +1507.01306 Numerical Analysis +1507.02882 Mesoscale and Nanoscale Physics +1507.04487 Quantitative Methods +1507.05263 Information Theory +1507.05266 Information Theory +1507.06318 Theory +1507.06811 +1507.07895 Analysis of PDEs +1507.08923 Data Structures and Algorithms +1508.00534 +1508.00873 Strongly Correlated Electrons +1508.01464 Information Theory +1508.03435 Materials Science +1508.03925 +1508.04032 Artificial Intelligence +1508.07965 Probability +1509.00382 Differential Geometry +1509.04097 Mesoscale and Nanoscale Physics +1509.04409 +1509.06967 +1509.07096 Numerical Analysis +1509.07980 Logic +1509.08733 Mesoscale and Nanoscale Physics +1510.00352 Mathematical Finance +1510.00522 +1510.01384 Instrumentation and Detectors +1510.03758 Analysis of PDEs +1510.04470 K-Theory and Homology +1510.06809 Economics +1510.07254 Data Structures and Algorithms +1511.00925 Computer Science and Game Theory +1511.03592 Data Structures and Algorithms +1511.03649 Lattice +1511.04191 Information Theory +1511.05315 Strongly Correlated Electrons +1511.06526 +1511.07197 Quantum Gases +1511.07901 +1511.08196 Mesoscale and Nanoscale Physics +1511.08460 +1511.09355 +1511.09390 Solar and Stellar Astrophysics +1512.00384 Statistics Theory +1512.02038 Numerical Analysis +1512.05674 Analysis of PDEs +1512.05801 Statistical Mechanics +1512.07495 Mesoscale and Nanoscale Physics +1512.07781 Statistical Mechanics +1601.00140 Mesoscale and Nanoscale Physics +1601.00681 Emerging Technologies +1601.01146 Probability +1601.02967 Geophysics +1601.04714 Astrophysics of Galaxies +1601.04918 Mesoscale and Nanoscale Physics +1601.06396 Information Theory +1601.06443 Theory +1601.07305 Statistical Mechanics +1601.07438 Differential Geometry +1601.07453 Experiment +1601.07558 Theory +1602.01120 Machine Learning +1602.01456 +1602.05061 Materials Science +1602.05997 +1602.07229 Disordered Systems and Neural Networks +1602.08341 +1602.08371 Data Structures and Algorithms +1603.00386 Molecular Networks +1603.02120 Numerical Analysis +1603.02334 Superconductivity +1603.02543 Theory +1603.04068 Databases +1603.04090 Strongly Correlated Electrons +1603.04118 Machine Learning +1603.05456 Differential Geometry +1603.08272 Astrophysics of Galaxies +1603.08413 Rings and Algebras +1603.08455 Differential Geometry +1603.08557 Chemical Physics +1604.00721 Strongly Correlated Electrons +1604.02502 Combinatorics +1604.03630 Strongly Correlated Electrons +1604.04175 +1604.05373 Theory +1604.05814 Data Structures and Algorithms +1604.06134 High Energy Astrophysical Phenomena +1604.06274 Computation and Language +1604.06338 Neural and Evolutionary Computing +1604.06758 High Energy Astrophysical Phenomena +1604.07722 Optics +1604.08242 Computation and Language +1604.08750 Instrumentation and Detectors +1605.00444 Statistical Mechanics +1605.01280 Algebraic Geometry +1605.01510 Computer Science and Game Theory +1605.02276 Computation and Language +1605.02797 Phenomenology +1605.03398 Chemical Physics +1605.03665 Astrophysics of Galaxies +1605.04091 Fluid Dynamics +1605.04214 High Energy Astrophysical Phenomena +1605.04656 Materials Science +1605.04874 Learning +1605.05777 Discrete Mathematics +1605.06590 Operator Algebras +1605.07783 Mesoscale and Nanoscale Physics +1605.08726 Populations and Evolution +1605.08817 Robotics +1606.00665 History and Philosophy of Physics +1606.01676 Instrumentation and Methods for Astrophysics +1606.02110 Dynamical Systems +1606.02195 Functional Analysis +1606.02303 Phenomenology +1606.02865 Superconductivity +1606.02910 Theory +1606.03649 Dynamical Systems +1606.04048 Algebraic Geometry +1606.04086 Applications +1606.04173 Soft Condensed Matter +1606.04408 Phenomenology +1606.04417 Statistics Theory +1606.04434 Distributed, Parallel, and Cluster Computing +1606.05407 Methodology +1606.05409 Computation and Language +1606.05490 Logic in Computer Science +1606.05500 Functional Analysis +1606.05611 Computation and Language +1606.05762 K-Theory and Homology +1606.06061 Sound +1606.06183 Distributed, Parallel, and Cluster Computing +1606.06329 Computer Vision and Pattern Recognition +1606.06516 Materials Science +1606.06708 Dynamical Systems +1606.06730 Data Structures and Algorithms +1606.06731 Instrumentation and Detectors +1606.06736 High Energy Astrophysical Phenomena +1606.06741 Astrophysics of Galaxies +1606.06745 Functional Analysis +1606.06752 Algebraic Geometry +1606.06753 Mesoscale and Nanoscale Physics +1606.06755 Differential Geometry +1606.06761 Materials Science +1606.06763 Statistics Theory +1606.06764 Dynamical Systems +1606.06765 Combinatorics +1606.06768 Astrophysics of Galaxies +1606.06769 Physics and Society +1606.06770 +1606.06772 Statistics Theory +1606.06774 Phenomenology +1606.06777 Category Theory +1606.06782 Combinatorics +1606.06783 Dynamical Systems +1606.06784 Solar and Stellar Astrophysics +1606.06786 +1606.06787 Analysis of PDEs +1606.06791 High Energy Astrophysical Phenomena +1606.06796 +1606.06797 Artificial Intelligence +1606.06799 Logic in Computer Science +1606.06800 Emerging Technologies +1606.06801 Computational Complexity +1606.06802 Information Theory +1606.06803 Computational Complexity +1606.06809 Geometric Topology +1606.06810 Combinatorics +1606.06811 Computer Vision and Pattern Recognition +1606.06814 Strongly Correlated Electrons +1606.06816 Information Retrieval +1606.06817 Experiment +1606.06818 Neural and Evolutionary Computing +1606.06819 Combinatorics +1606.06822 Mesoscale and Nanoscale Physics +1606.06825 Analysis of PDEs +1606.06828 Methodology +1606.06840 Human-Computer Interaction +1606.06843 Mesoscale and Nanoscale Physics +1606.06844 Functional Analysis +1606.06845 Functional Analysis +1606.06846 Computer Science and Game Theory +1606.06851 Astrophysics of Galaxies +1606.06852 Materials Science +1606.06853 Numerical Analysis +1606.06854 Computer Vision and Pattern Recognition +1606.06857 Functional Analysis +1606.06860 Rings and Algebras +1606.06861 Phenomenology +1606.06872 Computational Complexity +1606.06874 Number Theory +1606.06876 Algebraic Geometry +1606.06877 Software Engineering +1606.06880 Complex Variables +1606.06881 Logic +1606.06883 Algebraic Geometry +1606.06886 Analysis of PDEs +1606.06888 Artificial Intelligence +1606.06889 Representation Theory +1606.06891 Probability +1606.06892 Superconductivity +1606.06896 Optics +1606.06897 Cryptography and Security +1606.06903 Statistics Theory +1606.06909 Cryptography and Security +1606.06911 Classical Analysis and ODEs +1606.06912 Methodology +1606.06913 Metric Geometry +1606.06915 Instrumentation and Methods for Astrophysics +1606.06916 Phenomenology +1606.06917 +1606.06924 Strongly Correlated Electrons +1606.06925 Networking and Internet Architecture +1606.06926 Data Structures and Algorithms +1606.06930 Combinatorics +1606.06933 Physics and Society +1606.06934 Probability +1606.06938 +1606.06939 Representation Theory +1606.06940 Computational Geometry +1606.06942 Combinatorics +1606.06943 Phenomenology +1606.06944 Materials Science +1606.06946 Classical Analysis and ODEs +1606.06947 Geometric Topology +1606.06948 General Finance +1606.06949 Optics +1606.06950 Computation and Language +1606.06953 Materials Science +1606.06956 Combinatorics +1606.06958 Combinatorics +1606.06961 Neural and Evolutionary Computing +1606.06962 Learning +1606.06964 General Physics +1606.06965 General Physics +1606.06966 General Physics +1606.06969 Numerical Analysis +1606.06970 History and Philosophy of Physics +1606.06972 Instrumentation and Methods for Astrophysics +1606.06975 Computational Engineering, Finance, and Science +1606.06976 Optics +1606.06979 Human-Computer Interaction +1606.06980 Materials Science +1606.06984 Number Theory +1606.06985 +1606.06987 Statistical Mechanics +1606.06988 Statistics Theory +1606.06989 Solar and Stellar Astrophysics +1606.06991 Information Retrieval +1606.06992 Information Theory +1606.06993 Methodology +1606.06995 Materials Science +1606.06996 Computation and Language +1606.07000 +1606.07003 Geometric Topology +1606.07010 Probability +1606.07012 Number Theory +1606.07014 Algebraic Geometry +1606.07018 Dynamical Systems +1606.07019 Complex Variables +1606.07022 Probability +1606.07023 History and Overview +1606.07025 Cryptography and Security +1606.07026 Astrophysics of Galaxies +1606.07029 Neurons and Cognition +1606.07031 Rings and Algebras +1606.07032 Algebraic Topology +1606.07034 Functional Analysis +1606.07036 Information Theory +1606.07037 Earth and Planetary Astrophysics +1606.07039 Cosmology and Nongalactic Astrophysics +1606.07040 Astrophysics of Galaxies +1606.07041 +1606.07042 Computer Science and Game Theory +1606.07043 Machine Learning +1606.07044 Medical Physics +1606.07045 +1606.07047 Logic in Computer Science +1606.07048 Dynamical Systems +1606.07050 Symplectic Geometry +1606.07052 Analysis of PDEs +1606.07055 Probability +1606.07056 Artificial Intelligence +1606.07057 Superconductivity +0910.4076 Probability +1001.4134 +1003.0937 Cosmology and Nongalactic Astrophysics +1008.2572 +1104.5039 Discrete Mathematics +1107.3432 Probability +1201.0136 General Physics +1203.4213 Probability +1207.4802 General Mathematics +1212.3202 Soft Condensed Matter +1302.3756 Number Theory +1302.6863 Data Structures and Algorithms +1303.1208 Machine Learning +1303.3235 Information Theory +1307.4215 Systems and Control +1307.7904 +1309.1574 Systems and Control +1309.3408 Logic +1310.6014 Differential Geometry +1310.8511 Information Theory +1311.3861 Functional Analysis +1311.6405 Classical Analysis and ODEs +1311.6836 Algebraic Topology +1312.0904 Differential Geometry +1312.0984 Networking and Internet Architecture +1312.4462 +1312.6586 Mesoscale and Nanoscale Physics +1312.6752 Number Theory +1312.7160 Theory +1401.0560 Theory +1401.1393 General Topology +1401.4264 Probability +1402.3435 Information Theory +1402.4265 +1403.0254 Earth and Planetary Astrophysics +1403.6615 Statistical Mechanics +1404.1827 Algebraic Geometry +1404.4415 Representation Theory +1404.5895 Probability +1405.1837 Information Retrieval +1405.2783 +1405.4406 Functional Analysis +1405.7207 Instrumentation and Methods for Astrophysics +1405.7724 Physics and Society +1405.7874 Combinatorics +1405.7946 Rings and Algebras +1406.3811 Optimization and Control +1406.4535 Analysis of PDEs +1406.6208 Probability +1406.7713 +1407.1632 Cosmology and Nongalactic Astrophysics +1407.2005 Theory +1407.3694 Probability +1407.4370 +1407.7421 Quantum Gases +1407.7542 Theory +1407.8073 Functional Analysis +1407.8131 Phenomenology +1408.3209 Strongly Correlated Electrons +1408.4128 Astrophysics of Galaxies +1409.0529 Materials Science +1409.2671 Numerical Analysis +1409.5087 Theory +1409.5353 Statistics Theory +1409.7602 Probability +1409.8417 Astrophysics of Galaxies +1410.0583 Optics +1410.2238 Astrophysics of Galaxies +1410.2373 Emerging Technologies +1410.2481 Phenomenology +1410.2626 Group Theory +1410.3454 High Energy Astrophysical Phenomena +1410.5309 Statistics Theory +1410.8026 Statistical Mechanics +1411.1291 Statistical Mechanics +1411.2306 K-Theory and Homology +1411.2995 +1411.3660 Cosmology and Nongalactic Astrophysics +1411.5516 Soft Condensed Matter +1411.7294 Functional Analysis +1411.7710 Theory +1411.7789 Solar and Stellar Astrophysics +1411.7899 Theory +1412.0606 Statistical Mechanics +1412.0656 Cosmology and Nongalactic Astrophysics +1412.0851 Numerical Analysis +1412.1039 Computational Geometry +1412.2682 Symplectic Geometry +1412.2764 Cosmology and Nongalactic Astrophysics +1412.2878 Solar and Stellar Astrophysics +1412.4270 Mesoscale and Nanoscale Physics +1412.4455 Symplectic Geometry +1412.5228 Cosmology and Nongalactic Astrophysics +1412.7339 +1412.8367 Phenomenology +1412.8694 +1501.00477 Statistical Mechanics +1501.01167 Neurons and Cognition +1501.02453 Theory +1501.02804 Theory +1501.02845 Solar and Stellar Astrophysics +1501.05221 Group Theory +1501.06583 Solar and Stellar Astrophysics +1501.07226 Phenomenology +1501.07488 Mesoscale and Nanoscale Physics +1502.00631 Solar and Stellar Astrophysics +1502.01001 Phenomenology +1502.01998 Number Theory +1502.02694 +1502.04903 Optics +1502.05581 Theory +1502.06639 +1502.06849 Mesoscale and Nanoscale Physics +1502.07105 +1502.07606 +1502.07673 +1503.00336 Logic in Computer Science +1503.00352 +1503.00420 Disordered Systems and Neural Networks +1503.00598 High Energy Astrophysical Phenomena +1503.00610 Experiment +1503.01157 Astrophysics of Galaxies +1503.01214 Cryptography and Security +1503.01378 Algebraic Geometry +1503.01587 Statistics Theory +1503.01644 Cosmology and Nongalactic Astrophysics +1503.01923 Optics +1503.02293 Solar and Stellar Astrophysics +1503.02640 +1503.02711 High Energy Astrophysical Phenomena +1503.03245 +1503.03566 +1503.03572 Combinatorics +1503.03623 High Energy Astrophysical Phenomena +1503.03708 Atomic Physics +1503.04031 Strongly Correlated Electrons +1503.04314 +1503.04571 Metric Geometry +1503.04788 Astrophysics of Galaxies +1503.04980 Instrumentation and Methods for Astrophysics +1503.05215 Applications +1503.05393 Functional Analysis +1503.05531 Category Theory +1503.05613 Experiment +1503.06090 Superconductivity +1503.06121 Astrophysics of Galaxies +1503.06302 Methodology +1503.06349 +1503.06502 Disordered Systems and Neural Networks +1503.06568 Differential Geometry +1503.06598 Information Retrieval +1503.06607 Functional Analysis +1503.06615 Soft Condensed Matter +1503.06769 Data Analysis, Statistics and Probability +1503.07448 Analysis of PDEs +1503.07458 +1503.07568 Networking and Internet Architecture +1503.07740 +1503.08225 Astrophysics of Galaxies +1503.09027 Instrumentation and Methods for Astrophysics +1504.00095 Optics +1504.00496 Solar and Stellar Astrophysics +1504.00705 Mesoscale and Nanoscale Physics +1504.00799 Mesoscale and Nanoscale Physics +1504.00815 Soft Condensed Matter +1504.00843 General Mathematics +1504.00849 Solar and Stellar Astrophysics +1504.01217 Soft Condensed Matter +1504.01923 Metric Geometry +1504.02030 +1504.02131 Phenomenology +1504.02178 Quantum Gases +1504.02192 +1504.02405 Astrophysics of Galaxies +1504.02497 Adaptation and Self-Organizing Systems +1504.02560 Quantum Gases +1504.02966 Statistical Mechanics +1504.03023 Atomic Physics +1504.03176 Phenomenology +1504.03202 Populations and Evolution +1504.03477 Software Engineering +1504.03586 Computer Science and Game Theory +1504.03753 High Energy Astrophysical Phenomena +1504.03877 Computers and Society +1504.04674 Solar and Stellar Astrophysics +1504.04982 Analysis of PDEs +1504.05156 Phenomenology +1504.05614 Instrumentation and Methods for Astrophysics +1504.05761 Mesoscale and Nanoscale Physics +1504.05831 Experiment +1504.05901 Numerical Analysis +1504.06098 Solar and Stellar Astrophysics +1504.06544 Data Structures and Algorithms +1504.07291 Analysis of PDEs +1504.07497 +1504.07838 Formal Languages and Automata Theory +1505.00066 Computer Vision and Pattern Recognition +1505.00170 Mesoscale and Nanoscale Physics +1505.00733 Differential Geometry +1505.00923 Disordered Systems and Neural Networks +1505.01137 Information Theory +1505.01182 +1505.01425 Solar and Stellar Astrophysics +1505.01645 Superconductivity +1505.01715 Phenomenology +1505.02068 Probability +1505.02081 Algebraic Geometry +1505.02113 Instrumentation and Methods for Astrophysics +1505.02120 Optimization and Control +1505.03150 Astrophysics of Galaxies +1505.03362 Experiment +1505.03687 Metric Geometry +1505.04442 General Topology +1505.04866 High Energy Astrophysical Phenomena +1505.04908 Combinatorics +1505.05493 Probability +1505.05519 General Mathematics +1505.05722 Solar and Stellar Astrophysics +1505.05807 +1505.06073 Probability +1505.06184 +1505.06581 Dynamical Systems +1505.06690 Optics +1505.07099 +1505.07136 Number Theory +1505.07328 Strongly Correlated Electrons +1505.07405 Strongly Correlated Electrons +1505.07467 High Energy Astrophysical Phenomena +1505.07493 Information Theory +1505.07568 Cosmology and Nongalactic Astrophysics +1505.07586 Astrophysics of Galaxies +1505.07700 Analysis of PDEs +1505.07892 Networking and Internet Architecture +1505.08079 Phenomenology +1505.08111 Commutative Algebra +1506.00067 Dynamical Systems +1506.00429 Applications +1506.00437 Algebraic Geometry +1506.00518 +1506.00640 Astrophysics of Galaxies +1506.01547 Astrophysics of Galaxies +1506.01668 Solar and Stellar Astrophysics +1506.01860 Astrophysics of Galaxies +1506.01867 Number Theory +1506.01971 Information Theory +1506.02016 Disordered Systems and Neural Networks +1506.02457 Geophysics +1506.02496 Atomic Physics +1506.02977 Mesoscale and Nanoscale Physics +1506.03513 +1506.03599 Neural and Evolutionary Computing +1506.03636 Atomic Physics +1506.03659 +1506.03988 +1506.04551 Dynamical Systems +1506.04590 Optics +1506.04706 Analysis of PDEs +1506.04761 Quantum Gases +1506.04941 Mesoscale and Nanoscale Physics +1506.05129 Astrophysics of Galaxies +1506.05808 High Energy Astrophysical Phenomena +1506.05825 Experiment +1506.05921 Materials Science +1506.06536 Lattice +1506.06741 Strongly Correlated Electrons +1506.07294 Atomic Physics +1506.07354 High Energy Astrophysical Phenomena +1506.07973 Materials Science +1506.08157 +1506.09156 Cosmology and Nongalactic Astrophysics +1507.00055 Solar and Stellar Astrophysics +1507.00103 +1507.00191 Probability +1507.00715 +1507.00966 Experiment +1507.01417 Experiment +1507.01463 Biological Physics +1507.02427 Atomic Physics +1507.02443 Quantum Gases +1507.02460 Mesoscale and Nanoscale Physics +1507.02503 Strongly Correlated Electrons +1507.02564 Probability +1507.02677 Mesoscale and Nanoscale Physics +1507.03407 Computer Science and Game Theory +1507.03744 +1507.03841 Mesoscale and Nanoscale Physics +1507.03846 +1507.03859 Experiment +1507.04005 High Energy Astrophysical Phenomena +1507.04137 Solar and Stellar Astrophysics +1507.04155 Learning +1507.04241 Geophysics +1507.04693 +1507.04848 General Finance +1507.04916 +1507.05419 Representation Theory +1507.05468 Earth and Planetary Astrophysics +1507.05516 Information Theory +1507.06786 Solar and Stellar Astrophysics +1507.06822 Materials Science +1507.07233 Analysis of PDEs +1507.07427 Quantum Gases +1507.07442 +1507.07466 Methodology +1507.07500 Dynamical Systems +1507.07573 Combinatorics +1507.07853 Superconductivity +1507.08114 Functional Analysis +1507.08544 Earth and Planetary Astrophysics +1507.08608 Mesoscale and Nanoscale Physics +1507.08671 High Energy Astrophysical Phenomena +1507.08740 High Energy Astrophysical Phenomena +1507.08786 Astrophysics of Galaxies +1507.08917 Information Theory +1507.08935 Phenomenology +1508.00508 Strongly Correlated Electrons +1508.00925 Strongly Correlated Electrons +1508.00950 Solar and Stellar Astrophysics +1508.01792 Algebraic Geometry +1508.01800 Astrophysics of Galaxies +1508.02207 Strongly Correlated Electrons +1508.02861 Astrophysics of Galaxies +1508.03345 Instrumentation and Methods for Astrophysics +1508.03487 Solar and Stellar Astrophysics +1508.03539 Phenomenology +1508.03810 Discrete Mathematics +1508.03901 Programming Languages +1508.03968 Instrumentation and Methods for Astrophysics +1508.04121 Astrophysics of Galaxies +1508.04304 Phenomenology +1508.04399 Strongly Correlated Electrons +1508.04565 Astrophysics of Galaxies +1508.04845 Astrophysics of Galaxies +1508.04896 Strongly Correlated Electrons +1508.05182 Number Theory +1508.05207 Earth and Planetary Astrophysics +1508.05222 Astrophysics of Galaxies +1508.05737 Computational Complexity +1508.05759 Instrumentation and Detectors +1508.06284 Astrophysics of Galaxies +1508.06572 Theory +1508.06986 +1508.07301 Materials Science +1508.07895 Classical Analysis and ODEs +1509.00215 Representation Theory +1509.01595 Combinatorics +1509.01921 Strongly Correlated Electrons +1509.03017 Logic in Computer Science +1509.03020 Logic in Computer Science +1509.03620 Optics +1509.04911 Statistical Mechanics +1509.05652 Experiment +1509.05869 Optics +1509.07163 +1509.08299 Information Theory +1510.01088 Systems and Control +1510.03898 +1510.06271 Phenomenology +1510.09022 Materials Science +1511.01080 Programming Languages +1511.02604 Dynamical Systems +1511.02615 Logic in Computer Science +1511.03889 Theory +1511.03933 +1511.04380 +1511.04593 Classical Physics +1511.04601 Computer Vision and Pattern Recognition +1511.04868 Learning +1511.06354 Solar and Stellar Astrophysics +1511.06785 Algebraic Topology +1511.07159 Phenomenology +1511.08733 Quantum Gases +1512.01551 Phenomenology +1512.02289 Rings and Algebras +1512.03884 Superconductivity +1512.04542 Disordered Systems and Neural Networks +1512.04600 +1512.06033 Combinatorics +1512.07027 Statistical Mechanics +1512.07730 Information Theory +1512.07962 Machine Learning +1512.08707 +1601.00666 Quantum Gases +1601.03795 Number Theory +1601.03858 Probability +1601.03892 Data Structures and Algorithms +1601.03989 Phenomenology +1601.05951 Optics +1601.06068 Computation and Language +1601.06174 Instrumentation and Methods for Astrophysics +1601.06995 Pricing of Securities +1601.07209 +1601.07946 Quantum Gases +1602.04221 Theory +1602.05257 Learning +1602.06342 Numerical Analysis +1602.07028 Representation Theory +1602.07216 Analysis of PDEs +1602.07937 Fluid Dynamics +1602.08591 Networking and Internet Architecture +1603.00435 Quantum Algebra +1603.03104 Superconductivity +1603.03319 Phenomenology +1603.03640 Methodology +1603.04158 Phenomenology +1603.04178 Optimization and Control +1603.05118 Computation and Language +1603.05259 High Energy Astrophysical Phenomena +1603.06153 Analysis of PDEs +1603.09127 General Topology +1603.09185 Formal Languages and Automata Theory +1603.09597 Programming Languages +1603.09706 Methodology +1604.00189 +1604.00195 Differential Geometry +1604.00907 Analysis of PDEs +1604.01195 Differential Geometry +1604.01310 Mesoscale and Nanoscale Physics +1604.02151 High Energy Astrophysical Phenomena +1604.02302 Statistics Theory +1604.04164 Logic in Computer Science +1604.04610 Strongly Correlated Electrons +1604.04632 Astrophysics of Galaxies +1604.05701 Cosmology and Nongalactic Astrophysics +1604.06125 Theory +1604.06324 Strongly Correlated Electrons +1604.07795 Cosmology and Nongalactic Astrophysics +1604.08514 +1604.08848 Graphics +1604.08929 Commutative Algebra +1605.00521 Pattern Formation and Solitons +1605.00618 Networking and Internet Architecture +1605.01050 +1605.02617 Strongly Correlated Electrons +1605.02620 Statistical Mechanics +1605.02630 Numerical Analysis +1605.04613 Materials Science +1605.04776 Phenomenology +1605.05098 Phenomenology +1605.05643 Statistical Mechanics +1605.06335 Superconductivity +1605.06495 +1605.06836 Probability +1605.07781 High Energy Astrophysical Phenomena +1605.08220 Phenomenology +1605.09401 Phenomenology +1605.09634 Representation Theory +1605.09792 Astrophysics of Galaxies +1606.00202 Networking and Internet Architecture +1606.00340 Representation Theory +1606.00586 Fluid Dynamics +1606.00693 Theory +1606.01771 Algebraic Geometry +1606.02296 Astrophysics of Galaxies +1606.04628 Complex Variables +1606.04845 Mesoscale and Nanoscale Physics +1606.05383 Accelerator Physics +1606.06830 Astrophysics of Galaxies +1606.07272 Representation Theory +1606.08557 Information Theory +1606.08696 Space Physics +1607.00218 Quantum Gases +1607.00788 Space Physics +1607.00796 Space Physics +1607.01168 Space Physics +1607.01508 Analysis of PDEs +1607.01727 Spectral Theory +1607.02069 Differential Geometry +1607.02518 Combinatorics +1607.02554 Metric Geometry +1607.02844 Algebraic Geometry +1607.02848 Analysis of PDEs +1607.03151 Cosmology and Nongalactic Astrophysics +1607.03216 +1607.03296 Information Retrieval +1607.04511 Space Physics +1607.05566 Phenomenology +1607.05911 Mesoscale and Nanoscale Physics +1607.06114 History and Philosophy of Physics +1607.06686 Earth and Planetary Astrophysics +1607.06742 Chemical Physics +1607.07276 Dynamical Systems +1607.07423 Learning +1607.07745 Artificial Intelligence +1608.00070 Optimization and Control +1608.00073 Solar and Stellar Astrophysics +1608.00157 Number Theory +1608.00341 Plasma Physics +1608.00386 Instrumentation and Methods for Astrophysics +1608.00390 Instrumentation and Methods for Astrophysics +1608.00391 Instrumentation and Methods for Astrophysics +1608.00395 Instrumentation and Methods for Astrophysics +1608.00756 Trading and Market Microstructure +1608.00966 Astrophysics of Galaxies +1608.01338 Artificial Intelligence +1608.01364 Statistics Theory +1608.01414 Combinatorics +1608.01472 +1608.01543 General Physics +1608.01552 Computers and Society +1608.01661 Experiment +1608.01668 Artificial Intelligence +1608.01670 Data Structures and Algorithms +1608.01674 Astrophysics of Galaxies +1608.01685 Algebraic Topology +1608.01686 Computer Vision and Pattern Recognition +1608.01692 Statistical Mechanics +1608.01696 Instrumentation and Methods for Astrophysics +1608.01697 Social and Information Networks +1608.01699 Operator Algebras +1608.01701 Algebraic Topology +1608.01703 Algebraic Geometry +1608.01704 Instrumentation and Methods for Astrophysics +1608.01705 Fluid Dynamics +1608.01707 Chemical Physics +1608.01709 Social and Information Networks +1608.01711 Algebraic Geometry +1608.01712 Formal Languages and Automata Theory +1608.01713 Optimization and Control +1608.01714 Number Theory +1608.01716 Data Structures and Algorithms +1608.01718 General Mathematics +1608.01721 Data Structures and Algorithms +1608.01723 Programming Languages +1608.01724 +1608.01725 Networking and Internet Architecture +1608.01728 Optimization and Control +1608.01731 Popular Physics +1608.01732 Information Theory +1608.01734 Computation +1608.01736 Methodology +1608.01739 Methodology +1608.01741 Numerical Analysis +1608.01743 Representation Theory +1608.01746 Phenomenology +1608.01747 Learning +1608.01749 Astrophysics of Galaxies +1608.01750 Chaotic Dynamics +1608.01752 Phenomenology +1608.01755 Logic in Computer Science +1608.01756 Information Theory +1608.01757 Fluid Dynamics +1608.01760 Social and Information Networks +1608.01762 Materials Science +1608.01765 Number Theory +1608.01766 Physics and Society +1608.01767 Dynamical Systems +1608.01770 K-Theory and Homology +1608.01771 Social and Information Networks +1608.01773 Complex Variables +1608.01774 Superconductivity +1608.01775 Representation Theory +1608.01776 Astrophysics of Galaxies +1608.01779 Strongly Correlated Electrons +1608.01781 +1608.01783 Neural and Evolutionary Computing +1608.01784 Number Theory +1608.01787 Statistics Theory +1608.01788 Geophysics +1608.01790 Information Theory +1608.01793 Computer Vision and Pattern Recognition +1608.01796 Theory +1608.01797 Analysis of PDEs +1608.01798 Theory +1608.01799 +1608.01800 Phenomenology +1608.01801 Statistics Theory +1608.01805 Probability +1608.01807 Computer Vision and Pattern Recognition +1608.01810 Exactly Solvable and Integrable Systems +1608.01815 Disordered Systems and Neural Networks +1608.01816 Instrumentation and Methods for Astrophysics +1608.01818 Neural and Evolutionary Computing +1608.01819 Cosmology and Nongalactic Astrophysics +1608.01821 +1608.01822 Pattern Formation and Solitons +1608.01824 Statistics Theory +1608.01825 Medical Physics +1608.01826 Analysis of PDEs +1608.01827 Computer Science and Game Theory +1608.01828 Information Theory +1608.01830 Atomic Physics +1608.01834 Phenomenology +1608.01836 Analysis of PDEs +1608.01839 Instrumentation and Methods for Astrophysics +1608.01841 Instrumentation and Detectors +1608.01842 Physics and Society +1608.01845 Group Theory +1608.01851 Probability +1608.01852 Algebraic Geometry +1608.01853 Dynamical Systems +1608.01856 Artificial Intelligence +1608.01858 Probability +1608.01859 Information Theory +1608.01863 Numerical Analysis +1608.01864 Analysis of PDEs +1608.01865 Representation Theory +1608.01866 Computer Vision and Pattern Recognition +1608.01869 Functional Analysis +1608.01870 Computers and Society +1608.01871 Mesoscale and Nanoscale Physics +1608.01873 Combinatorics +1608.01874 Learning +1608.01875 Computer Science and Game Theory +1608.01878 Exactly Solvable and Integrable Systems +1608.01879 Optimization and Control +1608.01881 Experiment +1608.01887 Classical Physics +1608.01894 Statistics Theory +1608.01895 Statistics Theory +1608.01896 Computer Vision and Pattern Recognition +1608.01897 General Physics +1608.01898 Dynamical Systems +1608.01899 History and Overview +1608.01903 Statistics Theory +1608.01905 Analysis of PDEs +1608.01906 Fluid Dynamics +1608.01909 Cryptography and Security +1608.01910 Computation and Language +1608.01915 Functional Analysis +1608.01920 +1608.01921 Computational Geometry +1608.01925 Spectral Theory +1608.01926 Mesoscale and Nanoscale Physics +1608.01927 Superconductivity +1608.01928 Phenomenology +1608.01930 High Energy Astrophysical Phenomena +1608.01931 Strongly Correlated Electrons +1608.01932 Computational Complexity +1608.01933 Graphics +1608.01935 Astrophysics of Galaxies +1608.01936 Tissues and Organs +1608.01939 Computers and Society +1608.01942 Optics +1608.01946 Artificial Intelligence +1608.01947 Multimedia +1608.01953 Sound +1608.01954 Combinatorics +1608.01955 Differential Geometry +1608.01958 Numerical Analysis +1608.01959 Classical Analysis and ODEs +1608.01961 Computation and Language +1608.01962 Functional Analysis +1608.01968 +1608.01969 Number Theory +1608.01970 Cosmology and Nongalactic Astrophysics +1608.01971 Discrete Mathematics +1608.01972 Computation and Language +1608.01973 Combinatorics +1608.01976 Machine Learning +1608.01978 +1608.01986 +1608.01987 Computers and Society +1608.01989 Popular Physics +cond-mat/9502071 +math/0310266 Geometric Topology +quant-ph/0501012 +quant-ph/0507144 +quant-ph/0605157 +quant-ph/0612024 +0804.2268 +1111.2321 Number Theory +1203.4281 Atomic Physics +1212.3715 Geometric Topology +1303.3831 Materials Science +1305.2143 Number Theory +1306.2060 History and Overview +1307.1930 Analysis of PDEs +1307.2841 Dynamical Systems +1307.3656 Probability +1308.1263 Statistics Theory +1310.6219 Number Theory +1401.3193 Differential Geometry +1401.4148 Dynamical Systems +1401.5400 Combinatorics +1401.6169 Learning +1403.0170 Theory +1403.5181 Algebraic Geometry +1406.5061 Rings and Algebras +1410.2280 Group Theory +1411.1302 +1501.02113 Computer Vision and Pattern Recognition +1501.05745 Algebraic Geometry +1501.06389 Representation Theory +1501.06635 Probability +1502.04093 Materials Science +1502.06930 Methodology +1503.00751 Classical Analysis and ODEs +1503.00805 Data Structures and Algorithms +1503.01673 Machine Learning +1504.01148 Commutative Algebra +1504.07330 Number Theory +1504.07362 Algebraic Topology +1505.04585 Computer Vision and Pattern Recognition +1505.05002 Probability +1505.07079 Graphics +1505.07369 Methodology +1506.01443 Experiment +1506.04928 Applications +1506.05290 Materials Science +1506.05410 Physics and Society +1507.01041 Complex Variables +1507.01122 Artificial Intelligence +1507.03210 +1507.04259 Pattern Formation and Solitons +1507.04304 Combinatorics +1507.06112 Algebraic Topology +1507.06541 Discrete Mathematics +1508.00011 Phenomenology +1508.00466 +1508.03941 Strongly Correlated Electrons +1509.02233 Geometric Topology +1509.02737 Chaotic Dynamics +1509.03983 Combinatorics +1509.08327 Machine Learning +1509.08519 Information Theory +1510.01607 Combinatorics +1510.01978 Mesoscale and Nanoscale Physics +1510.02665 +1510.05068 Strongly Correlated Electrons +1510.05807 Optics +1510.05843 Dynamical Systems +1510.06301 Statistics Theory +1510.06322 Methodology +1510.06344 Optics +1510.07919 Combinatorics +1510.08642 Numerical Analysis +1510.08729 Molecular Networks +1511.00031 Phenomenology +1511.01318 Cosmology and Nongalactic Astrophysics +1511.01660 Theory +1511.04225 Strongly Correlated Electrons +1511.05382 Strongly Correlated Electrons +1511.06100 Operator Algebras +1511.08902 Differential Geometry +1511.09326 +1512.00646 Analysis of PDEs +1512.01238 Theory +1512.03753 Mesoscale and Nanoscale Physics +1512.05974 Data Structures and Algorithms +1512.06270 Strongly Correlated Electrons +1512.06696 Phenomenology +1512.06774 Cosmology and Nongalactic Astrophysics +1512.08300 Exactly Solvable and Integrable Systems +1512.08422 Computation and Language +1512.08527 Differential Geometry +1601.00273 +1601.00284 +1601.00588 +1601.00720 Neurons and Cognition +1601.02041 Mesoscale and Nanoscale Physics +1601.02064 Mesoscale and Nanoscale Physics +1601.03357 Exactly Solvable and Integrable Systems +1601.05068 Information Theory +1601.05319 Strongly Correlated Electrons +1601.06840 Atomic Physics +1601.07182 Instrumentation and Methods for Astrophysics +1601.07195 +1601.07611 Strongly Correlated Electrons +1602.00408 +1602.00651 Symbolic Computation +1602.00803 Statistical Mechanics +1602.01255 Computer Vision and Pattern Recognition +1602.01273 Phenomenology +1602.01547 Networking and Internet Architecture +1602.01907 +1602.02438 Strongly Correlated Electrons +1602.02547 Strongly Correlated Electrons +1602.04204 Phenomenology +1602.05751 Human-Computer Interaction +1602.05855 Statistical Mechanics +1602.06820 Information Theory +1602.07003 Theory +1602.07269 Theory +1602.07729 Discrete Mathematics +1603.00898 Discrete Mathematics +1603.04124 Theory +1603.04419 Machine Learning +1603.04568 Phenomenology +1603.09628 Experiment +1604.00839 Theory +1604.01250 Machine Learning +1604.02910 Neural and Evolutionary Computing +1604.03292 Information Theory +1604.03583 Databases +1604.04194 Algebraic Geometry +1604.04821 Astrophysics of Galaxies +1604.05881 Earth and Planetary Astrophysics +1604.08059 Symbolic Computation +1604.08357 Networking and Internet Architecture +1604.08940 Number Theory +1605.00798 Statistical Mechanics +1605.01032 Computers and Society +1605.01449 Fluid Dynamics +1605.01716 Probability +1605.01840 Instrumentation and Methods for Astrophysics +1605.01937 Phenomenology +1605.02062 Cryptography and Security +1605.02209 Methodology +1605.02772 Data Structures and Algorithms +1605.02937 Solar and Stellar Astrophysics +1605.02971 Computer Vision and Pattern Recognition +1605.03284 Computation and Language +1605.03390 Data Structures and Algorithms +1605.03496 Instrumentation and Methods for Astrophysics +1605.03519 +1605.03540 High Energy Astrophysical Phenomena +1605.03650 Functional Analysis +1605.03692 Data Structures and Algorithms +1605.03924 Computation and Language +1605.03957 Instrumentation and Detectors +1605.03958 Quantum Gases +1605.03959 Theory +1605.03967 Astrophysics of Galaxies +1605.03969 Strongly Correlated Electrons +1605.03970 Cosmology and Nongalactic Astrophysics +1605.03975 Optimization and Control +1605.03976 Classical Analysis and ODEs +1605.03977 Instrumentation and Detectors +1605.03995 Quantum Algebra +1605.03996 Mesoscale and Nanoscale Physics +1605.03997 Theory +1605.04000 Combinatorics +1605.04001 Differential Geometry +1605.04002 Computation and Language +1605.04008 Optimization and Control +1605.04011 Probability +1605.04012 Probability +1605.04014 Classical Analysis and ODEs +1605.04017 Probability +1605.04018 Combinatorics +1605.04020 Complex Variables +1605.04021 Networking and Internet Architecture +1605.04026 Computer Science and Game Theory +1605.04031 Data Structures and Algorithms +1605.04034 Learning +1605.04035 Databases +1605.04038 Strongly Correlated Electrons +1605.04041 Biological Physics +1605.04042 Information Theory +1605.04046 Computer Vision and Pattern Recognition +1605.04051 Materials Science +1605.04055 Methodology +1605.04059 Statistics Theory +1605.04061 Dynamical Systems +1605.04062 Materials Science +1605.04063 Information Theory +1605.04064 Probability +1605.04068 Computer Vision and Pattern Recognition +1605.04069 Distributed, Parallel, and Cluster Computing +1605.04070 Computers and Society +1605.04072 Computation and Language +1605.04073 +1605.04074 Machine Learning +1605.04077 +1605.04079 Optimization and Control +1605.04080 +1605.04081 Number Theory +1605.04085 Numerical Analysis +1605.04087 General Topology +1605.04088 Materials Science +1605.04093 Geometric Topology +1605.04094 Dynamical Systems +1605.04096 +1605.04097 Functional Analysis +1605.04098 Data Structures and Algorithms +1605.04099 Exactly Solvable and Integrable Systems +1605.04100 Functional Analysis +1605.04103 Numerical Analysis +1605.04104 Strongly Correlated Electrons +1605.04105 Mesoscale and Nanoscale Physics +1605.04106 Complex Variables +1605.04108 Phenomenology +1605.04111 Distributed, Parallel, and Cluster Computing +1605.04114 Mesoscale and Nanoscale Physics +1605.04115 Operator Algebras +1605.04116 Mesoscale and Nanoscale Physics +1605.04118 Logic +1605.04122 Computation and Language +1605.04124 Geometric Topology +1605.04125 Representation Theory +1605.04126 +1605.04127 Functional Analysis +1605.04128 Information Theory +1605.04129 Computer Vision and Pattern Recognition +1605.04134 Numerical Analysis +1605.04137 Analysis of PDEs +1605.04140 Statistical Mechanics +1605.04144 Networking and Internet Architecture +1605.04146 History and Overview +1605.04148 Probability +1605.04150 Analysis of PDEs +1605.04153 Disordered Systems and Neural Networks +1605.04154 +1605.04156 Computational Geometry +1605.04160 Data Structures and Algorithms +1605.04163 Differential Geometry +1605.04166 Other Quantitative Biology +1605.04167 General Physics +1605.04168 Cosmology and Nongalactic Astrophysics +1605.04169 Optics +1605.04173 Theory +1605.04174 +1605.04177 Robotics +1605.04178 Analysis of PDEs +1605.04179 Superconductivity +1605.04186 Analysis of PDEs +1605.04188 +1605.04189 +1605.04190 Differential Geometry +1605.04192 Information Theory +1605.04196 History and Philosophy of Physics +1605.04197 General Physics +1605.04198 Dynamical Systems +1605.04201 Information Theory +1605.04203 Algebraic Geometry +1605.04205 Representation Theory +1605.04207 Computational Complexity +1605.04209 Functional Analysis +1605.04212 Methodology +1605.04213 Materials Science +1605.04215 +1605.04217 Physics and Society +1605.04218 Artificial Intelligence +1605.04219 General Finance +1605.04226 Probability +1605.04229 Classical Physics +1605.04233 Computer Science and Game Theory +1605.04238 Computation and Language +1605.04239 Combinatorics +1605.04241 General Physics +1605.04243 Computer Vision and Pattern Recognition +1605.04247 General Physics +1605.04249 General Physics +1605.04251 Materials Science +1605.04260 Phenomenology +1605.04262 Machine Learning +1605.04264 Strongly Correlated Electrons +1605.04265 Computational Geometry +1605.04266 Quantum Algebra +1605.04267 Combinatorics +1605.04275 Classical Analysis and ODEs +1605.04277 +1605.04280 Phenomenology +1605.04281 Computation +1605.04284 Data Structures and Algorithms +1605.04291 Earth and Planetary Astrophysics +1605.04294 Solar and Stellar Astrophysics +1605.04295 Phenomenology +1605.04301 Combinatorics +math/0701184 Optimization and Control +1202.5018 Operator Algebras +1208.5235 Probability +1212.0649 Metric Geometry +1310.4782 Algebraic Geometry +1312.2093 Materials Science +1312.3187 Number Theory +1312.4152 Populations and Evolution +1312.4653 Fluid Dynamics +1401.2748 Commutative Algebra +1403.1204 +1403.3475 Analysis of PDEs +1403.4685 Representation Theory +1404.1250 Combinatorics +1404.4804 Populations and Evolution +1404.4999 Number Theory +1405.4474 Pricing of Securities +1406.6445 Combinatorics +1407.8519 Algebraic Geometry +1409.0800 Number Theory +1410.3228 Optics +1411.1825 Dynamical Systems +1411.2298 Group Theory +1411.7737 +1412.2870 Differential Geometry +1412.7331 Optimization and Control +1501.06869 Quantum Algebra +1502.07633 Complex Variables +1502.07871 Mesoscale and Nanoscale Physics +1503.04269 Learning +1503.06582 Group Theory +1503.07536 +1504.03684 High Energy Astrophysical Phenomena +1504.05113 +1505.05598 Combinatorics +1506.01374 Number Theory +1506.02577 Probability +1506.07075 Algebraic Topology +1507.02061 Statistics Theory +1507.02158 Learning +1507.02651 Pricing of Securities +1507.03372 Learning +1507.03764 Combinatorics +1507.04806 Analysis of PDEs +1507.06240 Data Structures and Algorithms +1508.00432 Differential Geometry +1508.00997 Classical Analysis and ODEs +1508.02742 Optimization and Control +1508.07235 +1509.01643 Fluid Dynamics +1509.02003 Mesoscale and Nanoscale Physics +1509.02868 Physics and Society +1509.04298 +1509.06532 Probability +1509.08431 Strongly Correlated Electrons +1510.02617 Cosmology and Nongalactic Astrophysics +1510.04727 Numerical Analysis +1510.06715 +1510.08234 Optimization and Control +1510.08652 +1511.01696 Discrete Mathematics +1511.02038 Discrete Mathematics +1511.02120 Mesoscale and Nanoscale Physics +1511.02485 Superconductivity +1511.05244 Lattice +1511.05511 Representation Theory +1511.08466 Pricing of Securities +1512.00295 Instrumentation and Detectors +1512.03768 Theory +1512.04177 Social and Information Networks +1512.04598 Optics +1512.05322 Theory +1512.05447 +1512.05555 +1512.06525 Plasma Physics +1512.07235 Mesoscale and Nanoscale Physics +1512.07836 Instrumentation and Detectors +1512.09057 Logic +1512.09374 +1601.03143 +1601.04769 Number Theory +1601.06555 Information Theory +1602.00673 Solar and Stellar Astrophysics +1602.01714 Exactly Solvable and Integrable Systems +1602.02024 Superconductivity +1602.04526 Atomic Physics +1602.05347 Differential Geometry +1602.06772 Strongly Correlated Electrons +1602.08046 Quantum Gases +1603.00401 Number Theory +1603.02511 Accelerator Physics +1603.04351 Computation and Language +1603.05385 Chemical Physics +1603.05514 Phenomenology +1603.05835 Optimization and Control +1603.06246 Theory +1603.07601 Phenomenology +1603.09687 Computer Vision and Pattern Recognition +1604.00088 Materials Science +1604.00184 Superconductivity +1604.00790 Computer Vision and Pattern Recognition +1604.01335 Computer Vision and Pattern Recognition +1604.01421 Data Structures and Algorithms +1604.01975 General Physics +1604.02069 Phenomenology +1604.03043 Soft Condensed Matter +1604.03577 Phenomenology +1604.03806 Optimization and Control +1604.03983 High Energy Astrophysical Phenomena +1604.08509 Mesoscale and Nanoscale Physics +1605.00486 Cosmology and Nongalactic Astrophysics +1605.01326 Computation and Language +1605.01728 Astrophysics of Galaxies +1605.02182 Mesoscale and Nanoscale Physics +1605.02355 Emerging Technologies +1605.02673 Data Structures and Algorithms +1605.03632 +1605.05077 Cryptography and Security +1605.06523 Artificial Intelligence +1605.07562 Fluid Dynamics +1605.07629 Materials Science +1605.07720 Phenomenology +1605.08658 Operator Algebras +1605.08808 Cryptography and Security +1605.08975 +1606.00065 Chemical Physics +1606.00067 Number Theory +1606.01127 Solar and Stellar Astrophysics +1606.02138 Metric Geometry +1606.03879 Lattice +1606.05257 Soft Condensed Matter +1606.05556 Numerical Analysis +1606.09074 Number Theory +1607.00154 Functional Analysis +1607.01218 Number Theory +1607.01266 Digital Libraries +1607.01663 Differential Geometry +1607.02562 Cryptography and Security +1607.02794 Soft Condensed Matter +1607.02970 Logic in Computer Science +1607.03174 Analysis of PDEs +1607.03343 Computer Vision and Pattern Recognition +1607.03529 Mesoscale and Nanoscale Physics +1607.03877 Logic in Computer Science +1607.04285 Astrophysics of Galaxies +1607.04377 +1607.04392 Representation Theory +1607.04655 Classical Physics +1607.04799 Quantum Gases +1607.04899 Information Theory +1607.04905 Information Theory +1607.04909 Data Structures and Algorithms +1607.05050 +1607.05055 Complex Variables +1607.05073 Numerical Analysis +1607.05307 Differential Geometry +1607.05400 +1607.05507 Distributed, Parallel, and Cluster Computing +1607.05549 Number Theory +1607.05682 Quantum Gases +1607.05720 Fluid Dynamics +1607.05721 Numerical Analysis +1607.05722 Fluid Dynamics +1607.05724 Astrophysics of Galaxies +1607.05725 Strongly Correlated Electrons +1607.05739 Computational Geometry +1607.05749 Learning +1607.05750 Classical Analysis and ODEs +1607.05757 Combinatorics +1607.05758 Computation +1607.05759 Dynamical Systems +1607.05760 Materials Science +1607.05761 Materials Science +1607.05762 Instrumentation and Methods for Astrophysics +1607.05765 Sound +1607.05766 Differential Geometry +1607.05768 High Energy Astrophysical Phenomena +1607.05771 Physics and Society +1607.05772 Algebraic Geometry +1607.05773 Number Theory +1607.05777 Geometric Topology +1607.05780 Optimization and Control +1607.05781 Computer Vision and Pattern Recognition +1607.05784 Networking and Internet Architecture +1607.05785 +1607.05786 Data Structures and Algorithms +1607.05787 +1607.05788 Combinatorics +1607.05790 Numerical Analysis +1607.05791 Computational Geometry +1607.05793 Mesoscale and Nanoscale Physics +1607.05801 Numerical Analysis +1607.05803 Optimization and Control +1607.05805 Quantum Gases +1607.05806 Information Retrieval +1607.05807 Numerical Analysis +1607.05808 Multimedia +1607.05809 Computation and Language +1607.05810 Artificial Intelligence +1607.05812 Graphics +1607.05816 Optimization and Control +1607.05817 Discrete Mathematics +1607.05818 Computation and Language +1607.05820 Fluid Dynamics +1607.05823 Astrophysics of Galaxies +1607.05824 Computational Geometry +1607.05827 Materials Science +1607.05828 Differential Geometry +1607.05829 +1607.05832 Machine Learning +1607.05833 Phenomenology +1607.05835 Earth and Planetary Astrophysics +1607.05837 +1607.05839 Computer Vision and Pattern Recognition +1607.05842 Probability +1607.05845 Artificial Intelligence +1607.05847 High Energy Astrophysical Phenomena +1607.05848 Algebraic Topology +1607.05853 Physics and Society +1607.05855 Biological Physics +1607.05858 Methodology +1607.05859 Probability +1607.05861 Applications +1607.05866 Theory +1607.05868 Cryptography and Security +1607.05869 Artificial Intelligence +1607.05871 Dynamical Systems +1607.05874 Methodology +1607.05876 History and Overview +1607.05878 Materials Science +1607.05879 Probability +1607.05883 Combinatorics +1607.05884 Statistics Theory +1607.05887 Information Theory +1607.05888 Artificial Intelligence +1607.05892 Combinatorics +1607.05893 Numerical Analysis +1607.05896 Statistics Theory +1607.05897 Instrumentation and Methods for Astrophysics +1607.05898 Numerical Analysis +1607.05901 Cryptography and Security +1607.05906 Artificial Intelligence +1607.05907 Differential Geometry +1607.05909 Artificial Intelligence +1607.05910 Computer Vision and Pattern Recognition +1607.05912 Artificial Intelligence +1607.05913 Artificial Intelligence +1607.05915 Probability +1607.05917 Analysis of PDEs +1607.05918 Optimization and Control +1607.05920 Analysis of PDEs +1607.05922 Distributed, Parallel, and Cluster Computing +1607.05923 Strongly Correlated Electrons +1607.05924 Optimization and Control +1607.05927 Optimization and Control +1607.05930 Combinatorics +1607.05933 Functional Analysis +1607.05934 High Energy Astrophysical Phenomena +1607.05936 Numerical Analysis +1607.05940 Mesoscale and Nanoscale Physics +1607.05943 High Energy Astrophysical Phenomena +1607.05944 Neural and Evolutionary Computing +1607.05945 Mesoscale and Nanoscale Physics +1607.05946 Human-Computer Interaction +1607.05948 General Physics +1607.05949 General Physics +1607.05950 Materials Science +1607.05951 Differential Geometry +1607.05952 Social and Information Networks +1607.05953 Chemical Physics +1607.05955 Materials Science +1607.05956 Logic in Computer Science +1607.05957 Dynamical Systems +1607.05958 Rings and Algebras +1607.05959 Geophysics +1607.05960 General Physics +1607.05962 Systems and Control +1607.05964 Classical Analysis and ODEs +1607.05965 Representation Theory +1607.05966 Information Theory +1607.05967 Computer Vision and Pattern Recognition +1607.05968 Artificial Intelligence +1607.05969 Computer Vision and Pattern Recognition +1607.05973 Quantum Algebra +1607.05974 Machine Learning +1607.05975 Computer Vision and Pattern Recognition +1607.05976 Algebraic Geometry +1607.05977 +1607.05978 Numerical Analysis +1607.05980 Statistics Theory +1607.05981 Computation +1607.05983 Numerical Analysis +1607.05985 +1607.05987 Phenomenology +1607.05988 Numerical Analysis +1607.05991 Analysis of PDEs +1607.05992 Differential Geometry +1607.05993 Systems and Control +1607.05996 Solar and Stellar Astrophysics +1607.05997 History and Overview +1607.06001 Theory +1607.06003 Medical Physics +1607.06004 Materials Science +1607.06006 Combinatorics +1607.06008 Differential Geometry +1607.06009 Fluid Dynamics +1607.06011 Learning +1607.06012 +1607.06014 Materials Science +1607.06015 Systems and Control +1607.06018 Optimization and Control +1607.06019 Dynamical Systems +1607.06020 Applications +1607.06027 Strongly Correlated Electrons +1607.06038 Computer Vision and Pattern Recognition +1607.06039 Number Theory +1607.06040 Classical Physics +1607.06042 Information Theory +1607.06044 Information Theory +1607.06050 Mesoscale and Nanoscale Physics +1607.06051 Methodology +1607.06053 Classical Analysis and ODEs +1607.06058 Probability +1607.06059 Instrumentation and Methods for Astrophysics +1607.06060 Geometric Topology +1607.06061 Combinatorics +1607.06062 Computer Vision and Pattern Recognition +1607.06063 Databases +1607.06065 Mesoscale and Nanoscale Physics +1607.06068 Data Structures and Algorithms +1607.06069 Classical Analysis and ODEs +1607.06072 Complex Variables +1607.06076 Accelerator Physics +1607.06078 Functional Analysis +math/0508203 History and Overview +1411.6782 Representation Theory +1511.00053 Multiagent Systems +1601.05587 Chemical Physics +1601.05600 Metric Geometry +0806.4788 +0809.4476 Other Condensed Matter +1009.0462 Mesoscale and Nanoscale Physics +1010.5221 Operator Algebras +1011.0772 +1011.4436 Operator Algebras +1101.2827 Operator Algebras +1107.1140 Number Theory +1208.4112 Mesoscale and Nanoscale Physics +1211.5930 +1311.0051 Number Theory +1311.1468 General Topology +1311.5975 +1312.1007 +1402.6629 +1403.2862 +1403.5806 Combinatorics +1407.3526 Symplectic Geometry +1407.7804 +1408.2173 Theory +1408.3312 Quantum Gases +1409.0996 Optics +1409.7424 Spectral Theory +1409.8612 +1411.3412 Differential Geometry +1411.3996 Mesoscale and Nanoscale Physics +1411.4358 Combinatorics +1411.4691 Statistics Theory +1412.0451 Earth and Planetary Astrophysics +1501.00090 Algebraic Geometry +1501.01915 Algebraic Geometry +1501.04922 Differential Geometry +1501.05392 Symbolic Computation +1502.07832 +1503.06449 Number Theory +1503.06605 +1505.02271 +1505.02807 Fluid Dynamics +1505.04015 Methodology +1505.06002 Information Theory +1506.01983 Logic +1507.00720 Machine Learning +1507.01033 Statistical Finance +1507.02837 Analysis of PDEs +1507.04197 Combinatorics +1507.06444 Functional Analysis +1508.01098 Geometric Topology +1508.01431 Geometric Topology +1508.01936 Classical Physics +1508.04019 Quantum Gases +1508.05437 Classical Analysis and ODEs +1508.05979 Analysis of PDEs +1508.06510 Complex Variables +1508.06890 Classical Analysis and ODEs +1509.04627 Distributed, Parallel, and Cluster Computing +1509.05015 Probability +1509.05357 +1509.05729 Experiment +1509.06428 Methodology +1509.07027 +1510.00523 Data Structures and Algorithms +1510.01917 Operator Algebras +1510.02572 Numerical Analysis +1510.02769 +1510.05186 Phenomenology +1510.05800 Analysis of PDEs +1510.06197 Social and Information Networks +1510.06468 +1510.07988 Phenomenology +1510.08051 +1511.02115 Mesoscale and Nanoscale Physics +1511.02974 Optimization and Control +1511.03876 Optimization and Control +1511.05196 Computer Science and Game Theory +1511.08312 Disordered Systems and Neural Networks +1512.00819 Statistics Theory +1512.02035 Quantum Gases +1512.02085 +1512.05852 Number Theory +1512.09051 Mesoscale and Nanoscale Physics +1601.02203 Theory +1601.03218 Complex Variables +1601.04230 Analysis of PDEs +1601.06456 Combinatorics +1602.01266 +1602.02174 Computer Science and Game Theory +1602.02928 Astrophysics of Galaxies +1602.04706 Networking and Internet Architecture +1602.05977 Mesoscale and Nanoscale Physics +1602.08159 +1603.00537 Materials Science +1603.00616 Materials Science +1603.01419 Robotics +1603.04881 Neurons and Cognition +1603.05947 Statistics Theory +1604.01104 Probability +1604.01863 Metric Geometry +1604.05186 Differential Geometry +1604.05867 Strongly Correlated Electrons +1604.06820 Commutative Algebra +1604.07000 Materials Science +1604.07287 Medical Physics +1604.08180 Probability +1604.08464 Systems and Control +1605.00416 Strongly Correlated Electrons +1605.00603 Theory +1605.02018 Data Analysis, Statistics and Probability +1605.02207 Mesoscale and Nanoscale Physics +1605.02435 Cryptography and Security +1605.03218 Analysis of PDEs +1605.04679 Disordered Systems and Neural Networks +1605.04838 Statistics Theory +1605.05347 Strongly Correlated Electrons +1605.05607 Category Theory +1605.06119 High Energy Astrophysical Phenomena +1605.07453 Phenomenology +1605.07529 Probability +1606.00301 Soft Condensed Matter +1606.01102 Neural and Evolutionary Computing +1606.01706 Analysis of PDEs +1606.02245 Computation and Language +1606.02625 Experiment +1606.02836 +1606.02916 Materials Science +1606.02944 Materials Science +1606.03823 Theory +1606.04961 Phenomenology +1606.05823 Phenomenology +1606.06027 +1606.06272 Statistical Mechanics +1606.08790 Metric Geometry +1607.00259 Computational Complexity +1607.04173 Statistical Mechanics +1607.04217 Statistical Mechanics +1607.04417 Strongly Correlated Electrons +1607.05184 Methodology +1607.06117 Solar and Stellar Astrophysics +1607.07552 Strongly Correlated Electrons +1607.08834 Experiment +1608.02860 Mesoscale and Nanoscale Physics +1608.03704 +1608.03851 Phenomenology +1608.03992 +1608.04918 Probability +1608.05327 Logic in Computer Science +1608.05542 Complex Variables +1608.06360 Strongly Correlated Electrons +1608.07447 Phenomenology +1608.08240 Phenomenology +1608.08529 Classical Analysis and ODEs +1609.00213 Functional Analysis +1609.00700 +1609.01479 Distributed, Parallel, and Cluster Computing +1609.02771 Number Theory +1609.03859 Disordered Systems and Neural Networks +1609.04597 Category Theory +1609.04911 +1609.05028 Phenomenology +1609.05567 Classical Physics +1609.05857 Statistical Mechanics +1609.06741 Systems and Control +1609.07915 Algebraic Geometry +1610.00786 Materials Science +1610.00980 +1610.02273 Hardware Architecture +1610.02920 Machine Learning +1610.03424 Differential Geometry +1610.04503 +1610.04640 Classical Physics +1610.05295 Soft Condensed Matter +1610.06675 Theory +1610.06760 Complex Variables +1610.07294 Data Structures and Algorithms +1610.07581 Strongly Correlated Electrons +1610.07860 Pattern Formation and Solitons +1610.08165 Dynamical Systems +1610.08279 Cryptography and Security +1610.09176 Quantum Gases +1610.09636 Solar and Stellar Astrophysics +1611.00142 Computer Vision and Pattern Recognition +1611.00231 Phenomenology +1611.00646 Strongly Correlated Electrons +1611.00852 Representation Theory +1611.00915 Classical Analysis and ODEs +1611.01234 Astrophysics of Galaxies +1611.01285 Economics +1611.01580 Phenomenology +1611.01742 Networking and Internet Architecture +1611.01812 Functional Analysis +1611.02243 Fluid Dynamics +1611.02292 Symplectic Geometry +1611.02304 Machine Learning +1611.02586 Solar and Stellar Astrophysics +1611.02641 Analysis of PDEs +1611.02692 +1611.02693 +1611.02694 Logic +1611.02695 Computation and Language +1611.02696 Materials Science +1611.02698 Systems and Control +1611.02701 +1611.02706 Astrophysics of Galaxies +1611.02707 Mesoscale and Nanoscale Physics +1611.02709 Astrophysics of Galaxies +1611.02711 Cosmology and Nongalactic Astrophysics +1611.02718 Earth and Planetary Astrophysics +1611.02719 +1611.02721 Information Theory +1611.02722 Mesoscale and Nanoscale Physics +1611.02725 Mesoscale and Nanoscale Physics +1611.02726 Instrumentation and Detectors +1611.02727 Number Theory +1611.02729 Geophysics +1611.02730 Computer Vision and Pattern Recognition +1611.02732 +1611.02735 Other Quantitative Biology +1611.02736 +1611.02738 +1611.02740 Dynamical Systems +1611.02741 Functional Analysis +1611.02742 Mesoscale and Nanoscale Physics +1611.02743 Dynamical Systems +1611.02744 Mesoscale and Nanoscale Physics +1611.02745 Mesoscale and Nanoscale Physics +1611.02746 Combinatorics +1611.02748 Superconductivity +1611.02751 +1611.02752 Spectral Theory +1611.02754 Computation +1611.02755 Artificial Intelligence +1611.02758 Distributed, Parallel, and Cluster Computing +1611.02760 Economics +1611.02761 Mesoscale and Nanoscale Physics +1611.02762 Statistics Theory +1611.02764 Computational Physics +1611.02766 Chemical Physics +1611.02767 Computer Vision and Pattern Recognition +1611.02768 Physics and Society +1611.02769 Earth and Planetary Astrophysics +1611.02771 Combinatorics +1611.02772 Theory +1611.02773 Soft Condensed Matter +1611.02774 Numerical Analysis +1611.02775 Computers and Society +1611.02776 Computer Vision and Pattern Recognition +1611.02777 Representation Theory +1611.02781 Classical Analysis and ODEs +1611.02782 Solar and Stellar Astrophysics +1611.02784 +1611.02785 Numerical Analysis +1611.02787 Cryptography and Security +1611.02788 Computer Vision and Pattern Recognition +1611.02791 Probability +1611.02792 Hardware Architecture +1611.02795 +1611.02801 Commutative Algebra +1611.02802 Methodology +1611.02803 Computer Vision and Pattern Recognition +1611.02805 Numerical Analysis +1611.02806 Social and Information Networks +1611.02807 Numerical Analysis +1611.02809 Physics and Society +1611.02812 Analysis of PDEs +1611.02814 Classical Physics +1611.02815 Information Retrieval +1611.02816 Databases +1611.02818 Applications +1611.02819 Combinatorics +1611.02820 Astrophysics of Galaxies +1611.02821 Cryptography and Security +1611.02822 Number Theory +1611.02824 Optimization and Control +1611.02825 Phenomenology +1611.02826 Commutative Algebra +1611.02829 Instrumentation and Methods for Astrophysics +1611.02830 Learning +1611.02831 Mathematical Software +1611.02832 Algebraic Geometry +1611.02833 Mesoscale and Nanoscale Physics +1611.02834 Materials Science +1611.02836 Networking and Internet Architecture +1611.02837 Materials Science +1611.02838 Functional Analysis +1611.02839 Computation and Language +1611.02841 Probability +1611.02842 Networking and Internet Architecture +1611.02844 +1611.02845 Methodology +1611.02846 Phenomenology +1611.02847 Mesoscale and Nanoscale Physics +1611.02849 Probability +1611.02850 Mesoscale and Nanoscale Physics +1611.02851 Probability +1611.02852 Atomic and Molecular Clusters +1611.02853 Networking and Internet Architecture +1611.02856 Strongly Correlated Electrons +1611.02858 Optics +1611.02860 Probability +1611.02861 Applications +1611.02862 Computer Vision and Pattern Recognition +1611.02865 Materials Science +1611.02866 Materials Science +1611.02869 Applications +1611.02871 Combinatorics +1611.02872 +1611.02873 Solar and Stellar Astrophysics +1611.02877 Mathematical Finance +1611.02879 Computer Vision and Pattern Recognition +1611.02880 Number Theory +1611.02881 Networking and Internet Architecture +1611.02882 High Energy Astrophysical Phenomena +1611.02883 Algebraic Geometry +1611.02884 Chemical Physics +1611.02885 Artificial Intelligence +1611.02886 Computer Vision and Pattern Recognition +1611.02888 Analysis of PDEs +1611.02889 Classical Analysis and ODEs +1611.02893 +1611.02894 Mesoscale and Nanoscale Physics +1611.02896 Statistical Mechanics +1611.02898 Statistical Mechanics +1611.02899 Optimization and Control +1611.02901 Combinatorics +1611.02903 Optimization and Control +1611.02905 Distributed, Parallel, and Cluster Computing +1611.02906 +1611.02908 Logic in Computer Science +1611.02909 Differential Geometry +1611.02910 Statistics Theory +1611.02911 Combinatorics +1611.02912 Theory +1611.02915 Hardware Architecture +1611.02916 Statistical Mechanics +1611.02917 Distributed, Parallel, and Cluster Computing +1611.02918 Optimization and Control +1611.02919 Analysis of PDEs +1611.02920 Networking and Internet Architecture +1611.02921 Biological Physics +1611.02923 Software Engineering +1611.02927 Strongly Correlated Electrons +1611.02928 Astrophysics of Galaxies +1611.02929 Distributed, Parallel, and Cluster Computing +1611.02930 Lattice +1611.02931 Lattice +1611.02933 Experiment +1611.02934 Combinatorics +1611.02936 +1611.02937 Theory +1611.02938 Algebraic Geometry +1611.02939 Phenomenology +1611.02942 Commutative Algebra +1611.02943 +1611.02944 Computation and Language +1611.02945 Quantitative Methods +1611.02946 Superconductivity +1611.02947 Probability +1611.02948 +1611.02949 Algebraic Geometry +1611.02951 Phenomenology +1611.02952 Probability +1611.02953 Number Theory +1611.02954 Probability +1611.02955 Optimization and Control +1611.02957 Classical Physics +1611.02958 Algebraic Geometry +1611.02961 Numerical Analysis +1611.02962 Strongly Correlated Electrons +1611.02963 General Physics +1611.02965 +1611.02966 Data Structures and Algorithms +1611.02967 Numerical Analysis +1611.02968 Cryptography and Security +1611.02970 Disordered Systems and Neural Networks +1611.02971 Complex Variables +1611.02974 General Physics +1611.02976 General Physics +1611.02978 Methodology +1611.02979 Functional Analysis +1611.02980 General Physics +1611.02981 Functional Analysis +1611.02983 Number Theory +1611.02986 High Energy Astrophysical Phenomena +1611.02988 Computation and Language +1611.02989 Information Theory +1611.02993 Numerical Analysis +1611.02997 Mesoscale and Nanoscale Physics +1611.02998 Differential Geometry +1611.03001 Algebraic Geometry +1611.03003 Instrumentation and Detectors +1611.03004 Dynamical Systems +1611.03005 Subcellular Processes +1611.03008 Differential Geometry +1611.03009 Probability +1611.03010 Probability +1611.03011 Analysis of PDEs +1611.03014 Information Theory +1611.03015 Statistics Theory +1611.03016 Networking and Internet Architecture +1611.03017 Algebraic Geometry +1611.03018 Soft Condensed Matter +1611.03019 Cryptography and Security +1611.03020 Phenomenology +1611.03021 Learning +1611.03023 Dynamical Systems +1611.03025 Dynamical Systems +1611.03026 Neurons and Cognition +1611.03027 Algebraic Geometry +1611.03030 Solar and Stellar Astrophysics +1611.03032 Materials Science +1611.03033 Spectral Theory +1611.03034 Statistical Mechanics +1611.03036 High Energy Astrophysical Phenomena +1611.03038 Algebraic Topology +1611.03039 Analysis of PDEs +1611.03040 Mesoscale and Nanoscale Physics +1611.03041 Atmospheric and Oceanic Physics +1611.03042 Statistics Theory +1611.03043 Number Theory +1611.03045 Number Theory +1611.03047 Atmospheric and Oceanic Physics +1611.03048 Statistical Mechanics +1611.03050 Mesoscale and Nanoscale Physics +1611.03052 Combinatorics +1611.03054 Information Theory +1611.03055 Physics and Society +1611.03057 Computation and Language +1611.03058 Algebraic Geometry +1611.03059 Computer Vision and Pattern Recognition +1611.03060 Information Theory +1611.03062 High Energy Astrophysical Phenomena +1611.03063 Statistics Theory +1611.03066 Cosmology and Nongalactic Astrophysics +1611.03067 Optimization and Control +1611.03069 Information Theory +1611.03072 Other Statistics +1611.03073 Other Statistics +1611.03074 Phenomenology +1611.03075 Combinatorics +1611.03077 +1611.03078 Logic +math-ph/0701054 +quant-ph/0211063 +quant-ph/0502085 +0903.1983 +1012.0234 Lattice +1102.1952 Spectral Theory +1102.3042 Theory +1110.3547 Neurons and Cognition +1206.1945 Combinatorics +1207.6927 Combinatorics +1209.5030 Number Theory +1305.6214 Complex Variables +1309.4299 Differential Geometry +1312.3270 Symbolic Computation +1312.6702 Analysis of PDEs +1401.0135 Mesoscale and Nanoscale Physics +1402.1937 Statistics Theory +1403.4385 Operator Algebras +1403.5478 Applications +1407.2125 Networking and Internet Architecture +1407.5197 Robotics +1407.6090 Artificial Intelligence +1410.0027 Algebraic Geometry +1411.1910 Mesoscale and Nanoscale Physics +1411.4273 Strongly Correlated Electrons +1502.04327 Representation Theory +1502.06827 Probability +1502.07674 Combinatorics +1503.05134 Dynamical Systems +1503.05316 Combinatorics +1503.08573 Combinatorics +1504.00254 Analysis of PDEs +1504.04862 Analysis of PDEs +1504.06862 Functional Analysis +1505.01667 Dynamical Systems +1505.06922 Algebraic Geometry +1506.00489 Analysis of PDEs +1506.02112 Algebraic Topology +1506.03749 Complex Variables +1506.08347 Computer Vision and Pattern Recognition +1507.04653 Phenomenology +1508.01247 Cosmology and Nongalactic Astrophysics +1508.02824 Risk Management +1508.07118 Analysis of PDEs +1508.07777 Mesoscale and Nanoscale Physics +1509.03380 Combinatorics +1509.05816 +1509.07416 Differential Geometry +1509.08438 +1510.01098 Computer Vision and Pattern Recognition +1510.01183 +1510.01320 Astrophysics of Galaxies +1510.02195 Combinatorics +1510.04540 Analysis of PDEs +1510.06181 Representation Theory +1510.06249 Number Theory +1510.06664 Emerging Technologies +1510.07534 Operator Algebras +1511.00879 Symplectic Geometry +1511.00891 Symplectic Geometry +1511.01902 Theory +1511.02476 Statistical Mechanics +1511.07458 Phenomenology +1512.00249 Theory +1512.00436 Strongly Correlated Electrons +1512.01376 Optics +1512.01488 Mathematical Finance +1512.02022 Optics +1512.02249 Fluid Dynamics +1512.05200 Differential Geometry +1512.06852 Strongly Correlated Electrons +1601.00087 Computation and Language +1601.00663 +1601.01204 Combinatorics +1601.02353 +1601.04927 Superconductivity +1601.06683 Social and Information Networks +1601.07219 +1601.07261 +1601.07887 Classical Analysis and ODEs +1602.01346 Computational Geometry +1602.01776 Number Theory +1602.02025 Strongly Correlated Electrons +1602.02944 Information Theory +1602.02974 Biological Physics +1602.05484 Mathematical Finance +1602.05933 Cosmology and Nongalactic Astrophysics +1602.06034 Experiment +1602.06278 Instrumentation and Detectors +1602.06594 Systems and Control +1602.08033 Social and Information Networks +1602.08579 Formal Languages and Automata Theory +1603.00856 Machine Learning +1603.01612 Instrumentation and Detectors +1603.02439 Experiment +1603.02817 Mesoscale and Nanoscale Physics +1603.02991 Experiment +1603.03290 Networking and Internet Architecture +1603.03426 Functional Analysis +1603.03439 Strongly Correlated Electrons +1603.04573 Differential Geometry +1603.05566 Physics and Society +1603.05643 Optimization and Control +1603.05646 Strongly Correlated Electrons +1603.07445 Social and Information Networks +1603.08545 Theory +1604.00683 Strongly Correlated Electrons +1604.01436 Probability +1604.02061 Spectral Theory +1604.03112 Mesoscale and Nanoscale Physics +1604.04201 +1604.05136 General Physics +1604.05284 Probability +1604.05849 Superconductivity +1604.06099 Phenomenology +1604.06878 Combinatorics +1604.06956 Pattern Formation and Solitons +1604.07849 Robotics +1605.00670 Phenomenology +1605.01340 Statistics Theory +1605.01416 Phenomenology +1605.03953 Statistical Mechanics +1605.04617 Classical Analysis and ODEs +1605.04917 Phenomenology +1605.05776 Information Theory +1605.06529 Dynamical Systems +1605.07118 +1605.08430 Phenomenology +1605.09396 Theory +1605.09580 Quantum Gases +1606.00859 +1606.00860 Number Theory +1606.01249 Mesoscale and Nanoscale Physics +1606.05270 Phenomenology +1606.05491 Computation and Language +1606.05492 Machine Learning +1606.05635 +1606.06632 Theory +1606.07592 Rings and Algebras +1606.08356 Phenomenology +1606.08962 Artificial Intelligence +1606.08988 Optimization and Control +1607.00232 +1607.00406 Classical Physics +1607.01739 Algebraic Geometry +1607.02498 Instrumentation and Detectors +1607.03851 Analysis of PDEs +1607.05444 +1607.05664 Strongly Correlated Electrons +1607.05894 Commutative Algebra +1607.06706 Sound +1607.07953 Superconductivity +1607.08680 Strongly Correlated Electrons +1607.08717 Probability +1608.00467 Strongly Correlated Electrons +1608.00695 Robotics +1608.01735 Optimization and Control +1608.02389 Discrete Mathematics +1608.02627 Statistical Mechanics +1608.03283 Solar and Stellar Astrophysics +1608.03587 Computation and Language +1608.03982 Phenomenology +1608.04103 Formal Languages and Automata Theory +1608.04162 Human-Computer Interaction +1608.05264 General Physics +1608.05673 Phenomenology +1608.05976 Mesoscale and Nanoscale Physics +1608.05989 Materials Science +1608.06541 Statistics Theory +1608.06795 Instrumentation and Methods for Astrophysics +1608.06905 Spectral Theory +1608.06936 Instrumentation and Detectors +1608.06937 Phenomenology +1608.06938 Astrophysics of Galaxies +1608.06939 Atomic Physics +1608.06940 +1608.06944 Combinatorics +1608.06949 Computers and Society +1608.06950 Statistical Mechanics +1608.06953 Probability +1608.06954 Artificial Intelligence +1608.06959 Optimization and Control +1608.06961 Combinatorics +1608.06965 Algebraic Geometry +1608.06967 Combinatorics +1608.06968 Probability +1608.06969 Combinatorics +1608.06970 +1608.06972 Emerging Technologies +1608.06975 Analysis of PDEs +1608.06976 Classical Analysis and ODEs +1608.06977 Probability +1608.06981 Combinatorics +1608.06982 Classical Analysis and ODEs +1608.06983 Mesoscale and Nanoscale Physics +1608.06985 Computer Vision and Pattern Recognition +1608.06988 Functional Analysis +1608.06989 Combinatorics +1608.06991 +1608.06996 Combinatorics +1608.06998 Combinatorics +1608.07000 Combinatorics +1608.07001 Artificial Intelligence +1608.07002 Data Structures and Algorithms +1608.07006 Probability +1608.07007 Chemical Physics +1608.07010 Analysis of PDEs +1608.07014 Statistics Theory +1608.07015 Information Theory +1608.07021 Combinatorics +1608.07022 Data Structures and Algorithms +1608.07026 Dynamical Systems +1608.07027 Optics +1608.07028 Combinatorics +1608.07029 Computation +1608.07032 Number Theory +1608.07033 Fluid Dynamics +1608.07034 Mesoscale and Nanoscale Physics +1608.07035 Data Analysis, Statistics and Probability +1608.07036 Hardware Architecture +1608.07040 Earth and Planetary Astrophysics +1608.07041 Phenomenology +1608.07047 Mesoscale and Nanoscale Physics +1608.07048 Computation +1608.07050 Geometric Topology +1608.07051 Learning +1608.07052 Plasma Physics +1608.07053 Instrumentation and Methods for Astrophysics +1608.07054 Algebraic Geometry +1608.07056 Computational Geometry +1608.07058 Quantitative Methods +1608.07060 Systems and Control +1608.07061 Probability +1608.07062 Analysis of PDEs +1608.07063 Number Theory +1608.07067 Analysis of PDEs +1608.07069 Instrumentation and Detectors +1608.07070 Materials Science +1608.07071 Analysis of PDEs +1608.07072 Combinatorics +1608.07074 High Energy Astrophysical Phenomena +1608.07075 Statistical Mechanics +1608.07076 Computation and Language +1608.07078 Instrumentation and Methods for Astrophysics +1608.07079 Dynamical Systems +1608.07082 Analysis of PDEs +1608.07083 Combinatorics +1608.07085 Computers and Society +1608.07086 +1608.07087 Materials Science +1608.07089 Complex Variables +1608.07091 Statistical Mechanics +1608.07092 Soft Condensed Matter +1608.07093 Materials Science +1608.07097 Mesoscale and Nanoscale Physics +1608.07098 Soft Condensed Matter +1608.07103 Networking and Internet Architecture +1608.07113 Materials Science +1608.07115 Computation and Language +1608.07116 Commutative Algebra +1608.07117 Artificial Intelligence +1608.07119 Materials Science +1608.07122 Materials Science +1608.07124 Probability +1608.07125 +1608.07126 Materials Science +1608.07132 Materials Science +1608.07134 Instrumentation and Detectors +1608.07136 +1608.07138 Computer Vision and Pattern Recognition +1608.07141 Group Theory +1608.07144 General Topology +1608.07146 Cryptography and Security +1608.07147 Complex Variables +1608.07148 Numerical Analysis +1608.07149 Probability +1608.07150 Representation Theory +1608.07155 Distributed, Parallel, and Cluster Computing +1608.07156 Materials Science +1608.07158 Pricing of Securities +1608.07159 Learning +1608.07160 Complex Variables +1608.07161 Programming Languages +1608.07164 Combinatorics +1608.07165 Combinatorics +1608.07166 Combinatorics +1608.07167 Combinatorics +1608.07168 Combinatorics +1608.07169 Analysis of PDEs +1608.07170 Optimization and Control +1608.07171 Materials Science +1608.07174 Complex Variables +1608.07175 General Physics +1608.07176 Materials Science +1608.07180 Methodology +1608.07181 Solar and Stellar Astrophysics +1608.07186 Statistics Theory +1608.07189 +1608.07190 Materials Science +1608.07193 Statistical Finance +1608.07195 Phenomenology +1608.07196 Phenomenology +1608.07199 Classical Analysis and ODEs +1608.07202 Information Theory +1608.07203 Materials Science +1608.07204 Methodology +1608.07205 Statistical Mechanics +1608.07206 Programming Languages +1608.07207 Numerical Analysis +1608.07213 +1608.07215 Cosmology and Nongalactic Astrophysics +1608.07217 Dynamical Systems +1608.07221 Materials Science +1608.07222 Soft Condensed Matter +1608.07223 Artificial Intelligence +1608.07224 Social and Information Networks +1608.07225 Artificial Intelligence +1608.07228 Operator Algebras +1608.07229 Metric Geometry +1608.07230 Astrophysics of Galaxies +1608.07232 Tissues and Organs +1608.07233 Emerging Technologies +1608.07238 Algebraic Topology +1608.07239 Numerical Analysis +1608.07241 Machine Learning +1608.07242 Computer Vision and Pattern Recognition +1608.07244 Neurons and Cognition +1608.07245 Optics +1608.07247 Combinatorics +1608.07250 Soft Condensed Matter +1608.07251 Learning +1608.07253 Information Retrieval +1608.07256 Phenomenology +1608.07257 History and Philosophy of Physics +1608.07258 Dynamical Systems +1608.07259 Molecular Networks +1608.07260 Discrete Mathematics +1608.07262 Theory +1608.07263 Earth and Planetary Astrophysics +1608.07265 +1608.07266 Soft Condensed Matter +1608.07268 Numerical Analysis +1608.07269 Lattice +1608.07270 Metric Geometry +1608.07272 Theory +1608.07276 Analysis of PDEs +1608.07277 Strongly Correlated Electrons +astro-ph/0410439 +astro-ph/0607067 +q-bio/0507037 Neurons and Cognition +0712.1685 Phenomenology +1107.5073 Quantum Algebra +1111.2539 Theory +1203.2995 Systems and Control +1204.3642 Analysis of PDEs +1207.0529 Quantum Algebra +1208.3035 Instrumentation and Methods for Astrophysics +1209.5269 Mesoscale and Nanoscale Physics +1211.5821 Algebraic Geometry +1302.1006 Chaotic Dynamics +1302.2529 Distributed, Parallel, and Cluster Computing +1307.5884 Functional Analysis +1307.6208 Functional Analysis +1310.4054 Probability +1401.4017 Phenomenology +1401.6782 Representation Theory +1404.0770 Dynamical Systems +1404.1639 Differential Geometry +1405.2731 Spectral Theory +1405.4683 Algebraic Geometry +1406.3317 +1407.1872 Instrumentation and Methods for Astrophysics +1409.1430 Analysis of PDEs +1409.5767 Combinatorics +1412.5756 Operator Algebras +1501.00559 +1501.00869 Combinatorics +1501.03785 +1501.07177 +1502.02197 Group Theory +1502.06280 Analysis of PDEs +1503.00214 Machine Learning +1503.05799 Commutative Algebra +1505.02817 Mesoscale and Nanoscale Physics +1505.05207 Differential Geometry +1505.06700 Probability +1506.00236 General Finance +1506.03638 +1506.04029 +1507.01310 Instrumentation and Detectors +1507.04725 Probability +1507.06631 Representation Theory +1507.07069 Algebraic Geometry +1507.07541 Theory +1508.00371 Group Theory +1508.02473 Statistics Theory +1508.02906 Populations and Evolution +1508.04585 +1509.01609 Dynamical Systems +1509.02849 Cryptography and Security +1509.03557 Computer Vision and Pattern Recognition +1509.04038 Probability +1509.05075 Algebraic Topology +1509.07550 +1509.09047 Distributed, Parallel, and Cluster Computing +1510.00046 Algebraic Geometry +1510.01048 Probability +1510.01676 Applications +1510.01913 Logic +1510.05931 Optics +1510.06519 Number Theory +1510.06537 Cosmology and Nongalactic Astrophysics +1510.06681 Analysis of PDEs +1510.06927 Phenomenology +1510.08182 Mesoscale and Nanoscale Physics +1511.00269 Theory +1511.04837 Functional Analysis +1511.06427 Neurons and Cognition +1511.07985 Differential Geometry +1512.03134 +1512.03403 Cosmology and Nongalactic Astrophysics +1512.04489 Materials Science +1512.06312 Algebraic Geometry +1512.09059 Statistical Mechanics +1601.01345 Machine Learning +1601.01490 Physics and Society +1601.01618 Mesoscale and Nanoscale Physics +1601.02112 Combinatorics +1601.03485 Mesoscale and Nanoscale Physics +1601.06430 Fluid Dynamics +1601.07176 Superconductivity +1601.07458 +1601.07528 +1602.00233 +1602.01466 Optics +1602.02984 Number Theory +1602.04184 Computer Science and Game Theory +1602.04904 Fluid Dynamics +1602.05421 Computational Physics +1602.05968 High Energy Astrophysical Phenomena +1602.06048 +1602.07689 Astrophysics of Galaxies +1602.08451 Digital Libraries +1602.09028 Information Theory +1603.00121 Statistical Mechanics +1603.01063 Mesoscale and Nanoscale Physics +1603.03322 Phenomenology +1603.05476 Materials Science +1603.06875 Phenomenology +1603.06983 +1603.07888 Computation +1603.07926 Cryptography and Security +1603.08075 Statistical Mechanics +1603.08703 Soft Condensed Matter +1603.09020 Accelerator Physics +1604.00035 Classical Physics +1604.00500 Distributed, Parallel, and Cluster Computing +1604.01373 +1604.01508 Mesoscale and Nanoscale Physics +1604.01639 Theory +1604.01730 Quantum Gases +1604.03932 Analysis of PDEs +1604.04800 Neurons and Cognition +1604.04801 Neurons and Cognition +1604.05130 Differential Geometry +1604.06645 Experiment +1604.07365 Phenomenology +1604.08298 Analysis of PDEs +1604.08713 Number Theory +1604.08919 Optics +1605.00368 Functional Analysis +1605.00531 +1605.03005 Neurons and Cognition +1605.03534 +1605.04032 Mesoscale and Nanoscale Physics +1605.04054 Soft Condensed Matter +1605.04191 Soft Condensed Matter +1605.04815 Soft Condensed Matter +1605.05372 Analysis of PDEs +1605.05397 Applications +1605.06451 Machine Learning +1605.07068 Logic in Computer Science +1605.07292 Differential Geometry +1605.07572 Soft Condensed Matter +1605.07779 Learning +1605.07839 Complex Variables +1605.08144 Classical Physics +1605.08700 Astrophysics of Galaxies +1605.09260 Algebraic Geometry +1606.00007 Mesoscale and Nanoscale Physics +1606.00018 Astrophysics of Galaxies +1606.04009 Statistical Mechanics +1606.04253 Computational Complexity +1606.05713 Astrophysics of Galaxies +1606.08158 Differential Geometry +1606.08206 Atomic Physics +1607.00978 Algebraic Geometry +1607.01023 Cosmology and Nongalactic Astrophysics +1607.01682 Instrumentation and Methods for Astrophysics +1607.03003 +1607.05732 Astrophysics of Galaxies +1607.05742 Biological Physics +1607.06105 Theory +1607.06528 Soft Condensed Matter +1607.08328 Phenomenology +1607.08394 Information Theory +1607.08531 +1607.08700 Complex Variables +1608.01214 Theory +1608.01452 +1608.02412 Optimization and Control +1608.02571 Soft Condensed Matter +1608.02673 Algebraic Topology +1608.03772 High Energy Astrophysical Phenomena +1608.05295 Social and Information Networks +1608.05372 Combinatorics +1608.05591 +1608.05869 Networking and Internet Architecture +1608.06000 Materials Science +1608.06137 Number Theory +1608.06166 Multiagent Systems +1608.06190 Analysis of PDEs +1608.06513 Astrophysics of Galaxies +1608.06521 Computer Vision and Pattern Recognition +1608.06584 +1608.06594 Solar and Stellar Astrophysics +1608.06627 Medical Physics +1608.06628 Materials Science +1608.06630 Functional Analysis +1608.06638 Theory +1608.06644 Algebraic Geometry +1608.06645 Instrumentation and Methods for Astrophysics +1608.06646 Combinatorics +1608.06651 Information Retrieval +1608.06654 Computational Engineering, Finance, and Science +1608.06655 Instrumentation and Detectors +1608.06656 Information Retrieval +1608.06661 Combinatorics +1608.06664 Learning +1608.06665 Biomolecules +1608.06667 Applications +1608.06668 Medical Physics +1608.06670 Commutative Algebra +1608.06671 Disordered Systems and Neural Networks +1608.06674 Information Theory +1608.06676 Networking and Internet Architecture +1608.06678 Classical Analysis and ODEs +1608.06680 Analysis of PDEs +1608.06682 Applications +1608.06683 Superconductivity +1608.06687 Rings and Algebras +1608.06688 Superconductivity +1608.06691 Symbolic Computation +1608.06693 Symbolic Computation +1608.06694 Networking and Internet Architecture +1608.06696 Distributed, Parallel, and Cluster Computing +1608.06697 Computation and Language +1608.06700 Numerical Analysis +1608.06707 Algebraic Topology +1608.06708 Number Theory +1608.06709 Computer Vision and Pattern Recognition +1608.06711 Phenomenology +1608.06712 K-Theory and Homology +1608.06713 Computer Vision and Pattern Recognition +1608.06716 Computer Vision and Pattern Recognition +1608.06719 Earth and Planetary Astrophysics +1608.06721 Numerical Analysis +1608.06722 +1608.06723 Tissues and Organs +1608.06724 Computational Complexity +1608.06726 Symplectic Geometry +1608.06728 Functional Analysis +1608.06729 Logic in Computer Science +1608.06730 Analysis of PDEs +1608.06736 Probability +1608.06737 Number Theory +1608.06738 Classical Analysis and ODEs +1608.06740 Statistics Theory +1608.06745 Space Physics +1608.06747 Analysis of PDEs +1608.06748 Information Theory +1608.06749 Information Theory +1608.06750 Fluid Dynamics +1608.06752 Instrumentation and Methods for Astrophysics +1608.06753 Cryptography and Security +1608.06754 Networking and Internet Architecture +1608.06756 Astrophysics of Galaxies +1608.06757 Computation and Language +1608.06759 Software Engineering +1608.06761 Computer Vision and Pattern Recognition +1608.06764 +1608.06767 Robotics +1608.06768 Earth and Planetary Astrophysics +1608.06769 Computation +1608.06771 Optimization and Control +1608.06774 Group Theory +1608.06775 Dynamical Systems +1608.06776 Instrumentation and Methods for Astrophysics +1608.06777 Computational Physics +1608.06778 Medical Physics +1608.06779 Rings and Algebras +1608.06782 +1608.06784 Number Theory +1608.06785 Probability +1608.06787 Artificial Intelligence +1608.06790 Complex Variables +1608.06791 Methodology +1608.06792 Analysis of PDEs +1608.06793 Rings and Algebras +1608.06794 Computation and Language +1608.06797 Discrete Mathematics +1608.06798 Functional Analysis +1608.06800 Computer Vision and Pattern Recognition +1608.06804 Combinatorics +1608.06805 Applications +1608.06808 Optimization and Control +1608.06809 Classical Physics +1608.06810 Number Theory +1608.06811 Rings and Algebras +1608.06815 Phenomenology +1608.06822 General Physics +1608.06825 Geophysics +1608.06830 Information Theory +1608.06833 Phenomenology +1608.06834 History and Overview +1608.06837 Statistical Mechanics +1608.06838 Analysis of PDEs +1608.06842 Metric Geometry +1608.06843 Instrumentation and Methods for Astrophysics +1608.06844 Geometric Topology +1608.06847 Number Theory +1608.06848 Combinatorics +1608.06852 Analysis of PDEs +1608.06853 Materials Science +1608.06855 Materials Science +1608.06859 Materials Science +1608.06861 Distributed, Parallel, and Cluster Computing +1608.06862 Quantum Gases +1608.06863 Computer Vision and Pattern Recognition +1608.06866 Strongly Correlated Electrons +1608.06871 Numerical Analysis +1608.06875 Differential Geometry +1608.06876 Information Retrieval +1608.06877 Combinatorics +1608.06878 History and Philosophy of Physics +1608.06879 Optimization and Control +1608.06880 Combinatorics +1608.06881 Mesoscale and Nanoscale Physics +1608.06883 Soft Condensed Matter +1608.06885 +1608.06887 Robotics +1608.06889 +1608.06890 Differential Geometry +1608.06891 Computer Vision and Pattern Recognition +1608.06893 Numerical Analysis +1608.06894 Computational Physics +1608.06896 Phenomenology +1608.06897 Quantitative Methods +1608.06898 Fluid Dynamics +1608.06899 Theory +1608.06900 +1608.06901 Materials Science +1608.06903 Methodology +1608.06904 Representation Theory +1608.06913 Chemical Physics +1608.06914 +1608.06918 Biological Physics +1608.06919 Earth and Planetary Astrophysics +1608.06924 Other Quantitative Biology +1608.06930 Earth and Planetary Astrophysics +1608.06933 Differential Geometry +1608.06935 Experiment +astro-ph/9702038 +astro-ph/9702211 +astro-ph/9703118 +astro-ph/9703119 +astro-ph/9703145 +astro-ph/9703201 +astro-ph/9704070 +astro-ph/9704251 +astro-ph/9705166 +astro-ph/9705219 +astro-ph/9707036 +astro-ph/9708004 +astro-ph/9708036 +astro-ph/9710048 +astro-ph/9710332 +astro-ph/9712121 +astro-ph/9801022 +astro-ph/9802133 +astro-ph/9802209 +astro-ph/9803150 +astro-ph/9803271 +astro-ph/9803272 +astro-ph/9805114 +astro-ph/9806127 +astro-ph/9808099 +astro-ph/9810257 +astro-ph/9810509 +astro-ph/9811252 +astro-ph/9811430 +astro-ph/9811431 +astro-ph/9812204 +astro-ph/9901213 +astro-ph/9901268 +astro-ph/9902046 +astro-ph/9902265 +astro-ph/9903270 +astro-ph/9903361 +astro-ph/9903397 +astro-ph/9904021 +astro-ph/9904396 +astro-ph/9906210 +astro-ph/9906415 +cond-mat/0407197 Mesoscale and Nanoscale Physics +gr-qc/9511033 +gr-qc/9701003 +gr-qc/9703021 +gr-qc/9703027 +gr-qc/9703050 +gr-qc/9704008 +gr-qc/9704023 +gr-qc/9706011 +gr-qc/9706033 +gr-qc/9706057 +gr-qc/9708012 +gr-qc/9708023 +gr-qc/9708024 +gr-qc/9709026 +gr-qc/9709032 +gr-qc/9710042 +gr-qc/9710055 +gr-qc/9710140 +gr-qc/9711030 +gr-qc/9711070 +gr-qc/9712050 +gr-qc/9712052 +gr-qc/9712063 +gr-qc/9712067 +gr-qc/9801016 +gr-qc/9801067 +gr-qc/9802008 +gr-qc/9802015 +gr-qc/9803062 +gr-qc/9803066 +gr-qc/9804040 +gr-qc/9804056 +gr-qc/9804088 +gr-qc/9805039 +gr-qc/9805055 +gr-qc/9805101 +gr-qc/9806012 +gr-qc/9806040 +gr-qc/9806047 +gr-qc/9806052 +gr-qc/9806069 +gr-qc/9806077 +gr-qc/9806085 +gr-qc/9806093 +gr-qc/9806121 +gr-qc/9807009 +gr-qc/9808019 +gr-qc/9808043 +gr-qc/9808057 +gr-qc/9809033 +gr-qc/9809034 +gr-qc/9809050 +gr-qc/9810003 +gr-qc/9810005 +gr-qc/9810024 +gr-qc/9810049 +gr-qc/9811001 +gr-qc/9811019 +gr-qc/9811024 +gr-qc/9811067 +gr-qc/9812032 +gr-qc/9812041 +gr-qc/9812045 +gr-qc/9812069 +gr-qc/9901032 +gr-qc/9901074 +gr-qc/9902006 +gr-qc/9902007 +gr-qc/9902021 +gr-qc/9902052 +gr-qc/9903042 +gr-qc/9903081 +gr-qc/9903100 +gr-qc/9904016 +gr-qc/9904049 +gr-qc/9904059 +gr-qc/9904082 +gr-qc/9905012 +gr-qc/9905017 +gr-qc/9905032 +gr-qc/9905039 +gr-qc/9906019 +gr-qc/9906054 +gr-qc/9906055 +gr-qc/9906107 +hep-lat/9707001 Lattice +hep-lat/9710048 Lattice +hep-lat/9710066 Lattice +hep-lat/9711009 Lattice +hep-lat/9711030 Lattice +hep-lat/9712003 Lattice +hep-lat/9712016 Lattice +hep-lat/9801008 Lattice +hep-lat/9801018 Lattice +hep-lat/9801029 Lattice +hep-lat/9803016 Lattice +hep-lat/9805015 Lattice +hep-lat/9805019 Lattice +hep-lat/9805020 Lattice +hep-lat/9805023 Lattice +hep-lat/9805032 Lattice +hep-lat/9806003 Lattice +hep-lat/9806014 Lattice +hep-lat/9806018 Lattice +hep-lat/9806027 Lattice +hep-lat/9806029 Lattice +hep-lat/9806036 Lattice +hep-lat/9807012 Lattice +hep-lat/9807015 Lattice +hep-lat/9809160 Lattice +hep-lat/9811012 Lattice +hep-lat/9811035 Lattice +hep-lat/9812009 Lattice +hep-lat/9901003 Lattice +hep-lat/9901006 Lattice +hep-lat/9902015 Lattice +hep-lat/9903006 Lattice +hep-lat/9903019 Lattice +hep-lat/9905015 Lattice +hep-ph/9604282 Phenomenology +hep-ph/9609441 Phenomenology +hep-ph/9610381 Phenomenology +hep-ph/9612397 Phenomenology +hep-ph/9701343 Phenomenology +hep-ph/9702321 Phenomenology +hep-ph/9702331 Phenomenology +hep-ph/9704305 Phenomenology +hep-ph/9704306 Phenomenology +hep-ph/9704371 Phenomenology +hep-ph/9704408 Phenomenology +hep-ph/9704425 Phenomenology +hep-ph/9704426 Phenomenology +hep-ph/9705210 Phenomenology +hep-ph/9705300 Phenomenology +hep-ph/9705356 Phenomenology +hep-ph/9705357 Phenomenology +hep-ph/9705392 Phenomenology +hep-ph/9705447 Phenomenology +hep-ph/9706227 Phenomenology +hep-ph/9706235 Phenomenology +hep-ph/9706273 Phenomenology +hep-ph/9706309 Phenomenology +hep-ph/9706397 Phenomenology +hep-ph/9706412 Phenomenology +hep-ph/9706425 Phenomenology +hep-ph/9706443 Phenomenology +hep-ph/9706501 Phenomenology +hep-ph/9706529 Phenomenology +hep-ph/9706541 Phenomenology +hep-ph/9706542 Phenomenology +hep-ph/9707208 Phenomenology +hep-ph/9707315 Phenomenology +hep-ph/9707366 Phenomenology +hep-ph/9707429 Phenomenology +hep-ph/9707473 Phenomenology +hep-ph/9707485 Phenomenology +hep-ph/9708202 Phenomenology +hep-ph/9708218 Phenomenology +hep-ph/9708219 Phenomenology +hep-ph/9708223 Phenomenology +hep-ph/9708281 Phenomenology +hep-ph/9708305 Phenomenology +hep-ph/9708405 Phenomenology +hep-ph/9708464 Phenomenology +hep-ph/9708481 Phenomenology +hep-ph/9709214 Phenomenology +hep-ph/9709306 Phenomenology +hep-ph/9709320 Phenomenology +hep-ph/9709392 Phenomenology +hep-ph/9709410 Phenomenology +hep-ph/9709411 Phenomenology +hep-ph/9709497 Phenomenology +hep-ph/9709498 Phenomenology +hep-ph/9709506 Phenomenology +hep-ph/9710206 Phenomenology +hep-ph/9710213 Phenomenology +hep-ph/9710223 Phenomenology +hep-ph/9710236 Phenomenology +hep-ph/9710275 Phenomenology +hep-ph/9710300 Phenomenology +hep-ph/9710405 Phenomenology +hep-ph/9710436 Phenomenology +hep-ph/9710441 Phenomenology +hep-ph/9710443 Phenomenology +hep-ph/9710444 Phenomenology +hep-ph/9710490 Phenomenology +hep-ph/9710512 Phenomenology +hep-ph/9711214 Phenomenology +hep-ph/9711257 Phenomenology +hep-ph/9711309 Phenomenology +hep-ph/9711323 Phenomenology +hep-ph/9711325 Phenomenology +hep-ph/9711338 Phenomenology +hep-ph/9711363 Phenomenology +hep-ph/9711398 Phenomenology +hep-ph/9711400 Phenomenology +hep-ph/9711412 Phenomenology +hep-ph/9711447 Phenomenology +hep-ph/9711452 Phenomenology +hep-ph/9711501 Phenomenology +hep-ph/9712333 Phenomenology +hep-ph/9712339 Phenomenology +hep-ph/9712353 Phenomenology +hep-ph/9712357 Phenomenology +hep-ph/9712379 Phenomenology +hep-ph/9712384 Phenomenology +hep-ph/9712385 Phenomenology +hep-ph/9712389 Phenomenology +hep-ph/9712463 Phenomenology +hep-ph/9712467 Phenomenology +hep-ph/9712497 Phenomenology +hep-ph/9712506 Phenomenology +hep-ph/9801232 Phenomenology +hep-ph/9801239 Phenomenology +hep-ph/9801240 Phenomenology +hep-ph/9801245 Phenomenology +hep-ph/9801257 Phenomenology +hep-ph/9801262 Phenomenology +hep-ph/9801265 Phenomenology +hep-ph/9801280 Phenomenology +hep-ph/9801308 Phenomenology +hep-ph/9801334 Phenomenology +hep-ph/9801348 Phenomenology +hep-ph/9801349 Phenomenology +hep-ph/9801380 Phenomenology +hep-ph/9801397 Phenomenology +hep-ph/9801432 Phenomenology +hep-ph/9801434 Phenomenology +hep-ph/9801436 Phenomenology +hep-ph/9801444 Phenomenology +hep-ph/9802238 Phenomenology +hep-ph/9802251 Phenomenology +hep-ph/9802277 Phenomenology +hep-ph/9802352 Phenomenology +hep-ph/9802353 Phenomenology +hep-ph/9802377 Phenomenology +hep-ph/9802393 Phenomenology +hep-ph/9802409 Phenomenology +hep-ph/9803231 Phenomenology +hep-ph/9803284 Phenomenology +hep-ph/9803356 Phenomenology +hep-ph/9803368 Phenomenology +hep-ph/9803410 Phenomenology +hep-ph/9803412 Phenomenology +hep-ph/9803426 Phenomenology +hep-ph/9803451 Phenomenology +hep-ph/9803457 Phenomenology +hep-ph/9803472 Phenomenology +hep-ph/9804227 Phenomenology +hep-ph/9804234 Phenomenology +hep-ph/9804243 Phenomenology +hep-ph/9804248 Phenomenology +hep-ph/9804279 Phenomenology +hep-ph/9804283 Phenomenology +hep-ph/9804311 Phenomenology +hep-ph/9804325 Phenomenology +hep-ph/9804355 Phenomenology +hep-ph/9804447 Phenomenology +hep-ph/9805211 Phenomenology +hep-ph/9805243 Phenomenology +hep-ph/9805264 Phenomenology +hep-ph/9805289 Phenomenology +hep-ph/9805291 Phenomenology +hep-ph/9805337 Phenomenology +hep-ph/9805403 Phenomenology +hep-ph/9805422 Phenomenology +hep-ph/9805477 Phenomenology +hep-ph/9805488 Phenomenology +hep-ph/9805503 Phenomenology +hep-ph/9806221 Phenomenology +hep-ph/9806235 Phenomenology +hep-ph/9806270 Phenomenology +hep-ph/9806287 Phenomenology +hep-ph/9806293 Phenomenology +hep-ph/9806296 Phenomenology +hep-ph/9806306 Phenomenology +hep-ph/9806311 Phenomenology +hep-ph/9806346 Phenomenology +hep-ph/9806359 Phenomenology +hep-ph/9806360 Phenomenology +hep-ph/9806397 Phenomenology +hep-ph/9806416 Phenomenology +hep-ph/9806446 Phenomenology +hep-ph/9806468 Phenomenology +hep-ph/9806486 Phenomenology +hep-ph/9806515 Phenomenology +hep-ph/9806522 Phenomenology +hep-ph/9807254 Phenomenology +hep-ph/9807277 Phenomenology +hep-ph/9807286 Phenomenology +hep-ph/9807289 Phenomenology +hep-ph/9807336 Phenomenology +hep-ph/9807363 Phenomenology +hep-ph/9807371 Phenomenology +hep-ph/9807387 Phenomenology +hep-ph/9807418 Phenomenology +hep-ph/9807438 Phenomenology +hep-ph/9807469 Phenomenology +hep-ph/9807492 Phenomenology +hep-ph/9807509 Phenomenology +hep-ph/9807532 Phenomenology +hep-ph/9807561 Phenomenology +hep-ph/9808216 Phenomenology +hep-ph/9808256 Phenomenology +hep-ph/9808360 Phenomenology +hep-ph/9808405 Phenomenology +hep-ph/9808406 Phenomenology +hep-ph/9808431 Phenomenology +hep-ph/9808466 Phenomenology +hep-ph/9808467 Phenomenology +hep-ph/9808469 Phenomenology +hep-ph/9809237 Phenomenology +hep-ph/9809277 Phenomenology +hep-ph/9809364 Phenomenology +hep-ph/9809453 Phenomenology +hep-ph/9809473 Phenomenology +hep-ph/9809493 Phenomenology +hep-ph/9809513 Phenomenology +hep-ph/9810215 Phenomenology +hep-ph/9810241 Phenomenology +hep-ph/9810252 Phenomenology +hep-ph/9810371 Phenomenology +hep-ph/9810381 Phenomenology +hep-ph/9810393 Phenomenology +hep-ph/9810439 Phenomenology +hep-ph/9810441 Phenomenology +hep-ph/9810449 Phenomenology +hep-ph/9810452 Phenomenology +hep-ph/9810457 Phenomenology +hep-ph/9810479 Phenomenology +hep-ph/9810510 Phenomenology +hep-ph/9810542 Phenomenology +hep-ph/9811226 Phenomenology +hep-ph/9811232 Phenomenology +hep-ph/9811237 Phenomenology +hep-ph/9811248 Phenomenology +hep-ph/9811269 Phenomenology +hep-ph/9811289 Phenomenology +hep-ph/9811357 Phenomenology +hep-ph/9811367 Phenomenology +hep-ph/9811396 Phenomenology +hep-ph/9811500 Phenomenology +hep-ph/9812232 Phenomenology +hep-ph/9812266 Phenomenology +hep-ph/9812271 Phenomenology +hep-ph/9812313 Phenomenology +hep-ph/9812345 Phenomenology +hep-ph/9812358 Phenomenology +hep-ph/9812377 Phenomenology +hep-ph/9812445 Phenomenology +hep-ph/9812456 Phenomenology +hep-ph/9812488 Phenomenology +hep-ph/9812504 Phenomenology +hep-ph/9812508 Phenomenology +hep-ph/9812518 Phenomenology +hep-ph/9812520 Phenomenology +hep-ph/9812530 Phenomenology +hep-ph/9812531 Phenomenology +hep-ph/9812533 Phenomenology +hep-ph/9901209 Phenomenology +hep-ph/9901226 Phenomenology +hep-ph/9901242 Phenomenology +hep-ph/9901293 Phenomenology +hep-ph/9901294 Phenomenology +hep-ph/9901296 Phenomenology +hep-ph/9901385 Phenomenology +hep-ph/9901389 Phenomenology +hep-ph/9901397 Phenomenology +hep-ph/9901449 Phenomenology +hep-ph/9902248 Phenomenology +hep-ph/9902255 Phenomenology +hep-ph/9902274 Phenomenology +hep-ph/9902359 Phenomenology +hep-ph/9902428 Phenomenology +hep-ph/9902441 Phenomenology +hep-ph/9902449 Phenomenology +hep-ph/9903252 Phenomenology +hep-ph/9903259 Phenomenology +hep-ph/9903281 Phenomenology +hep-ph/9903292 Phenomenology +hep-ph/9903314 Phenomenology +hep-ph/9903333 Phenomenology +hep-ph/9903340 Phenomenology +hep-ph/9903362 Phenomenology +hep-ph/9903369 Phenomenology +hep-ph/9903453 Phenomenology +hep-ph/9903498 Phenomenology +hep-ph/9903516 Phenomenology +hep-ph/9903517 Phenomenology +hep-ph/9903540 Phenomenology +hep-ph/9904202 Phenomenology +hep-ph/9904214 Phenomenology +hep-ph/9904252 Phenomenology +hep-ph/9904390 Phenomenology +hep-ph/9904411 Phenomenology +hep-ph/9904420 Phenomenology +hep-ph/9904452 Phenomenology +hep-ph/9904470 Phenomenology +hep-ph/9905206 Phenomenology +hep-ph/9905220 Phenomenology +hep-ph/9905224 Phenomenology +hep-ph/9905252 Phenomenology +hep-ph/9905253 Phenomenology +hep-ph/9905277 Phenomenology +hep-ph/9905313 Phenomenology +hep-ph/9905366 Phenomenology +hep-ph/9906215 Phenomenology +hep-ph/9906235 Phenomenology +hep-ph/9906260 Phenomenology +hep-ph/9906273 Phenomenology +hep-ph/9906363 Phenomenology +hep-ph/9906420 Phenomenology +hep-ph/9906421 Phenomenology +hep-ph/9906512 Phenomenology +hep-ph/9906542 Phenomenology +hep-ph/9907206 Phenomenology +hep-ph/9907218 Phenomenology +hep-ph/9907533 Phenomenology +hep-ph/9907557 Phenomenology +hep-ph/9907569 Phenomenology +hep-th/9508095 Theory +hep-th/9605037 Theory +hep-th/9610208 Theory +hep-th/9610237 Theory +hep-th/9611176 Theory +hep-th/9612061 Theory +hep-th/9701029 Theory +hep-th/9701132 Theory +hep-th/9701156 Theory +hep-th/9702059 Theory +hep-th/9702107 Theory +hep-th/9702109 Theory +hep-th/9703041 Theory +hep-th/9703164 Theory +hep-th/9704105 Theory +hep-th/9704106 Theory +hep-th/9704125 Theory +hep-th/9704143 Theory +hep-th/9704189 Theory +hep-th/9704195 Theory +hep-th/9704204 Theory +hep-th/9705017 Theory +hep-th/9705035 Theory +hep-th/9705054 Theory +hep-th/9705056 Theory +hep-th/9705063 Theory +hep-th/9705079 Theory +hep-th/9705084 Theory +hep-th/9705110 Theory +hep-th/9705113 Theory +hep-th/9705139 Theory +hep-th/9705205 Theory +hep-th/9705230 Theory +hep-th/9705231 Theory +hep-th/9706012 Theory +hep-th/9706048 Theory +hep-th/9706059 Theory +hep-th/9706079 Theory +hep-th/9706083 Theory +hep-th/9706099 Theory +hep-th/9706163 Theory +hep-th/9706185 Theory +hep-th/9707025 Theory +hep-th/9707035 Theory +hep-th/9707048 Theory +hep-th/9707058 Theory +hep-th/9707071 Theory +hep-th/9707102 Theory +hep-th/9707157 Theory +hep-th/9707215 Theory +hep-th/9707251 Theory +hep-th/9708019 Theory +hep-th/9708060 Theory +hep-th/9708091 Theory +hep-th/9708099 Theory +hep-th/9708124 Theory +hep-th/9709009 Theory +hep-th/9709080 Theory +hep-th/9709166 Theory +hep-th/9710098 Theory +hep-th/9710107 Theory +hep-th/9710128 Theory +hep-th/9710191 Theory +hep-th/9710213 Theory +hep-th/9710217 Theory +hep-th/9710240 Theory +hep-th/9711097 Theory +hep-th/9711152 Theory +hep-th/9711166 Theory +hep-th/9711173 Theory +hep-th/9711197 Theory +hep-th/9712029 Theory +hep-th/9712046 Theory +hep-th/9712049 Theory +hep-th/9712056 Theory +hep-th/9712073 Theory +hep-th/9712123 Theory +hep-th/9712147 Theory +hep-th/9712148 Theory +hep-th/9712212 Theory +hep-th/9712224 Theory +hep-th/9712238 Theory +hep-th/9712252 Theory +hep-th/9801024 Theory +hep-th/9801105 Theory +hep-th/9801122 Theory +hep-th/9801125 Theory +hep-th/9801147 Theory +hep-th/9801152 Theory +hep-th/9801157 Theory +hep-th/9802004 Theory +hep-th/9802042 Theory +hep-th/9802060 Theory +hep-th/9802062 Theory +hep-th/9802108 Theory +hep-th/9802189 Theory +hep-th/9803007 Theory +hep-th/9803034 Theory +hep-th/9803069 Theory +hep-th/9803081 Theory +hep-th/9803164 Theory +hep-th/9803177 Theory +hep-th/9803188 Theory +hep-th/9803190 Theory +hep-th/9803197 Theory +hep-th/9804024 Theory +hep-th/9804028 Theory +hep-th/9804094 Theory +hep-th/9804129 Theory +hep-th/9804162 Theory +hep-th/9804174 Theory +hep-th/9805041 Theory +hep-th/9805088 Theory +hep-th/9805121 Theory +hep-th/9805164 Theory +hep-th/9805171 Theory +hep-th/9805202 Theory +hep-th/9805218 Theory +hep-th/9806022 Theory +hep-th/9806065 Theory +hep-th/9806085 Theory +hep-th/9806133 Theory +hep-th/9806149 Theory +hep-th/9806178 Theory +hep-th/9806203 Theory +hep-th/9806231 Theory +hep-th/9807038 Theory +hep-th/9807042 Theory +hep-th/9807059 Theory +hep-th/9807100 Theory +hep-th/9807114 Theory +hep-th/9807122 Theory +hep-th/9807159 Theory +hep-th/9807164 Theory +hep-th/9807168 Theory +hep-th/9807184 Theory +hep-th/9807221 Theory +hep-th/9808027 Theory +hep-th/9808037 Theory +hep-th/9808075 Theory +hep-th/9808081 Theory +hep-th/9808101 Theory +hep-th/9808120 Theory +hep-th/9808124 Theory +hep-th/9808133 Theory +hep-th/9808166 Theory +hep-th/9808177 Theory +hep-th/9808184 Theory +hep-th/9809013 Theory +hep-th/9809059 Theory +hep-th/9809061 Theory +hep-th/9809065 Theory +hep-th/9809075 Theory +hep-th/9809142 Theory +hep-th/9809174 Theory +hep-th/9809177 Theory +hep-th/9809188 Theory +hep-th/9810025 Theory +hep-th/9810065 Theory +hep-th/9810066 Theory +hep-th/9810135 Theory +hep-th/9810144 Theory +hep-th/9810197 Theory +hep-th/9810224 Theory +hep-th/9810230 Theory +hep-th/9811037 Theory +hep-th/9811052 Theory +hep-th/9811083 Theory +hep-th/9811092 Theory +hep-th/9811119 Theory +hep-th/9811132 Theory +hep-th/9811152 Theory +hep-th/9812080 Theory +hep-th/9812081 Theory +hep-th/9812119 Theory +hep-th/9812143 Theory +hep-th/9812161 Theory +hep-th/9812171 Theory +hep-th/9901067 Theory +hep-th/9901070 Theory +hep-th/9901073 Theory +hep-th/9901103 Theory +hep-th/9901121 Theory +hep-th/9901132 Theory +hep-th/9901135 Theory +hep-th/9901152 Theory +hep-th/9902071 Theory +hep-th/9902083 Theory +hep-th/9902122 Theory +hep-th/9902135 Theory +hep-th/9902183 Theory +hep-th/9903040 Theory +hep-th/9903062 Theory +hep-th/9903101 Theory +hep-th/9903133 Theory +hep-th/9903178 Theory +hep-th/9903184 Theory +hep-th/9903203 Theory +hep-th/9903213 Theory +hep-th/9903227 Theory +hep-th/9903237 Theory +hep-th/9903238 Theory +hep-th/9903240 Theory +hep-th/9904037 Theory +hep-th/9904042 Theory +hep-th/9904065 Theory +hep-th/9904070 Theory +hep-th/9904086 Theory +hep-th/9904104 Theory +hep-th/9904133 Theory +hep-th/9904173 Theory +hep-th/9905030 Theory +hep-th/9905099 Theory +hep-th/9905121 Theory +hep-th/9905173 Theory +hep-th/9905210 Theory +hep-th/9905220 Theory +hep-th/9905223 Theory +hep-th/9906119 Theory +hep-th/9906191 Theory +hep-th/9906232 Theory +hep-th/9906237 Theory +hep-th/9907088 Theory +hep-th/9907151 Theory +hep-th/9907192 Theory +hep-th/9907204 Theory +hep-th/9908101 Theory +nucl-th/9807025 +nucl-th/9809095 +nucl-th/9903023 +quant-ph/9603004 +quant-ph/9705005 +quant-ph/9902008 +0706.0195 Rings and Algebras +0712.1753 Combinatorics +0810.3212 Rings and Algebras +0905.1611 Rings and Algebras +0905.1614 Rings and Algebras +0910.5131 Rings and Algebras +0910.5409 Rings and Algebras +0910.5607 Rings and Algebras +0911.0200 Combinatorics +0912.0478 Rings and Algebras +1003.1294 Combinatorics +1003.2192 Rings and Algebras +1009.0184 Algebraic Geometry +1102.3378 Algebraic Topology +1106.3255 Group Theory +1109.3490 Combinatorics +1110.3242 Analysis of PDEs +1110.5570 Atomic Physics +1203.5424 Combinatorics +1207.1265 Data Structures and Algorithms +1209.2035 Formal Languages and Automata Theory +1211.5828 Algebraic Geometry +1212.5286 Algebraic Geometry +1302.2100 Combinatorics +1302.7109 Combinatorics +1304.3678 +1304.4422 Algebraic Topology +1305.0511 Analysis of PDEs +1306.5462 Methodology +1306.5578 Combinatorics +1308.2269 Combinatorics +1309.7657 Numerical Analysis +1310.0783 Algebraic Topology +1310.7041 Rings and Algebras +1310.7797 Combinatorics +1310.7933 Differential Geometry +1311.0733 +1311.7218 Theory +1312.0987 Strongly Correlated Electrons +1401.0294 Discrete Mathematics +1401.2802 Functional Analysis +1401.4934 Number Theory +1401.5462 Differential Geometry +1401.6396 Optimization and Control +1402.1651 Algebraic Geometry +1402.2365 Statistics Theory +1402.6526 Differential Geometry +1404.6783 Algebraic Geometry +1405.2435 Formal Languages and Automata Theory +1405.4366 Analysis of PDEs +1405.4495 +1405.4631 Differential Geometry +1406.0160 Theory +1406.5139 Differential Geometry +1407.0897 Algebraic Geometry +1408.1469 Statistics Theory +1408.5195 Numerical Analysis +1408.5591 Numerical Analysis +1409.1993 +1409.4556 Analysis of PDEs +1409.6715 Mesoscale and Nanoscale Physics +1409.7464 Numerical Analysis +1410.0726 Computation +1410.5638 Differential Geometry +1411.3392 Lattice +1411.5417 Learning +1411.6038 Lattice +1411.6914 Probability +1412.2274 Algebraic Topology +1412.4851 Lattice +1412.8406 Instrumentation and Methods for Astrophysics +1412.8595 Combinatorics +1501.00076 Combinatorics +1501.01043 Analysis of PDEs +1502.01753 Computation and Language +1502.04152 Algebraic Topology +1502.06196 Algebraic Geometry +1503.00329 Representation Theory +1503.02891 Algebraic Geometry +1503.03768 Algebraic Geometry +1503.06300 Human-Computer Interaction +1503.09049 Experiment +1503.09108 Differential Geometry +1504.00042 +1504.03544 +1504.03588 Quantum Algebra +1504.07260 Theory +1504.07540 Mesoscale and Nanoscale Physics +1505.01184 Data Analysis, Statistics and Probability +1505.02118 Methodology +1505.02864 Optics +1505.03176 Neurons and Cognition +1505.03345 Geometric Topology +1505.03347 Functional Analysis +1505.03554 +1505.03614 Algebraic Geometry +1505.06671 Differential Geometry +1506.02151 Representation Theory +1506.06352 Representation Theory +1506.06363 +1506.06378 Programming Languages +1506.06412 Geometric Topology +1506.07012 Classical Analysis and ODEs +1506.08495 High Energy Astrophysical Phenomena +1507.02067 Computational Geometry +1507.03293 Computation +1507.03895 Statistics Theory +1507.06669 Differential Geometry +1507.08141 Numerical Analysis +1507.08216 Instrumentation and Detectors +1507.08344 Symplectic Geometry +1508.01409 Computational Physics +1508.01450 Soft Condensed Matter +1508.04028 Computer Vision and Pattern Recognition +1508.06102 Functional Analysis +1508.06454 Combinatorics +1508.07929 Statistics Theory +1509.01078 Logic +1509.01178 Classical Analysis and ODEs +1509.01267 Analysis of PDEs +1509.01385 +1509.01520 Computer Vision and Pattern Recognition +1509.05702 Analysis of PDEs +1509.09031 Representation Theory +1509.09037 Mesoscale and Nanoscale Physics +1509.09161 Chaotic Dynamics +1510.00579 Probability +1510.01040 +1510.01117 Dynamical Systems +1510.02020 Materials Science +1510.02082 +1510.03221 Differential Geometry +1510.03479 Number Theory +1510.03572 Materials Science +1510.04185 Metric Geometry +1510.04342 Methodology +1510.06345 +1510.07218 Combinatorics +1510.07891 Soft Condensed Matter +1511.01386 Representation Theory +1511.01550 +1511.01945 Analysis of PDEs +1511.04669 Probability +1511.04864 Combinatorics +1511.07058 +1511.08507 Multimedia +1511.08557 Algebraic Topology +1511.08785 Theory +1512.01125 Lattice +1512.01408 Machine Learning +1512.01820 Representation Theory +1512.02458 General Topology +1512.02566 +1512.02830 Phenomenology +1512.04293 Neurons and Cognition +1512.05381 Strongly Correlated Electrons +1512.09363 Computational Complexity +1601.00049 Optics +1601.01531 Superconductivity +1601.01926 Probability +1601.02594 Strongly Correlated Electrons +1601.03610 Methodology +1601.04542 Superconductivity +1601.05223 Phenomenology +1601.05338 Materials Science +1601.05786 Cosmology and Nongalactic Astrophysics +1601.05875 Information Theory +1601.06408 Probability +1601.06945 Software Engineering +1601.07402 Classical Analysis and ODEs +1602.00431 Systems and Control +1602.02147 Combinatorics +1602.02273 Complex Variables +1602.02293 Distributed, Parallel, and Cluster Computing +1602.03410 Theory +1602.04645 +1602.05732 Algebraic Geometry +1602.05800 Dynamical Systems +1602.06434 Systems and Control +1602.06542 Theory +1602.06899 Number Theory +1602.08049 +1603.00160 Information Theory +1603.00782 +1603.00816 Computer Vision and Pattern Recognition +1603.00832 Optimization and Control +1603.02329 Numerical Analysis +1603.04001 Plasma Physics +1603.04955 Populations and Evolution +1603.05081 Soft Condensed Matter +1603.05846 Information Theory +1603.06165 Computer Science and Game Theory +1603.07387 Phenomenology +1603.07584 Learning +1603.07828 Learning +1603.08638 Numerical Analysis +1603.09124 Astrophysics of Galaxies +1603.09133 Numerical Analysis +1604.00064 Materials Science +1604.01384 +1604.01606 Probability +1604.01794 Fluid Dynamics +1604.02540 Symplectic Geometry +1604.02730 Information Theory +1604.03058 Computer Vision and Pattern Recognition +1604.03082 +1604.03733 Biological Physics +1604.05029 Representation Theory +1604.05119 Atmospheric and Oceanic Physics +1604.05842 Solar and Stellar Astrophysics +1604.06284 Economics +1604.06765 Group Theory +1604.07379 Computer Vision and Pattern Recognition +1604.07791 Number Theory +1604.07988 Statistical Mechanics +1604.08136 Systems and Control +1604.08539 Phenomenology +1604.08709 Artificial Intelligence +1605.01587 +1605.02176 +1605.03677 Methodology +1605.04711 Computer Vision and Pattern Recognition +1605.04755 +1605.04974 Phenomenology +1605.05479 Classical Analysis and ODEs +1605.05717 Distributed, Parallel, and Cluster Computing +1605.08118 Theory +1605.08650 +1605.09042 Machine Learning +1605.09066 Learning +1606.00085 Materials Science +1606.00364 Chaotic Dynamics +1606.00622 Statistics Theory +1606.00710 +1606.00906 Machine Learning +1606.01478 +1606.01517 Complex Variables +1606.02320 Number Theory +1606.03568 Computation and Language +1606.04327 Networking and Internet Architecture +1606.04633 Theory +1606.04965 Phenomenology +1606.05984 Materials Science +1606.06346 Analysis of PDEs +1606.06694 Strongly Correlated Electrons +1606.06834 Optics +1606.06932 Analysis of PDEs +1606.07499 Operator Algebras +1606.07554 +1606.07705 Soft Condensed Matter +1606.08602 Accelerator Physics +1606.08730 Statistical Mechanics +1606.09607 Phenomenology +1607.00655 Databases +1607.00771 Databases +1607.01327 Computer Vision and Pattern Recognition +1607.01347 Atomic Physics +1607.02120 Instrumentation and Methods for Astrophysics +1607.02711 Optics +1607.02974 Digital Libraries +1607.03016 Quantum Gases +1607.03544 Statistical Mechanics +1607.03776 +1607.04474 Dynamical Systems +1607.04652 Disordered Systems and Neural Networks +1607.05377 +1607.05434 Discrete Mathematics +1607.05586 Classical Analysis and ODEs +1607.05830 Programming Languages +1607.06121 Lattice +1607.06537 Mesoscale and Nanoscale Physics +1607.06780 Statistical Mechanics +1607.06898 +1607.06922 Probability +1607.07500 Mesoscale and Nanoscale Physics +1607.07506 Theory +1607.07880 Phenomenology +1607.08499 Experiment +1607.08512 +1607.08541 Materials Science +1608.00011 Theory +1608.00130 Theory +1608.00195 Optimization and Control +1608.00226 Theory +1608.00378 +1608.00778 Machine Learning +1608.02424 Information Theory +1608.03338 Astrophysics of Galaxies +1608.03493 Superconductivity +1608.03498 Mesoscale and Nanoscale Physics +1608.03529 Materials Science +1608.04257 +1608.04366 Graphics +1608.04844 Quantitative Methods +1608.05618 Strongly Correlated Electrons +1608.05865 Spectral Theory +1608.05980 Other Condensed Matter +1608.06476 Quantitative Methods +1608.07549 Number Theory +1608.07952 Information Retrieval +1608.09004 Probability +1609.00494 Physics and Society +1609.00523 Computational Geometry +1609.00581 Numerical Analysis +1609.01032 Logic +1609.01035 Analysis of PDEs +1609.01863 +1609.02236 Artificial Intelligence +1609.02364 Materials Science +1609.02865 General Topology +1609.03298 +1609.03563 Strongly Correlated Electrons +1609.03737 Discrete Mathematics +1609.04370 Chemical Physics +1609.04636 Quantitative Methods +1609.04802 Computer Vision and Pattern Recognition +1609.04870 Instrumentation and Methods for Astrophysics +1609.04909 Computation and Language +1609.05166 Probability +1609.05472 Computational Complexity +1609.05848 +1609.05874 Phenomenology +1609.05907 Phenomenology +1609.05922 Phenomenology +1609.06885 Mesoscale and Nanoscale Physics +1609.07472 Computational Finance +1609.07543 Optics +1609.07556 Optics +1609.07562 Optics +1609.07574 Machine Learning +1609.07608 Optics +1609.07625 Numerical Analysis +1609.08039 Machine Learning +1609.08359 Computation and Language +1609.09537 Cryptography and Security +1609.09609 Phenomenology +1610.00957 Phenomenology +1610.01811 Superconductivity +1610.02174 Astrophysics of Galaxies +1610.02240 Algebraic Geometry +1610.02704 Computational Complexity +1610.02910 Classical Physics +1610.03303 Optimization and Control +1610.03359 Analysis of PDEs +1610.03425 Machine Learning +1610.04030 Astrophysics of Galaxies +1610.04198 Materials Science +1610.04540 +1610.04716 Quantum Gases +1610.04791 Representation Theory +1610.05415 Probability +1610.05524 Analysis of PDEs +1610.05898 Differential Geometry +1610.06429 Group Theory +1610.06941 Social and Information Networks +1610.06981 Theory +1610.07042 Group Theory +1610.07900 Atomic Physics +1610.07964 +1610.07985 Cryptography and Security +1610.08032 Theory +1610.08075 Algebraic Geometry +1610.08444 Algebraic Geometry +1610.08932 Algebraic Geometry +1610.09182 Information Theory +1610.09393 Number Theory +1610.09596 Functional Analysis +1610.09701 Analysis of PDEs +1610.09779 Lattice +1610.09801 Instrumentation and Detectors +1610.10042 Computer Vision and Pattern Recognition +1611.00132 Materials Science +1611.00297 Information Theory +1611.00453 Information Theory +1611.00690 Optimization and Control +1611.00759 Astrophysics of Galaxies +1611.00850 Computer Vision and Pattern Recognition +1611.00969 Materials Science +1611.01046 Machine Learning +1611.01576 Neural and Evolutionary Computing +1611.01587 Computation and Language +1611.01694 Dynamical Systems +1611.01795 Biological Physics +1611.01824 Systems and Control +1611.01874 Computation and Language +1611.01933 Superconductivity +1611.01971 Machine Learning +1611.01975 +1611.02378 Computation and Language +1611.02600 Experiment +1611.03044 Computer Science and Game Theory +1611.03096 +1611.03206 Optimization and Control +1611.03222 Analysis of PDEs +1611.03264 Emerging Technologies +1611.03468 Phenomenology +1611.03555 Rings and Algebras +1611.03562 Distributed, Parallel, and Cluster Computing +1611.03622 High Energy Astrophysical Phenomena +1611.03628 Logic in Computer Science +1611.03638 Superconductivity +1611.03690 Theory +1611.03968 Computer Vision and Pattern Recognition +1611.04113 Numerical Analysis +1611.04118 Lattice +1611.04135 Computer Vision and Pattern Recognition +1611.04161 Materials Science +1611.04182 Materials Science +1611.04221 Mesoscale and Nanoscale Physics +1611.04356 Number Theory +1611.04463 Analysis of PDEs +1611.04563 Algebraic Topology +1611.04606 Phenomenology +1611.04723 Cosmology and Nongalactic Astrophysics +1611.04831 Learning +1611.04843 Computational Complexity +1611.04920 Machine Learning +1611.04941 Statistical Finance +1611.04973 Combinatorics +1611.05147 Statistics Theory +1611.05319 Computer Vision and Pattern Recognition +1611.05359 Data Structures and Algorithms +1611.05380 Computer Science and Game Theory +1611.05477 Mesoscale and Nanoscale Physics +1611.05517 Probability +1611.05540 Phenomenology +1611.05546 Computer Vision and Pattern Recognition +1611.05564 Cryptography and Security +1611.05875 High Energy Astrophysical Phenomena +1611.05930 High Energy Astrophysical Phenomena +1611.05932 Astrophysics of Galaxies +1611.05956 Group Theory +1611.05996 Dynamical Systems +1611.06108 Artificial Intelligence +1611.06130 Cosmology and Nongalactic Astrophysics +1611.06157 Analysis of PDEs +1611.06205 Physics Education +1611.06214 +1611.06226 Chemical Physics +1611.06227 Other Condensed Matter +1611.06231 Solar and Stellar Astrophysics +1611.06232 Instrumentation and Methods for Astrophysics +1611.06233 Theory +1611.06235 Cosmology and Nongalactic Astrophysics +1611.06238 Strongly Correlated Electrons +1611.06240 Instrumentation and Detectors +1611.06241 Instrumentation and Detectors +1611.06242 Classical Physics +1611.06243 Chemical Physics +1611.06246 Chemical Physics +1611.06247 Mesoscale and Nanoscale Physics +1611.06248 Statistical Mechanics +1611.06249 Systems and Control +1611.06250 Chemical Physics +1611.06255 +1611.06258 Systems and Control +1611.06259 Combinatorics +1611.06260 Fluid Dynamics +1611.06263 Superconductivity +1611.06264 Combinatorics +1611.06265 Machine Learning +1611.06267 Combinatorics +1611.06268 General Topology +1611.06269 K-Theory and Homology +1611.06271 Computational Engineering, Finance, and Science +1611.06274 Mesoscale and Nanoscale Physics +1611.06277 Numerical Analysis +1611.06278 Dynamical Systems +1611.06279 Algebraic Geometry +1611.06280 Probability +1611.06282 Combinatorics +1611.06283 Phenomenology +1611.06285 Combinatorics +1611.06287 Astrophysics of Galaxies +1611.06288 Numerical Analysis +1611.06290 Commutative Algebra +1611.06291 Number Theory +1611.06292 Human-Computer Interaction +1611.06293 Data Analysis, Statistics and Probability +1611.06294 Strongly Correlated Electrons +1611.06296 Computer Vision and Pattern Recognition +1611.06297 Numerical Analysis +1611.06298 Representation Theory +1611.06299 Networking and Internet Architecture +1611.06300 Materials Science +1611.06301 Computer Vision and Pattern Recognition +1611.06302 Networking and Internet Architecture +1611.06304 Methodology +1611.06306 Learning +1611.06307 Computer Vision and Pattern Recognition +1611.06308 Combinatorics +1611.06309 Distributed, Parallel, and Cluster Computing +1611.06312 Combinatorics +1611.06313 +1611.06314 Social and Information Networks +1611.06316 Analysis of PDEs +1611.06317 Theory +1611.06318 Geophysics +1611.06320 Computation and Language +1611.06322 Social and Information Networks +1611.06325 Quantum Algebra +1611.06326 Theory +1611.06329 Data Structures and Algorithms +1611.06331 Statistical Mechanics +1611.06332 Number Theory +1611.06333 Atomic Physics +1611.06334 Distributed, Parallel, and Cluster Computing +1611.06335 Numerical Analysis +1611.06339 Theory +1611.06341 Probability +1611.06342 Learning +1611.06343 Distributed, Parallel, and Cluster Computing +1611.06344 Computational Finance +1611.06349 Representation Theory +1611.06351 Quantum Gases +1611.06352 +1611.06355 Computer Vision and Pattern Recognition +1611.06356 Instrumentation and Detectors +1611.06357 Information Theory +1611.06358 Quantum Gases +1611.06360 Numerical Analysis +1611.06361 Combinatorics +1611.06362 Computer Vision and Pattern Recognition +1611.06363 Complex Variables +1611.06364 History and Philosophy of Physics +1611.06365 Distributed, Parallel, and Cluster Computing +1611.06368 Robotics +1611.06370 Materials Science +1611.06371 Information Theory +1611.06372 Analysis of PDEs +1611.06374 Phenomenology +1611.06376 Theory +1611.06377 Complex Variables +1611.06378 Strongly Correlated Electrons +1611.06381 Methodology +1611.06382 Solar and Stellar Astrophysics +1611.06383 Logic +1611.06384 Quantum Gases +1611.06386 Mesoscale and Nanoscale Physics +1611.06387 Instrumentation and Methods for Astrophysics +1611.06392 Commutative Algebra +1611.06393 Group Theory +1611.06394 Metric Geometry +1611.06395 Computer Vision and Pattern Recognition +1611.06396 Computational Engineering, Finance, and Science +1611.06399 Methodology +1611.06401 Combinatorics +1611.06403 Computer Vision and Pattern Recognition +1611.06404 Quantum Gases +1611.06405 Information Theory +1611.06407 Statistical Finance +1611.06408 Applications +1611.06412 High Energy Astrophysical Phenomena +1611.06413 Multiagent Systems +1611.06414 Number Theory +1611.06416 Soft Condensed Matter +1611.06417 Databases +1611.06418 Combinatorics +1611.06420 Algebraic Geometry +1611.06421 Differential Geometry +1611.06423 Computation and Language +1611.06425 Materials Science +1611.06429 Plasma Physics +1611.06430 Computer Vision and Pattern Recognition +1611.06433 Statistical Mechanics +1611.06434 Optimization and Control +1611.06435 Solar and Stellar Astrophysics +1611.06436 Computational Engineering, Finance, and Science +1611.06439 Cryptography and Security +1611.06441 Combinatorics +1611.06443 Information Theory +1611.06444 Combinatorics +1611.06445 Optics +1611.06449 Quantum Algebra +1611.06452 Numerical Analysis +1611.06453 Computer Vision and Pattern Recognition +1611.06454 Rings and Algebras +1611.06456 Materials Science +1611.06457 Optics +1611.06458 Information Theory +1611.06460 Combinatorics +1611.06462 Functional Analysis +1611.06467 Computer Vision and Pattern Recognition +1611.06468 Artificial Intelligence +1611.06469 Functional Analysis +1611.06470 Dynamical Systems +1611.06471 Symplectic Geometry +1611.06472 Group Theory +1611.06473 Computer Vision and Pattern Recognition +1611.06474 Computer Vision and Pattern Recognition +1611.06475 Learning +1611.06480 Mesoscale and Nanoscale Physics +1611.06482 Strongly Correlated Electrons +1611.06483 Combinatorics +1611.06484 High Energy Astrophysical Phenomena +1611.06485 Optimization and Control +1611.06486 Computational Physics +1611.06487 Information Theory +1611.06488 Numerical Analysis +1611.06490 Numerical Analysis +1611.06493 Probability +1611.06494 +1611.06495 Computer Vision and Pattern Recognition +1611.06497 Optimization and Control +1611.06499 Phenomenology +1611.06500 Data Structures and Algorithms +1611.06501 Data Structures and Algorithms +1611.06502 Representation Theory +1611.06503 Mesoscale and Nanoscale Physics +1611.06505 Sound +1611.06507 Experiment +1611.06511 Fluid Dynamics +1611.06512 Materials Science +1611.06513 Fluid Dynamics +1611.06514 Optimization and Control +1611.06516 Lattice +1611.06517 Lattice +1611.06518 Phenomenology +1611.06519 Optics +1611.06520 Algebraic Geometry +1611.06521 Differential Geometry +1611.06524 Experiment +1611.06526 Analysis of PDEs +1611.06527 Information Theory +1611.06528 Commutative Algebra +1611.06529 Data Structures and Algorithms +1611.06530 Learning +1611.06532 Metric Geometry +1611.06535 Combinatorics +1611.06539 Neural and Evolutionary Computing +1611.06540 Phenomenology +1611.06542 Theory +1611.06543 Earth and Planetary Astrophysics +1611.06544 Social and Information Networks +1611.06545 Other Statistics +1611.06546 Combinatorics +1611.06548 Symbolic Computation +1611.06549 Superconductivity +1611.06550 +1611.06552 Theory +1611.06554 Mesoscale and Nanoscale Physics +1611.06555 +1611.06556 General Mathematics +1611.06558 Functional Analysis +1611.06559 Functional Analysis +1611.06560 Functional Analysis +1611.06561 Lattice +1611.06562 Optics +1611.06564 Functional Analysis +1611.06566 Probability +1611.06569 Group Theory +1611.06573 Astrophysics of Galaxies +1611.06574 Rings and Algebras +1611.06575 Statistics Theory +1611.06576 Optimization and Control +1611.06577 Number Theory +1611.06581 Fluid Dynamics +1611.06582 Instrumentation and Detectors +1611.06583 Physics Education +1611.06584 Functional Analysis +1611.06586 Experiment +1611.06587 Human-Computer Interaction +1611.06589 Data Structures and Algorithms +1611.06591 Information Theory +1611.06592 Materials Science +1611.06595 Fluid Dynamics +1611.06601 Lattice +1611.06603 Probability +1611.06604 Experiment +1611.06605 Data Structures and Algorithms +1611.06606 +1611.06607 Computer Vision and Pattern Recognition +1611.06608 +1611.06609 Networking and Internet Architecture +1611.06611 Quantum Algebra +1611.06616 Plasma Physics +1611.06617 Algebraic Geometry +1611.06618 Quantitative Methods +1611.06619 +1611.06620 Social and Information Networks +1611.06621 Dynamical Systems +1611.06622 Phenomenology +1611.06624 Learning +1611.06625 Social and Information Networks +1611.06626 Optimization and Control +1611.06628 Number Theory +1611.06629 Combinatorics +1611.06630 Number Theory +1611.06631 Logic in Computer Science +1611.06633 Rings and Algebras +1611.06637 Optics +1611.06638 Computer Vision and Pattern Recognition +1611.06639 Computation and Language +1611.06640 Combinatorics +1611.06642 Computer Vision and Pattern Recognition +1611.06645 Social and Information Networks +1611.06647 High Energy Astrophysical Phenomena +1611.06648 Experiment +1611.06650 Computational Complexity +1611.06652 Machine Learning +1611.06653 Methodology +1611.06654 Astrophysics of Galaxies +1611.06655 Statistics Theory +1611.06656 Computer Vision and Pattern Recognition +1611.06657 Mesoscale and Nanoscale Physics +1611.06658 History and Overview +1611.06659 Chemical Physics +1611.06660 Physics and Society +1611.06662 Optics +1611.06663 +1611.06667 Functional Analysis +1611.06668 Information Retrieval +1611.06669 Phenomenology +1611.06670 Statistics Theory +1611.06671 Computation and Language +1611.06673 Information Theory +1611.06674 Computer Vision and Pattern Recognition +1611.06675 Analysis of PDEs +1611.06677 Strongly Correlated Electrons +1611.06678 Computer Vision and Pattern Recognition +1611.06680 +1611.06681 Soft Condensed Matter +1611.06682 Networking and Internet Architecture +1611.06683 Computer Vision and Pattern Recognition +1611.06686 Machine Learning +1611.06687 Algebraic Geometry +1611.06688 Materials Science +1611.06692 Systems and Control +1611.06693 Fluid Dynamics +1611.06694 Computer Vision and Pattern Recognition +1611.06695 Physics and Society +1611.06696 Fluid Dynamics +1611.06697 Astrophysics of Galaxies +1611.06699 Probability +1611.06700 Quantum Algebra +1611.06703 Formal Languages and Automata Theory +1611.06704 Analysis of PDEs +1611.06708 Functional Analysis +1611.06709 Differential Geometry +1611.06711 Optics +1611.06712 Information Theory +1611.06713 Applications +1611.06714 Statistics Theory +1611.06717 Experiment +1611.06719 Analysis of PDEs +1611.06721 Computational Engineering, Finance, and Science +1611.06722 Computation and Language +1611.06724 Classical Analysis and ODEs +1611.06727 Statistics Theory +1611.06728 Systems and Control +1611.06729 Optimization and Control +1611.06730 Optimization and Control +1611.06731 +1611.06732 Solar and Stellar Astrophysics +1611.06734 Complex Variables +1611.06735 Logic +1611.06737 Social and Information Networks +1611.06738 Mesoscale and Nanoscale Physics +1611.06739 Methodology +1611.06740 Machine Learning +1611.06741 Statistical Mechanics +1611.06742 Chemical Physics +1611.06744 Statistics Theory +1611.06745 Probability +1611.06747 Instrumentation and Detectors +1611.06748 Computer Vision and Pattern Recognition +1611.06749 +1611.06750 Analysis of PDEs +1611.06751 Earth and Planetary Astrophysics +1611.06752 Statistics Theory +1611.06753 Statistics Theory +1611.06754 Disordered Systems and Neural Networks +1611.06755 Numerical Analysis +1611.06756 Algebraic Geometry +1611.06757 Computer Vision and Pattern Recognition +1611.06758 Lattice +1611.06760 Phenomenology +1611.06762 Plasma Physics +1611.06763 Mesoscale and Nanoscale Physics +1611.06764 Computer Vision and Pattern Recognition +1611.06765 +1611.06766 Optimization and Control +1611.06767 Experiment +1611.06768 Algebraic Geometry +1611.06770 Space Physics +1611.06771 +1611.06772 +1611.06774 +1611.06775 Representation Theory +1611.06776 Space Physics +1611.06777 Learning +1611.06778 Probability +1611.06779 Computer Vision and Pattern Recognition +1611.06780 +1611.06781 +1611.06782 Probability +1611.06784 Populations and Evolution +1611.06785 Networking and Internet Architecture +1611.06787 Solar and Stellar Astrophysics +1611.06788 Computation and Language +1611.06789 Algebraic Geometry +1611.06790 Analysis of PDEs +1611.06791 Learning +1611.06793 Computational Physics +1611.06794 Optics +1611.06795 Data Structures and Algorithms +1611.06796 Distributed, Parallel, and Cluster Computing +1611.06800 Machine Learning +1611.06801 Phenomenology +1611.06802 Phenomenology +1611.06804 Lattice +1611.06807 +1611.06808 Functional Analysis +1611.06810 Algebraic Geometry +1611.06811 +1611.06812 High Energy Astrophysical Phenomena +1611.06813 Exactly Solvable and Integrable Systems +1611.06815 Combinatorics +1611.06816 Cryptography and Security +1611.06818 Applications +1611.06822 Information Theory +1611.06823 Symplectic Geometry +1611.06825 Representation Theory +1611.06827 Combinatorics +1611.06828 Statistics Theory +1611.06829 Probability +1611.06830 Optimization and Control +1611.06832 Fluid Dynamics +1611.06833 Optimization and Control +1611.06834 Neurons and Cognition +1611.06836 Mesoscale and Nanoscale Physics +1611.06840 Formal Languages and Automata Theory +1611.06842 Combinatorics +1611.06846 General Mathematics +1611.06847 General Mathematics +1611.06848 Numerical Analysis +1611.06849 Symplectic Geometry +1611.06851 Applications +1611.06852 Combinatorics +1611.06853 General Mathematics +1611.06854 Quantum Gases +1611.06855 Materials Science +1611.06856 Chemical Physics +1611.06858 Multiagent Systems +1611.06861 Classical Analysis and ODEs +1611.06862 Numerical Analysis +1611.06863 Machine Learning +1611.06864 Distributed, Parallel, and Cluster Computing +1611.06865 Complex Variables +1611.06866 Numerical Analysis +1611.06867 General Mathematics +1611.06868 Computational Engineering, Finance, and Science +1611.06869 Materials Science +1611.06871 Quantum Gases +1611.06873 Statistics Theory +1611.06874 Computation +1611.06875 Networking and Internet Architecture +1611.06876 +1611.06878 Computer Vision and Pattern Recognition +1611.06879 Probability +1611.06880 Computer Vision and Pattern Recognition +1611.06882 Learning +1611.06885 Analysis of PDEs +1611.06886 Cosmology and Nongalactic Astrophysics +1611.06888 Adaptation and Self-Organizing Systems +1611.06894 Plasma Physics +1611.06895 Materials Science +1611.06897 Optics +1611.06898 +1611.06899 Number Theory +1611.06900 Group Theory +1611.06901 Lattice +1611.06902 +1611.06904 Networking and Internet Architecture +1611.06905 Networking and Internet Architecture +1611.06906 Computer Vision and Pattern Recognition +1611.06907 Representation Theory +1611.06909 High Energy Astrophysical Phenomena +1611.06910 Computer Science and Game Theory +1611.06911 Analysis of PDEs +1611.06912 +1611.06913 Complex Variables +1611.06914 Systems and Control +1611.06916 Earth and Planetary Astrophysics +1611.06917 Algebraic Geometry +1611.06918 Number Theory +1611.06921 Statistical Mechanics +1611.06923 History and Overview +1611.06924 Information Theory +1611.06925 Systems and Control +1611.06927 +1611.06928 Artificial Intelligence +1611.06930 Number Theory +1611.06933 Learning +1611.06936 +1611.06937 Neural and Evolutionary Computing +1611.06938 +1611.06939 Computer Vision and Pattern Recognition +1611.06940 Data Structures and Algorithms +1611.06944 Lattice +1611.06945 Neural and Evolutionary Computing +1611.06946 +1611.06948 Phenomenology +1611.06949 Computer Vision and Pattern Recognition +1611.06950 Computer Vision and Pattern Recognition +1611.06954 Operator Algebras +1611.06956 Networking and Internet Architecture +1611.06958 Algebraic Topology +1611.06959 Optimization and Control +1611.06960 Classical Analysis and ODEs +1611.06961 Social and Information Networks +1611.06963 Social and Information Networks +1611.06965 Instrumentation and Methods for Astrophysics +1611.06967 Number Theory +1611.06968 Representation Theory +1611.06969 Computer Vision and Pattern Recognition +1611.06971 Mesoscale and Nanoscale Physics +1611.06973 Neurons and Cognition +1611.06977 High Energy Astrophysical Phenomena +1611.06978 Optimization and Control +1611.06979 Combinatorics +1611.06980 Computational Complexity +1611.06981 Computer Vision and Pattern Recognition +1611.06983 Combinatorics +1611.06986 Computation and Language +1611.06987 Computer Vision and Pattern Recognition +1611.06989 Analysis of PDEs +1611.06990 Strongly Correlated Electrons +1611.06994 Analysis of PDEs +1611.06997 Computation and Language +1611.06998 Solar and Stellar Astrophysics +1611.07002 +1611.07004 Computer Vision and Pattern Recognition +1611.07007 Algebraic Topology +1611.07008 Data Structures and Algorithms +1611.07010 Phenomenology +1611.07011 Combinatorics +1611.07013 Numerical Analysis +1611.07014 Earth and Planetary Astrophysics +chao-dyn/9905028 Chaotic Dynamics +math/0607281 Combinatorics +math/0701332 Combinatorics +math/0702001 Quantum Algebra +nlin/0005067 Chaotic Dynamics +nlin/0106043 Chaotic Dynamics +nlin/0603030 Chaotic Dynamics +0712.4050 Disordered Systems and Neural Networks +0806.2310 Theory +0809.1978 Disordered Systems and Neural Networks +0811.3341 Complex Variables +0912.5468 Discrete Mathematics +1004.3655 Logic in Computer Science +1008.3746 Portfolio Management +1207.1671 +1208.0502 Instrumentation and Detectors +1208.1981 Methodology +1302.4759 Commutative Algebra +1302.6766 Machine Learning +1305.6625 Strongly Correlated Electrons +1310.2451 Machine Learning +1311.3464 Probability +1403.1539 +1404.0762 Algebraic Geometry +1404.5222 Portfolio Management +1405.2294 Learning +1405.5445 Spectral Theory +1409.6259 Spectral Theory +1409.8230 Computer Vision and Pattern Recognition +1411.5473 Dynamical Systems +1412.1613 Probability +1412.6333 Probability +1501.04495 Systems and Control +1501.06200 Algebraic Topology +1503.06188 Combinatorics +1503.07969 Geometric Topology +1503.09075 Classical Analysis and ODEs +1504.02006 Probability +1505.02984 +1505.03199 Probability +1505.04580 Mesoscale and Nanoscale Physics +1505.06468 +1505.07891 Representation Theory +1506.01231 +1506.03234 Statistical Mechanics +1506.07234 Information Theory +1506.07607 Astrophysics of Galaxies +1507.02044 Spectral Theory +1507.05676 +1507.06314 Phenomenology +1508.05161 Optimization and Control +1508.06774 Theory +1508.07739 Sound +1509.01329 Computer Vision and Pattern Recognition +1509.04586 Group Theory +1509.04593 Superconductivity +1509.09258 Group Theory +1510.02372 Algebraic Topology +1510.03157 Optimization and Control +1510.05297 Logic +1510.05820 +1510.06496 Systems and Control +1510.07028 Numerical Analysis +1510.07146 Data Analysis, Statistics and Probability +1510.07354 Phenomenology +1510.08782 Rings and Algebras +1510.08833 Algebraic Geometry +1511.00428 Systems and Control +1511.00756 Analysis of PDEs +1511.09291 Algebraic Geometry +1511.09414 Cosmology and Nongalactic Astrophysics +1512.03362 Theory +1512.03363 Theory +1512.04216 Strongly Correlated Electrons +1512.04554 Superconductivity +1512.06063 Chemical Physics +1512.06802 Analysis of PDEs +1512.09068 Phenomenology +1601.01974 Learning +1601.02177 Statistics Theory +1601.03443 Computation +1601.08224 Combinatorics +1602.00793 Numerical Analysis +1602.01276 Strongly Correlated Electrons +1602.02351 Cosmology and Nongalactic Astrophysics +1602.03738 Computational Physics +1602.04516 Experiment +1602.05780 +1603.00104 Networking and Internet Architecture +1603.00789 +1603.01702 Experiment +1603.01819 Information Theory +1603.02760 +1603.03406 Superconductivity +1603.03748 Materials Science +1603.04587 Mesoscale and Nanoscale Physics +1603.06672 Cosmology and Nongalactic Astrophysics +1603.06774 Experiment +1603.07986 General Physics +1603.08831 Learning +1604.03172 Operator Algebras +1604.03888 Information Theory +1604.06351 Earth and Planetary Astrophysics +1605.00786 +1605.01206 +1605.03597 Strongly Correlated Electrons +1605.03620 Applications +1605.03920 Theory +1605.04159 +1605.04860 +1605.05592 Differential Geometry +1605.06098 Theory +1605.06743 Neural and Evolutionary Computing +1605.06843 Portfolio Management +1605.06902 +1605.07060 Phenomenology +1605.07858 Atomic and Molecular Clusters +1605.08682 Physics and Society +1606.01375 Strongly Correlated Electrons +1606.02246 Algebraic Geometry +1606.03775 Methodology +1606.04272 Optimization and Control +1606.04565 Instrumentation and Detectors +1606.06113 Quantitative Methods +1606.06305 +1606.06738 Phenomenology +1606.07399 Mathematical Software +1606.07897 Optics +1606.09356 Mesoscale and Nanoscale Physics +1607.00739 Analysis of PDEs +1607.00764 Theory +1607.00990 Phenomenology +1607.01053 Probability +1607.01668 Machine Learning +1607.03095 Earth and Planetary Astrophysics +1607.05482 Fluid Dynamics +1607.05616 Differential Geometry +1607.05864 Combinatorics +1607.06717 Analysis of PDEs +1607.06971 Phenomenology +1607.07372 +1607.08118 Fluid Dynamics +1607.08760 Quantum Gases +1608.01069 Social and Information Networks +1608.01422 Cosmology and Nongalactic Astrophysics +1608.01782 Operator Algebras +1608.03174 Number Theory +1608.03273 +1608.05954 Statistical Mechanics +1608.06786 Superconductivity +1608.07153 Probability +1608.08151 Algebraic Geometry +1608.08450 Information Theory +1609.00116 Artificial Intelligence +1609.00174 Statistical Mechanics +1609.01554 Quantum Gases +1609.02147 Phenomenology +1609.02331 Analysis of PDEs +1609.03659 Computer Vision and Pattern Recognition +1609.04309 Computation and Language +1609.05258 Robotics +1609.06812 Probability +1609.06912 Theory +1609.07092 Numerical Analysis +1609.08184 Algebraic Geometry +1609.08859 Combinatorics +1609.09059 Neurons and Cognition +1609.09274 Group Theory +1609.09867 Symplectic Geometry +1610.00226 Number Theory +1610.00284 Representation Theory +1610.00768 Learning +1610.00934 Theory +1610.01478 Optimization and Control +1610.01766 Machine Learning +1610.02429 Statistical Mechanics +1610.03268 Phenomenology +1610.03562 Theory +1610.04425 Rings and Algebras +1610.05430 Complex Variables +1610.05872 Neurons and Cognition +1610.06578 Astrophysics of Galaxies +1610.06623 Analysis of PDEs +1610.06812 Dynamical Systems +1610.07675 Learning +1610.08801 +1610.08802 +1610.09122 +1610.09732 Data Structures and Algorithms +1610.10088 +1611.00196 Computation and Language +1611.00701 Phenomenology +1611.01150 +1611.04523 Algebraic Geometry +1611.05294 Lattice +1611.05992 Information Theory +1611.06455 Learning +1611.06571 Differential Geometry +1611.06707 +1611.06723 +1611.07246 Category Theory +1611.07799 Materials Science +1611.07923 +1611.09288 Computation and Language +1611.09670 Mesoscale and Nanoscale Physics +1611.10013 Cosmology and Nongalactic Astrophysics +1611.10036 Materials Science +1611.10342 Quantum Algebra +1612.01021 Atomic Physics +1612.01403 Methodology +1612.01780 Plasma Physics +1612.02023 Applications +1612.02079 Dynamical Systems +1612.02463 Physics and Society +1612.02568 Solar and Stellar Astrophysics +1612.03036 +1612.03207 Experiment +1612.03444 +1612.03536 Materials Science +1612.03730 Popular Physics +1612.03972 Strongly Correlated Electrons +1612.03987 Soft Condensed Matter +1612.04096 Networking and Internet Architecture +1612.04151 Numerical Analysis +1612.04290 +1612.04325 Number Theory +1612.04345 Applications +1612.04368 Medical Physics +1612.04369 Physics and Society +1612.04371 Operator Algebras +1612.04373 Theory +1612.04378 Theory +1612.04379 Earth and Planetary Astrophysics +1612.04382 Phenomenology +1612.04383 Phenomenology +1612.04386 Algebraic Topology +1612.04388 Lattice +1612.04391 Robotics +1612.04398 Materials Science +1612.04402 Computer Vision and Pattern Recognition +1612.04403 Social and Information Networks +1612.04404 Theory +1612.04405 Analysis of PDEs +1612.04406 Functional Analysis +1612.04407 Mathematical Finance +1612.04409 Software Engineering +1612.04410 Group Theory +1612.04411 Representation Theory +1612.04414 +1612.04418 Information Retrieval +1612.04419 +1612.04420 Spectral Theory +1612.04423 Neurons and Cognition +1612.04424 Dynamical Systems +1612.04425 Optimization and Control +1612.04426 Computation and Language +1612.04427 Mesoscale and Nanoscale Physics +1612.04428 Probability +1612.04429 +1612.04430 Networking and Internet Architecture +1612.04432 Social and Information Networks +1612.04434 +1612.04435 +1612.04436 Theory +1612.04437 Analysis of PDEs +1612.04439 Analysis of PDEs +1612.04441 Number Theory +1612.04444 Materials Science +1612.04445 Analysis of PDEs +1612.04446 Statistical Mechanics +1612.04447 Computer Vision and Pattern Recognition +1612.04448 Probability +1612.04449 Analysis of PDEs +1612.04450 Algebraic Topology +1612.04451 Computational Engineering, Finance, and Science +1612.04452 Probability +1612.04454 Probability +1612.04455 Materials Science +1612.04456 Information Theory +1612.04458 Phenomenology +1612.04462 Formal Languages and Automata Theory +1612.04465 Algebraic Geometry +1612.04466 Geometric Topology +1612.04467 Methodology +1612.04468 Computer Vision and Pattern Recognition +1612.04469 Artificial Intelligence +1612.04470 Performance +1612.04472 Probability +1612.04475 Mesoscale and Nanoscale Physics +1612.04477 Atomic Physics +1612.04481 Phenomenology +1612.04482 Optics +1612.04485 Computer Science and Game Theory +1612.04487 Optics +1612.04488 Computational Physics +1612.04489 Analysis of PDEs +1612.04490 Plasma Physics +1612.04491 Mesoscale and Nanoscale Physics +1612.04492 Operator Algebras +1612.04493 High Energy Astrophysical Phenomena +1612.04494 Logic +1612.04495 Materials Science +1612.04497 Optics +1612.04499 Computation and Language +1612.04500 +1612.04506 +1612.04507 Statistics Theory +1612.04509 Operator Algebras +1612.04510 Combinatorics +1612.04511 Functional Analysis +1612.04513 Logic in Computer Science +1612.04515 Information Theory +1612.04516 +1612.04518 Cryptography and Security +1612.04520 Computer Vision and Pattern Recognition +1612.04523 +1612.04524 Analysis of PDEs +1612.04526 Computer Vision and Pattern Recognition +1612.04527 Phenomenology +1612.04528 Biological Physics +1612.04529 Numerical Analysis +1612.04530 Computer Vision and Pattern Recognition +1612.04531 Networking and Internet Architecture +1612.04533 Analysis of PDEs +1612.04534 +1612.04536 Exactly Solvable and Integrable Systems +1612.04537 Phenomenology +1612.04538 Computation and Language +1612.04539 Number Theory +1612.04540 Astrophysics of Galaxies +1612.04541 Metric Geometry +1612.04542 Numerical Analysis +1612.04543 Differential Geometry +1612.04544 Instrumentation and Detectors +1612.04545 Optics +1612.04546 +1612.04547 Chemical Physics +1612.04548 Number Theory +1612.04549 Number Theory +1612.04550 Differential Geometry +1612.04552 Theory +1612.04554 +1612.04555 Applications +1612.04556 Adaptation and Self-Organizing Systems +1612.04557 Probability +1612.04558 Systems and Control +1612.04562 Optics +1612.04565 Astrophysics of Galaxies +1612.04566 Functional Analysis +1612.04567 Probability +1612.04568 Systems and Control +1612.04569 Geometric Topology +1612.04570 Algebraic Geometry +1612.04571 Data Structures and Algorithms +1612.04572 +1612.04573 Computer Vision and Pattern Recognition +1612.04574 Statistical Mechanics +1612.04575 Solar and Stellar Astrophysics +1612.04576 Probability +1612.04578 Functional Analysis +1612.04579 Lattice +1612.04580 Social and Information Networks +1612.04581 +1612.04582 Materials Science +1612.04585 Phenomenology +1612.04587 Solar and Stellar Astrophysics +1612.04588 Symbolic Computation +1612.04589 +1612.04590 Software Engineering +1612.04591 Solar and Stellar Astrophysics +1612.04592 Atmospheric and Oceanic Physics +1612.04595 High Energy Astrophysical Phenomena +1612.04596 Statistical Mechanics +1612.04597 Solar and Stellar Astrophysics +1612.04598 Human-Computer Interaction +1612.04599 Information Theory +1612.04603 Combinatorics +1612.04604 Instrumentation and Detectors +1612.04605 Plasma Physics +1612.04609 Computation and Language +1612.04610 Programming Languages +1612.04611 Soft Condensed Matter +1612.04612 Phenomenology +1612.04614 Instrumentation and Detectors +1612.04620 Materials Science +1612.04621 Lattice +1612.04622 Mesoscale and Nanoscale Physics +1612.04624 Theory +1612.04625 +1612.04626 Statistical Mechanics +1612.04627 Quantum Gases +1612.04628 Optics +1612.04630 Theory +1612.04631 Computer Vision and Pattern Recognition +1612.04633 Mesoscale and Nanoscale Physics +1612.04634 Mesoscale and Nanoscale Physics +1612.04636 Statistics Theory +1612.04637 Analysis of PDEs +1612.04638 +1612.04642 Computer Vision and Pattern Recognition +1612.04643 +1612.04644 Lattice +1612.04645 Analysis of PDEs +1612.04646 Information Theory +1612.04647 Computer Vision and Pattern Recognition +1612.04648 Software Engineering +1612.04651 Differential Geometry +1612.04652 Logic +1612.04654 Information Theory +1612.04655 Chaotic Dynamics +1612.04656 High Energy Astrophysical Phenomena +1612.04657 High Energy Astrophysical Phenomena +1612.04658 Theory +1612.04659 Neural and Evolutionary Computing +1612.04660 Geometric Topology +1612.04662 Information Theory +1612.04663 Fluid Dynamics +1612.04664 Cosmology and Nongalactic Astrophysics +1612.04666 Data Structures and Algorithms +1612.04667 Statistical Mechanics +1612.04670 High Energy Astrophysical Phenomena +1612.04671 Analysis of PDEs +1612.04672 High Energy Astrophysical Phenomena +1612.04673 Chemical Physics +1612.04675 Computation and Language +1612.04676 +1612.04677 Complex Variables +1612.04678 +1612.04680 Instrumentation and Methods for Astrophysics +1612.04681 Statistical Mechanics +1612.04683 Computation and Language +1612.04684 Solar and Stellar Astrophysics +1612.04685 Experiment +1612.04688 Multimedia +1612.04689 Data Structures and Algorithms +1612.04691 Materials Science +1612.04692 Computers and Society +1612.04693 Strongly Correlated Electrons +1612.04695 Other Quantitative Biology +1612.04698 Optimization and Control +1612.04699 Mesoscale and Nanoscale Physics +1612.04700 Materials Science +1612.04701 Phenomenology +1612.04702 Combinatorics +1612.04704 Systems and Control +1612.04706 Metric Geometry +1612.04707 Superconductivity +1612.04709 Materials Science +1612.04711 Exactly Solvable and Integrable Systems +1612.04712 Strongly Correlated Electrons +1612.04714 Solar and Stellar Astrophysics +1612.04716 Probability +1612.04719 Representation Theory +1612.04720 Cosmology and Nongalactic Astrophysics +1612.04721 Optimization and Control +1612.04722 Dynamical Systems +1612.04724 Optimization and Control +1612.04725 Analysis of PDEs +1612.04726 Cosmology and Nongalactic Astrophysics +1612.04727 Theory +1612.04730 Cosmology and Nongalactic Astrophysics +1612.04731 +1612.04732 Computation and Language +1612.04733 Computer Vision and Pattern Recognition +1612.04735 Solar and Stellar Astrophysics +1612.04737 Phenomenology +1612.04739 Learning +1612.04740 Statistics Theory +1612.04743 Theory +1612.04744 Computation and Language +1612.04745 Theory +1612.04746 Computer Science and Game Theory +1612.04750 Pattern Formation and Solitons +1612.04752 Dynamical Systems +1612.04754 Classical Analysis and ODEs +1612.04755 Computer Vision and Pattern Recognition +1612.04756 Materials Science +1612.04757 Computer Vision and Pattern Recognition +1612.04758 Theory +1612.04760 Plasma Physics +1612.04761 Probability +1612.04762 Atomic and Molecular Clusters +1612.04763 Probability +1612.04764 Differential Geometry +1612.04767 +1612.04769 Instrumentation and Detectors +1612.04770 Computer Vision and Pattern Recognition +1612.04771 Dynamical Systems +1612.04772 Instrumentation and Methods for Astrophysics +1612.04773 Optimization and Control +1612.04774 Computer Vision and Pattern Recognition +1612.04776 Geometric Topology +1612.04777 Systems and Control +1612.04778 Number Theory +1612.04779 +1612.04780 Computational Geometry +1612.04781 Materials Science +1612.04782 Optimization and Control +1612.04783 +1612.04784 Solar and Stellar Astrophysics +1612.04785 +1612.04786 Combinatorics +1612.04787 Computer Vision and Pattern Recognition +1612.04788 Strongly Correlated Electrons +1612.04789 Statistical Mechanics +1612.04793 Numerical Analysis +1612.04797 Information Theory +1612.04799 Machine Learning +1612.04800 Differential Geometry +1612.04802 Analysis of PDEs +1612.04803 +1612.04804 Learning +1612.04805 Differential Geometry +1612.04806 Instrumentation and Detectors +1612.04807 Mesoscale and Nanoscale Physics +1612.04808 Instrumentation and Detectors +1612.04809 Computer Vision and Pattern Recognition +1612.04810 Phenomenology +1612.04811 Computer Vision and Pattern Recognition +hep-ph/9411275 Phenomenology +0707.1082 Exactly Solvable and Integrable Systems +0707.1084 Exactly Solvable and Integrable Systems +0708.2512 Algebraic Geometry +0803.1439 Exactly Solvable and Integrable Systems +0807.1294 Exactly Solvable and Integrable Systems +0810.0766 Exactly Solvable and Integrable Systems +0902.1511 Exactly Solvable and Integrable Systems +1007.0359 Soft Condensed Matter +1007.4733 Soft Condensed Matter +1008.3074 +1010.3333 +1011.5091 +1012.3192 Theory +1105.4544 Number Theory +1107.3387 +1108.1090 Optics +1109.0833 Soft Condensed Matter +1109.3726 Optics +1112.4618 Analysis of PDEs +1202.1632 Algebraic Geometry +1202.2682 Exactly Solvable and Integrable Systems +1203.5318 Soft Condensed Matter +1204.6118 Methodology +1205.3144 Algebraic Geometry +1209.3358 Information Theory +1209.3638 Networking and Internet Architecture +1210.0913 +1211.4897 Algebraic Geometry +1301.1357 Soft Condensed Matter +1302.0674 +1304.0736 +1304.2075 +1305.5686 Exactly Solvable and Integrable Systems +1309.3188 Exactly Solvable and Integrable Systems +1310.1528 +1310.4067 Pricing of Securities +1401.5805 Optics +1403.3635 Combinatorics +1404.2980 Mesoscale and Nanoscale Physics +1404.3082 Computational Complexity +1404.6298 Computation +1404.6709 Optics +1404.6770 Optimization and Control +1405.2230 Mesoscale and Nanoscale Physics +1405.2688 +1405.6893 Discrete Mathematics +1406.1059 Networking and Internet Architecture +1406.1062 Computational Engineering, Finance, and Science +1406.1727 Information Theory +1406.7568 Astrophysics of Galaxies +1407.0064 Methodology +1407.4552 Combinatorics +1407.6918 Operator Algebras +1409.0370 Number Theory +1409.0398 Theory +1409.3114 Number Theory +1409.4926 Numerical Analysis +1409.6844 Phenomenology +1409.7849 Differential Geometry +1409.7971 Other Computer Science +1409.8041 Group Theory +1409.8642 Information Theory +1410.1259 Quantum Gases +1410.1452 Medical Physics +1410.1895 Digital Libraries +1410.2678 Plasma Physics +1410.4114 Plasma Physics +1410.6456 Superconductivity +1410.8149 Computation and Language +1410.8812 Experiment +1411.4948 Optics +1411.6118 Software Engineering +1412.2434 Mesoscale and Nanoscale Physics +1412.2649 Statistical Mechanics +1412.3127 +1412.3179 Dynamical Systems +1412.8513 Optics +1501.02274 Statistical Mechanics +1501.03091 Representation Theory +1501.05035 Applications +1501.07211 Analysis of PDEs +1501.07312 Materials Science +1502.00931 Dynamical Systems +1502.04943 +1502.05396 +1502.05591 Systems and Control +1502.06523 Materials Science +1503.00427 Statistical Mechanics +1503.00430 Statistical Mechanics +1503.00821 Optics +1503.01190 Computation and Language +1503.01784 Analysis of PDEs +1503.05503 Algebraic Geometry +1503.08072 Statistical Mechanics +1504.02042 Physics Education +1504.02056 Physics Education +1504.02113 +1505.00710 History and Overview +1505.01363 Group Theory +1505.02254 Pattern Formation and Solitons +1505.03685 Medical Physics +1505.05112 Number Theory +1505.05652 Mesoscale and Nanoscale Physics +1505.05841 Computation and Language +1505.07006 Strongly Correlated Electrons +1505.07668 Phenomenology +1506.02313 Theory +1506.06653 Cellular Automata and Lattice Gases +1506.06813 Discrete Mathematics +1506.08270 Numerical Analysis +1506.09031 +1507.00174 Optimization and Control +1507.01071 Probability +1507.02705 Plasma Physics +1507.03369 Dynamical Systems +1507.05434 Numerical Analysis +1507.05892 +1507.06638 Metric Geometry +1507.07438 Optics +1507.07618 Mesoscale and Nanoscale Physics +1507.08171 +1508.00536 Information Theory +1508.01480 +1508.02057 Algebraic Geometry +1508.04612 +1508.04782 Superconductivity +1508.04792 Optics +1508.05528 Fluid Dynamics +1508.06039 Logic +1509.01488 Logic +1509.03470 +1509.03638 Quantum Gases +1509.04081 Physics Education +1509.04084 Physics Education +1509.04296 Astrophysics of Galaxies +1509.04946 Statistical Mechanics +1509.05012 Soft Condensed Matter +1509.05432 Mesoscale and Nanoscale Physics +1509.06337 +1509.07323 +1509.07502 +1509.08130 Accelerator Physics +1509.08333 Learning +1509.09252 Classical Physics +1510.00849 Numerical Analysis +1510.00939 +1510.01295 Physics Education +1510.01296 Physics Education +1510.01299 Physics Education +1510.01300 Physics Education +1510.01319 Physics Education +1510.01761 Disordered Systems and Neural Networks +1510.02863 Applications +1510.05438 +1510.06752 Cosmology and Nongalactic Astrophysics +1510.07811 Strongly Correlated Electrons +1510.08007 Cryptography and Security +1510.08277 Solar and Stellar Astrophysics +1511.00758 Robotics +1511.02817 Strongly Correlated Electrons +1511.03247 Classical Analysis and ODEs +1511.03252 +1511.04402 Machine Learning +1511.04707 Learning +1511.05117 Strongly Correlated Electrons +1511.05384 Combinatorics +1511.05931 Logic +1511.06546 Genomics +1511.07248 Physics and Society +1511.07461 +1511.07548 +1511.09438 Optimization and Control +1512.02019 Experiment +1512.02208 Combinatorics +1512.04702 Optimization and Control +1512.04922 Statistics Theory +1512.07013 Strongly Correlated Electrons +1512.08624 Strongly Correlated Electrons +1512.09043 Strongly Correlated Electrons +1512.09358 Data Structures and Algorithms +1512.09360 Fluid Dynamics +1601.04710 Solar and Stellar Astrophysics +1601.05579 Algebraic Geometry +1601.06424 +1601.07720 Astrophysics of Galaxies +1601.07841 +1602.00412 Data Structures and Algorithms +1602.00929 Spectral Theory +1602.02304 +1602.02318 Representation Theory +1602.02963 Strongly Correlated Electrons +1602.03505 Risk Management +1602.03967 Rings and Algebras +1602.04442 Instrumentation and Detectors +1602.04500 Information Theory +1602.04562 Symbolic Computation +1602.04845 Multimedia +1602.04857 General Topology +1602.04969 +1602.04993 Mesoscale and Nanoscale Physics +1602.05187 Rings and Algebras +1602.05196 Theory +1602.05200 Earth and Planetary Astrophysics +1602.05208 Computation +1602.05210 Analysis of PDEs +1602.05211 Numerical Analysis +1602.05214 +1602.05217 Information Theory +1602.05220 Neurons and Cognition +1602.05222 +1602.05223 +1602.05228 Classical Analysis and ODEs +1602.05229 General Physics +1602.05232 Data Structures and Algorithms +1602.05233 Algebraic Geometry +1602.05236 Methodology +1602.05238 Computation +1602.05243 Instrumentation and Detectors +1602.05245 Chaotic Dynamics +1602.05251 Instrumentation and Detectors +1602.05254 Differential Geometry +1602.05255 Classical Physics +1602.05256 Computer Vision and Pattern Recognition +1602.05261 Fluid Dynamics +1602.05263 Data Structures and Algorithms +1602.05264 Optics +1602.05266 Differential Geometry +1602.05268 Analysis of PDEs +1602.05269 Superconductivity +1602.05271 Statistical Mechanics +1602.05274 Soft Condensed Matter +1602.05279 Combinatorics +1602.05281 Systems and Control +1602.05284 Mesoscale and Nanoscale Physics +1602.05285 Machine Learning +1602.05287 Information Theory +1602.05290 Differential Geometry +1602.05292 Computation and Language +1602.05299 Experiment +1602.05302 Theory +1602.05305 Networking and Internet Architecture +1602.05307 Computation and Language +1602.05309 Pattern Formation and Solitons +1602.05310 Learning +1602.05311 Multimedia +1602.05312 Computer Vision and Pattern Recognition +1602.05313 Algebraic Topology +1602.05316 Superconductivity +1602.05323 Statistical Finance +1602.05327 Optimization and Control +1602.05328 Genomics +1602.05329 Instrumentation and Methods for Astrophysics +1602.05331 Analysis of PDEs +1602.05332 Functional Analysis +1602.05333 Networking and Internet Architecture +1602.05340 Superconductivity +1602.05343 Number Theory +1602.05345 Cosmology and Nongalactic Astrophysics +1602.05348 Astrophysics of Galaxies +1602.05349 Applications +1602.05351 Information Theory +1602.05354 Numerical Analysis +1602.05355 +1602.05356 Computational Finance +1602.05358 Chaotic Dynamics +1602.05365 Programming Languages +1602.05370 Materials Science +1602.05372 Cryptography and Security +1602.05373 Logic +1602.05374 Analysis of PDEs +1602.05375 Materials Science +1602.05376 +1602.05377 Materials Science +1602.05379 Commutative Algebra +1602.05383 Strongly Correlated Electrons +1602.05384 Analysis of PDEs +1602.05386 Combinatorics +1602.05390 Mesoscale and Nanoscale Physics +1602.05392 Phenomenology +1602.05395 Software Engineering +1602.05396 History and Overview +1602.05397 Numerical Analysis +1602.05398 Logic +1602.05399 Applications +1602.05400 Logic in Computer Science +1602.05402 Medical Physics +1602.05404 Artificial Intelligence +1602.05408 Instrumentation and Methods for Astrophysics +1602.05414 Probability +1602.05416 Fluid Dynamics +1602.05417 Classical Physics +1602.05420 History and Overview +1602.05424 +1602.05425 Atomic and Molecular Clusters +1602.05426 +1602.05428 History and Overview +1602.05429 Geometric Topology +1602.05435 Materials Science +1602.05436 Machine Learning +1602.05437 Data Structures and Algorithms +1602.05439 Computer Vision and Pattern Recognition +1602.05440 Physics Education +1602.05444 Numerical Analysis +1602.05446 Combinatorics +1602.05451 +1602.05453 Applications +1602.05454 Methodology +1602.05455 Methodology +1602.05457 Spectral Theory +1602.05459 Spectral Theory +1602.05460 Robotics +1602.05461 Physics Education +1602.05462 Information Theory +1602.05467 Numerical Analysis +1602.05471 Mathematical Finance +1602.05472 Combinatorics +1602.05480 Information Theory +1602.05481 Computational Geometry +1602.05483 Statistical Mechanics +1602.05486 Instrumentation and Methods for Astrophysics +1602.05487 Metric Geometry +1602.05488 Accelerator Physics +1602.05489 Statistical Finance +1602.05492 Differential Geometry +1602.05497 Data Analysis, Statistics and Probability +1602.05500 Probability +1602.05507 Systems and Control +1602.05510 Distributed, Parallel, and Cluster Computing +1602.05511 Information Theory +1602.05512 Geometric Topology +1602.05513 Information Theory +1602.05515 Combinatorics +1602.05522 Statistics Theory +1602.05524 Analysis of PDEs +1602.05532 Quantum Gases +1602.05537 Systems and Control +1602.05539 Phenomenology +1602.05540 Methodology +1602.05542 Combinatorics +1602.05543 High Energy Astrophysical Phenomena +1602.05546 Robotics +1602.05548 Networking and Internet Architecture +1602.05549 Applications +1602.05551 Distributed, Parallel, and Cluster Computing +1602.05556 Networking and Internet Architecture +1602.05558 Molecular Networks +1602.05559 Computers and Society +1602.05563 Machine Learning +1602.05565 Probability +1602.05566 Materials Science +1602.05568 Learning +hep-ph/0311077 Phenomenology +nlin/0211008 Exactly Solvable and Integrable Systems +nlin/0211018 Exactly Solvable and Integrable Systems +nlin/0310010 Exactly Solvable and Integrable Systems +nlin/0501044 Exactly Solvable and Integrable Systems +nlin/0510068 Exactly Solvable and Integrable Systems +physics/0406144 General Physics +0710.2107 Group Theory +0804.1810 Probability +0812.1036 Group Theory +0903.3479 Chaotic Dynamics +0908.1962 Soft Condensed Matter +0908.2857 Mesoscale and Nanoscale Physics +0911.2971 +1002.0892 General Physics +1104.5221 Geometric Topology +1111.7180 Materials Science +1203.0832 +1203.2436 +1203.6676 Symplectic Geometry +1208.1974 Experiment +1209.4624 Probability +1210.1120 Number Theory +1210.3740 Chaotic Dynamics +1211.3869 Information Theory +1211.4579 Cosmology and Nongalactic Astrophysics +1212.0463 Statistics Theory +1301.6070 General Topology +1301.7297 Theory +1304.7938 Cosmology and Nongalactic Astrophysics +1305.5903 Strongly Correlated Electrons +1307.1149 Data Analysis, Statistics and Probability +1307.4986 Chaotic Dynamics +1308.2587 Algebraic Topology +1308.3853 Number Theory +1309.2484 +1310.3861 Group Theory +1310.5489 Geometric Topology +1311.0763 +1311.4515 Differential Geometry +1311.4871 Operator Algebras +1312.3493 +1401.1061 Artificial Intelligence +1401.3231 Representation Theory +1401.4400 Analysis of PDEs +1401.4952 Computational Geometry +1402.3366 Quantum Gases +1402.4045 +1402.5179 +1403.1512 Data Structures and Algorithms +1403.7031 Quantum Gases +1404.0024 Cryptography and Security +1404.2825 Information Theory +1404.3569 Solar and Stellar Astrophysics +1405.7038 Astrophysics of Galaxies +1406.1321 +1406.4392 Systems and Control +1407.3970 +1407.8269 Multiagent Systems +1408.2499 Geometric Topology +1408.4695 Cosmology and Nongalactic Astrophysics +1408.4844 Exactly Solvable and Integrable Systems +1409.3664 Algebraic Geometry +1409.5582 +1412.3848 Group Theory +1412.3864 Logic +1501.01612 Algebraic Geometry +1501.01743 +1501.02220 Metric Geometry +1501.05619 Combinatorics +1501.06611 +1502.02719 Functional Analysis +1502.05990 Statistics Theory +1503.01746 Classical Analysis and ODEs +1503.05199 Strongly Correlated Electrons +1503.05841 +1503.06414 Materials Science +1503.06469 Category Theory +1503.07168 Cosmology and Nongalactic Astrophysics +1503.09112 Formal Languages and Automata Theory +1504.02877 Phenomenology +1504.03114 Atomic Physics +1504.04785 Information Theory +1505.00631 Numerical Analysis +1505.00705 Differential Geometry +1505.01688 Physics and Society +1505.02981 Astrophysics of Galaxies +1505.04980 Representation Theory +1505.05292 Metric Geometry +1505.06694 +1505.08043 Combinatorics +1506.01686 Differential Geometry +1506.01917 Methodology +1506.08199 Strongly Correlated Electrons +1506.09091 Optimization and Control +1506.09129 Commutative Algebra +1506.09168 Commutative Algebra +1506.09184 Probability +1507.00473 Learning +1507.01296 Statistics Theory +1507.01824 Number Theory +1507.06094 Statistical Mechanics +1507.06255 Fluid Dynamics +1507.07149 +1508.02994 Optimization and Control +1508.03201 Physics and Society +1508.03807 Rings and Algebras +1508.03929 Computer Vision and Pattern Recognition +1508.04106 Probability +1508.04289 Numerical Analysis +1508.04326 Computer Vision and Pattern Recognition +1508.05233 Mathematical Finance +1508.05600 Algebraic Geometry +1509.00262 +1509.01534 Spectral Theory +1509.02688 Complex Variables +1509.03136 Numerical Analysis +1509.04485 Combinatorics +1509.06426 Fluid Dynamics +1509.07644 Number Theory +1510.01277 Optics +1510.01934 Differential Geometry +1510.02294 Materials Science +1510.02443 +1510.02616 +1510.03641 Probability +1510.04700 Cosmology and Nongalactic Astrophysics +1510.06333 Classical Analysis and ODEs +1510.07400 +1510.07710 Group Theory +1510.07942 Fluid Dynamics +1510.08347 Analysis of PDEs +1510.08998 Combinatorics +1511.02943 +1511.03078 Fluid Dynamics +1511.04153 Computer Vision and Pattern Recognition +1511.04584 Mesoscale and Nanoscale Physics +1511.05019 Numerical Analysis +1511.06239 Differential Geometry +1511.07527 Data Structures and Algorithms +1511.08814 Quantum Gases +1511.08851 Logic in Computer Science +1512.00209 Statistics Theory +1512.02279 Group Theory +1512.02957 +1512.03394 Strongly Correlated Electrons +1512.03665 Analysis of PDEs +1512.05020 Computers and Society +1512.05438 Number Theory +1512.05532 Fluid Dynamics +1512.06283 Data Structures and Algorithms +1512.06825 High Energy Astrophysical Phenomena +1512.07086 Superconductivity +1512.07146 Learning +1512.07269 Numerical Analysis +1512.07722 Phenomenology +1601.00601 Theory +1601.01581 Combinatorics +1601.01824 Discrete Mathematics +1601.02161 Probability +1601.02434 Plasma Physics +1601.02556 Quantum Gases +1601.02896 Combinatorics +1601.03363 Metric Geometry +1601.03605 Probability +1601.03670 Applications +1601.04053 Statistical Mechanics +1601.04286 Statistical Mechanics +1601.04654 Phenomenology +1601.05418 Cosmology and Nongalactic Astrophysics +1601.05479 Algebraic Geometry +1601.05804 Earth and Planetary Astrophysics +1601.06318 Algebraic Topology +1601.07194 Classical Analysis and ODEs +1602.00021 Operator Algebras +1602.02375 Combinatorics +1602.02514 Machine Learning +1602.02680 Computational Engineering, Finance, and Science +1602.02957 +1602.04866 +1602.05259 Operator Algebras +1602.06881 Optics +1602.07392 Statistical Mechanics +1602.07788 Optics +1602.08568 Molecular Networks +1603.00791 Quantum Gases +1603.00948 Optics +1603.02049 Methodology +1603.02116 Differential Geometry +1603.02371 Databases +1603.02435 +1603.02681 Strongly Correlated Electrons +1603.03069 +1603.03771 Theory +1603.04209 Analysis of PDEs +1603.05705 +1603.05727 Analysis of PDEs +1603.06175 Physics and Society +1603.06269 Number Theory +1603.06341 Theory +1603.06820 Analysis of PDEs +1603.07327 Information Theory +1603.07521 Metric Geometry +1603.07775 Systems and Control +1603.08381 Mesoscale and Nanoscale Physics +1603.09600 Analysis of PDEs +1603.09632 Plasma Physics +1604.01169 Data Structures and Algorithms +1604.02467 Quantitative Methods +1604.02477 Learning +1604.03531 +1604.03708 +1604.03755 Computer Vision and Pattern Recognition +1604.04684 Emerging Technologies +1604.05395 Optics +1604.06009 Representation Theory +1604.06143 Information Theory +1604.06486 Computer Vision and Pattern Recognition +1604.06918 Data Structures and Algorithms +1604.07547 Computer Vision and Pattern Recognition +1604.07814 Optimization and Control +1604.07917 +1604.08408 +1604.08482 Phenomenology +1605.01087 +1605.01234 Strongly Correlated Electrons +1605.02406 Robotics +1605.02572 Phenomenology +1605.02625 Phenomenology +1605.02727 Number Theory +1605.02882 Data Structures and Algorithms +1605.02948 Computation and Language +1605.04608 Experiment +1605.04612 Phenomenology +1605.04787 Probability +1605.04866 Geometric Topology +1605.04883 Atomic Physics +1605.05290 Adaptation and Self-Organizing Systems +1605.05806 Algebraic Geometry +1605.06317 +1605.06414 Physics and Society +1605.06521 Operator Algebras +1605.06800 Geometric Topology +1605.06833 Geometric Topology +1605.07276 +1605.07289 Computer Vision and Pattern Recognition +1605.07612 High Energy Astrophysical Phenomena +1605.07813 +1605.07954 Theory +1605.08492 Social and Information Networks +1605.08760 Phenomenology +1605.09791 Superconductivity +1606.00602 Machine Learning +1606.00691 General Physics +1606.00768 Mesoscale and Nanoscale Physics +1606.00788 Analysis of PDEs +1606.01414 Quantum Algebra +1606.01822 Machine Learning +1606.01857 Theory +1606.01880 +1606.02182 Discrete Mathematics +1606.02494 Superconductivity +1606.02681 Rings and Algebras +1606.03152 Computation and Language +1606.03632 Computation and Language +1606.04334 Computational Geometry +1606.04798 Instrumentation and Methods for Astrophysics +1606.04866 Functional Analysis +1606.05083 Mesoscale and Nanoscale Physics +1606.05529 Category Theory +1606.05813 Differential Geometry +1606.05929 Neural and Evolutionary Computing +1606.06105 Fluid Dynamics +1606.06781 Number Theory +1606.06936 Fluid Dynamics +1606.07259 Databases +1606.07693 High Energy Astrophysical Phenomena +1606.07798 +1606.08305 Fluid Dynamics +1606.08342 Fluid Dynamics +1606.08396 Fluid Dynamics +1606.09009 Fluid Dynamics +1606.09462 Algebraic Geometry +1607.00798 Combinatorics +1607.01408 Fluid Dynamics +1607.01483 Astrophysics of Galaxies +1607.01845 Social and Information Networks +1607.03860 Functional Analysis +1607.03891 Astrophysics of Galaxies +1607.04331 Machine Learning +1607.04490 Probability +1607.04532 Methodology +1607.04647 Mesoscale and Nanoscale Physics +1607.04989 Computational Geometry +1607.05147 Mesoscale and Nanoscale Physics +1607.05315 High Energy Astrophysical Phenomena +1607.05356 Performance +1607.05397 Data Structures and Algorithms +1607.06045 Mesoscale and Nanoscale Physics +1607.06263 Digital Libraries +1607.06441 Strongly Correlated Electrons +1607.07070 Geophysics +1607.07301 Theory +1607.07549 Statistics Theory +1607.08189 Instrumentation and Detectors +1608.00376 Algebraic Geometry +1608.00429 Representation Theory +1608.01250 Computer Vision and Pattern Recognition +1608.01447 Phenomenology +1608.01769 Computer Vision and Pattern Recognition +1608.01846 Systems and Control +1608.02028 Pricing of Securities +1608.02581 Classical Analysis and ODEs +1608.02683 Optimization and Control +1608.03236 Tissues and Organs +1608.04590 +1608.04605 Fluid Dynamics +1608.05005 +1608.05057 Materials Science +1608.05092 Strongly Correlated Electrons +1608.05362 Probability +1608.05849 Number Theory +1608.05949 Learning +1608.06219 Astrophysics of Galaxies +1608.06225 Disordered Systems and Neural Networks +1608.06235 Robotics +1608.06251 +1608.06338 Computer Vision and Pattern Recognition +1608.06352 Strongly Correlated Electrons +1608.06445 Strongly Correlated Electrons +1608.06888 Methodology +1608.07384 Optics +1608.07937 Materials Science +1608.08272 +1608.08382 Strongly Correlated Electrons +1608.08932 Populations and Evolution +1608.08973 Cosmology and Nongalactic Astrophysics +1608.08999 Probability +1609.00143 Theory +1609.00361 Computer Vision and Pattern Recognition +1609.00672 +1609.00676 Experiment +1609.00695 Methodology +1609.01312 Differential Geometry +1609.01329 Computer Vision and Pattern Recognition +1609.01433 Strongly Correlated Electrons +1609.01664 Genomics +1609.02029 Group Theory +1609.02255 +1609.02290 Theory +1609.02622 Social and Information Networks +1609.02721 Populations and Evolution +1609.02833 Number Theory +1609.02913 Astrophysics of Galaxies +1609.02914 Solar and Stellar Astrophysics +1609.02918 Astrophysics of Galaxies +1609.02920 Astrophysics of Galaxies +1609.02924 Cosmology and Nongalactic Astrophysics +1609.02926 Theory +1609.02928 Optimization and Control +1609.02929 Chemical Physics +1609.02931 Robotics +1609.02932 Computer Vision and Pattern Recognition +1609.02933 Instrumentation and Detectors +1609.02934 Instrumentation and Detectors +1609.02935 Analysis of PDEs +1609.02938 Quantitative Methods +1609.02939 High Energy Astrophysical Phenomena +1609.02940 High Energy Astrophysical Phenomena +1609.02945 Social and Information Networks +1609.02947 Cryptography and Security +1609.02948 Computer Vision and Pattern Recognition +1609.02949 Algebraic Topology +1609.02950 Methodology +1609.02953 Cryptography and Security +1609.02954 Cryptography and Security +1609.02955 Spectral Theory +1609.02956 Populations and Evolution +1609.02957 Data Structures and Algorithms +1609.02959 Populations and Evolution +1609.02960 Computation and Language +1609.02963 Optimization and Control +1609.02965 Information Theory +1609.02966 Cryptography and Security +1609.02969 +1609.02970 Logic +1609.02972 Classical Analysis and ODEs +1609.02973 +1609.02974 Computer Vision and Pattern Recognition +1609.02975 Metric Geometry +1609.02976 Artificial Intelligence +1609.02977 Physics and Society +1609.02981 Other Quantitative Biology +1609.02982 Networking and Internet Architecture +1609.02985 Information Theory +1609.02987 Cryptography and Security +1609.02988 Algebraic Geometry +1609.02990 Phenomenology +1609.02994 Computer Vision and Pattern Recognition +1609.02995 Other Computer Science +1609.03000 Data Structures and Algorithms +1609.03001 Combinatorics +1609.03002 Combinatorics +1609.03003 Cryptography and Security +1609.03004 Probability +1609.03009 +1609.03010 Superconductivity +1609.03011 Optimization and Control +1609.03014 Logic in Computer Science +1609.03016 Optimization and Control +1609.03017 Optimization and Control +1609.03020 Cryptography and Security +1609.03021 Functional Analysis +1609.03022 +1609.03023 Category Theory +1609.03024 Computer Vision and Pattern Recognition +1609.03025 +1609.03026 Group Theory +1609.03027 Classical Analysis and ODEs +1609.03028 Group Theory +1609.03029 Pricing of Securities +1609.03031 Number Theory +1609.03032 Graphics +1609.03034 Phenomenology +1609.03035 Human-Computer Interaction +1609.03036 Number Theory +1609.03041 Combinatorics +1609.03043 Differential Geometry +1609.03044 Statistical Mechanics +1609.03045 Methodology +1609.03047 Cryptography and Security +1609.03048 Soft Condensed Matter +1609.03049 Combinatorics +1609.03050 Human-Computer Interaction +1609.03054 Learning +1609.03059 Combinatorics +1609.03060 Probability +1609.03062 Formal Languages and Automata Theory +1609.03064 +1609.03066 Chemical Physics +1609.03067 Information Retrieval +1609.03069 Fluid Dynamics +1609.03070 Dynamical Systems +1609.03073 Genomics +1609.03074 Logic +1609.03075 +1609.03076 Robotics +1609.03077 Chemical Physics +1609.03078 Logic +1609.03079 Strongly Correlated Electrons +1609.03081 Functional Analysis +1609.03083 General Mathematics +1609.03084 Combinatorics +1609.03086 +1609.03087 Number Theory +1609.03088 Statistics Theory +1609.03091 Number Theory +1609.03094 Space Physics +1609.03097 Dynamical Systems +1609.03098 Soft Condensed Matter +1609.03099 Optimization and Control +1609.03101 Combinatorics +1609.03104 Phenomenology +1609.03105 Classical Analysis and ODEs +1609.03106 Information Theory +1609.03107 Probability +1609.03108 Robotics +1609.03109 Cryptography and Security +1609.03110 Discrete Mathematics +1609.03111 Analysis of PDEs +1609.03112 Astrophysics of Galaxies +1609.03115 Optimization and Control +1609.03119 General Topology +1609.03123 Computational Physics +1609.03128 Combinatorics +1609.03129 Tissues and Organs +1609.03131 Space Physics +1609.03132 Probability +1609.03133 Commutative Algebra +1609.03134 Number Theory +1609.03139 Logic in Computer Science +1609.03140 Computer Vision and Pattern Recognition +1609.03145 Artificial Intelligence +1609.03146 Programming Languages +1609.03147 Instrumentation and Methods for Astrophysics +1609.03148 Computation and Language +1609.03150 Information Theory +1609.03152 +1609.03153 Quantum Gases +1609.03155 Representation Theory +1609.03157 Distributed, Parallel, and Cluster Computing +1609.03159 +1609.03161 Systems and Control +1609.03163 +1609.03164 Machine Learning +1609.03169 Classical Physics +1609.03170 +1609.03171 +1609.03172 Probability +1609.03173 Information Theory +1609.03174 +1609.03175 Numerical Analysis +1609.03180 Analysis of PDEs +1609.03182 Probability +1609.03183 Optimization and Control +1609.03184 Information Theory +1609.03185 +1609.03186 Dynamical Systems +1609.03187 Number Theory +1609.03192 Group Theory +1609.03194 Optimization and Control +1609.03195 Solar and Stellar Astrophysics +1609.03198 Logic +1609.03199 Combinatorics +1609.03200 Cosmology and Nongalactic Astrophysics +1609.03204 Computation and Language +1609.03205 Computation and Language +1609.03206 Strongly Correlated Electrons +1609.03207 Physics and Society +1609.03211 Social and Information Networks +1609.03213 Sound +1609.03214 Category Theory +1609.03216 Combinatorics +1609.03217 +1609.03223 Economics +1609.03224 Human-Computer Interaction +1609.03225 Combinatorics +1609.03226 Functional Analysis +1609.03228 Methodology +1609.03229 Applications +1609.03230 +1609.03231 Analysis of PDEs +1609.03232 Logic +1609.03234 Computer Science and Game Theory +1609.03236 Analysis of PDEs +1609.03237 Statistical Mechanics +1609.03241 Statistics Theory +1609.03242 Experiment +1609.03245 Algebraic Geometry +1609.03247 Differential Geometry +1609.03248 Physics and Society +1609.03251 Data Structures and Algorithms +1609.03255 +1609.03256 +1609.03258 Information Theory +1609.03260 Information Theory +1609.03261 Optimization and Control +1609.03264 High Energy Astrophysical Phenomena +1609.03265 Probability +1609.03266 Computers and Society +1609.03267 Experiment +1609.03270 Functional Analysis +1609.03272 Commutative Algebra +1609.03273 Instrumentation and Methods for Astrophysics +1609.03276 Category Theory +1609.03277 Computer Vision and Pattern Recognition +1609.03283 Human-Computer Interaction +1609.03284 Fluid Dynamics +1609.03286 Artificial Intelligence +1609.03287 Instrumentation and Detectors +1609.03289 Networking and Internet Architecture +1609.03294 +1609.03296 Sound +1609.03297 Methodology +1609.03300 Atomic Physics +1609.03303 Functional Analysis +1609.03305 Cryptography and Security +1609.03306 Classical Physics +1609.03307 Differential Geometry +1609.03308 +1609.03311 Differential Geometry +1609.03312 Computers and Society +1609.03313 Mesoscale and Nanoscale Physics +1609.03314 Differential Geometry +1609.03325 Classical Analysis and ODEs +1609.03326 Numerical Analysis +1609.03327 Phenomenology +1609.03328 Numerical Analysis +1609.03333 Methodology +1609.03335 Superconductivity +1609.03336 High Energy Astrophysical Phenomena +1609.03337 Molecular Networks +1609.03340 Probability +1609.03341 Logic in Computer Science +1609.03345 Logic in Computer Science +1609.03346 Databases +1609.03347 Performance +1609.03349 Algebraic Geometry +1609.03352 Atomic Physics +1609.03353 Plasma Physics +1609.03359 +1609.03360 Plasma Physics +1609.03361 Mathematical Software +1609.03362 Optics +1609.03363 Information Theory +1609.03365 Statistical Mechanics +1609.03367 Methodology +1609.03369 +1609.03371 Logic +1609.03372 Neurons and Cognition +1609.03373 Numerical Analysis +1609.03376 Computation and Language +1609.03377 Metric Geometry +1609.03381 Mesoscale and Nanoscale Physics +1609.03384 Instrumentation and Detectors +1609.03385 Digital Libraries +1609.03387 Networking and Internet Architecture +1609.03388 Astrophysics of Galaxies +1609.03392 Solar and Stellar Astrophysics +1609.03393 Combinatorics +1609.03394 General Mathematics +1609.03395 General Mathematics +1609.03401 Combinatorics +1609.03404 General Physics +1609.03405 Functional Analysis +1609.03406 Analysis of PDEs +1609.03408 Phenomenology +1609.03410 Fluid Dynamics +1609.03413 General Mathematics +1609.03414 Analysis of PDEs +1609.03415 Computer Vision and Pattern Recognition +1609.03416 +1609.03417 Strongly Correlated Electrons +1609.03418 Plasma Physics +1609.03427 Fluid Dynamics +1609.03428 Astrophysics of Galaxies +1609.03432 Logic in Computer Science +1609.03436 Methodology +1609.03437 Artificial Intelligence +1609.03439 Applications +1609.03440 Atomic Physics +1609.03441 Computation and Language +1609.03442 Social and Information Networks +1609.03443 Numerical Analysis +1609.03444 Phenomenology +1609.03447 Dynamical Systems +1609.03448 Learning +1609.03449 Earth and Planetary Astrophysics +1609.03452 Biological Physics +1609.03456 Materials Science +1609.03457 Digital Libraries +1609.03458 Materials Science +1609.03460 Formal Languages and Automata Theory +1609.03463 Chemical Physics +1609.03464 Solar and Stellar Astrophysics +1609.03465 Systems and Control +1609.03468 Combinatorics +1609.03470 Statistics Theory +1609.03471 Economics +1609.03472 High Energy Astrophysical Phenomena +1609.03473 Metric Geometry +1609.03474 Mesoscale and Nanoscale Physics +1609.03476 Systems and Control +1609.03478 Social and Information Networks +1609.03479 Methodology +1609.03481 Accelerator Physics +1609.03483 Statistical Mechanics +1609.03484 Software Engineering +1609.03485 Algebraic Topology +1609.03486 Materials Science +1609.03487 Superconductivity +1609.03491 Number Theory +1609.03492 Group Theory +1609.03493 Theory +1609.03495 Accelerator Physics +1609.03496 Chemical Physics +1609.03497 Combinatorics +1609.03498 Networking and Internet Architecture +1609.03500 Computer Vision and Pattern Recognition +1609.03501 Combinatorics +1609.03504 Number Theory +1609.03506 Quantum Algebra +1609.03507 Combinatorics +1609.03509 Cosmology and Nongalactic Astrophysics +1609.03511 Statistics Theory +1609.03512 Dynamical Systems +1609.03514 Functional Analysis +1609.03515 Strongly Correlated Electrons +1609.03517 Physics Education +1609.03519 Machine Learning +1609.03525 Group Theory +1609.03526 Physics and Society +1609.03527 Phenomenology +1609.03529 Computer Vision and Pattern Recognition +1609.03530 Experiment +1609.03531 Instrumentation and Methods for Astrophysics +1609.03532 Computer Vision and Pattern Recognition +1609.03534 Theory +1609.03535 Cellular Automata and Lattice Gases +1609.03536 Computer Vision and Pattern Recognition +1609.03537 Computer Science and Game Theory +1609.03538 Mesoscale and Nanoscale Physics +1609.03541 Disordered Systems and Neural Networks +1609.03542 Solar and Stellar Astrophysics +1609.03544 Machine Learning +1609.03545 Data Structures and Algorithms +1609.03547 Information Theory +1609.03548 +1609.03549 Combinatorics +hep-th/0302114 Theory +math/0405482 Combinatorics +math/0502060 Group Theory +1604.08359 Classical Analysis and ODEs +1604.08387 Algebraic Topology +1604.08426 Computer Vision and Pattern Recognition +1604.08447 Classical Physics +1604.08513 +1604.08529 History and Philosophy of Physics +0906.0623 Group Theory +0906.3749 Logic +1006.3895 Representation Theory +1006.4586 Data Structures and Algorithms +1009.2817 Functional Analysis +1012.4228 Dynamical Systems +1105.4830 Algebraic Geometry +1111.3071 Optics +1202.0916 +1204.4933 Strongly Correlated Electrons +1211.0733 Optics +1303.2205 Spectral Theory +1304.0708 Number Theory +1306.0084 Statistics Theory +1307.3835 Networking and Internet Architecture +1308.0704 Algebraic Topology +1310.0017 +1311.1716 Optics +1311.2948 Methodology +1311.6189 Rings and Algebras +1312.1559 Combinatorics +1312.7257 Probability +1401.3211 Applications +1403.0920 Combinatorics +1403.4428 Numerical Analysis +1403.7910 +1406.2653 General Physics +1406.3361 Metric Geometry +1407.0905 Analysis of PDEs +1407.2497 Rings and Algebras +1407.3074 Quantum Algebra +1407.6567 Functional Analysis +1407.8309 Networking and Internet Architecture +1408.1922 Optimization and Control +1408.4809 Solar and Stellar Astrophysics +1409.1387 Instrumentation and Methods for Astrophysics +1409.1671 Strongly Correlated Electrons +1409.2286 Probability +1409.3017 Functional Analysis +1409.6167 +1410.1244 Superconductivity +1410.7365 Machine Learning +1410.7524 Group Theory +1411.3515 Chaotic Dynamics +1411.6839 +1412.3386 Disordered Systems and Neural Networks +1412.7853 Representation Theory +1502.00790 Quantum Algebra +1502.01078 Functional Analysis +1502.07114 Solar and Stellar Astrophysics +1502.07324 Superconductivity +1502.07611 Algebraic Topology +1503.00498 Algebraic Topology +1503.00501 Algebraic Topology +1503.02759 Superconductivity +1503.02839 Information Theory +1503.03785 Functional Analysis +1503.04761 Theory +1503.04904 Systems and Control +1504.01102 Mesoscale and Nanoscale Physics +1504.01438 Systems and Control +1504.01484 Theory +1504.01550 Number Theory +1504.05175 High Energy Astrophysical Phenomena +1505.02440 Analysis of PDEs +1505.03928 Differential Geometry +1505.04199 Soft Condensed Matter +1505.04344 Discrete Mathematics +1505.06387 Theory +1506.00534 Mesoscale and Nanoscale Physics +1506.04677 Dynamical Systems +1506.08235 Computational Engineering, Finance, and Science +1507.01684 Number Theory +1507.02113 +1507.02539 Algebraic Geometry +1507.04016 Classical Analysis and ODEs +1507.04028 Probability +1507.04083 +1507.05314 +1507.05561 +1507.06076 Probability +1507.07542 Quantum Gases +1508.01778 Materials Science +1508.01903 Machine Learning +1508.02288 Phenomenology +1508.03780 Theory +1508.04452 +1508.06595 +1508.07116 Phenomenology +1508.07869 Experiment +1509.01955 Mesoscale and Nanoscale Physics +1509.03898 Instrumentation and Detectors +1509.04953 Materials Science +1509.06205 +1509.08141 Experiment +1509.09018 Exactly Solvable and Integrable Systems +1510.00169 Statistical Mechanics +1510.00667 Statistical Mechanics +1510.02161 Soft Condensed Matter +1510.03457 Classical Analysis and ODEs +1510.03615 Materials Science +1510.04264 Commutative Algebra +1510.04697 Mesoscale and Nanoscale Physics +1510.04805 +1510.06034 Cosmology and Nongalactic Astrophysics +1510.06163 Statistical Mechanics +1510.07463 Lattice +1510.08326 Exactly Solvable and Integrable Systems +1510.09017 Materials Science +1511.00724 Phenomenology +1511.01306 Numerical Analysis +1511.03872 Differential Geometry +1511.04612 Optics +1511.05077 Learning +1511.06649 Cosmology and Nongalactic Astrophysics +1511.07937 Materials Science +1511.08186 Mesoscale and Nanoscale Physics +1511.09207 Computer Vision and Pattern Recognition +1512.01685 Mesoscale and Nanoscale Physics +1512.02337 Data Structures and Algorithms +1512.05150 Statistical Mechanics +1512.07376 Experiment +1512.07534 Algebraic Geometry +1601.00316 Solar and Stellar Astrophysics +1601.00468 Chemical Physics +1601.00500 Quantum Gases +1601.00547 +1601.01832 Rings and Algebras +1601.01965 +1601.03985 Strongly Correlated Electrons +1601.04049 +1601.04106 Chemical Physics +1601.05268 Probability +1601.05789 Mesoscale and Nanoscale Physics +1601.05841 Physics Education +1601.07356 Cosmology and Nongalactic Astrophysics +1601.07442 Analysis of PDEs +1601.07893 +1601.07900 Statistical Finance +1602.00363 Databases +1602.00443 Phenomenology +1602.00589 Number Theory +1602.00774 Algebraic Geometry +1602.00801 Human-Computer Interaction +1602.00849 Space Physics +1602.00904 Human-Computer Interaction +1602.00915 Earth and Planetary Astrophysics +1602.01058 Analysis of PDEs +1602.01075 Software Engineering +1602.01085 Number Theory +1602.01107 Social and Information Networks +1602.01116 Data Structures and Algorithms +1602.01122 Superconductivity +1602.01126 Combinatorics +1602.01127 Differential Geometry +1602.01128 Systems and Control +1602.01130 Cryptography and Security +1602.01131 Geometric Topology +1602.01133 Number Theory +1602.01134 Materials Science +1602.01136 Materials Science +1602.01137 Information Retrieval +1602.01140 Optimization and Control +1602.01143 Algebraic Geometry +1602.01144 Cosmology and Nongalactic Astrophysics +1602.01146 Rings and Algebras +1602.01155 Materials Science +1602.01159 Quantum Algebra +1602.01162 Combinatorics +1602.01163 Functional Analysis +1602.01164 Learning +1602.01167 Functional Analysis +1602.01170 Programming Languages +1602.01171 Logic in Computer Science +1602.01172 Software Engineering +1602.01173 Logic in Computer Science +1602.01174 Logic in Computer Science +1602.01175 Logic in Computer Science +1602.01176 Logic in Computer Science +1602.01178 Multimedia +1602.01183 +1602.01184 Numerical Analysis +1602.01185 Computational Physics +1602.01186 Computational Physics +1602.01189 Differential Geometry +1602.01196 Methodology +1602.01197 Computer Vision and Pattern Recognition +1602.01200 Numerical Analysis +1602.01201 Analysis of PDEs +1602.01206 Applications +1602.01207 Representation Theory +1602.01211 Adaptation and Self-Organizing Systems +1602.01213 Methodology +1602.01214 Rings and Algebras +1602.01221 +1602.01223 Soft Condensed Matter +1602.01225 Systems and Control +1602.01226 Software Engineering +1602.01228 Computer Vision and Pattern Recognition +1602.01233 Logic +1602.01235 +1602.01240 Statistical Mechanics +1602.01243 Algebraic Geometry +1602.01244 Metric Geometry +1602.01247 Optics +1602.01248 Databases +1602.01249 Fluid Dynamics +1602.01254 Computation +1602.01259 Atmospheric and Oceanic Physics +1602.01261 Cryptography and Security +1602.01263 +1602.01264 Logic +1602.01267 Strongly Correlated Electrons +1602.01268 Fluid Dynamics +1602.01269 Statistics Theory +1602.01270 Probability +1602.01271 Economics +1602.01272 K-Theory and Homology +1602.01274 Algebraic Topology +1602.01275 Analysis of PDEs +1602.01278 Numerical Analysis +1602.01279 Analysis of PDEs +1602.01282 Probability +1602.01285 Materials Science +1602.01289 +1602.01290 Spectral Theory +1602.01291 +1602.01293 Probability +1602.01295 Data Structures and Algorithms +1602.01297 Number Theory +1602.01299 Number Theory +1602.01300 Metric Geometry +1602.01302 History and Overview +1602.01303 Number Theory +1602.01306 Combinatorics +1602.01309 Probability +1602.01311 Other Condensed Matter +1602.01312 Computational Physics +1602.01315 Solar and Stellar Astrophysics +1602.01321 Neural and Evolutionary Computing +1602.01323 Learning +1602.01325 Probability +1602.01328 Probability +1602.01329 Hardware Architecture +1602.01335 Numerical Analysis +1602.01337 Combinatorics +1602.01342 Data Structures and Algorithms +1602.01343 Commutative Algebra +1602.01347 Other Statistics +1602.01348 Hardware Architecture +1602.01352 Discrete Mathematics +1602.01354 Superconductivity +1602.01357 Analysis of PDEs +1602.01358 Systems and Control +1602.01359 Theory +1602.01362 Mesoscale and Nanoscale Physics +1602.01364 Superconductivity +1602.01369 Strongly Correlated Electrons +1602.01374 Lattice +1602.01376 Numerical Analysis +1602.01378 Commutative Algebra +1602.01379 Optimization and Control +1602.01382 Theory +1602.01384 Classical Analysis and ODEs +1602.01385 Computational Complexity +1602.01388 Physics and Society +1602.01389 Cosmology and Nongalactic Astrophysics +1602.01394 +1602.01395 Geophysics +1602.01401 History and Overview +1602.01404 +1602.01408 Functional Analysis +1602.01411 Geometric Topology +1602.01415 Algebraic Geometry +1602.01416 Information Theory +1602.01419 Materials Science +1602.01428 Computation and Language +1602.01429 Differential Geometry +1602.01432 Representation Theory +1602.01436 Other Quantitative Biology +1602.01439 +1602.01440 Representation Theory +1602.01443 Databases +1602.01444 Complex Variables +1602.01450 General Physics +1602.01451 Representation Theory +1602.01452 Classical Analysis and ODEs +1602.01454 Group Theory +math-ph/0401029 +math/0310400 Operator Algebras +0704.2146 Combinatorics +0812.4044 Learning +0902.1823 Optimization and Control +0902.4881 Optimization and Control +1012.3121 Algebraic Geometry +1101.4601 Algebraic Geometry +1106.2361 Algebraic Topology +1108.4853 Symbolic Computation +1110.5164 Analysis of PDEs +1201.3198 Symbolic Computation +1203.6294 Algebraic Geometry +1206.1564 Symplectic Geometry +1206.3742 Algebraic Geometry +1206.5209 Optimization and Control +1209.4199 Optimization and Control +1210.1728 Analysis of PDEs +1210.2868 Algebraic Geometry +1210.3765 Optimization and Control +1301.2750 Networking and Internet Architecture +1301.3117 Theory +1302.3806 Quantum Gases +1302.3986 Strongly Correlated Electrons +1304.6889 Symbolic Computation +1304.7622 Optimization and Control +1306.0041 Functional Analysis +1306.3555 Algebraic Geometry +1307.3482 Rings and Algebras +1307.3484 Rings and Algebras +1307.4059 Algebraic Geometry +1311.0088 Commutative Algebra +1311.2003 Information Theory +1312.0422 Algebraic Geometry +1401.3916 +1401.5927 Functional Analysis +1402.0772 Combinatorics +1402.2102 Logic in Computer Science +1402.4651 Algebraic Geometry +1402.7266 Algebraic Geometry +1403.4002 Mesoscale and Nanoscale Physics +1404.0344 Probability +1404.0732 Probability +1405.1581 Phenomenology +1405.6209 +1405.6278 Combinatorics +1405.7253 Logic in Computer Science +1406.2663 Theory +1406.5149 +1406.6584 Probability +1407.0525 Functional Analysis +1407.0785 Number Theory +1407.2341 Complex Variables +1407.5874 Dynamical Systems +1408.1423 Probability +1408.6094 Earth and Planetary Astrophysics +1408.6518 Phenomenology +1409.1085 Group Theory +1409.3585 +1409.7527 Dynamical Systems +1409.8565 Methodology +1410.1041 +1410.1540 Theory +1410.2392 Methodology +1410.4819 Combinatorics +1410.5284 Optimization and Control +1410.5526 Quantum Gases +1411.4119 Strongly Correlated Electrons +1411.5308 Representation Theory +1412.3281 Probability +1412.7179 Other Condensed Matter +1412.7471 +1412.7787 Analysis of PDEs +1412.7906 Number Theory +1501.01344 Number Theory +1501.01819 Discrete Mathematics +1501.02443 +1501.03643 Information Theory +1501.04601 +1501.04641 Analysis of PDEs +1501.05067 Superconductivity +1501.07337 Combinatorics +1502.01697 Theory +1502.01710 Learning +1502.03252 Risk Management +1502.04431 Probability +1502.05697 Materials Science +1502.06436 Logic +1502.06996 +1502.07470 Logic +1502.07544 Superconductivity +1503.00462 Rings and Algebras +1503.00895 Numerical Analysis +1503.02889 +1503.07369 +1504.01696 Representation Theory +1504.02641 Optics +1504.03781 Probability +1504.04358 Probability +1504.04477 Analysis of PDEs +1504.04814 Statistics Theory +1504.05655 Social and Information Networks +1504.06075 Systems and Control +1504.07819 Probability +1504.08203 +1505.00950 Multiagent Systems +1505.01383 Theory +1505.02054 Information Theory +1505.03436 +1505.04702 Phenomenology +1505.05097 Rings and Algebras +1505.05909 Strongly Correlated Electrons +1505.06675 +1505.07785 Phenomenology +1506.01512 Classical Analysis and ODEs +1506.05095 Probability +1506.05366 +1506.05828 Adaptation and Self-Organizing Systems +1506.06749 +1506.07691 Functional Analysis +1506.08651 +1506.08928 Learning +1506.09080 Phenomenology +1507.00048 Functional Analysis +1507.00415 Materials Science +1507.00688 Algebraic Geometry +1507.01413 Geometric Topology +1507.03046 Discrete Mathematics +1507.03618 Phenomenology +1507.04724 Geometric Topology +1507.05114 Metric Geometry +1507.05640 Phenomenology +1507.05730 Analysis of PDEs +1507.05873 Soft Condensed Matter +1507.06030 Operator Algebras +1507.07212 Optimization and Control +1507.07243 Cosmology and Nongalactic Astrophysics +1507.07589 Differential Geometry +1507.07893 Optimization and Control +1507.08079 Dynamical Systems +1507.08310 +1507.08483 Algebraic Topology +1507.08743 Number Theory +1508.01383 Mesoscale and Nanoscale Physics +1508.02188 Theory +1508.02256 +1508.02280 Geometric Topology +1508.02452 Optimization and Control +1508.03079 Strongly Correlated Electrons +1508.03747 Applications +1508.04865 Group Theory +1508.06931 Superconductivity +1508.07509 Applications +1508.07541 Probability +1509.00828 Quantum Gases +1509.01626 Learning +1509.02125 Differential Geometry +1509.03313 Strongly Correlated Electrons +1509.04882 Spectral Theory +1509.06023 Metric Geometry +1509.06628 Experiment +1509.07210 +1509.08702 Instrumentation and Detectors +1509.09040 Operator Algebras +1509.09269 Analysis of PDEs +1510.00495 Dynamical Systems +1510.01998 +1510.02215 Social and Information Networks +1510.02236 Probability +1510.02538 Information Theory +1510.03046 +1510.04158 Optimization and Control +1510.04168 Mesoscale and Nanoscale Physics +1510.04507 +1510.05309 Rings and Algebras +1510.05538 Other Condensed Matter +1510.06338 +1510.06427 +1510.06615 +1510.07949 Discrete Mathematics +1510.08035 Mesoscale and Nanoscale Physics +1510.08094 Numerical Analysis +1510.08135 Algebraic Topology +1510.08262 Mesoscale and Nanoscale Physics +1510.09029 Analysis of PDEs +1511.00060 Computation and Language +1511.00494 Phenomenology +1511.02273 Information Theory +1511.02678 Rings and Algebras +1511.02973 Optics +1511.03728 Phenomenology +1511.04667 Quantum Gases +1511.04891 Computer Vision and Pattern Recognition +1511.05181 Chemical Physics +1511.05839 Solar and Stellar Astrophysics +1511.05960 Computer Vision and Pattern Recognition +1511.06257 Functional Analysis +1511.07231 Differential Geometry +1511.07372 Materials Science +1511.07508 Algebraic Geometry +1511.07688 Phenomenology +1511.09279 +1512.00094 High Energy Astrophysical Phenomena +1512.00103 Computation and Language +1512.01259 Category Theory +1512.02219 Astrophysics of Galaxies +1512.02472 Phenomenology +1512.02862 Theory +1512.03227 +1512.04266 Adaptation and Self-Organizing Systems +1512.05066 General Finance +1512.05520 Phenomenology +1512.05726 Computation and Language +1512.05795 Materials Science +1512.05830 Computer Vision and Pattern Recognition +1512.06007 Phenomenology +1512.07365 Superconductivity +1512.07679 Artificial Intelligence +1512.08547 +1512.09136 Phenomenology +1512.09155 Plasma Physics +1601.00110 Cosmology and Nongalactic Astrophysics +1601.01354 Phenomenology +1601.01880 +1601.02471 Materials Science +1601.02707 Operator Algebras +1601.03166 Analysis of PDEs +1601.04068 Theory +1601.04345 Earth and Planetary Astrophysics +1601.06351 Numerical Analysis +1601.06382 Optimization and Control +1601.06831 +1601.07266 +1602.00166 Combinatorics +1602.00875 Information Theory +1602.00877 Information Theory +1602.01145 Chemical Physics +1602.01736 High Energy Astrophysical Phenomena +1602.02347 Representation Theory +1602.03630 Mesoscale and Nanoscale Physics +1602.03781 Cosmology and Nongalactic Astrophysics +1602.03852 Materials Science +1602.04285 Statistical Mechanics +1602.04441 Theory +1602.04478 Distributed, Parallel, and Cluster Computing +1602.04701 Digital Libraries +1602.04705 Algebraic Geometry +1602.05053 Algebraic Geometry +1602.05185 General Physics +1602.05714 Physics Education +1602.05793 Probability +1602.05817 Theory +1602.06020 Plasma Physics +1602.06165 Physics Education +1602.06214 Materials Science +1602.06358 Solar and Stellar Astrophysics +1602.06690 Information Theory +1602.07947 Materials Science +1602.08427 Geometric Topology +1602.08449 Representation Theory +1603.00391 Learning +1603.00742 Representation Theory +1603.01042 Solar and Stellar Astrophysics +1603.01083 Plasma Physics +1603.01135 Algebraic Geometry +1603.01825 Theory +1603.01962 Strongly Correlated Electrons +1603.02601 Statistical Mechanics +1603.03031 Neurons and Cognition +1603.03144 Computation and Language +1603.03691 Group Theory +1603.03757 +1603.03951 Strongly Correlated Electrons +1603.04396 Mesoscale and Nanoscale Physics +1603.04501 Materials Science +1603.05151 Algebraic Geometry +1603.05157 Computation and Language +1603.06201 Computer Vision and Pattern Recognition +1603.06313 Information Theory +1603.06364 Spectral Theory +1603.06463 Computer Vision and Pattern Recognition +1603.06882 Materials Science +1603.07487 Number Theory +1603.07766 Multiagent Systems +1603.07823 Computer Vision and Pattern Recognition +1603.08167 Representation Theory +1603.08235 Optimization and Control +1603.08515 Logic +1603.08522 Astrophysics of Galaxies +1603.08986 Analysis of PDEs +1603.09186 Chaotic Dynamics +1603.09190 Algebraic Geometry +1603.09204 Statistical Mechanics +1603.09422 Robotics +1603.09437 Symplectic Geometry +1603.09451 Soft Condensed Matter +1603.09465 Artificial Intelligence +1603.09588 Probability +1604.00040 Functional Analysis +1604.00043 Phenomenology +1604.00103 Cryptography and Security +1604.00366 Combinatorics +1604.00389 Networking and Internet Architecture +1604.00391 Optimization and Control +1604.00392 Phenomenology +1604.00400 Computation and Language +1604.00404 Dynamical Systems +1604.00405 +1604.00407 Strongly Correlated Electrons +1604.00411 Classical Analysis and ODEs +1604.00415 Analysis of PDEs +1604.00416 Spectral Theory +1604.00417 Human-Computer Interaction +1604.00421 Numerical Analysis +1604.00423 Algebraic Geometry +1604.00427 Computer Vision and Pattern Recognition +1604.00429 Representation Theory +1604.00432 Functional Analysis +1604.00433 Computer Vision and Pattern Recognition +1604.00434 Information Theory +1604.00436 Algebraic Geometry +1604.00441 Geophysics +1604.00442 Superconductivity +1604.00445 Number Theory +1604.00446 Data Structures and Algorithms +1604.00447 Methodology +1604.00449 Computer Vision and Pattern Recognition +1604.00456 Metric Geometry +1604.00459 Systems and Control +1604.00460 Optimization and Control +1604.00461 Computation and Language +1604.00462 Neural and Evolutionary Computing +1604.00467 Physics and Society +1604.00468 +1604.00470 Computer Vision and Pattern Recognition +1604.00473 Metric Geometry +1604.00478 Distributed, Parallel, and Cluster Computing +1604.00480 Classical Analysis and ODEs +1604.00487 Populations and Evolution +1604.00488 Theory +1604.00490 Complex Variables +1604.00491 Physics and Society +1604.00493 Multimedia +1604.00494 Computer Vision and Pattern Recognition +1604.00497 Chemical Physics +1604.00498 Robotics +1604.00499 +1604.00502 Computation and Language +1604.00503 Computation and Language +1604.00504 Statistical Mechanics +1604.00505 Pattern Formation and Solitons +1604.00507 Populations and Evolution +1604.00508 Physics Education +1604.00511 Chemical Physics +1604.00512 Algebraic Geometry +1604.00513 Optimization and Control +1604.00514 Differential Geometry +1604.00516 Commutative Algebra +1604.00517 Number Theory +1604.00518 Earth and Planetary Astrophysics +1604.00519 General Mathematics +1604.00520 Analysis of PDEs +1604.00525 Mathematical Finance +1604.00526 Optimization and Control +1604.00527 Optimization and Control +1604.00528 Differential Geometry +1604.00533 Computer Vision and Pattern Recognition +1604.00535 Solar and Stellar Astrophysics +1604.00536 Logic in Computer Science +1604.00542 Differential Geometry +1604.00543 Optimization and Control +1604.00546 Computer Vision and Pattern Recognition +1604.00548 Optimization and Control +1604.00549 Instrumentation and Detectors +1604.00550 Combinatorics +1604.00551 Analysis of PDEs +1604.00552 Neural and Evolutionary Computing +1604.00553 Instrumentation and Methods for Astrophysics +1604.00554 Distributed, Parallel, and Cluster Computing +1604.00556 Systems and Control +1604.00557 Networking and Internet Architecture +1604.00558 Neural and Evolutionary Computing +1604.00560 Physics and Society +1604.00561 Statistics Theory +1604.00563 Solar and Stellar Astrophysics +1604.00564 Information Theory +1604.00565 Information Theory +1604.00566 +1604.00568 +1604.00569 +1604.00570 Methodology +1604.00572 Applications +1604.00573 Group Theory +1604.00575 Cryptography and Security +1604.00576 Information Theory +1604.00577 Commutative Algebra +1604.00578 Representation Theory +1604.00579 Materials Science +1604.00580 Metric Geometry +1604.00581 +1604.00582 Information Theory +1604.00584 Geometric Topology +1604.00585 Optics +1604.00586 Materials Science +1604.00588 Information Theory +1604.00594 Computational Engineering, Finance, and Science +1604.00598 Soft Condensed Matter +1604.00600 Computer Vision and Pattern Recognition +1604.00602 Systems and Control +1604.00606 Computer Vision and Pattern Recognition +1604.00607 Information Theory +1604.00609 Group Theory +1604.00612 Combinatorics +1604.00614 Mesoscale and Nanoscale Physics +1604.00617 Numerical Analysis +1604.00618 Functional Analysis +1604.00622 Number Theory +1604.00625 Atmospheric and Oceanic Physics +1604.00626 Materials Science +1604.00630 Differential Geometry +1604.00632 +1604.00633 Analysis of PDEs +1604.00634 Systems and Control +1604.00636 Networking and Internet Architecture +1604.00637 Phenomenology +1604.00640 Robotics +1604.00641 Distributed, Parallel, and Cluster Computing +1604.00647 Machine Learning +1604.00653 Learning +1604.00654 Commutative Algebra +1604.00656 Commutative Algebra +1604.00661 Combinatorics +1604.00662 Materials Science +1604.00663 Combinatorics +1604.00664 Computers and Society +1604.00666 Cryptography and Security +1604.00668 Statistical Mechanics +1604.00672 General Physics +1604.00676 Computer Vision and Pattern Recognition +1604.00677 Materials Science +1604.00678 General Physics +1604.00680 Superconductivity +1604.00682 Materials Science +1604.00684 Complex Variables +1604.00685 Statistics Theory +1604.00686 Algebraic Geometry +1604.00688 Probability +1604.00691 Optimization and Control +1604.00692 Disordered Systems and Neural Networks +1604.00693 Artificial Intelligence +1604.00695 Methodology +1604.00696 Social and Information Networks +1604.00699 Functional Analysis +1604.00700 Information Theory +1604.00704 Dynamical Systems +1604.00706 Computer Science and Game Theory +1604.00708 Data Structures and Algorithms +1604.00709 Superconductivity +1604.00710 Computer Science and Game Theory +1604.00711 Differential Geometry +1604.00712 Representation Theory +1604.00713 Operator Algebras +1604.00714 Classical Analysis and ODEs +1604.00718 Mesoscale and Nanoscale Physics +1604.00730 Computer Vision and Pattern Recognition +1604.00731 Computational Physics +1604.00734 Computation and Language +1604.00740 Discrete Mathematics +1604.00741 Information Theory +1604.00742 Information Theory +1604.00743 +1604.00745 Algebraic Geometry +1604.00746 Algebraic Geometry +1604.00750 Geometric Topology +1604.00752 Algebraic Geometry +1604.00753 Classical Analysis and ODEs +1604.00759 +1604.00760 +1604.00764 Computers and Society +1604.00766 Number Theory +1604.00772 Learning +1604.00773 Differential Geometry +1604.00774 Analysis of PDEs +1604.00776 Quantum Gases +1604.00779 Probability +1604.00783 Learning +1604.00784 Analysis of PDEs +1604.00786 Information Theory +1604.00787 Information Theory +1604.00794 Distributed, Parallel, and Cluster Computing +1604.00795 Commutative Algebra +1604.00796 Solar and Stellar Astrophysics +1604.00797 Representation Theory +1604.00799 Artificial Intelligence +1604.00800 Solar and Stellar Astrophysics +1604.00801 Analysis of PDEs +1604.00803 Combinatorics +1604.00808 Analysis of PDEs +1604.00811 Number Theory +1604.00814 Strongly Correlated Electrons +1604.00815 Atomic and Molecular Clusters +1604.00818 Other Computer Science +1604.00819 Strongly Correlated Electrons +1604.00820 +1604.00823 Applications +1604.00824 Materials Science +1604.00825 Computer Vision and Pattern Recognition +1604.00827 Instrumentation and Detectors +1604.00828 Molecular Networks +1604.00829 +1604.00830 Software Engineering +1604.00832 Populations and Evolution +1604.00835 Differential Geometry +1604.00836 Geometric Topology +1604.00837 Social and Information Networks +1604.00840 Fluid Dynamics +1604.00842 Combinatorics +1604.00845 Data Structures and Algorithms +1604.00846 +1604.00847 Theory +1604.00848 Metric Geometry +1604.00851 Operator Algebras +1604.00852 +1604.00856 Rings and Algebras +1604.00862 Materials Science +1604.00863 Optimization and Control +1604.00864 Probability +1604.00866 Algebraic Geometry +1604.00869 Artificial Intelligence +1604.00870 Data Structures and Algorithms +1604.00875 Information Theory +1604.00878 Earth and Planetary Astrophysics +1604.00879 Logic +1604.00880 Category Theory +1604.00881 Numerical Analysis +1604.00884 Solar and Stellar Astrophysics +1604.00889 Computational Physics +1604.00890 Combinatorics +1604.00895 Computer Vision and Pattern Recognition +1604.00900 Superconductivity +1604.00902 General Mathematics +1604.00904 Theory +1604.00906 Computer Vision and Pattern Recognition +1604.00908 Probability +1604.00911 Materials Science +1604.00912 Methodology +1604.00919 Neurons and Cognition +1604.00920 Number Theory +1604.00921 Computers and Society +1604.00922 Data Structures and Algorithms +1604.00923 Learning +1604.00924 Algebraic Geometry +1604.00926 Information Theory +1604.00929 Numerical Analysis +1604.00930 Optimization and Control +1604.00934 Combinatorics +1604.00935 Instrumentation and Detectors +1604.00936 Logic in Computer Science +1604.00938 Computation and Language +1604.00941 Number Theory +1604.00942 Information Retrieval +1604.00944 Analysis of PDEs +1604.00946 High Energy Astrophysical Phenomena +1604.00949 Biological Physics +1604.00952 Systems and Control +1604.00954 Methodology +1604.00962 Combinatorics +1604.00963 Physics and Society +1604.00966 Astrophysics of Galaxies +1604.00967 Databases +1604.00969 Algebraic Topology +1604.00972 Materials Science +1604.00975 Systems and Control +1604.00976 Physics and Society +1604.00979 Atomic Physics +1604.00980 Cryptography and Security +1604.00985 Differential Geometry +1604.00987 +1604.00989 Computer Vision and Pattern Recognition +1604.00990 Robotics +1604.00991 +1604.00992 Astrophysics of Galaxies +1604.00993 Classical Analysis and ODEs +1604.00994 Adaptation and Self-Organizing Systems +1604.00995 Analysis of PDEs +1604.00996 Functional Analysis +1604.01000 Popular Physics +1604.01001 +1604.01004 Data Analysis, Statistics and Probability +1604.01007 Number Theory +1604.01009 Mesoscale and Nanoscale Physics +quant-ph/0007050 +0707.2110 Number Theory +0708.2199 Number Theory +0709.1215 +0804.0738 Complex Variables +0902.4637 Algebraic Geometry +0908.2140 Number Theory +0910.4695 Number Theory +1004.2267 Algebraic Geometry +1007.1226 Algebraic Geometry +1102.1080 Algebraic Topology +1103.6011 Rings and Algebras +1105.3952 Number Theory +1106.0339 Functional Analysis +1110.0620 Data Structures and Algorithms +1111.1929 Cosmology and Nongalactic Astrophysics +1202.4183 Number Theory +1203.5150 Numerical Analysis +1210.2614 Number Theory +1303.7114 Algebraic Geometry +1307.4281 Rings and Algebras +1311.0698 Mesoscale and Nanoscale Physics +1311.2288 Geometric Topology +1311.4193 Superconductivity +1311.5846 Number Theory +1401.2122 Analysis of PDEs +1401.3140 Medical Physics +1401.6856 Medical Physics +1401.7629 +1402.1071 +1402.6224 Group Theory +1403.0301 Probability +1403.3268 Differential Geometry +1404.4991 Spectral Theory +1404.6441 +1405.1413 Quantitative Methods +1405.3989 +1405.7871 Algebraic Geometry +1406.3271 Analysis of PDEs +1407.0950 Data Structures and Algorithms +1408.2598 Solar and Stellar Astrophysics +1409.2765 Differential Geometry +1409.4223 Cosmology and Nongalactic Astrophysics +1410.1641 Differential Geometry +1410.3354 Differential Geometry +1410.5151 Soft Condensed Matter +1411.2200 Algebraic Geometry +1411.4062 Algebraic Geometry +1412.2762 Superconductivity +1412.2917 +1412.4297 Statistical Mechanics +1412.6812 Statistical Mechanics +1501.04201 Numerical Analysis +1501.04379 Phenomenology +1501.06453 Atomic Physics +1501.06503 Analysis of PDEs +1502.00006 Strongly Correlated Electrons +1502.00131 Fluid Dynamics +1502.00459 Complex Variables +1502.03616 Theory +1502.04243 Applications +1502.05959 Number Theory +1503.01626 Materials Science +1503.02206 Probability +1503.03668 Rings and Algebras +1503.06042 Experiment +1503.08787 Optics +1504.01289 Experiment +1504.03293 Computer Vision and Pattern Recognition +1504.03633 Plasma Physics +1504.03859 Quantum Gases +1504.06404 Quantum Gases +1504.08162 Optics +1505.01139 Distributed, Parallel, and Cluster Computing +1505.02084 Optics +1505.04138 Optics +1505.04883 Methodology +1505.06953 Logic in Computer Science +1505.07001 Functional Analysis +1506.02172 Commutative Algebra +1506.03441 +1506.03652 Instrumentation and Detectors +1506.06349 Cosmology and Nongalactic Astrophysics +1506.06701 +1506.08536 Machine Learning +1507.02783 +1507.03010 High Energy Astrophysical Phenomena +1507.03393 Dynamical Systems +1507.04080 Algebraic Geometry +1507.04148 +1507.04801 Mesoscale and Nanoscale Physics +1507.05401 Materials Science +1507.06713 Optics +1507.07651 Mesoscale and Nanoscale Physics +1507.08206 Combinatorics +1508.01120 Plasma Physics +1508.01425 Phenomenology +1508.02947 Quantum Gases +1508.03221 Strongly Correlated Electrons +1508.03598 Analysis of PDEs +1508.03900 Superconductivity +1508.04937 Phenomenology +1508.05545 Distributed, Parallel, and Cluster Computing +1508.05864 +1508.06909 Classical Analysis and ODEs +1508.06988 History and Philosophy of Physics +1509.00648 Optics +1509.01145 Differential Geometry +1509.03415 Quantum Algebra +1509.04404 Mesoscale and Nanoscale Physics +1509.05613 Instrumentation and Detectors +1509.05784 Cosmology and Nongalactic Astrophysics +1509.07335 Experiment +1509.07623 Instrumentation and Detectors +1509.08928 General Physics +1510.00331 Robotics +1510.00626 Functional Analysis +1510.00944 Rings and Algebras +1510.01006 Social and Information Networks +1510.01480 +1510.01795 +1510.02184 Information Theory +1510.03360 Earth and Planetary Astrophysics +1510.03710 Computation and Language +1510.03827 Statistics Theory +1510.04275 Strongly Correlated Electrons +1510.05506 Optics +1510.08538 Strongly Correlated Electrons +1510.08555 Cryptography and Security +1511.00898 Data Structures and Algorithms +1511.01415 +1511.01890 +1511.01956 Populations and Evolution +1511.05012 Information Theory +1511.06381 Learning +1511.07828 Spectral Theory +1511.08269 Plasma Physics +1511.08421 Materials Science +1511.08693 Instrumentation and Detectors +1512.03130 Number Theory +1512.03463 Functional Analysis +1512.04009 +1512.04818 Combinatorics +1512.05646 Strongly Correlated Electrons +1512.05717 Rings and Algebras +1512.05908 Combinatorics +1512.07389 +1512.08886 Analysis of PDEs +1601.00324 Soft Condensed Matter +1601.00679 Economics +1601.01522 Materials Science +1601.01668 +1601.01679 Group Theory +1601.01715 Rings and Algebras +1601.02240 Cell Behavior +1601.02340 Strongly Correlated Electrons +1601.02585 Physics and Society +1601.02809 Experiment +1601.02827 Instrumentation and Methods for Astrophysics +1601.03124 Learning +1601.03254 Dynamical Systems +1601.03390 Networking and Internet Architecture +1601.03410 Methodology +1601.03416 Soft Condensed Matter +1601.03418 Analysis of PDEs +1601.03419 Other Quantitative Biology +1601.03423 Operator Algebras +1601.03424 Rings and Algebras +1601.03425 Functional Analysis +1601.03428 Data Structures and Algorithms +1601.03429 Mesoscale and Nanoscale Physics +1601.03430 Geometric Topology +1601.03431 Mesoscale and Nanoscale Physics +1601.03432 Numerical Analysis +1601.03434 Combinatorics +1601.03436 Rings and Algebras +1601.03437 Differential Geometry +1601.03438 Rings and Algebras +1601.03439 Information Theory +1601.03444 Rings and Algebras +1601.03452 Materials Science +1601.03454 Superconductivity +1601.03457 Theory +1601.03458 Data Structures and Algorithms +1601.03459 Instrumentation and Methods for Astrophysics +1601.03460 Materials Science +1601.03461 Networking and Internet Architecture +1601.03462 Solar and Stellar Astrophysics +1601.03464 Probability +1601.03465 Combinatorics +1601.03467 Classical Analysis and ODEs +1601.03468 Information Theory +1601.03470 Symplectic Geometry +1601.03471 Combinatorics +1601.03473 Classical Analysis and ODEs +1601.03474 Applications +1601.03475 Operator Algebras +1601.03477 Logic +1601.03478 Learning +1601.03481 Neural and Evolutionary Computing +1601.03482 Logic +1601.03483 Learning +1601.03486 Superconductivity +1601.03494 Algebraic Topology +1601.03497 Analysis of PDEs +1601.03500 Materials Science +1601.03501 Methodology +1601.03503 Combinatorics +1601.03504 Fluid Dynamics +1601.03509 Differential Geometry +1601.03511 Combinatorics +1601.03514 General Topology +1601.03515 General Topology +1601.03517 Methodology +1601.03518 General Topology +1601.03519 Applications +1601.03522 Commutative Algebra +1601.03525 Number Theory +1601.03528 Software Engineering +1601.03531 Computer Vision and Pattern Recognition +1601.03533 Cryptography and Security +1601.03539 Combinatorics +1601.03543 Combinatorics +1601.03545 Classical Physics +1601.03546 Operator Algebras +1601.03550 Optimization and Control +1601.03557 Atomic Physics +1601.03562 Mathematical Finance +1601.03563 Phenomenology +1601.03564 Mesoscale and Nanoscale Physics +1601.03565 Fluid Dynamics +1601.03568 Materials Science +1601.03572 Number Theory +1601.03573 Atomic Physics +1601.03574 Probability +1601.03577 Analysis of PDEs +1601.03578 Algebraic Geometry +1601.03582 +1601.03587 Chaotic Dynamics +1601.03588 Mesoscale and Nanoscale Physics +1601.03589 Geometric Topology +1601.03590 Mesoscale and Nanoscale Physics +1601.03592 Chaotic Dynamics +1601.03594 Probability +1601.03595 Category Theory +1601.03596 Logic +1601.03602 Instrumentation and Detectors +1601.03603 Discrete Mathematics +1601.03607 Algebraic Geometry +1601.03611 Representation Theory +1601.03612 Instrumentation and Detectors +1601.03614 Statistics Theory +1601.03615 Numerical Analysis +1601.03618 Dynamical Systems +1601.03619 Computational Complexity +1601.03620 Metric Geometry +1601.03626 Biological Physics +1601.03627 Materials Science +1601.03628 Combinatorics +1601.03630 Probability +1601.03633 Other Computer Science +1601.03640 Methodology +1601.03642 Computer Vision and Pattern Recognition +1601.03646 Phenomenology +1601.03648 Robotics +1601.03653 Probability +1601.03657 Phenomenology +1601.03659 Combinatorics +1601.03661 Algebraic Geometry +1601.03665 Number Theory +1601.03669 Number Theory +1601.03674 Analysis of PDEs +1601.03676 Data Structures and Algorithms +1601.03679 Computer Vision and Pattern Recognition +1601.03680 Number Theory +1601.03683 Group Theory +1601.03684 Populations and Evolution +1601.03686 Computational Physics +1601.03689 Information Theory +1601.03691 Probability +1601.03700 Analysis of PDEs +1601.03701 +1601.03704 Methodology +1601.03715 +1601.03716 Complex Variables +1601.03719 Functional Analysis +1601.03720 Probability +1601.03721 Complex Variables +1601.03722 Phenomenology +1601.03723 Differential Geometry +cs/0604029 Information Theory +math/0401008 Number Theory +math/0507274 Algebraic Geometry +math/0601596 Algebraic Geometry +math/0608038 Algebraic Geometry +math/0609657 Number Theory +math/0609658 Number Theory +math/0703756 Complex Variables +1008.2549 Geometric Topology +1009.0793 Operator Algebras +1012.1082 Phenomenology +1103.0465 Dynamical Systems +1106.1761 Statistical Mechanics +1109.4771 Mesoscale and Nanoscale Physics +1112.2721 Group Theory +1201.5313 +1202.2444 Spectral Theory +1203.1206 Dynamical Systems +1203.1209 Dynamical Systems +1203.1407 Phenomenology +1203.1414 Dynamical Systems +1210.3272 Atomic Physics +1210.4033 Differential Geometry +1212.4358 Commutative Algebra +1302.3623 Dynamical Systems +1302.6665 Geometric Topology +1305.0161 +1305.3074 Probability +1306.3887 Strongly Correlated Electrons +1308.2078 +1308.5401 Complex Variables +1309.0880 Algebraic Geometry +1310.0538 Algebraic Geometry +1310.3543 High Energy Astrophysical Phenomena +1311.2159 Algebraic Geometry +1312.0287 Probability +1312.3385 Differential Geometry +1401.1149 Cosmology and Nongalactic Astrophysics +1401.1271 Astrophysics of Galaxies +1402.0319 Optimization and Control +1402.6130 Logic +1403.2406 Spectral Theory +1403.5857 Superconductivity +1404.2349 +1404.3763 Statistics Theory +1404.5914 High Energy Astrophysical Phenomena +1405.1325 High Energy Astrophysical Phenomena +1406.4455 Numerical Analysis +1407.6455 Algebraic Geometry +1408.0227 High Energy Astrophysical Phenomena +1408.5154 Algebraic Geometry +1408.5318 Geometric Topology +1409.3892 Metric Geometry +1409.4598 Atomic Physics +1409.5283 +1409.6195 Functional Analysis +1409.6463 Functional Analysis +1410.2877 Geometric Topology +1410.6375 Robotics +1410.7094 +1412.1573 High Energy Astrophysical Phenomena +1412.3046 Learning +1412.4071 Networking and Internet Architecture +1412.4574 +1412.5136 Statistics Theory +1412.5761 Functional Analysis +1412.7330 Group Theory +1412.8039 Instrumentation and Detectors +1501.00045 Analysis of PDEs +1502.02603 Mesoscale and Nanoscale Physics +1502.03750 Chemical Physics +1502.06593 Discrete Mathematics +1502.07381 Materials Science +1503.01891 Geometric Topology +1503.08003 Optics +1504.00750 Materials Science +1504.01712 Quantum Algebra +1504.01819 Materials Science +1504.05814 Differential Geometry +1504.06858 Metric Geometry +1504.07054 +1505.00715 Theory +1505.01078 Solar and Stellar Astrophysics +1505.03770 +1505.06024 Physics and Society +1505.07417 Experiment +1506.00814 Dynamical Systems +1506.01038 Astrophysics of Galaxies +1506.02099 Optimization and Control +1506.04605 High Energy Astrophysical Phenomena +1506.05110 Phenomenology +1506.05848 Complex Variables +1506.08191 Probability +1506.08350 Learning +1506.08588 +1507.00918 Probability +1507.00945 Theory +1507.02409 Operator Algebras +1507.03714 +1507.06592 Strongly Correlated Electrons +1507.08458 Probability +1507.08645 Methodology +1508.00608 Molecular Networks +1508.03036 +1508.03135 Optics +1508.04605 Superconductivity +1508.05436 Astrophysics of Galaxies +1508.05980 Functional Analysis +1508.07206 Number Theory +1508.07554 Differential Geometry +1508.07579 Phenomenology +1508.07610 Mesoscale and Nanoscale Physics +1509.00260 Combinatorics +1509.01494 Classical Analysis and ODEs +1509.03537 +1509.04468 Instrumentation and Detectors +1509.04805 Information Theory +1509.05301 Graphics +1509.07844 Experiment +1509.08219 Quantum Gases +1509.09044 Atomic Physics +1510.00092 Algebraic Geometry +1510.02673 +1510.03095 +1510.03892 Cryptography and Security +1510.06240 Phenomenology +1510.06369 Theory +1510.06760 Theory +1510.07756 Differential Geometry +1510.08251 Group Theory +1510.08625 Superconductivity +1510.08629 Superconductivity +1510.08647 Materials Science +1510.08960 +1511.00219 Superconductivity +1511.01093 High Energy Astrophysical Phenomena +1511.03110 Phenomenology +1511.03412 +1511.05028 +1511.05047 +1511.05062 +1511.05536 Astrophysics of Galaxies +1511.05640 Earth and Planetary Astrophysics +1512.00271 Metric Geometry +1512.00534 Mesoscale and Nanoscale Physics +1512.01745 Representation Theory +1512.03340 Fluid Dynamics +1512.04663 Logic +1512.04825 High Energy Astrophysical Phenomena +1512.05468 Solar and Stellar Astrophysics +1512.05972 Materials Science +1512.06674 Phenomenology +1512.06837 Mesoscale and Nanoscale Physics +1512.07434 Group Theory +1512.07460 Mesoscale and Nanoscale Physics +1512.07767 Discrete Mathematics +1512.08179 Probability +1512.08417 Databases +1512.08661 Phenomenology +1512.08824 Logic in Computer Science +1512.08850 Differential Geometry +1512.08888 Materials Science +1601.00335 Computational Complexity +1601.00928 Combinatorics +1601.01232 Graphics +1601.01259 Operator Algebras +1601.01278 Cryptography and Security +1601.01704 Neurons and Cognition +1601.01799 Learning +1601.01892 Machine Learning +1601.02049 Probability +1601.02093 Computer Vision and Pattern Recognition +1601.02287 Lattice +1601.02337 Solar and Stellar Astrophysics +1601.02446 +1601.02710 Materials Science +1601.02727 Combinatorics +1601.02729 Optimization and Control +1601.02758 Algebraic Geometry +1601.02794 +1601.02921 Chaotic Dynamics +1601.02949 Phenomenology +1601.03036 Materials Science +1601.03037 Other Quantitative Biology +1601.03038 Combinatorics +1601.03059 Logic +1601.03062 Optics +1601.03065 Artificial Intelligence +1601.03067 Physics and Society +1601.03068 Astrophysics of Galaxies +1601.03070 Phenomenology +1601.03071 Lattice +1601.03075 Fluid Dynamics +1601.03079 Exactly Solvable and Integrable Systems +1601.03080 Symbolic Computation +1601.03081 Number Theory +1601.03082 Solar and Stellar Astrophysics +1601.03083 Computational Geometry +1601.03085 Mesoscale and Nanoscale Physics +1601.03089 Materials Science +1601.03094 Computer Vision and Pattern Recognition +1601.03096 Analysis of PDEs +1601.03100 Exactly Solvable and Integrable Systems +1601.03101 Optics +1601.03102 Exactly Solvable and Integrable Systems +1601.03105 +1601.03108 Metric Geometry +1601.03115 Distributed, Parallel, and Cluster Computing +1601.03116 Programming Languages +1601.03117 Computer Vision and Pattern Recognition +1601.03119 Chemical Physics +1601.03122 Spectral Theory +1601.03123 Analysis of PDEs +1601.03125 Differential Geometry +1601.03129 Optics +1601.03133 Materials Science +1601.03135 Classical Analysis and ODEs +1601.03136 Differential Geometry +1601.03137 Dynamical Systems +1601.03140 Pattern Formation and Solitons +1601.03142 Functional Analysis +1601.03144 Distributed, Parallel, and Cluster Computing +1601.03146 Plasma Physics +1601.03150 Strongly Correlated Electrons +1601.03151 Fluid Dynamics +1601.03153 Phenomenology +1601.03154 Mesoscale and Nanoscale Physics +1601.03155 Instrumentation and Methods for Astrophysics +1601.03157 Rings and Algebras +1601.03162 Computer Science and Game Theory +1601.03163 General Topology +1601.03167 Classical Analysis and ODEs +1601.03171 Risk Management +1601.03172 Analysis of PDEs +1601.03173 Classical Analysis and ODEs +1601.03174 Data Structures and Algorithms +1601.03175 Functional Analysis +1601.03176 Optics +1601.03177 Medical Physics +1601.03179 Probability +1601.03180 Classical Analysis and ODEs +1601.03184 Lattice +1601.03185 Materials Science +1601.03190 Differential Geometry +1601.03192 Human-Computer Interaction +1601.03195 Logic in Computer Science +1601.03196 Differential Geometry +1601.03199 Classical Analysis and ODEs +1601.03200 Dynamical Systems +1601.03201 Networking and Internet Architecture +1601.03204 Information Theory +1601.03206 Logic in Computer Science +1601.03207 Combinatorics +1601.03210 Computation and Language +1601.03211 Mesoscale and Nanoscale Physics +1601.03224 Graphics +1601.03225 Distributed, Parallel, and Cluster Computing +1601.03227 Number Theory +1601.03230 Numerical Analysis +1601.03235 Molecular Networks +1601.03236 Neurons and Cognition +1601.03237 Statistical Mechanics +1601.03239 Computer Vision and Pattern Recognition +1601.03241 Combinatorics +1601.03242 Probability +1601.03245 General Mathematics +1601.03246 High Energy Astrophysical Phenomena +1601.03250 +1601.03252 Other Condensed Matter +1601.03253 Analysis of PDEs +1601.03255 Quantitative Methods +1601.03257 Instrumentation and Detectors +1601.03258 General Mathematics +1601.03260 High Energy Astrophysical Phenomena +1601.03263 +1601.03264 Representation Theory +1601.03265 Optics +1601.03272 Analysis of PDEs +1601.03278 Computers and Society +1601.03281 Methodology +1601.03286 Group Theory +1601.03288 Computation and Language +1601.03290 Optimization and Control +1601.03291 Group Theory +1601.03293 Instrumentation and Detectors +1601.03294 Dynamical Systems +1601.03295 Computer Vision and Pattern Recognition +1601.03301 Probability +1601.03306 Phenomenology +1601.03309 Number Theory +1601.03312 Soft Condensed Matter +1601.03314 Algebraic Geometry +1601.03315 Chemical Physics +1601.03316 Social and Information Networks +1601.03321 Probability +1601.03322 Combinatorics +1601.03323 Computer Vision and Pattern Recognition +1601.03324 Mesoscale and Nanoscale Physics +1601.03325 Solar and Stellar Astrophysics +1601.03329 Optimization and Control +1601.03332 Metric Geometry +1601.03333 Computer Vision and Pattern Recognition +1601.03334 Quantitative Methods +1601.03336 Classical Analysis and ODEs +1601.03337 Analysis of PDEs +1601.03339 Earth and Planetary Astrophysics +1601.03341 Distributed, Parallel, and Cluster Computing +1601.03342 Geometric Topology +1601.03345 Logic +1601.03346 Materials Science +1601.03347 Complex Variables +1601.03350 Fluid Dynamics +1601.03351 Rings and Algebras +1601.03353 Functional Analysis +1601.03354 Information Retrieval +1601.03358 Soft Condensed Matter +1601.03366 Phenomenology +1601.03373 Dynamical Systems +1601.03374 Probability +1601.03375 Computer Vision and Pattern Recognition +1601.03379 Statistics Theory +1601.03380 Mathematical Finance +1601.03381 Astrophysics of Galaxies +1601.03388 Mathematical Finance +cond-mat/0402396 Statistical Mechanics +math/0503453 Logic +0911.2296 Representation Theory +1105.3028 Operator Algebras +1106.3175 Differential Geometry +1106.3177 Differential Geometry +1107.5099 Representation Theory +1109.2080 Numerical Analysis +1109.2664 Dynamical Systems +1204.1377 Solar and Stellar Astrophysics +1204.2185 Category Theory +1204.2846 Combinatorics +1204.5916 Instrumentation and Detectors +1206.3707 Symplectic Geometry +1210.0101 Logic +1211.2306 +1211.4100 Logic in Computer Science +1301.5767 +1303.3202 Plasma Physics +1304.6228 Instrumentation and Detectors +1305.0867 Dynamical Systems +1305.3700 Cryptography and Security +1306.3320 Fluid Dynamics +1306.5046 Operator Algebras +1307.5002 Operator Algebras +1309.0994 Differential Geometry +1310.4538 General Finance +1311.3422 Cosmology and Nongalactic Astrophysics +1312.1741 Phenomenology +1401.0035 Number Theory +1401.3518 Applications +1402.2588 Commutative Algebra +1403.3521 Differential Geometry +1403.4400 Differential Geometry +1404.2508 Dynamical Systems +1405.1434 Phenomenology +1405.6565 Dynamical Systems +1406.1028 Populations and Evolution +1406.2185 Data Analysis, Statistics and Probability +1406.4845 Computer Vision and Pattern Recognition +1407.3177 Statistical Mechanics +1407.4336 Phenomenology +1407.5318 +1408.0823 Phenomenology +1408.3928 +1409.2821 Artificial Intelligence +1409.3236 Other Condensed Matter +1409.3271 +1409.3850 Chaotic Dynamics +1410.5840 Complex Variables +1410.5948 Quantum Gases +1410.6103 Superconductivity +1410.7507 +1410.8246 Mesoscale and Nanoscale Physics +1411.1877 Phenomenology +1411.3603 Computational Complexity +1411.7762 Mesoscale and Nanoscale Physics +1412.1660 Cosmology and Nongalactic Astrophysics +1412.2446 Geometric Topology +1501.01085 Populations and Evolution +1501.02459 Statistical Mechanics +1501.02731 Number Theory +1502.00322 +1502.01480 Computational Physics +1502.04979 +1503.01006 Materials Science +1503.01218 Data Structures and Algorithms +1504.05773 Data Structures and Algorithms +1504.05883 Algebraic Geometry +1504.06796 Learning +1504.07467 Algebraic Geometry +1505.00723 Materials Science +1505.01982 +1505.03054 Number Theory +1505.04248 +1505.04746 Databases +1505.05064 Algebraic Geometry +1505.05179 Molecular Networks +1505.07833 Cosmology and Nongalactic Astrophysics +1506.00695 Systems and Control +1506.02640 Computer Vision and Pattern Recognition +1506.07216 Learning +1506.07762 +1507.04168 Group Theory +1507.04895 Plasma Physics +1507.06904 +1507.07084 Theory +1507.07574 Phenomenology +1507.08124 Classical Analysis and ODEs +1508.00038 +1508.01994 Instrumentation and Detectors +1508.02306 +1508.02397 Phenomenology +1508.03305 Physics Education +1508.03879 +1508.04003 Strongly Correlated Electrons +1508.04100 +1508.04444 Phenomenology +1508.05090 +1508.05427 Commutative Algebra +1508.06400 Phenomenology +1508.07887 Materials Science +1508.07927 Solar and Stellar Astrophysics +1508.07982 Distributed, Parallel, and Cluster Computing +1509.02753 Biological Physics +1509.02760 Lattice +1509.03156 Superconductivity +1509.03220 +1509.03659 Theory +1509.05192 Other Computer Science +1509.05222 Mesoscale and Nanoscale Physics +1509.05653 +1509.07013 Mesoscale and Nanoscale Physics +1509.07024 Logic +1510.00360 +1510.01696 +1510.01794 Cosmology and Nongalactic Astrophysics +1510.01827 Chemical Physics +1510.01856 Solar and Stellar Astrophysics +1510.01959 Astrophysics of Galaxies +1510.02736 +1510.03400 Subcellular Processes +1510.04159 Phenomenology +1510.04292 Strongly Correlated Electrons +1510.04758 +1510.05581 High Energy Astrophysical Phenomena +1510.06289 Superconductivity +1510.06914 Strongly Correlated Electrons +1510.08205 +1510.08880 Number Theory +1510.09223 Statistical Mechanics +1511.01433 +1511.02721 Phenomenology +1511.02981 Functional Analysis +1511.04117 Fluid Dynamics +1511.04487 Plasma Physics +1511.04597 Mesoscale and Nanoscale Physics +1511.04680 Cosmology and Nongalactic Astrophysics +1511.04733 Strongly Correlated Electrons +1511.04989 Combinatorics +1511.05540 Rings and Algebras +1511.06137 Dynamical Systems +1511.06555 +1511.07202 +1511.07623 Cosmology and Nongalactic Astrophysics +1511.07687 Dynamical Systems +1511.07690 Theory +1511.08305 Statistical Mechanics +1511.08321 Optics +1511.08663 +1511.08697 +1511.08969 +1512.00074 Materials Science +1512.00297 Data Analysis, Statistics and Probability +1512.00488 Cosmology and Nongalactic Astrophysics +1512.00566 Lattice +1512.01354 Mesoscale and Nanoscale Physics +1512.01709 Phenomenology +1512.01959 Phenomenology +1512.02233 Physics and Society +1512.02509 Mesoscale and Nanoscale Physics +1512.02581 Statistical Mechanics +1512.02910 Networking and Internet Architecture +1512.03480 Astrophysics of Galaxies +1512.03705 Mesoscale and Nanoscale Physics +1512.03807 Theory +1512.04022 Accelerator Physics +1512.04373 +1512.04457 Statistical Mechanics +1512.04673 Theory +1512.04739 Phenomenology +1512.04815 Algebraic Topology +1512.04883 Theory +1512.04944 Solar and Stellar Astrophysics +1512.05335 Probability +1512.05387 Theory +1512.06382 Phenomenology +1512.06681 High Energy Astrophysical Phenomena +1512.06889 Statistical Mechanics +1512.07035 Theory +1512.07183 Mesoscale and Nanoscale Physics +1512.07390 Differential Geometry +1512.07410 Chemical Physics +1512.07471 Mesoscale and Nanoscale Physics +1512.07572 Mesoscale and Nanoscale Physics +1512.07584 Numerical Analysis +1512.07696 Quantum Gases +1512.07727 +1512.08665 Quantum Gases +1512.09131 Lattice +1601.00265 Superconductivity +1601.00652 Phenomenology +1601.00673 Mesoscale and Nanoscale Physics +1601.01584 Mesoscale and Nanoscale Physics +1601.02624 Cosmology and Nongalactic Astrophysics +1601.02671 Fluid Dynamics +1601.03275 +1601.03441 Optics +1601.03456 +1601.03749 Phenomenology +1601.03751 Strongly Correlated Electrons +1601.03775 Data Analysis, Statistics and Probability +1601.05096 Theory +1601.05195 Mesoscale and Nanoscale Physics +1601.05621 Phenomenology +1601.05888 Fluid Dynamics +1601.06453 Information Theory +1601.06490 Chaotic Dynamics +1601.06653 Algebraic Geometry +1601.06861 Functional Analysis +1601.07091 Information Theory +1601.07527 Mesoscale and Nanoscale Physics +1601.07756 Theory +1601.07759 Earth and Planetary Astrophysics +1601.07869 Superconductivity +1601.07875 Theory +1601.08071 High Energy Astrophysical Phenomena +1602.00493 Classical Analysis and ODEs +1602.00519 Astrophysics of Galaxies +1602.00599 +1602.00655 High Energy Astrophysical Phenomena +1602.00813 Superconductivity +1602.00911 Mesoscale and Nanoscale Physics +1602.01037 Atomic Physics +1602.01230 Statistical Mechanics +1602.01747 Strongly Correlated Electrons +1602.03222 Optics +1602.03721 Theory +1602.03810 Phenomenology +1602.03926 Applications +1602.04225 Mesoscale and Nanoscale Physics +1602.04276 Mesoscale and Nanoscale Physics +1602.04714 Phenomenology +1602.04986 Soft Condensed Matter +1602.04991 Optics +1602.05095 Mesoscale and Nanoscale Physics +1602.05468 Optics +1602.05517 Statistical Mechanics +1602.05681 Logic in Computer Science +1602.05724 Statistical Mechanics +1602.05949 +1602.06193 Strongly Correlated Electrons +1602.06233 Theory +1602.06612 Machine Learning +1602.06897 Logic in Computer Science +1602.07626 +1602.07846 Phenomenology +1602.07992 +1602.08069 Strongly Correlated Electrons +1602.08948 Statistical Mechanics +1603.00022 Theory +1603.00147 Rings and Algebras +1603.00323 +1603.01206 Cosmology and Nongalactic Astrophysics +1603.01466 +1603.01471 Phenomenology +1603.02122 Optics +1603.02124 Mesoscale and Nanoscale Physics +1603.02125 Astrophysics of Galaxies +1603.02164 Cosmology and Nongalactic Astrophysics +1603.02571 Chemical Physics +1603.02670 Theory +1603.02935 +1603.03177 Solar and Stellar Astrophysics +1603.03613 +1603.03743 +1603.04220 High Energy Astrophysical Phenomena +1603.04302 Astrophysics of Galaxies +1603.04651 +1603.05293 Populations and Evolution +1603.06373 Medical Physics +1603.06426 High Energy Astrophysical Phenomena +1603.06891 Astrophysics of Galaxies +1603.06920 +1603.06989 High Energy Astrophysical Phenomena +1603.07674 Earth and Planetary Astrophysics +1603.07945 Instrumentation and Methods for Astrophysics +1603.08451 +1603.09120 +1603.09589 Combinatorics +1604.00089 Astrophysics of Galaxies +1604.01002 Soft Condensed Matter +1604.01506 Complex Variables +1604.01778 Earth and Planetary Astrophysics +1604.02550 +1604.03104 Earth and Planetary Astrophysics +1604.03164 Combinatorics +1604.03937 Astrophysics of Galaxies +1604.04232 Strongly Correlated Electrons +1604.05758 Biological Physics +1604.05870 +1604.05930 Analysis of PDEs +1604.06557 Superconductivity +1604.06975 Probability +1604.07016 Discrete Mathematics +1604.07072 Optics +1604.08075 Social and Information Networks +1604.08708 Robotics +1604.08801 Plasma Physics +1605.00134 Instrumentation and Detectors +1605.00240 Combinatorics +1605.00260 Combinatorics +1605.00295 Astrophysics of Galaxies +1605.00546 High Energy Astrophysical Phenomena +1605.00709 Combinatorics +1605.00858 Dynamical Systems +1605.00864 +1605.01103 +1605.01111 Materials Science +1605.01139 Complex Variables +1605.01154 +1605.01196 Classical Analysis and ODEs +1605.01261 Astrophysics of Galaxies +1605.01263 Phenomenology +1605.01466 Astrophysics of Galaxies +1605.01467 Astrophysics of Galaxies +1605.01636 Learning +1605.01860 Algebraic Geometry +1605.02178 Computer Vision and Pattern Recognition +1605.02208 Strongly Correlated Electrons +1605.02304 Computers and Society +1605.02345 +1605.02580 History and Overview +1605.02728 Classical Analysis and ODEs +1605.02730 Complex Variables +1605.02752 Dynamical Systems +1605.02754 Soft Condensed Matter +1605.02757 Mesoscale and Nanoscale Physics +1605.02758 Group Theory +1605.02761 Soft Condensed Matter +1605.02762 Soft Condensed Matter +1605.02763 Soft Condensed Matter +1605.02765 Programming Languages +1605.02768 Astrophysics of Galaxies +1605.02775 Computer Vision and Pattern Recognition +1605.02776 Classical Analysis and ODEs +1605.02777 Classical Analysis and ODEs +1605.02778 Cryptography and Security +1605.02784 Machine Learning +1605.02785 Theory +1605.02787 Number Theory +1605.02788 Analysis of PDEs +1605.02789 Mesoscale and Nanoscale Physics +1605.02792 Differential Geometry +1605.02795 Algebraic Geometry +1605.02796 Cryptography and Security +1605.02801 Optics +1605.02806 Mesoscale and Nanoscale Physics +1605.02809 Populations and Evolution +1605.02810 Solar and Stellar Astrophysics +1605.02813 Systems and Control +1605.02815 Computational Complexity +1605.02816 Optimization and Control +1605.02818 Information Theory +1605.02819 +1605.02826 Probability +1605.02830 Materials Science +1605.02832 Learning +1605.02833 Probability +1605.02839 Number Theory +1605.02840 Numerical Analysis +1605.02841 Number Theory +1605.02843 General Mathematics +1605.02845 Numerical Analysis +1605.02848 Optimization and Control +1605.02849 +1605.02851 Statistical Mechanics +1605.02856 Information Theory +1605.02858 Numerical Analysis +1605.02860 Networking and Internet Architecture +1605.02861 Experiment +1605.02862 Differential Geometry +1605.02863 Numerical Analysis +1605.02865 Phenomenology +1605.02866 Combinatorics +1605.02867 Instrumentation and Detectors +1605.02873 Functional Analysis +1605.02877 Information Theory +1605.02878 Information Theory +1605.02883 Chaotic Dynamics +1605.02884 Instrumentation and Detectors +1605.02885 Information Theory +1605.02886 Networking and Internet Architecture +1605.02887 Machine Learning +1605.02888 +1605.02891 Discrete Mathematics +1605.02892 Computer Vision and Pattern Recognition +1605.02894 Information Theory +1605.02895 Functional Analysis +1605.02896 Instrumentation and Detectors +1605.02898 Representation Theory +1605.02899 Information Theory +1605.02900 Probability +1605.02905 Discrete Mathematics +1605.02906 Instrumentation and Detectors +1605.02916 Computation and Language +1605.02917 Information Retrieval +1605.02920 Number Theory +1605.02926 Analysis of PDEs +1605.02928 Information Theory +1605.02929 Artificial Intelligence +1605.02933 Dynamical Systems +1605.02935 Programming Languages +1605.02940 Number Theory +1605.02941 Programming Languages +1605.02942 Soft Condensed Matter +1605.02949 +1605.02950 Cryptography and Security +1605.02952 Information Theory +1605.02954 Cryptography and Security +1605.02955 +1605.02956 Combinatorics +1605.02960 Physics and Society +1605.02961 Number Theory +1605.02962 Differential Geometry +1605.02963 Cosmology and Nongalactic Astrophysics +1605.02968 Information Theory +1605.02969 Information Theory +1605.02970 Optimization and Control +1605.02974 Optimization and Control +1605.02976 Multimedia +1605.02978 Chaotic Dynamics +1605.02979 General Physics +1605.02980 Information Theory +1605.02981 Probability +1605.02983 General Physics +1605.02989 Machine Learning +1605.02991 Systems and Control +1605.02993 High Energy Astrophysical Phenomena +1605.02995 Combinatorics +1605.02996 Performance +1605.02999 Number Theory +1605.03000 Methodology +1605.03001 Data Structures and Algorithms +1605.03004 Learning +1605.03012 Computer Vision and Pattern Recognition +1605.03015 History and Overview +1605.03016 Optimization and Control +1605.03019 Computational Complexity +1605.03021 Mesoscale and Nanoscale Physics +1605.03022 Earth and Planetary Astrophysics +1605.03027 Machine Learning +1605.03032 Medical Physics +1605.03033 Optics +1605.03036 Robotics +1605.03037 Instrumentation and Methods for Astrophysics +1605.03038 Computers and Society +1605.03039 Robotics +1605.03040 Machine Learning +1605.03045 Logic in Computer Science +1605.03046 Combinatorics +1605.03047 Distributed, Parallel, and Cluster Computing +1605.03052 +1605.03062 Accelerator Physics +1605.03063 Computational Complexity +1605.03066 Numerical Analysis +1605.03068 Performance +1605.03071 Data Structures and Algorithms +1605.03075 Computational Physics +1605.03078 Mesoscale and Nanoscale Physics +1605.03079 Networking and Internet Architecture +1605.03086 Combinatorics +1605.03091 Atomic Physics +1605.03093 Functional Analysis +1605.03094 Mesoscale and Nanoscale Physics +1605.03095 Analysis of PDEs +1605.03096 Information Theory +1605.03097 Analysis of PDEs +1605.03100 Differential Geometry +1605.03101 Mesoscale and Nanoscale Physics +1605.03102 Differential Geometry +1605.03105 Commutative Algebra +1605.03107 Computers and Society +1605.03112 +1605.03116 Cryptography and Security +1605.03118 Mesoscale and Nanoscale Physics +1605.03119 Subcellular Processes +1605.03122 Machine Learning +1605.03123 Mesoscale and Nanoscale Physics +1605.03124 Computer Vision and Pattern Recognition +1605.03125 +1605.03127 Optimization and Control +1605.03129 Strongly Correlated Electrons +1605.03132 Mesoscale and Nanoscale Physics +1605.03133 Economics +1605.03134 Mesoscale and Nanoscale Physics +1605.03135 Optimization and Control +1605.03137 Geometric Topology +1605.03139 Algebraic Geometry +1605.03140 Geometric Topology +1605.03142 Artificial Intelligence +1605.03143 Artificial Intelligence +1605.03144 Optics +1605.03149 Formal Languages and Automata Theory +1605.03150 Computer Vision and Pattern Recognition +1605.03153 Fluid Dynamics +1605.03154 Methodology +1605.03158 Networking and Internet Architecture +1605.03159 Phenomenology +1605.03165 Theory +1605.03167 Classical Analysis and ODEs +1605.03168 Number Theory +1605.03172 Combinatorics +1605.03173 Theory +1605.03175 Software Engineering +0802.2913 +0804.3746 +1105.6219 +1109.5459 +1110.4418 Solar and Stellar Astrophysics +1112.4959 +1202.0537 +1205.5508 Statistics Theory +1207.0295 +1207.3151 Symplectic Geometry +1208.4046 Category Theory +1209.2527 Statistical Mechanics +1209.4563 +1209.5843 Solar and Stellar Astrophysics +1211.6075 Theory +1301.6194 Dynamical Systems +1302.0071 Number Theory +1302.7019 Algebraic Topology +1303.1708 Combinatorics +1303.4778 Learning +1303.5849 High Energy Astrophysical Phenomena +1306.1816 +1307.7836 Symbolic Computation +1308.4324 Dynamical Systems +1308.5742 Solar and Stellar Astrophysics +1309.5811 Plasma Physics +1309.6771 Dynamical Systems +1310.5114 Disordered Systems and Neural Networks +1310.5604 General Mathematics +1312.4788 Phenomenology +1402.3416 Disordered Systems and Neural Networks +1402.5612 Materials Science +1407.7663 Neural and Evolutionary Computing +1407.7685 Exactly Solvable and Integrable Systems +1409.1544 Logic in Computer Science +1410.5376 Algebraic Geometry +1410.5917 Geometric Topology +1410.6623 +1410.7912 Data Structures and Algorithms +1411.2287 Differential Geometry +1411.2370 Social and Information Networks +1411.5555 Computer Vision and Pattern Recognition +1412.7705 Probability +1412.8326 +1501.03750 +1502.00623 +1502.02911 Plasma Physics +1502.06736 Statistical Mechanics +1503.08154 Discrete Mathematics +1503.08169 Distributed, Parallel, and Cluster Computing +1504.03838 Number Theory +1504.05569 Analysis of PDEs +1504.07592 High Energy Astrophysical Phenomena +1505.00468 Computation and Language +1505.00534 Differential Geometry +1505.07125 Phenomenology +1506.01302 Phenomenology +1506.03399 Differential Geometry +1506.04489 Methodology +1506.04843 Computer Vision and Pattern Recognition +1506.07469 Phenomenology +1507.00803 Methodology +1507.01856 Analysis of PDEs +1507.03323 Social and Information Networks +1507.04530 Phenomenology +1508.07069 Disordered Systems and Neural Networks +1509.02041 Analysis of PDEs +1509.04414 Differential Geometry +1509.08104 Materials Science +1510.00559 +1510.00600 Combinatorics +1510.03162 Information Theory +1510.04223 Group Theory +1510.05907 Phenomenology +1510.07558 Statistical Mechanics +1510.07960 Statistical Mechanics +1510.08553 Cosmology and Nongalactic Astrophysics +1510.08885 Algebraic Geometry +1511.02901 Operator Algebras +1511.03847 Fluid Dynamics +1511.07664 Quantum Algebra +1511.09382 Probability +1512.01433 Commutative Algebra +1512.03265 Theory +1512.03998 Numerical Analysis +1512.04572 Soft Condensed Matter +1512.08641 Analysis of PDEs +1512.09327 Learning +1601.01787 Quantum Gases +1601.01961 Materials Science +1601.02838 +1601.04448 Data Structures and Algorithms +1601.06448 Probability +1601.07772 +1602.04588 Algebraic Geometry +1602.05952 +1602.06407 Computational Geometry +1602.08702 Statistical Mechanics +1603.00177 Theory +1603.00864 Theory +1603.00945 Numerical Analysis +1603.03072 Cosmology and Nongalactic Astrophysics +1603.04457 Materials Science +1603.07379 Analysis of PDEs +1604.00809 Phenomenology +1604.02065 High Energy Astrophysical Phenomena +1604.02709 Number Theory +1604.05326 Theory +1604.05857 Algebraic Topology +1604.07101 Learning +1604.07688 Statistical Mechanics +1605.00906 Analysis of PDEs +1605.03248 Theory +1605.03745 Quantitative Methods +1605.03777 +1605.03914 Physics and Society +1605.03982 Cosmology and Nongalactic Astrophysics +1605.06187 Analysis of PDEs +1605.06431 Computer Vision and Pattern Recognition +1605.06481 Analysis of PDEs +1605.07309 Instrumentation and Detectors +1605.07719 Machine Learning +1605.07912 Learning +1605.07966 Algebraic Topology +1605.08003 Optimization and Control +1605.08288 Formal Languages and Automata Theory +1605.08694 +1605.08865 Strongly Correlated Electrons +1605.09155 Theory +1605.09442 Logic in Computer Science +1606.00076 Representation Theory +1606.00119 Learning +1606.01317 Dynamical Systems +1606.01802 Tissues and Organs +1606.02118 Optimization and Control +1606.03514 Quantum Gases +1606.03973 Methodology +1606.06084 +1606.06193 Lattice +1606.06732 Phenomenology +1606.08268 Statistical Mechanics +1606.08690 Number Theory +1606.09249 Strongly Correlated Electrons +1606.09267 Materials Science +1607.01167 Combinatorics +1607.01544 Materials Science +1607.02386 Optics +1607.03809 Number Theory +1607.04214 Probability +1607.04837 Phenomenology +1607.04921 Phenomenology +1607.05599 Phenomenology +1607.05939 Lattice +1607.06657 Learning +1607.07285 Materials Science +1607.08540 +1608.00472 Phenomenology +1608.00479 Materials Science +1608.01666 Probability +1608.03286 Theory +1608.03711 +1608.03918 +1608.05407 Theory +1608.06433 Materials Science +1608.06546 Quantitative Methods +1608.06548 Neurons and Cognition +1608.06758 Statistics Theory +1608.07493 Commutative Algebra +1608.07863 Mathematical Finance +1608.08638 Cosmology and Nongalactic Astrophysics +1608.08895 Optimization and Control +1609.00199 Phenomenology +1609.00733 Solar and Stellar Astrophysics +1609.00811 +1609.00945 Human-Computer Interaction +1609.01581 Materials Science +1609.02420 Geometric Topology +1609.03803 +1609.03914 Dynamical Systems +1609.04276 +1609.05330 Theory +1609.07575 Combinatorics +1609.08033 Differential Geometry +1609.08076 Disordered Systems and Neural Networks +1609.08238 Differential Geometry +1609.08525 Superconductivity +1610.00102 +1610.01374 Computer Vision and Pattern Recognition +1610.01974 +1610.02571 Fluid Dynamics +1610.02870 Theory +1610.03305 Robotics +1610.03315 Phenomenology +1610.03774 Machine Learning +1610.03913 Solar and Stellar Astrophysics +1610.04624 Strongly Correlated Electrons +1610.04673 Computer Vision and Pattern Recognition +1610.05588 Number Theory +1610.06269 Emerging Technologies +1610.06371 Software Engineering +1610.06502 Probability +1610.07509 Geometric Topology +1610.07646 Mesoscale and Nanoscale Physics +1610.07652 Number Theory +1610.07799 High Energy Astrophysical Phenomena +1610.07908 Computational Complexity +1610.07910 Disordered Systems and Neural Networks +1610.08007 Number Theory +1610.08115 Artificial Intelligence +1610.08127 Learning +1610.08138 Classical Analysis and ODEs +1610.08200 Software Engineering +1610.08238 +1610.08239 Learning +1610.08261 Logic +1610.08340 Instrumentation and Methods for Astrophysics +1610.08374 Tissues and Organs +1610.08481 Computer Vision and Pattern Recognition +1610.08498 Chemical Physics +1610.08500 Robotics +1610.08503 Astrophysics of Galaxies +1610.08512 Phenomenology +1610.08514 +1610.08518 Other Condensed Matter +1610.08523 Astrophysics of Galaxies +1610.08524 Solar and Stellar Astrophysics +1610.08526 Theory +1610.08528 Astrophysics of Galaxies +1610.08532 High Energy Astrophysical Phenomena +1610.08533 Probability +1610.08534 Systems and Control +1610.08537 Phenomenology +1610.08538 Space Physics +1610.08544 Soft Condensed Matter +1610.08545 Group Theory +1610.08546 Phenomenology +1610.08548 +1610.08550 Materials Science +1610.08551 Number Theory +1610.08552 Molecular Networks +1610.08556 Soft Condensed Matter +1610.08558 Portfolio Management +1610.08559 Databases +1610.08560 Differential Geometry +1610.08565 Analysis of PDEs +1610.08567 Numerical Analysis +1610.08568 Optimization and Control +1610.08570 Cryptography and Security +1610.08572 Complex Variables +1610.08575 Discrete Mathematics +1610.08576 Chemical Physics +1610.08577 Analysis of PDEs +1610.08579 Dynamical Systems +1610.08583 Instrumentation and Detectors +1610.08587 Lattice +1610.08588 Materials Science +1610.08590 Logic +1610.08591 +1610.08592 +1610.08594 Materials Science +1610.08595 Combinatorics +1610.08597 Social and Information Networks +1610.08599 Operator Algebras +1610.08600 High Energy Astrophysical Phenomena +1610.08602 Artificial Intelligence +1610.08604 +1610.08606 Computer Vision and Pattern Recognition +1610.08607 Software Engineering +1610.08608 Numerical Analysis +1610.08609 Dynamical Systems +1610.08611 Machine Learning +1610.08612 Lattice +1610.08614 Symplectic Geometry +1610.08615 Logic +1610.08616 Computer Vision and Pattern Recognition +1610.08618 Physics and Society +1610.08620 Logic +1610.08623 Machine Learning +1610.08624 Computer Vision and Pattern Recognition +1610.08625 Astrophysics of Galaxies +1610.08627 Computer Vision and Pattern Recognition +1610.08628 Machine Learning +1610.08629 Computers and Society +1610.08630 Mesoscale and Nanoscale Physics +1610.08632 Cosmology and Nongalactic Astrophysics +1610.08633 Strongly Correlated Electrons +1610.08637 Machine Learning +1610.08638 Fluid Dynamics +1610.08639 Accelerator Physics +1610.08640 Artificial Intelligence +1610.08642 Mesoscale and Nanoscale Physics +1610.08643 Optics +1610.08644 Mathematical Finance +1610.08645 Strongly Correlated Electrons +1610.08646 Analysis of PDEs +1610.08647 Numerical Analysis +1610.08648 Optimization and Control +1610.08650 Soft Condensed Matter +1610.08654 Classical Analysis and ODEs +1610.08655 Experiment +1610.08657 Statistical Mechanics +1610.08658 +1610.08659 Materials Science +1610.08660 Instrumentation and Detectors +1610.08662 Probability +1610.08663 Methodology +1610.08664 Quantitative Methods +1610.08665 Applications +1610.08666 Computational Physics +1610.08668 Systems and Control +1610.08669 Mesoscale and Nanoscale Physics +1610.08670 +1610.08671 Rings and Algebras +1610.08673 Numerical Analysis +1610.08674 Solar and Stellar Astrophysics +1610.08675 Algebraic Geometry +1610.08676 General Finance +1610.08677 Probability +1610.08679 Phenomenology +1610.08681 Analysis of PDEs +1610.08685 Distributed, Parallel, and Cluster Computing +1610.08686 Social and Information Networks +1610.08692 History and Philosophy of Physics +1610.08693 Information Theory +1610.08697 Optimization and Control +1610.08699 Geometric Topology +1610.08700 Logic +1610.08701 +1610.08702 Differential Geometry +1610.08706 Differential Geometry +1610.08710 Solar and Stellar Astrophysics +1610.08712 High Energy Astrophysical Phenomena +1610.08716 Data Analysis, Statistics and Probability +1610.08718 Methodology +1610.08719 +1610.08721 +1610.08723 Probability +1610.08725 Cosmology and Nongalactic Astrophysics +1610.08727 Cryptography and Security +1610.08728 Superconductivity +1610.08729 Number Theory +1610.08730 Chemical Physics +1610.08731 Complex Variables +1610.08732 Probability +1610.08733 Machine Learning +1610.08734 Accelerator Physics +1610.08739 Data Structures and Algorithms +1610.08740 Theory +1610.08743 Dynamical Systems +1610.08746 Analysis of PDEs +1610.08747 Complex Variables +1610.08748 Phenomenology +1610.08749 Machine Learning +1610.08750 Analysis of PDEs +1610.08751 +1610.08755 Phenomenology +1610.08756 Mesoscale and Nanoscale Physics +1610.08757 Theory +1610.08759 Group Theory +1610.08762 Cryptography and Security +1610.08763 Computation and Language +1610.08764 Differential Geometry +1610.08765 Other Computer Science +1610.08766 Other Computer Science +1610.08767 Trading and Market Microstructure +1610.08768 Methodology +1610.08769 Probability +1610.08770 High Energy Astrophysical Phenomena +1610.08771 General Physics +1610.08773 Materials Science +1610.08774 Category Theory +1610.08776 Optimization and Control +1610.08777 Optimization and Control +1610.08778 Populations and Evolution +1610.08779 Methodology +1610.08781 Commutative Algebra +1610.08782 Risk Management +1610.08783 Algebraic Geometry +1610.08784 Functional Analysis +1610.08786 Probability +1610.08787 Chemical Physics +1610.08789 +1610.08790 Differential Geometry +1610.08794 Mesoscale and Nanoscale Physics +1610.08796 Instrumentation and Methods for Astrophysics +1610.08797 Lattice +1610.08798 Solar and Stellar Astrophysics +1610.08799 Materials Science +1610.08804 Multiagent Systems +1610.08805 Methodology +1610.08806 Mathematical Finance +1610.08807 Materials Science +1610.08808 Computer Vision and Pattern Recognition +1610.08809 Data Structures and Algorithms +1610.08810 Phenomenology +1610.08813 Machine Learning +1610.08814 +1610.08816 Combinatorics +1610.08818 Portfolio Management +1610.08819 Geometric Topology +1610.08820 Discrete Mathematics +1610.08821 +1610.08822 Complex Variables +1610.08827 Soft Condensed Matter +1610.08828 Solar and Stellar Astrophysics +1610.08832 Cryptography and Security +1610.08833 Distributed, Parallel, and Cluster Computing +1610.08835 Phenomenology +1610.08838 Machine Learning +1610.08840 +1610.08841 +1610.08845 Logic in Computer Science +1610.08847 Plasma Physics +1610.08848 Analysis of PDEs +1610.08850 +1610.08853 Artificial Intelligence +1610.08854 Computer Vision and Pattern Recognition +1610.08855 Combinatorics +1610.08859 Materials Science +1610.08860 Methodology +1610.08861 Machine Learning +1610.08862 Solar and Stellar Astrophysics +1610.08863 Number Theory +1610.08865 Computation +1610.08868 Cosmology and Nongalactic Astrophysics +1610.08871 Computer Vision and Pattern Recognition +1610.08873 Differential Geometry +1610.08876 Statistics Theory +1610.08877 Materials Science +1610.08879 Materials Science +1610.08881 Numerical Analysis +1610.08884 Discrete Mathematics +1610.08885 Systems and Control +1610.08886 +1610.08888 Superconductivity +1610.08892 Analysis of PDEs +1610.08894 High Energy Astrophysical Phenomena +1610.08895 Instrumentation and Methods for Astrophysics +1610.08896 Metric Geometry +1610.08899 Methodology +1610.08902 Theory +1610.08903 Methodology +1610.08904 Computer Vision and Pattern Recognition +1610.08906 Computer Science and Game Theory +1610.08909 Methodology +1610.08910 Logic in Computer Science +1610.08911 Software Engineering +1610.08913 Number Theory +1610.08915 Materials Science +1610.08916 Cosmology and Nongalactic Astrophysics +1610.08920 Probability +1610.08922 Experiment +1610.08923 Combinatorics +1610.08924 Analysis of PDEs +1610.08926 High Energy Astrophysical Phenomena +1610.08927 Machine Learning +1610.08928 Machine Learning +1610.08930 Phenomenology +1610.08936 Learning +1610.08937 Solar and Stellar Astrophysics +1610.08938 Dynamical Systems +1610.08941 Mesoscale and Nanoscale Physics +1610.08943 Analysis of PDEs +1610.08946 Analysis of PDEs +1610.08947 Geometric Topology +1610.08948 Astrophysics of Galaxies +1610.08949 Analysis of PDEs +1610.08950 Optics +1610.08951 Plasma Physics +1610.08954 +1610.08959 Quantum Gases +1610.08962 Computation +1610.08963 Physics and Society +1610.08964 +1610.08967 Classical Physics +1610.08969 Operator Algebras +1610.08971 Astrophysics of Galaxies +cond-mat/9912186 Mesoscale and Nanoscale Physics +hep-ph/0611106 Phenomenology +hep-th/0410196 Theory +math-ph/0405018 +math-ph/0405022 +math-ph/0607029 +math-ph/0702050 +0810.1854 +0907.0955 Number Theory +0907.0972 Number Theory +0908.0670 Number Theory +1006.3339 Number Theory +1011.0323 Number Theory +1011.0561 +1101.1408 Representation Theory +1109.6616 Mesoscale and Nanoscale Physics +1203.2242 Number Theory +1203.2461 Algebraic Topology +1205.0182 Number Theory +1206.1386 Machine Learning +1211.5444 Mesoscale and Nanoscale Physics +1211.6343 Instrumentation and Detectors +1212.4192 Geometric Topology +1302.4285 Number Theory +1306.0429 Superconductivity +1306.4838 Representation Theory +1307.5527 +1308.0877 Combinatorics +1309.0625 +1309.7229 Algebraic Geometry +1312.3421 Geometric Topology +1312.4310 Representation Theory +1401.0327 +1402.2123 Functional Analysis +1403.1731 Functional Analysis +1403.4494 Statistical Mechanics +1404.2330 +1404.7426 Algebraic Geometry +1405.6194 Dynamical Systems +1406.4722 Algebraic Topology +1407.3254 Statistics Theory +1407.3408 Materials Science +1407.3542 Instrumentation and Methods for Astrophysics +1407.6306 Probability +1408.1216 Materials Science +1408.1740 Pattern Formation and Solitons +1408.1801 Number Theory +1408.3249 Number Theory +1408.4634 Spectral Theory +1408.6397 Probability +1409.0198 Number Theory +1409.3713 Combinatorics +1409.4150 Computer Science and Game Theory +1409.4879 Analysis of PDEs +1409.5777 Functional Analysis +1409.8390 Logic +1410.1395 Instrumentation and Detectors +1410.6080 Probability +1410.8257 Probability +1410.8312 Classical Analysis and ODEs +1410.8704 Classical Physics +1411.2962 Algebraic Geometry +1411.7936 +1412.0698 Mesoscale and Nanoscale Physics +1501.02700 Classical Analysis and ODEs +1501.05447 Methodology +1501.06097 Geometric Topology +1501.07138 Geometric Topology +1503.00013 Information Theory +1503.06738 Probability +1503.07788 Algebraic Topology +1503.08952 +1504.01130 Data Structures and Algorithms +1504.03069 Strongly Correlated Electrons +1504.03837 Mesoscale and Nanoscale Physics +1505.00179 Theory +1505.01025 Statistical Mechanics +1505.02678 Combinatorics +1505.06795 Computer Vision and Pattern Recognition +1505.07023 +1506.01144 Computer Vision and Pattern Recognition +1506.01695 Computational Complexity +1506.01745 Strongly Correlated Electrons +1506.04406 Combinatorics +1506.05768 Strongly Correlated Electrons +1506.06028 Cosmology and Nongalactic Astrophysics +1506.07635 Programming Languages +1506.08383 Theory +1506.08904 Disordered Systems and Neural Networks +1506.09039 Machine Learning +1507.01203 +1507.01253 Differential Geometry +1507.02888 Mesoscale and Nanoscale Physics +1507.03070 High Energy Astrophysical Phenomena +1507.05195 Algebraic Geometry +1507.06799 Materials Science +1507.08068 Theory +1508.01077 Optimization and Control +1508.01353 +1508.03085 Mesoscale and Nanoscale Physics +1509.00163 +1509.02946 Theory +1509.03582 Adaptation and Self-Organizing Systems +1509.03750 Experiment +1509.04732 +1509.04843 +1509.06168 Mesoscale and Nanoscale Physics +1509.07331 Phenomenology +1509.08853 Operator Algebras +1509.09244 Chemical Physics +1510.00354 Computational Complexity +1510.00518 +1510.00969 +1510.01261 Systems and Control +1510.03569 Number Theory +1510.04187 Probability +1510.04743 Experiment +1510.05364 Materials Science +1510.06179 +1510.07379 Data Analysis, Statistics and Probability +1510.07640 Strongly Correlated Electrons +1510.07912 Materials Science +1510.08660 Learning +1511.00908 Number Theory +1511.03593 Mesoscale and Nanoscale Physics +1511.05256 Theory +1511.05284 Computer Vision and Pattern Recognition +1511.05983 Cosmology and Nongalactic Astrophysics +1511.06000 Data Structures and Algorithms +1511.06122 +1511.06783 Computer Vision and Pattern Recognition +1511.07031 Information Theory +1511.07764 Computational Physics +1511.08537 Analysis of PDEs +1511.09439 Computer Vision and Pattern Recognition +1512.01237 Theory +1512.01786 Logic +1512.02105 +1512.02576 Phenomenology +1512.03794 Metric Geometry +1512.04160 Combinatorics +1512.04924 Phenomenology +1512.07003 Classical Analysis and ODEs +1512.07946 +1512.09145 Theory +1512.09180 Information Theory +1601.00348 +1601.00602 Phenomenology +1601.02198 Statistical Mechanics +1601.02360 +1601.07211 Analysis of PDEs +1601.07504 Strongly Correlated Electrons +1601.07743 Classical Analysis and ODEs +1601.08207 Dynamical Systems +1602.02096 Strongly Correlated Electrons +1602.02385 +1602.02778 Strongly Correlated Electrons +1602.04777 Combinatorics +1602.05265 Differential Geometry +1602.05320 Materials Science +1602.06632 Computer Vision and Pattern Recognition +1602.06938 High Energy Astrophysical Phenomena +1602.07304 High Energy Astrophysical Phenomena +1602.09088 Computer Science and Game Theory +1602.09129 Strongly Correlated Electrons +1603.00680 +1603.01458 Group Theory +1603.01493 Operator Algebras +1603.02408 Experiment +1603.03608 Computational Engineering, Finance, and Science +1603.03954 Dynamical Systems +1603.04115 +1603.04367 Quantum Algebra +1603.04493 Instrumentation and Detectors +1603.06784 Strongly Correlated Electrons +1604.00707 Materials Science +1604.01352 Algebraic Geometry +1604.02775 Materials Science +1604.02918 Probability +1604.03497 Phenomenology +1604.03825 Analysis of PDEs +1604.04335 High Energy Astrophysical Phenomena +1604.04772 Distributed, Parallel, and Cluster Computing +1604.04978 Discrete Mathematics +1604.05516 Networking and Internet Architecture +1604.05557 Artificial Intelligence +1604.05578 Complex Variables +1604.05773 Networking and Internet Architecture +1604.06029 Algebraic Geometry +1604.06190 Experiment +1604.06476 +1604.06828 Probability +1604.07392 Materials Science +1604.07453 Combinatorics +1604.07529 Social and Information Networks +1604.07794 Representation Theory +1604.07914 +1604.07997 Digital Libraries +1604.08137 Distributed, Parallel, and Cluster Computing +1604.08209 Theory +1604.08216 Algebraic Geometry +1604.08220 Learning +1604.08222 Theory +1604.08226 Multiagent Systems +1604.08227 Logic +1604.08229 Artificial Intelligence +1604.08230 Information Theory +1604.08231 Information Theory +1604.08233 Phenomenology +1604.08235 Computers and Society +1604.08236 Differential Geometry +1604.08237 Optimization and Control +1604.08239 Human-Computer Interaction +1604.08240 Geometric Topology +1604.08243 Networking and Internet Architecture +1604.08245 Multimedia +1604.08248 Logic in Computer Science +1604.08250 Soft Condensed Matter +1604.08252 Dynamical Systems +1604.08255 Software Engineering +1604.08256 Computer Vision and Pattern Recognition +1604.08259 Group Theory +1604.08260 Plasma Physics +1604.08262 Algebraic Geometry +1604.08265 Analysis of PDEs +1604.08267 Geometric Topology +1604.08268 Artificial Intelligence +1604.08270 Artificial Intelligence +1604.08271 Algebraic Geometry +1604.08275 Cryptography and Security +1604.08276 Probability +1604.08284 Human-Computer Interaction +1604.08289 +1604.08291 Machine Learning +1604.08293 Superconductivity +1604.08294 Methodology +1604.08299 Combinatorics +1604.08302 +1604.08303 Number Theory +1604.08309 Earth and Planetary Astrophysics +1604.08311 Chemical Physics +1604.08313 Phenomenology +1604.08314 Quantitative Methods +1604.08320 Methodology +1604.08322 Human-Computer Interaction +1604.08330 Distributed, Parallel, and Cluster Computing +1604.08333 Phenomenology +1604.08335 Distributed, Parallel, and Cluster Computing +1604.08340 Artificial Intelligence +1604.08341 Probability +1604.08349 Materials Science +1604.08351 Probability +1604.08352 Computer Vision and Pattern Recognition +1604.08358 Classical Physics +1604.08360 Instrumentation and Methods for Astrophysics +1604.08372 Spectral Theory +1604.08373 Earth and Planetary Astrophysics +1604.08374 Solar and Stellar Astrophysics +1604.08375 Superconductivity +1604.08377 Databases +1604.08378 Probability +1604.08385 Theory +1604.08389 Strongly Correlated Electrons +1604.08390 Popular Physics +1604.08391 Phenomenology +1604.08392 Phenomenology +1604.08394 Physics and Society +1604.08395 Superconductivity +1604.08396 Analysis of PDEs +1604.08397 Networking and Internet Architecture +1604.08398 History and Philosophy of Physics +1604.08399 +1604.08402 Machine Learning +1604.08409 Analysis of PDEs +1604.08410 Numerical Analysis +1604.08414 Instrumentation and Methods for Astrophysics +1604.08418 Information Theory +1604.08419 Phenomenology +1604.08420 Information Retrieval +1604.08421 Differential Geometry +1604.08423 +1604.08430 Geometric Topology +1604.08433 Differential Geometry +1604.08434 Statistical Mechanics +1604.08435 Commutative Algebra +1604.08438 Soft Condensed Matter +1604.08439 Combinatorics +1604.08442 Rings and Algebras +1604.08445 Classical Analysis and ODEs +1604.08449 Atomic Physics +1604.08451 Classical Physics +1604.08459 Optimization and Control +1604.08460 Instrumentation and Methods for Astrophysics +1604.08461 Computational Physics +1604.08470 Statistics Theory +1604.08472 History and Overview +1604.08474 Accelerator Physics +1604.08476 Numerical Analysis +1604.08478 Group Theory +1604.08480 Algebraic Topology +1604.08481 General Physics +1604.08484 Distributed, Parallel, and Cluster Computing +1604.08485 Analysis of PDEs +1604.08486 Fluid Dynamics +1604.08489 Differential Geometry +1604.08491 Data Structures and Algorithms +1604.08496 Materials Science +1604.08499 Materials Science +1604.08500 Learning +1604.08501 Programming Languages +1604.08503 Algebraic Geometry +1604.08507 Social and Information Networks +1604.08508 Neurons and Cognition +1604.08510 Number Theory +1604.08517 Commutative Algebra +1604.08518 +1604.08519 Mesoscale and Nanoscale Physics +1604.08524 Machine Learning +1604.08527 Strongly Correlated Electrons +1604.08534 +1604.08540 Earth and Planetary Astrophysics +1604.08542 +1604.08544 Numerical Analysis +1604.08545 Differential Geometry +1604.08546 Probability +1604.08547 Probability +1604.08549 Chemical Physics +1604.08552 Networking and Internet Architecture +1604.08558 Computational Complexity +1604.08561 Computation and Language +1604.08562 Solar and Stellar Astrophysics +1604.08563 Instrumentation and Methods for Astrophysics +1604.08569 Category Theory +1604.08571 Strongly Correlated Electrons +1604.08579 Metric Geometry +1604.08580 K-Theory and Homology +0705.3458 Combinatorics +0901.3751 Databases +0905.3895 Pattern Formation and Solitons +1004.2694 Geometric Topology +1004.4250 Optimization and Control +1009.3247 Optimization and Control +1106.2773 Optimization and Control +1106.2781 Optimization and Control +1201.6610 Algebraic Topology +1203.0543 Data Structures and Algorithms +1208.5757 Optimization and Control +1211.0638 Methodology +1301.1977 Theory +1301.5373 Analysis of PDEs +1301.7313 Materials Science +1303.2463 Astrophysics of Galaxies +1304.6242 Dynamical Systems +1307.4439 Geometric Topology +1307.5407 Classical Analysis and ODEs +1309.1770 Analysis of PDEs +1309.1772 Analysis of PDEs +1309.1846 Data Structures and Algorithms +1309.4775 Theory +1311.1891 Algebraic Geometry +1312.5946 Learning +1402.0033 Logic +1402.2939 Number Theory +1402.6724 Probability +1403.1523 Computational Engineering, Finance, and Science +1403.4404 Combinatorics +1403.6348 Artificial Intelligence +1404.4118 Probability +1405.4551 Strongly Correlated Electrons +1406.0153 Fluid Dynamics +1406.1945 Geometric Topology +1406.3786 Symplectic Geometry +1407.6205 General Physics +1407.7379 Probability +1408.2176 Classical Analysis and ODEs +1408.6750 Probability +1409.6319 Quantum Gases +1410.0590 Phenomenology +1412.3376 Representation Theory +1412.4524 Group Theory +1412.5776 Rings and Algebras +1412.6911 Probability +1501.00524 Number Theory +1501.01053 +1501.02316 +1501.03192 Optics +1502.03571 Optimization and Control +1502.07325 Phenomenology +1503.00337 Quantum Algebra +1503.00801 Differential Geometry +1503.02121 Algebraic Geometry +1503.02622 +1503.03371 Adaptation and Self-Organizing Systems +1503.05487 Fluid Dynamics +1503.06465 Computer Vision and Pattern Recognition +1503.06663 Popular Physics +1504.02298 Information Theory +1504.02367 Discrete Mathematics +1504.02730 Operator Algebras +1504.03447 Dynamical Systems +1504.03652 Superconductivity +1504.04715 Formal Languages and Automata Theory +1504.05290 Classical Analysis and ODEs +1505.02249 Algebraic Geometry +1505.03790 Superconductivity +1505.04665 Phenomenology +1505.06493 Commutative Algebra +1505.06721 Mesoscale and Nanoscale Physics +1506.00793 Mesoscale and Nanoscale Physics +1506.05244 Applications +1506.05246 +1506.05841 Geometric Topology +1507.00794 Optics +1507.01948 Astrophysics of Galaxies +1507.02131 Phenomenology +1507.03219 Logic in Computer Science +1507.05878 +1507.06015 Risk Management +1508.00379 Materials Science +1508.00887 Number Theory +1508.02962 Analysis of PDEs +1508.04062 Algebraic Topology +1508.04984 Mesoscale and Nanoscale Physics +1508.05878 +1508.07270 Lattice +1508.07548 Symplectic Geometry +1509.00268 Networking and Internet Architecture +1509.01478 +1509.01826 +1509.03901 Dynamical Systems +1509.05464 Combinatorics +1509.05911 Analysis of PDEs +1509.06411 Statistical Mechanics +1509.07278 Data Structures and Algorithms +1509.08966 Group Theory +1509.09274 Algebraic Geometry +1510.01191 Number Theory +1510.01262 +1510.02434 Analysis of PDEs +1510.05741 Analysis of PDEs +1510.08336 Numerical Analysis +1511.00085 Materials Science +1511.00569 +1511.02097 Materials Science +1511.02976 Neurons and Cognition +1511.04111 Representation Theory +1511.04663 Materials Science +1511.04764 Portfolio Management +1511.07099 +1511.07902 Machine Learning +1511.08655 Quantum Gases +1512.00056 Exactly Solvable and Integrable Systems +1512.01016 Strongly Correlated Electrons +1512.04065 Computer Vision and Pattern Recognition +1512.05215 Probability +1512.05300 Computer Vision and Pattern Recognition +1512.05332 Phenomenology +1512.05782 Phenomenology +1512.06266 Mesoscale and Nanoscale Physics +1512.07025 Combinatorics +1512.07810 Biomolecules +1512.08153 Mesoscale and Nanoscale Physics +1512.09264 Algebraic Geometry +1512.09272 Computer Vision and Pattern Recognition +1512.09302 Optimization and Control +1601.00076 Theory +1601.05217 Phenomenology +1601.05522 +1601.05635 Optics +1601.06712 Mesoscale and Nanoscale Physics +1601.06956 Mesoscale and Nanoscale Physics +1601.07178 Astrophysics of Galaxies +1602.01002 Optics +1602.01632 Materials Science +1602.04329 Systems and Control +1602.04359 Combinatorics +1602.05282 Algebraic Geometry +1602.05575 +1602.06163 Pattern Formation and Solitons +1602.06465 Optics +1602.06997 Cryptography and Security +1602.07313 Classical Analysis and ODEs +1603.00805 Soft Condensed Matter +1603.01084 Statistical Mechanics +1603.01700 Machine Learning +1603.01751 Optimization and Control +1603.02311 Mesoscale and Nanoscale Physics +1603.02640 Cryptography and Security +1603.02844 Computer Vision and Pattern Recognition +1603.02998 +1603.03075 +1603.03665 Mesoscale and Nanoscale Physics +1603.04061 Theory +1603.04716 +1603.04771 Computer Vision and Pattern Recognition +1603.04862 Astrophysics of Galaxies +1603.05280 Numerical Analysis +1603.05656 Strongly Correlated Electrons +1603.06325 Strongly Correlated Electrons +1603.06924 Materials Science +1603.07462 Human-Computer Interaction +1603.07605 +1603.07748 +1603.07785 Phenomenology +1603.07851 +1603.08004 Theory +1603.08161 Computer Vision and Pattern Recognition +1603.08526 Quantum Gases +1603.08785 Artificial Intelligence +1603.08993 Experiment +1603.09197 +1604.00214 Plasma Physics +1604.01514 Number Theory +1604.01520 Mesoscale and Nanoscale Physics +1604.02216 Optimization and Control +1604.02423 Mesoscale and Nanoscale Physics +1604.02461 +1604.02757 Logic +1604.02916 Strongly Correlated Electrons +1604.03071 Genomics +1604.03078 Logic +1604.03117 Theory +1604.03795 Geometric Topology +1604.03815 +1604.05317 Astrophysics of Galaxies +1604.05726 Phenomenology +1604.06447 Phenomenology +1604.06480 Computer Vision and Pattern Recognition +1604.07443 Superconductivity +1604.07515 Distributed, Parallel, and Cluster Computing +1604.07883 Quantum Gases +1604.08067 +1604.08287 Probability +1605.01384 Numerical Analysis +1605.02147 Information Theory +1605.02264 Computer Vision and Pattern Recognition +1605.02305 Computer Vision and Pattern Recognition +1605.02356 Algebraic Geometry +1605.02987 General Topology +1605.03209 Computation and Language +1605.03212 +1605.03633 +1605.03859 Statistical Mechanics +1605.03981 Logic +1605.04194 +1605.04250 Computer Vision and Pattern Recognition +1605.04274 High Energy Astrophysical Phenomena +1605.04894 Optics +1605.06822 Mesoscale and Nanoscale Physics +1605.06867 Theory +1605.07670 Classical Analysis and ODEs +1605.07946 Multimedia +1605.08276 Solar and Stellar Astrophysics +1605.08483 High Energy Astrophysical Phenomena +1605.08976 +1605.09718 Soft Condensed Matter +1606.00500 Superconductivity +1606.00516 Chemical Physics +1606.00922 Statistics Theory +1606.01399 Astrophysics of Galaxies +1606.01625 Differential Geometry +1606.03225 Materials Science +1606.04204 +1606.05129 Experiment +1606.05880 Number Theory +1606.06099 Information Theory +1606.06359 Mesoscale and Nanoscale Physics +1606.06766 +1606.07390 +1606.07747 Disordered Systems and Neural Networks +1606.08079 Physics and Society +1606.09332 Pattern Formation and Solitons +1607.00145 Mathematical Software +1607.00597 Information Theory +1607.00911 Optics +1607.01207 Mathematical Finance +1607.01418 +1607.01477 Mathematical Software +1607.01525 Analysis of PDEs +1607.01619 Pricing of Securities +1607.01816 Instrumentation and Detectors +1607.01837 Cosmology and Nongalactic Astrophysics +1607.02372 Statistical Mechanics +1607.02435 Statistics Theory +1607.02688 Optimization and Control +1607.02860 Instrumentation and Detectors +1607.03596 Probability +1607.03697 Algebraic Geometry +1607.03829 Phenomenology +1607.04564 Computer Vision and Pattern Recognition +1607.04672 Mesoscale and Nanoscale Physics +1607.04720 Other Condensed Matter +1607.04801 Functional Analysis +1607.04829 Data Structures and Algorithms +1607.04874 +1607.05486 Materials Science +1607.05947 Computer Vision and Pattern Recognition +1607.06622 Networking and Internet Architecture +1607.06875 Artificial Intelligence +1607.07183 Networking and Internet Architecture +1607.07309 Phenomenology +1607.07879 Solar and Stellar Astrophysics +1607.08078 Computational Complexity +1607.08264 +1607.08306 Differential Geometry +1607.08362 Computer Vision and Pattern Recognition +1607.08455 Information Theory +1607.08484 Logic in Computer Science +1607.08583 Cryptography and Security +1607.08610 +1607.08670 Theory +1607.08702 Differential Geometry +1607.08779 Systems and Control +1607.08821 Social and Information Networks +1608.00003 High Energy Astrophysical Phenomena +1608.00005 Astrophysics of Galaxies +1608.00007 Astrophysics of Galaxies +1608.00018 Differential Geometry +1608.00019 Geometric Topology +1608.00020 Optimization and Control +1608.00022 Mesoscale and Nanoscale Physics +1608.00023 Mesoscale and Nanoscale Physics +1608.00024 Number Theory +1608.00027 Machine Learning +1608.00032 Statistics Theory +1608.00033 Statistics Theory +1608.00034 Numerical Analysis +1608.00036 Instrumentation and Detectors +1608.00037 Instrumentation and Methods for Astrophysics +1608.00041 Theory +1608.00042 Optimization and Control +1608.00043 Earth and Planetary Astrophysics +1608.00052 Combinatorics +1608.00053 Computation +1608.00054 Chemical Physics +1608.00055 Number Theory +1608.00057 Experiment +1608.00058 Combinatorics +1608.00059 Computer Vision and Pattern Recognition +1608.00061 Analysis of PDEs +1608.00064 Neurons and Cognition +1608.00066 Distributed, Parallel, and Cluster Computing +1608.00069 +1608.00072 Superconductivity +1608.00074 Quantum Gases +1608.00076 +1608.00079 Combinatorics +1608.00080 Optics +1608.00081 Materials Science +1608.00082 Metric Geometry +1608.00085 Probability +1608.00086 Applications +1608.00088 Statistics Theory +1608.00089 Programming Languages +1608.00090 Soft Condensed Matter +1608.00091 Combinatorics +1608.00092 Software Engineering +1608.00095 Networking and Internet Architecture +1608.00096 Combinatorics +1608.00100 Learning +1608.00101 +1608.00102 +1608.00104 Learning +1608.00107 Methodology +1608.00108 Quantitative Methods +1608.00109 Combinatorics +1608.00111 Mesoscale and Nanoscale Physics +1608.00112 Computation and Language +1608.00116 Computer Vision and Pattern Recognition +1608.00117 Numerical Analysis +1608.00122 Materials Science +1608.00124 +1608.00127 Computational Complexity +1608.00128 Numerical Analysis +1608.00129 Solar and Stellar Astrophysics +1608.00132 Strongly Correlated Electrons +1608.00135 Computational Complexity +1608.00137 +1608.00138 Neural and Evolutionary Computing +1608.00141 Algebraic Topology +1608.00142 Social and Information Networks +1608.00143 Computers and Society +1608.00145 Theory +1608.00146 Combinatorics +1608.00147 Information Retrieval +1608.00148 Computer Vision and Pattern Recognition +1608.00149 Classical Analysis and ODEs +1608.00150 Combinatorics +1608.00152 History and Overview +1608.00154 Analysis of PDEs +1608.00155 Probability +1608.00160 Analysis of PDEs +1608.00166 Number Theory +1608.00168 Computer Vision and Pattern Recognition +1608.00171 Commutative Algebra +1608.00172 Rings and Algebras +1608.00173 +1608.00174 Popular Physics +1608.00176 +1608.00180 Data Structures and Algorithms +1608.00181 Algebraic Geometry +1608.00182 Computer Vision and Pattern Recognition +1608.00185 Analysis of PDEs +1608.00187 Computer Vision and Pattern Recognition +1608.00188 Operator Algebras +1608.00190 Operator Algebras +1608.00191 Information Theory +1608.00192 Optimization and Control +1608.00194 Materials Science +1608.00196 Data Structures and Algorithms +1608.00199 Computer Vision and Pattern Recognition +1608.00201 Optics +1608.00202 Optics +1608.00203 Computer Vision and Pattern Recognition +1608.00205 +1608.00206 Computational Geometry +1608.00207 Computer Vision and Pattern Recognition +1608.00208 Functional Analysis +1608.00209 Information Theory +1608.00212 Data Structures and Algorithms +1608.00216 Dynamical Systems +1608.00217 Analysis of PDEs +1608.00218 Learning +1608.00220 Learning +1608.00221 Algebraic Geometry +1608.00222 History and Overview +1608.00223 +1608.00224 Spectral Theory +1608.00229 Computer Vision and Pattern Recognition +1608.00230 Pricing of Securities +1608.00232 Solar and Stellar Astrophysics +1608.00234 Algebraic Geometry +1608.00235 Optics +1608.00237 Superconductivity +1608.00239 Networking and Internet Architecture +1608.00241 Phenomenology +1608.00243 Combinatorics +1608.00247 Computer Vision and Pattern Recognition +1608.00249 Distributed, Parallel, and Cluster Computing +1608.00250 Learning +1608.00251 Atomic Physics +1608.00252 Mesoscale and Nanoscale Physics +1608.00259 Combinatorics +1608.00264 Methodology +1608.00266 Optics +1608.00271 Data Structures and Algorithms +1608.00278 +1608.00280 Pricing of Securities +1608.00281 +1608.00286 Optics +1608.00288 High Energy Astrophysical Phenomena +1608.00289 High Energy Astrophysical Phenomena +1608.00293 Computation and Language +1608.00295 Functional Analysis +1608.00300 Algebraic Geometry +1608.00301 Social and Information Networks +1608.00306 Experiment +1608.00307 Distributed, Parallel, and Cluster Computing +1608.00310 Computer Vision and Pattern Recognition +1608.00311 Mesoscale and Nanoscale Physics +1608.00312 Solar and Stellar Astrophysics +1608.00313 Physics Education +1608.00315 Number Theory +1608.00316 Computational Physics +1608.00319 General Topology +1608.00321 Representation Theory +1608.00323 Mesoscale and Nanoscale Physics +1608.00324 Differential Geometry +1608.00325 Differential Geometry +1608.00326 Strongly Correlated Electrons +1608.00332 Fluid Dynamics +1608.00333 Functional Analysis +1608.00334 Robotics +1608.00335 Combinatorics +1608.00337 Systems and Control +1608.00339 Computation and Language +1608.00344 +1608.00346 Combinatorics +1608.00347 Combinatorics +1608.00348 Mesoscale and Nanoscale Physics +1608.00350 Information Theory +1608.00351 Numerical Analysis +1608.00352 Information Theory +1608.00354 Methodology +1608.00355 Optics +1608.00356 Logic +1608.00357 Dynamical Systems +1608.00358 Optics +1608.00359 Robotics +1608.00363 Biological Physics +1608.00365 Algebraic Topology +1608.00367 Computer Vision and Pattern Recognition +1608.00370 Astrophysics of Galaxies +1608.00373 Combinatorics +1608.00374 +1608.00375 Social and Information Networks +1608.00383 +1608.00385 Atomic Physics +1608.00387 Phenomenology +1608.00388 Functional Analysis +1608.00392 Number Theory +1608.00394 Probability +1608.00397 Geometric Topology +1608.00401 Differential Geometry +1608.00409 Superconductivity +1608.00410 Numerical Analysis +1608.00413 Optimization and Control +1608.00417 Computational Complexity +1608.00419 Numerical Analysis +1608.00422 Analysis of PDEs +1608.00423 Algebraic Geometry +1608.00425 +1608.00426 Systems and Control +1608.00428 Adaptation and Self-Organizing Systems +1608.00431 Neurons and Cognition +1608.00432 Spectral Theory +1608.00433 Other Computer Science +1608.00434 +1608.00439 Dynamical Systems +1608.00440 Spectral Theory +1608.00441 Machine Learning +1608.00442 Complex Variables +1608.00443 Metric Geometry +1608.00447 Human-Computer Interaction +1608.00449 Analysis of PDEs +1608.00450 Plasma Physics +1608.00451 Computation +1608.00455 Phenomenology +1608.00457 Quantum Gases +1608.00460 Differential Geometry +1608.00462 Computers and Society +1608.00473 Optics +1608.00477 Computational Geometry +1608.00481 Computation +1608.00483 Algebraic Topology +1608.00485 Statistics Theory +1608.00488 Optimization and Control +1608.00493 +1608.00497 Computational Complexity +1608.00498 +1608.00499 Group Theory +1608.00501 Computer Vision and Pattern Recognition +1608.00507 Computer Vision and Pattern Recognition +1608.00508 Computation and Language +1608.00509 Cryptography and Security +1608.00510 Representation Theory +1608.00511 Numerical Analysis +1608.00512 Numerical Analysis +1608.00515 Materials Science +1608.00518 Logic +1608.00519 Theory +1608.00520 +1608.00521 Geometric Topology +1608.00525 Computer Vision and Pattern Recognition +1608.00529 Combinatorics +1608.00531 Combinatorics +1608.00532 Plasma Physics +1608.00533 Logic in Computer Science +1608.00534 Cosmology and Nongalactic Astrophysics +1608.00536 Physics Education +1608.00537 Physics Education +1608.00538 Applications +1608.00543 Geometric Topology +1608.00544 Chemical Physics +1608.00546 Systems and Control +1608.00548 +1608.00549 Earth and Planetary Astrophysics +1608.00550 Methodology +1608.00555 Number Theory +math/0610459 Probability +0802.1945 Number Theory +1211.0534 Materials Science +1212.6705 +1302.2634 Strongly Correlated Electrons +1305.5573 Analysis of PDEs +1306.0736 Number Theory +1309.1877 Group Theory +1309.2480 Analysis of PDEs +1309.2638 Mesoscale and Nanoscale Physics +1309.6362 Computational Physics +1311.2439 Metric Geometry +1312.1614 Statistical Mechanics +1312.4681 Quantum Algebra +1401.8266 Number Theory +1402.0640 Genomics +1402.3784 Analysis of PDEs +1403.4013 Representation Theory +1404.4186 +1406.0770 Number Theory +1407.0373 Representation Theory +1407.0539 Differential Geometry +1407.6928 +1408.0589 Representation Theory +1409.7932 Functional Analysis +1410.6032 +1410.8550 Algebraic Geometry +1411.5572 Differential Geometry +1411.7316 Quantum Gases +1412.2882 Analysis of PDEs +1412.5252 Differential Geometry +1501.02180 Numerical Analysis +1501.03363 Probability +1501.03659 Statistics Theory +1501.07364 Analysis of PDEs +1502.02406 Applications +1502.06205 Complex Variables +1502.06989 Representation Theory +1503.00858 Solar and Stellar Astrophysics +1503.01380 Digital Libraries +1503.03442 Geophysics +1503.04692 Atmospheric and Oceanic Physics +1503.05166 Numerical Analysis +1504.02422 Phenomenology +1504.03921 Differential Geometry +1504.05918 Physics Education +1504.06301 Functional Analysis +1504.07622 +1505.03669 Logic +1505.04064 Materials Science +1505.04207 Cryptography and Security +1505.05093 Computation +1505.06495 Strongly Correlated Electrons +1506.00027 Theory +1506.01026 Cosmology and Nongalactic Astrophysics +1506.07741 Combinatorics +1506.08685 Differential Geometry +1506.08726 Logic in Computer Science +1506.09193 Chemical Physics +1507.02733 Representation Theory +1507.07230 Materials Science +1507.07991 Mesoscale and Nanoscale Physics +1508.00188 Social and Information Networks +1508.00387 +1508.00756 Metric Geometry +1508.04140 Strongly Correlated Electrons +1508.04411 Atomic Physics +1508.05362 Mesoscale and Nanoscale Physics +1508.05573 Combinatorics +1508.05627 Strongly Correlated Electrons +1508.07461 Materials Science +1508.07689 Superconductivity +1509.03461 Cosmology and Nongalactic Astrophysics +1509.04758 Superconductivity +1509.05757 Populations and Evolution +1509.06452 Phenomenology +1509.07451 Superconductivity +1509.07673 Analysis of PDEs +1509.08063 Probability +1510.00850 Machine Learning +1510.01063 Phenomenology +1510.01257 Computer Vision and Pattern Recognition +1510.01450 Statistical Mechanics +1510.01472 +1510.03700 +1510.03929 Programming Languages +1510.05492 Machine Learning +1510.07426 Statistical Mechanics +1510.09187 Combinatorics +1511.01966 Computer Vision and Pattern Recognition +1511.02007 Superconductivity +1511.03119 Superconductivity +1511.03250 +1511.03776 Computer Vision and Pattern Recognition +1511.03926 Soft Condensed Matter +1511.03951 Experiment +1511.07164 +1511.08158 Artificial Intelligence +1511.08585 Systems and Control +1511.08852 Operator Algebras +1511.09373 +1511.09375 Experiment +1512.00428 Other Computer Science +1512.00486 Machine Learning +1512.01355 Computer Vision and Pattern Recognition +1512.01521 Cosmology and Nongalactic Astrophysics +1512.02247 +1512.04012 Soft Condensed Matter +1512.05383 Cosmology and Nongalactic Astrophysics +1512.06133 Mesoscale and Nanoscale Physics +1512.06554 Mesoscale and Nanoscale Physics +1512.07375 Strongly Correlated Electrons +1512.08137 Chemical Physics +1512.08194 Distributed, Parallel, and Cluster Computing +1512.08377 Experiment +1512.08596 High Energy Astrophysical Phenomena +1601.00653 Phenomenology +1601.01080 Numerical Analysis +1601.03391 Astrophysics of Galaxies +1601.04981 Optics +1601.05625 Theory +1601.05643 Disordered Systems and Neural Networks +1601.06280 Information Theory +1601.06938 Instrumentation and Detectors +1601.07594 Fluid Dynamics +1602.00226 Phenomenology +1602.01430 +1602.02213 Cosmology and Nongalactic Astrophysics +1602.05319 Superconductivity +1602.05725 +1602.05842 Symplectic Geometry +1602.06805 High Energy Astrophysical Phenomena +1602.07381 High Energy Astrophysical Phenomena +1602.07513 Mesoscale and Nanoscale Physics +1603.00201 Neurons and Cognition +1603.01877 Differential Geometry +1603.01908 Analysis of PDEs +1603.02322 Cosmology and Nongalactic Astrophysics +1603.03498 Spectral Theory +1603.05619 Quantum Gases +1603.06363 +1603.07830 +1603.07890 Functional Analysis +1603.09648 Optics +1604.00737 Computers and Society +1604.00999 Computer Vision and Pattern Recognition +1604.01151 Information Theory +1604.01727 Dynamical Systems +1604.01867 Algebraic Geometry +1604.01918 Phenomenology +1604.02097 Performance +1604.02428 Materials Science +1604.02483 Graphics +1604.02881 General Topology +1604.02893 +1604.03113 Astrophysics of Galaxies +1604.03236 Cosmology and Nongalactic Astrophysics +1604.03267 Systems and Control +1604.03295 Information Theory +1604.03299 Information Theory +1604.03330 Networking and Internet Architecture +1604.03349 High Energy Astrophysical Phenomena +1604.03376 Astrophysics of Galaxies +1604.03517 Computer Vision and Pattern Recognition +1604.03547 Functional Analysis +1604.03558 Applications +1604.03563 Computers and Society +1604.03566 Superconductivity +1604.03568 Logic +1604.03570 Mathematical Software +1604.03573 Optimization and Control +1604.03580 Theory +1604.03581 Logic +1604.03587 Data Structures and Algorithms +1604.03590 Optimization and Control +1604.03591 Molecular Networks +1604.03592 Optimization and Control +1604.03594 Commutative Algebra +1604.03600 Superconductivity +1604.03601 Social and Information Networks +1604.03602 Materials Science +1604.03603 Computational Geometry +1604.03605 Computer Vision and Pattern Recognition +1604.03607 Databases +1604.03608 Networking and Internet Architecture +1604.03609 Computer Science and Game Theory +1604.03610 Optimization and Control +1604.03612 Information Theory +1604.03615 Methodology +1604.03617 Information Theory +1604.03626 Social and Information Networks +1604.03627 Computers and Society +1604.03632 Computer Science and Game Theory +1604.03633 Networking and Internet Architecture +1604.03636 Probability +1604.03637 Instrumentation and Methods for Astrophysics +1604.03639 Robotics +1604.03640 Learning +1604.03641 Programming Languages +1604.03642 Representation Theory +1604.03647 Applications +1604.03648 Methodology +1604.03650 Computer Vision and Pattern Recognition +1604.03651 Astrophysics of Galaxies +1604.03654 Computational Geometry +1604.03656 Atmospheric and Oceanic Physics +1604.03657 Optics +1604.03658 Mesoscale and Nanoscale Physics +1604.03659 Mesoscale and Nanoscale Physics +1604.03664 Earth and Planetary Astrophysics +1604.03666 Probability +1604.03671 Rings and Algebras +1604.03672 Optimization and Control +1604.03675 Optics +1604.03677 Probability +1604.03681 Quantum Algebra +1604.03683 High Energy Astrophysical Phenomena +1604.03684 Commutative Algebra +1604.03686 Soft Condensed Matter +1604.03690 Plasma Physics +1604.03694 Atmospheric and Oceanic Physics +1604.03698 Information Theory +1604.03702 Probability +1604.03709 Atmospheric and Oceanic Physics +1604.03710 Theory +1604.03711 Classical Analysis and ODEs +1604.03713 Experiment +1604.03715 +1604.03716 Combinatorics +1604.03717 Disordered Systems and Neural Networks +1604.03720 Other Condensed Matter +1604.03721 Optics +1604.03727 Fluid Dynamics +1604.03728 Exactly Solvable and Integrable Systems +1604.03729 Combinatorics +1604.03732 Mesoscale and Nanoscale Physics +1604.03734 Computer Vision and Pattern Recognition +1604.03735 Biological Physics +1604.03736 Learning +1604.03739 Theory +1604.03741 Analysis of PDEs +1604.03745 Differential Geometry +1604.03746 Materials Science +1604.03747 Multiagent Systems +1604.03751 Instrumentation and Methods for Astrophysics +1604.03763 Learning +1604.03766 Optics +1604.03767 Materials Science +1604.03768 Mesoscale and Nanoscale Physics +1604.03774 Information Theory +1604.03775 Solar and Stellar Astrophysics +1604.03778 Geometric Topology +1604.03781 Numerical Analysis +1604.03787 Number Theory +1604.03790 Earth and Planetary Astrophysics +1604.03794 History and Overview +1604.03796 +1604.03802 Computation +1604.03804 General Physics +1604.03808 History and Overview +1604.03810 Instrumentation and Methods for Astrophysics +1604.03811 Materials Science +1604.03813 Differential Geometry +1604.03814 Materials Science +1604.03817 Materials Science +1604.03821 Distributed, Parallel, and Cluster Computing +1604.03823 Networking and Internet Architecture +1604.03824 Cryptography and Security +1604.03829 Learning +1604.03833 Geophysics +1604.03834 Quantitative Methods +1604.03837 Number Theory +1604.03839 Combinatorics +1604.03840 Group Theory +1604.03844 Cryptography and Security +1604.03848 Cryptography and Security +1604.03849 Differential Geometry +1604.03850 Cryptography and Security +1604.03851 Logic +1604.03857 Group Theory +1604.03861 Combinatorics +1604.03862 Superconductivity +1604.03863 History and Philosophy of Physics +1604.03865 Soft Condensed Matter +1604.03866 +1604.03867 +1604.03868 Chaotic Dynamics +1604.03869 Optics +1604.03871 Distributed, Parallel, and Cluster Computing +1604.03872 +1604.03873 +1604.03880 Computer Vision and Pattern Recognition +1604.03881 Solar and Stellar Astrophysics +1604.03882 Computer Vision and Pattern Recognition +1604.03883 Complex Variables +1604.03889 Cryptography and Security +1604.03890 Solar and Stellar Astrophysics +1604.03892 Solar and Stellar Astrophysics +1604.03897 Number Theory +1604.03902 Accelerator Physics +1604.03907 Materials Science +1604.03912 Artificial Intelligence +1604.03913 Optimization and Control +1604.03915 Computer Vision and Pattern Recognition +1604.03919 Chemical Physics +1604.03921 Data Structures and Algorithms +1604.03926 Chaotic Dynamics +1604.03927 Algebraic Geometry +1604.03931 Mesoscale and Nanoscale Physics +0805.4712 Soft Condensed Matter +1205.6117 Theory +1206.6794 Chaotic Dynamics +1208.4042 Physics and Society +1210.1442 Functional Analysis +1210.4150 Probability +1211.5859 Symplectic Geometry +1301.4417 Physics and Society +1304.3760 Methodology +1309.1114 Instrumentation and Methods for Astrophysics +1309.5987 Number Theory +1310.2093 Number Theory +1310.6873 General Finance +1312.0062 +1312.1063 Solar and Stellar Astrophysics +1312.2607 Numerical Analysis +1401.1338 +1401.3733 Distributed, Parallel, and Cluster Computing +1401.4389 Rings and Algebras +1401.5329 Quantum Algebra +1403.2236 Number Theory +1403.3043 Physics and Society +1404.0909 Algebraic Geometry +1404.7007 Dynamical Systems +1404.7056 Functional Analysis +1406.7105 Differential Geometry +1407.7914 Geometric Topology +1408.0526 +1408.4131 High Energy Astrophysical Phenomena +1409.1130 Methodology +1409.5199 Probability +1409.5782 Metric Geometry +1410.4248 +1411.0968 Distributed, Parallel, and Cluster Computing +1411.6145 Probability +1412.4330 Differential Geometry +1412.4396 Algebraic Topology +1502.00952 Probability +1502.01591 Cosmology and Nongalactic Astrophysics +1502.03295 Analysis of PDEs +1503.00712 Theory +1503.02244 Optimization and Control +1506.07879 Mesoscale and Nanoscale Physics +1507.06070 Combinatorics +1507.07126 Systems and Control +1507.07469 Analysis of PDEs +1507.07513 Number Theory +1507.08072 Physics and Society +1507.08883 Analysis of PDEs +1508.00594 +1508.06367 Operating Systems +1509.00354 Probability +1509.01634 Quantum Algebra +1509.05988 Cryptography and Security +1509.06210 Mathematical Finance +1509.07028 Quantitative Methods +1510.00164 Strongly Correlated Electrons +1510.00262 +1510.05727 Computers and Society +1510.06964 Discrete Mathematics +1511.00594 +1511.04267 Superconductivity +1511.06081 Number Theory +1511.06367 Mesoscale and Nanoscale Physics +1512.00516 Phenomenology +1512.04106 Emerging Technologies +1512.04503 High Energy Astrophysical Phenomena +1512.09036 Algebraic Geometry +1601.01284 +1601.01507 Machine Learning +1601.02349 +1601.03826 Functional Analysis +1601.04427 Materials Science +1601.07118 Theory +1601.07278 Fluid Dynamics +1601.07304 Logic +1601.07979 Rings and Algebras +1602.01475 Theory +1602.03538 Quantum Gases +1602.03710 Populations and Evolution +1602.04267 Astrophysics of Galaxies +1602.05078 Analysis of PDEs +1602.05186 Materials Science +1602.05999 Materials Science +1602.07113 Computational Complexity +1602.08283 Cosmology and Nongalactic Astrophysics +1602.08779 +1603.02375 +1603.02555 Experiment +1603.04784 Instrumentation and Methods for Astrophysics +1603.05554 Analysis of PDEs +1603.05726 +1603.05789 Logic in Computer Science +1603.05831 Fluid Dynamics +1603.06231 Theory +1603.07715 Mesoscale and Nanoscale Physics +1603.08675 +1603.08909 Strongly Correlated Electrons +1603.09575 Theory +1604.00038 Mesoscale and Nanoscale Physics +1604.00284 Number Theory +1604.00424 Information Theory +1604.01688 Mesoscale and Nanoscale Physics +1604.05089 Mesoscale and Nanoscale Physics +1604.06011 Algebraic Geometry +1604.06245 Programming Languages +1604.06318 Computer Vision and Pattern Recognition +1604.06629 Risk Management +1604.07141 +1604.08946 Cosmology and Nongalactic Astrophysics +1605.00090 Computation and Language +1605.01604 High Energy Astrophysical Phenomena +1605.01699 Biological Physics +1605.01892 Earth and Planetary Astrophysics +1605.02154 Instrumentation and Detectors +1605.04141 Materials Science +1605.04242 Instrumentation and Methods for Astrophysics +1605.04481 Computation and Language +1605.06553 Materials Science +1605.06732 Analysis of PDEs +1605.06951 +1605.07178 Cosmology and Nongalactic Astrophysics +1605.07709 Probability +1605.07904 Geometric Topology +1605.09057 Rings and Algebras +1605.09320 Astrophysics of Galaxies +1605.09528 Optics +1605.09696 Computer Vision and Pattern Recognition +1606.00331 Biological Physics +1606.03286 +1606.03815 Computational Physics +1606.04100 Phenomenology +1606.04764 Atomic and Molecular Clusters +1606.06383 +1606.06394 Materials Science +1606.06639 Strongly Correlated Electrons +1606.07947 Computation and Language +1606.08446 Mesoscale and Nanoscale Physics +1606.09294 Complex Variables +1607.01937 Classical Analysis and ODEs +1607.02015 Plasma Physics +1607.02149 +1607.02748 Computer Vision and Pattern Recognition +1607.02985 Optics +1607.04774 Optics +1607.04833 +1607.06002 History and Overview +1607.06055 Biological Physics +1607.08524 +1608.00686 Machine Learning +1608.01277 Materials Science +1608.02076 Computation and Language +1608.02845 High Energy Astrophysical Phenomena +1608.03006 Superconductivity +1608.03535 Programming Languages +1608.04039 Methodology +1608.05950 Instrumentation and Detectors +1608.06244 Information Theory +1608.08179 Numerical Analysis +1608.08517 Social and Information Networks +1608.08613 Representation Theory +1609.00005 +1609.00310 Theory +1609.00460 Mesoscale and Nanoscale Physics +1609.00702 Mathematical Finance +1609.01469 Other Condensed Matter +1609.02327 High Energy Astrophysical Phenomena +1609.02748 Computation and Language +1609.03039 Space Physics +1609.03160 Information Theory +1609.03299 +1609.03568 Cosmology and Nongalactic Astrophysics +1609.04644 General Mathematics +1609.04767 Computer Vision and Pattern Recognition +1609.04973 Tissues and Organs +1609.05856 Cosmology and Nongalactic Astrophysics +1609.05999 Spectral Theory +1609.06054 Astrophysics of Galaxies +1609.06061 Chemical Physics +1609.06426 Computer Vision and Pattern Recognition +1609.06428 +1609.06429 +1609.06499 Digital Libraries +1609.06516 Information Theory +1609.06591 Computer Vision and Pattern Recognition +1609.06609 Theory +1609.06617 Statistics Theory +1609.06661 +1609.06671 Analysis of PDEs +1609.06710 History and Philosophy of Physics +1609.06711 +1609.06712 Medical Physics +1609.06713 Statistics Theory +1609.06716 High Energy Astrophysical Phenomena +1609.06724 Theory +1609.06725 Strongly Correlated Electrons +1609.06730 Strongly Correlated Electrons +1609.06731 General Physics +1609.06734 Cosmology and Nongalactic Astrophysics +1609.06736 Computational Complexity +1609.06737 Soft Condensed Matter +1609.06738 Mesoscale and Nanoscale Physics +1609.06739 Phenomenology +1609.06743 Biomolecules +1609.06745 High Energy Astrophysical Phenomena +1609.06747 High Energy Astrophysical Phenomena +1609.06749 Combinatorics +1609.06751 Atomic Physics +1609.06754 Operator Algebras +1609.06756 Computers and Society +1609.06759 Optics +1609.06762 Numerical Analysis +1609.06763 Populations and Evolution +1609.06767 Robotics +1609.06768 Symplectic Geometry +1609.06770 Rings and Algebras +1609.06771 Networking and Internet Architecture +1609.06772 Computer Vision and Pattern Recognition +1609.06774 Materials Science +1609.06775 Chaotic Dynamics +1609.06776 Statistical Mechanics +1609.06777 Combinatorics +1609.06778 Combinatorics +1609.06779 Robotics +1609.06782 Computer Vision and Pattern Recognition +1609.06783 Machine Learning +1609.06784 Phenomenology +1609.06786 Phenomenology +1609.06789 Methodology +1609.06790 Materials Science +1609.06791 Computation and Language +1609.06792 Numerical Analysis +1609.06796 +1609.06807 Optimization and Control +1609.06808 Metric Geometry +1609.06809 Combinatorics +1609.06813 Geometric Topology +1609.06814 Probability +1609.06815 Superconductivity +1609.06817 +1609.06819 Statistics Theory +1609.06823 Computer Science and Game Theory +1609.06824 Quantum Algebra +1609.06825 Computer Science and Game Theory +1609.06826 Digital Libraries +1609.06828 Optics +1609.06829 Number Theory +1609.06831 Learning +1609.06837 Strongly Correlated Electrons +1609.06838 Artificial Intelligence +1609.06839 Numerical Analysis +1609.06840 Learning +1609.06841 Data Structures and Algorithms +1609.06842 Data Analysis, Statistics and Probability +1609.06843 Quantitative Methods +1609.06844 Computer Science and Game Theory +1609.06845 Neural and Evolutionary Computing +1609.06846 Computer Vision and Pattern Recognition +1609.06847 Biological Physics +1609.06848 Software Engineering +1609.06849 Analysis of PDEs +1609.06850 Disordered Systems and Neural Networks +1609.06851 Combinatorics +1609.06852 Strongly Correlated Electrons +1609.06856 Probability +1609.06860 Optimization and Control +1609.06861 Computer Vision and Pattern Recognition +1609.06862 Networking and Internet Architecture +1609.06864 Machine Learning +1609.06866 Numerical Analysis +1609.06868 Software Engineering +1609.06869 Functional Analysis +1609.06873 Dynamical Systems +1609.06875 Combinatorics +1609.06876 Strongly Correlated Electrons +1609.06877 Information Theory +1609.06878 Experiment +1609.06881 Differential Geometry +1609.06882 Materials Science +1609.06888 Systems and Control +1609.06890 Fluid Dynamics +1609.06891 +1609.06892 Numerical Analysis +1609.06893 Group Theory +1609.06894 Materials Science +1609.06895 Number Theory +1609.06896 Computer Vision and Pattern Recognition +1609.06897 Probability +1609.06898 Phenomenology +1609.06901 Rings and Algebras +1609.06902 Number Theory +1609.06906 Functional Analysis +1609.06908 Combinatorics +1609.06909 Earth and Planetary Astrophysics +1609.06911 Combinatorics +1609.06913 Functional Analysis +1609.06915 +1609.06918 Differential Geometry +1609.06920 Theory +1609.06921 K-Theory and Homology +1609.06923 Classical Analysis and ODEs +1609.06925 +1609.06927 Computer Vision and Pattern Recognition +1609.06929 Algebraic Geometry +1609.06932 Statistical Mechanics +1609.06933 Analysis of PDEs +1609.06935 Neural and Evolutionary Computing +1609.06937 Probability +1609.06939 Disordered Systems and Neural Networks +1609.06942 Machine Learning +1609.06944 +1609.06945 Optics +1609.06947 Number Theory +1609.06948 Systems and Control +1609.06951 Logic in Computer Science +1609.06953 Artificial Intelligence +1609.06954 Artificial Intelligence +1609.06957 Learning +1609.06959 Optimization and Control +1609.06962 Analysis of PDEs +1609.06963 Soft Condensed Matter +1609.06964 Soft Condensed Matter +1609.06968 Methodology +1609.06970 Functional Analysis +1609.06976 Combinatorics +1609.06978 Distributed, Parallel, and Cluster Computing +1609.06979 High Energy Astrophysical Phenomena +1609.06981 +1609.06983 Statistical Mechanics +1609.06984 Optimization and Control +1609.06986 Number Theory +1609.06988 Computer Vision and Pattern Recognition +1609.06989 Soft Condensed Matter +1609.06991 Representation Theory +1609.06992 +1609.06994 +1609.06995 +1609.06996 Geophysics +1609.06997 Materials Science +1609.06998 Representation Theory +1609.06999 Number Theory +1609.07000 Biomolecules +1609.07003 +1609.07005 Symplectic Geometry +1609.07006 Robotics +1609.07007 Computation +1609.07009 Computer Vision and Pattern Recognition +1609.07011 Algebraic Geometry +1609.07013 Analysis of PDEs +1609.07014 Phenomenology +1609.07017 Commutative Algebra +1609.07019 Plasma Physics +1609.07022 Fluid Dynamics +1609.07024 Phenomenology +1609.07026 Fluid Dynamics +1609.07029 Systems and Control +1609.07031 Probability +1609.07032 Information Theory +1609.07033 Computation and Language +1609.07034 Computation and Language +1609.07036 Materials Science +1609.07037 Phenomenology +1609.07038 Multiagent Systems +1609.07039 Mesoscale and Nanoscale Physics +1609.07040 Fluid Dynamics +1609.07041 Cosmology and Nongalactic Astrophysics +1609.07046 Analysis of PDEs +1609.07049 Graphics +1609.07050 Complex Variables +1609.07055 Metric Geometry +1609.07058 Group Theory +1609.07059 Computational Complexity +1609.07060 Machine Learning +1609.07061 Neural and Evolutionary Computing +1609.07064 +1609.07068 Neurons and Cognition +1609.07071 Quantum Gases +1609.07072 Chemical Physics +1609.07074 Probability +1609.07075 Computation and Language +1609.07076 Number Theory +1609.07079 +1609.07081 Phenomenology +1609.07083 +1609.07085 Analysis of PDEs +1609.07086 Numerical Analysis +1609.07087 Learning +1609.07088 Learning +1609.07089 Instrumentation and Detectors +1609.07091 Analysis of PDEs +1609.07094 Phenomenology +1609.07095 Phenomenology +1609.07100 Commutative Algebra +1609.07102 Artificial Intelligence +1609.07103 Probability +1609.07104 +1609.07108 Software Engineering +1609.07111 Other Computer Science +1609.07112 Phenomenology +1609.07113 Solar and Stellar Astrophysics +1609.07114 Computational Engineering, Finance, and Science +1609.07117 +1609.07119 Atmospheric and Oceanic Physics +1609.07121 Spectral Theory +1609.07125 +1609.07126 Analysis of PDEs +1609.07127 Social and Information Networks +1609.07132 Learning +1609.07134 Data Structures and Algorithms +1609.07135 Statistics Theory +1609.07139 Instrumentation and Methods for Astrophysics +math/0605088 K-Theory and Homology +1612.06054 Logic in Computer Science +1612.07526 Mathematical Software +1612.07578 Numerical Analysis +1612.07649 Fluid Dynamics +1612.07828 Computer Vision and Pattern Recognition +1612.08064 Cell Behavior +physics/0612137 Physics and Society +1206.2184 Accelerator Physics +1212.3133 Computational Geometry +1612.07703 Experiment +0705.1177 Symplectic Geometry +0806.0402 +0901.1002 Dynamical Systems +1111.0403 Complex Variables +1212.5965 Functional Analysis +1306.1409 Combinatorics +1306.5421 Logic +1307.4032 Algebraic Geometry +1307.4033 Algebraic Geometry +1309.4418 Symplectic Geometry +1309.7268 Probability +1310.7156 Analysis of PDEs +1311.1421 Number Theory +1312.4389 Combinatorics +1402.7343 Computational Physics +1403.1260 Cosmology and Nongalactic Astrophysics +1405.3226 Quantitative Methods +1406.0059 Logic +1407.7066 Geometric Topology +1409.0034 Networking and Internet Architecture +1409.1487 Computer Science and Game Theory +1409.6041 Computer Vision and Pattern Recognition +1410.2468 Biological Physics +1410.4113 Algebraic Geometry +1410.4618 Number Theory +1410.5658 Logic +1411.0440 Artificial Intelligence +1411.2167 Economics +1412.0485 +1412.6294 Spectral Theory +1503.07398 K-Theory and Homology +1503.08371 Combinatorics +1504.01588 Mesoscale and Nanoscale Physics +1504.03180 Classical Analysis and ODEs +1504.04042 Astrophysics of Galaxies +1504.04684 Systems and Control +1504.04900 Analysis of PDEs +1504.06061 Analysis of PDEs +1505.03597 Computer Vision and Pattern Recognition +1506.01111 Fluid Dynamics +1506.03192 Probability +1506.03481 Methodology +1506.07159 Strongly Correlated Electrons +1507.03755 Numerical Analysis +1507.04356 Cosmology and Nongalactic Astrophysics +1507.05588 Soft Condensed Matter +1507.05598 Cosmology and Nongalactic Astrophysics +1508.00818 Classical Analysis and ODEs +1508.01002 Classical Analysis and ODEs +1508.02348 Combinatorics +1508.02598 Populations and Evolution +1508.07680 Computer Vision and Pattern Recognition +1509.01007 Computation and Language +1509.01097 Number Theory +1509.07469 Information Theory +1509.09295 +1510.00679 Accelerator Physics +1510.01637 Mesoscale and Nanoscale Physics +1510.03304 Algebraic Topology +1510.04361 Numerical Analysis +1510.04373 Computer Vision and Pattern Recognition +1510.05276 Classical Analysis and ODEs +1510.06409 Cosmology and Nongalactic Astrophysics +1510.06473 +1511.01051 Mesoscale and Nanoscale Physics +1511.02739 +1511.02892 Theory +1511.03012 Computation and Language +1511.04028 Optics +1511.04946 Digital Libraries +1511.05170 Phenomenology +1511.05697 Geometric Topology +1511.07076 Neural and Evolutionary Computing +1511.08684 Geometric Topology +1511.08774 Hardware Architecture +1512.03100 +1512.04665 +1512.07190 High Energy Astrophysical Phenomena +1512.07864 Subcellular Processes +1512.07870 Optics +1512.08225 +1601.00045 +1601.02125 Theory +1601.06039 Information Theory +1601.06592 +1601.06898 Classical Analysis and ODEs +1601.07236 Classical Analysis and ODEs +1601.07697 Materials Science +1601.08152 Differential Geometry +1602.00135 Mesoscale and Nanoscale Physics +1602.01118 Statistical Mechanics +1602.01193 Analysis of PDEs +1602.01435 General Physics +1602.02434 Computer Vision and Pattern Recognition +1602.03864 Spectral Theory +1602.04711 Optics +1602.07979 General Physics +1602.08678 Applications +1603.00269 Functional Analysis +1603.00504 Statistical Mechanics +1603.01748 Algebraic Geometry +1603.02233 +1603.02240 +1603.02644 Learning +1603.03379 +1603.04866 High Energy Astrophysical Phenomena +1603.05320 Superconductivity +1603.06438 Mesoscale and Nanoscale Physics +1603.07238 Representation Theory +1603.07963 Instrumentation and Detectors +1603.08695 Computer Vision and Pattern Recognition +1603.09493 Computational Physics +1604.00265 +1604.01459 Strongly Correlated Electrons +1604.01753 Computer Vision and Pattern Recognition +1604.01804 Optics +1604.01997 Strongly Correlated Electrons +1604.02261 +1604.02556 Phenomenology +1604.02597 Dynamical Systems +1604.02638 Dynamical Systems +1604.04279 Computer Vision and Pattern Recognition +1604.05200 Optimization and Control +1604.06085 Theory +1604.06208 Optics +1604.07414 Solar and Stellar Astrophysics +1605.02831 Quantum Gases +1605.03449 Information Theory +1605.04471 Strongly Correlated Electrons +1605.04477 Programming Languages +1605.05133 Theory +1605.05658 Methodology +1605.06720 Earth and Planetary Astrophysics +1605.08745 Astrophysics of Galaxies +1605.09229 General Physics +1605.09621 Commutative Algebra +1605.09738 Solar and Stellar Astrophysics +1606.00278 Numerical Analysis +1606.01621 Computer Vision and Pattern Recognition +1606.01635 Mesoscale and Nanoscale Physics +1606.02946 Theory +1606.03098 Algebraic Geometry +1606.05164 Risk Management +1606.05334 +1606.06229 General Mathematics +1606.07735 Systems and Control +1606.08107 +1606.08711 Theory +1607.00465 +1607.01380 Plasma Physics +1607.02531 Machine Learning +1607.02940 Differential Geometry +1607.02979 Cosmology and Nongalactic Astrophysics +1607.03087 Category Theory +1607.03173 Statistics Theory +1607.03793 Combinatorics +1607.04523 Materials Science +1607.04642 Theory +1607.04820 Differential Geometry +1607.05882 Phenomenology +1607.06258 Distributed, Parallel, and Cluster Computing +1607.06280 Machine Learning +1607.07032 Computer Vision and Pattern Recognition +1607.07380 Commutative Algebra +1607.07393 Soft Condensed Matter +1607.07395 Learning +1607.07531 Solar and Stellar Astrophysics +1607.07533 +1607.07599 Group Theory +1607.07757 Probability +1607.07766 Hardware Architecture +1607.07768 Mesoscale and Nanoscale Physics +1607.07775 Differential Geometry +1607.07803 Functional Analysis +1607.07831 +1607.07843 Algebraic Geometry +1607.07862 Probability +1607.07868 Quantum Gases +1607.07871 +1607.07873 Theory +1607.07884 Disordered Systems and Neural Networks +1607.07887 +1607.07889 Classical Physics +1607.07890 Probability +1607.07891 Metric Geometry +1607.07892 Mathematical Software +1607.07894 Instrumentation and Methods for Astrophysics +1607.07895 Differential Geometry +1607.07896 Systems and Control +1607.07897 Soft Condensed Matter +1607.07901 Experiment +1607.07902 +1607.07903 Cryptography and Security +1607.07904 Information Retrieval +1607.07905 Optics +1607.07906 Data Structures and Algorithms +1607.07908 +1607.07911 Discrete Mathematics +1607.07913 Rings and Algebras +1607.07920 Information Theory +1607.07922 Earth and Planetary Astrophysics +1607.07924 Rings and Algebras +1607.07925 Methodology +1607.07926 Methodology +1607.07931 Computation and Language +1607.07932 Phenomenology +1607.07935 +1607.07936 +1607.07937 +1607.07939 Robotics +1607.07940 Fluid Dynamics +1607.07942 Artificial Intelligence +1607.07943 Mesoscale and Nanoscale Physics +1607.07947 Cryptography and Security +1607.07949 Differential Geometry +1607.07950 Computational Complexity +1607.07951 Number Theory +1607.07952 Optics +1607.07954 Optics +1607.07956 Computation and Language +1607.07958 Analysis of PDEs +1607.07966 Systems and Control +1607.07969 Instrumentation and Methods for Astrophysics +1607.07970 Populations and Evolution +1607.07972 Phenomenology +1607.07973 Biological Physics +1607.07975 Mesoscale and Nanoscale Physics +1607.07977 Exactly Solvable and Integrable Systems +1607.07979 Algebraic Geometry +1607.07980 Graphics +1607.07981 Statistics Theory +1607.07982 Exactly Solvable and Integrable Systems +1607.07983 Computer Vision and Pattern Recognition +1607.07984 Optics +1607.07986 Numerical Analysis +1607.07988 Computer Vision and Pattern Recognition +1607.07990 Materials Science +1607.07992 Materials Science +1607.07993 Materials Science +1607.07997 +1607.07998 Mesoscale and Nanoscale Physics +1607.08002 +1607.08003 Classical Analysis and ODEs +1607.08004 Experiment +1607.08009 Tissues and Organs +1607.08010 Phenomenology +1607.08012 Learning +1607.08013 Group Theory +1607.08015 Biological Physics +1607.08017 Materials Science +1607.08018 Combinatorics +1607.08019 Numerical Analysis +1607.08024 Functional Analysis +1607.08025 Information Theory +1607.08026 Networking and Internet Architecture +1607.08027 Classical Analysis and ODEs +1607.08029 Biological Physics +1607.08033 Methodology +1607.08034 +1607.08038 Artificial Intelligence +1607.08040 Computer Vision and Pattern Recognition +1607.08041 Data Structures and Algorithms +1607.08043 Phenomenology +1607.08044 Geometric Topology +1607.08046 Probability +1607.08053 Number Theory +1607.08056 Mesoscale and Nanoscale Physics +1607.08062 Biological Physics +1607.08063 Statistical Mechanics +1607.08071 Numerical Analysis +1607.08073 Artificial Intelligence +1607.08074 Artificial Intelligence +1607.08075 Artificial Intelligence +1607.08081 Algebraic Topology +1607.08083 Computational Engineering, Finance, and Science +1607.08085 Computer Vision and Pattern Recognition +1607.08087 Cryptography and Security +1607.08088 Phenomenology +1607.08090 Computers and Society +1607.08091 Computers and Society +1607.08097 Combinatorics +1607.08098 Databases +1607.08100 Artificial Intelligence +1607.08101 Networking and Internet Architecture +1607.08102 Performance +1607.08104 Complex Variables +1607.08105 Optics +1607.08106 Algebraic Geometry +1607.08108 Physics and Society +1607.08111 +1607.08112 Computer Vision and Pattern Recognition +1607.08114 +1607.08116 Optimization and Control +1607.08117 Geometric Topology +1607.08119 Robotics +1607.08123 Networking and Internet Architecture +1607.08124 Probability +1607.08127 Physics and Society +1607.08128 Computer Vision and Pattern Recognition +1607.08130 Combinatorics +1607.08131 Artificial Intelligence +1607.08132 Probability +1607.08135 Probability +1607.08136 +1607.08137 Algebraic Geometry +1607.08138 Networking and Internet Architecture +1607.08139 Systems and Control +1607.08140 +1607.08141 Applications +1607.08143 Theory +1607.08144 Algebraic Geometry +1607.08146 Strongly Correlated Electrons +1607.08148 Representation Theory +1607.08149 Cryptography and Security +1607.08151 Exactly Solvable and Integrable Systems +1607.08152 Combinatorics +1607.08153 Differential Geometry +1607.08155 +1607.08156 Statistics Theory +1607.08159 Numerical Analysis +1607.08162 Earth and Planetary Astrophysics +1607.08166 Cryptography and Security +1607.08167 Soft Condensed Matter +1607.08168 +1607.08169 Methodology +1607.08171 Theory +1607.08176 Data Structures and Algorithms +1607.08177 Strongly Correlated Electrons +1607.08179 Rings and Algebras +1607.08180 Materials Science +1607.08181 Artificial Intelligence +1607.08186 Cryptography and Security +1607.08187 +1607.08188 Computer Vision and Pattern Recognition +1607.08192 Computational Complexity +1607.08195 Combinatorics +1607.08196 Computer Vision and Pattern Recognition +1607.08198 Algebraic Geometry +1607.08202 Probability +1607.08203 Social and Information Networks +1607.08205 Applications +1607.08208 Cosmology and Nongalactic Astrophysics +1607.08209 Systems and Control +1607.08211 Methodology +1607.08212 Digital Libraries +1607.08214 General Finance +1607.08215 Optimization and Control +1607.08216 Optimization and Control +1607.08217 Optimization and Control +1607.08221 Computer Vision and Pattern Recognition +1607.08224 History and Philosophy of Physics +1607.08226 Formal Languages and Automata Theory +1607.08227 Networking and Internet Architecture +math/0505023 Geometric Topology +math/0505297 Geometric Topology +1006.5114 Statistical Mechanics +1103.0833 Algebraic Geometry +1107.4259 Algebraic Geometry +1201.5281 General Physics +1202.4047 Statistical Mechanics +1205.4282 Physics and Society +1207.2734 Information Theory +1209.5570 Statistical Mechanics +1210.2142 Combinatorics +1210.7710 +1301.7490 Mesoscale and Nanoscale Physics +1302.3685 Genomics +1302.5796 Differential Geometry +1303.0590 Mesoscale and Nanoscale Physics +1304.2832 Theory +1304.7608 Analysis of PDEs +1305.3347 Genomics +1306.0890 Differential Geometry +1306.5646 Cryptography and Security +1308.4308 Commutative Algebra +1309.0668 Fluid Dynamics +1309.3339 Methodology +1309.6664 History and Overview +1310.7903 Cryptography and Security +1312.1499 Representation Theory +1401.4156 Atomic Physics +1401.7514 Combinatorics +1402.3078 Combinatorics +1403.3369 Neural and Evolutionary Computing +1404.7487 Theory +1406.0051 Atmospheric and Oceanic Physics +1406.2686 Computational Physics +1406.3171 Probability +1407.3162 Fluid Dynamics +1407.4339 Combinatorics +1407.4729 Methodology +1407.7102 Logic +1407.7411 Materials Science +1407.7487 Fluid Dynamics +1408.0628 Probability +1408.0864 Superconductivity +1408.1382 Portfolio Management +1409.2434 Spectral Theory +1409.2808 Numerical Analysis +1409.8200 High Energy Astrophysical Phenomena +1410.2216 Algebraic Geometry +1410.4807 Mathematical Finance +1410.4894 +1410.5443 Strongly Correlated Electrons +1410.5965 Probability +1410.5966 Combinatorics +1410.7711 +1411.3675 Social and Information Networks +1411.3991 Theory +1412.0046 Mesoscale and Nanoscale Physics +1412.0064 Risk Management +1412.1183 Risk Management +1412.2348 Complex Variables +1412.4272 Theory +1412.7367 Physics and Society +1412.7564 Statistical Mechanics +1412.8231 Fluid Dynamics +1501.01388 Number Theory +1501.02041 +1501.03132 Chaotic Dynamics +1501.04612 Combinatorics +1501.04991 Experiment +1501.06640 Subcellular Processes +1502.01489 +1502.01592 Cosmology and Nongalactic Astrophysics +1502.03520 Learning +1502.05727 Group Theory +1503.03449 Information Theory +1503.05268 +1503.05769 Optimization and Control +1504.04048 Mesoscale and Nanoscale Physics +1504.04226 Superconductivity +1504.04312 Soft Condensed Matter +1504.05322 Combinatorics +1504.05400 Optimization and Control +1504.06145 Combinatorics +1504.06748 Combinatorics +1504.06805 Solar and Stellar Astrophysics +1505.00857 +1505.02259 +1505.07225 +1506.00187 Combinatorics +1506.02106 Computer Vision and Pattern Recognition +1506.04488 Computation and Language +1506.05753 Algebraic Geometry +1506.08129 Soft Condensed Matter +1506.08837 +1506.08909 Computation and Language +1506.08973 Algebraic Geometry +1507.00029 Information Theory +1507.00687 Numerical Analysis +1507.01499 Mesoscale and Nanoscale Physics +1507.01816 Applications +1507.06529 Physics and Society +1507.07119 Number Theory +1507.07873 Atmospheric and Oceanic Physics +1507.07968 Number Theory +1508.01280 Methodology +1508.01739 Functional Analysis +1508.02987 Theory +1508.04213 Lattice +1508.04386 Complex Variables +1508.04887 Computer Vision and Pattern Recognition +1508.05492 Logic +1508.05804 Artificial Intelligence +1508.07111 +1508.07191 Classical Analysis and ODEs +1509.01262 +1509.02279 Analysis of PDEs +1509.02323 Earth and Planetary Astrophysics +1509.02452 Phenomenology +1509.02776 Fluid Dynamics +1509.02777 Fluid Dynamics +1509.03945 Theory +1509.04543 Quantum Gases +1509.05061 Mesoscale and Nanoscale Physics +1509.05104 Commutative Algebra +1509.06543 +1509.06743 Astrophysics of Galaxies +1509.07444 Chemical Physics +1509.07764 Differential Geometry +1509.08526 Atmospheric and Oceanic Physics +1510.00440 Emerging Technologies +1510.00859 Probability +1510.00860 Probability +1510.01265 Soft Condensed Matter +1510.03133 Group Theory +1510.03145 Distributed, Parallel, and Cluster Computing +1510.06290 Atmospheric and Oceanic Physics +1510.06326 Physics and Society +1510.06480 Information Theory +1510.06793 Materials Science +1510.07252 Emerging Technologies +1510.07368 Phenomenology +1510.08056 Theory +1510.08158 Analysis of PDEs +1511.00230 Functional Analysis +1511.00622 Combinatorics +1511.02387 Combinatorics +1511.02677 Representation Theory +1511.03126 Analysis of PDEs +1511.03910 +1511.03927 Distributed, Parallel, and Cluster Computing +1511.06457 Computer Vision and Pattern Recognition +1511.06653 Computer Vision and Pattern Recognition +1511.06798 Computation and Language +1511.07709 +1511.08544 Phenomenology +1511.08734 Combinatorics +1511.09185 Classical Physics +1511.09405 Formal Languages and Automata Theory +1512.00025 Theory +1512.00060 Logic +1512.00465 Strongly Correlated Electrons +1512.01483 Combinatorics +1512.02610 General Topology +1512.03594 Statistical Mechanics +1512.04123 Combinatorics +1512.06070 General Topology +1512.06093 +1512.07122 Functional Analysis +1512.08290 Phenomenology +1512.08382 Number Theory +1512.09158 Group Theory +1601.00259 Phenomenology +1601.01695 Strongly Correlated Electrons +1601.02439 Instrumentation and Detectors +1601.02616 Phenomenology +1601.02797 +1601.03226 +1601.03727 Plasma Physics +1601.04536 General Physics +1601.04798 Computer Vision and Pattern Recognition +1601.06229 Information Theory +1601.07204 Superconductivity +1601.07629 Optimization and Control +1601.08170 Statistical Mechanics +1602.00500 Quantum Gases +1602.00631 Physics and Society +1602.01110 Phenomenology +1602.01491 Mesoscale and Nanoscale Physics +1602.01707 Classical Analysis and ODEs +1602.01939 Differential Geometry +1602.02342 Number Theory +1602.03223 +1602.03366 Classical Analysis and ODEs +1602.03535 Theory +1602.03812 +1602.06947 Solar and Stellar Astrophysics +1602.07260 Algebraic Topology +1602.07765 Optics +1602.07909 Phenomenology +1603.00602 Theory +1603.01305 Theory +1603.01624 +1603.02739 Chemical Physics +1603.03570 +1603.03810 Materials Science +1603.03904 Cosmology and Nongalactic Astrophysics +1603.04331 Strongly Correlated Electrons +1603.04349 Phenomenology +1603.04619 Computer Vision and Pattern Recognition +1603.04629 Complex Variables +1603.05027 Computer Vision and Pattern Recognition +1603.05471 +1603.06413 Optimization and Control +1603.06693 Superconductivity +1603.07410 Databases +1603.07679 Theory +1603.07693 Networking and Internet Architecture +1603.07721 Astrophysics of Galaxies +1603.07894 +1603.08006 High Energy Astrophysical Phenomena +1603.08693 Algebraic Geometry +1603.09156 Combinatorics +1604.00484 Representation Theory +1604.01842 Astrophysics of Galaxies +1604.02626 Mesoscale and Nanoscale Physics +1604.03487 Cosmology and Nongalactic Astrophysics +1604.03662 +1604.03920 Experiment +1604.04160 Materials Science +1604.04977 Optics +1604.05101 Information Theory +1604.06514 +1604.06556 Instrumentation and Detectors +1604.06770 Databases +1604.06942 Statistical Mechanics +1604.07565 Chemical Physics +1604.07652 +1604.08393 +1605.00259 Atomic Physics +1605.01014 Computer Vision and Pattern Recognition +1605.01223 Materials Science +1605.01225 +1605.01456 Theory +1605.02076 Astrophysics of Galaxies +1605.02629 High Energy Astrophysical Phenomena +1605.02634 Number Theory +1605.03318 Materials Science +1605.04025 Cryptography and Security +1605.05034 Computer Vision and Pattern Recognition +1605.05046 +1605.05388 Computational Physics +1605.05414 Computation and Language +1605.05453 Earth and Planetary Astrophysics +1605.05822 Physics and Society +1605.06113 High Energy Astrophysical Phenomena +1605.06131 Theory +1605.07542 Statistical Mechanics +1605.07809 Sound +1605.07938 Earth and Planetary Astrophysics +1605.08480 Mesoscale and Nanoscale Physics +1605.09013 +1605.09270 +1606.00130 Mesoscale and Nanoscale Physics +1606.00852 +1606.01332 Analysis of PDEs +1606.01673 Algebraic Topology +1606.02265 Experiment +1606.02343 Complex Variables +1606.02603 Robotics +1606.02950 Theory +1606.02952 +1606.03614 Optics +1606.03921 Classical Physics +1606.04199 Computation and Language +1606.04245 Strongly Correlated Electrons +1606.04983 Cosmology and Nongalactic Astrophysics +1606.05632 Theory +1606.05656 Computation +1606.05767 Artificial Intelligence +1606.06083 Artificial Intelligence +1606.06565 Artificial Intelligence +1606.06684 Classical Analysis and ODEs +1606.07703 Classical Analysis and ODEs +1606.08373 Computation +1606.08574 Mesoscale and Nanoscale Physics +1606.08969 Populations and Evolution +1606.09041 Differential Geometry +1606.09241 +1606.09615 Astrophysics of Galaxies +1606.09622 Optics +1607.00215 Machine Learning +1607.00642 Materials Science +1607.00720 Social and Information Networks +1607.01123 Statistical Mechanics +1607.01419 Robotics +1607.01795 Solar and Stellar Astrophysics +1607.01843 Complex Variables +1607.02607 Geophysics +1607.03070 Neural and Evolutionary Computing +1607.03135 Symplectic Geometry +1607.03348 Combinatorics +1607.03789 Mesoscale and Nanoscale Physics +1607.04115 Combinatorics +1607.04146 Materials Science +1607.04400 +1607.04404 Optics +1607.04703 Combinatorics +1607.04815 Information Theory +1607.04907 Robotics +1607.05088 Information Retrieval +1607.05185 Information Theory +1607.05371 Superconductivity +1607.05609 Programming Languages +1607.05637 +1607.05696 Fluid Dynamics +1607.05776 Combinatorics +1607.06022 Networking and Internet Architecture +1607.06023 Networking and Internet Architecture +1607.06071 Classical Analysis and ODEs +1607.06221 Computation and Language +1607.06341 Physics and Society +1607.06400 Instrumentation and Methods for Astrophysics +1607.06535 +1607.06554 Optimization and Control +1607.06557 Optimization and Control +1607.06666 +1607.06669 High Energy Astrophysical Phenomena +1607.06720 Tissues and Organs +1607.06808 Combinatorics +1607.06809 Combinatorics +1607.06813 Phenomenology +1607.06820 Astrophysics of Galaxies +1607.06822 Mesoscale and Nanoscale Physics +1607.06833 Information Theory +1607.06834 Computational Engineering, Finance, and Science +1607.06835 Other Quantitative Biology +1607.06836 Biological Physics +1607.06837 Information Theory +1607.06839 Social and Information Networks +1607.06842 Superconductivity +1607.06843 +1607.06844 Theory +1607.06846 Analysis of PDEs +1607.06847 Computer Science and Game Theory +1607.06849 Methodology +1607.06850 +1607.06852 Computation and Language +1607.06853 Phenomenology +1607.06855 Mesoscale and Nanoscale Physics +1607.06857 Software Engineering +1607.06862 Analysis of PDEs +1607.06864 Discrete Mathematics +1607.06874 Earth and Planetary Astrophysics +1607.06876 Instrumentation and Detectors +1607.06879 Information Theory +1607.06880 Other Condensed Matter +1607.06881 Analysis of PDEs +1607.06884 Information Retrieval +1607.06885 Soft Condensed Matter +1607.06887 Information Theory +1607.06889 Materials Science +1607.06890 Systems and Control +1607.06894 Statistical Mechanics +1607.06896 Human-Computer Interaction +1607.06897 Numerical Analysis +1607.06899 Numerical Analysis +1607.06901 Rings and Algebras +1607.06902 Computer Vision and Pattern Recognition +1607.06907 Algebraic Geometry +1607.06908 Materials Science +1607.06909 Cellular Automata and Lattice Gases +1607.06910 Data Analysis, Statistics and Probability +1607.06911 Discrete Mathematics +1607.06913 Classical Analysis and ODEs +1607.06914 Information Theory +1607.06915 +1607.06916 Cosmology and Nongalactic Astrophysics +1607.06917 Mesoscale and Nanoscale Physics +1607.06918 Differential Geometry +1607.06924 Analysis of PDEs +1607.06926 Quantum Algebra +1607.06927 Programming Languages +1607.06928 Atomic and Molecular Clusters +1607.06929 Statistics Theory +1607.06930 Solar and Stellar Astrophysics +1607.06931 Geometric Topology +1607.06933 +1607.06934 Phenomenology +1607.06935 Algebraic Geometry +1607.06936 Combinatorics +1607.06938 Metric Geometry +1607.06941 +1607.06942 Algebraic Topology +1607.06947 Complex Variables +1607.06950 +1607.06952 Computation and Language +1607.06953 Analysis of PDEs +1607.06959 Disordered Systems and Neural Networks +1607.06960 Classical Analysis and ODEs +1607.06962 Combinatorics +1607.06965 Systems and Control +1607.06967 +1607.06973 Computer Vision and Pattern Recognition +1607.06977 Rings and Algebras +1607.06978 Combinatorics +1607.06979 Human-Computer Interaction +1607.06980 Neurons and Cognition +1607.06981 High Energy Astrophysical Phenomena +1607.06982 Combinatorics +1607.06983 Exactly Solvable and Integrable Systems +1607.06984 Phenomenology +1607.06985 Combinatorics +1607.06988 Learning +1607.06989 Differential Geometry +1607.06992 Cryptography and Security +1607.06993 Statistics Theory +1607.06994 Classical Analysis and ODEs +1607.06999 Computer Vision and Pattern Recognition +1607.07000 Probability +1607.07001 Solar and Stellar Astrophysics +1607.07002 Methodology +1607.07003 Information Theory +1607.07005 Quantum Gases +1607.07006 Computer Vision and Pattern Recognition +1607.07010 Mesoscale and Nanoscale Physics +1607.07011 Number Theory +1607.07013 +1607.07014 Soft Condensed Matter +1607.07015 Information Theory +1607.07018 Differential Geometry +1607.07020 +1607.07021 Networking and Internet Architecture +1607.07023 Representation Theory +1607.07024 Information Theory +1607.07027 Artificial Intelligence +1607.07028 Methodology +1607.07030 Logic +1607.07031 Group Theory +1607.07033 Logic +1607.07034 Learning +1607.07035 Algebraic Geometry +1607.07036 Combinatorics +1607.07037 Earth and Planetary Astrophysics +1607.07038 Data Analysis, Statistics and Probability +1607.07042 Phenomenology +1607.07045 Quantum Gases +1607.07047 Fluid Dynamics +1607.07050 Number Theory +1607.07051 Analysis of PDEs +1607.07052 Analysis of PDEs +1607.07053 Theory +1607.07054 Algebraic Topology +1607.07055 Group Theory +1607.07056 Phenomenology +1607.07061 General Topology +1607.07062 Theory +1607.07063 Probability +1607.07069 Combinatorics +1607.07071 +1607.07073 Data Structures and Algorithms +1607.07076 Pattern Formation and Solitons +1607.07077 Theory +1607.07078 Neural and Evolutionary Computing +1607.07079 Functional Analysis +1607.07080 Optimization and Control +1607.07081 Quantum Algebra +1607.07082 Discrete Mathematics +1607.07083 Methodology +1607.07084 Combinatorics +1607.07085 Exactly Solvable and Integrable Systems +1607.07087 Information Theory +1607.07088 Classical Analysis and ODEs +1607.07091 Mesoscale and Nanoscale Physics +1607.07092 Phenomenology +1607.07096 Numerical Analysis +1607.07097 Statistical Mechanics +1607.07098 Numerical Analysis +1607.07099 Optimization and Control +1607.07101 Materials Science +1607.07102 Analysis of PDEs +1607.07104 Numerical Analysis +1607.07105 Computer Science and Game Theory +1607.07108 Pricing of Securities +1607.07109 Analysis of PDEs +1607.07110 Learning +1607.07112 Algebraic Geometry +1607.07113 +1607.07114 Algebraic Geometry +1607.07117 Rings and Algebras +1607.07119 +1607.07120 Mesoscale and Nanoscale Physics +1607.07128 Numerical Analysis +1607.07130 Computational Complexity +1607.07131 Superconductivity +1607.07132 Combinatorics +1607.07136 Analysis of PDEs +1607.07138 Theory +1607.07141 Metric Geometry +1607.07143 K-Theory and Homology +1607.07144 Geometric Topology +1607.07145 Superconductivity +1607.07153 Differential Geometry +1607.07155 Computer Vision and Pattern Recognition +1607.07156 Group Theory +1607.07157 Combinatorics +1607.07158 Information Theory +1607.07159 Analysis of PDEs +1607.07160 Computer Vision and Pattern Recognition +1607.07162 Atomic and Molecular Clusters +1607.07164 Number Theory +1607.07165 Dynamical Systems +1607.07171 Information Theory +1607.07174 Combinatorics +1607.07175 Combinatorics +1607.07178 Adaptation and Self-Organizing Systems +1607.07182 Probability +1607.07185 Geometric Topology +1607.07186 Learning +1607.07187 Information Theory +1607.07188 Logic +1607.07193 Algebraic Geometry +1607.07194 Analysis of PDEs +1607.07196 Subcellular Processes +1607.07197 Probability +1607.07199 Differential Geometry +1607.07202 Differential Geometry +1607.07203 Methodology +1607.07204 Combinatorics +1607.07207 Algebraic Geometry +1607.07208 Exactly Solvable and Integrable Systems +1607.07209 Optimization and Control +1607.07211 +1607.07212 Number Theory +1607.07213 Complex Variables +1607.07216 Computer Vision and Pattern Recognition +1607.07217 +1607.07219 Analysis of PDEs +1607.07220 Computer Vision and Pattern Recognition +1607.07221 Numerical Analysis +1607.07226 Instrumentation and Methods for Astrophysics +1607.07229 Functional Analysis +1607.07233 Optics +1607.07234 Information Theory +1607.07238 Probability +1607.07239 Materials Science +1607.07241 Commutative Algebra +1607.07243 Social and Information Networks +1607.07244 Molecular Networks +1607.07246 Earth and Planetary Astrophysics +1607.07251 Soft Condensed Matter +1607.07252 Information Theory +1607.07259 Optimization and Control +1607.07260 Statistics Theory +1607.07262 Computer Vision and Pattern Recognition +1607.07265 Number Theory +1607.07267 Optimization and Control +1607.07270 Learning +1607.07271 Phenomenology +1607.07272 General Mathematics +1607.07274 Mesoscale and Nanoscale Physics +1607.07278 Other Quantitative Biology +1607.07279 Geophysics +1607.07282 Analysis of PDEs +1607.07283 Classical Analysis and ODEs +1607.07284 Computers and Society +1607.07287 Statistical Mechanics +1607.07288 Artificial Intelligence +1607.07290 Soft Condensed Matter +1607.07292 Instrumentation and Detectors +1607.07293 Phenomenology +1607.07295 Computer Vision and Pattern Recognition +1607.07298 Systems and Control +1607.07300 Mesoscale and Nanoscale Physics +1607.07303 Optimization and Control +1607.07304 Computer Vision and Pattern Recognition +1607.07305 Classical Analysis and ODEs +1607.07306 Computer Science and Game Theory +1607.07311 Artificial Intelligence +1607.07313 Combinatorics +1607.07314 +1607.07318 Phenomenology +1607.07319 Numerical Analysis +1607.07324 Phenomenology +1607.07326 Information Retrieval +1607.07329 Optimization and Control +1607.07330 Social and Information Networks +1607.07342 Combinatorics +1607.07343 Statistics Theory +1607.07344 Functional Analysis +1607.07348 Distributed, Parallel, and Cluster Computing +1607.07350 Optimization and Control +1607.07353 +1607.07354 Classical Analysis and ODEs +1607.07356 Mesoscale and Nanoscale Physics +1607.07358 Plasma Physics +1607.07364 Computational Geometry +1607.07368 Information Theory +1607.07373 Physics and Society +1607.07374 Fluid Dynamics +1607.07375 +1607.07378 Computational Geometry +1607.07383 Dynamical Systems +1607.07384 Social and Information Networks +1607.07385 Classical Physics +1607.07386 Number Theory +1607.07387 Optimization and Control +1607.07388 History and Philosophy of Physics +1607.07389 Soft Condensed Matter +1607.07390 Phenomenology +1607.07391 Materials Science +1607.07392 Probability +1607.07396 +1607.07398 Economics +1607.07399 Instrumentation and Methods for Astrophysics +1607.07402 Systems and Control +1607.07407 Category Theory +1607.07409 Numerical Analysis +1607.07411 Combinatorics +1607.07415 Functional Analysis +1607.07416 Analysis of PDEs +1607.07417 Superconductivity +1607.07422 Theory +1607.07426 Group Theory +1607.07427 Computer Vision and Pattern Recognition +1607.07430 Computational Physics +1606.02473 Materials Science +1608.04062 Learning +1609.00506 Applications +1609.00538 Instrumentation and Methods for Astrophysics +1609.00689 Information Retrieval +1609.00927 Analysis of PDEs +1609.01500 Mesoscale and Nanoscale Physics +1609.02183 Solar and Stellar Astrophysics +1609.02690 Soft Condensed Matter +1609.03176 Information Retrieval +1609.03605 Computer Vision and Pattern Recognition +1609.04060 Computers and Society +1609.04073 Optics +1609.04477 Combinatorics +1609.05520 Optimization and Control +1609.05802 Algebraic Topology +1609.06007 Solar and Stellar Astrophysics +1609.06049 Computation and Language +1609.07387 Statistical Mechanics +1609.07584 Mesoscale and Nanoscale Physics +1609.08391 Machine Learning +1609.08948 Probability +0706.1512 Dynamical Systems +0711.1180 Dynamical Systems +1004.4941 Algebraic Topology +1103.5657 Combinatorics +1103.5849 Combinatorics +1108.1102 Combinatorics +1109.2539 Probability +1110.2362 Optics +1111.2413 Combinatorics +1112.0675 Mesoscale and Nanoscale Physics +1202.4778 Algebraic Geometry +1203.0498 Dynamical Systems +1205.6222 Differential Geometry +1206.6939 Algebraic Geometry +1208.5169 Chemical Physics +1301.1836 +1301.2002 Analysis of PDEs +1303.2480 Algebraic Geometry +1307.2192 Algebraic Geometry +1307.2645 Dynamical Systems +1308.1490 Algebraic Geometry +1309.0191 Algebraic Topology +1309.5010 K-Theory and Homology +1310.2526 Differential Geometry +1311.7001 Combinatorics +1312.0831 +1401.7009 +1402.6112 Differential Geometry +1403.4168 Functional Analysis +1403.6288 Combinatorics +1404.4442 Combinatorics +1404.6037 Logic in Computer Science +1406.2871 Information Theory +1407.5374 Discrete Mathematics +1408.2049 Learning +1408.2390 Fluid Dynamics +1409.3049 Phenomenology +1409.4360 Chaotic Dynamics +1410.7908 Differential Geometry +1412.2099 Dynamical Systems +1412.7854 Computer Vision and Pattern Recognition +1501.00049 Methodology +1501.02348 Quantum Gases +1502.04727 Information Theory +1502.06029 Information Theory +1502.07823 Computer Science and Game Theory +1503.00694 Computer Science and Game Theory +1504.02285 Cosmology and Nongalactic Astrophysics +1504.02606 Phenomenology +1504.04173 +1504.04301 Algebraic Geometry +1504.06814 Biological Physics +1505.07857 Optimization and Control +1506.01257 Adaptation and Self-Organizing Systems +1506.02291 Numerical Analysis +1506.03741 Number Theory +1506.08055 +1506.08478 Information Theory +1506.08665 Numerical Analysis +1507.00238 Metric Geometry +1507.00768 Optimization and Control +1507.06385 +1507.07265 Data Analysis, Statistics and Probability +1507.08775 +1508.00606 Spectral Theory +1508.00714 Classical Analysis and ODEs +1508.02741 Quantum Algebra +1508.05869 Numerical Analysis +1508.07028 Metric Geometry +1509.02045 Molecular Networks +1509.02195 Systems and Control +1509.03257 Algebraic Geometry +1509.05715 Optimization and Control +1509.08870 Computation +1510.01198 +1510.01466 Number Theory +1510.01528 Number Theory +1510.03312 Soft Condensed Matter +1510.03382 Rings and Algebras +1510.04728 Information Theory +1510.05261 Statistics Theory +1510.09119 Distributed, Parallel, and Cluster Computing +1510.09188 Probability +1511.00116 Probability +1511.01952 +1511.02633 Information Theory +1511.04906 Learning +1511.05120 Probability +1511.05684 Differential Geometry +1511.06684 Mesoscale and Nanoscale Physics +1511.06737 Phenomenology +1511.09264 Theory +1512.00507 Combinatorics +1512.00784 Mesoscale and Nanoscale Physics +1512.01308 Operator Algebras +1512.01710 Classical Analysis and ODEs +1512.03886 Analysis of PDEs +1512.04093 Methodology +1512.04199 Lattice +1512.05016 Materials Science +1512.08796 Phenomenology +1512.09266 Phenomenology +1601.00175 Portfolio Management +1601.01151 Group Theory +1601.01978 Statistical Mechanics +1601.02925 Functional Analysis +1601.05257 Systems and Control +1602.01581 Computer Science and Game Theory +1602.03549 Disordered Systems and Neural Networks +1602.04205 Materials Science +1602.04642 Dynamical Systems +1602.07546 +1602.08586 +1603.02216 Differential Geometry +1603.02272 High Energy Astrophysical Phenomena +1603.02602 Statistical Mechanics +1603.04295 +1603.04398 Mesoscale and Nanoscale Physics +1603.04720 +1603.06116 Probability +1603.06194 High Energy Astrophysical Phenomena +1603.06416 Dynamical Systems +1603.07166 Theory +1603.07271 Group Theory +1604.00522 Mesoscale and Nanoscale Physics +1604.00529 +1604.01440 Theory +1604.01640 Experiment +1604.02834 Theory +1604.04372 Algebraic Geometry +1604.04428 Learning +1604.05096 Computer Vision and Pattern Recognition +1604.05471 Artificial Intelligence +1604.07114 Strongly Correlated Electrons +1604.07128 Discrete Mathematics +1604.08094 +1605.00037 Phenomenology +1605.00068 Experiment +1605.00512 +1605.00565 Computational Complexity +1605.01042 Computer Vision and Pattern Recognition +1605.01529 Statistical Mechanics +1605.01717 Data Structures and Algorithms +1605.03607 +1605.04906 Astrophysics of Galaxies +1605.04926 High Energy Astrophysical Phenomena +1605.08007 Mesoscale and Nanoscale Physics +1605.08027 +1605.08137 Mesoscale and Nanoscale Physics +1605.08605 Probability +1605.08994 Information Theory +1606.00304 Statistics Theory +1606.02121 Rings and Algebras +1606.04846 +1606.04957 Phenomenology +1606.04984 Software Engineering +1606.05131 Metric Geometry +1606.05262 Computer Vision and Pattern Recognition +1606.06815 Astrophysics of Galaxies +1606.07203 Materials Science +1606.07656 Mesoscale and Nanoscale Physics +1606.08265 Phenomenology +1606.08581 Combinatorics +1606.08733 Computation and Language +1606.09381 Strongly Correlated Electrons +1607.00506 Analysis of PDEs +1607.00710 Machine Learning +1607.01061 Strongly Correlated Electrons +1607.01074 Cosmology and Nongalactic Astrophysics +1607.01088 Numerical Analysis +1607.01353 Strongly Correlated Electrons +1607.02501 Computation and Language +1607.02576 Computation and Language +1607.02706 Atomic Physics +1607.02834 Learning +1607.03222 Computer Vision and Pattern Recognition +1607.03297 Number Theory +1607.03346 Mesoscale and Nanoscale Physics +1607.03422 Dynamical Systems +1607.03479 Systems and Control +1607.03483 Social and Information Networks +1607.03568 Materials Science +1607.03569 Statistics Theory +1607.03828 History and Philosophy of Physics +1607.03868 Analysis of PDEs +1607.03882 Physics Education +1607.03895 Computation and Language +1607.03897 Theory +1607.03898 High Energy Astrophysical Phenomena +1607.03902 Quantum Gases +1607.03916 Theory +1607.03920 +1607.03921 Quantum Gases +1607.03922 Human-Computer Interaction +1607.03923 +1607.03926 Soft Condensed Matter +1607.03929 Astrophysics of Galaxies +1607.03935 +1607.03943 Numerical Analysis +1607.03944 Analysis of PDEs +1607.03947 Exactly Solvable and Integrable Systems +1607.03951 Mesoscale and Nanoscale Physics +1607.03954 Methodology +1607.03955 Genomics +1607.03958 Optimization and Control +1607.03964 Optics +1607.03967 Learning +1607.03969 Numerical Analysis +1607.03971 Other Computer Science +1607.03972 Commutative Algebra +1607.03975 Machine Learning +1607.03976 +1607.03978 +1607.03979 Artificial Intelligence +1607.03980 Earth and Planetary Astrophysics +1607.03981 Combinatorics +1607.03983 Quantum Gases +1607.03986 +1607.03990 Learning +1607.03995 Optimization and Control +1607.03996 Analysis of PDEs +1607.03997 Number Theory +1607.03998 Probability +1607.04001 Combinatorics +1607.04002 Data Structures and Algorithms +1607.04008 Computational Physics +1607.04010 Logic +1607.04012 Numerical Analysis +1607.04014 Analysis of PDEs +1607.04017 Numerical Analysis +1607.04019 +1607.04021 Analysis of PDEs +1607.04022 +1607.04023 Phenomenology +1607.04025 Formal Languages and Automata Theory +1607.04026 Classical Analysis and ODEs +1607.04028 Analysis of PDEs +1607.04031 Formal Languages and Automata Theory +1607.04032 Computer Vision and Pattern Recognition +1607.04033 Logic in Computer Science +1607.04034 Representation Theory +1607.04035 High Energy Astrophysical Phenomena +1607.04038 Superconductivity +1607.04039 Methodology +1607.04044 Number Theory +1607.04046 Phenomenology +1607.04048 Number Theory +1607.04049 Lattice +1607.04055 Logic +1607.04057 Materials Science +1607.04060 Atomic Physics +1607.04066 Rings and Algebras +1607.04069 Plasma Physics +1607.04072 Information Theory +1607.04074 Combinatorics +1607.04075 Probability +1607.04076 Commutative Algebra +1607.04077 Distributed, Parallel, and Cluster Computing +1607.04078 Differential Geometry +1607.04080 Classical Analysis and ODEs +1607.04082 Differential Geometry +1607.04083 Combinatorics +1607.04084 Probability +1607.04086 Dynamical Systems +1607.04087 Exactly Solvable and Integrable Systems +1607.04088 Group Theory +1607.04092 Probability +1607.04093 Algebraic Topology +1607.04096 Algebraic Geometry +1607.04100 Risk Management +1607.04101 Analysis of PDEs +1607.04102 Probability +1607.04105 General Topology +1607.04106 Instrumentation and Methods for Astrophysics +1607.04108 Optimization and Control +1607.04110 Computation and Language +1607.04111 Differential Geometry +1607.04113 Algebraic Topology +1607.04116 +1607.04118 +1607.04123 +1607.04125 Digital Libraries +1607.04128 Logic in Computer Science +1607.04129 Theory +1607.04130 Group Theory +1607.04131 Rings and Algebras +1607.04132 Theory +1607.04134 Differential Geometry +1607.04136 General Finance +1607.04138 Robotics +1607.04139 Fluid Dynamics +1607.04142 Fluid Dynamics +1607.04143 Information Theory +1607.04144 Combinatorics +1607.04149 Computer Science and Game Theory +1607.04152 Quantitative Methods +1607.04153 Optimization and Control +1607.04154 +1607.04155 Economics +1607.04156 Logic in Computer Science +1607.04157 Applications +1607.04158 Populations and Evolution +1607.04163 Spectral Theory +1607.04165 Statistical Mechanics +1607.04166 Numerical Analysis +1607.04169 Neurons and Cognition +1607.04170 Number Theory +1607.04171 Spectral Theory +1607.04174 Computer Vision and Pattern Recognition +1607.04175 Analysis of PDEs +1607.04183 Probability +1607.04184 Optimization and Control +1607.04185 High Energy Astrophysical Phenomena +1607.04186 Artificial Intelligence +1607.04193 Astrophysics of Galaxies +1607.04194 Analysis of PDEs +1607.04195 Theory +1607.04197 Programming Languages +1607.04198 Optics +1607.04200 Data Structures and Algorithms +1607.04201 Probability +1607.04202 +1607.04204 Methodology +1607.04206 Information Theory +1607.04209 Other Statistics +1607.04215 Applications +1607.04216 Experiment +1607.04219 Numerical Analysis +1607.04220 Computational Complexity +1607.04222 Theory +1607.04223 Dynamical Systems +1607.04224 Plasma Physics +1607.04228 Learning +1607.04232 Logic +1607.04235 Phenomenology +1607.04238 Strongly Correlated Electrons +1607.04240 Logic +1607.04243 Robotics +1607.04244 Geometric Topology +1607.04245 Mathematical Software +1607.04246 Algebraic Geometry +1607.04249 +1607.04250 +1607.04252 +1607.04253 Theory +1607.04254 Numerical Analysis +1607.04255 Systems and Control +1607.04257 Numerical Analysis +1607.04259 Differential Geometry +1607.04261 Materials Science +1607.04262 High Energy Astrophysical Phenomena +1607.04263 Social and Information Networks +1607.04267 Neural and Evolutionary Computing +1107.5499 Group Theory +1208.2153 Solar and Stellar Astrophysics +1208.6109 Computation and Language +1209.1087 Algebraic Topology +1210.2870 Solar and Stellar Astrophysics +1211.4397 Chemical Physics +1303.1126 Solar and Stellar Astrophysics +1306.5388 Group Theory +1307.6381 Complex Variables +1308.5656 Operator Algebras +1311.5708 High Energy Astrophysical Phenomena +1312.5201 Symplectic Geometry +1401.4520 Spectral Theory +1401.6788 Quantum Algebra +1403.1020 Algebraic Geometry +1405.0668 Strongly Correlated Electrons +1405.1012 Logic +1406.3428 Dynamical Systems +1406.4233 Solar and Stellar Astrophysics +1407.4675 Metric Geometry +1408.4934 Number Theory +1408.7033 Data Structures and Algorithms +1409.5335 Quantum Algebra +1409.6237 Strongly Correlated Electrons +1409.8180 Theory +1410.2174 Statistics Theory +1410.5293 Number Theory +1410.6203 Number Theory +1411.0815 Atmospheric and Oceanic Physics +1411.1477 Combinatorics +1411.2747 Metric Geometry +1412.1499 Differential Geometry +1412.1912 Probability +1501.04038 Databases +1502.02070 Combinatorics +1502.04178 Probability +1503.04401 Chemical Physics +1503.05557 Chemical Physics +1503.06496 Logic +1504.04696 Statistics Theory +1504.04853 Commutative Algebra +1505.02279 Number Theory +1505.02364 +1505.03591 Atomic Physics +1505.07040 Combinatorics +1505.07498 Numerical Analysis +1506.00345 Geometric Topology +1506.02157 Machine Learning +1506.03877 Learning +1506.05061 Complex Variables +1506.08301 Computer Vision and Pattern Recognition +1507.01200 Strongly Correlated Electrons +1507.01704 Complex Variables +1507.02740 Commutative Algebra +1507.03429 Statistics Theory +1507.04387 Pricing of Securities +1507.04404 Optimization and Control +1507.04962 Phenomenology +1507.04994 Probability +1507.07128 Functional Analysis +1507.08367 Populations and Evolution +1508.00393 Quantum Gases +1508.02886 +1508.05036 Superconductivity +1508.05059 Functional Analysis +1508.06250 Algebraic Geometry +1508.06656 Information Theory +1508.07672 +1508.07762 Operator Algebras +1509.01627 Number Theory +1509.04159 General Physics +1509.04341 +1509.05594 +1509.07022 Optimization and Control +1509.08598 Algebraic Geometry +1510.04142 Numerical Analysis +1510.04314 Cosmology and Nongalactic Astrophysics +1510.04718 Solar and Stellar Astrophysics +1510.05054 +1510.05056 Classical Analysis and ODEs +1510.05311 Information Theory +1510.05574 Soft Condensed Matter +1510.06508 Optics +1510.06995 +1510.08112 Mesoscale and Nanoscale Physics +1510.08498 Logic in Computer Science +1510.09127 Optimization and Control +1511.00418 Information Theory +1511.01714 Physics Education +1511.02674 Computer Vision and Pattern Recognition +1511.03601 Adaptation and Self-Organizing Systems +1511.03796 Methodology +1511.05057 Spectral Theory +1511.05644 Learning +1511.05857 Phenomenology +1511.06143 Analysis of PDEs +1511.06150 Theory +1511.06335 Learning +1512.01948 Superconductivity +1512.02608 Solar and Stellar Astrophysics +1512.02820 Phenomenology +1512.03724 Classical Analysis and ODEs +1512.04193 +1512.05268 +1512.06635 Databases +1512.07997 Superconductivity +1512.08273 Strongly Correlated Electrons +1601.00927 Phenomenology +1601.01645 Human-Computer Interaction +1601.02883 Theory +1601.03954 Number Theory +1601.04592 +1601.07880 Phenomenology +1602.00287 Machine Learning +1602.01483 Optimization and Control +1602.01732 Networking and Internet Architecture +1602.02166 Theory +1602.02218 Learning +1602.03001 Learning +1602.03004 Statistical Mechanics +1602.03273 Distributed, Parallel, and Cluster Computing +1602.06175 Materials Science +1602.06693 Machine Learning +1602.06992 Soft Condensed Matter +1602.07155 Statistical Mechanics +1603.00250 Mesoscale and Nanoscale Physics +1603.00553 Phenomenology +1603.00580 Computational Geometry +1603.00707 Cryptography and Security +1603.00721 Materials Science +1603.02274 Mesoscale and Nanoscale Physics +1603.04186 Computer Vision and Pattern Recognition +1603.05106 Machine Learning +1603.05146 Phenomenology +1603.05181 Physics and Society +1603.05207 Superconductivity +1603.05401 Algebraic Geometry +1603.05918 +1603.06671 Theory +1603.07142 Instrumentation and Methods for Astrophysics +1603.08017 Optics +1603.08679 Phenomenology +1603.09729 Theory +1604.00359 Artificial Intelligence +1604.00755 Operator Algebras +1604.01173 Number Theory +1604.02432 Optimization and Control +1604.04147 Optics +1604.04198 Machine Learning +1604.04650 Statistical Mechanics +1604.05734 Statistics Theory +1604.05921 Computer Vision and Pattern Recognition +1604.06479 Earth and Planetary Astrophysics +1604.07289 Rings and Algebras +1605.01662 +1605.01971 Optimization and Control +1605.02710 Social and Information Networks +1605.03245 Theory +1605.04276 Group Theory +1605.04682 Distributed, Parallel, and Cluster Computing +1605.04687 Computers and Society +1605.04693 Computers and Society +1605.04695 Computers and Society +1605.04714 Computers and Society +1605.04717 Computers and Society +1605.04725 Computers and Society +1605.04909 Cosmology and Nongalactic Astrophysics +1605.05102 Data Structures and Algorithms +1605.05443 Combinatorics +1605.05854 +1605.05887 Cryptography and Security +1605.06252 Systems and Control +1605.06310 General Physics +1605.06359 Machine Learning +1605.06518 +1605.06638 Combinatorics +1605.06844 Distributed, Parallel, and Cluster Computing +1605.06892 Optimization and Control +1605.07151 Probability +1605.07162 Learning +1605.07273 Combinatorics +1605.07460 Mesoscale and Nanoscale Physics +1605.07512 Networking and Internet Architecture +1605.07608 Combinatorics +1605.07609 +1605.07610 +1605.07611 +1605.07613 Combinatorics +1605.07614 +1605.07626 Astrophysics of Galaxies +1605.07634 Numerical Analysis +1605.07639 Theory +1605.07645 Numerical Analysis +1605.07651 Computer Vision and Pattern Recognition +1605.07652 Mesoscale and Nanoscale Physics +1605.07653 Computational Physics +1605.07654 Operator Algebras +1605.07655 Metric Geometry +1605.07656 Populations and Evolution +1605.07657 Methodology +1605.07659 Learning +1605.07661 Information Theory +1605.07662 Materials Science +1605.07663 Applications +1605.07664 +1605.07675 Subcellular Processes +1605.07676 Number Theory +1605.07679 Statistics Theory +1605.07680 Statistics Theory +1605.07684 Information Theory +1605.07685 Networking and Internet Architecture +1605.07688 Algebraic Topology +1605.07690 Populations and Evolution +1605.07695 Quantum Gases +1605.07699 Computer Vision and Pattern Recognition +1605.07700 Learning +1605.07701 Analysis of PDEs +1605.07704 Multimedia +1605.07707 Theory +1605.07708 Robotics +1605.07711 Operator Algebras +1605.07715 Differential Geometry +1605.07716 Computer Vision and Pattern Recognition +1605.07718 Earth and Planetary Astrophysics +1605.07726 Number Theory +1605.07727 Commutative Algebra +1605.07731 Biomolecules +1605.07733 Human-Computer Interaction +1605.07734 Networking and Internet Architecture +1605.07735 Computation and Language +1605.07737 Geometric Topology +1605.07740 Neural and Evolutionary Computing +1605.07742 Solar and Stellar Astrophysics +1605.07743 Number Theory +1605.07744 +1605.07745 Category Theory +1605.07751 Chemical Physics +1605.07753 Computer Science and Game Theory +1605.07756 Optics +1605.07758 Group Theory +1605.07762 Combinatorics +1605.07765 Number Theory +1605.07766 Computation and Language +1605.07771 Plasma Physics +1605.07775 Dynamical Systems +1605.07776 Optics +1605.07782 Earth and Planetary Astrophysics +1605.07785 Learning +1605.07786 +1605.07787 Methodology +1605.07788 Dynamical Systems +1605.07789 Biomolecules +1605.07791 Combinatorics +1605.07793 Subcellular Processes +1605.07795 Numerical Analysis +1605.07798 Combinatorics +1605.07799 Dynamical Systems +1605.07806 Algebraic Geometry +1605.07810 +1605.07811 Methodology +1605.07812 Spectral Theory +1605.07819 Cryptography and Security +1605.07820 Materials Science +1605.07821 Numerical Analysis +1605.07824 Computer Vision and Pattern Recognition +1605.07827 Commutative Algebra +1605.07830 Statistics Theory +1605.07832 Combinatorics +1605.07834 Robotics +1605.07840 Astrophysics of Galaxies +1605.07841 Geophysics +1605.07843 Computation and Language +1605.07851 Phenomenology +1605.07854 Applications +1605.07860 Analysis of PDEs +1605.07861 Social and Information Networks +1605.07862 Algebraic Geometry +1605.07864 Dynamical Systems +1605.07867 Logic +1605.07870 Machine Learning +1605.07871 Analysis of PDEs +1605.07872 Theory +1605.07873 Probability +1605.07876 Optimization and Control +1605.07879 Group Theory +1605.07882 Solar and Stellar Astrophysics +1605.07883 Earth and Planetary Astrophysics +1605.07886 Space Physics +1605.07887 +1605.07888 Distributed, Parallel, and Cluster Computing +1605.07889 Geophysics +1605.07892 Symplectic Geometry +1605.07895 Artificial Intelligence +1605.07897 Optimization and Control +1605.07901 Earth and Planetary Astrophysics +1605.07905 Information Theory +1605.07906 Machine Learning +1605.07907 Analysis of PDEs +1605.07910 Optimization and Control +1605.07914 Accelerator Physics +1605.07915 Social and Information Networks +1605.07918 Computation and Language +1605.07919 Methodology +1605.07922 Numerical Analysis +1605.07923 Solar and Stellar Astrophysics +1605.07924 Applications +1605.07930 Analysis of PDEs +1605.07939 Optimization and Control +1605.07943 Information Theory +1605.07944 Superconductivity +1605.07947 Methodology +1605.07951 Numerical Analysis +1605.07952 Materials Science +1605.07960 Computer Vision and Pattern Recognition +1605.07963 Differential Geometry +1605.07974 Numerical Analysis +1605.07976 Operator Algebras +1605.07978 Numerical Analysis +1605.07980 Information Retrieval +1605.07981 Methodology +1605.07982 Optimization and Control +1605.07983 Algebraic Topology +1605.07985 Functional Analysis +1605.07986 Differential Geometry +1605.07988 Cryptography and Security +1605.07991 Machine Learning +1605.07994 Adaptation and Self-Organizing Systems +1605.07995 Complex Variables +1605.07996 Robotics +1605.08001 Quantitative Methods +1605.08005 Algebraic Geometry +1605.08010 Statistics Theory +1605.08012 Phenomenology +1605.08019 Differential Geometry +1605.08024 Soft Condensed Matter +1605.08025 Economics +1605.08029 Information Theory +quant-ph/0410040 +1012.5205 Fluid Dynamics +1106.3102 Probability +1202.5123 Analysis of PDEs +1207.2460 +1304.7655 Differential Geometry +1304.7657 Differential Geometry +1305.1646 Algebraic Geometry +1305.6023 Functional Analysis +1306.1197 Probability +1310.1376 Combinatorics +1312.2888 General Physics +1403.3516 Group Theory +1404.7080 Statistics Theory +1406.7158 Logic +1409.0238 Mesoscale and Nanoscale Physics +1410.5838 Statistical Mechanics +1410.6097 Group Theory +1411.1428 Astrophysics of Galaxies +1411.7039 Algebraic Geometry +1412.5084 Algebraic Topology +1412.6179 Optimization and Control +1412.6844 Analysis of PDEs +1412.7678 Mesoscale and Nanoscale Physics +1412.7907 Statistics Theory +1501.00207 Commutative Algebra +1502.01190 Classical Analysis and ODEs +1502.05708 Differential Geometry +1502.06465 Metric Geometry +1502.07515 Theory +1503.07224 Systems and Control +1504.00127 Analysis of PDEs +1504.06512 Number Theory +1504.06522 Representation Theory +1505.04164 Differential Geometry +1506.01096 Dynamical Systems +1506.02034 High Energy Astrophysical Phenomena +1506.02791 Logic +1506.02852 Optimization and Control +1506.06318 Learning +1506.07827 Probability +1506.08448 Machine Learning +1507.03572 Quantitative Methods +1507.03917 Numerical Analysis +1507.04611 Dynamical Systems +1507.06787 Phenomenology +1508.05253 Computer Science and Game Theory +1508.06676 +1508.07826 Probability +1509.01088 Phenomenology +1509.03197 +1509.06583 Probability +1509.08954 Neurons and Cognition +1509.09103 Statistics Theory +1509.09133 Risk Management +1510.01610 Number Theory +1510.01915 Number Theory +1510.02321 Neurons and Cognition +1510.02430 Methodology +1510.06570 Phenomenology +1510.07384 Differential Geometry +1510.08431 Experiment +1511.03509 +1511.03719 Learning +1511.03827 Combinatorics +1511.04665 +1511.07329 Operator Algebras +1511.08495 Learning +1512.01098 +1512.01143 Dynamical Systems +1512.03348 +1512.05431 Biological Physics +1512.06092 Experiment +1512.07112 Analysis of PDEs +1512.07757 Combinatorics +1512.08322 Solar and Stellar Astrophysics +1512.08643 Machine Learning +1512.09278 +1601.00625 Computational Physics +1601.01176 Theory +1601.02936 Theory +1601.03109 Theory +1601.07381 Data Analysis, Statistics and Probability +1602.00257 Probability +1602.01840 Astrophysics of Galaxies +1602.03290 Phenomenology +1602.04336 Functional Analysis +1602.04773 Populations and Evolution +1602.05086 Phenomenology +1602.06338 Logic +1602.08003 Phenomenology +1602.08777 Cryptography and Security +1603.05474 Computer Vision and Pattern Recognition +1603.05941 Information Theory +1603.07747 Functional Analysis +1603.08952 Biomolecules +1604.00315 Lattice +1604.00651 +1604.00950 Cosmology and Nongalactic Astrophysics +1604.01653 Information Theory +1604.01789 Genomics +1604.02736 Methodology +1604.03033 Geometric Topology +1604.03503 Cosmology and Nongalactic Astrophysics +1604.03535 Differential Geometry +1604.04432 Data Analysis, Statistics and Probability +1604.05068 +1604.07560 Information Theory +1604.08354 Biological Physics +1605.00564 Lattice +1605.00794 Geometric Topology +1605.00795 Geometric Topology +1605.00934 Biomolecules +1605.01121 Theory +1605.04019 Numerical Analysis +1605.04588 Strongly Correlated Electrons +1605.05052 Dynamical Systems +1605.05898 Probability +1605.06055 Atomic Physics +1605.06737 Quantitative Methods +1605.07010 Representation Theory +1605.07374 Mesoscale and Nanoscale Physics +1605.08772 Phenomenology +1605.09332 Learning +1605.09683 Dynamical Systems +1606.01260 Strongly Correlated Electrons +1606.02971 Statistical Mechanics +1606.03582 Astrophysics of Galaxies +1606.04475 +1606.04691 Cosmology and Nongalactic Astrophysics +1606.05811 Optimization and Control +1606.07240 Machine Learning +1606.09234 Superconductivity +1606.09513 Phenomenology +1607.00162 +1607.00661 Earth and Planetary Astrophysics +1607.00922 +1607.01059 Computer Vision and Pattern Recognition +1607.01993 Logic in Computer Science +1607.02648 Soft Condensed Matter +1607.02912 +1607.04430 Statistics Theory +1607.05443 Programming Languages +1607.06671 Human-Computer Interaction +1607.06806 Physics and Society +1607.08064 Computer Vision and Pattern Recognition +1608.00026 Earth and Planetary Astrophysics +1608.00327 Complex Variables +1608.00345 Optics +1608.01641 Representation Theory +1608.02106 Phenomenology +1608.02802 +1608.03109 Methodology +1608.03401 Materials Science +1608.05360 +1608.05449 Number Theory +1608.05704 Mesoscale and Nanoscale Physics +1608.06208 General Topology +1608.06773 Phenomenology +1608.06909 Mesoscale and Nanoscale Physics +1608.07778 Differential Geometry +1608.08644 Information Theory +1608.08713 Cosmology and Nongalactic Astrophysics +1609.00602 Earth and Planetary Astrophysics +1609.00704 Materials Science +1609.02506 Quantum Gases +1609.02695 Algebraic Geometry +1609.04994 Learning +1609.06344 Atomic Physics +1609.07570 Atomic and Molecular Clusters +1609.07898 Biomolecules +1609.08640 Phenomenology +1609.08947 Superconductivity +1610.00462 Disordered Systems and Neural Networks +1610.00568 Cosmology and Nongalactic Astrophysics +1610.01751 Probability +1610.01765 Probability +1610.02286 Probability +1610.02940 Functional Analysis +1610.03559 Theory +1610.04171 Soft Condensed Matter +1610.04215 Information Theory +1610.04630 Rings and Algebras +1610.06204 Computer Vision and Pattern Recognition +1610.06248 Probability +1610.06791 Optics +1610.06864 Group Theory +1610.06929 Theory +1610.07397 Representation Theory +1610.07408 Combinatorics +1610.07527 Instrumentation and Detectors +1610.08055 High Energy Astrophysical Phenomena +1610.08378 Phenomenology +1610.09316 Disordered Systems and Neural Networks +1610.09986 Atomic Physics +1611.00198 Data Structures and Algorithms +1611.00778 Astrophysics of Galaxies +1611.01094 Number Theory +1611.01516 +1611.01682 Populations and Evolution +1611.01753 Astrophysics of Galaxies +1611.02793 Solar and Stellar Astrophysics +1611.02907 +1611.03757 Phenomenology +1611.04023 Neurons and Cognition +1611.04086 Materials Science +1611.04130 Quantum Algebra +1611.04167 Distributed, Parallel, and Cluster Computing +1611.04368 Functional Analysis +1611.04400 Phenomenology +1611.04404 Materials Science +1611.04975 Materials Science +1611.05083 Software Engineering +1611.05093 Quantum Gases +1611.05201 Methodology +1611.05272 Optimization and Control +1611.05515 Phenomenology +1611.05520 Computer Vision and Pattern Recognition +1611.05549 Distributed, Parallel, and Cluster Computing +1611.05748 Dynamical Systems +1611.05819 Computational Complexity +1611.05862 Instrumentation and Detectors +1611.05863 Instrumentation and Detectors +1611.05864 Instrumentation and Detectors +1611.05867 Astrophysics of Galaxies +1611.05869 Astrophysics of Galaxies +1611.05872 Lattice +1611.05873 Phenomenology +1611.05874 Phenomenology +1611.05876 Cosmology and Nongalactic Astrophysics +1611.05877 Strongly Correlated Electrons +1611.05879 Phenomenology +1611.05880 High Energy Astrophysical Phenomena +1611.05883 Cosmology and Nongalactic Astrophysics +1611.05884 Astrophysics of Galaxies +1611.05885 Algebraic Geometry +1611.05887 Strongly Correlated Electrons +1611.05890 +1611.05891 Statistical Mechanics +1611.05893 Mesoscale and Nanoscale Physics +1611.05894 Analysis of PDEs +1611.05895 Disordered Systems and Neural Networks +1611.05896 Computer Vision and Pattern Recognition +1611.05897 General Physics +1611.05898 Learning +1611.05899 Dynamical Systems +1611.05902 Methodology +1611.05903 Probability +1611.05907 Data Structures and Algorithms +1611.05908 Mesoscale and Nanoscale Physics +1611.05909 Statistics Theory +1611.05910 Networking and Internet Architecture +1611.05912 +1611.05913 Dynamical Systems +1611.05914 Instrumentation and Methods for Astrophysics +1611.05915 Computer Vision and Pattern Recognition +1611.05917 Statistics Theory +1611.05918 Neurons and Cognition +1611.05919 Spectral Theory +1611.05920 Theory +1611.05921 Group Theory +1611.05922 +1611.05924 High Energy Astrophysical Phenomena +1611.05926 Materials Science +1611.05927 Computer Vision and Pattern Recognition +1611.05928 Analysis of PDEs +1611.05931 Metric Geometry +1611.05933 Plasma Physics +1611.05934 Machine Learning +1611.05935 Numerical Analysis +1611.05936 Analysis of PDEs +1611.05941 Algebraic Geometry +1611.05943 Networking and Internet Architecture +1611.05944 Data Structures and Algorithms +1611.05945 Geometric Topology +1611.05946 Optics +1611.05947 Algebraic Geometry +1611.05948 Dynamical Systems +1611.05949 Numerical Analysis +1611.05950 Artificial Intelligence +1611.05951 Theory +1611.05953 Optimization and Control +1611.05954 Combinatorics +1611.05955 Learning +1611.05957 Optics +1611.05958 Chemical Physics +1611.05959 Computer Science and Game Theory +1611.05961 Systems and Control +1611.05962 Computation and Language +1611.05965 Functional Analysis +1611.05967 Combinatorics +1611.05969 +1611.05973 Artificial Intelligence +1611.05975 Information Theory +1611.05976 Materials Science +1611.05977 Learning +1611.05978 Solar and Stellar Astrophysics +1611.05981 Algebraic Geometry +1611.05982 Quantum Algebra +1611.05984 Fluid Dynamics +1611.05987 Chemical Physics +1611.05988 Geometric Topology +1611.05989 +1611.05990 Logic in Computer Science +1611.05991 Computational Complexity +1611.05993 Probability +1611.05994 Software Engineering +1611.05995 Information Theory +1611.05998 Data Structures and Algorithms +1611.05999 Probability +1611.06001 Analysis of PDEs +1611.06002 Probability +1611.06003 Strongly Correlated Electrons +1611.06004 Soft Condensed Matter +1611.06007 Experiment +1611.06008 Information Theory +1611.06009 Computer Vision and Pattern Recognition +1611.06010 Risk Management +1611.06011 Computer Vision and Pattern Recognition +1611.06012 Numerical Analysis +1611.06014 Strongly Correlated Electrons +1611.06016 +1611.06017 Classical Analysis and ODEs +1611.06019 +1611.06020 Phenomenology +1611.06021 Fluid Dynamics +1611.06023 High Energy Astrophysical Phenomena +1611.06024 Analysis of PDEs +1611.06026 Computer Vision and Pattern Recognition +1611.06028 +1611.06031 Combinatorics +1611.06037 Complex Variables +1611.06038 Distributed, Parallel, and Cluster Computing +1611.06039 Instrumentation and Methods for Astrophysics +1611.06040 +1611.06044 Solar and Stellar Astrophysics +1611.06045 Chemical Physics +1611.06046 High Energy Astrophysical Phenomena +1611.06047 Plasma Physics +1611.06048 +1611.06049 Physics and Society +1611.06052 Materials Science +1611.06054 Mesoscale and Nanoscale Physics +1611.06055 High Energy Astrophysical Phenomena +1611.06058 Representation Theory +1611.06059 Physics Education +1611.06061 Functional Analysis +1611.06063 Solar and Stellar Astrophysics +1611.06065 Quantitative Methods +1611.06066 Machine Learning +1611.06067 Computer Vision and Pattern Recognition +1611.06068 Lattice +1611.06069 Computer Vision and Pattern Recognition +1611.06070 Robotics +1611.06071 Superconductivity +1611.06072 Biomolecules +1611.06073 Combinatorics +1611.06074 Algebraic Geometry +1611.06076 High Energy Astrophysical Phenomena +1611.06077 Analysis of PDEs +1611.06078 Hardware Architecture +1611.06079 Emerging Technologies +1611.06080 Machine Learning +1611.06082 Commutative Algebra +1611.06084 Number Theory +1611.06085 Phenomenology +1611.06086 Neural and Evolutionary Computing +1611.06090 Logic +1611.06092 Physics and Society +1611.06094 Machine Learning +1611.06095 Phenomenology +1611.06097 Numerical Analysis +1611.06098 Numerical Analysis +1611.06099 K-Theory and Homology +1611.06100 Quantum Algebra +1611.06102 Lattice +1611.06103 Cosmology and Nongalactic Astrophysics +1611.06104 Combinatorics +1611.06105 Group Theory +1611.06107 Instrumentation and Detectors +1611.06110 Mesoscale and Nanoscale Physics +1611.06111 +1611.06112 Analysis of PDEs +1611.06113 Pattern Formation and Solitons +1611.06114 Instrumentation and Detectors +1611.06115 Computer Vision and Pattern Recognition +1611.06116 Number Theory +1611.06117 Mesoscale and Nanoscale Physics +1611.06118 Experiment +1611.06119 Analysis of PDEs +1611.06120 Algebraic Geometry +1611.06122 Other Condensed Matter +1611.06125 Differential Geometry +1611.06127 Disordered Systems and Neural Networks +1611.06128 Databases +1611.06129 Statistics Theory +1611.06131 Rings and Algebras +1611.06132 Learning +1611.06134 Artificial Intelligence +1611.06135 Combinatorics +1611.06136 Phenomenology +1611.06137 Differential Geometry +1611.06138 Functional Analysis +1611.06139 Theory +1611.06142 Combinatorics +1611.06144 Classical Analysis and ODEs +1611.06145 Robotics +1611.06146 Materials Science +1611.06147 Analysis of PDEs +1611.06148 Machine Learning +1611.06149 Solar and Stellar Astrophysics +1611.06151 +1611.06152 Populations and Evolution +1611.06153 Mesoscale and Nanoscale Physics +1611.06154 High Energy Astrophysical Phenomena +1611.06158 Computer Vision and Pattern Recognition +1611.06159 Computer Vision and Pattern Recognition +1611.06161 Functional Analysis +1611.06162 Metric Geometry +1611.06163 Computational Physics +1611.06164 Emerging Technologies +1611.06165 Phenomenology +1611.06166 Analysis of PDEs +1611.06167 Geophysics +1611.06168 Other Statistics +1611.06170 Solar and Stellar Astrophysics +1611.06171 Strongly Correlated Electrons +1611.06173 Statistics Theory +1611.06174 Artificial Intelligence +1611.06175 Machine Learning +1611.06177 Theory +1611.06178 Probability +1611.06180 Atomic Physics +1611.06181 Computational Finance +1611.06184 Materials Science +1611.06185 Biomolecules +1611.06186 Phenomenology +1611.06187 Numerical Analysis +1611.06190 Dynamical Systems +1611.06193 Probability +1611.06194 Computer Vision and Pattern Recognition +1611.06196 Group Theory +1611.06197 Neurons and Cognition +1611.06198 Astrophysics of Galaxies +1611.06200 Theory +1611.06201 Probability +1611.06203 Computer Vision and Pattern Recognition +1611.06204 Computation and Language +1611.06206 Phenomenology +1611.06208 Methodology +1611.06209 High Energy Astrophysical Phenomena +1611.06211 Neural and Evolutionary Computing +1611.06212 Phenomenology +1611.06213 Machine Learning +1611.06215 Algebraic Topology +1611.06216 Computation and Language +1611.06217 Methodology +1611.06218 Functional Analysis +1611.06219 Instrumentation and Methods for Astrophysics +1611.06221 Methodology +1611.06222 Data Structures and Algorithms +1611.06224 Databases +1611.06225 Operator Algebras +physics/0102055 Fluid Dynamics +quant-ph/0012107 +1608.05168 Networking and Internet Architecture +1608.05170 Networking and Internet Architecture +1608.05172 Networking and Internet Architecture +0707.4525 Algebraic Geometry +1001.3642 Analysis of PDEs +1103.0673 Theory +1203.2516 Networking and Internet Architecture +1204.5308 Geometric Topology +1206.2387 Geometric Topology +1207.5979 +1208.3284 Algebraic Geometry +1210.2080 Differential Geometry +1211.6581 Learning +1212.5711 Computer Vision and Pattern Recognition +1303.5366 Rings and Algebras +1304.0891 Algebraic Topology +1305.1240 Cellular Automata and Lattice Gases +1305.3097 Logic +1306.1189 Cellular Automata and Lattice Gases +1308.0038 +1309.0395 Combinatorics +1309.4242 Functional Analysis +1310.0103 Representation Theory +1311.1871 Functional Analysis +1312.1177 Cosmology and Nongalactic Astrophysics +1312.5207 Methodology +1312.7634 Algebraic Geometry +1403.0194 Superconductivity +1403.2089 Differential Geometry +1403.2865 Group Theory +1404.0371 Superconductivity +1404.4058 Mesoscale and Nanoscale Physics +1404.6330 Operator Algebras +1405.5065 Complex Variables +1406.0812 Statistics Theory +1406.7406 Analysis of PDEs +1407.3233 +1407.3973 Materials Science +1408.1373 Algebraic Geometry +1408.5139 Mesoscale and Nanoscale Physics +1408.6511 Quantum Gases +1409.0675 Neurons and Cognition +1409.1102 Social and Information Networks +1409.1393 Mathematical Finance +1409.3900 Information Theory +1410.0788 +1410.3212 Algebraic Geometry +1410.5010 Performance +1410.6744 Physics and Society +1411.0083 +1411.2535 Dynamical Systems +1411.7013 Computation +1412.0255 High Energy Astrophysical Phenomena +1412.0383 Theory +1412.0772 Mesoscale and Nanoscale Physics +1412.2034 Combinatorics +1412.4288 Phenomenology +1412.5250 Methodology +1412.6467 +1412.7981 +1501.01186 Computer Vision and Pattern Recognition +1501.01692 Commutative Algebra +1501.02066 Commutative Algebra +1501.06121 Operator Algebras +1502.00602 Optics +1502.02908 Populations and Evolution +1502.05197 Numerical Analysis +1502.07021 Algebraic Geometry +1502.07586 Information Theory +1503.03705 Computational Finance +1503.05773 +1503.07894 Combinatorics +1503.08589 Mathematical Finance +1504.01177 Algebraic Geometry +1504.01896 Computation +1504.02089 Learning +1504.02763 Computer Vision and Pattern Recognition +1504.02912 +1504.03227 Number Theory +1504.03576 Statistical Mechanics +1504.03951 Superconductivity +1504.05381 Artificial Intelligence +1504.05783 Numerical Analysis +1504.06283 Phenomenology +1504.08141 Cosmology and Nongalactic Astrophysics +1505.00053 +1505.00887 Discrete Mathematics +1505.01791 +1505.02402 Optimization and Control +1505.03894 Differential Geometry +1505.03977 Graphics +1505.04711 Instrumentation and Methods for Astrophysics +1505.05922 Algebraic Geometry +1506.02161 Chemical Physics +1506.02594 Social and Information Networks +1506.03113 Statistics Theory +1506.03120 Experiment +1506.06367 Quantum Gases +1506.06999 Algebraic Geometry +1506.07524 Instrumentation and Methods for Astrophysics +1506.08438 Computer Vision and Pattern Recognition +1507.01425 Artificial Intelligence +1507.02497 Rings and Algebras +1507.02887 Statistics Theory +1507.04894 Phenomenology +1507.06251 Mesoscale and Nanoscale Physics +1507.06377 Rings and Algebras +1507.06439 +1507.07122 Number Theory +1507.08771 Operator Algebras +1508.01665 +1508.01950 Computer Science and Game Theory +1508.02738 Classical Analysis and ODEs +1508.03193 Mesoscale and Nanoscale Physics +1508.03804 +1508.04189 Phenomenology +1508.04475 Classical Analysis and ODEs +1508.04770 Theory +1508.04990 Materials Science +1509.00116 Computer Vision and Pattern Recognition +1509.00668 Statistical Mechanics +1509.01448 Biological Physics +1509.01821 Instrumentation and Detectors +1509.01910 Statistical Mechanics +1509.01957 Quantitative Methods +1509.02147 Strongly Correlated Electrons +1509.04274 Networking and Internet Architecture +1509.06962 Dynamical Systems +1509.07493 +1509.07495 Computer Science and Game Theory +1509.07580 Soft Condensed Matter +1509.07917 Astrophysics of Galaxies +1509.09290 +1510.00286 Adaptation and Self-Organizing Systems +1510.00922 +1510.00972 Theory +1510.01714 Social and Information Networks +1510.05542 Biological Physics +1510.05714 Distributed, Parallel, and Cluster Computing +1510.06323 Algebraic Geometry +1510.06530 Networking and Internet Architecture +1510.06795 Disordered Systems and Neural Networks +1510.06888 +1510.07826 Theory +1511.00038 Quantum Gases +1511.00502 Experiment +1511.00633 +1511.03451 Information Theory +1511.03875 Mesoscale and Nanoscale Physics +1511.03967 Dynamical Systems +1511.03988 Soft Condensed Matter +1511.04314 Pricing of Securities +1511.04888 Phenomenology +1511.05991 Theory +1511.07512 Number Theory +1512.00078 +1512.01544 Lattice +1512.05039 Biomolecules +1512.05251 Combinatorics +1512.06187 +1512.06757 Computer Vision and Pattern Recognition +1512.06768 +1512.07021 Databases +1512.07906 Quantum Algebra +1512.08832 Mesoscale and Nanoscale Physics +1512.08944 Probability +1512.09040 Combinatorics +1601.00109 Chemical Physics +1601.01489 Astrophysics of Galaxies +1601.02067 Phenomenology +1601.02691 Classical Analysis and ODEs +1601.04423 Representation Theory +1601.05035 Logic +1601.05484 Robotics +1601.05609 +1601.05692 Logic +1601.06012 Atomic Physics +1601.06020 Quantum Gases +1601.06145 Theory +1601.06197 Quantum Gases +1601.06206 Cryptography and Security +1601.06292 Social and Information Networks +1601.06319 Computational Complexity +1601.06353 Probability +1601.06383 Information Theory +1601.06639 Strongly Correlated Electrons +1601.06654 Commutative Algebra +1601.06657 Phenomenology +1601.06799 High Energy Astrophysical Phenomena +1601.06828 Materials Science +1601.06992 +1601.07086 Genomics +1601.07159 Computational Physics +1601.07168 Operator Algebras +1601.07171 +1601.07172 +1601.07189 Applications +1601.07191 Molecular Networks +1601.07192 Molecular Networks +1601.07196 Classical Physics +1601.07197 +1601.07200 Social and Information Networks +1601.07202 Instrumentation and Detectors +1601.07205 Metric Geometry +1601.07206 Combinatorics +1601.07207 Information Theory +1601.07210 Optimization and Control +1601.07212 Populations and Evolution +1601.07215 Computation and Language +1601.07221 Geophysics +1601.07223 Information Theory +1601.07224 Artificial Intelligence +1601.07225 Applications +1601.07227 Numerical Analysis +1601.07228 Information Theory +1601.07229 Human-Computer Interaction +1601.07232 Multimedia +1601.07233 Machine Learning +1601.07234 Instrumentation and Detectors +1601.07235 Methodology +1601.07241 Databases +1601.07244 Numerical Analysis +1601.07245 Analysis of PDEs +1601.07249 Accelerator Physics +1601.07250 Human-Computer Interaction +1601.07252 Computer Vision and Pattern Recognition +1601.07254 Information Theory +1601.07256 +1601.07258 Computer Vision and Pattern Recognition +1601.07259 Dynamical Systems +1601.07260 Systems and Control +1601.07262 Multimedia +1601.07264 Human-Computer Interaction +1601.07268 Mesoscale and Nanoscale Physics +1601.07269 General Topology +1601.07270 Computer Vision and Pattern Recognition +1601.07271 +1601.07272 Differential Geometry +1601.07273 Information Retrieval +1601.07275 Systems and Control +1601.07276 Functional Analysis +1601.07277 Optimization and Control +1601.07279 Systems and Control +1601.07280 Representation Theory +1601.07283 Information Theory +1601.07284 Symplectic Geometry +1601.07285 Information Theory +1601.07287 Differential Geometry +1601.07293 Number Theory +1601.07298 Functional Analysis +1601.07301 Algebraic Geometry +1601.07306 Materials Science +1601.07310 +1601.07311 Accelerator Physics +1601.07312 Instrumentation and Detectors +1601.07313 Logic +1601.07316 Number Theory +1601.07319 Classical Analysis and ODEs +1601.07323 Representation Theory +1601.07325 Information Theory +1601.07331 Materials Science +1601.07334 Data Analysis, Statistics and Probability +1601.07336 Computer Vision and Pattern Recognition +1601.07341 Computer Science and Game Theory +1601.07344 Methodology +1601.07346 Symplectic Geometry +1601.07347 +1601.07348 Number Theory +1601.07350 Mesoscale and Nanoscale Physics +1601.07355 Distributed, Parallel, and Cluster Computing +1601.07357 General Physics +1601.07358 +1601.07363 +1601.07366 General Physics +1601.07373 Optics +1601.07374 Solar and Stellar Astrophysics +1601.07377 Systems and Control +1601.07378 Computational Physics +1601.07380 Functional Analysis +1601.07382 +1601.07383 Numerical Analysis +1601.07388 Rings and Algebras +1601.07389 Commutative Algebra +1601.07394 History and Overview +1601.07398 Combinatorics +1601.07400 Distributed, Parallel, and Cluster Computing +1601.07401 Numerical Analysis +1601.07403 Logic in Computer Science +1601.07406 Atomic and Molecular Clusters +1601.07407 Algebraic Geometry +1601.07408 Strongly Correlated Electrons +1601.07416 Cryptography and Security +1601.07417 Information Theory +1601.07419 Number Theory +1601.07420 Distributed, Parallel, and Cluster Computing +1601.07424 Networking and Internet Architecture +1601.07430 Optimization and Control +1601.07434 Complex Variables +1601.07439 Atomic Physics +1601.07445 Physics Education +1601.07446 Neural and Evolutionary Computing +1601.07454 Strongly Correlated Electrons +1601.07456 Operator Algebras +1601.07457 Robotics +1601.07467 Theory +1601.07469 Differential Geometry +1601.07470 Astrophysics of Galaxies +1601.07473 Data Structures and Algorithms +1601.07474 Solar and Stellar Astrophysics +1601.07478 Analysis of PDEs +1601.07480 Representation Theory +1601.07481 Materials Science +1601.07484 Numerical Analysis +1601.07485 Dynamical Systems +1601.07486 Superconductivity +1601.07493 High Energy Astrophysical Phenomena +1601.07496 Methodology +1601.07500 Differential Geometry +1601.07501 Symplectic Geometry +1601.07502 Mesoscale and Nanoscale Physics +1601.07507 Geometric Topology +1601.07509 Spectral Theory +1601.07511 Theory +1601.07513 Information Theory +1601.07515 Optimization and Control +1601.07517 Superconductivity +1601.07522 Algebraic Geometry +1601.07525 Combinatorics +1601.07532 Computer Vision and Pattern Recognition +1601.07538 Group Theory +dg-ga/9712006 Differential Geometry +gr-qc/0107090 +hep-th/0107232 Theory +math/0505413 Algebraic Geometry +math/0609284 Algebraic Geometry +math/0609286 Algebraic Geometry +physics/0310001 History and Philosophy of Physics +0710.3357 Operator Algebras +0811.1830 +0912.1751 Cosmology and Nongalactic Astrophysics +1005.0056 High Energy Astrophysical Phenomena +1007.0075 Phenomenology +1007.0156 Analysis of PDEs +1109.2520 Earth and Planetary Astrophysics +1110.5707 Algebraic Geometry +1212.2566 Analysis of PDEs +1303.3159 Classical Analysis and ODEs +1305.2033 Dynamical Systems +1305.2118 Complex Variables +1305.6042 Geometric Topology +1308.0814 Combinatorics +1308.1562 Probability +1308.5795 Probability +1309.0698 Algebraic Geometry +1310.1570 Combinatorics +1310.6131 Operator Algebras +1311.5535 Symplectic Geometry +1311.6813 Cosmology and Nongalactic Astrophysics +1312.0322 Functional Analysis +1312.0392 Algebraic Geometry +1312.5391 Applications +1401.1894 Logic +1401.4871 Number Theory +1401.5735 Combinatorics +1402.4061 Methodology +1402.4615 Probability +1402.5653 +1403.0177 Classical Analysis and ODEs +1403.3029 Probability +1403.6759 Algebraic Topology +1404.3069 Quantum Algebra +1405.0065 Combinatorics +1405.4426 Probability +1405.6428 Functional Analysis +1405.6634 Probability +1405.6670 Combinatorics +1405.6919 Combinatorics +1406.0073 Computational Complexity +1406.1582 Logic +1406.1713 Algebraic Geometry +1407.3748 Probability +1407.6173 Phenomenology +1408.1464 +1408.1832 Mesoscale and Nanoscale Physics +1409.3179 Mesoscale and Nanoscale Physics +1409.3293 Complex Variables +1409.3435 +1409.4249 Functional Analysis +1409.6107 Dynamical Systems +1409.7885 Plasma Physics +1410.0711 Theory +1410.1234 Analysis of PDEs +1410.3420 Classical Analysis and ODEs +1410.5032 Probability +1410.7267 Experiment +1410.8350 Geometric Topology +1410.8436 Differential Geometry +1411.1552 Computation +1411.4399 Information Theory +1411.4599 +1411.5097 +1411.5536 Phenomenology +1412.2391 Information Theory +1412.3001 Combinatorics +1412.3257 Phenomenology +1412.6888 Number Theory +1412.7062 Computer Vision and Pattern Recognition +1412.7372 Mesoscale and Nanoscale Physics +1501.02509 Instrumentation and Methods for Astrophysics +1501.03205 Populations and Evolution +1501.06438 +1502.03507 Materials Science +1502.05025 Numerical Analysis +1502.08024 Mesoscale and Nanoscale Physics +1503.00022 Sound +1503.01570 Probability +1503.02673 Classical Analysis and ODEs +1503.03324 Logic in Computer Science +1503.05961 Combinatorics +1503.06049 Methodology +1503.06288 Algebraic Geometry +1503.07098 Dynamical Systems +1503.07107 Number Theory +1503.07581 +1504.01581 Combinatorics +1504.04279 Combinatorics +1504.05420 Strongly Correlated Electrons +1504.05435 +1504.07754 Astrophysics of Galaxies +1504.07968 Learning +1505.02417 Methodology +1505.03528 Cosmology and Nongalactic Astrophysics +1505.04364 Computer Vision and Pattern Recognition +1505.05878 +1505.05931 Spectral Theory +1506.00305 Mesoscale and Nanoscale Physics +1506.02489 Probability +1506.02538 Number Theory +1506.02766 Representation Theory +1506.03740 Classical Analysis and ODEs +1506.06148 Number Theory +1506.06229 Representation Theory +1506.07185 High Energy Astrophysical Phenomena +1506.07227 +1506.07654 Statistical Mechanics +1506.07805 +1507.00387 Networking and Internet Architecture +1507.00732 +1507.01483 Algebraic Geometry +1507.02708 Statistical Mechanics +1507.02981 Astrophysics of Galaxies +1507.03536 Complex Variables +1507.05224 Social and Information Networks +1507.05460 Instrumentation and Methods for Astrophysics +1507.05539 Logic in Computer Science +1507.05641 Superconductivity +1507.05690 Probability +1507.05748 Computational Physics +1507.05859 Number Theory +1507.06079 Computational Physics +1507.06339 Quantum Gases +1507.06440 Dynamical Systems +1507.07248 Exactly Solvable and Integrable Systems +1507.08287 Astrophysics of Galaxies +1508.00004 Solar and Stellar Astrophysics +1508.00404 Quantum Gases +1508.00535 Physics Education +1508.01134 Physics and Society +1508.01351 Applications +1508.01594 Biological Physics +1508.01616 Mesoscale and Nanoscale Physics +1508.01832 Materials Science +1508.01885 Soft Condensed Matter +1508.02317 Cosmology and Nongalactic Astrophysics +1508.02736 Materials Science +1508.03164 Solar and Stellar Astrophysics +1508.03655 Strongly Correlated Electrons +1508.04387 Logic +1508.04903 Logic +1508.05611 Optics +1508.05624 Physics and Society +1508.06834 Materials Science +1508.07469 Phenomenology +1508.07734 Functional Analysis +1508.07925 Plasma Physics +1509.00224 Physics and Society +1509.00640 Theory +1509.00747 Cosmology and Nongalactic Astrophysics +1509.00974 Chemical Physics +1509.01897 Algebraic Geometry +1509.03138 Optics +1509.04157 Cosmology and Nongalactic Astrophysics +1509.06268 Analysis of PDEs +1509.06561 High Energy Astrophysical Phenomena +1509.06736 Cosmology and Nongalactic Astrophysics +1509.06875 +1509.07886 Theory +1509.08218 Combinatorics +1509.08305 Information Theory +1509.09196 Physics and Society +1510.01168 Fluid Dynamics +1510.01293 +1510.01322 Phenomenology +1510.01328 Phenomenology +1510.01599 Artificial Intelligence +1510.01837 +1510.03702 Mesoscale and Nanoscale Physics +1510.04696 Astrophysics of Galaxies +1510.05390 Probability +1510.05404 Materials Science +1510.06220 Earth and Planetary Astrophysics +1510.06233 Rings and Algebras +1510.07447 Superconductivity +1510.07816 Strongly Correlated Electrons +1510.07941 +1510.08903 Analysis of PDEs +1510.08910 Optics +1510.09026 Data Analysis, Statistics and Probability +1511.00508 Instrumentation and Methods for Astrophysics +1511.00977 Quantum Gases +1511.01327 Materials Science +1511.01466 High Energy Astrophysical Phenomena +1511.01489 Strongly Correlated Electrons +1511.01865 Neural and Evolutionary Computing +1511.02225 Quantum Gases +1511.02470 Number Theory +1511.02931 Optics +1511.03084 Solar and Stellar Astrophysics +1511.03741 Instrumentation and Detectors +1511.04042 Theory +1511.04219 Optics +1511.04940 Materials Science +1511.05271 Physics and Society +1511.05468 Physics and Society +1511.05726 High Energy Astrophysical Phenomena +1511.05854 +1511.06063 Learning +1511.06338 Strongly Correlated Electrons +1511.06615 +1511.07287 Quantum Gases +1511.07675 Materials Science +1511.08140 Adaptation and Self-Organizing Systems +1511.08204 Solar and Stellar Astrophysics +1511.08424 Instrumentation and Methods for Astrophysics +1511.08765 Chemical Physics +1511.09377 Quantum Gases +1512.00010 Theory +1512.00151 Earth and Planetary Astrophysics +1512.00723 +1512.00910 Cosmology and Nongalactic Astrophysics +1512.00931 Strongly Correlated Electrons +1512.01197 Neurons and Cognition +1512.01887 Optics +1512.02080 Strongly Correlated Electrons +1512.02446 Astrophysics of Galaxies +1512.02562 Soft Condensed Matter +1512.02636 Astrophysics of Galaxies +1512.03139 Discrete Mathematics +1512.03774 +1512.04545 Phenomenology +1512.04550 Quantum Gases +1512.04566 +1512.04657 Phenomenology +1512.05148 Optics +1512.05610 Machine Learning +1512.05862 Chemical Physics +1512.06357 Phenomenology +1512.06734 Materials Science +1512.06990 Soft Condensed Matter +1512.07282 Analysis of PDEs +1512.07295 Cosmology and Nongalactic Astrophysics +1512.07537 Computational Geometry +1512.07630 Cosmology and Nongalactic Astrophysics +1512.07640 Quantum Gases +1512.07843 +1512.08352 Cosmology and Nongalactic Astrophysics +1512.08517 Atmospheric and Oceanic Physics +1512.08804 Quantum Gases +1512.08816 K-Theory and Homology +1512.09223 Phenomenology +1512.09346 +1601.00117 Instrumentation and Methods for Astrophysics +1601.00136 Theory +1601.00345 Soft Condensed Matter +1601.00686 Solar and Stellar Astrophysics +1601.00746 +1601.01212 +1601.01280 Computation and Language +1601.01309 Optics +1601.01324 +1601.01477 Mesoscale and Nanoscale Physics +1601.01553 Trading and Market Microstructure +1601.01637 Statistical Mechanics +1601.01776 Combinatorics +1601.01803 Solar and Stellar Astrophysics +1601.01883 Mesoscale and Nanoscale Physics +1601.02105 +1601.02669 +1601.03161 Phenomenology +1601.03238 +1601.03387 Cosmology and Nongalactic Astrophysics +1601.03624 Statistical Mechanics +1601.03760 Materials Science +1601.03880 Mesoscale and Nanoscale Physics +1601.04206 Statistical Mechanics +1601.05412 Theory +1601.05414 Strongly Correlated Electrons +1601.05425 Astrophysics of Galaxies +1601.05519 Molecular Networks +1601.05524 Strongly Correlated Electrons +1601.05983 History and Overview +1601.06787 High Energy Astrophysical Phenomena +1601.06816 +1601.06955 Instrumentation and Detectors +1601.07295 Metric Geometry +1601.07297 Mesoscale and Nanoscale Physics +1601.07332 Mesoscale and Nanoscale Physics +1601.07844 Earth and Planetary Astrophysics +1601.07845 Chemical Physics +1602.00325 Mesoscale and Nanoscale Physics +1602.00613 Atomic Physics +1602.00785 Disordered Systems and Neural Networks +1602.00809 Cosmology and Nongalactic Astrophysics +1602.01101 Theory +1602.01231 Phenomenology +1602.01785 Superconductivity +1602.02080 Solar and Stellar Astrophysics +1602.02182 Strongly Correlated Electrons +1602.02504 Software Engineering +1602.02731 Operator Algebras +1602.02793 Phenomenology +1602.02805 Strongly Correlated Electrons +1602.02917 Experiment +1602.03029 Mesoscale and Nanoscale Physics +1602.03243 Quantum Gases +1602.03351 Learning +1602.03509 +1602.03527 Astrophysics of Galaxies +1602.03558 Cosmology and Nongalactic Astrophysics +1602.03562 Cosmology and Nongalactic Astrophysics +1602.03787 Materials Science +1602.03953 Materials Science +1602.04198 Cosmology and Nongalactic Astrophysics +1602.04199 High Energy Astrophysical Phenomena +1602.04308 High Energy Astrophysical Phenomena +1602.04427 Computation and Language +1602.04554 High Energy Astrophysical Phenomena +1602.04827 Earth and Planetary Astrophysics +1602.04883 Solar and Stellar Astrophysics +1602.05192 Phenomenology +1602.05577 Mesoscale and Nanoscale Physics +1602.05791 Quantum Gases +1602.05794 Theory +1602.06024 Theory +1602.06290 Theory +1602.06299 Astrophysics of Galaxies +1602.06321 Solar and Stellar Astrophysics +1602.06400 +1602.06829 Materials Science +1602.07292 High Energy Astrophysical Phenomena +1602.07298 +1602.07698 High Energy Astrophysical Phenomena +1602.07815 Solar and Stellar Astrophysics +1602.08993 Theory +1602.09005 Solar and Stellar Astrophysics +1602.09015 Experiment +1602.09073 Mesoscale and Nanoscale Physics +1603.00185 High Energy Astrophysical Phenomena +1603.00347 Optimization and Control +1603.00500 Neurons and Cognition +1603.00620 Strongly Correlated Electrons +1603.00654 Theory +1603.00826 Theory +1603.00844 Mesoscale and Nanoscale Physics +1603.00897 Probability +1603.00925 High Energy Astrophysical Phenomena +1603.01023 Group Theory +1603.01103 Statistical Finance +1603.01275 Cosmology and Nongalactic Astrophysics +1603.01599 Cosmology and Nongalactic Astrophysics +1603.01618 Solar and Stellar Astrophysics +1603.01757 Materials Science +1603.02879 Superconductivity +1603.02886 Computational Physics +1603.03142 Instrumentation and Methods for Astrophysics +1603.03219 Differential Geometry +1603.03280 Materials Science +1603.03300 +1603.03668 +1603.03835 Phenomenology +1603.04022 Earth and Planetary Astrophysics +1603.04859 Phenomenology +1603.04880 High Energy Astrophysical Phenomena +1603.05425 Atomic Physics +1603.05580 High Energy Astrophysical Phenomena +1603.05653 Astrophysics of Galaxies +1603.05674 Solar and Stellar Astrophysics +1603.05776 +1603.05878 Quantum Gases +1603.05913 High Energy Astrophysical Phenomena +1603.05924 Atomic Physics +1603.06076 Computation and Language +1603.06333 Mesoscale and Nanoscale Physics +1603.06659 +1603.06695 Logic +1603.06733 High Energy Astrophysical Phenomena +1603.06895 Astrophysics of Galaxies +1603.06939 Solar and Stellar Astrophysics +1603.06945 Earth and Planetary Astrophysics +1603.07163 High Energy Astrophysical Phenomena +1603.07323 Learning +1603.07429 High Energy Astrophysical Phenomena +1603.07753 Astrophysics of Galaxies +1603.07942 Astrophysics of Galaxies +1603.07983 Solar and Stellar Astrophysics +1603.08626 Astrophysics of Galaxies +1603.08644 Solar and Stellar Astrophysics +1603.08734 Atomic Physics +1603.08985 Instrumentation and Methods for Astrophysics +1603.09073 Cosmology and Nongalactic Astrophysics +1603.09109 High Energy Astrophysical Phenomena +1603.09354 Phenomenology +1603.09367 Materials Science +1603.09427 Materials Science +1603.09566 Mesoscale and Nanoscale Physics +1603.09612 Earth and Planetary Astrophysics +1603.09699 Solar and Stellar Astrophysics +1604.00031 Instrumentation and Methods for Astrophysics +1604.00120 Quantum Gases +1604.00218 Materials Science +1604.00242 Statistical Mechanics +1604.00343 +1604.00382 +1604.00523 Astrophysics of Galaxies +1604.00544 Solar and Stellar Astrophysics +1604.00595 Theory +1604.00631 Atomic Physics +1604.01037 Earth and Planetary Astrophysics +1604.01177 Solar and Stellar Astrophysics +1604.01222 Atomic Physics +1604.01413 Earth and Planetary Astrophysics +1604.01487 Quantum Gases +1604.01614 Strongly Correlated Electrons +1604.01671 Solar and Stellar Astrophysics +1604.01744 Solar and Stellar Astrophysics +1604.01933 Materials Science +1604.01935 Solar and Stellar Astrophysics +1604.02076 Earth and Planetary Astrophysics +1604.02285 High Energy Astrophysical Phenomena +1604.02298 Mesoscale and Nanoscale Physics +1604.02341 Superconductivity +1604.02507 Astrophysics of Galaxies +1604.02680 Solar and Stellar Astrophysics +1604.02987 Astrophysics of Galaxies +1604.03086 Astrophysics of Galaxies +1604.03188 Astrophysics of Galaxies +1604.03444 Earth and Planetary Astrophysics +1604.03554 Astrophysics of Galaxies +1604.03586 Astrophysics of Galaxies +1604.03678 Earth and Planetary Astrophysics +1604.03886 Phenomenology +1604.03967 Astrophysics of Galaxies +1604.04027 Astrophysics of Galaxies +1604.04118 Solar and Stellar Astrophysics +1604.04127 Cosmology and Nongalactic Astrophysics +1604.04290 Astrophysics of Galaxies +1604.04346 High Energy Astrophysical Phenomena +1604.04476 Astrophysics of Galaxies +1604.04636 Solar and Stellar Astrophysics +1604.04651 Astrophysics of Galaxies +1604.04817 High Energy Astrophysical Phenomena +1604.04868 Astrophysics of Galaxies +1604.04982 Solar and Stellar Astrophysics +1604.05031 Astrophysics of Galaxies +1604.05121 Astrophysics of Galaxies +1604.05254 Superconductivity +1604.05300 +1604.05441 Solar and Stellar Astrophysics +1604.05691 Solar and Stellar Astrophysics +1604.05807 Astrophysics of Galaxies +1604.06107 Cosmology and Nongalactic Astrophysics +1604.06344 Solar and Stellar Astrophysics +1604.06494 Solar and Stellar Astrophysics +1604.06667 Instrumentation and Methods for Astrophysics +1604.06719 +1604.06779 High Energy Astrophysical Phenomena +1604.07362 Astrophysics of Galaxies +1604.07418 Solar and Stellar Astrophysics +1604.07433 Astrophysics of Galaxies +1604.07505 Cosmology and Nongalactic Astrophysics +1604.07655 Cosmology and Nongalactic Astrophysics +1604.07659 Solar and Stellar Astrophysics +1604.07706 Learning +1604.07798 Materials Science +1604.08126 Materials Science +1604.08831 Earth and Planetary Astrophysics +1605.00275 Mesoscale and Nanoscale Physics +1605.00405 Dynamical Systems +1605.01024 General Topology +1605.01731 Earth and Planetary Astrophysics +1605.01844 High Energy Astrophysical Phenomena +1605.01918 Solar and Stellar Astrophysics +1605.02058 +1605.02091 Solar and Stellar Astrophysics +1605.02562 Solar and Stellar Astrophysics +1605.02622 Solar and Stellar Astrophysics +1605.02724 Atmospheric and Oceanic Physics +1605.02812 Materials Science +1605.03050 Solar and Stellar Astrophysics +1605.03366 High Energy Astrophysical Phenomena +1605.03413 High Energy Astrophysical Phenomena +1605.03499 Statistical Mechanics +1605.03526 Materials Science +1605.03599 Astrophysics of Galaxies +1605.03691 +1605.03941 Earth and Planetary Astrophysics +1605.04102 Optics +1605.04133 Mesoscale and Nanoscale Physics +1605.04536 +1605.04834 Optics +1605.05078 Astrophysics of Galaxies +1605.05294 Earth and Planetary Astrophysics +1605.05434 Probability +1605.05618 Earth and Planetary Astrophysics +1605.05673 Materials Science +1605.05958 Superconductivity +1605.06283 Earth and Planetary Astrophysics +1605.06603 Atomic Physics +1605.06618 Probability +1605.06679 Combinatorics +1605.06708 Computer Vision and Pattern Recognition +1605.06749 Cosmology and Nongalactic Astrophysics +1605.06799 Computation and Language +1605.06805 Analysis of PDEs +1605.06839 Analysis of PDEs +1605.06877 Atomic Physics +1605.06934 Optics +1605.06935 Earth and Planetary Astrophysics +1605.06950 Machine Learning +1605.06977 Functional Analysis +1605.06994 Astrophysics of Galaxies +1605.07009 Optimization and Control +1605.07075 Experiment +1605.07210 Theory +1605.07352 Earth and Planetary Astrophysics +1605.07379 Astrophysics of Galaxies +1605.07638 High Energy Astrophysical Phenomena +1605.07979 Astrophysics of Galaxies +1605.08022 High Energy Astrophysical Phenomena +1605.08090 Solar and Stellar Astrophysics +1605.08238 Instrumentation and Methods for Astrophysics +1605.08246 High Energy Astrophysical Phenomena +1605.08634 Popular Physics +1605.09020 Molecular Networks +1605.09050 +1605.09054 +1605.09100 High Energy Astrophysical Phenomena +1605.09101 Methodology +1605.09239 Solar and Stellar Astrophysics +1605.09468 Solar and Stellar Astrophysics +1605.09670 Numerical Analysis +1605.09717 Atomic Physics +1606.00006 Astrophysics of Galaxies +1606.00013 Astrophysics of Galaxies +1606.00225 Solar and Stellar Astrophysics +1606.00366 Fluid Dynamics +1606.00406 Soft Condensed Matter +1606.00444 +1606.00780 Solar and Stellar Astrophysics +1606.00819 Computation and Language +1606.00845 +1606.00915 Computer Vision and Pattern Recognition +1606.00926 Plasma Physics +1606.01272 Biological Physics +1606.01387 Distributed, Parallel, and Cluster Computing +1606.01491 Probability +1606.01509 +1606.01520 High Energy Astrophysical Phenomena +1606.01584 Cryptography and Security +1606.01592 Information Theory +1606.01783 Combinatorics +1606.01890 Analysis of PDEs +1606.01897 Mesoscale and Nanoscale Physics +1606.01916 Combinatorics +1606.01918 General Physics +1606.01919 Physics Education +1606.01927 Disordered Systems and Neural Networks +1606.01928 Dynamical Systems +1606.01929 Numerical Analysis +1606.01931 Atomic Physics +1606.01935 Optimization and Control +1606.01937 Networking and Internet Architecture +1606.01939 Dynamical Systems +1606.01940 Classical Physics +1606.01941 Information Theory +1606.01942 Representation Theory +1606.01943 Information Theory +1606.01944 Probability +1606.01945 Phenomenology +1606.01949 Artificial Intelligence +1606.01950 Statistics Theory +1606.01951 Soft Condensed Matter +1606.01953 Networking and Internet Architecture +1606.01955 Algebraic Geometry +1606.01957 Databases +1606.01963 Atomic Physics +1606.01965 Networking and Internet Architecture +1606.01966 Distributed, Parallel, and Cluster Computing +1606.01969 Methodology +1606.01970 Dynamical Systems +1606.01971 Cryptography and Security +1606.01972 Distributed, Parallel, and Cluster Computing +1606.01975 Combinatorics +1606.01977 Algebraic Geometry +1606.01981 Neural and Evolutionary Computing +1606.01982 Rings and Algebras +1606.01985 Information Theory +1606.01986 Number Theory +1606.01990 Computation and Language +1606.01992 Optimization and Control +1606.01996 Atomic Physics +1606.01997 Mesoscale and Nanoscale Physics +1606.01998 Complex Variables +1606.02003 Computation and Language +1606.02007 Distributed, Parallel, and Cluster Computing +1606.02008 Classical Analysis and ODEs +1606.02009 Computer Vision and Pattern Recognition +1606.02012 Computation and Language +1606.02014 Probability +1606.02015 Data Structures and Algorithms +1606.02016 Software Engineering +1606.02017 Other Computer Science +1606.02018 Logic in Computer Science +1606.02019 Logic in Computer Science +1606.02020 Logic in Computer Science +1606.02021 Logic in Computer Science +1606.02022 Programming Languages +1606.02023 Logic in Computer Science +1606.02024 Logic in Computer Science +1606.02025 Software Engineering +1606.02026 Metric Geometry +1606.02028 Combinatorics +1606.02031 Computer Vision and Pattern Recognition +1606.02032 Artificial Intelligence +1606.02034 Algebraic Geometry +1606.02035 Optimization and Control +1606.02040 Functional Analysis +1606.02041 Artificial Intelligence +1606.02043 Mesoscale and Nanoscale Physics +1606.02045 General Finance +1606.02047 Materials Science +1606.02052 Instrumentation and Methods for Astrophysics +1606.02053 Numerical Analysis +1606.02054 Computation +1606.02055 Computational Geometry +1606.02056 Combinatorics +1606.02057 Analysis of PDEs +1606.02059 Commutative Algebra +1606.02060 Combinatorics +1606.02061 Statistical Mechanics +1606.02062 Solar and Stellar Astrophysics +1606.02065 Superconductivity +1606.02066 Optimization and Control +1606.02068 Theory +1606.02069 Strongly Correlated Electrons +1606.02070 Spectral Theory +1606.02071 Operator Algebras +1606.02072 Materials Science +1606.02074 Applications +1606.02077 Learning +1606.02081 Combinatorics +1606.02085 Rings and Algebras +1606.02088 Materials Science +1606.02092 Computer Vision and Pattern Recognition +1606.02094 Algebraic Geometry +1606.02096 Artificial Intelligence +1606.02097 Group Theory +1606.02098 Metric Geometry +1606.02103 Other Condensed Matter +1606.02105 Materials Science +1606.02106 Analysis of PDEs +1606.02107 Networking and Internet Architecture +1606.02109 Machine Learning +1606.02111 Robotics +1606.02112 Phenomenology +1606.02114 Fluid Dynamics +1606.02117 Number Theory +1606.02119 Software Engineering +1606.02122 Mesoscale and Nanoscale Physics +1606.02123 +1606.02125 Functional Analysis +1606.02127 Classical Physics +1606.02129 Classical Analysis and ODEs +1606.02131 Classical Physics +1606.02140 Complex Variables +1606.02141 Representation Theory +1606.02142 Computers and Society +1606.02143 Information Theory +1606.02146 Instrumentation and Detectors +1606.02147 Computer Vision and Pattern Recognition +1606.02154 Combinatorics +1606.02155 Metric Geometry +1606.02158 Analysis of PDEs +1606.02159 +1606.02161 Dynamical Systems +1606.02162 Data Structures and Algorithms +1606.02165 Numerical Analysis +1606.02167 Cell Behavior +1606.02169 Algebraic Geometry +1606.02170 Computer Vision and Pattern Recognition +1606.02172 Classical Physics +1606.02173 +1606.02174 Analysis of PDEs +1606.02175 Differential Geometry +1606.02177 Materials Science +1606.02180 Algebraic Geometry +1606.02184 Combinatorics +1606.02186 Applications +1606.02188 Atomic Physics +1606.02190 Optimization and Control +1606.02194 Optimization and Control +1606.02200 Mesoscale and Nanoscale Physics +1606.02205 Systems and Control +1606.02208 Databases +1606.02210 Computer Vision and Pattern Recognition +1606.02221 Artificial Intelligence +1606.02222 Combinatorics +1606.02223 Numerical Analysis +1606.02224 Optimization and Control +1606.02226 Probability +1606.02227 Group Theory +1606.02230 Networking and Internet Architecture +1606.02231 Artificial Intelligence +1606.02233 Computational Geometry +1606.02234 Methodology +1606.02235 Methodology +1606.02237 Databases +1606.02238 Group Theory +1606.02241 Superconductivity +1606.02242 Physics Education +1606.02247 Group Theory +1606.02248 General Physics +1606.02250 Databases +1606.02252 Quantitative Methods +1606.02254 Computer Vision and Pattern Recognition +1606.02255 Strongly Correlated Electrons +1606.02256 Materials Science +1606.02258 Probability +1606.02261 Machine Learning +1606.02263 +1606.02264 Combinatorics +1606.02267 Number Theory +1606.02274 Methodology +1606.02275 Learning +1606.02280 Computer Vision and Pattern Recognition +1606.02282 Algebraic Geometry +1606.02283 Physics and Society +1606.02284 Superconductivity +astro-ph/9301012 +astro-ph/9304018 +astro-ph/9307014 +astro-ph/9307015 +astro-ph/9308007 +astro-ph/9308040 +astro-ph/9309012 +astro-ph/9310045 +astro-ph/9311025 +astro-ph/9401029 +astro-ph/9401035 +astro-ph/9404056 +astro-ph/9405038 +astro-ph/9406048 +astro-ph/9407076 +astro-ph/9409062 +astro-ph/9410002 +astro-ph/9410047 +astro-ph/9501047 +astro-ph/9501060 +astro-ph/9501102 +astro-ph/9501108 +astro-ph/9502071 +astro-ph/9502099 +astro-ph/9503008 +astro-ph/9503022 +astro-ph/9503085 +astro-ph/9503101 +astro-ph/9503108 +astro-ph/9504088 +astro-ph/9504096 +astro-ph/9505048 +astro-ph/9505052 +astro-ph/9506039 +astro-ph/9506085 +astro-ph/9506089 +astro-ph/9507050 +astro-ph/9507061 +astro-ph/9507085 +astro-ph/9508009 +astro-ph/9508076 +astro-ph/9508079 +astro-ph/9508124 +astro-ph/9509096 +astro-ph/9509128 +astro-ph/9510016 +astro-ph/9510049 +astro-ph/9510148 +astro-ph/9511030 +astro-ph/9601084 +astro-ph/9601085 +astro-ph/9601086 +astro-ph/9601093 +astro-ph/9602008 +astro-ph/9602044 +astro-ph/9603031 +astro-ph/9604118 +astro-ph/9605062 +astro-ph/9605089 +astro-ph/9605130 +astro-ph/9605136 +astro-ph/9606015 +astro-ph/9606058 +astro-ph/9606067 +astro-ph/9607007 +astro-ph/9607056 +astro-ph/9608101 +astro-ph/9608142 +astro-ph/9608144 +astro-ph/9608147 +astro-ph/9609018 +astro-ph/9610097 +astro-ph/9610187 +astro-ph/9612060 +astro-ph/9612067 +astro-ph/9612073 +hep-th/0312158 Theory +0704.3672 General Mathematics +0805.1984 Mesoscale and Nanoscale Physics +1103.4250 Cosmology and Nongalactic Astrophysics +1108.5910 Complex Variables +1111.1690 Dynamical Systems +1111.3020 Algebraic Geometry +1201.3310 Discrete Mathematics +1202.3672 Logic +1202.4909 Number Theory +1203.0995 Algebraic Geometry +1207.0638 Combinatorics +1209.0170 Analysis of PDEs +1210.1244 Complex Variables +1211.1890 Number Theory +1301.1496 Risk Management +1302.2788 Data Structures and Algorithms +1303.3345 Classical Analysis and ODEs +1304.6693 Information Theory +1304.7626 Probability +1306.0056 Algebraic Topology +1307.7816 Quantum Algebra +1309.2050 Commutative Algebra +1310.2099 Algebraic Geometry +1310.3422 Numerical Analysis +1311.0549 Instrumentation and Methods for Astrophysics +1311.2355 Computational Complexity +1312.1609 Classical Analysis and ODEs +1401.7310 Popular Physics +1402.1135 Dynamical Systems +1402.1349 Machine Learning +1402.5506 Representation Theory +1402.5836 Machine Learning +1403.1309 Analysis of PDEs +1404.4329 +1404.5584 Computational Geometry +1405.2424 Discrete Mathematics +1405.5161 Algebraic Geometry +1405.7795 +1406.0281 Machine Learning +1406.4704 Computation +1407.0806 Representation Theory +1407.1970 +1407.2454 Fluid Dynamics +1407.3759 Logic +1407.6167 Soft Condensed Matter +1407.8428 Analysis of PDEs +1408.1477 +1408.3699 Logic +1408.5764 Representation Theory +1408.6497 Numerical Analysis +1408.6794 Symplectic Geometry +1409.0226 Differential Geometry +1409.3040 Learning +1409.5757 Mathematical Software +1409.6615 Superconductivity +1409.7838 Cosmology and Nongalactic Astrophysics +1409.7840 Cosmology and Nongalactic Astrophysics +1409.7996 Representation Theory +1409.8167 Dynamical Systems +1410.2087 Networking and Internet Architecture +1410.6379 Solar and Stellar Astrophysics +1411.3974 Cosmology and Nongalactic Astrophysics +1411.7801 Numerical Analysis +1412.0005 +1412.0212 Category Theory +1412.0464 Numerical Analysis +1412.0556 Optimization and Control +1412.5778 Number Theory +1412.5955 Subcellular Processes +1412.8537 Theory +1501.02377 Numerical Analysis +1501.02757 Mesoscale and Nanoscale Physics +1501.04577 Optics +1501.07800 Distributed, Parallel, and Cluster Computing +1502.00450 Probability +1502.00654 Solar and Stellar Astrophysics +1502.05092 Algebraic Topology +1503.05747 Functional Analysis +1503.06466 Information Theory +1504.00353 Information Theory +1504.00682 +1504.01355 Information Theory +1504.02852 Statistics Theory +1504.02931 Machine Learning +1504.06338 Mesoscale and Nanoscale Physics +1504.06839 Theory +1504.07697 Computational Complexity +1505.00317 Number Theory +1505.01459 Hardware Architecture +1505.03302 Classical Analysis and ODEs +1505.03878 Algebraic Geometry +1505.04269 Combinatorics +1505.04372 +1505.05252 Analysis of PDEs +1505.07036 Mesoscale and Nanoscale Physics +1506.00611 +1506.00623 Phenomenology +1506.01239 Probability +1506.02650 Classical Physics +1506.02659 Strongly Correlated Electrons +1506.02982 Soft Condensed Matter +1506.03374 Learning +1506.04073 Geometric Topology +1506.04646 Number Theory +1506.05665 Phenomenology +1506.05835 Dynamical Systems +1506.05868 Probability +1506.06191 Algebraic Geometry +1507.00326 Superconductivity +1507.01390 Neurons and Cognition +1507.02142 +1507.05341 Symplectic Geometry +1507.05795 Computational Engineering, Finance, and Science +1507.06217 Computational Geometry +1507.06738 Learning +1507.07778 Geometric Topology +1507.07848 Cryptography and Security +1507.08263 Optimization and Control +1508.01152 Theory +1508.02155 Mesoscale and Nanoscale Physics +1508.02232 Representation Theory +1508.07066 Software Engineering +1509.00976 Information Theory +1509.03939 Materials Science +1509.05205 Geometric Topology +1509.05983 Statistical Mechanics +1509.07491 +1509.07766 +1510.00113 +1510.00156 History and Philosophy of Physics +1510.00657 Combinatorics +1510.02594 Methodology +1510.02716 Group Theory +1510.03333 Strongly Correlated Electrons +1510.07224 Combinatorics +1510.07879 Optics +1510.08938 Dynamical Systems +1511.00224 Probability +1511.00545 Dynamical Systems +1511.01368 Logic in Computer Science +1511.02082 Number Theory +1511.03970 Soft Condensed Matter +1511.04500 Geometric Topology +1511.04503 Metric Geometry +1511.05066 Phenomenology +1511.05569 Strongly Correlated Electrons +1511.05871 Earth and Planetary Astrophysics +1511.06282 +1511.06509 Numerical Analysis +1511.06599 Pattern Formation and Solitons +1511.06633 Pattern Formation and Solitons +1511.06695 Statistical Mechanics +1511.09206 Soft Condensed Matter +1511.09220 +1512.00240 Mesoscale and Nanoscale Physics +1512.00549 Mesoscale and Nanoscale Physics +1512.01080 Dynamical Systems +1512.01513 Commutative Algebra +1512.02214 Materials Science +1512.03030 Strongly Correlated Electrons +1512.03407 Quantum Gases +1512.05058 Optimization and Control +1512.05677 Atomic Physics +1512.06463 Strongly Correlated Electrons +1512.07075 Methodology +1512.08293 Symplectic Geometry +1512.08435 Commutative Algebra +1512.08548 Classical Analysis and ODEs +1512.08905 +1512.09082 Theory +1512.09241 Phenomenology +1601.00229 Computational Finance +1601.01352 Mathematical Finance +1601.01633 Group Theory +1601.02261 Mesoscale and Nanoscale Physics +1601.02522 Data Structures and Algorithms +1601.03026 Quantum Gases +1601.03635 Phenomenology +1601.04043 General Finance +1601.04140 Theory +1601.05041 Symplectic Geometry +1601.05541 Phenomenology +1601.05785 Quantum Gases +1601.05856 Information Theory +1601.06048 Information Theory +1601.06294 Methodology +1601.06521 Logic in Computer Science +1601.06684 Information Theory +1601.06980 Adaptation and Self-Organizing Systems +1601.08078 Subcellular Processes +1602.00376 Information Theory +1602.00859 Physics and Society +1602.01124 Optimization and Control +1602.02489 Chaotic Dynamics +1602.03250 Quantum Algebra +1602.03542 Symplectic Geometry +1602.03772 +1602.04097 Number Theory +1602.04229 Information Theory +1602.04274 Discrete Mathematics +1602.04616 Statistical Mechanics +1602.04955 Computational Complexity +1602.05679 Mesoscale and Nanoscale Physics +1602.05867 Mesoscale and Nanoscale Physics +1602.06030 Computation +1602.06143 Phenomenology +1602.06221 Logic in Computer Science +1602.06902 Information Theory +1602.06981 Tissues and Organs +1602.07406 Dynamical Systems +1602.07509 Logic +1602.08483 Strongly Correlated Electrons +1602.08590 Methodology +1602.08886 Learning +1602.09018 High Energy Astrophysical Phenomena +1603.00011 Commutative Algebra +1603.00850 Economics +1603.01191 Discrete Mathematics +1603.01385 High Energy Astrophysical Phenomena +1603.02551 Statistical Mechanics +1603.03041 Strongly Correlated Electrons +1603.03228 Combinatorics +1603.03293 Data Analysis, Statistics and Probability +1603.03705 Probability +1603.04603 +1603.04885 Strongly Correlated Electrons +1603.05696 Atomic Physics +1603.05848 Statistical Mechanics +1603.05921 Materials Science +1603.06376 Other Condensed Matter +1603.06462 Statistics Theory +1603.07058 Differential Geometry +1603.07214 Probability +1603.07550 Mesoscale and Nanoscale Physics +1603.07998 Computer Vision and Pattern Recognition +1603.08011 High Energy Astrophysical Phenomena +1603.08339 Optics +1603.08669 Materials Science +1603.08670 Instrumentation and Methods for Astrophysics +1603.09250 Number Theory +1603.09711 Physics and Society +1604.01008 Phenomenology +1604.01052 Quantum Gases +1604.02131 Materials Science +1604.02443 Number Theory +1604.02857 +1604.03072 Data Structures and Algorithms +1604.03109 Cosmology and Nongalactic Astrophysics +1604.03478 Fluid Dynamics +1604.03838 Soft Condensed Matter +1604.03969 Fluid Dynamics +1604.04552 Phenomenology +1604.04795 Artificial Intelligence +1604.04827 Digital Libraries +1604.04934 Differential Geometry +1604.05635 Theory +1604.05732 +1604.06102 Astrophysics of Galaxies +1604.06135 Combinatorics +1604.06286 Rings and Algebras +1604.07581 Data Structures and Algorithms +1604.08077 +1604.08473 Functional Analysis +1604.08928 Plasma Physics +1605.00474 Cryptography and Security +1605.00726 Dynamical Systems +1605.00896 Strongly Correlated Electrons +1605.02770 Astrophysics of Galaxies +1605.03817 Computers and Society +1605.04609 Discrete Mathematics +1605.05805 Strongly Correlated Electrons +1605.06039 Theory +1605.06534 +1605.06571 Astrophysics of Galaxies +1605.07334 Learning +1605.08877 +1605.09237 Computational Physics +1606.00183 Rings and Algebras +1606.00238 Commutative Algebra +1606.00418 Combinatorics +1606.00448 Astrophysics of Galaxies +1606.01086 Materials Science +1606.01226 Theory +1606.01345 Algebraic Geometry +1606.01400 Programming Languages +1606.01733 +1606.01788 Statistical Mechanics +1606.01823 Statistical Mechanics +1606.02725 Algebraic Geometry +1606.02824 Theory +1606.03075 +1606.03651 Probability +1606.04325 Analysis of PDEs +1606.04626 Differential Geometry +1606.04999 Category Theory +1606.05791 +1606.06412 Combinatorics +1606.06737 Disordered Systems and Neural Networks +1606.06990 +1606.07304 +1606.07400 Materials Science +1606.07552 Mesoscale and Nanoscale Physics +1606.07854 Strongly Correlated Electrons +1606.08111 Differential Geometry +1606.08299 Emerging Technologies +1606.08327 Number Theory +1606.08330 Phenomenology +1606.08467 Complex Variables +1606.08483 +1606.08656 Symplectic Geometry +1606.09171 +1606.09270 Robotics +1606.09336 Phenomenology +1606.09590 +1606.09624 Solar and Stellar Astrophysics +1607.00148 Artificial Intelligence +1607.00476 Discrete Mathematics +1607.01212 Phenomenology +1607.01319 Algebraic Geometry +1607.01393 Astrophysics of Galaxies +1607.01705 +1607.01981 Machine Learning +1607.01997 Numerical Analysis +1607.02196 Computer Vision and Pattern Recognition +1607.02340 Analysis of PDEs +1607.02355 Computation and Language +1607.02409 Analysis of PDEs +1607.02443 Instrumentation and Methods for Astrophysics +1607.02505 Materials Science +1607.02515 Cosmology and Nongalactic Astrophysics +1607.02516 Methodology +1607.02522 Optimization and Control +1607.02524 Information Theory +1607.02527 Phenomenology +1607.02528 Soft Condensed Matter +1607.02534 Analysis of PDEs +1607.02535 Learning +1607.02536 Optimization and Control +1607.02544 Algebraic Geometry +1607.02546 Cosmology and Nongalactic Astrophysics +1607.02547 Computer Vision and Pattern Recognition +1607.02550 Mesoscale and Nanoscale Physics +1607.02553 Mesoscale and Nanoscale Physics +1607.02556 Computer Vision and Pattern Recognition +1607.02557 Dynamical Systems +1607.02559 Learning +1607.02560 Numerical Analysis +1607.02563 Probability +1607.02568 Computer Vision and Pattern Recognition +1607.02569 Materials Science +1607.02571 Classical Analysis and ODEs +1607.02572 Phenomenology +1607.02573 Computational Engineering, Finance, and Science +1607.02574 Physics and Society +1607.02581 Populations and Evolution +1607.02582 Astrophysics of Galaxies +1607.02583 Analysis of PDEs +1607.02584 Numerical Analysis +1607.02586 Computer Vision and Pattern Recognition +1607.02588 Physics and Society +1607.02590 Rings and Algebras +1607.02591 Rings and Algebras +1607.02592 Materials Science +1607.02596 Cosmology and Nongalactic Astrophysics +1607.02598 Computer Science and Game Theory +1607.02603 Spectral Theory +1607.02605 Atomic Physics +1607.02608 Analysis of PDEs +1607.02611 Classical Analysis and ODEs +1607.02612 Mesoscale and Nanoscale Physics +1607.02613 Information Theory +1607.02614 Number Theory +1607.02618 Combinatorics +1607.02620 Classical Analysis and ODEs +1607.02621 Differential Geometry +1607.02622 Classical Analysis and ODEs +1607.02623 Statistics Theory +1607.02624 Optimization and Control +1607.02627 Materials Science +1607.02630 Statistics Theory +1607.02632 Robotics +1607.02634 Analysis of PDEs +1607.02635 High Energy Astrophysical Phenomena +1607.02636 Functional Analysis +1607.02637 Discrete Mathematics +1607.02639 +1607.02640 Materials Science +1607.02641 Information Retrieval +1607.02642 Molecular Networks +1607.02643 Computer Vision and Pattern Recognition +1607.02644 Dynamical Systems +1607.02645 Atmospheric and Oceanic Physics +1607.02646 Distributed, Parallel, and Cluster Computing +1607.02649 Information Theory +1607.02651 Mesoscale and Nanoscale Physics +1607.02652 Human-Computer Interaction +1607.02655 Methodology +1607.02657 Disordered Systems and Neural Networks +1607.02660 Human-Computer Interaction +1607.02661 K-Theory and Homology +1607.02665 Learning +1607.02668 Information Theory +1607.02669 Databases +1607.02670 Machine Learning +1607.02674 Information Theory +1607.02676 Machine Learning +1607.02677 Information Theory +1607.02678 Computer Vision and Pattern Recognition +1607.02680 Dynamical Systems +1607.02681 Information Theory +1607.02682 Databases +1607.02684 Differential Geometry +1607.02689 Statistics Theory +1607.02690 Theory +1607.02691 +1607.02692 +1607.02694 Logic in Computer Science +1607.02698 +1607.02702 Algebraic Topology +1607.02705 Learning +1607.02709 Mesoscale and Nanoscale Physics +1607.02712 Materials Science +1607.02713 Representation Theory +1607.02714 Social and Information Networks +1607.02717 Neural and Evolutionary Computing +1607.02719 Rings and Algebras +1607.02721 Materials Science +1607.02723 Analysis of PDEs +1607.02725 Data Structures and Algorithms +1607.02727 Statistics Theory +1607.02730 Fluid Dynamics +1607.02732 Analysis of PDEs +1607.02734 Distributed, Parallel, and Cluster Computing +1607.02735 Applications +1607.02736 +1607.02738 Machine Learning +1607.02739 +1607.02741 Differential Geometry +1607.02742 +1607.02744 Systems and Control +1607.02746 Dynamical Systems +1607.02751 Phenomenology +1607.02754 Information Retrieval +1607.02755 Complex Variables +1607.02758 Computation +1607.02760 Systems and Control +1607.02762 Complex Variables +1607.02763 Artificial Intelligence +1607.02766 Information Theory +1607.02767 Optimization and Control +1607.02769 Computer Vision and Pattern Recognition +1607.02770 Computational Geometry +1607.02774 Experiment +1607.02777 Earth and Planetary Astrophysics +1607.02780 Chemical Physics +1607.02782 Optics +1607.02784 Computation and Language +1607.02786 Category Theory +1607.02788 Computation +1607.02789 Computation and Language +1607.02790 Logic in Computer Science +1607.02791 Computation and Language +1607.02792 Combinatorics +1607.02795 Atmospheric and Oceanic Physics +1607.02800 Dynamical Systems +1607.02802 Computation and Language +1607.02803 Representation Theory +1607.02805 Cryptography and Security +1607.02808 Materials Science +1607.02809 Information Theory +1607.02815 Computer Vision and Pattern Recognition +1607.02816 Accelerator Physics +1607.02822 Information Theory +1607.02824 +1607.02825 Algebraic Topology +1607.02826 Accelerator Physics +1607.02828 Biological Physics +1607.02829 Computer Vision and Pattern Recognition +1607.02833 Statistics Theory +1607.02835 Mathematical Software +1607.02836 Analysis of PDEs +1607.02838 Optics +1607.02840 Mesoscale and Nanoscale Physics +1607.02841 Physics and Society +1607.02842 Optimization and Control +1607.02843 Theory +1607.02845 +1607.02846 Dynamical Systems +1607.02847 Operator Algebras +1607.02853 Superconductivity +1607.02854 Strongly Correlated Electrons +1607.02855 Complex Variables +1607.02857 Neural and Evolutionary Computing +1607.02858 Learning +1607.02862 Analysis of PDEs +1607.02863 Number Theory +1607.02867 Robotics +1607.02868 Accelerator Physics +1607.02870 Space Physics +1607.02871 +1607.02873 Algebraic Geometry +1607.02877 Theory +1607.02878 Optimization and Control +1607.02880 Logic +1607.02883 Methodology +1607.02886 Superconductivity +1607.02887 Representation Theory +1607.02889 +1607.02890 Theory +1607.02893 Systems and Control +1607.02895 Systems and Control +1607.02897 Physics and Society +1607.02901 Superconductivity +1607.02902 Programming Languages +1607.02904 Computational Engineering, Finance, and Science +1607.02906 Mesoscale and Nanoscale Physics +1607.02907 Differential Geometry +1607.02909 +1607.02910 Number Theory +1607.02911 Data Structures and Algorithms +1607.02914 Information Theory +1607.02915 History and Philosophy of Physics +1607.02916 Classical Physics +1607.02917 Computer Science and Game Theory +1607.02918 Optics +1607.02922 Combinatorics +1607.02923 Differential Geometry +1607.02925 Information Theory +1607.02927 Programming Languages +1607.02928 Accelerator Physics +1607.02929 +1607.02930 Phenomenology +1607.02934 +1607.02935 Strongly Correlated Electrons +1607.02936 Computer Vision and Pattern Recognition +1607.02942 Physics Education +1607.02943 Dynamical Systems +1607.02945 Combinatorics +1607.02946 Physics Education +1607.02949 Mesoscale and Nanoscale Physics +1607.02952 Social and Information Networks +1607.02953 Logic +1607.02955 Data Structures and Algorithms +1607.02956 Number Theory +1607.02957 Applications +1607.02960 +1607.02962 Probability +1607.02963 Multiagent Systems +1607.02964 Cosmology and Nongalactic Astrophysics +1607.02966 Systems and Control +1607.02968 Soft Condensed Matter +1607.02972 Classical Analysis and ODEs +1607.02980 Atmospheric and Oceanic Physics +1607.02986 Computational Complexity +1607.02987 +1607.02989 Theory +1607.02990 Analysis of PDEs +1607.02991 +1607.02993 Methodology +1607.02995 Algebraic Geometry +1607.02997 Theory +1607.02998 Probability +1607.03000 Astrophysics of Galaxies +1607.03001 +1607.03002 Earth and Planetary Astrophysics +1607.03004 Differential Geometry +1607.03007 Number Theory +1607.03010 Group Theory +1607.03011 General Physics +1607.03013 Optimization and Control +1607.03014 Metric Geometry +1607.03015 Combinatorics +1607.03018 Combinatorics +1607.03021 Computer Vision and Pattern Recognition +1607.03022 Dynamical Systems +1607.03026 Machine Learning +1607.03027 Number Theory +1607.03029 Earth and Planetary Astrophysics +1607.03031 Pattern Formation and Solitons +1607.03033 Functional Analysis +1607.03034 Instrumentation and Methods for Astrophysics +1607.03036 Probability +1607.03037 Materials Science +1607.03043 Group Theory +1607.03044 +1607.03050 Learning +1607.03051 Instrumentation and Methods for Astrophysics +1607.03053 Theory +1607.03055 Computation and Language +1607.03056 Dynamical Systems +1607.03057 Social and Information Networks +1607.03062 Mesoscale and Nanoscale Physics +1607.03064 Number Theory +1607.03065 Phenomenology +1607.03067 Mesoscale and Nanoscale Physics +1607.03068 Logic +1607.03072 +1607.03073 Differential Geometry +1607.03074 Probability +1607.03080 Methodology +1607.03081 Numerical Analysis +1607.03082 Probability +1607.03086 Probability +1607.03088 Superconductivity +1607.03089 Differential Geometry +1607.03092 Numerical Analysis +1607.03094 Algebraic Geometry +1607.03096 Probability +1607.03097 Number Theory +cond-mat/0008097 +cond-mat/9302033 +0710.4589 Probability +0711.4317 Number Theory +0908.1649 Optimization and Control +1001.4683 Differential Geometry +1003.3029 Geometric Topology +1006.2771 Cosmology and Nongalactic Astrophysics +1008.2017 Differential Geometry +1008.4495 Group Theory +1110.2077 +1205.2180 General Mathematics +1205.6082 Computational Geometry +1208.5600 Computation +1209.4154 Fluid Dynamics +1210.3021 General Physics +1302.5387 Spectral Theory +1305.5797 Probability +1308.1883 Computation +1308.2128 Dynamical Systems +1310.7697 Numerical Analysis +1310.7863 Differential Geometry +1311.6323 Analysis of PDEs +1312.1724 Combinatorics +1312.4166 High Energy Astrophysical Phenomena +1401.7800 Rings and Algebras +1403.2660 Statistics Theory +1404.2750 Computer Science and Game Theory +1404.3740 Quantum Gases +1404.6677 Probability +1405.1158 Representation Theory +1405.4563 Symplectic Geometry +1406.1404 Databases +1410.0072 Algebraic Geometry +1410.1520 +1410.3076 Analysis of PDEs +1410.5169 Computational Complexity +1410.7120 K-Theory and Homology +1411.1493 +1411.3327 Mesoscale and Nanoscale Physics +1411.4921 +1412.3186 +1412.4338 Probability +1412.6565 Optimization and Control +1501.02601 Cryptography and Security +1501.07585 Classical Analysis and ODEs +1502.00477 Phenomenology +1502.00755 Representation Theory +1503.03258 Neurons and Cognition +1503.07614 Symplectic Geometry +1503.09054 +1504.00866 Instrumentation and Methods for Astrophysics +1504.01079 Computation +1505.00933 High Energy Astrophysical Phenomena +1505.02969 Solar and Stellar Astrophysics +1505.03003 Superconductivity +1505.03472 Optics +1505.03492 +1505.05405 Information Theory +1505.06329 Materials Science +1505.06415 Phenomenology +1506.01692 Analysis of PDEs +1506.02861 Quantum Gases +1506.04538 +1506.06620 +1506.06703 Number Theory +1507.00926 Classical Analysis and ODEs +1507.01707 Probability +1507.02083 Physics Education +1507.02635 Materials Science +1507.02734 General Physics +1507.03532 Instrumentation and Methods for Astrophysics +1507.05746 Networking and Internet Architecture +1507.07743 Phenomenology +1507.07988 Exactly Solvable and Integrable Systems +1508.00248 +1508.02045 Computational Physics +1508.02154 Soft Condensed Matter +1508.04344 Dynamical Systems +1508.05701 Mesoscale and Nanoscale Physics +1508.05976 Algebraic Geometry +1508.05977 Information Theory +1508.07511 Methodology +1509.00302 Probability +1509.00807 Probability +1509.00861 Materials Science +1509.01817 Statistics Theory +1509.06564 Operator Algebras +1509.07118 Phenomenology +1509.07297 Superconductivity +1510.02702 Methodology +1510.04123 +1510.04254 Fluid Dynamics +1510.04985 Quantum Gases +1510.06815 Phenomenology +1510.06852 Methodology +1510.07737 Strongly Correlated Electrons +1510.07969 Strongly Correlated Electrons +1511.01015 Phenomenology +1511.02425 Information Theory +1511.03319 Materials Science +1511.03328 Computer Vision and Pattern Recognition +1511.03339 Computer Vision and Pattern Recognition +1511.03828 Combinatorics +1511.03870 Group Theory +1511.04923 Probability +1511.05864 Machine Learning +1511.06393 Learning +1511.06411 Learning +1511.08382 +1511.09307 Instrumentation and Methods for Astrophysics +1512.01291 Phenomenology +1512.02056 Materials Science +1512.03685 Cryptography and Security +1512.04527 Astrophysics of Galaxies +1512.06038 Genomics +1512.06562 Phenomenology +1512.06715 Phenomenology +1512.07247 Classical Analysis and ODEs +1512.07756 Solar and Stellar Astrophysics +1512.08917 Instrumentation and Methods for Astrophysics +1601.00009 Applications +1601.00415 Materials Science +1601.02637 Statistical Mechanics +1601.02726 Superconductivity +1601.02861 +1601.03106 +1601.03609 Functional Analysis +1601.04277 Lattice +1601.04311 Group Theory +1601.04324 Mesoscale and Nanoscale Physics +1601.04519 +1601.07386 Cosmology and Nongalactic Astrophysics +1601.07427 Optics +1601.08218 Theory +1602.00128 Plasma Physics +1602.00547 Systems and Control +1602.00620 +1602.00860 Cryptography and Security +1602.01333 Theory +1602.01515 K-Theory and Homology +1602.03090 Statistics Theory +1602.03476 Information Theory +1602.03546 Superconductivity +1602.03666 Solar and Stellar Astrophysics +1602.05625 Analysis of PDEs +1602.07726 Data Structures and Algorithms +1602.08126 Phenomenology +1602.08252 Other Condensed Matter +1603.00466 Solar and Stellar Astrophysics +1603.00562 Computer Science and Game Theory +1603.01758 Logic in Computer Science +1603.02145 Phenomenology +1603.02160 Machine Learning +1603.03334 Strongly Correlated Electrons +1603.04446 Mesoscale and Nanoscale Physics +1603.05741 Materials Science +1603.06458 Lattice +1603.07177 Strongly Correlated Electrons +1603.07338 +1603.08160 Chemical Physics +1603.08645 +1603.08925 Theory +1603.08938 Quantum Algebra +1603.09134 Solar and Stellar Astrophysics +1603.09202 Experiment +1604.00971 Data Analysis, Statistics and Probability +1604.02174 General Mathematics +1604.02899 Instrumentation and Detectors +1604.03038 History and Philosophy of Physics +1604.03812 Experiment +1604.03896 Experiment +1604.04481 Number Theory +1604.05109 Computational Physics +1604.05295 Statistical Mechanics +1604.07477 Rings and Algebras +1604.07617 +1604.07832 Astrophysics of Galaxies +1605.00642 Instrumentation and Detectors +1605.01133 Learning +1605.01709 +1605.02177 Numerical Analysis +1605.02437 Spectral Theory +1605.02526 +1605.02783 Computer Vision and Pattern Recognition +1605.03510 Analysis of PDEs +1605.04193 Spectral Theory +1605.04556 Representation Theory +1605.04616 Analysis of PDEs +1605.06166 Theory +1605.06664 Combinatorics +1605.07263 Number Theory +1605.07329 Networking and Internet Architecture +1605.07669 Computation and Language +1605.07713 Analysis of PDEs +1605.08178 Strongly Correlated Electrons +1605.08517 Physics and Society +1605.08767 Probability +1605.09669 Optimization and Control +1605.09766 Representation Theory +1605.09771 Cryptography and Security +1605.09786 Phenomenology +1606.00002 Optimization and Control +1606.00079 Soft Condensed Matter +1606.00111 Operating Systems +1606.00139 Category Theory +1606.00293 Dynamical Systems +1606.00297 Dynamical Systems +1606.00308 Functional Analysis +1606.00428 General Mathematics +1606.00451 Methodology +1606.00456 +1606.00460 Materials Science +1606.00462 Computers and Society +1606.00463 Cell Behavior +1606.00467 Emerging Technologies +1606.00470 Emerging Technologies +1606.00472 Analysis of PDEs +1606.00473 Classical Physics +1606.00474 Computer Vision and Pattern Recognition +1606.00475 Applications +1606.00478 Information Theory +1606.00479 Geometric Topology +1606.00480 Databases +1606.00481 Geometric Topology +1606.00483 Optics +1606.00486 Geometric Topology +1606.00496 Artificial Intelligence +1606.00497 Methodology +1606.00502 Software Engineering +1606.00503 Software Engineering +1606.00504 Software Engineering +1606.00505 Software Engineering +1606.00506 Logic in Computer Science +1606.00507 Algebraic Geometry +1606.00510 Probability +1606.00514 Atomic Physics +1606.00518 Physics Education +1606.00519 Distributed, Parallel, and Cluster Computing +1606.00521 Software Engineering +1606.00522 Mesoscale and Nanoscale Physics +1606.00523 Phenomenology +1606.00525 Probability +1606.00527 Dynamical Systems +1606.00531 Information Theory +1606.00532 Soft Condensed Matter +1606.00533 Optics +1606.00534 Networking and Internet Architecture +1606.00535 Cell Behavior +1606.00537 +1606.00538 Robotics +1606.00540 Neural and Evolutionary Computing +1606.00541 Mathematical Software +1606.00543 Differential Geometry +1606.00545 Mathematical Software +1606.00546 Applications +1606.00548 Computational Engineering, Finance, and Science +1606.00549 Algebraic Geometry +1606.00552 Commutative Algebra +1606.00555 Analysis of PDEs +1606.00561 Software Engineering +1606.00563 Group Theory +1606.00570 +1606.00575 Distributed, Parallel, and Cluster Computing +1606.00581 Data Structures and Algorithms +1606.00583 Methodology +1606.00584 Dynamical Systems +1606.00585 Software Engineering +1606.00587 Space Physics +1606.00589 Computation and Language +1606.00591 Numerical Analysis +1606.00592 +1606.00597 Numerical Analysis +1606.00600 Robotics +1606.00601 Neural and Evolutionary Computing +1606.00603 +1606.00610 Symplectic Geometry +1606.00612 Solar and Stellar Astrophysics +1606.00616 Dynamical Systems +1606.00619 Algebraic Geometry +1606.00620 Biological Physics +1606.00623 Information Theory +1606.00624 Algebraic Topology +1606.00625 Computer Vision and Pattern Recognition +1606.00626 Artificial Intelligence +1606.00627 Solar and Stellar Astrophysics +1606.00629 Cryptography and Security +1606.00630 Probability +1606.00631 Mathematical Finance +1606.00632 Populations and Evolution +1606.00635 Group Theory +1606.00636 Biomolecules +1606.00637 Distributed, Parallel, and Cluster Computing +1606.00642 Theory +1606.00648 Numerical Analysis +1606.00649 Instrumentation and Detectors +1606.00651 Spectral Theory +1606.00652 Artificial Intelligence +1606.00653 Statistical Mechanics +1606.00655 Fluid Dynamics +1606.00658 Soft Condensed Matter +1606.00666 Combinatorics +1606.00667 Geometric Topology +1606.00671 Analysis of PDEs +1606.00673 Phenomenology +1606.00680 Number Theory +1606.00681 High Energy Astrophysical Phenomena +1606.00682 Information Theory +1606.00683 Biological Physics +1606.00686 +1606.00692 Data Analysis, Statistics and Probability +1606.00697 Combinatorics +1606.00699 +1606.00702 +1606.00705 Analysis of PDEs +1606.00706 Number Theory +1606.00708 Theory +1606.00709 Machine Learning +1606.00713 +1606.00716 Dynamical Systems +1606.00717 Networking and Internet Architecture +1606.00720 Machine Learning +1606.00726 Data Structures and Algorithms +1606.00728 Complex Variables +1606.00731 Phenomenology +1606.00732 Analysis of PDEs +1606.00734 Atomic Physics +1606.00738 Functional Analysis +1606.00740 Databases +1606.00741 Probability +1606.00744 Computers and Society +1606.00745 Computers and Society +1606.00746 Computers and Society +1606.00747 Computers and Society +1606.00748 Computers and Society +1606.00749 Computers and Society +1606.00750 Computers and Society +1606.00751 Computers and Society +1606.00752 Computers and Society +1606.00754 Phenomenology +1606.00760 Number Theory +1606.00765 Accelerator Physics +1606.00767 Instrumentation and Methods for Astrophysics +1606.00770 Numerical Analysis +1606.00772 Group Theory +1606.00774 Differential Geometry +1606.00781 Algebraic Geometry +1606.00782 Geometric Topology +1606.00786 Genomics +1606.00787 Machine Learning +1606.00789 Algebraic Geometry +1606.00790 Rings and Algebras +1606.00792 Theory +1606.00794 Phenomenology +1606.00795 Biomolecules +1606.00799 Multiagent Systems +1606.00801 Classical Analysis and ODEs +1606.00803 Numerical Analysis +1606.00804 Emerging Technologies +1606.00806 Differential Geometry +1606.00807 Numerical Analysis +1606.00808 Operator Algebras +1606.00809 +1606.00811 +1606.00812 Methodology +1606.00813 Machine Learning +1606.00814 Commutative Algebra +1606.00815 Information Theory +1606.00820 Materials Science +1606.00822 Computer Vision and Pattern Recognition +1606.00826 Operator Algebras +1606.00827 Accelerator Physics +1606.00828 Commutative Algebra +1606.00829 Probability +1606.00832 Machine Learning +0710.1575 Other Condensed Matter +0905.0199 Analysis of PDEs +0909.3131 Information Theory +1003.0128 Analysis of PDEs +1011.3985 Information Theory +1012.0502 Group Theory +1012.0540 Representation Theory +1105.2719 Analysis of PDEs +1108.0328 Dynamical Systems +1110.5589 Analysis of PDEs +1111.0609 Geometric Topology +1111.2642 Combinatorics +1111.5105 Numerical Analysis +1112.1993 General Topology +1201.6620 Differential Geometry +1202.4027 Spectral Theory +1203.4032 Numerical Analysis +1204.1486 Classical Physics +1204.5513 Adaptation and Self-Organizing Systems +1205.2837 Earth and Planetary Astrophysics +1205.3236 Optimization and Control +1206.2686 Numerical Analysis +1208.1352 Analysis of PDEs +1208.4476 Solar and Stellar Astrophysics +1210.2264 +1210.4747 Number Theory +1210.5912 Cryptography and Security +1211.4668 Analysis of PDEs +1212.0185 Geometric Topology +1301.4279 Commutative Algebra +1302.3811 Combinatorics +1303.1793 Soft Condensed Matter +1304.0916 Instrumentation and Detectors +1304.2795 Other Condensed Matter +1304.3164 Superconductivity +1304.4921 Combinatorics +1305.3370 Differential Geometry +1306.6941 Algebraic Topology +1307.3131 Differential Geometry +1307.5141 +1307.5279 Combinatorics +1307.5509 Combinatorics +1308.0801 Algebraic Topology +1309.3625 Combinatorics +1309.3896 Dynamical Systems +1309.5155 Combinatorics +1310.6487 Phenomenology +1310.7202 Numerical Analysis +1310.7476 Commutative Algebra +1310.8622 Logic +1311.7340 Classical Analysis and ODEs +1311.7683 Computer Science and Game Theory +1312.0963 Algebraic Geometry +1312.1408 Statistical Mechanics +1312.4763 Other Condensed Matter +1401.0818 Information Theory +1402.0451 Cell Behavior +1402.0904 Functional Analysis +1402.2408 Differential Geometry +1402.4960 Classical Analysis and ODEs +1402.6260 Numerical Analysis +1403.3935 Exactly Solvable and Integrable Systems +1403.4080 +1403.7327 Phenomenology +1403.7355 Analysis of PDEs +1404.1311 Hardware Architecture +1404.2216 Classical Analysis and ODEs +1404.2414 Logic +1404.5569 Data Structures and Algorithms +1404.6686 General Topology +1404.6751 Metric Geometry +1405.0627 Physics and Society +1405.3392 Solar and Stellar Astrophysics +1405.6373 Analysis of PDEs +1405.7289 Materials Science +1405.7805 Category Theory +1406.3415 Combinatorics +1406.5108 Information Theory +1406.5337 Lattice +1407.0969 Operator Algebras +1407.5019 Disordered Systems and Neural Networks +1407.5176 Disordered Systems and Neural Networks +1408.2725 Disordered Systems and Neural Networks +1408.4464 Differential Geometry +1408.4610 Fluid Dynamics +1408.4723 Analysis of PDEs +1408.4970 Fluid Dynamics +1408.5638 Fluid Dynamics +1408.6341 Analysis of PDEs +1408.6501 Populations and Evolution +1409.1301 Phenomenology +1409.3187 Theory +1409.4235 +1409.4453 Statistical Mechanics +1409.6469 Fluid Dynamics +1409.8030 Physics and Society +1409.8242 Cosmology and Nongalactic Astrophysics +1409.8447 Algebraic Geometry +1410.3795 Quantum Gases +1410.5159 Functional Analysis +1410.6976 Social and Information Networks +1410.7041 Information Theory +1410.7424 Data Analysis, Statistics and Probability +1410.7714 +1411.0781 Differential Geometry +1411.6249 Analysis of PDEs +1411.7311 +1412.0539 Representation Theory +1412.2730 Theory +1412.4198 Computer Science and Game Theory +1412.4305 Numerical Analysis +1412.6639 Combinatorics +1412.6811 Statistical Mechanics +1412.7657 +1412.8043 Instrumentation and Detectors +1412.8098 +1412.8336 Number Theory +1412.8431 Geometric Topology +1412.8584 Theory +1501.01223 Analysis of PDEs +1501.05467 Statistics Theory +1502.02242 Databases +1502.04191 Category Theory +1502.04279 Materials Science +1502.05359 Theory +1502.05967 +1502.06820 Data Structures and Algorithms +1503.00659 Physics and Society +1503.00838 Mesoscale and Nanoscale Physics +1503.02291 Computer Vision and Pattern Recognition +1503.04217 Experiment +1503.05612 Combinatorics +1503.05824 Astrophysics of Galaxies +1503.06020 Physics and Society +1503.06031 Analysis of PDEs +1503.06876 Methodology +1503.07582 Analysis of PDEs +1503.07976 Quantum Gases +1503.08058 Mesoscale and Nanoscale Physics +1504.01292 Operator Algebras +1504.04774 Risk Management +1504.06551 +1504.07981 Physics and Society +1504.08153 Social and Information Networks +1505.00505 Geometric Topology +1505.01634 Social and Information Networks +1505.02903 Information Theory +1505.03077 Geometric Topology +1505.03642 Atomic Physics +1505.03822 Algebraic Geometry +1505.07113 Phenomenology +1505.07938 Disordered Systems and Neural Networks +1506.02814 Plasma Physics +1506.02905 Statistical Mechanics +1506.03171 Information Theory +1506.04560 Phenomenology +1506.04645 Superconductivity +1506.07491 Information Theory +1506.08192 Theory +1506.08219 Materials Science +1506.08331 Probability +1506.08416 +1507.00342 Cosmology and Nongalactic Astrophysics +1507.00431 Optimization and Control +1507.01043 Fluid Dynamics +1507.01098 Information Theory +1507.01115 Differential Geometry +1507.01961 Strongly Correlated Electrons +1507.03617 Probability +1507.04107 Chemical Physics +1507.04570 +1507.04903 Logic +1507.05613 Instrumentation and Detectors +1507.06089 +1507.06783 Mesoscale and Nanoscale Physics +1507.06853 Numerical Analysis +1507.07167 Optics +1507.07622 Data Structures and Algorithms +1507.07625 Chaotic Dynamics +1508.00057 Quantum Gases +1508.00654 Systems and Control +1508.00774 +1508.00872 Representation Theory +1508.01183 Geometric Topology +1508.01285 Probability +1508.01305 Optics +1508.02694 Number Theory +1508.03203 Strongly Correlated Electrons +1508.03224 Probability +1508.03307 Superconductivity +1508.03326 Learning +1508.03553 Differential Geometry +1508.03745 Dynamical Systems +1508.03943 Instrumentation and Detectors +1508.06111 Theory +1508.06134 Numerical Analysis +1508.07079 Superconductivity +1508.07561 Probability +1508.07748 Optics +1509.00181 Learning +1509.00298 Phenomenology +1509.00461 High Energy Astrophysical Phenomena +1509.01083 Molecular Networks +1509.01846 Systems and Control +1509.02016 Theory +1509.02242 Superconductivity +1509.02554 Fluid Dynamics +1509.03192 Populations and Evolution +1509.03610 Quantum Gases +1509.04208 Atomic Physics +1509.05596 Statistical Mechanics +1509.06020 Analysis of PDEs +1509.06959 Mesoscale and Nanoscale Physics +1509.07374 Group Theory +1509.07525 Phenomenology +1509.08146 Optimization and Control +1509.08353 Computer Science and Game Theory +1509.08694 +1509.08705 +1509.08769 +1509.09312 Theory +1510.00181 Exactly Solvable and Integrable Systems +1510.00793 Spectral Theory +1510.00961 Analysis of PDEs +1510.01549 Number Theory +1510.01689 Group Theory +1510.02146 Optimization and Control +1510.02313 Strongly Correlated Electrons +1510.04044 Dynamical Systems +1510.04065 Strongly Correlated Electrons +1510.04083 Cryptography and Security +1510.04133 Phenomenology +1510.05512 Discrete Mathematics +1510.06000 +1510.06119 Materials Science +1510.06861 Theory +1510.08269 Phenomenology +1510.09091 Information Theory +1511.00774 General Mathematics +1511.00956 +1511.01981 +1511.02073 Numerical Analysis +1511.03101 Theory +1511.03829 Cryptography and Security +1511.04280 Materials Science +1511.04851 Phenomenology +1511.05123 Quantum Gases +1511.05438 Optics +1511.07238 Methodology +1511.08129 Chemical Physics +1511.08253 +1511.08354 +1511.08523 +1511.09212 Differential Geometry +1512.00968 Differential Geometry +1512.01020 +1512.01512 Strongly Correlated Electrons +1512.02861 +1512.04977 Phenomenology +1512.05023 Networking and Internet Architecture +1512.05127 Biological Physics +1512.05512 +1512.05770 Number Theory +1512.06030 Combinatorics +1512.06300 Materials Science +1512.06751 Logic in Computer Science +1512.07439 Rings and Algebras +1512.07833 +1512.08070 Discrete Mathematics +1512.08758 Materials Science +1601.01468 Soft Condensed Matter +1601.02792 Commutative Algebra +1601.02873 Number Theory +1601.03127 Solar and Stellar Astrophysics +1601.03348 Computation and Language +1601.03617 Information Theory +1601.04319 +1601.04600 Populations and Evolution +1601.04610 Solar and Stellar Astrophysics +1601.04722 Mesoscale and Nanoscale Physics +1601.04923 Spectral Theory +1601.04926 Strongly Correlated Electrons +1601.05160 Number Theory +1601.05613 Computer Vision and Pattern Recognition +1601.06253 +1601.06256 Representation Theory +1601.06505 Combinatorics +1601.06850 Differential Geometry +1601.07014 Computer Vision and Pattern Recognition +1601.07216 Computer Science and Game Theory +1601.07238 Rings and Algebras +1601.07267 Computer Science and Game Theory +1601.07616 Theory +1601.07752 Numerical Analysis +1601.07757 Theory +1601.07929 Artificial Intelligence +1601.08092 Atmospheric and Oceanic Physics +1601.08213 Theory +1601.08233 Materials Science +1602.00010 Materials Science +1602.00014 Commutative Algebra +1602.00015 Probability +1602.00023 Data Structures and Algorithms +1602.00027 Combinatorics +1602.00030 Materials Science +1602.00035 Strongly Correlated Electrons +1602.00039 Experiment +1602.00040 Numerical Analysis +1602.00045 Dynamical Systems +1602.00047 Methodology +1602.00048 Optimization and Control +1602.00054 +1602.00055 Cosmology and Nongalactic Astrophysics +1602.00057 Information Theory +1602.00060 +1602.00063 +1602.00064 Computational Physics +1602.00067 Cryptography and Security +1602.00069 Systems and Control +1602.00073 Numerical Analysis +1602.00075 Dynamical Systems +1602.00077 Pattern Formation and Solitons +1602.00078 Data Analysis, Statistics and Probability +1602.00080 Dynamical Systems +1602.00084 Experiment +1602.00090 Economics +1602.00092 Functional Analysis +1602.00094 Mathematical Finance +1602.00095 Information Theory +1602.00096 Molecular Networks +1602.00097 Networking and Internet Architecture +1602.00098 Probability +1602.00099 Classical Analysis and ODEs +1602.00100 Differential Geometry +1602.00104 Information Retrieval +1602.00105 Combinatorics +1602.00107 Soft Condensed Matter +1602.00108 Mesoscale and Nanoscale Physics +1602.00109 Methodology +1602.00110 Social and Information Networks +1602.00112 +1602.00113 Dynamical Systems +1602.00114 Mesoscale and Nanoscale Physics +1602.00115 Theory +1602.00116 Representation Theory +1602.00117 Functional Analysis +1602.00120 Materials Science +1602.00121 +1602.00122 Analysis of PDEs +1602.00124 Operator Algebras +1602.00125 Statistical Finance +1602.00132 Information Theory +1602.00139 Information Theory +1602.00140 Geometric Topology +1602.00144 Group Theory +1602.00149 +1602.00150 Differential Geometry +1602.00154 Phenomenology +1602.00155 +1602.00160 Phenomenology +1602.00161 Complex Variables +1602.00162 Systems and Control +1602.00163 Learning +1602.00164 Algebraic Geometry +1602.00165 Artificial Intelligence +1602.00167 Differential Geometry +1602.00168 Analysis of PDEs +1602.00169 Information Theory +1602.00172 Computer Vision and Pattern Recognition +1602.00174 Networking and Internet Architecture +1602.00175 Statistics Theory +1602.00177 Computer Vision and Pattern Recognition +1602.00182 Numerical Analysis +1602.00183 Numerical Analysis +1602.00188 High Energy Astrophysical Phenomena +1602.00190 +1602.00191 Complex Variables +1602.00194 Differential Geometry +1602.00195 Optimization and Control +1602.00196 Combinatorics +1602.00198 Artificial Intelligence +1602.00202 Applications +1602.00203 Learning +1602.00204 +1602.00206 Computer Vision and Pattern Recognition +1602.00207 Computation +1602.00214 Machine Learning +1602.00215 Phenomenology +1602.00217 Computer Vision and Pattern Recognition +1602.00219 Experiment +1602.00221 Machine Learning +1602.00224 Computer Vision and Pattern Recognition +1602.00225 Information Theory +1602.00229 Machine Learning +1602.00231 Rings and Algebras +1602.00232 Optimization and Control +1602.00236 Machine Learning +1602.00239 High Energy Astrophysical Phenomena +1602.00240 General Topology +1602.00242 Digital Libraries +1602.00243 Other Computer Science +1602.00247 Analysis of PDEs +1602.00248 Social and Information Networks +1602.00249 Algebraic Geometry +1602.00252 Social and Information Networks +1602.00255 Analysis of PDEs +1602.00256 Applications +1602.00258 Neurons and Cognition +1602.00259 Atomic Physics +1602.00263 Instrumentation and Detectors +1602.00264 Analysis of PDEs +1602.00266 Operator Algebras +1602.00268 Instrumentation and Detectors +1602.00269 Artificial Intelligence +1602.00270 Fluid Dynamics +1602.00276 Information Theory +1602.00279 Classical Analysis and ODEs +1602.00280 Functional Analysis +1602.00281 Operator Algebras +1602.00283 Algebraic Geometry +1602.00290 Mesoscale and Nanoscale Physics +1602.00291 Combinatorics +1602.00293 Computation and Language +1602.00294 Numerical Analysis +1602.00296 Rings and Algebras +1602.00299 Mesoscale and Nanoscale Physics +1602.00300 Classical Analysis and ODEs +1602.00302 Cosmology and Nongalactic Astrophysics +1602.00305 +1602.00307 Computer Vision and Pattern Recognition +1602.00309 Learning +1602.00311 Number Theory +1602.00313 Materials Science +1602.00314 Number Theory +1602.00316 Classical Analysis and ODEs +1602.00321 Probability +1602.00326 Computational Physics +1602.00327 Commutative Algebra +1602.00329 Data Structures and Algorithms +1602.00330 Computational Physics +1602.00332 Computational Physics +1602.00336 Number Theory +1602.00337 Theory +1602.00340 Representation Theory +1602.00341 Solar and Stellar Astrophysics +1602.00343 Number Theory +1602.00345 Distributed, Parallel, and Cluster Computing +1602.00346 Methodology +1602.00349 Computational Complexity +1602.00350 Representation Theory +1602.00351 Learning +1602.00352 Logic +1602.00357 Machine Learning +1602.00358 Trading and Market Microstructure +1602.00359 Statistics Theory +1602.00360 Machine Learning +1602.00362 Complex Variables +1602.00366 Information Theory +1602.00367 Computation and Language +1602.00372 Optimization and Control +1602.00374 Learning +1602.00375 Differential Geometry +1602.00380 Mesoscale and Nanoscale Physics +1602.00386 Computer Vision and Pattern Recognition +1602.00390 Differential Geometry +1602.00391 +1602.00392 Statistical Mechanics +1602.00393 +1602.00397 Materials Science +1602.00398 Computational Complexity +1602.00399 Computational Geometry +1602.00400 Combinatorics +1602.00401 +1602.00403 Group Theory +1602.00405 +1602.00406 Probability +1602.00407 Operator Algebras +1602.00409 Group Theory +1602.00410 Materials Science +1602.00414 Optimization and Control +1602.00418 Algebraic Geometry +1602.00419 Digital Libraries +1602.00422 Data Structures and Algorithms +1602.00424 Symbolic Computation +1602.00426 Computation and Language +1602.00430 Information Theory +1602.00436 Classical Analysis and ODEs +1602.00438 Classical Physics +1602.00448 Networking and Internet Architecture +1602.00452 General Topology +1602.00454 Symbolic Computation +1602.00457 Phenomenology +1602.00458 Logic in Computer Science +1602.00462 Robotics +1602.00467 Molecular Networks +1602.00468 +1602.00469 Statistical Mechanics +1602.00471 Metric Geometry +1602.00472 Mesoscale and Nanoscale Physics +1602.00479 Social and Information Networks +1602.00480 Analysis of PDEs +1602.00481 Logic in Computer Science +1602.00482 Systems and Control +1602.00487 Networking and Internet Architecture +1602.00491 +1602.00499 Probability +1602.00503 Databases +1602.00510 Probability +1602.00522 Machine Learning +1602.00524 +1602.00525 Optimization and Control +1602.00526 Statistical Mechanics +1602.00529 Dynamical Systems +1602.00530 Analysis of PDEs +1602.00531 Statistics Theory +1602.00535 Fluid Dynamics +1602.00536 Populations and Evolution +1602.00548 Probability +1602.00549 Classical Analysis and ODEs +1602.00551 Soft Condensed Matter +1602.00554 Learning +1602.00555 Logic +1602.00556 Theory +1602.00557 Systems and Control +1602.00558 +1602.00559 Optimization and Control +1602.00562 Soft Condensed Matter +1602.00564 Methodology +1602.00566 Networking and Internet Architecture +1602.00568 Instrumentation and Detectors +1602.00569 Networking and Internet Architecture +1602.00571 Symplectic Geometry +1602.00572 Social and Information Networks +1602.00576 Analysis of PDEs +1602.00577 Computer Vision and Pattern Recognition +1602.00578 +1602.00579 Neurons and Cognition +1602.00580 +1602.00581 +1602.00582 +1602.00586 Distributed, Parallel, and Cluster Computing +1602.00591 Distributed, Parallel, and Cluster Computing +1602.00593 +1602.00596 Optimization and Control +1602.00597 Commutative Algebra +1602.00600 Genomics +1602.00605 Logic +1602.00615 Networking and Internet Architecture +1602.00617 Dynamical Systems +1602.00624 Fluid Dynamics +1602.00626 Spectral Theory +1602.00629 Statistical Finance +1602.00640 Materials Science +1602.00644 Statistical Mechanics +1602.00649 Numerical Analysis +1602.00650 Molecular Networks +1602.00657 Probability +1602.00662 Theory +1602.00664 Differential Geometry +1602.00665 Analysis of PDEs +1602.00666 Number Theory +1602.00670 Materials Science +1602.00672 Combinatorics +1602.00674 Cosmology and Nongalactic Astrophysics +1602.00675 Numerical Analysis +1602.00677 Classical Analysis and ODEs +math/0505274 Probability +0902.2281 Algebraic Geometry +0905.2240 Analysis of PDEs +0909.1258 Chaotic Dynamics +1002.1119 Analysis of PDEs +1002.4070 Metric Geometry +1004.5458 Quantum Gases +1007.0222 +1007.1844 +1011.1564 Algebraic Geometry +1101.3693 Differential Geometry +1108.4134 +1110.2475 +1111.6202 Algebraic Geometry +1112.5412 Soft Condensed Matter +1201.0250 Dynamical Systems +1201.6021 Soft Condensed Matter +1202.1863 Quantum Gases +1205.3153 Superconductivity +1206.0422 Category Theory +1206.1986 +1206.4200 +1207.0110 Soft Condensed Matter +1208.0556 +1208.0557 +1210.0728 Analysis of PDEs +1210.6303 Analysis of PDEs +1210.7519 Algebraic Geometry +1212.2540 Analysis of PDEs +1212.4491 Subcellular Processes +1301.7511 Combinatorics +1302.1149 Algebraic Geometry +1302.3540 Algebraic Geometry +1302.4459 +1303.1035 Numerical Analysis +1304.4760 Statistical Mechanics +1304.5781 +1304.5987 Metric Geometry +1305.0461 +1305.0703 Soft Condensed Matter +1305.1433 Representation Theory +1305.3349 Algebraic Topology +1305.3660 +1305.4767 Logic +1308.0639 Metric Geometry +1309.2111 Probability +1309.6505 Pricing of Securities +1309.6961 Analysis of PDEs +1310.2919 Spectral Theory +1310.5146 Strongly Correlated Electrons +1310.5258 Lattice +1310.6685 Logic +1311.6429 Algebraic Geometry +1311.7533 Materials Science +1312.0269 Operator Algebras +1312.2202 Complex Variables +1312.4057 History and Philosophy of Physics +1401.1746 +1402.1617 Information Theory +1402.1854 Number Theory +1402.3587 Theory +1402.6918 Group Theory +1403.0115 Analysis of PDEs +1403.3877 Strongly Correlated Electrons +1403.6576 Analysis of PDEs +1404.5206 Differential Geometry +1404.6994 Number Theory +1405.4960 Metric Geometry +1405.7756 Analysis of PDEs +1406.3132 Mesoscale and Nanoscale Physics +1406.3698 Number Theory +1406.3819 Category Theory +1406.3970 Analysis of PDEs +1406.6366 High Energy Astrophysical Phenomena +1406.7577 Social and Information Networks +1407.1479 Analysis of PDEs +1407.2322 Networking and Internet Architecture +1407.3497 Algebraic Geometry +1407.4462 Functional Analysis +1407.5901 Algebraic Geometry +1408.0648 Statistical Mechanics +1408.2273 Representation Theory +1408.6404 +1409.1863 Algebraic Geometry +1409.6860 Atomic Physics +1409.6944 Algebraic Topology +1409.8540 Mesoscale and Nanoscale Physics +1410.0518 Complex Variables +1410.1011 +1410.2790 +1410.5091 Algebraic Geometry +1410.5466 Economics +1411.4173 Probability +1411.4409 Metric Geometry +1411.4444 Optimization and Control +1411.5095 Analysis of PDEs +1411.6357 Theory +1412.1828 Phenomenology +1412.2858 +1412.4938 Algebraic Topology +1412.5391 Metric Geometry +1412.6157 Social and Information Networks +1501.00467 Metric Geometry +1501.01215 Astrophysics of Galaxies +1501.01645 Probability +1501.05621 Number Theory +1502.01359 Information Theory +1502.02393 Combinatorics +1502.02846 Learning +1502.04874 Probability +1502.05722 Instrumentation and Methods for Astrophysics +1502.07491 Classical Analysis and ODEs +1502.07612 Soft Condensed Matter +1503.01008 Discrete Mathematics +1503.01398 Networking and Internet Architecture +1503.02762 Statistical Mechanics +1503.02783 Category Theory +1503.03746 Physics and Society +1503.05444 Classical Analysis and ODEs +1503.05532 Probability +1503.07124 +1503.07566 Materials Science +1503.09154 +1504.00333 +1504.02023 Functional Analysis +1504.03994 Chemical Physics +1504.04683 Logic +1504.04805 Soft Condensed Matter +1504.05271 Representation Theory +1504.06510 Cosmology and Nongalactic Astrophysics +1504.07101 Social and Information Networks +1505.00480 Optics +1505.00759 Algebraic Geometry +1505.01480 +1505.02278 +1505.03269 Optics +1505.04149 Instrumentation and Detectors +1505.04782 +1505.05192 Computer Vision and Pattern Recognition +1505.05455 +1505.05789 Number Theory +1505.06207 Theory +1506.00061 General Mathematics +1506.00203 Mesoscale and Nanoscale Physics +1506.02158 Machine Learning +1506.02539 Biomolecules +1506.03252 Probability +1506.03543 Optics +1506.04620 Materials Science +1506.04889 Physics and Society +1506.05041 Soft Condensed Matter +1506.05144 Analysis of PDEs +1506.05769 Commutative Algebra +1506.07485 +1506.07628 Cosmology and Nongalactic Astrophysics +1506.08283 +1506.08714 Dynamical Systems +1507.00157 Algebraic Geometry +1507.02676 Mesoscale and Nanoscale Physics +1507.03251 Mesoscale and Nanoscale Physics +1507.04340 Number Theory +1507.05551 Cosmology and Nongalactic Astrophysics +1507.05902 Instrumentation and Detectors +1507.06017 Theory +1507.06119 Applications +1507.06147 Theory +1507.07273 Algebraic Geometry +1507.07606 Quantum Gases +1507.08255 +1507.08767 Mesoscale and Nanoscale Physics +1507.08948 Algebraic Geometry +1508.00023 Multiagent Systems +1508.00584 Solar and Stellar Astrophysics +1508.02019 Mesoscale and Nanoscale Physics +1508.02093 Mesoscale and Nanoscale Physics +1508.02169 Combinatorics +1508.03105 Numerical Analysis +1508.03202 Operator Algebras +1508.04137 Phenomenology +1508.04552 Phenomenology +1508.04716 Information Theory +1508.05180 Phenomenology +1508.05796 Experiment +1508.06993 Theory +1508.07122 Mesoscale and Nanoscale Physics +1509.00082 +1509.00184 Mesoscale and Nanoscale Physics +1509.00389 Experiment +1509.00466 Theory +1509.00586 Mesoscale and Nanoscale Physics +1509.00852 Theory +1509.01316 Number Theory +1509.01582 Category Theory +1509.02534 Information Theory +1509.03499 Phenomenology +1509.03728 Rings and Algebras +1509.04479 Plasma Physics +1509.05400 Mesoscale and Nanoscale Physics +1509.06197 Physics and Society +1509.06474 Logic +1509.07382 +1509.07446 Chemical Physics +1509.07485 High Energy Astrophysical Phenomena +1509.08575 Combinatorics +1510.00403 Optimization and Control +1510.00549 Combinatorics +1510.01093 Representation Theory +1510.01104 Quantum Gases +1510.01137 Astrophysics of Galaxies +1510.02638 Group Theory +1510.02742 +1510.03216 Geometric Topology +1510.03280 Phenomenology +1510.03565 Information Theory +1510.04154 +1510.04277 Cosmology and Nongalactic Astrophysics +1510.04328 Phenomenology +1510.04344 Quantum Gases +1510.05905 Mesoscale and Nanoscale Physics +1510.06063 Theory +1510.06246 Numerical Analysis +1510.06266 Phenomenology +1510.07126 Physics and Society +1510.07607 Instrumentation and Detectors +1510.07842 Quantum Gases +1511.00082 Mesoscale and Nanoscale Physics +1511.00203 Theory +1511.00819 Optimization and Control +1511.01691 Cosmology and Nongalactic Astrophysics +1511.02095 +1511.02211 Probability +1511.02381 Information Theory +1511.02554 Neural and Evolutionary Computing +1511.03034 Learning +1511.03212 Phenomenology +1511.03537 Phenomenology +1511.04633 Computational Physics +1511.04874 Information Theory +1511.05034 Mesoscale and Nanoscale Physics +1511.05210 Computational Complexity +1511.05432 Machine Learning +1511.05844 Astrophysics of Galaxies +1511.05868 Differential Geometry +1511.06355 Solar and Stellar Astrophysics +1511.06573 Mesoscale and Nanoscale Physics +1511.06640 Probability +1511.06803 Dynamical Systems +1511.06964 Learning +1511.07009 Geometric Topology +1511.07139 Adaptation and Self-Organizing Systems +1511.07574 Strongly Correlated Electrons +1511.08526 +1511.08720 +1511.09284 Phenomenology +1512.02687 Representation Theory +1512.02733 Astrophysics of Galaxies +1512.02752 Artificial Intelligence +1512.04075 Solar and Stellar Astrophysics +1512.04217 Biological Physics +1512.04436 Probability +1512.04548 Cosmology and Nongalactic Astrophysics +1512.04591 Populations and Evolution +1512.05361 Statistical Mechanics +1512.05372 Materials Science +1512.05582 Computation and Language +1512.06360 Materials Science +1512.06389 Data Structures and Algorithms +1512.06642 Rings and Algebras +1512.06849 Geometric Topology +1512.07357 Analysis of PDEs +1512.07901 Discrete Mathematics +1512.08107 Phenomenology +1512.08120 Learning +1512.08128 Instrumentation and Methods for Astrophysics +1512.08403 Optimization and Control +1512.09200 Symplectic Geometry +1601.01502 Combinatorics +1601.01936 +1601.02151 Soft Condensed Matter +1601.02231 Metric Geometry +1601.02390 +1601.02414 Number Theory +1601.02448 Algebraic Geometry +1601.02462 Theory +1601.02468 Theory +1601.02617 Solar and Stellar Astrophysics +1601.02666 Quantum Gases +1601.02708 Computational Engineering, Finance, and Science +1601.03219 General Topology +1601.03585 Analysis of PDEs +1601.03786 Atomic Physics +1601.04066 Human-Computer Interaction +1601.04067 +1601.04075 Information Retrieval +1601.04076 Quantum Algebra +1601.04079 +1601.04082 Algebraic Geometry +1601.04083 Methodology +1601.04087 Theory +1601.04089 Phenomenology +1601.04091 Numerical Analysis +1601.04093 Economics +1601.04094 Multiagent Systems +1601.04095 Numerical Analysis +1601.04096 Methodology +1601.04097 Optimization and Control +1601.04098 Logic +1601.04101 Phenomenology +1601.04102 Distributed, Parallel, and Cluster Computing +1601.04105 Artificial Intelligence +1601.04113 Instrumentation and Methods for Astrophysics +1601.04117 Group Theory +1601.04119 Dynamical Systems +1601.04121 Numerical Analysis +1601.04122 Information Theory +1601.04125 Computational Complexity +1601.04126 Machine Learning +1601.04127 General Physics +1601.04129 Differential Geometry +1601.04131 Information Theory +1601.04134 Cryptography and Security +1601.04135 Social and Information Networks +1601.04138 Atomic Physics +1601.04141 Logic +1601.04144 Materials Science +1601.04146 Number Theory +1601.04150 Computational Engineering, Finance, and Science +1601.04156 Atomic Physics +1601.04160 Dynamical Systems +1601.04163 Optics +1601.04166 Operator Algebras +1601.04170 Combinatorics +1601.04171 Metric Geometry +1601.04173 Spectral Theory +1601.04175 Optimization and Control +1601.04176 Soft Condensed Matter +1601.04180 Information Theory +1601.04181 Biomolecules +1601.04182 +1601.04183 Neurons and Cognition +1601.04184 Analysis of PDEs +1601.04186 Dynamical Systems +1601.04187 Neural and Evolutionary Computing +1601.04190 Other Condensed Matter +1601.04191 Computers and Society +1601.04192 Other Condensed Matter +1601.04193 Populations and Evolution +1601.04194 Combinatorics +1601.04195 Number Theory +1601.04196 Superconductivity +1601.04201 Number Theory +1601.04202 Dynamical Systems +1601.04207 Computational Engineering, Finance, and Science +1601.04210 Mathematical Finance +1601.04211 Logic +1601.04215 Strongly Correlated Electrons +1601.04224 Probability +1601.04231 Distributed, Parallel, and Cluster Computing +1601.04233 Data Structures and Algorithms +1601.04234 +1601.04235 High Energy Astrophysical Phenomena +1601.04236 High Energy Astrophysical Phenomena +1601.04237 Probability +1601.04238 Algebraic Geometry +1601.04244 Other Computer Science +1601.04245 Systems and Control +1601.04248 Data Structures and Algorithms +1601.04249 Other Computer Science +1601.04251 Systems and Control +1601.04252 Differential Geometry +1601.04253 Neurons and Cognition +1601.04254 Rings and Algebras +1601.04255 Probability +1601.04257 Pattern Formation and Solitons +1601.04259 Quantitative Methods +1601.04263 Cryptography and Security +1601.04264 Optimization and Control +1601.04267 +1601.04268 Symplectic Geometry +1601.04269 Rings and Algebras +1601.04271 Information Theory +1601.04274 Probability +1601.04280 Numerical Analysis +1601.04282 Functional Analysis +1601.04283 Functional Analysis +1601.04285 Strongly Correlated Electrons +1601.04291 Phenomenology +1601.04293 Computer Vision and Pattern Recognition +1601.04296 Neural and Evolutionary Computing +1601.04297 Dynamical Systems +1601.04298 Combinatorics +1601.04299 Logic in Computer Science +1601.04300 Differential Geometry +1601.04301 Cryptography and Security +1601.04304 +1601.04306 Distributed, Parallel, and Cluster Computing +1601.04308 Analysis of PDEs +1601.04312 Metric Geometry +1601.04314 Networking and Internet Architecture +1601.04316 Numerical Analysis +1601.04321 Optimization and Control +1601.04323 High Energy Astrophysical Phenomena +1601.04334 Differential Geometry +1601.04340 Physics Education +1601.04341 Statistical Finance +1601.04346 Solar and Stellar Astrophysics +1601.04348 Instrumentation and Detectors +1601.04351 Risk Management +1601.04354 Physics Education +1601.04357 Physics Education +1601.04359 Materials Science +1601.04365 Mesoscale and Nanoscale Physics +1601.04369 Combinatorics +1601.04370 Number Theory +1601.04371 Combinatorics +1601.04372 Instrumentation and Methods for Astrophysics +1601.04373 Information Theory +1601.04374 +1601.04377 Complex Variables +1601.04380 Complex Variables +1601.04381 Complex Variables +1601.04382 Complex Variables +1601.04383 Complex Variables +1601.04384 Soft Condensed Matter +1601.04385 Instrumentation and Methods for Astrophysics +1601.04386 Computer Vision and Pattern Recognition +1601.04388 Information Theory +1601.04391 Dynamical Systems +1601.04392 Logic +1601.04397 Methodology +1601.04398 Group Theory +1601.04402 Probability +1601.04404 Phenomenology +1601.04406 Computer Vision and Pattern Recognition +1601.04410 Mesoscale and Nanoscale Physics +1601.04411 Materials Science +1601.04412 Classical Analysis and ODEs +1601.04413 Algebraic Topology +1601.04415 Number Theory +1601.04416 Combinatorics +1601.04419 Tissues and Organs +1601.04422 Plasma Physics +1601.04431 Combinatorics +1601.04432 Theory +1601.04433 Logic +1601.04435 Soft Condensed Matter +1601.04436 Human-Computer Interaction +1601.04438 Materials Science +1601.04440 Differential Geometry +1601.04442 +1601.04444 Probability +1601.04446 Materials Science +1601.04450 Graphics +1601.04451 Machine Learning +1601.04453 Information Theory +1601.04454 Commutative Algebra +1601.04455 Probability +1601.04458 Quantitative Methods +1601.04461 High Energy Astrophysical Phenomena +1601.04462 Experiment +1601.04468 Computation and Language +1601.04469 Discrete Mathematics +1601.04473 Multimedia +1601.04477 +1601.04478 Portfolio Management +1601.04479 Materials Science +1601.04481 +1601.04483 Probability +1601.04484 Materials Science +1601.04486 Strongly Correlated Electrons +1601.04491 Fluid Dynamics +1601.04492 Analysis of PDEs +1601.04494 Metric Geometry +1601.04495 Quantum Gases +1601.04496 Numerical Analysis +1601.04498 Instrumentation and Methods for Astrophysics +1601.04499 Instrumentation and Methods for Astrophysics +1601.04507 Information Theory +1601.04511 Solar and Stellar Astrophysics +1601.04512 Instrumentation and Detectors +1601.04514 Differential Geometry +1601.04516 Phenomenology +1601.04518 Soft Condensed Matter +1601.04522 Multimedia +1601.04527 Combinatorics +1601.04530 Machine Learning +1601.04531 Mesoscale and Nanoscale Physics +1601.04532 Differential Geometry +1601.04533 Discrete Mathematics +1601.04534 General Physics +1601.04538 General Physics +1601.04540 Differential Geometry +1601.04546 Probability +1601.04547 Robotics +1601.04548 Medical Physics +1601.04549 Machine Learning +1601.04553 Analysis of PDEs +1601.04558 +1601.04563 Other Computer Science +1601.04565 Representation Theory +1601.04566 Group Theory +1601.04567 Analysis of PDEs +1601.04568 Computer Vision and Pattern Recognition +1601.04571 +1601.04572 Differential Geometry +1601.04573 Number Theory +1601.04574 Artificial Intelligence +1601.04576 Algebraic Geometry +1601.04585 Computational Geometry +1601.04589 Computer Vision and Pattern Recognition +1601.04590 Phenomenology +1601.04595 Distributed, Parallel, and Cluster Computing +1601.04602 Distributed, Parallel, and Cluster Computing +1601.04605 Information Retrieval +1601.04607 Materials Science +1601.04609 Earth and Planetary Astrophysics +1601.04612 Analysis of PDEs +1601.04613 +1601.04614 Differential Geometry +1601.04622 Cryptography and Security +1601.04626 Spectral Theory +1601.04627 Instrumentation and Methods for Astrophysics +1601.04631 Algebraic Geometry +1601.04641 Quantum Gases +1601.04642 Combinatorics +1601.04644 Analysis of PDEs +1601.04653 +1601.04661 Formal Languages and Automata Theory +1601.04662 Information Theory +1601.04664 Numerical Analysis +1601.04665 Commutative Algebra +1601.04667 Artificial Intelligence +1601.04668 +1601.04669 Computer Vision and Pattern Recognition +1601.04670 Lattice +1601.04672 Emerging Technologies +1601.04673 +1601.04675 Distributed, Parallel, and Cluster Computing +1601.04678 Phenomenology +1601.04679 Probability +1601.04682 Superconductivity +1601.04683 Classical Analysis and ODEs +1601.04684 Information Theory +1601.04687 Lattice +1601.04689 Information Theory +1601.04691 +1601.04692 Learning +cs/0205012 Data Structures and Algorithms +cs/0205029 Data Structures and Algorithms +cs/0205039 Data Structures and Algorithms +math/0406227 Complex Variables +solv-int/9412005 Exactly Solvable and Integrable Systems +solv-int/9412006 Exactly Solvable and Integrable Systems +1307.2688 Combinatorics +0704.0375 Chemical Physics +0704.0394 Risk Management +0704.0398 Probability +0704.0512 Statistical Mechanics +0704.0699 Chemical Physics +0704.0700 Chemical Physics +0704.0858 Cryptography and Security +0704.0878 Materials Science +0704.0880 Statistical Mechanics +0704.1148 Statistical Mechanics +0704.1155 Statistical Mechanics +0704.1171 Statistical Mechanics +0704.1175 Statistical Mechanics +0704.1609 +0704.2138 Soft Condensed Matter +0704.2195 +0704.2306 Materials Science +0704.2497 Mesoscale and Nanoscale Physics +0704.2569 +0704.2601 +0704.2846 +0704.3009 +0704.3617 +0704.3692 Statistical Mechanics +0704.3830 Superconductivity +0705.0274 Statistics Theory +0705.0582 Statistical Mechanics +0705.0587 Group Theory +0705.0878 +0705.0922 +0705.1053 Populations and Evolution +0705.1246 +0705.1488 Other Condensed Matter +0705.1526 +0705.1582 Materials Science +0705.2170 Computer Science and Game Theory +0705.2327 Soft Condensed Matter +0705.2482 Optics +0705.2637 Optics +0705.2826 Soft Condensed Matter +0705.3077 +0705.3122 Disordered Systems and Neural Networks +0705.3366 General Mathematics +0705.3665 +0705.3677 Information Theory +0705.3687 +0705.4544 Atomic Physics +0706.0177 Mesoscale and Nanoscale Physics +0706.0203 +0706.1641 +0706.2082 Other Condensed Matter +0706.2157 Materials Science +0706.2378 +0706.2625 Materials Science +0706.3113 +0706.3363 +0707.0132 Representation Theory +0707.0819 +0707.0821 +0707.2979 +0711.4250 +0801.0531 Disordered Systems and Neural Networks +0801.0710 Complex Variables +0801.3737 Strongly Correlated Electrons +0802.2035 Geometric Topology +0802.3259 Theory +0802.3570 Information Theory +0802.3572 Information Theory +0802.3886 +0802.3908 +0803.0799 Soft Condensed Matter +0803.1746 Group Theory +0804.0066 Logic in Computer Science +0805.2550 +0805.3065 +0805.4533 Algebraic Geometry +0805.4676 Probability +0806.3854 +0809.0090 +0809.0444 +0809.0778 +0809.1969 Strongly Correlated Electrons +0809.4581 Experiment +0809.4739 Statistical Mechanics +0810.0197 Lattice +0810.0949 +0810.1874 Experiment +0810.2388 +0810.2691 +0810.2963 +0810.3125 Information Theory +0810.3785 +0810.5055 +0811.0007 Probability +0811.0366 Probability +0811.0503 Statistics Theory +0811.4267 Probability +0812.1161 +0812.4556 Probability +0902.1719 Mesoscale and Nanoscale Physics +0902.4635 Mesoscale and Nanoscale Physics +0903.2114 Probability +0903.3912 Solar and Stellar Astrophysics +0903.4134 Analysis of PDEs +0904.0742 Strongly Correlated Electrons +0904.4544 Theory +0904.4768 Probability +0905.0400 Geophysics +0905.2401 Probability +0905.3961 Phenomenology +0905.4575 Astrophysics of Galaxies +0906.0306 Cosmology and Nongalactic Astrophysics +0906.1686 Quantum Gases +0906.2319 Cosmology and Nongalactic Astrophysics +0907.0587 Astrophysics of Galaxies +0907.1120 Functional Analysis +0907.3262 Probability +0907.3651 Statistical Mechanics +0908.1952 Statistics Theory +0909.2921 Materials Science +0909.5325 Probability +0910.1605 Computational Engineering, Finance, and Science +0911.1088 High Energy Astrophysical Phenomena +0911.4786 Differential Geometry +0911.5318 Probability +0912.0435 Phenomenology +0912.1433 +0912.2946 General Topology +1001.1894 Probability +1001.4986 Instrumentation and Detectors +1002.0436 +1002.2945 Solar and Stellar Astrophysics +1003.0188 Methodology +1003.0705 Experiment +1003.1274 Materials Science +1003.4550 Differential Geometry +1003.4554 Differential Geometry +1003.5121 Solar and Stellar Astrophysics +1004.1485 Discrete Mathematics +1004.1907 +1004.2328 +1004.2387 Materials Science +1004.2466 Astrophysics of Galaxies +1004.3148 Statistics Theory +1004.3754 Theory +1004.4079 +1004.4118 +1004.4126 Mesoscale and Nanoscale Physics +1004.4135 Phenomenology +1004.4282 Strongly Correlated Electrons +1004.4738 Disordered Systems and Neural Networks +1004.4789 Phenomenology +1005.0032 High Energy Astrophysical Phenomena +1005.0509 Cosmology and Nongalactic Astrophysics +1005.1627 +1005.4115 Computational Complexity +1005.4650 +1005.5089 Strongly Correlated Electrons +1005.5454 Materials Science +1005.5524 Mesoscale and Nanoscale Physics +1005.5540 Superconductivity +1006.0819 Data Analysis, Statistics and Probability +1006.0937 Atomic Physics +1006.1175 Functional Analysis +1006.1347 Experiment +1006.1771 Superconductivity +1006.2032 Cosmology and Nongalactic Astrophysics +1006.2139 Solar and Stellar Astrophysics +1006.2919 Phenomenology +1006.3027 Logic in Computer Science +1006.3038 +1006.3132 Differential Geometry +1006.3442 Discrete Mathematics +1006.3455 Discrete Mathematics +1006.4655 Physics Education +1006.4662 Physics Education +1006.4857 Strongly Correlated Electrons +1006.4883 Complex Variables +1006.5558 +1007.0269 Materials Science +1007.0375 Phenomenology +1007.0649 Astrophysics of Galaxies +1007.0957 +1007.0987 Astrophysics of Galaxies +1007.1461 Astrophysics of Galaxies +1007.1564 +1007.2148 Astrophysics of Galaxies +1007.2894 Phenomenology +1007.2969 Probability +1007.3306 +1007.3363 Astrophysics of Galaxies +1007.3373 Chaotic Dynamics +1007.3375 Chaotic Dynamics +1007.3386 Analysis of PDEs +1007.3432 Statistical Mechanics +1007.4350 Statistics Theory +1007.4411 Solar and Stellar Astrophysics +1007.4433 Instrumentation and Detectors +1008.0113 Strongly Correlated Electrons +1008.0512 +1008.0605 Instrumentation and Methods for Astrophysics +1008.0624 Theory +1008.1266 +1008.1601 Solar and Stellar Astrophysics +1008.1751 Numerical Analysis +1008.2398 Metric Geometry +1008.2513 Astrophysics of Galaxies +1008.3291 +1008.3332 Computational Physics +1008.3347 Phenomenology +1008.3541 Solar and Stellar Astrophysics +1008.3642 High Energy Astrophysical Phenomena +1008.4156 Cosmology and Nongalactic Astrophysics +1008.4817 +1008.4848 Theory +1008.5052 Earth and Planetary Astrophysics +1009.0213 Superconductivity +1009.0903 Solar and Stellar Astrophysics +1009.0925 Astrophysics of Galaxies +1009.1326 Theory +1009.1490 Materials Science +1009.1897 Materials Science +1009.1905 Materials Science +1009.1907 Materials Science +1009.2786 Optimization and Control +1009.2899 +1009.4605 Complex Variables +1009.4795 Solar and Stellar Astrophysics +1009.4849 Strongly Correlated Electrons +1009.4933 Astrophysics of Galaxies +1009.5113 Instrumentation and Methods for Astrophysics +1009.5552 Mesoscale and Nanoscale Physics +1009.5686 Experiment +1009.5929 Astrophysics of Galaxies +1010.0327 Logic +1010.0504 Solar and Stellar Astrophysics +1010.0792 Statistics Theory +1010.0934 Molecular Networks +1010.1246 +1010.1357 Applications +1010.1521 +1010.2268 Statistical Mechanics +1010.2309 Astrophysics of Galaxies +1010.2747 Solar and Stellar Astrophysics +1010.2761 Commutative Algebra +1010.2767 Commutative Algebra +1010.4138 Neural and Evolutionary Computing +1010.4627 Classical Analysis and ODEs +1010.5271 Quantum Gases +1010.5474 Lattice +1010.5704 Commutative Algebra +1010.6142 Complex Variables +1011.0026 +1011.0618 High Energy Astrophysical Phenomena +1011.2025 Applications +1011.2028 Solar and Stellar Astrophysics +1011.2165 Algebraic Geometry +1011.2524 Theory +1011.2598 +1011.2635 Statistics Theory +1011.2645 Statistics Theory +1011.2707 High Energy Astrophysical Phenomena +1011.3916 +1011.4214 Logic in Computer Science +1011.6419 Cosmology and Nongalactic Astrophysics +1011.6479 Methodology +1012.0040 Mesoscale and Nanoscale Physics +1012.0042 Computers and Society +1012.0352 Theory +1012.0458 +1012.0460 Mesoscale and Nanoscale Physics +1012.0512 +1012.0709 Computational Physics +1012.1657 +1012.1869 Cosmology and Nongalactic Astrophysics +1012.1997 Chaotic Dynamics +1012.2497 Quantum Gases +1012.2717 Theory +1012.2926 +1012.3135 Lattice +1012.3262 Mesoscale and Nanoscale Physics +1012.3463 Materials Science +1012.4110 Atomic Physics +1012.4245 Functional Analysis +1012.4261 Mesoscale and Nanoscale Physics +1012.4602 +1012.4733 +1012.5221 Solar and Stellar Astrophysics +1012.5778 Phenomenology +1012.5961 Physics and Society +1101.0014 Statistical Mechanics +1101.0728 Quantum Gases +1101.0912 Methodology +1101.0923 Applications +1101.0971 Superconductivity +1101.0990 Methodology +1101.1692 High Energy Astrophysical Phenomena +1101.1721 Cosmology and Nongalactic Astrophysics +1101.1936 Representation Theory +1101.2024 Cosmology and Nongalactic Astrophysics +1101.2027 Cosmology and Nongalactic Astrophysics +1101.2029 Astrophysics of Galaxies +1101.2034 Astrophysics of Galaxies +1101.2035 Astrophysics of Galaxies +1101.2040 Instrumentation and Methods for Astrophysics +1101.2041 Cosmology and Nongalactic Astrophysics +1101.2043 Cosmology and Nongalactic Astrophysics +1101.2045 Cosmology and Nongalactic Astrophysics +1101.2046 Cosmology and Nongalactic Astrophysics +1101.2048 Cosmology and Nongalactic Astrophysics +1101.2329 Solar and Stellar Astrophysics +1101.2401 Materials Science +1101.2966 Analysis of PDEs +1101.3121 Analysis of PDEs +1101.3263 +1101.3349 High Energy Astrophysical Phenomena +1101.3428 Solar and Stellar Astrophysics +1101.3686 Differential Geometry +1101.3932 Combinatorics +1101.3961 Representation Theory +1101.4203 Instrumentation and Detectors +1101.4540 Theory +1101.4835 Probability +1101.4840 Complex Variables +1101.5307 +1101.5439 Mesoscale and Nanoscale Physics +1101.5644 Superconductivity +1102.0171 Materials Science +1102.0206 Experiment +1102.0348 Experiment +1102.0423 Group Theory +1102.0646 Materials Science +1102.0753 +1102.1461 Atomic Physics +1102.1843 +1102.2120 Classical Analysis and ODEs +1102.2722 Strongly Correlated Electrons +1102.2726 Mesoscale and Nanoscale Physics +1102.3515 Combinatorics +1102.4261 Instrumentation and Detectors +1102.4952 High Energy Astrophysical Phenomena +1102.5419 High Energy Astrophysical Phenomena +1102.5597 Numerical Analysis +1103.0684 Differential Geometry +1103.0687 Differential Geometry +1103.0763 High Energy Astrophysical Phenomena +1103.0924 Phenomenology +1103.1333 Mesoscale and Nanoscale Physics +1103.1596 Solar and Stellar Astrophysics +1103.1758 Discrete Mathematics +1103.1759 Differential Geometry +1103.1764 Combinatorics +1103.1880 Earth and Planetary Astrophysics +1103.2200 Rings and Algebras +1103.2511 Rings and Algebras +1103.2975 Functional Analysis +1103.3136 Differential Geometry +1103.4650 Experiment +1103.4821 Experiment +1103.6130 High Energy Astrophysical Phenomena +1103.6215 Statistical Mechanics +1103.6269 +1104.0075 High Energy Astrophysical Phenomena +1104.1078 Theory +1104.1242 Probability +1104.1726 Solar and Stellar Astrophysics +1104.3028 High Energy Astrophysical Phenomena +1104.3072 Strongly Correlated Electrons +1104.3115 Earth and Planetary Astrophysics +1104.3230 Differential Geometry +1104.4506 Discrete Mathematics +1104.4890 Data Structures and Algorithms +1105.0355 Neural and Evolutionary Computing +1105.0547 Mesoscale and Nanoscale Physics +1105.1966 Experiment +1105.1986 Metric Geometry +1105.3629 Astrophysics of Galaxies +1105.3797 Classical Analysis and ODEs +1105.3928 +1105.4315 Metric Geometry +1105.4947 Superconductivity +1105.5112 +1106.0426 Instrumentation and Methods for Astrophysics +1106.1774 Differential Geometry +1106.3202 General Mathematics +1106.5726 Optics +1107.0198 +1107.0745 Probability +1107.0882 Experiment +1107.1732 +1107.2763 Analysis of PDEs +1107.3108 +1107.3977 Data Structures and Algorithms +1107.4194 Statistical Mechanics +1107.4291 Algebraic Topology +1107.4856 Solar and Stellar Astrophysics +1107.5172 Materials Science +1107.5756 Number Theory +1108.0086 +1108.0433 Differential Geometry +1108.1023 High Energy Astrophysical Phenomena +1108.4177 Probability +1108.4539 +1109.0403 Pattern Formation and Solitons +1109.1838 Astrophysics of Galaxies +1109.4354 +1109.6909 General Finance +1110.0099 Combinatorics +1110.0208 +1110.0729 Algebraic Geometry +1110.0804 Probability +1110.1419 Analysis of PDEs +1110.1656 +1110.3833 +1110.4849 Logic +1110.4955 Soft Condensed Matter +1110.5791 Complex Variables +1111.0521 Experiment +1111.0962 Cosmology and Nongalactic Astrophysics +1111.2734 Functional Analysis +1111.4069 +1111.6143 Analysis of PDEs +1111.7212 Probability +1112.0331 Complex Variables +1112.0419 Superconductivity +1112.0436 Numerical Analysis +1112.0551 Probability +1112.2222 +1112.4052 Statistical Mechanics +1112.5004 +1112.5595 Cosmology and Nongalactic Astrophysics +1201.2634 High Energy Astrophysical Phenomena +1201.2827 Differential Geometry +1201.3015 Statistical Mechanics +1201.3125 +1201.4402 Experiment +1201.5841 Artificial Intelligence +1201.6684 Chemical Physics +1202.1493 High Energy Astrophysical Phenomena +1202.1510 Probability +1202.2784 +1202.3587 Number Theory +1202.3607 Solar and Stellar Astrophysics +1202.4615 Solar and Stellar Astrophysics +1202.5087 Experiment +1202.5637 Astrophysics of Galaxies +1202.6251 Experiment +1203.0729 Rings and Algebras +1203.1188 Probability +1203.1760 Software Engineering +1203.1912 Analysis of PDEs +1203.2160 +1203.3370 Networking and Internet Architecture +1203.5245 Statistics Theory +1203.6435 Statistical Mechanics +1203.6490 Classical Physics +1203.6531 Group Theory +1204.0079 Experiment +1204.0754 +1204.1281 Classical Analysis and ODEs +1204.1572 Classical Analysis and ODEs +1204.2001 Number Theory +1204.2419 Materials Science +1204.2703 Category Theory +1204.2869 Solar and Stellar Astrophysics +1204.2935 Classical Analysis and ODEs +1204.2939 Classical Analysis and ODEs +1204.4906 Logic +1204.5146 Combinatorics +1204.5617 Phenomenology +1205.0277 +1205.2842 Combinatorics +1205.3219 Statistical Mechanics +1205.3376 Cosmology and Nongalactic Astrophysics +1205.3452 Experiment +1205.3555 Computational Finance +1205.5441 Instrumentation and Detectors +1206.0230 Disordered Systems and Neural Networks +1206.1671 Probability +1206.2794 Experiment +1206.4408 Metric Geometry +1206.5156 Statistical Mechanics +1206.5326 Statistical Mechanics +1206.6586 Probability +1206.6709 Solar and Stellar Astrophysics +1207.0121 Category Theory +1207.0673 Probability +1207.1858 Quantum Gases +1207.4961 Quantum Gases +1207.5993 Experiment +1207.6016 Experiment +1208.0227 Databases +1208.1509 Probability +1208.6064 Systems and Control +1209.0156 +1209.0703 Statistics Theory +1209.1035 Complex Variables +1209.1993 Plasma Physics +1209.3952 Statistical Mechanics +1209.4474 K-Theory and Homology +1209.5634 Experiment +1209.5711 Complex Variables +1209.6325 +1209.6347 Experiment +1210.0017 Probability +1210.0586 Applications +1210.0662 Materials Science +1210.1359 High Energy Astrophysical Phenomena +1210.1434 Computation +1210.2601 Computation +1210.4492 Experiment +1210.4789 High Energy Astrophysical Phenomena +1210.6324 Superconductivity +1210.6750 Experiment +1210.7639 Probability +1210.7847 Experiment +1211.0299 Probability +1211.0572 High Energy Astrophysical Phenomena +1211.1230 Experiment +1211.1256 Materials Science +1211.2608 High Energy Astrophysical Phenomena +1211.4135 Algebraic Geometry +1211.5691 +1211.6141 Differential Geometry +1211.6424 Differential Geometry +1212.2327 Superconductivity +1212.2356 Superconductivity +1212.3165 Astrophysics of Galaxies +1212.3323 +1212.5016 Instrumentation and Detectors +1212.5205 Experiment +1212.6380 Group Theory +1212.6823 Phenomenology +1311.2140 Materials Science +1403.4918 Logic +1502.07550 Experiment +1510.08654 Experiment +alg-geom/9305006 Algebraic Geometry +alg-geom/9305007 Algebraic Geometry +alg-geom/9305008 Algebraic Geometry +alg-geom/9305009 Algebraic Geometry +alg-geom/9402005 Algebraic Geometry +alg-geom/9409008 Algebraic Geometry +astro-ph/0701179 +astro-ph/0701241 +astro-ph/0701349 +astro-ph/0701425 +astro-ph/0701691 +astro-ph/0701693 +astro-ph/0701700 +astro-ph/0701737 +astro-ph/0701756 +astro-ph/0701862 +astro-ph/0701901 +astro-ph/0702024 +astro-ph/0702061 +astro-ph/0702374 +astro-ph/0702517 +astro-ph/0702523 +astro-ph/0702588 +astro-ph/0702603 +astro-ph/0702647 +astro-ph/0703216 +astro-ph/0703554 +astro-ph/0703612 +astro-ph/0703743 +astro-ph/0703790 +astro-ph/9402015 +chao-dyn/9401007 Chaotic Dynamics +chao-dyn/9405008 Chaotic Dynamics +chao-dyn/9405009 Chaotic Dynamics +chao-dyn/9405011 Chaotic Dynamics +chao-dyn/9408005 Chaotic Dynamics +chao-dyn/9411024 Chaotic Dynamics +cmp-lg/9406023 Computation and Language +comp-gas/9305001 Cellular Automata and Lattice Gases +comp-gas/9305005 Cellular Automata and Lattice Gases +cond-mat/0701136 Other Condensed Matter +cond-mat/0701181 Statistical Mechanics +cond-mat/0701267 Materials Science +cond-mat/0701342 Materials Science +cond-mat/0701347 Superconductivity +cond-mat/0701348 Strongly Correlated Electrons +cond-mat/0701350 Statistical Mechanics +cond-mat/0701352 Materials Science +cond-mat/0701695 Other Condensed Matter +cond-mat/0701764 Other Condensed Matter +cond-mat/0702001 Statistical Mechanics +cond-mat/0702216 Other Condensed Matter +cond-mat/0702311 Materials Science +cond-mat/0702440 Strongly Correlated Electrons +cond-mat/0702548 Materials Science +cond-mat/0702607 Statistical Mechanics +cond-mat/0702656 Other Condensed Matter +cond-mat/0702685 Soft Condensed Matter +cond-mat/0703069 Materials Science +cond-mat/0703337 Materials Science +cond-mat/0703659 Mesoscale and Nanoscale Physics +cond-mat/0703695 Statistical Mechanics +cond-mat/9306052 +cond-mat/9307021 +cond-mat/9307033 +cond-mat/9307034 +cond-mat/9307054 +cond-mat/9309033 +cond-mat/9310070 +cond-mat/9312006 +cond-mat/9312008 +cond-mat/9312061 +cond-mat/9402072 +cond-mat/9403015 +cond-mat/9404022 +cond-mat/9404053 +cond-mat/9404056 +cond-mat/9404061 +cond-mat/9404064 +cond-mat/9404078 +cond-mat/9405011 +cond-mat/9405013 +cond-mat/9405018 +cond-mat/9405019 +cond-mat/9405050 +cond-mat/9405071 +cond-mat/9406018 +cond-mat/9406114 +cond-mat/9407023 +cond-mat/9407048 +cond-mat/9407049 +cond-mat/9407062 +cond-mat/9410069 +cond-mat/9411030 +cs/0701031 Logic in Computer Science +cs/0701070 Information Theory +cs/0701151 Symbolic Computation +cs/0701179 Distributed, Parallel, and Cluster Computing +cs/0701189 Data Structures and Algorithms +cs/0701193 Programming Languages +cs/0702001 Human-Computer Interaction +cs/0702002 Human-Computer Interaction +cs/0702003 Human-Computer Interaction +cs/0702004 Human-Computer Interaction +cs/0702005 Human-Computer Interaction +cs/0702006 Human-Computer Interaction +cs/0702043 Data Structures and Algorithms +cs/0702061 Discrete Mathematics +cs/0702066 Distributed, Parallel, and Cluster Computing +cs/0703008 Human-Computer Interaction +cs/0703009 Human-Computer Interaction +cs/0703053 Computer Vision and Pattern Recognition +cs/0703062 Learning +cs/0703073 Programming Languages +cs/0703074 Programming Languages +cs/0703075 Programming Languages +cs/0703076 Programming Languages +cs/0703077 Programming Languages +cs/0703084 Programming Languages +cs/0703091 Artificial Intelligence +cs/0703107 Networking and Internet Architecture +funct-an/9411005 Functional Analysis +gr-qc/0701158 +gr-qc/9211007 +gr-qc/9302022 +gr-qc/9306019 +gr-qc/9306031 +gr-qc/9307007 +gr-qc/9309009 +gr-qc/9402016 +gr-qc/9406035 +hep-lat/0702009 Lattice +hep-lat/0703010 Lattice +hep-lat/9207009 Lattice +hep-lat/9207010 Lattice +hep-lat/9305015 Lattice +hep-lat/9311041 Lattice +hep-lat/9401018 Lattice +hep-ph/0701092 Phenomenology +hep-ph/0701114 Phenomenology +hep-ph/0701195 Phenomenology +hep-ph/0703052 Phenomenology +hep-ph/0703290 Phenomenology +hep-ph/9204213 Phenomenology +hep-ph/9210237 Phenomenology +hep-ph/9211335 Phenomenology +hep-ph/9212257 Phenomenology +hep-ph/9302264 Phenomenology +hep-ph/9303251 Phenomenology +hep-ph/9303311 Phenomenology +hep-ph/9305240 Phenomenology +hep-ph/9306287 Phenomenology +hep-ph/9307278 Phenomenology +hep-ph/9309211 Phenomenology +hep-ph/9309240 Phenomenology +hep-ph/9309281 Phenomenology +hep-ph/9401202 Phenomenology +hep-ph/9401312 Phenomenology +hep-ph/9402209 Phenomenology +hep-ph/9402287 Phenomenology +hep-ph/9403238 Phenomenology +hep-ph/9405397 Phenomenology +hep-ph/9406305 Phenomenology +hep-ph/9406358 Phenomenology +hep-ph/9409258 Phenomenology +hep-ph/9409259 Phenomenology +hep-ph/9410292 Phenomenology +hep-ph/9411289 Phenomenology +hep-th/9204065 Theory +hep-th/9205076 Theory +hep-th/9207005 Theory +hep-th/9208078 Theory +hep-th/9210026 Theory +hep-th/9211060 Theory +hep-th/9212003 Theory +hep-th/9212046 Theory +hep-th/9303173 Theory +hep-th/9303174 Theory +hep-th/9309099 Theory +hep-th/9310093 Theory +hep-th/9311003 Theory +hep-th/9312068 Theory +hep-th/9312085 Theory +hep-th/9401099 Theory +hep-th/9401161 Theory +hep-th/9404035 Theory +hep-th/9405078 Theory +hep-th/9405161 Theory +hep-th/9407079 Theory +hep-th/9408003 Theory +hep-th/9408117 Theory +hep-th/9410017 Theory +hep-th/9410056 Theory +hep-th/9410069 Theory +hep-th/9410230 Theory +hep-th/9411095 Theory +hep-th/9412209 Theory +math-ph/0703010 +math/0701088 Statistics Theory +math/0701142 Statistics Theory +math/0701272 Complex Variables +math/0701504 K-Theory and Homology +math/0701680 Algebraic Geometry +math/0701845 Optimization and Control +math/0701858 Analysis of PDEs +math/0701910 Probability +math/0701915 Numerical Analysis +math/0701924 Probability +math/0701926 Functional Analysis +math/0702050 Probability +math/0702255 Analysis of PDEs +math/0702318 Analysis of PDEs +math/0702368 Commutative Algebra +math/0702446 Classical Analysis and ODEs +math/0702609 Statistics Theory +math/0702656 Analysis of PDEs +math/0702674 Numerical Analysis +math/0702683 Statistics Theory +math/0702687 Optimization and Control +math/0702694 Analysis of PDEs +math/0702701 Statistics Theory +math/0702706 Statistics Theory +math/0702707 Analysis of PDEs +math/0702794 Functional Analysis +math/0702795 Functional Analysis +math/0702796 Functional Analysis +math/0702866 Statistics Theory +math/0702873 Probability +math/0702875 Probability +math/0703031 Combinatorics +math/0703056 Statistics Theory +math/0703377 Optimization and Control +math/0703415 Metric Geometry +math/0703640 Analysis of PDEs +math/0703765 Algebraic Topology +math/0703787 Probability +math/0703793 Probability +math/0703913 Probability +nucl-ex/0701072 +nucl-th/9210007 +nucl-th/9305013 +nucl-th/9310031 +nucl-th/9312007 +nucl-th/9401013 +nucl-th/9402025 +nucl-th/9403007 +nucl-th/9403017 +nucl-th/9403018 +nucl-th/9405014 +nucl-th/9412015 +patt-sol/9305008 Pattern Formation and Solitons +patt-sol/9403001 Pattern Formation and Solitons +physics/0701032 Classical Physics +physics/0701033 Classical Physics +physics/0701036 Biological Physics +physics/0701047 Classical Physics +physics/0701048 Classical Physics +physics/0701050 Classical Physics +physics/0701064 Classical Physics +physics/0701066 Classical Physics +physics/0701119 Classical Physics +physics/0701121 Classical Physics +physics/0701131 Fluid Dynamics +physics/0701285 Medical Physics +physics/0701303 Atomic Physics +physics/0701341 Classical Physics +physics/0702173 Fluid Dynamics +physics/0702189 Instrumentation and Detectors +physics/0702195 Optics +physics/0702221 General Physics +physics/0702222 General Physics +physics/0702223 General Physics +physics/0703110 Optics +physics/0703131 Atomic Physics +physics/0703147 Atomic Physics +physics/0703169 Optics +physics/0703236 Medical Physics +q-bio/0701016 Other Quantitative Biology +q-bio/0701026 Tissues and Organs +q-bio/0701040 Populations and Evolution +q-bio/0701044 Populations and Evolution +q-bio/0702009 Populations and Evolution +q-bio/0702058 Quantitative Methods +q-bio/0702060 Quantitative Methods +q-bio/0703006 Genomics +quant-ph/0507279 +quant-ph/0611254 +quant-ph/0701049 +quant-ph/0701087 +quant-ph/0701140 +quant-ph/0701176 +quant-ph/0701222 +quant-ph/0703188 +0706.3565 Data Structures and Algorithms +0709.0061 +0710.5578 +0802.4266 Representation Theory +0803.3800 +0811.0692 +0908.3134 Plasma Physics +0911.1960 Populations and Evolution +1002.2062 Cosmology and Nongalactic Astrophysics +1006.1982 Cosmology and Nongalactic Astrophysics +1012.0596 Logic +1103.4979 Databases +1105.0260 Differential Geometry +1105.1430 Statistics Theory +1107.2923 Astrophysics of Galaxies +1110.6178 Instrumentation and Methods for Astrophysics +1202.3788 Cosmology and Nongalactic Astrophysics +1203.1887 Solar and Stellar Astrophysics +1204.0292 Cosmology and Nongalactic Astrophysics +1204.5193 Solar and Stellar Astrophysics +1207.2481 Earth and Planetary Astrophysics +1208.2717 Solar and Stellar Astrophysics +1209.4075 Representation Theory +1211.1203 Representation Theory +1211.4529 Astrophysics of Galaxies +1301.1140 Representation Theory +1302.3281 Combinatorics +1303.5265 Category Theory +1304.0136 Solar and Stellar Astrophysics +1304.1879 Materials Science +1304.3487 Dynamical Systems +1305.2589 Algebraic Topology +1307.1353 Computational Complexity +1308.1459 Theory +1308.6010 Cosmology and Nongalactic Astrophysics +1309.2658 High Energy Astrophysical Phenomena +1309.5382 Cosmology and Nongalactic Astrophysics +1309.6340 Dynamical Systems +1310.4071 Algebraic Geometry +1311.1543 Statistical Mechanics +1311.3240 Combinatorics +1311.3267 Dynamical Systems +1312.2264 Cosmology and Nongalactic Astrophysics +1312.5969 Dynamical Systems +1401.2638 Group Theory +1401.5701 Tissues and Organs +1401.6133 Differential Geometry +1401.6143 Differential Geometry +1401.6329 Number Theory +1401.6451 Algebraic Topology +1401.7292 Dynamical Systems +1402.0969 Probability +1402.3302 Cosmology and Nongalactic Astrophysics +1402.5920 Materials Science +1402.7134 Experiment +1402.7235 Combinatorics +1403.2016 Dynamical Systems +1404.0599 Dynamical Systems +1404.0616 Dynamical Systems +1404.0899 High Energy Astrophysical Phenomena +1404.4188 High Energy Astrophysical Phenomena +1404.6333 Representation Theory +1404.7838 Algebraic Geometry +1405.2487 Probability +1406.0299 Rings and Algebras +1406.1171 Phenomenology +1406.3250 Earth and Planetary Astrophysics +1406.4710 Computation and Language +1406.5594 Chemical Physics +1406.6951 Probability +1407.1177 Analysis of PDEs +1407.2119 Experiment +1407.2841 +1407.4467 Theory +1407.6569 Mesoscale and Nanoscale Physics +1407.6795 Strongly Correlated Electrons +1407.7419 Statistical Mechanics +1407.8025 +1409.3998 +1409.5215 Probability +1409.7201 +1410.4909 Experiment +1410.8535 Strongly Correlated Electrons +1411.1234 Mesoscale and Nanoscale Physics +1411.4502 Mesoscale and Nanoscale Physics +1411.5565 Dynamical Systems +1412.2142 +1412.2527 Superconductivity +1412.5549 Number Theory +1412.6928 Dynamical Systems +1412.7050 Astrophysics of Galaxies +1501.00248 Algebraic Geometry +1501.05378 Theory +1502.02069 Statistics Theory +1502.02619 Group Theory +1502.03273 Computer Vision and Pattern Recognition +1502.04654 Statistics Theory +1502.05014 Commutative Algebra +1502.05972 Statistical Mechanics +1502.06098 Optimization and Control +1502.07334 Machine Learning +1502.07728 Fluid Dynamics +1503.00848 Computer Vision and Pattern Recognition +1503.01932 Statistical Mechanics +1503.04179 Optimization and Control +1503.06117 Superconductivity +1503.07399 Metric Geometry +1504.00044 Analysis of PDEs +1504.00369 Mesoscale and Nanoscale Physics +1504.00404 Astrophysics of Galaxies +1504.00665 Functional Analysis +1504.02759 Theory +1504.03269 Cosmology and Nongalactic Astrophysics +1504.03885 Spectral Theory +1504.05006 Machine Learning +1504.06526 Information Theory +1505.01540 +1505.02014 Statistical Mechanics +1505.02159 Astrophysics of Galaxies +1505.03271 Fluid Dynamics +1505.03503 +1505.04034 High Energy Astrophysical Phenomena +1505.04792 Astrophysics of Galaxies +1505.05666 Mesoscale and Nanoscale Physics +1505.07186 Discrete Mathematics +1505.07865 Numerical Analysis +1506.00682 Computer Science and Game Theory +1506.01119 +1506.01147 Solar and Stellar Astrophysics +1506.01156 Theory +1506.01605 Differential Geometry +1506.02408 Solar and Stellar Astrophysics +1506.02466 +1506.03007 +1506.03542 +1506.05108 +1506.05295 Cosmology and Nongalactic Astrophysics +1506.05354 Number Theory +1506.05766 +1506.05873 Theory +1506.06585 Strongly Correlated Electrons +1506.07048 Strongly Correlated Electrons +1506.07605 +1506.07662 Soft Condensed Matter +1506.07901 Mesoscale and Nanoscale Physics +1506.08074 Statistical Mechanics +1507.01719 Information Theory +1507.02490 Computational Physics +1507.03604 Astrophysics of Galaxies +1507.04118 Statistics Theory +1507.04760 Computer Vision and Pattern Recognition +1507.05587 +1507.05606 Strongly Correlated Electrons +1507.05702 Strongly Correlated Electrons +1507.05745 Mesoscale and Nanoscale Physics +1507.06154 Combinatorics +1507.06625 Theory +1507.06921 Differential Geometry +1507.07567 Phenomenology +1507.07591 +1507.07927 Phenomenology +1507.07992 Computational Physics +1507.08353 Solar and Stellar Astrophysics +1507.08513 Strongly Correlated Electrons +1508.00052 Phenomenology +1508.00094 Computational Complexity +1508.01034 Cosmology and Nongalactic Astrophysics +1508.02271 +1508.02895 Biological Physics +1508.03016 Quantum Gases +1508.04323 Phenomenology +1508.04455 High Energy Astrophysical Phenomena +1508.04590 Strongly Correlated Electrons +1508.04762 Phenomenology +1508.04797 +1508.04966 Astrophysics of Galaxies +1508.05444 Materials Science +1508.07125 Strongly Correlated Electrons +1508.07665 Materials Science +1508.07752 +1508.07924 Biological Physics +1509.00470 Phenomenology +1509.01589 Cosmology and Nongalactic Astrophysics +1509.01935 Mesoscale and Nanoscale Physics +1509.02214 Probability +1509.02258 Mesoscale and Nanoscale Physics +1509.02285 Solar and Stellar Astrophysics +1509.02573 +1509.03323 High Energy Astrophysical Phenomena +1509.03551 Chaotic Dynamics +1509.04550 Strongly Correlated Electrons +1509.04951 Plasma Physics +1509.04968 Phenomenology +1509.05300 Phenomenology +1509.05496 Soft Condensed Matter +1509.05814 Atomic Physics +1509.05824 +1509.05918 +1509.06113 Learning +1509.06408 Metric Geometry +1509.06521 Experiment +1509.06664 Computation and Language +1509.06787 Materials Science +1509.07822 Materials Science +1509.07904 Phenomenology +1509.08433 Strongly Correlated Electrons +1509.08488 Superconductivity +1509.08518 Strongly Correlated Electrons +1509.08720 Phenomenology +1509.08810 Mesoscale and Nanoscale Physics +1509.08929 Phenomenology +1509.09061 Theory +1510.00590 High Energy Astrophysical Phenomena +1510.00895 Mesoscale and Nanoscale Physics +1510.01082 +1510.01227 Pattern Formation and Solitons +1510.01332 Theory +1510.01756 Cosmology and Nongalactic Astrophysics +1510.01969 Theory +1510.02280 +1510.02407 +1510.02725 +1510.03131 +1510.03200 Classical Analysis and ODEs +1510.03254 Plasma Physics +1510.03256 Chemical Physics +1510.03421 Computation and Language +1510.03621 Instrumentation and Methods for Astrophysics +1510.03657 Experiment +1510.03905 +1510.03942 Statistical Mechanics +1510.04262 Mesoscale and Nanoscale Physics +1510.04339 Representation Theory +1510.04531 +1510.05096 Group Theory +1510.05452 Discrete Mathematics +1510.05469 Operator Algebras +1510.05685 Materials Science +1510.05834 +1510.06103 Optics +1510.06113 Robotics +1510.06475 Phenomenology +1510.06742 Phenomenology +1510.06764 +1510.06789 +1510.07395 Lattice +1510.07495 Solar and Stellar Astrophysics +1510.07697 Phenomenology +1510.07946 Mesoscale and Nanoscale Physics +1510.08032 Atomic Physics +1510.08180 Materials Science +1510.08194 Optics +1510.08305 Phenomenology +1510.08391 Materials Science +1510.08412 Strongly Correlated Electrons +1510.08423 Optics +1510.08549 Statistical Mechanics +1510.08864 Theory +1511.00051 Emerging Technologies +1511.00110 +1511.00178 Differential Geometry +1511.00218 Strongly Correlated Electrons +1511.00439 +1511.00866 Mesoscale and Nanoscale Physics +1511.01081 Fluid Dynamics +1511.01504 Strongly Correlated Electrons +1511.02220 +1511.02330 Mesoscale and Nanoscale Physics +1511.02428 Experiment +1511.02593 +1511.02745 Theory +1511.02808 Cosmology and Nongalactic Astrophysics +1511.02915 Theory +1511.03223 +1511.03343 Phenomenology +1511.03856 Strongly Correlated Electrons +1511.03956 Lattice +1511.04335 Cosmology and Nongalactic Astrophysics +1511.04489 +1511.04548 Atomic Physics +1511.04653 Cosmology and Nongalactic Astrophysics +1511.04820 Materials Science +1511.04845 Phenomenology +1511.04910 +1511.04982 Plasma Physics +1511.05255 Quantum Gases +1511.05307 Astrophysics of Galaxies +1511.05320 Quantum Gases +1511.05389 Computation and Language +1511.05584 Phenomenology +1511.05666 Computer Vision and Pattern Recognition +1511.05834 Information Theory +1511.06114 Learning +1511.06281 Learning +1511.06361 Learning +1511.06432 Computer Vision and Pattern Recognition +1511.06448 Learning +1511.06455 Learning +1511.06657 +1511.07433 Phenomenology +1511.07758 Mesoscale and Nanoscale Physics +1511.08503 Solar and Stellar Astrophysics +1511.08633 Mesoscale and Nanoscale Physics +1511.08717 Plasma Physics +1511.08898 Mesoscale and Nanoscale Physics +1511.09260 +1511.09428 Materials Science +1512.00008 Astrophysics of Galaxies +1512.00669 Mesoscale and Nanoscale Physics +1512.01063 Strongly Correlated Electrons +1512.01232 Theory +1512.02480 Number Theory +1512.02516 +1512.02986 Solar and Stellar Astrophysics +1512.03244 Soft Condensed Matter +1512.03425 Functional Analysis +1512.03527 Strongly Correlated Electrons +1512.03876 +1512.04120 Astrophysics of Galaxies +1512.04694 Soft Condensed Matter +1512.04827 +1512.05012 Mesoscale and Nanoscale Physics +1512.05191 +1512.05282 +1512.05286 Lattice +1512.05370 +1512.05873 Lattice +1512.06083 Phenomenology +1512.06676 +1512.06744 Phenomenology +1512.06895 Experiment +1512.06998 Experiment +1512.07708 +1512.07760 Fluid Dynamics +1512.08546 Cryptography and Security +1512.08907 Solar and Stellar Astrophysics +1512.08979 Cosmology and Nongalactic Astrophysics +1512.09224 Materials Science +1601.00376 Cosmology and Nongalactic Astrophysics +1601.00874 Solar and Stellar Astrophysics +1601.01057 Atomic Physics +1601.01599 Solar and Stellar Astrophysics +1601.01696 Astrophysics of Galaxies +1601.01904 Solar and Stellar Astrophysics +1601.02392 Solar and Stellar Astrophysics +1601.03197 Astrophysics of Galaxies +1601.03542 Solar and Stellar Astrophysics +1601.03804 Phenomenology +1601.03818 Statistical Mechanics +1601.04517 Solar and Stellar Astrophysics +1601.04535 Statistical Finance +1601.04727 Instrumentation and Methods for Astrophysics +1601.04728 Biological Physics +1601.04773 +1601.04889 Information Theory +1601.05010 Mesoscale and Nanoscale Physics +1601.05091 Solar and Stellar Astrophysics +1601.05589 Theory +1601.05646 Earth and Planetary Astrophysics +1601.05726 Earth and Planetary Astrophysics +1601.05987 High Energy Astrophysical Phenomena +1601.06196 Mesoscale and Nanoscale Physics +1601.06249 Combinatorics +1601.06970 Astrophysics of Galaxies +1601.06986 Astrophysics of Galaxies +1601.07015 Phenomenology +1601.07064 Classical Physics +1601.07682 Strongly Correlated Electrons +1602.00091 High Energy Astrophysical Phenomena +1602.00211 Phenomenology +1602.00429 Commutative Algebra +1602.00542 Information Theory +1602.00669 Cell Behavior +1602.00893 Mesoscale and Nanoscale Physics +1602.00907 Phenomenology +1602.01030 Phenomenology +1602.01141 +1602.01331 Cosmology and Nongalactic Astrophysics +1602.01405 Instrumentation and Detectors +1602.01433 High Energy Astrophysical Phenomena +1602.01787 Methodology +1602.01788 Methodology +1602.01945 Strongly Correlated Electrons +1602.02121 Cosmology and Nongalactic Astrophysics +1602.02655 Biological Physics +1602.03014 Machine Learning +1602.04266 Superconductivity +1602.04549 Analysis of PDEs +1602.04927 Optics +1602.05084 Probability +1602.05519 Mesoscale and Nanoscale Physics +1602.05875 Machine Learning +1602.06379 +1602.06381 +1602.06623 Instrumentation and Methods for Astrophysics +1602.06709 Distributed, Parallel, and Cluster Computing +1602.07052 +1602.07199 Human-Computer Interaction +1602.07334 Solar and Stellar Astrophysics +1602.07356 +1602.07511 +1602.08057 Optics +1602.08081 Plasma Physics +1602.08127 Computer Vision and Pattern Recognition +1602.08239 Disordered Systems and Neural Networks +1602.08396 Optimization and Control +1602.08543 Plasma Physics +1602.08706 Geophysics +1602.08735 Distributed, Parallel, and Cluster Computing +1602.08796 Probability +1602.08834 Systems and Control +1602.08874 Instrumentation and Detectors +1602.08906 Mesoscale and Nanoscale Physics +1602.08987 Systems and Control +1602.09061 Logic in Computer Science +1602.09078 Pricing of Securities +1602.09114 Superconductivity +1603.00003 +1603.00004 Number Theory +1603.00005 Accelerator Physics +1603.00006 Combinatorics +1603.00007 Dynamical Systems +1603.00010 Instrumentation and Detectors +1603.00012 Combinatorics +1603.00013 Instrumentation and Detectors +1603.00016 Instrumentation and Detectors +1603.00040 Medical Physics +1603.00045 Commutative Algebra +1603.00047 Algebraic Topology +1603.00049 Dynamical Systems +1603.00050 Applications +1603.00051 Combinatorics +1603.00053 Dynamical Systems +1603.00058 Neurons and Cognition +1603.00059 Social and Information Networks +1603.00060 Computational Geometry +1603.00061 Numerical Analysis +1603.00063 Optics +1603.00064 Differential Geometry +1603.00067 Theory +1603.00069 Computation +1603.00072 Pattern Formation and Solitons +1603.00073 Algebraic Geometry +1603.00076 Dynamical Systems +1603.00079 Dynamical Systems +1603.00080 Number Theory +1603.00081 Probability +1603.00085 Combinatorics +1603.00087 Cryptography and Security +1603.00088 Theory +1603.00091 Data Structures and Algorithms +1603.00092 Information Theory +1603.00097 Neurons and Cognition +1603.00100 Cryptography and Security +1603.00103 Algebraic Topology +1603.00107 Dynamical Systems +1603.00108 Quantum Algebra +1603.00109 Rings and Algebras +1603.00111 Materials Science +1603.00113 Dynamical Systems +1603.00115 Solar and Stellar Astrophysics +1603.00122 Dynamical Systems +1603.00124 Computer Vision and Pattern Recognition +1603.00126 Statistics Theory +1603.00128 Computer Vision and Pattern Recognition +1603.00131 Distributed, Parallel, and Cluster Computing +1603.00132 Computer Vision and Pattern Recognition +1603.00133 Information Theory +1603.00136 High Energy Astrophysical Phenomena +1603.00137 Probability +1603.00138 High Energy Astrophysical Phenomena +1603.00139 Dynamical Systems +1603.00140 High Energy Astrophysical Phenomena +1603.00141 Solar and Stellar Astrophysics +1603.00143 High Energy Astrophysical Phenomena +1603.00150 Computer Vision and Pattern Recognition +1603.00153 Mesoscale and Nanoscale Physics +1603.00154 Information Theory +1603.00157 Analysis of PDEs +1603.00161 Number Theory +1603.00163 Strongly Correlated Electrons +1603.00168 Numerical Analysis +1603.00169 Information Theory +1603.00171 Adaptation and Self-Organizing Systems +1603.00178 +1603.00182 Cryptography and Security +1603.00183 Functional Analysis +1603.00186 Commutative Algebra +1603.00188 Optics +1603.00190 Materials Science +1603.00192 Phenomenology +1603.00193 Algebraic Geometry +1603.00194 Soft Condensed Matter +1603.00198 Combinatorics +1603.00200 Neurons and Cognition +1603.00203 Information Theory +1603.00207 Number Theory +1603.00208 Probability +1603.00209 Operator Algebras +1603.00210 Numerical Analysis +1603.00213 Data Structures and Algorithms +1603.00214 Statistics Theory +1603.00215 +1603.00216 Materials Science +1603.00222 Differential Geometry +1603.00228 Phenomenology +1603.00231 High Energy Astrophysical Phenomena +1603.00234 Algebraic Geometry +1603.00240 Materials Science +1603.00242 Group Theory +1603.00254 Computational Complexity +1603.00257 Materials Science +1603.00259 Probability +1603.00260 Information Retrieval +1603.00268 Dynamical Systems +1603.00271 Analysis of PDEs +1603.00273 Information Theory +1603.00274 Theory +1603.00278 Quantitative Methods +1603.00280 Differential Geometry +1603.00282 Combinatorics +1603.00284 Machine Learning +1603.00289 Numerical Analysis +1603.00292 +1603.00294 Differential Geometry +1603.00295 Robotics +1603.00297 Computation +1603.00298 +1603.00299 Popular Physics +1603.00300 Optimization and Control +1603.00302 Information Theory +1603.00303 General Mathematics +1603.00312 Combinatorics +1603.00315 +1603.00317 Numerical Analysis +1603.00318 +1603.00320 Fluid Dynamics +1603.00324 Functional Analysis +1603.00327 Representation Theory +1603.00328 Plasma Physics +1603.00330 Group Theory +1603.00331 Algebraic Geometry +1603.00334 Commutative Algebra +1603.00337 Phenomenology +1603.00340 Dynamical Systems +1603.00342 History and Philosophy of Physics +1603.00343 +1603.00345 +1603.00351 Computation +1603.00353 History and Philosophy of Physics +1603.00354 Spectral Theory +1603.00356 Superconductivity +1603.00365 Probability +1603.00368 Cosmology and Nongalactic Astrophysics +1603.00371 Optics +1603.00372 Materials Science +1603.00373 Representation Theory +1603.00374 Number Theory +1603.00378 Fluid Dynamics +1603.00379 Differential Geometry +1603.00382 Functional Analysis +1603.00384 Metric Geometry +1603.00390 Probability +1603.00393 Methodology +1603.00395 Social and Information Networks +1603.00396 Theory +1603.00397 Neurons and Cognition +1603.00400 Databases +1603.00403 Algebraic Geometry +1603.00406 Networking and Internet Architecture +1603.00407 Geometric Topology +1603.00411 Algebraic Geometry +1603.00415 Neurons and Cognition +1603.00417 Representation Theory +1603.00418 Software Engineering +1603.00423 Artificial Intelligence +1603.00426 Quantum Algebra +1603.00427 Systems and Control +1603.00428 Analysis of PDEs +1603.00429 Numerical Analysis +1603.00430 Analysis of PDEs +1603.00431 Programming Languages +1603.00438 Computer Vision and Pattern Recognition +1603.00441 Human-Computer Interaction +1603.00443 Mesoscale and Nanoscale Physics +1603.00444 Methodology +1603.00456 Solar and Stellar Astrophysics +astro-ph/0610528 +cond-mat/0302539 Strongly Correlated Electrons +math/9908107 Algebraic Geometry +quant-ph/0409148 +1609.01829 Computer Vision and Pattern Recognition +1609.06830 Statistics Theory +1609.07035 Computation and Language +0802.1497 Differential Geometry +0805.4775 Differential Geometry +0810.4478 Differential Geometry +1012.3941 Differential Geometry +1102.4255 Functional Analysis +1107.3822 Differential Geometry +1109.2307 Quantum Gases +1110.2900 +1205.0796 Statistics Theory +1205.2339 +1208.6409 Classical Physics +1209.5993 Computational Complexity +1211.7177 Computational Physics +1304.2899 Optics +1307.7669 Statistical Mechanics +1308.0751 Algebraic Geometry +1309.6260 Differential Geometry +1309.6727 Information Theory +1311.7532 Mesoscale and Nanoscale Physics +1402.2985 Group Theory +1402.4844 Learning +1403.3320 Numerical Analysis +1403.5037 Differential Geometry +1404.7193 Dynamical Systems +1404.7341 Commutative Algebra +1405.0025 Geometric Topology +1405.6707 Social and Information Networks +1406.1568 Populations and Evolution +1406.2290 Theory +1406.3292 Group Theory +1407.4084 Analysis of PDEs +1409.0717 Optics +1409.6659 Combinatorics +1410.1052 Logic +1410.3120 Optimization and Control +1410.5131 Logic in Computer Science +1410.5324 Subcellular Processes +1410.6729 Dynamical Systems +1411.2468 Metric Geometry +1411.6208 Geometric Topology +1412.0703 Combinatorics +1501.02127 Analysis of PDEs +1502.03296 Physics and Society +1503.00526 +1503.00768 Geometric Topology +1503.01676 Networking and Internet Architecture +1503.02343 Probability +1503.03362 Category Theory +1503.06200 Strongly Correlated Electrons +1503.08356 Machine Learning +1504.03685 Astrophysics of Galaxies +1504.05743 Social and Information Networks +1504.06599 +1505.03803 Dynamical Systems +1505.05235 Statistics Theory +1505.06275 Applications +1505.06950 Classical Analysis and ODEs +1505.07818 Machine Learning +1506.02323 Molecular Networks +1506.04180 Spectral Theory +1506.05333 Chaotic Dynamics +1506.05727 Superconductivity +1506.07933 Distributed, Parallel, and Cluster Computing +1507.01870 Theory +1507.02089 Combinatorics +1507.03034 Algebraic Geometry +1507.03913 Category Theory +1507.05995 Optimization and Control +1508.00159 Algebraic Topology +1508.00477 Commutative Algebra +1508.03756 Fluid Dynamics +1508.04763 Cosmology and Nongalactic Astrophysics +1508.05917 Quantum Gases +1508.06229 Group Theory +1508.06265 Numerical Analysis +1508.06678 +1508.07240 Numerical Analysis +1509.00848 Chemical Physics +1509.07689 Algebraic Geometry +1509.07870 Astrophysics of Galaxies +1509.08258 Experiment +1509.08875 +1509.09183 Mesoscale and Nanoscale Physics +1510.00754 +1510.01638 Metric Geometry +1510.02896 Differential Geometry +1510.02954 Probability +1510.03335 Lattice +1510.06619 Numerical Analysis +1510.06991 +1510.08663 Combinatorics +1511.00144 Number Theory +1511.00400 Geometric Topology +1511.00467 Optics +1511.01847 Algebraic Geometry +1511.03722 Learning +1511.04807 Cosmology and Nongalactic Astrophysics +1511.05594 Classical Physics +1511.06247 Learning +1511.06371 Phenomenology +1511.08718 Computational Finance +1512.00185 +1512.00341 Soft Condensed Matter +1512.01345 Cosmology and Nongalactic Astrophysics +1512.01503 Artificial Intelligence +1512.02885 +1512.05540 History and Philosophy of Physics +1512.06461 Experiment +1512.06637 Distributed, Parallel, and Cluster Computing +1512.08002 Experiment +1601.00621 Cosmology and Nongalactic Astrophysics +1601.01664 Materials Science +1601.02171 +1601.02174 +1601.04307 Algebraic Geometry +1601.04809 +1601.06794 Theory +1601.07321 Pattern Formation and Solitons +1601.07443 +1601.07641 Computational Physics +1602.00338 Mesoscale and Nanoscale Physics +1602.00648 Information Theory +1602.00654 Representation Theory +1602.01138 Instrumentation and Detectors +1602.02350 Learning +1602.02373 Machine Learning +1602.02660 Learning +1602.04664 +1602.05113 Logic in Computer Science +1602.05164 Group Theory +1602.05768 Distributed, Parallel, and Cluster Computing +1602.06527 High Energy Astrophysical Phenomena +1602.07653 Theory +1602.07694 High Energy Astrophysical Phenomena +1602.08306 Functional Analysis +1602.08797 Superconductivity +1603.00375 Computation and Language +1603.01450 Data Structures and Algorithms +1603.01912 Machine Learning +1603.02709 Solar and Stellar Astrophysics +1603.02883 Materials Science +1603.05124 Combinatorics +1603.05795 Combinatorics +1603.05954 Probability +1603.06264 Theory +1603.07412 Strongly Correlated Electrons +1603.07419 Systems and Control +1603.07873 Superconductivity +1603.08202 Logic +1603.09392 Analysis of PDEs +1604.00716 Phenomenology +1604.02915 Theory +1604.03853 Learning +1604.08018 Strongly Correlated Electrons +1604.08531 Rings and Algebras +1604.08806 Computer Vision and Pattern Recognition +1604.08822 Logic +1605.01444 Solar and Stellar Astrophysics +1605.01863 Probability +1605.02698 Quantum Gases +1605.03590 +1605.03974 Theory +1605.04348 Differential Geometry +1605.04409 Algebraic Geometry +1605.04676 +1605.04833 Medical Physics +1605.05579 Computer Vision and Pattern Recognition +1605.06151 Optics +1605.06279 Statistical Mechanics +1605.06485 Probability +1605.06573 Earth and Planetary Astrophysics +1605.06866 Statistics Theory +1605.07287 Optics +1605.07360 Phenomenology +1605.07367 Learning +1605.07383 Neurons and Cognition +1605.07588 Learning +1605.07596 Machine Learning +1605.07607 Combinatorics +1605.07696 Machine Learning +1605.07705 Multimedia +1605.07761 Systems and Control +1605.07825 Earth and Planetary Astrophysics +1605.07881 Metric Geometry +1605.07941 Geometric Topology +1605.07969 Artificial Intelligence +1605.08017 +1605.08032 Astrophysics of Galaxies +1605.08033 Optics +1605.08035 Human-Computer Interaction +1605.08058 Plasma Physics +1605.08063 Number Theory +1605.08065 Cryptography and Security +1605.08066 Discrete Mathematics +1605.08068 Computer Vision and Pattern Recognition +1605.08069 Optics +1605.08070 Statistical Mechanics +1605.08075 Theory +1605.08076 Accelerator Physics +1605.08078 Methodology +1605.08079 Materials Science +1605.08080 Chemical Physics +1605.08082 Geometric Topology +1605.08083 Analysis of PDEs +1605.08085 Astrophysics of Galaxies +1605.08087 Theory +1605.08089 Classical Analysis and ODEs +1605.08091 Lattice +1605.08094 Geometric Topology +1605.08095 Numerical Analysis +1605.08096 Logic in Computer Science +1605.08099 Economics +1605.08101 Optimization and Control +1605.08102 Information Theory +1605.08105 Physics Education +1605.08106 Logic in Computer Science +1605.08107 Data Structures and Algorithms +1605.08108 Optimization and Control +1605.08109 Rings and Algebras +1605.08112 History and Overview +1605.08115 Rings and Algebras +1605.08116 Theory +1605.08117 Human-Computer Interaction +1605.08120 Optics +1605.08122 Probability +1605.08123 Combinatorics +1605.08125 Computer Vision and Pattern Recognition +1605.08126 Computational Physics +1605.08127 Geometric Topology +1605.08131 Algebraic Topology +1605.08134 Numerical Analysis +1605.08139 Medical Physics +1605.08142 Analysis of PDEs +1605.08145 Fluid Dynamics +1605.08146 Performance +1605.08147 Category Theory +1605.08149 Hardware Architecture +1605.08150 Artificial Intelligence +1605.08151 Computer Vision and Pattern Recognition +1605.08152 Statistics Theory +1605.08153 Computer Vision and Pattern Recognition +1605.08155 Soft Condensed Matter +1605.08156 +1605.08158 Materials Science +1605.08159 Software Engineering +1605.08160 Complex Variables +1605.08161 Spectral Theory +1605.08163 Computer Vision and Pattern Recognition +1605.08165 Learning +1605.08167 Analysis of PDEs +1605.08169 Number Theory +1605.08171 +1605.08173 Fluid Dynamics +1605.08175 Functional Analysis +1605.08176 Materials Science +1605.08180 Social and Information Networks +1605.08181 +1605.08182 +1605.08184 Cosmology and Nongalactic Astrophysics +1605.08188 Learning +1605.08190 Phenomenology +1605.08191 Analysis of PDEs +1605.08192 Optics +1605.08194 Data Structures and Algorithms +1605.08196 Group Theory +1605.08199 Quantum Gases +1605.08203 Differential Geometry +1605.08204 Complex Variables +1605.08205 Space Physics +1605.08210 Strongly Correlated Electrons +1605.08214 Algebraic Geometry +1605.08218 Phenomenology +1605.08221 Robotics +1605.08239 Space Physics +1605.08242 Learning +1605.08243 Social and Information Networks +1605.08245 Number Theory +1605.08247 Computer Vision and Pattern Recognition +1605.08249 Algebraic Geometry +1605.08252 Materials Science +1605.08255 +1605.08257 Learning +1605.08258 Analysis of PDEs +1605.08260 Functional Analysis +1605.08261 Human-Computer Interaction +1605.08266 Group Theory +1605.08268 General Physics +1605.08270 Probability +1605.08271 General Physics +1605.08272 Cosmology and Nongalactic Astrophysics +1605.08274 General Physics +1605.08275 Probability +1605.08279 Chaotic Dynamics +1605.08280 Rings and Algebras +1605.08284 Optimization and Control +1605.08289 Complex Variables +1605.08290 Numerical Analysis +1605.08291 Strongly Correlated Electrons +1605.08292 Probability +1605.08295 Optics +1605.08297 Geometric Topology +1605.08299 Machine Learning +1605.08300 Information Theory +1605.08302 Phenomenology +1605.08304 Differential Geometry +1605.08305 Algebraic Topology +1605.08306 Materials Science +1605.08307 Algebraic Geometry +1605.08309 Networking and Internet Architecture +1605.08312 Analysis of PDEs +1605.08315 Analysis of PDEs +1605.08316 +1605.08317 Rings and Algebras +1605.08318 Astrophysics of Galaxies +1605.08319 Data Structures and Algorithms +1605.08321 Networking and Internet Architecture +1605.08323 Computer Vision and Pattern Recognition +1605.08325 Learning +1605.08326 Analysis of PDEs +1605.08328 Methodology +1605.08330 Algebraic Geometry +1605.08331 Astrophysics of Galaxies +1605.08332 Numerical Analysis +1605.08335 +1605.08336 Information Theory +1605.08340 Optimization and Control +1605.08344 Number Theory +1605.08348 +1605.08349 +1605.08350 Computer Vision and Pattern Recognition +1605.08351 High Energy Astrophysical Phenomena +1605.08353 Networking and Internet Architecture +1605.08358 Classical Analysis and ODEs +1605.08359 Computer Vision and Pattern Recognition +1605.08363 +1605.08364 Optimization and Control +1605.08365 Mesoscale and Nanoscale Physics +1605.08368 Dynamical Systems +1605.08369 Applications +1605.08370 Learning +1605.08371 Computational Physics +1605.08374 Learning +1605.08375 Learning +1605.08379 Space Physics +1605.08381 Information Theory +1605.08386 Combinatorics +1605.08388 Materials Science +1605.08390 Artificial Intelligence +1605.08391 Optimization and Control +1605.08393 Computational Physics +1605.08396 Sound +1605.08397 Computer Vision and Pattern Recognition +1605.08400 Statistics Theory +1605.08401 Computer Vision and Pattern Recognition +1605.08402 Functional Analysis +1605.08403 Discrete Mathematics +1605.08405 Soft Condensed Matter +1605.08408 Phenomenology +1605.08409 Social and Information Networks +1605.08410 Physics and Society +1605.08412 Computer Vision and Pattern Recognition +1605.08413 Cryptography and Security +1605.08416 Combinatorics +1605.08421 Number Theory +1605.08425 Theory +1605.08427 Information Theory +1605.08429 Mesoscale and Nanoscale Physics +1605.08432 +1608.02188 Numerical Analysis +0807.2716 +0901.4604 Computational Finance +0901.4613 Numerical Analysis +0903.2599 Analysis of PDEs +0903.4254 Dynamical Systems +0906.1956 Complex Variables +1004.2802 Logic in Computer Science +1103.5199 Cryptography and Security +1109.3906 +1202.2589 Differential Geometry +1203.4024 Quantum Algebra +1209.2772 Quantitative Methods +1209.3864 Number Theory +1211.0233 Complex Variables +1301.1120 Numerical Analysis +1301.3276 Spectral Theory +1304.5064 Geometric Topology +1304.5067 Group Theory +1304.5645 Probability +1305.3945 Distributed, Parallel, and Cluster Computing +1307.3302 Geometric Topology +1308.6410 Rings and Algebras +1309.0648 Number Theory +1309.0976 Optimization and Control +1309.4343 Analysis of PDEs +1309.6268 Analysis of PDEs +1310.1166 Computational Geometry +1312.0319 Superconductivity +1312.4614 Optics +1402.0405 Number Theory +1403.2984 +1404.0237 Systems and Control +1404.0766 Information Theory +1404.2433 Symplectic Geometry +1406.2974 Group Theory +1406.6514 Statistics Theory +1406.7364 Functional Analysis +1407.0328 Superconductivity +1407.4711 Combinatorics +1409.3696 Formal Languages and Automata Theory +1409.4679 Analysis of PDEs +1409.7306 Mesoscale and Nanoscale Physics +1409.8534 +1410.0257 +1410.2016 Chaotic Dynamics +1410.3552 Numerical Analysis +1410.5278 +1411.3594 +1411.7144 Optics +1411.7222 +1411.7318 Phenomenology +1412.5777 Quantum Algebra +1501.02061 +1501.02063 Optics +1501.02584 Strongly Correlated Electrons +1501.03526 Number Theory +1501.07812 Numerical Analysis +1502.00692 Numerical Analysis +1502.02235 Optics +1502.02725 Distributed, Parallel, and Cluster Computing +1502.02807 K-Theory and Homology +1502.04217 Numerical Analysis +1502.04357 Representation Theory +1502.06267 Probability +1503.02271 Computation +1503.05143 Algebraic Geometry +1504.01659 Dynamical Systems +1504.01993 Geometric Topology +1504.02500 Number Theory +1504.05620 Strongly Correlated Electrons +1504.06103 Computer Vision and Pattern Recognition +1504.06342 Methodology +1505.03200 Number Theory +1505.04440 Quantum Gases +1505.04462 Analysis of PDEs +1505.04996 Probability +1506.03320 Theory +1506.04922 Probability +1506.05283 Group Theory +1506.08316 Multimedia +1506.08365 Complex Variables +1506.08880 +1507.02401 Algebraic Topology +1507.02551 Chaotic Dynamics +1507.05312 +1507.07790 Theory +1507.08237 Analysis of PDEs +1507.08880 Analysis of PDEs +1508.02479 Learning +1508.05883 Differential Geometry +1509.00647 Mesoscale and Nanoscale Physics +1509.02234 Probability +1509.02339 Chaotic Dynamics +1509.02749 +1509.02805 Machine Learning +1509.03271 Methodology +1509.03744 Experiment +1509.04255 +1509.04542 Classical Analysis and ODEs +1509.06410 Algebraic Topology +1509.06934 +1509.07737 Operator Algebras +1509.08131 Materials Science +1509.08181 +1509.08651 Mesoscale and Nanoscale Physics +1510.00420 Biological Physics +1510.00422 Mesoscale and Nanoscale Physics +1510.01379 Quantum Gases +1510.01840 Superconductivity +1510.04216 Mesoscale and Nanoscale Physics +1510.04549 Mesoscale and Nanoscale Physics +1510.04614 Analysis of PDEs +1510.04646 +1510.05014 Statistics Theory +1510.05841 Optimization and Control +1510.06302 Logic +1510.06384 Computational Physics +1510.06859 Probability +1510.06930 +1510.07589 Theory +1510.09153 Mesoscale and Nanoscale Physics +1511.01018 Phenomenology +1511.01135 Optics +1511.02452 Phenomenology +1511.02723 Probability +1511.03265 Phenomenology +1511.04198 +1511.05122 Computer Vision and Pattern Recognition +1511.05380 Computational Physics +1511.05552 Neural and Evolutionary Computing +1511.06125 Computational Physics +1511.07254 Fluid Dynamics +1511.07954 Differential Geometry +1511.08198 Computation and Language +1511.08822 Algebraic Geometry +1511.09040 Mesoscale and Nanoscale Physics +1512.00472 Phenomenology +1512.01311 Astrophysics of Galaxies +1512.01339 Instrumentation and Detectors +1512.03583 Phenomenology +1512.03660 Other Quantitative Biology +1512.04765 +1512.06376 Phenomenology +1512.06556 Mesoscale and Nanoscale Physics +1512.07171 Analysis of PDEs +1512.08998 Physics Education +1601.00473 Digital Libraries +1601.02716 Quantum Gases +1601.03499 +1601.04132 Differential Geometry +1601.07354 Solar and Stellar Astrophysics +1601.07455 Lattice +1601.07918 Representation Theory +1601.08181 Theory +1601.08189 Social and Information Networks +1602.01277 +1602.01326 Statistical Mechanics +1602.02483 Solar and Stellar Astrophysics +1602.03269 Mesoscale and Nanoscale Physics +1602.04632 Materials Science +1602.04915 Machine Learning +1602.06041 Mesoscale and Nanoscale Physics +1602.06920 Computational Geometry +1602.07191 +1602.07437 Phenomenology +1602.08080 Medical Physics +1602.08325 Computer Vision and Pattern Recognition +1602.08725 +1602.08847 Instrumentation and Methods for Astrophysics +1603.00696 Software Engineering +1603.00775 Representation Theory +1603.01015 Materials Science +1603.01032 Computation and Language +1603.01040 Combinatorics +1603.01079 Exactly Solvable and Integrable Systems +1603.01261 Classical Physics +1603.01262 Instrumentation and Methods for Astrophysics +1603.01263 Geophysics +1603.01268 Mesoscale and Nanoscale Physics +1603.01270 +1603.01273 Phenomenology +1603.01289 Dynamical Systems +1603.01295 Statistics Theory +1603.01297 Tissues and Organs +1603.01299 Superconductivity +1603.01300 Computational Physics +1603.01306 Number Theory +1603.01308 Methodology +1603.01311 Differential Geometry +1603.01312 Artificial Intelligence +1603.01313 Performance +1603.01314 +1603.01315 Cryptography and Security +1603.01317 Atmospheric and Oceanic Physics +1603.01321 Atomic Physics +1603.01324 Robotics +1603.01326 Quantum Algebra +1603.01327 Representation Theory +1603.01331 Commutative Algebra +1603.01333 Computation and Language +1603.01334 Functional Analysis +1603.01335 Computers and Society +1603.01336 Information Retrieval +1603.01337 Phenomenology +1603.01338 Symbolic Computation +1603.01340 Information Theory +1603.01345 +1603.01346 Quantum Algebra +1603.01347 Superconductivity +1603.01349 Number Theory +1603.01352 Distributed, Parallel, and Cluster Computing +1603.01355 Analysis of PDEs +1603.01356 Networking and Internet Architecture +1603.01357 Probability +1603.01359 Machine Learning +1603.01367 Human-Computer Interaction +1603.01368 Combinatorics +1603.01369 Human-Computer Interaction +1603.01370 Functional Analysis +1603.01371 Combinatorics +1603.01372 Numerical Analysis +1603.01374 Learning +1603.01375 Analysis of PDEs +1603.01382 Combinatorics +1603.01384 Distributed, Parallel, and Cluster Computing +1603.01392 Networking and Internet Architecture +1603.01393 Information Theory +1603.01394 Combinatorics +1603.01396 High Energy Astrophysical Phenomena +1603.01397 Applications +1603.01403 Differential Geometry +1603.01404 Probability +1603.01407 Software Engineering +1603.01412 Distributed, Parallel, and Cluster Computing +1603.01415 High Energy Astrophysical Phenomena +1603.01416 Economics +1603.01417 Neural and Evolutionary Computing +1603.01422 Combinatorics +1603.01425 Algebraic Topology +1603.01426 Algebraic Geometry +1603.01429 +1603.01433 +1603.01435 Mesoscale and Nanoscale Physics +1603.01436 +1603.01439 Algebraic Geometry +1603.01443 Computer Science and Game Theory +1603.01444 Computer Science and Game Theory +1603.01448 High Energy Astrophysical Phenomena +1603.01451 +1603.01454 Rings and Algebras +1603.01459 Numerical Analysis +1603.01462 General Mathematics +1603.01463 Instrumentation and Methods for Astrophysics +1603.01468 Information Theory +1603.01469 Numerical Analysis +1603.01475 Algebraic Topology +1603.01476 Applications +1603.01478 +1603.01479 +1603.01481 Probability +1603.01483 +1603.01486 Data Structures and Algorithms +1603.01490 High Energy Astrophysical Phenomena +1603.01494 Number Theory +1603.01496 Combinatorics +1603.01498 Combinatorics +1603.01500 Metric Geometry +1603.01501 Superconductivity +1603.01502 Probability +1603.01506 Plasma Physics +1603.01508 Data Structures and Algorithms +1603.01509 Data Analysis, Statistics and Probability +1603.01510 Superconductivity +1603.01511 Social and Information Networks +1603.01512 Data Structures and Algorithms +1603.01514 Computation and Language +1603.01517 Optimization and Control +1603.01518 +1603.01519 Dynamical Systems +1603.01523 Software Engineering +1603.01529 Distributed, Parallel, and Cluster Computing +1603.01530 +1603.01531 Astrophysics of Galaxies +1603.01536 Distributed, Parallel, and Cluster Computing +1603.01538 Analysis of PDEs +1603.01539 +1603.01541 Computation and Language +1603.01544 Instrumentation and Detectors +1603.01550 Rings and Algebras +1603.01551 Computation +1603.01552 Materials Science +1603.01557 +1603.01561 +1603.01564 Robotics +1603.01569 +1603.01570 Social and Information Networks +1603.01571 Biological Physics +1603.01573 Dynamical Systems +1603.01576 Lattice +1603.01577 Differential Geometry +1603.01579 Cell Behavior +1603.01582 Dynamical Systems +1603.01585 Materials Science +1603.01589 Combinatorics +1603.01590 Materials Science +1603.01591 Lattice +1603.01592 Information Theory +1603.01595 Computation and Language +1603.01597 Computation and Language +1603.01600 Probability +1603.01603 Cosmology and Nongalactic Astrophysics +1603.01605 Mesoscale and Nanoscale Physics +1603.01607 Data Structures and Algorithms +astro-ph/0503608 +hep-th/0307135 Theory +math/0207239 Operator Algebras +math/0401340 Operator Algebras +quant-ph/0504018 +0705.1548 Other Quantitative Biology +0809.4288 Soft Condensed Matter +0811.0508 +0907.3979 Materials Science +0912.4760 Neurons and Cognition +1004.0244 General Topology +1006.1855 Strongly Correlated Electrons +1007.4056 Commutative Algebra +1009.5751 Strongly Correlated Electrons +1012.0350 Number Theory +1102.5399 Phenomenology +1103.2998 Symplectic Geometry +1109.3115 Symplectic Geometry +1110.3517 Classical Analysis and ODEs +1203.2724 Dynamical Systems +1205.0578 Astrophysics of Galaxies +1205.5725 Phenomenology +1207.1651 Commutative Algebra +1207.4977 Symplectic Geometry +1207.5842 Dynamical Systems +1209.5016 Algebraic Geometry +1209.6542 Dynamical Systems +1210.3542 Spectral Theory +1210.5623 Spectral Theory +1211.0942 +1211.1874 Group Theory +1301.4552 Systems and Control +1303.1563 Phenomenology +1304.3810 Phenomenology +1305.1067 Phenomenology +1305.3154 Functional Analysis +1305.3174 Geometric Topology +1305.5954 Commutative Algebra +1306.1977 Methodology +1306.6467 Probability +1308.1819 +1308.1842 +1308.2667 Functional Analysis +1308.3779 Computation +1308.5295 +1308.5376 Portfolio Management +1309.0109 Analysis of PDEs +1309.3861 +1309.5061 Theory +1310.0097 Computer Vision and Pattern Recognition +1310.2085 Computer Vision and Pattern Recognition +1310.2317 Phenomenology +1310.2892 Functional Analysis +1310.4745 +1310.7281 Quantum Algebra +1311.1322 Software Engineering +1311.5872 Group Theory +1311.6022 Materials Science +1312.5330 Phenomenology +1312.6989 +1401.1130 Methodology +1401.6686 Artificial Intelligence +1401.7296 Probability +1402.4257 Algebraic Geometry +1402.5376 Probability +1402.5582 Geometric Topology +1403.0698 Algebraic Geometry +1403.0953 Strongly Correlated Electrons +1403.1418 Symplectic Geometry +1403.7491 Analysis of PDEs +1404.3158 Metric Geometry +1404.3519 Superconductivity +1404.3795 Classical Analysis and ODEs +1404.4410 Mathematical Software +1404.6697 Strongly Correlated Electrons +1405.1877 +1405.3500 Analysis of PDEs +1405.4229 +1406.0201 Complex Variables +1406.2827 Geometric Topology +1406.6242 Analysis of PDEs +1406.7343 Methodology +1407.1427 Differential Geometry +1407.5325 Logic +1407.7968 Phenomenology +1408.2113 +1408.2785 Classical Analysis and ODEs +1408.2982 History and Overview +1408.3662 Plasma Physics +1408.4042 Algebraic Geometry +1408.5118 Theory +1408.5779 Analysis of PDEs +1409.0049 Instrumentation and Detectors +1409.0309 Cryptography and Security +1409.0620 Materials Science +1409.1058 Theory +1409.1071 Risk Management +1409.2332 Systems and Control +1409.8179 Optimization and Control +1409.8326 General Physics +1410.1772 Combinatorics +1410.2704 Mesoscale and Nanoscale Physics +1410.2926 Digital Libraries +1410.4348 Algebraic Geometry +1410.7891 Symplectic Geometry +1410.8084 Analysis of PDEs +1411.1123 Number Theory +1411.2603 Theory +1411.4415 Mesoscale and Nanoscale Physics +1411.4438 Optimization and Control +1411.5646 Probability +1411.5979 Optimization and Control +1411.6517 Algebraic Topology +1411.7451 +1412.0170 Probability +1412.5573 Theory +1412.7072 Algebraic Topology +1501.00201 Complex Variables +1501.00478 Statistics Theory +1501.00982 High Energy Astrophysical Phenomena +1501.01144 Neurons and Cognition +1501.01338 Tissues and Organs +1501.02934 Rings and Algebras +1501.06038 Commutative Algebra +1502.02016 Group Theory +1502.04681 Learning +1502.05593 +1502.06570 Superconductivity +1502.07413 Populations and Evolution +1502.07960 +1503.00673 Other Computer Science +1503.02313 Information Theory +1503.02687 Commutative Algebra +1503.03142 Optimization and Control +1503.03332 Data Analysis, Statistics and Probability +1503.03953 +1503.06006 Soft Condensed Matter +1503.06647 Category Theory +1503.07083 +1503.07390 Theory +1503.08302 Quantum Gases +1503.08713 Analysis of PDEs +1503.08737 Probability +1504.01016 Functional Analysis +1504.01976 Number Theory +1504.03806 Statistical Mechanics +1504.04587 Group Theory +1504.05325 +1504.05882 Mesoscale and Nanoscale Physics +1504.06231 Information Theory +1504.06887 Solar and Stellar Astrophysics +1505.00445 Materials Science +1505.01262 Algebraic Geometry +1505.04014 +1505.04023 Astrophysics of Galaxies +1505.04220 Information Theory +1505.04358 Differential Geometry +1505.05820 Theory +1505.05987 Statistical Mechanics +1505.06036 Combinatorics +1505.06368 Phenomenology +1505.07686 Mesoscale and Nanoscale Physics +1506.01938 Instrumentation and Detectors +1506.02372 Probability +1506.04358 +1506.05006 Disordered Systems and Neural Networks +1506.06168 Materials Science +1506.06320 Numerical Analysis +1506.06500 Optics +1506.07047 Theory +1506.07292 +1506.07692 Quantum Gases +1506.08019 Optimization and Control +1506.08636 Astrophysics of Galaxies +1507.00337 Mesoscale and Nanoscale Physics +1507.01801 Strongly Correlated Electrons +1507.02641 Theory +1507.02827 +1507.04179 Statistical Mechanics +1507.04380 Robotics +1507.05619 Cosmology and Nongalactic Astrophysics +1507.05651 Logic +1507.07602 Robotics +1507.07949 Probability +1508.00109 Information Theory +1508.00442 +1508.01293 Number Theory +1508.01969 Number Theory +1508.02264 +1508.03153 Statistical Mechanics +1508.03380 Theory +1508.03382 Theory +1508.03524 Physics and Society +1508.03742 Number Theory +1508.04431 High Energy Astrophysical Phenomena +1508.04833 Optimization and Control +1508.05407 Phenomenology +1508.05905 Probability +1508.06903 Plasma Physics +1509.00132 Materials Science +1509.00943 Differential Geometry +1509.01016 Materials Science +1509.02164 Astrophysics of Galaxies +1509.02209 Combinatorics +1509.02374 +1509.02699 Solar and Stellar Astrophysics +1509.03472 Logic +1509.03507 +1509.05129 Optimization and Control +1509.05133 Strongly Correlated Electrons +1509.05403 Theory +1509.05405 Phenomenology +1509.05450 +1509.06196 +1509.06710 General Physics +1509.06769 Mesoscale and Nanoscale Physics +1509.06864 Materials Science +1509.06960 Analysis of PDEs +1509.09002 Learning +1509.09059 Information Theory +1510.00053 Differential Geometry +1510.00466 Information Theory +1510.00520 Strongly Correlated Electrons +1510.01357 Algebraic Geometry +1510.01465 Quantum Gases +1510.01920 Social and Information Networks +1510.01976 Mesoscale and Nanoscale Physics +1510.02026 Computational Physics +1510.02357 Superconductivity +1510.02565 Dynamical Systems +1510.02601 Analysis of PDEs +1510.03434 Phenomenology +1510.04673 Theory +1510.06280 Classical Analysis and ODEs +1510.07123 Statistics Theory +1510.07341 Statistical Mechanics +1510.08491 Combinatorics +1511.00149 Strongly Correlated Electrons +1511.00489 Theory +1511.01549 Cryptography and Security +1511.02954 Neural and Evolutionary Computing +1511.03163 Learning +1511.03165 Quantum Gases +1511.03186 Data Structures and Algorithms +1511.03382 Astrophysics of Galaxies +1511.04657 Optimization and Control +1511.05106 Materials Science +1511.06406 Learning +1511.06693 Materials Science +1511.07425 Computer Vision and Pattern Recognition +1511.07962 Neurons and Cognition +1511.08087 Astrophysics of Galaxies +1511.08890 Analysis of PDEs +1512.00450 Biological Physics +1512.02139 Earth and Planetary Astrophysics +1512.02396 Instrumentation and Detectors +1512.02448 Representation Theory +1512.03540 Materials Science +1512.03698 Category Theory +1512.03848 Commutative Algebra +1512.04005 Optics +1512.04429 Disordered Systems and Neural Networks +1512.04761 Adaptation and Self-Organizing Systems +1512.05479 Differential Geometry +1512.06338 Discrete Mathematics +1512.06612 Computation and Language +1512.06758 Classical Analysis and ODEs +1512.07250 Digital Libraries +1512.07411 Optimization and Control +1512.07436 Number Theory +1512.07450 Neural and Evolutionary Computing +1512.07452 Number Theory +1512.08098 Optimization and Control +1512.08333 Chaotic Dynamics +1512.08633 Plasma Physics +1512.08655 Metric Geometry +1512.08842 Theory +1512.08879 Probability +1512.09101 Algebraic Geometry +1601.00003 Astrophysics of Galaxies +1601.00008 Earth and Planetary Astrophysics +1601.00010 Number Theory +1601.00012 Numerical Analysis +1601.00023 Dynamical Systems +1601.00024 Learning +1601.00027 Computer Vision and Pattern Recognition +1601.00028 Networking and Internet Architecture +1601.00032 Discrete Mathematics +1601.00033 Instrumentation and Methods for Astrophysics +1601.00037 Numerical Analysis +1601.00041 Logic +1601.00043 Logic +1601.00047 Differential Geometry +1601.00051 Representation Theory +1601.00052 Combinatorics +1601.00053 Chemical Physics +1601.00054 Astrophysics of Galaxies +1601.00055 +1601.00061 Operator Algebras +1601.00064 Statistical Mechanics +1601.00073 Databases +1601.00077 Materials Science +1601.00080 Representation Theory +1601.00084 Dynamical Systems +1601.00089 Algebraic Geometry +1601.00093 Cosmology and Nongalactic Astrophysics +1601.00094 Mesoscale and Nanoscale Physics +1601.00096 Number Theory +1601.00097 Representation Theory +1601.00098 Optimization and Control +1601.00099 Classical Analysis and ODEs +1601.00100 Differential Geometry +1601.00103 Algebraic Geometry +1601.00104 +1601.00105 Statistical Mechanics +1601.00107 +1601.00108 Dynamical Systems +1601.00112 Numerical Analysis +1601.00118 +1601.00119 Computer Vision and Pattern Recognition +1601.00122 Networking and Internet Architecture +1601.00124 Classical Analysis and ODEs +1601.00125 Instrumentation and Methods for Astrophysics +1601.00126 Information Theory +1601.00128 Rings and Algebras +1601.00131 Dynamical Systems +1601.00132 Numerical Analysis +1601.00139 Social and Information Networks +1601.00142 Machine Learning +1601.00144 Rings and Algebras +1601.00146 Group Theory +1601.00150 +1601.00151 Classical Analysis and ODEs +1601.00153 Number Theory +1601.00157 +1601.00159 Databases +1601.00165 Mesoscale and Nanoscale Physics +1601.00166 Analysis of PDEs +1601.00167 Computer Science and Game Theory +1601.00168 Probability +1601.00169 Operator Algebras +1601.00177 Combinatorics +1601.00184 Cryptography and Security +1601.00193 Numerical Analysis +1601.00194 Optimization and Control +1601.00198 Optimization and Control +1601.00199 Computer Vision and Pattern Recognition +1601.00200 Optics +1601.00205 Dynamical Systems +1601.00206 Functional Analysis +1601.00207 Rings and Algebras +1601.00210 Computer Vision and Pattern Recognition +1601.00211 Computer Vision and Pattern Recognition +1601.00212 Computer Vision and Pattern Recognition +1601.00214 +1601.00216 Mesoscale and Nanoscale Physics +1601.00217 Mesoscale and Nanoscale Physics +1601.00220 Mesoscale and Nanoscale Physics +1601.00221 Distributed, Parallel, and Cluster Computing +1601.00222 Mesoscale and Nanoscale Physics +1601.00224 Mesoscale and Nanoscale Physics +1601.00225 Methodology +1601.00228 Representation Theory +1601.00230 Combinatorics +1601.00233 General Finance +1601.00234 +1601.00236 Learning +1601.00241 Complex Variables +1601.00242 Software Engineering +1601.00250 Astrophysics of Galaxies +1601.00252 Discrete Mathematics +1601.00253 Mesoscale and Nanoscale Physics +1601.00254 Combinatorics +1601.00255 Optimization and Control +1601.00256 Information Theory +1601.00260 Computer Vision and Pattern Recognition +1601.00261 Commutative Algebra +1601.00262 Group Theory +1601.00263 Statistical Finance +1601.00264 Instrumentation and Methods for Astrophysics +1601.00266 Instrumentation and Methods for Astrophysics +1601.00269 Algebraic Topology +1601.00270 Information Theory +1601.00272 Combinatorics +1601.00276 Theory +1601.00279 +1601.00281 Analysis of PDEs +1601.00283 +1601.00286 Social and Information Networks +1601.00287 Sound +1601.00288 Digital Libraries +1601.00289 Distributed, Parallel, and Cluster Computing +1601.00290 Combinatorics +1601.00295 Group Theory +1601.00299 Multimedia +1601.00302 Algebraic Geometry +1601.00310 +1601.00312 Optics +1601.00314 Representation Theory +1601.00317 Analysis of PDEs +1601.00321 Networking and Internet Architecture +1601.00322 +1601.00323 Computational Engineering, Finance, and Science +1601.00325 Differential Geometry +1601.00331 +1601.00332 Commutative Algebra +1601.00333 Representation Theory +1601.00336 Data Analysis, Statistics and Probability +1601.00337 Experiment +1601.00338 Experiment +1601.00339 Representation Theory +1601.00341 Methodology +1601.00350 Machine Learning +1601.00351 Number Theory +1601.00353 +1601.00354 Mathematical Finance +1601.00360 Networking and Internet Architecture +1601.00363 Cryptography and Security +1601.00364 Neurons and Cognition +1601.00365 Materials Science +1601.00367 Artificial Intelligence +1601.00370 Analysis of PDEs +1601.00378 +1601.00380 Numerical Analysis +1601.00383 Earth and Planetary Astrophysics +1601.00384 Combinatorics +1601.00388 Number Theory +1601.00393 Learning +1601.00396 Computer Vision and Pattern Recognition +1601.00398 Rings and Algebras +1601.00399 Statistics Theory +1601.00400 Computer Vision and Pattern Recognition +1601.00402 Logic in Computer Science +1601.00403 Strongly Correlated Electrons +1601.00408 Logic +1601.00410 Probability +1601.00413 Information Theory +1601.00419 Optimization and Control +1601.00422 Materials Science +1601.00423 +1601.00429 Materials Science +1601.00436 +1601.00439 Methodology +1601.00441 Combinatorics +1601.00443 Combinatorics +1601.00444 Strongly Correlated Electrons +1601.00448 Geometric Topology +1601.00449 Learning +1601.00453 Systems and Control +1601.00456 Commutative Algebra +1601.00458 Optimization and Control +1601.00463 Spectral Theory +1601.00465 Dynamical Systems +1601.00472 +1601.00476 Optics +1601.00477 Methodology +1601.00478 Biological Physics +1601.00479 Computational Complexity +1601.00480 Accelerator Physics +1601.00481 Human-Computer Interaction +1601.00483 Phenomenology +1601.00484 Optics +1601.00485 Analysis of PDEs +1601.00488 Logic +1601.00489 Mesoscale and Nanoscale Physics +1601.00490 Functional Analysis +1601.00493 Instrumentation and Detectors +1601.00495 Numerical Analysis +1601.00497 +1601.00498 +1601.00499 Statistical Mechanics +1601.00501 Logic in Computer Science +1601.00504 Machine Learning +1601.00506 Combinatorics +1601.00507 Fluid Dynamics +1601.00508 Dynamical Systems +1601.00513 Probability +1601.00515 Statistical Mechanics +1601.00517 Networking and Internet Architecture +1601.00518 Statistical Mechanics +1601.00519 Instrumentation and Methods for Astrophysics +1601.00521 Chemical Physics +1601.00524 Databases +1601.00526 Computer Science and Game Theory +1601.00527 Numerical Analysis +1601.00533 Other Computer Science +1601.00535 Fluid Dynamics +1601.00536 Mesoscale and Nanoscale Physics +1601.00537 Lattice +1601.00538 Optimization and Control +1601.00541 Soft Condensed Matter +1601.00543 Information Theory +1601.00545 Mesoscale and Nanoscale Physics +1601.00548 Mesoscale and Nanoscale Physics +1601.00554 Rings and Algebras +1601.00555 Astrophysics of Galaxies +1601.00567 +1601.00569 Optics +1601.00574 Learning +1601.00575 Soft Condensed Matter +1601.00576 Number Theory +1601.00577 Phenomenology +1601.00578 Phenomenology +1601.00580 Representation Theory +1601.00582 Probability +1601.00583 Computational Physics +1601.00592 Accelerator Physics +1601.00599 Computer Vision and Pattern Recognition +1601.00603 Materials Science +1601.00605 Spectral Theory +1601.00608 Information Theory +1601.00610 Analysis of PDEs +1601.00611 Algebraic Geometry +1601.00612 Functional Analysis +1601.00618 General Physics +1601.00619 Mesoscale and Nanoscale Physics +1601.00620 Computation and Language +1601.00626 Artificial Intelligence +1601.00630 Discrete Mathematics +1601.00632 Medical Physics +1601.00633 Phenomenology +1601.00635 Combinatorics +1601.00636 Number Theory +1601.00637 Algebraic Geometry +1601.00639 Probability +1003.4486 Metric Geometry +1104.4988 Number Theory +1204.4304 Statistical Mechanics +1210.0010 Information Theory +1301.5890 Soft Condensed Matter +1303.1646 Computer Science and Game Theory +1307.1529 Metric Geometry +1308.5454 +1309.1296 Computation +1309.4211 Complex Variables +1310.7318 Quantum Algebra +1311.4132 Algebraic Geometry +1312.6815 Methodology +1401.3495 Probability +1401.7762 Phenomenology +1402.4163 Probability +1403.3816 Operator Algebras +1403.7495 Discrete Mathematics +1404.7111 Soft Condensed Matter +1405.7144 Probability +1406.3820 Functional Analysis +1406.7773 Statistics Theory +1408.6563 Phenomenology +1409.1662 Information Theory +1409.4950 Algebraic Geometry +1409.8597 Methodology +1412.3313 Logic +1412.8567 Number Theory +1501.03864 Algebraic Geometry +1501.05672 Classical Analysis and ODEs +1501.06043 Combinatorics +1502.00293 Analysis of PDEs +1502.04975 Quantum Gases +1503.00021 Numerical Analysis +1503.03451 Data Analysis, Statistics and Probability +1503.03831 Algebraic Geometry +1503.06807 Astrophysics of Galaxies +1503.08236 +1503.08936 Logic +1504.01368 Physics and Society +1504.03034 Soft Condensed Matter +1504.05923 Theory +1504.08092 Complex Variables +1505.04121 Algebraic Geometry +1505.06961 Algebraic Geometry +1505.07462 +1505.07780 Discrete Mathematics +1505.07986 Functional Analysis +1506.01191 Strongly Correlated Electrons +1506.04474 Data Structures and Algorithms +1506.06413 Lattice +1506.07157 Optics +1507.02127 Materials Science +1507.05997 Materials Science +1507.07920 Strongly Correlated Electrons +1508.01671 Phenomenology +1508.04361 +1508.05226 Tissues and Organs +1508.06611 +1509.01546 Machine Learning +1509.02497 High Energy Astrophysical Phenomena +1509.04180 Strongly Correlated Electrons +1509.05585 Quantum Gases +1509.06579 Theory +1509.07250 Information Theory +1509.08460 Earth and Planetary Astrophysics +1510.07243 High Energy Astrophysical Phenomena +1510.07549 Differential Geometry +1511.02237 Phenomenology +1511.02382 +1511.02594 Materials Science +1511.03150 Subcellular Processes +1511.04465 Chaotic Dynamics +1511.06057 Classical Analysis and ODEs +1511.06788 +1511.08891 Soft Condensed Matter +1512.00039 Symplectic Geometry +1512.00984 Numerical Analysis +1512.01817 Theory +1512.03802 +1512.05463 Neural and Evolutionary Computing +1512.05906 Mesoscale and Nanoscale Physics +1512.06462 Quantum Gases +1512.07674 +1512.09023 Digital Libraries +1601.00342 Mesoscale and Nanoscale Physics +1601.00361 Differential Geometry +1601.00915 Mesoscale and Nanoscale Physics +1601.03271 Logic in Computer Science +1601.07397 Materials Science +1601.07736 Combinatorics +1602.00537 Optics +1602.01222 +1602.01287 +1602.01801 Phenomenology +1602.02309 Theory +1602.03514 Materials Science +1602.03997 Mesoscale and Nanoscale Physics +1602.04174 Commutative Algebra +1602.06325 Chemical Physics +1602.07816 Computational Geometry +1602.08564 Dynamical Systems +1602.08997 Probability +1602.09049 Probability +1603.01274 Theory +1603.01304 Mesoscale and Nanoscale Physics +1603.01583 Data Structures and Algorithms +1603.01835 Complex Variables +1603.02366 Information Theory +1603.03369 Computer Vision and Pattern Recognition +1603.04699 +1603.09302 Computer Vision and Pattern Recognition +1604.00187 Computer Vision and Pattern Recognition +1604.01153 Number Theory +1604.01478 Algebraic Topology +1604.01482 Combinatorics +1604.02690 Analysis of PDEs +1604.02708 Biological Physics +1604.02927 +1604.03265 Computer Vision and Pattern Recognition +1604.03436 Superconductivity +1604.04531 Strongly Correlated Electrons +1604.04542 Pattern Formation and Solitons +1604.07271 Functional Analysis +1604.07331 +1604.07823 High Energy Astrophysical Phenomena +1604.08234 Data Structures and Algorithms +1604.08247 +1604.08317 Geometric Topology +1604.08318 Geometric Topology +1604.08345 Logic in Computer Science +1604.08530 +1604.08575 +1604.08583 Instrumentation and Detectors +1604.08585 Operator Algebras +1604.08593 High Energy Astrophysical Phenomena +1604.08600 Information Theory +1604.08601 Mesoscale and Nanoscale Physics +1604.08603 Data Structures and Algorithms +1604.08607 Materials Science +1604.08608 Information Retrieval +1604.08609 Chaotic Dynamics +1604.08615 Strongly Correlated Electrons +1604.08622 Systems and Control +1604.08623 Operator Algebras +1604.08624 +1604.08625 Networking and Internet Architecture +1604.08631 Earth and Planetary Astrophysics +1604.08632 Networking and Internet Architecture +1604.08636 Optimization and Control +1604.08642 Learning +1604.08643 Classical Analysis and ODEs +1604.08646 Fluid Dynamics +1604.08648 Solar and Stellar Astrophysics +1604.08649 Fluid Dynamics +1604.08650 Numerical Analysis +1604.08651 Optimization and Control +1604.08652 Biological Physics +1604.08654 Methodology +1604.08655 Combinatorics +1604.08660 Computer Vision and Pattern Recognition +1604.08662 Algebraic Geometry +1604.08664 Strongly Correlated Electrons +1604.08665 +1604.08666 Number Theory +1604.08673 Materials Science +1604.08674 +1604.08675 Cryptography and Security +1604.08677 Statistical Finance +1604.08680 Systems and Control +1604.08686 Superconductivity +1604.08689 Phenomenology +1604.08690 +1604.08691 Social and Information Networks +1604.08692 Information Theory +1604.08693 Computers and Society +1604.08695 Classical Analysis and ODEs +1604.08696 Populations and Evolution +1604.08697 Machine Learning +1604.08698 Computational Geometry +1604.08703 Numerical Analysis +1604.08705 Logic +1604.08707 +1604.08711 Theory +1604.08715 Functional Analysis +1604.08718 +1604.08719 Number Theory +1604.08720 Methodology +1604.08721 +1604.08723 Sound +1604.08727 Networking and Internet Architecture +1604.08729 Information Theory +1604.08731 Analysis of PDEs +1604.08733 Combinatorics +1604.08734 Networking and Internet Architecture +1604.08735 Pricing of Securities +1604.08736 Symbolic Computation +1604.08737 Analysis of PDEs +1604.08739 +1604.08742 Robotics +1604.08744 Networking and Internet Architecture +1604.08745 Materials Science +1604.08747 Quantum Gases +1604.08753 Plasma Physics +1604.08754 Plasma Physics +1604.08755 Plasma Physics +1604.08760 Data Structures and Algorithms +1604.08763 Information Theory +1604.08764 Data Structures and Algorithms +1604.08768 Artificial Intelligence +1604.08769 Geometric Topology +1604.08772 Machine Learning +1604.08773 Astrophysics of Galaxies +1604.08775 Combinatorics +1604.08779 Computer Science and Game Theory +1604.08788 Rings and Algebras +1604.08789 Computer Vision and Pattern Recognition +1604.08792 Plasma Physics +1604.08793 Systems and Control +1604.08794 Plasma Physics +1604.08795 Plasma Physics +1604.08796 Plasma Physics +1604.08798 Plasma Physics +1604.08799 Cryptography and Security +1604.08802 Plasma Physics +1604.08803 Plasma Physics +1604.08804 Combinatorics +1604.08807 Instrumentation and Detectors +1604.08808 Analysis of PDEs +1604.08810 Cryptography and Security +1604.08811 Plasma Physics +1604.08813 General Topology +1604.08814 Cryptography and Security +1604.08815 Plasma Physics +1604.08817 Combinatorics +1604.08818 Plasma Physics +1604.08819 Combinatorics +1604.08820 Atomic Physics +1604.08824 Economics +1604.08825 Physics and Society +1604.08826 Computer Vision and Pattern Recognition +1604.08828 Geometric Topology +1604.08834 Algebraic Geometry +1604.08839 Accelerator Physics +1604.08842 Statistical Mechanics +1604.08846 Optimization and Control +1604.08847 Classical Analysis and ODEs +1604.08851 Combinatorics +1604.08852 Sound +1604.08853 Applications +1604.08854 Instrumentation and Detectors +1604.08857 Number Theory +1604.08858 Combinatorics +1604.08863 Numerical Analysis +1604.08864 Earth and Planetary Astrophysics +1604.08866 Robotics +1604.08868 General Topology +1604.08872 General Topology +1604.08874 General Topology +1604.08878 Formal Languages and Automata Theory +1604.08880 Learning +1604.08886 Materials Science +1604.08890 Biomolecules +1604.08892 Chemical Physics +1604.08893 Computer Vision and Pattern Recognition +1604.08895 Economics +1604.08899 Cosmology and Nongalactic Astrophysics +1604.08904 +1604.08909 Rings and Algebras +1604.08912 Neurons and Cognition +1604.08917 Algebraic Geometry +1604.08918 Number Theory +1604.08922 Combinatorics +1604.08923 +1604.08926 Emerging Technologies +1604.08927 Systems and Control +1604.08930 +1604.08931 Materials Science +1604.08936 Computational Complexity +1604.08938 Instrumentation and Detectors +1604.08943 Statistics Theory +1604.08944 Symbolic Computation +1604.08947 Probability +1604.08948 Superconductivity +cond-mat/0307545 Statistical Mechanics +hep-ph/0507187 Phenomenology +hep-th/0407062 Theory +0705.0482 Analysis of PDEs +0711.1583 +0802.2673 Analysis of PDEs +1004.4352 +1011.2083 Group Theory +1101.4754 Mesoscale and Nanoscale Physics +1106.6129 Probability +1109.5822 Representation Theory +1111.2983 Theory +1202.3381 Materials Science +1204.5729 Dynamical Systems +1209.2386 Differential Geometry +1302.4296 K-Theory and Homology +1302.5132 Differential Geometry +1302.5352 Dynamical Systems +1302.5366 Data Structures and Algorithms +1304.6851 Number Theory +1304.8093 Probability +1305.3311 Computers and Society +1305.6676 Cosmology and Nongalactic Astrophysics +1305.7491 Spectral Theory +1309.4278 Differential Geometry +1310.3860 Pricing of Securities +1312.2227 Information Theory +1312.7829 Dynamical Systems +1402.6301 Number Theory +1402.6318 Number Theory +1403.1183 Pricing of Securities +1403.3931 Optimization and Control +1404.0146 Biological Physics +1405.7235 Chemical Physics +1405.7443 Logic +1406.5370 Learning +1407.0605 Quantum Gases +1407.2451 Methodology +1407.3452 Quantum Algebra +1407.6217 Combinatorics +1407.8375 Statistics Theory +1408.1000 Information Theory +1408.3252 Algebraic Topology +1408.4823 General Topology +1409.0513 Cosmology and Nongalactic Astrophysics +1409.1972 Probability +1409.5003 Algebraic Topology +1409.5073 Dynamical Systems +1410.0310 Information Theory +1410.6751 Computer Vision and Pattern Recognition +1410.8386 Phenomenology +1411.0735 Information Theory +1411.4787 +1411.4992 Operator Algebras +1411.5718 +1411.5851 Group Theory +1411.6636 Operator Algebras +1411.6776 General Topology +1411.7854 Dynamical Systems +1412.5348 Differential Geometry +1501.02764 Combinatorics +1502.03655 Computation +1502.03656 Computation +1502.04548 Systems and Control +1502.06234 Analysis of PDEs +1503.01685 Symplectic Geometry +1503.04127 Solar and Stellar Astrophysics +1503.04350 Analysis of PDEs +1503.05655 Risk Management +1503.06058 Computation +1503.07153 Theory +1503.08289 Artificial Intelligence +1504.00846 +1504.02762 Solar and Stellar Astrophysics +1504.02985 Computational Physics +1504.06195 Fluid Dynamics +1504.07116 Learning +1504.08090 Systems and Control +1505.00805 Operator Algebras +1505.03320 Data Analysis, Statistics and Probability +1505.03864 High Energy Astrophysical Phenomena +1505.04688 Operator Algebras +1505.04963 Strongly Correlated Electrons +1505.05525 Analysis of PDEs +1505.07313 Mathematical Finance +1505.07705 Mathematical Finance +1506.00053 Machine Learning +1506.01429 Probability +1506.01878 Exactly Solvable and Integrable Systems +1506.03318 Statistics Theory +1506.05639 Numerical Analysis +1506.06223 Functional Analysis +1507.01079 +1507.07208 Algebraic Topology +1507.07531 Phenomenology +1507.08130 Other Condensed Matter +1507.08578 Probability +1507.08895 Solar and Stellar Astrophysics +1508.00523 Optimization and Control +1508.00782 +1508.03191 +1508.04725 Discrete Mathematics +1508.05005 Mesoscale and Nanoscale Physics +1508.05289 Atomic Physics +1508.05391 Disordered Systems and Neural Networks +1508.06045 Number Theory +1508.07336 Cosmology and Nongalactic Astrophysics +1509.00597 Analysis of PDEs +1509.01180 Probability +1509.02282 +1509.03095 +1509.03920 Strongly Correlated Electrons +1509.04810 +1509.05019 Number Theory +1509.06986 High Energy Astrophysical Phenomena +1509.07949 Mesoscale and Nanoscale Physics +1509.08262 Information Theory +1509.08949 Theory +1509.08989 Probability +1510.01163 Optimization and Control +1510.01684 Phenomenology +1510.04000 Formal Languages and Automata Theory +1510.04411 Social and Information Networks +1510.05884 Theory +1510.06264 General Physics +1510.07090 Computers and Society +1510.07867 Computer Vision and Pattern Recognition +1510.08081 Atomic Physics +1510.08332 Social and Information Networks +1511.00821 Space Physics +1511.01712 Quantum Gases +1511.01718 High Energy Astrophysical Phenomena +1511.04094 Computers and Society +1511.04317 Cryptography and Security +1511.04447 Statistical Mechanics +1511.07550 Atomic Physics +1511.08162 Superconductivity +1511.08965 +1511.09077 Theory +1512.00194 Theory +1512.00197 Experiment +1512.00258 Statistical Mechanics +1512.00656 Theory +1512.00863 Materials Science +1512.00889 Strongly Correlated Electrons +1512.00944 Theory +1512.01162 Soft Condensed Matter +1512.01196 Networking and Internet Architecture +1512.01984 Operating Systems +1512.02661 Algebraic Geometry +1512.03952 Complex Variables +1512.04700 Representation Theory +1512.04735 Theory +1512.05584 Theory +1512.07372 Social and Information Networks +1512.07665 Optics +1512.08920 Materials Science +1601.01871 Analysis of PDEs +1601.02375 Phenomenology +1601.02459 Phenomenology +1601.03284 Number Theory +1601.03466 Learning +1601.04648 Computational Physics +1601.04905 Number Theory +1601.05017 Fluid Dynamics +1601.05131 Instrumentation and Methods for Astrophysics +1601.06805 Applications +1601.07829 Number Theory +1601.08155 Portfolio Management +1602.00383 Operator Algebras +1602.01055 Differential Geometry +1602.02378 +1602.02505 Learning +1602.03726 Quantum Gases +1602.05043 Experiment +1602.06287 Analysis of PDEs +1602.07420 Soft Condensed Matter +1602.08277 Earth and Planetary Astrophysics +1602.09045 Materials Science +1603.00683 Materials Science +1603.00834 Mesoscale and Nanoscale Physics +1603.01208 Phenomenology +1603.01957 Mesoscale and Nanoscale Physics +1603.02840 Classical Analysis and ODEs +1603.02893 Geometric Topology +1603.02905 Computation and Language +1603.03011 Programming Languages +1603.03022 Programming Languages +1603.03030 Machine Learning +1603.03034 Solar and Stellar Astrophysics +1603.03040 Solar and Stellar Astrophysics +1603.03046 +1603.03059 Formal Languages and Automata Theory +1603.03060 +1603.03062 Phenomenology +1603.03065 Lattice +1603.03066 Strongly Correlated Electrons +1603.03070 Physics Education +1603.03076 Representation Theory +1603.03077 Metric Geometry +1603.03078 +1603.03079 Neurons and Cognition +1603.03080 Instrumentation and Methods for Astrophysics +1603.03088 Physics Education +1603.03089 Machine Learning +1603.03092 Logic +1603.03095 Theory +1603.03097 Social and Information Networks +1603.03098 Computational Geometry +1603.03099 Social and Information Networks +1603.03101 Computer Vision and Pattern Recognition +1603.03103 Physics Education +1603.03105 Physics Education +1603.03106 Exactly Solvable and Integrable Systems +1603.03108 Physics Education +1603.03109 Combinatorics +1603.03110 Software Engineering +1603.03111 +1603.03112 Computation and Language +1603.03113 Differential Geometry +1603.03119 Astrophysics of Galaxies +1603.03122 +1603.03125 Rings and Algebras +1603.03126 Software Engineering +1603.03129 Multimedia +1603.03131 Superconductivity +1603.03132 Mesoscale and Nanoscale Physics +1603.03134 Number Theory +1603.03136 +1603.03140 Differential Geometry +1603.03141 Quantitative Methods +1603.03143 +1603.03145 Geometric Topology +1603.03149 Neural and Evolutionary Computing +1603.03152 Information Theory +1603.03154 Optics +1603.03156 Group Theory +1603.03158 Data Structures and Algorithms +1603.03159 Astrophysics of Galaxies +1603.03160 Optimization and Control +1603.03161 Algebraic Geometry +1603.03162 Neurons and Cognition +1603.03163 Optimization and Control +1603.03167 Mesoscale and Nanoscale Physics +1603.03171 Analysis of PDEs +1603.03174 Methodology +1603.03176 Geophysics +1603.03181 Artificial Intelligence +1603.03187 Differential Geometry +1603.03190 Differential Geometry +1603.03191 Algebraic Geometry +1603.03192 Materials Science +1603.03194 Number Theory +1603.03198 Mathematical Finance +1603.03199 Probability +1603.03200 Algebraic Geometry +1603.03201 Commutative Algebra +1603.03203 Data Structures and Algorithms +1603.03207 Mesoscale and Nanoscale Physics +1603.03209 Probability +1603.03211 Analysis of PDEs +1603.03215 Sound +1603.03221 Methodology +1603.03226 +1603.03229 Differential Geometry +1603.03231 Optimization and Control +1603.03241 Number Theory +1603.03247 Quantum Gases +1603.03248 Information Theory +1603.03251 Human-Computer Interaction +1603.03252 Logic in Computer Science +1603.03254 Probability +1603.03266 +1603.03267 Artificial Intelligence +1603.03268 Earth and Planetary Astrophysics +1603.03269 Geometric Topology +1603.03271 Group Theory +1603.03272 Logic +1603.03281 Databases +1603.03284 Logic +1603.03286 Solar and Stellar Astrophysics +1603.03292 Algebraic Topology +1603.03294 Algebraic Geometry +1603.03295 High Energy Astrophysical Phenomena +1603.03297 Solar and Stellar Astrophysics +1603.03303 Social and Information Networks +1603.03306 Instrumentation and Detectors +1603.03308 Mesoscale and Nanoscale Physics +1603.03309 Instrumentation and Methods for Astrophysics +1603.03313 Systems and Control +1603.03314 Complex Variables +1603.03318 Astrophysics of Galaxies +1603.03324 Algebraic Geometry +1603.03327 Plasma Physics +1603.03329 Optimization and Control +1603.03335 Differential Geometry +1603.03336 Learning +1603.03337 Data Analysis, Statistics and Probability +1603.03342 Dynamical Systems +1603.03343 Fluid Dynamics +1603.03348 Physics Education +1603.03349 Computers and Society +1603.03351 Category Theory +1603.03352 Analysis of PDEs +1603.03357 Information Theory +1603.03358 Logic +1603.03364 Sound +1603.03368 +1603.03370 Computers and Society +1603.03372 Systems and Control +1603.03373 +1603.03374 Logic +1603.03387 Geometric Topology +1603.03389 Information Theory +1603.03390 Analysis of PDEs +1603.03391 Fluid Dynamics +1603.03393 Analysis of PDEs +1603.03395 Classical Physics +1603.03396 Algebraic Topology +1603.03397 Analysis of PDEs +1603.03398 Number Theory +1603.03399 Chemical Physics +1603.03408 Soft Condensed Matter +1603.03410 Mesoscale and Nanoscale Physics +1603.03412 Atomic Physics +1603.03415 Metric Geometry +1603.03417 Computer Vision and Pattern Recognition +1603.03418 Methodology +1603.03419 Solar and Stellar Astrophysics +math/0506163 Differential Geometry +0907.1795 Instrumentation and Methods for Astrophysics +0907.3342 Learning +0908.1022 Fluid Dynamics +0908.3112 +1002.3986 +1004.3460 Artificial Intelligence +1012.0633 Superconductivity +1101.2022 Instrumentation and Methods for Astrophysics +1102.0939 Dynamical Systems +1108.0098 Probability +1108.4043 Materials Science +1109.1640 +1109.3908 Portfolio Management +1109.4278 Theory +1201.0164 Logic +1201.0354 Differential Geometry +1201.0355 Differential Geometry +1201.0465 +1201.0564 Artificial Intelligence +1201.2094 Mesoscale and Nanoscale Physics +1201.2479 Superconductivity +1201.2664 +1201.3820 +1201.4397 Algebraic Geometry +1201.4404 Superconductivity +1201.4966 Biological Physics +1201.5174 Superconductivity +1201.5307 +1201.5614 Optimization and Control +1201.6004 Optics +1201.6146 Optics +1201.6153 Optics +1201.6492 Mesoscale and Nanoscale Physics +1202.0679 +1202.2571 Networking and Internet Architecture +1202.4145 Mesoscale and Nanoscale Physics +1202.5436 Solar and Stellar Astrophysics +1202.6167 Atomic Physics +1202.6173 Superconductivity +1202.6632 General Finance +1203.1699 Adaptation and Self-Organizing Systems +1203.1888 Distributed, Parallel, and Cluster Computing +1203.2378 Analysis of PDEs +1204.0698 Complex Variables +1204.0864 Databases +1204.1335 Superconductivity +1204.1380 +1204.1446 Probability +1204.1875 Metric Geometry +1204.1975 Phenomenology +1204.3560 Mesoscale and Nanoscale Physics +1204.3883 Algebraic Geometry +1204.4751 Commutative Algebra +1204.4955 Differential Geometry +1204.5036 Mesoscale and Nanoscale Physics +1204.5715 Solar and Stellar Astrophysics +1204.5903 High Energy Astrophysical Phenomena +1207.0450 Phenomenology +1207.0974 +1207.1073 Strongly Correlated Electrons +1207.1119 Optimization and Control +1207.1637 Mesoscale and Nanoscale Physics +1207.1856 Plasma Physics +1207.2778 Differential Geometry +1207.2782 Dynamical Systems +1207.2971 Category Theory +1207.3273 Instrumentation and Methods for Astrophysics +1207.3372 Materials Science +1207.3996 Materials Science +1207.5195 Analysis of PDEs +1207.5260 +1207.5342 Information Theory +1207.5729 +1207.5829 Strongly Correlated Electrons +1207.6267 Formal Languages and Automata Theory +1207.6369 Programming Languages +1207.6372 Discrete Mathematics +1207.6453 Analysis of PDEs +1209.0095 Optics +1209.0420 Geometric Topology +1209.1740 Methodology +1209.1826 Methodology +1209.2016 +1209.2458 Mesoscale and Nanoscale Physics +1209.2800 Experiment +1209.3218 Instrumentation and Methods for Astrophysics +1209.3338 Optics +1209.3979 K-Theory and Homology +1209.4285 +1209.5581 Analysis of PDEs +1209.5685 Mesoscale and Nanoscale Physics +1209.5690 Mesoscale and Nanoscale Physics +1210.0464 +1210.0750 +1210.2187 Atomic Physics +1210.3100 Mesoscale and Nanoscale Physics +1210.3529 Quantum Algebra +1210.4327 +1210.4764 Optics +1210.4814 Atomic Physics +1210.7575 Logic +1210.8042 +1211.1566 +1211.1603 +1211.1620 Astrophysics of Galaxies +1211.2620 Software Engineering +1211.2671 Statistics Theory +1211.2964 Materials Science +1211.3001 Theory +1211.3667 Probability +1211.4058 K-Theory and Homology +1211.5041 Category Theory +1211.6310 Rings and Algebras +1211.6396 Classical Physics +1211.6499 Analysis of PDEs +1211.6655 Numerical Analysis +1211.7262 Statistics Theory +1212.0212 Materials Science +1212.0566 Soft Condensed Matter +1212.0666 Materials Science +1212.1249 Probability +1212.2544 Functional Analysis +1212.3495 Mesoscale and Nanoscale Physics +1212.4796 +1212.6005 General Physics +1212.6568 Mesoscale and Nanoscale Physics +1212.6588 Combinatorics +1302.4965 Artificial Intelligence +1303.5024 Optics +1303.6256 Number Theory +1304.0071 Analysis of PDEs +1304.0362 Superconductivity +1304.1012 +1304.1308 Materials Science +1304.2187 Plasma Physics +1304.2261 Quantum Gases +1304.2365 Artificial Intelligence +1304.3186 Cosmology and Nongalactic Astrophysics +1304.4300 Statistics Theory +1304.4392 Physics and Society +1304.4618 Computer Science and Game Theory +1304.4625 Quantum Gases +1304.5495 +1304.5682 Dynamical Systems +1304.5851 +1304.6276 Logic in Computer Science +1304.6804 General Physics +1304.6832 Combinatorics +1304.7131 Computational Physics +1304.7445 Materials Science +1304.7662 Probability +1305.0466 Numerical Analysis +1305.0940 Disordered Systems and Neural Networks +1305.1194 Strongly Correlated Electrons +1305.2471 Functional Analysis +1305.2683 Differential Geometry +1305.2712 Numerical Analysis +1305.3135 Optics +1305.3215 Symbolic Computation +1305.3266 Classical Analysis and ODEs +1305.4721 Analysis of PDEs +1305.4789 Mesoscale and Nanoscale Physics +1305.5055 Software Engineering +1305.5244 +1305.5278 +1305.6394 Systems and Control +1305.7007 Methodology +1306.0550 +1306.0964 Methodology +1306.1396 Mesoscale and Nanoscale Physics +1306.1454 Optimization and Control +1306.1736 Statistical Mechanics +1306.1997 Analysis of PDEs +1306.2008 +1306.2231 Functional Analysis +1306.2741 Metric Geometry +1306.2767 +1306.3483 Differential Geometry +1306.4234 Mesoscale and Nanoscale Physics +1306.4410 Machine Learning +1306.4421 Space Physics +1306.4576 +1306.5460 Computational Geometry +1306.6009 Algebraic Geometry +1306.6011 Solar and Stellar Astrophysics +1306.6104 +1306.6510 Information Theory +1307.0123 Numerical Analysis +1307.0313 Numerical Analysis +1307.0990 Solar and Stellar Astrophysics +1307.1697 General Physics +1307.1770 Information Theory +1307.1955 Distributed, Parallel, and Cluster Computing +1307.2052 Statistical Mechanics +1307.2483 Distributed, Parallel, and Cluster Computing +1307.3158 Networking and Internet Architecture +1307.3381 Functional Analysis +1307.3807 Differential Geometry +1307.4498 Optics +1307.5123 Instrumentation and Methods for Astrophysics +1307.5223 Classical Analysis and ODEs +1307.6497 +1307.7329 +1307.8009 +1307.8419 Rings and Algebras +1308.0470 Materials Science +1308.0641 Statistics Theory +1308.1814 Strongly Correlated Electrons +1308.1889 Optimization and Control +1308.2267 Statistical Mechanics +1308.2924 Instrumentation and Detectors +1308.3065 +1308.3307 Optimization and Control +1308.3803 Numerical Analysis +1308.4492 Solar and Stellar Astrophysics +1308.5238 Strongly Correlated Electrons +1308.5491 +1308.6037 Quantitative Methods +1308.6164 Physics Education +1309.1242 Strongly Correlated Electrons +1310.0099 Pricing of Securities +1310.7710 Theory +1311.0834 Methodology +1312.4351 Superconductivity +1401.0698 Astrophysics of Galaxies +1401.1602 Optimization and Control +1401.2558 Functional Analysis +1402.1761 Information Theory +1402.3326 Commutative Algebra +1403.3718 Analysis of PDEs +1403.8120 Methodology +1404.0195 Information Theory +1404.4822 Information Theory +1404.6970 +1405.3621 Biological Physics +1405.5982 +1406.7630 Systems and Control +1407.3436 Phenomenology +1407.7615 High Energy Astrophysical Phenomena +1408.2911 Statistical Mechanics +1409.6641 Materials Science +1409.6871 +1411.7687 Statistics Theory +0704.3486 Lattice +0802.1070 Algebraic Geometry +0803.2554 Theory +0910.4201 Symplectic Geometry +0912.3932 Symplectic Geometry +0912.5453 Combinatorics +1003.5492 Category Theory +1008.0539 Information Theory +1010.2939 Solar and Stellar Astrophysics +1011.3576 Logic +1011.4291 Astrophysics of Galaxies +1102.5316 Solar and Stellar Astrophysics +1103.1354 Combinatorics +1104.1959 Representation Theory +1107.4607 Soft Condensed Matter +1109.2824 Algebraic Geometry +1109.5998 Statistics Theory +1111.3796 Materials Science +1203.1450 Programming Languages +1203.3685 Algebraic Topology +1208.0715 Functional Analysis +1208.5289 Combinatorics +1210.3159 +1211.4629 Data Structures and Algorithms +1212.1978 Dynamical Systems +1212.2321 Phenomenology +1301.4748 Symplectic Geometry +1302.5354 Chaotic Dynamics +1303.3700 Mesoscale and Nanoscale Physics +1304.2668 Group Theory +1304.4885 Representation Theory +1306.0247 K-Theory and Homology +1307.0938 Probability +1307.1037 Optics +1307.1292 Materials Science +1307.3200 Theory +1307.4788 Differential Geometry +1307.6015 Optimization and Control +1309.0271 Group Theory +1309.0563 Computational Complexity +1309.4636 Group Theory +1309.6635 Solar and Stellar Astrophysics +1309.7821 Machine Learning +1311.2044 High Energy Astrophysical Phenomena +1311.2805 Algebraic Topology +1312.0928 Differential Geometry +1402.2167 Algebraic Geometry +1402.2937 Algebraic Geometry +1402.4117 Astrophysics of Galaxies +1402.6163 Probability +1402.6530 Functional Analysis +1403.2279 Algebraic Topology +1404.1199 Algebraic Topology +1404.2035 Functional Analysis +1404.4847 Cosmology and Nongalactic Astrophysics +1404.5565 Computational Complexity +1404.7424 +1405.1092 Category Theory +1406.0684 Functional Analysis +1406.2759 Algebraic Geometry +1406.6539 Chaotic Dynamics +1406.7329 Strongly Correlated Electrons +1406.7510 Superconductivity +1407.2896 Robotics +1407.3778 Soft Condensed Matter +1407.4759 +1407.5286 Software Engineering +1407.6464 Analysis of PDEs +1407.6811 +1407.7515 Mesoscale and Nanoscale Physics +1408.3657 Analysis of PDEs +1408.3767 Materials Science +1408.5780 Information Theory +1408.6224 High Energy Astrophysical Phenomena +1409.0053 Plasma Physics +1409.6363 Instrumentation and Detectors +1409.7454 Applications +1409.7665 +1410.2066 Differential Geometry +1410.4352 K-Theory and Homology +1410.4772 Distributed, Parallel, and Cluster Computing +1410.4816 Algebraic Topology +1411.0505 Dynamical Systems +1411.1398 Emerging Technologies +1411.3288 Differential Geometry +1411.3383 Biomolecules +1411.3680 Phenomenology +1411.3714 Differential Geometry +1411.4365 Strongly Correlated Electrons +1411.4855 Geometric Topology +1411.5533 Algebraic Topology +1411.7046 +1411.7345 Dynamical Systems +1412.0263 Dynamical Systems +1412.0430 +1412.3148 Theory +1412.4747 Phenomenology +1412.5045 +1412.7034 Differential Geometry +1412.7874 +1412.8626 Category Theory +1501.02740 Symplectic Geometry +1501.03317 +1501.05020 Combinatorics +1501.06824 Category Theory +1501.07135 Networking and Internet Architecture +1501.07139 Networking and Internet Architecture +1502.03709 Logic +1502.04251 Number Theory +1502.04443 +1502.06681 Mathematical Finance +1502.06690 Strongly Correlated Electrons +1502.07927 Mesoscale and Nanoscale Physics +1503.00017 Algebraic Geometry +1503.00761 Differential Geometry +1503.03436 +1503.04539 Statistical Mechanics +1503.09074 Theory +1504.00147 Algebraic Geometry +1504.01197 Chaotic Dynamics +1504.02185 Superconductivity +1504.02757 Number Theory +1504.03452 Mesoscale and Nanoscale Physics +1504.04235 Multiagent Systems +1504.04707 Quantum Algebra +1504.05154 Mesoscale and Nanoscale Physics +1504.05418 Metric Geometry +1504.05894 Optimization and Control +1504.06902 Classical Analysis and ODEs +1504.07287 Classical Physics +1504.07925 Probability +1504.08361 Computational Complexity +1505.01651 +1505.01678 Differential Geometry +1505.03147 Mesoscale and Nanoscale Physics +1505.03276 +1505.03908 Computation +1505.04594 Phenomenology +1505.06714 +1505.07889 Analysis of PDEs +1506.00515 Statistics Theory +1506.01674 Other Condensed Matter +1506.02371 Machine Learning +1506.02851 Algebraic Topology +1506.04906 Chaotic Dynamics +1506.05197 Information Theory +1506.05396 High Energy Astrophysical Phenomena +1506.05707 Analysis of PDEs +1506.07455 Operator Algebras +1506.08556 Instrumentation and Methods for Astrophysics +1507.02880 Commutative Algebra +1507.05596 High Energy Astrophysical Phenomena +1507.05724 Cryptography and Security +1507.06019 Combinatorics +1507.06174 Numerical Analysis +1507.06922 Cosmology and Nongalactic Astrophysics +1507.08881 Mesoscale and Nanoscale Physics +1508.00021 Learning +1508.00384 High Energy Astrophysical Phenomena +1508.02527 Theory +1508.03134 Algebraic Geometry +1508.04349 +1508.04463 Phenomenology +1508.05173 Functional Analysis +1508.06013 Databases +1508.06147 Probability +1508.06333 Robotics +1508.07287 Rings and Algebras +1509.00245 Theory +1509.01240 Learning +1509.01264 Quantum Gases +1509.02546 Disordered Systems and Neural Networks +1509.02685 +1509.02772 Chemical Physics +1509.02818 Instrumentation and Detectors +1509.03282 Combinatorics +1509.03571 Combinatorics +1509.04348 Methodology +1509.04583 Strongly Correlated Electrons +1509.05021 Superconductivity +1509.05162 Quantum Gases +1509.05347 Quantum Algebra +1509.06551 Optics +1509.07594 Information Theory +1509.08542 Astrophysics of Galaxies +1510.00083 Systems and Control +1510.00206 +1510.00243 Phenomenology +1510.00556 +1510.00725 Phenomenology +1510.00771 Computer Vision and Pattern Recognition +1510.00901 Mesoscale and Nanoscale Physics +1510.01131 Experiment +1510.01210 Computer Science and Game Theory +1510.01260 Differential Geometry +1510.02777 Learning +1510.03084 +1510.03369 Quantum Gases +1510.03575 Computer Science and Game Theory +1510.06718 Operator Algebras +1510.06731 Applications +1510.06863 Genomics +1510.07102 Optics +1510.07245 Materials Science +1510.07545 Human-Computer Interaction +1510.08011 Numerical Analysis +1510.09128 +1511.01825 Theory +1511.01841 Theory +1511.02948 +1511.03466 Computer Vision and Pattern Recognition +1511.03860 Number Theory +1511.04324 +1511.04355 Numerical Analysis +1511.04839 Learning +1511.05177 Superconductivity +1511.05716 Optics +1511.06118 Disordered Systems and Neural Networks +1511.06485 Learning +1511.07091 Statistics Theory +1511.08849 Differential Geometry +1511.08990 Data Structures and Algorithms +1511.09087 Materials Science +1512.00332 Plasma Physics +1512.00368 Complex Variables +1512.00621 Mesoscale and Nanoscale Physics +1512.00844 Cell Behavior +1512.02309 Quantum Algebra +1512.03313 Cosmology and Nongalactic Astrophysics +1512.03718 Metric Geometry +1512.04590 Populations and Evolution +1512.04623 Group Theory +1512.04734 Statistics Theory +1512.04749 Superconductivity +1512.05294 Artificial Intelligence +1512.06834 Cosmology and Nongalactic Astrophysics +1512.07005 Analysis of PDEs +1512.07489 +1512.08257 +1512.08495 Applications +1512.08825 Theory +1512.08915 Plasma Physics +1601.00607 Algebraic Geometry +1601.01506 Numerical Analysis +1601.02163 Mesoscale and Nanoscale Physics +1601.02363 Probability +1601.03472 Algebraic Topology +1601.04290 Materials Science +1601.04603 Instrumentation and Detectors +1601.05179 Probability +1601.05386 +1601.06301 Logic +1601.06512 Number Theory +1601.06516 Strongly Correlated Electrons +1601.06742 Rings and Algebras +1601.06749 Methodology +1601.06964 Atomic Physics +1601.07129 Statistical Mechanics +1601.07435 Computation and Language +1601.07477 +1602.00157 +1602.00265 Adaptation and Self-Organizing Systems +1602.00741 +1602.01057 Phenomenology +1602.01103 Social and Information Networks +1602.01152 +1602.01158 +1602.01474 +1602.01500 Classical Analysis and ODEs +1602.01803 Number Theory +1602.01806 Strongly Correlated Electrons +1602.01888 Medical Physics +1602.01949 Robotics +1602.01982 Information Theory +1602.02068 Computation and Language +1602.02092 Statistics Theory +1602.02163 Algebraic Topology +1602.02165 Popular Physics +1602.02168 Combinatorics +1602.02169 Artificial Intelligence +1602.02171 Superconductivity +1602.02172 Learning +1602.02178 Information Theory +1602.02180 Metric Geometry +1602.02181 Machine Learning +1602.02186 Combinatorics +1602.02187 Applications +1602.02194 Analysis of PDEs +1602.02196 Learning +1602.02198 Methodology +1602.02200 Methodology +1602.02204 Algebraic Geometry +1602.02205 Information Theory +1602.02206 Information Theory +1602.02207 Probability +1602.02210 Learning +1602.02211 Logic in Computer Science +1602.02215 Computation and Language +1602.02216 Information Theory +1602.02219 Computation +1602.02228 Materials Science +1602.02234 Representation Theory +1602.02235 +1602.02237 Neural and Evolutionary Computing +1602.02238 Social and Information Networks +1602.02240 Theory +1602.02241 Networking and Internet Architecture +1602.02244 Numerical Analysis +1602.02245 Numerical Analysis +1602.02249 Emerging Technologies +1602.02251 Instrumentation and Detectors +1602.02253 History and Philosophy of Physics +1602.02256 Learning +1602.02257 Statistical Mechanics +1602.02258 Commutative Algebra +1602.02260 Algebraic Geometry +1602.02267 Geometric Topology +1602.02268 Networking and Internet Architecture +1602.02277 Materials Science +1602.02283 Learning +1602.02284 Classical Analysis and ODEs +1602.02287 Astrophysics of Galaxies +1602.02288 Mesoscale and Nanoscale Physics +1602.02294 Information Theory +1602.02296 Software Engineering +1602.02297 Combinatorics +1602.02298 Analysis of PDEs +1602.02299 Combinatorics +1602.02301 Logic +1602.02302 Combinatorics +1602.02306 Numerical Analysis +1602.02308 Genomics +1602.02310 Cosmology and Nongalactic Astrophysics +1602.02315 Classical Analysis and ODEs +1602.02319 Theory +1602.02323 Mesoscale and Nanoscale Physics +1602.02324 Statistical Mechanics +1602.02326 Number Theory +1602.02329 Analysis of PDEs +1602.02330 Statistics Theory +1602.02331 +1602.02332 Information Retrieval +1602.02333 Instrumentation and Methods for Astrophysics +1602.02337 Optics +1602.02339 Distributed, Parallel, and Cluster Computing +1602.02341 Analysis of PDEs +1602.02346 Combinatorics +1602.02357 Dynamical Systems +1602.02361 Number Theory +1602.02362 Data Structures and Algorithms +1602.02367 Information Theory +1602.02368 Soft Condensed Matter +1602.02376 Rings and Algebras +1602.02377 Data Structures and Algorithms +1602.02381 Analysis of PDEs +1602.02383 Learning +1602.02384 Information Theory +1602.02386 Machine Learning +1602.02387 Logic in Computer Science +1602.02390 Information Theory +1602.02391 Probability +1602.02393 Algebraic Geometry +1602.02394 Physics and Society +1602.02396 Cryptography and Security +1602.02398 Methodology +1602.02399 Dynamical Systems +1602.02400 Phenomenology +1602.02403 Dynamical Systems +1602.02404 Fluid Dynamics +1602.02406 Combinatorics +1602.02407 Number Theory +1602.02408 Statistics Theory +1602.02409 Distributed, Parallel, and Cluster Computing +1602.02411 Analysis of PDEs +1602.02412 Digital Libraries +1602.02414 Instrumentation and Methods for Astrophysics +1602.02415 Information Theory +1602.02418 +1602.02422 Information Theory +1602.02423 Biological Physics +1602.02424 Group Theory +1602.02428 Probability +1602.02431 Commutative Algebra +1602.02432 Computational Complexity +1602.02437 Analysis of PDEs +1602.02443 Networking and Internet Architecture +1602.02446 +1602.02449 Materials Science +1602.02452 Cryptography and Security +1602.02454 Learning +1602.02455 +1602.02457 Analysis of PDEs +1602.02458 Differential Geometry +1602.02460 Solar and Stellar Astrophysics +1602.02461 Combinatorics +1602.02464 Geometric Topology +1602.02465 Differential Geometry +1602.02466 Methodology +1602.02468 History and Philosophy of Physics +1602.02471 Optics +1602.02472 Optimization and Control +1602.02473 Networking and Internet Architecture +1602.02475 Number Theory +1602.02477 Differential Geometry +1602.02479 Materials Science +1602.02480 Probability +1602.02482 Category Theory +1602.02484 Number Theory +1602.02485 Machine Learning +1602.02488 +1602.02490 Graphics +1602.02492 Biomolecules +1602.02493 Networking and Internet Architecture +1602.02495 Combinatorics +1602.02496 Atmospheric and Oceanic Physics +1602.02497 Optics +1602.02506 Information Retrieval +1602.02508 Operator Algebras +1602.02509 Computers and Society +1602.02510 Materials Science +1602.02512 Complex Variables +1602.02515 Category Theory +1602.02517 Hardware Architecture +1602.02518 Learning +1602.02519 Earth and Planetary Astrophysics +1602.02521 Analysis of PDEs +1602.02522 Computer Vision and Pattern Recognition +1602.02523 Machine Learning +1602.02524 Systems and Control +1602.02525 Complex Variables +1602.02530 Plasma Physics +1602.02531 Combinatorics +1602.02538 Superconductivity +1602.02539 Computation +1602.02540 Popular Physics +1602.02541 Number Theory +1602.02543 Learning +1602.02544 Statistical Mechanics +1602.02546 Functional Analysis +1602.02548 Chaotic Dynamics +1602.02549 +1602.02550 +1602.02552 +1602.02554 Analysis of PDEs +1602.02555 Soft Condensed Matter +1602.02556 Complex Variables +1602.02558 Functional Analysis +1602.02560 Probability +1602.02561 +1602.02562 Physics and Society +1602.02563 Mesoscale and Nanoscale Physics +1602.02566 Phenomenology +1602.02568 +1602.02571 Materials Science +1602.02572 Numerical Analysis +1602.02576 Number Theory +1602.02580 Superconductivity +1602.02586 Computer Vision and Pattern Recognition +1602.02589 Combinatorics +1602.02593 Analysis of PDEs +1602.02594 Social and Information Networks +1602.02597 Probability +1602.02598 Dynamical Systems +1602.02600 +1602.02606 Computation +1602.02607 Metric Geometry +1602.02610 Data Structures and Algorithms +1602.02611 +1602.02612 Information Theory +1602.02614 Chaotic Dynamics +1602.02617 Artificial Intelligence +1602.02618 Numerical Analysis +1602.02619 +1602.02622 Systems and Control +1602.02624 Plasma Physics +1602.02625 Materials Science +1602.02626 Plasma Physics +1602.02629 Discrete Mathematics +1602.02630 Systems and Control +1602.02631 Mesoscale and Nanoscale Physics +1602.02632 Number Theory +1602.02634 Combinatorics +1602.02638 Emerging Technologies +1602.02643 Physics Education +1602.02651 Computer Vision and Pattern Recognition +1602.02656 Sound +1602.02659 Dynamical Systems +1602.02661 Functional Analysis +1602.02663 +1602.02665 Social and Information Networks +1602.02666 Machine Learning +1602.02667 +1602.02669 Materials Science +1602.02670 Data Structures and Algorithms +1602.02672 Artificial Intelligence +1602.02676 +1602.02681 Combinatorics +1602.02683 Materials Science +1602.02684 Phenomenology +1602.02688 Group Theory +1602.02693 Biological Physics +1602.02695 Distributed, Parallel, and Cluster Computing +1602.02698 Distributed, Parallel, and Cluster Computing +1602.02699 Dynamical Systems +1602.02703 Optics +1602.02704 Information Theory +1602.02705 Number Theory +1602.02707 Strongly Correlated Electrons +1602.02710 Computer Science and Game Theory +1602.02711 Analysis of PDEs +1602.02713 Physics and Society +1602.02714 Probability +1602.02719 Combinatorics +1602.02721 Solar and Stellar Astrophysics +1602.02726 Optimization and Control +1602.02730 +1602.02735 Trading and Market Microstructure +1602.02739 Populations and Evolution +1602.02740 Numerical Analysis +astro-ph/0110180 +astro-ph/0312468 +astro-ph/0501252 +astro-ph/9703197 +gr-qc/9602039 +hep-ex/0401014 Experiment +hep-th/0405200 Theory +1511.08040 Rings and Algebras +1512.02195 Dynamical Systems +1603.00102 Numerical Analysis +1603.00125 Algebraic Geometry +1603.00130 Phenomenology +1603.00226 Computer Science and Game Theory +1501.01872 Cosmology and Nongalactic Astrophysics +0705.1560 +0807.2350 Classical Analysis and ODEs +0807.3315 Algebraic Geometry +0809.4221 Algebraic Topology +0811.1284 Atomic Physics +0812.2733 Analysis of PDEs +0901.0555 Cosmology and Nongalactic Astrophysics +0906.1689 Probability +0906.5444 Astrophysics of Galaxies +0908.2324 Combinatorics +0909.0577 Complex Variables +1004.1022 Superconductivity +1004.1194 Data Structures and Algorithms +1004.1530 Superconductivity +1004.1590 Soft Condensed Matter +1004.5130 Logic in Computer Science +1103.0034 +1103.1084 Earth and Planetary Astrophysics +1103.1116 Cosmology and Nongalactic Astrophysics +1103.1448 Information Theory +1103.3680 General Topology +1103.3772 General Topology +1103.4185 +1103.5280 Mesoscale and Nanoscale Physics +1106.0725 Combinatorics +1109.1844 Learning +1109.2323 Computational Geometry +1203.1992 Theory +1203.2243 History and Overview +1203.4053 Complex Variables +1203.4340 Mesoscale and Nanoscale Physics +1203.4645 Combinatorics +1203.5215 Soft Condensed Matter +1203.5834 Soft Condensed Matter +1203.5846 Symbolic Computation +1205.2261 +1208.3155 Differential Geometry +1208.3391 Computer Science and Game Theory +1208.3528 Atomic Physics +1210.6011 Complex Variables +1212.5037 Phenomenology +1303.0051 +1303.0341 Learning +1303.0707 Information Theory +1303.1278 Statistical Mechanics +1303.1429 Accelerator Physics +1303.1936 Mesoscale and Nanoscale Physics +1303.3433 Mesoscale and Nanoscale Physics +1303.4525 Solar and Stellar Astrophysics +1303.4545 Optics +1303.4647 Solar and Stellar Astrophysics +1303.4862 Optics +1303.5639 Quantum Gases +1303.5808 +1303.6091 Social and Information Networks +1303.6168 Symplectic Geometry +1303.7146 Metric Geometry +1303.7411 Mesoscale and Nanoscale Physics +1307.0262 Algebraic Geometry +1307.2893 Physics and Society +1307.4957 +1309.0136 Systems and Control +1309.1600 Number Theory +1309.2551 Algebraic Geometry +1309.4066 +1309.6772 Discrete Mathematics +1309.7454 Combinatorics +1310.8641 Probability +1311.0922 Numerical Analysis +1311.5864 Phenomenology +1312.2627 Numerical Analysis +1312.3015 Cosmology and Nongalactic Astrophysics +1401.5532 Chemical Physics +1403.0571 General Mathematics +1403.0977 Materials Science +1403.1283 Mesoscale and Nanoscale Physics +1403.1295 +1403.1478 Geometric Topology +1403.1670 Optics +1403.1908 Functional Analysis +1403.2197 Quantitative Methods +1403.2332 Methodology +1403.2349 Analysis of PDEs +1403.2621 Cosmology and Nongalactic Astrophysics +1403.3186 Optics +1403.3266 Number Theory +1403.3332 Numerical Analysis +1403.3472 Physics and Society +1403.3883 Geometric Topology +1403.4655 Numerical Analysis +1403.5320 Mesoscale and Nanoscale Physics +1403.5553 Classical Analysis and ODEs +1403.6226 Chaotic Dynamics +1403.6442 Instrumentation and Detectors +1403.6880 Superconductivity +1403.6909 Symplectic Geometry +1403.7875 Optimization and Control +1403.7891 Functional Analysis +1403.7936 General Mathematics +1403.8012 Adaptation and Self-Organizing Systems +1404.0764 Complex Variables +1404.4596 Number Theory +1404.5600 Number Theory +1405.1868 Methodology +1405.2322 Statistics Theory +1407.1525 Data Structures and Algorithms +1407.1941 Number Theory +1407.2134 Logic +1407.4736 Dynamical Systems +1407.5899 Materials Science +1408.5805 Group Theory +1409.3802 Algebraic Geometry +1409.4838 Operator Algebras +1409.8017 Chemical Physics +1410.0066 Complex Variables +1410.6359 Algebraic Geometry +1411.0261 Commutative Algebra +1411.2526 Probability +1411.3078 Economics +1411.6077 Atomic Physics +1412.6419 Number Theory +1412.7503 Representation Theory +1412.8468 Functional Analysis +1501.00178 Number Theory +1501.01256 Dynamical Systems +1501.03130 Materials Science +1501.04652 Quantum Algebra +1501.04816 Combinatorics +1501.06542 Theory +1501.06797 Atomic Physics +1502.00628 Cosmology and Nongalactic Astrophysics +1502.00981 +1502.03021 Mesoscale and Nanoscale Physics +1502.03736 Algebraic Geometry +1502.05164 Analysis of PDEs +1502.05765 Numerical Analysis +1503.00411 Numerical Analysis +1503.02146 +1503.02362 Representation Theory +1503.02380 Combinatorics +1503.02460 Operator Algebras +1503.03827 Group Theory +1503.03859 Theory +1503.04075 Number Theory +1503.04122 Statistical Mechanics +1503.05029 Optimization and Control +1503.05165 Number Theory +1503.06284 Statistics Theory +1503.06401 Statistics Theory +1503.06576 Probability +1503.08453 +1503.08677 Computer Vision and Pattern Recognition +1504.00257 Strongly Correlated Electrons +1504.01097 Methodology +1504.01519 Representation Theory +1504.01604 History and Philosophy of Physics +1504.02930 Information Theory +1504.02996 High Energy Astrophysical Phenomena +1504.03367 Number Theory +1504.04593 Group Theory +1504.05502 Theory +1504.05639 +1504.05642 General Mathematics +1504.05707 Databases +1504.06348 Optimization and Control +1504.07234 Numerical Analysis +1504.07834 Data Structures and Algorithms +1504.07849 Solar and Stellar Astrophysics +1504.07888 Combinatorics +1504.08002 Solar and Stellar Astrophysics +1505.00717 Algebraic Geometry +1505.05412 Astrophysics of Galaxies +1505.05687 Methodology +1505.08003 Data Structures and Algorithms +1506.00212 Logic +1506.02142 Machine Learning +1506.05834 Combinatorics +1506.07513 Algebraic Geometry +1507.00944 Algebraic Geometry +1507.01081 Analysis of PDEs +1507.02222 Computational Geometry +1507.03209 Combinatorics +1507.05004 Computational Physics +1507.05353 Cosmology and Nongalactic Astrophysics +1507.05429 Algebraic Geometry +1507.08101 Distributed, Parallel, and Cluster Computing +1507.08474 Mesoscale and Nanoscale Physics +1507.08653 Methodology +1507.08744 Mesoscale and Nanoscale Physics +1507.08887 +1508.01416 +1508.02480 Atomic Physics +1508.02782 Chemical Physics +1508.03775 Representation Theory +1508.05102 Astrophysics of Galaxies +1508.05971 Plasma Physics +1508.06562 Experiment +1508.07503 Physics and Society +1508.07505 Statistical Finance +1509.02765 High Energy Astrophysical Phenomena +1509.03656 Cosmology and Nongalactic Astrophysics +1509.03674 Classical Analysis and ODEs +1509.03694 Astrophysics of Galaxies +1509.03698 +1509.06372 Astrophysics of Galaxies +1509.06781 Phenomenology +1509.06878 +1509.07796 +1509.07916 +1509.08208 Combinatorics +1509.08843 Commutative Algebra +1509.09162 Functional Analysis +1510.01281 Cosmology and Nongalactic Astrophysics +1510.01707 Experiment +1510.01767 Mesoscale and Nanoscale Physics +1510.06042 Cosmology and Nongalactic Astrophysics +1510.06512 Materials Science +1510.08788 Differential Geometry +1510.08794 Materials Science +1511.01596 Algebraic Topology +1511.01954 Computer Vision and Pattern Recognition +1511.02395 Category Theory +1511.02738 +1511.03298 Combinatorics +1511.03462 +1511.03772 Physics and Society +1511.04235 Metric Geometry +1511.05853 Astrophysics of Galaxies +1511.07033 Programming Languages +1511.07717 Superconductivity +1511.07795 +1511.07943 Dynamical Systems +1511.08966 Algebraic Geometry +1511.09157 Earth and Planetary Astrophysics +1512.00086 Cosmology and Nongalactic Astrophysics +1512.00918 Number Theory +1512.01942 Phenomenology +1512.02310 Statistical Finance +1512.02970 Learning +1512.03819 +1512.04460 Risk Management +1512.05345 +1512.05604 +1512.06115 Theory +1512.06794 Cosmology and Nongalactic Astrophysics +1512.06870 Theory +1512.07142 Cosmology and Nongalactic Astrophysics +1512.07753 Optics +1512.07824 Number Theory +1512.08651 Phenomenology +1512.08935 Materials Science +1512.09078 Optimization and Control +1512.09144 Phenomenology +1601.00950 Algebraic Geometry +1601.01303 Analysis of PDEs +1601.01663 +1601.02972 Functional Analysis +1601.02985 Astrophysics of Galaxies +1601.03822 Statistics Theory +1601.05246 Solar and Stellar Astrophysics +1601.05336 Logic in Computer Science +1601.06434 Cosmology and Nongalactic Astrophysics +1601.07175 Earth and Planetary Astrophysics +1601.07433 Astrophysics of Galaxies +1601.07835 Solar and Stellar Astrophysics +1601.08150 Materials Science +1601.08191 Differential Geometry +1602.00752 Number Theory +1602.01086 Phenomenology +1602.01579 +1602.01599 Computer Vision and Pattern Recognition +1602.01601 Computer Vision and Pattern Recognition +1602.01640 Theory +1602.02070 Learning +1602.02202 Learning +1602.02502 Mesoscale and Nanoscale Physics +1602.02553 Fluid Dynamics +1602.02948 Mesoscale and Nanoscale Physics +1602.03251 +1602.03584 +1602.03872 Strongly Correlated Electrons +1602.04483 Statistical Mechanics +1602.04524 +1602.04650 Social and Information Networks +1602.04712 Robotics +1602.05202 Phenomenology +1602.05369 Classical Analysis and ODEs +1602.05463 Number Theory +1602.05469 Functional Analysis +1602.06142 Solar and Stellar Astrophysics +1602.06244 Number Theory +1602.08162 Data Structures and Algorithms +1602.08890 Statistical Mechanics +1603.00071 Algebraic Geometry +1603.00230 Phenomenology +1603.00665 Materials Science +1603.01045 Materials Science +1603.01280 Solar and Stellar Astrophysics +1603.01362 Soft Condensed Matter +1603.01399 Information Theory +1603.01837 Astrophysics of Galaxies +1603.02079 Strongly Correlated Electrons +1603.02541 +1603.02698 High Energy Astrophysical Phenomena +1603.03082 +1603.03447 High Energy Astrophysical Phenomena +1603.03650 Numerical Analysis +1603.03659 Solar and Stellar Astrophysics +1603.03848 +1603.03960 Combinatorics +1603.05200 Systems and Control +1603.05249 Earth and Planetary Astrophysics +1603.05418 Earth and Planetary Astrophysics +1603.05569 Solar and Stellar Astrophysics +1603.05996 Astrophysics of Galaxies +1603.06336 Analysis of PDEs +1603.06362 Strongly Correlated Electrons +1603.06436 Plasma Physics +1603.06599 Strongly Correlated Electrons +1603.06918 +1603.07001 Atomic Physics +1603.07115 Cosmology and Nongalactic Astrophysics +1603.07134 +1603.07594 Mesoscale and Nanoscale Physics +1603.08530 High Energy Astrophysical Phenomena +1603.08563 Computational Physics +1603.08846 Materials Science +1603.08873 Strongly Correlated Electrons +1603.09072 Materials Science +1604.00028 Astrophysics of Galaxies +1604.00532 +1604.01020 Astrophysics of Galaxies +1604.01270 Mesoscale and Nanoscale Physics +1604.01759 Cosmology and Nongalactic Astrophysics +1604.01856 Algebraic Geometry +1604.02066 Astrophysics of Galaxies +1604.02230 Phenomenology +1604.02621 Statistical Mechanics +1604.02695 Experiment +1604.03180 Earth and Planetary Astrophysics +1604.03945 Astrophysics of Galaxies +1604.04347 Superconductivity +1604.04596 +1604.05475 Materials Science +1604.05533 Number Theory +1604.05970 Cosmology and Nongalactic Astrophysics +1604.06019 Fluid Dynamics +1604.06080 Theory +1604.06212 +1604.06925 Optics +1604.07167 Materials Science +1604.08036 Solar and Stellar Astrophysics +1604.08103 Superconductivity +1604.08160 Computational Physics +1604.08365 +1604.08535 +1604.08637 Quantum Gases +1604.08684 Operator Algebras +1604.08898 Phenomenology +1605.00114 Soft Condensed Matter +1605.00289 Solar and Stellar Astrophysics +1605.00648 Astrophysics of Galaxies +1605.00880 Probability +1605.00920 Biological Physics +1605.01138 Artificial Intelligence +1605.01537 Strongly Correlated Electrons +1605.01705 Earth and Planetary Astrophysics +1605.01725 High Energy Astrophysical Phenomena +1605.01911 Theory +1605.02136 Quantum Gases +1605.02407 Phenomenology +1605.02769 High Energy Astrophysical Phenomena +1605.03131 Soft Condensed Matter +1605.03204 +1605.03464 Phenomenology +1605.03543 Operator Algebras +1605.03617 High Energy Astrophysical Phenomena +1605.03629 Strongly Correlated Electrons +1605.04562 +1605.04675 Phenomenology +1605.04724 Astrophysics of Galaxies +1605.04916 Strongly Correlated Electrons +1605.04920 Cosmology and Nongalactic Astrophysics +1605.05149 Solar and Stellar Astrophysics +1605.05332 Solar and Stellar Astrophysics +1605.05595 Plasma Physics +1605.05600 Geometric Topology +1605.05709 +1605.05731 Astrophysics of Galaxies +1605.05811 Solar and Stellar Astrophysics +1605.06075 Theory +1605.06114 Phenomenology +1605.06159 Solar and Stellar Astrophysics +1605.07190 Mesoscale and Nanoscale Physics +1605.07218 High Energy Astrophysical Phenomena +1605.07428 +1605.07442 +1605.07632 Astrophysics of Galaxies +1605.07754 +1605.08039 Phenomenology +1605.08157 Materials Science +1605.08222 Distributed, Parallel, and Cluster Computing +1605.08313 Computer Vision and Pattern Recognition +1605.08394 Superconductivity +1605.08424 Cosmology and Nongalactic Astrophysics +1605.08942 Mesoscale and Nanoscale Physics +1605.08979 Astrophysics of Galaxies +1605.09017 Astrophysics of Galaxies +1605.09427 Mesoscale and Nanoscale Physics +1605.09501 Optics +1605.09542 Soft Condensed Matter +1606.00342 Phenomenology +1606.00449 High Energy Astrophysical Phenomena +1606.00595 High Energy Astrophysical Phenomena +1606.00606 Analysis of PDEs +1606.00628 Differential Geometry +1606.01558 Earth and Planetary Astrophysics +1606.01628 Phenomenology +1606.01717 Quantum Gases +1606.02078 High Energy Astrophysical Phenomena +1606.02095 Soft Condensed Matter +1606.02178 Phenomenology +1606.02629 Physics Education +1606.02744 High Energy Astrophysical Phenomena +1606.02904 Number Theory +1606.03018 +1606.03134 Earth and Planetary Astrophysics +1606.03387 Statistical Mechanics +1606.03764 Statistical Mechanics +1606.04041 Solar and Stellar Astrophysics +1606.04092 Astrophysics of Galaxies +1606.04186 Phenomenology +1606.04213 Phenomenology +1606.04510 Earth and Planetary Astrophysics +1606.04622 Probability +1606.04769 Quantum Algebra +1606.04782 Experiment +1606.04842 Solar and Stellar Astrophysics +1606.05127 Information Theory +1606.05142 Solar and Stellar Astrophysics +1606.05205 Spectral Theory +1606.05515 +1606.05585 Cosmology and Nongalactic Astrophysics +1606.05738 Superconductivity +1606.05745 Astrophysics of Galaxies +1606.05863 Dynamical Systems +1606.05867 Strongly Correlated Electrons +1606.06063 Phenomenology +1606.06345 Materials Science +1606.06430 Astrophysics of Galaxies +1606.06431 High Energy Astrophysical Phenomena +1606.06448 Solar and Stellar Astrophysics +1606.07030 Mesoscale and Nanoscale Physics +1606.07113 Optics +1606.07173 +1606.07200 Solar and Stellar Astrophysics +1606.07214 Astrophysics of Galaxies +1606.07238 Solar and Stellar Astrophysics +1606.07354 High Energy Astrophysical Phenomena +1606.07356 Computation and Language +1606.08024 Probability +1606.08027 Earth and Planetary Astrophysics +1606.08195 Phenomenology +1606.08251 Probability +1606.08256 Probability +1606.08374 Phenomenology +1606.08409 +1606.08447 Earth and Planetary Astrophysics +1606.08560 Strongly Correlated Electrons +1606.08608 Astrophysics of Galaxies +1606.09036 Mesoscale and Nanoscale Physics +1606.09113 Metric Geometry +1606.09161 Strongly Correlated Electrons +1606.09261 High Energy Astrophysical Phenomena +1606.09352 Earth and Planetary Astrophysics +1607.00010 Astrophysics of Galaxies +1607.00058 Statistical Mechanics +1607.00152 Solar and Stellar Astrophysics +1607.00233 High Energy Astrophysical Phenomena +1607.00306 Solar and Stellar Astrophysics +1607.00672 Astrophysics of Galaxies +1607.00745 +1607.00772 Solar and Stellar Astrophysics +1607.00820 Solar and Stellar Astrophysics +1607.01045 High Energy Astrophysical Phenomena +1607.01072 Materials Science +1607.01392 Solar and Stellar Astrophysics +1607.01522 High Energy Astrophysical Phenomena +1607.01626 +1607.01773 Atomic Physics +1607.02261 +1607.02341 Earth and Planetary Astrophysics +1607.02541 Astrophysics of Galaxies +1607.02707 Astrophysics of Galaxies +1607.03006 High Energy Astrophysical Phenomena +1607.03060 Theory +1607.03326 High Energy Astrophysical Phenomena +1607.03500 Theory +1607.03520 Solar and Stellar Astrophysics +1607.03618 Logic in Computer Science +1607.03632 Earth and Planetary Astrophysics +1607.03699 High Energy Astrophysical Phenomena +1607.03886 Solar and Stellar Astrophysics +1607.03906 Earth and Planetary Astrophysics +1607.03965 Astrophysics of Galaxies +1607.04133 Earth and Planetary Astrophysics +1607.04300 Superconductivity +1607.04325 Astrophysics of Galaxies +1607.04363 Strongly Correlated Electrons +1607.04445 Solar and Stellar Astrophysics +1607.04568 Astrophysics of Galaxies +1607.04687 Earth and Planetary Astrophysics +1607.04689 Materials Science +1607.04937 Phenomenology +1607.05001 Information Theory +1607.05312 Astrophysics of Galaxies +1607.05381 Strongly Correlated Electrons +1607.05535 Earth and Planetary Astrophysics +1607.05736 Solar and Stellar Astrophysics +1607.05902 Mesoscale and Nanoscale Physics +1607.05908 Quantum Gases +1607.06043 Statistical Mechanics +1607.06108 Theory +1607.06164 Solar and Stellar Astrophysics +1607.06287 Solar and Stellar Astrophysics +1607.06386 Mesoscale and Nanoscale Physics +1607.06491 High Energy Astrophysical Phenomena +1607.06811 Astrophysics of Galaxies +1607.06841 Solar and Stellar Astrophysics +1607.07012 Mesoscale and Nanoscale Physics +1607.07316 Phenomenology +1607.07449 Theory +1607.07732 Solar and Stellar Astrophysics +1607.07917 Astrophysics of Galaxies +1607.07919 Solar and Stellar Astrophysics +1607.07965 Materials Science +1607.08028 Symbolic Computation +1607.08059 Materials Science +1607.08191 +1607.08612 Solar and Stellar Astrophysics +1607.08884 Theory +1608.00010 Instrumentation and Methods for Astrophysics +1608.00118 Phenomenology +1608.00262 Theory +1608.00845 Statistical Mechanics +1608.01006 Instrumentation and Methods for Astrophysics +1608.01007 High Energy Astrophysical Phenomena +1608.01099 Astrophysics of Galaxies +1608.01169 Astrophysics of Galaxies +1608.01232 Theory +1608.01375 High Energy Astrophysical Phenomena +1608.01500 Computer Science and Game Theory +1608.01525 +1608.01621 Physics Education +1608.02080 Theory +1608.02277 Astrophysics of Galaxies +1608.02512 Quantum Gases +1608.02631 Solar and Stellar Astrophysics +1608.02828 Category Theory +1608.02872 Solar and Stellar Astrophysics +1608.03028 Phenomenology +1608.03039 Atomic Physics +1608.03147 Earth and Planetary Astrophysics +1608.03242 Astrophysics of Galaxies +1608.03274 Solar and Stellar Astrophysics +1608.03427 High Energy Astrophysical Phenomena +1608.03438 Statistical Mechanics +1608.03604 Physics and Society +1608.04075 Theory +1608.04251 Astrophysics of Galaxies +1608.04393 Theory +1608.04469 Astrophysics of Galaxies +1608.04812 Computational Geometry +1608.04892 Solar and Stellar Astrophysics +1608.04893 Solar and Stellar Astrophysics +1608.05004 High Energy Astrophysical Phenomena +1608.05344 Analysis of PDEs +1608.05487 Astrophysics of Galaxies +1608.05635 Materials Science +1608.06250 Algebraic Topology +1608.06319 Solar and Stellar Astrophysics +1608.06471 Populations and Evolution +1608.06528 Phenomenology +1608.06535 Phenomenology +1608.06561 Optics +1608.06647 High Energy Astrophysical Phenomena +1608.06672 Solar and Stellar Astrophysics +1608.06698 Astrophysics of Galaxies +1608.06701 Plasma Physics +1608.06755 Plasma Physics +1608.06801 High Energy Astrophysical Phenomena +1608.06926 Functional Analysis +1608.07088 Astrophysics of Galaxies +1608.07133 High Energy Astrophysical Phenomena +1608.07208 Statistical Mechanics +1608.07421 High Energy Astrophysical Phenomena +1608.07927 Group Theory +1608.07967 Biomolecules +1608.08332 Optics +1608.08643 Earth and Planetary Astrophysics +1608.08893 Solar and Stellar Astrophysics +1609.00598 Space Physics +1609.00679 Solar and Stellar Astrophysics +1609.00696 Methodology +1609.00750 Data Structures and Algorithms +1609.01142 Soft Condensed Matter +1609.01143 Cosmology and Nongalactic Astrophysics +1609.01538 +1609.01866 +1609.02034 Dynamical Systems +1609.02283 Astrophysics of Galaxies +1609.02406 +1609.02731 Solar and Stellar Astrophysics +1609.03319 Learning +1609.03475 Solar and Stellar Astrophysics +1609.03870 Classical Analysis and ODEs +1609.03957 +1609.04381 Materials Science +1609.04592 High Energy Astrophysical Phenomena +1609.04817 Astrophysics of Galaxies +1609.05046 General Physics +1609.05310 Phenomenology +1609.05412 Solar and Stellar Astrophysics +1609.05720 Algebraic Geometry +1609.05885 Data Structures and Algorithms +1609.05939 Risk Management +1609.06195 High Energy Astrophysical Phenomena +1609.06228 Theory +1609.06305 Materials Science +1609.06403 Data Structures and Algorithms +1609.06615 Functional Analysis +1609.06941 Phenomenology +1609.06967 +1609.07124 Chemical Physics +1609.07297 Astrophysics of Galaxies +1609.07381 Theory +1609.07564 Mesoscale and Nanoscale Physics +1609.07807 Soft Condensed Matter +1609.07855 Populations and Evolution +1609.07998 Materials Science +1609.08215 Earth and Planetary Astrophysics +1609.08682 +1609.08810 Computation and Language +1609.08866 Astrophysics of Galaxies +1609.08963 Astrophysics of Galaxies +1609.09169 Solar and Stellar Astrophysics +1609.09205 Mathematical Finance +1609.09347 Atomic and Molecular Clusters +1609.09392 Geometric Topology +1609.09399 Materials Science +1609.09631 Cosmology and Nongalactic Astrophysics +1609.09693 Soft Condensed Matter +1609.09696 Information Theory +1609.09697 Statistical Mechanics +1609.09780 Algebraic Geometry +1610.00006 Instrumentation and Detectors +1610.00019 Optics +1610.00095 Group Theory +1610.00233 Lattice +1610.00242 Astrophysics of Galaxies +1610.00353 Data Structures and Algorithms +1610.00465 Learning +1610.00496 +1610.00527 Computer Vision and Pattern Recognition +1610.00644 Sound +1610.00659 Optics +1610.00660 Computer Vision and Pattern Recognition +1610.00698 General Mathematics +1610.00701 Robotics +1610.00702 Commutative Algebra +1610.00703 Other Quantitative Biology +1610.00704 Computational Engineering, Finance, and Science +1610.00705 Instrumentation and Detectors +1610.00706 Instrumentation and Detectors +1610.00707 Theory +1610.00710 Phenomenology +1610.00714 Earth and Planetary Astrophysics +1610.00718 Theory +1610.00720 Disordered Systems and Neural Networks +1610.00723 Instrumentation and Methods for Astrophysics +1610.00726 +1610.00728 Formal Languages and Automata Theory +1610.00729 Optics +1610.00730 +1610.00731 Computer Vision and Pattern Recognition +1610.00733 Number Theory +1610.00735 Information Retrieval +1610.00737 Analysis of PDEs +1610.00738 Solar and Stellar Astrophysics +1610.00739 Atmospheric and Oceanic Physics +1610.00740 Theory +1610.00741 Medical Physics +1610.00742 Algebraic Geometry +1610.00743 Analysis of PDEs +1610.00744 +1610.00746 Mesoscale and Nanoscale Physics +1610.00747 Algebraic Topology +1610.00748 Computer Vision and Pattern Recognition +1610.00749 Physics and Society +1610.00750 Classical Physics +1610.00751 Hardware Architecture +1610.00753 General Physics +1610.00754 Algebraic Geometry +1610.00755 Materials Science +1610.00756 Combinatorics +1610.00758 Disordered Systems and Neural Networks +1610.00759 Computer Vision and Pattern Recognition +1610.00761 +1610.00762 Other Condensed Matter +1610.00765 Computation and Language +1610.00766 Biological Physics +1610.00767 Mesoscale and Nanoscale Physics +1610.00771 +1610.00773 Computation +1610.00774 Analysis of PDEs +1610.00775 Materials Science +1610.00776 Rings and Algebras +1610.00777 Combinatorics +1610.00778 Mathematical Finance +1610.00781 Computation +1610.00782 Social and Information Networks +1610.00788 Accelerator Physics +1610.00789 Materials Science +1610.00790 Neural and Evolutionary Computing +1610.00792 Combinatorics +1610.00795 Computational Finance +1610.00796 Dynamical Systems +1610.00798 Numerical Analysis +1610.00799 Analysis of PDEs +1610.00801 Astrophysics of Galaxies +1610.00804 Geophysics +1610.00806 Instrumentation and Methods for Astrophysics +1610.00808 Category Theory +1610.00810 Mesoscale and Nanoscale Physics +1610.00812 Algebraic Geometry +1610.00813 Systems and Control +1610.00815 Combinatorics +1610.00816 Commutative Algebra +1610.00817 Algebraic Geometry +1610.00818 Mathematical Finance +1610.00820 Molecular Networks +1610.00821 Analysis of PDEs +1610.00822 Dynamical Systems +1610.00823 Numerical Analysis +1610.00824 Computer Vision and Pattern Recognition +1610.00825 Molecular Networks +1610.00826 Representation Theory +1610.00827 +1610.00829 Materials Science +1610.00831 Programming Languages +1610.00832 Geometric Topology +1610.00833 Combinatorics +1610.00838 Computer Vision and Pattern Recognition +1610.00839 +1610.00841 Cryptography and Security +1610.00842 Computation and Language +1610.00843 Machine Learning +1610.00845 Information Theory +1610.00846 Information Theory +1610.00848 Solar and Stellar Astrophysics +1610.00849 Strongly Correlated Electrons +1610.00852 Learning +1610.00853 Combinatorics +1610.00857 Information Theory +1610.00859 Chemical Physics +1610.00860 Functional Analysis +1610.00863 Dynamical Systems +1610.00864 Probability +1610.00865 High Energy Astrophysical Phenomena +1610.00867 Information Theory +1610.00871 Strongly Correlated Electrons +1610.00873 Information Theory +1610.00874 High Energy Astrophysical Phenomena +1610.00875 Optimization and Control +1610.00876 Combinatorics +1610.00879 Computation and Language +1610.00881 Probability +1610.00883 Computation and Language +1610.00885 Functional Analysis +1610.00887 High Energy Astrophysical Phenomena +1610.00888 Optimization and Control +1610.00889 Cryptography and Security +1610.00895 Materials Science +1610.00897 +1610.00899 Theory +1610.00900 Information Theory +1610.00901 Computer Science and Game Theory +1610.00903 Combinatorics +1610.00905 Category Theory +1610.00907 Machine Learning +1610.00911 Optimization and Control +1610.00912 Robotics +1610.00915 Materials Science +1610.00918 Astrophysics of Galaxies +1610.00920 Physics and Society +1610.00922 +1610.00923 Representation Theory +1610.00924 Mesoscale and Nanoscale Physics +1610.00931 Mesoscale and Nanoscale Physics +1610.00933 Analysis of PDEs +1610.00935 Combinatorics +1610.00939 Analysis of PDEs +1610.00940 Mesoscale and Nanoscale Physics +1610.00944 High Energy Astrophysical Phenomena +1610.00945 Analysis of PDEs +1610.00947 K-Theory and Homology +1610.00949 +1610.00950 Number Theory +1610.00951 Methodology +1610.00952 Computational Geometry +1610.00953 Optimization and Control +1610.00954 Functional Analysis +1610.00955 General Finance +1610.00956 Computation and Language +1610.00959 Geometric Topology +1610.00960 Machine Learning +1610.00961 Accelerator Physics +1610.00963 Optics +1610.00964 Analysis of PDEs +1610.00965 Number Theory +1610.00967 Instrumentation and Detectors +1610.00973 Analysis of PDEs +1610.00974 Networking and Internet Architecture +1610.00975 Optimization and Control +1610.00976 Artificial Intelligence +1610.00977 Group Theory +1610.00981 Classical Analysis and ODEs +1610.00982 Information Theory +1610.00983 Probability +1610.00984 Computation +1610.00985 Computation +1610.00986 Solar and Stellar Astrophysics +1610.00987 Optics +1610.00988 +1610.00991 Numerical Analysis +1610.00992 General Physics +1610.00996 Strongly Correlated Electrons +1610.00997 Physics and Society +1610.00998 Strongly Correlated Electrons +1610.00999 Portfolio Management +1610.01000 Applications +1610.01003 Chaotic Dynamics +1610.01004 Logic in Computer Science +1610.01005 Strongly Correlated Electrons +1610.01008 Functional Analysis +1610.01009 Solar and Stellar Astrophysics +1610.01011 Algebraic Geometry +1610.01015 Materials Science +1610.01018 Computational Physics +1610.01019 Computational Complexity +1610.01021 +1610.01023 Solar and Stellar Astrophysics +1610.01027 Phenomenology +1610.01028 Metric Geometry +1610.01029 +1610.01031 Astrophysics of Galaxies +1610.01032 Differential Geometry +1610.01033 Optics +1610.01034 Superconductivity +1610.01035 Rings and Algebras +1610.01036 +1610.01039 Numerical Analysis +1610.01040 +1610.01042 Optics +1610.01043 Mesoscale and Nanoscale Physics +1610.01044 Artificial Intelligence +1610.01045 Systems and Control +1610.01047 Optics +1610.01048 Geophysics +1610.01050 Systems and Control +1610.01051 Numerical Analysis +1610.01052 Computer Vision and Pattern Recognition +1610.01053 Mesoscale and Nanoscale Physics +1610.01054 +1610.01056 +1610.01058 Data Structures and Algorithms +1610.01061 Number Theory +1610.01062 Combinatorics +1610.01065 Cryptography and Security +1610.01066 Computer Vision and Pattern Recognition +1610.01068 Computer Vision and Pattern Recognition +1610.01069 +1610.01070 Functional Analysis +1610.01071 Computational Physics +1610.01072 Mesoscale and Nanoscale Physics +1610.01075 Statistical Mechanics +1610.01076 Computer Vision and Pattern Recognition +1610.01078 Representation Theory +1610.01083 Complex Variables +1610.01087 Complex Variables +1610.01089 General Physics +1610.01090 General Physics +1610.01091 Plasma Physics +1610.01093 Analysis of PDEs +1610.01096 Social and Information Networks +1610.01098 Differential Geometry +1610.01099 +1610.01103 Analysis of PDEs +1610.01106 Combinatorics +1610.01107 Systems and Control +1610.01110 Number Theory +1610.01111 Combinatorics +1610.01113 Combinatorics +1610.01114 Quantitative Methods +1610.01115 Fluid Dynamics +1610.01116 Combinatorics +1610.01117 Robotics +1610.01118 Probability +1610.01121 Optics +1610.01122 Geometric Topology +1610.01125 +1610.01126 Lattice +1610.01127 Quantitative Methods +1610.01131 Mesoscale and Nanoscale Physics +1610.01133 Programming Languages +1610.01138 +1610.01140 Distributed, Parallel, and Cluster Computing +cond-mat/0504776 Other Condensed Matter +hep-ph/0406191 Phenomenology +hep-th/0405265 Theory +hep-th/0503100 Theory +math/0105047 Algebraic Topology +math/0401319 Number Theory +0708.3515 Group Theory +0709.3466 Group Theory +1102.3596 Other Quantitative Biology +1104.0536 Group Theory +1204.1664 Machine Learning +1209.0910 Numerical Analysis +1210.2220 Complex Variables +1210.8402 Commutative Algebra +1304.7326 Fluid Dynamics +1305.6644 Numerical Analysis +1306.0458 General Mathematics +1306.4239 Group Theory +1307.4447 Geometric Topology +1308.5522 Differential Geometry +1310.0503 Group Theory +1407.0896 Probability +1407.4861 Analysis of PDEs +1407.7388 Combinatorics +1408.4505 Number Theory +1409.3846 Mesoscale and Nanoscale Physics +1410.1618 Geometric Topology +1412.2708 Dynamical Systems +1412.2899 Complex Variables +1412.5029 Number Theory +1412.5494 Number Theory +1502.05497 +1502.06402 Analysis of PDEs +1502.07200 Solar and Stellar Astrophysics +1503.00484 Cryptography and Security +1503.00969 Differential Geometry +1504.06176 Combinatorics +1504.07363 Combinatorics +1505.00747 Differential Geometry +1505.04602 Combinatorics +1506.01805 Materials Science +1506.02502 Classical Analysis and ODEs +1506.06504 Differential Geometry +1506.08344 +1507.02954 Information Theory +1507.06061 Dynamical Systems +1508.02132 Dynamical Systems +1508.02758 Probability +1508.03419 Combinatorics +1508.06068 Quantum Algebra +1508.07214 Probability +1509.00952 Probability +1509.01033 Group Theory +1509.04601 Theory +1509.05637 Computational Complexity +1509.06683 Phenomenology +1510.04318 Quantum Algebra +1510.06265 Statistical Mechanics +1510.06924 Phenomenology +1511.02649 +1511.03534 Group Theory +1511.03981 Physics and Society +1511.04583 Programming Languages +1511.05435 Probability +1511.06898 Phenomenology +1511.07780 Commutative Algebra +1512.01187 Formal Languages and Automata Theory +1512.01396 Mesoscale and Nanoscale Physics +1512.01818 Computation and Language +1512.01837 Logic in Computer Science +1512.02123 Atomic Physics +1601.01622 Materials Science +1601.02187 Group Theory +1601.03139 Probability +1601.03356 Theory +1601.03569 +1601.04521 Superconductivity +1601.08012 Functional Analysis +1602.01324 +1602.01457 Mesoscale and Nanoscale Physics +1602.03039 Rings and Algebras +1602.04979 Mesoscale and Nanoscale Physics +1602.05338 Rings and Algebras +1602.06811 Algebraic Geometry +1602.07013 Data Structures and Algorithms +1602.07108 Functional Analysis +1602.07230 Mesoscale and Nanoscale Physics +1602.07589 Statistical Mechanics +1602.07866 Phenomenology +1602.08084 Geometric Topology +1602.08093 Superconductivity +1603.00517 Combinatorics +1603.00608 Group Theory +1603.01267 Phenomenology +1603.02236 +1603.02448 Dynamical Systems +1603.02986 Instrumentation and Detectors +1603.03544 Statistical Mechanics +1603.04288 +1603.04689 Strongly Correlated Electrons +1603.05336 Differential Geometry +1603.05616 Cosmology and Nongalactic Astrophysics +1603.05975 High Energy Astrophysical Phenomena +1603.06000 Solar and Stellar Astrophysics +1603.06058 Theory +1603.06108 +1603.07159 Optics +1603.07278 +1603.07634 +1603.08120 Computer Vision and Pattern Recognition +1604.00939 Strongly Correlated Electrons +1604.01132 +1604.02397 Mesoscale and Nanoscale Physics +1604.03706 Mesoscale and Nanoscale Physics +1604.06835 Classical Analysis and ODEs +1605.00484 +1605.01753 High Energy Astrophysical Phenomena +1605.03128 +1605.03185 Astrophysics of Galaxies +1605.03382 Differential Geometry +1605.04211 Chemical Physics +1605.06092 +1605.09084 Materials Science +1605.09325 Mesoscale and Nanoscale Physics +1606.02645 Artificial Intelligence +1606.02727 Solar and Stellar Astrophysics +1606.02853 +1606.03020 Analysis of PDEs +1606.03871 Computer Vision and Pattern Recognition +1606.04627 Solar and Stellar Astrophysics +1606.04818 Mesoscale and Nanoscale Physics +1606.06584 Functional Analysis +1606.06735 Phenomenology +1606.07700 Emerging Technologies +1606.08917 Strongly Correlated Electrons +1606.09172 Earth and Planetary Astrophysics +1606.09254 Astrophysics of Galaxies +1606.09289 Phenomenology +1606.09463 Information Theory +1607.01182 Cosmology and Nongalactic Astrophysics +1607.01744 Probability +1607.02281 Multimedia +1607.02394 Instrumentation and Methods for Astrophysics +1607.03385 Networking and Internet Architecture +1607.04004 Information Theory +1607.04063 Neural and Evolutionary Computing +1607.04181 Algebraic Geometry +1607.04256 Cryptography and Security +1607.04269 Physics and Society +1607.04274 Geophysics +1607.04287 Computational Complexity +1607.04296 Algebraic Geometry +1607.04299 Astrophysics of Galaxies +1607.04302 Instrumentation and Methods for Astrophysics +1607.04303 Strongly Correlated Electrons +1607.04305 Astrophysics of Galaxies +1607.04308 Atmospheric and Oceanic Physics +1607.04311 Cryptography and Security +1607.04312 Materials Science +1607.04318 Social and Information Networks +1607.04320 Computers and Society +1607.04321 Mesoscale and Nanoscale Physics +1607.04322 Information Theory +1607.04324 Neural and Evolutionary Computing +1607.04329 +1607.04332 Logic in Computer Science +1607.04336 Computational Geometry +1607.04340 Systems and Control +1607.04341 Representation Theory +1607.04342 Software Engineering +1607.04345 Optimization and Control +1607.04347 Software Engineering +1607.04349 Optics +1607.04353 +1607.04355 Soft Condensed Matter +1607.04356 Materials Science +1607.04360 Networking and Internet Architecture +1607.04362 Computer Science and Game Theory +1607.04364 General Topology +1607.04366 Systems and Control +1607.04368 Logic +1607.04369 Theory +1607.04370 General Topology +1607.04372 Populations and Evolution +1607.04373 Information Retrieval +1607.04374 Optimization and Control +1607.04376 Robotics +1607.04378 Sound +1607.04379 Artificial Intelligence +1607.04380 +1607.04387 Logic +1607.04390 Analysis of PDEs +1607.04391 Materials Science +1607.04394 Functional Analysis +1607.04395 Probability +1607.04396 +1607.04397 Analysis of PDEs +1607.04401 Metric Geometry +1607.04403 Data Structures and Algorithms +1607.04411 Computer Vision and Pattern Recognition +1607.04413 Superconductivity +1607.04419 Atomic Physics +1607.04420 Networking and Internet Architecture +1607.04421 Cryptography and Security +1607.04424 Applications +1607.04425 Rings and Algebras +1607.04426 +1607.04431 Discrete Mathematics +1607.04432 Mesoscale and Nanoscale Physics +1607.04436 Robotics +1607.04437 Phenomenology +1607.04438 Strongly Correlated Electrons +1607.04439 Robotics +1607.04440 Phenomenology +1607.04441 Robotics +1607.04443 Probability +1607.04452 Software Engineering +1607.04453 Analysis of PDEs +1607.04454 Analysis of PDEs +1607.04455 Physics Education +1607.04456 Logic in Computer Science +1607.04457 Logic in Computer Science +1607.04458 Logic in Computer Science +1607.04459 Programming Languages +1607.04460 Logic in Computer Science +1607.04461 Programming Languages +1607.04462 Analysis of PDEs +1607.04463 Quantitative Methods +1607.04467 Number Theory +1607.04471 Dynamical Systems +1607.04473 +1607.04475 Group Theory +1607.04476 Optics +1607.04477 Theory +1607.04478 Soft Condensed Matter +1607.04484 Economics +1607.04486 Representation Theory +1607.04488 Mathematical Finance +1607.04496 Phenomenology +1607.04500 Logic in Computer Science +1607.04501 Combinatorics +1607.04502 Other Quantitative Biology +1607.04505 +1607.04507 Quantum Gases +1607.04510 Analysis of PDEs +1607.04513 Algebraic Geometry +1607.04514 Numerical Analysis +1607.04515 Computer Vision and Pattern Recognition +1607.04518 Physics and Society +1607.04520 Analysis of PDEs +1607.04521 Analysis of PDEs +1607.04522 Methodology +1607.04525 Information Theory +1607.04526 Optimization and Control +1607.04527 Data Structures and Algorithms +1607.04529 Commutative Algebra +1607.04530 Probability +1607.04535 Mesoscale and Nanoscale Physics +1607.04537 Robotics +1607.04540 Analysis of PDEs +1607.04541 High Energy Astrophysical Phenomena +1607.04543 Computation +1607.04545 Data Structures and Algorithms +1607.04546 Functional Analysis +1607.04547 Numerical Analysis +1607.04548 Analysis of PDEs +1607.04550 Differential Geometry +1607.04551 General Mathematics +1607.04552 Optimization and Control +1607.04554 Experiment +1607.04555 Complex Variables +1607.04557 Data Structures and Algorithms +1607.04558 Number Theory +1607.04559 Information Theory +1607.04560 Cosmology and Nongalactic Astrophysics +1607.04561 Plasma Physics +1607.04565 Functional Analysis +1607.04566 Machine Learning +1607.04576 Computation and Language +1607.04577 Phenomenology +1607.04578 +1607.04580 Phenomenology +1607.04582 Analysis of PDEs +1607.04583 Artificial Intelligence +1607.04585 Other Condensed Matter +1607.04588 Physics Education +1607.04592 Optics +1607.04593 Computer Vision and Pattern Recognition +1607.04594 Numerical Analysis +1607.04595 Statistical Mechanics +1607.04597 Combinatorics +1607.04598 Pattern Formation and Solitons +1607.04603 Dynamical Systems +1607.04606 Computation and Language +1607.04607 Complex Variables +1607.04609 Computer Vision and Pattern Recognition +1607.04611 Logic in Computer Science +1607.04612 Biological Physics +1607.04614 Learning +1607.04616 Materials Science +1607.04618 Neurons and Cognition +1607.04619 Numerical Analysis +1607.04621 Fluid Dynamics +1607.04622 Rings and Algebras +1607.04624 Superconductivity +1607.04625 +1607.04627 Computational Physics +1607.04629 Networking and Internet Architecture +1607.04636 Analysis of PDEs +1607.04638 +0706.2844 Spectral Theory +0707.1089 Probability +0707.3787 +0708.2100 +0911.0885 Combinatorics +1008.3859 Earth and Planetary Astrophysics +1009.5991 Earth and Planetary Astrophysics +1012.1630 Combinatorics +1104.5326 Statistics Theory +1109.6671 Earth and Planetary Astrophysics +1111.6222 +1201.6634 Probability +1209.4267 Logic +1211.1621 Information Theory +1302.2158 Combinatorics +1303.6236 Probability +1303.7134 Phenomenology +1304.4544 +1305.1404 +1306.3935 Rings and Algebras +1307.3168 +1307.7559 Probability +1308.0478 Representation Theory +1308.1165 Dynamical Systems +1308.5200 Mathematical Software +1309.3057 Probability +1311.2136 +1311.7205 Statistical Mechanics +1312.0496 Computational Complexity +1312.4677 Statistical Mechanics +1312.4971 Combinatorics +1312.7667 Logic +1402.1409 +1402.5452 Metric Geometry +1402.5588 Statistical Mechanics +1402.6659 Category Theory +1403.2695 Statistics Theory +1403.4533 Dynamical Systems +1403.7043 Spectral Theory +1405.2861 Networking and Internet Architecture +1405.3625 Fluid Dynamics +1405.6234 Dynamical Systems +1405.6677 Statistics Theory +1406.0428 Populations and Evolution +1408.3264 Computer Vision and Pattern Recognition +1408.4561 +1408.4951 Dynamical Systems +1409.1333 Statistics Theory +1409.1428 Differential Geometry +1409.1858 Probability +1409.3932 +1410.2584 Probability +1410.4462 Statistics Theory +1410.5273 Analysis of PDEs +1410.5530 +1410.5778 Data Structures and Algorithms +1410.6468 Differential Geometry +1410.7299 Strongly Correlated Electrons +1410.8803 Differential Geometry +1412.0222 Operator Algebras +1412.5099 Number Theory +1412.6156 Machine Learning +1501.01127 Phenomenology +1501.03862 +1501.05490 Materials Science +1502.01271 Computation and Language +1502.04955 Combinatorics +1502.05927 Analysis of PDEs +1502.07734 Numerical Analysis +1503.01734 Instrumentation and Methods for Astrophysics +1503.02123 Networking and Internet Architecture +1503.03871 Strongly Correlated Electrons +1503.06780 +1504.01437 Astrophysics of Galaxies +1504.04575 +1504.06735 Probability +1504.07454 +1505.01276 +1505.02069 Theory +1505.02282 Algebraic Geometry +1505.03579 Networking and Internet Architecture +1505.03885 Algebraic Topology +1505.04814 Theory +1505.04831 Probability +1505.05826 Mesoscale and Nanoscale Physics +1505.06258 Networking and Internet Architecture +1505.07148 Cosmology and Nongalactic Astrophysics +1505.07261 Instrumentation and Detectors +1505.07526 Subcellular Processes +1505.07552 +1505.07728 Strongly Correlated Electrons +1506.00575 Optimization and Control +1506.00754 Mesoscale and Nanoscale Physics +1506.01497 Computer Vision and Pattern Recognition +1506.03296 Numerical Analysis +1506.04993 +1506.05044 Probability +1506.06892 +1506.08009 Artificial Intelligence +1506.08971 Materials Science +1507.00237 Astrophysics of Galaxies +1507.02652 Quantum Gases +1507.03436 Disordered Systems and Neural Networks +1507.05048 +1507.05156 Materials Science +1507.05200 Phenomenology +1507.06168 Dynamical Systems +1507.06363 Soft Condensed Matter +1507.07595 Optimization and Control +1507.08710 Category Theory +1508.01562 Fluid Dynamics +1508.02202 Quantum Gases +1508.05320 +1508.05668 Complex Variables +1508.06110 Cryptography and Security +1508.06996 Theory +1509.00234 +1509.04015 Phenomenology +1509.05416 Phenomenology +1509.06247 Strongly Correlated Electrons +1509.07149 Physics and Society +1509.07948 Optics +1509.08993 Differential Geometry +1510.01180 Geophysics +1510.01187 Geophysics +1510.01852 Networking and Internet Architecture +1510.01986 Algebraic Geometry +1510.02693 Neural and Evolutionary Computing +1510.02794 Phenomenology +1510.02872 Symplectic Geometry +1510.07945 Computer Vision and Pattern Recognition +1511.00538 +1511.01367 Fluid Dynamics +1511.02054 +1511.02147 Formal Languages and Automata Theory +1511.02490 Distributed, Parallel, and Cluster Computing +1511.04973 Functional Analysis +1511.05434 Combinatorics +1511.07465 Phenomenology +1511.07614 Mesoscale and Nanoscale Physics +1511.07894 +1511.08076 Exactly Solvable and Integrable Systems +1512.01939 Numerical Analysis +1512.05374 Commutative Algebra +1512.05738 Phenomenology +1512.05919 Computation and Language +1512.06620 Numerical Analysis +1512.06916 Instrumentation and Detectors +1512.08608 Analysis of PDEs +1512.08689 Logic in Computer Science +1512.08823 Formal Languages and Automata Theory +1601.00011 Theory +1601.00130 Instrumentation and Methods for Astrophysics +1601.00475 Theory +1601.00566 Statistical Finance +1601.00731 Physics Education +1601.00732 Computer Vision and Pattern Recognition +1601.00753 Materials Science +1601.00794 +1601.00896 Pattern Formation and Solitons +1601.00964 Astrophysics of Galaxies +1601.00978 Computer Vision and Pattern Recognition +1601.00984 +1601.00987 Neurons and Cognition +1601.00989 General Mathematics +1601.00990 Algebraic Geometry +1601.00992 Methodology +1601.00998 Computer Vision and Pattern Recognition +1601.01001 Logic in Computer Science +1601.01003 Optimization and Control +1601.01007 Classical Analysis and ODEs +1601.01008 Emerging Technologies +1601.01010 General Topology +1601.01017 +1601.01019 Optimization and Control +1601.01022 Optics +1601.01023 Probability +1601.01024 Analysis of PDEs +1601.01025 Optimization and Control +1601.01027 Mesoscale and Nanoscale Physics +1601.01028 Algebraic Geometry +1601.01030 Soft Condensed Matter +1601.01037 Mesoscale and Nanoscale Physics +1601.01038 Symbolic Computation +1601.01039 Methodology +1601.01043 Materials Science +1601.01045 Statistics Theory +1601.01046 Instrumentation and Detectors +1601.01048 Quantitative Methods +1601.01051 Analysis of PDEs +1601.01052 Adaptation and Self-Organizing Systems +1601.01053 Materials Science +1601.01059 Cosmology and Nongalactic Astrophysics +1601.01061 Experiment +1601.01064 Commutative Algebra +1601.01065 History and Philosophy of Physics +1601.01066 Materials Science +1601.01069 Networking and Internet Architecture +1601.01073 Computation and Language +1601.01077 Numerical Analysis +1601.01079 Cryptography and Security +1601.01083 Numerical Analysis +1601.01085 Computation and Language +1601.01087 Information Theory +1601.01092 Human-Computer Interaction +1601.01093 Probability +1601.01096 Analysis of PDEs +1601.01100 Computer Vision and Pattern Recognition +1601.01101 Representation Theory +1601.01103 Commutative Algebra +1601.01104 Distributed, Parallel, and Cluster Computing +1601.01106 Cosmology and Nongalactic Astrophysics +1601.01108 Probability +1601.01109 Probability +1601.01111 Soft Condensed Matter +1601.01113 Logic in Computer Science +1601.01116 Networking and Internet Architecture +1601.01118 Computational Complexity +1601.01121 Learning +1601.01122 Statistics Theory +1601.01123 Soft Condensed Matter +1601.01128 Computational Finance +1601.01129 Combinatorics +1601.01130 +1601.01131 Statistics Theory +1601.01134 Spectral Theory +1601.01135 Probability +1601.01137 Numerical Analysis +1601.01139 Complex Variables +1601.01142 Learning +1601.01143 Probability +1601.01150 Atomic and Molecular Clusters +1601.01153 Probability +1601.01156 Analysis of PDEs +1601.01157 Learning +1601.01158 Number Theory +1601.01161 Number Theory +1601.01164 Differential Geometry +1601.01165 Instrumentation and Methods for Astrophysics +1601.01170 Statistics Theory +1601.01174 Optimization and Control +1601.01180 Methodology +1601.01183 Information Theory +1601.01184 Instrumentation and Methods for Astrophysics +1601.01186 Statistics Theory +1601.01187 +1601.01191 Social and Information Networks +1601.01192 Dynamical Systems +1601.01193 Atmospheric and Oceanic Physics +1601.01194 Biological Physics +1601.01195 Computation and Language +1601.01197 Discrete Mathematics +1601.01206 Astrophysics of Galaxies +1601.01208 Medical Physics +1601.01210 Algebraic Geometry +1601.01211 Combinatorics +1601.01213 Experiment +1601.01215 +1601.01216 Computer Vision and Pattern Recognition +1601.01217 Symplectic Geometry +1601.01218 Learning +1601.01220 Computers and Society +1601.01224 Mesoscale and Nanoscale Physics +1601.01226 Soft Condensed Matter +1601.01228 Cryptography and Security +1601.01230 Cryptography and Security +1601.01231 Combinatorics +1601.01234 Analysis of PDEs +1601.01237 Fluid Dynamics +1601.01238 Commutative Algebra +1601.01240 Astrophysics of Galaxies +1601.01241 Classical Analysis and ODEs +1601.01242 Numerical Analysis +1601.01243 Analysis of PDEs +1601.01244 Materials Science +1601.01245 Networking and Internet Architecture +1601.01247 Mesoscale and Nanoscale Physics +1601.01253 Biological Physics +1601.01254 Optimization and Control +1601.01256 General Mathematics +1601.01257 +1601.01262 +1601.01263 Dynamical Systems +1601.01265 +1601.01267 Analysis of PDEs +1601.01268 Combinatorics +1601.01270 Mesoscale and Nanoscale Physics +1601.01271 Systems and Control +1601.01274 Symbolic Computation +1601.01275 Mesoscale and Nanoscale Physics +1601.01276 Probability +1601.01277 Mesoscale and Nanoscale Physics +1601.01285 Physics Education +1601.01288 Tissues and Organs +1601.01292 Functional Analysis +1601.01293 Functional Analysis +1601.01298 Computational Geometry +1601.01299 Mesoscale and Nanoscale Physics +1601.01301 Physics Education +1601.01302 +1601.01308 Algebraic Geometry +math-ph/0206008 +math-ph/0210047 +math-ph/0308041 +math-ph/0405006 +math-ph/0412078 +math-ph/0510063 +math/0612194 Combinatorics +nucl-th/9803052 +nucl-th/9904047 +1604.08785 General Physics +physics/0601009 General Physics +0712.4374 Optics +0801.0906 Optics +0811.1438 Optics +0901.0809 Optics +0901.1798 Operator Algebras +0910.4382 Geometric Topology +1101.2711 Digital Libraries +1110.3705 Logic in Computer Science +1111.2236 Number Theory +1210.0567 Differential Geometry +1210.7491 Operator Algebras +1301.3550 Quantum Algebra +1303.5840 Symplectic Geometry +1304.2191 Number Theory +1304.6151 Mesoscale and Nanoscale Physics +1305.2238 Machine Learning +1305.6032 Algebraic Geometry +1307.5814 Algebraic Geometry +1309.3581 +1401.1576 Numerical Analysis +1401.2005 Rings and Algebras +1401.4118 +1403.2034 Cosmology and Nongalactic Astrophysics +1403.6290 Computer Vision and Pattern Recognition +1404.1371 Applications +1404.2985 Cosmology and Nongalactic Astrophysics +1404.3982 Commutative Algebra +1406.0204 Dynamical Systems +1406.3829 +1408.0674 Classical Analysis and ODEs +1408.2631 Operator Algebras +1410.1546 Cosmology and Nongalactic Astrophysics +1410.3152 +1410.8537 Phenomenology +1412.4152 Spectral Theory +1501.00902 Materials Science +1501.00999 Mesoscale and Nanoscale Physics +1501.04294 Theory +1502.02034 Theory +1502.02414 Artificial Intelligence +1502.07672 +1502.07821 +1503.01079 Functional Analysis +1504.00476 Statistics Theory +1504.01872 Probability +1504.04893 Dynamical Systems +1505.00420 Metric Geometry +1505.07049 Number Theory +1506.07613 Computer Vision and Pattern Recognition +1506.08415 Software Engineering +1506.08756 Pattern Formation and Solitons +1507.00642 Dynamical Systems +1507.02715 Analysis of PDEs +1508.01032 +1508.01088 Adaptation and Self-Organizing Systems +1508.01171 Databases +1508.01845 Probability +1508.01875 Phenomenology +1508.05687 Cosmology and Nongalactic Astrophysics +1508.06371 Theory +1509.01075 Information Theory +1509.01144 Pricing of Securities +1509.05547 +1509.06034 Dynamical Systems +1509.07360 Software Engineering +1509.08100 Statistics Theory +1509.08386 Classical Analysis and ODEs +1509.08601 Optimization and Control +1510.03815 Differential Geometry +1510.06195 Analysis of PDEs +1510.06391 +1510.06676 +1510.07596 Classical Analysis and ODEs +1510.08208 Lattice +1510.08504 Analysis of PDEs +1511.00176 Algebraic Geometry +1511.02784 Computer Science and Game Theory +1511.04201 Soft Condensed Matter +1511.04511 Computer Vision and Pattern Recognition +1511.06623 +1511.07209 Multiagent Systems +1511.07440 Materials Science +1511.09263 Learning +1512.00221 +1512.00383 Geometric Topology +1512.00993 Analysis of PDEs +1512.01527 Pricing of Securities +1512.02178 Earth and Planetary Astrophysics +1512.05757 +1601.00562 Dynamical Systems +1601.00931 Numerical Analysis +1601.02532 Statistical Mechanics +1601.03217 Phenomenology +1601.07534 Neurons and Cognition +1601.07704 +1602.00041 +1602.00230 +1602.01192 Methodology +1602.03548 Phenomenology +1602.03691 Mesoscale and Nanoscale Physics +1602.05723 Populations and Evolution +1602.06553 Statistical Mechanics +1602.07152 Experiment +1602.08772 Experiment +1602.09126 Phenomenology +1603.00033 High Energy Astrophysical Phenomena +1603.00741 Functional Analysis +1603.04376 Data Structures and Algorithms +1603.04702 Quantum Gases +1603.06221 Experiment +1603.06322 +1603.06668 Computer Vision and Pattern Recognition +1603.06687 Computation +1603.07188 Computer Vision and Pattern Recognition +1603.07649 Statistical Mechanics +1603.07760 Earth and Planetary Astrophysics +1603.08396 +1604.00037 Strongly Correlated Electrons +1604.00239 Computer Vision and Pattern Recognition +1604.00278 Materials Science +1604.01223 +1604.01325 Computer Vision and Pattern Recognition +1604.02265 Mesoscale and Nanoscale Physics +1604.02745 Theory +1604.03068 Analysis of PDEs +1604.03213 Algebraic Topology +1604.04348 Information Theory +1604.04808 Computer Vision and Pattern Recognition +1604.04876 Computer Science and Game Theory +1604.05984 Materials Science +1604.06110 Mesoscale and Nanoscale Physics +1604.06836 Soft Condensed Matter +1604.07006 Spectral Theory +1605.00917 Cellular Automata and Lattice Gases +1605.01525 Optics +1605.03017 Statistics Theory +1605.03484 Soft Condensed Matter +1605.03948 Theory +1605.04432 Dynamical Systems +1605.05554 +1605.05975 +1605.05979 +1605.06155 Learning +1605.06343 Solar and Stellar Astrophysics +1605.07187 Astrophysics of Galaxies +1605.08230 Solar and Stellar Astrophysics +1605.09188 Astrophysics of Galaxies +1606.00170 Optics +1606.04045 +1606.04073 Information Theory +1606.04654 +1606.05002 Computer Vision and Pattern Recognition +1606.06144 +1606.06986 Phenomenology +1606.07069 Phenomenology +1606.08110 Number Theory +1607.00024 Information Retrieval +1607.00025 Commutative Algebra +1607.00289 Differential Geometry +1607.00920 Mesoscale and Nanoscale Physics +1607.01526 Astrophysics of Galaxies +1607.01567 Optics +1607.02745 Methodology +1607.02944 Physics Education +1607.04450 Networking and Internet Architecture +1607.05022 Dynamical Systems +1607.05210 Numerical Analysis +1607.06830 Robotics +1607.06865 Data Structures and Algorithms +1607.07172 Algebraic Geometry +1607.07257 Earth and Planetary Astrophysics +1607.07280 Theory +1607.07322 Analysis of PDEs +1607.07749 General Mathematics +1607.07883 +1607.08032 Differential Geometry +1607.08145 Materials Science +1607.08232 High Energy Astrophysical Phenomena +1607.08233 Fluid Dynamics +1607.08235 +1607.08236 Computer Vision and Pattern Recognition +1607.08247 Astrophysics of Galaxies +1607.08252 Phenomenology +1607.08255 Methodology +1607.08256 +1607.08258 Combinatorics +1607.08259 Data Analysis, Statistics and Probability +1607.08263 Soft Condensed Matter +1607.08267 Numerical Analysis +1607.08270 Geometric Topology +1607.08272 Number Theory +1607.08273 Software Engineering +1607.08274 Methodology +1607.08276 Rings and Algebras +1607.08277 Cryptography and Security +1607.08278 Probability +1607.08280 Numerical Analysis +1607.08282 +1607.08283 Number Theory +1607.08285 Complex Variables +1607.08287 Risk Management +1607.08288 Methodology +1607.08289 Artificial Intelligence +1607.08290 Materials Science +1607.08291 Combinatorics +1607.08294 Algebraic Geometry +1607.08297 Information Theory +1607.08299 Probability +1607.08301 Phenomenology +1607.08302 Classical Analysis and ODEs +1607.08303 Group Theory +1607.08310 Machine Learning +1607.08312 Combinatorics +1607.08314 Classical Analysis and ODEs +1607.08315 Optics +1607.08319 Number Theory +1607.08320 Optimization and Control +1607.08321 Fluid Dynamics +1607.08322 Information Theory +1607.08325 Distributed, Parallel, and Cluster Computing +1607.08326 Algebraic Geometry +1607.08338 Optimization and Control +1607.08340 Analysis of PDEs +1607.08342 Data Structures and Algorithms +1607.08343 Solar and Stellar Astrophysics +1607.08345 Analysis of PDEs +1607.08349 Phenomenology +1607.08350 Computational Physics +1607.08351 Instrumentation and Methods for Astrophysics +1607.08352 Distributed, Parallel, and Cluster Computing +1607.08356 +1607.08358 +1607.08359 +1607.08360 Theory +1607.08364 Astrophysics of Galaxies +1607.08365 Classical Analysis and ODEs +1607.08366 Computer Vision and Pattern Recognition +1607.08367 Numerical Analysis +1607.08368 Computer Vision and Pattern Recognition +1607.08369 Logic +1607.08374 Phenomenology +1607.08376 Numerical Analysis +1607.08380 Materials Science +1607.08381 Computer Vision and Pattern Recognition +1607.08382 Disordered Systems and Neural Networks +1607.08383 Algebraic Geometry +1607.08384 Astrophysics of Galaxies +1607.08390 Classical Analysis and ODEs +1607.08391 Other Condensed Matter +1607.08392 Complex Variables +1607.08395 Analysis of PDEs +1607.08398 Combinatorics +1607.08400 Learning +1607.08401 Cryptography and Security +1607.08402 Differential Geometry +1607.08406 Optimization and Control +1607.08408 Exactly Solvable and Integrable Systems +1607.08409 Fluid Dynamics +1607.08412 Solar and Stellar Astrophysics +1607.08415 Combinatorics +1607.08416 Superconductivity +1607.08417 Instrumentation and Methods for Astrophysics +1607.08418 Number Theory +1607.08419 Commutative Algebra +1607.08420 Numerical Analysis +1607.08421 Computer Vision and Pattern Recognition +1607.08423 Analysis of PDEs +1607.08424 Instrumentation and Methods for Astrophysics +1607.08426 Classical Analysis and ODEs +1607.08428 Differential Geometry +1607.08429 Algebraic Geometry +1607.08433 Information Theory +1607.08434 Computer Vision and Pattern Recognition +1607.08437 Algebraic Geometry +1607.08438 Computer Vision and Pattern Recognition +1607.08441 Dynamical Systems +1607.08442 Exactly Solvable and Integrable Systems +1607.08443 Systems and Control +1607.08444 Genomics +1607.08445 Numerical Analysis +1607.08448 Phenomenology +1607.08450 Performance +1607.08456 Machine Learning +1607.08458 Applications +1607.08461 Phenomenology +1607.08463 Differential Geometry +1607.08464 Dynamical Systems +1607.08466 +1607.08468 Strongly Correlated Electrons +1607.08469 Atmospheric and Oceanic Physics +1607.08470 Analysis of PDEs +1607.08472 Social and Information Networks +1607.08475 Fluid Dynamics +1607.08477 Computer Vision and Pattern Recognition +1607.08479 Digital Libraries +1607.08480 Computer Science and Game Theory +1607.08482 Sound +1607.08483 +1607.08486 Algebraic Geometry +1607.08488 Functional Analysis +1607.08495 Representation Theory +1607.08496 Combinatorics +1607.08497 Social and Information Networks +1607.08500 Differential Geometry +1607.08501 Networking and Internet Architecture +1607.08502 Numerical Analysis +1607.08503 Differential Geometry +1607.08507 Biomolecules +1607.08508 Cryptography and Security +1607.08511 Differential Geometry +1607.08514 Probability +1607.08522 Phenomenology +1607.08523 Hardware Architecture +1607.08525 Robotics +1607.08535 +1607.08536 Analysis of PDEs +1607.08537 +1607.08543 Solar and Stellar Astrophysics +1607.08546 Phenomenology +1607.08547 Information Theory +1607.08551 Cosmology and Nongalactic Astrophysics +1607.08553 Mesoscale and Nanoscale Physics +1607.08555 Differential Geometry +1607.08558 Differential Geometry +1607.08559 Earth and Planetary Astrophysics +1607.08560 +1607.08562 Soft Condensed Matter +1607.08563 Quantum Algebra +1607.08567 Operator Algebras +1607.08569 Computer Vision and Pattern Recognition +1607.08570 Emerging Technologies +1607.08578 Distributed, Parallel, and Cluster Computing +1607.08579 Numerical Analysis +1607.08584 Computer Vision and Pattern Recognition +1607.08589 Quantum Gases +1607.08590 Algebraic Geometry +1607.08592 Computation and Language +1607.08593 Theory +1607.08597 Physics and Society +1607.08601 Machine Learning +physics/0605021 Optics +physics/0610269 Optics +0704.0361 Information Theory +0704.2236 +0704.2259 Information Theory +0704.2353 Information Theory +0705.0543 Information Theory +0705.0999 Information Theory +0705.1787 Information Theory +0705.1788 Information Theory +0706.3752 Information Theory +0706.3753 Information Theory +0706.3846 Information Theory +0707.0050 Information Theory +0707.0463 Information Theory +0707.0476 Information Theory +0707.0500 Information Theory +0707.1063 Information Theory +0707.1241 Information Theory +0707.2436 Other Computer Science +0707.2926 Information Theory +0707.4311 Information Theory +0708.2414 Computers and Society +0710.0694 +0710.1182 Information Theory +0710.1275 Information Theory +0710.4244 +0710.5830 Networking and Internet Architecture +0710.5887 Chemical Physics +0711.1273 Networking and Internet Architecture +0711.3099 Networking and Internet Architecture +0711.3152 Information Theory +0711.4745 Materials Science +0712.0744 Multiagent Systems +0712.1465 Combinatorics +0712.1987 Information Theory +0712.2113 Cryptography and Security +0712.2189 Plasma Physics +0712.2231 Cryptography and Security +0712.2235 Cryptography and Security +0712.4059 Information Theory +0712.4075 Information Theory +0712.4115 +0712.4153 Neural and Evolutionary Computing +0712.4169 Networking and Internet Architecture +0712.4170 Networking and Internet Architecture +0712.4172 Networking and Internet Architecture +0712.4173 Networking and Internet Architecture +0712.4174 Cryptography and Security +0712.4177 Networking and Internet Architecture +0712.4178 Cryptography and Security +0802.4130 Information Theory +0803.0952 Networking and Internet Architecture +0803.2365 Operating Systems +0803.2770 +0803.3448 Cryptography and Security +0804.3254 Functional Analysis +0804.3361 Artificial Intelligence +0804.4455 Information Theory +0805.2812 Information Theory +0806.0905 Information Theory +0806.0909 Information Theory +0806.1659 Information Theory +0806.2572 +0806.4468 Information Theory +0806.4773 Information Theory +0807.0245 Information Theory +0807.2728 Information Theory +0807.3913 Information Theory +0807.3917 Information Theory +0807.4548 Information Theory +0808.0036 Information Theory +0808.0037 Information Theory +0808.1495 Information Theory +0808.2059 Information Theory +0808.2089 Information Theory +0809.0853 Statistics Theory +0809.1344 Information Theory +0809.4019 Information Theory +0809.4058 Information Theory +0809.5140 Optics +0809.5182 Information Theory +0810.0883 Information Theory +0810.1973 Information Theory +0810.2781 Information Theory +0810.3869 Networking and Internet Architecture +0810.4059 Information Theory +0810.5770 Information Theory +0811.0726 Information Theory +0811.3475 Information Theory +0812.0621 Information Theory +0812.1203 Information Theory +0812.1857 Information Theory +0812.2409 Information Theory +0812.3124 Information Theory +0812.3232 Information Theory +0812.3742 Information Theory +0812.4884 Superconductivity +0812.4937 Information Theory +0901.2748 Classical Physics +0901.3987 Information Theory +0901.4467 Information Theory +0901.4642 Networking and Internet Architecture +0902.1996 Information Theory +0902.2559 Information Theory +0902.3026 Digital Libraries +0902.4437 Optimization and Control +0903.0061 Information Theory +0903.0445 Information Theory +0903.0802 Cryptography and Security +0903.4594 Information Theory +0904.0037 Information Theory +0904.1150 Information Theory +0904.1281 Information Theory +0904.2441 Information Theory +0904.4343 Information Theory +0905.0838 Information Theory +0905.2718 Information Theory +0905.3951 Distributed, Parallel, and Cluster Computing +0905.4023 Information Theory +0906.0037 Information Theory +0906.0695 Information Theory +0906.1603 Information Theory +0906.1835 Information Theory +0906.2819 Information Theory +0906.2895 Learning +0906.3200 Information Theory +0906.3667 Information Theory +0906.5394 Information Theory +0907.1888 Information Theory +0907.2222 Networking and Internet Architecture +0907.2455 Information Theory +0907.4885 Information Theory +0907.4919 Cryptography and Security +0907.5024 Information Theory +0908.0497 Networking and Internet Architecture +0908.1198 Pattern Formation and Solitons +0908.1562 Instrumentation and Detectors +0908.1676 Information Theory +0908.2282 Information Theory +0908.2397 Information Theory +0908.3083 Cryptography and Security +0908.3098 Information Theory +0908.4265 Information Theory +0909.1876 Hardware Architecture +0909.5119 Information Theory +0910.0555 Information Theory +0911.1054 Information Theory +0912.2820 Information Theory +0912.3264 Information Theory +0912.3281 Optimization and Control +0912.3441 Networking and Internet Architecture +0912.3907 Information Theory +0912.5391 Cryptography and Security +0912.5393 Cryptography and Security +1001.2195 Artificial Intelligence +1001.3919 Software Engineering +1001.5113 Information Theory +1002.0382 Computer Vision and Pattern Recognition +1002.1559 Information Theory +1002.3492 Distributed, Parallel, and Cluster Computing +1003.0415 Information Theory +1003.0488 Information Theory +1003.1168 Distributed, Parallel, and Cluster Computing +1003.4238 Physics Education +1003.5653 Optimization and Control +1004.0727 Information Theory +1004.4020 Information Theory +1004.5274 Information Theory +1005.3004 Robotics +1005.3143 Cryptography and Security +1005.3198 Cryptography and Security +1006.0109 Information Theory +1006.0160 Optimization and Control +1006.0165 Optimization and Control +1006.1129 Learning +1006.1772 Information Theory +1006.2001 Accelerator Physics +1006.2006 Information Theory +1006.2996 Information Theory +1006.4406 Networking and Internet Architecture +1006.5166 Information Theory +1006.5686 Information Theory +1007.0463 Solar and Stellar Astrophysics +1007.0486 Instrumentation and Detectors +1007.3662 Statistics Theory +1007.4002 Information Theory +1008.1766 Information Theory +1008.1892 Instrumentation and Methods for Astrophysics +1008.2571 Information Theory +1008.3196 Information Theory +1008.3705 Networking and Internet Architecture +1008.3813 Information Theory +1008.4463 Computer Science and Game Theory +1008.5117 Mesoscale and Nanoscale Physics +1008.5133 Learning +1009.1312 Statistics Theory +1009.2221 Information Theory +1009.2275 Cryptography and Security +1009.3041 Information Theory +1009.3052 Information Theory +1009.3083 Information Theory +1009.3090 Information Theory +1009.3186 Information Theory +1010.3956 Cryptography and Security +1011.1261 Information Theory +1011.1607 Information Theory +1011.2809 Information Theory +1011.3101 Cryptography and Security +1011.3272 Information Theory +1011.3594 Networking and Internet Architecture +1011.3717 Information Theory +1011.3754 Information Theory +1011.3761 Information Theory +1011.5033 Instrumentation and Detectors +1011.6639 Information Theory +1012.2901 Instrumentation and Methods for Astrophysics +1012.3189 Data Structures and Algorithms +1012.3198 Information Theory +1012.3674 Complex Variables +1012.3675 Instrumentation and Detectors +1012.4113 Networking and Internet Architecture +1012.4688 Networking and Internet Architecture +1012.4928 Learning +1101.4712 Mesoscale and Nanoscale Physics +1101.5919 Machine Learning +1102.0603 Robotics +1102.1963 +1102.2516 Information Theory +1102.3751 Information Theory +1102.4411 Information Theory +1102.4423 Distributed, Parallel, and Cluster Computing +1102.5314 Information Theory +1103.2177 Information Theory +1103.5447 Methodology +1104.0430 Information Theory +1104.3544 Sound +1104.3662 Information Theory +1105.1459 Quantum Gases +1105.1562 Information Theory +1105.1973 Hardware Architecture +1105.2264 Databases +1105.6009 Information Theory +1105.6065 Networking and Internet Architecture +1106.0541 Information Theory +1106.3616 Neurons and Cognition +1107.1345 Optimization and Control +1107.1752 Optimization and Control +1107.1754 Methodology +1107.2973 +1107.3313 Information Theory +1107.3602 Information Theory +1107.4021 Information Theory +1107.4922 Performance +1107.6004 Information Theory +1108.1572 Information Theory +1108.2234 Information Theory +1108.2237 Information Theory +1108.2829 Information Theory +1108.4152 Information Theory +1108.4172 Cryptography and Security +1108.4475 Information Theory +1108.4696 Instrumentation and Methods for Astrophysics +1108.4709 Information Theory +1108.5316 Optimization and Control +1108.5838 Applications +1109.5396 Information Theory +1110.0194 Information Theory +1110.0517 Social and Information Networks +1110.3267 Information Theory +1110.5144 Computational Finance +1111.2702 Instrumentation and Methods for Astrophysics +1111.4626 Information Theory +1111.6682 Information Theory +1111.7249 Instrumentation and Detectors +1112.0448 Instrumentation and Detectors +1112.1336 Distributed, Parallel, and Cluster Computing +1112.1762 Information Theory +1112.2842 Networking and Internet Architecture +1112.3516 Networking and Internet Architecture +1112.5995 Information Theory +1201.0737 Information Theory +1201.1935 Information Theory +1201.2211 +1201.4522 Distributed, Parallel, and Cluster Computing +1201.6575 +1202.0206 Information Theory +1202.0460 Information Theory +1202.0463 Information Theory +1202.0534 Information Theory +1202.1144 Information Theory +1202.2998 Information Theory +1202.3505 Data Structures and Algorithms +1202.3669 Distributed, Parallel, and Cluster Computing +1202.4720 Systems and Control +1202.6134 Distributed, Parallel, and Cluster Computing +1203.0732 Cryptography and Security +1203.2730 Networking and Internet Architecture +1203.2738 Networking and Internet Architecture +1203.4598 Learning +1203.4693 Information Theory +1203.5395 Information Theory +1204.0034 Networking and Internet Architecture +1204.1091 Information Theory +1204.1632 Methodology +1204.1633 Methodology +1204.2214 Multimedia +1204.2274 Information Theory +1204.2435 Information Theory +1204.4135 Optimization and Control +1204.5320 Information Theory +1204.5347 Information Theory +1205.1720 Systems and Control +1205.2903 Methodology +1205.3225 Information Theory +1205.4206 Representation Theory +1205.5849 Information Theory +1205.6248 Statistics Theory +1205.6361 Software Engineering +1206.0992 Distributed, Parallel, and Cluster Computing +1206.1634 Networking and Internet Architecture +1206.2245 Data Analysis, Statistics and Probability +1206.3582 Optimization and Control +1206.4370 Information Theory +1206.4723 Information Theory +1206.5919 Information Theory +1206.6006 Information Theory +1206.6145 Information Theory +1207.0023 Systems and Control +1207.1345 Information Theory +1207.1469 Performance +1207.2137 Information Theory +1207.3146 Information Theory +1207.3285 Neural and Evolutionary Computing +1207.3448 Differential Geometry +1207.5206 Information Theory +1207.5555 Information Theory +1207.5853 Computer Science and Game Theory +1207.6706 Information Theory +1207.6751 Networking and Internet Architecture +1208.1198 Algebraic Geometry +1208.1350 Other Computer Science +1208.1977 Information Theory +1208.2043 Machine Learning +1208.3206 Instrumentation and Methods for Astrophysics +1208.3718 Multimedia +1208.3723 Computer Vision and Pattern Recognition +1208.4415 Information Theory +1208.5604 Optimization and Control +1208.6308 Networking and Internet Architecture +1209.0599 Dynamical Systems +1209.3760 Representation Theory +1209.4238 Information Theory +1209.4277 Computers and Society +1209.5513 Information Theory +1210.3077 Distributed, Parallel, and Cluster Computing +1210.3552 Networking and Internet Architecture +1210.4211 Social and Information Networks +1210.6168 Information Theory +1210.6673 Information Theory +1210.8062 Algebraic Geometry +1210.8145 General Physics +1211.1819 Information Theory +1211.3719 Networking and Internet Architecture +1211.3828 Information Theory +1211.4264 Computer Vision and Pattern Recognition +1211.4940 Information Theory +1211.7180 Social and Information Networks +1212.0791 Representation Theory +1212.2831 Information Theory +1212.2865 Information Theory +1212.4034 Information Theory +1212.4626 Information Theory +1301.0965 Networking and Internet Architecture +1301.1415 Information Theory +1301.2383 +1301.6471 Information Theory +1301.7630 Information Theory +1301.7657 Information Theory +1302.0756 Information Theory +1302.1459 Information Theory +1302.2167 Information Theory +1302.2178 Information Theory +1302.2185 Information Theory +1302.2330 Information Theory +1302.3114 +1302.4201 Cryptography and Security +1302.4516 Information Theory +1302.5280 Information Theory +1302.6123 Cryptography and Security +1302.6646 Networking and Internet Architecture +1302.7195 Computer Science and Game Theory +1303.0529 Information Theory +1303.0606 +1303.1201 Information Theory +1303.1205 Numerical Analysis +1303.1217 Machine Learning +1303.1778 Networking and Internet Architecture +1303.1858 Information Theory +1303.2447 Networking and Internet Architecture +1303.2506 Learning +1303.2552 Other Computer Science +1303.3626 Distributed, Parallel, and Cluster Computing +1303.3796 Networking and Internet Architecture +1303.4370 Information Theory +1303.4823 Networking and Internet Architecture +1303.4970 Networking and Internet Architecture +1303.5947 Information Theory +1303.6260 Networking and Internet Architecture +1303.6323 Networking and Internet Architecture +1304.0840 Computer Vision and Pattern Recognition +1304.3996 Computer Science and Game Theory +1304.6157 Information Theory +1304.6159 Information Theory +1304.6690 Information Theory +1305.0356 Networking and Internet Architecture +1305.0359 Networking and Internet Architecture +1305.0585 Systems and Control +1305.0983 Systems and Control +1305.2460 Information Theory +1305.2545 Data Structures and Algorithms +1305.3422 Information Theory +1305.3437 Information Theory +1305.3959 Information Theory +1305.4840 Information Theory +1305.5832 Superconductivity +1305.7485 Cryptography and Security +1306.4052 Applications +1306.5268 Social and Information Networks +1307.0067 Information Theory +1307.0444 General Finance +1307.1630 Information Theory +1307.2350 Systems and Control +1307.2421 Information Theory +1307.3121 Information Theory +1307.3544 Information Theory +1307.4318 Physics and Society +1307.4388 Information Theory +1307.4798 Social and Information Networks +1307.4799 Information Theory +1307.4815 Information Theory +1307.5549 Information Theory +1307.6609 Information Theory +1307.7451 Networking and Internet Architecture +1307.7822 Cryptography and Security +1308.0037 Systems and Control +1308.1839 Multimedia +1308.1847 Computation and Language +1308.2401 Information Theory +1308.2565 Social and Information Networks +1308.2592 Systems and Control +1308.3615 Distributed, Parallel, and Cluster Computing +1308.3657 Computers and Society +1308.3662 Social and Information Networks +1308.4948 Plasma Physics +1308.6750 Information Theory +1309.0316 Multimedia +1309.0865 Quantum Algebra +1309.0898 Information Theory +1309.1518 Information Theory +1309.1585 Information Theory +1309.2117 Instrumentation and Detectors +1309.2639 Instrumentation and Methods for Astrophysics +1309.3841 Networking and Internet Architecture +1309.3908 Social and Information Networks +1309.3997 Networking and Internet Architecture +1309.4026 Information Theory +1309.4297 Solar and Stellar Astrophysics +1309.6027 Information Theory +1309.6690 Information Theory +1309.7163 Hardware Architecture +1310.1976 Instrumentation and Methods for Astrophysics +1310.2028 Information Theory +1310.6511 Information Theory +1310.7648 Information Theory +1310.7795 Learning +1311.0404 Information Theory +1311.1187 Information Theory +1311.1329 Information Theory +1311.1991 Atomic Physics +1311.2880 Data Structures and Algorithms +1311.2897 Systems and Control +1311.3979 Robotics +1311.5780 Representation Theory +1311.5917 Physics and Society +1311.5921 Information Theory +1311.6635 Information Theory +1311.7170 Optimization and Control +1311.7302 Information Theory +1312.0825 Networking and Internet Architecture +1312.1024 Information Theory +1312.1492 Computational Geometry +1312.2135 Information Theory +1312.2688 Information Theory +1312.3368 Information Theory +1312.3555 Plasma Physics +1312.3658 Solar and Stellar Astrophysics +1312.3990 Computer Vision and Pattern Recognition +1312.4004 Phenomenology +1312.4074 Computer Vision and Pattern Recognition +1312.4077 Networking and Internet Architecture +1312.4659 Computer Vision and Pattern Recognition +1312.5276 Probability +1312.5349 Systems and Control +1312.5371 Chaotic Dynamics +1312.6748 Optimization and Control +1312.6916 Computer Science and Game Theory +1312.6918 Information Theory +1312.7198 Information Theory +1312.7663 Dynamical Systems +1401.0186 Optimization and Control +1401.1711 Information Theory +1401.1781 Functional Analysis +1401.1888 Trading and Market Microstructure +1401.1891 Trading and Market Microstructure +1401.1892 Trading and Market Microstructure +1401.2952 Information Theory +1401.3674 Multimedia +1401.4907 Information Theory +1401.5528 Networking and Internet Architecture +1401.6846 Information Theory +1401.7032 Operator Algebras +1402.0698 Computers and Society +1402.0808 Neural and Evolutionary Computing +1402.1299 +1402.2231 Networking and Internet Architecture +1402.2699 Cryptography and Security +1402.2783 Instrumentation and Methods for Astrophysics +1402.3352 Systems and Control +1402.3354 Optimization and Control +1402.4109 Applications +1402.4159 Systems and Control +1402.5726 Information Theory +1402.6441 Information Theory +1402.6457 Networking and Internet Architecture +1402.6474 Networking and Internet Architecture +1402.6633 Optimization and Control +1402.6693 Optimization and Control +1402.6720 Applications +1402.7180 Instrumentation and Methods for Astrophysics +1402.7292 Networking and Internet Architecture +1403.0339 Other Computer Science +1403.0957 Information Theory +1403.1596 Information Theory +1403.1615 Information Theory +1403.1647 Representation Theory +1403.2239 Information Theory +1403.3583 Information Theory +1403.3991 Information Theory +1403.4109 Systems and Control +1403.4144 Networking and Internet Architecture +1403.4182 Information Theory +1403.4647 Optimization and Control +1403.4669 Information Theory +1403.7720 Information Theory +1403.7883 Information Theory +1404.0123 Networking and Internet Architecture +1404.0127 Networking and Internet Architecture +1404.0273 Information Theory +1404.1622 Networking and Internet Architecture +1404.2074 Information Theory +1404.2086 Computer Vision and Pattern Recognition +1404.3200 Networking and Internet Architecture +1404.3329 Computational Engineering, Finance, and Science +1404.5605 Information Theory +1404.7055 Populations and Evolution +1404.7604 Information Theory +1404.7665 Optimization and Control +1404.7688 Distributed, Parallel, and Cluster Computing +1405.0766 Optimization and Control +1405.0814 Optimization and Control +1405.0921 Computer Vision and Pattern Recognition +1405.1153 Information Theory +1405.1623 Information Theory +1405.1782 Information Theory +1405.2387 Information Theory +1405.2735 Networking and Internet Architecture +1405.2760 Networking and Internet Architecture +1405.3479 Representation Theory +1405.3941 Networking and Internet Architecture +1405.4201 Computational Engineering, Finance, and Science +1405.4819 Information Theory +1405.5641 Computer Science and Game Theory +1405.5966 Information Theory +1405.6636 Information Theory +1405.6773 Networking and Internet Architecture +1405.6884 Methodology +1405.7812 Information Theory +1406.0928 Networking and Internet Architecture +1406.3103 Information Theory +1406.3147 Networking and Internet Architecture +1406.3164 Information Theory +1406.3380 Geometric Topology +1406.4399 Networking and Internet Architecture +1406.4729 Computer Vision and Pattern Recognition +1406.5706 Statistics Theory +1406.5988 Information Theory +1406.7435 Information Theory +1406.7496 Information Theory +1407.0765 Computer Vision and Pattern Recognition +1407.0848 Information Theory +1407.1540 Information Retrieval +1407.1556 Computer Science and Game Theory +1407.1988 Instrumentation and Methods for Astrophysics +1407.2791 Information Theory +1407.3435 Networking and Internet Architecture +1407.4515 Information Theory +1407.5711 Information Theory +1407.6481 Information Theory +1407.6923 Quantitative Methods +1407.6965 Networking and Internet Architecture +1408.0099 +1408.0240 Analysis of PDEs +1408.0340 +1408.0457 Astrophysics of Galaxies +1408.0532 Systems and Control +1408.0540 Information Theory +1408.1106 Optics +1408.1214 Earth and Planetary Astrophysics +1408.1788 Information Theory +1408.1792 +1408.1899 Atomic and Molecular Clusters +1408.3375 Numerical Analysis +1408.3653 Information Theory +1408.3827 Materials Science +1408.3868 Chaotic Dynamics +1408.4849 Computational Engineering, Finance, and Science +1408.4862 Information Theory +1408.5190 +1408.6331 Lattice +1408.6867 +1409.0112 Information Theory +1409.0177 Methodology +1409.2027 Applications +1409.2095 Information Theory +1409.2943 Astrophysics of Galaxies +1409.3036 Combinatorics +1409.3107 Information Theory +1409.3108 Programming Languages +1409.4609 Group Theory +1409.4822 Computational Engineering, Finance, and Science +1409.4826 Computational Engineering, Finance, and Science +1409.4829 Computational Engineering, Finance, and Science +1409.4831 Computational Engineering, Finance, and Science +1409.5140 Information Theory +1409.5162 Information Theory +1409.5530 Applications +1409.5532 Information Theory +1409.6226 Robotics +1409.6808 Information Theory +1409.6828 Systems and Control +1409.7286 Distributed, Parallel, and Cluster Computing +1409.8125 Information Theory +1409.8650 Information Theory +1410.2609 Information Theory +1410.2620 Cryptography and Security +1410.2707 Computational Engineering, Finance, and Science +1410.3015 Statistical Mechanics +1410.7670 Human-Computer Interaction +1410.7936 +1411.0228 Information Theory +1411.0282 Machine Learning +1411.0435 Information Theory +1411.1102 Robotics +1411.1161 Information Theory +1411.1741 General Physics +1411.2316 Computer Vision and Pattern Recognition +1411.3525 Robotics +1411.3589 +1411.3841 Systems and Control +1411.4214 Emerging Technologies +1411.5415 Networking and Internet Architecture +1411.5461 Information Theory +1411.5712 Computer Science and Game Theory +1411.5739 Data Structures and Algorithms +1411.7121 Information Theory +1411.8003 Learning +1412.1283 Computer Vision and Pattern Recognition +1412.1873 Optics +1412.3788 Information Theory +1412.4840 Computer Science and Game Theory +1412.4957 Networking and Internet Architecture +1412.6030 Phenomenology +1412.6464 Neural and Evolutionary Computing +1412.6586 Machine Learning +1412.6747 Information Theory +1412.6792 Optimization and Control +1412.7070 Classical Analysis and ODEs +1412.7642 +1412.8648 Emerging Technologies +1412.8689 Mesoscale and Nanoscale Physics +1501.00077 Information Theory +1501.00078 Networking and Internet Architecture +1501.01496 Networking and Internet Architecture +1501.02889 Information Theory +1501.03393 +1501.04310 Information Theory +1501.05521 Instrumentation and Detectors +1501.05970 Computer Vision and Pattern Recognition +1501.06241 Machine Learning +1501.06629 Applications +1502.00734 Networking and Internet Architecture +1502.01032 Computer Vision and Pattern Recognition +1502.01539 Databases +1502.01708 Networking and Internet Architecture +1502.01908 Machine Learning +1502.01980 Information Theory +1502.03038 Computers and Society +1502.03057 Space Physics +1502.03469 Networking and Internet Architecture +1502.03666 Information Theory +1502.04117 Information Theory +1502.04165 Information Theory +1502.04186 Networking and Internet Architecture +1502.04344 Information Theory +1502.04458 Combinatorics +1502.04649 Information Theory +1502.06004 Optimization and Control +1502.06076 Computer Vision and Pattern Recognition +1502.06080 Computer Vision and Pattern Recognition +1502.06105 Computer Vision and Pattern Recognition +1502.06189 Machine Learning +1502.06922 Computation and Language +1502.07226 Medical Physics +1502.07456 Instrumentation and Detectors +1503.00237 Multiagent Systems +1503.00759 Machine Learning +1503.01443 Symplectic Geometry +1503.01847 Neural and Evolutionary Computing +1503.02563 Computer Science and Game Theory +1503.02714 Atmospheric and Oceanic Physics +1503.03832 Computer Vision and Pattern Recognition +1503.04877 Social and Information Networks +1503.05601 Optimization and Control +1503.06078 Neurons and Cognition +1503.06324 +1503.06671 Phenomenology +1503.06933 Optimization and Control +1503.06959 Computer Vision and Pattern Recognition +1503.06966 Information Theory +1503.07296 Mesoscale and Nanoscale Physics +1503.07511 Optimization and Control +1503.08244 Systems and Control +1503.08570 Distributed, Parallel, and Cluster Computing +1503.08758 Information Theory +1503.08771 Social and Information Networks +1503.08778 Information Theory +1503.08889 Information Theory +1504.00082 Information Theory +1504.01101 Information Theory +1504.01140 Information Theory +1504.01158 Information Theory +1504.01185 Networking and Internet Architecture +1504.01192 Optics +1504.01320 Information Theory +1504.02168 Information Theory +1504.02307 Information Theory +1504.02366 Numerical Analysis +1504.02954 Networking and Internet Architecture +1504.02980 Information Theory +1504.03516 Information Theory +1504.03536 Networking and Internet Architecture +1504.03542 Networking and Internet Architecture +1504.03573 Computer Vision and Pattern Recognition +1504.03582 Optimization and Control +1504.03725 Information Theory +1504.05059 Machine Learning +1504.05498 Information Theory +1504.05628 +1504.07154 Information Theory +1505.00947 Information Theory +1505.00953 Information Theory +1505.02211 Hardware Architecture +1505.02286 +1505.02871 Optimization and Control +1505.02896 Information Theory +1505.03122 Number Theory +1505.03451 Statistics Theory +1505.06562 Systems and Control +1505.06685 Information Theory +1505.07283 Information Theory +1506.00722 Optimization and Control +1506.01058 Networking and Internet Architecture +1506.01966 Information Theory +1506.03364 Logic +1506.04583 Information Theory +1506.06040 Methodology +1506.07615 Information Theory +1506.08291 Information Theory +1506.08865 Computers and Society +1506.08879 Information Theory +1507.02257 Complex Variables +1507.04401 Robotics +1507.05106 Data Structures and Algorithms +1507.05144 Systems and Control +1507.05154 Systems and Control +1507.05812 Networking and Internet Architecture +1507.06239 Systems and Control +1507.06353 Cryptography and Security +1507.06357 Optimization and Control +1507.06838 Computer Vision and Pattern Recognition +1507.07091 Information Theory +1508.00064 Differential Geometry +1508.00817 Medical Physics +1508.01161 Information Theory +1508.01182 Distributed, Parallel, and Cluster Computing +1508.01572 Distributed, Parallel, and Cluster Computing +1508.02124 Rings and Algebras +1508.02324 Information Theory +1508.03961 Systems and Control +1508.04823 Differential Geometry +1508.05896 Networking and Internet Architecture +1508.07056 Geometric Topology +1508.07333 Information Theory +1508.07343 Networking and Internet Architecture +1508.07839 +1509.00836 Information Theory +1509.01635 Mesoscale and Nanoscale Physics +1509.01668 Complex Variables +1509.01931 Information Theory +1509.02289 Software Engineering +1509.02606 Complex Variables +1509.02655 Information Theory +1509.02768 Information Theory +1509.05856 Information Theory +1509.06029 Information Theory +1509.06089 Information Theory +1509.08961 Dynamical Systems +1510.00060 Combinatorics +1510.00609 Information Theory +1510.00625 +1510.00629 Geometric Topology +1510.00844 Distributed, Parallel, and Cluster Computing +1510.01812 Information Theory +1510.04839 Social and Information Networks +1510.04892 Classical Physics +1510.06736 Symplectic Geometry +1510.06754 Mesoscale and Nanoscale Physics +1510.06826 Information Theory +1510.06827 Information Theory +1510.06828 Information Theory +1510.07917 Computer Science and Game Theory +1510.07932 Networking and Internet Architecture +1510.07970 Networking and Internet Architecture +1510.08496 Networking and Internet Architecture +1511.00743 Analysis of PDEs +1511.02152 Information Theory +1511.02259 Information Theory +1511.02279 Systems and Control +1511.03143 Instrumentation and Detectors +1511.03334 Methodology +1511.04110 Neural and Evolutionary Computing +1511.04192 Computer Vision and Pattern Recognition +1511.04863 Mathematical Finance +1511.05011 Probability +1511.05604 Computation +1511.06061 Networking and Internet Architecture +1511.06911 Computer Vision and Pattern Recognition +1511.06938 Information Theory +1511.06971 Information Theory +1511.08474 Networking and Internet Architecture +1511.08729 +1511.09038 Number Theory +1512.00259 Networking and Internet Architecture +1512.01065 Methodology +1512.01479 Cryptography and Security +1512.01516 Information Theory +1512.01585 Information Theory +1512.02684 Networking and Internet Architecture +1512.03423 Computers and Society +1512.03497 Networking and Internet Architecture +1512.04479 Combinatorics +1512.04602 Networking and Internet Architecture +1512.05272 Systems and Control +1512.05732 Information Theory +1512.06413 Combinatorics +1512.06528 Information Theory +1512.07240 +1512.07839 Learning +1512.08079 +1512.08632 +1601.00040 +1601.00329 Cosmology and Nongalactic Astrophysics +1601.00418 Theory +1601.00428 Networking and Internet Architecture +1601.00445 Information Theory +1601.01082 Statistics Theory +1601.02391 Information Theory +1601.03505 Networking and Internet Architecture +1601.03613 Information Theory +1601.03728 +1601.04014 Materials Science +1601.04217 Networking and Internet Architecture +1601.04583 Systems and Control +1601.04797 Networking and Internet Architecture +1601.04829 Information Theory +1601.05529 High Energy Astrophysical Phenomena +1601.05533 Information Theory +1601.06704 Information Theory +1601.06705 Information Theory +1601.07851 Data Analysis, Statistics and Probability +1601.07865 Information Theory +1602.00661 Social and Information Networks +1602.00721 Probability +1602.01190 Theory +1602.01327 Information Theory +1602.01633 Experiment +1602.01958 Systems and Control +1602.02685 Learning +1602.03641 Numerical Analysis +1602.04493 Cryptography and Security +1602.05671 Information Theory +1602.05702 Sound +1602.06442 Robotics +1602.06888 Distributed, Parallel, and Cluster Computing +1602.07024 Cryptography and Security +1602.07458 +1602.07533 Information Theory +1602.09001 Information Theory +1602.09019 Networking and Internet Architecture +1602.09076 Artificial Intelligence +1603.00149 Distributed, Parallel, and Cluster Computing +1603.00244 Information Theory +1603.00481 Earth and Planetary Astrophysics +1603.01472 Information Theory +1603.02000 Information Theory +1603.02182 Information Theory +1603.03225 Optimization and Control +1603.03366 Optimization and Control +1603.04080 Neural and Evolutionary Computing +1603.04264 Sound +1603.04312 +1603.04574 Information Theory +1603.04874 Phenomenology +1603.04979 Sound +1603.05634 Statistical Mechanics +1603.06432 Computer Vision and Pattern Recognition +1603.06461 Networking and Internet Architecture +1603.07052 Information Theory +1603.07055 Information Theory +1603.07524 Computers and Society +1603.07554 Information Theory +1603.07576 Information Theory +1603.07624 Computation and Language +1603.08128 Rings and Algebras +1603.08244 Information Theory +1603.08554 +1603.09530 Networking and Internet Architecture +1604.00141 Cosmology and Nongalactic Astrophysics +1604.00312 Computer Vision and Pattern Recognition +1604.00457 Neural and Evolutionary Computing +1604.02333 Information Theory +1604.03454 Social and Information Networks +1604.03468 Robotics +1604.04752 Information Theory +1604.04944 +1604.05483 Information Theory +1604.06589 Information Theory +1604.07807 Computer Vision and Pattern Recognition +1604.08197 +1605.00031 Learning +1605.00543 Theory +1605.00660 Methodology +1605.00873 Information Theory +1605.01266 Phenomenology +1605.01556 High Energy Astrophysical Phenomena +1605.02481 Theory +1605.02747 +1605.03160 +1605.03834 +1605.03915 Human-Computer Interaction +1605.04402 Phenomenology +1605.04446 Statistics Theory +1605.04965 Robotics +1605.05132 +1605.06442 Networking and Internet Architecture +1605.06804 Differential Geometry +1605.06899 Quantum Gases +1605.06970 Computational Physics +1605.07972 Optics +1605.08936 Information Theory +1606.00124 Information Theory +1606.00914 Number Theory +1606.01467 Learning +1606.01593 Software Engineering +1606.01759 Information Theory +1606.01799 Information Theory +1606.01903 Cosmology and Nongalactic Astrophysics +1606.01938 Theory +1606.02033 Information Theory +1606.02449 Probability +1606.02766 Numerical Analysis +1606.04025 General Topology +1606.04445 Phenomenology +1606.04492 Optimization and Control +1606.06259 Computation and Language +1606.06757 Superconductivity +1606.07329 Fluid Dynamics +1606.08009 Learning +1606.08150 Distributed, Parallel, and Cluster Computing +1606.08157 Information Retrieval +1606.08752 Complex Variables +1606.09640 Representation Theory +1607.00575 Information Theory +1607.00588 Information Theory +1607.00590 Information Theory +1607.00591 Information Theory +1607.01341 Cryptography and Security +1607.01723 Software Engineering +1607.02538 Statistics Theory +1607.02564 Number Theory +1607.02973 Materials Science +1607.03228 Strongly Correlated Electrons +1607.03492 Statistical Mechanics +1607.03890 Group Theory +1607.03913 Theory +1607.04900 Chemical Physics +1607.05309 Strongly Correlated Electrons +1607.05587 Systems and Control +1607.06305 +1607.06656 +1607.06754 Neurons and Cognition +1607.06792 Information Theory +1607.07161 Superconductivity +1607.07987 Computer Vision and Pattern Recognition +1608.00204 Optics +1608.01427 Geometric Topology +1608.01470 Superconductivity +1608.01679 +1608.02372 Experiment +1608.02413 Data Structures and Algorithms +1608.02594 Rings and Algebras +1608.02820 Phenomenology +1608.03198 Phenomenology +1608.03351 Information Theory +1608.03825 Information Theory +1608.05211 Information Theory +1608.05322 +1608.05768 Information Theory +1608.05868 Medical Physics +1608.06040 Theory +1608.06999 Phenomenology +1608.07605 Machine Learning +1608.08576 Information Theory +1609.00364 Theory +1609.00432 Physics and Society +1609.01310 +1609.01732 Cosmology and Nongalactic Astrophysics +1609.02128 Instrumentation and Detectors +1609.02346 Analysis of PDEs +1609.02493 Earth and Planetary Astrophysics +1609.02617 Chemical Physics +1609.02900 Optics +1609.04044 Instrumentation and Detectors +1609.04371 Logic in Computer Science +1609.05042 Theory +1609.05548 +1609.05807 Learning +1609.05838 Materials Science +1609.06680 Solar and Stellar Astrophysics +1609.08330 Information Theory +1609.08492 Computation and Language +1609.09630 Soft Condensed Matter +1609.09762 Mesoscale and Nanoscale Physics +1609.09807 Computers and Society +1610.00270 Machine Learning +1610.01341 Combinatorics +1610.02396 Instrumentation and Detectors +1610.02915 Computer Vision and Pattern Recognition +1610.03002 Optimization and Control +1610.03250 Phenomenology +1610.03906 Computer Science and Game Theory +1610.04211 Computation and Language +1610.04272 Numerical Analysis +1610.04326 Experiment +1610.04588 Combinatorics +1610.04659 Representation Theory +1610.04778 Theory +1610.05098 +1610.05131 Methodology +1610.05880 Strongly Correlated Electrons +1610.05980 Computational Physics +1610.06619 Dynamical Systems +1610.06835 Methodology +1610.06958 Computational Engineering, Finance, and Science +1610.07465 Superconductivity +1610.07788 +1610.07912 Algebraic Topology +1610.08376 Combinatorics +1610.08529 +1610.08968 Theory +1610.09394 Emerging Technologies +1610.09628 Space Physics +1610.09916 Mesoscale and Nanoscale Physics +1611.00345 Soft Condensed Matter +1611.00413 +1611.00449 Soft Condensed Matter +1611.00484 Databases +1611.00727 Mesoscale and Nanoscale Physics +1611.01058 Mesoscale and Nanoscale Physics +1611.01415 Commutative Algebra +1611.01453 Materials Science +1611.01505 Learning +1611.01507 Programming Languages +1611.01772 +1611.01882 Analysis of PDEs +1611.02065 Numerical Analysis +1611.02341 Combinatorics +1611.02344 Computation and Language +1611.02697 Phenomenology +1611.03095 Earth and Planetary Astrophysics +1611.03524 Logic in Computer Science +1611.03728 +1611.03933 Differential Geometry +1611.04025 +1611.04097 Commutative Algebra +1611.04206 Statistical Mechanics +1611.04385 Number Theory +1611.04714 Strongly Correlated Electrons +1611.04781 Molecular Networks +1611.04945 Mesoscale and Nanoscale Physics +1611.05004 Phenomenology +1611.05054 +1611.05136 Learning +1611.05139 Materials Science +1611.05155 Mesoscale and Nanoscale Physics +1611.05247 Data Structures and Algorithms +1611.05270 Phenomenology +1611.05340 Learning +1611.05345 Computer Vision and Pattern Recognition +1611.05374 Computers and Society +1611.05376 Networking and Internet Architecture +1611.05442 Rings and Algebras +1611.05443 Neurons and Cognition +1611.05444 Materials Science +1611.05449 +1611.05450 +1611.05455 Astrophysics of Galaxies +1611.05457 Astrophysics of Galaxies +1611.05458 +1611.05460 Theory +1611.05467 Information Theory +1611.05468 Cosmology and Nongalactic Astrophysics +1611.05469 Machine Learning +1611.05472 Analysis of PDEs +1611.05474 Biomolecules +1611.05475 Analysis of PDEs +1611.05476 Computer Vision and Pattern Recognition +1611.05479 Computer Vision and Pattern Recognition +1611.05480 Information Retrieval +1611.05481 Materials Science +1611.05482 Combinatorics +1611.05483 Optimization and Control +1611.05486 Solar and Stellar Astrophysics +1611.05488 Analysis of PDEs +1611.05489 Instrumentation and Methods for Astrophysics +1611.05490 Computer Vision and Pattern Recognition +1611.05492 Accelerator Physics +1611.05493 Theory +1611.05494 Numerical Analysis +1611.05497 Artificial Intelligence +1611.05498 Dynamical Systems +1611.05499 Combinatorics +1611.05500 Functional Analysis +1611.05503 Computer Vision and Pattern Recognition +1611.05507 Computer Vision and Pattern Recognition +1611.05508 Algebraic Geometry +1611.05510 Numerical Analysis +1611.05512 Systems and Control +1611.05514 Algebraic Geometry +1611.05518 Pricing of Securities +1611.05519 High Energy Astrophysical Phenomena +1611.05521 Learning +1611.05522 Astrophysics of Galaxies +1611.05525 Cosmology and Nongalactic Astrophysics +1611.05526 Group Theory +1611.05527 Computation and Language +1611.05528 Analysis of PDEs +1611.05529 +1611.05530 Data Structures and Algorithms +1611.05531 Instrumentation and Detectors +1611.05532 Mesoscale and Nanoscale Physics +1611.05537 Information Theory +1611.05542 Optimization and Control +1611.05543 +1611.05547 Plasma Physics +1611.05548 Information Theory +1611.05551 Number Theory +1611.05555 Geometric Topology +1611.05556 Networking and Internet Architecture +1611.05557 Databases +1611.05562 Number Theory +1611.05563 Strongly Correlated Electrons +1611.05565 High Energy Astrophysical Phenomena +1611.05566 Quantum Gases +1611.05568 Strongly Correlated Electrons +1611.05569 Networking and Internet Architecture +1611.05571 Statistical Finance +1611.05572 Probability +1611.05575 Materials Science +1611.05576 Numerical Analysis +1611.05578 Strongly Correlated Electrons +1611.05579 Computers and Society +1611.05581 Quantum Algebra +1611.05582 +1611.05584 Materials Science +1611.05585 Metric Geometry +1611.05587 Medical Physics +1611.05588 Computer Vision and Pattern Recognition +1611.05589 Numerical Analysis +1611.05590 Information Theory +1611.05592 Computer Vision and Pattern Recognition +1611.05593 Solar and Stellar Astrophysics +1611.05594 Computer Vision and Pattern Recognition +1611.05595 Number Theory +1611.05596 Differential Geometry +1611.05597 Information Theory +1611.05598 Materials Science +1611.05599 +1611.05601 +1611.05602 Methodology +1611.05603 Computer Vision and Pattern Recognition +1611.05604 Physics and Society +1611.05611 Experiment +1611.05612 Experiment +1611.05613 Metric Geometry +1611.05614 +1611.05615 Pattern Formation and Solitons +1611.05616 Distributed, Parallel, and Cluster Computing +1611.05618 Number Theory +1611.05619 Networking and Internet Architecture +1611.05620 Algebraic Geometry +1611.05623 Number Theory +1611.05624 Experiment +1611.05625 Earth and Planetary Astrophysics +1611.05626 Software Engineering +1611.05628 Analysis of PDEs +1611.05629 Symplectic Geometry +1611.05630 +1611.05632 Classical Analysis and ODEs +1611.05633 Discrete Mathematics +1611.05635 Phenomenology +1611.05636 Chemical Physics +1611.05638 Multiagent Systems +1611.05639 Disordered Systems and Neural Networks +1611.05640 Logic in Computer Science +1611.05641 +1611.05642 Cryptography and Security +1611.05643 Lattice +1611.05644 Computer Vision and Pattern Recognition +1611.05645 Strongly Correlated Electrons +1611.05646 Data Structures and Algorithms +1611.05647 Algebraic Geometry +1611.05649 Instrumentation and Detectors +1611.05651 Programming Languages +1611.05652 Combinatorics +1611.05653 Information Theory +1611.05654 Instrumentation and Detectors +1611.05655 Combinatorics +1611.05656 Computer Science and Game Theory +1611.05658 Representation Theory +1611.05659 Statistical Mechanics +1611.05660 Data Structures and Algorithms +1611.05661 Strongly Correlated Electrons +1611.05663 Analysis of PDEs +1611.05664 Computer Vision and Pattern Recognition +1611.05667 Complex Variables +1611.05668 Methodology +1611.05670 Fluid Dynamics +1611.05671 Number Theory +1611.05673 Numerical Analysis +1611.05675 Learning +1611.05676 Statistical Mechanics +1611.05678 Earth and Planetary Astrophysics +1611.05679 Commutative Algebra +1611.05685 Geometric Topology +1611.05688 General Finance +1611.05689 Computer Vision and Pattern Recognition +1611.05690 General Finance +1611.05692 Cosmology and Nongalactic Astrophysics +1611.05693 Biological Physics +1611.05695 Plasma Physics +1611.05696 Classical Analysis and ODEs +1611.05697 Accelerator Physics +1611.05699 Methodology +1611.05700 Fluid Dynamics +1611.05701 Materials Science +1611.05702 Number Theory +1611.05703 Numerical Analysis +1611.05705 Computer Vision and Pattern Recognition +1611.05706 Differential Geometry +1611.05707 Tissues and Organs +1611.05709 Computer Vision and Pattern Recognition +1611.05710 Phenomenology +1611.05711 Numerical Analysis +1611.05715 Phenomenology +1611.05716 +1611.05717 Numerical Analysis +1611.05718 Rings and Algebras +1611.05720 Computer Vision and Pattern Recognition +1611.05722 Machine Learning +1611.05723 Information Theory +1611.05725 Computer Vision and Pattern Recognition +1611.05727 General Physics +1611.05728 Probability +1611.05729 Fluid Dynamics +1611.05730 Solar and Stellar Astrophysics +1611.05731 Earth and Planetary Astrophysics +1611.05732 High Energy Astrophysical Phenomena +1611.05734 +1611.05735 Artificial Intelligence +1611.05736 Biological Physics +1611.05737 General Physics +1611.05738 +1611.05739 Astrophysics of Galaxies +1611.05740 Artificial Intelligence +1611.05741 Populations and Evolution +1611.05742 Computer Vision and Pattern Recognition +1611.05743 Learning +1611.05744 Computer Vision and Pattern Recognition +1611.05746 Combinatorics +1611.05747 Lattice +1611.05749 Chaotic Dynamics +1611.05750 Lattice +1611.05751 Learning +1611.05752 +1611.05753 Data Structures and Algorithms +1611.05754 +1611.05755 Computer Vision and Pattern Recognition +1611.05756 Dynamical Systems +1611.05757 Phenomenology +1611.05759 +1611.05760 Computer Vision and Pattern Recognition +1611.05761 +1611.05762 Analysis of PDEs +1611.05764 +1611.05765 Instrumentation and Detectors +1611.05767 Differential Geometry +1611.05768 Combinatorics +1611.05769 Theory +1611.05771 Probability +1611.05772 Probability +1611.05773 Representation Theory +1611.05776 Group Theory +1611.05777 Computer Vision and Pattern Recognition +1611.05780 Machine Learning +1611.05783 Materials Science +1611.05784 Combinatorics +1611.05786 Theory +1611.05787 Networking and Internet Architecture +1611.05788 Applications +1611.05789 Software Engineering +1611.05790 Commutative Algebra +1611.05792 Instrumentation and Detectors +1611.05793 Distributed, Parallel, and Cluster Computing +1611.05795 Computational Physics +1611.05796 Probability +1611.05798 Materials Science +1611.05799 Computer Vision and Pattern Recognition +1611.05800 Numerical Analysis +1611.05801 Group Theory +1611.05803 Other Computer Science +1611.05804 Classical Analysis and ODEs +1611.05805 Populations and Evolution +1611.05806 Instrumentation and Methods for Astrophysics +1611.05807 Functional Analysis +1611.05814 Molecular Networks +1611.05816 Cosmology and Nongalactic Astrophysics +1611.05817 Machine Learning +1611.05818 Logic +1611.05820 Optimization and Control +1611.05822 Lattice +1611.05824 Numerical Analysis +1611.05825 +1611.05828 +1611.05831 Formal Languages and Automata Theory +1611.05833 Theory +1611.05835 Adaptation and Self-Organizing Systems +1611.05836 Strongly Correlated Electrons +1611.05837 Computer Vision and Pattern Recognition +1611.05838 Statistics Theory +1611.05840 Analysis of PDEs +1611.05841 Theory +1611.05842 Computer Vision and Pattern Recognition +1611.05845 Optimization and Control +1611.05846 Instrumentation and Detectors +1611.05848 Theory +1611.05849 Algebraic Geometry +1611.05857 Phenomenology +1611.05859 Solar and Stellar Astrophysics +1611.05860 High Energy Astrophysical Phenomena +1611.05861 +astro-ph/0109247 +astro-ph/0505165 +astro-ph/0608638 +cond-mat/0111254 Materials Science +cond-mat/0211191 Superconductivity +cond-mat/0301382 Superconductivity +cond-mat/0303305 Mesoscale and Nanoscale Physics +cond-mat/0308344 Superconductivity +cond-mat/0410270 Statistical Mechanics +cond-mat/0411708 Superconductivity +cond-mat/0501283 Superconductivity +cond-mat/0507405 Materials Science +cond-mat/0604534 Disordered Systems and Neural Networks +cond-mat/9811141 Superconductivity +cond-mat/9811158 Materials Science +cs/0001007 Networking and Internet Architecture +cs/0009021 Distributed, Parallel, and Cluster Computing +cs/0105006 Software Engineering +cs/0209006 Networking and Internet Architecture +cs/0301014 Learning +cs/0402025 Databases +cs/0407004 Information Theory +cs/0407060 Information Theory +cs/0411006 Information Theory +cs/0411011 Information Theory +cs/0503003 Software Engineering +cs/0503040 Information Theory +cs/0503041 Information Theory +cs/0503042 Information Theory +cs/0503071 Information Theory +cs/0504003 Information Theory +cs/0504016 Discrete Mathematics +cs/0504032 Information Theory +cs/0509010 Information Theory +cs/0509048 Information Theory +cs/0509075 Information Theory +cs/0509089 Computational Engineering, Finance, and Science +cs/0509099 Discrete Mathematics +cs/0510033 Information Theory +cs/0510068 Information Theory +cs/0510071 Information Theory +cs/0511057 Information Theory +cs/0512066 Information Theory +cs/0601107 Information Theory +cs/0605041 Information Theory +cs/0605060 Distributed, Parallel, and Cluster Computing +cs/0605087 Information Theory +cs/0605095 Information Theory +cs/0608111 Software Engineering +cs/0611017 Information Theory +cs/0611028 Discrete Mathematics +cs/0611053 Information Theory +cs/0611072 Software Engineering +math/0207289 Combinatorics +math/0404520 General Mathematics +math/0409548 Probability +math/0508575 Combinatorics +math/0509250 Optimization and Control +math/0509279 Probability +math/0601650 Optimization and Control +math/0610812 Combinatorics +math/0611586 Number Theory +math/0701056 Optimization and Control +physics/0104020 Medical Physics +physics/0104032 Computational Physics +physics/0302067 General Physics +physics/0305094 Instrumentation and Detectors +physics/0408095 Chemical Physics +physics/0509221 Instrumentation and Detectors +physics/0511212 Instrumentation and Detectors +physics/0601138 Instrumentation and Detectors +physics/0608202 Instrumentation and Detectors +physics/0701084 Medical Physics +quant-ph/0012084 +quant-ph/0103098 +quant-ph/0105018 +quant-ph/0112103 +quant-ph/0205128 +quant-ph/0205138 +quant-ph/0205178 +quant-ph/0303113 +quant-ph/0307071 +quant-ph/0601106 +quant-ph/0601157 +quant-ph/0603135 +quant-ph/0604072 +quant-ph/0605030 +quant-ph/0605066 +quant-ph/0608075 +quant-ph/0608195 +quant-ph/0609229 +quant-ph/0701020 +quant-ph/9809010 +quant-ph/9906090 +supr-con/9609001 Superconductivity +0705.1201 Superconductivity +0708.1936 +0805.1270 Number Theory +0806.0009 +0905.1175 Mesoscale and Nanoscale Physics +0906.3807 +0906.3869 Materials Science +0908.1778 Mesoscale and Nanoscale Physics +0910.5894 Mesoscale and Nanoscale Physics +0912.1585 Number Theory +1102.4927 Materials Science +1104.2068 Mesoscale and Nanoscale Physics +1104.3169 Optics +1105.0175 Materials Science +1106.3553 Theory +1107.0109 Materials Science +1112.2132 Mesoscale and Nanoscale Physics +1201.1273 Quantum Algebra +1205.5836 Mesoscale and Nanoscale Physics +1206.2856 Materials Science +1209.1601 Dynamical Systems +1212.1724 +1212.6578 Algebraic Topology +1212.6965 Statistical Mechanics +1301.4637 Dynamical Systems +1303.1784 Group Theory +1304.1753 K-Theory and Homology +1304.5314 K-Theory and Homology +1305.6217 Algebraic Topology +1307.1696 Probability +1308.2442 Algebraic Geometry +1308.3099 Logic +1308.5090 Number Theory +1309.2474 Cosmology and Nongalactic Astrophysics +1309.2667 Geometric Topology +1309.4958 Data Structures and Algorithms +1310.0516 Combinatorics +1401.2452 Dynamical Systems +1401.2648 Geometric Topology +1401.3712 K-Theory and Homology +1401.5778 Algebraic Geometry +1401.7150 Algebraic Topology +1401.7927 Metric Geometry +1402.3504 High Energy Astrophysical Phenomena +1402.3963 Logic +1403.0236 Probability +1403.2012 Dynamical Systems +1403.3143 Geometric Topology +1403.5191 Algebraic Topology +1404.5783 Mesoscale and Nanoscale Physics +1405.0925 Commutative Algebra +1405.5496 Materials Science +1406.1735 Geometric Topology +1406.1737 Geometric Topology +1406.1740 Differential Geometry +1406.1741 Differential Geometry +1406.1743 Differential Geometry +1406.1745 Differential Geometry +1406.1800 Cosmology and Nongalactic Astrophysics +1406.2431 Information Retrieval +1406.6212 +1406.7174 Symplectic Geometry +1406.7467 Algebraic Topology +1407.0693 Dynamical Systems +1407.1258 Exactly Solvable and Integrable Systems +1407.1366 Algebraic Geometry +1407.4638 Dynamical Systems +1407.5247 Quantum Algebra +1407.5987 Geometric Topology +1407.7450 Algebraic Topology +1408.1027 Methodology +1408.1508 Geometric Topology +1408.3557 Logic +1408.4755 Statistics Theory +1408.6349 Algebraic Geometry +1409.6475 Differential Geometry +1410.6297 Geometric Topology +1410.7233 Combinatorics +1411.0508 Dynamical Systems +1411.0902 Group Theory +1411.3581 Probability +1412.4374 Fluid Dynamics +1412.4659 Information Theory +1501.01266 Algebraic Geometry +1501.01713 Metric Geometry +1501.02575 Classical Analysis and ODEs +1501.03425 Algebraic Topology +1501.04470 Dynamical Systems +1501.05110 Lattice +1501.05236 Analysis of PDEs +1501.07055 Functional Analysis +1501.07118 Earth and Planetary Astrophysics +1502.00282 Disordered Systems and Neural Networks +1502.01583 Instrumentation and Methods for Astrophysics +1502.01584 Cosmology and Nongalactic Astrophysics +1502.01586 Instrumentation and Methods for Astrophysics +1502.01587 Cosmology and Nongalactic Astrophysics +1502.01589 Cosmology and Nongalactic Astrophysics +1502.01593 Cosmology and Nongalactic Astrophysics +1502.01596 Cosmology and Nongalactic Astrophysics +1502.01597 Cosmology and Nongalactic Astrophysics +1502.02211 Theory +1502.03094 Strongly Correlated Electrons +1502.03801 Probability +1502.03834 Symplectic Geometry +1502.04016 Quantum Gases +1502.06145 Statistical Mechanics +1502.07331 Computer Vision and Pattern Recognition +1503.01409 Theory +1503.01562 Analysis of PDEs +1503.02045 Information Theory +1503.02375 Probability +1503.02518 Algebraic Topology +1503.03627 Phenomenology +1503.04228 Phenomenology +1503.06374 Geometric Topology +1503.06622 Materials Science +1503.06909 Exactly Solvable and Integrable Systems +1503.07755 +1503.08218 Cosmology and Nongalactic Astrophysics +1503.08320 Algebraic Geometry +1504.00090 Quantum Algebra +1504.00348 Classical Analysis and ODEs +1504.00365 Theory +1504.00388 +1504.01011 Group Theory +1504.02171 +1504.03448 Algebraic Geometry +1504.05379 Solar and Stellar Astrophysics +1505.00046 Phenomenology +1505.00361 Analysis of PDEs +1505.01047 Representation Theory +1505.01382 Analysis of PDEs +1505.01555 Classical Analysis and ODEs +1505.02141 Information Theory +1505.03452 K-Theory and Homology +1505.03716 Phenomenology +1505.04053 Geometric Topology +1505.04380 Phenomenology +1505.04403 Solar and Stellar Astrophysics +1505.04630 Machine Learning +1505.04870 Computer Vision and Pattern Recognition +1505.05409 Symplectic Geometry +1505.05585 Analysis of PDEs +1505.06164 Probability +1505.06316 Instrumentation and Detectors +1505.06327 +1505.06611 Computer Vision and Pattern Recognition +1505.07331 Dynamical Systems +1505.07349 Probability +1505.07693 Numerical Analysis +1505.07795 Numerical Analysis +1505.07921 Analysis of PDEs +1505.08022 Instrumentation and Methods for Astrophysics +1506.01559 Numerical Analysis +1506.02148 Phenomenology +1506.02219 Analysis of PDEs +1506.02298 Probability +1506.02446 Numerical Analysis +1506.02746 Materials Science +1506.02810 Geophysics +1506.03328 Theory +1506.03755 Phenomenology +1506.04870 Optimization and Control +1506.05083 Numerical Analysis +1506.05889 Information Theory +1506.05996 Computational Engineering, Finance, and Science +1506.06401 Physics Education +1506.06660 Astrophysics of Galaxies +1506.07135 Cosmology and Nongalactic Astrophysics +1506.07550 +1506.07636 Exactly Solvable and Integrable Systems +1506.07738 Differential Geometry +1506.08165 +1506.08716 Combinatorics +1506.09144 Differential Geometry +1507.00273 Atomic Physics +1507.00905 +1507.01055 Soft Condensed Matter +1507.01576 Phenomenology +1507.02236 Statistical Mechanics +1507.02704 Cosmology and Nongalactic Astrophysics +1507.02797 Instrumentation and Detectors +1507.03021 Cosmology and Nongalactic Astrophysics +1507.03634 Logic +1507.04099 Quantum Gases +1507.04169 Probability +1507.04176 +1507.04254 Disordered Systems and Neural Networks +1507.04265 +1507.05054 Algebraic Geometry +1507.05382 Instrumentation and Detectors +1507.06075 Physics Education +1507.06263 Geometric Topology +1507.06315 Phenomenology +1507.06348 Theory +1507.06424 Phenomenology +1507.06981 Materials Science +1507.07058 Artificial Intelligence +1507.08182 Astrophysics of Galaxies +1507.08829 Theory +1508.00194 Materials Science +1508.00426 Earth and Planetary Astrophysics +1508.00890 Analysis of PDEs +1508.02073 Optimization and Control +1508.03360 Plasma Physics +1508.03823 Phenomenology +1508.04037 Classical Physics +1508.04448 Statistical Mechanics +1508.05290 +1508.05384 Systems and Control +1508.05966 +1508.06022 +1508.06328 Plasma Physics +1509.01015 Computational Physics +1509.01093 Chaotic Dynamics +1509.01282 Fluid Dynamics +1509.01296 +1509.01336 Analysis of PDEs +1509.01777 Probability +1509.03236 Algebraic Topology +1509.03675 Accelerator Physics +1509.04371 Analysis of PDEs +1509.04491 Information Theory +1509.05108 Information Theory +1509.05512 Information Theory +1509.05538 Atomic Physics +1509.05543 High Energy Astrophysical Phenomena +1509.05617 Materials Science +1509.05938 Functional Analysis +1509.06054 Theory +1509.06223 Phenomenology +1509.06348 Cosmology and Nongalactic Astrophysics +1509.06389 Dynamical Systems +1509.06555 Cosmology and Nongalactic Astrophysics +1509.06577 Phenomenology +1509.06649 Astrophysics of Galaxies +1509.06663 Numerical Analysis +1509.07624 Numerical Analysis +1509.07639 Algebraic Topology +1509.07685 Computational Physics +1509.08451 Information Theory +1509.08951 +1509.08970 Computer Vision and Pattern Recognition +1510.00084 Methodology +1510.00122 Fluid Dynamics +1510.00341 Fluid Dynamics +1510.00709 Theory +1510.00834 High Energy Astrophysical Phenomena +1510.00903 Lattice +1510.01399 +1510.01428 Strongly Correlated Electrons +1510.01644 Materials Science +1510.01720 Cosmology and Nongalactic Astrophysics +1510.01955 +1510.01993 Systems and Control +1510.02634 Materials Science +1510.02738 Earth and Planetary Astrophysics +1510.03099 +1510.03356 Materials Science +1510.03545 Mesoscale and Nanoscale Physics +1510.04321 Phenomenology +1510.04349 +1510.04417 Phenomenology +1510.05176 Systems and Control +1510.05184 Materials Science +1510.05329 Atmospheric and Oceanic Physics +1510.05614 Statistical Mechanics +1510.05665 Mesoscale and Nanoscale Physics +1510.05954 Cosmology and Nongalactic Astrophysics +1510.06410 Astrophysics of Galaxies +1510.06565 +1510.06723 Algebraic Topology +1510.06881 Strongly Correlated Electrons +1510.06941 Superconductivity +1510.07573 Robotics +1510.07698 Mesoscale and Nanoscale Physics +1510.07799 Computational Physics +1510.07856 +1510.09050 Quantum Gases +1511.00034 +1511.00836 Dynamical Systems +1511.00863 Strongly Correlated Electrons +1511.00989 Analysis of PDEs +1511.01247 Analysis of PDEs +1511.01301 +1511.01465 Cosmology and Nongalactic Astrophysics +1511.02099 +1511.02157 Atomic Physics +1511.02532 Strongly Correlated Electrons +1511.02703 Statistical Mechanics +1511.02720 Phenomenology +1511.02855 High Energy Astrophysical Phenomena +1511.02865 Phenomenology +1511.02895 Earth and Planetary Astrophysics +1511.03098 Algebraic Topology +1511.03160 Geometric Topology +1511.03613 Solar and Stellar Astrophysics +1511.03782 Solar and Stellar Astrophysics +1511.04200 Experiment +1511.04331 +1511.04504 Atomic Physics +1511.04757 Superconductivity +1511.04965 Probability +1511.05136 Theory +1511.05225 Phenomenology +1511.05961 Quantum Gases +1511.06770 Astrophysics of Galaxies +1511.07175 Instrumentation and Detectors +1511.07195 Numerical Analysis +1511.07399 Probability +1511.07462 Theory +1511.07639 Statistical Mechanics +1511.07736 Phenomenology +1511.07875 Solar and Stellar Astrophysics +1511.08068 Risk Management +1511.08112 +1511.08145 Fluid Dynamics +1511.08176 Number Theory +1511.08641 Cosmology and Nongalactic Astrophysics +1511.08658 +1511.08806 Astrophysics of Galaxies +1511.08880 Phenomenology +1511.08958 Optics +1511.09035 Theory +1511.09084 +1511.09192 Number Theory +1511.09335 Solar and Stellar Astrophysics +1511.09465 Materials Science +1512.00175 Analysis of PDEs +1512.00214 Quantum Gases +1512.00543 Phenomenology +1512.00555 Theory +1512.00584 Materials Science +1512.00635 Phenomenology +1512.00676 Analysis of PDEs +1512.00825 Computation +1512.00827 Strongly Correlated Electrons +1512.01387 Representation Theory +1512.01457 Logic +1512.01505 Fluid Dynamics +1512.01545 Materials Science +1512.01906 +1512.01949 Superconductivity +1512.02091 Phenomenology +1512.02148 Dynamical Systems +1512.02194 Distributed, Parallel, and Cluster Computing +1512.02404 Combinatorics +1512.02408 Theory +1512.02517 Fluid Dynamics +1512.02816 Theory +1512.03060 Phenomenology +1512.03121 Differential Geometry +1512.03210 Numerical Analysis +1512.03415 +1512.03577 Atomic Physics +1512.03610 Materials Science +1512.04003 Phenomenology +1512.04007 Quantum Gases +1512.04126 Probability +1512.04305 Optics +1512.04528 Statistical Mechanics +1512.04615 Astrophysics of Galaxies +1512.04704 +1512.05089 +1512.05232 +1512.05334 Phenomenology +1512.05464 Plasma Physics +1512.05566 Methodology +1512.05626 Mesoscale and Nanoscale Physics +1512.05658 +1512.05899 Cosmology and Nongalactic Astrophysics +1512.05951 Atomic Physics +1512.06015 +1512.06140 Dynamical Systems +1512.06172 Atomic Physics +1512.06319 +1512.06561 +1512.07383 Dynamical Systems +1512.07457 Atomic Physics +1512.07597 Theory +1512.07827 Social and Information Networks +1512.07899 Optics +1512.07931 Artificial Intelligence +1512.08152 Phenomenology +1512.08364 Statistical Mechanics +1512.08392 Phenomenology +1512.08484 Phenomenology +1512.08756 Learning +1512.08791 Astrophysics of Galaxies +1512.08926 Theory +1512.09176 Computers and Society +1601.00092 General Finance +1601.00219 +1601.00243 Fluid Dynamics +1601.00303 Theory +1601.00437 Mesoscale and Nanoscale Physics +1601.00470 +1601.00725 Theory +1601.00828 Materials Science +1601.00890 Mesoscale and Nanoscale Physics +1601.01060 Computer Vision and Pattern Recognition +1601.01167 Phenomenology +1601.01314 Physics Education +1601.01344 Statistical Mechanics +1601.01461 Numerical Analysis +1601.01576 Physics and Society +1601.01655 +1601.01703 +1601.01745 Dynamical Systems +1601.01748 Atomic Physics +1601.02018 Solar and Stellar Astrophysics +1601.02235 +1601.02244 +1601.02326 Materials Science +1601.02335 Optimization and Control +1601.02611 Astrophysics of Galaxies +1601.02667 Numerical Analysis +1601.02692 Soft Condensed Matter +1601.02780 Instrumentation and Detectors +1601.03022 Human-Computer Interaction +1601.03262 General Mathematics +1601.03340 Physics Education +1601.03415 Physics and Society +1601.03547 High Energy Astrophysical Phenomena +1601.03598 Instrumentation and Detectors +1601.03702 Statistical Mechanics +1601.04426 Phenomenology +1601.04441 +1601.04456 Superconductivity +1601.04457 Theory +1601.05033 Dynamical Systems +1601.05178 Solar and Stellar Astrophysics +1601.05261 Statistics Theory +1601.05280 +1601.05328 Phenomenology +1601.05391 Phenomenology +1601.05611 Theory +1601.05663 Soft Condensed Matter +1601.05714 +1601.06058 +1601.06201 Learning +1601.06566 Theory +1601.06620 +1601.06719 Computer Vision and Pattern Recognition +1601.06852 Analysis of PDEs +1601.06959 Instrumentation and Detectors +1601.07038 Superconductivity +1601.07174 High Energy Astrophysical Phenomena +1601.07487 Combinatorics +1601.07582 Physics and Society +1601.07632 Phenomenology +1601.07691 +1601.07707 Trading and Market Microstructure +1601.08135 Probability +1602.00020 Computer Vision and Pattern Recognition +1602.00611 Cosmology and Nongalactic Astrophysics +1602.00647 Phenomenology +1602.00792 +1602.01076 Theory +1602.01203 Physics and Society +1602.01446 High Energy Astrophysical Phenomena +1602.01541 Computer Vision and Pattern Recognition +1602.01549 Strongly Correlated Electrons +1602.01666 Biological Physics +1602.01738 Instrumentation and Methods for Astrophysics +1602.01906 Information Theory +1602.02020 Numerical Analysis +1602.02125 Accelerator Physics +1602.02164 Machine Learning +1602.02275 High Energy Astrophysical Phenomena +1602.02470 Materials Science +1602.02588 Analysis of PDEs +1602.02649 Mesoscale and Nanoscale Physics +1602.02727 +1602.02768 +1602.02909 Instrumentation and Detectors +1602.02920 Strongly Correlated Electrons +1602.02965 +1602.02968 +1602.03312 Differential Geometry +1602.03414 +1602.03773 Combinatorics +1602.03803 Phenomenology +1602.04045 +1602.04156 High Energy Astrophysical Phenomena +1602.04162 Mesoscale and Nanoscale Physics +1602.04479 Optics +1602.04539 +1602.04553 Category Theory +1602.04699 +1602.04790 Differential Geometry +1602.04815 Cosmology and Nongalactic Astrophysics +1602.04824 Astrophysics of Galaxies +1602.04825 Theory +1602.04885 Quantum Algebra +1602.04999 Plasma Physics +1602.05004 +1602.05126 Theory +1602.05180 +1602.05197 +1602.05350 Learning +1602.05360 Strongly Correlated Electrons +1602.05452 Statistical Mechanics +1602.05478 Probability +1602.05482 +1602.05530 Physics and Society +1602.05905 +1602.05974 Number Theory +1602.06080 Instrumentation and Detectors +1602.06364 +1602.06437 Phenomenology +1602.06826 Plasma Physics +1602.07015 Instrumentation and Detectors +1602.07066 Accelerator Physics +1602.07126 Mesoscale and Nanoscale Physics +1602.07130 Chaotic Dynamics +1602.07204 Materials Science +1602.07223 +1602.07239 +1602.07353 Theory +1602.07368 Logic +1602.07673 Theory +1602.07877 Materials Science +1602.07918 Accelerator Physics +1602.07931 +1602.08202 Atomic Physics +1602.08256 Materials Science +1602.08293 Phenomenology +1602.08530 Neurons and Cognition +1602.08602 Numerical Analysis +1602.08622 Phenomenology +1602.08647 Fluid Dynamics +1602.08677 Mesoscale and Nanoscale Physics +1602.08711 Phenomenology +1602.09120 Statistics Theory +1603.00074 Social and Information Networks +1603.00098 Instrumentation and Detectors +1603.00127 Phenomenology +1603.00247 Optics +1603.00437 Computer Vision and Pattern Recognition +1603.00501 +1603.00513 Quantum Gases +1603.00627 Mesoscale and Nanoscale Physics +1603.00668 Numerical Analysis +1603.00888 Astrophysics of Galaxies +1603.01037 Strongly Correlated Electrons +1603.01221 +1603.01442 Adaptation and Self-Organizing Systems +1603.01614 Astrophysics of Galaxies +1603.01645 Superconductivity +1603.01936 +1603.02045 +1603.02087 Cosmology and Nongalactic Astrophysics +1603.02222 Analysis of PDEs +1603.02345 Computer Vision and Pattern Recognition +1603.02510 Solar and Stellar Astrophysics +1603.02643 Operator Algebras +1603.02722 +1603.02878 Theory +1603.02915 Phenomenology +1603.02953 Fluid Dynamics +1603.02979 Quantum Gases +1603.03291 Theory +1603.03321 +1603.03648 +1603.03807 Mesoscale and Nanoscale Physics +1603.03943 +1603.04082 High Energy Astrophysical Phenomena +1603.04135 Superconductivity +1603.04240 Mesoscale and Nanoscale Physics +1603.04269 Materials Science +1603.04326 Plasma Physics +1603.04355 Phenomenology +1603.04361 Plasma Physics +1603.04369 Theory +1603.04374 Systems and Control +1603.04448 Disordered Systems and Neural Networks +1603.04464 Phenomenology +1603.04505 Statistical Mechanics +1603.04617 Statistical Mechanics +1603.04737 Phenomenology +1603.05009 +1603.05093 Mesoscale and Nanoscale Physics +1603.05164 Numerical Analysis +1603.05364 +1603.05419 Mesoscale and Nanoscale Physics +1603.05503 High Energy Astrophysical Phenomena +1603.05507 Strongly Correlated Electrons +1603.05662 Earth and Planetary Astrophysics +1603.05861 Phenomenology +1603.05919 Statistical Mechanics +1603.05974 Materials Science +1603.06026 Phenomenology +1603.06072 Instrumentation and Methods for Astrophysics +1603.06101 +1603.06107 Solar and Stellar Astrophysics +1603.06457 Strongly Correlated Electrons +1603.06496 Computer Vision and Pattern Recognition +1603.06664 Phenomenology +1603.06926 High Energy Astrophysical Phenomena +1603.06950 Phenomenology +1603.06971 Strongly Correlated Electrons +1603.07317 Theory +1603.07480 +1603.07680 +1603.07724 Theory +1603.07858 Theory +1603.08052 Phenomenology +1603.08058 Theory +1603.08093 Materials Science +1603.08110 Operator Algebras +1603.08226 +1603.08303 Instrumentation and Detectors +1603.08352 Soft Condensed Matter +1603.08380 Physics and Society +1603.08407 General Physics +1603.08459 +1603.08473 Instrumentation and Detectors +1603.08550 Theory +1603.08552 +1603.08906 Phenomenology +1603.08911 Phenomenology +1603.09008 Earth and Planetary Astrophysics +1603.09085 +1603.09315 Algebraic Geometry +1603.09361 Theory +1603.09627 Disordered Systems and Neural Networks +1603.09635 Superconductivity +1604.00015 Astrophysics of Galaxies +1604.00078 Theory +1604.00110 Physics and Society +1604.00161 +1604.00294 Plasma Physics +1604.00344 Plasma Physics +1604.00388 Theory +1604.00476 Materials Science +1604.00567 Optics +1604.00599 High Energy Astrophysical Phenomena +1604.00628 Instrumentation and Detectors +1604.00728 Phenomenology +1604.00838 Astrophysics of Galaxies +1604.00916 +1604.01125 Physics and Society +1604.01823 Fluid Dynamics +1604.01831 Analysis of PDEs +1604.01967 +1604.02085 Adaptation and Self-Organizing Systems +1604.02194 Dynamical Systems +1604.02206 Representation Theory +1604.02344 Phenomenology +1604.02346 Theory +1604.02387 +1604.02411 Materials Science +1604.02445 Phenomenology +1604.02630 Physics and Society +1604.02701 Instrumentation and Detectors +1604.02718 Materials Science +1604.02878 Computer Vision and Pattern Recognition +1604.02978 Materials Science +1604.02991 Chaotic Dynamics +1604.03066 Superconductivity +1604.03179 High Energy Astrophysical Phenomena +1604.03309 Accelerator Physics +1604.03331 Plasma Physics +1604.03340 +1604.03456 Astrophysics of Galaxies +1604.03533 Cosmology and Nongalactic Astrophysics +1604.03560 Theory +1604.03599 Statistical Mechanics +1604.03669 Theory +1604.03760 Materials Science +1604.03879 Statistical Mechanics +1604.03948 Mesoscale and Nanoscale Physics +1604.03966 Phenomenology +1604.04081 Strongly Correlated Electrons +1604.04098 +1604.04104 Numerical Analysis +1604.04110 +1604.04370 Mesoscale and Nanoscale Physics +1604.04534 Instrumentation and Methods for Astrophysics +1604.04584 Emerging Technologies +1604.04605 Mesoscale and Nanoscale Physics +1604.04681 Plasma Physics +1604.04726 Strongly Correlated Electrons +1604.05025 Theory +1604.05032 Analysis of PDEs +1604.05052 +1604.05170 Neural and Evolutionary Computing +1604.05339 Classical Analysis and ODEs +1604.05493 Astrophysics of Galaxies +1604.05554 Mesoscale and Nanoscale Physics +1604.05634 Exactly Solvable and Integrable Systems +1604.05759 Analysis of PDEs +1604.05805 Astrophysics of Galaxies +1604.05810 +1604.05995 Phenomenology +1604.06001 Category Theory +1604.06050 Optics +1604.06185 Phenomenology +1604.06231 Phenomenology +1604.06278 +1604.06390 Strongly Correlated Electrons +1604.06396 Theory +1604.06465 Theory +1604.06478 Optics +1604.06502 Mesoscale and Nanoscale Physics +1604.06539 Mesoscale and Nanoscale Physics +1604.06587 +1604.06679 Atomic and Molecular Clusters +1604.06742 Atomic Physics +1604.06808 Theory +1604.06810 Theory +1604.06974 +1604.07053 Mesoscale and Nanoscale Physics +1604.07056 Disordered Systems and Neural Networks +1604.07274 +1604.07306 +1604.07310 Theory +1604.07405 Earth and Planetary Astrophysics +1604.07412 Astrophysics of Galaxies +1604.07471 Phenomenology +1604.07473 Instrumentation and Detectors +1604.07480 Computer Vision and Pattern Recognition +1604.07583 Superconductivity +1604.07613 Number Theory +1604.07640 Optics +1604.07680 Cosmology and Nongalactic Astrophysics +1604.07714 Mesoscale and Nanoscale Physics +1604.07754 +1604.07812 Superconductivity +1604.07869 Phenomenology +1604.07899 Cosmology and Nongalactic Astrophysics +1604.07907 Solar and Stellar Astrophysics +1604.07942 Solar and Stellar Astrophysics +1604.07968 Strongly Correlated Electrons +1604.08056 +1604.08073 Superconductivity +1604.08133 Solar and Stellar Astrophysics +1604.08206 Phenomenology +1604.08208 Cosmology and Nongalactic Astrophysics +1604.08218 Cosmology and Nongalactic Astrophysics +1604.08219 Cosmology and Nongalactic Astrophysics +1604.08368 Optics +1604.08526 Phenomenology +1604.08538 Information Theory +1604.08761 Strongly Correlated Electrons +1604.08913 Theory +1604.08939 +1605.00145 Chemical Physics +1605.00181 Materials Science +1605.00292 Atomic Physics +1605.00387 Strongly Correlated Electrons +1605.00557 +1605.00563 Theory +1605.00700 Instrumentation and Detectors +1605.00734 Materials Science +1605.00776 Strongly Correlated Electrons +1605.00900 Phenomenology +1605.00919 Theory +1605.00991 Phenomenology +1605.01001 Instrumentation and Methods for Astrophysics +1605.01325 Earth and Planetary Astrophysics +1605.01404 Theory +1605.01650 Biological Physics +1605.01654 Chemical Physics +1605.01691 Instrumentation and Detectors +1605.01736 Astrophysics of Galaxies +1605.01867 Information Theory +1605.01900 Materials Science +1605.01904 Theory +1605.01932 Theory +1605.02097 Learning +1605.02100 Dynamical Systems +1605.02179 Materials Science +1605.02183 +1605.02219 Operator Algebras +1605.02601 Phenomenology +1605.02674 Machine Learning +1605.02675 Theory +1605.02716 Phenomenology +1605.02751 Theory +1605.02829 Mesoscale and Nanoscale Physics +1605.02853 +1605.02903 Soft Condensed Matter +1605.02915 +1605.02922 Theory +1605.03157 Phenomenology +1605.03179 Cosmology and Nongalactic Astrophysics +1605.03241 Populations and Evolution +1605.03254 Mesoscale and Nanoscale Physics +1605.03320 Solar and Stellar Astrophysics +1605.03348 Materials Science +1605.03577 Computational Physics +1605.03602 Phenomenology +1605.03684 Materials Science +1605.03820 Mesoscale and Nanoscale Physics +1605.03845 Biological Physics +1605.03922 Space Physics +1605.04120 Chaotic Dynamics +1605.04143 Theory +1605.04158 Soft Condensed Matter +1605.04272 Mesoscale and Nanoscale Physics +1605.04287 Phenomenology +1605.04304 High Energy Astrophysical Phenomena +1605.04313 Solar and Stellar Astrophysics +1605.04327 Optics +1605.04791 Theory +1605.04816 Probability +1605.04823 Lattice +1605.04904 Solar and Stellar Astrophysics +1605.04935 Phenomenology +1605.05004 Strongly Correlated Electrons +1605.05167 Materials Science +1605.05225 Optimization and Control +1605.05298 Fluid Dynamics +1605.05313 Phenomenology +1605.05359 Learning +1605.05450 Phenomenology +1605.05559 Theory +1605.05668 +1605.05701 Mesoscale and Nanoscale Physics +1605.05729 Earth and Planetary Astrophysics +1605.05733 Cosmology and Nongalactic Astrophysics +1605.05816 +1605.05837 Solar and Stellar Astrophysics +1605.05842 Materials Science +1605.05877 Mesoscale and Nanoscale Physics +1605.05918 Machine Learning +1605.05987 Theory +1605.06019 Materials Science +1605.06035 Experiment +1605.06061 Phenomenology +1605.06124 Cosmology and Nongalactic Astrophysics +1605.06156 Instrumentation and Methods for Astrophysics +1605.06179 Materials Science +1605.06202 Materials Science +1605.06225 +1605.06383 Theory +1605.06496 Chemical Physics +1605.06497 Chemical Physics +1605.06504 High Energy Astrophysical Phenomena +1605.06525 Soft Condensed Matter +1605.06531 Theory +1605.06542 Soft Condensed Matter +1605.06655 Solar and Stellar Astrophysics +1605.06753 Theory +1605.06797 Materials Science +1605.06858 Mesoscale and Nanoscale Physics +1605.06869 Materials Science +1605.06907 Materials Science +1605.06916 Instrumentation and Detectors +1605.06920 Mesoscale and Nanoscale Physics +1605.06952 Materials Science +1605.07012 +1605.07067 Materials Science +1605.07140 Mesoscale and Nanoscale Physics +1605.07169 Chemical Physics +1605.07188 Phenomenology +1605.07215 Solar and Stellar Astrophysics +1605.07236 Astrophysics of Galaxies +1605.07281 Optics +1605.07296 +1605.07378 Solar and Stellar Astrophysics +1605.07496 Learning +1605.07558 Materials Science +1605.07597 Instrumentation and Detectors +1605.07619 Instrumentation and Methods for Astrophysics +1605.07643 Phenomenology +1605.07660 Instrumentation and Detectors +1605.07778 +1605.07836 Theory +1605.07842 High Energy Astrophysical Phenomena +1605.07857 Optics +1605.07875 Instrumentation and Detectors +1605.07942 +1605.07968 Statistical Mechanics +1605.08042 Strongly Correlated Electrons +1605.08050 Astrophysics of Galaxies +1605.08064 Cosmology and Nongalactic Astrophysics +1605.08129 Theory +1605.08208 Theory +1605.08241 Physics and Society +1605.08265 Phenomenology +1605.08362 Phenomenology +1605.08476 Pattern Formation and Solitons +1605.08531 Mesoscale and Nanoscale Physics +1605.08550 Differential Geometry +1605.08596 Mesoscale and Nanoscale Physics +1605.08685 Solar and Stellar Astrophysics +1605.08727 Phenomenology +1605.08959 Optics +1605.09064 +1605.09093 Combinatorics +1605.09099 Geometric Topology +1605.09106 Populations and Evolution +1605.09254 Theory +1605.09308 Phenomenology +1605.09389 High Energy Astrophysical Phenomena +1605.09415 Cosmology and Nongalactic Astrophysics +1605.09418 +1605.09438 Chemical Physics +1605.09483 Superconductivity +1605.09537 Space Physics +1605.09581 Materials Science +1605.09789 +1606.00024 Solar and Stellar Astrophysics +1606.00159 Phenomenology +1606.00212 Fluid Dynamics +1606.00260 Statistical Mechanics +1606.00334 Strongly Correlated Electrons +1606.00335 Materials Science +1606.00402 Instrumentation and Methods for Astrophysics +1606.00434 Astrophysics of Galaxies +1606.00459 Cosmology and Nongalactic Astrophysics +1606.00551 Phenomenology +1606.00593 Disordered Systems and Neural Networks +1606.00609 Soft Condensed Matter +1606.00621 Theory +1606.00654 Theory +1606.00725 Materials Science +1606.00783 Experiment +1606.00817 +1606.00830 Theory +1606.00866 Plasma Physics +1606.00923 Phenomenology +1606.00986 Superconductivity +1606.01002 Lattice +1606.01018 +1606.01090 +1606.01110 +1606.01262 +1606.01304 Astrophysics of Galaxies +1606.01350 Phenomenology +1606.01398 Instrumentation and Detectors +1606.01410 +1606.01462 Probability +1606.01486 Optics +1606.01728 Instrumentation and Detectors +1606.01761 Astrophysics of Galaxies +1606.01767 +1606.01853 Phenomenology +1606.01858 Materials Science +1606.01884 Emerging Technologies +1606.01911 +1606.01956 High Energy Astrophysical Phenomena +1606.02124 Strongly Correlated Electrons +1606.02171 +1606.02244 Phenomenology +1606.02313 Phenomenology +1606.02350 Materials Science +1606.02434 Phenomenology +1606.02869 Theory +1606.02962 Earth and Planetary Astrophysics +1606.02969 Phenomenology +1606.02993 Solar and Stellar Astrophysics +1606.03012 Earth and Planetary Astrophysics +1606.03094 Disordered Systems and Neural Networks +1606.03099 Phenomenology +1606.03112 +1606.03176 Strongly Correlated Electrons +1606.03269 Phenomenology +1606.03287 Phenomenology +1606.03311 Mesoscale and Nanoscale Physics +1606.03314 +1606.03383 +1606.03421 Optics +1606.03449 Phenomenology +1606.03452 Astrophysics of Galaxies +1606.03523 Earth and Planetary Astrophysics +1606.03605 Theory +1606.03689 +1606.03767 Materials Science +1606.03936 Materials Science +1606.03943 Solar and Stellar Astrophysics +1606.04008 Plasma Physics +1606.04068 +1606.04104 Theory +1606.04162 Earth and Planetary Astrophysics +1606.04181 Plasma Physics +1606.04206 Instrumentation and Detectors +1606.04208 Computational Physics +1606.04238 Materials Science +1606.04319 Physics and Society +1606.04527 Cosmology and Nongalactic Astrophysics +1606.04613 Combinatorics +1606.04657 Materials Science +1606.04688 Quantum Algebra +1606.04739 Fluid Dynamics +1606.04852 Instrumentation and Detectors +1606.04926 Theory +1606.04952 Astrophysics of Galaxies +1606.05096 Materials Science +1606.05246 Instrumentation and Detectors +1606.05345 Cosmology and Nongalactic Astrophysics +1606.05438 Solar and Stellar Astrophysics +1606.05521 Phenomenology +1606.05546 Lattice +1606.05547 Soft Condensed Matter +1606.05579 Machine Learning +1606.05580 +1606.05625 Theory +1606.05758 Mesoscale and Nanoscale Physics +1606.05772 Algebraic Geometry +1606.05776 Plasma Physics +1606.05799 Phenomenology +1606.05812 Earth and Planetary Astrophysics +1606.05956 +1606.05977 Atomic Physics +1606.06054 Phenomenology +1606.06375 Phenomenology +1606.06595 Optics +1606.06614 Materials Science +1606.06665 Phenomenology +1606.06687 Theory +1606.06719 Phenomenology +1606.06740 Earth and Planetary Astrophysics +1606.06767 Phenomenology +1606.06868 Chemical Physics +1606.06954 Theory +1606.07058 Theory +1606.07175 Lattice +1606.07225 +1606.07296 Materials Science +1606.07328 Theory +1606.07341 +1606.07402 Mesoscale and Nanoscale Physics +1606.07421 Earth and Planetary Astrophysics +1606.07450 Astrophysics of Galaxies +1606.07466 +1606.07536 Computer Vision and Pattern Recognition +1606.07658 Atomic Physics +1606.07689 Phenomenology +1606.07718 Solar and Stellar Astrophysics +1606.07801 Computational Physics +1606.07806 Instrumentation and Detectors +1606.07933 Mesoscale and Nanoscale Physics +1606.07949 Plasma Physics +1606.07957 Mesoscale and Nanoscale Physics +1606.07963 Phenomenology +1606.08112 Phenomenology +1606.08224 Theory +1606.08247 Superconductivity +1606.08351 Fluid Dynamics +1606.08399 Solar and Stellar Astrophysics +1606.08522 Earth and Planetary Astrophysics +1606.08558 Strongly Correlated Electrons +1606.08640 Phenomenology +1606.08641 Pattern Formation and Solitons +1606.08682 Theory +1606.08785 Phenomenology +1606.08801 +1606.08807 Theory +1606.08860 Disordered Systems and Neural Networks +1606.08862 Cosmology and Nongalactic Astrophysics +1606.08874 Biomolecules +1606.08880 +1606.08913 +1606.08932 Solar and Stellar Astrophysics +1606.09024 Solar and Stellar Astrophysics +1606.09120 Optics +1606.09151 Statistical Mechanics +1606.09174 Earth and Planetary Astrophysics +1606.09211 Mesoscale and Nanoscale Physics +1606.09318 Solar and Stellar Astrophysics +1606.09366 +1606.09385 Lattice +1606.09490 Experiment +1606.09613 Optics +1607.00082 +1607.00092 Quantum Gases +1607.00111 +1607.00341 Mesoscale and Nanoscale Physics +1607.00522 Rings and Algebras +1607.00587 Soft Condensed Matter +1607.00803 Astrophysics of Galaxies +1607.00851 Superconductivity +1607.00891 +1607.00907 Superconductivity +1607.00966 Disordered Systems and Neural Networks +1607.00988 Optics +1607.01028 Astrophysics of Galaxies +1607.01062 High Energy Astrophysical Phenomena +1607.01068 Statistical Mechanics +1607.01122 Statistical Mechanics +1607.01134 Physics and Society +1607.01242 Earth and Planetary Astrophysics +1607.01325 Atomic Physics +1607.01333 Superconductivity +1607.01407 Materials Science +1607.01454 +1607.01607 Materials Science +1607.01694 +1607.01701 Phenomenology +1607.01792 Earth and Planetary Astrophysics +1607.01857 Instrumentation and Detectors +1607.01858 Mesoscale and Nanoscale Physics +1607.01873 Theory +1607.02008 Solar and Stellar Astrophysics +1607.02055 Mesoscale and Nanoscale Physics +1607.02202 High Energy Astrophysical Phenomena +1607.02304 Astrophysics of Galaxies +1607.02350 Earth and Planetary Astrophysics +1607.02369 Instrumentation and Methods for Astrophysics +1607.02513 Solar and Stellar Astrophysics +1607.02542 Theory +1607.02629 Astrophysics of Galaxies +1607.02768 Cosmology and Nongalactic Astrophysics +1607.02799 Phenomenology +1607.02939 Phenomenology +1607.03041 Mesoscale and Nanoscale Physics +1607.03130 Solar and Stellar Astrophysics +1607.03314 Space Physics +1607.03394 +1607.03452 Operator Algebras +1607.03554 Astrophysics of Galaxies +1607.03713 Optics +1607.03753 Solar and Stellar Astrophysics +1607.03763 Theory +1607.03795 Robotics +1607.03917 Solar and Stellar Astrophysics +1607.03931 Phenomenology +1607.04000 Chaotic Dynamics +1607.04018 Phenomenology +1607.04225 Solar and Stellar Astrophysics +1607.04317 Statistical Mechanics +1607.04371 Lattice +1607.04489 +1607.04498 High Energy Astrophysical Phenomena +1607.04508 +1607.04575 Optics +1607.04685 Dynamical Systems +1607.04821 +1607.04863 +1607.04906 Astrophysics of Galaxies +1607.04914 Astrophysics of Galaxies +1607.04918 Phenomenology +1607.04995 High Energy Astrophysical Phenomena +1607.05062 +1607.05081 Classical Analysis and ODEs +1607.05219 Mesoscale and Nanoscale Physics +1607.05230 Materials Science +1607.05248 Earth and Planetary Astrophysics +1607.05263 Earth and Planetary Astrophysics +1607.05276 Phenomenology +1607.05413 +1607.05487 Astrophysics of Galaxies +1607.05540 Multiagent Systems +1607.05747 Quantum Algebra +1607.05872 Atomic and Molecular Clusters +1607.05873 Superconductivity +1607.05903 Cosmology and Nongalactic Astrophysics +1607.06005 Fluid Dynamics +1607.06111 Optics +1607.06265 Astrophysics of Galaxies +1607.06374 Robotics +1607.06452 Astrophysics of Galaxies +1607.06459 Astrophysics of Galaxies +1607.06465 Astrophysics of Galaxies +1607.06593 +1607.06723 Atomic Physics +1607.06736 Instrumentation and Detectors +1607.07008 Phenomenology +1607.07048 Space Physics +1607.07125 High Energy Astrophysical Phenomena +1607.07228 +1607.07258 Astrophysics of Galaxies +1607.07400 Experiment +1607.07435 Atomic Physics +1607.07548 Information Theory +1607.07637 Instrumentation and Methods for Astrophysics +1607.07850 High Energy Astrophysical Phenomena +1607.08022 Computer Vision and Pattern Recognition +1607.08099 Astrophysics of Galaxies +1607.08158 Solar and Stellar Astrophysics +1607.08178 High Energy Astrophysical Phenomena +1607.08193 +1607.08510 Computational Physics +1607.08619 Instrumentation and Methods for Astrophysics +1607.08759 Superconductivity +1607.08829 Strongly Correlated Electrons +1608.00047 Cosmology and Nongalactic Astrophysics +1608.00077 High Energy Astrophysical Phenomena +1608.00416 Adaptation and Self-Organizing Systems +1608.00444 Strongly Correlated Electrons +1608.00456 Solar and Stellar Astrophysics +1608.00626 Soft Condensed Matter +1608.00704 Machine Learning +1608.00706 Earth and Planetary Astrophysics +1608.00750 Instrumentation and Methods for Astrophysics +1608.00762 Computer Vision and Pattern Recognition +1608.00869 Computation and Language +1608.00983 Instrumentation and Methods for Astrophysics +1608.01248 Phenomenology +1608.01324 Cosmology and Nongalactic Astrophysics +1608.01480 +1608.01583 Geometric Topology +1608.01669 High Energy Astrophysical Phenomena +1608.01831 Solar and Stellar Astrophysics +1608.01843 Theory +1608.02073 Atomic Physics +1608.02075 +1608.02207 Differential Geometry +1608.02210 Astrophysics of Galaxies +1608.02212 Soft Condensed Matter +1608.02285 Phenomenology +1608.02304 Strongly Correlated Electrons +1608.02548 Fluid Dynamics +1608.02624 Chemical Physics +1608.02668 Cosmology and Nongalactic Astrophysics +1608.02785 Atomic Physics +1608.02851 +1608.02867 +1608.02920 Solar and Stellar Astrophysics +1608.03018 Strongly Correlated Electrons +1608.03021 +1608.03060 Astrophysics of Galaxies +1608.03093 Soft Condensed Matter +1608.03184 Materials Science +1608.03228 Strongly Correlated Electrons +1608.03271 Solar and Stellar Astrophysics +1608.03275 Strongly Correlated Electrons +1608.03347 Statistical Mechanics +1608.03349 Dynamical Systems +1608.03376 Atomic Physics +1608.03379 Chemical Physics +1608.03437 +1608.03623 Materials Science +1608.03773 Computer Vision and Pattern Recognition +1608.03897 High Energy Astrophysical Phenomena +1608.04013 Statistical Mechanics +1608.04056 Phenomenology +1608.04230 Instrumentation and Detectors +1608.04263 Strongly Correlated Electrons +1608.04277 +1608.04410 Superconductivity +1608.04424 Strongly Correlated Electrons +1608.04427 +1608.04515 Atomic Physics +1608.04521 High Energy Astrophysical Phenomena +1608.04528 Information Theory +1608.04709 Theory +1608.04715 Materials Science +1608.04747 Materials Science +1608.04828 Optics +1608.04898 Rings and Algebras +1608.05080 Astrophysics of Galaxies +1608.05227 Mesoscale and Nanoscale Physics +1608.05276 High Energy Astrophysical Phenomena +1608.05389 +1608.05447 Phenomenology +1608.05529 Classical Physics +1608.05571 Computer Vision and Pattern Recognition +1608.05817 Atomic Physics +1608.05986 Functional Analysis +1608.06087 Earth and Planetary Astrophysics +1608.06122 Mesoscale and Nanoscale Physics +1608.06371 Analysis of PDEs +1608.06387 Optics +1608.06526 Optics +1608.06660 Earth and Planetary Astrophysics +1608.06995 Astrophysics of Galaxies +1608.07139 Biological Physics +1608.07335 Statistical Mechanics +1608.07354 Quantum Gases +1608.07364 Neurons and Cognition +1608.07563 Optics +1608.07598 Applications +1608.07669 +1608.07677 Plasma Physics +1608.07741 +1608.07743 Software Engineering +1608.07782 Astrophysics of Galaxies +1608.07841 Numerical Analysis +1608.07873 Mesoscale and Nanoscale Physics +1608.08107 Mesoscale and Nanoscale Physics +1608.08241 Astrophysics of Galaxies +1608.08269 Soft Condensed Matter +1608.08370 Information Theory +1608.08628 Astrophysics of Galaxies +1608.08642 Solar and Stellar Astrophysics +1608.08682 Networking and Internet Architecture +1608.08719 Mesoscale and Nanoscale Physics +1608.08756 Earth and Planetary Astrophysics +1608.08947 Cosmology and Nongalactic Astrophysics +1608.08963 Cosmology and Nongalactic Astrophysics +1609.00029 Superconductivity +1609.00188 High Energy Astrophysical Phenomena +1609.00200 Instrumentation and Methods for Astrophysics +1609.00271 Rings and Algebras +1609.00305 +1609.00322 Logic in Computer Science +1609.00362 Solar and Stellar Astrophysics +1609.00391 Astrophysics of Galaxies +1609.00398 +1609.00537 Astrophysics of Galaxies +1609.00575 Astrophysics of Galaxies +1609.00601 Solar and Stellar Astrophysics +1609.00619 Soft Condensed Matter +1609.00621 Information Theory +1609.00640 High Energy Astrophysical Phenomena +1609.00761 +1609.00785 Strongly Correlated Electrons +1609.00892 High Energy Astrophysical Phenomena +1609.01005 Probability +1609.01114 Statistical Mechanics +1609.01162 Astrophysics of Galaxies +1609.01209 Astrophysics of Galaxies +1609.01299 Astrophysics of Galaxies +1609.01389 Applications +1609.01506 Astrophysics of Galaxies +1609.01515 Astrophysics of Galaxies +1609.01519 Instrumentation and Methods for Astrophysics +1609.01527 Solar and Stellar Astrophysics +1609.01595 Solar and Stellar Astrophysics +1609.01643 Commutative Algebra +1609.01740 Astrophysics of Galaxies +1609.01754 Soft Condensed Matter +1609.01779 Astrophysics of Galaxies +1609.01800 Astrophysics of Galaxies +1609.01851 Solar and Stellar Astrophysics +1609.01944 Atomic and Molecular Clusters +1609.01947 Chemical Physics +1609.02070 Atomic and Molecular Clusters +1609.02100 Statistical Mechanics +1609.02153 Solar and Stellar Astrophysics +1609.02222 Astrophysics of Galaxies +1609.02311 Astrophysics of Galaxies +1609.02316 Artificial Intelligence +1609.02358 Astrophysics of Galaxies +1609.02367 Astrophysics of Galaxies +1609.02379 Solar and Stellar Astrophysics +1609.02476 Instrumentation and Methods for Astrophysics +1609.02563 Earth and Planetary Astrophysics +1609.02570 Astrophysics of Galaxies +1609.02607 Solar and Stellar Astrophysics +1609.02619 Astrophysics of Galaxies +1609.02632 Astrophysics of Galaxies +1609.02635 Astrophysics of Galaxies +1609.02859 Earth and Planetary Astrophysics +1609.03037 Earth and Planetary Astrophysics +1609.03057 Computer Vision and Pattern Recognition +1609.03065 Instrumentation and Methods for Astrophysics +1609.03085 Mesoscale and Nanoscale Physics +1609.03135 Solar and Stellar Astrophysics +1609.03191 Human-Computer Interaction +1609.03197 Solar and Stellar Astrophysics +1609.03238 Astrophysics of Galaxies +1609.03350 High Energy Astrophysical Phenomena +1609.03397 Phenomenology +1609.03411 General Physics +1609.03453 Solar and Stellar Astrophysics +1609.03516 Mesoscale and Nanoscale Physics +1609.03518 Mesoscale and Nanoscale Physics +1609.03520 Solar and Stellar Astrophysics +1609.03558 Cosmology and Nongalactic Astrophysics +1609.03559 Astrophysics of Galaxies +1609.03571 Astrophysics of Galaxies +1609.03718 Materials Science +1609.03753 Astrophysics of Galaxies +1609.03775 Astrophysics of Galaxies +1609.03833 Astrophysics of Galaxies +1609.03843 Astrophysics of Galaxies +1609.03899 High Energy Astrophysical Phenomena +1609.03969 Solar and Stellar Astrophysics +1609.04170 High Energy Astrophysical Phenomena +1609.04226 Mesoscale and Nanoscale Physics +1609.04229 Mesoscale and Nanoscale Physics +1609.04239 Materials Science +1609.04266 Astrophysics of Galaxies +1609.04352 Astrophysics of Galaxies +1609.04407 Astrophysics of Galaxies +1609.04452 Earth and Planetary Astrophysics +1609.04478 Other Statistics +1609.04513 Metric Geometry +1609.04527 High Energy Astrophysical Phenomena +1609.04568 Mesoscale and Nanoscale Physics +1609.04664 Social and Information Networks +1609.04750 Number Theory +1609.04914 +1609.04937 Optics +1609.05058 Artificial Intelligence +1609.05103 Databases +1609.05124 Fluid Dynamics +1609.05294 Learning +1609.05618 Astrophysics of Galaxies +1609.05698 Instrumentation and Detectors +1609.05779 Dynamical Systems +1609.05803 Statistics Theory +1609.05824 Combinatorics +1609.05869 Lattice +1609.05890 +1609.05891 Geometric Topology +1609.05892 Rings and Algebras +1609.05893 +1609.05896 Physics and Society +1609.05909 Astrophysics of Galaxies +1609.05910 +1609.05913 High Energy Astrophysical Phenomena +1609.05915 +1609.05920 Optimization and Control +1609.05921 Optimization and Control +1609.05925 Dynamical Systems +1609.05927 Cosmology and Nongalactic Astrophysics +1609.05928 Biological Physics +1609.05930 Social and Information Networks +1609.05931 Earth and Planetary Astrophysics +1609.05934 Discrete Mathematics +1609.05936 Software Engineering +1609.05940 Instrumentation and Methods for Astrophysics +1609.05942 Computational Complexity +1609.05944 Information Theory +1609.05945 Differential Geometry +1609.05948 Numerical Analysis +1609.05950 Number Theory +1609.05952 Logic in Computer Science +1609.05954 Classical Analysis and ODEs +1609.05958 Algebraic Geometry +1609.05959 Machine Learning +1609.05960 Robotics +1609.05961 Optics +1609.05962 Physics and Society +1609.05963 +1609.05964 Classical Analysis and ODEs +1609.05965 Classical Analysis and ODEs +1609.05966 Optimization and Control +1609.05969 Populations and Evolution +1609.05970 Strongly Correlated Electrons +1609.05974 Probability +1609.05975 Geometric Topology +1609.05976 Logic +1609.05982 +1609.05985 +1609.05986 Differential Geometry +1609.05987 +1609.05988 Combinatorics +1609.05989 Artificial Intelligence +1609.05990 Optimization and Control +1609.05996 Dynamical Systems +1609.05998 Functional Analysis +1609.06000 Systems and Control +1609.06001 Probability +1609.06002 Analysis of PDEs +1609.06003 Dynamical Systems +1609.06004 Social and Information Networks +1609.06005 Soft Condensed Matter +1609.06009 +1609.06010 Combinatorics +1609.06011 +1609.06012 Networking and Internet Architecture +1609.06013 Accelerator Physics +1609.06015 Instrumentation and Methods for Astrophysics +1609.06016 Optimization and Control +1609.06017 Superconductivity +1609.06018 Computer Vision and Pattern Recognition +1609.06024 Computer Vision and Pattern Recognition +1609.06027 Information Theory +1609.06029 Statistics Theory +1609.06031 Methodology +1609.06032 +1609.06033 Functional Analysis +1609.06040 Fluid Dynamics +1609.06044 Numerical Analysis +1609.06045 Chemical Physics +1609.06050 Plasma Physics +1609.06051 Plasma Physics +1609.06053 Chemical Physics +1609.06055 Genomics +1609.06056 Earth and Planetary Astrophysics +1609.06057 Combinatorics +1609.06058 Algebraic Geometry +1609.06059 Chemical Physics +1609.06060 Differential Geometry +1609.06062 Experiment +1609.06063 Optics +1609.06064 Dynamical Systems +1609.06065 Information Theory +1609.06066 Number Theory +1609.06067 Number Theory +1609.06069 Neurons and Cognition +1609.06070 Applications +1609.06072 Statistical Mechanics +1609.06074 Computer Vision and Pattern Recognition +1609.06076 Computer Vision and Pattern Recognition +1609.06077 Group Theory +1609.06079 Superconductivity +1609.06080 Probability +1609.06081 Complex Variables +1609.06082 Computation and Language +1609.06083 Functional Analysis +1609.06085 Group Theory +1609.06086 Computational Engineering, Finance, and Science +1609.06088 Robotics +1609.06091 Strongly Correlated Electrons +1609.06095 Materials Science +1609.06097 Number Theory +1609.06098 Numerical Analysis +1609.06099 Materials Science +1609.06101 Representation Theory +1609.06102 Analysis of PDEs +1609.06105 Strongly Correlated Electrons +1609.06107 Populations and Evolution +1609.06108 Pattern Formation and Solitons +1609.06110 Materials Science +1609.06111 Combinatorics +1609.06112 Mesoscale and Nanoscale Physics +1609.06118 Computer Vision and Pattern Recognition +1609.06119 Learning +1609.06122 Materials Science +1609.06123 Optics +1609.06125 Differential Geometry +1609.06126 +1609.06127 Computation and Language +1609.06130 History and Philosophy of Physics +1609.06132 Geometric Topology +1609.06133 Classical Analysis and ODEs +1609.06136 Analysis of PDEs +1609.06137 Superconductivity +1609.06140 Fluid Dynamics +1609.06141 Computer Vision and Pattern Recognition +1609.06142 Instrumentation and Methods for Astrophysics +1609.06144 Machine Learning +1609.06145 Statistics Theory +1609.06146 Learning +1609.06147 Combinatorics +1609.06151 Classical Analysis and ODEs +1609.06153 Computational Engineering, Finance, and Science +1609.06157 Classical Analysis and ODEs +1609.06158 Differential Geometry +1609.06159 +1609.06160 Mesoscale and Nanoscale Physics +1609.06163 General Physics +1609.06164 General Physics +1609.06165 Mesoscale and Nanoscale Physics +1609.06166 Geometric Topology +1609.06167 Mesoscale and Nanoscale Physics +1609.06170 Atmospheric and Oceanic Physics +1609.06171 Combinatorics +1609.06172 Metric Geometry +1609.06174 Other Condensed Matter +1609.06175 Superconductivity +1609.06176 Mesoscale and Nanoscale Physics +1609.06178 Classical Physics +1609.06179 Superconductivity +1609.06180 Rings and Algebras +1609.06184 Number Theory +1609.06188 Computer Vision and Pattern Recognition +1609.06189 +1609.06192 Computer Vision and Pattern Recognition +1609.06194 Complex Variables +1609.06196 Statistical Mechanics +1609.06197 Instrumentation and Methods for Astrophysics +1609.06199 Quantum Algebra +1609.06204 Computation and Language +1609.06206 Phenomenology +1609.06208 General Physics +1609.06209 +1609.06214 Functional Analysis +1609.06215 +1609.06217 Optimization and Control +1609.06219 Algebraic Topology +1609.06221 Artificial Intelligence +1609.06223 Optimization and Control +1609.06224 +1609.06226 Quantum Gases +1609.06232 Classical Analysis and ODEs +1609.06233 Strongly Correlated Electrons +1609.06234 Differential Geometry +1609.06236 Numerical Analysis +1609.06238 Other Condensed Matter +1609.06239 Computation and Language +1609.06241 Other Condensed Matter +1609.06244 Optimization and Control +1609.06245 Methodology +1609.06246 General Topology +1609.06252 Robotics +1609.06253 Group Theory +1609.06256 Representation Theory +1609.06257 Combinatorics +1609.06258 Systems and Control +1609.06259 Differential Geometry +1609.06260 Computer Vision and Pattern Recognition +1609.06264 +1609.06266 Software Engineering +1609.06267 Fluid Dynamics +1609.06268 Artificial Intelligence +1609.06269 +1609.06270 Networking and Internet Architecture +1609.06272 +1609.06273 Instrumentation and Detectors +1609.06274 Commutative Algebra +1609.06276 Quantum Algebra +1609.06277 Robotics +1609.06280 Materials Science +1609.06281 Emerging Technologies +1609.06282 +1609.06283 Systems and Control +1609.06286 Analysis of PDEs +1609.06288 Group Theory +1609.06290 Formal Languages and Automata Theory +1609.06297 Logic in Computer Science +1609.06298 Theory +1609.06299 Superconductivity +1609.06301 Mesoscale and Nanoscale Physics +1609.06306 +cond-mat/0004088 +hep-ph/0201299 Phenomenology +math-ph/0403041 +math-ph/9801205 +math/9802076 Quantum Algebra +nlin/0107075 Exactly Solvable and Integrable Systems +nlin/0201040 Exactly Solvable and Integrable Systems +nucl-th/9503007 +physics/0007069 Atomic Physics +quant-ph/0004014 +quant-ph/0006064 +quant-ph/0309169 +0704.3725 Differential Geometry +0712.0087 Other Condensed Matter +0904.1599 Differential Geometry +1007.2892 +1009.0679 Probability +1202.1928 Probability +1209.3619 Probability +1210.3024 Geophysics +1212.4122 Theory +1301.5620 Mesoscale and Nanoscale Physics +1303.1544 +1304.3667 Chaotic Dynamics +1304.6772 Statistics Theory +1305.4669 Methodology +1308.0611 Combinatorics +1308.6306 Statistics Theory +1310.1694 Differential Geometry +1310.8464 Symplectic Geometry +1311.3646 Information Theory +1312.1316 +1312.2690 Optimization and Control +1402.3420 Chaotic Dynamics +1402.5570 Algebraic Geometry +1403.4981 Probability +1404.3749 Probability +1405.3813 Statistical Mechanics +1406.4425 Discrete Mathematics +1406.7180 Probability +1407.1809 Systems and Control +1407.7305 Logic in Computer Science +1408.6821 Combinatorics +1409.0139 Spectral Theory +1409.1748 Physics and Society +1409.1838 Quantitative Methods +1409.1839 Logic +1409.3953 Differential Geometry +1410.2213 Strongly Correlated Electrons +1410.2534 Theory +1411.0149 Artificial Intelligence +1411.1326 Materials Science +1412.0685 K-Theory and Homology +1412.2393 +1412.4055 Systems and Control +1412.4056 Systems and Control +1412.4490 Statistical Mechanics +1501.04608 Geophysics +1501.06860 Theory +1502.02199 Combinatorics +1502.02561 Dynamical Systems +1502.07267 Emerging Technologies +1502.07282 Networking and Internet Architecture +1503.02590 Dynamical Systems +1504.01339 Computational Complexity +1504.02843 Systems and Control +1504.02861 Logic in Computer Science +1504.05134 Probability +1504.08190 Systems and Control +1504.08196 Systems and Control +1504.08226 +1505.02390 Methodology +1505.03601 Theory +1505.03896 Representation Theory +1505.05006 Probability +1505.08034 +1506.00621 Cosmology and Nongalactic Astrophysics +1506.01417 Optimization and Control +1506.02889 +1506.04267 +1506.05764 Statistical Mechanics +1507.00089 Number Theory +1507.04859 Optics +1507.05485 Numerical Analysis +1507.05976 Phenomenology +1507.07605 Discrete Mathematics +1507.08184 Computer Vision and Pattern Recognition +1507.08449 Computation and Language +1507.08457 +1507.08713 Portfolio Management +1508.00836 Mesoscale and Nanoscale Physics +1508.03882 Computational Engineering, Finance, and Science +1508.04841 Methodology +1508.05401 Combinatorics +1508.07145 +1508.07512 Probability +1509.02530 Phenomenology +1509.02872 Statistics Theory +1509.03768 Number Theory +1509.04144 +1509.04928 Theory +1509.05343 Phenomenology +1509.05676 Functional Analysis +1509.06151 Optics +1509.07588 Computational Complexity +1509.08707 Soft Condensed Matter +1509.09314 Geometric Topology +1510.00014 Theory +1510.01069 Classical Analysis and ODEs +1510.01344 Computer Vision and Pattern Recognition +1510.02394 Combinatorics +1510.02455 Analysis of PDEs +1510.02720 +1510.05278 Cryptography and Security +1510.08171 Computational Physics +1510.08475 Phenomenology +1510.09164 +1511.01675 +1511.01742 Mesoscale and Nanoscale Physics +1511.02446 Mesoscale and Nanoscale Physics +1511.04074 Theory +1511.06170 Experiment +1511.06365 Astrophysics of Galaxies +1511.07867 Statistical Mechanics +1512.00257 Physics and Society +1512.00276 Operator Algebras +1512.00713 +1512.00766 Algebraic Geometry +1512.01759 Optimization and Control +1512.02065 +1512.03620 Theory +1512.03898 Classical Analysis and ODEs +1512.04006 +1512.06835 +1512.07769 Cosmology and Nongalactic Astrophysics +1512.08105 Phenomenology +1512.08856 +1601.00977 Phenomenology +1601.00981 Strongly Correlated Electrons +1601.02608 Astrophysics of Galaxies +1601.03376 Materials Science +1601.04593 +1601.04977 Strongly Correlated Electrons +1601.05916 Strongly Correlated Electrons +1601.06101 Information Theory +1601.06407 +1601.07054 Data Analysis, Statistics and Probability +1601.07339 Phenomenology +1602.00974 Optics +1602.01049 Numerical Analysis +1602.03032 Neural and Evolutionary Computing +1602.03230 Combinatorics +1602.03425 Analysis of PDEs +1602.03523 +1602.04821 Phenomenology +1602.04929 Fluid Dynamics +1602.04963 High Energy Astrophysical Phenomena +1602.05588 Phenomenology +1602.05964 Strongly Correlated Electrons +1602.05969 Strongly Correlated Electrons +1602.06130 Materials Science +1602.06265 Materials Science +1602.06456 Information Theory +1602.08027 Quantum Gases +1602.08122 Geometric Topology +1602.08480 Strongly Correlated Electrons +1603.00043 +1603.00165 Cosmology and Nongalactic Astrophysics +1603.00719 Theory +1603.01894 Rings and Algebras +1603.02621 Dynamical Systems +1603.03116 Learning +1603.03744 Accelerator Physics +1603.05158 Soft Condensed Matter +1603.05655 Astrophysics of Galaxies +1603.05703 Atomic Physics +1603.06037 Analysis of PDEs +1603.06240 Data Analysis, Statistics and Probability +1603.06844 Logic in Computer Science +1603.06916 Optimization and Control +1603.07713 Group Theory +1603.07878 Strongly Correlated Electrons +1603.08776 Artificial Intelligence +1604.00227 +1604.01147 Optimization and Control +1604.01267 +1604.01531 Phenomenology +1604.04922 Fluid Dynamics +1604.05964 Information Theory +1604.06454 Metric Geometry +1604.07804 Materials Science +1604.08463 Phenomenology +1604.08910 Computer Science and Game Theory +1605.00746 +1605.01113 Strongly Correlated Electrons +1605.01141 Computer Vision and Pattern Recognition +1605.02534 Logic +1605.04355 Differential Geometry +1605.04474 Phenomenology +1605.04499 +1605.04719 Social and Information Networks +1605.04987 Chemical Physics +1605.05104 Logic in Computer Science +1605.05312 Materials Science +1605.05339 Optimization and Control +1605.05572 Information Theory +1605.05683 Probability +1605.05711 Optimization and Control +1605.05724 Functional Analysis +1605.05728 Astrophysics of Galaxies +1605.05735 Rings and Algebras +1605.05736 Materials Science +1605.05744 Representation Theory +1605.05745 Algebraic Geometry +1605.05750 Numerical Analysis +1605.05751 +1605.05753 Performance +1605.05755 Differential Geometry +1605.05758 Multimedia +1605.05762 Experiment +1605.05764 Combinatorics +1605.05765 Number Theory +1605.05766 Operator Algebras +1605.05767 Emerging Technologies +1605.05768 Quantum Gases +1605.05770 Optics +1605.05771 Astrophysics of Galaxies +1605.05773 Distributed, Parallel, and Cluster Computing +1605.05778 Earth and Planetary Astrophysics +1605.05779 Applications +1605.05780 Chaotic Dynamics +1605.05782 Neural and Evolutionary Computing +1605.05783 Commutative Algebra +1605.05784 Applications +1605.05786 Robotics +1605.05787 Computational Physics +1605.05789 Numerical Analysis +1605.05791 Computer Vision and Pattern Recognition +1605.05798 Statistics Theory +1605.05799 Learning +1605.05801 Algebraic Geometry +1605.05802 Mathematical Finance +1605.05803 Mesoscale and Nanoscale Physics +1605.05809 +1605.05810 Operating Systems +1605.05812 Classical Analysis and ODEs +1605.05814 Computational Finance +1605.05815 Computer Vision and Pattern Recognition +1605.05823 Optimization and Control +1605.05824 General Mathematics +1605.05825 Optimization and Control +1605.05826 Databases +1605.05828 Operator Algebras +1605.05831 Materials Science +1605.05832 Instrumentation and Methods for Astrophysics +1605.05835 Optimization and Control +1605.05836 Computational Complexity +1605.05841 Cryptography and Security +1605.05846 +1605.05847 Cryptography and Security +1605.05850 Software Engineering +1605.05851 Dynamical Systems +1605.05855 Phenomenology +1605.05861 Information Theory +1605.05862 Information Theory +1605.05863 Computer Vision and Pattern Recognition +1605.05865 Exactly Solvable and Integrable Systems +1605.05867 Soft Condensed Matter +1605.05868 Phenomenology +1605.05870 Social and Information Networks +1605.05876 Fluid Dynamics +1605.05878 Probability +1605.05879 Mesoscale and Nanoscale Physics +1605.05882 Theory +1605.05883 Analysis of PDEs +1605.05886 Differential Geometry +1605.05890 High Energy Astrophysical Phenomena +1605.05891 Quantitative Methods +1605.05892 Soft Condensed Matter +1605.05893 Applications +1605.05895 Analysis of PDEs +1605.05896 Materials Science +1605.05901 Information Theory +1605.05903 Materials Science +1605.05906 Computation and Language +1605.05910 Methodology +1605.05911 Theory +1605.05912 Computer Vision and Pattern Recognition +1605.05913 Differential Geometry +1605.05916 Number Theory +1605.05917 Geometric Topology +1605.05923 Computer Vision and Pattern Recognition +1605.05925 Dynamical Systems +1605.05926 Probability +1605.05927 Number Theory +1605.05929 Discrete Mathematics +1605.05936 Optics +1605.05937 Computer Vision and Pattern Recognition +1605.05938 Materials Science +1605.05939 Group Theory +1605.05941 Numerical Analysis +1605.05942 Combinatorics +1605.05947 +1605.05950 Artificial Intelligence +1605.05953 Representation Theory +1605.05955 Commutative Algebra +1605.05959 Analysis of PDEs +1605.05960 Analysis of PDEs +1605.05962 Fluid Dynamics +1605.05963 Formal Languages and Automata Theory +1605.05965 Probability +1605.05966 Artificial Intelligence +1605.05967 Computer Vision and Pattern Recognition +1605.05972 Information Theory +1605.05973 Cosmology and Nongalactic Astrophysics +1605.05977 Computer Vision and Pattern Recognition +1605.05981 Plasma Physics +1605.05985 Methodology +1605.05990 Information Theory +1605.05991 Combinatorics +1605.05994 Group Theory +1605.05996 Dynamical Systems +1605.05997 Materials Science +1605.05998 Computational Physics +1605.06004 Fluid Dynamics +1605.06006 Materials Science +1605.06010 Dynamical Systems +1605.06014 Materials Science +1605.06018 General Mathematics +1605.06020 Networking and Internet Architecture +1605.06021 +1605.06024 +1605.06025 Methodology +1605.06028 +1605.06032 Earth and Planetary Astrophysics +1605.06036 Mesoscale and Nanoscale Physics +1605.06037 Number Theory +1605.06038 Mesoscale and Nanoscale Physics +1605.06041 Optics +1605.06042 Experiment +1605.06046 Materials Science +1605.06047 Artificial Intelligence +1605.06048 Artificial Intelligence +1605.06050 Operator Algebras +1605.06052 Computer Vision and Pattern Recognition +1605.06053 +1605.06058 Mesoscale and Nanoscale Physics +1605.06059 Phenomenology +1605.06064 Methodology +1605.06065 Learning +1605.06067 Materials Science +1605.06068 Chaotic Dynamics +1605.06070 Mesoscale and Nanoscale Physics +1605.06071 Classical Analysis and ODEs +1605.06076 Learning +1605.06079 Number Theory +1605.06082 Statistical Mechanics +1605.06083 Computation and Language +1605.06085 Geophysics +1605.06087 Combinatorics +1605.06090 Algebraic Geometry +1605.06094 Computer Vision and Pattern Recognition +1605.06095 Functional Analysis +1605.06100 Theory +1605.06102 Cosmology and Nongalactic Astrophysics +1605.06105 Geometric Topology +1605.06106 Computer Vision and Pattern Recognition +cond-mat/0212095 Materials Science +hep-th/9305141 Theory +math/0202049 Algebraic Topology +math/0203016 Geometric Topology +math/0210352 Differential Geometry +0903.4544 Differential Geometry +1009.2007 +1011.4084 Geometric Topology +1012.4063 Atomic Physics +1106.0765 Algebraic Geometry +1108.2018 Computer Science and Game Theory +1109.5531 Discrete Mathematics +1205.4756 Phenomenology +1210.5102 Functional Analysis +1211.0873 Algebraic Topology +1212.5324 Computational Complexity +1303.3387 Dynamical Systems +1303.6083 +1304.1307 Computational Complexity +1305.3996 Phenomenology +1306.1931 Combinatorics +1312.1659 +1401.3556 Information Theory +1401.3569 Information Theory +1402.1682 Information Theory +1402.4303 Multiagent Systems +1404.3847 Algebraic Geometry +1405.6349 Number Theory +1405.6992 Representation Theory +1406.0054 +1406.1039 Analysis of PDEs +1406.2477 +1406.5396 Combinatorics +1407.1497 Information Theory +1407.3294 Algebraic Geometry +1407.6673 Classical Analysis and ODEs +1408.5027 Discrete Mathematics +1409.0059 Combinatorics +1410.4230 Analysis of PDEs +1411.0357 Materials Science +1411.2664 Learning +1411.5178 Information Theory +1411.5194 Combinatorics +1412.3759 Commutative Algebra +1412.5225 Materials Science +1412.5466 Information Theory +1412.6165 Functional Analysis +1412.8012 Dynamical Systems +1501.05032 Materials Science +1501.05250 Representation Theory +1501.05363 K-Theory and Homology +1501.05930 Information Theory +1501.06172 Optimization and Control +1501.06871 Strongly Correlated Electrons +1502.00090 Dynamical Systems +1502.00139 Statistics Theory +1502.01013 Probability +1502.01486 Differential Geometry +1502.01714 +1502.07376 Materials Science +1502.07523 Statistics Theory +1503.00190 Discrete Mathematics +1503.00485 +1503.01133 Probability +1503.02311 Analysis of PDEs +1503.02492 Probability +1503.03115 +1503.07108 Mesoscale and Nanoscale Physics +1503.07928 Analysis of PDEs +1503.08365 Number Theory +1504.01600 Analysis of PDEs +1504.02039 Instrumentation and Detectors +1504.02110 Space Physics +1504.03854 Instrumentation and Methods for Astrophysics +1504.04286 Theory +1504.06275 Materials Science +1504.06694 Number Theory +1505.00396 Information Theory +1505.03829 Algebraic Geometry +1505.06595 Geometric Topology +1505.07970 Mesoscale and Nanoscale Physics +1506.02005 Systems and Control +1506.03486 Machine Learning +1506.04464 Materials Science +1506.05011 Machine Learning +1506.06486 Numerical Analysis +1506.07617 +1506.08387 Machine Learning +1506.08404 Analysis of PDEs +1506.08451 Functional Analysis +1506.09167 Materials Science +1506.09200 Numerical Analysis +1507.02268 Data Structures and Algorithms +1507.02455 Information Theory +1507.03962 Statistical Mechanics +1507.04960 Soft Condensed Matter +1507.05703 Optimization and Control +1507.07688 Artificial Intelligence +1508.00123 Data Structures and Algorithms +1508.00283 +1508.01722 Computer Vision and Pattern Recognition +1508.02212 Information Theory +1508.02311 Superconductivity +1508.02828 Materials Science +1508.03168 Operator Algebras +1508.03830 Number Theory +1508.04072 Optics +1508.04288 Phenomenology +1508.04291 Phenomenology +1508.04799 Solar and Stellar Astrophysics +1508.05485 +1508.06575 Instrumentation and Detectors +1508.07091 Learning +1508.07451 Combinatorics +1508.07538 +1509.01600 Information Theory +1509.01992 High Energy Astrophysical Phenomena +1509.02669 Instrumentation and Detectors +1509.03727 Atomic Physics +1509.04088 Group Theory +1509.05568 Superconductivity +1509.06051 Experiment +1509.07146 Theory +1509.07253 Atomic Physics +1509.07643 Analysis of PDEs +1509.08872 Soft Condensed Matter +1510.03049 Materials Science +1510.04087 +1510.05094 Mesoscale and Nanoscale Physics +1510.06405 Phenomenology +1510.08192 Commutative Algebra +1510.08628 Machine Learning +1511.00150 Cryptography and Security +1511.00290 Algebraic Geometry +1511.00556 Instrumentation and Detectors +1511.02379 Logic +1511.03287 Mesoscale and Nanoscale Physics +1511.03429 History and Philosophy of Physics +1511.03547 Commutative Algebra +1511.03572 +1511.05195 Optics +1511.05614 Applications +1511.05939 Machine Learning +1511.06018 Computation and Language +1511.06085 Computer Vision and Pattern Recognition +1511.06226 Phenomenology +1511.06238 Learning +1511.06385 Learning +1511.07069 Computer Vision and Pattern Recognition +1511.07947 Number Theory +1511.08233 Superconductivity +1512.00348 General Topology +1512.00833 Phenomenology +1512.01441 Computational Physics +1512.01486 Dynamical Systems +1512.01779 Computation +1512.02232 Theory +1512.03922 Physics and Society +1512.03981 +1512.04195 Logic +1512.05082 Strongly Correlated Electrons +1512.05663 +1512.05921 Combinatorics +1512.06497 +1512.06897 Geometric Topology +1512.07829 +1601.00079 +1601.00120 Statistical Mechanics +1601.01219 Mesoscale and Nanoscale Physics +1601.01495 Experiment +1601.01646 Fluid Dynamics +1601.02279 Materials Science +1601.02404 Molecular Networks +1601.03370 Logic in Computer Science +1601.03426 Representation Theory +1601.04711 Astrophysics of Galaxies +1601.05198 Differential Geometry +1601.06052 Earth and Planetary Astrophysics +1601.06137 Combinatorics +1601.06176 Adaptation and Self-Organizing Systems +1601.07664 Rings and Algebras +1602.00951 Mesoscale and Nanoscale Physics +1602.01286 Combinatorics +1602.02846 Algebraic Geometry +1602.03711 Theory +1602.04223 Soft Condensed Matter +1602.04245 Number Theory +1602.04923 Instrumentation and Detectors +1602.05149 Machine Learning +1602.07050 +1602.07644 Biological Physics +1602.07946 History and Overview +1602.07952 History and Overview +1602.08035 Phenomenology +1602.08509 Optimization and Control +1602.08745 Differential Geometry +1602.08804 Theory +1602.08820 Data Structures and Algorithms +1602.08827 Number Theory +1602.08949 +1602.08982 History and Overview +1603.00084 +1603.00117 Theory +1603.00123 +1603.00221 Biological Physics +1603.00229 Social and Information Networks +1603.00326 Commutative Algebra +1603.00472 +1603.00475 Astrophysics of Galaxies +1603.00483 Materials Science +1603.00486 Strongly Correlated Electrons +1603.00490 Soft Condensed Matter +1603.00491 Numerical Analysis +1603.00492 Astrophysics of Galaxies +1603.00493 Instrumentation and Detectors +1603.00502 Computer Vision and Pattern Recognition +1603.00503 Geometric Topology +1603.00506 Functional Analysis +1603.00508 Rings and Algebras +1603.00510 Algebraic Geometry +1603.00514 Superconductivity +1603.00515 Plasma Physics +1603.00518 Fluid Dynamics +1603.00520 Differential Geometry +1603.00521 Combinatorics +1603.00522 Learning +1603.00525 Logic +1603.00530 +1603.00532 Human-Computer Interaction +1603.00536 Logic in Computer Science +1603.00539 Atmospheric and Oceanic Physics +1603.00542 Databases +1603.00554 +1603.00556 Dynamical Systems +1603.00564 Learning +1603.00566 Algebraic Geometry +1603.00568 Risk Management +1603.00571 History and Overview +1603.00572 Cryptography and Security +1603.00573 Systems and Control +1603.00576 Optimization and Control +1603.00577 Operator Algebras +1603.00578 Combinatorics +1603.00579 Atmospheric and Oceanic Physics +1603.00581 High Energy Astrophysical Phenomena +1603.00582 Geometric Topology +1603.00583 Robotics +1603.00584 Geometric Topology +1603.00585 Networking and Internet Architecture +1603.00587 Information Theory +1603.00588 Cryptography and Security +1603.00589 Networking and Internet Architecture +1603.00590 Metric Geometry +1603.00592 Biological Physics +1603.00593 Optics +1603.00595 Classical Physics +1603.00596 Statistics Theory +1603.00597 Spectral Theory +1603.00600 Information Theory +1603.00605 Materials Science +1603.00611 Optimization and Control +1603.00612 Analysis of PDEs +1603.00613 Probability +1603.00617 Numerical Analysis +1603.00618 Algebraic Geometry +1603.00619 Robotics +1603.00621 Physics and Society +1603.00623 Materials Science +1603.00628 Differential Geometry +1603.00629 +1603.00630 Atomic and Molecular Clusters +1603.00632 Numerical Analysis +1603.00636 Software Engineering +1603.00646 Computers and Society +1603.00650 General Topology +1603.00656 Robotics +1603.00657 Materials Science +1603.00660 Optimization and Control +1603.00661 Probability +1603.00662 Probability +1603.00666 Algebraic Geometry +1603.00669 Statistical Mechanics +1603.00673 Number Theory +1603.00674 Complex Variables +1603.00675 Fluid Dynamics +1603.00677 Probability +1603.00684 Number Theory +1603.00689 Complex Variables +1603.00690 Probability +1603.00695 Subcellular Processes +1603.00697 Spectral Theory +1603.00698 Medical Physics +1603.00699 +1603.00705 Materials Science +1603.00706 Analysis of PDEs +1603.00708 Phenomenology +1603.00709 Learning +1603.00713 Graphics +1603.00717 Optimization and Control +1603.00724 Theory +1603.00728 +1603.00733 Rings and Algebras +1603.00734 Instrumentation and Detectors +1603.00735 Differential Geometry +1603.00737 Algebraic Geometry +1603.00738 Other Statistics +1603.00739 Number Theory +1603.00740 Metric Geometry +1603.00745 Mesoscale and Nanoscale Physics +1603.00747 Distributed, Parallel, and Cluster Computing +1603.00748 Learning +1603.00751 Learning +1603.00753 Representation Theory +1603.00754 Dynamical Systems +1603.00756 Analysis of PDEs +1603.00760 Number Theory +1603.00762 Information Theory +1603.00764 Analysis of PDEs +1603.00770 Data Structures and Algorithms +1603.00771 Analysis of PDEs +1603.00774 Number Theory +1603.00778 Materials Science +1603.00780 Group Theory +1603.00783 Analysis of PDEs +1603.00784 Statistics Theory +1603.00787 Algebraic Geometry +1603.00788 Machine Learning +1603.00793 Materials Science +1603.00794 Robotics +1603.00795 Chemical Physics +1603.00796 Representation Theory +1603.00798 Materials Science +1603.00800 Statistics Theory +1603.00801 Astrophysics of Galaxies +1603.00803 Differential Geometry +1603.00807 Category Theory +1603.00808 Dynamical Systems +1603.00809 Numerical Analysis +1603.00812 Digital Libraries +1603.00813 Number Theory +1603.00817 Medical Physics +1603.00820 Solar and Stellar Astrophysics +1603.00822 Category Theory +1603.00825 +1603.00829 +1603.00835 Soft Condensed Matter +1603.00836 Instrumentation and Methods for Astrophysics +1603.00837 Soft Condensed Matter +1603.00838 Logic in Computer Science +1603.00840 Superconductivity +1603.00841 Computer Vision and Pattern Recognition +1603.00845 Computer Vision and Pattern Recognition +1603.00848 +1603.00854 Dynamical Systems +1603.00855 Number Theory +1603.00860 Dynamical Systems +1603.00862 Combinatorics +1605.09081 Other Statistics +1610.00504 Plasma Physics +1610.00752 Computational Geometry +1610.03951 Complex Variables +1610.05879 Numerical Analysis +1610.06048 Learning +1610.06723 Phenomenology +1610.06850 Classical Analysis and ODEs +1610.07590 Information Theory +1610.08461 Discrete Mathematics +1610.08713 Software Engineering +1610.08726 Combinatorics +1610.08851 Computer Vision and Pattern Recognition +1610.08973 Mesoscale and Nanoscale Physics +0902.3073 Classical Analysis and ODEs +0903.4970 Complex Variables +1101.5511 Strongly Correlated Electrons +1104.4008 Number Theory +1104.4011 Number Theory +1104.4631 Functional Analysis +1111.6254 Machine Learning +1111.6285 Machine Learning +1201.2711 Artificial Intelligence +1203.3088 Probability +1206.1454 Number Theory +1207.5562 Instrumentation and Methods for Astrophysics +1208.2955 Computational Complexity +1209.4849 General Finance +1210.0671 General Topology +1212.0205 Number Theory +1304.5982 Applications +1305.2082 Dynamical Systems +1305.4825 Statistics Theory +1306.2508 Statistical Finance +1307.3634 Differential Geometry +1307.5577 Algebraic Geometry +1312.7061 Probability +1312.7650 Information Theory +1401.0479 Algebraic Geometry +1401.1219 +1401.1667 Computation +1401.2098 Optics +1401.6418 Combinatorics +1402.3320 Analysis of PDEs +1402.4975 +1403.6637 Computational Geometry +1404.0478 Group Theory +1405.5713 Numerical Analysis +1406.0655 Number Theory +1406.2267 Instrumentation and Methods for Astrophysics +1406.6459 Theory +1409.4055 Geometric Topology +1410.0246 Group Theory +1410.1281 Probability +1410.6120 Classical Analysis and ODEs +1411.0628 Computational Complexity +1411.3102 +1411.3613 Soft Condensed Matter +1411.5649 Learning +1411.7425 Combinatorics +1412.1634 Classical Analysis and ODEs +1412.4077 +1412.4085 Rings and Algebras +1412.7183 Symplectic Geometry +1501.00726 Geometric Topology +1501.01137 Experiment +1501.02609 Mesoscale and Nanoscale Physics +1501.04746 +1501.04849 Applications +1501.05445 Numerical Analysis +1502.00822 Number Theory +1502.05347 Robotics +1502.06014 Functional Analysis +1502.07112 Mesoscale and Nanoscale Physics +1502.07659 Data Structures and Algorithms +1502.08014 Rings and Algebras +1503.02525 Combinatorics +1503.03396 Representation Theory +1503.07674 Strongly Correlated Electrons +1503.08954 Analysis of PDEs +1504.08195 Optimization and Control +1505.05116 Optimization and Control +1506.01629 Functional Analysis +1506.01661 General Topology +1506.02882 +1506.02993 Mesoscale and Nanoscale Physics +1506.04558 Geometric Topology +1506.04908 Learning +1506.06197 K-Theory and Homology +1506.06396 Theory +1506.06885 Statistical Mechanics +1506.09183 Probability +1507.00943 Systems and Control +1507.02863 Complex Variables +1507.03164 Theory +1507.04659 Analysis of PDEs +1507.05769 Optimization and Control +1507.06211 Complex Variables +1507.06960 Statistical Mechanics +1507.07031 Number Theory +1507.07136 Complex Variables +1508.01069 Category Theory +1508.02120 Instrumentation and Methods for Astrophysics +1508.03596 Analysis of PDEs +1508.03715 Optimization and Control +1508.04080 Optimization and Control +1508.05479 +1508.07474 Differential Geometry +1509.01436 Rings and Algebras +1509.01483 General Finance +1509.02439 Programming Languages +1509.04078 Logic +1509.07563 Phenomenology +1509.07801 Materials Science +1509.08443 Distributed, Parallel, and Cluster Computing +1509.09127 Analysis of PDEs +1510.00238 Logic +1510.01654 Data Analysis, Statistics and Probability +1510.02335 Combinatorics +1510.02366 Analysis of PDEs +1510.02976 Quantum Gases +1510.03148 +1510.04176 Classical Analysis and ODEs +1510.04469 Logic in Computer Science +1510.04895 Numerical Analysis +1510.05592 Operator Algebras +1510.06124 Social and Information Networks +1510.06278 Logic +1510.06383 Soft Condensed Matter +1510.07380 Robotics +1510.08666 Group Theory +1510.08876 Classical Analysis and ODEs +1511.00975 Cosmology and Nongalactic Astrophysics +1511.03643 Machine Learning +1511.04046 Theory +1511.05018 Strongly Correlated Electrons +1511.06046 Strongly Correlated Electrons +1511.06797 Cosmology and Nongalactic Astrophysics +1511.06835 Probability +1511.08157 Number Theory +1512.00108 Phenomenology +1512.00296 Human-Computer Interaction +1512.01753 Strongly Correlated Electrons +1512.03118 +1512.04619 Optimization and Control +1512.04841 Atomic and Molecular Clusters +1512.05297 Instrumentation and Detectors +1512.06202 Combinatorics +1512.06231 Optics +1512.06611 General Topology +1512.07208 Applications +1512.07386 Strongly Correlated Electrons +1512.07990 +1512.08246 Mesoscale and Nanoscale Physics +1512.08780 Phenomenology +1512.09292 Phenomenology +1601.01564 Strongly Correlated Electrons +1601.01735 +1601.01913 Number Theory +1601.03936 +1601.04387 Materials Science +1601.04608 Statistical Mechanics +1601.06857 +1601.07294 Materials Science +1601.08057 Computation +1602.00282 Populations and Evolution +1602.00901 Algebraic Geometry +1602.01246 Symbolic Computation +1602.02289 Combinatorics +1602.02427 Exactly Solvable and Integrable Systems +1602.02650 Superconductivity +1602.03330 Strongly Correlated Electrons +1602.03395 Quantum Gases +1602.04304 +1602.05521 Information Theory +1602.07713 Classical Analysis and ODEs +1602.08884 Instrumentation and Detectors +1602.08965 Combinatorics +1603.00077 Combinatorics +1603.00722 Classical Analysis and ODEs +1603.00763 Number Theory +1603.00894 Combinatorics +1603.01699 Cryptography and Security +1603.01935 Strongly Correlated Electrons +1603.02872 Statistical Mechanics +1603.03204 Analysis of PDEs +1603.03713 Learning +1603.03897 +1603.03948 +1603.04134 Robotics +1603.04354 +1603.04688 Theory +1603.04842 Probability +1603.05097 Systems and Control +1603.06287 +1603.06441 Dynamical Systems +1603.06679 Computation and Language +1603.07181 Information Theory +1603.07788 Differential Geometry +1603.07804 Optics +1603.08360 Dynamical Systems +1603.08934 Mesoscale and Nanoscale Physics +1603.08981 Learning +1604.00095 Phenomenology +1604.00448 Analysis of PDEs +1604.00732 Mesoscale and Nanoscale Physics +1604.00738 Algebraic Geometry +1604.00860 Methodology +1604.01210 Applications +1604.02547 Algebraic Geometry +1604.03207 Phenomenology +1604.03336 Learning +1604.04105 Fluid Dynamics +1604.04519 +1604.04671 +1604.04702 Theory +1604.04948 High Energy Astrophysical Phenomena +1604.05012 +1604.05482 Chemical Physics +1604.05967 Mesoscale and Nanoscale Physics +1604.06910 Statistical Mechanics +1604.07106 +1604.07543 Cryptography and Security +1604.08045 Neurons and Cognition +1604.08142 Mesoscale and Nanoscale Physics +1605.00383 +1605.01269 Plasma Physics +1605.01369 Learning +1605.01996 Superconductivity +1605.02329 Experiment +1605.03221 Functional Analysis +1605.03532 Differential Geometry +1605.04329 Quantum Gases +1605.04726 Statistical Mechanics +1605.04835 Formal Languages and Automata Theory +1605.05255 Fluid Dynamics +1605.05411 Computer Vision and Pattern Recognition +1605.05875 Information Theory +1605.06294 Optimization and Control +1605.06369 Cryptography and Security +1605.06440 Number Theory +1605.06884 Networking and Internet Architecture +1605.06960 High Energy Astrophysical Phenomena +1605.07042 Probability +1605.07106 Materials Science +1605.07625 Theory +1605.07633 Phenomenology +1605.07784 Information Theory +1605.08179 Machine Learning +1605.08355 Theory +1605.08761 Cosmology and Nongalactic Astrophysics +1605.09523 Group Theory +1606.00128 Learning +1606.00373 Computer Vision and Pattern Recognition +1606.00839 Cosmology and Nongalactic Astrophysics +1606.01079 Phenomenology +1606.01107 Discrete Mathematics +1606.01531 Phenomenology +1606.01641 High Energy Astrophysical Phenomena +1606.02157 Phenomenology +1606.02704 Phenomenology +1606.02981 Phenomenology +1606.03435 Cosmology and Nongalactic Astrophysics +1606.03494 Physics and Society +1606.03521 Combinatorics +1606.03667 Computation and Language +1606.03893 Information Theory +1606.03912 Networking and Internet Architecture +1606.04410 Theory +1606.04987 Computational Engineering, Finance, and Science +1606.05348 Astrophysics of Galaxies +1606.05573 Differential Geometry +1606.06289 Astrophysics of Galaxies +1606.06294 Astrophysics of Galaxies +1606.06372 Phenomenology +1606.06499 +1606.06578 Portfolio Management +1606.06589 +1606.07206 Networking and Internet Architecture +1606.07307 Dynamical Systems +1606.07833 Combinatorics +1606.08340 Computation and Language +1606.08376 Earth and Planetary Astrophysics +1606.08870 Instrumentation and Detectors +1606.08919 +1606.09429 Dynamical Systems +1607.00216 Fluid Dynamics +1607.00738 Experiment +1607.00837 Experiment +1607.01232 Computer Vision and Pattern Recognition +1607.01473 Instrumentation and Methods for Astrophysics +1607.01753 Theory +1607.01784 Theory +1607.02059 Instrumentation and Methods for Astrophysics +1607.02267 +1607.02374 Mesoscale and Nanoscale Physics +1607.02469 Phenomenology +1607.02594 +1607.02703 Phenomenology +1607.03076 General Physics +1607.03400 Experiment +1607.03518 Numerical Analysis +1607.04104 Programming Languages +1607.04333 Information Theory +1607.04365 Strongly Correlated Electrons +1607.05243 Rings and Algebras +1607.05332 Information Theory +1607.05769 General Physics +1607.06174 Theory +1607.06424 Probability +1607.07335 Information Theory +1607.07526 Learning +1607.07963 +1607.08784 Cosmology and Nongalactic Astrophysics +1608.00490 Analysis of PDEs +1608.00621 Learning +1608.00889 Formal Languages and Automata Theory +1608.01002 +1608.02158 Machine Learning +1608.02621 Other Quantitative Biology +1608.02801 Statistics Theory +1608.03260 Optimization and Control +1608.03525 Solar and Stellar Astrophysics +1608.03707 Cosmology and Nongalactic Astrophysics +1608.04285 +1608.04564 Quantum Gases +1608.04712 Robotics +1608.04803 Quantum Gases +1608.04864 Spectral Theory +1608.05081 Learning +1608.05453 Representation Theory +1608.05515 Methodology +1608.05769 Commutative Algebra +1608.06185 Number Theory +1608.06377 Theory +1608.06419 Physics and Society +1608.07064 Analysis of PDEs +1608.07131 Dynamical Systems +1608.07507 Chemical Physics +1608.07656 Logic +1608.07715 Analysis of PDEs +1608.07730 Information Theory +1608.07833 Soft Condensed Matter +1608.08393 Optics +1608.08888 Materials Science +1608.08955 Differential Geometry +1609.00147 Combinatorics +1609.00263 Combinatorics +1609.00358 Differential Geometry +1609.00786 Superconductivity +1609.01304 Astrophysics of Galaxies +1609.01775 Computer Vision and Pattern Recognition +1609.02227 Information Theory +1609.02895 Probability +1609.03162 Number Theory +1609.03177 Astrophysics of Galaxies +1609.03380 Optics +1609.03403 Phenomenology +1609.03461 Computer Vision and Pattern Recognition +1609.03499 Sound +1609.03651 Theory +1609.03654 +1609.03820 Group Theory +1609.03979 Category Theory +1609.03989 Analysis of PDEs +1609.04069 Networking and Internet Architecture +1609.04117 Multiagent Systems +1609.04267 +1609.04363 Algebraic Geometry +1609.04420 Probability +1609.04643 Optics +1609.04746 Optimization and Control +1609.04794 Robotics +1609.04917 Phenomenology +1609.04956 Economics +1609.04958 Medical Physics +1609.05015 Analysis of PDEs +1609.05017 Metric Geometry +1609.05067 Statistics Theory +1609.05079 Logic in Computer Science +1609.05204 Emerging Technologies +1609.05205 Numerical Analysis +1609.05207 Logic in Computer Science +1609.05212 High Energy Astrophysical Phenomena +1609.05213 Phenomenology +1609.05215 Networking and Internet Architecture +1609.05216 Experiment +1609.05218 General Physics +1609.05219 Algebraic Geometry +1609.05220 Dynamical Systems +1609.05224 Artificial Intelligence +1609.05230 Materials Science +1609.05232 Quantum Gases +1609.05233 Earth and Planetary Astrophysics +1609.05234 Computation and Language +1609.05235 Robotics +1609.05237 Earth and Planetary Astrophysics +1609.05238 Materials Science +1609.05240 Cellular Automata and Lattice Gases +1609.05242 Soft Condensed Matter +1609.05244 Computation and Language +1609.05245 Systems and Control +1609.05247 Robotics +1609.05248 Optimization and Control +1609.05253 Robotics +1609.05255 Combinatorics +1609.05256 Networking and Internet Architecture +1609.05257 Computer Vision and Pattern Recognition +1609.05259 Information Theory +1609.05261 Logic +1609.05266 Other Condensed Matter +1609.05267 Optimization and Control +1609.05268 Human-Computer Interaction +1609.05270 Representation Theory +1609.05271 Statistical Mechanics +1609.05272 Number Theory +1609.05275 Optics +1609.05277 Information Theory +1609.05278 Classical Analysis and ODEs +1609.05280 Classical Analysis and ODEs +1609.05281 Computer Vision and Pattern Recognition +1609.05282 Complex Variables +1609.05284 Learning +1609.05285 +1609.05295 Commutative Algebra +1609.05296 Computer Vision and Pattern Recognition +1609.05300 Systems and Control +1609.05303 High Energy Astrophysical Phenomena +1609.05306 Analysis of PDEs +1609.05308 Astrophysics of Galaxies +1609.05312 Algebraic Geometry +1609.05313 Numerical Analysis +1609.05314 Information Theory +1609.05315 Artificial Intelligence +1609.05316 Mesoscale and Nanoscale Physics +1609.05317 Computer Vision and Pattern Recognition +1609.05320 Computational Complexity +1609.05323 Cryptography and Security +1609.05324 Number Theory +1609.05325 Classical Analysis and ODEs +1609.05326 Functional Analysis +1609.05328 Graphics +1609.05331 Experiment +1609.05332 Mesoscale and Nanoscale Physics +1609.05335 Solar and Stellar Astrophysics +1609.05337 Programming Languages +1609.05341 Optimization and Control +1609.05342 Computer Vision and Pattern Recognition +1609.05343 Logic +1609.05344 Graphics +1609.05345 Multimedia +1609.05347 Combinatorics +1609.05348 Combinatorics +1609.05349 Materials Science +1609.05351 Networking and Internet Architecture +1609.05353 Statistical Mechanics +1609.05355 Optimization and Control +1609.05356 Dynamical Systems +1609.05357 Data Analysis, Statistics and Probability +1609.05358 Soft Condensed Matter +1609.05359 Databases +1609.05361 +1609.05363 Number Theory +1609.05364 Accelerator Physics +1609.05365 Programming Languages +1609.05366 Commutative Algebra +1609.05367 Artificial Intelligence +1609.05368 Classical Analysis and ODEs +1609.05370 Computer Science and Game Theory +1609.05371 Mesoscale and Nanoscale Physics +1609.05373 Analysis of PDEs +1609.05378 Social and Information Networks +1609.05382 Category Theory +1609.05383 +1609.05385 Logic in Computer Science +1609.05386 Number Theory +1609.05388 Machine Learning +1609.05393 Information Theory +1609.05394 Learning +1609.05395 +1609.05396 Computer Vision and Pattern Recognition +1609.05397 Analysis of PDEs +1609.05399 Robotics +1609.05400 Optics +1609.05401 Artificial Intelligence +1609.05402 Social and Information Networks +1609.05405 Superconductivity +1609.05406 Symplectic Geometry +1609.05410 +1609.05411 Logic +1609.05416 +1609.05419 Combinatorics +1609.05420 Computer Vision and Pattern Recognition +1609.05422 +1609.05426 Mesoscale and Nanoscale Physics +1609.05427 Statistical Mechanics +1609.05428 Analysis of PDEs +1609.05429 Robotics +1609.05431 Materials Science +1609.05434 Numerical Analysis +1609.05435 Quantum Gases +1609.05437 Analysis of PDEs +1609.05438 Combinatorics +1609.05439 Chemical Physics +1609.05440 Astrophysics of Galaxies +1609.05441 Phenomenology +1609.05443 Analysis of PDEs +1609.05447 Instrumentation and Detectors +1609.05448 Information Theory +1609.05449 Materials Science +1609.05451 Number Theory +1609.05452 Materials Science +1609.05454 Classical Analysis and ODEs +1609.05456 Instrumentation and Methods for Astrophysics +1609.05458 Combinatorics +1609.05459 Fluid Dynamics +1609.05461 Materials Science +1609.05462 Materials Science +1609.05463 Materials Science +1609.05464 Quantum Gases +1609.05466 Optics +1609.05468 Materials Science +1609.05469 Numerical Analysis +1609.05471 Combinatorics +1609.05478 Astrophysics of Galaxies +1609.05479 Statistics Theory +1609.05481 +1609.05482 General Topology +1609.05483 Systems and Control +1609.05487 Differential Geometry +1609.05488 Quantum Algebra +1609.05489 Quantum Gases +1609.05492 Solar and Stellar Astrophysics +1609.05493 Combinatorics +1609.05498 +1609.05499 Superconductivity +1609.05503 Networking and Internet Architecture +1609.05504 History and Philosophy of Physics +1609.05505 Numerical Analysis +1609.05506 +1609.05507 +1609.05512 Robotics +1609.05513 Cell Behavior +1609.05515 Classical Analysis and ODEs +1609.05516 Algebraic Geometry +1609.05522 Computer Vision and Pattern Recognition +1609.05523 Pricing of Securities +1609.05525 +1609.05527 +1609.05528 Learning +1609.05530 Methodology +1609.05531 Fluid Dynamics +1609.05532 Superconductivity +1609.05533 Functional Analysis +1609.05535 Rings and Algebras +1609.05536 Learning +1609.05540 Phenomenology +1609.05541 Materials Science +1609.05543 Algebraic Geometry +1609.05544 Dynamical Systems +1609.05546 Biological Physics +1609.05547 Superconductivity +1609.05551 Statistics Theory +1609.05552 Algebraic Geometry +1609.05556 Analysis of PDEs +1609.05557 Number Theory +1609.05558 Statistical Mechanics +1609.05559 Learning +1609.05560 Dynamical Systems +1609.05561 Computer Vision and Pattern Recognition +1609.05562 Mesoscale and Nanoscale Physics +1609.05564 Methodology +1609.05566 Artificial Intelligence +1609.05569 Number Theory +1609.05571 Populations and Evolution +1609.05572 Operator Algebras +1609.05574 Combinatorics +1609.05575 Optics +1609.05576 Differential Geometry +1609.05577 Mesoscale and Nanoscale Physics +1609.05579 Group Theory +1609.05580 Combinatorics +1609.05583 Computer Vision and Pattern Recognition +1609.05585 Classical Analysis and ODEs +1609.05586 Information Theory +1609.05588 Dynamical Systems +1609.05590 Computer Vision and Pattern Recognition +1609.05593 Materials Science +1609.05594 Rings and Algebras +1609.05596 Phenomenology +1609.05602 Quantum Gases +1609.05603 Strongly Correlated Electrons +1609.05605 Theory +1609.05606 Computational Physics +1609.05607 +1609.05608 Mesoscale and Nanoscale Physics +1609.05609 Statistics Theory +1609.05610 Information Retrieval +1609.05611 Algebraic Topology +1609.05613 +1609.05615 Computation +1609.05617 Probability +1609.05619 Computer Vision and Pattern Recognition +1609.05620 Mesoscale and Nanoscale Physics +1609.05622 Physics and Society +1609.05625 Computation and Language +1609.05626 Data Structures and Algorithms +1609.05627 Algebraic Geometry +1609.05628 +1609.05630 Algebraic Topology +1609.05631 +1609.05632 Artificial Intelligence +1609.05634 Mesoscale and Nanoscale Physics +1609.05635 Group Theory +1609.05637 Complex Variables +1609.05639 Information Theory +1609.05640 Materials Science +1609.05641 Human-Computer Interaction +1609.05642 Category Theory +1609.05643 +1609.05644 Differential Geometry +1609.05646 Optics +1609.05647 Geometric Topology +1609.05650 Computation and Language +1609.05651 Phenomenology +1609.05655 Symplectic Geometry +1609.05657 Combinatorics +1609.05658 Classical Analysis and ODEs +1609.05660 Differential Geometry +1609.05661 Probability +1609.05662 Discrete Mathematics +1609.05663 Mesoscale and Nanoscale Physics +1609.05665 +1609.05666 Probability +1609.05667 Solar and Stellar Astrophysics +1609.05671 Analysis of PDEs +1609.05673 Group Theory +1609.05675 Combinatorics +1609.05676 Subcellular Processes +1609.05678 Probability +1609.05681 Analysis of PDEs +1609.05682 Analysis of PDEs +1609.05683 Statistical Mechanics +1609.05684 Methodology +1609.05686 Logic in Computer Science +1609.05689 Optics +1609.05690 Materials Science +1609.05691 Astrophysics of Galaxies +1609.05694 Mesoscale and Nanoscale Physics +1609.05699 Probability +1609.05700 Computers and Society +1609.05703 Spectral Theory +1609.05705 Artificial Intelligence +1609.05708 Networking and Internet Architecture +1609.05709 Computational Complexity +1609.05710 Networking and Internet Architecture +1609.05712 Combinatorics +1609.05713 Optimization and Control +1609.05714 Statistics Theory +1609.05715 Data Structures and Algorithms +1609.05716 Quantitative Methods +1609.05717 Quantum Gases +1609.05719 Social and Information Networks +1609.05721 Experiment +1609.05722 Computer Vision and Pattern Recognition +1609.05724 Quantum Algebra +1609.05726 Dynamical Systems +1609.05727 Statistical Mechanics +1609.05728 Analysis of PDEs +1609.05730 Neurons and Cognition +1609.05731 Differential Geometry +1609.05732 Optimization and Control +1609.05733 Soft Condensed Matter +1609.05734 Optics +1609.05735 Cell Behavior +1609.05738 Populations and Evolution +1609.05740 Social and Information Networks +1609.05742 +1609.05744 Number Theory +1609.05745 Lattice +1609.05747 Combinatorics +1609.05749 Classical Analysis and ODEs +1609.05750 Performance +1609.05755 Complex Variables +1609.05757 Pattern Formation and Solitons +1609.05758 Physics Education +1609.05763 Human-Computer Interaction +1609.05767 Distributed, Parallel, and Cluster Computing +1609.05768 Probability +1609.05772 Machine Learning +1609.05774 Quantitative Methods +1609.05776 Number Theory +1609.05777 Optics +1609.05778 Number Theory +1609.05782 Computers and Society +1609.05783 Computers and Society +1609.05784 Classical Analysis and ODEs +1609.05787 Information Retrieval +1609.05791 Dynamical Systems +1609.05792 Discrete Mathematics +1609.05794 Rings and Algebras +1609.05799 Optimization and Control +1609.05801 Optimization and Control +1609.05804 Optics +1609.05805 Methodology +1609.05806 Differential Geometry +1609.05809 Combinatorics +1609.05810 Analysis of PDEs +1609.05811 Artificial Intelligence +1609.05812 Rings and Algebras +1609.05813 Computers and Society +1609.05814 Computers and Society +1609.05815 Information Theory +1609.05817 Analysis of PDEs +1609.05818 Computers and Society +1609.05821 Computers and Society +1609.05822 General Topology +1609.05823 Atomic Physics +1609.05828 Numerical Analysis +1609.05829 Combinatorics +1609.05832 Pricing of Securities +1609.05833 Functional Analysis +1609.05835 Artificial Intelligence +1609.05839 Combinatorics +1609.05840 Optimization and Control +1609.05842 Phenomenology +1609.05843 Number Theory +1609.05846 Commutative Algebra +1609.05851 +1609.05854 Combinatorics +1609.05858 Mesoscale and Nanoscale Physics +1609.05866 Learning +1609.05867 Data Structures and Algorithms +1609.05868 +1609.05872 Theory +1609.05876 Artificial Intelligence +1609.05877 Optimization and Control +1609.05879 Systems and Control +1609.05881 Artificial Intelligence +1609.05884 +1609.05886 Materials Science +cs/0012013 Computational Engineering, Finance, and Science +hep-ph/9903424 Phenomenology +math/0601405 Quantum Algebra +math/0604026 Classical Analysis and ODEs +physics/0411239 Atomic and Molecular Clusters +0801.0798 Combinatorics +0903.5120 +0904.2930 Instrumentation and Methods for Astrophysics +0904.3954 +0910.1641 Space Physics +1105.1818 Mesoscale and Nanoscale Physics +1110.0094 +1112.1455 Operator Algebras +1207.0569 Algebraic Geometry +1209.2828 Algebraic Geometry +1209.5352 Algebraic Geometry +1301.2715 Computer Vision and Pattern Recognition +1302.1065 History and Overview +1302.3994 Analysis of PDEs +1303.0676 Complex Variables +1305.0274 Statistics Theory +1305.5283 Number Theory +1305.6916 Machine Learning +1307.2839 Computational Geometry +1309.2041 Analysis of PDEs +1309.2043 Analysis of PDEs +1309.4322 Functional Analysis +1310.3479 Representation Theory +1310.3635 Complex Variables +1310.5464 Operator Algebras +1310.6202 Functional Analysis +1311.1061 Probability +1312.1948 Probability +1312.4271 Probability +1312.4822 Algebraic Geometry +1401.5816 Algebraic Topology +1402.1304 Functional Analysis +1402.1924 Analysis of PDEs +1404.5366 Algebraic Geometry +1405.1988 Algebraic Geometry +1405.3907 Statistics Theory +1407.1393 Mesoscale and Nanoscale Physics +1407.4546 Statistics Theory +1407.7405 Information Theory +1408.2923 Methodology +1408.3866 Combinatorics +1408.3870 Combinatorics +1408.4119 Phenomenology +1408.5369 Statistics Theory +1408.5935 +1409.2014 Computational Physics +1409.4317 Statistics Theory +1410.1082 Analysis of PDEs +1410.3488 Analysis of PDEs +1410.7189 Information Theory +1411.2391 Statistics Theory +1411.3092 Algebraic Geometry +1412.4523 Algebraic Geometry +1412.7743 Theory +1412.8652 Statistics Theory +1501.04789 Logic in Computer Science +1501.05649 Astrophysics of Galaxies +1501.06668 Quantum Algebra +1502.01067 Earth and Planetary Astrophysics +1502.01535 Functional Analysis +1502.01957 Functional Analysis +1502.05147 Logic in Computer Science +1502.06696 Analysis of PDEs +1503.05578 Logic +1504.05625 Category Theory +1504.05885 +1504.05906 Classical Analysis and ODEs +1504.06624 Phenomenology +1504.07019 Data Structures and Algorithms +1504.07297 Classical Analysis and ODEs +1505.04620 Phenomenology +1506.01174 Geometric Topology +1506.02306 Computation and Language +1506.02761 Computation and Language +1507.00049 Functional Analysis +1507.00606 Representation Theory +1507.00843 Probability +1507.02751 Methodology +1507.04201 Machine Learning +1507.04715 Solar and Stellar Astrophysics +1507.05286 Methodology +1507.08132 Statistical Mechanics +1508.01788 Exactly Solvable and Integrable Systems +1508.05930 Chemical Physics +1508.06182 Computational Finance +1508.07326 +1509.00415 Methodology +1509.00484 +1509.00915 Applications +1509.01337 Systems and Control +1509.02098 Analysis of PDEs +1509.02145 Algebraic Geometry +1509.02701 Mesoscale and Nanoscale Physics +1509.04037 Social and Information Networks +1509.06797 Experiment +1509.07528 Algebraic Geometry +1509.08276 Combinatorics +1510.00914 Physics and Society +1510.03232 Robotics +1510.05331 Classical Analysis and ODEs +1510.05610 Machine Learning +1510.08321 Quantum Algebra +1510.08800 +1511.00876 Data Structures and Algorithms +1511.01138 Data Structures and Algorithms +1511.01995 +1511.02753 Operator Algebras +1511.03851 +1511.05942 Learning +1511.08047 +1511.08237 Atomic Physics +1512.00154 Quantum Gases +1512.01255 Methodology +1512.02203 High Energy Astrophysical Phenomena +1512.02225 Theory +1512.02419 Statistical Mechanics +1512.03409 Algebraic Topology +1512.04676 +1512.05503 Plasma Physics +1512.05930 +1512.06249 Instrumentation and Detectors +1512.08326 Instrumentation and Methods for Astrophysics +1512.09219 Theory +1601.00149 Computer Vision and Pattern Recognition +1601.00571 Physics and Society +1601.00646 Quantum Gases +1601.02254 Metric Geometry +1601.02899 Optics +1601.04178 +1601.04363 Computers and Society +1601.08070 Statistical Mechanics +1602.00192 Data Structures and Algorithms +1602.03191 Phenomenology +1602.03644 Information Theory +1602.04870 +1602.05234 +1602.05756 +1602.08143 Classical Analysis and ODEs +1602.09109 +1602.09130 Computer Vision and Pattern Recognition +1603.00424 Analysis of PDEs +1603.04015 Computer Vision and Pattern Recognition +1603.05667 +1603.07954 Computation and Language +1604.01042 Quantum Gases +1604.01043 Statistical Mechanics +1604.01285 Mesoscale and Nanoscale Physics +1604.01528 Optics +1604.01752 Phenomenology +1604.02319 Analysis of PDEs +1604.02609 Statistical Mechanics +1604.02655 +1604.03110 Theory +1604.03219 Instrumentation and Methods for Astrophysics +1604.05083 Experiment +1604.05112 Chaotic Dynamics +1604.05158 Classical Analysis and ODEs +1604.06162 Learning +1604.08900 Numerical Analysis +1605.00288 Operator Algebras +1605.02086 Statistical Mechanics +1605.02705 Operator Algebras +1605.03851 Solar and Stellar Astrophysics +1605.05162 Mesoscale and Nanoscale Physics +1605.07274 +1605.08918 Strongly Correlated Electrons +1605.09475 Materials Science +1605.09611 +1605.09736 +1606.00351 History and Philosophy of Physics +1606.02211 +1606.02855 Phenomenology +1606.03903 Experiment +1606.05181 Mesoscale and Nanoscale Physics +1606.05553 Strongly Correlated Electrons +1606.06592 Commutative Algebra +1606.06879 Mesoscale and Nanoscale Physics +1606.07391 Phenomenology +1606.08004 Differential Geometry +1606.08397 Analysis of PDEs +1606.08673 Materials Science +1606.08738 Statistical Mechanics +1607.00393 Statistics Theory +1607.01758 Functional Analysis +1607.02187 Cosmology and Nongalactic Astrophysics +1607.02188 Applications +1607.02298 Information Theory +1607.03585 +1607.03586 +1607.03743 +1607.04649 Mesoscale and Nanoscale Physics +1607.05165 Distributed, Parallel, and Cluster Computing +1607.05890 Strongly Correlated Electrons +1607.05942 Disordered Systems and Neural Networks +1607.06209 +1607.07610 Metric Geometry +1607.07994 Algebraic Geometry +1607.08014 +1608.00004 Cosmology and Nongalactic Astrophysics +1608.00408 Phenomenology +1608.01184 Materials Science +1608.02012 Software Engineering +1608.03602 +1608.04332 +1608.04462 Soft Condensed Matter +1608.04808 Social and Information Networks +1608.05221 Systems and Control +1608.05452 Solar and Stellar Astrophysics +1608.07096 Numerical Analysis +1608.08225 Disordered Systems and Neural Networks +1608.08356 Representation Theory +1609.00282 Theory +1609.00771 Dynamical Systems +1609.01667 Theory +1609.02096 Earth and Planetary Astrophysics +1609.02262 Combinatorics +1609.02581 Algebraic Topology +1609.02964 Analysis of PDEs +1609.03292 Algebraic Geometry +1609.03429 Algebraic Topology +1609.04333 Theory +1609.04671 Experiment +1609.05130 Computer Vision and Pattern Recognition +1609.05156 +1609.05182 Phenomenology +1609.05786 Spectral Theory +1609.06235 Complex Variables +1609.06313 Strongly Correlated Electrons +1609.06551 Algebraic Geometry +1609.06674 Numerical Analysis +1609.06733 Classical Analysis and ODEs +1609.06805 Applications +1609.06907 Numerical Analysis +1609.07243 Astrophysics of Galaxies +1609.07550 +1609.07709 Computational Geometry +1609.07845 Multiagent Systems +1609.08086 Category Theory +1609.08104 Mesoscale and Nanoscale Physics +1609.08273 Number Theory +1609.08334 Analysis of PDEs +1609.08372 Operating Systems +1609.08400 Symplectic Geometry +1609.08509 Quantum Gases +1609.08513 Data Structures and Algorithms +1609.08523 Numerical Analysis +1609.08583 Networking and Internet Architecture +1609.08603 Number Theory +1609.08607 Functional Analysis +1609.08608 Theory +1609.08609 +1609.08611 Populations and Evolution +1609.08612 Functional Analysis +1609.08614 Earth and Planetary Astrophysics +1609.08615 High Energy Astrophysical Phenomena +1609.08618 Strongly Correlated Electrons +1609.08621 Instrumentation and Methods for Astrophysics +1609.08622 Astrophysics of Galaxies +1609.08626 Astrophysics of Galaxies +1609.08627 Theory +1609.08628 +1609.08629 Astrophysics of Galaxies +1609.08633 Earth and Planetary Astrophysics +1609.08636 Earth and Planetary Astrophysics +1609.08639 Statistical Mechanics +1609.08641 Applications +1609.08647 History and Philosophy of Physics +1609.08648 Algebraic Geometry +1609.08649 Differential Geometry +1609.08650 Systems and Control +1609.08653 Astrophysics of Galaxies +1609.08654 Solar and Stellar Astrophysics +1609.08656 Information Theory +1609.08658 Functional Analysis +1609.08659 Functional Analysis +1609.08661 Computer Vision and Pattern Recognition +1609.08662 Superconductivity +1609.08663 Neural and Evolutionary Computing +1609.08664 +1609.08668 Analysis of PDEs +1609.08669 Computer Vision and Pattern Recognition +1609.08670 +1609.08672 Probability +1609.08675 Computer Vision and Pattern Recognition +1609.08676 +1609.08677 Computer Vision and Pattern Recognition +1609.08680 Solar and Stellar Astrophysics +1609.08681 Hardware Architecture +1609.08683 Solar and Stellar Astrophysics +1609.08684 +1609.08687 Geometric Topology +1609.08689 Instrumentation and Methods for Astrophysics +1609.08690 Instrumentation and Methods for Astrophysics +1609.08691 Instrumentation and Methods for Astrophysics +1609.08692 Instrumentation and Methods for Astrophysics +1609.08696 Tissues and Organs +1609.08699 Optics +1609.08701 Classical Analysis and ODEs +1609.08702 Logic +1609.08703 Computation and Language +1609.08704 Mesoscale and Nanoscale Physics +1609.08708 Probability +1609.08709 Algebraic Geometry +1609.08710 Probability +1609.08712 Combinatorics +1609.08713 Materials Science +1609.08715 Computers and Society +1609.08716 Computers and Society +1609.08717 Mesoscale and Nanoscale Physics +1609.08719 Geometric Topology +1609.08720 Number Theory +1609.08721 K-Theory and Homology +1609.08723 Data Structures and Algorithms +1609.08724 Number Theory +1609.08725 Methodology +1609.08727 Operator Algebras +1609.08730 Combinatorics +1609.08732 Astrophysics of Galaxies +1609.08733 Optimization and Control +1609.08734 Software Engineering +1609.08735 +1609.08737 Methodology +1609.08739 Computational Geometry +1609.08740 Computer Vision and Pattern Recognition +1609.08742 Number Theory +1609.08743 Classical Analysis and ODEs +1609.08746 Physics and Society +1609.08747 Computers and Society +1609.08749 Experiment +1609.08750 Earth and Planetary Astrophysics +1609.08751 Optimization and Control +1609.08752 Machine Learning +1609.08753 Computers and Society +1609.08754 Computers and Society +1609.08755 Computers and Society +1609.08756 Computers and Society +1609.08757 Computers and Society +1609.08758 Computer Vision and Pattern Recognition +1609.08759 +1609.08760 +1609.08762 Computers and Society +1609.08763 Metric Geometry +1609.08765 Computers and Society +1609.08766 Computers and Society +1609.08768 Social and Information Networks +1609.08769 Exactly Solvable and Integrable Systems +1609.08770 Computers and Society +1609.08774 Superconductivity +1609.08776 Computers and Society +1609.08778 Computers and Society +1609.08779 Computers and Society +1609.08780 Computers and Society +1609.08784 Populations and Evolution +1609.08785 Analysis of PDEs +1609.08786 Materials Science +1609.08787 Information Theory +1609.08788 Number Theory +1609.08796 Phenomenology +1609.08797 Algebraic Geometry +1609.08798 Algebraic Geometry +1609.08799 Algebraic Geometry +1609.08801 Data Structures and Algorithms +1609.08804 History and Philosophy of Physics +1609.08808 Algebraic Geometry +1609.08809 Mesoscale and Nanoscale Physics +1609.08813 Information Theory +1609.08814 Differential Geometry +1609.08815 Group Theory +1609.08818 Optics +1609.08820 Discrete Mathematics +1609.08821 Numerical Analysis +1609.08823 Functional Analysis +1609.08824 Computation and Language +1609.08826 Number Theory +1609.08830 Optimization and Control +1609.08832 Analysis of PDEs +1609.08833 Lattice +1609.08839 Numerical Analysis +1609.08840 Solar and Stellar Astrophysics +1609.08842 Classical Analysis and ODEs +1609.08843 Information Retrieval +1609.08844 General Topology +1609.08845 Information Theory +1609.08849 Differential Geometry +1609.08851 +1609.08852 Number Theory +1609.08853 Numerical Analysis +1609.08854 Robotics +1609.08855 Neurons and Cognition +1609.08856 Materials Science +1609.08860 Geophysics +1609.08861 Analysis of PDEs +1609.08867 Analysis of PDEs +1609.08868 Information Theory +1609.08869 Algebraic Topology +1609.08870 Computer Science and Game Theory +1609.08871 Biological Physics +1609.08872 Number Theory +1609.08874 Emerging Technologies +1609.08875 Astrophysics of Galaxies +1609.08877 Analysis of PDEs +1609.08878 Information Theory +1609.08881 Human-Computer Interaction +1609.08882 Statistics Theory +1609.08883 Strongly Correlated Electrons +1609.08885 Combinatorics +1609.08887 +1609.08888 Networking and Internet Architecture +1609.08891 Symplectic Geometry +1609.08893 Distributed, Parallel, and Cluster Computing +1609.08896 Quantitative Methods +1609.08897 Classical Analysis and ODEs +1609.08898 Statistics Theory +1609.08899 Probability +1609.08900 Group Theory +1609.08901 Materials Science +1609.08902 +1609.08903 Analysis of PDEs +1609.08904 +1609.08906 Differential Geometry +1609.08907 Other Condensed Matter +1609.08908 Representation Theory +1609.08910 Mesoscale and Nanoscale Physics +1609.08913 Machine Learning +1609.08914 Complex Variables +1609.08915 Materials Science +1609.08918 Functional Analysis +1609.08919 Combinatorics +1609.08921 Atmospheric and Oceanic Physics +1609.08922 Phenomenology +1609.08923 Computer Science and Game Theory +1609.08924 Probability +1609.08925 Artificial Intelligence +1609.08926 Atmospheric and Oceanic Physics +1609.08930 Analysis of PDEs +1609.08931 Classical Physics +1609.08933 Earth and Planetary Astrophysics +1609.08934 Computer Science and Game Theory +1609.08935 Information Theory +1609.08936 +1609.08937 Number Theory +1609.08938 Computer Vision and Pattern Recognition +1609.08941 Analysis of PDEs +1609.08946 Mesoscale and Nanoscale Physics +1609.08949 +1609.08951 +1609.08953 Computer Science and Game Theory +1609.08954 Symplectic Geometry +1609.08956 Methodology +1609.08958 Phenomenology +1609.08961 Optimization and Control +1609.08964 Combinatorics +1609.08965 Computer Vision and Pattern Recognition +1609.08968 Cosmology and Nongalactic Astrophysics +1609.08969 Exactly Solvable and Integrable Systems +1609.08970 Methodology +1609.08972 Astrophysics of Galaxies +1609.08973 Optimization and Control +1609.08975 +1609.08976 Machine Learning +1609.08978 Probability +1609.08980 Neurons and Cognition +1609.08982 Mesoscale and Nanoscale Physics +1609.08983 Combinatorics +1609.08988 Analysis of PDEs +1609.08991 Symplectic Geometry +1609.08995 Classical Analysis and ODEs +1609.08997 Statistics Theory +1609.08998 Representation Theory +1609.09002 Number Theory +1609.09005 Biological Physics +1609.09006 Biological Physics +1609.09007 Computation and Language +1609.09008 Algebraic Geometry +1609.09014 Other Computer Science +1609.09015 Metric Geometry +1609.09016 Logic +1609.09018 Computer Vision and Pattern Recognition +1609.09019 Computation and Language +1609.09021 Mesoscale and Nanoscale Physics +1609.09025 Robotics +1609.09026 Combinatorics +1609.09027 Phenomenology +1609.09029 Plasma Physics +1609.09033 Methodology +1609.09034 Commutative Algebra +1609.09035 Statistics Theory +1609.09036 Neurons and Cognition +1609.09038 Quantum Algebra +1609.09039 Computational Physics +1609.09041 Superconductivity +1609.09042 Representation Theory +1609.09046 Differential Geometry +1609.09048 Analysis of PDEs +1609.09050 Theory +1609.09054 Theory +1609.09057 Number Theory +1609.09058 Computer Vision and Pattern Recognition +1609.09060 Disordered Systems and Neural Networks +math/0412075 Algebraic Geometry +math/9804069 Algebraic Geometry +0705.0255 Strongly Correlated Electrons +0904.3997 Combinatorics +1009.0320 +1011.0835 Computation and Language +1104.3103 Computer Science and Game Theory +1105.6154 Methodology +1107.3792 Disordered Systems and Neural Networks +1207.7159 Classical Analysis and ODEs +1208.3278 Optimization and Control +1210.0743 Geometric Topology +1210.2118 General Topology +1210.2120 General Topology +1211.6167 Materials Science +1212.6964 +1302.0857 Cosmology and Nongalactic Astrophysics +1302.3736 Algebraic Geometry +1302.4763 General Topology +1303.4032 Dynamical Systems +1304.0486 General Topology +1309.5310 Statistics Theory +1310.0405 Solar and Stellar Astrophysics +1311.2051 Algebraic Geometry +1311.2285 General Topology +1312.1223 Differential Geometry +1312.2935 Algebraic Geometry +1401.5966 Multimedia +1401.6800 Materials Science +1402.0528 Functional Analysis +1403.2779 Information Theory +1403.7589 Methodology +1404.3360 Differential Geometry +1404.3682 Probability +1405.0111 Functional Analysis +1405.4538 Methodology +1405.5589 Functional Analysis +1405.6072 Geometric Topology +1405.7129 Other Statistics +1406.0964 +1406.1845 Machine Learning +1407.8496 Combinatorics +1408.5461 Populations and Evolution +1408.6136 Functional Analysis +1409.3723 +1409.6324 General Topology +1410.3765 +1410.6144 Mathematical Finance +1410.6794 Classical Physics +1411.1647 Combinatorics +1411.2659 +1411.3113 Dynamical Systems +1411.3322 High Energy Astrophysical Phenomena +1411.4067 Dynamical Systems +1411.5166 Programming Languages +1411.6033 Soft Condensed Matter +1412.0192 +1412.3154 Differential Geometry +1412.3395 Theory +1412.4089 Algebraic Geometry +1412.6688 Populations and Evolution +1412.7211 Quantum Algebra +1501.00675 Category Theory +1502.04470 Geometric Topology +1502.05366 Numerical Analysis +1502.06178 Mesoscale and Nanoscale Physics +1502.06522 Algebraic Topology +1503.02050 Dynamical Systems +1503.02458 Numerical Analysis +1503.03928 Subcellular Processes +1503.05647 +1504.01042 Cryptography and Security +1504.01538 Quantum Algebra +1504.02337 Solar and Stellar Astrophysics +1504.05105 Optics +1504.05854 Learning +1504.07296 Probability +1504.07569 Strongly Correlated Electrons +1504.07628 +1505.01201 Combinatorics +1505.02416 Mathematical Finance +1505.04757 Risk Management +1505.06477 Algebraic Geometry +1506.03323 +1506.06417 Quantum Algebra +1506.07572 Operator Algebras +1506.08095 Theory +1506.08149 Methodology +1507.02404 Experiment +1507.02451 +1507.05773 Functional Analysis +1507.07140 Mesoscale and Nanoscale Physics +1507.07831 Analysis of PDEs +1508.00526 Group Theory +1508.00856 Theory +1508.05772 Soft Condensed Matter +1508.06120 Analysis of PDEs +1508.06253 Probability +1509.01895 Strongly Correlated Electrons +1509.04201 Theory +1509.04209 Theory +1509.04704 Methodology +1509.06305 Discrete Mathematics +1509.08004 Mesoscale and Nanoscale Physics +1509.08155 Robotics +1509.09007 Algebraic Geometry +1510.03779 Dynamical Systems +1510.04495 +1510.06758 Phenomenology +1510.08274 Data Structures and Algorithms +1511.00046 Solar and Stellar Astrophysics +1511.01038 Data Structures and Algorithms +1511.01295 Number Theory +1511.01461 Chemical Physics +1511.04599 Learning +1511.04655 Combinatorics +1511.04698 Networking and Internet Architecture +1511.05544 Strongly Correlated Electrons +1511.07986 Theory +1511.08027 Number Theory +1511.08764 +1512.00169 +1512.00859 +1512.01353 Category Theory +1512.02667 Geometric Topology +1512.03294 Dynamical Systems +1512.06411 Rings and Algebras +1512.06566 Computer Vision and Pattern Recognition +1512.06843 Commutative Algebra +1512.06858 Theory +1512.08533 Theory +1601.00196 +1601.00564 Rings and Algebras +1601.00664 Numerical Analysis +1601.01685 +1601.03422 High Energy Astrophysical Phenomena +1601.04575 Commutative Algebra +1601.05364 Functional Analysis +1601.06579 Computation and Language +1601.06809 +1601.07144 Tissues and Organs +1601.08141 Optimization and Control +1602.00653 Optimization and Control +1602.00976 Classical Analysis and ODEs +1602.01191 Quantitative Methods +1602.01616 Hardware Architecture +1602.02203 Information Theory +1602.04099 Biomolecules +1602.05216 Phenomenology +1602.05448 +1602.05937 Combinatorics +1602.06164 +1602.06231 Algebraic Geometry +1602.06543 Theory +1602.07779 Combinatorics +1602.08290 Networking and Internet Architecture +1602.09035 Algebraic Topology +1603.00598 Phenomenology +1603.02036 Data Analysis, Statistics and Probability +1603.02154 Combinatorics +1603.02199 Learning +1603.02303 Experiment +1603.02720 Computational Physics +1603.03165 Programming Languages +1603.03172 Logic +1603.03305 Probability +1603.03756 Superconductivity +1603.03838 Complex Variables +1603.04311 Strongly Correlated Electrons +1603.05136 +1603.05929 Theory +1603.06470 Computer Vision and Pattern Recognition +1603.06789 Theory +1603.07722 Cosmology and Nongalactic Astrophysics +1603.07893 Neural and Evolutionary Computing +1603.08440 Theory +1603.09299 Theory +1603.09333 Group Theory +1603.09402 Mesoscale and Nanoscale Physics +1603.09474 Analysis of PDEs +1603.09569 Algebraic Geometry +1604.00199 Quantum Algebra +1604.01422 Discrete Mathematics +1604.01471 +1604.02156 Phenomenology +1604.02414 +1604.03141 Solar and Stellar Astrophysics +1604.03895 Soft Condensed Matter +1604.03929 Materials Science +1604.04312 General Finance +1604.04952 Functional Analysis +1604.05222 Geometric Topology +1604.06095 Cosmology and Nongalactic Astrophysics +1604.06184 Theory +1604.06356 Artificial Intelligence +1604.06637 Methodology +1604.06639 Probability +1604.06705 High Energy Astrophysical Phenomena +1604.07995 Disordered Systems and Neural Networks +1604.08253 +1604.08280 Mesoscale and Nanoscale Physics +1604.08339 Cosmology and Nongalactic Astrophysics +1604.08657 Combinatorics +1605.00767 +1605.00985 Probability +1605.01990 Experiment +1605.02083 Soft Condensed Matter +1605.02924 Soft Condensed Matter +1605.03148 Computation and Language +1605.03979 Mesoscale and Nanoscale Physics +1605.04027 Numerical Analysis +1605.04449 Probability +1605.04457 Systems and Control +1605.04500 Mesoscale and Nanoscale Physics +1605.05002 Optimization and Control +1605.06998 Mesoscale and Nanoscale Physics +1605.07005 Disordered Systems and Neural Networks +1605.07577 Logic in Computer Science +1605.08071 Statistical Mechanics +1605.08740 Populations and Evolution +1605.09309 Mesoscale and Nanoscale Physics +1606.00012 Materials Science +1606.00269 Optimization and Control +1606.00850 Computer Vision and Pattern Recognition +1606.00873 Analysis of PDEs +1606.01078 +1606.01154 Differential Geometry +1606.01342 Data Structures and Algorithms +1606.02298 High Energy Astrophysical Phenomena +1606.02357 Dynamical Systems +1606.04087 Artificial Intelligence +1606.04600 Populations and Evolution +1606.05048 Strongly Correlated Electrons +1606.05586 Analysis of PDEs +1606.05670 Classical Analysis and ODEs +1606.06301 +1606.06668 Molecular Networks +1606.06726 Programming Languages +1606.07395 Combinatorics +1606.07541 Group Theory +1606.08451 +1607.00013 Astrophysics of Galaxies +1607.00545 +1607.00669 Machine Learning +1607.00880 Information Theory +1607.00973 Computational Engineering, Finance, and Science +1607.01369 Machine Learning +1607.01867 Representation Theory +1607.02417 Cosmology and Nongalactic Astrophysics +1607.03078 Number Theory +1607.03298 Strongly Correlated Electrons +1607.03599 General Topology +1607.04127 Space Physics +1607.04913 Data Structures and Algorithms +1607.05445 Theory +1607.06254 Probability +1607.06411 Representation Theory +1607.06863 +1607.07312 +1607.07698 Logic in Computer Science +1607.08317 Algebraic Geometry +1607.08494 Instrumentation and Detectors +1607.08580 Artificial Intelligence +1608.00857 Metric Geometry +1608.01496 Combinatorics +1608.01813 Other Condensed Matter +1608.01882 Classical Analysis and ODEs +1608.02181 Differential Geometry +1608.02765 Disordered Systems and Neural Networks +1608.02893 Learning +1608.03421 Probability +1608.03863 Probability +1608.03949 Probability +1608.04057 Phenomenology +1608.04154 Information Theory +1608.04326 Number Theory +1608.04507 Statistics Theory +1608.04651 Theory +1608.04708 Algebraic Topology +1608.05231 Graphics +1608.05810 Statistics Theory +1608.05818 Analysis of PDEs +1608.06142 Data Structures and Algorithms +1608.06148 Computer Vision and Pattern Recognition +1608.06310 Distributed, Parallel, and Cluster Computing +1608.06347 Distributed, Parallel, and Cluster Computing +1608.06512 Classical Physics +1608.06741 Numerical Analysis +1608.06865 Software Engineering +1608.07104 Analysis of PDEs +1608.07140 Materials Science +1608.07255 Combinatorics +1608.07275 Theory +1608.07324 Classical Physics +1608.07340 Instrumentation and Detectors +1608.07392 Instrumentation and Methods for Astrophysics +1608.07414 Phenomenology +1608.07455 Optimization and Control +1608.07458 Phenomenology +1608.07514 Logic in Computer Science +1608.07575 Computer Science and Game Theory +1608.07577 Astrophysics of Galaxies +1608.07581 Cosmology and Nongalactic Astrophysics +1608.07586 Instrumentation and Detectors +1608.07587 Differential Geometry +1608.07588 Chaotic Dynamics +1608.07590 Instrumentation and Detectors +1608.07591 Instrumentation and Detectors +1608.07594 Instrumentation and Detectors +1608.07595 Instrumentation and Detectors +1608.07600 Commutative Algebra +1608.07601 Chemical Physics +1608.07604 Analysis of PDEs +1608.07607 Astrophysics of Galaxies +1608.07608 Solar and Stellar Astrophysics +1608.07610 Solar and Stellar Astrophysics +1608.07611 Theory +1608.07613 Quantum Algebra +1608.07614 Combinatorics +1608.07616 Computer Vision and Pattern Recognition +1608.07617 Software Engineering +1608.07619 Learning +1608.07622 Analysis of PDEs +1608.07625 Learning +1608.07628 Differential Geometry +1608.07630 Statistics Theory +1608.07631 +1608.07632 Information Theory +1608.07634 Discrete Mathematics +1608.07635 Probability +1608.07636 Learning +1608.07639 Computer Vision and Pattern Recognition +1608.07640 Classical Analysis and ODEs +1608.07644 +1608.07645 Algebraic Topology +1608.07646 Mesoscale and Nanoscale Physics +1608.07647 Optimization and Control +1608.07649 Quantum Gases +1608.07650 Atomic Physics +1608.07651 Algebraic Geometry +1608.07652 Data Structures and Algorithms +1608.07658 Networking and Internet Architecture +1608.07659 Analysis of PDEs +1608.07664 Computer Vision and Pattern Recognition +1608.07665 Fluid Dynamics +1608.07666 Information Theory +1608.07667 Differential Geometry +1608.07670 Networking and Internet Architecture +1608.07672 Information Theory +1608.07679 Cryptography and Security +1608.07680 Combinatorics +1608.07681 Statistics Theory +1608.07682 Solar and Stellar Astrophysics +1608.07686 Combinatorics +1608.07689 Analysis of PDEs +1608.07690 Learning +1608.07691 Analysis of PDEs +1608.07692 Analysis of PDEs +1608.07693 Analysis of PDEs +1608.07694 Statistical Finance +1608.07695 Fluid Dynamics +1608.07696 Fluid Dynamics +1608.07698 Analysis of PDEs +1608.07700 Analysis of PDEs +1608.07701 Optimization and Control +1608.07703 Logic +1608.07707 Analysis of PDEs +1608.07710 Learning +1608.07711 Computer Vision and Pattern Recognition +1608.07712 History and Overview +1608.07713 Sound +1608.07716 Optics +1608.07720 Computation and Language +1608.07721 Probability +1608.07724 Computer Vision and Pattern Recognition +1608.07727 Discrete Mathematics +1608.07729 Fluid Dynamics +1608.07731 Functional Analysis +1608.07732 Algebraic Geometry +1608.07735 Number Theory +1608.07740 Physics and Society +1608.07742 Lattice +1608.07745 Software Engineering +1608.07747 Combinatorics +1608.07749 Combinatorics +1608.07750 Functional Analysis +1608.07753 Theory +1608.07755 Representation Theory +1608.07759 Solar and Stellar Astrophysics +1608.07762 Combinatorics +1608.07764 Artificial Intelligence +1608.07768 Phenomenology +1608.07770 Optimization and Control +1608.07771 Quantum Algebra +1608.07774 Chemical Physics +1608.07779 Strongly Correlated Electrons +1608.07780 Chemical Physics +1608.07783 Combinatorics +1608.07784 Functional Analysis +1608.07786 Spectral Theory +1608.07787 Spectral Theory +1608.07788 +1608.07789 Differential Geometry +1608.07792 Logic in Computer Science +1608.07795 Theory +1608.07796 Computational Finance +1608.07799 Information Theory +1608.07802 Computer Vision and Pattern Recognition +1608.07803 Analysis of PDEs +1608.07807 Computer Vision and Pattern Recognition +1608.07809 Other Computer Science +1608.07812 +1608.07813 Computer Vision and Pattern Recognition +1608.07814 Materials Science +1608.07815 Medical Physics +1608.07816 +1608.07820 Mesoscale and Nanoscale Physics +1608.07821 +1608.07825 Algebraic Geometry +1608.07827 Soft Condensed Matter +1608.07829 Plasma Physics +1608.07830 Combinatorics +1608.07831 Risk Management +1608.07832 Phenomenology +1608.07834 Solar and Stellar Astrophysics +1608.07836 Computation and Language +1608.07840 +1608.07843 Optics +1608.07846 Artificial Intelligence +1608.07847 Data Structures and Algorithms +1608.07848 Strongly Correlated Electrons +1608.07850 Instrumentation and Detectors +1608.07851 Mesoscale and Nanoscale Physics +1608.07852 Computation and Language +1608.07853 Experiment +1608.07854 Networking and Internet Architecture +1608.07861 Chemical Physics +1608.07862 +1608.07864 Theory +1608.07866 Optics +1608.07867 Classical Analysis and ODEs +1608.07869 +1608.07870 Populations and Evolution +1608.07874 Algebraic Geometry +1608.07875 Phenomenology +1608.07876 Computer Vision and Pattern Recognition +1608.07878 Digital Libraries +1608.07879 Software Engineering +1608.07880 Logic in Computer Science +1608.07881 Software Engineering +1608.07882 Computers and Society +1608.07883 Logic in Computer Science +1608.07886 Computer Science and Game Theory +1608.07887 Number Theory +1608.07888 Learning +1608.07889 Functional Analysis +1608.07890 Quantum Algebra +1608.07891 Networking and Internet Architecture +1608.07893 Quantum Gases +1608.07894 Mesoscale and Nanoscale Physics +1608.07895 Learning +1608.07896 Representation Theory +1608.07898 Experiment +1608.07901 Physics and Society +1608.07902 Dynamical Systems +1608.07906 Dynamical Systems +1608.07908 Representation Theory +1608.07912 Phenomenology +1608.07913 Analysis of PDEs +1608.07914 Analysis of PDEs +1608.07915 +1608.07916 Computer Vision and Pattern Recognition +1608.07920 +1608.07921 Methodology +1608.07922 Combinatorics +1608.07923 Distributed, Parallel, and Cluster Computing +1608.07929 Machine Learning +1608.07931 Dynamical Systems +1608.07934 Learning +1608.07936 Number Theory +1608.07939 Combinatorics +1608.07940 Phenomenology +1608.07942 Analysis of PDEs +1608.07945 Geometric Topology +1608.07948 Cellular Automata and Lattice Gases +1608.07950 +1608.07951 Computer Vision and Pattern Recognition +1608.07953 Networking and Internet Architecture +1608.07956 Dynamical Systems +1608.07957 Atomic Physics +1608.07958 Probability +1608.07959 Biological Physics +1608.07966 +1608.07968 Differential Geometry +1608.07969 Mesoscale and Nanoscale Physics +1608.07972 Numerical Analysis +1608.07975 Phenomenology +1608.07977 +1608.07979 Probability +1608.07980 +1608.07981 Cryptography and Security +1608.07982 Lattice +1608.07983 +1608.07986 Machine Learning +1608.07987 Number Theory +1608.07988 Symplectic Geometry +1608.07989 Information Theory +1608.07991 Analysis of PDEs +1608.07993 Combinatorics +1608.07996 Analysis of PDEs +1608.07997 Computer Vision and Pattern Recognition +1608.07998 High Energy Astrophysical Phenomena +1608.07999 +1608.08000 Optimization and Control +1608.08001 Fluid Dynamics +1608.08002 Optics +1608.08004 Algebraic Geometry +1608.08009 Numerical Analysis +1608.08012 Astrophysics of Galaxies +1608.08013 Optics +1608.08014 Information Theory +1608.08015 Artificial Intelligence +1608.08016 Instrumentation and Methods for Astrophysics +1608.08020 Cryptography and Security +1608.08022 Materials Science +1608.08023 Earth and Planetary Astrophysics +1608.08024 Earth and Planetary Astrophysics +1608.08027 Data Structures and Algorithms +1608.08028 Artificial Intelligence +1608.08029 Computer Vision and Pattern Recognition +1608.08031 Optimization and Control +1608.08032 Earth and Planetary Astrophysics +1608.08033 Artificial Intelligence +1608.08036 Optics +1608.08037 Algebraic Topology +1608.08038 Earth and Planetary Astrophysics +1608.08042 Networking and Internet Architecture +1608.08043 Materials Science +1608.08044 Number Theory +1608.08045 Combinatorics +1608.08047 Systems and Control +1608.08050 General Physics +1608.08052 Machine Learning +1608.08053 Systems and Control +1608.08057 Cosmology and Nongalactic Astrophysics +1608.08058 Classical Analysis and ODEs +1608.08062 Probability +1608.08063 Machine Learning +1608.08064 Soft Condensed Matter +1608.08066 Computational Physics +1608.08069 High Energy Astrophysical Phenomena +1608.08072 Artificial Intelligence +1608.08073 Classical Analysis and ODEs +1608.08075 Probability +1608.08076 Applications +1608.08077 Superconductivity +1608.08079 Classical Analysis and ODEs +1608.08080 Optimization and Control +1608.08084 High Energy Astrophysical Phenomena +1608.08085 History and Overview +1608.08086 General Mathematics +1608.08087 Metric Geometry +1608.08089 Optics +1608.08094 General Topology +1608.08096 Methodology +1608.08098 Representation Theory +1608.08099 +1608.08101 Plasma Physics +1608.08103 Experiment +1608.08105 Instrumentation and Methods for Astrophysics +1608.08106 Instrumentation and Detectors +1608.08111 Materials Science +1608.08112 Digital Libraries +1608.08113 Functional Analysis +1608.08114 K-Theory and Homology +1608.08117 Numerical Analysis +1608.08118 +1608.08122 Algebraic Geometry +1608.08124 Plasma Physics +1608.08126 Methodology +1608.08127 +1608.08130 Databases +1608.08133 Materials Science +1608.08136 +1608.08137 Numerical Analysis +1608.08138 Cosmology and Nongalactic Astrophysics +1608.08140 Algebraic Topology +1608.08142 Information Theory +1608.08144 Artificial Intelligence +1608.08146 +1608.08149 Computer Vision and Pattern Recognition +1608.08152 Representation Theory +1608.08155 Commutative Algebra +1608.08162 Soft Condensed Matter +1608.08165 Phenomenology +1608.08168 Applications +1608.08175 Accelerator Physics +1608.08178 Algebraic Geometry +1608.08180 Information Retrieval +1608.08186 +1608.08188 Artificial Intelligence +1608.08189 Operator Algebras +1608.08190 Metric Geometry +1608.08192 +1608.08194 +1608.08196 Computers and Society +1608.08197 Computational Physics +1608.08200 Quantum Gases +1608.08204 Optimization and Control +1608.08206 Strongly Correlated Electrons +alg-geom/9606010 Algebraic Geometry +alg-geom/9608016 Algebraic Geometry +alg-geom/9608020 Algebraic Geometry +alg-geom/9610020 Algebraic Geometry +alg-geom/9611010 Algebraic Geometry +alg-geom/9611028 Algebraic Geometry +alg-geom/9611030 Algebraic Geometry +alg-geom/9612017 Algebraic Geometry +alg-geom/9701008 Algebraic Geometry +alg-geom/9702004 Algebraic Geometry +alg-geom/9702010 Algebraic Geometry +alg-geom/9702016 Algebraic Geometry +alg-geom/9703004 Algebraic Geometry +alg-geom/9703007 Algebraic Geometry +alg-geom/9703022 Algebraic Geometry +alg-geom/9703025 Algebraic Geometry +alg-geom/9704012 Algebraic Geometry +alg-geom/9706011 Algebraic Geometry +alg-geom/9707007 Algebraic Geometry +alg-geom/9708009 Algebraic Geometry +alg-geom/9708014 Algebraic Geometry +alg-geom/9709020 Algebraic Geometry +alg-geom/9709033 Algebraic Geometry +alg-geom/9709035 Algebraic Geometry +alg-geom/9710011 Algebraic Geometry +alg-geom/9711004 Algebraic Geometry +alg-geom/9711012 Algebraic Geometry +alg-geom/9712013 Algebraic Geometry +alg-geom/9712024 Algebraic Geometry +ao-sci/9502001 Atmospheric and Oceanic Physics +ao-sci/9502002 Atmospheric and Oceanic Physics +ao-sci/9503001 Atmospheric and Oceanic Physics +ao-sci/9509001 Atmospheric and Oceanic Physics +astro-ph/0001001 +astro-ph/0001008 +astro-ph/0001091 +astro-ph/0001207 +astro-ph/0001221 +astro-ph/0001279 +astro-ph/0001344 +astro-ph/0001364 +astro-ph/0001384 +astro-ph/0001493 +astro-ph/0002053 +astro-ph/0002054 +astro-ph/0002055 +astro-ph/0002067 +astro-ph/0002073 +astro-ph/0002127 +astro-ph/0002129 +astro-ph/0002182 +astro-ph/0002248 +astro-ph/0002260 +astro-ph/0002315 +astro-ph/0002423 +astro-ph/0002518 +astro-ph/0002525 +astro-ph/0003111 +astro-ph/0003149 +astro-ph/0003153 +astro-ph/0003246 +astro-ph/0003313 +astro-ph/0003396 +astro-ph/0003397 +astro-ph/0003411 +astro-ph/0004007 +astro-ph/0004023 +astro-ph/0004069 +astro-ph/0004114 +astro-ph/0004338 +astro-ph/0004342 +astro-ph/0004363 +astro-ph/0004400 +astro-ph/0005023 +astro-ph/0005065 +astro-ph/0005075 +astro-ph/0005102 +astro-ph/0005219 +astro-ph/0005318 +astro-ph/0005461 +astro-ph/0005488 +astro-ph/0005507 +astro-ph/0005516 +astro-ph/0005523 +astro-ph/0005549 +astro-ph/0005572 +astro-ph/0006014 +astro-ph/0006025 +astro-ph/0006054 +astro-ph/0006172 +astro-ph/0006220 +astro-ph/0006357 +astro-ph/0006450 +astro-ph/0007013 +astro-ph/0007042 +astro-ph/0007069 +astro-ph/0007088 +astro-ph/0007096 +astro-ph/0007146 +astro-ph/0007221 +astro-ph/0007223 +astro-ph/0007230 +astro-ph/0007284 +astro-ph/0007334 +astro-ph/0007368 +astro-ph/0007387 +astro-ph/0007394 +astro-ph/0007470 +astro-ph/0008098 +astro-ph/0008165 +astro-ph/0008201 +astro-ph/0008238 +astro-ph/0008274 +astro-ph/0008485 +astro-ph/0008516 +astro-ph/0009008 +astro-ph/0009139 +astro-ph/0009194 +astro-ph/0009222 +astro-ph/0009252 +astro-ph/0009287 +astro-ph/0009322 +astro-ph/0009429 +astro-ph/0010088 +astro-ph/0010096 +astro-ph/0010427 +astro-ph/0010523 +astro-ph/0010565 +astro-ph/0010602 +astro-ph/0010624 +astro-ph/0011054 +astro-ph/0011090 +astro-ph/0011111 +astro-ph/0011134 +astro-ph/0011144 +astro-ph/0011152 +astro-ph/0011203 +astro-ph/0011215 +astro-ph/0011240 +astro-ph/0011245 +astro-ph/0011262 +astro-ph/0011287 +astro-ph/0011298 +astro-ph/0011345 +astro-ph/0011383 +astro-ph/0011390 +astro-ph/0011391 +astro-ph/0011404 +astro-ph/0011474 +astro-ph/0011511 +astro-ph/0011535 +astro-ph/0011539 +astro-ph/0012072 +astro-ph/0012092 +astro-ph/0012098 +astro-ph/0012100 +astro-ph/0012216 +astro-ph/0012250 +astro-ph/0012368 +astro-ph/0012428 +astro-ph/0101139 +astro-ph/0101173 +astro-ph/0101217 +astro-ph/0101272 +astro-ph/0101279 +astro-ph/0101327 +astro-ph/0101330 +astro-ph/0101333 +astro-ph/0101374 +astro-ph/0101416 +astro-ph/0101434 +astro-ph/0101475 +astro-ph/0101493 +astro-ph/0101532 +astro-ph/0101540 +astro-ph/0101558 +astro-ph/0102025 +astro-ph/0102064 +astro-ph/0102096 +astro-ph/0102204 +astro-ph/0102279 +astro-ph/0102281 +astro-ph/0102299 +astro-ph/0102308 +astro-ph/0102379 +astro-ph/0102430 +astro-ph/0102431 +astro-ph/0102500 +astro-ph/0103054 +astro-ph/0103134 +astro-ph/0103171 +astro-ph/0103173 +astro-ph/0103189 +astro-ph/0103230 +astro-ph/0103291 +astro-ph/0103471 +astro-ph/0103516 +astro-ph/0104022 +astro-ph/0104150 +astro-ph/0104183 +astro-ph/0104273 +astro-ph/0104314 +astro-ph/0104321 +astro-ph/0104386 +astro-ph/0105016 +astro-ph/0105042 +astro-ph/0105050 +astro-ph/0105051 +astro-ph/0105053 +astro-ph/0105054 +astro-ph/0105057 +astro-ph/0105126 +astro-ph/0105150 +astro-ph/0105189 +astro-ph/0105236 +astro-ph/0105242 +astro-ph/0105251 +astro-ph/0105350 +astro-ph/0105413 +astro-ph/0105453 +astro-ph/0105483 +astro-ph/0105520 +astro-ph/0105561 +astro-ph/0106078 +astro-ph/0106095 +astro-ph/0106155 +astro-ph/0106164 +astro-ph/0106179 +astro-ph/0106195 +astro-ph/0106222 +astro-ph/0106232 +astro-ph/0106236 +astro-ph/0106254 +astro-ph/0106324 +astro-ph/0106333 +astro-ph/0106360 +astro-ph/0106418 +astro-ph/0106422 +astro-ph/0106452 +astro-ph/0106465 +astro-ph/0107003 +astro-ph/0107044 +astro-ph/0107051 +astro-ph/0107099 +astro-ph/0107152 +astro-ph/0107173 +astro-ph/0107329 +astro-ph/0107397 +astro-ph/0107407 +astro-ph/0107455 +astro-ph/0107492 +astro-ph/0107494 +astro-ph/0108010 +astro-ph/0108132 +astro-ph/0108240 +astro-ph/0108248 +astro-ph/0108281 +astro-ph/0108376 +astro-ph/0108414 +astro-ph/0108417 +astro-ph/0108446 +astro-ph/0108503 +astro-ph/0109013 +astro-ph/0109083 +astro-ph/0109087 +astro-ph/0109154 +astro-ph/0109293 +astro-ph/0109302 +astro-ph/0109391 +astro-ph/0109428 +astro-ph/0109531 +astro-ph/0110010 +astro-ph/0110011 +astro-ph/0110026 +astro-ph/0110066 +astro-ph/0110105 +astro-ph/0110113 +astro-ph/0110152 +astro-ph/0110183 +astro-ph/0110191 +astro-ph/0110280 +astro-ph/0110292 +astro-ph/0110359 +astro-ph/0110443 +astro-ph/0110462 +astro-ph/0110479 +astro-ph/0110568 +astro-ph/0110614 +astro-ph/0110624 +astro-ph/0110691 +astro-ph/0111055 +astro-ph/0111064 +astro-ph/0111107 +astro-ph/0111108 +astro-ph/0111127 +astro-ph/0111181 +astro-ph/0111236 +astro-ph/0111270 +astro-ph/0111408 +astro-ph/0111433 +astro-ph/0111435 +astro-ph/0111548 +astro-ph/0111560 +astro-ph/0112075 +astro-ph/0112108 +astro-ph/0112158 +astro-ph/0112212 +astro-ph/0112445 +astro-ph/0201023 +astro-ph/0201044 +astro-ph/0201071 +astro-ph/0201087 +astro-ph/0201102 +astro-ph/0201168 +astro-ph/0201174 +astro-ph/0201235 +astro-ph/0201281 +astro-ph/0201474 +astro-ph/0202011 +astro-ph/0202018 +astro-ph/0202093 +astro-ph/0202106 +astro-ph/0202142 +astro-ph/0202189 +astro-ph/0202313 +astro-ph/0202524 +astro-ph/0203025 +astro-ph/0203058 +astro-ph/0203231 +astro-ph/0203314 +astro-ph/0203354 +astro-ph/0203363 +astro-ph/0203367 +astro-ph/0203382 +astro-ph/0203398 +astro-ph/0203404 +astro-ph/0203408 +astro-ph/0203451 +astro-ph/0204057 +astro-ph/0204151 +astro-ph/0204173 +astro-ph/0204222 +astro-ph/0204271 +astro-ph/0204361 +astro-ph/0204407 +astro-ph/0204436 +astro-ph/0204455 +astro-ph/0204459 +astro-ph/0204460 +astro-ph/0204481 +astro-ph/0204514 +astro-ph/0205031 +astro-ph/0205055 +astro-ph/0205077 +astro-ph/0205118 +astro-ph/0205120 +astro-ph/0205169 +astro-ph/0205208 +astro-ph/0205211 +astro-ph/0205229 +astro-ph/0205279 +astro-ph/0205282 +astro-ph/0205284 +astro-ph/0205298 +astro-ph/0205341 +astro-ph/0205389 +astro-ph/0205402 +astro-ph/0205549 +astro-ph/0206016 +astro-ph/0206026 +astro-ph/0206051 +astro-ph/0206099 +astro-ph/0206126 +astro-ph/0206208 +astro-ph/0206219 +astro-ph/0206232 +astro-ph/0206278 +astro-ph/0206283 +astro-ph/0207004 +astro-ph/0207078 +astro-ph/0207112 +astro-ph/0207116 +astro-ph/0207119 +astro-ph/0207223 +astro-ph/0207283 +astro-ph/0207425 +astro-ph/0207470 +astro-ph/0207529 +astro-ph/0207552 +astro-ph/0207635 +astro-ph/0207649 +astro-ph/0208073 +astro-ph/0208101 +astro-ph/0208195 +astro-ph/0208321 +astro-ph/0208439 +astro-ph/0208511 +astro-ph/0208516 +astro-ph/0209096 +astro-ph/0209115 +astro-ph/0209271 +astro-ph/0209389 +astro-ph/0209399 +astro-ph/0209421 +astro-ph/0209485 +astro-ph/0209486 +astro-ph/0209507 +astro-ph/0209560 +astro-ph/0210063 +astro-ph/0210194 +astro-ph/0210320 +astro-ph/0210390 +astro-ph/0210578 +astro-ph/0210589 +astro-ph/0210609 +astro-ph/0210626 +astro-ph/0211182 +astro-ph/0211338 +astro-ph/0211370 +astro-ph/0211489 +astro-ph/0211579 +astro-ph/0212026 +astro-ph/0212068 +astro-ph/0212138 +astro-ph/0212250 +astro-ph/0212268 +astro-ph/0212292 +astro-ph/0212342 +astro-ph/0212437 +astro-ph/0212468 +astro-ph/0212515 +astro-ph/0212540 +astro-ph/0212563 +astro-ph/0212576 +astro-ph/0301074 +astro-ph/0301078 +astro-ph/0301080 +astro-ph/0301189 +astro-ph/0301218 +astro-ph/0301242 +astro-ph/0301255 +astro-ph/0301269 +astro-ph/0301274 +astro-ph/0301357 +astro-ph/0301428 +astro-ph/0301429 +astro-ph/0301462 +astro-ph/0301562 +astro-ph/0301568 +astro-ph/0301611 +astro-ph/0302033 +astro-ph/0302137 +astro-ph/0302150 +astro-ph/0302251 +astro-ph/0302291 +astro-ph/0302330 +astro-ph/0302337 +astro-ph/0302393 +astro-ph/0302441 +astro-ph/0302509 +astro-ph/0302524 +astro-ph/0302536 +astro-ph/0303004 +astro-ph/0303123 +astro-ph/0303135 +astro-ph/0303172 +astro-ph/0303204 +astro-ph/0303255 +astro-ph/0303383 +astro-ph/0303443 +astro-ph/0303476 +astro-ph/0303509 +astro-ph/0304141 +astro-ph/0304256 +astro-ph/0304266 +astro-ph/0304438 +astro-ph/0304494 +astro-ph/0304518 +astro-ph/0305012 +astro-ph/0305016 +astro-ph/0305036 +astro-ph/0305139 +astro-ph/0305233 +astro-ph/0305267 +astro-ph/0305273 +astro-ph/0305350 +astro-ph/0305403 +astro-ph/0305405 +astro-ph/0305412 +astro-ph/0305451 +astro-ph/0305488 +astro-ph/0305595 +astro-ph/0306007 +astro-ph/0306017 +astro-ph/0306031 +astro-ph/0306098 +astro-ph/0306177 +astro-ph/0306227 +astro-ph/0306387 +astro-ph/0306430 +astro-ph/0306505 +astro-ph/0306522 +astro-ph/0306549 +astro-ph/0306617 +astro-ph/0306629 +astro-ph/0307054 +astro-ph/0307347 +astro-ph/0307442 +astro-ph/0307526 +astro-ph/0308165 +astro-ph/0308178 +astro-ph/0308185 +astro-ph/0308273 +astro-ph/0308323 +astro-ph/0308479 +astro-ph/0309146 +astro-ph/0309148 +astro-ph/0309320 +astro-ph/0309410 +astro-ph/0309630 +astro-ph/0309631 +astro-ph/0309690 +astro-ph/0309785 +astro-ph/0310027 +astro-ph/0310126 +astro-ph/0310173 +astro-ph/0310200 +astro-ph/0310361 +astro-ph/0310669 +astro-ph/0310789 +astro-ph/0310839 +astro-ph/0310885 +astro-ph/0310901 +astro-ph/0311095 +astro-ph/0311287 +astro-ph/0311312 +astro-ph/0311348 +astro-ph/0311459 +astro-ph/0311462 +astro-ph/0311474 +astro-ph/0311630 +astro-ph/0312038 +astro-ph/0312040 +astro-ph/0312074 +astro-ph/0312248 +astro-ph/0312262 +astro-ph/0312263 +astro-ph/0312333 +astro-ph/0312364 +astro-ph/0312472 +astro-ph/0312638 +astro-ph/0401082 +astro-ph/0401231 +astro-ph/0401245 +astro-ph/0401316 +astro-ph/0401317 +astro-ph/0401392 +astro-ph/0401416 +astro-ph/0401417 +astro-ph/0401469 +astro-ph/0401489 +astro-ph/0401505 +astro-ph/0401511 +astro-ph/0402009 +astro-ph/0402010 +astro-ph/0402035 +astro-ph/0402051 +astro-ph/0402114 +astro-ph/0402119 +astro-ph/0402145 +astro-ph/0402148 +astro-ph/0402202 +astro-ph/0402265 +astro-ph/0402317 +astro-ph/0402326 +astro-ph/0402368 +astro-ph/0402497 +astro-ph/0402500 +astro-ph/0402622 +astro-ph/0403018 +astro-ph/0403027 +astro-ph/0403076 +astro-ph/0403108 +astro-ph/0403196 +astro-ph/0403253 +astro-ph/0403293 +astro-ph/0403329 +astro-ph/0403393 +astro-ph/0403442 +astro-ph/0403475 +astro-ph/0403488 +astro-ph/0403492 +astro-ph/0403647 +astro-ph/0403689 +astro-ph/0404069 +astro-ph/0404105 +astro-ph/0404115 +astro-ph/0404340 +astro-ph/0404385 +astro-ph/0404387 +astro-ph/0404515 +astro-ph/0404588 +astro-ph/0405111 +astro-ph/0405272 +astro-ph/0405428 +astro-ph/0405559 +astro-ph/0405571 +astro-ph/0405593 +astro-ph/0405622 +astro-ph/0405632 +astro-ph/0406027 +astro-ph/0406066 +astro-ph/0406204 +astro-ph/0406453 +astro-ph/0406465 +astro-ph/0406538 +astro-ph/0406631 +astro-ph/0406642 +astro-ph/0406672 +astro-ph/0407176 +astro-ph/0407188 +astro-ph/0407196 +astro-ph/0407270 +astro-ph/0407309 +astro-ph/0407314 +astro-ph/0407407 +astro-ph/0407497 +astro-ph/0407533 +astro-ph/0407592 +astro-ph/0408044 +astro-ph/0408137 +astro-ph/0408174 +astro-ph/0408303 +astro-ph/0408314 +astro-ph/0408373 +astro-ph/0408460 +astro-ph/0408546 +astro-ph/0409030 +astro-ph/0409049 +astro-ph/0409055 +astro-ph/0409079 +astro-ph/0409082 +astro-ph/0409127 +astro-ph/0409159 +astro-ph/0409196 +astro-ph/0409547 +astro-ph/0409578 +astro-ph/0409609 +astro-ph/0409664 +astro-ph/0409737 +astro-ph/0409768 +astro-ph/0410043 +astro-ph/0410055 +astro-ph/0410098 +astro-ph/0410125 +astro-ph/0410168 +astro-ph/0410347 +astro-ph/0410368 +astro-ph/0410463 +astro-ph/0410670 +astro-ph/0410711 +astro-ph/0411017 +astro-ph/0411031 +astro-ph/0411113 +astro-ph/0411126 +astro-ph/0411138 +astro-ph/0411139 +astro-ph/0411164 +astro-ph/0411195 +astro-ph/0411391 +astro-ph/0411418 +astro-ph/0411517 +astro-ph/0411518 +astro-ph/0411568 +astro-ph/0411608 +astro-ph/0411611 +astro-ph/0411626 +astro-ph/0411746 +astro-ph/0411805 +astro-ph/0412049 +astro-ph/0412082 +astro-ph/0412094 +astro-ph/0412151 +astro-ph/0412267 +astro-ph/0412362 +astro-ph/0412370 +astro-ph/0412513 +astro-ph/0501135 +astro-ph/0501243 +astro-ph/0501244 +astro-ph/0501307 +astro-ph/0501381 +astro-ph/0501387 +astro-ph/0501565 +astro-ph/0502017 +astro-ph/0502175 +astro-ph/0502238 +astro-ph/0502284 +astro-ph/0502398 +astro-ph/0503127 +astro-ph/0503153 +astro-ph/0503198 +astro-ph/0503219 +astro-ph/0503237 +astro-ph/0503262 +astro-ph/0503283 +astro-ph/0503291 +astro-ph/0503477 +astro-ph/0503478 +astro-ph/0503494 +astro-ph/0503596 +astro-ph/0503637 +astro-ph/0503657 +astro-ph/0503665 +astro-ph/0503695 +astro-ph/0504007 +astro-ph/0504108 +astro-ph/0504155 +astro-ph/0504170 +astro-ph/0504218 +astro-ph/0504228 +astro-ph/0504249 +astro-ph/0504259 +astro-ph/0504340 +astro-ph/0504366 +astro-ph/0504526 +astro-ph/0504579 +astro-ph/0504635 +astro-ph/0505056 +astro-ph/0505140 +astro-ph/0505163 +astro-ph/0505164 +astro-ph/0505179 +astro-ph/0505274 +astro-ph/0505275 +astro-ph/0505396 +astro-ph/0505402 +astro-ph/0505472 +astro-ph/0505537 +astro-ph/0505569 +astro-ph/0505588 +astro-ph/0505599 +astro-ph/0505621 +astro-ph/0506018 +astro-ph/0506048 +astro-ph/0506231 +astro-ph/0506292 +astro-ph/0506363 +astro-ph/0506370 +astro-ph/0506428 +astro-ph/0506450 +astro-ph/0506523 +astro-ph/0506577 +astro-ph/0506579 +astro-ph/0506584 +astro-ph/0506606 +astro-ph/0506622 +astro-ph/0506669 +astro-ph/0507002 +astro-ph/0507018 +astro-ph/0507027 +astro-ph/0507043 +astro-ph/0507061 +astro-ph/0507076 +astro-ph/0507093 +astro-ph/0507128 +astro-ph/0507133 +astro-ph/0507145 +astro-ph/0507178 +astro-ph/0507287 +astro-ph/0507316 +astro-ph/0507375 +astro-ph/0507395 +astro-ph/0507463 +astro-ph/0507549 +astro-ph/0507554 +astro-ph/0507609 +astro-ph/0507656 +astro-ph/0507691 +astro-ph/0508006 +astro-ph/0508008 +astro-ph/0508015 +astro-ph/0508150 +astro-ph/0508223 +astro-ph/0508224 +astro-ph/0508284 +astro-ph/0508337 +astro-ph/0508410 +astro-ph/0508504 +astro-ph/0508512 +astro-ph/0508582 +astro-ph/0508644 +astro-ph/0509001 +astro-ph/0509074 +astro-ph/0509088 +astro-ph/0509159 +astro-ph/0509161 +astro-ph/0509182 +astro-ph/0509248 +astro-ph/0509292 +astro-ph/0509299 +astro-ph/0509302 +astro-ph/0509316 +astro-ph/0509385 +astro-ph/0509399 +astro-ph/0509404 +astro-ph/0509414 +astro-ph/0509533 +astro-ph/0509572 +astro-ph/0509576 +astro-ph/0509578 +astro-ph/0509588 +astro-ph/0509601 +astro-ph/0509605 +astro-ph/0509606 +astro-ph/0509607 +astro-ph/0509619 +astro-ph/0509623 +astro-ph/0509625 +astro-ph/0509628 +astro-ph/0509634 +astro-ph/0509638 +astro-ph/0509647 +astro-ph/0509649 +astro-ph/0509654 +astro-ph/0509658 +astro-ph/0509661 +astro-ph/0509663 +astro-ph/0509671 +astro-ph/0509672 +astro-ph/0509679 +astro-ph/0509681 +astro-ph/0509684 +astro-ph/0509687 +astro-ph/0509694 +astro-ph/0509698 +astro-ph/0509704 +astro-ph/0509705 +astro-ph/0509706 +astro-ph/0509708 +astro-ph/0509710 +astro-ph/0509712 +astro-ph/0509721 +astro-ph/0509730 +astro-ph/0509739 +astro-ph/0509748 +astro-ph/0509756 +astro-ph/0509759 +astro-ph/0509763 +astro-ph/0509764 +astro-ph/0509768 +astro-ph/0509771 +astro-ph/0509772 +astro-ph/0509780 +astro-ph/0509783 +astro-ph/0509785 +astro-ph/0509798 +astro-ph/0509815 +astro-ph/0509818 +astro-ph/0509823 +astro-ph/0509825 +astro-ph/0509827 +astro-ph/0509846 +astro-ph/0509851 +astro-ph/0509855 +astro-ph/0509858 +astro-ph/0509859 +astro-ph/0509861 +astro-ph/0509862 +astro-ph/0509866 +astro-ph/0509867 +astro-ph/0509869 +astro-ph/0509876 +astro-ph/0509879 +astro-ph/0509883 +astro-ph/0509884 +astro-ph/0509886 +astro-ph/0509894 +astro-ph/0509896 +astro-ph/0509898 +astro-ph/0509899 +astro-ph/0509900 +astro-ph/0509901 +astro-ph/0509906 +astro-ph/0509907 +astro-ph/0509910 +astro-ph/0510001 +astro-ph/0510005 +astro-ph/0510008 +astro-ph/0510009 +astro-ph/0510011 +astro-ph/0510012 +astro-ph/0510019 +astro-ph/0510023 +astro-ph/0510025 +astro-ph/0510034 +astro-ph/0510040 +astro-ph/0510043 +astro-ph/0510045 +astro-ph/0510046 +astro-ph/0510047 +astro-ph/0510048 +astro-ph/0510053 +astro-ph/0510054 +astro-ph/0510056 +astro-ph/0510058 +astro-ph/0510060 +astro-ph/0510062 +astro-ph/0510065 +astro-ph/0510067 +astro-ph/0510072 +astro-ph/0510075 +astro-ph/0510077 +astro-ph/0510079 +astro-ph/0510080 +astro-ph/0510082 +astro-ph/0510083 +astro-ph/0510084 +astro-ph/0510086 +astro-ph/0510090 +astro-ph/0510091 +astro-ph/0510094 +astro-ph/0510096 +astro-ph/0510098 +astro-ph/0510099 +astro-ph/0510103 +astro-ph/0510113 +astro-ph/0510115 +astro-ph/0510119 +astro-ph/0510123 +astro-ph/0510126 +astro-ph/0510128 +astro-ph/0510130 +astro-ph/0510132 +astro-ph/0510134 +astro-ph/0510135 +astro-ph/0510145 +astro-ph/0510146 +astro-ph/0510150 +astro-ph/0510154 +astro-ph/0510155 +astro-ph/0510157 +astro-ph/0510159 +astro-ph/0510161 +astro-ph/0510163 +astro-ph/0510165 +astro-ph/0510167 +astro-ph/0510168 +astro-ph/0510169 +astro-ph/0510170 +astro-ph/0510172 +astro-ph/0510175 +astro-ph/0510177 +astro-ph/0510179 +astro-ph/0510180 +astro-ph/0510181 +astro-ph/0510187 +astro-ph/0510189 +astro-ph/0510191 +astro-ph/0510307 +astro-ph/0510327 +astro-ph/0510761 +astro-ph/0510778 +astro-ph/0511047 +astro-ph/0511111 +astro-ph/0511171 +astro-ph/0511260 +astro-ph/0512214 +astro-ph/0512250 +astro-ph/0512400 +astro-ph/0601165 +astro-ph/0601217 +astro-ph/0601245 +astro-ph/0601319 +astro-ph/0601443 +astro-ph/0602052 +astro-ph/0602132 +astro-ph/0602200 +astro-ph/0602511 +astro-ph/0602516 +astro-ph/0603009 +astro-ph/0603135 +astro-ph/0603341 +astro-ph/0603426 +astro-ph/0603555 +astro-ph/0603558 +astro-ph/0603633 +astro-ph/0604031 +astro-ph/0604044 +astro-ph/0604516 +astro-ph/0604520 +astro-ph/0605084 +astro-ph/0605164 +astro-ph/0605206 +astro-ph/0605248 +astro-ph/0605257 +astro-ph/0605261 +astro-ph/0605318 +astro-ph/0605360 +astro-ph/0605553 +astro-ph/0605585 +astro-ph/0605700 +astro-ph/0606267 +astro-ph/0606315 +astro-ph/0606493 +astro-ph/0606747 +astro-ph/0606749 +astro-ph/0607149 +astro-ph/0607224 +astro-ph/0608418 +astro-ph/0608485 +astro-ph/0608511 +astro-ph/0608580 +astro-ph/0608595 +astro-ph/0608615 +astro-ph/0608653 +astro-ph/0608694 +astro-ph/0609093 +astro-ph/9303009 +astro-ph/9306018 +astro-ph/9307024 +astro-ph/9311024 +astro-ph/9312004 +astro-ph/9401019 +astro-ph/9405014 +astro-ph/9406051 +astro-ph/9406056 +astro-ph/9406064 +astro-ph/9407046 +astro-ph/9408005 +astro-ph/9409040 +astro-ph/9411034 +astro-ph/9411039 +astro-ph/9412082 +astro-ph/9501003 +astro-ph/9501004 +astro-ph/9501006 +astro-ph/9501009 +astro-ph/9501010 +astro-ph/9501011 +astro-ph/9501014 +astro-ph/9501015 +astro-ph/9501016 +astro-ph/9501017 +astro-ph/9501018 +astro-ph/9501019 +astro-ph/9501021 +astro-ph/9501022 +astro-ph/9501023 +astro-ph/9501024 +astro-ph/9501025 +astro-ph/9501027 +astro-ph/9501028 +astro-ph/9501030 +astro-ph/9501031 +astro-ph/9501032 +astro-ph/9501033 +astro-ph/9501034 +astro-ph/9501035 +astro-ph/9501036 +astro-ph/9501037 +astro-ph/9501038 +astro-ph/9501039 +astro-ph/9501043 +astro-ph/9501044 +astro-ph/9501046 +astro-ph/9501052 +astro-ph/9501053 +astro-ph/9501055 +astro-ph/9501056 +astro-ph/9501058 +astro-ph/9501059 +astro-ph/9501062 +astro-ph/9501063 +astro-ph/9501067 +astro-ph/9501068 +astro-ph/9501069 +astro-ph/9501070 +astro-ph/9501075 +astro-ph/9501076 +astro-ph/9501079 +astro-ph/9501080 +astro-ph/9501082 +astro-ph/9501085 +astro-ph/9501086 +astro-ph/9501090 +astro-ph/9501091 +astro-ph/9501095 +astro-ph/9501096 +astro-ph/9501099 +astro-ph/9501106 +astro-ph/9501107 +astro-ph/9501109 +astro-ph/9501110 +astro-ph/9501112 +astro-ph/9501114 +astro-ph/9502003 +astro-ph/9502005 +astro-ph/9502007 +astro-ph/9502008 +astro-ph/9502009 +astro-ph/9502011 +astro-ph/9502013 +astro-ph/9502016 +astro-ph/9502018 +astro-ph/9502021 +astro-ph/9502023 +astro-ph/9502024 +astro-ph/9502025 +astro-ph/9502028 +astro-ph/9502029 +astro-ph/9502030 +astro-ph/9502038 +astro-ph/9502042 +astro-ph/9502043 +astro-ph/9502044 +astro-ph/9502045 +astro-ph/9502047 +astro-ph/9502048 +astro-ph/9502049 +astro-ph/9502051 +astro-ph/9502053 +astro-ph/9502054 +astro-ph/9502055 +astro-ph/9502056 +astro-ph/9502057 +astro-ph/9502058 +astro-ph/9502060 +astro-ph/9502062 +astro-ph/9502063 +astro-ph/9502064 +astro-ph/9502065 +astro-ph/9502067 +astro-ph/9502070 +astro-ph/9502072 +astro-ph/9502074 +astro-ph/9502075 +astro-ph/9502076 +astro-ph/9502077 +astro-ph/9502079 +astro-ph/9502080 +astro-ph/9502081 +astro-ph/9502082 +astro-ph/9502083 +astro-ph/9502084 +astro-ph/9502086 +astro-ph/9502090 +astro-ph/9502091 +astro-ph/9502095 +astro-ph/9502097 +astro-ph/9502098 +astro-ph/9502100 +astro-ph/9502101 +astro-ph/9502102 +astro-ph/9502104 +astro-ph/9502105 +astro-ph/9503003 +astro-ph/9503004 +astro-ph/9503005 +astro-ph/9503006 +astro-ph/9503007 +astro-ph/9503009 +astro-ph/9503010 +astro-ph/9503012 +astro-ph/9503013 +astro-ph/9503016 +astro-ph/9503018 +astro-ph/9503020 +astro-ph/9503023 +astro-ph/9503027 +astro-ph/9503028 +astro-ph/9503029 +astro-ph/9503030 +astro-ph/9503031 +astro-ph/9503032 +astro-ph/9503034 +astro-ph/9503035 +astro-ph/9503038 +astro-ph/9503039 +astro-ph/9503040 +astro-ph/9503043 +astro-ph/9503044 +astro-ph/9503045 +astro-ph/9503046 +astro-ph/9503048 +astro-ph/9503051 +astro-ph/9503053 +astro-ph/9503056 +astro-ph/9503057 +astro-ph/9503058 +astro-ph/9503059 +astro-ph/9503061 +astro-ph/9503062 +astro-ph/9503063 +astro-ph/9503064 +astro-ph/9503065 +astro-ph/9503068 +astro-ph/9503072 +astro-ph/9503073 +astro-ph/9503119 +astro-ph/9504012 +astro-ph/9504073 +astro-ph/9504092 +astro-ph/9505004 +astro-ph/9505010 +astro-ph/9505073 +astro-ph/9505092 +astro-ph/9505096 +astro-ph/9505108 +astro-ph/9505114 +astro-ph/9505122 +astro-ph/9505139 +astro-ph/9506017 +astro-ph/9506032 +astro-ph/9506035 +astro-ph/9506050 +astro-ph/9506070 +astro-ph/9506083 +astro-ph/9507011 +astro-ph/9507014 +astro-ph/9507018 +astro-ph/9507057 +astro-ph/9507084 +astro-ph/9507102 +astro-ph/9508006 +astro-ph/9508035 +astro-ph/9508041 +astro-ph/9508058 +astro-ph/9508099 +astro-ph/9508120 +astro-ph/9508123 +astro-ph/9508144 +astro-ph/9509011 +astro-ph/9509031 +astro-ph/9509111 +astro-ph/9509112 +astro-ph/9509144 +astro-ph/9509152 +astro-ph/9510031 +astro-ph/9510053 +astro-ph/9510071 +astro-ph/9510090 +astro-ph/9510127 +astro-ph/9510134 +astro-ph/9511001 +astro-ph/9511023 +astro-ph/9511026 +astro-ph/9511045 +astro-ph/9511077 +astro-ph/9511100 +astro-ph/9511102 +astro-ph/9511121 +astro-ph/9511123 +astro-ph/9511125 +astro-ph/9511132 +astro-ph/9511141 +astro-ph/9512033 +astro-ph/9512081 +astro-ph/9512091 +astro-ph/9512132 +astro-ph/9601074 +astro-ph/9601095 +astro-ph/9601149 +astro-ph/9601151 +astro-ph/9601155 +astro-ph/9602002 +astro-ph/9602014 +astro-ph/9602017 +astro-ph/9602025 +astro-ph/9602041 +astro-ph/9602064 +astro-ph/9602078 +astro-ph/9602087 +astro-ph/9602120 +astro-ph/9602157 +astro-ph/9603028 +astro-ph/9603060 +astro-ph/9603068 +astro-ph/9603076 +astro-ph/9603082 +astro-ph/9603086 +astro-ph/9603091 +astro-ph/9603100 +astro-ph/9603113 +astro-ph/9603119 +astro-ph/9603120 +astro-ph/9603126 +astro-ph/9604052 +astro-ph/9604063 +astro-ph/9604076 +astro-ph/9604090 +astro-ph/9604107 +astro-ph/9604151 +astro-ph/9604152 +astro-ph/9605034 +astro-ph/9605038 +astro-ph/9605184 +astro-ph/9606003 +astro-ph/9606039 +astro-ph/9606068 +astro-ph/9606132 +astro-ph/9607036 +astro-ph/9607144 +astro-ph/9608020 +astro-ph/9608050 +astro-ph/9608105 +astro-ph/9608116 +astro-ph/9608117 +astro-ph/9608119 +astro-ph/9608150 +astro-ph/9608183 +astro-ph/9608193 +astro-ph/9608202 +astro-ph/9609001 +astro-ph/9609005 +astro-ph/9609031 +astro-ph/9609040 +astro-ph/9609070 +astro-ph/9609075 +astro-ph/9609077 +astro-ph/9609083 +astro-ph/9609089 +astro-ph/9609093 +astro-ph/9609094 +astro-ph/9609115 +astro-ph/9609128 +astro-ph/9609130 +astro-ph/9609143 +astro-ph/9609146 +astro-ph/9609160 +astro-ph/9609163 +astro-ph/9609176 +astro-ph/9609181 +astro-ph/9609183 +astro-ph/9610018 +astro-ph/9610029 +astro-ph/9610030 +astro-ph/9610044 +astro-ph/9610056 +astro-ph/9610058 +astro-ph/9610063 +astro-ph/9610078 +astro-ph/9610101 +astro-ph/9610105 +astro-ph/9610107 +astro-ph/9610123 +astro-ph/9610132 +astro-ph/9610170 +astro-ph/9610178 +astro-ph/9610185 +astro-ph/9610204 +astro-ph/9610230 +astro-ph/9610258 +astro-ph/9611012 +astro-ph/9611015 +astro-ph/9611020 +astro-ph/9611060 +astro-ph/9611068 +astro-ph/9611070 +astro-ph/9611089 +astro-ph/9611112 +astro-ph/9611121 +astro-ph/9611122 +astro-ph/9611123 +astro-ph/9611138 +astro-ph/9611152 +astro-ph/9611177 +astro-ph/9611178 +astro-ph/9611179 +astro-ph/9611185 +astro-ph/9611197 +astro-ph/9611204 +astro-ph/9612007 +astro-ph/9612009 +astro-ph/9612020 +astro-ph/9612041 +astro-ph/9612057 +astro-ph/9612059 +astro-ph/9612062 +astro-ph/9612072 +astro-ph/9612077 +astro-ph/9612080 +astro-ph/9612081 +astro-ph/9612091 +astro-ph/9612095 +astro-ph/9612101 +astro-ph/9612103 +astro-ph/9612162 +astro-ph/9612174 +astro-ph/9612182 +astro-ph/9612202 +astro-ph/9612243 +astro-ph/9701001 +astro-ph/9701002 +astro-ph/9701003 +astro-ph/9701007 +astro-ph/9701019 +astro-ph/9701024 +astro-ph/9701036 +astro-ph/9701039 +astro-ph/9701041 +astro-ph/9701052 +astro-ph/9701063 +astro-ph/9701068 +astro-ph/9701092 +astro-ph/9701100 +astro-ph/9701109 +astro-ph/9701113 +astro-ph/9701120 +astro-ph/9701126 +astro-ph/9701134 +astro-ph/9701163 +astro-ph/9701169 +astro-ph/9701174 +astro-ph/9701178 +astro-ph/9701204 +astro-ph/9701217 +astro-ph/9701228 +astro-ph/9702005 +astro-ph/9702016 +astro-ph/9702049 +astro-ph/9702087 +astro-ph/9702102 +astro-ph/9702103 +astro-ph/9702124 +astro-ph/9702125 +astro-ph/9702142 +astro-ph/9702174 +astro-ph/9702223 +astro-ph/9702225 +astro-ph/9702233 +astro-ph/9703015 +astro-ph/9703025 +astro-ph/9703031 +astro-ph/9703035 +astro-ph/9703037 +astro-ph/9703062 +astro-ph/9703073 +astro-ph/9703074 +astro-ph/9703112 +astro-ph/9703122 +astro-ph/9703189 +astro-ph/9703191 +astro-ph/9703199 +astro-ph/9704022 +astro-ph/9704038 +astro-ph/9704066 +astro-ph/9704079 +astro-ph/9704080 +astro-ph/9704105 +astro-ph/9704139 +astro-ph/9704156 +astro-ph/9704160 +astro-ph/9704212 +astro-ph/9704224 +astro-ph/9704243 +astro-ph/9704244 +astro-ph/9704260 +astro-ph/9705014 +astro-ph/9705015 +astro-ph/9705027 +astro-ph/9705040 +astro-ph/9705061 +astro-ph/9705063 +astro-ph/9705065 +astro-ph/9705067 +astro-ph/9705071 +astro-ph/9705096 +astro-ph/9705097 +astro-ph/9705124 +astro-ph/9705148 +astro-ph/9705182 +astro-ph/9705197 +astro-ph/9705205 +astro-ph/9705221 +astro-ph/9706004 +astro-ph/9706014 +astro-ph/9706049 +astro-ph/9706168 +astro-ph/9706208 +astro-ph/9706257 +astro-ph/9706274 +astro-ph/9707007 +astro-ph/9707019 +astro-ph/9707022 +astro-ph/9707075 +astro-ph/9707117 +astro-ph/9707204 +astro-ph/9707251 +astro-ph/9707284 +astro-ph/9707308 +astro-ph/9708104 +astro-ph/9708124 +astro-ph/9708169 +astro-ph/9708196 +astro-ph/9709002 +astro-ph/9709029 +astro-ph/9709035 +astro-ph/9709037 +astro-ph/9709075 +astro-ph/9709118 +astro-ph/9709142 +astro-ph/9709219 +astro-ph/9709233 +astro-ph/9709243 +astro-ph/9710047 +astro-ph/9710077 +astro-ph/9710191 +astro-ph/9710196 +astro-ph/9710197 +astro-ph/9710245 +astro-ph/9710341 +astro-ph/9710347 +astro-ph/9711020 +astro-ph/9711037 +astro-ph/9711065 +astro-ph/9711169 +astro-ph/9711235 +astro-ph/9711255 +astro-ph/9711303 +astro-ph/9712029 +astro-ph/9712052 +astro-ph/9712137 +astro-ph/9712208 +astro-ph/9712287 +astro-ph/9712304 +astro-ph/9712316 +astro-ph/9801007 +astro-ph/9801030 +astro-ph/9801031 +astro-ph/9801061 +astro-ph/9801115 +astro-ph/9801120 +astro-ph/9801151 +astro-ph/9801203 +astro-ph/9801237 +astro-ph/9802015 +astro-ph/9802016 +astro-ph/9802020 +astro-ph/9802196 +astro-ph/9802286 +astro-ph/9802301 +astro-ph/9803002 +astro-ph/9803006 +astro-ph/9803080 +astro-ph/9803127 +astro-ph/9803147 +astro-ph/9803219 +astro-ph/9803222 +astro-ph/9803231 +astro-ph/9803290 +astro-ph/9803302 +astro-ph/9803339 +astro-ph/9804023 +astro-ph/9804047 +astro-ph/9804048 +astro-ph/9804082 +astro-ph/9804086 +astro-ph/9804111 +astro-ph/9804121 +astro-ph/9804124 +astro-ph/9804181 +astro-ph/9804185 +astro-ph/9804188 +astro-ph/9804189 +astro-ph/9804190 +astro-ph/9804227 +astro-ph/9804232 +astro-ph/9804237 +astro-ph/9804252 +astro-ph/9804258 +astro-ph/9804267 +astro-ph/9804278 +astro-ph/9804314 +astro-ph/9804330 +astro-ph/9804332 +astro-ph/9805069 +astro-ph/9805144 +astro-ph/9805192 +astro-ph/9805195 +astro-ph/9805207 +astro-ph/9805223 +astro-ph/9805266 +astro-ph/9805268 +astro-ph/9805290 +astro-ph/9805299 +astro-ph/9805344 +astro-ph/9805346 +astro-ph/9806016 +astro-ph/9806051 +astro-ph/9806106 +astro-ph/9806162 +astro-ph/9806170 +astro-ph/9806178 +astro-ph/9806210 +astro-ph/9806214 +astro-ph/9806238 +astro-ph/9806294 +astro-ph/9806318 +astro-ph/9806322 +astro-ph/9806374 +astro-ph/9806392 +astro-ph/9807017 +astro-ph/9807036 +astro-ph/9807086 +astro-ph/9807102 +astro-ph/9807170 +astro-ph/9807185 +astro-ph/9807226 +astro-ph/9807235 +astro-ph/9807266 +astro-ph/9807296 +astro-ph/9807319 +astro-ph/9807321 +astro-ph/9807323 +astro-ph/9807333 +astro-ph/9808046 +astro-ph/9808079 +astro-ph/9808173 +astro-ph/9808220 +astro-ph/9808252 +astro-ph/9808258 +astro-ph/9808327 +astro-ph/9808330 +astro-ph/9809008 +astro-ph/9809020 +astro-ph/9809056 +astro-ph/9809090 +astro-ph/9809111 +astro-ph/9809117 +astro-ph/9809137 +astro-ph/9809218 +astro-ph/9809244 +astro-ph/9809263 +astro-ph/9809285 +astro-ph/9809366 +astro-ph/9809383 +astro-ph/9809398 +astro-ph/9810045 +astro-ph/9810066 +astro-ph/9810097 +astro-ph/9810277 +astro-ph/9810305 +astro-ph/9810368 +astro-ph/9810400 +astro-ph/9810420 +astro-ph/9810422 +astro-ph/9811002 +astro-ph/9811016 +astro-ph/9811037 +astro-ph/9811042 +astro-ph/9811047 +astro-ph/9811064 +astro-ph/9811080 +astro-ph/9811114 +astro-ph/9811117 +astro-ph/9811124 +astro-ph/9811165 +astro-ph/9811308 +astro-ph/9811358 +astro-ph/9811378 +astro-ph/9811414 +astro-ph/9811418 +astro-ph/9811437 +astro-ph/9811445 +astro-ph/9811471 +astro-ph/9812061 +astro-ph/9812062 +astro-ph/9812096 +astro-ph/9812269 +astro-ph/9812281 +astro-ph/9812304 +astro-ph/9812320 +astro-ph/9812353 +astro-ph/9812434 +astro-ph/9812438 +astro-ph/9812439 +astro-ph/9901048 +astro-ph/9901186 +astro-ph/9901221 +astro-ph/9901299 +astro-ph/9901312 +astro-ph/9901317 +astro-ph/9901337 +astro-ph/9901350 +astro-ph/9902008 +astro-ph/9902016 +astro-ph/9902043 +astro-ph/9902049 +astro-ph/9902091 +astro-ph/9902250 +astro-ph/9902252 +astro-ph/9902275 +astro-ph/9902321 +astro-ph/9902359 +astro-ph/9903036 +astro-ph/9903106 +astro-ph/9903108 +astro-ph/9903142 +astro-ph/9903265 +astro-ph/9903278 +astro-ph/9903336 +astro-ph/9903428 +astro-ph/9903479 +astro-ph/9904074 +astro-ph/9904075 +astro-ph/9904158 +astro-ph/9904213 +astro-ph/9904227 +astro-ph/9904233 +astro-ph/9904244 +astro-ph/9904418 +astro-ph/9904425 +astro-ph/9905008 +astro-ph/9905233 +astro-ph/9905371 +astro-ph/9906001 +astro-ph/9906012 +astro-ph/9906019 +astro-ph/9906080 +astro-ph/9906159 +astro-ph/9906246 +astro-ph/9906380 +astro-ph/9906392 +astro-ph/9906407 +astro-ph/9906433 +astro-ph/9907038 +astro-ph/9907049 +astro-ph/9907051 +astro-ph/9907122 +astro-ph/9907147 +astro-ph/9907150 +astro-ph/9907224 +astro-ph/9907277 +astro-ph/9907286 +astro-ph/9907306 +astro-ph/9907319 +astro-ph/9907356 +astro-ph/9907365 +astro-ph/9907374 +astro-ph/9907387 +astro-ph/9907396 +astro-ph/9908010 +astro-ph/9908110 +astro-ph/9908120 +astro-ph/9908141 +astro-ph/9908147 +astro-ph/9908175 +astro-ph/9908191 +astro-ph/9908193 +astro-ph/9908197 +astro-ph/9908212 +astro-ph/9908236 +astro-ph/9908241 +astro-ph/9908265 +astro-ph/9908282 +astro-ph/9908284 +astro-ph/9909017 +astro-ph/9909033 +astro-ph/9909082 +astro-ph/9909137 +astro-ph/9909146 +astro-ph/9909152 +astro-ph/9909183 +astro-ph/9909311 +astro-ph/9909388 +astro-ph/9909406 +astro-ph/9909430 +astro-ph/9909513 +astro-ph/9910010 +astro-ph/9910032 +astro-ph/9910047 +astro-ph/9910068 +astro-ph/9910155 +astro-ph/9910173 +astro-ph/9910181 +astro-ph/9910185 +astro-ph/9910256 +astro-ph/9910262 +astro-ph/9910269 +astro-ph/9910270 +astro-ph/9910290 +astro-ph/9910345 +astro-ph/9910350 +astro-ph/9910415 +astro-ph/9910480 +astro-ph/9910512 +astro-ph/9911040 +astro-ph/9911059 +astro-ph/9911081 +astro-ph/9911092 +astro-ph/9911117 +astro-ph/9911135 +astro-ph/9911181 +astro-ph/9911208 +astro-ph/9911237 +astro-ph/9911295 +astro-ph/9911339 +astro-ph/9911399 +astro-ph/9911413 +astro-ph/9911435 +astro-ph/9911503 +astro-ph/9912019 +astro-ph/9912161 +astro-ph/9912162 +astro-ph/9912168 +astro-ph/9912201 +astro-ph/9912222 +astro-ph/9912307 +astro-ph/9912410 +astro-ph/9912425 +astro-ph/9912431 +astro-ph/9912499 +astro-ph/9912545 +astro-ph/9912552 +hep-ph/0011179 Phenomenology +math/0605028 Algebraic Geometry +math/0610013 Quantum Algebra +physics/0602019 Chemical Physics +0801.2912 +0802.0140 Chaotic Dynamics +0802.0631 Strongly Correlated Electrons +0804.2581 Materials Science +0805.2345 Chaotic Dynamics +0805.3128 +0807.3612 Analysis of PDEs +0812.3764 Mesoscale and Nanoscale Physics +0904.0929 Experiment +0906.4170 Soft Condensed Matter +0907.0470 Symplectic Geometry +0910.5715 High Energy Astrophysical Phenomena +1006.0125 +1007.4867 +1011.3823 Cosmology and Nongalactic Astrophysics +1105.3492 Materials Science +1108.1900 Dynamical Systems +1111.4175 High Energy Astrophysical Phenomena +1111.4199 Functional Analysis +1201.0064 +1201.5920 Exactly Solvable and Integrable Systems +1209.2489 Cosmology and Nongalactic Astrophysics +1210.1789 Number Theory +1212.1639 Computation +1212.2412 +1301.7052 Symplectic Geometry +1302.0691 Statistical Mechanics +1303.4783 +1304.2051 Differential Geometry +1305.3679 Earth and Planetary Astrophysics +1306.5250 Algebraic Geometry +1308.2347 Representation Theory +1310.6294 Atomic Physics +1311.2084 Group Theory +1311.4221 Symplectic Geometry +1401.1942 Mathematical Software +1401.6989 Number Theory +1402.1981 Mesoscale and Nanoscale Physics +1404.3250 Information Theory +1405.6441 Representation Theory +1406.5793 Combinatorics +1407.3277 High Energy Astrophysical Phenomena +1407.3902 +1407.5641 Materials Science +1407.6696 Complex Variables +1408.0752 Analysis of PDEs +1408.2895 Complex Variables +1409.0570 Classical Analysis and ODEs +1409.3234 Quantum Gases +1410.1665 Operator Algebras +1410.1703 Computer Science and Game Theory +1410.8124 High Energy Astrophysical Phenomena +1412.1045 Phenomenology +1412.3616 Phenomenology +1412.6872 Phenomenology +1501.03936 Soft Condensed Matter +1501.06246 Classical Physics +1502.01526 Computer Vision and Pattern Recognition +1502.07172 Soft Condensed Matter +1503.00917 Operator Algebras +1503.04814 Astrophysics of Galaxies +1504.00375 +1504.00559 Probability +1504.02814 Algebraic Geometry +1504.04177 +1504.06046 +1504.06287 Phenomenology +1505.00780 High Energy Astrophysical Phenomena +1505.00896 Classical Analysis and ODEs +1505.02121 Theory +1505.02122 Theory +1505.02157 Astrophysics of Galaxies +1505.02172 High Energy Astrophysical Phenomena +1505.03672 +1505.03959 Materials Science +1505.05756 Solar and Stellar Astrophysics +1505.06724 Analysis of PDEs +1506.00006 Astrophysics of Galaxies +1506.02471 Earth and Planetary Astrophysics +1506.02805 +1506.02935 Probability +1506.04891 Computation and Language +1506.05455 Disordered Systems and Neural Networks +1506.05585 High Energy Astrophysical Phenomena +1506.06997 Computational Finance +1506.07009 Classical Analysis and ODEs +1507.00842 Phenomenology +1507.02576 Analysis of PDEs +1507.02768 Superconductivity +1507.03268 Experiment +1507.05826 Theory +1507.06116 Strongly Correlated Electrons +1507.06153 High Energy Astrophysical Phenomena +1507.06696 High Energy Astrophysical Phenomena +1507.08138 +1507.08518 Instrumentation and Methods for Astrophysics +1508.01751 Functional Analysis +1508.03910 Phenomenology +1509.00147 Soft Condensed Matter +1509.01303 +1509.01801 Phenomenology +1509.01990 Data Structures and Algorithms +1509.03082 Statistical Mechanics +1509.03493 +1509.03634 High Energy Astrophysical Phenomena +1509.06070 +1509.06175 Optics +1509.06289 +1509.06741 Statistical Mechanics +1509.08661 Soft Condensed Matter +1509.08930 Cosmology and Nongalactic Astrophysics +1510.00490 Optimization and Control +1510.01016 Statistical Mechanics +1510.01287 Symplectic Geometry +1510.01486 Cosmology and Nongalactic Astrophysics +1510.02106 Astrophysics of Galaxies +1510.02377 Computers and Society +1510.03262 Astrophysics of Galaxies +1510.04196 Instrumentation and Detectors +1510.04286 High Energy Astrophysical Phenomena +1510.05406 Materials Science +1510.07594 High Energy Astrophysical Phenomena +1510.07611 +1510.07649 High Energy Astrophysical Phenomena +1510.08454 High Energy Astrophysical Phenomena +1510.08521 Earth and Planetary Astrophysics +1510.08627 Superconductivity +1510.08793 Cosmology and Nongalactic Astrophysics +1510.08865 Data Structures and Algorithms +1511.00392 Cosmology and Nongalactic Astrophysics +1511.00943 High Energy Astrophysical Phenomena +1511.01107 Cosmology and Nongalactic Astrophysics +1511.01125 Cosmology and Nongalactic Astrophysics +1511.01471 High Energy Astrophysical Phenomena +1511.02549 Earth and Planetary Astrophysics +1511.02866 Strongly Correlated Electrons +1511.03117 Complex Variables +1511.03660 Astrophysics of Galaxies +1511.05161 Mesoscale and Nanoscale Physics +1511.06525 Statistics Theory +1511.07436 Phenomenology +1511.07450 Theory +1511.07631 Mesoscale and Nanoscale Physics +1511.07835 Cosmology and Nongalactic Astrophysics +1511.08813 Solar and Stellar Astrophysics +1512.00189 Earth and Planetary Astrophysics +1512.00338 Quantum Gases +1512.00434 Networking and Internet Architecture +1512.00563 Astrophysics of Galaxies +1512.01778 Soft Condensed Matter +1512.01991 Phenomenology +1512.02211 Theory +1512.02243 Theory +1512.03062 Cosmology and Nongalactic Astrophysics +1512.03101 Astrophysics of Galaxies +1512.03105 Cosmology and Nongalactic Astrophysics +1512.03606 +1512.04918 Mesoscale and Nanoscale Physics +1512.05396 Astrophysics of Galaxies +1512.05524 Complex Variables +1512.06064 Theory +1512.06139 Cosmology and Nongalactic Astrophysics +1512.06344 Cosmology and Nongalactic Astrophysics +1512.07486 +1512.07515 General Topology +1512.07527 Phenomenology +1512.07668 Soft Condensed Matter +1512.08421 Probability +1512.08730 High Energy Astrophysical Phenomena +1601.00160 Cosmology and Nongalactic Astrophysics +1601.00375 Astrophysics of Galaxies +1601.00557 Astrophysics of Galaxies +1601.01049 Differential Geometry +1601.01640 Phenomenology +1601.01717 Astrophysics of Galaxies +1601.02028 Superconductivity +1601.02432 Operator Algebras +1601.02877 Superconductivity +1601.03110 +1601.03455 Earth and Planetary Astrophysics +1601.03643 Materials Science +1601.03711 Strongly Correlated Electrons +1601.03743 Phenomenology +1601.04088 Functional Analysis +1601.04463 Statistical Mechanics +1601.04761 Earth and Planetary Astrophysics +1601.04872 Mesoscale and Nanoscale Physics +1601.05023 Rings and Algebras +1601.05065 Neurons and Cognition +1601.05181 Astrophysics of Galaxies +1601.05703 Theory +1601.05784 Information Theory +1601.05891 Strongly Correlated Electrons +1601.06115 Astrophysics of Galaxies +1601.06324 +1601.06678 High Energy Astrophysical Phenomena +1601.06836 High Energy Astrophysical Phenomena +1601.07230 Cosmology and Nongalactic Astrophysics +1601.07349 High Energy Astrophysical Phenomena +1601.07544 +1601.07549 Astrophysics of Galaxies +1601.08054 Space Physics +1602.00261 Classical Analysis and ODEs +1602.00411 Cosmology and Nongalactic Astrophysics +1602.00496 Phenomenology +1602.00497 Mesoscale and Nanoscale Physics +1602.01858 Theory +1602.02188 High Energy Astrophysical Phenomena +1602.03703 Atomic Physics +1602.03720 Mesoscale and Nanoscale Physics +1602.03762 Materials Science +1602.04030 Atomic Physics +1602.04158 High Energy Astrophysical Phenomena +1602.04195 Strongly Correlated Electrons +1602.04551 +1602.04651 Algebraic Geometry +1602.05321 Computational Physics +1602.05361 Pattern Formation and Solitons +1602.05580 Astrophysics of Galaxies +1602.05957 Astrophysics of Galaxies +1602.06259 Instrumentation and Methods for Astrophysics +1602.06302 Cosmology and Nongalactic Astrophysics +1602.06540 Mesoscale and Nanoscale Physics +1602.07058 Mesoscale and Nanoscale Physics +1602.07355 Lattice +1602.07609 +1602.07710 High Energy Astrophysical Phenomena +1602.07714 Learning +1602.07722 +1602.07791 Atomic Physics +1602.07833 Mesoscale and Nanoscale Physics +1602.08075 +1602.08099 Cosmology and Nongalactic Astrophysics +1602.08180 Differential Geometry +1602.08525 Materials Science +1602.08697 Theory +1602.08766 Phenomenology +1602.09063 Earth and Planetary Astrophysics +1603.00046 Lattice +1603.00360 Phenomenology +1603.00362 +1603.00469 Strongly Correlated Electrons +1603.00918 Cosmology and Nongalactic Astrophysics +1603.01053 +1603.01139 Astrophysics of Galaxies +1603.01546 +1603.01777 Strongly Correlated Electrons +1603.02350 High Energy Astrophysical Phenomena +1603.02891 High Energy Astrophysical Phenomena +1603.03255 Materials Science +1603.03302 Statistical Mechanics +1603.03430 Phenomenology +1603.03443 +1603.03499 +1603.03558 Geometric Topology +1603.03589 +1603.03692 +1603.03739 Superconductivity +1603.03972 Machine Learning +1603.04313 Fluid Dynamics +1603.04730 Cosmology and Nongalactic Astrophysics +1603.05218 High Energy Astrophysical Phenomena +1603.05713 Theory +1603.05753 Atomic Physics +1603.05981 Astrophysics of Galaxies +1603.05997 Instrumentation and Methods for Astrophysics +1603.06146 +1603.06437 Materials Science +1603.06488 Earth and Planetary Astrophysics +1603.06583 Astrophysics of Galaxies +1603.06746 High Energy Astrophysical Phenomena +1603.06795 Cosmology and Nongalactic Astrophysics +1603.07255 Earth and Planetary Astrophysics +1603.07268 Atomic Physics +1603.07572 Cosmology and Nongalactic Astrophysics +1603.07740 +1603.07818 Cosmology and Nongalactic Astrophysics +1603.07872 High Energy Astrophysical Phenomena +1603.08009 Astrophysics of Galaxies +1603.08187 Phenomenology +1603.08250 Phenomenology +1603.08392 Space Physics +1603.08736 Mesoscale and Nanoscale Physics +1603.09010 Atomic Physics +1603.09199 +1603.09475 Astrophysics of Galaxies +1603.09552 +1603.09610 Astrophysics of Galaxies +1603.09688 Strongly Correlated Electrons +1603.09697 High Energy Astrophysical Phenomena +1604.00004 Earth and Planetary Astrophysics +1604.00048 Cosmology and Nongalactic Astrophysics +1604.00203 +1604.00226 Statistical Mechanics +1604.00613 Solar and Stellar Astrophysics +1604.00687 Theory +1604.00958 Solar and Stellar Astrophysics +1604.01044 High Energy Astrophysical Phenomena +1604.01122 Astrophysics of Galaxies +1604.01254 Atomic Physics +1604.01396 +1604.01681 Mesoscale and Nanoscale Physics +1604.01698 Astrophysics of Galaxies +1604.01764 Astrophysics of Galaxies +1604.01765 Astrophysics of Galaxies +1604.01802 Computer Vision and Pattern Recognition +1604.01858 Strongly Correlated Electrons +1604.02129 Computer Vision and Pattern Recognition +1604.02147 Astrophysics of Galaxies +1604.02154 +1604.02394 Materials Science +1604.02513 +1604.02585 Materials Science +1604.02712 Combinatorics +1604.02820 High Energy Astrophysical Phenomena +1604.02995 Theory +1604.03090 Disordered Systems and Neural Networks +1604.03150 Chaotic Dynamics +1604.03511 Earth and Planetary Astrophysics +1604.03593 Instrumentation and Methods for Astrophysics +1604.03789 Astrophysics of Galaxies +1604.03988 Strongly Correlated Electrons +1604.04092 Mesoscale and Nanoscale Physics +1604.04163 Metric Geometry +1604.04287 Mesoscale and Nanoscale Physics +1604.04698 Statistical Mechanics +1604.04776 Solar and Stellar Astrophysics +1604.04820 Astrophysics of Galaxies +1604.05028 Earth and Planetary Astrophysics +1604.05087 +1604.05188 Fluid Dynamics +1604.05190 Strongly Correlated Electrons +1604.05234 Solar and Stellar Astrophysics +1604.05303 Solar and Stellar Astrophysics +1604.05311 Strongly Correlated Electrons +1604.05318 Solar and Stellar Astrophysics +1604.05349 Cosmology and Nongalactic Astrophysics +1604.05437 Mesoscale and Nanoscale Physics +1604.05586 Astrophysics of Galaxies +1604.06202 +1604.06537 +1604.06712 Lattice +1604.06829 Materials Science +1604.07282 Combinatorics +1604.07403 Solar and Stellar Astrophysics +1604.07411 Phenomenology +1604.07577 Plasma Physics +1604.07692 +1604.07808 High Energy Astrophysical Phenomena +1604.07828 Phenomenology +1604.07937 Astrophysics of Galaxies +1604.07971 Mesoscale and Nanoscale Physics +1604.08038 +1604.08184 +1604.08244 Astrophysics of Galaxies +1604.08367 Mesoscale and Nanoscale Physics +1604.08505 High Energy Astrophysical Phenomena +1604.08512 Theory +1604.08576 Phenomenology +1604.08659 Materials Science +1604.08724 +1604.08777 Astrophysics of Galaxies +1604.08786 Theory +1604.08829 Quantum Gases +1605.00004 Astrophysics of Galaxies +1605.00123 +1605.00496 +1605.00579 Earth and Planetary Astrophysics +1605.00646 Astrophysics of Galaxies +1605.00671 Phenomenology +1605.00703 Atomic Physics +1605.00958 Mesoscale and Nanoscale Physics +1605.01060 High Energy Astrophysical Phenomena +1605.01065 Astrophysics of Galaxies +1605.01089 Differential Geometry +1605.01132 Solar and Stellar Astrophysics +1605.01140 Astrophysics of Galaxies +1605.01163 Solar and Stellar Astrophysics +1605.01203 +1605.01382 High Energy Astrophysical Phenomena +1605.01406 Astrophysics of Galaxies +1605.01531 Cosmology and Nongalactic Astrophysics +1605.01649 Solar and Stellar Astrophysics +1605.01765 Cosmology and Nongalactic Astrophysics +1605.01851 Quantum Gases +1605.01922 Quantum Gases +1605.02032 Astrophysics of Galaxies +1605.02071 High Energy Astrophysical Phenomena +1605.02145 Strongly Correlated Electrons +1605.02158 Disordered Systems and Neural Networks +1605.02433 High Energy Astrophysical Phenomena +1605.02491 High Energy Astrophysical Phenomena +1605.02505 Materials Science +1605.02683 Solar and Stellar Astrophysics +1605.02764 Solar and Stellar Astrophysics +1605.02823 Solar and Stellar Astrophysics +1605.02938 Cosmology and Nongalactic Astrophysics +1605.03014 Astrophysics of Galaxies +1605.03088 Phenomenology +1605.03187 Astrophysics of Galaxies +1605.03467 Astrophysics of Galaxies +1605.03567 +1605.03573 High Energy Astrophysical Phenomena +1605.03610 Phenomenology +1605.03668 Solar and Stellar Astrophysics +1605.03675 Solar and Stellar Astrophysics +1605.03839 High Energy Astrophysical Phenomena +1605.03991 Astrophysics of Galaxies +1605.04030 +1605.04053 Data Analysis, Statistics and Probability +1605.04109 Mesoscale and Nanoscale Physics +1605.04149 Mesoscale and Nanoscale Physics +1605.04622 Mesoscale and Nanoscale Physics +1605.04736 Phenomenology +1605.04789 +1605.04818 Mesoscale and Nanoscale Physics +1605.04837 Astrophysics of Galaxies +1605.04918 Mesoscale and Nanoscale Physics +1605.05066 +1605.05088 Astrophysics of Galaxies +1605.05286 Cosmology and Nongalactic Astrophysics +1605.05370 +1605.05390 Solar and Stellar Astrophysics +1605.05408 Solar and Stellar Astrophysics +1605.05427 Instrumentation and Detectors +1605.05769 Astrophysics of Galaxies +1605.05888 Solar and Stellar Astrophysics +1605.05964 Solar and Stellar Astrophysics +1605.06066 High Energy Astrophysical Phenomena +1605.06109 Astrophysics of Galaxies +1605.06356 High Energy Astrophysical Phenomena +1605.06449 Cosmology and Nongalactic Astrophysics +1605.06556 +1605.06598 Astrophysics of Galaxies +1605.06616 High Energy Astrophysical Phenomena +1605.06687 +1605.06728 Solar and Stellar Astrophysics +1605.06777 Solar and Stellar Astrophysics +1605.06812 +1605.06876 Phenomenology +1605.07029 Theory +1605.07044 Mesoscale and Nanoscale Physics +1605.07177 Solar and Stellar Astrophysics +1605.07182 Solar and Stellar Astrophysics +1605.07186 Astrophysics of Galaxies +1605.07199 Mesoscale and Nanoscale Physics +1605.07206 Cosmology and Nongalactic Astrophysics +1605.07207 Theory +1605.07261 Astrophysics of Galaxies +1605.07301 Astrophysics of Galaxies +1605.07603 Earth and Planetary Astrophysics +1605.07606 High Energy Astrophysical Phenomena +1605.07687 Solar and Stellar Astrophysics +1605.07846 Instrumentation and Methods for Astrophysics +1605.07900 Solar and Stellar Astrophysics +1605.07917 Earth and Planetary Astrophysics +1605.08030 Solar and Stellar Astrophysics +1605.08044 Astrophysics of Galaxies +1605.08119 +1605.08132 Astrophysics of Galaxies +1605.08219 Solar and Stellar Astrophysics +1605.08293 +1605.08399 Solar and Stellar Astrophysics +1605.08428 Cosmology and Nongalactic Astrophysics +1605.08488 High Energy Astrophysical Phenomena +1605.08549 Astrophysics of Galaxies +1605.08646 Statistical Mechanics +1605.08785 Earth and Planetary Astrophysics +1605.08789 Solar and Stellar Astrophysics +1605.08907 Solar and Stellar Astrophysics +1605.09186 Computation and Language +1605.09262 High Energy Astrophysical Phenomena +1605.09318 Experiment +1605.09334 Superconductivity +1605.09357 Cosmology and Nongalactic Astrophysics +1605.09382 Phenomenology +1605.09400 High Energy Astrophysical Phenomena +1605.09405 Instrumentation and Detectors +1605.09510 Theory +1605.09689 Subcellular Processes +1605.09742 Cosmology and Nongalactic Astrophysics +1605.09756 High Energy Astrophysical Phenomena +1605.09788 Solar and Stellar Astrophysics +1606.00337 Solar and Stellar Astrophysics +1606.00348 Earth and Planetary Astrophysics +1606.00380 Solar and Stellar Astrophysics +1606.00415 Astrophysics of Galaxies +1606.00512 Quantum Gases +1606.00836 Solar and Stellar Astrophysics +1606.00840 Phenomenology +1606.00919 +1606.00945 Solar and Stellar Astrophysics +1606.01097 +1606.01158 Differential Geometry +1606.01238 Phenomenology +1606.01263 Astrophysics of Galaxies +1606.01268 Astrophysics of Galaxies +1606.01310 Astrophysics of Galaxies +1606.01336 Earth and Planetary Astrophysics +1606.01494 High Energy Astrophysical Phenomena +1606.01598 Theory +1606.01613 +1606.01707 High Energy Astrophysical Phenomena +1606.01757 Astrophysics of Galaxies +1606.01762 Astrophysics of Galaxies +1606.01846 Earth and Planetary Astrophysics +1606.01851 High Energy Astrophysical Phenomena +1606.01878 Solar and Stellar Astrophysics +1606.01896 Solar and Stellar Astrophysics +1606.01899 Solar and Stellar Astrophysics +1606.02038 Cosmology and Nongalactic Astrophysics +1606.02279 Learning +1606.02309 Astrophysics of Galaxies +1606.02310 Instrumentation and Methods for Astrophysics +1606.02362 Astrophysics of Galaxies +1606.02368 Solar and Stellar Astrophysics +1606.02475 Theory +1606.02576 Strongly Correlated Electrons +1606.02696 Phenomenology +1606.02823 Astrophysics of Galaxies +1606.03067 Phenomenology +1606.03148 High Energy Astrophysical Phenomena +1606.03151 Plasma Physics +1606.03173 Astrophysics of Galaxies +1606.03367 Strongly Correlated Electrons +1606.03446 Instrumentation and Methods for Astrophysics +1606.03460 Solar and Stellar Astrophysics +1606.03659 High Energy Astrophysical Phenomena +1606.03908 Soft Condensed Matter +1606.03932 Solar and Stellar Astrophysics +1606.04032 Theory +1606.04090 Astrophysics of Galaxies +1606.04115 Astrophysics of Galaxies +1606.04150 Earth and Planetary Astrophysics +1606.04472 Solar and Stellar Astrophysics +1606.04516 History and Overview +1606.04603 Solar and Stellar Astrophysics +1606.04714 Solar and Stellar Astrophysics +1606.04839 +1606.04843 High Energy Astrophysical Phenomena +1606.04877 Number Theory +1606.04894 +1606.04946 Astrophysics of Galaxies +1606.04959 Solar and Stellar Astrophysics +1606.05001 High Energy Astrophysical Phenomena +1606.05106 +1606.05126 Phenomenology +1606.05146 +1606.05211 +1606.05342 +1606.05349 Astrophysics of Galaxies +1606.05351 Astrophysics of Galaxies +1606.05406 Mesoscale and Nanoscale Physics +1606.05606 Category Theory +1606.05831 Theory +1606.05955 Astrophysics of Galaxies +1606.05974 High Energy Astrophysical Phenomena +1606.06001 Astrophysics of Galaxies +1606.06034 Mesoscale and Nanoscale Physics +1606.06055 Solar and Stellar Astrophysics +1606.06204 Distributed, Parallel, and Cluster Computing +1606.06240 Superconductivity +1606.06307 Cosmology and Nongalactic Astrophysics +1606.06315 Instrumentation and Methods for Astrophysics +1606.06334 Atomic Physics +1606.06415 Solar and Stellar Astrophysics +1606.06744 Earth and Planetary Astrophysics +1606.06785 Astrophysics of Galaxies +1606.06927 Phenomenology +1606.06967 +1606.07002 Mesoscale and Nanoscale Physics +1606.07028 Astrophysics of Galaxies +1606.07349 Phenomenology +1606.07452 Astrophysics of Galaxies +1606.07872 Instrumentation and Methods for Astrophysics +1606.07989 High Energy Astrophysical Phenomena +1606.08441 Earth and Planetary Astrophysics +1606.08445 Solar and Stellar Astrophysics +1606.08511 Cosmology and Nongalactic Astrophysics +1606.08680 Soft Condensed Matter +1606.08826 Solar and Stellar Astrophysics +1606.08859 Phenomenology +1606.08940 High Energy Astrophysical Phenomena +1606.09114 Solar and Stellar Astrophysics +1606.09127 Astrophysics of Galaxies +1606.09139 +1606.09157 +1606.09250 High Energy Astrophysical Phenomena +1606.09285 Solar and Stellar Astrophysics +1606.09580 Solar and Stellar Astrophysics +1607.00323 Solar and Stellar Astrophysics +1607.00375 Astrophysics of Galaxies +1607.00463 Theory +1607.00692 Solar and Stellar Astrophysics +1607.00768 High Energy Astrophysical Phenomena +1607.00936 Solar and Stellar Astrophysics +1607.01253 Earth and Planetary Astrophysics +1607.01406 Cosmology and Nongalactic Astrophysics +1607.01446 Astrophysics of Galaxies +1607.01738 Space Physics +1607.01877 Solar and Stellar Astrophysics +1607.02088 Solar and Stellar Astrophysics +1607.02144 High Energy Astrophysical Phenomena +1607.02145 Astrophysics of Galaxies +1607.02147 Astrophysics of Galaxies +1607.02487 Instrumentation and Methods for Astrophysics +1607.02525 Earth and Planetary Astrophysics +1607.02579 +1607.02628 Astrophysics of Galaxies +1607.02975 Astrophysics of Galaxies +1607.03061 High Energy Astrophysical Phenomena +1607.03124 High Energy Astrophysical Phenomena +1607.03242 Astrophysics of Galaxies +1607.03365 Astrophysics of Galaxies +1607.03438 Astrophysics of Galaxies +1607.03553 Astrophysics of Galaxies +1607.03679 Astrophysics of Galaxies +1607.03684 Earth and Planetary Astrophysics +1607.03853 Solar and Stellar Astrophysics +1607.04040 Astrophysics of Galaxies +1607.04047 Mathematical Finance +1607.04056 Astrophysics of Galaxies +1607.04167 High Energy Astrophysical Phenomena +1607.04279 Astrophysics of Galaxies +1607.04284 Astrophysics of Galaxies +1607.04289 Astrophysics of Galaxies +1607.04402 Astrophysics of Galaxies +1607.04659 Earth and Planetary Astrophysics +1607.04828 Astrophysics of Galaxies +1607.04920 Analysis of PDEs +1607.05049 Astrophysics of Galaxies +1607.05056 Group Theory +1607.05092 High Energy Astrophysical Phenomena +1607.05286 Solar and Stellar Astrophysics +1607.05526 Astrophysics of Galaxies +1607.05639 High Energy Astrophysical Phenomena +1607.05647 Information Theory +1607.05652 High Energy Astrophysical Phenomena +1607.06104 High Energy Astrophysical Phenomena +1607.06435 Mesoscale and Nanoscale Physics +1607.06462 Astrophysics of Galaxies +1607.06561 Astrophysics of Galaxies +1607.06654 Lattice +1607.06810 Solar and Stellar Astrophysics +1607.06937 High Energy Astrophysical Phenomena +1607.07139 Neurons and Cognition +1607.07448 High Energy Astrophysical Phenomena +1607.07575 Operator Algebras +1607.07578 Operator Algebras +1607.07672 Solar and Stellar Astrophysics +1607.07740 Instrumentation and Methods for Astrophysics +1607.07835 +1607.07870 Solar and Stellar Astrophysics +1607.08021 High Energy Astrophysical Phenomena +1607.08113 +1607.08387 Solar and Stellar Astrophysics +1607.08818 Earth and Planetary Astrophysics +1607.08828 Solar and Stellar Astrophysics +1608.00048 Astrophysics of Galaxies +1608.00075 Machine Learning +1608.00113 +1608.00184 Astrophysics of Galaxies +1608.00258 Astrophysics of Galaxies +1608.00291 Astrophysics of Galaxies +1608.00382 Phenomenology +1608.00453 Solar and Stellar Astrophysics +1608.00459 Earth and Planetary Astrophysics +1608.00527 Solar and Stellar Astrophysics +1608.00568 Astrophysics of Galaxies +1608.00576 Solar and Stellar Astrophysics +1608.00578 Instrumentation and Methods for Astrophysics +1608.00580 Instrumentation and Methods for Astrophysics +1608.00582 Instrumentation and Methods for Astrophysics +1608.00588 Astrophysics of Galaxies +1608.00670 Earth and Planetary Astrophysics +1608.00746 Earth and Planetary Astrophysics +1608.00772 Solar and Stellar Astrophysics +1608.00784 Earth and Planetary Astrophysics +1608.00805 Astrophysics of Galaxies +1608.01050 Solar and Stellar Astrophysics +1608.01067 Solar and Stellar Astrophysics +1608.01258 Solar and Stellar Astrophysics +1608.01266 Astrophysics of Galaxies +1608.01321 High Energy Astrophysical Phenomena +1608.01334 Earth and Planetary Astrophysics +1608.01523 Astrophysics of Galaxies +1608.01549 Solar and Stellar Astrophysics +1608.01633 Astrophysics of Galaxies +1608.01639 +1608.01680 Instrumentation and Methods for Astrophysics +1608.01681 Instrumentation and Methods for Astrophysics +1608.01688 Space Physics +1608.01729 Solar and Stellar Astrophysics +1608.01808 Earth and Planetary Astrophysics +1608.01833 Combinatorics +1608.01912 Biomolecules +1608.01923 High Energy Astrophysical Phenomena +1608.01950 High Energy Astrophysical Phenomena +1608.01983 Astrophysics of Galaxies +1608.02034 Statistical Mechanics +1608.02050 Astrophysics of Galaxies +1608.02172 Astrophysics of Galaxies +1608.02252 Solar and Stellar Astrophysics +1608.02269 Quantum Algebra +1608.02286 Robotics +1608.02346 Earth and Planetary Astrophysics +1608.02392 +1608.02419 Analysis of PDEs +1608.02425 +1608.02448 Combinatorics +1608.02493 Solar and Stellar Astrophysics +1608.02545 Differential Geometry +1608.02614 Astrophysics of Galaxies +1608.02648 Astrophysics of Galaxies +1608.02652 Instrumentation and Detectors +1608.02761 Information Retrieval +1608.02847 High Energy Astrophysical Phenomena +1608.02886 High Energy Astrophysical Phenomena +1608.02944 Astrophysics of Galaxies +1608.02945 Solar and Stellar Astrophysics +1608.02980 Solar and Stellar Astrophysics +1608.03041 Solar and Stellar Astrophysics +1608.03064 Solar and Stellar Astrophysics +1608.03216 Earth and Planetary Astrophysics +1608.03223 Strongly Correlated Electrons +1608.03386 Cosmology and Nongalactic Astrophysics +1608.03390 Solar and Stellar Astrophysics +1608.03555 Soft Condensed Matter +1608.03793 Neural and Evolutionary Computing +1608.03809 Number Theory +1608.03810 Number Theory +1608.03870 +1608.03978 +1608.03998 Mesoscale and Nanoscale Physics +1608.04040 Phenomenology +1608.04046 Networking and Internet Architecture +1608.04116 Cryptography and Security +1608.04119 Operator Algebras +1608.04144 Materials Science +1608.04236 Computer Vision and Pattern Recognition +1608.04245 Machine Learning +1608.04289 Solar and Stellar Astrophysics +1608.04309 Systems and Control +1608.04313 Strongly Correlated Electrons +1608.04314 Computer Vision and Pattern Recognition +1608.04361 Numerical Analysis +1608.04382 Numerical Analysis +1608.04383 Chemical Physics +1608.04396 +1608.04397 Soft Condensed Matter +1608.04399 +1608.04401 Chaotic Dynamics +1608.04405 Materials Science +1608.04408 Theory +1608.04409 Earth and Planetary Astrophysics +1608.04411 Networking and Internet Architecture +1608.04412 Fluid Dynamics +1608.04413 High Energy Astrophysical Phenomena +1608.04417 Earth and Planetary Astrophysics +1608.04423 Dynamical Systems +1608.04428 Learning +1608.04430 Optimization and Control +1608.04433 Neurons and Cognition +1608.04434 Computation and Language +1608.04437 Databases +1608.04438 Instrumentation and Methods for Astrophysics +1608.04439 Information Theory +1608.04440 Complex Variables +1608.04442 Databases +1608.04445 Operator Algebras +1608.04451 Systems and Control +1608.04452 Systems and Control +1608.04453 Geometric Topology +1608.04454 Instrumentation and Methods for Astrophysics +1608.04456 Data Structures and Algorithms +1608.04457 Statistics Theory +1608.04458 Complex Variables +1608.04461 +1608.04463 Mesoscale and Nanoscale Physics +1608.04465 Computation and Language +1608.04466 Networking and Internet Architecture +1608.04467 Optimization and Control +1608.04468 Information Retrieval +1608.04470 Phenomenology +1608.04473 Symplectic Geometry +1608.04475 Geometric Topology +1608.04478 Methodology +1608.04479 Materials Science +1608.04480 Solar and Stellar Astrophysics +1608.04481 Data Structures and Algorithms +1608.04483 Number Theory +1608.04484 Information Theory +1608.04485 Computation and Language +1608.04486 Strongly Correlated Electrons +1608.04487 Dynamical Systems +1608.04488 Computers and Society +1608.04489 Computer Vision and Pattern Recognition +1608.04491 Numerical Analysis +1608.04492 Dynamical Systems +1608.04496 K-Theory and Homology +1608.04497 Chemical Physics +1608.04500 Experiment +1608.04502 Representation Theory +1608.04505 +1608.04508 +1608.04509 Computer Vision and Pattern Recognition +1608.04510 Instrumentation and Methods for Astrophysics +1608.04511 Multiagent Systems +1608.04512 Spectral Theory +1608.04516 Metric Geometry +1608.04517 Computer Vision and Pattern Recognition +1608.04518 Mesoscale and Nanoscale Physics +1608.04520 +1608.04522 Portfolio Management +1608.04524 Optics +1608.04525 Algebraic Geometry +1608.04526 Instrumentation and Methods for Astrophysics +1608.04530 Combinatorics +1608.04533 Physics and Society +1608.04534 Analysis of PDEs +1608.04535 Data Structures and Algorithms +1608.04537 Probability +1608.04538 Group Theory +1608.04540 Neurons and Cognition +1608.04541 Molecular Networks +1608.04542 Algebraic Geometry +1608.04544 Optimization and Control +1608.04547 Number Theory +1608.04550 Computational Engineering, Finance, and Science +1608.04551 Space Physics +1608.04553 Optimization and Control +1608.04555 Spectral Theory +1608.04556 Optimization and Control +1608.04558 Dynamical Systems +1608.04560 Combinatorics +1608.04562 Rings and Algebras +1608.04563 Cryptography and Security +1608.04566 Functional Analysis +1608.04570 Group Theory +1608.04571 Numerical Analysis +1608.04573 Analysis of PDEs +1608.04575 Analysis of PDEs +1608.04578 Probability +1608.04579 Networking and Internet Architecture +1608.04581 Learning +1608.04585 Applications +1608.04587 Dynamical Systems +1608.04591 Dynamical Systems +1608.04594 General Physics +1608.04595 General Physics +1608.04598 General Physics +1608.04600 Dynamical Systems +1608.04604 Exactly Solvable and Integrable Systems +1608.04608 +1608.04609 Algebraic Geometry +1608.04611 Instrumentation and Methods for Astrophysics +1608.04613 +1608.04615 Machine Learning +1608.04619 Phenomenology +1608.04620 Popular Physics +1608.04621 Risk Management +1608.04623 Classical Physics +1608.04624 Medical Physics +1608.04625 Quantum Algebra +1608.04626 Soft Condensed Matter +1608.04627 Theory +1608.04628 Chaotic Dynamics +1608.04629 Quantum Gases +1608.04632 Strongly Correlated Electrons +1608.04637 Information Theory +1608.04642 Computer Vision and Pattern Recognition +1608.04649 Rings and Algebras +1608.04650 Probability +1608.04652 Human-Computer Interaction +1608.04653 Theory +1608.04654 Logic +1608.04655 Experiment +1608.04658 Fluid Dynamics +1608.04660 Analysis of PDEs +1608.04661 Computers and Society +1608.04669 +1608.04670 Computation and Language +1608.04672 Artificial Intelligence +1608.04674 Machine Learning +1608.04677 Astrophysics of Galaxies +1608.04682 Optimization and Control +1608.04683 Pricing of Securities +1608.04685 Analysis of PDEs +1608.04686 Databases +1608.04688 Programming Languages +1608.04689 Artificial Intelligence +1608.04694 Computational Engineering, Finance, and Science +1608.04695 Computer Vision and Pattern Recognition +1608.04698 Artificial Intelligence +1608.04700 Quantitative Methods +1608.04701 Instrumentation and Methods for Astrophysics +1608.04703 Chemical Physics +1608.04704 Combinatorics +1608.04705 Information Theory +1608.04706 Algebraic Geometry +1608.04711 Statistical Mechanics +1608.04716 Fluid Dynamics +1608.04717 Methodology +1608.04718 Number Theory +1608.04720 Cryptography and Security +1608.04721 Graphics +1608.04723 +1608.04724 Optics +1608.04725 Geometric Topology +1608.04726 Probability +1608.04727 Information Theory +1608.04728 Information Theory +1608.04731 Mesoscale and Nanoscale Physics +1608.04733 Mesoscale and Nanoscale Physics +1608.04735 Cosmology and Nongalactic Astrophysics +1608.04736 Astrophysics of Galaxies +astro-ph/0207207 +astro-ph/9611047 +astro-ph/9911286 +cond-mat/0701286 Materials Science +cond-mat/0701759 Materials Science +cond-mat/0701772 Statistical Mechanics +cond-mat/0702454 Materials Science +cond-mat/0703252 Strongly Correlated Electrons +cond-mat/9504051 +cond-mat/9608062 +cond-mat/9705204 Mesoscale and Nanoscale Physics +cond-mat/9710066 Soft Condensed Matter +cond-mat/9712159 +cond-mat/9712266 Soft Condensed Matter +cond-mat/9809128 +gr-qc/9207010 +gr-qc/9212012 +hep-ph/9703227 Phenomenology +hep-th/9306040 Theory +hep-th/9507047 Theory +math/0106052 Algebraic Topology +math/0701774 Analysis of PDEs +physics/0701218 Chemical Physics +quant-ph/0703097 +0812.1796 Probability +1010.5810 Risk Management +1011.2348 Optimization and Control +1102.5085 Physics and Society +1107.0222 Chaotic Dynamics +1111.2234 Optimization and Control +1212.1042 Physics Education +1212.2174 Physics Education +1212.5006 Algebraic Geometry +1212.6732 Risk Management +1303.1383 Phenomenology +1304.0347 +1308.3530 Combinatorics +1308.4316 Systems and Control +1308.4940 Category Theory +1308.5537 Number Theory +1309.0041 Solar and Stellar Astrophysics +1309.2918 Computation +1309.3121 Mesoscale and Nanoscale Physics +1309.6973 Probability +1310.2307 Physics Education +1310.2982 Physics Education +1310.4868 Physics Education +1312.0966 Differential Geometry +1312.3274 Phenomenology +1312.4494 Probability +1401.1929 Physics Education +1401.3047 Physics Education +1403.0482 Physics Education +1403.7329 +1404.0597 Probability +1404.2156 Category Theory +1404.2558 Soft Condensed Matter +1404.4472 Theory +1405.1476 Combinatorics +1405.1659 Analysis of PDEs +1405.3526 Mesoscale and Nanoscale Physics +1406.1781 Probability +1406.4248 Optimization and Control +1406.7026 Numerical Analysis +1407.1303 Numerical Analysis +1407.3783 Phenomenology +1408.3871 Combinatorics +1408.4113 Data Structures and Algorithms +1408.4585 +1408.5842 Materials Science +1409.4386 Commutative Algebra +1410.1065 Analysis of PDEs +1410.3690 Metric Geometry +1410.5494 Materials Science +1410.5599 Chaotic Dynamics +1410.7637 Combinatorics +1411.1461 Metric Geometry +1411.2417 Information Theory +1411.4251 Optics +1411.5583 +1411.7866 +1411.7870 +1412.3044 Materials Science +1412.3431 Operator Algebras +1412.3634 +1412.3750 Databases +1501.00333 Combinatorics +1501.00506 Number Theory +1501.03126 Commutative Algebra +1501.05093 Phenomenology +1501.05766 Analysis of PDEs +1501.07319 Information Theory +1502.01218 Statistical Mechanics +1502.02058 +1502.03917 Numerical Analysis +1502.04070 Numerical Analysis +1502.07250 Populations and Evolution +1503.02091 Rings and Algebras +1503.03587 +1503.07553 Theory +1504.02756 Medical Physics +1504.03291 Cosmology and Nongalactic Astrophysics +1504.03607 Theory +1504.04195 Combinatorics +1504.06039 Soft Condensed Matter +1504.06801 Dynamical Systems +1505.01008 Experiment +1505.01272 Quantum Gases +1505.01543 Statistical Mechanics +1505.01797 Astrophysics of Galaxies +1505.05007 Machine Learning +1505.05600 Analysis of PDEs +1505.06053 Statistical Mechanics +1505.06342 Theory +1505.06448 Computation +1505.06875 Classical Analysis and ODEs +1505.06981 Phenomenology +1506.00245 +1506.00363 Materials Science +1506.00413 Astrophysics of Galaxies +1506.01298 Atomic Physics +1506.01457 Optics +1506.02440 +1506.03302 Phenomenology +1506.03310 Combinatorics +1506.03653 Analysis of PDEs +1506.03691 Combinatorics +1506.04194 Optimization and Control +1506.05920 Computer Vision and Pattern Recognition +1506.06442 Computation and Language +1506.08342 Strongly Correlated Electrons +1506.08366 Phenomenology +1506.08669 Learning +1506.09207 +1507.01042 Number Theory +1507.01526 Neural and Evolutionary Computing +1507.02277 Theory +1507.03031 Experiment +1507.03225 Data Structures and Algorithms +1507.03421 Statistical Mechanics +1507.04053 Theory +1507.08346 Materials Science +1507.08520 Disordered Systems and Neural Networks +1508.01016 +1508.01940 +1508.01990 +1508.02291 +1508.03739 Phenomenology +1508.04324 Cryptography and Security +1508.04388 Physics and Society +1508.04412 +1508.05027 +1508.05324 Strongly Correlated Electrons +1508.05461 Combinatorics +1508.06439 Dynamical Systems +1508.06944 Disordered Systems and Neural Networks +1508.07586 Optics +1509.00024 Theory +1509.00481 Phenomenology +1509.01104 Mesoscale and Nanoscale Physics +1509.01888 Quantum Gases +1509.03120 Chemical Physics +1509.03367 Phenomenology +1509.03560 Strongly Correlated Electrons +1509.04476 Mesoscale and Nanoscale Physics +1509.05650 Quantum Gases +1509.06618 +1509.07127 +1509.07295 Lattice +1509.07740 Physics Education +1509.07826 Physics Education +1509.08730 +1510.01624 Learning +1510.02696 Networking and Internet Architecture +1510.03865 Phenomenology +1510.04252 Experiment +1510.04413 Multimedia +1510.04418 Materials Science +1510.05208 Theory +1510.06250 Chemical Physics +1510.07311 +1510.07798 +1511.00021 Data Structures and Algorithms +1511.00671 Optics +1511.01905 Phenomenology +1511.02603 Programming Languages +1511.03515 Classical Physics +1511.04103 Computer Vision and Pattern Recognition +1511.04306 Neural and Evolutionary Computing +1511.04743 Quantum Algebra +1511.04955 +1511.05079 Mesoscale and Nanoscale Physics +1511.06295 Learning +1511.06488 Learning +1511.06536 Phenomenology +1511.06725 Number Theory +1511.07401 Learning +1511.08731 Group Theory +1511.09378 Group Theory +1512.03366 Experiment +1512.04589 Functional Analysis +1512.05729 +1512.05829 +1512.06186 Theory +1512.06377 Materials Science +1512.07371 Probability +1512.08341 Geometric Topology +1512.09053 Phenomenology +1512.09248 High Energy Astrophysical Phenomena +1601.00106 +1601.00293 Phenomenology +1601.00573 Materials Science +1601.00851 Materials Science +1601.00878 +1601.00894 Hardware Architecture +1601.00979 Tissues and Organs +1601.01070 Information Theory +1601.01279 Solar and Stellar Astrophysics +1601.01297 Artificial Intelligence +1601.01305 Spectral Theory +1601.01328 Physics Education +1601.01332 Optics +1601.01336 Data Structures and Algorithms +1601.01339 Computer Vision and Pattern Recognition +1601.01341 Combinatorics +1601.01346 Chemical Physics +1601.01347 Combinatorics +1601.01349 Mesoscale and Nanoscale Physics +1601.01350 Astrophysics of Galaxies +1601.01351 Physics Education +1601.01358 Neurons and Cognition +1601.01360 Information Theory +1601.01361 Number Theory +1601.01363 Information Theory +1601.01365 Combinatorics +1601.01366 Number Theory +1601.01367 Lattice +1601.01372 Data Structures and Algorithms +1601.01374 +1601.01377 Combinatorics +1601.01382 +1601.01385 Rings and Algebras +1601.01386 Multimedia +1601.01387 Rings and Algebras +1601.01390 Representation Theory +1601.01392 Biological Physics +1601.01395 Commutative Algebra +1601.01398 Networking and Internet Architecture +1601.01399 Optimization and Control +1601.01401 Combinatorics +1601.01405 Cryptography and Security +1601.01408 Multimedia +1601.01409 Logic +1601.01410 Systems and Control +1601.01411 Learning +1601.01415 Optics +1601.01418 Materials Science +1601.01419 Networking and Internet Architecture +1601.01420 Data Analysis, Statistics and Probability +1601.01422 Computer Vision and Pattern Recognition +1601.01423 Networking and Internet Architecture +1601.01426 Statistics Theory +1601.01427 Information Theory +1601.01429 Numerical Analysis +1601.01431 Computer Vision and Pattern Recognition +1601.01433 Number Theory +1601.01434 Statistics Theory +1601.01436 Numerical Analysis +1601.01439 Solar and Stellar Astrophysics +1601.01443 Phenomenology +1601.01444 Dynamical Systems +1601.01446 Mesoscale and Nanoscale Physics +1601.01447 Software Engineering +1601.01455 Probability +1601.01456 Commutative Algebra +1601.01457 Statistics Theory +1601.01463 Hardware Architecture +1601.01464 Analysis of PDEs +1601.01465 Data Structures and Algorithms +1601.01466 Instrumentation and Methods for Astrophysics +1601.01470 Statistics Theory +1601.01472 Materials Science +1601.01473 History and Philosophy of Physics +1601.01474 Differential Geometry +1601.01475 Cosmology and Nongalactic Astrophysics +1601.01476 Probability +1601.01478 Logic in Computer Science +1601.01483 Logic in Computer Science +1601.01484 Logic in Computer Science +1601.01487 Logic +1601.01488 Information Theory +1601.01492 Artificial Intelligence +1601.01497 Human-Computer Interaction +1601.01498 Cryptography and Security +1601.01499 Experiment +1601.01500 Software Engineering +1601.01503 Probability +1601.01505 Functional Analysis +1601.01508 Commutative Algebra +1601.01510 Functional Analysis +1601.01511 +1601.01513 Probability +1601.01516 Analysis of PDEs +1601.01517 Software Engineering +1601.01518 Optics +1601.01521 Complex Variables +1601.01523 Discrete Mathematics +1601.01526 Networking and Internet Architecture +1601.01527 Networking and Internet Architecture +1601.01528 Rings and Algebras +1601.01534 Instrumentation and Detectors +1601.01537 Differential Geometry +1601.01539 Networking and Internet Architecture +1601.01540 +1601.01544 Learning +1601.01557 Applications +1601.01563 Analysis of PDEs +1601.01565 Physics and Society +1601.01567 Differential Geometry +1601.01568 Dynamical Systems +1601.01577 Sound +1601.01580 Neurons and Cognition +1601.01582 Physics and Society +1601.01586 Logic in Computer Science +1601.01587 Distributed, Parallel, and Cluster Computing +1601.01590 +1601.01595 Combinatorics +1601.01597 Data Structures and Algorithms +1601.01598 Computational Geometry +1601.01602 Algebraic Geometry +1601.01604 Applications +1601.01606 Optics +1601.01607 Distributed, Parallel, and Cluster Computing +1601.01608 Computers and Society +1601.01611 Information Retrieval +1601.01612 Emerging Technologies +1601.01613 Soft Condensed Matter +1601.01614 Artificial Intelligence +1601.01615 Algebraic Geometry +1601.01616 Functional Analysis +1601.01619 General Physics +1601.01626 Analysis of PDEs +1601.01634 Representation Theory +1601.01639 Dynamical Systems +1601.01641 Representation Theory +1601.01647 Algebraic Geometry +1601.01648 Logic in Computer Science +1601.01650 Classical Analysis and ODEs +1601.01652 Probability +1601.01653 Molecular Networks +1601.01654 Information Theory +1601.01658 Phenomenology +1601.01660 Formal Languages and Automata Theory +1601.01665 Number Theory +1601.01669 Representation Theory +math-ph/0702002 +quant-ph/0209004 +0709.4492 Classical Analysis and ODEs +1003.4337 +1010.1610 Instrumentation and Detectors +1011.4726 Combinatorics +1107.3597 Combinatorics +1108.1221 Classical Analysis and ODEs +1110.2117 Dynamical Systems +1111.0498 Algebraic Geometry +1203.3405 Dynamical Systems +1207.1476 Mesoscale and Nanoscale Physics +1301.0047 Optimization and Control +1302.1157 Optimization and Control +1302.6929 Dynamical Systems +1303.2419 Analysis of PDEs +1306.5522 Dynamical Systems +1307.0364 Geometric Topology +1307.0738 Group Theory +1308.0450 Mesoscale and Nanoscale Physics +1309.3725 Combinatorics +1309.5762 Social and Information Networks +1309.6964 Computer Vision and Pattern Recognition +1310.0239 Numerical Analysis +1310.6155 Probability +1311.2856 Analysis of PDEs +1311.5173 Combinatorics +1312.2376 Mesoscale and Nanoscale Physics +1312.3248 Databases +1312.7452 Statistics Theory +1402.1298 Numerical Analysis +1402.3427 Learning +1402.4503 Group Theory +1403.0554 Algebraic Geometry +1403.0783 Databases +1403.6259 Statistical Mechanics +1404.3131 Databases +1404.4605 Statistics Theory +1405.1326 Probability +1405.2788 Algebraic Geometry +1405.3251 Dynamical Systems +1405.4852 Differential Geometry +1406.3280 Logic in Computer Science +1406.4947 Algebraic Topology +1408.3715 Differential Geometry +1408.5292 +1409.3064 Group Theory +1409.4191 Algebraic Geometry +1409.6282 Rings and Algebras +1410.1089 Solar and Stellar Astrophysics +1410.4885 Data Structures and Algorithms +1410.6167 Mesoscale and Nanoscale Physics +1410.8106 Dynamical Systems +1411.3287 Differential Geometry +1411.4746 +1411.6816 Algebraic Geometry +1412.0164 Pattern Formation and Solitons +1412.3251 +1412.3411 Machine Learning +1501.01345 Information Theory +1501.01754 General Physics +1501.03108 +1501.03398 Differential Geometry +1501.04326 Numerical Analysis +1501.04695 K-Theory and Homology +1501.05527 Complex Variables +1501.05602 Quantum Algebra +1501.05905 Symplectic Geometry +1501.07680 Computer Vision and Pattern Recognition +1502.00592 Methodology +1502.02716 +1502.02770 Quantum Algebra +1502.04383 Computer Vision and Pattern Recognition +1503.00552 Soft Condensed Matter +1503.01097 Mesoscale and Nanoscale Physics +1503.06294 +1503.06855 Computer Science and Game Theory +1503.08592 Theory +1504.00501 +1504.03823 Optics +1504.04487 Metric Geometry +1504.05600 +1504.05617 +1504.05689 Quantum Gases +1505.00841 Databases +1505.04216 Logic in Computer Science +1505.04424 Computer Vision and Pattern Recognition +1505.04629 Applications +1505.07869 Materials Science +1506.00042 Phenomenology +1506.00158 Logic +1506.01317 +1506.01525 Strongly Correlated Electrons +1506.01599 Accelerator Physics +1506.01881 Theory +1506.03883 Computer Science and Game Theory +1506.05258 Theory +1506.05652 +1507.00137 Group Theory +1507.00166 Differential Geometry +1507.00454 Differential Geometry +1507.01542 Methodology +1507.01786 Other Condensed Matter +1507.02958 Classical Analysis and ODEs +1507.03245 Probability +1507.03374 Disordered Systems and Neural Networks +1507.03713 Optimization and Control +1507.04955 Databases +1507.05789 Cellular Automata and Lattice Gases +1507.07047 Number Theory +1507.07921 Theory +1507.08846 Analysis of PDEs +1507.08960 Cosmology and Nongalactic Astrophysics +1508.01244 Computer Vision and Pattern Recognition +1508.02355 Number Theory +1508.02827 +1508.07775 Optimization and Control +1509.00388 Computational Geometry +1509.00531 Algebraic Geometry +1509.01746 Distributed, Parallel, and Cluster Computing +1509.02761 Number Theory +1509.03449 Strongly Correlated Electrons +1509.04106 +1509.04528 Chaotic Dynamics +1509.06102 +1509.06715 Cosmology and Nongalactic Astrophysics +1509.07117 Theory +1509.07215 Statistical Mechanics +1509.08778 Networking and Internet Architecture +1510.00066 Analysis of PDEs +1510.00210 Mesoscale and Nanoscale Physics +1510.00958 Data Structures and Algorithms +1510.01206 Lattice +1510.01334 Geophysics +1510.03242 General Topology +1510.03583 Mesoscale and Nanoscale Physics +1510.03606 Number Theory +1510.03903 Computer Science and Game Theory +1510.05229 Computer Science and Game Theory +1510.05347 Theory +1510.06482 Computational Engineering, Finance, and Science +1510.06600 Strongly Correlated Electrons +1510.07658 Phenomenology +1510.08413 Combinatorics +1511.00019 Classical Analysis and ODEs +1511.02074 Data Structures and Algorithms +1511.02507 Analysis of PDEs +1511.02789 Group Theory +1511.02992 Computer Vision and Pattern Recognition +1511.03295 Strongly Correlated Electrons +1511.04412 Learning +1511.05848 +1511.06175 Cosmology and Nongalactic Astrophysics +1511.07408 Theory +1511.07952 Analysis of PDEs +1511.08083 Cosmology and Nongalactic Astrophysics +1511.08723 Databases +1511.09226 Phenomenology +1511.09436 Group Theory +1512.01646 Dynamical Systems +1512.02285 Computer Science and Game Theory +1512.02290 +1512.04785 Computer Vision and Pattern Recognition +1512.05054 Probability +1512.05391 Adaptation and Self-Organizing Systems +1512.05486 Information Theory +1512.05709 +1512.06180 Cosmology and Nongalactic Astrophysics +1512.06398 Combinatorics +1512.06513 Numerical Analysis +1601.00114 Geophysics +1601.00340 Algebraic Geometry +1601.00642 Phenomenology +1601.01207 +1601.01235 Physics Education +1601.01252 Phenomenology +1601.03273 +1601.03408 Statistical Mechanics +1601.03570 Instrumentation and Detectors +1601.05372 Logic in Computer Science +1601.05501 Algebraic Geometry +1601.06033 Materials Science +1601.07529 +1601.07642 +1602.00008 +1602.00070 Social and Information Networks +1602.01129 Geometric Topology +1602.01836 Strongly Correlated Electrons +1602.02141 +1602.02157 Strongly Correlated Electrons +1602.02430 Functional Analysis +1602.03105 Data Structures and Algorithms +1602.03240 +1602.03755 Discrete Mathematics +1602.05183 Digital Libraries +1602.05758 Mathematical Finance +1602.06040 Metric Geometry +1602.06229 Cryptography and Security +1602.06765 Optimization and Control +1602.08144 Optics +1602.08377 Strongly Correlated Electrons +1602.09115 Information Theory +1603.00001 Optimization and Control +1603.00172 +1603.01902 +1603.02066 Algebraic Topology +1603.02147 Phenomenology +1603.02632 Mesoscale and Nanoscale Physics +1603.02679 Cosmology and Nongalactic Astrophysics +1603.03557 Combinatorics +1603.03998 Phenomenology +1603.04131 Neurons and Cognition +1603.04746 Computer Vision and Pattern Recognition +1603.04903 Mesoscale and Nanoscale Physics +1603.05029 Statistical Mechanics +1603.05586 Symplectic Geometry +1603.05897 Neurons and Cognition +1603.05952 Phenomenology +1603.06770 Theory +1603.06968 Plasma Physics +1603.07138 +1603.07448 +1603.08310 Combinatorics +1603.08368 Statistical Mechanics +1603.08560 Rings and Algebras +1603.08615 Analysis of PDEs +1603.09696 Astrophysics of Galaxies +1604.00145 +1604.00697 Neural and Evolutionary Computing +1604.01260 Combinatorics +1604.02199 Optimization and Control +1604.02761 Databases +1604.03543 +1604.03549 High Energy Astrophysical Phenomena +1604.04391 Materials Science +1604.04631 Cosmology and Nongalactic Astrophysics +1604.05081 Superconductivity +1604.05546 Mesoscale and Nanoscale Physics +1604.05728 Phenomenology +1604.06022 Information Theory +1604.06323 Functional Analysis +1604.06401 Strongly Correlated Electrons +1604.06704 Theory +1604.08326 Probability +1604.08671 Computer Vision and Pattern Recognition +1605.00220 Functional Analysis +1605.00643 Astrophysics of Galaxies +1605.01080 Strongly Correlated Electrons +1605.02912 Symbolic Computation +1605.02973 General Physics +1605.03044 Rings and Algebras +1605.04793 Numerical Analysis +1605.05525 Astrophysics of Galaxies +1605.05970 Differential Geometry +1605.06509 Phenomenology +1605.06656 +1605.07030 Data Structures and Algorithms +1605.07515 Computation and Language +1606.00764 Combinatorics +1606.01156 Methodology +1606.01162 Materials Science +1606.02108 +1606.02214 Phenomenology +1606.03650 Numerical Analysis +1606.03699 Quantum Gases +1606.04462 +1606.04463 +1606.04560 Dynamical Systems +1606.04561 Learning +1606.04993 Probability +1606.05033 Combinatorics +1606.05766 Probability +1606.05994 Computation and Language +1606.06160 Neural and Evolutionary Computing +1606.06722 Strongly Correlated Electrons +1606.06794 Information Theory +1606.06873 Multimedia +1606.06928 Solar and Stellar Astrophysics +1606.07279 Machine Learning +1606.08542 Astrophysics of Galaxies +1606.08570 +1606.08707 Formal Languages and Automata Theory +1606.09340 Strongly Correlated Electrons +1606.09443 Algebraic Topology +1606.09474 Materials Science +1606.09581 Learning +1607.00059 Astrophysics of Galaxies +1607.00157 +1607.00735 Algebraic Geometry +1607.00755 +1607.00874 Solar and Stellar Astrophysics +1607.00886 Optimization and Control +1607.00938 Numerical Analysis +1607.01660 Functional Analysis +1607.02022 Statistical Mechanics +1607.02076 +1607.02077 Probability +1607.02175 Dynamical Systems +1607.02250 Computation and Language +1607.02523 Analysis of PDEs +1607.02820 Materials Science +1607.03084 Learning +1607.03291 Logic +1607.03548 Optics +1607.03650 Geometric Topology +1607.03817 Phenomenology +1607.03927 +1607.03970 Phenomenology +1607.04045 Probability +1607.04188 Atomic and Molecular Clusters +1607.04236 Combinatorics +1607.04429 Combinatorics +1607.04470 Operator Algebras +1607.04542 Probability +1607.04544 Probability +1607.04571 Differential Geometry +1607.04581 Algebraic Geometry +1607.04600 Dynamical Systems +1607.04613 High Energy Astrophysical Phenomena +1607.04646 +1607.04653 Medical Physics +1607.04654 Astrophysics of Galaxies +1607.04656 Populations and Evolution +1607.04657 Strongly Correlated Electrons +1607.04660 Computation and Language +1607.04661 Materials Science +1607.04663 Networking and Internet Architecture +1607.04664 Optics +1607.04669 Instrumentation and Detectors +1607.04675 Biological Physics +1607.04676 Representation Theory +1607.04678 Astrophysics of Galaxies +1607.04680 Chemical Physics +1607.04681 Metric Geometry +1607.04682 Materials Science +1607.04684 Algebraic Geometry +1607.04688 General Topology +1607.04691 +1607.04692 Number Theory +1607.04694 +1607.04700 Information Theory +1607.04704 Materials Science +1607.04709 Analysis of PDEs +1607.04710 Computer Science and Game Theory +1607.04712 Instrumentation and Methods for Astrophysics +1607.04715 Quantum Algebra +1607.04717 Quantum Algebra +1607.04719 Analysis of PDEs +1607.04721 Logic in Computer Science +1607.04722 Numerical Analysis +1607.04723 Optics +1607.04725 Information Theory +1607.04727 Classical Analysis and ODEs +1607.04728 Combinatorics +1607.04729 Information Theory +1607.04730 Computer Vision and Pattern Recognition +1607.04731 Computer Vision and Pattern Recognition +1607.04732 Commutative Algebra +1607.04734 Populations and Evolution +1607.04735 Systems and Control +1607.04736 Applications +1607.04737 Risk Management +1607.04738 Materials Science +1607.04739 Risk Management +1607.04741 Combinatorics +1607.04744 +1607.04745 Numerical Analysis +1607.04748 Optimization and Control +1607.04750 Number Theory +1607.04754 Information Theory +1607.04755 Computational Geometry +1607.04756 General Topology +1607.04758 Metric Geometry +1607.04759 Computer Vision and Pattern Recognition +1607.04760 Computer Vision and Pattern Recognition +1607.04763 Robotics +1607.04764 Number Theory +1607.04765 Human-Computer Interaction +1607.04766 Metric Geometry +1607.04767 Mathematical Software +1607.04768 Combinatorics +1607.04769 Dynamical Systems +1607.04770 Computers and Society +1607.04771 Computers and Society +1607.04773 Computer Vision and Pattern Recognition +1607.04777 Data Structures and Algorithms +1607.04778 Algebraic Geometry +1607.04780 Computer Vision and Pattern Recognition +1607.04781 General Topology +1607.04785 Probability +1607.04786 Dynamical Systems +1607.04788 Robotics +1607.04789 Cryptography and Security +1607.04790 Logic +1607.04791 Earth and Planetary Astrophysics +1607.04796 Methodology +1607.04797 Classical Analysis and ODEs +1607.04798 Optimization and Control +1607.04803 Optimization and Control +1607.04804 Atmospheric and Oceanic Physics +1607.04808 Numerical Analysis +1607.04809 Artificial Intelligence +1607.04810 +1607.04811 Cryptography and Security +1607.04812 Systems and Control +1607.04813 Information Theory +1607.04816 Systems and Control +1607.04817 Optimization and Control +1607.04819 Information Theory +1607.04823 Materials Science +1607.04824 Functional Analysis +1607.04827 Classical Physics +1607.04834 Algebraic Geometry +1607.04836 Other Quantitative Biology +1607.04844 Atomic Physics +1607.04846 Statistical Mechanics +1607.04847 Combinatorics +1607.04848 Methodology +1607.04849 Information Theory +1607.04851 Operator Algebras +1607.04852 Algebraic Geometry +1607.04855 Group Theory +1607.04861 Theory +1607.04862 Metric Geometry +1607.04866 Optics +1607.04868 Combinatorics +1607.04873 Commutative Algebra +1607.04875 Physics and Society +1607.04876 Physics and Society +1607.04879 Numerical Analysis +1607.04880 Classical Analysis and ODEs +1607.04881 Robotics +1607.04885 Group Theory +1607.04888 Combinatorics +1607.04890 Group Theory +1607.04894 Computer Science and Game Theory +1607.04895 Earth and Planetary Astrophysics +1607.04897 Quantum Gases +1607.04901 Instrumentation and Methods for Astrophysics +1607.04908 Logic in Computer Science +1607.04915 Group Theory +1607.04922 Mesoscale and Nanoscale Physics +1607.04923 Numerical Analysis +1607.04927 Combinatorics +1607.04930 Combinatorics +1607.04931 Information Theory +1607.04932 Combinatorics +1607.04933 Quantum Algebra +1607.04934 Accelerator Physics +1607.04936 Quantum Algebra +1607.04939 Computer Vision and Pattern Recognition +1607.04942 Computer Vision and Pattern Recognition +1607.04943 Mesoscale and Nanoscale Physics +1607.04944 Functional Analysis +1607.04945 Optics +1607.04946 Algebraic Geometry +1607.04948 Number Theory +1607.04949 Representation Theory +1607.04950 Cryptography and Security +1607.04951 Algebraic Geometry +1607.04953 +1607.04954 Probability +1607.04957 Systems and Control +1607.04959 +1607.04960 +1607.04963 High Energy Astrophysical Phenomena +1607.04965 Computer Vision and Pattern Recognition +1607.04966 High Energy Astrophysical Phenomena +1607.04967 Physics and Society +1607.04968 Mathematical Finance +1607.04971 Robotics +1607.04975 Number Theory +1607.04976 Symplectic Geometry +1607.04979 Materials Science +1607.04982 Computation and Language +1607.04984 Data Structures and Algorithms +1607.04986 Category Theory +1607.04987 Solar and Stellar Astrophysics +1607.04991 Number Theory +1607.04993 Methodology +1607.04996 Materials Science +1607.05002 Machine Learning +1607.05004 Physics and Society +1607.05009 Plasma Physics +1607.05011 Differential Geometry +1607.05013 Mesoscale and Nanoscale Physics +1607.05015 Systems and Control +1607.05021 Mesoscale and Nanoscale Physics +1607.05023 Artificial Intelligence +1607.05024 Cryptography and Security +1607.05026 Disordered Systems and Neural Networks +1607.05031 Combinatorics +1607.05032 History and Philosophy of Physics +1607.05034 Social and Information Networks +1607.05035 Numerical Analysis +1607.05038 Group Theory +1607.05039 Experiment +1607.05042 Methodology +1607.05045 History and Overview +1607.05046 Computer Vision and Pattern Recognition +1607.05047 Machine Learning +1607.05048 Networking and Internet Architecture +1607.05051 Statistics Theory +1607.05052 Mesoscale and Nanoscale Physics +1607.05054 Analysis of PDEs +1607.05061 Differential Geometry +1607.05064 Information Theory +1607.05066 Computer Vision and Pattern Recognition +1607.05067 Complex Variables +1607.05068 Geophysics +1607.05069 Distributed, Parallel, and Cluster Computing +1607.05071 General Physics +1607.05074 Computer Vision and Pattern Recognition +1607.05075 Distributed, Parallel, and Cluster Computing +1607.05077 Artificial Intelligence +1607.05078 +1607.05079 Chemical Physics +1607.05080 Astrophysics of Galaxies +1607.05082 Lattice +1607.05083 Materials Science +1607.05085 Geophysics +1607.05086 Combinatorics +1607.05091 Statistics Theory +1607.05093 Chemical Physics +1607.05094 Physics Education +1607.05096 Classical Analysis and ODEs +1607.05099 Algebraic Topology +1607.05100 Classical Analysis and ODEs +1607.05101 Classical Analysis and ODEs +1607.05102 Classical Analysis and ODEs +1607.05104 Classical Analysis and ODEs +1607.05105 Mesoscale and Nanoscale Physics +1607.05106 Classical Analysis and ODEs +1607.05107 Computational Physics +1607.05108 Neural and Evolutionary Computing +1607.05112 Data Structures and Algorithms +1607.05113 Cryptography and Security +1607.05116 Analysis of PDEs +1607.05119 Classical Analysis and ODEs +1607.05121 Classical Analysis and ODEs +1607.05122 Data Structures and Algorithms +1607.05123 Cosmology and Nongalactic Astrophysics +1607.05125 General Physics +1607.05128 Geophysics +1607.05129 +1607.05130 Information Theory +1607.05133 Computational Complexity +1607.05136 Statistics Theory +1607.05140 Computer Vision and Pattern Recognition +1607.05142 Computation and Language +1607.05144 Information Theory +1607.05146 +1607.05148 Quantum Algebra +1607.05150 Applications +1607.05154 Machine Learning +1607.05155 +1607.05156 Phenomenology +1607.05157 Data Structures and Algorithms +1607.05159 Networking and Internet Architecture +1607.05161 Optimization and Control +1607.05162 Human-Computer Interaction +1607.05166 Classical Analysis and ODEs +1607.05167 Statistics Theory +1607.05169 Methodology +1607.05171 Cryptography and Security +1607.05172 Instrumentation and Methods for Astrophysics +1607.05173 Software Engineering +1607.05174 Human-Computer Interaction +1607.05175 Populations and Evolution +1607.05176 Analysis of PDEs +1607.05177 Computer Vision and Pattern Recognition +1607.05179 Networking and Internet Architecture +1607.05180 Quantum Gases +1607.05181 Geometric Topology +1607.05183 Networking and Internet Architecture +1607.05191 Materials Science +1607.05192 Dynamical Systems +1607.05194 Computer Vision and Pattern Recognition +1607.05195 +1607.05197 Combinatorics +1607.05198 Earth and Planetary Astrophysics +1607.05199 High Energy Astrophysical Phenomena +1607.05201 Probability +1607.05202 Materials Science +1607.05206 Numerical Analysis +1607.05208 Information Retrieval +1607.05209 Optimization and Control +1607.05213 Neural and Evolutionary Computing +1607.05214 Lattice +1607.05217 Robotics +1607.05225 Soft Condensed Matter +1607.05228 Algebraic Geometry +1607.05229 Cryptography and Security +1607.05231 Statistical Mechanics +1607.05241 Computation and Language +1607.05244 Cryptography and Security +1607.05246 Numerical Analysis +1607.05247 Analysis of PDEs +1607.05250 Solar and Stellar Astrophysics +1607.05251 +1607.05253 Materials Science +1607.05256 +1607.05262 +0810.0162 +1101.6053 Phenomenology +1102.2226 +1106.5287 +1111.0003 General Physics +1201.3223 +1204.4843 Dynamical Systems +1207.4520 General Physics +1207.4845 Numerical Analysis +1210.3163 +1210.8359 Differential Geometry +1303.5486 Geometric Topology +1305.7418 Combinatorics +1306.1951 K-Theory and Homology +1306.5643 Statistical Mechanics +1307.5644 +1309.6039 Category Theory +1311.7148 Quantum Gases +1401.0133 Differential Geometry +1403.1595 Theory +1404.2929 Theory +1405.2140 Numerical Analysis +1405.2859 Logic +1405.4596 Symbolic Computation +1407.0462 Networking and Internet Architecture +1407.3673 Computer Vision and Pattern Recognition +1408.0235 Number Theory +1408.6140 Classical Analysis and ODEs +1408.6726 Classical Analysis and ODEs +1409.1021 +1409.3016 +1409.7657 Analysis of PDEs +1410.0885 Robotics +1410.4410 Robotics +1411.2066 Statistics Theory +1411.6523 Dynamical Systems +1411.6855 Phenomenology +1501.00160 Numerical Analysis +1501.00576 Exactly Solvable and Integrable Systems +1501.03989 Cosmology and Nongalactic Astrophysics +1501.06084 Computational Finance +1501.07257 Solar and Stellar Astrophysics +1502.03901 Mathematical Finance +1502.04520 Operator Algebras +1502.05184 Rings and Algebras +1503.03810 Logic +1505.00454 Logic +1505.01990 +1505.03072 Combinatorics +1506.00567 +1506.01354 Cosmology and Nongalactic Astrophysics +1506.08807 Astrophysics of Galaxies +1507.00173 Combinatorics +1507.01600 +1507.05005 +1507.05706 Numerical Analysis +1507.07108 Complex Variables +1507.08039 +1508.00257 Group Theory +1508.02350 Combinatorics +1508.03785 Algebraic Geometry +1508.04095 Information Theory +1508.07666 +1509.04740 Social and Information Networks +1509.07453 Algebraic Geometry +1509.08672 Dynamical Systems +1510.00006 Theory +1510.02723 +1510.04300 Computational Physics +1510.05562 Quantum Gases +1510.07613 Phenomenology +1510.08093 Analysis of PDEs +1510.08461 Astrophysics of Galaxies +1511.02121 Physics Education +1511.02411 Combinatorics +1511.03738 Combinatorics +1511.04413 Geometric Topology +1511.05257 Dynamical Systems +1511.09189 +1511.09448 Geometric Topology +1512.00264 Materials Science +1512.01843 Information Theory +1512.02984 Number Theory +1512.04482 Number Theory +1512.05534 Statistics Theory +1512.06147 Quantum Gases +1512.06290 Statistics Theory +1512.07550 +1601.01797 +1602.01018 Theory +1602.02382 Symplectic Geometry +1602.03138 Strongly Correlated Electrons +1602.04763 Combinatorics +1602.05505 General Physics +1602.06425 Strongly Correlated Electrons +1602.06440 Metric Geometry +1602.07430 Experiment +1602.08304 Numerical Analysis +1602.08926 Mesoscale and Nanoscale Physics +1603.00440 Statistical Mechanics +1603.00531 Learning +1603.01164 Strongly Correlated Electrons +1603.02626 Optimization and Control +1603.04571 Statistics Theory +1603.07027 Computer Vision and Pattern Recognition +1603.08908 Probability +1603.09546 Materials Science +1604.01562 Number Theory +1604.03378 +1604.03519 Computer Vision and Pattern Recognition +1604.04137 Robotics +1604.04970 Computer Vision and Pattern Recognition +1604.06201 +1604.08401 Representation Theory +1604.08748 Strongly Correlated Electrons +1605.00221 +1605.01124 +1605.01417 Cosmology and Nongalactic Astrophysics +1605.01854 Optics +1605.05168 Representation Theory +1605.07615 Theory +1605.07712 Superconductivity +1605.07932 Strongly Correlated Electrons +1606.00123 Numerical Analysis +1606.00753 Social and Information Networks +1606.02133 Solar and Stellar Astrophysics +1606.03009 Chaotic Dynamics +1606.03360 Geometric Topology +1606.04136 Systems and Control +1606.04812 Fluid Dynamics +1606.05613 Optics +1606.06022 Atomic Physics +1606.06046 Optics +1606.06135 Computer Vision and Pattern Recognition +1606.06360 Geometric Topology +1606.08394 +1606.09230 Analysis of PDEs +1606.09453 Theory +1606.09611 Phenomenology +1607.01222 +1607.01717 Phenomenology +1607.02852 +1607.03236 +1607.03715 +1607.03801 Superconductivity +1607.06240 Numerical Analysis +1607.06586 Operator Algebras +1607.06892 Earth and Planetary Astrophysics +1607.07487 High Energy Astrophysical Phenomena +1607.07999 Materials Science +1607.08396 Combinatorics +1607.08552 Neurons and Cognition +1607.08659 Computer Vision and Pattern Recognition +1607.08729 Robotics +1608.01209 +1608.01872 +1608.01960 +1608.02088 Solar and Stellar Astrophysics +1608.02533 Other Statistics +1608.03180 Information Theory +1608.04636 Learning +1608.04675 Combinatorics +1608.04863 Physics and Society +1608.05230 Dynamical Systems +1608.05510 +1608.05511 Phenomenology +1608.05968 Mesoscale and Nanoscale Physics +1608.06966 Quantum Gases +1608.07909 Theory +1608.08274 Theory +1608.08473 Probability +1609.00241 High Energy Astrophysical Phenomena +1609.00562 Quantum Gases +1609.01147 General Mathematics +1609.01870 Data Structures and Algorithms +1609.02166 Classical Analysis and ODEs +1609.02314 Algebraic Geometry +1609.04139 Analysis of PDEs +1609.04228 Statistics Theory +1609.04481 Probability +1609.04791 Geophysics +1609.04883 Probability +1609.07727 Computer Vision and Pattern Recognition +1609.08423 +1609.08440 Representation Theory +1609.09072 Phenomenology +1610.00601 Statistical Mechanics +1610.01024 Materials Science +1610.02145 Statistics Theory +1610.02153 Probability +1610.02598 Fluid Dynamics +1610.02668 Social and Information Networks +1610.02767 Materials Science +1610.02807 Machine Learning +1610.02836 Differential Geometry +1610.03191 Mesoscale and Nanoscale Physics +1610.03464 Popular Physics +1610.03579 Databases +1610.03858 Algebraic Geometry +1610.04017 High Energy Astrophysical Phenomena +1610.04026 Number Theory +1610.04095 Differential Geometry +1610.04125 Quantum Gases +1610.04344 Number Theory +1610.04717 +1610.05165 Solar and Stellar Astrophysics +1610.05287 Artificial Intelligence +1610.05444 High Energy Astrophysical Phenomena +1610.05481 Quantum Gases +1610.05500 Analysis of PDEs +1610.05806 Theory +1610.05859 Accelerator Physics +1610.05943 Cosmology and Nongalactic Astrophysics +1610.06069 Quantum Algebra +1610.06144 Combinatorics +1610.06271 Atomic Physics +1610.06322 Mesoscale and Nanoscale Physics +1610.06365 Strongly Correlated Electrons +1610.06450 Computers and Society +1610.06537 Exactly Solvable and Integrable Systems +1610.06562 Chemical Physics +1610.06563 Phenomenology +1610.06564 Chemical Physics +1610.06566 Astrophysics of Galaxies +1610.06574 Astrophysics of Galaxies +1610.06575 +1610.06581 Phenomenology +1610.06585 Cosmology and Nongalactic Astrophysics +1610.06586 Algebraic Geometry +1610.06587 Phenomenology +1610.06589 Mesoscale and Nanoscale Physics +1610.06592 Analysis of PDEs +1610.06593 Soft Condensed Matter +1610.06595 Astrophysics of Galaxies +1610.06596 Statistical Mechanics +1610.06599 Optimization and Control +1610.06600 Solar and Stellar Astrophysics +1610.06601 Computation and Language +1610.06605 Fluid Dynamics +1610.06606 Tissues and Organs +1610.06608 Tissues and Organs +1610.06609 Earth and Planetary Astrophysics +1610.06610 Commutative Algebra +1610.06612 Algebraic Geometry +1610.06613 Probability +1610.06615 Mesoscale and Nanoscale Physics +1610.06617 Representation Theory +1610.06622 Strongly Correlated Electrons +1610.06624 Combinatorics +1610.06625 Instrumentation and Methods for Astrophysics +1610.06627 High Energy Astrophysical Phenomena +1610.06628 Soft Condensed Matter +1610.06630 +1610.06631 Systems and Control +1610.06632 Computation +1610.06633 Human-Computer Interaction +1610.06634 Algebraic Geometry +1610.06635 Quantum Gases +1610.06636 Physics and Society +1610.06637 +1610.06639 Analysis of PDEs +1610.06640 Applications +1610.06643 High Energy Astrophysical Phenomena +1610.06644 Combinatorics +1610.06646 +1610.06648 Operator Algebras +1610.06655 Optimization and Control +1610.06657 Optics +1610.06658 Physics Education +1610.06659 Information Theory +1610.06663 Group Theory +1610.06664 Machine Learning +1610.06665 Machine Learning +1610.06666 Computer Vision and Pattern Recognition +1610.06667 Computer Vision and Pattern Recognition +1610.06668 Number Theory +1610.06669 Computer Vision and Pattern Recognition +1610.06670 Probability +1610.06671 Computer Vision and Pattern Recognition +1610.06672 Data Structures and Algorithms +1610.06673 Cosmology and Nongalactic Astrophysics +1610.06674 Mesoscale and Nanoscale Physics +1610.06677 Instrumentation and Methods for Astrophysics +1610.06678 Plasma Physics +1610.06679 Geometric Topology +1610.06681 Data Structures and Algorithms +1610.06683 Methodology +1610.06684 Analysis of PDEs +1610.06687 Optics +1610.06689 Complex Variables +1610.06691 Probability +1610.06698 Instrumentation and Detectors +1610.06700 Computation and Language +1610.06701 Data Structures and Algorithms +1610.06703 Social and Information Networks +1610.06704 Mesoscale and Nanoscale Physics +1610.06705 Physics and Society +1610.06706 Complex Variables +1610.06707 Experiment +1610.06708 Atmospheric and Oceanic Physics +1610.06710 Solar and Stellar Astrophysics +1610.06711 Probability +1610.06712 Information Theory +1610.06714 Differential Geometry +1610.06715 Logic in Computer Science +1610.06718 Computer Science and Game Theory +1610.06719 Phenomenology +1610.06720 Dynamical Systems +1610.06721 Cryptography and Security +1610.06722 K-Theory and Homology +1610.06724 Strongly Correlated Electrons +1610.06725 Soft Condensed Matter +1610.06727 Phenomenology +1610.06728 Group Theory +1610.06729 Instrumentation and Methods for Astrophysics +1610.06731 Machine Learning +1610.06732 Soft Condensed Matter +1610.06733 Soft Condensed Matter +1610.06734 Computer Science and Game Theory +1610.06735 Combinatorics +1610.06738 Materials Science +1610.06739 Materials Science +1610.06740 Computer Vision and Pattern Recognition +1610.06741 Logic +1610.06742 Optics +1610.06743 Numerical Analysis +1610.06746 Algebraic Geometry +1610.06747 Numerical Analysis +1610.06748 Numerical Analysis +1610.06749 Medical Physics +1610.06752 Computation +1610.06754 Networking and Internet Architecture +1610.06755 Optimization and Control +1610.06756 Computer Vision and Pattern Recognition +1610.06759 Distributed, Parallel, and Cluster Computing +1610.06761 Machine Learning +1610.06765 Analysis of PDEs +1610.06766 Computers and Society +1610.06768 Programming Languages +1610.06769 Information Theory +1610.06770 Algebraic Geometry +1610.06772 +1610.06774 Statistics Theory +1610.06775 Complex Variables +1610.06782 Theory +1610.06783 Group Theory +1610.06784 Numerical Analysis +1610.06786 Probability +1610.06790 Numerical Analysis +1610.06792 +1610.06793 Optimization and Control +1610.06798 Lattice +1610.06799 Optics +1610.06800 Numerical Analysis +1610.06801 Category Theory +1610.06806 Learning +1610.06807 Superconductivity +1610.06808 K-Theory and Homology +1610.06809 Social and Information Networks +1610.06810 Cryptography and Security +1610.06811 Learning +1610.06813 Materials Science +1610.06814 Numerical Analysis +1610.06815 Computer Vision and Pattern Recognition +1610.06817 Optics +1610.06821 Mesoscale and Nanoscale Physics +1610.06822 +1610.06823 Probability +1610.06824 Strongly Correlated Electrons +1610.06825 Computers and Society +1610.06826 Cosmology and Nongalactic Astrophysics +1610.06827 Analysis of PDEs +1610.06829 Computers and Society +1610.06831 High Energy Astrophysical Phenomena +1610.06833 Optimization and Control +1610.06834 Optimization and Control +1610.06836 Analysis of PDEs +1610.06837 Number Theory +1610.06840 Computational Physics +1610.06841 Number Theory +1610.06844 Numerical Analysis +1610.06845 Information Theory +1610.06847 Medical Physics +1610.06851 Classical Analysis and ODEs +1610.06852 Analysis of PDEs +1610.06853 Information Theory +1610.06855 Computers and Society +1610.06856 Cryptography and Security +1610.06858 Materials Science +1610.06861 Methodology +1610.06862 Analysis of PDEs +1610.06866 Plasma Physics +1610.06868 Chemical Physics +1610.06869 Functional Analysis +1610.06870 Symplectic Geometry +1610.06871 Algebraic Topology +1610.06875 Fluid Dynamics +1610.06876 +1610.06877 Pattern Formation and Solitons +1610.06878 Algebraic Geometry +1610.06879 Algebraic Geometry +1610.06880 Optimization and Control +1610.06883 +1610.06884 Soft Condensed Matter +1610.06885 Mesoscale and Nanoscale Physics +1610.06888 Analysis of PDEs +1610.06889 +1610.06890 Cosmology and Nongalactic Astrophysics +1610.06891 +1610.06892 Instrumentation and Methods for Astrophysics +1610.06894 Functional Analysis +1610.06895 Computers and Society +1610.06897 +1610.06900 Number Theory +1610.06901 Analysis of PDEs +1610.06902 Machine Learning +1610.06903 Computer Vision and Pattern Recognition +1610.06904 Analysis of PDEs +1610.06907 Computer Vision and Pattern Recognition +1610.06908 Category Theory +1610.06913 Atomic and Molecular Clusters +1610.06915 Rings and Algebras +1610.06918 Cryptography and Security +quant-ph/0504086 +0706.3850 +0711.2145 +0805.0263 +0811.0213 Phenomenology +0812.3219 +0812.3772 +0903.3640 Phenomenology +0905.2547 Applications +0912.4038 Cosmology and Nongalactic Astrophysics +1003.2762 +1005.2883 Operator Algebras +1012.0261 Phenomenology +1102.0335 Disordered Systems and Neural Networks +1102.2254 Machine Learning +1104.0705 Representation Theory +1109.5280 Tissues and Organs +1110.6816 Algebraic Geometry +1201.2719 Artificial Intelligence +1202.5285 Rings and Algebras +1203.1660 Probability +1204.1115 Soft Condensed Matter +1204.1321 Mesoscale and Nanoscale Physics +1206.0345 +1207.6333 Quantum Algebra +1211.5273 Algebraic Geometry +1212.1789 Logic +1302.0232 Mesoscale and Nanoscale Physics +1302.0518 Phenomenology +1302.6564 Statistical Mechanics +1303.5385 Analysis of PDEs +1304.0867 Category Theory +1304.4745 +1304.5616 Rings and Algebras +1305.3464 Algebraic Geometry +1305.7325 Populations and Evolution +1306.3345 +1306.3618 Information Theory +1307.6383 +1308.6681 Rings and Algebras +1309.0171 Rings and Algebras +1310.5520 Physics and Society +1310.7231 Cosmology and Nongalactic Astrophysics +1311.1549 Biological Physics +1311.2501 Logic +1311.6602 Numerical Analysis +1312.4307 Analysis of PDEs +1312.7828 +1401.0326 Analysis of PDEs +1401.1802 Rings and Algebras +1401.3681 Probability +1401.7941 Artificial Intelligence +1402.4549 Combinatorics +1402.4582 Soft Condensed Matter +1403.7988 Combinatorics +1404.7258 Differential Geometry +1405.0699 Geometric Topology +1405.3003 Analysis of PDEs +1405.6291 Logic +1406.1357 Earth and Planetary Astrophysics +1406.2951 Data Structures and Algorithms +1406.3669 Number Theory +1406.5480 Data Structures and Algorithms +1407.6522 +1407.8395 Functional Analysis +1408.0543 Group Theory +1408.1199 Soft Condensed Matter +1408.5269 Biological Physics +1408.5672 Geometric Topology +1409.3210 Group Theory +1409.3559 Group Theory +1409.3888 Algebraic Geometry +1409.5844 Information Theory +1409.6901 Differential Geometry +1409.7248 Probability +1409.7520 Networking and Internet Architecture +1410.1007 Number Theory +1410.1732 Representation Theory +1410.5702 Representation Theory +1411.4513 Materials Science +1411.6797 +1412.0128 +1412.6188 +1412.8716 Strongly Correlated Electrons +1501.01147 Combinatorics +1501.04853 Symplectic Geometry +1501.05202 Numerical Analysis +1501.05865 Superconductivity +1502.00702 Learning +1502.02177 Combinatorics +1502.03661 Theory +1502.04723 +1502.06448 Number Theory +1502.07770 Computer Vision and Pattern Recognition +1503.02207 Combinatorics +1503.02438 Rings and Algebras +1503.02465 Quantum Algebra +1503.03687 +1503.04426 Data Structures and Algorithms +1503.04565 Algebraic Geometry +1503.05074 Genomics +1503.05339 Probability +1503.08139 +1503.08500 Statistical Mechanics +1503.08519 Operator Algebras +1504.01294 Statistics Theory +1504.01750 Strongly Correlated Electrons +1504.03050 Fluid Dynamics +1504.03754 Networking and Internet Architecture +1504.04050 +1504.05714 Applications +1504.08143 Analysis of PDEs +1505.01410 Computational Geometry +1505.02679 Atmospheric and Oceanic Physics +1505.03046 Computer Vision and Pattern Recognition +1505.04526 Representation Theory +1505.06941 Category Theory +1505.07581 Commutative Algebra +1505.07770 +1505.07888 +1505.08054 Differential Geometry +1505.08103 Optics +1506.02565 Computer Vision and Pattern Recognition +1506.02921 Analysis of PDEs +1506.03114 Theory +1506.03196 Algebraic Geometry +1506.03816 Strongly Correlated Electrons +1506.05425 Numerical Analysis +1506.07764 General Physics +1506.08116 Disordered Systems and Neural Networks +1506.08800 Databases +1506.08899 Numerical Analysis +1506.09083 Rings and Algebras +1507.00386 Soft Condensed Matter +1507.00601 +1507.00766 +1507.01017 +1507.01274 Statistical Mechanics +1507.02216 Applications +1507.02254 Theory +1507.02552 Quantum Gases +1507.03513 Programming Languages +1507.03820 Analysis of PDEs +1507.04038 Mesoscale and Nanoscale Physics +1507.04381 Chaotic Dynamics +1507.06125 Mesoscale and Nanoscale Physics +1507.06788 +1507.07505 Computer Vision and Pattern Recognition +1507.08670 Probability +1508.00191 Numerical Analysis +1508.00952 Optimization and Control +1508.02653 Mesoscale and Nanoscale Physics +1508.03913 Probability +1508.04739 Instrumentation and Detectors +1508.05671 Dynamical Systems +1508.05748 Number Theory +1508.05988 Plasma Physics +1508.06496 Optimization and Control +1508.06580 +1508.07951 Social and Information Networks +1509.01598 Phenomenology +1509.02325 Networking and Internet Architecture +1509.02398 +1509.03024 Fluid Dynamics +1509.03294 Differential Geometry +1509.04883 +1509.04949 Representation Theory +1509.06401 Theory +1509.07772 Strongly Correlated Electrons +1509.07915 Algebraic Topology +1509.07983 Information Theory +1509.08506 Disordered Systems and Neural Networks +1509.08999 Computation +1509.09120 Computation +1509.09156 Fluid Dynamics +1510.00221 Algebraic Geometry +1510.00935 Commutative Algebra +1510.01133 Accelerator Physics +1510.01938 Materials Science +1510.02216 Logic +1510.02488 Mesoscale and Nanoscale Physics +1510.02659 Computational Geometry +1510.02899 Computer Vision and Pattern Recognition +1510.03720 Experiment +1510.03910 Mesoscale and Nanoscale Physics +1510.04937 Strongly Correlated Electrons +1510.05384 Superconductivity +1510.05785 +1510.06070 +1510.06096 Optimization and Control +1510.06316 Phenomenology +1510.06423 Machine Learning +1510.06501 Cryptography and Security +1510.07494 Physics and Society +1510.08008 Mesoscale and Nanoscale Physics +1511.00205 Optimization and Control +1511.00523 Computer Science and Game Theory +1511.00853 Theory +1511.01104 Theory +1511.01409 Populations and Evolution +1511.01844 Machine Learning +1511.02138 Experiment +1511.02305 Optics +1511.02690 Quantum Gases +1511.02847 +1511.03961 Information Theory +1511.04101 Cosmology and Nongalactic Astrophysics +1511.04127 +1511.04262 +1511.05149 Astrophysics of Galaxies +1511.05202 Information Retrieval +1511.05641 Learning +1511.06343 Learning +1511.06771 Number Theory +1511.07078 Disordered Systems and Neural Networks +1511.08124 Superconductivity +1511.08715 Information Theory +1511.09175 Classical Analysis and ODEs +1512.00550 Logic in Computer Science +1512.02213 Strongly Correlated Electrons +1512.02876 +1512.03659 General Physics +1512.03820 Mesoscale and Nanoscale Physics +1512.03830 General Physics +1512.04060 Methodology +1512.04851 +1512.05163 Numerical Analysis +1512.05214 Physics and Society +1512.06062 Analysis of PDEs +1512.07016 +1512.07514 Combinatorics +1512.07545 Superconductivity +1512.08183 Computation and Language +1512.09182 Other Condensed Matter +1601.00062 Machine Learning +1601.00238 Machine Learning +1601.00683 Materials Science +1601.03061 Networking and Internet Architecture +1601.03069 Chemical Physics +1601.03845 Mesoscale and Nanoscale Physics +1601.04623 Algebraic Geometry +1601.04775 Rings and Algebras +1601.06370 +1601.07049 Classical Analysis and ODEs +1601.07483 Artificial Intelligence +1601.07490 Strongly Correlated Electrons +1601.07643 Analysis of PDEs +1601.08085 Rings and Algebras +1602.00286 +1602.00616 Atomic Physics +1602.00940 Phenomenology +1602.01702 Instrumentation and Detectors +1602.02154 Cosmology and Nongalactic Astrophysics +1602.02192 Probability +1602.03276 Analysis of PDEs +1602.04259 Artificial Intelligence +1602.04275 Algebraic Geometry +1602.04559 +1602.05049 Analysis of PDEs +1602.05954 Strongly Correlated Electrons +1602.06832 Systems and Control +1602.07328 Category Theory +1602.07443 Astrophysics of Galaxies +1602.08240 Analysis of PDEs +1602.09132 Combinatorics +1603.00056 Cosmology and Nongalactic Astrophysics +1603.00075 +1603.00306 Materials Science +1603.00915 Analysis of PDEs +1603.01580 Statistical Finance +1603.02130 Software Engineering +1603.02251 Theory +1603.02398 +1603.02705 Databases +1603.03261 +1603.03288 Phenomenology +1603.03414 +1603.03549 Experiment +1603.07060 Number Theory +1603.07460 Statistics Theory +1603.08441 Astrophysics of Galaxies +1603.09162 Classical Analysis and ODEs +1604.00119 Computation and Language +1604.00437 Analysis of PDEs +1604.00538 Solar and Stellar Astrophysics +1604.00604 Representation Theory +1604.00655 Algebraic Topology +1604.01550 Data Structures and Algorithms +1604.01567 Materials Science +1604.01626 Chemical Physics +1604.02376 Computer Vision and Pattern Recognition +1604.02898 Computer Vision and Pattern Recognition +1604.02908 Combinatorics +1604.03036 +1604.03578 Phenomenology +1604.03645 Analysis of PDEs +1604.03695 Information Theory +1604.04295 Logic in Computer Science +1604.04343 Optimization and Control +1604.04818 Information Theory +1604.04889 Operator Algebras +1604.04932 Cosmology and Nongalactic Astrophysics +1604.04935 Populations and Evolution +1604.05016 Instrumentation and Detectors +1604.05242 Computer Vision and Pattern Recognition +1604.05519 Computation and Language +1604.05664 Quantum Gases +1604.06224 Analysis of PDEs +1604.06364 Functional Analysis +1604.06381 Theory +1604.06518 Learning +1604.06530 Commutative Algebra +1604.06563 Popular Physics +1604.06564 Popular Physics +1604.06568 Statistics Theory +1604.06611 Analysis of PDEs +1604.06685 Digital Libraries +1604.06773 History and Philosophy of Physics +1604.06794 History and Overview +1604.06796 Medical Physics +1604.06798 Differential Geometry +1604.06809 Theory +1604.06813 Analysis of PDEs +1604.06817 Chemical Physics +1604.06818 Robotics +1604.06824 +1604.06830 Numerical Analysis +1604.06831 Materials Science +1604.06832 Computer Vision and Pattern Recognition +1604.06833 Combinatorics +1604.06837 Methodology +1604.06843 Algebraic Geometry +1604.06845 History and Philosophy of Physics +1604.06846 Probability +1604.06848 Information Theory +1604.06849 Artificial Intelligence +1604.06850 Mesoscale and Nanoscale Physics +1604.06852 Computer Vision and Pattern Recognition +1604.06853 Distributed, Parallel, and Cluster Computing +1604.06854 Chemical Physics +1604.06855 Medical Physics +1604.06862 Combinatorics +1604.06864 Numerical Analysis +1604.06865 Optics +1604.06867 Algebraic Geometry +1604.06870 +1604.06871 Solar and Stellar Astrophysics +1604.06872 Optics +1604.06874 Statistics Theory +1604.06875 Materials Science +1604.06877 Computer Vision and Pattern Recognition +1604.06880 Exactly Solvable and Integrable Systems +1604.06882 Atomic Physics +1604.06886 Classical Analysis and ODEs +1604.06887 Superconductivity +1604.06888 Analysis of PDEs +1604.06892 Portfolio Management +1604.06894 Combinatorics +1604.06897 General Physics +1604.06898 General Mathematics +1604.06901 Logic +1604.06903 Number Theory +1604.06907 Representation Theory +1604.06911 Operator Algebras +1604.06913 Operator Algebras +1604.06914 Algebraic Geometry +1604.06915 Learning +1604.06919 Algebraic Geometry +1604.06922 Biomolecules +1604.06923 Numerical Analysis +1604.06926 Fluid Dynamics +1604.06927 Numerical Analysis +1604.06929 Neural and Evolutionary Computing +1604.06930 Number Theory +1604.06932 +1604.06933 Numerical Analysis +1604.06943 Probability +1604.06946 History and Philosophy of Physics +1604.06948 Phenomenology +1604.06949 History and Philosophy of Physics +1604.06950 Functional Analysis +1604.06951 Dynamical Systems +1604.06954 Artificial Intelligence +1604.06957 Analysis of PDEs +1604.06961 Information Theory +1604.06962 Earth and Planetary Astrophysics +1604.06964 Cryptography and Security +1604.06970 Artificial Intelligence +1604.06971 Information Theory +1604.06972 High Energy Astrophysical Phenomena +1604.06973 +1604.06976 Social and Information Networks +1604.06978 Group Theory +1604.06979 Computer Vision and Pattern Recognition +1604.06981 Analysis of PDEs +1604.06982 Atomic and Molecular Clusters +1604.06983 Information Theory +1604.06988 Algebraic Topology +1604.06989 Materials Science +1604.06991 Dynamical Systems +1604.06992 Classical Analysis and ODEs +1604.06995 History and Overview +1604.06996 Information Theory +1604.06997 Data Structures and Algorithms +1604.07004 Algebraic Geometry +1604.07011 +1604.07012 Fluid Dynamics +1604.07014 Classical Analysis and ODEs +1604.07015 Classical Analysis and ODEs +1604.07017 Geophysics +1604.07018 Differential Geometry +1604.07019 Probability +1604.07020 Classical Analysis and ODEs +1604.07021 Logic +1604.07023 Combinatorics +1604.07025 Materials Science +1604.07026 Information Theory +1604.07029 Classical Analysis and ODEs +1604.07030 Logic in Computer Science +1604.07031 Methodology +1604.07034 Logic +1604.07037 Classical Analysis and ODEs +1604.07038 Data Structures and Algorithms +1604.07039 Statistics Theory +1604.07040 Phenomenology +1604.07041 Analysis of PDEs +1604.07042 Risk Management +1604.07044 Information Retrieval +1604.07047 Complex Variables +1604.07048 Information Theory +1604.07049 Optimization and Control +1604.07051 Multimedia +1604.07054 Astrophysics of Galaxies +1604.07055 Commutative Algebra +1604.07058 Analysis of PDEs +1604.07060 Computer Vision and Pattern Recognition +1604.07062 Computational Complexity +1604.07064 Formal Languages and Automata Theory +1604.07065 Complex Variables +1604.07074 Physics Education +1604.07078 Learning +1604.07080 Computation +1604.07083 Differential Geometry +1604.07084 Computer Science and Game Theory +1604.07085 Phenomenology +1604.07087 Methodology +1604.07093 Computer Vision and Pattern Recognition +1604.07094 Optimization and Control +1604.07095 Artificial Intelligence +1604.07096 Social and Information Networks +1604.07098 Applications +1604.07099 Computational Geometry +1604.07100 Computational Geometry +1604.07102 Computer Vision and Pattern Recognition +1604.07104 Statistics Theory +1604.07105 Operator Algebras +1604.07107 Analysis of PDEs +1604.07108 Neural and Evolutionary Computing +1604.07109 Populations and Evolution +1604.07110 Populations and Evolution +1604.07111 Optimization and Control +1604.07116 Complex Variables +1604.07117 Analysis of PDEs +1604.07119 Physics and Society +1604.07121 Emerging Technologies +1604.07124 Networking and Internet Architecture +1604.07130 Optimization and Control +1604.07133 Group Theory +1604.07136 Fluid Dynamics +1604.07138 Computational Engineering, Finance, and Science +1604.07140 Algebraic Geometry +1604.07142 Dynamical Systems +1604.07143 Machine Learning +1604.07150 Materials Science +1604.07151 Information Theory +1604.07153 Data Structures and Algorithms +1604.07157 Information Theory +1604.07158 Other Condensed Matter +1604.07161 Mesoscale and Nanoscale Physics +1604.07163 Mathematical Software +1604.07168 Materials Science +1604.07169 Programming Languages +1604.07172 Theory +1604.07173 +1604.07174 Probability +1604.07177 Computation +1604.07178 Learning +1604.07179 Networking and Internet Architecture +1604.07180 Databases +1604.07181 Logic +1604.07182 Distributed, Parallel, and Cluster Computing +1604.07184 Phenomenology +1604.07185 Chemical Physics +1604.07188 Numerical Analysis +1604.07189 Probability +1604.07194 Numerical Analysis +1604.07196 Information Theory +1604.07199 Optimization and Control +1604.07202 Databases +1604.07206 Probability +1604.07207 Analysis of PDEs +1604.07208 Phenomenology +1604.07209 Information Retrieval +1604.07211 Multimedia +1604.07215 Numerical Analysis +1604.07216 Number Theory +1604.07217 General Physics +1604.07219 Analysis of PDEs +1604.07220 Dynamical Systems +1604.07224 Robotics +1604.07225 Logic +1604.07226 Earth and Planetary Astrophysics +1604.07227 Group Theory +1604.07228 Numerical Analysis +1604.07231 Instrumentation and Detectors +1604.07232 Instrumentation and Detectors +1604.07234 Information Theory +1604.07235 Fluid Dynamics +1604.07239 Soft Condensed Matter +1604.07240 Complex Variables +1604.07242 Mathematical Software +1604.07245 Metric Geometry +1604.07248 General Mathematics +1604.07256 Numerical Analysis +1604.07257 Functional Analysis +1604.07260 Functional Analysis +1604.07261 Optimization and Control +1604.07266 Soft Condensed Matter +1604.07267 Group Theory +1604.07268 Combinatorics +1604.07269 Neural and Evolutionary Computing +1604.07272 Classical Physics +1604.07273 Combinatorics +1604.07275 Computational Physics +1604.07279 Computer Vision and Pattern Recognition +1604.07283 Combinatorics +1604.07293 Dynamical Systems +1604.07297 Materials Science +1604.07299 Applications +1604.07301 Representation Theory +1604.07305 Complex Variables +1604.07307 Combinatorics +1604.07308 Fluid Dynamics +1604.07311 Methodology +1604.07312 Artificial Intelligence +1604.07315 Information Theory +1604.07316 Computer Vision and Pattern Recognition +1604.07317 Strongly Correlated Electrons +1604.07319 Computer Vision and Pattern Recognition +1604.07329 Logic +1604.07332 Phenomenology +1604.07333 Representation Theory +1604.07335 Computer Vision and Pattern Recognition +1604.07336 Phenomenology +1604.07339 Multimedia +1604.07343 Data Analysis, Statistics and Probability +1604.07345 General Physics +1604.07346 Differential Geometry +1604.07348 +1604.07350 Probability +1604.07352 Probability +1604.07355 +1604.07356 Machine Learning +1604.07358 Phenomenology +1604.07360 Computer Vision and Pattern Recognition +1604.07363 Systems and Control +1604.07366 +1604.07369 Statistical Mechanics +1604.07371 Distributed, Parallel, and Cluster Computing +1604.07374 +1604.07377 Analysis of PDEs +1604.07378 Graphics +1604.07381 Analysis of PDEs +1604.07383 Theory +1604.07386 Information Theory +astro-ph/0310076 +astro-ph/0311612 +astro-ph/0606247 +astro-ph/0607174 +astro-ph/0609192 +astro-ph/0609701 +astro-ph/0610230 +astro-ph/0611607 +gr-qc/0505088 +gr-qc/0508018 +gr-qc/0608083 +hep-ex/0404026 Experiment +hep-ex/0408086 Experiment +hep-lat/9208026 Lattice +hep-ph/0308259 Phenomenology +hep-ph/0603064 Phenomenology +hep-ph/9309303 Phenomenology +hep-th/0109007 Theory +hep-th/0512231 Theory +hep-th/0603112 Theory +hep-th/0611150 Theory +math/0312387 Algebraic Topology +math/0506352 Algebraic Topology +nucl-th/0401025 +physics/0101057 General Physics +physics/0410158 Instrumentation and Detectors +physics/0504142 Instrumentation and Detectors +physics/0612135 Instrumentation and Detectors +quant-ph/0203144 +quant-ph/0310033 +1006.4541 Operator Algebras +1101.1200 Operator Algebras +1202.1617 Statistics Theory +1202.4018 General Topology +1204.2858 +1211.6281 Algebraic Geometry +1301.6112 Optimization and Control +1302.2534 Probability +1302.6416 Optimization and Control +1306.1400 Number Theory +1306.2757 +1308.6134 Probability +1309.5354 Operator Algebras +1310.4783 Statistics Theory +1312.2542 Chaotic Dynamics +1312.3295 Networking and Internet Architecture +1312.4485 Probability +1402.0539 Algebraic Geometry +1402.2880 Chemical Physics +1403.0245 Probability +1403.0527 Statistics Theory +1404.2242 Probability +1404.3658 Probability +1405.4082 Chemical Physics +1405.5024 Information Theory +1406.1675 Populations and Evolution +1406.3325 Statistics Theory +1408.3672 Chemical Physics +1408.3754 +1408.3919 Probability +1409.3671 Chemical Physics +1409.6644 Systems and Control +1410.5654 Commutative Algebra +1410.7440 Number Theory +1411.3557 Algebraic Geometry +1412.2725 Probability +1412.4390 Probability +1501.01148 Strongly Correlated Electrons +1501.03764 Probability +1502.02560 Algebraic Geometry +1502.03955 Statistics Theory +1503.00836 +1503.02950 Combinatorics +1503.05967 Algebraic Geometry +1504.05129 Theory +1504.08113 Quantum Gases +1505.00251 Robotics +1505.00778 Cosmology and Nongalactic Astrophysics +1505.01863 +1505.05451 Artificial Intelligence +1505.06792 Information Retrieval +1506.00165 Learning +1506.01532 Materials Science +1506.02261 Combinatorics +1506.02272 Representation Theory +1506.02286 Quantitative Methods +1506.06998 Methodology +1507.03647 Populations and Evolution +1507.04125 Computer Vision and Pattern Recognition +1507.04126 Computer Vision and Pattern Recognition +1507.04775 Physics and Society +1508.02176 Probability +1508.02281 +1508.02318 Symplectic Geometry +1509.00704 Disordered Systems and Neural Networks +1509.03443 Algebraic Geometry +1509.05394 Instrumentation and Detectors +1509.07162 Algebraic Geometry +1509.08846 Plasma Physics +1510.01987 Solar and Stellar Astrophysics +1510.04740 Statistics Theory +1510.08739 Number Theory +1511.00020 Number Theory +1511.00757 +1511.01482 Theory +1511.03296 Computer Vision and Pattern Recognition +1511.03755 +1511.04971 Theory +1511.07317 Number Theory +1511.08372 Plasma Physics +1511.09120 Robotics +1511.09329 Information Theory +1512.01189 +1512.02704 Superconductivity +1512.03181 Analysis of PDEs +1512.04481 Computation +1512.07262 Probability +1512.07653 +1512.08511 Geophysics +1512.09100 Disordered Systems and Neural Networks +1601.00034 Machine Learning +1601.00156 +1601.00161 +1601.01860 Superconductivity +1601.03523 Data Structures and Algorithms +1601.04465 Algebraic Geometry +1601.06075 Physics and Society +1602.00635 Solar and Stellar Astrophysics +1602.01501 Probability +1602.01798 Theory +1602.02119 Solar and Stellar Astrophysics +1602.02190 Cell Behavior +1602.03377 Phenomenology +1602.04679 Optimization and Control +1602.06157 Robotics +1602.06297 Astrophysics of Galaxies +1602.07923 Accelerator Physics +1602.08305 Mesoscale and Nanoscale Physics +1603.01082 Robotics +1603.01386 Probability +1603.01604 Materials Science +1603.03093 Mesoscale and Nanoscale Physics +1603.04748 Solar and Stellar Astrophysics +1603.04753 Soft Condensed Matter +1603.04873 Mesoscale and Nanoscale Physics +1603.08402 Number Theory +1603.09243 +1603.09399 +1603.09660 Numerical Analysis +1603.09700 Differential Geometry +1604.00308 Dynamical Systems +1604.00381 Networking and Internet Architecture +1604.04500 Materials Science +1604.05271 Soft Condensed Matter +1604.07122 Astrophysics of Galaxies +1604.07370 Computation and Language +1605.01193 Theory +1605.03018 Soft Condensed Matter +1605.03549 Combinatorics +1605.03878 Atomic Physics +1605.04015 Mesoscale and Nanoscale Physics +1605.04425 +1605.04550 Statistical Mechanics +1605.05785 Statistics Theory +1605.06975 +1605.07605 Instrumentation and Detectors +1605.08681 Phenomenology +1606.00102 Representation Theory +1606.02251 General Physics +1606.02686 Performance +1606.02988 +1606.03526 Astrophysics of Galaxies +1606.05301 Quantum Algebra +1606.06161 Functional Analysis +1606.08169 Optics +1606.08335 Differential Geometry +1606.08566 Strongly Correlated Electrons +1606.09475 Materials Science +1607.01259 +1607.01405 Superconductivity +1607.01620 Statistical Mechanics +1607.01903 Combinatorics +1607.02540 +1607.02683 Dynamical Systems +1607.04623 +1607.04911 Data Structures and Algorithms +1607.05037 Networking and Internet Architecture +1607.05679 +1607.05745 High Energy Astrophysical Phenomena +1607.05867 Computational Engineering, Finance, and Science +1607.05889 Number Theory +1607.06067 Optimization and Control +1607.06359 Human-Computer Interaction +1607.06454 Group Theory +1607.06455 Instrumentation and Methods for Astrophysics +1607.06456 Group Theory +1607.06460 +1607.06467 Cosmology and Nongalactic Astrophysics +1607.06469 Optics +1607.06472 High Energy Astrophysical Phenomena +1607.06479 Astrophysics of Galaxies +1607.06480 High Energy Astrophysical Phenomena +1607.06482 Solar and Stellar Astrophysics +1607.06483 Differential Geometry +1607.06486 +1607.06487 Earth and Planetary Astrophysics +1607.06490 Classical Analysis and ODEs +1607.06492 +1607.06500 Theory +1607.06501 Quantum Gases +1607.06502 Probability +1607.06503 Mesoscale and Nanoscale Physics +1607.06506 Theory +1607.06508 Probability +1607.06509 Combinatorics +1607.06510 Biological Physics +1607.06514 Computer Vision and Pattern Recognition +1607.06515 Computers and Society +1607.06520 Computation and Language +1607.06522 Soft Condensed Matter +1607.06525 Learning +1607.06529 K-Theory and Homology +1607.06532 Computation and Language +1607.06539 Computational Geometry +1607.06544 Distributed, Parallel, and Cluster Computing +1607.06545 Number Theory +1607.06548 Superconductivity +1607.06552 Phenomenology +1607.06553 Geometric Topology +1607.06555 Theory +1607.06556 Computation and Language +1607.06559 Phenomenology +1607.06560 Computation and Language +1607.06563 Neurons and Cognition +1607.06564 Statistics Theory +1607.06565 Methodology +1607.06566 Phenomenology +1607.06569 Optimization and Control +1607.06570 Mesoscale and Nanoscale Physics +1607.06575 Superconductivity +1607.06576 Rings and Algebras +1607.06577 +1607.06580 Complex Variables +1607.06581 Systems and Control +1607.06583 Computer Vision and Pattern Recognition +1607.06585 +1607.06587 Human-Computer Interaction +1607.06594 Mesoscale and Nanoscale Physics +1607.06595 Materials Science +1607.06599 Analysis of PDEs +1607.06601 Instrumentation and Methods for Astrophysics +1607.06603 Logic +1607.06607 Number Theory +1607.06609 Experiment +1607.06616 +1607.06617 Artificial Intelligence +1607.06618 Data Structures and Algorithms +1607.06619 Cryptography and Security +1607.06620 Robotics +1607.06623 Optimization and Control +1607.06624 Probability +1607.06625 Number Theory +1607.06630 +1607.06632 Dynamical Systems +1607.06633 +1607.06638 Analysis of PDEs +1607.06640 Biological Physics +1607.06644 Probability +1607.06646 Analysis of PDEs +1607.06647 Representation Theory +1607.06648 Analysis of PDEs +1607.06650 +1607.06651 Optimization and Control +1607.06652 Probability +1607.06653 Analysis of PDEs +1607.06655 Metric Geometry +1607.06658 Distributed, Parallel, and Cluster Computing +1607.06660 Data Structures and Algorithms +1607.06663 +1607.06667 Sound +1607.06670 Theory +1607.06673 Mesoscale and Nanoscale Physics +1607.06674 Distributed, Parallel, and Cluster Computing +1607.06675 +1607.06676 Computer Vision and Pattern Recognition +1607.06677 Analysis of PDEs +1607.06679 Combinatorics +1607.06681 Number Theory +1607.06683 Biological Physics +1607.06685 Applications +1607.06688 Distributed, Parallel, and Cluster Computing +1607.06689 Analysis of PDEs +1607.06690 Mesoscale and Nanoscale Physics +1607.06699 Statistics Theory +1607.06700 Discrete Mathematics +1607.06704 Numerical Analysis +1607.06707 Optics +1607.06709 Cryptography and Security +1607.06711 Computational Complexity +1607.06712 +1607.06714 Logic +1607.06721 Computers and Society +1607.06725 History and Philosophy of Physics +1607.06728 Analysis of PDEs +1607.06733 Probability +1607.06737 Functional Analysis +1607.06740 Physics and Society +1607.06744 Dynamical Systems +1607.06745 Materials Science +1607.06747 Spectral Theory +1607.06748 Probability +1607.06749 Optics +1607.06751 Data Structures and Algorithms +1607.06753 Optics +1607.06759 Artificial Intelligence +1607.06762 Statistics Theory +1607.06763 Methodology +1607.06765 Computer Science and Game Theory +1607.06766 Strongly Correlated Electrons +1607.06774 Differential Geometry +1607.06776 Atomic Physics +1607.06778 Systems and Control +1607.06781 Learning +1607.06783 Computer Vision and Pattern Recognition +1607.06784 Group Theory +1607.06785 Combinatorics +1607.06786 Phenomenology +1607.06787 Computer Vision and Pattern Recognition +1607.06788 Statistical Mechanics +1607.06789 Materials Science +1607.06791 +1607.06793 Information Theory +1607.06795 Social and Information Networks +1607.06796 Analysis of PDEs +1607.06800 Soft Condensed Matter +cond-mat/0606439 Other Condensed Matter +0705.4143 General Physics +0812.3754 Rings and Algebras +0902.1824 Rings and Algebras +0912.1918 Cryptography and Security +1102.1131 Operator Algebras +1201.5880 Symplectic Geometry +1207.0428 +1210.2987 Computational Complexity +1304.3358 Combinatorics +1309.3039 Artificial Intelligence +1312.5059 Logic +1401.6094 Theory +1401.8153 General Topology +1403.2585 Probability +1404.2910 Statistics Theory +1404.7493 Portfolio Management +1407.1636 +1407.8531 Dynamical Systems +1409.5111 Materials Science +1409.6326 Group Theory +1409.7957 +1410.0062 Metric Geometry +1410.3973 Combinatorics +1410.6054 Representation Theory +1410.8715 Mesoscale and Nanoscale Physics +1410.8800 Optics +1411.2368 Spectral Theory +1411.3465 Phenomenology +1412.1005 Numerical Analysis +1412.5308 Algebraic Geometry +1412.5975 Probability +1412.7217 Number Theory +1412.7731 +1412.7868 Learning +1501.00589 Quantum Algebra +1501.00710 Combinatorics +1501.01941 Databases +1501.04295 Differential Geometry +1502.07011 Phenomenology +1503.02300 Systems and Control +1503.09119 Materials Science +1504.00059 Mesoscale and Nanoscale Physics +1504.03674 K-Theory and Homology +1504.03795 Phenomenology +1505.05911 +1506.00961 Classical Analysis and ODEs +1506.01046 Theory +1506.03223 Differential Geometry +1506.05681 Number Theory +1506.07439 Computer Vision and Pattern Recognition +1507.01266 Physics and Society +1507.01488 +1507.03184 +1507.06121 Methodology +1508.03075 Superconductivity +1508.04406 Number Theory +1508.05532 Combinatorics +1508.06285 Quantum Gases +1509.03532 Algebraic Geometry +1509.05683 Algebraic Geometry +1509.06406 Symplectic Geometry +1510.01546 Soft Condensed Matter +1510.01890 Probability +1510.02513 Neural and Evolutionary Computing +1510.04038 Cosmology and Nongalactic Astrophysics +1510.07559 +1511.03159 Mathematical Finance +1511.05579 +1511.09409 Phenomenology +1512.01558 Astrophysics of Galaxies +1512.02902 Computer Vision and Pattern Recognition +1512.03668 Data Analysis, Statistics and Probability +1512.05088 Information Theory +1512.05278 Computer Vision and Pattern Recognition +1512.06040 Commutative Algebra +1512.06509 Analysis of PDEs +1512.07607 Applications +1601.01127 Strongly Correlated Electrons +1601.06733 Computation and Language +1602.00051 +1602.01089 Astrophysics of Galaxies +1602.01098 Astrophysics of Galaxies +1602.01215 Combinatorics +1602.03011 Trading and Market Microstructure +1602.03426 Computation and Language +1602.03861 Statistics Theory +1602.04072 +1602.06346 Machine Learning +1602.06816 Quantum Gases +1602.06922 Data Structures and Algorithms +1602.08604 +1603.00325 Combinatorics +1603.00749 Computer Science and Game Theory +1603.02804 +1603.03056 Number Theory +1603.04328 Probability +1603.04577 Data Analysis, Statistics and Probability +1603.06346 Distributed, Parallel, and Cluster Computing +1603.07991 Distributed, Parallel, and Cluster Computing +1603.08585 Information Theory +1603.09150 Plasma Physics +1604.01248 Algebraic Topology +1604.03055 Probability +1604.04318 Methodology +1604.05829 Disordered Systems and Neural Networks +1604.05909 Mesoscale and Nanoscale Physics +1604.06720 Computer Vision and Pattern Recognition +1604.06815 Machine Learning +1604.07186 Numerical Analysis +1604.07230 +1604.07487 Statistics Theory +1605.00294 Theory +1605.00551 Numerical Analysis +1605.00793 +1605.00869 +1605.01238 Numerical Analysis +1605.03986 Phenomenology +1605.04246 Soft Condensed Matter +1605.04892 Optics +1605.04901 Numerical Analysis +1605.05412 Information Theory +1605.07194 Strongly Correlated Electrons +1605.08162 Strongly Correlated Electrons +1605.08964 Systems and Control +1605.09147 +1605.09682 Populations and Evolution +1606.01133 Experiment +1606.01301 Mesoscale and Nanoscale Physics +1606.01991 +1606.02179 Experiment +1606.02732 Phenomenology +1606.03402 Artificial Intelligence +1606.03481 Theory +1606.04109 Theory +1606.04110 +1606.04116 General Physics +1606.04233 Algebraic Topology +1606.04299 Number Theory +1606.04371 Methodology +1606.04591 Superconductivity +1606.04606 High Energy Astrophysical Phenomena +1606.04910 Operator Algebras +1606.05741 Digital Libraries +1606.06065 +1606.06278 Optics +1606.06904 Phenomenology +1606.07472 Strongly Correlated Electrons +1607.00217 Atmospheric and Oceanic Physics +1607.00761 Strongly Correlated Electrons +1607.01217 Systems and Control +1607.01231 Optimization and Control +1607.01335 Distributed, Parallel, and Cluster Computing +1607.02291 Formal Languages and Automata Theory +1607.02500 Phenomenology +1607.02589 Theory +1607.02881 High Energy Astrophysical Phenomena +1607.03973 Cosmology and Nongalactic Astrophysics +1607.04570 Atomic Physics +1607.06946 Mesoscale and Nanoscale Physics +1607.07616 Phenomenology +1607.08031 Atomic Physics +1608.00553 Information Theory +1608.00647 Learning +1608.00977 Phenomenology +1608.01100 +1608.01101 Social and Information Networks +1608.01203 Materials Science +1608.01977 +1608.03331 Representation Theory +1608.04015 Soft Condensed Matter +1608.04394 Theory +1608.05315 Computer Science and Game Theory +1608.06099 Astrophysics of Galaxies +1608.06677 Applications +1608.06868 +1608.07370 +1608.07733 Phenomenology +1608.08017 Classical Analysis and ODEs +1608.08209 +1608.08453 High Energy Astrophysical Phenomena +1609.00392 High Energy Astrophysical Phenomena +1609.00450 Algebraic Geometry +1609.00889 Networking and Internet Architecture +1609.00976 Classical Analysis and ODEs +1609.01991 General Physics +1609.02119 Number Theory +1609.03290 Analysis of PDEs +1609.03720 Strongly Correlated Electrons +1609.04019 Instrumentation and Detectors +1609.04489 Theory +1609.04577 +1609.05004 Soft Condensed Matter +1609.05036 Probability +1609.05318 +1609.05495 +1609.05664 Solar and Stellar Astrophysics +1609.05825 Theory +1609.05830 Software Engineering +1609.06021 Biomolecules +1609.06149 Materials Science +1609.06265 Artificial Intelligence +1609.06309 Astrophysics of Galaxies +1609.06315 Solar and Stellar Astrophysics +1609.06320 Phenomenology +1609.06324 Earth and Planetary Astrophysics +1609.06326 Phenomenology +1609.06327 Computational Geometry +1609.06330 Numerical Analysis +1609.06331 Optimization and Control +1609.06332 High Energy Astrophysical Phenomena +1609.06335 Molecular Networks +1609.06341 Computer Vision and Pattern Recognition +1609.06342 Number Theory +1609.06343 Differential Geometry +1609.06345 Cryptography and Security +1609.06346 Combinatorics +1609.06347 Chaotic Dynamics +1609.06349 Rings and Algebras +1609.06355 Computational Complexity +1609.06372 Commutative Algebra +1609.06373 +1609.06375 Artificial Intelligence +1609.06377 Learning +1609.06378 Data Structures and Algorithms +1609.06379 Logic in Computer Science +1609.06380 Computation and Language +1609.06382 Software Engineering +1609.06383 +1609.06385 Machine Learning +1609.06386 +1609.06389 +1609.06390 Machine Learning +1609.06393 Experiment +1609.06394 Analysis of PDEs +1609.06396 Commutative Algebra +1609.06397 Superconductivity +1609.06401 Pattern Formation and Solitons +1609.06404 Sound +1609.06406 Astrophysics of Galaxies +1609.06407 Mesoscale and Nanoscale Physics +1609.06411 Mesoscale and Nanoscale Physics +1609.06412 Phenomenology +1609.06414 Number Theory +1609.06415 Soft Condensed Matter +1609.06418 Statistics Theory +1609.06420 Information Theory +1609.06421 Statistics Theory +1609.06424 Populations and Evolution +1609.06430 Distributed, Parallel, and Cluster Computing +1609.06431 Data Analysis, Statistics and Probability +1609.06432 Information Theory +1609.06433 Combinatorics +1609.06434 Computer Vision and Pattern Recognition +1609.06435 Robotics +1609.06436 Algebraic Geometry +1609.06438 Computer Science and Game Theory +1609.06441 Computer Vision and Pattern Recognition +1609.06442 Multimedia +1609.06443 Optics +1609.06447 Cryptography and Security +1609.06450 Solar and Stellar Astrophysics +1609.06451 Materials Science +1609.06454 +1609.06455 Solar and Stellar Astrophysics +1609.06456 Computer Vision and Pattern Recognition +1609.06457 Social and Information Networks +1609.06459 Instrumentation and Detectors +1609.06462 Neurons and Cognition +1609.06463 Physics and Society +1609.06464 Materials Science +1609.06465 Methodology +1609.06467 +1609.06468 +1609.06471 Dynamical Systems +1609.06475 Quantum Algebra +1609.06477 +1609.06478 Algebraic Geometry +1609.06479 Human-Computer Interaction +1609.06480 Genomics +1609.06484 Probability +1609.06485 Mesoscale and Nanoscale Physics +1609.06486 Soft Condensed Matter +1609.06490 Computation and Language +1609.06492 Computer Vision and Pattern Recognition +1609.06493 Rings and Algebras +1609.06494 Dynamical Systems +1609.06495 Theory +1609.06496 +1609.06498 Analysis of PDEs +1609.06500 Computer Vision and Pattern Recognition +1609.06507 Spectral Theory +1609.06508 Computational Complexity +1609.06509 Functional Analysis +1609.06510 Instrumentation and Methods for Astrophysics +1609.06517 Mesoscale and Nanoscale Physics +1609.06518 Spectral Theory +1609.06520 Social and Information Networks +1609.06521 Materials Science +1609.06522 Discrete Mathematics +1609.06523 Materials Science +1609.06526 Databases +1609.06527 Analysis of PDEs +1609.06530 Computation and Language +1609.06531 Number Theory +1609.06532 Digital Libraries +1609.06533 Machine Learning +1609.06534 Mesoscale and Nanoscale Physics +1609.06535 Theory +1609.06536 Computer Vision and Pattern Recognition +1609.06537 Mesoscale and Nanoscale Physics +1609.06542 Materials Science +1609.06545 Statistics Theory +1609.06547 Tissues and Organs +1609.06552 Metric Geometry +1609.06553 Software Engineering +1609.06556 Biomolecules +1609.06558 +1609.06559 Fluid Dynamics +1609.06560 Neural and Evolutionary Computing +1609.06561 Statistics Theory +1609.06563 Number Theory +1609.06564 Other Condensed Matter +1609.06565 Combinatorics +1609.06566 Mesoscale and Nanoscale Physics +1609.06568 Information Retrieval +1609.06569 General Physics +1609.06570 Learning +1609.06571 Theory +1609.06572 +1609.06574 General Physics +1609.06576 Optimization and Control +1609.06577 Computation and Language +1609.06578 Computation and Language +1609.06579 Differential Geometry +1609.06580 Theory +1609.06581 Classical Analysis and ODEs +1609.06583 Computer Vision and Pattern Recognition +1609.06584 +1609.06585 Computer Vision and Pattern Recognition +1609.06588 Number Theory +1609.06589 Probability +1609.06590 Instrumentation and Methods for Astrophysics +1609.06593 Materials Science +1609.06594 Phenomenology +1609.06595 Solar and Stellar Astrophysics +1609.06597 +1609.06598 Cosmology and Nongalactic Astrophysics +1609.06599 Category Theory +1609.06600 Numerical Analysis +1609.06601 Rings and Algebras +1609.06604 Medical Physics +1609.06605 Geometric Topology +1609.06606 Algebraic Topology +1609.06607 Quantum Gases +1609.06610 Instrumentation and Methods for Astrophysics +1609.06612 Multimedia +1609.06613 Representation Theory +1609.06619 Classical Analysis and ODEs +1609.06620 Analysis of PDEs +1609.06621 Number Theory +1609.06623 Phenomenology +1609.06625 General Physics +1609.06626 Probability +1609.06627 Probability +1609.06628 +1609.06633 Chemical Physics +1609.06634 Biomolecules +1609.06636 +1609.06637 Algebraic Topology +1609.06639 Earth and Planetary Astrophysics +1609.06641 Data Structures and Algorithms +1609.06643 +1609.06644 Complex Variables +1609.06646 Combinatorics +1609.06647 Computer Vision and Pattern Recognition +1609.06649 Computation and Language +1609.06651 Probability +1609.06652 Information Theory +1609.06653 Computer Vision and Pattern Recognition +1609.06654 Computer Science and Game Theory +1609.06656 Instrumentation and Detectors +1609.06657 Computer Vision and Pattern Recognition +1609.06658 Analysis of PDEs +1609.06659 Phenomenology +1609.06662 Systems and Control +1609.06663 Representation Theory +1609.06664 Cryptography and Security +1609.06667 +1609.06668 Computer Vision and Pattern Recognition +1609.06669 Computer Vision and Pattern Recognition +1609.06670 Distributed, Parallel, and Cluster Computing +1609.06672 Superconductivity +1609.06673 Geophysics +1609.06675 Statistics Theory +1609.06676 Cryptography and Security +1609.06677 Quantum Algebra +1609.06678 Networking and Internet Architecture +1609.06681 Instrumentation and Methods for Astrophysics +1609.06683 Analysis of PDEs +1609.06686 Computation and Language +1609.06690 K-Theory and Homology +1609.06691 +1609.06694 Computer Vision and Pattern Recognition +1609.06696 Number Theory +1609.06697 Methodology +1609.06698 Geometric Topology +1609.06699 Computational Physics +1609.06700 Systems and Control +1609.06701 Probability +1609.06707 Probability +hep-th/0612129 Theory +0707.1897 General Finance +0710.1307 General Finance +0803.0292 +0904.1034 +0904.1408 Commutative Algebra +0908.3818 +1003.4862 +1106.1363 Cosmology and Nongalactic Astrophysics +1205.2012 Neurons and Cognition +1206.4519 +1304.5633 Information Theory +1304.6950 Methodology +1304.7461 Optimization and Control +1309.3595 Number Theory +1310.5628 +1311.0647 +1311.7318 +1401.5867 Differential Geometry +1402.5926 +1404.1834 Cosmology and Nongalactic Astrophysics +1404.7764 Combinatorics +1406.5780 +1410.3118 Optimization and Control +1410.3804 Dynamical Systems +1410.6040 Probability +1411.5777 Optics +1412.7567 +1501.01649 Probability +1501.05176 Statistical Finance +1501.05873 Probability +1502.07180 Probability +1503.02274 Differential Geometry +1503.04003 Optimization and Control +1503.06143 Analysis of PDEs +1503.07686 Statistics Theory +1504.01068 Number Theory +1504.05296 Operator Algebras +1505.01735 Combinatorics +1505.01796 Probability +1505.07600 Probability +1506.06723 Spectral Theory +1506.07969 Probability +1507.00596 Numerical Analysis +1507.01351 +1507.01953 Cosmology and Nongalactic Astrophysics +1507.04499 Data Structures and Algorithms +1507.07402 Data Structures and Algorithms +1508.00676 Number Theory +1508.00723 Strongly Correlated Electrons +1508.04664 Analysis of PDEs +1508.06315 Computational Physics +1508.07379 +1509.00950 Differential Geometry +1509.03008 Combinatorics +1509.07669 Computational Geometry +1509.07738 Chaotic Dynamics +1509.09177 +1510.00605 Numerical Analysis +1510.00872 Number Theory +1510.03675 Combinatorics +1510.04547 Functional Analysis +1510.06728 +1510.06797 Optimization and Control +1511.07278 +1511.08264 Numerical Analysis +1511.08378 Superconductivity +1512.02348 Number Theory +1512.02877 +1512.06054 Computational Physics +1601.03805 Learning +1601.05389 Combinatorics +1601.05840 Algebraic Geometry +1601.07937 Numerical Analysis +1602.00594 Optimization and Control +1602.01594 +1602.01686 Optimization and Control +1602.02700 Symplectic Geometry +1602.05494 Combinatorics +1603.04339 Computational Physics +1603.05969 Combinatorics +1603.07224 Optics +1603.09707 Information Theory +1604.00075 +1604.00481 Logic +1604.01655 Computer Vision and Pattern Recognition +1604.02622 Number Theory +1604.03898 Analysis of PDEs +1604.05535 Artificial Intelligence +1604.07671 Information Theory +1604.08264 +1605.01559 Statistics Theory +1605.03435 Cosmology and Nongalactic Astrophysics +1605.03872 Applications +1605.04235 Number Theory +1605.06678 Software Engineering +1606.01041 Theory +1606.01274 Formal Languages and Automata Theory +1606.01840 Information Theory +1606.04153 Physics and Society +1606.04249 Soft Condensed Matter +1606.06727 +1606.07774 +1606.09207 Cosmology and Nongalactic Astrophysics +1607.00841 Astrophysics of Galaxies +1607.04211 Number Theory +1607.05621 Experiment +1607.06956 Analysis of PDEs +1607.06972 Computer Vision and Pattern Recognition +1607.07149 +1607.07807 Theory +1607.08574 Analysis of PDEs +1608.00463 Phenomenology +1608.01867 Algebraic Topology +1608.02835 Fluid Dynamics +1608.03496 Chaotic Dynamics +1608.05615 +1608.07037 Materials Science +1608.07805 Solar and Stellar Astrophysics +1608.07819 Mesoscale and Nanoscale Physics +1608.08971 +1609.01553 Methodology +1609.02158 Theory +1609.02443 Computational Geometry +1609.03438 Logic in Computer Science +1609.03677 Computer Vision and Pattern Recognition +1609.03954 Optimization and Control +1609.05473 Learning +1609.06087 Strongly Correlated Electrons +1609.06917 Optimization and Control +1609.07730 Computation and Language +1609.07992 +1609.08242 +1609.09311 History and Philosophy of Physics +1609.09402 Phenomenology +1610.04507 +1610.04532 Phenomenology +1610.04591 Logic in Computer Science +1610.06012 Probability +1610.06177 Mesoscale and Nanoscale Physics +1610.06849 Classical Analysis and ODEs +1610.07399 Statistical Mechanics +1610.07681 Commutative Algebra +1610.07863 Optimization and Control +1610.08678 +1611.00914 +1611.00953 Applications +1611.01231 Functional Analysis +1611.01282 +1611.01316 Phenomenology +1611.02964 Fluid Dynamics +1611.03029 Numerical Analysis +1611.04570 Theory +1611.05775 Combinatorics +1611.06254 Mesoscale and Nanoscale Physics +1611.06261 Functional Analysis +1611.06375 Algebraic Geometry +1611.06826 Medical Physics +1611.07587 Mesoscale and Nanoscale Physics +1611.09008 Statistics Theory +1611.10066 Phenomenology +1611.10303 Representation Theory +1612.00141 Theory +1612.00268 Optics +1612.00377 Computation and Language +1612.00573 +1612.00681 Probability +1612.00836 Theory +1612.01160 Computer Vision and Pattern Recognition +1612.01285 Numerical Analysis +1612.01344 Optimization and Control +1612.01507 Functional Analysis +1612.01686 Software Engineering +1612.02024 Statistics Theory +1612.02086 +1612.02120 Quantitative Methods +1612.02171 Number Theory +1612.02288 Computational Physics +1612.02289 Classical Physics +1612.02334 Information Theory +1612.02418 High Energy Astrophysical Phenomena +1612.02532 High Energy Astrophysical Phenomena +1612.02690 +1612.02798 +1612.02809 Solar and Stellar Astrophysics +1612.02817 Astrophysics of Galaxies +1612.02824 Solar and Stellar Astrophysics +1612.02826 High Energy Astrophysical Phenomena +1612.02828 Instrumentation and Methods for Astrophysics +1612.02829 Cosmology and Nongalactic Astrophysics +1612.02830 +1612.02831 Strongly Correlated Electrons +1612.02832 Astrophysics of Galaxies +1612.02833 Cosmology and Nongalactic Astrophysics +1612.02836 Cosmology and Nongalactic Astrophysics +1612.02837 Quantum Gases +1612.02838 Cosmology and Nongalactic Astrophysics +1612.02839 Superconductivity +1612.02843 Combinatorics +1612.02844 Computer Vision and Pattern Recognition +1612.02845 Number Theory +1612.02847 Number Theory +1612.02848 Methodology +1612.02849 Logic +1612.02852 Analysis of PDEs +1612.02853 +1612.02855 +1612.02858 Instrumentation and Detectors +1612.02859 Computer Vision and Pattern Recognition +1612.02860 Algebraic Topology +1612.02862 Networking and Internet Architecture +1612.02864 Quantum Algebra +1612.02865 Earth and Planetary Astrophysics +1612.02866 Instrumentation and Methods for Astrophysics +1612.02870 Earth and Planetary Astrophysics +1612.02871 Mesoscale and Nanoscale Physics +1612.02873 Dynamical Systems +1612.02876 Number Theory +1612.02878 Rings and Algebras +1612.02880 Computer Vision and Pattern Recognition +1612.02883 Mesoscale and Nanoscale Physics +1612.02884 Combinatorics +1612.02885 Category Theory +1612.02886 Cryptography and Security +1612.02888 Classical Analysis and ODEs +1612.02889 Computer Vision and Pattern Recognition +1612.02890 Materials Science +1612.02892 Information Theory +1612.02893 Learning +1612.02894 Theory +1612.02896 Representation Theory +1612.02897 Learning +1612.02898 Emerging Technologies +1612.02899 +1612.02902 Networking and Internet Architecture +1612.02903 Computer Vision and Pattern Recognition +1612.02904 Artificial Intelligence +1612.02905 Computational Geometry +1612.02906 Commutative Algebra +1612.02907 Materials Science +1612.02908 Social and Information Networks +1612.02909 Theory +1612.02910 Representation Theory +1612.02912 Computer Science and Game Theory +1612.02914 Data Structures and Algorithms +1612.02916 Cryptography and Security +1612.02919 Rings and Algebras +1612.02921 Dynamical Systems +1612.02924 Phenomenology +1612.02925 Information Theory +1612.02926 Networking and Internet Architecture +1612.02927 Networking and Internet Architecture +1612.02929 Strongly Correlated Electrons +1612.02930 Quantum Gases +1612.02932 Dynamical Systems +1612.02933 Optimization and Control +1612.02934 Materials Science +1612.02937 Analysis of PDEs +1612.02938 Number Theory +1612.02940 Soft Condensed Matter +1612.02946 Symplectic Geometry +1612.02948 Computational Complexity +1612.02951 +1612.02954 Information Theory +1612.02955 Lattice +1612.02956 Accelerator Physics +1612.02957 Information Theory +1612.02959 History and Philosophy of Physics +1612.02960 Representation Theory +1612.02961 Analysis of PDEs +1612.02962 Data Structures and Algorithms +1612.02963 +1612.02967 Computational Geometry +1612.02970 Solar and Stellar Astrophysics +1612.02973 Strongly Correlated Electrons +1612.02974 Metric Geometry +1612.02975 Emerging Technologies +1612.02976 Chemical Physics +1612.02977 Strongly Correlated Electrons +1612.02978 Probability +1612.02979 Distributed, Parallel, and Cluster Computing +1612.02980 Chemical Physics +1612.02981 Operator Algebras +1612.02982 Logic +1612.02984 Analysis of PDEs +1612.02985 Risk Management +1612.02986 Combinatorics +1612.02988 Combinatorics +1612.02989 Statistics Theory +1612.02990 Data Structures and Algorithms +1612.02992 Materials Science +1612.02993 Solar and Stellar Astrophysics +1612.02994 Physics and Society +1612.02995 Solar and Stellar Astrophysics +1612.02996 Quantum Gases +1612.02997 Experiment +1612.02998 Mesoscale and Nanoscale Physics +1612.03000 Networking and Internet Architecture +1612.03001 Chemical Physics +1612.03002 Theory +1612.03003 History and Philosophy of Physics +1612.03004 Mesoscale and Nanoscale Physics +1612.03005 Cryptography and Security +1612.03006 Materials Science +1612.03007 Analysis of PDEs +1612.03011 Strongly Correlated Electrons +1612.03012 Classical Analysis and ODEs +1612.03015 Software Engineering +1612.03016 Experiment +1612.03017 Data Structures and Algorithms +1612.03020 Mesoscale and Nanoscale Physics +1612.03021 Rings and Algebras +1612.03022 Dynamical Systems +1612.03023 Theory +1612.03027 Differential Geometry +1612.03028 Classical Analysis and ODEs +1612.03029 Probability +1612.03031 Pricing of Securities +1612.03032 Logic in Computer Science +1612.03035 Fluid Dynamics +1612.03037 Cosmology and Nongalactic Astrophysics +1612.03038 Quantum Gases +1612.03039 Soft Condensed Matter +1612.03041 +1612.03042 Networking and Internet Architecture +1612.03043 Probability +1612.03046 General Physics +1612.03048 Mesoscale and Nanoscale Physics +1612.03049 Mesoscale and Nanoscale Physics +1612.03050 High Energy Astrophysical Phenomena +1612.03052 Computer Vision and Pattern Recognition +1612.03054 Methodology +1612.03055 Artificial Intelligence +1612.03056 +1612.03057 Statistical Mechanics +1612.03058 High Energy Astrophysical Phenomena +1612.03059 Group Theory +1612.03060 Strongly Correlated Electrons +1612.03061 Probability +1612.03062 History and Philosophy of Physics +1612.03063 +1612.03064 Astrophysics of Galaxies +1612.03066 Risk Management +1612.03069 Theory +1612.03071 Information Theory +1612.03073 Applications +1612.03076 Quantum Gases +1612.03080 Machine Learning +1612.03081 Plasma Physics +1612.03082 Systems and Control +1612.03083 Quantum Algebra +1612.03085 Physics and Society +1612.03089 High Energy Astrophysical Phenomena +1612.03090 +1612.03092 Solar and Stellar Astrophysics +1612.03094 Computer Vision and Pattern Recognition +1612.03095 Number Theory +1612.03096 +1612.03097 Data Structures and Algorithms +1612.03098 Statistical Mechanics +1612.03101 Cryptography and Security +1612.03102 Algebraic Geometry +1612.03103 Software Engineering +1612.03105 Exactly Solvable and Integrable Systems +1612.03108 Information Theory +1612.03109 Software Engineering +1612.03110 Phenomenology +1612.03111 Phenomenology +1612.03112 Combinatorics +1612.03114 +1612.03117 Learning +1612.03118 Representation Theory +1612.03119 Differential Geometry +1612.03121 Cosmology and Nongalactic Astrophysics +1612.03122 Statistical Mechanics +1612.03123 Soft Condensed Matter +1612.03124 Numerical Analysis +1612.03125 Populations and Evolution +1612.03128 Analysis of PDEs +1612.03129 Computer Vision and Pattern Recognition +1612.03130 Classical Physics +1612.03132 Disordered Systems and Neural Networks +1612.03134 Subcellular Processes +1612.03135 Solar and Stellar Astrophysics +1612.03136 Number Theory +1612.03137 Phenomenology +1612.03138 Representation Theory +1612.03140 Logic in Computer Science +1612.03141 Algebraic Geometry +1612.03142 Computer Vision and Pattern Recognition +1612.03143 Optics +1612.03144 Computer Vision and Pattern Recognition +1612.03145 Astrophysics of Galaxies +1612.03146 Biological Physics +1612.03148 Computational Complexity +1612.03149 Quantum Gases +1612.03150 Computer Science and Game Theory +1612.03152 Software Engineering +1612.03153 Computer Vision and Pattern Recognition +1612.03154 Instrumentation and Detectors +1612.03155 Logic in Computer Science +1612.03156 Data Structures and Algorithms +1612.03158 Theory +1612.03159 Mesoscale and Nanoscale Physics +1612.03160 High Energy Astrophysical Phenomena +1612.03161 Computer Science and Game Theory +1612.03164 Learning +physics/0609088 Physics and Society +physics/0609245 Physics and Society +quant-ph/0510238 +quant-ph/0604170 +quant-ph/0606045 +0810.2834 Number Theory +1008.2486 Strongly Correlated Electrons +1103.1433 Logic in Computer Science +1112.5014 Group Theory +1205.2572 Combinatorics +1207.5833 +1208.3942 Formal Languages and Automata Theory +1210.6238 Statistical Mechanics +1212.2333 Probability +1301.5004 Combinatorics +1302.1244 Combinatorics +1302.5547 Soft Condensed Matter +1302.6712 +1305.6597 Number Theory +1308.6531 Representation Theory +1309.2119 Superconductivity +1309.3590 Statistical Mechanics +1310.1772 Number Theory +1310.2555 Algebraic Geometry +1311.6370 Optimization and Control +1312.6132 Strongly Correlated Electrons +1401.6847 Number Theory +1402.3694 Metric Geometry +1403.3363 Pattern Formation and Solitons +1405.0248 Metric Geometry +1405.1054 Phenomenology +1405.1335 Probability +1405.3663 Theory +1405.4378 Networking and Internet Architecture +1405.5576 Machine Learning +1406.1065 Information Retrieval +1406.2608 Dynamical Systems +1406.6690 High Energy Astrophysical Phenomena +1407.0105 Algebraic Geometry +1407.2926 +1407.7766 +1408.0265 Functional Analysis +1408.2484 Physics and Society +1409.2537 +1410.0399 +1410.3713 Rings and Algebras +1410.8083 Category Theory +1411.2296 +1411.7991 Mathematical Finance +1412.1744 Phenomenology +1412.2623 +1412.4232 +1412.6349 Combinatorics +1412.6970 Geometric Topology +1412.8457 Cosmology and Nongalactic Astrophysics +1502.00835 Combinatorics +1502.05584 Probability +1502.06026 Analysis of PDEs +1503.00935 Algebraic Geometry +1503.01824 Learning +1503.02955 Networking and Internet Architecture +1503.05124 Logic in Computer Science +1503.06390 Operator Algebras +1503.06767 Quantum Gases +1503.07281 Number Theory +1503.07500 Algebraic Geometry +1503.08517 Operator Algebras +1504.01564 Functional Analysis +1504.03693 Astrophysics of Galaxies +1504.05739 Logic in Computer Science +1504.08327 Methodology +1505.00148 Algebraic Geometry +1505.00433 Operator Algebras +1505.00525 Soft Condensed Matter +1505.02356 Theory +1505.07292 +1506.01102 High Energy Astrophysical Phenomena +1506.02857 Optimization and Control +1506.08303 +1507.03555 Optics +1507.04861 Analysis of PDEs +1507.06290 Rings and Algebras +1507.07586 Cosmology and Nongalactic Astrophysics +1507.08174 Representation Theory +1507.08486 Quantum Algebra +1507.08972 Cosmology and Nongalactic Astrophysics +1508.02330 Phenomenology +1508.02498 Methodology +1508.02560 Algebraic Geometry +1508.04275 Instrumentation and Methods for Astrophysics +1508.07843 Materials Science +1508.07981 Phenomenology +1509.01537 Biological Physics +1509.02203 Algebraic Geometry +1509.03766 High Energy Astrophysical Phenomena +1509.04066 +1509.05840 Optics +1509.05992 Strongly Correlated Electrons +1509.06258 Disordered Systems and Neural Networks +1509.06448 Statistical Mechanics +1509.07641 Combinatorics +1509.08150 Emerging Technologies +1509.08572 Systems and Control +1510.02044 Differential Geometry +1510.02536 Cosmology and Nongalactic Astrophysics +1510.02664 Experiment +1510.03251 +1510.03885 High Energy Astrophysical Phenomena +1510.04803 Chaotic Dynamics +1510.04807 Statistical Mechanics +1510.05702 Statistical Mechanics +1510.06481 Numerical Analysis +1510.08388 +1510.08942 +1510.08978 Quantum Gases +1511.00234 +1511.01197 Algebraic Geometry +1511.01630 Group Theory +1511.02692 Representation Theory +1511.04518 +1511.04781 Optics +1511.06219 Computation and Language +1511.06396 Computation and Language +1511.06582 Theory +1511.07428 Statistics Theory +1512.01057 Statistical Mechanics +1512.01530 Experiment +1512.02441 Instrumentation and Methods for Astrophysics +1512.02601 Mesoscale and Nanoscale Physics +1512.02907 Soft Condensed Matter +1512.05481 Geometric Topology +1512.08096 Probability +1512.08184 Phenomenology +1512.08507 Phenomenology +1512.08649 Instrumentation and Methods for Astrophysics +1601.00551 Instrumentation and Methods for Astrophysics +1601.01035 +1601.03249 Optimization and Control +1601.03412 Tissues and Organs +1601.04081 General Topology +1601.04890 Social and Information Networks +1601.05962 Data Structures and Algorithms +1602.01113 Strongly Correlated Electrons +1602.01398 Artificial Intelligence +1602.01871 Databases +1602.03998 Mesoscale and Nanoscale Physics +1602.04323 Plasma Physics +1602.05509 Space Physics +1602.05701 Differential Geometry +1602.05837 Data Structures and Algorithms +1602.05931 Computer Vision and Pattern Recognition +1602.06479 Algebraic Geometry +1602.06613 Commutative Algebra +1602.06681 Instrumentation and Methods for Astrophysics +1602.07141 Representation Theory +1602.07503 Geometric Topology +1602.07730 Combinatorics +1602.08123 Strongly Correlated Electrons +1602.08179 Logic +1602.08181 Statistics Theory +1602.08709 +1603.00359 Optimization and Control +1603.00499 Computational Physics +1603.00548 Geometric Topology +1603.00551 Materials Science +1603.00871 Popular Physics +1603.00875 Earth and Planetary Astrophysics +1603.00885 Combinatorics +1603.00892 Computation and Language +1603.00895 Optimization and Control +1603.00896 Applications +1603.00902 Atmospheric and Oceanic Physics +1603.00904 Neurons and Cognition +1603.00906 +1603.00908 Mesoscale and Nanoscale Physics +1603.00909 Instrumentation and Detectors +1603.00910 Physics and Society +1603.00912 Computer Vision and Pattern Recognition +1603.00913 Cryptography and Security +1603.00916 +1603.00920 Probability +1603.00921 Methodology +1603.00922 Materials Science +1603.00923 Combinatorics +1603.00924 Theory +1603.00926 Group Theory +1603.00928 Computational Complexity +1603.00932 General Topology +1603.00935 +1603.00944 Computer Vision and Pattern Recognition +1603.00949 Representation Theory +1603.00950 Earth and Planetary Astrophysics +1603.00951 +1603.00953 Representation Theory +1603.00955 Systems and Control +1603.00956 Number Theory +1603.00958 Biomolecules +1603.00963 Data Structures and Algorithms +1603.00966 Symplectic Geometry +1603.00973 Data Structures and Algorithms +1603.00974 Applications +1603.00975 Logic in Computer Science +1603.00976 Logic in Computer Science +1603.00978 Logic in Computer Science +1603.00979 Logic in Computer Science +1603.00980 Robotics +1603.00985 Optics +1603.00986 Differential Geometry +1603.00990 Differential Geometry +1603.00991 Economics +1603.00993 Computer Vision and Pattern Recognition +1603.00995 Solar and Stellar Astrophysics +1603.00997 Lattice +1603.01005 Rings and Algebras +1603.01010 Algebraic Topology +1603.01013 Number Theory +1603.01016 Combinatorics +1603.01018 Number Theory +1603.01022 Probability +1603.01029 Machine Learning +1603.01030 Classical Analysis and ODEs +1603.01033 Rings and Algebras +1603.01035 Differential Geometry +1603.01039 Combinatorics +1603.01041 Risk Management +1603.01043 Combinatorics +1603.01046 Data Analysis, Statistics and Probability +1603.01047 Classical Analysis and ODEs +1603.01049 +1603.01055 Computer Science and Game Theory +1603.01056 Computer Vision and Pattern Recognition +1603.01058 Combinatorics +1603.01059 Dynamical Systems +1603.01060 Data Structures and Algorithms +1603.01067 Learning +1603.01068 Computer Vision and Pattern Recognition +1603.01071 Statistical Mechanics +1603.01075 Classical Analysis and ODEs +1603.01077 Neurons and Cognition +1603.01078 Commutative Algebra +1603.01080 Information Theory +1603.01081 Number Theory +1603.01087 Atomic Physics +1603.01091 Complex Variables +1603.01094 Metric Geometry +1603.01095 Analysis of PDEs +1603.01098 +1603.01100 Analysis of PDEs +1603.01102 Databases +1603.01104 Superconductivity +1603.01106 Optics +1603.01107 Formal Languages and Automata Theory +1603.01109 Solar and Stellar Astrophysics +1603.01112 Distributed, Parallel, and Cluster Computing +1603.01113 Databases +1603.01114 +1603.01118 Phenomenology +1603.01120 Complex Variables +1603.01133 Functional Analysis +1603.01134 Applications +1603.01136 Computation +1603.01140 Machine Learning +1603.01145 Theory +1603.01149 Theory +1603.01150 Group Theory +1603.01152 Number Theory +1603.01155 Chaotic Dynamics +1603.01156 Analysis of PDEs +1603.01157 Strongly Correlated Electrons +1603.01161 Instrumentation and Methods for Astrophysics +1603.01162 +1603.01167 Numerical Analysis +1603.01168 Geophysics +1603.01171 Quantum Algebra +1603.01175 Number Theory +1603.01179 Discrete Mathematics +1603.01180 Operator Algebras +1603.01181 Data Structures and Algorithms +1603.01183 Dynamical Systems +1603.01184 Numerical Analysis +1603.01187 Hardware Architecture +1603.01193 Analysis of PDEs +1603.01194 Probability +1603.01196 +1603.01198 Algebraic Geometry +1603.01202 Systems and Control +1603.01203 Networking and Internet Architecture +1603.01204 Physics and Society +1603.01207 Digital Libraries +1603.01209 Geometric Topology +1603.01210 Phenomenology +1603.01213 Information Theory +1603.01214 Statistics Theory +1603.01215 Combinatorics +1603.01222 Rings and Algebras +1603.01228 Artificial Intelligence +1603.01230 Classical Analysis and ODEs +1603.01231 Computational Finance +1603.01232 Computation and Language +1603.01240 Analysis of PDEs +1603.01244 Cryptography and Security +1603.01248 Atomic Physics +1603.01250 Computer Vision and Pattern Recognition +1603.01251 Instrumentation and Detectors +1603.01257 Computer Science and Game Theory +astro-ph/0512565 +astro-ph/0512568 +cond-mat/0701067 Strongly Correlated Electrons +0802.2839 Information Theory +0805.1000 Spectral Theory +0806.4275 +0905.4774 +0906.2785 Cosmology and Nongalactic Astrophysics +0912.4605 Cosmology and Nongalactic Astrophysics +1009.1981 Functional Analysis +1103.6155 +1104.0935 Cosmology and Nongalactic Astrophysics +1104.5543 Geometric Topology +1108.3717 Cosmology and Nongalactic Astrophysics +1109.1691 Logic in Computer Science +1204.0088 Combinatorics +1206.1049 Cosmology and Nongalactic Astrophysics +1208.5507 Algebraic Geometry +1209.1726 Quantum Algebra +1210.4394 +1211.0418 Computation and Language +1212.3651 Dynamical Systems +1302.0288 Cosmology and Nongalactic Astrophysics +1308.4893 Metric Geometry +1310.1278 Formal Languages and Automata Theory +1310.6275 Logic +1310.7769 Social and Information Networks +1401.6678 Algebraic Geometry +1403.0572 Classical Physics +1403.4861 Data Structures and Algorithms +1406.2400 Computation and Language +1406.3334 Statistics Theory +1406.6844 Computation and Language +1408.2371 Experiment +1409.2545 Rings and Algebras +1409.5684 Mesoscale and Nanoscale Physics +1409.7007 Number Theory +1410.3056 Analysis of PDEs +1410.4624 Information Theory +1410.7453 Pricing of Securities +1411.0583 Numerical Analysis +1411.3951 Analysis of PDEs +1411.5275 Combinatorics +1411.5721 Theory +1411.6346 Number Theory +1411.7573 Symplectic Geometry +1412.5123 Theory +1501.03682 Numerical Analysis +1502.04141 Algebraic Topology +1502.04579 Discrete Mathematics +1502.04706 +1502.05806 Numerical Analysis +1503.02353 Distributed, Parallel, and Cluster Computing +1503.06326 Systems and Control +1503.06797 High Energy Astrophysical Phenomena +1503.06809 Systems and Control +1504.00418 Group Theory +1504.01899 Dynamical Systems +1504.04192 Logic +1504.06208 Superconductivity +1504.06870 Computation +1504.08037 Materials Science +1505.02213 Methodology +1505.02226 Logic +1506.00544 Statistical Mechanics +1506.02528 Quantum Gases +1506.02579 Analysis of PDEs +1506.04854 Methodology +1506.05734 Spectral Theory +1506.06003 Mesoscale and Nanoscale Physics +1507.00267 Combinatorics +1507.02102 Superconductivity +1507.04301 Astrophysics of Galaxies +1507.04734 Optimization and Control +1507.05290 Graphics +1507.06268 Probability +1508.02786 Biological Physics +1508.04006 Physics and Society +1508.05343 Theory +1508.06219 Fluid Dynamics +1508.06508 +1508.06518 +1509.02102 Analysis of PDEs +1509.02109 Strongly Correlated Electrons +1509.03267 +1509.03541 Materials Science +1509.05281 Computation and Language +1509.07391 Spectral Theory +1510.00101 +1510.00699 Theory +1510.01580 +1510.01768 Optics +1510.03994 Logic in Computer Science +1510.04710 Probability +1510.07885 Dynamical Systems +1510.08241 Functional Analysis +1511.00081 Instrumentation and Detectors +1511.00267 +1511.01590 High Energy Astrophysical Phenomena +1511.01693 Statistical Mechanics +1511.02008 Statistical Mechanics +1511.03730 Computational Complexity +1511.03924 Computation and Language +1511.04265 Number Theory +1511.05927 Cosmology and Nongalactic Astrophysics +1511.06591 Computation and Language +1511.07234 +1511.09171 Analysis of PDEs +1512.00004 Solar and Stellar Astrophysics +1512.00471 Phenomenology +1512.04085 Materials Science +1512.04839 Combinatorics +1512.04946 +1512.05079 Quantum Gases +1512.05860 +1512.07082 Methodology +1512.08025 +1512.08737 Operator Algebras +1601.02880 Combinatorics +1601.07466 Number Theory +1602.00502 Phenomenology +1602.00880 Superconductivity +1602.02520 Theory +1602.04418 Machine Learning +1602.04487 Information Theory +1602.06347 Artificial Intelligence +1603.00381 Atomic Physics +1603.00819 Chaotic Dynamics +1603.01012 +1603.01269 Theory +1603.02432 Soft Condensed Matter +1603.03048 Phenomenology +1603.03567 Mesoscale and Nanoscale Physics +1603.03655 +1603.04252 Statistical Mechanics +1603.04342 Solar and Stellar Astrophysics +1603.06256 Astrophysics of Galaxies +1603.06495 Strongly Correlated Electrons +1603.06618 Strongly Correlated Electrons +1603.07486 Quantum Gases +1603.07719 Phenomenology +1603.07979 Phenomenology +1603.09003 Materials Science +1603.09507 Quantum Gases +1604.00169 Machine Learning +1604.00886 Cosmology and Nongalactic Astrophysics +1604.01100 Optics +1604.01455 Other Statistics +1604.01644 Physics and Society +1604.01689 Phenomenology +1604.02739 Optics +1604.02823 Statistical Mechanics +1604.03429 Soft Condensed Matter +1604.03553 Strongly Correlated Electrons +1604.04520 Experiment +1604.05033 Mesoscale and Nanoscale Physics +1604.06912 Rings and Algebras +1604.06938 Populations and Evolution +1604.07244 Adaptation and Self-Organizing Systems +1604.08064 Theory +1604.08417 Algebraic Geometry +1605.00499 Methodology +1605.00826 Physics and Society +1605.01153 Logic in Computer Science +1605.01372 Physics Education +1605.01446 Theory +1605.01766 Group Theory +1605.01959 Mesoscale and Nanoscale Physics +1605.02401 Sound +1605.03003 +1605.04121 Analysis of PDEs +1605.05455 +1605.05499 Combinatorics +1605.06078 Theory +1605.07375 +1605.08840 Computer Science and Game Theory +1605.08929 Number Theory +1606.00336 Theory +1606.00553 Classical Analysis and ODEs +1606.02410 Rings and Algebras +1606.02907 Statistical Mechanics +1606.03251 Analysis of PDEs +1606.03276 Computers and Society +1606.03323 +1606.04399 +1606.04962 Dynamical Systems +1606.06586 Metric Geometry +1606.07775 Computational Physics +1606.08172 Instrumentation and Detectors +1606.08500 Analysis of PDEs +1606.08565 Phenomenology +1606.09099 Combinatorics +1606.09203 Chemical Physics +1606.09426 Solar and Stellar Astrophysics +1607.00345 Optimization and Control +1607.00559 Optimization and Control +1607.00777 High Energy Astrophysical Phenomena +1607.01237 Differential Geometry +1607.01311 Combinatorics +1607.01389 Medical Physics +1607.01390 Experiment +1607.01396 +1607.01398 Atomic Physics +1607.01399 Phenomenology +1607.01401 Strongly Correlated Electrons +1607.01409 Phenomenology +1607.01412 Number Theory +1607.01413 Functional Analysis +1607.01415 Soft Condensed Matter +1607.01416 Astrophysics of Galaxies +1607.01421 Numerical Analysis +1607.01423 Functional Analysis +1607.01425 Solar and Stellar Astrophysics +1607.01428 Number Theory +1607.01430 Probability +1607.01433 Classical Physics +1607.01436 Information Theory +1607.01438 Computational Complexity +1607.01439 Analysis of PDEs +1607.01443 Human-Computer Interaction +1607.01445 Classical Analysis and ODEs +1607.01447 +1607.01449 Biological Physics +1607.01450 Computer Vision and Pattern Recognition +1607.01452 Biomolecules +1607.01456 Combinatorics +1607.01457 Group Theory +1607.01458 Computation +1607.01461 Information Theory +1607.01462 Machine Learning +1607.01464 Phenomenology +1607.01465 +1607.01466 Analysis of PDEs +1607.01474 Logic in Computer Science +1607.01476 Instrumentation and Detectors +1607.01478 Robotics +1607.01481 Dynamical Systems +1607.01482 Systems and Control +1607.01485 Computation and Language +1607.01486 Robotics +1607.01490 Artificial Intelligence +1607.01491 General Topology +1607.01493 Algebraic Geometry +1607.01496 Algebraic Geometry +1607.01497 Classical Analysis and ODEs +1607.01501 +1607.01502 Materials Science +1607.01503 Accelerator Physics +1607.01511 Chemical Physics +1607.01516 Statistics Theory +1607.01517 Computer Science and Game Theory +1607.01518 Soft Condensed Matter +1607.01519 Pricing of Securities +1607.01520 Superconductivity +1607.01521 Theory +1607.01524 Soft Condensed Matter +1607.01527 Analysis of PDEs +1607.01530 Number Theory +1607.01532 Phenomenology +1607.01533 Information Theory +1607.01535 Analysis of PDEs +1607.01537 Information Theory +1607.01538 Accelerator Physics +1607.01539 Logic in Computer Science +1607.01540 Accelerator Physics +1607.01542 Classical Analysis and ODEs +1607.01545 Combinatorics +1607.01549 Combinatorics +1607.01551 Data Structures and Algorithms +1607.01552 +1607.01556 Accelerator Physics +1607.01559 Accelerator Physics +1607.01563 Differential Geometry +1607.01564 Populations and Evolution +1607.01565 Accelerator Physics +1607.01566 Combinatorics +1607.01568 +1607.01570 Accelerator Physics +1607.01572 Accelerator Physics +1607.01573 Accelerator Physics +1607.01574 Accelerator Physics +1607.01575 Optimization and Control +1607.01577 Computer Vision and Pattern Recognition +1607.01578 Accelerator Physics +1607.01579 Numerical Analysis +1607.01581 Accelerator Physics +1607.01582 Learning +1607.01583 Classical Analysis and ODEs +1607.01584 Accelerator Physics +1607.01588 Number Theory +1607.01589 Accelerator Physics +1607.01590 Programming Languages +1607.01591 +1607.01592 Analysis of PDEs +1607.01593 Phenomenology +1607.01594 Accelerator Physics +1607.01595 Accelerator Physics +1607.01596 Accelerator Physics +1607.01597 Accelerator Physics +1607.01598 Information Theory +1607.01602 Functional Analysis +1607.01603 Dynamical Systems +1607.01604 +1607.01605 Combinatorics +1607.01606 Differential Geometry +1607.01608 Soft Condensed Matter +1607.01610 +1607.01611 Superconductivity +1607.01612 Dynamical Systems +1607.01613 Plasma Physics +1607.01614 +1607.01615 Analysis of PDEs +1607.01624 Machine Learning +1607.01625 Logic +1607.01627 Probability +1607.01628 Computation and Language +1607.01630 Accelerator Physics +1607.01631 Methodology +1607.01633 Phenomenology +1607.01634 Artificial Intelligence +1607.01637 Soft Condensed Matter +1607.01639 Cryptography and Security +1607.01640 Mesoscale and Nanoscale Physics +1607.01642 Cryptography and Security +1607.01643 Distributed, Parallel, and Cluster Computing +1607.01648 +1607.01649 Numerical Analysis +1607.01651 Biological Physics +1607.01656 Biomolecules +1607.01664 Computation +1607.01665 Fluid Dynamics +1607.01673 Experiment +1607.01674 Complex Variables +1607.01676 +1607.01677 Cosmology and Nongalactic Astrophysics +1607.01678 Group Theory +1607.01679 Computer Vision and Pattern Recognition +1607.01683 Social and Information Networks +1607.01684 Computational Complexity +1607.01686 Logic in Computer Science +1607.01688 Classical Analysis and ODEs +1607.01690 Learning +1607.01691 Neural and Evolutionary Computing +1607.01695 Mesoscale and Nanoscale Physics +1607.01697 Representation Theory +1607.01702 +1607.01708 Experiment +1607.01715 Phenomenology +1607.01719 Computer Vision and Pattern Recognition +1607.01721 Theory +1607.01722 Geometric Topology +1607.01724 Operator Algebras +1607.01725 Functional Analysis +1607.01726 Numerical Analysis +1607.01728 Optimization and Control +1607.01730 Artificial Intelligence +1607.01731 Commutative Algebra +1607.01734 Soft Condensed Matter +1607.01735 Physics and Society +1607.01736 Information Theory +1607.01741 Functional Analysis +1607.01742 Probability +1607.01749 Phenomenology +1607.01752 Human-Computer Interaction +1607.01755 Earth and Planetary Astrophysics +1607.01756 Applications +1607.01760 Probability +1607.01761 Cosmology and Nongalactic Astrophysics +1607.01762 Probability +1607.01764 +1607.01765 Combinatorics +1607.01768 +1607.01769 Cosmology and Nongalactic Astrophysics +1607.01770 Superconductivity +1607.01772 Astrophysics of Galaxies +1003.1652 Number Theory +1004.3397 Theory +1004.4176 Superconductivity +1009.1648 Symplectic Geometry +1102.5077 General Topology +1108.4248 +1111.0027 Dynamical Systems +1111.6193 Dynamical Systems +1202.3878 Statistics Theory +1205.0600 General Topology +1206.3699 Fluid Dynamics +1210.2231 Dynamical Systems +1211.4611 Optimization and Control +1211.4614 Optimization and Control +1211.4865 Optimization and Control +1301.0802 Statistics Theory +1301.7299 Spectral Theory +1303.5163 Optimization and Control +1304.5286 Optimization and Control +1306.1421 Physics and Society +1306.2813 Differential Geometry +1306.3149 Fluid Dynamics +1307.3280 +1307.4419 Algebraic Geometry +1308.0490 Information Theory +1309.2887 Disordered Systems and Neural Networks +1309.3461 Analysis of PDEs +1310.4621 Probability +1311.3190 Methodology +1311.4567 High Energy Astrophysical Phenomena +1312.7771 Geometric Topology +1402.1211 Optimization and Control +1402.3660 Probability +1404.6312 Computation and Language +1405.1003 History and Overview +1405.1481 Probability +1405.2304 Dynamical Systems +1405.3950 Metric Geometry +1405.6876 Probability +1406.5028 Complex Variables +1406.5301 Data Structures and Algorithms +1406.5547 Fluid Dynamics +1407.8160 +1408.1400 Solar and Stellar Astrophysics +1409.5156 Functional Analysis +1409.5396 Probability +1409.7904 Rings and Algebras +1410.0806 Dynamical Systems +1411.6368 Probability +1411.6518 Analysis of PDEs +1412.4273 Data Structures and Algorithms +1412.6838 Theory +1412.7913 Dynamical Systems +1412.8477 +1501.02023 Probability +1501.04241 Analysis of PDEs +1502.02017 +1502.06642 Chaotic Dynamics +1503.04832 +1503.06333 Information Theory +1503.07024 Computational Physics +1503.07245 +1503.08019 Data Structures and Algorithms +1503.08080 Commutative Algebra +1504.03208 High Energy Astrophysical Phenomena +1504.04107 Numerical Analysis +1504.05965 +1504.06408 Analysis of PDEs +1505.00115 Digital Libraries +1505.01356 Fluid Dynamics +1505.01717 Superconductivity +1505.02047 +1506.00504 Optimization and Control +1506.02057 Superconductivity +1506.02671 Cosmology and Nongalactic Astrophysics +1506.02924 Rings and Algebras +1506.03347 Economics +1506.04169 Quantum Gases +1506.06081 Machine Learning +1506.06323 Optics +1506.06556 Phenomenology +1506.07975 +1506.08066 Theory +1506.08974 Mesoscale and Nanoscale Physics +1507.03428 Phenomenology +1507.03501 Classical Analysis and ODEs +1507.06979 +1507.07474 Statistical Mechanics +1507.07923 Mesoscale and Nanoscale Physics +1508.01156 Optics +1508.06955 Complex Variables +1509.00901 Strongly Correlated Electrons +1509.04487 Materials Science +1509.05686 +1509.07255 +1509.07638 Earth and Planetary Astrophysics +1509.08815 Optics +1509.08847 Systems and Control +1510.02063 +1510.02226 Differential Geometry +1510.03292 Probability +1510.03534 Strongly Correlated Electrons +1510.03855 +1510.04846 Superconductivity +1510.05132 Analysis of PDEs +1510.06277 +1510.06697 Probability +1510.06948 Geometric Topology +1511.00390 Accelerator Physics +1511.00611 +1511.00933 High Energy Astrophysical Phenomena +1511.04330 Mesoscale and Nanoscale Physics +1511.07391 Soft Condensed Matter +1512.00289 Plasma Physics +1512.01172 +1512.02006 Cryptography and Security +1512.02377 Phenomenology +1512.02475 Statistical Mechanics +1512.03704 Experiment +1512.04884 Statistical Mechanics +1512.05314 Experiment +1512.06721 Theory +1601.00392 Physics and Society +1601.00534 Phenomenology +1601.01375 Optics +1601.04971 High Energy Astrophysical Phenomena +1601.05322 Atomic Physics +1601.05602 Geometric Topology +1601.07084 Geometric Topology +1601.07326 Probability +1602.00698 Phenomenology +1602.01106 Soft Condensed Matter +1602.02879 Fluid Dynamics +1602.02901 Optics +1602.04499 Probability +1602.04779 +1602.05242 Learning +1602.06674 Algebraic Topology +1602.07149 Fluid Dynamics +1602.08512 +1603.01390 Chemical Physics +1603.01750 High Energy Astrophysical Phenomena +1603.02213 Solar and Stellar Astrophysics +1603.02733 Materials Science +1603.02762 Superconductivity +1603.03170 Computers and Society +1603.03310 General Mathematics +1603.04531 Computers and Society +1603.05380 Analysis of PDEs +1603.06029 Optimization and Control +1603.06137 Space Physics +1603.06460 Group Theory +1603.06493 Functional Analysis +1603.06516 Atmospheric and Oceanic Physics +1603.07017 Statistical Mechanics +1603.07051 Artificial Intelligence +1603.07326 +1603.07341 Learning +1603.07342 Instrumentation and Methods for Astrophysics +1603.07343 Quantitative Methods +1603.07347 Astrophysics of Galaxies +1603.07348 +1603.07350 Combinatorics +1603.07352 Phenomenology +1603.07353 Fluid Dynamics +1603.07355 Computers and Society +1603.07358 Numerical Analysis +1603.07363 Fluid Dynamics +1603.07366 High Energy Astrophysical Phenomena +1603.07369 Quantitative Methods +1603.07370 Cryptography and Security +1603.07371 Data Structures and Algorithms +1603.07372 Atomic Physics +1603.07374 Analysis of PDEs +1603.07376 Data Structures and Algorithms +1603.07378 Probability +1603.07382 Probability +1603.07383 Optimization and Control +1603.07384 Optimization and Control +1603.07385 Probability +1603.07388 Computer Vision and Pattern Recognition +1603.07394 Machine Learning +1603.07395 Number Theory +1603.07396 Computer Vision and Pattern Recognition +1603.07397 Optimization and Control +1603.07398 Combinatorics +1603.07399 Cryptography and Security +1603.07401 Computational Geometry +1603.07402 Algebraic Geometry +1603.07403 Soft Condensed Matter +1603.07404 Mesoscale and Nanoscale Physics +1603.07405 Combinatorics +1603.07408 Other Statistics +1603.07415 Computer Vision and Pattern Recognition +1603.07416 Atomic Physics +1603.07423 +1603.07424 Earth and Planetary Astrophysics +1603.07425 Cryptography and Security +1603.07427 Methodology +1603.07428 Analysis of PDEs +1603.07430 Optics +1603.07431 Networking and Internet Architecture +1603.07432 Cryptography and Security +1603.07433 Cryptography and Security +1603.07436 Number Theory +1603.07437 Representation Theory +1603.07438 Cryptography and Security +1603.07439 Cryptography and Security +1603.07440 Systems and Control +1603.07443 Phenomenology +1603.07447 Mesoscale and Nanoscale Physics +1603.07449 Symplectic Geometry +1603.07452 +1603.07453 Logic in Computer Science +1603.07454 Learning +1603.07455 Analysis of PDEs +1603.07459 General Topology +1603.07461 Analysis of PDEs +1603.07463 Numerical Analysis +1603.07464 Probability +1603.07465 +1603.07466 Software Engineering +1603.07467 Fluid Dynamics +1603.07468 Quantum Algebra +1603.07471 Combinatorics +1603.07474 Phenomenology +1603.07475 Computer Vision and Pattern Recognition +1603.07476 +1603.07477 Probability +1603.07479 Analysis of PDEs +1603.07481 Physics and Society +1603.07482 Materials Science +1603.07488 Probability +1603.07489 Number Theory +1603.07493 Methodology +1603.07494 Functional Analysis +1603.07496 Exactly Solvable and Integrable Systems +1603.07500 Algebraic Geometry +1603.07501 Logic +1603.07502 Analysis of PDEs +1603.07505 Strongly Correlated Electrons +1603.07506 Plasma Physics +1603.07509 Spectral Theory +1603.07512 +1603.07515 Numerical Analysis +1603.07517 Analysis of PDEs +1603.07520 Dynamical Systems +1603.07522 Analysis of PDEs +1603.07528 Probability +1603.07531 Statistics Theory +1603.07534 Databases +1603.07536 Dynamical Systems +1603.07537 Mesoscale and Nanoscale Physics +1603.07538 Cryptography and Security +1603.07540 Dynamical Systems +1603.07541 Information Theory +1603.07542 Functional Analysis +1603.07543 Dynamical Systems +1603.07549 Numerical Analysis +1603.07552 General Physics +1603.07557 Symplectic Geometry +1603.07558 +1603.07559 Statistics Theory +1603.07562 Mesoscale and Nanoscale Physics +1603.07564 Mesoscale and Nanoscale Physics +1603.07566 Classical Analysis and ODEs +1603.07570 Combinatorics +1603.07571 +1603.07573 Statistics Theory +1603.07577 +1603.07579 Solar and Stellar Astrophysics +1603.07585 Probability +1603.07586 Probability +1603.07587 Probability +1603.07588 Combinatorics +1603.07589 Algebraic Geometry +1603.07590 Dynamical Systems +1603.07595 Cosmology and Nongalactic Astrophysics +1603.07599 Soft Condensed Matter +1603.07600 Biological Physics +1603.07602 Machine Learning +1603.07603 Computation and Language +1603.07604 Computer Vision and Pattern Recognition +1603.07606 Logic +1603.07607 Logic +1603.07608 Logic +1603.07609 Computation and Language +1603.07610 Computers and Society +1603.07611 Algebraic Geometry +1603.07613 Number Theory +1603.07614 +1603.07615 Mathematical Finance +1603.07616 Dynamical Systems +1603.07617 Classical Analysis and ODEs +1603.07618 Classical Analysis and ODEs +1603.07619 Combinatorics +1603.07621 +1603.07622 Optimization and Control +1603.07625 Computer Vision and Pattern Recognition +1603.07626 Analysis of PDEs +1603.07628 Information Theory +1603.07631 Software Engineering +1603.07632 Statistics Theory +1603.07635 Networking and Internet Architecture +1603.07641 Databases +1603.07642 Materials Science +1603.07643 Materials Science +1603.07646 Information Retrieval +1603.07647 Analysis of PDEs +1603.07648 Analysis of PDEs +1603.07650 Information Theory +1603.07653 Systems and Control +1603.07657 Classical Analysis and ODEs +1603.07658 Classical Analysis and ODEs +1603.07661 Symplectic Geometry +1603.07662 Algebraic Geometry +1603.07663 Materials Science +1603.07664 Classical Analysis and ODEs +1603.07668 Applications +1603.07684 Systems and Control +1603.07685 Classical Analysis and ODEs +1603.07686 Optimization and Control +1603.07687 Phenomenology +1603.07688 Optics +1603.07690 Optics +1603.07692 Computers and Society +1603.07694 +1603.07695 Computation and Language +1603.07696 Algebraic Geometry +1603.07699 Cryptography and Security +1603.07703 Classical Analysis and ODEs +1603.07705 Classical Analysis and ODEs +1603.07706 Theory +1603.07709 Social and Information Networks +1603.07710 Geometric Topology +1603.07712 Instrumentation and Detectors +1603.07714 Probability +1603.07716 Representation Theory +1603.07725 Analysis of PDEs +gr-qc/0510066 +0712.4006 Combinatorics +0806.2372 Theory +0907.2137 Differential Geometry +0911.2631 Probability +1001.2893 Theory +1003.2706 +1004.5269 Probability +1103.5775 Spectral Theory +1105.6215 Functional Analysis +1112.5808 Optimization and Control +1201.0037 Commutative Algebra +1203.3345 Chaotic Dynamics +1205.7018 Analysis of PDEs +1208.6073 Algebraic Geometry +1210.3261 +1210.7258 Logic +1210.8097 Spectral Theory +1211.1162 Data Analysis, Statistics and Probability +1301.0805 Physics and Society +1301.0806 Chaotic Dynamics +1301.4437 +1302.1325 Complex Variables +1305.0479 Computational Finance +1308.2844 Differential Geometry +1309.4935 Probability +1309.5847 Algebraic Geometry +1309.7794 Group Theory +1311.3897 Probability +1311.5122 Metric Geometry +1311.5702 +1311.7555 Probability +1312.1380 Analysis of PDEs +1312.2783 Differential Geometry +1312.2963 +1401.5184 +1402.1530 Sound +1402.2706 Applications +1402.3990 Probability +1402.4443 Classical Analysis and ODEs +1402.4635 Number Theory +1402.4912 Combinatorics +1402.6652 Atomic Physics +1403.0788 Algebraic Geometry +1404.1932 +1404.3589 Networking and Internet Architecture +1404.7165 Geometric Topology +1404.7724 Astrophysics of Galaxies +1405.2742 Probability +1405.6229 Classical Analysis and ODEs +1405.6794 Analysis of PDEs +1406.2009 Classical Analysis and ODEs +1406.5418 Theory +1407.6086 Numerical Analysis +1407.8006 Representation Theory +1408.0632 Probability +1408.0892 Rings and Algebras +1408.4522 Information Theory +1408.6799 Probability +1409.2850 Symplectic Geometry +1409.7812 History and Philosophy of Physics +1410.1346 Analysis of PDEs +1410.4778 Methodology +1411.0829 +1411.0884 Analysis of PDEs +1411.3292 Information Theory +1411.3989 Symplectic Geometry +1411.7759 Methodology +1412.3177 Differential Geometry +1412.4749 Classical Analysis and ODEs +1412.5350 Optimization and Control +1501.03440 Complex Variables +1501.05005 Information Theory +1501.05112 Analysis of PDEs +1501.06427 Classical Analysis and ODEs +1501.06696 Functional Analysis +1501.07475 Complex Variables +1502.00595 Representation Theory +1502.02673 +1502.07190 Machine Learning +1503.07855 +1503.07966 K-Theory and Homology +1503.08846 Numerical Analysis +1504.02430 Category Theory +1504.03286 Mesoscale and Nanoscale Physics +1504.03626 Optimization and Control +1504.03930 Numerical Analysis +1504.05061 +1504.06954 Data Structures and Algorithms +1504.07097 Superconductivity +1505.00239 Geometric Topology +1505.00625 Phenomenology +1505.03031 Algebraic Geometry +1505.05263 Metric Geometry +1505.06058 +1505.06615 Information Theory +1506.00502 Classical Analysis and ODEs +1506.01242 Optimization and Control +1506.02465 Artificial Intelligence +1506.03760 Data Structures and Algorithms +1506.04601 +1506.08248 Information Theory +1506.08552 Experiment +1507.01571 Data Analysis, Statistics and Probability +1507.03382 +1507.03553 Phenomenology +1507.06316 Phenomenology +1507.08629 Cosmology and Nongalactic Astrophysics +1507.08662 Astrophysics of Galaxies +1507.08974 Phenomenology +1508.00179 Optics +1508.00963 Theory +1508.01580 Computation and Language +1508.01806 Analysis of PDEs +1508.01895 Algebraic Geometry +1508.02190 +1508.02821 Differential Geometry +1508.04393 High Energy Astrophysical Phenomena +1508.04627 Cryptography and Security +1508.05143 Data Structures and Algorithms +1508.05602 Number Theory +1508.06106 Multimedia +1508.06269 Optimization and Control +1508.07137 +1508.07187 +1508.07544 Computation and Language +1509.01737 Strongly Correlated Electrons +1509.02500 Materials Science +1509.02532 Cosmology and Nongalactic Astrophysics +1509.04132 Algebraic Geometry +1509.04685 Cosmology and Nongalactic Astrophysics +1509.04926 +1509.06142 Numerical Analysis +1509.06770 Cosmology and Nongalactic Astrophysics +1509.08392 Optimization and Control +1509.08570 Numerical Analysis +1510.00017 Cosmology and Nongalactic Astrophysics +1510.00131 Number Theory +1510.00643 Chemical Physics +1510.02683 Probability +1510.04189 Machine Learning +1510.04488 Networking and Internet Architecture +1510.05875 Mathematical Finance +1510.07712 Computer Vision and Pattern Recognition +1510.08920 Probability +1511.00540 Neural and Evolutionary Computing +1511.01411 Computer Science and Game Theory +1511.05681 Combinatorics +1511.06040 Computer Vision and Pattern Recognition +1511.06197 Instrumentation and Detectors +1511.06235 Mesoscale and Nanoscale Physics +1511.06476 Phenomenology +1511.08320 Materials Science +1511.08434 +1511.08479 Probability +1511.09330 Superconductivity +1512.00731 Statistical Mechanics +1512.00754 Complex Variables +1512.00831 Complex Variables +1512.01284 Plasma Physics +1512.02666 Statistics Theory +1512.02952 Mesoscale and Nanoscale Physics +1512.03233 Mesoscale and Nanoscale Physics +1512.03266 Phenomenology +1512.03727 Classical Analysis and ODEs +1512.04370 Quantitative Methods +1512.05645 Quantum Gases +1512.05758 Chemical Physics +1512.06271 Data Structures and Algorithms +1512.06424 Numerical Analysis +1512.07361 Phenomenology +1512.07380 Statistical Mechanics +1512.07902 Theory +1512.08093 Mesoscale and Nanoscale Physics +1601.00627 General Physics +1601.00917 Learning +1601.01086 Commutative Algebra +1601.01097 Analysis of PDEs +1601.02159 Operator Algebras +1601.03637 Numerical Analysis +1601.04326 Algebraic Geometry +1601.04606 Strongly Correlated Electrons +1601.07882 Theory +1602.00712 Atomic Physics +1602.01236 Phenomenology +1602.01470 Theory +1602.01651 Mesoscale and Nanoscale Physics +1602.02009 Neural and Evolutionary Computing +1602.02595 Other Condensed Matter +1602.05677 Probability +1602.07412 Methodology +1602.08135 Networking and Internet Architecture +1602.08166 Computational Complexity +1602.08168 High Energy Astrophysical Phenomena +1603.00090 Plasma Physics +1603.01428 Materials Science +1603.02034 Information Theory +1603.02540 Superconductivity +1603.02714 Social and Information Networks +1603.03283 Soft Condensed Matter +1603.03958 Computer Vision and Pattern Recognition +1603.04262 Superconductivity +1603.04386 Combinatorics +1603.04605 Optimization and Control +1603.04787 Computational Physics +1603.05346 Data Structures and Algorithms +1603.05354 Computation and Language +1603.05366 General Topology +1603.05982 Statistical Mechanics +1603.06708 Learning +1603.06830 Cryptography and Security +1603.07457 Data Structures and Algorithms +1603.08061 +1603.08784 Instrumentation and Detectors +1603.09274 Programming Languages +1603.09279 Machine Learning +1603.09446 Computer Vision and Pattern Recognition +1603.09692 Complex Variables +1604.00163 Group Theory +1604.00610 Number Theory +1604.00739 Distributed, Parallel, and Cluster Computing +1604.00854 Information Theory +1604.00918 Strongly Correlated Electrons +1604.01049 Physics and Society +1604.01271 Theory +1604.01303 Networking and Internet Architecture +1604.01317 Genomics +1604.01339 Applications +1604.01351 Machine Learning +1604.01374 Logic +1604.01399 Solar and Stellar Astrophysics +1604.01405 Phenomenology +1604.01408 Instrumentation and Methods for Astrophysics +1604.01416 Neural and Evolutionary Computing +1604.01420 Computer Vision and Pattern Recognition +1604.01425 Instrumentation and Detectors +1604.01426 Instrumentation and Detectors +1604.01427 Instrumentation and Detectors +1604.01428 Computational Geometry +1604.01430 Materials Science +1604.01432 Complex Variables +1604.01433 Information Theory +1604.01434 Information Theory +1604.01435 Computer Science and Game Theory +1604.01442 Cosmology and Nongalactic Astrophysics +1604.01443 Methodology +1604.01446 Probability +1604.01447 Mathematical Finance +1604.01448 Analysis of PDEs +1604.01449 Algebraic Geometry +1604.01450 Software Engineering +1604.01452 Robotics +1604.01454 Numerical Analysis +1604.01458 Astrophysics of Galaxies +1604.01461 Functional Analysis +1604.01464 Information Theory +1604.01468 Representation Theory +1604.01475 Learning +1604.01476 Information Theory +1604.01477 Representation Theory +1604.01481 +1604.01483 Fluid Dynamics +1604.01484 Strongly Correlated Electrons +1604.01485 Computer Vision and Pattern Recognition +1604.01495 Neural and Evolutionary Computing +1604.01498 Differential Geometry +1604.01500 Computer Vision and Pattern Recognition +1604.01502 Combinatorics +1604.01507 Robotics +1604.01515 Statistics Theory +1604.01517 Category Theory +1604.01518 Learning +1604.01519 Networking and Internet Architecture +1604.01522 Differential Geometry +1604.01524 Optimization and Control +1604.01527 +1604.01530 Solar and Stellar Astrophysics +1604.01533 Solar and Stellar Astrophysics +1604.01537 Computation and Language +1604.01539 +1604.01540 Materials Science +1604.01541 Methodology +1604.01542 Optimization and Control +1604.01545 Computer Vision and Pattern Recognition +1604.01547 Analysis of PDEs +1604.01551 Commutative Algebra +1604.01556 Theory +1604.01564 Logic +1604.01568 Soft Condensed Matter +1604.01570 Representation Theory +1604.01574 Human-Computer Interaction +1604.01578 Functional Analysis +1604.01579 Probability +1604.01580 +1604.01581 Medical Physics +1604.01582 Combinatorics +1604.01583 Information Theory +1604.01584 Probability +1604.01586 +1604.01588 K-Theory and Homology +1604.01590 Chaotic Dynamics +1604.01592 Computational Geometry +1604.01593 Quantum Algebra +1604.01594 Information Theory +1604.01596 Spectral Theory +1604.01598 Instrumentation and Detectors +1604.01603 Probability +1604.01610 Functional Analysis +1604.01611 Chaotic Dynamics +1604.01615 Representation Theory +1604.01616 Functional Analysis +1604.01617 Applications +1604.01620 Probability +1604.01622 Representation Theory +1604.01623 General Physics +1604.01624 Chaotic Dynamics +1604.01628 Probability +1604.01629 High Energy Astrophysical Phenomena +1604.01630 Number Theory +1604.01631 +1604.01632 Computational Physics +1604.01635 +1604.01641 Materials Science +1604.01642 Robotics +1604.01646 Emerging Technologies +1604.01652 Optics +1604.01657 Analysis of PDEs +1604.01661 Quantum Gases +1604.01666 Disordered Systems and Neural Networks +1604.01669 Theory +1604.01672 Computer Science and Game Theory +1604.01675 Networking and Internet Architecture +1604.01677 +1604.01679 Quantum Algebra +1604.01682 Phenomenology +1604.01683 Computer Vision and Pattern Recognition +1604.01684 Computer Vision and Pattern Recognition +1604.01692 Computation and Language +1604.01694 Differential Geometry +1604.01695 Analysis of PDEs +1604.01696 Computation and Language +1604.01697 Data Structures and Algorithms +1604.01700 Algebraic Geometry +1604.01705 Mesoscale and Nanoscale Physics +1604.01706 Materials Science +1604.01707 Strongly Correlated Electrons +1604.01712 Strongly Correlated Electrons +1604.01713 Numerical Analysis +1604.01718 Analysis of PDEs +1604.01720 Computer Vision and Pattern Recognition +1604.01721 Combinatorics +1604.01722 Instrumentation and Methods for Astrophysics +1604.01732 +1604.01733 Machine Learning +1604.01734 Computer Science and Game Theory +1604.01737 Materials Science +1604.01739 Networking and Internet Architecture +1604.01740 Molecular Networks +1604.01741 Networking and Internet Architecture +1604.01745 Systems and Control +1604.01755 Strongly Correlated Electrons +math/9908040 Quantum Algebra +0905.3774 Statistical Mechanics +0909.0551 Theory +0911.4623 Soft Condensed Matter +0912.3421 +1001.0250 +1005.2697 Soft Condensed Matter +1007.0533 Group Theory +1009.2385 +1009.2492 Group Theory +1111.6731 Algebraic Topology +1201.2436 +1203.2520 High Energy Astrophysical Phenomena +1205.1809 Symplectic Geometry +1206.3395 Theory +1207.3066 Geometric Topology +1207.5514 Theory +1209.1385 +1209.1731 Algebraic Topology +1303.2044 Trading and Market Microstructure +1304.0584 High Energy Astrophysical Phenomena +1304.1241 Number Theory +1304.3833 Geometric Topology +1305.2103 Databases +1306.4632 Geometric Topology +1307.0874 Number Theory +1307.6707 General Physics +1307.6807 Fluid Dynamics +1307.8135 Number Theory +1308.1183 Representation Theory +1309.2370 Symplectic Geometry +1310.7856 Phenomenology +1311.2817 Algebraic Topology +1311.5833 K-Theory and Homology +1311.6238 Statistics Theory +1312.1762 Representation Theory +1312.1808 Geometric Topology +1312.2860 +1312.5922 Numerical Analysis +1312.7280 Algebraic Topology +1401.0012 Number Theory +1402.1481 Group Theory +1402.6944 General Physics +1403.2401 Geometric Topology +1403.5355 Lattice +1403.7168 Algebraic Geometry +1403.7319 Geometric Topology +1403.7330 Analysis of PDEs +1404.1249 Fluid Dynamics +1404.1254 Fluid Dynamics +1404.1277 Fluid Dynamics +1404.1337 Fluid Dynamics +1404.1471 Fluid Dynamics +1404.3552 Numerical Analysis +1404.6444 +1405.1956 Geometric Topology +1405.2763 Soft Condensed Matter +1405.4564 Fluid Dynamics +1405.6628 Statistics Theory +1406.0150 Cosmology and Nongalactic Astrophysics +1406.0955 Artificial Intelligence +1406.1194 Number Theory +1406.3030 Phenomenology +1406.3226 Soft Condensed Matter +1406.5557 Spectral Theory +1407.0217 Spectral Theory +1407.0682 Number Theory +1407.5253 Plasma Physics +1407.6175 Numerical Analysis +1408.2880 Number Theory +1408.3872 History and Overview +1408.4348 Quantum Algebra +1408.4428 Analysis of PDEs +1408.6407 +1409.0291 Analysis of PDEs +1409.0854 Numerical Analysis +1409.1352 Symplectic Geometry +1409.1526 Numerical Analysis +1409.2410 Functional Analysis +1409.2472 Solar and Stellar Astrophysics +1409.2556 Numerical Analysis +1409.2789 Numerical Analysis +1409.3116 Phenomenology +1409.3218 Computational Physics +1409.3581 Numerical Analysis +1409.3719 +1409.7423 Numerical Analysis +1409.7711 Cosmology and Nongalactic Astrophysics +1409.8203 Functional Analysis +1410.2810 Applications +1410.5313 Populations and Evolution +1410.7087 Combinatorics +1410.7683 Combinatorics +1410.8274 Representation Theory +1410.8543 Logic +1411.0071 Numerical Analysis +1411.0127 Disordered Systems and Neural Networks +1411.0179 Fluid Dynamics +1411.1364 Symplectic Geometry +1411.1546 Data Structures and Algorithms +1411.5061 Geometric Topology +1411.6913 Analysis of PDEs +1412.0640 Data Structures and Algorithms +1412.2120 General Physics +1412.4117 Fluid Dynamics +1412.4988 Geometric Topology +1412.5390 Phenomenology +1412.5467 Mesoscale and Nanoscale Physics +1412.5877 Geometric Topology +1412.6213 +1412.6637 +1412.7466 Numerical Analysis +1412.7579 +1412.8052 Soft Condensed Matter +1412.8644 Strongly Correlated Electrons +1412.8683 Chemical Physics +1412.8734 Algebraic Geometry +1501.00919 Information Theory +1501.01855 Lattice +1501.02493 Functional Analysis +1501.04347 Strongly Correlated Electrons +1501.04524 Mesoscale and Nanoscale Physics +1501.04926 Materials Science +1501.05638 Strongly Correlated Electrons +1501.07002 Phenomenology +1501.07561 Algebraic Topology +1502.00995 Materials Science +1502.01376 Computational Physics +1502.01387 Plasma Physics +1502.01425 Machine Learning +1502.01874 Fluid Dynamics +1502.02728 Computational Physics +1502.02958 Theory +1502.03453 High Energy Astrophysical Phenomena +1502.04751 Optics +1502.05065 Mesoscale and Nanoscale Physics +1502.05725 Algebraic Topology +1502.06039 Geometric Topology +1502.06258 Algebraic Geometry +1502.06915 General Physics +1502.06973 Mesoscale and Nanoscale Physics +1503.00072 Computer Vision and Pattern Recognition +1503.01005 Theory +1503.01169 Computational Physics +1503.02502 Strongly Correlated Electrons +1503.03438 Learning +1503.03521 Operator Algebras +1503.05660 Geometric Topology +1503.05920 Cosmology and Nongalactic Astrophysics +1503.06047 Rings and Algebras +1503.06358 Information Theory +1503.06361 Information Theory +1503.06415 Differential Geometry +1503.06639 Combinatorics +1503.06882 Information Theory +1503.07540 High Energy Astrophysical Phenomena +1503.07735 Popular Physics +1503.08825 Theory +1504.00126 Information Theory +1504.00659 Theory +1504.01199 Fluid Dynamics +1504.01213 Phenomenology +1504.01258 Information Theory +1504.01406 Theory +1504.02274 Analysis of PDEs +1504.02344 Other Condensed Matter +1504.02468 +1504.03229 Materials Science +1504.03496 Optimization and Control +1504.04480 +1504.04943 Computer Vision and Pattern Recognition +1504.05399 Numerical Analysis +1504.05847 Fluid Dynamics +1504.05970 +1504.06152 +1504.06613 Theory +1504.06838 +1504.07051 High Energy Astrophysical Phenomena +1504.07173 Probability +1504.07390 Statistics Theory +1504.08012 Solar and Stellar Astrophysics +1504.08269 +1505.00023 Robotics +1505.00742 Classical Analysis and ODEs +1505.01234 Dynamical Systems +1505.01385 +1505.01595 Mesoscale and Nanoscale Physics +1505.02239 +1505.02245 Analysis of PDEs +1505.02650 Optics +1505.02696 Numerical Analysis +1505.03249 Materials Science +1505.03432 Complex Variables +1505.03602 Analysis of PDEs +1505.03762 Methodology +1505.03967 Numerical Analysis +1505.04454 Differential Geometry +1505.04561 Geometric Topology +1505.04650 Learning +1505.04889 Algebraic Topology +1505.05358 Mesoscale and Nanoscale Physics +1505.05802 Differential Geometry +1505.06220 High Energy Astrophysical Phenomena +1505.06437 +1505.06821 Computer Vision and Pattern Recognition +1505.07110 Theory +1505.07198 Statistical Mechanics +1505.07340 Soft Condensed Matter +1505.07431 Information Theory +1505.07487 Cryptography and Security +1505.07523 Analysis of PDEs +1505.07529 Numerical Analysis +1505.07534 Information Theory +1506.00315 Mesoscale and Nanoscale Physics +1506.00980 Other Condensed Matter +1506.01610 Numerical Analysis +1506.02056 Chaotic Dynamics +1506.02160 Information Theory +1506.02230 Chemical Physics +1506.02482 Analysis of PDEs +1506.02945 Analysis of PDEs +1506.04061 Fluid Dynamics +1506.04062 Analysis of PDEs +1506.04076 +1506.04239 Materials Science +1506.04762 Superconductivity +1506.05269 Methodology +1506.05367 Information Theory +1506.06133 Experiment +1506.06351 Phenomenology +1506.06479 +1506.06516 Physics and Society +1506.06574 Rings and Algebras +1506.07051 +1506.07106 +1506.07435 +1506.07468 Networking and Internet Architecture +1506.07472 Populations and Evolution +1506.07680 +1506.08397 Theory +1506.08842 Applications +1506.09181 Atmospheric and Oceanic Physics +1507.00511 Biological Physics +1507.00629 Information Theory +1507.00888 Materials Science +1507.01169 Spectral Theory +1507.01734 Fluid Dynamics +1507.01980 Earth and Planetary Astrophysics +1507.02079 Methodology +1507.02707 Operator Algebras +1507.02894 Phenomenology +1507.02932 Quantum Gases +1507.03044 Social and Information Networks +1507.03129 Materials Science +1507.03201 Logic +1507.03235 Theory +1507.03413 +1507.03521 Fluid Dynamics +1507.03762 Information Theory +1507.03862 Representation Theory +1507.04003 Statistical Mechanics +1507.04196 Atomic Physics +1507.04256 Phenomenology +1507.04504 Fluid Dynamics +1507.04790 Plasma Physics +1507.05359 Phenomenology +1507.05965 Theory +1507.06005 Exactly Solvable and Integrable Systems +1507.06479 Statistical Mechanics +1507.06568 Phenomenology +1507.06736 Numerical Analysis +1507.07515 Mesoscale and Nanoscale Physics +1507.07649 Superconductivity +1507.07766 Information Theory +1507.07769 Instrumentation and Methods for Astrophysics +1507.08113 Materials Science +1507.08142 Representation Theory +1507.08165 Theory +1507.08207 Pattern Formation and Solitons +1507.08678 Computational Physics +1508.00673 Phenomenology +1508.00834 Materials Science +1508.00848 Experiment +1508.00889 Optics +1508.01255 Optics +1508.01262 Probability +1508.01342 +1508.01486 Optics +1508.01689 Soft Condensed Matter +1508.01715 Chemical Physics +1508.01720 Information Theory +1508.02431 +1508.02586 Soft Condensed Matter +1508.02811 +1508.03217 Instrumentation and Detectors +1508.03562 +1508.03654 Statistical Mechanics +1508.03740 Superconductivity +1508.04017 +1508.04350 Theory +1508.04383 Phenomenology +1508.04435 Theory +1508.04461 Classical Physics +1508.04599 +1508.04672 Statistical Mechanics +1508.04859 +1508.04951 +1508.05010 +1508.05136 Mesoscale and Nanoscale Physics +1508.05221 Adaptation and Self-Organizing Systems +1508.05374 Mathematical Software +1508.05520 +1508.06029 Cosmology and Nongalactic Astrophysics +1508.06244 Theory +1508.06294 +1508.06322 Theory +1508.06382 History and Philosophy of Physics +1508.06797 Analysis of PDEs +1508.06894 Mesoscale and Nanoscale Physics +1508.07010 Phenomenology +1508.07014 Phenomenology +1508.07209 +1508.07964 Machine Learning +1509.00344 Materials Science +1509.00433 Phenomenology +1509.00724 +1509.00792 Phenomenology +1509.00799 Lattice +1509.00890 Theory +1509.00989 Phenomenology +1509.01017 Optics +1509.01222 Theory +1509.01690 Strongly Correlated Electrons +1509.01751 Astrophysics of Galaxies +1509.01785 Strongly Correlated Electrons +1509.02539 Phenomenology +1509.02547 Theory +1509.02597 Distributed, Parallel, and Cluster Computing +1509.02604 Distributed, Parallel, and Cluster Computing +1509.02700 Strongly Correlated Electrons +1509.03052 Phenomenology +1509.03145 +1509.03148 Phenomenology +1509.03173 +1509.03251 Chemical Physics +1509.03273 Statistical Mechanics +1509.03365 Theory +1509.03797 Analysis of PDEs +1509.03812 +1509.03905 Dynamical Systems +1509.03913 Phenomenology +1509.03943 +1509.03960 Theory +1509.03993 Phenomenology +1509.04067 Classical Physics +1509.04070 Chemical Physics +1509.04101 Algebraic Geometry +1509.04267 +1509.04306 +1509.04390 Physics and Society +1509.04478 Analysis of PDEs +1509.04531 Materials Science +1509.04570 Dynamical Systems +1509.04646 Mesoscale and Nanoscale Physics +1509.04663 Astrophysics of Galaxies +1509.04960 High Energy Astrophysical Phenomena +1509.05076 Phenomenology +1509.05188 Genomics +1509.05551 Phenomenology +1509.05566 Numerical Analysis +1509.05590 Statistical Mechanics +1509.05705 Dynamical Systems +1509.05801 Probability +1509.05908 Optics +1509.06044 Phenomenology +1509.06404 Cosmology and Nongalactic Astrophysics +1509.06657 Atomic Physics +1509.06808 Applications +1509.06826 +1509.07066 Disordered Systems and Neural Networks +1509.07165 Statistical Mechanics +1509.07283 Phenomenology +1509.07460 Atomic Physics +1509.07486 Quantum Gases +1509.07636 Statistics Theory +1509.07799 Analysis of PDEs +1509.08286 Phenomenology +1509.08424 Fluid Dynamics +1509.08549 Optics +1509.09208 Numerical Analysis +1509.09238 +1510.00005 Theory +1510.00280 +1510.00345 Cosmology and Nongalactic Astrophysics +1510.00415 Statistical Mechanics +1510.00670 +1510.01608 Fluid Dynamics +1510.01719 Strongly Correlated Electrons +1510.01881 Probability +1510.01899 Optimization and Control +1510.02018 Adaptation and Self-Organizing Systems +1510.02092 Astrophysics of Galaxies +1510.02165 Earth and Planetary Astrophysics +1510.02311 Statistical Mechanics +1510.02344 Instrumentation and Detectors +1510.02470 Phenomenology +1510.02608 +1510.02641 Phenomenology +1510.03068 +1510.03083 Theory +1510.03089 +1510.03171 Cosmology and Nongalactic Astrophysics +1510.03273 Optics +1510.03283 Computer Vision and Pattern Recognition +1510.03444 Theory +1510.03455 Fluid Dynamics +1510.03543 +1510.03590 Probability +1510.03640 Mesoscale and Nanoscale Physics +1510.03649 Biological Physics +1510.03672 High Energy Astrophysical Phenomena +1510.04028 Phenomenology +1510.04218 Phenomenology +1510.04322 Statistical Mechanics +1510.04543 Materials Science +1510.04562 Computational Physics +1510.04579 Biomolecules +1510.04801 Number Theory +1510.05112 +1510.05374 Representation Theory +1510.05464 Algebraic Geometry +1510.05642 Astrophysics of Galaxies +1510.05857 Strongly Correlated Electrons +1510.05861 Statistical Mechanics +1510.05924 Strongly Correlated Electrons +1510.05993 Theory +1510.06218 Experiment +1510.06219 Statistical Mechanics +1510.06385 Mesoscale and Nanoscale Physics +1510.06433 Classical Analysis and ODEs +1510.06507 Computer Vision and Pattern Recognition +1510.07016 Astrophysics of Galaxies +1510.07249 Phenomenology +1510.07397 Phenomenology +1510.07436 Phenomenology +1510.07572 Strongly Correlated Electrons +1510.07579 Chemical Physics +1510.07687 Chemical Physics +1510.07717 +1510.07899 Phenomenology +1510.07902 Phenomenology +1510.08001 +1510.08015 Phenomenology +1510.08397 Quantitative Methods +1510.08601 Optics +1510.08616 Statistical Mechanics +1510.08626 Instrumentation and Detectors +1510.08823 Theory +1510.09177 Materials Science +1511.00027 Statistical Mechanics +1511.00130 Logic +1511.00241 +1511.00291 Numerical Analysis +1511.00365 Strongly Correlated Electrons +1511.00408 Optics +1511.00491 +1511.00527 +1511.00578 Optics +1511.00660 Instrumentation and Detectors +1511.00761 +1511.00892 Chaotic Dynamics +1511.01162 +1511.01186 Computer Vision and Pattern Recognition +1511.01204 Mesoscale and Nanoscale Physics +1511.01458 Atmospheric and Oceanic Physics +1511.01459 Atomic Physics +1511.01539 Strongly Correlated Electrons +1511.01588 Atomic Physics +1511.01873 Phenomenology +1511.01999 Statistical Mechanics +1511.02055 Theory +1511.02066 Optics +1511.02600 Mesoscale and Nanoscale Physics +1511.02630 Materials Science +1511.02651 Cosmology and Nongalactic Astrophysics +1511.02672 Theory +1511.02800 High Energy Astrophysical Phenomena +1511.02859 Phenomenology +1511.02886 Phenomenology +1511.02995 Methodology +1511.03041 Materials Science +1511.03306 Pattern Formation and Solitons +1511.03384 Medical Physics +1511.03474 Other Condensed Matter +1511.03479 Optics +1511.03497 Earth and Planetary Astrophysics +1511.03498 Earth and Planetary Astrophysics +1511.03580 Materials Science +1511.03724 +1511.03756 Numerical Analysis +1511.03800 Biological Physics +1511.03806 Quantum Algebra +1511.03815 +1511.03931 Chemical Physics +1511.04034 Mesoscale and Nanoscale Physics +1511.04131 +1511.04194 +1511.04405 Cosmology and Nongalactic Astrophysics +1511.04432 Theory +1511.04742 +1511.04749 Biological Physics +1511.04772 Theory +1511.04885 Optics +1511.04969 Other Condensed Matter +1511.04972 Strongly Correlated Electrons +1511.05000 Soft Condensed Matter +1511.05029 Materials Science +1511.05039 Mesoscale and Nanoscale Physics +1511.05072 +1511.05220 Theory +1511.05264 Optics +1511.05386 Phenomenology +1511.05441 Theory +1511.05495 +1511.05583 Information Theory +1511.05596 Mesoscale and Nanoscale Physics +1511.05675 Theory +1511.05851 Theory +1511.05936 Plasma Physics +1511.06036 Machine Learning +1511.06211 Phenomenology +1511.06304 Theory +1511.06606 Learning +1511.06779 Phenomenology +1511.06822 Superconductivity +1511.06854 Analysis of PDEs +1511.06978 Theory +1511.07170 Statistical Mechanics +1511.07286 Materials Science +1511.07449 Theory +1511.07472 Dynamical Systems +1511.07698 Phenomenology +1511.07770 Instrumentation and Detectors +1511.07787 +1511.07878 Theory +1511.07966 Mesoscale and Nanoscale Physics +1511.08165 Strongly Correlated Electrons +1511.08208 Theory +1511.08244 Mesoscale and Nanoscale Physics +1511.08285 Strongly Correlated Electrons +1511.08432 Phenomenology +1511.08496 Theory +1511.08680 +1511.08692 Phenomenology +1511.08859 +1511.08874 Phenomenology +1511.08926 +1511.08959 Instrumentation and Detectors +1511.08995 Numerical Analysis +1511.09004 +1511.09164 Optics +1511.09304 Cosmology and Nongalactic Astrophysics +1511.09357 Statistical Mechanics +1511.09404 Phenomenology +1512.00213 Information Theory +1512.00229 Phenomenology +1512.00440 Phenomenology +1512.00541 Cosmology and Nongalactic Astrophysics +1512.00613 Physics and Society +1512.00652 Theory +1512.00807 Theory +1512.00952 High Energy Astrophysical Phenomena +1512.00963 Fluid Dynamics +1512.00990 +1512.00998 Atomic Physics +1512.01138 Quantum Gases +1512.01178 Phenomenology +1512.01385 Statistical Mechanics +1512.01430 Physics and Society +1512.01444 Optics +1512.01553 Theory +1512.01658 Theory +1512.01743 Optics +1512.01787 Instrumentation and Detectors +1512.01795 Distributed, Parallel, and Cluster Computing +1512.01830 +1512.01974 Soft Condensed Matter +1512.02070 +1512.02077 Statistical Mechanics +1512.02131 Cosmology and Nongalactic Astrophysics +1512.02189 +1512.02260 Materials Science +1512.02354 Phenomenology +1512.02374 Phenomenology +1512.02415 Fluid Dynamics +1512.02469 +1512.02534 Computational Physics +1512.02579 Disordered Systems and Neural Networks +1512.02657 Theory +1512.02962 Materials Science +1512.02969 Theory +1512.03007 Information Theory +1512.03057 Astrophysics of Galaxies +1512.03119 Mesoscale and Nanoscale Physics +1512.03222 Superconductivity +1512.03270 Lattice +1512.03312 Commutative Algebra +1512.03320 Biological Physics +1512.03353 Theory +1512.03360 Phenomenology +1512.03377 Atomic and Molecular Clusters +1512.03431 Quantum Gases +1512.03447 Quantum Gases +1512.03478 Theory +1512.03524 Theory +1512.03600 +1512.03649 Theory +1512.03671 Differential Geometry +1512.03751 Theory +1512.03773 +1512.03852 Phenomenology +1512.03863 Phenomenology +1512.03972 +1512.04056 Soft Condensed Matter +1512.04062 Phenomenology +1512.04078 Statistical Mechanics +1512.04104 Theory +1512.04111 Materials Science +1512.04161 Materials Science +1512.04235 Materials Science +1512.04244 +1512.04356 Phenomenology +1512.04396 Pattern Formation and Solitons +1512.04538 Theory +1512.04698 Theory +1512.04754 Learning +1512.04909 Fluid Dynamics +1512.04953 Theory +1512.05330 Phenomenology +1512.05337 Instrumentation and Detectors +1512.05347 Theory +1512.05353 Phenomenology +1512.05362 Theory +1512.05462 Accelerator Physics +1512.05585 Phenomenology +1512.05623 Phenomenology +1512.05668 Theory +1512.05791 Theory +1512.05815 Mesoscale and Nanoscale Physics +1512.05869 Optics +1512.05879 Representation Theory +1512.05897 Fluid Dynamics +1512.05918 Plasma Physics +1512.05973 Accelerator Physics +1512.06113 Phenomenology +1512.06219 Astrophysics of Galaxies +1512.06348 Physics and Society +1512.06379 Computational Physics +1512.06381 Phenomenology +1512.06493 Phenomenology +1512.06740 Optics +1512.06799 Phenomenology +1512.06876 +1512.06907 +1512.06909 Phenomenology +1512.06949 +1512.07049 +1512.07060 Methodology +1512.07182 Theory +1512.07429 Other Condensed Matter +1512.07472 Theory +1512.07484 Theory +1512.07627 Theory +1512.07643 Fluid Dynamics +1512.07678 Computation +1512.07704 +1512.07706 Materials Science +1512.07773 +1512.07779 +1512.07842 Strongly Correlated Electrons +1512.07865 +1512.07878 Materials Science +1512.07889 Phenomenology +1512.07976 +1512.08081 Mesoscale and Nanoscale Physics +1512.08089 Soft Condensed Matter +1512.08233 Theory +1512.08278 +1512.08286 Strongly Correlated Electrons +1512.08368 +1512.08373 Phenomenology +1512.08375 Theory +1512.08385 +1512.08489 Cosmology and Nongalactic Astrophysics +1512.08642 Plasma Physics +1512.08685 Theory +1512.08719 Mesoscale and Nanoscale Physics +1512.08771 Theory +1512.08821 Mesoscale and Nanoscale Physics +1512.08922 Phenomenology +1512.09153 Theory +1512.09183 +1512.09240 Pattern Formation and Solitons +1512.09330 Lattice +1601.00005 Phenomenology +1601.00081 Phenomenology +1601.00135 Solar and Stellar Astrophysics +1601.00158 Statistical Mechanics +1601.00285 Phenomenology +1601.00373 Phenomenology +1601.00640 Phenomenology +1601.00647 Theory +1601.00650 Instrumentation and Methods for Astrophysics +1601.00766 Quantum Gases +1601.00841 Fluid Dynamics +1601.01074 Information Theory +1601.01227 Fluid Dynamics +1601.01251 Strongly Correlated Electrons +1601.01319 Phenomenology +1601.01326 Phenomenology +1601.01364 Optics +1601.01406 Theory +1601.01558 Computational Physics +1601.01562 Mesoscale and Nanoscale Physics +1601.01659 Superconductivity +1601.01753 Physics and Society +1601.02210 Materials Science +1601.02286 Atomic Physics +1601.02411 Phenomenology +1601.02485 Mesoscale and Nanoscale Physics +1601.02508 Strongly Correlated Electrons +1601.02533 Mesoscale and Nanoscale Physics +1601.02570 Phenomenology +1601.02660 Theory +1601.02714 Phenomenology +1601.02934 Phenomenology +1601.02987 Information Theory +1601.02998 Strongly Correlated Electrons +1601.03001 Mesoscale and Nanoscale Physics +1601.03407 High Energy Astrophysical Phenomena +1601.03488 Theory +1601.03491 Plasma Physics +1601.03571 +1601.03654 Phenomenology +1601.03671 Phenomenology +1601.03696 Phenomenology +1601.03838 Strongly Correlated Electrons +1601.03923 Chemical Physics +1601.03961 +1601.03983 +1601.04008 Accelerator Physics +1601.04046 Theory +1601.04047 Classical Physics +1601.04074 Solar and Stellar Astrophysics +1601.04086 Atomic Physics +1601.04112 +1601.04148 Astrophysics of Galaxies +1601.04265 Strongly Correlated Electrons +1601.04278 Strongly Correlated Electrons +1601.04331 Methodology +1601.04474 Materials Science +1601.04578 +1601.04647 Materials Science +1601.04733 Optics +1601.04764 Optics +1601.04849 Accelerator Physics +1601.04852 Atomic Physics +1601.04853 Optics +1601.04919 Symplectic Geometry +1601.04972 Neurons and Cognition +1601.05099 High Energy Astrophysical Phenomena +1601.05126 Accelerator Physics +1601.05175 Differential Geometry +1601.05288 +1601.05463 +1601.05564 Phenomenology +1601.05588 +1601.05623 Mesoscale and Nanoscale Physics +1601.05719 Theory +1601.05757 +1601.05905 Strongly Correlated Electrons +1601.05957 Statistical Mechanics +1601.06325 Optics +1601.06374 Phenomenology +1601.06415 Strongly Correlated Electrons +1601.06568 Phenomenology +1601.06728 Mesoscale and Nanoscale Physics +1601.06757 Mesoscale and Nanoscale Physics +1601.06768 Theory +1601.06814 Information Theory +1601.06841 Theory +1601.07001 +1601.07076 Strongly Correlated Electrons +1601.07179 Solar and Stellar Astrophysics +1601.07199 Phenomenology +1601.07240 Strongly Correlated Electrons +1601.07340 Information Theory +1601.07342 Phenomenology +1601.07432 High Energy Astrophysical Phenomena +1601.07447 Populations and Evolution +1601.07575 Solar and Stellar Astrophysics +1601.07577 Optics +1601.07636 +1601.07652 +1601.07758 Phenomenology +1601.07863 High Energy Astrophysical Phenomena +1601.07876 Atomic Physics +1601.07890 Cosmology and Nongalactic Astrophysics +1601.07933 +1601.08064 Optics +1601.08081 Phenomenology +1601.08124 Disordered Systems and Neural Networks +1601.08187 Materials Science +1602.00002 Astrophysics of Galaxies +1602.00025 Mesoscale and Nanoscale Physics +1602.00056 Instrumentation and Detectors +1602.00244 Symbolic Computation +1602.00474 Mesoscale and Nanoscale Physics +1602.00523 +1602.00656 Superconductivity +1602.00826 +1602.00872 Analysis of PDEs +1602.00885 Phenomenology +1602.01004 Astrophysics of Galaxies +1602.01081 High Energy Astrophysical Phenomena +1602.01177 Strongly Correlated Electrons +1602.01251 +1602.01319 +1602.01380 Theory +1602.01413 Optics +1602.01460 Phenomenology +1602.01479 Theory +1602.01482 Strongly Correlated Electrons +1602.01528 Computer Vision and Pattern Recognition +1602.01588 +1602.01609 Atomic Physics +1602.01721 Astrophysics of Galaxies +1602.01761 Combinatorics +1602.01767 Lattice +1602.01863 Materials Science +1602.01987 Superconductivity +1602.02104 Chemical Physics +1602.02162 Phenomenology +1602.02276 Instrumentation and Detectors +1602.02325 Mesoscale and Nanoscale Physics +1602.02344 Materials Science +1602.02447 Chemical Physics +1602.02463 Phenomenology +1602.02639 Phenomenology +1602.02782 Phenomenology +1602.02802 Theory +1602.02838 Theory +1602.02967 Analysis of PDEs +1602.03208 Logic +1602.03213 Materials Science +1602.03288 Superconductivity +1602.03613 Strongly Correlated Electrons +1602.03638 Mathematical Software +1602.03645 Statistical Mechanics +1602.03653 Phenomenology +1602.03873 Phenomenology +1602.03907 +1602.04021 +1602.04115 Cryptography and Security +1602.04118 Lattice +1602.04203 Phenomenology +1602.04209 Atmospheric and Oceanic Physics +1602.04242 Statistical Mechanics +1602.04458 Materials Science +1602.04529 Robotics +1602.04543 Mesoscale and Nanoscale Physics +1602.04843 Astrophysics of Galaxies +1602.04925 +1602.04930 Information Retrieval +1602.04992 Optics +1602.05005 Astrophysics of Galaxies +1602.05121 Strongly Correlated Electrons +1602.05198 +1602.05239 High Energy Astrophysical Phenomena +1602.05272 Physics and Society +1602.05294 Soft Condensed Matter +1602.05334 Solar and Stellar Astrophysics +1602.05380 Soft Condensed Matter +1602.05430 Earth and Planetary Astrophysics +1602.05434 Chemical Physics +1602.05623 +1602.05639 Soft Condensed Matter +1602.05672 +1602.05695 Geophysics +1602.05770 Other Condensed Matter +1602.05910 +1602.06011 Optics +1602.06021 Biomolecules +1602.06176 +1602.06588 Soft Condensed Matter +1602.06699 Phenomenology +1602.06704 Theory +1602.06705 Data Structures and Algorithms +1602.06812 Mesoscale and Nanoscale Physics +1602.06939 +1602.06990 +1602.07145 Exactly Solvable and Integrable Systems +1602.07157 Exactly Solvable and Integrable Systems +1602.07164 Exactly Solvable and Integrable Systems +1602.07247 Instrumentation and Detectors +1602.07287 Theory +1602.07297 Phenomenology +1602.07310 Theory +1602.07347 Soft Condensed Matter +1602.07395 +1602.07427 Cosmology and Nongalactic Astrophysics +1602.07524 Mesoscale and Nanoscale Physics +1602.07560 Soft Condensed Matter +1602.07590 Astrophysics of Galaxies +1602.07798 Solar and Stellar Astrophysics +1602.07835 High Energy Astrophysical Phenomena +1602.07848 Earth and Planetary Astrophysics +1602.07882 Mesoscale and Nanoscale Physics +1602.07900 +1602.08014 Cosmology and Nongalactic Astrophysics +1602.08047 +1602.08086 High Energy Astrophysical Phenomena +1602.08223 Strongly Correlated Electrons +1602.08276 Analysis of PDEs +1602.08394 Information Theory +1602.08407 Mesoscale and Nanoscale Physics +1602.08413 Statistical Mechanics +1602.08452 Superconductivity +1602.08464 Pattern Formation and Solitons +1602.08522 High Energy Astrophysical Phenomena +1602.08598 Cosmology and Nongalactic Astrophysics +1602.08642 Phenomenology +1602.08679 +1602.08699 Instrumentation and Detectors +1602.08944 Atomic Physics +1602.08966 Superconductivity +1602.09077 Astrophysics of Galaxies +1602.09139 Combinatorics +1603.00037 +1603.00120 Optics +1603.00158 Atomic Physics +1603.00196 Probability +1603.00364 Theory +1603.00421 Optics +1603.00693 Strongly Correlated Electrons +1603.00732 High Energy Astrophysical Phenomena +1603.00755 Strongly Correlated Electrons +1603.00858 Data Structures and Algorithms +1603.00867 Solar and Stellar Astrophysics +1603.00981 +1603.01014 Instrumentation and Detectors +1603.01061 Solar and Stellar Astrophysics +1603.01116 Dynamical Systems +1603.01237 Optimization and Control +1603.01291 Astrophysics of Galaxies +1603.01325 Cosmology and Nongalactic Astrophysics +1603.01364 +1603.01453 Astrophysics of Galaxies +1603.01513 Materials Science +1603.01575 Superconductivity +1603.01628 Theory +1603.01773 Astrophysics of Galaxies +1603.01942 Computer Vision and Pattern Recognition +1603.01990 Materials Science +1603.02014 High Energy Astrophysical Phenomena +1603.02137 +1603.02337 Soft Condensed Matter +1603.02450 Quantum Gases +1603.02460 Astrophysics of Galaxies +1603.02461 Astrophysics of Galaxies +1603.02529 Astrophysics of Galaxies +1603.02561 Optics +1603.02633 Solar and Stellar Astrophysics +1603.02672 Astrophysics of Galaxies +1603.02689 Astrophysics of Galaxies +1603.02751 Astrophysics of Galaxies +1603.02792 +1603.02876 Earth and Planetary Astrophysics +1603.02978 Chemical Physics +1603.03026 Statistical Mechanics +1603.03036 Astrophysics of Galaxies +1603.03121 Solar and Stellar Astrophysics +1603.03155 Mesoscale and Nanoscale Physics +1603.03208 Soft Condensed Matter +1603.03234 Computer Vision and Pattern Recognition +1603.03246 Atomic Physics +1603.03275 Physics and Society +1603.03278 Optics +1603.03376 Superconductivity +1603.03407 +1603.03438 Instrumentation and Methods for Astrophysics +1603.03540 Plasma Physics +1603.03690 High Energy Astrophysical Phenomena +1603.03694 Quantitative Methods +1603.03712 Mesoscale and Nanoscale Physics +1603.03853 Earth and Planetary Astrophysics +1603.04070 High Energy Astrophysical Phenomena +1603.04356 Analysis of PDEs +1603.04714 Pattern Formation and Solitons +1603.04725 Phenomenology +1603.04770 Computational Physics +1603.04816 Strongly Correlated Electrons +1603.04867 Astrophysics of Galaxies +1603.05138 Chemical Physics +1603.05179 Earth and Planetary Astrophysics +1603.05335 Computer Vision and Pattern Recognition +1603.05387 Theory +1603.05396 Astrophysics of Galaxies +1603.05400 Astrophysics of Galaxies +1603.05403 Statistical Mechanics +1603.05479 Astrophysics of Galaxies +1603.05568 +1603.05575 Optics +1603.05618 Computational Physics +1603.05654 Solar and Stellar Astrophysics +1603.05661 Astrophysics of Galaxies +1603.05825 Chaotic Dynamics +1603.05973 Materials Science +1603.05993 Astrophysics of Galaxies +1603.06332 Optics +1603.06484 Fluid Dynamics +1603.06510 Instrumentation and Detectors +1603.06585 High Energy Astrophysical Phenomena +1603.06689 Solar and Stellar Astrophysics +1603.06922 Optics +1603.07040 Instrumentation and Detectors +1603.07097 Atomic Physics +1603.07121 Strongly Correlated Electrons +1603.07180 Plasma Physics +1603.07247 Earth and Planetary Astrophysics +1603.07264 +1603.07309 Phenomenology +1603.07331 Astrophysics of Galaxies +1603.07413 Optimization and Control +1603.07516 Statistical Mechanics +1603.07598 Materials Science +1603.07612 High Energy Astrophysical Phenomena +1603.07636 +1603.07734 Astrophysics of Galaxies +1603.07921 High Energy Astrophysical Phenomena +1603.08109 Computer Vision and Pattern Recognition +1603.08276 Strongly Correlated Electrons +1603.08291 Phenomenology +1603.08326 Applications +1603.08354 Instrumentation and Methods for Astrophysics +1603.08394 Astrophysics of Galaxies +1603.08483 Instrumentation and Detectors +1603.08653 Fluid Dynamics +1603.08774 +1603.08814 Superconductivity +1603.09023 Soft Condensed Matter +1603.09121 Solar and Stellar Astrophysics +1603.09607 +1603.09633 Fluid Dynamics +1604.00084 Phenomenology +1604.00234 Quantum Gases +1604.00264 +1604.00296 +1604.00390 Theory +1604.00450 Optics +1604.00469 Fluid Dynamics +1604.00515 Information Theory +1604.00530 Analysis of PDEs +1604.00603 Chaotic Dynamics +1604.00780 +1604.00874 +1604.01161 Superconductivity +1604.01167 +1604.01289 Quantum Gases +1604.01441 Phenomenology +1604.01505 Astrophysics of Galaxies +1604.01532 Mesoscale and Nanoscale Physics +1604.01544 Physics and Society +1604.01773 Astrophysics of Galaxies +1604.01832 Phenomenology +1604.01849 Soft Condensed Matter +1604.01902 Number Theory +1604.01973 Materials Science +1604.02022 Algebraic Geometry +1604.02149 Astrophysics of Galaxies +1604.02200 Solar and Stellar Astrophysics +1604.02213 +1604.02222 Materials Science +1604.02241 Optics +1604.02324 Mesoscale and Nanoscale Physics +1604.02538 Statistical Mechanics +1604.02990 +1604.03274 Strongly Correlated Electrons +1604.03329 High Energy Astrophysical Phenomena +1604.03375 +1604.03524 Optics +1604.03550 Solar and Stellar Astrophysics +1604.03785 Exactly Solvable and Integrable Systems +1604.03791 General Physics +1604.03798 Solar and Stellar Astrophysics +1604.03891 Astrophysics of Galaxies +1604.03961 Earth and Planetary Astrophysics +1604.04001 Cosmology and Nongalactic Astrophysics +1604.04020 Mesoscale and Nanoscale Physics +1604.04067 Plasma Physics +1604.04132 +1604.04578 +1604.04580 Functional Analysis +1604.04599 Phenomenology +1604.04882 Probability +1604.04974 Group Theory +1604.05312 Solar and Stellar Astrophysics +1604.05400 Theory +1604.05502 Materials Science +1604.05722 High Energy Astrophysical Phenomena +1604.05727 High Energy Astrophysical Phenomena +1604.05733 Solar and Stellar Astrophysics +1604.05808 Earth and Planetary Astrophysics +1604.05838 Superconductivity +1604.05981 Astrophysics of Galaxies +1604.06094 Solar and Stellar Astrophysics +1604.06303 High Energy Astrophysical Phenomena +1604.06455 Astrophysics of Galaxies +1604.06468 High Energy Astrophysical Phenomena +1604.06475 Astrophysics of Galaxies +1604.06562 Mesoscale and Nanoscale Physics +1604.06654 Complex Variables +1604.06811 Astrophysics of Galaxies +1604.06856 +1604.06879 Astrophysics of Galaxies +1604.06977 Astrophysics of Galaxies +1604.07082 Materials Science +1604.07437 Solar and Stellar Astrophysics +1604.07542 Number Theory +1604.07549 Information Theory +1604.07574 Solar and Stellar Astrophysics +1604.07600 Algebraic Geometry +1604.07674 Plasma Physics +1604.07760 Solar and Stellar Astrophysics +1604.07767 Strongly Correlated Electrons +1604.07921 Phenomenology +1604.07931 +1604.07943 Chaotic Dynamics +1604.08163 Plasma Physics +1604.08306 Earth and Planetary Astrophysics +1604.08355 Instrumentation and Methods for Astrophysics +1604.08555 Astrophysics of Galaxies +1604.08629 Biological Physics +1604.08688 +1604.08725 Mesoscale and Nanoscale Physics +1604.08827 Earth and Planetary Astrophysics +1604.08901 +1605.00011 Phenomenology +1605.00017 Learning +1605.00027 Theory +1605.00042 Optimization and Control +1605.00076 Optimization and Control +1605.00082 Networking and Internet Architecture +1605.00095 Experiment +1605.00108 Computers and Society +1605.00142 +1605.00166 Optics +1605.00167 Computer Science and Game Theory +1605.00184 Information Retrieval +1605.00190 Numerical Analysis +1605.00216 Mesoscale and Nanoscale Physics +1605.00251 Learning +1605.00252 Learning +1605.00264 Materials Science +1605.00280 +1605.00299 Strongly Correlated Electrons +1605.00321 +1605.00328 History and Overview +1605.00332 Optics +1605.00408 High Energy Astrophysical Phenomena +1605.00424 Astrophysics of Galaxies +1605.00426 Fluid Dynamics +1605.00448 Social and Information Networks +1605.00491 Theory +1605.00507 Methodology +1605.00519 Machine Learning +1605.00529 Machine Learning +1605.00584 Dynamical Systems +1605.00619 +1605.00634 General Finance +1605.00650 Astrophysics of Galaxies +1605.00651 Theory +1605.00654 Phenomenology +1605.00666 High Energy Astrophysical Phenomena +1605.00676 Analysis of PDEs +1605.00677 Databases +1605.00678 Mesoscale and Nanoscale Physics +1605.00681 Cryptography and Security +1605.00684 Cryptography and Security +1605.00686 Artificial Intelligence +1605.00687 Analysis of PDEs +1605.00689 Quantum Algebra +1605.00690 Systems and Control +1605.00691 Probability +1605.00693 Information Theory +1605.00695 Information Theory +1605.00697 Theory +1605.00698 Numerical Analysis +1605.00699 Fluid Dynamics +1605.00704 Classical Analysis and ODEs +1605.00705 Information Theory +1605.00706 Algebraic Topology +1605.00707 Computer Vision and Pattern Recognition +1605.00713 +1605.00716 Learning +1605.00718 Mesoscale and Nanoscale Physics +1605.00721 Optimization and Control +1605.00722 Rings and Algebras +1605.00724 Information Theory +1605.00732 Computer Vision and Pattern Recognition +1605.00733 Materials Science +1605.00736 +1605.00737 Robotics +1605.00738 Information Theory +1605.00739 Algebraic Topology +1605.00740 Learning +1605.00743 Computer Vision and Pattern Recognition +1605.00749 Earth and Planetary Astrophysics +1605.00752 High Energy Astrophysical Phenomena +1605.00755 +1605.00762 Mathematical Finance +1605.00763 Computer Vision and Pattern Recognition +1605.00766 Cryptography and Security +1605.00769 Information Theory +1605.00770 Software Engineering +1605.00772 Networking and Internet Architecture +1605.00774 Software Engineering +1605.00775 Computer Vision and Pattern Recognition +1605.00778 Instrumentation and Detectors +1605.00779 Machine Learning +1605.00781 Group Theory +1605.00783 Optics +1605.00784 Phenomenology +1605.00785 Differential Geometry +1605.00787 Artificial Intelligence +1605.00796 +1605.00797 Group Theory +1605.00799 +1605.00801 Analysis of PDEs +1605.00802 Information Theory +1605.00803 Rings and Algebras +1605.00805 Number Theory +1605.00807 Human-Computer Interaction +1605.00809 Phenomenology +1605.00810 Sound +1605.00813 Number Theory +1605.00817 Formal Languages and Automata Theory +1605.00818 Combinatorics +1605.00819 Number Theory +1605.00821 Experiment +1605.00824 Classical Analysis and ODEs +1605.00825 Numerical Analysis +1605.00829 Exactly Solvable and Integrable Systems +1605.00831 Optics +1605.00832 Symbolic Computation +1605.00833 Computers and Society +1605.00834 +1605.00835 Mesoscale and Nanoscale Physics +1605.00836 Analysis of PDEs +1605.00839 Atomic Physics +1605.00840 Group Theory +1605.00842 Category Theory +1605.00843 Theory +1605.00844 +1605.00845 Algebraic Topology +1605.00846 Fluid Dynamics +1605.00848 Rings and Algebras +1605.00854 Computational Engineering, Finance, and Science +1605.00855 Computer Vision and Pattern Recognition +1605.00859 Combinatorics +1605.00860 Computation +1605.00861 Materials Science +1605.00862 +1605.00863 Discrete Mathematics +1605.00867 Fluid Dynamics +1605.00868 Statistics Theory +1605.00871 Analysis of PDEs +1605.00872 Accelerator Physics +1605.00876 Systems and Control +1605.00877 Phenomenology +1605.00878 Soft Condensed Matter +1605.00879 Spectral Theory +1605.00883 Dynamical Systems +1605.00885 Fluid Dynamics +1605.00886 Biomolecules +1605.00887 Symbolic Computation +1605.00888 +1605.00889 Networking and Internet Architecture +1605.00890 History and Overview +1605.00891 Analysis of PDEs +1605.00894 Computer Vision and Pattern Recognition +1605.00895 +1605.00897 Disordered Systems and Neural Networks +1605.00901 Optimization and Control +1605.00903 Computational Complexity +1605.00904 Information Theory +1605.00908 Representation Theory +1605.00910 Human-Computer Interaction +1605.00911 Probability +1605.00914 Data Structures and Algorithms +1605.00916 Differential Geometry +1605.00918 Cryptography and Security +1605.00922 Classical Analysis and ODEs +1605.00926 +1605.00930 Distributed, Parallel, and Cluster Computing +1605.00933 Optimization and Control +1605.00936 Strongly Correlated Electrons +1605.00939 Classical Analysis and ODEs +1605.00945 Logic +1605.00946 Combinatorics +1605.00947 Systems and Control +1605.00950 Logic in Computer Science +1605.00952 Optimization and Control +1605.00953 Rings and Algebras +1605.00954 Metric Geometry +1605.00955 Mesoscale and Nanoscale Physics +1605.00957 Multimedia +1605.00959 Learning +1605.00967 Computational Geometry +1605.00968 Social and Information Networks +1605.00970 +1605.00973 Information Theory +1605.00974 Analysis of PDEs +1605.00976 Differential Geometry +1605.00977 Optimization and Control +1605.00979 Information Theory +1605.00980 K-Theory and Homology +1605.00986 Statistical Mechanics +1605.00987 Cryptography and Security +1605.00992 +1605.00998 Mathematical Software +1605.00999 +1605.01000 Pattern Formation and Solitons +1605.01003 Logic +1605.01004 Logic in Computer Science +1605.01010 Information Retrieval +1605.01011 Statistics Theory +1605.01012 Materials Science +1605.01015 Materials Science +1605.01016 Geometric Topology +1605.01020 Fluid Dynamics +1605.01021 Computer Science and Game Theory +1605.01026 Number Theory +1605.01028 Statistical Finance +1605.01029 Learning +1605.01030 Systems and Control +1605.01031 Optimization and Control +1605.01038 Applications +1605.01039 Populations and Evolution +1605.01041 Spectral Theory +1605.01048 Materials Science +1605.01049 Chemical Physics +1605.01051 +hep-ph/0311024 Phenomenology +0810.2253 Differential Geometry +0907.5571 Complex Variables +1009.4145 Functional Analysis +1212.2326 Differential Geometry +1304.0967 History and Overview +1304.4986 Combinatorics +1305.2721 +1305.6956 Number Theory +1307.0641 Geometric Topology +1311.2242 Number Theory +1401.0083 Analysis of PDEs +1402.6241 Superconductivity +1403.5722 Probability +1405.1725 Cosmology and Nongalactic Astrophysics +1405.2505 Symplectic Geometry +1406.2129 Theory +1407.4456 High Energy Astrophysical Phenomena +1409.2024 Cosmology and Nongalactic Astrophysics +1409.5235 +1410.1025 Neurons and Cognition +1411.0232 Optics +1412.0342 High Energy Astrophysical Phenomena +1412.4021 Computation and Language +1412.5165 Differential Geometry +1412.6702 Representation Theory +1412.7324 Group Theory +1501.05349 Applications +1502.04375 Differential Geometry +1502.04883 High Energy Astrophysical Phenomena +1503.00014 Mesoscale and Nanoscale Physics +1503.01668 Materials Science +1504.00453 +1504.06488 Systems and Control +1505.01417 Probability +1505.03522 High Energy Astrophysical Phenomena +1505.03718 Computer Science and Game Theory +1505.04434 +1506.03378 Learning +1506.04730 Differential Geometry +1506.08028 Algebraic Geometry +1507.01491 Information Theory +1507.02186 Learning +1507.02606 Materials Science +1507.04549 Functional Analysis +1507.06760 Algebraic Geometry +1508.01799 Mesoscale and Nanoscale Physics +1508.04082 Functional Analysis +1508.04744 +1508.05621 Algebraic Geometry +1508.06099 +1508.07467 Numerical Analysis +1509.01061 Experiment +1509.03505 Theory +1509.04565 Discrete Mathematics +1509.04647 Materials Science +1509.04792 +1509.06090 +1509.06220 Logic in Computer Science +1510.01470 Algebraic Topology +1510.02923 Analysis of PDEs +1510.04946 Differential Geometry +1511.02217 Theory +1511.03753 Computer Vision and Pattern Recognition +1511.04071 Phenomenology +1511.04163 Analysis of PDEs +1511.04824 Optics +1511.05393 Numerical Analysis +1511.08052 +1511.08111 Metric Geometry +1512.01039 Networking and Internet Architecture +1512.01936 +1512.04207 Phenomenology +1512.04218 Probability +1512.05138 Astrophysics of Galaxies +1512.05640 +1512.07688 +1512.08645 Optimization and Control +1601.00046 +1601.00777 Rings and Algebras +1601.01067 Symbolic Computation +1601.01261 Numerical Analysis +1601.03764 Computation and Language +1601.04037 Robotics +1601.05847 Optics +1601.05872 Probability +1601.06819 +1601.06949 Strongly Correlated Electrons +1601.07035 Statistical Mechanics +1602.00843 Earth and Planetary Astrophysics +1602.01636 Numerical Analysis +1602.02030 Multimedia +1602.02712 Algebraic Geometry +1602.03868 High Energy Astrophysical Phenomena +1602.04301 Social and Information Networks +1602.04339 Symbolic Computation +1602.04916 Geometric Topology +1602.05201 Mesoscale and Nanoscale Physics +1602.05344 +1602.07245 Theory +1602.07817 Mesoscale and Nanoscale Physics +1602.07983 Strongly Correlated Electrons +1602.08492 High Energy Astrophysical Phenomena +1602.08806 Phenomenology +1603.00041 Mesoscale and Nanoscale Physics +1603.00670 Physics and Society +1603.01970 Neurons and Cognition +1603.02119 Analysis of PDEs +1603.02842 Statistical Mechanics +1603.04865 Cryptography and Security +1603.05297 Applications +1603.05777 Chaotic Dynamics +1603.06233 Solar and Stellar Astrophysics +1603.06646 Strongly Correlated Electrons +1603.08452 Digital Libraries +1603.08578 Statistics Theory +1603.08834 Phenomenology +1603.09355 Theory +1604.00802 Analysis of PDEs +1604.01039 Phenomenology +1604.02029 Phenomenology +1604.02464 Statistical Mechanics +1604.02716 Digital Libraries +1604.05529 Computation and Language +1604.06221 Information Theory +1604.07864 High Energy Astrophysical Phenomena +1604.08066 Distributed, Parallel, and Cluster Computing +1605.01017 Populations and Evolution +1605.01112 Optics +1605.01660 Metric Geometry +1605.01719 Differential Geometry +1605.02024 Cosmology and Nongalactic Astrophysics +1605.03104 Physics and Society +1605.03646 High Energy Astrophysical Phenomena +1605.03753 Computational Geometry +1605.05170 Quantum Gases +1605.05588 Systems and Control +1605.05974 Cosmology and Nongalactic Astrophysics +1605.08411 Phenomenology +1605.09040 +1605.09489 Subcellular Processes +1606.00758 +1606.00825 Neural and Evolutionary Computing +1606.01386 Classical Analysis and ODEs +1606.01409 Theory +1606.02998 +1606.03201 +1606.03938 Discrete Mathematics +1606.04347 Optics +1606.04379 +1606.07589 Rings and Algebras +1606.08731 Optimization and Control +1606.09140 Artificial Intelligence +1606.09189 Dynamical Systems +1606.09488 Discrete Mathematics +1607.00717 +1607.00937 Disordered Systems and Neural Networks +1607.01298 +1607.02115 +1607.02503 Mesoscale and Nanoscale Physics +1607.02567 Cosmology and Nongalactic Astrophysics +1607.03796 Instrumentation and Methods for Astrophysics +1607.04393 Materials Science +1607.04491 Theory +1607.05151 Differential Geometry +1607.05152 Differential Geometry +1607.05314 Combinatorics +1607.05447 Computer Vision and Pattern Recognition +1607.05468 Commutative Algebra +1607.05559 Functional Analysis +1607.05770 Probability +1607.05891 Differential Geometry +1607.06030 Soft Condensed Matter +1607.06079 General Mathematics +1607.06080 History and Philosophy of Physics +1607.06081 Mesoscale and Nanoscale Physics +1607.06082 General Mathematics +1607.06083 Phenomenology +1607.06086 Astrophysics of Galaxies +1607.06090 +1607.06097 Cosmology and Nongalactic Astrophysics +1607.06098 Cosmology and Nongalactic Astrophysics +1607.06106 Formal Languages and Automata Theory +1607.06107 Mesoscale and Nanoscale Physics +1607.06109 Theory +1607.06110 Theory +1607.06113 Neural and Evolutionary Computing +1607.06115 Representation Theory +1607.06116 Functional Analysis +1607.06118 History and Overview +1607.06120 +1607.06122 Combinatorics +1607.06125 Computer Vision and Pattern Recognition +1607.06126 Combinatorics +1607.06127 Functional Analysis +1607.06128 +1607.06129 High Energy Astrophysical Phenomena +1607.06132 Data Structures and Algorithms +1607.06133 Disordered Systems and Neural Networks +1607.06136 Computational Geometry +1607.06139 Distributed, Parallel, and Cluster Computing +1607.06140 Computer Vision and Pattern Recognition +1607.06141 Cryptography and Security +1607.06142 Fluid Dynamics +1607.06143 Information Theory +1607.06144 Computer Vision and Pattern Recognition +1607.06146 Learning +1607.06149 Algebraic Geometry +1607.06153 Computation and Language +1607.06155 Theory +1607.06158 Probability +1607.06160 Numerical Analysis +1607.06166 Computer Vision and Pattern Recognition +1607.06170 Medical Physics +1607.06173 Computational Complexity +1607.06175 Solar and Stellar Astrophysics +1607.06177 Dynamical Systems +1607.06178 Computer Vision and Pattern Recognition +1607.06182 Social and Information Networks +1607.06183 Soft Condensed Matter +1607.06186 Artificial Intelligence +1607.06187 Artificial Intelligence +1607.06189 Commutative Algebra +1607.06191 Instrumentation and Methods for Astrophysics +1607.06196 Classical Analysis and ODEs +1607.06198 Artificial Intelligence +1607.06202 Materials Science +1607.06203 Data Structures and Algorithms +1607.06206 Phenomenology +1607.06207 Superconductivity +1607.06208 Computation and Language +1607.06211 Probability +1607.06212 Materials Science +1607.06213 Logic +1607.06215 Multimedia +1607.06216 Functional Analysis +1607.06217 Solar and Stellar Astrophysics +1607.06219 Social and Information Networks +1607.06224 Probability +1607.06226 Information Theory +1607.06227 +1607.06229 +1607.06231 Information Theory +1607.06232 Human-Computer Interaction +1607.06235 Computer Vision and Pattern Recognition +1607.06236 Mesoscale and Nanoscale Physics +1607.06239 High Energy Astrophysical Phenomena +1607.06244 Geometric Topology +1607.06247 Economics +1607.06250 Computer Vision and Pattern Recognition +1607.06252 Analysis of PDEs +1607.06253 Astrophysics of Galaxies +1607.06255 Information Theory +1607.06256 Cosmology and Nongalactic Astrophysics +1607.06257 Differential Geometry +1607.06259 Phenomenology +1607.06260 Digital Libraries +1607.06266 Differential Geometry +1607.06267 Classical Analysis and ODEs +1607.06270 General Topology +1607.06271 +1607.06273 General Topology +1607.06274 Computational Geometry +1607.06279 Functional Analysis +1607.06281 Geometric Topology +1607.06288 Applications +1607.06290 Computer Vision and Pattern Recognition +1607.06294 Learning +1607.06297 Analysis of PDEs +1607.06298 +1607.06299 Computation and Language +1607.06300 Complex Variables +1607.06301 Statistical Mechanics +1607.06303 Numerical Analysis +1607.06306 Complex Variables +1607.06310 Complex Variables +1607.06312 Solar and Stellar Astrophysics +1607.06313 Information Theory +1607.06315 Combinatorics +1607.06316 Complex Variables +1607.06317 Computer Vision and Pattern Recognition +1607.06318 Computer Vision and Pattern Recognition +1607.06319 Probability +1607.06320 +1607.06323 Phenomenology +1607.06325 Cosmology and Nongalactic Astrophysics +1607.06326 Theory +1607.06329 +1607.06330 Computation and Language +1607.06332 Artificial Intelligence +1607.06334 Group Theory +1607.06335 Learning +1607.06337 Disordered Systems and Neural Networks +1607.06338 Mesoscale and Nanoscale Physics +1607.06339 Learning +1607.06342 Representation Theory +1607.06344 Computational Geometry +1607.06345 Algebraic Geometry +1607.06347 Analysis of PDEs +1607.06348 Atomic Physics +1607.06349 Robotics +1607.06353 Superconductivity +1607.06356 Computer Vision and Pattern Recognition +1607.06357 Superconductivity +1607.06358 Molecular Networks +1607.06361 Rings and Algebras +1607.06364 Machine Learning +1607.06369 Biological Physics +1607.06370 Rings and Algebras +1607.06372 Analysis of PDEs +1607.06373 Mathematical Finance +1607.06377 Cryptography and Security +1607.06380 Number Theory +1607.06383 Adaptation and Self-Organizing Systems +1607.06385 Mesoscale and Nanoscale Physics +1607.06392 Algebraic Geometry +1607.06393 Combinatorics +1607.06397 Instrumentation and Methods for Astrophysics +1607.06398 Phenomenology +1607.06401 Information Theory +1607.06402 Other Computer Science +1607.06404 Materials Science +1607.06406 +1607.06409 Statistics Theory +1607.06410 Materials Science +1607.06412 +1607.06413 Category Theory +1607.06416 Computer Vision and Pattern Recognition +1607.06417 Networking and Internet Architecture +1607.06418 Group Theory +1607.06420 Group Theory +1607.06422 +1607.06426 Analysis of PDEs +1607.06428 Theory +1607.06429 Computers and Society +1607.06430 Algebraic Topology +1607.06432 Classical Analysis and ODEs +1607.06433 Complex Variables +1607.06434 Analysis of PDEs +1607.06439 Information Theory +1607.06442 Data Structures and Algorithms +1607.06444 Computational Complexity +1607.06446 Experiment +1607.06447 Applications +1607.06450 Machine Learning +0812.3347 +0905.3708 Instrumentation and Methods for Astrophysics +0905.4845 Astrophysics of Galaxies +0906.0559 High Energy Astrophysical Phenomena +0906.2093 High Energy Astrophysical Phenomena +0906.2096 High Energy Astrophysical Phenomena +0906.2140 High Energy Astrophysical Phenomena +0906.2420 High Energy Astrophysical Phenomena +0906.4346 High Energy Astrophysical Phenomena +0906.4717 High Energy Astrophysical Phenomena +0906.5440 High Energy Astrophysical Phenomena +0907.2628 High Energy Astrophysical Phenomena +1003.3970 Algebraic Geometry +1105.2045 Commutative Algebra +1203.4352 +1206.1102 Number Theory +1211.0406 Algebraic Geometry +1211.1813 K-Theory and Homology +1301.5572 Instrumentation and Methods for Astrophysics +1302.6664 Classical Analysis and ODEs +1303.6126 Phenomenology +1304.6059 K-Theory and Homology +1307.2868 +1309.3834 Fluid Dynamics +1309.5644 Algebraic Geometry +1310.4292 Complex Variables +1310.5554 Algebraic Geometry +1310.8609 Symplectic Geometry +1311.5787 Optimization and Control +1312.1143 Combinatorics +1401.0791 Algebraic Geometry +1401.1784 Commutative Algebra +1402.2134 Group Theory +1402.2136 Data Structures and Algorithms +1402.4227 Phenomenology +1404.1358 +1405.3163 Algebraic Geometry +1405.5780 Statistical Mechanics +1405.6705 Representation Theory +1406.2958 Statistical Mechanics +1407.2833 Mesoscale and Nanoscale Physics +1407.5221 Phenomenology +1407.6344 Algebraic Geometry +1408.0429 Number Theory +1408.2415 +1409.0835 Analysis of PDEs +1409.3425 Combinatorics +1410.5739 Algebraic Geometry +1410.5935 Complex Variables +1410.7118 Dynamical Systems +1411.0578 Dynamical Systems +1411.6284 +1412.0271 Discrete Mathematics +1412.1520 Information Theory +1412.1700 Algebraic Topology +1412.2030 Functional Analysis +1412.3019 +1412.5709 Dynamical Systems +1412.8654 Statistical Mechanics +1501.00721 Computational Geometry +1501.01310 Theory +1501.05430 Computational Physics +1501.05539 Phenomenology +1501.06812 Strongly Correlated Electrons +1502.02646 Number Theory +1502.03473 Learning +1502.06557 Methodology +1502.06886 Fluid Dynamics +1502.07474 Differential Geometry +1503.02769 Lattice +1503.04635 +1503.06299 Differential Geometry +1503.06427 Probability +1504.00683 Phenomenology +1504.01471 Geometric Topology +1504.04625 Earth and Planetary Astrophysics +1504.05378 Differential Geometry +1504.05592 Astrophysics of Galaxies +1504.06351 Lattice +1504.07959 Data Structures and Algorithms +1505.01205 Statistical Mechanics +1505.01669 Category Theory +1505.01737 Classical Physics +1505.04290 Theory +1505.04911 Data Structures and Algorithms +1505.05634 Phenomenology +1505.06215 +1505.07318 +1506.01006 Analysis of PDEs +1506.01061 Mesoscale and Nanoscale Physics +1506.02153 Formal Languages and Automata Theory +1506.03491 Mesoscale and Nanoscale Physics +1506.04053 Quantum Gases +1506.06906 +1506.07267 Complex Variables +1506.07587 Commutative Algebra +1506.08198 Astrophysics of Galaxies +1506.08786 +1507.00963 Statistical Mechanics +1507.03081 Cosmology and Nongalactic Astrophysics +1507.03113 Computational Complexity +1507.03263 Statistics Theory +1507.03886 Physics and Society +1507.04153 Strongly Correlated Electrons +1507.07551 Disordered Systems and Neural Networks +1508.00621 Superconductivity +1508.01241 Classical Analysis and ODEs +1508.01658 Theory +1508.02734 Analysis of PDEs +1508.02914 Quantum Gases +1508.04320 Strongly Correlated Electrons +1508.04980 High Energy Astrophysical Phenomena +1508.05345 +1508.07162 Geometric Topology +1508.07281 Earth and Planetary Astrophysics +1509.00651 Computer Vision and Pattern Recognition +1509.01780 Mesoscale and Nanoscale Physics +1509.02001 Mesoscale and Nanoscale Physics +1509.03060 Chemical Physics +1509.04939 Experiment +1509.05562 +1509.07034 Astrophysics of Galaxies +1509.07433 Materials Science +1509.08895 Cosmology and Nongalactic Astrophysics +1510.00389 Phenomenology +1510.00400 Phenomenology +1510.00751 Phenomenology +1510.00820 +1510.01244 High Energy Astrophysical Phenomena +1510.01525 Differential Geometry +1510.01691 Phenomenology +1510.01872 Materials Science +1510.02627 +1510.03840 Optimization and Control +1510.04098 Mesoscale and Nanoscale Physics +1510.04102 Phenomenology +1510.04402 Strongly Correlated Electrons +1510.04676 Data Structures and Algorithms +1510.05345 Dynamical Systems +1510.05671 Astrophysics of Galaxies +1510.06028 Astrophysics of Galaxies +1510.06665 Cosmology and Nongalactic Astrophysics +1510.06848 Earth and Planetary Astrophysics +1510.07052 Earth and Planetary Astrophysics +1510.07240 Cosmology and Nongalactic Astrophysics +1510.07635 Solar and Stellar Astrophysics +1510.07801 High Energy Astrophysical Phenomena +1510.08837 Earth and Planetary Astrophysics +1510.08858 Phenomenology +1510.08907 High Energy Astrophysical Phenomena +1510.09134 Phenomenology +1511.00501 Experiment +1511.00560 Theory +1511.00696 Astrophysics of Galaxies +1511.00945 Exactly Solvable and Integrable Systems +1511.01033 Astrophysics of Galaxies +1511.02100 Astrophysics of Galaxies +1511.02386 Machine Learning +1511.02734 Combinatorics +1511.02864 Astrophysics of Galaxies +1511.03058 Mesoscale and Nanoscale Physics +1511.03391 Instrumentation and Methods for Astrophysics +1511.03670 Astrophysics of Galaxies +1511.03818 Astrophysics of Galaxies +1511.03863 Economics +1511.04162 Statistics Theory +1511.04342 Phenomenology +1511.04550 Rings and Algebras +1511.04689 Astrophysics of Galaxies +1511.05017 Superconductivity +1511.05021 General Topology +1511.05061 Solar and Stellar Astrophysics +1511.05534 Cosmology and Nongalactic Astrophysics +1511.05615 Popular Physics +1511.05617 +1511.05758 +1511.05849 Experiment +1511.05934 Analysis of PDEs +1511.06010 Combinatorics +1511.06017 Computer Science and Game Theory +1511.06091 Materials Science +1511.06249 +1511.06500 Solar and Stellar Astrophysics +1511.06512 Statistical Mechanics +1511.06846 Phenomenology +1511.07116 Astrophysics of Galaxies +1511.07625 Theory +1511.07801 Cosmology and Nongalactic Astrophysics +1511.07883 Chemical Physics +1511.08567 Solar and Stellar Astrophysics +1511.08744 Atomic Physics +1511.08985 Geometric Topology +1511.09125 +1511.09198 Instrumentation and Methods for Astrophysics +1511.09246 Instrumentation and Detectors +1512.00131 Algebraic Geometry +1512.00160 Quantum Gases +1512.00509 Mesoscale and Nanoscale Physics +1512.00510 High Energy Astrophysical Phenomena +1512.00814 Mesoscale and Nanoscale Physics +1512.00920 Astrophysics of Galaxies +1512.00945 Optics +1512.01035 +1512.01261 Superconductivity +1512.01371 +1512.01538 +1512.01746 Theory +1512.01988 +1512.02096 +1512.02154 Earth and Planetary Astrophysics +1512.02269 Astrophysics of Galaxies +1512.02544 Superconductivity +1512.02886 Theory +1512.03298 Earth and Planetary Astrophysics +1512.03390 Physics and Society +1512.03560 +1512.03593 +1512.03720 Numerical Analysis +1512.03792 +1512.03945 Earth and Planetary Astrophysics +1512.03973 Pattern Formation and Solitons +1512.03979 Instrumentation and Methods for Astrophysics +1512.04383 Theory +1512.04505 Materials Science +1512.04522 Astrophysics of Galaxies +1512.04622 Earth and Planetary Astrophysics +1512.04757 Quantum Gases +1512.04939 Phenomenology +1512.05426 High Energy Astrophysical Phenomena +1512.05650 +1512.06089 Classical Analysis and ODEs +1512.06120 Chemical Physics +1512.06149 Earth and Planetary Astrophysics +1512.06265 Phenomenology +1512.06731 +1512.06829 +1512.07065 Superconductivity +1512.07223 +1512.07238 +1512.07419 Experiment +1512.07440 Chemical Physics +1512.07616 Phenomenology +1512.07952 Plasma Physics +1512.07975 Statistical Mechanics +1512.08108 High Energy Astrophysical Phenomena +1512.08123 Phenomenology +1512.08449 +1512.08461 Phenomenology +1512.08520 Solar and Stellar Astrophysics +1512.08701 Combinatorics +1512.08761 Theory +1512.08916 Theory +1512.08974 Phenomenology +1512.09151 Theory +1512.09288 +1601.00405 Cosmology and Nongalactic Astrophysics +1601.00638 Phenomenology +1601.00709 Superconductivity +1601.00853 Atomic Physics +1601.00954 Statistical Mechanics +1601.00959 Quantum Gases +1601.00961 Mesoscale and Nanoscale Physics +1601.01088 Optics +1601.01494 +1601.01707 Mesoscale and Nanoscale Physics +1601.01727 Superconductivity +1601.01800 Theory +1601.01844 Statistical Mechanics +1601.02168 +1601.02206 Quantum Gases +1601.02347 Astrophysics of Galaxies +1601.02654 Astrophysics of Galaxies +1601.02740 High Energy Astrophysical Phenomena +1601.03280 Solar and Stellar Astrophysics +1601.03393 High Energy Astrophysical Phenomena +1601.03677 Mesoscale and Nanoscale Physics +1601.03681 High Energy Astrophysical Phenomena +1601.03878 Mesoscale and Nanoscale Physics +1601.03908 +1601.03917 High Energy Astrophysical Phenomena +1601.03964 Theory +1601.04260 Theory +1601.04273 Disordered Systems and Neural Networks +1601.04329 Mesoscale and Nanoscale Physics +1601.04352 Statistical Mechanics +1601.04394 High Energy Astrophysical Phenomena +1601.04434 Mesoscale and Nanoscale Physics +1601.04497 Mesoscale and Nanoscale Physics +1601.04671 +1601.04855 Solar and Stellar Astrophysics +1601.04900 +1601.04940 Disordered Systems and Neural Networks +1601.04944 Theory +1601.04994 +1601.05107 Instrumentation and Methods for Astrophysics +1601.05166 Optics +1601.05396 +1601.05441 +1601.05512 Strongly Correlated Electrons +1601.05730 Superconductivity +1601.05732 Mesoscale and Nanoscale Physics +1601.05894 Strongly Correlated Electrons +1601.05961 Distributed, Parallel, and Cluster Computing +1601.06227 Statistical Mechanics +1601.06247 +1601.06363 High Energy Astrophysical Phenomena +1601.06745 Optics +1601.06782 Astrophysics of Galaxies +1601.06789 +1601.06987 Phenomenology +1601.07067 Mesoscale and Nanoscale Physics +1601.07203 +1601.07531 Instrumentation and Methods for Astrophysics +1601.07956 Astrophysics of Galaxies +1601.08160 +1601.08250 Soft Condensed Matter +1602.00437 Superconductivity +1602.00623 Phenomenology +1602.00686 Astrophysics of Galaxies +1602.00693 Phenomenology +1602.00779 Space Physics +1602.01210 +1602.01397 Classical Analysis and ODEs +1602.01646 Lattice +1602.01679 Strongly Correlated Electrons +1602.02112 Materials Science +1602.02635 Instrumentation and Methods for Astrophysics +1602.02878 Theory +1602.03041 Optimization and Control +1602.03085 Cosmology and Nongalactic Astrophysics +1602.03264 Machine Learning +1602.03309 +1602.03427 Statistics Theory +1602.03444 Phenomenology +1602.04129 Disordered Systems and Neural Networks +1602.04138 Cryptography and Security +1602.04161 Mesoscale and Nanoscale Physics +1602.04224 +1602.04322 +1602.04481 Logic +1602.04488 High Energy Astrophysical Phenomena +1602.04810 High Energy Astrophysical Phenomena +1602.05085 +1602.05138 Superconductivity +1602.05199 Astrophysics of Galaxies +1602.05357 Statistical Mechanics +1602.05525 Lattice +1602.05582 Astrophysics of Galaxies +1602.05961 Cosmology and Nongalactic Astrophysics +1602.06128 Statistical Mechanics +1602.06185 Fluid Dynamics +1602.06243 Strongly Correlated Electrons +1602.06291 Computation and Language +1602.06336 Mesoscale and Nanoscale Physics +1602.06341 Instrumentation and Methods for Astrophysics +1602.06491 Phenomenology +1602.06638 Computational Physics +1602.06782 Mesoscale and Nanoscale Physics +1602.06877 Superconductivity +1602.06961 High Energy Astrophysical Phenomena +1602.06962 Theory +1602.07270 Phenomenology +1602.07303 High Energy Astrophysical Phenomena +1602.07316 Astrophysics of Galaxies +1602.07386 +1602.07436 Solar and Stellar Astrophysics +1602.07665 +1602.07695 Astrophysics of Galaxies +1602.08108 Cosmology and Nongalactic Astrophysics +1602.08189 Atomic Physics +1602.08196 Astrophysics of Galaxies +1602.08261 +1602.08421 Phenomenology +1602.08437 +1602.08505 Astrophysics of Galaxies +1602.08651 Pattern Formation and Solitons +1602.09041 Phenomenology +1602.09084 Theory +1602.09098 Earth and Planetary Astrophysics +1603.00184 Theory +1603.00218 Theory +1603.00262 Astrophysics of Galaxies +1603.00272 Probability +1603.00512 Materials Science +1603.00557 Soft Condensed Matter +1603.00603 High Energy Astrophysical Phenomena +1603.00701 Solar and Stellar Astrophysics +1603.00877 High Energy Astrophysical Phenomena +1603.00947 Astrophysics of Galaxies +1603.00998 High Energy Astrophysical Phenomena +1603.01247 Phenomenology +1603.01893 Phenomenology +1603.01971 High Energy Astrophysical Phenomena +1603.02165 Theory +1603.02403 Phenomenology +1603.02501 Learning +1603.02716 +1603.02741 +1603.02829 Mesoscale and Nanoscale Physics +1603.03367 Superconductivity +1603.03371 Solar and Stellar Astrophysics +1603.03382 Theory +1603.03487 Superconductivity +1603.03517 Solar and Stellar Astrophysics +1603.03561 +1603.04147 Mesoscale and Nanoscale Physics +1603.04294 Astrophysics of Galaxies +1603.04296 Materials Science +1603.04382 Number Theory +1603.04405 Cosmology and Nongalactic Astrophysics +1603.04406 Earth and Planetary Astrophysics +1603.04523 Astrophysics of Galaxies +1603.04534 Astrophysics of Galaxies +1603.04555 Solar and Stellar Astrophysics +1603.04677 Materials Science +1603.04854 Phenomenology +1603.04959 Solar and Stellar Astrophysics +1603.05002 Lattice +1603.05209 Cosmology and Nongalactic Astrophysics +1603.05298 Phenomenology +1603.05617 Astrophysics of Galaxies +1603.05644 Solar and Stellar Astrophysics +1603.05647 Rings and Algebras +1603.05870 Solar and Stellar Astrophysics +1603.05881 Astrophysics of Galaxies +1603.06092 Solar and Stellar Astrophysics +1603.06207 Theory +1603.06589 Astrophysics of Galaxies +1603.06648 +1603.06779 Astrophysics of Galaxies +1603.06832 High Energy Astrophysical Phenomena +1603.06885 Astrophysics of Galaxies +1603.06974 Astrophysics of Galaxies +1603.07270 Statistical Mechanics +1603.07284 Solar and Stellar Astrophysics +1603.07306 Earth and Planetary Astrophysics +1603.07492 Earth and Planetary Astrophysics +1603.07499 Mesoscale and Nanoscale Physics +1603.07563 Solar and Stellar Astrophysics +1603.07596 Solar and Stellar Astrophysics +1603.07675 High Energy Astrophysical Phenomena +1603.07761 Solar and Stellar Astrophysics +1603.08036 Dynamical Systems +1603.08054 +1603.08238 Earth and Planetary Astrophysics +1603.08294 Phenomenology +1603.08327 High Energy Astrophysical Phenomena +1603.08437 High Energy Astrophysical Phenomena +1603.08520 Solar and Stellar Astrophysics +1603.09216 Mesoscale and Nanoscale Physics +1603.09225 Earth and Planetary Astrophysics +1603.09349 Experiment +1603.09442 High Energy Astrophysical Phenomena +1603.09443 +1603.09721 Phenomenology +1604.00019 High Energy Astrophysical Phenomena +1604.00171 Astrophysics of Galaxies +1604.00181 Instrumentation and Detectors +1604.00373 High Energy Astrophysical Phenomena +1604.00426 Astrophysics of Galaxies +1604.00658 Quantum Gases +1604.00715 Solar and Stellar Astrophysics +1604.00729 Cosmology and Nongalactic Astrophysics +1604.00956 Lattice +1604.01034 High Energy Astrophysical Phenomena +1604.01053 Astrophysics of Galaxies +1604.01096 Astrophysics of Galaxies +1604.01103 Solar and Stellar Astrophysics +1604.01118 Operator Algebras +1604.01141 Astrophysics of Galaxies +1604.01156 Astrophysics of Galaxies +1604.01467 Astrophysics of Galaxies +1604.01607 Cosmology and Nongalactic Astrophysics +1604.01735 Plasma Physics +1604.01779 High Energy Astrophysical Phenomena +1604.02146 Solar and Stellar Astrophysics +1604.02163 Cosmology and Nongalactic Astrophysics +1604.02415 Earth and Planetary Astrophysics +1604.02433 Astrophysics of Galaxies +1604.02581 Solar and Stellar Astrophysics +1604.02582 Quantum Gases +1604.03026 Solar and Stellar Astrophysics +1604.03233 High Energy Astrophysical Phenomena +1604.03431 General Physics +1604.03500 Representation Theory +1604.03546 High Energy Astrophysical Phenomena +1604.03551 Astrophysics of Galaxies +1604.03555 Phenomenology +1604.03569 Astrophysics of Galaxies +1604.03718 Strongly Correlated Electrons +1604.03946 High Energy Astrophysical Phenomena +1604.04078 Solar and Stellar Astrophysics +1604.04305 High Energy Astrophysical Phenomena +1604.04469 Solar and Stellar Astrophysics +1604.04628 Solar and Stellar Astrophysics +1604.04872 General Finance +1604.04999 Systems and Control +1604.05153 General Physics +1604.05336 High Energy Astrophysical Phenomena +1604.05389 Software Engineering +1604.05401 Astrophysics of Galaxies +1604.05405 Solar and Stellar Astrophysics +1604.05427 High Energy Astrophysical Phenomena +1604.05684 Operator Algebras +1604.05880 Earth and Planetary Astrophysics +1604.06012 Solar and Stellar Astrophysics +1604.06057 Learning +1604.06092 Earth and Planetary Astrophysics +1604.06371 Earth and Planetary Astrophysics +1604.06569 Strongly Correlated Electrons +1604.06858 Lattice +1604.06902 Earth and Planetary Astrophysics +1604.06990 Theory +1604.07516 Materials Science +1604.07558 Earth and Planetary Astrophysics +1604.07601 Phenomenology +1604.07845 Phenomenology +1604.07927 Strongly Correlated Electrons +1604.08212 Theory +1604.08592 Solar and Stellar Astrophysics +1605.00503 Solar and Stellar Astrophysics +1605.00913 +1605.00960 Phenomenology +1605.01043 High Energy Astrophysical Phenomena +1605.01152 Solar and Stellar Astrophysics +1605.02261 Logic +1605.02299 Solar and Stellar Astrophysics +1605.02925 Theory +1605.03130 Differential Geometry +1605.03298 Quantum Gases +1605.03307 Mesoscale and Nanoscale Physics +1605.03312 +1605.03576 Instrumentation and Methods for Astrophysics +1605.03683 Trading and Market Microstructure +1605.03734 Astrophysics of Galaxies +1605.03775 +1605.04023 Cosmology and Nongalactic Astrophysics +1605.04050 Materials Science +1605.04257 Superconductivity +1605.04461 High Energy Astrophysical Phenomena +1605.04843 +1605.04856 Astrophysics of Galaxies +1605.05125 High Energy Astrophysical Phenomena +1605.05136 Probability +1605.05331 Earth and Planetary Astrophysics +1605.05894 Computation and Language +1605.06074 High Energy Astrophysical Phenomena +1605.06413 High Energy Astrophysical Phenomena +1605.06516 Solar and Stellar Astrophysics +1605.06543 Representation Theory +1605.06692 Discrete Mathematics +1605.06887 Strongly Correlated Electrons +1605.06965 Earth and Planetary Astrophysics +1605.07001 Astrophysics of Galaxies +1605.07054 Number Theory +1605.07134 +1605.07189 Astrophysics of Galaxies +1605.07208 Optics +1605.07389 Disordered Systems and Neural Networks +1605.07490 Materials Science +1605.08434 Representation Theory +1605.08628 Instrumentation and Methods for Astrophysics +1605.08695 Distributed, Parallel, and Cluster Computing +1605.08791 Commutative Algebra +1605.08849 Materials Science +1605.08952 Experiment +1605.08997 Algebraic Geometry +1605.09016 Computer Vision and Pattern Recognition +1605.09023 Neurons and Cognition +1605.09193 Cryptography and Security +1605.09203 History and Overview +1605.09205 Number Theory +1605.09256 Representation Theory +1605.09338 Social and Information Networks +1605.09346 Learning +1605.09373 +1605.09374 +1605.09375 Mesoscale and Nanoscale Physics +1605.09376 Phenomenology +1605.09386 Astrophysics of Galaxies +1605.09390 Strongly Correlated Electrons +1605.09393 Algebraic Geometry +1605.09397 Astrophysics of Galaxies +1605.09399 Computational Physics +1605.09403 Combinatorics +1605.09408 +1605.09409 Information Theory +1605.09412 Classical Analysis and ODEs +1605.09413 Soft Condensed Matter +1605.09416 Optics +1605.09417 Cosmology and Nongalactic Astrophysics +1605.09420 Differential Geometry +1605.09425 Multimedia +1605.09428 Number Theory +1605.09430 Commutative Algebra +1605.09431 Number Theory +1605.09432 Human-Computer Interaction +1605.09436 Optics +1605.09439 Systems and Control +1605.09440 Instrumentation and Detectors +1605.09441 Computer Vision and Pattern Recognition +1605.09444 Systems and Control +1605.09445 Computation +1605.09446 Logic in Computer Science +1605.09447 Soft Condensed Matter +1605.09450 Physics and Society +1605.09451 Graphics +1605.09452 Computer Vision and Pattern Recognition +1605.09453 Analysis of PDEs +1605.09454 Methodology +1605.09457 Statistics Theory +1605.09458 Learning +1605.09464 Plasma Physics +1605.09465 Systems and Control +1605.09466 Computation +1605.09467 Solar and Stellar Astrophysics +1605.09470 +1605.09471 Networking and Internet Architecture +1605.09473 Social and Information Networks +1605.09477 Information Retrieval +1605.09480 +1605.09484 Statistical Finance +1605.09486 Multimedia +1605.09487 Number Theory +1605.09488 Optimization and Control +1605.09492 Algebraic Geometry +1605.09493 Information Theory +1605.09497 Computer Science and Game Theory +1605.09500 Representation Theory +1605.09502 Phenomenology +1605.09505 Artificial Intelligence +1605.09509 Systems and Control +1605.09513 Distributed, Parallel, and Cluster Computing +1605.09514 Solar and Stellar Astrophysics +1605.09515 Digital Libraries +1605.09516 Distributed, Parallel, and Cluster Computing +1605.09518 Discrete Mathematics +1605.09520 Data Structures and Algorithms +1605.09529 High Energy Astrophysical Phenomena +1605.09530 Distributed, Parallel, and Cluster Computing +1605.09531 +1605.09533 Computer Vision and Pattern Recognition +1605.09535 Molecular Networks +1605.09536 +1605.09538 Strongly Correlated Electrons +1605.09539 Mesoscale and Nanoscale Physics +1605.09540 Atomic and Molecular Clusters +1605.09541 Classical Analysis and ODEs +1605.09543 Systems and Control +1605.09544 Atomic and Molecular Clusters +1605.09545 Earth and Planetary Astrophysics +1605.09546 Computer Vision and Pattern Recognition +1605.09547 Atomic and Molecular Clusters +1605.09548 Computer Science and Game Theory +1605.09549 Cosmology and Nongalactic Astrophysics +1605.09551 Information Theory +1605.09554 Computational Physics +1605.09555 +1605.09556 Representation Theory +1605.09557 Systems and Control +1605.09559 Computer Vision and Pattern Recognition +1605.09561 +1605.09562 Dynamical Systems +1605.09564 Computation and Language +1605.09566 Analysis of PDEs +1605.09569 Analysis of PDEs +1605.09570 Analysis of PDEs +1605.09571 Phenomenology +1605.09573 Computational Physics +1605.09574 Analysis of PDEs +1605.09578 Optics +1605.09582 Computer Vision and Pattern Recognition +1605.09583 Chaotic Dynamics +1605.09584 Computer Vision and Pattern Recognition +1605.09585 Rings and Algebras +1605.09587 Combinatorics +1605.09589 Combinatorics +1605.09590 Mesoscale and Nanoscale Physics +1605.09591 Fluid Dynamics +1605.09593 Learning +1605.09595 Space Physics +1605.09596 Differential Geometry +1605.09599 Rings and Algebras +1605.09600 Dynamical Systems +1605.09601 Information Theory +1605.09602 Networking and Internet Architecture +1605.09605 Space Physics +1605.09606 Computational Physics +1605.09608 Space Physics +1605.09609 Differential Geometry +1605.09612 Computer Vision and Pattern Recognition +1605.09615 Medical Physics +1605.09616 Functional Analysis +1605.09617 Number Theory +1605.09619 Machine Learning +1605.09625 Differential Geometry +1605.09626 Computers and Society +1605.09630 Instrumentation and Detectors +1605.09631 Dynamical Systems +1605.09632 Lattice +1605.09635 Combinatorics +1605.09636 Mesoscale and Nanoscale Physics +1605.09641 Systems and Control +1605.09644 Solar and Stellar Astrophysics +1605.09645 Optics +1605.09646 Learning +1605.09648 Fluid Dynamics +1605.09652 Applications +1605.09655 Functional Analysis +1605.09657 Algebraic Geometry +1605.09659 Number Theory +1605.09663 Probability +1605.09664 Fluid Dynamics +1605.09666 Fluid Dynamics +1605.09668 Probability +1605.09671 Phenomenology +1605.09672 Classical Analysis and ODEs +1605.09676 Numerical Analysis +1605.09678 Human-Computer Interaction +1605.09679 Dynamical Systems +1605.09680 Phenomenology +1605.09691 Materials Science +1605.09693 Differential Geometry +1605.09698 Materials Science +1605.09700 Methodology +1605.09702 Analysis of PDEs +1605.09703 Systems and Control +1605.09704 Differential Geometry +1605.09705 Functional Analysis +1605.09706 Analysis of PDEs +1605.09708 Quantum Algebra +1605.09709 Dynamical Systems +1605.09711 Networking and Internet Architecture +1605.09716 Information Theory +1605.09719 General Physics +1605.09720 Trading and Market Microstructure +1605.09721 Machine Learning +1605.09724 Chemical Physics +1605.09725 Chemical Physics +1605.09727 Geophysics +1605.09733 Computer Science and Game Theory +1605.09735 Artificial Intelligence +1605.09737 Graphics +1605.09739 Optimization and Control +1605.09741 Materials Science +1605.09748 Commutative Algebra +1605.09749 Combinatorics +1605.09753 Databases +1605.09757 Information Retrieval +1605.09758 Soft Condensed Matter +1605.09759 Computer Vision and Pattern Recognition +1605.09762 Numerical Analysis +1605.09765 Analysis of PDEs +1605.09770 Soft Condensed Matter +1605.09772 Systems and Control +1605.09773 Methodology +1605.09776 Social and Information Networks +1605.09780 Instrumentation and Methods for Astrophysics +1605.09781 Quantitative Methods +1605.09784 Data Structures and Algorithms +1605.09785 Distributed, Parallel, and Cluster Computing +astro-ph/0309811 +0912.0059 Group Theory +1007.4339 Quantum Gases +1008.4428 Quantum Gases +1104.3098 Computer Science and Game Theory +1105.5828 Materials Science +1207.6994 Disordered Systems and Neural Networks +1208.1329 Computer Science and Game Theory +1211.1872 Numerical Analysis +1309.0765 Molecular Networks +1309.7301 Representation Theory +1311.6511 Combinatorics +1312.3224 Algebraic Geometry +1312.4889 Cosmology and Nongalactic Astrophysics +1401.2493 Computer Science and Game Theory +1404.6842 Optics +1405.7175 Networking and Internet Architecture +1406.4820 Soft Condensed Matter +1407.3567 +1409.2723 Optimization and Control +1409.2931 Algebraic Geometry +1410.3888 Number Theory +1410.4011 Programming Languages +1410.4779 +1410.8597 Methodology +1411.5404 Social and Information Networks +1412.1570 Differential Geometry +1412.4208 Risk Management +1501.05413 Algebraic Topology +1501.06323 Computational Complexity +1501.06645 Dynamical Systems +1502.02099 Algebraic Geometry +1502.04411 Rings and Algebras +1502.06470 Information Theory +1503.07648 Combinatorics +1503.07810 Machine Learning +1504.02047 +1504.07684 Instrumentation and Detectors +1505.04648 Computational Finance +1506.01272 Operator Algebras +1506.03633 Group Theory +1506.03921 Operator Algebras +1506.07261 +1506.07675 Populations and Evolution +1507.01778 Methodology +1507.04309 Emerging Technologies +1507.07836 Phenomenology +1508.00217 Computer Vision and Pattern Recognition +1508.03207 Theory +1509.00902 Materials Science +1509.04261 Experiment +1509.08802 +1510.03447 Quantum Gases +1510.03900 Fluid Dynamics +1510.05039 Group Theory +1510.07523 Rings and Algebras +1510.09193 Computational Complexity +1511.01807 Logic in Computer Science +1511.02136 Learning +1511.02472 Instrumentation and Detectors +1511.02836 High Energy Astrophysical Phenomena +1511.04251 Exactly Solvable and Integrable Systems +1511.04992 Computation +1511.05065 Computer Vision and Pattern Recognition +1511.05292 Computer Vision and Pattern Recognition +1511.05415 +1511.06929 Group Theory +1511.06989 Representation Theory +1512.03749 Quantum Algebra +1512.03780 Number Theory +1512.03829 Mesoscale and Nanoscale Physics +1512.04684 Theory +1512.05537 +1512.08010 +1512.08106 Logic in Computer Science +1601.01667 +1601.02001 +1601.05114 Phenomenology +1601.05604 Combinatorics +1601.05657 +1601.06403 Information Theory +1601.06697 +1602.00050 +1602.00868 +1602.02814 Number Theory +1602.02825 Number Theory +1602.02835 Number Theory +1602.03647 Information Theory +1602.03705 +1602.03789 Mesoscale and Nanoscale Physics +1602.03962 Populations and Evolution +1602.04881 Distributed, Parallel, and Cluster Computing +1602.05039 Mesoscale and Nanoscale Physics +1602.06901 Rings and Algebras +1602.07077 Functional Analysis +1602.07083 Functional Analysis +1602.08739 Category Theory +1603.00637 +1603.01693 Algebraic Geometry +1603.02022 Materials Science +1603.03831 Materials Science +1603.03990 Theory +1603.04601 Statistical Mechanics +1603.04701 Disordered Systems and Neural Networks +1603.05402 +1603.06357 Number Theory +1603.08278 Soft Condensed Matter +1603.08559 Analysis of PDEs +1604.01525 Experiment +1604.01809 Geometric Topology +1604.04246 Quantum Gases +1604.04949 Mesoscale and Nanoscale Physics +1604.06014 Materials Science +1604.06527 Theory +1604.06688 Geometric Topology +1604.06804 Mesoscale and Nanoscale Physics +1604.08865 Computer Vision and Pattern Recognition +1605.00679 +1605.00741 +1605.00822 Plasma Physics +1605.01019 Methodology +1605.02112 Computer Vision and Pattern Recognition +1605.02834 High Energy Astrophysical Phenomena +1605.03417 Mesoscale and Nanoscale Physics +1605.03627 Optimization and Control +1605.04084 Number Theory +1605.04653 Mesoscale and Nanoscale Physics +1605.05218 Physics Education +1605.07171 Other Computer Science +1605.09174 Systems and Control +1606.01121 Optics +1606.01379 Information Theory +1606.01646 Soft Condensed Matter +1606.02198 Superconductivity +1606.02624 Space Physics +1606.06125 Computation and Language +1606.08135 Information Theory +1606.08415 Learning +1606.08845 Solar and Stellar Astrophysics +1606.09107 Discrete Mathematics +1606.09286 +1607.00367 Differential Geometry +1607.00799 +1607.00947 Numerical Analysis +1607.00954 Representation Theory +1607.00977 +1607.01142 Quantum Algebra +1607.01288 Superconductivity +1607.01291 +1607.01492 Computers and Society +1607.01879 Adaptation and Self-Organizing Systems +1607.01890 Statistical Mechanics +1607.01910 Phenomenology +1607.02037 Computer Science and Game Theory +1607.02047 High Energy Astrophysical Phenomena +1607.02113 Pattern Formation and Solitons +1607.02154 Phenomenology +1607.02162 Superconductivity +1607.02164 Populations and Evolution +1607.02165 History and Overview +1607.02166 Accelerator Physics +1607.02167 Earth and Planetary Astrophysics +1607.02168 Emerging Technologies +1607.02170 Operator Algebras +1607.02171 Artificial Intelligence +1607.02173 Learning +1607.02174 Human-Computer Interaction +1607.02176 Plasma Physics +1607.02178 Strongly Correlated Electrons +1607.02179 Networking and Internet Architecture +1607.02180 Chaotic Dynamics +1607.02184 Computational Geometry +1607.02189 Logic in Computer Science +1607.02191 Physics and Society +1607.02193 Fluid Dynamics +1607.02194 Computation +1607.02199 +1607.02200 Systems and Control +1607.02201 Statistics Theory +1607.02205 Dynamical Systems +1607.02207 Spectral Theory +1607.02208 Algebraic Geometry +1607.02209 Algebraic Geometry +1607.02210 Algebraic Geometry +1607.02213 Solar and Stellar Astrophysics +1607.02214 Distributed, Parallel, and Cluster Computing +1607.02216 +1607.02217 Dynamical Systems +1607.02218 Geometric Topology +1607.02220 Materials Science +1607.02223 Algebraic Topology +1607.02224 Analysis of PDEs +1607.02225 Programming Languages +1607.02226 Programming Languages +1607.02227 Software Engineering +1607.02228 Programming Languages +1607.02229 Programming Languages +1607.02230 Programming Languages +1607.02231 Programming Languages +1607.02232 Logic in Computer Science +1607.02233 Logic in Computer Science +1607.02234 Logic in Computer Science +1607.02235 Logic in Computer Science +1607.02236 Commutative Algebra +1607.02237 Functional Analysis +1607.02238 Programming Languages +1607.02241 Learning +1607.02245 Statistics Theory +1607.02247 Group Theory +1607.02251 Atmospheric and Oceanic Physics +1607.02252 Probability +1607.02253 Analysis of PDEs +1607.02257 Computer Vision and Pattern Recognition +1607.02258 Combinatorics +1607.02262 Representation Theory +1607.02263 Symplectic Geometry +1607.02269 Category Theory +1607.02276 Differential Geometry +1607.02277 Mesoscale and Nanoscale Physics +1607.02278 Social and Information Networks +1607.02279 Information Theory +1607.02282 Data Structures and Algorithms +1607.02283 Applications +1607.02290 Robotics +1607.02293 Optics +1607.02297 Soft Condensed Matter +1607.02299 Optimization and Control +1607.02300 Atomic and Molecular Clusters +1607.02301 +1607.02307 Functional Analysis +1607.02308 Strongly Correlated Electrons +1607.02311 Optimization and Control +1607.02316 +1607.02318 Hardware Architecture +1607.02326 Physics and Society +1607.02327 Materials Science +1607.02328 Methodology +1607.02329 Robotics +1607.02333 Operator Algebras +1607.02334 Social and Information Networks +1607.02337 Optimization and Control +1607.02338 Superconductivity +1607.02344 Phenomenology +1607.02346 Computational Complexity +1607.02347 Computational Geometry +1607.02348 Superconductivity +1607.02352 Optics +1607.02361 Information Theory +1607.02363 Solar and Stellar Astrophysics +1607.02366 +1607.02368 Combinatorics +1607.02370 Number Theory +1607.02371 Computer Science and Game Theory +1607.02375 Atomic and Molecular Clusters +1607.02376 Computer Science and Game Theory +1607.02377 Optimization and Control +1607.02378 Economics +1607.02379 Solar and Stellar Astrophysics +1607.02380 +1607.02381 Information Theory +1607.02382 Optimization and Control +1607.02383 Sound +1607.02385 Information Theory +1607.02387 Statistics Theory +1607.02391 Probability +1607.02392 Probability +1607.02396 Combinatorics +1607.02397 Computer Vision and Pattern Recognition +1607.02399 Databases +1607.02402 Phenomenology +1607.02410 General Finance +1607.02411 +1607.02416 Algebraic Geometry +1607.02419 Economics +1607.02420 Computer Science and Game Theory +1607.02421 Economics +1607.02422 Economics +1607.02423 Economics +1607.02424 Cosmology and Nongalactic Astrophysics +1607.02425 Dynamical Systems +1607.02429 Rings and Algebras +1607.02431 Artificial Intelligence +1607.02433 Combinatorics +1607.02434 Information Theory +1607.02437 Data Structures and Algorithms +1607.02438 Category Theory +1607.02444 Learning +1607.02446 Dynamical Systems +1607.02447 Quantitative Methods +1607.02453 Software Engineering +1607.02455 Classical Analysis and ODEs +1607.02456 Rings and Algebras +1607.02459 Software Engineering +1607.02460 +1607.02463 Numerical Analysis +1607.02465 Strongly Correlated Electrons +1607.02468 Analysis of PDEs +1607.02470 Statistical Finance +1607.02472 Computation +1607.02473 Representation Theory +1607.02478 +1607.02480 Artificial Intelligence +1607.02482 Commutative Algebra +1607.02483 Number Theory +1607.02484 Mesoscale and Nanoscale Physics +1607.02491 Quantum Algebra +1607.02492 Accelerator Physics +1607.02493 Lattice +1607.02495 Information Theory +1607.02497 Numerical Analysis +1607.02504 Computer Vision and Pattern Recognition +physics/0608246 Physics Education +1608.02871 Differential Geometry +1609.07506 Differential Geometry +0806.1192 Combinatorics +0807.4719 Computation +1011.6342 Algebraic Geometry +1101.2252 Algebraic Geometry +1105.4864 +1105.5332 Machine Learning +1110.1486 +1203.0566 Theory +1206.3846 +1301.5536 Information Theory +1305.5638 Analysis of PDEs +1307.4947 Probability +1309.0056 Algebraic Geometry +1310.5471 Rings and Algebras +1311.5286 Functional Analysis +1312.4811 Information Theory +1401.2605 +1401.3753 Information Theory +1402.6443 Functional Analysis +1403.3722 Group Theory +1404.6367 Phenomenology +1405.0935 Rings and Algebras +1405.6460 Computation +1406.5468 Optimization and Control +1407.5460 Mesoscale and Nanoscale Physics +1407.6134 Spectral Theory +1408.2217 Portfolio Management +1408.3307 Phenomenology +1410.1096 +1410.4460 Hardware Architecture +1411.4977 Complex Variables +1411.6096 +1411.6785 Computational Physics +1412.3033 Group Theory +1412.4189 +1412.5357 Group Theory +1501.01981 +1501.02997 Formal Languages and Automata Theory +1501.04948 Data Structures and Algorithms +1501.06030 Mesoscale and Nanoscale Physics +1502.00067 +1502.07283 Group Theory +1503.00227 Biological Physics +1503.00973 Soft Condensed Matter +1503.01863 Group Theory +1503.08290 Differential Geometry +1503.08805 Phenomenology +1504.02701 Functional Analysis +1504.02981 Functional Analysis +1504.03405 Materials Science +1504.05709 Algebraic Geometry +1505.00565 Analysis of PDEs +1505.00626 Representation Theory +1505.01917 +1505.04988 High Energy Astrophysical Phenomena +1505.05025 Distributed, Parallel, and Cluster Computing +1505.07695 Phenomenology +1506.01826 Chemical Physics +1506.03762 Machine Learning +1506.04020 Quantum Gases +1506.04153 Statistics Theory +1506.04457 Exactly Solvable and Integrable Systems +1506.05287 +1506.07141 Disordered Systems and Neural Networks +1506.08015 +1507.02202 Mesoscale and Nanoscale Physics +1507.05166 Statistical Mechanics +1507.05187 Mesoscale and Nanoscale Physics +1507.06214 Spectral Theory +1507.07269 Data Analysis, Statistics and Probability +1508.00207 +1508.00293 Probability +1508.01358 Statistics Theory +1508.02356 Functional Analysis +1508.03704 Instrumentation and Detectors +1508.05089 +1508.05299 Discrete Mathematics +1508.05797 +1508.06888 Classical Analysis and ODEs +1508.07167 Classical Analysis and ODEs +1509.00113 Theory +1509.01467 Strongly Correlated Electrons +1509.03959 +1509.04169 Complex Variables +1509.04176 Theory +1509.04177 Experiment +1509.04865 Dynamical Systems +1509.06075 Populations and Evolution +1509.06510 Algebraic Geometry +1509.06654 Operator Algebras +1509.09029 +1510.00069 +1510.00189 Soft Condensed Matter +1510.00687 Materials Science +1510.01519 Strongly Correlated Electrons +1510.01622 Geometric Topology +1510.04089 Algebraic Geometry +1510.04872 Phenomenology +1510.05350 Atomic Physics +1510.05582 Optics +1510.08958 +1511.02052 Numerical Analysis +1511.02611 Algebraic Geometry +1511.03331 +1511.03364 +1511.04606 Optics +1511.04705 Mesoscale and Nanoscale Physics +1511.05592 Theory +1511.06270 Differential Geometry +1511.07622 Theory +1511.07837 Optimization and Control +1511.08343 Learning +1511.08555 Classical Analysis and ODEs +1511.09047 Artificial Intelligence +1512.00473 Chemical Physics +1512.01217 Astrophysics of Galaxies +1512.07992 Phenomenology +1601.01728 Optimization and Control +1601.02110 Earth and Planetary Astrophysics +1601.02114 +1601.03097 Fluid Dynamics +1601.03762 Complex Variables +1601.03890 Computer Vision and Pattern Recognition +1601.04893 Cryptography and Security +1601.05348 Number Theory +1601.05427 Algebraic Geometry +1601.05968 Analysis of PDEs +1601.07085 Numerical Analysis +1601.07448 Optimization and Control +1601.07539 Databases +1601.07967 Cosmology and Nongalactic Astrophysics +1601.08099 Mathematical Finance +1602.00308 Theory +1602.00442 Instrumentation and Methods for Astrophysics +1602.01023 Classical Analysis and ODEs +1602.01900 Complex Variables +1602.02003 Theory +1602.02374 General Topology +1602.02410 Computation and Language +1602.02575 Methodology +1602.02603 Geometric Topology +1602.02745 Complex Variables +1602.02980 Chaotic Dynamics +1602.02991 Distributed, Parallel, and Cluster Computing +1602.03396 Computational Physics +1602.03423 Applications +1602.03506 Artificial Intelligence +1602.03618 Information Theory +1602.03670 Machine Learning +1602.03709 Operator Algebras +1602.03713 Distributed, Parallel, and Cluster Computing +1602.03734 Metric Geometry +1602.03818 +1602.03884 Probability +1602.03886 Networking and Internet Architecture +1602.03888 High Energy Astrophysical Phenomena +1602.03899 Combinatorics +1602.03900 Mesoscale and Nanoscale Physics +1602.03906 Networking and Internet Architecture +1602.03908 Atomic and Molecular Clusters +1602.03910 Spectral Theory +1602.03911 Solar and Stellar Astrophysics +1602.03915 Methodology +1602.03918 Algebraic Geometry +1602.03922 +1602.03923 Differential Geometry +1602.03924 Artificial Intelligence +1602.03927 Statistical Mechanics +1602.03929 Computers and Society +1602.03933 Differential Geometry +1602.03936 Information Theory +1602.03940 Applications +1602.03942 Data Structures and Algorithms +1602.03944 Statistical Finance +1602.03945 Systems and Control +1602.03948 Superconductivity +1602.03950 Machine Learning +1602.03951 +1602.03954 Information Theory +1602.03958 Solar and Stellar Astrophysics +1602.03960 Computation and Language +1602.03964 Functional Analysis +1602.03965 Operator Algebras +1602.03969 Information Theory +1602.03972 Methodology +1602.03974 Algebraic Topology +1602.03976 Lattice +1602.03978 Dynamical Systems +1602.03980 Mesoscale and Nanoscale Physics +1602.03982 Functional Analysis +1602.03984 Functional Analysis +1602.03986 Algebraic Geometry +1602.03995 Computer Vision and Pattern Recognition +1602.03999 Materials Science +1602.04000 Computer Science and Game Theory +1602.04004 Operator Algebras +1602.04005 Quantitative Methods +1602.04006 Populations and Evolution +1602.04007 Software Engineering +1602.04008 Functional Analysis +1602.04009 Cosmology and Nongalactic Astrophysics +1602.04010 Analysis of PDEs +1602.04012 Number Theory +1602.04014 Functional Analysis +1602.04015 Functional Analysis +1602.04017 Functional Analysis +1602.04019 Artificial Intelligence +1602.04024 Atomic Physics +1602.04025 Classical Analysis and ODEs +1602.04026 Information Theory +1602.04027 Atomic Physics +1602.04028 Strongly Correlated Electrons +1602.04032 Artificial Intelligence +1602.04033 Classical Analysis and ODEs +1602.04034 Information Theory +1602.04036 Numerical Analysis +1602.04040 History and Philosophy of Physics +1602.04041 Fluid Dynamics +1602.04043 Classical Physics +1602.04044 Mesoscale and Nanoscale Physics +1602.04046 Superconductivity +1602.04048 +1602.04059 Combinatorics +1602.04061 Discrete Mathematics +1602.04067 +1602.04068 Solar and Stellar Astrophysics +1602.04070 Fluid Dynamics +1602.04071 Analysis of PDEs +1602.04075 Strongly Correlated Electrons +1602.04076 General Mathematics +1602.04078 Soft Condensed Matter +1602.04080 General Mathematics +1602.04081 +1602.04084 General Mathematics +1602.04087 Representation Theory +1602.04089 Combinatorics +1602.04091 Other Statistics +1602.04092 Mesoscale and Nanoscale Physics +1602.04093 Group Theory +1602.04094 Soft Condensed Matter +1602.04101 Computers and Society +1602.04104 Networking and Internet Architecture +1602.04109 Soft Condensed Matter +1602.04111 Materials Science +1602.04112 Functional Analysis +1602.04114 Mesoscale and Nanoscale Physics +1602.04117 Statistics Theory +1602.04120 +1602.04122 Solar and Stellar Astrophysics +1602.04124 Computer Vision and Pattern Recognition +1602.04126 Logic +1602.04131 Algebraic Topology +1602.04133 Machine Learning +1602.04134 Rings and Algebras +1602.04136 General Physics +1602.04137 History and Overview +1602.04139 Methodology +1602.04140 +1602.04145 +1602.04147 Analysis of PDEs +1602.04148 Analysis of PDEs +1602.04149 Combinatorics +1602.04151 Statistical Mechanics +1602.04154 Solar and Stellar Astrophysics +1602.04157 Analysis of PDEs +1602.04159 Differential Geometry +1602.04163 Category Theory +1602.04165 General Mathematics +1602.04167 Classical Analysis and ODEs +1602.04168 +1602.04171 Optimization and Control +1602.04172 Analysis of PDEs +1602.04173 Functional Analysis +1602.04176 Mesoscale and Nanoscale Physics +1602.04178 Differential Geometry +1602.04181 Data Structures and Algorithms +1602.04182 Physics Education +1602.04185 Materials Science +1602.04189 +1602.04190 +1602.04191 Instrumentation and Detectors +1602.04206 Phenomenology +1602.04208 Learning +funct-an/9211006 Functional Analysis +funct-an/9211007 Functional Analysis +funct-an/9211009 Functional Analysis +funct-an/9211010 Functional Analysis +funct-an/9301002 Functional Analysis +funct-an/9301003 Functional Analysis +hep-th/9910030 Theory +quant-ph/0403076 +1005.5483 Statistics Theory +1102.3206 High Energy Astrophysical Phenomena +1104.3750 +1112.5378 Number Theory +1205.1006 Number Theory +1207.0470 +1207.0630 Commutative Algebra +1210.2062 Materials Science +1210.4323 +1210.8355 +1302.0238 Number Theory +1303.2459 Probability +1303.5375 Dynamical Systems +1308.4515 +1309.2388 Optimization and Control +1309.2831 Number Theory +1312.4632 Probability +1312.7305 Logic +1401.1884 Probability +1401.6786 Strongly Correlated Electrons +1403.1060 +1405.3476 Lattice +1405.7790 Geometric Topology +1407.3968 Statistics Theory +1407.3971 Statistics Theory +1408.6581 Earth and Planetary Astrophysics +1409.1472 Number Theory +1409.2407 +1409.3794 Mesoscale and Nanoscale Physics +1409.4545 Computational Geometry +1409.5322 Probability +1410.8546 Computer Vision and Pattern Recognition +1412.6014 Cryptography and Security +1412.7396 Algebraic Geometry +1501.01055 Combinatorics +1501.02864 Phenomenology +1502.02404 Logic in Computer Science +1502.07719 Probability +1503.00448 Social and Information Networks +1503.04610 Group Theory +1503.05888 Quantum Algebra +1503.09011 Statistics Theory +1504.00002 Statistics Theory +1504.03303 Artificial Intelligence +1504.03870 Metric Geometry +1504.05222 Social and Information Networks +1504.05874 Classical Analysis and ODEs +1504.08006 Instrumentation and Methods for Astrophysics +1505.01777 Rings and Algebras +1505.03255 Solar and Stellar Astrophysics +1505.06849 Optimization and Control +1505.08059 Number Theory +1506.00650 Mesoscale and Nanoscale Physics +1506.01343 +1506.02094 Analysis of PDEs +1506.03071 Superconductivity +1506.04788 +1506.06803 Mesoscale and Nanoscale Physics +1506.06880 +1506.06961 Combinatorics +1506.07478 +1506.07502 +1507.00789 Information Theory +1507.00894 Economics +1507.01785 +1507.02472 Dynamical Systems +1507.04345 Strongly Correlated Electrons +1507.04869 Information Theory +1507.06128 Statistics Theory +1507.06545 +1507.07113 Populations and Evolution +1508.00841 Symplectic Geometry +1508.01165 Numerical Analysis +1508.01237 Analysis of PDEs +1508.03175 Instrumentation and Methods for Astrophysics +1508.04638 +1509.00035 Mesoscale and Nanoscale Physics +1509.00304 Complex Variables +1509.00991 Strongly Correlated Electrons +1509.03452 Group Theory +1509.03770 +1509.04860 Mesoscale and Nanoscale Physics +1509.06995 +1509.07212 Phenomenology +1509.07876 Theory +1509.08069 Quantum Algebra +1510.00030 Strongly Correlated Electrons +1510.01165 Discrete Mathematics +1510.01209 Theory +1510.01223 +1510.01247 Statistical Mechanics +1510.02108 Strongly Correlated Electrons +1510.02811 +1510.02850 Combinatorics +1510.03573 Commutative Algebra +1510.05190 Combinatorics +1510.05240 Theory +1510.05433 Data Structures and Algorithms +1510.08013 Lattice +1510.08282 Human-Computer Interaction +1510.08291 Computer Vision and Pattern Recognition +1510.08483 Cosmology and Nongalactic Astrophysics +1510.08906 Machine Learning +1510.09010 Cosmology and Nongalactic Astrophysics +1510.09081 +1511.00190 Quantum Algebra +1511.00844 +1511.00897 +1511.01463 Mesoscale and Nanoscale Physics +1511.02093 Information Theory +1511.05963 +1511.06449 Computer Vision and Pattern Recognition +1511.06864 Statistical Mechanics +1511.08274 Logic +1511.08373 Statistical Mechanics +1512.00080 Combinatorics +1512.00829 Geometric Topology +1512.01181 Strongly Correlated Electrons +1512.01589 +1512.01816 Theory +1512.03144 Number Theory +1512.03302 +1512.04211 Quantum Gases +1512.04993 Theory +1512.05197 Analysis of PDEs +1512.06175 Analysis of PDEs +1512.07177 Combinatorics +1512.07418 Materials Science +1512.08806 Machine Learning +1601.01471 Quantum Gases +1601.03413 Phenomenology +1601.03526 Combinatorics +1601.03777 Theory +1601.04569 Phenomenology +1601.05005 Soft Condensed Matter +1601.06643 Soft Condensed Matter +1601.06826 +1601.07056 Materials Science +1602.00347 Combinatorics +1602.00852 Strongly Correlated Electrons +1602.01570 Optics +1602.01758 Representation Theory +1602.01835 +1602.02892 Group Theory +1602.03973 Chemical Physics +1602.04031 Combinatorics +1602.04051 Space Physics +1602.04357 Chemical Physics +1602.05654 Strongly Correlated Electrons +1602.06200 Combinatorics +1602.07563 Computation and Language +1602.07565 Artificial Intelligence +1602.08114 Social and Information Networks +1603.02324 Data Structures and Algorithms +1603.02750 Strongly Correlated Electrons +1603.03555 +1603.03598 Theory +1603.04440 Theory +1603.06641 +1603.06995 Computer Vision and Pattern Recognition +1603.07555 Analysis of PDEs +1603.07575 Probability +1603.07639 Geometric Topology +1603.07757 Statistical Mechanics +1603.08266 Optics +1603.08344 Economics +1604.00093 +1604.00309 Astrophysics of Galaxies +1604.00648 Information Theory +1604.01395 +1604.01401 Programming Languages +1604.04044 Other Computer Science +1604.04130 Instrumentation and Detectors +1604.04330 Mesoscale and Nanoscale Physics +1604.04777 Probability +1604.05780 Astrophysics of Galaxies +1604.05966 Computer Vision and Pattern Recognition +1604.07743 Logic +1604.08249 Experiment +1604.08258 Analysis of PDEs +1604.08574 Analysis of PDEs +1605.00137 Data Structures and Algorithms +1605.02057 Computer Vision and Pattern Recognition +1605.02068 Networking and Internet Architecture +1605.02280 Functional Analysis +1605.02393 Networking and Internet Architecture +1605.02509 Classical Analysis and ODEs +1605.02741 High Energy Astrophysical Phenomena +1605.02827 Computers and Society +1605.02921 Instrumentation and Detectors +1605.02934 Phenomenology +1605.02945 Computation and Language +1605.02951 Physics and Society +1605.02953 +1605.02998 Soft Condensed Matter +1605.03007 Biological Physics +1605.03043 Discrete Mathematics +1605.03051 Optimization and Control +1605.03057 Probability +1605.03099 Differential Geometry +1605.03108 Combinatorics +1605.03115 Systems and Control +1605.03145 Mesoscale and Nanoscale Physics +1605.03162 Cryptography and Security +1605.03183 Cosmology and Nongalactic Astrophysics +1605.03198 Chaotic Dynamics +1605.03199 Phenomenology +1605.03200 Differential Geometry +1605.03202 Quantum Algebra +1605.03203 Data Structures and Algorithms +1605.03205 Social and Information Networks +1605.03213 Analysis of PDEs +1605.03215 +1605.03217 Functional Analysis +1605.03219 Lattice +1605.03220 Algebraic Geometry +1605.03222 Computer Vision and Pattern Recognition +1605.03223 Numerical Analysis +1605.03226 Geometric Topology +1605.03227 Logic in Computer Science +1605.03228 Numerical Analysis +1605.03229 Hardware Architecture +1605.03235 Experiment +1605.03236 Multimedia +1605.03238 Materials Science +1605.03242 Solar and Stellar Astrophysics +1605.03244 Information Theory +1605.03250 +1605.03253 Mesoscale and Nanoscale Physics +1605.03255 Solar and Stellar Astrophysics +1605.03261 Robotics +1605.03263 Geometric Topology +1605.03266 +1605.03267 Machine Learning +1605.03269 Robotics +1605.03273 Rings and Algebras +1605.03275 General Mathematics +1605.03276 Functional Analysis +1605.03279 Theory +1605.03281 Optimization and Control +1605.03282 Information Theory +1605.03283 Distributed, Parallel, and Cluster Computing +1605.03285 Materials Science +1605.03286 Social and Information Networks +1605.03289 Optimization and Control +1605.03290 Cryptography and Security +1605.03291 Materials Science +1605.03293 Materials Science +1605.03294 Methodology +1605.03295 Materials Science +1605.03296 Differential Geometry +1605.03299 Instrumentation and Detectors +1605.03301 Statistics Theory +1605.03302 Physics Education +1605.03304 Astrophysics of Galaxies +1605.03305 Materials Science +1605.03306 Methodology +1605.03308 Materials Science +1605.03310 Methodology +1605.03311 Methodology +1605.03313 Methodology +1605.03315 Methodology +1605.03316 Information Theory +1605.03317 Materials Science +1605.03319 Combinatorics +1605.03321 Methodology +1605.03322 Combinatorics +1605.03323 Materials Science +1605.03324 Computer Vision and Pattern Recognition +1605.03325 Applications +1605.03327 Materials Science +1605.03328 Computer Vision and Pattern Recognition +1605.03329 Mesoscale and Nanoscale Physics +1605.03330 Statistics Theory +1605.03331 Information Theory +1605.03332 Dynamical Systems +1605.03333 Statistics Theory +1605.03334 Materials Science +1605.03335 Methodology +1605.03337 Information Theory +1605.03340 Materials Science +1605.03342 Mesoscale and Nanoscale Physics +1605.03343 +1605.03344 Computer Vision and Pattern Recognition +1605.03346 Materials Science +1605.03349 +1605.03352 Statistics Theory +1605.03353 Cryptography and Security +1605.03355 Materials Science +1605.03358 Cell Behavior +1605.03360 Optimization and Control +1605.03361 Theory +1605.03367 +1605.03369 +1605.03370 Physics and Society +1605.03372 Differential Geometry +1605.03373 Neurons and Cognition +1605.03374 Combinatorics +1605.03375 Number Theory +1605.03379 Astrophysics of Galaxies +1605.03383 Chemical Physics +1605.03384 Astrophysics of Galaxies +1605.03387 Astrophysics of Galaxies +1605.03391 Machine Learning +1605.03392 Artificial Intelligence +1605.03393 Networking and Internet Architecture +1605.03394 Quantitative Methods +1605.03395 Atmospheric and Oceanic Physics +1605.03397 Computational Physics +1605.03407 +1605.03409 General Physics +1605.03415 Phenomenology +1605.03421 Combinatorics +1605.03422 General Mathematics +1605.03423 Soft Condensed Matter +1605.03426 Information Theory +1605.03427 Number Theory +1605.03428 Computer Vision and Pattern Recognition +1605.03430 General Mathematics +1605.03431 +1605.03437 Phenomenology +1605.03438 Algebraic Geometry +1605.03441 Chemical Physics +1605.03443 Strongly Correlated Electrons +1605.03444 Algebraic Topology +1605.03446 Analysis of PDEs +1605.03453 Differential Geometry +1605.03454 Information Theory +1605.03457 Analysis of PDEs +1605.03460 Information Theory +1605.03465 Mesoscale and Nanoscale Physics +1605.03466 Analysis of PDEs +1605.03470 Dynamical Systems +1605.03471 Methodology +1605.03472 +1605.03474 Number Theory +1605.03477 Computer Vision and Pattern Recognition +1605.03478 Human-Computer Interaction +1605.03480 Logic in Computer Science +1605.03485 Computers and Society +1605.03486 Applications +1605.03491 Probability +1605.03492 +1605.03493 Representation Theory +1605.03500 Instrumentation and Methods for Astrophysics +1605.03501 Logic +1605.03502 Probability +1605.03503 Numerical Analysis +1605.03506 Artificial Intelligence +1605.03509 +1605.03514 Geometric Topology +1605.03516 Functional Analysis +1605.03518 Information Theory +1605.03522 Algebraic Topology +1605.03523 Geometric Topology +1605.03525 Instrumentation and Methods for Astrophysics +1605.03527 Strongly Correlated Electrons +1605.03529 Optimization and Control +1605.03530 Group Theory +1605.03533 Combinatorics +1605.03535 Computers and Society +1605.03538 Functional Analysis +1605.03542 Computational Geometry +1605.03544 Optics +1605.03548 Probability +1605.03551 General Finance +1605.03553 Neurons and Cognition +1605.03555 Populations and Evolution +1605.03556 Soft Condensed Matter +1605.03558 Analysis of PDEs +1605.03559 Statistical Finance +1605.03560 Neural and Evolutionary Computing +1605.03563 Probability +1605.03564 +1605.03565 Instrumentation and Detectors +quant-ph/0602021 +0806.0684 History and Philosophy of Physics +0907.3531 History and Philosophy of Physics +0909.3685 Algebraic Geometry +1104.0153 +1201.4378 Combinatorics +1203.1151 +1208.4884 Representation Theory +1301.1053 Category Theory +1301.6879 Optimization and Control +1302.0634 Optimization and Control +1303.7090 Statistics Theory +1304.2810 Machine Learning +1305.4083 Classical Analysis and ODEs +1305.4567 Exactly Solvable and Integrable Systems +1306.0918 Computer Science and Game Theory +1307.1873 Classical Analysis and ODEs +1308.0815 +1309.5085 Disordered Systems and Neural Networks +1310.0761 Optimization and Control +1310.5920 Classical Analysis and ODEs +1311.0750 Data Structures and Algorithms +1311.1157 Classical Analysis and ODEs +1311.2828 Computer Science and Game Theory +1401.4027 Optimization and Control +1401.6009 Differential Geometry +1403.5750 Numerical Analysis +1403.7673 Complex Variables +1403.8008 Networking and Internet Architecture +1405.2550 Cosmology and Nongalactic Astrophysics +1405.4477 Quantum Algebra +1405.4697 Networking and Internet Architecture +1408.4765 Metric Geometry +1409.4711 Distributed, Parallel, and Cluster Computing +1409.6308 Cosmology and Nongalactic Astrophysics +1410.8567 Complex Variables +1410.8632 Combinatorics +1411.4895 +1411.5105 Dynamical Systems +1411.7471 +1412.3259 Dynamical Systems +1412.3664 Cryptography and Security +1412.4428 Methodology +1412.5863 Analysis of PDEs +1412.7768 Cosmology and Nongalactic Astrophysics +1501.05437 Phenomenology +1501.05519 Optimization and Control +1501.07321 Numerical Analysis +1501.07509 Dynamical Systems +1503.03631 Analysis of PDEs +1503.03964 Artificial Intelligence +1503.06345 Complex Variables +1503.08026 Geometric Topology +1504.06973 Number Theory +1504.08043 Cryptography and Security +1505.01326 Logic in Computer Science +1505.02308 Combinatorics +1505.02365 Algebraic Topology +1505.04360 Soft Condensed Matter +1505.04662 Metric Geometry +1506.02191 Metric Geometry +1506.04596 Differential Geometry +1506.07017 Differential Geometry +1506.07321 Representation Theory +1506.07559 Accelerator Physics +1506.09084 Systems and Control +1507.00255 Cryptography and Security +1507.02172 Theory +1507.06977 Machine Learning +1508.00145 Commutative Algebra +1508.01657 Data Structures and Algorithms +1508.04581 Probability +1508.05316 Optimization and Control +1508.06593 Dynamical Systems +1508.07606 Metric Geometry +1508.07753 Machine Learning +1508.07910 +1509.01508 Operator Algebras +1509.02227 Statistical Mechanics +1509.02314 Numerical Analysis +1509.02834 Numerical Analysis +1509.03546 Analysis of PDEs +1509.04260 +1509.06704 Classical Analysis and ODEs +1509.06771 Geometric Topology +1509.06957 Machine Learning +1509.06990 Algebraic Topology +1510.01196 History and Philosophy of Physics +1510.02360 Discrete Mathematics +1510.06566 Representation Theory +1511.01037 Number Theory +1511.03496 Strongly Correlated Electrons +1511.04512 Computer Vision and Pattern Recognition +1511.04941 Phenomenology +1511.05826 Algebraic Topology +1511.05886 Data Structures and Algorithms +1511.06144 Analysis of PDEs +1511.08404 Statistics Theory +1512.01629 Artificial Intelligence +1512.03515 Cosmology and Nongalactic Astrophysics +1512.04514 Information Theory +1512.05021 Mesoscale and Nanoscale Physics +1512.06472 +1512.08483 Analysis of PDEs +1512.09156 Information Theory +1601.01018 +1601.01603 Exactly Solvable and Integrable Systems +1601.04152 Populations and Evolution +1601.04700 +1601.06759 Computer Vision and Pattern Recognition +1601.07834 Combinatorics +1602.00046 Atomic Physics +1602.00413 Information Theory +1602.02569 Populations and Evolution +1602.02620 Databases +1602.03047 Operator Algebras +1602.04360 Algebraic Geometry +1602.05308 +1602.05387 Mesoscale and Nanoscale Physics +1602.05648 Experiment +1602.05653 +1602.05845 Quantum Gases +1602.05857 Analysis of PDEs +1602.07384 Cosmology and Nongalactic Astrophysics +1602.08503 Cosmology and Nongalactic Astrophysics +1602.08805 Systems and Control +1603.00700 Differential Geometry +1603.00977 Computational Complexity +1603.01409 +1603.01488 Artificial Intelligence +1603.01492 Superconductivity +1603.02078 Computer Vision and Pattern Recognition +1603.02082 +1603.03184 Algebraic Topology +1603.03188 Materials Science +1603.03628 Mesoscale and Nanoscale Physics +1603.03889 Combinatorics +1603.04581 Human-Computer Interaction +1603.09394 Mesoscale and Nanoscale Physics +1603.09677 Materials Science +1604.01063 Information Theory +1604.01184 Programming Languages +1604.03467 Statistical Mechanics +1604.03914 +1604.04030 Mesoscale and Nanoscale Physics +1604.04278 +1604.05007 Mesoscale and Nanoscale Physics +1604.05763 Soft Condensed Matter +1604.06374 Mesoscale and Nanoscale Physics +1604.06415 +1604.06432 +1604.07703 Group Theory +1605.02369 +1605.02519 Theory +1605.02701 Data Structures and Algorithms +1605.03954 +1605.05889 Symbolic Computation +1605.08654 +1605.09419 Instrumentation and Detectors +1606.00296 Dynamical Systems +1606.00392 Materials Science +1606.00590 Data Analysis, Statistics and Probability +1606.01724 Analysis of PDEs +1606.01881 Cryptography and Security +1606.04517 Phenomenology +1606.05239 Theory +1606.06100 Superconductivity +1606.06758 Cosmology and Nongalactic Astrophysics +1606.06929 Number Theory +1606.07453 Chemical Physics +1606.07791 Data Analysis, Statistics and Probability +1606.08352 Classical Analysis and ODEs +1607.00254 Analysis of PDEs +1607.01099 Lattice +1607.04172 +1607.05364 Differential Geometry +1607.05708 Instrumentation and Methods for Astrophysics +1607.07598 Optimization and Control +1608.00448 Phenomenology +1608.01185 Numerical Analysis +1608.01213 Cosmology and Nongalactic Astrophysics +1608.01727 Number Theory +1608.03300 Quantum Gases +1608.03423 Classical Analysis and ODEs +1608.03519 Combinatorics +1608.03760 Algebraic Geometry +1608.03903 +1608.04111 Number Theory +1608.04212 Representation Theory +1608.04381 Medical Physics +1608.04415 Programming Languages +1608.04471 Machine Learning +1608.04539 Phenomenology +1608.04738 Computation and Language +1608.04816 Geometric Topology +1608.04884 Optimization and Control +1608.04891 Number Theory +1608.05008 Number Theory +1608.05019 Theory +1608.05033 Dynamical Systems +1608.05188 +1608.05229 +1608.05259 Cellular Automata and Lattice Gases +1608.05338 Computation +1608.05368 Programming Languages +1608.05384 Information Theory +1608.05404 Computer Vision and Pattern Recognition +1608.05405 Number Theory +1608.05406 Methodology +1608.05408 Instrumentation and Detectors +1608.05416 Astrophysics of Galaxies +1608.05420 Strongly Correlated Electrons +1608.05424 Instrumentation and Detectors +1608.05425 Classical Physics +1608.05427 +1608.05428 Methodology +1608.05431 Information Theory +1608.05432 Algebraic Topology +1608.05433 Biological Physics +1608.05434 Solar and Stellar Astrophysics +1608.05435 History and Overview +1608.05436 Instrumentation and Detectors +1608.05439 Physics and Society +1608.05440 Programming Languages +1608.05442 Computer Vision and Pattern Recognition +1608.05444 Software Engineering +1608.05445 Emerging Technologies +1608.05448 Number Theory +1608.05451 Astrophysics of Galaxies +1608.05455 Statistical Mechanics +1608.05456 Instrumentation and Methods for Astrophysics +1608.05457 Computation and Language +1608.05458 Number Theory +1608.05460 Methodology +1608.05462 Number Theory +1608.05463 Analysis of PDEs +1608.05464 Mesoscale and Nanoscale Physics +1608.05465 Methodology +1608.05466 Rings and Algebras +1608.05468 Information Theory +1608.05469 Cosmology and Nongalactic Astrophysics +1608.05472 Materials Science +1608.05476 Mesoscale and Nanoscale Physics +1608.05479 Discrete Mathematics +1608.05483 +1608.05485 Artificial Intelligence +1608.05486 Materials Science +1608.05488 Optics +1608.05491 +1608.05494 Molecular Networks +1608.05495 Combinatorics +1608.05500 Representation Theory +1608.05502 Analysis of PDEs +1608.05503 +1608.05504 Optics +1608.05505 Digital Libraries +1608.05506 Representation Theory +1608.05507 Representation Theory +1608.05512 Optimization and Control +1608.05514 Probability +1608.05516 Theory +1608.05517 Digital Libraries +1608.05518 Computer Vision and Pattern Recognition +1608.05519 Classical Physics +1608.05521 Programming Languages +1608.05525 Geometric Topology +1608.05528 Computation and Language +1608.05530 Functional Analysis +1608.05533 Applications +1608.05535 Dynamical Systems +1608.05536 Solar and Stellar Astrophysics +1608.05538 Cryptography and Security +1608.05539 Solar and Stellar Astrophysics +1608.05540 Analysis of PDEs +1608.05541 Differential Geometry +1608.05544 Algebraic Geometry +1608.05550 Data Structures and Algorithms +1608.05551 Materials Science +1608.05554 Computation and Language +1608.05555 Dynamical Systems +1608.05556 Chemical Physics +1608.05558 Phenomenology +1608.05560 Learning +1608.05561 Solar and Stellar Astrophysics +1608.05562 Computer Vision and Pattern Recognition +1608.05564 Databases +1608.05567 Representation Theory +1608.05569 Algebraic Geometry +1608.05570 Numerical Analysis +1608.05573 Combinatorics +1608.05574 History and Philosophy of Physics +1608.05577 Combinatorics +1608.05579 Optics +1608.05585 Mathematical Finance +1608.05586 Strongly Correlated Electrons +1608.05587 Soft Condensed Matter +1608.05588 Phenomenology +1608.05589 Dynamical Systems +1608.05590 Complex Variables +1608.05594 Databases +1608.05595 Mesoscale and Nanoscale Physics +1608.05596 Dynamical Systems +1608.05597 Economics +1608.05599 Analysis of PDEs +1608.05601 Optimization and Control +1608.05602 Analysis of PDEs +1608.05603 Soft Condensed Matter +1608.05604 Computation and Language +1608.05605 Computation and Language +1608.05609 Artificial Intelligence +1608.05610 Learning +1608.05611 Strongly Correlated Electrons +1608.05612 Probability +1608.05613 Cryptography and Security +1608.05616 Quantum Gases +1608.05617 Programming Languages +1608.05619 Programming Languages +1608.05620 Dynamical Systems +1608.05624 Astrophysics of Galaxies +1608.05625 +1608.05626 Mesoscale and Nanoscale Physics +1608.05627 Algebraic Geometry +1608.05629 Combinatorics +1608.05634 Distributed, Parallel, and Cluster Computing +1608.05636 Dynamical Systems +1608.05638 Physics Education +1608.05639 Learning +1608.05640 Experiment +1608.05646 Instrumentation and Detectors +1608.05647 Analysis of PDEs +1608.05648 Emerging Technologies +1608.05649 Medical Physics +1608.05651 Number Theory +1608.05652 +1608.05653 Materials Science +1608.05654 Operating Systems +1608.05656 Phenomenology +1608.05657 Combinatorics +1608.05659 Combinatorics +1608.05660 Information Theory +1608.05661 Computers and Society +1608.05663 Materials Science +1608.05664 Information Theory +1608.05665 Neurons and Cognition +1608.05666 Algebraic Geometry +1608.05667 Materials Science +1608.05668 Computers and Society +1608.05669 Algebraic Topology +1608.05670 Methodology +1608.05671 Social and Information Networks +1608.05672 +1608.05676 Programming Languages +1608.05677 Classical Analysis and ODEs +1608.05678 Databases +1608.05683 Geometric Topology +1608.05684 Computer Vision and Pattern Recognition +1608.05686 Optics +1608.05687 Theory +1608.05688 Probability +1608.05689 Differential Geometry +1608.05691 Logic +1608.05692 Dynamical Systems +1608.05694 Artificial Intelligence +1608.05695 Geometric Topology +1608.05698 Logic in Computer Science +1608.05699 Networking and Internet Architecture +1608.05700 Strongly Correlated Electrons +1608.05701 Artificial Intelligence +1608.05705 Combinatorics +1608.05707 Analysis of PDEs +1608.05708 Quantum Gases +hep-th/0411013 Theory +math/0111194 Algebraic Geometry +0704.2858 Algebraic Geometry +0707.4115 Strongly Correlated Electrons +0709.0597 General Mathematics +0809.3234 Rings and Algebras +0905.1078 Materials Science +0910.2531 +0911.3483 +1003.4173 +1003.5671 +1007.5464 +1008.2207 Algebraic Geometry +1010.2991 Metric Geometry +1101.3098 +1104.2275 Data Structures and Algorithms +1107.2319 Metric Geometry +1110.2763 Probability +1112.2347 +1201.1874 Number Theory +1201.2829 Logic in Computer Science +1202.3116 +1204.1435 Number Theory +1207.6334 Theory +1210.4586 Functional Analysis +1212.2575 +1212.5969 Physics and Society +1301.2412 Logic +1304.0065 Optimization and Control +1306.6221 Algebraic Topology +1306.6223 +1308.2720 Number Theory +1308.6126 +1310.2310 Algebraic Geometry +1310.4396 Other Condensed Matter +1311.2657 Numerical Analysis +1312.4269 +1312.5022 Theory +1312.7564 Dynamical Systems +1312.7699 Logic +1401.8009 +1404.1220 +1404.1968 Instrumentation and Detectors +1405.2379 Probability +1405.6002 Solar and Stellar Astrophysics +1405.6255 +1405.7511 Statistics Theory +1406.0833 +1406.3018 Representation Theory +1406.3190 Machine Learning +1406.6210 Information Theory +1406.6997 Classical Analysis and ODEs +1406.7227 Combinatorics +1407.3351 Number Theory +1407.5363 Methodology +1407.6909 Representation Theory +1407.6912 Quantum Algebra +1408.1975 High Energy Astrophysical Phenomena +1408.4257 Combinatorics +1409.2819 Databases +1409.8271 Classical Physics +1410.0445 Combinatorics +1410.3191 Information Theory +1410.4307 Statistics Theory +1411.0015 +1411.0423 Probability +1411.0941 +1411.1510 Dynamical Systems +1411.2133 Spectral Theory +1411.7017 Lattice +1412.1543 Computational Complexity +1412.6133 Information Theory +1501.00781 Optics +1501.04240 Biomolecules +1501.07347 Algebraic Geometry +1502.00112 Logic in Computer Science +1502.02018 +1502.02765 Algebraic Geometry +1502.03970 +1502.06901 Economics +1503.03059 +1503.06898 Mesoscale and Nanoscale Physics +1503.07750 +1503.08091 +1504.00352 Algebraic Geometry +1504.00680 Social and Information Networks +1504.02595 Functional Analysis +1504.03584 Information Theory +1504.07035 Classical Analysis and ODEs +1504.08027 Artificial Intelligence +1505.01177 Methodology +1505.01562 +1505.01824 Instrumentation and Detectors +1505.03103 +1505.03181 Mesoscale and Nanoscale Physics +1505.06431 Analysis of PDEs +1505.06958 Strongly Correlated Electrons +1506.04890 Algebraic Geometry +1506.05228 +1506.05997 Materials Science +1506.06113 Algebraic Geometry +1506.08872 Number Theory +1507.02902 +1507.04556 Commutative Algebra +1507.04964 +1507.05744 Group Theory +1507.06101 Classical Analysis and ODEs +1507.06756 Algebraic Geometry +1507.07021 Biomolecules +1507.07899 General Mathematics +1507.08224 General Physics +1507.08794 Theory +1508.00626 +1508.02755 Differential Geometry +1508.06379 Numerical Analysis +1508.07799 +1509.00010 Cosmology and Nongalactic Astrophysics +1509.01829 Theory +1509.02193 Methodology +1509.02449 Algebraic Geometry +1509.03004 Fluid Dynamics +1509.03543 Computational Complexity +1509.04347 Probability +1509.04659 Commutative Algebra +1509.07835 Dynamical Systems +1509.08293 +1509.08328 Analysis of PDEs +1510.00038 Functional Analysis +1510.00447 Analysis of PDEs +1510.00871 Algebraic Geometry +1510.01199 Mesoscale and Nanoscale Physics +1510.03044 Optimization and Control +1510.03516 Methodology +1510.04933 Soft Condensed Matter +1510.04944 Materials Science +1510.05486 Computational Complexity +1510.07281 Differential Geometry +1510.07470 Theory +1510.08499 K-Theory and Homology +1510.08943 Cryptography and Security +1511.00929 Number Theory +1511.02374 Group Theory +1511.04085 Theory +1511.04607 Group Theory +1511.05731 +1511.05761 Theory +1511.06397 Computation and Language +1511.06839 Phenomenology +1511.07290 Algebraic Geometry +1511.08863 Solar and Stellar Astrophysics +1512.00063 Computational Physics +1512.00366 +1512.01752 Learning +1512.01848 Computer Vision and Pattern Recognition +1512.02023 +1512.02088 Superconductivity +1512.02295 Physics Education +1512.02495 Experiment +1512.02846 Chemical Physics +1512.03506 Cosmology and Nongalactic Astrophysics +1512.03558 Functional Analysis +1512.04387 Artificial Intelligence +1512.04502 Mesoscale and Nanoscale Physics +1512.05168 +1512.06114 +1512.06352 Information Theory +1512.06473 Computer Vision and Pattern Recognition +1512.06888 Systems and Control +1512.08671 Optics +1512.08677 Mesoscale and Nanoscale Physics +1512.08883 Probability +1512.09281 +1601.00306 Applications +1601.02249 Dynamical Systems +1601.04115 Computer Vision and Pattern Recognition +1601.04914 Theory +1601.05014 +1601.05137 Information Theory +1601.05740 Probability +1601.06379 Chemical Physics +1601.06808 Chemical Physics +1601.07792 Computer Science and Game Theory +1601.07912 Earth and Planetary Astrophysics +1602.00459 Numerical Analysis +1602.00916 Theory +1602.01020 Metric Geometry +1602.01052 Applications +1602.02843 Rings and Algebras +1602.03081 +1602.03489 Experiment +1602.03819 Databases +1602.04307 Combinatorics +1602.04333 Optics +1602.04926 Theory +1602.05578 Cosmology and Nongalactic Astrophysics +1602.06828 Mesoscale and Nanoscale Physics +1602.07051 Mesoscale and Nanoscale Physics +1602.07586 Statistics Theory +1602.08630 Statistical Mechanics +1602.08790 Functional Analysis +1602.08818 +1602.08838 Complex Variables +1602.08992 +1602.09058 Experiment +1603.01007 Analysis of PDEs +1603.01960 Analysis of PDEs +1603.02719 Geometric Topology +1603.03311 Dynamical Systems +1603.03644 Geometric Topology +1603.03799 Applications +1603.04067 Distributed, Parallel, and Cluster Computing +1603.04948 Combinatorics +1603.05053 Materials Science +1603.06725 Number Theory +1603.06997 +1603.07727 +1603.08318 Learning +1603.08345 Optics +1603.08960 General Physics +1603.09248 Theory +1603.09631 Computation and Language +1603.09703 Cosmology and Nongalactic Astrophysics +1604.00402 Classical Analysis and ODEs +1604.00616 Classical Analysis and ODEs +1604.01826 Biomolecules +1604.02537 +1604.02944 Materials Science +1604.03457 High Energy Astrophysical Phenomena +1604.03759 Analysis of PDEs +1604.05011 Plasma Physics +1604.05769 Analysis of PDEs +1604.06242 Computer Vision and Pattern Recognition +1604.06301 +1604.06538 Instrumentation and Methods for Astrophysics +1604.06729 +1604.08232 General Physics +1604.08440 Algebraic Geometry +1604.08805 Instrumentation and Detectors +1604.08821 Instrumentation and Detectors +1605.00117 Optimization and Control +1605.00282 Applications +1605.00342 Algebraic Geometry +1605.00981 Statistical Mechanics +1605.01312 Strongly Correlated Electrons +1605.01598 Applications +1605.01664 Databases +1605.01924 Analysis of PDEs +1605.01944 Networking and Internet Architecture +1605.02142 Programming Languages +1605.02292 Theory +1605.02723 Classical Analysis and ODEs +1605.02847 Astrophysics of Galaxies +1605.03151 Combinatorics +1605.03611 Mesoscale and Nanoscale Physics +1605.03648 Optimization and Control +1605.03696 +1605.03805 Machine Learning +1605.04005 Space Physics +1605.04240 Analysis of PDEs +1605.04263 Databases +1605.04306 Mesoscale and Nanoscale Physics +1605.04318 Solar and Stellar Astrophysics +1605.04321 +1605.04322 +1605.04323 Statistics Theory +1605.04324 +1605.04328 Chemical Physics +1605.04330 Combinatorics +1605.04331 Optics +1605.04338 Number Theory +1605.04340 Discrete Mathematics +1605.04342 Phenomenology +1605.04343 Formal Languages and Automata Theory +1605.04344 Systems and Control +1605.04346 Information Theory +1605.04347 Superconductivity +1605.04350 Information Theory +1605.04351 Theory +1605.04353 Combinatorics +1605.04354 Quantum Gases +1605.04358 Methodology +1605.04359 Computation and Language +1605.04360 Multiagent Systems +1605.04361 +1605.04364 Numerical Analysis +1605.04367 Instrumentation and Methods for Astrophysics +1605.04368 Robotics +1605.04369 Computer Vision and Pattern Recognition +1605.04370 Systems and Control +1605.04371 Number Theory +1605.04372 Algebraic Geometry +1605.04373 Strongly Correlated Electrons +1605.04374 Social and Information Networks +1605.04378 Strongly Correlated Electrons +1605.04379 Networking and Internet Architecture +1605.04382 Atmospheric and Oceanic Physics +1605.04383 Materials Science +1605.04384 Fluid Dynamics +1605.04385 Economics +1605.04387 Complex Variables +1605.04388 Numerical Analysis +1605.04392 Optics +1605.04393 Optimization and Control +1605.04394 Metric Geometry +1605.04397 Complex Variables +1605.04399 Computer Science and Game Theory +1605.04400 Logic in Computer Science +1605.04406 Differential Geometry +1605.04407 Differential Geometry +1605.04410 Materials Science +1605.04412 Instrumentation and Detectors +1605.04414 Optimization and Control +1605.04415 Combinatorics +1605.04417 Probability +1605.04418 Information Theory +1605.04419 Numerical Analysis +1605.04420 Accelerator Physics +1605.04421 Data Structures and Algorithms +1605.04422 Numerical Analysis +1605.04423 Spectral Theory +1605.04424 Optics +1605.04428 Phenomenology +1605.04429 Spectral Theory +1605.04433 Algebraic Geometry +1605.04434 Networking and Internet Architecture +1605.04435 Machine Learning +1605.04439 Robotics +1605.04441 Combinatorics +1605.04443 Solar and Stellar Astrophysics +1605.04447 Distributed, Parallel, and Cluster Computing +1605.04448 Quantum Algebra +1605.04450 Plasma Physics +1605.04451 Mesoscale and Nanoscale Physics +1605.04452 Solar and Stellar Astrophysics +1605.04453 Phenomenology +1605.04454 Superconductivity +1605.04455 Solar and Stellar Astrophysics +1605.04459 Algebraic Geometry +1605.04460 Cosmology and Nongalactic Astrophysics +1605.04463 Neurons and Cognition +1605.04465 Machine Learning +1605.04466 Machine Learning +1605.04472 Symbolic Computation +1605.04475 Computation and Language +1605.04479 Group Theory +1605.04484 Logic +1605.04485 Soft Condensed Matter +1605.04486 Cryptography and Security +1605.04487 Information Theory +1605.04489 Category Theory +1605.04491 Data Structures and Algorithms +1605.04492 Quantitative Methods +1605.04493 Mesoscale and Nanoscale Physics +1605.04495 Materials Science +1605.04496 General Topology +1605.04501 Combinatorics +1605.04503 Dynamical Systems +1605.04505 Dynamical Systems +1605.04509 Optics +1605.04510 Networking and Internet Architecture +1605.04511 Physics and Society +1605.04513 Geometric Topology +1605.04517 Differential Geometry +1605.04518 Optimization and Control +1605.04519 Biomolecules +1605.04520 Optimization and Control +1605.04523 Functional Analysis +1605.04527 Earth and Planetary Astrophysics +1605.04528 Numerical Analysis +1605.04529 Operator Algebras +1605.04530 Algebraic Geometry +1605.04532 Geometric Topology +1605.04533 Human-Computer Interaction +1605.04534 Information Theory +1605.04537 Logic +1605.04538 Data Structures and Algorithms +1605.04539 Atomic Physics +1605.04542 Statistics Theory +1605.04543 Materials Science +1605.04544 Experiment +1605.04546 +1605.04548 Number Theory +1605.04549 +1605.04555 Rings and Algebras +1605.04557 Physics and Society +1605.04558 Fluid Dynamics +1605.04560 Dynamical Systems +1605.04561 Combinatorics +1605.04563 Differential Geometry +1605.04565 Methodology +1605.04568 Metric Geometry +1605.04573 Analysis of PDEs +1605.04575 Combinatorics +1605.04578 Differential Geometry +1605.04579 Information Theory +1605.04580 Distributed, Parallel, and Cluster Computing +1605.04581 +1605.04583 +1605.04584 Pricing of Securities +1605.04590 Algebraic Topology +1605.04593 Fluid Dynamics +1605.04596 Cellular Automata and Lattice Gases +1605.04597 Combinatorics +1605.04600 Computational Finance +1605.04602 Networking and Internet Architecture +1605.04603 Computer Vision and Pattern Recognition +1605.04611 Information Theory +1605.04614 Learning +1605.04620 Theory +1605.04624 Information Retrieval +1605.04625 Differential Geometry +1605.04626 Information Theory +1605.04628 Number Theory +1605.04629 +1605.04630 Quantum Algebra +1605.04631 Algebraic Geometry +1605.04632 Mesoscale and Nanoscale Physics +1605.04633 +1605.04636 Robotics +1605.04638 Learning +1605.04639 Learning +1605.04643 Analysis of PDEs +1605.04644 Numerical Analysis +1605.04645 Superconductivity +1605.04649 Classical Analysis and ODEs +1605.04657 Information Theory +1605.04661 Information Theory +1605.04664 Information Theory +1605.04665 Information Theory +1605.04671 Logic +1605.04672 Machine Learning +1605.04674 Computer Science and Game Theory +1605.04677 Commutative Algebra +1605.04678 Other Condensed Matter +1605.04680 Algebraic Geometry +1605.04683 Space Physics +1605.04684 Optimization and Control +1605.04686 Information Theory +1605.04688 Analysis of PDEs +1605.04690 Combinatorics +1605.04691 Artificial Intelligence +1605.04692 Phenomenology +1605.04694 Combinatorics +1605.04696 Networking and Internet Architecture +1605.04697 Combinatorics +1605.04698 Statistical Mechanics +1605.04710 Physics and Society +1605.04712 Theory +1605.04715 Computational Complexity +1605.04718 Quantitative Methods +1605.04722 Commutative Algebra +1605.04728 Number Theory +1605.04731 Computer Vision and Pattern Recognition +1605.04732 Mesoscale and Nanoscale Physics +1605.04735 Logic +1605.04737 Algebraic Topology +1605.04738 Data Analysis, Statistics and Probability +1605.04739 Quantitative Methods +1605.04740 Neurons and Cognition +1605.04744 Logic in Computer Science +1605.04745 Representation Theory +1605.04750 Mesoscale and Nanoscale Physics +1605.04751 Algebraic Topology +1605.04752 Differential Geometry +1605.04756 Phenomenology +1605.04757 Number Theory +1605.04760 Combinatorics +1605.04761 Computers and Society +1605.04764 Learning +1605.04765 Classical Physics +1605.04771 Quantum Gases +1605.04772 Methodology +1605.04773 General Mathematics +1605.04774 Physics and Society +1605.04779 Functional Analysis +1605.04780 Combinatorics +1605.04781 Materials Science +1605.04784 Networking and Internet Architecture +1605.04785 Computer Vision and Pattern Recognition +1605.04786 Superconductivity +1605.04790 Mesoscale and Nanoscale Physics +1605.04792 +1605.04796 Statistics Theory +1605.04801 Number Theory +1605.04805 Information Theory +1605.04806 Computer Vision and Pattern Recognition +1605.04811 +1605.04813 Optics +1605.04814 Information Theory +1605.04817 Combinatorics +1605.04822 Analysis of PDEs +1605.04824 Combinatorics +1605.04829 Group Theory +1605.04830 Group Theory +1605.04832 Commutative Algebra +1605.04836 Materials Science +1605.04840 Analysis of PDEs +1605.04841 Materials Science +1605.04844 Space Physics +1605.04850 Computer Vision and Pattern Recognition +1605.04857 Cosmology and Nongalactic Astrophysics +1605.04859 Learning +1605.04861 Phenomenology +1605.04863 Rings and Algebras +1605.04865 Numerical Analysis +1605.04869 Instrumentation and Methods for Astrophysics +1605.04870 Cryptography and Security +1605.04872 Physics and Society +1605.04877 Combinatorics +1605.04880 Soft Condensed Matter +1605.04891 Mesoscale and Nanoscale Physics +cond-mat/0611319 Strongly Correlated Electrons +quant-ph/9905085 +0907.0568 Geometric Topology +0910.1493 Geometric Topology +0911.1826 Combinatorics +1003.5365 Geometric Topology +1008.0382 +1012.1288 Distributed, Parallel, and Cluster Computing +1012.6025 +1106.4826 Theory +1108.4904 Geometric Topology +1109.3514 +1110.1228 Probability +1112.2687 +1203.4383 High Energy Astrophysical Phenomena +1204.3225 +1205.4462 Algebraic Topology +1205.4855 High Energy Astrophysical Phenomena +1206.0441 +1208.2388 +1212.1087 Cosmology and Nongalactic Astrophysics +1212.6205 Probability +1212.6494 High Energy Astrophysical Phenomena +1301.2953 High Energy Astrophysical Phenomena +1302.4830 Cosmology and Nongalactic Astrophysics +1305.3405 Number Theory +1306.2930 Combinatorics +1306.4760 High Energy Astrophysical Phenomena +1307.1695 Probability +1308.4173 Strongly Correlated Electrons +1308.6143 Geometric Topology +1309.6068 Probability +1311.2505 Information Theory +1311.3008 Geometric Topology +1311.5619 +1311.7505 High Energy Astrophysical Phenomena +1312.0290 +1312.7819 +1401.5210 Analysis of PDEs +1402.2475 Combinatorics +1402.3096 Logic +1402.3130 General Mathematics +1402.5903 Theory +1403.4485 Algebraic Topology +1405.1202 +1405.5118 Exactly Solvable and Integrable Systems +1405.6102 +1405.6338 Algebraic Geometry +1407.4444 +1407.7112 Rings and Algebras +1408.1698 +1408.3925 Analysis of PDEs +1408.5829 Superconductivity +1408.6805 Theory +1409.0813 Computers and Society +1409.1826 Algebraic Geometry +1409.7921 High Energy Astrophysical Phenomena +1409.8455 Complex Variables +1410.0384 Probability +1410.1242 Statistics Theory +1410.7553 High Energy Astrophysical Phenomena +1411.0213 Functional Analysis +1411.2782 Biological Physics +1411.2835 Pricing of Securities +1412.3283 Analysis of PDEs +1412.4178 Probability +1412.5680 Theory +1412.6552 Superconductivity +1501.01217 Cosmology and Nongalactic Astrophysics +1501.01511 Combinatorics +1501.04858 Group Theory +1501.04861 Probability +1501.06287 Information Theory +1501.07227 Learning +1501.07806 Probability +1502.02397 Probability +1502.02678 Theory +1502.04335 Superconductivity +1502.06782 +1503.01436 Learning +1503.03488 Learning +1503.04329 Mesoscale and Nanoscale Physics +1503.04704 Optimization and Control +1503.05858 Combinatorics +1503.06355 Strongly Correlated Electrons +1503.07348 Metric Geometry +1503.08632 Probability +1504.00298 Computation +1504.01618 +1504.02619 Soft Condensed Matter +1504.02773 General Mathematics +1504.04583 Cosmology and Nongalactic Astrophysics +1504.04851 Materials Science +1504.06146 Probability +1504.07422 Neurons and Cognition +1504.08156 +1505.00341 Computer Science and Game Theory +1505.01940 High Energy Astrophysical Phenomena +1505.02454 Rings and Algebras +1505.02616 Theory +1505.07775 +1506.00152 Probability +1506.01696 Fluid Dynamics +1506.01842 Statistics Theory +1506.08161 Soft Condensed Matter +1506.08218 Probability +1507.00069 +1507.00547 Combinatorics +1507.00856 High Energy Astrophysical Phenomena +1507.01831 Operator Algebras +1507.02381 Disordered Systems and Neural Networks +1507.04452 Information Theory +1507.08776 Probability +1508.01774 Machine Learning +1508.02254 Fluid Dynamics +1508.04502 Quantum Gases +1508.07572 Quantum Gases +1509.01601 General Topology +1509.02335 Information Theory +1509.02361 Instrumentation and Detectors +1509.02418 Optics +1509.02625 +1509.03973 +1509.03986 Analysis of PDEs +1509.04117 Superconductivity +1509.04383 Mesoscale and Nanoscale Physics +1509.05345 Mesoscale and Nanoscale Physics +1509.05927 Classical Physics +1509.06772 Dynamical Systems +1509.07314 Systems and Control +1509.09076 Strongly Correlated Electrons +1509.09128 +1510.00767 Populations and Evolution +1510.01017 Analysis of PDEs +1510.01150 Probability +1510.01951 Experiment +1510.02642 Logic in Computer Science +1510.03876 Theory +1510.03897 Mesoscale and Nanoscale Physics +1510.07563 Cryptography and Security +1510.08216 Cosmology and Nongalactic Astrophysics +1510.08702 Strongly Correlated Electrons +1510.08937 Experiment +1511.00094 +1511.01435 +1511.01939 Theory +1511.02286 Solar and Stellar Astrophysics +1511.03050 +1511.03270 Theory +1511.03347 Statistical Mechanics +1511.06566 Optimization and Control +1511.08915 Databases +1511.09261 Mesoscale and Nanoscale Physics +1511.09324 Logic in Computer Science +1512.00176 Materials Science +1512.00274 Cryptography and Security +1512.02050 Lattice +1512.02924 Information Theory +1512.03764 Phenomenology +1512.04226 Computational Geometry +1512.06047 +1512.07581 +1512.07939 Representation Theory +1512.08112 Information Theory +1512.08168 Formal Languages and Automata Theory +1512.09300 Learning +1512.09347 Quantitative Methods +1601.00183 Cosmology and Nongalactic Astrophysics +1601.00606 Analysis of PDEs +1601.01221 Mesoscale and Nanoscale Physics +1601.03732 Astrophysics of Galaxies +1601.04705 Astrophysics of Galaxies +1601.04805 Computer Vision and Pattern Recognition +1601.04822 Optics +1601.05350 Computer Vision and Pattern Recognition +1601.05648 Networking and Internet Architecture +1601.05977 Artificial Intelligence +1601.07041 Quantitative Methods +1601.07564 Phenomenology +1602.00044 Classical Analysis and ODEs +1602.00365 Operator Algebras +1602.00381 Mesoscale and Nanoscale Physics +1602.01239 High Energy Astrophysical Phenomena +1602.01947 Emerging Technologies +1602.02581 +1602.03006 History and Overview +1602.03097 Cryptography and Security +1602.03265 Computation and Language +1602.03413 General Mathematics +1602.03420 Numerical Analysis +1602.03475 History and Philosophy of Physics +1602.03510 Dynamical Systems +1602.03522 Analysis of PDEs +1602.03529 Theory +1602.03536 Information Theory +1602.03537 Group Theory +1602.03540 Distributed, Parallel, and Cluster Computing +1602.03541 Classical Physics +1602.03547 Probability +1602.03550 Combinatorics +1602.03551 Computation and Language +1602.03552 Learning +1602.03554 Rings and Algebras +1602.03555 History and Overview +1602.03556 History and Overview +1602.03557 Databases +1602.03563 Networking and Internet Architecture +1602.03564 Algebraic Geometry +1602.03566 Mesoscale and Nanoscale Physics +1602.03567 Dynamical Systems +1602.03568 Mesoscale and Nanoscale Physics +1602.03569 Combinatorics +1602.03574 Methodology +1602.03575 Group Theory +1602.03576 Materials Science +1602.03578 Algebraic Geometry +1602.03581 Numerical Analysis +1602.03583 Number Theory +1602.03585 Computer Vision and Pattern Recognition +1602.03586 Information Theory +1602.03587 Optics +1602.03588 Commutative Algebra +1602.03589 Methodology +1602.03590 Combinatorics +1602.03591 Programming Languages +1602.03592 Logic in Computer Science +1602.03593 Logic in Computer Science +1602.03594 Programming Languages +1602.03595 Logic in Computer Science +1602.03596 Logic in Computer Science +1602.03597 Logic in Computer Science +1602.03598 Programming Languages +1602.03599 Programming Languages +1602.03600 Machine Learning +1602.03601 Analysis of PDEs +1602.03605 Fluid Dynamics +1602.03606 Computation and Language +1602.03609 Computation and Language +1602.03612 Analysis of PDEs +1602.03615 Complex Variables +1602.03620 Materials Science +1602.03623 Multiagent Systems +1602.03625 Statistical Mechanics +1602.03626 Analysis of PDEs +1602.03632 Materials Science +1602.03636 Social and Information Networks +1602.03639 Rings and Algebras +1602.03643 Mathematical Software +1602.03646 Biological Physics +1602.03649 Applications +1602.03650 Physics and Society +1602.03651 Phenomenology +1602.03656 Strongly Correlated Electrons +1602.03657 Probability +1602.03658 Computation +1602.03661 Physics and Society +1602.03662 Number Theory +1602.03664 Social and Information Networks +1602.03667 Solar and Stellar Astrophysics +1602.03669 Space Physics +1602.03673 Theory +1602.03674 Social and Information Networks +1602.03675 Classical Analysis and ODEs +1602.03678 Materials Science +1602.03681 Social and Information Networks +1602.03682 +1602.03683 Machine Learning +1602.03686 Learning +1602.03688 Astrophysics of Galaxies +1602.03689 Software Engineering +1602.03690 Logic +1602.03694 High Energy Astrophysical Phenomena +1602.03698 Combinatorics +1602.03699 Networking and Internet Architecture +1602.03704 Analysis of PDEs +1602.03706 Networking and Internet Architecture +1602.03707 Analysis of PDEs +1602.03716 Networking and Internet Architecture +1602.03719 Social and Information Networks +1602.03722 Information Theory +1602.03723 Chemical Physics +1602.03725 Computer Vision and Pattern Recognition +1602.03727 Statistics Theory +1602.03728 Combinatorics +1602.03732 History and Overview +1602.03733 Geometric Topology +1602.03735 General Mathematics +1602.03736 History and Overview +1602.03739 Social and Information Networks +1602.03740 +1602.03741 Combinatorics +1602.03742 Human-Computer Interaction +1602.03747 General Mathematics +1602.03749 Medical Physics +1602.03751 Adaptation and Self-Organizing Systems +1602.03753 Fluid Dynamics +1602.03754 Physics Education +1602.03757 Human-Computer Interaction +1602.03758 Data Analysis, Statistics and Probability +1602.03759 Optics +1602.03760 Methodology +1602.03763 Soft Condensed Matter +1602.03764 Neurons and Cognition +1602.03770 Distributed, Parallel, and Cluster Computing +1602.03771 Optimization and Control +1602.03774 Physics and Society +1602.03775 Dynamical Systems +1602.03777 Logic +1602.03783 +1602.03784 Logic +1602.03794 Statistics Theory +1602.03796 Systems and Control +1602.03805 Computer Vision and Pattern Recognition +1602.03807 Machine Learning +1602.03808 Computer Vision and Pattern Recognition +1602.03809 Chemical Physics +1602.03811 Quantum Gases +1602.03814 Robotics +1602.03816 Superconductivity +1602.03820 Materials Science +1602.03821 Solar and Stellar Astrophysics +1602.03825 Geometric Topology +1602.03836 Probability +1602.03848 Complex Variables +1602.03850 Probability +1602.03853 Plasma Physics +1602.03854 Computational Engineering, Finance, and Science +1602.03855 Applications +1602.03858 Materials Science +1602.03860 Computer Vision and Pattern Recognition +1602.03862 Molecular Networks +1602.03865 Computational Geometry +1602.03867 Category Theory +1602.03869 +1602.03871 Group Theory +1602.03882 Optics +astro-ph/0310723 +astro-ph/9806216 +funct-an/9211005 Functional Analysis +gr-qc/0603133 +hep-ex/0410070 Experiment +hep-ph/0401055 Phenomenology +q-bio/0507008 Genomics +0905.0641 +1004.2108 Representation Theory +1006.2183 Distributed, Parallel, and Cluster Computing +1007.2659 Solar and Stellar Astrophysics +1102.3858 Algebraic Geometry +1103.2287 Differential Geometry +1107.5996 Representation Theory +1203.3244 Mesoscale and Nanoscale Physics +1205.5727 Phenomenology +1209.4224 Dynamical Systems +1211.1868 Combinatorics +1211.3576 Probability +1212.1657 Instrumentation and Detectors +1304.7440 Quantum Algebra +1305.0116 Cosmology and Nongalactic Astrophysics +1307.1661 Probability +1308.4899 Geometric Topology +1309.5276 +1309.6697 Methodology +1310.3534 Algebraic Geometry +1312.2831 Differential Geometry +1401.2289 General Topology +1402.1899 Systems and Control +1402.3453 Differential Geometry +1403.0684 Exactly Solvable and Integrable Systems +1403.3855 Probability +1404.1572 Representation Theory +1404.6546 Optimization and Control +1405.2449 Combinatorics +1405.3169 Differential Geometry +1406.2851 +1407.4951 +1408.0507 Mesoscale and Nanoscale Physics +1408.3675 Mesoscale and Nanoscale Physics +1408.3681 Mesoscale and Nanoscale Physics +1409.1370 Category Theory +1410.6432 Quantum Algebra +1411.1124 Data Structures and Algorithms +1412.1581 Combinatorics +1412.2413 Quantum Algebra +1412.7461 Computation +1501.00417 Astrophysics of Galaxies +1501.01044 +1501.04857 General Physics +1501.06763 +1501.07528 Combinatorics +1502.00329 Operator Algebras +1502.00546 Probability +1502.07403 Rings and Algebras +1503.00285 Representation Theory +1503.00576 Distributed, Parallel, and Cluster Computing +1503.01733 Probability +1503.04706 Discrete Mathematics +1503.04708 Algebraic Geometry +1503.06319 +1503.07027 Learning +1503.07627 Combinatorics +1504.00144 Mesoscale and Nanoscale Physics +1504.03730 Information Theory +1504.03742 Dynamical Systems +1504.06125 Exactly Solvable and Integrable Systems +1504.07498 Number Theory +1504.07561 Mesoscale and Nanoscale Physics +1504.08294 Group Theory +1505.03670 +1506.01238 Quantum Gases +1506.03267 Spectral Theory +1506.03475 Computer Vision and Pattern Recognition +1506.05438 Algebraic Geometry +1506.07917 Experiment +1506.08269 Information Theory +1506.08455 Spectral Theory +1506.09096 Data Analysis, Statistics and Probability +1507.00442 Theory +1507.00506 Algebraic Geometry +1507.02135 +1507.02312 Spectral Theory +1507.02485 Methodology +1507.03059 Combinatorics +1507.03496 Methodology +1507.04141 +1507.04398 Methodology +1507.05011 Optimization and Control +1507.08505 Neurons and Cognition +1508.04156 Analysis of PDEs +1508.04778 Quantum Gases +1508.06519 +1508.07468 Computer Vision and Pattern Recognition +1508.07764 Probability +1509.02789 Fluid Dynamics +1509.03801 Optimization and Control +1509.04722 Algebraic Geometry +1509.05572 Data Structures and Algorithms +1509.06535 Neural and Evolutionary Computing +1509.08122 +1509.08221 Algebraic Geometry +1509.09235 Neural and Evolutionary Computing +1510.03159 Combinatorics +1510.04808 Differential Geometry +1510.04976 +1510.05237 Learning +1510.05666 Earth and Planetary Astrophysics +1510.06952 General Mathematics +1510.08029 Statistics Theory +1510.08955 Exactly Solvable and Integrable Systems +1511.00673 Neurons and Cognition +1511.01579 Dynamical Systems +1511.01728 Mesoscale and Nanoscale Physics +1511.02967 Theory +1511.03025 Classical Analysis and ODEs +1511.03029 +1511.03830 Probability +1511.04457 Cosmology and Nongalactic Astrophysics +1511.06183 General Physics +1511.06739 Computer Vision and Pattern Recognition +1511.07710 Computer Vision and Pattern Recognition +1511.08838 Optimization and Control +1511.09051 Algebraic Geometry +1512.00238 +1512.01302 Differential Geometry +1512.01671 Analysis of PDEs +1512.02732 Differential Geometry +1512.02800 Cosmology and Nongalactic Astrophysics +1512.02956 Statistics Theory +1512.03455 K-Theory and Homology +1512.04405 Theory +1512.05807 Cosmology and Nongalactic Astrophysics +1512.06285 Computer Vision and Pattern Recognition +1512.06448 Software Engineering +1512.07719 Combinatorics +1512.08149 Combinatorics +1512.08807 +1601.00029 Spectral Theory +1601.01145 Computer Vision and Pattern Recognition +1601.01229 Cryptography and Security +1601.01678 Superconductivity +1601.01924 Soft Condensed Matter +1601.02339 Sound +1601.02454 Experiment +1601.03233 Phenomenology +1601.04165 Phenomenology +1601.04510 Number Theory +1601.04618 Materials Science +1601.04811 Computation and Language +1601.05394 General Topology +1601.06303 Logic +1601.06381 Mesoscale and Nanoscale Physics +1601.06526 Experiment +1601.06529 +1601.06574 Algebraic Geometry +1601.07318 Analysis of PDEs +1601.07969 Computation and Language +1602.00584 Strongly Correlated Electrons +1602.00979 Quantum Gases +1602.01181 Phenomenology +1602.01232 Probability +1602.02034 Strongly Correlated Electrons +1602.02582 Theory +1602.02734 Computational Physics +1602.04188 +1602.04545 Number Theory +1602.05479 +1602.06502 Quantum Gases +1602.06582 Sound +1602.08216 +1603.00547 Combinatorics +1603.00870 High Energy Astrophysical Phenomena +1603.01227 High Energy Astrophysical Phenomena +1603.01465 +1603.01647 Mesoscale and Nanoscale Physics +1603.01743 Differential Geometry +1603.01848 +1603.02099 Numerical Analysis +1603.02239 Optimization and Control +1603.02882 Probability +1603.03017 Mesoscale and Nanoscale Physics +1603.04469 +1603.05849 Probability +1603.05931 Soft Condensed Matter +1603.05963 Networking and Internet Architecture +1603.06098 Computer Vision and Pattern Recognition +1603.06799 Theory +1604.00286 Strongly Correlated Electrons +1604.00452 Strongly Correlated Electrons +1604.01709 Theory +1604.01995 Quantum Gases +1604.02135 Computer Vision and Pattern Recognition +1604.03039 Phenomenology +1604.03743 +1604.04055 Chaotic Dynamics +1604.04168 Mesoscale and Nanoscale Physics +1604.04661 Distributed, Parallel, and Cluster Computing +1604.05398 Algebraic Geometry +1604.05630 Theory +1604.06015 Functional Analysis +1604.07531 Optics +1604.08185 Materials Science +1604.08186 Materials Science +1604.08214 High Energy Astrophysical Phenomena +1604.08778 Chemical Physics +1605.00054 Soft Condensed Matter +1605.00164 Computer Vision and Pattern Recognition +1605.00942 Computation and Language +1605.01339 Physics Education +1605.01380 Phenomenology +1605.01706 Functional Analysis +1605.02237 Functional Analysis +1605.02384 +1605.02749 High Energy Astrophysical Phenomena +1605.03034 Logic +1605.03214 Numerical Analysis +1605.03424 +1605.04464 Software Engineering +1605.04642 Superconductivity +1605.04704 Optics +1605.05526 Chemical Physics +1605.06410 Strongly Correlated Electrons +1605.07447 Commutative Algebra +1605.08666 Theory +1605.08742 Optimization and Control +1605.08777 Instrumentation and Detectors +1605.08778 Instrumentation and Detectors +1606.00095 Metric Geometry +1606.00375 Classical Analysis and ODEs +1606.01331 Solar and Stellar Astrophysics +1606.02772 Superconductivity +1606.02817 Theory +1606.02979 Computation and Language +1606.03172 Number Theory +1606.04841 Mesoscale and Nanoscale Physics +1606.05274 Theory +1606.05639 Combinatorics +1606.05921 Theory +1606.06021 Information Theory +1606.06216 Neural and Evolutionary Computing +1606.06960 Instrumentation and Methods for Astrophysics +1606.07600 +1606.08650 Computation +1606.09257 Theory +1606.09353 Algebraic Geometry +1607.00277 Instrumentation and Methods for Astrophysics +1607.00945 Computational Complexity +1607.01808 +1607.02073 Fluid Dynamics +1607.02177 Learning +1607.02441 Physics and Society +1607.02720 Computer Vision and Pattern Recognition +1607.03024 +1607.03716 Complex Variables +1607.03876 +1607.03942 Rings and Algebras +1607.04196 +1607.04348 Geometric Topology +1607.04822 Programming Languages +1607.05723 +1607.05743 Algebraic Geometry +1607.06162 Materials Science +1607.06293 Strongly Correlated Electrons +1607.06526 +1607.06598 Plasma Physics +1607.07009 Discrete Mathematics +1607.07179 Phenomenology +1607.07268 Differential Geometry +1607.07819 Machine Learning +1607.08086 Hardware Architecture +1607.08218 Information Theory +1607.08240 Phenomenology +1607.08618 Strongly Correlated Electrons +1607.08876 Algebraic Geometry +1608.00098 Information Theory +1608.00120 Performance +1608.00399 Theory +1608.00494 Instrumentation and Detectors +1608.00862 General Mathematics +1608.01137 Computer Vision and Pattern Recognition +1608.01282 Machine Learning +1608.01285 Analysis of PDEs +1608.01299 Cosmology and Nongalactic Astrophysics +1608.01547 +1608.01577 Combinatorics +1608.01594 Programming Languages +1608.01609 History and Overview +1608.01640 +1608.01671 General Mathematics +1608.01689 Distributed, Parallel, and Cluster Computing +1608.01737 Information Theory +1608.01738 Information Theory +1608.01938 Probability +1608.01951 Lattice +1608.01990 Fluid Dynamics +1608.01992 Number Theory +1608.01993 Computer Vision and Pattern Recognition +1608.02003 +1608.02005 +1608.02008 Software Engineering +1608.02009 Functional Analysis +1608.02010 Learning +1608.02013 Astrophysics of Galaxies +1608.02015 Physics and Society +1608.02016 Probability +1608.02017 Optimization and Control +1608.02019 Mesoscale and Nanoscale Physics +1608.02020 Analysis of PDEs +1608.02021 Social and Information Networks +1608.02024 Physics and Society +1608.02026 Computer Vision and Pattern Recognition +1608.02027 Neurons and Cognition +1608.02029 Logic +1608.02030 Combinatorics +1608.02032 Information Theory +1608.02035 Analysis of PDEs +1608.02037 Geometric Topology +1608.02039 Logic +1608.02041 Analysis of PDEs +1608.02043 Materials Science +1608.02045 +1608.02048 Analysis of PDEs +1608.02049 Algebraic Geometry +1608.02051 Computer Vision and Pattern Recognition +1608.02052 Computer Vision and Pattern Recognition +1608.02053 Physics and Society +1608.02056 Theory +1608.02059 Computer Vision and Pattern Recognition +1608.02060 Machine Learning +1608.02062 Cosmology and Nongalactic Astrophysics +1608.02064 Strongly Correlated Electrons +1608.02065 Materials Science +1608.02066 Numerical Analysis +1608.02071 Learning +1608.02072 Plasma Physics +1608.02074 Analysis of PDEs +1608.02078 +1608.02084 Quantum Algebra +1608.02085 Group Theory +1608.02089 Numerical Analysis +1608.02090 Optimization and Control +1608.02091 Probability +1608.02092 Numerical Analysis +1608.02093 Mesoscale and Nanoscale Physics +1608.02094 Computation and Language +1608.02095 +1608.02101 Phenomenology +1608.02102 +1608.02104 Metric Geometry +1608.02105 Materials Science +1608.02107 Combinatorics +1608.02109 Superconductivity +1608.02117 Computation and Language +1608.02119 Analysis of PDEs +1608.02126 Learning +1608.02128 Cryptography and Security +1608.02135 Analysis of PDEs +1608.02137 Differential Geometry +1608.02139 Classical Analysis and ODEs +1608.02140 +1608.02143 Statistics Theory +1608.02144 Mesoscale and Nanoscale Physics +1608.02146 Learning +1608.02147 Dynamical Systems +1608.02150 Materials Science +1608.02152 Analysis of PDEs +1608.02154 Combinatorics +1608.02156 Differential Geometry +1608.02157 Algebraic Topology +1608.02161 Statistical Mechanics +1608.02164 Computer Vision and Pattern Recognition +1608.02165 Computer Vision and Pattern Recognition +1608.02167 Plasma Physics +1608.02168 +1608.02169 Information Theory +1608.02171 Robotics +1608.02175 Probability +1608.02177 Number Theory +1608.02179 Statistical Mechanics +1608.02180 Fluid Dynamics +1608.02182 Functional Analysis +1608.02184 +1608.02187 Instrumentation and Methods for Astrophysics +1608.02192 Computer Vision and Pattern Recognition +1608.02194 Analysis of PDEs +1608.02195 Social and Information Networks +1608.02196 Cryptography and Security +1608.02197 Combinatorics +1608.02199 Computation +1608.02201 Computer Vision and Pattern Recognition +1608.02204 Dynamical Systems +1608.02205 +1608.02206 Soft Condensed Matter +1608.02215 Plasma Physics +1608.02216 Numerical Analysis +1608.02221 Applications +1608.02222 Logic +1608.02224 Probability +1608.02227 Optimization and Control +1608.02229 Neural and Evolutionary Computing +1608.02230 Superconductivity +1608.02234 Cosmology and Nongalactic Astrophysics +1608.02236 Computer Vision and Pattern Recognition +1608.02240 Optimization and Control +1608.02245 +1608.02246 Probability +1608.02247 Cryptography and Security +1608.02250 Mesoscale and Nanoscale Physics +1608.02253 Chemical Physics +1608.02254 Logic +1608.02255 Computer Vision and Pattern Recognition +1608.02256 Optimization and Control +1608.02259 Quantum Gases +1608.02261 Phenomenology +1608.02263 +1608.02264 Earth and Planetary Astrophysics +1608.02266 Systems and Control +1608.02267 Numerical Analysis +1608.02271 Mesoscale and Nanoscale Physics +1608.02272 Sound +1608.02275 Algebraic Geometry +1608.02276 Robotics +1608.02280 Machine Learning +1608.02281 Probability +1608.02282 Data Structures and Algorithms +1608.02287 Artificial Intelligence +1608.02289 Computer Vision and Pattern Recognition +1608.02290 Differential Geometry +1608.02291 Multimedia +1608.02292 Learning +1608.02295 Dynamical Systems +1608.02296 Number Theory +1608.02299 Probability +1608.02300 Optimization and Control +1608.02301 Learning +1608.02303 Probability +1608.02305 Optimization and Control +1608.02307 Computer Vision and Pattern Recognition +1608.02308 Solar and Stellar Astrophysics +1608.02310 Materials Science +1608.02312 Functional Analysis +1608.02314 Differential Geometry +1608.02316 Systems and Control +1608.02318 Computer Vision and Pattern Recognition +1608.02319 Exactly Solvable and Integrable Systems +1608.02320 Commutative Algebra +1608.02324 Exactly Solvable and Integrable Systems +1608.02325 Superconductivity +1608.02326 Physics and Society +1608.02327 Logic in Computer Science +1608.02330 Materials Science +1608.02332 Combinatorics +1608.02334 Operator Algebras +1608.02336 +1608.02337 Information Theory +1608.02338 Statistical Mechanics +1608.02342 Logic +1608.02344 Experiment +1608.02348 Classical Analysis and ODEs +1608.02349 Materials Science +1608.02355 Information Theory +1608.02359 +1608.02360 Strongly Correlated Electrons +1608.02363 +1608.02364 Social and Information Networks +1608.02365 Mathematical Finance +1608.02366 +1608.02367 Computer Vision and Pattern Recognition +1608.02368 Optimization and Control +1608.02369 Materials Science +1608.02370 Statistical Mechanics +1608.02371 Optimization and Control +1608.02373 Computer Vision and Pattern Recognition +1608.02375 Genomics +1608.02376 Strongly Correlated Electrons +1608.02377 Optimization and Control +1608.02379 Materials Science +1608.02381 Phenomenology +1608.02382 Phenomenology +1608.02383 Materials Science +1608.02385 Computer Vision and Pattern Recognition +1608.02388 Computer Vision and Pattern Recognition +1608.02393 Metric Geometry +1608.02394 Algebraic Geometry +1608.02399 Chemical Physics +1608.02400 Differential Geometry +1608.02402 Computer Science and Game Theory +1608.02403 Plasma Physics +1608.02406 Artificial Intelligence +1608.02407 Instrumentation and Methods for Astrophysics +1608.02408 Instrumentation and Methods for Astrophysics +1608.02411 Mesoscale and Nanoscale Physics +1608.02415 Probability +1608.02417 Number Theory +1608.02418 Representation Theory +1608.02420 Combinatorics +1608.02421 +1608.02426 Accelerator Physics +1608.02430 +1608.02431 Group Theory +1608.02432 Distributed, Parallel, and Cluster Computing +1608.02433 Accelerator Physics +1608.02439 Combinatorics +1608.02441 Artificial Intelligence +1608.02442 Distributed, Parallel, and Cluster Computing +1608.02443 Geometric Topology +1608.02444 Differential Geometry +1608.02445 Operator Algebras +1608.02446 Mathematical Finance +1608.02449 Accelerator Physics +1608.02450 Artificial Intelligence +1608.02451 Data Structures and Algorithms +1608.02456 Accelerator Physics +1608.02458 +1608.02460 Mesoscale and Nanoscale Physics +1608.02461 Numerical Analysis +1608.02462 Accelerator Physics +1608.02463 Functional Analysis +1608.02464 Fluid Dynamics +1608.02466 Classical Physics +1608.02467 Materials Science +1608.02469 +1608.02470 Representation Theory +1608.02472 Number Theory +1608.02473 +1608.02476 Accelerator Physics +1608.02482 Materials Science +1608.02483 Geophysics +1608.02484 Learning +1608.02485 Machine Learning +1608.02487 Cosmology and Nongalactic Astrophysics +1608.02488 Geophysics +1608.02490 Instrumentation and Detectors +1608.02494 Atmospheric and Oceanic Physics +1608.02495 Symplectic Geometry +1608.02497 Materials Science +1608.02499 Computers and Society +1608.02502 Instrumentation and Methods for Astrophysics +1608.02503 Rings and Algebras +1608.02504 +1608.02505 Systems and Control +1608.02508 Systems and Control +1608.02509 Algebraic Topology +1608.02510 Combinatorics +1608.02513 Plasma Physics +1608.02515 Data Structures and Algorithms +1608.02519 Social and Information Networks +1608.02522 Algebraic Geometry +1608.02524 Algebraic Geometry +1608.02526 Fluid Dynamics +1608.02527 Optimization and Control +1608.02531 Combinatorics +1608.02535 Chemical Physics +1608.02536 Earth and Planetary Astrophysics +1608.02540 Phenomenology +1608.02547 Materials Science +1608.02549 Machine Learning +1608.02550 Optimization and Control +1608.02551 Biological Physics +1608.02553 Chemical Physics +1608.02554 Machine Learning +1608.02559 Chemical Physics +1608.02562 Mesoscale and Nanoscale Physics +1608.02563 +1608.02565 Programming Languages +1608.02567 Numerical Analysis +1608.02569 Theory +1608.02572 Group Theory +1608.02574 Molecular Networks +hep-ph/0412178 Phenomenology +nucl-th/9804051 +quant-ph/0311072 +0804.0365 +0904.2437 Geometric Topology +1001.2490 Representation Theory +1003.0793 General Finance +1101.5845 Phenomenology +1105.3167 Algebraic Topology +1105.5279 Mesoscale and Nanoscale Physics +1106.0454 Representation Theory +1109.4374 Representation Theory +1110.0826 Mesoscale and Nanoscale Physics +1110.4178 Geometric Topology +1111.0729 Logic +1204.1683 Optimization and Control +1204.6693 Mesoscale and Nanoscale Physics +1210.4064 Representation Theory +1210.5389 Representation Theory +1211.4208 Combinatorics +1302.3812 Geometric Topology +1303.1057 Representation Theory +1304.3502 Operator Algebras +1306.4203 Dynamical Systems +1306.5701 +1307.0767 Number Theory +1308.5866 Geometric Topology +1309.3636 Logic +1310.3244 +1310.5729 Number Theory +1311.6111 Representation Theory +1312.4424 Numerical Analysis +1402.0604 Analysis of PDEs +1402.4759 Number Theory +1402.4775 Algebraic Topology +1402.5835 Mathematical Software +1403.6401 Analysis of PDEs +1404.3383 Representation Theory +1404.4593 Theory +1405.0056 Analysis of PDEs +1405.2540 Representation Theory +1405.2713 Representation Theory +1405.6797 Differential Geometry +1406.2030 Geometric Topology +1406.7639 Optimization and Control +1408.0640 Quantitative Methods +1408.1866 Group Theory +1409.4882 Metric Geometry +1409.7588 +1410.3022 Computational Geometry +1410.6071 Optimization and Control +1411.2482 Statistics Theory +1411.4065 Mesoscale and Nanoscale Physics +1412.4564 Computer Vision and Pattern Recognition +1412.6455 Computer Science and Game Theory +1412.6871 Analysis of PDEs +1412.7437 +1501.05226 Classical Analysis and ODEs +1502.04455 Neurons and Cognition +1502.05573 Operator Algebras +1502.05618 Combinatorics +1502.05966 Operator Algebras +1503.02991 Classical Analysis and ODEs +1503.04622 +1503.09152 Representation Theory +1505.04153 Materials Science +1505.04851 Commutative Algebra +1505.05124 Information Theory +1505.05617 Instrumentation and Methods for Astrophysics +1505.06793 Quantum Gases +1505.07005 Phenomenology +1506.02187 Theory +1506.02533 Analysis of PDEs +1506.03362 Functional Analysis +1506.03535 Differential Geometry +1506.05555 Computation +1506.06967 Algebraic Topology +1507.02999 Information Theory +1507.05249 Neurons and Cognition +1507.05699 Computer Vision and Pattern Recognition +1507.06616 Data Structures and Algorithms +1508.03949 Probability +1508.04051 Analysis of PDEs +1508.04143 Astrophysics of Galaxies +1508.05774 Information Theory +1508.07899 +1509.00239 Cryptography and Security +1509.02878 +1509.03593 Mesoscale and Nanoscale Physics +1509.04789 Classical Analysis and ODEs +1509.05486 Information Theory +1509.07699 Analysis of PDEs +1510.01509 Combinatorics +1510.02315 Analysis of PDEs +1510.06366 Algebraic Topology +1510.07187 +1510.07207 Analysis of PDEs +1510.07277 Algebraic Geometry +1510.08152 Strongly Correlated Electrons +1510.08290 Analysis of PDEs +1510.08432 +1510.09072 Methodology +1511.05026 Quantum Gases +1511.05163 Phenomenology +1511.08391 Differential Geometry +1512.02238 Phenomenology +1512.04165 Analysis of PDEs +1512.05158 Plasma Physics +1512.05632 Probability +1512.07061 Atomic Physics +1601.00462 Instrumentation and Methods for Astrophysics +1601.00584 Logic in Computer Science +1601.02895 +1601.04110 Cell Behavior +1601.04721 +1601.06598 Phenomenology +1601.07755 Mesoscale and Nanoscale Physics +1601.08192 Theory +1601.08199 Combinatorics +1602.00262 Mesoscale and Nanoscale Physics +1602.02481 Computer Vision and Pattern Recognition +1602.02641 Mesoscale and Nanoscale Physics +1602.03140 Number Theory +1602.03573 Robotics +1602.04251 Strongly Correlated Electrons +1602.04850 Statistics Theory +1602.05928 Logic in Computer Science +1602.08936 Superconductivity +1603.00155 Mesoscale and Nanoscale Physics +1603.00658 Logic in Computer Science +1603.00931 Materials Science +1603.02585 Rings and Algebras +1603.02985 +1603.03150 +1603.04389 Information Theory +1603.04491 Phenomenology +1603.05980 Superconductivity +1603.06224 Earth and Planetary Astrophysics +1603.06883 Statistical Mechanics +1603.07966 Chemical Physics +1603.08745 Phenomenology +1603.09272 Computation +1604.00674 Theory +1604.01187 Logic in Computer Science +1604.01888 Theory +1604.02418 Probability +1604.03257 Optimization and Control +1604.04019 Strongly Correlated Electrons +1604.04689 Computational Geometry +1604.05574 Statistical Mechanics +1604.05988 Algebraic Topology +1604.07576 Optimization and Control +1604.08458 Accelerator Physics +1605.00019 Information Theory +1605.00020 Information Theory +1605.00243 Optics +1605.00350 Biological Physics +1605.00764 +1605.00912 Information Theory +1605.00961 Computer Vision and Pattern Recognition +1605.00965 Differential Geometry +1605.00971 Distributed, Parallel, and Cluster Computing +1605.00972 Computer Vision and Pattern Recognition +1605.00982 Distributed, Parallel, and Cluster Computing +1605.00983 Distributed, Parallel, and Cluster Computing +1605.01045 Functional Analysis +1605.01208 Numerical Analysis +1605.01366 Biological Physics +1605.01410 Algebraic Geometry +1605.01421 Populations and Evolution +1605.01424 Information Theory +1605.01425 Complex Variables +1605.01426 +1605.01429 Databases +1605.01430 Differential Geometry +1605.01432 Combinatorics +1605.01433 Accelerator Physics +1605.01434 Information Theory +1605.01437 Earth and Planetary Astrophysics +1605.01438 Methodology +1605.01440 Statistics Theory +1605.01441 Neurons and Cognition +1605.01450 Optimization and Control +1605.01451 Networking and Internet Architecture +1605.01452 Atmospheric and Oceanic Physics +1605.01455 Combinatorics +1605.01460 Fluid Dynamics +1605.01462 Solar and Stellar Astrophysics +1605.01464 Analysis of PDEs +1605.01465 Analysis of PDEs +1605.01469 Combinatorics +1605.01470 Classical Analysis and ODEs +1605.01478 Computation and Language +1605.01480 Programming Languages +1605.01481 Number Theory +1605.01482 Probability +1605.01483 Discrete Mathematics +1605.01484 Analysis of PDEs +1605.01485 Methodology +1605.01486 Optimization and Control +1605.01490 Analysis of PDEs +1605.01491 Social and Information Networks +1605.01494 Analysis of PDEs +1605.01496 Computational Physics +1605.01498 Instrumentation and Methods for Astrophysics +1605.01501 Information Theory +1605.01502 Experiment +1605.01505 Discrete Mathematics +1605.01511 Logic in Computer Science +1605.01513 Classical Analysis and ODEs +1605.01514 Neural and Evolutionary Computing +1605.01515 Phenomenology +1605.01517 +1605.01519 Computational Complexity +1605.01521 Optimization and Control +1605.01527 Fluid Dynamics +1605.01530 Formal Languages and Automata Theory +1605.01533 Cosmology and Nongalactic Astrophysics +1605.01534 Artificial Intelligence +1605.01535 Superconductivity +1605.01536 Cosmology and Nongalactic Astrophysics +1605.01540 Materials Science +1605.01542 Optics +1605.01543 Functional Analysis +1605.01544 +1605.01546 Statistical Mechanics +1605.01554 Analysis of PDEs +1605.01555 Category Theory +1605.01557 Information Theory +1605.01558 Probability +1605.01560 Representation Theory +1605.01565 Instrumentation and Detectors +1605.01566 Metric Geometry +1605.01568 Soft Condensed Matter +1605.01569 Learning +1605.01570 Materials Science +1605.01571 Chaotic Dynamics +1605.01573 Machine Learning +1605.01574 Materials Science +1605.01575 Number Theory +1605.01576 Computer Vision and Pattern Recognition +1605.01577 Solar and Stellar Astrophysics +1605.01578 Combinatorics +1605.01580 Computers and Society +1605.01583 Computational Engineering, Finance, and Science +1605.01585 Group Theory +1605.01586 Logic +1605.01593 Materials Science +1605.01596 Artificial Intelligence +1605.01597 +1605.01599 Quantum Algebra +1605.01602 Computers and Society +1605.01606 Optimization and Control +1605.01608 Optimization and Control +1605.01613 Materials Science +1605.01616 Accelerator Physics +1605.01617 Analysis of PDEs +1605.01619 Instrumentation and Methods for Astrophysics +1605.01622 Logic in Computer Science +1605.01623 Learning +1605.01626 Experiment +1605.01629 Phenomenology +1605.01630 Phenomenology +1605.01635 Computation and Language +1605.01641 Information Theory +1605.01643 Machine Learning +1605.01647 Phenomenology +1605.01652 Artificial Intelligence +1605.01655 Computation and Language +1605.01656 Machine Learning +1605.01658 Combinatorics +1605.01659 +1605.01661 Neurons and Cognition +1605.01663 Software Engineering +1605.01665 High Energy Astrophysical Phenomena +1605.01666 Optimization and Control +1605.01671 Fluid Dynamics +1605.01675 Functional Analysis +1605.01679 Computer Vision and Pattern Recognition +1605.01681 Artificial Intelligence +1605.01685 Combinatorics +1605.01686 Logic +1605.01687 Discrete Mathematics +1605.01689 Strongly Correlated Electrons +1605.01692 Instrumentation and Detectors +1605.01696 Information Theory +1605.01701 Distributed, Parallel, and Cluster Computing +1605.01703 Learning +1605.01708 Combinatorics +1605.01714 +1605.01720 Strongly Correlated Electrons +cond-mat/0611715 Disordered Systems and Neural Networks +0912.1512 Representation Theory +1010.5737 Optics +1110.1614 Logic in Computer Science +1111.4662 Probability +1206.1555 +1206.6789 Probability +1208.5872 Probability +1210.3039 Optimization and Control +1211.0174 Computation +1302.1494 Algebraic Topology +1304.3623 Physics and Society +1306.3403 Group Theory +1307.3718 Numerical Analysis +1308.6137 Geometric Topology +1309.3210 Data Structures and Algorithms +1310.3487 Networking and Internet Architecture +1310.5507 Classical Analysis and ODEs +1312.0933 Complex Variables +1401.0869 Optimization and Control +1401.2630 Materials Science +1402.0036 Analysis of PDEs +1402.0465 Quantum Gases +1402.0490 Symplectic Geometry +1403.1332 Rings and Algebras +1404.5443 Machine Learning +1405.3980 Information Theory +1405.6276 Group Theory +1405.6303 +1406.0712 Superconductivity +1406.3555 Theory +1407.0752 Geometric Topology +1407.7304 Representation Theory +1407.8360 Phenomenology +1407.8498 Combinatorics +1408.0018 Differential Geometry +1408.1858 K-Theory and Homology +1408.3142 History and Philosophy of Physics +1408.3427 Dynamical Systems +1409.1670 Commutative Algebra +1409.6106 Representation Theory +1410.4753 Dynamical Systems +1410.8046 +1410.8817 +1411.1345 Fluid Dynamics +1411.2158 Machine Learning +1411.2940 Numerical Analysis +1411.6207 Differential Geometry +1412.3708 Computer Vision and Pattern Recognition +1412.4139 Numerical Analysis +1412.8690 Learning +1501.00190 Probability +1501.03579 Probability +1501.05077 +1501.06511 General Mathematics +1501.07221 Fluid Dynamics +1502.01241 Neurons and Cognition +1502.02279 Algebraic Topology +1502.03391 Machine Learning +1502.05666 Optimization and Control +1502.07335 Probability +1502.07588 Differential Geometry +1503.02792 Combinatorics +1503.02819 Phenomenology +1503.03744 Physics and Society +1503.06115 Cryptography and Security +1504.00771 Geometric Topology +1504.03232 Economics +1504.03408 +1504.06013 Rings and Algebras +1505.02203 Differential Geometry +1505.02415 Complex Variables +1505.05477 Dynamical Systems +1505.07197 Analysis of PDEs +1505.07906 Operator Algebras +1506.00868 Combinatorics +1506.02341 Analysis of PDEs +1506.03163 Learning +1506.06184 Representation Theory +1506.07734 Dynamical Systems +1506.07749 Mathematical Software +1506.08152 Differential Geometry +1507.01739 Phenomenology +1507.01888 Mathematical Software +1507.02333 Solar and Stellar Astrophysics +1507.03452 Group Theory +1507.03528 Cryptography and Security +1507.04708 Theory +1507.07457 Algebraic Geometry +1508.00129 Applications +1508.02952 Numerical Analysis +1508.03444 Differential Geometry +1508.03812 Artificial Intelligence +1508.04265 Distributed, Parallel, and Cluster Computing +1508.07141 Differential Geometry +1508.07716 Algebraic Geometry +1509.00045 Combinatorics +1509.01490 +1509.01836 Functional Analysis +1509.01882 +1509.02018 Functional Analysis +1509.03453 Computer Vision and Pattern Recognition +1509.03991 Numerical Analysis +1509.05910 Astrophysics of Galaxies +1509.07058 Combinatorics +1510.00653 Phenomenology +1510.01046 Probability +1510.01419 Networking and Internet Architecture +1510.01611 +1510.01984 Algebraic Topology +1510.04085 Group Theory +1510.04942 Lattice +1510.05306 +1510.05369 Algebraic Geometry +1510.05860 Information Theory +1510.05979 Dynamical Systems +1510.07076 Differential Geometry +1510.09083 Computer Vision and Pattern Recognition +1511.00572 +1511.02403 Algebraic Geometry +1511.03955 Symplectic Geometry +1511.04160 Physics and Society +1511.04529 Probability +1511.05933 Learning +1511.06382 Learning +1511.06962 +1511.07974 Optimization and Control +1511.08097 Biomolecules +1511.08610 Information Theory +1511.09169 Rings and Algebras +1511.09464 Combinatorics +1512.01155 Instrumentation and Detectors +1512.01303 High Energy Astrophysical Phenomena +1512.02008 Number Theory +1512.02363 Robotics +1512.02503 Representation Theory +1512.03397 Methodology +1512.03543 Computer Science and Game Theory +1512.04168 Combinatorics +1512.04862 Algebraic Geometry +1512.07059 Statistics Theory +1512.07391 Probability +1512.07446 Learning +1512.07822 Soft Condensed Matter +1512.08026 Operator Algebras +1512.08239 Theory +1512.08394 Mesoscale and Nanoscale Physics +1512.08899 Artificial Intelligence +1601.01638 Spectral Theory +1601.03093 Phenomenology +1601.03186 Probability +1601.03927 Probability +1601.04219 Networking and Internet Architecture +1601.04309 Representation Theory +1601.06878 Optimization and Control +1601.07122 Information Theory +1601.07413 Differential Geometry +1602.00355 Methodology +1602.00473 Functional Analysis +1602.00512 Analysis of PDEs +1602.00683 +1602.00742 Analysis of PDEs +1602.01305 Algebraic Geometry +1602.01908 Probability +1602.02269 Functional Analysis +1602.03331 Earth and Planetary Astrophysics +1602.03938 Computation +1602.04398 Machine Learning +1602.04830 +1602.05433 Superconductivity +1602.05779 Mesoscale and Nanoscale Physics +1602.05901 Computational Engineering, Finance, and Science +1602.06322 Probability +1602.06578 Representation Theory +1602.07916 Number Theory +1602.07958 Optics +1602.08778 Logic in Computer Science +1602.09053 Applications +1603.00336 Numerical Analysis +1603.00954 Learning +1603.01467 Number Theory +1603.01655 +1603.02480 Optimization and Control +1603.03315 Data Structures and Algorithms +1603.03388 Analysis of PDEs +1603.04023 Quantitative Methods +1603.04937 Complex Variables +1603.05121 General Mathematics +1603.05722 Numerical Analysis +1603.08243 Dynamical Systems +1603.08576 Commutative Algebra +1603.08599 Materials Science +1603.08778 Analysis of PDEs +1604.00113 Algebraic Topology +1604.00540 Methodology +1604.00638 Classical Analysis and ODEs +1604.01081 Numerical Analysis +1604.01627 Computer Science and Game Theory +1604.03799 Logic in Computer Science +1604.04478 Methodology +1604.04616 +1604.05404 Pricing of Securities +1604.05406 Pricing of Securities +1604.05432 Solar and Stellar Astrophysics +1604.05616 Analysis of PDEs +1604.05800 Computation and Language +1604.06250 Mesoscale and Nanoscale Physics +1604.08041 Hardware Architecture +1604.08386 Geometric Topology +1604.08672 Computation and Language +1605.03483 Computer Vision and Pattern Recognition +1605.03613 Data Structures and Algorithms +1605.03798 Materials Science +1605.04282 General Physics +1605.04547 Soft Condensed Matter +1605.04601 +1605.05038 Analysis of PDEs +1605.05289 Phenomenology +1605.05413 Phenomenology +1605.05584 Number Theory +1605.05757 Computer Vision and Pattern Recognition +1605.05774 +1605.06412 Geometric Topology +1605.06665 Probability +1605.06734 Classical Analysis and ODEs +1605.06995 Learning +1605.07148 Learning +1605.07166 Mesoscale and Nanoscale Physics +1605.07214 Mesoscale and Nanoscale Physics +1605.07736 Learning +1605.07750 Instrumentation and Detectors +1605.08028 Phenomenology +1605.08677 +1605.09251 +1605.09345 General Topology +1605.09610 Superconductivity +1605.09744 Analysis of PDEs +1606.00461 Number Theory +1606.00487 Computer Vision and Pattern Recognition +1606.00640 Number Theory +1606.01111 Systems and Control +1606.01328 Combinatorics +1606.01695 +1606.01979 Networking and Internet Architecture +1606.02664 +1606.02890 Phenomenology +1606.02973 Probability +1606.03136 Functional Analysis +1606.03168 Optimization and Control +1606.03558 Computer Vision and Pattern Recognition +1606.03577 Experiment +1606.03809 Programming Languages +1606.03873 +1606.04108 Theory +1606.04131 Phenomenology +1606.04443 Machine Learning +1606.04888 +1606.05285 Robotics +1606.05484 Strongly Correlated Electrons +1606.05796 Strongly Correlated Electrons +1606.05846 Theory +1606.05888 History and Philosophy of Physics +1606.08463 Phenomenology +1606.08758 +1606.08850 Astrophysics of Galaxies +1607.00751 Logic +1607.01949 Phenomenology +1607.02330 Information Theory +1607.02606 Cosmology and Nongalactic Astrophysics +1607.02729 +1607.02937 Computer Vision and Pattern Recognition +1607.03389 +1607.03462 Astrophysics of Galaxies +1607.04073 +1607.04350 +1607.04499 Numerical Analysis +1607.04800 Robotics +1607.05290 High Energy Astrophysical Phenomena +1607.05789 Solar and Stellar Astrophysics +1607.05834 Mesoscale and Nanoscale Physics +1607.06087 Strongly Correlated Electrons +1607.06278 +1607.07224 Theory +1607.07455 Solar and Stellar Astrophysics +1607.07694 Instrumentation and Detectors +1607.07976 Plasma Physics +1607.08271 Networking and Internet Architecture +1607.08554 Methodology +1607.08673 Social and Information Networks +1607.08800 Mesoscale and Nanoscale Physics +1608.00404 Materials Science +1608.00506 Mesoscale and Nanoscale Physics +1608.00808 Soft Condensed Matter +1608.00897 Representation Theory +1608.01157 Superconductivity +1608.02440 Probability +1608.03007 Materials Science +1608.03727 Metric Geometry +1608.03910 Solar and Stellar Astrophysics +1608.04597 Statistical Mechanics +1608.05162 Representation Theory +1608.05335 Differential Geometry +1608.05524 Category Theory +1608.06174 Methodology +1608.06393 Phenomenology +1608.06799 Geometric Topology +1608.07704 Algebraic Topology +1608.07781 Distributed, Parallel, and Cluster Computing +1608.08156 Algebraic Geometry +1608.08213 Algebraic Geometry +1608.08761 Learning +1608.08794 Phenomenology +1609.00856 Information Theory +1609.01208 Theory +1609.02458 Chemical Physics +1609.02958 Phenomenology +1609.03143 Algebraic Topology +1609.03168 Dynamical Systems +1609.03694 Number Theory +1609.03955 Phenomenology +1609.04337 Computer Vision and Pattern Recognition +1609.04458 Number Theory +1609.04658 Chemical Physics +1609.04984 Superconductivity +1609.05090 General Physics +1609.06134 Phenomenology +1609.07053 Computation and Language +1609.07264 Other Condensed Matter +1609.07410 Machine Learning +1609.07486 Materials Science +1609.07685 Optimization and Control +1609.08490 Instrumentation and Detectors +1610.00416 High Energy Astrophysical Phenomena +1610.00479 Computation and Language +1610.01199 Computational Complexity +1610.01530 Mesoscale and Nanoscale Physics +1610.02098 Materials Science +1610.02325 Algebraic Geometry +1610.02439 Number Theory +1610.02504 Combinatorics +1610.03408 Methodology +1610.03908 Combinatorics +1610.04418 Geometric Topology +1610.04834 Computer Vision and Pattern Recognition +1610.04852 Logic +1610.05114 Programming Languages +1610.05722 Analysis of PDEs +1610.05921 Number Theory +1610.06061 Physics and Society +1610.06171 Soft Condensed Matter +1610.06280 +1610.06299 Phenomenology +1610.06448 Number Theory +1610.06512 +1610.06571 Phenomenology +1610.06984 Logic in Computer Science +1610.07011 Lattice +1610.07016 Complex Variables +1610.07054 Dynamical Systems +1610.07056 Solar and Stellar Astrophysics +1610.07100 Data Structures and Algorithms +1610.07310 Computation +1610.07349 Differential Geometry +1610.07368 Graphics +1610.07431 Probability +1610.07466 Phenomenology +1610.07523 Astrophysics of Galaxies +1610.07781 Representation Theory +1610.07885 Space Physics +1610.07955 High Energy Astrophysical Phenomena +1610.08509 Experiment +1610.08566 Neurons and Cognition +1610.08705 Hardware Architecture +1610.08707 +1610.08775 Experiment +1610.08793 +1610.08831 Numerical Analysis +1610.08975 Strongly Correlated Electrons +1610.09014 Instrumentation and Methods for Astrophysics +1610.09082 High Energy Astrophysical Phenomena +1610.09299 +1610.09305 Logic +1610.09307 Learning +1610.09352 Fluid Dynamics +1610.09367 Mesoscale and Nanoscale Physics +1610.09369 Learning +1610.09370 Numerical Analysis +1610.09371 History and Overview +1610.09372 Artificial Intelligence +1610.09378 Theory +1610.09379 High Energy Astrophysical Phenomena +1610.09381 High Energy Astrophysical Phenomena +1610.09382 High Energy Astrophysical Phenomena +1610.09384 Mathematical Finance +1610.09386 Computer Vision and Pattern Recognition +1610.09387 Probability +1610.09389 Astrophysics of Galaxies +1610.09390 Earth and Planetary Astrophysics +1610.09392 Phenomenology +1610.09395 Instrumentation and Detectors +1610.09400 Computation +1610.09404 General Finance +1610.09405 Software Engineering +1610.09406 Subcellular Processes +1610.09407 Information Theory +1610.09409 Artificial Intelligence +1610.09411 Social and Information Networks +1610.09414 Computer Vision and Pattern Recognition +1610.09415 Pattern Formation and Solitons +1610.09417 Cryptography and Security +1610.09418 Dynamical Systems +1610.09419 Differential Geometry +1610.09420 Machine Learning +1610.09421 Probability +1610.09422 Dynamical Systems +1610.09425 Atomic Physics +1610.09426 Statistical Mechanics +1610.09427 Quantitative Methods +1610.09430 Phenomenology +1610.09431 Neurons and Cognition +1610.09433 Statistics Theory +1610.09434 +1610.09436 Optics +1610.09437 Information Theory +1610.09438 Probability +1610.09440 Earth and Planetary Astrophysics +1610.09441 Superconductivity +1610.09443 Quantum Algebra +1610.09444 Statistical Mechanics +1610.09445 Differential Geometry +1610.09449 Networking and Internet Architecture +1610.09451 Learning +1610.09453 Information Theory +1610.09454 Optics +1610.09455 Computer Vision and Pattern Recognition +1610.09456 Optimization and Control +1610.09460 Neural and Evolutionary Computing +1610.09462 Computers and Society +1610.09463 Information Theory +1610.09464 Analysis of PDEs +1610.09466 Dynamical Systems +1610.09467 Number Theory +1610.09469 Group Theory +1610.09470 Combinatorics +1610.09471 Fluid Dynamics +1610.09472 Probability +1610.09473 Emerging Technologies +1610.09474 Differential Geometry +1610.09475 Differential Geometry +1610.09477 +1610.09480 Computers and Society +1610.09482 Systems and Control +1610.09483 Instrumentation and Detectors +1610.09485 Applications +1610.09486 Data Structures and Algorithms +1610.09488 Dynamical Systems +1610.09489 Combinatorics +1610.09490 Machine Learning +1610.09491 Learning +1610.09492 +1610.09493 Computer Vision and Pattern Recognition +1610.09495 Classical Analysis and ODEs +1610.09497 Analysis of PDEs +1610.09498 Computer Vision and Pattern Recognition +1610.09500 Databases +1610.09501 Superconductivity +1610.09502 Statistics Theory +1610.09503 Cryptography and Security +1610.09504 Dynamical Systems +1610.09506 Databases +1610.09507 Exactly Solvable and Integrable Systems +1610.09511 Computers and Society +1610.09513 Learning +1610.09514 Human-Computer Interaction +1610.09515 Mesoscale and Nanoscale Physics +1610.09516 Social and Information Networks +1610.09517 Differential Geometry +1610.09519 Statistical Finance +1610.09522 Accelerator Physics +1610.09523 Category Theory +1610.09524 Atomic and Molecular Clusters +1610.09525 +1610.09530 Information Theory +1610.09532 Chemical Physics +1610.09537 Theory +1610.09538 Probability +1610.09539 Instrumentation and Detectors +1610.09540 Information Theory +1610.09542 Risk Management +1610.09543 Programming Languages +1610.09545 Plasma Physics +1610.09546 Information Theory +1610.09547 Differential Geometry +1610.09548 Algebraic Geometry +1610.09550 +1610.09551 Experiment +1610.09552 +1610.09553 Analysis of PDEs +1610.09554 Materials Science +1610.09556 +1610.09562 Mesoscale and Nanoscale Physics +1610.09564 Complex Variables +1610.09565 Computation and Language +1610.09568 +1610.09569 Probability +1610.09570 Optics +1610.09571 Differential Geometry +1610.09573 +1610.09576 Combinatorics +1610.09577 Differential Geometry +1610.09578 Fluid Dynamics +1610.09579 Dynamical Systems +1610.09580 Systems and Control +1610.09582 Computer Vision and Pattern Recognition +1610.09584 Differential Geometry +1610.09586 Analysis of PDEs +1610.09587 Combinatorics +1610.09588 Number Theory +1610.09589 Algebraic Geometry +1610.09590 Computer Vision and Pattern Recognition +1610.09593 Optics +1610.09594 Strongly Correlated Electrons +1610.09595 Analysis of PDEs +1610.09599 Plasma Physics +1610.09601 +1610.09603 Hardware Architecture +1610.09604 Hardware Architecture +1610.09605 Phenomenology +1610.09606 Systems and Control +1610.09608 Learning +1610.09609 Computer Vision and Pattern Recognition +1610.09610 Computers and Society +1610.09611 Numerical Analysis +1610.09612 Algebraic Topology +1610.09613 Optics +1610.09615 Computer Vision and Pattern Recognition +1610.09616 Probability +1610.09617 Materials Science +1610.09618 Phenomenology +1610.09621 +1610.09622 Computational Finance +1610.09623 Data Structures and Algorithms +1610.09624 Optics +1610.09625 Neurons and Cognition +1610.09626 Information Theory +1610.09627 Number Theory +1610.09632 Differential Geometry +1610.09633 High Energy Astrophysical Phenomena +1610.09635 Software Engineering +1610.09637 Molecular Networks +1610.09639 Learning +1610.09640 Category Theory +1610.09641 Machine Learning +1610.09644 Differential Geometry +1610.09645 Computer Vision and Pattern Recognition +1610.09646 +1610.09649 Representation Theory +1610.09651 Optimization and Control +1610.09652 Computer Vision and Pattern Recognition +1610.09655 +1610.09656 Combinatorics +1610.09657 Quantum Algebra +1610.09658 Geometric Topology +1610.09659 Machine Learning +1610.09660 Combinatorics +1610.09664 Geometric Topology +1610.09665 Group Theory +1610.09666 Combinatorics +1610.09668 Lattice +1610.09669 +1610.09672 Geometric Topology +1610.09673 +1610.09674 Number Theory +1610.09676 +1610.09677 Phenomenology +1610.09678 Algebraic Topology +1610.09682 Differential Geometry +1610.09683 Information Theory +1610.09686 Materials Science +1610.09687 Probability +1610.09688 Cosmology and Nongalactic Astrophysics +1610.09690 Number Theory +1610.09692 Theory +1610.09693 Theory +1610.09694 High Energy Astrophysical Phenomena +1610.09696 Biomolecules +1610.09698 Methodology +1610.09700 +1610.09702 +1610.09703 Systems and Control +1610.09704 Computation and Language +1610.09705 Soft Condensed Matter +1610.09708 Lattice +1610.09709 Solar and Stellar Astrophysics +1610.09711 Number Theory +1610.09712 Computer Vision and Pattern Recognition +1610.09714 Pricing of Securities +1610.09715 Differential Geometry +1610.09716 Learning +1610.09718 Symplectic Geometry +1610.09721 Group Theory +1610.09722 Computation and Language +1610.09723 Accelerator Physics +1610.09724 Computation +1610.09725 Group Theory +1610.09726 Learning +1610.09728 Optimization and Control +1610.09730 Learning +1610.09733 Biological Physics +1610.09737 Combinatorics +1610.09739 Numerical Analysis +1610.09740 Rings and Algebras +1610.09742 Rings and Algebras +1610.09743 Human-Computer Interaction +1610.09745 Probability +1610.09747 Analysis of PDEs +1610.09750 Applications +1610.09752 +1610.09753 Differential Geometry +1610.09754 Number Theory +1610.09757 Classical Analysis and ODEs +1610.09759 +1610.09761 Hardware Architecture +1610.09764 Symplectic Geometry +1610.09765 Analysis of PDEs +1610.09766 Computer Vision and Pattern Recognition +1610.09767 Information Theory +1610.09768 Materials Science +1610.09769 Social and Information Networks +1610.09770 Combinatorics +1610.09771 Combinatorics +1610.09772 +1610.09773 Lattice +1610.09774 Combinatorics +1610.09776 +1610.09777 Quantum Gases +1610.09778 Learning +1610.09780 Methodology +1610.09782 Information Theory +1610.09783 Combinatorics +1610.09785 Information Theory +1610.09786 Social and Information Networks +1610.09788 Methodology +1610.09789 Analysis of PDEs +1610.09790 Superconductivity +1610.09792 Theory +1610.09793 Theory +1610.09794 Differential Geometry +1610.09795 Formal Languages and Automata Theory +1610.09796 Analysis of PDEs +1610.09799 Computation and Language +1610.09800 Data Structures and Algorithms +1610.09804 Materials Science +1610.09806 Combinatorics +1610.09807 Atomic Physics +1610.09808 Differential Geometry +1610.09809 Algebraic Geometry +1610.09810 Solar and Stellar Astrophysics +1610.09812 Statistical Finance +1610.09813 Differential Geometry +1610.09815 Other Quantitative Biology +1610.09816 Computer Vision and Pattern Recognition +1610.09821 Number Theory +1610.09822 Number Theory +1610.09825 Strongly Correlated Electrons +1610.09826 Instrumentation and Methods for Astrophysics +1610.09827 Analysis of PDEs +1610.09828 Cosmology and Nongalactic Astrophysics +1610.09829 Group Theory +1610.09830 Number Theory +1610.09831 Mesoscale and Nanoscale Physics +1610.09832 Algebraic Geometry +1610.09834 Computational Complexity +1610.09835 Phenomenology +1610.09836 Differential Geometry +1610.09838 Machine Learning +1610.09841 Solar and Stellar Astrophysics +1610.09842 Materials Science +1610.09843 Astrophysics of Galaxies +1610.09846 +1610.09847 Combinatorics +1610.09850 Functional Analysis +1610.09853 Phenomenology +1610.09857 Materials Science +1610.09859 Dynamical Systems +1610.09860 Solar and Stellar Astrophysics +1610.09861 Atomic Physics +1610.09863 Probability +1610.09865 Numerical Analysis +1610.09866 Optimization and Control +1610.09867 Analysis of PDEs +1610.09871 Differential Geometry +1610.09872 Fluid Dynamics +1610.09874 Numerical Analysis +1610.09875 Mathematical Finance +1610.09876 Mesoscale and Nanoscale Physics +1610.09877 Information Theory +1610.09878 Applications +1610.09879 Functional Analysis +1610.09880 Differential Geometry +1610.09882 Artificial Intelligence +1610.09883 Analysis of PDEs +1610.09884 Disordered Systems and Neural Networks +1610.09885 Cosmology and Nongalactic Astrophysics +1610.09886 +1610.09888 Combinatorics +1610.09891 +1610.09892 +1610.09893 Computation and Language +1610.09894 Computers and Society +1610.09897 Solar and Stellar Astrophysics +1610.09899 Mesoscale and Nanoscale Physics +1610.09901 Geometric Topology +1610.09903 Learning +1610.09904 Trading and Market Microstructure +1610.09905 +1610.09906 Computational Engineering, Finance, and Science +1610.09907 K-Theory and Homology +1610.09908 Computer Vision and Pattern Recognition +1610.09909 Analysis of PDEs +1610.09911 Solar and Stellar Astrophysics +1610.09912 +1610.09914 Computation and Language +1610.09915 Machine Learning +1610.09918 Numerical Analysis +1610.09919 Other Condensed Matter +1610.09920 Number Theory +1610.09921 Physics and Society +1610.09922 +1610.09923 History and Overview +1610.09925 Analysis of PDEs +1610.09926 Quantitative Methods +1610.09929 Information Theory +1610.09931 Symplectic Geometry +1610.09933 Physics and Society +1610.09934 Numerical Analysis +1610.09937 Populations and Evolution +1610.09940 Phenomenology +1610.09943 Theory +1610.09950 Social and Information Networks +1610.09951 Materials Science +1610.09955 +1610.09957 Statistics Theory +1610.09958 Digital Libraries +1610.09960 +1610.09963 Mesoscale and Nanoscale Physics +1610.09964 Artificial Intelligence +1610.09967 +1610.09968 Statistical Mechanics +1610.09970 +1610.09971 Phenomenology +1610.09973 Phenomenology +1610.09974 Computers and Society +1610.09975 Computation and Language +1610.09976 Computer Science and Game Theory +1610.09977 Phenomenology +1610.09978 Experiment +1610.09979 Lattice +1610.09981 +1610.09982 Information Retrieval +1610.09983 Theory +1610.09984 Data Structures and Algorithms +1610.09988 Graphics +1610.09990 Neurons and Cognition +1610.09992 Graphics +1610.09993 Optimization and Control +1610.09994 Phenomenology +1610.09995 Computation and Language +1610.09997 Dynamical Systems +1610.09999 +1610.10001 Information Retrieval +1610.10002 Combinatorics +1610.10004 Lattice +1610.10006 Instrumentation and Detectors +1610.10007 Mesoscale and Nanoscale Physics +1610.10008 Networking and Internet Architecture +1610.10009 Classical Analysis and ODEs +1610.10010 Dynamical Systems +1610.10011 Mesoscale and Nanoscale Physics +1610.10014 Optimization and Control +1610.10017 Number Theory +1610.10018 Probability +1610.10019 Geometric Topology +1610.10021 Quantitative Methods +1610.10022 Optimization and Control +1610.10023 Commutative Algebra +1610.10026 Soft Condensed Matter +1610.10027 Materials Science +1610.10028 Statistics Theory +1610.10029 Portfolio Management +1610.10030 Dynamical Systems +1610.10031 Social and Information Networks +1610.10032 Geometric Topology +1610.10033 Computer Vision and Pattern Recognition +1610.10036 High Energy Astrophysical Phenomena +1610.10040 Methodology +1610.10041 Computers and Society +1610.10043 K-Theory and Homology +1610.10044 K-Theory and Homology +1610.10046 Phenomenology +1610.10048 Computer Vision and Pattern Recognition +1610.10054 Strongly Correlated Electrons +1610.10055 +1610.10056 Human-Computer Interaction +1610.10057 Computational Engineering, Finance, and Science +1610.10058 Logic +1610.10060 Machine Learning +1610.10063 Materials Science +1610.10064 Machine Learning +1610.10065 +1610.10068 Lattice +1610.10070 Lattice +1610.10073 Analysis of PDEs +1610.10077 Commutative Algebra +1610.10078 Mathematical Finance +1610.10079 Software Engineering +1610.10080 Probability +1610.10082 Fluid Dynamics +1610.10085 Algebraic Topology +1610.10086 Soft Condensed Matter +1610.10087 Neural and Evolutionary Computing +1610.10090 Fluid Dynamics +1610.10091 Strongly Correlated Electrons +1610.10095 Astrophysics of Galaxies +1610.10096 Lattice +1610.10097 Lattice +hep-th/0307242 Theory +math/9704231 Probability +math/9804158 Probability +math/9807184 Probability +quant-ph/0701118 +0801.0395 Combinatorics +0803.2331 Numerical Analysis +0804.2466 +0807.3062 Geometric Topology +0808.1349 +0808.2790 +0903.0699 Geometric Topology +0903.5134 Solar and Stellar Astrophysics +0910.3750 High Energy Astrophysical Phenomena +0911.4495 Instrumentation and Methods for Astrophysics +0912.0730 Cosmology and Nongalactic Astrophysics +1010.5280 Dynamical Systems +1011.1537 High Energy Astrophysical Phenomena +1012.2398 Plasma Physics +1107.4000 Instrumentation and Methods for Astrophysics +1110.4252 Algebraic Topology +1110.4527 Algebraic Topology +1110.5153 Statistical Mechanics +1111.2174 Geometric Topology +1111.2550 Algebraic Geometry +1202.0732 Theory +1207.0207 +1209.1557 Machine Learning +1210.5301 Algebraic Geometry +1211.1240 Fluid Dynamics +1304.4913 Number Theory +1305.0707 +1305.1180 +1305.3682 Differential Geometry +1305.4638 Differential Geometry +1305.6249 Performance +1307.5303 +1309.0260 Statistical Finance +1309.3199 Mesoscale and Nanoscale Physics +1309.5416 High Energy Astrophysical Phenomena +1310.1078 Statistical Mechanics +1310.5606 Analysis of PDEs +1311.1051 Algebraic Topology +1311.1149 Solar and Stellar Astrophysics +1311.4045 Discrete Mathematics +1311.4523 Phenomenology +1312.4829 High Energy Astrophysical Phenomena +1401.5140 Differential Geometry +1401.6467 Materials Science +1402.1023 Phenomenology +1402.4665 Superconductivity +1403.0675 +1403.4908 Atmospheric and Oceanic Physics +1403.6313 Analysis of PDEs +1405.0031 +1405.2248 +1406.1964 +1407.1346 Mesoscale and Nanoscale Physics +1407.3907 Theory +1407.8414 Cosmology and Nongalactic Astrophysics +1409.1234 Strongly Correlated Electrons +1409.3341 +1409.4522 +1409.6433 Spectral Theory +1409.8566 Combinatorics +1410.2230 Probability +1410.3116 Atmospheric and Oceanic Physics +1410.3978 Networking and Internet Architecture +1411.1018 Functional Analysis +1411.2130 Analysis of PDEs +1411.3617 Statistical Mechanics +1411.3909 Dynamical Systems +1411.4198 Materials Science +1411.4295 Solar and Stellar Astrophysics +1412.3364 Cosmology and Nongalactic Astrophysics +1412.3375 Superconductivity +1412.3508 Probability +1412.3518 Artificial Intelligence +1412.3968 Atomic Physics +1412.4230 Statistical Mechanics +1412.4958 Information Theory +1412.5700 +1412.7890 Information Theory +1412.7921 +1412.8385 +1412.8577 +1501.00250 Strongly Correlated Electrons +1501.00738 Physics and Society +1501.00887 Differential Geometry +1501.01670 Dynamical Systems +1501.02520 +1501.02678 Cosmology and Nongalactic Astrophysics +1501.03253 Fluid Dynamics +1501.03414 Differential Geometry +1501.03699 Phenomenology +1501.05090 Materials Science +1501.05191 Fluid Dynamics +1501.05403 Optics +1501.05404 Representation Theory +1501.06139 Soft Condensed Matter +1501.06212 Probability +1501.06336 Superconductivity +1501.06337 Phenomenology +1501.06848 Chaotic Dynamics +1501.06911 +1501.07780 Analysis of PDEs +1502.00244 Physics and Society +1502.00528 Physics and Society +1502.00535 Optics +1502.00538 Accelerator Physics +1502.00899 Phenomenology +1502.00964 Analysis of PDEs +1502.00984 +1502.01064 High Energy Astrophysical Phenomena +1502.01114 +1502.01225 +1502.01451 Experiment +1502.01559 +1502.01867 Differential Geometry +1502.02263 Phenomenology +1502.02974 +1502.03180 Phenomenology +1502.03274 Quantum Gases +1502.03303 Analysis of PDEs +1502.03338 Physics and Society +1502.03896 Phenomenology +1502.03996 Statistical Mechanics +1502.04319 Analysis of PDEs +1502.04330 Mesoscale and Nanoscale Physics +1502.04463 +1502.04577 Materials Science +1502.04588 Data Structures and Algorithms +1502.05468 +1502.05632 Logic +1502.05842 Statistical Mechanics +1502.05846 Statistical Mechanics +1502.05875 +1502.05920 Mathematical Finance +1502.05976 Theory +1502.06082 Plasma Physics +1502.06180 Analysis of PDEs +1502.06921 Lattice +1502.07013 Analysis of PDEs +1502.07047 +1502.07196 Chemical Physics +1502.07574 Phenomenology +1503.00117 Analysis of PDEs +1503.01222 +1503.01467 High Energy Astrophysical Phenomena +1503.02058 Analysis of PDEs +1503.02132 Quantum Gases +1503.02181 +1503.02709 Disordered Systems and Neural Networks +1503.03049 Algebraic Geometry +1503.03053 Spectral Theory +1503.03304 Dynamical Systems +1503.03422 Spectral Theory +1503.03518 Phenomenology +1503.03922 Analysis of PDEs +1503.04133 +1503.04184 Phenomenology +1503.04898 Analysis of PDEs +1503.05217 Differential Geometry +1503.05233 +1503.05266 +1503.05313 Chaotic Dynamics +1503.05883 +1503.06295 Mesoscale and Nanoscale Physics +1503.06362 Statistical Mechanics +1503.06661 Dynamical Systems +1503.07019 Disordered Systems and Neural Networks +1503.07271 Strongly Correlated Electrons +1503.07277 Theory +1503.07892 Strongly Correlated Electrons +1503.08330 +1503.08484 Theory +1503.08607 Theory +1503.08903 Mesoscale and Nanoscale Physics +1503.08910 Algebraic Geometry +1503.09153 Phenomenology +1504.00177 +1504.00458 Physics and Society +1504.00548 Computation and Language +1504.00726 Dynamical Systems +1504.00817 Cell Behavior +1504.00892 Phenomenology +1504.01045 Number Theory +1504.01080 Analysis of PDEs +1504.01598 Experiment +1504.01851 Mesoscale and Nanoscale Physics +1504.02648 Computer Vision and Pattern Recognition +1504.03126 +1504.03525 Analysis of PDEs +1504.03546 Quantum Algebra +1504.03566 Theory +1504.03572 +1504.04356 Materials Science +1504.04411 Mesoscale and Nanoscale Physics +1504.04471 Lattice +1504.04488 Number Theory +1504.04732 +1504.04872 +1504.05253 Mesoscale and Nanoscale Physics +1504.05264 Phenomenology +1504.05375 Fluid Dynamics +1504.05602 Mesoscale and Nanoscale Physics +1504.05687 Theory +1504.05726 Phenomenology +1504.05978 Analysis of PDEs +1504.06038 Theory +1504.06272 Theory +1504.06395 Networking and Internet Architecture +1504.06492 +1504.06561 Combinatorics +1504.06601 Phenomenology +1504.06669 Differential Geometry +1504.07114 +1504.07293 Phenomenology +1504.07611 Theory +1504.07632 Astrophysics of Galaxies +1504.07761 Populations and Evolution +1505.00045 Methodology +1505.00442 Cosmology and Nongalactic Astrophysics +1505.01108 Soft Condensed Matter +1505.01224 Soft Condensed Matter +1505.01330 Accelerator Physics +1505.01332 Physics and Society +1505.01348 Instrumentation and Methods for Astrophysics +1505.01722 +1505.01826 Phenomenology +1505.01831 Accelerator Physics +1505.01874 Systems and Control +1505.02024 Atomic Physics +1505.02055 Strongly Correlated Electrons +1505.02079 Chemical Physics +1505.02165 Cosmology and Nongalactic Astrophysics +1505.02347 +1505.02706 +1505.02727 Optics +1505.02754 General Physics +1505.02831 Quantitative Methods +1505.02840 +1505.02885 Accelerator Physics +1505.03058 Experiment +1505.03272 Strongly Correlated Electrons +1505.03603 Phenomenology +1505.03646 Quantum Gases +1505.03739 Theory +1505.03845 Dynamical Systems +1505.03863 +1505.04044 Mesoscale and Nanoscale Physics +1505.04312 Theory +1505.04486 Materials Science +1505.04654 Analysis of PDEs +1505.04678 +1505.04955 +1505.05114 Information Theory +1505.05155 High Energy Astrophysical Phenomena +1505.05389 Dynamical Systems +1505.05569 Analysis of PDEs +1505.06260 +1505.06361 Superconductivity +1505.07098 Cosmology and Nongalactic Astrophysics +1505.07220 Atmospheric and Oceanic Physics +1505.07357 Theory +1505.07360 Statistical Mechanics +1505.07505 Materials Science +1505.07541 Methodology +1505.07982 Materials Science +1506.00054 Quantitative Methods +1506.00343 Computation +1506.00531 Phenomenology +1506.00666 Theory +1506.00676 Dynamical Systems +1506.00755 Solar and Stellar Astrophysics +1506.00987 Theory +1506.01016 Phenomenology +1506.01303 Mesoscale and Nanoscale Physics +1506.01329 +1506.01748 Analysis of PDEs +1506.01890 Theory +1506.01921 +1506.01986 Category Theory +1506.02038 Theory +1506.02088 Neurons and Cognition +1506.02339 Statistical Mechanics +1506.02606 +1506.02798 Theory +1506.02938 +1506.03097 Instrumentation and Methods for Astrophysics +1506.03129 Superconductivity +1506.03289 Physics and Society +1506.03327 Phenomenology +1506.03422 Mesoscale and Nanoscale Physics +1506.03945 Analysis of PDEs +1506.03970 Phenomenology +1506.03977 Statistical Mechanics +1506.03981 +1506.04010 Analysis of PDEs +1506.04033 Spectral Theory +1506.04166 Instrumentation and Methods for Astrophysics +1506.04197 +1506.04213 +1506.04237 Mesoscale and Nanoscale Physics +1506.04308 Materials Science +1506.04410 Theory +1506.04446 +1506.04617 Phenomenology +1506.04626 Mesoscale and Nanoscale Physics +1506.04983 Theory +1506.05023 Phenomenology +1506.05053 Mesoscale and Nanoscale Physics +1506.05147 Astrophysics of Galaxies +1506.05696 Strongly Correlated Electrons +1506.05706 Strongly Correlated Electrons +1506.06692 +1506.06698 Biological Physics +1506.06873 Quantum Gases +1506.07085 Earth and Planetary Astrophysics +1506.07088 Optics +1506.07210 Pattern Formation and Solitons +1506.07241 Soft Condensed Matter +1506.07325 Probability +1506.07371 Probability +1506.07427 Probability +1506.07432 Physics and Society +1506.07508 Theory +1506.07523 Cosmology and Nongalactic Astrophysics +1506.07526 Cosmology and Nongalactic Astrophysics +1506.07649 Analysis of PDEs +1506.08007 Phenomenology +1506.08042 +1506.08196 Astrophysics of Galaxies +1506.08358 +1506.08583 Theory +1506.08591 Operator Algebras +1506.08611 Statistical Mechanics +1506.08764 +1506.08767 Optics +1506.09086 Theory +1507.00014 Theory +1507.00107 Theory +1507.00465 Mesoscale and Nanoscale Physics +1507.00508 Phenomenology +1507.00755 Optics +1507.00869 Mesoscale and Nanoscale Physics +1507.00975 Numerical Analysis +1507.01099 Analysis of PDEs +1507.01355 Optics +1507.01457 Pattern Formation and Solitons +1507.01478 Probability +1507.01537 Statistical Mechanics +1507.01556 +1507.01651 Superconductivity +1507.01813 Analysis of PDEs +1507.01893 +1507.02070 Phenomenology +1507.02174 Theory +1507.02264 Fluid Dynamics +1507.02306 +1507.02309 Theory +1507.02644 Phenomenology +1507.02702 Adaptation and Self-Organizing Systems +1507.03001 Cosmology and Nongalactic Astrophysics +1507.03137 Programming Languages +1507.03242 +1507.03333 +1507.03370 +1507.03377 Mesoscale and Nanoscale Physics +1507.03527 Phenomenology +1507.03561 Strongly Correlated Electrons +1507.03791 Theory +1507.04052 Computational Physics +1507.04070 Dynamical Systems +1507.04182 Instrumentation and Detectors +1507.04273 Quantum Gases +1507.04286 Mesoscale and Nanoscale Physics +1507.04352 Theory +1507.04361 Theory +1507.04467 Phenomenology +1507.04676 Phenomenology +1507.04710 Geophysics +1507.04864 Materials Science +1507.05064 +1507.05072 Disordered Systems and Neural Networks +1507.05091 Mesoscale and Nanoscale Physics +1507.05139 Quantum Algebra +1507.05251 Information Theory +1507.05252 Mesoscale and Nanoscale Physics +1507.05465 Mesoscale and Nanoscale Physics +1507.05504 Mesoscale and Nanoscale Physics +1507.05565 Cosmology and Nongalactic Astrophysics +1507.05620 Theory +1507.05623 Theory +1507.05809 Phenomenology +1507.05830 High Energy Astrophysical Phenomena +1507.05838 +1507.06041 Numerical Analysis +1507.06113 Logic +1507.06207 +1507.06288 Theory +1507.06448 +1507.06591 +1507.06709 Numerical Analysis +1507.06831 +1507.07134 Systems and Control +1507.07249 Quantum Gases +1507.07379 Optics +1507.07408 Phenomenology +1507.07421 Soft Condensed Matter +1507.07491 Biological Physics +1507.07571 +1507.07650 Theory +1507.07840 +1507.07971 Analysis of PDEs +1507.08000 Strongly Correlated Electrons +1507.08047 Astrophysics of Galaxies +1507.08122 Optics +1507.08127 Materials Science +1507.08442 Soft Condensed Matter +1507.08585 Plasma Physics +1507.08639 Superconductivity +1507.08649 Phenomenology +1507.08870 Mesoscale and Nanoscale Physics +1507.08902 Earth and Planetary Astrophysics +1507.08982 Theory +1508.00016 Phenomenology +1508.00110 Theory +1508.00164 Mesoscale and Nanoscale Physics +1508.00165 Neurons and Cognition +1508.00180 Theory +1508.00251 Cosmology and Nongalactic Astrophysics +1508.00355 Differential Geometry +1508.00499 Materials Science +1508.00701 Numerical Analysis +1508.00757 Superconductivity +1508.01029 +1508.01157 Fluid Dynamics +1508.01298 Mesoscale and Nanoscale Physics +1508.01327 +1508.01374 Superconductivity +1508.01508 +1508.01659 +1508.01673 Quantum Gases +1508.02010 Applications +1508.02080 Optimization and Control +1508.02159 Fluid Dynamics +1508.02177 Social and Information Networks +1508.02216 Mesoscale and Nanoscale Physics +1508.02391 Theory +1508.02614 Phenomenology +1508.02698 +1508.02945 Molecular Networks +1508.03055 Materials Science +1508.03072 Optics +1508.03118 Strongly Correlated Electrons +1508.03141 Solar and Stellar Astrophysics +1508.03144 Phenomenology +1508.03182 Functional Analysis +1508.03232 Theory +1508.03306 +1508.03355 Chemical Physics +1508.03367 Theory +1508.03383 Strongly Correlated Electrons +1508.03407 Pattern Formation and Solitons +1508.03603 Theory +1508.03864 Mesoscale and Nanoscale Physics +1508.04038 Theory +1508.04059 Materials Science +1508.04136 Phenomenology +1508.04293 +1508.04331 +1508.04378 +1508.04396 Biological Physics +1508.04432 Theory +1508.04434 Earth and Planetary Astrophysics +1508.04449 High Energy Astrophysical Phenomena +1508.04510 Optics +1508.04512 Statistical Finance +1508.04623 Phenomenology +1508.04704 Materials Science +1508.04793 Strongly Correlated Electrons +1508.04908 +1508.04918 Probability +1508.04939 Physics and Society +1508.04941 Soft Condensed Matter +1508.04944 Physics and Society +1508.05268 Fluid Dynamics +1508.05382 Phenomenology +1508.05387 Theory +1508.05700 +1508.05849 +1508.05884 Lattice +1508.05951 Phenomenology +1508.06148 +1508.06169 Atomic Physics +1508.06212 Phenomenology +1508.06324 Pattern Formation and Solitons +1508.06325 Theory +1508.06427 Chemical Physics +1508.06452 Computation +1508.06467 Physics and Society +1508.06500 High Energy Astrophysical Phenomena +1508.06524 Phenomenology +1508.06557 Theory +1508.06577 Theory +1508.06644 Theory +1508.06727 +1508.06808 Representation Theory +1508.06819 Analysis of PDEs +1508.06879 Theory +1508.07007 +1508.07017 +1508.07072 Statistical Mechanics +1508.07263 +1508.07344 Computational Physics +1508.07458 Superconductivity +1508.07459 Phenomenology +1508.07547 Programming Languages +1508.07632 Numerical Analysis +1508.07754 +1508.07782 Mesoscale and Nanoscale Physics +1508.07831 +1508.07956 Theory +1509.00046 Mesoscale and Nanoscale Physics +1509.00047 Phenomenology +1509.00287 Superconductivity +1509.00567 +1509.00591 Mesoscale and Nanoscale Physics +1509.00712 Soft Condensed Matter +1509.00732 Theory +1509.00843 +1509.00951 Fluid Dynamics +1509.01151 Analysis of PDEs +1509.01152 Theory +1509.01162 Statistical Mechanics +1509.01169 Plasma Physics +1509.01278 +1509.01317 Analysis of PDEs +1509.01399 Numerical Analysis +1509.01496 Phenomenology +1509.01577 Quantitative Methods +1509.01636 Theory +1509.01940 Physics and Society +1509.01995 Statistical Mechanics +1509.02131 Solar and Stellar Astrophysics +1509.02134 Solar and Stellar Astrophysics +1509.02186 Astrophysics of Galaxies +1509.02196 Theory +1509.02204 Probability +1509.02397 Astrophysics of Galaxies +1509.02401 Astrophysics of Galaxies +1509.02476 +1509.02519 Mesoscale and Nanoscale Physics +1509.02723 +1509.02728 Phenomenology +1509.02795 Computational Physics +1509.02853 Experiment +1509.02901 +1509.02904 Phenomenology +1509.02928 High Energy Astrophysical Phenomena +1509.02930 Theory +1509.03076 Soft Condensed Matter +1509.03102 Materials Science +1509.03107 Subcellular Processes +1509.03195 Theory +1509.03409 Phenomenology +1509.03439 Statistical Mechanics +1509.03481 Mesoscale and Nanoscale Physics +1509.03720 +1509.03802 Probability +1509.03829 Theory +1509.04011 +1509.04149 Soft Condensed Matter +1509.04236 +1509.04283 Astrophysics of Galaxies +1509.04431 Numerical Analysis +1509.04534 Theory +1509.04548 +1509.04558 Physics and Society +1509.04568 Populations and Evolution +1509.04596 Phenomenology +1509.04868 Statistical Mechanics +1509.04908 Mesoscale and Nanoscale Physics +1509.05030 Phenomenology +1509.05041 Theory +1509.05063 Numerical Analysis +1509.05081 Superconductivity +1509.05165 +1509.05215 Biological Physics +1509.05220 Dynamical Systems +1509.05258 +1509.05296 Materials Science +1509.05297 +1509.05327 Phenomenology +1509.05402 Theory +1509.05460 +1509.05564 Phenomenology +1509.05615 Phenomenology +1509.05644 +1509.05656 +1509.05785 Phenomenology +1509.06211 +1509.06239 +1509.06266 Instrumentation and Methods for Astrophysics +1509.06329 Instrumentation and Detectors +1509.06388 Strongly Correlated Electrons +1509.06417 Cosmology and Nongalactic Astrophysics +1509.06469 +1509.06601 Fluid Dynamics +1509.06656 Instrumentation and Detectors +1509.06700 Quantum Gases +1509.06726 Fluid Dynamics +1509.06803 Soft Condensed Matter +1509.06832 +1509.06876 High Energy Astrophysical Phenomena +1509.06949 Geophysics +1509.07305 Plasma Physics +1509.07358 +1509.07375 Phenomenology +1509.07516 Theory +1509.07587 Theory +1509.07690 Mesoscale and Nanoscale Physics +1509.07814 Disordered Systems and Neural Networks +1509.07875 Cosmology and Nongalactic Astrophysics +1509.07921 Plasma Physics +1509.07959 Lattice +1509.08020 Statistical Mechanics +1509.08237 Earth and Planetary Astrophysics +1509.08467 Mesoscale and Nanoscale Physics +1509.08477 Phenomenology +1509.08511 Theory +1509.08516 Optimization and Control +1509.08583 Materials Science +1509.08622 Phenomenology +1509.08819 Cosmology and Nongalactic Astrophysics +1509.08820 Mesoscale and Nanoscale Physics +1509.08865 Chemical Physics +1509.08867 +1509.08905 Superconductivity +1509.08908 Theory +1509.09091 Accelerator Physics +1510.00020 Strongly Correlated Electrons +1510.00021 Theory +1510.00035 Quantum Gases +1510.00118 +1510.00222 Phenomenology +1510.00317 Instrumentation and Detectors +1510.00372 Phenomenology +1510.00375 Phenomenology +1510.00455 Systems and Control +1510.00534 Statistical Mechanics +1510.00597 Statistical Mechanics +1510.00612 Mesoscale and Nanoscale Physics +1510.00663 +1510.00742 Phenomenology +1510.00765 Mesoscale and Nanoscale Physics +1510.00869 Physics and Society +1510.00991 Plasma Physics +1510.01001 Strongly Correlated Electrons +1510.01029 Plasma Physics +1510.01078 Medical Physics +1510.01147 Probability +1510.01153 Optimization and Control +1510.01185 Materials Science +1510.01190 +1510.01217 Mesoscale and Nanoscale Physics +1510.01242 Theory +1510.01402 Accelerator Physics +1510.01555 Atomic Physics +1510.01737 Cosmology and Nongalactic Astrophysics +1510.01754 Mesoscale and Nanoscale Physics +1510.02005 Theory +1510.02142 Theory +1510.02185 Mesoscale and Nanoscale Physics +1510.02200 Theory +1510.02209 Phenomenology +1510.02400 Materials Science +1510.02494 Theory +1510.02517 Phenomenology +1510.02600 +1510.02671 Strongly Correlated Electrons +1510.02699 Complex Variables +1510.02737 +1510.02908 Plasma Physics +1510.02916 +1510.03019 Data Structures and Algorithms +1510.03230 +1510.03281 Theory +1510.03300 Medical Physics +1510.03306 Materials Science +1510.03315 Mesoscale and Nanoscale Physics +1510.03458 Strongly Correlated Electrons +1510.03498 Phenomenology +1510.03512 Soft Condensed Matter +1510.03660 Analysis of PDEs +1510.03682 Astrophysics of Galaxies +1510.03690 Statistical Mechanics +1510.03742 +1510.03754 Materials Science +1510.03784 Theory +1510.03825 Disordered Systems and Neural Networks +1510.03837 Theory +1510.03851 Quantum Gases +1510.03861 Phenomenology +1510.04186 +1510.04307 Astrophysics of Galaxies +1510.04329 Atomic Physics +1510.04414 Phenomenology +1510.04432 +1510.04505 Plasma Physics +1510.04552 Phenomenology +1510.04659 Phenomenology +1510.04871 Phenomenology +1510.04893 Statistical Mechanics +1510.04896 +1510.04902 Strongly Correlated Electrons +1510.05164 +1510.05316 Mesoscale and Nanoscale Physics +1510.05378 Phenomenology +1510.05415 Instrumentation and Detectors +1510.05425 Theory +1510.05439 Numerical Analysis +1510.05478 Astrophysics of Galaxies +1510.05550 +1510.05644 Astrophysics of Galaxies +1510.05758 Earth and Planetary Astrophysics +1510.05764 Plasma Physics +1510.05805 Mesoscale and Nanoscale Physics +1510.05853 Mesoscale and Nanoscale Physics +1510.05903 Mesoscale and Nanoscale Physics +1510.05921 High Energy Astrophysical Phenomena +1510.05941 Populations and Evolution +1510.05969 Theory +1510.05987 Combinatorics +1510.06012 +1510.06029 Solar and Stellar Astrophysics +1510.06098 +1510.06099 +1510.06109 Mesoscale and Nanoscale Physics +1510.06162 +1510.06252 Chemical Physics +1510.06306 +1510.06361 Phenomenology +1510.06364 Theory +1510.06371 High Energy Astrophysical Phenomena +1510.06400 Astrophysics of Galaxies +1510.06447 +1510.06466 +1510.06505 Fluid Dynamics +1510.06544 Astrophysics of Galaxies +1510.06657 Phenomenology +1510.06687 Mesoscale and Nanoscale Physics +1510.06733 Atomic Physics +1510.06810 Astrophysics of Galaxies +1510.06876 Rings and Algebras +1510.06962 High Energy Astrophysical Phenomena +1510.07012 Lattice +1510.07038 Theory +1510.07051 +1510.07077 Theory +1510.07108 Differential Geometry +1510.07257 Biological Physics +1510.07261 +1510.07282 Data Analysis, Statistics and Probability +1510.07374 Plasma Physics +1510.07527 Phenomenology +1510.07690 Astrophysics of Galaxies +1510.07716 +1510.07809 Solar and Stellar Astrophysics +1510.07819 Social and Information Networks +1510.07855 Atomic Physics +1510.07859 Theory +1510.07868 Statistical Mechanics +1510.07876 Statistical Mechanics +1510.07877 +1510.07935 Theory +1510.08063 Phenomenology +1510.08071 Phenomenology +1510.08083 Phenomenology +1510.08095 +1510.08106 Physics and Society +1510.08164 Plasma Physics +1510.08206 Instrumentation and Detectors +1510.08287 Statistical Mechanics +1510.08310 Astrophysics of Galaxies +1510.08351 Atomic Physics +1510.08376 +1510.08593 Strongly Correlated Electrons +1510.08728 Statistical Mechanics +1510.08742 Phenomenology +1510.08763 Phenomenology +1510.08783 Mesoscale and Nanoscale Physics +1510.08784 Theory +1510.08822 Exactly Solvable and Integrable Systems +1510.08835 Theory +1510.08844 Cosmology and Nongalactic Astrophysics +1510.09003 Strongly Correlated Electrons +1510.09024 Fluid Dynamics +1510.09027 +1510.09052 Fluid Dynamics +1510.09080 Optics +1510.09089 Theory +1510.09183 Quantum Gases +1510.09194 Instrumentation and Methods for Astrophysics +1510.09196 Phenomenology +1511.00003 Probability +1511.00036 Mesoscale and Nanoscale Physics +1511.00239 Accelerator Physics +1511.00260 Instrumentation and Detectors +1511.00338 Phenomenology +1511.00404 Theory +1511.00441 Physics and Society +1511.00495 +1511.00532 Cosmology and Nongalactic Astrophysics +1511.00595 Quantum Gases +1511.00610 Materials Science +1511.00616 Theory +1511.00675 Computational Physics +1511.00786 Statistical Mechanics +1511.00847 Phenomenology +1511.00851 Mesoscale and Nanoscale Physics +1511.01011 Phenomenology +1511.01014 Superconductivity +1511.01072 Chemical Physics +1511.01091 Theory +1511.01101 Phenomenology +1511.01229 High Energy Astrophysical Phenomena +1511.01278 +1511.01309 +1511.01330 Theory +1511.01347 Populations and Evolution +1511.01377 +1511.01422 +1511.01454 Cosmology and Nongalactic Astrophysics +1511.01473 Data Structures and Algorithms +1511.01548 +1511.01599 Plasma Physics +1511.01624 Quantum Gases +1511.01711 Soft Condensed Matter +1511.01743 Plasma Physics +1511.01811 Phenomenology +1511.01875 Theory +1511.01908 Theory +1511.01915 High Energy Astrophysical Phenomena +1511.01927 Fluid Dynamics +1511.01950 Lattice +1511.02042 Statistical Mechanics +1511.02077 High Energy Astrophysical Phenomena +1511.02155 Computational Physics +1511.02161 Optics +1511.02168 Physics and Society +1511.02193 Mesoscale and Nanoscale Physics +1511.02213 Strongly Correlated Electrons +1511.02231 Cosmology and Nongalactic Astrophysics +1511.02313 Solar and Stellar Astrophysics +1511.02317 +1511.02359 Plasma Physics +1511.02502 Experiment +1511.02524 Phenomenology +1511.02697 Operator Algebras +1511.02758 Instrumentation and Methods for Astrophysics +1511.02880 Theory +1511.02914 Mesoscale and Nanoscale Physics +1511.02944 Superconductivity +1511.03002 Mesoscale and Nanoscale Physics +1511.03024 Theory +1511.03107 Theory +1511.03113 Chaotic Dynamics +1511.03142 Theory +1511.03154 Robotics +1511.03175 Accelerator Physics +1511.03191 +1511.03207 Phenomenology +1511.03218 Cosmology and Nongalactic Astrophysics +1511.03278 Phenomenology +1511.03312 Materials Science +1511.03400 Optics +1511.03433 Materials Science +1511.03535 Statistical Mechanics +1511.03541 Instrumentation and Detectors +1511.03553 +1511.03700 Metric Geometry +1511.03709 Cellular Automata and Lattice Gases +1511.03752 Algebraic Geometry +1511.03805 Phenomenology +1511.03957 Theory +1511.04017 Theory +1511.04021 Theory +1511.04031 Computer Vision and Pattern Recognition +1511.04050 Phenomenology +1511.04084 Computational Physics +1511.04146 Superconductivity +1511.04231 Instrumentation and Detectors +1511.04319 Phenomenology +1511.04321 Statistical Mechanics +1511.04425 +1511.04446 Astrophysics of Galaxies +1511.04464 Accelerator Physics +1511.04474 Phenomenology +1511.04501 Instrumentation and Detectors +1511.04533 +1511.04539 Statistical Mechanics +1511.04563 Theory +1511.04596 Statistical Mechanics +1511.04609 Statistical Mechanics +1511.04620 Analysis of PDEs +1511.04630 Mesoscale and Nanoscale Physics +1511.04702 Mesoscale and Nanoscale Physics +1511.04736 Superconductivity +1511.04746 Soft Condensed Matter +1511.04825 Soft Condensed Matter +1511.04859 +1511.05016 Theory +1511.05035 Phenomenology +1511.05146 Cosmology and Nongalactic Astrophysics +1511.05155 Astrophysics of Galaxies +1511.05157 Strongly Correlated Electrons +1511.05162 Phenomenology +1511.05237 Differential Geometry +1511.05258 Strongly Correlated Electrons +1511.05387 Statistical Mechanics +1511.05420 +1511.05436 Instrumentation and Detectors +1511.05452 Theory +1511.05459 Statistical Mechanics +1511.05485 Fluid Dynamics +1511.05555 Theory +1511.05603 Soft Condensed Matter +1511.05655 Phenomenology +1511.05687 Astrophysics of Galaxies +1511.05752 Chemical Physics +1511.05881 +1511.05940 Theory +1511.05989 Phenomenology +1511.06011 Instrumentation and Detectors +1511.06080 Solar and Stellar Astrophysics +1511.06089 +1511.06126 Lattice +1511.06164 Geophysics +1511.06223 Instrumentation and Detectors +1511.06283 +1511.06357 Phenomenology +1511.06363 Emerging Technologies +1511.06532 +1511.06590 Soft Condensed Matter +1511.06743 Plasma Physics +1511.06784 Phenomenology +1511.06836 Mesoscale and Nanoscale Physics +1511.06879 Statistical Mechanics +1511.06976 Dynamical Systems +1511.07016 Optics +1511.07132 +1511.07141 +1511.07155 +1511.07205 +1511.07371 +1511.07382 Lattice +1511.07434 Phenomenology +1511.07444 Instrumentation and Methods for Astrophysics +1511.07507 Mesoscale and Nanoscale Physics +1511.07565 Atomic Physics +1511.07703 Probability +1511.07805 Theory +1511.07876 Astrophysics of Galaxies +1511.07886 Phenomenology +1511.08000 Numerical Analysis +1511.08026 Phenomenology +1511.08168 High Energy Astrophysical Phenomena +1511.08185 Phenomenology +1511.08439 Phenomenology +1511.08444 +1511.08521 Statistical Mechanics +1511.08530 +1511.08623 Materials Science +1511.08636 Mesoscale and Nanoscale Physics +1511.08701 Mesoscale and Nanoscale Physics +1511.08702 Mesoscale and Nanoscale Physics +1511.08712 Physics and Society +1511.08809 Astrophysics of Galaxies +1511.08817 Phenomenology +1511.08821 Earth and Planetary Astrophysics +1511.08906 +1511.09036 Phenomenology +1511.09052 Disordered Systems and Neural Networks +1511.09093 Experiment +1511.09129 Classical Analysis and ODEs +1511.09184 +1511.09240 +1511.09255 Soft Condensed Matter +1511.09256 Phenomenology +1511.09334 Phenomenology +1511.09342 Materials Science +1511.09353 Phenomenology +1511.09393 Theory +1512.00019 Theory +1512.00161 Theory +1512.00206 Biological Physics +1512.00208 Theory +1512.00222 Theory +1512.00396 Phenomenology +1512.00437 Phenomenology +1512.00456 Cosmology and Nongalactic Astrophysics +1512.00491 Differential Geometry +1512.00546 Theory +1512.00557 Mesoscale and Nanoscale Physics +1512.00693 Strongly Correlated Electrons +1512.00733 High Energy Astrophysical Phenomena +1512.00791 Theory +1512.00803 Theory +1512.00841 Theory +1512.00862 Quantum Gases +1512.00869 Phenomenology +1512.00891 +1512.01004 Mesoscale and Nanoscale Physics +1512.01005 Biological Physics +1512.01140 Statistical Mechanics +1512.01165 Phenomenology +1512.01239 High Energy Astrophysical Phenomena +1512.01276 Phenomenology +1512.01292 Biological Physics +1512.01296 Theory +1512.01300 Superconductivity +1512.01327 Phenomenology +1512.01340 Strongly Correlated Electrons +1512.01343 Plasma Physics +1512.01471 Theory +1512.01554 Theory +1512.01559 High Energy Astrophysical Phenomena +1512.01560 Phenomenology +1512.01566 +1512.01576 Theory +1512.01620 Astrophysics of Galaxies +1512.01654 +1512.01756 Numerical Analysis +1512.01860 Materials Science +1512.01881 Computer Vision and Pattern Recognition +1512.01952 Logic in Computer Science +1512.01954 Mesoscale and Nanoscale Physics +1512.01963 Phenomenology +1512.01986 Probability +1512.02045 Phenomenology +1512.02058 Soft Condensed Matter +1512.02073 Physics and Society +1512.02158 Theory +1512.02163 Theory +1512.02184 Phenomenology +1512.02186 Statistical Mechanics +1512.02191 Theory +1512.02201 Phenomenology +1512.02222 Phenomenology +1512.02229 Phenomenology +1512.02235 High Energy Astrophysical Phenomena +1512.02248 +1512.02250 Theory +1512.02392 +1512.02412 Mesoscale and Nanoscale Physics +1512.02426 +1512.02470 Pattern Formation and Solitons +1512.02532 Theory +1512.02553 Mesoscale and Nanoscale Physics +1512.02611 Theory +1512.02705 Phenomenology +1512.02731 High Energy Astrophysical Phenomena +1512.02738 High Energy Astrophysical Phenomena +1512.02811 Adaptation and Self-Organizing Systems +1512.02854 Materials Science +1512.02858 Theory +1512.02869 Phenomenology +1512.02905 Chemical Physics +1512.02934 Theory +1512.03123 Phenomenology +1512.03135 Operator Algebras +1512.03147 +1512.03150 +1512.03239 +1512.03422 Earth and Planetary Astrophysics +1512.03439 Astrophysics of Galaxies +1512.03603 Phenomenology +1512.03638 Phenomenology +1512.03651 Theory +1512.03653 Mesoscale and Nanoscale Physics +1512.03692 Solar and Stellar Astrophysics +1512.03750 Theory +1512.03762 Solar and Stellar Astrophysics +1512.03765 +1512.03854 Astrophysics of Galaxies +1512.03906 Statistical Mechanics +1512.03962 Phenomenology +1512.03977 Optics +1512.04048 Phenomenology +1512.04072 +1512.04074 Superconductivity +1512.04095 +1512.04189 Cosmology and Nongalactic Astrophysics +1512.04259 Phenomenology +1512.04275 Adaptation and Self-Organizing Systems +1512.04281 Phenomenology +1512.04294 Other Condensed Matter +1512.04399 Strongly Correlated Electrons +1512.04449 Solar and Stellar Astrophysics +1512.04459 Phenomenology +1512.04535 Cosmology and Nongalactic Astrophysics +1512.04666 Differential Geometry +1512.04693 +1512.04747 Other Condensed Matter +1512.04793 Mesoscale and Nanoscale Physics +1512.04865 High Energy Astrophysical Phenomena +1512.04897 Cosmology and Nongalactic Astrophysics +1512.04913 Phenomenology +1512.04929 Phenomenology +1512.04934 Superconductivity +1512.04954 Theory +1512.05061 Phenomenology +1512.05155 Theory +1512.05178 Probability +1512.05218 Chemical Physics +1512.05265 Phenomenology +1512.05275 Statistical Mechanics +1512.05291 Experiment +1512.05320 Instrumentation and Detectors +1512.05326 Phenomenology +1512.05384 Rings and Algebras +1512.05400 Experiment +1512.05472 Theory +1512.05525 Phenomenology +1512.05576 Soft Condensed Matter +1512.05605 +1512.05679 Astrophysics of Galaxies +1512.05724 Cosmology and Nongalactic Astrophysics +1512.05733 Fluid Dynamics +1512.05734 Cosmology and Nongalactic Astrophysics +1512.05790 Materials Science +1512.05833 Theory +1512.05837 Theory +1512.05861 Phenomenology +1512.05896 Biological Physics +1512.05903 +1512.06094 Solar and Stellar Astrophysics +1512.06110 Computation and Language +1512.06256 Superconductivity +1512.06280 Theory +1512.06316 Atomic Physics +1512.06420 Theory +1512.06426 Phenomenology +1512.06504 +1512.06523 Theory +1512.06550 Strongly Correlated Electrons +1512.06647 Phenomenology +1512.06685 Earth and Planetary Astrophysics +1512.06686 Theory +1512.06712 +1512.06795 Phenomenology +1512.06926 Theory +1512.07055 Atmospheric and Oceanic Physics +1512.07066 Theory +1512.07176 Quantum Gases +1512.07184 Theory +1512.07212 Phenomenology +1512.07225 Phenomenology +1512.07233 Phenomenology +1512.07236 +1512.07270 Optics +1512.07378 Phenomenology +1512.07482 Phenomenology +1512.07485 Quantum Gases +1512.07531 Phenomenology +1512.07600 Theory +1512.07667 Astrophysics of Galaxies +1512.07671 High Energy Astrophysical Phenomena +1512.07841 +1512.07844 Solar and Stellar Astrophysics +1512.07850 Theory +1512.07883 Theory +1512.07904 Phenomenology +1512.07949 Solar and Stellar Astrophysics +1512.07961 Phenomenology +1512.07999 Phenomenology +1512.08036 Superconductivity +1512.08197 Experiment +1512.08242 Lattice +1512.08289 High Energy Astrophysical Phenomena +1512.08302 High Energy Astrophysical Phenomena +1512.08439 Theory +1512.08447 +1512.08574 Theory +1512.08614 Astrophysics of Galaxies +1512.08718 General Mathematics +1512.08789 +1512.08801 Astrophysics of Galaxies +1512.08817 Mesoscale and Nanoscale Physics +1512.08896 Theory +1512.09026 Phenomenology +1512.09113 Phenomenology +1512.09135 Phenomenology +1512.09208 Astrophysics of Galaxies +1512.09306 Solar and Stellar Astrophysics +1512.09332 Materials Science +1601.00070 Astrophysics of Galaxies +1601.00138 Phenomenology +1601.00192 Phenomenology +1601.00209 Optics +1601.00213 Mesoscale and Nanoscale Physics +1601.00420 Materials Science +1601.00427 Quantum Gases +1601.00446 Quantum Gases +1601.00455 Emerging Technologies +1601.00459 Instrumentation and Detectors +1601.00631 +1601.00648 Strongly Correlated Electrons +1601.00819 Instrumentation and Detectors +1601.00862 Phenomenology +1601.00903 General Finance +1601.00933 Materials Science +1601.01002 Plasma Physics +1601.01107 Experiment +1601.01110 Mesoscale and Nanoscale Physics +1601.01169 Strongly Correlated Electrons +1601.01175 Lattice +1601.01300 Earth and Planetary Astrophysics +1601.01362 Quantum Gases +1601.01381 Phenomenology +1601.01389 Computational Physics +1601.01519 Quantum Gases +1601.01572 Solar and Stellar Astrophysics +1601.01573 Lattice +1601.01578 Lattice +1601.01651 Instrumentation and Detectors +1601.01657 Mesoscale and Nanoscale Physics +1601.01677 Theory +1601.01690 Astrophysics of Galaxies +1601.01772 Soft Condensed Matter +1601.01790 +1601.01839 Optics +1601.01874 Astrophysics of Galaxies +1601.01906 Theory +1601.01914 Numerical Analysis +1601.01953 Materials Science +1601.01999 +1601.02004 Phenomenology +1601.02017 Astrophysics of Galaxies +1601.02029 +1601.02055 High Energy Astrophysical Phenomena +1601.02091 Astrophysics of Galaxies +1601.02095 Soft Condensed Matter +1601.02179 Soft Condensed Matter +1601.02301 Numerical Analysis +1601.02396 Instrumentation and Methods for Astrophysics +1601.02409 +1601.02444 High Energy Astrophysical Phenomena +1601.02494 Phenomenology +1601.02554 Quantum Gases +1601.02615 High Energy Astrophysical Phenomena +1601.02621 Astrophysics of Galaxies +1601.02661 High Energy Astrophysical Phenomena +1601.02675 Cosmology and Nongalactic Astrophysics +1601.02718 Solar and Stellar Astrophysics +1601.02735 Materials Science +1601.02784 Instrumentation and Detectors +1601.02795 Atomic Physics +1601.02811 +1601.02824 Theory +1601.02860 High Energy Astrophysical Phenomena +1601.02870 Disordered Systems and Neural Networks +1601.02962 Optics +1601.03029 Theory +1601.03035 Astrophysics of Galaxies +1601.03156 Statistical Mechanics +1601.03160 +1601.03215 Theory +1601.03266 Analysis of PDEs +1601.03305 Solar and Stellar Astrophysics +1601.03319 Earth and Planetary Astrophysics +1601.03372 Astrophysics of Galaxies +1601.03385 Solar and Stellar Astrophysics +1601.03396 Solar and Stellar Astrophysics +1601.03427 Astrophysics of Galaxies +1601.03469 Phenomenology +1601.03480 Mesoscale and Nanoscale Physics +1601.03484 Phenomenology +1601.03490 Materials Science +1601.03495 Strongly Correlated Electrons +1601.03538 Statistical Mechanics +1601.03551 Astrophysics of Galaxies +1601.03606 Atomic and Molecular Clusters +1601.03662 Earth and Planetary Astrophysics +1601.03718 Solar and Stellar Astrophysics +1601.03734 +1601.03801 Fluid Dynamics +1601.03802 Materials Science +1601.03860 Mesoscale and Nanoscale Physics +1601.03903 High Energy Astrophysical Phenomena +1601.03969 Instrumentation and Methods for Astrophysics +1601.03972 Phenomenology +1601.03973 Phenomenology +1601.04116 Mesoscale and Nanoscale Physics +1601.04154 Phenomenology +1601.04209 +1601.04214 Materials Science +1601.04225 Solar and Stellar Astrophysics +1601.04361 Astrophysics of Galaxies +1601.04367 Experiment +1601.04439 Astrophysics of Galaxies +1601.04537 Phenomenology +1601.04611 Optics +1601.04658 Theory +1601.04712 Astrophysics of Galaxies +1601.04717 Solar and Stellar Astrophysics +1601.04776 Statistical Mechanics +1601.04777 Superconductivity +1601.04783 Astrophysics of Galaxies +1601.04792 Solar and Stellar Astrophysics +1601.04823 Astrophysics of Galaxies +1601.04833 Solar and Stellar Astrophysics +1601.04839 Phenomenology +1601.04874 Solar and Stellar Astrophysics +1601.04894 High Energy Astrophysical Phenomena +1601.04921 Other Condensed Matter +1601.04976 Earth and Planetary Astrophysics +1601.05056 Astrophysics of Galaxies +1601.05172 +1601.05229 Solar and Stellar Astrophysics +1601.05240 Plasma Physics +1601.05282 Phenomenology +1601.05293 Superconductivity +1601.05302 Earth and Planetary Astrophysics +1601.05385 Astrophysics of Galaxies +1601.05422 Instrumentation and Methods for Astrophysics +1601.05473 Astrophysics of Galaxies +1601.05475 Theory +1601.05517 Mesoscale and Nanoscale Physics +1601.05518 +1601.05544 Mesoscale and Nanoscale Physics +1601.05606 Earth and Planetary Astrophysics +1601.05659 Astrophysics of Galaxies +1601.05671 Soft Condensed Matter +1601.05672 Earth and Planetary Astrophysics +1601.05674 Geophysics +1601.05787 Plasma Physics +1601.05845 Plasma Physics +1601.05855 Materials Science +1601.05947 Astrophysics of Galaxies +1601.05953 Astrophysics of Galaxies +1601.05958 High Energy Astrophysical Phenomena +1601.05963 Quantum Gases +1601.05995 Phenomenology +1601.06092 +1601.06194 Instrumentation and Methods for Astrophysics +1601.06385 +1601.06397 +1601.06401 Materials Science +1601.06441 Solar and Stellar Astrophysics +1601.06540 Soft Condensed Matter +1601.06567 Phenomenology +1601.06577 Theory +1601.06617 +1601.06673 Optics +1601.06754 Astrophysics of Galaxies +1601.06769 Astrophysics of Galaxies +1601.06848 Operator Algebras +1601.06874 Astrophysics of Galaxies +1601.06875 Astrophysics of Galaxies +1601.06897 Cosmology and Nongalactic Astrophysics +1601.06910 Theory +1601.06912 Cosmology and Nongalactic Astrophysics +1601.06937 +1601.06940 Subcellular Processes +1601.06954 Superconductivity +1601.06973 Differential Geometry +1601.07063 Quantitative Methods +1601.07105 Solar and Stellar Astrophysics +1601.07120 +1601.07165 Solar and Stellar Astrophysics +1601.07180 High Energy Astrophysical Phenomena +1601.07274 Solar and Stellar Astrophysics +1601.07351 Materials Science +1601.07360 Strongly Correlated Electrons +1601.07422 Atomic Physics +1601.07429 Mesoscale and Nanoscale Physics +1601.07464 Phenomenology +1601.07537 Astrophysics of Galaxies +1601.07548 Instrumentation and Methods for Astrophysics +1601.07560 Materials Science +1601.07573 Materials Science +1601.07689 Mesoscale and Nanoscale Physics +1601.07694 Cosmology and Nongalactic Astrophysics +1601.07706 Soft Condensed Matter +1601.07773 Mesoscale and Nanoscale Physics +1601.07774 Phenomenology +1601.07819 Instrumentation and Methods for Astrophysics +1601.07889 Quantum Gases +1601.07903 High Energy Astrophysical Phenomena +1601.07971 Optics +1601.07990 +1601.08060 Mesoscale and Nanoscale Physics +1601.08066 +1601.08089 Solar and Stellar Astrophysics +1601.08131 +1601.08134 Adaptation and Self-Organizing Systems +1602.00028 Materials Science +1602.00062 Phenomenology +1602.00102 Materials Science +1602.00288 Phenomenology +1602.00364 Instrumentation and Detectors +1602.00385 High Energy Astrophysical Phenomena +1602.00388 +1602.00463 High Energy Astrophysical Phenomena +1602.00538 Astrophysics of Galaxies +1602.00633 High Energy Astrophysical Phenomena +1602.00663 Quantum Gases +1602.00702 High Energy Astrophysical Phenomena +1602.00706 Phenomenology +1602.00737 Astrophysics of Galaxies +1602.00740 Earth and Planetary Astrophysics +1602.00787 Solar and Stellar Astrophysics +1602.00817 Adaptation and Self-Organizing Systems +1602.00892 Astrophysics of Galaxies +1602.01090 Astrophysics of Galaxies +1602.01095 Astrophysics of Galaxies +1602.01199 Astrophysics of Galaxies +1602.01219 Solar and Stellar Astrophysics +1602.01229 High Energy Astrophysical Phenomena +1602.01320 Solar and Stellar Astrophysics +1602.01338 Statistical Mechanics +1602.01349 Phenomenology +1602.01363 Quantum Gases +1602.01414 Atomic and Molecular Clusters +1602.01468 High Energy Astrophysical Phenomena +1602.01472 Solar and Stellar Astrophysics +1602.01485 +1602.01493 Earth and Planetary Astrophysics +1602.01589 Materials Science +1602.01669 Astrophysics of Galaxies +1602.01693 Statistical Mechanics +1602.01705 +1602.01744 Solar and Stellar Astrophysics +1602.01796 Materials Science +1602.01838 Astrophysics of Galaxies +1602.01851 Earth and Planetary Astrophysics +1602.01873 Astrophysics of Galaxies +1602.01877 Solar and Stellar Astrophysics +1602.01922 Astrophysics of Galaxies +1602.01965 Earth and Planetary Astrophysics +1602.01968 High Energy Astrophysical Phenomena +1602.02053 Fluid Dynamics +1602.02061 Fluid Dynamics +1602.02149 Astrophysics of Galaxies +1602.02153 Physics and Society +1602.02217 Solar and Stellar Astrophysics +1602.02231 Cosmology and Nongalactic Astrophysics +1602.02305 Statistical Mechanics +1602.02500 Astrophysics of Galaxies +1602.02528 Mesoscale and Nanoscale Physics +1602.02529 Astrophysics of Galaxies +1602.02559 High Energy Astrophysical Phenomena +1602.02564 Astrophysics of Galaxies +1602.02682 Mesoscale and Nanoscale Physics +1602.02709 Mesoscale and Nanoscale Physics +1602.02806 Solar and Stellar Astrophysics +1602.02832 Instrumentation and Methods for Astrophysics +1602.02833 +1602.02848 High Energy Astrophysical Phenomena +1602.02856 Earth and Planetary Astrophysics +1602.02918 High Energy Astrophysical Phenomena +1602.02971 Group Theory +1602.03022 Solar and Stellar Astrophysics +1602.03157 Solar and Stellar Astrophysics +1602.03180 Astrophysics of Galaxies +1602.03181 Astrophysics of Galaxies +1602.03272 Mesoscale and Nanoscale Physics +1602.03304 Instrumentation and Methods for Astrophysics +1602.03325 Solar and Stellar Astrophysics +1602.03422 Solar and Stellar Astrophysics +1602.03437 +1602.03440 Space Physics +1602.03461 Superconductivity +1602.03531 High Energy Astrophysical Phenomena +1602.03543 Chemical Physics +1602.03565 Phenomenology +1602.03624 Strongly Correlated Electrons +1602.03634 High Energy Astrophysical Phenomena +1602.03668 Astrophysics of Galaxies +1602.03714 Phenomenology +1602.03909 Astrophysics of Galaxies +1602.03917 High Energy Astrophysical Phenomena +1602.03939 Phenomenology +1602.04054 Materials Science +1602.04284 High Energy Astrophysical Phenomena +1602.04313 Mesoscale and Nanoscale Physics +1602.04413 +1602.04428 Earth and Planetary Astrophysics +1602.04512 Instrumentation and Methods for Astrophysics +1602.04525 +1602.04564 Superconductivity +1602.04640 Solar and Stellar Astrophysics +1602.04672 Astrophysics of Galaxies +1602.04682 Solar and Stellar Astrophysics +1602.04683 Earth and Planetary Astrophysics +1602.04940 Solar and Stellar Astrophysics +1602.05042 Solar and Stellar Astrophysics +1602.05060 Theory +1602.05064 High Energy Astrophysical Phenomena +1602.05098 Solar and Stellar Astrophysics +1602.05107 Accelerator Physics +1602.05114 Solar and Stellar Astrophysics +1602.05193 Solar and Stellar Astrophysics +1602.05221 Machine Learning +1602.05249 Instrumentation and Methods for Astrophysics +1602.05362 Astrophysics of Galaxies +1602.05363 Astrophysics of Galaxies +1602.05389 +1602.05458 Astrophysics of Galaxies +1602.05518 Materials Science +1602.05587 Astrophysics of Galaxies +1602.05666 +1602.05680 Superconductivity +1602.05692 Materials Science +1602.05711 Astrophysics of Galaxies +1602.05814 Phenomenology +1602.05824 +1602.05854 Materials Science +1602.06076 Astrophysics of Galaxies +1602.06116 Earth and Planetary Astrophysics +1602.06309 +1602.06412 Solar and Stellar Astrophysics +1602.06482 High Energy Astrophysical Phenomena +1602.06573 Earth and Planetary Astrophysics +1602.06639 Materials Science +1602.06668 Astrophysics of Galaxies +1602.06671 Solar and Stellar Astrophysics +1602.06684 Materials Science +1602.06758 +1602.06789 Statistical Mechanics +1602.06860 Superconductivity +1602.06983 Astrophysics of Galaxies +1602.07055 Superconductivity +1602.07078 Earth and Planetary Astrophysics +1602.07305 Astrophysics of Galaxies +1602.07306 Astrophysics of Galaxies +1602.07397 Solar and Stellar Astrophysics +1602.07454 Phenomenology +1602.07469 Chemical Physics +1602.07474 Physics and Society +1602.07528 Instrumentation and Detectors +1602.07664 High Energy Astrophysical Phenomena +1602.07785 Astrophysics of Galaxies +1602.07822 +1602.07832 Quantum Gases +1602.07870 Astrophysics of Galaxies +1602.07980 +1602.07984 Materials Science +1602.07986 Strongly Correlated Electrons +1602.08050 Cosmology and Nongalactic Astrophysics +1602.08054 Astrophysics of Galaxies +1602.08131 High Energy Astrophysical Phenomena +1602.08243 Mesoscale and Nanoscale Physics +1602.08470 Mesoscale and Nanoscale Physics +1602.08511 High Energy Astrophysical Phenomena +1602.08551 High Energy Astrophysical Phenomena +1602.08674 Astrophysics of Galaxies +1602.08932 Cosmology and Nongalactic Astrophysics +1602.08969 High Energy Astrophysical Phenomena +1602.09014 High Energy Astrophysical Phenomena +1603.00029 Earth and Planetary Astrophysics +1603.00032 Astrophysics of Galaxies +1603.00044 Astrophysics of Galaxies +1603.00086 Earth and Planetary Astrophysics +1603.00142 Solar and Stellar Astrophysics +1603.00332 Solar and Stellar Astrophysics +1603.00335 High Energy Astrophysical Phenomena +1603.00344 Astrophysics of Galaxies +1603.00388 High Energy Astrophysical Phenomena +1603.00414 Earth and Planetary Astrophysics +1603.00439 Astrophysics of Galaxies +1603.00445 Plasma Physics +1603.00452 General Topology +1603.00457 Solar and Stellar Astrophysics +1603.00458 High Energy Astrophysical Phenomena +1603.00460 Astrophysics of Galaxies +1603.00462 Astrophysics of Galaxies +1603.00468 Astrophysics of Galaxies +1603.00471 Solar and Stellar Astrophysics +1603.00477 Astrophysics of Galaxies +1603.00487 Earth and Planetary Astrophysics +1603.00488 Astrophysics of Galaxies +1603.00528 Astrophysics of Galaxies +1603.00552 High Energy Astrophysical Phenomena +1603.00625 Astrophysics of Galaxies +1603.00653 Earth and Planetary Astrophysics +1603.00659 Astrophysics of Galaxies +1603.00729 Instrumentation and Methods for Astrophysics +1603.00818 Earth and Planetary Astrophysics +1603.00824 High Energy Astrophysical Phenomena +1603.00878 Astrophysics of Galaxies +1603.00881 Solar and Stellar Astrophysics +1603.00883 High Energy Astrophysical Phenomena +1603.00900 High Energy Astrophysical Phenomena +1603.00917 Soft Condensed Matter +1603.01017 Solar and Stellar Astrophysics +1603.01097 Astrophysics of Galaxies +1603.01158 Instrumentation and Methods for Astrophysics +1603.01199 High Energy Astrophysical Phenomena +1603.01201 Phenomenology +1603.01229 Earth and Planetary Astrophysics +1603.01264 High Energy Astrophysical Phenomena +1603.01265 Astrophysics of Galaxies +1603.01271 High Energy Astrophysical Phenomena +1603.01309 Solar and Stellar Astrophysics +1603.01348 High Energy Astrophysical Phenomena +1603.01373 Mesoscale and Nanoscale Physics +1603.01441 Solar and Stellar Astrophysics +1603.01505 High Energy Astrophysical Phenomena +1603.01534 High Energy Astrophysical Phenomena +1603.01543 High Energy Astrophysical Phenomena +1603.01548 Earth and Planetary Astrophysics +1603.01549 Phenomenology +1603.01749 Soft Condensed Matter +1603.01906 Optics +1603.01941 Mesoscale and Nanoscale Physics +1603.01998 Materials Science +1603.02012 Solar and Stellar Astrophysics +1603.02054 Mesoscale and Nanoscale Physics +1603.02358 High Energy Astrophysical Phenomena +1603.02418 Astrophysics of Galaxies +1603.02423 Solar and Stellar Astrophysics +1603.02507 Quantum Gases +1603.02544 Earth and Planetary Astrophysics +1603.02552 Solar and Stellar Astrophysics +1603.02582 Astrophysics of Galaxies +1603.02587 Earth and Planetary Astrophysics +1603.02622 +1603.02634 High Energy Astrophysical Phenomena +1603.02685 Astrophysics of Galaxies +1603.02688 Astrophysics of Galaxies +1603.02786 Astrophysics of Galaxies +1603.02811 Other Condensed Matter +1603.02818 Astrophysics of Galaxies +1603.02821 Mesoscale and Nanoscale Physics +1603.02908 Instrumentation and Methods for Astrophysics +1603.02919 Quantum Gases +1603.02970 Astrophysics of Galaxies +1603.02973 Astrophysics of Galaxies +1603.03021 +1603.03094 Astrophysics of Galaxies +1603.03135 Earth and Planetary Astrophysics +1603.03362 Probability +1603.03380 +1603.03424 Earth and Planetary Astrophysics +1603.03434 High Energy Astrophysical Phenomena +1603.03449 Methodology +1603.03450 Methodology +1603.03493 Solar and Stellar Astrophysics +1603.03500 Solar and Stellar Astrophysics +1603.03524 Astrophysics of Galaxies +1603.03539 Astrophysics of Galaxies +1603.03774 Astrophysics of Galaxies +1603.03776 Solar and Stellar Astrophysics +1603.03785 Strongly Correlated Electrons +1603.03922 Medical Physics +1603.03937 Solar and Stellar Astrophysics +1603.04011 Solar and Stellar Astrophysics +1603.04127 +1603.04171 High Energy Astrophysical Phenomena +1603.04227 Solar and Stellar Astrophysics +1603.04235 Astrophysics of Galaxies +1603.04324 Representation Theory +1603.04461 High Energy Astrophysical Phenomena +1603.04474 Astrophysics of Galaxies +1603.04544 Astrophysics of Galaxies +1603.04602 Astrophysics of Galaxies +1603.04656 Astrophysics of Galaxies +1603.04707 Optimization and Control +1603.04708 Physics and Society +1603.04749 Solar and Stellar Astrophysics +1603.04755 Solar and Stellar Astrophysics +1603.04803 Methodology +1603.04815 Optics +1603.05080 +1603.05287 Astrophysics of Galaxies +1603.05510 Classical Analysis and ODEs +1603.05690 Cosmology and Nongalactic Astrophysics +1603.05843 Social and Information Networks +1603.05989 Soft Condensed Matter +1603.06169 Computer Vision and Pattern Recognition +1603.06375 Phenomenology +1603.06555 Mesoscale and Nanoscale Physics +1603.06563 Cosmology and Nongalactic Astrophysics +1603.06569 Functional Analysis +1603.06573 Phenomenology +1603.06597 Cryptography and Security +1603.06600 Analysis of PDEs +1603.06605 Chemical Physics +1603.06617 Analysis of PDEs +1603.06620 +1603.06621 Logic +1603.06622 Differential Geometry +1603.06624 Learning +1603.06625 Combinatorics +1603.06627 Systems and Control +1603.06630 Number Theory +1603.06632 Fluid Dynamics +1603.06633 +1603.06635 Cryptography and Security +1603.06639 Commutative Algebra +1603.06640 Materials Science +1603.06645 Earth and Planetary Astrophysics +1603.06647 Physics Education +1603.06649 Applications +1603.06653 Learning +1603.06655 Computer Vision and Pattern Recognition +1603.06656 History and Overview +1603.06657 Classical Analysis and ODEs +1603.06658 Numerical Analysis +1603.06663 Methodology +1603.06665 Neural and Evolutionary Computing +1603.06667 Solar and Stellar Astrophysics +1603.06669 Computer Vision and Pattern Recognition +1603.06673 Solar and Stellar Astrophysics +1603.06674 Human-Computer Interaction +1603.06675 Cryptography and Security +1603.06677 Computation and Language +1603.06678 Computer Vision and Pattern Recognition +1603.06680 Computer Vision and Pattern Recognition +1603.06683 Algebraic Geometry +1603.06685 +1603.06686 Dynamical Systems +1603.06688 Optimization and Control +1603.06691 Algebraic Geometry +1603.06692 Phenomenology +1603.06694 Probability +1603.06701 +1603.06702 Mesoscale and Nanoscale Physics +1603.06704 Solar and Stellar Astrophysics +1603.06705 Representation Theory +1603.06706 Algebraic Geometry +1603.06709 Classical Analysis and ODEs +1603.06710 +1603.06711 Experiment +1603.06713 Solar and Stellar Astrophysics +1603.06714 Combinatorics +1603.06716 Systems and Control +1603.06717 Algebraic Geometry +1603.06718 Analysis of PDEs +1603.06719 Networking and Internet Architecture +1603.06722 Combinatorics +1603.06723 Algebraic Topology +1603.06727 Statistics Theory +1603.06729 Databases +1603.06731 Algebraic Geometry +1603.06732 Databases +1603.06734 Adaptation and Self-Organizing Systems +1603.06736 Networking and Internet Architecture +1603.06739 Functional Analysis +1603.06740 K-Theory and Homology +1603.06742 Operator Algebras +1603.06747 Probability +1603.06750 Analysis of PDEs +1603.06751 Systems and Control +1603.06754 Information Theory +1603.06756 Systems and Control +1603.06759 Computer Vision and Pattern Recognition +1603.06762 Analysis of PDEs +1603.06763 Chaotic Dynamics +1603.06766 Materials Science +1603.06768 Chemical Physics +1603.06771 Number Theory +1603.06775 Probability +1603.06780 Social and Information Networks +1603.06781 Functional Analysis +1603.06782 Learning +1603.06783 Optics +1603.06785 Computation and Language +1603.06786 Statistics Theory +1603.06787 Fluid Dynamics +1603.06788 Neural and Evolutionary Computing +1603.06790 Neurons and Cognition +1603.06791 +1603.06797 Commutative Algebra +1603.06798 Information Theory +1603.06801 +1603.06802 Phenomenology +1603.06804 Group Theory +1603.06805 Trading and Market Microstructure +1603.06806 Statistics Theory +1603.06809 Distributed, Parallel, and Cluster Computing +1603.06813 Algebraic Geometry +1603.06818 Complex Variables +1603.06819 Analysis of PDEs +1603.06821 Graphics +1603.06824 Experiment +1603.06829 Computer Vision and Pattern Recognition +1603.06833 Complex Variables +1603.06837 Number Theory +1603.06838 Numerical Analysis +1603.06842 +1603.06843 Materials Science +1603.06848 Information Theory +1603.06849 Data Analysis, Statistics and Probability +1603.06852 Analysis of PDEs +1603.06853 Algebraic Geometry +1603.06856 Soft Condensed Matter +1603.06859 Neural and Evolutionary Computing +1603.06861 Machine Learning +1603.06867 +1603.06870 Computer Science and Game Theory +1603.06871 Combinatorics +1603.06872 Systems and Control +1603.06873 Materials Science +1603.06874 Number Theory +1603.06878 Social and Information Networks +1603.06879 Neurons and Cognition +1603.06881 Learning +1603.06886 Information Theory +1603.06889 High Energy Astrophysical Phenomena +1603.06892 Statistical Mechanics +1603.06894 Systems and Control +1603.06898 Statistics Theory +1603.06901 Soft Condensed Matter +1603.06904 Probability +1603.06905 Dynamical Systems +1603.06906 Statistical Mechanics +1603.06910 Information Theory +1603.06912 Numerical Analysis +1603.06913 Differential Geometry +1603.06915 Machine Learning +1603.06923 Statistics Theory +1603.06927 Other Computer Science +1603.06928 Information Theory +1603.06929 Atmospheric and Oceanic Physics +1603.06930 Differential Geometry +1603.06933 Soft Condensed Matter +1603.06934 Information Theory +astro-ph/0011558 +astro-ph/0011561 +astro-ph/0012037 +astro-ph/0012222 +astro-ph/0112131 +astro-ph/0311423 +astro-ph/0406489 +astro-ph/9801261 +astro-ph/9912064 +cond-mat/0009126 Superconductivity +cond-mat/0012245 Disordered Systems and Neural Networks +cond-mat/9707167 +cond-mat/9709294 Strongly Correlated Electrons +cond-mat/9709325 Superconductivity +cond-mat/9710181 Superconductivity +cond-mat/9712311 Superconductivity +cond-mat/9802109 Strongly Correlated Electrons +gr-qc/0012049 +gr-qc/9511001 +hep-th/9112012 Theory +nlin/0307004 Chaotic Dynamics +0908.2178 Number Theory +1004.1998 Numerical Analysis +1101.3905 Geometric Topology +1102.1848 Algebraic Geometry +1111.0931 Number Theory +1201.5090 Algebraic Geometry +1202.2994 Operator Algebras +1204.4754 Numerical Analysis +1206.0960 Other Condensed Matter +1207.1477 Symplectic Geometry +1207.1533 Classical Analysis and ODEs +1207.2984 Dynamical Systems +1207.3958 Geometric Topology +1207.4079 Data Structures and Algorithms +1209.0812 Representation Theory +1209.2160 Computation +1210.8357 General Physics +1211.3915 Methodology +1211.5191 Number Theory +1212.1389 Number Theory +1301.0772 Geophysics +1303.7462 Data Structures and Algorithms +1304.6738 Data Analysis, Statistics and Probability +1305.1183 Distributed, Parallel, and Cluster Computing +1307.2108 Group Theory +1307.2225 Computer Science and Game Theory +1307.8196 Symplectic Geometry +1308.0177 Metric Geometry +1308.2010 Algebraic Topology +1308.3113 Number Theory +1308.3188 Metric Geometry +1309.5277 Dynamical Systems +1309.6108 Statistics Theory +1309.7884 Differential Geometry +1310.6804 Algebraic Topology +1310.7823 Geometric Topology +1310.8537 Geometric Topology +1311.7167 Differential Geometry +1312.1367 +1401.0876 K-Theory and Homology +1401.1836 Geometric Topology +1401.4114 Soft Condensed Matter +1401.4759 Geometric Topology +1402.0801 Geometric Topology +1402.4253 Geometric Topology +1403.0518 Analysis of PDEs +1403.2963 Computation +1403.4376 Functional Analysis +1404.1417 Algebraic Topology +1404.6821 Combinatorics +1405.2899 +1405.3008 +1405.4778 Chaotic Dynamics +1405.6238 Algebraic Geometry +1405.6487 Geometric Topology +1406.3272 Algebraic Topology +1407.0279 Number Theory +1407.0967 Number Theory +1407.2975 Dynamical Systems +1407.3072 Probability +1407.3554 Geometric Topology +1408.2955 Logic in Computer Science +1409.1314 Combinatorics +1409.7120 Classical Analysis and ODEs +1409.7441 Statistics Theory +1409.7564 Algebraic Geometry +1410.1189 Operator Algebras +1410.3236 Algebraic Topology +1410.6199 Algebraic Topology +1410.6454 Geometric Topology +1410.6703 Algebraic Geometry +1410.8329 Algebraic Geometry +1410.8542 Dynamical Systems +1411.2293 Number Theory +1411.2525 Portfolio Management +1411.2950 +1411.6413 Geometric Topology +1411.7235 Atmospheric and Oceanic Physics +1412.2599 Differential Geometry +1412.3839 Probability +1501.00533 Probability +1501.00930 Algebraic Geometry +1501.01551 High Energy Astrophysical Phenomena +1501.03034 Disordered Systems and Neural Networks +1501.03234 Differential Geometry +1501.03492 Cosmology and Nongalactic Astrophysics +1501.05622 Theory +1501.07251 Spectral Theory +1502.00644 High Energy Astrophysical Phenomena +1502.01516 Operator Algebras +1502.02333 Quantum Gases +1502.02548 Superconductivity +1502.02753 Computational Geometry +1502.03067 Geophysics +1502.03104 High Energy Astrophysical Phenomena +1502.03532 Computer Vision and Pattern Recognition +1502.04702 Cosmology and Nongalactic Astrophysics +1502.05318 Theory +1502.06666 Instrumentation and Methods for Astrophysics +1502.07569 Phenomenology +1503.00319 Algebraic Geometry +1503.01423 Dynamical Systems +1503.03346 Statistical Mechanics +1503.05512 High Energy Astrophysical Phenomena +1503.05734 Probability +1503.05735 Probability +1503.05744 Dynamical Systems +1503.06616 Phenomenology +1503.06938 Phenomenology +1503.07858 +1503.08492 Dynamical Systems +1504.00160 Methodology +1504.00292 Strongly Correlated Electrons +1504.00355 Phenomenology +1504.01382 Phenomenology +1504.03860 Strongly Correlated Electrons +1504.04079 +1504.06327 Theory +1504.06644 Fluid Dynamics +1504.07053 Probability +1504.07534 High Energy Astrophysical Phenomena +1505.00943 +1505.01148 Mesoscale and Nanoscale Physics +1505.01519 Numerical Analysis +1505.01766 Operator Algebras +1505.01977 Materials Science +1505.06331 Theory +1505.06392 Instrumentation and Methods for Astrophysics +1505.07046 Computational Physics +1505.07150 +1506.00785 Information Theory +1506.00945 Algebraic Topology +1506.01451 Astrophysics of Galaxies +1506.01737 +1506.04056 +1506.04578 Statistical Mechanics +1506.04659 Theory +1506.05373 Group Theory +1506.05381 Theory +1506.06093 Quantum Algebra +1506.06179 Machine Learning +1506.06271 Information Theory +1506.07307 Theory +1506.08782 +1507.01772 Statistics Theory +1507.03092 Machine Learning +1507.04316 Algebraic Geometry +1507.05919 +1507.06386 +1507.07448 +1507.07579 Fluid Dynamics +1507.07729 Phenomenology +1507.07951 Computer Science and Game Theory +1507.08013 Experiment +1507.08723 Category Theory +1507.08798 +1508.00799 Instrumentation and Methods for Astrophysics +1508.00911 Phenomenology +1508.01095 Phenomenology +1508.01364 Materials Science +1508.04024 Physics and Society +1508.04506 Materials Science +1508.04521 Discrete Mathematics +1508.04666 Optics +1508.04796 Metric Geometry +1508.04836 Probability +1508.05533 +1508.05680 Statistics Theory +1508.05837 Risk Management +1508.06490 Phenomenology +1508.06624 +1508.06700 Numerical Analysis +1508.06777 Optimization and Control +1508.07308 Materials Science +1509.00978 Phenomenology +1509.01141 Probability +1509.01664 +1509.01956 +1509.02313 Superconductivity +1509.02605 Dynamical Systems +1509.02931 Phenomenology +1509.03201 Probability +1509.03512 Soft Condensed Matter +1509.03828 Pattern Formation and Solitons +1509.04749 Theory +1509.04766 Phenomenology +1509.04918 Probability +1509.05000 Differential Geometry +1509.05020 Phenomenology +1509.05509 Strongly Correlated Electrons +1509.05848 Geometric Topology +1509.06150 +1509.06276 General Topology +1509.06402 Logic +1509.06905 Lattice +1509.06930 Phenomenology +1509.07144 Astrophysics of Galaxies +1509.08064 Theory +1509.08271 Accelerator Physics +1509.08507 Lattice +1509.08910 Fluid Dynamics +1509.09098 Strongly Correlated Electrons +1509.09173 High Energy Astrophysical Phenomena +1510.00794 +1510.01445 Plasma Physics +1510.02129 Theory +1510.02235 Phenomenology +1510.02567 Phenomenology +1510.02900 Exactly Solvable and Integrable Systems +1510.03488 Theory +1510.04239 Phenomenology +1510.04281 Theory +1510.05139 Geometric Topology +1510.05482 Theory +1510.05948 Differential Geometry +1510.06139 Theory +1510.07055 Analysis of PDEs +1510.07064 Physics and Society +1510.07567 Instrumentation and Methods for Astrophysics +1510.07751 +1510.07753 +1510.07779 Cosmology and Nongalactic Astrophysics +1510.07852 Algebraic Geometry +1510.08145 Strongly Correlated Electrons +1510.08737 +1511.00512 +1511.01007 +1511.01606 Earth and Planetary Astrophysics +1511.01936 +1511.02140 Geophysics +1511.02346 Analysis of PDEs +1511.02585 Statistical Mechanics +1511.02756 Numerical Analysis +1511.03220 Phenomenology +1511.03227 +1511.03518 Information Retrieval +1511.04535 Phenomenology +1511.04949 Mesoscale and Nanoscale Physics +1511.05287 +1511.05314 +1511.05342 Theory +1511.05538 Materials Science +1511.05541 Logic +1511.05685 Strongly Correlated Electrons +1511.06129 Instrumentation and Detectors +1511.06574 Mesoscale and Nanoscale Physics +1511.06694 Theory +1511.06924 Phenomenology +1511.07104 +1511.07445 Strongly Correlated Electrons +1511.07802 Mesoscale and Nanoscale Physics +1511.08214 Theory +1511.08220 Theory +1511.08294 +1511.08308 Computation and Language +1511.08406 Theory +1511.08638 Probability +1511.08737 Theory +1511.09247 Phenomenology +1512.00029 Phenomenology +1512.00098 Phenomenology +1512.00166 +1512.00524 Cryptography and Security +1512.00631 Quantum Gases +1512.00794 +1512.01464 Adaptation and Self-Organizing Systems +1512.01644 Theory +1512.01692 Phenomenology +1512.01857 Phenomenology +1512.02333 High Energy Astrophysical Phenomena +1512.02604 Theory +1512.02915 Analysis of PDEs +1512.02928 Data Analysis, Statistics and Probability +1512.03056 Phenomenology +1512.03605 Experiment +1512.03640 Phenomenology +1512.03680 +1512.03682 Phenomenology +1512.03850 Neurons and Cognition +1512.03974 Phenomenology +1512.04068 Methodology +1512.04079 Quantum Gases +1512.04169 Number Theory +1512.04241 High Energy Astrophysical Phenomena +1512.04301 Experiment +1512.04335 Theory +1512.04724 Representation Theory +1512.05379 Phenomenology +1512.05408 Other Condensed Matter +1512.05473 +1512.05756 Quantum Gases +1512.05775 Phenomenology +1512.05786 Phenomenology +1512.05988 High Energy Astrophysical Phenomena +1512.05993 Combinatorics +1512.06107 Phenomenology +1512.06109 Theory +1512.06127 Mesoscale and Nanoscale Physics +1512.06263 Theory +1512.06397 +1512.06456 +1512.06820 +1512.06823 +1512.06933 Soft Condensed Matter +1512.06951 Superconductivity +1512.06954 +1512.07110 +1512.07117 Theory +1512.07157 Phenomenology +1512.07442 Instrumentation and Detectors +1512.07632 Theory +1512.07918 Theory +1512.08254 Phenomenology +1512.08297 +1512.08305 Tissues and Organs +1512.08478 Phenomenology +1512.08497 Phenomenology +1512.08591 Theory +1512.08601 Dynamical Systems +1512.09124 Plasma Physics +1601.00197 Mesoscale and Nanoscale Physics +1601.00387 +1601.00426 Atomic Physics +1601.00525 Theory +1601.00658 Phenomenology +1601.01173 Algebraic Geometry +1601.01236 +1601.01307 Solar and Stellar Astrophysics +1601.01670 +1601.01784 Theory +1601.01828 Phenomenology +1601.02488 +1601.02945 High Energy Astrophysical Phenomena +1601.03148 +1601.03302 Lattice +1601.03343 Logic +1601.03725 Theory +1601.03736 Phenomenology +1601.03944 Fluid Dynamics +1601.03982 Phenomenology +1601.04005 Instrumentation and Detectors +1601.04016 Superconductivity +1601.04061 Mesoscale and Nanoscale Physics +1601.04447 Cosmology and Nongalactic Astrophysics +1601.04751 Phenomenology +1601.04931 Strongly Correlated Electrons +1601.05136 Phenomenology +1601.05456 Atmospheric and Oceanic Physics +1601.06386 High Energy Astrophysical Phenomena +1601.06483 +1601.06645 Theory +1601.06708 Materials Science +1601.06795 Theory +1601.06984 Computational Physics +1601.07166 Phenomenology +1601.07170 Chaotic Dynamics +1601.07181 Phenomenology +1601.07369 Mesoscale and Nanoscale Physics +1601.07410 Statistics Theory +1601.07411 Statistical Mechanics +1601.07886 Mesoscale and Nanoscale Physics +1601.07927 +1601.07934 Phenomenology +1601.08018 Mesoscale and Nanoscale Physics +1602.00068 Strongly Correlated Electrons +1602.00076 Lattice +1602.00297 Phenomenology +1602.00560 Dynamical Systems +1602.00754 Mesoscale and Nanoscale Physics +1602.01039 Mesoscale and Nanoscale Physics +1602.01111 Optics +1602.01284 Cosmology and Nongalactic Astrophysics +1602.01448 Data Analysis, Statistics and Probability +1602.01487 Theory +1602.01527 Theory +1602.01592 Representation Theory +1602.01831 High Energy Astrophysical Phenomena +1602.01848 Quantitative Methods +1602.02370 Instrumentation and Methods for Astrophysics +1602.02467 Cosmology and Nongalactic Astrophysics +1602.02728 Instrumentation and Methods for Astrophysics +1602.02742 Disordered Systems and Neural Networks +1602.02752 Astrophysics of Galaxies +1602.02763 Phenomenology +1602.02962 Theory +1602.03102 Disordered Systems and Neural Networks +1602.03159 Lattice +1602.03216 Instrumentation and Detectors +1602.03447 Physics and Society +1602.03462 Phenomenology +1602.03530 Theory +1602.03893 Theory +1602.03920 High Energy Astrophysical Phenomena +1602.04146 Systems and Control +1602.04160 +1602.04599 Geometric Topology +1602.04859 Phenomenology +1602.04899 Phenomenology +1602.04928 Theory +1602.04968 +1602.05324 +1602.05735 Theory +1602.05752 Theory +1602.05808 Statistical Mechanics +1602.05851 Phenomenology +1602.05940 Formal Languages and Automata Theory +1602.06112 Phenomenology +1602.06184 Strongly Correlated Electrons +1602.06478 Strongly Correlated Electrons +1602.06592 High Energy Astrophysical Phenomena +1602.06625 High Energy Astrophysical Phenomena +1602.06670 Other Condensed Matter +1602.06721 Materials Science +1602.06761 +1602.06825 High Energy Astrophysical Phenomena +1602.06884 Phenomenology +1602.06982 Astrophysics of Galaxies +1602.07211 Theory +1602.07214 Phenomenology +1602.07263 Theory +1602.07354 Superconductivity +1602.07540 Phenomenology +1602.07801 +1602.07821 Phenomenology +1602.07869 +1602.07879 +1602.07926 Disordered Systems and Neural Networks +1602.07940 Data Analysis, Statistics and Probability +1602.08436 High Energy Astrophysical Phenomena +1602.08626 Classical Analysis and ODEs +1602.08946 Chemical Physics +1602.09093 Geometric Topology +1603.00164 +1603.00293 Computation +1603.00296 Cosmology and Nongalactic Astrophysics +1603.00712 +1603.00718 Phenomenology +1603.00746 Data Analysis, Statistics and Probability +1603.00806 Information Retrieval +1603.01124 +1603.01138 Phenomenology +1603.01282 Phenomenology +1603.01620 Phenomenology +1603.01746 Statistical Mechanics +1603.01762 +1603.01812 Mesoscale and Nanoscale Physics +1603.01827 Materials Science +1603.02002 Phenomenology +1603.02017 Earth and Planetary Astrophysics +1603.02085 Theory +1603.02090 Phenomenology +1603.02103 +1603.02135 Chaotic Dynamics +1603.02136 Theory +1603.02289 Theory +1603.02306 Fluid Dynamics +1603.02333 +1603.02342 +1603.02583 Theory +1603.02647 Quantum Gases +1603.02687 +1603.02797 Computational Physics +1603.02833 +1603.02943 Phenomenology +1603.03029 Theory +1603.03054 Statistical Mechanics +1603.03263 Mesoscale and Nanoscale Physics +1603.03273 Strongly Correlated Electrons +1603.03512 Statistical Mechanics +1603.03591 Atomic Physics +1603.03880 +1603.03957 Computational Physics +1603.04048 Optics +1603.04165 Theory +1603.04248 Phenomenology +1603.04291 +1603.04470 Theory +1603.04684 Theory +1603.05025 +1603.05101 Disordered Systems and Neural Networks +1603.05201 Learning +1603.05228 Theory +1603.05246 Strongly Correlated Electrons +1603.05255 Cosmology and Nongalactic Astrophysics +1603.05404 +1603.05439 Atomic Physics +1603.05466 Quantum Gases +1603.05546 Phenomenology +1603.05682 Phenomenology +1603.05685 Phenomenology +1603.05750 Cosmology and Nongalactic Astrophysics +1603.05781 Physics and Society +1603.05940 Statistical Mechanics +1603.05976 Instrumentation and Methods for Astrophysics +1603.05998 Solar and Stellar Astrophysics +1603.06064 Statistical Mechanics +1603.06126 General Physics +1603.06172 Theory +1603.06253 Materials Science +1603.06343 +1603.06379 Solar and Stellar Astrophysics +1603.06449 Experiment +1603.06548 Phenomenology +1603.06577 Astrophysics of Galaxies +1603.06826 Pattern Formation and Solitons +1603.06931 Fluid Dynamics +1603.06981 Phenomenology +1603.06996 Human-Computer Interaction +1603.07155 Accelerator Physics +1603.07335 Phenomenology +1603.07426 Phenomenology +1603.07483 +1603.07544 Strongly Correlated Electrons +1603.07551 Mesoscale and Nanoscale Physics +1603.07672 Phenomenology +1603.07786 Computational Complexity +1603.08337 Theory +1603.08694 +1603.08718 +1603.08805 Superconductivity +1603.08939 Theory +1603.08973 Human-Computer Interaction +1603.09140 Optics +1603.09244 Theory +1604.00005 Cosmology and Nongalactic Astrophysics +1604.00251 +1604.00361 Classical Physics +1604.00383 Theory +1604.00619 Chaotic Dynamics +1604.00748 Astrophysics of Galaxies +1604.00853 Phenomenology +1604.00953 Statistical Mechanics +1604.00977 Materials Science +1604.01030 Theory +1604.01144 Strongly Correlated Electrons +1604.01419 Phenomenology +1604.01439 Soft Condensed Matter +1604.01834 +1604.01883 Astrophysics of Galaxies +1604.01900 Materials Science +1604.01932 Phenomenology +1604.02017 Phenomenology +1604.02079 Mesoscale and Nanoscale Physics +1604.02091 Theory +1604.02470 Theory +1604.02479 Materials Science +1604.02551 +1604.02872 Physics and Society +1604.02977 Lattice +1604.03064 Materials Science +1604.03073 Neural and Evolutionary Computing +1604.03120 Theory +1604.03134 Solar and Stellar Astrophysics +1604.03385 Mesoscale and Nanoscale Physics +1604.03724 Solar and Stellar Astrophysics +1604.03777 Quantum Gases +1604.03784 Strongly Correlated Electrons +1604.03842 Solar and Stellar Astrophysics +1604.04000 Theory +1604.04181 Theory +1604.04283 Strongly Correlated Electrons +1604.04365 Strongly Correlated Electrons +1604.04565 Strongly Correlated Electrons +1604.04617 Theory +1604.05100 +1604.05187 Soft Condensed Matter +1604.05308 Theory +1604.05382 Fluid Dynamics +1604.05409 High Energy Astrophysical Phenomena +1604.05641 Solar and Stellar Astrophysics +1604.05651 Phenomenology +1604.05737 Cosmology and Nongalactic Astrophysics +1604.05762 Astrophysics of Galaxies +1604.05824 +1604.05978 Neural and Evolutionary Computing +1604.06186 Theory +1604.06214 Astrophysics of Galaxies +1604.06216 +1604.06218 Astrophysics of Galaxies +1604.06235 Materials Science +1604.06276 Combinatorics +1604.06330 Plasma Physics +1604.06467 Phenomenology +1604.06470 Statistical Mechanics +1604.06497 Astrophysics of Galaxies +1604.06579 Cosmology and Nongalactic Astrophysics +1604.06631 Theory +1604.06661 Superconductivity +1604.06805 Astrophysics of Galaxies +1604.06814 Astrophysics of Galaxies +1604.06999 Differential Geometry +1604.07156 Solar and Stellar Astrophysics +1604.07416 Theory +1604.07501 Astrophysics of Galaxies +1604.07749 Solar and Stellar Astrophysics +1604.07777 Phenomenology +1604.07936 Chaotic Dynamics +1604.08093 +1604.08157 Earth and Planetary Astrophysics +1604.08203 Theory +1604.08286 Earth and Planetary Astrophysics +1604.08436 Atomic and Molecular Clusters +1604.08570 Solar and Stellar Astrophysics +1604.08706 +1604.08765 Theory +1604.08894 Materials Science +1605.00454 Theory +1605.00692 Phenomenology +1605.00742 High Energy Astrophysical Phenomena +1605.00866 Quantum Algebra +1605.00881 Theory +1605.00909 Solar and Stellar Astrophysics +1605.01077 Fluid Dynamics +1605.01183 Solar and Stellar Astrophysics +1605.01306 Astrophysics of Galaxies +1605.01307 High Energy Astrophysical Phenomena +1605.01316 +1605.01355 Solar and Stellar Astrophysics +1605.01409 Phenomenology +1605.01461 Instrumentation and Methods for Astrophysics +1605.01618 Earth and Planetary Astrophysics +1605.01646 Instrumentation and Methods for Astrophysics +1605.01694 Mesoscale and Nanoscale Physics +1605.01726 Theory +1605.01738 Solar and Stellar Astrophysics +1605.01739 Astrophysics of Galaxies +1605.01812 Solar and Stellar Astrophysics +1605.01883 Astrophysics of Galaxies +1605.01902 Mesoscale and Nanoscale Physics +1605.01957 Astrophysics of Galaxies +1605.02025 Materials Science +1605.02059 Phenomenology +1605.02111 Cosmology and Nongalactic Astrophysics +1605.02149 Cosmology and Nongalactic Astrophysics +1605.02409 Instrumentation and Methods for Astrophysics +1605.02708 Earth and Planetary Astrophysics +1605.02726 +1605.02733 +1605.02786 High Energy Astrophysical Phenomena +1605.02802 Astrophysics of Galaxies +1605.02807 Phenomenology +1605.02822 Astrophysics of Galaxies +1605.03006 Strongly Correlated Electrons +1605.03237 Phenomenology +1605.03442 Materials Science +1605.03459 Experiment +1605.03672 High Energy Astrophysical Phenomena +1605.03882 High Energy Astrophysical Phenomena +1605.03925 Phenomenology +1605.04187 Solar and Stellar Astrophysics +1605.04258 Theory +1605.04488 High Energy Astrophysical Phenomena +1605.04490 Theory +1605.04733 Disordered Systems and Neural Networks +1605.04810 Probability +1605.04839 Phenomenology +1605.04878 Solar and Stellar Astrophysics +1605.04884 Theory +1605.04908 Earth and Planetary Astrophysics +1605.05148 +1605.05189 Operator Algebras +1605.05205 Earth and Planetary Astrophysics +1605.05417 Astrophysics of Galaxies +1605.05449 +1605.05792 Astrophysics of Galaxies +1605.05934 Instrumentation and Detectors +1605.05946 Cosmology and Nongalactic Astrophysics +1605.05952 Statistical Mechanics +1605.05976 +1605.06012 +1605.06129 Strongly Correlated Electrons +1605.06133 High Energy Astrophysical Phenomena +1605.06221 Solar and Stellar Astrophysics +1605.06460 Operator Algebras +1605.06622 High Energy Astrophysical Phenomena +1605.06854 Mesoscale and Nanoscale Physics +1605.06978 Instrumentation and Methods for Astrophysics +1605.07017 Superconductivity +1605.07225 Plasma Physics +1605.07631 Theory +1605.07730 Numerical Analysis +1605.07741 Solar and Stellar Astrophysics +1605.07929 +1605.07955 Phenomenology +1605.08231 Earth and Planetary Astrophysics +1605.08298 +1605.08324 Phenomenology +1605.08474 Classical Analysis and ODEs +1605.08733 Materials Science +1605.09246 Phenomenology +1605.09380 Cosmology and Nongalactic Astrophysics +1605.09558 Data Structures and Algorithms +1605.09633 Exactly Solvable and Integrable Systems +1606.00146 Plasma Physics +1606.00928 Molecular Networks +1606.01047 Phenomenology +1606.01291 High Energy Astrophysical Phenomena +1606.01468 High Energy Astrophysical Phenomena +1606.01661 Plasma Physics +1606.02049 Solar and Stellar Astrophysics +1606.02398 Earth and Planetary Astrophysics +1606.02409 Computer Science and Game Theory +1606.02429 Superconductivity +1606.02697 Cryptography and Security +1606.02834 Statistical Mechanics +1606.02883 +1606.02895 Mesoscale and Nanoscale Physics +1606.03050 Materials Science +1606.03169 +1606.03426 Data Analysis, Statistics and Probability +1606.03756 Phenomenology +1606.04007 Fluid Dynamics +1606.04069 Algebraic Geometry +1606.04148 Phenomenology +1606.04280 Solar and Stellar Astrophysics +1606.04572 Astrophysics of Galaxies +1606.04768 Classical Analysis and ODEs +1606.04796 General Finance +1606.04851 Solar and Stellar Astrophysics +1606.04939 History and Philosophy of Physics +1606.05147 Materials Science +1606.05178 Materials Science +1606.05414 Atomic Physics +1606.05653 Theory +1606.05890 Quantum Gases +1606.05999 Functional Analysis +1606.06200 Solar and Stellar Astrophysics +1606.06400 Superconductivity +1606.06441 Phenomenology +1606.06527 Strongly Correlated Electrons +1606.06619 Mesoscale and Nanoscale Physics +1606.06641 Mesoscale and Nanoscale Physics +1606.06824 Earth and Planetary Astrophysics +1606.06838 Numerical Analysis +1606.06919 Theory +1606.07229 Solar and Stellar Astrophysics +1606.07374 Learning +1606.07999 Materials Science +1606.09256 Solar and Stellar Astrophysics +1607.00247 Strongly Correlated Electrons +1607.00316 Biological Physics +1607.00327 Differential Geometry +1607.00403 Mesoscale and Nanoscale Physics +1607.00838 Phenomenology +1607.01067 Dynamical Systems +1607.01089 Probability +1607.01290 Astrophysics of Galaxies +1607.01437 Computer Vision and Pattern Recognition +1607.01580 Geometric Topology +1607.02479 Subcellular Processes +1607.02510 +1607.02529 Phenomenology +1607.02747 High Energy Astrophysical Phenomena +1607.02771 +1607.02958 Materials Science +1607.02961 +1607.03091 Astrophysics of Galaxies +1607.03638 Materials Science +1607.03642 Systems and Control +1607.03647 Optics +1607.03749 Phenomenology +1607.03946 Cryptography and Security +1607.03994 Superconductivity +1607.04098 Dynamical Systems +1607.04135 Algebraic Geometry +1607.04487 Astrophysics of Galaxies +1607.04648 Computer Vision and Pattern Recognition +1607.04693 Classical Analysis and ODEs +1607.04742 Classical Analysis and ODEs +1607.04772 Logic +1607.04775 Social and Information Networks +1607.04867 Learning +1607.04872 Analysis of PDEs +1607.04889 Computer Vision and Pattern Recognition +1607.04902 Logic +1607.04910 Formal Languages and Automata Theory +1607.04962 +1607.04985 Plasma Physics +1607.05028 Human-Computer Interaction +1607.05163 Mesoscale and Nanoscale Physics +1607.05264 Instrumentation and Detectors +1607.05266 Chemical Physics +1607.05267 Number Theory +1607.05268 +1607.05269 Instrumentation and Detectors +1607.05270 Instrumentation and Detectors +1607.05271 Learning +1607.05274 Astrophysics of Galaxies +1607.05280 Theory +1607.05291 Phenomenology +1607.05294 +1607.05295 Strongly Correlated Electrons +1607.05296 Strongly Correlated Electrons +1607.05298 Logic +1607.05300 General Physics +1607.05302 Robotics +1607.05305 Theory +1607.05310 Dynamical Systems +1607.05313 Atmospheric and Oceanic Physics +1607.05319 Instrumentation and Methods for Astrophysics +1607.05320 Combinatorics +1607.05321 Chaotic Dynamics +1607.05322 Statistical Mechanics +1607.05323 Probability +1607.05324 Astrophysics of Galaxies +1607.05325 Metric Geometry +1607.05327 Robotics +1607.05334 Neurons and Cognition +1607.05335 Information Theory +1607.05336 Computation +1607.05337 Algebraic Geometry +1607.05338 Computer Vision and Pattern Recognition +1607.05340 Optics +1607.05341 Commutative Algebra +1607.05344 Distributed, Parallel, and Cluster Computing +1607.05345 Information Theory +1607.05347 Computational Geometry +1607.05348 Optics +1607.05350 Functional Analysis +1607.05352 History and Overview +1607.05353 Cell Behavior +1607.05357 Analysis of PDEs +1607.05358 Strongly Correlated Electrons +1607.05363 Solar and Stellar Astrophysics +1607.05367 +1607.05372 Operator Algebras +1607.05373 +1607.05374 Analysis of PDEs +1607.05375 Optimization and Control +1607.05383 Cosmology and Nongalactic Astrophysics +1607.05384 Materials Science +1607.05386 Tissues and Organs +1607.05388 Pattern Formation and Solitons +1607.05390 Neural and Evolutionary Computing +1607.05391 Geophysics +1607.05392 Combinatorics +1607.05393 Group Theory +1607.05394 Number Theory +1607.05396 Computer Vision and Pattern Recognition +1607.05398 Populations and Evolution +1607.05402 Robotics +1607.05403 Phenomenology +1607.05404 +1607.05407 Mesoscale and Nanoscale Physics +1607.05408 Computation and Language +1607.05411 Group Theory +1607.05414 +1607.05415 Statistics Theory +1607.05417 Numerical Analysis +1607.05419 +1607.05421 Statistics Theory +1607.05422 Information Retrieval +1607.05423 Computer Vision and Pattern Recognition +1607.05424 Methodology +1607.05425 Networking and Internet Architecture +1607.05426 Dynamical Systems +1607.05427 Computer Vision and Pattern Recognition +1607.05430 Statistics Theory +1607.05431 Group Theory +1607.05433 Analysis of PDEs +1607.05439 Analysis of PDEs +1607.05440 Computer Vision and Pattern Recognition +1607.05441 Optimization and Control +1607.05446 Accelerator Physics +1607.05448 Systems and Control +1607.05449 Solar and Stellar Astrophysics +1607.05452 Probability +1607.05453 Complex Variables +1607.05454 Statistics Theory +1607.05456 Materials Science +1607.05458 Theory +1607.05460 Combinatorics +1607.05462 Information Theory +1607.05466 Combinatorics +1607.05467 Probability +1607.05475 Optics +1607.05476 Optics +1607.05477 Computer Vision and Pattern Recognition +1607.05478 Astrophysics of Galaxies +1607.05484 Combinatorics +1607.05485 Systems and Control +1607.05489 Probability +1607.05490 +1607.05491 Strongly Correlated Electrons +1607.05492 Chemical Physics +1607.05494 Computational Complexity +1607.05496 Classical Physics +1607.05498 Soft Condensed Matter +1607.05501 Probability +1607.05502 Functional Analysis +1607.05504 Analysis of PDEs +1607.05505 Logic +1607.05508 Materials Science +1607.05512 Software Engineering +1607.05514 General Finance +1607.05515 Logic +1607.05516 Data Structures and Algorithms +1607.05519 Superconductivity +1607.05521 Algebraic Topology +1607.05522 +1607.05523 Computer Vision and Pattern Recognition +1607.05527 Computational Geometry +1607.05529 Computer Vision and Pattern Recognition +1607.05536 Statistics Theory +1607.05538 Databases +1607.05539 Distributed, Parallel, and Cluster Computing +1607.05543 Information Theory +1607.05545 Chemical Physics +1607.05546 Theory +1607.05547 Computational Geometry +1607.05552 Commutative Algebra +1607.05554 Complex Variables +1607.05557 Optics +1607.05558 Materials Science +1607.05560 Probability +1607.05561 Combinatorics +1607.05564 Optimization and Control +1607.05568 Optimization and Control +1607.05574 Probability +1607.05575 Instrumentation and Methods for Astrophysics +1607.05578 Analysis of PDEs +1607.05579 Theory +1607.05581 General Physics +1607.05583 General Physics +1607.05584 Numerical Analysis +1607.05590 Systems and Control +1607.05593 Differential Geometry +1607.05594 Commutative Algebra +1607.05595 Number Theory +1607.05597 Data Structures and Algorithms +1607.05601 Artificial Intelligence +1607.05602 Information Theory +1607.05603 Mesoscale and Nanoscale Physics +1607.05604 Differential Geometry +1607.05605 +1607.05606 Digital Libraries +1607.05607 Mesoscale and Nanoscale Physics +1607.05608 Statistical Finance +1607.05610 Logic +1607.05613 +1607.05620 Computer Vision and Pattern Recognition +1607.05622 Numerical Analysis +1607.05624 Complex Variables +1607.05625 Optimization and Control +1607.05627 Analysis of PDEs +1607.05629 Number Theory +1607.05636 Statistics Theory +1607.05638 Analysis of PDEs +1607.05640 Representation Theory +1607.05642 Lattice +1607.05644 Differential Geometry +1607.05645 Distributed, Parallel, and Cluster Computing +1607.05648 Spectral Theory +1607.05651 Number Theory +1607.05653 Information Theory +1607.05655 Strongly Correlated Electrons +1607.05657 Mesoscale and Nanoscale Physics +1607.05658 Materials Science +1607.05659 Analysis of PDEs +1607.05660 Statistical Finance +1607.05662 Differential Geometry +1607.05666 Computation and Language +1607.05671 Logic in Computer Science +1607.05672 Strongly Correlated Electrons +1607.05675 Combinatorics +1607.05678 Analysis of PDEs +1607.05681 Solar and Stellar Astrophysics +1607.05685 Geometric Topology +1607.05688 Optics +1607.05689 Materials Science +1607.05690 Neural and Evolutionary Computing +1607.05691 Computer Vision and Pattern Recognition +1607.05693 Superconductivity +1607.05694 Dynamical Systems +1607.05697 Data Structures and Algorithms +1607.05698 Dynamical Systems +1607.05699 Computer Science and Game Theory +1607.05702 Databases +1607.05704 Robotics +1607.05707 Programming Languages +1607.05709 Statistics Theory +1607.05712 Statistics Theory +1607.05716 Probability +1607.05718 Number Theory +1607.05719 +astro-ph/0702301 +physics/0106051 General Physics +1001.3090 Information Theory +1006.1694 Information Theory +1009.4466 Mesoscale and Nanoscale Physics +1202.1574 Information Theory +1204.5487 Astrophysics of Galaxies +1210.2251 Probability +1210.7593 Number Theory +1212.4340 High Energy Astrophysical Phenomena +1301.2126 Mesoscale and Nanoscale Physics +1303.1034 Mesoscale and Nanoscale Physics +1303.2533 Mesoscale and Nanoscale Physics +1307.1759 Learning +1307.4517 High Energy Astrophysical Phenomena +1307.4532 Information Theory +1307.5371 Cosmology and Nongalactic Astrophysics +1307.7091 Spectral Theory +1310.8531 Classical Analysis and ODEs +1312.3670 Dynamical Systems +1401.0881 Mesoscale and Nanoscale Physics +1401.5457 Classical Analysis and ODEs +1401.6549 Rings and Algebras +1402.4600 Optimization and Control +1402.4618 Systems and Control +1403.6218 Algebraic Geometry +1404.5402 Mesoscale and Nanoscale Physics +1404.6710 Algebraic Geometry +1405.0539 Algebraic Geometry +1405.2268 Rings and Algebras +1405.4867 High Energy Astrophysical Phenomena +1405.5228 Methodology +1405.6297 Numerical Analysis +1406.2588 Combinatorics +1406.5961 Mesoscale and Nanoscale Physics +1407.0615 +1407.4777 Performance +1407.6651 Probability +1408.0856 Methodology +1408.2700 Sound +1409.0131 Quantum Algebra +1409.0777 Combinatorics +1409.0779 Combinatorics +1409.1558 +1409.4555 +1409.8584 Number Theory +1410.6294 Combinatorics +1411.2909 +1412.0480 Numerical Analysis +1412.4126 +1412.6065 Computational Geometry +1501.05432 Computer Vision and Pattern Recognition +1501.07900 Numerical Analysis +1502.00410 Algebraic Topology +1502.07054 Quantum Gases +1502.07386 Optimization and Control +1503.02643 Quantum Gases +1503.03992 Algebraic Geometry +1504.05225 Information Theory +1504.05863 Algebraic Geometry +1504.06050 Quantum Gases +1504.06280 Probability +1504.06288 Logic +1505.00452 Populations and Evolution +1505.01287 Statistical Mechanics +1505.03026 +1505.03833 Differential Geometry +1505.04572 Statistical Mechanics +1505.05786 Fluid Dynamics +1506.01333 Databases +1506.02267 Computation +1506.03227 Information Theory +1506.04942 Probability +1506.05423 Quantum Gases +1506.08405 Algebraic Geometry +1507.00206 Combinatorics +1507.00536 Instrumentation and Detectors +1507.01541 +1507.02085 +1507.02773 Mesoscale and Nanoscale Physics +1507.03238 Geometric Topology +1507.07289 Probability +1508.01699 Optics +1508.03323 Statistics Theory +1508.04161 Analysis of PDEs +1508.07616 Populations and Evolution +1508.07617 Analysis of PDEs +1508.07619 Analysis of PDEs +1508.07936 Algebraic Geometry +1509.00197 Phenomenology +1509.01392 Statistical Mechanics +1509.01531 Systems and Control +1509.01622 Quantum Algebra +1509.02061 Functional Analysis +1509.03038 Theory +1509.03286 Cosmology and Nongalactic Astrophysics +1509.03623 Materials Science +1509.03786 Cosmology and Nongalactic Astrophysics +1509.04809 Quantum Gases +1509.05115 Combinatorics +1509.06014 Dynamical Systems +1509.06179 Soft Condensed Matter +1509.06456 Optics +1509.07657 Algebraic Geometry +1510.00217 Physics and Society +1510.00277 Physics and Society +1510.03625 Algebraic Geometry +1510.05351 Numerical Analysis +1510.05565 High Energy Astrophysical Phenomena +1510.05967 Superconductivity +1510.07863 Numerical Analysis +1510.08705 Algebraic Geometry +1511.02291 +1511.03396 +1511.03995 Computer Vision and Pattern Recognition +1511.05409 Phenomenology +1511.07184 Materials Science +1511.07240 Dynamical Systems +1511.08125 +1511.09174 Information Theory +1511.09364 Neurons and Cognition +1512.02623 Spectral Theory +1512.04033 Quantum Gases +1512.04445 Chaotic Dynamics +1512.05588 +1512.07764 +1512.08925 Optimization and Control +1601.00972 Phenomenology +1601.01620 Solar and Stellar Astrophysics +1601.03925 Computer Science and Game Theory +1601.05599 Soft Condensed Matter +1601.07030 General Physics +1601.07187 Phenomenology +1601.07281 Number Theory +1601.07379 +1602.01874 Statistical Mechanics +1602.02185 Statistical Finance +1602.02312 Probability +1602.02935 +1602.05153 Combinatorics +1602.05235 Mesoscale and Nanoscale Physics +1602.06586 Learning +1602.07293 Optics +1602.07455 Neural and Evolutionary Computing +1602.08409 Digital Libraries +1602.08905 +1602.08972 Phenomenology +1603.00839 Theory +1603.01169 High Energy Astrophysical Phenomena +1603.02301 Algebraic Geometry +1603.03117 Dynamical Systems +1603.03786 Statistical Mechanics +1603.04017 Machine Learning +1603.04095 Dynamical Systems +1603.08179 Information Theory +1603.08731 Astrophysics of Galaxies +1604.00153 Algebraic Geometry +1604.00777 Logic +1604.01511 Strongly Correlated Electrons +1604.01749 Mesoscale and Nanoscale Physics +1604.01824 Trading and Market Microstructure +1604.02328 +1604.02567 Algebraic Geometry +1604.02686 Soft Condensed Matter +1604.03169 Computer Vision and Pattern Recognition +1604.03596 Algebraic Topology +1604.03952 Mesoscale and Nanoscale Physics +1604.04061 Theory +1604.04208 +1604.04213 Learning +1604.04245 Classical Analysis and ODEs +1604.04282 Optimization and Control +1604.04291 Information Theory +1604.04293 Computer Vision and Pattern Recognition +1604.04297 Optimization and Control +1604.04298 Soft Condensed Matter +1604.04304 Mesoscale and Nanoscale Physics +1604.04306 Mesoscale and Nanoscale Physics +1604.04309 Fluid Dynamics +1604.04310 Phenomenology +1604.04320 Distributed, Parallel, and Cluster Computing +1604.04321 Information Theory +1604.04325 Information Theory +1604.04326 Computer Vision and Pattern Recognition +1604.04328 Number Theory +1604.04329 Phenomenology +1604.04331 +1604.04334 Computer Vision and Pattern Recognition +1604.04336 +1604.04337 Computer Vision and Pattern Recognition +1604.04338 Optimization and Control +1604.04339 Computer Vision and Pattern Recognition +1604.04340 +1604.04341 Dynamical Systems +1604.04344 Logic in Computer Science +1604.04355 Fluid Dynamics +1604.04356 Algebraic Geometry +1604.04358 Computation and Language +1604.04359 Multiagent Systems +1604.04361 Functional Analysis +1604.04362 Information Theory +1604.04366 High Energy Astrophysical Phenomena +1604.04367 Optics +1604.04368 Probability +1604.04371 Soft Condensed Matter +1604.04373 Optics +1604.04374 Numerical Analysis +1604.04375 Functional Analysis +1604.04376 Differential Geometry +1604.04377 Computer Vision and Pattern Recognition +1604.04380 Atomic Physics +1604.04381 Probability +1604.04382 Computer Vision and Pattern Recognition +1604.04387 Analysis of PDEs +1604.04389 Human-Computer Interaction +1604.04394 +1604.04396 Number Theory +1604.04398 Genomics +1604.04399 +1604.04400 High Energy Astrophysical Phenomena +1604.04402 Cellular Automata and Lattice Gases +1604.04403 Computer Science and Game Theory +1604.04405 Statistics Theory +1604.04407 Materials Science +1604.04410 Fluid Dynamics +1604.04411 Mesoscale and Nanoscale Physics +1604.04413 Information Theory +1604.04415 Group Theory +1604.04416 Optics +1604.04417 Operator Algebras +1604.04418 Numerical Analysis +1604.04419 Numerical Analysis +1604.04420 Numerical Analysis +1604.04421 Systems and Control +1604.04422 Fluid Dynamics +1604.04423 Dynamical Systems +1604.04424 Information Theory +1604.04425 Algebraic Geometry +1604.04426 Mesoscale and Nanoscale Physics +1604.04427 Numerical Analysis +1604.04429 Group Theory +1604.04430 Functional Analysis +1604.04431 Plasma Physics +1604.04434 Learning +1604.04435 Logic in Computer Science +1604.04436 Combinatorics +1604.04437 Representation Theory +1604.04438 Mesoscale and Nanoscale Physics +1604.04442 Analysis of PDEs +1604.04443 Numerical Analysis +1604.04444 Earth and Planetary Astrophysics +1604.04447 Instrumentation and Methods for Astrophysics +1604.04448 Combinatorics +1604.04450 Theory +1604.04452 Algebraic Geometry +1604.04454 Emerging Technologies +1604.04457 Information Theory +1604.04459 Analysis of PDEs +1604.04460 +1604.04465 Cryptography and Security +1604.04466 Physics and Society +1604.04467 Plasma Physics +1604.04468 Theory +1604.04470 Quantum Algebra +1604.04471 Data Structures and Algorithms +1604.04473 Computer Vision and Pattern Recognition +1604.04474 Group Theory +1604.04475 Rings and Algebras +1604.04480 Optimization and Control +1604.04482 Distributed, Parallel, and Cluster Computing +1604.04483 Numerical Analysis +1604.04484 Quantitative Methods +1604.04488 Group Theory +1604.04489 Numerical Analysis +1604.04490 +1604.04493 Numerical Analysis +1604.04494 Computer Vision and Pattern Recognition +1604.04495 Cryptography and Security +1604.04496 Physics and Society +1604.04497 Probability +1604.04498 Systems and Control +1604.04499 Analysis of PDEs +1604.04501 Optics +1604.04505 Machine Learning +1604.04506 Artificial Intelligence +1604.04507 Atomic Physics +1604.04509 Combinatorics +1604.04512 Analysis of PDEs +1604.04514 Probability +1604.04515 Astrophysics of Galaxies +1604.04521 Analysis of PDEs +1604.04523 Combinatorics +1604.04526 Phenomenology +1604.04528 Computer Vision and Pattern Recognition +1604.04529 Numerical Analysis +1604.04532 Numerical Analysis +1604.04543 Solar and Stellar Astrophysics +1604.04546 Analysis of PDEs +1604.04548 Plasma Physics +1604.04549 Computational Complexity +1604.04553 Populations and Evolution +1604.04555 Other Condensed Matter +1604.04556 Phenomenology +1604.04557 Number Theory +1604.04561 Rings and Algebras +1604.04563 Number Theory +1604.04564 Number Theory +1604.04569 Numerical Analysis +1604.04570 Social and Information Networks +1604.04573 Computer Vision and Pattern Recognition +1604.04574 Computer Vision and Pattern Recognition +1604.04576 Optics +1604.04577 Astrophysics of Galaxies +1604.04579 Computer Science and Game Theory +1604.04581 Materials Science +1604.04582 Computation +1604.04583 Earth and Planetary Astrophysics +1604.04585 Numerical Analysis +1604.04586 Systems and Control +1604.04590 Analysis of PDEs +1604.04593 Optimization and Control +1604.04600 Machine Learning +1604.04602 +1604.04606 Functional Analysis +1604.04608 Mathematical Finance +1604.04609 General Topology +1604.04613 Astrophysics of Galaxies +1604.04615 Information Theory +1604.04618 Cryptography and Security +1604.04619 Other Condensed Matter +1604.04620 Mesoscale and Nanoscale Physics +1604.04622 Astrophysics of Galaxies +0710.0122 Algebraic Geometry +0805.0770 +0810.3075 Pattern Formation and Solitons +0904.0484 +0905.1424 Computers and Society +1001.3368 Logic in Computer Science +1110.6534 Optimization and Control +1111.7292 Dynamical Systems +1202.4517 Differential Geometry +1203.6397 Data Structures and Algorithms +1205.2788 +1205.2789 +1208.2462 Algebraic Geometry +1208.4584 Algebraic Geometry +1210.6149 +1210.7260 Optimization and Control +1212.4420 Algebraic Topology +1301.2514 +1301.5605 Probability +1302.0795 +1302.6975 Differential Geometry +1302.6979 Differential Geometry +1303.6879 Algebraic Geometry +1306.1377 +1309.1657 Phenomenology +1310.0567 Superconductivity +1312.0811 Probability +1312.7015 Strongly Correlated Electrons +1401.2924 +1401.8286 Complex Variables +1402.0196 Combinatorics +1402.1641 Algebraic Geometry +1403.3265 Molecular Networks +1404.2098 Probability +1405.2614 Analysis of PDEs +1405.4676 +1407.1945 Cosmology and Nongalactic Astrophysics +1407.3749 Economics +1407.4949 Probability +1408.1897 Probability +1408.6571 +1409.0118 Computational Finance +1409.8535 Combinatorics +1410.1349 Functional Analysis +1410.2271 Cosmology and Nongalactic Astrophysics +1410.7854 Group Theory +1410.8182 Geometric Topology +1412.0356 Computational Complexity +1412.3498 Combinatorics +1412.3938 Materials Science +1501.07021 +1501.07342 Molecular Networks +1502.06187 Learning +1503.07502 Number Theory +1503.08560 Rings and Algebras +1504.00690 Algebraic Geometry +1504.02550 Populations and Evolution +1504.03215 +1504.04140 Cosmology and Nongalactic Astrophysics +1505.00064 Functional Analysis +1505.05810 +1506.00046 Probability +1506.01752 Populations and Evolution +1506.04598 Representation Theory +1506.06067 Probability +1506.06976 +1506.07403 Atomic Physics +1506.08069 Metric Geometry +1506.08758 Probability +1506.09138 Cosmology and Nongalactic Astrophysics +1507.00001 Biological Physics +1507.00815 +1507.02166 Numerical Analysis +1507.02454 Information Theory +1507.02638 Spectral Theory +1507.03331 Numerical Analysis +1507.05538 Mesoscale and Nanoscale Physics +1507.05883 Dynamical Systems +1507.08413 Optimization and Control +1508.01836 Commutative Algebra +1508.02695 +1508.03002 Methodology +1508.07183 Phenomenology +1509.04553 Physics and Society +1509.05149 Probability +1509.05668 Information Theory +1509.06544 Physics and Society +1509.07634 Geometric Topology +1510.00152 Dynamical Systems +1510.01780 Probability +1510.03210 Logic +1510.05217 Social and Information Networks +1510.06845 +1511.00833 +1511.01507 Solar and Stellar Astrophysics +1511.01618 Probability +1511.01880 Probability +1511.03115 Metric Geometry +1511.03225 Learning +1511.03483 Neural and Evolutionary Computing +1511.03538 Probability +1511.04925 Social and Information Networks +1511.05414 Numerical Analysis +1511.06461 Dynamical Systems +1511.07734 Probability +1511.07821 Applications +1511.08180 Other Statistics +1511.08997 Computational Finance +1512.01915 Artificial Intelligence +1512.03572 Combinatorics +1512.04715 Soft Condensed Matter +1512.05562 +1512.05978 Combinatorics +1512.09376 Mesoscale and Nanoscale Physics +1601.01054 Systems and Control +1601.03535 Probability +1601.04009 Strongly Correlated Electrons +1601.04062 Astrophysics of Galaxies +1601.04503 Information Theory +1601.04557 Risk Management +1601.05838 +1601.07399 Information Theory +1601.07479 Superconductivity +1601.07966 Mesoscale and Nanoscale Physics +1602.00274 Mesoscale and Nanoscale Physics +1602.00466 Soft Condensed Matter +1602.00508 Statistical Mechanics +1602.01981 Commutative Algebra +1602.02491 Statistics Theory +1602.05102 Quantum Gases +1602.05989 +1602.06949 Strongly Correlated Electrons +1602.07290 Applications +1602.08499 Mesoscale and Nanoscale Physics +1602.08995 Optimization and Control +1603.00118 Methodology +1603.00159 Computational Physics +1603.00398 Mesoscale and Nanoscale Physics +1603.01363 Functional Analysis +1603.02514 Computation and Language +1603.02992 +1603.03528 Exactly Solvable and Integrable Systems +1603.03708 Algebraic Geometry +1603.03867 Neurons and Cognition +1603.04644 Soft Condensed Matter +1603.04827 Mesoscale and Nanoscale Physics +1603.04922 Computer Vision and Pattern Recognition +1603.05493 Atomic and Molecular Clusters +1603.05740 Superconductivity +1603.05988 Lattice +1603.06435 Category Theory +1603.06828 Data Structures and Algorithms +1603.07556 Physics and Society +1603.07887 +1603.08114 Computational Finance +1603.08742 Statistical Mechanics +1603.09060 Trading and Market Microstructure +1603.09230 Phenomenology +1604.00475 Computer Vision and Pattern Recognition +1604.01387 +1604.03127 Theory +1604.03322 Information Theory +1604.03328 Probability +1604.04109 Computational Physics +1604.05131 +1604.05206 Strongly Correlated Electrons +1604.05352 +1604.06599 Classical Physics +1604.06838 Computer Vision and Pattern Recognition +1604.07900 Analysis of PDEs +1604.07947 Mesoscale and Nanoscale Physics +1605.01859 Functional Analysis +1605.02697 Computer Vision and Pattern Recognition +1605.03546 Computational Complexity +1605.03656 +1605.03694 Physics and Society +1605.04043 Theory +1605.04208 +1605.04456 +1605.05708 Mesoscale and Nanoscale Physics +1605.07040 Phenomenology +1605.07671 Group Theory +1605.07746 Cryptography and Security +1605.07874 Computation and Language +1605.09124 Information Theory +1605.09695 Fluid Dynamics +1605.09774 Machine Learning +1605.09790 Statistical Mechanics +1606.00014 Cosmology and Nongalactic Astrophysics +1606.00560 Phenomenology +1606.01925 Data Structures and Algorithms +1606.03022 Superconductivity +1606.03930 Adaptation and Self-Organizing Systems +1606.04264 Mesoscale and Nanoscale Physics +1606.04433 Phenomenology +1606.04621 Computer Vision and Pattern Recognition +1606.04713 Theory +1606.04826 +1606.05219 Representation Theory +1606.05251 Solar and Stellar Astrophysics +1606.05364 Instrumentation and Detectors +1606.05682 Superconductivity +1606.06436 Analysis of PDEs +1606.06850 Biological Physics +1606.06899 Mesoscale and Nanoscale Physics +1606.07321 Strongly Correlated Electrons +1606.07618 Soft Condensed Matter +1606.07905 Theory +1606.07992 Computational Geometry +1606.08419 Disordered Systems and Neural Networks +1606.08926 Cosmology and Nongalactic Astrophysics +1606.09407 +1607.00057 Soft Condensed Matter +1607.00847 Learning +1607.00958 Phenomenology +1607.01195 Statistical Mechanics +1607.01800 Astrophysics of Galaxies +1607.02050 Phenomenology +1607.02075 +1607.02358 Materials Science +1607.02401 +1607.02708 Superconductivity +1607.02716 Superconductivity +1607.03304 Biological Physics +1607.04067 Statistical Mechanics +1607.04339 Information Theory +1607.05285 +1607.05301 Other Condensed Matter +1607.05369 Computer Vision and Pattern Recognition +1607.06760 Phenomenology +1607.07266 Superconductivity +1607.07320 Mesoscale and Nanoscale Physics +1607.07361 Materials Science +1607.07491 Combinatorics +1607.08662 Atomic Physics +1608.00400 Cosmology and Nongalactic Astrophysics +1608.00461 Group Theory +1608.00837 Strongly Correlated Electrons +1608.01817 Quantum Gases +1608.02506 Operator Algebras +1608.02742 Plasma Physics +1608.02983 Strongly Correlated Electrons +1608.03071 Strongly Correlated Electrons +1608.03195 Optimization and Control +1608.03359 Mesoscale and Nanoscale Physics +1608.03578 Instrumentation and Methods for Astrophysics +1608.03693 Statistical Mechanics +1608.03789 Solar and Stellar Astrophysics +1608.04223 Data Structures and Algorithms +1608.04755 Phenomenology +1608.04788 Materials Science +1608.05246 Computer Vision and Pattern Recognition +1608.05771 Phenomenology +1608.06172 Other Computer Science +1608.06432 Analysis of PDEs +1608.06673 Cryptography and Security +1608.06725 Atomic Physics +1608.08261 Robotics +1608.08409 Phenomenology +1608.08494 +1608.08810 Physics and Society +1609.00159 Probability +1609.00166 +1609.00249 Instrumentation and Detectors +1609.00507 Logic in Computer Science +1609.01455 Physics and Society +1609.01487 Mesoscale and Nanoscale Physics +1609.01659 Phenomenology +1609.01806 Experiment +1609.02126 Probability +1609.02167 Theory +1609.02245 +1609.03122 Metric Geometry +1609.03366 Soft Condensed Matter +1609.03854 Quantum Gases +1609.05135 Other Computer Science +1609.05887 Numerical Analysis +1609.06213 +1609.06216 Materials Science +1609.06284 Combinatorics +1609.06529 Theory +1609.06635 Phenomenology +1609.06910 Theory +1609.07048 Computer Science and Game Theory +1609.07289 Geometric Topology +1609.07684 Logic in Computer Science +1609.09295 Computational Physics +1609.09665 Differential Geometry +1610.00369 Computation and Language +1610.00494 Machine Learning +1610.00763 Quantitative Methods +1610.00856 Mesoscale and Nanoscale Physics +1610.01333 Earth and Planetary Astrophysics +1610.01484 Pattern Formation and Solitons +1610.01853 Materials Science +1610.02827 Experiment +1610.04032 Computer Vision and Pattern Recognition +1610.04311 +1610.04762 Functional Analysis +1610.04871 Robotics +1610.04926 Theory +1610.05215 Analysis of PDEs +1610.06726 Analysis of PDEs +1610.06758 Mesoscale and Nanoscale Physics +1610.06916 Probability +1610.07480 Instrumentation and Detectors +1610.07938 Group Theory +1610.08059 Phenomenology +1610.08109 Number Theory +1610.08113 Materials Science +1610.08998 Mesoscale and Nanoscale Physics +1610.09028 Information Theory +1610.09185 Instrumentation and Detectors +1610.09487 Adaptation and Self-Organizing Systems +1610.09629 Logic in Computer Science +1610.09671 Lattice +1610.09763 Lattice +1610.09797 Disordered Systems and Neural Networks +1611.00152 Rings and Algebras +1611.00284 Computer Vision and Pattern Recognition +1611.00513 High Energy Astrophysical Phenomena +1611.00547 Social and Information Networks +1611.00892 Cosmology and Nongalactic Astrophysics +1611.00973 Mesoscale and Nanoscale Physics +1611.01408 Computer Vision and Pattern Recognition +1611.01440 Mathematical Finance +1611.01448 Tissues and Organs +1611.01553 Logic in Computer Science +1611.02112 Logic in Computer Science +1611.02349 Dynamical Systems +1611.02489 +1611.02519 +1611.03239 Pricing of Securities +1611.03304 Quantum Gases +1611.03363 Neural and Evolutionary Computing +1611.03381 +1611.03444 +1611.03718 Computer Vision and Pattern Recognition +1611.03852 Learning +1611.03977 Artificial Intelligence +1611.04193 Quantitative Methods +1611.04292 Combinatorics +1611.04320 Pricing of Securities +1611.04325 Differential Geometry +1611.04336 +1611.04769 Phenomenology +1611.04953 Computation and Language +1611.04980 Mesoscale and Nanoscale Physics +1611.05160 +1611.05253 Numerical Analysis +1611.05308 Solar and Stellar Astrophysics +1611.05487 Machine Learning +1611.05539 Distributed, Parallel, and Cluster Computing +1611.05567 Number Theory +1611.05812 Theory +1611.05940 Machine Learning +1611.06043 +1611.06337 Numerical Analysis +1611.06347 Theory +1611.06380 Numerical Analysis +1611.06391 Computer Vision and Pattern Recognition +1611.06406 Numerical Analysis +1611.06419 Soft Condensed Matter +1611.06491 Number Theory +1611.06600 Combinatorics +1611.06612 Computer Vision and Pattern Recognition +1611.06952 Cryptography and Security +1611.06974 Combinatorics +1611.06999 +1611.07050 Astrophysics of Galaxies +1611.07067 Software Engineering +1611.07100 Machine Learning +1611.07177 Group Theory +1611.07222 Statistics Theory +1611.07237 Statistics Theory +1611.07243 Theory +1611.07247 Methodology +1611.07289 Computer Vision and Pattern Recognition +1611.07435 Computational Physics +1611.07583 Computer Vision and Pattern Recognition +1611.07588 Machine Learning +1611.07703 Computer Vision and Pattern Recognition +1611.07800 Learning +1611.07802 +1611.07805 Experiment +1611.07855 Materials Science +1611.07919 +1611.07947 High Energy Astrophysical Phenomena +1611.07961 Cosmology and Nongalactic Astrophysics +1611.07972 Materials Science +1611.07973 Superconductivity +1611.07975 Phenomenology +1611.07977 Phenomenology +1611.07978 Theory +1611.07980 Phenomenology +1611.07982 Combinatorics +1611.07984 Theory +1611.07988 Solar and Stellar Astrophysics +1611.07989 Populations and Evolution +1611.07990 Astrophysics of Galaxies +1611.07991 Astrophysics of Galaxies +1611.07992 Optimization and Control +1611.07993 Statistical Mechanics +1611.07994 Probability +1611.07995 +1611.07996 Astrophysics of Galaxies +1611.07998 Theory +1611.07999 Neurons and Cognition +1611.08001 Geometric Topology +1611.08004 Software Engineering +1611.08005 Software Engineering +1611.08006 Optimization and Control +1611.08007 +1611.08008 Algebraic Geometry +1611.08010 Geometric Topology +1611.08011 Theory +1611.08012 +1611.08013 Geometric Topology +1611.08014 Classical Physics +1611.08015 Other Condensed Matter +1611.08016 Optics +1611.08018 General Physics +1611.08019 Dynamical Systems +1611.08022 Optimization and Control +1611.08024 Learning +1611.08025 Theory +1611.08026 Group Theory +1611.08027 Analysis of PDEs +1611.08028 Numerical Analysis +1611.08029 Phenomenology +1611.08034 Computation and Language +1611.08035 Mathematical Software +1611.08037 Artificial Intelligence +1611.08038 Numerical Analysis +1611.08039 Combinatorics +1611.08041 Soft Condensed Matter +1611.08042 Accelerator Physics +1611.08043 +1611.08044 Number Theory +1611.08045 Algebraic Geometry +1611.08048 +1611.08050 Computer Vision and Pattern Recognition +1611.08053 +1611.08054 Cosmology and Nongalactic Astrophysics +1611.08056 Systems and Control +1611.08057 Numerical Analysis +1611.08059 Strongly Correlated Electrons +1611.08060 Discrete Mathematics +1611.08061 Computer Vision and Pattern Recognition +1611.08062 +1611.08063 Phenomenology +1611.08066 Discrete Mathematics +1611.08068 Combinatorics +1611.08070 Learning +1611.08072 Numerical Analysis +1611.08073 +1611.08077 Lattice +1611.08079 Software Engineering +1611.08081 Phenomenology +1611.08082 Experiment +1611.08083 Machine Learning +1611.08084 Computational Physics +1611.08086 Networking and Internet Architecture +1611.08087 Functional Analysis +1611.08088 Statistical Finance +1611.08089 Group Theory +1611.08090 +1611.08091 Computer Vision and Pattern Recognition +1611.08092 Optics +1611.08094 Medical Physics +1611.08096 Information Retrieval +1611.08097 Computer Vision and Pattern Recognition +1611.08098 Cryptography and Security +1611.08100 Dynamical Systems +1611.08101 +1611.08102 Theory +1611.08103 Artificial Intelligence +1611.08104 Machine Learning +1611.08105 Analysis of PDEs +1611.08107 Computer Vision and Pattern Recognition +1611.08110 High Energy Astrophysical Phenomena +1611.08113 Dynamical Systems +1611.08114 Materials Science +1611.08115 Phenomenology +1611.08117 Numerical Analysis +1611.08118 Other Statistics +1611.08119 Phenomenology +1611.08120 Information Theory +1611.08122 Numerical Analysis +1611.08123 +1611.08124 Analysis of PDEs +1611.08126 Number Theory +1611.08127 Numerical Analysis +1611.08128 Number Theory +1611.08129 Mesoscale and Nanoscale Physics +1611.08131 Computer Vision and Pattern Recognition +1611.08135 Information Retrieval +1611.08137 Functional Analysis +1611.08138 Quantum Algebra +1611.08139 Representation Theory +1611.08140 Logic +1611.08141 Atomic Physics +1611.08142 Space Physics +1611.08143 Logic +1611.08144 Computers and Society +1611.08146 +1611.08147 Representation Theory +1611.08148 Materials Science +1611.08150 Logic +1611.08152 Logic +1611.08153 Materials Science +1611.08154 Human-Computer Interaction +1611.08155 Materials Science +1611.08158 Optimization and Control +1611.08159 Astrophysics of Galaxies +1611.08160 Statistical Mechanics +1611.08162 Accelerator Physics +1611.08163 Medical Physics +1611.08164 +1611.08166 Phenomenology +1611.08167 Solar and Stellar Astrophysics +1611.08168 Mesoscale and Nanoscale Physics +1611.08171 Space Physics +1611.08173 Probability +1611.08174 Analysis of PDEs +1611.08176 Numerical Analysis +1611.08177 Functional Analysis +1611.08180 Number Theory +1611.08181 Number Theory +1611.08182 Theory +1611.08184 Analysis of PDEs +1611.08185 Differential Geometry +1611.08187 Phenomenology +1611.08190 Geometric Topology +1611.08191 Machine Learning +1611.08192 Statistical Mechanics +1611.08193 History and Philosophy of Physics +1611.08194 Computer Vision and Pattern Recognition +1611.08195 Computer Vision and Pattern Recognition +1611.08196 Cosmology and Nongalactic Astrophysics +1611.08197 High Energy Astrophysical Phenomena +1611.08198 Data Structures and Algorithms +1611.08200 Materials Science +1611.08201 Statistical Mechanics +1611.08202 Optimization and Control +1611.08204 Discrete Mathematics +1611.08205 Materials Science +1611.08206 Optimization and Control +1611.08208 Logic in Computer Science +1611.08209 Data Structures and Algorithms +1611.08210 Phenomenology +1611.08212 Networking and Internet Architecture +1611.08213 Classical Analysis and ODEs +1611.08214 Optics +1611.08215 Computer Vision and Pattern Recognition +1611.08217 Rings and Algebras +1611.08219 Artificial Intelligence +1611.08220 Networking and Internet Architecture +1611.08221 Statistical Mechanics +1611.08223 Lattice +1611.08224 Cell Behavior +1611.08226 Combinatorics +1611.08227 Optimization and Control +1611.08228 Differential Geometry +1611.08230 Learning +1611.08231 Plasma Physics +1611.08232 Analysis of PDEs +1611.08233 Group Theory +1611.08235 Adaptation and Self-Organizing Systems +1611.08236 Optimization and Control +1611.08237 +1611.08243 Earth and Planetary Astrophysics +1611.08244 Number Theory +1611.08245 Space Physics +1611.08246 Mesoscale and Nanoscale Physics +1611.08247 Combinatorics +1611.08249 Representation Theory +1611.08250 Experiment +1611.08251 +1611.08252 Cryptography and Security +1611.08253 Algebraic Topology +1611.08254 Differential Geometry +1611.08256 Machine Learning +1611.08257 Optimization and Control +1611.08258 Computer Vision and Pattern Recognition +1611.08259 Biomolecules +1611.08260 Optimization and Control +1611.08261 Methodology +1611.08262 Social and Information Networks +1611.08263 Operator Algebras +1611.08266 Computational Engineering, Finance, and Science +1611.08267 Information Theory +1611.08268 Robotics +1611.08269 Databases +1611.08270 Combinatorics +1611.08271 Discrete Mathematics +1611.08272 Computer Vision and Pattern Recognition +1611.08273 Systems and Control +1611.08274 Physics and Society +1611.08276 Phenomenology +1611.08277 Analysis of PDEs +1611.08278 Phenomenology +1611.08281 Pattern Formation and Solitons +1611.08283 Analysis of PDEs +1611.08285 Lattice +1611.08286 +1611.08287 Biological Physics +1611.08288 Strongly Correlated Electrons +1611.08289 General Topology +1611.08290 General Topology +1611.08292 Machine Learning +1611.08293 Statistics Theory +1611.08294 Cryptography and Security +1611.08295 Superconductivity +1611.08300 Solar and Stellar Astrophysics +1611.08301 Rings and Algebras +1611.08303 Computer Vision and Pattern Recognition +1611.08305 Astrophysics of Galaxies +1611.08306 Biological Physics +1611.08307 Neural and Evolutionary Computing +1611.08308 Computer Science and Game Theory +1611.08309 Learning +1611.08310 Neurons and Cognition +1611.08312 Number Theory +1611.08313 Numerical Analysis +1611.08316 Information Theory +1611.08317 Fluid Dynamics +1611.08318 Probability +1611.08319 Networking and Internet Architecture +1611.08321 Learning +1611.08322 Systems and Control +1611.08324 Numerical Analysis +1611.08326 Computational Complexity +1611.08327 Systems and Control +1611.08328 Geometric Topology +1611.08330 General Finance +1611.08331 Learning +1611.08333 Statistical Mechanics +1611.08335 Analysis of PDEs +1611.08336 Analysis of PDEs +1611.08337 Materials Science +1611.08338 Numerical Analysis +1611.08339 Combinatorics +1611.08340 Algebraic Geometry +1611.08342 +1611.08343 Optimization and Control +1611.08344 Lattice +1611.08345 Differential Geometry +1611.08348 Statistical Mechanics +1611.08350 Computer Vision and Pattern Recognition +1611.08351 Social and Information Networks +1611.08352 Optimization and Control +1611.08353 Biological Physics +1611.08355 Analysis of PDEs +1611.08357 Instrumentation and Detectors +1611.08358 Computation and Language +1611.08362 Disordered Systems and Neural Networks +1611.08364 Multiagent Systems +1611.08366 Machine Learning +1611.08367 Information Theory +1611.08368 Solar and Stellar Astrophysics +1611.08370 Representation Theory +1611.08372 Machine Learning +1611.08373 Machine Learning +1611.08374 Artificial Intelligence +1611.08375 Mesoscale and Nanoscale Physics +1611.08380 Operator Algebras +1611.08381 Plasma Physics +1611.08382 Operator Algebras +1611.08386 Algebraic Geometry +1611.08387 Computer Vision and Pattern Recognition +1611.08388 Lattice +1611.08389 Computer Vision and Pattern Recognition +1611.08390 Materials Science +1611.08392 Dynamical Systems +1611.08393 Portfolio Management +1611.08395 Mesoscale and Nanoscale Physics +1611.08397 Multimedia +1611.08401 Distributed, Parallel, and Cluster Computing +1611.08403 Cosmology and Nongalactic Astrophysics +1611.08404 +1611.08405 Experiment +1611.08406 Mesoscale and Nanoscale Physics +1611.08407 Theory +1611.08408 Computer Vision and Pattern Recognition +1611.08409 Solar and Stellar Astrophysics +1611.08410 Cryptography and Security +1611.08411 Fluid Dynamics +1611.08412 Solar and Stellar Astrophysics +1611.08414 Atomic Physics +1611.08415 Algebraic Topology +1611.08417 Cryptography and Security +1611.08418 Software Engineering +1611.08420 Information Theory +1611.08421 Representation Theory +1611.08422 Chaotic Dynamics +1611.08423 Classical Analysis and ODEs +1611.08425 Metric Geometry +1611.08427 Differential Geometry +1611.08430 +1611.08432 Networking and Internet Architecture +1611.08434 Optimization and Control +1611.08435 Functional Analysis +1611.08436 Probability +1611.08437 K-Theory and Homology +1611.08441 Experiment +1611.08443 Experiment +1611.08444 Statistics Theory +1611.08445 Disordered Systems and Neural Networks +1611.08446 Astrophysics of Galaxies +1611.08447 Superconductivity +1611.08448 Materials Science +1611.08451 Group Theory +1611.08452 Fluid Dynamics +1611.08454 Solar and Stellar Astrophysics +1611.08455 Superconductivity +1611.08458 Cosmology and Nongalactic Astrophysics +1611.08459 Computation and Language +1611.08461 Computer Vision and Pattern Recognition +1611.08464 Statistics Theory +1611.08465 Fluid Dynamics +1611.08467 Instrumentation and Methods for Astrophysics +1611.08468 +1611.08471 +1611.08472 Computer Vision and Pattern Recognition +1611.08473 Representation Theory +1611.08474 +1611.08477 Number Theory +1611.08478 Analysis of PDEs +1611.08479 Strongly Correlated Electrons +1611.08482 Analysis of PDEs +1611.08483 Statistics Theory +1611.08484 Social and Information Networks +1611.08486 Functional Analysis +1611.08487 Computer Science and Game Theory +1611.08488 Dynamical Systems +1611.08489 Astrophysics of Galaxies +1611.08490 Dynamical Systems +1611.08491 Numerical Analysis +1611.08492 Human-Computer Interaction +1611.08494 Instrumentation and Methods for Astrophysics +1611.08496 Combinatorics +1611.08498 Combinatorics +1611.08499 Artificial Intelligence +1611.08500 General Physics +1611.08501 General Physics +1611.08503 Analysis of PDEs +1611.08504 Phenomenology +1611.08505 Instrumentation and Detectors +1611.08506 Statistical Mechanics +1611.08507 Solar and Stellar Astrophysics +1611.08508 Cosmology and Nongalactic Astrophysics +1611.08509 Materials Science +1611.08510 Computational Finance +1611.08514 Information Theory +1611.08515 Algebraic Geometry +1611.08519 Strongly Correlated Electrons +1611.08520 Human-Computer Interaction +1611.08521 Plasma Physics +1611.08525 Operator Algebras +1611.08526 Plasma Physics +1611.08527 Computer Vision and Pattern Recognition +1611.08528 Experiment +1611.08529 Number Theory +1611.08533 Phenomenology +1611.08534 Phenomenology +1611.08536 Statistical Mechanics +1611.08537 Medical Physics +1611.08538 +1611.08540 Materials Science +1611.08542 +1611.08543 Statistics Theory +1611.08547 Cryptography and Security +1611.08548 Strongly Correlated Electrons +1611.08549 Probability +1611.08550 Digital Libraries +1611.08551 Computational Physics +1611.08552 Astrophysics of Galaxies +1611.08553 Computational Physics +1611.08555 Artificial Intelligence +1611.08556 Representation Theory +1611.08557 Analysis of PDEs +1611.08560 Information Theory +1611.08564 Dynamical Systems +1611.08565 Number Theory +1611.08566 Representation Theory +1611.08569 Phenomenology +1611.08573 Distributed, Parallel, and Cluster Computing +1611.08574 Data Structures and Algorithms +1611.08575 Data Analysis, Statistics and Probability +1611.08577 +1611.08578 Fluid Dynamics +1611.08580 Numerical Analysis +1611.08581 Theory +1611.08584 +1611.08585 Number Theory +1611.08587 Space Physics +cond-mat/0412662 Strongly Correlated Electrons +nlin/0607023 Adaptation and Self-Organizing Systems +quant-ph/0702092 +1104.2530 Representation Theory +1606.02935 General Physics +1002.1356 Combinatorics +1002.3010 General Topology +1209.2090 Statistical Mechanics +1211.1257 +1301.7712 +1303.1928 Atomic and Molecular Clusters +1303.6372 Social and Information Networks +1306.6240 Atomic Physics +1307.0717 Analysis of PDEs +1309.2052 Social and Information Networks +1310.2167 Complex Variables +1311.6216 Dynamical Systems +1312.2026 Solar and Stellar Astrophysics +1401.1651 Numerical Analysis +1402.5990 Statistical Mechanics +1402.6928 Computation +1403.0904 Methodology +1403.0989 Social and Information Networks +1403.4622 Group Theory +1404.0221 Computation +1404.3984 Systems and Control +1405.2273 Chemical Physics +1405.4501 Functional Analysis +1405.6593 +1406.1714 Combinatorics +1406.1814 Numerical Analysis +1406.2106 Physics and Society +1407.0900 Numerical Analysis +1407.3251 Differential Geometry +1409.0350 Optimization and Control +1409.6486 Commutative Algebra +1410.4126 Metric Geometry +1410.6660 Atomic and Molecular Clusters +1410.7876 Computer Vision and Pattern Recognition +1410.8595 Computational Finance +1411.4541 Number Theory +1412.3607 Algebraic Geometry +1501.07421 +1502.01631 +1502.06417 Functional Analysis +1503.05486 Soft Condensed Matter +1503.07125 Optimization and Control +1504.00253 Functional Analysis +1504.05872 Data Analysis, Statistics and Probability +1504.06381 Quantum Algebra +1504.08147 +1505.00180 Soft Condensed Matter +1505.02049 Statistical Mechanics +1506.00113 Quantum Algebra +1506.02222 Methodology +1506.03862 K-Theory and Homology +1506.05074 Experiment +1506.05995 Mesoscale and Nanoscale Physics +1506.06036 +1506.09197 Probability +1507.00886 Phenomenology +1507.04001 Social and Information Networks +1507.04211 Strongly Correlated Electrons +1507.04393 Plasma Physics +1507.04548 Experiment +1507.04769 Optimization and Control +1508.00633 Analysis of PDEs +1508.06968 Statistical Mechanics +1509.01423 Robotics +1509.01996 Soft Condensed Matter +1509.02185 Quantum Gases +1509.04090 Biomolecules +1509.04974 +1509.05735 Optics +1509.05781 Astrophysics of Galaxies +1509.06445 Functional Analysis +1510.02460 Information Theory +1510.04702 +1510.08509 Mesoscale and Nanoscale Physics +1511.00381 Fluid Dynamics +1511.03641 Data Structures and Algorithms +1511.03954 Theory +1511.04530 Numerical Analysis +1511.05561 Phenomenology +1511.06733 Methodology +1511.07957 Numerical Analysis +1511.08352 Experiment +1512.00177 Computation and Language +1512.00247 Representation Theory +1512.00932 Computer Vision and Pattern Recognition +1512.01655 Computer Vision and Pattern Recognition +1512.02117 Cosmology and Nongalactic Astrophysics +1512.03657 Experiment +1512.05220 Neurons and Cognition +1512.05953 Number Theory +1512.07006 +1512.07699 Instrumentation and Detectors +1512.07923 Theory +1512.08362 Representation Theory +1512.08936 Materials Science +1601.00838 +1601.01095 +1601.01148 Commutative Algebra +1601.03112 Chaotic Dynamics +1601.03510 Materials Science +1601.04768 Experiment +1601.04821 +1601.04831 Superconductivity +1601.05148 +1601.06025 Plasma Physics +1601.06066 +1601.07680 Earth and Planetary Astrophysics +1601.07733 Cosmology and Nongalactic Astrophysics +1602.00005 Phenomenology +1602.00420 +1602.00795 Social and Information Networks +1602.00874 Mesoscale and Nanoscale Physics +1602.01783 Learning +1602.01792 Information Retrieval +1602.02876 Statistical Mechanics +1602.03064 Disordered Systems and Neural Networks +1602.03319 Mesoscale and Nanoscale Physics +1602.03832 Phenomenology +1602.04749 Functional Analysis +1602.05473 Machine Learning +1602.06056 Robotics +1602.07161 Strongly Correlated Electrons +1602.07237 Analysis of PDEs +1602.08351 Strongly Correlated Electrons +1603.00204 Differential Geometry +1603.02238 Neural and Evolutionary Computing +1603.03673 Phenomenology +1603.04600 Analysis of PDEs +1603.05119 Combinatorics +1603.07473 Materials Science +1603.08330 Superconductivity +1603.08796 High Energy Astrophysical Phenomena +1603.08864 Theory +1603.09388 Statistics Theory +1604.00375 Quantum Algebra +1604.00395 Theory +1604.00611 Dynamical Systems +1604.01306 Experiment +1604.03856 Astrophysics of Galaxies +1604.03859 Analysis of PDEs +1604.04322 Applications +1604.05232 Experiment +1604.05239 Experiment +1604.05676 Computers and Society +1604.05692 Computer Science and Game Theory +1604.06321 Theory +1604.06881 Soft Condensed Matter +1604.07002 Robotics +1604.07214 Combinatorics +1604.07545 Robotics +1604.07687 Popular Physics +1604.07898 Robotics +1604.07930 Superconductivity +1604.08098 Computation +1605.00782 +1605.01115 Computer Vision and Pattern Recognition +1605.01192 Group Theory +1605.02781 +1605.04006 Computer Vision and Pattern Recognition +1605.04060 Optics +1605.04619 Genomics +1605.05157 Robotics +1605.05860 Machine Learning +1605.06185 Algebraic Geometry +1605.06484 Number Theory +1605.07637 Quantum Gases +1605.07717 Learning +1605.07767 Software Engineering +1605.07937 Representation Theory +1605.07949 Representation Theory +1605.08061 Dynamical Systems +1605.08463 Strongly Correlated Electrons +1605.08478 Learning +1605.08657 Numerical Analysis +1605.08696 Fluid Dynamics +1605.09638 +1606.01488 Dynamical Systems +1606.01910 Cosmology and Nongalactic Astrophysics +1606.02104 Number Theory +1606.02466 Materials Science +1606.03177 Statistical Mechanics +1606.03180 Logic in Computer Science +1606.03259 Combinatorics +1606.03790 Combinatorics +1606.04197 +1606.04289 Computation and Language +1606.04435 Cryptography and Security +1606.04465 +1606.04531 Commutative Algebra +1606.04601 Information Theory +1606.04801 Computer Vision and Pattern Recognition +1606.04825 Probability +1606.04844 Statistical Mechanics +1606.04893 Materials Science +1606.04903 Physics and Society +1606.04940 Medical Physics +1606.04943 Phenomenology +1606.04945 Theory +1606.04948 Theory +1606.04953 Phenomenology +1606.04954 High Energy Astrophysical Phenomena +1606.04956 Artificial Intelligence +1606.04960 Computer Science and Game Theory +1606.04963 Computation and Language +1606.04964 +1606.04967 Geometric Topology +1606.04971 Physics and Society +1606.04972 Physics and Society +1606.04974 +1606.04978 Data Structures and Algorithms +1606.04980 +1606.04985 Computer Vision and Pattern Recognition +1606.04986 Combinatorics +1606.04991 Learning +1606.04992 Computer Vision and Pattern Recognition +1606.04995 Networking and Internet Architecture +1606.04997 Networking and Internet Architecture +1606.05000 Methodology +1606.05004 Neurons and Cognition +1606.05006 Neurons and Cognition +1606.05007 Computation and Language +1606.05008 Soft Condensed Matter +1606.05012 +1606.05013 Analysis of PDEs +1606.05014 Analysis of PDEs +1606.05017 Human-Computer Interaction +1606.05018 Machine Learning +1606.05019 Information Theory +1606.05020 Metric Geometry +1606.05022 Methodology +1606.05025 Information Theory +1606.05026 Functional Analysis +1606.05029 Computation and Language +1606.05031 Data Structures and Algorithms +1606.05032 Computer Vision and Pattern Recognition +1606.05034 Networking and Internet Architecture +1606.05035 Fluid Dynamics +1606.05037 Classical Physics +1606.05038 Analysis of PDEs +1606.05039 Number Theory +1606.05040 Analysis of PDEs +1606.05041 Classical Physics +1606.05043 Information Theory +1606.05046 Statistics Theory +1606.05047 Networking and Internet Architecture +1606.05049 Methodology +1606.05050 Computational Complexity +1606.05051 Accelerator Physics +1606.05052 Mesoscale and Nanoscale Physics +1606.05053 Databases +1606.05055 Plasma Physics +1606.05057 Information Theory +1606.05058 Category Theory +1606.05060 Machine Learning +1606.05062 Probability +1606.05063 Commutative Algebra +1606.05064 Differential Geometry +1606.05065 Social and Information Networks +1606.05066 Statistical Mechanics +1606.05068 +1606.05070 Numerical Analysis +1606.05072 Mesoscale and Nanoscale Physics +1606.05073 Superconductivity +1606.05077 Combinatorics +1606.05079 Mathematical Finance +1606.05081 Optics +1606.05085 Numerical Analysis +1606.05086 +1606.05087 Phenomenology +1606.05090 Mesoscale and Nanoscale Physics +1606.05092 Software Engineering +1606.05093 Numerical Analysis +1606.05094 Hardware Architecture +1606.05095 Complex Variables +1606.05099 Dynamical Systems +1606.05100 Statistics Theory +1606.05101 Analysis of PDEs +1606.05103 Analysis of PDEs +1606.05105 Machine Learning +1606.05107 Applications +1606.05110 Machine Learning +1606.05112 Software Engineering +1606.05114 Fluid Dynamics +1606.05117 Solar and Stellar Astrophysics +1606.05118 Phenomenology +1606.05119 Discrete Mathematics +1606.05122 Cellular Automata and Lattice Gases +1606.05123 Data Structures and Algorithms +1606.05124 Robotics +1606.05128 Mesoscale and Nanoscale Physics +1606.05130 Cosmology and Nongalactic Astrophysics +1606.05132 Materials Science +1606.05133 Group Theory +1606.05134 Distributed, Parallel, and Cluster Computing +1606.05135 Information Theory +1606.05139 Probability +1606.05140 Logic +1606.05141 Theory +1606.05144 Combinatorics +1606.05145 Optics +1606.05148 Other Condensed Matter +1606.05149 +1606.05150 Dynamical Systems +1606.05153 Quantitative Methods +1606.05155 Number Theory +1606.05159 Dynamical Systems +1606.05161 Representation Theory +1606.05162 Complex Variables +1606.05165 Materials Science +1606.05167 Statistics Theory +1606.05168 Systems and Control +1606.05169 Neural and Evolutionary Computing +1606.05172 Discrete Mathematics +1606.05173 Analysis of PDEs +1606.05174 Artificial Intelligence +1606.05177 Information Theory +1606.05179 Social and Information Networks +1606.05182 Information Theory +1606.05185 Differential Geometry +1606.05190 Earth and Planetary Astrophysics +1606.05191 Algebraic Topology +1606.05193 Solar and Stellar Astrophysics +1606.05194 Other Condensed Matter +1606.05195 Number Theory +1606.05197 Classical Analysis and ODEs +1606.05199 Optics +1606.05200 Computer Vision and Pattern Recognition +1606.05203 Methodology +1606.05206 Functional Analysis +1606.05207 Numerical Analysis +1606.05208 Functional Analysis +1606.05209 Social and Information Networks +1606.05210 Data Structures and Algorithms +1606.05212 Mesoscale and Nanoscale Physics +1606.05213 Astrophysics of Galaxies +1606.05214 Spectral Theory +1606.05216 Analysis of PDEs +1606.05217 Instrumentation and Methods for Astrophysics +1606.05220 Strongly Correlated Electrons +1606.05221 Theory +1606.05224 Earth and Planetary Astrophysics +1606.05225 Data Structures and Algorithms +1606.05228 Machine Learning +1606.05231 Atomic Physics +1606.05232 +1606.05233 Computer Vision and Pattern Recognition +1606.05235 Complex Variables +1606.05236 Functional Analysis +1606.05237 Analysis of PDEs +1606.05238 Soft Condensed Matter +1606.05241 Machine Learning +1606.05242 Social and Information Networks +1606.05243 Complex Variables +1606.05244 Statistical Mechanics +1606.05245 Systems and Control +1606.05248 Social and Information Networks +1606.05253 Soft Condensed Matter +1606.05255 Computer Vision and Pattern Recognition +1606.05256 Geophysics +1606.05266 Cosmology and Nongalactic Astrophysics +1606.05267 Cosmology and Nongalactic Astrophysics +1606.05268 Information Theory +1606.05272 Systems and Control +1606.05273 Machine Learning +1606.05275 Machine Learning +1606.05276 Representation Theory +1606.05277 Methodology +1606.05279 Methodology +1606.05281 Materials Science +1606.05286 Computation and Language +1606.05287 Functional Analysis +1606.05288 Soft Condensed Matter +1606.05289 Data Structures and Algorithms +1606.05290 General Mathematics +1606.05293 Distributed, Parallel, and Cluster Computing +1606.05294 Multimedia +1606.05298 General Mathematics +1606.05299 General Mathematics +1606.05302 Statistics Theory +1606.05303 Representation Theory +1606.05304 Operator Algebras +1606.05305 Representation Theory +1606.05306 Numerical Analysis +1606.05310 Computer Vision and Pattern Recognition +1606.05311 General Topology +1606.05312 Artificial Intelligence +1606.05313 Learning +1606.05314 History and Philosophy of Physics +1606.05315 Analysis of PDEs +1606.05316 Learning +1606.05317 Probability +1606.05319 Materials Science +1606.05323 Fluid Dynamics +1606.05325 Machine Learning +1606.05326 Phenomenology +1606.05327 Symplectic Geometry +1606.05331 Computational Complexity +1606.05332 Information Theory +math-ph/0702042 +math/0405269 Geometric Topology +math/0702036 Probability +1501.00315 Cosmology and Nongalactic Astrophysics +1501.00963 Instrumentation and Methods for Astrophysics +1501.01128 Geometric Topology +1501.01188 High Energy Astrophysical Phenomena +1501.01504 Portfolio Management +1501.01519 Analysis of PDEs +1501.02800 Astrophysics of Galaxies +1501.02849 Combinatorics +1501.02938 Strongly Correlated Electrons +1501.03038 Experiment +1501.03336 Distributed, Parallel, and Cluster Computing +1501.04461 Optics +1501.04479 Optics +1501.04724 Probability +1501.04782 Computer Vision and Pattern Recognition +1501.04929 +1501.05087 High Energy Astrophysical Phenomena +1501.05138 Digital Libraries +1501.05140 Information Retrieval +1501.05194 Machine Learning +1501.05269 Physics and Society +1501.05498 Astrophysics of Galaxies +1501.05550 Materials Science +1501.05694 Astrophysics of Galaxies +1501.05911 Earth and Planetary Astrophysics +1501.06352 Astrophysics of Galaxies +1501.06405 High Energy Astrophysical Phenomena +1501.06578 High Energy Astrophysical Phenomena +1501.06858 Instrumentation and Detectors +1501.07068 +1501.07105 Strongly Correlated Electrons +1501.07897 Instrumentation and Methods for Astrophysics +1502.00309 Materials Science +1502.00394 Astrophysics of Galaxies +1502.00513 +1502.00638 Instrumentation and Methods for Astrophysics +1502.01040 Algebraic Geometry +1502.01161 Instrumentation and Detectors +1502.01727 Phenomenology +1502.01747 +1502.01904 +1502.02360 Mesoscale and Nanoscale Physics +1502.02650 High Energy Astrophysical Phenomena +1502.02773 +1502.03033 Mesoscale and Nanoscale Physics +1502.03231 Astrophysics of Galaxies +1502.03244 High Energy Astrophysical Phenomena +1502.03315 Astrophysics of Galaxies +1502.03383 General Topology +1502.04045 +1502.04261 +1502.04609 Information Retrieval +1502.05051 Solar and Stellar Astrophysics +1502.05070 Dynamical Systems +1502.05858 Astrophysics of Galaxies +1502.06771 Astrophysics of Galaxies +1502.07120 Systems and Control +1502.07240 Atomic Physics +1502.07328 Optimization and Control +1502.07573 Superconductivity +1509.00560 Earth and Planetary Astrophysics +1509.00702 Algebraic Topology +1509.00933 Solar and Stellar Astrophysics +1509.01291 Statistics Theory +1509.01906 Statistics Theory +1509.02020 Mesoscale and Nanoscale Physics +1509.02113 Atomic Physics +1509.02823 Mesoscale and Nanoscale Physics +1509.02917 Earth and Planetary Astrophysics +1509.03090 High Energy Astrophysical Phenomena +1509.03322 High Energy Astrophysical Phenomena +1509.03464 Cosmology and Nongalactic Astrophysics +1509.04312 Solar and Stellar Astrophysics +1509.04396 Astrophysics of Galaxies +1509.04458 High Energy Astrophysical Phenomena +1509.04513 Artificial Intelligence +1509.05581 Statistics Theory +1509.06206 Superconductivity +1509.06212 High Energy Astrophysical Phenomena +1509.07147 Astrophysics of Galaxies +1509.07432 Astrophysics of Galaxies +1509.08296 Mesoscale and Nanoscale Physics +1509.08378 Materials Science +1509.09197 +1509.09234 High Energy Astrophysical Phenomena +1510.00004 High Energy Astrophysical Phenomena +1510.01723 Statistical Mechanics +1510.02126 Instrumentation and Detectors +1510.02381 Astrophysics of Galaxies +1510.02623 Probability +1510.02681 Astrophysics of Galaxies +1510.03184 Strongly Correlated Electrons +1510.03402 Dynamical Systems +1510.03474 +1510.04973 Astrophysics of Galaxies +1510.05480 Dynamical Systems +1510.06244 Strongly Correlated Electrons +1510.06248 Earth and Planetary Astrophysics +1510.06709 Quantum Gases +1510.06902 Optics +1510.06926 Analysis of PDEs +1510.07003 Atomic Physics +1510.07422 Earth and Planetary Astrophysics +1510.08450 Astrophysics of Galaxies +1510.09157 High Energy Astrophysical Phenomena +1510.09167 +0803.1639 K-Theory and Homology +0808.1395 Geometric Topology +0901.0164 Superconductivity +0905.1225 Superconductivity +0905.4210 Strongly Correlated Electrons +0906.0658 Pricing of Securities +0911.1631 Strongly Correlated Electrons +1005.1458 Number Theory +1008.3126 Operator Algebras +1105.2709 +1205.5651 Sound +1205.6298 Differential Geometry +1206.0384 General Finance +1210.5065 Logic in Computer Science +1303.0536 Fluid Dynamics +1303.0537 Fluid Dynamics +1303.4465 Strongly Correlated Electrons +1303.5441 Social and Information Networks +1303.6378 Information Theory +1306.0437 Symplectic Geometry +1309.3458 Data Structures and Algorithms +1310.0958 Chaotic Dynamics +1311.1391 Group Theory +1311.1664 Materials Science +1311.5328 Probability +1312.6718 Dynamical Systems +1401.2590 Theory +1401.3973 Learning +1401.6054 Discrete Mathematics +1402.3141 Functional Analysis +1402.3699 Rings and Algebras +1404.6238 Probability +1405.5159 Chaotic Dynamics +1405.5184 Category Theory +1405.7689 Strongly Correlated Electrons +1405.7943 Cosmology and Nongalactic Astrophysics +1408.3518 Optimization and Control +1408.3898 Optimization and Control +1408.4312 Operator Algebras +1409.0285 Probability +1409.1025 Statistics Theory +1409.1829 Logic +1409.3232 Theory +1409.4025 Superconductivity +1409.4346 Functional Analysis +1409.4531 Disordered Systems and Neural Networks +1410.3491 +1410.4815 Theory +1411.4685 Number Theory +1412.1079 +1412.2388 Dynamical Systems +1412.3662 +1501.00300 Differential Geometry +1501.01770 High Energy Astrophysical Phenomena +1501.01948 Solar and Stellar Astrophysics +1501.02779 +1501.03535 +1501.05956 Physics and Society +1501.07399 Learning +1502.02693 Dynamical Systems +1502.02748 Combinatorics +1502.03600 Fluid Dynamics +1502.05302 Analysis of PDEs +1502.05690 Dynamical Systems +1502.06179 Dynamical Systems +1503.01883 Learning +1503.04749 Combinatorics +1503.08062 Theory +1503.08107 Biological Physics +1504.01926 Dynamical Systems +1504.03186 +1504.06183 General Physics +1504.06546 Cosmology and Nongalactic Astrophysics +1504.07871 Atomic Physics +1505.00136 Systems and Control +1505.01426 Combinatorics +1505.02435 Distributed, Parallel, and Cluster Computing +1505.02564 Complex Variables +1505.02932 Commutative Algebra +1505.05397 Group Theory +1505.07106 Strongly Correlated Electrons +1506.01319 Materials Science +1506.01324 Materials Science +1506.02367 Logic in Computer Science +1506.02429 +1506.04108 +1506.04327 Statistical Mechanics +1506.05479 Strongly Correlated Electrons +1506.06577 Materials Science +1506.06919 Classical Physics +1506.06937 Analysis of PDEs +1506.06986 Phenomenology +1506.08502 Optics +1506.08608 +1506.08836 Statistical Mechanics +1507.00068 +1507.00254 Algebraic Geometry +1507.00831 Atomic Physics +1507.02234 Superconductivity +1507.02607 +1507.04281 Phenomenology +1507.06317 Cosmology and Nongalactic Astrophysics +1507.07504 Mesoscale and Nanoscale Physics +1507.08245 Populations and Evolution +1507.08778 Astrophysics of Galaxies +1508.00744 Strongly Correlated Electrons +1508.03364 Theory +1508.04018 Chemical Physics +1508.05210 Phenomenology +1508.06645 Phenomenology +1508.06905 Statistical Mechanics +1508.07413 Phenomenology +1508.07628 Experiment +1509.00494 Superconductivity +1509.01396 Networking and Internet Architecture +1509.01869 +1509.01891 Chemical Physics +1509.02119 Dynamical Systems +1509.02466 +1509.02560 Chemical Physics +1509.04217 Quantum Gases +1509.04718 Theory +1509.05100 Programming Languages +1509.06374 Theory +1509.07316 Optics +1509.07697 +1509.07865 Strongly Correlated Electrons +1509.07885 Theory +1509.07888 Optics +1509.08436 Phenomenology +1509.08646 Optics +1509.09016 Materials Science +1509.09035 +1510.01203 +1510.01311 +1510.01505 Geometric Topology +1510.02423 Representation Theory +1510.03448 Theory +1510.04938 Atomic Physics +1510.05473 Chemical Physics +1510.05587 Disordered Systems and Neural Networks +1510.05975 Mesoscale and Nanoscale Physics +1510.06966 +1510.07280 Statistical Finance +1510.07466 Phenomenology +1510.07533 Superconductivity +1510.08047 Operator Algebras +1510.08354 Theory +1510.09031 +1510.09121 Complex Variables +1511.01198 Mesoscale and Nanoscale Physics +1511.01510 Strongly Correlated Electrons +1511.01731 Logic +1511.01910 Phenomenology +1511.02479 +1511.02733 Dynamical Systems +1511.02876 +1511.03484 Phenomenology +1511.03574 Theory +1511.04429 Phenomenology +1511.04461 Phenomenology +1511.05418 Superconductivity +1511.05449 Data Structures and Algorithms +1511.05686 Mesoscale and Nanoscale Physics +1511.05947 Cosmology and Nongalactic Astrophysics +1511.06359 Learning +1511.07114 Operator Algebras +1511.07173 Materials Science +1511.07220 Chaotic Dynamics +1511.07410 Algebraic Geometry +1511.08463 Numerical Analysis +1512.00385 Atomic Physics +1512.00418 Solar and Stellar Astrophysics +1512.00591 Cosmology and Nongalactic Astrophysics +1512.00785 Statistical Mechanics +1512.00805 Strongly Correlated Electrons +1512.01381 Theory +1512.02029 +1512.03071 Phenomenology +1512.03178 +1512.03635 Statistical Mechanics +1512.03683 Fluid Dynamics +1512.04299 Theory +1512.04678 Superconductivity +1512.05083 +1512.05239 Theory +1512.05563 High Energy Astrophysical Phenomena +1512.05866 +1512.05907 Astrophysics of Galaxies +1512.07168 Strongly Correlated Electrons +1512.07426 +1512.07473 +1512.07562 +1512.07789 Phenomenology +1512.07881 +1512.07912 Theory +1512.08087 +1512.08191 Applications +1512.08211 Statistical Mechanics +1512.09111 Strongly Correlated Electrons +1512.09121 Theory +1601.00075 Phenomenology +1601.00311 Computer Vision and Pattern Recognition +1601.00379 Mesoscale and Nanoscale Physics +1601.01036 Soft Condensed Matter +1601.01094 Strongly Correlated Electrons +1601.01973 +1601.02336 Mesoscale and Nanoscale Physics +1601.02974 Neurons and Cognition +1601.02988 +1601.03771 High Energy Astrophysical Phenomena +1601.03837 Cosmology and Nongalactic Astrophysics +1601.03844 Materials Science +1601.03887 Fluid Dynamics +1601.04015 +1601.04470 Chemical Physics +1601.04587 Lattice +1601.04596 Phenomenology +1601.04755 Computational Geometry +1601.04846 Strongly Correlated Electrons +1601.05169 Differential Geometry +1601.05440 Statistical Mechanics +1601.05459 Superconductivity +1601.05720 Cosmology and Nongalactic Astrophysics +1601.05883 Numerical Analysis +1601.06175 Materials Science +1601.06349 High Energy Astrophysical Phenomena +1601.06399 Phenomenology +1601.06482 Materials Science +1601.06587 +1601.06758 Dynamical Systems +1601.08063 Phenomenology +1602.00103 Strongly Correlated Electrons +1602.00123 Superconductivity +1602.00324 Lattice +1602.00371 +1602.02754 Astrophysics of Galaxies +1602.02773 Astrophysics of Galaxies +1602.02818 +1602.02870 Soft Condensed Matter +1602.03152 Materials Science +1602.03344 Phenomenology +1602.03380 +1602.03525 Quantum Gases +1602.04302 Databases +1602.04327 Number Theory +1602.04569 Soft Condensed Matter +1602.04819 Astrophysics of Galaxies +1602.05122 Phenomenology +1602.05674 Earth and Planetary Astrophysics +1602.06027 +1602.06304 Astrophysics of Galaxies +1602.06419 Theory +1602.06742 Strongly Correlated Electrons +1602.07369 Fluid Dynamics +1602.08077 Strongly Correlated Electrons +1603.00225 Optics +1603.00277 Materials Science +1603.01177 Solar and Stellar Astrophysics +1603.01447 Phenomenology +1603.01724 Theory +1603.01927 +1603.02151 Experiment +1603.02623 Statistical Mechanics +1603.02661 Theory +1603.03189 Materials Science +1603.03423 Theory +1603.04110 Artificial Intelligence +1603.04463 Materials Science +1603.04468 Phenomenology +1603.04696 Cosmology and Nongalactic Astrophysics +1603.04838 Computer Vision and Pattern Recognition +1603.04853 Earth and Planetary Astrophysics +1603.05288 Superconductivity +1603.05491 Astrophysics of Galaxies +1603.05844 Astrophysics of Galaxies +1603.05854 +1603.05871 Fluid Dynamics +1603.06127 Computation and Language +1603.06550 Superconductivity +1603.07667 Phenomenology +1603.08348 Quantum Gases +1603.08436 Phenomenology +1603.08506 High Energy Astrophysical Phenomena +1603.08942 Earth and Planetary Astrophysics +1603.09112 Materials Science +1603.09116 Atomic Physics +1603.09682 Soft Condensed Matter +1604.00720 Mesoscale and Nanoscale Physics +1604.01313 High Energy Astrophysical Phenomena +1604.01329 Subcellular Processes +1604.01521 Instrumentation and Methods for Astrophysics +1604.01636 Phenomenology +1604.01724 Operator Algebras +1604.01903 Phenomenology +1604.02053 Probability +1604.02462 High Energy Astrophysical Phenomena +1604.03060 Classical Physics +1604.03251 Soft Condensed Matter +1604.03440 Fluid Dynamics +1604.03719 High Energy Astrophysical Phenomena +1604.03906 Optimization and Control +1604.04878 Biological Physics +1604.05166 Strongly Correlated Electrons +1604.05484 Cosmology and Nongalactic Astrophysics +1604.05527 Soft Condensed Matter +1604.06271 General Physics +1604.06438 Physics and Society +1604.07580 Solar and Stellar Astrophysics +1604.08223 Cosmology and Nongalactic Astrophysics +1604.08444 +1604.08783 Solar and Stellar Astrophysics +1605.00773 Combinatorics +1605.00924 +1605.01729 Theory +1605.01775 Computer Vision and Pattern Recognition +1605.02126 +1605.02503 Strongly Correlated Electrons +1605.02618 Combinatorics +1605.02859 Representation Theory +1605.03029 Algebraic Geometry +1605.03147 Group Theory +1605.03481 Learning +1605.03782 Optimization and Control +1605.03908 +1605.03931 Functional Analysis +1605.03938 Cosmology and Nongalactic Astrophysics +1605.03947 Cosmology and Nongalactic Astrophysics +1605.04268 Theory +1605.04345 Phenomenology +1605.04389 Optics +1605.04403 Representation Theory +1605.04483 Analysis of PDEs +1605.04673 Analysis of PDEs +1605.04730 Combinatorics +1605.04851 Information Theory +1605.04895 Chemical Physics +1605.04897 Emerging Technologies +1605.04898 Analysis of PDEs +1605.04915 Instrumentation and Methods for Astrophysics +1605.04924 Earth and Planetary Astrophysics +1605.04929 +1605.04930 Multimedia +1605.04931 Materials Science +1605.04932 Data Analysis, Statistics and Probability +1605.04934 Robotics +1605.04936 Materials Science +1605.04940 Risk Management +1605.04941 Pricing of Securities +1605.04942 Materials Science +1605.04945 Statistical Finance +1605.04949 Trading and Market Microstructure +1605.04950 Optics +1605.04957 Superconductivity +1605.04961 Functional Analysis +1605.04963 Computation +1605.04966 Networking and Internet Architecture +1605.04968 +1605.04969 Combinatorics +1605.04971 Networking and Internet Architecture +1605.04976 +1605.04977 +1605.04979 Solar and Stellar Astrophysics +1605.04980 Earth and Planetary Astrophysics +1605.04982 Data Structures and Algorithms +1605.04983 Combinatorics +1605.04984 Computational Engineering, Finance, and Science +1605.04985 +1605.04986 Learning +1605.04991 Group Theory +1605.04994 +1605.04995 Optimization and Control +1605.04996 Computer Vision and Pattern Recognition +1605.05001 Soft Condensed Matter +1605.05003 Earth and Planetary Astrophysics +1605.05007 Analysis of PDEs +1605.05009 Rings and Algebras +1605.05011 Learning +1605.05013 +1605.05015 Atomic Physics +1605.05017 Materials Science +1605.05021 Accelerator Physics +1605.05022 Phenomenology +1605.05023 Numerical Analysis +1605.05024 Cryptography and Security +1605.05027 Strongly Correlated Electrons +1605.05030 Dynamical Systems +1605.05031 +1605.05036 Metric Geometry +1605.05037 Information Theory +1605.05039 +1605.05041 +1605.05042 Numerical Analysis +1605.05043 Materials Science +1605.05047 Materials Science +1605.05050 Probability +1605.05053 +1605.05054 Computer Vision and Pattern Recognition +1605.05055 Statistics Theory +1605.05056 Combinatorics +1605.05057 Mathematical Software +1605.05059 Phenomenology +1605.05060 Numerical Analysis +1605.05062 Representation Theory +1605.05063 Analysis of PDEs +1605.05065 Number Theory +1605.05067 Data Structures and Algorithms +1605.05069 Statistics Theory +1605.05070 Information Theory +1605.05071 +1605.05076 Differential Geometry +1605.05079 Logic in Computer Science +1605.05082 Symbolic Computation +1605.05083 +1605.05084 Probability +1605.05086 Mesoscale and Nanoscale Physics +1605.05089 Representation Theory +1605.05091 Earth and Planetary Astrophysics +1605.05094 Probability +1605.05096 Optimization and Control +1605.05097 Optimization and Control +1605.05099 Mesoscale and Nanoscale Physics +1605.05100 Mathematical Finance +1605.05101 Computation and Language +1605.05105 Theory +1605.05109 Distributed, Parallel, and Cluster Computing +1605.05111 Materials Science +1605.05112 Category Theory +1605.05114 Computer Science and Game Theory +1605.05115 Analysis of PDEs +1605.05117 Operator Algebras +1605.05118 Multimedia +1605.05119 +1605.05120 Human-Computer Interaction +1605.05122 Human-Computer Interaction +1605.05123 Information Theory +1605.05126 Soft Condensed Matter +1605.05130 Representation Theory +1605.05131 Rings and Algebras +1605.05135 Materials Science +1605.05139 Physics and Society +1605.05142 Learning +1605.05144 +1605.05153 Optimization and Control +1605.05154 Phenomenology +1605.05159 +1605.05163 Group Theory +1605.05173 Information Theory +1605.05174 Optics +1605.05180 Computer Vision and Pattern Recognition +1605.05181 Classical Analysis and ODEs +1605.05188 Materials Science +1605.05190 Operator Algebras +1605.05191 Probability +1605.05192 Probability +1605.05193 Phenomenology +1605.05197 Computer Vision and Pattern Recognition +1605.05198 Number Theory +1605.05201 Numerical Analysis +1605.05202 Phenomenology +1605.05203 Other Condensed Matter +1605.05204 Number Theory +1605.05206 Probability +1605.05211 Mesoscale and Nanoscale Physics +1605.05212 Learning +1605.05215 Strongly Correlated Electrons +1605.05216 Neural and Evolutionary Computing +1605.05222 Data Analysis, Statistics and Probability +1605.05223 Learning +1605.05229 Functional Analysis +1605.05231 Data Structures and Algorithms +1605.05233 Exactly Solvable and Integrable Systems +1605.05236 Data Structures and Algorithms +1605.05238 Algebraic Geometry +1605.05239 Machine Learning +1605.05240 Number Theory +1605.05241 Experiment +1605.05245 Numerical Analysis +1605.05246 General Physics +1605.05247 Quantitative Methods +1605.05248 Classical Analysis and ODEs +1605.05251 Information Theory +1605.05252 Analysis of PDEs +1605.05253 Analysis of PDEs +1605.05258 Computer Vision and Pattern Recognition +1605.05260 Combinatorics +1605.05265 Number Theory +1605.05266 Analysis of PDEs +1605.05267 Differential Geometry +1605.05269 Information Theory +1605.05272 Computer Vision and Pattern Recognition +1605.05276 General Topology +1605.05279 General Topology +1605.05280 Cryptography and Security +1605.05281 Information Theory +1605.05287 Combinatorics +1605.05295 Phenomenology +1605.05296 Neural and Evolutionary Computing +1605.05297 Numerical Analysis +1605.05299 Representation Theory +1605.05300 Representation Theory +1605.05301 Probability +1605.05302 Plasma Physics +1605.05303 Artificial Intelligence +1605.05305 Artificial Intelligence +1605.05308 Analysis of PDEs +1605.05309 Methodology +hep-ph/0501132 Phenomenology +math/0201091 Differential Geometry +math/0306054 Geometric Topology +math/0509053 Geometric Topology +0901.2344 Earth and Planetary Astrophysics +0906.3414 Earth and Planetary Astrophysics +0910.1070 Representation Theory +1007.0882 Representation Theory +1010.3797 Operator Algebras +1101.2432 Earth and Planetary Astrophysics +1108.5757 Discrete Mathematics +1110.5313 Earth and Planetary Astrophysics +1201.6350 Algebraic Geometry +1203.6017 Earth and Planetary Astrophysics +1205.1552 Networking and Internet Architecture +1205.1912 Quantitative Methods +1205.2229 Solar and Stellar Astrophysics +1205.2231 Quantum Gases +1205.2813 Quantum Gases +1205.3908 Experiment +1205.3915 General Topology +1205.3949 Superconductivity +1205.3982 Computer Science and Game Theory +1205.5323 Numerical Analysis +1205.5398 Probability +1205.5689 Astrophysics of Galaxies +1205.6216 Solar and Stellar Astrophysics +1205.6282 Theory +1205.6385 General Physics +1205.6787 Data Structures and Algorithms +1205.6843 Methodology +1206.0302 Human-Computer Interaction +1206.0356 +1206.1374 Metric Geometry +1206.1520 Solar and Stellar Astrophysics +1206.1752 Quantum Gases +1206.1795 Strongly Correlated Electrons +1206.3240 Data Structures and Algorithms +1206.3755 Physics and Society +1206.3982 Theory +1206.4994 Superconductivity +1206.5221 Combinatorics +1206.5946 Biological Physics +1206.6406 Learning +1206.6672 Materials Science +1208.0036 Functional Analysis +1208.0177 +1208.0503 Materials Science +1208.0745 +1208.0968 Number Theory +1208.1070 Information Theory +1208.1470 Analysis of PDEs +1208.1943 Differential Geometry +1208.3326 Strongly Correlated Electrons +1208.4129 Algebraic Geometry +1208.4145 Databases +1208.4522 Optics +1208.4583 Neural and Evolutionary Computing +1208.5425 +1208.5827 +1208.5934 Commutative Algebra +1208.6299 Instrumentation and Methods for Astrophysics +1208.6441 Materials Science +1211.3045 Earth and Planetary Astrophysics +1305.1821 Group Theory +1308.2818 Complex Variables +1309.2326 Algebraic Geometry +1310.4613 Combinatorics +1312.1474 Physics and Society +1403.1499 Quantum Gases +1403.7922 Cryptography and Security +1405.2164 Differential Geometry +1406.5287 Representation Theory +1407.5760 +1408.3008 +1408.3758 +1408.4394 +1409.5895 Cell Behavior +1410.0911 Probability +1411.3405 +1412.3743 Probability +1412.4010 +1412.4405 Combinatorics +1501.01228 Fluid Dynamics +1502.01023 High Energy Astrophysical Phenomena +1502.01748 Instrumentation and Detectors +1502.02454 Artificial Intelligence +1502.04795 Probability +1502.06947 Differential Geometry +1503.02227 Representation Theory +1504.00936 Experiment +1504.01287 Cryptography and Security +1504.03189 Solar and Stellar Astrophysics +1504.05174 +1505.06391 Classical Physics +1505.06748 Differential Geometry +1506.01608 Earth and Planetary Astrophysics +1506.02495 +1506.02995 Superconductivity +1506.07045 Phenomenology +1508.01688 Combinatorics +1508.02973 Statistics Theory +1508.03819 Artificial Intelligence +1508.03831 Logic +1508.04368 Mesoscale and Nanoscale Physics +1508.07372 Data Structures and Algorithms +1509.00814 Statistical Mechanics +1509.02937 Quantum Algebra +1509.08226 Lattice +1510.02821 Probability +1510.03225 Methodology +1510.05210 Algebraic Geometry +1511.01517 Operator Algebras +1511.02400 Superconductivity +1511.04068 Probability +1511.04809 Algebraic Topology +1511.07414 Cosmology and Nongalactic Astrophysics +1511.07890 Quantum Gases +1512.00799 Category Theory +1512.04295 Computer Vision and Pattern Recognition +1512.07160 Computational Geometry +1512.08504 General Physics +1512.08849 Computation and Language +1601.00593 Operator Algebras +1601.00671 Quantum Gases +1601.00799 Phenomenology +1601.03851 Mesoscale and Nanoscale Physics +1601.03859 High Energy Astrophysical Phenomena +1601.04997 +1601.05616 Differential Geometry +1601.06006 +1601.06276 Analysis of PDEs +1602.00187 Strongly Correlated Electrons +1602.01341 Analysis of PDEs +1602.02946 Differential Geometry +1602.03311 Optimization and Control +1602.04273 Group Theory +1602.05112 Learning +1602.05213 Analysis of PDEs +1602.05593 Theory +1602.06334 General Physics +1602.06590 Statistical Mechanics +1602.07112 Networking and Internet Architecture +1602.07468 Analysis of PDEs +1602.09119 Number Theory +1603.01205 Operator Algebras +1603.03800 Number Theory +1603.07368 +1603.08301 Analysis of PDEs +1603.08666 Other Computer Science +1603.09629 Optimization and Control +1604.03620 Strongly Correlated Electrons +1604.04536 Analysis of PDEs +1604.04551 Materials Science +1604.07288 Theory +1604.07820 Statistical Mechanics +1604.08295 +1605.00168 Analysis of PDEs +1605.01082 Experiment +1605.01673 Statistical Mechanics +1605.02918 Phenomenology +1605.03042 Functional Analysis +1605.03085 Computational Physics +1605.03795 Machine Learning +1605.04285 Experiment +1605.05016 Optics +1605.06630 Materials Science +1605.06988 +1606.01214 Probability +1606.01643 Differential Geometry +1606.02960 Computation and Language +1606.03097 Phenomenology +1606.04143 Algebraic Geometry +1606.07060 +1606.07210 +1606.07401 Dynamical Systems +1606.07423 Mesoscale and Nanoscale Physics +1606.08127 Optics +1606.08550 Optics +1606.08753 Phenomenology +1607.00685 +1607.01204 Rings and Algebras +1607.01216 +1607.01666 Functional Analysis +1607.02312 Materials Science +1607.02508 Theory +1607.02679 Strongly Correlated Electrons +1607.02757 Robotics +1607.02994 Logic +1607.03908 Theory +1607.04408 Disordered Systems and Neural Networks +1607.04634 Differential Geometry +1607.05097 Soft Condensed Matter +1607.05798 Materials Science +1607.06626 Soft Condensed Matter +1607.07355 Quantum Gases +1607.07410 Cosmology and Nongalactic Astrophysics +1608.00540 Algebraic Geometry +1608.00554 Data Structures and Algorithms +1608.00957 Instrumentation and Methods for Astrophysics +1608.02641 +1608.03231 +1608.03399 Statistical Mechanics +1608.04395 Quantum Gases +1608.04493 Neural and Evolutionary Computing +1608.04890 +1608.05207 Phenomenology +1608.05365 Theory +1608.05785 Soft Condensed Matter +1608.06161 Classical Analysis and ODEs +1608.06751 Mesoscale and Nanoscale Physics +1608.07073 Algebraic Geometry +1608.07466 +1608.07858 +1608.08338 Superconductivity +1608.08879 Phenomenology +1609.00802 +1609.00820 Algebraic Topology +1609.01121 Disordered Systems and Neural Networks +1609.02011 Earth and Planetary Astrophysics +1609.02545 Neurons and Cognition +1609.04042 Astrophysics of Galaxies +1609.04551 Analysis of PDEs +1609.04795 Classical Analysis and ODEs +1609.05497 Instrumentation and Detectors +1609.06113 Phenomenology +1609.07043 Probability +1609.08494 Combinatorics +1609.08561 +1609.08665 Optimization and Control +1609.09577 Information Theory +1610.00135 +1610.01376 Computer Vision and Pattern Recognition +1610.01572 Theory +1610.01659 Functional Analysis +1610.02438 Algebraic Topology +1610.03426 Analysis of PDEs +1610.03642 Phenomenology +1610.04932 Combinatorics +1610.05838 Learning +1610.06873 Soft Condensed Matter +1610.07389 Combinatorics +1610.08011 Classical Physics +1610.08141 Differential Geometry +1610.08887 Optimization and Control +1610.09073 Earth and Planetary Astrophysics +1610.09196 Analysis of PDEs +1610.09239 Soft Condensed Matter +1610.09267 Other Computer Science +1610.10067 Earth and Planetary Astrophysics +1611.00543 Phenomenology +1611.00957 Combinatorics +1611.00990 Optimization and Control +1611.01124 Algebraic Geometry +1611.01201 Strongly Correlated Electrons +1611.01297 Materials Science +1611.01584 Computer Vision and Pattern Recognition +1611.01594 Distributed, Parallel, and Cluster Computing +1611.01811 +1611.01880 Computers and Society +1611.01901 Combinatorics +1611.01917 Numerical Analysis +1611.02024 Neural and Evolutionary Computing +1611.02093 Combinatorics +1611.02106 Phenomenology +1611.02317 Tissues and Organs +1611.02319 Networking and Internet Architecture +1611.02407 Probability +1611.02546 Networking and Internet Architecture +1611.02710 Astrophysics of Galaxies +1611.02714 Cosmology and Nongalactic Astrophysics +1611.02779 Artificial Intelligence +1611.02987 Instrumentation and Detectors +1611.03006 Cryptography and Security +1611.03079 Graphics +1611.03081 Sound +1611.03083 Earth and Planetary Astrophysics +1611.03085 Earth and Planetary Astrophysics +1611.03087 Cosmology and Nongalactic Astrophysics +1611.03090 History and Overview +1611.03099 Other Computer Science +1611.03108 Classical Physics +1611.03109 Learning +1611.03110 Statistical Finance +1611.03112 Computation +1611.03113 Networking and Internet Architecture +1611.03114 Operator Algebras +1611.03116 Theory +1611.03117 Complex Variables +1611.03118 Combinatorics +1611.03119 Genomics +1611.03121 Materials Science +1611.03122 Superconductivity +1611.03125 Learning +1611.03127 +1611.03129 Combinatorics +1611.03130 Computer Vision and Pattern Recognition +1611.03132 Superconductivity +1611.03133 History and Philosophy of Physics +1611.03136 +1611.03138 Mesoscale and Nanoscale Physics +1611.03140 Chemical Physics +1611.03141 Probability +1611.03142 Theory +1611.03143 Disordered Systems and Neural Networks +1611.03144 Molecular Networks +1611.03145 Pattern Formation and Solitons +1611.03146 Methodology +1611.03147 +1611.03149 Materials Science +1611.03151 Materials Science +1611.03152 Atomic Physics +1611.03154 Materials Science +1611.03155 Methodology +1611.03159 Data Structures and Algorithms +1611.03160 Astrophysics of Galaxies +1611.03161 +1611.03162 Adaptation and Self-Organizing Systems +1611.03163 Theory +1611.03165 Disordered Systems and Neural Networks +1611.03166 Combinatorics +1611.03167 Optimization and Control +1611.03168 Social and Information Networks +1611.03169 Information Theory +1611.03170 Solar and Stellar Astrophysics +1611.03171 Instrumentation and Methods for Astrophysics +1611.03172 Number Theory +1611.03174 Functional Analysis +1611.03176 Information Theory +1611.03177 Computation +1611.03178 Sound +1611.03181 Combinatorics +1611.03183 Information Theory +1611.03185 Strongly Correlated Electrons +1611.03186 Cryptography and Security +1611.03187 Computational Geometry +1611.03195 +1611.03196 Combinatorics +1611.03197 Networking and Internet Architecture +1611.03198 Quantum Gases +1611.03199 Learning +1611.03202 Human-Computer Interaction +1611.03204 Databases +1611.03205 +1611.03209 +1611.03213 Other Computer Science +1611.03214 Learning +1611.03215 Instrumentation and Detectors +1611.03216 Materials Science +1611.03217 Computer Vision and Pattern Recognition +1611.03219 Applications +1611.03221 Combinatorics +1611.03223 Soft Condensed Matter +1611.03226 Distributed, Parallel, and Cluster Computing +1611.03227 Machine Learning +1611.03228 Lattice +1611.03229 Computational Physics +1611.03230 Materials Science +1611.03231 Machine Learning +1611.03234 Strongly Correlated Electrons +1611.03235 Solar and Stellar Astrophysics +1611.03236 Combinatorics +1611.03237 Analysis of PDEs +1611.03241 Combinatorics +1611.03242 Theory +1611.03243 Soft Condensed Matter +1611.03244 Combinatorics +1611.03247 Statistical Mechanics +1611.03248 Algebraic Geometry +1611.03252 Cryptography and Security +1611.03253 Data Structures and Algorithms +1611.03254 Social and Information Networks +1611.03256 Phenomenology +1611.03258 Classical Physics +1611.03259 Combinatorics +1611.03260 Computational Geometry +1611.03261 Analysis of PDEs +1611.03263 Commutative Algebra +1611.03265 Representation Theory +1611.03266 +1611.03267 Logic in Computer Science +1611.03268 Computer Vision and Pattern Recognition +1611.03270 Computer Vision and Pattern Recognition +1611.03272 +1611.03274 Information Theory +1611.03275 Experiment +1611.03278 Experiment +1611.03279 Computation and Language +1611.03280 Commutative Algebra +1611.03285 Solar and Stellar Astrophysics +1611.03288 Statistical Mechanics +1611.03292 Complex Variables +1611.03293 +1611.03294 Probability +1611.03295 Atmospheric and Oceanic Physics +1611.03296 Analysis of PDEs +1611.03297 Phenomenology +1611.03298 Social and Information Networks +1611.03299 +1611.03300 Phenomenology +1611.03301 Functional Analysis +1611.03302 Group Theory +1611.03303 +1611.03305 Information Retrieval +1611.03307 Networking and Internet Architecture +1611.03308 Experiment +1611.03309 Methodology +1611.03310 Number Theory +1611.03312 Phenomenology +1611.03313 Computer Vision and Pattern Recognition +1611.03315 Strongly Correlated Electrons +1611.03318 Computer Vision and Pattern Recognition +1611.03320 Applications +1611.03321 Neural and Evolutionary Computing +1611.03322 Robotics +1611.03323 +1611.03324 General Physics +1611.03328 Applications +1611.03330 Superconductivity +1611.03333 General Physics +1611.03334 Solar and Stellar Astrophysics +1611.03335 Data Analysis, Statistics and Probability +1611.03340 Computers and Society +1611.03341 Computer Vision and Pattern Recognition +1611.03343 Cryptography and Security +1611.03344 Mesoscale and Nanoscale Physics +1611.03345 Metric Geometry +1611.03346 Combinatorics +1611.03348 Adaptation and Self-Organizing Systems +1611.03350 Information Retrieval +1611.03351 Phenomenology +1611.03353 Discrete Mathematics +1611.03355 Robotics +1611.03356 Computational Geometry +1611.03358 Computational Geometry +1611.03361 Quantitative Methods +1611.03362 Differential Geometry +1611.03364 Probability +1611.03365 Instrumentation and Methods for Astrophysics +1611.03366 Dynamical Systems +1611.03367 Phenomenology +1611.03368 Numerical Analysis +1611.03370 Phenomenology +1611.03372 Robotics +1611.03373 Complex Variables +1611.03374 Analysis of PDEs +1611.03376 Astrophysics of Galaxies +1611.03382 Computation and Language +1611.03383 Learning +1611.03384 Soft Condensed Matter +1611.03387 Combinatorics +1611.03388 Mesoscale and Nanoscale Physics +1611.03391 Numerical Analysis +1611.03392 Materials Science +1611.03394 Computational Physics +1611.03395 Probability +1611.03396 Operator Algebras +1611.03398 Artificial Intelligence +1611.03399 Experiment +1611.03401 Optics +1611.03402 Strongly Correlated Electrons +1611.03403 Dynamical Systems +1611.03404 Distributed, Parallel, and Cluster Computing +1611.03407 Networking and Internet Architecture +1611.03409 Phenomenology +1611.03410 Programming Languages +1611.03411 Materials Science +1611.03412 Other Condensed Matter +1611.03413 Fluid Dynamics +1611.03416 Programming Languages +1611.03417 Probability +1611.03419 Materials Science +1611.03420 Networking and Internet Architecture +1611.03422 Solar and Stellar Astrophysics +1611.03423 Mathematical Software +1611.03424 Cryptography and Security +1611.03426 Computers and Society +1611.03428 Materials Science +1611.03429 Programming Languages +1611.03431 Commutative Algebra +1611.03432 Adaptation and Self-Organizing Systems +1611.03433 Phenomenology +1611.03434 Quantum Algebra +1611.03436 Strongly Correlated Electrons +1611.03438 Fluid Dynamics +1611.03439 Methodology +1611.03440 Plasma Physics +1611.03441 Neurons and Cognition +1611.03442 Group Theory +1611.03445 +1611.03446 Fluid Dynamics +1611.03447 Differential Geometry +1611.03448 Physics Education +1611.03450 Classical Physics +1611.03451 Learning +1611.03452 Materials Science +1611.03453 Networking and Internet Architecture +1611.03454 Combinatorics +1611.03456 Methodology +1611.03458 +1611.03459 Theory +1611.03461 Chaotic Dynamics +1611.03463 +1611.03464 Phenomenology +1611.03465 Representation Theory +1611.03466 Computation and Language +1611.03469 Computer Vision and Pattern Recognition +1611.03470 Theory +1611.03472 +1611.03473 Learning +1611.03474 Numerical Analysis +1611.03475 Optics +1611.03476 +1611.03479 +1611.03480 Rings and Algebras +1611.03482 Information Theory +1611.03483 Theory +1611.03484 +1611.03485 Classical Analysis and ODEs +1611.03487 Quantum Algebra +cs/0611165 Distributed, Parallel, and Cluster Computing +0805.1692 Adaptation and Self-Organizing Systems +0906.1606 Group Theory +1102.4002 Analysis of PDEs +1110.3453 Astrophysics of Galaxies +1208.5036 +1305.1819 Optimization and Control +1305.2806 Superconductivity +1306.4434 Combinatorics +1306.5076 Data Structures and Algorithms +1307.3878 Strongly Correlated Electrons +1308.6065 +1310.4446 Cosmology and Nongalactic Astrophysics +1310.4715 Numerical Analysis +1310.7233 +1310.7523 Quantum Algebra +1312.4237 +1312.6673 Theory +1401.4023 Systems and Control +1401.4335 Systems and Control +1402.2700 Combinatorics +1402.3224 Differential Geometry +1402.5380 Artificial Intelligence +1402.6671 Phenomenology +1403.6873 Algebraic Topology +1404.4239 Combinatorics +1404.5510 Data Structures and Algorithms +1405.2343 Algebraic Topology +1405.2476 Learning +1405.3499 Dynamical Systems +1405.5725 Geometric Topology +1407.2062 Geometric Topology +1407.3882 +1408.1630 Algebraic Geometry +1408.3297 Digital Libraries +1408.3979 Methodology +1408.4180 Neurons and Cognition +1408.4562 Mesoscale and Nanoscale Physics +1409.5884 Analysis of PDEs +1409.7662 Functional Analysis +1410.0468 +1410.0474 Systems and Control +1410.1508 Differential Geometry +1410.7738 Combinatorics +1410.8158 Information Theory +1411.2868 Group Theory +1411.7654 Logic +1412.2198 +1412.4420 Quantum Gases +1412.4917 Probability +1412.7911 Systems and Control +1501.02114 +1501.05196 Classical Analysis and ODEs +1501.05729 +1503.01154 Analysis of PDEs +1503.01897 Geometric Topology +1503.02596 Machine Learning +1503.05007 Theory +1503.08153 Phenomenology +1503.08998 Strongly Correlated Electrons +1504.01540 Mesoscale and Nanoscale Physics +1504.04442 Quantum Algebra +1504.05515 Data Structures and Algorithms +1504.06155 Phenomenology +1504.07083 Exactly Solvable and Integrable Systems +1504.07217 Phenomenology +1504.07581 Differential Geometry +1505.00686 Dynamical Systems +1505.00719 Probability +1505.02519 Optics +1505.02688 Phenomenology +1505.04436 Algebraic Geometry +1505.04809 +1505.06168 Algebraic Topology +1505.06546 +1505.06621 Instrumentation and Methods for Astrophysics +1505.06776 +1505.07074 +1505.07116 Theory +1505.07356 Analysis of PDEs +1505.07385 Atomic Physics +1506.01128 Dynamical Systems +1506.03147 Numerical Analysis +1506.04361 Analysis of PDEs +1506.04990 Cellular Automata and Lattice Gases +1506.05407 Experiment +1506.05807 High Energy Astrophysical Phenomena +1506.07164 Phenomenology +1506.07701 +1506.08277 Phenomenology +1507.00510 Cosmology and Nongalactic Astrophysics +1507.00685 Theory +1507.00867 Phenomenology +1507.01069 Analysis of PDEs +1507.01114 Differential Geometry +1507.01454 Statistics Theory +1507.02577 Superconductivity +1507.02582 Phenomenology +1507.04376 Astrophysics of Galaxies +1507.05031 Numerical Analysis +1507.05362 Strongly Correlated Electrons +1507.06024 +1507.07956 Atomic Physics +1508.00448 Chaotic Dynamics +1508.01193 Theory +1508.01988 Materials Science +1508.02266 Functional Analysis +1508.03045 Theory +1508.04231 Lattice +1508.04371 Algebraic Geometry +1508.04436 Disordered Systems and Neural Networks +1508.04687 Medical Physics +1508.04961 Analysis of PDEs +1508.05190 High Energy Astrophysical Phenomena +1508.06401 Lattice +1508.06898 Numerical Analysis +1508.07147 +1508.07814 Dynamical Systems +1509.00399 Systems and Control +1509.00892 High Energy Astrophysical Phenomena +1509.01266 Mesoscale and Nanoscale Physics +1509.01696 Dynamical Systems +1509.02453 Phenomenology +1509.03158 Statistical Mechanics +1509.04121 Plasma Physics +1509.05106 Classical Analysis and ODEs +1509.06000 Astrophysics of Galaxies +1509.06315 Statistical Finance +1509.06966 Phenomenology +1509.07327 Probability +1509.07363 K-Theory and Homology +1509.07530 Geometric Topology +1509.07589 +1509.08117 +1509.08287 Analysis of PDEs +1509.08859 Metric Geometry +1509.09082 Classical Physics +1509.09288 General Physics +1510.00493 Instrumentation and Detectors +1510.02553 Number Theory +1510.03154 Phenomenology +1510.03169 Experiment +1510.03697 Strongly Correlated Electrons +1510.03831 Atmospheric and Oceanic Physics +1510.04127 Probability +1510.04324 Theory +1510.05971 Plasma Physics +1510.06557 +1510.06743 +1510.07513 Operator Algebras +1510.07738 Accelerator Physics +1510.08020 Phenomenology +1510.08104 Statistical Mechanics +1510.09035 Neurons and Cognition +1511.00129 Materials Science +1511.00561 Computer Vision and Pattern Recognition +1511.00745 Quantum Gases +1511.01859 Soft Condensed Matter +1511.02085 +1511.02680 Computer Vision and Pattern Recognition +1511.03326 +1511.03835 Phenomenology +1511.04353 Statistical Mechanics +1511.04568 Functional Analysis +1511.04716 Experiment +1511.04730 +1511.05605 Analysis of PDEs +1511.06495 Phenomenology +1511.06768 Phenomenology +1511.07186 +1511.09031 Algebraic Topology +1511.09168 +1512.00088 +1512.00220 Phenomenology +1512.00670 Probability +1512.00804 Probability +1512.01146 Analysis of PDEs +1512.01248 Mesoscale and Nanoscale Physics +1512.01482 Representation Theory +1512.01687 Statistical Mechanics +1512.02420 +1512.02786 Optimization and Control +1512.03212 Theory +1512.03427 Phenomenology +1512.03988 Molecular Networks +1512.04382 Dynamical Systems +1512.04432 Dynamical Systems +1512.04810 Materials Science +1512.04859 Theory +1512.05000 High Energy Astrophysical Phenomena +1512.05034 +1512.05187 Exactly Solvable and Integrable Systems +1512.05241 Phenomenology +1512.05249 Classical Analysis and ODEs +1512.05359 Phenomenology +1512.05595 Astrophysics of Galaxies +1512.05617 Phenomenology +1512.05749 Geometric Topology +1512.05874 Probability +1512.07192 Theory +1512.07237 Theory +1512.07309 Instrumentation and Methods for Astrophysics +1512.08027 Statistical Mechanics +1512.08172 Phenomenology +1512.08739 +1512.09260 Probability +1601.00231 Theory +1601.00469 +1601.00511 +1601.00765 +1601.00958 Quantum Gases +1601.01437 Mesoscale and Nanoscale Physics +1601.01593 Mesoscale and Nanoscale Physics +1601.02607 Phenomenology +1601.02655 Instrumentation and Methods for Astrophysics +1601.03017 Chaotic Dynamics +1601.04011 Learning +1601.05165 Materials Science +1601.05457 Theory +1601.05790 Mesoscale and Nanoscale Physics +1601.05808 High Energy Astrophysical Phenomena +1601.05901 Instrumentation and Methods for Astrophysics +1601.07100 +1601.07198 Theory +1601.07584 Theory +1601.07635 Earth and Planetary Astrophysics +1601.07968 Quantum Gases +1601.08101 Plasma Physics +1602.00977 Phenomenology +1602.01169 +1602.01503 Theory +1602.01872 Analysis of PDEs +1602.02005 Mesoscale and Nanoscale Physics +1602.03455 Experiment +1602.03994 Superconductivity +1602.04153 Materials Science +1602.04812 Phenomenology +1602.05194 Strongly Correlated Electrons +1602.05247 Probability +1602.05253 Strongly Correlated Electrons +1602.05275 Fluid Dynamics +1602.05599 Theory +1602.05788 Theory +1602.05803 Numerical Analysis +1602.06014 Soft Condensed Matter +1602.06266 Atomic Physics +1602.06288 Classical Analysis and ODEs +1602.06880 Fluid Dynamics +1602.07284 +1602.07413 Fluid Dynamics +1602.07892 Plasma Physics +1602.08036 Strongly Correlated Electrons +1602.08138 Geometric Topology +1602.08353 Chaotic Dynamics +1602.08440 Fluid Dynamics +1602.08531 +1602.08824 Mesoscale and Nanoscale Physics +1602.08914 +1603.00021 Astrophysics of Galaxies +1603.00030 Phenomenology +1603.00405 Superconductivity +1603.00410 Operator Algebras +1603.00591 Dynamical Systems +1603.00594 Spectral Theory +1603.00785 Algebraic Geometry +1603.00792 +1603.00919 +1603.01290 Theory +1603.01330 Superconductivity +1603.01528 Theory +1603.02158 +1603.02237 Rings and Algebras +1603.02279 Strongly Correlated Electrons +1603.02588 Theory +1603.02624 Theory +1603.03044 Theory +1603.03289 Exactly Solvable and Integrable Systems +1603.04181 Statistical Mechanics +1603.04193 Algebraic Geometry +1603.05272 Theory +1603.05774 Phenomenology +1603.05817 Statistical Mechanics +1603.05994 Phenomenology +1603.06549 Databases +1603.06567 Mesoscale and Nanoscale Physics +1603.06636 Representation Theory +1603.06896 Experiment +1603.07148 Theory +1603.07203 Materials Science +1603.07207 Quantum Gases +1603.07244 Soft Condensed Matter +1603.07530 Materials Science +1603.07548 Pattern Formation and Solitons +1603.07582 Theory +1603.07837 Cosmology and Nongalactic Astrophysics +1603.07913 Physics Education +1603.08269 Cellular Automata and Lattice Gases +1603.08927 Phenomenology +1603.08947 Materials Science +1603.08975 Probability +1603.09098 Earth and Planetary Astrophysics +1604.00029 +1604.00132 Materials Science +1604.00160 +1604.00210 Spectral Theory +1604.00440 Phenomenology +1604.00705 Analysis of PDEs +1604.00868 Systems and Control +1604.01080 Earth and Planetary Astrophysics +1604.01109 Computer Vision and Pattern Recognition +1604.01244 +1604.01406 Phenomenology +1604.01415 Instrumentation and Detectors +1604.01667 Analysis of PDEs +1604.01711 Phenomenology +1604.01897 Theory +1604.01937 Phenomenology +1604.01944 Solar and Stellar Astrophysics +1604.02042 Statistical Mechanics +1604.02090 Physics Education +1604.02169 Numerical Analysis +1604.02198 Mesoscale and Nanoscale Physics +1604.02297 Optics +1604.02299 Phenomenology +1604.02444 Social and Information Networks +1604.02446 Instrumentation and Methods for Astrophysics +1604.02452 +1604.02482 Experiment +1604.02552 Data Structures and Algorithms +1604.02756 +1604.02785 +1604.02788 Soft Condensed Matter +1604.02988 +1604.03595 Fluid Dynamics +1604.03606 Theory +1604.03622 Applications +1604.03668 Instrumentation and Detectors +1604.03697 Strongly Correlated Electrons +1604.03782 Phenomenology +1604.03903 Instrumentation and Detectors +1604.03936 High Energy Astrophysical Phenomena +1604.04012 +1604.04106 Instrumentation and Detectors +1604.04215 Theory +1604.04294 Theory +1604.04300 Instrumentation and Detectors +1604.04317 Pattern Formation and Solitons +1604.04333 Computer Vision and Pattern Recognition +1604.04709 Phenomenology +1604.05241 Analysis of PDEs +1604.05286 Phenomenology +1604.05434 +1604.05596 Instrumentation and Detectors +1604.05835 Mesoscale and Nanoscale Physics +1604.06025 Theory +1604.06169 Instrumentation and Detectors +1604.06239 Astrophysics of Galaxies +1604.06305 Plasma Physics +1604.06823 Optimization and Control +1604.06963 Artificial Intelligence +1604.06966 Atomic Physics +1604.07135 Plasma Physics +1604.07237 +1604.07277 Mesoscale and Nanoscale Physics +1604.07327 Phenomenology +1604.07439 Solar and Stellar Astrophysics +1604.07465 +1604.07871 Cosmology and Nongalactic Astrophysics +1604.07985 Plasma Physics +1604.08023 Mesoscale and Nanoscale Physics +1604.08024 Astrophysics of Galaxies +1604.08028 Plasma Physics +1604.08254 Statistical Mechanics +1604.08327 Theory +1604.08382 Learning +1604.08581 Phenomenology +1604.08630 Mesoscale and Nanoscale Physics +1604.08800 Astrophysics of Galaxies +1604.08838 Phenomenology +1604.08861 Statistical Mechanics +1605.00115 Pattern Formation and Solitons +1605.00436 Phenomenology +1605.00518 Theory +1605.00728 Soft Condensed Matter +1605.01025 Theory +1605.01209 Phenomenology +1605.01445 +1605.01612 Astrophysics of Galaxies +1605.01631 Phenomenology +1605.01800 Fluid Dynamics +1605.01826 Mesoscale and Nanoscale Physics +1605.01916 +1605.01917 Soft Condensed Matter +1605.01933 Theory +1605.01934 Theory +1605.01967 Theory +1605.02064 +1605.02127 Mesoscale and Nanoscale Physics +1605.02295 Disordered Systems and Neural Networks +1605.02348 Mesoscale and Nanoscale Physics +1605.02558 Instrumentation and Detectors +1605.02631 High Energy Astrophysical Phenomena +1605.02835 Theory +1605.03092 Fluid Dynamics +1605.03126 +1605.03270 Solar and Stellar Astrophysics +1605.03277 Optics +1605.03774 +1605.04022 Solar and Stellar Astrophysics +1605.04375 Materials Science +1605.04390 Materials Science +1605.04741 Astrophysics of Galaxies +1605.04853 Phenomenology +1605.04910 Cosmology and Nongalactic Astrophysics +1605.04911 Theory +1605.05058 Materials Science +1605.05177 Superconductivity +1605.05186 Mesoscale and Nanoscale Physics +1605.05344 Theory +1605.05357 +1605.05544 High Energy Astrophysical Phenomena +1605.05567 +1605.05672 Quantum Gases +1605.05752 Solar and Stellar Astrophysics +1605.05761 Phenomenology +1605.06044 Information Theory +1605.06128 Theory +1605.06206 Quantum Gases +1605.06510 Cosmology and Nongalactic Astrophysics +1605.06612 Phenomenology +1605.06793 Theory +1605.07024 Materials Science +1605.07033 +1605.07085 Quantum Gases +1605.07212 Differential Geometry +1605.07586 Computer Vision and Pattern Recognition +1605.07617 Astrophysics of Galaxies +1605.07620 Cosmology and Nongalactic Astrophysics +1605.07641 Disordered Systems and Neural Networks +1605.07828 Disordered Systems and Neural Networks +1605.08056 Phenomenology +1605.08072 Theory +1605.08121 Optics +1605.08168 Chaotic Dynamics +1605.08172 Instrumentation and Detectors +1605.08253 Strongly Correlated Electrons +1605.08347 Instrumentation and Methods for Astrophysics +1605.08352 Phenomenology +1605.08422 Numerical Analysis +1605.08499 Applications +1605.08588 Theory +1605.08621 +1605.08814 +1605.08850 Phenomenology +1605.09043 Lattice +1605.09166 Instrumentation and Methods for Astrophysics +1605.09263 Instrumentation and Methods for Astrophysics +1605.09313 Strongly Correlated Electrons +1605.09411 Phenomenology +1605.09433 +1605.09479 Phenomenology +1605.09498 Mesoscale and Nanoscale Physics +1605.09651 Astrophysics of Galaxies +1605.09747 Theory +1606.00009 Astrophysics of Galaxies +1606.00023 Earth and Planetary Astrophysics +1606.00081 Solar and Stellar Astrophysics +1606.00435 Phenomenology +1606.00508 Theory +1606.00670 Theory +1606.00684 Theory +1606.00951 Phenomenology +1606.01119 Theory +1606.01125 Strongly Correlated Electrons +1606.01298 Phenomenology +1606.01397 Materials Science +1606.01701 Methodology +1606.01712 Theory +1606.01798 Soft Condensed Matter +1606.01871 Adaptation and Self-Organizing Systems +1606.01898 +1606.01960 Instrumentation and Detectors +1606.02082 Theory +1606.02149 Phenomenology +1606.02334 Solar and Stellar Astrophysics +1606.02390 +1606.02420 Theory +1606.02443 +1606.02464 Mesoscale and Nanoscale Physics +1606.02561 Superconductivity +1606.02598 Strongly Correlated Electrons +1606.02637 Operator Algebras +1606.02701 Earth and Planetary Astrophysics +1606.02822 +1606.02888 Phenomenology +1606.02991 Group Theory +1606.03036 Theory +1606.03095 Theory +1606.03126 Computation and Language +1606.03235 Molecular Networks +1606.03240 Instrumentation and Detectors +1606.03391 Computation and Language +1606.03830 Instrumentation and Methods for Astrophysics +1606.03910 Tissues and Organs +1606.04026 Fluid Dynamics +1606.04161 Instrumentation and Methods for Astrophysics +1606.04192 Phenomenology +1606.04269 Data Structures and Algorithms +1606.04291 Instrumentation and Detectors +1606.04303 +1606.04328 Theory +1606.04448 Theory +1606.04481 +1606.04594 +1606.04619 Plasma Physics +1606.04700 Disordered Systems and Neural Networks +1606.04732 +1606.04792 Solar and Stellar Astrophysics +1606.04863 Earth and Planetary Astrophysics +1606.04890 History and Philosophy of Physics +1606.04913 Physics and Society +1606.05091 +1606.05160 Theory +1606.05230 Theory +1606.05250 Computation and Language +1606.05261 High Energy Astrophysical Phenomena +1606.05365 Chemical Physics +1606.05366 Theory +1606.05367 Number Theory +1606.05452 Phenomenology +1606.05513 Mesoscale and Nanoscale Physics +1606.05561 Lattice +1606.05646 Astrophysics of Galaxies +1606.05716 Computational Physics +1606.05782 Materials Science +1606.05865 Phenomenology +1606.05914 Plasma Physics +1606.05965 Cosmology and Nongalactic Astrophysics +1606.06020 Earth and Planetary Astrophysics +1606.06175 Phenomenology +1606.06226 Earth and Planetary Astrophysics +1606.06393 Chemical Physics +1606.06443 Neurons and Cognition +1606.06446 Solar and Stellar Astrophysics +1606.06467 +1606.06531 +1606.06654 Earth and Planetary Astrophysics +1606.06691 Analysis of PDEs +1606.06696 Phenomenology +1606.06867 +1606.06870 Soft Condensed Matter +1606.06951 Phenomenology +1606.06952 Strongly Correlated Electrons +1606.07062 Phenomenology +1606.07155 High Energy Astrophysical Phenomena +1606.07220 +1606.07221 Biomolecules +1606.07436 Astrophysics of Galaxies +1606.07437 High Energy Astrophysical Phenomena +1606.07448 Astrophysics of Galaxies +1606.07449 Statistical Mechanics +1606.07612 Computational Physics +1606.07672 Computational Physics +1606.07759 Experiment +1606.07764 Phenomenology +1606.07879 Theory +1606.08205 Theory +1606.08234 Mesoscale and Nanoscale Physics +1606.08272 Instrumentation and Methods for Astrophysics +1606.08317 Phenomenology +1606.08388 Phenomenology +1606.08453 Cosmology and Nongalactic Astrophysics +1606.08497 Superconductivity +1606.08745 Soft Condensed Matter +1606.08856 Quantum Gases +1606.08898 Phenomenology +1606.08980 +1606.08983 Astrophysics of Galaxies +1606.09033 Phenomenology +1606.09039 Lattice +1606.09104 Soft Condensed Matter +1606.09259 Astrophysics of Galaxies +1606.09292 Phenomenology +1606.09351 Optics +1606.09406 Superconductivity +1606.09420 +1606.09422 Materials Science +1606.09519 Phenomenology +1606.09559 Soft Condensed Matter +1606.09602 Phenomenology +1607.00222 +1607.00252 Statistical Mechanics +1607.00272 Fluid Dynamics +1607.00293 Phenomenology +1607.00313 Theory +1607.00335 Chemical Physics +1607.00524 Earth and Planetary Astrophysics +1607.00526 Theory +1607.00646 Soft Condensed Matter +1607.00860 History and Overview +1607.00941 +1607.01174 Experiment +1607.01184 Information Theory +1607.01363 Cosmology and Nongalactic Astrophysics +1607.01379 Phenomenology +1607.01395 Theory +1607.01420 +1607.01513 Theory +1607.01541 Theory +1607.01558 Mesoscale and Nanoscale Physics +1607.01636 Chemical Physics +1607.01658 Dynamical Systems +1607.01680 Theory +1607.01692 Computational Physics +1607.01813 Analysis of PDEs +1607.01844 Instrumentation and Methods for Astrophysics +1607.01896 Information Theory +1607.01933 Phenomenology +1607.02048 Phenomenology +1607.02246 High Energy Astrophysical Phenomena +1607.02296 Physics and Society +1607.02388 Solar and Stellar Astrophysics +1607.02587 Instrumentation and Detectors +1607.02693 Theory +1607.02783 Quantum Gases +1607.02812 Phenomenology +1607.02859 Materials Science +1607.03019 Physics Education +1607.03648 Atomic and Molecular Clusters +1607.03657 Algebraic Topology +1607.03678 +1607.03732 +1607.03738 Computer Vision and Pattern Recognition +1607.03831 Lattice +1607.03910 Phenomenology +1607.03999 Earth and Planetary Astrophysics +1607.04029 Phenomenology +1607.04097 Geometric Topology +1607.04208 Theory +1607.04230 Theory +1607.04241 +1607.04316 Astrophysics of Galaxies +1607.04406 Mesoscale and Nanoscale Physics +1607.04409 +1607.04449 Phenomenology +1607.04504 Pattern Formation and Solitons +1607.04531 Instrumentation and Detectors +1607.04635 Phenomenology +1607.04677 Earth and Planetary Astrophysics +1607.04839 Theory +1607.04856 Materials Science +1607.04887 Phenomenology +1607.05014 Computation and Language +1607.05273 Theory +1607.05284 Solar and Stellar Astrophysics +1607.05303 Phenomenology +1607.05385 High Energy Astrophysical Phenomena +1607.05405 Theory +1607.05500 Solar and Stellar Astrophysics +1607.05570 Phenomenology +1607.05589 Quantum Gases +1607.05703 Theory +1607.05726 Astrophysics of Galaxies +1607.05733 Cosmology and Nongalactic Astrophysics +1607.06157 Theory +1607.06204 Medical Physics +1607.06225 Populations and Evolution +1607.06379 Theory +1607.06381 +1607.06436 Instrumentation and Methods for Astrophysics +1607.06582 Mesoscale and Nanoscale Physics +1607.06589 +1607.06606 Instrumentation and Methods for Astrophysics +1607.06610 Statistical Mechanics +1607.06621 Solar and Stellar Astrophysics +1607.06694 Information Theory +1607.06697 Earth and Planetary Astrophysics +1607.06755 Astrophysics of Galaxies +1607.06790 Statistical Mechanics +1607.06817 Theory +1607.07067 Representation Theory +1607.07302 Theory +1607.07457 Theory +1607.07505 Theory +1607.07524 Quantum Gases +1607.07540 Earth and Planetary Astrophysics +1607.07576 Materials Science +1607.07596 Strongly Correlated Electrons +1607.07642 Accelerator Physics +1607.07645 Mesoscale and Nanoscale Physics +1607.07882 Earth and Planetary Astrophysics +1607.08036 Astrophysics of Galaxies +1607.08054 High Energy Astrophysical Phenomena +1607.08079 Experiment +1607.08354 Optics +1607.08386 Solar and Stellar Astrophysics +1607.08451 +1607.08460 Theory +1607.08516 Theory +1607.08623 Astrophysics of Galaxies +1607.08658 Solar and Stellar Astrophysics +1607.08911 Phenomenology +1608.00006 Theory +1608.00360 Instrumentation and Methods for Astrophysics +1608.00414 Phenomenology +1608.00491 +1608.00619 Learning +1608.00620 Earth and Planetary Astrophysics +1608.00694 Astrophysics of Galaxies +1608.00709 Algebraic Geometry +1608.00870 Logic in Computer Science +1608.00896 Fluid Dynamics +1608.00970 High Energy Astrophysical Phenomena +1608.00999 Mesoscale and Nanoscale Physics +1608.01260 Phenomenology +1608.01311 Strongly Correlated Electrons +1608.01454 Phenomenology +1608.01475 Strongly Correlated Electrons +1608.01477 Quantum Gases +1608.01617 Mesoscale and Nanoscale Physics +1608.01652 Theory +1608.01706 High Energy Astrophysical Phenomena +1608.01880 Phenomenology +1608.01979 Phenomenology +1608.01981 Materials Science +1608.01997 Solar and Stellar Astrophysics +1608.02362 Phenomenology +1608.02599 Instrumentation and Methods for Astrophysics +1608.02766 +1608.02814 Theory +1608.02950 Strongly Correlated Electrons +1608.03179 Instrumentation and Detectors +1608.03272 +1608.03345 Optics +1608.03853 Earth and Planetary Astrophysics +1608.03891 Earth and Planetary Astrophysics +1608.04031 Mesoscale and Nanoscale Physics +1608.04128 Physics Education +1608.04178 Astrophysics of Galaxies +1608.04359 +1608.04748 Theory +1608.05086 Astrophysics of Galaxies +1608.05181 Materials Science +1608.05281 +1608.05633 Materials Science +1608.06044 Mesoscale and Nanoscale Physics +1608.06118 High Energy Astrophysical Phenomena +1608.06150 Accelerator Physics +1608.06443 +1608.06494 Cosmology and Nongalactic Astrophysics +1608.06527 Phenomenology +1608.06551 Phenomenology +1608.06618 Phenomenology +1608.06733 Strongly Correlated Electrons +1608.06826 General Physics +1608.07284 Astrophysics of Galaxies +1608.07355 Materials Science +1608.07460 Quantum Gases +1608.07475 +1608.07487 +1608.07758 Accelerator Physics +1608.07804 Solar and Stellar Astrophysics +1608.07838 Combinatorics +1608.07844 Earth and Planetary Astrophysics +1608.08205 Phenomenology +1608.08315 Materials Science +1608.08611 Soft Condensed Matter +1608.08653 Materials Science +1608.08745 High Energy Astrophysical Phenomena +1609.00348 Instrumentation and Detectors +1609.00403 Atomic Physics +1609.00455 Astrophysics of Galaxies +1609.00532 Cosmology and Nongalactic Astrophysics +1609.00634 Instrumentation and Methods for Astrophysics +1609.00660 +1609.00789 +1609.00870 Mesoscale and Nanoscale Physics +1609.01052 Statistical Mechanics +1609.01164 Superconductivity +1609.01356 Theory +1609.01715 Astrophysics of Galaxies +1609.01827 Optics +1609.01849 Strongly Correlated Electrons +1609.01882 Computer Vision and Pattern Recognition +1609.02425 Statistical Mechanics +1609.02708 +1609.02765 Commutative Algebra +1609.02841 +1609.02843 Materials Science +1609.03117 Solar and Stellar Astrophysics +1609.03488 Optimization and Control +1609.03494 Mesoscale and Nanoscale Physics +1609.03771 Instrumentation and Methods for Astrophysics +1609.04157 +1609.04219 +1609.04227 Disordered Systems and Neural Networks +1609.04263 Solar and Stellar Astrophysics +1609.04295 Instrumentation and Methods for Astrophysics +1609.04488 +1609.04574 Statistical Mechanics +1609.04775 Classical Analysis and ODEs +1609.05045 Solar and Stellar Astrophysics +1609.05065 Plasma Physics +1609.05298 Other Condensed Matter +1609.05511 Computation and Language +1609.05621 Logic in Computer Science +1609.05697 High Energy Astrophysical Phenomena +1609.05918 Astrophysics of Galaxies +1609.06135 +1609.06177 High Energy Astrophysical Phenomena +1609.06333 Chemical Physics +1609.06513 Logic in Computer Science +1609.06544 +1609.06546 Solar and Stellar Astrophysics +1609.06715 Astrophysics of Galaxies +1609.06728 Instrumentation and Methods for Astrophysics +1609.06787 Solar and Stellar Astrophysics +1609.06863 Theory +1609.07212 Strongly Correlated Electrons +1609.07254 Logic in Computer Science +1609.07413 Phenomenology +1609.07468 K-Theory and Homology +1609.07515 Instrumentation and Detectors +1609.07544 Astrophysics of Galaxies +1609.08060 +1609.08123 +1609.08344 High Energy Astrophysical Phenomena +1609.08461 General Physics +1609.08463 +1609.08465 Solar and Stellar Astrophysics +1609.08728 Astrophysics of Galaxies +1609.08771 Astrophysics of Galaxies +1609.08792 Astrophysics of Galaxies +1609.08794 Astrophysics of Galaxies +1609.08838 Astrophysics of Galaxies +1609.09028 Computation and Language +1609.09082 Astrophysics of Galaxies +1609.09091 Cosmology and Nongalactic Astrophysics +1609.09099 Earth and Planetary Astrophysics +1609.09105 Atomic Physics +1609.09383 Astrophysics of Galaxies +1609.09389 Information Theory +1609.09391 Materials Science +1609.09456 High Energy Astrophysical Phenomena +1609.09502 High Energy Astrophysical Phenomena +1609.09511 High Energy Astrophysical Phenomena +1609.09613 +1609.09706 Astrophysics of Galaxies +1609.09722 Atomic Physics +1609.09761 Human-Computer Interaction +1609.09811 Solar and Stellar Astrophysics +1610.00013 Solar and Stellar Astrophysics +1610.00082 Data Structures and Algorithms +1610.00083 Solar and Stellar Astrophysics +1610.00232 +1610.00355 Networking and Internet Architecture +1610.00451 Solar and Stellar Astrophysics +1610.00474 Instrumentation and Methods for Astrophysics +1610.00543 Solar and Stellar Astrophysics +1610.00565 Commutative Algebra +1610.00606 Instrumentation and Methods for Astrophysics +1610.00645 Functional Analysis +1610.00685 Lattice +1610.00722 Instrumentation and Methods for Astrophysics +1610.00769 Solar and Stellar Astrophysics +1610.00914 Solar and Stellar Astrophysics +1610.00926 Commutative Algebra +1610.00937 Portfolio Management +1610.01086 High Energy Astrophysical Phenomena +1610.01144 Astrophysics of Galaxies +1610.01215 Applications +1610.01331 Logic in Computer Science +1610.01545 +1610.01690 Learning +1610.01775 Superconductivity +1610.01834 Astrophysics of Galaxies +1610.01844 High Energy Astrophysical Phenomena +1610.02012 Strongly Correlated Electrons +1610.02091 Emerging Technologies +1610.02201 High Energy Astrophysical Phenomena +1610.02217 Statistical Mechanics +1610.02243 Combinatorics +1610.02324 Probability +1610.02349 +1610.02357 Computer Vision and Pattern Recognition +1610.02366 Astrophysics of Galaxies +1610.02425 +1610.02522 General Topology +1610.02523 Group Theory +1610.02747 Phenomenology +1610.02752 Cosmology and Nongalactic Astrophysics +1610.02786 Functional Analysis +1610.02788 Functional Analysis +1610.02831 Sound +1610.03008 Differential Geometry +1610.03025 Numerical Analysis +1610.03040 +1610.03053 Instrumentation and Detectors +1610.03054 Instrumentation and Detectors +1610.03056 Information Theory +1610.03064 Mesoscale and Nanoscale Physics +1610.03065 Theory +1610.03069 +1610.03076 Astrophysics of Galaxies +1610.03078 Disordered Systems and Neural Networks +1610.03079 +1610.03082 Information Theory +1610.03083 Statistics Theory +1610.03084 Discrete Mathematics +1610.03085 Strongly Correlated Electrons +1610.03087 Complex Variables +1610.03089 Information Theory +1610.03090 Learning +1610.03094 Instrumentation and Detectors +1610.03095 Numerical Analysis +1610.03096 Geophysics +1610.03097 High Energy Astrophysical Phenomena +1610.03099 Mesoscale and Nanoscale Physics +1610.03102 +1610.03103 Probability +1610.03105 Distributed, Parallel, and Cluster Computing +1610.03106 Computation and Language +1610.03107 Geophysics +1610.03110 Neurons and Cognition +1610.03111 Numerical Analysis +1610.03112 Computation and Language +1610.03113 Machine Learning +1610.03114 Algebraic Topology +1610.03115 Combinatorics +1610.03117 Metric Geometry +1610.03118 Functional Analysis +1610.03120 Computation and Language +1610.03121 Physics and Society +1610.03122 Strongly Correlated Electrons +1610.03123 Cosmology and Nongalactic Astrophysics +1610.03124 Physics and Society +1610.03125 Data Structures and Algorithms +1610.03126 Group Theory +1610.03129 Computer Vision and Pattern Recognition +1610.03130 Phenomenology +1610.03133 +1610.03134 Solar and Stellar Astrophysics +1610.03138 Artificial Intelligence +1610.03140 Dynamical Systems +1610.03141 Optics +1610.03142 Functional Analysis +1610.03143 Optimization and Control +1610.03145 Physics and Society +1610.03148 Programming Languages +1610.03150 Logic +1610.03151 Computer Vision and Pattern Recognition +1610.03152 Optics +1610.03153 Statistics Theory +1610.03154 Numerical Analysis +1610.03155 Computer Vision and Pattern Recognition +1610.03156 Geometric Topology +1610.03157 Commutative Algebra +1610.03158 Algebraic Geometry +1610.03159 Instrumentation and Methods for Astrophysics +1610.03160 Strongly Correlated Electrons +1610.03162 Optimization and Control +1610.03164 Robotics +1610.03165 Computation and Language +1610.03166 Theory +1610.03167 Computation and Language +1610.03168 Metric Geometry +1610.03173 Plasma Physics +1610.03174 Theory +1610.03175 Systems and Control +1610.03176 Social and Information Networks +1610.03177 Methodology +1610.03178 Phenomenology +1610.03179 Computers and Society +1610.03180 Software Engineering +1610.03181 Fluid Dynamics +1610.03182 Computation +1610.03184 Formal Languages and Automata Theory +1610.03185 Materials Science +1610.03186 Classical Analysis and ODEs +1610.03187 Representation Theory +1610.03190 Sound +1610.03192 Numerical Analysis +1610.03193 Optimization and Control +1610.03194 Analysis of PDEs +1610.03195 Numerical Analysis +1610.03196 Numerical Analysis +1610.03198 Differential Geometry +1610.03201 Classical Analysis and ODEs +1610.03203 Atomic Physics +1610.03204 Information Theory +1610.03206 Analysis of PDEs +1610.03207 Neurons and Cognition +1610.03208 Biological Physics +1610.03211 Superconductivity +1610.03213 Dynamical Systems +1610.03215 Statistics Theory +1610.03216 Earth and Planetary Astrophysics +1610.03217 Populations and Evolution +1610.03218 Probability +1610.03219 Astrophysics of Galaxies +1610.03220 Strongly Correlated Electrons +1610.03221 Strongly Correlated Electrons +1610.03223 Mesoscale and Nanoscale Physics +1610.03225 Applications +1610.03227 Plasma Physics +1610.03228 Optimization and Control +1610.03229 Computers and Society +1610.03230 Probability +1610.03231 Plasma Physics +1610.03232 Numerical Analysis +1610.03233 Classical Analysis and ODEs +1610.03235 Systems and Control +1610.03238 Soft Condensed Matter +1610.03241 Geometric Topology +1610.03244 Phenomenology +1610.03245 Networking and Internet Architecture +1610.03246 Computation and Language +1610.03248 +1610.03251 Theory +1610.03252 Phenomenology +1610.03253 +1610.03255 Dynamical Systems +1610.03258 High Energy Astrophysical Phenomena +1610.03260 Information Theory +1610.03261 Analysis of PDEs +1610.03263 Artificial Intelligence +1610.03266 Computational Complexity +1610.03269 +1610.03271 Chemical Physics +1610.03275 Lattice +1610.03276 Machine Learning +1610.03277 Number Theory +1610.03278 Probability +1610.03279 Numerical Analysis +1610.03282 Rings and Algebras +1610.03283 Geometric Topology +1610.03285 Analysis of PDEs +1610.03287 Methodology +1610.03288 Geometric Topology +1610.03289 Plasma Physics +1610.03290 Analysis of PDEs +1610.03291 +1610.03295 Artificial Intelligence +1610.03296 +1610.03297 Complex Variables +1610.03298 Data Structures and Algorithms +1610.03300 Probability +1610.03301 Group Theory +1610.03306 Commutative Algebra +1610.03307 Metric Geometry +1610.03309 +1610.03313 Materials Science +1610.03316 Statistics Theory +1610.03317 Data Structures and Algorithms +1610.03319 Fluid Dynamics +1610.03320 Solar and Stellar Astrophysics +1610.03321 Computation and Language +1610.03322 Classical Physics +1610.03327 +1610.03328 Probability +1610.03329 Mesoscale and Nanoscale Physics +1610.03330 Methodology +1610.03331 Logic +1610.03334 Strongly Correlated Electrons +1610.03336 Astrophysics of Galaxies +1610.03337 Data Structures and Algorithms +1610.03338 Lattice +1610.03339 Differential Geometry +1610.03342 Computation and Language +1610.03343 Computational Physics +1610.03344 Robotics +1610.03345 Cosmology and Nongalactic Astrophysics +1610.03347 Instrumentation and Methods for Astrophysics +1610.03348 Networking and Internet Architecture +1610.03349 Computation and Language +1610.03350 +1610.03353 Geometric Topology +1610.03354 Algebraic Geometry +1610.03355 +1610.03356 Algebraic Geometry +1610.03357 Algebraic Geometry +1610.03358 Numerical Analysis +1610.03361 High Energy Astrophysical Phenomena +1610.03362 Information Theory +1610.03363 Dynamical Systems +1610.03364 Logic +1610.03365 High Energy Astrophysical Phenomena +1610.03367 Statistical Mechanics +1610.03369 Analysis of PDEs +1610.03372 Phenomenology +1610.03376 Group Theory +1610.03377 Analysis of PDEs +1610.03380 History and Overview +1610.03381 +1610.03382 Materials Science +1610.03386 Chemical Physics +1610.03387 Complex Variables +1610.03389 Atomic Physics +1610.03390 Algebraic Geometry +1610.03392 Complex Variables +1610.03393 Computer Vision and Pattern Recognition +1610.03394 Atomic Physics +1610.03395 Commutative Algebra +1610.03396 Combinatorics +1610.03397 Geophysics +1610.03398 Analysis of PDEs +1610.03401 Soft Condensed Matter +1610.03403 Algebraic Geometry +1610.03404 Numerical Analysis +1610.03405 Combinatorics +1610.03406 Logic +1610.03409 Complex Variables +1610.03411 Functional Analysis +1610.03412 Data Structures and Algorithms +1610.03413 Complex Variables +1610.03414 Machine Learning +1610.03415 Probability +1610.03416 Biological Physics +1610.03418 Probability +1610.03420 Functional Analysis +1610.03427 Tissues and Organs +1610.03430 Number Theory +1610.03433 Complex Variables +1610.03434 Computation +1610.03435 Representation Theory +1610.03437 Computer Vision and Pattern Recognition +1610.03438 +1610.03440 Theory +1610.03443 Genomics +1610.03446 Optimization and Control +1610.03447 Solar and Stellar Astrophysics +1610.03448 Analysis of PDEs +1610.03450 Distributed, Parallel, and Cluster Computing +1610.03451 Fluid Dynamics +1610.03455 Algebraic Geometry +1610.03457 Numerical Analysis +1610.03458 Methodology +1610.03461 Systems and Control +1610.03462 Functional Analysis +1610.03463 +1610.03465 Number Theory +1610.03466 Computer Vision and Pattern Recognition +1610.03467 Computer Vision and Pattern Recognition +1610.03468 Fluid Dynamics +1610.03470 Fluid Dynamics +1610.03471 Instrumentation and Detectors +1610.03472 Systems and Control +1610.03476 Combinatorics +1610.03477 Data Structures and Algorithms +1610.03478 Exactly Solvable and Integrable Systems +1610.03479 Analysis of PDEs +astro-ph/0106241 +cond-mat/0410611 Materials Science +0810.5186 +1009.4148 Earth and Planetary Astrophysics +1202.6649 Computer Science and Game Theory +1203.0411 Computer Science and Game Theory +1205.5447 Analysis of PDEs +1210.2259 Information Theory +1210.4520 +1301.4465 Functional Analysis +1302.0125 Optimization and Control +1302.0888 Probability +1305.1514 Combinatorics +1305.5779 Probability +1307.0661 Classical Analysis and ODEs +1308.2817 +1311.0934 Analysis of PDEs +1312.2615 Superconductivity +1401.1036 Probability +1402.2043 Machine Learning +1402.2589 Discrete Mathematics +1402.5652 Group Theory +1403.1505 Functional Analysis +1403.1913 Methodology +1403.5624 Analysis of PDEs +1404.3220 Quantum Gases +1404.6886 Algebraic Topology +1405.4371 Optimization and Control +1405.6162 Distributed, Parallel, and Cluster Computing +1405.7305 Earth and Planetary Astrophysics +1406.6486 Strongly Correlated Electrons +1407.0864 Analysis of PDEs +1407.3645 Probability +1408.5797 Analysis of PDEs +1408.6580 Symplectic Geometry +1409.5657 Materials Science +1409.6009 Symplectic Geometry +1411.0190 +1411.3308 Geometric Topology +1411.6970 Computer Vision and Pattern Recognition +1411.7983 Numerical Analysis +1412.3972 Statistics Theory +1412.6635 Probability +1503.02344 Applications +1503.08754 Solar and Stellar Astrophysics +1504.04364 Earth and Planetary Astrophysics +1504.08344 +1505.00174 +1505.00486 Representation Theory +1505.05054 Commutative Algebra +1505.06233 Soft Condensed Matter +1505.06453 +1505.07068 Commutative Algebra +1505.07519 Computation +1506.02098 Number Theory +1506.02801 Mesoscale and Nanoscale Physics +1506.05209 Classical Analysis and ODEs +1506.09137 Theory +1507.00630 Theory +1507.01145 Robotics +1507.02178 Data Structures and Algorithms +1507.02506 Instrumentation and Methods for Astrophysics +1507.03082 Differential Geometry +1507.06269 Statistical Mechanics +1508.00690 Data Structures and Algorithms +1508.03667 Quantitative Methods +1508.04164 +1508.06072 Complex Variables +1508.07271 Dynamical Systems +1508.07353 Functional Analysis +1509.00457 General Mathematics +1509.01441 Representation Theory +1509.02077 Phenomenology +1509.04305 Astrophysics of Galaxies +1509.04915 Strongly Correlated Electrons +1509.06644 High Energy Astrophysical Phenomena +1509.08183 Physics and Society +1509.08806 Other Computer Science +1510.00140 Combinatorics +1510.01497 Optimization and Control +1510.03379 +1510.03404 Materials Science +1510.06425 Algebraic Geometry +1510.06651 +1510.08845 High Energy Astrophysical Phenomena +1511.00220 Phenomenology +1511.01154 Computer Vision and Pattern Recognition +1511.01161 Computer Vision and Pattern Recognition +1511.02341 Optics +1511.03786 Quantum Gases +1511.03825 +1511.03898 +1511.05319 Strongly Correlated Electrons +1511.05690 Data Structures and Algorithms +1511.06163 Popular Physics +1511.06424 Atomic Physics +1511.06727 Learning +1511.08409 Optimization and Control +1511.09361 Quantum Gases +1512.00284 Algebraic Topology +1512.01071 Phenomenology +1512.01594 Computational Geometry +1512.03531 Computational Complexity +1512.05871 Statistics Theory +1512.06479 Statistical Mechanics +1512.06745 Instrumentation and Methods for Astrophysics +1512.06790 Computer Vision and Pattern Recognition +1512.07645 Phenomenology +1512.08223 Mesoscale and Nanoscale Physics +1512.08695 Dynamical Systems +1512.09234 Quantum Algebra +1601.00622 Theory +1601.02092 Phenomenology +1601.03228 Superconductivity +1601.03575 Phenomenology +1601.03747 Strongly Correlated Electrons +1601.05828 Instrumentation and Detectors +1601.08036 +1602.00197 Statistics Theory +1602.05784 Combinatorics +1602.06154 +1602.07182 Statistics Theory +1602.07312 Dynamical Systems +1602.07415 Learning +1603.00094 +1603.00905 Differential Geometry +1603.00914 +1603.02083 +1603.02728 Superconductivity +1603.03151 Computer Science and Game Theory +1603.03684 Physics Education +1603.04008 Cosmology and Nongalactic Astrophysics +1603.05663 Phenomenology +1603.06027 Mesoscale and Nanoscale Physics +1603.06369 Mesoscale and Nanoscale Physics +1603.07871 Machine Learning +1603.08532 +1603.08657 Instrumentation and Detectors +1603.08944 +1604.00196 Phenomenology +1604.00627 Applications +1604.02994 Analysis of PDEs +1604.03950 Strongly Correlated Electrons +1604.04690 Pattern Formation and Solitons +1604.04933 Commutative Algebra +1604.07148 Soft Condensed Matter +1604.07466 Differential Geometry +1604.07664 Number Theory +1605.00723 Discrete Mathematics +1605.00837 Combinatorics +1605.01499 +1605.02703 Physics Education +1605.03448 Representation Theory +1605.04553 Computation and Language +1605.05128 Materials Science +1605.07099 Mathematical Finance +1605.07422 Distributed, Parallel, and Cluster Computing +1605.08580 Operator Algebras +1605.08861 Probability +1606.00800 Machine Learning +1606.01198 Materials Science +1606.01395 Superconductivity +1606.01603 Computation and Language +1606.02311 Software Engineering +1606.02604 +1606.03556 Computer Vision and Pattern Recognition +1606.03661 Differential Geometry +1606.03713 Human-Computer Interaction +1606.03726 Combinatorics +1606.03872 Combinatorics +1606.04497 Phenomenology +1606.04504 Instrumentation and Methods for Astrophysics +1606.04532 Representation Theory +1606.04544 Strongly Correlated Electrons +1606.04707 Physics and Society +1606.05011 Number Theory +1606.05016 Astrophysics of Galaxies +1606.05069 Statistical Mechanics +1606.05136 Social and Information Networks +1606.05341 Digital Libraries +1606.05343 Astrophysics of Galaxies +1606.05344 Phenomenology +1606.05347 Solar and Stellar Astrophysics +1606.05353 Strongly Correlated Electrons +1606.05355 Computer Vision and Pattern Recognition +1606.05360 Methodology +1606.05361 Optimization and Control +1606.05363 Machine Learning +1606.05368 Mesoscale and Nanoscale Physics +1606.05370 Materials Science +1606.05371 Solar and Stellar Astrophysics +1606.05373 Biomolecules +1606.05374 Human-Computer Interaction +1606.05375 Mesoscale and Nanoscale Physics +1606.05378 Computation and Language +1606.05380 Combinatorics +1606.05386 Machine Learning +1606.05390 Machine Learning +1606.05391 Networking and Internet Architecture +1606.05393 Mesoscale and Nanoscale Physics +1606.05396 Information Theory +1606.05397 Rings and Algebras +1606.05398 Number Theory +1606.05400 Physics and Society +1606.05401 Materials Science +1606.05402 Optics +1606.05403 Distributed, Parallel, and Cluster Computing +1606.05405 Physics and Society +1606.05408 Physics and Society +1606.05411 Representation Theory +1606.05413 Computer Vision and Pattern Recognition +1606.05416 Programming Languages +1606.05417 Numerical Analysis +1606.05419 Numerical Analysis +1606.05422 Dynamical Systems +1606.05425 Representation Theory +1606.05426 Computer Vision and Pattern Recognition +1606.05427 Logic in Computer Science +1606.05428 Biological Physics +1606.05431 Software Engineering +1606.05432 Numerical Analysis +1606.05435 Logic in Computer Science +1606.05439 Computers and Society +1606.05441 Analysis of PDEs +1606.05442 Strongly Correlated Electrons +1606.05443 Complex Variables +1606.05446 Artificial Intelligence +1606.05449 Dynamical Systems +1606.05450 Statistical Mechanics +1606.05453 Metric Geometry +1606.05455 Materials Science +1606.05457 Information Theory +1606.05458 Probability +1606.05461 Quantum Gases +1606.05463 Analysis of PDEs +1606.05468 Social and Information Networks +1606.05472 Statistical Mechanics +1606.05477 Networking and Internet Architecture +1606.05480 Combinatorics +1606.05481 Statistics Theory +1606.05482 Materials Science +1606.05483 Mesoscale and Nanoscale Physics +1606.05486 Classical Analysis and ODEs +1606.05488 Mathematical Finance +1606.05493 Differential Geometry +1606.05494 Mesoscale and Nanoscale Physics +1606.05498 Earth and Planetary Astrophysics +1606.05502 Number Theory +1606.05505 Numerical Analysis +1606.05512 Differential Geometry +1606.05516 Analysis of PDEs +1606.05517 Strongly Correlated Electrons +1606.05518 Classical Analysis and ODEs +1606.05519 Networking and Internet Architecture +1606.05522 Neurons and Cognition +1606.05527 Category Theory +1606.05530 Combinatorics +1606.05532 +1606.05533 Phenomenology +1606.05534 Phenomenology +1606.05535 Numerical Analysis +1606.05538 Data Structures and Algorithms +1606.05539 Group Theory +1606.05540 Numerical Analysis +1606.05541 Instrumentation and Detectors +1606.05542 Representation Theory +1606.05544 Instrumentation and Detectors +1606.05551 Neural and Evolutionary Computing +1606.05554 Computation and Language +1606.05555 Optimization and Control +1606.05559 Instrumentation and Detectors +1606.05560 Machine Learning +1606.05562 Information Theory +1606.05563 Symbolic Computation +1606.05564 Geometric Topology +1606.05566 Mesoscale and Nanoscale Physics +1606.05568 Functional Analysis +1606.05572 Machine Learning +1606.05574 +1606.05576 Computers and Society +1606.05577 Analysis of PDEs +1606.05578 Multiagent Systems +1606.05583 Combinatorics +1606.05589 Machine Learning +1606.05593 Artificial Intelligence +1606.05594 Algebraic Geometry +1606.05597 Artificial Intelligence +1606.05601 Analysis of PDEs +1606.05602 Dynamical Systems +1606.05605 +1606.05609 Digital Libraries +1606.05614 Computer Vision and Pattern Recognition +1606.05616 Combinatorics +1606.05617 Algebraic Topology +1606.05618 +1606.05619 Applications +1606.05620 Group Theory +1606.05621 Hardware Architecture +1606.05623 Mesoscale and Nanoscale Physics +1606.05626 +1606.05628 Combinatorics +1606.05633 Databases +1606.05637 +1606.05638 Group Theory +1606.05641 Physics and Society +astro-ph/0112429 +astro-ph/0308055 +astro-ph/0309236 +astro-ph/0512292 +0903.3071 Classical Analysis and ODEs +1101.4698 Classical Analysis and ODEs +1102.3853 Atomic Physics +1105.1358 +1110.6529 Atomic Physics +1201.3404 Solar and Stellar Astrophysics +1202.2896 Quantum Algebra +1205.7016 Number Theory +1301.4864 Quantum Algebra +1302.5991 Number Theory +1304.5900 Algebraic Geometry +1306.4483 Algebraic Geometry +1307.3627 Differential Geometry +1308.5560 Algebraic Geometry +1309.6031 History and Philosophy of Physics +1310.2308 Atomic Physics +1310.5404 +1310.5750 +1311.6854 +1402.1381 Other Condensed Matter +1402.2795 Complex Variables +1402.3816 +1402.4561 Classical Analysis and ODEs +1404.3333 +1405.5256 +1405.7630 Optimization and Control +1405.7680 Algebraic Geometry +1406.6982 Astrophysics of Galaxies +1407.7799 Computational Complexity +1408.1610 +1408.2501 Strongly Correlated Electrons +1408.5521 Instrumentation and Methods for Astrophysics +1409.0628 Probability +1409.3142 Differential Geometry +1409.4194 Software Engineering +1409.4471 Differential Geometry +1409.6498 Computer Vision and Pattern Recognition +1410.4275 Methodology +1410.4422 Computers and Society +1410.6059 Applications +1411.0021 Analysis of PDEs +1411.1586 Symplectic Geometry +1411.3562 Group Theory +1501.01739 Category Theory +1501.02547 Algebraic Topology +1501.02695 Combinatorics +1501.07804 Chaotic Dynamics +1502.00011 Differential Geometry +1502.00837 Algebraic Geometry +1502.00973 Methodology +1502.01660 Disordered Systems and Neural Networks +1502.04347 +1502.05007 Dynamical Systems +1502.06069 Numerical Analysis +1503.02919 Algebraic Geometry +1503.06033 Commutative Algebra +1504.02673 Analysis of PDEs +1504.07896 Dynamical Systems +1505.01756 Physics and Society +1505.02164 Differential Geometry +1505.03311 Probability +1505.07521 Differential Geometry +1505.07866 Neurons and Cognition +1505.08149 Computation and Language +1506.00960 Astrophysics of Galaxies +1506.03800 Differential Geometry +1506.06650 Information Theory +1506.07699 Algebraic Geometry +1507.01259 Combinatorics +1507.04604 Astrophysics of Galaxies +1507.08106 Group Theory +1507.08136 +1508.00622 Group Theory +1508.01793 Classical Analysis and ODEs +1508.02574 +1508.04933 Materials Science +1508.04949 Combinatorics +1509.02675 Mesoscale and Nanoscale Physics +1509.03393 Pattern Formation and Solitons +1509.04771 Artificial Intelligence +1509.05443 Group Theory +1509.06218 Numerical Analysis +1510.02461 Pattern Formation and Solitons +1510.04351 Statistics Theory +1510.04528 Optimization and Control +1510.05262 Phenomenology +1510.07292 Metric Geometry +1510.08842 Optimization and Control +1511.05116 Cosmology and Nongalactic Astrophysics +1511.05966 Fluid Dynamics +1511.07067 Computer Vision and Pattern Recognition +1512.00235 Strongly Correlated Electrons +1512.01079 Solar and Stellar Astrophysics +1512.05593 Materials Science +1512.05984 +1512.07536 +1512.09232 Combinatorics +1601.01630 +1601.02711 Complex Variables +1601.04360 +1601.04414 Cosmology and Nongalactic Astrophysics +1601.04509 Combinatorics +1601.05243 Analysis of PDEs +1601.05430 Phenomenology +1601.06343 Combinatorics +1601.07838 Number Theory +1602.01610 Number Theory +1602.02809 High Energy Astrophysical Phenomena +1602.03956 Computers and Society +1602.04201 Mesoscale and Nanoscale Physics +1602.06630 Neurons and Cognition +1602.07289 Astrophysics of Galaxies +1602.07442 Materials Science +1602.08524 Instrumentation and Detectors +1602.08915 Strongly Correlated Electrons +1603.01341 Trading and Market Microstructure +1603.01866 Computational Engineering, Finance, and Science +1603.02053 +1603.02704 +1603.04744 Materials Science +1603.05460 Phenomenology +1603.05567 Experiment +1603.07359 +1603.07458 Logic in Computer Science +1603.07917 Superconductivity +1603.08064 Mesoscale and Nanoscale Physics +1603.08689 Soft Condensed Matter +1603.09479 Functional Analysis +1603.09497 Functional Analysis +1603.09555 +1604.00197 Analysis of PDEs +1604.01385 +1604.01896 Optimization and Control +1604.02366 Phenomenology +1604.03291 Quantum Gases +1604.03337 Computational Finance +1604.04991 Mesoscale and Nanoscale Physics +1604.05679 +1604.05831 Materials Science +1604.06768 Strongly Correlated Electrons +1604.07193 Information Theory +1605.00304 +1605.00624 Geometric Topology +1605.00672 +1605.01145 Number Theory +1605.03009 Artificial Intelligence +1605.03714 Soft Condensed Matter +1605.04881 Theory +1605.05534 Optimization and Control +1605.05553 +1605.05909 Instrumentation and Detectors +1605.05930 Cryptography and Security +1605.07129 Statistics Theory +1605.07295 +1605.07702 Symplectic Geometry +1605.08525 Probability +1605.08651 Statistics Theory +1605.08926 Optimization and Control +1605.09662 Algebraic Geometry +1606.00083 Combinatorics +1606.01094 +1606.01114 Geometric Topology +1606.01954 Strongly Correlated Electrons +1606.02567 Differential Geometry +1606.03565 Biomolecules +1606.03892 Cosmology and Nongalactic Astrophysics +1606.04033 Human-Computer Interaction +1606.04226 +1606.04520 +1606.04915 High Energy Astrophysical Phenomena +1606.05204 Methodology +1606.05271 Rings and Algebras +1606.05358 +1606.05543 Combinatorics +1606.06230 Chemical Physics +1606.06555 Biological Physics +1606.07168 Quantum Gases +1606.07733 +1606.07814 High Energy Astrophysical Phenomena +1606.07871 Numerical Analysis +1606.07981 Information Theory +1606.08081 Theory +1606.08183 +1606.08208 Probability +1606.08457 +1606.08588 Theory +1606.08609 Astrophysics of Galaxies +1606.08652 Experiment +1606.08660 Machine Learning +1606.08705 Mesoscale and Nanoscale Physics +1606.08732 Astrophysics of Galaxies +1606.08805 Computer Vision and Pattern Recognition +1606.08814 Solar and Stellar Astrophysics +1606.08844 Analysis of PDEs +1606.08846 Instrumentation and Methods for Astrophysics +1606.08849 Phenomenology +1606.08857 Strongly Correlated Electrons +1606.08861 Probability +1606.08863 Statistical Mechanics +1606.08864 Instrumentation and Methods for Astrophysics +1606.08866 Programming Languages +1606.08867 Numerical Analysis +1606.08868 Materials Science +1606.08872 Representation Theory +1606.08875 Probability +1606.08876 Metric Geometry +1606.08881 Distributed, Parallel, and Cluster Computing +1606.08883 Distributed, Parallel, and Cluster Computing +1606.08884 Databases +1606.08887 Dynamical Systems +1606.08888 Metric Geometry +1606.08892 Phenomenology +1606.08896 Artificial Intelligence +1606.08900 Representation Theory +1606.08902 Quantitative Methods +1606.08903 Methodology +1606.08904 Distributed, Parallel, and Cluster Computing +1606.08906 Artificial Intelligence +1606.08907 Phenomenology +1606.08909 Combinatorics +1606.08910 Numerical Analysis +1606.08911 Quantum Gases +1606.08916 Physics and Society +1606.08920 Learning +1606.08922 Cosmology and Nongalactic Astrophysics +1606.08925 Methodology +1606.08927 Social and Information Networks +1606.08928 Learning +1606.08929 +1606.08930 Category Theory +1606.08931 Phenomenology +1606.08933 Differential Geometry +1606.08934 Differential Geometry +1606.08935 Analysis of PDEs +1606.08936 Networking and Internet Architecture +1606.08937 Classical Analysis and ODEs +1606.08938 Dynamical Systems +1606.08939 Systems and Control +1606.08941 Genomics +1606.08943 Combinatorics +1606.08944 Number Theory +1606.08947 Materials Science +1606.08950 Information Theory +1606.08951 Optimization and Control +1606.08952 Information Theory +1606.08954 Computation and Language +1606.08955 Multimedia +1606.08957 Machine Learning +1606.08958 Differential Geometry +1606.08961 Functional Analysis +1606.08963 Artificial Intelligence +1606.08964 Quantum Gases +1606.08967 History and Overview +1606.08968 Networking and Internet Architecture +1606.08971 Information Theory +1606.08972 Discrete Mathematics +1606.08973 Information Theory +1606.08974 Statistics Theory +1606.08978 Probability +1606.08981 Functional Analysis +1606.08984 Economics +1606.08985 Spectral Theory +1606.08986 Probability +1606.08989 Astrophysics of Galaxies +1606.08990 Information Theory +1606.08993 Chaotic Dynamics +1606.08997 Probability +1606.08999 Multimedia +1606.09001 Mesoscale and Nanoscale Physics +1606.09003 Phenomenology +1606.09004 Applications +1606.09005 Optics +1606.09006 Algebraic Geometry +1606.09012 Networking and Internet Architecture +1606.09014 Biological Physics +1606.09017 Other Statistics +1606.09021 Materials Science +1606.09022 Learning +1606.09027 Mesoscale and Nanoscale Physics +1606.09029 Computer Vision and Pattern Recognition +1606.09034 Disordered Systems and Neural Networks +1606.09038 Phenomenology +1606.09040 Algebraic Geometry +1606.09042 Cryptography and Security +1606.09044 Phenomenology +1606.09046 Phenomenology +1606.09047 Multimedia +1606.09049 +1606.09058 Computation and Language +1606.09059 Mesoscale and Nanoscale Physics +1606.09060 Differential Geometry +1606.09062 Combinatorics +1606.09064 Analysis of PDEs +1606.09065 Combinatorics +1606.09067 Phenomenology +1606.09068 Combinatorics +1606.09069 Representation Theory +1606.09073 Information Theory +1606.09076 Information Theory +1606.09080 Category Theory +1606.09081 Combinatorics +1606.09082 Physics and Society +1606.09083 General Mathematics +1606.09086 Solar and Stellar Astrophysics +1606.09087 Statistics Theory +1606.09092 Classical Analysis and ODEs +1606.09094 Soft Condensed Matter +1606.09096 Representation Theory +1606.09097 Group Theory +1606.09100 Solar and Stellar Astrophysics +1606.09101 Combinatorics +1606.09102 Chemical Physics +1606.09106 Information Theory +1606.09109 Spectral Theory +1606.09111 Optimization and Control +1606.09117 Accelerator Physics +1606.09118 Computer Vision and Pattern Recognition +1606.09123 Methodology +1606.09124 Fluid Dynamics +1606.09126 Statistics Theory +1606.09131 Information Theory +1606.09132 Combinatorics +1606.09133 Biological Physics +1606.09135 Information Theory +1606.09136 Digital Libraries +1606.09141 Differential Geometry +1606.09144 Complex Variables +1606.09145 Complex Variables +1606.09150 Experiment +1606.09154 Metric Geometry +1606.09155 Optimization and Control +1606.09163 Computation and Language +1606.09167 Fluid Dynamics +1606.09169 Group Theory +1606.09173 Computational Physics +1606.09175 Combinatorics +1606.09184 Machine Learning +1606.09185 Neurons and Cognition +1606.09188 Computational Geometry +1606.09190 Machine Learning +1606.09191 Phenomenology +1606.09192 Strongly Correlated Electrons +1606.09193 Statistics Theory +1606.09194 Trading and Market Microstructure +1606.09195 Cosmology and Nongalactic Astrophysics +1606.09196 Solar and Stellar Astrophysics +1606.09197 Learning +1606.09198 Differential Geometry +1606.09200 +1606.09205 Computers and Society +1606.09208 Combinatorics +1606.09215 Solar and Stellar Astrophysics +1606.09220 +1606.09222 Sound +1606.09224 Cosmology and Nongalactic Astrophysics +1606.09225 +1606.09227 Solar and Stellar Astrophysics +1606.09228 Probability +1606.09233 Information Theory +1606.09235 Mesoscale and Nanoscale Physics +1606.09236 Computers and Society +1606.09239 Computation and Language +hep-th/0110122 Theory +0710.4526 +0812.1385 Computational Complexity +1011.1635 Algebraic Topology +1105.2714 Functional Analysis +1109.1885 Theory +1203.0373 Analysis of PDEs +1204.2532 Dynamical Systems +1204.5236 Analysis of PDEs +1206.3900 Differential Geometry +1207.4839 Differential Geometry +1207.6440 Functional Analysis +1208.4055 Algebraic Geometry +1211.7023 Algebraic Geometry +1301.6238 Probability +1303.7018 Geometric Topology +1304.3172 Data Structures and Algorithms +1305.1978 +1306.6055 Symplectic Geometry +1306.6150 Dynamical Systems +1307.3012 +1308.3152 Geometric Topology +1311.0846 Differential Geometry +1311.5152 Symplectic Geometry +1312.2543 Number Theory +1312.4997 Probability +1312.6050 Functional Analysis +1312.6947 Computation and Language +1312.7450 Algebraic Topology +1401.0350 Algebraic Geometry +1401.1039 Geometric Topology +1401.1082 Solar and Stellar Astrophysics +1401.3234 Dynamical Systems +1401.5166 Classical Analysis and ODEs +1401.7194 Combinatorics +1402.4517 Superconductivity +1403.0406 Logic in Computer Science +1403.1855 K-Theory and Homology +1403.2125 Metric Geometry +1403.2313 +1403.2412 Instrumentation and Detectors +1403.6101 Algebraic Topology +1403.6820 Instrumentation and Methods for Astrophysics +1403.6841 Instrumentation and Methods for Astrophysics +1404.0065 Combinatorics +1404.1465 Complex Variables +1404.2225 Algebraic Geometry +1404.2736 Geometric Topology +1404.5249 Differential Geometry +1404.6190 Pricing of Securities +1404.6593 Instrumentation and Methods for Astrophysics +1405.0228 High Energy Astrophysical Phenomena +1405.3645 Instrumentation and Detectors +1405.6372 Differential Geometry +1406.2133 Pricing of Securities +1406.2382 Operator Algebras +1406.2722 Geometric Topology +1406.2742 Data Analysis, Statistics and Probability +1406.4531 +1406.5900 Geometric Topology +1406.6730 Information Theory +1407.1469 Analysis of PDEs +1407.3216 Soft Condensed Matter +1407.4603 Mesoscale and Nanoscale Physics +1407.4993 Algebraic Topology +1407.5389 +1407.5749 Classical Analysis and ODEs +1408.0382 Analysis of PDEs +1408.1555 Geometric Topology +1408.5097 Instrumentation and Methods for Astrophysics +1408.5479 Geometric Topology +1409.1248 +1409.1409 Materials Science +1409.1690 Solar and Stellar Astrophysics +1409.4784 Geometric Topology +1409.5212 Functional Analysis +1409.6566 Dynamical Systems +1410.0670 +1410.2782 Classical Analysis and ODEs +1410.3484 Phenomenology +1410.3574 Algebraic Geometry +1410.5359 Differential Geometry +1410.7740 Mesoscale and Nanoscale Physics +1411.1782 Metric Geometry +1411.2300 Geometric Topology +1411.2734 Commutative Algebra +1411.4164 Functional Analysis +1412.0012 Astrophysics of Galaxies +1412.0186 Geometric Topology +1412.1341 Phenomenology +1412.3315 Combinatorics +1412.3322 Probability +1412.3661 Statistics Theory +1412.3831 Data Analysis, Statistics and Probability +1412.8612 Strongly Correlated Electrons +1501.00165 Combinatorics +1501.00296 Earth and Planetary Astrophysics +1501.00328 Instrumentation and Methods for Astrophysics +1501.00595 +1501.03738 Disordered Systems and Neural Networks +1501.03985 +1501.05582 +1501.05786 Cosmology and Nongalactic Astrophysics +1501.06330 High Energy Astrophysical Phenomena +1502.01084 +1502.02218 Information Theory +1502.04476 +1502.04669 Soft Condensed Matter +1502.05456 Theory +1502.06960 Solar and Stellar Astrophysics +1502.07991 Geometric Topology +1503.00733 Theory +1503.03100 +1503.04688 Discrete Mathematics +1503.05234 Quantum Gases +1503.09017 Mesoscale and Nanoscale Physics +1504.00140 Optimization and Control +1504.00715 Representation Theory +1504.01074 Phenomenology +1504.01103 Phenomenology +1504.03170 Data Structures and Algorithms +1504.03378 Superconductivity +1504.03503 Networking and Internet Architecture +1504.04914 Neural and Evolutionary Computing +1504.05201 Solar and Stellar Astrophysics +1504.06157 Representation Theory +1504.08342 Computation and Language +1505.00198 Cosmology and Nongalactic Astrophysics +1505.00346 Information Theory +1505.01067 Phenomenology +1505.01155 Solar and Stellar Astrophysics +1505.01559 Statistical Mechanics +1505.02775 Strongly Correlated Electrons +1505.03370 Mesoscale and Nanoscale Physics +1505.03924 Data Structures and Algorithms +1505.04187 Functional Analysis +1505.04475 Solar and Stellar Astrophysics +1505.05022 Logic in Computer Science +1505.05137 Operator Algebras +1505.05920 +1505.07020 Physics and Society +1506.01013 Atomic Physics +1506.01474 Differential Geometry +1506.01558 Representation Theory +1506.02140 Astrophysics of Galaxies +1506.03559 Strongly Correlated Electrons +1506.04312 Strongly Correlated Electrons +1506.04341 Operator Algebras +1506.04572 Solar and Stellar Astrophysics +1506.05231 Information Theory +1506.05250 Phenomenology +1506.05967 Machine Learning +1506.07443 Phenomenology +1506.07644 Strongly Correlated Electrons +1506.07801 High Energy Astrophysical Phenomena +1506.07826 Lattice +1506.08832 Phenomenology +1507.00672 Statistical Mechanics +1507.01340 Number Theory +1507.02105 Instrumentation and Methods for Astrophysics +1507.02537 Methodology +1507.02881 Mesoscale and Nanoscale Physics +1507.03449 Strongly Correlated Electrons +1507.03961 Instrumentation and Methods for Astrophysics +1507.03966 Earth and Planetary Astrophysics +1507.04652 +1507.04758 Solar and Stellar Astrophysics +1507.06051 Earth and Planetary Astrophysics +1507.06486 Phenomenology +1507.06605 Phenomenology +1507.07002 Astrophysics of Galaxies +1507.07802 Phenomenology +1507.07926 Phenomenology +1507.08200 Strongly Correlated Electrons +1507.08641 Information Theory +1507.08805 Numerical Analysis +1508.00321 Earth and Planetary Astrophysics +1508.00585 Phenomenology +1508.00646 Earth and Planetary Astrophysics +1508.00659 +1508.00881 Phenomenology +1508.01501 Phenomenology +1508.01823 Combinatorics +1508.02141 +1508.02712 High Energy Astrophysical Phenomena +1508.02999 +1508.03322 Experiment +1508.03988 Plasma Physics +1508.04328 +1508.04482 Superconductivity +1508.05082 Logic +1508.05088 High Energy Astrophysical Phenomena +1508.05584 Atomic Physics +1508.06249 Phenomenology +1508.06506 Analysis of PDEs +1508.06536 Strongly Correlated Electrons +1508.07434 Logic +1508.07596 Lattice +1509.00020 Instrumentation and Methods for Astrophysics +1509.00860 +1509.00973 Materials Science +1509.01082 Astrophysics of Galaxies +1509.01248 High Energy Astrophysical Phenomena +1509.01411 Instrumentation and Methods for Astrophysics +1509.01735 +1509.01740 Information Theory +1509.01911 Quantum Gases +1509.01985 Strongly Correlated Electrons +1509.02160 Theory +1509.02562 +1509.03314 Strongly Correlated Electrons +1509.03426 +1509.03658 Strongly Correlated Electrons +1509.03662 K-Theory and Homology +1509.03725 +1509.04028 Optics +1509.04212 Superconductivity +1509.04579 +1509.04910 Probability +1509.05183 Physics and Society +1509.05777 Theory +1509.05933 Combinatorics +1509.05956 +1509.06021 Differential Geometry +1509.06360 +1509.06379 Solar and Stellar Astrophysics +1509.06466 Solar and Stellar Astrophysics +1509.06476 Mesoscale and Nanoscale Physics +1509.06591 +1509.06762 Astrophysics of Galaxies +1509.07829 +1509.07872 Theory +1509.08389 +1509.08450 +1509.08822 +1510.00180 +1510.00194 Theory +1510.00654 Experiment +1510.01323 Earth and Planetary Astrophysics +1510.01532 Superconductivity +1510.01641 Experiment +1510.01745 Cosmology and Nongalactic Astrophysics +1510.01884 +1510.01916 Cosmology and Nongalactic Astrophysics +1510.02116 Strongly Correlated Electrons +1510.02168 Phenomenology +1510.02603 Superconductivity +1510.02688 Materials Science +1510.02980 Quantum Gases +1510.03417 +1510.03579 Solar and Stellar Astrophysics +1510.03644 +1510.03818 Experiment +1510.03847 Optics +1510.03958 +1510.04145 Number Theory +1510.04278 Strongly Correlated Electrons +1510.04405 Mesoscale and Nanoscale Physics +1510.04625 +1510.05341 Adaptation and Self-Organizing Systems +1510.05397 High Energy Astrophysical Phenomena +1510.05401 Astrophysics of Galaxies +1510.05637 Earth and Planetary Astrophysics +1510.05791 +1510.05839 Optics +1510.05878 Earth and Planetary Astrophysics +1510.05895 Phenomenology +1510.05977 +1510.06196 +1510.06205 Instrumentation and Methods for Astrophysics +1510.06242 High Energy Astrophysical Phenomena +1510.06499 +1510.06575 Earth and Planetary Astrophysics +1510.06621 Genomics +1510.06711 Solar and Stellar Astrophysics +1510.06819 Algebraic Geometry +1510.07223 Earth and Planetary Astrophysics +1510.07490 +1510.07518 Atomic Physics +1510.07532 +1510.08030 +1510.08394 Earth and Planetary Astrophysics +1510.08414 Earth and Planetary Astrophysics +1510.08430 Materials Science +1510.08536 Astrophysics of Galaxies +1510.08655 Strongly Correlated Electrons +1510.08672 Theory +1511.00419 +1511.00726 Representation Theory +1511.00904 Astrophysics of Galaxies +1511.00912 Strongly Correlated Electrons +1511.00958 Optics +1511.00992 Superconductivity +1511.01027 +1511.01417 Earth and Planetary Astrophysics +1511.01520 Astrophysics of Galaxies +1511.01537 Astrophysics of Galaxies +1511.01857 +1511.02088 Molecular Networks +1511.02390 Optimization and Control +1511.02421 Optics +1511.02541 Theory +1511.02728 +1511.03280 Cosmology and Nongalactic Astrophysics +1511.03620 Phenomenology +1511.03682 Phenomenology +1511.03715 Instrumentation and Methods for Astrophysics +1511.03735 Earth and Planetary Astrophysics +1511.03768 Quantum Gases +1511.03862 +1511.04022 +1511.04025 Physics and Society +1511.04064 Statistical Mechanics +1511.04822 Earth and Planetary Astrophysics +1511.05193 Quantum Gases +1511.05564 Instrumentation and Methods for Astrophysics +1511.05590 Phenomenology +1511.05897 Learning +1511.05954 Earth and Planetary Astrophysics +1511.06030 Artificial Intelligence +1511.06157 Statistical Mechanics +1511.06769 Earth and Planetary Astrophysics +1511.07405 Other Condensed Matter +1511.07455 Theory +1511.08010 Quantum Gases +1511.08148 +1511.08153 +1511.08637 Quantum Gases +1511.08687 Theory +1511.09383 High Energy Astrophysical Phenomena +1511.09400 Superconductivity +1512.00253 Astrophysics of Galaxies +1512.00493 Theory +1512.00673 Analysis of PDEs +1512.00680 Mesoscale and Nanoscale Physics +1512.00687 Mesoscale and Nanoscale Physics +1512.00817 Phenomenology +1512.00855 High Energy Astrophysical Phenomena +1512.00860 Astrophysics of Galaxies +1512.00991 Astrophysics of Galaxies +1512.01200 +1512.01375 Computer Science and Game Theory +1512.01532 High Energy Astrophysical Phenomena +1512.01833 High Energy Astrophysical Phenomena +1512.02108 Solar and Stellar Astrophysics +1512.02150 Atomic Physics +1512.02152 Phenomenology +1512.02327 Astrophysics of Galaxies +1512.02706 Earth and Planetary Astrophysics +1512.03066 High Energy Astrophysical Phenomena +1512.03331 Theory +1512.03349 Solar and Stellar Astrophysics +1512.03434 Astrophysics of Galaxies +1512.03467 Astrophysics of Galaxies +1512.03596 Earth and Planetary Astrophysics +1512.03693 Solar and Stellar Astrophysics +1512.03872 Phenomenology +1512.04034 Phenomenology +1512.04206 Mesoscale and Nanoscale Physics +1512.04378 Atomic Physics +1512.04413 Quantum Gases +1512.04442 Experiment +1512.04613 Numerical Analysis +1512.04770 Probability +1512.04861 Strongly Correlated Electrons +1512.04908 Earth and Planetary Astrophysics +1512.04921 Phenomenology +1512.05108 Theory +1512.05368 High Energy Astrophysical Phenomena +1512.05692 Solar and Stellar Astrophysics +1512.05750 Theory +1512.05961 Phenomenology +1512.06102 Strongly Correlated Electrons +1512.06124 High Energy Astrophysical Phenomena +1512.06134 Theory +1512.06508 Phenomenology +1512.06664 Phenomenology +1512.06728 Phenomenology +1512.06733 Phenomenology +1512.06805 Theory +1512.06952 High Energy Astrophysical Phenomena +1512.06969 Astrophysics of Galaxies +1512.07084 +1512.07107 Solar and Stellar Astrophysics +1512.07232 Phenomenology +1512.07394 Cosmology and Nongalactic Astrophysics +1512.07481 Statistical Mechanics +1512.07672 Phenomenology +1512.07860 +1512.07905 Chemical Physics +1512.08015 Cosmology and Nongalactic Astrophysics +1512.08600 Cosmology and Nongalactic Astrophysics +1512.08793 Solar and Stellar Astrophysics +1512.08802 +1512.09138 Theory +1512.09301 Systems and Control +1601.00344 Astrophysics of Galaxies +1601.00347 High Energy Astrophysical Phenomena +1601.00474 Solar and Stellar Astrophysics +1601.00505 Earth and Planetary Astrophysics +1601.00540 Theory +1601.00544 Astrophysics of Galaxies +1601.00644 Astrophysics of Galaxies +1601.00749 Solar and Stellar Astrophysics +1601.00791 Solar and Stellar Astrophysics +1601.00907 Earth and Planetary Astrophysics +1601.00937 Astrophysics of Galaxies +1601.01000 Classical Analysis and ODEs +1601.01020 High Energy Astrophysical Phenomena +1601.01154 +1601.01264 High Energy Astrophysical Phenomena +1601.01687 Astrophysics of Galaxies +1601.01756 Solar and Stellar Astrophysics +1601.02073 Instrumentation and Methods for Astrophysics +1601.02116 Materials Science +1601.02170 Solar and Stellar Astrophysics +1601.02176 Quantum Gases +1601.02292 Earth and Planetary Astrophysics +1601.02311 Computational Complexity +1601.02395 Earth and Planetary Astrophysics +1601.02400 Phenomenology +1601.02506 Solar and Stellar Astrophysics +1601.02535 Atomic Physics +1601.02606 Solar and Stellar Astrophysics +1601.02614 Instrumentation and Methods for Astrophysics +1601.02664 Astrophysics of Galaxies +1601.02690 Atomic Physics +1601.03050 Earth and Planetary Astrophysics +1601.03056 Astrophysics of Galaxies +1601.03077 Astrophysics of Galaxies +1601.03331 High Energy Astrophysical Phenomena +1601.03349 Astrophysics of Galaxies +1601.03395 Solar and Stellar Astrophysics +1601.03556 Cosmology and Nongalactic Astrophysics +1601.03668 Astrophysics of Galaxies +1601.03687 Astrophysics of Galaxies +1601.03739 High Energy Astrophysical Phenomena +1601.03741 Cosmology and Nongalactic Astrophysics +1601.03806 Solar and Stellar Astrophysics +1601.03894 +1601.04069 Solar and Stellar Astrophysics +1601.04266 Instrumentation and Methods for Astrophysics +1601.04430 Strongly Correlated Electrons +1601.04490 High Energy Astrophysical Phenomena +1601.04599 Solar and Stellar Astrophysics +1601.04681 Astrophysics of Galaxies +1601.04709 Astrophysics of Galaxies +1601.04814 Databases +1601.04978 Astrophysics of Galaxies +1601.04983 Solar and Stellar Astrophysics +1601.05020 Data Structures and Algorithms +1601.05090 Astrophysics of Galaxies +1601.05139 Strongly Correlated Electrons +1601.05168 Solar and Stellar Astrophysics +1601.05309 Instrumentation and Methods for Astrophysics +1601.05433 Cosmology and Nongalactic Astrophysics +1601.05464 Instrumentation and Methods for Astrophysics +1601.05665 Earth and Planetary Astrophysics +1601.05736 Solar and Stellar Astrophysics +1601.05811 Solar and Stellar Astrophysics +1601.05949 Atomic Physics +1601.06002 Astrophysics of Galaxies +1601.06155 Astrophysics of Galaxies +1601.06162 Earth and Planetary Astrophysics +1601.06628 Solar and Stellar Astrophysics +1601.06786 Astrophysics of Galaxies +1601.06801 Solar and Stellar Astrophysics +1601.06892 Computer Vision and Pattern Recognition +1601.06947 Astrophysics of Galaxies +1601.07177 Astrophysics of Galaxies +1601.07307 Combinatorics +1601.07368 High Energy Astrophysical Phenomena +1601.07475 +1601.07746 Quantum Gases +1601.07837 Earth and Planetary Astrophysics +1601.07909 Astrophysics of Galaxies +1601.08045 Phenomenology +1602.00450 Materials Science +1602.00637 Phenomenology +1602.00806 High Energy Astrophysical Phenomena +1602.00966 Solar and Stellar Astrophysics +1602.00987 Instrumentation and Methods for Astrophysics +1602.01001 Optics +1602.01087 Astrophysics of Galaxies +1602.01105 Astrophysics of Galaxies +1602.01322 Phenomenology +1602.01400 Astrophysics of Galaxies +1602.01461 Phenomenology +1602.01509 Networking and Internet Architecture +1602.01526 Atomic Physics +1602.01978 Phenomenology +1602.02145 Solar and Stellar Astrophysics +1602.02365 Materials Science +1602.02397 +1602.02596 Cosmology and Nongalactic Astrophysics +1602.02783 Astrophysics of Galaxies +1602.02816 Astrophysics of Galaxies +1602.02844 Number Theory +1602.03079 Solar and Stellar Astrophysics +1602.03252 Materials Science +1602.03270 Theory +1602.03281 Strongly Correlated Electrons +1602.03528 High Energy Astrophysical Phenomena +1602.04558 High Energy Astrophysical Phenomena +1602.04831 Astrophysics of Galaxies +1602.04964 Solar and Stellar Astrophysics +1602.05000 Solar and Stellar Astrophysics +1602.05262 High Energy Astrophysical Phenomena +1602.05346 Solar and Stellar Astrophysics +1602.05412 Astrophysics of Galaxies +1602.05570 Instrumentation and Methods for Astrophysics +1602.05579 Astrophysics of Galaxies +1602.05777 Instrumentation and Methods for Astrophysics +1602.05789 Solar and Stellar Astrophysics +1602.05816 High Energy Astrophysical Phenomena +1602.05864 High Energy Astrophysical Phenomena +1602.05868 Solar and Stellar Astrophysics +1602.05893 Cosmology and Nongalactic Astrophysics +1602.05904 Astrophysics of Galaxies +1602.05923 Cosmology and Nongalactic Astrophysics +1602.05962 Astrophysics of Galaxies +1602.06013 Solar and Stellar Astrophysics +1602.06196 Astrophysics of Galaxies +1602.06280 Solar and Stellar Astrophysics +1602.06343 Cosmology and Nongalactic Astrophysics +1602.06357 Solar and Stellar Astrophysics +1602.06385 +1602.06691 High Energy Astrophysical Phenomena +1602.06798 Astrophysics of Galaxies +1602.06806 Fluid Dynamics +1602.06866 Social and Information Networks +1602.06927 Astrophysics of Galaxies +1602.07135 +1602.07168 Cryptography and Security +1602.07308 Astrophysics of Galaxies +1602.07431 Number Theory +1602.07637 Software Engineering +1602.07651 Astrophysics of Galaxies +1602.08083 Phenomenology +1602.08174 Strongly Correlated Electrons +1602.08641 Astrophysics of Galaxies +1602.08704 Solar and Stellar Astrophysics +1602.09031 Computational Physics +1603.00009 Instrumentation and Detectors +1603.00028 +1603.00219 Instrumentation and Methods for Astrophysics +1603.00224 High Energy Astrophysical Phenomena +1603.00454 Logic +1603.00715 Astrophysics of Galaxies +1603.00759 Data Structures and Algorithms +1603.00853 +1603.00893 Databases +1603.00903 +1603.00911 Soft Condensed Matter +1603.01086 Logic +1603.01170 Plasma Physics +1603.01192 Plasma Physics +1603.01243 +1603.01670 Learning +1603.01917 Solar and Stellar Astrophysics +1603.02032 Combinatorics +1603.02218 Optics +1603.02257 +1603.02260 Other Computer Science +1603.02261 Software Engineering +1603.02262 Software Engineering +1603.02263 Differential Geometry +1603.02269 +1603.02270 Solar and Stellar Astrophysics +1603.02276 Solar and Stellar Astrophysics +1603.02288 Complex Variables +1603.02290 Instrumentation and Detectors +1603.02293 Networking and Internet Architecture +1603.02295 Differential Geometry +1603.02297 Mathematical Software +1603.02298 Cellular Automata and Lattice Gases +1603.02304 Analysis of PDEs +1603.02305 Materials Science +1603.02308 Software Engineering +1603.02310 Combinatorics +1603.02313 Physics Education +1603.02314 Statistical Mechanics +1603.02316 Probability +1603.02318 Materials Science +1603.02319 Algebraic Geometry +1603.02320 Strongly Correlated Electrons +1603.02321 Data Structures and Algorithms +1603.02323 Functional Analysis +1603.02327 Quantum Gases +1603.02328 Group Theory +1603.02330 Classical Analysis and ODEs +1603.02335 Optimization and Control +1603.02339 Distributed, Parallel, and Cluster Computing +1603.02341 Robotics +1603.02344 Information Theory +1603.02347 Robotics +1603.02351 Robotics +1603.02352 Instrumentation and Methods for Astrophysics +1603.02353 Algebraic Geometry +1603.02354 Portfolio Management +1603.02355 Algebraic Geometry +1603.02357 Superconductivity +1603.02360 Instrumentation and Detectors +1603.02361 Analysis of PDEs +1603.02362 Probability +1603.02365 Information Theory +1603.02372 Geometric Topology +1603.02373 Other Statistics +1603.02380 Geometric Topology +1603.02381 Robotics +1603.02382 Algebraic Geometry +1603.02384 Optimization and Control +1603.02387 Differential Geometry +1603.02388 Information Theory +1603.02389 Cosmology and Nongalactic Astrophysics +1603.02391 Number Theory +1603.02393 Other Computer Science +1603.02394 Mesoscale and Nanoscale Physics +1603.02396 Other Computer Science +1603.02399 Analysis of PDEs +1603.02400 Optimization and Control +1603.02401 Probability +1603.02402 Analysis of PDEs +1603.02406 Dynamical Systems +1603.02412 Optimization and Control +1603.02413 Social and Information Networks +1603.02414 Populations and Evolution +1603.02416 +1603.02419 Networking and Internet Architecture +1603.02420 Optics +1603.02421 Fluid Dynamics +1603.02422 Probability +1603.02424 +1603.02425 Materials Science +1603.02426 Systems and Control +1603.02428 Combinatorics +1603.02429 Numerical Analysis +1603.02430 Combinatorics +1603.02433 Combinatorics +1603.02434 Machine Learning +1603.02437 Soft Condensed Matter +1603.02438 Economics +1603.02440 Soft Condensed Matter +1603.02441 Soft Condensed Matter +1603.02442 Theory +1603.02445 Soft Condensed Matter +1603.02447 Computer Vision and Pattern Recognition +1603.02452 Phenomenology +1603.02454 Optimization and Control +1603.02457 Data Structures and Algorithms +1603.02458 Systems and Control +1603.02464 Geometric Topology +1603.02465 High Energy Astrophysical Phenomena +1603.02466 Computer Vision and Pattern Recognition +1603.02467 Discrete Mathematics +1603.02469 Logic +1603.02471 Functional Analysis +1603.02472 Networking and Internet Architecture +1603.02474 Combinatorics +1603.02476 Networking and Internet Architecture +1603.02482 Atomic Physics +1603.02484 Computers and Society +1603.02487 Physics and Society +1603.02488 Computation and Language +1603.02489 Logic +1603.02491 Information Theory +1603.02492 Solar and Stellar Astrophysics +1603.02494 Applications +1603.02497 Dynamical Systems +1603.02499 Materials Science +1603.02503 Instrumentation and Detectors +1603.02506 Probability +1603.02512 Solar and Stellar Astrophysics +1603.02515 +1603.02516 Computational Physics +1603.02519 Materials Science +1603.02526 Distributed, Parallel, and Cluster Computing +1603.02527 Probability +1603.02528 Mesoscale and Nanoscale Physics +1603.02532 Learning +1603.02533 Dynamical Systems +1603.02534 Functional Analysis +1603.02535 Dynamical Systems +1603.02536 Number Theory +1603.02539 Fluid Dynamics +1603.02542 Dynamical Systems +1603.02545 Mesoscale and Nanoscale Physics +1603.02547 Materials Science +1603.02550 Materials Science +1603.02556 Analysis of PDEs +1603.02558 Information Theory +1603.02559 Mesoscale and Nanoscale Physics +1603.02560 General Physics +1603.02563 Systems and Control +1603.02566 Optimization and Control +1603.02568 General Physics +1603.02570 Quantum Gases +1603.02576 Materials Science +1603.02578 Learning +1603.02579 Plasma Physics +1603.02584 Networking and Internet Architecture +1603.02586 Theory +1603.02589 Statistics Theory +1603.02592 Representation Theory +1603.02593 Chemical Physics +1603.02594 Combinatorics +1603.02596 Optimization and Control +1603.02597 Formal Languages and Automata Theory +1603.02598 Superconductivity +1603.02599 Group Theory +1603.02604 Computation and Language +1603.02605 Computational Complexity +1603.02607 Solar and Stellar Astrophysics +1603.02612 Soft Condensed Matter +1603.02613 Networking and Internet Architecture +1603.02614 Category Theory +1603.02627 +1603.02631 Numerical Analysis +1603.02638 Optimization and Control +1603.02641 Logic in Computer Science +1603.02642 Human-Computer Interaction +1603.02645 Astrophysics of Galaxies +1603.02646 Dynamical Systems +1603.02648 Classical Analysis and ODEs +1603.02649 Computer Vision and Pattern Recognition +1603.02650 Systems and Control +1603.02651 Information Theory +1603.02652 Numerical Analysis +1603.02655 Distributed, Parallel, and Cluster Computing +1603.02658 Numerical Analysis +1603.02665 Statistics Theory +1603.02666 Algebraic Geometry +1603.02667 Materials Science +1603.02668 Complex Variables +1603.02671 Cryptography and Security +1603.02675 Superconductivity +astro-ph/0505311 +math/0507526 Probability +0709.2303 Strongly Correlated Electrons +0804.2779 Strongly Correlated Electrons +0807.1903 General Physics +0903.2347 Strongly Correlated Electrons +1001.2687 Cosmology and Nongalactic Astrophysics +1003.4415 Strongly Correlated Electrons +1011.2703 Phenomenology +1011.2748 Instrumentation and Detectors +1101.3481 Algebraic Geometry +1103.4850 Strongly Correlated Electrons +1104.3255 Analysis of PDEs +1109.4923 +1203.3779 Pattern Formation and Solitons +1205.0239 Strongly Correlated Electrons +1205.4530 +1205.5754 Theory +1206.0252 Number Theory +1208.6574 High Energy Astrophysical Phenomena +1210.1903 Algebraic Geometry +1210.8070 Differential Geometry +1210.8244 Cosmology and Nongalactic Astrophysics +1212.0182 Group Theory +1304.4043 Earth and Planetary Astrophysics +1306.0706 Computational Geometry +1306.2117 +1308.2481 Strongly Correlated Electrons +1308.2915 Algebraic Geometry +1308.3028 Complex Variables +1308.3080 Neural and Evolutionary Computing +1309.0477 Analysis of PDEs +1309.4213 Differential Geometry +1309.5666 Algebraic Geometry +1310.6257 Databases +1311.1545 Pricing of Securities +1311.7371 Instrumentation and Methods for Astrophysics +1402.5426 Differential Geometry +1402.7057 Statistical Mechanics +1403.0268 Optimization and Control +1405.1018 Number Theory +1406.3328 Algebraic Geometry +1406.5395 Group Theory +1406.5955 Statistical Mechanics +1406.7564 Social and Information Networks +1407.0604 +1407.2861 Number Theory +1407.4093 Classical Analysis and ODEs +1407.5021 +1407.6989 Computational Geometry +1408.1577 Computer Science and Game Theory +1408.6148 Mesoscale and Nanoscale Physics +1410.1056 Dynamical Systems +1410.4684 Cosmology and Nongalactic Astrophysics +1410.5921 Strongly Correlated Electrons +1410.8097 +1411.0962 Differential Geometry +1411.4001 Cosmology and Nongalactic Astrophysics +1412.4698 Mathematical Finance +1412.5746 +1501.02077 Superconductivity +1501.03178 Metric Geometry +1501.04086 Quantum Gases +1502.01800 Strongly Correlated Electrons +1502.02607 Superconductivity +1502.03198 Differential Geometry +1502.03386 +1503.01641 Classical Physics +1503.01884 +1503.04453 Quantum Gases +1503.05256 Algebraic Geometry +1503.05731 Strongly Correlated Electrons +1503.07869 Instrumentation and Methods for Astrophysics +1503.08725 +1504.02311 Cosmology and Nongalactic Astrophysics +1504.03980 Representation Theory +1504.06726 Combinatorics +1504.06958 +1505.04211 Neural and Evolutionary Computing +1505.04342 Computation and Language +1505.04470 Probability +1505.04949 Probability +1505.05222 Differential Geometry +1505.05393 Theory +1505.05770 Machine Learning +1505.06192 +1505.06511 Classical Analysis and ODEs +1505.06909 Atomic Physics +1505.08151 Quantum Gases +1506.00465 Strongly Correlated Electrons +1506.01377 Astrophysics of Galaxies +1506.02215 Number Theory +1506.03834 Solar and Stellar Astrophysics +1506.05525 Information Theory +1506.06011 Performance +1506.06878 +1506.08113 Dynamical Systems +1506.08804 +1507.01859 Optimization and Control +1507.01945 Astrophysics of Galaxies +1507.02041 +1507.02081 Robotics +1507.05007 +1507.05123 +1507.05337 Populations and Evolution +1507.07878 Physics and Society +1507.08293 Theory +1507.08365 Representation Theory +1507.08528 Statistical Mechanics +1508.00298 Methodology +1508.00845 Probability +1508.02236 +1508.02757 Statistics Theory +1508.03089 Strongly Correlated Electrons +1508.03682 Medical Physics +1508.03829 +1508.04077 Cosmology and Nongalactic Astrophysics +1508.04422 Machine Learning +1508.04478 Cosmology and Nongalactic Astrophysics +1508.05001 Solar and Stellar Astrophysics +1508.05055 Theory +1508.05762 Astrophysics of Galaxies +1508.06418 Differential Geometry +1508.07350 Cosmology and Nongalactic Astrophysics +1508.07857 Disordered Systems and Neural Networks +1509.00050 Phenomenology +1509.00074 Theory +1509.00806 Soft Condensed Matter +1509.02431 Number Theory +1509.03071 Chemical Physics +1509.03296 High Energy Astrophysical Phenomena +1509.03348 Materials Science +1509.04073 +1509.04768 Probability +1509.05610 Instrumentation and Detectors +1509.06278 Quantitative Methods +1509.07126 +1509.07585 Cosmology and Nongalactic Astrophysics +1509.07705 Mesoscale and Nanoscale Physics +1509.09167 Probability +1510.01033 +1510.01380 Theory +1510.01857 Superconductivity +1510.02545 Mathematical Software +1510.02907 Cosmology and Nongalactic Astrophysics +1510.03011 Biological Physics +1510.03136 Solar and Stellar Astrophysics +1510.03240 +1510.03355 Quantum Gases +1510.03988 Strongly Correlated Electrons +1510.05059 Theory +1510.05848 +1510.06118 Algebraic Geometry +1510.06851 Phenomenology +1510.06977 Fluid Dynamics +1510.07059 Mesoscale and Nanoscale Physics +1510.08232 Theory +1510.08766 +1510.08797 Metric Geometry +1511.00313 Theory +1511.00581 +1511.00885 Metric Geometry +1511.01983 Astrophysics of Galaxies +1511.02111 Combinatorics +1511.02522 Cosmology and Nongalactic Astrophysics +1511.03380 High Energy Astrophysical Phenomena +1511.03439 Phenomenology +1511.04210 Learning +1511.04482 Combinatorics +1511.04795 Theory +1511.04967 Theory +1511.05602 Astrophysics of Galaxies +1511.06176 +1511.06255 Phenomenology +1511.06892 Computer Science and Game Theory +1511.06897 +1511.07379 +1511.07572 +1511.07841 Theory +1511.08211 Cosmology and Nongalactic Astrophysics +1511.08469 Strongly Correlated Electrons +1511.08690 Cosmology and Nongalactic Astrophysics +1511.08741 Astrophysics of Galaxies +1512.00038 Mesoscale and Nanoscale Physics +1512.00309 Cosmology and Nongalactic Astrophysics +1512.00489 Mesoscale and Nanoscale Physics +1512.00535 Strongly Correlated Electrons +1512.00660 +1512.00830 Statistical Mechanics +1512.00955 Optics +1512.01912 Instrumentation and Methods for Astrophysics +1512.01919 +1512.02941 Analysis of PDEs +1512.03026 Mesoscale and Nanoscale Physics +1512.03283 Strongly Correlated Electrons +1512.03303 Mesoscale and Nanoscale Physics +1512.03309 Materials Science +1512.03382 Other Condensed Matter +1512.03708 Solar and Stellar Astrophysics +1512.03760 Chaotic Dynamics +1512.03903 Astrophysics of Galaxies +1512.04342 Astrophysics of Galaxies +1512.04531 Astrophysics of Galaxies +1512.04707 Pattern Formation and Solitons +1512.05305 Theory +1512.06297 Phenomenology +1512.06346 Astrophysics of Galaxies +1512.06458 Phenomenology +1512.07253 Superconductivity +1512.07606 Optics +1512.07915 Cosmology and Nongalactic Astrophysics +1512.08213 +1512.08224 Dynamical Systems +1512.08349 +1512.08420 Solar and Stellar Astrophysics +1512.08963 Phenomenology +1512.08984 Phenomenology +1512.08992 Phenomenology +1512.09054 Lattice +1512.09126 Phenomenology +1601.00357 Cosmology and Nongalactic Astrophysics +1601.00433 Atomic Physics +1601.00759 Materials Science +1601.00921 Theory +1601.01569 Phenomenology +1601.02045 Symplectic Geometry +1601.02140 Phenomenology +1601.02172 Strongly Correlated Electrons +1601.02609 Phenomenology +1601.02956 +1601.03138 Instrumentation and Methods for Astrophysics +1601.03203 Fluid Dynamics +1601.03990 Strongly Correlated Electrons +1601.04347 Phenomenology +1601.05062 Phenomenology +1601.05317 +1601.05431 Quantum Gases +1601.05575 Social and Information Networks +1601.05701 Representation Theory +1601.05881 Mesoscale and Nanoscale Physics +1601.05903 Instrumentation and Methods for Astrophysics +1601.05955 High Energy Astrophysical Phenomena +1601.06172 Quantum Gases +1601.06554 Phenomenology +1601.06571 Astrophysics of Galaxies +1601.07396 Phenomenology +1601.07524 Mesoscale and Nanoscale Physics +1601.08108 Mesoscale and Nanoscale Physics +1602.00423 Mesoscale and Nanoscale Physics +1602.01005 +1602.01367 Mesoscale and Nanoscale Physics +1602.01422 Strongly Correlated Electrons +1602.01696 Quantum Gases +1602.01740 Earth and Planetary Astrophysics +1602.02328 Quantum Gases +1602.02340 Mesoscale and Nanoscale Physics +1602.02476 Disordered Systems and Neural Networks +1602.02537 Materials Science +1602.02729 Solar and Stellar Astrophysics +1602.02761 Astrophysics of Galaxies +1602.02978 Strongly Correlated Electrons +1602.02997 Phenomenology +1602.03056 Solar and Stellar Astrophysics +1602.03062 Plasma Physics +1602.03504 Atomic Physics +1602.03971 +1602.03989 +1602.04142 Lattice +1602.05406 Algebraic Topology +1602.05592 Astrophysics of Galaxies +1602.05849 Phenomenology +1602.06054 Strongly Correlated Electrons +1602.06481 Mesoscale and Nanoscale Physics +1602.06951 +1602.07007 Statistical Mechanics +1602.07109 Machine Learning +1602.07144 +1602.07213 Solar and Stellar Astrophysics +1602.07627 Optics +1602.07922 +1602.08200 Atomic Physics +1602.08500 Astrophysics of Galaxies +1602.08513 +1602.08957 Physics and Society +1602.09048 +1602.09086 Statistical Mechanics +1603.00236 +1603.00290 Phenomenology +1603.00308 Theory +1603.00498 Mesoscale and Nanoscale Physics +1603.00511 High Energy Astrophysical Phenomena +1603.00642 +1603.00648 Information Theory +1603.00725 Soft Condensed Matter +1603.00744 High Energy Astrophysical Phenomena +1603.01006 Computer Vision and Pattern Recognition +1603.01704 +1603.01788 Phenomenology +1603.01880 Neurons and Cognition +1603.01898 High Energy Astrophysical Phenomena +1603.01980 Physics and Society +1603.02156 Superconductivity +1603.02243 Cosmology and Nongalactic Astrophysics +1603.02376 Phenomenology +1603.02455 Quantum Gases +1603.02546 Astrophysics of Galaxies +1603.02756 +1603.03240 Astrophysics of Galaxies +1603.03383 Earth and Planetary Astrophysics +1603.03490 Data Structures and Algorithms +1603.03581 Optics +1603.04149 +1603.04239 Mesoscale and Nanoscale Physics +1603.04249 Cosmology and Nongalactic Astrophysics +1603.04306 Lattice +1603.04420 Astrophysics of Galaxies +1603.04429 Populations and Evolution +1603.04437 Astrophysics of Galaxies +1603.04552 Representation Theory +1603.04837 Mesoscale and Nanoscale Physics +1603.05066 Soft Condensed Matter +1603.05277 Astrophysics of Galaxies +1603.05508 High Energy Astrophysical Phenomena +1603.05577 Strongly Correlated Electrons +1603.05660 Astrophysics of Galaxies +1603.05708 +1603.05748 Combinatorics +1603.05783 Phenomenology +1603.05950 Theory +1603.06792 Soft Condensed Matter +1603.06814 Cosmology and Nongalactic Astrophysics +1603.06947 Astrophysics of Galaxies +1603.07627 Soft Condensed Matter +1603.07700 Statistical Mechanics +1603.07808 Astrophysics of Galaxies +1603.07977 Materials Science +1603.08224 Solar and Stellar Astrophysics +1603.08335 Solar and Stellar Astrophysics +1603.08658 +1603.08741 Astrophysics of Galaxies +1603.08756 Probability +1603.08811 Materials Science +1603.08837 Astrophysics of Galaxies +1603.08882 High Energy Astrophysical Phenomena +1603.08977 Solar and Stellar Astrophysics +1603.09340 Astrophysics of Galaxies +1603.09341 Astrophysics of Galaxies +1603.09346 Theory +1603.09400 Solar and Stellar Astrophysics +1603.09650 Astrophysics of Galaxies +1604.00026 Theory +1604.00027 Theory +1604.00232 High Energy Astrophysical Phenomena +1604.00914 High Energy Astrophysical Phenomena +1604.01022 Solar and Stellar Astrophysics +1604.01099 Astrophysics of Galaxies +1604.01127 Phenomenology +1604.01703 +1604.01767 Astrophysics of Galaxies +1604.01917 Solar and Stellar Astrophysics +1604.02087 Number Theory +1604.02219 +1604.02340 Earth and Planetary Astrophysics +1604.02350 Astrophysics of Galaxies +1604.02382 Phenomenology +1604.02455 High Energy Astrophysical Phenomena +1604.02460 Astrophysics of Galaxies +1604.02574 Phenomenology +1604.02697 Mesoscale and Nanoscale Physics +1604.02965 Solar and Stellar Astrophysics +1604.03121 Earth and Planetary Astrophysics +1604.03128 Solar and Stellar Astrophysics +1604.03205 Solar and Stellar Astrophysics +1604.03530 Phenomenology +1604.03548 Astrophysics of Galaxies +1604.03761 Phenomenology +1604.03793 Logic in Computer Science +1604.03803 Solar and Stellar Astrophysics +1604.04043 Phenomenology +1604.04196 High Energy Astrophysical Phenomena +1604.04252 High Energy Astrophysical Phenomena +1604.04254 High Energy Astrophysical Phenomena +1604.04269 Solar and Stellar Astrophysics +1604.04624 Astrophysics of Galaxies +1604.04626 Astrophysics of Galaxies +1604.04635 Solar and Stellar Astrophysics +1604.04864 Atomic Physics +1604.04900 Atomic Physics +1604.05193 Astrophysics of Galaxies +1604.05892 Astrophysics of Galaxies +1604.05952 Quantum Gases +1604.05980 High Energy Astrophysical Phenomena +1604.05994 Logic in Computer Science +1604.06005 Earth and Planetary Astrophysics +1604.06007 Theory +1604.06293 Information Theory +1604.06462 Astrophysics of Galaxies +1604.06725 Astrophysics of Galaxies +1604.07291 Cosmology and Nongalactic Astrophysics +1604.07340 Solar and Stellar Astrophysics +1604.07425 +1604.07562 High Energy Astrophysical Phenomena +1604.07647 Solar and Stellar Astrophysics +1604.07785 Materials Science +1604.07966 High Energy Astrophysical Phenomena +1604.08321 Superconductivity +1604.08329 Atomic Physics +1604.08590 Astrophysics of Galaxies +1604.08873 Logic in Computer Science +1605.00152 Phenomenology +1605.00504 Solar and Stellar Astrophysics +1605.01489 Astrophysics of Galaxies +1605.01548 Group Theory +1605.01796 Solar and Stellar Astrophysics +1605.01945 Solar and Stellar Astrophysics +1605.02079 Astrophysics of Galaxies +1605.02225 Astrophysics of Galaxies +1605.02450 High Energy Astrophysical Phenomena +1605.02794 Phenomenology +1605.02911 Cosmology and Nongalactic Astrophysics +1605.02946 Materials Science +1605.03109 Astrophysics of Galaxies +1605.03191 Astrophysics of Galaxies +1605.03201 Instrumentation and Methods for Astrophysics +1605.03451 Astrophysics of Galaxies +1605.03562 Disordered Systems and Neural Networks +1605.03580 Astrophysics of Galaxies +1605.03786 Astrophysics of Galaxies +1605.03955 Solar and Stellar Astrophysics +1605.03964 Astrophysics of Galaxies +1605.04056 Learning +1605.04336 Mesoscale and Nanoscale Physics +1605.04396 Superconductivity +1605.04899 Astrophysics of Galaxies +1605.04912 Astrophysics of Galaxies +1605.05032 Materials Science +1605.05858 Programming Languages +1605.05915 Soft Condensed Matter +1605.06069 Computation and Language +1605.06558 Analysis of PDEs +1605.07256 Cosmology and Nongalactic Astrophysics +1605.07482 Chemical Physics +1605.07506 Superconductivity +1605.07550 Solar and Stellar Astrophysics +1605.07945 Computational Finance +1605.08187 Artificial Intelligence +1605.08215 +1605.08267 Phenomenology +1605.08329 Earth and Planetary Astrophysics +1605.08614 Optics +1605.08763 Computers and Society +1605.08802 High Energy Astrophysical Phenomena +1605.08828 Astrophysics of Galaxies +1605.09024 Astrophysics of Galaxies +1605.09076 Solar and Stellar Astrophysics +1605.09504 Astrophysics of Galaxies +1605.09572 Solar and Stellar Astrophysics +1605.09675 Databases +1605.09687 Solar and Stellar Astrophysics +1606.00311 High Energy Astrophysical Phenomena +1606.00356 Solar and Stellar Astrophysics +1606.00388 Strongly Correlated Electrons +1606.00407 +1606.00438 High Energy Astrophysical Phenomena +1606.00440 Earth and Planetary Astrophysics +1606.00526 High Energy Astrophysical Phenomena +1606.00661 Operator Algebras +1606.00663 Strongly Correlated Electrons +1606.00776 Computation and Language +1606.00833 Instrumentation and Methods for Astrophysics +1606.00844 High Energy Astrophysical Phenomena +1606.00967 Astrophysics of Galaxies +1606.00977 Astrophysics of Galaxies +1606.01059 High Energy Astrophysical Phenomena +1606.01138 High Energy Astrophysical Phenomena +1606.01143 High Energy Astrophysical Phenomena +1606.01181 Solar and Stellar Astrophysics +1606.01184 Astrophysics of Galaxies +1606.01191 Representation Theory +1606.01201 Solar and Stellar Astrophysics +1606.01240 High Energy Astrophysical Phenomena +1606.01247 Earth and Planetary Astrophysics +1606.01251 Astrophysics of Galaxies +1606.01264 Earth and Planetary Astrophysics +1606.01340 Databases +1606.01482 Instrumentation and Methods for Astrophysics +1606.01514 Astrophysics of Galaxies +1606.01698 Materials Science +1606.01769 +1606.01775 Solar and Stellar Astrophysics +1606.01777 Solar and Stellar Astrophysics +1606.01854 Analysis of PDEs +1606.01917 Solar and Stellar Astrophysics +1606.02010 Strongly Correlated Electrons +1606.02083 Combinatorics +1606.02128 History and Philosophy of Physics +1606.02342 Computation and Language +1606.02351 Astrophysics of Galaxies +1606.02436 Astrophysics of Galaxies +1606.02706 Astrophysics of Galaxies +1606.02741 Dynamical Systems +1606.02761 Earth and Planetary Astrophysics +1606.02806 Dynamical Systems +1606.02897 Quantum Gases +1606.02929 Instrumentation and Methods for Astrophysics +1606.02956 Phenomenology +1606.03072 Earth and Planetary Astrophysics +1606.03244 Artificial Intelligence +1606.03278 Space Physics +1606.03430 Physics and Society +1606.03553 Computers and Society +1606.03563 Geometric Topology +1606.03855 Computational Engineering, Finance, and Science +1606.03858 Learning +1606.03864 Neural and Evolutionary Computing +1606.03886 +1606.04014 Differential Geometry +1606.04095 Differential Geometry +1606.04099 Instrumentation and Detectors +1606.04106 Instrumentation and Methods for Astrophysics +1606.04114 General Physics +1606.04119 Number Theory +1606.04122 Dynamical Systems +1606.04125 Combinatorics +1606.04126 Logic in Computer Science +1606.04129 Strongly Correlated Electrons +1606.04132 Materials Science +1606.04133 Optimization and Control +1606.04141 History and Overview +1606.04145 Learning +1606.04146 Methodology +1606.04151 Analysis of PDEs +1606.04156 Systems and Control +1606.04163 Systems and Control +1606.04164 Computation and Language +1606.04165 Human-Computer Interaction +1606.04166 Machine Learning +1606.04167 Mesoscale and Nanoscale Physics +1606.04169 Algebraic Geometry +1606.04170 History and Overview +1606.04171 Networking and Internet Architecture +1606.04175 Representation Theory +1606.04176 Systems and Control +1606.04177 Rings and Algebras +1606.04178 Probability +1606.04182 Computation +1606.04184 Quantum Gases +1606.04185 Mesoscale and Nanoscale Physics +1606.04187 Theory +1606.04188 +1606.04194 Logic +1606.04195 Multimedia +1606.04198 Information Theory +1606.04200 Computational Complexity +1606.04202 Information Theory +1606.04203 Applications +1606.04205 Networking and Internet Architecture +1606.04207 Group Theory +1606.04209 Distributed, Parallel, and Cluster Computing +1606.04211 Numerical Analysis +1606.04216 Artificial Intelligence +1606.04217 Neural and Evolutionary Computing +1606.04218 Learning +1606.04219 +1606.04221 Mesoscale and Nanoscale Physics +1606.04223 Information Retrieval +1606.04224 Metric Geometry +1606.04225 Tissues and Organs +1606.04228 Probability +1606.04229 +1606.04231 Functional Analysis +1606.04232 Computer Vision and Pattern Recognition +1606.04235 Combinatorics +1606.04239 +1606.04240 Programming Languages +1606.04241 Physics and Society +1606.04242 Astrophysics of Galaxies +1606.04247 Molecular Networks +1606.04252 Analysis of PDEs +1606.04254 Instrumentation and Detectors +1606.04255 History and Overview +1606.04257 Materials Science +1606.04258 Mesoscale and Nanoscale Physics +1606.04259 Theory +1606.04261 Mesoscale and Nanoscale Physics +1606.04265 Classical Analysis and ODEs +1606.04266 Popular Physics +1606.04267 Quantum Gases +1606.04268 Learning +1606.04270 High Energy Astrophysical Phenomena +1606.04274 +1606.04275 Learning +1606.04276 Statistics Theory +1606.04277 Computers and Society +1606.04278 Information Retrieval +1606.04279 Computation and Language +1606.04281 Algebraic Geometry +1606.04282 Distributed, Parallel, and Cluster Computing +1606.04283 Numerical Analysis +1606.04284 Materials Science +1606.04287 Software Engineering +1606.04288 Distributed, Parallel, and Cluster Computing +1606.04292 Accelerator Physics +1606.04296 Distributed, Parallel, and Cluster Computing +1606.04298 Biomolecules +1606.04301 Solar and Stellar Astrophysics +1606.04305 Fluid Dynamics +1606.04306 Neural and Evolutionary Computing +1606.04307 Probability +1606.04308 Computer Vision and Pattern Recognition +1606.04309 Classical Analysis and ODEs +1606.04310 Soft Condensed Matter +1606.04311 Probability +1606.04317 Machine Learning +1606.04320 Category Theory +1606.04321 Cosmology and Nongalactic Astrophysics +1606.04331 Functional Analysis +1606.04332 +1606.04335 Machine Learning +1606.04337 Mesoscale and Nanoscale Physics +1606.04338 Number Theory +1606.04342 Physics and Society +1606.04343 +1606.04344 Neurons and Cognition +1606.04346 +1606.04350 Probability +1606.04351 Computation and Language +1606.04357 Analysis of PDEs +1606.04358 +1606.04361 +1606.04363 Cellular Automata and Lattice Gases +1606.04365 Analysis of PDEs +1606.04366 Machine Learning +1606.04368 Algebraic Geometry +1606.04370 Algebraic Geometry +1606.04372 Algebraic Geometry +1606.04374 Number Theory +1606.04377 Functional Analysis +1606.04381 Chemical Physics +1606.04382 Physics and Society +1606.04383 Computational Complexity +1606.04385 Physics and Society +1606.04386 Distributed, Parallel, and Cluster Computing +1606.04389 General Physics +1606.04390 Statistical Mechanics +1606.04394 Discrete Mathematics +1606.04396 Strongly Correlated Electrons +1606.04397 Artificial Intelligence +1606.04402 Astrophysics of Galaxies +1606.04403 Phenomenology +1606.04404 Computer Vision and Pattern Recognition +1606.04407 +1606.04412 Social and Information Networks +1606.04415 Analysis of PDEs +1606.04421 Atmospheric and Oceanic Physics +1606.04423 Analysis of PDEs +1606.04424 Representation Theory +1606.04425 Statistics Theory +1606.04427 Distributed, Parallel, and Cluster Computing +1606.04429 Information Retrieval +1606.04432 Information Theory +1606.04444 +1606.04446 Computer Vision and Pattern Recognition +1606.04447 Combinatorics +1606.04450 Computer Vision and Pattern Recognition +1606.04451 Mesoscale and Nanoscale Physics +1606.04453 +1606.04455 Algebraic Geometry +1606.04456 Distributed, Parallel, and Cluster Computing +1606.04458 Information Theory +1606.04459 History and Overview +1606.04460 Machine Learning +1606.04461 Combinatorics +1606.04466 Neural and Evolutionary Computing +1606.04467 Information Theory +1606.04468 Algebraic Geometry +1606.04469 Systems and Control +1606.04473 Distributed, Parallel, and Cluster Computing +1606.04476 Information Theory +1606.04478 Computation +1606.04479 Probability +1606.04480 Optics +1606.04484 Mesoscale and Nanoscale Physics +1606.04486 Artificial Intelligence +1606.04490 Superconductivity +1606.04491 Superconductivity +1606.04495 Data Structures and Algorithms +1606.04496 General Topology +1606.04501 Functional Analysis +1606.04502 Combinatorics +1606.04503 Computation and Language +1606.04506 Learning +1606.04511 Strongly Correlated Electrons +1606.04512 Artificial Intelligence +1606.04513 +1606.04514 K-Theory and Homology +1606.04515 Rings and Algebras +1606.04518 Learning +1606.04521 Learning +1606.04523 +1606.04524 Analysis of PDEs +1606.04525 Analysis of PDEs +1606.04526 Solar and Stellar Astrophysics +1606.04528 Astrophysics of Galaxies +1606.04530 Quantum Algebra +1603.09396 Multimedia +0704.0189 Group Theory +0710.5430 +0711.1667 Algebraic Geometry +0711.4912 +0802.2874 Geometric Topology +0809.2405 +0810.4143 +0810.5194 +0902.3669 Astrophysics of Galaxies +0906.1674 Cosmology and Nongalactic Astrophysics +0906.3965 Solar and Stellar Astrophysics +0909.3793 Astrophysics of Galaxies +0912.3107 Cosmology and Nongalactic Astrophysics +1001.2248 Number Theory +1005.2308 Digital Libraries +1008.0826 Physics and Society +1009.1557 Cosmology and Nongalactic Astrophysics +1009.2018 Instrumentation and Methods for Astrophysics +1012.0449 Cosmology and Nongalactic Astrophysics +1012.3326 Cosmology and Nongalactic Astrophysics +1103.4295 Instrumentation and Methods for Astrophysics +1103.5474 Instrumentation and Methods for Astrophysics +1104.1184 Instrumentation and Methods for Astrophysics +1108.3890 Algebraic Topology +1109.3475 Information Theory +1111.2723 Algebraic Topology +1111.3053 High Energy Astrophysical Phenomena +1201.1575 Algebraic Topology +1204.0311 Algebraic Topology +1204.1946 Cosmology and Nongalactic Astrophysics +1204.6716 Instrumentation and Methods for Astrophysics +1206.0332 Cosmology and Nongalactic Astrophysics +1206.4087 Biomolecules +1207.4381 Probability +1212.2328 Phenomenology +1301.3087 Number Theory +1301.5451 Computer Vision and Pattern Recognition +1302.5683 Computational Geometry +1303.0852 Geometric Topology +1305.2973 Geometric Topology +1305.4550 Algebraic Topology +1306.3065 Mesoscale and Nanoscale Physics +1307.6970 +1308.6212 +1308.6264 +1309.0163 Superconductivity +1310.3579 Analysis of PDEs +1311.4217 Geometric Topology +1312.0467 Mesoscale and Nanoscale Physics +1312.3541 Mesoscale and Nanoscale Physics +1401.0232 Dynamical Systems +1401.0737 Cosmology and Nongalactic Astrophysics +1401.6454 Instrumentation and Detectors +1401.7781 Metric Geometry +1402.4394 +1402.4683 Probability +1402.5463 High Energy Astrophysical Phenomena +1403.0945 Number Theory +1403.1668 Analysis of PDEs +1403.4556 Analysis of PDEs +1403.6803 Statistics Theory +1404.0066 Geometric Topology +1404.0922 Spectral Theory +1404.2214 Analysis of PDEs +1404.3245 Metric Geometry +1404.3394 Information Theory +1404.5207 Phenomenology +1404.6494 Lattice +1405.0391 Functional Analysis +1405.4351 Geometric Topology +1405.7344 Fluid Dynamics +1405.7553 Representation Theory +1406.0245 Atomic Physics +1406.0901 +1406.3519 Dynamical Systems +1406.4652 Differential Geometry +1406.4702 Probability +1406.5387 Statistics Theory +1406.5460 Geometric Topology +1406.6414 High Energy Astrophysical Phenomena +1406.7631 +1406.7807 Information Theory +1407.0964 Representation Theory +1407.2071 Differential Geometry +1407.3658 Algebraic Geometry +1407.5152 Numerical Analysis +1407.5446 Algebraic Geometry +1407.6483 Algebraic Geometry +1407.7003 Symplectic Geometry +1407.8203 Strongly Correlated Electrons +1408.0418 Group Theory +1408.5030 Analysis of PDEs +1408.6048 Geometric Topology +1408.6108 Multiagent Systems +1408.6371 Analysis of PDEs +1409.0944 Probability +1409.1214 Astrophysics of Galaxies +1409.1420 Combinatorics +1409.1429 Statistics Theory +1409.1832 Astrophysics of Galaxies +1409.4947 Phenomenology +1409.5724 Probability +1409.7381 Phenomenology +1409.8371 +1410.3719 Analysis of PDEs +1410.3809 Differential Geometry +1410.4483 Probability +1410.5289 Mesoscale and Nanoscale Physics +1410.6652 Logic +1410.8383 Computational Physics +1411.0491 Differential Geometry +1411.0758 Geometric Topology +1411.0944 Computer Science and Game Theory +1411.1349 Algebraic Topology +1411.2007 Analysis of PDEs +1411.2292 Geometric Topology +1411.3668 Analysis of PDEs +1411.3835 Spectral Theory +1411.5205 Probability +1411.5285 Accelerator Physics +1411.5786 Theory +1411.5871 Number Theory +1411.5897 Rings and Algebras +1411.7775 Number Theory +1411.7957 Rings and Algebras +1412.0370 Phenomenology +1412.0574 Number Theory +1412.1412 Optimization and Control +1412.1489 Theory +1412.1923 +1412.2127 Classical Analysis and ODEs +1412.2225 +1412.2690 Statistical Mechanics +1412.2822 Algebraic Topology +1412.5722 +1412.6209 Fluid Dynamics +1412.6237 Combinatorics +1412.6405 Representation Theory +1412.8073 Spectral Theory +1412.8369 Systems and Control +1501.00038 +1501.00294 Dynamical Systems +1501.00348 Geometric Topology +1501.01014 Theory +1501.01909 Social and Information Networks +1501.02287 Computational Engineering, Finance, and Science +1501.03111 General Physics +1501.03201 Algebraic Topology +1501.04490 Information Theory +1501.05499 Computer Vision and Pattern Recognition +1501.06364 Graphics +1501.07614 +1502.00965 Combinatorics +1502.01751 Theory +1502.03077 Mesoscale and Nanoscale Physics +1502.03110 Mesoscale and Nanoscale Physics +1502.03470 Probability +1502.03672 +1502.04269 Machine Learning +1502.04513 Logic +1502.05426 Strongly Correlated Electrons +1502.06526 Category Theory +1502.06727 Probability +1502.07212 Number Theory +1502.07357 Cosmology and Nongalactic Astrophysics +1502.07389 Cosmology and Nongalactic Astrophysics +1502.07493 Analysis of PDEs +1502.07707 Theory +1503.00005 Phenomenology +1503.00245 Databases +1503.01618 Phenomenology +1503.02635 Strongly Correlated Electrons +1503.02945 Computer Vision and Pattern Recognition +1503.03212 Statistics Theory +1503.03300 +1503.03834 High Energy Astrophysical Phenomena +1503.04088 Superconductivity +1503.04221 +1503.04412 Cosmology and Nongalactic Astrophysics +1503.04646 Accelerator Physics +1503.04770 +1503.05823 Astrophysics of Galaxies +1503.05902 Algebraic Topology +1503.06588 Metric Geometry +1503.06658 Statistical Mechanics +1503.07181 Theory +1503.07262 Probability +1503.07279 Numerical Analysis +1503.07984 Quantum Algebra +1503.08207 Theory +1503.08809 Distributed, Parallel, and Cluster Computing +1503.08971 Differential Geometry +1503.09133 Astrophysics of Galaxies +1504.01400 Theory +1504.01458 Materials Science +1504.01620 +1504.01700 Theory +1504.01784 Strongly Correlated Electrons +1504.02097 Astrophysics of Galaxies +1504.02099 Astrophysics of Galaxies +1504.02769 Probability +1504.02778 Cosmology and Nongalactic Astrophysics +1504.02983 Astrophysics of Galaxies +1504.03329 Astrophysics of Galaxies +1504.03656 Superconductivity +1504.04022 Phenomenology +1504.04366 Cosmology and Nongalactic Astrophysics +1504.05126 Differential Geometry +1504.05183 Cosmology and Nongalactic Astrophysics +1504.05475 Instrumentation and Detectors +1504.05817 +1504.06800 +1504.07123 +1504.07556 Theory +1504.07786 Medical Physics +1504.07904 Theory +1505.00242 Probability +1505.00745 Theory +1505.00804 Strongly Correlated Electrons +1505.00998 +1505.01186 High Energy Astrophysical Phenomena +1505.01297 Instrumentation and Detectors +1505.01402 Materials Science +1505.01537 Theory +1505.01934 Phenomenology +1505.02257 Solar and Stellar Astrophysics +1505.02513 High Energy Astrophysical Phenomena +1505.03166 Disordered Systems and Neural Networks +1505.03650 Phenomenology +1505.03658 Cosmology and Nongalactic Astrophysics +1505.03861 Cosmology and Nongalactic Astrophysics +1505.03862 Phenomenology +1505.04081 Other Condensed Matter +1505.04517 Theory +1505.04790 Astrophysics of Galaxies +1505.04793 Theory +1505.05053 Theory +1505.05270 +1505.05584 Strongly Correlated Electrons +1505.05904 Materials Science +1505.06439 Complex Variables +1505.07126 Astrophysics of Galaxies +1505.07365 Chaotic Dynamics +1505.07473 Phenomenology +1505.07875 Cosmology and Nongalactic Astrophysics +1506.00416 Statistical Mechanics +1506.00455 Phenomenology +1506.00470 Analysis of PDEs +1506.01034 Solar and Stellar Astrophysics +1506.01337 Theory +1506.01400 Solar and Stellar Astrophysics +1506.01423 Space Physics +1506.01639 +1506.01844 Instrumentation and Detectors +1506.02059 Computer Vision and Pattern Recognition +1506.02255 Statistical Mechanics +1506.02692 Mesoscale and Nanoscale Physics +1506.02887 Statistics Theory +1506.03285 Phenomenology +1506.03317 Quantum Gases +1506.03321 Phenomenology +1506.03341 Mesoscale and Nanoscale Physics +1506.03447 Theory +1506.03469 Astrophysics of Galaxies +1506.03707 Quantum Gases +1506.03817 Cosmology and Nongalactic Astrophysics +1506.03878 Mesoscale and Nanoscale Physics +1506.04037 Phenomenology +1506.04241 +1506.04856 Probability +1506.04914 Instrumentation and Methods for Astrophysics +1506.05103 Superconductivity +1506.05356 Cosmology and Nongalactic Astrophysics +1506.05412 Theory +1506.05501 Earth and Planetary Astrophysics +1506.05774 Theory +1506.05875 +1506.05914 Algebraic Geometry +1506.06501 Information Theory +1506.06818 Probability +1506.07065 Statistical Mechanics +1506.07323 Theory +1506.07389 Classical Analysis and ODEs +1506.07448 Phenomenology +1506.07528 Theory +1506.07551 Theory +1506.07834 +1506.07902 Machine Learning +1506.08047 Applications +1506.08343 Statistical Mechanics +1506.08618 Phenomenology +1506.08619 Theory +1506.08850 Earth and Planetary Astrophysics +1506.09201 Phenomenology +1507.00015 Theory +1507.00325 +1507.00343 Theory +1507.00478 Phenomenology +1507.00938 Theory +1507.01076 Atomic Physics +1507.01143 Analysis of PDEs +1507.01583 Cosmology and Nongalactic Astrophysics +1507.01595 Theory +1507.01612 Theory +1507.01632 Phenomenology +1507.01723 Astrophysics of Galaxies +1507.01749 Lattice +1507.01822 Methodology +1507.01858 Cosmology and Nongalactic Astrophysics +1507.01960 Theory +1507.02207 Theory +1507.02211 Phenomenology +1507.02288 Phenomenology +1507.02662 Theory +1507.02781 High Energy Astrophysical Phenomena +1507.02787 Theory +1507.02820 Mesoscale and Nanoscale Physics +1507.02943 Phenomenology +1507.02956 +1507.02965 Phenomenology +1507.03086 Cosmology and Nongalactic Astrophysics +1507.03157 Methodology +1507.03508 Phenomenology +1507.03630 Phenomenology +1507.03742 Astrophysics of Galaxies +1507.03860 Theory +1507.03992 Cosmology and Nongalactic Astrophysics +1507.04063 Theory +1507.04093 Theory +1507.04235 Optics +1507.04302 Classical Analysis and ODEs +1507.04460 Statistical Mechanics +1507.04633 Theory +1507.04744 Cosmology and Nongalactic Astrophysics +1507.05067 Probability +1507.05149 Quantum Gases +1507.05207 +1507.05237 Astrophysics of Galaxies +1507.05330 Theory +1507.05627 Cosmology and Nongalactic Astrophysics +1507.05633 Strongly Correlated Electrons +1507.05637 Theory +1507.05667 Algebraic Geometry +1507.05770 +1507.05900 +1507.05954 Theory +1507.05971 Astrophysics of Galaxies +1507.05975 Quantum Gases +1507.05977 Cosmology and Nongalactic Astrophysics +1507.06221 Phenomenology +1507.06310 Theory +1507.06326 Phenomenology +1507.06345 Phenomenology +1507.06403 Quantum Gases +1507.06793 Theory +1507.06937 Phenomenology +1507.06971 Materials Science +1507.07183 Theory +1507.07550 Phenomenology +1507.07556 Theory +1507.07626 Quantum Gases +1507.07942 Theory +1507.08038 Strongly Correlated Electrons +1507.08250 Theory +1507.08252 Phenomenology +1507.08284 Theory +1507.08424 High Energy Astrophysical Phenomena +1507.08659 Theory +1507.08660 Phenomenology +1507.08728 Networking and Internet Architecture +1507.08808 +1507.08871 Dynamical Systems +1507.08915 +1507.08949 Theory +1508.00469 Theory +1508.00583 Cosmology and Nongalactic Astrophysics +1508.00587 Theory +1508.00930 Materials Science +1508.01093 +1508.01112 Phenomenology +1508.01207 Theory +1508.01210 Theory +1508.01518 Phenomenology +1508.01955 Theory +1508.02229 Exactly Solvable and Integrable Systems +1508.02481 Theory +1508.02494 Theory +1508.02622 +1508.02721 High Energy Astrophysical Phenomena +1508.02795 Phenomenology +1508.03049 Theory +1508.03077 Theory +1508.03128 Group Theory +1508.03288 Phenomenology +1508.03387 Computation +1508.03585 Phenomenology +1508.03611 Theory +1508.03705 Phenomenology +1508.03727 Phenomenology +1508.03777 Strongly Correlated Electrons +1508.03800 Discrete Mathematics +1508.03867 Theory +1508.04010 Adaptation and Self-Organizing Systems +1508.04083 Phenomenology +1508.04421 Theory +1508.04437 Theory +1508.04496 Theory +1508.04735 Experiment +1508.04814 Phenomenology +1508.04987 Theory +1508.05006 Theory +1508.05043 Phenomenology +1508.05118 Materials Science +1508.05202 Statistical Mechanics +1508.05271 Phenomenology +1508.05332 Phenomenology +1508.05404 Phenomenology +1508.05924 Earth and Planetary Astrophysics +1508.05964 +1508.06133 Phenomenology +1508.06283 Astrophysics of Galaxies +1508.06489 Cosmology and Nongalactic Astrophysics +1508.06503 Cosmology and Nongalactic Astrophysics +1508.06568 Theory +1508.06633 Strongly Correlated Electrons +1508.06680 Phenomenology +1508.06735 Phenomenology +1508.06767 Theory +1508.06925 Phenomenology +1508.06954 Experiment +1508.07002 Phenomenology +1508.07016 Phenomenology +1508.07025 Instrumentation and Detectors +1508.07098 Quantum Gases +1508.07224 Strongly Correlated Electrons +1508.07305 Theory +1508.07331 Theory +1508.07332 Theory +1508.07599 Lattice +1508.07790 +1508.07917 Superconductivity +1508.07962 Phenomenology +1509.00044 Theory +1509.00195 Phenomenology +1509.00455 Theory +1509.00474 Theory +1509.00486 Astrophysics of Galaxies +1509.00491 Phenomenology +1509.00543 Theory +1509.00716 Theory +1509.00834 Phenomenology +1509.00855 Theory +1509.00858 Solar and Stellar Astrophysics +1509.01294 Theory +1509.01406 Theory +1509.01583 Astrophysics of Galaxies +1509.01673 Mesoscale and Nanoscale Physics +1509.01800 Phenomenology +1509.01885 Experiment +1509.01982 Lattice +1509.02062 Theory +1509.02223 Computer Vision and Pattern Recognition +1509.02426 Theory +1509.02526 Theory +1509.02854 +1509.02938 Cosmology and Nongalactic Astrophysics +1509.02941 Cosmology and Nongalactic Astrophysics +1509.03241 Phenomenology +1509.03250 Atomic and Molecular Clusters +1509.03297 Phenomenology +1509.03494 Phenomenology +1509.03524 Cosmology and Nongalactic Astrophysics +1509.03630 Instrumentation and Methods for Astrophysics +1509.03645 Solar and Stellar Astrophysics +1509.03987 Mesoscale and Nanoscale Physics +1509.04286 Theory +1509.04330 +1509.04658 Instrumentation and Methods for Astrophysics +1509.04676 Theory +1509.04909 Strongly Correlated Electrons +1509.05090 +1509.05350 Atomic Physics +1509.05401 High Energy Astrophysical Phenomena +1509.05604 Phenomenology +1509.05692 +1509.05704 Theory +1509.05846 Quantum Gases +1509.05890 Theory +1509.06091 +1509.06255 +1509.06423 Instrumentation and Methods for Astrophysics +1509.06433 Lattice +1509.06481 Statistical Mechanics +1509.06719 Theory +1509.06742 Probability +1509.06918 Theory +1509.07063 Functional Analysis +1509.07106 +1509.07142 Theory +1509.07270 Theory +1509.07366 Phenomenology +1509.07488 Quantum Gases +1509.07501 Cosmology and Nongalactic Astrophysics +1509.07521 Cosmology and Nongalactic Astrophysics +1509.07524 Earth and Planetary Astrophysics +1509.07676 Theory +1509.07678 Theory +1509.07787 Theory +1509.07827 +1509.07840 Theory +1509.07869 Phenomenology +1509.07929 Lattice +1509.08027 Theory +1509.08199 Cosmology and Nongalactic Astrophysics +1509.08397 +1509.08680 Solar and Stellar Astrophysics +1509.08710 High Energy Astrophysical Phenomena +1509.08838 Phenomenology +1509.08925 Superconductivity +1509.08926 Statistical Mechanics +1509.08933 Cosmology and Nongalactic Astrophysics +1509.08963 Classical Analysis and ODEs +1509.09071 Phenomenology +1509.09151 Statistical Mechanics +1510.00126 Cosmology and Nongalactic Astrophysics +1510.00242 Cosmology and Nongalactic Astrophysics +1510.00349 Theory +1510.00442 +1510.00583 Theory +1510.00716 Strongly Correlated Electrons +1510.00721 Solar and Stellar Astrophysics +1510.00736 Theory +1510.00906 Solar and Stellar Astrophysics +1510.01074 Disordered Systems and Neural Networks +1510.01321 Solar and Stellar Astrophysics +1510.01427 Theory +1510.01667 Theory +1510.01735 Statistical Mechanics +1510.01763 Theory +1510.01842 Optimization and Control +1510.01864 Quantum Gases +1510.02153 Phenomenology +1510.02172 Applications +1510.02298 Theory +1510.02406 Phenomenology +1510.02409 Theory +1510.02472 Theory +1510.02480 Theory +1510.02700 Social and Information Networks +1510.02712 Theory +1510.02957 Theory +1510.03118 High Energy Astrophysical Phenomena +1510.03175 Phenomenology +1510.03188 Phenomenology +1510.03213 Theory +1510.03258 Lattice +1510.03392 Phenomenology +1510.03437 Phenomenology +1510.03439 Theory +1510.03685 Superconductivity +1510.03812 Phenomenology +1510.03978 Numerical Analysis +1510.04018 Mesoscale and Nanoscale Physics +1510.04208 High Energy Astrophysical Phenomena +1510.04261 Optics +1510.04431 High Energy Astrophysical Phenomena +1510.04478 Theory +1510.04637 Number Theory +1510.05245 +1510.05299 Strongly Correlated Electrons +1510.05395 Astrophysics of Galaxies +1510.05399 Astrophysics of Galaxies +1510.05418 +1510.05566 Optics +1510.05586 Mesoscale and Nanoscale Physics +1510.05750 Cosmology and Nongalactic Astrophysics +1510.05779 Theory +1510.05909 Mesoscale and Nanoscale Physics +1510.05910 Phenomenology +1510.05951 Astrophysics of Galaxies +1510.06025 High Energy Astrophysical Phenomena +1510.06087 Quantum Gases +1510.06309 Phenomenology +1510.06347 Earth and Planetary Astrophysics +1510.06363 Theory +1510.06428 Solar and Stellar Astrophysics +1510.06497 Phenomenology +1510.06569 Theory +1510.06596 Solar and Stellar Astrophysics +1510.06858 Theory +1510.06975 Theory +1510.07590 Superconductivity +1510.07695 Astrophysics of Galaxies +1510.07978 Mesoscale and Nanoscale Physics +1510.08003 +1510.08144 Atomic Physics +1510.08345 Numerical Analysis +1510.08459 Phenomenology +1510.08463 Astrophysics of Galaxies +1510.08468 Phenomenology +1510.08734 Quantum Gases +1510.08738 Phenomenology +1510.08855 Earth and Planetary Astrophysics +1510.09180 Solar and Stellar Astrophysics +1510.09222 Fluid Dynamics +1511.00421 Quantum Gases +1511.00559 +1511.01002 Theory +1511.01052 Theory +1511.01085 High Energy Astrophysical Phenomena +1511.01110 Astrophysics of Galaxies +1511.01117 Cosmology and Nongalactic Astrophysics +1511.01120 Astrophysics of Galaxies +1511.01131 Cosmology and Nongalactic Astrophysics +1511.01133 Astrophysics of Galaxies +1511.01145 Astrophysics of Galaxies +1511.01188 Cosmology and Nongalactic Astrophysics +1511.01218 Cosmology and Nongalactic Astrophysics +1511.01582 High Energy Astrophysical Phenomena +1511.01587 Phenomenology +1511.01647 Astrophysics of Galaxies +1511.01672 Mesoscale and Nanoscale Physics +1511.01695 Solar and Stellar Astrophysics +1511.01896 Instrumentation and Methods for Astrophysics +1511.01913 Theory +1511.02029 Solar and Stellar Astrophysics +1511.02105 Solar and Stellar Astrophysics +1511.02122 +1511.02274 Learning +1511.02310 Experiment +1511.02329 Functional Analysis +1511.02456 High Energy Astrophysical Phenomena +1511.02471 +1511.02539 Pattern Formation and Solitons +1511.02854 Astrophysics of Galaxies +1511.02862 Astrophysics of Galaxies +1511.03040 Solar and Stellar Astrophysics +1511.03045 Atmospheric and Oceanic Physics +1511.03136 Solar and Stellar Astrophysics +1511.03209 Theory +1511.03286 Astrophysics of Galaxies +1511.03502 Quantum Gases +1511.03635 Cosmology and Nongalactic Astrophysics +1511.03764 Solar and Stellar Astrophysics +1511.03896 +1511.03945 Phenomenology +1511.04002 Cosmology and Nongalactic Astrophysics +1511.04077 Strongly Correlated Electrons +1511.04088 Astrophysics of Galaxies +1511.04161 Solar and Stellar Astrophysics +1511.04228 Atomic Physics +1511.04243 +1511.04310 Astrophysics of Galaxies +1511.04443 Astrophysics of Galaxies +1511.04455 Astrophysics of Galaxies +1511.04488 Instrumentation and Methods for Astrophysics +1511.04797 High Energy Astrophysical Phenomena +1511.04849 Cosmology and Nongalactic Astrophysics +1511.04887 Phenomenology +1511.05003 Cosmology and Nongalactic Astrophysics +1511.05032 High Energy Astrophysical Phenomena +1511.05036 Instrumentation and Methods for Astrophysics +1511.05150 Astrophysics of Galaxies +1511.05275 High Energy Astrophysical Phenomena +1511.05395 Theory +1511.05428 Astrophysics of Galaxies +1511.05445 Astrophysics of Galaxies +1511.05447 Theory +1511.05451 Solar and Stellar Astrophysics +1511.05481 High Energy Astrophysical Phenomena +1511.05527 Astrophysics of Galaxies +1511.05528 Earth and Planetary Astrophysics +1511.05566 Astrophysics of Galaxies +1511.05576 Astrophysics of Galaxies +1511.05654 Astrophysics of Galaxies +1511.05696 Theory +1511.05736 High Energy Astrophysical Phenomena +1511.05813 Solar and Stellar Astrophysics +1511.05858 Physics Education +1511.05938 Astrophysics of Galaxies +1511.05969 Cosmology and Nongalactic Astrophysics +1511.05978 Astrophysics of Galaxies +1511.05985 Solar and Stellar Astrophysics +1511.06007 Astrophysics of Galaxies +1511.06021 Astrophysics of Galaxies +1511.06134 Solar and Stellar Astrophysics +1511.06156 High Energy Astrophysical Phenomena +1511.06160 Solar and Stellar Astrophysics +1511.06162 Astrophysics of Galaxies +1511.06167 Astrophysics of Galaxies +1511.06188 Astrophysics of Galaxies +1511.06415 Astrophysics of Galaxies +1511.06471 Earth and Planetary Astrophysics +1511.06497 Solar and Stellar Astrophysics +1511.06584 Earth and Planetary Astrophysics +1511.06597 Instrumentation and Methods for Astrophysics +1511.06616 Astrophysics of Galaxies +1511.06626 Astrophysics of Galaxies +1511.06636 Differential Geometry +1511.06647 Mesoscale and Nanoscale Physics +1511.06652 Theory +1511.06670 Cosmology and Nongalactic Astrophysics +1511.06673 Astrophysics of Galaxies +1511.06696 Astrophysics of Galaxies +1511.06765 High Energy Astrophysical Phenomena +1511.07131 Computer Vision and Pattern Recognition +1511.07152 Instrumentation and Methods for Astrophysics +1511.07169 Astrophysics of Galaxies +1511.07179 Theory +1511.07270 Solar and Stellar Astrophysics +1511.07328 General Physics +1511.07330 Astrophysics of Galaxies +1511.07364 Solar and Stellar Astrophysics +1511.07390 High Energy Astrophysical Phenomena +1511.07437 Astrophysics of Galaxies +1511.07457 Astrophysics of Galaxies +1511.07641 High Energy Astrophysical Phenomena +1511.07701 Solar and Stellar Astrophysics +1511.07754 Astrophysics of Galaxies +1511.07762 Solar and Stellar Astrophysics +1511.07884 Astrophysics of Galaxies +1511.07900 Solar and Stellar Astrophysics +1511.07925 High Energy Astrophysical Phenomena +1511.07946 Earth and Planetary Astrophysics +1511.07971 Solar and Stellar Astrophysics +1511.08018 Astrophysics of Galaxies +1511.08199 Astrophysics of Galaxies +1511.08227 Astrophysics of Galaxies +1511.08243 Astrophysics of Galaxies +1511.08289 Astrophysics of Galaxies +1511.08325 Solar and Stellar Astrophysics +1511.08365 Solar and Stellar Astrophysics +1511.08481 Astrophysics of Galaxies +1511.08493 Astrophysics of Galaxies +1511.08566 +1511.08617 Phenomenology +1511.08767 Lattice +1511.08805 Astrophysics of Galaxies +1511.08892 Solar and Stellar Astrophysics +1511.08900 Solar and Stellar Astrophysics +1511.08991 Solar and Stellar Astrophysics +1511.09097 Earth and Planetary Astrophysics +1511.09109 Mesoscale and Nanoscale Physics +1511.09115 Solar and Stellar Astrophysics +1511.09119 Solar and Stellar Astrophysics +1511.09121 Astrophysics of Galaxies +1511.09205 Solar and Stellar Astrophysics +1511.09211 Earth and Planetary Astrophysics +1511.09341 Earth and Planetary Astrophysics +1511.09426 Neurons and Cognition +1511.09472 Earth and Planetary Astrophysics +1512.00005 Astrophysics of Galaxies +1512.00007 Cosmology and Nongalactic Astrophysics +1512.00017 Astrophysics of Galaxies +1512.00043 High Energy Astrophysical Phenomena +1512.00090 Astrophysics of Galaxies +1512.00124 High Energy Astrophysical Phenomena +1512.00146 Solar and Stellar Astrophysics +1512.00203 High Energy Astrophysical Phenomena +1512.00278 Solar and Stellar Astrophysics +1512.00285 Earth and Planetary Astrophysics +1512.00322 Experiment +1512.00461 Astrophysics of Galaxies +1512.00467 High Energy Astrophysical Phenomena +1512.00592 Astrophysics of Galaxies +1512.00628 Solar and Stellar Astrophysics +1512.00691 Solar and Stellar Astrophysics +1512.00786 Astrophysics of Galaxies +1512.00851 High Energy Astrophysical Phenomena +1512.00864 Solar and Stellar Astrophysics +1512.00865 Solar and Stellar Astrophysics +1512.00916 Superconductivity +1512.00987 Astrophysics of Galaxies +1512.01052 Strongly Correlated Electrons +1512.01099 Instrumentation and Methods for Astrophysics +1512.01105 Astrophysics of Galaxies +1512.01106 High Energy Astrophysical Phenomena +1512.01159 Astrophysics of Galaxies +1512.01185 Astrophysics of Galaxies +1512.01242 Astrophysics of Galaxies +1512.01246 Solar and Stellar Astrophysics +1512.01253 Astrophysics of Galaxies +1512.01273 Earth and Planetary Astrophysics +1512.01297 Solar and Stellar Astrophysics +1512.01307 High Energy Astrophysical Phenomena +1512.01320 Computer Vision and Pattern Recognition +1512.01330 Solar and Stellar Astrophysics +1512.01410 Mesoscale and Nanoscale Physics +1512.01458 Earth and Planetary Astrophysics +1512.01549 Instrumentation and Methods for Astrophysics +1512.01555 Earth and Planetary Astrophysics +1512.01582 Astrophysics of Galaxies +1512.01825 High Energy Astrophysical Phenomena +1512.01847 Instrumentation and Methods for Astrophysics +1512.01875 High Energy Astrophysical Phenomena +1512.01941 High Energy Astrophysical Phenomena +1512.02000 Astrophysics of Galaxies +1512.02076 Instrumentation and Methods for Astrophysics +1512.02141 Earth and Planetary Astrophysics +1512.02220 Solar and Stellar Astrophysics +1512.02227 Astrophysics of Galaxies +1512.02228 Astrophysics of Galaxies +1512.02236 Cosmology and Nongalactic Astrophysics +1512.02245 Astrophysics of Galaxies +1512.02308 Earth and Planetary Astrophysics +1512.02481 Solar and Stellar Astrophysics +1512.02538 Earth and Planetary Astrophysics +1512.02541 Solar and Stellar Astrophysics +1512.02555 Physics and Society +1512.02587 Astrophysics of Galaxies +1512.02635 Astrophysics of Galaxies +1512.02640 Astrophysics of Galaxies +1512.02651 Astrophysics of Galaxies +1512.02680 Astrophysics of Galaxies +1512.02686 Analysis of PDEs +1512.02746 +1512.02874 Astrophysics of Galaxies +1512.02901 High Energy Astrophysical Phenomena +1512.02998 Earth and Planetary Astrophysics +1512.03016 High Energy Astrophysical Phenomena +1512.03063 Astrophysics of Galaxies +1512.03070 Earth and Planetary Astrophysics +1512.03166 Solar and Stellar Astrophysics +1512.03194 Astrophysics of Galaxies +1512.03209 Solar and Stellar Astrophysics +1512.03234 Astrophysics of Galaxies +1512.03256 Phenomenology +1512.03262 Earth and Planetary Astrophysics +1512.03428 Earth and Planetary Astrophysics +1512.03631 Discrete Mathematics +1512.03817 Astrophysics of Galaxies +1512.03821 Solar and Stellar Astrophysics +1512.03836 Cosmology and Nongalactic Astrophysics +1512.03892 Solar and Stellar Astrophysics +1512.04336 Geophysics +1512.04410 Strongly Correlated Electrons +1512.04425 Solar and Stellar Astrophysics +1512.04534 Cosmology and Nongalactic Astrophysics +1512.04655 Instrumentation and Methods for Astrophysics +1512.04662 Cosmology and Nongalactic Astrophysics +1512.04690 High Energy Astrophysical Phenomena +1512.04695 Solar and Stellar Astrophysics +1512.04840 Theory +1512.04986 Solar and Stellar Astrophysics +1512.05069 Chaotic Dynamics +1512.05115 Astrophysics of Galaxies +1512.05416 Solar and Stellar Astrophysics +1512.05530 Soft Condensed Matter +1512.05661 Astrophysics of Galaxies +1512.05710 Earth and Planetary Astrophysics +1512.05712 Astrophysics of Galaxies +1512.05730 Astrophysics of Galaxies +1512.05754 +1512.05805 High Energy Astrophysical Phenomena +1512.05885 Lattice +1512.06032 Solar and Stellar Astrophysics +1512.06130 Astrophysics of Galaxies +1512.06188 High Energy Astrophysical Phenomena +1512.06191 Astrophysics of Galaxies +1512.06194 Earth and Planetary Astrophysics +1512.06226 Theory +1512.06359 Probability +1512.06378 Solar and Stellar Astrophysics +1512.06392 Mesoscale and Nanoscale Physics +1512.06471 Astrophysics of Galaxies +1512.06524 Solar and Stellar Astrophysics +1512.06630 Astrophysics of Galaxies +1512.07088 Earth and Planetary Astrophysics +1512.07103 Information Theory +1512.07148 Quantum Gases +1512.07151 Solar and Stellar Astrophysics +1512.07528 Phenomenology +1512.07614 Fluid Dynamics +1512.08299 Networking and Internet Architecture +1512.08638 Solar and Stellar Astrophysics +1512.09218 +1512.09333 Information Theory +1601.00162 Astrophysics of Galaxies +1601.00203 Theory +1601.00409 Cosmology and Nongalactic Astrophysics +1601.00491 Space Physics +1601.00684 Solar and Stellar Astrophysics +1601.00782 Phenomenology +1601.00811 Medical Physics +1601.01021 High Energy Astrophysical Phenomena +1601.01323 Astrophysics of Galaxies +1601.01340 Atomic Physics +1601.01548 Solar and Stellar Astrophysics +1601.01656 Probability +1601.02016 Astrophysics of Galaxies +1601.02090 High Energy Astrophysical Phenomena +1601.02983 Astrophysics of Galaxies +1601.03111 Mesoscale and Nanoscale Physics +1601.03389 High Energy Astrophysical Phenomena +1601.03631 Fluid Dynamics +1601.03638 Classical Analysis and ODEs +1601.03929 +1601.03935 Solar and Stellar Astrophysics +1601.04158 Mesoscale and Nanoscale Physics +1601.04213 Data Structures and Algorithms +1601.04421 Mesoscale and Nanoscale Physics +1601.04713 Astrophysics of Galaxies +1601.04723 Theory +1601.04763 Optics +1601.04803 +1601.04903 Superconductivity +1601.05015 Astrophysics of Galaxies +1601.05330 Software Engineering +1601.05669 Materials Science +1601.05776 Information Theory +1601.05874 Phenomenology +1601.05971 High Energy Astrophysical Phenomena +1601.06148 Numerical Analysis +1601.06330 Pattern Formation and Solitons +1601.06375 Information Theory +1601.06410 Information Theory +1601.06416 Optimization and Control +1601.06436 +1601.06451 Quantum Algebra +1601.06460 +1601.06473 Robotics +1601.06595 Differential Geometry +1601.06634 Numerical Analysis +1601.06660 +1601.06772 +1601.06774 Analysis of PDEs +1601.06775 Combinatorics +1601.06776 Functional Analysis +1601.06777 Functional Analysis +1601.06778 Optics +1601.06800 Probability +1601.06804 Theory +1601.06807 Dynamical Systems +1601.06810 Information Theory +1601.06812 Numerical Analysis +1601.06815 Neural and Evolutionary Computing +1601.06817 Quantum Gases +1601.06820 Medical Physics +1601.06822 Fluid Dynamics +1601.06823 Computer Vision and Pattern Recognition +1601.06825 Computers and Society +1601.06829 Populations and Evolution +1601.06830 Superconductivity +1601.06833 Number Theory +1601.06834 Data Structures and Algorithms +1601.06843 Fluid Dynamics +1601.06844 Statistics Theory +1601.06846 +1601.06853 Analysis of PDEs +1601.06858 Statistics Theory +1601.06862 Artificial Intelligence +1601.06864 +1601.06865 Computational Geometry +1601.06867 Number Theory +1601.06868 Methodology +1601.06869 Human-Computer Interaction +1601.06870 Optics +1601.06871 Geometric Topology +1601.06872 Rings and Algebras +1601.06873 Information Theory +1601.06880 Information Theory +1601.06882 Information Theory +1601.06887 Information Theory +1601.06899 Information Theory +1601.06900 +1601.06901 Atomic Physics +1601.06902 Number Theory +1601.06903 Hardware Architecture +1601.06906 Human-Computer Interaction +1601.06908 Information Theory +1601.06909 Dynamical Systems +1601.06919 Information Retrieval +1601.06920 Combinatorics +1601.06921 Optics +1601.06927 +1601.06928 Commutative Algebra +1601.06929 Phenomenology +1601.06931 Computer Vision and Pattern Recognition +1601.06932 +1601.06933 Learning +1601.06934 Fluid Dynamics +1601.06941 Fluid Dynamics +1601.06943 Populations and Evolution +1601.06946 Plasma Physics +1601.06948 Differential Geometry +1601.06950 Computer Vision and Pattern Recognition +1601.06951 Fluid Dynamics +1601.06953 Fluid Dynamics +1601.06957 Soft Condensed Matter +1601.06961 Fluid Dynamics +1601.06962 Quantitative Methods +1601.06965 Combinatorics +1601.06967 Earth and Planetary Astrophysics +1601.06969 Fluid Dynamics +1601.06977 Numerical Analysis +1601.06979 Risk Management +1601.06985 Experiment +1601.06990 Solar and Stellar Astrophysics +1601.06991 Probability +1601.06993 Information Theory +1601.06994 Analysis of PDEs +1601.06996 Number Theory +1601.06999 Neurons and Cognition +1601.07002 Networking and Internet Architecture +1601.07004 Fluid Dynamics +1601.07005 Operator Algebras +1601.07006 Theory +1601.07007 Fluid Dynamics +1601.07009 Social and Information Networks +1601.07011 Multiagent Systems +1601.07012 Combinatorics +1601.07013 Instrumentation and Detectors +1601.07016 Representation Theory +1601.07018 Category Theory +1601.07021 Computer Vision and Pattern Recognition +1601.07023 Analysis of PDEs +1601.07024 Information Theory +1601.07025 Solar and Stellar Astrophysics +1601.07027 Astrophysics of Galaxies +1601.07028 Distributed, Parallel, and Cluster Computing +1601.07029 Pattern Formation and Solitons +1601.07033 General Physics +1601.07034 Strongly Correlated Electrons +1601.07036 Information Theory +1601.07037 +1601.07039 Number Theory +1601.07050 Instrumentation and Methods for Astrophysics +1601.07051 +1601.07052 +1601.07053 +1601.07055 Theory +1601.07058 Number Theory +1601.07059 Information Theory +1601.07060 Physics and Society +1601.07062 Genomics +1601.07065 Artificial Intelligence +1601.07070 Dynamical Systems +1601.07074 Algebraic Geometry +1601.07077 Other Computer Science +1601.07078 Mesoscale and Nanoscale Physics +1601.07079 Dynamical Systems +1601.07081 Algebraic Geometry +1601.07082 Algebraic Geometry +1601.07087 Information Theory +1601.07089 Distributed, Parallel, and Cluster Computing +1601.07090 Systems and Control +1601.07093 Analysis of PDEs +1601.07094 Algebraic Topology +1601.07095 Category Theory +1601.07096 Category Theory +1601.07097 Systems and Control +1601.07104 Category Theory +1601.07109 Number Theory +1601.07110 Information Theory +1601.07111 Dynamical Systems +1601.07113 Optimization and Control +1601.07114 Functional Analysis +1601.07116 Analysis of PDEs +1601.07119 Analysis of PDEs +1601.07121 Fluid Dynamics +1601.07123 Probability +1601.07124 Computation and Language +1601.07125 History and Overview +1601.07128 Superconductivity +1601.07131 Group Theory +1601.07132 Number Theory +1601.07136 Commutative Algebra +1601.07139 Differential Geometry +1601.07141 Statistics Theory +1601.07143 Algebraic Geometry +1601.07145 Fluid Dynamics +1601.07146 Representation Theory +1601.07149 Combinatorics +1601.07152 Experiment +1601.07153 Geometric Topology +1601.07158 Number Theory +1601.07160 Complex Variables +1601.07161 Combinatorics +1601.07163 Computer Science and Game Theory +astro-ph/0001002 +astro-ph/0001029 +astro-ph/0001245 +astro-ph/0001253 +astro-ph/0001365 +astro-ph/0001426 +astro-ph/0001457 +astro-ph/0002069 +astro-ph/0002178 +astro-ph/0002231 +astro-ph/0002498 +astro-ph/0002509 +astro-ph/0002524 +astro-ph/0003341 +astro-ph/0003386 +astro-ph/0004029 +astro-ph/0010207 +astro-ph/0010208 +astro-ph/0010237 +astro-ph/0010513 +astro-ph/0010540 +astro-ph/0010568 +astro-ph/0012160 +astro-ph/0101200 +astro-ph/0102383 +astro-ph/0102471 +astro-ph/0102495 +astro-ph/0103004 +astro-ph/0103495 +astro-ph/0104096 +astro-ph/0104466 +astro-ph/0105294 +astro-ph/0105351 +astro-ph/0105400 +astro-ph/0105428 +astro-ph/0105495 +astro-ph/0105562 +astro-ph/0106009 +astro-ph/0106467 +astro-ph/0106483 +astro-ph/0107105 +astro-ph/0107273 +astro-ph/0107285 +astro-ph/0108233 +astro-ph/0205518 +astro-ph/0206451 +astro-ph/0207168 +astro-ph/0207194 +astro-ph/0207513 +astro-ph/0207609 +astro-ph/0207619 +astro-ph/0208009 +astro-ph/0208051 +astro-ph/0208052 +astro-ph/0208317 +astro-ph/0208329 +astro-ph/0209066 +astro-ph/0209256 +astro-ph/0209279 +astro-ph/0209321 +astro-ph/0209387 +astro-ph/0209521 +astro-ph/0209539 +astro-ph/0209558 +astro-ph/0210137 +astro-ph/0210243 +astro-ph/0210575 +astro-ph/0210608 +astro-ph/0211288 +astro-ph/0211293 +astro-ph/0211295 +astro-ph/0211563 +astro-ph/0212016 +astro-ph/0212020 +astro-ph/0212055 +astro-ph/0212090 +astro-ph/0212272 +astro-ph/0212395 +astro-ph/0301183 +astro-ph/0301313 +astro-ph/0301559 +astro-ph/0302584 +astro-ph/0303046 +astro-ph/0303511 +astro-ph/0303552 +astro-ph/0305424 +astro-ph/0305567 +astro-ph/0306146 +astro-ph/0311386 +astro-ph/0403184 +astro-ph/0403225 +astro-ph/0403373 +astro-ph/0403618 +astro-ph/0403693 +astro-ph/0404504 +astro-ph/0405144 +astro-ph/0405170 +astro-ph/0405497 +astro-ph/0405541 +astro-ph/0406306 +astro-ph/0406492 +astro-ph/0406494 +astro-ph/0406512 +astro-ph/0406578 +astro-ph/0406583 +astro-ph/0406616 +astro-ph/0406667 +astro-ph/0406669 +astro-ph/0407004 +astro-ph/0407068 +astro-ph/0407273 +astro-ph/0407322 +astro-ph/0407323 +astro-ph/0407358 +astro-ph/0407434 +astro-ph/0407463 +astro-ph/0407564 +astro-ph/0407582 +astro-ph/0408165 +astro-ph/0408176 +astro-ph/0408267 +astro-ph/0409103 +astro-ph/0409540 +astro-ph/0409625 +astro-ph/0409661 +astro-ph/0410094 +astro-ph/0509791 +astro-ph/9306015 +astro-ph/9509003 +astro-ph/9509156 +astro-ph/9511035 +astro-ph/9511092 +astro-ph/9512002 +astro-ph/9512016 +astro-ph/9512068 +astro-ph/9512069 +astro-ph/9512134 +astro-ph/9601169 +astro-ph/9602139 +astro-ph/9602144 +astro-ph/9602145 +astro-ph/9603005 +astro-ph/9604029 +astro-ph/9604033 +astro-ph/9604039 +astro-ph/9606002 +astro-ph/9607101 +astro-ph/9607176 +astro-ph/9610164 +astro-ph/9611092 +astro-ph/9611129 +astro-ph/9612181 +astro-ph/9701022 +astro-ph/9702104 +astro-ph/9702218 +astro-ph/9702230 +astro-ph/9703038 +astro-ph/9703050 +astro-ph/9703141 +astro-ph/9703142 +astro-ph/9703143 +astro-ph/9703198 +astro-ph/9704003 +astro-ph/9704136 +astro-ph/9704151 +astro-ph/9704163 +astro-ph/9705056 +astro-ph/9706039 +astro-ph/9707255 +astro-ph/9708021 +astro-ph/9708102 +astro-ph/9710016 +astro-ph/9711226 +astro-ph/9711232 +astro-ph/9711297 +astro-ph/9803034 +astro-ph/9803043 +astro-ph/9805160 +astro-ph/9805328 +astro-ph/9806330 +astro-ph/9807104 +astro-ph/9807105 +astro-ph/9807106 +astro-ph/9807121 +astro-ph/9807124 +astro-ph/9807129 +astro-ph/9807237 +astro-ph/9807239 +astro-ph/9808006 +astro-ph/9808080 +astro-ph/9808116 +astro-ph/9808198 +astro-ph/9808202 +astro-ph/9808336 +astro-ph/9809394 +astro-ph/9810052 +astro-ph/9810112 +astro-ph/9901222 +astro-ph/9910522 +astro-ph/9911075 +astro-ph/9911090 +astro-ph/9911382 +astro-ph/9911393 +astro-ph/9911495 +astro-ph/9912126 +astro-ph/9912309 +astro-ph/9912314 +astro-ph/9912323 +astro-ph/9912341 +astro-ph/9912370 +astro-ph/9912469 +astro-ph/9912522 +gr-qc/9603049 +gr-qc/9604048 +gr-qc/9604051 +gr-qc/9605027 +gr-qc/9605053 +gr-qc/9606061 +gr-qc/9607067 +gr-qc/9608062 +hep-lat/9605021 Lattice +hep-ph/9603401 Phenomenology +hep-th/0312225 Theory +hep-th/9210066 Theory +hep-th/9603141 Theory +hep-th/9603166 Theory +hep-th/9607191 Theory +math/0611715 Number Theory +0810.3412 Geometric Topology +0811.0296 Number Theory +0903.3154 Geometric Topology +0906.1372 Metric Geometry +0909.1053 Algebraic Topology +1010.1492 Chemical Physics +1103.1166 Cosmology and Nongalactic Astrophysics +1104.5185 Dynamical Systems +1106.3956 +1109.2749 Analysis of PDEs +1110.1699 Representation Theory +1111.0475 +1112.0920 Logic +1112.4519 Statistics Theory +1206.2797 Materials Science +1207.5147 Numerical Analysis +1208.3370 Algebraic Topology +1208.3542 Algebraic Topology +1209.2770 Quantum Algebra +1211.2899 Differential Geometry +1212.0255 Probability +1212.1019 Metric Geometry +1212.2043 Phenomenology +1212.3122 Category Theory +1302.1490 General Physics +1304.4607 +1306.0801 Combinatorics +1306.2680 Cosmology and Nongalactic Astrophysics +1306.4286 Rings and Algebras +1307.0599 Combinatorics +1307.2862 Probability +1307.6625 Metric Geometry +1307.7762 +1308.5248 Combinatorics +1308.5824 Numerical Analysis +1309.0989 Group Theory +1309.2800 Number Theory +1309.3845 Statistics Theory +1309.5381 Cosmology and Nongalactic Astrophysics +1309.7424 Functional Analysis +1310.0909 Analysis of PDEs +1310.1780 Statistics Theory +1310.1783 Statistics Theory +1311.1697 Solar and Stellar Astrophysics +1311.2189 Representation Theory +1311.6765 Statistics Theory +1312.1407 Numerical Analysis +1401.0808 Probability +1401.7790 Statistics Theory +1402.3333 Dynamical Systems +1402.4723 Superconductivity +1402.6703 High Energy Astrophysical Phenomena +1403.1488 +1404.0107 Number Theory +1404.7425 Cosmology and Nongalactic Astrophysics +1405.0298 Theory +1405.4783 Group Theory +1406.0597 Machine Learning +1406.1527 Analysis of PDEs +1406.2228 Combinatorics +1406.3739 +1407.1411 Superconductivity +1407.7505 +1407.7785 Algebraic Geometry +1408.0348 Geometric Topology +1408.0891 Quantum Gases +1408.1086 Quantum Gases +1408.4796 General Physics +1409.2046 Medical Physics +1409.7005 +1409.8651 Number Theory +1410.1233 Computational Engineering, Finance, and Science +1410.4079 Analysis of PDEs +1410.5692 Metric Geometry +1410.5701 Complex Variables +1410.6290 Rings and Algebras +1410.6600 Statistical Mechanics +1410.7696 Quantum Algebra +1410.8499 Quantitative Methods +1411.4594 Number Theory +1411.4612 Phenomenology +1411.4816 Number Theory +1411.5273 High Energy Astrophysical Phenomena +1411.5770 Mesoscale and Nanoscale Physics +1412.0494 Computer Vision and Pattern Recognition +1412.1650 Cosmology and Nongalactic Astrophysics +1412.2760 Astrophysics of Galaxies +1412.2765 Phenomenology +1412.3252 Number Theory +1412.4808 +1412.7310 Cosmology and Nongalactic Astrophysics +1412.7548 Number Theory +1501.01447 Theory +1501.04798 Geometric Topology +1501.05387 Distributed, Parallel, and Cluster Computing +1501.05880 Quantitative Methods +1501.06267 Information Theory +1501.06928 Astrophysics of Galaxies +1502.03762 Optimization and Control +1502.07309 Statistical Mechanics +1503.01701 Fluid Dynamics +1503.01735 Mesoscale and Nanoscale Physics +1503.02689 Cosmology and Nongalactic Astrophysics +1503.03654 +1503.04840 Algebraic Topology +1503.07522 Solar and Stellar Astrophysics +1503.07574 Classical Analysis and ODEs +1503.08059 +1503.08916 Representation Theory +1504.00013 Strongly Correlated Electrons +1504.01613 Mesoscale and Nanoscale Physics +1504.01787 Quantum Gases +1504.02277 Soft Condensed Matter +1504.02713 Solar and Stellar Astrophysics +1504.03831 Number Theory +1504.03909 +1504.05107 Statistical Mechanics +1504.05263 General Topology +1504.06143 +1504.06809 Number Theory +1504.06987 +1504.07618 Number Theory +1504.07808 Strongly Correlated Electrons +1504.07853 Cosmology and Nongalactic Astrophysics +1504.07989 +1505.00008 Cosmology and Nongalactic Astrophysics +1505.01507 Optics +1505.01972 Functional Analysis +1505.02413 Theory +1505.02721 Analysis of PDEs +1505.02902 +1505.02910 Machine Learning +1505.06626 Soft Condensed Matter +1505.06634 Theory +1506.00444 Classical Analysis and ODEs +1506.00525 Materials Science +1506.00895 +1506.00984 +1506.01027 High Energy Astrophysical Phenomena +1506.01182 Atomic Physics +1506.04018 Superconductivity +1506.05353 +1506.06049 Materials Science +1506.06116 +1506.06597 Combinatorics +1506.07375 K-Theory and Homology +1506.08097 +1506.08287 Metric Geometry +1506.08457 +1507.00115 +1507.00731 Astrophysics of Galaxies +1507.00946 Phenomenology +1507.01614 Computation +1507.01628 Information Theory +1507.01937 Solar and Stellar Astrophysics +1507.02156 +1507.02645 Representation Theory +1507.03190 Information Theory +1507.03271 +1507.04546 Theory +1507.06311 Solar and Stellar Astrophysics +1507.06478 Phenomenology +1507.06920 Populations and Evolution +1507.07385 Information Theory +1507.08170 Optics +1508.00096 Geometric Topology +1508.01124 Theory +1508.01469 Populations and Evolution +1508.01856 Materials Science +1508.02051 Analysis of PDEs +1508.02540 +1508.02723 Quantum Gases +1508.03848 Mesoscale and Nanoscale Physics +1508.03862 Experiment +1508.04356 Algebraic Geometry +1508.05045 Disordered Systems and Neural Networks +1508.05215 Fluid Dynamics +1508.06423 Pattern Formation and Solitons +1508.06498 Mesoscale and Nanoscale Physics +1508.06757 Experiment +1508.07189 Strongly Correlated Electrons +1508.07420 Number Theory +1508.07863 Mesoscale and Nanoscale Physics +1508.07959 Lattice +1509.00325 Numerical Analysis +1509.00620 Superconductivity +1509.00736 Phenomenology +1509.01729 Phenomenology +1509.02067 Probability +1509.02168 Quantum Gases +1509.02349 Atomic Physics +1509.02529 Astrophysics of Galaxies +1509.02775 Mesoscale and Nanoscale Physics +1509.02929 Phenomenology +1509.02949 Strongly Correlated Electrons +1509.03050 Differential Geometry +1509.03073 Cosmology and Nongalactic Astrophysics +1509.03491 Probability +1509.03508 Fluid Dynamics +1509.04063 Numerical Analysis +1509.04373 Complex Variables +1509.05143 Astrophysics of Galaxies +1509.05201 Mesoscale and Nanoscale Physics +1509.05361 Atomic Physics +1509.05858 +1509.06316 +1509.06370 Solar and Stellar Astrophysics +1509.06642 +1509.06681 Theory +1509.06727 +1509.06998 Phenomenology +1509.07339 Theory +1509.07401 Statistical Mechanics +1509.07841 +1509.07883 Rings and Algebras +1509.08335 Astrophysics of Galaxies +1509.08354 +1509.08670 Mesoscale and Nanoscale Physics +1510.00235 Algebraic Topology +1510.00394 High Energy Astrophysical Phenomena +1510.00688 Cosmology and Nongalactic Astrophysics +1510.00782 Metric Geometry +1510.01028 General Mathematics +1510.01738 Strongly Correlated Electrons +1510.01896 Theory +1510.02144 Superconductivity +1510.02251 Solar and Stellar Astrophysics +1510.02566 +1510.02796 Instrumentation and Methods for Astrophysics +1510.03327 Superconductivity +1510.03436 Cosmology and Nongalactic Astrophysics +1510.03748 Mesoscale and Nanoscale Physics +1510.04404 Materials Science +1510.04693 High Energy Astrophysical Phenomena +1510.04711 +1510.04790 Phenomenology +1510.04854 Logic in Computer Science +1510.04909 Atomic Physics +1510.05008 Phenomenology +1510.05830 Learning +1510.06470 Lattice +1510.06625 Mesoscale and Nanoscale Physics +1510.07065 Phenomenology +1510.07598 +1510.08005 Statistical Mechanics +1510.08069 Phenomenology +1510.08215 +1510.08436 Solar and Stellar Astrophysics +1510.08650 Strongly Correlated Electrons +1510.08840 Phenomenology +1510.08935 +1510.09181 Materials Science +1511.00012 Cosmology and Nongalactic Astrophysics +1511.00055 Cosmology and Nongalactic Astrophysics +1511.00359 Dynamical Systems +1511.00394 Learning +1511.00699 +1511.00886 Quantum Gases +1511.00910 Physics and Society +1511.01004 +1511.01286 Solar and Stellar Astrophysics +1511.01288 Instrumentation and Detectors +1511.01993 Statistical Mechanics +1511.03014 Solar and Stellar Astrophysics +1511.03545 Materials Science +1511.03712 Space Physics +1511.04072 Earth and Planetary Astrophysics +1511.04083 Earth and Planetary Astrophysics +1511.04104 Mesoscale and Nanoscale Physics +1511.04206 +1511.04441 Cosmology and Nongalactic Astrophysics +1511.04673 Superconductivity +1511.05087 Phenomenology +1511.05141 Disordered Systems and Neural Networks +1511.05147 Astrophysics of Galaxies +1511.05406 Astrophysics of Galaxies +1511.05513 +1511.05542 Experiment +1511.05971 Cosmology and Nongalactic Astrophysics +1511.06155 +1511.06370 Astrophysics of Galaxies +1511.06629 Atomic Physics +1511.06958 Cosmology and Nongalactic Astrophysics +1511.07056 Classical Analysis and ODEs +1511.07158 Mesoscale and Nanoscale Physics +1511.07930 Strongly Correlated Electrons +1511.08008 Statistical Mechanics +1511.08197 Solar and Stellar Astrophysics +1511.08255 Astrophysics of Galaxies +1511.08472 Soft Condensed Matter +1511.08601 Mesoscale and Nanoscale Physics +1511.08984 Mesoscale and Nanoscale Physics +1512.00202 Chaotic Dynamics +1512.00281 Theory +1512.00301 High Energy Astrophysical Phenomena +1512.00455 Phenomenology +1512.00466 Solar and Stellar Astrophysics +1512.00615 +1512.00623 Materials Science +1512.00681 Atomic Physics +1512.00746 Materials Science +1512.01078 Materials Science +1512.01224 Experiment +1512.01965 Quantum Gases +1512.02120 +1512.02146 Solar and Stellar Astrophysics +1512.02157 Data Structures and Algorithms +1512.02252 Phenomenology +1512.02434 High Energy Astrophysical Phenomena +1512.02801 Phenomenology +1512.02856 Pattern Formation and Solitons +1512.02993 Lattice +1512.03437 Mesoscale and Nanoscale Physics +1512.03578 +1512.04187 Materials Science +1512.04437 Earth and Planetary Astrophysics +1512.04532 Theory +1512.04555 Cosmology and Nongalactic Astrophysics +1512.04876 Mesoscale and Nanoscale Physics +1512.04940 Astrophysics of Galaxies +1512.05301 Astrophysics of Galaxies +1512.05360 +1512.05523 Astrophysics of Galaxies +1512.05606 High Energy Astrophysical Phenomena +1512.05715 Atomic Physics +1512.05796 Astrophysics of Galaxies +1512.05797 Materials Science +1512.05894 +1512.06002 Astrophysics of Galaxies +1512.06041 Astrophysics of Galaxies +1512.06579 Algebraic Topology +1512.06692 Lattice +1512.06698 Earth and Planetary Astrophysics +1512.06777 Solar and Stellar Astrophysics +1512.06873 Solar and Stellar Astrophysics +1512.07639 Solar and Stellar Astrophysics +1512.08228 High Energy Astrophysical Phenomena +1512.08502 Phenomenology +1512.09027 Solar and Stellar Astrophysics +1601.00091 Solar and Stellar Astrophysics +1601.00356 High Energy Astrophysical Phenomena +1601.00386 Phenomenology +1601.00757 High Energy Astrophysical Phenomena +1601.01098 Superconductivity +1601.01114 Astrophysics of Galaxies +1601.01316 Solar and Stellar Astrophysics +1601.01440 Mesoscale and Nanoscale Physics +1601.01542 Astrophysics of Galaxies +1601.01750 Computer Vision and Pattern Recognition +1601.02087 Earth and Planetary Astrophysics +1601.02196 Soft Condensed Matter +1601.02542 High Energy Astrophysical Phenomena +1601.02610 High Energy Astrophysical Phenomena +1601.02618 Cosmology and Nongalactic Astrophysics +1601.02677 Economics +1601.02971 Mesoscale and Nanoscale Physics +1601.03216 Earth and Planetary Astrophysics +1601.03326 Solar and Stellar Astrophysics +1601.03327 Astrophysics of Galaxies +1601.03527 Astrophysics of Galaxies +1601.04051 High Energy Astrophysical Phenomena +1601.04452 Instrumentation and Methods for Astrophysics +1601.04870 High Energy Astrophysical Phenomena +1601.04962 High Energy Astrophysical Phenomena +1601.05054 Solar and Stellar Astrophysics +1601.05215 High Energy Astrophysical Phenomena +1601.05237 Phenomenology +1601.05304 Astrophysics of Galaxies +1601.05367 Astrophysics of Galaxies +1601.05965 +1601.06267 Astrophysics of Galaxies +1601.06369 Astrophysics of Galaxies +1601.07376 Optimization and Control +1601.07428 Astrophysics of Galaxies +1601.07983 Dynamical Systems +1601.08049 Digital Libraries +1602.00031 +1602.00361 Quantum Algebra +1602.00378 Solar and Stellar Astrophysics +1602.01097 Astrophysics of Galaxies +1602.01100 High Energy Astrophysical Phenomena +1602.01104 Astrophysics of Galaxies +1602.02106 Representation Theory +1602.02668 Materials Science +1602.02758 Earth and Planetary Astrophysics +1602.02765 Astrophysics of Galaxies +1602.02810 Theory +1602.02939 High Energy Astrophysical Phenomena +1602.02969 Astrophysics of Galaxies +1602.03130 Solar and Stellar Astrophysics +1602.03218 Learning +1602.03233 Optics +1602.03533 Astrophysics of Galaxies +1602.03629 High Energy Astrophysical Phenomena +1602.03640 Instrumentation and Methods for Astrophysics +1602.03756 Cosmology and Nongalactic Astrophysics +1602.03837 +1602.03919 Cosmology and Nongalactic Astrophysics +1602.04023 High Energy Astrophysical Phenomena +1602.04085 Astrophysics of Galaxies +1602.04127 Atomic Physics +1602.04200 High Energy Astrophysical Phenomena +1602.04263 Space Physics +1602.04290 Artificial Intelligence +1602.04468 Dynamical Systems +1602.04522 Algebraic Geometry +1602.04736 Earth and Planetary Astrophysics +1602.04835 Information Theory +1602.04875 Artificial Intelligence +1602.05203 Solar and Stellar Astrophysics +1602.05219 Statistical Mechanics +1602.05555 Formal Languages and Automata Theory +1602.06058 Data Structures and Algorithms +1602.06100 +1602.06134 +1602.06223 Digital Libraries +1602.06225 Machine Learning +1602.06316 Applications +1602.06340 Strongly Correlated Electrons +1602.06406 Information Theory +1602.06408 Statistical Mechanics +1602.06421 Combinatorics +1602.06454 Social and Information Networks +1602.06461 Social and Information Networks +1602.06483 Robotics +1602.06504 Genomics +1602.06508 Social and Information Networks +1602.06510 Cryptography and Security +1602.06528 Spectral Theory +1602.06561 Learning +1602.06570 Applications +1602.06585 Risk Management +1602.06620 Numerical Analysis +1602.06631 Representation Theory +1602.06642 +1602.06649 Fluid Dynamics +1602.06686 Networking and Internet Architecture +1602.06687 Learning +1602.06700 Human-Computer Interaction +1602.06703 Robotics +1602.06714 Fluid Dynamics +1602.06719 Classical Analysis and ODEs +1602.06750 Plasma Physics +1602.06787 Emerging Technologies +1602.06793 Mesoscale and Nanoscale Physics +1602.06795 Representation Theory +1602.06821 +1602.06833 Instrumentation and Methods for Astrophysics +1602.06852 Fluid Dynamics +1602.06858 Physics Education +1602.06868 History and Philosophy of Physics +1602.06889 Optimization and Control +1602.06937 Tissues and Organs +1602.06946 History and Overview +1602.06958 +1602.06963 Physics Education +1602.06967 Computation and Language +1602.06971 Fluid Dynamics +1602.06972 Applications +1602.06974 Optics +1602.06975 Instrumentation and Detectors +1602.06976 Superconductivity +1602.06978 +1602.06979 Computation and Language +1602.06989 Machine Learning +1602.06994 Other Computer Science +1602.06999 Fluid Dynamics +1602.07004 Probability +1602.07008 Data Structures and Algorithms +1602.07012 Dynamical Systems +1602.07017 Computer Vision and Pattern Recognition +1602.07018 Optimization and Control +1602.07019 Computation and Language +1602.07025 Rings and Algebras +1602.07026 Numerical Analysis +1602.07027 Phenomenology +1602.07029 Learning +1602.07030 Materials Science +1602.07033 Analysis of PDEs +1602.07034 Numerical Analysis +1602.07035 Commutative Algebra +1602.07036 Materials Science +1602.07037 +1602.07039 Combinatorics +1602.07040 Networking and Internet Architecture +1602.07041 Commutative Algebra +1602.07042 Atomic Physics +1602.07044 Biological Physics +1602.07045 Statistical Mechanics +1602.07047 Optics +1602.07048 Social and Information Networks +1602.07049 Numerical Analysis +1602.07056 Methodology +1602.07057 Artificial Intelligence +1602.07059 Algebraic Geometry +1602.07060 Algebraic Geometry +1602.07061 Algebraic Geometry +1602.07062 Numerical Analysis +1602.07064 Databases +1602.07065 Software Engineering +1602.07073 History and Overview +1602.07074 Soft Condensed Matter +1602.07084 Functional Analysis +1602.07085 Combinatorics +1602.07086 Analysis of PDEs +1602.07087 +1602.07090 Functional Analysis +1602.07091 Chemical Physics +1602.07092 Software Engineering +1602.07093 Commutative Algebra +1602.07094 Astrophysics of Galaxies +1602.07095 +1602.07097 Theory +1602.07100 Quantitative Methods +1602.07101 +1602.07103 Genomics +1602.07106 Data Structures and Algorithms +1602.07107 Machine Learning +1602.07111 +1602.07115 Logic in Computer Science +1602.07117 Optics +1602.07118 General Topology +1602.07123 Optimization and Control +1602.07127 Software Engineering +1602.07132 Combinatorics +1602.07133 Statistical Mechanics +1602.07134 Commutative Algebra +1602.07137 Optimization and Control +1602.07139 +1602.07147 Combinatorics +1602.07151 Fluid Dynamics +1602.07156 Exactly Solvable and Integrable Systems +1602.07158 Functional Analysis +1602.07160 +1602.07162 Number Theory +1602.07165 Formal Languages and Automata Theory +1602.07171 Combinatorics +1602.07175 Astrophysics of Galaxies +1602.07176 Analysis of PDEs +1602.07179 Soft Condensed Matter +1602.07180 Probability +1602.07183 Biomolecules +1602.07185 Human-Computer Interaction +1602.07187 Algebraic Geometry +1602.07193 General Physics +1602.07194 Machine Learning +1602.07195 Data Structures and Algorithms +1602.07201 Probability +1602.07208 History and Overview +1602.07215 High Energy Astrophysical Phenomena +1602.07218 +1602.07221 +1602.07225 Information Theory +1602.07227 Mesoscale and Nanoscale Physics +1602.07232 +1602.07233 Algebraic Geometry +1602.07236 Computation and Language +1602.07238 Complex Variables +1602.07241 Data Structures and Algorithms +1602.07243 Combinatorics +1602.07250 Information Theory +1602.07251 +1602.07253 Physics Education +1602.07254 Solar and Stellar Astrophysics +1602.07262 Probability +1602.07264 Learning +1602.07268 Probability +1602.07271 Differential Geometry +1602.07272 Probability +1602.07274 Medical Physics +1602.07275 Physics and Society +1602.07276 Representation Theory +1602.07278 Mesoscale and Nanoscale Physics +1602.07280 Applications +1602.07281 +1602.07283 Optimization and Control +1602.07285 Programming Languages +1602.07291 Sound +math/0406508 Number Theory +quant-ph/9810048 +0907.1548 Rings and Algebras +1012.2281 Analysis of PDEs +1108.5424 +1110.1302 Classical Analysis and ODEs +1112.1677 Algebraic Geometry +1112.3849 Classical Analysis and ODEs +1203.2089 Differential Geometry +1209.6518 Rings and Algebras +1301.2529 Classical Analysis and ODEs +1303.4630 Algebraic Geometry +1304.3191 Probability +1304.3873 Classical Analysis and ODEs +1305.5300 Analysis of PDEs +1307.0836 Computational Complexity +1309.6242 Classical Analysis and ODEs +1401.3382 Classical Analysis and ODEs +1401.6863 Classical Analysis and ODEs +1405.4794 Representation Theory +1406.2396 Rings and Algebras +1407.6636 Metric Geometry +1408.5602 Dynamical Systems +1409.7077 Geometric Topology +1410.4455 Quantum Algebra +1411.3971 Optimization and Control +1411.3981 Optimization and Control +1412.1720 Atomic Physics +1501.02501 Optimization and Control +1501.04272 Information Theory +1501.07820 +1502.01730 Combinatorics +1502.02463 Group Theory +1502.02890 Quantum Gases +1502.07961 Risk Management +1503.03692 Functional Analysis +1504.06182 General Physics +1505.01616 Combinatorics +1505.01638 Physics and Society +1505.04179 +1506.06877 Materials Science +1507.00312 Statistical Mechanics +1507.01847 Risk Management +1507.03048 +1508.01749 Spectral Theory +1508.02393 Cosmology and Nongalactic Astrophysics +1508.06131 Phenomenology +1509.01548 Quantum Algebra +1509.01776 Probability +1509.02380 Sound +1509.03130 Analysis of PDEs +1510.04891 +1510.07770 Theory +1511.00636 +1511.01971 +1511.03436 +1511.04647 Cosmology and Nongalactic Astrophysics +1511.08004 Representation Theory +1512.03761 Dynamical Systems +1512.06800 +1512.07890 Theory +1601.00069 Earth and Planetary Astrophysics +1601.01836 Group Theory +1601.02492 Probability +1601.06141 Symplectic Geometry +1601.06879 Number Theory +1602.00931 General Finance +1602.01245 Optics +1602.03943 Machine Learning +1602.04826 Astrophysics of Galaxies +1602.07358 Methodology +1602.07699 Cosmology and Nongalactic Astrophysics +1602.08140 Phenomenology +1602.08729 Optimization and Control +1602.08822 Mesoscale and Nanoscale Physics +1603.00635 Atomic Physics +1603.00886 Physics and Society +1603.03250 Phenomenology +1603.05561 Metric Geometry +1603.06143 Graphics +1603.06294 Atomic Physics +1603.06743 Machine Learning +1603.07038 Probability +1603.07257 Physics and Society +1603.07266 +1603.08165 Dynamical Systems +1603.08751 Instrumentation and Detectors +1603.09257 +1604.02307 Probability +1604.04384 Robotics +1604.04905 +1604.07349 Combinatorics +1604.08076 Algebraic Geometry +1605.00931 +1605.01288 Learning +1605.02108 Quantum Gases +1605.04928 Quantum Gases +1605.05718 Phenomenology +1605.05790 Theory +1605.07245 Solar and Stellar Astrophysics +1605.07686 Computer Vision and Pattern Recognition +1605.09125 Information Theory +1605.09463 Optimization and Control +1605.09532 High Energy Astrophysical Phenomena +1606.00033 Methodology +1606.00188 Quantum Gases +1606.00688 Theory +1606.01151 Computation and Language +1606.01637 Classical Analysis and ODEs +1606.02504 Phenomenology +1606.02673 Representation Theory +1606.02972 Statistical Mechanics +1606.03338 Mesoscale and Nanoscale Physics +1606.04016 Computational Complexity +1606.04256 Materials Science +1606.07013 +1606.07177 +1606.07413 +1606.08295 +1606.08667 Data Structures and Algorithms +1606.08715 Popular Physics +1607.00957 Analysis of PDEs +1607.01310 +1607.02521 Experiment +1607.03145 Cosmology and Nongalactic Astrophysics +1607.04150 Superconductivity +1607.05630 Materials Science +1607.06034 Category Theory +1607.06333 Machine Learning +1607.06775 Medical Physics +1607.06856 Materials Science +1607.07195 Machine Learning +1607.07463 +1607.07690 Mesoscale and Nanoscale Physics +1607.08528 Fluid Dynamics +1607.08817 Phenomenology +1608.00219 Classical Analysis and ODEs +1608.04702 Algebraic Topology +1608.05608 Dynamical Systems +1608.06238 +1608.06531 Numerical Analysis +1608.06874 Combinatorics +1608.06946 +1608.07192 Human-Computer Interaction +1608.07930 Numerical Analysis +1608.08249 Strongly Correlated Electrons +1608.08449 Geometric Topology +1609.00037 Software Engineering +1609.00433 +1609.01159 General Mathematics +1609.02363 Mesoscale and Nanoscale Physics +1609.02779 Classical Analysis and ODEs +1609.02967 Number Theory +1609.03696 Information Theory +1609.04476 Mesoscale and Nanoscale Physics +1609.04722 Artificial Intelligence +1609.05390 Solar and Stellar Astrophysics +1609.07317 Computation and Language +1609.07444 Numerical Analysis +1609.07593 Logic in Computer Science +1609.09139 Materials Science +1610.00484 Mesoscale and Nanoscale Physics +1610.00612 Optics +1610.00872 Probability +1610.00891 Probability +1610.00898 Geometric Topology +1610.01055 Earth and Planetary Astrophysics +1610.01240 Optics +1610.01644 Machine Learning +1610.01839 Combinatorics +1610.02835 Dynamical Systems +1610.02959 Medical Physics +1610.03146 Dynamical Systems +1610.03341 Computer Vision and Pattern Recognition +1610.03373 Systems and Control +1610.03474 Computer Science and Game Theory +1610.03507 +1610.03541 Information Theory +1610.03604 Computer Vision and Pattern Recognition +1610.03640 Computer Vision and Pattern Recognition +1610.03667 Information Theory +1610.03672 High Energy Astrophysical Phenomena +1610.03725 Machine Learning +1610.03780 Solar and Stellar Astrophysics +1610.03881 +1610.03890 Cosmology and Nongalactic Astrophysics +1610.03974 Disordered Systems and Neural Networks +1610.03995 Machine Learning +1610.04000 +1610.04092 Geometric Topology +1610.04123 Biomolecules +1610.04199 Statistics Theory +1610.04224 Other Quantitative Biology +1610.04225 +1610.04226 Cosmology and Nongalactic Astrophysics +1610.04227 Theory +1610.04229 Mesoscale and Nanoscale Physics +1610.04230 Theory +1610.04231 Cosmology and Nongalactic Astrophysics +1610.04233 Theory +1610.04241 Optics +1610.04242 Chemical Physics +1610.04248 Fluid Dynamics +1610.04250 Operator Algebras +1610.04254 Biological Physics +1610.04255 Neurons and Cognition +1610.04256 Computer Vision and Pattern Recognition +1610.04257 Functional Analysis +1610.04258 Neurons and Cognition +1610.04259 Combinatorics +1610.04260 Networking and Internet Architecture +1610.04261 Computer Vision and Pattern Recognition +1610.04262 Classical Physics +1610.04263 Materials Science +1610.04267 Dynamical Systems +1610.04268 Theory +1610.04271 Number Theory +1610.04274 Social and Information Networks +1610.04276 Computers and Society +1610.04278 Geometric Topology +1610.04279 Materials Science +1610.04281 Graphics +1610.04285 +1610.04286 Robotics +1610.04290 Biomolecules +1610.04293 Probability +1610.04294 Algebraic Geometry +1610.04295 Number Theory +1610.04296 +1610.04297 Applications +1610.04298 +1610.04300 Strongly Correlated Electrons +1610.04301 Probability +1610.04302 Representation Theory +1610.04303 Computational Engineering, Finance, and Science +1610.04304 Computational Engineering, Finance, and Science +1610.04306 Cryptography and Security +1610.04308 Computer Vision and Pattern Recognition +1610.04309 Distributed, Parallel, and Cluster Computing +1610.04310 Numerical Analysis +1610.04312 Computer Science and Game Theory +1610.04315 Databases +1610.04321 Atomic Physics +1610.04322 Computer Vision and Pattern Recognition +1610.04324 Optics +1610.04327 +1610.04329 Optimization and Control +1610.04332 Statistical Mechanics +1610.04333 Strongly Correlated Electrons +1610.04334 Statistical Finance +1610.04335 Optics +1610.04337 Disordered Systems and Neural Networks +1610.04338 Chemical Physics +1610.04340 Information Theory +1610.04342 Dynamical Systems +1610.04343 Phenomenology +1610.04345 Computation and Language +1610.04346 Multimedia +1610.04347 History and Overview +1610.04348 Optics +1610.04349 +1610.04350 Quantum Gases +1610.04351 Machine Learning +1610.04352 +1610.04354 Mesoscale and Nanoscale Physics +1610.04359 +1610.04360 +1610.04361 Strongly Correlated Electrons +1610.04362 Networking and Internet Architecture +1610.04364 Information Theory +1610.04367 K-Theory and Homology +1610.04368 Algebraic Geometry +1610.04371 Machine Learning +1610.04373 Analysis of PDEs +1610.04374 Differential Geometry +1610.04375 Social and Information Networks +1610.04377 Computation and Language +1610.04378 Information Theory +1610.04379 Materials Science +1610.04382 Statistical Mechanics +1610.04383 Mesoscale and Nanoscale Physics +1610.04384 Numerical Analysis +1610.04389 Experiment +1610.04390 Instrumentation and Methods for Astrophysics +1610.04392 Instrumentation and Methods for Astrophysics +1610.04393 Phenomenology +1610.04395 Optimization and Control +1610.04396 +1610.04397 Methodology +1610.04398 Fluid Dynamics +1610.04399 Analysis of PDEs +1610.04403 Instrumentation and Methods for Astrophysics +1610.04404 Soft Condensed Matter +1610.04405 Cryptography and Security +1610.04407 Combinatorics +1610.04408 Differential Geometry +1610.04414 Geometric Topology +1610.04415 Number Theory +1610.04416 Computation and Language +1610.04421 Networking and Internet Architecture +1610.04424 Algebraic Geometry +1610.04426 Computers and Society +1610.04427 Solar and Stellar Astrophysics +1610.04429 Human-Computer Interaction +1610.04430 Data Structures and Algorithms +1610.04432 Fluid Dynamics +1610.04434 Dynamical Systems +1610.04435 Experiment +1610.04436 Chemical Physics +1610.04437 Materials Science +1610.04438 Algebraic Geometry +1610.04439 Discrete Mathematics +1610.04440 Quantum Gases +1610.04441 Information Theory +1610.04443 +1610.04444 High Energy Astrophysical Phenomena +1610.04447 Theory +1610.04449 Analysis of PDEs +1610.04450 Numerical Analysis +1610.04454 Computer Science and Game Theory +1610.04456 General Physics +1610.04457 Popular Physics +1610.04458 Trading and Market Microstructure +1610.04459 Computers and Society +1610.04460 Computer Vision and Pattern Recognition +1610.04461 Programming Languages +1610.04462 +1610.04464 +1610.04465 Methodology +1610.04466 Fluid Dynamics +1610.04467 Information Theory +1610.04468 General Physics +1610.04470 Biomolecules +1610.04471 Probability +1610.04476 Mesoscale and Nanoscale Physics +1610.04478 Analysis of PDEs +1610.04480 Phenomenology +1610.04482 Numerical Analysis +1610.04483 Networking and Internet Architecture +1610.04484 +1610.04487 Mesoscale and Nanoscale Physics +1610.04488 Classical Analysis and ODEs +1610.04489 Phenomenology +1610.04491 Machine Learning +1610.04493 Distributed, Parallel, and Cluster Computing +1610.04494 Networking and Internet Architecture +1610.04496 +1610.04497 Differential Geometry +1610.04499 Combinatorics +1610.04501 Phenomenology +1610.04502 Optics +1610.04505 Number Theory +1610.04506 General Topology +1610.04511 Materials Science +1610.04512 +1610.04513 Networking and Internet Architecture +1610.04514 Optimization and Control +1610.04517 Materials Science +1610.04518 +1610.04521 Analysis of PDEs +1610.04522 Medical Physics +1610.04523 Computational Complexity +1610.04524 +1610.04525 Theory +1610.04527 Strongly Correlated Electrons +1610.04530 Information Theory +1610.04531 Graphics +1610.04533 Information Retrieval +1610.04534 Geometric Topology +1610.04537 Materials Science +1610.04539 Pattern Formation and Solitons +1610.04542 Computer Vision and Pattern Recognition +1610.04544 Discrete Mathematics +1610.04545 Lattice +1610.04552 Dynamical Systems +1610.04554 Functional Analysis +1610.04555 Mesoscale and Nanoscale Physics +1610.04556 Chemical Physics +1610.04557 Differential Geometry +1610.04558 Algebraic Geometry +1610.04559 Complex Variables +1610.04560 +1610.04564 Theory +1610.04568 Neurons and Cognition +1610.04570 +1610.04571 Representation Theory +1610.04572 Distributed, Parallel, and Cluster Computing +1610.04573 Probability +1610.04574 Machine Learning +1610.04575 Computer Vision and Pattern Recognition +1610.04576 Learning +1610.04577 Databases +1610.04579 Neurons and Cognition +1610.04580 Statistics Theory +1610.04581 Combinatorics +1610.04582 Geometric Topology +1610.04583 Information Theory +1610.04584 Algebraic Geometry +1610.04586 Networking and Internet Architecture +1610.04590 Classical Analysis and ODEs +1610.04592 Logic in Computer Science +1610.04593 Lattice +1610.04594 Software Engineering +1610.04596 Mesoscale and Nanoscale Physics +1610.04597 Data Structures and Algorithms +1610.04599 Learning +1610.04602 Emerging Technologies +1610.04606 Cosmology and Nongalactic Astrophysics +gr-qc/0409082 +gr-qc/0511139 +quant-ph/0610200 +0904.1766 Algebraic Geometry +0907.3779 Mesoscale and Nanoscale Physics +1112.0487 Algebraic Geometry +1211.4115 Representation Theory +1301.1277 Probability +1304.6172 Information Theory +1306.0364 Other Statistics +1307.4553 Functional Analysis +1311.5796 Systems and Control +1401.1704 Adaptation and Self-Organizing Systems +1402.6422 Information Theory +1403.6526 Optimization and Control +1407.0571 Soft Condensed Matter +1408.6911 Computer Vision and Pattern Recognition +1411.0723 Phenomenology +1411.3318 Number Theory +1411.7477 Information Theory +1411.7879 Combinatorics +1412.1529 Cosmology and Nongalactic Astrophysics +1412.4889 Theory +1501.00596 Pattern Formation and Solitons +1501.01123 Differential Geometry +1502.04468 +1503.04957 Software Engineering +1504.02715 +1504.03502 Combinatorics +1504.03534 Optimization and Control +1504.04606 Probability +1505.00616 Quantum Gases +1505.02124 Complex Variables +1505.05656 +1505.05668 Applications +1505.06351 Number Theory +1506.01449 Operating Systems +1506.05031 Mesoscale and Nanoscale Physics +1507.00740 Soft Condensed Matter +1507.02032 Information Theory +1507.03163 Combinatorics +1507.04755 Theory +1507.05350 Optimization and Control +1507.05719 Operator Algebras +1508.01142 Metric Geometry +1508.02122 Classical Analysis and ODEs +1508.02819 Combinatorics +1508.04673 Soft Condensed Matter +1509.01050 Rings and Algebras +1509.03731 Combinatorics +1509.05591 Group Theory +1510.00478 +1510.06823 Optimization and Control +1510.07186 Combinatorics +1510.07539 Rings and Algebras +1510.07733 Pattern Formation and Solitons +1510.08214 +1511.00078 +1511.04644 Analysis of PDEs +1511.05165 Astrophysics of Galaxies +1511.06250 Probability +1511.08013 Algebraic Geometry +1511.08569 Metric Geometry +1512.00562 Astrophysics of Galaxies +1512.04180 Social and Information Networks +1512.04628 Metric Geometry +1512.09324 Theory +1601.03451 Number Theory +1601.07092 +1602.00189 Quantum Gases +1602.00435 Data Structures and Algorithms +1602.02279 Methodology +1602.02851 Combinatorics +1602.03921 Optics +1602.04430 +1602.04661 Combinatorics +1602.06531 Machine Learning +1602.07309 +1602.07684 Cosmology and Nongalactic Astrophysics +1602.07887 Dynamical Systems +1602.08104 +1603.00319 Algebraic Geometry +1603.02530 Theory +1603.03179 Probability +1603.06443 Systems and Control +1603.08000 Phenomenology +1603.09611 Mesoscale and Nanoscale Physics +1604.01503 Instrumentation and Detectors +1604.01864 Materials Science +1604.01924 Experiment +1604.02007 Complex Variables +1604.04062 +1604.07187 Distributed, Parallel, and Cluster Computing +1604.08310 +1604.08413 Theory +1604.08493 +1604.08626 High Energy Astrophysical Phenomena +1605.00747 Soft Condensed Matter +1605.01311 Applications +1605.04404 Strongly Correlated Electrons +1605.05531 Geometric Topology +1605.05982 Soft Condensed Matter +1605.06121 +1605.06856 Databases +1605.06946 Probability +1605.07359 Earth and Planetary Astrophysics +1605.08648 +1606.00273 +1606.00363 Mesoscale and Nanoscale Physics +1606.00429 Optics +1606.01230 Combinatorics +1606.01321 Number Theory +1606.02316 Networking and Internet Architecture +1606.03592 Neurons and Cognition +1606.05520 Classical Analysis and ODEs +1606.06902 High Energy Astrophysical Phenomena +1606.07922 Strongly Correlated Electrons +1606.08915 Strongly Correlated Electrons +1607.00896 Statistics Theory +1607.01621 Algebraic Geometry +1607.02548 Numerical Analysis +1607.02776 Differential Geometry +1607.03592 Computation +1607.04641 High Energy Astrophysical Phenomena +1607.04898 Classical Analysis and ODEs +1607.05999 History and Overview +1607.06588 Optimization and Control +1607.06705 Commutative Algebra +1607.08207 Mesoscale and Nanoscale Physics +1608.00436 Soft Condensed Matter +1608.00903 Subcellular Processes +1608.01627 +1608.01877 Mesoscale and Nanoscale Physics +1608.02258 Rings and Algebras +1608.02391 Materials Science +1608.02737 Differential Geometry +1608.03045 Statistics Theory +1608.03599 Statistical Mechanics +1608.04170 Computer Vision and Pattern Recognition +1608.04187 Computer Vision and Pattern Recognition +1608.04248 Soft Condensed Matter +1608.04308 High Energy Astrophysical Phenomena +1608.04647 Machine Learning +1608.04846 Machine Learning +1608.04915 Fluid Dynamics +1608.05024 Portfolio Management +1608.05074 Strongly Correlated Electrons +1608.05078 Solar and Stellar Astrophysics +1608.05089 +1608.05094 Information Theory +1608.05095 Probability +1608.05097 Cryptography and Security +1608.05098 Information Theory +1608.05102 Information Theory +1608.05103 Group Theory +1608.05104 Computer Vision and Pattern Recognition +1608.05105 Disordered Systems and Neural Networks +1608.05109 Optimization and Control +1608.05110 Geometric Topology +1608.05113 Mesoscale and Nanoscale Physics +1608.05114 Analysis of PDEs +1608.05115 Instrumentation and Methods for Astrophysics +1608.05117 Systems and Control +1608.05123 Earth and Planetary Astrophysics +1608.05125 Exactly Solvable and Integrable Systems +1608.05127 Learning +1608.05129 Computation and Language +1608.05131 Computers and Society +1608.05132 Mesoscale and Nanoscale Physics +1608.05135 +1608.05136 Chemical Physics +1608.05137 Computer Vision and Pattern Recognition +1608.05140 Networking and Internet Architecture +1608.05142 Methodology +1608.05145 Computational Finance +1608.05146 Exactly Solvable and Integrable Systems +1608.05148 Computer Vision and Pattern Recognition +1608.05150 Information Theory +1608.05151 Artificial Intelligence +1608.05152 Learning +1608.05155 +1608.05157 Number Theory +1608.05159 Computer Vision and Pattern Recognition +1608.05160 Logic +1608.05165 Rings and Algebras +1608.05166 Populations and Evolution +1608.05167 Computer Vision and Pattern Recognition +1608.05169 Discrete Mathematics +1608.05171 Mesoscale and Nanoscale Physics +1608.05173 Computation +1608.05174 Distributed, Parallel, and Cluster Computing +1608.05175 Probability +1608.05176 Information Theory +1608.05177 Computer Vision and Pattern Recognition +1608.05183 Optics +1608.05186 Computer Vision and Pattern Recognition +1608.05187 Cryptography and Security +1608.05189 Theory +1608.05190 Solar and Stellar Astrophysics +1608.05191 Earth and Planetary Astrophysics +1608.05192 +1608.05193 Combinatorics +1608.05194 Astrophysics of Galaxies +1608.05195 Chemical Physics +1608.05203 Computer Vision and Pattern Recognition +1608.05204 Computer Vision and Pattern Recognition +1608.05206 Chaotic Dynamics +1608.05209 Computer Vision and Pattern Recognition +1608.05210 Mesoscale and Nanoscale Physics +1608.05215 Materials Science +1608.05217 Probability +1608.05223 +1608.05224 +1608.05225 Learning +1608.05232 Soft Condensed Matter +1608.05235 Discrete Mathematics +1608.05236 Disordered Systems and Neural Networks +1608.05240 Phenomenology +1608.05243 Computation and Language +1608.05245 Atmospheric and Oceanic Physics +1608.05248 Software Engineering +1608.05249 +1608.05251 Earth and Planetary Astrophysics +1608.05254 Medical Physics +1608.05255 Analysis of PDEs +1608.05256 Phenomenology +1608.05258 Machine Learning +1608.05260 General Physics +1608.05261 Solar and Stellar Astrophysics +1608.05262 Astrophysics of Galaxies +1608.05266 Physics and Society +1608.05269 Optimization and Control +1608.05270 Theory +1608.05271 Atmospheric and Oceanic Physics +1608.05272 Computer Science and Game Theory +1608.05273 Systems and Control +1608.05275 Learning +1608.05282 +1608.05283 Strongly Correlated Electrons +1608.05285 Number Theory +1608.05288 Artificial Intelligence +1608.05289 Methodology +1608.05290 Combinatorics +1608.05292 Computation +1608.05296 Phenomenology +1608.05302 Medical Physics +1608.05303 Atomic Physics +1608.05304 Soft Condensed Matter +1608.05305 +1608.05306 Dynamical Systems +1608.05307 Algebraic Topology +1608.05308 Computer Science and Game Theory +1608.05311 Theory +1608.05312 Instrumentation and Methods for Astrophysics +1608.05313 Computational Physics +1608.05314 Category Theory +1608.05317 +1608.05319 Optics +1608.05320 High Energy Astrophysical Phenomena +1608.05321 Complex Variables +1608.05323 Soft Condensed Matter +1608.05324 +1608.05326 +1608.05328 Algebraic Geometry +1608.05329 Astrophysics of Galaxies +1608.05332 Group Theory +1608.05337 Superconductivity +1608.05340 +1608.05342 Astrophysics of Galaxies +1608.05343 Learning +1608.05346 Information Retrieval +1608.05347 Artificial Intelligence +1608.05349 Mesoscale and Nanoscale Physics +1608.05352 Combinatorics +1608.05354 +1608.05356 Cosmology and Nongalactic Astrophysics +1608.05357 Mesoscale and Nanoscale Physics +1608.05358 Computational Complexity +1608.05359 Probability +1608.05364 Biological Physics +1608.05367 Populations and Evolution +1608.05371 Number Theory +1608.05374 Computation and Language +1608.05376 Symbolic Computation +1608.05378 Pricing of Securities +1608.05379 Phenomenology +1608.05380 Information Retrieval +1608.05382 Number Theory +1608.05385 Analysis of PDEs +1608.05386 Atmospheric and Oceanic Physics +1608.05387 Mesoscale and Nanoscale Physics +1608.05388 Mesoscale and Nanoscale Physics +1608.05390 Optimization and Control +1608.05391 Probability +1608.05394 Differential Geometry +1608.05400 Numerical Analysis +1608.05401 Distributed, Parallel, and Cluster Computing +1608.05403 Solar and Stellar Astrophysics +cond-mat/0208081 Disordered Systems and Neural Networks +cond-mat/0402010 Disordered Systems and Neural Networks +quant-ph/0105057 +0802.0955 Analysis of PDEs +0907.0397 Analysis of PDEs +0908.2107 Functional Analysis +1002.4374 Algebraic Geometry +1109.4281 Probability +1201.1732 +1201.2483 Information Theory +1201.3137 Probability +1201.5163 Theory +1208.1229 Algebraic Geometry +1208.2983 Representation Theory +1212.3511 Algebraic Geometry +1302.2192 Materials Science +1308.2525 Algebraic Geometry +1309.0705 Probability +1310.3864 Probability +1403.4877 Analysis of PDEs +1403.5779 Analysis of PDEs +1403.6242 Analysis of PDEs +1403.6972 Commutative Algebra +1404.3924 Algebraic Geometry +1404.4009 Applications +1405.0502 Functional Analysis +1408.0475 Probability +1408.3722 Soft Condensed Matter +1408.4996 Differential Geometry +1409.6084 Analysis of PDEs +1409.7485 Algebraic Geometry +1410.3368 Geometric Topology +1411.2332 Algebraic Geometry +1412.2171 Geometric Topology +1501.00942 +1501.04250 +1501.04793 Probability +1502.01595 Cosmology and Nongalactic Astrophysics +1502.06923 Algebraic Geometry +1502.07110 Molecular Networks +1503.05023 Functional Analysis +1504.08056 Geometric Topology +1504.08214 Algebraic Geometry +1505.04163 Algebraic Geometry +1506.05675 Analysis of PDEs +1506.06317 Number Theory +1506.06722 Computation +1506.08032 +1507.00399 Differential Geometry +1507.01110 Differential Geometry +1507.06728 Representation Theory +1507.08044 Numerical Analysis +1508.01902 Statistics Theory +1508.04924 Learning +1510.00595 +1510.04130 Machine Learning +1510.05818 Number Theory +1510.07715 Geometric Topology +1511.00731 Combinatorics +1511.02696 Populations and Evolution +1511.04491 Computer Vision and Pattern Recognition +1511.04587 Computer Vision and Pattern Recognition +1511.06551 +1511.06705 Combinatorics +1511.07221 Number Theory +1511.08332 Phenomenology +1512.00370 Probability +1512.01299 Number Theory +1512.02745 Geometric Topology +1512.05502 Number Theory +1512.05558 Software Engineering +1512.06008 Strongly Correlated Electrons +1512.06496 +1512.06962 Spectral Theory +1601.00528 Theory +1601.03074 Tissues and Organs +1601.03183 Functional Analysis +1601.04802 Logic in Computer Science +1601.07491 Mesoscale and Nanoscale Physics +1601.08159 Chemical Physics +1602.04842 Group Theory +1602.05012 Machine Learning +1602.05449 Materials Science +1602.05775 Materials Science +1602.06158 Optics +1602.08384 Quantum Gases +1603.00416 Algebraic Geometry +1603.01401 Quantum Gases +1603.03205 Combinatorics +1603.06396 Phenomenology +1603.08992 Solar and Stellar Astrophysics +1603.09308 Chemical Physics +1604.00855 Mesoscale and Nanoscale Physics +1604.02060 Quantum Gases +1604.04221 Theory +1604.04930 Analysis of PDEs +1604.05069 Complex Variables +1604.05595 Theory +1604.05834 +1604.06311 +1604.07254 Classical Physics +1604.08905 Theory +1605.00327 Classical Physics +1605.01624 Statistical Mechanics +1605.01710 Computer Vision and Pattern Recognition +1605.02042 Metric Geometry +1605.03804 Computer Vision and Pattern Recognition +1605.05341 +1605.05653 Quantum Gases +1605.05788 +1605.07956 Cryptography and Security +1605.08910 Quantum Gases +1605.09208 Experiment +1606.01061 Analysis of PDEs +1606.02816 Sound +1606.02840 Neurons and Cognition +1606.03515 Astrophysics of Galaxies +1606.03874 Cosmology and Nongalactic Astrophysics +1606.04130 Learning +1606.05735 Learning +1606.05996 Spectral Theory +1606.09000 Computational Complexity +1606.09061 Probability +1607.00108 Quantum Gases +1607.03210 Phenomenology +1607.05626 Data Structures and Algorithms +1607.06743 Quantum Gases +1607.07100 Strongly Correlated Electrons +1608.01093 Artificial Intelligence +1608.02198 Learning +1608.02558 Classical Analysis and ODEs +1608.03005 High Energy Astrophysical Phenomena +1608.03575 +1608.04912 Theory +1608.05370 Phenomenology +1608.05566 Statistical Mechanics +1608.06134 Computation and Language +1608.06198 +1608.07143 Mesoscale and Nanoscale Physics +1608.07418 +1609.00394 Optics +1609.00623 Soft Condensed Matter +1609.01025 Statistics Theory +1609.01286 +1609.03012 Number Theory +1609.03570 Theory +1609.03574 Phenomenology +1609.05228 Artificial Intelligence +1609.05771 Medical Physics +1610.00053 Neural and Evolutionary Computing +1610.00117 Combinatorics +1610.00359 Statistical Mechanics +1610.00492 Physics Education +1610.02008 Classical Analysis and ODEs +1610.03210 Instrumentation and Detectors +1610.04128 Algebraic Geometry +1610.05260 +1610.05271 Analysis of PDEs +1610.05335 Dynamical Systems +1610.05712 Computer Vision and Pattern Recognition +1610.06027 Formal Languages and Automata Theory +1610.06654 Functional Analysis +1610.06995 Information Theory +1610.07409 Geometric Topology +1610.07611 Quantum Gases +1610.07666 Mesoscale and Nanoscale Physics +1610.07751 +1610.07757 Mesoscale and Nanoscale Physics +1610.09009 Representation Theory +1610.09010 Representation Theory +1610.09026 Digital Libraries +1610.09285 Differential Geometry +1610.09928 Phenomenology +1611.00116 Instrumentation and Methods for Astrophysics +1611.00131 +1611.00204 +1611.01141 Information Theory +1611.01418 Materials Science +1611.01457 Learning +1611.01515 Mesoscale and Nanoscale Physics +1611.01541 Machine Learning +1611.01823 Computational Complexity +1611.01873 Discrete Mathematics +1611.01879 Data Structures and Algorithms +1611.01911 Social and Information Networks +1611.02016 Biological Physics +1611.02101 Machine Learning +1611.02108 Logic in Computer Science +1611.02166 +1611.02258 Machine Learning +1611.02269 Theory +1611.02520 Optics +1611.02526 Earth and Planetary Astrophysics +1611.02541 Computational Geometry +1611.02588 Computation and Language +1611.02590 Computation and Language +1611.02643 Superconductivity +1611.02704 Phenomenology +1611.02956 Computation and Language +1611.03120 Mesoscale and Nanoscale Physics +1611.03225 Data Structures and Algorithms +1611.03360 Materials Science +1611.03389 +1611.03477 Sound +1611.03486 Solar and Stellar Astrophysics +1611.03488 Tissues and Organs +1611.03497 Astrophysics of Galaxies +1611.03502 Phenomenology +1611.03503 High Energy Astrophysical Phenomena +1611.03505 +1611.03506 +1611.03513 Geometric Topology +1611.03514 Dynamical Systems +1611.03515 Mesoscale and Nanoscale Physics +1611.03516 Earth and Planetary Astrophysics +1611.03518 Analysis of PDEs +1611.03519 Materials Science +1611.03520 Chemical Physics +1611.03523 +1611.03525 Theory +1611.03526 Mesoscale and Nanoscale Physics +1611.03527 Medical Physics +1611.03528 Statistical Mechanics +1611.03529 Optics +1611.03531 Machine Learning +1611.03532 Analysis of PDEs +1611.03533 Computation and Language +1611.03535 Combinatorics +1611.03536 Experiment +1611.03537 Optimization and Control +1611.03538 Robotics +1611.03539 +1611.03540 Dynamical Systems +1611.03541 Materials Science +1611.03543 Databases +1611.03544 Optics +1611.03547 Classical Analysis and ODEs +1611.03548 Instrumentation and Detectors +1611.03549 Analysis of PDEs +1611.03552 Fluid Dynamics +1611.03553 Learning +1611.03556 Optics +1611.03557 Rings and Algebras +1611.03558 Computation and Language +1611.03559 Geophysics +1611.03564 Differential Geometry +1611.03565 Experiment +1611.03567 Optimization and Control +1611.03571 Number Theory +1611.03572 Representation Theory +1611.03574 Geometric Topology +1611.03575 Probability +1611.03578 Machine Learning +1611.03579 Data Structures and Algorithms +1611.03580 Analysis of PDEs +1611.03581 Analysis of PDEs +1611.03582 Mesoscale and Nanoscale Physics +1611.03583 Combinatorics +1611.03584 Analysis of PDEs +1611.03585 Instrumentation and Detectors +1611.03586 Disordered Systems and Neural Networks +1611.03589 Computer Vision and Pattern Recognition +1611.03590 Cosmology and Nongalactic Astrophysics +1611.03591 Computer Vision and Pattern Recognition +1611.03592 Systems and Control +1611.03593 Solar and Stellar Astrophysics +1611.03594 Differential Geometry +1611.03595 Materials Science +1611.03599 Computation and Language +1611.03600 Probability +1611.03601 Algebraic Geometry +1611.03603 Superconductivity +1611.03604 +1611.03605 Neurons and Cognition +1611.03606 Materials Science +1611.03607 Computer Vision and Pattern Recognition +1611.03608 Learning +1611.03609 Neurons and Cognition +1611.03611 Strongly Correlated Electrons +1611.03613 Cosmology and Nongalactic Astrophysics +1611.03614 Strongly Correlated Electrons +1611.03615 Other Condensed Matter +1611.03616 Computers and Society +1611.03618 Computers and Society +1611.03619 Cosmology and Nongalactic Astrophysics +1611.03620 Superconductivity +1611.03621 Superconductivity +1611.03624 Discrete Mathematics +1611.03625 Classical Analysis and ODEs +1611.03626 High Energy Astrophysical Phenomena +1611.03631 Robotics +1611.03634 Differential Geometry +1611.03635 Phenomenology +1611.03636 Probability +1611.03637 Biological Physics +1611.03639 Probability +1611.03644 Algebraic Topology +1611.03646 Applications +1611.03651 Phenomenology +1611.03652 Artificial Intelligence +1611.03653 Phenomenology +1611.03655 Information Theory +1611.03656 Logic in Computer Science +1611.03657 High Energy Astrophysical Phenomena +1611.03663 Functional Analysis +1611.03665 Methodology +1611.03666 Graphics +1611.03668 +1611.03669 Algebraic Geometry +1611.03671 Combinatorics +1611.03674 Probability +1611.03675 Phenomenology +1611.03676 Analysis of PDEs +1611.03677 Graphics +1611.03679 Computer Vision and Pattern Recognition +1611.03680 Databases +1611.03681 Optimization and Control +1611.03682 +1611.03684 Phenomenology +1611.03685 Algebraic Geometry +1611.03692 Classical Analysis and ODEs +1611.03693 Strongly Correlated Electrons +1611.03694 Analysis of PDEs +1611.03695 Soft Condensed Matter +1611.03697 Algebraic Geometry +1611.03698 Neurons and Cognition +1611.03699 Information Theory +1611.03700 Numerical Analysis +1611.03701 Atomic Physics +1611.03702 Theory +1611.03706 Solar and Stellar Astrophysics +1611.03710 Phenomenology +1611.03712 Phenomenology +1611.03713 Strongly Correlated Electrons +1611.03715 Other Computer Science +1611.03716 +1611.03717 +1611.03721 Information Theory +1611.03724 Superconductivity +1611.03725 Computational Engineering, Finance, and Science +1611.03727 +1611.03730 Commutative Algebra +1611.03731 Analysis of PDEs +1611.03732 +1611.03733 Astrophysics of Galaxies +1611.03735 High Energy Astrophysical Phenomena +1611.03736 Databases +1611.03737 Instrumentation and Detectors +1611.03738 Optimization and Control +1611.03739 Computational Complexity +1611.03740 General Finance +1611.03741 Soft Condensed Matter +1611.03742 Differential Geometry +1611.03743 +1611.03745 Data Structures and Algorithms +1611.03746 +1611.03747 Chemical Physics +1611.03749 Computer Vision and Pattern Recognition +1611.03752 +1611.03753 Astrophysics of Galaxies +1611.03755 Numerical Analysis +1611.03756 Analysis of PDEs +1611.03758 Fluid Dynamics +1611.03759 Group Theory +1611.03761 Soft Condensed Matter +1611.03763 Phenomenology +1611.03764 Geometric Topology +1611.03765 Systems and Control +1611.03766 Combinatorics +1611.03768 Optimization and Control +1611.03770 Dynamical Systems +1611.03771 Adaptation and Self-Organizing Systems +1611.03772 Functional Analysis +1611.03774 +1611.03775 Earth and Planetary Astrophysics +1611.03777 Learning +1611.03778 Plasma Physics +1611.03779 Strongly Correlated Electrons +1611.03780 Social and Information Networks +1611.03781 K-Theory and Homology +1611.03782 Risk Management +1611.03784 Dynamical Systems +1611.03785 Mesoscale and Nanoscale Physics +1611.03786 Computers and Society +1611.03787 Applications +1611.03790 +1611.03791 Functional Analysis +1611.03794 +1611.03795 Optics +1611.03796 Information Theory +1611.03801 Mesoscale and Nanoscale Physics +1611.03802 Lattice +1611.03804 Number Theory +1611.03806 History and Overview +1611.03807 +1611.03810 Accelerator Physics +1611.03811 Cryptography and Security +1611.03812 +1611.03814 Cryptography and Security +1611.03815 Phenomenology +1611.03818 Other Quantitative Biology +1611.03820 Theory +1611.03822 Phenomenology +1611.03823 Combinatorics +1611.03825 Experiment +1611.03826 +1611.03827 Phenomenology +1611.03829 Astrophysics of Galaxies +1611.03830 Soft Condensed Matter +1611.03831 Theory +1611.03832 Methodology +1611.03833 +1611.03834 Fluid Dynamics +1611.03835 Methodology +1611.03836 Representation Theory +1611.03839 Logic +1611.03841 Computer Science and Game Theory +1611.03842 Mesoscale and Nanoscale Physics +1611.03843 Theory +1611.03844 Experiment +1611.03845 Geometric Topology +1611.03853 +math/0605089 Probability +0705.0491 Analysis of PDEs +0803.4377 +0804.4819 Data Structures and Algorithms +0806.0778 Analysis of PDEs +0806.2779 Combinatorics +0807.2280 Analysis of PDEs +0902.4366 Number Theory +1007.1875 +1009.2735 +1011.6256 Statistics Theory +1101.1112 Rings and Algebras +1106.1445 +1203.3609 Algebraic Geometry +1205.5172 Complex Variables +1206.2865 Algebraic Geometry +1206.5366 Analysis of PDEs +1207.0330 Functional Analysis +1207.5188 Dynamical Systems +1302.6930 Algebraic Geometry +1304.0634 Algebraic Geometry +1305.1291 General Physics +1306.1720 Probability +1307.2652 Functional Analysis +1307.6428 Analysis of PDEs +1309.0911 Methodology +1309.1244 Classical Analysis and ODEs +1309.3746 +1310.7843 Rings and Algebras +1312.6411 Algebraic Geometry +1401.4206 Dynamical Systems +1402.2930 Algebraic Geometry +1402.3606 Computer Science and Game Theory +1402.6605 Analysis of PDEs +1403.0505 Optimization and Control +1404.0397 Classical Analysis and ODEs +1404.0641 Earth and Planetary Astrophysics +1404.2411 Probability +1405.1174 +1405.1784 Analysis of PDEs +1406.5743 Classical Analysis and ODEs +1407.4145 Spectral Theory +1409.1889 Systems and Control +1409.3231 +1409.4204 Algebraic Geometry +1409.5302 Tissues and Organs +1409.5873 Geometric Topology +1409.6506 Algebraic Geometry +1410.2878 Soft Condensed Matter +1410.6458 Algebraic Topology +1411.2217 Functional Analysis +1411.4271 Information Theory +1411.6411 +1412.0182 Optics +1412.0602 Analysis of PDEs +1412.0722 Geophysics +1412.1895 Theory +1412.3496 +1412.5125 +1412.5666 Combinatorics +1501.01407 +1501.02356 Classical Analysis and ODEs +1501.02592 Neural and Evolutionary Computing +1501.03394 Classical Analysis and ODEs +1501.04194 Complex Variables +1501.05023 Dynamical Systems +1501.06925 Commutative Algebra +1502.01739 Disordered Systems and Neural Networks +1502.05045 Cosmology and Nongalactic Astrophysics +1502.05289 Differential Geometry +1503.00766 Classical Analysis and ODEs +1503.06140 Theory +1503.07784 Mesoscale and Nanoscale Physics +1504.00580 +1504.02199 Strongly Correlated Electrons +1504.04623 Cosmology and Nongalactic Astrophysics +1504.06106 Classical Analysis and ODEs +1504.07165 Combinatorics +1504.07599 Numerical Analysis +1504.07780 Mesoscale and Nanoscale Physics +1505.01553 Dynamical Systems +1505.02510 Information Theory +1505.02583 Theory +1505.03033 Spectral Theory +1505.03380 Mesoscale and Nanoscale Physics +1505.03962 Combinatorics +1505.05259 Networking and Internet Architecture +1505.05604 Chemical Physics +1505.05830 General Physics +1506.00362 Algebraic Geometry +1506.01250 Analysis of PDEs +1506.01355 Information Theory +1506.03116 Phenomenology +1506.04632 Atomic Physics +1506.05966 Geometric Topology +1506.05998 Algebraic Topology +1506.08691 Computational Engineering, Finance, and Science +1506.09173 Experiment +1507.00368 Neurons and Cognition +1507.00433 Methodology +1507.01019 Cosmology and Nongalactic Astrophysics +1507.03299 Analysis of PDEs +1507.03898 Mesoscale and Nanoscale Physics +1507.05979 +1507.06945 Probability +1507.06963 Optimization and Control +1507.07425 Fluid Dynamics +1507.07869 Phenomenology +1507.07970 History and Overview +1507.08896 +1508.00315 Optimization and Control +1508.00464 Probability +1508.00472 Quantum Gases +1508.00588 Superconductivity +1508.01548 Logic +1508.01732 +1508.03007 Algebraic Geometry +1508.03417 Differential Geometry +1508.05605 Materials Science +1508.06187 Number Theory +1508.06734 +1508.06838 Statistical Mechanics +1509.00227 Atomic Physics +1509.01543 Analysis of PDEs +1509.03260 Classical Analysis and ODEs +1509.03274 Algebraic Geometry +1509.03758 Combinatorics +1509.05228 Algebraic Geometry +1509.05537 +1509.05928 Analysis of PDEs +1510.02334 Quantum Gases +1510.05656 Astrophysics of Galaxies +1510.05821 Experiment +1510.05918 Populations and Evolution +1510.06039 Phenomenology +1510.08181 Numerical Analysis +1510.08678 Statistical Mechanics +1510.08693 Phenomenology +1511.01271 Soft Condensed Matter +1511.01829 Phenomenology +1511.03522 Mesoscale and Nanoscale Physics +1511.04323 Quantum Gases +1511.05980 Experiment +1511.06621 +1511.07958 Mesoscale and Nanoscale Physics +1511.08484 Complex Variables +1511.08711 Analysis of PDEs +1512.01739 Algebraic Geometry +1512.02505 Data Structures and Algorithms +1512.02814 Numerical Analysis +1512.03401 Optimization and Control +1512.04594 Statistics Theory +1512.05401 Phenomenology +1512.06020 Disordered Systems and Neural Networks +1512.07458 Theory +1512.07508 Optics +1512.08530 Theory +1512.08568 Soft Condensed Matter +1512.09139 +1601.00372 Computation and Language +1601.02180 Theory +1601.02652 Soft Condensed Matter +1601.03128 Computer Vision and Pattern Recognition +1601.04588 Molecular Networks +1601.04630 Mesoscale and Nanoscale Physics +1601.05159 Group Theory +1601.06939 Data Structures and Algorithms +1601.07031 Theory +1601.07462 Phenomenology +1602.00320 Mesoscale and Nanoscale Physics +1602.01768 Numerical Analysis +1602.03524 Astrophysics of Galaxies +1602.04538 Solar and Stellar Astrophysics +1602.06004 +1602.08467 General Finance +1603.00307 Software Engineering +1603.00370 Computer Vision and Pattern Recognition +1603.02317 Systems and Control +1603.02385 Metric Geometry +1603.03083 Optimization and Control +1603.03259 Combinatorics +1603.03457 +1603.04330 Data Structures and Algorithms +1603.04380 Data Structures and Algorithms +1603.04722 Astrophysics of Galaxies +1603.05043 General Mathematics +1603.05256 Phenomenology +1603.05324 Statistics Theory +1603.05326 Optics +1603.05351 Mesoscale and Nanoscale Physics +1603.05611 Quantum Gases +1603.06345 Materials Science +1603.06354 Phenomenology +1603.06404 +1603.06475 Fluid Dynamics +1603.06545 Differential Geometry +1603.06572 Instrumentation and Detectors +1603.06737 Probability +1603.06738 Analysis of PDEs +1603.06877 Information Theory +1603.06940 Optics +1603.06941 Subcellular Processes +1603.06955 Cosmology and Nongalactic Astrophysics +1603.06957 Geometric Topology +1603.06960 Optics +1603.06964 Combinatorics +1603.06967 Combinatorics +1603.06972 Computational Geometry +1603.06976 Combinatorics +1603.06977 Superconductivity +1603.06979 Operator Algebras +1603.06985 +1603.06988 Methodology +1603.06990 Instrumentation and Detectors +1603.06991 Algebraic Geometry +1603.06992 +1603.06994 Differential Geometry +1603.06998 Numerical Analysis +1603.06999 Numerical Analysis +1603.07002 Functional Analysis +1603.07005 Differential Geometry +1603.07006 Combinatorics +1603.07007 Information Theory +1603.07010 Information Theory +1603.07011 Graphics +1603.07014 Mesoscale and Nanoscale Physics +1603.07022 Computer Vision and Pattern Recognition +1603.07023 Rings and Algebras +1603.07026 Symplectic Geometry +1603.07028 Materials Science +1603.07031 Information Theory +1603.07033 Classical Analysis and ODEs +1603.07035 Number Theory +1603.07036 +1603.07039 Differential Geometry +1603.07041 Methodology +1603.07044 Computation and Language +1603.07046 Computational Complexity +1603.07053 Phenomenology +1603.07056 Combinatorics +1603.07059 Operator Algebras +1603.07061 Differential Geometry +1603.07063 Computer Vision and Pattern Recognition +1603.07064 Distributed, Parallel, and Cluster Computing +1603.07066 Methodology +1603.07070 Optimization and Control +1603.07072 Information Theory +1603.07073 Functional Analysis +1603.07077 Computational Geometry +1603.07079 Number Theory +1603.07080 Networking and Internet Architecture +1603.07081 +1603.07082 Quantitative Methods +1603.07085 Phenomenology +1603.07086 Cryptography and Security +1603.07089 Analysis of PDEs +1603.07094 Machine Learning +1603.07098 Theory +1603.07099 Numerical Analysis +1603.07102 Statistical Mechanics +1603.07104 Analysis of PDEs +1603.07105 Solar and Stellar Astrophysics +1603.07106 Soft Condensed Matter +1603.07112 Earth and Planetary Astrophysics +1603.07113 Complex Variables +1603.07114 Soft Condensed Matter +1603.07116 Complex Variables +1603.07123 Computer Vision and Pattern Recognition +1603.07124 Fluid Dynamics +1603.07125 Quantum Algebra +1603.07126 Soft Condensed Matter +1603.07127 Functional Analysis +1603.07131 Dynamical Systems +1603.07132 Soft Condensed Matter +1603.07133 Optimization and Control +1603.07135 Information Theory +1603.07139 Algebraic Geometry +1603.07141 Computer Vision and Pattern Recognition +1603.07144 Soft Condensed Matter +1603.07147 Soft Condensed Matter +1603.07149 Soft Condensed Matter +1603.07150 Digital Libraries +1603.07152 Soft Condensed Matter +1603.07154 Combinatorics +1603.07156 General Physics +1603.07158 Analysis of PDEs +1603.07160 +1603.07164 Dynamical Systems +1603.07168 Discrete Mathematics +1603.07169 Instrumentation and Detectors +1603.07170 Classical Analysis and ODEs +1603.07173 Sound +1603.07175 Analysis of PDEs +1603.07178 Chemical Physics +1603.07182 Biological Physics +1603.07185 Computation and Language +1603.07186 Optics +1603.07187 Group Theory +1603.07190 Phenomenology +1603.07191 Astrophysics of Galaxies +1603.07192 Analysis of PDEs +1603.07193 Quantum Algebra +1603.07194 Optics +1603.07195 Optimization and Control +1603.07197 Geometric Topology +1603.07198 Instrumentation and Detectors +1603.07201 Probability +1603.07211 Neurons and Cognition +1603.07213 Analysis of PDEs +1603.07215 Discrete Mathematics +1603.07216 Complex Variables +1603.07217 Formal Languages and Automata Theory +1603.07218 Logic in Computer Science +1603.07222 Probability +1603.07225 Computational Finance +1603.07226 Representation Theory +1603.07230 Classical Analysis and ODEs +1603.07234 Computer Vision and Pattern Recognition +1603.07237 Statistics Theory +1603.07239 Numerical Analysis +1603.07241 Analysis of PDEs +1603.07242 Chemical Physics +1603.07243 Discrete Mathematics +1603.07245 High Energy Astrophysical Phenomena +1603.07246 Phenomenology +1603.07249 Neural and Evolutionary Computing +1603.07251 Probability +1603.07254 Computer Vision and Pattern Recognition +1603.07261 Classical Analysis and ODEs +1603.07262 +1603.07269 Computational Geometry +1603.07275 Chemical Physics +1603.07276 Systems and Control +1603.07277 Methodology +1603.07279 Applications +1603.07280 Analysis of PDEs +1603.07282 Computational Geometry +1603.07285 Machine Learning +1603.07292 Learning +1603.07298 Complex Variables +1603.07300 Earth and Planetary Astrophysics +1603.07304 Robotics +1603.07310 Functional Analysis +1603.07311 Theory +1603.07313 Digital Libraries +1603.07315 Strongly Correlated Electrons +1603.07316 Information Theory +1603.07319 Computer Science and Game Theory +1603.07320 Probability +math/0701148 Analysis of PDEs +physics/0607056 General Physics +physics/0611099 Classical Physics +0704.0345 Physics and Society +0704.0449 Theory +0704.1675 Artificial Intelligence +0704.3155 Chaotic Dynamics +0704.3591 Information Theory +0705.0011 Fluid Dynamics +0705.0425 Networking and Internet Architecture +0705.0863 Statistical Mechanics +0705.1254 +0705.1281 Atmospheric and Oceanic Physics +0705.1388 +0705.1951 Statistical Mechanics +0705.2139 +0705.3197 Disordered Systems and Neural Networks +0705.3198 Disordered Systems and Neural Networks +0705.3548 Classical Physics +0706.0230 Theory +0706.0687 Other Condensed Matter +0706.1854 Other Condensed Matter +0706.3789 Pattern Formation and Solitons +0706.4057 +0707.0433 +0707.0733 Phenomenology +0707.1831 Algebraic Geometry +0707.2014 Information Theory +0707.2189 Rings and Algebras +0707.2246 Differential Geometry +0707.2631 Phenomenology +0707.3899 Phenomenology +0707.4576 Analysis of PDEs +0708.0654 Data Analysis, Statistics and Probability +0708.0890 +0708.0895 Mesoscale and Nanoscale Physics +0708.0900 +0708.1207 Statistical Mechanics +0708.1593 Data Analysis, Statistics and Probability +0708.1833 Materials Science +0709.1718 Statistical Mechanics +0709.2727 Theory +0709.4320 +0710.0317 Computational Physics +0710.0602 +0710.1068 Data Analysis, Statistics and Probability +0710.3609 Soft Condensed Matter +0710.3829 Other Condensed Matter +0710.5573 Exactly Solvable and Integrable Systems +0711.0724 +0711.0784 Computer Vision and Pattern Recognition +0711.2314 Statistical Mechanics +0711.2518 Statistical Mechanics +0711.3437 Differential Geometry +0711.3625 +0712.0220 Probability +0712.0989 Dynamical Systems +0712.1380 Data Analysis, Statistics and Probability +0712.1564 Strongly Correlated Electrons +0712.1729 Superconductivity +0712.2870 Information Theory +0712.4290 Methodology +0801.0085 Operator Algebras +0801.1256 Phenomenology +0801.2421 Logic +0801.3127 Superconductivity +0801.4113 Metric Geometry +0801.4572 +0802.0625 Chemical Physics +0802.0834 Cryptography and Security +0802.1265 Soft Condensed Matter +0802.1685 Data Structures and Algorithms +0802.1852 Fluid Dynamics +0802.3851 Information Theory +0802.4352 Analysis of PDEs +0803.0047 History and Philosophy of Physics +0803.0244 Complex Variables +0803.4356 Other Condensed Matter +0804.0379 Quantitative Methods +0804.1086 Fluid Dynamics +0804.1308 Analysis of PDEs +0804.1968 +0804.2960 Information Theory +0804.4726 Probability +0805.0012 Information Theory +0805.0229 History and Philosophy of Physics +0805.0498 Logic in Computer Science +0805.1281 Superconductivity +0805.3022 Theory +0805.3242 +0805.3431 Number Theory +0806.1203 Strongly Correlated Electrons +0806.2215 Functional Analysis +0806.2826 Materials Science +0806.3423 Materials Science +0806.4108 Analysis of PDEs +0807.0671 Soft Condensed Matter +0807.1870 Statistical Mechanics +0807.4268 Networking and Internet Architecture +0807.4729 Populations and Evolution +0808.0012 Data Analysis, Statistics and Probability +0808.0939 Superconductivity +0808.1260 Classical Physics +0808.1417 Information Theory +0808.1664 Representation Theory +0808.1665 Soft Condensed Matter +0808.2562 Information Theory +0808.2723 Spectral Theory +0808.2861 Atmospheric and Oceanic Physics +0808.3559 +0809.2835 Information Theory +0809.4004 Popular Physics +0809.4244 Applications +0810.0509 Soft Condensed Matter +0810.1179 +0810.2041 +0810.4705 Logic +0810.5400 +0811.1344 Superconductivity +0811.1947 Software Engineering +0812.1455 +0901.0401 Statistical Finance +0901.1391 Rings and Algebras +0901.1449 Classical Physics +0901.2000 Data Analysis, Statistics and Probability +0901.2326 Mesoscale and Nanoscale Physics +0901.2753 Genomics +0901.3287 Mesoscale and Nanoscale Physics +0901.3812 Trading and Market Microstructure +0902.0784 +0902.0897 Statistical Mechanics +0902.3788 Physics and Society +0902.3947 Phenomenology +0903.0887 Algebraic Geometry +0903.2970 Rings and Algebras +0903.4829 Soft Condensed Matter +0903.4884 High Energy Astrophysical Phenomena +0903.5012 Materials Science +0904.0633 Instrumentation and Methods for Astrophysics +0904.1043 Mesoscale and Nanoscale Physics +0904.2058 Computational Complexity +0904.4692 High Energy Astrophysical Phenomena +0905.0213 Theory +0905.1458 Neurons and Cognition +0905.1636 Biological Physics +0905.1857 Strongly Correlated Electrons +0906.1569 Strongly Correlated Electrons +0906.1640 Chemical Physics +0906.1684 Statistical Mechanics +0906.2118 Classical Physics +0906.2156 Cosmology and Nongalactic Astrophysics +0906.3424 Distributed, Parallel, and Cluster Computing +0906.4614 Fluid Dynamics +0906.5062 Data Structures and Algorithms +0907.4250 Quantum Gases +0907.5490 Instrumentation and Detectors +0908.0582 Number Theory +0908.0609 Mesoscale and Nanoscale Physics +0908.0895 Mesoscale and Nanoscale Physics +0908.1742 Theory +0908.3028 Materials Science +0908.3889 +0909.0990 +0909.2058 Databases +0909.2292 Information Theory +0909.3110 Astrophysics of Galaxies +0909.3214 +0909.4485 Populations and Evolution +0909.4569 Computer Science and Game Theory +0910.0087 Statistical Finance +0910.0239 Information Theory +0910.0262 Lattice +0910.0382 Disordered Systems and Neural Networks +0910.0669 Strongly Correlated Electrons +0910.0789 Quantitative Methods +0910.0797 Geophysics +0910.0826 Physics and Society +0910.0847 Instrumentation and Detectors +0910.0949 Machine Learning +0910.1862 Computational Complexity +0910.2150 Optics +0910.2162 Soft Condensed Matter +0910.2422 Phenomenology +0910.2434 Fluid Dynamics +0910.2489 Mesoscale and Nanoscale Physics +0910.2745 Probability +0910.2797 Adaptation and Self-Organizing Systems +0910.2903 Biomolecules +0910.3011 +0910.3043 Solar and Stellar Astrophysics +0910.3046 Mesoscale and Nanoscale Physics +0910.3127 Discrete Mathematics +0910.3736 Hardware Architecture +0910.3916 Probability +0910.4072 Probability +0910.4642 General Physics +0910.5041 Astrophysics of Galaxies +0910.5513 Strongly Correlated Electrons +0910.5567 Solar and Stellar Astrophysics +0910.5893 Statistical Mechanics +0910.5947 Computational Geometry +0911.0457 Chaotic Dynamics +0911.0575 Phenomenology +0911.0626 Discrete Mathematics +0911.0837 Medical Physics +0911.1081 General Physics +0911.1599 Other Condensed Matter +0911.1765 Data Structures and Algorithms +0911.2331 Accelerator Physics +0911.2336 Accelerator Physics +0911.2362 Chaotic Dynamics +0911.3199 +0911.3258 Materials Science +0911.3375 General Physics +0911.3746 +0911.4212 Differential Geometry +0911.4496 Superconductivity +0911.4514 General Physics +0911.4940 Data Structures and Algorithms +0911.5042 Medical Physics +0911.5048 Statistical Finance +0911.5482 Machine Learning +0912.0483 Mesoscale and Nanoscale Physics +0912.1178 Numerical Analysis +0912.1328 Soft Condensed Matter +0912.1682 Mesoscale and Nanoscale Physics +0912.1905 Distributed, Parallel, and Cluster Computing +0912.2199 Cryptography and Security +0912.2333 General Physics +0912.2373 Soft Condensed Matter +0912.2540 Geophysics +0912.3539 High Energy Astrophysical Phenomena +0912.3644 Optics +0912.3953 Digital Libraries +0912.4109 +0912.4182 Functional Analysis +0912.4284 Soft Condensed Matter +0912.4382 Instrumentation and Detectors +0912.4441 Instrumentation and Methods for Astrophysics +0912.4601 Materials Science +0912.4866 Biological Physics +0912.5160 Phenomenology +0912.5241 Databases +0912.5492 Differential Geometry +1001.0097 General Physics +1001.0208 Computational Complexity +1001.0284 Biological Physics +1001.0681 Statistical Mechanics +1001.0721 Geometric Topology +1001.0734 Solar and Stellar Astrophysics +1001.0854 Astrophysics of Galaxies +1001.1096 Astrophysics of Galaxies +1001.1140 +1001.1257 Artificial Intelligence +1001.1260 Materials Science +1001.1365 Experiment +1001.1465 Mesoscale and Nanoscale Physics +1001.1637 Disordered Systems and Neural Networks +1001.1695 Mesoscale and Nanoscale Physics +1001.1863 Theory +1001.2331 Information Theory +1001.2394 Soft Condensed Matter +1001.2430 Solar and Stellar Astrophysics +1001.2464 Information Theory +1001.2481 Fluid Dynamics +1001.2563 Phenomenology +1001.2753 Machine Learning +1001.2928 +1001.3241 Experiment +1001.3350 Optics +1001.3460 Information Theory +1001.3473 Software Engineering +1001.3529 Biological Physics +1001.3533 Networking and Internet Architecture +1001.3539 Software Engineering +1001.3552 Software Engineering +1001.3572 Materials Science +1001.3576 Geophysics +1001.3613 Cosmology and Nongalactic Astrophysics +1001.3716 Hardware Architecture +1001.3718 Distributed, Parallel, and Cluster Computing +1001.3725 Software Engineering +1001.3727 Operating Systems +1001.3734 Software Engineering +1001.3735 Computer Vision and Pattern Recognition +1001.3740 Networking and Internet Architecture +1001.3741 Neural and Evolutionary Computing +1001.3744 Multimedia +1001.3748 Computers and Society +1001.3756 Performance +1001.3757 History and Philosophy of Physics +1001.3771 Other Computer Science +1001.3774 Multimedia +1001.3777 Networking and Internet Architecture +1001.3781 Hardware Architecture +1001.3918 Software Engineering +1001.3920 Neural and Evolutionary Computing +1001.3928 Cryptography and Security +1001.3932 Computers and Society +1001.3962 Chemical Physics +1001.4096 Mesoscale and Nanoscale Physics +1001.4129 Software Engineering +1001.4135 Multimedia +1001.4258 Geophysics +1001.4459 Computers and Society +1001.4671 Disordered Systems and Neural Networks +1001.4686 Instrumentation and Methods for Astrophysics +1001.5001 +1001.5334 Networking and Internet Architecture +1001.5339 Networking and Internet Architecture +1001.5348 Neural and Evolutionary Computing +1001.5352 Computer Vision and Pattern Recognition +1001.5358 Software Engineering +1001.5359 Computer Vision and Pattern Recognition +1002.0048 Other Quantitative Biology +1002.0051 Biomolecules +1002.0151 Physics and Society +1002.0199 Chemical Physics +1002.0902 +1002.1117 Solar and Stellar Astrophysics +1002.1328 Accelerator Physics +1002.2027 Cosmology and Nongalactic Astrophysics +1002.2243 Applications +1002.2281 General Finance +1002.2282 General Finance +1002.2306 Superconductivity +1002.2369 Solar and Stellar Astrophysics +1002.2686 Software Engineering +1002.2687 Other Computer Science +1002.2700 Instrumentation and Detectors +1002.2829 Software Engineering +1002.3008 Software Engineering +1002.3011 Cryptography and Security +1002.3015 Software Engineering +1002.3031 Software Engineering +1002.3074 Digital Libraries +1002.3190 Cryptography and Security +1002.3557 Physics and Society +1002.3584 Superconductivity +1002.4334 Logic in Computer Science +1002.4670 Classical Physics +1002.4738 Distributed, Parallel, and Cluster Computing +1003.0140 Mesoscale and Nanoscale Physics +1003.0369 Materials Science +1003.0445 Information Theory +1003.0756 +1003.0821 Atomic Physics +1003.0836 Neurons and Cognition +1003.1090 +1007.4942 +1102.4070 Mesoscale and Nanoscale Physics +1203.5833 +1207.6499 +1303.1128 Differential Geometry +1307.7641 Number Theory +1311.0100 Information Theory +1401.7660 Differential Geometry +1402.5326 Information Theory +1403.1436 Differential Geometry +1403.4134 Optimization and Control +1404.6194 Differential Geometry +1404.7036 +1404.7445 +1405.1619 Operator Algebras +1405.1890 Algebraic Geometry +1405.7408 Disordered Systems and Neural Networks +1406.5063 Theory +1408.4466 +1410.1934 Numerical Analysis +1410.4265 Operator Algebras +1410.6339 Information Theory +1411.6302 Group Theory +1412.0564 Differential Geometry +1412.1943 Optics +1502.02926 Mathematical Finance +1502.04139 Classical Analysis and ODEs +1504.01917 +1504.02534 Differential Geometry +1504.03732 Algebraic Geometry +1504.04825 Operator Algebras +1505.02150 Number Theory +1505.04458 Combinatorics +1505.06770 Learning +1505.08035 Materials Science +1506.02895 Probability +1507.03029 Algebraic Geometry +1507.03444 Theory +1507.08452 Computation and Language +1507.08816 Differential Geometry +1508.00435 Differential Geometry +1508.01698 Phenomenology +1508.02766 Computation +1508.03564 Mesoscale and Nanoscale Physics +1508.05494 Optimization and Control +1509.02117 Combinatorics +1509.03205 Sound +1509.08521 +1509.09271 +1510.01672 Functional Analysis +1510.03384 Algebraic Geometry +1510.03896 Operator Algebras +1510.05078 Machine Learning +1511.03069 Combinatorics +1511.04019 Differential Geometry +1511.04516 +1511.06350 Learning +1511.06352 Neurons and Cognition +1512.00531 Computation and Language +1512.04015 Plasma Physics +1512.06868 Commutative Algebra +1601.04205 Chemical Physics +1601.06885 Information Theory +1602.01521 Logic +1602.02780 Cosmology and Nongalactic Astrophysics +1602.03291 Artificial Intelligence +1602.03349 Analysis of PDEs +1602.09066 +1603.00882 Instrumentation and Methods for Astrophysics +1603.01092 Theory +1603.04475 Numerical Analysis +1603.05261 Neurons and Cognition +1603.05786 Number Theory +1603.07989 Strongly Correlated Electrons +1603.09142 Probability +1603.09359 Strongly Correlated Electrons +1603.09663 Phenomenology +1604.00986 Classical Physics +1604.01024 Cosmology and Nongalactic Astrophysics +1604.01201 Numerical Analysis +1604.02426 Computer Vision and Pattern Recognition +1604.02809 Cosmology and Nongalactic Astrophysics +1604.03383 Materials Science +1604.05280 Learning +1604.06444 Phenomenology +1604.07155 Superconductivity +1604.07233 Astrophysics of Galaxies +1604.08450 Quantum Algebra +1605.00882 Quantum Gases +1605.00902 +1605.01027 Quantum Gases +1605.01581 Theory +1605.04640 High Energy Astrophysical Phenomena +1605.05515 Mesoscale and Nanoscale Physics +1605.06148 Instrumentation and Methods for Astrophysics +1605.06371 Exactly Solvable and Integrable Systems +1605.06830 Phenomenology +1605.07020 Chemical Physics +1605.07081 Computer Vision and Pattern Recognition +1605.07627 Strongly Correlated Electrons +1605.08891 +1605.09604 Quantum Gases +1605.09640 Atomic Physics +1606.00223 Soft Condensed Matter +1606.01135 Mesoscale and Nanoscale Physics +1606.03753 Computational Geometry +1606.03833 Experiment +1606.04230 Optimization and Control +1606.04671 Learning +1606.05654 Quantum Gases +1606.05847 Phenomenology +1606.05879 +1606.08644 Applications +1606.08992 Astrophysics of Galaxies +1606.09436 Mesoscale and Nanoscale Physics +1607.00321 Multimedia +1607.00332 Plasma Physics +1607.00373 Theory +1607.00960 Soft Condensed Matter +1607.01562 High Energy Astrophysical Phenomena +1607.03591 Probability +1607.05370 Theory +1607.05650 Computation and Language +1607.07832 Numerical Analysis +1607.08628 Astrophysics of Galaxies +1608.00908 Cosmology and Nongalactic Astrophysics +1608.01425 Commutative Algebra +1608.04679 Information Theory +1608.06307 Materials Science +1608.06639 Strongly Correlated Electrons +1608.07243 +1608.08005 Solar and Stellar Astrophysics +1608.08256 Theory +1608.08546 Combinatorics +1608.08551 Algebraic Topology +1609.00260 +1609.00408 Cryptography and Security +1609.00496 Computer Vision and Pattern Recognition +1609.00723 Theory +1609.00836 Computer Vision and Pattern Recognition +1609.01050 Earth and Planetary Astrophysics +1609.01118 Methodology +1609.01397 +1609.01398 +1609.01438 Strongly Correlated Electrons +1609.01496 +1609.01677 Combinatorics +1609.01705 Combinatorics +1609.01710 Computer Vision and Pattern Recognition +1609.01711 +1609.01712 +1609.01717 Astrophysics of Galaxies +1609.01720 Astrophysics of Galaxies +1609.01722 High Energy Astrophysical Phenomena +1609.01725 Theory +1609.01733 +1609.01736 Theory +1609.01743 Computer Vision and Pattern Recognition +1609.01744 Algebraic Geometry +1609.01745 +1609.01746 +1609.01747 +1609.01748 +1609.01749 Analysis of PDEs +1609.01750 Combinatorics +1609.01753 +1609.01755 Data Structures and Algorithms +1609.01756 +1609.01760 Optics +1609.01762 Phenomenology +1609.01771 Representation Theory +1609.01773 Representation Theory +1609.01774 Methodology +1609.01778 Social and Information Networks +1609.01780 Analysis of PDEs +1609.01782 Combinatorics +1609.01783 Representation Theory +1609.01784 +1609.01788 Genomics +1609.01789 Logic in Computer Science +1609.01790 Neurons and Cognition +1609.01793 +1609.01795 Information Theory +1609.01798 Pattern Formation and Solitons +1609.01799 Statistics Theory +1609.01804 Analysis of PDEs +1609.01805 Computer Vision and Pattern Recognition +1609.01807 Probability +1609.01808 Multiagent Systems +1609.01809 Information Theory +1609.01810 Computer Vision and Pattern Recognition +1609.01812 Physics and Society +1609.01813 Medical Physics +1609.01817 Number Theory +1609.01819 Learning +1609.01821 Cryptography and Security +1609.01822 Computers and Society +1609.01823 Computers and Society +1609.01825 Analysis of PDEs +1609.01828 Computer Vision and Pattern Recognition +1609.01830 Robotics +1609.01832 Theory +1609.01833 +1609.01834 Differential Geometry +1609.01835 +1609.01836 Adaptation and Self-Organizing Systems +1609.01837 Strongly Correlated Electrons +1609.01839 Computer Vision and Pattern Recognition +1609.01840 Learning +1609.01841 High Energy Astrophysical Phenomena +1609.01843 +1609.01844 Solar and Stellar Astrophysics +1609.01846 Phenomenology +1609.01848 Phenomenology +1609.01852 Complex Variables +1609.01853 Materials Science +1609.01854 +1609.01855 Fluid Dynamics +1609.01856 Information Theory +1609.01857 Strongly Correlated Electrons +1609.01859 Computer Vision and Pattern Recognition +1609.01860 Networking and Internet Architecture +1609.01862 High Energy Astrophysical Phenomena +1609.01867 Biological Physics +1609.01871 Analysis of PDEs +1609.01872 Machine Learning +1609.01877 Algebraic Geometry +1609.01880 Rings and Algebras +1609.01881 Phenomenology +1609.01883 Networking and Internet Architecture +1609.01884 Combinatorics +1609.01886 Combinatorics +1609.01888 Strongly Correlated Electrons +1609.01891 Geometric Topology +1609.01893 Databases +1609.01897 Optimization and Control +1609.01898 Combinatorics +1609.01900 General Finance +1609.01903 Mesoscale and Nanoscale Physics +1609.01905 Quantum Algebra +1609.01906 Strongly Correlated Electrons +1609.01907 Probability +1609.01910 Methodology +1609.01911 Analysis of PDEs +1609.01913 K-Theory and Homology +1609.01914 Representation Theory +1609.01916 +1609.01921 Computer Science and Game Theory +1609.01922 Strongly Correlated Electrons +1609.01923 Theory +1609.01926 Neural and Evolutionary Computing +1609.01927 Functional Analysis +1609.01928 Number Theory +1609.01930 Rings and Algebras +1609.01932 Computer Vision and Pattern Recognition +1609.01933 Computation and Language +1609.01934 Combinatorics +1609.01935 Robotics +1609.01939 Metric Geometry +1609.01940 Classical Analysis and ODEs +1609.01942 Solar and Stellar Astrophysics +1609.01950 Number Theory +1609.01953 Analysis of PDEs +1609.01954 Quantum Gases +1609.01956 Computational Physics +1609.01958 Computer Vision and Pattern Recognition +1609.01959 Mesoscale and Nanoscale Physics +1609.01962 Computation and Language +1609.01965 +1609.01966 History and Philosophy of Physics +1609.01967 Distributed, Parallel, and Cluster Computing +1609.01969 Group Theory +1609.01970 Phenomenology +1609.01972 +1609.01973 Strongly Correlated Electrons +1609.01975 Disordered Systems and Neural Networks +1609.01977 Learning +1609.01978 Differential Geometry +1609.01980 Soft Condensed Matter +1609.01982 Neural and Evolutionary Computing +1609.01983 Plasma Physics +1609.01984 Robotics +1609.01985 Programming Languages +1609.01986 Computers and Society +1609.01987 Computational Engineering, Finance, and Science +1609.01988 Theory +1609.01989 Materials Science +1609.01990 Spectral Theory +1609.01996 Computers and Society +1609.01997 +1609.01999 +1609.02000 Adaptation and Self-Organizing Systems +1609.02002 Theory +1609.02003 General Physics +1609.02004 Digital Libraries +1609.02005 Information Theory +1609.02007 +1609.02008 Mesoscale and Nanoscale Physics +1609.02009 Artificial Intelligence +1609.02010 Artificial Intelligence +1609.02012 Instrumentation and Detectors +1609.02014 Instrumentation and Detectors +1609.02016 Human-Computer Interaction +1609.02018 Lattice +1609.02021 Experiment +1609.02022 Classical Analysis and ODEs +1609.02024 Number Theory +1609.02027 Superconductivity +1609.02028 General Physics +1609.02030 Analysis of PDEs +1609.02036 Computer Vision and Pattern Recognition +1609.02040 +1609.02041 Instrumentation and Detectors +1609.02043 Artificial Intelligence +1609.02046 Combinatorics +1609.02047 Differential Geometry +1609.02048 Strongly Correlated Electrons +1609.02049 Quantitative Methods +1609.02050 Metric Geometry +1609.02052 Spectral Theory +1609.02053 Neural and Evolutionary Computing +1609.02058 Complex Variables +1609.02059 Biological Physics +1609.02064 Soft Condensed Matter +1609.02066 Instrumentation and Detectors +1609.02067 Hardware Architecture +1609.02069 Experiment +1609.02071 Information Theory +1609.02072 Graphics +1609.02074 +1609.02075 Computation and Language +1609.02078 Mesoscale and Nanoscale Physics +1609.02081 Neurons and Cognition +1609.02082 Learning +1609.02083 Commutative Algebra +1609.02089 Theory +1609.02090 Number Theory +1609.02093 K-Theory and Homology +1609.02094 Information Theory +1609.02098 Differential Geometry +1609.02102 Statistical Mechanics +1609.02103 Algebraic Geometry +1609.02105 Differential Geometry +1609.02108 Mathematical Finance +1609.02109 Information Theory +1609.02110 +1609.02113 Algebraic Geometry +1609.02114 Neurons and Cognition +1609.02118 Algebraic Topology +1609.02120 Probability +1609.02123 Computation +1609.02125 Materials Science +1609.02127 Instrumentation and Detectors +1609.02129 Statistical Mechanics +1609.02132 Computer Vision and Pattern Recognition +1609.02133 Biological Physics +1609.02135 Computer Vision and Pattern Recognition +1609.02136 +nlin/0105028 Chaotic Dynamics +nlin/0106028 Adaptation and Self-Organizing Systems +nlin/0108037 Exactly Solvable and Integrable Systems +nlin/0108041 Exactly Solvable and Integrable Systems +nlin/0109023 Chaotic Dynamics +nlin/0111052 Pattern Formation and Solitons +nlin/0111061 Chaotic Dynamics +nlin/0112014 Chaotic Dynamics +nlin/0112048 Chaotic Dynamics +nlin/0201023 Exactly Solvable and Integrable Systems +nlin/0202009 Exactly Solvable and Integrable Systems +nlin/0202018 Exactly Solvable and Integrable Systems +nlin/0202035 Exactly Solvable and Integrable Systems +nlin/0203014 Exactly Solvable and Integrable Systems +nlin/0203045 Chaotic Dynamics +nlin/0205061 Exactly Solvable and Integrable Systems +nlin/0207002 Chaotic Dynamics +nlin/0207020 Adaptation and Self-Organizing Systems +nlin/0207037 Exactly Solvable and Integrable Systems +nlin/0208013 Chaotic Dynamics +nlin/0208039 Chaotic Dynamics +nlin/0210035 Chaotic Dynamics +nlin/0210050 Exactly Solvable and Integrable Systems +nlin/0212052 Pattern Formation and Solitons +nlin/0301035 Chaotic Dynamics +nlin/0302037 Chaotic Dynamics +nlin/0302041 Pattern Formation and Solitons +nlin/0302043 Pattern Formation and Solitons +nlin/0302045 Chaotic Dynamics +nlin/0303065 Chaotic Dynamics +nlin/0306028 Chaotic Dynamics +nlin/0307012 Chaotic Dynamics +nlin/0307019 Chaotic Dynamics +nlin/0307028 Cellular Automata and Lattice Gases +nlin/0307044 Exactly Solvable and Integrable Systems +nlin/0308001 Chaotic Dynamics +nlin/0309009 Pattern Formation and Solitons +nlin/0309036 Chaotic Dynamics +nlin/0309073 Exactly Solvable and Integrable Systems +nlin/0310016 Pattern Formation and Solitons +nlin/0311019 Pattern Formation and Solitons +nlin/0311025 Chaotic Dynamics +nlin/0312044 Chaotic Dynamics +nlin/0312056 Adaptation and Self-Organizing Systems +nlin/0401010 Exactly Solvable and Integrable Systems +nlin/0402027 Chaotic Dynamics +nlin/0403032 Adaptation and Self-Organizing Systems +nlin/0404009 Adaptation and Self-Organizing Systems +nlin/0405003 Chaotic Dynamics +nlin/0406028 Pattern Formation and Solitons +nlin/0406045 Exactly Solvable and Integrable Systems +nlin/0408045 Chaotic Dynamics +nlin/0411014 Exactly Solvable and Integrable Systems +nlin/0412002 Pattern Formation and Solitons +nlin/0412019 Exactly Solvable and Integrable Systems +nlin/0412049 Chaotic Dynamics +nlin/0502020 Exactly Solvable and Integrable Systems +nlin/0502024 Pattern Formation and Solitons +nlin/0502042 Chaotic Dynamics +nlin/0503030 Exactly Solvable and Integrable Systems +nlin/0503062 Pattern Formation and Solitons +nlin/0503070 Chaotic Dynamics +nlin/0504011 Adaptation and Self-Organizing Systems +nlin/0504053 Exactly Solvable and Integrable Systems +nlin/0505024 Chaotic Dynamics +nlin/0506060 Chaotic Dynamics +nlin/0507017 Chaotic Dynamics +nlin/0508007 Exactly Solvable and Integrable Systems +nlin/0509007 Adaptation and Self-Organizing Systems +nlin/0509046 Chaotic Dynamics +nlin/0509056 Chaotic Dynamics +nlin/0511018 Adaptation and Self-Organizing Systems +nlin/0511022 Chaotic Dynamics +nlin/0512072 Exactly Solvable and Integrable Systems +nlin/0601033 Chaotic Dynamics +nlin/0602015 Exactly Solvable and Integrable Systems +nlin/0602016 Pattern Formation and Solitons +nlin/0602043 Exactly Solvable and Integrable Systems +nlin/0604053 Exactly Solvable and Integrable Systems +nlin/0604066 Exactly Solvable and Integrable Systems +nlin/0605050 Chaotic Dynamics +nlin/0608028 Adaptation and Self-Organizing Systems +nlin/0611056 Chaotic Dynamics +nucl-ex/0006008 +nucl-ex/0007002 +nucl-ex/0102009 +nucl-ex/0109017 +nucl-ex/0110015 +nucl-ex/0203001 +nucl-ex/0203003 +nucl-ex/0204014 +nucl-ex/0210022 +nucl-ex/0210023 +nucl-ex/0212003 +nucl-ex/0302017 +nucl-ex/0305005 +nucl-ex/0306026 +nucl-ex/0309001 +nucl-ex/0311011 +nucl-ex/0402020 +nucl-ex/0410002 +nucl-ex/0412017 +nucl-ex/0412018 +nucl-ex/0502006 +nucl-ex/0508001 +nucl-ex/0508023 +nucl-ex/0508034 +nucl-ex/0509015 +nucl-ex/0509035 +nucl-ex/0509040 +nucl-ex/0510002 +nucl-ex/0510005 +nucl-ex/0510007 +nucl-ex/0510015 +nucl-ex/0510020 +nucl-ex/0510021 +nucl-ex/0605020 +nucl-ex/9502001 +nucl-ex/9502002 +nucl-ex/9607003 +nucl-ex/9610011 +nucl-ex/9612001 +nucl-ex/9805001 +nucl-ex/9805004 +nucl-ex/9805005 +nucl-ex/9810008 +nucl-ex/9905002 +nucl-th/0001060 +nucl-th/0002019 +nucl-th/0002044 +nucl-th/0002048 +nucl-th/0003020 +nucl-th/0003028 +nucl-th/0003035 +nucl-th/0004012 +nucl-th/0004054 +nucl-th/0005008 +nucl-th/0005023 +nucl-th/0005032 +nucl-th/0005040 +nucl-th/0005049 +nucl-th/0005053 +nucl-th/0005058 +nucl-th/0006041 +nucl-th/0007049 +nucl-th/0008007 +nucl-th/0008044 +nucl-th/0009065 +nucl-th/0009074 +nucl-th/0010092 +nucl-th/0012028 +nucl-th/0012040 +nucl-th/0012068 +nucl-th/0012071 +nucl-th/0012080 +nucl-th/0101019 +nucl-th/0102037 +nucl-th/0103009 +nucl-th/0103084 +nucl-th/0104076 +nucl-th/0105005 +nucl-th/0105066 +nucl-th/0106060 +nucl-th/0107019 +nucl-th/0107024 +nucl-th/0109021 +nucl-th/0109039 +nucl-th/0109076 +nucl-th/0110009 +nucl-th/0110055 +nucl-th/0110062 +nucl-th/0111008 +nucl-th/0111065 +nucl-th/0111073 +nucl-th/0112007 +nucl-th/0112040 +nucl-th/0112046 +nucl-th/0112051 +nucl-th/0201001 +nucl-th/0201048 +nucl-th/0201063 +nucl-th/0202040 +nucl-th/0202057 +nucl-th/0202084 +nucl-th/0203003 +nucl-th/0203014 +nucl-th/0203029 +nucl-th/0203056 +nucl-th/0204009 +nucl-th/0204032 +nucl-th/0205011 +nucl-th/0205015 +nucl-th/0205046 +nucl-th/0206007 +nucl-th/0206067 +nucl-th/0207001 +nucl-th/0207013 +nucl-th/0207014 +nucl-th/0207079 +nucl-th/0208046 +nucl-th/0208066 +nucl-th/0209009 +nucl-th/0209028 +nucl-th/0210036 +nucl-th/0210070 +nucl-th/0211001 +nucl-th/0212024 +nucl-th/0212025 +nucl-th/0212055 +nucl-th/0212075 +nucl-th/0212079 +nucl-th/0212085 +nucl-th/0212087 +nucl-th/0212106 +nucl-th/0212110 +nucl-th/0301097 +nucl-th/0302015 +nucl-th/0302069 +nucl-th/0304002 +nucl-th/0304008 +nucl-th/0304058 +nucl-th/0305015 +nucl-th/0305057 +nucl-th/0306037 +nucl-th/0308008 +nucl-th/0308024 +nucl-th/0309067 +nucl-th/0309077 +nucl-th/0310057 +nucl-th/0310089 +nucl-th/0312023 +nucl-th/0312099 +nucl-th/0312120 +nucl-th/0402022 +nucl-th/0403004 +nucl-th/0403018 +nucl-th/0403064 +nucl-th/0404001 +nucl-th/0404009 +nucl-th/0405071 +nucl-th/0406023 +nucl-th/0406031 +nucl-th/0406058 +nucl-th/0407010 +nucl-th/0407018 +nucl-th/0407080 +nucl-th/0408063 +nucl-th/0409016 +nucl-th/0410067 +nucl-th/0410082 +nucl-th/0410107 +nucl-th/0410113 +nucl-th/0411008 +nucl-th/0411044 +nucl-th/0411114 +nucl-th/0412034 +nucl-th/0501012 +nucl-th/0501042 +nucl-th/0501072 +nucl-th/0502058 +nucl-th/0503009 +nucl-th/0503037 +nucl-th/0504003 +nucl-th/0504076 +nucl-th/0505004 +nucl-th/0505048 +nucl-th/0506044 +nucl-th/0506083 +nucl-th/0507014 +nucl-th/0507016 +nucl-th/0507046 +nucl-th/0507057 +nucl-th/0508002 +nucl-th/0509011 +nucl-th/0509024 +nucl-th/0509053 +nucl-th/0509056 +nucl-th/0509067 +nucl-th/0509071 +nucl-th/0509090 +nucl-th/0509091 +nucl-th/0509096 +nucl-th/0509097 +nucl-th/0509104 +nucl-th/0509105 +nucl-th/0510001 +nucl-th/0510003 +nucl-th/0510007 +nucl-th/0510011 +nucl-th/0510024 +nucl-th/0601079 +nucl-th/0602013 +nucl-th/0602065 +nucl-th/0605010 +nucl-th/0605071 +nucl-th/0606046 +nucl-th/0608012 +nucl-th/0610032 +nucl-th/0610100 +nucl-th/0612016 +nucl-th/9212010 +nucl-th/9212016 +nucl-th/9301013 +nucl-th/9305012 +nucl-th/9309027 +nucl-th/9310017 +nucl-th/9311023 +nucl-th/9311030 +nucl-th/9405024 +nucl-th/9501001 +nucl-th/9501002 +nucl-th/9501003 +nucl-th/9501006 +nucl-th/9501007 +nucl-th/9501008 +nucl-th/9501012 +nucl-th/9501013 +nucl-th/9501014 +nucl-th/9501017 +nucl-th/9501018 +nucl-th/9501019 +nucl-th/9501021 +nucl-th/9501024 +nucl-th/9501027 +nucl-th/9501028 +nucl-th/9501031 +nucl-th/9501033 +nucl-th/9501036 +nucl-th/9502001 +nucl-th/9502002 +nucl-th/9502003 +nucl-th/9502004 +nucl-th/9502005 +nucl-th/9502006 +nucl-th/9502007 +nucl-th/9502009 +nucl-th/9502010 +nucl-th/9502011 +nucl-th/9502013 +nucl-th/9502015 +nucl-th/9502016 +nucl-th/9502017 +nucl-th/9502018 +nucl-th/9502019 +nucl-th/9502020 +nucl-th/9502021 +nucl-th/9502022 +nucl-th/9502023 +nucl-th/9502024 +nucl-th/9502025 +nucl-th/9502026 +nucl-th/9502028 +nucl-th/9502029 +nucl-th/9502030 +nucl-th/9502031 +nucl-th/9502032 +nucl-th/9502033 +nucl-th/9502034 +nucl-th/9502035 +nucl-th/9502036 +nucl-th/9502037 +nucl-th/9502038 +nucl-th/9502039 +nucl-th/9502041 +nucl-th/9502043 +nucl-th/9502044 +nucl-th/9502046 +nucl-th/9502047 +nucl-th/9503002 +nucl-th/9503003 +nucl-th/9503004 +nucl-th/9503005 +nucl-th/9503008 +nucl-th/9503009 +nucl-th/9503011 +nucl-th/9503012 +nucl-th/9503016 +nucl-th/9503017 +nucl-th/9503025 +nucl-th/9505023 +nucl-th/9505029 +nucl-th/9506033 +nucl-th/9508018 +nucl-th/9509022 +nucl-th/9510004 +nucl-th/9511001 +nucl-th/9603020 +nucl-th/9606014 +nucl-th/9606042 +nucl-th/9607008 +nucl-th/9607055 +nucl-th/9608058 +nucl-th/9608059 +nucl-th/9609009 +nucl-th/9609018 +nucl-th/9609025 +nucl-th/9609045 +nucl-th/9609064 +nucl-th/9609065 +nucl-th/9610015 +nucl-th/9610017 +nucl-th/9610034 +nucl-th/9611001 +nucl-th/9611002 +nucl-th/9611005 +nucl-th/9611009 +nucl-th/9611010 +nucl-th/9612009 +nucl-th/9612017 +nucl-th/9612032 +nucl-th/9612039 +nucl-th/9612051 +nucl-th/9612057 +nucl-th/9701008 +nucl-th/9701011 +nucl-th/9701043 +nucl-th/9701050 +nucl-th/9701052 +nucl-th/9701056 +nucl-th/9702002 +nucl-th/9702004 +nucl-th/9702005 +nucl-th/9702038 +nucl-th/9702040 +nucl-th/9703018 +nucl-th/9703025 +nucl-th/9703031 +nucl-th/9703032 +nucl-th/9704018 +nucl-th/9704021 +nucl-th/9704037 +nucl-th/9704038 +nucl-th/9704039 +nucl-th/9704040 +nucl-th/9704047 +nucl-th/9704055 +nucl-th/9704063 +nucl-th/9705002 +nucl-th/9705003 +nucl-th/9705005 +nucl-th/9705011 +nucl-th/9706005 +nucl-th/9706010 +nucl-th/9706052 +nucl-th/9706069 +nucl-th/9706075 +nucl-th/9706082 +nucl-th/9706083 +nucl-th/9707009 +nucl-th/9707050 +nucl-th/9708056 +nucl-th/9709021 +nucl-th/9710022 +nucl-th/9710026 +nucl-th/9710060 +nucl-th/9710066 +nucl-th/9711008 +nucl-th/9711049 +nucl-th/9712039 +nucl-th/9712061 +nucl-th/9712078 +nucl-th/9801001 +nucl-th/9801043 +nucl-th/9802059 +nucl-th/9802061 +nucl-th/9802079 +nucl-th/9803005 +nucl-th/9803010 +nucl-th/9803048 +nucl-th/9803049 +nucl-th/9803051 +nucl-th/9804064 +nucl-th/9804074 +nucl-th/9805048 +nucl-th/9806002 +nucl-th/9806021 +nucl-th/9807029 +nucl-th/9808020 +nucl-th/9809028 +nucl-th/9809061 +nucl-th/9810035 +nucl-th/9810036 +nucl-th/9810059 +nucl-th/9810061 +nucl-th/9811037 +nucl-th/9811049 +nucl-th/9811071 +nucl-th/9812030 +nucl-th/9812074 +nucl-th/9812076 +nucl-th/9901023 +nucl-th/9901092 +nucl-th/9901097 +nucl-th/9903008 +nucl-th/9904011 +nucl-th/9904022 +nucl-th/9905052 +nucl-th/9906014 +nucl-th/9906070 +nucl-th/9907001 +nucl-th/9907009 +nucl-th/9907022 +nucl-th/9907050 +nucl-th/9907072 +nucl-th/9908012 +nucl-th/9908068 +nucl-th/9908085 +nucl-th/9909007 +nucl-th/9910068 +nucl-th/9911002 +nucl-th/9911019 +nucl-th/9911027 +nucl-th/9911054 +nucl-th/9912001 +nucl-th/9912005 +nucl-th/9912039 +nucl-th/9912049 +patt-sol/9502001 Pattern Formation and Solitons +patt-sol/9502003 Pattern Formation and Solitons +patt-sol/9502007 Pattern Formation and Solitons +patt-sol/9504001 Pattern Formation and Solitons +patt-sol/9506002 Pattern Formation and Solitons +patt-sol/9509001 Pattern Formation and Solitons +patt-sol/9604004 Pattern Formation and Solitons +patt-sol/9607002 Pattern Formation and Solitons +patt-sol/9609004 Pattern Formation and Solitons +patt-sol/9611001 Pattern Formation and Solitons +patt-sol/9701001 Pattern Formation and Solitons +patt-sol/9702006 Pattern Formation and Solitons +patt-sol/9703003 Pattern Formation and Solitons +patt-sol/9703009 Pattern Formation and Solitons +patt-sol/9705009 Pattern Formation and Solitons +patt-sol/9706007 Pattern Formation and Solitons +patt-sol/9709005 Pattern Formation and Solitons +patt-sol/9710002 Pattern Formation and Solitons +patt-sol/9712004 Pattern Formation and Solitons +patt-sol/9802004 Pattern Formation and Solitons +patt-sol/9804005 Pattern Formation and Solitons +patt-sol/9808004 Pattern Formation and Solitons +patt-sol/9808005 Pattern Formation and Solitons +patt-sol/9810005 Pattern Formation and Solitons +physics/0001005 Classical Physics +physics/0001024 Atomic Physics +physics/0001027 Classical Physics +physics/0004045 Atomic Physics +physics/0004062 Atomic Physics +physics/0004072 Physics Education +physics/0004073 Atomic Physics +physics/0005034 General Physics +physics/0005036 Chemical Physics +physics/0005050 Plasma Physics +physics/0005054 Fluid Dynamics +physics/0005058 Computational Physics +physics/0005073 Computational Physics +physics/0005074 Biological Physics +physics/0006023 Physics Education +physics/0006025 Atomic Physics +physics/0006065 History and Philosophy of Physics +physics/0006066 Atomic Physics +physics/0007007 Fluid Dynamics +physics/0007015 Computational Physics +physics/0007054 Atomic Physics +physics/0007072 Accelerator Physics +physics/0007078 General Physics +physics/0007087 Biological Physics +physics/0008016 Biological Physics +physics/0008030 Accelerator Physics +physics/0008033 Accelerator Physics +physics/0008086 Accelerator Physics +physics/0008112 Accelerator Physics +physics/0008121 Accelerator Physics +physics/0008129 Accelerator Physics +physics/0008134 Accelerator Physics +physics/0009037 Classical Physics +physics/0009091 Atomic Physics +physics/0009095 Accelerator Physics +physics/0010021 Fluid Dynamics +physics/0010025 Chemical Physics +physics/0011002 Biological Physics +physics/0011038 General Physics +physics/0011059 Plasma Physics +physics/0012030 Computational Physics +physics/0101036 Fluid Dynamics +physics/0101090 Accelerator Physics +physics/0102038 Optics +physics/0104009 General Physics +physics/0104043 Atomic Physics +physics/0104072 Plasma Physics +physics/0104077 Fluid Dynamics +physics/0105048 Physics Education +physics/0105076 Atomic Physics +physics/0105078 Atomic and Molecular Clusters +physics/0106004 Plasma Physics +physics/0106073 General Physics +physics/0107024 Atomic Physics +physics/0108007 Chemical Physics +physics/0108018 Optics +physics/0108031 General Physics +physics/0110048 Geophysics +physics/0110052 Accelerator Physics +physics/0110056 Atomic Physics +physics/0111033 Accelerator Physics +physics/0111039 Accelerator Physics +physics/0111043 Instrumentation and Detectors +physics/0111086 Chemical Physics +physics/0111140 Plasma Physics +physics/0111142 Accelerator Physics +physics/0111157 Chemical Physics +physics/0111164 Accelerator Physics +physics/0111178 Atomic Physics +physics/0111196 Classical Physics +physics/0111209 Accelerator Physics +physics/0112079 Chemical Physics +physics/0201020 General Physics +physics/0201040 General Physics +physics/0202032 Computational Physics +physics/0203042 Plasma Physics +physics/0204081 Atomic Physics +physics/0205043 Biological Physics +physics/0205051 Atomic Physics +physics/0205060 Chemical Physics +physics/0205075 Plasma Physics +physics/0206028 Atomic Physics +physics/0206038 Chemical Physics +physics/0207007 Atomic Physics +physics/0207024 Biological Physics +physics/0207025 Computational Physics +physics/0207035 Plasma Physics +physics/0207046 Plasma Physics +physics/0207119 Plasma Physics +physics/0208041 Plasma Physics +physics/0208053 Plasma Physics +physics/0209016 Classical Physics +physics/0209071 Atomic Physics +physics/0209078 Chemical Physics +physics/0209083 Atomic Physics +physics/0209099 Biological Physics +physics/0210031 Classical Physics +physics/0210036 Atomic Physics +physics/0210037 General Physics +physics/0210047 Classical Physics +physics/0210059 Instrumentation and Detectors +physics/0210081 Classical Physics +physics/0210114 Plasma Physics +physics/0210131 Atomic Physics +physics/0211009 Plasma Physics +physics/0211064 Medical Physics +physics/0211067 Optics +physics/0211123 Classical Physics +physics/0212040 Atomic Physics +physics/0212111 Atomic Physics +physics/0301045 Optics +physics/0302009 Chemical Physics +physics/0302023 Atomic Physics +physics/0302069 Accelerator Physics +physics/0302078 Atomic and Molecular Clusters +physics/0302086 Chemical Physics +physics/0303027 Biological Physics +physics/0303036 Physics Education +physics/0303044 Fluid Dynamics +physics/0303112 Computational Physics +physics/0304012 Atomic Physics +physics/0304073 Chemical Physics +physics/0304080 Fluid Dynamics +physics/0304112 Atomic Physics +physics/0305043 Optics +physics/0305057 Atomic Physics +physics/0306008 Data Analysis, Statistics and Probability +physics/0306050 Space Physics +physics/0306125 Chemical Physics +physics/0306137 Plasma Physics +physics/0307031 Biological Physics +physics/0307061 Computational Physics +physics/0307072 Biological Physics +physics/0307117 Data Analysis, Statistics and Probability +physics/0308071 Plasma Physics +physics/0308081 Fluid Dynamics +physics/0308095 Optics +physics/0308109 Physics Education +physics/0309026 Biological Physics +physics/0309030 Optics +physics/0309103 Atomic and Molecular Clusters +physics/0309107 Atomic Physics +physics/0311006 Optics +physics/0311085 Chemical Physics +physics/0312042 Accelerator Physics +physics/0401112 Classical Physics +physics/0403035 Classical Physics +physics/0403051 Atomic Physics +physics/0403071 Atomic and Molecular Clusters +physics/0403131 Plasma Physics +physics/0404043 Accelerator Physics +physics/0404053 Optics +physics/0404122 Optics +physics/0405134 Biological Physics +physics/0405137 Atomic Physics +physics/0405145 Geophysics +physics/0406003 Instrumentation and Detectors +physics/0406015 Atomic Physics +physics/0406021 Classical Physics +physics/0406034 Fluid Dynamics +physics/0406074 Atomic Physics +physics/0406077 Atomic Physics +physics/0406126 Chemical Physics +physics/0406132 Plasma Physics +physics/0406158 Physics Education +physics/0407031 Atomic and Molecular Clusters +physics/0407129 Chemical Physics +physics/0407141 Atomic Physics +physics/0408130 Instrumentation and Detectors +physics/0409060 Atomic Physics +physics/0409075 Instrumentation and Detectors +physics/0409094 Optics +physics/0409144 Atomic Physics +physics/0410010 Atomic and Molecular Clusters +physics/0410073 Space Physics +physics/0410150 Physics Education +physics/0410185 Plasma Physics +physics/0410262 Classical Physics +physics/0410268 Plasma Physics +physics/0410276 Plasma Physics +physics/0411027 Chemical Physics +physics/0412048 Atomic Physics +physics/0412071 Optics +physics/0501106 Atmospheric and Oceanic Physics +physics/0501145 Atomic Physics +physics/0501154 Atomic Physics +physics/0501165 Atomic Physics +physics/0502068 Data Analysis, Statistics and Probability +physics/0502113 Atomic Physics +physics/0502120 Accelerator Physics +physics/0503010 Optics +physics/0503023 Physics and Society +physics/0503198 Physics Education +physics/0504016 Physics Education +physics/0504054 Biological Physics +physics/0505015 Geophysics +physics/0505024 Optics +physics/0506060 Classical Physics +physics/0506083 General Physics +physics/0506099 Plasma Physics +physics/0506171 Instrumentation and Detectors +physics/0506204 Physics and Society +physics/0506216 Chemical Physics +physics/0507026 Fluid Dynamics +physics/0507077 Atomic Physics +physics/0508025 Physics and Society +physics/0508046 Accelerator Physics +physics/0508123 Popular Physics +physics/0508158 Physics and Society +physics/0508183 Popular Physics +physics/0508226 Atmospheric and Oceanic Physics +physics/0508228 Physics and Society +physics/0509037 Data Analysis, Statistics and Probability +physics/0509067 Optics +physics/0509167 General Physics +physics/0509177 Atmospheric and Oceanic Physics +physics/0509197 Atomic Physics +physics/0509204 Atomic Physics +physics/0509219 General Physics +physics/0509223 General Physics +physics/0509233 Instrumentation and Detectors +physics/0509239 Atomic Physics +physics/0509240 Physics and Society +physics/0509241 Fluid Dynamics +physics/0509245 Physics and Society +physics/0509250 Physics and Society +physics/0509251 Data Analysis, Statistics and Probability +physics/0509253 Atomic Physics +physics/0509263 Optics +physics/0510001 Optics +physics/0510002 Optics +physics/0510013 Classical Physics +physics/0510024 Chemical Physics +physics/0510026 Classical Physics +physics/0510032 Optics +physics/0510033 Optics +physics/0510047 Data Analysis, Statistics and Probability +physics/0511144 Classical Physics +physics/0511208 Atmospheric and Oceanic Physics +physics/0512023 Classical Physics +physics/0512078 Physics and Society +physics/0601114 Physics and Society +physics/0601205 Data Analysis, Statistics and Probability +physics/0603010 Chemical Physics +physics/0603093 Atomic Physics +physics/0604017 Chemical Physics +physics/0607240 Data Analysis, Statistics and Probability +physics/0608135 Accelerator Physics +physics/0612124 Physics and Society +physics/0701190 Data Analysis, Statistics and Probability +physics/0702011 Classical Physics +physics/9610013 Popular Physics +physics/9610023 Geophysics +physics/9611001 Accelerator Physics +physics/9611004 Atomic Physics +physics/9611005 Atomic Physics +physics/9611013 Chemical Physics +physics/9612013 Computational Physics +physics/9612018 Plasma Physics +physics/9701022 Accelerator Physics +physics/9702012 Chemical Physics +physics/9703021 Plasma Physics +physics/9704019 Atomic Physics +physics/9705001 General Physics +physics/9705008 Biological Physics +physics/9705016 General Physics +physics/9705024 Fluid Dynamics +physics/9707021 Space Physics +physics/9708026 Biological Physics +physics/9710035 Accelerator Physics +physics/9710044 Atomic Physics +physics/9711014 Optics +physics/9801002 Atomic and Molecular Clusters +physics/9801005 Instrumentation and Detectors +physics/9803011 Computational Physics +physics/9804030 Medical Physics +physics/9805014 Classical Physics +physics/9805019 Atomic Physics +physics/9805020 Atomic Physics +physics/9805021 Atomic Physics +physics/9805024 Physics Education +physics/9806015 Biological Physics +physics/9807005 Plasma Physics +physics/9807012 History and Philosophy of Physics +physics/9807027 Atomic Physics +physics/9807042 Plasma Physics +physics/9808048 Atomic Physics +physics/9809013 Atomic Physics +physics/9809020 Atomic Physics +physics/9809024 Fluid Dynamics +physics/9810012 Accelerator Physics +physics/9810014 Plasma Physics +physics/9810052 Biological Physics +physics/9811024 Geophysics +physics/9811039 Computational Physics +physics/9901017 Atomic Physics +physics/9901027 Computational Physics +physics/9903020 Atomic Physics +physics/9903037 Atomic Physics +physics/9904016 General Physics +physics/9909017 Biological Physics +physics/9909040 General Physics +physics/9910023 Atomic Physics +physics/9910050 General Physics +physics/9911002 Fluid Dynamics +physics/9911005 Chemical Physics +physics/9911045 Optics +physics/9911052 Atomic and Molecular Clusters +physics/9912003 Chemical Physics +physics/9912012 Biological Physics +physics/9912026 Fluid Dynamics +physics/9912042 Computational Physics +physics/9912052 Atomic Physics +plasm-ph/9502003 Plasma Physics +plasm-ph/9511001 Plasma Physics +q-alg/9501002 Quantum Algebra +q-alg/9501006 Quantum Algebra +q-alg/9501007 Quantum Algebra +q-alg/9501010 Quantum Algebra +q-alg/9501011 Quantum Algebra +q-alg/9501012 Quantum Algebra +q-alg/9501013 Quantum Algebra +q-alg/9501015 Quantum Algebra +q-alg/9501019 Quantum Algebra +q-alg/9501025 Quantum Algebra +q-alg/9501029 Quantum Algebra +q-alg/9501030 Quantum Algebra +q-alg/9501031 Quantum Algebra +q-alg/9502001 Quantum Algebra +q-alg/9502004 Quantum Algebra +q-alg/9502006 Quantum Algebra +q-alg/9502007 Quantum Algebra +q-alg/9502010 Quantum Algebra +q-alg/9502012 Quantum Algebra +q-alg/9502014 Quantum Algebra +q-alg/9502016 Quantum Algebra +q-alg/9503003 Quantum Algebra +q-alg/9503004 Quantum Algebra +q-alg/9503005 Quantum Algebra +q-alg/9503008 Quantum Algebra +q-alg/9503009 Quantum Algebra +q-alg/9503010 Quantum Algebra +q-alg/9503012 Quantum Algebra +q-alg/9503018 Quantum Algebra +q-alg/9504025 Quantum Algebra +q-alg/9505013 Quantum Algebra +q-alg/9506017 Quantum Algebra +q-alg/9508013 Quantum Algebra +q-alg/9508017 Quantum Algebra +q-alg/9508019 Quantum Algebra +q-alg/9601008 Quantum Algebra +q-alg/9601016 Quantum Algebra +q-alg/9601021 Quantum Algebra +q-alg/9602017 Quantum Algebra +q-alg/9603021 Quantum Algebra +q-alg/9604008 Quantum Algebra +q-alg/9604021 Quantum Algebra +q-alg/9605013 Quantum Algebra +q-alg/9606001 Quantum Algebra +q-alg/9607004 Quantum Algebra +q-alg/9607020 Quantum Algebra +q-alg/9608006 Quantum Algebra +q-alg/9609012 Quantum Algebra +q-alg/9609022 Quantum Algebra +q-alg/9609031 Quantum Algebra +q-alg/9610009 Quantum Algebra +q-alg/9610028 Quantum Algebra +q-alg/9611005 Quantum Algebra +q-alg/9612004 Quantum Algebra +q-alg/9612009 Quantum Algebra +q-alg/9612029 Quantum Algebra +q-alg/9701004 Quantum Algebra +q-alg/9701040 Quantum Algebra +q-alg/9702024 Quantum Algebra +q-alg/9703006 Quantum Algebra +q-alg/9703019 Quantum Algebra +q-alg/9703022 Quantum Algebra +q-alg/9703030 Quantum Algebra +q-alg/9703041 Quantum Algebra +q-alg/9703045 Quantum Algebra +q-alg/9704001 Quantum Algebra +q-alg/9704012 Quantum Algebra +q-alg/9705004 Quantum Algebra +q-alg/9705012 Quantum Algebra +q-alg/9706002 Quantum Algebra +q-alg/9707020 Quantum Algebra +q-alg/9707033 Quantum Algebra +q-alg/9710005 Quantum Algebra +q-alg/9710025 Quantum Algebra +q-alg/9710033 Quantum Algebra +q-alg/9711004 Quantum Algebra +q-alg/9711024 Quantum Algebra +q-alg/9712038 Quantum Algebra +q-bio/0310013 Biomolecules +q-bio/0312024 Other Quantitative Biology +q-bio/0401030 Biomolecules +q-bio/0408018 Biomolecules +q-bio/0409029 Biomolecules +q-bio/0409032 Neurons and Cognition +q-bio/0410013 Populations and Evolution +q-bio/0411010 Biomolecules +q-bio/0502013 Molecular Networks +q-bio/0503015 Populations and Evolution +q-bio/0504002 Genomics +q-bio/0504027 Neurons and Cognition +q-bio/0505044 Quantitative Methods +q-bio/0505056 Populations and Evolution +q-bio/0506027 Populations and Evolution +q-bio/0506039 Tissues and Organs +q-bio/0509037 Populations and Evolution +q-bio/0509039 Populations and Evolution +q-bio/0509043 Genomics +q-bio/0510004 Populations and Evolution +q-bio/0510008 Populations and Evolution +q-bio/0605020 Populations and Evolution +quant-ph/0001080 +quant-ph/0002070 +quant-ph/0002086 +quant-ph/0003007 +quant-ph/0003013 +quant-ph/0003073 +quant-ph/0003129 +quant-ph/0003134 +quant-ph/0004003 +quant-ph/0004009 +quant-ph/0004038 +quant-ph/0004039 +quant-ph/0004082 +quant-ph/0005065 +quant-ph/0005089 +quant-ph/0005119 +quant-ph/0005120 +quant-ph/0005125 +quant-ph/0006091 +quant-ph/0007007 +quant-ph/0007013 +quant-ph/0007052 +quant-ph/0007063 +quant-ph/0007081 +quant-ph/0007093 +quant-ph/0008051 +quant-ph/0008082 +quant-ph/0008126 +quant-ph/0008127 +quant-ph/0008131 +quant-ph/0008133 +quant-ph/0009012 +quant-ph/0009035 +quant-ph/0009036 +quant-ph/0009051 +quant-ph/0009064 +quant-ph/0009065 +quant-ph/0009079 +quant-ph/0010077 +quant-ph/0010107 +quant-ph/0011024 +quant-ph/0011056 +quant-ph/0011066 +quant-ph/0011076 +quant-ph/0011123 +quant-ph/0012023 +quant-ph/0012026 +quant-ph/0012090 +quant-ph/0012110 +quant-ph/0012117 +quant-ph/0012118 +quant-ph/0012121 +quant-ph/0012122 +quant-ph/0101004 +quant-ph/0101030 +quant-ph/0101033 +quant-ph/0101037 +quant-ph/0101040 +quant-ph/0101057 +quant-ph/0101063 +quant-ph/0102010 +quant-ph/0102051 +quant-ph/0102124 +quant-ph/0102140 +quant-ph/0103039 +quant-ph/0103064 +quant-ph/0103121 +quant-ph/0103142 +quant-ph/0104047 +quant-ph/0105020 +quant-ph/0105135 +quant-ph/0106011 +quant-ph/0106017 +quant-ph/0106041 +quant-ph/0106044 +quant-ph/0106117 +quant-ph/0107008 +quant-ph/0107019 +quant-ph/0107028 +quant-ph/0107056 +quant-ph/0107079 +quant-ph/0107094 +quant-ph/0107139 +quant-ph/0108009 +quant-ph/0108032 +quant-ph/0108055 +quant-ph/0108073 +quant-ph/0108118 +quant-ph/0109008 +quant-ph/0109021 +quant-ph/0109025 +quant-ph/0109032 +quant-ph/0109042 +quant-ph/0109052 +quant-ph/0109078 +quant-ph/0109084 +quant-ph/0110034 +quant-ph/0110041 +quant-ph/0110061 +quant-ph/0110071 +quant-ph/0110072 +quant-ph/0110126 +quant-ph/0110169 +quant-ph/0111001 +quant-ph/0111139 +quant-ph/0111154 +quant-ph/0112028 +quant-ph/0112062 +quant-ph/0112144 +quant-ph/0112152 +quant-ph/0112162 +quant-ph/0201021 +quant-ph/0201042 +quant-ph/0201072 +quant-ph/0201105 +quant-ph/0201109 +quant-ph/0202026 +quant-ph/0202057 +quant-ph/0202135 +quant-ph/0202168 +quant-ph/0203015 +quant-ph/0203131 +quant-ph/0204124 +quant-ph/0204127 +quant-ph/0204163 +quant-ph/0205095 +quant-ph/0205127 +quant-ph/0205132 +quant-ph/0205144 +quant-ph/0205194 +quant-ph/0206007 +quant-ph/0206025 +quant-ph/0206125 +quant-ph/0206136 +quant-ph/0206148 +quant-ph/0206150 +quant-ph/0206165 +quant-ph/0206192 +quant-ph/0207028 +quant-ph/0207050 +quant-ph/0207112 +quant-ph/0207129 +quant-ph/0207165 +quant-ph/0208004 +quant-ph/0208059 +quant-ph/0208118 +quant-ph/0208131 +quant-ph/0208172 +quant-ph/0209063 +quant-ph/0209085 +quant-ph/0209115 +quant-ph/0209159 +quant-ph/0210028 +quant-ph/0210194 +quant-ph/0211048 +quant-ph/0211050 +quant-ph/0211051 +quant-ph/0211079 +quant-ph/0211088 +quant-ph/0211107 +quant-ph/0211160 +quant-ph/0211195 +quant-ph/0211197 +quant-ph/0212036 +quant-ph/0212048 +quant-ph/0212096 +quant-ph/0212126 +quant-ph/0212162 +quant-ph/0301001 +quant-ph/0301014 +quant-ph/0301026 +quant-ph/0301032 +quant-ph/0301063 +quant-ph/0301118 +quant-ph/0301143 +quant-ph/0301144 +quant-ph/0302007 +quant-ph/0302020 +quant-ph/0302033 +quant-ph/0302046 +quant-ph/0302085 +quant-ph/0302119 +quant-ph/0302198 +quant-ph/0303157 +quant-ph/0304049 +quant-ph/0304073 +quant-ph/0304108 +quant-ph/0305003 +quant-ph/0305050 +quant-ph/0305099 +quant-ph/0305141 +quant-ph/0306065 +quant-ph/0306107 +quant-ph/0306141 +quant-ph/0306156 +quant-ph/0306170 +quant-ph/0306194 +quant-ph/0307023 +quant-ph/0307054 +quant-ph/0307102 +quant-ph/0307152 +quant-ph/0307153 +quant-ph/0307155 +quant-ph/0307202 +quant-ph/0308092 +quant-ph/0308133 +quant-ph/0308156 +quant-ph/0309022 +quant-ph/0309036 +quant-ph/0309131 +quant-ph/0309187 +quant-ph/0309188 +quant-ph/0310042 +quant-ph/0310188 +quant-ph/0311055 +quant-ph/0311107 +quant-ph/0311164 +quant-ph/0311167 +quant-ph/0312033 +quant-ph/0312101 +quant-ph/0312106 +quant-ph/0312109 +quant-ph/0312184 +quant-ph/0312211 +quant-ph/0312212 +quant-ph/0312223 +quant-ph/0401046 +quant-ph/0401060 +quant-ph/0401080 +quant-ph/0401115 +quant-ph/0402025 +quant-ph/0402054 +quant-ph/0402074 +quant-ph/0402100 +quant-ph/0402124 +quant-ph/0402156 +quant-ph/0403033 +quant-ph/0403051 +quant-ph/0403187 +quant-ph/0403227 +quant-ph/0404059 +quant-ph/0404112 +quant-ph/0405040 +quant-ph/0405060 +quant-ph/0405085 +quant-ph/0405106 +quant-ph/0405164 +quant-ph/0405171 +quant-ph/0405184 +quant-ph/0405190 +quant-ph/0406009 +quant-ph/0406010 +quant-ph/0406081 +quant-ph/0406097 +quant-ph/0406110 +quant-ph/0406166 +quant-ph/0407013 +quant-ph/0407040 +quant-ph/0407093 +quant-ph/0407108 +quant-ph/0407125 +quant-ph/0407136 +quant-ph/0407164 +quant-ph/0407198 +quant-ph/0407201 +quant-ph/0407237 +quant-ph/0407254 +quant-ph/0408025 +quant-ph/0408037 +quant-ph/0408075 +quant-ph/0408082 +quant-ph/0408135 +quant-ph/0408162 +quant-ph/0408164 +quant-ph/0408187 +quant-ph/0409022 +quant-ph/0409038 +quant-ph/0409090 +quant-ph/0409164 +quant-ph/0409187 +quant-ph/0410069 +quant-ph/0410071 +quant-ph/0410077 +quant-ph/0410086 +quant-ph/0410154 +quant-ph/0410233 +quant-ph/0411046 +quant-ph/0411135 +quant-ph/0412088 +quant-ph/0412091 +quant-ph/0412153 +quant-ph/0412168 +quant-ph/0412190 +quant-ph/0412205 +quant-ph/0501054 +quant-ph/0501066 +quant-ph/0501120 +quant-ph/0501128 +quant-ph/0502015 +quant-ph/0502020 +quant-ph/0502021 +quant-ph/0502083 +quant-ph/0502183 +quant-ph/0503040 +quant-ph/0503188 +quant-ph/0503226 +quant-ph/0503233 +quant-ph/0504010 +quant-ph/0504013 +quant-ph/0504108 +quant-ph/0504217 +quant-ph/0505048 +quant-ph/0505086 +quant-ph/0505107 +quant-ph/0505112 +quant-ph/0505170 +quant-ph/0505203 +quant-ph/0505211 +quant-ph/0506041 +quant-ph/0506043 +quant-ph/0506172 +quant-ph/0506262 +quant-ph/0507030 +quant-ph/0507203 +quant-ph/0507220 +quant-ph/0507236 +quant-ph/0507256 +quant-ph/0508043 +quant-ph/0508113 +quant-ph/0509084 +quant-ph/0509138 +quant-ph/0509145 +quant-ph/0509155 +quant-ph/0509191 +quant-ph/0509213 +quant-ph/0510006 +quant-ph/0510021 +quant-ph/0510032 +quant-ph/0510034 +quant-ph/0510043 +quant-ph/0510103 +quant-ph/0510112 +quant-ph/0511142 +quant-ph/0512239 +quant-ph/0602063 +quant-ph/0602207 +quant-ph/0603226 +quant-ph/0604075 +quant-ph/0604085 +quant-ph/0604206 +quant-ph/0606246 +quant-ph/0608027 +quant-ph/0608201 +quant-ph/0608225 +quant-ph/0609093 +quant-ph/0609159 +quant-ph/0610012 +quant-ph/0610075 +quant-ph/0610206 +quant-ph/0702069 +quant-ph/9501002 +quant-ph/9501003 +quant-ph/9501004 +quant-ph/9501006 +quant-ph/9501009 +quant-ph/9501010 +quant-ph/9501013 +quant-ph/9501015 +quant-ph/9501016 +quant-ph/9501018 +quant-ph/9501020 +quant-ph/9501021 +quant-ph/9501023 +quant-ph/9502002 +quant-ph/9502003 +quant-ph/9502004 +quant-ph/9502005 +quant-ph/9502007 +quant-ph/9502008 +quant-ph/9502009 +quant-ph/9502010 +quant-ph/9502012 +quant-ph/9502013 +quant-ph/9502014 +quant-ph/9502016 +quant-ph/9502017 +quant-ph/9502021 +quant-ph/9502023 +quant-ph/9502024 +quant-ph/9502025 +quant-ph/9502026 +quant-ph/9502028 +quant-ph/9503001 +quant-ph/9503002 +quant-ph/9503003 +quant-ph/9503006 +quant-ph/9503007 +quant-ph/9503010 +quant-ph/9503012 +quant-ph/9503016 +quant-ph/9504013 +quant-ph/9506015 +quant-ph/9508005 +quant-ph/9508023 +quant-ph/9509020 +quant-ph/9510002 +quant-ph/9601011 +quant-ph/9601012 +quant-ph/9601014 +quant-ph/9603005 +quant-ph/9603014 +quant-ph/9605007 +quant-ph/9605014 +quant-ph/9605032 +quant-ph/9606001 +quant-ph/9607003 +quant-ph/9607017 +quant-ph/9608008 +quant-ph/9608041 +quant-ph/9609027 +quant-ph/9610022 +quant-ph/9610027 +quant-ph/9611035 +quant-ph/9611052 +quant-ph/9612006 +quant-ph/9612035 +quant-ph/9701018 +quant-ph/9701029 +quant-ph/9702008 +quant-ph/9703001 +quant-ph/9703005 +quant-ph/9703024 +quant-ph/9703026 +quant-ph/9703027 +quant-ph/9704014 +quant-ph/9704020 +quant-ph/9705020 +quant-ph/9705023 +quant-ph/9706008 +quant-ph/9706021 +quant-ph/9707039 +quant-ph/9709016 +quant-ph/9709038 +quant-ph/9709041 +quant-ph/9710009 +quant-ph/9711007 +quant-ph/9711011 +quant-ph/9711064 +quant-ph/9712047 +quant-ph/9712057 +quant-ph/9801066 +quant-ph/9802071 +quant-ph/9803074 +quant-ph/9804007 +quant-ph/9804012 +quant-ph/9805084 +quant-ph/9806011 +quant-ph/9806037 +quant-ph/9806050 +quant-ph/9806072 +quant-ph/9806093 +quant-ph/9807004 +quant-ph/9807014 +quant-ph/9807016 +quant-ph/9807020 +quant-ph/9807025 +quant-ph/9807027 +quant-ph/9807037 +quant-ph/9807055 +quant-ph/9807059 +quant-ph/9808002 +quant-ph/9808021 +quant-ph/9809017 +quant-ph/9809034 +quant-ph/9809049 +quant-ph/9809080 +quant-ph/9809081 +quant-ph/9810012 +quant-ph/9810023 +quant-ph/9810068 +quant-ph/9810077 +quant-ph/9811028 +quant-ph/9811056 +quant-ph/9812025 +quant-ph/9812085 +quant-ph/9902066 +quant-ph/9902079 +quant-ph/9903090 +quant-ph/9904024 +quant-ph/9904101 +quant-ph/9906012 +quant-ph/9906049 +quant-ph/9906082 +quant-ph/9906102 +quant-ph/9907053 +quant-ph/9907096 +quant-ph/9907109 +quant-ph/9908025 +quant-ph/9908040 +quant-ph/9908048 +quant-ph/9908064 +quant-ph/9908079 +quant-ph/9909036 +quant-ph/9909058 +quant-ph/9910044 +quant-ph/9910081 +quant-ph/9911061 +quant-ph/9912061 +quant-ph/9912098 +quant-ph/9912107 +solv-int/9501005 Exactly Solvable and Integrable Systems +solv-int/9501006 Exactly Solvable and Integrable Systems +solv-int/9501007 Exactly Solvable and Integrable Systems +solv-int/9501008 Exactly Solvable and Integrable Systems +solv-int/9501009 Exactly Solvable and Integrable Systems +solv-int/9502001 Exactly Solvable and Integrable Systems +solv-int/9502002 Exactly Solvable and Integrable Systems +solv-int/9502006 Exactly Solvable and Integrable Systems +solv-int/9503001 Exactly Solvable and Integrable Systems +solv-int/9504001 Exactly Solvable and Integrable Systems +solv-int/9504002 Exactly Solvable and Integrable Systems +solv-int/9504003 Exactly Solvable and Integrable Systems +solv-int/9505002 Exactly Solvable and Integrable Systems +solv-int/9505003 Exactly Solvable and Integrable Systems +solv-int/9505005 Exactly Solvable and Integrable Systems +solv-int/9505006 Exactly Solvable and Integrable Systems +solv-int/9506001 Exactly Solvable and Integrable Systems +solv-int/9507001 Exactly Solvable and Integrable Systems +solv-int/9507004 Exactly Solvable and Integrable Systems +solv-int/9507005 Exactly Solvable and Integrable Systems +solv-int/9510008 Exactly Solvable and Integrable Systems +solv-int/9511008 Exactly Solvable and Integrable Systems +solv-int/9608001 Exactly Solvable and Integrable Systems +solv-int/9608002 Exactly Solvable and Integrable Systems +solv-int/9609001 Exactly Solvable and Integrable Systems +solv-int/9609004 Exactly Solvable and Integrable Systems +solv-int/9609005 Exactly Solvable and Integrable Systems +solv-int/9609009 Exactly Solvable and Integrable Systems +solv-int/9609010 Exactly Solvable and Integrable Systems +solv-int/9610005 Exactly Solvable and Integrable Systems +solv-int/9610012 Exactly Solvable and Integrable Systems +solv-int/9612004 Exactly Solvable and Integrable Systems +solv-int/9702003 Exactly Solvable and Integrable Systems +solv-int/9703003 Exactly Solvable and Integrable Systems +solv-int/9703006 Exactly Solvable and Integrable Systems +solv-int/9703007 Exactly Solvable and Integrable Systems +solv-int/9703009 Exactly Solvable and Integrable Systems +solv-int/9704001 Exactly Solvable and Integrable Systems +solv-int/9704002 Exactly Solvable and Integrable Systems +solv-int/9704010 Exactly Solvable and Integrable Systems +solv-int/9705006 Exactly Solvable and Integrable Systems +solv-int/9712001 Exactly Solvable and Integrable Systems +solv-int/9801011 Exactly Solvable and Integrable Systems +solv-int/9801022 Exactly Solvable and Integrable Systems +solv-int/9804008 Exactly Solvable and Integrable Systems +solv-int/9805003 Exactly Solvable and Integrable Systems +solv-int/9807002 Exactly Solvable and Integrable Systems +solv-int/9808001 Exactly Solvable and Integrable Systems +solv-int/9901005 Exactly Solvable and Integrable Systems +solv-int/9902010 Exactly Solvable and Integrable Systems +solv-int/9909028 Exactly Solvable and Integrable Systems +solv-int/9910003 Exactly Solvable and Integrable Systems +supr-con/9502001 Superconductivity +supr-con/9502002 Superconductivity +supr-con/9502003 Superconductivity +supr-con/9504001 Superconductivity +supr-con/9602001 Superconductivity +supr-con/9608004 Superconductivity +0706.1203 +1105.2036 Theory +1202.2475 Dynamical Systems +1205.5361 Dynamical Systems +1209.1219 Materials Science +1303.7143 Probability +1306.0894 General Physics +1306.2291 Programming Languages +1307.3761 Number Theory +1307.3763 Algebraic Geometry +1308.1538 Disordered Systems and Neural Networks +1308.2273 Populations and Evolution +1308.5738 Statistics Theory +1309.5026 Quantum Algebra +1310.0414 Symplectic Geometry +1310.3237 Number Theory +1310.8608 Group Theory +1312.4171 Algebraic Geometry +1312.7731 Superconductivity +1401.0310 Classical Analysis and ODEs +1401.3325 Logic in Computer Science +1401.5354 Combinatorics +1401.7107 Geometric Topology +1401.7824 Numerical Analysis +1401.7829 Numerical Analysis +1402.4846 Analysis of PDEs +1402.5763 Statistics Theory +1403.1922 Methodology +1403.2854 Probability +1403.3307 Symplectic Geometry +1404.1022 Symplectic Geometry +1405.6374 Probability +1406.4460 Differential Geometry +1406.6770 Metric Geometry +1407.1030 +1407.2392 Phenomenology +1407.4348 Cosmology and Nongalactic Astrophysics +1407.6598 Populations and Evolution +1407.6921 Phenomenology +1407.7689 Superconductivity +1408.4778 Algebraic Geometry +1409.3401 Algebraic Geometry +1409.7586 Optimization and Control +1410.3623 Number Theory +1410.7632 Computer Vision and Pattern Recognition +1411.0574 Phenomenology +1411.3892 Dynamical Systems +1411.7182 Number Theory +1412.4352 Optimization and Control +1501.01892 Optimization and Control +1501.03344 +1501.04837 Theory +1501.05707 Optics +1501.06423 Analysis of PDEs +1502.04242 Probability +1502.07086 +1503.00681 +1503.02683 Theory +1503.07179 +1503.08429 Theory +1503.09177 +1504.00790 +1504.02176 Phenomenology +1504.04933 Symplectic Geometry +1504.05108 Materials Science +1504.06430 +1504.07407 Dynamical Systems +1505.00304 Classical Analysis and ODEs +1505.00560 Probability +1505.02265 Analysis of PDEs +1505.04193 Strongly Correlated Electrons +1505.07543 Social and Information Networks +1506.00070 Superconductivity +1506.00139 Group Theory +1506.00143 Group Theory +1506.00741 Optimization and Control +1506.01040 General Physics +1506.02126 Numerical Analysis +1506.03040 Information Theory +1506.05820 Probability +1506.06561 Mesoscale and Nanoscale Physics +1506.06604 +1506.07884 +1506.08453 +1506.08808 +1506.08998 Phenomenology +1507.03476 Probability +1507.03983 Materials Science +1507.04712 Superconductivity +1507.04717 Machine Learning +1507.06253 Materials Science +1507.06842 +1507.08860 Biological Physics +1507.08885 Differential Geometry +1507.08909 +1508.03121 Theory +1508.03643 Number Theory +1508.05076 +1508.06073 Computer Vision and Pattern Recognition +1508.06966 Cell Behavior +1509.00996 Programming Languages +1509.01947 Computer Vision and Pattern Recognition +1509.03979 Data Structures and Algorithms +1509.06189 Optimization and Control +1509.07299 +1509.07324 +1509.07334 +1509.08053 Combinatorics +1509.08260 Atomic Physics +1509.08689 Optimization and Control +1509.08734 +1510.00097 Methodology +1510.01051 Superconductivity +1510.02448 Information Theory +1510.04519 Instrumentation and Detectors +1510.04550 Economics +1510.05409 Mesoscale and Nanoscale Physics +1510.05558 Quantum Gases +1510.05613 Computer Vision and Pattern Recognition +1510.05669 Phenomenology +1510.06183 Statistical Mechanics +1510.07019 +1510.07653 Statistical Mechanics +1510.08085 +1510.08821 +1510.08952 Information Theory +1510.09085 Physics and Society +1511.00371 Differential Geometry +1511.02806 +1511.02835 +1511.02917 Computer Vision and Pattern Recognition +1511.04346 Atomic Physics +1511.05111 Physics and Society +1511.05783 Algebraic Topology +1511.06528 Instrumentation and Detectors +1511.08855 Artificial Intelligence +1511.09351 Materials Science +1512.00568 Phenomenology +1512.01807 Mesoscale and Nanoscale Physics +1512.03367 +1512.03697 Data Structures and Algorithms +1512.04240 +1512.05192 General Physics +1512.05594 Dynamical Systems +1512.05910 Experiment +1512.06380 Number Theory +1512.07258 Social and Information Networks +1512.09133 Neurons and Cognition +1601.01063 Combinatorics +1601.01185 Quantum Gases +1601.03091 Phenomenology +1601.03479 Systems and Control +1601.03792 Algebraic Geometry +1601.03884 Cosmology and Nongalactic Astrophysics +1601.04256 Differential Geometry +1601.06905 Materials Science +1602.01161 Information Theory +1602.01607 High Energy Astrophysical Phenomena +1602.02356 Phenomenology +1602.02405 Combinatorics +1602.02830 Learning +1602.04003 Numerical Analysis +1602.04495 Classical Analysis and ODEs +1602.05836 Instrumentation and Methods for Astrophysics +1602.06307 Classical Analysis and ODEs +1602.06451 Number Theory +1602.06500 Information Theory +1602.06792 High Energy Astrophysical Phenomena +1602.07190 Plasma Physics +1602.07258 +1602.08395 Mesoscale and Nanoscale Physics +1602.08403 Mesoscale and Nanoscale Physics +1602.09003 Superconductivity +1603.00442 Populations and Evolution +1603.00461 Astrophysics of Galaxies +1603.01025 Neural and Evolutionary Computing +1603.01283 Number Theory +1603.01350 Differential Geometry +1603.01542 Cryptography and Security +1603.02346 Rings and Algebras +1603.03114 +1603.03217 Mesoscale and Nanoscale Physics +1603.03456 Geometric Topology +1603.03637 Probability +1603.03741 Combinatorics +1603.03966 Instrumentation and Methods for Astrophysics +1603.04566 Algebraic Geometry +1603.04700 Quantum Gases +1603.04751 +1603.04870 Numerical Analysis +1603.04933 Statistics Theory +1603.05145 Computer Vision and Pattern Recognition +1603.05243 Combinatorics +1603.05245 Theory +1603.05257 High Energy Astrophysical Phenomena +1603.05260 Atmospheric and Oceanic Physics +1603.05262 Theory +1603.05264 Differential Geometry +1603.05265 Applications +1603.05267 Optics +1603.05269 Information Theory +1603.05271 Combinatorics +1603.05274 Information Theory +1603.05290 Statistics Theory +1603.05291 Statistical Mechanics +1603.05292 +1603.05294 General Finance +1603.05300 Statistical Mechanics +1603.05303 Number Theory +1603.05306 Optics +1603.05307 Systems and Control +1603.05308 Probability +1603.05310 Computational Geometry +1603.05311 Populations and Evolution +1603.05314 Artificial Intelligence +1603.05318 Analysis of PDEs +1603.05319 Quantitative Methods +1603.05321 Functional Analysis +1603.05322 Probability +1603.05323 Theory +1603.05329 Analysis of PDEs +1603.05330 Group Theory +1603.05332 Numerical Analysis +1603.05333 History and Overview +1603.05334 Methodology +1603.05337 +1603.05339 +1603.05340 Dynamical Systems +1603.05341 Applications +1603.05342 Materials Science +1603.05345 Molecular Networks +1603.05347 Systems and Control +1603.05349 +1603.05352 Number Theory +1603.05353 Networking and Internet Architecture +1603.05355 Databases +1603.05356 Numerical Analysis +1603.05357 Complex Variables +1603.05358 Information Theory +1603.05360 Soft Condensed Matter +1603.05361 Systems and Control +1603.05362 Optimization and Control +1603.05365 Information Theory +1603.05367 Analysis of PDEs +1603.05368 Information Theory +1603.05369 Cryptography and Security +1603.05372 Numerical Analysis +1603.05374 Fluid Dynamics +1603.05378 Geometric Topology +1603.05379 Classical Analysis and ODEs +1603.05382 +1603.05384 Group Theory +1603.05389 Solar and Stellar Astrophysics +1603.05390 Metric Geometry +1603.05393 Physics and Society +1603.05394 Materials Science +1603.05395 Analysis of PDEs +1603.05399 Information Theory +1603.05406 Statistics Theory +1603.05407 Materials Science +1603.05408 Combinatorics +1603.05410 Information Theory +1603.05413 Instrumentation and Methods for Astrophysics +1603.05414 Computer Vision and Pattern Recognition +1603.05416 Statistics Theory +1603.05420 Pattern Formation and Solitons +1603.05422 Databases +1603.05424 Group Theory +1603.05426 Formal Languages and Automata Theory +1603.05428 +1603.05429 Combinatorics +1603.05430 Algebraic Geometry +1603.05431 Symplectic Geometry +1603.05434 Differential Geometry +1603.05435 Sound +1603.05436 +1603.05437 Probability +1603.05438 Mesoscale and Nanoscale Physics +1603.05441 Exactly Solvable and Integrable Systems +1603.05442 Soft Condensed Matter +1603.05444 Operator Algebras +1603.05445 Optimization and Control +1603.05447 Soft Condensed Matter +1603.05448 Category Theory +1603.05449 +1603.05451 Algebraic Geometry +1603.05457 Dynamical Systems +1603.05459 Distributed, Parallel, and Cluster Computing +1603.05461 Statistics Theory +1603.05462 Cryptography and Security +1603.05464 Dynamical Systems +1603.05465 Statistics Theory +1603.05468 Phenomenology +1603.05470 Social and Information Networks +1603.05475 Number Theory +1603.05480 Materials Science +1603.05481 Analysis of PDEs +1603.05482 Strongly Correlated Electrons +1603.05483 Spectral Theory +1603.05484 Statistics Theory +1603.05487 Distributed, Parallel, and Cluster Computing +1603.05489 Functional Analysis +1603.05490 Robotics +1603.05494 +1603.05496 Probability +1603.05499 Optimization and Control +1603.05506 High Energy Astrophysical Phenomena +1603.05515 General Mathematics +1603.05519 Quantum Algebra +1603.05520 Data Structures and Algorithms +1603.05522 Applications +1603.05526 Logic +1603.05527 Algebraic Geometry +1603.05528 Atomic Physics +1603.05530 +1603.05531 Probability +1603.05539 Number Theory +1603.05540 Information Theory +1603.05541 Algebraic Topology +1603.05543 Algebraic Geometry +1603.05547 Materials Science +1603.05550 Algebraic Geometry +1603.05553 Combinatorics +1603.05556 Logic +1603.05558 Mesoscale and Nanoscale Physics +1603.05559 Numerical Analysis +1603.05563 Instrumentation and Methods for Astrophysics +1603.05565 Analysis of PDEs +1603.05570 Computation and Language +1603.05573 Functional Analysis +1603.05574 Phenomenology +1603.05581 Other Computer Science +1603.05583 Other Computer Science +1603.05589 Mesoscale and Nanoscale Physics +1603.05594 Neural and Evolutionary Computing +1603.05596 Plasma Physics +1603.05599 Robotics +1603.05600 Computer Vision and Pattern Recognition +1603.05603 Materials Science +1603.05605 Subcellular Processes +1603.05606 Representation Theory +1603.05610 Analysis of PDEs +1603.05613 Algebraic Geometry +1603.05615 Cryptography and Security +1603.05620 Functional Analysis +1603.05623 Social and Information Networks +1603.05624 Optics +1603.05625 Logic in Computer Science +1603.05626 Representation Theory +1603.05627 Distributed, Parallel, and Cluster Computing +1603.05628 Networking and Internet Architecture +1603.05633 Fluid Dynamics +1603.05636 Operating Systems +1603.05637 Fluid Dynamics +1603.05639 Probability +1603.05641 Analysis of PDEs +gr-qc/0701012 +0707.1078 Soft Condensed Matter +0709.0349 Dynamical Systems +0804.0800 +0810.4414 +0902.4805 Phenomenology +0904.1275 +0906.3393 Algebraic Geometry +0910.2184 +0912.1214 Commutative Algebra +1002.4126 +1009.2603 +1012.5764 +1101.0475 +1104.5114 Optics +1112.1099 Combinatorics +1202.0254 Numerical Analysis +1205.4500 Numerical Analysis +1205.5029 Astrophysics of Galaxies +1207.1705 Combinatorics +1209.1116 Astrophysics of Galaxies +1209.1648 Analysis of PDEs +1209.2637 Cosmology and Nongalactic Astrophysics +1211.5525 Mesoscale and Nanoscale Physics +1211.5804 Analysis of PDEs +1212.1587 Dynamical Systems +1212.2130 Optics +1305.2740 Numerical Analysis +1305.4221 Mesoscale and Nanoscale Physics +1306.0386 Optimization and Control +1306.2428 Analysis of PDEs +1307.3460 Probability +1307.5574 Populations and Evolution +1308.6519 Probability +1311.2629 Algebraic Geometry +1312.1675 Geometric Topology +1401.0367 Optics +1401.2797 Statistical Mechanics +1401.3710 Statistical Mechanics +1402.3647 Applications +1402.5861 Probability +1403.1708 +1404.0925 Dynamical Systems +1404.2732 Mesoscale and Nanoscale Physics +1404.3592 Numerical Analysis +1404.5557 Statistics Theory +1405.6413 Optics +1406.3947 Analysis of PDEs +1406.6823 Mesoscale and Nanoscale Physics +1406.6853 Mesoscale and Nanoscale Physics +1407.1746 Data Structures and Algorithms +1407.5345 Optics +1407.6658 Analysis of PDEs +1408.1415 Atomic Physics +1408.2300 Mesoscale and Nanoscale Physics +1408.4092 Classical Analysis and ODEs +1409.2837 Statistical Mechanics +1409.5614 Number Theory +1409.8219 Probability +1410.1699 Numerical Analysis +1410.4526 +1410.6895 Numerical Analysis +1411.5083 Spectral Theory +1411.6796 Dynamical Systems +1412.1878 Mesoscale and Nanoscale Physics +1412.2465 Materials Science +1412.2615 Dynamical Systems +1412.2904 Strongly Correlated Electrons +1412.3280 Information Theory +1501.01473 Mesoscale and Nanoscale Physics +1501.03843 Materials Science +1501.04356 Strongly Correlated Electrons +1501.05568 Dynamical Systems +1501.07684 High Energy Astrophysical Phenomena +1502.01629 Numerical Analysis +1502.04969 Numerical Analysis +1502.05331 Genomics +1502.05420 Differential Geometry +1502.06575 Analysis of PDEs +1503.00221 Mesoscale and Nanoscale Physics +1503.02397 Analysis of PDEs +1503.04017 +1503.04428 Number Theory +1503.05649 Analysis of PDEs +1503.06461 +1504.00181 Cosmology and Nongalactic Astrophysics +1504.02094 Theory +1504.02409 Phenomenology +1504.06532 Analysis of PDEs +1504.07986 Commutative Algebra +1505.01135 Data Analysis, Statistics and Probability +1505.01452 +1505.02115 Strongly Correlated Electrons +1505.06490 Complex Variables +1505.07141 Number Theory +1505.07362 +1505.07894 Theory +1506.00094 +1506.00668 Mesoscale and Nanoscale Physics +1506.00852 Learning +1506.01911 Computer Vision and Pattern Recognition +1506.02208 Neurons and Cognition +1506.02914 Disordered Systems and Neural Networks +1506.03498 Disordered Systems and Neural Networks +1506.04804 Probability +1506.06823 Data Analysis, Statistics and Probability +1506.07913 Operator Algebras +1506.08752 Optimization and Control +1507.01722 Fluid Dynamics +1507.03967 Superconductivity +1507.04543 Phenomenology +1507.04764 Phenomenology +1507.05618 Cosmology and Nongalactic Astrophysics +1507.05870 Machine Learning +1508.00236 Statistical Mechanics +1508.02607 Phenomenology +1508.02940 Optimization and Control +1508.03273 +1508.04967 +1508.07605 Operator Algebras +1509.01021 Mesoscale and Nanoscale Physics +1509.01025 Mesoscale and Nanoscale Physics +1509.02111 Statistical Mechanics +1509.02541 Cosmology and Nongalactic Astrophysics +1509.02695 Probability +1509.03883 Algebraic Geometry +1509.04027 Optics +1509.04786 Phenomenology +1509.05762 +1509.06031 +1509.06691 +1509.07183 Mesoscale and Nanoscale Physics +1509.07304 Quantitative Methods +1509.08632 Functional Analysis +1510.01556 Representation Theory +1510.02261 Neurons and Cognition +1510.03158 +1510.03321 Phenomenology +1510.03480 Algebraic Geometry +1510.03581 +1510.03787 Quantum Gases +1510.06108 Systems and Control +1510.06745 Astrophysics of Galaxies +1510.07022 Mesoscale and Nanoscale Physics +1510.07229 Mesoscale and Nanoscale Physics +1510.08556 Algebraic Geometry +1510.08622 Physics and Society +1510.08673 Atomic Physics +1510.09113 +1511.01483 Phenomenology +1511.03255 Materials Science +1511.04300 Instrumentation and Detectors +1511.06271 Algebraic Geometry +1511.06392 Learning +1511.06429 Learning +1511.07086 Optimization and Control +1512.01894 Strongly Correlated Electrons +1512.02133 Group Theory +1512.02294 Strongly Correlated Electrons +1512.02385 Information Theory +1512.02711 +1512.03176 +1512.07048 Artificial Intelligence +1512.07056 Artificial Intelligence +1512.07690 Theory +1512.08736 Analysis of PDEs +1512.09066 Numerical Analysis +1601.01202 Symplectic Geometry +1601.03400 Astrophysics of Galaxies +1601.03435 Risk Management +1601.05274 Social and Information Networks +1601.05337 +1601.07107 Numerical Analysis +1601.07935 +1601.08107 Materials Science +1602.00334 Commutative Algebra +1602.01212 Differential Geometry +1602.01383 Symplectic Geometry +1602.01608 Robotics +1602.01990 Optics +1602.02335 Instrumentation and Detectors +1602.02450 Learning +1602.02623 Differential Geometry +1602.02744 Emerging Technologies +1602.03096 Optics +1602.03158 Combinatorics +1602.03171 Classical Physics +1602.03174 Chemical Physics +1602.03175 Theory +1602.03178 Instrumentation and Methods for Astrophysics +1602.03179 Mesoscale and Nanoscale Physics +1602.03186 Cosmology and Nongalactic Astrophysics +1602.03192 Cosmology and Nongalactic Astrophysics +1602.03193 Analysis of PDEs +1602.03194 Superconductivity +1602.03199 Cryptography and Security +1602.03201 Astrophysics of Galaxies +1602.03203 Artificial Intelligence +1602.03205 Cryptography and Security +1602.03207 Numerical Analysis +1602.03209 Logic +1602.03210 +1602.03214 Tissues and Organs +1602.03217 +1602.03221 Number Theory +1602.03228 Formal Languages and Automata Theory +1602.03231 Discrete Mathematics +1602.03236 Combinatorics +1602.03239 Logic +1602.03244 Cell Behavior +1602.03246 Combinatorics +1602.03247 Robotics +1602.03249 Instrumentation and Methods for Astrophysics +1602.03254 Programming Languages +1602.03255 Probability +1602.03256 Computer Vision and Pattern Recognition +1602.03263 Number Theory +1602.03267 Chemical Physics +1602.03271 Statistical Finance +1602.03274 Differential Geometry +1602.03277 Human-Computer Interaction +1602.03279 Geometric Topology +1602.03280 Optimization and Control +1602.03283 Information Theory +1602.03292 Number Theory +1602.03293 Analysis of PDEs +1602.03295 +1602.03298 Rings and Algebras +1602.03300 Analysis of PDEs +1602.03301 Analysis of PDEs +1602.03303 Distributed, Parallel, and Cluster Computing +1602.03307 Numerical Analysis +1602.03310 Strongly Correlated Electrons +1602.03313 Information Theory +1602.03314 Theory +1602.03316 Cryptography and Security +1602.03318 Numerical Analysis +1602.03322 Optics +1602.03323 Complex Variables +1602.03324 +1602.03328 Information Theory +1602.03332 Computational Complexity +1602.03333 Data Structures and Algorithms +1602.03334 Analysis of PDEs +1602.03337 Computers and Society +1602.03346 Computer Vision and Pattern Recognition +1602.03350 Networking and Internet Architecture +1602.03352 Optics +1602.03353 Soft Condensed Matter +1602.03354 Analysis of PDEs +1602.03356 Symplectic Geometry +1602.03357 Numerical Analysis +1602.03360 Numerical Analysis +1602.03361 History and Overview +1602.03363 Functional Analysis +1602.03364 Formal Languages and Automata Theory +1602.03365 History and Overview +1602.03367 Optimization and Control +1602.03368 Machine Learning +1602.03371 Differential Geometry +1602.03372 Mesoscale and Nanoscale Physics +1602.03378 Fluid Dynamics +1602.03379 Quantitative Methods +1602.03381 Strongly Correlated Electrons +1602.03382 General Mathematics +1602.03383 +1602.03384 Number Theory +1602.03386 Applications +1602.03387 Number Theory +1602.03388 Soft Condensed Matter +1602.03389 General Mathematics +1602.03390 General Mathematics +1602.03392 History and Overview +1602.03393 Analysis of PDEs +1602.03394 Spectral Theory +1602.03397 Materials Science +1602.03401 Phenomenology +1602.03402 Mathematical Finance +1602.03404 Distributed, Parallel, and Cluster Computing +1602.03406 Spectral Theory +1602.03407 Computational Geometry +1602.03408 General Mathematics +1602.03409 Computer Vision and Pattern Recognition +1602.03412 Category Theory +1602.03415 Soft Condensed Matter +1602.03416 Probability +1602.03419 Formal Languages and Automata Theory +1602.03424 Probability +1602.03428 Theory +1602.03429 Applications +1602.03432 Mesoscale and Nanoscale Physics +1602.03434 Physics and Society +1602.03435 General Mathematics +1602.03439 Dynamical Systems +1602.03441 +1602.03445 Group Theory +1602.03446 Complex Variables +1602.03449 Solar and Stellar Astrophysics +1602.03451 Algebraic Geometry +1602.03452 Solar and Stellar Astrophysics +1602.03453 Number Theory +1602.03454 Numerical Analysis +1602.03457 Solar and Stellar Astrophysics +1602.03458 Computer Vision and Pattern Recognition +1602.03464 Phenomenology +1602.03466 Mesoscale and Nanoscale Physics +1602.03472 Astrophysics of Galaxies +1602.03473 Combinatorics +1602.03478 +1602.03479 Group Theory +1602.03480 Geometric Topology +1602.03482 Plasma Physics +1602.03483 Computation and Language +1602.03490 Functional Analysis +1602.03493 Neurons and Cognition +1602.03495 +1602.03499 Probability +1602.03500 Number Theory +1602.03502 Computational Physics +1602.03503 Classical Analysis and ODEs +1602.03507 Statistical Mechanics +1602.03508 Information Theory +1602.03511 Optimization and Control +1602.03512 Cosmology and Nongalactic Astrophysics +1602.03513 Phenomenology +1602.03519 Analysis of PDEs +math-ph/0607023 +math-ph/0611076 +math-ph/0611077 +0704.3334 Quantum Algebra +0704.3515 Artificial Intelligence +0709.2113 Group Theory +0802.1150 Disordered Systems and Neural Networks +0808.0140 Algebraic Geometry +0811.0125 Metric Geometry +0811.4001 Group Theory +0812.3120 Information Theory +0902.0732 Algebraic Geometry +0909.3340 Lattice +0909.3966 Information Theory +0910.4667 Information Theory +0911.2558 Mesoscale and Nanoscale Physics +1005.1623 Metric Geometry +1009.4139 Theory +1010.4488 Mesoscale and Nanoscale Physics +1012.0299 Theory +1101.5052 Experiment +1106.2547 High Energy Astrophysical Phenomena +1108.4030 Algebraic Geometry +1109.0285 Cosmology and Nongalactic Astrophysics +1109.0998 Cosmology and Nongalactic Astrophysics +1109.5555 Theory +1109.6691 +1110.0470 Phenomenology +1203.6552 Number Theory +1203.6842 Solar and Stellar Astrophysics +1205.0005 Disordered Systems and Neural Networks +1206.1859 Cosmology and Nongalactic Astrophysics +1206.5923 Algebraic Geometry +1209.1596 Mesoscale and Nanoscale Physics +1210.7727 Differential Geometry +1211.5624 Rings and Algebras +1302.4769 Dynamical Systems +1302.5154 Classical Analysis and ODEs +1304.6579 Differential Geometry +1305.0440 Differential Geometry +1307.1920 +1307.7521 Information Theory +1307.7929 Group Theory +1308.6689 Combinatorics +1310.4626 Commutative Algebra +1310.5626 Probability +1310.8644 K-Theory and Homology +1311.0582 Computational Physics +1312.6803 Differential Geometry +1401.1296 Probability +1402.0126 Physics and Society +1402.2655 Cosmology and Nongalactic Astrophysics +1402.4563 Mesoscale and Nanoscale Physics +1402.6094 Plasma Physics +1402.6868 Analysis of PDEs +1403.1070 Human-Computer Interaction +1403.1232 Theory +1403.3027 +1403.4099 Computational Finance +1403.4779 Strongly Correlated Electrons +1403.7446 Computational Physics +1403.7448 Computational Physics +1404.0300 Social and Information Networks +1404.0611 +1404.0738 +1404.5513 Discrete Mathematics +1404.5841 Dynamical Systems +1404.5880 Materials Science +1404.6006 Dynamical Systems +1404.6275 Numerical Analysis +1404.7294 +1405.5110 Number Theory +1405.6400 Physics and Society +1405.6656 Functional Analysis +1406.3234 Probability +1406.5817 Risk Management +1407.0229 Complex Variables +1407.0369 Geophysics +1407.2602 Medical Physics +1407.3727 Optics +1407.5105 Neurons and Cognition +1407.6836 Systems and Control +1407.6888 Populations and Evolution +1407.7413 Statistical Mechanics +1408.0204 Machine Learning +1408.0423 +1408.1815 Dynamical Systems +1408.3028 Neurons and Cognition +1408.3236 Genomics +1408.5420 Physics and Society +1408.5558 Physics and Society +1409.1168 Dynamical Systems +1409.2495 Astrophysics of Galaxies +1409.3272 Genomics +1409.4927 Neurons and Cognition +1409.5155 Differential Geometry +1409.5648 Probability +1409.6007 Analysis of PDEs +1409.6336 Social and Information Networks +1409.6384 Genomics +1409.7035 Optics +1409.7211 Populations and Evolution +1409.7555 +1410.2184 Numerical Analysis +1410.2283 +1410.2445 Spectral Theory +1410.2496 Plasma Physics +1410.5357 Numerical Analysis +1410.5612 +1410.6140 Superconductivity +1410.7038 Soft Condensed Matter +1410.7277 +1410.7350 Populations and Evolution +1410.7671 Probability +1410.7996 Theory +1410.8072 Dynamical Systems +1410.8596 Quantitative Methods +1411.0548 Mesoscale and Nanoscale Physics +1411.1231 Analysis of PDEs +1411.1753 Mesoscale and Nanoscale Physics +1411.1942 Quantum Algebra +1411.2170 Astrophysics of Galaxies +1411.2957 +1411.3084 Social and Information Networks +1411.3131 Differential Geometry +1411.3831 Mesoscale and Nanoscale Physics +1411.3959 +1411.4334 Neurons and Cognition +1411.4770 Neurons and Cognition +1411.5746 Disordered Systems and Neural Networks +1411.6427 Representation Theory +1411.6554 Combinatorics +1411.7181 Combinatorics +1411.7782 Applications +1412.0203 Geophysics +1412.0304 Analysis of PDEs +1412.0306 Analysis of PDEs +1412.0794 Atomic Physics +1412.1292 Fluid Dynamics +1412.1509 Analysis of PDEs +1412.2153 Molecular Networks +1412.2620 Artificial Intelligence +1412.2958 Physics and Society +1412.3883 Exactly Solvable and Integrable Systems +1412.4639 Social and Information Networks +1412.5026 Populations and Evolution +1412.5434 Rings and Algebras +1412.5534 Analysis of PDEs +1412.7296 +1412.8307 Neural and Evolutionary Computing +1412.8435 +1412.8634 Molecular Networks +1412.8647 Numerical Analysis +1412.8667 Mesoscale and Nanoscale Physics +1501.00689 +1501.00727 Neurons and Cognition +1501.00752 Computer Vision and Pattern Recognition +1501.00970 +1501.01259 Geometric Topology +1501.01520 +1501.01677 Cell Behavior +1501.01765 +1501.02578 Phenomenology +1501.02694 Analysis of PDEs +1501.02719 Dynamical Systems +1501.02781 +1501.02883 Biological Physics +1501.03408 Number Theory +1501.03471 Computers and Society +1501.03550 Metric Geometry +1501.03621 +1501.03666 Exactly Solvable and Integrable Systems +1501.03693 Phenomenology +1501.03979 Phenomenology +1501.04320 Analysis of PDEs +1501.04711 Computer Vision and Pattern Recognition +1501.04753 Phenomenology +1501.04771 Mesoscale and Nanoscale Physics +1501.04992 General Finance +1501.05034 +1501.05362 +1501.05573 Theory +1501.06090 +1501.06149 Quantitative Methods +1501.06367 Phenomenology +1501.06414 Quantum Gases +1501.06516 Lattice +1501.06590 Biological Physics +1501.07152 Combinatorics +1501.07249 Phenomenology +1501.07378 Quantum Algebra +1501.07520 Phenomenology +1501.07541 +1501.07542 Analysis of PDEs +1501.07583 Analysis of PDEs +1501.07841 +1502.00086 Phenomenology +1502.00162 Materials Science +1502.00168 +1502.00456 Phenomenology +1502.01093 Representation Theory +1502.01219 Lattice +1502.01817 Quantum Gases +1502.01900 Disordered Systems and Neural Networks +1502.02000 Strongly Correlated Electrons +1502.02012 Algebraic Geometry +1502.02210 Phenomenology +1502.03034 Theory +1502.03344 +1502.03372 Distributed, Parallel, and Cluster Computing +1502.03608 Phenomenology +1502.03881 +1502.03906 Phenomenology +1502.04031 Phenomenology +1502.04230 +1502.04842 Analysis of PDEs +1502.04924 Number Theory +1502.05436 Soft Condensed Matter +1502.05812 Soft Condensed Matter +1502.05884 Computational Physics +1502.05917 +1502.06051 Strongly Correlated Electrons +1502.06191 Lattice +1502.06453 +1502.06508 Phenomenology +1502.06620 Theory +1502.06645 Theory +1502.06863 Strongly Correlated Electrons +1502.06866 Physics and Society +1502.06920 Strongly Correlated Electrons +1502.06928 Dynamical Systems +1502.07018 Fluid Dynamics +1502.07094 Mesoscale and Nanoscale Physics +1502.07766 Methodology +1502.07816 Neurons and Cognition +1502.07935 Materials Science +1503.00166 Fluid Dynamics +1503.00421 Physics and Society +1503.00447 +1503.00492 Analysis of PDEs +1503.00529 Populations and Evolution +1503.00616 +1503.00832 Physics and Society +1503.00862 Optics +1503.00924 Soft Condensed Matter +1503.00932 +1503.01036 Dynamical Systems +1503.01074 Instrumentation and Detectors +1503.01246 Analysis of PDEs +1503.01474 Theory +1503.01924 Mesoscale and Nanoscale Physics +1503.02610 Soft Condensed Matter +1503.02672 Phenomenology +1503.02676 Chaotic Dynamics +1503.03778 Statistical Mechanics +1503.04130 Soft Condensed Matter +1503.04224 Populations and Evolution +1503.04266 Plasma Physics +1503.04441 Superconductivity +1503.04459 Phenomenology +1503.04795 Physics and Society +1503.04969 Superconductivity +1503.05009 Phenomenology +1503.05211 Phenomenology +1503.05274 Soft Condensed Matter +1503.05465 Optics +1503.05752 Lattice +1503.05968 Optimization and Control +1503.05971 Populations and Evolution +1503.06065 Cosmology and Nongalactic Astrophysics +1503.06337 Spectral Theory +1503.06348 Cosmology and Nongalactic Astrophysics +1503.06552 Strongly Correlated Electrons +1503.06735 Materials Science +1503.06757 Probability +1503.06859 Functional Analysis +1503.07116 Populations and Evolution +1503.07446 Mesoscale and Nanoscale Physics +1503.07602 Materials Science +1503.07662 +1503.07743 Computational Physics +1503.07749 High Energy Astrophysical Phenomena +1503.07757 Physics and Society +1503.07930 Soft Condensed Matter +1503.08178 Materials Science +1503.08190 Mesoscale and Nanoscale Physics +1503.08324 Quantitative Methods +1503.08465 Computational Finance +1503.08521 Geometric Topology +1503.08591 Materials Science +1503.08608 +1503.08859 +1503.08893 Astrophysics of Galaxies +1503.09070 Data Analysis, Statistics and Probability +1503.09096 Materials Science +1503.09100 Physics and Society +1503.09185 Rings and Algebras +1504.00026 Quantum Gases +1504.00625 Probability +1504.00830 Analysis of PDEs +1504.01010 Analysis of PDEs +1504.01218 Information Theory +1504.01512 Materials Science +1504.01738 Theory +1504.01751 Astrophysics of Galaxies +1504.01857 Risk Management +1504.02031 Physics and Society +1504.02306 Data Structures and Algorithms +1504.02327 Soft Condensed Matter +1504.02631 Experiment +1504.02751 Populations and Evolution +1504.02776 Computational Physics +1504.02977 Metric Geometry +1504.03339 Cosmology and Nongalactic Astrophysics +1504.03432 Differential Geometry +1504.03463 Strongly Correlated Electrons +1504.03510 Phenomenology +1504.04124 Analysis of PDEs +1504.04387 Social and Information Networks +1504.04430 Biological Physics +1504.04946 Optics +1504.05063 +1504.05068 Soft Condensed Matter +1504.05143 Neural and Evolutionary Computing +1504.05163 Social and Information Networks +1504.05343 Mesoscale and Nanoscale Physics +1504.05571 +1504.05631 Biological Physics +1504.05746 +1504.05973 Quantum Gases +1504.05993 Cosmology and Nongalactic Astrophysics +1504.06034 Plasma Physics +1504.06091 Cell Behavior +1504.06497 Theory +1504.06956 Mesoscale and Nanoscale Physics +1504.07673 Phenomenology +1504.07709 Disordered Systems and Neural Networks +1504.07749 Phenomenology +1504.07781 Pattern Formation and Solitons +1504.07866 +1504.08207 Superconductivity +1504.08283 +1505.00052 Materials Science +1505.00127 Optics +1505.00134 Phenomenology +1505.00221 Theory +1505.00385 Mesoscale and Nanoscale Physics +1505.00403 Differential Geometry +1505.00673 Theory +1505.00890 Physics and Society +1505.00907 +1505.01400 Phenomenology +1505.01432 Materials Science +1505.01656 Strongly Correlated Electrons +1505.01723 Social and Information Networks +1505.02037 Computational Physics +1505.02042 +1505.02057 +1505.02198 Molecular Networks +1505.02275 Solar and Stellar Astrophysics +1505.02474 Molecular Networks +1505.02677 Phenomenology +1505.02704 Computational Physics +1505.02761 Physics and Society +1505.03095 Cell Behavior +1505.03504 Statistical Mechanics +1505.03515 Cosmology and Nongalactic Astrophysics +1505.03537 Physics and Society +1505.03778 Phenomenology +1505.03804 Physics and Society +1505.03856 Atomic Physics +1505.04330 Logic in Computer Science +1505.04453 Chaotic Dynamics +1505.04500 Materials Science +1505.04546 Distributed, Parallel, and Cluster Computing +1505.04568 +1505.04613 Molecular Networks +1505.04638 +1505.05230 Instrumentation and Methods for Astrophysics +1505.05304 Analysis of PDEs +1505.05320 Solar and Stellar Astrophysics +1505.05535 High Energy Astrophysical Phenomena +1505.05554 Phenomenology +1505.05618 Optics +1505.05828 Classical Physics +1505.06255 Fluid Dynamics +1505.06394 Exactly Solvable and Integrable Systems +1505.06436 Cosmology and Nongalactic Astrophysics +1505.06942 Phenomenology +1505.07105 Solar and Stellar Astrophysics +1505.07133 Biological Physics +1505.07166 Instrumentation and Detectors +1505.07433 Physics and Society +1505.07509 +1505.07706 Optics +1505.07748 Atmospheric and Oceanic Physics +1505.07978 Phenomenology +1505.08068 Mesoscale and Nanoscale Physics +1506.00234 Experiment +1506.00265 Theory +1506.00355 Soft Condensed Matter +1506.00524 +1506.00593 High Energy Astrophysical Phenomena +1506.00681 Biological Physics +1506.00773 Strongly Correlated Electrons +1506.00849 Astrophysics of Galaxies +1506.01175 High Energy Astrophysical Phenomena +1506.01258 Superconductivity +1506.01326 Numerical Analysis +1506.01593 Fluid Dynamics +1506.01637 +1506.01926 +1506.01994 Superconductivity +1506.02257 Phenomenology +1506.02421 Theory +1506.02609 Mesoscale and Nanoscale Physics +1506.02840 +1506.03199 +1506.03384 Fluid Dynamics +1506.03388 Theory +1506.03536 Cosmology and Nongalactic Astrophysics +1506.03793 Earth and Planetary Astrophysics +1506.03855 Numerical Analysis +1506.04285 Phenomenology +1506.04311 +1506.04322 Social and Information Networks +1506.04550 +1506.04727 Statistical Mechanics +1506.04768 +1506.05038 Soft Condensed Matter +1506.05177 Cosmology and Nongalactic Astrophysics +1506.05301 Phenomenology +1506.05463 High Energy Astrophysical Phenomena +1506.05515 +1506.05622 Strongly Correlated Electrons +1506.05659 Social and Information Networks +1506.06043 Soft Condensed Matter +1506.06244 Operator Algebras +1506.06375 Analysis of PDEs +1506.06465 Statistical Mechanics +1506.06658 Phenomenology +1506.06725 Atomic Physics +1506.06854 Soft Condensed Matter +1506.06928 Soft Condensed Matter +1506.06930 Analysis of PDEs +1506.07032 Physics and Society +1506.07315 Mesoscale and Nanoscale Physics +1506.07355 Cellular Automata and Lattice Gases +1506.07488 Probability +1506.07686 Probability +1506.07877 Cosmology and Nongalactic Astrophysics +1506.07894 Strongly Correlated Electrons +1506.08130 Theory +1506.08267 Optics +1506.08391 Neurons and Cognition +1506.08491 Phenomenology +1506.08829 Astrophysics of Galaxies +1506.08945 Pattern Formation and Solitons +1506.09014 Analysis of PDEs +1507.00028 +1507.00037 Materials Science +1507.00085 Fluid Dynamics +1507.00242 Mesoscale and Nanoscale Physics +1507.00330 +1507.00366 Populations and Evolution +1507.00423 +1507.00632 Optics +1507.00713 Astrophysics of Galaxies +1507.00739 +1507.00822 Statistical Mechanics +1507.00884 Solar and Stellar Astrophysics +1507.00927 Mesoscale and Nanoscale Physics +1507.00964 Computation +1507.00987 Theory +1507.01022 Theory +1507.01092 High Energy Astrophysical Phenomena +1507.01380 Physics and Society +1507.01458 Physics and Society +1507.01468 Biomolecules +1507.01487 Optics +1507.01681 Phenomenology +1507.01807 Optics +1507.02046 Solar and Stellar Astrophysics +1507.02167 Phenomenology +1507.02320 Superconductivity +1507.02371 Chaotic Dynamics +1507.02441 Superconductivity +1507.02448 Soft Condensed Matter +1507.02804 Soft Condensed Matter +1507.03035 K-Theory and Homology +1507.03072 Computational Physics +1507.03437 Operator Algebras +1507.03658 +1507.03690 Materials Science +1507.03695 Mesoscale and Nanoscale Physics +1507.03709 +1507.03972 Genomics +1507.03987 Quantum Gases +1507.04068 +1507.04192 Social and Information Networks +1507.04365 Cosmology and Nongalactic Astrophysics +1507.04424 Theory +1507.04476 Theory +1507.04524 Optics +1507.04690 Phenomenology +1507.04723 Materials Science +1507.04826 +1507.04936 Lattice +1507.05033 Computer Vision and Pattern Recognition +1507.05047 +1507.05058 Statistical Mechanics +1507.05142 Representation Theory +1507.05170 Phenomenology +1507.05247 +1507.05279 Strongly Correlated Electrons +1507.05340 Materials Science +1507.05403 Materials Science +1507.05433 Phenomenology +1507.05572 Computational Physics +1507.06192 Superconductivity +1507.06244 Computation +1507.06304 Cosmology and Nongalactic Astrophysics +1507.06325 Soft Condensed Matter +1507.06373 Quantum Gases +1507.06643 Computational Physics +1507.06657 Astrophysics of Galaxies +1507.06701 Astrophysics of Galaxies +1507.06730 Computational Physics +1507.06746 Physics and Society +1507.06759 Computation +1507.06795 Soft Condensed Matter +1507.06909 Quantum Gases +1507.06932 +1507.06942 Phenomenology +1507.06993 Phenomenology +1507.07224 Phenomenology +1507.07250 Theory +1507.07274 +1507.07373 Computational Physics +1507.07388 Classical Analysis and ODEs +1507.07543 Optics +1507.07585 Theory +1507.07765 Probability +1507.07774 Populations and Evolution +1507.08011 Solar and Stellar Astrophysics +1507.08078 Computational Physics +1507.08134 Experiment +1507.08169 Phenomenology +1507.08204 Phenomenology +1507.08307 Probability +1507.08508 +1507.08605 Materials Science +1507.08628 Theory +1507.08640 High Energy Astrophysical Phenomena +1507.08762 Mesoscale and Nanoscale Physics +1507.08831 Statistical Mechanics +1507.08851 Statistical Mechanics +1507.08966 Strongly Correlated Electrons +1508.00013 Astrophysics of Galaxies +1508.00084 Strongly Correlated Electrons +1508.00113 Strongly Correlated Electrons +1508.00162 Theory +1508.00197 Materials Science +1508.00314 Phenomenology +1508.00361 Probability +1508.00399 Data Analysis, Statistics and Probability +1508.00429 Neurons and Cognition +1508.00501 Theory +1508.00569 Phenomenology +1508.00575 High Energy Astrophysical Phenomena +1508.00619 Statistical Mechanics +1508.00819 Mesoscale and Nanoscale Physics +1508.00862 History and Philosophy of Physics +1508.00885 Phenomenology +1508.01107 Instrumentation and Detectors +1508.01200 Phenomenology +1508.01319 Superconductivity +1508.01645 Phenomenology +1508.01764 +1508.01781 Soft Condensed Matter +1508.02011 Quantum Gases +1508.02104 Cosmology and Nongalactic Astrophysics +1508.02119 High Energy Astrophysical Phenomena +1508.02221 +1508.02253 Information Theory +1508.02273 Combinatorics +1508.02381 Astrophysics of Galaxies +1508.02455 +1508.02544 Phenomenology +1508.02676 Theory +1508.02921 Optics +1508.02924 Materials Science +1508.03046 Astrophysics of Galaxies +1508.03095 Earth and Planetary Astrophysics +1508.03100 Cosmology and Nongalactic Astrophysics +1508.03120 Optics +1508.03125 Atomic and Molecular Clusters +1508.03143 Phenomenology +1508.03356 +1508.03413 Theory +1508.03542 Physics and Society +1508.03581 +1508.03887 +1508.04085 Plasma Physics +1508.04139 Theory +1508.04165 Lattice +1508.04194 Numerical Analysis +1508.04233 Experiment +1508.04277 Theory +1508.04357 Strongly Correlated Electrons +1508.04473 Cosmology and Nongalactic Astrophysics +1508.04563 Materials Science +1508.04569 Cosmology and Nongalactic Astrophysics +1508.04621 Astrophysics of Galaxies +1508.04699 +1508.04708 +1508.04825 Mesoscale and Nanoscale Physics +1508.05067 Cosmology and Nongalactic Astrophysics +1508.05093 High Energy Astrophysical Phenomena +1508.05127 Quantum Gases +1508.05184 Mesoscale and Nanoscale Physics +1508.05191 Optics +1508.05245 +1508.05338 +1508.05349 Optics +1508.05451 +1508.05478 Statistical Mechanics +1508.05484 Physics and Society +1508.05499 Biomolecules +1508.05552 Lattice +1508.05560 Astrophysics of Galaxies +1508.05632 Phenomenology +1508.05744 Phenomenology +1508.05899 Analysis of PDEs +1508.05925 Superconductivity +1508.06281 Astrophysics of Galaxies +1508.06348 Superconductivity +1508.06349 +1508.06375 Algebraic Geometry +1508.06590 Dynamical Systems +1508.06748 +1508.06761 Quantum Gases +1508.06820 Instrumentation and Detectors +1508.06841 Phenomenology +1508.06938 Lattice +1508.06941 Applications +1508.06970 Optics +1508.07021 +1508.07046 Instrumentation and Detectors +1508.07323 +1508.07339 Optics +1508.07471 Phenomenology +1508.07495 Materials Science +1508.07664 +1508.07686 Phenomenology +1508.07728 Theory +1508.07811 Phenomenology +1508.07858 Materials Science +1508.07868 Phenomenology +1509.00031 Theory +1509.00034 Astrophysics of Galaxies +1509.00052 Computational Physics +1509.00097 +1509.00194 +1509.00217 Statistical Finance +1509.00305 Phenomenology +1509.00356 +1509.00365 +1509.00411 Other Quantitative Biology +1509.00468 Statistical Mechanics +1509.00499 Phenomenology +1509.00698 Biological Physics +1509.00750 Instrumentation and Detectors +1509.00755 Populations and Evolution +1509.00770 Instrumentation and Detectors +1509.00790 Mesoscale and Nanoscale Physics +1509.00856 Astrophysics of Galaxies +1509.00908 Instrumentation and Methods for Astrophysics +1509.00968 Theory +1509.01069 +1509.01114 Instrumentation and Detectors +1509.01416 Phenomenology +1509.01424 Quantum Gases +1509.01452 +1509.01507 Materials Science +1509.01585 Phenomenology +1509.01639 Strongly Correlated Electrons +1509.01720 Strongly Correlated Electrons +1509.01835 +1509.01855 Superconductivity +1509.01896 +1509.01907 Solar and Stellar Astrophysics +1509.02014 +1509.02024 Experiment +1509.02051 Astrophysics of Galaxies +1509.02082 Phenomenology +1509.02105 Phenomenology +1509.02162 Cosmology and Nongalactic Astrophysics +1509.02169 Theory +1509.02175 Cosmology and Nongalactic Astrophysics +1509.02240 +1509.02274 Phenomenology +1509.02388 +1509.02499 Instrumentation and Detectors +1509.02829 Probability +1509.02899 Exactly Solvable and Integrable Systems +1509.03011 Fluid Dynamics +1509.03178 Instrumentation and Detectors +1509.03190 Phenomenology +1509.03373 Mesoscale and Nanoscale Physics +1509.03376 Optics +1509.03392 Phenomenology +1509.03433 Statistical Mechanics +1509.03440 Disordered Systems and Neural Networks +1509.03450 +1509.03583 Phenomenology +1509.03587 +1509.03601 Materials Science +1509.03678 Physics and Society +1509.03715 Lattice +1509.03886 Materials Science +1509.03929 Solar and Stellar Astrophysics +1509.03930 Cosmology and Nongalactic Astrophysics +1509.03985 Systems and Control +1509.04061 Theory +1509.04134 Materials Science +1509.04182 Solar and Stellar Astrophysics +1509.04293 Cosmology and Nongalactic Astrophysics +1509.04307 Commutative Algebra +1509.04361 Materials Science +1509.04455 +1509.04459 +1509.04486 Applications +1509.04512 Materials Science +1509.04530 Phenomenology +1509.04616 Lattice +1509.04778 Mesoscale and Nanoscale Physics +1509.04890 Theory +1509.05117 Social and Information Networks +1509.05218 Phenomenology +1509.05231 Statistical Mechanics +1509.05252 Phenomenology +1509.05253 +1509.05379 +1509.05383 +1509.05419 Cosmology and Nongalactic Astrophysics +1509.05440 Materials Science +1509.05482 +1509.05549 Atomic Physics +1509.05560 Superconductivity +1509.05607 Cosmology and Nongalactic Astrophysics +1509.05630 Solar and Stellar Astrophysics +1509.05734 Differential Geometry +1509.05798 Physics and Society +1509.05887 Phenomenology +1509.05889 +1509.05893 Soft Condensed Matter +1509.06120 Mesoscale and Nanoscale Physics +1509.06122 Phenomenology +1509.06244 Statistical Mechanics +1509.06248 Phenomenology +1509.06312 +1509.06371 Cosmology and Nongalactic Astrophysics +1509.06391 Astrophysics of Galaxies +1509.06455 Superconductivity +1509.06487 Solar and Stellar Astrophysics +1509.06526 Mesoscale and Nanoscale Physics +1509.06527 Optics +1509.06539 Plasma Physics +1509.06613 +1509.06623 Materials Science +1509.06630 Complex Variables +1509.06648 +1509.06680 Phenomenology +1509.06744 Soft Condensed Matter +1509.06754 Solar and Stellar Astrophysics +1509.06761 Theory +1509.06791 Learning +1509.06936 +1509.06944 +1509.07002 Materials Science +1509.07072 Phenomenology +1509.07143 +1509.07151 Physics and Society +1509.07159 +1509.07259 Phenomenology +1509.07271 Physics and Society +1509.07351 +1509.07439 Quantum Gases +1509.07475 Theory +1509.07633 +1509.07654 Mesoscale and Nanoscale Physics +1509.07701 +1509.07850 Astrophysics of Galaxies +1509.07854 Theory +1509.07895 +1509.07940 Differential Geometry +1509.07979 Computer Vision and Pattern Recognition +1509.08060 Mesoscale and Nanoscale Physics +1509.08077 Solar and Stellar Astrophysics +1509.08078 +1509.08092 Fluid Dynamics +1509.08099 Phenomenology +1509.08109 Soft Condensed Matter +1509.08134 Mesoscale and Nanoscale Physics +1509.08164 Theory +1509.08250 Astrophysics of Galaxies +1509.08350 Statistical Mechanics +1509.08426 Phenomenology +1509.08465 Social and Information Networks +1509.08481 Phenomenology +1509.08625 +1509.08854 Phenomenology +1509.08914 Astrophysics of Galaxies +1509.08982 Astrophysics of Galaxies +1509.08986 Theory +1509.09001 Astrophysics of Galaxies +1509.09150 Phenomenology +1509.09262 Computational Physics +1509.09263 Differential Geometry +1509.09291 Theory +1510.00009 Phenomenology +1510.00015 Earth and Planetary Astrophysics +1510.00016 Optics +1510.00063 +1510.00067 Earth and Planetary Astrophysics +1510.00079 Optics +1510.00130 Medical Physics +1510.00147 Cosmology and Nongalactic Astrophysics +1510.00232 Theory +1510.00246 Phenomenology +1510.00299 Atomic and Molecular Clusters +1510.00361 Materials Science +1510.00472 Phenomenology +1510.00650 Phenomenology +1510.00652 Quantum Gases +1510.00666 Phenomenology +1510.00825 +1510.00835 Theory +1510.00847 +1510.00852 Astrophysics of Galaxies +1510.00867 +1510.00947 Instrumentation and Detectors +1510.01099 Theory +1510.01136 Astrophysics of Galaxies +1510.01151 Solar and Stellar Astrophysics +1510.01338 High Energy Astrophysical Phenomena +1510.01390 Probability +1510.01517 Phenomenology +1510.01575 Theory +1510.01578 +1510.01587 Materials Science +1510.01600 Strongly Correlated Electrons +1510.01652 +1510.01774 Theory +1510.01818 +1510.01828 Statistical Mechanics +1510.01876 Instrumentation and Detectors +1510.01945 Plasma Physics +1510.01990 Theory +1510.02001 Quantum Gases +1510.02080 Phenomenology +1510.02136 +1510.02227 Statistical Mechanics +1510.02262 Lattice +1510.02265 Lattice +1510.02468 Chemical Physics +1510.02507 Cosmology and Nongalactic Astrophysics +1510.02511 Solar and Stellar Astrophysics +1510.02534 Mesoscale and Nanoscale Physics +1510.02537 Instrumentation and Methods for Astrophysics +1510.02543 Solar and Stellar Astrophysics +1510.02548 Statistical Mechanics +1510.02651 Solar and Stellar Astrophysics +1510.02788 Astrophysics of Galaxies +1510.02802 Astrophysics of Galaxies +1510.02878 Exactly Solvable and Integrable Systems +1510.02883 +1510.02953 Phenomenology +1510.03017 +1510.03105 Computation +1510.03107 Instrumentation and Methods for Astrophysics +1510.03116 Instrumentation and Detectors +1510.03120 Phenomenology +1510.03124 High Energy Astrophysical Phenomena +1510.03313 Theory +1510.03352 +1510.03358 Algebraic Geometry +1510.03486 Cosmology and Nongalactic Astrophysics +1510.03524 Theory +1510.03540 +1510.03553 Theory +1510.03582 Theory +1510.03674 Pattern Formation and Solitons +1510.03778 Theory +1510.03806 Cosmology and Nongalactic Astrophysics +1510.03813 Solar and Stellar Astrophysics +1510.03874 Instrumentation and Detectors +1510.03893 Numerical Analysis +1510.03911 +1510.03954 Theory +1510.04138 Mesoscale and Nanoscale Physics +1510.04150 Statistical Mechanics +1510.04153 Lattice +1510.04211 Solar and Stellar Astrophysics +1510.04248 Phenomenology +1510.04433 Astrophysics of Galaxies +1510.04459 Strongly Correlated Electrons +1510.04468 Phenomenology +1510.04502 Mesoscale and Nanoscale Physics +1510.04651 +1510.04694 Phenomenology +1510.04730 Biomolecules +1510.04749 Strongly Correlated Electrons +1510.04757 Quantum Gases +1510.04788 Strongly Correlated Electrons +1510.04792 Mesoscale and Nanoscale Physics +1510.04978 Theory +1510.04999 Theory +1510.05002 Optics +1510.05005 High Energy Astrophysical Phenomena +1510.05040 Solar and Stellar Astrophysics +1510.05083 Statistical Mechanics +1510.05119 Differential Geometry +1510.05321 Statistical Mechanics +1510.05447 +1510.05451 Phenomenology +1510.05499 +1510.05580 Statistical Mechanics +1510.05599 Mesoscale and Nanoscale Physics +1510.05743 Plasma Physics +1510.05840 Solar and Stellar Astrophysics +1510.05913 Mesoscale and Nanoscale Physics +1510.05939 +1510.06045 Solar and Stellar Astrophysics +1510.06069 Phenomenology +1510.06135 High Energy Astrophysical Phenomena +1510.06279 Analysis of PDEs +1510.06286 Solar and Stellar Astrophysics +1510.06398 High Energy Astrophysical Phenomena +1510.06631 Astrophysics of Galaxies +1510.06685 Theory +1510.06698 Statistical Mechanics +1510.06740 Astrophysics of Galaxies +1510.06808 Phenomenology +1510.06824 +1510.06901 Materials Science +1510.06922 Mesoscale and Nanoscale Physics +1510.07050 Astrophysics of Galaxies +1510.07078 Quantum Gases +1510.07114 Plasma Physics +1510.07149 +1510.07265 Phenomenology +1510.07348 Optics +1510.07639 High Energy Astrophysical Phenomena +1510.07642 High Energy Astrophysical Phenomena +1510.07659 Astrophysics of Galaxies +1510.07688 Phenomenology +1510.07803 Phenomenology +1510.07815 +1510.07827 Solar and Stellar Astrophysics +1510.07872 Phenomenology +1510.07892 Astrophysics of Galaxies +1510.07911 Theory +1510.08033 Phenomenology +1510.08052 Optics +1510.08059 Theory +1510.08184 Phenomenology +1510.08462 Phenomenology +1510.08476 Solar and Stellar Astrophysics +1510.08486 Theory +1510.08514 Phenomenology +1510.08516 +1510.08561 Materials Science +1510.08615 Statistical Finance +1510.08617 Statistical Mechanics +1510.08645 +1510.08676 Solar and Stellar Astrophysics +1510.08696 Phenomenology +1510.08721 +1510.08744 +1510.08850 Phenomenology +1510.08852 Cosmology and Nongalactic Astrophysics +1510.08869 High Energy Astrophysical Phenomena +1510.08872 Theory +1510.09030 Atomic Physics +1510.09074 Superconductivity +1510.09125 Theory +1511.00067 Sound +1511.00210 +1511.00416 Instrumentation and Detectors +1511.00589 Cosmology and Nongalactic Astrophysics +1511.00624 Materials Science +1511.00643 Earth and Planetary Astrophysics +1511.00683 Phenomenology +1511.00713 Theory +1511.00716 Physics and Society +1511.00865 Phenomenology +1511.00880 Mesoscale and Nanoscale Physics +1511.00907 Phenomenology +1511.00930 Atomic Physics +1511.01055 Optics +1511.01098 Astrophysics of Galaxies +1511.01164 Phenomenology +1511.01256 Solar and Stellar Astrophysics +1511.01283 Instrumentation and Detectors +1511.01434 High Energy Astrophysical Phenomena +1511.01485 Theory +1511.01491 Theory +1511.01521 Cosmology and Nongalactic Astrophysics +1511.01524 +1511.01785 High Energy Astrophysical Phenomena +1511.01926 Astrophysics of Galaxies +1511.01948 High Energy Astrophysical Phenomena +1511.02003 Solar and Stellar Astrophysics +1511.02026 Biological Physics +1511.02078 Theory +1511.02137 +1511.02164 +1511.02167 Theory +1511.02232 High Energy Astrophysical Phenomena +1511.02255 Materials Science +1511.02396 Solar and Stellar Astrophysics +1511.02438 +1511.02571 Phenomenology +1511.02628 Mesoscale and Nanoscale Physics +1511.02634 +1511.02635 Theory +1511.02645 Mesoscale and Nanoscale Physics +1511.02663 High Energy Astrophysical Phenomena +1511.02671 Theory +1511.02736 Mesoscale and Nanoscale Physics +1511.02764 Phenomenology +1511.02827 Mesoscale and Nanoscale Physics +1511.02883 Astrophysics of Galaxies +1511.02884 Algebraic Geometry +1511.02936 +1511.03274 Earth and Planetary Astrophysics +1511.03290 Phenomenology +1511.03332 Optics +1511.03636 Statistical Mechanics +1511.03637 Theory +1511.03661 Solar and Stellar Astrophysics +1511.03681 Theory +1511.03758 Strongly Correlated Electrons +1511.03787 Superconductivity +1511.03792 Soft Condensed Matter +1511.03868 Theory +1511.03884 Instrumentation and Detectors +1511.03964 Representation Theory +1511.03986 +1511.04010 Classical Analysis and ODEs +1511.04044 Mesoscale and Nanoscale Physics +1511.04076 Earth and Planetary Astrophysics +1511.04082 Earth and Planetary Astrophysics +1511.04133 Soft Condensed Matter +1511.04143 Artificial Intelligence +1511.04147 Astrophysics of Galaxies +1511.04205 Astrophysics of Galaxies +1511.04283 Phenomenology +1511.04284 +1511.04341 General Physics +1511.04358 +1511.04390 Instrumentation and Detectors +1511.04452 Phenomenology +1511.04521 Materials Science +1511.04559 +1511.04567 Rings and Algebras +1511.04611 Instrumentation and Detectors +1511.04756 Instrumentation and Detectors +1511.04832 Mesoscale and Nanoscale Physics +1511.04842 Lattice +1511.04860 Phenomenology +1511.04873 Quantum Gases +1511.04974 Fluid Dynamics +1511.05030 Phenomenology +1511.05113 Experiment +1511.05119 Theory +1511.05128 Theory +1511.05138 Astrophysics of Galaxies +1511.05207 Earth and Planetary Astrophysics +1511.05230 Dynamical Systems +1511.05348 Astrophysics of Galaxies +1511.05373 Fluid Dynamics +1511.05408 Phenomenology +1511.05471 Theory +1511.05473 Phenomenology +1511.05482 +1511.05494 Astrophysics of Galaxies +1511.05496 Earth and Planetary Astrophysics +1511.05560 Theory +1511.05570 Earth and Planetary Astrophysics +1511.05574 Astrophysics of Galaxies +1511.05586 Solar and Stellar Astrophysics +1511.05608 Astrophysics of Galaxies +1511.05805 +1511.05855 Instrumentation and Detectors +1511.05975 Theory +1511.05990 Phenomenology +1511.05999 +1511.06009 Optics +1511.06042 Materials Science +1511.06079 Theory +1511.06151 Materials Science +1511.06152 +1511.06194 Theory +1511.06241 Learning +1511.06261 Phenomenology +1511.06362 Learning +1511.06369 Astrophysics of Galaxies +1511.06556 Earth and Planetary Astrophysics +1511.06596 Solar and Stellar Astrophysics +1511.06655 Computational Physics +1511.06775 Physics and Society +1511.06908 Statistical Mechanics +1511.07081 +1511.07107 High Energy Astrophysical Phenomena +1511.07189 Instrumentation and Detectors +1511.07191 Materials Science +1511.07260 Solar and Stellar Astrophysics +1511.07377 Cosmology and Nongalactic Astrophysics +1511.07468 Earth and Planetary Astrophysics +1511.07619 Materials Science +1511.07681 High Energy Astrophysical Phenomena +1511.07856 Cosmology and Nongalactic Astrophysics +1511.07887 Materials Science +1511.08016 Phenomenology +1511.08067 Superconductivity +1511.08109 Optics +1511.08160 +1511.08213 Astrophysics of Galaxies +1511.08219 Astrophysics of Galaxies +1511.08221 Theory +1511.08252 Astrophysics of Galaxies +1511.08266 +1511.08345 Probability +1511.08367 Physics and Society +1511.08513 Physics and Society +1511.08597 Chemical Physics +1511.08612 Phenomenology +1511.08615 Statistical Mechanics +1511.08706 Theory +1511.08909 +1511.08919 Chemical Physics +1511.08924 High Energy Astrophysical Phenomena +1511.09082 Solar and Stellar Astrophysics +1511.09118 Earth and Planetary Astrophysics +1511.09183 Earth and Planetary Astrophysics +1511.09215 Solar and Stellar Astrophysics +1511.09275 Commutative Algebra +1511.09308 Instrumentation and Detectors +1511.09401 Earth and Planetary Astrophysics +1512.00020 High Energy Astrophysical Phenomena +1512.00032 +1512.00033 Neurons and Cognition +1512.00132 Solar and Stellar Astrophysics +1512.00200 Materials Science +1512.00390 Mesoscale and Nanoscale Physics +1512.00410 Cosmology and Nongalactic Astrophysics +1512.00416 Solar and Stellar Astrophysics +1512.00419 +1512.00483 Earth and Planetary Astrophysics +1512.00498 Materials Science +1512.00528 Materials Science +1512.00545 Theory +1512.00749 High Energy Astrophysical Phenomena +1512.00778 High Energy Astrophysical Phenomena +1512.00846 High Energy Astrophysical Phenomena +1512.00852 Cosmology and Nongalactic Astrophysics +1512.00893 Solar and Stellar Astrophysics +1512.00923 High Energy Astrophysical Phenomena +1512.00974 Strongly Correlated Electrons +1512.00981 Phenomenology +1512.01019 Soft Condensed Matter +1512.01082 Phenomenology +1512.01164 Solar and Stellar Astrophysics +1512.01244 Astrophysics of Galaxies +1512.01298 Cosmology and Nongalactic Astrophysics +1512.01315 High Energy Astrophysical Phenomena +1512.01338 Chemical Physics +1512.01344 Social and Information Networks +1512.01380 Theory +1512.01404 Phenomenology +1512.01501 Superconductivity +1512.01520 Plasma Physics +1512.01529 Solar and Stellar Astrophysics +1512.01546 Instrumentation and Methods for Astrophysics +1512.01599 Phenomenology +1512.01611 Instrumentation and Methods for Astrophysics +1512.01718 Analysis of PDEs +1512.01943 Cell Behavior +1512.01960 Solar and Stellar Astrophysics +1512.02064 Earth and Planetary Astrophysics +1512.02142 +1512.02185 Theory +1512.02234 Earth and Planetary Astrophysics +1512.02287 Theory +1512.02293 Theory +1512.02342 Astrophysics of Galaxies +1512.02353 Strongly Correlated Electrons +1512.02370 Quantum Algebra +1512.02501 Phenomenology +1512.02616 High Energy Astrophysical Phenomena +1512.02629 Astrophysics of Galaxies +1512.02655 High Energy Astrophysical Phenomena +1512.02659 Theory +1512.02682 Astrophysics of Galaxies +1512.02692 +1512.02724 Earth and Planetary Astrophysics +1512.02768 Astrophysics of Galaxies +1512.02799 Optics +1512.02815 Atomic Physics +1512.02841 +1512.02917 Space Physics +1512.02935 Numerical Analysis +1512.02965 Earth and Planetary Astrophysics +1512.02980 Solar and Stellar Astrophysics +1512.02999 +1512.03053 Cosmology and Nongalactic Astrophysics +1512.03065 High Energy Astrophysical Phenomena +1512.03108 Solar and Stellar Astrophysics +1512.03154 Phenomenology +1512.03193 Earth and Planetary Astrophysics +1512.03240 +1512.03243 Solar and Stellar Astrophysics +1512.03260 Astrophysics of Galaxies +1512.03346 Materials Science +1512.03438 Astrophysics of Galaxies +1512.03454 Solar and Stellar Astrophysics +1512.03535 Earth and Planetary Astrophysics +1512.03662 Instrumentation and Methods for Astrophysics +1512.03722 Earth and Planetary Astrophysics +1512.03831 Solar and Stellar Astrophysics +1512.03895 Mesoscale and Nanoscale Physics +1512.03960 +1512.03961 Phenomenology +1512.04080 Theory +1512.04086 Computer Vision and Pattern Recognition +1512.04139 +1512.04148 Solar and Stellar Astrophysics +1512.04198 Solar and Stellar Astrophysics +1512.04256 Astrophysics of Galaxies +1512.04308 +1512.04417 Solar and Stellar Astrophysics +1512.04422 Atomic Physics +1512.04443 Theory +1512.04450 Earth and Planetary Astrophysics +1512.04464 High Energy Astrophysical Phenomena +1512.04537 Cosmology and Nongalactic Astrophysics +1512.04540 Earth and Planetary Astrophysics +1512.04559 Astrophysics of Galaxies +1512.04561 Astrophysics of Galaxies +1512.04571 Strongly Correlated Electrons +1512.04584 Instrumentation and Detectors +1512.04727 Solar and Stellar Astrophysics +1512.04843 Atomic Physics +1512.04854 Astrophysics of Galaxies +1512.04916 Computational Finance +1512.04992 Solar and Stellar Astrophysics +1512.05026 High Energy Astrophysical Phenomena +1512.05046 Instrumentation and Methods for Astrophysics +1512.05049 High Energy Astrophysical Phenomena +1512.05133 Astrophysics of Galaxies +1512.05147 Solar and Stellar Astrophysics +1512.05154 Earth and Planetary Astrophysics +1512.05240 +1512.05296 Solar and Stellar Astrophysics +1512.05352 High Energy Astrophysical Phenomena +1512.05371 Solar and Stellar Astrophysics +1512.05386 Physics and Society +1512.05393 Solar and Stellar Astrophysics +1512.05452 Astrophysics of Galaxies +1512.05459 Solar and Stellar Astrophysics +1512.05485 Physics and Society +1512.05493 Phenomenology +1512.05497 Human-Computer Interaction +1512.05589 Astrophysics of Galaxies +1512.05736 Solar and Stellar Astrophysics +1512.05784 Astrophysics of Galaxies +1512.05877 Astrophysics of Galaxies +1512.05964 Superconductivity +1512.06043 Solar and Stellar Astrophysics +1512.06052 Theory +1512.06077 High Energy Astrophysical Phenomena +1512.06279 Astrophysics of Galaxies +1512.06340 Superconductivity +1512.06373 Theory +1512.06453 +1512.06467 Astrophysics of Galaxies +1512.06470 Earth and Planetary Astrophysics +1512.06535 High Energy Astrophysical Phenomena +1512.06552 Chemical Physics +1512.06568 Theory +1512.06700 Phenomenology +1512.06816 +1512.07047 Astrophysics of Galaxies +1512.07058 Astrophysics of Galaxies +1512.07093 +1512.07141 Phenomenology +1512.07197 Solar and Stellar Astrophysics +1512.07224 Cosmology and Nongalactic Astrophysics +1512.07259 Earth and Planetary Astrophysics +1512.07299 Instrumentation and Methods for Astrophysics +1512.07316 Earth and Planetary Astrophysics +1512.07327 Superconductivity +1512.07335 Astrophysics of Galaxies +1512.07398 Experiment +1512.07504 Phenomenology +1512.07509 Astrophysics of Galaxies +1512.07525 Solar and Stellar Astrophysics +1512.07558 High Energy Astrophysical Phenomena +1512.07656 Quantum Gases +1512.07663 Instrumentation and Methods for Astrophysics +1512.07746 Strongly Correlated Electrons +1512.07816 +1512.07846 +1512.08072 Astrophysics of Galaxies +1512.08101 Biomolecules +1512.08126 +1512.08145 Astrophysics of Galaxies +1512.08182 Earth and Planetary Astrophysics +1512.08196 High Energy Astrophysical Phenomena +1512.08313 Mesoscale and Nanoscale Physics +1512.08398 Pattern Formation and Solitons +1512.08443 Phenomenology +1512.08463 Solar and Stellar Astrophysics +1512.08538 Neurons and Cognition +1512.08543 Astrophysics of Galaxies +1512.08558 Solar and Stellar Astrophysics +1512.08582 Solar and Stellar Astrophysics +1512.08653 Statistical Mechanics +1512.08659 Solar and Stellar Astrophysics +1512.08687 Solar and Stellar Astrophysics +1512.08692 Strongly Correlated Electrons +1512.08698 Strongly Correlated Electrons +1512.08797 Earth and Planetary Astrophysics +1512.08908 Solar and Stellar Astrophysics +1512.08909 Materials Science +1512.08955 Theory +1512.08978 Solar and Stellar Astrophysics +1512.08999 Solar and Stellar Astrophysics +1512.09015 High Energy Astrophysical Phenomena +1512.09150 Earth and Planetary Astrophysics +1601.00002 Solar and Stellar Astrophysics +1601.00018 Solar and Stellar Astrophysics +1601.00038 Solar and Stellar Astrophysics +1601.00066 Earth and Planetary Astrophysics +1601.00201 Astrophysics of Galaxies +1601.00208 Astrophysics of Galaxies +1601.00218 Solar and Stellar Astrophysics +1601.00282 Astrophysics of Galaxies +1601.00297 Phenomenology +1601.00358 Earth and Planetary Astrophysics +1601.00366 Soft Condensed Matter +1601.00391 Mesoscale and Nanoscale Physics +1601.00394 Astrophysics of Galaxies +1601.00494 Astrophysics of Galaxies +1601.00542 Optics +1601.00585 +1601.00594 +1601.00649 Astrophysics of Galaxies +1601.00651 Solar and Stellar Astrophysics +1601.00659 Astrophysics of Galaxies +1601.00692 Solar and Stellar Astrophysics +1601.00789 Earth and Planetary Astrophysics +1601.00906 Astrophysics of Galaxies +1601.00953 Astrophysics of Galaxies +1601.00974 Astrophysics of Galaxies +1601.00976 Solar and Stellar Astrophysics +1601.01084 Astrophysics of Galaxies +1601.01138 Strongly Correlated Electrons +1601.01141 Optics +1601.01155 Mesoscale and Nanoscale Physics +1601.01163 Phenomenology +1601.01171 Instrumentation and Detectors +1601.01199 Digital Libraries +1601.01258 Astrophysics of Galaxies +1601.01317 Astrophysics of Galaxies +1601.01359 Solar and Stellar Astrophysics +1601.01391 Astrophysics of Galaxies +1601.01407 High Energy Astrophysical Phenomena +1601.01459 Solar and Stellar Astrophysics +1601.01479 Astrophysics of Galaxies +1601.01486 Earth and Planetary Astrophysics +1601.01524 Solar and Stellar Astrophysics +1601.01535 Solar and Stellar Astrophysics +1601.01555 Solar and Stellar Astrophysics +1601.01589 Astrophysics of Galaxies +1601.01635 Artificial Intelligence +1601.01686 Astrophysics of Galaxies +1601.01689 Astrophysics of Galaxies +1601.01693 High Energy Astrophysical Phenomena +1601.01698 Astrophysics of Galaxies +1601.01752 Astrophysics of Galaxies +1601.01801 +1601.01820 Cosmology and Nongalactic Astrophysics +1601.01829 Solar and Stellar Astrophysics +1601.01845 Solar and Stellar Astrophysics +1601.01877 Solar and Stellar Astrophysics +1601.01896 Solar and Stellar Astrophysics +1601.01905 +1601.01969 Solar and Stellar Astrophysics +1601.01989 Astrophysics of Galaxies +1601.02019 Solar and Stellar Astrophysics +1601.02021 Astrophysics of Galaxies +1601.02022 Astrophysics of Galaxies +1601.02058 Earth and Planetary Astrophysics +1601.02070 Atomic Physics +1601.02101 Fluid Dynamics +1601.02209 Solar and Stellar Astrophysics +1601.02228 Solar and Stellar Astrophysics +1601.02256 Earth and Planetary Astrophysics +1601.02266 Astrophysics of Galaxies +1601.02268 Solar and Stellar Astrophysics +1601.02272 Earth and Planetary Astrophysics +1601.02282 Astrophysics of Galaxies +1601.02302 Astrophysics of Galaxies +1601.02355 Medical Physics +1601.02368 Solar and Stellar Astrophysics +1601.02386 Astrophysics of Galaxies +1601.02406 Solar and Stellar Astrophysics +1601.02580 Instrumentation and Methods for Astrophysics +1601.02597 Astrophysics of Galaxies +1601.02613 Astrophysics of Galaxies +1601.02629 Astrophysics of Galaxies +1601.02636 Superconductivity +1601.02638 High Energy Astrophysical Phenomena +1601.02642 Solar and Stellar Astrophysics +1601.02702 High Energy Astrophysical Phenomena +1601.02706 Earth and Planetary Astrophysics +1601.02713 Chemical Physics +1601.02715 High Energy Astrophysical Phenomena +1601.02736 Optics +1601.02816 High Energy Astrophysical Phenomena +1601.02833 Earth and Planetary Astrophysics +1601.02837 +1601.02841 Solar and Stellar Astrophysics +1601.02855 +1601.02868 Materials Science +1601.02892 Solar and Stellar Astrophysics +1601.02909 Earth and Planetary Astrophysics +1601.03039 Astrophysics of Galaxies +1601.03053 Solar and Stellar Astrophysics +1601.03054 Solar and Stellar Astrophysics +1601.03090 Astrophysics of Galaxies +1601.03198 Solar and Stellar Astrophysics +1601.03208 High Energy Astrophysical Phenomena +1601.03292 Astrophysics of Galaxies +1601.03377 Solar and Stellar Astrophysics +1601.03392 High Energy Astrophysical Phenomena +1601.03398 High Energy Astrophysical Phenomena +1601.03402 Solar and Stellar Astrophysics +1601.03442 Astrophysics of Galaxies +1601.03541 Information Retrieval +1601.03591 Astrophysics of Galaxies +1601.03608 Earth and Planetary Astrophysics +1601.03709 Earth and Planetary Astrophysics +1601.03713 Earth and Planetary Astrophysics +1601.03738 High Energy Astrophysical Phenomena +1601.03869 Plasma Physics +1601.03920 Astrophysics of Galaxies +1601.04085 Solar and Stellar Astrophysics +1601.04145 High Energy Astrophysical Phenomena +1601.04177 +1601.04279 High Energy Astrophysical Phenomena +1601.04292 Mesoscale and Nanoscale Physics +1601.04327 Mesoscale and Nanoscale Physics +1601.04330 Pattern Formation and Solitons +1601.04408 Accelerator Physics +1601.04541 Soft Condensed Matter +1601.04550 High Energy Astrophysical Phenomena +1601.04579 Instrumentation and Detectors +1601.04629 Algebraic Geometry +1601.04638 Probability +1601.04660 Cosmology and Nongalactic Astrophysics +1601.04704 Astrophysics of Galaxies +1601.04750 High Energy Astrophysical Phenomena +1601.04806 +1601.04969 Solar and Stellar Astrophysics +1601.04985 High Energy Astrophysical Phenomena +1601.05008 Atomic Physics +1601.05031 +1601.05084 Solar and Stellar Astrophysics +1601.05182 Earth and Planetary Astrophysics +1601.05236 Solar and Stellar Astrophysics +1601.05255 Phenomenology +1601.05395 +1601.05410 High Energy Astrophysical Phenomena +1601.05442 Instrumentation and Detectors +1601.05478 High Energy Astrophysical Phenomena +1601.05492 Solar and Stellar Astrophysics +1601.05866 +1601.05926 High Energy Astrophysical Phenomena +1601.05986 Solar and Stellar Astrophysics +1601.06560 Earth and Planetary Astrophysics +1601.06586 +1601.06590 High Energy Astrophysical Phenomena +1601.06793 Cosmology and Nongalactic Astrophysics +1601.06797 Astrophysics of Galaxies +1601.07162 Astrophysics of Galaxies +1601.07220 Plasma Physics +1601.07248 Earth and Planetary Astrophysics +1601.07390 Computational Physics +1601.07554 Astrophysics of Galaxies +1601.07578 Astrophysics of Galaxies +1601.07669 Astrophysics of Galaxies +1601.07725 Mesoscale and Nanoscale Physics +1601.07857 Cosmology and Nongalactic Astrophysics +1601.07919 Solar and Stellar Astrophysics +1601.08052 Astrophysics of Galaxies +1601.08069 Solar and Stellar Astrophysics +1601.08137 +1601.08171 Earth and Planetary Astrophysics +1601.08200 Solar and Stellar Astrophysics +1601.08228 Astrophysics of Galaxies +1602.00003 Astrophysics of Galaxies +1602.00273 Theory +1602.00342 Dynamical Systems +1602.00379 Phenomenology +1602.00427 Superconductivity +1602.00505 High Energy Astrophysical Phenomena +1602.00550 Solar and Stellar Astrophysics +1602.00652 Astrophysics of Galaxies +1602.00667 Physics and Society +1602.00751 Earth and Planetary Astrophysics +1602.00899 Probability +1602.00939 Strongly Correlated Electrons +1602.01008 Cosmology and Nongalactic Astrophysics +1602.01053 Category Theory +1602.01091 High Energy Astrophysical Phenomena +1602.01094 High Energy Astrophysical Phenomena +1602.01096 Astrophysics of Galaxies +1602.01123 Astrophysics of Galaxies +1602.01368 Earth and Planetary Astrophysics +1602.01467 Solar and Stellar Astrophysics +1602.01628 Artificial Intelligence +1602.01746 Cosmology and Nongalactic Astrophysics +1602.01813 Materials Science +1602.01881 Astrophysics of Galaxies +1602.01976 Mesoscale and Nanoscale Physics +1602.02052 Software Engineering +1602.02105 Instrumentation and Methods for Astrophysics +1602.02247 Instrumentation and Methods for Astrophysics +1602.02358 Databases +1602.02534 Astrophysics of Galaxies +1602.02535 Solar and Stellar Astrophysics +1602.02585 Solar and Stellar Astrophysics +1602.02753 Astrophysics of Galaxies +1602.02755 Astrophysics of Galaxies +1602.02756 Astrophysics of Galaxies +1602.02762 Astrophysics of Galaxies +1602.02789 Astrophysics of Galaxies +1602.02871 Classical Analysis and ODEs +1602.02872 Instrumentation and Detectors +1602.02922 Astrophysics of Galaxies +1602.02977 Solar and Stellar Astrophysics +1602.03183 Solar and Stellar Astrophysics +1602.03187 Astrophysics of Galaxies +1602.03219 Soft Condensed Matter +1602.03242 High Energy Astrophysical Phenomena +1602.03262 Computational Physics +1602.03467 Earth and Planetary Astrophysics +1602.03485 Soft Condensed Matter +1602.03488 Earth and Planetary Astrophysics +1602.03695 Cosmology and Nongalactic Astrophysics +1602.03717 Materials Science +1602.03730 Databases +1602.03846 High Energy Astrophysical Phenomena +1602.04013 Mesoscale and Nanoscale Physics +1602.04434 Learning +1602.04446 Theory +1602.04789 Classical Analysis and ODEs +1602.04807 Operator Algebras +1602.04822 Phenomenology +1602.04828 +1602.04829 Theory +1602.04832 Astrophysics of Galaxies +1602.04833 Optics +1602.04834 Classical Analysis and ODEs +1602.04836 Classical Analysis and ODEs +1602.04838 Phenomenology +1602.04839 Classical Analysis and ODEs +1602.04840 +1602.04841 Human-Computer Interaction +1602.04846 Algebraic Topology +1602.04847 Optimization and Control +1602.04851 Optimization and Control +1602.04853 Physics and Society +1602.04855 Numerical Analysis +1602.04862 Methodology +1602.04868 Computer Vision and Pattern Recognition +1602.04869 Physics Education +1602.04871 Physics Education +1602.04872 Physics Education +1602.04873 Distributed, Parallel, and Cluster Computing +1602.04877 Information Theory +1602.04878 Computers and Society +1602.04880 Fluid Dynamics +1602.04882 Functional Analysis +1602.04886 Computer Vision and Pattern Recognition +1602.04887 Probability +1602.04891 Soft Condensed Matter +1602.04893 Fluid Dynamics +1602.04894 Geometric Topology +1602.04896 Mesoscale and Nanoscale Physics +1602.04903 Optics +1602.04905 +1602.04906 Computer Vision and Pattern Recognition +1602.04908 Symplectic Geometry +1602.04909 Combinatorics +1602.04910 Methodology +1602.04914 Soft Condensed Matter +1602.04917 Materials Science +1602.04918 Robotics +1602.04919 Rings and Algebras +1602.04920 Number Theory +1602.04922 Computational Geometry +1602.04924 Information Retrieval +1602.04931 Materials Science +1602.04933 Neural and Evolutionary Computing +1602.04934 Logic in Computer Science +1602.04935 Optimization and Control +1602.04936 Artificial Intelligence +1602.04937 Superconductivity +1602.04939 Numerical Analysis +1602.04941 Statistics Theory +1602.04943 Algebraic Topology +1602.04944 Algebraic Geometry +1602.04945 Algebraic Geometry +1602.04946 Mathematical Finance +1602.04947 Algebraic Geometry +1602.04948 Algebraic Geometry +1602.04949 Superconductivity +1602.04957 Probability +1602.04966 +1602.04974 Other Computer Science +1602.04975 Portfolio Management +1602.04977 Astrophysics of Galaxies +1602.04978 Differential Geometry +1602.04980 Networking and Internet Architecture +1602.04981 Robotics +1602.04982 Mesoscale and Nanoscale Physics +1602.04983 Information Retrieval +1602.04989 Operator Algebras +1602.04990 +1602.04994 Classical Analysis and ODEs +1602.04998 Number Theory +1602.05001 Classical Analysis and ODEs +1602.05006 +1602.05007 Analysis of PDEs +1602.05008 Statistical Mechanics +1602.05010 Logic in Computer Science +1602.05011 Dynamical Systems +1602.05016 Data Structures and Algorithms +1602.05018 Analysis of PDEs +1602.05019 Analysis of PDEs +1602.05021 Instrumentation and Methods for Astrophysics +1602.05023 Computation +1602.05026 Theory +1602.05034 Complex Variables +1602.05035 Strongly Correlated Electrons +1602.05036 Classical Analysis and ODEs +1602.05037 Representation Theory +1602.05040 Logic in Computer Science +1602.05044 Chemical Physics +1602.05046 +1602.05048 Applications +1602.05051 Rings and Algebras +1602.05054 Materials Science +1602.05055 Algebraic Geometry +1602.05056 Information Theory +1602.05057 Mesoscale and Nanoscale Physics +1602.05059 Computational Complexity +1602.05062 Geometric Topology +1602.05063 Information Theory +1602.05066 Analysis of PDEs +1602.05067 Computers and Society +1602.05072 Information Theory +1602.05073 Metric Geometry +1602.05074 +1602.05079 Functional Analysis +1602.05080 Numerical Analysis +1602.05081 Functional Analysis +1602.05082 Category Theory +1602.05091 Differential Geometry +1602.05093 Analysis of PDEs +1602.05109 Computers and Society +1602.05111 +1602.05115 +1602.05117 Classical Analysis and ODEs +1602.05119 Chaotic Dynamics +1602.05124 Data Analysis, Statistics and Probability +1602.05127 Learning +1602.05130 Optimization and Control +1602.05131 Probability +1602.05132 Combinatorics +1602.05134 Robotics +1602.05137 Phenomenology +1602.05139 Group Theory +1602.05141 Phenomenology +1602.05142 Computers and Society +1602.05151 Logic in Computer Science +1602.05154 Instrumentation and Detectors +1602.05156 Category Theory +1602.05159 Astrophysics of Galaxies +1602.05161 Learning +1602.05162 Statistics Theory +1602.05165 High Energy Astrophysical Phenomena +1602.05166 +1602.05167 Molecular Networks +1602.05168 Computer Vision and Pattern Recognition +1602.05169 Combinatorics +1602.05170 Computers and Society +1602.05171 +1602.05172 Dynamical Systems +1602.05174 Plasma Physics +1602.05175 Populations and Evolution +1602.05177 Quantitative Methods +1602.05178 Cosmology and Nongalactic Astrophysics +1602.05181 Discrete Mathematics +1602.05182 Combinatorics +1602.05184 Combinatorics +alg-geom/9412006 Algebraic Geometry +astro-ph/0406425 +astro-ph/0407053 +astro-ph/0503374 +astro-ph/9511017 +astro-ph/9711241 +astro-ph/9802112 +cs/0010017 Sound +cs/0502053 Information Theory +hep-ph/0209113 Phenomenology +hep-ph/9711308 Phenomenology +hep-th/0101153 Theory +hep-th/0212035 Theory +hep-th/0306050 Theory +hep-th/0312193 Theory +nucl-th/9410036 +q-bio/0607013 Neurons and Cognition +quant-ph/0010084 +quant-ph/0110134 +quant-ph/9911081 +quant-ph/9911089 +0810.3156 Plasma Physics +0902.4902 Algebraic Geometry +0909.1738 Cosmology and Nongalactic Astrophysics +1003.3971 Algebraic Geometry +1009.5285 Analysis of PDEs +1103.4763 Fluid Dynamics +1108.0948 Analysis of PDEs +1201.2331 Rings and Algebras +1201.5797 +1205.6448 Representation Theory +1212.0568 Analysis of PDEs +1301.0232 High Energy Astrophysical Phenomena +1301.3362 High Energy Astrophysical Phenomena +1301.7143 Differential Geometry +1309.3290 Earth and Planetary Astrophysics +1309.6903 Logic +1310.1020 Pricing of Securities +1310.3262 +1401.5298 +1403.6542 Symplectic Geometry +1404.4531 Plasma Physics +1404.7347 Information Theory +1405.4896 Probability +1406.0881 +1406.2002 Astrophysics of Galaxies +1409.1096 Quantitative Methods +1409.6323 Analysis of PDEs +1410.0313 Complex Variables +1410.1132 Numerical Analysis +1410.2438 Algebraic Geometry +1410.2661 Classical Analysis and ODEs +1410.3435 Mesoscale and Nanoscale Physics +1410.5385 Dynamical Systems +1410.6576 Dynamical Systems +1410.7894 Number Theory +1411.0217 Neural and Evolutionary Computing +1411.1252 Functional Analysis +1411.7387 Cosmology and Nongalactic Astrophysics +1411.7981 Algebraic Topology +1412.3701 Computer Science and Game Theory +1412.7540 Phenomenology +1501.02602 K-Theory and Homology +1501.04176 Cosmology and Nongalactic Astrophysics +1501.06204 Earth and Planetary Astrophysics +1501.06900 +1501.07440 Information Theory +1502.00877 Spectral Theory +1502.00961 Earth and Planetary Astrophysics +1502.01249 Earth and Planetary Astrophysics +1502.01383 Algebraic Geometry +1502.01628 Earth and Planetary Astrophysics +1502.02240 Algebraic Topology +1502.02361 Earth and Planetary Astrophysics +1502.03307 Earth and Planetary Astrophysics +1502.03929 Earth and Planetary Astrophysics +1502.04646 +1502.04816 Earth and Planetary Astrophysics +1502.04995 Algebraic Topology +1502.05008 Earth and Planetary Astrophysics +1502.06302 Earth and Planetary Astrophysics +1502.06442 Earth and Planetary Astrophysics +1502.07362 Mesoscale and Nanoscale Physics +1502.07831 Methodology +1503.01931 Earth and Planetary Astrophysics +1503.04272 Earth and Planetary Astrophysics +1504.00034 Earth and Planetary Astrophysics +1504.02389 Earth and Planetary Astrophysics +1504.03848 Strongly Correlated Electrons +1504.04037 +1504.04889 Probability +1504.06643 Phenomenology +1504.07346 Phenomenology +1504.08157 Functional Analysis +1505.00336 +1505.01632 Numerical Analysis +1505.02941 Earth and Planetary Astrophysics +1505.03598 Analysis of PDEs +1505.03926 Mesoscale and Nanoscale Physics +1506.00150 Earth and Planetary Astrophysics +1506.00351 Geometric Topology +1506.01267 High Energy Astrophysical Phenomena +1506.01658 Earth and Planetary Astrophysics +1506.02044 Cosmology and Nongalactic Astrophysics +1506.04691 Strongly Correlated Electrons +1506.04805 Earth and Planetary Astrophysics +1506.06689 Earth and Planetary Astrophysics +1506.07297 Optimization and Control +1506.07346 Functional Analysis +1507.02892 Dynamical Systems +1507.03999 Astrophysics of Galaxies +1507.05530 Dynamical Systems +1507.08764 Experiment +1507.08834 Networking and Internet Architecture +1508.00386 Combinatorics +1508.01848 Strongly Correlated Electrons +1508.03014 Geometric Topology +1508.03330 +1508.03954 Mathematical Software +1508.05323 High Energy Astrophysical Phenomena +1508.05575 Earth and Planetary Astrophysics +1508.05779 Materials Science +1508.06300 Analysis of PDEs +1508.07670 Combinatorics +1509.02085 +1509.02283 Complex Variables +1509.02475 Combinatorics +1509.03752 Physics and Society +1509.03893 Experiment +1509.04755 Earth and Planetary Astrophysics +1509.04999 Dynamical Systems +1509.05059 +1509.05504 Instrumentation and Methods for Astrophysics +1509.05850 Cosmology and Nongalactic Astrophysics +1509.05979 Analysis of PDEs +1509.06343 +1509.07228 Earth and Planetary Astrophysics +1509.07285 Physics and Society +1509.07396 Optics +1509.08172 Probability +1509.08236 Disordered Systems and Neural Networks +1509.08748 Number Theory +1509.08861 Representation Theory +1510.00434 Earth and Planetary Astrophysics +1510.01740 Cosmology and Nongalactic Astrophysics +1510.01980 Solar and Stellar Astrophysics +1510.02547 Mesoscale and Nanoscale Physics +1510.04081 +1510.04737 Phenomenology +1510.05123 Portfolio Management +1510.05442 Soft Condensed Matter +1510.06560 +1510.06587 Multiagent Systems +1510.06984 Rings and Algebras +1510.07024 Cosmology and Nongalactic Astrophysics +1510.07685 Instrumentation and Methods for Astrophysics +1511.01371 Strongly Correlated Electrons +1511.01932 Numerical Analysis +1511.03282 Superconductivity +1511.03877 Mesoscale and Nanoscale Physics +1511.04930 Information Theory +1511.05860 Information Theory +1511.07314 Combinatorics +1511.07495 Strongly Correlated Electrons +1511.08506 +1511.08646 Materials Science +1511.08752 +1511.09295 Networking and Internet Architecture +1512.00174 Computational Geometry +1512.00672 Superconductivity +1512.01403 Statistical Mechanics +1512.01497 +1512.02270 +1512.02386 +1512.02848 Strongly Correlated Electrons +1512.03472 Combinatorics +1512.04213 Atomic Physics +1512.05010 Analysis of PDEs +1512.05697 Statistical Mechanics +1512.06422 Phenomenology +1512.06871 Theory +1512.07437 Quantitative Methods +1512.07540 Mesoscale and Nanoscale Physics +1512.07655 Combinatorics +1512.07853 Phenomenology +1512.08129 +1512.08151 Fluid Dynamics +1512.09030 Strongly Correlated Electrons +1601.00280 Astrophysics of Galaxies +1601.01762 Strongly Correlated Electrons +1601.02619 Mesoscale and Nanoscale Physics +1601.03234 High Energy Astrophysical Phenomena +1601.04227 Instrumentation and Methods for Astrophysics +1601.04464 Cosmology and Nongalactic Astrophysics +1601.05158 Quantitative Methods +1601.05577 Number Theory +1601.05826 Algebraic Geometry +1601.06053 Mesoscale and Nanoscale Physics +1601.06183 Logic in Computer Science +1601.06302 Quantum Gases +1601.06958 Statistical Mechanics +1601.07499 Other Condensed Matter +1601.07796 +1601.07840 Theory +1601.07955 Earth and Planetary Astrophysics +1602.00208 Number Theory +1602.00838 Instrumentation and Methods for Astrophysics +1602.01313 Cosmology and Nongalactic Astrophysics +1602.01410 Computer Vision and Pattern Recognition +1602.01477 Mesoscale and Nanoscale Physics +1602.01878 Statistical Mechanics +1602.01894 Number Theory +1602.01924 Algebraic Geometry +1602.02224 Fluid Dynamics +1602.03088 Earth and Planetary Astrophysics +1602.03177 High Energy Astrophysical Phenomena +1602.03358 Complex Variables +1602.04240 Metric Geometry +1602.04995 Computational Geometry +1602.05041 Number Theory +1602.05673 Cosmology and Nongalactic Astrophysics +1602.05978 Classical Analysis and ODEs +1602.07021 Number Theory +1603.00018 Phenomenology +1603.00066 +1603.00101 Cosmology and Nongalactic Astrophysics +1603.00212 Disordered Systems and Neural Networks +1603.00402 +1603.00476 Cosmology and Nongalactic Astrophysics +1603.00711 Algebraic Geometry +1603.01137 Algebraic Topology +1603.01755 Atomic Physics +1603.01958 +1603.01984 +1603.02300 Astrophysics of Galaxies +1603.02815 Optics +1603.02850 Materials Science +1603.02913 Experiment +1603.02976 Accelerator Physics +1603.03085 Astrophysics of Galaxies +1603.03249 Biological Physics +1603.03264 Instrumentation and Methods for Astrophysics +1603.03754 Mesoscale and Nanoscale Physics +1603.03832 Number Theory +1603.03974 Materials Science +1603.04610 Robotics +1603.04679 Phenomenology +1603.04806 Materials Science +1603.04956 +1603.04972 Logic +1603.05040 Cosmology and Nongalactic Astrophysics +1603.05056 Quantum Gases +1603.05194 High Energy Astrophysical Phenomena +1603.05281 Astrophysics of Galaxies +1603.05601 Phenomenology +1603.05747 Quantum Gases +1603.05797 Astrophysics of Galaxies +1603.05827 +1603.05992 Astrophysics of Galaxies +1603.06350 Phenomenology +1603.06519 Cosmology and Nongalactic Astrophysics +1603.06570 High Energy Astrophysical Phenomena +1603.06587 Cosmology and Nongalactic Astrophysics +1603.06607 +1603.06761 +1603.06952 Astrophysics of Galaxies +1603.07013 Soft Condensed Matter +1603.07325 Astrophysics of Galaxies +1603.07417 Artificial Intelligence +1603.07623 High Energy Astrophysical Phenomena +1603.08001 Disordered Systems and Neural Networks +1603.08510 Theory +1603.08932 Phenomenology +1603.09024 Soft Condensed Matter +1603.09296 Phenomenology +1603.09298 Theory +1603.09351 Cosmology and Nongalactic Astrophysics +1603.09397 Populations and Evolution +1603.09619 Phenomenology +1604.00112 Solar and Stellar Astrophysics +1604.00124 +1604.00724 Materials Science +1604.01216 Astrophysics of Galaxies +1604.01314 Astrophysics of Galaxies +1604.01382 Cosmology and Nongalactic Astrophysics +1604.01479 Quantum Gases +1604.01613 Solar and Stellar Astrophysics +1604.01731 Phenomenology +1604.01746 +1604.01766 Theory +1604.01772 Theory +1604.01991 Algebraic Geometry +1604.02157 Phenomenology +1604.02367 Solar and Stellar Astrophysics +1604.03148 Soft Condensed Matter +1604.03455 Superconductivity +1604.03940 Phenomenology +1604.04352 Phenomenology +1604.04601 Earth and Planetary Astrophysics +1604.04987 +1604.05099 Cosmology and Nongalactic Astrophysics +1604.05145 Mesoscale and Nanoscale Physics +1604.05323 Astrophysics of Galaxies +1604.05346 Solar and Stellar Astrophysics +1604.05716 High Energy Astrophysical Phenomena +1604.05982 Phenomenology +1604.06082 Quantum Gases +1604.06165 Earth and Planetary Astrophysics +1604.06273 Theory +1604.06289 Solar and Stellar Astrophysics +1604.06312 +1604.06326 Strongly Correlated Electrons +1604.06506 Computer Vision and Pattern Recognition +1604.06700 Strongly Correlated Electrons +1604.07438 Phenomenology +1604.07455 Strongly Correlated Electrons +1604.07512 Strongly Correlated Electrons +1604.07548 +1604.07589 Solar and Stellar Astrophysics +1604.07716 Phenomenology +1604.07773 Experiment +1604.07838 Phenomenology +1604.08427 Phenomenology +1604.08490 Cryptography and Security +1604.08587 Astrophysics of Galaxies +1604.08598 Strongly Correlated Electrons +1604.08611 Astrophysics of Galaxies +1604.08644 High Energy Astrophysical Phenomena +1604.08797 Computational Geometry +1605.00008 Cosmology and Nongalactic Astrophysics +1605.00427 Soft Condensed Matter +1605.00789 +1605.01538 Plasma Physics +1605.01562 Adaptation and Self-Organizing Systems +1605.02023 Mesoscale and Nanoscale Physics +1605.02028 Populations and Evolution +1605.02137 High Energy Astrophysical Phenomena +1605.02156 Computational Complexity +1605.02253 High Energy Astrophysical Phenomena +1605.02325 +1605.02578 Cosmology and Nongalactic Astrophysics +1605.02745 Theory +1605.02982 Quantum Gases +1605.03195 Instrumentation and Methods for Astrophysics +1605.03297 +1605.03489 Optics +1605.03561 Phenomenology +1605.03673 Mesoscale and Nanoscale Physics +1605.03812 Superconductivity +1605.03951 High Energy Astrophysical Phenomena +1605.03994 High Energy Astrophysical Phenomena +1605.04155 Cosmology and Nongalactic Astrophysics +1605.04165 Astrophysics of Galaxies +1605.04314 Astrophysics of Galaxies +1605.04437 Earth and Planetary Astrophysics +1605.04508 Phenomenology +1605.04526 Theory +1605.04646 Cosmology and Nongalactic Astrophysics +1605.04743 Mesoscale and Nanoscale Physics +1605.04820 Astrophysics of Galaxies +1605.04867 Astrophysics of Galaxies +1605.05263 +1605.05501 Cosmology and Nongalactic Astrophysics +1605.05638 Theory +1605.05662 Cosmology and Nongalactic Astrophysics +1605.05670 Astrophysics of Galaxies +1605.05722 Differential Geometry +1605.05772 Earth and Planetary Astrophysics +1605.05839 Materials Science +1605.05900 Phenomenology +1605.05983 Fluid Dynamics +1605.05992 Theory +1605.06123 Phenomenology +1605.06268 +1605.06426 Cosmology and Nongalactic Astrophysics +1605.06803 Phenomenology +1605.06945 Disordered Systems and Neural Networks +1605.07073 Superconductivity +1605.07205 +1605.07307 Optics +1605.07348 Cosmology and Nongalactic Astrophysics +1605.07470 Phenomenology +1605.07749 Number Theory +1605.07847 Optics +1605.08360 Astrophysics of Galaxies +1605.08383 Probability +1605.08644 Mesoscale and Nanoscale Physics +1605.09014 Strongly Correlated Electrons +1605.09018 Phenomenology +1605.09032 +1605.09097 +1605.09111 Theory +1605.09144 Astrophysics of Galaxies +1605.09368 Instrumentation and Methods for Astrophysics +1605.09383 Phenomenology +1605.09723 +1606.00039 Solar and Stellar Astrophysics +1606.00143 Mesoscale and Nanoscale Physics +1606.00244 Optics +1606.00393 Instrumentation and Methods for Astrophysics +1606.00604 Solar and Stellar Astrophysics +1606.00669 Solar and Stellar Astrophysics +1606.00742 Mesoscale and Nanoscale Physics +1606.00793 Strongly Correlated Electrons +1606.01391 High Energy Astrophysical Phenomena +1606.01697 Phenomenology +1606.01838 Instrumentation and Methods for Astrophysics +1606.02073 Cosmology and Nongalactic Astrophysics +1606.02130 Quantum Gases +1606.02323 Cosmology and Nongalactic Astrophysics +1606.02520 Cosmology and Nongalactic Astrophysics +1606.02713 Solar and Stellar Astrophysics +1606.02722 Phenomenology +1606.02757 Atomic Physics +1606.02758 Quantum Gases +1606.02762 Optics +1606.03428 High Energy Astrophysical Phenomena +1606.03518 High Energy Astrophysical Phenomena +1606.03559 Soft Condensed Matter +1606.03958 Statistical Mechanics +1606.04349 +1606.04477 High Energy Astrophysical Phenomena +1606.04550 Computational Complexity +1606.04644 +1606.04668 Theory +1606.04795 High Energy Astrophysical Phenomena +1606.04815 Solar and Stellar Astrophysics +1606.04823 Astrophysics of Galaxies +1606.04938 Combinatorics +1606.04996 +1606.05056 Solar and Stellar Astrophysics +1606.05444 Theory +1606.05873 Earth and Planetary Astrophysics +1606.06059 Solar and Stellar Astrophysics +1606.06232 Solar and Stellar Astrophysics +1606.06291 Astrophysics of Galaxies +1606.06324 Solar and Stellar Astrophysics +1606.06481 Experiment +1606.06643 Theory +1606.06813 Astrophysics of Galaxies +1606.06823 Experiment +1606.07021 +1606.07065 Solar and Stellar Astrophysics +1606.07068 Earth and Planetary Astrophysics +1606.07108 Phenomenology +1606.07252 Theory +1606.07299 +1606.07435 Astrophysics of Galaxies +1606.07443 Astrophysics of Galaxies +1606.07577 Probability +1606.07645 Astrophysics of Galaxies +1606.07709 Discrete Mathematics +1606.07755 Numerical Analysis +1606.07810 Astrophysics of Galaxies +1606.07837 Cosmology and Nongalactic Astrophysics +1606.07870 Theory +1606.08068 Solar and Stellar Astrophysics +1606.08088 Earth and Planetary Astrophysics +1606.08126 Analysis of PDEs +1606.08264 Solar and Stellar Astrophysics +1606.08285 Astrophysics of Galaxies +1606.08343 Optics +1606.08448 Cosmology and Nongalactic Astrophysics +1606.08742 High Energy Astrophysical Phenomena +1606.08748 High Energy Astrophysical Phenomena +1606.08783 Astrophysics of Galaxies +1606.08848 Phenomenology +1606.08921 Computer Vision and Pattern Recognition +1606.08923 Earth and Planetary Astrophysics +1606.09055 Phenomenology +1606.09380 Phenomenology +1606.09437 Astrophysics of Galaxies +1606.09579 Data Analysis, Statistics and Probability +1607.00002 Cosmology and Nongalactic Astrophysics +1607.00109 Superconductivity +1607.00197 Optimization and Control +1607.00309 High Energy Astrophysical Phenomena +1607.00387 Earth and Planetary Astrophysics +1607.00536 +1607.00585 Astrophysics of Galaxies +1607.00774 Earth and Planetary Astrophysics +1607.00897 High Energy Astrophysical Phenomena +1607.01189 Cosmology and Nongalactic Astrophysics +1607.01414 Soft Condensed Matter +1607.01431 Statistical Mechanics +1607.01453 Solar and Stellar Astrophysics +1607.01585 Solar and Stellar Astrophysics +1607.01587 High Energy Astrophysical Phenomena +1607.02198 +1607.02450 Machine Learning +1607.02616 High Energy Astrophysical Phenomena +1607.02781 Astrophysics of Galaxies +1607.02950 Astrophysics of Galaxies +1607.03038 Solar and Stellar Astrophysics +1607.03117 Solar and Stellar Astrophysics +1607.03134 Earth and Planetary Astrophysics +1607.03303 Phenomenology +1607.03318 Astrophysics of Galaxies +1607.03436 Exactly Solvable and Integrable Systems +1607.03523 +1607.03709 Astrophysics of Galaxies +1607.03811 Solar and Stellar Astrophysics +1607.03893 Astrophysics of Galaxies +1607.03905 Lattice +1607.03915 Astrophysics of Galaxies +1607.04280 Solar and Stellar Astrophysics +1607.04292 High Energy Astrophysical Phenomena +1607.04328 Astrophysics of Galaxies +1607.04601 Astrophysics of Galaxies +1607.04639 Solar and Stellar Astrophysics +1607.05289 Astrophysics of Galaxies +1607.05343 Astrophysics of Galaxies +1607.05472 Astrophysics of Galaxies +1607.05612 Solar and Stellar Astrophysics +1607.05795 Astrophysics of Galaxies +1607.05797 Earth and Planetary Astrophysics +1607.05995 Astrophysics of Galaxies +1607.06088 Astrophysics of Galaxies +1607.06163 Statistics Theory +1607.06296 Cosmology and Nongalactic Astrophysics +1607.06365 Astrophysics of Galaxies +1607.06458 Cosmology and Nongalactic Astrophysics +1607.06466 Astrophysics of Galaxies +1607.06684 Solar and Stellar Astrophysics +1607.06804 Solar and Stellar Astrophysics +1607.06903 Methodology +1607.07106 Phenomenology +1607.07190 Astrophysics of Galaxies +1607.07206 High Energy Astrophysical Phenomena +1607.07245 Astrophysics of Galaxies +1607.07248 High Energy Astrophysical Phenomena +1607.07323 High Energy Astrophysical Phenomena +1607.07626 Astrophysics of Galaxies +1607.07628 Cosmology and Nongalactic Astrophysics +1607.07783 High Energy Astrophysical Phenomena +1607.07918 Astrophysics of Galaxies +1607.07960 +1607.08035 +1607.08170 Earth and Planetary Astrophysics +1607.08242 Superconductivity +1607.08253 Astrophysics of Galaxies +1607.08279 Earth and Planetary Astrophysics +1607.08324 High Energy Astrophysical Phenomena +1607.08453 Combinatorics +1607.08591 Earth and Planetary Astrophysics +1607.08616 Astrophysics of Galaxies +1607.08773 Solar and Stellar Astrophysics +1608.00340 +1608.00573 Earth and Planetary Astrophysics +1608.00809 Atomic Physics +1608.01131 +1608.01207 Plasma Physics +1608.01677 Astrophysics of Galaxies +1608.01901 High Energy Astrophysical Phenomena +1608.02163 High Energy Astrophysical Phenomena +1608.02191 Performance +1608.02278 Solar and Stellar Astrophysics +1608.02309 Astrophysics of Galaxies +1608.02518 Algebraic Geometry +1608.02573 Phenomenology +1608.02591 Astrophysics of Galaxies +1608.02792 Information Theory +1608.03592 Earth and Planetary Astrophysics +1608.03852 Solar and Stellar Astrophysics +1608.04095 Solar and Stellar Astrophysics +1608.04120 Statistics Theory +1608.04419 Number Theory +1608.04495 Strongly Correlated Electrons +1608.04554 Astrophysics of Galaxies +1608.04862 Social and Information Networks +1608.04969 High Energy Astrophysical Phenomena +1608.05082 Astrophysics of Galaxies +1608.05091 Dynamical Systems +1608.05244 High Energy Astrophysical Phenomena +1608.05280 Solar and Stellar Astrophysics +1608.05417 Astrophysics of Galaxies +1608.05418 Astrophysics of Galaxies +1608.05421 Mesoscale and Nanoscale Physics +1608.05422 Astrophysics of Galaxies +1608.05474 Superconductivity +1608.05834 Mesoscale and Nanoscale Physics +1608.05838 Cryptography and Security +1608.05945 Chaotic Dynamics +1608.05978 +1608.05979 Astrophysics of Galaxies +1608.06264 Astrophysics of Galaxies +1608.06294 High Energy Astrophysical Phenomena +1608.06295 Solar and Stellar Astrophysics +1608.06297 High Energy Astrophysical Phenomena +1608.06418 Solar and Stellar Astrophysics +1608.06429 High Energy Astrophysical Phenomena +1608.06574 Networking and Internet Architecture +1608.06622 Machine Learning +1608.06626 Astrophysics of Galaxies +1608.06684 High Energy Astrophysical Phenomena +1608.06704 Astrophysics of Galaxies +1608.06706 Astrophysics of Galaxies +1608.06714 Astrophysics of Galaxies +1608.06734 Solar and Stellar Astrophysics +1608.06735 Astrophysics of Galaxies +1608.06840 General Physics +1608.06906 Phenomenology +1608.07030 Classical Analysis and ODEs +1608.07042 Astrophysics of Galaxies +1608.07187 Artificial Intelligence +1608.07375 Materials Science +1608.07379 Theory +1608.07436 Geometric Topology +1608.07445 High Energy Astrophysical Phenomena +1608.07492 Computer Science and Game Theory +1608.07531 Programming Languages +1608.07550 Instrumentation and Methods for Astrophysics +1608.07596 Data Structures and Algorithms +1608.07708 Logic in Computer Science +1608.07835 Representation Theory +1608.07837 +1608.07855 Computational Geometry +1608.07872 Cryptography and Security +1608.07897 Computer Vision and Pattern Recognition +1608.07938 Dynamical Systems +1608.07949 Networking and Internet Architecture +1608.08055 General Physics +1608.08108 Accelerator Physics +1608.08148 Databases +1608.08208 Classical Physics +1608.08210 General Finance +1608.08212 Geometric Topology +1608.08219 Programming Languages +1608.08228 +1608.08234 Instrumentation and Methods for Astrophysics +1608.08242 Computer Vision and Pattern Recognition +1608.08245 Combinatorics +1608.08246 Logic +1608.08251 Computer Vision and Pattern Recognition +1608.08252 Artificial Intelligence +1608.08253 Systems and Control +1608.08254 +1608.08258 Databases +1608.08262 Artificial Intelligence +1608.08265 Neural and Evolutionary Computing +1608.08268 Portfolio Management +1608.08270 Number Theory +1608.08273 Representation Theory +1608.08278 Social and Information Networks +1608.08282 Rings and Algebras +1608.08283 Risk Management +1608.08284 Astrophysics of Galaxies +1608.08285 Numerical Analysis +1608.08288 Combinatorics +1608.08291 Applications +1608.08294 Dynamical Systems +1608.08296 Number Theory +1608.08298 Cosmology and Nongalactic Astrophysics +1608.08299 Analysis of PDEs +1608.08301 Analysis of PDEs +1608.08302 Number Theory +1608.08304 Theory +1608.08305 Computer Vision and Pattern Recognition +1608.08306 Machine Learning +1608.08311 Optimization and Control +1608.08318 Methodology +1608.08319 Number Theory +1608.08322 Number Theory +1608.08325 Symplectic Geometry +1608.08329 +1608.08335 Strongly Correlated Electrons +1608.08339 Computation and Language +1608.08341 Biomolecules +1608.08342 Software Engineering +1608.08343 Combinatorics +1608.08344 Materials Science +1608.08346 Data Structures and Algorithms +1608.08347 Methodology +1608.08348 Statistics Theory +1608.08355 Classical Analysis and ODEs +1608.08358 Optimization and Control +1608.08359 +1608.08362 Machine Learning +1608.08363 Classical Physics +1608.08365 Networking and Internet Architecture +1608.08368 Networking and Internet Architecture +1608.08373 Phenomenology +1608.08374 Number Theory +1608.08375 Solar and Stellar Astrophysics +1608.08376 Hardware Architecture +1608.08377 Probability +1608.08379 Probability +1608.08383 +1608.08384 Systems and Control +1608.08385 Computational Geometry +1608.08386 Cryptography and Security +1608.08388 Algebraic Topology +1608.08391 Differential Geometry +1608.08395 Computer Vision and Pattern Recognition +1608.08396 Probability +1608.08397 Cryptography and Security +1608.08399 Group Theory +1608.08402 Strongly Correlated Electrons +1608.08406 Phenomenology +1608.08413 Optimization and Control +1608.08416 Numerical Analysis +1608.08418 Computational Geometry +1608.08422 Optimization and Control +1608.08423 Algebraic Geometry +1608.08424 Probability +1608.08425 Computational Geometry +1608.08426 Number Theory +1608.08427 Computational Geometry +1608.08428 Functional Analysis +1608.08431 Numerical Analysis +1608.08433 Number Theory +1608.08434 Computer Vision and Pattern Recognition +1608.08436 Functional Analysis +1608.08437 Materials Science +1608.08438 Logic +1608.08439 Atomic and Molecular Clusters +1608.08441 +1608.08442 Dynamical Systems +1608.08444 Superconductivity +1608.08445 Information Theory +1608.08447 Artificial Intelligence +1608.08452 +1608.08455 +1608.08456 Physics and Society +1608.08459 Information Theory +1608.08463 Rings and Algebras +1608.08464 Analysis of PDEs +1608.08465 Systems and Control +1608.08466 Probability +1608.08468 Methodology +1608.08469 Multimedia +1608.08471 Computer Vision and Pattern Recognition +1608.08474 Information Theory +1608.08475 Representation Theory +1608.08479 +1608.08480 Combinatorics +1608.08481 Materials Science +1608.08482 Statistics Theory +1608.08484 Computer Science and Game Theory +1608.08485 Applications +1608.08486 Cosmology and Nongalactic Astrophysics +1608.08487 Earth and Planetary Astrophysics +1608.08488 Geophysics +1608.08489 Group Theory +1608.08491 Combinatorics +1608.08493 Number Theory +1608.08495 Soft Condensed Matter +1608.08497 Artificial Intelligence +1608.08498 Cell Behavior +1608.08500 Data Structures and Algorithms +1608.08502 +1608.08505 Data Structures and Algorithms +1608.08508 Combinatorics +1608.08512 Classical Physics +1608.08513 Fluid Dynamics +1608.08514 Representation Theory +1608.08515 Computation and Language +1608.08516 General Physics +1608.08518 Analysis of PDEs +1608.08519 Phenomenology +1608.08521 Networking and Internet Architecture +1608.08524 Plasma Physics +1608.08525 General Physics +1608.08527 Data Structures and Algorithms +1608.08528 Number Theory +1608.08530 +1608.08531 General Physics +1608.08533 Algebraic Topology +1608.08534 Statistical Mechanics +1608.08535 Statistics Theory +1608.08537 +1608.08541 Optimization and Control +1608.08543 Functional Analysis +1608.08545 Data Structures and Algorithms +1608.08547 +1608.08548 Physics Education +1608.08553 Exactly Solvable and Integrable Systems +1608.08554 Number Theory +1608.08555 Number Theory +1608.08556 Materials Science +1608.08558 Numerical Analysis +1608.08559 Combinatorics +1608.08560 Algebraic Geometry +1608.08561 Mesoscale and Nanoscale Physics +1608.08562 Operator Algebras +1608.08565 Cell Behavior +1608.08567 Instrumentation and Detectors +1608.08568 Instrumentation and Detectors +1608.08570 Graphics +1608.08572 Metric Geometry +1608.08575 Phenomenology +1608.08577 Combinatorics +1608.08578 Data Structures and Algorithms +1608.08580 Commutative Algebra +1608.08581 Algebraic Geometry +1608.08583 Spectral Theory +1608.08584 Software Engineering +1608.08586 Optimization and Control +1608.08587 Strongly Correlated Electrons +1608.08589 Artificial Intelligence +1608.08591 Commutative Algebra +1608.08592 Formal Languages and Automata Theory +1608.08598 Quantum Algebra +1608.08599 Differential Geometry +1608.08600 Rings and Algebras +1608.08603 Instrumentation and Methods for Astrophysics +1608.08604 Number Theory +1608.08609 Physics and Society +1608.08610 Earth and Planetary Astrophysics +1608.08612 Populations and Evolution +1608.08615 +1608.08618 +1608.08620 Earth and Planetary Astrophysics +1608.08622 Information Theory +1608.08623 Combinatorics +astro-ph/0609444 +astro-ph/0609450 +astro-ph/0609490 +astro-ph/0609624 +astro-ph/0609744 +astro-ph/0610207 +astro-ph/0610288 +astro-ph/0610348 +astro-ph/0610720 +astro-ph/0610872 +astro-ph/0611182 +astro-ph/0611387 +astro-ph/0611417 +astro-ph/0612078 +astro-ph/9911343 +atom-ph/9604001 Atomic Physics +atom-ph/9608002 Atomic Physics +bayes-an/9512001 Data Analysis, Statistics and Probability +chao-dyn/9308005 Chaotic Dynamics +chao-dyn/9401002 Chaotic Dynamics +chao-dyn/9412003 Chaotic Dynamics +chao-dyn/9501017 Chaotic Dynamics +chao-dyn/9501024 Chaotic Dynamics +chao-dyn/9501027 Chaotic Dynamics +chao-dyn/9501028 Chaotic Dynamics +chao-dyn/9502005 Chaotic Dynamics +chao-dyn/9502006 Chaotic Dynamics +chao-dyn/9502010 Chaotic Dynamics +chao-dyn/9502011 Chaotic Dynamics +chao-dyn/9502012 Chaotic Dynamics +chao-dyn/9502021 Chaotic Dynamics +chao-dyn/9503010 Chaotic Dynamics +chao-dyn/9503011 Chaotic Dynamics +chao-dyn/9504007 Chaotic Dynamics +chao-dyn/9504009 Chaotic Dynamics +chao-dyn/9504010 Chaotic Dynamics +chao-dyn/9504011 Chaotic Dynamics +chao-dyn/9504013 Chaotic Dynamics +chao-dyn/9505005 Chaotic Dynamics +chao-dyn/9505008 Chaotic Dynamics +chao-dyn/9505011 Chaotic Dynamics +chao-dyn/9505012 Chaotic Dynamics +chao-dyn/9506001 Chaotic Dynamics +chao-dyn/9506002 Chaotic Dynamics +chao-dyn/9506003 Chaotic Dynamics +chao-dyn/9506007 Chaotic Dynamics +chao-dyn/9506008 Chaotic Dynamics +chao-dyn/9506009 Chaotic Dynamics +chao-dyn/9506010 Chaotic Dynamics +chao-dyn/9507011 Chaotic Dynamics +chao-dyn/9507012 Chaotic Dynamics +chao-dyn/9509013 Chaotic Dynamics +chao-dyn/9603011 Chaotic Dynamics +chao-dyn/9603014 Chaotic Dynamics +chao-dyn/9607009 Chaotic Dynamics +chao-dyn/9607011 Chaotic Dynamics +chao-dyn/9607012 Chaotic Dynamics +chao-dyn/9607020 Chaotic Dynamics +chao-dyn/9610014 Chaotic Dynamics +chao-dyn/9610016 Chaotic Dynamics +chao-dyn/9611002 Chaotic Dynamics +chao-dyn/9611003 Chaotic Dynamics +chao-dyn/9611008 Chaotic Dynamics +chao-dyn/9611019 Chaotic Dynamics +chao-dyn/9612002 Chaotic Dynamics +chao-dyn/9612008 Chaotic Dynamics +chao-dyn/9701007 Chaotic Dynamics +chao-dyn/9701012 Chaotic Dynamics +chao-dyn/9701015 Chaotic Dynamics +chao-dyn/9702012 Chaotic Dynamics +chao-dyn/9703016 Chaotic Dynamics +chao-dyn/9704003 Chaotic Dynamics +chao-dyn/9704022 Chaotic Dynamics +chao-dyn/9705004 Chaotic Dynamics +chao-dyn/9705010 Chaotic Dynamics +chao-dyn/9706013 Chaotic Dynamics +chao-dyn/9707011 Chaotic Dynamics +chao-dyn/9708004 Chaotic Dynamics +chao-dyn/9709010 Chaotic Dynamics +chao-dyn/9709035 Chaotic Dynamics +chao-dyn/9710022 Chaotic Dynamics +chao-dyn/9712001 Chaotic Dynamics +chao-dyn/9801002 Chaotic Dynamics +chao-dyn/9802006 Chaotic Dynamics +chao-dyn/9803007 Chaotic Dynamics +chao-dyn/9804001 Chaotic Dynamics +chao-dyn/9804033 Chaotic Dynamics +chao-dyn/9807017 Chaotic Dynamics +chao-dyn/9809001 Chaotic Dynamics +chao-dyn/9810008 Chaotic Dynamics +chao-dyn/9810010 Chaotic Dynamics +chao-dyn/9811024 Chaotic Dynamics +chao-dyn/9902010 Chaotic Dynamics +chao-dyn/9904025 Chaotic Dynamics +chao-dyn/9904026 Chaotic Dynamics +chao-dyn/9904047 Chaotic Dynamics +chao-dyn/9905038 Chaotic Dynamics +chao-dyn/9906027 Chaotic Dynamics +chao-dyn/9906036 Chaotic Dynamics +chao-dyn/9907026 Chaotic Dynamics +chao-dyn/9909002 Chaotic Dynamics +chao-dyn/9909038 Chaotic Dynamics +chao-dyn/9910005 Chaotic Dynamics +chao-dyn/9911020 Chaotic Dynamics +chao-dyn/9912019 Chaotic Dynamics +chao-dyn/9912020 Chaotic Dynamics +chao-dyn/9912021 Chaotic Dynamics +chem-ph/9502001 Chemical Physics +chem-ph/9502002 Chemical Physics +chem-ph/9502003 Chemical Physics +chem-ph/9502004 Chemical Physics +chem-ph/9502005 Chemical Physics +chem-ph/9502006 Chemical Physics +chem-ph/9502007 Chemical Physics +chem-ph/9502008 Chemical Physics +chem-ph/9502010 Chemical Physics +chem-ph/9502011 Chemical Physics +chem-ph/9506002 Chemical Physics +chem-ph/9605002 Chemical Physics +cmp-lg/9405009 Computation and Language +cmp-lg/9406007 Computation and Language +cmp-lg/9408005 Computation and Language +cmp-lg/9411018 Computation and Language +cmp-lg/9501001 Computation and Language +cmp-lg/9501002 Computation and Language +cmp-lg/9501003 Computation and Language +cmp-lg/9501004 Computation and Language +cmp-lg/9502002 Computation and Language +cmp-lg/9502003 Computation and Language +cmp-lg/9502004 Computation and Language +cmp-lg/9502005 Computation and Language +cmp-lg/9502006 Computation and Language +cmp-lg/9502007 Computation and Language +cmp-lg/9502008 Computation and Language +cmp-lg/9502009 Computation and Language +cmp-lg/9502010 Computation and Language +cmp-lg/9502011 Computation and Language +cmp-lg/9502012 Computation and Language +cmp-lg/9502014 Computation and Language +cmp-lg/9502015 Computation and Language +cmp-lg/9502016 Computation and Language +cmp-lg/9502017 Computation and Language +cmp-lg/9502018 Computation and Language +cmp-lg/9502020 Computation and Language +cmp-lg/9502022 Computation and Language +cmp-lg/9502023 Computation and Language +cmp-lg/9502024 Computation and Language +cmp-lg/9502027 Computation and Language +cmp-lg/9502028 Computation and Language +cmp-lg/9502029 Computation and Language +cmp-lg/9502030 Computation and Language +cmp-lg/9502031 Computation and Language +cmp-lg/9502032 Computation and Language +cmp-lg/9502033 Computation and Language +cmp-lg/9502036 Computation and Language +cmp-lg/9502037 Computation and Language +cmp-lg/9502038 Computation and Language +cmp-lg/9502039 Computation and Language +cmp-lg/9503001 Computation and Language +cmp-lg/9503002 Computation and Language +cmp-lg/9503003 Computation and Language +cmp-lg/9503005 Computation and Language +cmp-lg/9503006 Computation and Language +cmp-lg/9503007 Computation and Language +cmp-lg/9503008 Computation and Language +cmp-lg/9503010 Computation and Language +cmp-lg/9503011 Computation and Language +cmp-lg/9503013 Computation and Language +cmp-lg/9503014 Computation and Language +cmp-lg/9503015 Computation and Language +cmp-lg/9503016 Computation and Language +cmp-lg/9503017 Computation and Language +cmp-lg/9503018 Computation and Language +cmp-lg/9503019 Computation and Language +cmp-lg/9503025 Computation and Language +cmp-lg/9504020 Computation and Language +cmp-lg/9504029 Computation and Language +cmp-lg/9505031 Computation and Language +cmp-lg/9505032 Computation and Language +cmp-lg/9506014 Computation and Language +cmp-lg/9506019 Computation and Language +cmp-lg/9506022 Computation and Language +cmp-lg/9507003 Computation and Language +cmp-lg/9507007 Computation and Language +cmp-lg/9507008 Computation and Language +cmp-lg/9508002 Computation and Language +cmp-lg/9510004 Computation and Language +cmp-lg/9510008 Computation and Language +cmp-lg/9601010 Computation and Language +cmp-lg/9601011 Computation and Language +cmp-lg/9605031 Computation and Language +cmp-lg/9607017 Computation and Language +cmp-lg/9607032 Computation and Language +cmp-lg/9608020 Computation and Language +cmp-lg/9609004 Computation and Language +cmp-lg/9611005 Computation and Language +cmp-lg/9702001 Computation and Language +cmp-lg/9702002 Computation and Language +cmp-lg/9702016 Computation and Language +cmp-lg/9703002 Computation and Language +cmp-lg/9704011 Computation and Language +cmp-lg/9706014 Computation and Language +cmp-lg/9709015 Computation and Language +cmp-lg/9805008 Computation and Language +comp-gas/9306003 Cellular Automata and Lattice Gases +comp-gas/9307004 Cellular Automata and Lattice Gases +comp-gas/9403003 Cellular Automata and Lattice Gases +comp-gas/9407003 Cellular Automata and Lattice Gases +comp-gas/9501001 Cellular Automata and Lattice Gases +comp-gas/9501002 Cellular Automata and Lattice Gases +comp-gas/9503002 Cellular Automata and Lattice Gases +comp-gas/9505002 Cellular Automata and Lattice Gases +comp-gas/9506001 Cellular Automata and Lattice Gases +comp-gas/9507002 Cellular Automata and Lattice Gases +comp-gas/9609001 Cellular Automata and Lattice Gases +comp-gas/9612001 Cellular Automata and Lattice Gases +comp-gas/9702001 Cellular Automata and Lattice Gases +cond-mat/0001007 Strongly Correlated Electrons +cond-mat/0001018 +cond-mat/0001082 Mesoscale and Nanoscale Physics +cond-mat/0001165 +cond-mat/0001218 Superconductivity +cond-mat/0001260 Strongly Correlated Electrons +cond-mat/0001282 Strongly Correlated Electrons +cond-mat/0001298 Materials Science +cond-mat/0001309 Statistical Mechanics +cond-mat/0001361 Statistical Mechanics +cond-mat/0001367 Statistical Mechanics +cond-mat/0001442 Strongly Correlated Electrons +cond-mat/0002030 Mesoscale and Nanoscale Physics +cond-mat/0002037 +cond-mat/0002118 +cond-mat/0002145 +cond-mat/0002166 Soft Condensed Matter +cond-mat/0002191 Materials Science +cond-mat/0002211 Strongly Correlated Electrons +cond-mat/0002221 Superconductivity +cond-mat/0002231 Strongly Correlated Electrons +cond-mat/0002274 Strongly Correlated Electrons +cond-mat/0002320 Materials Science +cond-mat/0002323 Statistical Mechanics +cond-mat/0002364 Mesoscale and Nanoscale Physics +cond-mat/0002386 Mesoscale and Nanoscale Physics +cond-mat/0002401 Materials Science +cond-mat/0002403 Mesoscale and Nanoscale Physics +cond-mat/0002462 Statistical Mechanics +cond-mat/0003006 +cond-mat/0003018 Superconductivity +cond-mat/0003019 Mesoscale and Nanoscale Physics +cond-mat/0003078 Strongly Correlated Electrons +cond-mat/0003127 Strongly Correlated Electrons +cond-mat/0003167 Statistical Mechanics +cond-mat/0003200 Strongly Correlated Electrons +cond-mat/0003216 Statistical Mechanics +cond-mat/0003227 Materials Science +cond-mat/0003272 Superconductivity +cond-mat/0003285 Statistical Mechanics +cond-mat/0003312 Statistical Mechanics +cond-mat/0003342 Statistical Mechanics +cond-mat/0003355 +cond-mat/0003388 Superconductivity +cond-mat/0003419 Strongly Correlated Electrons +cond-mat/0003439 Soft Condensed Matter +cond-mat/0003487 Superconductivity +cond-mat/0003501 Statistical Mechanics +cond-mat/0003513 Mesoscale and Nanoscale Physics +cond-mat/0004007 Strongly Correlated Electrons +cond-mat/0004034 +cond-mat/0004036 Superconductivity +cond-mat/0004038 Statistical Mechanics +cond-mat/0004138 +cond-mat/0004145 Statistical Mechanics +cond-mat/0004154 Materials Science +cond-mat/0004168 Disordered Systems and Neural Networks +cond-mat/0004177 Superconductivity +cond-mat/0004179 Statistical Mechanics +cond-mat/0004282 Statistical Mechanics +cond-mat/0004449 Statistical Mechanics +cond-mat/0004472 +cond-mat/0004486 Statistical Mechanics +cond-mat/0005056 Materials Science +cond-mat/0005069 Superconductivity +cond-mat/0005104 Materials Science +cond-mat/0005141 Superconductivity +cond-mat/0005149 Disordered Systems and Neural Networks +cond-mat/0005160 Statistical Mechanics +cond-mat/0005194 Strongly Correlated Electrons +cond-mat/0005206 Strongly Correlated Electrons +cond-mat/0005209 Materials Science +cond-mat/0005227 Statistical Mechanics +cond-mat/0005237 Statistical Mechanics +cond-mat/0005283 Mesoscale and Nanoscale Physics +cond-mat/0005285 Materials Science +cond-mat/0005290 Superconductivity +cond-mat/0005296 +cond-mat/0005307 Soft Condensed Matter +cond-mat/0005309 Strongly Correlated Electrons +cond-mat/0005319 Statistical Mechanics +cond-mat/0005326 Superconductivity +cond-mat/0005404 Superconductivity +cond-mat/0005446 Disordered Systems and Neural Networks +cond-mat/0005499 Statistical Mechanics +cond-mat/0006101 Superconductivity +cond-mat/0006102 Superconductivity +cond-mat/0006136 Disordered Systems and Neural Networks +cond-mat/0006170 Disordered Systems and Neural Networks +cond-mat/0006181 Soft Condensed Matter +cond-mat/0006195 Statistical Mechanics +cond-mat/0006197 Superconductivity +cond-mat/0006209 Materials Science +cond-mat/0006240 Soft Condensed Matter +cond-mat/0006252 +cond-mat/0006264 Soft Condensed Matter +cond-mat/0006266 Soft Condensed Matter +cond-mat/0006296 Superconductivity +cond-mat/0006298 Materials Science +cond-mat/0006307 Strongly Correlated Electrons +cond-mat/0006366 Superconductivity +cond-mat/0006383 Statistical Mechanics +cond-mat/0006475 Statistical Mechanics +cond-mat/0007014 Statistical Mechanics +cond-mat/0007027 Disordered Systems and Neural Networks +cond-mat/0007043 Mesoscale and Nanoscale Physics +cond-mat/0007075 Disordered Systems and Neural Networks +cond-mat/0007142 Disordered Systems and Neural Networks +cond-mat/0007162 Mesoscale and Nanoscale Physics +cond-mat/0007204 Disordered Systems and Neural Networks +cond-mat/0007276 Disordered Systems and Neural Networks +cond-mat/0007360 Statistical Mechanics +cond-mat/0007401 Mesoscale and Nanoscale Physics +cond-mat/0007415 Superconductivity +cond-mat/0007452 Statistical Mechanics +cond-mat/0007499 +cond-mat/0008008 Mesoscale and Nanoscale Physics +cond-mat/0008010 Statistical Mechanics +cond-mat/0008080 Materials Science +cond-mat/0008176 Statistical Mechanics +cond-mat/0008180 Statistical Mechanics +cond-mat/0008197 Superconductivity +cond-mat/0008236 Materials Science +cond-mat/0008250 Statistical Mechanics +cond-mat/0008273 +cond-mat/0008318 +cond-mat/0008323 Materials Science +cond-mat/0008342 Strongly Correlated Electrons +cond-mat/0008349 Superconductivity +cond-mat/0009019 Disordered Systems and Neural Networks +cond-mat/0009035 Strongly Correlated Electrons +cond-mat/0009038 Statistical Mechanics +cond-mat/0009041 Strongly Correlated Electrons +cond-mat/0009051 Superconductivity +cond-mat/0009064 Soft Condensed Matter +cond-mat/0009142 Statistical Mechanics +cond-mat/0009159 Soft Condensed Matter +cond-mat/0009171 Mesoscale and Nanoscale Physics +cond-mat/0009177 Statistical Mechanics +cond-mat/0009215 +cond-mat/0009276 Statistical Mechanics +cond-mat/0009356 +cond-mat/0009419 Statistical Mechanics +cond-mat/0010043 Materials Science +cond-mat/0010107 +cond-mat/0010125 Statistical Mechanics +cond-mat/0010191 +cond-mat/0010201 Mesoscale and Nanoscale Physics +cond-mat/0010246 Statistical Mechanics +cond-mat/0010273 Strongly Correlated Electrons +cond-mat/0010281 Strongly Correlated Electrons +cond-mat/0010299 +cond-mat/0010334 Statistical Mechanics +cond-mat/0010369 Statistical Mechanics +cond-mat/0010389 Materials Science +cond-mat/0010403 Superconductivity +cond-mat/0010453 Statistical Mechanics +cond-mat/0010476 Statistical Mechanics +cond-mat/0010481 Soft Condensed Matter +cond-mat/0010502 Materials Science +cond-mat/0011004 Superconductivity +cond-mat/0011006 Statistical Mechanics +cond-mat/0011109 +cond-mat/0011157 Disordered Systems and Neural Networks +cond-mat/0011164 Statistical Mechanics +cond-mat/0011193 Mesoscale and Nanoscale Physics +cond-mat/0011194 Materials Science +cond-mat/0011204 +cond-mat/0011205 Mesoscale and Nanoscale Physics +cond-mat/0011217 Materials Science +cond-mat/0011243 Materials Science +cond-mat/0011268 Strongly Correlated Electrons +cond-mat/0011273 Strongly Correlated Electrons +cond-mat/0011305 Statistical Mechanics +cond-mat/0011347 Superconductivity +cond-mat/0011367 Statistical Mechanics +cond-mat/0011415 Mesoscale and Nanoscale Physics +cond-mat/0011440 Statistical Mechanics +cond-mat/0011447 +cond-mat/0011485 +cond-mat/0012017 Statistical Mechanics +cond-mat/0012037 Materials Science +cond-mat/0012069 Strongly Correlated Electrons +cond-mat/0012095 Statistical Mechanics +cond-mat/0012134 Soft Condensed Matter +cond-mat/0012159 Statistical Mechanics +cond-mat/0012170 Soft Condensed Matter +cond-mat/0012193 +cond-mat/0012211 Mesoscale and Nanoscale Physics +cond-mat/0012236 Superconductivity +cond-mat/0012255 Statistical Mechanics +cond-mat/0012271 Soft Condensed Matter +cond-mat/0012332 Disordered Systems and Neural Networks +cond-mat/0012349 +cond-mat/0012356 Statistical Mechanics +cond-mat/0012364 +cond-mat/0012416 Statistical Mechanics +cond-mat/0012472 Strongly Correlated Electrons +cond-mat/0012498 Superconductivity +cond-mat/0012506 Soft Condensed Matter +cond-mat/0101059 Disordered Systems and Neural Networks +cond-mat/0101074 Superconductivity +cond-mat/0101078 Statistical Mechanics +cond-mat/0101086 Statistical Mechanics +cond-mat/0101112 Statistical Mechanics +cond-mat/0101113 +cond-mat/0101165 Soft Condensed Matter +cond-mat/0101186 Materials Science +cond-mat/0101190 Statistical Mechanics +cond-mat/0101193 Materials Science +cond-mat/0101202 Statistical Mechanics +cond-mat/0101253 Statistical Mechanics +cond-mat/0101257 Materials Science +cond-mat/0101292 Soft Condensed Matter +cond-mat/0101352 +cond-mat/0101370 Superconductivity +cond-mat/0101413 Statistical Mechanics +cond-mat/0101414 Strongly Correlated Electrons +cond-mat/0102039 Mesoscale and Nanoscale Physics +cond-mat/0102071 Statistical Mechanics +cond-mat/0102099 Soft Condensed Matter +cond-mat/0102212 Statistical Mechanics +cond-mat/0102284 Superconductivity +cond-mat/0102286 +cond-mat/0102322 Statistical Mechanics +cond-mat/0102354 +cond-mat/0102356 Superconductivity +cond-mat/0102375 Statistical Mechanics +cond-mat/0102380 Mesoscale and Nanoscale Physics +cond-mat/0102399 Materials Science +cond-mat/0102428 Statistical Mechanics +cond-mat/0102456 +cond-mat/0102496 Materials Science +cond-mat/0102512 Statistical Mechanics +cond-mat/0103051 Statistical Mechanics +cond-mat/0103084 Materials Science +cond-mat/0103191 Strongly Correlated Electrons +cond-mat/0103209 Mesoscale and Nanoscale Physics +cond-mat/0103214 Strongly Correlated Electrons +cond-mat/0103223 Materials Science +cond-mat/0103225 Statistical Mechanics +cond-mat/0103234 +cond-mat/0103236 Mesoscale and Nanoscale Physics +cond-mat/0103253 Strongly Correlated Electrons +cond-mat/0103267 Soft Condensed Matter +cond-mat/0103289 Materials Science +cond-mat/0103346 Statistical Mechanics +cond-mat/0103350 Superconductivity +cond-mat/0103358 Materials Science +cond-mat/0103359 Statistical Mechanics +cond-mat/0103368 Statistical Mechanics +cond-mat/0103403 Statistical Mechanics +cond-mat/0103404 Statistical Mechanics +cond-mat/0103451 Soft Condensed Matter +cond-mat/0103509 Soft Condensed Matter +cond-mat/0103513 Soft Condensed Matter +cond-mat/0103519 Superconductivity +cond-mat/0103535 +cond-mat/0103536 Superconductivity +cond-mat/0103566 Statistical Mechanics +cond-mat/0103622 Materials Science +cond-mat/0103625 Statistical Mechanics +cond-mat/0104005 Superconductivity +cond-mat/0104022 Statistical Mechanics +cond-mat/0104040 Materials Science +cond-mat/0104054 +cond-mat/0104099 Strongly Correlated Electrons +cond-mat/0104167 Statistical Mechanics +cond-mat/0104187 Superconductivity +cond-mat/0104333 Materials Science +cond-mat/0104392 Statistical Mechanics +cond-mat/0104393 Statistical Mechanics +cond-mat/0104400 Statistical Mechanics +cond-mat/0104500 Superconductivity +cond-mat/0104503 +cond-mat/0104522 +cond-mat/0105022 Materials Science +cond-mat/0105068 Strongly Correlated Electrons +cond-mat/0105091 Superconductivity +cond-mat/0105103 Mesoscale and Nanoscale Physics +cond-mat/0105141 Superconductivity +cond-mat/0105183 +cond-mat/0105286 Mesoscale and Nanoscale Physics +cond-mat/0105304 Soft Condensed Matter +cond-mat/0105370 Superconductivity +cond-mat/0105399 Strongly Correlated Electrons +cond-mat/0105445 Superconductivity +cond-mat/0105477 Strongly Correlated Electrons +cond-mat/0105520 Mesoscale and Nanoscale Physics +cond-mat/0105540 Strongly Correlated Electrons +cond-mat/0105569 Mesoscale and Nanoscale Physics +cond-mat/0105591 +cond-mat/0105597 Soft Condensed Matter +cond-mat/0106048 +cond-mat/0106076 Statistical Mechanics +cond-mat/0106081 Statistical Mechanics +cond-mat/0106094 Strongly Correlated Electrons +cond-mat/0106096 Statistical Mechanics +cond-mat/0106100 Mesoscale and Nanoscale Physics +cond-mat/0106115 Statistical Mechanics +cond-mat/0106145 Statistical Mechanics +cond-mat/0106178 Statistical Mechanics +cond-mat/0106184 Materials Science +cond-mat/0106196 +cond-mat/0106202 Mesoscale and Nanoscale Physics +cond-mat/0106318 Materials Science +cond-mat/0106322 Superconductivity +cond-mat/0106353 Superconductivity +cond-mat/0106435 Materials Science +cond-mat/0106447 Materials Science +cond-mat/0106463 Statistical Mechanics +cond-mat/0106468 Disordered Systems and Neural Networks +cond-mat/0106470 +cond-mat/0106489 Statistical Mechanics +cond-mat/0106570 +cond-mat/0106606 Materials Science +cond-mat/0106608 Strongly Correlated Electrons +cond-mat/0107117 +cond-mat/0107144 Mesoscale and Nanoscale Physics +cond-mat/0107175 Mesoscale and Nanoscale Physics +cond-mat/0107191 Disordered Systems and Neural Networks +cond-mat/0107218 Superconductivity +cond-mat/0107235 Statistical Mechanics +cond-mat/0107242 Strongly Correlated Electrons +cond-mat/0107248 +cond-mat/0107283 Mesoscale and Nanoscale Physics +cond-mat/0107318 Mesoscale and Nanoscale Physics +cond-mat/0107398 +cond-mat/0107413 Soft Condensed Matter +cond-mat/0107427 Statistical Mechanics +cond-mat/0107443 Soft Condensed Matter +cond-mat/0107468 +cond-mat/0107506 Strongly Correlated Electrons +cond-mat/0107542 Materials Science +cond-mat/0107554 Statistical Mechanics +cond-mat/0107557 Superconductivity +cond-mat/0108070 Strongly Correlated Electrons +cond-mat/0108078 Materials Science +cond-mat/0108088 Superconductivity +cond-mat/0108095 Mesoscale and Nanoscale Physics +cond-mat/0108120 Statistical Mechanics +cond-mat/0108129 Strongly Correlated Electrons +cond-mat/0108142 Materials Science +cond-mat/0108198 Strongly Correlated Electrons +cond-mat/0108200 Mesoscale and Nanoscale Physics +cond-mat/0108224 Soft Condensed Matter +cond-mat/0108250 Soft Condensed Matter +cond-mat/0108251 Superconductivity +cond-mat/0108256 Soft Condensed Matter +cond-mat/0108258 Materials Science +cond-mat/0108267 Superconductivity +cond-mat/0108375 Soft Condensed Matter +cond-mat/0108402 Strongly Correlated Electrons +cond-mat/0108407 Strongly Correlated Electrons +cond-mat/0108488 Strongly Correlated Electrons +cond-mat/0108499 Materials Science +cond-mat/0108522 Superconductivity +cond-mat/0109011 Soft Condensed Matter +cond-mat/0109019 Materials Science +cond-mat/0109044 Statistical Mechanics +cond-mat/0109052 Materials Science +cond-mat/0109069 Superconductivity +cond-mat/0109075 Materials Science +cond-mat/0109076 Soft Condensed Matter +cond-mat/0109129 Superconductivity +cond-mat/0109302 Statistical Mechanics +cond-mat/0109305 Soft Condensed Matter +cond-mat/0109325 Mesoscale and Nanoscale Physics +cond-mat/0109344 Mesoscale and Nanoscale Physics +cond-mat/0109353 Mesoscale and Nanoscale Physics +cond-mat/0109354 Mesoscale and Nanoscale Physics +cond-mat/0109358 Statistical Mechanics +cond-mat/0109367 Strongly Correlated Electrons +cond-mat/0109403 Superconductivity +cond-mat/0109413 Mesoscale and Nanoscale Physics +cond-mat/0109495 Disordered Systems and Neural Networks +cond-mat/0109542 Statistical Mechanics +cond-mat/0110049 Mesoscale and Nanoscale Physics +cond-mat/0110054 Mesoscale and Nanoscale Physics +cond-mat/0110074 Mesoscale and Nanoscale Physics +cond-mat/0110121 Statistical Mechanics +cond-mat/0110154 Statistical Mechanics +cond-mat/0110157 Materials Science +cond-mat/0110216 +cond-mat/0110232 Superconductivity +cond-mat/0110340 Strongly Correlated Electrons +cond-mat/0110354 Statistical Mechanics +cond-mat/0110411 Statistical Mechanics +cond-mat/0110454 Mesoscale and Nanoscale Physics +cond-mat/0110456 Statistical Mechanics +cond-mat/0110489 Statistical Mechanics +cond-mat/0110548 Superconductivity +cond-mat/0110607 Statistical Mechanics +cond-mat/0110626 Superconductivity +cond-mat/0110638 Superconductivity +cond-mat/0111018 Disordered Systems and Neural Networks +cond-mat/0111021 Strongly Correlated Electrons +cond-mat/0111032 Soft Condensed Matter +cond-mat/0111051 Strongly Correlated Electrons +cond-mat/0111152 Superconductivity +cond-mat/0111158 Disordered Systems and Neural Networks +cond-mat/0111160 Statistical Mechanics +cond-mat/0111245 Materials Science +cond-mat/0111255 Materials Science +cond-mat/0111371 Superconductivity +cond-mat/0111405 Strongly Correlated Electrons +cond-mat/0111406 Mesoscale and Nanoscale Physics +cond-mat/0111418 Soft Condensed Matter +cond-mat/0111518 Soft Condensed Matter +cond-mat/0111551 Superconductivity +cond-mat/0111562 Statistical Mechanics +cond-mat/0112022 Statistical Mechanics +cond-mat/0112034 Superconductivity +cond-mat/0112062 Mesoscale and Nanoscale Physics +cond-mat/0112063 Statistical Mechanics +cond-mat/0112067 +cond-mat/0112068 Soft Condensed Matter +cond-mat/0112085 Superconductivity +cond-mat/0112086 Strongly Correlated Electrons +cond-mat/0112089 Statistical Mechanics +cond-mat/0112121 Superconductivity +cond-mat/0112177 Mesoscale and Nanoscale Physics +cond-mat/0112195 Statistical Mechanics +cond-mat/0112262 Superconductivity +cond-mat/0112358 Strongly Correlated Electrons +cond-mat/0112389 Disordered Systems and Neural Networks +cond-mat/0112499 Mesoscale and Nanoscale Physics +cond-mat/0201024 Superconductivity +cond-mat/0201072 Strongly Correlated Electrons +cond-mat/0201082 Mesoscale and Nanoscale Physics +cond-mat/0201083 Statistical Mechanics +cond-mat/0201095 Mesoscale and Nanoscale Physics +cond-mat/0201126 Superconductivity +cond-mat/0201166 Strongly Correlated Electrons +cond-mat/0201258 Soft Condensed Matter +cond-mat/0201262 Soft Condensed Matter +cond-mat/0201327 Strongly Correlated Electrons +cond-mat/0201374 Soft Condensed Matter +cond-mat/0201393 Statistical Mechanics +cond-mat/0201407 Strongly Correlated Electrons +cond-mat/0201419 Materials Science +cond-mat/0201455 Strongly Correlated Electrons +cond-mat/0201482 Statistical Mechanics +cond-mat/0201487 Mesoscale and Nanoscale Physics +cond-mat/0201531 Materials Science +cond-mat/0201545 +cond-mat/0201576 Statistical Mechanics +cond-mat/0201589 Soft Condensed Matter +cond-mat/0202010 Superconductivity +cond-mat/0202047 Statistical Mechanics +cond-mat/0202239 Mesoscale and Nanoscale Physics +cond-mat/0202261 Strongly Correlated Electrons +cond-mat/0202263 Strongly Correlated Electrons +cond-mat/0202344 +cond-mat/0202347 Strongly Correlated Electrons +cond-mat/0202420 +cond-mat/0202428 Soft Condensed Matter +cond-mat/0202499 Soft Condensed Matter +cond-mat/0202519 Mesoscale and Nanoscale Physics +cond-mat/0203015 Materials Science +cond-mat/0203023 Mesoscale and Nanoscale Physics +cond-mat/0203056 Materials Science +cond-mat/0203079 Soft Condensed Matter +cond-mat/0203124 Superconductivity +cond-mat/0203141 Strongly Correlated Electrons +cond-mat/0203186 Mesoscale and Nanoscale Physics +cond-mat/0203189 Materials Science +cond-mat/0203226 Materials Science +cond-mat/0203227 Statistical Mechanics +cond-mat/0203237 Soft Condensed Matter +cond-mat/0203279 +cond-mat/0203293 Strongly Correlated Electrons +cond-mat/0203458 Materials Science +cond-mat/0203460 Statistical Mechanics +cond-mat/0203509 Mesoscale and Nanoscale Physics +cond-mat/0203534 +cond-mat/0203592 Materials Science +cond-mat/0203609 Statistical Mechanics +cond-mat/0204034 Statistical Mechanics +cond-mat/0204046 Materials Science +cond-mat/0204123 Superconductivity +cond-mat/0204148 Statistical Mechanics +cond-mat/0204152 Strongly Correlated Electrons +cond-mat/0204153 Superconductivity +cond-mat/0204166 Strongly Correlated Electrons +cond-mat/0204225 Disordered Systems and Neural Networks +cond-mat/0204231 +cond-mat/0204238 Superconductivity +cond-mat/0204349 Statistical Mechanics +cond-mat/0204351 Strongly Correlated Electrons +cond-mat/0204375 Statistical Mechanics +cond-mat/0204443 Statistical Mechanics +cond-mat/0204516 Mesoscale and Nanoscale Physics +cond-mat/0204551 Statistical Mechanics +cond-mat/0204607 Materials Science +cond-mat/0204615 Disordered Systems and Neural Networks +cond-mat/0204620 Mesoscale and Nanoscale Physics +cond-mat/0205012 Superconductivity +cond-mat/0205029 Strongly Correlated Electrons +cond-mat/0205051 Disordered Systems and Neural Networks +cond-mat/0205071 Soft Condensed Matter +cond-mat/0205072 Strongly Correlated Electrons +cond-mat/0205080 Soft Condensed Matter +cond-mat/0205152 Strongly Correlated Electrons +cond-mat/0205179 Soft Condensed Matter +cond-mat/0205187 Materials Science +cond-mat/0205219 Statistical Mechanics +cond-mat/0205367 Soft Condensed Matter +cond-mat/0205402 Materials Science +cond-mat/0205427 Statistical Mechanics +cond-mat/0205467 Statistical Mechanics +cond-mat/0205525 Statistical Mechanics +cond-mat/0205535 Soft Condensed Matter +cond-mat/0205579 Materials Science +cond-mat/0205603 Materials Science +cond-mat/0205644 Statistical Mechanics +cond-mat/0205648 Soft Condensed Matter +cond-mat/0206032 Superconductivity +cond-mat/0206044 Statistical Mechanics +cond-mat/0206151 Strongly Correlated Electrons +cond-mat/0206163 Statistical Mechanics +cond-mat/0206173 Statistical Mechanics +cond-mat/0206177 Strongly Correlated Electrons +cond-mat/0206205 Statistical Mechanics +cond-mat/0206220 Mesoscale and Nanoscale Physics +cond-mat/0206249 Statistical Mechanics +cond-mat/0206343 Soft Condensed Matter +cond-mat/0206416 Materials Science +cond-mat/0206438 Disordered Systems and Neural Networks +cond-mat/0206446 Statistical Mechanics +cond-mat/0206475 Disordered Systems and Neural Networks +cond-mat/0206493 Soft Condensed Matter +cond-mat/0206496 Soft Condensed Matter +cond-mat/0206551 Mesoscale and Nanoscale Physics +cond-mat/0206578 Materials Science +cond-mat/0207081 Materials Science +cond-mat/0207097 Superconductivity +cond-mat/0207120 Materials Science +cond-mat/0207122 Statistical Mechanics +cond-mat/0207136 Disordered Systems and Neural Networks +cond-mat/0207158 +cond-mat/0207174 Mesoscale and Nanoscale Physics +cond-mat/0207183 Mesoscale and Nanoscale Physics +cond-mat/0207193 +cond-mat/0207211 Statistical Mechanics +cond-mat/0207266 Mesoscale and Nanoscale Physics +cond-mat/0207397 Materials Science +cond-mat/0207491 Superconductivity +cond-mat/0207500 Superconductivity +cond-mat/0207586 +cond-mat/0207643 Superconductivity +cond-mat/0207663 Materials Science +cond-mat/0207672 Materials Science +cond-mat/0207674 Statistical Mechanics +cond-mat/0207704 Superconductivity +cond-mat/0207743 Statistical Mechanics +cond-mat/0207753 Mesoscale and Nanoscale Physics +cond-mat/0208095 Soft Condensed Matter +cond-mat/0208123 Materials Science +cond-mat/0208208 +cond-mat/0208226 Superconductivity +cond-mat/0208237 Materials Science +cond-mat/0208238 Statistical Mechanics +cond-mat/0208249 Mesoscale and Nanoscale Physics +cond-mat/0208276 Superconductivity +cond-mat/0208323 Materials Science +cond-mat/0208421 Statistical Mechanics +cond-mat/0208424 Superconductivity +cond-mat/0208588 Mesoscale and Nanoscale Physics +cond-mat/0209028 Materials Science +cond-mat/0209141 +cond-mat/0209195 Soft Condensed Matter +cond-mat/0209215 Mesoscale and Nanoscale Physics +cond-mat/0209220 Soft Condensed Matter +cond-mat/0209264 Materials Science +cond-mat/0209288 Strongly Correlated Electrons +cond-mat/0209307 Strongly Correlated Electrons +cond-mat/0209332 Soft Condensed Matter +cond-mat/0209377 Mesoscale and Nanoscale Physics +cond-mat/0209395 Soft Condensed Matter +cond-mat/0209398 Statistical Mechanics +cond-mat/0209404 Materials Science +cond-mat/0209405 Strongly Correlated Electrons +cond-mat/0209438 Mesoscale and Nanoscale Physics +cond-mat/0209590 +cond-mat/0209630 Statistical Mechanics +cond-mat/0209658 Soft Condensed Matter +cond-mat/0209659 Soft Condensed Matter +cond-mat/0209673 Strongly Correlated Electrons +cond-mat/0209674 Statistical Mechanics +cond-mat/0210036 Statistical Mechanics +cond-mat/0210061 Materials Science +cond-mat/0210066 Disordered Systems and Neural Networks +cond-mat/0210148 Superconductivity +cond-mat/0210185 Soft Condensed Matter +cond-mat/0210277 Mesoscale and Nanoscale Physics +cond-mat/0210364 Superconductivity +cond-mat/0210387 Statistical Mechanics +cond-mat/0210471 Statistical Mechanics +cond-mat/0210481 Statistical Mechanics +cond-mat/0210490 Materials Science +cond-mat/0210492 Mesoscale and Nanoscale Physics +cond-mat/0210602 Strongly Correlated Electrons +cond-mat/0210673 Other Condensed Matter +cond-mat/0211046 Statistical Mechanics +cond-mat/0211090 Strongly Correlated Electrons +cond-mat/0211156 Mesoscale and Nanoscale Physics +cond-mat/0211162 Statistical Mechanics +cond-mat/0211166 Statistical Mechanics +cond-mat/0211192 Statistical Mechanics +cond-mat/0211234 +cond-mat/0211241 Superconductivity +cond-mat/0211245 Superconductivity +cond-mat/0211284 Strongly Correlated Electrons +cond-mat/0211346 Strongly Correlated Electrons +cond-mat/0211349 Superconductivity +cond-mat/0211354 Statistical Mechanics +cond-mat/0211373 Statistical Mechanics +cond-mat/0211380 Strongly Correlated Electrons +cond-mat/0211398 Soft Condensed Matter +cond-mat/0211403 Statistical Mechanics +cond-mat/0211404 Strongly Correlated Electrons +cond-mat/0211406 Strongly Correlated Electrons +cond-mat/0211463 Statistical Mechanics +cond-mat/0211504 Soft Condensed Matter +cond-mat/0211598 Strongly Correlated Electrons +cond-mat/0211636 Superconductivity +cond-mat/0211649 Mesoscale and Nanoscale Physics +cond-mat/0211678 Mesoscale and Nanoscale Physics +cond-mat/0211683 Statistical Mechanics +cond-mat/0212017 Mesoscale and Nanoscale Physics +cond-mat/0212021 Mesoscale and Nanoscale Physics +cond-mat/0212055 +cond-mat/0212156 Materials Science +cond-mat/0212161 +cond-mat/0212166 Mesoscale and Nanoscale Physics +cond-mat/0212212 +cond-mat/0212256 Strongly Correlated Electrons +cond-mat/0212290 Statistical Mechanics +cond-mat/0212310 Soft Condensed Matter +cond-mat/0212319 Disordered Systems and Neural Networks +cond-mat/0212357 Statistical Mechanics +cond-mat/0212376 Soft Condensed Matter +cond-mat/0212415 Soft Condensed Matter +cond-mat/0212491 Superconductivity +cond-mat/0212530 Statistical Mechanics +cond-mat/0212561 Mesoscale and Nanoscale Physics +cond-mat/0212572 Soft Condensed Matter +cond-mat/0212604 +cond-mat/0301004 Statistical Mechanics +cond-mat/0301025 Superconductivity +cond-mat/0301039 Soft Condensed Matter +cond-mat/0301061 Soft Condensed Matter +cond-mat/0301103 +cond-mat/0301155 Soft Condensed Matter +cond-mat/0301156 Statistical Mechanics +cond-mat/0301191 Superconductivity +cond-mat/0301311 Superconductivity +cond-mat/0301334 Materials Science +cond-mat/0301381 Superconductivity +cond-mat/0301383 Disordered Systems and Neural Networks +cond-mat/0301395 Disordered Systems and Neural Networks +cond-mat/0301483 Materials Science +cond-mat/0301498 Mesoscale and Nanoscale Physics +cond-mat/0301522 +cond-mat/0301548 Statistical Mechanics +cond-mat/0301620 Mesoscale and Nanoscale Physics +cond-mat/0302005 Disordered Systems and Neural Networks +cond-mat/0302018 Strongly Correlated Electrons +cond-mat/0302046 Superconductivity +cond-mat/0302048 Statistical Mechanics +cond-mat/0302163 Strongly Correlated Electrons +cond-mat/0302166 Statistical Mechanics +cond-mat/0302226 Strongly Correlated Electrons +cond-mat/0302242 Superconductivity +cond-mat/0302268 Materials Science +cond-mat/0302276 Soft Condensed Matter +cond-mat/0302279 Mesoscale and Nanoscale Physics +cond-mat/0302285 Statistical Mechanics +cond-mat/0302317 Mesoscale and Nanoscale Physics +cond-mat/0302342 Statistical Mechanics +cond-mat/0302433 +cond-mat/0302443 Superconductivity +cond-mat/0302475 Strongly Correlated Electrons +cond-mat/0302482 Statistical Mechanics +cond-mat/0302501 Mesoscale and Nanoscale Physics +cond-mat/0302542 Materials Science +cond-mat/0302603 Statistical Mechanics +cond-mat/0302608 Strongly Correlated Electrons +cond-mat/0303011 Mesoscale and Nanoscale Physics +cond-mat/0303050 Statistical Mechanics +cond-mat/0303055 Other Condensed Matter +cond-mat/0303068 Mesoscale and Nanoscale Physics +cond-mat/0303087 Superconductivity +cond-mat/0303120 Mesoscale and Nanoscale Physics +cond-mat/0303171 Mesoscale and Nanoscale Physics +cond-mat/0303185 +cond-mat/0303202 Superconductivity +cond-mat/0303286 Statistical Mechanics +cond-mat/0303342 Superconductivity +cond-mat/0303371 Superconductivity +cond-mat/0303469 Superconductivity +cond-mat/0303474 Mesoscale and Nanoscale Physics +cond-mat/0303482 +cond-mat/0303493 Superconductivity +cond-mat/0303537 +cond-mat/0303539 Strongly Correlated Electrons +cond-mat/0303547 Statistical Mechanics +cond-mat/0303585 Superconductivity +cond-mat/0303608 Superconductivity +cond-mat/0303630 Mesoscale and Nanoscale Physics +cond-mat/0304071 Statistical Mechanics +cond-mat/0304107 Materials Science +cond-mat/0304122 Strongly Correlated Electrons +cond-mat/0304151 +cond-mat/0304179 +cond-mat/0304205 Mesoscale and Nanoscale Physics +cond-mat/0304209 Soft Condensed Matter +cond-mat/0304264 Superconductivity +cond-mat/0304320 Statistical Mechanics +cond-mat/0304409 Strongly Correlated Electrons +cond-mat/0304418 +cond-mat/0304459 Materials Science +cond-mat/0304469 Disordered Systems and Neural Networks +cond-mat/0304508 Mesoscale and Nanoscale Physics +cond-mat/0304520 Disordered Systems and Neural Networks +cond-mat/0304549 Materials Science +cond-mat/0304556 Disordered Systems and Neural Networks +cond-mat/0304656 Superconductivity +cond-mat/0304658 Superconductivity +cond-mat/0304663 Mesoscale and Nanoscale Physics +cond-mat/0304675 Superconductivity +cond-mat/0304685 Statistical Mechanics +cond-mat/0305100 Strongly Correlated Electrons +cond-mat/0305149 Mesoscale and Nanoscale Physics +cond-mat/0305168 Superconductivity +cond-mat/0305170 Superconductivity +cond-mat/0305203 Superconductivity +cond-mat/0305213 +cond-mat/0305262 Statistical Mechanics +cond-mat/0305282 Materials Science +cond-mat/0305287 Statistical Mechanics +cond-mat/0305318 Statistical Mechanics +cond-mat/0305330 Disordered Systems and Neural Networks +cond-mat/0305335 Strongly Correlated Electrons +cond-mat/0305432 Statistical Mechanics +cond-mat/0305543 Mesoscale and Nanoscale Physics +cond-mat/0305555 Superconductivity +cond-mat/0305599 Statistical Mechanics +cond-mat/0305675 +cond-mat/0306028 Statistical Mechanics +cond-mat/0306084 Superconductivity +cond-mat/0306157 Strongly Correlated Electrons +cond-mat/0306184 +cond-mat/0306211 Strongly Correlated Electrons +cond-mat/0306217 Statistical Mechanics +cond-mat/0306247 Statistical Mechanics +cond-mat/0306255 Statistical Mechanics +cond-mat/0306257 Strongly Correlated Electrons +cond-mat/0306335 Disordered Systems and Neural Networks +cond-mat/0306374 Statistical Mechanics +cond-mat/0306618 Materials Science +cond-mat/0306636 +cond-mat/0306637 Strongly Correlated Electrons +cond-mat/0306640 Soft Condensed Matter +cond-mat/0306657 Materials Science +cond-mat/0307004 Strongly Correlated Electrons +cond-mat/0307076 Materials Science +cond-mat/0307142 +cond-mat/0307153 Strongly Correlated Electrons +cond-mat/0307167 Soft Condensed Matter +cond-mat/0307182 Mesoscale and Nanoscale Physics +cond-mat/0307300 Statistical Mechanics +cond-mat/0307306 Statistical Mechanics +cond-mat/0307359 Materials Science +cond-mat/0307406 Statistical Mechanics +cond-mat/0307472 Statistical Mechanics +cond-mat/0307475 Strongly Correlated Electrons +cond-mat/0307481 Disordered Systems and Neural Networks +cond-mat/0307538 +cond-mat/0307649 Statistical Mechanics +cond-mat/0307699 Statistical Mechanics +cond-mat/0308037 Statistical Mechanics +cond-mat/0308056 +cond-mat/0308077 +cond-mat/0308123 Superconductivity +cond-mat/0308177 Statistical Mechanics +cond-mat/0308227 Superconductivity +cond-mat/0308241 Mesoscale and Nanoscale Physics +cond-mat/0308316 Statistical Mechanics +cond-mat/0308332 Superconductivity +cond-mat/0308464 Mesoscale and Nanoscale Physics +cond-mat/0308517 Strongly Correlated Electrons +cond-mat/0308524 Materials Science +cond-mat/0308527 Materials Science +cond-mat/0308593 Soft Condensed Matter +cond-mat/0309105 Statistical Mechanics +cond-mat/0309107 Soft Condensed Matter +cond-mat/0309184 Statistical Mechanics +cond-mat/0309225 Statistical Mechanics +cond-mat/0309254 Superconductivity +cond-mat/0309256 Disordered Systems and Neural Networks +cond-mat/0309330 Soft Condensed Matter +cond-mat/0309357 Superconductivity +cond-mat/0309370 Strongly Correlated Electrons +cond-mat/0309386 Statistical Mechanics +cond-mat/0309403 Strongly Correlated Electrons +cond-mat/0309495 +cond-mat/0309548 Disordered Systems and Neural Networks +cond-mat/0309556 Statistical Mechanics +cond-mat/0309565 Mesoscale and Nanoscale Physics +cond-mat/0309570 Mesoscale and Nanoscale Physics +cond-mat/0309575 Superconductivity +cond-mat/0309665 Statistical Mechanics +cond-mat/0309711 Soft Condensed Matter +cond-mat/0310037 Statistical Mechanics +cond-mat/0310070 Soft Condensed Matter +cond-mat/0310124 Strongly Correlated Electrons +cond-mat/0310229 Mesoscale and Nanoscale Physics +cond-mat/0310294 Strongly Correlated Electrons +cond-mat/0310320 Strongly Correlated Electrons +cond-mat/0310354 Superconductivity +cond-mat/0310393 Superconductivity +cond-mat/0310563 +cond-mat/0310655 Mesoscale and Nanoscale Physics +cond-mat/0310684 Materials Science +cond-mat/0310694 Statistical Mechanics +cond-mat/0310708 Mesoscale and Nanoscale Physics +cond-mat/0310715 Mesoscale and Nanoscale Physics +cond-mat/0311051 Mesoscale and Nanoscale Physics +cond-mat/0311062 Mesoscale and Nanoscale Physics +cond-mat/0311156 Statistical Mechanics +cond-mat/0311202 Disordered Systems and Neural Networks +cond-mat/0311209 Mesoscale and Nanoscale Physics +cond-mat/0311240 Materials Science +cond-mat/0311253 Statistical Mechanics +cond-mat/0311273 Statistical Mechanics +cond-mat/0311433 Materials Science +cond-mat/0311444 Statistical Mechanics +cond-mat/0311539 Materials Science +cond-mat/0311652 Strongly Correlated Electrons +cond-mat/0312148 Superconductivity +cond-mat/0312156 Strongly Correlated Electrons +cond-mat/0312324 Mesoscale and Nanoscale Physics +cond-mat/0312340 Statistical Mechanics +cond-mat/0312372 Soft Condensed Matter +cond-mat/0312384 Statistical Mechanics +cond-mat/0312453 Soft Condensed Matter +cond-mat/0312461 Statistical Mechanics +cond-mat/0312487 Strongly Correlated Electrons +cond-mat/0312597 Strongly Correlated Electrons +cond-mat/0312615 Strongly Correlated Electrons +cond-mat/0312626 Mesoscale and Nanoscale Physics +cond-mat/0401124 Superconductivity +cond-mat/0401148 Statistical Mechanics +cond-mat/0401206 Superconductivity +cond-mat/0401378 Other Condensed Matter +cond-mat/0401385 Statistical Mechanics +cond-mat/0401399 Mesoscale and Nanoscale Physics +cond-mat/0401422 Other Condensed Matter +cond-mat/0401497 Statistical Mechanics +cond-mat/0401572 Superconductivity +cond-mat/0401613 Materials Science +cond-mat/0402017 Strongly Correlated Electrons +cond-mat/0402031 Soft Condensed Matter +cond-mat/0402035 Soft Condensed Matter +cond-mat/0402057 Mesoscale and Nanoscale Physics +cond-mat/0402060 Disordered Systems and Neural Networks +cond-mat/0402142 Other Condensed Matter +cond-mat/0402271 Other Condensed Matter +cond-mat/0402347 Other Condensed Matter +cond-mat/0402357 Materials Science +cond-mat/0402395 Statistical Mechanics +cond-mat/0402472 Strongly Correlated Electrons +cond-mat/0402475 Other Condensed Matter +cond-mat/0402502 Statistical Mechanics +cond-mat/0402505 Materials Science +cond-mat/0402513 Disordered Systems and Neural Networks +cond-mat/0402613 Statistical Mechanics +cond-mat/0402622 Statistical Mechanics +cond-mat/0402641 Materials Science +cond-mat/0402646 Other Condensed Matter +cond-mat/0402686 Materials Science +cond-mat/0403047 Materials Science +cond-mat/0403084 Disordered Systems and Neural Networks +cond-mat/0403095 Superconductivity +cond-mat/0403103 Superconductivity +cond-mat/0403133 Soft Condensed Matter +cond-mat/0403135 Superconductivity +cond-mat/0403169 Strongly Correlated Electrons +cond-mat/0403190 Materials Science +cond-mat/0403230 Superconductivity +cond-mat/0403270 Statistical Mechanics +cond-mat/0403316 Mesoscale and Nanoscale Physics +cond-mat/0403389 Disordered Systems and Neural Networks +cond-mat/0403402 Statistical Mechanics +cond-mat/0403428 Mesoscale and Nanoscale Physics +cond-mat/0403476 Mesoscale and Nanoscale Physics +cond-mat/0403506 Disordered Systems and Neural Networks +cond-mat/0403549 Disordered Systems and Neural Networks +cond-mat/0403605 Strongly Correlated Electrons +cond-mat/0403722 Soft Condensed Matter +cond-mat/0403763 Strongly Correlated Electrons +cond-mat/0404047 Materials Science +cond-mat/0404099 Strongly Correlated Electrons +cond-mat/0404102 Soft Condensed Matter +cond-mat/0404122 Strongly Correlated Electrons +cond-mat/0404143 Statistical Mechanics +cond-mat/0404186 Materials Science +cond-mat/0404205 Soft Condensed Matter +cond-mat/0404278 Statistical Mechanics +cond-mat/0404338 Mesoscale and Nanoscale Physics +cond-mat/0404459 Superconductivity +cond-mat/0404478 Superconductivity +cond-mat/0404498 Strongly Correlated Electrons +cond-mat/0404578 Other Condensed Matter +cond-mat/0404582 Statistical Mechanics +cond-mat/0404608 Soft Condensed Matter +cond-mat/0404674 Strongly Correlated Electrons +cond-mat/0404742 Disordered Systems and Neural Networks +cond-mat/0405115 Statistical Mechanics +cond-mat/0405138 Disordered Systems and Neural Networks +cond-mat/0405195 Mesoscale and Nanoscale Physics +cond-mat/0405208 Soft Condensed Matter +cond-mat/0405257 Other Condensed Matter +cond-mat/0405290 Superconductivity +cond-mat/0405342 Mesoscale and Nanoscale Physics +cond-mat/0405364 Mesoscale and Nanoscale Physics +cond-mat/0405414 Disordered Systems and Neural Networks +cond-mat/0405444 Strongly Correlated Electrons +cond-mat/0405452 Strongly Correlated Electrons +cond-mat/0405633 Superconductivity +cond-mat/0405667 Statistical Mechanics +cond-mat/0406064 Mesoscale and Nanoscale Physics +cond-mat/0406088 Soft Condensed Matter +cond-mat/0406101 Statistical Mechanics +cond-mat/0406118 Mesoscale and Nanoscale Physics +cond-mat/0406138 Other Condensed Matter +cond-mat/0406178 Statistical Mechanics +cond-mat/0406198 Statistical Mechanics +cond-mat/0406302 Strongly Correlated Electrons +cond-mat/0406317 Statistical Mechanics +cond-mat/0406339 Mesoscale and Nanoscale Physics +cond-mat/0406356 Materials Science +cond-mat/0406365 Statistical Mechanics +cond-mat/0406367 Superconductivity +cond-mat/0406370 Materials Science +cond-mat/0406417 Mesoscale and Nanoscale Physics +cond-mat/0406432 Other Condensed Matter +cond-mat/0406455 Statistical Mechanics +cond-mat/0406478 Mesoscale and Nanoscale Physics +cond-mat/0406503 Soft Condensed Matter +cond-mat/0406567 Statistical Mechanics +cond-mat/0406580 Disordered Systems and Neural Networks +cond-mat/0406598 Statistical Mechanics +cond-mat/0406616 Materials Science +cond-mat/0406620 Superconductivity +cond-mat/0406649 Statistical Mechanics +cond-mat/0406678 Materials Science +cond-mat/0406742 Statistical Mechanics +cond-mat/0407004 Disordered Systems and Neural Networks +cond-mat/0407098 Disordered Systems and Neural Networks +cond-mat/0407116 Mesoscale and Nanoscale Physics +cond-mat/0407134 Statistical Mechanics +cond-mat/0407172 Strongly Correlated Electrons +cond-mat/0407243 Materials Science +cond-mat/0407307 Strongly Correlated Electrons +cond-mat/0407346 Statistical Mechanics +cond-mat/0407369 Materials Science +cond-mat/0407530 Other Condensed Matter +cond-mat/0407532 Soft Condensed Matter +cond-mat/0407557 Strongly Correlated Electrons +cond-mat/0407616 Strongly Correlated Electrons +cond-mat/0407720 Mesoscale and Nanoscale Physics +cond-mat/0407738 Mesoscale and Nanoscale Physics +cond-mat/0407778 Superconductivity +cond-mat/0407801 Statistical Mechanics +cond-mat/0408112 Mesoscale and Nanoscale Physics +cond-mat/0408130 Statistical Mechanics +cond-mat/0408216 Other Condensed Matter +cond-mat/0408287 Superconductivity +cond-mat/0408289 Statistical Mechanics +cond-mat/0408347 Statistical Mechanics +cond-mat/0408349 Disordered Systems and Neural Networks +cond-mat/0408364 Other Condensed Matter +cond-mat/0408391 Statistical Mechanics +cond-mat/0408445 Soft Condensed Matter +cond-mat/0408508 Mesoscale and Nanoscale Physics +cond-mat/0408513 Strongly Correlated Electrons +cond-mat/0408605 Materials Science +cond-mat/0408675 Mesoscale and Nanoscale Physics +cond-mat/0409075 Mesoscale and Nanoscale Physics +cond-mat/0409090 Superconductivity +cond-mat/0409138 Statistical Mechanics +cond-mat/0409208 Statistical Mechanics +cond-mat/0409234 Statistical Mechanics +cond-mat/0409323 Disordered Systems and Neural Networks +cond-mat/0409329 Statistical Mechanics +cond-mat/0409364 Materials Science +cond-mat/0409394 Other Condensed Matter +cond-mat/0409429 Materials Science +cond-mat/0409443 Strongly Correlated Electrons +cond-mat/0409446 Mesoscale and Nanoscale Physics +cond-mat/0409475 Statistical Mechanics +cond-mat/0409493 Statistical Mechanics +cond-mat/0409513 Materials Science +cond-mat/0409580 Mesoscale and Nanoscale Physics +cond-mat/0409685 Mesoscale and Nanoscale Physics +cond-mat/0409710 Statistical Mechanics +cond-mat/0409744 Soft Condensed Matter +cond-mat/0410054 Mesoscale and Nanoscale Physics +cond-mat/0410070 Other Condensed Matter +cond-mat/0410075 Superconductivity +cond-mat/0410134 Disordered Systems and Neural Networks +cond-mat/0410186 Materials Science +cond-mat/0410213 Statistical Mechanics +cond-mat/0410252 Other Condensed Matter +cond-mat/0410282 Statistical Mechanics +cond-mat/0410295 Mesoscale and Nanoscale Physics +cond-mat/0410320 Mesoscale and Nanoscale Physics +cond-mat/0410390 Disordered Systems and Neural Networks +cond-mat/0410467 Mesoscale and Nanoscale Physics +cond-mat/0410490 Statistical Mechanics +cond-mat/0410590 Materials Science +cond-mat/0410652 Superconductivity +cond-mat/0410726 Other Condensed Matter +cond-mat/0411007 Superconductivity +cond-mat/0411015 Soft Condensed Matter +cond-mat/0411039 Strongly Correlated Electrons +cond-mat/0411071 Mesoscale and Nanoscale Physics +cond-mat/0411166 Statistical Mechanics +cond-mat/0411201 Superconductivity +cond-mat/0411204 Strongly Correlated Electrons +cond-mat/0411250 Mesoscale and Nanoscale Physics +cond-mat/0411321 Superconductivity +cond-mat/0411339 Other Condensed Matter +cond-mat/0411431 Materials Science +cond-mat/0411470 Other Condensed Matter +cond-mat/0411491 Materials Science +cond-mat/0411510 Other Condensed Matter +cond-mat/0411553 Statistical Mechanics +cond-mat/0411574 Superconductivity +cond-mat/0411601 Strongly Correlated Electrons +cond-mat/0411681 Superconductivity +cond-mat/0411757 Other Condensed Matter +cond-mat/0412011 Statistical Mechanics +cond-mat/0412135 Other Condensed Matter +cond-mat/0412211 Statistical Mechanics +cond-mat/0412274 Strongly Correlated Electrons +cond-mat/0412307 Materials Science +cond-mat/0412342 Materials Science +cond-mat/0412358 Strongly Correlated Electrons +cond-mat/0412459 Other Condensed Matter +cond-mat/0412527 Strongly Correlated Electrons +cond-mat/0412565 Strongly Correlated Electrons +cond-mat/0412634 Other Condensed Matter +cond-mat/0412744 Statistical Mechanics +cond-mat/0412759 Statistical Mechanics +cond-mat/0501181 Materials Science +cond-mat/0501219 Statistical Mechanics +cond-mat/0501222 Statistical Mechanics +cond-mat/0501282 Statistical Mechanics +cond-mat/0501395 Other Condensed Matter +cond-mat/0501442 Statistical Mechanics +cond-mat/0501570 Mesoscale and Nanoscale Physics +cond-mat/0501601 Strongly Correlated Electrons +cond-mat/0501623 Mesoscale and Nanoscale Physics +cond-mat/0502008 Materials Science +cond-mat/0502073 Superconductivity +cond-mat/0502090 Materials Science +cond-mat/0502115 Materials Science +cond-mat/0502167 Statistical Mechanics +cond-mat/0502187 Other Condensed Matter +cond-mat/0502302 Strongly Correlated Electrons +cond-mat/0502355 Strongly Correlated Electrons +cond-mat/0502363 Strongly Correlated Electrons +cond-mat/0502372 Statistical Mechanics +cond-mat/0502400 Mesoscale and Nanoscale Physics +cond-mat/0502489 Strongly Correlated Electrons +cond-mat/0502561 Mesoscale and Nanoscale Physics +cond-mat/0502663 Disordered Systems and Neural Networks +cond-mat/0502675 Mesoscale and Nanoscale Physics +cond-mat/0503054 Materials Science +cond-mat/0503145 Strongly Correlated Electrons +cond-mat/0503194 Materials Science +cond-mat/0503280 Soft Condensed Matter +cond-mat/0503323 Mesoscale and Nanoscale Physics +cond-mat/0503512 Superconductivity +cond-mat/0503553 Disordered Systems and Neural Networks +cond-mat/0503596 Statistical Mechanics +cond-mat/0503742 Statistical Mechanics +cond-mat/0504025 Statistical Mechanics +cond-mat/0504031 Soft Condensed Matter +cond-mat/0504115 Statistical Mechanics +cond-mat/0504158 Soft Condensed Matter +cond-mat/0504176 Superconductivity +cond-mat/0504189 Soft Condensed Matter +cond-mat/0504194 Soft Condensed Matter +cond-mat/0504200 Materials Science +cond-mat/0504250 Superconductivity +cond-mat/0504270 Statistical Mechanics +cond-mat/0504279 Materials Science +cond-mat/0504286 Materials Science +cond-mat/0504434 Soft Condensed Matter +cond-mat/0504452 Disordered Systems and Neural Networks +cond-mat/0504584 Materials Science +cond-mat/0504669 Materials Science +cond-mat/0504708 Soft Condensed Matter +cond-mat/0504771 Mesoscale and Nanoscale Physics +cond-mat/0504778 Strongly Correlated Electrons +cond-mat/0504791 Mesoscale and Nanoscale Physics +cond-mat/0505005 Mesoscale and Nanoscale Physics +cond-mat/0505013 Materials Science +cond-mat/0505027 Statistical Mechanics +cond-mat/0505108 Superconductivity +cond-mat/0505114 Soft Condensed Matter +cond-mat/0505139 Statistical Mechanics +cond-mat/0505149 Materials Science +cond-mat/0505230 Strongly Correlated Electrons +cond-mat/0505257 Strongly Correlated Electrons +cond-mat/0505304 Strongly Correlated Electrons +cond-mat/0505307 Other Condensed Matter +cond-mat/0505331 Mesoscale and Nanoscale Physics +cond-mat/0505355 Statistical Mechanics +cond-mat/0505363 Other Condensed Matter +cond-mat/0505364 Other Condensed Matter +cond-mat/0505392 Mesoscale and Nanoscale Physics +cond-mat/0505402 Statistical Mechanics +cond-mat/0506007 Materials Science +cond-mat/0506137 Disordered Systems and Neural Networks +cond-mat/0506213 Strongly Correlated Electrons +cond-mat/0506214 Statistical Mechanics +cond-mat/0506260 Mesoscale and Nanoscale Physics +cond-mat/0506265 Superconductivity +cond-mat/0506314 Materials Science +cond-mat/0506341 Statistical Mechanics +cond-mat/0506363 Statistical Mechanics +cond-mat/0506395 Statistical Mechanics +cond-mat/0506453 Statistical Mechanics +cond-mat/0506490 Superconductivity +cond-mat/0506591 Soft Condensed Matter +cond-mat/0506675 Soft Condensed Matter +cond-mat/0506748 Other Condensed Matter +cond-mat/0506774 Materials Science +cond-mat/0507031 Superconductivity +cond-mat/0507269 Superconductivity +cond-mat/0507562 Strongly Correlated Electrons +cond-mat/0507603 Mesoscale and Nanoscale Physics +cond-mat/0507640 Statistical Mechanics +cond-mat/0508009 Statistical Mechanics +cond-mat/0508061 Statistical Mechanics +cond-mat/0508115 Mesoscale and Nanoscale Physics +cond-mat/0508324 Soft Condensed Matter +cond-mat/0508343 Statistical Mechanics +cond-mat/0508388 Other Condensed Matter +cond-mat/0508393 Mesoscale and Nanoscale Physics +cond-mat/0508403 Soft Condensed Matter +cond-mat/0508504 Strongly Correlated Electrons +cond-mat/0508510 Materials Science +cond-mat/0508533 Materials Science +cond-mat/0508551 Other Condensed Matter +cond-mat/0508666 Statistical Mechanics +cond-mat/0508693 Soft Condensed Matter +cond-mat/0508709 Strongly Correlated Electrons +cond-mat/0508728 Mesoscale and Nanoscale Physics +cond-mat/0509020 Statistical Mechanics +cond-mat/0509232 Mesoscale and Nanoscale Physics +cond-mat/0509277 Superconductivity +cond-mat/0509291 Other Condensed Matter +cond-mat/0509296 Strongly Correlated Electrons +cond-mat/0509346 Superconductivity +cond-mat/0509352 Strongly Correlated Electrons +cond-mat/0509404 Soft Condensed Matter +cond-mat/0509415 Statistical Mechanics +cond-mat/0509528 Materials Science +cond-mat/0509532 Materials Science +cond-mat/0509542 Strongly Correlated Electrons +cond-mat/0509545 Other Condensed Matter +cond-mat/0509547 Superconductivity +cond-mat/0509558 Strongly Correlated Electrons +cond-mat/0509573 Statistical Mechanics +cond-mat/0509579 Superconductivity +cond-mat/0509588 Strongly Correlated Electrons +cond-mat/0509600 Soft Condensed Matter +cond-mat/0509602 Other Condensed Matter +cond-mat/0509608 Statistical Mechanics +cond-mat/0509616 Statistical Mechanics +cond-mat/0509643 Strongly Correlated Electrons +cond-mat/0509666 Other Condensed Matter +cond-mat/0509673 Strongly Correlated Electrons +cond-mat/0509680 Mesoscale and Nanoscale Physics +cond-mat/0509684 Soft Condensed Matter +cond-mat/0509695 Strongly Correlated Electrons +cond-mat/0509710 Mesoscale and Nanoscale Physics +cond-mat/0509746 Mesoscale and Nanoscale Physics +cond-mat/0509751 Statistical Mechanics +cond-mat/0509754 Statistical Mechanics +cond-mat/0509755 Superconductivity +cond-mat/0509757 Soft Condensed Matter +cond-mat/0509759 Soft Condensed Matter +cond-mat/0509760 Materials Science +cond-mat/0509769 Superconductivity +cond-mat/0509774 Statistical Mechanics +cond-mat/0509780 Superconductivity +cond-mat/0509795 Statistical Mechanics +cond-mat/0509796 Statistical Mechanics +cond-mat/0509802 Statistical Mechanics +cond-mat/0509805 Strongly Correlated Electrons +cond-mat/0510003 Superconductivity +cond-mat/0510005 Materials Science +cond-mat/0510007 Superconductivity +cond-mat/0510012 Soft Condensed Matter +cond-mat/0510016 Strongly Correlated Electrons +cond-mat/0510019 Strongly Correlated Electrons +cond-mat/0510020 Materials Science +cond-mat/0510024 Mesoscale and Nanoscale Physics +cond-mat/0510029 Soft Condensed Matter +cond-mat/0510032 Soft Condensed Matter +cond-mat/0510035 Materials Science +cond-mat/0510038 Statistical Mechanics +cond-mat/0510039 Superconductivity +cond-mat/0510045 Statistical Mechanics +cond-mat/0510048 Mesoscale and Nanoscale Physics +cond-mat/0510055 Statistical Mechanics +cond-mat/0510057 Superconductivity +cond-mat/0510058 Statistical Mechanics +cond-mat/0510060 Strongly Correlated Electrons +cond-mat/0510062 Mesoscale and Nanoscale Physics +cond-mat/0510068 Soft Condensed Matter +cond-mat/0510074 Other Condensed Matter +cond-mat/0510075 Disordered Systems and Neural Networks +cond-mat/0510091 Superconductivity +cond-mat/0510096 Other Condensed Matter +cond-mat/0510097 Other Condensed Matter +cond-mat/0510098 Superconductivity +cond-mat/0510101 Mesoscale and Nanoscale Physics +cond-mat/0510112 Mesoscale and Nanoscale Physics +cond-mat/0510117 Superconductivity +cond-mat/0510118 Materials Science +cond-mat/0510122 Mesoscale and Nanoscale Physics +cond-mat/0510128 Statistical Mechanics +cond-mat/0510132 Strongly Correlated Electrons +cond-mat/0510135 Soft Condensed Matter +cond-mat/0510139 Mesoscale and Nanoscale Physics +cond-mat/0510141 Other Condensed Matter +cond-mat/0510144 Materials Science +cond-mat/0510148 Soft Condensed Matter +cond-mat/0510205 Materials Science +cond-mat/0510473 Disordered Systems and Neural Networks +cond-mat/0510546 Superconductivity +cond-mat/0510547 Superconductivity +cond-mat/0510548 Superconductivity +cond-mat/0510609 Strongly Correlated Electrons +cond-mat/0510683 Statistical Mechanics +cond-mat/0510704 Superconductivity +cond-mat/0510826 Soft Condensed Matter +cond-mat/0510832 Strongly Correlated Electrons +cond-mat/0511255 Soft Condensed Matter +cond-mat/0511503 Materials Science +cond-mat/0511584 Superconductivity +cond-mat/0511635 Other Condensed Matter +cond-mat/0512045 Mesoscale and Nanoscale Physics +cond-mat/0512680 Superconductivity +cond-mat/0601143 Statistical Mechanics +cond-mat/0601147 Superconductivity +cond-mat/0601258 Statistical Mechanics +cond-mat/0601315 Mesoscale and Nanoscale Physics +cond-mat/0601398 Soft Condensed Matter +cond-mat/0601701 Strongly Correlated Electrons +cond-mat/0601702 Disordered Systems and Neural Networks +cond-mat/0602010 Strongly Correlated Electrons +cond-mat/0602252 Superconductivity +cond-mat/0602367 Statistical Mechanics +cond-mat/0602379 Strongly Correlated Electrons +cond-mat/0603425 Strongly Correlated Electrons +cond-mat/0603683 Superconductivity +cond-mat/0603697 Soft Condensed Matter +cond-mat/0603799 Superconductivity +cond-mat/0603814 Disordered Systems and Neural Networks +cond-mat/0604140 Superconductivity +cond-mat/0604242 Disordered Systems and Neural Networks +cond-mat/0604243 Materials Science +cond-mat/0604375 Soft Condensed Matter +cond-mat/0604397 Other Condensed Matter +cond-mat/0605178 Materials Science +cond-mat/0605360 Mesoscale and Nanoscale Physics +cond-mat/0606165 Strongly Correlated Electrons +cond-mat/0606322 Superconductivity +cond-mat/0606566 Disordered Systems and Neural Networks +cond-mat/0607141 Strongly Correlated Electrons +cond-mat/0607220 Disordered Systems and Neural Networks +cond-mat/0607621 Mesoscale and Nanoscale Physics +cond-mat/0607640 Strongly Correlated Electrons +cond-mat/0607669 Mesoscale and Nanoscale Physics +cond-mat/0607764 Strongly Correlated Electrons +cond-mat/0607824 Strongly Correlated Electrons +cond-mat/0607833 Materials Science +cond-mat/0608091 Superconductivity +cond-mat/0608550 Mesoscale and Nanoscale Physics +cond-mat/0609102 Strongly Correlated Electrons +cond-mat/0609231 Strongly Correlated Electrons +cond-mat/0609378 Soft Condensed Matter +cond-mat/0609661 Materials Science +cond-mat/0610004 Statistical Mechanics +cond-mat/0610037 Superconductivity +cond-mat/0610122 Materials Science +cond-mat/0610307 Strongly Correlated Electrons +cond-mat/0611013 Mesoscale and Nanoscale Physics +cond-mat/0611076 Soft Condensed Matter +cond-mat/0611354 Superconductivity +cond-mat/0611431 Superconductivity +cond-mat/0611748 Superconductivity +cond-mat/0701266 Superconductivity +cond-mat/0703696 Statistical Mechanics +cond-mat/9204016 +cond-mat/9206009 +cond-mat/9209019 +cond-mat/9211008 +cond-mat/9211017 +cond-mat/9301035 +cond-mat/9302020 +cond-mat/9304031 +cond-mat/9306012 +cond-mat/9306028 +cond-mat/9307055 +cond-mat/9308002 +cond-mat/9308026 +cond-mat/9309016 +cond-mat/9309030 +cond-mat/9310057 +cond-mat/9311004 +cond-mat/9312014 +cond-mat/9401001 +cond-mat/9401022 +cond-mat/9401053 +cond-mat/9402080 Disordered Systems and Neural Networks +cond-mat/9403039 +cond-mat/9403065 Statistical Mechanics +cond-mat/9404040 +cond-mat/9404092 +cond-mat/9405039 +cond-mat/9406023 +cond-mat/9406026 +cond-mat/9406055 +cond-mat/9407047 +cond-mat/9407053 +cond-mat/9407085 +cond-mat/9408003 +cond-mat/9408013 +cond-mat/9408033 +cond-mat/9409040 +cond-mat/9409052 +cond-mat/9409075 +cond-mat/9409095 +cond-mat/9410020 Superconductivity +cond-mat/9410081 +cond-mat/9410116 +cond-mat/9411012 +cond-mat/9411094 +cond-mat/9412019 +cond-mat/9412023 +cond-mat/9412035 +cond-mat/9412085 +cond-mat/9501002 +cond-mat/9501004 +cond-mat/9501006 +cond-mat/9501007 +cond-mat/9501010 +cond-mat/9501011 +cond-mat/9501012 +cond-mat/9501013 +cond-mat/9501014 +cond-mat/9501016 +cond-mat/9501017 +cond-mat/9501018 +cond-mat/9501020 +cond-mat/9501021 +cond-mat/9501022 +cond-mat/9501024 +cond-mat/9501025 +cond-mat/9501026 +cond-mat/9501028 +cond-mat/9501029 +cond-mat/9501030 +cond-mat/9501031 +cond-mat/9501032 +cond-mat/9501033 +cond-mat/9501036 +cond-mat/9501039 +cond-mat/9501040 +cond-mat/9501041 +cond-mat/9501042 +cond-mat/9501043 +cond-mat/9501048 +cond-mat/9501049 +cond-mat/9501050 +cond-mat/9501051 +cond-mat/9501053 +cond-mat/9501054 +cond-mat/9501056 +cond-mat/9501057 +cond-mat/9501058 +cond-mat/9501061 +cond-mat/9501064 +cond-mat/9501066 +cond-mat/9501067 +cond-mat/9501068 +cond-mat/9501070 +cond-mat/9501071 +cond-mat/9501072 +cond-mat/9501073 +cond-mat/9501075 +cond-mat/9501076 +cond-mat/9501080 +cond-mat/9501081 +cond-mat/9501082 +cond-mat/9501083 +cond-mat/9501084 +cond-mat/9501086 +cond-mat/9501087 +cond-mat/9501088 +cond-mat/9501090 +cond-mat/9501091 +cond-mat/9501093 +cond-mat/9501094 +cond-mat/9501096 +cond-mat/9501099 +cond-mat/9501102 +cond-mat/9501105 +cond-mat/9501106 +cond-mat/9501107 +cond-mat/9501109 +cond-mat/9501110 +cond-mat/9501111 +cond-mat/9501112 +cond-mat/9501113 +cond-mat/9501114 +cond-mat/9501116 +cond-mat/9501119 +cond-mat/9501120 +cond-mat/9501121 +cond-mat/9501123 +cond-mat/9501126 +cond-mat/9501127 +cond-mat/9501128 +cond-mat/9501132 +cond-mat/9501134 +cond-mat/9501138 +cond-mat/9502002 +cond-mat/9502004 +cond-mat/9502005 +cond-mat/9502006 +cond-mat/9502007 +cond-mat/9502008 +cond-mat/9502009 +cond-mat/9502010 +cond-mat/9502012 +cond-mat/9502013 +cond-mat/9502014 +cond-mat/9502015 +cond-mat/9502016 +cond-mat/9502018 +cond-mat/9502019 +cond-mat/9502033 +cond-mat/9502035 +cond-mat/9502036 +cond-mat/9502043 +cond-mat/9502045 +cond-mat/9502048 +cond-mat/9502050 +cond-mat/9502051 +cond-mat/9502053 +cond-mat/9502054 +cond-mat/9502055 +cond-mat/9502057 +cond-mat/9502059 +cond-mat/9502060 +cond-mat/9502061 +cond-mat/9502062 +cond-mat/9502065 +cond-mat/9502066 +cond-mat/9502067 +cond-mat/9502068 +cond-mat/9502069 +cond-mat/9502070 +cond-mat/9502073 +cond-mat/9502074 +cond-mat/9502075 +cond-mat/9502077 +cond-mat/9502078 +cond-mat/9502079 +cond-mat/9502081 +cond-mat/9502082 +cond-mat/9502083 +cond-mat/9502084 +cond-mat/9502085 +cond-mat/9502086 +cond-mat/9502088 +cond-mat/9502089 +cond-mat/9502091 +cond-mat/9502093 +cond-mat/9502094 +cond-mat/9502095 +cond-mat/9502096 +cond-mat/9502097 +cond-mat/9502098 +cond-mat/9502100 +cond-mat/9502101 +cond-mat/9502102 +cond-mat/9502103 +cond-mat/9502104 +cond-mat/9502105 +cond-mat/9502106 +cond-mat/9502107 +cond-mat/9502108 +cond-mat/9502109 +cond-mat/9502110 +cond-mat/9502111 +cond-mat/9502112 +cond-mat/9502117 +cond-mat/9502118 +cond-mat/9502119 +cond-mat/9502120 +cond-mat/9503001 +cond-mat/9503002 +cond-mat/9503003 +cond-mat/9503005 +cond-mat/9503006 +cond-mat/9503007 +cond-mat/9503008 +cond-mat/9503010 +cond-mat/9503011 +cond-mat/9503012 +cond-mat/9503014 +cond-mat/9503017 +cond-mat/9503018 +cond-mat/9503019 +cond-mat/9503020 +cond-mat/9503023 +cond-mat/9503024 +cond-mat/9503025 +cond-mat/9503026 +cond-mat/9503027 +cond-mat/9503029 +cond-mat/9503035 +cond-mat/9503036 +cond-mat/9503037 +cond-mat/9503039 +cond-mat/9503043 +cond-mat/9503044 +cond-mat/9503045 +cond-mat/9503047 +cond-mat/9503048 +cond-mat/9503049 +cond-mat/9503050 +cond-mat/9503051 +cond-mat/9503052 +cond-mat/9503054 +cond-mat/9503055 +cond-mat/9503056 +cond-mat/9503058 +cond-mat/9503059 +cond-mat/9503060 +cond-mat/9503066 +cond-mat/9503067 +cond-mat/9503069 +cond-mat/9503071 +cond-mat/9503072 +cond-mat/9503073 +cond-mat/9503075 +cond-mat/9503076 +cond-mat/9503077 +cond-mat/9503079 +cond-mat/9503083 +cond-mat/9503084 +cond-mat/9503087 +cond-mat/9503088 +cond-mat/9503089 +cond-mat/9503090 +cond-mat/9503091 +cond-mat/9503095 +cond-mat/9503096 +cond-mat/9503097 +cond-mat/9503098 +cond-mat/9503102 +cond-mat/9503103 +cond-mat/9503104 +cond-mat/9503105 +cond-mat/9503107 +cond-mat/9503108 +cond-mat/9503109 +cond-mat/9503118 +cond-mat/9503128 +cond-mat/9503141 +cond-mat/9504021 Statistical Mechanics +cond-mat/9504031 +cond-mat/9504086 +cond-mat/9504119 +cond-mat/9505008 +cond-mat/9505009 +cond-mat/9505012 Superconductivity +cond-mat/9505045 +cond-mat/9505054 +cond-mat/9505073 +cond-mat/9505106 +cond-mat/9505144 +cond-mat/9505156 +cond-mat/9505158 +cond-mat/9506007 +cond-mat/9506012 +cond-mat/9506024 +cond-mat/9506046 +cond-mat/9506048 +cond-mat/9506052 +cond-mat/9506059 +cond-mat/9506060 +cond-mat/9506101 +cond-mat/9506130 +cond-mat/9507098 +cond-mat/9507120 +cond-mat/9508020 +cond-mat/9508055 +cond-mat/9508062 +cond-mat/9508081 +cond-mat/9508095 +cond-mat/9508144 +cond-mat/9509007 +cond-mat/9509010 +cond-mat/9509012 +cond-mat/9509015 +cond-mat/9509027 +cond-mat/9509071 +cond-mat/9509095 +cond-mat/9510004 +cond-mat/9510022 +cond-mat/9510037 +cond-mat/9510047 +cond-mat/9510059 +cond-mat/9510069 +cond-mat/9510079 +cond-mat/9510081 +cond-mat/9510111 +cond-mat/9511011 +cond-mat/9511035 +cond-mat/9511094 +cond-mat/9511112 +cond-mat/9511124 +cond-mat/9512008 +cond-mat/9512010 +cond-mat/9512144 +cond-mat/9512168 +cond-mat/9601045 +cond-mat/9601091 +cond-mat/9601151 +cond-mat/9601154 +cond-mat/9602009 +cond-mat/9602043 +cond-mat/9602052 +cond-mat/9602077 +cond-mat/9602158 +cond-mat/9603009 +cond-mat/9603165 +cond-mat/9603179 +cond-mat/9604033 Disordered Systems and Neural Networks +cond-mat/9604035 +cond-mat/9604058 +cond-mat/9604083 +cond-mat/9604093 +cond-mat/9604112 +cond-mat/9604113 Materials Science +cond-mat/9605105 Statistical Mechanics +cond-mat/9605106 +cond-mat/9605141 +cond-mat/9605151 +cond-mat/9605180 +cond-mat/9605195 +cond-mat/9606040 +cond-mat/9606072 +cond-mat/9606080 +cond-mat/9606119 +cond-mat/9606144 +cond-mat/9606150 +cond-mat/9606173 +cond-mat/9607014 +cond-mat/9607097 +cond-mat/9607105 Strongly Correlated Electrons +cond-mat/9607133 +cond-mat/9607160 +cond-mat/9607171 +cond-mat/9608001 +cond-mat/9608037 +cond-mat/9608039 +cond-mat/9608065 Statistical Mechanics +cond-mat/9608082 +cond-mat/9608084 +cond-mat/9608086 +cond-mat/9608088 +cond-mat/9608135 +cond-mat/9608142 +cond-mat/9609002 +cond-mat/9609005 +cond-mat/9609036 +cond-mat/9609043 +cond-mat/9609048 Mesoscale and Nanoscale Physics +cond-mat/9609057 Strongly Correlated Electrons +cond-mat/9609069 +cond-mat/9609084 +cond-mat/9609088 +cond-mat/9609099 Superconductivity +cond-mat/9609103 +cond-mat/9609111 +cond-mat/9609124 +cond-mat/9609141 +cond-mat/9609148 +cond-mat/9609149 +cond-mat/9609181 +cond-mat/9609185 +cond-mat/9609196 +cond-mat/9609200 +cond-mat/9609201 +cond-mat/9609203 +cond-mat/9609205 +cond-mat/9609220 +cond-mat/9609228 +cond-mat/9609231 +cond-mat/9609240 +cond-mat/9609245 Statistical Mechanics +cond-mat/9609259 +cond-mat/9609286 +cond-mat/9610005 +cond-mat/9610007 Statistical Mechanics +cond-mat/9610026 Strongly Correlated Electrons +cond-mat/9610032 Superconductivity +cond-mat/9610044 Materials Science +cond-mat/9610064 Statistical Mechanics +cond-mat/9610074 Mesoscale and Nanoscale Physics +cond-mat/9610078 Mesoscale and Nanoscale Physics +cond-mat/9610079 Statistical Mechanics +cond-mat/9610080 +cond-mat/9610094 Strongly Correlated Electrons +cond-mat/9610124 Soft Condensed Matter +cond-mat/9610137 +cond-mat/9610142 Strongly Correlated Electrons +cond-mat/9610149 Materials Science +cond-mat/9610155 +cond-mat/9610159 Statistical Mechanics +cond-mat/9610168 Strongly Correlated Electrons +cond-mat/9610177 Mesoscale and Nanoscale Physics +cond-mat/9610198 Superconductivity +cond-mat/9610201 Statistical Mechanics +cond-mat/9610207 Superconductivity +cond-mat/9610208 +cond-mat/9611001 +cond-mat/9611005 Statistical Mechanics +cond-mat/9611007 Strongly Correlated Electrons +cond-mat/9611009 Statistical Mechanics +cond-mat/9611013 Strongly Correlated Electrons +cond-mat/9611026 Statistical Mechanics +cond-mat/9611030 Materials Science +cond-mat/9611042 Statistical Mechanics +cond-mat/9611043 Statistical Mechanics +cond-mat/9611047 Superconductivity +cond-mat/9611049 +cond-mat/9611053 Strongly Correlated Electrons +cond-mat/9611077 Statistical Mechanics +cond-mat/9611084 Mesoscale and Nanoscale Physics +cond-mat/9611092 Mesoscale and Nanoscale Physics +cond-mat/9611098 +cond-mat/9611111 +cond-mat/9611114 Statistical Mechanics +cond-mat/9611125 Strongly Correlated Electrons +cond-mat/9611130 Disordered Systems and Neural Networks +cond-mat/9611135 Superconductivity +cond-mat/9611149 +cond-mat/9611153 Superconductivity +cond-mat/9611157 Superconductivity +cond-mat/9611165 Strongly Correlated Electrons +cond-mat/9611168 Disordered Systems and Neural Networks +cond-mat/9611198 Strongly Correlated Electrons +cond-mat/9611207 +cond-mat/9611214 +cond-mat/9611218 Statistical Mechanics +cond-mat/9611233 Disordered Systems and Neural Networks +cond-mat/9611238 Superconductivity +cond-mat/9612013 Strongly Correlated Electrons +cond-mat/9612014 +cond-mat/9612021 Mesoscale and Nanoscale Physics +cond-mat/9612027 Superconductivity +cond-mat/9612039 Superconductivity +cond-mat/9612046 Strongly Correlated Electrons +cond-mat/9612049 +cond-mat/9612067 Mesoscale and Nanoscale Physics +cond-mat/9612081 Disordered Systems and Neural Networks +cond-mat/9612098 Strongly Correlated Electrons +cond-mat/9612120 Statistical Mechanics +cond-mat/9612123 Strongly Correlated Electrons +cond-mat/9612131 Superconductivity +cond-mat/9612138 Mesoscale and Nanoscale Physics +cond-mat/9612139 +cond-mat/9612149 +cond-mat/9612153 Mesoscale and Nanoscale Physics +cond-mat/9612166 Superconductivity +cond-mat/9612172 Strongly Correlated Electrons +cond-mat/9612181 +cond-mat/9612188 Superconductivity +cond-mat/9612205 Statistical Mechanics +cond-mat/9612207 Mesoscale and Nanoscale Physics +cond-mat/9612210 Mesoscale and Nanoscale Physics +cond-mat/9612239 Statistical Mechanics +cond-mat/9612242 Statistical Mechanics +cond-mat/9612247 Materials Science +cond-mat/9701001 Statistical Mechanics +cond-mat/9701016 Disordered Systems and Neural Networks +cond-mat/9701017 Strongly Correlated Electrons +cond-mat/9701034 Disordered Systems and Neural Networks +cond-mat/9701037 Mesoscale and Nanoscale Physics +cond-mat/9701042 +cond-mat/9701046 Superconductivity +cond-mat/9701058 Strongly Correlated Electrons +cond-mat/9701061 Mesoscale and Nanoscale Physics +cond-mat/9701072 Statistical Mechanics +cond-mat/9701083 Strongly Correlated Electrons +cond-mat/9701110 Soft Condensed Matter +cond-mat/9701122 Disordered Systems and Neural Networks +cond-mat/9701126 Mesoscale and Nanoscale Physics +cond-mat/9701135 Mesoscale and Nanoscale Physics +cond-mat/9701139 Soft Condensed Matter +cond-mat/9701167 +cond-mat/9701168 Strongly Correlated Electrons +cond-mat/9701169 Strongly Correlated Electrons +cond-mat/9701214 Strongly Correlated Electrons +cond-mat/9701224 +cond-mat/9701225 Materials Science +cond-mat/9702001 Mesoscale and Nanoscale Physics +cond-mat/9702008 Materials Science +cond-mat/9702014 Superconductivity +cond-mat/9702015 +cond-mat/9702016 Strongly Correlated Electrons +cond-mat/9702021 Strongly Correlated Electrons +cond-mat/9702032 Strongly Correlated Electrons +cond-mat/9702039 Mesoscale and Nanoscale Physics +cond-mat/9702046 +cond-mat/9702051 +cond-mat/9702076 Mesoscale and Nanoscale Physics +cond-mat/9702082 Statistical Mechanics +cond-mat/9702103 +cond-mat/9702133 Disordered Systems and Neural Networks +cond-mat/9702140 +cond-mat/9702145 +cond-mat/9702148 Superconductivity +cond-mat/9702194 Superconductivity +cond-mat/9702210 Strongly Correlated Electrons +cond-mat/9702219 Strongly Correlated Electrons +cond-mat/9702240 Disordered Systems and Neural Networks +cond-mat/9703009 Strongly Correlated Electrons +cond-mat/9703011 +cond-mat/9703022 Strongly Correlated Electrons +cond-mat/9703023 Statistical Mechanics +cond-mat/9703052 Strongly Correlated Electrons +cond-mat/9703073 Strongly Correlated Electrons +cond-mat/9703089 +cond-mat/9703090 +cond-mat/9703097 Statistical Mechanics +cond-mat/9703099 Superconductivity +cond-mat/9703109 Disordered Systems and Neural Networks +cond-mat/9703116 Mesoscale and Nanoscale Physics +cond-mat/9703117 Mesoscale and Nanoscale Physics +cond-mat/9703128 Mesoscale and Nanoscale Physics +cond-mat/9703132 Disordered Systems and Neural Networks +cond-mat/9703133 +cond-mat/9703138 Strongly Correlated Electrons +cond-mat/9703141 Superconductivity +cond-mat/9703152 +cond-mat/9703161 Statistical Mechanics +cond-mat/9703162 Disordered Systems and Neural Networks +cond-mat/9703175 Statistical Mechanics +cond-mat/9703176 Statistical Mechanics +cond-mat/9703253 Disordered Systems and Neural Networks +cond-mat/9704022 Superconductivity +cond-mat/9704092 +cond-mat/9704093 +cond-mat/9704099 Statistical Mechanics +cond-mat/9704101 Superconductivity +cond-mat/9704132 Superconductivity +cond-mat/9704137 Materials Science +cond-mat/9704152 Disordered Systems and Neural Networks +cond-mat/9704154 Statistical Mechanics +cond-mat/9704159 Superconductivity +cond-mat/9704161 Superconductivity +cond-mat/9704162 Disordered Systems and Neural Networks +cond-mat/9704180 Superconductivity +cond-mat/9704188 Superconductivity +cond-mat/9704190 Materials Science +cond-mat/9704199 Statistical Mechanics +cond-mat/9704205 Mesoscale and Nanoscale Physics +cond-mat/9704214 Statistical Mechanics +cond-mat/9704236 Statistical Mechanics +cond-mat/9705008 +cond-mat/9705020 +cond-mat/9705036 Strongly Correlated Electrons +cond-mat/9705042 Statistical Mechanics +cond-mat/9705047 +cond-mat/9705068 Strongly Correlated Electrons +cond-mat/9705071 +cond-mat/9705073 Materials Science +cond-mat/9705082 Statistical Mechanics +cond-mat/9705093 Superconductivity +cond-mat/9705110 Materials Science +cond-mat/9705135 Statistical Mechanics +cond-mat/9705144 Superconductivity +cond-mat/9705148 Statistical Mechanics +cond-mat/9705192 +cond-mat/9705214 Materials Science +cond-mat/9705216 Superconductivity +cond-mat/9705264 Statistical Mechanics +cond-mat/9705266 Strongly Correlated Electrons +cond-mat/9705283 +cond-mat/9705296 Strongly Correlated Electrons +cond-mat/9705305 Strongly Correlated Electrons +cond-mat/9706014 Strongly Correlated Electrons +cond-mat/9706050 Soft Condensed Matter +cond-mat/9706078 Statistical Mechanics +cond-mat/9706081 Strongly Correlated Electrons +cond-mat/9706093 Soft Condensed Matter +cond-mat/9706105 +cond-mat/9706113 Strongly Correlated Electrons +cond-mat/9706198 Strongly Correlated Electrons +cond-mat/9706199 Superconductivity +cond-mat/9706204 +cond-mat/9706220 Soft Condensed Matter +cond-mat/9706230 Strongly Correlated Electrons +cond-mat/9706296 Statistical Mechanics +cond-mat/9706298 Statistical Mechanics +cond-mat/9707017 Superconductivity +cond-mat/9707085 Statistical Mechanics +cond-mat/9707137 Statistical Mechanics +cond-mat/9707150 Superconductivity +cond-mat/9707261 Strongly Correlated Electrons +cond-mat/9707262 Strongly Correlated Electrons +cond-mat/9707301 +cond-mat/9707315 +cond-mat/9707328 +cond-mat/9708025 Disordered Systems and Neural Networks +cond-mat/9708036 Statistical Mechanics +cond-mat/9708066 Statistical Mechanics +cond-mat/9708103 Strongly Correlated Electrons +cond-mat/9708147 Disordered Systems and Neural Networks +cond-mat/9708154 +cond-mat/9708204 Strongly Correlated Electrons +cond-mat/9708234 Strongly Correlated Electrons +cond-mat/9709016 Mesoscale and Nanoscale Physics +cond-mat/9709030 Superconductivity +cond-mat/9709090 Strongly Correlated Electrons +cond-mat/9709108 Strongly Correlated Electrons +cond-mat/9709123 Strongly Correlated Electrons +cond-mat/9709150 +cond-mat/9709164 Disordered Systems and Neural Networks +cond-mat/9709184 Mesoscale and Nanoscale Physics +cond-mat/9709198 Statistical Mechanics +cond-mat/9709199 Strongly Correlated Electrons +cond-mat/9709204 Statistical Mechanics +cond-mat/9709226 Statistical Mechanics +cond-mat/9709247 Statistical Mechanics +cond-mat/9709302 +cond-mat/9709311 +cond-mat/9709342 Mesoscale and Nanoscale Physics +cond-mat/9709345 Statistical Mechanics +cond-mat/9710002 +cond-mat/9710033 +cond-mat/9710090 +cond-mat/9710153 +cond-mat/9710157 Strongly Correlated Electrons +cond-mat/9710168 Strongly Correlated Electrons +cond-mat/9710175 Superconductivity +cond-mat/9710257 Strongly Correlated Electrons +cond-mat/9710262 +cond-mat/9710292 Superconductivity +cond-mat/9710327 Statistical Mechanics +cond-mat/9710336 Statistical Mechanics +cond-mat/9710350 Mesoscale and Nanoscale Physics +cond-mat/9711024 Soft Condensed Matter +cond-mat/9711099 Superconductivity +cond-mat/9711100 +cond-mat/9711125 Superconductivity +cond-mat/9711162 +cond-mat/9711185 +cond-mat/9711211 Superconductivity +cond-mat/9711213 Statistical Mechanics +cond-mat/9711217 +cond-mat/9711236 Superconductivity +cond-mat/9711290 +cond-mat/9711309 Statistical Mechanics +cond-mat/9712056 Strongly Correlated Electrons +cond-mat/9712058 Materials Science +cond-mat/9712140 Statistical Mechanics +cond-mat/9712143 Strongly Correlated Electrons +cond-mat/9712164 Statistical Mechanics +cond-mat/9712189 Superconductivity +cond-mat/9712287 Soft Condensed Matter +cond-mat/9712296 Strongly Correlated Electrons +cond-mat/9712326 Superconductivity +cond-mat/9801008 Statistical Mechanics +cond-mat/9801038 Disordered Systems and Neural Networks +cond-mat/9801046 Strongly Correlated Electrons +cond-mat/9801071 Superconductivity +cond-mat/9801072 +cond-mat/9801127 +cond-mat/9801166 Superconductivity +cond-mat/9801275 Soft Condensed Matter +cond-mat/9801288 Statistical Mechanics +cond-mat/9801317 Strongly Correlated Electrons +cond-mat/9802066 Statistical Mechanics +cond-mat/9802081 Strongly Correlated Electrons +cond-mat/9802108 Disordered Systems and Neural Networks +cond-mat/9802113 +cond-mat/9802136 Statistical Mechanics +cond-mat/9802143 Soft Condensed Matter +cond-mat/9802144 Soft Condensed Matter +cond-mat/9802158 Mesoscale and Nanoscale Physics +cond-mat/9802189 +cond-mat/9802236 Strongly Correlated Electrons +cond-mat/9802241 +cond-mat/9802279 Strongly Correlated Electrons +cond-mat/9802304 Materials Science +cond-mat/9803001 Statistical Mechanics +cond-mat/9803006 Superconductivity +cond-mat/9803021 Superconductivity +cond-mat/9803040 Disordered Systems and Neural Networks +cond-mat/9803194 +cond-mat/9803205 Soft Condensed Matter +cond-mat/9803217 +cond-mat/9803218 +cond-mat/9803243 +cond-mat/9803351 Soft Condensed Matter +cond-mat/9804037 Statistical Mechanics +cond-mat/9804121 Superconductivity +cond-mat/9804145 Strongly Correlated Electrons +cond-mat/9804149 Statistical Mechanics +cond-mat/9804248 +cond-mat/9804249 Statistical Mechanics +cond-mat/9804261 Strongly Correlated Electrons +cond-mat/9804276 Materials Science +cond-mat/9804326 Statistical Mechanics +cond-mat/9805086 Mesoscale and Nanoscale Physics +cond-mat/9805273 Superconductivity +cond-mat/9805330 Statistical Mechanics +cond-mat/9805349 Mesoscale and Nanoscale Physics +cond-mat/9805366 Soft Condensed Matter +cond-mat/9805382 Soft Condensed Matter +cond-mat/9806013 Superconductivity +cond-mat/9806017 Strongly Correlated Electrons +cond-mat/9806021 +cond-mat/9806030 Strongly Correlated Electrons +cond-mat/9806053 Superconductivity +cond-mat/9806071 Statistical Mechanics +cond-mat/9806119 Strongly Correlated Electrons +cond-mat/9806138 Statistical Mechanics +cond-mat/9806140 Statistical Mechanics +cond-mat/9806173 Mesoscale and Nanoscale Physics +cond-mat/9806268 Disordered Systems and Neural Networks +cond-mat/9806297 Superconductivity +cond-mat/9806309 Superconductivity +cond-mat/9806324 Strongly Correlated Electrons +cond-mat/9806354 Mesoscale and Nanoscale Physics +cond-mat/9806374 Strongly Correlated Electrons +cond-mat/9807019 Strongly Correlated Electrons +cond-mat/9807188 Statistical Mechanics +cond-mat/9807257 +cond-mat/9807285 Statistical Mechanics +cond-mat/9807294 Strongly Correlated Electrons +cond-mat/9807308 Strongly Correlated Electrons +cond-mat/9807335 Superconductivity +cond-mat/9807348 Materials Science +cond-mat/9807373 Superconductivity +cond-mat/9807376 Mesoscale and Nanoscale Physics +cond-mat/9807393 Strongly Correlated Electrons +cond-mat/9807397 Statistical Mechanics +cond-mat/9807409 Mesoscale and Nanoscale Physics +cond-mat/9807420 +cond-mat/9807422 Mesoscale and Nanoscale Physics +cond-mat/9808005 Soft Condensed Matter +cond-mat/9808056 Materials Science +cond-mat/9808068 Statistical Mechanics +cond-mat/9808130 Soft Condensed Matter +cond-mat/9808133 +cond-mat/9808202 Soft Condensed Matter +cond-mat/9808220 Statistical Mechanics +cond-mat/9808222 Strongly Correlated Electrons +cond-mat/9808338 Mesoscale and Nanoscale Physics +cond-mat/9809004 Materials Science +cond-mat/9809061 Statistical Mechanics +cond-mat/9809112 Strongly Correlated Electrons +cond-mat/9809137 Materials Science +cond-mat/9809205 Soft Condensed Matter +cond-mat/9809244 Statistical Mechanics +cond-mat/9809260 Materials Science +cond-mat/9809294 Mesoscale and Nanoscale Physics +cond-mat/9809365 Statistical Mechanics +cond-mat/9809415 Soft Condensed Matter +cond-mat/9810047 Soft Condensed Matter +cond-mat/9810094 Mesoscale and Nanoscale Physics +cond-mat/9810099 Statistical Mechanics +cond-mat/9810119 Disordered Systems and Neural Networks +cond-mat/9810154 Disordered Systems and Neural Networks +cond-mat/9810158 Superconductivity +cond-mat/9810169 Superconductivity +cond-mat/9810210 +cond-mat/9810231 Statistical Mechanics +cond-mat/9810264 Soft Condensed Matter +cond-mat/9810336 Strongly Correlated Electrons +cond-mat/9810366 Statistical Mechanics +cond-mat/9810403 Statistical Mechanics +cond-mat/9811045 +cond-mat/9811059 Superconductivity +cond-mat/9811062 Materials Science +cond-mat/9811072 +cond-mat/9811079 Materials Science +cond-mat/9811089 Strongly Correlated Electrons +cond-mat/9811095 Strongly Correlated Electrons +cond-mat/9811102 Statistical Mechanics +cond-mat/9811113 Mesoscale and Nanoscale Physics +cond-mat/9811266 Materials Science +cond-mat/9811303 Superconductivity +cond-mat/9811318 +cond-mat/9811331 Disordered Systems and Neural Networks +cond-mat/9812119 +cond-mat/9812124 Statistical Mechanics +cond-mat/9812161 Statistical Mechanics +cond-mat/9812180 +cond-mat/9812181 Mesoscale and Nanoscale Physics +cond-mat/9812275 Mesoscale and Nanoscale Physics +cond-mat/9812278 Superconductivity +cond-mat/9812352 +cond-mat/9812355 Strongly Correlated Electrons +cond-mat/9812361 Disordered Systems and Neural Networks +cond-mat/9812417 Statistical Mechanics +cond-mat/9901038 Materials Science +cond-mat/9901040 Superconductivity +cond-mat/9901046 +cond-mat/9901141 Strongly Correlated Electrons +cond-mat/9901183 +cond-mat/9901223 Statistical Mechanics +cond-mat/9901228 Statistical Mechanics +cond-mat/9901235 Strongly Correlated Electrons +cond-mat/9901257 Superconductivity +cond-mat/9901308 Mesoscale and Nanoscale Physics +cond-mat/9902011 Disordered Systems and Neural Networks +cond-mat/9902035 Mesoscale and Nanoscale Physics +cond-mat/9902121 Statistical Mechanics +cond-mat/9902162 Superconductivity +cond-mat/9902206 Mesoscale and Nanoscale Physics +cond-mat/9902207 +cond-mat/9902223 Statistical Mechanics +cond-mat/9902239 +cond-mat/9902308 Superconductivity +cond-mat/9903072 Materials Science +cond-mat/9903170 Superconductivity +cond-mat/9903187 Mesoscale and Nanoscale Physics +cond-mat/9903189 Strongly Correlated Electrons +cond-mat/9903251 Strongly Correlated Electrons +cond-mat/9903403 Statistical Mechanics +cond-mat/9903423 Soft Condensed Matter +cond-mat/9904008 Statistical Mechanics +cond-mat/9904040 Statistical Mechanics +cond-mat/9904068 Strongly Correlated Electrons +cond-mat/9904125 Disordered Systems and Neural Networks +cond-mat/9904133 Strongly Correlated Electrons +cond-mat/9904225 Materials Science +cond-mat/9904272 Mesoscale and Nanoscale Physics +cond-mat/9904333 Statistical Mechanics +cond-mat/9904415 Soft Condensed Matter +cond-mat/9904442 +cond-mat/9905004 +cond-mat/9905009 Statistical Mechanics +cond-mat/9905059 Statistical Mechanics +cond-mat/9905072 Strongly Correlated Electrons +cond-mat/9905219 Superconductivity +cond-mat/9905265 Mesoscale and Nanoscale Physics +cond-mat/9905286 Superconductivity +cond-mat/9905391 Strongly Correlated Electrons +cond-mat/9905400 Materials Science +cond-mat/9905432 +cond-mat/9906001 Superconductivity +cond-mat/9906006 Mesoscale and Nanoscale Physics +cond-mat/9906075 Strongly Correlated Electrons +cond-mat/9906101 +cond-mat/9906129 Strongly Correlated Electrons +cond-mat/9906303 +cond-mat/9906315 Materials Science +cond-mat/9906350 Statistical Mechanics +cond-mat/9906365 Strongly Correlated Electrons +cond-mat/9906369 Strongly Correlated Electrons +cond-mat/9906412 Strongly Correlated Electrons +cond-mat/9907017 Superconductivity +cond-mat/9907038 Disordered Systems and Neural Networks +cond-mat/9907042 Statistical Mechanics +cond-mat/9907068 Disordered Systems and Neural Networks +cond-mat/9907081 Superconductivity +cond-mat/9907086 Mesoscale and Nanoscale Physics +cond-mat/9907091 Superconductivity +cond-mat/9907203 +cond-mat/9907284 Strongly Correlated Electrons +cond-mat/9907412 Statistical Mechanics +cond-mat/9907441 Superconductivity +cond-mat/9907464 Statistical Mechanics +cond-mat/9907492 Superconductivity +cond-mat/9908075 +cond-mat/9908077 Materials Science +cond-mat/9908090 Mesoscale and Nanoscale Physics +cond-mat/9908093 Statistical Mechanics +cond-mat/9908118 Statistical Mechanics +cond-mat/9908240 Materials Science +cond-mat/9908258 Strongly Correlated Electrons +cond-mat/9908260 Mesoscale and Nanoscale Physics +cond-mat/9908278 +cond-mat/9908309 Disordered Systems and Neural Networks +cond-mat/9908317 Superconductivity +cond-mat/9908318 Mesoscale and Nanoscale Physics +cond-mat/9908336 Statistical Mechanics +cond-mat/9908358 Disordered Systems and Neural Networks +cond-mat/9908378 +cond-mat/9908401 Strongly Correlated Electrons +cond-mat/9908450 +cond-mat/9909037 Superconductivity +cond-mat/9909108 Superconductivity +cond-mat/9909121 +cond-mat/9909149 Statistical Mechanics +cond-mat/9909160 Statistical Mechanics +cond-mat/9909207 Statistical Mechanics +cond-mat/9909225 Statistical Mechanics +cond-mat/9909267 Superconductivity +cond-mat/9909275 Disordered Systems and Neural Networks +cond-mat/9909277 Strongly Correlated Electrons +cond-mat/9909296 Strongly Correlated Electrons +cond-mat/9909306 Statistical Mechanics +cond-mat/9909346 Strongly Correlated Electrons +cond-mat/9909409 Superconductivity +cond-mat/9909459 Soft Condensed Matter +cond-mat/9910043 +cond-mat/9910099 Soft Condensed Matter +cond-mat/9910105 Mesoscale and Nanoscale Physics +cond-mat/9910110 Mesoscale and Nanoscale Physics +cond-mat/9910158 Mesoscale and Nanoscale Physics +cond-mat/9910184 Superconductivity +cond-mat/9910219 Materials Science +cond-mat/9910222 Superconductivity +cond-mat/9910251 Superconductivity +cond-mat/9910267 Soft Condensed Matter +cond-mat/9910269 Soft Condensed Matter +cond-mat/9910271 +cond-mat/9910283 +cond-mat/9910307 Materials Science +cond-mat/9910392 +cond-mat/9910395 +cond-mat/9910437 Superconductivity +cond-mat/9910529 Soft Condensed Matter +cond-mat/9911015 +cond-mat/9911069 Soft Condensed Matter +cond-mat/9911088 Strongly Correlated Electrons +cond-mat/9911098 Strongly Correlated Electrons +cond-mat/9911118 Strongly Correlated Electrons +cond-mat/9911151 Materials Science +cond-mat/9911189 Strongly Correlated Electrons +cond-mat/9911223 Strongly Correlated Electrons +cond-mat/9911224 Mesoscale and Nanoscale Physics +cond-mat/9911230 Statistical Mechanics +cond-mat/9911266 Strongly Correlated Electrons +cond-mat/9911303 Strongly Correlated Electrons +cond-mat/9911315 Materials Science +cond-mat/9911469 Soft Condensed Matter +cond-mat/9911487 Statistical Mechanics +cond-mat/9912039 Mesoscale and Nanoscale Physics +cond-mat/9912049 Strongly Correlated Electrons +cond-mat/9912061 Disordered Systems and Neural Networks +cond-mat/9912070 Strongly Correlated Electrons +cond-mat/9912072 Superconductivity +cond-mat/9912133 Superconductivity +cond-mat/9912162 Statistical Mechanics +cond-mat/9912185 Statistical Mechanics +cond-mat/9912220 Disordered Systems and Neural Networks +cond-mat/9912274 Soft Condensed Matter +cond-mat/9912275 Statistical Mechanics +cond-mat/9912301 +cond-mat/9912374 Statistical Mechanics +cond-mat/9912465 Statistical Mechanics +cond-mat/9912472 Statistical Mechanics +cond-mat/9912483 +cs/0003021 Artificial Intelligence +cs/0004010 Distributed, Parallel, and Cluster Computing +cs/0006012 Computation and Language +cs/0012002 Data Structures and Algorithms +cs/0105004 Computational Engineering, Finance, and Science +cs/0105018 Software Engineering +cs/0105029 Data Structures and Algorithms +cs/0109054 Computers and Society +cs/0111059 Logic in Computer Science +cs/0201017 Computer Science and Game Theory +cs/0206028 Information Retrieval +cs/0207032 Artificial Intelligence +cs/0207069 Networking and Internet Architecture +cs/0212008 Learning +cs/0212022 Robotics +cs/0303025 Sound +cs/0304046 Logic in Computer Science +cs/0305014 Artificial Intelligence +cs/0306096 Distributed, Parallel, and Cluster Computing +cs/0306109 Distributed, Parallel, and Cluster Computing +cs/0307059 Cryptography and Security +cs/0307072 Computer Vision and Pattern Recognition +cs/0308003 Computer Vision and Pattern Recognition +cs/0312006 Graphics +cs/0312039 Computational Complexity +cs/0402003 Databases +cs/0402050 Neural and Evolutionary Computing +cs/0402059 Logic in Computer Science +cs/0403002 Artificial Intelligence +cs/0404037 Software Engineering +cs/0404049 Computation and Language +cs/0405060 Symbolic Computation +cs/0408012 Computer Vision and Pattern Recognition +cs/0408064 Artificial Intelligence +cs/0409047 Artificial Intelligence +cs/0410014 Artificial Intelligence +cs/0410017 Computer Vision and Pattern Recognition +cs/0410044 Mathematical Software +cs/0410074 Distributed, Parallel, and Cluster Computing +cs/0411016 Artificial Intelligence +cs/0502058 Computational Complexity +cs/0502065 Data Structures and Algorithms +cs/0503012 Databases +cs/0503015 Software Engineering +cs/0503052 Computational Complexity +cs/0503066 Hardware Architecture +cs/0504014 Information Theory +cs/0504052 Neural and Evolutionary Computing +cs/0505004 Software Engineering +cs/0505022 Information Theory +cs/0505033 Logic in Computer Science +cs/0505058 Computer Vision and Pattern Recognition +cs/0505085 Programming Languages +cs/0506065 Cryptography and Security +cs/0506089 Computer Vision and Pattern Recognition +cs/0507026 Information Theory +cs/0508023 Software Engineering +cs/0509032 Artificial Intelligence +cs/0509062 Information Theory +cs/0509080 Information Theory +cs/0509088 Databases +cs/0509095 Networking and Internet Architecture +cs/0510004 Computational Geometry +cs/0510006 Networking and Internet Architecture +cs/0510008 Computer Vision and Pattern Recognition +cs/0510012 Logic in Computer Science +cs/0511089 Information Theory +cs/0511094 Distributed, Parallel, and Cluster Computing +cs/0512090 Data Structures and Algorithms +cs/0605141 Distributed, Parallel, and Cluster Computing +cs/0607045 Data Structures and Algorithms +cs/0607104 Cryptography and Security +cs/0607135 Computational Complexity +cs/0610003 Discrete Mathematics +cs/0703114 Databases +cs/9301108 Logic in Computer Science +cs/9301109 Logic in Computer Science +cs/9301110 Logic in Computer Science +cs/9511103 Logic in Computer Science +cs/9601101 Artificial Intelligence +cs/9612104 Logic in Computer Science +cs/9707103 Artificial Intelligence +cs/9711106 Logic in Computer Science +cs/9808007 Artificial Intelligence +cs/9809015 Logic in Computer Science +cs/9810025 Software Engineering +cs/9811012 Programming Languages +cs/9811032 Neural and Evolutionary Computing +cs/9901007 Programming Languages +cs/9902007 Digital Libraries +cs/9903004 Distributed, Parallel, and Cluster Computing +cs/9906026 Computation and Language +cs/9907009 Databases +cs/9909007 Computational Geometry +cs/9912018 Software Engineering +dg-ga/9408002 Differential Geometry +dg-ga/9409005 Differential Geometry +dg-ga/9410004 Differential Geometry +dg-ga/9411002 Differential Geometry +dg-ga/9501002 Differential Geometry +dg-ga/9501003 Differential Geometry +dg-ga/9501004 Differential Geometry +dg-ga/9501005 Differential Geometry +dg-ga/9502004 Differential Geometry +dg-ga/9502005 Differential Geometry +dg-ga/9502006 Differential Geometry +dg-ga/9502008 Differential Geometry +dg-ga/9502009 Differential Geometry +dg-ga/9503002 Differential Geometry +dg-ga/9503005 Differential Geometry +dg-ga/9503013 Differential Geometry +dg-ga/9503016 Differential Geometry +dg-ga/9506010 Differential Geometry +dg-ga/9508005 Differential Geometry +dg-ga/9508006 Differential Geometry +dg-ga/9508009 Differential Geometry +dg-ga/9510005 Differential Geometry +dg-ga/9510008 Differential Geometry +dg-ga/9512011 Differential Geometry +dg-ga/9601012 Differential Geometry +dg-ga/9603015 Differential Geometry +dg-ga/9604003 Differential Geometry +dg-ga/9610005 Differential Geometry +dg-ga/9612004 Differential Geometry +dg-ga/9701009 Differential Geometry +dg-ga/9702004 Differential Geometry +dg-ga/9703019 Differential Geometry +dg-ga/9704011 Differential Geometry +dg-ga/9710032 Differential Geometry +dg-ga/9711002 Differential Geometry +dg-ga/9711020 Differential Geometry +funct-an/9209001 Functional Analysis +funct-an/9211001 Functional Analysis +funct-an/9211011 Functional Analysis +funct-an/9302003 Functional Analysis +funct-an/9302005 Functional Analysis +funct-an/9302006 Functional Analysis +funct-an/9303002 Functional Analysis +funct-an/9303004 Functional Analysis +funct-an/9305002 Functional Analysis +funct-an/9311001 Functional Analysis +funct-an/9312001 Functional Analysis +funct-an/9312006 Functional Analysis +funct-an/9401001 Functional Analysis +funct-an/9401003 Functional Analysis +funct-an/9402001 Functional Analysis +funct-an/9403001 Functional Analysis +funct-an/9409002 Functional Analysis +funct-an/9410003 Functional Analysis +funct-an/9501002 Functional Analysis +funct-an/9501004 Functional Analysis +funct-an/9501006 Functional Analysis +funct-an/9502003 Functional Analysis +funct-an/9502004 Functional Analysis +funct-an/9506007 Functional Analysis +funct-an/9601004 Functional Analysis +funct-an/9602005 Functional Analysis +funct-an/9701006 Functional Analysis +funct-an/9702007 Functional Analysis +funct-an/9705002 Functional Analysis +funct-an/9712007 Functional Analysis +gr-qc/0001020 +gr-qc/0001101 +gr-qc/0002050 +gr-qc/0003087 +gr-qc/0003102 +gr-qc/0003104 +gr-qc/0003110 +gr-qc/0004044 +gr-qc/0005061 +gr-qc/0005063 +gr-qc/0005077 +gr-qc/0005086 +gr-qc/0005105 +gr-qc/0005124 +gr-qc/0005133 +gr-qc/0007040 +gr-qc/0009054 +gr-qc/0009075 +gr-qc/0010049 +gr-qc/0010075 +gr-qc/0011017 +gr-qc/0011041 +gr-qc/0011081 +gr-qc/0011111 +gr-qc/0012034 +gr-qc/0012072 +gr-qc/0012095 +gr-qc/0012106 +gr-qc/0101006 +gr-qc/0101024 +gr-qc/0101092 +gr-qc/0101097 +gr-qc/0102005 +gr-qc/0102100 +gr-qc/0104016 +gr-qc/0104027 +gr-qc/0104095 +gr-qc/0105050 +gr-qc/0105054 +gr-qc/0106028 +gr-qc/0107072 +gr-qc/0109009 +gr-qc/0109075 +gr-qc/0110030 +gr-qc/0110062 +gr-qc/0110068 +gr-qc/0110110 +gr-qc/0111016 +gr-qc/0111048 +gr-qc/0111052 +gr-qc/0111107 +gr-qc/0111114 +gr-qc/0112065 +gr-qc/0201018 +gr-qc/0201026 +gr-qc/0202078 +gr-qc/0202080 +gr-qc/0202104 +gr-qc/0203072 +gr-qc/0204022 +gr-qc/0204052 +gr-qc/0204081 +gr-qc/0204089 +gr-qc/0204091 +gr-qc/0205084 +gr-qc/0206005 +gr-qc/0206032 +gr-qc/0206044 +gr-qc/0206052 +gr-qc/0207068 +gr-qc/0207088 +gr-qc/0208009 +gr-qc/0208039 +gr-qc/0210020 +gr-qc/0210026 +gr-qc/0210082 +gr-qc/0211039 +gr-qc/0211042 +gr-qc/0211048 +gr-qc/0211060 +gr-qc/0212041 +gr-qc/0212078 +gr-qc/0212126 +gr-qc/0301058 +gr-qc/0301078 +gr-qc/0302015 +gr-qc/0302053 +gr-qc/0302119 +gr-qc/0303003 +gr-qc/0303024 +gr-qc/0303063 +gr-qc/0304048 +gr-qc/0304076 +gr-qc/0305044 +gr-qc/0305090 +gr-qc/0305096 +gr-qc/0306067 +gr-qc/0307010 +gr-qc/0307020 +gr-qc/0307093 +gr-qc/0308033 +gr-qc/0308047 +gr-qc/0308060 +gr-qc/0309068 +gr-qc/0310030 +gr-qc/0310031 +gr-qc/0312045 +gr-qc/0312067 +gr-qc/0401099 +gr-qc/0402058 +gr-qc/0402112 +gr-qc/0402120 +gr-qc/0403041 +gr-qc/0403097 +gr-qc/0403116 +gr-qc/0404008 +gr-qc/0404024 +gr-qc/0404108 +gr-qc/0406067 +gr-qc/0406100 +gr-qc/0408020 +gr-qc/0408029 +gr-qc/0408040 +gr-qc/0408099 +gr-qc/0409046 +gr-qc/0410045 +gr-qc/0410062 +gr-qc/0410072 +gr-qc/0410138 +gr-qc/0411003 +gr-qc/0411018 +gr-qc/0411063 +gr-qc/0411101 +gr-qc/0412095 +gr-qc/0412111 +gr-qc/0501081 +gr-qc/0501093 +gr-qc/0502007 +gr-qc/0502122 +gr-qc/0503086 +gr-qc/0504059 +gr-qc/0504092 +gr-qc/0504135 +gr-qc/0505063 +gr-qc/0505106 +gr-qc/0506051 +gr-qc/0506054 +gr-qc/0506138 +gr-qc/0507005 +gr-qc/0507022 +gr-qc/0509005 +gr-qc/0509089 +gr-qc/0509091 +gr-qc/0509105 +gr-qc/0509114 +gr-qc/0509120 +gr-qc/0510001 +gr-qc/0510021 +gr-qc/0510030 +gr-qc/0510055 +gr-qc/0512035 +gr-qc/0601020 +gr-qc/0601080 +gr-qc/0602108 +gr-qc/0602119 +gr-qc/0603071 +gr-qc/0603088 +gr-qc/0606056 +gr-qc/0609045 +gr-qc/0611131 +gr-qc/9207004 +gr-qc/9301024 +gr-qc/9302004 +gr-qc/9303002 +gr-qc/9303035 +gr-qc/9304043 +gr-qc/9308032 +gr-qc/9309016 +gr-qc/9311006 +gr-qc/9311010 +gr-qc/9311028 +gr-qc/9312036 +gr-qc/9403031 +gr-qc/9403063 +gr-qc/9404063 +gr-qc/9406049 +gr-qc/9408042 +gr-qc/9408043 +gr-qc/9410038 +gr-qc/9412076 +gr-qc/9501001 +gr-qc/9501003 +gr-qc/9501004 +gr-qc/9501005 +gr-qc/9501006 +gr-qc/9501007 +gr-qc/9501009 +gr-qc/9501010 +gr-qc/9501014 +gr-qc/9501015 +gr-qc/9501021 +gr-qc/9501025 +gr-qc/9501034 +gr-qc/9501037 +gr-qc/9501038 +gr-qc/9501039 +gr-qc/9502001 +gr-qc/9502002 +gr-qc/9502004 +gr-qc/9502008 +gr-qc/9502009 +gr-qc/9502013 +gr-qc/9502014 +gr-qc/9502015 +gr-qc/9502016 +gr-qc/9502017 +gr-qc/9502022 +gr-qc/9502024 +gr-qc/9502026 +gr-qc/9502027 +gr-qc/9502031 +gr-qc/9502032 +gr-qc/9502033 +gr-qc/9502037 +gr-qc/9502040 +gr-qc/9502041 +gr-qc/9502042 +gr-qc/9502044 +gr-qc/9502045 +gr-qc/9503001 +gr-qc/9503002 +gr-qc/9503004 +gr-qc/9503006 +gr-qc/9503007 +gr-qc/9503010 +gr-qc/9503011 +gr-qc/9503018 +gr-qc/9503019 +gr-qc/9503023 +gr-qc/9503025 +gr-qc/9503027 +gr-qc/9503028 +gr-qc/9503029 +gr-qc/9503030 +gr-qc/9503031 +gr-qc/9503032 +gr-qc/9504031 +gr-qc/9505018 +gr-qc/9505032 +gr-qc/9505034 +gr-qc/9505044 +gr-qc/9507020 +gr-qc/9507040 +gr-qc/9507048 +gr-qc/9508007 +gr-qc/9508025 +gr-qc/9508039 +gr-qc/9508068 +gr-qc/9509002 +gr-qc/9509058 +gr-qc/9510014 +gr-qc/9510015 +gr-qc/9510017 +gr-qc/9510038 +gr-qc/9510041 +gr-qc/9511016 +gr-qc/9511030 +gr-qc/9511045 +gr-qc/9511067 +gr-qc/9511075 +gr-qc/9601012 +gr-qc/9602001 +gr-qc/9602032 +gr-qc/9602059 +gr-qc/9603004 +gr-qc/9604017 +gr-qc/9604037 +gr-qc/9604057 +gr-qc/9605026 +gr-qc/9606044 +gr-qc/9606045 +gr-qc/9607007 +gr-qc/9607010 +gr-qc/9607026 +gr-qc/9607070 +gr-qc/9608015 +gr-qc/9608058 +gr-qc/9609003 +gr-qc/9609008 +gr-qc/9609014 +gr-qc/9609029 +gr-qc/9609030 +gr-qc/9609063 +gr-qc/9610002 +gr-qc/9611003 +gr-qc/9611006 +gr-qc/9611012 +gr-qc/9611049 +gr-qc/9611051 +gr-qc/9612064 +gr-qc/9702006 +gr-qc/9702010 +gr-qc/9702037 +gr-qc/9702045 +gr-qc/9703015 +gr-qc/9703037 +gr-qc/9703045 +gr-qc/9704007 +gr-qc/9704019 +gr-qc/9704034 +gr-qc/9704084 +gr-qc/9705008 +gr-qc/9705011 +gr-qc/9705018 +gr-qc/9705021 +gr-qc/9705070 +gr-qc/9707060 +gr-qc/9708019 +gr-qc/9708054 +gr-qc/9709014 +gr-qc/9710002 +gr-qc/9712012 +gr-qc/9801010 +gr-qc/9801019 +gr-qc/9801026 +gr-qc/9801031 +gr-qc/9801093 +gr-qc/9802052 +gr-qc/9803008 +gr-qc/9803036 +gr-qc/9804061 +gr-qc/9805030 +gr-qc/9805054 +gr-qc/9805100 +gr-qc/9806001 +gr-qc/9806078 +gr-qc/9806100 +gr-qc/9806115 +gr-qc/9807064 +gr-qc/9808045 +gr-qc/9808055 +gr-qc/9808074 +gr-qc/9809011 +gr-qc/9810053 +gr-qc/9810058 +gr-qc/9810069 +gr-qc/9811060 +gr-qc/9811061 +gr-qc/9811072 +gr-qc/9811077 +gr-qc/9811087 +gr-qc/9812021 +gr-qc/9812073 +gr-qc/9812080 +gr-qc/9901082 +gr-qc/9902010 +gr-qc/9902036 +gr-qc/9903006 +gr-qc/9903013 +gr-qc/9903063 +gr-qc/9903096 +gr-qc/9904026 +gr-qc/9905042 +gr-qc/9905108 +gr-qc/9906029 +gr-qc/9906105 +gr-qc/9906110 +gr-qc/9906118 +gr-qc/9907008 +gr-qc/9908020 +gr-qc/9908034 +gr-qc/9908056 +gr-qc/9908058 +gr-qc/9908061 +gr-qc/9908066 +gr-qc/9908071 +gr-qc/9909023 +gr-qc/9909024 +gr-qc/9909034 +gr-qc/9910017 +gr-qc/9910107 +gr-qc/9911074 +gr-qc/9911095 +gr-qc/9911100 +gr-qc/9911108 +gr-qc/9911123 +gr-qc/9912089 +hep-ex/0001030 Experiment +hep-ex/0002021 Experiment +hep-ex/0005040 Experiment +hep-ex/0008073 Experiment +hep-ex/0008075 Experiment +hep-ex/0009012 Experiment +hep-ex/0011054 Experiment +hep-ex/0011066 Experiment +hep-ex/0011076 Experiment +hep-ex/0012005 Experiment +hep-ex/0012045 Experiment +hep-ex/0012048 Experiment +hep-ex/0012062 Experiment +hep-ex/0103019 Experiment +hep-ex/0104019 Experiment +hep-ex/0106017 Experiment +hep-ex/0106094 Experiment +hep-ex/0108029 Experiment +hep-ex/0112012 Experiment +hep-ex/0202002 Experiment +hep-ex/0202009 Experiment +hep-ex/0202016 Experiment +hep-ex/0202038 Experiment +hep-ex/0205092 Experiment +hep-ex/0206001 Experiment +hep-ex/0206062 Experiment +hep-ex/0210005 Experiment +hep-ex/0210042 Experiment +hep-ex/0210062 Experiment +hep-ex/0210063 Experiment +hep-ex/0210068 Experiment +hep-ex/0211072 Experiment +hep-ex/0304018 Experiment +hep-ex/0305003 Experiment +hep-ex/0305013 Experiment +hep-ex/0305063 Experiment +hep-ex/0307058 Experiment +hep-ex/0309003 Experiment +hep-ex/0309070 Experiment +hep-ex/0310060 Experiment +hep-ex/0312022 Experiment +hep-ex/0403026 Experiment +hep-ex/0404014 Experiment +hep-ex/0405003 Experiment +hep-ex/0405032 Experiment +hep-ex/0406044 Experiment +hep-ex/0407011 Experiment +hep-ex/0407036 Experiment +hep-ex/0408089 Experiment +hep-ex/0410028 Experiment +hep-ex/0410033 Experiment +hep-ex/0411038 Experiment +hep-ex/0411047 Experiment +hep-ex/0411053 Experiment +hep-ex/0501019 Experiment +hep-ex/0501020 Experiment +hep-ex/0503007 Experiment +hep-ex/0504027 Experiment +hep-ex/0505031 Experiment +hep-ex/0505094 Experiment +hep-ex/0506067 Experiment +hep-ex/0507017 Experiment +hep-ex/0509035 Experiment +hep-ex/0510002 Experiment +hep-ex/0510007 Experiment +hep-ex/0510010 Experiment +hep-ex/0510011 Experiment +hep-ex/0510012 Experiment +hep-ex/0510018 Experiment +hep-ex/0510020 Experiment +hep-ex/0510066 Experiment +hep-ex/0511036 Experiment +hep-ex/0601015 Experiment +hep-ex/0603037 Experiment +hep-ex/0605104 Experiment +hep-ex/0606015 Experiment +hep-ex/9412002 Experiment +hep-ex/9501009 Experiment +hep-ex/9501010 Experiment +hep-ex/9502005 Experiment +hep-ex/9502007 Experiment +hep-ex/9503004 Experiment +hep-ex/9503005 Experiment +hep-ex/9503008 Experiment +hep-ex/9503011 Experiment +hep-ex/9504009 Experiment +hep-ex/9511011 Experiment +hep-ex/9603007 Experiment +hep-ex/9608001 Experiment +hep-ex/9610004 Experiment +hep-ex/9611009 Experiment +hep-ex/9701010 Experiment +hep-ex/9703001 Experiment +hep-ex/9705002 Experiment +hep-ex/9708005 Experiment +hep-ex/9710017 Experiment +hep-ex/9710029 Experiment +hep-ex/9711003 Experiment +hep-ex/9711009 Experiment +hep-ex/9805011 Experiment +hep-ex/9805012 Experiment +hep-ex/9805013 Experiment +hep-ex/9805014 Experiment +hep-ex/9805015 Experiment +hep-ex/9805029 Experiment +hep-ex/9806003 Experiment +hep-ex/9807011 Experiment +hep-ex/9807025 Experiment +hep-ex/9807026 Experiment +hep-ex/9809014 Experiment +hep-ex/9809029 Experiment +hep-ex/9811024 Experiment +hep-ex/9812010 Experiment +hep-ex/9901019 Experiment +hep-ex/9902012 Experiment +hep-ex/9903013 Experiment +hep-ex/9903067 Experiment +hep-ex/9904033 Experiment +hep-ex/9907013 Experiment +hep-ex/9907049 Experiment +hep-ex/9907051 Experiment +hep-ex/9908056 Experiment +hep-ex/9909016 Experiment +hep-ex/9909023 Experiment +hep-ex/9909051 Experiment +hep-ex/9911035 Experiment +hep-ex/9911050 Experiment +hep-ex/9912020 Experiment +hep-ex/9912043 Experiment +hep-ex/9912066 Experiment +hep-lat/9204010 Lattice +hep-lat/9206001 Lattice +hep-lat/9207032 Lattice +hep-lat/9208022 Lattice +hep-lat/9208028 Lattice +hep-lat/9210038 Lattice +hep-lat/9211008 Lattice +hep-lat/9211025 Lattice +hep-lat/9212034 Lattice +hep-lat/9305026 Lattice +hep-lat/9306005 Lattice +hep-lat/9306014 Lattice +hep-lat/9309013 Lattice +hep-lat/9310029 Lattice +hep-lat/9312074 Lattice +hep-lat/9312079 Lattice +hep-lat/9405015 Lattice +hep-lat/9406021 Lattice +hep-lat/9407012 Lattice +hep-lat/9407024 Lattice +hep-lat/9411034 Lattice +hep-lat/9411040 Lattice +hep-lat/9411071 Lattice +hep-lat/9412031 Lattice +hep-lat/9501001 Lattice +hep-lat/9501003 Lattice +hep-lat/9501004 Lattice +hep-lat/9501007 Lattice +hep-lat/9501008 Lattice +hep-lat/9501011 Lattice +hep-lat/9501012 Lattice +hep-lat/9501014 Lattice +hep-lat/9501017 Lattice +hep-lat/9501018 Lattice +hep-lat/9501019 Lattice +hep-lat/9501021 Lattice +hep-lat/9501024 Lattice +hep-lat/9501025 Lattice +hep-lat/9501027 Lattice +hep-lat/9501032 Lattice +hep-lat/9501033 Lattice +hep-lat/9501034 Lattice +hep-lat/9502001 Lattice +hep-lat/9502003 Lattice +hep-lat/9502004 Lattice +hep-lat/9502005 Lattice +hep-lat/9502006 Lattice +hep-lat/9502008 Lattice +hep-lat/9502011 Lattice +hep-lat/9502014 Lattice +hep-lat/9502017 Lattice +hep-lat/9502018 Lattice +hep-lat/9502019 Lattice +hep-lat/9502020 Lattice +hep-lat/9502021 Lattice +hep-lat/9503003 Lattice +hep-lat/9503005 Lattice +hep-lat/9503007 Lattice +hep-lat/9503008 Lattice +hep-lat/9503009 Lattice +hep-lat/9503011 Lattice +0905.4054 Differential Geometry +1106.3772 Algebraic Topology +1111.4774 Algebraic Topology +1111.6098 Phenomenology +1202.4626 Discrete Mathematics +1212.4082 General Mathematics +1301.5994 Analysis of PDEs +1302.3672 Computational Geometry +1304.5763 Group Theory +1309.2308 +1310.2090 Statistical Mechanics +1312.6699 Analysis of PDEs +1401.0152 Phenomenology +1401.5125 Information Theory +1401.7541 Operator Algebras +1402.5419 Phenomenology +1403.6298 Differential Geometry +1404.2894 Geometric Topology +1404.5240 Representation Theory +1404.5646 Materials Science +1405.5820 Operator Algebras +1406.5394 Statistical Mechanics +1407.4295 Probability +1407.7534 Phenomenology +1408.5238 Group Theory +1408.6699 Phenomenology +1410.2427 Fluid Dynamics +1410.4708 Dynamical Systems +1410.7589 +1410.8512 Group Theory +1411.3618 Mathematical Finance +1412.5587 Phenomenology +1412.5622 Discrete Mathematics +1501.00696 Numerical Analysis +1501.01346 Number Theory +1501.02137 +1501.04742 Algebraic Geometry +1501.06960 +1502.04884 Fluid Dynamics +1503.00301 Databases +1503.02712 Analysis of PDEs +1503.02735 Distributed, Parallel, and Cluster Computing +1503.05990 Probability +1503.06932 Superconductivity +1503.07617 Dynamical Systems +1503.07689 Methodology +1504.00337 Computational Complexity +1504.05318 Information Theory +1504.05732 Dynamical Systems +1504.06714 Analysis of PDEs +1504.07851 Data Structures and Algorithms +1505.01364 Group Theory +1505.04118 +1505.04863 Mesoscale and Nanoscale Physics +1505.05558 Dynamical Systems +1506.01889 +1506.08107 Combinatorics +1507.00324 Differential Geometry +1507.01766 +1507.08181 Combinatorics +1507.08211 Metric Geometry +1508.00277 Computational Physics +1508.03711 +1508.04377 Phenomenology +1508.05540 Number Theory +1509.01706 Information Theory +1509.03851 Optics +1509.04584 Representation Theory +1509.05145 Theory +1509.07356 Symplectic Geometry +1509.08878 Theory +1510.03059 Social and Information Networks +1510.07080 Soft Condensed Matter +1511.01441 Number Theory +1511.06272 Numerical Analysis +1511.06809 Probability +1511.07613 Statistics Theory +1511.07832 Combinatorics +1511.08338 Dynamical Systems +1511.08881 +1511.09225 Quantum Gases +1512.00970 General Mathematics +1512.03055 Theory +1512.03507 Optics +1512.04058 +1512.05259 Adaptation and Self-Organizing Systems +1512.05519 Computational Physics +1512.05818 Superconductivity +1512.05941 Numerical Analysis +1512.06308 Number Theory +1512.06347 Analysis of PDEs +1512.06646 Theory +1512.07868 Probability +1512.09230 Superconductivity +1601.00137 Numerical Analysis +1601.01047 Phenomenology +1601.02344 Optics +1601.03581 Representation Theory +1601.03584 Statistical Mechanics +1601.05361 Fluid Dynamics +1601.06437 Information Theory +1601.08093 Mesoscale and Nanoscale Physics +1602.00180 Statistics Theory +1602.01224 Graphics +1602.01241 Numerical Analysis +1602.01650 Methodology +1602.04610 +1602.04636 Theory +1602.07279 Strongly Correlated Electrons +1602.07317 Strongly Correlated Electrons +1603.01636 High Energy Astrophysical Phenomena +1603.01881 +1603.02580 Computational Complexity +1603.03196 Numerical Analysis +1603.05167 Analysis of PDEs +1603.05463 Dynamical Systems +1603.05516 Classical Physics +1603.05518 Operator Algebras +1603.08781 Mesoscale and Nanoscale Physics +1604.02599 Analysis of PDEs +1604.04084 Group Theory +1604.05893 +1604.06131 Biological Physics +1604.07720 Mesoscale and Nanoscale Physics +1605.01795 Group Theory +1605.01964 Optimization and Control +1605.02403 Cosmology and Nongalactic Astrophysics +1605.02782 Mesoscale and Nanoscale Physics +1605.02803 Theory +1605.02820 Probability +1605.04395 Strongly Correlated Electrons +1605.04964 Quantum Gases +1605.05940 Astrophysics of Galaxies +1605.06089 Fluid Dynamics +1605.06161 Earth and Planetary Astrophysics +1605.06347 Strongly Correlated Electrons +1605.07209 Mesoscale and Nanoscale Physics +1605.07801 Analysis of PDEs +1605.08059 Phenomenology +1606.00229 Methodology +1606.01044 +1606.01574 Statistical Mechanics +1606.01915 Phenomenology +1606.02560 Artificial Intelligence +1606.05436 Optics +1606.06233 Operator Algebras +1606.06525 +1606.06864 Computation and Language +1606.07216 Number Theory +1606.08117 Learning +1606.09032 Phenomenology +1606.09493 Emerging Technologies +1607.02219 Probability +1607.02686 Materials Science +1607.02759 +1607.03383 +1607.04126 Solar and Stellar Astrophysics +1607.04213 Quantum Gases +1607.04428 Networking and Internet Architecture +1607.05060 Superconductivity +1607.05530 Neurons and Cognition +1607.06161 Algebraic Geometry +1607.06505 Other Condensed Matter +1607.07874 High Energy Astrophysical Phenomena +1608.00035 Chemical Physics +1608.01139 Mesoscale and Nanoscale Physics +1608.01320 Strongly Correlated Electrons +1608.01409 Computer Vision and Pattern Recognition +1608.03378 Materials Science +1608.04316 Superconductivity +1608.04630 Materials Science +1608.05180 Computer Vision and Pattern Recognition +1608.06669 Computer Vision and Pattern Recognition +1608.07433 Computer Vision and Pattern Recognition +1608.08287 Quantum Algebra +1608.08649 Functional Analysis +1609.00227 General Physics +1609.00335 Materials Science +1609.00626 Computation and Language +1609.00822 +1609.00851 Statistical Mechanics +1609.00928 Strongly Correlated Electrons +1609.00998 Materials Science +1609.01177 Symplectic Geometry +1609.01974 Differential Geometry +1609.02065 Statistical Mechanics +1609.03219 Machine Learning +1609.03650 +1609.03798 Probability +1609.03869 Optics +1609.04002 Number Theory +1609.04047 Mesoscale and Nanoscale Physics +1609.04119 +1609.04125 Spectral Theory +1609.04450 Mesoscale and Nanoscale Physics +1609.04756 Solar and Stellar Astrophysics +1609.04809 Mathematical Software +1609.04810 Computational Engineering, Finance, and Science +1609.04818 Disordered Systems and Neural Networks +1609.04821 Phenomenology +1609.04822 Astrophysics of Galaxies +1609.04826 High Energy Astrophysical Phenomena +1609.04829 High Energy Astrophysical Phenomena +1609.04833 Phenomenology +1609.04835 Phenomenology +1609.04837 Soft Condensed Matter +1609.04839 Materials Science +1609.04842 Representation Theory +1609.04844 Networking and Internet Architecture +1609.04846 Neural and Evolutionary Computing +1609.04847 Optics +1609.04848 Mesoscale and Nanoscale Physics +1609.04850 Optics +1609.04852 General Mathematics +1609.04853 +1609.04854 Group Theory +1609.04856 Populations and Evolution +1609.04857 Geometric Topology +1609.04859 Social and Information Networks +1609.04860 Instrumentation and Detectors +1609.04862 Methodology +1609.04865 Combinatorics +1609.04869 Numerical Analysis +1609.04874 Group Theory +1609.04875 Algebraic Geometry +1609.04879 Artificial Intelligence +1609.04881 Popular Physics +1609.04882 Solar and Stellar Astrophysics +1609.04887 Algebraic Geometry +1609.04889 Classical Analysis and ODEs +1609.04890 Trading and Market Microstructure +1609.04891 Information Theory +1609.04895 Algebraic Geometry +1609.04898 Algebraic Geometry +1609.04899 Rings and Algebras +1609.04900 Differential Geometry +1609.04902 Genomics +1609.04903 Social and Information Networks +1609.04905 Optimization and Control +1609.04906 Networking and Internet Architecture +1609.04907 Mathematical Finance +1609.04912 Analysis of PDEs +1609.04913 Hardware Architecture +1609.04915 Solar and Stellar Astrophysics +1609.04918 Computational Complexity +1609.04919 Emerging Technologies +1609.04921 Emerging Technologies +1609.04924 Number Theory +1609.04925 Plasma Physics +1609.04926 Molecular Networks +1609.04928 Differential Geometry +1609.04929 Number Theory +1609.04930 Optics +1609.04932 Mesoscale and Nanoscale Physics +1609.04933 Complex Variables +1609.04934 Plasma Physics +1609.04935 Plasma Physics +1609.04936 Plasma Physics +1609.04938 Computer Vision and Pattern Recognition +1609.04939 Differential Geometry +1609.04942 +1609.04946 Robotics +1609.04947 Robotics +1609.04949 Classical Analysis and ODEs +1609.04951 Data Structures and Algorithms +1609.04952 Optimization and Control +1609.04953 +1609.04955 Cryptography and Security +1609.04960 Computer Science and Game Theory +1609.04961 Statistics Theory +1609.04962 Combinatorics +1609.04965 +1609.04966 Phenomenology +1609.04967 Methodology +1609.04969 Classical Physics +1609.04972 Materials Science +1609.04975 Combinatorics +1609.04976 Materials Science +1609.04977 Optimization and Control +1609.04982 Optimization and Control +1609.04985 Methodology +1609.04987 Geometric Topology +1609.04992 Theory +1609.04993 Atomic Physics +1609.04996 Materials Science +1609.04998 Phenomenology +1609.04999 Chemical Physics +1609.05000 Number Theory +1609.05001 Computer Vision and Pattern Recognition +1609.05002 Distributed, Parallel, and Cluster Computing +1609.05005 Algebraic Geometry +1609.05008 Soft Condensed Matter +1609.05009 Information Theory +1609.05010 Mesoscale and Nanoscale Physics +1609.05012 Data Analysis, Statistics and Probability +1609.05013 Group Theory +1609.05018 +1609.05020 Databases +1609.05025 Geometric Topology +1609.05027 Soft Condensed Matter +1609.05033 +1609.05035 Optimization and Control +1609.05041 +1609.05043 Optimization and Control +1609.05044 Geometric Topology +1609.05049 Analysis of PDEs +1609.05051 Populations and Evolution +1609.05054 Optimization and Control +1609.05055 General Finance +1609.05056 General Finance +1609.05057 Machine Learning +1609.05059 Combinatorics +1609.05063 Computers and Society +1609.05064 Optimization and Control +1609.05066 Optics +1609.05069 +1609.05072 Phenomenology +1609.05073 Chemical Physics +1609.05074 Differential Geometry +1609.05076 Chemical Physics +1609.05078 Information Theory +1609.05080 Information Theory +1609.05081 Social and Information Networks +1609.05082 Logic +1609.05083 Analysis of PDEs +1609.05084 Computer Science and Game Theory +1609.05086 Operator Algebras +1609.05087 Distributed, Parallel, and Cluster Computing +1609.05091 Algebraic Geometry +1609.05093 Theory +1609.05094 Geometric Topology +1609.05096 Databases +1609.05097 Numerical Analysis +1609.05098 Atmospheric and Oceanic Physics +1609.05099 Fluid Dynamics +1609.05100 +1609.05101 Numerical Analysis +1609.05102 +1609.05105 Phenomenology +1609.05107 Numerical Analysis +1609.05109 Fluid Dynamics +1609.05111 Information Theory +1609.05112 Computer Vision and Pattern Recognition +1609.05113 Databases +1609.05115 Computer Vision and Pattern Recognition +1609.05116 Information Theory +1609.05117 Algebraic Geometry +1609.05118 Computer Vision and Pattern Recognition +1609.05123 Learning +1609.05125 Exactly Solvable and Integrable Systems +1609.05126 Complex Variables +1609.05127 Number Theory +1609.05128 Optimization and Control +1609.05129 +1609.05131 Tissues and Organs +1609.05133 Algebraic Geometry +1609.05136 Computer Science and Game Theory +1609.05141 Emerging Technologies +1609.05142 Spectral Theory +1609.05143 Computer Vision and Pattern Recognition +1609.05144 Phenomenology +1609.05145 Lattice +1609.05147 Instrumentation and Methods for Astrophysics +1609.05150 General Topology +1609.05152 Artificial Intelligence +1609.05154 Group Theory +1609.05155 Materials Science +1609.05157 Cosmology and Nongalactic Astrophysics +1609.05159 Plasma Physics +1609.05160 Information Theory +1609.05162 Robotics +1609.05167 Optimization and Control +1609.05168 Optics +1609.05170 Artificial Intelligence +1609.05172 Chemical Physics +1609.05173 Networking and Internet Architecture +1609.05174 Probability +1609.05177 Trading and Market Microstructure +1609.05179 Networking and Internet Architecture +1609.05181 Information Theory +1609.05183 +1609.05184 Functional Analysis +1609.05185 Classical Analysis and ODEs +1609.05186 Methodology +1609.05187 Mesoscale and Nanoscale Physics +1609.05188 Methodology +1609.05189 Algebraic Geometry +1609.05190 Phenomenology +1609.05191 Learning +1609.05194 Combinatorics +1609.05195 Data Analysis, Statistics and Probability +1609.05196 Rings and Algebras +1609.05198 Networking and Internet Architecture +1609.05199 Networking and Internet Architecture +1609.05200 Economics +0806.4135 Group Theory +0812.1629 Group Theory +0903.2817 Number Theory +0904.0474 Number Theory +0909.1626 Discrete Mathematics +1011.5470 Distributed, Parallel, and Cluster Computing +1102.3882 Cryptography and Security +1102.4186 Commutative Algebra +1105.0259 Cryptography and Security +1106.2720 Commutative Algebra +1204.3869 Combinatorics +1206.0668 Phenomenology +1207.1492 Cosmology and Nongalactic Astrophysics +1208.1627 Commutative Algebra +1208.1684 Superconductivity +1208.4219 Dynamical Systems +1209.1880 Combinatorics +1212.5802 Commutative Algebra +1303.4904 Dynamical Systems +1304.0527 K-Theory and Homology +1304.0571 Number Theory +1305.6098 K-Theory and Homology +1306.4849 Information Theory +1307.4041 Algebraic Geometry +1309.2414 Number Theory +1310.3786 Combinatorics +1310.5335 +1311.0686 Computation +1311.1652 Analysis of PDEs +1311.4359 Algebraic Geometry +1311.6321 +1312.3829 Algebraic Topology +1401.5991 Fluid Dynamics +1402.0197 Adaptation and Self-Organizing Systems +1402.2827 Computers and Society +1402.3829 Commutative Algebra +1403.2334 Algebraic Topology +1404.0985 Analysis of PDEs +1404.2458 Optimization and Control +1404.5007 Information Theory +1404.5710 Group Theory +1406.4433 Optimization and Control +1406.6067 Combinatorics +1407.0990 Quantum Gases +1408.0191 Algebraic Geometry +1408.2761 Populations and Evolution +1408.4637 Combinatorics +1408.6201 General Physics +1409.0215 Dynamical Systems +1409.2818 Differential Geometry +1409.5583 Information Theory +1409.7475 Adaptation and Self-Organizing Systems +1410.2170 Algebraic Topology +1410.3477 Astrophysics of Galaxies +1410.5940 Functional Analysis +1411.2853 Probability +1411.4024 Discrete Mathematics +1411.4486 +1411.5661 Discrete Mathematics +1412.1394 Methodology +1412.3504 Software Engineering +1412.4234 Cryptography and Security +1412.4706 Analysis of PDEs +1412.6044 Mesoscale and Nanoscale Physics +1412.6453 Algebraic Geometry +1412.7901 Strongly Correlated Electrons +1501.00234 +1501.06046 Commutative Algebra +1501.06999 Combinatorics +1502.02857 Phenomenology +1503.04108 Information Theory +1503.07724 Strongly Correlated Electrons +1503.07991 Emerging Technologies +1503.08060 Computation +1504.00758 Instrumentation and Detectors +1504.02476 Strongly Correlated Electrons +1504.03037 Logic +1504.04158 Strongly Correlated Electrons +1504.04197 Superconductivity +1504.04947 Materials Science +1504.08122 Combinatorics +1505.02004 Functional Analysis +1505.02041 Phenomenology +1505.03587 Pricing of Securities +1505.07984 Fluid Dynamics +1505.08087 Soft Condensed Matter +1506.00009 Complex Variables +1506.01635 Number Theory +1506.03259 Strongly Correlated Electrons +1506.04952 History and Philosophy of Physics +1506.06796 Adaptation and Self-Organizing Systems +1506.06857 Computers and Society +1506.07451 Differential Geometry +1506.07630 Number Theory +1506.08024 Phenomenology +1507.01234 Information Theory +1507.03265 +1507.05206 Cryptography and Security +1507.05617 Cosmology and Nongalactic Astrophysics +1507.06688 Combinatorics +1507.07139 Applications +1507.08554 Probability +1507.08580 High Energy Astrophysical Phenomena +1508.00811 Statistical Mechanics +1508.01050 Computation +1508.02851 Discrete Mathematics +1508.05239 Differential Geometry +1508.05328 Multiagent Systems +1508.06817 Group Theory +1508.06946 Mesoscale and Nanoscale Physics +1509.00349 Computation +1509.02358 Experiment +1509.02455 Symplectic Geometry +1509.05511 Representation Theory +1509.06164 Materials Science +1509.06368 Theory +1509.06883 Number Theory +1509.08256 Materials Science +1510.00318 Rings and Algebras +1510.00717 Analysis of PDEs +1510.01444 Learning +1510.01710 Analysis of PDEs +1510.02770 Differential Geometry +1510.03138 +1510.03619 +1510.03783 Materials Science +1510.04036 Combinatorics +1510.05365 +1510.05937 Sound +1510.05940 Sound +1510.06340 +1510.07044 Theory +1510.07082 Combinatorics +1510.07351 Mesoscale and Nanoscale Physics +1510.07700 Geometric Topology +1510.07873 Systems and Control +1511.00529 Adaptation and Self-Organizing Systems +1511.00701 +1511.01707 Computation +1511.01982 Mesoscale and Nanoscale Physics +1511.06909 Learning +1511.06974 Commutative Algebra +1511.07660 Phenomenology +1511.08025 Theory +1511.08819 Statistical Mechanics +1511.08942 Combinatorics +1512.00357 Algebraic Topology +1512.01235 Astrophysics of Galaxies +1512.01632 Dynamical Systems +1512.02063 Machine Learning +1512.02672 Experiment +1512.04238 Disordered Systems and Neural Networks +1512.05792 +1512.07018 Theory +1512.08993 +1601.00248 Computation and Language +1601.00274 Complex Variables +1601.00579 Commutative Algebra +1601.00641 Cosmology and Nongalactic Astrophysics +1601.01081 Mesoscale and Nanoscale Physics +1601.01200 Strongly Correlated Electrons +1601.02493 Strongly Correlated Electrons +1601.07489 Strongly Correlated Electrons +1601.07505 Computer Science and Game Theory +1601.07760 Combinatorics +1601.08232 Soft Condensed Matter +1602.01117 Metric Geometry +1602.02225 Medical Physics +1602.02896 +1602.02910 Mesoscale and Nanoscale Physics +1602.03206 Graphics +1602.04155 +1602.04541 +1602.04628 Combinatorics +1602.04932 +1602.05569 Strongly Correlated Electrons +1602.06807 Cryptography and Security +1602.07891 Other Computer Science +1602.08771 Learning +1602.08809 Software Engineering +1602.08991 Mathematical Software +1603.00399 Combinatorics +1603.01723 +1603.01816 Optics +1603.02063 Data Structures and Algorithms +1603.02862 +1603.03107 Mesoscale and Nanoscale Physics +1603.03400 +1603.04206 Quantum Gases +1603.04357 Mesoscale and Nanoscale Physics +1603.04945 Physics and Society +1603.05082 +1603.05107 Differential Geometry +1603.05392 Superconductivity +1603.05595 Phenomenology +1603.05866 Instrumentation and Methods for Astrophysics +1603.06104 Dynamical Systems +1603.06324 Robotics +1603.06604 High Energy Astrophysical Phenomena +1603.06816 Instrumentation and Detectors +1603.08275 Functional Analysis +1603.08516 Analysis of PDEs +1603.08538 Neural and Evolutionary Computing +1603.09016 Computer Vision and Pattern Recognition +1603.09106 +1603.09334 Logic +1603.09337 Distributed, Parallel, and Cluster Computing +1603.09344 Earth and Planetary Astrophysics +1603.09357 Solar and Stellar Astrophysics +1603.09360 +1603.09362 +1603.09363 Dynamical Systems +1603.09365 Combinatorics +1603.09366 Phenomenology +1603.09370 Solar and Stellar Astrophysics +1603.09371 Theory +1603.09374 Instrumentation and Methods for Astrophysics +1603.09376 Information Theory +1603.09378 Fluid Dynamics +1603.09379 Representation Theory +1603.09380 Geophysics +1603.09381 Learning +1603.09384 Combinatorics +1603.09387 Quantum Algebra +1603.09389 Algebraic Geometry +1603.09390 Computational Complexity +1603.09395 Optics +1603.09398 Analysis of PDEs +1603.09401 Commutative Algebra +1603.09404 Algebraic Geometry +1603.09405 Computation and Language +1603.09407 Algebraic Geometry +1603.09409 +1603.09411 Algebraic Geometry +1603.09413 Algebraic Geometry +1603.09415 Populations and Evolution +1603.09416 Instrumentation and Methods for Astrophysics +1603.09418 Optimization and Control +1603.09420 Neural and Evolutionary Computing +1603.09421 +1603.09423 Computer Vision and Pattern Recognition +1603.09425 +1603.09428 Earth and Planetary Astrophysics +1603.09429 Artificial Intelligence +1603.09434 Information Retrieval +1603.09435 Differential Geometry +1603.09436 Social and Information Networks +1603.09438 Instrumentation and Methods for Astrophysics +1603.09441 Learning +1603.09445 Combinatorics +1603.09448 Combinatorics +1603.09449 Social and Information Networks +1603.09453 Other Statistics +1603.09454 Computer Vision and Pattern Recognition +1603.09457 Computation and Language +1603.09462 Computer Vision and Pattern Recognition +1603.09464 Analysis of PDEs +1603.09469 Computer Vision and Pattern Recognition +1603.09470 +1603.09471 Analysis of PDEs +1603.09472 Probability +1603.09476 Analysis of PDEs +1603.09478 Strongly Correlated Electrons +1603.09481 Classical Analysis and ODEs +1603.09482 Rings and Algebras +1603.09484 Other Condensed Matter +1603.09486 Probability +1603.09487 Combinatorics +1603.09488 Logic in Computer Science +1603.09492 Optimization and Control +1603.09494 +1603.09495 Artificial Intelligence +1603.09496 Popular Physics +1603.09499 +1603.09500 Optics +1603.09502 Artificial Intelligence +1603.09503 Representation Theory +1603.09506 Earth and Planetary Astrophysics +1603.09510 General Topology +1603.09511 Artificial Intelligence +1603.09513 Classical Analysis and ODEs +1603.09518 Combinatorics +1603.09519 Optimization and Control +1603.09520 Human-Computer Interaction +1603.09522 Information Retrieval +1603.09524 Cryptography and Security +1603.09526 Cryptography and Security +1603.09531 Computational Complexity +1603.09533 Human-Computer Interaction +1603.09537 Networking and Internet Architecture +1603.09545 Artificial Intelligence +1603.09550 Phenomenology +1603.09556 Number Theory +1603.09557 Combinatorics +1603.09558 Computer Vision and Pattern Recognition +1603.09561 Discrete Mathematics +1603.09563 +1603.09564 High Energy Astrophysical Phenomena +1603.09565 Information Theory +1603.09568 Algebraic Geometry +1603.09570 Discrete Mathematics +1603.09571 Quantum Gases +1603.09573 High Energy Astrophysical Phenomena +1603.09574 Information Theory +1603.09576 Strongly Correlated Electrons +1603.09577 Computational Physics +1603.09578 Networking and Internet Architecture +1603.09579 Functional Analysis +1603.09580 Mesoscale and Nanoscale Physics +1603.09581 Analysis of PDEs +1603.09583 Statistical Mechanics +1603.09584 Machine Learning +1603.09585 Classical Analysis and ODEs +1603.09590 Popular Physics +1603.09595 Optimization and Control +1603.09596 Computational Geometry +1603.09598 Computers and Society +1603.09599 Computer Vision and Pattern Recognition +1603.09602 Chaotic Dynamics +1603.09608 Materials Science +1603.09614 Dynamical Systems +1603.09615 Chaotic Dynamics +1603.09618 Materials Science +1603.09622 Classical Analysis and ODEs +1603.09624 Materials Science +1603.09626 +1603.09636 Group Theory +1603.09640 +1603.09641 Representation Theory +1603.09642 Distributed, Parallel, and Cluster Computing +1603.09645 Combinatorics +1603.09646 Number Theory +1603.09647 Analysis of PDEs +1603.09649 Optimization and Control +1603.09651 General Mathematics +1603.09652 Analysis of PDEs +1603.09657 +1603.09658 Physics and Society +1603.09659 Chaotic Dynamics +1603.09661 Geometric Topology +1603.09666 Probability +1603.09667 +1603.09668 +1603.09671 +1603.09673 Representation Theory +1603.09674 +1603.09675 +1603.09679 Distributed, Parallel, and Cluster Computing +1603.09691 Phenomenology +1603.09695 Rings and Algebras +1603.09698 Logic +1603.09704 Chaotic Dynamics +1603.09705 Algebraic Geometry +1603.09709 Rings and Algebras +1603.09712 Computer Vision and Pattern Recognition +1603.09713 Combinatorics +1603.09715 General Topology +1603.09716 Applications +1603.09720 Strongly Correlated Electrons +1603.09723 Popular Physics +1603.09726 Dynamical Systems +1603.09727 Computation and Language +1603.09728 Artificial Intelligence +1603.09733 General Physics +1603.09736 Spectral Theory +1603.09738 Learning +1603.09739 Learning +1603.09744 Combinatorics +1603.09746 Astrophysics of Galaxies +cond-mat/9508063 +math/0510166 Group Theory +0912.1872 Optics +1005.3656 Solar and Stellar Astrophysics +1104.1409 Algebraic Geometry +1107.4685 +1108.1245 Representation Theory +1111.3304 Computational Engineering, Finance, and Science +1202.6408 Operator Algebras +1204.4429 Classical Analysis and ODEs +1208.0267 High Energy Astrophysical Phenomena +1209.6574 Classical Analysis and ODEs +1211.0745 Probability +1301.5378 Geometric Topology +1302.0879 Solar and Stellar Astrophysics +1303.1062 Operator Algebras +1303.3375 Solar and Stellar Astrophysics +1303.3766 Group Theory +1304.6459 Social and Information Networks +1306.3598 Classical Analysis and ODEs +1307.5313 Differential Geometry +1307.5801 Operator Algebras +1308.0613 Materials Science +1310.4616 Analysis of PDEs +1311.0395 Probability +1401.6642 Information Theory +1404.5504 +1405.1465 Geometric Topology +1405.2296 Cosmology and Nongalactic Astrophysics +1405.3066 +1406.1602 +1406.5906 Group Theory +1407.0657 +1407.6701 Group Theory +1407.7612 Quantitative Methods +1409.6701 Combinatorics +1409.8345 +1410.0262 +1410.0435 Representation Theory +1411.3873 Probability +1411.7417 Group Theory +1412.2488 Symplectic Geometry +1412.5079 +1412.7676 Metric Geometry +1501.02193 Probability +1501.02408 Combinatorics +1501.04449 Astrophysics of Galaxies +1501.07332 Analysis of PDEs +1501.07410 Number Theory +1502.03346 Cryptography and Security +1502.06737 Numerical Analysis +1502.07904 Rings and Algebras +1503.00238 +1503.01233 Tissues and Organs +1503.02008 +1503.02330 Computer Vision and Pattern Recognition +1503.05941 Complex Variables +1503.08117 Quantum Algebra +1504.01541 Instrumentation and Methods for Astrophysics +1504.01891 Databases +1504.07183 Group Theory +1505.00550 Phenomenology +1505.02702 Materials Science +1505.03325 Probability +1505.04634 +1505.06365 +1505.06852 Analysis of PDEs +1506.00385 Numerical Analysis +1506.00829 Methodology +1506.01513 Social and Information Networks +1506.01652 Computational Complexity +1506.01746 Complex Variables +1506.03361 Combinatorics +1506.09076 +1507.05338 Combinatorics +1508.01097 Computational Geometry +1508.01235 Machine Learning +1508.05048 Operator Algebras +1508.05414 Applications +1508.06346 Systems and Control +1509.02192 High Energy Astrophysical Phenomena +1509.02787 Phenomenology +1509.04415 Numerical Analysis +1509.05896 Computational Complexity +1509.06326 Atmospheric and Oceanic Physics +1509.06617 Geometric Topology +1509.06693 Robotics +1509.07115 Numerical Analysis +1509.08998 Differential Geometry +1510.00468 Operator Algebras +1510.00603 +1510.00853 Dynamical Systems +1510.02284 +1510.04691 Solar and Stellar Astrophysics +1510.06453 Number Theory +1510.06682 Numerical Analysis +1510.07512 Chemical Physics +1510.07551 Theory +1510.09087 +1511.00456 Accelerator Physics +1511.01475 Analysis of PDEs +1511.01727 Mesoscale and Nanoscale Physics +1511.01871 Materials Science +1511.03488 Systems and Control +1511.04466 Data Structures and Algorithms +1511.06848 Optics +1511.07448 Cosmology and Nongalactic Astrophysics +1511.07482 Computation +1511.08579 Phenomenology +1511.08613 Strongly Correlated Electrons +1511.08777 Combinatorics +1511.09346 +1512.00552 Solar and Stellar Astrophysics +1512.01120 Commutative Algebra +1512.01211 Differential Geometry +1512.02049 Dynamical Systems +1512.03633 Chemical Physics +1512.03755 Materials Science +1512.04344 Soft Condensed Matter +1512.04850 Phenomenology +1512.07496 Analysis of PDEs +1512.07644 Tissues and Organs +1512.08567 Soft Condensed Matter +1512.08644 Plasma Physics +1601.00970 Phenomenology +1601.01189 Statistical Mechanics +1601.04879 Applications +1601.08246 Instrumentation and Methods for Astrophysics +1602.00176 Number Theory +1602.00212 Computer Vision and Pattern Recognition +1602.00710 Symbolic Computation +1602.01807 Number Theory +1602.02038 Theory +1602.03160 Experiment +1602.03885 Computer Science and Game Theory +1602.04596 Astrophysics of Galaxies +1602.05627 Soft Condensed Matter +1602.05797 Superconductivity +1602.06541 Computer Vision and Pattern Recognition +1602.06581 Experiment +1602.07178 Theory +1602.07217 Information Retrieval +1602.07555 History and Overview +1602.07927 +1602.08606 Theory +1603.00647 Group Theory +1603.00716 Lattice +1603.01249 Computer Vision and Pattern Recognition +1603.01878 Complex Variables +1603.02557 Theory +1603.03425 Theory +1603.03779 Phenomenology +1603.05176 Plasma Physics +1603.06850 Formal Languages and Automata Theory +1603.07946 Cosmology and Nongalactic Astrophysics +1603.08222 Soft Condensed Matter +1603.09184 Analysis of PDEs +1604.00754 Representation Theory +1604.00917 Earth and Planetary Astrophysics +1604.02318 Methodology +1604.03963 Dynamical Systems +1604.04660 Artificial Intelligence +1604.05164 General Physics +1605.00151 Mesoscale and Nanoscale Physics +1605.00394 +1605.01539 Data Structures and Algorithms +1605.01541 +1605.01625 Instrumentation and Detectors +1605.02686 Computer Vision and Pattern Recognition +1605.02713 Combinatorics +1605.03060 Neurons and Cognition +1605.03189 Superconductivity +1605.03210 Dynamical Systems +1605.03249 Materials Science +1605.03403 +1605.03416 Artificial Intelligence +1605.03445 Probability +1605.03568 Operator Algebras +1605.03569 Discrete Mathematics +1605.03571 Solar and Stellar Astrophysics +1605.03572 Astrophysics of Galaxies +1605.03578 Solar and Stellar Astrophysics +1605.03592 Materials Science +1605.03593 Digital Libraries +1605.03594 Materials Science +1605.03596 Cryptography and Security +1605.03603 Operator Algebras +1605.03609 Phenomenology +1605.03612 Combinatorics +1605.03614 Analysis of PDEs +1605.03615 Physics and Society +1605.03622 Distributed, Parallel, and Cluster Computing +1605.03624 Computer Vision and Pattern Recognition +1605.03634 Solar and Stellar Astrophysics +1605.03635 Information Theory +1605.03636 Programming Languages +1605.03638 Number Theory +1605.03643 Data Structures and Algorithms +1605.03644 Social and Information Networks +1605.03647 Optimization and Control +1605.03652 Systems and Control +1605.03654 Combinatorics +1605.03655 Atomic Physics +1605.03657 +1605.03658 Experiment +1605.03662 Statistics Theory +1605.03663 Computer Vision and Pattern Recognition +1605.03664 Computation and Language +1605.03666 Optimization and Control +1605.03667 Optimization and Control +1605.03670 Optimization and Control +1605.03674 +1605.03678 Networking and Internet Architecture +1605.03680 Materials Science +1605.03682 Group Theory +1605.03687 Mesoscale and Nanoscale Physics +1605.03688 Computer Vision and Pattern Recognition +1605.03689 Robotics +1605.03690 Solar and Stellar Astrophysics +1605.03695 Number Theory +1605.03697 Methodology +1605.03698 Analysis of PDEs +1605.03700 Optics +1605.03702 Applications +1605.03704 Rings and Algebras +1605.03705 Computer Vision and Pattern Recognition +1605.03706 Analysis of PDEs +1605.03707 Statistics Theory +1605.03708 Functional Analysis +1605.03711 Mesoscale and Nanoscale Physics +1605.03713 Mesoscale and Nanoscale Physics +1605.03715 Mesoscale and Nanoscale Physics +1605.03716 Analysis of PDEs +1605.03717 Algebraic Geometry +1605.03719 Distributed, Parallel, and Cluster Computing +1605.03720 Computer Vision and Pattern Recognition +1605.03722 Classical Analysis and ODEs +1605.03723 Optics +1605.03724 Sound +1605.03726 Quantitative Methods +1605.03727 +1605.03729 Solar and Stellar Astrophysics +1605.03730 Computer Vision and Pattern Recognition +1605.03735 Geometric Topology +1605.03737 Probability +1605.03738 Optimization and Control +1605.03741 Physics and Society +1605.03744 Representation Theory +1605.03746 Computer Vision and Pattern Recognition +1605.03747 Optics +1605.03751 Statistics Theory +1605.03754 Multimedia +1605.03755 Information Theory +1605.03756 Number Theory +1605.03760 Quantum Algebra +1605.03761 Information Theory +1605.03762 Fluid Dynamics +1605.03764 Neural and Evolutionary Computing +1605.03768 Information Theory +1605.03769 Functional Analysis +1605.03770 Hardware Architecture +1605.03771 Hardware Architecture +1605.03772 Cryptography and Security +1605.03773 Soft Condensed Matter +1605.03776 Analysis of PDEs +1605.03779 Information Theory +1605.03783 Software Engineering +1605.03785 Information Theory +1605.03787 Plasma Physics +1605.03790 Theory +1605.03791 Numerical Analysis +1605.03792 Number Theory +1605.03793 Space Physics +1605.03794 Analysis of PDEs +1605.03797 Data Structures and Algorithms +1605.03801 Analysis of PDEs +1605.03802 Materials Science +1605.03803 Fluid Dynamics +1605.03807 Representation Theory +1605.03808 Probability +1605.03811 Computer Science and Game Theory +1605.03813 Computational Physics +1605.03815 Multimedia +1605.03816 Dynamical Systems +1605.03818 Quantum Gases +1605.03819 Statistical Mechanics +1605.03821 Computer Vision and Pattern Recognition +1605.03823 Dynamical Systems +1605.03824 Methodology +1605.03825 Algebraic Geometry +1605.03826 Computer Science and Game Theory +1605.03829 Cosmology and Nongalactic Astrophysics +1605.03830 Numerical Analysis +1605.03832 Computation and Language +1605.03833 Group Theory +1605.03835 Computation and Language +1605.03837 Rings and Algebras +1605.03842 +1605.03843 Learning +1605.03848 Machine Learning +1605.03850 Differential Geometry +1605.03853 Combinatorics +1605.03854 Symplectic Geometry +1605.03860 Phenomenology +1605.03862 Phenomenology +1605.03863 Differential Geometry +1605.03865 Computer Vision and Pattern Recognition +1605.03866 Classical Analysis and ODEs +1605.03868 Methodology +1605.03870 Differential Geometry +1605.03871 Data Structures and Algorithms +1605.03875 Differential Geometry +1605.03881 Numerical Analysis +1605.03883 Software Engineering +1605.03887 +1605.03888 +1605.03891 Numerical Analysis +1605.03892 Distributed, Parallel, and Cluster Computing +1605.03893 +1605.03894 Probability +1605.03896 Probability +1605.03897 Materials Science +1605.03900 Group Theory +1605.03902 Phenomenology +1605.03904 Chemical Physics +1605.03905 Probability +1605.03906 Theory +1605.03907 Combinatorics +1605.03909 Phenomenology +1605.03912 Analysis of PDEs +1605.03918 Combinatorics +1605.03919 Molecular Networks +1605.03921 Materials Science +1605.03923 +1605.03927 Numerical Analysis +1605.03930 Other Computer Science +1605.03932 Cryptography and Security +1605.03933 Data Structures and Algorithms +1605.03935 Analysis of PDEs +1605.03943 Number Theory +1605.03949 Data Structures and Algorithms +1605.03950 Functional Analysis +1605.03956 Computation and Language +math/0609604 Operator Algebras +0905.4851 Soft Condensed Matter +0910.4357 Data Analysis, Statistics and Probability +1105.3739 Algebraic Geometry +1109.4088 Algebraic Geometry +1111.5866 Computation +1208.1487 Other Statistics +1208.1948 Experiment +1209.3427 Algebraic Geometry +1209.3744 Biological Physics +1212.1660 Dynamical Systems +1304.2549 Algebraic Geometry +1311.5017 Dynamical Systems +1402.7271 Phenomenology +1404.3232 Dynamical Systems +1404.4927 Information Theory +1406.0040 Analysis of PDEs +1406.6246 Algebraic Geometry +1407.2983 Number Theory +1408.1391 Information Theory +1409.0607 Data Structures and Algorithms +1409.5880 Instrumentation and Methods for Astrophysics +1411.4828 +1411.5869 Robotics +1411.6213 Theory +1412.6114 Cosmology and Nongalactic Astrophysics +1501.00816 Analysis of PDEs +1501.02007 Risk Management +1501.02585 Analysis of PDEs +1502.00911 Data Structures and Algorithms +1502.04307 Molecular Networks +1502.05687 Materials Science +1503.02481 Materials Science +1503.02841 Plasma Physics +1503.03305 Methodology +1503.04548 Optimization and Control +1503.05259 Optimization and Control +1503.06504 Algebraic Topology +1504.06164 Numerical Analysis +1504.07635 Theory +1505.00641 Learning +1505.02935 +1505.03735 Algebraic Geometry +1505.04536 Numerical Analysis +1505.06182 General Mathematics +1505.06627 Quantum Algebra +1505.06747 Social and Information Networks +1506.02696 Number Theory +1506.04530 Plasma Physics +1506.05591 Probability +1506.06082 Algebraic Geometry +1506.06790 Group Theory +1506.08781 Neural and Evolutionary Computing +1507.00811 Mesoscale and Nanoscale Physics +1507.03167 +1507.04609 +1507.04928 Artificial Intelligence +1507.05296 Geometric Topology +1507.05840 Number Theory +1507.06885 Group Theory +1508.02728 Theory +1508.03337 Data Structures and Algorithms +1508.06155 Numerical Analysis +1509.03641 +1509.03853 Logic in Computer Science +1509.03884 +1509.04711 +1510.01164 +1510.01880 Plasma Physics +1510.02593 Probability +1510.03228 Plasma Physics +1510.04073 Probability +1510.06165 Phenomenology +1510.08758 Differential Geometry +1511.00539 Analysis of PDEs +1511.00715 Data Structures and Algorithms +1511.00859 Theory +1511.01460 Computational Finance +1511.01609 Methodology +1511.04261 Probability +1511.06324 Optimization and Control +1512.02457 +1512.04184 Tissues and Organs +1512.05696 +1512.07392 Probability +1512.08968 Chemical Physics +1601.05982 Information Theory +1601.06147 Instrumentation and Detectors +1601.06334 Probability +1601.07803 Probability +1602.00528 +1602.02372 Algebraic Geometry +1602.02732 High Energy Astrophysical Phenomena +1602.03015 Plasma Physics +1602.03021 Plasma Physics +1602.03197 Differential Geometry +1602.04334 Experiment +1602.06160 Number Theory +1603.01764 +1603.02826 Cryptography and Security +1603.03330 Information Theory +1603.04977 Number Theory +1603.05535 +1603.05749 Probability +1603.06189 +1603.06208 Computer Vision and Pattern Recognition +1603.06560 Learning +1603.07162 Algebraic Topology +1603.07485 Computer Vision and Pattern Recognition +1603.08254 +1603.08416 Plasma Physics +1603.08654 Mesoscale and Nanoscale Physics +1603.09345 Astrophysics of Galaxies +1604.00419 Statistics Theory +1604.01845 Algebraic Geometry +1604.02284 Logic in Computer Science +1604.03346 Learning +1604.03474 Optics +1604.05640 Information Theory +1604.06098 Number Theory +1604.06640 Phenomenology +1604.07066 Metric Geometry +1604.08406 Statistical Mechanics +1604.08790 Plasma Physics +1605.00923 Classical Physics +1605.01035 Phenomenology +1605.01953 Statistical Mechanics +1605.01995 Artificial Intelligence +1605.02256 Methodology +1605.02370 Fluid Dynamics +1605.03579 Strongly Correlated Electrons +1605.03718 Computer Vision and Pattern Recognition +1605.04808 +1605.05548 Analysis of PDEs +1605.05864 +1605.06228 Phenomenology +1605.06515 Phenomenology +1605.06563 Chemical Physics +1605.08555 +1605.09189 +1605.09230 Biological Physics +1605.09304 Neural and Evolutionary Computing +1605.09512 Materials Science +1605.09553 Computer Vision and Pattern Recognition +1605.09658 Machine Learning +1606.00248 Experiment +1606.00403 Biological Physics +1606.00495 Populations and Evolution +1606.00582 Plasma Physics +1606.01193 General Topology +1606.01242 Astrophysics of Galaxies +1606.01626 Pattern Formation and Solitons +1606.02039 Mesoscale and Nanoscale Physics +1606.02319 Social and Information Networks +1606.02662 Optics +1606.04002 Logic +1606.04059 Group Theory +1606.04262 Plasma Physics +1606.04902 Phenomenology +1606.05510 +1606.06442 +1606.08390 Computer Vision and Pattern Recognition +1606.08586 +1606.08666 Soft Condensed Matter +1606.09355 Optics +1607.01179 Methodology +1607.01945 Statistical Mechanics +1607.02561 Databases +1607.02638 Experiment +1607.02969 Neurons and Cognition +1607.03645 Classical Analysis and ODEs +1607.04091 Mathematical Software +1607.04591 +1607.04978 +1607.05550 Group Theory +1607.07568 Instrumentation and Methods for Astrophysics +1607.07885 Theory +1607.08539 Computer Vision and Pattern Recognition +1607.08819 Soft Condensed Matter +1608.00403 Quantum Gases +1608.00524 Statistics Theory +1608.00602 Phenomenology +1608.00716 Mesoscale and Nanoscale Physics +1608.00890 Experiment +1608.01607 Instrumentation and Detectors +1608.02262 Combinatorics +1608.02427 Networking and Internet Architecture +1608.02511 Mesoscale and Nanoscale Physics +1608.04268 Materials Science +1608.04746 Phenomenology +1608.04857 Computer Science and Game Theory +1608.05351 Theory +1608.05413 Cosmology and Nongalactic Astrophysics +1608.07728 +1609.00737 Instrumentation and Methods for Astrophysics +1609.00831 Data Structures and Algorithms +1609.01063 Analysis of PDEs +1609.02391 Networking and Internet Architecture +1609.03233 Astrophysics of Galaxies +1609.03917 +1609.04432 +1609.05019 Optics +1609.05339 Computers and Society +1609.05693 Information Theory +1609.05820 Information Theory +1609.06294 Phenomenology +1609.07632 Functional Analysis +1609.07919 Combinatorics +1609.08567 High Energy Astrophysical Phenomena +1609.08880 Populations and Evolution +1609.09694 Superconductivity +1610.00633 Robotics +1610.02774 Number Theory +1610.04236 Cosmology and Nongalactic Astrophysics +1610.04252 +1610.04707 Logic in Computer Science +1610.06528 Soft Condensed Matter +1610.06898 Algebraic Topology +1610.07490 Dynamical Systems +1610.08852 Mesoscale and Nanoscale Physics +1610.08929 Statistics Theory +1610.09191 Strongly Correlated Electrons +1610.09509 Analysis of PDEs +1611.00226 General Physics +1611.00572 +1611.00680 Phenomenology +1611.02321 Theory +1611.02360 Computation and Language +1611.02823 Distributed, Parallel, and Cluster Computing +1611.03751 Information Retrieval +1611.04007 Analysis of PDEs +1611.04209 Probability +1611.04519 Computer Vision and Pattern Recognition +1611.04804 Theory +1611.05002 Information Theory +1611.05023 Algebraic Geometry +1611.05068 Disordered Systems and Neural Networks +1611.05214 Phenomenology +1611.05303 Materials Science +1611.05553 Optics +1611.06169 +1611.06459 Social and Information Networks +1611.06567 Optics +1611.06903 Plasma Physics +1611.06972 Machine Learning +1611.06991 Representation Theory +1611.06995 Probability +1611.07019 +1611.07073 Computational Geometry +1611.07092 Materials Science +1611.07118 Number Theory +1611.07184 Algebraic Geometry +1611.07202 Solar and Stellar Astrophysics +1611.07255 Logic in Computer Science +1611.07311 Materials Science +1611.07378 Statistics Theory +1611.07512 Representation Theory +1611.07521 Computation +1611.07522 Theory +1611.07523 Strongly Correlated Electrons +1611.07529 +1611.07530 +1611.07531 +1611.07534 Theory +1611.07537 Computation +1611.07538 Materials Science +1611.07540 Optics +1611.07541 Data Structures and Algorithms +1611.07543 Group Theory +1611.07544 Computer Vision and Pattern Recognition +1611.07545 Geometric Topology +1611.07547 +1611.07548 Complex Variables +1611.07549 Software Engineering +1611.07550 Dynamical Systems +1611.07551 Probability +1611.07552 +1611.07553 Quantum Gases +1611.07555 Distributed, Parallel, and Cluster Computing +1611.07556 Performance +1611.07557 Theory +1611.07558 Systems and Control +1611.07559 Computer Vision and Pattern Recognition +1611.07560 Software Engineering +1611.07565 Chaotic Dynamics +1611.07567 Artificial Intelligence +1611.07570 +1611.07571 Computer Vision and Pattern Recognition +1611.07573 Computer Vision and Pattern Recognition +1611.07575 Biological Physics +1611.07576 Complex Variables +1611.07577 Fluid Dynamics +1611.07579 Machine Learning +1611.07581 Functional Analysis +1611.07584 Phenomenology +1611.07586 +1611.07589 +1611.07591 Category Theory +1611.07592 Combinatorics +1611.07594 Strongly Correlated Electrons +1611.07597 Differential Geometry +1611.07599 Data Structures and Algorithms +1611.07600 Fluid Dynamics +1611.07601 Networking and Internet Architecture +1611.07604 Solar and Stellar Astrophysics +1611.07605 Computer Science and Game Theory +1611.07606 Analysis of PDEs +1611.07607 Dynamical Systems +1611.07608 Robotics +1611.07609 Optimization and Control +1611.07610 Programming Languages +1611.07611 Classical Physics +1611.07613 Analysis of PDEs +1611.07614 Earth and Planetary Astrophysics +1611.07618 Numerical Analysis +1611.07619 Computer Science and Game Theory +1611.07620 Programming Languages +1611.07621 Logic in Computer Science +1611.07622 Logic in Computer Science +1611.07623 Programming Languages +1611.07624 Software Engineering +1611.07625 Logic in Computer Science +1611.07626 Logic in Computer Science +1611.07627 Software Engineering +1611.07628 Information Theory +1611.07629 Programming Languages +1611.07630 Information Theory +1611.07631 Materials Science +1611.07633 Cryptography and Security +1611.07634 Machine Learning +1611.07636 Computer Science and Game Theory +1611.07638 +1611.07639 Materials Science +1611.07640 Optimization and Control +1611.07641 Information Theory +1611.07646 Number Theory +1611.07647 Number Theory +1611.07649 Cryptography and Security +1611.07650 Robotics +1611.07654 Optics +1611.07656 Geometric Topology +1611.07657 Statistical Mechanics +1611.07658 Physics and Society +1611.07660 Rings and Algebras +1611.07661 Computer Vision and Pattern Recognition +1611.07662 Algebraic Topology +1611.07663 Machine Learning +1611.07664 Quantum Gases +1611.07665 Statistical Mechanics +1611.07667 Classical Analysis and ODEs +1611.07668 Phenomenology +1611.07669 Earth and Planetary Astrophysics +1611.07670 Phenomenology +1611.07671 Algebraic Geometry +1611.07673 Optics +1611.07674 Superconductivity +1611.07675 Computer Vision and Pattern Recognition +1611.07676 Differential Geometry +1611.07677 Quantitative Methods +1611.07678 +1611.07680 Statistical Mechanics +1611.07682 Optimization and Control +1611.07684 Rings and Algebras +1611.07685 Analysis of PDEs +1611.07687 Chemical Physics +1611.07689 Earth and Planetary Astrophysics +1611.07690 Materials Science +1611.07692 Classical Analysis and ODEs +1611.07696 Classical Analysis and ODEs +1611.07697 +1611.07698 Analysis of PDEs +1611.07699 Exactly Solvable and Integrable Systems +1611.07700 Computer Vision and Pattern Recognition +1611.07701 Data Structures and Algorithms +1611.07702 Information Theory +1611.07706 +1611.07709 Computer Vision and Pattern Recognition +1611.07710 Social and Information Networks +1611.07711 Soft Condensed Matter +1611.07712 Statistics Theory +1611.07713 Number Theory +1611.07715 Computer Vision and Pattern Recognition +1611.07718 Computer Vision and Pattern Recognition +1611.07720 Optics +1611.07721 Soft Condensed Matter +1611.07722 Cryptography and Security +1611.07723 High Energy Astrophysical Phenomena +1611.07724 Computational Complexity +1611.07725 Computer Vision and Pattern Recognition +1611.07726 Logic in Computer Science +1611.07728 Dynamical Systems +1611.07730 +1611.07732 Numerical Analysis +1611.07733 Earth and Planetary Astrophysics +1611.07734 Complex Variables +1611.07735 Algebraic Geometry +1611.07736 Materials Science +1611.07738 Emerging Technologies +1611.07739 Disordered Systems and Neural Networks +1611.07740 +1611.07741 Portfolio Management +1611.07743 Machine Learning +1611.07745 Data Structures and Algorithms +1611.07747 +1611.07748 Optics +1611.07750 Optics +1611.07751 Solar and Stellar Astrophysics +1611.07752 Computer Vision and Pattern Recognition +1611.07753 Logic in Computer Science +1611.07754 Soft Condensed Matter +1611.07755 Phenomenology +1611.07756 Phenomenology +1611.07758 Complex Variables +1611.07759 Computer Vision and Pattern Recognition +1611.07761 Differential Geometry +1611.07762 Lattice +1611.07763 Superconductivity +1611.07765 Soft Condensed Matter +1611.07767 Computer Vision and Pattern Recognition +1611.07770 Phenomenology +1611.07771 Algebraic Geometry +1611.07772 Soft Condensed Matter +1611.07773 Mesoscale and Nanoscale Physics +1611.07774 Numerical Analysis +1611.07776 Biomolecules +1611.07778 Phenomenology +1611.07779 +1611.07781 Computer Vision and Pattern Recognition +1611.07782 Networking and Internet Architecture +1611.07784 High Energy Astrophysical Phenomena +1611.07785 Mesoscale and Nanoscale Physics +1611.07786 Data Structures and Algorithms +1611.07787 Instrumentation and Detectors +1611.07788 Statistical Mechanics +1611.07789 Lattice +1611.07790 Information Theory +1611.07791 Computer Vision and Pattern Recognition +1611.07793 Discrete Mathematics +1611.07794 Solar and Stellar Astrophysics +1611.07795 Exactly Solvable and Integrable Systems +1611.07796 Classical Physics +1611.07797 Physics and Society +1611.07798 +1611.07801 Quantitative Methods +1611.07804 Computation and Language +1611.07806 Algebraic Geometry +1611.07808 Computational Geometry +1611.07809 Probability +1611.07811 Information Theory +1611.07814 +1611.07815 Algebraic Geometry +1611.07816 Numerical Analysis +1611.07818 Phenomenology +1611.07819 Distributed, Parallel, and Cluster Computing +1611.07820 +1611.07821 Strongly Correlated Electrons +1611.07824 Multiagent Systems +1611.07825 Optimization and Control +1611.07826 Metric Geometry +1611.07828 Computer Vision and Pattern Recognition +1611.07829 Information Theory +1611.07831 Neurons and Cognition +1611.07834 Differential Geometry +1611.07836 Plasma Physics +1611.07837 Computer Vision and Pattern Recognition +1611.07838 Instrumentation and Methods for Astrophysics +1611.07839 Physics and Society +1611.07840 Number Theory +1611.07842 Operator Algebras +1611.07844 Phenomenology +1611.07847 Cosmology and Nongalactic Astrophysics +1611.07849 Theory +1611.07850 Machine Learning +1611.07851 +1611.07853 Optimization and Control +1611.07854 +1611.07857 Fluid Dynamics +1611.07858 Rings and Algebras +1611.07860 Chemical Physics +1611.07861 Strongly Correlated Electrons +1611.07862 Operating Systems +1611.07863 +1611.07865 Computer Vision and Pattern Recognition +1611.07866 Data Structures and Algorithms +1611.07867 Information Theory +1611.07870 +1611.07871 +1611.07872 Astrophysics of Galaxies +1611.07873 Computation +1611.07875 Analysis of PDEs +1611.07876 Probability +1611.07877 Algebraic Geometry +1611.07878 +1611.07879 Data Structures and Algorithms +1611.07882 K-Theory and Homology +1611.07887 Optimization and Control +1611.07889 Computer Vision and Pattern Recognition +1611.07891 Optimization and Control +1611.07893 Strongly Correlated Electrons +1611.07894 +1611.07895 +1611.07897 Computation and Language +1611.07898 +1611.07899 Combinatorics +1611.07900 Representation Theory +1611.07905 High Energy Astrophysical Phenomena +1611.07907 Functional Analysis +1611.07908 Representation Theory +1611.07910 Cryptography and Security +1611.07911 Applications +1611.07912 History and Philosophy of Physics +1611.07915 Cosmology and Nongalactic Astrophysics +1611.07916 Geometric Topology +1611.07917 Learning +1611.07922 Combinatorics +1611.07924 +1611.07925 Mesoscale and Nanoscale Physics +1611.07926 Materials Science +1611.07927 Materials Science +1611.07929 Analysis of PDEs +1611.07931 Materials Science +1611.07932 Computer Vision and Pattern Recognition +1611.07933 Discrete Mathematics +1611.07934 Experiment +1611.07936 Geometric Topology +1611.07938 Statistical Mechanics +1611.07940 Astrophysics of Galaxies +1611.07941 Computer Vision and Pattern Recognition +1611.07943 Optimization and Control +1611.07944 Analysis of PDEs +1611.07945 Optimization and Control +1611.07946 Emerging Technologies +1611.07948 Disordered Systems and Neural Networks +1611.07949 +1611.07951 History and Philosophy of Physics +1611.07952 +1611.07953 Algebraic Geometry +1611.07954 Computation and Language +1611.07957 Plasma Physics +1611.07962 Neurons and Cognition +1611.07963 +1611.07964 Strongly Correlated Electrons +1611.07967 Optics +1611.07969 Quantum Algebra +1611.07970 Mesoscale and Nanoscale Physics +1611.07971 Information Theory +cond-mat/9804061 Strongly Correlated Electrons +hep-th/0611170 Theory +physics/0102063 Fluid Dynamics +0710.1525 Data Structures and Algorithms +0909.1866 Computational Geometry +0912.0537 Computational Geometry +1105.0398 Computational Geometry +1109.2368 Algebraic Geometry +1111.2448 Group Theory +1301.1663 Differential Geometry +1302.2931 Differential Geometry +1305.7516 General Physics +1307.5880 General Physics +1307.8007 Information Theory +1308.6824 Computational Geometry +1309.6011 Combinatorics +1309.7064 Algebraic Geometry +1401.7569 Optimization and Control +1403.1149 Group Theory +1404.5684 Numerical Analysis +1406.6766 Statistics Theory +1407.2820 Group Theory +1408.1809 Statistics Theory +1408.3105 Algebraic Geometry +1410.6906 Phenomenology +1411.0359 Artificial Intelligence +1411.3198 K-Theory and Homology +1412.1038 +1502.04809 Optimization and Control +1502.07291 Accelerator Physics +1504.03623 Logic +1504.05194 Solar and Stellar Astrophysics +1505.05855 +1506.00516 Algebraic Geometry +1506.01427 Combinatorics +1506.01821 Other Computer Science +1506.02593 Phenomenology +1506.02623 Combinatorics +1506.08127 Mathematical Finance +1507.01066 Databases +1507.01644 Metric Geometry +1507.06584 Theory +1507.08916 Lattice +1508.02189 Optics +1509.02050 Commutative Algebra +1509.02148 Group Theory +1509.02369 Statistical Mechanics +1509.04853 Computer Vision and Pattern Recognition +1509.05388 Classical Analysis and ODEs +1509.06310 Statistics Theory +1509.06367 Biological Physics +1509.06491 +1509.06694 Complex Variables +1509.06841 Learning +1509.06928 Computation and Language +1509.07263 Analysis of PDEs +1509.08384 Numerical Analysis +1510.03215 +1510.03591 Machine Learning +1510.06989 Computation +1511.00531 +1511.01048 Number Theory +1511.01502 Strongly Correlated Electrons +1511.02083 Classical Physics +1511.06260 Logic +1511.07473 Instrumentation and Detectors +1511.09319 Computer Vision and Pattern Recognition +1512.01765 Atomic Physics +1512.02267 Logic +1512.04029 +1512.06680 Superconductivity +1512.06695 Analysis of PDEs +1512.08162 Operator Algebras +1512.08794 High Energy Astrophysical Phenomena +1601.00180 High Energy Astrophysical Phenomena +1601.04167 Analysis of PDEs +1601.05101 Instrumentation and Methods for Astrophysics +1601.05497 Cosmology and Nongalactic Astrophysics +1601.05906 Representation Theory +1601.06723 +1602.00625 Computational Physics +1602.03126 Plasma Physics +1602.04460 High Energy Astrophysical Phenomena +1602.04534 Disordered Systems and Neural Networks +1602.04951 Artificial Intelligence +1602.05032 Discrete Mathematics +1602.05894 Methodology +1602.06778 Computational Geometry +1603.00450 Materials Science +1603.01066 Applications +1603.02395 Quantum Gases +1603.02478 Logic in Computer Science +1603.04675 Materials Science +1603.05672 +1603.07637 Dynamical Systems +1603.08504 Classical Analysis and ODEs +1603.08862 Functional Analysis +1603.09335 Computer Vision and Pattern Recognition +1604.00717 Dynamical Systems +1604.00725 Chaotic Dynamics +1604.01305 Phenomenology +1604.01381 Computational Physics +1604.01438 Phenomenology +1604.01456 Instrumentation and Methods for Astrophysics +1604.01488 Atomic Physics +1604.01535 Theory +1604.01702 Strongly Correlated Electrons +1604.01714 Materials Science +1604.01912 Statistical Mechanics +1604.02109 Information Theory +1604.02385 Instrumentation and Detectors +1604.02798 Materials Science +1604.04446 +1604.05690 Phenomenology +1604.06437 Theory +1604.06574 Information Theory +1604.08176 +1605.00649 Cosmology and Nongalactic Astrophysics +1605.01776 Robotics +1605.01891 +1605.03800 Superconductivity +1605.05249 General Physics +1605.06482 Statistical Finance +1605.08049 Phenomenology +1605.08447 Optics +1606.01513 Operator Algebras +1606.01544 Materials Science +1606.03389 Materials Science +1606.03398 Computation and Language +1606.03990 Disordered Systems and Neural Networks +1606.04174 Accelerator Physics +1606.04720 Networking and Internet Architecture +1606.05466 Theory +1606.06358 Phenomenology +1606.07596 Dynamical Systems +1606.07867 Number Theory +1607.02537 Computer Vision and Pattern Recognition +1607.03856 Computer Vision and Pattern Recognition +1607.04679 Logic +1607.05304 Biological Physics +1607.07619 Astrophysics of Galaxies +1607.07847 Artificial Intelligence +1607.08042 Materials Science +1607.08052 +1607.08330 Theory +1608.01215 Instrumentation and Detectors +1608.01371 Number Theory +1608.02116 Classical Analysis and ODEs +1608.02341 Learning +1608.02923 Logic +1608.03013 Robotics +1608.03089 +1608.03199 General Mathematics +1608.03214 Operator Algebras +1608.03278 Strongly Correlated Electrons +1608.03281 +1608.03284 Theory +1608.03285 +1608.03287 Learning +1608.03290 +1608.03295 Statistical Mechanics +1608.03297 Combinatorics +1608.03298 General Mathematics +1608.03299 Data Structures and Algorithms +1608.03301 Functional Analysis +1608.03302 Computation +1608.03304 Dynamical Systems +1608.03305 Soft Condensed Matter +1608.03306 Strongly Correlated Electrons +1608.03308 Computer Vision and Pattern Recognition +1608.03310 Statistics Theory +1608.03311 Functional Analysis +1608.03312 Functional Analysis +1608.03315 Number Theory +1608.03317 Functional Analysis +1608.03319 Formal Languages and Automata Theory +1608.03320 Formal Languages and Automata Theory +1608.03321 Programming Languages +1608.03322 Distributed, Parallel, and Cluster Computing +1608.03323 Logic in Computer Science +1608.03324 Software Engineering +1608.03325 Logic in Computer Science +1608.03326 Distributed, Parallel, and Cluster Computing +1608.03327 Programming Languages +1608.03328 Number Theory +1608.03332 Geophysics +1608.03335 Optimization and Control +1608.03336 Group Theory +1608.03342 Combinatorics +1608.03343 Applications +1608.03344 Databases +1608.03350 Programming Languages +1608.03352 Computation +1608.03353 Group Theory +1608.03357 Materials Science +1608.03358 Geophysics +1608.03360 Optimization and Control +1608.03361 Geophysics +1608.03363 Geophysics +1608.03364 Quantum Gases +1608.03366 Instrumentation and Methods for Astrophysics +1608.03367 Instrumentation and Methods for Astrophysics +1608.03369 Computer Vision and Pattern Recognition +1608.03371 Social and Information Networks +1608.03374 Computer Vision and Pattern Recognition +1608.03377 Information Theory +1608.03380 Networking and Internet Architecture +1608.03381 General Topology +1608.03382 Number Theory +1608.03387 Quantum Gases +1608.03388 Phenomenology +1608.03389 Analysis of PDEs +1608.03391 Theory +1608.03394 Chaotic Dynamics +1608.03396 Computer Vision and Pattern Recognition +1608.03397 Computer Science and Game Theory +1608.03405 Computers and Society +1608.03406 Algebraic Geometry +1608.03408 Instrumentation and Methods for Astrophysics +1608.03410 Computer Vision and Pattern Recognition +1608.03414 Functional Analysis +1608.03415 Cryptography and Security +1608.03416 Number Theory +1608.03417 Sound +1608.03419 Representation Theory +1608.03422 Functional Analysis +1608.03424 Programming Languages +1608.03425 Neurons and Cognition +1608.03426 Statistical Mechanics +1608.03428 Mathematical Finance +1608.03429 Networking and Internet Architecture +1608.03430 Human-Computer Interaction +1608.03431 Cryptography and Security +1608.03435 Metric Geometry +1608.03436 Chemical Physics +1608.03439 Data Structures and Algorithms +1608.03442 Representation Theory +1608.03444 +1608.03445 Cryptography and Security +1608.03446 Representation Theory +1608.03448 Computation and Language +1608.03450 Optimization and Control +1608.03451 Numerical Analysis +1608.03452 Optimization and Control +1608.03453 Accelerator Physics +1608.03454 Accelerator Physics +1608.03460 Phenomenology +1608.03461 Neurons and Cognition +1608.03462 Computer Vision and Pattern Recognition +1608.03463 Neurons and Cognition +1608.03465 Neurons and Cognition +1608.03466 Phenomenology +1608.03467 Neurons and Cognition +1608.03468 +1608.03473 Functional Analysis +1608.03474 Computer Vision and Pattern Recognition +1608.03475 Computer Science and Game Theory +1608.03479 Soft Condensed Matter +1608.03481 General Physics +1608.03482 Group Theory +1608.03484 Earth and Planetary Astrophysics +1608.03487 Optimization and Control +1608.03488 Dynamical Systems +1608.03489 +1608.03490 Strongly Correlated Electrons +1608.03491 Optimization and Control +1608.03492 +1608.03499 Commutative Algebra +1608.03500 Dynamical Systems +1608.03503 Instrumentation and Detectors +1608.03504 Theory +1608.03505 Rings and Algebras +1608.03508 History and Overview +1608.03510 Analysis of PDEs +1608.03513 Logic +1608.03515 Operator Algebras +1608.03521 General Finance +1608.03522 Number Theory +1608.03524 Numerical Analysis +1608.03528 Complex Variables +1608.03532 Artificial Intelligence +1608.03534 Number Theory +1608.03536 Networking and Internet Architecture +1608.03538 Group Theory +1608.03540 Earth and Planetary Astrophysics +1608.03547 Differential Geometry +1608.03548 Algebraic Topology +1608.03550 +1608.03551 Combinatorics +1608.03554 Group Theory +1608.03556 Databases +1608.03557 Analysis of PDEs +1608.03558 Theory +1608.03559 Phenomenology +1608.03561 Materials Science +1608.03563 Strongly Correlated Electrons +1608.03564 Phenomenology +1608.03567 Representation Theory +1608.03568 Mesoscale and Nanoscale Physics +1608.03569 Human-Computer Interaction +1608.03573 Earth and Planetary Astrophysics +1608.03576 Soft Condensed Matter +1608.03579 Representation Theory +1608.03580 Data Structures and Algorithms +1608.03581 Analysis of PDEs +1608.03582 Materials Science +1608.03584 Probability +1608.03585 Machine Learning +cs/0610092 Computational Geometry +0805.2192 Differential Geometry +1004.3316 Analysis of PDEs +1004.3318 Spectral Theory +1112.4716 Solar and Stellar Astrophysics +1112.4738 Solar and Stellar Astrophysics +1112.4750 Solar and Stellar Astrophysics +1112.4778 Solar and Stellar Astrophysics +1205.1008 Algebraic Geometry +1212.0196 Number Theory +1304.1869 Differential Geometry +1304.2251 Algebraic Geometry +1306.6043 Differential Geometry +1309.2151 Classical Analysis and ODEs +1310.1382 Data Analysis, Statistics and Probability +1310.7369 Algebraic Geometry +1311.2281 Computation +1311.5293 Classical Analysis and ODEs +1401.7688 Materials Science +1403.7688 Dynamical Systems +1404.3249 Data Analysis, Statistics and Probability +1405.1582 Complex Variables +1405.3214 Statistical Mechanics +1406.4129 Astrophysics of Galaxies +1406.7426 Numerical Analysis +1407.2283 Information Theory +1407.6139 Analysis of PDEs +1407.8444 Algebraic Geometry +1408.0517 Databases +1408.2608 Number Theory +1408.6702 Adaptation and Self-Organizing Systems +1409.0676 Algebraic Geometry +1409.5826 Computational Physics +1409.6951 Probability +1410.8195 Group Theory +1411.4761 Dynamical Systems +1411.5905 Geometric Topology +1412.1611 Combinatorics +1412.1631 Soft Condensed Matter +1412.1859 Cryptography and Security +1412.4969 Lattice +1412.5166 Algebraic Geometry +1412.7448 Cryptography and Security +1501.00002 Strongly Correlated Electrons +1501.02250 Logic in Computer Science +1501.07838 Differential Geometry +1503.01600 Probability +1503.02859 Optimization and Control +1503.05943 +1503.06473 Group Theory +1504.04165 Analysis of PDEs +1504.05051 Analysis of PDEs +1505.04573 Pricing of Securities +1505.05587 Number Theory +1506.00680 Formal Languages and Automata Theory +1506.05417 Instrumentation and Detectors +1506.07706 Theory +1506.08778 Statistical Mechanics +1507.01072 Operator Algebras +1507.01379 Algebraic Geometry +1507.01495 Number Theory +1507.01819 Cosmology and Nongalactic Astrophysics +1507.02990 Combinatorics +1507.05357 Dynamical Systems +1507.06340 Operator Algebras +1507.06664 +1507.07745 +1508.02980 Molecular Networks +1508.03584 Strongly Correlated Electrons +1508.05339 +1508.06025 Information Theory +1509.02757 Soft Condensed Matter +1509.02992 Logic +1509.05422 Number Theory +1509.06198 Phenomenology +1509.06585 Computation and Language +1510.00003 Operator Algebras +1510.00548 +1510.01868 Rings and Algebras +1510.03018 Algebraic Geometry +1510.03072 Experiment +1510.03331 Representation Theory +1510.03546 Algebraic Topology +1510.05215 Probability +1511.00042 Materials Science +1511.01984 Systems and Control +1511.06483 Information Theory +1511.07888 Optimization and Control +1511.07899 Differential Geometry +1511.08119 Computer Vision and Pattern Recognition +1512.00768 +1512.01667 +1512.01935 Optics +1512.04242 Probability +1512.04803 +1512.04855 Phenomenology +1512.06374 Mesoscale and Nanoscale Physics +1512.06677 Operator Algebras +1512.07337 Pricing of Securities +1512.07340 Pricing of Securities +1512.07745 Group Theory +1512.07848 Statistics Theory +1601.00963 Physics and Society +1601.00991 Portfolio Management +1601.02108 Strongly Correlated Electrons +1601.02388 Discrete Mathematics +1601.02413 Algebraic Geometry +1601.02910 Instrumentation and Detectors +1601.03446 Atmospheric and Oceanic Physics +1601.05347 Computer Vision and Pattern Recognition +1601.06312 Information Theory +1601.07213 Learning +1602.01917 +1602.02820 Strongly Correlated Electrons +1602.03060 Classical Physics +1602.04382 Logic in Computer Science +1602.05225 Numerical Analysis +1602.06248 +1602.06916 Machine Learning +1602.08124 Distributed, Parallel, and Cluster Computing +1602.08631 Combinatorics +1602.08690 Phenomenology +1602.08762 Experiment +1603.00509 Computer Science and Game Theory +1603.00939 Multiagent Systems +1603.01021 Superconductivity +1603.01495 Number Theory +1603.01526 Strongly Correlated Electrons +1603.02683 Statistical Mechanics +1603.03010 Atomic and Molecular Clusters +1603.03680 High Energy Astrophysical Phenomena +1603.04276 Software Engineering +1603.04378 Algebraic Geometry +1603.04537 Probability +1603.04992 Computer Vision and Pattern Recognition +1603.06021 Computation and Language +1603.06661 Analysis of PDEs +1603.09114 Computer Vision and Pattern Recognition +1603.09382 Learning +1603.09424 Theory +1603.09452 Mesoscale and Nanoscale Physics +1604.01088 Neural and Evolutionary Computing +1604.01513 Algebraic Geometry +1604.03353 Mesoscale and Nanoscale Physics +1604.03762 Probability +1604.03822 Materials Science +1604.05555 Logic in Computer Science +1604.05916 Strongly Correlated Electrons +1604.07246 Disordered Systems and Neural Networks +1604.07372 Mesoscale and Nanoscale Physics +1604.07544 Lattice +1604.08205 Astrophysics of Galaxies +1604.08238 Cosmology and Nongalactic Astrophysics +1604.08424 Lattice +1604.08498 Materials Science +1605.00683 +1605.02964 Computer Vision and Pattern Recognition +1605.03608 General Topology +1605.04256 High Energy Astrophysical Phenomena +1605.05081 Experiment +1605.05143 Algebraic Geometry +1605.08110 Computer Vision and Pattern Recognition +1605.08693 Optics +1606.00659 +1606.01367 Plasma Physics +1606.01845 +1606.02876 Mesoscale and Nanoscale Physics +1606.03750 Optics +1606.05506 Computer Vision and Pattern Recognition +1606.05598 Other Statistics +1606.07282 Methodology +1606.07640 Theory +1606.07644 +1606.07713 +1607.00567 Machine Learning +1607.00794 Phenomenology +1607.01650 Medical Physics +1607.01866 +1607.04707 High Energy Astrophysical Phenomena +1607.04859 Analysis of PDEs +1607.05596 Distributed, Parallel, and Cluster Computing +1607.06343 Databases +1607.06471 Astrophysics of Galaxies +1607.06750 Theory +1607.07200 Discrete Mathematics +1607.07321 Instrumentation and Detectors +1607.07403 Social and Information Networks +1607.07421 Computational Geometry +1607.07470 Robotics +1607.07881 Astrophysics of Galaxies +1607.08066 Probability +1607.08150 Algebraic Geometry +1607.08254 Optimization and Control +1607.08353 Materials Science +1607.08377 Soft Condensed Matter +1607.08403 Analysis of PDEs +1607.08414 Computer Vision and Pattern Recognition +1607.08440 Dynamical Systems +1607.08491 Superconductivity +1607.08608 +1607.08620 Instrumentation and Methods for Astrophysics +1607.08621 Cosmology and Nongalactic Astrophysics +1607.08622 Phenomenology +1607.08625 Soft Condensed Matter +1607.08626 Materials Science +1607.08627 Materials Science +1607.08629 +1607.08634 Cryptography and Security +1607.08635 Computer Vision and Pattern Recognition +1607.08638 History and Philosophy of Physics +1607.08639 Mesoscale and Nanoscale Physics +1607.08641 Combinatorics +1607.08642 Materials Science +1607.08644 Robotics +1607.08647 Statistics Theory +1607.08648 Number Theory +1607.08650 Analysis of PDEs +1607.08656 Applications +1607.08661 +1607.08663 Mesoscale and Nanoscale Physics +1607.08665 Robotics +1607.08666 Number Theory +1607.08667 +1607.08669 Probability +1607.08674 Probability +1607.08675 Plasma Physics +1607.08678 Applications +1607.08681 Databases +1607.08683 Probability +1607.08684 Probability +1607.08686 K-Theory and Homology +1607.08687 Logic +1607.08689 Strongly Correlated Electrons +1607.08695 Social and Information Networks +1607.08704 Representation Theory +1607.08705 Algebraic Geometry +1607.08706 Mesoscale and Nanoscale Physics +1607.08708 Strongly Correlated Electrons +1607.08709 Analysis of PDEs +1607.08710 Numerical Analysis +1607.08711 Dynamical Systems +1607.08712 Information Theory +1607.08713 Number Theory +1607.08718 Analysis of PDEs +1607.08719 Theory +1607.08721 Differential Geometry +1607.08725 Computation and Language +1607.08727 Phenomenology +1607.08728 Optimization and Control +1607.08735 Analysis of PDEs +1607.08737 Information Theory +1607.08739 Materials Science +1607.08741 Atomic Physics +1607.08742 Combinatorics +1607.08745 Number Theory +1607.08748 Dynamical Systems +1607.08751 Instrumentation and Methods for Astrophysics +1607.08752 +1607.08753 +1607.08758 Algebraic Geometry +1607.08762 Soft Condensed Matter +1607.08764 Computer Vision and Pattern Recognition +1607.08765 Instrumentation and Methods for Astrophysics +1607.08766 Probability +1607.08769 Operator Algebras +1607.08770 Earth and Planetary Astrophysics +1607.08771 Differential Geometry +1607.08772 Mesoscale and Nanoscale Physics +1607.08774 Cryptography and Security +1607.08775 Phenomenology +1607.08780 Combinatorics +1607.08782 Combinatorics +1607.08783 Materials Science +1607.08789 Superconductivity +1607.08791 Other Computer Science +1607.08792 Differential Geometry +1607.08794 Probability +1607.08795 Representation Theory +1607.08796 Exactly Solvable and Integrable Systems +1607.08802 Analysis of PDEs +1607.08803 Analysis of PDEs +1607.08805 Data Structures and Algorithms +1607.08807 Computers and Society +1607.08809 Computational Geometry +1607.08810 Machine Learning +1607.08815 Algebraic Geometry +1607.08816 Number Theory +1607.08822 Computer Vision and Pattern Recognition +1607.08824 Instrumentation and Detectors +1607.08826 Statistics Theory +1607.08827 Applications +1607.08831 Mesoscale and Nanoscale Physics +1607.08832 Combinatorics +1607.08837 Combinatorics +1607.08838 +1607.08839 Classical Analysis and ODEs +1607.08841 Information Theory +1607.08843 Systems and Control +1607.08844 Astrophysics of Galaxies +1607.08845 Computation +1607.08848 Solar and Stellar Astrophysics +1607.08850 Combinatorics +1607.08851 Analysis of PDEs +1607.08852 Analysis of PDEs +1607.08855 Complex Variables +1607.08856 Geophysics +1607.08857 Strongly Correlated Electrons +1607.08858 Algebraic Topology +1607.08859 Optics +1607.08863 Computer Science and Game Theory +1607.08867 Fluid Dynamics +1607.08871 +1607.08872 Cosmology and Nongalactic Astrophysics +1607.08874 Instrumentation and Methods for Astrophysics +1607.08875 Numerical Analysis +1607.08877 Machine Learning +1607.08878 Neural and Evolutionary Computing +1607.08880 Algebraic Geometry +1607.08882 Methodology +1607.08883 Information Retrieval +1607.08885 Computation and Language +1607.08886 Biomolecules +1607.08889 Combinatorics +1607.08890 Optics +1607.08891 Machine Learning +1607.08896 Optimization and Control +1607.08898 Artificial Intelligence +1607.08899 Group Theory +1607.08901 Phenomenology +1607.08902 +1607.08903 Analysis of PDEs +1607.08904 Combinatorics +1607.08905 Computer Vision and Pattern Recognition +1607.08908 Quantum Algebra +1607.08909 Probability +1607.08910 Physics and Society +0910.5527 Representation Theory +1001.4030 Dynamical Systems +1004.2902 Optics +1009.4203 Mesoscale and Nanoscale Physics +1010.1490 Probability +1010.4679 Mesoscale and Nanoscale Physics +1011.6026 Geometric Topology +1012.3896 Neurons and Cognition +1012.4218 Symplectic Geometry +1101.1069 Symplectic Geometry +1102.0989 Computer Science and Game Theory +1102.2169 Geometric Topology +1102.3160 Symplectic Geometry +1103.6263 Geometric Topology +1107.2256 Computational Complexity +1202.2282 Dynamical Systems +1203.6863 Probability +1204.1011 Soft Condensed Matter +1206.3767 Spectral Theory +1207.5005 +1208.6091 Logic +1212.3219 General Physics +1304.4506 +1305.0250 +1307.5394 Differential Geometry +1311.2352 Rings and Algebras +1312.7832 Logic +1401.7464 Phenomenology +1402.4393 +1402.4799 Information Theory +1403.4418 Dynamical Systems +1403.4539 Computational Complexity +1404.1105 Differential Geometry +1404.5163 Number Theory +1404.7496 Theory +1405.4059 Biological Physics +1405.4586 Commutative Algebra +1405.5785 Group Theory +1406.0900 Physics and Society +1406.5620 Algebraic Topology +1407.0981 Networking and Internet Architecture +1407.6720 Atomic Physics +1408.0037 Algebraic Geometry +1408.2796 Theory +1408.6896 Neurons and Cognition +1409.0507 Physics and Society +1409.1262 Analysis of PDEs +1411.1960 Differential Geometry +1412.0714 Representation Theory +1412.4146 +1412.4434 Strongly Correlated Electrons +1412.6761 Formal Languages and Automata Theory +1501.00327 Combinatorics +1501.04671 Applications +1501.05522 +1501.05869 Functional Analysis +1501.07511 Algebraic Geometry +1502.01006 Number Theory +1502.01640 Algebraic Topology +1502.01765 Biological Physics +1502.03788 Dynamical Systems +1502.05095 +1503.00124 Quantum Algebra +1503.00433 Atomic Physics +1503.02967 Materials Science +1503.05740 +1503.06501 Dynamical Systems +1503.07155 Dynamical Systems +1503.07650 Fluid Dynamics +1504.00225 Theory +1504.01143 Combinatorics +1504.02343 Number Theory +1504.02669 Algebraic Geometry +1504.04144 Solar and Stellar Astrophysics +1504.06684 Differential Geometry +1504.06729 Data Structures and Algorithms +1505.02219 Algebraic Topology +1505.02293 Analysis of PDEs +1505.03621 Superconductivity +1505.04363 Machine Learning +1505.07742 Dynamical Systems +1506.00973 Theory +1506.01246 Representation Theory +1506.01527 Physics and Society +1506.03831 Group Theory +1506.05136 Mesoscale and Nanoscale Physics +1506.05347 Dynamical Systems +1506.07800 Methodology +1507.02106 Quantum Gases +1507.02647 Mesoscale and Nanoscale Physics +1507.02850 Phenomenology +1507.05552 Cosmology and Nongalactic Astrophysics +1507.08563 Computation +1507.08682 Materials Science +1508.00242 Complex Variables +1508.00546 Atomic Physics +1508.00752 Logic +1508.03266 +1508.03268 Theory +1508.03541 Optics +1508.03576 Solar and Stellar Astrophysics +1508.03884 Computation +1508.04133 Instrumentation and Detectors +1508.04858 +1508.05882 +1508.06192 Optics +1508.06276 High Energy Astrophysical Phenomena +1509.02076 Theory +1509.03215 Theory +1509.05216 +1509.05871 Cosmology and Nongalactic Astrophysics +1509.07458 +1509.07662 Mesoscale and Nanoscale Physics +1509.08478 Theory +1510.00027 Numerical Analysis +1510.04908 Computer Vision and Pattern Recognition +1510.07353 Strongly Correlated Electrons +1510.07585 Atomic Physics +1510.07839 Networking and Internet Architecture +1510.07934 Strongly Correlated Electrons +1510.08355 Strongly Correlated Electrons +1511.00670 Phenomenology +1511.00979 Phenomenology +1511.02652 Instrumentation and Methods for Astrophysics +1511.03176 Statistical Mechanics +1511.03684 Mesoscale and Nanoscale Physics +1511.03923 +1511.04477 +1511.04480 Algebraic Geometry +1511.04778 Materials Science +1511.05846 Medical Physics +1511.05945 Dynamical Systems +1511.08427 Mesoscale and Nanoscale Physics +1511.08807 High Energy Astrophysical Phenomena +1511.09332 Category Theory +1512.00134 Earth and Planetary Astrophysics +1512.00250 Artificial Intelligence +1512.00269 Mesoscale and Nanoscale Physics +1512.01392 Quantum Gases +1512.02069 Analysis of PDEs +1512.02129 Mesoscale and Nanoscale Physics +1512.02151 Strongly Correlated Electrons +1512.02391 Strongly Correlated Electrons +1512.02518 Commutative Algebra +1512.02558 Analysis of PDEs +1512.03365 Dynamical Systems +1512.04309 +1512.04886 +1512.05257 Theory +1512.05737 Lattice +1512.07186 +1512.07242 Phenomenology +1512.07605 +1512.07691 Probability +1512.08940 Mesoscale and Nanoscale Physics +1512.09037 Theory +1601.00328 Solar and Stellar Astrophysics +1601.00510 Strongly Correlated Electrons +1601.00739 +1601.01172 Theory +1601.01954 Commutative Algebra +1601.03267 Phenomenology +1601.04239 Materials Science +1601.04688 Algebraic Topology +1601.05067 Strongly Correlated Electrons +1601.05095 Earth and Planetary Astrophysics +1601.05325 Theory +1601.05570 Materials Science +1601.05605 Mesoscale and Nanoscale Physics +1601.05687 Materials Science +1601.05827 Theory +1601.06082 Atomic Physics +1601.06132 +1601.06546 +1601.06613 Soft Condensed Matter +1601.07022 Optics +1601.07188 Astrophysics of Galaxies +1601.07247 Mesoscale and Nanoscale Physics +1601.07451 +1601.07662 Other Condensed Matter +1601.07928 +1601.08211 Theory +1602.00053 Earth and Planetary Astrophysics +1602.00404 +1602.00805 Physics and Society +1602.00842 Solar and Stellar Astrophysics +1602.00988 Experiment +1602.01455 +1602.01469 Mesoscale and Nanoscale Physics +1602.01931 Strongly Correlated Electrons +1602.02054 Superconductivity +1602.03660 Mesoscale and Nanoscale Physics +1602.04057 Probability +1602.04170 Phenomenology +1602.04367 +1602.04531 High Energy Astrophysical Phenomena +1602.05485 Instrumentation and Methods for Astrophysics +1602.05529 High Energy Astrophysical Phenomena +1602.05624 Quantum Gases +1602.06255 Astrophysics of Galaxies +1602.06655 Materials Science +1602.06759 High Energy Astrophysical Phenomena +1602.06875 Strongly Correlated Electrons +1602.06988 Earth and Planetary Astrophysics +1602.07294 Pattern Formation and Solitons +1602.07525 Mesoscale and Nanoscale Physics +1602.07770 Phenomenology +1602.07823 Optics +1602.08110 +1602.08578 Instrumentation and Detectors +1602.08707 Phenomenology +1602.08955 +1602.08973 +1602.09099 Phenomenology +1602.09141 Astrophysics of Galaxies +1603.00408 +1603.00726 Optics +1603.00942 Mesoscale and Nanoscale Physics +1603.01376 Applications +1603.01395 Strongly Correlated Electrons +1603.01431 Machine Learning +1603.01578 Mesoscale and Nanoscale Physics +1603.01915 Astrophysics of Galaxies +1603.02051 +1603.02191 Instrumentation and Methods for Astrophysics +1603.02404 High Energy Astrophysical Phenomena +1603.02619 Materials Science +1603.02794 Earth and Planetary Astrophysics +1603.03296 Solar and Stellar Astrophysics +1603.03696 Phenomenology +1603.03852 Solar and Stellar Astrophysics +1603.04170 +1603.04216 Theory +1603.04304 Solar and Stellar Astrophysics +1603.04363 Optics +1603.04772 Theory +1603.04889 +1603.04902 +1603.05587 Methodology +1603.05684 High Energy Astrophysical Phenomena +1603.05709 Soft Condensed Matter +1603.05826 +1603.06023 Mesoscale and Nanoscale Physics +1603.06166 Cosmology and Nongalactic Astrophysics +1603.06509 +1603.06980 Phenomenology +1603.07083 +1603.07258 +1603.07670 Theory +1603.07729 Cosmology and Nongalactic Astrophysics +1603.08066 Materials Science +1603.08072 Cosmology and Nongalactic Astrophysics +1603.08088 Probability +1603.08729 +1603.08849 Phenomenology +1603.08961 Multiagent Systems +1603.09033 +1603.09040 Phenomenology +1603.09222 Experiment +1603.09312 Atomic Physics +1603.09350 Phenomenology +1603.09426 Physics and Society +1604.00302 Solar and Stellar Astrophysics +1604.00413 Astrophysics of Galaxies +1604.00458 Quantum Gases +1604.00509 Phenomenology +1604.00722 Theory +1604.00751 Materials Science +1604.00961 Strongly Correlated Electrons +1604.00973 Accelerator Physics +1604.01025 Phenomenology +1604.01027 Astrophysics of Galaxies +1604.01192 High Energy Astrophysical Phenomena +1604.01388 Phenomenology +1604.01410 Cosmology and Nongalactic Astrophysics +1604.01777 High Energy Astrophysical Phenomena +1604.01859 Chaotic Dynamics +1604.01948 Phenomenology +1604.02075 Geometric Topology +1604.02220 Experiment +1604.02227 +1604.02282 Statistical Mechanics +1604.03472 Strongly Correlated Electrons +1604.03652 +1604.03665 Theory +1604.03754 Probability +1604.03773 Computer Science and Game Theory +1604.03820 Disordered Systems and Neural Networks +1604.04059 +1604.04229 Astrophysics of Galaxies +1604.04244 Statistical Mechanics +1604.04537 Solar and Stellar Astrophysics +1604.04550 Instrumentation and Detectors +1604.04924 Computational Physics +1604.05050 Solar and Stellar Astrophysics +1604.05718 Solar and Stellar Astrophysics +1604.05724 Mesoscale and Nanoscale Physics +1604.05859 Superconductivity +1604.05911 Astrophysics of Galaxies +1604.06027 Optics +1604.06130 Data Analysis, Statistics and Probability +1604.06320 High Energy Astrophysical Phenomena +1604.06821 Solar and Stellar Astrophysics +1604.07373 Quantum Gases +1604.07415 +1604.07594 Atomic Physics +1604.07609 Astrophysics of Galaxies +1604.07624 Astrophysics of Galaxies +1604.07662 Mesoscale and Nanoscale Physics +1604.07776 Phenomenology +1604.07825 High Energy Astrophysical Phenomena +1604.07826 Astrophysics of Galaxies +1604.07831 High Energy Astrophysical Phenomena +1604.07835 Phenomenology +1604.07939 Multimedia +1604.08063 Quantum Gases +1604.08196 Phenomenology +1604.08217 Theory +1604.08279 Earth and Planetary Astrophysics +1604.08483 Solar and Stellar Astrophysics +1604.08554 Other Condensed Matter +1604.08597 Astrophysics of Galaxies +1604.08888 Phenomenology +1605.00098 Mesoscale and Nanoscale Physics +1605.00106 Statistical Mechanics +1605.00360 High Energy Astrophysical Phenomena +1605.00594 Lattice +1605.00622 Phenomenology +1605.01123 Phenomenology +1605.01293 Statistical Mechanics +1605.01322 Algebraic Topology +1605.01334 High Energy Astrophysical Phenomena +1605.01412 Cosmology and Nongalactic Astrophysics +1605.01653 Theory +1605.01682 Earth and Planetary Astrophysics +1605.01712 Cosmology and Nongalactic Astrophysics +1605.01818 Materials Science +1605.01938 +1605.02161 Astrophysics of Galaxies +1605.02732 Astrophysics of Galaxies +1605.02791 Solar and Stellar Astrophysics +1605.03182 Astrophysics of Galaxies +1605.03239 Solar and Stellar Astrophysics +1605.03589 Astrophysics of Galaxies +1605.03595 Solar and Stellar Astrophysics +1605.03623 Materials Science +1605.03869 Atomic Physics +1605.04220 +1605.05210 Atomic Physics +1605.05642 Astrophysics of Galaxies +1605.05827 Atomic Physics +1605.06088 Phenomenology +1605.06189 Astrophysics of Galaxies +1605.06320 Optics +1605.06350 Cosmology and Nongalactic Astrophysics +1605.06403 Astrophysics of Galaxies +1605.06591 Solar and Stellar Astrophysics +1605.06723 Analysis of PDEs +1605.07048 Solar and Stellar Astrophysics +1605.07738 Phenomenology +1605.07835 Phenomenology +1605.08026 Astrophysics of Galaxies +1605.08111 Atomic Physics +1605.08250 High Energy Astrophysical Phenomena +1605.08356 Superconductivity +1605.08449 Theory +1605.08459 Soft Condensed Matter +1605.08530 Geometric Topology +1605.08537 Instrumentation and Detectors +1605.08556 Earth and Planetary Astrophysics +1605.08710 Analysis of PDEs +1605.09011 Systems and Control +1605.09236 General Physics +1605.09406 Astrophysics of Galaxies +1605.09623 Dynamical Systems +1606.00276 Lattice +1606.00657 Biological Physics +1606.00834 Solar and Stellar Astrophysics +1606.01441 Databases +1606.01710 Mesoscale and Nanoscale Physics +1606.01892 Materials Science +1606.01999 Mesoscale and Nanoscale Physics +1606.02168 Cosmology and Nongalactic Astrophysics +1606.02193 Networking and Internet Architecture +1606.02286 Instrumentation and Detectors +1606.02412 Instrumentation and Methods for Astrophysics +1606.02871 Statistical Finance +1606.03170 Materials Science +1606.03213 High Energy Astrophysical Phenomena +1606.03957 Instrumentation and Methods for Astrophysics +1606.03988 Probability +1606.04107 Astrophysics of Galaxies +1606.04914 Materials Science +1606.05028 Solar and Stellar Astrophysics +1606.05171 Phenomenology +1606.05247 Earth and Planetary Astrophysics +1606.05418 Methodology +1606.05495 Number Theory +1606.05777 Distributed, Parallel, and Cluster Computing +1606.06626 Physics and Society +1606.07953 Computation and Language +1606.08310 Solar and Stellar Astrophysics +1606.08613 Chaotic Dynamics +1606.08622 Earth and Planetary Astrophysics +1606.08700 High Energy Astrophysical Phenomena +1606.08771 Astrophysics of Galaxies +1606.09278 Robotics +1606.09344 +1607.00333 Probability +1607.00984 Soft Condensed Matter +1607.00995 Strongly Correlated Electrons +1607.01187 Analysis of PDEs +1607.01248 General Finance +1607.01272 Information Theory +1607.01280 Numerical Analysis +1607.01364 Solar and Stellar Astrophysics +1607.01444 Social and Information Networks +1607.01647 +1607.01669 Accelerator Physics +1607.02172 Differential Geometry +1607.02449 Superconductivity +1607.02477 Astrophysics of Galaxies +1607.02502 Social and Information Networks +1607.02580 Group Theory +1607.02602 Representation Theory +1607.02654 Computer Vision and Pattern Recognition +1607.02673 +1607.02733 Physics and Society +1607.02806 Optimization and Control +1607.02856 Materials Science +1607.02874 Fluid Dynamics +1607.02898 Plasma Physics +1607.03102 Instrumentation and Detectors +1607.03104 +1607.03105 Computer Vision and Pattern Recognition +1607.03106 +1607.03109 Cosmology and Nongalactic Astrophysics +1607.03131 Optics +1607.03139 Logic +1607.03140 Cryptography and Security +1607.03141 Materials Science +1607.03144 Cosmology and Nongalactic Astrophysics +1607.03152 Cosmology and Nongalactic Astrophysics +1607.03155 Cosmology and Nongalactic Astrophysics +1607.03156 Algebraic Geometry +1607.03157 Algebraic Geometry +1607.03160 +1607.03161 Computer Science and Game Theory +1607.03164 Computer Vision and Pattern Recognition +1607.03166 Probability +1607.03167 Symplectic Geometry +1607.03170 Materials Science +1607.03172 Probability +1607.03176 Theory +1607.03177 Plasma Physics +1607.03180 Quantitative Methods +1607.03182 Learning +1607.03183 Learning +1607.03188 Computation +1607.03191 Information Theory +1607.03193 Optimization and Control +1607.03195 Optimization and Control +1607.03196 Number Theory +1607.03198 Strongly Correlated Electrons +1607.03199 Number Theory +1607.03200 Digital Libraries +1607.03201 Materials Science +1607.03202 Machine Learning +1607.03204 Machine Learning +1607.03206 Probability +1607.03208 General Topology +1607.03211 Probability +1607.03212 Category Theory +1607.03213 +1607.03214 Functional Analysis +1607.03215 Algebraic Geometry +1607.03217 Dynamical Systems +1607.03220 Geometric Topology +1607.03224 Instrumentation and Methods for Astrophysics +1607.03226 Computer Vision and Pattern Recognition +1607.03227 Information Theory +1607.03234 Combinatorics +1607.03237 Representation Theory +1607.03239 Networking and Internet Architecture +1607.03240 Computer Vision and Pattern Recognition +1607.03241 Experiment +1607.03243 Networking and Internet Architecture +1607.03244 Instrumentation and Methods for Astrophysics +1607.03245 Software Engineering +1607.03246 Biological Physics +1607.03247 Chemical Physics +1607.03249 +1607.03250 Neural and Evolutionary Computing +1607.03251 Classical Analysis and ODEs +1607.03252 Computational Engineering, Finance, and Science +1607.03253 Biomolecules +1607.03254 Networking and Internet Architecture +1607.03255 Numerical Analysis +1607.03257 Multimedia +1607.03258 Software Engineering +1607.03260 Information Theory +1607.03261 Number Theory +1607.03265 Complex Variables +1607.03266 Soft Condensed Matter +1607.03270 Information Theory +1607.03271 Representation Theory +1607.03273 Cryptography and Security +1607.03274 Information Retrieval +1607.03276 Physics and Society +1607.03277 Solar and Stellar Astrophysics +1607.03278 Numerical Analysis +1607.03280 Information Theory +1607.03281 Experiment +1607.03284 Computer Vision and Pattern Recognition +1607.03286 Logic in Computer Science +1607.03287 Materials Science +1607.03288 Number Theory +1607.03289 Computer Vision and Pattern Recognition +1607.03290 Artificial Intelligence +1607.03292 Data Structures and Algorithms +1607.03295 Numerical Analysis +1607.03300 Machine Learning +1607.03302 Methodology +1607.03305 Computer Vision and Pattern Recognition +1607.03307 Multiagent Systems +1607.03310 Symplectic Geometry +1607.03312 Probability +1607.03313 Machine Learning +1607.03315 Logic +1607.03317 Neural and Evolutionary Computing +1607.03320 Social and Information Networks +1607.03321 Solar and Stellar Astrophysics +1607.03322 Rings and Algebras +1607.03323 Experiment +1607.03324 History and Philosophy of Physics +1607.03327 Numerical Analysis +1607.03331 Superconductivity +1607.03332 Differential Geometry +1607.03333 Computer Vision and Pattern Recognition +1607.03339 High Energy Astrophysical Phenomena +1607.03340 Multiagent Systems +1607.03345 Probability +1607.03349 Information Theory +1607.03350 Phenomenology +1607.03351 Spectral Theory +1607.03352 Mesoscale and Nanoscale Physics +1607.03353 Information Theory +1607.03354 Computer Science and Game Theory +1607.03355 Logic in Computer Science +1607.03356 Computer Science and Game Theory +1607.03357 Mesoscale and Nanoscale Physics +1607.03358 High Energy Astrophysical Phenomena +1607.03359 Soft Condensed Matter +1607.03360 Learning +1607.03366 Human-Computer Interaction +1607.03369 Distributed, Parallel, and Cluster Computing +1607.03370 Space Physics +1607.03372 Combinatorics +1607.03374 Phenomenology +1607.03378 Information Theory +1607.03380 Information Theory +1607.03384 +1607.03386 Astrophysics of Galaxies +1607.03391 Optics +1607.03393 Quantum Algebra +1607.03401 Human-Computer Interaction +1607.03402 General Physics +1607.03404 Geometric Topology +1607.03405 Algebraic Topology +1607.03408 Networking and Internet Architecture +1607.03410 Probability +1607.03413 General Physics +1607.03414 Number Theory +1607.03417 Human-Computer Interaction +1607.03418 Cosmology and Nongalactic Astrophysics +1607.03420 Classical Physics +1607.03423 Algebraic Geometry +1607.03424 Geometric Topology +1607.03425 Computer Vision and Pattern Recognition +1607.03426 Optimization and Control +1607.03430 Risk Management +1607.03431 Algebraic Geometry +1607.03433 Soft Condensed Matter +1607.03435 Differential Geometry +1607.03439 +1607.03440 Earth and Planetary Astrophysics +1607.03441 +1607.03443 Networking and Internet Architecture +1607.03444 Group Theory +1607.03445 Programming Languages +1607.03450 Distributed, Parallel, and Cluster Computing +1607.03451 Differential Geometry +1607.03454 Numerical Analysis +1607.03456 Learning +1607.03458 Classical Analysis and ODEs +1607.03459 Instrumentation and Methods for Astrophysics +1607.03460 Solar and Stellar Astrophysics +1607.03464 Computer Vision and Pattern Recognition +1607.03465 Dynamical Systems +1607.03468 Computer Vision and Pattern Recognition +1607.03469 Phenomenology +1607.03475 Machine Learning +1607.03477 Superconductivity +1607.03478 +1607.03481 Optics +1607.03482 +1007.3703 Solar and Stellar Astrophysics +1012.4117 Combinatorics +1104.3842 Probability +1109.0663 General Physics +1203.2460 Algebraic Topology +1204.0377 Representation Theory +1207.2344 Algebraic Topology +1209.1245 Strongly Correlated Electrons +1210.1811 Strongly Correlated Electrons +1212.6773 Digital Libraries +1303.1588 History and Philosophy of Physics +1303.2038 Strongly Correlated Electrons +1307.3782 Neural and Evolutionary Computing +1308.0976 Mesoscale and Nanoscale Physics +1309.5314 Discrete Mathematics +1310.5299 Strongly Correlated Electrons +1311.2274 +1312.2481 General Mathematics +1402.3493 Strongly Correlated Electrons +1403.4912 Astrophysics of Galaxies +1404.1877 Operator Algebras +1404.5269 Exactly Solvable and Integrable Systems +1406.7118 +1407.6194 Differential Geometry +1408.4889 Mesoscale and Nanoscale Physics +1409.1402 Probability +1410.0572 Artificial Intelligence +1410.1330 +1410.1413 +1410.1710 Systems and Control +1410.5086 Dynamical Systems +1410.6843 Statistics Theory +1411.1355 Analysis of PDEs +1411.6125 +1411.6856 Classical Analysis and ODEs +1412.0560 +1412.2885 Probability +1501.05462 Digital Libraries +1501.07133 Information Theory +1501.07906 Phenomenology +1503.00508 Differential Geometry +1503.02296 +1503.03271 Phenomenology +1503.03799 +1503.04545 Analysis of PDEs +1503.08427 Materials Science +1504.00368 Theory +1504.00795 Complex Variables +1504.01198 Mesoscale and Nanoscale Physics +1504.02279 Representation Theory +1504.03507 Materials Science +1504.05339 Plasma Physics +1504.06904 Spectral Theory +1505.00047 Numerical Analysis +1505.03624 +1505.04047 Theory +1505.06472 Methodology +1506.02548 Combinatorics +1506.04036 Information Theory +1506.05523 Cosmology and Nongalactic Astrophysics +1506.05690 Social and Information Networks +1506.08020 Quantum Gases +1507.01375 Phenomenology +1507.01767 Data Structures and Algorithms +1507.01821 +1507.02858 +1507.04966 +1507.05969 Cosmology and Nongalactic Astrophysics +1507.07296 Instrumentation and Methods for Astrophysics +1507.08133 Pattern Formation and Solitons +1507.08484 Quantitative Methods +1507.08813 Strongly Correlated Electrons +1508.00166 Symplectic Geometry +1508.00550 Analysis of PDEs +1508.01209 +1508.04528 Soft Condensed Matter +1508.05272 +1509.00501 History and Philosophy of Physics +1509.01998 Emerging Technologies +1509.02672 High Energy Astrophysical Phenomena +1509.05811 +1509.05819 Algebraic Geometry +1509.05985 Theory +1509.06843 Materials Science +1509.07181 Computational Geometry +1509.07388 Numerical Analysis +1510.00204 Phenomenology +1510.00288 Theory +1510.00384 Computer Vision and Pattern Recognition +1510.00508 +1510.00979 Strongly Correlated Electrons +1510.01797 Category Theory +1510.03035 Computational Engineering, Finance, and Science +1510.06137 Theory +1511.00083 Neurons and Cognition +1511.00293 +1511.00780 Optics +1511.02621 High Energy Astrophysical Phenomena +1511.03027 Number Theory +1511.03171 Quantum Algebra +1511.03901 Analysis of PDEs +1511.04524 Computer Vision and Pattern Recognition +1511.05355 Computation +1511.06654 Computer Vision and Pattern Recognition +1511.07309 Biological Physics +1511.07418 Group Theory +1511.08137 Phenomenology +1512.00485 Analysis of PDEs +1512.00721 Numerical Analysis +1512.01337 Computation and Language +1512.01563 Learning +1512.01596 Neural and Evolutionary Computing +1512.02140 Artificial Intelligence +1512.02513 High Energy Astrophysical Phenomena +1512.03318 Strongly Correlated Electrons +1512.03399 Superconductivity +1512.04650 Computation and Language +1512.05112 Statistical Mechanics +1512.06864 Strongly Correlated Electrons +1512.07133 Classical Physics +1512.07501 Instrumentation and Detectors +1512.08480 +1601.01272 Computation and Language +1601.02129 Computer Vision and Pattern Recognition +1601.02658 Probability +1601.03251 Superconductivity +1601.04835 Atomic Physics +1601.05110 Phenomenology +1601.06088 High Energy Astrophysical Phenomena +1601.06297 Algebraic Topology +1601.07391 Phenomenology +1601.07807 Mesoscale and Nanoscale Physics +1602.01339 Quantum Gases +1602.02064 Materials Science +1602.02567 Theory +1602.03750 Theory +1602.03769 +1602.03835 Chemical Physics +1602.04381 Metric Geometry +1602.05885 Applications +1602.07125 Computer Vision and Pattern Recognition +1603.02531 Phenomenology +1603.02659 +1603.03615 +1603.03775 Solar and Stellar Astrophysics +1603.04449 Instrumentation and Methods for Astrophysics +1603.04690 Discrete Mathematics +1603.05054 Strongly Correlated Electrons +1603.05906 Space Physics +1603.05920 Atomic Physics +1603.06978 High Energy Astrophysical Phenomena +1603.08180 +1603.08218 Mesoscale and Nanoscale Physics +1603.09536 Software Engineering +1604.00723 Optimization and Control +1604.01633 Mesoscale and Nanoscale Physics +1604.01725 +1604.01795 Physics and Society +1604.02962 Mesoscale and Nanoscale Physics +1604.03195 Computational Engineering, Finance, and Science +1604.03343 Learning +1604.04004 Computer Vision and Pattern Recognition +1604.04280 Genomics +1604.04314 Geometric Topology +1604.04545 Astrophysics of Galaxies +1604.04707 Computational Geometry +1604.04950 +1604.05253 Statistical Mechanics +1604.05778 Experiment +1604.05822 Number Theory +1604.06071 Instrumentation and Methods for Astrophysics +1604.06174 Learning +1604.06331 Theory +1604.06397 Computer Vision and Pattern Recognition +1604.06451 Instrumentation and Detectors +1604.06452 Data Structures and Algorithms +1604.06453 Differential Geometry +1604.06457 Theory +1604.06458 Instrumentation and Methods for Astrophysics +1604.06471 +1604.06474 Statistics Theory +1604.06477 Space Physics +1604.06481 Computer Vision and Pattern Recognition +1604.06483 Logic in Computer Science +1604.06484 Artificial Intelligence +1604.06485 Materials Science +1604.06487 Differential Geometry +1604.06488 History and Philosophy of Physics +1604.06489 History and Philosophy of Physics +1604.06490 History and Philosophy of Physics +1604.06491 History and Philosophy of Physics +1604.06492 General Mathematics +1604.06499 Combinatorics +1604.06501 Optics +1604.06504 Combinatorics +1604.06505 +1604.06507 K-Theory and Homology +1604.06508 Robotics +1604.06512 Dynamical Systems +1604.06513 Combinatorics +1604.06515 Methodology +1604.06516 Dynamical Systems +1604.06517 Computational Physics +1604.06522 Probability +1604.06528 +1604.06531 Information Theory +1604.06535 Probability +1604.06540 Optimization and Control +1604.06544 Theory +1604.06545 Soft Condensed Matter +1604.06546 Statistical Mechanics +1604.06547 Analysis of PDEs +1604.06549 Chemical Physics +1604.06551 Algebraic Topology +1604.06554 Combinatorics +1604.06558 Robotics +1604.06561 +1604.06565 Popular Physics +1604.06567 Information Theory +1604.06570 Computer Vision and Pattern Recognition +1604.06571 Information Theory +1604.06575 Materials Science +1604.06576 +1604.06577 Social and Information Networks +1604.06581 Distributed, Parallel, and Cluster Computing +1604.06583 Computation and Language +1604.06586 Number Theory +1604.06590 High Energy Astrophysical Phenomena +1604.06591 Subcellular Processes +1604.06592 Logic +1604.06594 Probability +1604.06597 Geometric Topology +1604.06598 Chemical Physics +1604.06600 Formal Languages and Automata Theory +1604.06601 Cosmology and Nongalactic Astrophysics +1604.06606 Number Theory +1604.06607 Neural and Evolutionary Computing +1604.06608 Fluid Dynamics +1604.06610 Differential Geometry +1604.06612 Probability +1604.06613 Phenomenology +1604.06614 Artificial Intelligence +1604.06616 Analysis of PDEs +1604.06617 Computational Complexity +1604.06619 +1604.06622 Probability +1604.06623 Phenomenology +1604.06624 Chemical Physics +1604.06625 Fluid Dynamics +1604.06628 Other Condensed Matter +1604.06632 Other Condensed Matter +1604.06635 Computation and Language +1604.06641 Artificial Intelligence +1604.06643 Probability +1604.06646 Computer Vision and Pattern Recognition +1604.06647 Theory +1604.06648 Computation and Language +1604.06649 Chemical Physics +1604.06650 Computation and Language +1604.06651 Applications +1604.06652 +1604.06655 Complex Variables +1604.06657 Differential Geometry +1604.06658 Accelerator Physics +1604.06659 Number Theory +1604.06660 Quantitative Methods +1604.06664 Probability +1604.06670 Chaotic Dynamics +1604.06673 +1604.06674 General Physics +1604.06675 Rings and Algebras +1604.06676 Rings and Algebras +1604.06678 Representation Theory +1604.06681 Classical Physics +1604.06683 +1604.06686 General Mathematics +1604.06687 Data Structures and Algorithms +1604.06690 +1604.06692 General Physics +1604.06695 Geometric Topology +1604.06706 +1604.06707 Discrete Mathematics +1604.06710 Artificial Intelligence +1604.06711 Analysis of PDEs +1604.06714 Systems and Control +1604.06715 Artificial Intelligence +1604.06716 Methodology +1604.06721 Artificial Intelligence +1604.06726 Optics +1604.06727 Machine Learning +1604.06730 Neural and Evolutionary Computing +1604.06732 Optics +1604.06734 Distributed, Parallel, and Cluster Computing +1604.06735 Analysis of PDEs +1604.06737 Learning +1604.06738 Classical Physics +1604.06739 Instrumentation and Methods for Astrophysics +1604.06741 Probability +1604.06743 Learning +1604.06744 Networking and Internet Architecture +1604.06745 General Physics +1604.06747 Logic in Computer Science +1604.06751 Neural and Evolutionary Computing +1604.06752 Logic in Computer Science +1604.06759 Chemical Physics +1604.06761 Statistical Mechanics +1604.06762 Dynamical Systems +1604.06764 Formal Languages and Automata Theory +1604.06766 Software Engineering +1604.06769 Phenomenology +1604.06772 Phenomenology +1604.06774 Classical Physics +1604.06775 History and Philosophy of Physics +1604.06777 Computational Engineering, Finance, and Science +1604.06781 Software Engineering +1604.06782 Differential Geometry +1604.06784 Medical Physics +1604.06787 Artificial Intelligence +1604.06788 Medical Physics +1604.06789 Differential Geometry +1604.06790 Artificial Intelligence +1604.06793 Superconductivity +0805.1069 General Topology +0809.1071 Dynamical Systems +0809.1193 Dynamical Systems +0809.2019 Dynamical Systems +0809.3754 Dynamical Systems +0812.1239 Dynamical Systems +0904.2944 General Topology +1103.2233 Solar and Stellar Astrophysics +1106.0080 Theory +1106.1309 Theory +1108.6250 Algebraic Geometry +1109.5475 Optics +1202.4375 Optimization and Control +1203.0030 Systems and Control +1205.0995 Phenomenology +1205.4287 Algebraic Geometry +1206.1231 Probability +1208.0269 Algebraic Geometry +1208.3978 Combinatorics +1211.1138 Optimization and Control +1301.7636 Algebraic Geometry +1304.5522 General Physics +1306.3397 Probability +1306.4443 Differential Geometry +1308.4022 Methodology +1312.3897 Probability +1401.4502 Combinatorics +1402.2960 Combinatorics +1403.2423 Algebraic Geometry +1404.3523 Materials Science +1405.1634 +1405.4087 Representation Theory +1405.6928 Metric Geometry +1405.7515 Materials Science +1405.7911 Cosmology and Nongalactic Astrophysics +1406.3632 +1406.6710 Optics +1406.7219 Differential Geometry +1407.2872 Group Theory +1408.1634 General Physics +1408.1767 Optimization and Control +1408.4057 Statistics Theory +1409.3951 Group Theory +1409.4981 Phenomenology +1410.3020 Algebraic Geometry +1410.4703 +1410.7937 Geometric Topology +1411.0129 Computation and Language +1411.0131 Phenomenology +1411.4321 Cell Behavior +1411.4410 Rings and Algebras +1412.0613 Materials Science +1412.1774 Combinatorics +1412.3141 Algebraic Topology +1501.00153 Information Theory +1501.02331 +1501.05765 Optics +1501.07643 Materials Science +1502.00355 Distributed, Parallel, and Cluster Computing +1502.01297 Quantum Algebra +1502.02106 Multiagent Systems +1502.04012 +1502.05267 +1502.05695 +1502.07955 Analysis of PDEs +1503.06523 +1504.00399 Plasma Physics +1504.06910 Chemical Physics +1504.08018 Optics +1505.02044 Numerical Analysis +1505.03409 Data Analysis, Statistics and Probability +1505.04747 Quantum Gases +1505.07791 Mesoscale and Nanoscale Physics +1505.07793 Operator Algebras +1506.00962 Experiment +1506.01526 Instrumentation and Methods for Astrophysics +1506.02699 Machine Learning +1506.03783 Optics +1506.04052 Dynamical Systems +1506.04079 Information Theory +1506.05403 Dynamical Systems +1506.06751 Quantum Gases +1506.06810 Dynamical Systems +1507.00175 Strongly Correlated Electrons +1507.00323 Analysis of PDEs +1507.00548 Rings and Algebras +1507.01602 Cosmology and Nongalactic Astrophysics +1507.02358 +1507.03292 Learning +1507.04498 Plasma Physics +1507.04660 Probability +1507.07959 Optics +1507.08568 Classical Analysis and ODEs +1507.08986 Optics +1508.00529 Superconductivity +1508.01206 Analysis of PDEs +1508.02338 +1508.03304 +1508.04160 Strongly Correlated Electrons +1508.06263 +1508.06868 Experiment +1508.07732 Physics and Society +1509.00009 +1509.00314 +1509.01200 Physics and Society +1509.01456 General Mathematics +1509.01744 Soft Condensed Matter +1509.01902 Strongly Correlated Electrons +1509.02483 Populations and Evolution +1509.02821 General Physics +1509.02903 +1509.03679 Astrophysics of Galaxies +1509.07112 +1509.07562 Cosmology and Nongalactic Astrophysics +1509.07677 Astrophysics of Galaxies +1509.07696 +1510.00333 Solar and Stellar Astrophysics +1510.02118 +1510.03373 +1510.03808 Disordered Systems and Neural Networks +1510.04013 Phenomenology +1510.04287 Cosmology and Nongalactic Astrophysics +1510.04760 Computational Physics +1510.06215 Group Theory +1510.06769 Human-Computer Interaction +1510.07481 Phenomenology +1510.07691 Phenomenology +1510.07760 Optics +1511.00817 Superconductivity +1511.01344 Networking and Internet Architecture +1511.01511 Astrophysics of Galaxies +1511.01851 +1511.02198 General Physics +1511.03973 +1511.04445 High Energy Astrophysical Phenomena +1511.07060 Cosmology and Nongalactic Astrophysics +1511.07194 Theory +1511.07386 Computer Vision and Pattern Recognition +1511.08976 Classical Analysis and ODEs +1512.00626 Strongly Correlated Electrons +1512.00960 +1512.02200 Materials Science +1512.04289 Mesoscale and Nanoscale Physics +1512.04384 Combinatorics +1512.05260 Astrophysics of Galaxies +1512.05642 Instrumentation and Detectors +1512.05705 Multimedia +1512.06138 Materials Science +1512.06148 Instrumentation and Detectors +1512.06457 Combinatorics +1512.07751 Mesoscale and Nanoscale Physics +1512.08011 +1512.09159 Phenomenology +1512.09303 Functional Analysis +1601.00145 Metric Geometry +1601.00712 Portfolio Management +1601.00801 Mesoscale and Nanoscale Physics +1601.01421 Information Theory +1601.01450 Instrumentation and Detectors +1601.01863 Optics +1601.02128 Symplectic Geometry +1601.02672 Number Theory +1601.02674 Commutative Algebra +1601.02704 Analysis of PDEs +1601.03202 Logic in Computer Science +1601.03317 Computation and Language +1601.04759 Lattice +1601.05070 Representation Theory +1601.05123 Number Theory +1601.05371 Analysis of PDEs +1601.05561 Computers and Society +1601.05685 Analysis of PDEs +1601.05792 Cryptography and Security +1601.05793 Information Theory +1601.05794 Combinatorics +1601.05796 Pattern Formation and Solitons +1601.05813 Superconductivity +1601.05815 Phenomenology +1601.05818 Quantum Gases +1601.05819 Superconductivity +1601.05820 Methodology +1601.05822 Materials Science +1601.05823 Instrumentation and Detectors +1601.05824 Graphics +1601.05825 Functional Analysis +1601.05829 +1601.05830 Rings and Algebras +1601.05831 +1601.05833 Cryptography and Security +1601.05836 Plasma Physics +1601.05837 Software Engineering +1601.05839 Information Theory +1601.05844 Earth and Planetary Astrophysics +1601.05848 Atomic Physics +1601.05849 Materials Science +1601.05850 Software Engineering +1601.05851 Operating Systems +1601.05854 Materials Science +1601.05858 Astrophysics of Galaxies +1601.05861 Computer Vision and Pattern Recognition +1601.05863 Combinatorics +1601.05864 Theory +1601.05865 Mesoscale and Nanoscale Physics +1601.05868 Information Theory +1601.05870 Computation +1601.05873 Information Theory +1601.05876 Astrophysics of Galaxies +1601.05879 Information Theory +1601.05880 Information Theory +1601.05882 Analysis of PDEs +1601.05884 General Topology +1601.05886 Methodology +1601.05887 Methodology +1601.05889 Systems and Control +1601.05892 +1601.05893 Artificial Intelligence +1601.05896 Mesoscale and Nanoscale Physics +1601.05897 General Topology +1601.05900 Learning +1601.05908 Networking and Internet Architecture +1601.05914 Methodology +1601.05915 Chemical Physics +1601.05917 Information Theory +1601.05918 Number Theory +1601.05920 Materials Science +1601.05921 Information Theory +1601.05922 Applications +1601.05924 Number Theory +1601.05928 Information Theory +1601.05929 Information Theory +1601.05934 +1601.05936 Computation and Language +1601.05939 Number Theory +1601.05940 Methodology +1601.05941 Number Theory +1601.05942 Complex Variables +1601.05943 Representation Theory +1601.05950 Analysis of PDEs +1601.05952 Information Retrieval +1601.05956 +1601.05960 Geophysics +1601.05969 Mesoscale and Nanoscale Physics +1601.05970 Computational Physics +1601.05974 Algebraic Geometry +1601.05976 Software Engineering +1601.05978 Discrete Mathematics +1601.05980 +1601.05981 Plasma Physics +1601.05988 Combinatorics +1601.05989 Discrete Mathematics +1601.05994 Computer Vision and Pattern Recognition +1601.05996 Disordered Systems and Neural Networks +1601.05998 Lattice +1601.06000 Statistics Theory +1601.06003 Statistics Theory +1601.06004 Theory +1601.06008 Sound +1601.06009 Information Theory +1601.06010 High Energy Astrophysical Phenomena +1601.06011 Information Theory +1601.06013 Dynamical Systems +1601.06015 Materials Science +1601.06016 Information Theory +1601.06019 Analysis of PDEs +1601.06022 Strongly Correlated Electrons +1601.06024 Instrumentation and Methods for Astrophysics +1601.06027 Algebraic Geometry +1601.06030 Combinatorics +1601.06031 Combinatorics +1601.06032 Computer Vision and Pattern Recognition +1601.06034 Differential Geometry +1601.06035 Learning +1601.06036 Phenomenology +1601.06040 Distributed, Parallel, and Cluster Computing +1601.06041 Computer Vision and Pattern Recognition +1601.06042 Optimization and Control +1601.06043 Networking and Internet Architecture +1601.06045 Superconductivity +1601.06047 Genomics +1601.06051 Dynamical Systems +1601.06055 Information Theory +1601.06057 Computer Vision and Pattern Recognition +1601.06060 Distributed, Parallel, and Cluster Computing +1601.06069 Artificial Intelligence +1601.06071 Learning +1601.06076 Computational Engineering, Finance, and Science +1601.06079 Probability +1601.06081 Computation and Language +1601.06084 +1601.06085 +1601.06087 Computer Vision and Pattern Recognition +1601.06089 +1601.06093 Dynamical Systems +1601.06095 Information Theory +1601.06097 Biological Physics +1601.06099 Analysis of PDEs +1601.06100 +1601.06102 Information Theory +1601.06105 Machine Learning +1601.06106 +1601.06107 Strongly Correlated Electrons +1601.06108 Artificial Intelligence +1601.06110 Rings and Algebras +1601.06111 Superconductivity +1601.06112 Instrumentation and Detectors +1601.06119 Cryptography and Security +1601.06122 Classical Analysis and ODEs +1601.06123 Classical Analysis and ODEs +1601.06124 Classical Analysis and ODEs +1601.06125 Classical Analysis and ODEs +1601.06126 Classical Analysis and ODEs +1601.06128 Human-Computer Interaction +1601.06129 Classical Analysis and ODEs +1601.06130 Classical Analysis and ODEs +1601.06131 High Energy Astrophysical Phenomena +1601.06134 +1601.06135 Classical Analysis and ODEs +1601.06136 Symplectic Geometry +1601.06138 Classical Analysis and ODEs +1601.06139 Differential Geometry +1601.06140 Phenomenology +1601.06142 Numerical Analysis +1601.06143 Biological Physics +1601.06151 Instrumentation and Methods for Astrophysics +1601.06152 +1601.06153 Information Theory +math/9201289 Dynamical Systems +math/9201290 Dynamical Systems +0705.4004 Analysis of PDEs +0706.0190 General Physics +0805.4657 Differential Geometry +0910.0390 Analysis of PDEs +1104.0892 Differential Geometry +1110.3465 General Mathematics +1110.6573 +1112.5817 Analysis of PDEs +1203.0469 +1212.3142 Materials Science +1305.6560 Number Theory +1307.0552 Applications +1307.1176 Analysis of PDEs +1311.5933 Physics and Society +1312.5504 Analysis of PDEs +1403.3597 Rings and Algebras +1403.6795 Logic +1404.6030 Numerical Analysis +1406.5675 Learning +1407.3285 Soft Condensed Matter +1407.5780 Classical Analysis and ODEs +1407.6815 Metric Geometry +1408.3796 Commutative Algebra +1409.0473 Computation and Language +1409.0811 Strongly Correlated Electrons +1409.3127 +1409.4728 Mesoscale and Nanoscale Physics +1409.6224 Number Theory +1410.4873 Analysis of PDEs +1410.6461 Differential Geometry +1411.2122 Combinatorics +1412.3130 Group Theory +1412.6894 Number Theory +1412.6958 Dynamical Systems +1412.8027 Commutative Algebra +1412.8459 Algebraic Topology +1501.01937 Applications +1501.02862 Functional Analysis +1501.04706 Computational Geometry +1502.02077 Learning +1502.03085 Number Theory +1502.03729 Optimization and Control +1502.03785 Logic +1502.04201 Classical Analysis and ODEs +1502.04359 Mathematical Finance +1502.07302 Complex Variables +1503.04136 +1503.05880 Algebraic Geometry +1503.07687 Optics +1503.08662 Materials Science +1503.09176 +1504.00587 Dynamical Systems +1504.02587 Logic in Computer Science +1504.02597 Software Engineering +1504.05513 Formal Languages and Automata Theory +1505.01079 Algebraic Geometry +1505.01821 Cosmology and Nongalactic Astrophysics +1505.03540 Computer Vision and Pattern Recognition +1506.00441 Algebraic Topology +1506.01909 +1506.03747 Atomic Physics +1506.04158 Machine Learning +1506.05785 Quantum Algebra +1506.07016 Theory +1506.07118 Distributed, Parallel, and Cluster Computing +1506.07639 Disordered Systems and Neural Networks +1507.03843 Information Theory +1507.05612 Logic in Computer Science +1507.06422 Soft Condensed Matter +1507.06908 Group Theory +1507.08755 +1508.00365 Quantum Gases +1508.05269 Physics and Society +1508.05470 Mathematical Software +1508.06505 Statistics Theory +1508.06762 +1508.07246 Systems and Control +1508.07284 +1508.07295 Algebraic Geometry +1509.00488 Combinatorics +1509.01193 +1509.03343 Classical Analysis and ODEs +1509.04994 Optics +1509.05768 +1509.08813 Dynamical Systems +1509.08818 Dynamical Systems +1509.09229 Mesoscale and Nanoscale Physics +1510.00011 Biological Physics +1510.01335 Theory +1510.01650 Cosmology and Nongalactic Astrophysics +1510.02697 Phenomenology +1510.03882 Number Theory +1510.04357 Dynamical Systems +1510.05960 Metric Geometry +1510.07018 Theory +1510.07890 Materials Science +1510.08230 Probability +1511.01302 Strongly Correlated Electrons +1511.03610 Experiment +1511.03891 Instrumentation and Detectors +1511.05118 Social and Information Networks +1511.05734 Theory +1511.05795 Theory +1511.07026 +1511.08105 Theory +1511.08665 +1511.09412 Quantum Algebra +1512.00104 +1512.00380 Classical Analysis and ODEs +1512.03710 Statistical Mechanics +1512.04391 Phenomenology +1512.04768 Phenomenology +1512.06046 Operator Algebras +1512.06445 Theory +1512.06452 Machine Learning +1512.06560 Phenomenology +1512.06750 Mesoscale and Nanoscale Physics +1512.06985 Strongly Correlated Electrons +1512.07165 Phenomenology +1512.07876 Learning +1512.08818 Experiment +1601.00502 Algebraic Geometry +1601.05327 Exactly Solvable and Integrable Systems +1601.05777 Phenomenology +1601.06210 Materials Science +1601.06998 Probability +1601.07289 Statistical Mechanics +1601.07492 Statistical Mechanics +1601.07842 Phenomenology +1601.08167 Solar and Stellar Astrophysics +1602.01700 Disordered Systems and Neural Networks +1602.02261 Artificial Intelligence +1602.03051 Mesoscale and Nanoscale Physics +1602.03947 Quantum Gases +1602.04786 General Physics +1602.04858 Numerical Analysis +1602.05909 Discrete Mathematics +1602.06449 Geometric Topology +1602.07547 Mesoscale and Nanoscale Physics +1603.01430 Atomic Physics +1603.01740 Data Structures and Algorithms +1603.02299 Symplectic Geometry +1603.02496 Cosmology and Nongalactic Astrophysics +1603.02903 Theory +1603.03421 Phenomenology +1603.05604 Analysis of PDEs +1603.05607 Strongly Correlated Electrons +1603.05642 Optimization and Control +1603.06536 Experiment +1603.08158 Theory +1604.00605 Phenomenology +1604.00893 Representation Theory +1604.01429 Data Structures and Algorithms +1604.01575 Statistical Mechanics +1604.01595 Formal Languages and Automata Theory +1604.01664 Astrophysics of Galaxies +1604.01999 Learning +1604.02841 Theory +1604.02954 Rings and Algebras +1604.03263 +1604.03818 Numerical Analysis +1604.04069 Differential Geometry +1604.04162 Group Theory +1604.04412 Chaotic Dynamics +1604.04562 Computation and Language +1604.04849 Probability +1604.06398 Computation +1604.06935 Algebraic Geometry +1604.06967 Symbolic Computation +1604.07980 Instrumentation and Methods for Astrophysics +1604.08158 Combinatorics +1605.00035 Analysis of PDEs +1605.00093 Strongly Correlated Electrons +1605.00226 Operator Algebras +1605.00469 Fluid Dynamics +1605.01552 Solar and Stellar Astrophysics +1605.02600 +1605.04352 Probability +1605.05270 +1605.05293 Soft Condensed Matter +1605.05432 Differential Geometry +1605.05441 Computation +1605.05524 Statistics Theory +1605.05573 Computation and Language +1605.05610 Numerical Analysis +1605.05645 Lattice +1605.05843 Networking and Internet Architecture +1605.05904 Computer Vision and Pattern Recognition +1605.05924 Discrete Mathematics +1605.05944 Data Structures and Algorithms +1605.05954 Phenomenology +1605.06043 Human-Computer Interaction +1605.06062 Soft Condensed Matter +1605.06093 Distributed, Parallel, and Cluster Computing +1605.06107 Mesoscale and Nanoscale Physics +1605.06108 Cell Behavior +1605.06110 Materials Science +1605.06112 Solar and Stellar Astrophysics +1605.06120 Theory +1605.06122 Computation +1605.06126 Symbolic Computation +1605.06127 Rings and Algebras +1605.06132 Exactly Solvable and Integrable Systems +1605.06134 Information Theory +1605.06135 Quantum Gases +1605.06138 Numerical Analysis +1605.06139 Combinatorics +1605.06143 Databases +1605.06145 Group Theory +1605.06146 Strongly Correlated Electrons +1605.06147 Numerical Analysis +1605.06149 Chemical Physics +1605.06150 Networking and Internet Architecture +1605.06153 Operator Algebras +1605.06154 Digital Libraries +1605.06158 Combinatorics +1605.06160 +1605.06162 Dynamical Systems +1605.06164 Logic +1605.06165 Analysis of PDEs +1605.06167 Social and Information Networks +1605.06170 Learning +1605.06172 Combinatorics +1605.06174 Materials Science +1605.06176 Populations and Evolution +1605.06177 Computer Vision and Pattern Recognition +1605.06178 Materials Science +1605.06180 Cryptography and Security +1605.06181 Learning +1605.06182 Computer Vision and Pattern Recognition +1605.06184 Algebraic Geometry +1605.06186 Materials Science +1605.06188 Combinatorics +1605.06190 Social and Information Networks +1605.06192 Solar and Stellar Astrophysics +1605.06193 Applications +1605.06194 Earth and Planetary Astrophysics +1605.06195 General Topology +1605.06199 Soft Condensed Matter +1605.06200 Differential Geometry +1605.06203 Optimization and Control +1605.06205 Instrumentation and Methods for Astrophysics +1605.06207 Populations and Evolution +1605.06208 Populations and Evolution +1605.06209 Mesoscale and Nanoscale Physics +1605.06211 Computer Vision and Pattern Recognition +1605.06213 +1605.06214 Rings and Algebras +1605.06215 Graphics +1605.06216 Information Theory +1605.06220 Machine Learning +1605.06222 Algebraic Topology +1605.06223 Complex Variables +1605.06226 Phenomenology +1605.06229 Algebraic Geometry +1605.06230 Algebraic Geometry +1605.06234 Algebraic Geometry +1605.06236 Computers and Society +1605.06238 Computers and Society +1605.06242 Digital Libraries +1605.06243 Materials Science +1605.06245 Software Engineering +1605.06246 Numerical Analysis +1605.06247 Dynamical Systems +1605.06248 Differential Geometry +1605.06249 Social and Information Networks +1605.06251 Functional Analysis +1605.06253 Astrophysics of Galaxies +1605.06254 Differential Geometry +1605.06257 Differential Geometry +1605.06259 Rings and Algebras +1605.06260 +1605.06263 Commutative Algebra +1605.06264 Probability +1605.06266 Algebraic Topology +1605.06267 Combinatorics +1605.06269 +1605.06274 Instrumentation and Methods for Astrophysics +1605.06275 Information Theory +1605.06277 Instrumentation and Methods for Astrophysics +1605.06280 Computational Physics +1605.06282 Fluid Dynamics +1605.06285 Networking and Internet Architecture +1605.06287 Dynamical Systems +1605.06288 Numerical Analysis +1605.06289 Software Engineering +1605.06295 Differential Geometry +1605.06297 Probability +1605.06300 Phenomenology +1605.06301 Probability +1605.06302 Probability +1605.06303 Pattern Formation and Solitons +1605.06304 Social and Information Networks +1605.06305 General Physics +1605.06308 Physics and Society +1605.06309 Populations and Evolution +1605.06312 General Physics +1605.06318 Optics +1605.06319 Computation and Language +1605.06321 Combinatorics +1605.06322 Social and Information Networks +1605.06325 Computer Vision and Pattern Recognition +1605.06326 Physics and Society +1605.06327 Data Structures and Algorithms +1605.06328 Numerical Analysis +1605.06330 Representation Theory +1605.06332 Numerical Analysis +1605.06333 History and Overview +1605.06336 Machine Learning +1605.06338 Materials Science +1605.06340 Earth and Planetary Astrophysics +1605.06341 Chemical Physics +1605.06344 Algebraic Geometry +1605.06345 Optics +1605.06349 Probability +1605.06352 Strongly Correlated Electrons +1605.06354 Computers and Society +1605.06355 Strongly Correlated Electrons +1605.06357 +1605.06358 Materials Science +1605.06360 Combinatorics +1605.06361 Combinatorics +1605.06362 Metric Geometry +1605.06363 Commutative Algebra +1605.06364 Cosmology and Nongalactic Astrophysics +1605.06365 Dynamical Systems +1605.06366 Theory +1605.06368 Social and Information Networks +1605.06373 Analysis of PDEs +1605.06374 Dynamical Systems +1605.06377 Learning +1605.06379 Biomolecules +1605.06380 Materials Science +1605.06381 Mathematical Software +1605.06382 Analysis of PDEs +1605.06385 Algebraic Geometry +1605.06387 Combinatorics +1605.06388 Phenomenology +1605.06394 Learning +1605.06396 Information Theory +1605.06397 Methodology +1605.06399 Distributed, Parallel, and Cluster Computing +1605.06401 Classical Analysis and ODEs +1605.06402 Computer Vision and Pattern Recognition +1605.06404 Functional Analysis +1605.06405 Networking and Internet Architecture +1605.06408 Soft Condensed Matter +1605.06417 Computer Vision and Pattern Recognition +1605.06421 Learning +1605.06424 Databases +1605.06427 +1605.06428 Quantum Algebra +1605.06429 Mathematical Finance +1605.06430 Populations and Evolution +1605.06433 Astrophysics of Galaxies +1605.06434 Materials Science +1605.06435 Phenomenology +1605.06437 Computer Vision and Pattern Recognition +1605.06439 Learning +1605.06441 Dynamical Systems +1605.06448 +1605.06450 Learning +1605.06452 Optics +1605.06453 General Topology +1605.06454 +1605.06455 +1605.06457 Computer Vision and Pattern Recognition +1605.06462 Physics and Society +1605.06463 +1605.06465 Computer Vision and Pattern Recognition +1605.06466 Cryptography and Security +1605.06467 Networking and Internet Architecture +1605.06469 Fluid Dynamics +1605.06470 Soft Condensed Matter +1605.06471 Statistical Mechanics +1605.06472 Soft Condensed Matter +1605.06473 +1605.06478 Probability +1605.06480 Atmospheric and Oceanic Physics +1605.06483 Hardware Architecture +1605.06486 Distributed, Parallel, and Cluster Computing +1605.06491 Physics and Society +1605.06492 Optimization and Control +1605.06494 Accelerator Physics +hep-lat/0407017 Lattice +0802.0099 Phenomenology +0902.2774 Formal Languages and Automata Theory +1101.1192 +1101.1280 +1101.1282 +1101.2086 +1101.3884 +1106.4590 Classical Analysis and ODEs +1106.4859 +1109.3421 Materials Science +1109.4969 Geophysics +1112.0074 Algebraic Geometry +1203.3820 Phenomenology +1207.3796 High Energy Astrophysical Phenomena +1209.1055 +1210.4289 Programming Languages +1212.2454 Combinatorics +1301.0973 Combinatorics +1302.0521 Combinatorics +1303.3083 Combinatorics +1303.3347 Combinatorics +1305.2482 Algebraic Geometry +1306.2365 Methodology +1307.7539 Dynamical Systems +1308.5204 Theory +1310.1285 Computation and Language +1311.3681 Algebraic Topology +1311.6002 Combinatorics +1312.6856 Geometric Topology +1403.5060 Optimization and Control +1403.5825 Statistical Mechanics +1403.7211 Lattice +1404.4838 Algebraic Geometry +1404.5465 Statistics Theory +1405.5590 Programming Languages +1406.1108 Probability +1406.1910 Networking and Internet Architecture +1406.5566 +1406.5724 Logic +1406.6183 Analysis of PDEs +1406.6739 Representation Theory +1407.1552 +1407.6457 Representation Theory +1408.0590 Instrumentation and Detectors +1408.3544 Optics +1408.4068 Geometric Topology +1409.1450 +1409.3182 +1410.5023 Combinatorics +1411.5267 Materials Science +1412.3287 Differential Geometry +1412.7012 Machine Learning +1501.00210 Atomic Physics +1501.06565 Mesoscale and Nanoscale Physics +1502.00170 General Topology +1502.02511 Computational Engineering, Finance, and Science +1502.05551 Other Computer Science +1503.00888 Algebraic Topology +1503.03516 Earth and Planetary Astrophysics +1503.04766 +1503.04899 Networking and Internet Architecture +1503.05972 Computers and Society +1503.06913 Methodology +1504.01776 Algebraic Geometry +1504.02020 +1504.02813 Methodology +1504.03950 +1504.05041 Combinatorics +1504.07388 Combinatorics +1505.02061 Metric Geometry +1505.04174 Number Theory +1505.06602 Representation Theory +1505.06898 Populations and Evolution +1506.00296 +1506.04654 Computer Vision and Pattern Recognition +1506.06472 Learning +1506.08280 Metric Geometry +1507.00257 Databases +1507.02028 +1507.03329 Commutative Algebra +1507.05380 Superconductivity +1507.05502 Disordered Systems and Neural Networks +1507.05527 Programming Languages +1507.07161 Networking and Internet Architecture +1507.07267 Information Theory +1508.00014 K-Theory and Homology +1508.01687 Analysis of PDEs +1508.02020 Combinatorics +1508.02252 +1508.02704 Algebraic Geometry +1508.03039 Number Theory +1508.06448 +1508.07215 Astrophysics of Galaxies +1508.07338 +1509.00447 General Mathematics +1509.00882 Methodology +1509.04310 +1509.04563 Physics and Society +1509.05071 Statistical Mechanics +1509.06063 Algebraic Geometry +1509.06352 Probability +1510.01456 +1510.01678 Analysis of PDEs +1510.03817 Differential Geometry +1510.05625 Soft Condensed Matter +1510.05959 Statistical Mechanics +1511.00642 Representation Theory +1511.02407 Computer Vision and Pattern Recognition +1511.02801 Data Structures and Algorithms +1511.03616 Optimization and Control +1511.04404 Computer Vision and Pattern Recognition +1511.04629 Information Theory +1511.05616 Computer Vision and Pattern Recognition +1511.05727 Probability +1511.06216 Representation Theory +1511.06706 Mesoscale and Nanoscale Physics +1511.06943 Risk Management +1511.07509 Number Theory +1511.07791 Materials Science +1511.07984 Materials Science +1511.08936 Networking and Internet Architecture +1512.00950 +1512.01280 Dynamical Systems +1512.01600 Statistical Mechanics +1512.01617 Statistics Theory +1512.01684 Analysis of PDEs +1512.01852 Dynamical Systems +1512.01877 Quantum Algebra +1512.02464 Algebraic Geometry +1512.02763 Mesoscale and Nanoscale Physics +1512.03287 Materials Science +1512.04763 Phenomenology +1512.06068 Mesoscale and Nanoscale Physics +1512.07821 Statistical Mechanics +1512.07993 Strongly Correlated Electrons +1512.08052 +1512.08186 Superconductivity +1512.08639 +1601.00726 Fluid Dynamics +1601.01357 Geometric Topology +1601.01625 +1601.03793 Information Theory +1601.04294 Logic in Computer Science +1601.04305 Instrumentation and Detectors +1601.04445 Analysis of PDEs +1601.04581 Experiment +1601.05204 Mesoscale and Nanoscale Physics +1601.05594 Information Theory +1601.05843 Analysis of PDEs +1601.05948 Analysis of PDEs +1601.06046 Theory +1601.06198 Logic in Computer Science +1601.06413 Quantum Gases +1601.06761 Phenomenology +1601.06978 Information Theory +1602.00368 Differential Geometry +1602.01154 Computer Science and Game Theory +1602.01458 Information Theory +1602.02036 +1602.02608 Geometric Topology +1602.02792 Populations and Evolution +1602.03299 Geophysics +1602.03700 Algebraic Geometry +1602.03729 Programming Languages +1602.05945 Atomic Physics +1602.07265 Learning +1602.08267 Theory +1602.08918 Phenomenology +1603.00643 Metric Geometry +1603.01387 +1603.02177 Group Theory +1603.03820 Distributed, Parallel, and Cluster Computing +1603.04671 High Energy Astrophysical Phenomena +1603.05134 Combinatorics +1603.05632 Analysis of PDEs +1603.06418 +1603.06909 Mesoscale and Nanoscale Physics +1603.07656 Classical Analysis and ODEs +1603.07814 Statistical Mechanics +1603.08071 Computer Vision and Pattern Recognition +1604.01089 +1604.02573 Methodology +1604.03520 Geometric Topology +1604.04101 Soft Condensed Matter +1604.04228 Mesoscale and Nanoscale Physics +1604.04679 Superconductivity +1604.04918 Number Theory +1604.05330 Theory +1604.06801 Phenomenology +1604.08751 Plasma Physics +1605.00111 +1605.01343 Economics +1605.01526 Applications +1605.02038 Data Structures and Algorithms +1605.02346 Computer Vision and Pattern Recognition +1605.03257 Group Theory +1605.03763 Information Theory +1605.03916 Statistical Mechanics +1605.04033 Neurons and Cognition +1605.04363 Quantum Gases +1605.04591 Optimization and Control +1605.04700 Symplectic Geometry +1605.04826 Quantum Gases +1605.04889 +1605.05029 Classical Physics +1605.05237 General Physics +1605.05306 Mesoscale and Nanoscale Physics +1605.05951 +1605.06376 Machine Learning +1605.07152 Optics +1605.07650 Computer Vision and Pattern Recognition +1605.09088 Learning +1605.09576 Differential Geometry +1606.00259 Tissues and Organs +1606.00332 Algebraic Geometry +1606.00960 +1606.01583 Machine Learning +1606.02134 Soft Condensed Matter +1606.02374 Phenomenology +1606.02453 Statistical Mechanics +1606.02887 Phenomenology +1606.03073 Computer Vision and Pattern Recognition +1606.03336 Classical Analysis and ODEs +1606.03995 Theory +1606.04653 Soft Condensed Matter +1606.04835 Computation and Language +1606.04861 Information Theory +1606.05082 Fluid Dynamics +1606.06677 Phenomenology +1606.08145 Popular Physics +1606.08794 Algebraic Topology +1606.08869 +1607.00133 Machine Learning +1607.00446 Artificial Intelligence +1607.01012 Statistical Mechanics +1607.01617 Astrophysics of Galaxies +1607.01696 Strongly Correlated Electrons +1607.02452 Digital Libraries +1607.03085 Learning +1607.03209 Mesoscale and Nanoscale Physics +1607.04344 +1607.04590 Numerical Analysis +1607.05360 Theory +1607.05418 Neural and Evolutionary Computing +1607.05819 Cryptography and Security +1607.06130 Strongly Correlated Electrons +1607.06360 Lattice +1607.06605 Experiment +1607.06628 Geometric Topology +1607.07286 Logic in Computer Science +1607.07349 Classical Analysis and ODEs +1607.07762 Artificial Intelligence +1607.08846 Quantum Gases +1608.00067 Networking and Internet Architecture +1608.00236 Computation +1608.00294 +1608.00381 Information Theory +1608.00672 Cosmology and Nongalactic Astrophysics +1608.00954 Probability +1608.00955 Probability +1608.01319 Quantum Gases +1608.01814 +1608.02087 Computational Geometry +1608.02516 Differential Geometry +1608.03413 Logic +1608.04094 Mesoscale and Nanoscale Physics +1608.04220 +1608.04310 Materials Science +1608.04402 +1608.04545 Cosmology and Nongalactic Astrophysics +1608.05584 Strongly Correlated Electrons +1608.05958 +1608.06928 Number Theory +1608.07142 Algebraic Geometry +1608.07314 +1608.07334 Differential Geometry +1608.07349 Analysis of PDEs +1608.07985 Category Theory +1608.08121 Phenomenology +1608.08692 Atomic Physics +1608.08758 Analysis of PDEs +1608.08789 Statistics Theory +1608.08834 Algebraic Topology +1608.08919 Medical Physics +1608.08934 Representation Theory +1609.00095 Commutative Algebra +1609.00516 Algebraic Geometry +1609.01324 +1609.02015 Phenomenology +1609.02057 Optics +1609.02459 Solar and Stellar Astrophysics +1609.02614 Materials Science +1609.03619 Computer Vision and Pattern Recognition +1609.04548 Materials Science +1609.04625 +1609.05068 +1609.05900 Strongly Correlated Electrons +1609.06489 Number Theory +1609.06511 Physics and Society +1609.06867 Algebraic Geometry +1609.06919 Astrophysics of Galaxies +1609.07482 Accelerator Physics +1609.07618 Soft Condensed Matter +1609.07759 Phenomenology +1609.08705 Instrumentation and Methods for Astrophysics +1609.09177 Theory +1609.09190 +1609.09226 Social and Information Networks +1609.09305 Algebraic Geometry +1609.09533 Optics +1609.09691 Quantum Gases +1610.01329 Number Theory +1610.01464 +1610.01711 Mesoscale and Nanoscale Physics +1610.01785 Dynamical Systems +1610.01854 Computer Vision and Pattern Recognition +1610.02266 Materials Science +1610.02581 Machine Learning +1610.02841 Computational Geometry +1610.03323 Solar and Stellar Astrophysics +1610.03683 Materials Science +1610.03902 Emerging Technologies +1610.03933 Algebraic Topology +1610.03973 Mesoscale and Nanoscale Physics +1610.04401 Lattice +1610.04607 +1610.04631 Computer Vision and Pattern Recognition +1610.04691 Combinatorics +1610.04841 Computation and Language +1610.04893 Systems and Control +1610.05068 Data Structures and Algorithms +1610.05077 Experiment +1610.05192 Cosmology and Nongalactic Astrophysics +1610.05280 Methodology +1610.05328 Solar and Stellar Astrophysics +1610.05395 Analysis of PDEs +1610.05472 Computational Engineering, Finance, and Science +1610.05480 Number Theory +1610.05654 Neurons and Cognition +1610.05681 Phenomenology +1610.05829 Mesoscale and Nanoscale Physics +1610.05851 Classical Physics +1610.05867 Software Engineering +1610.05961 Data Structures and Algorithms +1610.06200 Atomic Physics +1610.06278 Dynamical Systems +1610.06352 Theory +1610.06570 Astrophysics of Galaxies +1610.06577 Astrophysics of Galaxies +1610.06620 Computation and Language +1610.06695 Materials Science +1610.06859 Molecular Networks +1610.06910 +1610.06920 Learning +1610.06921 Chemical Physics +1610.06922 Instrumentation and Detectors +1610.06923 Materials Science +1610.06924 Computer Vision and Pattern Recognition +1610.06928 High Energy Astrophysical Phenomena +1610.06934 Data Structures and Algorithms +1610.06935 Number Theory +1610.06936 Cryptography and Security +1610.06942 Disordered Systems and Neural Networks +1610.06943 Methodology +1610.06944 Chemical Physics +1610.06945 Tissues and Organs +1610.06946 Probability +1610.06947 Networking and Internet Architecture +1610.06948 Representation Theory +1610.06949 Machine Learning +1610.06950 Computational Complexity +1610.06956 Operator Algebras +1610.06959 Mesoscale and Nanoscale Physics +1610.06960 Statistics Theory +1610.06961 Analysis of PDEs +1610.06964 Complex Variables +1610.06965 Symplectic Geometry +1610.06967 Strongly Correlated Electrons +1610.06970 Solar and Stellar Astrophysics +1610.06971 Algebraic Topology +1610.06972 Artificial Intelligence +1610.06973 Numerical Analysis +1610.06974 Systems and Control +1610.06975 Probability +1610.06976 Commutative Algebra +1610.06977 Symplectic Geometry +1610.06978 Databases +1610.06979 Combinatorics +1610.06983 History and Overview +1610.06985 Computer Vision and Pattern Recognition +1610.06986 Phenomenology +1610.06987 Computer Vision and Pattern Recognition +1610.06991 Soft Condensed Matter +1610.06992 +1610.06993 Computational Physics +1610.06994 Phenomenology +1610.06996 Logic in Computer Science +1610.06997 Theory +1610.06998 Learning +1610.06999 Dynamical Systems +1610.07000 +1610.07005 Differential Geometry +1610.07006 Mesoscale and Nanoscale Physics +1610.07007 Algebraic Geometry +1610.07008 Computer Vision and Pattern Recognition +1610.07009 Computers and Society +1610.07010 Theory +1610.07017 Instrumentation and Detectors +1610.07018 Data Structures and Algorithms +1610.07019 +1610.07020 Materials Science +1610.07022 Materials Science +1610.07023 Materials Science +1610.07024 Applications +1610.07025 Materials Science +1610.07027 Probability +1610.07028 Statistical Finance +1610.07029 General Topology +1610.07033 Programming Languages +1610.07034 Information Theory +1610.07036 Analysis of PDEs +1610.07037 Information Theory +1610.07039 Algebraic Topology +1610.07041 Logic in Computer Science +1610.07043 Metric Geometry +1610.07045 Artificial Intelligence +1610.07046 +1610.07051 Exactly Solvable and Integrable Systems +1610.07055 Representation Theory +1610.07057 Geometric Topology +1610.07058 Number Theory +1610.07061 Digital Libraries +1610.07062 Cosmology and Nongalactic Astrophysics +1610.07063 Materials Science +1610.07064 Materials Science +1610.07065 Number Theory +1610.07066 Systems and Control +1610.07068 +1610.07070 Soft Condensed Matter +1610.07072 Numerical Analysis +1610.07073 Space Physics +1610.07074 Classical Physics +1610.07075 Numerical Analysis +1610.07077 Number Theory +1610.07078 +1610.07079 Dynamical Systems +1610.07080 Formal Languages and Automata Theory +1610.07081 Populations and Evolution +1610.07085 Accelerator Physics +1610.07089 Artificial Intelligence +1610.07090 Social and Information Networks +1610.07091 Computation and Language +1610.07092 Classical Analysis and ODEs +1610.07093 +1610.07095 Experiment +1610.07096 Combinatorics +1610.07098 Complex Variables +1610.07099 Biological Physics +1610.07104 Machine Learning +1610.07105 Mesoscale and Nanoscale Physics +1610.07108 Machine Learning +1610.07111 Quantum Gases +1610.07114 Computational Physics +1610.07116 Machine Learning +1610.07118 Programming Languages +1610.07120 Numerical Analysis +1610.07122 Geometric Topology +1610.07123 Methodology +1610.07124 Computational Physics +1610.07125 Algebraic Geometry +1610.07127 Optimization and Control +1610.07129 Computers and Society +1610.07130 +1610.07131 Probability +1610.07132 Mesoscale and Nanoscale Physics +1610.07133 Systems and Control +1610.07135 Numerical Analysis +1610.07136 Algebraic Topology +1610.07138 +1610.07140 Theory +1610.07141 Networking and Internet Architecture +1610.07142 Materials Science +1610.07143 Experiment +1610.07144 Computational Geometry +1610.07147 Probability +1610.07149 Computation and Language +1610.07150 Differential Geometry +1610.07151 Soft Condensed Matter +1610.07152 Soft Condensed Matter +1610.07153 Numerical Analysis +1610.07155 Complex Variables +1610.07159 Computer Vision and Pattern Recognition +1610.07160 Combinatorics +1610.07162 K-Theory and Homology +1610.07163 Differential Geometry +1610.07164 Category Theory +1610.07167 Dynamical Systems +1610.07168 Quantum Gases +1610.07169 +1610.07171 Analysis of PDEs +1610.07172 Analysis of PDEs +1610.07173 Materials Science +1610.07174 Algebraic Topology +1610.07175 Formal Languages and Automata Theory +1610.07176 +1610.07177 Discrete Mathematics +1610.07178 Rings and Algebras +1610.07182 Mesoscale and Nanoscale Physics +1610.07183 Learning +1610.07185 Physics and Society +1610.07186 Superconductivity +1610.07188 Solar and Stellar Astrophysics +1610.07190 Computational Complexity +1610.07191 High Energy Astrophysical Phenomena +1610.07193 Machine Learning +1610.07195 Algebraic Geometry +1610.07198 Formal Languages and Automata Theory +1610.07200 Combinatorics +1610.07201 Optimization and Control +1610.07203 Phenomenology +1610.07204 Optimization and Control +1610.07205 Theory +1610.07206 Differential Geometry +1610.07208 Combinatorics +1610.07209 Optics +1610.07210 Atomic Physics +1610.07212 Populations and Evolution +1610.07213 Methodology +1610.07214 Computer Vision and Pattern Recognition +1610.07215 Solar and Stellar Astrophysics +1610.07217 Methodology +1610.07218 Combinatorics +1610.07219 Combinatorics +1610.07220 Distributed, Parallel, and Cluster Computing +1610.07222 Methodology +1610.07223 Group Theory +1610.07224 +1610.07227 Number Theory +1610.07230 Solar and Stellar Astrophysics +1610.07231 Computer Vision and Pattern Recognition +1610.07232 Classical Analysis and ODEs +1610.07233 Robotics +1610.07234 Chemical Physics +1610.07235 Solar and Stellar Astrophysics +1610.07236 Programming Languages +1610.07237 +1610.07238 Computer Vision and Pattern Recognition +1610.07240 Information Theory +1610.07242 Algebraic Topology +1610.07244 +1610.07248 Probability +1610.07250 Information Theory +1610.07253 Group Theory +1610.07255 +1610.07256 Information Theory +1610.07260 Number Theory +1610.07268 Cosmology and Nongalactic Astrophysics +1610.07269 Number Theory +1610.07272 Computation and Language +1610.07275 Theory +1610.07276 Cryptography and Security +1610.07281 Category Theory +1610.07282 Systems and Control +1610.07283 +1610.07287 Statistical Finance +1610.07288 +1610.07289 Systems and Control +1610.07293 Mesoscale and Nanoscale Physics +1610.07296 +1610.07297 Information Theory +1610.07298 Physics and Society +1610.07299 Representation Theory +1610.07300 +1610.07302 Functional Analysis +1610.07304 Information Theory +1610.07307 Combinatorics +1610.07309 Classical Analysis and ODEs +1610.07311 Optimization and Control +1610.07313 Theory +1610.07315 Numerical Analysis +1610.07317 Differential Geometry +1610.07318 Chemical Physics +1610.07319 +1610.07320 Probability +1610.07321 +1610.07323 Solar and Stellar Astrophysics +1610.07324 Computer Vision and Pattern Recognition +1610.07325 +1610.07326 Materials Science +1610.07327 Information Theory +1610.07328 Information Retrieval +1610.07330 +1610.07332 Solar and Stellar Astrophysics +1610.07334 Combinatorics +1610.07336 Computer Vision and Pattern Recognition +1610.07337 +1610.07338 +1610.07342 Exactly Solvable and Integrable Systems +1610.07344 Biological Physics +1610.07345 Analysis of PDEs +1610.07348 High Energy Astrophysical Phenomena +1610.07351 Functional Analysis +1610.07352 Number Theory +1610.07353 Systems and Control +1610.07357 Solar and Stellar Astrophysics +1610.07359 Differential Geometry +1610.07361 Probability +1610.07363 Computation and Language +1610.07365 Computation and Language +1610.07366 General Topology +1610.07369 Analysis of PDEs +1610.07371 Distributed, Parallel, and Cluster Computing +1610.07372 Metric Geometry +1610.07373 Genomics +1610.07374 Computers and Society +1610.07375 +1610.07376 Analysis of PDEs +1610.07377 Algebraic Geometry +1610.07378 +1610.07379 Machine Learning +1610.07381 Computer Vision and Pattern Recognition +1610.07383 Probability +1610.07384 Optimization and Control +1610.07385 Instrumentation and Methods for Astrophysics +1610.07386 Multimedia +1610.07387 Information Theory +1610.07391 Probability +1610.07394 Distributed, Parallel, and Cluster Computing +1610.07395 Number Theory +1610.07400 Numerical Analysis +1610.07402 Cosmology and Nongalactic Astrophysics +1610.07403 Statistics Theory +1610.07404 Networking and Internet Architecture +1610.07405 Information Theory +1610.07406 Populations and Evolution +1610.07410 Software Engineering +1610.07412 Lattice +1610.07413 Materials Science +1610.07416 Superconductivity +1610.07417 Optics +1610.07418 Computation and Language +1610.07419 Networking and Internet Architecture +1610.07420 Computation and Language +1610.07422 +1610.07424 Digital Libraries +1610.07427 High Energy Astrophysical Phenomena +1610.07428 Algebraic Geometry +1610.07430 Probability +1610.07432 Artificial Intelligence +1610.07434 Data Structures and Algorithms +1610.07436 Differential Geometry +1610.07438 Cellular Automata and Lattice Gases +1610.07439 Lattice +1610.07440 Number Theory +1610.07446 Materials Science +1610.07447 Group Theory +1610.07450 Analysis of PDEs +1610.07452 Materials Science +1610.07453 Methodology +1610.07455 Cosmology and Nongalactic Astrophysics +1610.07456 +1610.07457 Medical Physics +1610.07458 Social and Information Networks +1610.07459 Distributed, Parallel, and Cluster Computing +1610.07462 +1610.07463 History and Philosophy of Physics +1610.07464 Complex Variables +1610.07467 +1610.07469 Group Theory +1610.07470 Solar and Stellar Astrophysics +1610.07471 Number Theory +1610.07473 Mesoscale and Nanoscale Physics +1610.07475 Computer Vision and Pattern Recognition +1610.07479 +1610.07481 Probability +1610.07483 Instrumentation and Methods for Astrophysics +1610.07485 Applications +1610.07486 Number Theory +1610.07491 Phenomenology +1610.07492 Soft Condensed Matter +1610.07493 +1610.07496 Digital Libraries +1610.07497 Information Theory +1610.07498 +1610.07499 Computational Complexity +1610.07500 Logic +1610.07501 Hardware Architecture +1610.07504 +1610.07505 Artificial Intelligence +1610.07507 Statistics Theory +1610.07508 Metric Geometry +1610.07510 Tissues and Organs +1610.07511 Soft Condensed Matter +1610.07514 Soft Condensed Matter +1610.07515 Group Theory +1610.07516 Solar and Stellar Astrophysics +1610.07517 Dynamical Systems +1610.07520 Systems and Control +1610.07521 Experiment +1610.07522 +1610.07524 Applications +1610.07528 Geometric Topology +1610.07530 Data Structures and Algorithms +1610.07532 Plasma Physics +1610.07534 +1610.07535 Formal Languages and Automata Theory +1610.07538 Astrophysics of Galaxies +1610.07539 Number Theory +1610.07541 Algebraic Geometry +1610.07542 Probability +1610.07545 Phenomenology +1610.07549 Populations and Evolution +1610.07550 Methodology +1610.07551 Optimization and Control +1610.07553 Logic +1610.07554 Statistics Theory +1610.07555 Differential Geometry +1610.07556 Optimization and Control +1610.07560 Computer Vision and Pattern Recognition +1610.07562 Computational Physics +1610.07563 Learning +1610.07564 Information Theory +1610.07565 Strongly Correlated Electrons +1610.07567 Representation Theory +1610.07569 Computation and Language +1610.07570 Computer Vision and Pattern Recognition +1610.07571 Materials Science +1610.07572 Experiment +1610.07574 Phenomenology +1610.07577 Human-Computer Interaction +1610.07578 +1610.07582 Dynamical Systems +1610.07583 Methodology +1610.07585 Experiment +1610.07592 Astrophysics of Galaxies +cond-mat/0408297 Soft Condensed Matter +math/0112068 Combinatorics +0801.1927 Human-Computer Interaction +0905.0200 Human-Computer Interaction +1007.0768 Mesoscale and Nanoscale Physics +1103.6056 Mesoscale and Nanoscale Physics +1110.1661 General Physics +1201.3474 Functional Analysis +1203.4464 Differential Geometry +1208.6253 Probability +1209.2031 Instrumentation and Methods for Astrophysics +1210.6781 Probability +1212.1379 Probability +1301.2876 Probability +1306.5645 Combinatorics +1307.0221 Probability +1308.1796 Probability +1311.1431 Symplectic Geometry +1312.0212 +1403.7942 Analysis of PDEs +1404.3344 Dynamical Systems +1405.1791 Applications +1405.2609 Mathematical Finance +1405.3670 Materials Science +1405.6819 Probability +1406.7608 Software Engineering +1407.0486 Materials Science +1407.2420 Probability +1408.3522 Metric Geometry +1409.3905 Probability +1410.2772 Combinatorics +1410.4593 Statistics Theory +1410.6205 Complex Variables +1411.1874 Functional Analysis +1411.2318 Functional Analysis +1411.6494 Statistical Mechanics +1411.7577 Soft Condensed Matter +1412.1044 Artificial Intelligence +1412.3158 Applications +1412.4240 Differential Geometry +1412.7647 Risk Management +1412.7985 Probability +1501.05118 Functional Analysis +1501.07635 Optimization and Control +1502.04496 Distributed, Parallel, and Cluster Computing +1502.06468 Analysis of PDEs +1503.03995 Mesoscale and Nanoscale Physics +1503.08452 Statistics Theory +1504.05487 Learning +1504.07164 Algebraic Geometry +1504.07800 Analysis of PDEs +1504.08292 Analysis of PDEs +1505.01699 Other Condensed Matter +1505.03273 Logic in Computer Science +1505.04722 Applications +1506.01483 Commutative Algebra +1506.03480 Materials Science +1506.07004 Classical Analysis and ODEs +1507.01090 Numerical Analysis +1507.01860 Algebraic Geometry +1507.02767 Differential Geometry +1507.02848 Probability +1507.04194 Probability +1507.06675 Rings and Algebras +1507.06856 Computational Geometry +1508.00265 Numerical Analysis +1508.01502 Theory +1508.02601 Molecular Networks +1508.06647 Astrophysics of Galaxies +1508.07011 Quantum Gases +1509.00167 Information Theory +1509.00346 +1509.06500 Probability +1509.07539 Group Theory +1510.03298 Computation +1510.03745 Statistical Mechanics +1510.04030 +1510.05508 Soft Condensed Matter +1510.05812 Other Condensed Matter +1510.06263 Robotics +1511.00182 Quantitative Methods +1511.00382 Probability +1511.01086 Operator Algebras +1511.01736 Phenomenology +1511.04149 +1511.06337 Combinatorics +1511.06692 Computer Vision and Pattern Recognition +1511.06814 Number Theory +1512.01987 Chemical Physics +1512.02224 Strongly Correlated Electrons +1512.02468 +1512.04253 Theory +1512.04292 Chemical Physics +1512.04576 Materials Science +1512.05987 +1512.06039 Soft Condensed Matter +1512.06454 Mathematical Finance +1512.07774 Mesoscale and Nanoscale Physics +1512.08033 Classical Physics +1601.00589 Astrophysics of Galaxies +1601.01875 Differential Geometry +1601.03182 Probability +1601.04619 Computer Vision and Pattern Recognition +1601.05715 Probability +1601.07711 High Energy Astrophysical Phenomena +1602.02767 +1602.02873 Cosmology and Nongalactic Astrophysics +1602.03433 +1602.05359 Analysis of PDEs +1602.07167 Combinatorics +1602.07596 +1602.07728 Atomic Physics +1602.08324 Probability +1602.08963 Functional Analysis +1603.02325 Optics +1603.03363 Materials Science +1603.03758 Computation and Language +1603.05890 Astrophysics of Galaxies +1603.06320 +1603.06574 Solar and Stellar Astrophysics +1603.06758 General Mathematics +1603.08646 Populations and Evolution +1603.09051 Artificial Intelligence +1603.09604 Quantum Gases +1604.01203 Soft Condensed Matter +1604.02118 Probability +1604.02493 Materials Science +1604.03106 Cosmology and Nongalactic Astrophysics +1604.06064 Materials Science +1604.06353 Mesoscale and Nanoscale Physics +1604.06405 +1604.06582 Computer Vision and Pattern Recognition +1604.08446 Group Theory +1604.08667 Robotics +1604.08738 Data Structures and Algorithms +1604.08766 Pattern Formation and Solitons +1605.00094 Soft Condensed Matter +1605.00754 Theory +1605.01545 Theory +1605.01589 Probability +1605.01615 Cosmology and Nongalactic Astrophysics +1605.02214 Statistics Theory +1605.02357 Quantum Gases +1605.02439 Atomic Physics +1605.03080 Soft Condensed Matter +1605.03455 Analysis of PDEs +1605.03739 Quantum Gases +1605.05164 Numerical Analysis +1605.05376 Earth and Planetary Astrophysics +1605.05763 Atomic Physics +1605.05781 Materials Science +1605.07805 Formal Languages and Automata Theory +1605.08053 +1605.08539 Mesoscale and Nanoscale Physics +1605.08758 Theory +1605.09091 Phenomenology +1605.09392 Strongly Correlated Electrons +1606.00215 Distributed, Parallel, and Cluster Computing +1606.00618 Theory +1606.00785 Sound +1606.02678 Mesoscale and Nanoscale Physics +1606.03679 Optics +1606.05045 Combinatorics +1606.05372 Mesoscale and Nanoscale Physics +1606.07582 Strongly Correlated Electrons +1606.08486 +1606.08544 History and Overview +1607.00770 Strongly Correlated Electrons +1607.01308 Analysis of PDEs +1607.01712 Materials Science +1607.02086 Classical Analysis and ODEs +1607.03390 Computation +1607.03429 Materials Science +1607.04605 Theory +1607.04925 Mesoscale and Nanoscale Physics +1607.05746 Information Retrieval +1607.06286 Analysis of PDEs +1607.06362 Analysis of PDEs +1607.06779 Methodology +1608.02223 Representation Theory +1608.03759 Networking and Internet Architecture +1608.04714 Earth and Planetary Astrophysics +1608.05119 Data Analysis, Statistics and Probability +1608.05198 Algebraic Geometry +1608.05880 Number Theory +1608.05882 Number Theory +1608.05971 Computer Vision and Pattern Recognition +1608.06925 Soft Condensed Matter +1608.06986 Human-Computer Interaction +1608.07624 Strongly Correlated Electrons +1608.07662 Computational Geometry +1608.08041 Human-Computer Interaction +1608.08316 Astrophysics of Galaxies +1608.08330 Programming Languages +1608.08353 Human-Computer Interaction +1608.08522 Distributed, Parallel, and Cluster Computing +1608.08538 Data Structures and Algorithms +1608.08779 Logic in Computer Science +1608.08851 Computer Vision and Pattern Recognition +1609.00084 Complex Variables +1609.00161 Data Structures and Algorithms +1609.00369 Classical Analysis and ODEs +1609.00373 Combinatorics +1609.00375 Cosmology and Nongalactic Astrophysics +1609.00377 Theory +1609.00380 Cosmology and Nongalactic Astrophysics +1609.00381 Cosmology and Nongalactic Astrophysics +1609.00383 +1609.00384 Astrophysics of Galaxies +1609.00389 Plasma Physics +1609.00396 Formal Languages and Automata Theory +1609.00400 Number Theory +1609.00404 +1609.00406 +1609.00410 Number Theory +1609.00411 Analysis of PDEs +1609.00412 Numerical Analysis +1609.00415 General Finance +1609.00416 +1609.00417 Computational Physics +1609.00419 Information Theory +1609.00420 Combinatorics +1609.00421 +1609.00424 Networking and Internet Architecture +1609.00425 Computation and Language +1609.00426 Networking and Internet Architecture +1609.00427 Social and Information Networks +1609.00431 Optics +1609.00439 Human-Computer Interaction +1609.00440 Number Theory +1609.00443 +1609.00445 Strongly Correlated Electrons +1609.00446 Computer Vision and Pattern Recognition +1609.00451 Methodology +1609.00453 Combinatorics +1609.00454 Algebraic Geometry +1609.00457 +1609.00462 Artificial Intelligence +1609.00463 Numerical Analysis +1609.00467 Optimization and Control +1609.00469 Physics and Society +1609.00471 Fluid Dynamics +1609.00472 Materials Science +1609.00473 Materials Science +1609.00475 Networking and Internet Architecture +1609.00476 Group Theory +1609.00477 +1609.00480 History and Overview +1609.00482 +1609.00483 Information Theory +1609.00485 Mesoscale and Nanoscale Physics +1609.00486 Statistical Mechanics +1609.00487 Solar and Stellar Astrophysics +1609.00488 Differential Geometry +1609.00491 Neurons and Cognition +1609.00492 Chemical Physics +1609.00495 Classical Analysis and ODEs +1609.00498 Numerical Analysis +1609.00500 Fluid Dynamics +1609.00501 Earth and Planetary Astrophysics +1609.00502 Experiment +1609.00503 Exactly Solvable and Integrable Systems +1609.00509 Number Theory +1609.00511 Information Retrieval +1609.00513 Theory +1609.00514 Information Retrieval +1609.00515 Combinatorics +1609.00517 Geometric Topology +1609.00518 Group Theory +1609.00519 Analysis of PDEs +1609.00525 Number Theory +1609.00526 Mesoscale and Nanoscale Physics +1609.00530 Combinatorics +1609.00533 Probability +1609.00536 Social and Information Networks +1609.00539 Geophysics +1609.00541 Materials Science +1609.00542 Materials Science +1609.00543 Social and Information Networks +1609.00544 Data Structures and Algorithms +1609.00546 Instrumentation and Methods for Astrophysics +1609.00547 Atmospheric and Oceanic Physics +1609.00548 Lattice +1609.00549 Information Theory +1609.00550 Quantum Gases +1609.00552 Information Retrieval +1609.00554 Risk Management +1609.00555 Mesoscale and Nanoscale Physics +1609.00556 Fluid Dynamics +1609.00557 Biological Physics +1609.00559 Computation and Language +1609.00560 Soft Condensed Matter +1609.00561 Mesoscale and Nanoscale Physics +1609.00563 Probability +1609.00566 Algebraic Geometry +1609.00567 Optics +1609.00568 Solar and Stellar Astrophysics +1609.00570 Differential Geometry +1609.00571 General Topology +1609.00577 Machine Learning +1609.00578 Geophysics +1609.00579 Geophysics +1609.00580 +1609.00582 Probability +1609.00583 Numerical Analysis +1609.00586 Emerging Technologies +1609.00588 Representation Theory +1609.00591 Combinatorics +1609.00592 Solar and Stellar Astrophysics +1609.00595 Commutative Algebra +1609.00597 Materials Science +1609.00600 High Energy Astrophysical Phenomena +1609.00604 Operator Algebras +1609.00605 Dynamical Systems +1609.00606 Methodology +1609.00608 Spectral Theory +1609.00609 Phenomenology +1609.00610 Formal Languages and Automata Theory +1609.00611 Mesoscale and Nanoscale Physics +1609.00614 +1609.00615 Materials Science +1609.00616 Cryptography and Security +1609.00617 Numerical Analysis +1609.00618 Fluid Dynamics +1609.00620 Populations and Evolution +1609.00627 Computers and Society +1609.00628 Optics +1609.00629 Computer Vision and Pattern Recognition +1609.00630 Instrumentation and Detectors +1609.00631 Soft Condensed Matter +1609.00632 Geometric Topology +1609.00635 Methodology +1609.00638 Social and Information Networks +1609.00642 Differential Geometry +1609.00643 +1609.00646 Algebraic Geometry +1609.00648 Materials Science +1609.00651 Robotics +1609.00652 Complex Variables +1609.00653 Networking and Internet Architecture +1609.00655 Optimization and Control +1609.00656 Methodology +1609.00658 Neurons and Cognition +1609.00661 Machine Learning +1609.00662 Statistical Mechanics +1609.00664 Networking and Internet Architecture +1609.00670 Numerical Analysis +1609.00671 Numerical Analysis +1609.00674 Combinatorics +1609.00675 Probability +1609.00677 Applications +1609.00681 Chaotic Dynamics +1609.00683 Information Retrieval +1609.00686 Learning +1609.00687 Probability +1609.00690 +1609.00693 Mesoscale and Nanoscale Physics +1609.00694 Optimization and Control +1609.00697 +1609.00698 Optics +1609.00699 Dynamical Systems +1609.00701 Mesoscale and Nanoscale Physics +1609.00705 Analysis of PDEs +1609.00706 Phenomenology +1609.00707 Earth and Planetary Astrophysics +1609.00709 Popular Physics +1609.00710 Statistics Theory +1609.00715 Classical Analysis and ODEs +1609.00717 Cosmology and Nongalactic Astrophysics +1609.00718 Computation and Language +0905.4329 +0912.0307 Quantum Algebra +1004.1785 Differential Geometry +1007.2387 Representation Theory +1008.2403 Functional Analysis +1008.3808 Analysis of PDEs +1105.0901 Phenomenology +1109.1459 History and Overview +1207.3863 Artificial Intelligence +1207.3874 Artificial Intelligence +1207.5716 +1209.3751 Logic +1212.3506 Algebraic Geometry +1212.4519 +1303.3939 Probability +1303.4876 +1304.0813 Operator Algebras +1305.6041 Classical Physics +1307.5250 Neurons and Cognition +1308.0342 Fluid Dynamics +1308.4258 Symplectic Geometry +1310.3554 Functional Analysis +1311.1284 Quantum Gases +1311.6611 Differential Geometry +1311.6756 Methodology +1311.7513 Statistics Theory +1312.7692 Quantum Algebra +1401.0398 Statistics Theory +1401.1177 Probability +1401.2956 Superconductivity +1402.1382 Algebraic Geometry +1403.3920 Statistics Theory +1403.4910 Programming Languages +1404.0932 Plasma Physics +1404.1555 +1404.4034 Algebraic Topology +1404.6237 High Energy Astrophysical Phenomena +1405.6454 Combinatorics +1405.6548 Analysis of PDEs +1405.7767 Number Theory +1406.3867 Physics Education +1406.4969 Networking and Internet Architecture +1406.5540 Applications +1406.7028 Probability +1407.1096 Optimization and Control +1407.6689 Classical Analysis and ODEs +1408.0241 Statistics Theory +1408.1587 Analysis of PDEs +1408.6869 Statistical Mechanics +1409.0031 Machine Learning +1409.1425 Analysis of PDEs +1409.2190 Differential Geometry +1409.6556 Cryptography and Security +1409.6665 Number Theory +1410.4164 Algebraic Geometry +1410.6183 +1411.0561 Geometric Topology +1412.1147 Quantum Algebra +1412.5163 Number Theory +1412.6324 Statistical Mechanics +1412.6737 Differential Geometry +1412.7545 High Energy Astrophysical Phenomena +1412.8035 Representation Theory +1412.8132 Statistics Theory +1502.00472 Superconductivity +1502.00993 Data Structures and Algorithms +1502.02470 Number Theory +1502.02637 Probability +1502.06321 Information Theory +1503.01087 High Energy Astrophysical Phenomena +1503.01430 Dynamical Systems +1503.02698 Machine Learning +1503.04439 Theory +1503.05207 Algebraic Geometry +1503.08422 Soft Condensed Matter +1504.00286 +1504.03940 Biomolecules +1504.04886 Quantum Algebra +1504.06723 +1505.03532 Distributed, Parallel, and Cluster Computing +1505.04721 Number Theory +1505.06045 Theory +1505.06059 Commutative Algebra +1505.06649 Operator Algebras +1506.00627 Physics and Society +1506.01310 Multiagent Systems +1506.04915 Methodology +1506.06294 Social and Information Networks +1507.00075 Mesoscale and Nanoscale Physics +1507.00633 +1507.01192 Representation Theory +1507.03040 Machine Learning +1507.04150 Probability +1507.05948 Physics Education +1507.05981 Combinatorics +1507.07188 Commutative Algebra +1507.08089 Functional Analysis +1507.08266 Statistics Theory +1508.00313 Combinatorics +1508.02568 Combinatorics +1508.02845 Optimization and Control +1508.04057 Algebraic Geometry +1508.04208 Functional Analysis +1508.05242 Soft Condensed Matter +1508.07675 Analysis of PDEs +1509.00106 Optimization and Control +1509.00887 Complex Variables +1509.02188 General Topology +1509.03466 +1509.04493 Algebraic Geometry +1509.05331 +1509.05599 Algebraic Topology +1509.06763 +1510.00058 Pattern Formation and Solitons +1510.02081 Quantum Gases +1510.02643 Combinatorics +1510.03346 Computers and Society +1510.05118 Statistical Finance +1510.05528 Statistical Mechanics +1510.06334 Number Theory +1510.06920 Machine Learning +1510.07636 Statistical Mechanics +1510.08717 Category Theory +1510.08724 Algebraic Topology +1511.01260 +1511.01733 Representation Theory +1511.02531 Phenomenology +1511.03303 Phenomenology +1511.04619 Strongly Correlated Electrons +1511.05152 Earth and Planetary Astrophysics +1511.07610 +1511.08435 Information Theory +1511.08787 Phenomenology +1512.00551 Analysis of PDEs +1512.01012 Quantum Gases +1512.01167 Phenomenology +1512.01744 Algebraic Geometry +1512.02266 Artificial Intelligence +1512.02888 Cryptography and Security +1512.04138 Computational Complexity +1512.04363 Solar and Stellar Astrophysics +1512.05442 Metric Geometry +1512.08344 Combinatorics +1512.08775 Applications +1512.08987 Astrophysics of Galaxies +1601.00966 +1601.01379 Information Theory +1601.01729 High Energy Astrophysical Phenomena +1601.02202 Number Theory +1601.02205 Number Theory +1601.02207 Disordered Systems and Neural Networks +1601.02208 Algebraic Geometry +1601.02689 +1601.03169 Mesoscale and Nanoscale Physics +1601.03433 Number Theory +1601.03698 Probability +1601.04951 Differential Geometry +1601.05161 Information Theory +1601.05265 Phenomenology +1601.05294 Theory +1601.06199 Algebraic Geometry +1601.06531 Computational Physics +1601.06533 Methodology +1601.07828 +1602.00532 Quantum Algebra +1602.01857 +1602.02280 Strongly Correlated Electrons +1602.02486 Functional Analysis +1602.04621 Learning +1602.05988 +1602.07088 +1602.07613 Computer Vision and Pattern Recognition +1602.08072 Logic +1603.00220 Strongly Correlated Electrons +1603.01115 Information Theory +1603.01246 General Topology +1603.01831 Number Theory +1603.03127 Experiment +1603.04065 Earth and Planetary Astrophysics +1603.04424 +1603.04851 Cosmology and Nongalactic Astrophysics +1603.05017 Statistical Mechanics +1603.05033 Optimization and Control +1603.05585 Mesoscale and Nanoscale Physics +1603.05806 +1603.05956 +1603.06195 Phenomenology +1603.06292 Theory +1603.06330 Statistical Mechanics +1603.06817 Instrumentation and Detectors +1603.07206 Group Theory +1603.09091 Analysis of PDEs +1603.09317 Theory +1603.09385 Quantum Gases +1603.09685 Probability +1604.00057 Analysis of PDEs +1604.00225 Phenomenology +1604.00266 Artificial Intelligence +1604.00947 Atomic Physics +1604.01057 Number Theory +1604.01738 Numerical Analysis +1604.01951 Phenomenology +1604.03191 Statistical Mechanics +1604.03269 Methodology +1604.03830 Mesoscale and Nanoscale Physics +1604.04451 Learning +1604.04458 Algebraic Geometry +1604.04716 Software Engineering +1604.04747 Commutative Algebra +1604.05914 Plasma Physics +1604.06500 +1604.06746 Phenomenology +1604.06812 Category Theory +1604.07303 Differential Geometry +1604.07610 Earth and Planetary Astrophysics +1605.00144 Soft Condensed Matter +1605.00389 Optics +1605.00501 Number Theory +1605.00811 Instrumentation and Detectors +1605.01504 Astrophysics of Galaxies +1605.01547 Group Theory +1605.02511 Chemical Physics +1605.02679 Phenomenology +1605.03208 Probability +1605.03280 Statistics Theory +1605.03659 High Energy Astrophysical Phenomena +1605.04514 Strongly Correlated Electrons +1605.04797 Graphics +1605.05172 Computation and Language +1605.05387 Group Theory +1605.05536 Number Theory +1605.05884 Superconductivity +1605.06701 Combinatorics +1605.07485 Experiment +1605.09007 Superconductivity +1605.09196 Machine Learning +1605.09455 Spectral Theory +1606.00326 +1606.00675 Phenomenology +1606.01778 Logic +1606.01994 Computation and Language +1606.02239 Cryptography and Security +1606.02792 Computer Vision and Pattern Recognition +1606.02932 +1606.03140 +1606.03192 Computation and Language +1606.03329 Artificial Intelligence +1606.03818 Numerical Analysis +1606.04058 Statistical Mechanics +1606.05154 +1606.05683 Atomic Physics +1606.05959 Theory +1606.06010 Probability +1606.07219 Information Retrieval +1606.07326 Computer Vision and Pattern Recognition +1606.07347 Systems and Control +1606.07487 Human-Computer Interaction +1606.07711 Artificial Intelligence +1606.08334 Optics +1606.08426 Representation Theory +1606.08514 Artificial Intelligence +1606.08539 +1606.08591 Mesoscale and Nanoscale Physics +1606.08600 High Energy Astrophysical Phenomena +1606.08698 Learning +1606.08843 Phenomenology +1606.08886 Differential Geometry +1606.08948 Software Engineering +1606.08998 Computer Vision and Pattern Recognition +1606.09088 Group Theory +1606.09187 Computer Vision and Pattern Recognition +1606.09291 Strongly Correlated Electrons +1606.09446 Social and Information Networks +1606.09477 Superconductivity +1606.09588 Combinatorics +1606.09589 Computers and Society +1606.09633 Dynamical Systems +1607.00050 Numerical Analysis +1607.00052 Group Theory +1607.00139 Computation and Language +1607.00239 Other Condensed Matter +1607.00376 Physics and Society +1607.00377 Analysis of PDEs +1607.00378 Other Computer Science +1607.00379 Other Computer Science +1607.00392 Quantum Gases +1607.00394 +1607.00395 Phenomenology +1607.00400 Combinatorics +1607.00401 High Energy Astrophysical Phenomena +1607.00402 Combinatorics +1607.00405 Computers and Society +1607.00407 Operator Algebras +1607.00410 Computation and Language +1607.00411 Applications +1607.00412 Superconductivity +1607.00414 Classical Analysis and ODEs +1607.00415 Dynamical Systems +1607.00417 Computer Vision and Pattern Recognition +1607.00418 Analysis of PDEs +1607.00419 Dynamical Systems +1607.00420 Combinatorics +1607.00421 Social and Information Networks +1607.00423 Probability +1607.00424 Artificial Intelligence +1607.00425 Medical Physics +1607.00428 Artificial Intelligence +1607.00429 Analysis of PDEs +1607.00430 Fluid Dynamics +1607.00431 Logic in Computer Science +1607.00433 Earth and Planetary Astrophysics +1607.00435 Neurons and Cognition +1607.00436 Social and Information Networks +1607.00438 Strongly Correlated Electrons +1607.00440 Instrumentation and Methods for Astrophysics +1607.00441 Materials Science +1607.00442 Robotics +1607.00443 Computational Complexity +1607.00445 Geometric Topology +1607.00448 Risk Management +1607.00451 Optimization and Control +1607.00452 Mesoscale and Nanoscale Physics +1607.00453 Differential Geometry +1607.00458 Analysis of PDEs +1607.00459 High Energy Astrophysical Phenomena +1607.00461 Dynamical Systems +1607.00464 Computer Vision and Pattern Recognition +1607.00466 Learning +1607.00467 Information Theory +1607.00468 +1607.00470 Computer Vision and Pattern Recognition +1607.00473 Combinatorics +1607.00474 Social and Information Networks +1607.00475 Software Engineering +1607.00477 Soft Condensed Matter +1607.00478 Software Engineering +1607.00479 Medical Physics +1607.00481 Rings and Algebras +1607.00482 Analysis of PDEs +1607.00483 Populations and Evolution +1607.00489 Spectral Theory +1607.00490 Information Theory +1607.00492 Probability +1607.00497 Cryptography and Security +1607.00498 Earth and Planetary Astrophysics +1607.00499 Earth and Planetary Astrophysics +1607.00501 Computer Vision and Pattern Recognition +1607.00502 Information Theory +1607.00504 Soft Condensed Matter +1607.00507 Information Theory +1607.00508 Combinatorics +1607.00509 Computers and Society +1607.00510 Information Theory +1607.00511 Information Theory +1607.00512 Materials Science +1607.00514 Numerical Analysis +1607.00516 Neurons and Cognition +1607.00517 General Topology +1607.00519 Metric Geometry +1607.00520 Optics +1607.00521 Mesoscale and Nanoscale Physics +1607.00523 Number Theory +1607.00527 Differential Geometry +1607.00530 Materials Science +1607.00533 Information Theory +1607.00534 Computation and Language +1607.00538 Computational Geometry +1607.00542 Social and Information Networks +1607.00546 Algebraic Topology +1607.00547 Combinatorics +1607.00548 Computer Vision and Pattern Recognition +1607.00549 Optimization and Control +1607.00550 Information Theory +1607.00552 Probability +1607.00553 Optimization and Control +1607.00554 Formal Languages and Automata Theory +1607.00555 +1607.00556 Learning +1607.00561 Other Quantitative Biology +1607.00562 Robotics +1607.00563 Combinatorics +1607.00566 Dynamical Systems +1607.00569 Atmospheric and Oceanic Physics +1607.00570 Information Retrieval +1607.00571 Numerical Analysis +1607.00572 Materials Science +1607.00574 +1607.00576 Number Theory +1607.00577 Computer Vision and Pattern Recognition +1607.00578 Computation and Language +1607.00579 Number Theory +1607.00580 Dynamical Systems +1607.00581 Analysis of PDEs +1607.00582 Computer Vision and Pattern Recognition +1607.00584 Analysis of PDEs +1607.00592 Computer Vision and Pattern Recognition +1607.00595 Systems and Control +1607.00596 +1607.00598 Computer Vision and Pattern Recognition +1607.00599 Materials Science +1607.00600 Optimization and Control +1607.00601 Dynamical Systems +1607.00602 Phenomenology +1607.00603 Phenomenology +1607.00604 Networking and Internet Architecture +1607.00607 Software Engineering +1607.00608 Quantum Algebra +1607.00610 +1607.00613 Materials Science +1607.00614 Analysis of PDEs +1607.00616 Probability +1607.00620 Mesoscale and Nanoscale Physics +1607.00623 Computation and Language +1607.00624 Statistics Theory +1607.00627 +1607.00628 Earth and Planetary Astrophysics +1607.00630 Solar and Stellar Astrophysics +1607.00633 Logic in Computer Science +1607.00634 Complex Variables +1607.00635 Phenomenology +1607.00636 Dynamical Systems +1607.00638 Mathematical Finance +1607.00643 Combinatorics +1607.00644 Robotics +1607.00645 Probability +1607.00647 Information Retrieval +1607.00649 Instrumentation and Detectors +1607.00652 General Mathematics +1607.00653 Social and Information Networks +1607.00656 Artificial Intelligence +1607.00657 Differential Geometry +1607.00658 Discrete Mathematics +1607.00659 Computer Vision and Pattern Recognition +1607.00660 Metric Geometry +1607.00662 Computer Vision and Pattern Recognition +1607.00664 Geometric Topology +1607.00665 +1607.00667 Hardware Architecture +1607.00673 Statistics Theory +1607.00674 Applications +1607.00675 Information Theory +1607.00677 Complex Variables +1607.00678 Logic in Computer Science +1607.00681 Analysis of PDEs +1607.00682 Probability +1607.00683 Logic +1607.00684 Logic +1607.00686 Combinatorics +1607.00687 Rings and Algebras +1607.00689 Functional Analysis +1607.00690 +1607.00695 Multiagent Systems +1607.00697 Neurons and Cognition +1607.00698 Methodology +1607.00699 Methodology +1607.00700 Combinatorics +1607.00703 Algebraic Topology +1607.00706 Machine Learning +1607.00707 Dynamical Systems +1607.00709 Number Theory +1607.00715 Artificial Intelligence +1607.00718 Computation and Language +1607.00719 Multimedia +1607.00721 Mathematical Finance +1607.00722 Quantum Algebra +1607.00723 Logic +1607.00724 Probability +1607.00727 Theory +1607.00731 Dynamical Systems +1607.00733 Commutative Algebra +1607.00736 Number Theory +1607.00741 Materials Science +1607.00743 Statistics Theory +1607.00746 Mesoscale and Nanoscale Physics +1607.00748 Probability +1607.00749 Rings and Algebras +1607.00753 Probability +1607.00754 Probability +1607.00756 Risk Management +1607.00757 Group Theory +1607.00760 Probability +1607.00762 Information Theory +1607.00765 Neural and Evolutionary Computing +1607.00767 Rings and Algebras +1607.00769 Numerical Analysis +1607.00776 Plasma Physics +1607.00778 +1607.00779 Plasma Physics +1607.00781 Probability +1607.00782 Social and Information Networks +1607.00783 Space Physics +1607.00785 Analysis of PDEs +1607.00786 Experiment +1607.00789 +1607.00790 Experiment +1607.00791 Artificial Intelligence +1607.00800 Information Theory +1607.00801 Cryptography and Security +1607.00802 Quantum Algebra +1607.00806 Statistics Theory +1607.00807 +1607.00808 Instrumentation and Detectors +1607.00810 Phenomenology +1607.00811 Formal Languages and Automata Theory +1607.00813 Databases +1607.00814 Classical Physics +1607.00819 Artificial Intelligence +1607.00821 Instrumentation and Detectors +1607.00825 Programming Languages +1607.00827 Cryptography and Security +1607.00828 Optics +1607.00830 Mathematical Finance +1607.00833 Geometric Topology +1607.00840 Algebraic Geometry +1607.00842 Chaotic Dynamics +1607.00844 Mathematical Software +1607.00845 Spectral Theory +1607.00846 Differential Geometry +1607.00849 Instrumentation and Methods for Astrophysics +1607.00850 Mathematical Software +1607.00852 Analysis of PDEs +1607.00853 Information Theory +1607.00854 Data Structures and Algorithms +1607.00855 Analysis of PDEs +1607.00856 Physics and Society +1607.00857 Geometric Topology +1607.00858 Other Statistics +1607.00859 Other Computer Science +1607.00862 Networking and Internet Architecture +1607.00867 Numerical Analysis +1607.00868 Computational Geometry +1607.00869 Artificial Intelligence +1607.00870 Mesoscale and Nanoscale Physics +1607.00872 Learning +1607.00875 Phenomenology +1607.00876 Social and Information Networks +1607.00881 +1607.00883 Phenomenology +1607.00884 +1607.00888 Artificial Intelligence +1607.00890 Digital Libraries +1607.00893 Complex Variables +1607.00894 Dynamical Systems +1607.00895 Algebraic Geometry +1607.00901 Mesoscale and Nanoscale Physics +1607.00903 Solar and Stellar Astrophysics +1607.00905 Software Engineering +1607.00906 Rings and Algebras +1607.00909 Instrumentation and Methods for Astrophysics +1607.00913 Computers and Society +1607.00918 Information Theory +1607.00921 Rings and Algebras +1607.00923 Analysis of PDEs +1607.00925 Phenomenology +1607.00927 Probability +1607.00933 Algebraic Geometry +1607.00934 Information Theory +1607.00935 Materials Science +1607.00940 Algebraic Geometry +1607.00944 Analysis of PDEs +1607.00948 +1607.00949 Phenomenology +1607.00950 Numerical Analysis +1607.00952 Neurons and Cognition +1607.00955 +1607.00959 Applications +1607.00963 Statistics Theory +1607.00964 Information Theory +1607.00965 Rings and Algebras +1607.00971 Computer Vision and Pattern Recognition +1607.00974 Information Theory +1607.00979 Classical Analysis and ODEs +1607.00985 Rings and Algebras +1607.00986 Mesoscale and Nanoscale Physics +1607.00991 Networking and Internet Architecture +1607.00992 Artificial Intelligence +1607.00996 +1607.00997 Number Theory +1607.00998 Populations and Evolution +1607.01000 Algebraic Geometry +1607.01002 Mesoscale and Nanoscale Physics +1607.01003 Combinatorics +1607.01005 Cosmology and Nongalactic Astrophysics +cond-mat/0701605 Strongly Correlated Electrons +gr-qc/9810078 +math/0104209 Complex Variables +quant-ph/9901008 +0804.3587 Category Theory +0907.1393 High Energy Astrophysical Phenomena +0911.5603 Solar and Stellar Astrophysics +1004.0997 Phenomenology +1004.2382 High Energy Astrophysical Phenomena +1010.5513 +1102.4453 Astrophysics of Galaxies +1106.4305 Theory +1108.3861 Number Theory +1109.5923 K-Theory and Homology +1203.5068 +1206.5506 Chaotic Dynamics +1208.3036 Instrumentation and Methods for Astrophysics +1210.7762 Instrumentation and Methods for Astrophysics +1211.3494 Theory +1303.0951 Chaotic Dynamics +1310.8090 Geometric Topology +1311.1068 Superconductivity +1311.2491 Number Theory +1311.5538 K-Theory and Homology +1403.2518 Optics +1403.2720 Cosmology and Nongalactic Astrophysics +1405.1540 Operator Algebras +1405.2581 Functional Analysis +1406.5946 Social and Information Networks +1407.3431 Algebraic Geometry +1407.5090 +1409.3537 Theory +1409.5495 Learning +1409.5924 Probability +1409.7928 Statistical Mechanics +1410.1311 Cosmology and Nongalactic Astrophysics +1410.2631 +1411.1935 +1411.4471 Differential Geometry +1501.00268 Disordered Systems and Neural Networks +1501.03793 Atomic Physics +1501.05364 Earth and Planetary Astrophysics +1502.05888 Artificial Intelligence +1503.00482 Quantum Gases +1503.02888 Number Theory +1503.04391 Phenomenology +1503.05318 Commutative Algebra +1503.05690 Number Theory +1503.08090 Logic in Computer Science +1504.02546 Number Theory +1504.06313 +1504.07478 Astrophysics of Galaxies +1505.00682 Quantum Gases +1505.03811 Quantum Gases +1505.05607 +1505.06078 Atomic and Molecular Clusters +1505.06625 Analysis of PDEs +1506.03525 +1506.04939 +1506.05918 Optimization and Control +1507.01256 Phenomenology +1507.03410 Spectral Theory +1507.06755 Complex Variables +1507.08630 Theory +1508.02468 Fluid Dynamics +1509.00098 Complex Variables +1509.00748 Functional Analysis +1509.01544 Materials Science +1509.04210 Machine Learning +1509.04840 Strongly Correlated Electrons +1509.05260 Algebraic Geometry +1509.06907 +1509.07124 High Energy Astrophysical Phenomena +1509.07758 +1509.07784 +1509.08318 Operator Algebras +1510.00504 Information Theory +1510.01693 Symplectic Geometry +1510.02035 +1510.02546 Statistical Mechanics +1510.03058 +1510.03339 Data Structures and Algorithms +1510.04272 Astrophysics of Galaxies +1510.04800 Number Theory +1510.05376 Number Theory +1510.05510 Computational Finance +1510.05618 Atomic Physics +1510.07943 Theory +1510.08681 Instrumentation and Methods for Astrophysics +1511.01450 Theory +1511.01628 Astrophysics of Galaxies +1511.02011 Astrophysics of Galaxies +1511.02565 Astrophysics of Galaxies +1511.03067 Astrophysics of Galaxies +1511.04856 Dynamical Systems +1511.06267 Learning +1511.07929 Astrophysics of Galaxies +1511.07959 Populations and Evolution +1511.08386 Databases +1511.08492 Quantum Gases +1511.08856 +1511.08953 Geometric Topology +1512.01227 Materials Science +1512.01675 Materials Science +1512.03029 Analysis of PDEs +1512.03067 High Energy Astrophysical Phenomena +1512.03412 +1512.04463 Theory +1512.04685 Strongly Correlated Electrons +1512.05277 +1512.05302 Populations and Evolution +1512.05936 Analysis of PDEs +1512.08706 Atomic Physics +1601.00549 Statistics Theory +1601.00829 Superconductivity +1601.00891 Quantitative Methods +1601.02765 +1601.03159 Chemical Physics +1601.04555 Logic +1601.05925 Solar and Stellar Astrophysics +1601.07026 Solar and Stellar Astrophysics +1601.07395 +1601.07508 Phenomenology +1601.07940 +1601.07942 High Energy Astrophysical Phenomena +1602.01102 Theory +1602.01875 Genomics +1602.01876 Genomics +1602.02819 Strongly Correlated Electrons +1602.02913 +1602.02921 +1602.03894 Astrophysics of Galaxies +1602.04852 +1602.05503 Superconductivity +1602.05545 Theory +1602.06029 Strongly Correlated Electrons +1602.06253 +1602.06559 Lattice +1602.06646 +1602.07624 Phenomenology +1602.08783 Materials Science +1602.08802 Populations and Evolution +1602.08825 Astrophysics of Galaxies +1603.00679 Solar and Stellar Astrophysics +1603.00802 Populations and Evolution +1603.01398 Solar and Stellar Astrophysics +1603.01619 Astrophysics of Galaxies +1603.01621 Quantum Gases +1603.02292 Quantum Gases +1603.02367 Probability +1603.02383 Astrophysics of Galaxies +1603.02682 Astrophysics of Galaxies +1603.03258 Solar and Stellar Astrophysics +1603.04317 Mesoscale and Nanoscale Physics +1603.04795 +1603.04855 Astrophysics of Galaxies +1603.05217 Instrumentation and Methods for Astrophysics +1603.05328 Quantum Gases +1603.06049 +1603.06417 Phenomenology +1603.06434 Astrophysics of Galaxies +1603.06522 Cosmology and Nongalactic Astrophysics +1603.06946 Phenomenology +1603.07074 Functional Analysis +1603.07212 Algebraic Geometry +1603.07305 Optics +1603.07409 Applications +1603.07441 Differential Geometry +1603.07697 Computer Vision and Pattern Recognition +1603.08233 Computer Vision and Pattern Recognition +1603.08464 Physics and Society +1603.08921 Solar and Stellar Astrophysics +1603.08923 Astrophysics of Galaxies +1603.09160 Accelerator Physics +1603.09182 Numerical Analysis +1603.09710 +1604.01069 Earth and Planetary Astrophysics +1604.01402 High Energy Astrophysical Phenomena +1604.01659 +1604.01748 Commutative Algebra +1604.01781 Earth and Planetary Astrophysics +1604.01986 Astrophysics of Galaxies +1604.02421 +1604.03534 +1604.03847 Theory +1604.04251 Phenomenology +1604.04670 Astrophysics of Galaxies +1604.05197 Number Theory +1604.05450 Solar and Stellar Astrophysics +1604.05452 Theory +1604.05663 +1604.06215 Optics +1604.06803 Astrophysics of Galaxies +1604.07320 Mesoscale and Nanoscale Physics +1604.07409 Cosmology and Nongalactic Astrophysics +1604.07532 Social and Information Networks +1604.07620 Earth and Planetary Astrophysics +1604.07726 Astrophysics of Galaxies +1604.07908 Atomic Physics +1604.07989 High Energy Astrophysical Phenomena +1604.08215 Astrophysics of Galaxies +1604.08221 Phenomenology +1604.08432 Phenomenology +1604.08935 Phenomenology +1605.00472 Strongly Correlated Electrons +1605.00616 Earth and Planetary Astrophysics +1605.01874 Quantum Gases +1605.02391 Theory +1605.03177 Quantum Gases +1605.03462 Cosmology and Nongalactic Astrophysics +1605.04232 Artificial Intelligence +1605.04681 Plasma Physics +1605.04903 Phenomenology +1605.05264 Cosmology and Nongalactic Astrophysics +1605.05355 Astrophysics of Galaxies +1605.05477 Materials Science +1605.05932 +1605.06197 Machine Learning +1605.06272 Statistical Mechanics +1605.07125 Solar and Stellar Astrophysics +1605.07948 +1605.08015 +1605.08086 Analysis of PDEs +1605.08124 Theory +1605.08418 Superconductivity +1605.09060 Phenomenology +1605.09087 +1605.09199 Systems and Control +1605.09287 Instrumentation and Methods for Astrophysics +1605.09289 Theory +1605.09371 Astrophysics of Galaxies +1605.09685 +1605.09714 Strongly Correlated Electrons +1605.09752 Quantum Gases +1606.00195 Distributed, Parallel, and Cluster Computing +1606.00197 Strongly Correlated Electrons +1606.00430 Superconductivity +1606.00722 Quantum Gases +1606.00969 Instrumentation and Methods for Astrophysics +1606.00992 +1606.01908 Astrophysics of Galaxies +1606.02076 Phenomenology +1606.02257 Solar and Stellar Astrophysics +1606.02299 Earth and Planetary Astrophysics +1606.02335 Mesoscale and Nanoscale Physics +1606.02677 Theory +1606.02730 Instrumentation and Methods for Astrophysics +1606.03282 +1606.03393 Strongly Correlated Electrons +1606.04290 Astrophysics of Galaxies +1606.04398 Cosmology and Nongalactic Astrophysics +1606.05097 Statistics Theory +1606.05430 Mesoscale and Nanoscale Physics +1606.05469 Mesoscale and Nanoscale Physics +1606.05655 High Energy Astrophysical Phenomena +1606.06029 High Energy Astrophysical Phenomena +1606.06097 Statistical Mechanics +1606.06124 High Energy Astrophysical Phenomena +1606.06238 Phenomenology +1606.06335 +1606.06477 Probability +1606.06893 Phenomenology +1606.07139 Instrumentation and Methods for Astrophysics +1606.07305 Instrumentation and Methods for Astrophysics +1606.07440 Phenomenology +1606.08054 Cosmology and Nongalactic Astrophysics +1606.08115 Algebraic Geometry +1606.08294 Quantitative Methods +1606.08400 Methodology +1606.08571 Machine Learning +1606.08781 Quantum Gases +1606.09019 +1606.09053 +1606.09112 Strongly Correlated Electrons +1606.09326 Mesoscale and Nanoscale Physics +1607.00032 Cosmology and Nongalactic Astrophysics +1607.00319 +1607.00693 Numerical Analysis +1607.00702 Numerical Analysis +1607.00737 Phenomenology +1607.00924 High Energy Astrophysical Phenomena +1607.01021 Cosmology and Nongalactic Astrophysics +1607.01038 Chaotic Dynamics +1607.01065 High Energy Astrophysical Phenomena +1607.01125 Theory +1607.01247 Cosmology and Nongalactic Astrophysics +1607.01263 Information Theory +1607.01269 Instrumentation and Methods for Astrophysics +1607.01448 High Energy Astrophysical Phenomena +1607.01554 Instrumentation and Methods for Astrophysics +1607.01645 High Energy Astrophysical Phenomena +1607.01926 Theory +1607.01946 Phenomenology +1607.02407 Instrumentation and Methods for Astrophysics +1607.02457 Lattice +1607.02490 Instrumentation and Methods for Astrophysics +1607.02494 Instrumentation and Methods for Astrophysics +1607.02666 Strongly Correlated Electrons +1607.02869 +1607.03083 Materials Science +1607.03100 Astrophysics of Galaxies +1607.03363 Optics +1607.03489 Solar and Stellar Astrophysics +1607.03564 Instrumentation and Detectors +1607.03719 Quantum Gases +1607.03952 +1607.04006 Mesoscale and Nanoscale Physics +1607.04207 Earth and Planetary Astrophysics +1607.04286 Theory +1607.04602 Statistical Mechanics +1607.04724 Disordered Systems and Neural Networks +1607.04726 Phenomenology +1607.04857 Phenomenology +1607.05283 Phenomenology +1607.05359 Strongly Correlated Electrons +1607.05436 Lattice +1607.05473 +1607.05562 Fluid Dynamics +1607.05748 Phenomenology +1607.06134 Experiment +1607.06249 Classical Physics +1607.06289 Statistical Mechanics +1607.06346 Mesoscale and Nanoscale Physics +1607.06798 Earth and Planetary Astrophysics +1607.06818 High Energy Astrophysical Phenomena +1607.06872 Analysis of PDEs +1607.07025 Mesoscale and Nanoscale Physics +1607.07094 Solar and Stellar Astrophysics +1607.07166 Astrophysics of Galaxies +1607.07198 Instrumentation and Methods for Astrophysics +1607.07317 Astrophysics of Galaxies +1607.07328 High Energy Astrophysical Phenomena +1607.07338 Quantum Gases +1607.07445 Astrophysics of Galaxies +1607.07601 +1607.07758 Mesoscale and Nanoscale Physics +1607.07791 +1607.08109 +1607.08213 High Energy Astrophysical Phenomena +1607.08230 Differential Geometry +1607.08452 +1607.08527 Strongly Correlated Electrons +1607.08561 +1607.08604 Quantum Gases +1607.08613 Astrophysics of Galaxies +1607.08633 Experiment +1607.08645 Solar and Stellar Astrophysics +1607.08660 Analysis of PDEs +1607.08677 Mesoscale and Nanoscale Physics +1607.08738 Solar and Stellar Astrophysics +1607.08847 Strongly Correlated Electrons +1607.08860 Solar and Stellar Astrophysics +1607.08888 +1608.00105 Combinatorics +1608.00407 Experiment +1608.00971 Astrophysics of Galaxies +1608.01163 Instrumentation and Methods for Astrophysics +1608.01165 Earth and Planetary Astrophysics +1608.01263 Cosmology and Nongalactic Astrophysics +1608.01307 Phenomenology +1608.01309 Cosmology and Nongalactic Astrophysics +1608.01318 Phenomenology +1608.01374 High Energy Astrophysical Phenomena +1608.01809 Strongly Correlated Electrons +1608.01904 Quantum Gases +1608.02557 Numerical Analysis +1608.02642 Instrumentation and Methods for Astrophysics +1608.02645 Instrumentation and Methods for Astrophysics +1608.02744 Quantum Gases +1608.02808 Solar and Stellar Astrophysics +1608.02948 Strongly Correlated Electrons +1608.03095 Earth and Planetary Astrophysics +1608.03101 Optics +1608.03141 Lattice +1608.03433 Materials Science +1608.03514 Materials Science +1608.03673 Earth and Planetary Astrophysics +1608.03741 Instrumentation and Methods for Astrophysics +1608.03813 +1608.04186 Phenomenology +1608.04297 +1608.04298 Astrophysics of Galaxies +1608.04343 Mesoscale and Nanoscale Physics +1608.04357 Strongly Correlated Electrons +1608.04693 Quantum Gases +1608.04697 Probability +1608.04742 Astrophysics of Galaxies +1608.04870 Superconductivity +1608.04964 Astrophysics of Galaxies +1608.04974 +1608.05067 +1608.05546 Solar and Stellar Astrophysics +1608.05764 +1608.05840 Superconductivity +1608.05922 +1608.06018 Phenomenology +1608.06028 Strongly Correlated Electrons +1608.06216 Earth and Planetary Astrophysics +1608.06218 +1608.06234 Atomic Physics +1608.06291 Solar and Stellar Astrophysics +1608.06302 Disordered Systems and Neural Networks +1608.06502 Optics +1608.06689 Astrophysics of Galaxies +1608.06839 Earth and Planetary Astrophysics +1608.06916 Mesoscale and Nanoscale Physics +1608.06957 Astrophysics of Galaxies +1608.06984 Learning +1608.06994 High Energy Astrophysical Phenomena +1608.07162 Strongly Correlated Electrons +1608.07218 Soft Condensed Matter +1608.07496 Probability +1608.07567 Theory +1608.07655 Space Physics +1608.07657 High Energy Astrophysical Phenomena +1608.07717 Strongly Correlated Electrons +1608.07760 Mesoscale and Nanoscale Physics +1608.07904 Solar and Stellar Astrophysics +1608.07911 High Energy Astrophysical Phenomena +1608.08026 Phenomenology +1608.08440 High Energy Astrophysical Phenomena +1609.00011 Theory +1609.00140 Soft Condensed Matter +1609.00187 High Energy Astrophysical Phenomena +1609.00357 Quantum Gases +1609.00387 High Energy Astrophysical Phenomena +1609.00437 Earth and Planetary Astrophysics +1609.00667 High Energy Astrophysical Phenomena +1609.00673 Solar and Stellar Astrophysics +1609.00792 Earth and Planetary Astrophysics +1609.00899 Phenomenology +1609.00960 Earth and Planetary Astrophysics +1609.00972 Statistical Mechanics +1609.01230 Lattice +1609.01276 Representation Theory +1609.01289 Phenomenology +1609.01342 Phenomenology +1609.01432 Superconductivity +1609.01504 Phenomenology +1609.01514 Solar and Stellar Astrophysics +1609.01683 Superconductivity +1609.01701 Cosmology and Nongalactic Astrophysics +1609.01739 Astrophysics of Galaxies +1609.01948 Social and Information Networks +1609.02006 Instrumentation and Methods for Astrophysics +1609.02073 Mesoscale and Nanoscale Physics +1609.02185 Solar and Stellar Astrophysics +1609.02189 Spectral Theory +1609.02267 Astrophysics of Galaxies +1609.02278 Astrophysics of Galaxies +1609.02323 Lattice +1609.02333 Solar and Stellar Astrophysics +1609.02497 High Energy Astrophysical Phenomena +1609.02499 Theory +1609.02579 Solar and Stellar Astrophysics +1609.02767 Earth and Planetary Astrophysics +1609.02880 Atomic Physics +1609.03072 High Energy Astrophysical Phenomena +1609.03124 Experiment +1609.03203 Phenomenology +1609.03209 Solar and Stellar Astrophysics +1609.03227 Earth and Planetary Astrophysics +1609.03554 Astrophysics of Galaxies +1609.03557 +1609.03572 Astrophysics of Galaxies +1609.03723 Solar and Stellar Astrophysics +1609.03741 Phenomenology +1609.03767 Representation Theory +1609.03824 Strongly Correlated Electrons +1609.03860 Cosmology and Nongalactic Astrophysics +1609.03906 Earth and Planetary Astrophysics +1609.04016 High Energy Astrophysical Phenomena +1609.04020 Astrophysics of Galaxies +1609.04307 Mesoscale and Nanoscale Physics +1609.04395 Astrophysics of Galaxies +1609.04461 Theory +1609.04465 Solar and Stellar Astrophysics +1609.04468 Neural and Evolutionary Computing +1609.04595 Methodology +1609.04633 Strongly Correlated Electrons +1609.04660 Solar and Stellar Astrophysics +1609.04764 Phenomenology +1609.04773 Solar and Stellar Astrophysics +1609.04798 Earth and Planetary Astrophysics +1609.04823 Astrophysics of Galaxies +1609.04832 Astrophysics of Galaxies +1609.04843 Methodology +1609.04894 Materials Science +1609.04916 Solar and Stellar Astrophysics +1609.05021 +1609.05274 Solar and Stellar Astrophysics +1609.05299 Superconductivity +1609.05375 Astrophysics of Galaxies +1609.05376 Astrophysics of Galaxies +1609.05387 Dynamical Systems +1609.05476 Cosmology and Nongalactic Astrophysics +1609.05508 Materials Science +1609.05773 Phenomenology +1609.05793 Solar and Stellar Astrophysics +1609.05798 Solar and Stellar Astrophysics +1609.05898 Earth and Planetary Astrophysics +1609.06037 Solar and Stellar Astrophysics +1609.06190 Solar and Stellar Astrophysics +1609.06278 Solar and Stellar Astrophysics +1609.06279 Statistical Mechanics +1609.06316 Astrophysics of Galaxies +1609.06362 High Energy Astrophysical Phenomena +1609.06409 Earth and Planetary Astrophysics +1609.06505 Solar and Stellar Astrophysics +1609.06549 Earth and Planetary Astrophysics +1609.06645 Solar and Stellar Astrophysics +1609.06665 +1609.06721 Astrophysics of Galaxies +1609.06940 Solar and Stellar Astrophysics +1609.06949 Physics Education +1609.07010 Optics +1609.07106 Earth and Planetary Astrophysics +1609.07136 Astrophysics of Galaxies +1609.07181 Solar and Stellar Astrophysics +1609.07241 Astrophysics of Galaxies +1609.07357 Theory +1609.07440 Astrophysics of Galaxies +1609.07491 Astrophysics of Galaxies +1609.07512 Astrophysics of Galaxies +1609.07530 High Energy Astrophysical Phenomena +1609.07571 Mesoscale and Nanoscale Physics +1609.07619 Astrophysics of Galaxies +1609.07954 Solar and Stellar Astrophysics +1609.08092 Solar and Stellar Astrophysics +1609.08120 Solar and Stellar Astrophysics +1609.08174 Astrophysics of Galaxies +1609.08223 Solar and Stellar Astrophysics +1609.08473 Optics +1609.08519 Astrophysics of Galaxies +1609.08521 Solar and Stellar Astrophysics +1609.08553 Astrophysics of Galaxies +1609.08632 Cosmology and Nongalactic Astrophysics +1609.08652 Earth and Planetary Astrophysics +1609.08714 Mesoscale and Nanoscale Physics +1609.08836 Astrophysics of Galaxies +1609.09070 Earth and Planetary Astrophysics +1609.09074 Earth and Planetary Astrophysics +1609.09095 Solar and Stellar Astrophysics +1609.09109 Solar and Stellar Astrophysics +1609.09242 Cosmology and Nongalactic Astrophysics +1609.09308 Solar and Stellar Astrophysics +1609.09381 Theory +1609.09444 Computer Vision and Pattern Recognition +1609.09505 Earth and Planetary Astrophysics +1609.09664 High Energy Astrophysical Phenomena +1609.09825 +1610.00190 +1610.00235 Experiment +1610.00244 +1610.00288 Phenomenology +1610.00296 Dynamical Systems +1610.00342 Phenomenology +1610.00387 Theory +1610.00535 High Energy Astrophysical Phenomena +1610.00715 Solar and Stellar Astrophysics +1610.00948 High Energy Astrophysical Phenomena +1610.00990 Solar and Stellar Astrophysics +1610.01001 Astrophysics of Galaxies +1610.01038 Astrophysics of Galaxies +1610.01162 Astrophysics of Galaxies +1610.01214 Phenomenology +1610.01352 High Energy Astrophysical Phenomena +1610.01539 Theory +1610.01791 Earth and Planetary Astrophysics +1610.01951 Astrophysics of Galaxies +1610.02015 Cosmology and Nongalactic Astrophysics +1610.02026 Instrumentation and Methods for Astrophysics +1610.02030 Astrophysics of Galaxies +1610.02037 Astrophysics of Galaxies +1610.02044 Earth and Planetary Astrophysics +1610.02146 High Energy Astrophysical Phenomena +1610.02151 Lattice +1610.02300 Astrophysics of Galaxies +1610.02338 Earth and Planetary Astrophysics +1610.02341 Astrophysics of Galaxies +1610.02556 Quantum Gases +1610.02648 High Energy Astrophysical Phenomena +1610.02727 Dynamical Systems +1610.02802 Earth and Planetary Astrophysics +1610.02837 Algebraic Geometry +1610.02887 Cosmology and Nongalactic Astrophysics +1610.02963 Phenomenology +1610.02981 High Energy Astrophysical Phenomena +1610.03060 Solar and Stellar Astrophysics +1610.03068 Astrophysics of Galaxies +1610.03070 Astrophysics of Galaxies +1610.03080 High Energy Astrophysical Phenomena +1610.03189 Mesoscale and Nanoscale Physics +1610.03202 +1610.03286 Solar and Stellar Astrophysics +1610.03332 Data Structures and Algorithms +1610.03441 Astrophysics of Galaxies +1610.03493 Astrophysics of Galaxies +1610.03529 Astrophysics of Galaxies +1610.03662 Solar and Stellar Astrophysics +1610.03671 Astrophysics of Galaxies +1610.03730 Superconductivity +1610.03731 Solar and Stellar Astrophysics +1610.03853 Astrophysics of Galaxies +1610.04008 Instrumentation and Methods for Astrophysics +1610.04096 Phenomenology +1610.04104 High Energy Astrophysical Phenomena +1610.04113 Solar and Stellar Astrophysics +1610.04207 Theory +1610.04355 +1610.04423 Solar and Stellar Astrophysics +1610.04515 Earth and Planetary Astrophysics +1610.04516 Astrophysics of Galaxies +1610.04620 Cosmology and Nongalactic Astrophysics +1610.04638 Solar and Stellar Astrophysics +1610.04792 High Energy Astrophysical Phenomena +1610.04817 Optics +1610.05050 High Energy Astrophysical Phenomena +1610.05302 High Energy Astrophysical Phenomena +1610.05303 Earth and Planetary Astrophysics +1610.05305 High Energy Astrophysical Phenomena +1610.05321 Cosmology and Nongalactic Astrophysics +1610.05327 Cosmology and Nongalactic Astrophysics +1610.05359 Earth and Planetary Astrophysics +1610.05692 High Energy Astrophysical Phenomena +1610.05719 Combinatorics +1610.05920 Astrophysics of Galaxies +1610.05953 Astrophysics of Galaxies +1610.06003 Cosmology and Nongalactic Astrophysics +1610.06196 Astrophysics of Galaxies +1610.06513 +1610.06651 Solar and Stellar Astrophysics +1610.06699 High Energy Astrophysical Phenomena +1610.06763 Astrophysics of Galaxies +1610.06767 High Energy Astrophysical Phenomena +1610.06785 Mesoscale and Nanoscale Physics +1610.06872 Solar and Stellar Astrophysics +1610.06932 Astrophysics of Galaxies +1610.07263 Solar and Stellar Astrophysics +1610.07445 +1610.07619 Astrophysics of Galaxies +1610.08023 Symplectic Geometry +1610.08058 Astrophysics of Galaxies +1610.08174 Astrophysics of Galaxies +1610.08652 High Energy Astrophysical Phenomena +1610.08689 +1610.08979 Astrophysics of Galaxies +1610.08990 Solar and Stellar Astrophysics +1610.09224 Combinatorics +1610.09368 +1610.09484 Astrophysics of Galaxies +1610.09643 Earth and Planetary Astrophysics +1610.09952 +1610.10039 Solar and Stellar Astrophysics +1611.00170 Optimization and Control +1611.00408 Astrophysics of Galaxies +1611.00444 Spectral Theory +1611.00762 Astrophysics of Galaxies +1611.01405 Solar and Stellar Astrophysics +1611.01548 Physics and Society +1611.01608 Fluid Dynamics +1611.01903 Representation Theory +1611.01948 High Energy Astrophysical Phenomena +1611.02190 Lattice +1611.02201 Theory +1611.02405 Astrophysics of Galaxies +1611.02522 Disordered Systems and Neural Networks +1611.03091 High Energy Astrophysical Phenomena +1611.03629 Solar and Stellar Astrophysics +1611.03654 +1611.03859 Earth and Planetary Astrophysics +1611.03952 Populations and Evolution +1611.03984 Solar and Stellar Astrophysics +1611.04063 Solar and Stellar Astrophysics +1611.04077 Populations and Evolution +1611.04294 Theory +1611.04329 Solar and Stellar Astrophysics +1611.04627 Solar and Stellar Astrophysics +1611.04705 Databases +1611.04726 Superconductivity +1611.04895 General Physics +1611.05009 Computer Vision and Pattern Recognition +1611.05024 Statistical Mechanics +1611.05126 Machine Learning +1611.05127 Mesoscale and Nanoscale Physics +1611.05310 Mesoscale and Nanoscale Physics +1611.05683 Chemical Physics +1611.05866 Earth and Planetary Astrophysics +1611.06083 Analysis of PDEs +1611.06479 Strongly Correlated Electrons +1611.06718 Chemical Physics +1611.06941 Statistical Mechanics +1611.07135 Human-Computer Interaction +1611.07192 +1611.07469 Methodology +1611.07572 Instrumentation and Methods for Astrophysics +1611.07617 Cryptography and Security +1611.07896 Phenomenology +1611.08032 Materials Science +1611.08093 Lattice +1611.08099 Optics +1611.08323 Computer Vision and Pattern Recognition +1611.08734 Earth and Planetary Astrophysics +1611.08763 Pattern Formation and Solitons +1611.08855 Solar and Stellar Astrophysics +1611.09026 Computer Vision and Pattern Recognition +1611.09130 Machine Learning +1611.09205 Mesoscale and Nanoscale Physics +1611.09269 Mesoscale and Nanoscale Physics +1611.09326 Computer Vision and Pattern Recognition +1611.09420 Methodology +1611.09582 Number Theory +1611.09862 Cosmology and Nongalactic Astrophysics +1611.09942 Social and Information Networks +1611.09991 Strongly Correlated Electrons +1611.10028 +1611.10084 +1611.10102 Optics +1611.10115 Optics +1611.10185 +1611.10197 Instrumentation and Methods for Astrophysics +1611.10200 +1611.10224 Instrumentation and Detectors +1611.10358 Rings and Algebras +1612.00052 Astrophysics of Galaxies +1612.00113 Earth and Planetary Astrophysics +1612.00203 Human-Computer Interaction +1612.00252 Rings and Algebras +1612.00419 Astrophysics of Galaxies +1612.00420 Solar and Stellar Astrophysics +1612.00430 Solar and Stellar Astrophysics +1612.00850 Phenomenology +1612.00864 Phenomenology +1612.00924 Analysis of PDEs +1612.01048 Algebraic Geometry +1612.01057 Computer Vision and Pattern Recognition +1612.01104 Molecular Networks +1612.01182 Numerical Analysis +1612.01288 Computer Vision and Pattern Recognition +1612.01320 Combinatorics +1612.01452 Computer Vision and Pattern Recognition +1612.01470 Statistical Mechanics +1612.01494 Earth and Planetary Astrophysics +1612.01519 Functional Analysis +1612.01520 Statistics Theory +1612.01521 Instrumentation and Methods for Astrophysics +1612.01523 Astrophysics of Galaxies +1612.01525 Phenomenology +1612.01531 Cosmology and Nongalactic Astrophysics +1612.01533 Cosmology and Nongalactic Astrophysics +1612.01535 Cosmology and Nongalactic Astrophysics +1612.01539 High Energy Astrophysical Phenomena +1612.01540 +1612.01541 Mesoscale and Nanoscale Physics +1612.01543 Computer Vision and Pattern Recognition +1612.01547 Other Condensed Matter +1612.01548 Mesoscale and Nanoscale Physics +1612.01550 Theory +1612.01552 Theory +1612.01553 Software Engineering +1612.01554 Optimization and Control +1612.01557 Theory +1612.01558 Commutative Algebra +1612.01559 Theory +1612.01561 Populations and Evolution +1612.01562 Analysis of PDEs +1612.01564 Information Theory +1612.01565 Analysis of PDEs +1612.01566 Analysis of PDEs +1612.01571 Quantitative Methods +1612.01572 Logic +1612.01573 Probability +1612.01574 Emerging Technologies +1612.01575 Chemical Physics +1612.01580 High Energy Astrophysical Phenomena +1612.01582 Commutative Algebra +1612.01583 Algebraic Geometry +1612.01586 Computational Engineering, Finance, and Science +1612.01587 Cryptography and Security +1612.01589 Learning +1612.01590 Theory +1612.01592 Probability +1612.01593 Computer Science and Game Theory +1612.01594 Computer Vision and Pattern Recognition +1612.01595 Methodology +1612.01596 Superconductivity +1612.01597 Numerical Analysis +1612.01599 Number Theory +1612.01602 Populations and Evolution +1612.01603 Distributed, Parallel, and Cluster Computing +1612.01605 Populations and Evolution +1612.01606 Populations and Evolution +1612.01608 Artificial Intelligence +1612.01609 Lattice +1612.01611 Computer Vision and Pattern Recognition +1612.01613 +1612.01615 +1612.01617 Optimization and Control +1612.01618 +1612.01619 Other Statistics +1612.01620 Mesoscale and Nanoscale Physics +1612.01621 Cosmology and Nongalactic Astrophysics +1612.01624 Economics +1612.01626 Software Engineering +1612.01627 Computation and Language +1612.01628 Analysis of PDEs +1612.01629 Optics +1612.01630 Logic in Computer Science +1612.01631 Materials Science +1612.01632 Soft Condensed Matter +1612.01635 Computer Vision and Pattern Recognition +1612.01636 Systems and Control +1612.01637 Software Engineering +1612.01638 Software Engineering +1612.01639 Formal Languages and Automata Theory +1612.01640 Software Engineering +1612.01641 Databases +1612.01642 Information Theory +1612.01646 Optimization and Control +1612.01647 Optics +1612.01648 Earth and Planetary Astrophysics +1612.01649 Materials Science +1612.01652 +1612.01653 +1612.01654 Geometric Topology +1612.01655 Computer Vision and Pattern Recognition +1612.01656 Experiment +1612.01657 Multimedia +1612.01661 Mesoscale and Nanoscale Physics +1612.01663 Learning +1612.01664 Optimization and Control +1612.01665 Geometric Topology +1612.01667 +1612.01669 Computer Vision and Pattern Recognition +1612.01670 Lattice +1612.01672 Differential Geometry +1612.01673 Functional Analysis +1612.01674 Phenomenology +1612.01675 Software Engineering +1612.01677 Optics +1612.01678 Machine Learning +1612.01680 Software Engineering +1612.01681 Combinatorics +1612.01682 Logic in Computer Science +1612.01684 Networking and Internet Architecture +1612.01687 Algebraic Geometry +1612.01688 Biological Physics +1612.01689 Computer Vision and Pattern Recognition +1612.01690 Algebraic Geometry +1612.01691 Artificial Intelligence +1612.01692 Theory +1612.01694 Combinatorics +1612.01696 Computational Geometry +1612.01697 Computer Vision and Pattern Recognition +1612.01698 Number Theory +1612.01700 Analysis of PDEs +1612.01702 Commutative Algebra +1612.01703 Superconductivity +1612.01704 Physics and Society +1612.01706 Representation Theory +1612.01707 Cryptography and Security +1612.01708 Functional Analysis +1612.01709 Quantum Gases +1612.01710 +1612.01711 Emerging Technologies +1612.01712 Commutative Algebra +1612.01713 Quantum Gases +1612.01715 +1612.01718 Biological Physics +1612.01719 Atmospheric and Oceanic Physics +1612.01720 Information Theory +1612.01721 Discrete Mathematics +1612.01726 +1612.01727 Materials Science +1612.01729 Strongly Correlated Electrons +1612.01730 Theory +1612.01732 Group Theory +1612.01733 Algebraic Geometry +1612.01734 Social and Information Networks +1612.01735 Biomolecules +1612.01737 Statistical Mechanics +1612.01740 Fluid Dynamics +1612.01741 Algebraic Topology +1612.01742 Functional Analysis +1612.01743 Classical Physics +1612.01744 Computation and Language +1612.01746 Learning +1612.01747 Spectral Theory +1612.01748 Data Structures and Algorithms +1612.01749 Information Theory +1612.01751 Quantum Gases +1612.01753 Systems and Control +1612.01754 Differential Geometry +1612.01755 Spectral Theory +1612.01757 Complex Variables +1612.01758 Operator Algebras +1612.01761 Dynamical Systems +1612.01762 Algebraic Geometry +1612.01763 Spectral Theory +1612.01766 Number Theory +1612.01768 Numerical Analysis +1612.01769 Soft Condensed Matter +1612.01771 Soft Condensed Matter +1612.01772 Probability +1612.01773 Methodology +1612.01776 Representation Theory +1612.01777 Phenomenology +1612.01778 Soft Condensed Matter +1612.01781 Functional Analysis +1612.01784 Solar and Stellar Astrophysics +1612.01785 Computers and Society +1612.01787 Cryptography and Security +1612.01788 Experiment +1612.01789 +1612.01790 Phenomenology +1612.01792 Phenomenology +1612.01795 Phenomenology +1612.01798 Spectral Theory +1612.01799 Computational Physics +1612.01802 +1612.01804 Strongly Correlated Electrons +1612.01807 +1612.01808 Phenomenology +1612.01809 Mesoscale and Nanoscale Physics +1612.01810 Computer Vision and Pattern Recognition +1612.01811 Astrophysics of Galaxies +1612.01812 Learning +1612.01817 Computational Complexity +1612.01818 Combinatorics +1612.01819 Metric Geometry +1612.01820 Computer Vision and Pattern Recognition +1612.01821 Quantum Algebra +1612.01823 +1612.01824 Theory +1612.01827 Commutative Algebra +1612.01828 General Physics +1612.01829 Data Structures and Algorithms +1612.01830 General Physics +1612.01831 Fluid Dynamics +1612.01833 Analysis of PDEs +1612.01837 Cryptography and Security +1612.01838 Strongly Correlated Electrons +1612.01839 +1612.01840 Sound +1612.01841 Representation Theory +1612.01843 High Energy Astrophysical Phenomena +1612.01845 Distributed, Parallel, and Cluster Computing +1612.01846 Accelerator Physics +1612.01849 +1612.01851 Materials Science +1612.01856 Representation Theory +1612.01859 Learning +1612.01861 Probability +1612.01862 Numerical Analysis +1612.01863 Solar and Stellar Astrophysics +1612.01865 High Energy Astrophysical Phenomena +1612.01866 Differential Geometry +1612.01867 Theory +1612.01868 Performance +1612.01869 Numerical Analysis +1612.01870 Formal Languages and Automata Theory +1612.01873 High Energy Astrophysical Phenomena +1612.01876 Optics +1612.01877 Optimization and Control +1612.01878 Theory +1612.01881 Dynamical Systems +1612.01882 Statistics Theory +1612.01884 Geophysics +1612.01885 Mesoscale and Nanoscale Physics +1612.01886 Analysis of PDEs +1612.01887 Computer Vision and Pattern Recognition +1612.01888 Information Theory +1612.01889 Algebraic Geometry +1612.01890 Optimization and Control +1612.01891 Mesoscale and Nanoscale Physics +1612.01892 Artificial Intelligence +1612.01893 Probability +1612.01894 Networking and Internet Architecture +1612.01895 Computer Vision and Pattern Recognition +1612.01896 Strongly Correlated Electrons +1612.01897 Fluid Dynamics +1612.01898 Materials Science +1612.01899 Dynamical Systems +1612.01900 Atmospheric and Oceanic Physics +1612.01902 Probability +1612.01903 Dynamical Systems +1612.01904 Information Theory +1612.01905 +1612.01906 Algebraic Geometry +1612.01909 Phenomenology +1612.01910 Populations and Evolution +1612.01911 +1612.01913 Combinatorics +1612.01915 Solar and Stellar Astrophysics +1612.01916 +1612.01917 Experiment +1612.01918 Materials Science +1612.01919 Algebraic Geometry +1612.01920 Mesoscale and Nanoscale Physics +1612.01921 Cosmology and Nongalactic Astrophysics +1612.01924 Number Theory +1612.01925 Computer Vision and Pattern Recognition +1612.01926 +1612.01928 Computation and Language +1612.01929 Combinatorics +1612.01930 Computation +1612.01932 Classical Analysis and ODEs +1612.01933 Classical Analysis and ODEs +1612.01934 Statistics Theory +1612.01936 Machine Learning +1612.01937 Phenomenology +1612.01939 Computer Vision and Pattern Recognition +1612.01940 Strongly Correlated Electrons +1612.01941 Artificial Intelligence +1612.01942 Machine Learning +1612.01943 Sound +1612.01945 +1612.01946 +1612.01950 Dynamical Systems +1612.01951 Mathematical Finance +1612.01952 +1612.01954 Mesoscale and Nanoscale Physics +1612.01955 Probability +1612.01958 Computer Vision and Pattern Recognition +1612.01959 Optics +1612.01960 Algebraic Geometry +1612.01961 Superconductivity +1612.01962 Differential Geometry +1612.01963 Systems and Control +1612.01965 Combinatorics +1612.01966 Data Structures and Algorithms +1612.01967 Group Theory +1612.01968 Lattice +1612.01970 Materials Science +1612.01973 Phenomenology +1612.01976 Disordered Systems and Neural Networks +1612.01977 Statistical Mechanics +1612.01978 Combinatorics +1612.01979 Pricing of Securities +1612.01980 Information Theory +1612.01981 Computer Vision and Pattern Recognition +1612.01982 Computational Physics +1612.01983 Probability +1612.01984 Metric Geometry +1612.01987 Experiment +1612.01988 Learning +1612.01989 Materials Science +1612.01990 Theory +1612.01991 Computer Vision and Pattern Recognition +1612.01992 Logic +astro-ph/0405476 +astro-ph/0405598 +astro-ph/0407211 +astro-ph/0601542 +astro-ph/0602261 +astro-ph/0604207 +gr-qc/0001010 +gr-qc/0002035 +gr-qc/0003077 +gr-qc/0008033 +gr-qc/0008074 +gr-qc/0101095 +gr-qc/0102101 +gr-qc/0103067 +gr-qc/9912027 +hep-ex/0406055 Experiment +hep-ex/0408008 Experiment +hep-ex/0511045 Experiment +hep-ex/0601020 Experiment +hep-ex/0602010 Experiment +hep-ph/0405222 Phenomenology +hep-ph/0405261 Phenomenology +hep-ph/0406049 Phenomenology +hep-ph/0406056 Phenomenology +hep-ph/0406106 Phenomenology +hep-ph/0411154 Phenomenology +hep-ph/0510357 Phenomenology +hep-ph/0510392 Phenomenology +hep-ph/0511341 Phenomenology +hep-ph/0512181 Phenomenology +hep-ph/0512354 Phenomenology +hep-ph/0601269 Phenomenology +hep-ph/0602037 Phenomenology +hep-ph/0602098 Phenomenology +hep-ph/0603006 Phenomenology +hep-ph/0603173 Phenomenology +hep-ph/0611103 Phenomenology +hep-ph/0611167 Phenomenology +hep-ph/9912276 Phenomenology +1102.0368 Combinatorics +1103.0235 Probability +1106.5942 Operator Algebras +1202.4028 +1202.4879 Atmospheric and Oceanic Physics +1206.3357 Logic in Computer Science +1301.2909 +1301.5228 Dynamical Systems +1303.4212 Optimization and Control +1305.5901 Information Theory +1308.4834 Differential Geometry +1308.4838 Differential Geometry +1403.2860 Optimization and Control +1403.2898 Optimization and Control +1404.7381 Analysis of PDEs +1405.3341 Combinatorics +1406.5375 Experiment +1407.4292 Optimization and Control +1409.3383 Optimization and Control +1411.1789 Number Theory +1501.03182 Differential Geometry +1501.04386 +1501.04639 Probability +1502.04576 Probability +1502.05685 +1503.02586 Phenomenology +1504.03500 Combinatorics +1504.03996 High Energy Astrophysical Phenomena +1504.06419 Optics +1504.07076 Algebraic Geometry +1504.08227 General Physics +1505.00553 Machine Learning +1505.00981 Differential Geometry +1505.04773 Combinatorics +1505.05620 Number Theory +1505.07010 Strongly Correlated Electrons +1506.04546 Number Theory +1506.07093 Algebraic Geometry +1507.02698 Functional Analysis +1507.03792 Instrumentation and Methods for Astrophysics +1507.06016 Materials Science +1507.08785 +1508.03989 Probability +1508.06818 Neurons and Cognition +1509.02478 Representation Theory +1509.04016 Phenomenology +1509.04611 +1509.04913 Group Theory +1509.08158 Populations and Evolution +1509.08580 Combinatorics +1509.09278 History and Philosophy of Physics +1510.02019 Functional Analysis +1510.05737 +1510.06317 Analysis of PDEs +1510.07431 +1511.00442 Computational Complexity +1511.04435 Systems and Control +1511.09112 Logic +1512.01434 Theory +1512.03095 +1512.06782 Phenomenology +1601.01055 +1601.01125 Computation +1601.01849 Methodology +1601.02467 Analysis of PDEs +1601.03997 Statistical Mechanics +1601.06717 Biological Physics +1601.06891 Phenomenology +1601.07127 Methodology +1601.07954 Theory +1602.02150 Mesoscale and Nanoscale Physics +1602.02327 Dynamical Systems +1602.03374 Geometric Topology +1602.04073 +1602.06516 Learning +1602.07717 Instrumentation and Detectors +1603.01734 Combinatorics +1603.02807 Combinatorics +1603.03519 Social and Information Networks +1603.03862 Differential Geometry +1603.03978 Combinatorics +1603.04362 Strongly Correlated Electrons +1603.04884 Phenomenology +1603.05735 Soft Condensed Matter +1603.07344 Analysis of PDEs +1603.08190 +1604.00002 Neurons and Cognition +1604.00334 +1604.00974 Computer Vision and Pattern Recognition +1604.02250 Sound +1604.05706 Numerical Analysis +1604.07236 Information Retrieval +1604.07964 +1604.08726 Dynamical Systems +1605.00500 Materials Science +1605.02548 Geometric Topology +1605.03025 Disordered Systems and Neural Networks +1605.04303 Software Engineering +1605.04758 Theory +1605.05145 High Energy Astrophysical Phenomena +1605.06443 Machine Learning +1605.06444 Machine Learning +1605.07714 Dynamical Systems +1606.01221 Numerical Analysis +1606.01549 Computation and Language +1606.02633 Differential Geometry +1606.02893 +1606.03960 +1606.04212 Computation and Language +1606.04566 Computational Physics +1606.04847 High Energy Astrophysical Phenomena +1606.04856 +1606.04988 Machine Learning +1606.05226 Plasma Physics +1606.05647 Physics and Society +1606.05851 Mesoscale and Nanoscale Physics +1606.06733 Phenomenology +1606.07001 Instrumentation and Methods for Astrophysics +1606.07665 +1606.07770 Computer Vision and Pattern Recognition +1606.07984 Computation +1606.08257 Phenomenology +1606.08774 Mesoscale and Nanoscale Physics +1607.00929 Analysis of PDEs +1607.01884 Cosmology and Nongalactic Astrophysics +1607.02289 Mathematical Finance +1607.03377 Algebraic Topology +1607.03449 Superconductivity +1607.03889 Combinatorics +1607.03949 Computer Vision and Pattern Recognition +1607.05257 Phenomenology +1607.05463 Probability +1607.05488 Probability +1607.05542 Probability +1607.05555 Probability +1607.07223 Commutative Algebra +1607.07764 +1607.08126 Soft Condensed Matter +1607.08682 Data Structures and Algorithms +1608.00458 Cosmology and Nongalactic Astrophysics +1608.01467 Probability +1608.01537 Distributed, Parallel, and Cluster Computing +1608.02477 Information Theory +1608.03120 Physics and Society +1608.03291 Cosmology and Nongalactic Astrophysics +1608.03784 Probability +1608.03806 +1608.04388 Cosmology and Nongalactic Astrophysics +1608.05622 Functional Analysis +1608.05658 Metric Geometry +1608.06555 Analysis of PDEs +1608.06828 Algebraic Geometry +1608.06971 Biomolecules +1608.07557 Mesoscale and Nanoscale Physics +1609.02148 Astrophysics of Galaxies +1609.02238 Optimization and Control +1609.02344 +1609.02555 Phenomenology +1609.02946 Systems and Control +1609.03218 Materials Science +1609.04287 Mesoscale and Nanoscale Physics +1609.04964 Number Theory +1609.05912 Earth and Planetary Astrophysics +1609.06573 Geometric Topology +1609.07256 Cryptography and Security +1609.07315 Probability +1609.07631 Differential Geometry +1609.09106 Learning +1610.00994 Atomic Physics +1610.01912 Optimization and Control +1610.02241 Phenomenology +1610.02269 Quantum Algebra +1610.02420 Data Structures and Algorithms +1610.03747 Phenomenology +1610.04563 Computer Vision and Pattern Recognition +1610.04682 +1610.04807 Data Structures and Algorithms +1610.04859 +1610.05576 +1610.05665 Optics +1610.06912 Artificial Intelligence +1610.07273 Learning +1610.07506 Theory +1610.07589 Representation Theory +1610.07822 Theory +1610.08409 Phenomenology +1610.08966 History and Philosophy of Physics +1610.09512 Learning +1611.00191 Soft Condensed Matter +1611.00428 Phenomenology +1611.01935 Digital Libraries +1611.02107 +1611.02130 Quantum Algebra +1611.02244 Exactly Solvable and Integrable Systems +1611.02505 Geometric Topology +1611.02843 Mesoscale and Nanoscale Physics +1611.02969 Instrumentation and Methods for Astrophysics +1611.03493 Theory +1611.03511 +1611.03863 Astrophysics of Galaxies +1611.03992 Statistical Mechanics +1611.04962 Analysis of PDEs +1611.05230 +1611.05363 Analysis of PDEs +1611.05367 Complex Variables +1611.05561 Social and Information Networks +1611.06691 Materials Science +1611.07263 Lattice +1611.07359 Mesoscale and Nanoscale Physics +1611.07434 Geometric Topology +1611.07497 Combinatorics +1611.07974 Phenomenology +1611.08207 Computer Vision and Pattern Recognition +1611.08240 Computer Vision and Pattern Recognition +1611.08476 Strongly Correlated Electrons +1611.09067 Programming Languages +1611.09669 Optimization and Control +1611.09709 Instrumentation and Detectors +1611.09767 Physics and Society +1611.09883 Theory +1611.09921 Learning +1611.09936 Astrophysics of Galaxies +1611.10074 +1611.10101 Algebraic Geometry +1611.10126 Strongly Correlated Electrons +1611.10234 Complex Variables +1611.10346 Robotics +1612.00001 Numerical Analysis +1612.00002 Commutative Algebra +1612.00003 +1612.00004 Superconductivity +1612.00005 Computer Vision and Pattern Recognition +1612.00007 Combinatorics +1612.00009 Phenomenology +1612.00011 High Energy Astrophysical Phenomena +1612.00016 Strongly Correlated Electrons +1612.00019 Cosmology and Nongalactic Astrophysics +1612.00023 Lattice +1612.00025 Operator Algebras +1612.00027 Phenomenology +1612.00028 Emerging Technologies +1612.00029 +1612.00031 Pattern Formation and Solitons +1612.00032 Phenomenology +1612.00034 +1612.00036 Other Quantitative Biology +1612.00037 Materials Science +1612.00039 Instrumentation and Detectors +1612.00040 Methodology +1612.00041 Phenomenology +1612.00043 Algebraic Topology +1612.00044 Biological Physics +1612.00045 Astrophysics of Galaxies +1612.00046 Space Physics +1612.00047 Phenomenology +1612.00048 Instrumentation and Methods for Astrophysics +1612.00049 Materials Science +1612.00050 Classical Analysis and ODEs +1612.00051 Number Theory +1612.00053 Robotics +1612.00054 Numerical Analysis +1612.00056 Numerical Analysis +1612.00057 Strongly Correlated Electrons +1612.00058 Number Theory +1612.00059 Optimization and Control +1612.00060 Statistical Mechanics +1612.00061 Representation Theory +1612.00062 Physics and Society +1612.00063 Instrumentation and Methods for Astrophysics +1612.00064 Methodology +1612.00065 Astrophysics of Galaxies +1612.00066 Numerical Analysis +1612.00068 Methodology +1612.00069 Rings and Algebras +1612.00072 Functional Analysis +1612.00073 Number Theory +1612.00074 Strongly Correlated Electrons +1612.00075 Differential Geometry +1612.00076 Other Condensed Matter +1612.00077 Numerical Analysis +1612.00078 Numerical Analysis +1612.00079 History and Philosophy of Physics +1612.00080 Materials Science +1612.00081 Machine Learning +1612.00082 Theory +1612.00083 Applications +1612.00085 Computer Vision and Pattern Recognition +1612.00087 Number Theory +1612.00088 Mesoscale and Nanoscale Physics +1612.00090 Optimization and Control +1612.00091 Solar and Stellar Astrophysics +1612.00092 Artificial Intelligence +1612.00093 Dynamical Systems +1612.00094 Artificial Intelligence +1612.00095 Soft Condensed Matter +1612.00096 Lattice +1612.00097 Combinatorics +1612.00099 Machine Learning +1612.00101 Computer Vision and Pattern Recognition +1612.00102 Combinatorics +1612.00103 Lattice +1612.00104 Artificial Intelligence +1612.00105 Number Theory +1612.00109 Analysis of PDEs +1612.00111 Methodology +1612.00117 Astrophysics of Galaxies +1612.00118 Information Theory +1612.00120 Fluid Dynamics +1612.00121 +1612.00122 Networking and Internet Architecture +1612.00123 Information Theory +1612.00127 Probability +1612.00129 Applications +1612.00130 Information Theory +1612.00131 Information Theory +1612.00134 Group Theory +1612.00135 Soft Condensed Matter +1612.00136 Statistics Theory +1612.00138 Computer Vision and Pattern Recognition +1612.00139 Number Theory +1612.00142 Optimization and Control +1612.00145 Quantum Algebra +1612.00146 Mesoscale and Nanoscale Physics +1612.00147 Robotics +1612.00148 Computation and Language +1612.00151 Learning +1612.00152 Statistical Mechanics +1612.00154 Algebraic Geometry +1612.00155 Neural and Evolutionary Computing +1612.00156 Data Structures and Algorithms +1612.00160 Probability +1612.00162 Exactly Solvable and Integrable Systems +1612.00163 Software Engineering +1612.00164 Software Engineering +1612.00166 +1612.00167 Solar and Stellar Astrophysics +1612.00168 Populations and Evolution +1612.00171 Sound +1612.00172 Sound +1612.00173 +1612.00176 Mesoscale and Nanoscale Physics +1612.00177 Complex Variables +1612.00178 Differential Geometry +1612.00179 Computer Science and Game Theory +1612.00181 Computer Vision and Pattern Recognition +1612.00185 Computers and Society +1612.00186 Computer Science and Game Theory +1612.00187 Dynamical Systems +1612.00189 Materials Science +1612.00191 Algebraic Geometry +1612.00192 Computer Vision and Pattern Recognition +1612.00193 Computational Physics +1612.00198 Group Theory +1612.00201 Optimization and Control +1612.00204 Cryptography and Security +1612.00205 +1612.00206 Combinatorics +1612.00209 Geometric Topology +1612.00211 Information Theory +1612.00212 Computer Vision and Pattern Recognition +1612.00213 +1612.00214 Classical Analysis and ODEs +1612.00215 Computer Vision and Pattern Recognition +1612.00216 Phenomenology +1612.00219 Phenomenology +1612.00221 Economics +1612.00222 Artificial Intelligence +1612.00223 Chemical Physics +1612.00225 Cosmology and Nongalactic Astrophysics +1612.00226 Optimization and Control +1612.00227 Artificial Intelligence +1612.00229 Plasma Physics +1612.00230 Chemical Physics +1612.00233 Quantum Gases +1612.00234 Computer Vision and Pattern Recognition +1612.00235 Classical Analysis and ODEs +1612.00236 +1612.00238 Probability +1612.00240 Artificial Intelligence +1612.00241 Physics and Society +1612.00242 Group Theory +1612.00243 Functional Analysis +1612.00244 Earth and Planetary Astrophysics +1612.00246 Computation and Language +1612.00247 Theory +1612.00254 Fluid Dynamics +1612.00255 Optimization and Control +1612.00256 Exactly Solvable and Integrable Systems +1612.00257 Plasma Physics +1612.00258 High Energy Astrophysical Phenomena +1612.00259 Computation +1612.00261 High Energy Astrophysical Phenomena +1612.00262 Computational Physics +1612.00263 Metric Geometry +1612.00264 Phenomenology +1612.00266 +1612.00275 Earth and Planetary Astrophysics +1612.00276 Combinatorics +1612.00277 Programming Languages +1612.00279 History and Overview +1612.00280 Classical Analysis and ODEs +1612.00282 Analysis of PDEs +1612.00283 Phenomenology +1612.00284 Functional Analysis +1612.00285 Lattice +1612.00287 Fluid Dynamics +1612.00288 General Physics +1612.00292 Solar and Stellar Astrophysics +1612.00294 General Physics +1612.00295 Metric Geometry +1612.00297 Soft Condensed Matter +1612.00298 Soft Condensed Matter +1612.00299 Instrumentation and Methods for Astrophysics +1612.00300 Analysis of PDEs +1612.00302 Commutative Algebra +1612.00303 Combinatorics +1612.00304 General Physics +1612.00305 Robotics +1612.00306 Theory +1612.00307 Cosmology and Nongalactic Astrophysics +1612.00309 Networking and Internet Architecture +1612.00310 +1612.00311 Soft Condensed Matter +1612.00313 Metric Geometry +1612.00316 Optimization and Control +1612.00317 Strongly Correlated Electrons +1612.00318 Fluid Dynamics +1612.00319 Solar and Stellar Astrophysics +1612.00321 Probability +1612.00327 +1612.00329 Instrumentation and Methods for Astrophysics +1612.00330 Software Engineering +1612.00331 Materials Science +1612.00332 Optimization and Control +1612.00337 Numerical Analysis +1612.00339 Statistical Mechanics +1612.00343 Computational Geometry +1612.00345 Cosmology and Nongalactic Astrophysics +1612.00346 Theory +1612.00347 Computation and Language +1612.00353 +1612.00355 Dynamical Systems +1612.00358 +1612.00362 Functional Analysis +1612.00363 Soft Condensed Matter +1612.00364 Astrophysics of Galaxies +1612.00366 Mesoscale and Nanoscale Physics +1612.00367 Learning +1612.00368 Quantum Algebra +1612.00371 +1612.00373 Statistical Mechanics +1612.00378 +1612.00380 Artificial Intelligence +1612.00384 High Energy Astrophysical Phenomena +1612.00385 Computer Vision and Pattern Recognition +1612.00387 Astrophysics of Galaxies +1612.00388 Machine Learning +1612.00392 Materials Science +1612.00393 Machine Learning +1612.00394 Computation and Language +1612.00395 +1612.00396 Populations and Evolution +1612.00397 Networking and Internet Architecture +1612.00398 Computational Physics +1612.00403 Lattice +1612.00405 Solar and Stellar Astrophysics +1612.00406 Probability +1612.00407 Cryptography and Security +1612.00408 Computer Vision and Pattern Recognition +1612.00411 Commutative Algebra +1612.00412 Instrumentation and Methods for Astrophysics +1612.00414 Systems and Control +1612.00415 Analysis of PDEs +1612.00417 Theory +1612.00418 K-Theory and Homology +1612.00421 Probability +1612.00423 Computer Vision and Pattern Recognition +1612.00424 Methodology +1612.00426 Combinatorics +1612.00431 Functional Analysis +1612.00432 Group Theory +1612.00434 Probability +1612.00437 Computer Vision and Pattern Recognition +1612.00439 Complex Variables +hep-th/0104266 Theory +0806.1285 Strongly Correlated Electrons +0810.0402 Strongly Correlated Electrons +0908.2103 Strongly Correlated Electrons +1006.2002 Information Theory +1009.4185 Strongly Correlated Electrons +1110.4077 Computational Complexity +1203.2122 Probability +1205.2940 Quantum Algebra +1205.6540 Strongly Correlated Electrons +1209.3836 Classical Analysis and ODEs +1210.2910 Rings and Algebras +1212.4059 Materials Science +1302.3459 +1310.5282 Number Theory +1311.6093 Data Structures and Algorithms +1402.2825 Mesoscale and Nanoscale Physics +1402.4947 Metric Geometry +1404.0565 +1406.3220 Operator Algebras +1406.3514 Data Structures and Algorithms +1406.4362 Group Theory +1407.6436 Group Theory +1407.7772 General Physics +1408.3590 Data Structures and Algorithms +1409.1399 Data Structures and Algorithms +1409.2293 Phenomenology +1409.6315 Astrophysics of Galaxies +1410.3516 Probability +1411.1033 Complex Variables +1411.1333 Analysis of PDEs +1412.1721 Operator Algebras +1501.02444 Information Theory +1501.02939 Functional Analysis +1501.03588 Statistics Theory +1501.05536 Combinatorics +1502.04876 Differential Geometry +1502.05971 Classical Analysis and ODEs +1503.00886 Logic in Computer Science +1503.01984 Populations and Evolution +1503.04720 Optics +1503.07464 Mesoscale and Nanoscale Physics +1503.08621 Methodology +1504.04832 +1504.05919 Probability +1504.06293 Functional Analysis +1504.07416 Social and Information Networks +1505.00113 +1505.00688 Operator Algebras +1505.00730 Combinatorics +1505.00734 Combinatorics +1505.04961 Superconductivity +1505.07077 Optimization and Control +1505.07271 Computational Physics +1506.01945 Number Theory +1506.02555 Analysis of PDEs +1506.05234 Astrophysics of Galaxies +1506.07335 Functional Analysis +1506.07379 Classical Analysis and ODEs +1506.08610 Optics +1507.02241 +1507.03899 Functional Analysis +1507.04247 Statistical Mechanics +1507.04635 Machine Learning +1507.05549 Operator Algebras +1507.06073 Computation and Language +1507.07862 Number Theory +1508.02770 History and Philosophy of Physics +1508.05177 Superconductivity +1508.06701 +1508.07904 Operator Algebras +1509.00014 Theory +1509.00703 Numerical Analysis +1509.03355 Robotics +1509.07810 Soft Condensed Matter +1510.01039 Physics and Society +1510.04795 +1510.05811 Optimization and Control +1510.05835 Number Theory +1511.01158 Learning +1511.02018 Operator Algebras +1511.02491 Symplectic Geometry +1511.02825 Computer Vision and Pattern Recognition +1511.04834 Learning +1511.07713 High Energy Astrophysical Phenomena +1512.00637 Quantum Gases +1512.01049 +1512.03087 Physics and Society +1512.07873 Probability +1512.08154 Soft Condensed Matter +1512.08357 Numerical Analysis +1601.01239 Optics +1601.01937 Dynamical Systems +1601.04968 Analysis of PDEs +1601.05335 Cryptography and Security +1601.06217 Mesoscale and Nanoscale Physics +1601.07563 +1601.08180 Probability +1602.00285 Combinatorics +1602.01612 Populations and Evolution +1602.02883 Analysis of PDEs +1602.04186 Disordered Systems and Neural Networks +1602.07580 Statistical Mechanics +1602.08438 Fluid Dynamics +1603.00202 High Energy Astrophysical Phenomena +1603.00286 Computer Science and Game Theory +1603.03260 Cosmology and Nongalactic Astrophysics +1603.03577 Quantitative Methods +1603.04137 Theory +1603.04238 Mesoscale and Nanoscale Physics +1603.04512 +1603.04618 Optics +1603.04729 Analysis of PDEs +1603.06279 Theory +1603.08046 Astrophysics of Galaxies +1604.01512 Mesoscale and Nanoscale Physics +1604.01553 Phenomenology +1604.02114 Distributed, Parallel, and Cluster Computing +1604.02400 Physics and Society +1604.03434 +1604.04038 Robotics +1604.04068 Plasma Physics +1604.06065 Cosmology and Nongalactic Astrophysics +1604.06121 Populations and Evolution +1604.06233 Other Condensed Matter +1604.07682 High Energy Astrophysical Phenomena +1604.07866 Learning +1605.00682 Systems and Control +1605.01413 Phenomenology +1605.01454 +1605.02458 +1605.02718 Methodology +1605.04013 Computation and Language +1605.04349 +1605.05227 Networking and Internet Architecture +1605.05282 Probability +1605.06775 Analysis of PDEs +1606.00484 Data Structures and Algorithms +1606.01515 Computation and Language +1606.05843 Probability +1606.06271 Computer Science and Game Theory +1606.06723 Probability +1606.06884 Theory +1606.07102 Earth and Planetary Astrophysics +1606.08258 +1607.00210 Numerical Analysis +1607.00372 Performance +1607.00861 Networking and Internet Architecture +1607.00863 Networking and Internet Architecture +1607.00967 Strongly Correlated Electrons +1607.01555 Mesoscale and Nanoscale Physics +1607.02146 Astrophysics of Galaxies +1607.02161 Functional Analysis +1607.02163 Functional Analysis +1607.03077 Robotics +1607.03742 Classical Physics +1607.04114 Theory +1607.04297 Astrophysics of Galaxies +1607.04359 +1607.04423 Computation and Language +1607.05963 +1607.06168 Adaptation and Self-Organizing Systems +1607.06195 High Energy Astrophysical Phenomena +1607.06230 Rings and Algebras +1607.06283 Computer Vision and Pattern Recognition +1607.06322 Solar and Stellar Astrophysics +1607.06324 Software Engineering +1607.06425 Numerical Analysis +1607.06512 +1607.06701 Optics +1607.07122 Functional Analysis +1607.07436 Numerical Analysis +1607.07468 Differential Geometry +1607.07709 Algebraic Geometry +1607.07726 +1607.07742 Combinatorics +1607.07930 Strongly Correlated Electrons +1607.07974 Methodology +1607.07989 High Energy Astrophysical Phenomena +1607.08050 Astrophysics of Galaxies +1607.08058 Combinatorics +1607.08265 Solar and Stellar Astrophysics +1607.08529 Instrumentation and Detectors +1607.08566 Spectral Theory +1607.08571 Spectral Theory +1607.08576 Spectral Theory +1607.08746 Analysis of PDEs +1608.00144 Theory +1608.00330 Numerical Analysis +1608.00342 Representation Theory +1608.00389 +1608.00505 Probability +1608.00823 Materials Science +1608.00828 Optimization and Control +1608.01032 Spectral Theory +1608.01170 Superconductivity +1608.01171 Soft Condensed Matter +1608.01186 Algebraic Geometry +1608.01197 Computational Finance +1608.01238 Computation and Language +1608.01271 Strongly Correlated Electrons +1608.01290 Algebraic Topology +1608.01306 Astrophysics of Galaxies +1608.01331 Dynamical Systems +1608.01332 Experiment +1608.01333 +1608.01335 Robotics +1608.01337 Methodology +1608.01339 Computational Geometry +1608.01342 Materials Science +1608.01343 Numerical Analysis +1608.01344 Numerical Analysis +1608.01345 Instrumentation and Detectors +1608.01348 Analysis of PDEs +1608.01350 Data Structures and Algorithms +1608.01351 Economics +1608.01352 Geophysics +1608.01353 Combinatorics +1608.01357 Numerical Analysis +1608.01358 Combinatorics +1608.01359 Analysis of PDEs +1608.01361 Number Theory +1608.01363 Rings and Algebras +1608.01366 Materials Science +1608.01367 +1608.01369 Soft Condensed Matter +1608.01370 Astrophysics of Galaxies +1608.01372 Computer Vision and Pattern Recognition +1608.01373 Social and Information Networks +1608.01376 Mesoscale and Nanoscale Physics +1608.01377 Networking and Internet Architecture +1608.01380 Mesoscale and Nanoscale Physics +1608.01381 Geometric Topology +1608.01383 High Energy Astrophysical Phenomena +1608.01384 Probability +1608.01385 +1608.01386 Social and Information Networks +1608.01387 Materials Science +1608.01390 Number Theory +1608.01391 Computer Vision and Pattern Recognition +1608.01392 Materials Science +1608.01393 Optimization and Control +1608.01395 Analysis of PDEs +1608.01396 Data Structures and Algorithms +1608.01399 Formal Languages and Automata Theory +1608.01400 High Energy Astrophysical Phenomena +1608.01401 Computation and Language +1608.01402 Artificial Intelligence +1608.01403 Computation and Language +1608.01404 Computation and Language +1608.01405 Computation and Language +1608.01406 Computation and Language +1608.01407 Group Theory +1608.01408 Information Theory +1608.01410 Learning +1608.01412 Number Theory +1608.01415 Mathematical Finance +1608.01418 General Mathematics +1608.01423 Quantum Algebra +1608.01426 Computational Complexity +1608.01428 +1608.01429 Systems and Control +1608.01430 Multiagent Systems +1608.01432 Information Theory +1608.01433 Logic in Computer Science +1608.01435 Earth and Planetary Astrophysics +1608.01439 Plasma Physics +1608.01440 Applications +1608.01441 Computer Vision and Pattern Recognition +1608.01443 +1608.01445 Combinatorics +1608.01446 Networking and Internet Architecture +1608.01453 Spectral Theory +1608.01455 Computation +1608.01458 Fluid Dynamics +1608.01459 Spectral Theory +1608.01460 Analysis of PDEs +1608.01461 +1608.01462 Pattern Formation and Solitons +1608.01464 Combinatorics +1608.01465 Combinatorics +1608.01468 Cryptography and Security +1608.01469 +1608.01471 Computer Vision and Pattern Recognition +1608.01482 Algebraic Geometry +1608.01486 Atomic Physics +1608.01487 Data Structures and Algorithms +1608.01490 Rings and Algebras +1608.01491 Biological Physics +1608.01492 Cryptography and Security +1608.01495 Adaptation and Self-Organizing Systems +1608.01499 Distributed, Parallel, and Cluster Computing +1608.01502 Phenomenology +1608.01503 Combinatorics +1608.01505 Computer Vision and Pattern Recognition +1608.01506 +1608.01507 +1608.01508 Phenomenology +1608.01510 Computer Science and Game Theory +1608.01511 Probability +1608.01513 Methodology +1608.01514 Numerical Analysis +1608.01519 Computational Physics +1608.01521 Combinatorics +1608.01522 Mesoscale and Nanoscale Physics +1608.01524 Information Theory +1608.01526 Probability +1608.01529 Computer Vision and Pattern Recognition +1608.01532 Methodology +1608.01533 Software Engineering +1608.01536 Computer Vision and Pattern Recognition +1608.01539 Differential Geometry +1608.01540 Computer Science and Game Theory +1608.01541 General Physics +1608.01544 General Physics +1608.01545 Representation Theory +1608.01550 Group Theory +1608.01551 Representation Theory +1608.01553 +1608.01556 Astrophysics of Galaxies +1608.01559 Category Theory +1608.01560 Logic in Computer Science +1608.01561 Computation and Language +1608.01562 Combinatorics +1608.01564 +1608.01568 Discrete Mathematics +1608.01570 Geometric Topology +1608.01573 Information Retrieval +1608.01575 Functional Analysis +1608.01580 Quantum Gases +1608.01586 Differential Geometry +1608.01588 Information Theory +1608.01589 Geometric Topology +1608.01592 +1608.01593 Methodology +1608.01595 Experiment +1608.01596 Probability +1608.01597 Probability +1608.01599 Category Theory +1608.01603 Logic in Computer Science +1608.01604 Artificial Intelligence +1608.01606 Robotics +1608.01611 Artificial Intelligence +1608.01614 Combinatorics +1608.01615 +1608.01616 Representation Theory +1608.01619 Numerical Analysis +1608.01620 Soft Condensed Matter +1608.01626 Logic in Computer Science +1608.01632 Networking and Internet Architecture +1608.01634 Theory +1608.01636 Exactly Solvable and Integrable Systems +1608.01637 Biological Physics +1608.01638 +1608.01642 +1608.01643 Phenomenology +1608.01647 Computer Vision and Pattern Recognition +1608.01648 Social and Information Networks +1608.01653 Soft Condensed Matter +1608.01655 Number Theory +1608.01656 Number Theory +1608.01658 Computer Vision and Pattern Recognition +1608.01659 High Energy Astrophysical Phenomena +1608.01662 Statistical Mechanics +1608.01663 Differential Geometry +cond-mat/0702405 Strongly Correlated Electrons +hep-ph/0407075 Phenomenology +0708.0282 Chemical Physics +0803.3694 Atomic and Molecular Clusters +0909.5234 History and Overview +1110.0977 Soft Condensed Matter +1203.3250 Differential Geometry +1207.0900 +1207.2879 Superconductivity +1208.2360 Algebraic Topology +1211.3270 Classical Analysis and ODEs +1305.5574 Soft Condensed Matter +1307.1664 Dynamical Systems +1308.0250 Group Theory +1308.5599 Theory +1309.0688 Soft Condensed Matter +1309.1229 Biological Physics +1309.2025 Number Theory +1311.3927 K-Theory and Homology +1311.5257 Algebraic Geometry +1312.0075 Biomolecules +1312.4065 Analysis of PDEs +1402.0954 Materials Science +1402.2522 Classical Analysis and ODEs +1402.5688 Dynamical Systems +1403.0719 Operator Algebras +1403.5149 Dynamical Systems +1403.5690 Analysis of PDEs +1404.3036 Materials Science +1404.3300 Methodology +1404.5701 Information Theory +1404.6920 Dynamical Systems +1405.0742 Strongly Correlated Electrons +1405.3995 Differential Geometry +1405.4924 Classical Analysis and ODEs +1405.5167 Dynamical Systems +1405.7069 Classical Analysis and ODEs +1406.0031 Strongly Correlated Electrons +1406.4546 +1406.4637 Differential Geometry +1406.4731 Dynamical Systems +1407.2992 Dynamical Systems +1407.7135 Neurons and Cognition +1408.1662 Number Theory +1408.3576 Theory +1409.2581 Classical Analysis and ODEs +1409.7252 Analysis of PDEs +1409.8226 Phenomenology +1409.8654 Representation Theory +1409.8656 Operator Algebras +1410.2194 Group Theory +1411.0836 Rings and Algebras +1411.4887 Analysis of PDEs +1411.5585 Algebraic Geometry +1412.3790 Analysis of PDEs +1412.5020 Optimization and Control +1501.01105 Geometric Topology +1501.01398 Cosmology and Nongalactic Astrophysics +1501.01852 Phenomenology +1501.02977 +1501.03611 Soft Condensed Matter +1501.05270 Soft Condensed Matter +1502.00726 Quantitative Methods +1502.07694 Soft Condensed Matter +1503.00322 Social and Information Networks +1503.02607 Commutative Algebra +1503.02681 Soft Condensed Matter +1503.03103 Algebraic Geometry +1503.08683 Physics and Society +1504.00012 Theory +1504.00912 Analysis of PDEs +1504.02471 +1504.02536 Information Theory +1504.05228 Algebraic Geometry +1504.06005 Operator Algebras +1504.07149 Data Structures and Algorithms +1504.07557 Earth and Planetary Astrophysics +1505.03647 +1505.04509 +1505.04905 Numerical Analysis +1505.05142 Strongly Correlated Electrons +1505.07682 Mesoscale and Nanoscale Physics +1506.00622 Theory +1506.01396 +1506.01959 Numerical Analysis +1506.02258 Chaotic Dynamics +1506.02572 Computational Geometry +1506.02669 Theory +1506.03111 Geometric Topology +1506.03579 Optics +1506.04288 Functional Analysis +1506.05722 +1506.08242 Mesoscale and Nanoscale Physics +1507.00722 Mesoscale and Nanoscale Physics +1507.01323 Analysis of PDEs +1507.01547 Theory +1507.01643 Astrophysics of Galaxies +1507.04237 Number Theory +1507.05636 Astrophysics of Galaxies +1507.08541 +1507.08742 Cell Behavior +1508.00221 Statistical Mechanics +1508.00226 Medical Physics +1508.00775 General Topology +1508.00869 +1508.01530 Operator Algebras +1508.01615 Astrophysics of Galaxies +1508.03129 Algebraic Topology +1508.03377 Analysis of PDEs +1508.03534 Physics and Society +1508.05601 Numerical Analysis +1508.07136 Distributed, Parallel, and Cluster Computing +1508.07772 Superconductivity +1509.00023 Solar and Stellar Astrophysics +1509.00544 Instrumentation and Methods for Astrophysics +1509.00624 Chemical Physics +1509.03835 +1509.04571 Optics +1509.04635 Statistical Mechanics +1509.04965 Classical Analysis and ODEs +1509.04998 Group Theory +1509.05588 Chemical Physics +1509.06748 Phenomenology +1509.09293 Physics and Society +1510.01000 Algebraic Geometry +1510.01711 Astrophysics of Galaxies +1510.02097 Solar and Stellar Astrophysics +1510.02760 Phenomenology +1510.03024 Soft Condensed Matter +1510.03728 Geometric Topology +1510.04742 Astrophysics of Galaxies +1510.05288 Analysis of PDEs +1510.05429 Quantum Gases +1510.05778 Theory +1510.06259 Representation Theory +1510.07834 Solar and Stellar Astrophysics +1510.08084 Astrophysics of Galaxies +1510.08428 +1510.08455 Strongly Correlated Electrons +1510.08495 Optics +1510.08870 Theory +1510.09116 +1510.09205 +1511.00070 Dynamical Systems +1511.01296 +1511.01767 Solar and Stellar Astrophysics +1511.01817 Theory +1511.01906 +1511.03221 Materials Science +1511.03245 Cosmology and Nongalactic Astrophysics +1511.04397 Computer Vision and Pattern Recognition +1511.04684 Theory +1511.04827 Algebraic Topology +1511.04865 Theory +1511.05984 Strongly Correlated Electrons +1511.07438 Astrophysics of Galaxies +1511.07486 Strongly Correlated Electrons +1511.07871 Solar and Stellar Astrophysics +1511.08088 Digital Libraries +1511.08150 Theory +1511.08483 Mesoscale and Nanoscale Physics +1511.08705 +1511.09282 Mesoscale and Nanoscale Physics +1511.09453 Soft Condensed Matter +1512.00441 Analysis of PDEs +1512.00692 +1512.00801 +1512.00822 Networking and Internet Architecture +1512.01477 +1512.01570 Instrumentation and Methods for Astrophysics +1512.01945 +1512.02388 Earth and Planetary Astrophysics +1512.03912 +1512.03928 Materials Science +1512.03994 Quantum Gases +1512.04551 Astrophysics of Galaxies +1512.04636 Methodology +1512.05013 Physics and Society +1512.05344 Cosmology and Nongalactic Astrophysics +1512.05971 Mesoscale and Nanoscale Physics +1512.06598 Optics +1512.06684 Differential Geometry +1512.06742 Phenomenology +1512.06828 Phenomenology +1512.06959 Phenomenology +1512.07036 Adaptation and Self-Organizing Systems +1512.07243 Phenomenology +1512.07313 +1512.07683 +1512.07925 Earth and Planetary Astrophysics +1512.09130 Theory +1512.09148 Phenomenology +1512.09371 Solar and Stellar Astrophysics +1601.00068 Soft Condensed Matter +1601.00615 High Energy Astrophysical Phenomena +1601.00616 High Energy Astrophysical Phenomena +1601.01355 Phenomenology +1601.01764 Optics +1601.01823 Solar and Stellar Astrophysics +1601.01970 Cosmology and Nongalactic Astrophysics +1601.01987 Trading and Market Microstructure +1601.02276 Materials Science +1601.02541 Mesoscale and Nanoscale Physics +1601.02734 High Energy Astrophysical Phenomena +1601.02760 Combinatorics +1601.02839 Astrophysics of Galaxies +1601.03078 Fluid Dynamics +1601.05086 +1601.05135 Optics +1601.05251 Combinatorics +1601.05262 Statistical Mechanics +1601.05523 Materials Science +1601.05809 +1601.05832 Plasma Physics +1601.06063 Cosmology and Nongalactic Astrophysics +1601.06446 Materials Science +1601.06837 +1601.07147 Group Theory +1601.07314 Earth and Planetary Astrophysics +1601.07333 Networking and Internet Architecture +1601.07547 Statistical Mechanics +1601.07619 +1601.07753 Phenomenology +1601.07761 Astrophysics of Galaxies +1602.00137 Fluid Dynamics +1602.00638 Earth and Planetary Astrophysics +1602.00688 Astrophysics of Galaxies +1602.01377 Phenomenology +1602.01704 Materials Science +1602.01850 +1602.01918 +1602.02239 Materials Science +1602.03136 Mesoscale and Nanoscale Physics +1602.03343 Soft Condensed Matter +1602.03560 Lattice +1602.03892 Quantum Gases +1602.03937 Strongly Correlated Electrons +1602.04222 Astrophysics of Galaxies +1602.04378 +1602.05277 Strongly Correlated Electrons +1602.05583 Phenomenology +1602.05733 Phenomenology +1602.05966 Phenomenology +1602.06055 Strongly Correlated Electrons +1602.06362 +1602.06507 Mesoscale and Nanoscale Physics +1602.06766 Mesoscale and Nanoscale Physics +1602.06960 Astrophysics of Galaxies +1602.07666 Probability +1602.07993 +1602.08424 Quantum Gases +1602.08432 Lattice +1602.08490 Phenomenology +1603.00311 Optimization and Control +1603.00392 Earth and Planetary Astrophysics +1603.00730 High Energy Astrophysical Phenomena +1603.00996 +1603.01278 Solar and Stellar Astrophysics +1603.01449 Atomic Physics +1603.02210 +1603.02219 +1603.02264 Populations and Evolution +1603.02392 Atmospheric and Oceanic Physics +1603.02548 Strongly Correlated Electrons +1603.02680 Phenomenology +1603.03354 Mesoscale and Nanoscale Physics +1603.03550 Cosmology and Nongalactic Astrophysics +1603.03993 +1603.04152 Cosmology and Nongalactic Astrophysics +1603.04471 Theory +1603.04551 Statistics Theory +1603.04763 Analysis of PDEs +1603.04776 Phenomenology +1603.04864 Quantum Gases +1603.05242 +1603.05485 Astrophysics of Galaxies +1603.05505 Phenomenology +1603.05614 Learning +1603.05630 Lattice +1603.05645 Representation Theory +1603.05773 Numerical Analysis +1603.05798 +1603.06377 +1603.06452 Quantum Gases +1603.06472 +1603.06490 Representation Theory +1603.06592 Solar and Stellar Astrophysics +1603.06593 Solar and Stellar Astrophysics +1603.06823 Statistical Mechanics +1603.06951 Solar and Stellar Astrophysics +1603.07018 +1603.07019 Optimization and Control +1603.07095 Materials Science +1603.07229 Computer Science and Game Theory +1603.07422 Astrophysics of Galaxies +1603.07450 Mesoscale and Nanoscale Physics +1603.07469 Quantum Gases +1603.07920 Astrophysics of Galaxies +1603.08003 Solar and Stellar Astrophysics +1603.08008 Earth and Planetary Astrophysics +1603.08488 Astrophysics of Galaxies +1603.08565 Earth and Planetary Astrophysics +1603.08958 Cosmology and Nongalactic Astrophysics +1603.08999 Strongly Correlated Electrons +1603.09543 Theory +1603.09617 Databases +1604.00444 Theory +1604.00495 +1604.00857 Experiment +1604.01259 Plasma Physics +1604.01336 Astrophysics of Galaxies +1604.01403 High Energy Astrophysical Phenomena +1604.01770 Cosmology and Nongalactic Astrophysics +1604.01854 Machine Learning +1604.02121 Theory +1604.02178 Solar and Stellar Astrophysics +1604.02667 Theory +1604.02837 Statistical Mechanics +1604.03070 Classical Analysis and ODEs +1604.03107 Earth and Planetary Astrophysics +1604.03315 Phenomenology +1604.03564 Astrophysics of Galaxies +1604.03955 Strongly Correlated Electrons +1604.04149 Cryptography and Security +1604.04525 Geophysics +1604.04533 Disordered Systems and Neural Networks +1604.04785 Astrophysics of Galaxies +1604.04832 +1604.05217 Accelerator Physics +1604.05443 Solar and Stellar Astrophysics +1604.05610 Solar and Stellar Astrophysics +1604.05611 Solar and Stellar Astrophysics +1604.05613 Astrophysics of Galaxies +1604.05739 +1604.05794 Astrophysics of Galaxies +1604.05935 Solar and Stellar Astrophysics +1604.05938 Mesoscale and Nanoscale Physics +1604.06362 Earth and Planetary Astrophysics +1604.06461 Astrophysics of Galaxies +1604.06533 Earth and Planetary Astrophysics +1604.06860 Materials Science +1604.06906 Statistics Theory +1604.07170 Solar and Stellar Astrophysics +1604.07263 Theory +1604.07278 Strongly Correlated Electrons +1604.07294 High Energy Astrophysical Phenomena +1604.07313 Astrophysics of Galaxies +1604.07325 Space Physics +1604.07364 Astrophysics of Galaxies +1604.07406 Earth and Planetary Astrophysics +1604.07459 Mesoscale and Nanoscale Physics +1604.07461 Earth and Planetary Astrophysics +1604.07502 Solar and Stellar Astrophysics +1604.07552 Materials Science +1604.07616 +1604.07632 +1604.07910 Cosmology and Nongalactic Astrophysics +1604.07984 Instrumentation and Methods for Astrophysics +1604.08008 Phenomenology +1604.08177 Earth and Planetary Astrophysics +1604.08404 Solar and Stellar Astrophysics +1604.08479 +1604.08522 Quantum Gases +1604.08566 High Energy Astrophysical Phenomena +1604.08604 Earth and Planetary Astrophysics +1604.08889 Optics +1605.00084 Materials Science +1605.00135 Soft Condensed Matter +1605.00270 High Energy Astrophysical Phenomena +1605.00323 Solar and Stellar Astrophysics +1605.00530 Cosmology and Nongalactic Astrophysics +1605.00644 Astrophysics of Galaxies +1605.00658 Phenomenology +1605.00665 Astrophysics of Galaxies +1605.00675 Mesoscale and Nanoscale Physics +1605.00711 High Energy Astrophysical Phenomena +1605.00753 +1605.01055 Theory +1605.01157 Phenomenology +1605.01296 High Energy Astrophysical Phenomena +1605.01352 Programming Languages +1605.01648 High Energy Astrophysical Phenomena +1605.01683 Phenomenology +1605.01846 Artificial Intelligence +1605.01951 Phenomenology +1605.01955 Earth and Planetary Astrophysics +1605.02272 High Energy Astrophysical Phenomena +1605.02279 Distributed, Parallel, and Cluster Computing +1605.02413 Theory +1605.02654 Portfolio Management +1605.02719 Experiment +1605.02780 Solar and Stellar Astrophysics +1605.02879 Mesoscale and Nanoscale Physics +1605.03054 Astrophysics of Galaxies +1605.03166 Solar and Stellar Astrophysics +1605.03216 Solar and Stellar Astrophysics +1605.03376 Solar and Stellar Astrophysics +1605.03487 Earth and Planetary Astrophysics +1605.03625 Phenomenology +1605.04259 Analysis of PDEs +1605.04298 Statistical Mechanics +1605.04442 Lattice +1605.04775 Astrophysics of Galaxies +1605.04799 Astrophysics of Galaxies +1605.05392 High Energy Astrophysical Phenomena +1605.05517 Quantitative Methods +1605.06505 Astrophysics of Galaxies +1605.06646 Phenomenology +1605.06709 Combinatorics +1605.06942 Earth and Planetary Astrophysics +1605.07565 Astrophysics of Galaxies +1605.07667 Astrophysics of Galaxies +1605.07908 Metric Geometry +1605.07989 Artificial Intelligence +1605.08037 Astrophysics of Galaxies +1605.08533 Solar and Stellar Astrophysics +1605.08706 Chemical Physics +1605.08809 Earth and Planetary Astrophysics +1605.08968 High Energy Astrophysical Phenomena +1605.09120 High Energy Astrophysical Phenomena +1605.09377 High Energy Astrophysical Phenomena +1605.09597 +1606.00784 +1606.01030 Solar and Stellar Astrophysics +1606.01106 Programming Languages +1606.01389 Optics +1606.01658 Pattern Formation and Solitons +1606.01891 Representation Theory +1606.02294 Earth and Planetary Astrophysics +1606.02548 Astrophysics of Galaxies +1606.02733 Theory +1606.02813 Earth and Planetary Astrophysics +1606.03118 Solar and Stellar Astrophysics +1606.03512 Astrophysics of Galaxies +1606.04539 Instrumentation and Methods for Astrophysics +1606.04642 Probability +1606.04989 Astrophysics of Galaxies +1606.05333 Methodology +1606.06712 +1606.06841 Methodology +1606.06977 Mathematical Software +1606.07122 Chemical Physics +1606.07131 Mesoscale and Nanoscale Physics +1606.07694 Classical Physics +1606.07746 +1606.08035 +1606.08171 Theory +1606.08274 +1606.08462 Cosmology and Nongalactic Astrophysics +1606.08478 Solar and Stellar Astrophysics +1606.08491 Solar and Stellar Astrophysics +1606.08877 Accelerator Physics +1606.09002 Computer Vision and Pattern Recognition +1606.09008 Algebraic Geometry +1606.09143 Functional Analysis +1606.09315 Databases +1606.09492 Combinatorics +1606.09625 Algebraic Geometry +1607.00003 +1607.00220 Optics +1607.00265 Solar and Stellar Astrophysics +1607.00484 Solar and Stellar Astrophysics +1607.00537 Social and Information Networks +1607.00557 Solar and Stellar Astrophysics +1607.00619 Solar and Stellar Astrophysics +1607.00666 Mesoscale and Nanoscale Physics +1607.00680 Superconductivity +1607.00729 Cryptography and Security +1607.00930 Classical Analysis and ODEs +1607.00976 Computation and Language +1607.01006 Combinatorics +1607.01008 Populations and Evolution +1607.01009 Phenomenology +1607.01016 Phenomenology +1607.01018 +1607.01029 Neurons and Cognition +1607.01030 Theory +1607.01031 Algebraic Geometry +1607.01032 Physics and Society +1607.01033 Computational Engineering, Finance, and Science +1607.01034 Combinatorics +1607.01040 Computer Vision and Pattern Recognition +1607.01042 Fluid Dynamics +1607.01043 Algebraic Geometry +1607.01044 Physics and Society +1607.01046 Databases +1607.01050 Artificial Intelligence +1607.01052 Algebraic Topology +1607.01055 Solar and Stellar Astrophysics +1607.01058 Representation Theory +1607.01063 Mesoscale and Nanoscale Physics +1607.01064 Information Theory +1607.01066 Solar and Stellar Astrophysics +1607.01069 Representation Theory +1607.01070 Analysis of PDEs +1607.01071 Classical Analysis and ODEs +1607.01073 Methodology +1607.01075 Human-Computer Interaction +1607.01076 Human-Computer Interaction +1607.01077 Human-Computer Interaction +1607.01080 Dynamical Systems +1607.01081 Analysis of PDEs +1607.01085 Information Theory +1607.01086 Mesoscale and Nanoscale Physics +1607.01087 Algebraic Geometry +1607.01091 Information Theory +1607.01092 Computer Vision and Pattern Recognition +1607.01094 Materials Science +1607.01095 Algebraic Topology +1607.01098 Classical Analysis and ODEs +1607.01102 Graphics +1607.01103 Superconductivity +1607.01104 Optimization and Control +1607.01105 Instrumentation and Methods for Astrophysics +1607.01106 Dynamical Systems +1607.01108 Algebraic Topology +1607.01110 Pricing of Securities +1607.01111 Materials Science +1607.01113 Analysis of PDEs +1607.01115 Computer Vision and Pattern Recognition +1607.01116 Information Theory +1607.01117 Combinatorics +1607.01118 Algebraic Topology +1607.01121 Optimization and Control +1607.01124 Information Theory +1607.01127 Probability +1607.01130 Mesoscale and Nanoscale Physics +1607.01131 Soft Condensed Matter +1607.01133 Computation and Language +1607.01135 Other Quantitative Biology +1607.01136 Learning +1607.01138 Other Quantitative Biology +1607.01139 Theory +1607.01140 +1607.01141 Combinatorics +1607.01144 Quantum Algebra +1607.01145 Methodology +1607.01146 Logic in Computer Science +1607.01147 Commutative Algebra +1607.01149 Computation and Language +1607.01150 Analysis of PDEs +1607.01152 Machine Learning +1607.01153 +1607.01154 +1607.01156 Analysis of PDEs +1607.01158 Phenomenology +1607.01159 Multimedia +1607.01162 Data Structures and Algorithms +1607.01163 Symplectic Geometry +1607.01165 Phenomenology +1607.01170 Lattice +1607.01172 Multimedia +1607.01181 Astrophysics of Galaxies +1607.01185 Dynamical Systems +1607.01186 Numerical Analysis +1607.01194 Optics +1607.01197 Number Theory +1607.01198 Analysis of PDEs +1607.01199 Phenomenology +1607.01200 Analysis of PDEs +1607.01202 Systems and Control +1607.01205 Computer Vision and Pattern Recognition +1607.01209 Probability +1607.01213 Optics +1607.01215 +1607.01219 Differential Geometry +1607.01220 Chemical Physics +1607.01221 Optics +1607.01224 Machine Learning +1607.01225 Optics +1607.01228 Commutative Algebra +1607.01229 Data Structures and Algorithms +1607.01233 Combinatorics +1607.01234 +1607.01235 Analysis of PDEs +1607.01236 Phenomenology +1607.01239 +1607.01241 Statistical Mechanics +1607.01243 Analysis of PDEs +1607.01249 Mathematical Software +1607.01250 General Physics +1607.01251 Statistics Theory +1607.01257 Computational Geometry +1607.01258 Number Theory +1607.01261 Multimedia +1607.01265 Physics and Society +1607.01268 General Physics +1607.01270 Statistical Mechanics +1607.01271 Dynamical Systems +1607.01274 Computation and Language +1607.01276 Algebraic Geometry +1607.01279 Solar and Stellar Astrophysics +1607.01281 Geometric Topology +1607.01282 Earth and Planetary Astrophysics +1607.01283 Discrete Mathematics +1607.01284 Information Theory +1607.01286 Theory +1607.01287 Phenomenology +1607.01289 Statistical Mechanics +1607.01293 High Energy Astrophysical Phenomena +1607.01295 +1607.01296 +1607.01297 +1607.01301 Instrumentation and Detectors +1607.01307 Materials Science +1607.01313 Computer Science and Game Theory +1607.01317 Mathematical Finance +1607.01320 Phenomenology +1607.01321 History and Overview +1607.01323 Numerical Analysis +1607.01324 Algebraic Geometry +1607.01326 +1607.01328 Quantum Gases +1607.01331 +1607.01334 +1607.01337 Artificial Intelligence +1607.01338 Analysis of PDEs +1607.01339 Plasma Physics +1607.01342 Algebraic Geometry +1607.01343 Classical Analysis and ODEs +1607.01344 Group Theory +1607.01346 Information Theory +1607.01349 Analysis of PDEs +1607.01350 +1607.01354 Learning +1607.01355 Applications +1607.01356 General Physics +1607.01358 Fluid Dynamics +1607.01359 Computers and Society +1607.01361 Theory +1607.01362 Functional Analysis +1607.01365 Astrophysics of Galaxies +1607.01366 Optics +1607.01368 Rings and Algebras +1607.01371 Applications +1607.01374 +1607.01375 Computation +1607.01376 Fluid Dynamics +1607.01377 Logic +1607.01381 Machine Learning +1607.01384 Genomics +cond-mat/0506449 Statistical Mechanics +math/0208005 Complex Variables +math/0401219 Metric Geometry +math/0412365 Group Theory +math/0502585 Geometric Topology +math/0504011 Differential Geometry +math/0506441 Complex Variables +math/0509566 Number Theory +math/0608553 Classical Analysis and ODEs +physics/0610041 Atomic and Molecular Clusters +0909.1963 Differential Geometry +1001.5312 Complex Variables +1004.1418 High Energy Astrophysical Phenomena +1009.5725 Complex Variables +1012.0156 Complex Variables +1108.0001 +1111.4221 Theory +1202.4732 Number Theory +1203.4801 +1205.2162 Quantum Gases +1208.2930 Commutative Algebra +1210.2390 +1211.7360 K-Theory and Homology +1305.0760 Phenomenology +1305.3606 Solar and Stellar Astrophysics +1305.3648 Dynamical Systems +1305.5361 Algebraic Geometry +1307.6445 Neurons and Cognition +1309.2381 Cosmology and Nongalactic Astrophysics +1309.4344 Probability +1309.5791 Algebraic Geometry +1309.7446 Differential Geometry +1309.7939 Pattern Formation and Solitons +1310.6774 Cosmology and Nongalactic Astrophysics +1311.4371 +1312.3276 Atomic Physics +1312.3791 Materials Science +1401.5486 General Mathematics +1402.2535 Analysis of PDEs +1402.4893 Computer Vision and Pattern Recognition +1403.2989 Dynamical Systems +1403.7620 Superconductivity +1404.5380 Geometric Topology +1405.4629 Combinatorics +1405.6905 Mathematical Finance +1406.0990 Differential Geometry +1406.6608 Networking and Internet Architecture +1407.4091 Metric Geometry +1407.6476 Commutative Algebra +1407.8339 Learning +1408.0361 Statistics Theory +1408.2528 Strongly Correlated Electrons +1408.3103 Materials Science +1409.0858 Cosmology and Nongalactic Astrophysics +1409.1726 Social and Information Networks +1409.1729 Rings and Algebras +1409.2831 Solar and Stellar Astrophysics +1409.4053 Classical Analysis and ODEs +1409.4327 Computer Vision and Pattern Recognition +1410.4032 Phenomenology +1410.4181 Analysis of PDEs +1410.4881 Theory +1410.5269 Algebraic Topology +1410.5619 Geometric Topology +1410.8547 +1411.1382 Rings and Algebras +1411.1492 Differential Geometry +1411.2870 Astrophysics of Galaxies +1411.3939 Analysis of PDEs +1411.4386 Accelerator Physics +1412.4063 High Energy Astrophysical Phenomena +1412.4477 Geometric Topology +1412.5168 Mesoscale and Nanoscale Physics +1412.7053 Superconductivity +1412.7847 Geometric Topology +1412.8714 Phenomenology +1412.8717 Phenomenology +1501.04308 Probability +1501.05366 Mesoscale and Nanoscale Physics +1501.06707 +1502.00431 Quantum Gases +1502.02590 Learning +1502.03166 Number Theory +1502.03262 Phenomenology +1502.04339 Dynamical Systems +1502.04852 Geometric Topology +1502.05079 Algebraic Geometry +1502.05679 Number Theory +1502.05749 Materials Science +1502.07973 +1503.01391 +1503.01629 Analysis of PDEs +1503.04160 Algebraic Geometry +1503.04532 +1503.05026 Strongly Correlated Electrons +1503.05724 Machine Learning +1503.06035 Commutative Algebra +1503.07254 Optimization and Control +1504.00289 Optics +1504.00628 Mesoscale and Nanoscale Physics +1504.01646 Representation Theory +1504.02522 Number Theory +1504.02868 Strongly Correlated Electrons +1504.03041 +1504.03444 Number Theory +1504.04484 Fluid Dynamics +1504.05300 Differential Geometry +1504.05611 Dynamical Systems +1504.05629 Symplectic Geometry +1504.07130 +1504.07517 Pattern Formation and Solitons +1504.07770 Quantum Gases +1504.07837 Number Theory +1504.08019 Quantum Gases +1505.00369 Statistics Theory +1505.01817 Social and Information Networks +1505.02017 Genomics +1505.02206 Computer Vision and Pattern Recognition +1505.02476 Physics and Society +1505.03098 Algebraic Topology +1505.03870 Phenomenology +1505.04253 Group Theory +1505.04915 Differential Geometry +1505.05102 +1505.07444 Quantum Gases +1505.08046 Probability +1505.08142 +1506.00048 Differential Geometry +1506.00742 Number Theory +1506.01342 Computer Vision and Pattern Recognition +1506.03571 Methodology +1506.03876 +1506.05032 Computer Vision and Pattern Recognition +1506.07171 Strongly Correlated Electrons +1506.07283 Statistical Mechanics +1506.07300 Learning +1506.07376 Soft Condensed Matter +1506.08948 Superconductivity +1506.09034 Probability +1506.09075 Computer Vision and Pattern Recognition +1507.00339 Theory +1507.01436 Strongly Correlated Electrons +1507.02461 Theory +1507.02661 Earth and Planetary Astrophysics +1507.02757 Physics and Society +1507.04079 Optics +1507.07285 Mesoscale and Nanoscale Physics +1508.00760 Atomic Physics +1508.01109 Astrophysics of Galaxies +1508.01114 +1508.01435 Numerical Analysis +1508.01830 Strongly Correlated Electrons +1508.02396 Theory +1508.02692 Analysis of PDEs +1508.03050 Phenomenology +1508.03321 Phenomenology +1508.03343 +1508.03405 Probability +1508.03963 Materials Science +1508.04255 Soft Condensed Matter +1508.04270 Superconductivity +1508.04332 General Finance +1508.04491 Superconductivity +1508.04682 +1508.04847 Mesoscale and Nanoscale Physics +1508.06980 Experiment +1508.07905 Superconductivity +1509.00744 Materials Science +1509.01561 +1509.01563 Materials Science +1509.02758 High Energy Astrophysical Phenomena +1509.03166 Mesoscale and Nanoscale Physics +1509.03184 +1509.03336 Theory +1509.04272 Theory +1509.04665 +1509.05506 Information Theory +1509.06924 +1509.07777 +1509.08085 +1509.08804 +1509.08939 +1510.00302 Phenomenology +1510.00448 Quantum Gases +1510.00470 Materials Science +1510.00546 +1510.00750 Mesoscale and Nanoscale Physics +1510.01097 Atomic Physics +1510.01686 Phenomenology +1510.02582 Theory +1510.02984 Computational Physics +1510.03293 Phenomenology +1510.03316 +1510.03390 Theory +1510.03428 Strongly Correlated Electrons +1510.03450 Phenomenology +1510.03460 Phenomenology +1510.03554 Cosmology and Nongalactic Astrophysics +1510.04266 Algebraic Geometry +1510.04783 Phenomenology +1510.04920 +1510.05085 Materials Science +1510.05526 Statistics Theory +1510.05692 Phenomenology +1510.05816 +1510.05928 +1510.06329 Functional Analysis +1510.06381 Dynamical Systems +1510.06719 Theory +1510.06785 Physics and Society +1510.06938 +1510.07029 Theory +1510.07754 Experiment +1510.07916 Statistical Mechanics +1510.08077 Cosmology and Nongalactic Astrophysics +1510.08088 Soft Condensed Matter +1510.08288 Phenomenology +1510.08948 Phenomenology +1510.09172 Superconductivity +1511.00602 Physics and Society +1511.00697 Phenomenology +1511.00738 +1511.01200 Phenomenology +1511.01348 Mesoscale and Nanoscale Physics +1511.01364 Mesoscale and Nanoscale Physics +1511.01843 Strongly Correlated Electrons +1511.02244 Phenomenology +1511.02708 +1511.03485 Phenomenology +1511.03654 High Energy Astrophysical Phenomena +1511.04366 High Energy Astrophysical Phenomena +1511.04638 Cosmology and Nongalactic Astrophysics +1511.05652 +1511.05823 Algebraic Topology +1511.05970 Theory +1511.06045 Soft Condensed Matter +1511.06289 +1511.06881 Computer Vision and Pattern Recognition +1511.06939 Learning +1511.07232 Mesoscale and Nanoscale Physics +1511.07323 +1511.07880 Strongly Correlated Electrons +1511.08120 Phenomenology +1511.08223 Theory +1511.08390 Mesoscale and Nanoscale Physics +1511.08418 Computer Vision and Pattern Recognition +1511.08430 Quantum Gases +1511.08835 +1511.09176 Phenomenology +1512.00452 Astrophysics of Galaxies +1512.00470 Theory +1512.00760 Strongly Correlated Electrons +1512.00913 Phenomenology +1512.01245 Superconductivity +1512.01494 +1512.01888 +1512.02212 Statistical Mechanics +1512.02453 Plasma Physics +1512.02491 Statistical Mechanics +1512.02654 Cosmology and Nongalactic Astrophysics +1512.02906 Mesoscale and Nanoscale Physics +1512.02932 +1512.02936 Optics +1512.03001 Phenomenology +1512.03010 +1512.03158 +1512.03322 Quantum Gases +1512.03369 Mesoscale and Nanoscale Physics +1512.03392 +1512.03869 Geometric Topology +1512.03893 Materials Science +1512.04440 Soft Condensed Matter +1512.04899 +1512.05032 Number Theory +1512.05274 Physics and Society +1512.05304 Mesoscale and Nanoscale Physics +1512.05439 Phenomenology +1512.05474 Phenomenology +1512.05713 +1512.05985 Materials Science +1512.05995 Quantum Gases +1512.06028 Phenomenology +1512.06048 +1512.06201 Statistical Mechanics +1512.06395 Databases +1512.06931 Mesoscale and Nanoscale Physics +1512.07028 Solar and Stellar Astrophysics +1512.07198 Cosmology and Nongalactic Astrophysics +1512.07244 +1512.07433 +1512.07555 Lattice +1512.07621 Statistics Theory +1512.07705 Theory +1512.07825 Strongly Correlated Electrons +1512.07828 High Energy Astrophysical Phenomena +1512.07913 Solar and Stellar Astrophysics +1512.07977 +1512.08214 +1512.08275 +1512.08446 Quantum Gases +1512.08616 Soft Condensed Matter +1512.08678 Lattice +1512.09102 Optics +1512.09146 +1601.00026 +1601.00189 +1601.00235 Theory +1601.00251 Instrumentation and Detectors +1601.00531 Mesoscale and Nanoscale Physics +1601.01250 +1601.01449 Solar and Stellar Astrophysics +1601.02074 Combinatorics +1601.02247 Phenomenology +1601.02534 Mesoscale and Nanoscale Physics +1601.02874 Instrumentation and Detectors +1601.03021 +1601.03046 Theory +1601.03181 High Energy Astrophysical Phenomena +1601.03270 Strongly Correlated Electrons +1601.03335 Commutative Algebra +1601.03404 Mesoscale and Nanoscale Physics +1601.03729 Cosmology and Nongalactic Astrophysics +1601.04137 Phenomenology +1601.04241 Phenomenology +1601.04645 Strongly Correlated Electrons +1601.05046 Optics +1601.05157 Soft Condensed Matter +1601.05209 Solar and Stellar Astrophysics +1601.05735 +1601.05869 Quantum Gases +1601.06080 Astrophysics of Galaxies +1601.06086 Theory +1601.06157 Analysis of PDEs +1601.06171 Astrophysics of Galaxies +1601.07017 Solar and Stellar Astrophysics +1601.07103 +1601.07542 Solar and Stellar Astrophysics +1601.07638 Representation Theory +1601.07732 +1601.07735 High Energy Astrophysical Phenomena +1601.07784 Theory +1602.00009 Earth and Planetary Astrophysics +1602.00322 Earth and Planetary Astrophysics +1602.00460 Astrophysics of Galaxies +1602.00464 Fluid Dynamics +1602.00517 Solar and Stellar Astrophysics +1602.00835 Solar and Stellar Astrophysics +1602.01194 Strongly Correlated Electrons +1602.01677 Phenomenology +1602.01685 Soft Condensed Matter +1602.02031 Statistical Mechanics +1602.02227 +1602.02259 Theory +1602.02605 Statistics Theory +1602.02694 Numerical Analysis +1602.02811 +1602.03430 High Energy Astrophysical Phenomena +1602.03802 Combinatorics +1602.04337 +1602.04788 Phenomenology +1602.05388 Computation and Language +1602.05401 Combinatorics +1602.05514 Phenomenology +1602.05553 High Energy Astrophysical Phenomena +1602.05785 Earth and Planetary Astrophysics +1602.05970 Geophysics +1602.06216 Superconductivity +1602.06715 Number Theory +1602.06955 High Energy Astrophysical Phenomena +1602.07121 Astrophysics of Galaxies +1602.07140 Physics and Society +1602.08157 Strongly Correlated Electrons +1602.08238 Information Theory +1602.08303 Atomic Physics +1602.08359 Algebraic Geometry +1602.08942 Astrophysics of Galaxies +1602.09011 Strongly Correlated Electrons +1603.00270 Solar and Stellar Astrophysics +1603.00489 Computer Vision and Pattern Recognition +1603.01050 +1603.01220 +1603.01452 Astrophysics of Galaxies +1603.01627 +1603.01713 Medical Physics +1603.01774 Digital Libraries +1603.01846 Subcellular Processes +1603.02178 Social and Information Networks +1603.02774 +1603.03120 +1603.04221 High Energy Astrophysical Phenomena +1603.05509 High Energy Astrophysical Phenomena +1603.05657 Solar and Stellar Astrophysics +1603.05999 Solar and Stellar Astrophysics +1603.06010 Cosmology and Nongalactic Astrophysics +1603.06041 Computer Vision and Pattern Recognition +1603.06096 Astrophysics of Galaxies +1603.06479 Analysis of PDEs +1603.06591 High Energy Astrophysical Phenomena +1603.06595 Astrophysics of Galaxies +1603.06601 Astrophysics of Galaxies +1603.06602 Astrophysics of Galaxies +1603.07049 Statistical Mechanics +1603.07199 Operator Algebras +1603.07228 Mesoscale and Nanoscale Physics +1603.07290 +1603.07673 Cosmology and Nongalactic Astrophysics +1603.07758 Statistical Mechanics +1603.07840 Combinatorics +1603.08162 Numerical Analysis +1603.08246 Systems and Control +1603.08247 +1603.08253 Artificial Intelligence +1603.08262 Artificial Intelligence +1603.08298 Dynamical Systems +1603.08308 Human-Computer Interaction +1603.08512 Data Analysis, Statistics and Probability +1603.08514 Databases +1603.08517 Mesoscale and Nanoscale Physics +1603.08525 Phenomenology +1603.08533 Number Theory +1603.08535 Soft Condensed Matter +1603.08540 Number Theory +1603.08541 Analysis of PDEs +1603.08543 Robotics +1603.08544 Materials Science +1603.08546 History and Overview +1603.08549 History and Overview +1603.08551 Neural and Evolutionary Computing +1603.08555 +1603.08556 Dynamical Systems +1603.08558 Theory +1603.08564 Computer Vision and Pattern Recognition +1603.08566 Differential Geometry +1603.08568 Differential Geometry +1603.08569 Rings and Algebras +1603.08570 Mesoscale and Nanoscale Physics +1603.08571 Numerical Analysis +1603.08573 Solar and Stellar Astrophysics +1603.08577 Software Engineering +1603.08581 Materials Science +1603.08582 Robotics +1603.08583 Combinatorics +1603.08584 Statistics Theory +1603.08587 Differential Geometry +1603.08589 Information Theory +1603.08590 Geometric Topology +1603.08591 Experiment +1603.08592 Computer Vision and Pattern Recognition +1603.08593 Optimization and Control +1603.08594 Computation and Language +1603.08597 Computer Vision and Pattern Recognition +1603.08598 Logic +1603.08600 +1603.08601 Logic +1603.08602 Methodology +1603.08603 Materials Science +1603.08604 Learning +1603.08605 Dynamical Systems +1603.08607 +1603.08610 Probability +1603.08611 Theory +1603.08616 Learning +1603.08617 Plasma Physics +1603.08618 Strongly Correlated Electrons +1603.08619 Distributed, Parallel, and Cluster Computing +1603.08621 Operator Algebras +1603.08622 Probability +1603.08623 Number Theory +1603.08624 Theory +1603.08625 Mesoscale and Nanoscale Physics +1603.08627 Data Structures and Algorithms +1603.08629 +1603.08631 Computer Vision and Pattern Recognition +1603.08632 Software Engineering +1603.08633 Software Engineering +1603.08634 Distributed, Parallel, and Cluster Computing +1603.08635 Systems and Control +1603.08636 Software Engineering +1603.08641 +1603.08642 Robotics +1603.08647 Biological Physics +1603.08650 Group Theory +1603.08651 Metric Geometry +1603.08652 Methodology +1603.08655 Populations and Evolution +1603.08656 +1603.08664 Networking and Internet Architecture +1603.08671 Solar and Stellar Astrophysics +1603.08674 +1603.08676 +1603.08678 Computer Vision and Pattern Recognition +1603.08680 Mesoscale and Nanoscale Physics +1603.08681 Experiment +1603.08682 Earth and Planetary Astrophysics +1603.08684 Optics +1603.08686 Numerical Analysis +1603.08687 Functional Analysis +1603.08691 Statistics Theory +1603.08697 Information Theory +1603.08699 Functional Analysis +1603.08701 Computation and Language +1603.08702 Computation and Language +1603.08704 Machine Learning +1603.08705 Computation and Language +1603.08706 Functional Analysis +1603.08708 Machine Learning +1603.08710 Superconductivity +1603.08712 Cell Behavior +1603.08713 General Topology +1603.08715 Group Theory +1603.08716 Optimization and Control +1603.08723 Functional Analysis +1603.08726 Differential Geometry +1603.08728 +1603.08730 Strongly Correlated Electrons +1603.08732 Algebraic Geometry +1603.08733 Numerical Analysis +1603.08737 +1603.08738 +1603.08740 Sound +1603.08746 Materials Science +1603.08750 Analysis of PDEs +1603.08752 Symbolic Computation +1603.08753 Graphics +1603.08755 +1603.08762 Functional Analysis +1603.08766 Optimization and Control +1603.08767 Distributed, Parallel, and Cluster Computing +1603.08768 Category Theory +1603.08769 Logic in Computer Science +1603.08771 Chaotic Dynamics +1603.08775 Combinatorics +1603.08777 Information Theory +1603.08779 Combinatorics +1603.08780 Analysis of PDEs +1603.08789 Artificial Intelligence +1603.08792 +1603.08793 +1603.08797 Representation Theory +1603.08801 +1603.08810 Computer Vision and Pattern Recognition +1603.08813 Applications +1603.08815 Computation +1603.08820 Plasma Physics +1603.08821 Physics and Society +1603.08825 +1603.08826 Quantum Gases +1603.08828 Mathematical Finance +1603.08830 Methodology +1603.08832 Computation and Language +1603.08833 Logic +1603.08835 Statistical Mechanics +1603.08839 Superconductivity +1603.08841 Instrumentation and Detectors +1603.08843 Functional Analysis +1603.08845 Probability +1603.08850 Metric Geometry +1603.08851 Optimization and Control +1603.08852 Functional Analysis +1603.08853 Computer Science and Game Theory +1603.08854 Lattice +1603.08855 Algebraic Topology +1603.08857 Space Physics +1603.08858 Numerical Analysis +1603.08863 Solar and Stellar Astrophysics +1603.08868 Computation and Language +1603.08869 Artificial Intelligence +1603.08870 Algebraic Geometry +1603.08872 Complex Variables +1603.08877 Geometric Topology +1603.08879 Materials Science +1603.08884 Computation and Language +1603.08885 Networking and Internet Architecture +1603.08888 Dynamical Systems +1603.08889 Medical Physics +1603.08891 Superconductivity +1603.08897 Superconductivity +1603.08899 Materials Science +1603.08902 Instrumentation and Methods for Astrophysics +1603.08903 Atomic Physics +1603.08907 Computer Vision and Pattern Recognition +1603.08912 Analysis of PDEs +1603.08915 Representation Theory +cond-mat/0310441 Strongly Correlated Electrons +0909.1066 Analysis of PDEs +1011.5704 Strongly Correlated Electrons +1101.3411 Mesoscale and Nanoscale Physics +1109.4547 Numerical Analysis +1201.3667 Logic in Computer Science +1205.2988 Category Theory +1205.3279 Theory +1205.3584 Theory +1205.3862 Theory +1206.0439 +1211.0885 Group Theory +1211.1296 Classical Analysis and ODEs +1211.6274 Algebraic Geometry +1212.1364 Optics +1301.7577 Theory +1302.3766 Group Theory +1302.5906 Information Theory +1303.2234 +1303.2994 Algebraic Geometry +1304.4997 Algebraic Geometry +1304.6048 Geophysics +1306.2793 Probability +1306.3669 Dynamical Systems +1307.6853 Fluid Dynamics +1308.1863 Representation Theory +1308.6082 Analysis of PDEs +1309.3904 Representation Theory +1309.7125 Soft Condensed Matter +1310.1521 Fluid Dynamics +1310.5761 Materials Science +1310.5796 Learning +1311.3524 Category Theory +1311.7277 Dynamical Systems +1401.5490 Astrophysics of Galaxies +1401.7530 Dynamical Systems +1402.1312 Dynamical Systems +1402.1717 Representation Theory +1402.3351 Representation Theory +1402.5915 Fluid Dynamics +1402.6453 Theory +1403.0310 Geometric Topology +1403.2701 Dynamical Systems +1403.7142 Plasma Physics +1404.0271 Symplectic Geometry +1404.2778 Dynamical Systems +1404.5070 Number Theory +1405.3913 Probability +1405.4224 Quantum Gases +1405.4747 Dynamical Systems +1405.5715 Functional Analysis +1406.2403 +1407.6404 Dynamical Systems +1408.0651 Artificial Intelligence +1408.2493 Logic +1408.4107 Combinatorics +1408.5488 Combinatorics +1408.6027 Learning +1408.6716 Algebraic Geometry +1409.2698 Commutative Algebra +1409.3688 +1409.5686 Learning +1409.6593 Algebraic Geometry +1409.7040 Analysis of PDEs +1410.4211 Strongly Correlated Electrons +1410.6708 Algebraic Geometry +1410.6908 K-Theory and Homology +1410.7807 Analysis of PDEs +1411.0794 Logic +1411.1098 Physics and Society +1411.6516 Numerical Analysis +1412.0396 Materials Science +1412.2860 Cosmology and Nongalactic Astrophysics +1412.2926 Theory +1412.2955 Phenomenology +1412.4020 Logic in Computer Science +1501.01618 Cosmology and Nongalactic Astrophysics +1501.02189 Phenomenology +1501.06203 Superconductivity +1501.06730 +1502.00979 Information Theory +1502.05406 Phenomenology +1503.01518 Materials Science +1503.02084 Astrophysics of Galaxies +1503.04025 Statistical Mechanics +1503.05633 Strongly Correlated Electrons +1503.05780 Optics +1504.00346 Quantum Gases +1504.00946 Methodology +1504.01652 Quantum Gases +1504.04128 Phenomenology +1504.04529 Combinatorics +1504.05141 Classical Analysis and ODEs +1504.07585 Phenomenology +1504.07974 Systems and Control +1504.08150 Performance +1505.01181 Information Theory +1505.01320 +1505.02371 Logic in Computer Science +1505.02645 Theory +1505.02753 Physics and Society +1505.03520 Strongly Correlated Electrons +1505.04529 Superconductivity +1505.04987 Category Theory +1505.06645 High Energy Astrophysical Phenomena +1505.06994 +1505.07146 Astrophysics of Galaxies +1505.07196 Strongly Correlated Electrons +1505.07998 Adaptation and Self-Organizing Systems +1506.00377 +1506.00924 Mesoscale and Nanoscale Physics +1506.03706 Instrumentation and Methods for Astrophysics +1506.04031 Phenomenology +1506.05436 Algebraic Topology +1506.06420 Commutative Algebra +1506.06453 Phenomenology +1506.07266 Pattern Formation and Solitons +1506.07293 Physics and Society +1506.08512 +1506.09115 Physics and Society +1507.00112 Numerical Analysis +1507.01836 Soft Condensed Matter +1507.02034 Fluid Dynamics +1507.02074 Statistics Theory +1507.02251 Atomic Physics +1507.02940 Populations and Evolution +1507.03135 Quantum Gases +1507.04675 +1507.05428 Numerical Analysis +1507.05697 Number Theory +1507.06955 Cryptography and Security +1507.07261 Solar and Stellar Astrophysics +1507.07333 Representation Theory +1507.08579 Phenomenology +1507.08875 Soft Condensed Matter +1508.00148 Statistical Mechanics +1508.00350 Statistical Mechanics +1508.00433 Theory +1508.01218 Experiment +1508.03409 Phenomenology +1508.03580 Astrophysics of Galaxies +1508.03635 Strongly Correlated Electrons +1508.04138 Cosmology and Nongalactic Astrophysics +1508.04375 Strongly Correlated Electrons +1508.04407 Mesoscale and Nanoscale Physics +1508.05278 Quantum Gases +1508.06278 Theory +1508.06485 Earth and Planetary Astrophysics +1508.06516 Data Analysis, Statistics and Probability +1508.06842 Optimization and Control +1508.07368 +1508.07382 Statistical Mechanics +1508.07521 Mesoscale and Nanoscale Physics +1508.07960 Experiment +1509.00851 Theory +1509.01229 Disordered Systems and Neural Networks +1509.01279 Astrophysics of Galaxies +1509.01350 Quantum Gases +1509.01479 Computational Finance +1509.02782 Instrumentation and Detectors +1509.02804 Statistical Mechanics +1509.02950 Cosmology and Nongalactic Astrophysics +1509.03396 Strongly Correlated Electrons +1509.03538 Statistical Mechanics +1509.03572 Theory +1509.03726 Theory +1509.04280 Strongly Correlated Electrons +1509.04284 Phenomenology +1509.04969 Theory +1509.05098 +1509.05307 +1509.06552 +1509.06767 Information Theory +1509.07691 Fluid Dynamics +1509.07901 Solar and Stellar Astrophysics +1509.08461 Strongly Correlated Electrons +1509.08655 Phenomenology +1510.00190 Statistical Mechanics +1510.00311 Phenomenology +1510.00660 Neurons and Cognition +1510.01561 Instrumentation and Methods for Astrophysics +1510.02025 Materials Science +1510.02051 Classical Analysis and ODEs +1510.03114 Phenomenology +1510.03738 Algebraic Geometry +1510.03834 Mesoscale and Nanoscale Physics +1510.04306 Biomolecules +1510.04416 +1510.04615 High Energy Astrophysical Phenomena +1510.04970 Mesoscale and Nanoscale Physics +1510.05007 Strongly Correlated Electrons +1510.05019 Astrophysics of Galaxies +1510.05022 High Energy Astrophysical Phenomena +1510.05298 Space Physics +1510.05504 Astrophysics of Galaxies +1510.06209 Superconductivity +1510.07677 Earth and Planetary Astrophysics +1510.08368 Systems and Control +1510.08637 Physics and Society +1510.08976 Physics and Society +1511.00407 +1511.00765 Disordered Systems and Neural Networks +1511.00828 Theory +1511.01127 Mesoscale and Nanoscale Physics +1511.01244 Theory +1511.01676 Theory +1511.01769 Mesoscale and Nanoscale Physics +1511.01797 Astrophysics of Galaxies +1511.02191 Astrophysics of Galaxies +1511.02197 Classical Physics +1511.02311 Strongly Correlated Electrons +1511.02631 High Energy Astrophysical Phenomena +1511.02787 Theory +1511.02805 Phenomenology +1511.02821 Machine Learning +1511.02861 Earth and Planetary Astrophysics +1511.03092 Mesoscale and Nanoscale Physics +1511.03276 Mesoscale and Nanoscale Physics +1511.03279 Superconductivity +1511.03627 Mesoscale and Nanoscale Physics +1511.03672 Cosmology and Nongalactic Astrophysics +1511.03718 Solar and Stellar Astrophysics +1511.03754 Atomic Physics +1511.04032 Computer Science and Game Theory +1511.04299 Cosmology and Nongalactic Astrophysics +1511.04459 Strongly Correlated Electrons +1511.04594 Cryptography and Security +1511.04624 Materials Science +1511.04660 Phenomenology +1511.05154 Phenomenology +1511.05188 Theory +1511.05228 Differential Geometry +1511.05331 Chemical Physics +1511.05343 High Energy Astrophysical Phenomena +1511.05444 +1511.05505 Theory +1511.05580 High Energy Astrophysical Phenomena +1511.05950 Learning +1511.05994 Cosmology and Nongalactic Astrophysics +1511.06003 +1511.06083 +1511.06300 Astrophysics of Galaxies +1511.06401 Strongly Correlated Electrons +1511.06402 Earth and Planetary Astrophysics +1511.06442 Learning +1511.06581 Learning +1511.06801 +1511.06816 Theory +1511.07032 Algebraic Geometry +1511.07313 Biomolecules +1511.07351 Phenomenology +1511.07435 Earth and Planetary Astrophysics +1511.07447 Phenomenology +1511.07706 Phenomenology +1511.07991 +1511.08284 Mesoscale and Nanoscale Physics +1511.08381 Mesoscale and Nanoscale Physics +1511.08401 +1511.08561 +1511.08675 Phenomenology +1511.08708 Statistical Mechanics +1511.08883 Materials Science +1511.08901 Earth and Planetary Astrophysics +1511.08983 Fluid Dynamics +1511.09151 Materials Science +1511.09309 Theory +1511.09415 Phenomenology +1511.09443 Earth and Planetary Astrophysics +1512.00068 Phenomenology +1512.00316 Physics and Society +1512.00426 Phenomenology +1512.00651 Solar and Stellar Astrophysics +1512.00924 Numerical Analysis +1512.00962 Combinatorics +1512.01077 Combinatorics +1512.01094 Experiment +1512.01367 Astrophysics of Galaxies +1512.01577 +1512.01729 Theory +1512.02055 Atomic Physics +1512.02081 Materials Science +1512.02153 Disordered Systems and Neural Networks +1512.02262 +1512.02414 Earth and Planetary Astrophysics +1512.02556 Phenomenology +1512.02694 Cosmology and Nongalactic Astrophysics +1512.03370 +1512.03579 Experiment +1512.03930 Strongly Correlated Electrons +1512.04021 Logic in Computer Science +1512.04097 Artificial Intelligence +1512.04146 Mesoscale and Nanoscale Physics +1512.04358 Artificial Intelligence +1512.04401 Theory +1512.04485 Representation Theory +1512.04544 Cosmology and Nongalactic Astrophysics +1512.04923 Optics +1512.05019 Theory +1512.05052 +1512.05149 Mesoscale and Nanoscale Physics +1512.05165 Phenomenology +1512.05247 Artificial Intelligence +1512.05254 Superconductivity +1512.05267 Mesoscale and Nanoscale Physics +1512.05410 Theory +1512.05559 Phenomenology +1512.05764 Astrophysics of Galaxies +1512.05802 General Topology +1512.05912 Strongly Correlated Electrons +1512.06177 Quantum Gases +1512.06604 +1512.06652 +1512.06739 Phenomenology +1512.06953 Fluid Dynamics +1512.07078 Mesoscale and Nanoscale Physics +1512.07083 +1512.07144 Statistical Mechanics +1512.07249 Lattice +1512.07294 Earth and Planetary Astrophysics +1512.07462 Phenomenology +1512.08434 Phenomenology +1512.08466 Theory +1512.08559 Statistical Mechanics +1512.09125 +1601.00178 Phenomenology +1601.00349 Solar and Stellar Astrophysics +1601.00406 Phenomenology +1601.00529 Artificial Intelligence +1601.01515 Cosmology and Nongalactic Astrophysics +1601.01536 Symplectic Geometry +1601.01699 Earth and Planetary Astrophysics +1601.01760 Fluid Dynamics +1601.02178 Phenomenology +1601.02457 Phenomenology +1601.02630 Astrophysics of Galaxies +1601.02682 +1601.03007 Phenomenology +1601.03045 Space Physics +1601.03269 Astrophysics of Galaxies +1601.03274 Theory +1601.03285 Soft Condensed Matter +1601.03330 Pattern Formation and Solitons +1601.03576 Phenomenology +1601.03601 +1601.03697 Fluid Dynamics +1601.03706 +1601.03761 High Energy Astrophysical Phenomena +1601.03847 Phenomenology +1601.03959 Earth and Planetary Astrophysics +1601.04050 Soft Condensed Matter +1601.04058 Disordered Systems and Neural Networks +1601.04232 Theory +1601.04459 Phenomenology +1601.04719 Instrumentation and Methods for Astrophysics +1601.05206 High Energy Astrophysical Phenomena +1601.05341 +1601.05365 Mesoscale and Nanoscale Physics +1601.05379 +1601.05424 Cosmology and Nongalactic Astrophysics +1601.05852 Theory +1601.05859 Mesoscale and Nanoscale Physics +1601.06409 Superconductivity +1601.06558 Representation Theory +1601.06696 Theory +1601.06832 Earth and Planetary Astrophysics +1601.06960 Astrophysics of Galaxies +1601.07645 High Energy Astrophysical Phenomena +1601.07675 Quantum Gases +1601.07730 Phenomenology +1601.07737 Phenomenology +1601.07748 Instrumentation and Methods for Astrophysics +1601.07786 Atomic Physics +1601.07799 Astrophysics of Galaxies +1601.07957 Optics +1602.00012 Astrophysics of Galaxies +1602.00017 Plasma Physics +1602.00058 Solar and Stellar Astrophysics +1602.00071 Data Analysis, Statistics and Probability +1602.00184 Soft Condensed Matter +1602.00370 Learning +1602.00425 Superconductivity +1602.00606 High Energy Astrophysical Phenomena +1602.00610 Differential Geometry +1602.00783 Experiment +1602.01031 +1602.01317 Phenomenology +1602.01350 Strongly Correlated Electrons +1602.01586 Mesoscale and Nanoscale Physics +1602.01649 Solar and Stellar Astrophysics +1602.02037 +1602.02161 Astrophysics of Galaxies +1602.02274 Astrophysics of Galaxies +1602.02359 Instrumentation and Methods for Astrophysics +1602.02392 Instrumentation and Methods for Astrophysics +1602.02749 Earth and Planetary Astrophysics +1602.02775 Astrophysics of Galaxies +1602.02785 Phenomenology +1602.02804 Cosmology and Nongalactic Astrophysics +1602.02947 Other Condensed Matter +1602.02951 High Energy Astrophysical Phenomena +1602.03017 High Energy Astrophysical Phenomena +1602.03182 +1602.03195 Solar and Stellar Astrophysics +1602.03296 +1602.03369 Solar and Stellar Astrophysics +1602.03470 Disordered Systems and Neural Networks +1602.03532 High Energy Astrophysical Phenomena +1602.03761 Number Theory +1602.03838 +1602.03847 +1602.03857 +1602.04123 Logic in Computer Science +1602.04375 Computation and Language +1602.04600 High Energy Astrophysical Phenomena +1602.04622 Earth and Planetary Astrophysics +1602.04879 Solar and Stellar Astrophysics +1602.04888 Phenomenology +1602.04972 Materials Science +1602.05108 Solar and Stellar Astrophysics +1602.05143 Earth and Planetary Astrophysics +1602.05190 Astrophysics of Galaxies +1602.05258 Solar and Stellar Astrophysics +1602.05464 Metric Geometry +1602.05470 Solar and Stellar Astrophysics +1602.05506 Adaptation and Self-Organizing Systems +1602.05527 Astrophysics of Galaxies +1602.06000 Earth and Planetary Astrophysics +1602.06010 Solar and Stellar Astrophysics +1602.06754 Experiment +1602.06973 Phenomenology +1602.07244 Solar and Stellar Astrophysics +1602.07339 Materials Science +1602.07481 Solar and Stellar Astrophysics +1602.07643 Cosmology and Nongalactic Astrophysics +1602.07649 Earth and Planetary Astrophysics +1602.07820 Phenomenology +1602.08008 Solar and Stellar Astrophysics +1602.08106 +1602.08190 Atomic Physics +1602.08370 Operator Algebras +1602.09142 Solar and Stellar Astrophysics +1603.00179 +1603.00205 Solar and Stellar Astrophysics +1603.00449 Mesoscale and Nanoscale Physics +1603.00473 Instrumentation and Methods for Astrophysics +1603.00482 Astrophysics of Galaxies +1603.01054 Optics +1603.01378 Earth and Planetary Astrophysics +1603.01515 Theory +1603.01913 Computation and Language +1603.02027 Solar and Stellar Astrophysics +1603.02058 Classical Analysis and ODEs +1603.02112 Group Theory +1603.02141 Earth and Planetary Astrophysics +1603.02271 High Energy Astrophysical Phenomena +1603.02278 Astrophysics of Galaxies +1603.02280 Astrophysics of Galaxies +1603.02284 Astrophysics of Galaxies +1603.02502 Earth and Planetary Astrophysics +1603.02676 +1603.02758 +1603.02777 Solar and Stellar Astrophysics +1603.03043 Instrumentation and Methods for Astrophysics +1603.03545 High Energy Astrophysical Phenomena +1603.03711 Earth and Planetary Astrophysics +1603.03909 Plasma Physics +1603.04410 Classical Analysis and ODEs +1603.04711 Cosmology and Nongalactic Astrophysics +1603.04886 High Energy Astrophysical Phenomena +1603.05226 Cryptography and Security +1603.05270 High Energy Astrophysical Phenomena +1603.05278 Astrophysics of Galaxies +1603.05517 Commutative Algebra +1603.05542 High Energy Astrophysical Phenomena +1603.05591 Soft Condensed Matter +1603.05593 Algebraic Geometry +1603.05669 High Energy Astrophysical Phenomena +1603.05771 High Energy Astrophysical Phenomena +1603.05796 Representation Theory +1603.06007 Astrophysics of Galaxies +1603.06160 Optimization and Control +1603.06295 Astrophysics of Galaxies +1603.06366 Pattern Formation and Solitons +1603.06419 Astrophysics of Galaxies +1603.06486 Solar and Stellar Astrophysics +1603.06860 Solar and Stellar Astrophysics +1603.07021 Computational Geometry +1603.07034 Solar and Stellar Astrophysics +1603.07071 Earth and Planetary Astrophysics +1603.07091 +1603.07136 Astrophysics of Galaxies +1603.07140 Astrophysics of Galaxies +1603.07196 Representation Theory +1603.07339 High Energy Astrophysical Phenomena +1603.07491 Astrophysics of Galaxies +1603.07581 Earth and Planetary Astrophysics +1603.07801 Astrophysics of Galaxies +1603.07832 Astrophysics of Galaxies +1603.08079 Computer Vision and Pattern Recognition +1603.08229 Fluid Dynamics +1603.08667 Chemical Physics +1603.08865 Computation and Language +1603.08936 Astrophysics of Galaxies +1603.09183 Theory +1603.09509 Computation and Language +1603.09572 Instrumentation and Detectors +1603.09639 High Energy Astrophysical Phenomena +1604.00206 Cryptography and Security +1604.00305 Phenomenology +1604.00474 Differential Geometry +1604.00559 Mesoscale and Nanoscale Physics +1604.00812 Optimization and Control +1604.00905 Computational Complexity +1604.00945 Classical Analysis and ODEs +1604.01014 Group Theory +1604.01015 Theory +1604.01016 +1604.01017 +1604.01019 Phenomenology +1604.01031 Solar and Stellar Astrophysics +1604.01041 Number Theory +1604.01048 Optics +1604.01054 +1604.01056 Information Theory +1604.01058 +1604.01062 Networking and Internet Architecture +1604.01064 Methodology +1604.01065 Fluid Dynamics +1604.01072 Soft Condensed Matter +1604.01074 Optimization and Control +1604.01075 Machine Learning +1604.01077 Soft Condensed Matter +1604.01079 Rings and Algebras +1604.01084 Optimization and Control +1604.01086 Earth and Planetary Astrophysics +1604.01090 Dynamical Systems +1604.01091 Computer Science and Game Theory +1604.01092 Analysis of PDEs +1604.01094 Chemical Physics +1604.01097 Numerical Analysis +1604.01098 +1604.01101 Commutative Algebra +1604.01105 Social and Information Networks +1604.01106 Number Theory +1604.01107 +1604.01108 Pattern Formation and Solitons +1604.01110 Probability +1604.01112 Cryptography and Security +1604.01113 Information Theory +1604.01115 Classical Analysis and ODEs +1604.01120 Computation +1604.01123 Mesoscale and Nanoscale Physics +1604.01128 Analysis of PDEs +1604.01131 Information Retrieval +1604.01136 Networking and Internet Architecture +1604.01139 Complex Variables +1604.01142 Optimization and Control +1604.01145 Disordered Systems and Neural Networks +1604.01146 Computer Vision and Pattern Recognition +1604.01150 Phenomenology +1604.01152 Number Theory +1604.01154 Data Structures and Algorithms +1604.01157 +1604.01162 Systems and Control +1604.01164 Combinatorics +1604.01165 Differential Geometry +1604.01166 Databases +1604.01176 Commutative Algebra +1604.01178 Computation and Language +1604.01179 Numerical Analysis +1604.01180 Computational Physics +1604.01183 Computational Geometry +1604.01185 Programming Languages +1604.01186 Logic in Computer Science +1604.01189 Phenomenology +1604.01190 Numerical Analysis +1604.01194 Mesoscale and Nanoscale Physics +1604.01197 Systems and Control +1604.01202 Systems and Control +1604.01204 Solar and Stellar Astrophysics +1604.01206 Phenomenology +1604.01209 Analysis of PDEs +1604.01211 Functional Analysis +1604.01214 Functional Analysis +1604.01215 Dynamical Systems +1604.01217 Materials Science +1604.01220 Phenomenology +1604.01221 Computation and Language +1604.01226 High Energy Astrophysical Phenomena +1604.01230 +1604.01233 Statistics Theory +1604.01234 Classical Analysis and ODEs +1604.01235 Computation and Language +1604.01236 Quantum Algebra +1604.01237 Differential Geometry +1604.01238 Differential Geometry +1604.01239 Mesoscale and Nanoscale Physics +1604.01242 Statistics Theory +1604.01243 Physics and Society +1604.01246 Dynamical Systems +1604.01251 Materials Science +1604.01257 Combinatorics +1604.01261 Optimization and Control +1604.01263 Phenomenology +1604.01268 Methodology +1604.01269 Representation Theory +1604.01272 Computation and Language +1604.01275 Networking and Internet Architecture +1604.01278 Computation and Language +1604.01280 Experiment +1604.01281 Pricing of Securities +1604.01282 Combinatorics +1604.01283 Representation Theory +1604.01284 Analysis of PDEs +1604.01286 Information Theory +1604.01288 Discrete Mathematics +1604.01290 Programming Languages +1604.01294 Analysis of PDEs +1604.01296 General Topology +1604.01298 Genomics +1604.01299 Probability +1604.01301 Instrumentation and Methods for Astrophysics +1604.01302 Classical Analysis and ODEs +1604.01304 Learning +1604.01308 Neurons and Cognition +1604.01315 Data Analysis, Statistics and Probability +1604.01316 Probability +1604.01319 Computer Vision and Pattern Recognition +1604.01320 Earth and Planetary Astrophysics +1604.01322 General Finance +1604.01326 Geometric Topology +1604.01327 Numerical Analysis +1604.01331 Human-Computer Interaction +1604.01332 +1604.01338 Statistical Finance +1604.01340 Spectral Theory +1604.01344 Other Computer Science +1604.01347 Computer Vision and Pattern Recognition +1604.01348 Machine Learning +1604.01350 Artificial Intelligence +1604.01354 Computer Vision and Pattern Recognition +1604.01357 Data Structures and Algorithms +1604.01358 Information Theory +1604.01365 +1604.01366 Dynamical Systems +1604.01367 Computational Engineering, Finance, and Science +1604.01368 +1604.01370 Soft Condensed Matter +1604.01371 Optimization and Control +1604.01372 Algebraic Geometry +1604.01375 General Physics +1604.01376 Numerical Analysis +1604.01377 Dynamical Systems +1604.01380 Classical Analysis and ODEs +1604.01383 +1604.01386 Logic +1604.01390 Mesoscale and Nanoscale Physics +chao-dyn/9406011 Chaotic Dynamics +cond-mat/0605716 Soft Condensed Matter +math/0702573 Probability +1004.1554 Quantum Algebra +1005.0185 Quantum Algebra +1111.6329 Quantum Algebra +1112.0089 Algebraic Geometry +1206.1070 Theory +1207.4276 Quantum Algebra +1209.6119 Symplectic Geometry +1210.3884 Dynamical Systems +1211.7124 Quantum Algebra +1301.0359 High Energy Astrophysical Phenomena +1301.1023 Data Analysis, Statistics and Probability +1301.1050 +1301.1992 Combinatorics +1301.4874 Logic in Computer Science +1301.6190 Information Theory +1301.7050 Rings and Algebras +1301.7071 Theory +1302.0729 Mesoscale and Nanoscale Physics +1302.0775 Materials Science +1302.1213 Experiment +1302.2678 Probability +1302.3207 Functional Analysis +1302.3803 +1302.4908 Experiment +1302.5259 Instrumentation and Detectors +1302.5524 Quantum Gases +1302.5578 Experiment +1302.5854 Experiment +1302.6082 Differential Geometry +1302.6140 High Energy Astrophysical Phenomena +1303.0524 Rings and Algebras +1303.1737 Experiment +1303.1794 +1303.2468 Probability +1303.2614 Experiment +1303.2798 Popular Physics +1303.2831 Atomic Physics +1303.3730 Materials Science +1303.4288 Statistics Theory +1303.4646 Experiment +1303.4906 Experiment +1303.5066 Instrumentation and Methods for Astrophysics +1303.5232 Quantum Gases +1303.6861 Experiment +1303.7133 Experiment +1303.7389 Combinatorics +1303.7474 Learning +1304.0084 Data Structures and Algorithms +1304.1232 Operator Algebras +1304.1341 Superconductivity +1304.2600 Experiment +1304.3035 Experiment +1304.3201 Differential Geometry +1304.3375 Physics and Society +1304.3561 +1304.3583 Group Theory +1304.4218 Classical Analysis and ODEs +1304.4246 Algebraic Geometry +1304.4500 Experiment +1304.4518 Experiment +1304.4530 Experiment +1304.4741 Experiment +1304.5721 Classical Analysis and ODEs +1304.6173 Experiment +1304.6317 Experiment +1304.6325 Experiment +1304.6365 Experiment +1304.6865 Experiment +1304.6949 Methodology +1304.6977 Experiment +1304.8081 Superconductivity +1305.0680 Cellular Automata and Lattice Gases +1305.1455 Combinatorics +1305.2050 Experiment +1305.2168 Experiment +1305.3028 +1305.3185 Mesoscale and Nanoscale Physics +1305.3628 Instrumentation and Detectors +1305.4080 Numerical Analysis +1305.4097 Quantum Gases +1305.4482 Statistics Theory +1305.4545 General Mathematics +1305.4719 Pricing of Securities +1305.5059 Experiment +1305.5662 Data Structures and Algorithms +1305.5701 Strongly Correlated Electrons +1305.6188 Probability +1305.6511 Experiment +1305.6577 Data Structures and Algorithms +1305.7350 Complex Variables +1306.0408 Methodology +1306.0806 Logic in Computer Science +1306.1036 Digital Libraries +1306.2239 Experiment +1306.2608 +1306.2773 Atomic Physics +1306.3088 Combinatorics +1306.3663 Experiment +1306.4489 Experiment +1306.5240 Cosmology and Nongalactic Astrophysics +1306.5527 Computational Geometry +1306.5800 High Energy Astrophysical Phenomena +1306.6236 Materials Science +1306.6759 Complex Variables +1307.1729 Algebraic Geometry +1307.2160 Materials Science +1307.4974 Symbolic Computation +1307.5059 High Energy Astrophysical Phenomena +1307.7877 High Energy Astrophysical Phenomena +1308.5173 Probability +1308.6722 Experiment +1308.6780 Methodology +1309.0524 Fluid Dynamics +1309.3131 Atomic Physics +1309.3940 Number Theory +1309.5816 Probability +1309.5817 Analysis of PDEs +1309.5877 Probability +1309.6531 Classical Physics +1309.6532 Classical Physics +1309.6533 Classical Physics +1309.6995 High Energy Astrophysical Phenomena +1310.0743 High Energy Astrophysical Phenomena +1310.0785 Numerical Analysis +1310.2314 Instrumentation and Methods for Astrophysics +1310.3341 Discrete Mathematics +1310.3428 +1310.4489 Statistics Theory +1310.5672 Probability +1310.5798 Probability +1311.0015 Theory +1311.0355 Dynamical Systems +1311.4767 Instrumentation and Detectors +1311.6283 Mesoscale and Nanoscale Physics +1311.6875 Plasma Physics +1312.0955 Strongly Correlated Electrons +1312.1300 Astrophysics of Galaxies +1312.4083 Probability +1312.5525 Probability +1312.6544 Mesoscale and Nanoscale Physics +1401.4494 Statistical Mechanics +1401.6882 Statistics Theory +1402.2383 +1402.6660 Probability +1402.7280 Molecular Networks +1403.0487 Quantum Gases +1403.1872 Solar and Stellar Astrophysics +1403.2119 Optics +1403.2888 Experiment +1403.2953 Chaotic Dynamics +1403.2974 +1403.3950 Probability +1403.4338 Quantum Gases +1403.5074 Optimization and Control +1403.5912 Human-Computer Interaction +1403.5917 Representation Theory +1403.7580 +1403.7602 Group Theory +1403.7621 Mesoscale and Nanoscale Physics +1403.8089 Algebraic Topology +1404.7728 Populations and Evolution +1405.0362 Computation +1405.0851 Differential Geometry +1405.0929 Biomolecules +1405.1998 Theory +1405.2217 Disordered Systems and Neural Networks +1405.3059 Phenomenology +1405.5224 +1405.5303 High Energy Astrophysical Phenomena +1405.5524 Cosmology and Nongalactic Astrophysics +1405.6532 +1406.0596 Methodology +1406.0632 High Energy Astrophysical Phenomena +1406.0974 High Energy Astrophysical Phenomena +1406.0994 Solar and Stellar Astrophysics +1406.1387 Solar and Stellar Astrophysics +1406.2393 Strongly Correlated Electrons +1406.2462 Methodology +1406.3371 +1406.4295 +1406.7482 Cosmology and Nongalactic Astrophysics +1406.7540 Distributed, Parallel, and Cluster Computing +1406.7780 Astrophysics of Galaxies +1407.3159 +1407.4871 Instrumentation and Methods for Astrophysics +1408.2010 Algebraic Topology +1408.6185 Probability +1409.4145 Number Theory +1410.0060 Group Theory +1410.0946 Portfolio Management +1410.3638 Quantum Gases +1411.0650 Probability +1411.1525 Phenomenology +1411.2309 Statistics Theory +1411.2830 Complex Variables +1411.4324 Numerical Analysis +1502.02781 Algebraic Topology +1503.06157 Dynamical Systems +1504.04970 Information Theory +1504.06238 Probability +1505.03297 +1505.05586 Information Theory +1505.05745 Number Theory +1505.05941 Cellular Automata and Lattice Gases +1505.07411 Strongly Correlated Electrons +1506.03107 Representation Theory +1506.06161 Number Theory +1506.09177 Mesoscale and Nanoscale Physics +1507.00383 Geometric Topology +1507.00541 Databases +1507.01073 Machine Learning +1507.01453 General Mathematics +1507.05819 Computers and Society +1508.01966 Mesoscale and Nanoscale Physics +1508.03197 Strongly Correlated Electrons +1508.05080 Algebraic Geometry +1508.05518 Cosmology and Nongalactic Astrophysics +1508.06689 +1509.00957 Classical Analysis and ODEs +1509.02180 Strongly Correlated Electrons +1509.06848 Complex Variables +1509.06925 Computer Vision and Pattern Recognition +1509.07462 Group Theory +1509.09279 Numerical Analysis +1510.05388 Astrophysics of Galaxies +1510.07267 Chaotic Dynamics +1511.00816 +1511.01369 Fluid Dynamics +1511.03662 Cosmology and Nongalactic Astrophysics +1511.07187 +1511.08187 Theory +1511.09130 Category Theory +1512.00810 Neurons and Cognition +1512.01981 Cosmology and Nongalactic Astrophysics +1512.02126 Analysis of PDEs +1512.03388 Strongly Correlated Electrons +1512.05716 Theory +1512.08867 Networking and Internet Architecture +1601.00019 Information Theory +1601.01549 Data Structures and Algorithms +1601.03950 +1601.04100 Analysis of PDEs +1601.04313 Rings and Algebras +1601.07365 Optimization and Control +1602.01202 Information Theory +1602.02526 Theory +1602.05128 Computation +1602.05955 +1602.08534 Information Theory +1603.00264 Pattern Formation and Solitons +1603.01117 +1603.02929 Analysis of PDEs +1603.03081 Cryptography and Security +1603.03146 Instrumentation and Detectors +1603.03276 High Energy Astrophysical Phenomena +1603.05102 Statistical Mechanics +1604.00117 Computation and Language +1604.00259 Systems and Control +1604.01274 Representation Theory +1604.03006 Learning +1604.03133 Classical Analysis and ODEs +1604.03202 +1604.04890 Optimization and Control +1604.05485 Functional Analysis +1604.05506 Classical Analysis and ODEs +1604.07633 Phenomenology +1604.07873 Solar and Stellar Astrophysics +1604.08013 Phenomenology +1605.00177 High Energy Astrophysical Phenomena +1605.00358 Cryptography and Security +1605.00589 Analysis of PDEs +1605.00607 Analysis of PDEs +1605.01137 +1605.02546 General Physics +1605.02936 Classical Analysis and ODEs +1605.03494 Astrophysics of Galaxies +1605.03757 Human-Computer Interaction +1605.06627 Astrophysics of Galaxies +1605.07302 Superconductivity +1605.07426 Quantum Gases +1605.08195 Mesoscale and Nanoscale Physics +1605.08812 Statistical Mechanics +1606.00184 Astrophysics of Galaxies +1606.00714 Optimization and Control +1606.01109 Phenomenology +1606.01290 Physics and Society +1606.01708 Cryptography and Security +1606.02135 Algebraic Geometry +1606.02413 Mesoscale and Nanoscale Physics +1606.03252 Algebraic Geometry +1606.04271 Mesoscale and Nanoscale Physics +1606.05715 Combinatorics +1606.05852 Number Theory +1606.06545 +1606.06748 Mesoscale and Nanoscale Physics +1606.06771 Cryptography and Security +1606.06885 Methodology +1606.07363 Algebraic Topology +1606.07912 +1606.08116 Logic in Computer Science +1607.01183 Strongly Correlated Electrons +1607.01865 Numerical Analysis +1607.04094 Mesoscale and Nanoscale Physics +1607.04137 Information Theory +1607.05057 +1607.05134 Optics +1607.06033 Quantum Algebra +1607.07134 Analysis of PDEs +1607.07771 Methodology +1607.07929 Materials Science +1607.08133 Phenomenology +1607.08534 +1608.00177 Software Engineering +1608.00272 Computer Vision and Pattern Recognition +1608.00309 Robotics +1608.00875 Representation Theory +1608.02257 Learning +1608.02395 +1608.02479 Statistical Mechanics +1608.02644 Artificial Intelligence +1608.02711 Dynamical Systems +1608.02756 Molecular Networks +1608.02805 Probability +1608.02882 +1608.02883 Social and Information Networks +1608.02896 Programming Languages +1608.02933 Fluid Dynamics +1608.02935 General Topology +1608.02937 Quantum Gases +1608.02939 Astrophysics of Galaxies +1608.02946 Phenomenology +1608.02947 High Energy Astrophysical Phenomena +1608.02949 Phenomenology +1608.02971 Neural and Evolutionary Computing +1608.02972 Mesoscale and Nanoscale Physics +1608.02974 Statistical Mechanics +1608.02977 Computers and Society +1608.02978 Theory +1608.02979 +1608.02984 Symplectic Geometry +1608.02985 Instrumentation and Methods for Astrophysics +1608.02988 Cryptography and Security +1608.02989 Computer Vision and Pattern Recognition +1608.02991 Human-Computer Interaction +1608.02992 Analysis of PDEs +1608.02993 Information Theory +1608.02996 Computation and Language +1608.02997 Algebraic Geometry +1608.03000 Computation and Language +1608.03001 Probability +1608.03002 Geometric Topology +1608.03004 Fluid Dynamics +1608.03008 Social and Information Networks +1608.03009 Geometric Topology +1608.03012 Methodology +1608.03014 Number Theory +1608.03016 Multimedia +1608.03017 Data Structures and Algorithms +1608.03019 Analysis of PDEs +1608.03022 Applications +1608.03024 Applications +1608.03026 Artificial Intelligence +1608.03027 Information Theory +1608.03030 Computation and Language +1608.03032 Statistics Theory +1608.03033 Optimization and Control +1608.03034 Numerical Analysis +1608.03036 Computational Geometry +1608.03037 Robotics +1608.03040 Combinatorics +1608.03042 Networking and Internet Architecture +1608.03043 General Topology +1608.03044 Distributed, Parallel, and Cluster Computing +1608.03046 Solar and Stellar Astrophysics +1608.03047 Molecular Networks +1608.03049 Computer Vision and Pattern Recognition +1608.03050 Differential Geometry +1608.03051 Lattice +1608.03052 Optimization and Control +1608.03053 Statistical Finance +1608.03054 Logic in Computer Science +1608.03055 Combinatorics +1608.03056 Accelerator Physics +1608.03057 Exactly Solvable and Integrable Systems +1608.03058 Statistical Finance +1608.03059 Materials Science +1608.03061 Human-Computer Interaction +1608.03063 Differential Geometry +1608.03065 Computation and Language +1608.03066 Computer Vision and Pattern Recognition +1608.03067 Accelerator Physics +1608.03069 Methodology +1608.03070 Probability +1608.03073 Physics and Society +1608.03074 Earth and Planetary Astrophysics +1608.03078 Combinatorics +1608.03079 Accelerator Physics +1608.03080 Functional Analysis +1608.03081 Statistics Theory +1608.03082 +1608.03084 +1608.03085 Algebraic Geometry +1608.03087 Accelerator Physics +1608.03088 Materials Science +1608.03090 Systems and Control +1608.03091 Applications +1608.03092 Accelerator Physics +1608.03094 Geometric Topology +1608.03096 Accelerator Physics +1608.03098 Materials Science +1608.03100 Machine Learning +1608.03102 Applications +1608.03105 Combinatorics +1608.03106 Representation Theory +1608.03107 Numerical Analysis +1608.03112 Number Theory +1608.03113 Accelerator Physics +1608.03115 Optimization and Control +1608.03116 Group Theory +1608.03119 +1608.03123 Neural and Evolutionary Computing +1608.03124 Solar and Stellar Astrophysics +1608.03125 Distributed, Parallel, and Cluster Computing +1608.03126 Logic in Computer Science +1608.03127 Programming Languages +1608.03128 Logic in Computer Science +1608.03129 Logic in Computer Science +1608.03131 Programming Languages +1608.03133 +1608.03134 Classical Analysis and ODEs +1608.03135 Algebraic Topology +1608.03136 Analysis of PDEs +1608.03137 Group Theory +1608.03139 Analysis of PDEs +1608.03140 Robotics +1608.03142 Representation Theory +1608.03143 Operator Algebras +1608.03146 General Topology +1608.03150 +1608.03151 Combinatorics +1608.03154 Methodology +1608.03156 Strongly Correlated Electrons +1608.03157 Numerical Analysis +1608.03159 Accelerator Physics +1608.03161 Systems and Control +1608.03165 Information Theory +1608.03166 Combinatorics +1608.03167 Chemical Physics +1608.03168 Pattern Formation and Solitons +1608.03170 Numerical Analysis +1608.03173 High Energy Astrophysical Phenomena +1608.03175 Distributed, Parallel, and Cluster Computing +1608.03176 Mesoscale and Nanoscale Physics +1608.03178 Information Theory +1608.03181 Software Engineering +1608.03182 Data Structures and Algorithms +1608.03183 Chemical Physics +1608.03186 General Physics +1608.03187 Superconductivity +1608.03189 Metric Geometry +1608.03190 +1608.03191 Applications +1608.03192 Social and Information Networks +1608.03193 Soft Condensed Matter +1608.03196 +1608.03197 General Mathematics +1608.03200 Optics +1608.03201 Data Analysis, Statistics and Probability +1608.03204 General Topology +1608.03208 Fluid Dynamics +1608.03209 Number Theory +1608.03215 Information Theory +1608.03217 Computer Vision and Pattern Recognition +1608.03219 Geometric Topology +1608.03220 Data Structures and Algorithms +1608.03221 Atomic Physics +1608.03224 Group Theory +1608.03234 Plasma Physics +1608.03235 Computer Vision and Pattern Recognition +1608.03238 Materials Science +1608.03240 Computer Vision and Pattern Recognition +1608.03241 Combinatorics +1608.03243 Probability +1608.03246 General Mathematics +1608.03248 Optimization and Control +1608.03249 Symplectic Geometry +1608.03250 +1608.03252 Differential Geometry +1608.03256 Number Theory +1608.03257 Probability +1608.03262 Exactly Solvable and Integrable Systems +1608.03265 Probability +1608.03266 Analysis of PDEs +1608.03268 Materials Science +0708.0649 Probability +0812.3619 Probability +0907.3680 Probability +1005.0810 Probability +1011.1805 General Physics +1011.6366 Probability +1104.3196 Physics and Society +1104.3199 Physics and Society +1104.4528 Physics and Society +1104.4682 Physics and Society +1104.5630 Physics and Society +1105.0589 Physics and Society +1105.4982 Physics and Society +1106.0824 Data Analysis, Statistics and Probability +1106.0887 Physics and Society +1106.1074 Physics and Society +1112.3919 Probability +1112.4427 Commutative Algebra +1201.0318 Probability +1204.6620 Numerical Analysis +1206.5398 Mesoscale and Nanoscale Physics +1207.5710 Probability +1208.2380 Representation Theory +1209.5544 Physics and Society +1209.5546 Physics and Society +1210.4230 Commutative Algebra +1210.4518 Probability +1212.2229 Group Theory +1301.5697 Combinatorics +1303.2029 Materials Science +1303.2263 Combinatorics +1304.4734 Number Theory +1306.0260 Systems and Control +1306.3818 Physics and Society +1308.0779 Number Theory +1309.3161 Strongly Correlated Electrons +1309.4860 Physics and Society +1309.4861 Physics and Society +1309.4862 Physics and Society +1309.6252 Differential Geometry +1309.6475 Algebraic Geometry +1309.7612 Physics and Society +1310.0570 Commutative Algebra +1310.7363 Algebraic Geometry +1310.7779 Commutative Algebra +1310.7793 Commutative Algebra +1311.0743 Algebraic Geometry +1311.3408 +1312.3785 Physics and Society +1312.4983 Probability +1401.0280 Materials Science +1401.0330 Rings and Algebras +1401.7782 Number Theory +1402.5244 Optics +1402.5359 Information Theory +1402.5834 Phenomenology +1403.6459 Differential Geometry +1403.6929 +1403.7007 Information Theory +1404.0358 Differential Geometry +1404.2200 +1405.1977 +1405.2310 Exactly Solvable and Integrable Systems +1405.3948 Classical Analysis and ODEs +1405.5076 Functional Analysis +1406.1368 Computational Geometry +1406.2113 Materials Science +1406.3529 Rings and Algebras +1406.3537 +1406.4143 Cosmology and Nongalactic Astrophysics +1406.6884 +1407.2724 Machine Learning +1407.3709 Complex Variables +1407.7059 Rings and Algebras +1408.1596 +1409.1389 Phenomenology +1409.5584 Analysis of PDEs +1409.7197 Theory +1410.1596 Number Theory +1410.7675 Information Theory +1411.0236 Dynamical Systems +1411.4553 Differential Geometry +1411.5524 +1411.7952 Probability +1412.4052 Sound +1412.4298 Theory +1412.5091 +1412.5278 Social and Information Networks +1501.03704 Information Theory +1501.04093 Phenomenology +1501.06473 Other Computer Science +1502.00599 +1502.02493 Social and Information Networks +1502.03060 Materials Science +1502.04697 Data Analysis, Statistics and Probability +1502.05840 Computer Vision and Pattern Recognition +1502.06351 +1502.07635 Materials Science +1502.07838 Numerical Analysis +1503.01104 Populations and Evolution +1503.01221 +1503.01799 Number Theory +1503.02908 Physics and Society +1503.02915 Physics and Society +1503.03343 Populations and Evolution +1503.03683 Functional Analysis +1503.04407 Methodology +1503.04616 Probability +1503.06247 Mesoscale and Nanoscale Physics +1504.01674 Geometric Topology +1504.04224 Physics and Society +1504.04229 Physics and Society +1504.04582 +1504.04796 Social and Information Networks +1504.06147 Probability +1505.00449 Discrete Mathematics +1505.01619 Information Theory +1505.01810 Graphics +1505.02664 Number Theory +1505.03925 Lattice +1505.04562 Dynamical Systems +1505.04829 Optimization and Control +1505.05593 Differential Geometry +1506.00922 Analysis of PDEs +1506.02625 Statistical Mechanics +1506.03048 Probability +1506.03696 Theory +1506.04146 Superconductivity +1506.04281 Analysis of PDEs +1506.05500 Category Theory +1506.06652 Symplectic Geometry +1506.07832 Quantum Algebra +1507.00671 Probability +1507.00677 Machine Learning +1507.03266 Optimization and Control +1507.04642 Social and Information Networks +1507.05352 Information Theory +1507.06083 Algebraic Geometry +1507.06405 Representation Theory +1507.06421 Phenomenology +1507.06550 Computer Vision and Pattern Recognition +1507.06910 Commutative Algebra +1507.07850 Optimization and Control +1508.02125 Theory +1508.03091 Phenomenology +1508.03716 Systems and Control +1508.06720 Geometric Topology +1508.06766 Analysis of PDEs +1508.06871 Numerical Analysis +1508.06984 +1508.07266 Social and Information Networks +1509.00248 Mesoscale and Nanoscale Physics +1509.02624 Algebraic Geometry +1509.02845 Representation Theory +1509.02966 Computational Physics +1509.03276 Analysis of PDEs +1509.05229 Theory +1509.05629 Materials Science +1509.05880 Operator Algebras +1509.06697 Analysis of PDEs +1509.07101 Differential Geometry +1509.07786 Subcellular Processes +1509.08264 Cosmology and Nongalactic Astrophysics +1509.08453 K-Theory and Homology +1509.08490 Information Theory +1510.00019 Cosmology and Nongalactic Astrophysics +1510.00982 Number Theory +1510.01107 Fluid Dynamics +1510.02351 +1510.02392 Dynamical Systems +1510.02717 Spectral Theory +1510.03055 Computation and Language +1510.05646 Phenomenology +1510.07087 Numerical Analysis +1510.07298 +1510.08848 Mesoscale and Nanoscale Physics +1510.09012 Plasma Physics +1511.01174 Physics and Society +1511.01405 Mesoscale and Nanoscale Physics +1511.01430 Chemical Physics +1511.01756 Computation and Language +1511.02477 Phenomenology +1511.02617 +1511.03704 Mathematical Finance +1511.04258 +1511.04509 Exactly Solvable and Integrable Systems +1511.05080 Optimization and Control +1511.06182 Statistical Mechanics +1511.06664 Quantum Algebra +1511.06977 Functional Analysis +1511.07295 Geometric Topology +1511.08098 +1511.08477 Group Theory +1511.08546 Optics +1511.09117 +1511.09233 Spectral Theory +1511.09339 Instrumentation and Detectors +1512.01431 Fluid Dynamics +1512.01696 Quantum Algebra +1512.01849 Quantum Gases +1512.02204 Soft Condensed Matter +1512.02777 +1512.03419 Physics and Society +1512.03503 Symbolic Computation +1512.04201 Optics +1512.04381 Phenomenology +1512.04801 General Physics +1512.05349 Cosmology and Nongalactic Astrophysics +1512.06104 +1512.06874 Quantum Gases +1512.06993 +1512.08082 Numerical Analysis +1512.09222 Number Theory +1601.00617 Computational Geometry +1601.01610 General Physics +1601.02033 Phenomenology +1601.02578 Distributed, Parallel, and Cluster Computing +1601.03086 Phenomenology +1601.03220 Superconductivity +1601.03448 Methodology +1601.03678 Probability +1601.03916 Computation and Language +1601.05639 Phenomenology +1601.05752 Strongly Correlated Electrons +1601.06551 Social and Information Networks +1601.06997 Metric Geometry +1601.07431 Atomic Physics +1602.00013 Functional Analysis +1602.00585 Computer Vision and Pattern Recognition +1602.01387 Formal Languages and Automata Theory +1602.01720 Probability +1602.01815 Neurons and Cognition +1602.01889 Neurons and Cognition +1602.02050 Physics and Society +1602.02243 High Energy Astrophysical Phenomena +1602.03066 +1602.03118 Number Theory +1602.03320 Data Structures and Algorithms +1602.03339 Analysis of PDEs +1602.04020 Phenomenology +1602.04105 Learning +1602.04369 Soft Condensed Matter +1602.04511 Learning +1602.04692 Phenomenology +1602.05155 Methodology +1602.05561 Artificial Intelligence +1602.07136 +1602.07205 Computational Physics +1602.07917 Mesoscale and Nanoscale Physics +1602.08484 Quantum Algebra +1603.00543 Disordered Systems and Neural Networks +1603.00982 Sound +1603.01697 Combinatorics +1603.01742 Cosmology and Nongalactic Astrophysics +1603.02377 Computer Science and Game Theory +1603.02664 Cosmology and Nongalactic Astrophysics +1603.02740 Machine Learning +1603.02754 Learning +1603.03232 Systems and Control +1603.03402 +1603.03566 Experiment +1603.04373 +1603.04421 High Energy Astrophysical Phenomena +1603.04433 Instrumentation and Detectors +1603.04509 +1603.04901 Operator Algebras +1603.05057 Statistical Mechanics +1603.05221 Metric Geometry +1603.05423 +1603.06392 Classical Analysis and ODEs +1603.07117 Computation +1603.07314 Statistical Mechanics +1603.07330 Theory +1603.07671 Networking and Internet Architecture +1603.07726 +1603.08237 Algebraic Topology +1603.09450 +1604.00925 Phenomenology +1604.01138 Numerical Analysis +1604.01228 Strongly Correlated Electrons +1604.01256 Number Theory +1604.01341 Cosmology and Nongalactic Astrophysics +1604.01491 Probability +1604.02082 +1604.02458 Phenomenology +1604.02628 Analysis of PDEs +1604.02707 Lattice +1604.03320 High Energy Astrophysical Phenomena +1604.03486 Statistical Mechanics +1604.03585 Mesoscale and Nanoscale Physics +1604.03738 Phenomenology +1604.03934 Cosmology and Nongalactic Astrophysics +1604.04748 +1604.05250 Numerical Analysis +1604.05649 Optimization and Control +1604.06188 Analysis of PDEs +1604.06377 Systems and Control +1604.06896 Computation and Language +1604.07337 Mesoscale and Nanoscale Physics +1605.00112 Complex Variables +1605.00279 Plasma Physics +1605.00585 Phenomenology +1605.01330 Information Theory +1605.01472 Theory +1605.01572 Combinatorics +1605.01822 Statistical Mechanics +1605.02063 +1605.02066 Computer Vision and Pattern Recognition +1605.02756 +1605.03069 Probability +1605.04135 Machine Learning +1605.04531 Strongly Correlated Electrons +1605.05085 Soft Condensed Matter +1605.05365 Learning +1605.05419 Other Quantitative Biology +1605.06002 +1605.06210 Astrophysics of Galaxies +1605.06539 Mesoscale and Nanoscale Physics +1605.06549 Functional Analysis +1605.06828 Algebraic Geometry +1605.06893 Mesoscale and Nanoscale Physics +1605.08183 Phenomenology +1605.08509 Classical Analysis and ODEs +1605.08795 Data Structures and Algorithms +1605.08859 Information Theory +1605.08953 +1606.00909 Functional Analysis +1606.01402 Group Theory +1606.01526 Functional Analysis +1606.01609 Computer Vision and Pattern Recognition +1606.01611 Algebraic Geometry +1606.01623 Data Structures and Algorithms +1606.01974 Rings and Algebras +1606.01980 Hardware Architecture +1606.02027 Functional Analysis +1606.02042 Other Computer Science +1606.02228 Neural and Evolutionary Computing +1606.02385 Cryptography and Security +1606.02450 Rings and Algebras +1606.02590 +1606.02593 Probability +1606.02617 Learning +1606.02884 Mesoscale and Nanoscale Physics +1606.02901 Mesoscale and Nanoscale Physics +1606.02914 Analysis of PDEs +1606.02933 Materials Science +1606.02967 Combinatorics +1606.02986 Optimization and Control +1606.03081 +1606.03211 Probability +1606.03277 Solar and Stellar Astrophysics +1606.03365 Sound +1606.03445 Instrumentation and Detectors +1606.03447 Number Theory +1606.03461 Classical Analysis and ODEs +1606.03463 Optimization and Control +1606.03464 Solar and Stellar Astrophysics +1606.03466 Quantum Algebra +1606.03467 +1606.03471 Optics +1606.03472 Information Theory +1606.03473 Computer Vision and Pattern Recognition +1606.03475 Computation and Language +1606.03476 Learning +1606.03479 Atomic Physics +1606.03480 Social and Information Networks +1606.03482 Other Quantitative Biology +1606.03486 Numerical Analysis +1606.03487 Theory +1606.03488 +1606.03491 Optics +1606.03496 Statistics Theory +1606.03498 Learning +1606.03499 Analysis of PDEs +1606.03500 Analysis of PDEs +1606.03502 Computers and Society +1606.03503 Computers and Society +1606.03504 Statistics Theory +1606.03505 Number Theory +1606.03506 Computers and Society +1606.03507 Computers and Society +1606.03508 Learning +1606.03509 Computers and Society +1606.03510 Computers and Society +1606.03511 Computers and Society +1606.03513 Computers and Society +1606.03516 +1606.03519 Combinatorics +1606.03520 Optimization and Control +1606.03524 Probability +1606.03525 Probability +1606.03527 Computers and Society +1606.03528 Computers and Society +1606.03529 Optimization and Control +1606.03530 Computers and Society +1606.03531 Computers and Society +1606.03534 Computers and Society +1606.03536 Strongly Correlated Electrons +1606.03537 Computers and Society +1606.03538 Physics and Society +1606.03539 Computers and Society +1606.03540 Computers and Society +1606.03541 Computers and Society +1606.03542 Computers and Society +1606.03543 Computers and Society +1606.03544 Computers and Society +1606.03545 Probability +1606.03546 Computers and Society +1606.03547 Computers and Society +1606.03548 Computers and Society +1606.03549 Computers and Society +1606.03550 Computers and Society +1606.03551 Computers and Society +1606.03552 Methodology +1606.03555 Materials Science +1606.03557 Probability +1606.03561 Information Retrieval +1606.03562 Logic +1606.03569 Computers and Society +1606.03570 Materials Science +1606.03574 Instrumentation and Detectors +1606.03575 +1606.03578 Computer Vision and Pattern Recognition +1606.03580 Numerical Analysis +1606.03581 Functional Analysis +1606.03583 Instrumentation and Methods for Astrophysics +1606.03584 +1606.03585 Computational Complexity +1606.03587 Geometric Topology +1606.03588 Cryptography and Security +1606.03590 Trading and Market Microstructure +1606.03593 Functional Analysis +1606.03594 Probability +1606.03597 Pricing of Securities +1606.03598 Formal Languages and Automata Theory +1606.03599 Numerical Analysis +1606.03600 Networking and Internet Architecture +1606.03601 Optimization and Control +1606.03604 Algebraic Geometry +1606.03606 Cosmology and Nongalactic Astrophysics +1606.03607 Algebraic Topology +1606.03608 Geometric Topology +1606.03612 Algebraic Geometry +1606.03616 Materials Science +1606.03618 Number Theory +1606.03619 +1606.03620 Other Quantitative Biology +1606.03621 Classical Analysis and ODEs +1606.03622 Computation and Language +1606.03626 Data Structures and Algorithms +1606.03628 Learning +1606.03630 Biomolecules +1606.03633 Cosmology and Nongalactic Astrophysics +1606.03635 Number Theory +1606.03639 Information Theory +1606.03641 Optimization and Control +1606.03643 Dynamical Systems +1606.03644 Programming Languages +1606.03645 Probability +1606.03646 High Energy Astrophysical Phenomena +1606.03652 Algebraic Geometry +1606.03653 Numerical Analysis +1606.03657 Learning +1606.03658 Physics and Society +1606.03660 Strongly Correlated Electrons +1606.03662 Artificial Intelligence +1606.03663 Logic in Computer Science +1606.03664 Sound +1606.03665 Information Theory +1606.03666 Analysis of PDEs +1606.03668 Information Theory +1606.03669 Computer Vision and Pattern Recognition +1606.03670 +1606.03671 Computer Vision and Pattern Recognition +1606.03672 Learning +1606.03673 Optimization and Control +1606.03677 Probability +1606.03678 Optics +1606.03680 Data Structures and Algorithms +1606.03682 Materials Science +1606.03684 Analysis of PDEs +1606.03685 Learning +1606.03687 Discrete Mathematics +1606.03688 Numerical Analysis +1606.03691 Algebraic Geometry +1606.03692 Numerical Analysis +1606.03693 Materials Science +1606.03695 Information Theory +1606.03696 Physics and Society +1606.03697 Optics +1606.03700 Materials Science +1606.03701 Computers and Society +1606.03703 Disordered Systems and Neural Networks +1606.03707 Algebraic Geometry +1606.03714 Algebraic Geometry +1606.03716 Earth and Planetary Astrophysics +1606.03717 Hardware Architecture +1606.03719 Robotics +1606.03720 +1606.03724 Strongly Correlated Electrons +1606.03728 Operator Algebras +1606.03729 Methodology +1606.03730 Probability +1606.03731 Computer Vision and Pattern Recognition +1606.03733 Number Theory +1606.03735 Instrumentation and Methods for Astrophysics +1606.03738 History and Philosophy of Physics +1606.03740 Other Condensed Matter +1606.03741 Astrophysics of Galaxies +1606.03742 Distributed, Parallel, and Cluster Computing +1606.03743 Computational Physics +1606.03745 Functional Analysis +1606.03746 Combinatorics +1606.03748 Disordered Systems and Neural Networks +1606.03751 Combinatorics +1606.03752 Information Theory +1606.03754 Systems and Control +1606.03758 Formal Languages and Automata Theory +1606.03759 Representation Theory +1606.03761 Combinatorics +1606.03763 Probability +1606.03765 Computer Vision and Pattern Recognition +1606.03766 Computation +1606.03768 Information Theory +1606.03770 Algebraic Geometry +1606.03771 Analysis of PDEs +1606.03772 Analysis of PDEs +1606.03773 Classical Analysis and ODEs +1606.03774 Computer Vision and Pattern Recognition +1606.03776 Computers and Society +1606.03777 Computation and Language +1606.03778 Logic +1606.03779 Metric Geometry +1606.03782 Combinatorics +1606.03784 Artificial Intelligence +1606.03787 Probability +1606.03788 Computer Vision and Pattern Recognition +1606.03794 Analysis of PDEs +1606.03796 Differential Geometry +1606.03797 Biomolecules +1606.03798 Computer Vision and Pattern Recognition +1606.03799 Combinatorics +1606.03800 Data Structures and Algorithms +1606.03801 Rings and Algebras +1606.03803 Methodology +1606.03805 Algebraic Topology +1606.03806 Number Theory +1606.03811 Solar and Stellar Astrophysics +1606.03813 Neurons and Cognition +1606.03814 Methodology +1606.03816 Social and Information Networks +1606.03824 Dynamical Systems +1606.03826 Algebraic Topology +1606.03828 Probability +1606.03831 Algebraic Geometry +1606.03832 Artificial Intelligence +1606.03834 Phenomenology +1606.03837 Number Theory +1606.03838 Computer Vision and Pattern Recognition +1606.03840 Numerical Analysis +1606.03845 Number Theory +1606.03846 Robotics +1606.03848 Statistics Theory +1606.03849 Materials Science +1606.03850 Probability +1606.03854 Probability +1606.03857 Digital Libraries +1606.03860 Machine Learning +1606.03863 Group Theory +1606.03866 Group Theory +1606.03868 +1606.03875 Robotics +1606.03877 Combinatorics +1606.03880 K-Theory and Homology +1606.03883 Physics Education +1606.03884 Cell Behavior +1606.03888 Logic in Computer Science +1606.03891 Dynamical Systems +1606.03894 Artificial Intelligence +1606.03897 Data Structures and Algorithms +1606.03899 Mathematical Finance +1606.03901 Mathematical Finance +1606.03904 Astrophysics of Galaxies +1606.03913 Functional Analysis +1606.03914 Analysis of PDEs +1606.03915 Analysis of PDEs +1606.03918 Numerical Analysis +1606.03923 Phenomenology +1606.03924 Statistical Mechanics +1606.03928 Distributed, Parallel, and Cluster Computing +1606.03940 Methodology +1606.03941 Spectral Theory +1606.03942 Superconductivity +1606.03946 Physics and Society +1606.03949 Mesoscale and Nanoscale Physics +1606.03953 Combinatorics +1606.03954 Optimization and Control +1606.03959 Probability +1606.03962 Dynamical Systems +1606.03963 Digital Libraries +1606.03965 Analysis of PDEs +1606.03966 Learning +1606.03968 Computer Vision and Pattern Recognition +1606.03970 +1606.03972 Algebraic Geometry +1606.03975 Algebraic Geometry +1606.03978 Systems and Control +1606.03981 +1606.03989 Social and Information Networks +1606.03992 Robotics +1606.03998 Statistics Theory +1606.04000 Artificial Intelligence +1606.04001 Materials Science +1606.04011 Information Theory +1606.04015 Mesoscale and Nanoscale Physics +1606.04020 Numerical Analysis +1606.04022 Information Theory +1606.04024 Superconductivity +1606.04027 Algebraic Geometry +1606.04029 Combinatorics +1606.04030 +1606.04031 General Mathematics +1606.04035 Materials Science +1606.04037 Optimization and Control +1606.04039 Mathematical Finance +1606.04044 +1606.04046 Probability +1606.04049 Number Theory +1606.04050 Populations and Evolution +1606.04055 Neural and Evolutionary Computing +1606.04056 Learning +1606.04063 Soft Condensed Matter +1606.04065 Number Theory +1606.04066 Materials Science +1606.04071 History and Philosophy of Physics +1606.04072 +1606.04078 Fluid Dynamics +1606.04079 Disordered Systems and Neural Networks +1606.04080 Learning +1606.04081 Computation and Language +1606.04083 Physics and Society +1606.04088 Algebraic Geometry +hep-ph/9903347 Phenomenology +math/0602527 Algebraic Geometry +quant-ph/0309069 +quant-ph/0409130 +quant-ph/9606017 +0707.4385 Metric Geometry +0802.0843 Physics and Society +0912.0789 Theory +1003.3256 Physics and Society +1007.1726 Data Structures and Algorithms +1012.1495 Dynamical Systems +1108.4429 Physics and Society +1108.4833 Group Theory +1109.2584 History and Philosophy of Physics +1111.7172 Combinatorics +1112.5121 Physics and Society +1206.3922 Combinatorics +1210.8032 Representation Theory +1212.1799 Instrumentation and Methods for Astrophysics +1212.3650 Data Analysis, Statistics and Probability +1212.5469 Quantum Gases +1301.1654 Combinatorics +1304.0187 +1306.3575 +1306.5607 Numerical Analysis +1307.2186 Numerical Analysis +1308.4720 Experiment +1308.5948 Commutative Algebra +1309.6895 Methodology +1310.4812 Algebraic Geometry +1310.6869 Probability +1312.0551 Combinatorics +1312.2520 Combinatorics +1312.3039 Optimization and Control +1312.4327 Category Theory +1312.5055 Algebraic Geometry +1312.6604 Quantum Algebra +1401.7372 Computation +1403.3087 Solar and Stellar Astrophysics +1403.3089 Solar and Stellar Astrophysics +1403.3097 Solar and Stellar Astrophysics +1403.6700 +1406.0669 Combinatorics +1406.2820 Numerical Analysis +1406.3553 Solar and Stellar Astrophysics +1406.3556 Solar and Stellar Astrophysics +1406.3559 Solar and Stellar Astrophysics +1406.5903 Information Theory +1407.5001 Classical Physics +1407.5817 Solar and Stellar Astrophysics +1408.4164 Algebraic Geometry +1408.4282 Probability +1408.6892 Probability +1409.2733 Discrete Mathematics +1409.4380 Group Theory +1409.7959 Computational Physics +1410.3951 Quantitative Methods +1410.7944 Superconductivity +1411.3323 Strongly Correlated Electrons +1411.6353 +1411.7565 Statistics Theory +1412.6640 +1412.8229 Group Theory +1501.00401 Differential Geometry +1501.02619 Combinatorics +1501.05143 Fluid Dynamics +1501.05456 Differential Geometry +1501.06074 Physics Education +1501.06460 Cosmology and Nongalactic Astrophysics +1501.06674 Chemical Physics +1502.03742 Soft Condensed Matter +1502.05398 Theory +1503.05810 Numerical Analysis +1503.06030 Materials Science +1503.07391 Dynamical Systems +1503.07901 Computational Geometry +1504.00220 +1504.01064 Geometric Topology +1504.02169 +1504.02170 +1504.03489 +1504.05157 Theory +1504.05304 +1504.05578 Cosmology and Nongalactic Astrophysics +1504.05836 Phenomenology +1504.07243 Cosmology and Nongalactic Astrophysics +1504.07274 High Energy Astrophysical Phenomena +1504.07739 Strongly Correlated Electrons +1504.07766 Numerical Analysis +1505.00739 Group Theory +1505.01732 Quantum Gases +1505.04056 +1505.06000 +1506.02090 +1506.03453 High Energy Astrophysical Phenomena +1506.04573 Machine Learning +1506.06866 Algebraic Topology +1506.07538 Complex Variables +1506.08985 Experiment +1507.03422 Materials Science +1507.03897 Mesoscale and Nanoscale Physics +1507.03971 Exactly Solvable and Integrable Systems +1507.04745 Phenomenology +1507.06567 Probability +1507.07353 Astrophysics of Galaxies +1508.01441 Discrete Mathematics +1508.01814 Materials Science +1508.03506 Theory +1508.05844 High Energy Astrophysical Phenomena +1508.06084 Phenomenology +1508.06365 History and Philosophy of Physics +1508.06532 Strongly Correlated Electrons +1509.00719 Group Theory +1509.00911 +1509.02774 Pattern Formation and Solitons +1509.03333 Cosmology and Nongalactic Astrophysics +1509.03399 Chemical Physics +1509.04074 +1509.04266 Strongly Correlated Electrons +1509.04549 Data Structures and Algorithms +1509.05724 Classical Analysis and ODEs +1509.05754 +1509.06870 Statistical Mechanics +1509.07655 +1509.09214 Materials Science +1510.00753 Physics Education +1510.01023 +1510.01630 Earth and Planetary Astrophysics +1510.02403 Materials Science +1510.02420 +1510.02827 Dynamical Systems +1510.03223 Mathematical Finance +1510.03438 Theory +1510.04173 Solar and Stellar Astrophysics +1510.04633 +1510.04645 Systems and Control +1510.05611 Phenomenology +1510.06397 Strongly Correlated Electrons +1510.07501 Phenomenology +1510.07522 Numerical Analysis +1510.08588 Mesoscale and Nanoscale Physics +1510.08597 High Energy Astrophysical Phenomena +1510.08805 Information Theory +1510.08817 Strongly Correlated Electrons +1511.00366 Analysis of PDEs +1511.00663 Cosmology and Nongalactic Astrophysics +1511.00703 Mesoscale and Nanoscale Physics +1511.00864 Mesoscale and Nanoscale Physics +1511.00980 +1511.01911 Astrophysics of Galaxies +1511.02364 Fluid Dynamics +1511.03073 Phenomenology +1511.03087 Optics +1511.04852 Materials Science +1511.05968 Astrophysics of Galaxies +1511.07409 Computer Vision and Pattern Recognition +1511.07413 Mesoscale and Nanoscale Physics +1511.07653 Astrophysics of Galaxies +1511.07830 Algebraic Geometry +1511.08768 Machine Learning +1511.09182 Mesoscale and Nanoscale Physics +1511.09223 Cosmology and Nongalactic Astrophysics +1512.00155 Phenomenology +1512.00251 Logic +1512.00347 Atomic Physics +1512.00641 Cosmology and Nongalactic Astrophysics +1512.00761 +1512.00795 Computer Vision and Pattern Recognition +1512.01032 Astrophysics of Galaxies +1512.01378 Optics +1512.01624 Chaotic Dynamics +1512.02335 Dynamical Systems +1512.02515 Information Theory +1512.02641 Theory +1512.02749 Quantum Gases +1512.03006 Number Theory +1512.03914 Theory +1512.04223 Solar and Stellar Astrophysics +1512.04420 Geometric Topology +1512.05253 +1512.05270 Materials Science +1512.05350 High Energy Astrophysical Phenomena +1512.05367 Astrophysics of Galaxies +1512.05765 Strongly Correlated Electrons +1512.06446 Solar and Stellar Astrophysics +1512.06583 Statistical Mechanics +1512.07732 Strongly Correlated Electrons +1512.08563 Phenomenology +1512.09017 Systems and Control +1512.09212 Phenomenology +1512.09319 Theory +1601.00017 High Energy Astrophysical Phenomena +1601.00082 Cryptography and Security +1601.00552 Solar and Stellar Astrophysics +1601.00682 Astrophysics of Galaxies +1601.00911 High Energy Astrophysical Phenomena +1601.01026 Astrophysics of Galaxies +1601.02305 High Energy Astrophysical Phenomena +1601.02398 Strongly Correlated Electrons +1601.02665 Astrophysics of Galaxies +1601.02844 Statistics Theory +1601.03072 High Energy Astrophysical Phenomena +1601.03403 Strongly Correlated Electrons +1601.03537 Mesoscale and Nanoscale Physics +1601.04333 Differential Geometry +1601.04489 Soft Condensed Matter +1601.04591 Optics +1601.04726 +1601.04959 Solar and Stellar Astrophysics +1601.05248 Optics +1601.05773 Cosmology and Nongalactic Astrophysics +1601.06394 Phenomenology +1601.07080 Strongly Correlated Electrons +1601.07459 Instrumentation and Methods for Astrophysics +1601.07892 Materials Science +1601.07901 Data Analysis, Statistics and Probability +1602.00213 Group Theory +1602.00451 Mesoscale and Nanoscale Physics +1602.00486 +1602.00634 +1602.01121 Solar and Stellar Astrophysics +1602.01406 Plasma Physics +1602.01524 Astrophysics of Galaxies +1602.01595 Computation and Language +1602.01725 Materials Science +1602.01941 Astrophysics of Galaxies +1602.02097 Optimization and Control +1602.02226 Probability +1602.02988 Solar and Stellar Astrophysics +1602.03049 Astrophysics of Galaxies +1602.03302 Combinatorics +1602.03411 Plasma Physics +1602.03450 Materials Science +1602.03859 Mesoscale and Nanoscale Physics +1602.03883 +1602.04018 Astrophysics of Galaxies +1602.04083 Chemical Physics +1602.04194 +1602.04535 Disordered Systems and Neural Networks +1602.04606 +1602.04728 Analysis of PDEs +1602.04814 Earth and Planetary Astrophysics +1602.05009 Mesoscale and Nanoscale Physics +1602.05118 Plasma Physics +1602.05564 Optics +1602.05601 Cosmology and Nongalactic Astrophysics +1602.05960 Cosmology and Nongalactic Astrophysics +1602.06115 Statistical Mechanics +1602.06240 Superconductivity +1602.06294 Instrumentation and Methods for Astrophysics +1602.06446 High Energy Astrophysical Phenomena +1602.06593 Group Theory +1602.06948 Astrophysics of Galaxies +1602.07119 Computer Vision and Pattern Recognition +1602.07391 Quantum Gases +1602.07639 Astrophysics of Galaxies +1602.07696 +1602.08082 High Energy Astrophysical Phenomena +1602.08152 Theory +1602.08329 Quantum Gases +1602.08363 Mesoscale and Nanoscale Physics +1602.08738 +1603.00095 Statistical Mechanics +1603.00191 Mesoscale and Nanoscale Physics +1603.00369 Dynamical Systems +1603.00526 Astrophysics of Galaxies +1603.00651 Statistical Mechanics +1603.00692 Phenomenology +1603.00750 Phenomenology +1603.00757 Mesoscale and Nanoscale Physics +1603.01239 +1603.01277 +1603.01285 Mesoscale and Nanoscale Physics +1603.01593 +1603.02259 +1603.02277 Astrophysics of Galaxies +1603.02451 +1603.02538 +1603.02726 Superconductivity +1603.02828 +1603.03084 Astrophysics of Galaxies +1603.03173 Statistical Mechanics +1603.03237 Quantum Gases +1603.03256 Materials Science +1603.03632 Phenomenology +1603.03989 High Energy Astrophysical Phenomena +1603.04557 Astrophysics of Galaxies +1603.04579 Mesoscale and Nanoscale Physics +1603.04698 Cosmology and Nongalactic Astrophysics +1603.05210 Plasma Physics +1603.05253 Cosmology and Nongalactic Astrophysics +1603.05266 Materials Science +1603.05524 Phenomenology +1603.05529 Atomic Physics +1603.05578 High Energy Astrophysical Phenomena +1603.05631 Computer Vision and Pattern Recognition +1603.06105 Algebraic Geometry +1603.06259 Disordered Systems and Neural Networks +1603.06299 Phenomenology +1603.06339 Mesoscale and Nanoscale Physics +1603.06497 Superconductivity +1603.06612 Astrophysics of Galaxies +1603.06726 Theory +1603.06921 Astrophysics of Galaxies +1603.06937 Computer Vision and Pattern Recognition +1603.06987 Computer Vision and Pattern Recognition +1603.07032 +1603.07048 Strongly Correlated Electrons +1603.07076 Computer Vision and Pattern Recognition +1603.07128 Astrophysics of Galaxies +1603.07321 Cosmology and Nongalactic Astrophysics +1603.07620 +1603.07752 +1603.07802 Phenomenology +1603.08005 Earth and Planetary Astrophysics +1603.08010 Earth and Planetary Astrophysics +1603.08378 Fluid Dynamics +1603.08513 Astrophysics of Galaxies +1603.08553 Statistical Mechanics +1603.08561 Computer Vision and Pattern Recognition +1603.08609 Cosmology and Nongalactic Astrophysics +1603.08668 Chemical Physics +1603.08748 Phenomenology +1603.09251 Solar and Stellar Astrophysics +1603.09417 +1603.09653 Experiment +1603.09654 Lattice +1603.09670 +1604.00017 High Energy Astrophysical Phenomena +1604.00129 High Energy Astrophysical Phenomena +1604.00408 Optics +1604.00489 Statistical Mechanics +1604.00770 Phenomenology +1604.01021 High Energy Astrophysical Phenomena +1604.01035 Astrophysics of Galaxies +1604.01038 Cosmology and Nongalactic Astrophysics +1604.01050 Cosmology and Nongalactic Astrophysics +1604.01076 Plasma Physics +1604.01102 Phenomenology +1604.01126 High Energy Astrophysical Phenomena +1604.01321 Materials Science +1604.01360 Computer Vision and Pattern Recognition +1604.01424 Cosmology and Nongalactic Astrophysics +1604.02037 Phenomenology +1604.02084 Materials Science +1604.02245 Computer Vision and Pattern Recognition +1604.02466 Quantum Gases +1604.02478 +1604.02583 Mesoscale and Nanoscale Physics +1604.02787 Plasma Physics +1604.02840 Mesoscale and Nanoscale Physics +1604.02953 Mesoscale and Nanoscale Physics +1604.03077 High Energy Astrophysical Phenomena +1604.03272 Materials Science +1604.03352 High Energy Astrophysical Phenomena +1604.03629 Quantitative Methods +1604.03707 Number Theory +1604.03827 Materials Science +1604.03874 +1604.03909 High Energy Astrophysical Phenomena +1604.03941 Solar and Stellar Astrophysics +1604.04022 Astrophysics of Galaxies +1604.04076 Phenomenology +1604.04080 Phenomenology +1604.04289 Statistical Mechanics +1604.04296 Chemical Physics +1604.04485 High Energy Astrophysical Phenomena +1604.04508 Number Theory +1604.04540 Materials Science +1604.04712 Computational Physics +1604.04783 Computers and Society +1604.04919 Theory +1604.04954 Astrophysics of Galaxies +1604.05000 Computer Vision and Pattern Recognition +1604.05191 Earth and Planetary Astrophysics +1604.05309 Astrophysics of Galaxies +1604.05333 Astrophysics of Galaxies +1604.05435 +1604.05465 Instrumentation and Detectors +1604.05518 Astrophysics of Galaxies +1604.05536 Mesoscale and Nanoscale Physics +1604.05556 Disordered Systems and Neural Networks +1604.05625 Cosmology and Nongalactic Astrophysics +1604.05633 Computer Vision and Pattern Recognition +1604.06073 Solar and Stellar Astrophysics +1604.06074 Solar and Stellar Astrophysics +1604.06123 Solar and Stellar Astrophysics +1604.06192 Astrophysics of Galaxies +1604.06254 Biological Physics +1604.06441 Mesoscale and Nanoscale Physics +1604.06464 Solar and Stellar Astrophysics +1604.06621 Disordered Systems and Neural Networks +1604.06800 Phenomenology +1604.06806 Astrophysics of Galaxies +1604.07003 Solar and Stellar Astrophysics +1604.07009 Lattice +1604.07258 Mesoscale and Nanoscale Physics +1604.07602 Computer Vision and Pattern Recognition +1604.07623 Disordered Systems and Neural Networks +1604.08052 Probability +1604.08061 Mesoscale and Nanoscale Physics +1604.08455 Superconductivity +1604.08528 Space Physics +1604.08567 Disordered Systems and Neural Networks +1604.08594 Astrophysics of Galaxies +1604.08669 High Energy Astrophysical Phenomena +1604.08809 Quantum Gases +1604.08876 Computational Physics +1605.00313 Computational Geometry +1605.00336 Astrophysics of Galaxies +1605.00571 High Energy Astrophysical Phenomena +1605.00578 +1605.00657 Strongly Correlated Electrons +1605.00674 Strongly Correlated Electrons +1605.00719 High Energy Astrophysical Phenomena +1605.00765 High Energy Astrophysical Phenomena +1605.00777 Chemical Physics +1605.00838 Statistical Mechanics +1605.00948 Solar and Stellar Astrophysics +1605.01007 Optics +1605.01226 +1605.01300 High Energy Astrophysical Phenomena +1605.01405 Cosmology and Nongalactic Astrophysics +1605.01516 Instrumentation and Methods for Astrophysics +1605.01605 +1605.01767 Instrumentation and Methods for Astrophysics +1605.01961 +1605.01991 Earth and Planetary Astrophysics +1605.01992 High Energy Astrophysical Phenomena +1605.02006 Astrophysics of Galaxies +1605.02194 Astrophysics of Galaxies +1605.02211 Astrophysics of Galaxies +1605.02319 Probability +1605.02438 Astrophysics of Galaxies +1605.02467 High Energy Astrophysical Phenomena +1605.02506 Astrophysics of Galaxies +1605.02507 Earth and Planetary Astrophysics +1605.02656 Astrophysics of Galaxies +1605.02706 Astrophysics of Galaxies +1605.02904 Astrophysics of Galaxies +1605.02932 Mesoscale and Nanoscale Physics +1605.02997 Lattice +1605.03055 Astrophysics of Galaxies +1605.03136 Solar and Stellar Astrophysics +1605.03161 Astrophysics of Galaxies +1605.03192 Cosmology and Nongalactic Astrophysics +1605.03193 High Energy Astrophysical Phenomena +1605.03196 Astrophysics of Galaxies +1605.03224 Phenomenology +1605.03231 Theory +1605.03354 Logic +1605.03396 Soft Condensed Matter +1605.03408 Solar and Stellar Astrophysics +1605.03476 Phenomenology +1605.03490 Astrophysics of Galaxies +1605.03536 Astrophysics of Galaxies +1605.03583 Solar and Stellar Astrophysics +1605.03600 Astrophysics of Galaxies +1605.03606 Astrophysics of Galaxies +1605.03641 High Energy Astrophysical Phenomena +1605.03732 Solar and Stellar Astrophysics +1605.03750 Solar and Stellar Astrophysics +1605.03867 Earth and Planetary Astrophysics +1605.03937 Astrophysics of Galaxies +1605.04040 Astrophysics of Galaxies +1605.04066 Earth and Planetary Astrophysics +1605.04162 Solar and Stellar Astrophysics +1605.04228 Astrophysics of Galaxies +1605.04386 Astrophysics of Galaxies +1605.04430 Experiment +1605.04545 Experiment +1605.04794 Solar and Stellar Astrophysics +1605.04795 Astrophysics of Galaxies +1605.04842 Astrophysics of Galaxies +1605.04845 Astrophysics of Galaxies +1605.04907 Astrophysics of Galaxies +1605.04956 Mesoscale and Nanoscale Physics +1605.04962 Astrophysics of Galaxies +1605.04992 Astrophysics of Galaxies +1605.05008 Solar and Stellar Astrophysics +1605.05010 High Energy Astrophysical Phenomena +1605.05044 Astrophysics of Galaxies +1605.05129 Solar and Stellar Astrophysics +1605.05183 Astrophysics of Galaxies +1605.05243 +1605.05314 Astrophysics of Galaxies +1605.05321 Solar and Stellar Astrophysics +1605.05323 Astrophysics of Galaxies +1605.05364 Astrophysics of Galaxies +1605.05472 High Energy Astrophysical Phenomena +1605.05507 High Energy Astrophysical Phenomena +1605.05741 Astrophysics of Galaxies +1605.05746 High Energy Astrophysical Phenomena +1605.06101 Astrophysics of Galaxies +1605.06115 Astrophysics of Galaxies +1605.06117 Solar and Stellar Astrophysics +1605.06329 Astrophysics of Galaxies +1605.06331 High Energy Astrophysical Phenomena +1605.06447 +1605.06458 Solar and Stellar Astrophysics +1605.06461 High Energy Astrophysical Phenomena +1605.06500 Astrophysics of Galaxies +1605.06596 Algebraic Geometry +1605.06600 Theory +1605.06604 Strongly Correlated Electrons +1605.06661 Cosmology and Nongalactic Astrophysics +1605.06674 Solar and Stellar Astrophysics +1605.06688 Cosmology and Nongalactic Astrophysics +1605.06705 Astrophysics of Galaxies +1605.06756 Cosmology and Nongalactic Astrophysics +1605.06923 High Energy Astrophysical Phenomena +1605.07109 High Energy Astrophysical Phenomena +1605.07184 Phenomenology +1605.07235 High Energy Astrophysical Phenomena +1605.07353 Performance +1605.07434 Astrophysics of Galaxies +1605.07623 Astrophysics of Galaxies +1605.07739 Atomic Physics +1605.07800 Solar and Stellar Astrophysics +1605.07803 Phenomenology +1605.07920 Solar and Stellar Astrophysics +1605.07927 Solar and Stellar Astrophysics +1605.08051 Astrophysics of Galaxies +1605.08135 Analysis of PDEs +1605.08240 Phenomenology +1605.08303 +1605.08333 Cosmology and Nongalactic Astrophysics +1605.08342 Astrophysics of Galaxies +1605.08472 Cosmology and Nongalactic Astrophysics +1605.08574 Instrumentation and Methods for Astrophysics +1605.08619 Phenomenology +1605.08947 Astrophysics of Galaxies +1605.08980 Adaptation and Self-Organizing Systems +1605.09051 Optics +1605.09300 Solar and Stellar Astrophysics +1605.09372 Plasma Physics +1605.09424 Astrophysics of Galaxies +1606.00005 Solar and Stellar Astrophysics +1606.00016 High Energy Astrophysical Phenomena +1606.00019 Phenomenology +1606.00022 Astrophysics of Galaxies +1606.00089 Solar and Stellar Astrophysics +1606.00154 Strongly Correlated Electrons +1606.00214 +1606.00292 Mesoscale and Nanoscale Physics +1606.00797 Mesoscale and Nanoscale Physics +1606.00831 Solar and Stellar Astrophysics +1606.00843 Solar and Stellar Astrophysics +1606.00973 Solar and Stellar Astrophysics +1606.01108 Solar and Stellar Astrophysics +1606.01255 High Energy Astrophysical Phenomena +1606.01289 Computational Geometry +1606.01333 Solar and Stellar Astrophysics +1606.01373 Astrophysics of Galaxies +1606.01440 Instrumentation and Methods for Astrophysics +1606.01466 High Energy Astrophysical Phenomena +1606.01525 Atomic Physics +1606.01573 Fluid Dynamics +1606.01685 High Energy Astrophysical Phenomena +1606.01744 Earth and Planetary Astrophysics +1606.01770 Theory +1606.02064 Fluid Dynamics +1606.02075 High Energy Astrophysical Phenomena +1606.02115 Solar and Stellar Astrophysics +1606.02204 Astrophysics of Galaxies +1606.02285 High Energy Astrophysical Phenomena +1606.02496 Solar and Stellar Astrophysics +1606.02620 Instrumentation and Methods for Astrophysics +1606.02707 High Energy Astrophysical Phenomena +1606.02726 Astrophysics of Galaxies +1606.02755 Solar and Stellar Astrophysics +1606.02852 +1606.02925 Solar and Stellar Astrophysics +1606.02947 Theory +1606.03028 Astrophysics of Galaxies +1606.03090 Instrumentation and Methods for Astrophysics +1606.03093 Solar and Stellar Astrophysics +1606.03230 Fluid Dynamics +1606.03303 Astrophysics of Galaxies +1606.03450 High Energy Astrophysical Phenomena +1606.03501 Experiment +1606.03517 Optics +1606.03655 Solar and Stellar Astrophysics +1606.03734 Solar and Stellar Astrophysics +1606.03781 Astrophysics of Galaxies +1606.03817 Solar and Stellar Astrophysics +1606.03842 +1606.03991 Phenomenology +1606.03997 Earth and Planetary Astrophysics +1606.04075 Cosmology and Nongalactic Astrophysics +1606.04098 High Energy Astrophysical Phenomena +1606.04154 Solar and Stellar Astrophysics +1606.04214 Mesoscale and Nanoscale Physics +1606.04318 Astrophysics of Galaxies +1606.04375 Atomic Physics +1606.04509 Earth and Planetary Astrophysics +1606.04540 Astrophysics of Galaxies +1606.04635 Solar and Stellar Astrophysics +1606.04651 Astrophysics of Galaxies +1606.04667 Astrophysics of Galaxies +1606.04862 Astrophysics of Galaxies +1606.04867 Astrophysics of Galaxies +1606.04883 Statistical Mechanics +1606.04886 Phenomenology +1606.04955 High Energy Astrophysical Phenomena +1606.04981 Astrophysics of Galaxies +1606.05003 Astrophysics of Galaxies +1606.05187 Earth and Planetary Astrophysics +1606.05189 Earth and Planetary Astrophysics +1606.05196 Earth and Planetary Astrophysics +1606.05292 Solar and Stellar Astrophysics +1606.05307 High Energy Astrophysical Phenomena +1606.05394 Astrophysics of Galaxies +1606.05456 High Energy Astrophysical Phenomena +1606.05465 Solar and Stellar Astrophysics +1606.05499 Astrophysics of Galaxies +1606.05504 High Energy Astrophysical Phenomena +1606.05511 Mesoscale and Nanoscale Physics +1606.05531 Strongly Correlated Electrons +1606.05570 Accelerator Physics +1606.05603 Earth and Planetary Astrophysics +1606.05885 Astrophysics of Galaxies +1606.06006 Cosmology and Nongalactic Astrophysics +1606.06225 Astrophysics of Galaxies +1606.06288 Astrophysics of Galaxies +1606.06303 Astrophysics of Galaxies +1606.06320 Instrumentation and Methods for Astrophysics +1606.06348 Theory +1606.06397 Analysis of PDEs +1606.06597 Number Theory +1606.06638 High Energy Astrophysical Phenomena +1606.06689 Astrophysics of Galaxies +1606.07004 Solar and Stellar Astrophysics +1606.07218 Earth and Planetary Astrophysics +1606.07387 Astrophysics of Galaxies +1606.07485 Chemical Physics +1606.07510 Solar and Stellar Astrophysics +1606.07621 Distributed, Parallel, and Cluster Computing +1606.07741 Solar and Stellar Astrophysics +1606.07836 High Energy Astrophysical Phenomena +1606.07908 Multimedia +1606.08271 Solar and Stellar Astrophysics +1606.08623 Earth and Planetary Astrophysics +1606.08662 Phenomenology +1606.08726 Algebraic Geometry +1606.09077 Chemical Physics +1606.09223 Superconductivity +1606.09246 Earth and Planetary Astrophysics +1606.09478 Mesoscale and Nanoscale Physics +1607.00014 Astrophysics of Galaxies +1607.00048 Combinatorics +1607.00060 Theory +1607.00343 High Energy Astrophysical Phenomena +1607.00397 Dynamical Systems +1607.00491 Solar and Stellar Astrophysics +1607.00639 Strongly Correlated Electrons +1607.00898 Astrophysics of Galaxies +1607.01434 Statistics Theory +1607.01553 Solar and Stellar Astrophysics +1607.01852 Superconductivity +1607.02440 Solar and Stellar Astrophysics +1607.02710 Mesoscale and Nanoscale Physics +1607.02839 Space Physics +1607.02866 High Energy Astrophysical Phenomena +1607.02971 Astrophysics of Galaxies +1607.03114 Solar and Stellar Astrophysics +1607.03577 Astrophysics of Galaxies +1607.03885 Logic +1607.04054 +1607.04330 Networking and Internet Architecture +1607.04795 Superconductivity +1607.05346 Algebraic Topology +1607.05455 Methodology +1607.05480 Earth and Planetary Astrophysics +1607.05528 Materials Science +1607.05592 Phenomenology +1607.05794 Category Theory +1607.06309 Solar and Stellar Astrophysics +1607.06530 +1607.06695 +1607.06719 Phenomenology +1607.06871 Computer Vision and Pattern Recognition +1607.06912 Soft Condensed Matter +1607.07043 Computer Vision and Pattern Recognition +1607.07065 Pattern Formation and Solitons +1607.07095 +1607.07137 +1607.07150 +1607.07215 Computer Vision and Pattern Recognition +1607.07394 Phenomenology +1607.07414 Methodology +1607.07433 Numerical Analysis +1607.07437 History and Philosophy of Physics +1607.07438 Astrophysics of Galaxies +1607.07440 Mesoscale and Nanoscale Physics +1607.07444 High Energy Astrophysical Phenomena +1607.07466 Optics +1607.07469 Physics Education +1607.07473 Strongly Correlated Electrons +1607.07474 Populations and Evolution +1607.07479 Numerical Analysis +1607.07482 Functional Analysis +1607.07483 Robotics +1607.07484 Information Theory +1607.07485 Mesoscale and Nanoscale Physics +1607.07486 Algebraic Geometry +1607.07488 +1607.07489 Cryptography and Security +1607.07490 +1607.07492 Differential Geometry +1607.07493 Physics Education +1607.07494 Networking and Internet Architecture +1607.07495 Computers and Society +1607.07496 +1607.07501 Cryptography and Security +1607.07502 Social and Information Networks +1607.07503 Genomics +1607.07504 Information Retrieval +1607.07508 Information Theory +1607.07509 Differential Geometry +1607.07510 General Finance +1607.07511 Statistical Mechanics +1607.07512 Functional Analysis +1607.07514 Computation and Language +1607.07515 Applications +1607.07516 Computational Complexity +1607.07517 Experiment +1607.07519 Machine Learning +1607.07521 Methodology +1607.07522 Combinatorics +1607.07525 Computer Vision and Pattern Recognition +1607.07527 Algebraic Geometry +1607.07529 Number Theory +1607.07532 Exactly Solvable and Integrable Systems +1607.07535 Systems and Control +1607.07536 Strongly Correlated Electrons +1607.07537 Information Theory +1607.07541 Mesoscale and Nanoscale Physics +1607.07542 Spectral Theory +1607.07543 Systems and Control +1607.07544 Classical Analysis and ODEs +1607.07547 Information Theory +1607.07553 Data Structures and Algorithms +1607.07555 Probability +1607.07556 Numerical Analysis +1607.07557 Classical Analysis and ODEs +1607.07559 Algebraic Topology +1607.07561 Computer Vision and Pattern Recognition +1607.07563 Probability +1607.07565 Computation and Language +1607.07567 +1607.07570 Social and Information Networks +1607.07572 +1607.07573 Machine Learning +1607.07577 Differential Geometry +1607.07580 Analysis of PDEs +1607.07581 Operator Algebras +1607.07582 Mathematical Finance +1607.07583 Combinatorics +1607.07584 Analysis of PDEs +1607.07589 +1607.07591 Numerical Analysis +1607.07593 Dynamical Systems +1607.07600 Statistics Theory +1607.07602 Software Engineering +1607.07604 Computer Vision and Pattern Recognition +1607.07606 Probability +1607.07607 Learning +1607.07608 Fluid Dynamics +1607.07611 Learning +1607.07614 Computer Vision and Pattern Recognition +1607.07618 Algebraic Geometry +1607.07620 Optics +1607.07622 Mesoscale and Nanoscale Physics +1607.07623 Phenomenology +1607.07629 Commutative Algebra +1607.07630 Computation and Language +1607.07632 Astrophysics of Galaxies +1607.07633 Rings and Algebras +1607.07634 Commutative Algebra +1607.07639 Computer Vision and Pattern Recognition +1607.07640 Mesoscale and Nanoscale Physics +1607.07641 Commutative Algebra +1607.07643 Analysis of PDEs +1607.07644 Group Theory +1607.07646 Computer Vision and Pattern Recognition +1607.07647 Data Structures and Algorithms +1607.07649 Atomic Physics +1607.07650 Group Theory +1607.07653 Group Theory +1607.07654 Probability +1607.07656 Cryptography and Security +1607.07657 Computation and Language +1607.07661 Geometric Topology +1607.07662 Numerical Analysis +1607.07663 Classical Analysis and ODEs +1607.07664 Applications +1607.07667 Algebraic Topology +1607.07671 Computer Vision and Pattern Recognition +1607.07673 Data Structures and Algorithms +1607.07674 Information Theory +1607.07678 Category Theory +1607.07680 Computer Vision and Pattern Recognition +1607.07681 Functional Analysis +1607.07683 Numerical Analysis +1607.07684 Computer Science and Game Theory +1607.07685 Exactly Solvable and Integrable Systems +1607.07686 +1607.07687 High Energy Astrophysical Phenomena +1607.07689 +1607.07693 Phenomenology +1607.07696 Distributed, Parallel, and Cluster Computing +1607.07697 Multimedia +1607.07701 Logic +1607.07702 Numerical Analysis +1607.07703 Physics Education +1607.07704 Analysis of PDEs +1607.07706 General Finance +1607.07707 Information Theory +1607.07708 Strongly Correlated Electrons +1607.07712 Computers and Society +1607.07714 +1607.07716 Computer Vision and Pattern Recognition +1607.07719 Information Theory +1607.07722 Materials Science +1607.07727 Programming Languages +1607.07728 Representation Theory +1607.07730 Artificial Intelligence +1607.07731 Superconductivity +1607.07734 Combinatorics +1607.07737 Data Structures and Algorithms +1607.07744 Cosmology and Nongalactic Astrophysics +1607.07746 Algebraic Geometry +1607.07747 General Topology +1607.07748 Algebraic Topology +1607.07750 Space Physics +1607.07751 Computers and Society +1607.07753 Systems and Control +1607.07754 Phenomenology +1607.07755 Strongly Correlated Electrons +1607.07756 K-Theory and Homology +1607.07760 Differential Geometry +1607.07761 Distributed, Parallel, and Cluster Computing +1607.07763 Distributed, Parallel, and Cluster Computing +1607.07769 Dynamical Systems +1607.07770 Computer Vision and Pattern Recognition +1607.07774 Soft Condensed Matter +1607.07776 Biological Physics +1607.07777 Differential Geometry +1607.07778 Algebraic Geometry +1607.07779 Algebraic Geometry +1607.07780 Other Computer Science +1607.07781 Instrumentation and Detectors +1607.07782 Mesoscale and Nanoscale Physics +1607.07784 Instrumentation and Detectors +1607.07787 Functional Analysis +1607.07788 Computation and Language +1607.07789 Combinatorics +1607.07790 Computers and Society +1607.07792 Computers and Society +1607.07793 Computers and Society +1607.07794 Mesoscale and Nanoscale Physics +1607.07795 +1607.07796 Human-Computer Interaction +1607.07798 Information Theory +1607.07799 Information Theory +1607.07800 Instrumentation and Detectors +1607.07801 Sound +1607.07802 Metric Geometry +1607.07804 Learning +1607.07805 Other Quantitative Biology +1607.07806 Quantitative Methods +1607.07809 Biological Physics +1607.07810 +1607.07812 Mesoscale and Nanoscale Physics +1607.07816 Fluid Dynamics +1607.07817 Quantitative Methods +1607.07818 Data Structures and Algorithms +1607.07820 Geometric Topology +1607.07821 Algebraic Geometry +1607.07823 Algebraic Geometry +1607.07824 Multimedia +1607.07826 Materials Science +1607.07827 Number Theory +1607.07828 Logic in Computer Science +1607.07829 Algebraic Geometry +1607.07830 Group Theory +1607.07833 Logic +1607.07834 Quantitative Methods +1607.07838 Soft Condensed Matter +1607.07841 Cryptography and Security +1607.07842 Quantum Gases +1607.07844 Statistics Theory +1607.07846 Distributed, Parallel, and Cluster Computing +1607.07848 Robotics +1607.07849 Computers and Society +1607.07853 Physics Education +1607.07856 Physics Education +1607.07858 Mesoscale and Nanoscale Physics +1607.07860 Number Theory +1607.07861 Earth and Planetary Astrophysics +1607.07864 Dynamical Systems +1607.07866 Probability +1607.07867 Mesoscale and Nanoscale Physics +cond-mat/0203044 Mesoscale and Nanoscale Physics +hep-th/0209109 Theory +0706.1988 Physics Education +0905.2258 Algebraic Geometry +1006.2334 Theory +1108.5126 Geometric Topology +1109.1082 Combinatorics +1205.5656 +1301.1756 Quantum Algebra +1305.6412 Statistical Mechanics +1309.1879 Algebraic Geometry +1309.6524 Representation Theory +1310.2921 Geometric Topology +1311.3123 Information Theory +1401.7169 Information Theory +1402.0152 Quantum Algebra +1402.0521 Networking and Internet Architecture +1402.1027 Computer Science and Game Theory +1403.1930 Symplectic Geometry +1403.2975 +1405.2662 Rings and Algebras +1405.2733 Cryptography and Security +1405.3575 Phenomenology +1407.0867 Quantitative Methods +1407.1789 +1407.6767 Geometric Topology +1407.7106 +1408.3584 Disordered Systems and Neural Networks +1408.4347 Superconductivity +1411.1699 Metric Geometry +1412.2459 +1412.6860 Probability +1501.00737 Chemical Physics +1501.03748 +1501.05164 Probability +1502.01381 Algebraic Geometry +1502.07598 Information Theory +1502.07738 Machine Learning +1503.01517 +1503.01840 +1503.06023 Algebraic Geometry +1503.08214 Cosmology and Nongalactic Astrophysics +1504.01086 Geometric Topology +1504.01396 Strongly Correlated Electrons +1504.02299 Phenomenology +1504.07255 Instrumentation and Methods for Astrophysics +1504.07645 Probability +1505.00835 Robotics +1505.02106 +1505.07996 +1506.04999 +1507.00544 +1507.03145 Information Theory +1507.03797 Probability +1507.04077 Geometric Topology +1507.04698 Metric Geometry +1507.05066 Applications +1507.05583 Geometric Topology +1508.01712 Combinatorics +1508.02535 Distributed, Parallel, and Cluster Computing +1508.04639 Commutative Algebra +1508.06280 Instrumentation and Methods for Astrophysics +1508.06616 Dynamical Systems +1508.07774 Experiment +1509.01724 Algebraic Geometry +1509.02494 High Energy Astrophysical Phenomena +1509.03431 Superconductivity +1509.03957 Accelerator Physics +1509.08626 +1510.00424 Combinatorics +1510.00480 Exactly Solvable and Integrable Systems +1510.01495 Information Theory +1510.05071 Systems and Control +1510.06243 Number Theory +1510.07487 Symbolic Computation +1511.00026 Mathematical Finance +1511.00071 Number Theory +1511.00711 Combinatorics +1511.01508 Computer Vision and Pattern Recognition +1511.01783 Lattice +1511.03408 Disordered Systems and Neural Networks +1511.03778 Statistical Mechanics +1511.05822 Classical Analysis and ODEs +1511.05885 +1511.06286 Computation +1511.06676 Computer Vision and Pattern Recognition +1511.06844 Combinatorics +1511.08258 Statistical Mechanics +1511.08861 Computer Vision and Pattern Recognition +1512.00577 Quantum Algebra +1512.01630 Cryptography and Security +1512.02010 Algebraic Geometry +1512.02087 Theory +1512.02433 Computation and Language +1512.03049 Geometric Topology +1512.06067 +1512.06335 Phenomenology +1601.01273 Algebraic Geometry +1601.01356 Learning +1601.02584 Instrumentation and Methods for Astrophysics +1601.02843 Dynamical Systems +1601.06648 Statistical Mechanics +1601.07555 +1601.08222 Earth and Planetary Astrophysics +1602.00676 Soft Condensed Matter +1602.01292 Theory +1602.01298 Combinatorics +1602.01437 Instrumentation and Detectors +1602.02028 Differential Geometry +1602.02435 Applications +1602.02990 Robotics +1602.03327 Theory +1602.04985 Combinatorics +1602.06676 Mesoscale and Nanoscale Physics +1602.07202 Computational Physics +1602.07212 +1602.07387 Machine Learning +1602.08199 Optics +1602.08357 Neural and Evolutionary Computing +1603.00167 +1603.01721 Earth and Planetary Astrophysics +1603.04473 Disordered Systems and Neural Networks +1603.05024 Statistical Mechanics +1603.06291 +1603.07400 Learning +1603.07750 +1603.07943 Group Theory +1603.08361 Representation Theory +1603.08967 Mesoscale and Nanoscale Physics +1604.00096 Quantum Gases +1604.00374 Instrumentation and Detectors +1604.01028 Mesoscale and Nanoscale Physics +1604.01658 Number Theory +1604.02260 Instrumentation and Detectors +1604.03089 +1604.05285 Statistical Mechanics +1604.05492 Information Retrieval +1604.07653 Quantum Gases +1604.08029 Differential Geometry +1604.08429 Cosmology and Nongalactic Astrophysics +1605.00092 Discrete Mathematics +1605.00550 Chemical Physics +1605.00583 +1605.02220 Quantum Gases +1605.03513 Experiment +1605.03649 Mesoscale and Nanoscale Physics +1605.04972 Geometric Topology +1605.06648 Strongly Correlated Electrons +1605.06758 Disordered Systems and Neural Networks +1605.06785 Analysis of PDEs +1605.07137 Mesoscale and Nanoscale Physics +1605.07818 +1605.07877 Algebraic Geometry +1605.07884 Mathematical Finance +1605.08719 Optimization and Control +1605.08720 Algebraic Geometry +1605.09243 Analysis of PDEs +1605.09259 Mesoscale and Nanoscale Physics +1606.00999 Experiment +1606.03115 +1606.03927 +1606.04273 Computation +1606.04333 Computer Vision and Pattern Recognition +1606.04378 Category Theory +1606.04426 Quantum Gases +1606.04470 Analysis of PDEs +1606.04482 Number Theory +1606.04533 Number Theory +1606.04534 Chemical Physics +1606.04541 Phenomenology +1606.04548 Cosmology and Nongalactic Astrophysics +1606.04551 Optimization and Control +1606.04552 Learning +1606.04553 Systems and Control +1606.04554 Mesoscale and Nanoscale Physics +1606.04555 Algebraic Geometry +1606.04556 Earth and Planetary Astrophysics +1606.04558 Geophysics +1606.04559 Earth and Planetary Astrophysics +1606.04563 Instrumentation and Methods for Astrophysics +1606.04564 Applications +1606.04568 Software Engineering +1606.04570 Optics +1606.04571 Classical Analysis and ODEs +1606.04576 Genomics +1606.04577 Dynamical Systems +1606.04578 Physics Education +1606.04579 Superconductivity +1606.04583 Analysis of PDEs +1606.04584 General Physics +1606.04585 High Energy Astrophysical Phenomena +1606.04586 Computer Vision and Pattern Recognition +1606.04587 Probability +1606.04589 Artificial Intelligence +1606.04590 Computer Vision and Pattern Recognition +1606.04592 Computational Complexity +1606.04593 Cryptography and Security +1606.04597 Computation and Language +1606.04598 Cryptography and Security +1606.04599 Cryptography and Security +1606.04607 Rings and Algebras +1606.04608 Combinatorics +1606.04609 Hardware Architecture +1606.04615 Learning +1606.04616 Computer Vision and Pattern Recognition +1606.04618 Machine Learning +1606.04620 Analysis of PDEs +1606.04623 Phenomenology +1606.04624 Learning +1606.04625 Combinatorics +1606.04631 Multimedia +1606.04637 Computer Vision and Pattern Recognition +1606.04639 Information Theory +1606.04640 Computation and Language +1606.04645 +1606.04646 Learning +1606.04647 Optimization and Control +1606.04648 Information Retrieval +1606.04649 Computational Complexity +1606.04656 Plasma Physics +1606.04658 Strongly Correlated Electrons +1606.04659 +1606.04660 Numerical Analysis +1606.04661 Information Theory +1606.04662 Cryptography and Security +1606.04664 Analysis of PDEs +1606.04665 Analysis of PDEs +1606.04670 Optimization and Control +1606.04673 Number Theory +1606.04674 Astrophysics of Galaxies +1606.04676 Solar and Stellar Astrophysics +1606.04682 Software Engineering +1606.04685 Functional Analysis +1606.04686 Computation and Language +1606.04687 Functional Analysis +1606.04689 Materials Science +1606.04690 Complex Variables +1606.04693 Analysis of PDEs +1606.04694 Accelerator Physics +1606.04695 Artificial Intelligence +1606.04701 Analysis of PDEs +1606.04702 Computer Vision and Pattern Recognition +1606.04703 Computers and Society +1606.04704 Astrophysics of Galaxies +1606.04708 Number Theory +1606.04709 Mesoscale and Nanoscale Physics +1606.04718 Data Structures and Algorithms +1606.04719 Neurons and Cognition +1606.04721 Social and Information Networks +1606.04723 Analysis of PDEs +1606.04725 +1606.04727 Superconductivity +1606.04730 Soft Condensed Matter +1606.04733 Fluid Dynamics +1606.04734 Cosmology and Nongalactic Astrophysics +1606.04735 Fluid Dynamics +1606.04740 Computational Physics +1606.04741 Earth and Planetary Astrophysics +1606.04743 Instrumentation and Detectors +1606.04746 Data Structures and Algorithms +1606.04747 Probability +1606.04749 Information Theory +1606.04750 Learning +1606.04754 Computation and Language +1606.04756 Combinatorics +1606.04758 Phenomenology +1606.04761 Information Theory +1606.04762 Algebraic Geometry +1606.04763 Data Structures and Algorithms +1606.04765 Logic +1606.04766 Computer Vision and Pattern Recognition +1606.04771 Methodology +1606.04773 Operator Algebras +1606.04774 Robotics +1606.04775 Quantum Algebra +1606.04776 Classical Analysis and ODEs +1606.04777 +1606.04779 Combinatorics +1606.04780 Plasma Physics +1606.04786 Logic in Computer Science +1606.04790 General Finance +1606.04793 Analysis of PDEs +1606.04797 Computer Vision and Pattern Recognition +1606.04800 Medical Physics +1606.04802 Methodology +1606.04804 Numerical Analysis +1606.04805 Performance +1606.04806 Complex Variables +1606.04808 +1606.04810 Functional Analysis +1606.04814 Classical Analysis and ODEs +1606.04816 Economics +1606.04819 Statistics Theory +1606.04820 Machine Learning +1606.04821 +1606.04822 Algebraic Geometry +1606.04824 Dynamical Systems +1606.04827 High Energy Astrophysical Phenomena +1606.04828 Analysis of PDEs +1606.04830 Distributed, Parallel, and Cluster Computing +1606.04831 Analysis of PDEs +1606.04832 Classical Physics +1606.04834 Materials Science +1606.04836 Human-Computer Interaction +1606.04838 Machine Learning +1606.04848 Geometric Topology +1606.04849 Networking and Internet Architecture +1606.04853 Computer Vision and Pattern Recognition +1606.04854 +1606.04855 +1606.04857 Combinatorics +1606.04858 Algebraic Geometry +1606.04859 Differential Geometry +1606.04868 Functional Analysis +1606.04869 Combinatorics +1606.04870 Computation and Language +1606.04871 Rings and Algebras +1606.04872 Physics and Society +1606.04874 Functional Analysis +1606.04875 Quantitative Methods +1606.04876 Neurons and Cognition +1606.04884 Neural and Evolutionary Computing +1606.04885 Atomic Physics +1606.04891 Methodology +1606.04892 Analysis of PDEs +1606.04897 Mesoscale and Nanoscale Physics +1606.04899 Differential Geometry +1606.04900 Physics and Society +1606.04908 Mesoscale and Nanoscale Physics +1606.04911 Statistical Mechanics +1606.04912 Numerical Analysis +1606.04918 +1606.04919 Instrumentation and Detectors +1606.04924 Functional Analysis +1606.04925 Probability +1606.04927 Strongly Correlated Electrons +1606.04928 Networking and Internet Architecture +1606.04929 Human-Computer Interaction +1606.04930 Learning +1606.04933 Information Theory +1606.04935 Networking and Internet Architecture +nucl-ex/0402005 +1103.1918 Optimization and Control +1105.6220 Probability +1107.0312 Methodology +1107.1210 Geometric Topology +1109.5417 +1205.5504 Information Theory +1207.7120 Rings and Algebras +1210.4722 +1211.1352 Number Theory +1301.4457 Theory +1304.6352 Algebraic Geometry +1309.1707 Probability +1312.5487 Rings and Algebras +1312.6429 Phenomenology +1403.1824 Information Theory +1403.5061 Number Theory +1403.5864 Other Computer Science +1404.4168 Number Theory +1404.6563 Information Theory +1406.7142 +1408.3608 Statistical Mechanics +1408.5819 Functional Analysis +1409.1079 Classical Analysis and ODEs +1409.3707 Combinatorics +1409.3970 Computer Vision and Pattern Recognition +1410.2505 Methodology +1410.6911 Analysis of PDEs +1410.7095 Analysis of PDEs +1411.1703 Number Theory +1411.3428 Phenomenology +1411.7202 +1501.00521 Probability +1501.02599 Theory +1501.03291 Machine Learning +1501.03411 Commutative Algebra +1501.03460 Astrophysics of Galaxies +1501.04955 Combinatorics +1502.02192 Rings and Algebras +1502.05554 +1502.05698 Artificial Intelligence +1503.02350 Differential Geometry +1503.05342 +1503.07190 Analysis of PDEs +1504.06304 Phenomenology +1505.00728 Mesoscale and Nanoscale Physics +1505.06428 Probability +1505.08113 Methodology +1506.00595 Theory +1506.01444 +1506.05089 Statistical Mechanics +1506.07030 Atomic Physics +1506.07565 Representation Theory +1506.07976 Populations and Evolution +1506.08911 Number Theory +1507.00951 Algebraic Geometry +1507.01570 Phenomenology +1507.06836 Discrete Mathematics +1507.06974 Combinatorics +1507.08479 Classical Analysis and ODEs +1507.08792 Data Structures and Algorithms +1508.00071 Mesoscale and Nanoscale Physics +1508.01852 Number Theory +1509.03164 Atomic Physics +1509.04429 Number Theory +1509.08283 Quantum Gases +1509.08797 Phenomenology +1510.03372 Phenomenology +1510.03490 Plasma Physics +1510.05090 Theory +1510.07624 Chemical Physics +1511.00136 Geometric Topology +1511.04236 Statistical Mechanics +1511.04359 Information Theory +1511.05782 Optimization and Control +1511.06926 Superconductivity +1511.07262 Atomic Physics +1512.00430 +1512.01861 Cosmology and Nongalactic Astrophysics +1512.03337 Category Theory +1512.03628 Space Physics +1512.04911 Soft Condensed Matter +1512.05434 +1512.06970 Systems and Control +1512.07111 Optics +1512.08617 Optimization and Control +1512.08630 Optimization and Control +1512.08668 Functional Analysis +1512.08901 Instrumentation and Detectors +1512.08991 Emerging Technologies +1512.09140 General Physics +1512.09154 Geometric Topology +1512.09160 Tissues and Organs +1512.09162 Geometric Topology +1512.09165 Metric Geometry +1512.09166 +1512.09171 Logic +1512.09173 Analysis of PDEs +1512.09174 Dynamical Systems +1512.09181 Accelerator Physics +1512.09184 Information Theory +1512.09185 Group Theory +1512.09186 Logic in Computer Science +1512.09188 Commutative Algebra +1512.09193 Statistics Theory +1512.09196 Exactly Solvable and Integrable Systems +1512.09197 Instrumentation and Detectors +1512.09198 Symplectic Geometry +1512.09199 Symplectic Geometry +1512.09201 Complex Variables +1512.09202 Phenomenology +1512.09203 Phenomenology +1512.09204 Learning +1512.09205 Dynamical Systems +1512.09206 Methodology +1512.09207 Formal Languages and Automata Theory +1512.09209 Algebraic Geometry +1512.09210 Numerical Analysis +1512.09217 +1512.09221 +1512.09226 Statistics Theory +1512.09227 Learning +1512.09228 Distributed, Parallel, and Cluster Computing +1512.09235 Optimization and Control +1512.09239 Computer Science and Game Theory +1512.09242 Fluid Dynamics +1512.09243 +1512.09244 Methodology +1512.09245 Dynamical Systems +1512.09246 Medical Physics +1512.09249 Number Theory +1512.09251 Optimization and Control +1512.09254 Artificial Intelligence +1512.09256 +1512.09259 +1512.09261 Analysis of PDEs +1512.09262 Analysis of PDEs +1512.09263 Cryptography and Security +1512.09265 +1512.09268 Analysis of PDEs +1512.09269 +1512.09270 Instrumentation and Detectors +1512.09273 Geometric Topology +1512.09277 Number Theory +1512.09280 Risk Management +1512.09283 Phenomenology +1512.09284 Phenomenology +1512.09285 K-Theory and Homology +1512.09287 Information Theory +1512.09290 Numerical Analysis +1512.09293 Physics and Society +1512.09294 Classical Analysis and ODEs +1512.09295 Machine Learning +1512.09297 Symplectic Geometry +1512.09304 Algebraic Topology +1512.09308 +1512.09309 +1512.09311 Systems and Control +1512.09314 Distributed, Parallel, and Cluster Computing +1512.09320 Differential Geometry +1512.09321 Representation Theory +1512.09322 Optics +1512.09323 Optics +1512.09326 +1512.09336 Geometric Topology +1512.09337 Exactly Solvable and Integrable Systems +1512.09338 Rings and Algebras +1512.09339 Representation Theory +1512.09341 Representation Theory +1512.09343 Number Theory +1512.09344 Representation Theory +1512.09345 Geometric Topology +1512.09348 Cosmology and Nongalactic Astrophysics +1512.09349 Data Structures and Algorithms +1512.09355 +1512.09359 Numerical Analysis +1512.09362 Number Theory +1512.09365 +1512.09366 +1512.09368 Quantitative Methods +1512.09369 Programming Languages +1512.09370 Populations and Evolution +1512.09372 Chemical Physics +1512.09373 Materials Science +1512.09375 +cond-mat/0202214 Materials Science +cond-mat/0208093 Materials Science +physics/9911030 Computational Physics +physics/9911031 Computational Physics +1001.0457 Algebraic Geometry +1002.1869 Commutative Algebra +1004.3177 Algebraic Geometry +1006.4290 Commutative Algebra +1010.0824 Classical Analysis and ODEs +1103.2930 +1111.4206 Dynamical Systems +1112.0270 Molecular Networks +1201.0856 Computational Complexity +1202.0370 Probability +1203.3072 Operator Algebras +1206.0711 Logic +1207.4228 Rings and Algebras +1208.5637 Commutative Algebra +1211.2592 Rings and Algebras +1212.6628 Geometric Topology +1301.2611 Logic +1302.2737 Algebraic Topology +1304.1062 Algebraic Geometry +1304.1695 Algebraic Geometry +1305.2868 Algebraic Geometry +1305.4578 Rings and Algebras +1307.0817 General Finance +1309.5055 Representation Theory +1311.4839 Computational Complexity +1311.6052 Algebraic Geometry +1312.0163 Rings and Algebras +1402.3534 Functional Analysis +1403.0234 Differential Geometry +1403.4648 Mesoscale and Nanoscale Physics +1403.7707 Computer Science and Game Theory +1404.2548 Quantum Gases +1404.4551 +1405.0123 Rings and Algebras +1406.0706 Methodology +1408.2136 Combinatorics +1409.4578 Optics +1410.0297 Number Theory +1410.2028 Representation Theory +1410.2950 Atomic and Molecular Clusters +1411.3736 Networking and Internet Architecture +1411.4412 Differential Geometry +1411.4689 +1411.6698 Probability +1412.0719 Probability +1502.00287 +1502.03266 Probability +1502.08042 Strongly Correlated Electrons +1503.02233 Instrumentation and Methods for Astrophysics +1503.03637 Computer Vision and Pattern Recognition +1503.03731 Algebraic Geometry +1503.05839 Geometric Topology +1503.08183 Theory +1504.03548 K-Theory and Homology +1505.03336 Data Analysis, Statistics and Probability +1505.04001 Phenomenology +1505.05433 Analysis of PDEs +1505.07674 Cosmology and Nongalactic Astrophysics +1506.01036 +1506.01321 +1506.01458 Group Theory +1506.02686 Machine Learning +1506.03109 Quantum Algebra +1507.02806 Algebraic Geometry +1507.04389 Combinatorics +1507.04942 +1508.00026 +1508.04740 Discrete Mathematics +1509.00906 Geometric Topology +1509.04653 +1509.05144 Logic in Computer Science +1509.08403 Differential Geometry +1510.05412 Functional Analysis +1510.08129 Theory +1511.01842 Superconductivity +1511.02748 Mesoscale and Nanoscale Physics +1511.03652 Soft Condensed Matter +1511.04279 +1511.04590 Computer Vision and Pattern Recognition +1511.05067 Computer Vision and Pattern Recognition +1511.05270 Computer Science and Game Theory +1511.06433 Learning +1511.09445 +1511.09450 Logic in Computer Science +1512.00382 Strongly Correlated Electrons +1512.01088 Molecular Networks +1512.03957 High Energy Astrophysical Phenomena +1512.06336 Symplectic Geometry +1512.06440 Discrete Mathematics +1512.06553 Strongly Correlated Electrons +1512.08117 Phenomenology +1512.08808 Learning +1512.09258 Algebraic Topology +1601.00898 Plasma Physics +1601.01311 Optics +1601.03178 Statistical Mechanics +1601.05959 Differential Geometry +1601.06936 +1602.02439 Computer Science and Game Theory +1602.02453 +1602.02602 Operator Algebras +1602.03040 Learning +1602.03169 Experiment +1602.03889 Phenomenology +1602.04196 Soft Condensed Matter +1602.05606 Experiment +1602.05987 +1602.08164 +1603.00017 Mesoscale and Nanoscale Physics +1603.03282 Mesoscale and Nanoscale Physics +1603.03605 Probability +1603.04416 Learning +1603.04802 Materials Science +1603.07030 Logic in Computer Science +1603.07523 Combinatorics +1603.07533 Functional Analysis +1604.00798 Statistical Mechanics +1604.01318 +1604.02947 Computational Complexity +1604.03572 Dynamical Systems +1604.04074 Data Analysis, Statistics and Probability +1604.04781 Strongly Correlated Electrons +1604.07201 Programming Languages +1604.08141 Quantum Gases +1604.08282 Theory +1605.00318 Functional Analysis +1605.00339 Pricing of Securities +1605.00941 Instrumentation and Detectors +1605.00997 Phenomenology +1605.02531 Information Theory +1605.02793 High Energy Astrophysical Phenomena +1605.02852 Functional Analysis +1605.03946 Superconductivity +1605.05856 Networking and Internet Architecture +1605.07220 Data Structures and Algorithms +1605.07224 Formal Languages and Automata Theory +1605.07770 +1605.07971 Strongly Correlated Electrons +1605.08000 Dynamical Systems +1605.08876 Statistical Mechanics +1605.09385 Mesoscale and Nanoscale Physics +1606.00633 Soft Condensed Matter +1606.01831 Logic in Computer Science +1606.02151 Biomolecules +1606.03920 Probability +1606.04172 Methodology +1606.05084 Materials Science +1606.05673 Information Theory +1606.07486 Strongly Correlated Electrons +1606.07856 Strongly Correlated Electrons +1606.08977 Superconductivity +1606.09213 Phenomenology +1606.09221 Physics and Society +1606.09549 Computer Vision and Pattern Recognition +1607.00226 Information Theory +1607.00398 Cosmology and Nongalactic Astrophysics +1607.00399 Theory +1607.00487 Analysis of PDEs +1607.01771 Statistical Mechanics +1607.02319 Risk Management +1607.02653 Information Theory +1607.02685 Materials Science +1607.04714 Optics +1607.04870 Category Theory +1607.05212 Distributed, Parallel, and Cluster Computing +1607.05221 Statistical Mechanics +1607.05306 General Physics +1607.06264 Human-Computer Interaction +1607.07652 Materials Science +1607.07759 Cryptography and Security +1607.07955 Quantum Algebra +1607.08865 Combinatorics +1608.00084 Phenomenology +1608.01175 Differential Geometry +1608.02560 Mesoscale and Nanoscale Physics +1608.03212 +1608.03434 Materials Science +1608.03477 Neurons and Cognition +1608.03698 +1608.04513 Classical Analysis and ODEs +1608.05072 Exactly Solvable and Integrable Systems +1608.05163 Probability +1608.06390 Solar and Stellar Astrophysics +1608.07045 Analysis of PDEs +1608.07094 Information Retrieval +1608.07312 Numerical Analysis +1608.08221 +1608.08334 Computer Vision and Pattern Recognition +1608.08511 Theory +1608.08786 Materials Science +1608.08860 High Energy Astrophysical Phenomena +1609.00135 Optimization and Control +1609.00229 +1609.00265 Data Structures and Algorithms +1609.00524 Solar and Stellar Astrophysics +1609.00585 Learning +1609.01423 Machine Learning +1609.01493 Logic in Computer Science +1609.02017 Soft Condensed Matter +1609.02747 +1609.02996 Experiment +1609.03295 Methodology +1609.03455 Logic +1609.03672 Combinatorics +1609.03822 Statistical Mechanics +1609.03923 Populations and Evolution +1609.03965 Computational Physics +1609.03986 Computer Vision and Pattern Recognition +1609.04005 Logic +1609.04007 Subcellular Processes +1609.04022 Cosmology and Nongalactic Astrophysics +1609.04023 Strongly Correlated Electrons +1609.04030 Geophysics +1609.04031 High Energy Astrophysical Phenomena +1609.04033 Neurons and Cognition +1609.04034 General Physics +1609.04038 Fluid Dynamics +1609.04039 Functional Analysis +1609.04040 Probability +1609.04043 Optimization and Control +1609.04045 Algebraic Geometry +1609.04046 Quantum Gases +1609.04048 Materials Science +1609.04050 General Physics +1609.04051 Data Structures and Algorithms +1609.04052 Rings and Algebras +1609.04053 Systems and Control +1609.04055 Rings and Algebras +1609.04056 Robotics +1609.04057 Statistics Theory +1609.04062 Algebraic Topology +1609.04064 Numerical Analysis +1609.04065 Risk Management +1609.04066 Differential Geometry +1609.04067 +1609.04070 Probability +1609.04071 Computers and Society +1609.04072 Category Theory +1609.04079 Computer Vision and Pattern Recognition +1609.04080 Superconductivity +1609.04083 Information Theory +1609.04085 Logic in Computer Science +1609.04086 Logic in Computer Science +1609.04087 Computer Science and Game Theory +1609.04088 Logic in Computer Science +1609.04089 Computer Science and Game Theory +1609.04090 Logic in Computer Science +1609.04091 Logic in Computer Science +1609.04092 Logic in Computer Science +1609.04093 Logic in Computer Science +1609.04094 Logic in Computer Science +1609.04095 Logic in Computer Science +1609.04096 Formal Languages and Automata Theory +1609.04097 Logic in Computer Science +1609.04098 Formal Languages and Automata Theory +1609.04099 Computer Science and Game Theory +1609.04100 Logic in Computer Science +1609.04101 Formal Languages and Automata Theory +1609.04102 Logic in Computer Science +1609.04103 Atmospheric and Oceanic Physics +1609.04104 Learning +1609.04105 Analysis of PDEs +1609.04109 Differential Geometry +1609.04110 Analysis of PDEs +1609.04111 Experiment +1609.04113 Rings and Algebras +1609.04114 Systems and Control +1609.04115 Numerical Analysis +1609.04116 Computer Vision and Pattern Recognition +1609.04118 Dynamical Systems +1609.04121 Cosmology and Nongalactic Astrophysics +1609.04122 Mesoscale and Nanoscale Physics +1609.04124 Algebraic Geometry +1609.04127 Dynamical Systems +1609.04130 Numerical Analysis +1609.04131 Populations and Evolution +1609.04132 Quantum Algebra +1609.04134 Mesoscale and Nanoscale Physics +1609.04138 Probability +1609.04140 Number Theory +1609.04141 Pattern Formation and Solitons +1609.04142 Algebraic Geometry +1609.04143 Algebraic Geometry +1609.04145 +1609.04146 Number Theory +1609.04147 Robotics +1609.04148 Computational Geometry +1609.04149 Strongly Correlated Electrons +1609.04150 Data Analysis, Statistics and Probability +1609.04152 Superconductivity +1609.04153 Instrumentation and Methods for Astrophysics +1609.04154 Algebraic Geometry +1609.04155 Atomic Physics +1609.04159 +1609.04160 Statistical Mechanics +1609.04161 Optimization and Control +1609.04163 Soft Condensed Matter +1609.04165 Algebraic Geometry +1609.04167 Numerical Analysis +1609.04169 Geophysics +1609.04171 Mesoscale and Nanoscale Physics +1609.04172 Instrumentation and Methods for Astrophysics +1609.04173 Computational Geometry +1609.04174 Probability +1609.04176 Logic in Computer Science +1609.04177 Atomic Physics +1609.04178 Numerical Analysis +1609.04180 Probability +1609.04182 Combinatorics +1609.04183 Strongly Correlated Electrons +1609.04184 Optics +1609.04185 Phenomenology +1609.04186 Computation and Language +1609.04188 Optimization and Control +1609.04190 Complex Variables +1609.04191 Combinatorics +1609.04193 Algebraic Geometry +1609.04194 Complex Variables +1609.04195 Functional Analysis +1609.04196 Multimedia +1609.04197 Networking and Internet Architecture +1609.04198 Algebraic Geometry +1609.04199 Statistical Finance +1609.04201 Rings and Algebras +1609.04202 +1609.04204 Phenomenology +1609.04205 Instrumentation and Methods for Astrophysics +1609.04208 Combinatorics +1609.04209 Analysis of PDEs +1609.04210 Astrophysics of Galaxies +1609.04215 Chemical Physics +1609.04216 Information Theory +1609.04221 Computer Science and Game Theory +1609.04222 Applications +1609.04223 Number Theory +1609.04224 Soft Condensed Matter +1609.04225 +1609.04230 Metric Geometry +1609.04231 Statistics Theory +1609.04233 Programming Languages +1609.04234 Methodology +1609.04237 Statistics Theory +1609.04238 General Physics +1609.04240 Instrumentation and Methods for Astrophysics +1609.04241 Category Theory +1609.04242 General Physics +1609.04244 Mesoscale and Nanoscale Physics +1609.04249 +1609.04250 Materials Science +1609.04251 Optics +1609.04253 Computation and Language +1609.04256 Analysis of PDEs +1609.04257 Commutative Algebra +1609.04259 Symbolic Computation +1609.04260 High Energy Astrophysical Phenomena +1609.04261 Classical Physics +1609.04271 Dynamical Systems +1609.04273 Instrumentation and Methods for Astrophysics +1609.04274 Computational Complexity +1609.04277 Spectral Theory +1609.04281 Information Retrieval +1609.04282 Physics and Society +1609.04283 Astrophysics of Galaxies +1609.04286 Instrumentation and Detectors +1609.04288 Group Theory +1609.04289 Machine Learning +1609.04290 Algebraic Geometry +1609.04291 Differential Geometry +1609.04293 Other Computer Science +1609.04296 Dynamical Systems +1609.04297 Metric Geometry +1609.04298 Physics Education +1609.04299 Combinatorics +1609.04300 Phenomenology +1609.04302 Statistical Mechanics +1609.04304 Phenomenology +1609.04306 Biomolecules +1609.04308 Dynamical Systems +1609.04312 Combinatorics +1609.04313 Classical Analysis and ODEs +1609.04314 Populations and Evolution +1609.04315 Instrumentation and Methods for Astrophysics +1609.04316 Neurons and Cognition +1609.04318 Populations and Evolution +1609.04321 Learning +1609.04322 Differential Geometry +1609.04323 Commutative Algebra +1609.04325 Computation and Language +1609.04327 Cryptography and Security +1609.04329 Computational Physics +1609.04330 Number Theory +1609.04331 Computer Vision and Pattern Recognition +1609.04332 +1609.04335 Representation Theory +1609.04341 Algebraic Geometry +1609.04342 Computational Complexity +1609.04347 Data Structures and Algorithms +1609.04348 +1609.04350 Data Structures and Algorithms +1609.04353 Geometric Topology +1609.04354 +1609.04356 Computer Vision and Pattern Recognition +1609.04361 Analysis of PDEs +1609.04362 Group Theory +1609.04364 Fluid Dynamics +1609.04365 Probability +1609.04372 Instrumentation and Methods for Astrophysics +1609.04373 Social and Information Networks +1609.04376 Social and Information Networks +1609.04379 Solar and Stellar Astrophysics +1609.04383 Applications +1609.04388 Machine Learning +1609.04391 Number Theory +1609.04393 Combinatorics +1609.04397 Theory +math/0209044 Algebraic Geometry +0706.3177 Neurons and Cognition +0707.4675 Materials Science +1002.4569 Cryptography and Security +1011.0189 Combinatorics +1105.0835 Dynamical Systems +1109.1027 Numerical Analysis +1110.2710 Dynamical Systems +1203.3561 Theory +1203.4679 Plasma Physics +1204.3527 General Physics +1209.1544 Statistical Finance +1210.0886 Classical Analysis and ODEs +1211.4799 High Energy Astrophysical Phenomena +1303.5955 Atomic Physics +1303.7451 Metric Geometry +1304.6812 Differential Geometry +1304.7146 Statistical Mechanics +1305.2638 Representation Theory +1307.1329 Solar and Stellar Astrophysics +1308.5105 Earth and Planetary Astrophysics +1309.2819 Probability +1309.4162 Number Theory +1310.8229 Solar and Stellar Astrophysics +1311.1606 Representation Theory +1311.2157 Analysis of PDEs +1312.6012 Dynamical Systems +1401.0225 K-Theory and Homology +1402.4686 Probability +1404.1578 Methodology +1404.2787 Applications +1404.6520 Quantitative Methods +1406.0607 Complex Variables +1406.0970 Probability +1406.6706 Logic +1406.6861 Representation Theory +1407.1337 Fluid Dynamics +1408.0673 Representation Theory +1411.6958 Analysis of PDEs +1412.4972 Artificial Intelligence +1412.5042 K-Theory and Homology +1501.04438 Computational Physics +1502.00320 Statistics Theory +1503.00182 Dynamical Systems +1505.04338 Algebraic Geometry +1505.04748 Symplectic Geometry +1505.07852 Operator Algebras +1507.00765 Metric Geometry +1507.01760 Statistics Theory +1507.02019 Optimization and Control +1507.06167 Rings and Algebras +1508.01598 Number Theory +1508.05838 Classical Analysis and ODEs +1508.07766 Functional Analysis +1509.02574 Physics and Society +1509.06384 Cosmology and Nongalactic Astrophysics +1509.07512 Astrophysics of Galaxies +1509.07997 +1509.08007 Optimization and Control +1509.08421 Algebraic Geometry +1510.01758 Number Theory +1510.04605 Theory +1510.06354 Statistical Mechanics +1510.07026 Systems and Control +1511.02139 Algebraic Geometry +1511.03457 Astrophysics of Galaxies +1511.07796 Earth and Planetary Astrophysics +1511.08245 Combinatorics +1512.03024 Logic in Computer Science +1512.04258 Instrumentation and Detectors +1512.06530 Strongly Correlated Electrons +1512.06537 Classical Analysis and ODEs +1512.06622 Optics +1512.07544 Algebraic Geometry +1512.07617 +1512.08942 Symplectic Geometry +1601.01004 Quantum Gases +1601.01550 Probability +1601.01817 Combinatorics +1601.03076 Fluid Dynamics +1601.03098 Algebraic Topology +1601.04628 Mesoscale and Nanoscale Physics +1601.06339 Analysis of PDEs +1601.07409 Artificial Intelligence +1601.08113 Theory +1602.02262 Learning +1602.02322 +1602.06912 Fluid Dynamics +1602.07010 Probability +1602.08448 Learning +1603.00338 Mesoscale and Nanoscale Physics +1603.01427 Functional Analysis +1603.01596 Strongly Correlated Electrons +1603.02495 Mesoscale and Nanoscale Physics +1603.02639 Metric Geometry +1603.07820 Analysis of PDEs +1603.08021 Cosmology and Nongalactic Astrophysics +1604.01200 Social and Information Networks +1604.03042 Optimization and Control +1604.04554 +1604.06317 Materials Science +1604.06349 Functional Analysis +1604.06435 Earth and Planetary Astrophysics +1604.07160 Sound +1604.07286 Data Structures and Algorithms +1604.08199 +1605.03508 Applications +1605.03566 Chaotic Dynamics +1605.05857 Combinatorics +1605.08185 Digital Libraries +1605.08469 Materials Science +1606.00306 Algebraic Topology +1606.00639 Probability +1606.01126 +1606.01295 Information Theory +1606.02994 Probability +1606.03085 Theory +1606.03325 Portfolio Management +1606.03346 Representation Theory +1606.04040 Classical Analysis and ODEs +1606.04449 Machine Learning +1606.04679 Data Structures and Algorithms +1606.05042 Superconductivity +1606.07152 Analysis of PDEs +1606.07315 Learning +1606.09216 Numerical Analysis +1606.09491 Theory +1607.00076 Optimization and Control +1607.00388 Statistical Mechanics +1607.01178 Theory +1607.02532 Materials Science +1607.03421 Plasma Physics +1607.03502 Information Retrieval +1607.03751 Probability +1607.05043 +1607.06519 Theory +1607.06715 +1607.07877 Cosmology and Nongalactic Astrophysics +1607.08397 Phenomenology +1607.08676 Phenomenology +1608.02546 Computer Science and Game Theory +1608.02877 Analysis of PDEs +1608.03953 Experiment +1608.04148 +1608.04899 Statistical Mechanics +1608.05233 Programming Languages +1608.05475 Phenomenology +1608.07016 Operator Algebras +1608.07194 Strongly Correlated Electrons +1609.00825 Materials Science +1609.01632 +1609.01694 Phenomenology +1609.04006 Differential Geometry +1609.04212 Learning +1609.06704 +1609.06982 Physics and Society +1609.07313 Classical Physics +1609.07856 Soft Condensed Matter +1609.08027 High Energy Astrophysical Phenomena +1609.08288 Soft Condensed Matter +1610.00247 Number Theory +1610.01652 +1610.01739 Quantum Gases +1610.03787 Symplectic Geometry +1610.04080 Robotics +1610.05388 +1610.06626 Adaptation and Self-Organizing Systems +1610.06988 Analysis of PDEs +1610.07870 General Physics +1610.08368 +1610.08744 +1610.08870 +1610.08933 Differential Geometry +1610.09408 +1611.00109 Phenomenology +1611.00523 Strongly Correlated Electrons +1611.01487 Computation and Language +1611.01947 Optimization and Control +1611.02138 Operator Algebras +1611.02354 Information Theory +1611.03696 Algebraic Geometry +1611.03799 Artificial Intelligence +1611.05372 Discrete Mathematics +1611.05637 Complex Variables +1611.05698 Solar and Stellar Astrophysics +1611.05745 Quantum Gases +1611.05778 Computers and Society +1611.05821 Theory +1611.05851 Optics +1611.06593 Optimization and Control +1611.06844 Operator Algebras +1611.07478 Artificial Intelligence +1611.07693 Algebraic Topology +1611.08356 Complex Variables +1611.08480 Machine Learning +1611.08583 Computer Vision and Pattern Recognition +1611.09206 Combinatorics +1611.10209 +1612.00115 +1612.00170 Mesoscale and Nanoscale Physics +1612.00595 Machine Learning +1612.00656 Strongly Correlated Electrons +1612.00767 Machine Learning +1612.00956 Fluid Dynamics +1612.01009 Symplectic Geometry +1612.01275 Statistical Mechanics +1612.01289 Lattice +1612.01436 Networking and Internet Architecture +1612.01922 Computer Vision and Pattern Recognition +1612.02134 Quantum Algebra +1612.02163 Solar and Stellar Astrophysics +1612.02180 Atomic Physics +1612.02227 Differential Geometry +1612.02278 Statistical Mechanics +1612.02282 Cosmology and Nongalactic Astrophysics +1612.02296 Phenomenology +1612.02353 Logic in Computer Science +1612.02424 High Energy Astrophysical Phenomena +1612.02425 Earth and Planetary Astrophysics +1612.02430 High Energy Astrophysical Phenomena +1612.02438 Phenomenology +1612.02439 Mesoscale and Nanoscale Physics +1612.02440 Solar and Stellar Astrophysics +1612.02442 +1612.02444 Optimization and Control +1612.02445 Phenomenology +1612.02446 Space Physics +1612.02447 Phenomenology +1612.02448 +1612.02450 Analysis of PDEs +1612.02451 Classical Physics +1612.02452 Theory +1612.02453 +1612.02455 +1612.02457 Dynamical Systems +1612.02458 Differential Geometry +1612.02459 +1612.02462 Logic in Computer Science +1612.02464 +1612.02465 +1612.02467 Distributed, Parallel, and Cluster Computing +1612.02468 Networking and Internet Architecture +1612.02469 +1612.02471 Classical Physics +1612.02472 Commutative Algebra +1612.02473 Group Theory +1612.02474 Cosmology and Nongalactic Astrophysics +1612.02479 Theory +1612.02480 +1612.02481 Exactly Solvable and Integrable Systems +1612.02483 Computational Geometry +1612.02484 +1612.02485 Databases +1612.02486 Emerging Technologies +1612.02488 +1612.02489 Analysis of PDEs +1612.02490 Learning +1612.02491 Other Quantitative Biology +1612.02492 Mesoscale and Nanoscale Physics +1612.02493 Computer Vision and Pattern Recognition +1612.02494 Mesoscale and Nanoscale Physics +1612.02497 Representation Theory +1612.02498 Computer Vision and Pattern Recognition +1612.02502 Materials Science +1612.02504 +1612.02505 Strongly Correlated Electrons +1612.02507 Solar and Stellar Astrophysics +1612.02508 Algebraic Geometry +1612.02509 Computational Geometry +1612.02512 Methodology +1612.02513 Computer Vision and Pattern Recognition +1612.02514 Materials Science +1612.02515 Materials Science +1612.02516 Machine Learning +1612.02517 Mesoscale and Nanoscale Physics +1612.02518 Algebraic Geometry +1612.02519 Optimization and Control +1612.02521 Computer Vision and Pattern Recognition +1612.02522 Neural and Evolutionary Computing +1612.02523 Optimization and Control +1612.02524 +1612.02525 +1612.02526 Learning +1612.02528 Machine Learning +1612.02530 Optics +1612.02534 Computer Vision and Pattern Recognition +1612.02535 Solar and Stellar Astrophysics +1612.02536 Statistics Theory +1612.02537 Physics and Society +1612.02538 Optimization and Control +1612.02539 +1612.02540 Other Computer Science +1612.02541 Computer Vision and Pattern Recognition +1612.02542 Information Theory +1612.02544 Solar and Stellar Astrophysics +1612.02549 Logic +1612.02550 Phenomenology +1612.02552 +1612.02553 Optics +1612.02555 Atomic Physics +1612.02557 Data Structures and Algorithms +1612.02558 Earth and Planetary Astrophysics +1612.02559 Computer Vision and Pattern Recognition +1612.02566 Atomic Physics +1612.02567 Statistical Finance +1612.02569 Networking and Internet Architecture +1612.02570 Atomic Physics +1612.02571 +1612.02572 Machine Learning +1612.02573 +1612.02574 Information Theory +1612.02575 Computer Vision and Pattern Recognition +1612.02577 Experiment +1612.02578 High Energy Astrophysical Phenomena +1612.02579 Fluid Dynamics +1612.02580 Probability +1612.02581 Algebraic Geometry +1612.02582 Algebraic Geometry +1612.02583 Computer Vision and Pattern Recognition +1612.02584 Mesoscale and Nanoscale Physics +1612.02585 Fluid Dynamics +1612.02586 +1612.02587 Artificial Intelligence +1612.02591 Representation Theory +1612.02592 Dynamical Systems +1612.02594 Analysis of PDEs +1612.02595 Quantum Gases +1612.02596 Analysis of PDEs +1612.02599 Solar and Stellar Astrophysics +1612.02600 +1612.02602 +1612.02603 Networking and Internet Architecture +1612.02604 Differential Geometry +1612.02605 Learning +1612.02606 Robotics +1612.02607 Algebraic Topology +1612.02608 Algebraic Topology +1612.02609 Fluid Dynamics +1612.02610 Solar and Stellar Astrophysics +1612.02614 Mesoscale and Nanoscale Physics +1612.02615 Numerical Analysis +1612.02620 +1612.02621 Phenomenology +1612.02622 Number Theory +1612.02625 Analysis of PDEs +1612.02626 Earth and Planetary Astrophysics +1612.02627 Materials Science +1612.02628 +1612.02629 Disordered Systems and Neural Networks +1612.02631 Computer Vision and Pattern Recognition +1612.02633 Materials Science +1612.02634 Cosmology and Nongalactic Astrophysics +1612.02635 Representation Theory +1612.02636 Cryptography and Security +1612.02637 +1612.02638 +1612.02639 Representation Theory +1612.02640 Distributed, Parallel, and Cluster Computing +1612.02641 Analysis of PDEs +1612.02642 Combinatorics +1612.02643 Combinatorics +1612.02644 +1612.02646 Computer Vision and Pattern Recognition +1612.02648 High Energy Astrophysical Phenomena +1612.02649 Computer Vision and Pattern Recognition +1612.02651 Group Theory +1612.02652 Instrumentation and Methods for Astrophysics +1612.02653 Economics +1612.02654 Economics +1612.02656 Economics +1612.02658 Economics +1612.02660 Artificial Intelligence +1612.02663 Data Structures and Algorithms +1612.02664 General Mathematics +1612.02665 Optics +1612.02666 Statistical Finance +1612.02667 Functional Analysis +1612.02668 Probability +1612.02670 Combinatorics +1612.02671 Combinatorics +1612.02672 Numerical Analysis +1612.02673 Quantum Algebra +1612.02675 Computer Vision and Pattern Recognition +1612.02678 Phenomenology +1612.02679 Analysis of PDEs +1612.02680 +1612.02683 Logic +1612.02685 Information Theory +1612.02686 Computers and Society +1612.02687 Phenomenology +1612.02692 Strongly Correlated Electrons +1612.02693 Earth and Planetary Astrophysics +1612.02694 Algebraic Topology +1612.02695 Neural and Evolutionary Computing +1612.02696 Discrete Mathematics +1612.02698 Probability +1612.02699 Computer Vision and Pattern Recognition +1612.02700 Phenomenology +1612.02701 Databases +1612.02702 +1612.02703 Computation and Language +1612.02704 Analysis of PDEs +1612.02706 Computation and Language +1612.02708 Theory +1612.02709 Computer Vision and Pattern Recognition +1612.02711 Mesoscale and Nanoscale Physics +1612.02713 Superconductivity +1612.02716 Mesoscale and Nanoscale Physics +1612.02717 Combinatorics +1612.02718 Phenomenology +1612.02719 Combinatorics +1612.02722 Differential Geometry +1612.02724 Materials Science +1612.02726 Exactly Solvable and Integrable Systems +1612.02729 Algebraic Geometry +1612.02732 Networking and Internet Architecture +1612.02734 Learning +1612.02735 Operator Algebras +1612.02736 Numerical Analysis +1612.02737 Algebraic Topology +1612.02739 Robotics +1612.02742 Computer Vision and Pattern Recognition +1612.02744 Subcellular Processes +1612.02745 Analysis of PDEs +1612.02746 Instrumentation and Detectors +1612.02750 Lattice +1612.02751 Machine Learning +1612.02754 Dynamical Systems +1612.02755 Materials Science +1612.02756 Numerical Analysis +1612.02757 Artificial Intelligence +1612.02760 Dynamical Systems +1612.02761 Computer Vision and Pattern Recognition +1612.02763 Dynamical Systems +1612.02764 High Energy Astrophysical Phenomena +1612.02765 High Energy Astrophysical Phenomena +1612.02766 Computer Vision and Pattern Recognition +1612.02767 +1612.02771 Phenomenology +1612.02772 Theory +1612.02773 Algebraic Topology +1612.02775 Analysis of PDEs +1612.02777 Numerical Analysis +1612.02779 Soft Condensed Matter +1612.02780 Learning +1612.02781 Strongly Correlated Electrons +1612.02782 +1612.02783 Classical Analysis and ODEs +1612.02784 Optimization and Control +1612.02786 Atomic Physics +1612.02788 Data Structures and Algorithms +1612.02789 Information Theory +1612.02791 Operator Algebras +1612.02792 +1612.02794 Statistics Theory +1612.02795 Optimization and Control +1612.02796 Mesoscale and Nanoscale Physics +1612.02797 Theory +1612.02799 Geometric Topology +1612.02800 Probability +1612.02801 Computation and Language +1612.02807 Neurons and Cognition +1612.02808 Computer Vision and Pattern Recognition +1612.02811 Numerical Analysis +1612.02812 Applications +1612.02813 Phenomenology +1612.02816 Logic in Computer Science +cond-mat/0502041 Strongly Correlated Electrons +0807.0919 +0904.2509 High Energy Astrophysical Phenomena +1002.3980 High Energy Astrophysical Phenomena +1002.4345 Representation Theory +1003.4959 High Energy Astrophysical Phenomena +1012.4401 Information Theory +1112.1374 Discrete Mathematics +1208.4334 Number Theory +1208.5421 Probability +1211.0853 Probability +1211.1877 Category Theory +1307.6470 Classical Analysis and ODEs +1309.2708 Representation Theory +1309.5865 Theory +1309.7187 Social and Information Networks +1311.1577 Functional Analysis +1402.3266 Strongly Correlated Electrons +1403.2511 Analysis of PDEs +1405.6323 K-Theory and Homology +1406.2561 Quantum Algebra +1406.3995 Functional Analysis +1406.7402 Logic +1407.6313 Materials Science +1408.0249 Materials Science +1408.1917 Group Theory +1408.3556 Biological Physics +1409.3113 Probability +1409.3292 Soft Condensed Matter +1410.0198 Programming Languages +1410.0547 Neural and Evolutionary Computing +1410.1468 Differential Geometry +1410.2727 Probability +1410.3924 Probability +1410.4396 +1411.6748 Phenomenology +1411.7595 +1412.3502 Methodology +1412.8348 Differential Geometry +1501.01611 Geometric Topology +1501.03478 +1502.02022 Atomic and Molecular Clusters +1502.06367 Geometric Topology +1503.01919 Quantitative Methods +1503.05193 Theory +1503.05238 Optimization and Control +1503.06854 Information Theory +1503.08705 Rings and Algebras +1504.00773 High Energy Astrophysical Phenomena +1504.02395 +1504.02530 Information Theory +1504.08080 Applications +1505.00439 Differential Geometry +1505.04122 Astrophysics of Galaxies +1505.04577 +1505.04584 +1505.06514 Classical Analysis and ODEs +1506.00276 Dynamical Systems +1506.01796 Soft Condensed Matter +1506.02846 Materials Science +1506.03198 Statistics Theory +1506.03727 Geometric Topology +1506.04047 Computer Science and Game Theory +1506.06583 +1506.07270 Probability +1507.01247 Rings and Algebras +1507.01590 Phenomenology +1507.02136 Materials Science +1507.04094 Information Theory +1507.04351 Cosmology and Nongalactic Astrophysics +1507.04621 Optics +1507.04888 Learning +1507.05756 +1507.07849 +1507.08625 Phenomenology +1508.00119 Numerical Analysis +1508.00333 Analysis of PDEs +1508.00451 Machine Learning +1508.02039 Phenomenology +1508.04577 +1508.05831 Classical Analysis and ODEs +1508.06862 Classical Analysis and ODEs +1508.07585 Optics +1508.07796 +1509.00805 High Energy Astrophysical Phenomena +1509.02118 +1509.02612 Commutative Algebra +1509.03232 Phenomenology +1509.03334 +1509.03604 Software Engineering +1509.05614 Optimization and Control +1509.07847 Theory +1509.08114 Analysis of PDEs +1509.08983 Cosmology and Nongalactic Astrophysics +1510.00385 Classical Analysis and ODEs +1510.00778 Instrumentation and Detectors +1510.01116 Social and Information Networks +1510.03064 Mesoscale and Nanoscale Physics +1510.04410 Mesoscale and Nanoscale Physics +1510.04423 +1510.06160 +1510.06931 Materials Science +1510.08621 Analysis of PDEs +1510.08718 Mesoscale and Nanoscale Physics +1510.08931 Biological Physics +1511.04037 Mesoscale and Nanoscale Physics +1511.05253 +1511.05766 +1511.07938 Learning +1511.08207 Cosmology and Nongalactic Astrophysics +1511.09252 High Energy Astrophysical Phenomena +1512.00490 Information Theory +1512.02421 +1512.02750 Analysis of PDEs +1512.02895 Computer Vision and Pattern Recognition +1512.04947 Statistical Mechanics +1512.04950 Cosmology and Nongalactic Astrophysics +1512.05402 Optimization and Control +1512.06354 Representation Theory +1512.06940 Dynamical Systems +1512.07194 +1512.08189 Networking and Internet Architecture +1512.09095 +1512.09190 Superconductivity +1601.00597 Quantitative Methods +1601.00956 Metric Geometry +1601.01181 +1601.02663 Materials Science +1601.03152 Complex Variables +1601.03621 Mesoscale and Nanoscale Physics +1601.04295 Combinatorics +1601.06296 Computers and Society +1601.07352 Distributed, Parallel, and Cluster Computing +1601.08161 +1602.01824 Mesoscale and Nanoscale Physics +1602.02321 Materials Science +1602.03934 General Literature +1602.04767 +1602.05160 Soft Condensed Matter +1602.05818 Strongly Correlated Electrons +1602.06987 +1602.07174 Medical Physics +1602.08024 Materials Science +1602.08136 Optics +1602.08339 General Physics +1603.00039 Theory +1603.01172 Analysis of PDEs +1603.01464 +1603.01520 Programming Languages +1603.01545 Optimization and Control +1603.01657 Accelerator Physics +1603.01680 Materials Science +1603.01883 Combinatorics +1603.01988 Complex Variables +1603.02788 Materials Science +1603.02993 Optics +1603.03045 Mesoscale and Nanoscale Physics +1603.03086 Cryptography and Security +1603.03123 Earth and Planetary Astrophysics +1603.03168 Earth and Planetary Astrophysics +1603.03239 Soft Condensed Matter +1603.03404 Distributed, Parallel, and Cluster Computing +1603.03427 High Energy Astrophysical Phenomena +1603.03429 +1603.03436 +1603.03451 Accelerator Physics +1603.03453 Differential Geometry +1603.03454 Materials Science +1603.03458 Risk Management +1603.03459 Superconductivity +1603.03460 Fluid Dynamics +1603.03461 Optimization and Control +1603.03463 Computational Geometry +1603.03464 Information Theory +1603.03466 Classical Analysis and ODEs +1603.03467 Classical Analysis and ODEs +1603.03468 Classical Analysis and ODEs +1603.03470 Lattice +1603.03471 +1603.03472 Rings and Algebras +1603.03473 Classical Analysis and ODEs +1603.03475 Logic in Computer Science +1603.03477 Optimization and Control +1603.03478 Physics Education +1603.03482 Multimedia +1603.03488 Programming Languages +1603.03495 Emerging Technologies +1603.03496 Statistics Theory +1603.03497 Astrophysics of Galaxies +1603.03501 Networking and Internet Architecture +1603.03502 Distributed, Parallel, and Cluster Computing +1603.03503 Dynamical Systems +1603.03508 History and Overview +1603.03509 Logic +1603.03511 Artificial Intelligence +1603.03514 Numerical Analysis +1603.03516 Statistics Theory +1603.03520 Information Theory +1603.03522 Analysis of PDEs +1603.03523 Representation Theory +1603.03525 Strongly Correlated Electrons +1603.03527 Dynamical Systems +1603.03530 Emerging Technologies +1603.03531 Strongly Correlated Electrons +1603.03532 Numerical Analysis +1603.03533 Programming Languages +1603.03534 +1603.03535 Programming Languages +1603.03536 Programming Languages +1603.03541 Computer Vision and Pattern Recognition +1603.03547 Classical Analysis and ODEs +1603.03552 Adaptation and Self-Organizing Systems +1603.03553 Algebraic Geometry +1603.03554 Number Theory +1603.03556 Dynamical Systems +1603.03562 Solar and Stellar Astrophysics +1603.03563 Plasma Physics +1603.03565 Symbolic Computation +1603.03569 Probability +1603.03571 Probability +1603.03572 Plasma Physics +1603.03574 Analysis of PDEs +1603.03575 Analysis of PDEs +1603.03580 Physics and Society +1603.03582 Mesoscale and Nanoscale Physics +1603.03583 Algebraic Geometry +1603.03584 Mesoscale and Nanoscale Physics +1603.03585 Combinatorics +1603.03586 Numerical Analysis +1603.03587 Representation Theory +1603.03590 Computer Vision and Pattern Recognition +1603.03593 Applications +1603.03597 Analysis of PDEs +1603.03599 Software Engineering +1603.03600 Information Theory +1603.03603 Phenomenology +1603.03604 Number Theory +1603.03609 Dynamical Systems +1603.03610 Formal Languages and Automata Theory +1603.03614 Combinatorics +1603.03618 Rings and Algebras +1603.03619 Probability +1603.03621 Category Theory +1603.03622 Functional Analysis +1603.03625 Earth and Planetary Astrophysics +1603.03627 Learning +1603.03630 Atomic Physics +1603.03634 Optimization and Control +1603.03635 Computers and Society +1603.03641 Analysis of PDEs +1603.03642 Probability +1603.03643 Complex Variables +1603.03645 Networking and Internet Architecture +1603.03647 Analysis of PDEs +1603.03649 K-Theory and Homology +1603.03652 Fluid Dynamics +1603.03653 Combinatorics +1603.03654 Physics and Society +1603.03657 Learning +1603.03660 Phenomenology +1603.03661 General Topology +1603.03662 +1603.03664 Fluid Dynamics +1603.03667 General Mathematics +1603.03669 Computer Vision and Pattern Recognition +1603.03674 Astrophysics of Galaxies +1603.03683 Optimization and Control +1603.03693 Probability +1603.03695 Information Theory +1603.03697 Information Theory +1603.03699 +1603.03700 Number Theory +1603.03702 Group Theory +1603.03703 Learning +1603.03704 Materials Science +1603.03710 Cryptography and Security +1603.03714 Learning +1603.03715 Geometric Topology +1603.03716 Materials Science +1603.03718 Mesoscale and Nanoscale Physics +1603.03719 Methodology +1603.03721 Analysis of PDEs +1603.03722 Mesoscale and Nanoscale Physics +1603.03723 +1603.03724 Machine Learning +1603.03725 Networking and Internet Architecture +1603.03726 +1603.03727 Programming Languages +1603.03728 Geometric Topology +1603.03729 Artificial Intelligence +1603.03732 Computers and Society +1603.03733 Methodology +1603.03735 Mesoscale and Nanoscale Physics +1603.03740 Materials Science +1603.03745 Analysis of PDEs +1603.03746 Materials Science +1603.03750 Mesoscale and Nanoscale Physics +1603.03752 Populations and Evolution +1603.03753 Number Theory +1603.03762 Classical Analysis and ODEs +0704.3099 Classical Analysis and ODEs +0707.3476 Number Theory +0801.0001 Number Theory +0804.2234 Group Theory +0805.1201 +0807.2073 Number Theory +0905.3144 Number Theory +0910.2825 Rings and Algebras +1007.2547 Geometric Topology +1007.4081 +1010.1273 +1010.1488 +1010.4732 Rings and Algebras +1011.2243 Theory +1106.3890 Algebraic Geometry +1109.1356 Numerical Analysis +1109.3963 Algebraic Topology +1109.4294 Statistical Mechanics +1109.6783 Analysis of PDEs +1110.2956 K-Theory and Homology +1111.0754 Algebraic Topology +1112.1446 +1112.5782 Combinatorics +1202.2056 General Topology +1202.2399 Plasma Physics +1206.1132 General Topology +1208.1174 Methodology +1208.1182 General Topology +1210.0726 Differential Geometry +1210.4434 Complex Variables +1305.2851 Differential Geometry +1305.2853 Differential Geometry +1305.2854 Differential Geometry +1305.2856 Differential Geometry +1305.2857 Differential Geometry +1305.2859 Differential Geometry +1305.2863 Differential Geometry +1307.0449 Adaptation and Self-Organizing Systems +1308.3403 Differential Geometry +1309.1023 Combinatorics +1310.7513 Probability +1311.1040 Machine Learning +1311.2002 Probability +1311.6966 Geometric Topology +1401.2351 Materials Science +1402.0823 +1402.2437 Data Structures and Algorithms +1403.2029 Geometric Topology +1403.2463 Theory +1403.3603 Algebraic Topology +1404.1147 Computation +1404.2520 Information Theory +1404.6263 Rings and Algebras +1404.7589 Representation Theory +1405.1627 Number Theory +1406.5044 Theory +1407.3982 Algebraic Geometry +1407.5167 Number Theory +1408.2586 Number Theory +1408.6102 Representation Theory +1409.0345 High Energy Astrophysical Phenomena +1409.3289 Optimization and Control +1410.2568 Data Analysis, Statistics and Probability +1410.3302 Discrete Mathematics +1410.8366 Information Theory +1411.3406 Numerical Analysis +1411.7018 Numerical Analysis +1411.7878 +1412.0753 Methodology +1412.1769 Metric Geometry +1412.3100 Learning +1412.3809 Mesoscale and Nanoscale Physics +1412.6787 Computational Complexity +1501.01373 General Physics +1501.05037 Metric Geometry +1501.06734 General Topology +1501.07196 Computation +1501.07558 Complex Variables +1502.00048 Astrophysics of Galaxies +1502.06440 Computation +1503.04192 Cosmology and Nongalactic Astrophysics +1503.07202 Functional Analysis +1503.08006 Geometric Topology +1504.01378 Statistical Mechanics +1504.03074 Pricing of Securities +1505.03331 Information Theory +1505.03346 Information Theory +1505.03758 Information Theory +1505.03960 Classical Analysis and ODEs +1505.05731 Numerical Analysis +1506.01560 Fluid Dynamics +1506.01642 Functional Analysis +1506.06984 Atmospheric and Oceanic Physics +1506.07008 Representation Theory +1506.07808 Theory +1507.00460 History and Philosophy of Physics +1507.00847 Differential Geometry +1507.02378 Data Structures and Algorithms +1507.04877 Theory +1507.06009 Commutative Algebra +1507.08110 Information Theory +1507.08111 Information Theory +1507.08143 Phenomenology +1507.08961 Numerical Analysis +1508.00853 Materials Science +1508.04503 Differential Geometry +1508.04606 Systems and Control +1508.07109 Combinatorics +1509.00526 Representation Theory +1509.01572 +1509.03803 Combinatorics +1509.04193 Probability +1509.04938 Plasma Physics +1509.06817 Phenomenology +1509.08656 Materials Science +1509.08897 Theory +1510.02879 Artificial Intelligence +1510.03670 Commutative Algebra +1510.03991 Representation Theory +1510.05651 Cosmology and Nongalactic Astrophysics +1510.07097 Algebraic Geometry +1510.07473 Classical Analysis and ODEs +1511.01116 Optics +1511.02119 Cryptography and Security +1511.02265 +1511.03324 +1511.04617 Mesoscale and Nanoscale Physics +1511.04794 Information Theory +1511.06052 Computation and Language +1511.06761 Astrophysics of Galaxies +1511.08782 Theory +1511.08970 Numerical Analysis +1512.02325 Computer Vision and Pattern Recognition +1512.03991 Instrumentation and Detectors +1512.04066 Category Theory +1512.05129 Differential Geometry +1512.06044 Algebraic Geometry +1512.08709 Operator Algebras +1512.08829 Robotics +1601.00025 Computer Vision and Pattern Recognition +1601.00044 Numerical Analysis +1601.00460 +1601.00581 Representation Theory +1601.02081 Mesoscale and Nanoscale Physics +1601.06952 Geometric Topology +1601.06975 Representation Theory +1602.00065 Probability +1602.00081 Soft Condensed Matter +1602.02176 Methodology +1602.02627 +1602.03018 +1602.03610 Differential Geometry +1602.03963 Artificial Intelligence +1602.04314 Representation Theory +1602.05101 Representation Theory +1602.07063 Human-Computer Interaction +1602.08392 Algebraic Geometry +1603.00702 Algebraic Geometry +1603.00811 Mesoscale and Nanoscale Physics +1603.00927 Mesoscale and Nanoscale Physics +1603.01413 +1603.04383 +1603.05421 Materials Science +1603.05533 Optimization and Control +1603.05670 Computation and Language +1603.07456 Probability +1603.07844 Analysis of PDEs +1603.07912 Number Theory +1603.08722 Combinatorics +1603.09447 Computational Physics +1604.00758 Physics and Society +1604.01005 Representation Theory +1604.02056 Astrophysics of Galaxies +1604.03019 Neurons and Cognition +1604.03655 Data Structures and Algorithms +1604.05648 Probability +1604.06602 Learning +1604.07728 Physics and Society +1604.08168 Physics and Society +1604.08342 Data Structures and Algorithms +1605.00725 Computational Physics +1605.01841 Theory +1605.02502 Quantum Gases +1605.02854 Metric Geometry +1605.02870 Commutative Algebra +1605.03024 Differential Geometry +1605.03356 Information Theory +1605.03601 Disordered Systems and Neural Networks +1605.06459 +1605.06498 +1605.07110 Machine Learning +1605.08493 +1605.08659 Geophysics +1605.09178 Strongly Correlated Electrons +1606.00272 K-Theory and Homology +1606.00517 +1606.01303 Mesoscale and Nanoscale Physics +1606.01768 Information Theory +1606.03104 Theory +1606.03929 Soft Condensed Matter +1606.04454 Fluid Dynamics +1606.04602 Statistical Mechanics +1606.05703 Computer Vision and Pattern Recognition +1606.06068 Probability +1606.06663 Combinatorics +1606.06718 Logic +1606.06982 Algebraic Geometry +1606.07310 Distributed, Parallel, and Cluster Computing +1606.08956 Phenomenology +1606.09202 Learning +1606.09598 +1607.00816 Information Theory +1607.01798 Phenomenology +1607.01901 Mesoscale and Nanoscale Physics +1607.01909 Combinatorics +1607.02094 Cosmology and Nongalactic Astrophysics +1607.03187 Algebraic Geometry +1607.03409 Mesoscale and Nanoscale Physics +1607.03987 Phenomenology +1607.04464 Mesoscale and Nanoscale Physics +1607.04917 Learning +1607.04992 Strongly Correlated Electrons +1607.05115 Strongly Correlated Electrons +1607.05349 Mesoscale and Nanoscale Physics +1607.05710 Physics and Society +1607.06702 Atmospheric and Oceanic Physics +1607.07232 Differential Geometry +1607.07331 +1607.08333 +1607.08730 +1607.08820 Instrumentation and Methods for Astrophysics +1608.00420 Phenomenology +1608.00779 Materials Science +1608.00795 Number Theory +1608.00899 Plasma Physics +1608.01504 Algebraic Geometry +1608.01548 +1608.01590 Optimization and Control +1608.02203 +1608.03368 Data Structures and Algorithms +1608.04112 Computational Complexity +1608.04707 +1608.05419 Disordered Systems and Neural Networks +1608.05828 Soft Condensed Matter +1608.06007 Social and Information Networks +1608.06417 Information Theory +1608.07112 Astrophysics of Galaxies +1608.07282 Phenomenology +1608.07615 Materials Science +1608.07623 Systems and Control +1608.07842 Number Theory +1608.08838 Phenomenology +1609.00307 Optics +1609.02502 Computational Physics +1609.03602 Geometric Topology +1609.03637 Experiment +1609.04505 Atomic Physics +1609.05292 Materials Science +1609.06501 Analysis of PDEs +1609.07670 Combinatorics +1609.07889 Optics +1609.08562 +1609.08812 Strongly Correlated Electrons +1609.08943 Solar and Stellar Astrophysics +1609.09585 Discrete Mathematics +1609.09610 Systems and Control +1610.00709 Quantum Gases +1610.01263 Probability +1610.01309 Chemical Physics +1610.02435 Quantum Gases +1610.02463 +1610.03046 Geometric Topology +1610.04747 Disordered Systems and Neural Networks +1610.04779 Distributed, Parallel, and Cluster Computing +1610.04861 Computer Vision and Pattern Recognition +1610.05014 Phenomenology +1610.05382 Phenomenology +1610.06165 Materials Science +1610.06818 Phenomenology +1610.07257 Chaotic Dynamics +1610.07591 Mesoscale and Nanoscale Physics +1610.08132 Plasma Physics +1610.08244 Methodology +1610.08900 Phenomenology +1611.00063 Plasma Physics +1611.00118 High Energy Astrophysical Phenomena +1611.00283 Cosmology and Nongalactic Astrophysics +1611.00492 Combinatorics +1611.00594 Atomic Physics +1611.00677 Theory +1611.00818 Functional Analysis +1611.01260 Computer Vision and Pattern Recognition +1611.01699 +1611.01773 Computer Vision and Pattern Recognition +1611.02179 Theory +1611.02417 +1611.02664 +1611.02717 Distributed, Parallel, and Cluster Computing +1611.02848 Numerical Analysis +1611.02892 Strongly Correlated Electrons +1611.02991 +1611.03974 Other Statistics +1611.04567 Probability +1611.05066 Systems and Control +1611.05348 Lattice +1611.05631 Algebraic Geometry +1611.06438 General Topology +1611.06510 +1611.07536 Strongly Correlated Electrons +1611.07539 Chaotic Dynamics +1611.08222 Systems and Control +1611.08836 Differential Geometry +1611.09551 Soft Condensed Matter +1611.09605 Phenomenology +1612.00098 Other Quantitative Biology +1612.00338 Computer Vision and Pattern Recognition +1612.00495 Astrophysics of Galaxies +1612.01142 Superconductivity +1612.01204 Solar and Stellar Astrophysics +1612.01297 Probability +1612.01814 Systems and Control +1612.02114 +1612.02139 Phenomenology +1612.02256 Soft Condensed Matter +1612.02294 Phenomenology +1612.02311 Experiment +1612.02350 Information Retrieval +1612.02875 Methodology +1612.02931 Fluid Dynamics +1612.02935 Analysis of PDEs +1612.03259 +1612.03828 Quantitative Methods +1612.04045 Strongly Correlated Electrons +1612.04220 Analysis of PDEs +1612.04306 Dynamical Systems +1612.04375 Phenomenology +1612.05310 Computation and Language +1612.05550 Representation Theory +1612.05564 Dynamical Systems +1612.05919 Information Theory +1612.06382 Materials Science +1612.06620 Strongly Correlated Electrons +1612.06974 Algebraic Geometry +1612.07043 High Energy Astrophysical Phenomena +1612.07087 Theory +1612.07437 Quantum Gases +1612.07552 Combinatorics +1612.07599 Theory +1612.07630 Computers and Society +1612.07806 Information Theory +1612.07822 Geometric Topology +1612.07892 High Energy Astrophysical Phenomena +1612.07976 Learning +1612.08111 Economics +1612.08118 Computer Science and Game Theory +1612.08148 +1612.08228 Digital Libraries +1612.08345 Information Theory +1612.08367 Dynamical Systems +1612.08382 Exactly Solvable and Integrable Systems +1612.08425 Machine Learning +1612.08475 Algebraic Geometry +1612.08513 Theory +1612.08528 Optics +1612.08546 Probability +1612.08649 Phenomenology +1612.08742 Other Quantitative Biology +1612.08743 Medical Physics +1612.08744 +1612.08745 Astrophysics of Galaxies +1612.08748 Strongly Correlated Electrons +1612.08749 Soft Condensed Matter +1612.08750 Optics +1612.08751 Accelerator Physics +1612.08752 Theory +1612.08753 Soft Condensed Matter +1612.08754 Soft Condensed Matter +1612.08755 Dynamical Systems +1612.08756 Soft Condensed Matter +1612.08757 Analysis of PDEs +1612.08758 Statistical Mechanics +1612.08759 Quantitative Methods +1612.08761 Computational Physics +1612.08762 Dynamical Systems +1612.08763 Molecular Networks +1612.08764 Atomic and Molecular Clusters +1612.08765 Dynamical Systems +1612.08766 Analysis of PDEs +1612.08767 Mathematical Finance +1612.08772 Functional Analysis +1612.08773 Analysis of PDEs +1612.08774 Analysis of PDEs +1612.08776 Methodology +1612.08778 Networking and Internet Architecture +1612.08779 +1612.08780 Computer Vision and Pattern Recognition +1612.08782 Materials Science +1612.08783 Number Theory +1612.08784 Cosmology and Nongalactic Astrophysics +1612.08785 Information Theory +1612.08786 Optimization and Control +1612.08787 Space Physics +1612.08788 +1612.08789 Learning +1612.08791 +1612.08794 Soft Condensed Matter +1612.08795 Learning +1612.08796 Computer Vision and Pattern Recognition +1612.08798 Quantum Gases +1612.08802 Combinatorics +1612.08803 Classical Analysis and ODEs +1612.08804 Statistics Theory +1612.08805 Materials Science +1612.08806 Accelerator Physics +1612.08807 Algebraic Geometry +1612.08808 Medical Physics +1612.08809 +1612.08811 Software Engineering +1612.08812 +1612.08813 Software Engineering +1612.08814 Biological Physics +1612.08815 Theory +1612.08819 Functional Analysis +1612.08820 Computer Vision and Pattern Recognition +1612.08821 Computer Science and Game Theory +1612.08823 Information Theory +1612.08824 Classical Physics +1612.08825 Computer Vision and Pattern Recognition +1612.08827 Theory +1612.08828 Discrete Mathematics +1612.08829 Functional Analysis +1612.08831 Algebraic Geometry +1612.08832 History and Overview +1612.08834 Materials Science +1612.08835 Databases +1612.08836 Plasma Physics +1612.08837 Information Theory +1612.08838 General Topology +1612.08840 Algebraic Topology +1612.08841 Strongly Correlated Electrons +1612.08842 Optics +1612.08844 +1612.08845 Logic in Computer Science +1612.08846 Earth and Planetary Astrophysics +1612.08848 Complex Variables +1612.08849 Earth and Planetary Astrophysics +1612.08850 Networking and Internet Architecture +1612.08851 Analysis of PDEs +1612.08852 Astrophysics of Galaxies +1612.08853 Differential Geometry +1612.08854 Mesoscale and Nanoscale Physics +1612.08855 Combinatorics +1612.08856 Combinatorics +1612.08858 Theory +1612.08859 Statistics Theory +1612.08860 Earth and Planetary Astrophysics +1612.08861 Social and Information Networks +1612.08862 Astrophysics of Galaxies +1612.08863 Phenomenology +1612.08864 +1612.08865 Number Theory +1612.08866 Numerical Analysis +1612.08869 Strongly Correlated Electrons +1612.08871 Computer Vision and Pattern Recognition +1612.08874 +1612.08875 Machine Learning +1612.08876 Statistical Mechanics +1612.08877 Instrumentation and Methods for Astrophysics +1612.08878 Phenomenology +1612.08879 Computer Vision and Pattern Recognition +1612.08881 Classical Analysis and ODEs +1612.08883 +1612.08884 Social and Information Networks +1612.08885 Soft Condensed Matter +1612.08886 Physics and Society +1612.08887 Differential Geometry +1612.08888 Computer Science and Game Theory +1612.08889 Materials Science +1612.08890 Solar and Stellar Astrophysics +1612.08891 Representation Theory +1612.08892 Functional Analysis +1612.08894 Computer Vision and Pattern Recognition +1612.08896 Mesoscale and Nanoscale Physics +1612.08897 +1612.08900 High Energy Astrophysical Phenomena +1612.08902 Algebraic Geometry +1612.08903 Representation Theory +1612.08904 Combinatorics +1612.08906 Materials Science +1612.08908 History and Philosophy of Physics +1612.08909 Mesoscale and Nanoscale Physics +1612.08910 Networking and Internet Architecture +1612.08911 Soft Condensed Matter +1612.08912 +1612.08913 Social and Information Networks +1612.08914 Networking and Internet Architecture +1612.08915 Machine Learning +1612.08916 Theory +1612.08917 +1612.08918 Combinatorics +1612.08919 Astrophysics of Galaxies +1612.08920 Quantum Gases +1612.08921 Analysis of PDEs +1612.08922 Instrumentation and Methods for Astrophysics +1612.08924 Materials Science +1612.08925 +1612.08927 Computer Vision and Pattern Recognition +1612.08928 Theory +1612.08931 Accelerator Physics +1612.08932 Machine Learning +1612.08933 Phenomenology +1612.08936 Computer Vision and Pattern Recognition +1612.08937 Space Physics +1612.08939 Dynamical Systems +1612.08940 Combinatorics +1612.08941 Rings and Algebras +1612.08942 Group Theory +1612.08943 Phenomenology +1612.08944 Group Theory +1612.08945 Optics +1612.08946 Classical Analysis and ODEs +1612.08947 Physics Education +1612.08948 Cell Behavior +1612.08949 Physics and Society +1612.08950 Phenomenology +1612.08952 Biological Physics +1612.08953 Theory +1612.08955 Analysis of PDEs +1612.08956 Theory +1612.08957 High Energy Astrophysical Phenomena +1612.08958 +1612.08959 +1612.08960 Accelerator Physics +1612.08963 +1612.08964 Analysis of PDEs +1612.08965 Computational Physics +1612.08967 Artificial Intelligence +1612.08970 Systems and Control +1612.08972 +1612.08973 Space Physics +1612.08974 Computation +1612.08975 +1612.08977 Accelerator Physics +1612.08979 Operator Algebras +1612.08980 Quantum Gases +1612.08981 Symplectic Geometry +1612.08982 Numerical Analysis +1612.08983 +1612.08985 Theory +1612.08986 Earth and Planetary Astrophysics +1612.08987 Theory +1612.08989 Computation and Language +1612.08992 +1612.08993 Optics +1612.08994 Computation and Language +1612.08995 Biological Physics +1612.08997 Solar and Stellar Astrophysics +1612.09000 +1612.09001 Distributed, Parallel, and Cluster Computing +1612.09002 Materials Science +1612.09003 Combinatorics +1612.09004 Statistics Theory +1612.09006 Computer Science and Game Theory +1612.09007 Machine Learning +1612.09008 Computational Physics +1612.09009 Fluid Dynamics +1612.09010 Algebraic Geometry +1612.09011 Materials Science +1612.09013 Solar and Stellar Astrophysics +1612.09014 Representation Theory +1612.09015 Soft Condensed Matter +1612.09017 Classical Physics +1612.09018 Accelerator Physics +1612.09019 Mesoscale and Nanoscale Physics +1612.09020 Algebraic Geometry +1612.09021 Materials Science +1612.09022 Neural and Evolutionary Computing +1612.09023 Cosmology and Nongalactic Astrophysics +1612.09024 Differential Geometry +1612.09025 Probability +1612.09026 Differential Geometry +1612.09027 Information Theory +1612.09028 Quantum Gases +1612.09029 Distributed, Parallel, and Cluster Computing +1612.09031 Optics +1612.09035 Instrumentation and Detectors +1612.09036 Rings and Algebras +1612.09037 Strongly Correlated Electrons +1612.09038 Cosmology and Nongalactic Astrophysics +1612.09039 Exactly Solvable and Integrable Systems +1612.09040 Classical Analysis and ODEs +1612.09043 Phenomenology +1612.09044 Probability +1612.09045 Probability +1612.09046 Quantum Gases +1612.09050 Phenomenology +1612.09052 Soft Condensed Matter +1612.09053 Superconductivity +1612.09054 Number Theory +1612.09055 Functional Analysis +1612.09057 Learning +1612.09058 High Energy Astrophysical Phenomena +1612.09059 Cryptography and Security +1612.09062 Information Retrieval +1612.09064 Superconductivity +1612.09065 Software Engineering +1612.09066 Information Theory +1612.09068 Rings and Algebras +1612.09070 Algebraic Geometry +1612.09073 Analysis of PDEs +1612.09075 Phenomenology +1612.09076 Learning +1612.09078 Instrumentation and Methods for Astrophysics +1612.09080 Statistical Mechanics +1612.09081 Lattice +1612.09082 Probability +1612.09083 Data Structures and Algorithms +1612.09084 Statistical Mechanics +1612.09085 Strongly Correlated Electrons +1612.09087 Computational Engineering, Finance, and Science +1612.09088 Representation Theory +1612.09090 +1612.09091 Lattice +1612.09092 Analysis of PDEs +1612.09093 Discrete Mathematics +1612.09095 Analysis of PDEs +1612.09096 Strongly Correlated Electrons +1612.09097 Numerical Analysis +1612.09098 Theory +1612.09100 Representation Theory +1612.09102 Mesoscale and Nanoscale Physics +1612.09103 Probability +1612.09104 Algebraic Geometry +1612.09105 Systems and Control +1612.09107 Representation Theory +1612.09108 Number Theory +1612.09112 Quantum Algebra +1612.09113 Computation and Language +1612.09114 +1612.09115 Materials Science +1612.09117 Analysis of PDEs +1612.09118 Solar and Stellar Astrophysics +1612.09119 +1612.09121 Methodology +1612.09122 Learning +1612.09123 Economics +1612.09124 Exactly Solvable and Integrable Systems +1612.09125 Differential Geometry +1612.09126 Probability +1612.09127 Mesoscale and Nanoscale Physics +1612.09129 Instrumentation and Methods for Astrophysics +1612.09130 Statistical Mechanics +1612.09131 Cosmology and Nongalactic Astrophysics +1612.09133 Materials Science +1612.09134 Computer Vision and Pattern Recognition +1612.09135 Theory +1612.09136 Materials Science +1612.09137 Phenomenology +1612.09138 +1612.09139 High Energy Astrophysical Phenomena +1612.09140 Instrumentation and Detectors +1612.09141 Representation Theory +1612.09142 Dynamical Systems +1612.09143 Combinatorics +1612.09144 Numerical Analysis +1612.09145 Data Structures and Algorithms +1612.09148 Other Condensed Matter +1612.09149 Strongly Correlated Electrons +1612.09151 +1612.09152 Mathematical Finance +1612.09153 Optics +1612.09154 Differential Geometry +1612.09155 Databases +1612.09156 Algebraic Geometry +1612.09157 +1612.09158 Systems and Control +1612.09159 Experiment +1612.09161 Computer Vision and Pattern Recognition +1612.09162 Computation +1612.09164 Representation Theory +1612.09165 Phenomenology +1612.09167 Probability +1612.09168 Data Structures and Algorithms +1612.09169 Information Theory +1612.09170 +1612.09171 Optimization and Control +1612.09172 Theory +1612.09173 Representation Theory +1612.09175 Instrumentation and Methods for Astrophysics +1612.09176 Number Theory +1612.09178 Phenomenology +1612.09180 Physics Education +1612.09181 +1612.09182 +1612.09183 Other Computer Science +1612.09185 Networking and Internet Architecture +1612.09187 Phenomenology +1612.09188 Physics Education +1612.09189 Statistical Finance +1612.09190 Solar and Stellar Astrophysics +1612.09192 +1612.09195 Applications +1612.09197 Complex Variables +1612.09199 Machine Learning +1612.09200 Superconductivity +1612.09201 Classical Analysis and ODEs +1612.09202 Phenomenology +1612.09203 Numerical Analysis +1612.09204 Analysis of PDEs +1612.09205 Neural and Evolutionary Computing +1612.09206 Algebraic Geometry +1612.09207 Methodology +1612.09208 Algebraic Geometry +1612.09210 Numerical Analysis +1612.09211 Disordered Systems and Neural Networks +1612.09212 Artificial Intelligence +1612.09213 Computation and Language +1612.09215 +1612.09216 Probability +1612.09217 Combinatorics +1612.09218 Phenomenology +1612.09219 Applications +1612.09220 Quantum Algebra +1612.09222 Information Theory +1612.09223 Logic +1612.09226 Phenomenology +1612.09227 Accelerator Physics +1612.09228 +1612.09229 Probability +1612.09231 +1612.09232 Number Theory +1612.09235 Instrumentation and Detectors +1612.09236 Analysis of PDEs +1612.09237 Number Theory +1612.09238 Phenomenology +1612.09240 +1612.09241 Theory +1612.09242 Plasma Physics +1612.09248 Theory +1612.09250 Probability +1612.09251 Logic in Computer Science +1612.09254 +1612.09255 Phenomenology +1612.09256 Experiment +1612.09257 Robotics +1612.09258 Quantum Algebra +1612.09259 Social and Information Networks +1612.09261 +1612.09264 Phenomenology +1612.09265 Probability +1612.09266 Physics Education +1612.09267 Mesoscale and Nanoscale Physics +1612.09268 Neurons and Cognition +1612.09270 Dynamical Systems +1612.09271 Algebraic Geometry +1612.09272 Theory +1612.09273 Computational Physics +1612.09274 Experiment +1612.09276 Superconductivity +1612.09280 Phenomenology +1612.09283 Machine Learning +1612.09285 +1612.09287 Accelerator Physics +1612.09288 Algebraic Geometry +1612.09289 Differential Geometry +1612.09291 +1612.09292 Superconductivity +1612.09293 Atomic Physics +1612.09294 Phenomenology +1612.09297 Machine Learning +1612.09300 Phenomenology +math/0002091 Number Theory +math/0002098 Number Theory +math/0203217 Number Theory +math/0204052 Number Theory +math/0207293 Quantum Algebra +math/0211204 Number Theory +math/0302091 Number Theory +math/0302155 Number Theory +math/0304428 Number Theory +math/0304496 Number Theory +math/0310005 Number Theory +math/0402041 Complex Variables +math/0503177 Number Theory +math/0507448 Quantum Algebra +math/0603469 Combinatorics +math/0605469 General Topology +math/0608148 Number Theory +math/0609244 Number Theory +math/0703646 Number Theory +math/9811175 Quantum Algebra +physics/0404044 General Physics +quant-ph/0006031 +quant-ph/0102078 +quant-ph/0401083 +quant-ph/0401091 +quant-ph/0410139 +0711.3658 Algebraic Geometry +0802.2342 Combinatorics +0902.1729 Number Theory +1007.5197 Commutative Algebra +1011.2182 Other Condensed Matter +1012.1303 Complex Variables +1105.0053 Optics +1105.4345 Operator Algebras +1109.0118 +1110.6092 Group Theory +1201.1926 Dynamical Systems +1203.6665 Statistics Theory +1205.1976 Complex Variables +1205.4144 Information Theory +1206.5490 Algebraic Geometry +1207.1332 Cosmology and Nongalactic Astrophysics +1211.4182 +1212.6853 Quantum Algebra +1301.0017 Cosmology and Nongalactic Astrophysics +1301.2676 Dynamical Systems +1301.5033 Information Theory +1301.5420 +1303.5126 Differential Geometry +1304.0155 +1304.1802 Cosmology and Nongalactic Astrophysics +1304.6749 Cosmology and Nongalactic Astrophysics +1305.0636 Combinatorics +1305.3234 Algebraic Geometry +1306.1465 Statistics Theory +1306.1554 Number Theory +1306.3092 Statistics Theory +1306.5766 Cosmology and Nongalactic Astrophysics +1306.6434 Operator Algebras +1307.1276 Geometric Topology +1307.2510 General Physics +1307.3478 +1307.4233 +1308.3470 Dynamical Systems +1308.3536 Algebraic Topology +1308.6703 Mesoscale and Nanoscale Physics +1309.3099 Dynamical Systems +1309.5082 Commutative Algebra +1310.0390 Representation Theory +1310.3948 Probability +1310.6225 +1311.6987 Complex Variables +1312.5798 Cosmology and Nongalactic Astrophysics +1312.6187 Complex Variables +1401.3332 Instrumentation and Methods for Astrophysics +1401.4647 Lattice +1401.5681 Physics Education +1402.1660 Computational Geometry +1402.2040 Combinatorics +1402.2828 Computation +1402.4973 +1402.5848 Differential Geometry +1403.0772 Probability +1403.0908 Astrophysics of Galaxies +1403.2829 Solar and Stellar Astrophysics +1403.3263 Statistical Mechanics +1403.7362 Dynamical Systems +1404.0690 Physics Education +1404.1781 Probability +1404.3779 Atomic Physics +1405.1252 Algebraic Geometry +1405.3802 +1405.5329 Information Theory +1405.5548 Optimization and Control +1406.3914 Theory +1406.7678 +1407.2498 +1407.5023 Materials Science +1407.6638 Populations and Evolution +1407.6846 Data Structures and Algorithms +1408.2636 Algebraic Geometry +1408.3918 Geometric Topology +1408.5220 Category Theory +1409.0227 Disordered Systems and Neural Networks +1409.3426 +1409.3898 +1409.4233 Atomic and Molecular Clusters +1409.6060 Analysis of PDEs +1409.7598 Applications +1409.7815 Cosmology and Nongalactic Astrophysics +1409.8094 Probability +1410.0201 Numerical Analysis +1410.0202 Numerical Analysis +1410.0875 Cosmology and Nongalactic Astrophysics +1410.1753 Instrumentation and Detectors +1410.4188 Instrumentation and Detectors +1410.5135 Differential Geometry +1410.5888 Number Theory +1410.7504 Complex Variables +1410.8570 Statistics Theory +1411.0263 Statistical Mechanics +1411.0711 +1411.0865 Phenomenology +1411.1066 Theory +1411.1253 Phenomenology +1411.4237 Differential Geometry +1411.7339 General Physics +1411.7844 Phenomenology +1412.1077 +1412.1796 Theory +1412.2490 Rings and Algebras +1412.2773 Systems and Control +1412.3164 Cryptography and Security +1412.3850 +1412.3955 Combinatorics +1412.5918 Disordered Systems and Neural Networks +1412.8713 Analysis of PDEs +1501.01199 Cryptography and Security +1501.01648 Optics +1501.02326 Computational Physics +1501.02372 Computer Vision and Pattern Recognition +1501.04867 Information Theory +1501.06319 Phenomenology +1501.06825 Instrumentation and Detectors +1501.07487 +1502.04038 Dynamical Systems +1502.04907 +1502.05985 +1502.06074 Mathematical Finance +1502.07768 Operator Algebras +1502.07853 Materials Science +1503.00106 Probability +1503.00671 Analysis of PDEs +1503.00890 Computation +1503.02272 +1503.02393 +1503.03698 Astrophysics of Galaxies +1503.03759 Instrumentation and Detectors +1503.05088 Lattice +1503.05439 Functional Analysis +1503.05522 Computers and Society +1503.05591 Mesoscale and Nanoscale Physics +1503.07954 Combinatorics +1504.01648 Commutative Algebra +1504.02128 Software Engineering +1504.02584 Analysis of PDEs +1504.02690 Representation Theory +1504.03272 Number Theory +1504.03465 Functional Analysis +1504.03545 +1504.03828 Statistical Mechanics +1504.04748 Instrumentation and Detectors +1504.05111 +1504.05139 Algebraic Topology +1504.05346 Instrumentation and Detectors +1504.07310 Combinatorics +1504.07418 +1504.07870 Experiment +1504.07894 Theory +1505.00503 Strongly Correlated Electrons +1505.00860 Classical Analysis and ODEs +1505.01818 Social and Information Networks +1505.03750 Theory +1505.06208 +1505.06935 +1505.07084 History and Philosophy of Physics +1505.07847 Mesoscale and Nanoscale Physics +1505.08037 Functional Analysis +1505.08150 Theory +1506.00382 Rings and Algebras +1506.00683 Dynamical Systems +1506.01023 Theory +1506.01068 Logic +1506.01505 Disordered Systems and Neural Networks +1506.02046 +1506.03167 Information Theory +1506.04222 Solar and Stellar Astrophysics +1506.04442 Phenomenology +1506.04808 Phenomenology +1506.05334 Phenomenology +1506.06316 +1506.06840 Learning +1506.07150 Phenomenology +1506.07606 Theory +1506.08329 Experiment +1506.09210 Systems and Control +1507.00296 Disordered Systems and Neural Networks +1507.00902 +1507.00961 Probability +1507.01255 Information Theory +1507.01345 Data Structures and Algorithms +1507.01471 Statistical Mechanics +1507.01587 Strongly Correlated Electrons +1507.02978 Classical Analysis and ODEs +1507.03718 Cell Behavior +1507.05162 Metric Geometry +1507.06190 +1507.08521 Materials Science +1507.08802 +1507.08815 Materials Science +1508.00896 Cosmology and Nongalactic Astrophysics +1508.01357 Theory +1508.01798 Phenomenology +1508.04883 Portfolio Management +1508.04935 Materials Science +1508.05732 Probability +1509.01325 Numerical Analysis +1509.01769 Theory +1509.02302 Robotics +1509.02387 Instrumentation and Detectors +1509.02464 Distributed, Parallel, and Cluster Computing +1509.02556 Methodology +1509.02836 Materials Science +1509.03066 Soft Condensed Matter +1509.03705 Programming Languages +1509.03966 Information Theory +1509.04295 +1509.04508 Statistics Theory +1509.05219 Quantitative Methods +1509.05481 +1509.06045 +1509.06143 Classical Analysis and ODEs +1509.06696 Phenomenology +1509.07518 Cosmology and Nongalactic Astrophysics +1509.07859 Machine Learning +1509.08658 Information Theory +1509.08967 Computation and Language +1510.00139 Quantum Gases +1510.00971 +1510.01385 Information Theory +1510.01491 Optics +1510.01982 Phenomenology +1510.02062 +1510.02290 Analysis of PDEs +1510.02316 Spectral Theory +1510.02332 Phenomenology +1510.02333 +1510.02389 Theory +1510.02756 Phenomenology +1510.03602 Sound +1510.04398 Theory +1510.05305 +1510.05377 Operator Algebras +1510.05604 +1510.05957 Superconductivity +1510.05999 Theory +1510.06092 Physics and Society +1510.06320 Statistical Mechanics +1510.06393 +1510.07502 Populations and Evolution +1510.07525 Numerical Analysis +1510.08578 Computer Science and Game Theory +1510.08773 Chemical Physics +1510.08974 Learning +1510.09057 Atomic Physics +1511.00341 Cryptography and Security +1511.00627 +1511.00725 Learning +1511.00735 Digital Libraries +1511.00736 Learning +1511.02342 Dynamical Systems +1511.02501 Quantum Gases +1511.02542 Solar and Stellar Astrophysics +1511.02964 +1511.02994 Materials Science +1511.03149 +1511.04129 Group Theory +1511.04748 Theory +1511.04853 Combinatorics +1511.06617 Classical Analysis and ODEs +1511.06711 Materials Science +1511.07560 +1511.07563 +1511.08903 Probability +1511.08908 +1511.09196 Data Structures and Algorithms +1511.09287 Solar and Stellar Astrophysics +1512.01135 Theory +1512.02164 Theory +1512.02427 Cosmology and Nongalactic Astrophysics +1512.02656 Astrophysics of Galaxies +1512.04191 Mesoscale and Nanoscale Physics +1512.04395 Methodology +1512.04652 Artificial Intelligence +1512.04792 Artificial Intelligence +1512.05030 Computation and Language +1512.05544 Phenomenology +1512.06274 +1512.06417 Geometric Topology +1512.06655 Combinatorics +1512.07388 Strongly Correlated Electrons +1512.07686 Mesoscale and Nanoscale Physics +1512.07851 Learning +1512.08428 Analysis of PDEs +1512.08468 +1512.08672 Algebraic Geometry +1601.00004 Solar and Stellar Astrophysics +1601.00071 Quantum Gases +1601.00795 Group Theory +1601.00802 +1601.00824 Superconductivity +1601.01133 Pattern Formation and Solitons +1601.01246 +1601.01291 Instrumentation and Detectors +1601.01708 +1601.02357 +1601.02455 Statistical Mechanics +1601.03044 Phenomenology +1601.03708 Distributed, Parallel, and Cluster Computing +1601.03770 Functional Analysis +1601.03825 Number Theory +1601.03839 Representation Theory +1601.03902 +1601.03960 Earth and Planetary Astrophysics +1601.03963 Rings and Algebras +1601.03988 Representation Theory +1601.04010 Dynamical Systems +1601.04604 Classical Analysis and ODEs +1601.04871 Computer Vision and Pattern Recognition +1601.04877 Differential Geometry +1601.04908 Computation and Language +1601.04946 Number Theory +1601.04992 General Physics +1601.05029 +1601.05113 Neurons and Cognition +1601.05242 Classical Analysis and ODEs +1601.05329 Networking and Internet Architecture +1601.05630 Social and Information Networks +1601.05797 High Energy Astrophysical Phenomena +1601.05871 Mathematical Software +1601.05909 Databases +1601.05984 Classical Analysis and ODEs +1601.06056 Algebraic Geometry +1601.06158 Combinatorics +1601.06159 Functional Analysis +1601.06164 Theory +1601.06169 Phenomenology +1601.06170 Algebraic Geometry +1601.06178 Analysis of PDEs +1601.06181 Information Theory +1601.06182 Numerical Analysis +1601.06184 Information Theory +1601.06186 Combinatorics +1601.06188 +1601.06191 Populations and Evolution +1601.06192 Classical Physics +1601.06193 Category Theory +1601.06195 Strongly Correlated Electrons +1601.06202 Networking and Internet Architecture +1601.06203 Networking and Internet Architecture +1601.06204 Risk Management +1601.06205 Materials Science +1601.06211 Algebraic Geometry +1601.06212 Statistics Theory +1601.06213 Optics +1601.06216 Optics +1601.06218 Operator Algebras +1601.06219 Probability +1601.06220 +1601.06221 Medical Physics +1601.06222 Software Engineering +1601.06223 Computer Science and Game Theory +1601.06226 Cosmology and Nongalactic Astrophysics +1601.06230 Human-Computer Interaction +1601.06231 +1601.06233 Information Theory +1601.06234 Populations and Evolution +1601.06235 Cosmology and Nongalactic Astrophysics +1601.06236 Applications +1601.06238 Rings and Algebras +1601.06242 Software Engineering +1601.06243 Computer Vision and Pattern Recognition +1601.06244 Multiagent Systems +1601.06245 Artificial Intelligence +1601.06246 Materials Science +1601.06251 Computer Vision and Pattern Recognition +1601.06255 Differential Geometry +1601.06258 Computers and Society +1601.06259 Machine Learning +1601.06260 Computer Vision and Pattern Recognition +1601.06263 Dynamical Systems +1601.06264 Functional Analysis +1601.06265 Differential Geometry +1601.06268 Dynamical Systems +1601.06270 Probability +1601.06274 Computer Vision and Pattern Recognition +1601.06275 Probability +1601.06278 Discrete Mathematics +1601.06285 Algebraic Topology +1601.06286 Atmospheric and Oceanic Physics +1601.06287 Metric Geometry +1601.06288 Methodology +1601.06289 Cryptography and Security +1601.06291 Data Structures and Algorithms +1601.06298 Logic in Computer Science +1601.06305 Theory +1601.06306 Statistical Mechanics +1601.06307 Social and Information Networks +1601.06309 +1601.06310 Optimization and Control +1601.06311 Data Structures and Algorithms +1601.06314 Physics and Society +1601.06317 Analysis of PDEs +1601.06320 Instrumentation and Methods for Astrophysics +1601.06323 Cosmology and Nongalactic Astrophysics +1601.06326 Robotics +1601.06327 Information Theory +1601.06329 Strongly Correlated Electrons +1601.06332 Combinatorics +1601.06336 Functional Analysis +1601.06337 +1601.06338 +1601.06341 Optics +1601.06342 Information Theory +1601.06345 Networking and Internet Architecture +1601.06346 Dynamical Systems +1601.06347 Geometric Topology +1601.06352 Hardware Architecture +1601.06354 Combinatorics +1601.06357 Social and Information Networks +1601.06358 Classical Analysis and ODEs +1601.06359 Human-Computer Interaction +1601.06361 Number Theory +1601.06362 Information Theory +1601.06364 +1601.06365 Medical Physics +1601.06366 Optics +1601.06367 Commutative Algebra +1601.06368 Computational Engineering, Finance, and Science +1601.06371 Computers and Society +1601.06372 Computers and Society +1601.06376 Information Theory +1601.06377 Information Theory +1601.06378 Number Theory +1601.06384 Solar and Stellar Astrophysics +1601.06387 Number Theory +1601.06388 Number Theory +1601.06389 Networking and Internet Architecture +1601.06391 Combinatorics +1601.06392 Superconductivity +1601.06400 Combinatorics +1601.06405 Information Theory +1601.06406 +1601.06412 Statistics Theory +1601.06414 Fluid Dynamics +1601.06417 Probability +1601.06419 +1601.06420 Neurons and Cognition +1601.06423 Information Theory +1601.06425 Networking and Internet Architecture +1601.06426 Information Theory +1601.06427 Algebraic Geometry +1601.06428 Complex Variables +1601.06435 Dynamical Systems +1601.06440 Information Retrieval +1601.06445 Number Theory +1601.06447 Applications +1601.06449 Information Theory +1601.06450 Rings and Algebras +1601.06452 Dynamical Systems +1601.06454 Cryptography and Security +1601.06455 +1601.06457 Phenomenology +1601.06458 Analysis of PDEs +1601.06459 Methodology +1601.06462 Commutative Algebra +1601.06463 Information Theory +1601.06464 Optimization and Control +1601.06465 Plasma Physics +1601.06466 Software Engineering +1601.06467 +1601.06470 Theory +1601.06471 Numerical Analysis +1601.06472 Differential Geometry +1601.06474 Networking and Internet Architecture +1601.06475 Combinatorics +1601.06476 Learning +1601.06477 Mathematical Finance +1601.06478 Phenomenology +1601.06485 Dynamical Systems +1601.06486 Atmospheric and Oceanic Physics +1601.06487 Classical Analysis and ODEs +1601.06488 General Topology +1601.06489 General Topology +1601.06491 Analysis of PDEs +1601.06492 Materials Science +1601.06493 +1601.06494 Other Condensed Matter +1601.06496 Distributed, Parallel, and Cluster Computing +1601.06497 Distributed, Parallel, and Cluster Computing +1601.06502 Cryptography and Security +1601.06503 Materials Science +1601.06504 Logic in Computer Science +1601.06510 Fluid Dynamics +1601.06511 Representation Theory +1601.06518 Cosmology and Nongalactic Astrophysics +1601.06519 Algebraic Geometry +1601.06522 +1601.06523 Statistics Theory +1601.06527 Social and Information Networks +1601.06532 Solar and Stellar Astrophysics +1601.06538 Dynamical Systems +1601.06541 Mesoscale and Nanoscale Physics +1601.06542 Soft Condensed Matter +1601.06544 Numerical Analysis +1601.06545 Phenomenology +1601.06548 Logic +1601.06549 Numerical Analysis +1601.06553 Chemical Physics +1601.06564 Probability +1601.06569 Artificial Intelligence +1601.06572 Complex Variables +1601.06575 Algebraic Topology +1601.06576 Information Theory +1601.06578 Information Theory +1601.06583 Optics +1601.06584 Materials Science +1601.06585 Materials Science +1601.06589 Analysis of PDEs +1601.06591 Dynamical Systems +1601.06603 Multimedia +1601.06606 Probability +1601.06607 +1601.06608 Computer Vision and Pattern Recognition +1601.06609 Optimization and Control +1601.06615 Computer Vision and Pattern Recognition +1601.06616 Robotics +1601.06619 Differential Geometry +1601.06623 Numerical Analysis +1601.06625 Solar and Stellar Astrophysics +1601.06626 Commutative Algebra +1601.06627 Materials Science +1601.06630 Methodology +1601.06631 Optics +1601.06632 Differential Geometry +1601.06633 K-Theory and Homology +1601.06635 Numerical Analysis +1601.06638 Astrophysics of Galaxies +1601.06640 Experiment +1601.06642 K-Theory and Homology +1601.06644 Fluid Dynamics +1601.06646 Fluid Dynamics +1601.06649 Mesoscale and Nanoscale Physics +1601.06650 Machine Learning +1601.06651 Machine Learning +1601.06652 Sound +1601.06658 Representation Theory +1601.06661 Logic +1601.06662 Theory +1601.06666 Networking and Internet Architecture +1601.06668 +1601.06669 Lattice +1601.06670 High Energy Astrophysical Phenomena +1601.06671 Number Theory +1601.06672 Optimization and Control +1601.06680 Machine Learning +1601.06685 Combinatorics +1601.06687 Rings and Algebras +1601.06688 Algebraic Geometry +1601.06689 Information Theory +1601.06691 Dynamical Systems +1601.06693 Data Structures and Algorithms +1601.06698 Algebraic Geometry +1601.06702 Numerical Analysis +1601.06703 Statistical Mechanics +1601.06706 +1601.06707 Classical Analysis and ODEs +1601.06709 Information Theory +1601.06711 Social and Information Networks +1601.06714 Phenomenology +1601.06725 High Energy Astrophysical Phenomena +1601.06726 Astrophysics of Galaxies +1601.06729 Numerical Analysis +1601.06731 Social and Information Networks +1601.06732 Artificial Intelligence +1601.06735 +1601.06737 Number Theory +1601.06738 Artificial Intelligence +1601.06739 Optimization and Control +1601.06740 Other Computer Science +1601.06741 Astrophysics of Galaxies +1601.06743 Methodology +1601.06751 Phenomenology +1601.06753 Analysis of PDEs +1601.06755 Artificial Intelligence +1601.06756 Information Theory +1601.06760 Differential Geometry +1601.06762 Information Theory +1601.06763 Artificial Intelligence +1601.06767 Computational Physics +astro-ph/0404393 +cond-mat/0111041 Superconductivity +cond-mat/0401296 +0910.5415 +0911.3668 +1009.3764 Number Theory +1203.3280 Discrete Mathematics +1204.1009 Probability +1204.1827 Number Theory +1208.4431 +1208.5930 Probability +1302.3249 Number Theory +1308.0228 Functional Analysis +1311.3795 Algebraic Geometry +1401.0914 Probability +1401.3075 Information Theory +1402.4999 Algebraic Geometry +1403.6173 Computer Vision and Pattern Recognition +1404.4477 Probability +1405.2588 Dynamical Systems +1406.0657 Algebraic Geometry +1406.1155 Representation Theory +1406.5417 Dynamical Systems +1407.4437 +1408.6980 Computation +1409.0599 Information Theory +1409.6847 +1410.3889 Data Structures and Algorithms +1411.4452 Algebraic Geometry +1501.00305 Information Theory +1502.02586 Algebraic Topology +1502.02648 +1502.05207 Experiment +1502.05233 Experiment +1504.00563 Functional Analysis +1504.04231 Optimization and Control +1504.06697 Materials Science +1504.07951 Theory +1505.00272 Theory +1505.00370 Numerical Analysis +1505.02155 Data Structures and Algorithms +1505.03010 Phenomenology +1505.03883 Data Structures and Algorithms +1506.00732 Rings and Algebras +1506.00736 Rings and Algebras +1506.01969 Strongly Correlated Electrons +1506.06856 Strongly Correlated Electrons +1506.07531 Astrophysics of Galaxies +1506.07693 Probability +1507.00745 Representation Theory +1507.01176 Soft Condensed Matter +1507.03192 Soft Condensed Matter +1507.03549 Optimization and Control +1507.03637 Materials Science +1507.08469 Dynamical Systems +1508.03916 Solar and Stellar Astrophysics +1508.04541 Combinatorics +1508.05743 +1508.06677 Combinatorics +1509.00518 Theory +1509.02629 +1509.05815 Algebraic Geometry +1509.07672 Probability +1509.08430 Mesoscale and Nanoscale Physics +1509.08567 Optimization and Control +1510.00932 Statistical Mechanics +1510.02060 High Energy Astrophysical Phenomena +1510.02170 Instrumentation and Detectors +1510.06830 Strongly Correlated Electrons +1511.02636 Phenomenology +1511.02930 Computation +1511.03262 Probability +1511.03573 Statistical Mechanics +1511.04118 Mesoscale and Nanoscale Physics +1511.06520 Probability +1511.06856 Computer Vision and Pattern Recognition +1511.07266 Populations and Evolution +1511.09289 Discrete Mathematics +1512.00632 Experiment +1512.03846 Strongly Correlated Electrons +1601.00088 Computer Vision and Pattern Recognition +1601.02267 Discrete Mathematics +1601.02919 Computer Vision and Pattern Recognition +1601.02957 Logic +1601.05443 Strongly Correlated Electrons +1601.06049 Materials Science +1601.07764 Superconductivity +1602.00544 Dynamical Systems +1602.01621 Soft Condensed Matter +1602.02511 +1602.06492 Optimization and Control +1602.07910 Mathematical Finance +1602.08574 Analysis of PDEs +1602.08652 Statistical Mechanics +1602.08850 Classical Analysis and ODEs +1602.09068 Mesoscale and Nanoscale Physics +1603.00245 Superconductivity +1603.01586 Statistical Finance +1603.03747 Mathematical Finance +1603.03749 +1603.03759 Phenomenology +1603.04189 Applications +1603.05289 Systems and Control +1603.05805 +1603.06959 Theory +1603.07088 Number Theory +1603.07771 Computation and Language +1603.08387 +1604.00439 Instrumentation and Methods for Astrophysics +1604.02412 Genomics +1604.03129 +1604.03388 Probability +1604.04276 Statistical Mechanics +1604.04357 Representation Theory +1604.04984 Multimedia +1604.06077 Biological Physics +1604.06780 Mesoscale and Nanoscale Physics +1604.08140 +1605.00925 Theory +1605.00949 Materials Science +1605.02635 Information Theory +1605.04427 Combinatorics +1605.04729 Statistics Theory +1605.06635 +1605.07808 Logic in Computer Science +1605.07965 Statistical Mechanics +1605.08889 Computation and Language +1605.09127 Soft Condensed Matter +1605.09743 Phenomenology +1606.01033 Superconductivity +1606.01149 Materials Science +1606.01589 Quantum Gases +1606.01627 Statistics Theory +1606.02518 Machine Learning +1606.02975 Formal Languages and Automata Theory +1606.03007 Combinatorics +1606.04017 Experiment +1606.05460 Combinatorics +1606.05524 Atomic Physics +1606.05726 Number Theory +1606.07318 Analysis of PDEs +1606.08276 +1606.08842 Learning +1606.09142 Dynamical Systems +1607.00134 +1607.01084 Emerging Technologies +1607.01410 Algebraic Geometry +1607.02111 Metric Geometry +1607.02933 Classical Physics +1607.03171 Geometric Topology +1607.04835 Strongly Correlated Electrons +1607.05822 Computation and Language +1607.06091 Astrophysics of Galaxies +1607.06243 Phenomenology +1607.06366 Number Theory +1607.08787 +1608.01416 +1608.03362 +1608.03941 Exactly Solvable and Integrable Systems +1608.04117 Computer Vision and Pattern Recognition +1608.04153 Combinatorics +1608.04385 Theory +1608.04681 Analysis of PDEs +1608.06388 Strongly Correlated Electrons +1609.00067 Strongly Correlated Electrons +1609.00553 +1609.00958 Medical Physics +1609.01152 Dynamical Systems +1609.01660 Symplectic Geometry +1609.01735 +1609.01757 +1609.01815 +1609.01971 Numerical Analysis +1609.02013 Strongly Correlated Electrons +1609.03301 Applications +1609.03505 Astrophysics of Galaxies +1609.03589 Analysis of PDEs +1609.04108 Systems and Control +1609.04248 General Physics +1609.04793 Digital Libraries +1609.05158 Computer Vision and Pattern Recognition +1609.05178 Cryptography and Security +1609.05444 Phenomenology +1609.05491 +1609.05875 +1609.05914 Theory +1609.05983 Optimization and Control +1609.06026 Sound +1609.06161 Distributed, Parallel, and Cluster Computing +1609.06275 Operator Algebras +1609.06371 Computer Vision and Pattern Recognition +1609.06423 Digital Libraries +1609.06439 Theory +1609.06469 Theory +1609.06718 Earth and Planetary Astrophysics +1609.06950 Commutative Algebra +1609.06956 Quantum Gases +1609.07008 Distributed, Parallel, and Cluster Computing +1609.07016 Materials Science +1609.07028 Computer Vision and Pattern Recognition +1609.07056 Data Structures and Algorithms +1609.07073 Statistical Mechanics +1609.07140 Quantitative Methods +1609.07142 Cosmology and Nongalactic Astrophysics +1609.07144 Theory +1609.07145 High Energy Astrophysical Phenomena +1609.07154 Numerical Analysis +1609.07155 High Energy Astrophysical Phenomena +1609.07157 Instrumentation and Methods for Astrophysics +1609.07158 Instrumentation and Methods for Astrophysics +1609.07163 Functional Analysis +1609.07165 Statistics Theory +1609.07166 Classical Analysis and ODEs +1609.07167 Combinatorics +1609.07168 Chemical Physics +1609.07170 Multimedia +1609.07171 Digital Libraries +1609.07175 Materials Science +1609.07178 Dynamical Systems +1609.07179 Populations and Evolution +1609.07180 Numerical Analysis +1609.07183 Information Theory +1609.07184 Complex Variables +1609.07186 Theory +1609.07187 Soft Condensed Matter +1609.07189 Strongly Correlated Electrons +1609.07191 Strongly Correlated Electrons +1609.07192 Networking and Internet Architecture +1609.07193 Instrumentation and Methods for Astrophysics +1609.07194 Strongly Correlated Electrons +1609.07195 Methodology +1609.07198 Phenomenology +1609.07200 Learning +1609.07201 Dynamical Systems +1609.07202 Combinatorics +1609.07204 Analysis of PDEs +1609.07205 Phenomenology +1609.07206 Probability +1609.07207 Combinatorics +1609.07209 Number Theory +1609.07211 Number Theory +1609.07213 Mesoscale and Nanoscale Physics +1609.07214 Tissues and Organs +1609.07215 Learning +1609.07216 Differential Geometry +1609.07217 Methodology +1609.07218 Number Theory +1609.07219 Probability +1609.07222 Computation and Language +1609.07231 Classical Physics +1609.07232 Analysis of PDEs +1609.07233 Methodology +1609.07234 Hardware Architecture +1609.07236 Computers and Society +1609.07237 Optimization and Control +1609.07239 Data Structures and Algorithms +1609.07240 Phenomenology +1609.07250 Statistical Mechanics +1609.07251 Mesoscale and Nanoscale Physics +1609.07253 Systems and Control +1609.07261 Optimization and Control +1609.07267 Medical Physics +1609.07269 Probability +1609.07270 Differential Geometry +1609.07271 Dynamical Systems +1609.07272 Machine Learning +1609.07274 Rings and Algebras +1609.07276 Number Theory +1609.07279 +1609.07281 Mesoscale and Nanoscale Physics +1609.07284 Dynamical Systems +1609.07288 Discrete Mathematics +1609.07291 Numerical Analysis +1609.07294 +1609.07295 Number Theory +1609.07300 +1609.07301 Combinatorics +1609.07302 Cryptography and Security +1609.07304 Computer Vision and Pattern Recognition +1609.07306 Computer Vision and Pattern Recognition +1609.07311 Astrophysics of Galaxies +1609.07312 +1609.07319 Dynamical Systems +1609.07321 Geometric Topology +1609.07323 Optimization and Control +1609.07324 Optimization and Control +1609.07325 Instrumentation and Methods for Astrophysics +1609.07327 Algebraic Geometry +1609.07328 Optics +1609.07329 Emerging Technologies +1609.07330 Methodology +1609.07331 Analysis of PDEs +1609.07333 Machine Learning +1609.07334 +1609.07335 Combinatorics +1609.07336 +1609.07339 Probability +1609.07341 Theory +1609.07342 Human-Computer Interaction +1609.07343 Human-Computer Interaction +1609.07345 Combinatorics +1609.07346 Physics Education +1609.07349 Cryptography and Security +1609.07350 Software Engineering +1609.07354 Data Structures and Algorithms +1609.07356 Commutative Algebra +1609.07358 Optimization and Control +1609.07359 General Physics +1609.07360 Dynamical Systems +1609.07363 Methodology +1609.07364 Functional Analysis +1609.07365 Neurons and Cognition +1609.07366 Analysis of PDEs +1609.07367 Combinatorics +1609.07368 Systems and Control +1609.07370 Computer Vision and Pattern Recognition +1609.07371 Computer Vision and Pattern Recognition +1609.07374 Experiment +1609.07377 Discrete Mathematics +1609.07378 Neural and Evolutionary Computing +1609.07379 Logic +1609.07380 +1609.07382 Systems and Control +1609.07383 Materials Science +1609.07385 +1609.07391 Differential Geometry +1609.07392 Rings and Algebras +1609.07393 Systems and Control +1609.07395 Physics and Society +1609.07396 Rings and Algebras +1609.07397 +1609.07398 Logic +1609.07400 Analysis of PDEs +1609.07402 Optimization and Control +1609.07404 Phenomenology +1609.07405 +1609.07407 Applications +1609.07408 Analysis of PDEs +1609.07409 Systems and Control +1609.07412 Analysis of PDEs +1609.07414 Soft Condensed Matter +1609.07415 Statistics Theory +1609.07419 Probability +1609.07420 Computer Vision and Pattern Recognition +1609.07421 Probability +1609.07424 Dynamical Systems +1609.07425 Strongly Correlated Electrons +1609.07426 Populations and Evolution +1609.07428 Optimization and Control +1609.07434 Artificial Intelligence +1609.07436 Robotics +1609.07437 Systems and Control +1609.07439 Combinatorics +1609.07441 Distributed, Parallel, and Cluster Computing +1609.07442 +1609.07443 Theory +1609.07446 Differential Geometry +1609.07447 +1609.07448 Optimization and Control +1609.07449 +1609.07451 Computation and Language +1609.07452 Statistics Theory +1609.07455 Algebraic Geometry +1609.07456 Representation Theory +1609.07458 Statistical Mechanics +1609.07460 Computer Science and Game Theory +1609.07461 Subcellular Processes +1609.07464 Applications +1609.07466 Combinatorics +1609.07471 Spectral Theory +1609.07473 +1609.07475 Operator Algebras +1609.07476 Combinatorics +1609.07478 Optimization and Control +1609.07479 Computation and Language +hep-ex/0404013 Experiment +hep-ph/0308196 Phenomenology +math/0404536 Differential Geometry +1103.1437 Number Theory +1108.1062 Number Theory +1109.2362 Algebraic Geometry +1110.1997 Algebraic Geometry +1205.2791 Strongly Correlated Electrons +1206.6623 Differential Geometry +1211.5836 Group Theory +1302.4009 Logic +1304.3006 Algebraic Topology +1305.4540 General Topology +1306.1295 Mathematical Software +1307.1815 Mesoscale and Nanoscale Physics +1310.4389 Graphics +1401.6905 Optimization and Control +1403.3803 Functional Analysis +1409.1995 Probability +1409.7670 Quantum Gases +1410.4801 Logic in Computer Science +1411.2390 Phenomenology +1411.4832 Complex Variables +1411.5863 Cosmology and Nongalactic Astrophysics +1412.4360 Symplectic Geometry +1412.5920 Combinatorics +1412.6370 Methodology +1412.6371 Methodology +1501.00340 Computational Geometry +1501.07505 Analysis of PDEs +1502.06988 Methodology +1503.02560 Solar and Stellar Astrophysics +1503.06028 Probability +1503.06054 Complex Variables +1503.06818 Group Theory +1503.08162 Phenomenology +1503.08449 Algebraic Geometry +1504.01681 Combinatorics +1504.02987 Algebraic Geometry +1504.04904 Number Theory +1505.03568 Analysis of PDEs +1505.07434 Artificial Intelligence +1505.08039 Functional Analysis +1506.00056 Analysis of PDEs +1506.01617 Spectral Theory +1506.05756 Spectral Theory +1506.08647 General Physics +1506.08656 Experiment +1507.06863 Logic +1507.08115 Algebraic Topology +1508.00471 Logic +1508.01918 Numerical Analysis +1508.02434 Spectral Theory +1508.02525 Symplectic Geometry +1508.03372 Experiment +1508.07935 Logic +1509.00383 Number Theory +1509.03150 Computer Vision and Pattern Recognition +1509.09064 +1510.04455 Neurons and Cognition +1510.07780 Atomic Physics +1510.08579 Optimization and Control +1511.02844 Differential Geometry +1511.03000 Applications +1511.05082 Learning +1511.05309 Machine Learning +1511.07303 Computational Geometry +1512.00706 Analysis of PDEs +1512.02671 Numerical Analysis +1512.04166 Mesoscale and Nanoscale Physics +1512.05288 +1512.06318 Dynamical Systems +1601.00239 Logic in Computer Science +1601.01643 Biological Physics +1601.02900 Applications +1601.05429 Theory +1601.07621 Machine Learning +1602.00553 Mesoscale and Nanoscale Physics +1602.01409 Social and Information Networks +1602.01441 +1602.02348 Economics +1602.03887 Instrumentation and Methods for Astrophysics +1602.05227 Populations and Evolution +1602.05762 Applications +1602.06082 +1602.07099 Phenomenology +1603.01020 Mesoscale and Nanoscale Physics +1603.01339 Numerical Analysis +1603.04981 Computer Science and Game Theory +1603.05173 +1603.07720 Dynamical Systems +1603.07982 Theory +1604.01651 Computational Engineering, Finance, and Science +1604.02806 Superconductivity +1604.03438 Strongly Correlated Electrons +1604.03505 Computer Vision and Pattern Recognition +1604.03588 +1604.03635 Computer Vision and Pattern Recognition +1604.04353 Mesoscale and Nanoscale Physics +1604.04962 +1604.05076 Instrumentation and Detectors +1604.05225 Computer Vision and Pattern Recognition +1604.05681 Group Theory +1604.06127 Geometric Topology +1604.06682 Data Structures and Algorithms +1604.07250 Algebraic Geometry +1604.08188 Probability +1605.00309 Social and Information Networks +1605.02128 Differential Geometry +1605.02498 Phenomenology +1605.03146 Experiment +1605.04365 Differential Geometry +1605.04381 Computer Science and Game Theory +1605.04721 Information Theory +1605.06522 +1605.06991 Theory +1605.07694 Differential Geometry +1605.09085 Learning +1606.00252 Methodology +1606.01136 Computational Physics +1606.02259 +1606.02367 Analysis of PDEs +1606.04051 Mesoscale and Nanoscale Physics +1606.06901 Chemical Physics +1606.07649 Differential Geometry +1606.07772 Computation and Language +1606.07889 +1606.09238 Number Theory +1606.09398 Spectral Theory +1607.01698 Instrumentation and Methods for Astrophysics +1607.02609 Category Theory +1607.03075 +1607.03110 Phenomenology +1607.03407 Strongly Correlated Electrons +1607.03985 Phenomenology +1607.04180 Programming Languages +1607.04973 +1607.05025 Optics +1607.05189 Computational Complexity +1607.05288 Cosmology and Nongalactic Astrophysics +1607.08341 Soft Condensed Matter +1607.08835 Algebraic Geometry +1608.00777 Differential Geometry +1608.02736 Strongly Correlated Electrons +1608.03775 Information Theory +1608.04690 Cosmology and Nongalactic Astrophysics +1608.05185 Medical Physics +1608.06275 Superconductivity +1608.06470 Phenomenology +1608.07154 Strongly Correlated Electrons +1608.08214 +1608.08417 Quantum Gases +1609.00826 +1609.01253 +1609.01405 Dynamical Systems +1609.01924 Chaotic Dynamics +1609.02770 Computer Vision and Pattern Recognition +1609.03374 Soft Condensed Matter +1609.05800 Systems and Control +1609.05873 Analysis of PDEs +1609.05977 Cell Behavior +1609.06181 Analysis of PDEs +1609.06799 +1609.06905 Soft Condensed Matter +1609.07520 Phenomenology +1609.08024 Solar and Stellar Astrophysics +1609.08547 Analysis of PDEs +1609.08909 Functional Analysis +1610.00325 Systems and Control +1610.01143 Optics +1610.02154 Mesoscale and Nanoscale Physics +1610.02595 Optimization and Control +1610.03366 Differential Geometry +1610.04750 Classical Analysis and ODEs +1610.05013 Theory +1610.05072 Logic in Computer Science +1610.06638 Rings and Algebras +1610.06764 +1610.08069 Theory +1610.09889 Computation and Language +1611.01739 Classical Analysis and ODEs +1611.02105 Theory +1611.03028 Social and Information Networks +1611.03354 Human-Computer Interaction +1611.03588 Statistical Mechanics +1611.04201 Learning +1611.05416 Learning +1611.06397 Astrophysics of Galaxies +1611.07383 Cryptography and Security +1611.07483 Experiment +1611.07642 Algebraic Geometry +1611.08385 Representation Theory +1611.08396 Cryptography and Security +1611.08402 Computer Vision and Pattern Recognition +1611.09146 +1611.09528 Distributed, Parallel, and Cluster Computing +1611.09663 Combinatorics +1611.09935 Numerical Analysis +1612.00125 Computer Vision and Pattern Recognition +1612.00416 Mesoscale and Nanoscale Physics +1612.00490 Classical Physics +1612.00520 Applications +1612.00603 Computer Vision and Pattern Recognition +1612.01371 Theory +1612.01524 High Energy Astrophysical Phenomena +1612.01600 Optimization and Control +1612.01607 Systems and Control +1612.01644 Phenomenology +1612.01660 +1612.01816 Probability +1612.01834 Computer Vision and Pattern Recognition +1612.01835 Cryptography and Security +1612.01842 Distributed, Parallel, and Cluster Computing +1612.01852 +1612.01857 Artificial Intelligence +1612.01953 +1612.01993 Lattice +1612.01995 Instrumentation and Detectors +1612.01997 Theory +1612.01998 High Energy Astrophysical Phenomena +1612.01999 Phenomenology +1612.02006 High Energy Astrophysical Phenomena +1612.02007 Mesoscale and Nanoscale Physics +1612.02016 Solar and Stellar Astrophysics +1612.02018 Cosmology and Nongalactic Astrophysics +1612.02025 Functional Analysis +1612.02026 Quantum Algebra +1612.02027 Instrumentation and Detectors +1612.02028 Instrumentation and Detectors +1612.02031 Atomic Physics +1612.02033 Analysis of PDEs +1612.02034 Data Structures and Algorithms +1612.02035 Populations and Evolution +1612.02037 +1612.02038 Optics +1612.02040 Phenomenology +1612.02041 Pattern Formation and Solitons +1612.02043 Optics +1612.02044 Systems and Control +1612.02045 Systems and Control +1612.02048 +1612.02049 Algebraic Geometry +1612.02051 +1612.02054 Materials Science +1612.02056 Accelerator Physics +1612.02057 Numerical Analysis +1612.02058 +1612.02059 Biological Physics +1612.02060 Quantum Algebra +1612.02062 Networking and Internet Architecture +1612.02063 Phenomenology +1612.02066 Dynamical Systems +1612.02068 Atomic Physics +1612.02070 Fluid Dynamics +1612.02071 Phenomenology +1612.02074 +1612.02075 Theory +1612.02076 Accelerator Physics +1612.02082 Numerical Analysis +1612.02083 Optics +1612.02089 +1612.02090 Methodology +1612.02091 Quantum Gases +1612.02092 Soft Condensed Matter +1612.02093 Fluid Dynamics +1612.02095 Computer Vision and Pattern Recognition +1612.02096 +1612.02099 Statistics Theory +1612.02100 Metric Geometry +1612.02102 Analysis of PDEs +1612.02105 Algebraic Topology +1612.02106 Logic in Computer Science +1612.02111 Computers and Society +1612.02112 Mathematical Finance +1612.02116 Molecular Networks +1612.02117 Quantum Algebra +1612.02119 Optics +1612.02122 Optics +1612.02125 Functional Analysis +1612.02126 Information Theory +1612.02127 Optics +1612.02128 Information Theory +1612.02129 +1612.02132 Group Theory +1612.02133 Optimization and Control +1612.02135 Robotics +1612.02138 Statistical Mechanics +1612.02140 Instrumentation and Detectors +1612.02141 Computer Vision and Pattern Recognition +1612.02142 Logic +1612.02143 Mesoscale and Nanoscale Physics +1612.02144 Geometric Topology +1612.02145 Information Theory +1612.02147 Solar and Stellar Astrophysics +1612.02148 Probability +1612.02149 Computational Geometry +1612.02151 Phenomenology +1612.02153 Numerical Analysis +1612.02154 Algebraic Geometry +1612.02155 Computer Vision and Pattern Recognition +1612.02156 Combinatorics +1612.02158 Combinatorics +1612.02159 Algebraic Topology +1612.02160 Combinatorics +1612.02161 Artificial Intelligence +1612.02162 Dynamical Systems +1612.02164 +1612.02165 Logic +1612.02169 Strongly Correlated Electrons +1612.02172 Human-Computer Interaction +1612.02174 Information Theory +1612.02175 Information Theory +1612.02177 Computer Vision and Pattern Recognition +1612.02179 Machine Learning +1612.02183 Computer Vision and Pattern Recognition +1612.02185 Group Theory +1612.02186 Instrumentation and Methods for Astrophysics +1612.02188 +1612.02189 Applications +1612.02190 Computer Vision and Pattern Recognition +1612.02192 Machine Learning +1612.02195 Methodology +1612.02197 Complex Variables +1612.02200 Instrumentation and Detectors +1612.02201 Rings and Algebras +1612.02203 Computer Vision and Pattern Recognition +1612.02205 Symplectic Geometry +1612.02207 High Energy Astrophysical Phenomena +1612.02208 Numerical Analysis +1612.02209 Plasma Physics +1612.02211 +1612.02212 Theory +1612.02213 Information Theory +1612.02214 Plasma Physics +1612.02215 Solar and Stellar Astrophysics +1612.02216 Group Theory +1612.02218 Computer Vision and Pattern Recognition +1612.02219 Computer Vision and Pattern Recognition +1612.02220 Complex Variables +1612.02221 Statistical Mechanics +1612.02222 Learning +1612.02223 Computer Vision and Pattern Recognition +1612.02225 Phenomenology +1612.02228 Instrumentation and Detectors +1612.02229 Probability +1612.02230 Analysis of PDEs +1612.02231 Earth and Planetary Astrophysics +1612.02233 Neural and Evolutionary Computing +1612.02234 Combinatorics +1612.02235 Materials Science +1612.02238 Strongly Correlated Electrons +1612.02240 Theory +1612.02241 Algebraic Geometry +1612.02243 Neurons and Cognition +1612.02245 Statistical Mechanics +1612.02246 Mesoscale and Nanoscale Physics +1612.02247 Functional Analysis +1612.02250 High Energy Astrophysical Phenomena +1612.02252 Other Statistics +1612.02254 Algebraic Topology +1612.02255 Artificial Intelligence +1612.02257 Classical Analysis and ODEs +1612.02258 +1612.02259 +1612.02261 Computational Geometry +1612.02262 High Energy Astrophysical Phenomena +1612.02263 Mesoscale and Nanoscale Physics +1612.02265 Lattice +1612.02269 Phenomenology +1612.02272 Chaotic Dynamics +1612.02275 Materials Science +1612.02281 General Physics +1612.02283 Optimization and Control +1612.02286 Analysis of PDEs +1612.02290 Spectral Theory +1612.02297 Computer Vision and Pattern Recognition +1612.02299 Quantum Gases +1612.02300 Methodology +1612.02301 Analysis of PDEs +1612.02302 Analysis of PDEs +1612.02303 +1612.02305 Computational Physics +1612.02307 Networking and Internet Architecture +1612.02308 Rings and Algebras +1612.02310 Artificial Intelligence +1612.02312 Pricing of Securities +1612.02313 Superconductivity +1612.02314 Human-Computer Interaction +1612.02315 Statistics Theory +1612.02316 High Energy Astrophysical Phenomena +1612.02317 Optimization and Control +1612.02320 Information Theory +1612.02321 Probability +1612.02322 Complex Variables +1612.02323 General Physics +1612.02324 Physics and Society +1612.02325 General Physics +1612.02328 Optics +1612.02329 General Physics +1612.02331 High Energy Astrophysical Phenomena +1612.02333 +1612.02335 Computer Vision and Pattern Recognition +1612.02336 Neural and Evolutionary Computing +1612.02337 Lattice +1612.02339 Space Physics +1612.02340 +1612.02342 Probability +1612.02344 Optimization and Control +1612.02345 Cell Behavior +1612.02346 Logic in Computer Science +1612.02348 Solar and Stellar Astrophysics +1612.02349 Group Theory +1612.02352 Optimization and Control +1612.02354 +1612.02356 Dynamical Systems +1612.02357 Computation +1612.02360 Materials Science +1612.02361 Combinatorics +1612.02362 Materials Science +1612.02363 Theory +1612.02364 Lattice +1612.02365 Quantum Gases +1612.02366 Astrophysics of Galaxies +1612.02367 Probability +1612.02368 Numerical Analysis +1612.02369 Numerical Analysis +1612.02372 Computer Vision and Pattern Recognition +1612.02374 Computer Vision and Pattern Recognition +1612.02375 Networking and Internet Architecture +1612.02377 Social and Information Networks +1612.02378 +1612.02380 Statistical Mechanics +1612.02381 Representation Theory +1612.02382 Applications +1612.02383 Analysis of PDEs +1612.02384 Data Structures and Algorithms +1612.02385 Probability +1612.02388 Analysis of PDEs +1612.02389 Probability +1612.02390 +1612.02391 Statistics Theory +1612.02393 Optimization and Control +1612.02395 Instrumentation and Methods for Astrophysics +1612.02399 Theory +1612.02401 Computer Vision and Pattern Recognition +1612.02402 Algebraic Geometry +1612.02403 Experiment +1612.02404 Operator Algebras +1612.02405 Methodology +1612.02406 Differential Geometry +1612.02407 Probability +1612.02409 Mesoscale and Nanoscale Physics +1612.02410 Spectral Theory +1612.02412 Metric Geometry +1612.02413 Optics +1612.02414 Earth and Planetary Astrophysics +1612.02415 Algebraic Geometry +1612.02416 Methodology +1612.02417 Numerical Analysis +1612.02421 Optics +1612.02422 Soft Condensed Matter +0807.3054 Representation Theory +0901.4086 Geometric Topology +0912.3082 Algebraic Topology +1010.2408 General Physics +1101.4304 Algebraic Geometry +1207.4774 Fluid Dynamics +1209.0594 Complex Variables +1209.0634 Geometric Topology +1211.0076 Algebraic Topology +1211.5703 Complex Variables +1212.5015 Differential Geometry +1301.5430 Algebraic Geometry +1302.1816 Algebraic Topology +1303.0573 Statistical Mechanics +1305.0944 Quantum Algebra +1306.6272 Algebraic Topology +1307.1858 Representation Theory +1309.1326 Differential Geometry +1310.6684 Algebraic Geometry +1401.1516 Geometric Topology +1402.0162 Phenomenology +1402.0768 Phenomenology +1402.2531 Networking and Internet Architecture +1402.4073 Databases +1403.0983 Group Theory +1403.3148 Social and Information Networks +1404.0577 Algebraic Geometry +1406.2180 Computers and Society +1406.2714 Combinatorics +1407.1340 Geometric Topology +1407.6840 Quantum Algebra +1408.6775 Analysis of PDEs +1409.3649 Dynamical Systems +1409.6748 Algebraic Topology +1409.7195 Computer Science and Game Theory +1409.8643 Algebraic Topology +1410.5584 Statistical Mechanics +1410.7115 Geometric Topology +1410.7733 +1411.2497 Methodology +1411.3360 Lattice +1411.3686 Statistics Theory +1411.4066 Logic +1411.4668 Algebraic Topology +1412.1714 Metric Geometry +1412.2331 Geometric Topology +1412.4584 Optics +1412.6031 Algebraic Topology +1412.8054 Optimization and Control +1501.00156 +1501.02079 Complex Variables +1501.03919 Optimization and Control +1502.01652 Algebraic Topology +1502.03128 Algebraic Topology +1502.05756 Quantum Algebra +1503.04950 Atomic Physics +1503.08273 Probability +1503.08790 Combinatorics +1504.00825 Performance +1504.01708 Computer Science and Game Theory +1504.03313 Complex Variables +1504.03947 Software Engineering +1504.06104 Dynamical Systems +1505.06483 Methodology +1505.06728 Group Theory +1506.01592 Materials Science +1506.02705 Atomic Physics +1506.03516 Geometric Topology +1506.05322 Disordered Systems and Neural Networks +1508.00267 Number Theory +1508.01546 Strongly Correlated Electrons +1508.02185 +1508.02278 Probability +1508.02282 Probability +1508.03518 Functional Analysis +1508.06394 Number Theory +1508.06736 +1509.01783 Probability +1509.04846 Combinatorics +1510.01283 Algebraic Topology +1510.02050 High Energy Astrophysical Phenomena +1510.02452 Representation Theory +1510.05561 Risk Management +1510.05679 Logic +1510.06923 Differential Geometry +1511.02661 High Energy Astrophysical Phenomena +1511.02851 History and Overview +1511.03120 Applications +1511.03816 Learning +1511.04892 Computational Engineering, Finance, and Science +1511.04978 Geometric Topology +1511.06810 Geometric Topology +1512.00261 Strongly Correlated Electrons +1512.03701 Mesoscale and Nanoscale Physics +1512.07019 Cryptography and Security +1512.07248 Information Theory +1512.09331 Fluid Dynamics +1601.02567 Atomic Physics +1601.05991 Computation and Language +1602.02701 Machine Learning +1602.03501 Category Theory +1602.03829 Differential Geometry +1602.04262 Representation Theory +1602.05657 Computational Complexity +1602.07266 Genomics +1602.08367 Differential Geometry +1603.00349 Optimization and Control +1603.00389 Machine Learning +1603.00601 Combinatorics +1603.02275 Strongly Correlated Electrons +1603.03039 +1603.05609 Computational Geometry +1603.06391 Analysis of PDEs +1603.08794 Quantum Gases +1603.08847 Materials Science +1603.08883 Physics and Society +1603.08950 Optics +1603.09638 Cryptography and Security +1604.00073 Physics and Society +1604.02023 Strongly Correlated Electrons +1604.02070 High Energy Astrophysical Phenomena +1604.02119 +1604.02314 Quantum Gases +1604.02607 Logic +1604.02911 Operator Algebras +1604.02955 +1604.03757 Information Retrieval +1604.04383 Sound +1604.06048 Theory +1604.06354 Theory +1604.07081 +1604.07957 Information Theory +1605.00937 Machine Learning +1605.02429 Numerical Analysis +1605.03268 Optics +1605.04689 Superconductivity +1605.04954 Phenomenology +1605.05421 Combinatorics +1605.08384 +1605.09110 Theory +1605.09461 Combinatorics +1605.09613 Operator Algebras +1606.00203 Emerging Technologies +1606.02558 Phenomenology +1606.03088 Mesoscale and Nanoscale Physics +1606.04034 Probability +1606.05721 +1606.06618 Probability +1606.06627 +1606.06686 Phenomenology +1606.06856 Accelerator Physics +1606.07551 Combinatorics +1606.08093 Mesoscale and Nanoscale Physics +1606.08897 Operator Algebras +1606.09297 Materials Science +1607.00926 +1607.01041 Mesoscale and Nanoscale Physics +1607.01126 +1607.01528 +1607.01707 Strongly Correlated Electrons +1607.02810 Computation and Language +1607.03205 General Finance +1607.03547 Computer Vision and Pattern Recognition +1607.04479 Chemical Physics +1607.05233 Theory +1607.05619 Materials Science +1607.05656 Theory +1607.06137 Mesoscale and Nanoscale Physics +1607.06376 +1607.07360 Soft Condensed Matter +1607.08037 Complex Variables +1608.00415 Phenomenology +1608.00932 Cosmology and Nongalactic Astrophysics +1608.01183 Rings and Algebras +1608.01610 Phenomenology +1608.01613 Theory +1608.01645 Strongly Correlated Electrons +1608.01862 Mesoscale and Nanoscale Physics +1608.02537 Phenomenology +1608.03888 Astrophysics of Galaxies +1608.04416 Chaotic Dynamics +1608.04656 Phenomenology +1608.04805 +1608.04946 Phenomenology +1608.06003 Strongly Correlated Electrons +1608.06266 Phenomenology +1608.06818 Theory +1608.07822 Mesoscale and Nanoscale Physics +1608.07860 Functional Analysis +1608.08699 Numerical Analysis +1608.08907 Information Theory +1608.08920 Information Theory +1608.09016 +1609.00010 Astrophysics of Galaxies +1609.00399 Phenomenology +1609.00520 Populations and Evolution +1609.01060 Astrophysics of Galaxies +1609.02233 Functional Analysis +1609.02556 Cosmology and Nongalactic Astrophysics +1609.02821 Mesoscale and Nanoscale Physics +1609.04136 Populations and Evolution +1609.04566 Physics and Society +1609.04673 +1609.04753 Mesoscale and Nanoscale Physics +1609.06821 Statistics Theory +1609.08557 Solar and Stellar Astrophysics +1609.08604 +1609.09210 Theory +1610.00023 Numerical Analysis +1610.00878 Logic +1610.01375 Physics and Society +1610.01719 Theory +1610.03912 Differential Geometry +1610.04686 Optimization and Control +1610.06041 +1610.06521 Combinatorics +1610.07032 Functional Analysis +1610.07460 Phenomenology +1610.07495 Commutative Algebra +1610.08338 Optics +1610.09215 Information Theory +1610.09311 Atomic Physics +1610.09948 Theory +1611.00094 Artificial Intelligence +1611.00213 Instrumentation and Detectors +1611.00308 +1611.00456 Social and Information Networks +1611.00580 Logic in Computer Science +1611.01126 Mesoscale and Nanoscale Physics +1611.01292 High Energy Astrophysical Phenomena +1611.01712 Analysis of PDEs +1611.02150 Chemical Physics +1611.02639 Learning +1611.02817 Soft Condensed Matter +1611.03208 Theory +1611.03577 Complex Variables +1611.03754 Computational Physics +1611.03850 Symplectic Geometry +1611.03898 Learning +1611.03969 Computation +1611.03978 Dynamical Systems +1611.04035 Artificial Intelligence +1611.04047 +1611.04051 Machine Learning +1611.04061 Social and Information Networks +1611.04100 Data Structures and Algorithms +1611.04149 Machine Learning +1611.04202 Biological Physics +1611.04203 Information Theory +1611.04208 Machine Learning +1611.04215 Computer Vision and Pattern Recognition +1611.04218 Machine Learning +1611.04293 History and Overview +1611.04324 Discrete Mathematics +1611.04338 Phenomenology +1611.04358 Computation and Language +1611.04369 Artificial Intelligence +1611.04374 Chemical Physics +1611.04389 Dynamical Systems +1611.04393 Neurons and Cognition +1611.04415 Numerical Analysis +1611.04416 Computation +1611.04424 +1611.04427 +1611.04482 Cryptography and Security +1611.04499 Machine Learning +1611.04561 Machine Learning +1611.04582 +1611.04585 Atomic Physics +1611.04586 +1611.04588 Theory +1611.04589 Cosmology and Nongalactic Astrophysics +1611.04591 Quantum Gases +1611.04592 Theory +1611.04601 High Energy Astrophysical Phenomena +1611.04602 Cosmology and Nongalactic Astrophysics +1611.04604 +1611.04611 Combinatorics +1611.04613 Optimization and Control +1611.04617 Theory +1611.04618 +1611.04619 Methodology +1611.04621 Strongly Correlated Electrons +1611.04623 Functional Analysis +1611.04625 Combinatorics +1611.04628 Statistical Mechanics +1611.04629 Numerical Analysis +1611.04630 Operator Algebras +1611.04632 Mesoscale and Nanoscale Physics +1611.04633 Instrumentation and Methods for Astrophysics +1611.04634 Quantitative Methods +1611.04636 Artificial Intelligence +1611.04637 Accelerator Physics +1611.04638 Methodology +1611.04639 Digital Libraries +1611.04641 Mesoscale and Nanoscale Physics +1611.04642 Artificial Intelligence +1611.04644 Algebraic Geometry +1611.04645 Information Theory +1611.04648 Robotics +1611.04651 High Energy Astrophysical Phenomena +1611.04652 Instrumentation and Detectors +1611.04653 Systems and Control +1611.04654 Social and Information Networks +1611.04655 Computer Vision and Pattern Recognition +1611.04656 Differential Geometry +1611.04660 Artificial Intelligence +1611.04662 Optics +1611.04665 Emerging Technologies +1611.04666 Information Retrieval +1611.04669 Experiment +1611.04671 Astrophysics of Galaxies +1611.04672 Rings and Algebras +1611.04673 Logic +1611.04674 Mesoscale and Nanoscale Physics +1611.04676 Algebraic Topology +1611.04677 Chemical Physics +1611.04679 Phenomenology +1611.04681 Differential Geometry +1611.04682 Optics +1611.04684 Computation and Language +1611.04686 Learning +1611.04688 Materials Science +1611.04690 Differential Geometry +1611.04691 +1611.04692 Classical Analysis and ODEs +1611.04694 Superconductivity +1611.04695 Complex Variables +1611.04696 Applications +1611.04697 Statistical Mechanics +1611.04700 Combinatorics +1611.04703 Optics +1611.04704 Information Theory +1611.04706 Robotics +1611.04707 Operator Algebras +1611.04709 Machine Learning +1611.04711 Symplectic Geometry +1611.04712 Combinatorics +1611.04716 Analysis of PDEs +1611.04718 Optimization and Control +1611.04720 Probability +1611.04724 Analysis of PDEs +1611.04725 Analysis of PDEs +1611.04728 Astrophysics of Galaxies +1611.04732 Commutative Algebra +1611.04734 Optics +1611.04735 Materials Science +1611.04737 Materials Science +1611.04738 Geometric Topology +1611.04740 Logic +1611.04744 Cell Behavior +1611.04745 +1611.04747 Subcellular Processes +1611.04750 Numerical Analysis +1611.04752 Superconductivity +1611.04753 Algebraic Geometry +1611.04754 Number Theory +1611.04755 Dynamical Systems +1611.04758 Neurons and Cognition +1611.04760 Digital Libraries +1611.04762 Optimization and Control +1611.04763 Materials Science +1611.04764 Plasma Physics +1611.04765 Statistics Theory +1611.04766 Neural and Evolutionary Computing +1611.04767 Neural and Evolutionary Computing +1611.04768 Phenomenology +1611.04770 Mesoscale and Nanoscale Physics +1611.04771 Analysis of PDEs +1611.04772 +1611.04773 Theory +1611.04774 Materials Science +1611.04775 +1611.04777 +1611.04778 Accelerator Physics +1611.04782 Computer Vision and Pattern Recognition +1611.04783 Neurons and Cognition +1611.04784 Data Structures and Algorithms +1611.04785 Phenomenology +1611.04786 Cryptography and Security +1611.04787 Optimization and Control +1611.04789 Lattice +1611.04790 Machine Learning +1611.04792 Numerical Analysis +1611.04794 Neurons and Cognition +1611.04795 Instrumentation and Methods for Astrophysics +1611.04796 Representation Theory +1611.04798 Computation and Language +1611.04799 Strongly Correlated Electrons +1611.04805 +1611.04806 Earth and Planetary Astrophysics +1611.04807 Dynamical Systems +1611.04808 Methodology +1611.04809 Logic +1611.04810 Social and Information Networks +1611.04812 Populations and Evolution +1611.04814 Statistical Mechanics +1611.04815 +1611.04816 Chemical Physics +1611.04817 Phenomenology +1611.04818 Physics and Society +1611.04819 Probability +1611.04821 Networking and Internet Architecture +1611.04822 Computation and Language +1611.04823 Analysis of PDEs +1611.04824 Phenomenology +1611.04825 Networking and Internet Architecture +1611.04826 Earth and Planetary Astrophysics +1611.04827 Phenomenology +1611.04829 Fluid Dynamics +1611.04833 Human-Computer Interaction +1611.04834 Information Theory +1611.04835 Computer Vision and Pattern Recognition +1611.04836 Atomic Physics +1611.04837 Computation and Language +1611.04838 Software Engineering +1611.04839 Number Theory +1611.04840 Phenomenology +1611.04842 Neurons and Cognition +1611.04845 Artificial Intelligence +1611.04846 Information Theory +1611.04848 Phenomenology +1611.04850 Computer Vision and Pattern Recognition +1611.04851 Risk Management +1611.04852 Experiment +1611.04853 Information Theory +1611.04855 General Physics +1611.04856 Number Theory +1611.04858 General Physics +1611.04861 Social and Information Networks +1611.04864 Experiment +1611.04865 Mesoscale and Nanoscale Physics +1611.04869 Probability +1611.04870 Computer Vision and Pattern Recognition +1611.04872 Neurons and Cognition +1611.04874 Probability +1611.04877 Portfolio Management +1611.04881 Optics +1611.04883 Theory +1611.04884 Numerical Analysis +1611.04885 Probability +1611.04886 Chemical Physics +1611.04887 Computation and Language +1611.04891 Astrophysics of Galaxies +1611.04892 Mesoscale and Nanoscale Physics +1611.04893 Superconductivity +1611.04894 Functional Analysis +1611.04896 Analysis of PDEs +1611.04897 Complex Variables +1611.04898 Plasma Physics +1611.04899 Computer Vision and Pattern Recognition +1611.04901 Cosmology and Nongalactic Astrophysics +1611.04902 Differential Geometry +1611.04903 Dynamical Systems +1611.04905 Computer Vision and Pattern Recognition +1611.04906 Differential Geometry +1611.04907 Statistics Theory +1611.04908 Methodology +1611.04909 +1611.04912 Probability +1611.04913 Methodology +1611.04914 +1611.04916 Functional Analysis +1611.04917 Solar and Stellar Astrophysics +1611.04919 Solar and Stellar Astrophysics +1611.04921 Probability +1611.04922 Solar and Stellar Astrophysics +1611.04923 Materials Science +1611.04924 Learning +1611.04925 Accelerator Physics +1611.04927 Theory +1611.04929 Numerical Analysis +1611.04931 Other Computer Science +1611.04933 Other Condensed Matter +1611.04934 Distributed, Parallel, and Cluster Computing +1611.04935 Theory +1611.04936 Solar and Stellar Astrophysics +1611.04937 Representation Theory +1611.04939 Numerical Analysis +1611.04940 Algebraic Geometry +1611.04942 Data Structures and Algorithms +1611.04943 Mesoscale and Nanoscale Physics +1611.04946 Logic in Computer Science +1611.04947 Sound +1611.04948 Soft Condensed Matter +1611.04949 Phenomenology +1611.04950 Numerical Analysis +1611.04951 Cosmology and Nongalactic Astrophysics +1611.04955 Materials Science +1611.04956 Combinatorics +1611.04959 Instrumentation and Detectors +1611.04960 Probability +1611.04961 Mesoscale and Nanoscale Physics +1611.04964 Experiment +1611.04965 Instrumentation and Methods for Astrophysics +1611.04966 Lattice +1611.04967 Learning +1611.04969 Artificial Intelligence +1611.04971 +1611.04974 Dynamical Systems +1611.04976 Software Engineering +1611.04977 Databases +1611.04978 Theory +1611.04979 Experiment +1611.04981 Chemical Physics +1611.04983 Statistical Mechanics +1611.04984 Mesoscale and Nanoscale Physics +1611.04986 +1611.04988 Data Structures and Algorithms +1611.04990 Differential Geometry +1611.04991 Fluid Dynamics +1611.04992 Accelerator Physics +1611.04993 Rings and Algebras +1611.04994 Computer Vision and Pattern Recognition +1611.04996 Instrumentation and Detectors +1611.04997 Theory +1611.04998 General Topology +1611.04999 Data Structures and Algorithms +1611.05001 Numerical Analysis +1611.05003 Computer Vision and Pattern Recognition +1611.05005 Group Theory +1611.05007 Cosmology and Nongalactic Astrophysics +1611.05008 Computer Vision and Pattern Recognition +1611.05010 Machine Learning +1611.05011 Computer Science and Game Theory +1611.05012 Optimization and Control +1611.05013 Learning +1611.05014 Computer Science and Game Theory +1611.05015 Information Theory +1611.05020 +1611.05025 Chemical Physics +1611.05027 High Energy Astrophysical Phenomena +1611.05029 Differential Geometry +math/0606540 Differential Geometry +0708.2549 Differential Geometry +0806.4708 Differential Geometry +0905.0515 Geometric Topology +0907.3441 Biomolecules +0910.4274 Statistical Mechanics +1001.2721 Number Theory +1001.3369 Number Theory +1104.3299 Algebraic Geometry +1109.2065 Group Theory +1203.3186 Operator Algebras +1302.5478 Quantum Algebra +1304.6283 Materials Science +1307.0408 Materials Science +1307.1885 Logic +1307.3543 Combinatorics +1307.6702 Networking and Internet Architecture +1308.3814 Optimization and Control +1311.6505 Distributed, Parallel, and Cluster Computing +1312.2333 Numerical Analysis +1312.4061 Mesoscale and Nanoscale Physics +1312.5127 Quantum Algebra +1312.6290 +1402.6185 Optimization and Control +1402.6641 Number Theory +1403.2203 Geometric Topology +1403.4112 Numerical Analysis +1404.4113 Spectral Theory +1405.5505 Machine Learning +1405.6247 Theory +1405.7438 Commutative Algebra +1405.7786 Numerical Analysis +1406.0445 Functional Analysis +1406.3168 Number Theory +1406.4290 Theory +1407.0524 Information Theory +1407.3580 Probability +1407.3611 Atomic Physics +1407.3625 Statistics Theory +1407.4296 Numerical Analysis +1407.6354 Theory +1408.2107 Metric Geometry +1408.2554 Logic +1408.5358 Algebraic Geometry +1409.3013 Probability +1409.5059 Logic +1410.1321 Differential Geometry +1410.3956 Strongly Correlated Electrons +1410.4620 Quantitative Methods +1410.7658 Theory +1410.7772 High Energy Astrophysical Phenomena +1411.0526 Algebraic Geometry +1411.0577 Operator Algebras +1411.0614 Pattern Formation and Solitons +1411.3468 Number Theory +1411.4856 Representation Theory +1411.6092 Statistical Mechanics +1411.7636 Logic +1501.00472 History and Overview +1501.02235 Algebraic Geometry +1501.05135 Probability +1501.05774 Materials Science +1501.07888 Symplectic Geometry +1502.00670 Functional Analysis +1503.01454 Probability +1503.07113 +1503.08408 Mesoscale and Nanoscale Physics +1504.00245 Differential Geometry +1504.00882 +1504.04990 Operator Algebras +1504.05173 Algebraic Geometry +1504.05291 Phenomenology +1505.00437 Computer Science and Game Theory +1505.00637 Phenomenology +1505.00777 High Energy Astrophysical Phenomena +1505.03328 Number Theory +1505.03420 Analysis of PDEs +1505.07684 Applications +1506.00314 Quantum Algebra +1506.01802 Instrumentation and Detectors +1506.02177 Number Theory +1506.02898 Strongly Correlated Electrons +1506.03869 Representation Theory +1506.04360 Strongly Correlated Electrons +1506.06596 Cosmology and Nongalactic Astrophysics +1506.07154 Mesoscale and Nanoscale Physics +1506.07577 Graphics +1506.08357 Algebraic Geometry +1507.01107 Soft Condensed Matter +1507.01360 Analysis of PDEs +1507.01726 Physics and Society +1507.02099 Digital Libraries +1507.02842 Representation Theory +1507.06595 +1507.07266 Statistical Mechanics +1507.07275 Materials Science +1507.07334 Geophysics +1507.07511 Atomic Physics +1507.08187 Software Engineering +1507.08515 Accelerator Physics +1507.08519 Optics +1508.00136 Combinatorics +1508.01162 Superconductivity +1508.02321 +1508.02632 Accelerator Physics +1508.04004 Mesoscale and Nanoscale Physics +1508.04629 +1508.05635 +1508.05763 Earth and Planetary Astrophysics +1508.06163 Computer Vision and Pattern Recognition +1508.07519 Analysis of PDEs +1508.07787 Mesoscale and Nanoscale Physics +1509.01077 +1509.02797 Algebraic Geometry +1509.03722 Algebraic Geometry +1509.04673 +1509.06624 +1509.06669 Numerical Analysis +1509.07191 Superconductivity +1509.08124 Methodology +1509.08284 Algebraic Geometry +1510.01389 Superconductivity +1510.01895 Quantum Gases +1510.03104 Information Theory +1510.03288 Theory +1510.03473 Statistical Mechanics +1510.04856 Phenomenology +1510.07484 Representation Theory +1510.07515 High Energy Astrophysical Phenomena +1510.07823 Materials Science +1510.07947 Atomic Physics +1510.08238 Instrumentation and Detectors +1511.00356 Strongly Correlated Electrons +1511.00603 +1511.01026 Optimization and Control +1511.01526 Optics +1511.01626 Theory +1511.03135 Statistical Mechanics +1511.03438 Dynamical Systems +1511.04009 +1511.04102 Strongly Correlated Electrons +1511.05176 Learning +1511.05634 Disordered Systems and Neural Networks +1511.05917 Numerical Analysis +1511.05952 Learning +1511.06306 Learning +1511.06608 Mesoscale and Nanoscale Physics +1511.07217 Probability +1511.08578 Number Theory +1512.00593 Cosmology and Nongalactic Astrophysics +1512.01335 Combinatorics +1512.02383 +1512.04067 Quantum Gases +1512.04314 Materials Science +1512.05050 Cosmology and Nongalactic Astrophysics +1512.08370 Optimization and Control +1512.08923 Theory +1601.00113 +1601.00687 Materials Science +1601.00807 Mesoscale and Nanoscale Physics +1601.01684 Mesoscale and Nanoscale Physics +1601.03034 Combinatorics +1601.03796 +1601.03999 Combinatorics +1601.04995 Accelerator Physics +1601.05129 Numerical Analysis +1601.06421 Information Theory +1601.06779 Operator Algebras +1601.07916 Fluid Dynamics +1602.00377 Networking and Internet Architecture +1602.00587 Neurons and Cognition +1602.01701 +1602.03797 +1602.03849 Probability +1602.04611 Mesoscale and Nanoscale Physics +1602.04659 Astrophysics of Galaxies +1602.06064 Computation and Language +1602.06075 Numerical Analysis +1602.06312 Classical Analysis and ODEs +1602.06409 +1602.06486 Classical Analysis and ODEs +1602.06495 Phenomenology +1602.06536 +1602.06678 Human-Computer Interaction +1602.06844 Databases +1602.06919 Analysis of PDEs +1602.06977 Human-Computer Interaction +1602.07206 +1602.07462 Logic +1602.07477 High Energy Astrophysical Phenomena +1602.07486 Logic in Computer Science +1602.07498 +1602.07507 Learning +1602.07531 Metric Geometry +1602.07608 Logic +1602.07646 General Literature +1602.07680 Physics Education +1602.07681 Chemical Physics +1602.07682 Complex Variables +1602.07686 Physics Education +1602.07692 High Energy Astrophysical Phenomena +1602.07706 Theory +1602.07708 Phenomenology +1602.07709 Instrumentation and Methods for Astrophysics +1602.07715 Formal Languages and Automata Theory +1602.07720 Computer Science and Game Theory +1602.07721 Artificial Intelligence +1602.07723 +1602.07724 Differential Geometry +1602.07725 Physics Education +1602.07732 Networking and Internet Architecture +1602.07733 Optimization and Control +1602.07734 Combinatorics +1602.07735 Mesoscale and Nanoscale Physics +1602.07736 Systems and Control +1602.07738 High Energy Astrophysical Phenomena +1602.07740 Physics Education +1602.07741 Solar and Stellar Astrophysics +1602.07744 Instrumentation and Methods for Astrophysics +1602.07745 Social and Information Networks +1602.07746 Physics Education +1602.07747 Materials Science +1602.07749 Computation and Language +1602.07750 Data Structures and Algorithms +1602.07751 Probability +1602.07755 Numerical Analysis +1602.07756 Physics Education +1602.07758 Subcellular Processes +1602.07759 Rings and Algebras +1602.07760 Optimization and Control +1602.07766 High Energy Astrophysical Phenomena +1602.07767 Sound +1602.07768 Optimization and Control +1602.07775 Geometric Topology +1602.07777 +1602.07781 Social and Information Networks +1602.07786 +1602.07787 Cryptography and Security +1602.07793 Strongly Correlated Electrons +1602.07794 Combinatorics +1602.07797 Lattice +1602.07799 Information Retrieval +1602.07802 Optimization and Control +1602.07803 Computation and Language +1602.07808 Networking and Internet Architecture +1602.07809 Metric Geometry +1602.07810 Computers and Society +1602.07812 Analysis of PDEs +1602.07813 Computers and Society +1602.07824 Differential Geometry +1602.07825 Optimization and Control +1602.07826 Materials Science +1602.07828 Logic +1602.07830 Classical Analysis and ODEs +1602.07834 Computational Physics +1602.07837 +1602.07838 Software Engineering +1602.07839 Combinatorics +1602.07840 Atomic Physics +1602.07841 Solar and Stellar Astrophysics +1602.07845 +1602.07847 Representation Theory +1602.07851 Computational Engineering, Finance, and Science +1602.07855 Geometric Topology +1602.07858 Number Theory +1602.07859 Information Theory +1602.07860 Artificial Intelligence +1602.07862 Complex Variables +1602.07863 Machine Learning +1602.07865 Machine Learning +1602.07872 Optimization and Control +1602.07873 Computer Vision and Pattern Recognition +1602.07876 Data Structures and Algorithms +1602.07881 Geophysics +1602.07884 Neural and Evolutionary Computing +1602.07886 Analysis of PDEs +1602.07888 Analysis of PDEs +1602.07897 Group Theory +1602.07899 Strongly Correlated Electrons +1602.07901 Logic +1602.07902 Computational Physics +1602.07904 Chemical Physics +1602.07921 +1602.07925 Solar and Stellar Astrophysics +1602.07928 Digital Libraries +1602.07929 Number Theory +1602.07935 Superconductivity +1602.07936 Social and Information Networks +1602.07941 Cosmology and Nongalactic Astrophysics +1602.07943 Information Theory +1602.07944 Information Theory +1602.07948 Symplectic Geometry +1602.07950 Mesoscale and Nanoscale Physics +1602.07953 Algebraic Geometry +1602.07955 Information Theory +1602.07956 Quantitative Methods +1602.07957 Biomolecules +1602.07960 Methodology +1602.07961 Dynamical Systems +1602.07964 Cell Behavior +1602.07965 Algebraic Topology +1602.07967 Formal Languages and Automata Theory +1602.07969 Cell Behavior +1602.07974 Chaotic Dynamics +1602.07977 Earth and Planetary Astrophysics +1602.07978 Performance +1602.07982 Theory +1602.07985 Artificial Intelligence +1602.07987 Number Theory +1602.07988 Mesoscale and Nanoscale Physics +1602.07995 Probability +1602.07996 Commutative Algebra +1602.07998 Solar and Stellar Astrophysics +1602.07999 Quantum Algebra +1602.08000 Differential Geometry +1602.08001 Plasma Physics +1602.08007 Neural and Evolutionary Computing +1602.08012 Group Theory +1602.08015 Fluid Dynamics +1602.08016 Analysis of PDEs +1602.08018 Differential Geometry +1602.08019 +1602.08021 Optimization and Control +1602.08022 Discrete Mathematics +1602.08025 Commutative Algebra +1602.08026 Atomic Physics +1602.08029 Representation Theory +1602.08030 Accelerator Physics +1602.08034 Computational Complexity +1602.08040 Phenomenology +1602.08041 Phenomenology +1602.08042 Numerical Analysis +1602.08044 Sound +1602.08051 Quantum Algebra +1602.08052 Solar and Stellar Astrophysics +1602.08058 Superconductivity +1602.08060 Superconductivity +1602.08063 Computer Science and Game Theory +1602.08067 Networking and Internet Architecture +1602.08071 Physics and Society +1602.08078 Materials Science +1602.08079 Biomolecules +1602.08088 Phenomenology +1602.08090 Physics Education +cond-mat/0003510 Statistical Mechanics +cond-mat/0109046 +cond-mat/0109375 +cond-mat/0212430 +cond-mat/0608200 Statistical Mechanics +1504.00427 Social and Information Networks +1504.04447 +1504.05855 Strongly Correlated Electrons +1505.04060 General Finance +1507.05264 Strongly Correlated Electrons +1507.06924 Phenomenology +1508.06886 Methodology +1509.02238 Social and Information Networks +1510.03537 Methodology +1510.04963 Materials Science +1510.05678 +1510.07432 Optics +1611.00356 Computers and Society +1511.00753 High Energy Astrophysical Phenomena +1511.00915 Programming Languages +1511.00955 Astrophysics of Galaxies +1511.01345 +1511.01942 Learning +1511.02001 Applications +1511.02181 Phenomenology +1511.03308 Classical Analysis and ODEs +1511.03647 Earth and Planetary Astrophysics +1511.04414 Instrumentation and Methods for Astrophysics +1511.05483 Computation +1511.06510 Human-Computer Interaction +1511.07522 Solar and Stellar Astrophysics +1511.07584 +1511.07620 Solar and Stellar Astrophysics +1511.07686 +1511.07756 Soft Condensed Matter +1511.07823 Numerical Analysis +1511.07829 Information Theory +1511.07870 Astrophysics of Galaxies +1511.08441 Mesoscale and Nanoscale Physics +1512.00305 Instrumentation and Detectors +1512.01399 Analysis of PDEs +1512.02506 Solar and Stellar Astrophysics +1512.02909 Cryptography and Security +1512.02992 Experiment +1512.03563 Probability +1512.05568 Logic in Computer Science +1512.07366 Experiment +1601.01493 Combinatorics +1601.01794 Instrumentation and Detectors +1601.07853 Functional Analysis +1601.07866 +1602.00228 Strongly Correlated Electrons +1602.02533 Solar and Stellar Astrophysics +1602.02716 Solar and Stellar Astrophysics +1602.03112 Analysis of PDEs +1602.03839 +1602.04643 +1602.05804 Materials Science +1602.06174 Data Structures and Algorithms +1602.06804 Mesoscale and Nanoscale Physics +1602.07016 Statistical Mechanics +1602.07224 Experiment +1602.08064 +1602.08479 Solar and Stellar Astrophysics +1603.00237 Quantum Algebra +1603.00827 Lattice +1603.02312 Spectral Theory +1603.03038 Solar and Stellar Astrophysics +1603.04804 Experiment +1603.06546 Experiment +1603.07157 Chaotic Dynamics +1603.07340 Computational Geometry +1603.07928 Astrophysics of Galaxies +1603.09141 Statistics Theory +1603.09157 Computation +1603.09529 Solar and Stellar Astrophysics +1604.00323 Solar and Stellar Astrophysics +1604.00805 Soft Condensed Matter +1604.01710 Experiment +1604.02057 Solar and Stellar Astrophysics +1604.02374 +1604.05172 Data Structures and Algorithms +1604.07259 Computer Science and Game Theory +1604.07772 Complex Variables +1605.00990 Experiment +1605.01200 Astrophysics of Galaxies +1605.01524 Astrophysics of Galaxies +1605.02454 Atomic Physics +1605.02528 Functional Analysis +1605.02539 Mathematical Finance +1605.02603 Astrophysics of Galaxies +1605.03505 Instrumentation and Detectors +1605.03844 Instrumentation and Detectors +1605.03889 Experiment +1605.03978 Instrumentation and Detectors +1605.04237 Information Theory +1605.04868 Solar and Stellar Astrophysics +1606.01168 Combinatorics +1606.01209 Solar and Stellar Astrophysics +1606.01276 Experiment +1606.04028 +1606.04345 Artificial Intelligence +1606.05404 High Energy Astrophysical Phenomena +1606.06776 Atomic Physics +1606.06890 Quantum Gases +1606.08636 +1606.09265 High Energy Astrophysical Phenomena +1606.09405 Analysis of PDEs +1606.09541 +0804.4823 Differential Geometry +0904.4842 Statistical Mechanics +0906.5552 Mesoscale and Nanoscale Physics +1006.2616 +1010.0861 Differential Geometry +1010.1879 Differential Geometry +1101.4958 High Energy Astrophysical Phenomena +1104.4827 Number Theory +1108.5773 Dynamical Systems +1109.1487 +1110.0257 Astrophysics of Galaxies +1112.2495 Computational Complexity +1201.2690 Probability +1202.6551 +1204.4564 Computational Complexity +1206.1384 Astrophysics of Galaxies +1207.4728 High Energy Astrophysical Phenomena +1301.2911 Analysis of PDEs +1302.0442 Probability +1302.6168 Phenomenology +1304.2573 Algebraic Geometry +1304.7105 +1305.3211 Algebraic Geometry +1307.2082 Phenomenology +1307.2677 Geometric Topology +1308.1024 Materials Science +1308.5832 Rings and Algebras +1309.6983 Mesoscale and Nanoscale Physics +1311.1267 Accelerator Physics +1311.3011 Computation and Language +1312.4390 Materials Science +1401.7685 +1402.2524 Materials Science +1403.5741 Differential Geometry +1403.6255 Statistical Mechanics +1404.4938 Geometric Topology +1405.1417 Astrophysics of Galaxies +1405.5205 +1405.5822 Probability +1405.6342 Probability +1406.3586 Optics +1406.5712 Complex Variables +1406.7392 Algebraic Topology +1406.7730 Logic +1408.1011 Databases +1408.4769 Differential Geometry +1408.5185 Mesoscale and Nanoscale Physics +1409.0421 Cryptography and Security +1409.2149 Probability +1409.4575 Information Theory +1409.5640 Statistics Theory +1410.3698 Instrumentation and Detectors +1410.5500 Algebraic Topology +1411.3759 Number Theory +1411.4350 Number Theory +1412.3061 Fluid Dynamics +1412.3208 Symplectic Geometry +1412.4704 +1501.06435 +1501.07578 Differential Geometry +1502.00680 Trading and Market Microstructure +1502.01799 High Energy Astrophysical Phenomena +1502.04368 Discrete Mathematics +1502.05795 Differential Geometry +1502.06672 Information Theory +1502.07983 Probability +1503.01466 High Energy Astrophysical Phenomena +1503.03008 +1503.06367 Combinatorics +1504.01720 Differential Geometry +1504.02598 Number Theory +1504.02827 Combinatorics +1504.05678 +1504.06896 Applications +1505.00039 Computer Science and Game Theory +1505.00635 Algebraic Geometry +1505.01012 Numerical Analysis +1505.02622 +1505.03421 Networking and Internet Architecture +1505.05293 Metric Geometry +1505.05730 Biomolecules +1505.06682 Operator Algebras +1506.01274 Earth and Planetary Astrophysics +1506.03055 +1506.04636 Analysis of PDEs +1506.06253 Metric Geometry +1506.06861 Probability +1506.07034 Chaotic Dynamics +1506.09122 +1506.09128 Number Theory +1507.01854 Geometric Topology +1507.02878 Optimization and Control +1507.03931 Classical Analysis and ODEs +1507.07381 Combinatorics +1507.07960 Combinatorics +1507.08264 Theory +1507.08397 Differential Geometry +1508.01906 Optimization and Control +1508.02645 Data Analysis, Statistics and Probability +1508.03437 Combinatorics +1508.03570 +1508.04598 Statistical Mechanics +1508.05778 Analysis of PDEs +1508.05975 Statistical Mechanics +1508.06475 Theory +1508.07030 Combinatorics +1508.07523 Number Theory +1509.01085 Mesoscale and Nanoscale Physics +1509.02509 Operator Algebras +1509.03790 Dynamical Systems +1509.06653 Geometric Topology +1510.00040 Numerical Analysis +1510.00358 High Energy Astrophysical Phenomena +1510.00879 Fluid Dynamics +1510.01567 Analysis of PDEs +1510.02704 Probability +1510.02961 Optimization and Control +1510.04237 Geometric Topology +1510.06213 Representation Theory +1510.06291 Geometric Topology +1510.06997 Dynamical Systems +1510.07139 Combinatorics +1510.07140 Combinatorics +1510.07231 Analysis of PDEs +1511.00090 +1511.02495 Solar and Stellar Astrophysics +1511.02712 Statistical Mechanics +1511.05124 +1511.05784 Superconductivity +1511.06553 +1511.07568 Information Theory +1511.07853 Phenomenology +1511.08201 Theory +1512.00570 Learning +1512.01889 +1512.02286 Plasma Physics +1512.02892 +1512.02929 Probability +1512.03528 Algebraic Topology +1512.03987 Statistics Theory +1512.04137 Number Theory +1512.05522 Plasma Physics +1512.05838 Analysis of PDEs +1512.06718 +1512.07137 +1601.01378 +1601.01902 Probability +1601.04107 Materials Science +1601.04409 +1601.05964 Operator Algebras +1602.01802 Soft Condensed Matter +1602.01814 Mesoscale and Nanoscale Physics +1602.03448 Combinatorics +1602.04318 Analysis of PDEs +1602.04405 Representation Theory +1602.05045 Computer Science and Game Theory +1602.06298 Mesoscale and Nanoscale Physics +1602.07357 Fluid Dynamics +1602.08226 Numerical Analysis +1602.09138 +1603.00189 Representation Theory +1603.00667 Chaotic Dynamics +1603.00678 Theory +1603.00907 Probability +1603.03115 Medical Physics +1603.03433 Mesoscale and Nanoscale Physics +1603.04059 Group Theory +1603.04091 Dynamical Systems +1603.04780 Systems and Control +1603.05237 Probability +1603.05412 Optimization and Control +1603.06505 +1603.07167 Dynamical Systems +1603.08069 Chemical Physics +1603.09265 Analysis of PDEs +1603.09459 Instrumentation and Detectors +1603.09669 Instrumentation and Detectors +1604.00231 Materials Science +1604.00534 Mesoscale and Nanoscale Physics +1604.00951 Popular Physics +1604.01904 Computation and Language +1604.01980 Computer Vision and Pattern Recognition +1604.02561 Mesoscale and Nanoscale Physics +1604.02810 Numerical Analysis +1604.03118 +1604.03807 +1604.04440 Mesoscale and Nanoscale Physics +1604.05301 +1604.05926 +1604.06234 Instrumentation and Detectors +1604.06503 Logic in Computer Science +1604.07309 Logic +1604.07672 History and Philosophy of Physics +1604.07711 Machine Learning +1604.08516 Sound +1605.00655 Disordered Systems and Neural Networks +1605.00717 Algebraic Geometry +1605.01610 Analysis of PDEs +1605.01700 +1605.01850 Representation Theory +1605.02483 Cosmology and Nongalactic Astrophysics +1605.02931 Probability +1605.04273 Superconductivity +1605.05028 Solar and Stellar Astrophysics +1605.05871 Materials Science +1605.05933 Statistics Theory +1605.06017 Differential Geometry +1605.06419 +1605.06422 Learning +1605.06772 Phenomenology +1605.06875 Mesoscale and Nanoscale Physics +1605.07844 Information Retrieval +1605.08206 Analysis of PDEs +1605.08462 Optimization and Control +1605.08529 +1606.00015 Quantum Gases +1606.00221 Functional Analysis +1606.00343 Classical Analysis and ODEs +1606.00871 Analysis of PDEs +1606.01437 Probability +1606.02002 Representation Theory +1606.02079 +1606.02729 Astrophysics of Galaxies +1606.03110 Analysis of PDEs +1606.03457 Theory +1606.03579 Number Theory +1606.04121 Differential Geometry +1606.04190 Artificial Intelligence +1606.04557 Superconductivity +1606.05229 Machine Learning +1606.05379 General Topology +1606.06848 Functional Analysis +1606.07685 Adaptation and Self-Organizing Systems +1606.08437 Theory +1606.09218 Numerical Analysis +1607.00532 Geometric Topology +1607.00540 +1607.01176 Experiment +1607.01451 Differential Geometry +1607.01820 High Energy Astrophysical Phenomena +1607.02485 Strongly Correlated Electrons +1607.02555 Computer Vision and Pattern Recognition +1607.02696 +1607.03611 Artificial Intelligence +1607.05318 +1607.05469 Algebraic Geometry +1607.05825 Combinatorics +1607.05838 Combinatorics +1607.06147 Algebraic Geometry +1607.06611 Differential Geometry +1607.07377 Cosmology and Nongalactic Astrophysics +1607.08051 Phenomenology +1607.08893 Superconductivity +1608.00242 Learning +1608.00427 Optimization and Control +1608.00466 Computation and Language +1608.01234 Machine Learning +1608.01296 Information Theory +1608.01565 Instrumentation and Detectors +1608.01847 Pattern Formation and Solitons +1608.02710 Symplectic Geometry +1608.03781 Phenomenology +1608.04171 Neural and Evolutionary Computing +1608.04631 Computation and Language +1608.04757 Astrophysics of Galaxies +1608.05001 Computer Vision and Pattern Recognition +1608.05857 Operator Algebras +1608.06279 Metric Geometry +1608.06958 Optimization and Control +1608.07039 Cosmology and Nongalactic Astrophysics +1608.07177 Classical Physics +1608.08432 Analysis of PDEs +1608.08658 Mathematical Software +1608.08709 Functional Analysis +1609.00193 Phenomenology +1609.01724 Differential Geometry +1609.01847 +1609.02445 Phenomenology +1609.02795 Computer Science and Game Theory +1609.03285 Optimization and Control +1609.05352 Cryptography and Security +1609.05696 Classical Analysis and ODEs +1609.05769 Mesoscale and Nanoscale Physics +1609.06092 Atomic Physics +1609.06168 +1609.06367 Materials Science +1609.06425 Analysis of PDEs +1609.06503 Accelerator Physics +1609.06575 Machine Learning +1609.06582 Cryptography and Security +1609.07161 Materials Science +1609.07290 Statistical Mechanics +1609.07298 Statistical Mechanics +1609.07417 Phenomenology +1609.08144 Computation and Language +1609.08250 Mesoscale and Nanoscale Physics +1609.09171 Computation and Language +1609.09320 Theory +1609.09597 Social and Information Networks +1609.09799 Machine Learning +1609.09806 Differential Geometry +1610.00144 Representation Theory +1610.00267 Analysis of PDEs +1610.00360 Combinatorics +1610.00439 Superconductivity +1610.00464 Theory +1610.00487 Number Theory +1610.00499 Statistical Mechanics +1610.00550 Mesoscale and Nanoscale Physics +1610.00809 Combinatorics +1610.01063 Number Theory +1610.01217 Neurons and Cognition +1610.01260 Combinatorics +1610.01270 General Finance +1610.01327 Information Retrieval +1610.01371 Astrophysics of Galaxies +1610.01392 Materials Science +1610.01549 Machine Learning +1610.01585 Information Theory +1610.01848 Rings and Algebras +1610.01893 Classical Analysis and ODEs +1610.01985 High Energy Astrophysical Phenomena +1610.02000 Theory +1610.02114 Mesoscale and Nanoscale Physics +1610.02160 Functional Analysis +1610.02252 Dynamical Systems +1610.02260 Logic in Computer Science +1610.02276 Human-Computer Interaction +1610.02395 Neurons and Cognition +1610.02397 Algebraic Geometry +1610.02399 Cosmology and Nongalactic Astrophysics +1610.02400 Instrumentation and Methods for Astrophysics +1610.02401 Solar and Stellar Astrophysics +1610.02402 Solar and Stellar Astrophysics +1610.02406 Mesoscale and Nanoscale Physics +1610.02408 +1610.02409 Astrophysics of Galaxies +1610.02410 Group Theory +1610.02411 Astrophysics of Galaxies +1610.02413 Learning +1610.02414 Computer Vision and Pattern Recognition +1610.02417 Algebraic Geometry +1610.02418 Rings and Algebras +1610.02421 Theory +1610.02423 Analysis of PDEs +1610.02424 Artificial Intelligence +1610.02428 Differential Geometry +1610.02431 Computer Vision and Pattern Recognition +1610.02432 Optimization and Control +1610.02434 Dynamical Systems +1610.02436 Methodology +1610.02442 Human-Computer Interaction +1610.02443 Multimedia +1610.02445 Human-Computer Interaction +1610.02447 Methodology +1610.02448 Physics and Society +1610.02449 Probability +1610.02452 Analysis of PDEs +1610.02453 Category Theory +1610.02454 Computer Vision and Pattern Recognition +1610.02455 Databases +1610.02461 Classical Analysis and ODEs +1610.02462 Dynamical Systems +1610.02465 Systems and Control +1610.02466 Optics +1610.02468 Robotics +1610.02469 Optimization and Control +1610.02470 Systems and Control +1610.02471 Neurons and Cognition +1610.02473 Numerical Analysis +1610.02474 +1610.02475 Sound +1610.02477 +1610.02478 Neural and Evolutionary Computing +1610.02482 Robotics +1610.02484 Neurons and Cognition +1610.02486 Optimization and Control +1610.02488 Multimedia +1610.02489 Materials Science +1610.02491 +1610.02492 Complex Variables +1610.02493 Computation and Language +1610.02494 +1610.02497 Information Theory +1610.02498 +1610.02500 Logic in Computer Science +1610.02501 Machine Learning +1610.02502 Information Retrieval +1610.02503 Methodology +1610.02506 +1610.02508 Applications +1610.02511 Information Theory +1610.02512 Information Theory +1610.02513 +1610.02514 +1610.02515 Applications +1610.02518 Combinatorics +1610.02519 Analysis of PDEs +1610.02521 Disordered Systems and Neural Networks +1610.02524 Optics +1610.02525 Analysis of PDEs +1610.02526 Cryptography and Security +1610.02527 Learning +1610.02528 Physics and Society +1610.02529 Analysis of PDEs +1610.02532 Probability +1610.02534 Cryptography and Security +1610.02539 Combinatorics +1610.02540 Metric Geometry +1610.02541 Algebraic Geometry +1610.02543 Tissues and Organs +1610.02544 Computation and Language +1610.02545 Number Theory +1610.02546 Mesoscale and Nanoscale Physics +1610.02547 Digital Libraries +1610.02548 Neurons and Cognition +1610.02555 Soft Condensed Matter +1610.02557 Functional Analysis +1610.02558 Data Analysis, Statistics and Probability +1610.02560 +1610.02561 Probability +1610.02563 Dynamical Systems +1610.02565 Optics +1610.02566 Information Theory +1610.02567 Computation and Language +1610.02568 Atmospheric and Oceanic Physics +1610.02569 Astrophysics of Galaxies +1610.02572 Astrophysics of Galaxies +1610.02573 Robotics +1610.02574 Combinatorics +1610.02575 Social and Information Networks +1610.02577 Solar and Stellar Astrophysics +1610.02578 Information Theory +1610.02579 Computer Vision and Pattern Recognition +1610.02582 General Mathematics +1610.02583 Learning +1610.02588 Computation +1610.02589 Networking and Internet Architecture +1610.02593 Probability +1610.02594 Exactly Solvable and Integrable Systems +1610.02596 Optimization and Control +1610.02597 Optics +1610.02599 Commutative Algebra +1610.02600 Operator Algebras +1610.02601 Astrophysics of Galaxies +1610.02602 Functional Analysis +1610.02603 Analysis of PDEs +1610.02605 Strongly Correlated Electrons +1610.02607 Instrumentation and Methods for Astrophysics +1610.02611 Complex Variables +1610.02612 Statistical Mechanics +1610.02614 Pattern Formation and Solitons +1610.02615 Representation Theory +1610.02616 Computer Vision and Pattern Recognition +1610.02617 Optimization and Control +1610.02619 Metric Geometry +1610.02620 Information Theory +1610.02621 Representation Theory +1610.02622 Differential Geometry +1610.02623 Numerical Analysis +1610.02624 Accelerator Physics +1610.02625 Strongly Correlated Electrons +1610.02627 Robotics +1610.02628 Accelerator Physics +1610.02629 Phenomenology +1610.02630 Superconductivity +1610.02631 Fluid Dynamics +1610.02632 Solar and Stellar Astrophysics +1610.02633 Computation and Language +1610.02634 Logic +1610.02635 Phenomenology +1610.02637 Analysis of PDEs +1610.02638 +1610.02639 +1610.02640 Representation Theory +1610.02641 Dynamical Systems +1610.02642 Phenomenology +1610.02644 Astrophysics of Galaxies +1610.02645 Representation Theory +1610.02647 +1610.02649 Machine Learning +1610.02651 Computer Vision and Pattern Recognition +1610.02653 Applications +1610.02654 Materials Science +1610.02655 Commutative Algebra +1610.02656 Medical Physics +1610.02658 Cryptography and Security +1610.02660 Physics and Society +1610.02662 Analysis of PDEs +1610.02664 Optics +1610.02665 Chemical Physics +1610.02667 Computers and Society +1610.02670 Information Theory +1610.02671 +1610.02672 Group Theory +1610.02673 Analysis of PDEs +1610.02676 Combinatorics +1610.02677 +1610.02678 Analysis of PDEs +1610.02680 Statistics Theory +1610.02682 +1610.02683 Computation and Language +1610.02684 Computational Physics +1610.02685 Materials Science +1610.02686 Computational Complexity +1610.02688 Superconductivity +1610.02691 Geometric Topology +1610.02692 Computation and Language +1610.02693 Strongly Correlated Electrons +1610.02694 Rings and Algebras +1610.02695 Mesoscale and Nanoscale Physics +1610.02700 Probability +1610.02702 Instrumentation and Methods for Astrophysics +1610.02706 Logic +1610.02707 Artificial Intelligence +1610.02708 Applications +1610.02711 Astrophysics of Galaxies +1610.02712 Dynamical Systems +1610.02714 Computer Vision and Pattern Recognition +1610.02715 Numerical Analysis +1610.02717 Functional Analysis +1610.02718 Analysis of PDEs +1610.02719 Strongly Correlated Electrons +1610.02724 Discrete Mathematics +1610.02729 Logic +1610.02730 Differential Geometry +1610.02731 Algebraic Geometry +1610.02732 Neural and Evolutionary Computing +1610.02735 Information Theory +1610.02736 Physics and Society +1610.02739 Differential Geometry +1610.02740 Differential Geometry +1610.02742 Distributed, Parallel, and Cluster Computing +1610.02743 Cosmology and Nongalactic Astrophysics +1610.02749 Computation and Language +1610.02750 Number Theory +1610.02751 Computation and Language +1610.02753 Statistics Theory +1610.02755 +1610.02756 Chemical Physics +1610.02757 Machine Learning +1610.02759 Mesoscale and Nanoscale Physics +1610.02760 Computer Vision and Pattern Recognition +1610.02762 Computer Vision and Pattern Recognition +1610.02763 Functional Analysis +1610.02764 Materials Science +1610.02765 Information Theory +1610.02766 Probability +1610.02768 Fluid Dynamics +1610.02769 Graphics +1610.02770 Probability +1610.02772 Astrophysics of Galaxies +1610.02778 Probability +1610.02779 Atomic Physics +1610.02780 Numerical Analysis +1610.02781 Optimization and Control +1610.02782 Algebraic Geometry +1610.02783 Medical Physics +1610.02785 History and Philosophy of Physics +1610.02787 Computer Science and Game Theory +1610.02789 Functional Analysis +1610.02791 Functional Analysis +1610.02792 Phenomenology +1610.02796 Computational Engineering, Finance, and Science +1610.02799 Instrumentation and Detectors +1610.02800 Information Theory +1610.02803 Disordered Systems and Neural Networks +1610.02805 Materials Science +1610.02806 Computation and Language +1610.02809 Information Theory +1610.02810 +1610.02811 Mesoscale and Nanoscale Physics +1610.02812 Statistical Mechanics +1610.02814 Dynamical Systems +1610.02815 Other Computer Science +1610.02816 Information Theory +1610.02818 Mesoscale and Nanoscale Physics +1610.02820 Data Structures and Algorithms +1610.02822 +1610.02823 +1610.02824 +1610.02825 Functional Analysis +1610.02828 Artificial Intelligence +1610.02829 Optimization and Control +1610.02830 Optics +1610.02832 Logic +1610.02834 Dynamical Systems +1610.02838 Astrophysics of Galaxies +1610.02839 Combinatorics +1610.02843 Soft Condensed Matter +1610.02845 Rings and Algebras +1610.02847 Artificial Intelligence +1610.02850 Computer Vision and Pattern Recognition +1610.02852 Numerical Analysis +1610.02853 Analysis of PDEs +1610.02854 Strongly Correlated Electrons +1610.02857 Human-Computer Interaction +1610.02860 Lattice +1610.02863 Statistical Finance +1610.02866 Probability +1610.02869 Social and Information Networks +1610.02871 Astrophysics of Galaxies +1610.02872 Statistics Theory +1610.02873 K-Theory and Homology +1610.02874 Cryptography and Security +1610.02875 +1610.02876 Learning +1610.02877 Probability +1610.02878 Physics and Society +1610.02880 Geometric Topology +1610.02882 +1610.02883 Phenomenology +1610.02884 Instrumentation and Detectors +1610.02885 Distributed, Parallel, and Cluster Computing +1610.02888 Probability +1610.02889 Optimization and Control +1610.02893 +1610.02894 Optimization and Control +1610.02895 Computer Science and Game Theory +1610.02896 Combinatorics +1610.02897 Materials Science +1610.02898 Differential Geometry +1610.02899 Instrumentation and Methods for Astrophysics +1610.02900 Probability +1610.02901 +1610.02902 Computer Vision and Pattern Recognition +1610.02903 Optimization and Control +1610.02905 Numerical Analysis +1610.02907 Fluid Dynamics +1610.02909 Information Theory +1610.02913 Instrumentation and Methods for Astrophysics +1610.02916 Instrumentation and Methods for Astrophysics +1610.02917 Algebraic Topology +1610.02919 Information Theory +1610.02922 Computers and Society +1610.02923 Computer Vision and Pattern Recognition +1610.02924 +1610.02925 +1610.02927 Quantum Gases +1610.02928 Atomic Physics +1610.02929 Mesoscale and Nanoscale Physics +1610.02930 Dynamical Systems +1610.02931 Distributed, Parallel, and Cluster Computing +1610.02932 Differential Geometry +1610.02933 Optimization and Control +1610.02934 Representation Theory +1610.02935 Geophysics +1610.02936 Phenomenology +1610.02937 Geophysics +1610.02938 +1610.02939 Chaotic Dynamics +1610.02942 Materials Science +1610.02943 Multiagent Systems +1610.02946 Superconductivity +1610.02949 Materials Science +1610.02950 +1610.02951 +1610.02952 Programming Languages +1610.02953 Data Structures and Algorithms +1610.02954 +1610.02957 Combinatorics +1610.02961 +1610.02965 Combinatorics +1610.02966 Representation Theory +1610.02967 Optimization and Control +1610.02968 Physics Education +1610.02969 Solar and Stellar Astrophysics +1610.02971 Combinatorics +1610.02976 Statistical Mechanics +1610.02977 Mesoscale and Nanoscale Physics +1610.02978 Number Theory +1610.02979 Probability +1610.02980 Biological Physics +1610.02982 Combinatorics +1610.02984 Computer Vision and Pattern Recognition +1610.02985 Analysis of PDEs +1610.02986 Differential Geometry +1610.02993 +1610.02995 Learning +1610.02996 Theory +1610.02997 Data Structures and Algorithms +1610.02999 Lattice +1610.03000 Statistical Mechanics +1610.03004 Group Theory +1610.03006 Group Theory +1610.03007 Data Structures and Algorithms +1610.03009 Sound +1610.03010 Mesoscale and Nanoscale Physics +1610.03012 +1610.03013 Computer Science and Game Theory +1610.03014 Numerical Analysis +1610.03018 Phenomenology +1610.03021 Analysis of PDEs +1610.03022 Computation and Language +1610.03026 Mesoscale and Nanoscale Physics +1610.03028 Robotics +1610.03029 Computational Complexity +1610.03030 Materials Science +1610.03032 Mesoscale and Nanoscale Physics +1610.03034 Algebraic Geometry +1610.03036 +1610.03037 Probability +1610.03041 +1610.03043 Theory +1610.03045 Learning +1610.03047 Instrumentation and Methods for Astrophysics +1610.03048 Information Theory +1610.03050 Mathematical Finance +1610.03052 Logic in Computer Science +cs/0209024 Networking and Internet Architecture +cs/0209025 Networking and Internet Architecture +quant-ph/0402204 +quant-ph/0407008 +1510.00438 Combinatorics +0803.2690 +1003.1943 Commutative Algebra +1011.1806 Algebraic Geometry +1011.4228 Combinatorics +1106.4810 Geometric Topology +1108.2465 Differential Geometry +1110.6752 Superconductivity +1111.0632 Symplectic Geometry +1111.1893 Number Theory +1111.6691 Networking and Internet Architecture +1202.1033 +1202.3337 Category Theory +1206.4809 Logic +1210.1425 Category Theory +1212.4068 K-Theory and Homology +1305.0058 K-Theory and Homology +1306.3327 +1306.4143 Symplectic Geometry +1306.4562 Number Theory +1307.2968 Probability +1308.0178 Information Theory +1308.2773 Computational Engineering, Finance, and Science +1309.5272 Representation Theory +1309.7828 Numerical Analysis +1310.2486 Instrumentation and Detectors +1311.0457 Superconductivity +1312.1396 +1401.4827 Statistics Theory +1402.1618 Number Theory +1402.3210 Information Theory +1402.4798 Operator Algebras +1402.4922 High Energy Astrophysical Phenomena +1404.0569 Differential Geometry +1404.6462 Methodology +1405.0896 Algebraic Geometry +1405.5492 Representation Theory +1405.5776 Number Theory +1405.6602 Fluid Dynamics +1406.5726 Computer Vision and Pattern Recognition +1407.5974 Probability +1408.0902 Differential Geometry +1408.1643 Representation Theory +1409.1926 +1409.6011 Data Structures and Algorithms +1409.7421 Analysis of PDEs +1410.1219 Combinatorics +1410.2404 Differential Geometry +1412.1683 Computational Geometry +1412.3099 Materials Science +1412.7392 Computation +1501.00585 History and Philosophy of Physics +1501.00932 Dynamical Systems +1502.06135 Theory +1502.06445 Phenomenology +1502.07500 +1503.01372 Dynamical Systems +1503.07368 Statistics Theory +1503.08270 Combinatorics +1504.01055 Optics +1504.02222 Formal Languages and Automata Theory +1504.04491 Numerical Analysis +1504.05506 Differential Geometry +1504.05826 Theory +1504.06753 Instrumentation and Detectors +1504.08246 Number Theory +1504.08266 Instrumentation and Detectors +1505.03665 Algebraic Geometry +1505.05626 Rings and Algebras +1505.07085 Instrumentation and Detectors +1506.07968 Representation Theory +1507.01048 Discrete Mathematics +1507.02550 Classical Analysis and ODEs +1507.02970 +1507.04268 Representation Theory +1507.05180 Phenomenology +1507.05609 Probability +1507.08967 Distributed, Parallel, and Cluster Computing +1508.00335 Information Theory +1508.00943 Rings and Algebras +1508.01167 Methodology +1508.02460 Instrumentation and Detectors +1508.02700 Dynamical Systems +1508.02756 Probability +1508.02768 Physics and Society +1508.02963 Quantum Algebra +1508.07920 Information Theory +1509.00922 Methodology +1509.01832 Metric Geometry +1509.02029 Methodology +1509.03454 Soft Condensed Matter +1509.03914 Algebraic Geometry +1509.05044 Theory +1509.07007 Data Structures and Algorithms +1510.01728 Systems and Control +1510.02842 Solar and Stellar Astrophysics +1510.03006 Number Theory +1510.03645 Number Theory +1510.05662 Superconductivity +1510.06518 Mesoscale and Nanoscale Physics +1510.08832 Probability +1511.01657 Dynamical Systems +1511.03512 Spectral Theory +1511.04986 Learning +1511.06132 Combinatorics +1511.06895 Analysis of PDEs +1511.07019 Complex Variables +1511.07525 Instrumentation and Detectors +1512.00895 Optimization and Control +1512.02843 Optimization and Control +1512.03486 Strongly Correlated Electrons +1512.04523 Differential Geometry +1512.05556 Dynamical Systems +1512.06014 Computer Vision and Pattern Recognition +1512.06818 +1512.07815 Computer Vision and Pattern Recognition +1601.02111 Differential Geometry +1601.03060 Neurons and Cognition +1601.03682 +1601.03883 Phenomenology +1601.04042 Probability +1601.04204 Operator Algebras +1601.05661 Information Theory +1601.05798 High Energy Astrophysical Phenomena +1601.06432 Methodology +1602.00141 +1602.00387 Materials Science +1602.00483 Phenomenology +1602.01537 Databases +1602.01916 Analysis of PDEs +1602.02209 Data Analysis, Statistics and Probability +1602.02220 Learning +1602.02364 +1602.02829 History and Philosophy of Physics +1602.03778 Complex Variables +1602.03842 High Energy Astrophysical Phenomena +1602.04193 Optimization and Control +1602.04230 Soft Condensed Matter +1602.04477 Algebraic Geometry +1602.05782 Physics and Society +1602.05806 Numerical Analysis +1602.06433 Logic +1602.07116 Adaptation and Self-Organizing Systems +1602.07933 Methodology +1602.08194 Machine Learning +1603.00555 Data Analysis, Statistics and Probability +1603.01874 Methodology +1603.02636 Robotics +1603.03939 Commutative Algebra +1603.04704 Fluid Dynamics +1603.04818 Metric Geometry +1603.05083 +1603.05092 Soft Condensed Matter +1603.05841 Materials Science +1603.05847 Materials Science +1603.06825 Mathematical Finance +1603.07004 Mesoscale and Nanoscale Physics +1603.07092 Optics +1603.07973 Strongly Correlated Electrons +1603.08182 Computer Vision and Pattern Recognition +1603.08340 Systems and Control +1603.08395 Algebraic Geometry +1603.08898 Materials Science +1603.09330 K-Theory and Homology +1604.00316 Combinatorics +1604.00669 Phenomenology +1604.01133 Algebraic Geometry +1604.02523 Robotics +1604.02524 Robotics +1604.03303 Robotics +1604.03308 Robotics +1604.03451 Strongly Correlated Electrons +1604.04216 Strongly Correlated Electrons +1604.04851 Robotics +1604.04854 Robotics +1604.05094 Earth and Planetary Astrophysics +1604.05609 Discrete Mathematics +1604.06182 Computer Vision and Pattern Recognition +1604.06406 Geophysics +1604.07007 Probability +1604.07998 +1604.08043 Phenomenology +1604.08336 Robotics +1604.08656 Strongly Correlated Electrons +1605.00143 Instrumentation and Detectors +1605.00562 Quantitative Methods +1605.00638 Dynamical Systems +1605.00847 Algebraic Geometry +1605.01387 Populations and Evolution +1605.02017 Algebraic Geometry +1605.02586 Dynamical Systems +1605.03083 +1605.03531 Materials Science +1605.05475 Mesoscale and Nanoscale Physics +1605.05830 +1605.06054 Combinatorics +1605.06586 +1605.07849 Theory +1605.08259 Statistical Mechanics +1605.08822 Optics +1605.09071 Computational Complexity +1605.09429 Information Theory +1605.09650 Lattice +1605.09681 Numerical Analysis +1606.01185 +1606.01811 Optics +1606.02203 Theory +1606.02444 Rings and Algebras +1606.03384 Fluid Dynamics +1606.03392 Computational Physics +1606.03459 Mesoscale and Nanoscale Physics +1606.03939 High Energy Astrophysical Phenomena +1606.04677 Geometric Topology +1606.05514 Information Theory +1606.06206 Numerical Analysis +1606.06746 Methodology +1606.07084 Theory +1606.07875 Astrophysics of Galaxies +1606.08942 Social and Information Networks +1607.00330 General Physics +1607.00386 Astrophysics of Galaxies +1607.01292 Combinatorics +1607.01305 Information Theory +1607.01500 Number Theory +1607.02192 Cryptography and Security +1607.02426 Phenomenology +1607.02575 Dynamical Systems +1607.02604 Statistics Theory +1607.02659 Physics Education +1607.02675 Methodology +1607.02921 Algebraic Geometry +1607.03551 Algebraic Geometry +1607.04145 Number Theory +1607.04940 Social and Information Networks +1607.05569 Phenomenology +1607.06389 +1607.07177 Differential Geometry +1607.07180 Optics +1607.08505 Operator Algebras +1608.00900 Fluid Dynamics +1608.02265 Complex Variables +1608.03307 Networking and Internet Architecture +1608.03751 Strongly Correlated Electrons +1608.04053 Astrophysics of Galaxies +1608.05042 Rings and Algebras +1608.05073 Optics +1608.05093 Mesoscale and Nanoscale Physics +1608.06292 Theory +1608.06873 Phenomenology +1608.06993 Computer Vision and Pattern Recognition +1608.07017 Computer Vision and Pattern Recognition +1608.07038 Discrete Mathematics +1608.07489 Combinatorics +1608.07734 Artificial Intelligence +1608.07964 Rings and Algebras +1609.00318 Optimization and Control +1609.00522 Algebraic Topology +1609.01227 +1609.01277 Mathematical Software +1609.01412 Strongly Correlated Electrons +1609.01577 Statistics Theory +1609.01802 High Energy Astrophysical Phenomena +1609.02382 Phenomenology +1609.02645 Phenomenology +1609.02800 Mesoscale and Nanoscale Physics +1609.03102 Numerical Analysis +1609.03201 Optimization and Control +1609.03222 Algebraic Geometry +1609.04544 Mesoscale and Nanoscale Physics +1609.04716 Phenomenology +1609.05052 Biological Physics +1609.05140 Artificial Intelligence +1609.05764 High Energy Astrophysical Phenomena +1609.06408 Optimization and Control +1609.06693 Learning +1609.06870 Computer Vision and Pattern Recognition +1609.07133 Combinatorics +1609.07228 Computer Vision and Pattern Recognition +1609.07874 Mesoscale and Nanoscale Physics +1609.08350 Atomic Physics +1609.08631 Theory +1609.09869 Machine Learning +1610.00603 +1610.00745 High Energy Astrophysical Phenomena +1610.01046 Optics +1610.01094 +1610.01148 Instrumentation and Methods for Astrophysics +1610.02376 Earth and Planetary Astrophysics +1610.02483 Learning +1610.02657 Disordered Systems and Neural Networks +1610.02745 +1610.03237 Analysis of PDEs +1610.03565 Instrumentation and Methods for Astrophysics +1610.04589 +1610.04616 Strongly Correlated Electrons +1610.04797 Representation Theory +1610.04816 Differential Geometry +1610.05034 Mesoscale and Nanoscale Physics +1610.06258 Machine Learning +1610.06795 Strongly Correlated Electrons +1610.07259 Popular Physics +1610.07645 Representation Theory +1610.07905 Metric Geometry +1610.08803 +1610.09281 Materials Science +1610.09775 Combinatorics +1611.00264 Classical Analysis and ODEs +1611.00269 Algebraic Geometry +1611.00309 Solar and Stellar Astrophysics +1611.00330 Geometric Topology +1611.00919 +1611.01088 Astrophysics of Galaxies +1611.01300 +1611.01749 Operator Algebras +1611.02595 Differential Geometry +1611.02789 +1611.02800 +1611.02855 Materials Science +1611.03175 History and Overview +1611.03339 Functional Analysis +1611.03648 Combinatorics +1611.03885 Medical Physics +1611.04312 Materials Science +1611.04351 Optics +1611.04593 Phenomenology +1611.04687 Neural and Evolutionary Computing +1611.04733 Chemical Physics +1611.05196 Robotics +1611.05197 Solar and Stellar Astrophysics +1611.05485 Numerical Analysis +1611.05713 Mesoscale and Nanoscale Physics +1611.05797 Theory +1611.05813 Superconductivity +1611.05843 Statistics Theory +1611.05906 Theory +1611.06160 Optimization and Control +1611.06547 Digital Libraries +1611.06627 Operator Algebras +1611.06661 Computer Vision and Pattern Recognition +1611.06666 Trading and Market Microstructure +1611.06715 Applications +1611.07003 Solar and Stellar Astrophysics +1611.07009 Theory +1611.07086 Exactly Solvable and Integrable Systems +1611.07330 High Energy Astrophysical Phenomena +1611.07593 Computer Vision and Pattern Recognition +1611.07843 Portfolio Management +1611.07892 Soft Condensed Matter +1611.08116 Mesoscale and Nanoscale Physics +1611.08558 Functional Analysis +1611.08618 Machine Learning +1611.08669 Computer Vision and Pattern Recognition +1611.08684 High Energy Astrophysical Phenomena +1611.08699 Learning +1611.08716 Representation Theory +1611.08737 Learning +1611.08756 Dynamical Systems +1611.08758 Computational Engineering, Finance, and Science +1611.08782 Materials Science +1611.08787 Phenomenology +1611.08828 Phenomenology +1611.08837 Combinatorics +1611.08844 Computer Vision and Pattern Recognition +1611.08848 Information Retrieval +1611.08879 Mesoscale and Nanoscale Physics +1611.08889 Networking and Internet Architecture +1611.08894 History and Overview +1611.08903 Learning +1611.08929 Molecular Networks +1611.08949 Disordered Systems and Neural Networks +1611.08956 Quantitative Methods +1611.08997 Instrumentation and Detectors +1611.09019 Soft Condensed Matter +1611.09029 +1611.09034 +1611.09056 Experiment +1611.09105 Classical Analysis and ODEs +1611.09110 Chaotic Dynamics +1611.09140 Representation Theory +1611.09151 Optics +1611.09161 +1611.09192 Medical Physics +1611.09208 Mesoscale and Nanoscale Physics +1611.09218 +1611.09226 Learning +1611.09290 +1611.09517 High Energy Astrophysical Phenomena +1611.09599 Optimization and Control +1611.09804 Methodology +1611.09880 Algebraic Geometry +1611.09917 Phenomenology +1611.10054 High Energy Astrophysical Phenomena +1611.10110 Number Theory +1611.10258 Learning +1611.10320 Algebraic Geometry +1611.10325 Number Theory +1611.10335 Statistics Theory +1611.10348 Statistics Theory +1612.00021 Cosmology and Nongalactic Astrophysics +1612.00030 Solar and Stellar Astrophysics +1612.00086 Learning +1612.00184 Algebraic Geometry +1612.00265 Lattice +1612.00270 Physics and Society +1612.00293 General Physics +1612.00328 Methodology +1612.00349 Mesoscale and Nanoscale Physics +1612.00351 Theory +1612.00352 Networking and Internet Architecture +1612.00382 Number Theory +1612.00525 Learning +1612.00540 +1612.00610 Superconductivity +1612.00622 Combinatorics +1612.00628 Information Theory +1612.00632 +1612.00647 Mesoscale and Nanoscale Physics +1612.00728 Metric Geometry +1612.00797 Phenomenology +1612.00835 Computer Vision and Pattern Recognition +1612.00840 Learning +1612.00841 Learning +1612.00842 Instrumentation and Detectors +1612.00843 Populations and Evolution +1612.00844 Classical Physics +1612.00851 Statistical Mechanics +1612.00853 Theory +1612.00855 Strongly Correlated Electrons +1612.00857 Representation Theory +1612.00858 +1612.00859 Instrumentation and Detectors +1612.00860 +1612.00862 Classical Analysis and ODEs +1612.00863 Statistical Mechanics +1612.00865 +1612.00866 Computation and Language +1612.00867 Optimization and Control +1612.00869 Dynamical Systems +1612.00870 Number Theory +1612.00872 Astrophysics of Galaxies +1612.00874 Computer Vision and Pattern Recognition +1612.00876 Sound +1612.00877 Methodology +1612.00878 Computers and Society +1612.00879 Chemical Physics +1612.00880 Instrumentation and Detectors +1612.00881 Computer Vision and Pattern Recognition +1612.00882 Learning +1612.00884 Classical Physics +1612.00885 Theory +1612.00886 +1612.00887 Soft Condensed Matter +1612.00888 Networking and Internet Architecture +1612.00889 Data Structures and Algorithms +1612.00892 +1612.00894 High Energy Astrophysical Phenomena +1612.00896 Instrumentation and Methods for Astrophysics +1612.00897 Number Theory +1612.00898 Algebraic Geometry +1612.00901 Computer Vision and Pattern Recognition +1612.00902 Astrophysics of Galaxies +1612.00903 Optimization and Control +1612.00904 Information Theory +1612.00908 Logic +1612.00909 Dynamical Systems +1612.00910 Mesoscale and Nanoscale Physics +1612.00911 +1612.00914 Information Theory +1612.00916 Artificial Intelligence +1612.00919 Numerical Analysis +1612.00920 Instrumentation and Methods for Astrophysics +1612.00921 Analysis of PDEs +1612.00922 Methodology +1612.00925 Number Theory +1612.00926 Combinatorics +1612.00928 Computer Science and Game Theory +1612.00929 +1612.00930 Algebraic Topology +1612.00932 Functional Analysis +1612.00933 Emerging Technologies +1612.00934 Group Theory +1612.00935 Mesoscale and Nanoscale Physics +1612.00936 Optimization and Control +1612.00937 Combinatorics +1612.00938 Strongly Correlated Electrons +1612.00940 Computer Vision and Pattern Recognition +1612.00941 Complex Variables +1612.00942 +1612.00943 Combinatorics +1612.00944 Artificial Intelligence +1612.00946 Experiment +1612.00947 Multiagent Systems +1612.00949 Biological Physics +1612.00950 Analysis of PDEs +1612.00951 Computation +1612.00953 High Energy Astrophysical Phenomena +1612.00954 Other Condensed Matter +1612.00955 Astrophysics of Galaxies +1612.00957 Soft Condensed Matter +1612.00958 Data Structures and Algorithms +1612.00960 Data Structures and Algorithms +1612.00962 Learning +1612.00963 Logic +1612.00965 Mesoscale and Nanoscale Physics +1612.00969 Computation and Language +1612.00970 Number Theory +1612.00971 Combinatorics +1612.00972 Computational Physics +1612.00974 +1612.00975 +1612.00976 Strongly Correlated Electrons +1612.00977 Numerical Analysis +1612.00979 Computer Vision and Pattern Recognition +1612.00981 Mathematical Finance +1612.00982 Combinatorics +1612.00983 Computer Vision and Pattern Recognition +1612.00984 Social and Information Networks +1612.00986 Computer Vision and Pattern Recognition +1612.00987 Materials Science +1612.00988 Mesoscale and Nanoscale Physics +1612.00989 Data Structures and Algorithms +1612.00991 Computer Vision and Pattern Recognition +1612.00992 Computer Vision and Pattern Recognition +1612.00993 Information Theory +1612.00994 Materials Science +1612.00995 Category Theory +1612.00996 Operator Algebras +1612.00997 Networking and Internet Architecture +1612.00998 Theory +1612.00999 Experiment +1612.01001 Group Theory +1612.01003 Physics and Society +1612.01004 Probability +1612.01006 Computer Vision and Pattern Recognition +1612.01007 Pattern Formation and Solitons +1612.01008 Mesoscale and Nanoscale Physics +1612.01010 Artificial Intelligence +1612.01011 +1612.01012 Solar and Stellar Astrophysics +1612.01013 Mathematical Finance +1612.01014 Applications +1612.01015 Numerical Analysis +1612.01016 Solar and Stellar Astrophysics +1612.01018 +1612.01022 Computer Vision and Pattern Recognition +1612.01024 Dynamical Systems +1612.01025 Instrumentation and Methods for Astrophysics +1612.01026 Algebraic Geometry +1612.01029 Astrophysics of Galaxies +1612.01030 Genomics +1612.01033 Computer Vision and Pattern Recognition +1612.01034 Robotics +1612.01035 Computer Vision and Pattern Recognition +1612.01036 Functional Analysis +1612.01037 Materials Science +1612.01038 Data Structures and Algorithms +1612.01039 Computation and Language +1612.01040 Databases +1612.01041 Computational Complexity +1612.01042 Astrophysics of Galaxies +1612.01044 Robotics +1612.01045 +1612.01046 Data Analysis, Statistics and Probability +1612.01047 Information Theory +1612.01050 Operator Algebras +1612.01052 Operator Algebras +1612.01053 Data Structures and Algorithms +1612.01055 Machine Learning +1612.01056 Analysis of PDEs +1612.01058 Artificial Intelligence +1612.01060 Chaotic Dynamics +1612.01061 Distributed, Parallel, and Cluster Computing +1612.01062 Mesoscale and Nanoscale Physics +1612.01063 Differential Geometry +1612.01065 Theory +1612.01067 Human-Computer Interaction +1612.01068 Analysis of PDEs +1612.01069 Information Theory +1612.01070 Human-Computer Interaction +1612.01071 Analysis of PDEs +1612.01072 Computer Vision and Pattern Recognition +1612.01073 Symplectic Geometry +1612.01074 Computer Vision and Pattern Recognition +1612.01075 Computer Vision and Pattern Recognition +1612.01076 Number Theory +1612.01078 Software Engineering +1612.01079 Computer Vision and Pattern Recognition +1612.01081 Cosmology and Nongalactic Astrophysics +1612.01083 Mesoscale and Nanoscale Physics +1612.01084 +1612.01085 Soft Condensed Matter +1612.01087 Computational Physics +1612.01089 Applications +1612.01090 Databases +1612.01092 +1612.01093 Logic in Computer Science +1612.01094 Learning +1612.01095 Machine Learning +1612.01096 Information Theory +1612.01097 +1612.01098 Algebraic Geometry +1612.01103 Learning +1612.01105 Computer Vision and Pattern Recognition +1612.01108 Fluid Dynamics +1612.01110 Soft Condensed Matter +1612.01111 Exactly Solvable and Integrable Systems +1612.01112 Probability +1612.01114 Information Theory +1612.01115 Atmospheric and Oceanic Physics +1612.01116 Functional Analysis +1612.01117 Representation Theory +1612.01118 Mesoscale and Nanoscale Physics +1612.01119 Cryptography and Security +1612.01123 Spectral Theory +1612.01124 Numerical Analysis +1612.01128 Metric Geometry +1612.01129 Algebraic Geometry +1612.01131 Computer Vision and Pattern Recognition +1612.01132 General Finance +1612.01136 +1612.01137 Analysis of PDEs +1612.01138 Rings and Algebras +1612.01140 Rings and Algebras +1612.01143 Number Theory +1612.01144 Algebraic Geometry +1612.01145 Functional Analysis +1612.01146 Dynamical Systems +1612.01147 Computational Complexity +1612.01148 Mesoscale and Nanoscale Physics +1612.01149 Classical Analysis and ODEs +1612.01150 Neurons and Cognition +1612.01152 Analysis of PDEs +1612.01153 Functional Analysis +1612.01154 Theory +1612.01155 General Finance +1612.01157 Number Theory +1612.01158 Machine Learning +1612.01159 Statistics Theory +1612.01163 Distributed, Parallel, and Cluster Computing +1612.01164 Number Theory +1612.01165 +1612.01168 Complex Variables +1612.01169 Combinatorics +1612.01171 Data Structures and Algorithms +1612.01173 Materials Science +1612.01174 Chaotic Dynamics +1612.01176 Phenomenology +1612.01177 Functional Analysis +1612.01178 Distributed, Parallel, and Cluster Computing +1612.01179 +1612.01180 Soft Condensed Matter +1612.01183 Information Theory +1612.01184 Algebraic Geometry +1612.01185 Mesoscale and Nanoscale Physics +1612.01186 Information Theory +1612.01187 Astrophysics of Galaxies +1612.01189 Information Theory +1612.01191 Solar and Stellar Astrophysics +1612.01192 Phenomenology +1612.01193 Dynamical Systems +1612.01194 Computer Vision and Pattern Recognition +1612.01195 Chemical Physics +1612.01196 Solar and Stellar Astrophysics +1612.01197 Computation and Language +1612.01198 Software Engineering +1612.01199 +1612.01200 Machine Learning +1612.01201 Mesoscale and Nanoscale Physics +1612.01202 Computer Vision and Pattern Recognition +1612.01205 Machine Learning +1612.01206 Algebraic Geometry +1612.01207 Algebraic Geometry +1612.01208 Disordered Systems and Neural Networks +1612.01210 Statistics Theory +1612.01211 Systems and Control +1612.01212 Combinatorics +1612.01213 Computer Vision and Pattern Recognition +1612.01215 Robotics +1612.01217 Superconductivity +1612.01219 Numerical Analysis +1612.01220 Algebraic Geometry +1612.01222 Statistical Mechanics +1612.01223 Experiment +1612.01225 Computer Vision and Pattern Recognition +1612.01227 Computer Vision and Pattern Recognition +1612.01229 Neurons and Cognition +1612.01230 Computer Vision and Pattern Recognition +1612.01231 Other Condensed Matter +1612.01232 Methodology +1612.01233 Molecular Networks +1612.01234 Computer Vision and Pattern Recognition +1612.01235 Computer Vision and Pattern Recognition +1612.01236 +1612.01237 Computer Vision and Pattern Recognition +1612.01240 Materials Science +1612.01241 Probability +1612.01242 Group Theory +1612.01243 Systems and Control +1612.01246 Optimization and Control +1612.01248 +1612.01250 High Energy Astrophysical Phenomena +1612.01252 Plasma Physics +1612.01253 Computer Vision and Pattern Recognition +1612.01254 Learning +1612.01255 Differential Geometry +1612.01256 Computer Vision and Pattern Recognition +1612.01257 Differential Geometry +1612.01260 Multiagent Systems +1612.01262 High Energy Astrophysical Phenomena +1612.01263 Logic in Computer Science +1612.01264 Networking and Internet Architecture +1612.01265 Probability +1612.01266 Strongly Correlated Electrons +1612.01268 Optics +1612.01274 Statistical Mechanics +1612.01276 Information Theory +1612.01279 Lattice +1612.01281 Instrumentation and Detectors +1612.01284 Physics and Society +1612.01286 Accelerator Physics +1612.01291 Methodology +1612.01292 Quantum Algebra +1612.01294 Computer Vision and Pattern Recognition +1612.01295 Combinatorics +1612.01296 Theory +1612.01298 Statistical Mechanics +1612.01301 Analysis of PDEs +1612.01302 Portfolio Management +1612.01303 Differential Geometry +1612.01307 Metric Geometry +1612.01308 Dynamical Systems +1612.01309 Phenomenology +1612.01310 Dynamical Systems +1612.01312 Representation Theory +1612.01314 Materials Science +1612.01315 Dynamical Systems +1612.01316 Machine Learning +1612.01318 Combinatorics +1612.01319 Functional Analysis +1612.01323 Computer Vision and Pattern Recognition +1612.01325 Programming Languages +1612.01326 Experiment +1612.01327 Mathematical Finance +1612.01328 Classical Analysis and ODEs +1612.01329 +1612.01330 Analysis of PDEs +1612.01332 Chemical Physics +1612.01333 Numerical Analysis +1612.01334 Experiment +1612.01335 Computational Geometry +1612.01336 Mesoscale and Nanoscale Physics +1612.01337 Computer Vision and Pattern Recognition +1612.01338 History and Philosophy of Physics +1612.01339 Software Engineering +1612.01340 Computation and Language +1612.01341 Computer Vision and Pattern Recognition +1612.01342 Optimization and Control +1612.01343 Materials Science +1612.01345 Computer Vision and Pattern Recognition +1612.01346 Fluid Dynamics +1612.01347 Cosmology and Nongalactic Astrophysics +1612.01348 Differential Geometry +1612.01349 Learning +1612.01350 Classical Analysis and ODEs +1612.01352 Information Theory +1612.01353 Accelerator Physics +1612.01354 Optimization and Control +1612.01356 Learning +1612.01357 Computational Engineering, Finance, and Science +1612.01358 General Mathematics +1612.01360 Metric Geometry +1612.01361 Information Theory +1612.01362 Optimization and Control +1612.01365 Classical Analysis and ODEs +1612.01366 Solar and Stellar Astrophysics +1612.01367 Learning +1612.01368 +1612.01370 Computational Geometry +1612.01372 Materials Science +1612.01373 Functional Analysis +1612.01374 Complex Variables +1612.01375 Systems and Control +1612.01378 Physics Education +1612.01379 Combinatorics +1612.01381 Materials Science +1612.01382 Metric Geometry +1612.01383 Materials Science +1612.01384 Optics +1612.01385 Software Engineering +1612.01386 Physics and Society +1612.01387 Experiment +1612.01391 Classical Analysis and ODEs +1612.01392 Robotics +1612.01393 Probability +1612.01397 Learning +1612.01399 Systems and Control +1612.01400 Computer Vision and Pattern Recognition +1612.01401 Learning +1612.01404 Computation and Language +1612.01406 Systems and Control +1612.01407 Optics +1612.01408 Applications +1612.01409 Quantitative Methods +1612.01410 Numerical Analysis +1612.01411 Numerical Analysis +1612.01412 History and Overview +1612.01413 Quantitative Methods +1612.01415 Mesoscale and Nanoscale Physics +1612.01416 Networking and Internet Architecture +1612.01417 Phenomenology +1612.01419 Analysis of PDEs +1612.01421 Operator Algebras +1612.01422 Differential Geometry +1612.01424 Probability +1612.01425 Learning +1612.01426 Group Theory +1612.01427 Analysis of PDEs +1612.01429 Populations and Evolution +1612.01430 Numerical Analysis +1612.01433 Mesoscale and Nanoscale Physics +1612.01434 Computer Science and Game Theory +1612.01437 Distributed, Parallel, and Cluster Computing +1612.01440 Number Theory +1612.01441 Optimization and Control +1612.01445 Cryptography and Security +1612.01446 Geometric Topology +1612.01447 +1612.01448 Phenomenology +1612.01449 Lattice +1612.01450 Social and Information Networks +1612.01453 Combinatorics +1612.01454 Applications +1612.01457 Soft Condensed Matter +1612.01458 Distributed, Parallel, and Cluster Computing +1612.01459 Information Theory +1612.01463 Phenomenology +1612.01466 History and Philosophy of Physics +1612.01468 Number Theory +1612.01469 Representation Theory +1612.01471 High Energy Astrophysical Phenomena +1612.01472 Materials Science +1612.01473 +1612.01476 Systems and Control +1612.01478 +1612.01479 Computer Vision and Pattern Recognition +1612.01480 Learning +1612.01481 Machine Learning +1612.01482 Numerical Analysis +1612.01483 +1612.01484 Representation Theory +1612.01485 Optimization and Control +1612.01486 Classical Analysis and ODEs +1612.01487 Information Theory +1612.01488 Probability +1612.01489 Social and Information Networks +1612.01492 Data Structures and Algorithms +1612.01495 Computer Vision and Pattern Recognition +1612.01497 Networking and Internet Architecture +1612.01498 Space Physics +1612.01500 Algebraic Geometry +1612.01502 +1612.01504 Statistics Theory +1612.01505 +1612.01506 Data Structures and Algorithms +1612.01509 +1612.01513 Combinatorics +1612.01514 Distributed, Parallel, and Cluster Computing +1612.01515 Algebraic Geometry +1612.01516 Soft Condensed Matter +1612.01517 High Energy Astrophysical Phenomena +1612.01518 Mesoscale and Nanoscale Physics +math/0206136 Differential Geometry +math/0701146 Commutative Algebra +math/0701173 Dynamical Systems +0810.2444 +0903.2148 Symplectic Geometry +0908.3013 Quantum Algebra +1001.1375 Rings and Algebras +1010.4076 Quantum Algebra +1012.5747 +1103.0580 Statistical Mechanics +1105.5325 Dynamical Systems +1109.4006 Representation Theory +1111.2316 Representation Theory +1203.1893 Rings and Algebras +1205.6793 Phenomenology +1209.5654 Probability +1210.2893 Rings and Algebras +1210.7996 Classical Analysis and ODEs +1211.0697 Medical Physics +1211.1738 Dynamical Systems +1211.6414 Quantum Algebra +1212.6351 +1302.3992 Algebraic Geometry +1304.0531 Representation Theory +1304.6595 +1306.6166 Dynamical Systems +1307.4511 Medical Physics +1309.1635 Probability +1309.6776 Probability +1312.6526 Differential Geometry +1401.8026 Risk Management +1402.3962 Computer Science and Game Theory +1403.1548 General Finance +1403.7544 Probability +1404.3600 Cryptography and Security +1404.5650 Classical Physics +1405.1211 Differential Geometry +1405.1256 Numerical Analysis +1405.1542 Numerical Analysis +1405.3801 Medical Physics +1405.5057 Physics and Society +1405.6176 Methodology +1406.4597 Symplectic Geometry +1409.3436 Discrete Mathematics +1409.5352 Neurons and Cognition +1409.5531 +1409.6186 Algebraic Geometry +1410.4474 Probability +1411.4045 Robotics +1411.5704 +1412.0442 Statistics Theory +1412.1366 Probability +1412.7385 Probability +1501.05969 +1502.05201 Materials Science +1502.05460 Statistics Theory +1503.08040 Information Theory +1503.08077 Dynamical Systems +1504.02206 Optimization and Control +1504.02214 Numerical Analysis +1504.04266 Numerical Analysis +1505.00939 Group Theory +1505.05891 Mesoscale and Nanoscale Physics +1506.02396 Optimization and Control +1506.08408 Mathematical Finance +1507.02728 Classical Analysis and ODEs +1508.01123 Combinatorics +1508.02068 Optimization and Control +1508.03625 Dynamical Systems +1508.04794 Geometric Topology +1508.05112 Functional Analysis +1508.07518 Commutative Algebra +1509.00428 Theory +1509.07405 Disordered Systems and Neural Networks +1509.08614 Probability +1510.05431 Strongly Correlated Electrons +1511.01058 Theory +1511.04494 Discrete Mathematics +1511.04714 Representation Theory +1511.05081 Systems and Control +1511.05094 Probability +1511.05875 Combinatorics +1512.03185 Mesoscale and Nanoscale Physics +1512.04171 Chemical Physics +1512.04225 Phenomenology +1512.05454 +1512.08271 +1512.09106 Theory +1601.00792 Probability +1601.01792 Chemical Physics +1601.02476 Representation Theory +1601.02553 Computation and Language +1601.04974 Populations and Evolution +1601.06021 General Physics +1601.06888 +1602.00179 Mesoscale and Nanoscale Physics +1602.00659 Plasma Physics +1602.01631 Number Theory +1602.02995 Computer Vision and Pattern Recognition +1602.03286 Phenomenology +1602.05244 Representation Theory +1602.07942 +1602.08851 Mesoscale and Nanoscale Physics +1603.00959 Populations and Evolution +1603.01044 +1603.01284 Materials Science +1603.01288 Mathematical Finance +1603.03409 Networking and Internet Architecture +1603.04904 Machine Learning +1603.05417 Solar and Stellar Astrophysics +1603.05467 Theory +1603.06523 High Energy Astrophysical Phenomena +1603.06615 +1603.06773 Cosmology and Nongalactic Astrophysics +1603.07075 +1603.07497 Complex Variables +1603.07778 +1603.09117 Materials Science +1603.09203 Experiment +1604.00010 Earth and Planetary Astrophysics +1604.00164 Mesoscale and Nanoscale Physics +1604.00477 Materials Science +1604.00659 Representation Theory +1604.02989 Mesoscale and Nanoscale Physics +1604.03465 Group Theory +1604.03501 Geometric Topology +1604.03705 Theory +1604.05532 Soft Condensed Matter +1604.08343 Strongly Correlated Electrons +1605.00870 Analysis of PDEs +1605.01497 Formal Languages and Automata Theory +1605.01926 Mesoscale and Nanoscale Physics +1605.02148 Materials Science +1605.02323 Geometric Topology +1605.02392 Strongly Correlated Electrons +1605.02494 Symbolic Computation +1605.05813 Theory +1605.08395 Classical Analysis and ODEs +1605.08728 Superconductivity +1605.09035 +1605.09272 Differential Geometry +1605.09314 Complex Variables +1605.09459 Machine Learning +1605.09728 Theory +1606.00186 Complex Variables +1606.00352 +1606.00420 +1606.00674 Theory +1606.01505 +1606.02058 Spectral Theory +1606.02176 Cosmology and Nongalactic Astrophysics +1606.02243 Disordered Systems and Neural Networks +1606.02417 +1606.02924 Dynamical Systems +1606.03354 Mesoscale and Nanoscale Physics +1606.03647 Computer Vision and Pattern Recognition +1606.04588 Numerical Analysis +1606.05234 Optics +1606.06168 Algebraic Topology +1606.06918 +1606.07643 Numerical Analysis +1606.07977 Functional Analysis +1606.09130 Rings and Algebras +1607.00637 Representation Theory +1607.00714 Performance +1607.01164 Logic in Computer Science +1607.01422 Physics Education +1607.01600 +1607.01641 Mesoscale and Nanoscale Physics +1607.01849 +1607.02142 Phenomenology +1607.02284 Data Structures and Algorithms +1607.02695 Neurons and Cognition +1607.02700 Theory +1607.03225 High Energy Astrophysical Phenomena +1607.03505 +1607.03558 Exactly Solvable and Integrable Systems +1607.04793 Information Theory +1607.05065 Emerging Technologies +1607.05149 Optics +1607.05474 Superconductivity +1607.06029 Computer Vision and Pattern Recognition +1607.06691 Biological Physics +1607.06854 Computer Vision and Pattern Recognition +1607.07135 Group Theory +1607.07404 Cosmology and Nongalactic Astrophysics +1607.07472 Robotics +1607.08201 Superconductivity +1607.08493 Medical Physics +1608.00646 Social and Information Networks +1608.00881 Combinatorics +1608.00883 Theory +1608.01020 Quantum Gases +1608.01578 Optimization and Control +1608.02068 Risk Management +1608.02096 Optimization and Control +1608.02924 Statistical Mechanics +1608.03443 Atomic Physics +1608.03471 Populations and Evolution +1608.03694 Robotics +1608.03735 Computers and Society +1608.03884 Instrumentation and Detectors +1608.03994 +1608.05606 Methodology +1608.06385 Instrumentation and Methods for Astrophysics +1608.06509 +1608.06666 Data Structures and Algorithms +1608.06832 Optics +1608.06845 Artificial Intelligence +1608.07520 Complex Variables +1608.07676 Algebraic Geometry +1608.07726 Optimization and Control +1608.07845 Theory +1608.08021 Computer Vision and Pattern Recognition +1608.08170 Geometric Topology +1608.08476 Analysis of PDEs +1608.08503 Physics and Society +1608.08917 Instrumentation and Detectors +1608.08923 Analysis of PDEs +1608.08930 Analysis of PDEs +1609.00625 Representation Theory +1609.01056 +1609.01651 Differential Geometry +1609.02757 Functional Analysis +1609.03885 Statistical Mechanics +1609.04873 Computation and Language +1609.04897 Information Theory +1609.05587 Numerical Analysis +1609.06374 Artificial Intelligence +1609.07546 Programming Languages +1609.08610 Astrophysics of Galaxies +1609.09000 Databases +1609.09037 Optimization and Control +1609.09143 Machine Learning +1609.09270 Computer Vision and Pattern Recognition +1609.09328 Probability +1609.09372 Mesoscale and Nanoscale Physics +1609.09373 +1609.09494 Numerical Analysis +1609.09500 Solar and Stellar Astrophysics +1609.09504 +1609.09507 +1609.09509 Optics +1609.09510 Theory +1609.09516 Accelerator Physics +1609.09517 Instrumentation and Methods for Astrophysics +1609.09518 Optics +1609.09519 Machine Learning +1609.09520 Astrophysics of Galaxies +1609.09521 Atomic Physics +1609.09523 Theory +1609.09525 Data Structures and Algorithms +1609.09526 Combinatorics +1609.09529 Methodology +1609.09531 Information Theory +1609.09532 Applications +1609.09534 Plasma Physics +1609.09536 Materials Science +1609.09538 Representation Theory +1609.09540 Algebraic Geometry +1609.09541 Computers and Society +1609.09544 Learning +1609.09545 Computer Vision and Pattern Recognition +1609.09546 Social and Information Networks +1609.09547 Social and Information Networks +1609.09548 Data Structures and Algorithms +1609.09549 Mesoscale and Nanoscale Physics +1609.09550 Combinatorics +1609.09552 Computation and Language +1609.09553 Information Theory +1609.09555 Formal Languages and Automata Theory +1609.09558 Analysis of PDEs +1609.09559 Strongly Correlated Electrons +1609.09560 Networking and Internet Architecture +1609.09561 Classical Physics +1609.09562 Computational Complexity +1609.09563 Learning +1609.09564 High Energy Astrophysical Phenomena +1609.09565 Social and Information Networks +1609.09566 Spectral Theory +1609.09569 Optimization and Control +1609.09571 Computers and Society +1609.09573 Classical Analysis and ODEs +1609.09574 Pattern Formation and Solitons +1609.09575 High Energy Astrophysical Phenomena +1609.09578 Human-Computer Interaction +1609.09580 Computation and Language +1609.09581 Solar and Stellar Astrophysics +1609.09582 Computers and Society +1609.09586 Combinatorics +1609.09587 Geometric Topology +1609.09588 Rings and Algebras +1609.09589 Astrophysics of Galaxies +1609.09591 Functional Analysis +1609.09593 Probability +1609.09594 Optimization and Control +1609.09595 Materials Science +1609.09598 Analysis of PDEs +1609.09599 Probability +1609.09600 +1609.09601 Computational Finance +1609.09602 Neurons and Cognition +1609.09603 Numerical Analysis +1609.09604 +1609.09605 Adaptation and Self-Organizing Systems +1609.09607 +1609.09608 +1609.09615 Classical Analysis and ODEs +1609.09616 Atmospheric and Oceanic Physics +1609.09617 Operator Algebras +1609.09618 Strongly Correlated Electrons +1609.09619 Applications +1609.09621 +1609.09622 +1609.09623 Algebraic Topology +1609.09624 Mesoscale and Nanoscale Physics +1609.09628 Number Theory +1609.09629 Algebraic Geometry +1609.09634 Probability +1609.09636 +1609.09637 Probability +1609.09641 +1609.09642 Computer Vision and Pattern Recognition +1609.09643 Computational Complexity +1609.09644 Mesoscale and Nanoscale Physics +1609.09645 Mesoscale and Nanoscale Physics +1609.09646 Numerical Analysis +1609.09648 Functional Analysis +1609.09650 Mesoscale and Nanoscale Physics +1609.09651 Mesoscale and Nanoscale Physics +1609.09654 Distributed, Parallel, and Cluster Computing +1609.09655 Instrumentation and Methods for Astrophysics +1609.09656 Software Engineering +1609.09657 Probability +1609.09658 High Energy Astrophysical Phenomena +1609.09659 Strongly Correlated Electrons +1609.09660 Systems and Control +1609.09661 Information Theory +1609.09662 Combinatorics +1609.09663 Combinatorics +1609.09668 Rings and Algebras +1609.09669 Information Theory +1609.09671 Computer Vision and Pattern Recognition +1609.09672 Geometric Topology +1609.09673 +1609.09674 Probability +1609.09675 Logic in Computer Science +1609.09677 Instrumentation and Methods for Astrophysics +1609.09679 Data Structures and Algorithms +1609.09680 Analysis of PDEs +1609.09681 Learning +1609.09682 Networking and Internet Architecture +1609.09683 Instrumentation and Methods for Astrophysics +1609.09684 Combinatorics +1609.09685 Fluid Dynamics +1609.09686 Combinatorics +1609.09689 +1609.09692 Analysis of PDEs +1609.09695 General Topology +1609.09698 Computer Vision and Pattern Recognition +1609.09700 Mesoscale and Nanoscale Physics +1609.09701 Probability +1609.09702 Theory +1609.09703 Spectral Theory +1609.09705 Fluid Dynamics +1609.09707 Functional Analysis +1609.09709 Programming Languages +1609.09713 Computer Vision and Pattern Recognition +1609.09714 Analysis of PDEs +1609.09715 Materials Science +1609.09718 Programming Languages +1609.09720 Robotics +1609.09721 +1609.09724 Number Theory +1609.09726 Networking and Internet Architecture +1609.09727 Theory +1609.09728 Formal Languages and Automata Theory +1609.09729 Functional Analysis +1609.09731 +1609.09732 Solar and Stellar Astrophysics +1609.09734 Atomic Physics +1609.09735 Instrumentation and Detectors +1609.09736 Analysis of PDEs +1609.09738 Phenomenology +1609.09739 Discrete Mathematics +1609.09741 Optimization and Control +1609.09742 +1609.09743 Sound +1609.09746 Combinatorics +1609.09748 Artificial Intelligence +1609.09750 Strongly Correlated Electrons +1609.09751 +1609.09753 Algebraic Geometry +1609.09756 Computers and Society +1609.09766 Optics +1609.09767 Computers and Society +1609.09768 Optics +1609.09770 Number Theory +1609.09771 Classical Analysis and ODEs +1609.09774 Earth and Planetary Astrophysics +1609.09776 Statistical Mechanics +1609.09778 Materials Science +1609.09779 +1609.09781 +1609.09783 Logic in Computer Science +1609.09785 Computers and Society +1609.09786 Information Theory +1609.09787 Number Theory +1609.09790 Materials Science +1609.09791 Materials Science +1609.09792 Commutative Algebra +1609.09793 Number Theory +1609.09795 General Physics +1609.09796 Discrete Mathematics +1609.09797 Functional Analysis +1609.09800 Pattern Formation and Solitons +1609.09801 General Physics +1609.09802 Group Theory +1609.09803 Methodology +1609.09804 +1609.09805 Lattice +1609.09808 Analysis of PDEs +1609.09809 K-Theory and Homology +1609.09810 Rings and Algebras +1609.09812 Spectral Theory +1609.09813 Phenomenology +1609.09814 Soft Condensed Matter +1609.09815 Theory +1609.09816 Methodology +1609.09821 Group Theory +1609.09822 Robotics +1609.09823 Information Theory +1609.09826 Solar and Stellar Astrophysics +1609.09827 Distributed, Parallel, and Cluster Computing +1609.09828 +1609.09829 Analysis of PDEs +1609.09830 Applications +1609.09832 High Energy Astrophysical Phenomena +1609.09835 +1609.09836 Functional Analysis +1609.09838 Instrumentation and Detectors +1609.09839 Soft Condensed Matter +1609.09841 Numerical Analysis +1609.09842 Number Theory +1609.09843 Complex Variables +1609.09846 Mesoscale and Nanoscale Physics +1609.09847 Classical Physics +1609.09848 +1609.09849 Phenomenology +1609.09850 Computer Vision and Pattern Recognition +1609.09851 Probability +1609.09854 Phenomenology +1609.09856 Probability +1609.09862 Numerical Analysis +1609.09864 Artificial Intelligence +1609.09866 Mesoscale and Nanoscale Physics +1609.09868 Disordered Systems and Neural Networks +hep-th/9212116 Theory +1601.05744 History and Overview +0704.2469 +0806.3690 Phenomenology +1305.6076 Computational Complexity +1306.2010 Differential Geometry +1307.2154 Computational Physics +1311.4330 Fluid Dynamics +1312.0525 Information Theory +1312.0647 Pattern Formation and Solitons +1403.6363 Combinatorics +1404.5077 Analysis of PDEs +1404.5826 Combinatorics +1405.3787 Mesoscale and Nanoscale Physics +1405.4542 Geometric Topology +1405.7019 +1407.8400 Quantum Algebra +1408.5062 +1409.4615 Representation Theory +1409.5807 Optics +1410.7641 Experiment +1411.4488 Probability +1411.6174 Number Theory +1412.6822 Group Theory +1501.00264 Methodology +1501.06808 Rings and Algebras +1501.07369 Representation Theory +1502.02591 Dynamical Systems +1502.04634 Logic in Computer Science +1502.06881 Theory +1503.00612 +1504.00326 Algebraic Geometry +1505.00779 Cosmology and Nongalactic Astrophysics +1505.01352 Group Theory +1505.02526 Quantum Gases +1506.08662 Complex Variables +1506.08747 Soft Condensed Matter +1507.04474 Instrumentation and Detectors +1507.04733 +1507.06231 +1507.08009 Mesoscale and Nanoscale Physics +1507.08208 Combinatorics +1508.00353 +1508.01284 Theory +1508.02706 Astrophysics of Galaxies +1508.04644 Combinatorics +1508.05452 Representation Theory +1508.06585 Computer Vision and Pattern Recognition +1508.07402 Phenomenology +1509.00276 Optics +1509.00355 Strongly Correlated Electrons +1509.02518 +1509.07384 Numerical Analysis +1509.08776 Optics +1510.00545 Group Theory +1510.02795 Computer Vision and Pattern Recognition +1510.02971 Functional Analysis +1510.04310 Combinatorics +1510.05744 Atomic Physics +1510.06035 Mesoscale and Nanoscale Physics +1510.06186 Algebraic Geometry +1510.06190 Algebraic Geometry +1510.06192 Algebraic Geometry +1510.08518 Strongly Correlated Electrons +1510.09182 Differential Geometry +1510.09216 Algebraic Topology +1511.01250 Astrophysics of Galaxies +1511.02761 +1511.06056 Physics and Society +1511.06625 +1511.08066 Discrete Mathematics +1511.08564 Experiment +1511.08682 +1512.02405 Strongly Correlated Electrons +1512.06809 Statistics Theory +1512.06810 Solar and Stellar Astrophysics +1512.06988 +1512.07526 Group Theory +1512.08259 +1512.08311 Networking and Internet Architecture +1512.08970 Populations and Evolution +1601.01071 Pattern Formation and Solitons +1601.01605 Probability +1601.05075 Differential Geometry +1601.05087 Phenomenology +1601.05373 Group Theory +1601.05898 Mesoscale and Nanoscale Physics +1601.06072 Optics +1601.07973 Probability +1602.01260 Data Analysis, Statistics and Probability +1602.01712 Chaotic Dynamics +1602.01953 Optics +1602.01957 Mesoscale and Nanoscale Physics +1602.02389 Learning +1602.02741 Superconductivity +1602.03147 Mesoscale and Nanoscale Physics +1602.03914 Superconductivity +1602.04864 Mesoscale and Nanoscale Physics +1602.05058 Complex Variables +1602.05850 Number Theory +1602.07329 Superconductivity +1602.07483 Computational Physics +1602.07519 Phenomenology +1602.07688 Lattice +1602.08640 Plasma Physics +1602.08841 High Energy Astrophysical Phenomena +1603.00810 Computation and Language +1603.01854 Rings and Algebras +1603.01997 Strongly Correlated Electrons +1603.02336 Phenomenology +1603.02708 Phenomenology +1603.03377 Superconductivity +1603.03626 Cosmology and Nongalactic Astrophysics +1603.03969 Soft Condensed Matter +1603.04936 Experiment +1603.05284 +1603.05359 Learning +1603.05804 Optics +1603.07176 Theory +1603.07546 +1603.07988 Analysis of PDEs +1603.09419 Statistical Mechanics +1604.00009 Phenomenology +1604.00012 Theory +1604.01266 Theory +1604.01538 Functional Analysis +1604.02579 Theory +1604.03350 Fluid Dynamics +1604.03398 Cosmology and Nongalactic Astrophysics +1604.03875 Optics +1604.03893 Theory +1604.04178 Quantum Gases +1604.04517 Mesoscale and Nanoscale Physics +1604.04559 Phenomenology +1604.05566 Phenomenology +1604.06529 Computation and Language +1604.06987 Phenomenology +1604.07357 Theory +1604.08924 Theory +1605.00202 Phenomenology +1605.00364 +1605.02875 Astrophysics of Galaxies +1605.03178 Phenomenology +1605.03363 Theory +1605.04110 Optimization and Control +1605.07794 Strongly Correlated Electrons +1605.07975 Phenomenology +1605.08385 Plasma Physics +1605.08965 Analysis of PDEs +1606.00328 Rings and Algebras +1606.00492 Numerical Analysis +1606.00766 Pattern Formation and Solitons +1606.01832 Commutative Algebra +1606.03366 Computer Science and Game Theory +1606.03414 +1606.03979 Theory +1606.04751 Instrumentation and Detectors +1606.05076 Statistical Mechanics +1606.05669 Category Theory +1606.05784 Neural and Evolutionary Computing +1606.05935 Plasma Physics +1606.06139 Probability +1606.06286 +1606.06331 +1606.06631 +1606.07207 Formal Languages and Automata Theory +1606.07583 Multimedia +1606.08320 Differential Geometry +1606.08547 +1606.08568 Materials Science +1606.08614 Mesoscale and Nanoscale Physics +1606.08661 Optimization and Control +1606.08970 Group Theory +1606.09028 Solar and Stellar Astrophysics +1606.09071 Phenomenology +1606.09176 Information Theory +1606.09204 Astrophysics of Galaxies +1606.09212 Analysis of PDEs +1606.09217 +1606.09219 Robotics +1606.09242 Artificial Intelligence +1606.09244 History and Overview +1606.09248 Phenomenology +1606.09252 Astrophysics of Galaxies +1606.09258 Lattice +1606.09260 Theory +1606.09262 Mesoscale and Nanoscale Physics +1606.09266 Functional Analysis +1606.09268 Phenomenology +1606.09272 Mesoscale and Nanoscale Physics +1606.09274 Artificial Intelligence +1606.09275 Robotics +1606.09277 Neurons and Cognition +1606.09280 Optimization and Control +1606.09281 Computer Vision and Pattern Recognition +1606.09288 Statistics Theory +1606.09296 Artificial Intelligence +1606.09298 Optimization and Control +1606.09299 Group Theory +1606.09301 Algebraic Geometry +1606.09302 Soft Condensed Matter +1606.09303 Number Theory +1606.09305 Dynamical Systems +1606.09306 +1606.09308 Methodology +1606.09320 Number Theory +1606.09321 Probability +1606.09323 Pattern Formation and Solitons +1606.09325 +1606.09328 Complex Variables +1606.09329 Systems and Control +1606.09331 +1606.09333 Optimization and Control +1606.09335 High Energy Astrophysical Phenomena +1606.09341 +1606.09342 Rings and Algebras +1606.09343 Combinatorics +1606.09346 Analysis of PDEs +1606.09348 Populations and Evolution +1606.09349 Computer Vision and Pattern Recognition +1606.09354 Solar and Stellar Astrophysics +1606.09359 Representation Theory +1606.09361 +1606.09362 Statistical Mechanics +1606.09364 Optics +1606.09367 Computer Vision and Pattern Recognition +1606.09368 Discrete Mathematics +1606.09370 Computation and Language +1606.09371 Computation and Language +1606.09373 +1606.09374 Dynamical Systems +1606.09376 Databases +1606.09377 Algebraic Geometry +1606.09378 Differential Geometry +1606.09383 Learning +1606.09384 Algebraic Geometry +1606.09387 +1606.09388 Machine Learning +1606.09390 +1606.09391 Phenomenology +1606.09392 Numerical Analysis +1606.09393 Analysis of PDEs +1606.09395 Data Structures and Algorithms +1606.09399 Logic in Computer Science +1606.09401 Solar and Stellar Astrophysics +1606.09403 Computation and Language +1606.09404 Quantum Gases +1606.09408 Phenomenology +1606.09412 Combinatorics +1606.09413 Instrumentation and Detectors +1606.09418 Probability +1606.09421 +1606.09423 +1606.09427 Mesoscale and Nanoscale Physics +1606.09430 +1606.09431 Soft Condensed Matter +1606.09433 Robotics +1606.09438 Combinatorics +1606.09439 Superconductivity +1606.09440 Probability +1606.09442 +1606.09444 Algebraic Geometry +1606.09445 Representation Theory +1606.09452 Networking and Internet Architecture +1606.09456 Phenomenology +1606.09457 Phenomenology +1606.09458 Learning +1606.09460 +1606.09461 Numerical Analysis +1606.09464 Optics +1606.09465 +1606.09467 Analysis of PDEs +1606.09469 Phenomenology +1606.09470 Programming Languages +1606.09471 Optimization and Control +1606.09473 Atomic Physics +1606.09476 Materials Science +1606.09479 Theory +1606.09480 Dynamical Systems +1606.09481 Data Structures and Algorithms +1606.09487 Computational Physics +1606.09489 Atomic Physics +1606.09494 Information Theory +1606.09496 Combinatorics +1606.09497 Popular Physics +1606.09499 Phenomenology +1606.09501 Phenomenology +1606.09503 Analysis of PDEs +1606.09511 Representation Theory +1606.09512 Phenomenology +1606.09514 +1606.09515 Dynamical Systems +1606.09517 Machine Learning +1606.09521 Artificial Intelligence +1606.09522 Statistics Theory +1606.09523 Mesoscale and Nanoscale Physics +1606.09524 Plasma Physics +1606.09526 Phenomenology +1606.09530 Performance +1606.09531 Logic +1606.09532 Representation Theory +1606.09534 Quantum Algebra +1606.09537 Astrophysics of Galaxies +1606.09540 Graphics +1606.09544 Optimization and Control +1606.09546 Superconductivity +1606.09547 Numerical Analysis +1606.09548 Information Theory +1606.09550 Instrumentation and Detectors +1606.09552 Information Theory +1606.09553 Number Theory +1606.09555 Phenomenology +1606.09557 General Physics +1606.09560 Computation and Language +1606.09562 Solar and Stellar Astrophysics +1606.09567 Optimization and Control +1606.09568 General Physics +1606.09569 +1606.09570 General Physics +1606.09572 Phenomenology +1606.09574 Dynamical Systems +1606.09575 Combinatorics +1606.09577 Artificial Intelligence +1606.09583 Analysis of PDEs +1606.09584 Cosmology and Nongalactic Astrophysics +1606.09585 Methodology +1606.09587 +1606.09593 Theory +1606.09594 Artificial Intelligence +1606.09596 Computational Geometry +1606.09599 Superconductivity +1606.09600 Computation and Language +1606.09604 Computation and Language +1606.09605 Cryptography and Security +1606.09608 Algebraic Geometry +1606.09609 Plasma Physics +1606.09623 Combinatorics +1606.09629 Complex Variables +1606.09631 Algebraic Geometry +1606.09632 Learning +1606.09635 Numerical Analysis +1606.09637 Artificial Intelligence +1606.09642 Cosmology and Nongalactic Astrophysics +1606.09643 Combinatorics +astro-ph/0406436 +astro-ph/0608478 +cond-mat/0306372 Soft Condensed Matter +hep-lat/0507038 Lattice +hep-ph/0409292 Phenomenology +hep-ph/9905427 Phenomenology +math/0701634 Number Theory +0801.1923 Differential Geometry +0804.2059 Differential Geometry +1011.1389 +1012.3916 Differential Geometry +1105.1327 +1105.4596 Theory +1106.2761 Differential Geometry +1205.4230 Theory +1206.3923 Differential Geometry +1210.2792 Numerical Analysis +1301.0210 Theory +1303.2475 Representation Theory +1304.3217 Cosmology and Nongalactic Astrophysics +1304.5447 Algebraic Geometry +1305.4508 Information Theory +1306.1849 Computer Science and Game Theory +1307.2967 Physics and Society +1307.7672 Rings and Algebras +1308.0580 Information Theory +1310.0438 +1310.3317 Cosmology and Nongalactic Astrophysics +1312.2671 +1312.6382 Theory +1312.6433 Algebraic Geometry +1401.6772 Probability +1402.0233 Phenomenology +1402.3055 Theory +1403.1977 Differential Geometry +1403.5123 Geometric Topology +1404.0589 +1404.4131 Probability +1405.0816 Algebraic Geometry +1405.4860 Phenomenology +1405.7147 Combinatorics +1406.0338 Combinatorics +1406.5399 Quantum Algebra +1407.3345 Physics and Society +1407.3909 Astrophysics of Galaxies +1407.6092 Statistics Theory +1407.7014 Representation Theory +1407.8051 +1408.2322 Differential Geometry +1409.0129 Digital Libraries +1409.4462 Algebraic Topology +1409.7868 Analysis of PDEs +1410.3049 +1410.6529 Chemical Physics +1410.7140 Learning +1411.1051 Probability +1411.2992 Chemical Physics +1411.7502 Trading and Market Microstructure +1412.0523 Number Theory +1412.7275 Analysis of PDEs +1501.00890 Rings and Algebras +1501.02580 +1501.03774 Combinatorics +1501.07261 Phenomenology +1502.03650 Algebraic Topology +1502.03957 +1502.04822 Computation +1502.05445 Group Theory +1502.06502 Statistical Mechanics +1502.06578 Geometric Topology +1502.07256 Classical Analysis and ODEs +1503.01411 Strongly Correlated Electrons +1503.01539 Computer Science and Game Theory +1503.03672 Statistical Mechanics +1503.04463 Metric Geometry +1503.04878 Chemical Physics +1503.05553 Cosmology and Nongalactic Astrophysics +1503.06160 Numerical Analysis +1503.06290 Classical Analysis and ODEs +1503.06557 Soft Condensed Matter +1503.07572 Superconductivity +1503.08942 Representation Theory +1504.04428 Information Theory +1504.07525 Materials Science +1504.08159 Probability +1504.08329 Computational Physics +1505.00223 +1505.00225 +1505.01800 Differential Geometry +1505.01894 Chemical Physics +1505.02432 Algebraic Topology +1505.02554 Differential Geometry +1505.02567 Numerical Analysis +1505.06893 Data Structures and Algorithms +1505.07393 +1506.01088 Analysis of PDEs +1506.02066 Physics and Society +1506.02386 Social and Information Networks +1506.03722 Numerical Analysis +1506.04120 Popular Physics +1506.06108 +1506.07052 Commutative Algebra +1506.07103 Materials Science +1507.01482 Logic +1507.01746 Statistical Mechanics +1507.02530 Chemical Physics +1507.03401 Applications +1507.04481 Materials Science +1507.06846 +1507.07880 Learning +1507.07922 Phenomenology +1507.08722 Soft Condensed Matter +1508.06136 Soft Condensed Matter +1508.06675 Statistics Theory +1508.07565 Dynamical Systems +1509.02037 +1509.02316 Functional Analysis +1509.02445 +1509.02994 Analysis of PDEs +1509.03129 +1509.04031 Biological Physics +1509.07492 +1509.09207 Distributed, Parallel, and Cluster Computing +1510.00786 +1510.01455 Data Structures and Algorithms +1510.02703 Experiment +1510.03100 +1510.05283 Algebraic Topology +1510.06788 Software Engineering +1510.06913 Exactly Solvable and Integrable Systems +1510.07152 +1510.07319 Phenomenology +1510.08571 Plasma Physics +1511.00849 Systems and Control +1511.01169 Learning +1511.03049 Cosmology and Nongalactic Astrophysics +1511.03814 Computer Vision and Pattern Recognition +1511.04287 Materials Science +1511.04495 Plasma Physics +1511.05004 Strongly Correlated Electrons +1511.05093 Differential Geometry +1511.05262 Software Engineering +1511.05263 Software Engineering +1511.05879 Computer Vision and Pattern Recognition +1511.06391 Machine Learning +1511.06530 Computer Vision and Pattern Recognition +1511.06644 Learning +1511.06658 Theory +1511.07345 Information Theory +1511.07587 +1511.08911 Combinatorics +1511.08977 Information Theory +1512.00579 Theory +1512.00802 Dynamical Systems +1512.00951 Phenomenology +1512.01507 Combinatorics +1512.02007 Statistical Mechanics +1512.04875 Rings and Algebras +1512.04932 Computational Complexity +1512.05014 Superconductivity +1512.05312 Mesoscale and Nanoscale Physics +1512.05420 Quantitative Methods +1512.06694 Instrumentation and Methods for Astrophysics +1512.09019 +1601.00030 Soft Condensed Matter +1601.00031 Soft Condensed Matter +1601.00143 +1601.01205 Category Theory +1601.02575 Mesoscale and Nanoscale Physics +1601.02916 High Energy Astrophysical Phenomena +1601.03279 Numerical Analysis +1601.04024 Phenomenology +1601.04162 Combinatorics +1601.04172 Astrophysics of Galaxies +1601.04460 Physics and Society +1601.05568 Computation +1601.05791 Astrophysics of Galaxies +1601.06622 High Energy Astrophysical Phenomena +1601.06923 Artificial Intelligence +1601.07727 Representation Theory +1601.07856 Combinatorics +1602.00514 Analysis of PDEs +1602.00668 Molecular Networks +1602.01073 Mesoscale and Nanoscale Physics +1602.01252 Probability +1602.02063 Computer Science and Game Theory +1602.02448 Algebraic Topology +1602.02671 +1602.03061 Information Theory +1602.03224 Commutative Algebra +1602.03225 Commutative Algebra +1602.03226 Commutative Algebra +1602.03227 Commutative Algebra +1602.04038 Data Analysis, Statistics and Probability +1602.04049 Digital Libraries +1602.04177 Analysis of PDEs +1602.04498 Artificial Intelligence +1602.04797 Group Theory +1602.04956 Superconductivity +1602.04961 Superconductivity +1602.05368 Astrophysics of Galaxies +1602.05419 Optimization and Control +1602.05880 Representation Theory +1602.06155 Information Theory +1602.06305 Earth and Planetary Astrophysics +1602.06420 Logic in Computer Science +1602.06830 Fluid Dynamics +1602.07009 Systems and Control +1602.07146 Populations and Evolution +1602.07207 Quantitative Methods +1602.07259 Other Computer Science +1602.07296 Materials Science +1602.07299 +1602.07301 Metric Geometry +1602.07302 Chemical Physics +1602.07311 Neurons and Cognition +1602.07315 Mesoscale and Nanoscale Physics +1602.07320 Learning +1602.07323 Probability +1602.07324 Other Computer Science +1602.07327 Chemical Physics +1602.07330 Algebraic Geometry +1602.07332 Computer Vision and Pattern Recognition +1602.07335 Computer Vision and Pattern Recognition +1602.07336 Soft Condensed Matter +1602.07338 Social and Information Networks +1602.07340 Robotics +1602.07342 Probability +1602.07344 Physics Education +1602.07345 Theory +1602.07346 Differential Geometry +1602.07348 Computational Geometry +1602.07351 Data Structures and Algorithms +1602.07352 High Energy Astrophysical Phenomena +1602.07361 Materials Science +1602.07362 Computer Science and Game Theory +1602.07363 Numerical Analysis +1602.07365 Computational Geometry +1602.07366 Software Engineering +1602.07373 Neural and Evolutionary Computing +1602.07376 Physics Education +1602.07378 Dynamical Systems +1602.07379 Algebraic Geometry +1602.07383 Computer Vision and Pattern Recognition +1602.07385 +1602.07390 Physics Education +1602.07393 Computation and Language +1602.07394 Sound +1602.07399 Networking and Internet Architecture +1602.07403 Materials Science +1602.07407 Computational Complexity +1602.07409 Quantum Algebra +1602.07411 Superconductivity +1602.07425 Optimization and Control +1602.07426 Number Theory +1602.07428 Learning +1602.07434 +1602.07435 Computer Science and Game Theory +1602.07439 Materials Science +1602.07440 Statistics Theory +1602.07441 Theory +1602.07445 Complex Variables +1602.07446 Numerical Analysis +1602.07447 +1602.07449 Information Theory +1602.07450 Algebraic Geometry +1602.07452 General Finance +1602.07453 Multimedia +1602.07460 Phenomenology +1602.07464 Learning +1602.07466 Learning +1602.07467 Networking and Internet Architecture +1602.07473 Chaotic Dynamics +1602.07475 Computer Vision and Pattern Recognition +1602.07478 +1602.07479 Chaotic Dynamics +1602.07482 Cosmology and Nongalactic Astrophysics +1602.07484 Strongly Correlated Electrons +1602.07485 Probability +1602.07488 +1602.07490 Commutative Algebra +1602.07492 +1602.07494 K-Theory and Homology +1602.07499 High Energy Astrophysical Phenomena +1602.07500 Algebraic Topology +1602.07502 Algebraic Topology +1602.07504 Data Structures and Algorithms +1602.07510 Number Theory +1602.07514 +1602.07515 +1602.07516 +1602.07517 +1602.07520 +1602.07521 Materials Science +1602.07522 +1602.07526 Cosmology and Nongalactic Astrophysics +1602.07527 Computation +1602.07530 Soft Condensed Matter +1602.07532 Algebraic Geometry +1602.07534 General Physics +1602.07535 Computer Vision and Pattern Recognition +1602.07536 Cryptography and Security +1602.07538 General Mathematics +1602.07542 Computer Vision and Pattern Recognition +1602.07545 Mesoscale and Nanoscale Physics +1602.07549 Analysis of PDEs +1602.07550 Numerical Analysis +1602.07551 History and Overview +1602.07552 History and Overview +1602.07556 Formal Languages and Automata Theory +1602.07557 Combinatorics +1602.07559 Applications +1602.07566 Artificial Intelligence +1602.07567 Systems and Control +1602.07568 Combinatorics +1602.07573 Computer Vision and Pattern Recognition +1602.07577 Soft Condensed Matter +1602.07578 +1602.07579 Networking and Internet Architecture +1602.07581 Instrumentation and Methods for Astrophysics +1602.07584 Materials Science +1602.07585 Commutative Algebra +1602.07587 Computation +1602.07591 Systems and Control +1602.07594 Analysis of PDEs +1602.07595 Differential Geometry +1602.07600 High Energy Astrophysical Phenomena +1602.07601 High Energy Astrophysical Phenomena +1602.07602 +1602.07603 Geometric Topology +1602.07612 +1602.07614 Learning +1602.07615 Networking and Internet Architecture +1602.07616 Computational Complexity +1602.07617 Group Theory +1602.07618 Computation and Language +1602.07620 Computer Vision and Pattern Recognition +1602.07622 Spectral Theory +1602.07628 Economics +1602.07629 Classical Analysis and ODEs +1602.07630 Optimization and Control +1602.07631 Pattern Formation and Solitons +1602.07632 Algebraic Topology +1602.07633 Software Engineering +1602.07638 Symplectic Geometry +1602.07640 Computation +1602.07641 Robotics +1602.07645 Combinatorics +1602.07647 Optimization and Control +1602.07648 Physics Education +1602.07650 Geometric Topology +1602.07655 Materials Science +1602.07656 General Physics +1602.07658 Materials Science +1602.07660 Differential Geometry +1602.07661 Physics Education +1602.07662 Computers and Society +1602.07663 Trading and Market Microstructure +1602.07667 Logic +1602.07669 Mesoscale and Nanoscale Physics +1602.07674 +1602.07676 Phenomenology +1602.07677 Physics Education +1602.07678 Physics Education +1602.07679 Computer Vision and Pattern Recognition +0808.2007 Differential Geometry +1004.1315 Representation Theory +1005.5629 Representation Theory +1011.4043 Probability +1104.1785 History and Philosophy of Physics +1105.5445 Physics and Society +1106.2595 Number Theory +1202.2656 Algebraic Geometry +1203.2241 Logic in Computer Science +1211.3553 Cryptography and Security +1212.2154 Logic in Computer Science +1304.0118 Populations and Evolution +1304.3311 Number Theory +1307.8397 History and Philosophy of Physics +1308.4699 Quantum Gases +1308.6366 Geometric Topology +1309.2242 Strongly Correlated Electrons +1310.7278 Applications +1312.7583 History and Philosophy of Physics +1401.0508 History and Philosophy of Physics +1401.6160 Geometric Topology +1402.0293 Optimization and Control +1403.3303 Rings and Algebras +1404.2654 Mesoscale and Nanoscale Physics +1404.6725 Pattern Formation and Solitons +1405.0984 Differential Geometry +1405.7555 Applications +1406.6751 Statistics Theory +1408.0635 Phenomenology +1408.6017 Materials Science +1409.1529 Complex Variables +1409.3975 Symplectic Geometry +1410.2530 Symplectic Geometry +1411.0761 Algebraic Geometry +1411.4306 Symplectic Geometry +1412.0211 Category Theory +1412.0414 Spectral Theory +1412.2567 +1412.2849 Algebraic Geometry +1412.5473 Algebraic Geometry +1502.00583 Theory +1502.02509 Superconductivity +1503.03965 Computational Physics +1504.00241 Social and Information Networks +1504.00721 Combinatorics +1504.02928 Complex Variables +1504.06188 +1504.06377 Commutative Algebra +1504.07650 Theory +1504.07893 Discrete Mathematics +1504.07915 Materials Science +1504.08229 General Physics +1505.00095 Materials Science +1505.00335 Cryptography and Security +1505.00384 Neural and Evolutionary Computing +1505.00555 +1505.03600 Probability +1505.04262 Dynamical Systems +1505.05034 Combinatorics +1505.06288 Numerical Analysis +1505.07401 Geometric Topology +1506.00783 Differential Geometry +1506.00826 Quantum Algebra +1506.00985 +1506.01467 Analysis of PDEs +1506.03621 Pricing of Securities +1506.04304 Computer Vision and Pattern Recognition +1506.04717 Commutative Algebra +1506.06260 Group Theory +1506.06281 Mesoscale and Nanoscale Physics +1506.06945 Dynamical Systems +1506.07744 Optimization and Control +1506.09025 Representation Theory +1507.02208 Combinatorics +1507.02322 Analysis of PDEs +1507.02646 Computation +1507.03155 Group Theory +1507.05045 Applications +1507.07407 Algebraic Topology +1507.08417 Networking and Internet Architecture +1507.08577 Computation +1508.00364 +1508.00861 Algebraic Topology +1508.03010 Algebraic Geometry +1508.06989 +1508.07553 Dynamical Systems +1509.01310 Computation and Language +1509.01880 Information Theory +1509.03776 Mesoscale and Nanoscale Physics +1509.04393 Computation and Language +1509.04469 Chaotic Dynamics +1509.04950 Logic +1509.05084 Numerical Analysis +1509.05142 Learning +1509.07709 Geometric Topology +1509.07993 Computation +1509.08136 Algebraic Geometry +1509.08653 Classical Analysis and ODEs +1510.00404 General Mathematics +1510.00475 Probability +1510.01080 Materials Science +1510.01992 Analysis of PDEs +1510.02072 Analysis of PDEs +1510.03691 Phenomenology +1510.03859 +1510.05634 +1510.05798 +1510.05935 Number Theory +1510.07479 Superconductivity +1510.07668 Algebraic Geometry +1510.08298 +1510.08421 Phenomenology +1511.02624 +1511.06730 Applications +1511.08082 Information Theory +1511.08518 High Energy Astrophysical Phenomena +1511.08975 Information Theory +1512.01195 Systems and Control +1512.01975 Algebraic Topology +1512.02359 Analysis of PDEs +1512.02410 Mesoscale and Nanoscale Physics +1512.03271 Analysis of PDEs +1512.03970 Populations and Evolution +1512.04592 Probability +1512.06358 Representation Theory +1512.06732 Phenomenology +1512.06786 Quantum Gases +1512.06883 Functional Analysis +1512.07015 Probability +1512.07286 +1512.07590 Artificial Intelligence +1512.07980 Neural and Evolutionary Computing +1512.08338 Materials Science +1512.08722 Optimization and Control +1512.09216 +1601.00296 Rings and Algebras +1601.00431 Dynamical Systems +1601.01335 Quantum Gases +1601.02284 Information Theory +1601.02976 Analysis of PDEs +1601.03717 History and Philosophy of Physics +1601.04580 Computation and Language +1601.06780 Information Theory +1601.06907 Algebraic Geometry +1601.06935 Quantum Gases +1601.07996 Learning +1601.08123 Information Theory +1602.00052 Quantum Gases +1602.00250 Analysis of PDEs +1602.00339 Information Theory +1602.00738 Representation Theory +1602.01645 Phenomenology +1602.02087 Statistical Mechanics +1602.02285 Machine Learning +1602.02316 Probability +1602.02395 Complex Variables +1602.03572 Computation +1602.03786 Optimization and Control +1602.03795 Dynamical Systems +1602.04438 Mesoscale and Nanoscale Physics +1602.04560 Computational Complexity +1602.04583 Representation Theory +1602.04912 Statistics Theory +1602.05068 Phenomenology +1602.05092 Neurons and Cognition +1602.05409 Logic in Computer Science +1602.05581 Phenomenology +1602.06534 Quantum Algebra +1602.06950 High Energy Astrophysical Phenomena +1602.07249 Other Computer Science +1602.07471 Mesoscale and Nanoscale Physics +1602.08623 Algebraic Geometry +1603.00082 Computational Complexity +1603.00626 Materials Science +1603.01287 Cosmology and Nongalactic Astrophysics +1603.01323 Materials Science +1603.01405 Theory +1603.01638 Phenomenology +1603.01781 Classical Analysis and ODEs +1603.02717 Dynamical Systems +1603.03027 Strongly Correlated Electrons +1603.03474 Statistics Theory +1603.03824 Physics and Society +1603.03876 Computation and Language +1603.03949 Analysis of PDEs +1603.05933 Robotics +1603.07337 Cosmology and Nongalactic Astrophysics +1603.07831 Algebraic Geometry +1603.07864 +1603.07870 Optimization and Control +1603.07877 Dynamical Systems +1603.07932 +1603.08683 Materials Science +1603.08819 Data Structures and Algorithms +1603.08842 Exactly Solvable and Integrable Systems +1603.08894 +1603.09123 Learning +1603.09609 Operator Algebras +1604.00134 Plasma Physics +1604.00562 Computation and Language +1604.01130 Systems and Control +1604.01229 Functional Analysis +1604.02112 Numerical Analysis +1604.02125 Computer Vision and Pattern Recognition +1604.03252 Algebraic Geometry +1604.05378 Dynamical Systems +1604.05809 +1604.06119 Computer Vision and Pattern Recognition +1604.06573 Computer Vision and Pattern Recognition +1604.07092 +1604.07197 Theory +1604.07454 Phenomenology +1604.08131 High Energy Astrophysical Phenomena +1604.08633 Computation and Language +1605.00517 +1605.00555 Cosmology and Nongalactic Astrophysics +1605.00558 Data Structures and Algorithms +1605.00652 Mesoscale and Nanoscale Physics +1605.00820 +1605.02604 Number Theory +1605.02729 +1605.02869 Quantitative Methods +1605.03058 Analysis of PDEs +1605.03368 Differential Geometry +1605.03847 +1605.04469 Computation and Language +1605.04502 Computer Vision and Pattern Recognition +1605.04876 Networking and Internet Architecture +1605.05307 Algebraic Geometry +1605.05433 Computation and Language +1605.05442 Disordered Systems and Neural Networks +1605.06626 Analysis of PDEs +1605.06872 Probability +1605.06957 Optics +1605.07093 Algebraic Topology +1605.07458 Astrophysics of Galaxies +1605.07478 Atomic Physics +1605.07833 Learning +1605.07869 Computation and Language +1605.08339 Probability +1605.08900 Computation and Language +1605.08955 +1605.09258 Mesoscale and Nanoscale Physics +1605.09298 Classical Analysis and ODEs +1606.00323 Algebraic Geometry +1606.00499 Computation and Language +1606.00879 Computers and Society +1606.00895 +1606.00911 Systems and Control +1606.01139 Computational Physics +1606.01302 Phenomenology +1606.01648 Optimization and Control +1606.01847 Computer Vision and Pattern Recognition +1606.01933 Computation and Language +1606.02093 Phenomenology +1606.02196 Dynamical Systems +1606.02217 Theory +1606.02639 Number Theory +1606.02667 Statistical Mechanics +1606.02720 Mesoscale and Nanoscale Physics +1606.02815 Combinatorics +1606.02820 Computation and Language +1606.02821 Computation and Language +1606.03715 Analysis of PDEs +1606.03945 Materials Science +1606.04352 +1606.04428 Mesoscale and Nanoscale Physics +1606.04994 Statistical Mechanics +1606.05382 Learning +1606.05420 Functional Analysis +1606.05592 +1606.06030 Logic +1606.06598 Exactly Solvable and Integrable Systems +1606.06622 Computer Vision and Pattern Recognition +1606.06898 +1606.07046 Computation and Language +1606.07150 Cryptography and Security +1606.07235 Quantum Gases +1606.07609 Phenomenology +1606.08006 Strongly Correlated Electrons +1606.08008 Computer Vision and Pattern Recognition +1606.08059 Analysis of PDEs +1606.08359 Learning +1607.00112 Statistical Mechanics +1607.01312 Machine Learning +1607.01432 Computation and Language +1607.01672 Probability +1607.02464 Group Theory +1607.03396 +1607.03466 Algebraic Geometry +1607.03472 Algebraic Geometry +1607.03546 Differential Geometry +1607.04182 Optimization and Control +1607.04298 Performance +1607.05279 Strongly Correlated Electrons +1607.06307 Applications +1607.06481 Astrophysics of Galaxies +1607.06495 Experiment +1607.06682 Earth and Planetary Astrophysics +1607.07352 Phenomenology +1607.07964 Complex Variables +1607.07995 Distributed, Parallel, and Cluster Computing +1607.08163 Geometric Topology +1607.08378 Computer Vision and Pattern Recognition +1607.08825 Lattice +1608.00246 +1608.00305 Theory +1608.00317 Disordered Systems and Neural Networks +1608.00377 Mesoscale and Nanoscale Physics +1608.00786 High Energy Astrophysical Phenomena +1608.01041 Computer Vision and Pattern Recognition +1608.01043 Superconductivity +1608.01056 Computation and Language +1608.02054 Physics and Society +1608.02293 Algebraic Geometry +1608.02919 Complex Variables +1608.03407 Fluid Dynamics +1608.03607 Theory +1608.04054 Biomolecules +1608.04238 Astrophysics of Galaxies +1608.04588 Commutative Algebra +1608.05744 Combinatorics +1608.06186 +1608.06568 Combinatorics +1608.06956 Algebraic Topology +1608.07533 Optimization and Control +1608.07627 Algebraic Geometry +1608.08116 Theory +1608.08286 Soft Condensed Matter +1608.08394 Plasma Physics +1609.00141 Applications +1609.00370 +1609.00531 Logic +1609.00923 Materials Science +1609.01027 Algebraic Geometry +1609.01051 Machine Learning +1609.01133 Number Theory +1609.01246 Strongly Correlated Electrons +1609.01254 Operator Algebras +1609.01470 Theory +1609.02339 Human-Computer Interaction +1609.02980 Methodology +1609.02983 Methodology +1609.02984 Methodology +1609.02986 Methodology +1609.03038 Rings and Algebras +1609.03356 High Energy Astrophysical Phenomena +1609.03552 Computer Vision and Pattern Recognition +1609.03631 Dynamical Systems +1609.03681 Theory +1609.03982 +1609.04268 History and Philosophy of Physics +1609.04344 Geometric Topology +1609.04387 Computer Vision and Pattern Recognition +1609.04473 Dynamical Systems +1609.04714 Combinatorics +1609.04763 +1609.04861 Computer Vision and Pattern Recognition +1609.04884 Functional Analysis +1609.05321 Biological Physics +1609.05409 Number Theory +1609.05926 Emerging Technologies +1609.05956 Representation Theory +1609.06068 Optimization and Control +1609.06071 Networking and Internet Architecture +1609.06075 Functional Analysis +1609.06369 Optimization and Control +1609.06402 Probability +1609.06472 Strongly Correlated Electrons +1609.06616 Computation and Language +1609.06810 Combinatorics +1609.07004 Lattice +1609.07057 +1609.07066 Probability +1609.07082 Learning +1609.07249 +1609.07277 +1609.07287 Astrophysics of Galaxies +1609.07351 +1609.07411 Dynamical Systems +1609.07480 Applications +1609.07484 High Energy Astrophysical Phenomena +1609.07495 Computer Vision and Pattern Recognition +1609.07498 Sound +1609.07499 Cryptography and Security +1609.07501 Systems and Control +1609.07502 Strongly Correlated Electrons +1609.07505 Optimization and Control +1609.07507 Theory +1609.07508 +1609.07509 Logic +1609.07511 Applications +1609.07513 Instrumentation and Detectors +1609.07517 Computational Geometry +1609.07518 Systems and Control +1609.07519 Logic +1609.07521 Machine Learning +1609.07522 Logic +1609.07523 Complex Variables +1609.07525 Combinatorics +1609.07528 Information Theory +1609.07531 Computer Science and Game Theory +1609.07534 Systems and Control +1609.07536 Systems and Control +1609.07537 Optimization and Control +1609.07540 Learning +1609.07541 Dynamical Systems +1609.07542 Robotics +1609.07549 +1609.07551 Quantum Algebra +1609.07555 General Mathematics +1609.07558 Pricing of Securities +1609.07560 Robotics +1609.07561 Computation and Language +1609.07565 Algebraic Topology +1609.07567 Atomic Physics +1609.07568 Computation and Language +1609.07569 Physics and Society +1609.07582 Mesoscale and Nanoscale Physics +1609.07583 Phenomenology +1609.07585 Computation and Language +1609.07586 Geophysics +1609.07587 High Energy Astrophysical Phenomena +1609.07588 Systems and Control +1609.07590 +1609.07591 Symplectic Geometry +1609.07592 Robotics +1609.07595 +1609.07596 Analysis of PDEs +1609.07597 Computer Vision and Pattern Recognition +1609.07598 Spectral Theory +1609.07599 Computer Vision and Pattern Recognition +1609.07600 Mesoscale and Nanoscale Physics +1609.07601 Analysis of PDEs +1609.07602 Cryptography and Security +1609.07603 Distributed, Parallel, and Cluster Computing +1609.07605 Statistical Mechanics +1609.07606 Statistical Mechanics +1609.07607 Statistical Mechanics +1609.07610 Number Theory +1609.07613 Rings and Algebras +1609.07615 Computer Vision and Pattern Recognition +1609.07621 Theory +1609.07626 Superconductivity +1609.07627 Number Theory +1609.07628 Analysis of PDEs +1609.07629 Networking and Internet Architecture +1609.07630 Multimedia +1609.07634 Materials Science +1609.07635 Group Theory +1609.07636 Probability +1609.07637 Methodology +1609.07638 Combinatorics +1609.07639 Combinatorics +1609.07642 Emerging Technologies +1609.07643 Networking and Internet Architecture +1609.07645 Logic +1609.07656 Neurons and Cognition +1609.07657 Phenomenology +1609.07662 Applications +1609.07664 Machine Learning +1609.07665 +1609.07666 Information Theory +1609.07667 Dynamical Systems +1609.07668 Biological Physics +1609.07669 Number Theory +1609.07671 Quantum Gases +1609.07673 Combinatorics +1609.07676 Data Structures and Algorithms +1609.07677 Number Theory +1609.07678 Chemical Physics +1609.07679 Probability +1609.07680 Computation and Language +1609.07681 Computation and Language +1609.07682 Probability +1609.07683 Instrumentation and Methods for Astrophysics +1609.07688 Human-Computer Interaction +1609.07689 +1609.07690 Methodology +1609.07691 Medical Physics +1609.07692 Phenomenology +1609.07693 +1609.07694 Logic +1609.07696 Statistics Theory +1609.07697 Physics and Society +1609.07699 Algebraic Topology +1609.07701 Computation and Language +1609.07702 Complex Variables +1609.07703 +1609.07704 +1609.07706 Neural and Evolutionary Computing +1609.07708 Phenomenology +1609.07711 Information Theory +1609.07712 Networking and Internet Architecture +1609.07714 Methodology +1609.07719 Numerical Analysis +1609.07720 Robotics +1609.07722 Neural and Evolutionary Computing +1609.07724 Neural and Evolutionary Computing +1609.07725 +1609.07728 Algebraic Geometry +1609.07736 Formal Languages and Automata Theory +1609.07737 Differential Geometry +1609.07738 Graphics +1609.07740 Solar and Stellar Astrophysics +1609.07741 Strongly Correlated Electrons +1609.07743 Earth and Planetary Astrophysics +1609.07746 Commutative Algebra +1609.07747 Metric Geometry +1609.07749 Metric Geometry +1609.07750 Neural and Evolutionary Computing +1609.07752 Statistical Mechanics +1609.07753 Complex Variables +1609.07755 Complex Variables +1609.07756 Computation and Language +1609.07757 Chemical Physics +1609.07758 Numerical Analysis +1609.07762 Cosmology and Nongalactic Astrophysics +1609.07764 Dynamical Systems +1609.07765 Soft Condensed Matter +1609.07770 Cryptography and Security +1609.07771 Algebraic Geometry +1609.07772 Artificial Intelligence +1609.07775 +1609.07776 Operator Algebras +1609.07778 Functional Analysis +1609.07779 History and Overview +1609.07780 Data Structures and Algorithms +1609.07781 Networking and Internet Architecture +1609.07785 Materials Science +1609.07787 Phenomenology +1609.07788 Phenomenology +1609.07789 Combinatorics +1609.07790 Mesoscale and Nanoscale Physics +1609.07791 Functional Analysis +1609.07793 +1609.07794 Complex Variables +1609.07795 +1609.07796 Social and Information Networks +1609.07799 Quantitative Methods +1609.07800 Algebraic Geometry +1609.07801 Mesoscale and Nanoscale Physics +1609.07802 Dynamical Systems +1609.07803 Experiment +1609.07804 +1609.07805 Geometric Topology +1609.07806 Applications +1609.07808 Complex Variables +1609.07811 Analysis of PDEs +1609.07813 Rings and Algebras +1609.07814 +1609.07816 Instrumentation and Detectors +1609.07817 Information Theory +1609.07818 Software Engineering +1609.07819 Geometric Topology +1609.07820 Operator Algebras +1609.07823 Databases +1609.07825 Exactly Solvable and Integrable Systems +1609.07826 Computer Vision and Pattern Recognition +1609.07827 Information Theory +1609.07828 Strongly Correlated Electrons +1609.07829 Materials Science +1609.07830 Information Theory +1609.07831 Materials Science +1609.07832 Theory +1609.07833 Combinatorics +1609.07835 Robotics +1609.07838 +1609.07840 Combinatorics +1609.07843 Computation and Language +1609.07846 +1609.07847 Probability +1609.07848 Multimedia +1609.07849 Robotics +1609.07852 Functional Analysis +1609.07853 Quantitative Methods +1609.07857 Instrumentation and Detectors +1609.07858 Numerical Analysis +1609.07860 Computer Science and Game Theory +1609.07862 Number Theory +1609.07864 Algebraic Geometry +1609.07866 Information Theory +1609.07867 High Energy Astrophysical Phenomena +1609.07870 Representation Theory +1609.07871 Mesoscale and Nanoscale Physics +1609.07876 Computation and Language +1609.07877 +1609.07878 Computer Vision and Pattern Recognition +1609.07879 Number Theory +1609.07880 Differential Geometry +1609.07884 Physics and Society +1609.07887 Statistics Theory +1609.07888 Numerical Analysis +1609.07892 Biological Physics +1609.07893 Complex Variables +1609.07894 Mesoscale and Nanoscale Physics +1609.07895 Logic in Computer Science +1609.07896 Astrophysics of Galaxies +1609.07897 Risk Management +1609.07899 Computers and Society +1609.07900 Algebraic Geometry +1609.07902 Computational Engineering, Finance, and Science +1609.07903 Mathematical Finance +1609.07905 Materials Science +1609.07908 Functional Analysis +1609.07909 Statistical Mechanics +1609.07910 Robotics +1609.07911 Computers and Society +1609.07912 Applications +1609.07917 Optics +1609.07918 Optimization and Control +1609.07922 Cryptography and Security +1609.07923 Information Theory +1609.07924 Group Theory +1609.07926 Number Theory +1609.07928 +1609.07929 Functional Analysis +1609.07932 +1609.07934 Number Theory +1609.07935 Number Theory +1609.07936 Computational Physics +1609.07937 Cosmology and Nongalactic Astrophysics +1609.07938 Number Theory +1609.07939 Soft Condensed Matter +1609.07941 Exactly Solvable and Integrable Systems +1609.07942 Statistics Theory +1609.07943 Instrumentation and Methods for Astrophysics +1609.07945 Analysis of PDEs +1609.07946 +1609.07947 +1609.07949 Instrumentation and Detectors +1609.07950 Materials Science +1609.07952 Instrumentation and Methods for Astrophysics +1609.07953 Statistics Theory +1609.07955 Robotics +1609.07958 Methodology +1609.07960 Fluid Dynamics +1609.07961 +1609.07963 Theory +1609.07965 Analysis of PDEs +1609.07966 Materials Science +1609.07970 Logic +1609.07972 Logic in Computer Science +1609.07975 Digital Libraries +1609.07976 Earth and Planetary Astrophysics +1609.07978 Information Theory +1609.07983 Databases +1609.07984 General Physics +1609.07985 Optimization and Control +1609.07990 Instrumentation and Detectors +1609.07991 General Mathematics +1609.07994 Data Structures and Algorithms +1609.07995 Spectral Theory +1609.07997 Combinatorics +1609.07999 General Mathematics +1609.08000 General Mathematics +1609.08003 Mesoscale and Nanoscale Physics +1609.08005 Materials Science +1609.08006 Classical Analysis and ODEs +1609.08007 Combinatorics +1609.08008 Theory +1609.08009 Robotics +1609.08011 Classical Analysis and ODEs +1609.08012 Cosmology and Nongalactic Astrophysics +1609.08014 Functional Analysis +1609.08015 Differential Geometry +1609.08021 +1609.08025 +1609.08030 Physics and Society +1609.08031 Algebraic Geometry +1609.08032 Differential Geometry +1609.08035 Quantitative Methods +1609.08036 Differential Geometry +1609.08037 Probability +1609.08041 Optics +1609.08042 Multimedia +1609.08043 Methodology +1609.08048 Classical Analysis and ODEs +1609.08049 Digital Libraries +1609.08050 Optimization and Control +1609.08054 Commutative Algebra +1609.08056 Instrumentation and Detectors +1609.08057 Geometric Topology +1609.08059 Computational Complexity +1609.08063 Numerical Analysis +1609.08064 Probability +1609.08065 Theory +1609.08069 Instrumentation and Methods for Astrophysics +1609.08072 Combinatorics +1609.08073 Probability +1609.08074 +1609.08075 Computation and Language +1609.08077 Algebraic Topology +1609.08079 Combinatorics +1609.08080 Computer Vision and Pattern Recognition +1609.08083 Neurons and Cognition +1609.08084 Computation and Language +1609.08087 Algebraic Geometry +1609.08095 Data Structures and Algorithms +1609.08097 Computation and Language +1609.08098 Spectral Theory +1609.08099 Adaptation and Self-Organizing Systems +1609.08101 Numerical Analysis +1609.08103 +1609.08106 Combinatorics +1609.08107 Probability +1609.08109 Optics +1609.08111 Probability +1609.08112 Rings and Algebras +1609.08113 Instrumentation and Detectors +1609.08114 Distributed, Parallel, and Cluster Computing +1609.08117 Information Theory +1609.08118 Analysis of PDEs +1609.08121 Optimization and Control +1609.08124 Computer Vision and Pattern Recognition +1609.08125 Classical Analysis and ODEs +1609.08126 +1609.08128 Algebraic Geometry +1609.08132 Computational Geometry +1609.08137 Information Theory +1609.08138 Information Theory +1609.08139 Computation and Language +1609.08140 Classical Analysis and ODEs +1609.08141 Networking and Internet Architecture +1609.08142 Strongly Correlated Electrons +1609.08143 Cosmology and Nongalactic Astrophysics +cs/0409039 Computational Complexity +0808.1320 Algebraic Geometry +0810.1352 Symplectic Geometry +0810.1353 Commutative Algebra +0902.1299 +0908.1457 +0910.0577 Algebraic Geometry +1012.4583 +1101.3199 Algebraic Geometry +1106.0832 Chaotic Dynamics +1106.1768 Classical Analysis and ODEs +1108.2414 Probability +1110.0104 Algebraic Geometry +1203.4247 Mesoscale and Nanoscale Physics +1205.1873 Classical Analysis and ODEs +1208.2871 Metric Geometry +1209.1504 Statistical Mechanics +1210.3784 Solar and Stellar Astrophysics +1210.7111 Pricing of Securities +1212.2331 Metric Geometry +1301.0699 Classical Analysis and ODEs +1304.8069 Numerical Analysis +1305.6014 Algebraic Geometry +1305.7498 Geometric Topology +1308.0499 Numerical Analysis +1309.4795 Geometric Topology +1310.8638 Differential Geometry +1311.4451 Computational Complexity +1311.5028 Numerical Analysis +1311.6308 Algebraic Geometry +1312.5615 Group Theory +1402.3993 Complex Variables +1402.6604 Geophysics +1403.0691 Combinatorics +1403.1495 Phenomenology +1403.4544 Machine Learning +1405.5824 Combinatorics +1405.6083 Number Theory +1406.6441 Physics and Society +1407.4418 Probability +1407.5936 Theory +1408.3328 Numerical Analysis +1408.5194 Algebraic Geometry +1409.7304 Operator Algebras +1410.6682 Phenomenology +1411.2236 Category Theory +1411.4381 Complex Variables +1411.6884 Computational Engineering, Finance, and Science +1412.1995 Group Theory +1412.7299 Methodology +1412.8061 Commutative Algebra +1502.01335 Computational Complexity +1503.00949 Computer Vision and Pattern Recognition +1503.02006 General Physics +1503.03685 Rings and Algebras +1503.05140 Quantitative Methods +1504.00256 +1504.00624 Machine Learning +1504.01694 Biological Physics +1504.03167 Computational Physics +1505.00035 Atomic Physics +1505.07553 Cryptography and Security +1505.07734 Distributed, Parallel, and Cluster Computing +1506.01972 Learning +1506.02159 Numerical Analysis +1506.03393 Atomic Physics +1506.03805 Machine Learning +1506.04313 Probability +1506.07678 Combinatorics +1507.00817 Algebraic Geometry +1507.02540 +1507.02747 Geometric Topology +1507.06092 Optimization and Control +1507.06212 Optics +1508.00554 Theory +1508.03420 Computer Science and Game Theory +1508.03922 Algebraic Geometry +1508.06464 Computer Vision and Pattern Recognition +1509.05771 Phenomenology +1509.07892 Learning +1509.08475 Theory +1510.00857 Computer Vision and Pattern Recognition +1510.03894 Phenomenology +1510.05468 +1510.07338 Cryptography and Security +1510.08836 Algebraic Geometry +1510.08961 Materials Science +1510.09019 Combinatorics +1511.00484 +1511.00747 Complex Variables +1511.03054 Dynamical Systems +1511.03516 Probability +1511.04338 Neurons and Cognition +1511.04365 Phenomenology +1511.04542 Biological Physics +1511.05059 Algebraic Geometry +1511.05678 Learning +1511.06028 Statistics Theory +1511.07677 Fluid Dynamics +1511.08192 Materials Science +1511.08375 Computational Physics +1512.00073 Theory +1512.02062 Networking and Internet Architecture +1512.03699 +1512.04800 General Physics +1512.05848 Dynamical Systems +1512.06016 Analysis of PDEs +1512.06761 +1512.08510 Mesoscale and Nanoscale Physics +1512.09103 Optimization and Control +1512.09342 Earth and Planetary Astrophysics +1601.00060 Differential Geometry +1601.00307 Dynamical Systems +1601.01042 Quantum Gases +1601.02365 +1601.02466 Mesoscale and Nanoscale Physics +1601.03243 Molecular Networks +1601.03946 +1601.04342 Phenomenology +1601.04916 Phenomenology +1601.06094 Information Theory +1601.06167 Statistical Mechanics +1601.06208 Information Theory +1601.06720 Fluid Dynamics +1601.07868 +1602.01392 Data Analysis, Statistics and Probability +1602.02282 Machine Learning +1602.03050 Computational Complexity +1602.03748 Strongly Correlated Electrons +1602.04380 Strongly Correlated Electrons +1602.04724 Theory +1602.05352 Learning +1602.06042 Machine Learning +1603.00144 +1603.00448 Learning +1603.00752 Data Analysis, Statistics and Probability +1603.01504 Materials Science +1603.01581 Artificial Intelligence +1603.02162 Other Condensed Matter +1603.03821 +1603.04495 Phenomenology +1603.04634 Chemical Physics +1603.04723 Phenomenology +1603.06103 Number Theory +1603.06532 Atmospheric and Oceanic Physics +1603.06865 Algebraic Topology +1603.07354 Phenomenology +1603.08178 Theory +1603.08861 Learning +1603.09377 +1604.02027 Learning +1604.02311 +1604.02491 Combinatorics +1604.02658 Phenomenology +1604.02828 Optics +1604.03409 Biomolecules +1604.03604 +1604.03753 General Mathematics +1604.03930 Learning +1604.05385 +1604.05581 Metric Geometry +1604.05667 Solar and Stellar Astrophysics +1604.06534 +1604.06778 Learning +1604.08859 Learning +1605.01287 Dynamical Systems +1605.01327 Mathematical Finance +1605.02226 Learning +1605.04288 Combinatorics +1605.04504 Numerical Analysis +1605.04627 Mesoscale and Nanoscale Physics +1605.04766 Probability +1605.04951 Social and Information Networks +1605.05989 Emerging Technologies +1605.06634 Analysis of PDEs +1605.07144 Machine Learning +1605.07221 Machine Learning +1605.07475 Phenomenology +1605.07757 Representation Theory +1605.08013 Combinatorics +1605.08233 Learning +1605.08234 Disordered Systems and Neural Networks +1605.08367 Artificial Intelligence +1605.08441 Methodology +1605.08443 Cosmology and Nongalactic Astrophysics +1605.08446 Dynamical Systems +1605.08448 Data Structures and Algorithms +1605.08450 Sound +1605.08452 Quantum Gases +1605.08453 Probability +1605.08455 Learning +1605.08457 +1605.08458 Fluid Dynamics +1605.08460 Geometric Topology +1605.08461 Differential Geometry +1605.08464 Computer Vision and Pattern Recognition +1605.08466 Methodology +1605.08467 Statistics Theory +1605.08470 Computer Vision and Pattern Recognition +1605.08473 Methodology +1605.08475 Programming Languages +1605.08481 Learning +1605.08484 Computers and Society +1605.08486 Social and Information Networks +1605.08489 Accelerator Physics +1605.08490 Social and Information Networks +1605.08491 Learning +1605.08495 +1605.08496 +1605.08497 Learning +1605.08500 Functional Analysis +1605.08501 Machine Learning +1605.08504 Theory +1605.08506 +1605.08508 +1605.08510 Dynamical Systems +1605.08513 Information Theory +1605.08515 Information Theory +1605.08516 Classical Analysis and ODEs +1605.08519 +1605.08527 Optimization and Control +1605.08534 Statistics Theory +1605.08535 Software Engineering +1605.08536 Materials Science +1605.08538 Optimization and Control +1605.08540 Discrete Mathematics +1605.08541 Superconductivity +1605.08542 Systems and Control +1605.08543 Computer Vision and Pattern Recognition +1605.08546 Phenomenology +1605.08552 Information Theory +1605.08554 Cryptography and Security +1605.08558 Methodology +1605.08559 Astrophysics of Galaxies +1605.08560 Analysis of PDEs +1605.08561 Materials Science +1605.08563 Cryptography and Security +1605.08565 Optimization and Control +1605.08567 Cryptography and Security +1605.08568 Numerical Analysis +1605.08575 Populations and Evolution +1605.08576 Computation +1605.08577 Phenomenology +1605.08578 Solar and Stellar Astrophysics +1605.08579 Phenomenology +1605.08581 Functional Analysis +1605.08583 Analysis of PDEs +1605.08584 Physics and Society +1605.08591 Combinatorics +1605.08592 Dynamical Systems +1605.08593 K-Theory and Homology +1605.08594 Dynamical Systems +1605.08597 Combinatorics +1605.08598 Materials Science +1605.08602 Soft Condensed Matter +1605.08604 Mesoscale and Nanoscale Physics +1605.08612 Quantitative Methods +1605.08615 Rings and Algebras +1605.08616 Data Structures and Algorithms +1605.08617 +1605.08618 Learning +1605.08622 Pattern Formation and Solitons +1605.08623 Chaotic Dynamics +1605.08625 Probability +1605.08626 Phenomenology +1605.08627 Category Theory +1605.08629 Combinatorics +1605.08630 Information Theory +1605.08632 Systems and Control +1605.08635 Probability +1605.08637 Lattice +1605.08638 Numerical Analysis +1605.08639 General Literature +1605.08640 Combinatorics +1605.08642 Cryptography and Security +1605.08643 Materials Science +1605.08645 Mesoscale and Nanoscale Physics +1605.08649 +1605.08656 Complex Variables +1605.08660 Classical Analysis and ODEs +1605.08667 Statistics Theory +1605.08668 Optics +1605.08669 Numerical Analysis +1605.08670 Metric Geometry +1605.08671 Machine Learning +1605.08672 Analysis of PDEs +1605.08674 Complex Variables +1605.08675 Computation and Language +1605.08679 Quantum Gases +1605.08680 Computer Vision and Pattern Recognition +1605.08683 Complex Variables +1605.08687 Numerical Analysis +1605.08688 Combinatorics +1605.08689 Mesoscale and Nanoscale Physics +1605.08691 Functional Analysis +1605.08692 Medical Physics +1605.08702 Mesoscale and Nanoscale Physics +1605.08703 Statistical Mechanics +1605.08704 Analysis of PDEs +1605.08705 Data Analysis, Statistics and Probability +1605.08707 Complex Variables +1605.08708 Algebraic Topology +1605.08709 Complex Variables +1605.08712 Optimization and Control +1605.08714 Networking and Internet Architecture +1605.08716 Dynamical Systems +1605.08718 Dynamical Systems +1605.08721 Probability +1605.08722 Learning +1605.08723 Chemical Physics +1605.08724 Phenomenology +1605.08725 Dynamical Systems +1605.08730 Classical Analysis and ODEs +1605.08731 Dynamical Systems +1605.08732 Methodology +1605.08739 Algebraic Geometry +1605.08746 Numerical Analysis +1605.08747 Mesoscale and Nanoscale Physics +1605.08748 Other Condensed Matter +1605.08749 Human-Computer Interaction +1605.08750 Lattice +1605.08752 Combinatorics +1605.08753 Applications +1605.08754 Data Structures and Algorithms +1605.08755 Materials Science +1605.08756 Mesoscale and Nanoscale Physics +1605.08759 Applications +1605.08764 Computation and Language +1605.08765 Chaotic Dynamics +1605.08766 Computers and Society +1605.08770 Cosmology and Nongalactic Astrophysics +1605.08771 Numerical Analysis +quant-ph/0309212 +1006.0744 Combinatorics +1012.5438 Earth and Planetary Astrophysics +1111.7254 +1203.6110 Optics +1212.6014 Functional Analysis +1305.0885 +1307.0239 Methodology +1307.2137 Combinatorics +1307.6527 Algebraic Geometry +1308.3895 Analysis of PDEs +1308.5709 Functional Analysis +1309.6642 Theory +1310.2250 Theory +1311.4134 Mesoscale and Nanoscale Physics +1311.7634 Probability +1402.0624 +1402.2766 Optimization and Control +1403.0428 Analysis of PDEs +1403.0632 Functional Analysis +1403.1534 Theory +1403.3142 Computation and Language +1403.4370 Applications +1406.0022 Information Theory +1406.3105 Probability +1407.6179 Superconductivity +1408.0358 Materials Science +1408.5545 Numerical Analysis +1408.6656 Representation Theory +1409.1499 Probability +1409.2083 Analysis of PDEs +1409.5072 Materials Science +1409.8403 Computer Vision and Pattern Recognition +1410.0211 +1410.0807 Probability +1410.1372 Metric Geometry +1410.3990 Category Theory +1411.0043 Mesoscale and Nanoscale Physics +1411.1739 Number Theory +1411.3541 Quantum Gases +1411.3984 Statistics Theory +1411.4722 Probability +1411.7021 Optics +1412.1892 +1501.00862 Representation Theory +1501.01177 Quantum Gases +1501.06898 Algebraic Geometry +1502.02521 Algebraic Geometry +1502.02592 +1502.04354 Data Structures and Algorithms +1502.06889 +1503.00748 Optics +1503.01071 Probability +1503.01514 Networking and Internet Architecture +1503.02232 Dynamical Systems +1503.03742 Optimization and Control +1503.05815 Mesoscale and Nanoscale Physics +1503.07538 +1503.07731 +1504.05455 Information Theory +1504.06819 Strongly Correlated Electrons +1504.07189 Classical Analysis and ODEs +1505.04011 +1506.01433 +1506.04905 General Mathematics +1506.07203 Rings and Algebras +1506.08227 Geometric Topology +1507.01840 Superconductivity +1507.04634 Superconductivity +1507.05375 Rings and Algebras +1507.06213 Rings and Algebras +1508.00715 Computation and Language +1508.01041 Computational Engineering, Finance, and Science +1508.01045 Logic in Computer Science +1508.05652 Methodology +1508.06813 Theory +1508.07330 Cosmology and Nongalactic Astrophysics +1509.00212 +1509.00556 Social and Information Networks +1509.02552 Optics +1509.03233 Quantum Gases +1509.06935 Mathematical Software +1509.07928 Information Theory +1509.08375 Optics +1510.00039 Probability +1510.01409 Analysis of PDEs +1510.02046 General Mathematics +1510.03969 +1510.05911 Databases +1511.04631 Cryptography and Security +1511.05403 Phenomenology +1511.05905 Representation Theory +1511.06256 +1511.06630 Materials Science +1511.07903 Information Theory +1511.08071 +1511.08100 Statistical Mechanics +1511.09241 Materials Science +1512.00328 Accelerator Physics +1512.01495 Statistical Mechanics +1512.01536 Biological Physics +1512.02145 Experiment +1512.02602 Neurons and Cognition +1512.03689 Phenomenology +1512.03966 Quantum Algebra +1512.04868 +1512.05146 Dynamical Systems +1512.05210 Statistical Mechanics +1512.05407 Functional Analysis +1512.07097 +1512.07175 +1512.07609 +1512.08206 Chemical Physics +1512.08208 Optics +1512.08690 Materials Science +1512.09005 Algebraic Geometry +1512.09317 Materials Science +1601.00371 Quantum Gases +1601.00424 Soft Condensed Matter +1601.00586 Phenomenology +1601.00661 Phenomenology +1601.01260 +1601.01623 General Mathematics +1601.03240 Databases +1601.04080 Strongly Correlated Electrons +1601.05693 Superconductivity +1601.06144 Analysis of PDEs +1601.06185 Strongly Correlated Electrons +1601.07291 Populations and Evolution +1602.01933 +1602.03830 Mesoscale and Nanoscale Physics +1602.04258 Populations and Evolution +1602.05152 Computational Complexity +1602.06147 Quantum Gases +1602.06263 Materials Science +1602.06383 Statistics Theory +1602.06530 Number Theory +1602.06935 Physics and Society +1602.07166 Atomic Physics +1602.08924 Number Theory +1602.09065 Computer Vision and Pattern Recognition +1603.00089 +1603.00736 General Finance +1603.05140 Mesoscale and Nanoscale Physics +1603.05296 Optimization and Control +1603.06580 Phenomenology +1603.06696 Rings and Algebras +1603.06715 +1603.07045 Analysis of PDEs +1603.07435 Numerical Analysis +1603.08374 Strongly Correlated Electrons +1603.08709 Dynamical Systems +1604.00471 Materials Science +1604.01253 General Physics +1604.01323 Superconductivity +1604.02873 Soft Condensed Matter +1604.03464 Algebraic Geometry +1604.03770 +1604.03792 General Mathematics +1604.03831 Functional Analysis +1604.04093 +1604.04479 Materials Science +1604.04603 Optimization and Control +1604.04865 Materials Science +1604.05319 Phenomenology +1604.05392 Differential Geometry +1604.05422 Differential Geometry +1604.05426 Differential Geometry +1604.05542 Cryptography and Security +1604.05601 Number Theory +1604.05608 Number Theory +1604.05656 Superconductivity +1604.05668 Cryptography and Security +1604.05717 Operator Algebras +1604.05725 Earth and Planetary Astrophysics +1604.05740 Rings and Algebras +1604.05743 Differential Geometry +1604.05745 Differential Geometry +1604.05747 Computation and Language +1604.05748 +1604.05749 +1604.05750 Digital Libraries +1604.05753 Learning +1604.05754 Information Retrieval +1604.05755 Group Theory +1604.05757 Discrete Mathematics +1604.05760 Analysis of PDEs +1604.05764 Numerical Analysis +1604.05765 Data Structures and Algorithms +1604.05766 Computer Vision and Pattern Recognition +1604.05767 +1604.05771 Economics +1604.05774 Phenomenology +1604.05776 High Energy Astrophysical Phenomena +1604.05777 Algebraic Geometry +1604.05782 Optics +1604.05783 Analysis of PDEs +1604.05784 Solar and Stellar Astrophysics +1604.05785 Optics +1604.05786 Solar and Stellar Astrophysics +1604.05790 Robotics +1604.05791 Artificial Intelligence +1604.05792 Neural and Evolutionary Computing +1604.05793 Human-Computer Interaction +1604.05797 Human-Computer Interaction +1604.05799 Multimedia +1604.05802 Atmospheric and Oceanic Physics +1604.05806 Number Theory +1604.05811 Networking and Internet Architecture +1604.05813 Information Retrieval +1604.05815 Differential Geometry +1604.05817 Computer Vision and Pattern Recognition +1604.05819 Machine Learning +1604.05821 Number Theory +1604.05823 Information Theory +1604.05826 Fluid Dynamics +1604.05828 Information Theory +1604.05830 Optics +1604.05836 Algebraic Geometry +1604.05839 Combinatorics +1604.05840 Materials Science +1604.05843 Logic in Computer Science +1604.05844 Analysis of PDEs +1604.05848 Computer Vision and Pattern Recognition +1604.05850 Analysis of PDEs +1604.05853 Differential Geometry +1604.05854 +1604.05855 Spectral Theory +1604.05856 +1604.05860 Analysis of PDEs +1604.05863 Metric Geometry +1604.05864 Data Analysis, Statistics and Probability +1604.05865 Computer Vision and Pattern Recognition +1604.05866 Logic +1604.05868 Methodology +1604.05869 +1604.05871 Plasma Physics +1604.05872 Mathematical Software +1604.05873 Quantum Algebra +1604.05875 Computation and Language +1604.05877 Geophysics +1604.05878 Computation and Language +1604.05879 Information Theory +1604.05883 Category Theory +1604.05884 Differential Geometry +1604.05885 Group Theory +1604.05887 Category Theory +1604.05888 Geophysics +1604.05889 Group Theory +1604.05891 High Energy Astrophysical Phenomena +1604.05894 Phenomenology +1604.05896 Statistical Finance +1604.05898 Phenomenology +1604.05902 Group Theory +1604.05903 Software Engineering +1604.05908 Information Theory +1604.05910 Applications +1604.05913 Information Theory +1604.05915 Distributed, Parallel, and Cluster Computing +1604.05919 Mesoscale and Nanoscale Physics +1604.05920 Materials Science +1604.05923 Digital Libraries +1604.05924 General Physics +1604.05925 Networking and Internet Architecture +1604.05927 Statistics Theory +1604.05928 Materials Science +1604.05931 Analysis of PDEs +1604.05932 History and Philosophy of Physics +1604.05933 Computer Vision and Pattern Recognition +1604.05934 Materials Science +1604.05936 Quantum Gases +1604.05939 Algebraic Topology +1604.05940 Computational Complexity +1604.05942 Robotics +1604.05943 Algebraic Geometry +1604.05945 Optics +1604.05947 Commutative Algebra +1604.05950 Group Theory +1604.05951 K-Theory and Homology +1604.05953 Numerical Analysis +1604.05954 Algebraic Geometry +1604.05955 High Energy Astrophysical Phenomena +1604.05957 Human-Computer Interaction +1604.05958 Discrete Mathematics +1604.05959 Distributed, Parallel, and Cluster Computing +1604.05962 History and Philosophy of Physics +1604.05963 History and Philosophy of Physics +1604.05972 Computational Geometry +1604.05973 +1604.05975 Fluid Dynamics +1604.05979 Information Theory +1604.05983 Plasma Physics +1604.05985 Phenomenology +1604.05986 Optics +1604.05989 Number Theory +1604.05990 Probability +1604.05992 Neurons and Cognition +1604.05993 Learning +1604.05996 +1604.05998 Medical Physics +1604.05999 Data Structures and Algorithms +1604.06003 Applications +1604.06004 Theory +1604.06006 +1604.06008 Numerical Analysis +1604.06016 +1604.06018 Algebraic Geometry +1604.06020 Machine Learning +1604.06024 Number Theory +1604.06030 Distributed, Parallel, and Cluster Computing +1604.06031 Group Theory +1604.06036 Machine Learning +1604.06037 Logic +1604.06039 Analysis of PDEs +1604.06040 Materials Science +1604.06042 Optimization and Control +1604.06043 Numerical Analysis +1604.06047 Geometric Topology +1604.06052 Materials Science +1604.06053 Digital Libraries +1604.06054 Chemical Physics +1604.06059 Cryptography and Security +1604.06061 Computer Science and Game Theory +1604.06066 Rings and Algebras +1604.06067 Data Structures and Algorithms +1604.06069 Algebraic Geometry +1604.06070 Combinatorics +1604.06072 Algebraic Geometry +1604.06076 Artificial Intelligence +1604.06078 Analysis of PDEs +1604.06081 +1604.06083 Computer Vision and Pattern Recognition +1604.06086 Strongly Correlated Electrons +hep-ph/0612238 Phenomenology +0711.0958 +0712.1446 +0812.1286 +0907.4284 High Energy Astrophysical Phenomena +0909.0361 Quantum Algebra +1001.4015 High Energy Astrophysical Phenomena +1011.2448 Cosmology and Nongalactic Astrophysics +1011.6068 Commutative Algebra +1102.2994 +1110.6363 General Physics +1204.4691 +1207.0619 Materials Science +1210.1290 +1212.5585 General Physics +1301.4981 Formal Languages and Automata Theory +1303.0552 +1304.0138 Quantum Algebra +1304.5504 Learning +1306.5334 Numerical Analysis +1307.5122 Pricing of Securities +1308.5129 Cosmology and Nongalactic Astrophysics +1309.0596 Algebraic Geometry +1309.4591 Superconductivity +1309.5384 Cosmology and Nongalactic Astrophysics +1310.0904 Algebraic Geometry +1310.4127 +1310.7162 Algebraic Geometry +1311.4243 Probability +1312.0898 Algebraic Geometry +1312.1200 Statistics Theory +1401.3678 Materials Science +1401.5679 Probability +1401.6213 +1401.6649 +1404.4332 Soft Condensed Matter +1406.1031 Optimization and Control +1406.1829 Group Theory +1406.2762 Instrumentation and Methods for Astrophysics +1406.6416 Algebraic Topology +1407.2930 +1407.4952 +1408.3403 +1408.3505 Populations and Evolution +1408.5503 Optics +1408.7082 Disordered Systems and Neural Networks +1409.4351 Classical Analysis and ODEs +1409.5049 Soft Condensed Matter +1410.4629 Materials Science +1410.4949 Solar and Stellar Astrophysics +1410.6923 +1411.5142 Functional Analysis +1412.8710 Theory +1501.02279 Chemical Physics +1501.02526 Soft Condensed Matter +1501.02745 Exactly Solvable and Integrable Systems +1501.04290 +1501.04492 Chemical Physics +1501.04739 Methodology +1501.04822 Distributed, Parallel, and Cluster Computing +1501.05559 Differential Geometry +1501.06359 Mesoscale and Nanoscale Physics +1502.00415 Populations and Evolution +1502.00498 Representation Theory +1502.00785 Mesoscale and Nanoscale Physics +1502.01401 Algebraic Geometry +1502.03363 Analysis of PDEs +1502.04073 Pattern Formation and Solitons +1502.04194 Analysis of PDEs +1502.05742 Computer Vision and Pattern Recognition +1502.06088 Adaptation and Self-Organizing Systems +1502.07142 Numerical Analysis +1503.00402 Superconductivity +1503.00961 Mathematical Finance +1503.01361 Classical Analysis and ODEs +1503.01571 High Energy Astrophysical Phenomena +1503.01665 +1503.02665 Cosmology and Nongalactic Astrophysics +1503.03044 Optics +1503.03340 +1503.03867 High Energy Astrophysical Phenomena +1503.04086 +1503.04806 Theory +1503.05706 Algebraic Geometry +1503.07773 General Physics +1503.08997 Cosmology and Nongalactic Astrophysics +1504.00217 Earth and Planetary Astrophysics +1504.00421 Analysis of PDEs +1504.00509 Phenomenology +1504.00631 Dynamical Systems +1504.00970 Differential Geometry +1504.01023 Mathematical Software +1504.02102 Phenomenology +1504.03192 Number Theory +1504.04227 +1504.04378 Phenomenology +1504.04516 Cosmology and Nongalactic Astrophysics +1504.06175 Quantum Gases +1504.06552 Statistical Mechanics +1504.07572 +1505.00995 +1505.01387 Theory +1505.02963 Disordered Systems and Neural Networks +1505.03065 Emerging Technologies +1505.03119 Theory +1505.03170 Chemical Physics +1505.03444 Mesoscale and Nanoscale Physics +1505.03571 Theory +1505.04523 Quantum Gases +1505.05005 Plasma Physics +1505.05041 Commutative Algebra +1505.06179 Cosmology and Nongalactic Astrophysics +1505.06270 Information Theory +1505.06822 Computational Physics +1505.06837 Group Theory +1505.06979 +1505.07332 Physics and Society +1505.07468 Mesoscale and Nanoscale Physics +1505.08147 High Energy Astrophysical Phenomena +1506.00406 Computation and Language +1506.00707 Optics +1506.00779 Machine Learning +1506.00908 Strongly Correlated Electrons +1506.01017 Theory +1506.01184 +1506.01375 Theory +1506.01401 +1506.02110 Theory +1506.02751 Information Theory +1506.02920 Solar and Stellar Astrophysics +1506.03829 +1506.03974 Operator Algebras +1506.03975 +1506.04100 Materials Science +1506.04314 Cosmology and Nongalactic Astrophysics +1506.04335 Theory +1506.04547 High Energy Astrophysical Phenomena +1506.05131 High Energy Astrophysical Phenomena +1506.05458 Quantum Gases +1506.05465 Phenomenology +1506.05474 Social and Information Networks +1506.05838 Theory +1506.06090 Differential Geometry +1506.06609 Functional Analysis +1506.06731 +1506.06737 Probability +1506.06746 Strongly Correlated Electrons +1506.06750 Theory +1506.06757 Theory +1506.06776 +1506.07165 Physics and Society +1506.07166 Instrumentation and Methods for Astrophysics +1506.07900 Solar and Stellar Astrophysics +1506.07923 Representation Theory +1506.08189 Data Structures and Algorithms +1506.08929 Atomic Physics +1506.09054 Functional Analysis +1506.09079 +1507.00463 Theory +1507.00518 Number Theory +1507.00643 High Energy Astrophysical Phenomena +1507.00875 +1507.01141 Classical Analysis and ODEs +1507.01920 Number Theory +1507.01990 Logic +1507.02245 Phenomenology +1507.03456 Cosmology and Nongalactic Astrophysics +1507.03620 +1507.03958 Algebraic Geometry +1507.04158 Theory +1507.05103 Social and Information Networks +1507.05603 Instrumentation and Methods for Astrophysics +1507.06008 Probability +1507.06416 Mesoscale and Nanoscale Physics +1507.06520 +1507.06919 Combinatorics +1507.06975 Mesoscale and Nanoscale Physics +1507.07022 Fluid Dynamics +1507.07026 Fluid Dynamics +1507.07241 Quantum Gases +1507.07281 Accelerator Physics +1507.07367 +1507.07447 Differential Geometry +1507.07646 Computer Vision and Pattern Recognition +1507.07793 General Physics +1507.08173 Computer Vision and Pattern Recognition +1507.08399 Mesoscale and Nanoscale Physics +1507.08840 +1507.08884 Materials Science +1507.08912 Theory +1508.00480 Mesoscale and Nanoscale Physics +1508.00514 Data Structures and Algorithms +1508.00528 Biological Physics +1508.00533 General Mathematics +1508.00897 Theory +1508.00993 Mesoscale and Nanoscale Physics +1508.01079 +1508.01386 Cosmology and Nongalactic Astrophysics +1508.01397 Applications +1508.01758 Strongly Correlated Electrons +1508.01923 Quantum Algebra +1508.02096 Computation and Language +1508.02482 +1508.02820 Information Theory +1508.02976 Strongly Correlated Electrons +1508.03408 +1508.04235 Phenomenology +1508.04317 Superconductivity +1508.04480 Quantum Gases +1508.05099 Astrophysics of Galaxies +1508.05234 Differential Geometry +1508.05660 +1508.05847 Statistics Theory +1508.05962 +1508.06140 Soft Condensed Matter +1508.06771 Soft Condensed Matter +1508.07528 +1508.07530 Statistics Theory +1508.07575 Information Theory +1508.07961 +1509.00162 Materials Science +1509.00482 Cosmology and Nongalactic Astrophysics +1509.02008 Numerical Analysis +1509.02126 Theory +1509.02210 Earth and Planetary Astrophysics +1509.02219 Phenomenology +1509.02373 +1509.02416 Materials Science +1509.02572 Numerical Analysis +1509.02847 Chemical Physics +1509.02909 Atomic and Molecular Clusters +1509.03159 +1509.03820 Statistical Mechanics +1509.03848 Phenomenology +1509.04441 Theory +1509.04451 +1509.04569 Chemical Physics +1509.05285 Atmospheric and Oceanic Physics +1509.05375 High Energy Astrophysical Phenomena +1509.05634 Computer Vision and Pattern Recognition +1509.06119 Analysis of PDEs +1509.06323 Statistical Mechanics +1509.06671 Solar and Stellar Astrophysics +1509.06717 Mesoscale and Nanoscale Physics +1509.07102 Applications +1509.07111 Atomic Physics +1509.07219 Biological Physics +1509.07257 Phenomenology +1509.07311 Soft Condensed Matter +1509.07348 +1509.07745 Materials Science +1509.08390 Analysis of PDEs +1509.08851 +1509.08916 High Energy Astrophysical Phenomena +1509.08941 High Energy Astrophysical Phenomena +1510.00236 Mesoscale and Nanoscale Physics +1510.00298 Atmospheric and Oceanic Physics +1510.00314 Statistical Mechanics +1510.00623 Plasma Physics +1510.00680 +1510.00960 High Energy Astrophysical Phenomena +1510.01095 +1510.01111 High Energy Astrophysical Phenomena +1510.01680 Soft Condensed Matter +1510.01966 High Energy Astrophysical Phenomena +1510.01996 Theory +1510.02028 Instrumentation and Detectors +1510.02079 +1510.02093 High Energy Astrophysical Phenomena +1510.02277 High Energy Astrophysical Phenomena +1510.02291 Materials Science +1510.02411 Phenomenology +1510.02487 High Energy Astrophysical Phenomena +1510.02701 Materials Science +1510.02844 Computational Physics +1510.02958 Computation +1510.03244 Phenomenology +1510.03377 Number Theory +1510.03494 Cosmology and Nongalactic Astrophysics +1510.03576 High Energy Astrophysical Phenomena +1510.03741 Differential Geometry +1510.03934 Accelerator Physics +1510.03982 Cell Behavior +1510.04032 High Energy Astrophysical Phenomena +1510.04162 Applications +1510.04170 +1510.04545 High Energy Astrophysical Phenomena +1510.04779 +1510.04844 Superconductivity +1510.05000 Plasma Physics +1510.05017 +1510.05169 Optimization and Control +1510.05432 Phenomenology +1510.05670 Mesoscale and Nanoscale Physics +1510.05726 Optics +1510.05838 Mesoscale and Nanoscale Physics +1510.06188 Information Theory +1510.06200 High Energy Astrophysical Phenomena +1510.06274 Dynamical Systems +1510.06376 +1510.06422 Cosmology and Nongalactic Astrophysics +1510.06474 +1510.06644 Soft Condensed Matter +1510.06705 Exactly Solvable and Integrable Systems +1510.06891 Statistical Mechanics +1510.07049 Astrophysics of Galaxies +1510.07268 Theory +1510.07599 Statistical Finance +1510.07638 High Energy Astrophysical Phenomena +1510.07651 +1510.07686 Optics +1510.07906 +1510.08090 Theory +1510.08186 +1510.08189 High Energy Astrophysical Phenomena +1510.08242 +1510.08533 Astrophysics of Galaxies +1510.08772 Theory +1510.08827 Astrophysics of Galaxies +1510.08902 High Energy Astrophysical Phenomena +1510.09048 +1510.09163 Numerical Analysis +1511.00004 +1511.00035 Plasma Physics +1511.00058 Atomic Physics +1511.00274 Theory +1511.00336 High Energy Astrophysical Phenomena +1511.00535 Mesoscale and Nanoscale Physics +1511.00714 +1511.00719 +1511.00800 +1511.00842 Superconductivity +1511.00988 Phenomenology +1511.01099 Phenomenology +1511.01325 Theory +1511.01332 High Energy Astrophysical Phenomena +1511.01494 Cosmology and Nongalactic Astrophysics +1511.01503 Astrophysics of Galaxies +1511.01607 Cellular Automata and Lattice Gases +1511.01780 Soft Condensed Matter +1511.01895 Theory +1511.01904 Phenomenology +1511.02019 +1511.02194 Chemical Physics +1511.02214 Fluid Dynamics +1511.02493 Soft Condensed Matter +1511.02536 Theory +1511.02874 Phenomenology +1511.02885 Exactly Solvable and Integrable Systems +1511.02958 Quantum Gases +1511.03051 Soft Condensed Matter +1511.03358 Atmospheric and Oceanic Physics +1511.03432 Theory +1511.03486 Mesoscale and Nanoscale Physics +1511.03530 +1511.03969 Phenomenology +1511.04090 Cosmology and Nongalactic Astrophysics +1511.04093 Astrophysics of Galaxies +1511.04187 Theory +1511.04347 Plasma Physics +1511.04415 Earth and Planetary Astrophysics +1511.04476 Astrophysics of Galaxies +1511.04957 Quantum Algebra +1511.05051 +1511.05683 Information Theory +1511.05824 Optics +1511.05887 High Energy Astrophysical Phenomena +1511.05930 Astrophysics of Galaxies +1511.05972 Optics +1511.06002 Phenomenology +1511.06059 Theory +1511.06075 Pattern Formation and Solitons +1511.06242 +1511.06317 Phenomenology +1511.06319 Strongly Correlated Electrons +1511.06414 Plasma Physics +1511.06430 Learning +1511.06524 Optics +1511.06598 +1511.06650 +1511.06708 Atomic Physics +1511.06831 Mesoscale and Nanoscale Physics +1511.06860 Computer Vision and Pattern Recognition +1511.06903 +1511.06923 +1511.06927 Atmospheric and Oceanic Physics +1511.06953 Fluid Dynamics +1511.07053 Computer Vision and Pattern Recognition +1511.07128 Materials Science +1511.07181 High Energy Astrophysical Phenomena +1511.07336 Mesoscale and Nanoscale Physics +1511.07362 Mesoscale and Nanoscale Physics +1511.07393 High Energy Astrophysical Phenomena +1511.07691 Soft Condensed Matter +1511.07728 +1511.07924 Quantum Gases +1511.07975 High Energy Astrophysical Phenomena +1511.08210 Phenomenology +1511.08500 Soft Condensed Matter +1511.08505 Theory +1511.08531 Computer Vision and Pattern Recognition +1511.08596 High Energy Astrophysical Phenomena +1511.08673 Strongly Correlated Electrons +1511.08789 Theory +1511.08810 Astrophysics of Galaxies +1511.09114 Theory +1511.09187 Materials Science +1511.09337 Learning +1511.09452 Phenomenology +1511.09471 Symplectic Geometry +1512.00009 Solar and Stellar Astrophysics +1512.00018 Astrophysics of Galaxies +1512.00099 +1512.00737 Solar and Stellar Astrophysics +1512.00748 Accelerator Physics +1512.00751 Soft Condensed Matter +1512.00839 Mesoscale and Nanoscale Physics +1512.01091 Theory +1512.01198 High Energy Astrophysical Phenomena +1512.01214 Instrumentation and Methods for Astrophysics +1512.01241 Instrumentation and Methods for Astrophysics +1512.01511 Physics Education +1512.01528 Phenomenology +1512.01854 Astrophysics of Galaxies +1512.01957 Phenomenology +1512.02209 Theory +1512.02265 Phenomenology +1512.02288 Plasma Physics +1512.02439 Astrophysics of Galaxies +1512.02465 Theory +1512.02492 Theory +1512.02551 +1512.02643 Solar and Stellar Astrophysics +1512.02644 +1512.02663 Phenomenology +1512.02875 +1512.03050 Cosmology and Nongalactic Astrophysics +1512.03141 Cosmology and Nongalactic Astrophysics +1512.03163 Mesoscale and Nanoscale Physics +1512.03192 Theory +1512.03268 +1512.03276 Experiment +1512.03410 +1512.03475 +1512.03546 Materials Science +1512.03619 +1512.03643 Materials Science +1512.03717 Functional Analysis +1512.03775 Astrophysics of Galaxies +1512.03803 Theory +1512.03818 Astrophysics of Galaxies +1512.03984 Plasma Physics +1512.04055 Materials Science +1512.04416 Applications +1512.04536 Astrophysics of Galaxies +1512.04604 Astrophysics of Galaxies +1512.04626 Materials Science +1512.04642 +1512.04814 Chaotic Dynamics +1512.04901 Phenomenology +1512.05106 Chemical Physics +1512.05166 Optics +1512.05213 Populations and Evolution +1512.05298 +1512.05316 +1512.05336 Geophysics +1512.05366 Astrophysics of Galaxies +1512.05476 +1512.05572 +1512.05700 Phenomenology +1512.05725 Theory +1512.05739 +1512.05746 Theory +1512.05759 Phenomenology +1512.05793 Cosmology and Nongalactic Astrophysics +1512.05977 Theory +1512.05982 +1512.06035 Phenomenology +1512.06131 +1512.06157 +1512.06182 Theory +1512.06212 Experiment +1512.06277 Theory +1512.06350 Cosmology and Nongalactic Astrophysics +1512.06363 Theory +1512.06387 +1512.06542 Atmospheric and Oceanic Physics +1512.06549 +1512.06601 Statistical Mechanics +1512.06644 Plasma Physics +1512.06793 +1512.06797 Phenomenology +1512.06845 +1512.06862 Astrophysics of Galaxies +1512.06887 Mesoscale and Nanoscale Physics +1512.06924 Theory +1512.07045 Plasma Physics +1512.07130 Theory +1512.07167 Plasma Physics +1512.07217 High Energy Astrophysical Phenomena +1512.07241 Theory +1512.07291 Atomic and Molecular Clusters +1512.07412 Cosmology and Nongalactic Astrophysics +1512.07511 Atomic Physics +1512.07618 Materials Science +1512.07782 Systems and Control +1512.07867 Plasma Physics +1512.07903 High Energy Astrophysical Phenomena +1512.08132 Theory +1512.08175 Superconductivity +1512.08391 Mesoscale and Nanoscale Physics +1512.08471 Theory +1512.08550 Theory +1512.08615 Optics +1512.08682 +1512.08715 Data Analysis, Statistics and Probability +1512.08755 +1512.08770 Phenomenology +1512.08858 Theory +1512.08962 Cosmology and Nongalactic Astrophysics +1512.09034 Instrumentation and Detectors +1512.09050 Strongly Correlated Electrons +1512.09168 Exactly Solvable and Integrable Systems +1512.09220 Theory +1512.09253 History and Philosophy of Physics +1512.09275 +1512.09276 Phenomenology +1512.09357 Materials Science +1601.00006 Phenomenology +1601.00035 Fluid Dynamics +1601.00215 Astrophysics of Galaxies +1601.00298 Adaptation and Self-Organizing Systems +1601.00471 +1601.00482 Theory +1601.00614 Lattice +1601.00704 Fluid Dynamics +1601.00980 Theory +1601.01016 Mesoscale and Nanoscale Physics +1601.01312 High Energy Astrophysical Phenomena +1601.01373 Mesoscale and Nanoscale Physics +1601.01388 Cosmology and Nongalactic Astrophysics +1601.01529 Solar and Stellar Astrophysics +1601.01585 Phenomenology +1601.01627 Theory +1601.01666 Phenomenology +1601.01701 Cosmology and Nongalactic Astrophysics +1601.01739 Instrumentation and Methods for Astrophysics +1601.01805 Materials Science +1601.01827 Theory +1601.02005 +1601.02321 Phenomenology +1601.02402 +1601.02599 Theory +1601.02851 Solar and Stellar Astrophysics +1601.02951 Strongly Correlated Electrons +1601.03023 Theory +1601.03073 Learning +1601.03221 Cosmology and Nongalactic Astrophysics +1601.03256 Solar and Stellar Astrophysics +1601.03268 Mesoscale and Nanoscale Physics +1601.03318 Quantum Gases +1601.03362 Materials Science +1601.03378 Cryptography and Security +1601.03401 Astrophysics of Galaxies +1601.03553 Atomic Physics +1601.03629 Phenomenology +1601.03644 Statistical Mechanics +1601.03685 Chemical Physics +1601.03757 Optics +1601.03772 Phenomenology +1601.03846 Theory +1601.03924 Representation Theory +1601.03943 +1601.04198 Statistical Mechanics +1601.04368 Statistical Mechanics +1601.04424 Astrophysics of Galaxies +1601.04523 Theory +1601.04594 Earth and Planetary Astrophysics +1601.04652 +1601.04666 +1601.04707 Cosmology and Nongalactic Astrophysics +1601.04758 Theory +1601.04860 Chemical Physics +1601.04954 Phenomenology +1601.04957 Theory +1601.04990 Phenomenology +1601.05006 +1601.05226 Fluid Dynamics +1601.05375 Phenomenology +1601.05489 Optics +1601.05731 Phenomenology +1601.05755 Strongly Correlated Electrons +1601.05814 Earth and Planetary Astrophysics +1601.05816 Solar and Stellar Astrophysics +1601.05867 High Energy Astrophysical Phenomena +1601.06038 Quantum Gases +1601.06044 Computer Vision and Pattern Recognition +1601.06321 +1601.06355 Phenomenology +1601.06360 Theory +1601.06393 Phenomenology +1601.06422 Information Theory +1601.06438 Materials Science +1601.06469 +1601.06514 Computational Physics +1601.06528 +1601.06535 Chemical Physics +1601.06563 Statistical Mechanics +1601.06656 +1601.06781 High Energy Astrophysical Phenomena +1601.06798 Astrophysics of Galaxies +1601.06876 +1601.06989 Theory +1601.07020 Phenomenology +1601.07057 +1601.07237 Solar and Stellar Astrophysics +1601.07257 Phenomenology +1601.07286 Mesoscale and Nanoscale Physics +1601.07308 Solar and Stellar Astrophysics +1601.07329 Chemical Physics +1601.07553 Cosmology and Nongalactic Astrophysics +1601.07556 Phenomenology +1601.07557 Cosmology and Nongalactic Astrophysics +1601.07627 Statistical Mechanics +1601.07687 Materials Science +1601.07749 Theory +1601.07847 Phenomenology +1601.07913 Experiment +1601.07932 Learning +1601.08024 Classical Physics +1601.08043 Chemical Physics +1601.08094 Phenomenology +1601.08140 Cosmology and Nongalactic Astrophysics +1602.00018 Superconductivity +1602.00085 Soft Condensed Matter +1602.00086 High Energy Astrophysical Phenomena +1602.00126 Phenomenology +1602.00312 High Energy Astrophysical Phenomena +1602.00612 Mesoscale and Nanoscale Physics +1602.00630 Optics +1602.00643 Physics and Society +1602.00736 Optics +1602.00858 Instrumentation and Detectors +1602.01022 Theory +1602.01064 Machine Learning +1602.01150 Optics +1602.01256 Soft Condensed Matter +1602.01301 Data Analysis, Statistics and Probability +1602.01330 Phenomenology +1602.01336 Solar and Stellar Astrophysics +1602.01407 Machine Learning +1602.01418 Quantum Algebra +1602.01488 Theory +1602.01708 Astrophysics of Galaxies +1602.01833 Theory +1602.01843 Astrophysics of Galaxies +1602.02014 Materials Science +1602.02082 Mesoscale and Nanoscale Physics +1602.02214 +1602.02371 Geometric Topology +1602.02583 Theory +1602.02677 Plasma Physics +1602.02678 Phenomenology +1602.02679 Strongly Correlated Electrons +1602.02779 Astrophysics of Galaxies +1602.02791 Astrophysics of Galaxies +1602.02799 Materials Science +1602.02827 Plasma Physics +1602.03007 Theory +1602.03123 Earth and Planetary Astrophysics +1602.03161 Phenomenology +1602.03234 Astrophysics of Galaxies +1602.03278 High Energy Astrophysical Phenomena +1602.03405 Phenomenology +1602.03456 Solar and Stellar Astrophysics +1602.03498 Information Theory +1602.03604 Phenomenology +1602.03684 Phenomenology +1602.03708 Theory +1602.03799 Pattern Formation and Solitons +1602.03817 Astrophysics of Galaxies +1602.03827 +1602.03875 Theory +1602.04039 Plasma Physics +1602.04074 Phenomenology +1602.04175 +1602.04342 Mesoscale and Nanoscale Physics +1602.04397 +1602.04404 +1602.04510 High Energy Astrophysical Phenomena +1602.04598 Astrophysics of Galaxies +1602.04639 +1602.04811 Theory +1602.04818 Phenomenology +1602.04861 Instrumentation and Methods for Astrophysics +1602.05029 +1602.05050 High Energy Astrophysical Phenomena +1602.05099 +1602.05443 Optics +1602.05501 Solar and Stellar Astrophysics +1602.05667 Chemical Physics +1602.05915 Astrophysics of Galaxies +1602.05917 Astrophysics of Galaxies +1602.05956 Solar and Stellar Astrophysics +1602.06071 +1602.06125 Plasma Physics +1602.06212 Astrophysics of Galaxies +1602.06256 Classical Analysis and ODEs +1602.06414 High Energy Astrophysical Phenomena +1602.06619 Materials Science +1602.06710 Mesoscale and Nanoscale Physics +1602.06711 Cosmology and Nongalactic Astrophysics +1602.06729 Mesoscale and Nanoscale Physics +1602.06814 Phenomenology +1602.07068 Pattern Formation and Solitons +1602.07314 Solar and Stellar Astrophysics +1602.07463 Mesoscale and Nanoscale Physics +1602.07489 Atomic Physics +1602.07610 Soft Condensed Matter +1602.07691 Phenomenology +1602.07731 Information Theory +1602.07773 High Energy Astrophysical Phenomena +1602.07805 High Energy Astrophysical Phenomena +1602.07939 Instrumentation and Methods for Astrophysics +1602.08013 Materials Science +1602.08100 Phenomenology +1602.08107 Phenomenology +1602.08172 Strongly Correlated Electrons +1602.08193 History and Philosophy of Physics +1602.08195 Mesoscale and Nanoscale Physics +1602.08229 Astrophysics of Galaxies +1602.08300 Phenomenology +1602.08433 Cosmology and Nongalactic Astrophysics +1602.08476 Theory +1602.08482 Space Physics +1602.08495 High Energy Astrophysical Phenomena +1602.08496 Earth and Planetary Astrophysics +1602.08583 +1602.08689 Fluid Dynamics +1602.08693 Solar and Stellar Astrophysics +1602.08749 High Energy Astrophysical Phenomena +1602.08758 Plasma Physics +1602.08967 Phenomenology +1602.08994 Phenomenology +1602.09002 +1603.00148 Solar and Stellar Astrophysics +1603.00248 +1603.00253 Materials Science +1603.00258 Mesoscale and Nanoscale Physics +1603.00287 Phenomenology +1603.00313 Mesoscale and Nanoscale Physics +1603.00341 High Energy Astrophysical Phenomena +1603.00357 Theory +1603.00419 Solar and Stellar Astrophysics +1603.00436 +1603.00495 Astrophysics of Galaxies +1603.00761 Soft Condensed Matter +1603.00777 Atomic Physics +1603.00874 Astrophysics of Galaxies +1603.00880 Statistical Mechanics +1603.01036 +1603.01125 Earth and Planetary Astrophysics +1603.01144 Earth and Planetary Astrophysics +1603.01226 Astrophysics of Galaxies +1603.01235 High Energy Astrophysical Phenomena +1603.01322 Astrophysics of Galaxies +1603.01366 Phenomenology +1603.01377 Phenomenology +1603.01388 Phenomenology +1603.01432 Atomic Physics +1603.01487 High Energy Astrophysical Phenomena +1603.01556 Astrophysics of Galaxies +1603.01559 Cosmology and Nongalactic Astrophysics +1603.01617 Astrophysics of Galaxies +1603.01642 General Physics +1603.01660 History and Overview +1603.01668 Materials Science +1603.01725 Optics +1603.01779 Space Physics +1603.01903 Chemical Physics +1603.01905 Chemical Physics +1603.01923 Solar and Stellar Astrophysics +1603.01934 Earth and Planetary Astrophysics +1603.02005 +1603.02016 High Energy Astrophysical Phenomena +1603.02050 Solar and Stellar Astrophysics +1603.02076 Theory +1603.02197 Chaotic Dynamics +1603.02224 Solar and Stellar Astrophysics +1603.02348 Mesoscale and Nanoscale Physics +1603.02364 +1603.02397 Astrophysics of Galaxies +1603.02410 High Energy Astrophysical Phenomena +1603.02477 Optics +1603.02498 Phenomenology +1603.02565 Soft Condensed Matter +1603.02577 Astrophysics of Galaxies +1603.02603 Mesoscale and Nanoscale Physics +1603.02630 Earth and Planetary Astrophysics +1603.02710 Astrophysics of Galaxies +1603.02759 +1603.02812 Theory +1603.02824 Materials Science +1603.02847 Atomic Physics +1603.02885 Soft Condensed Matter +1603.03005 Solar and Stellar Astrophysics +1603.03013 Statistical Mechanics +1603.03047 Astrophysics of Galaxies +1603.03182 Materials Science +1603.03202 Quantum Gases +1603.03344 Instrumentation and Methods for Astrophysics +1603.03346 Quantitative Methods +1603.03347 Cosmology and Nongalactic Astrophysics +1603.03416 Theory +1603.03479 Statistical Mechanics +1603.03546 Solar and Stellar Astrophysics +1603.03573 Astrophysics of Galaxies +1603.03595 Astrophysics of Galaxies +1603.03596 Theory +1603.03638 Phenomenology +1603.03701 Quantum Gases +1603.03707 Astrophysics of Galaxies +1603.03738 Earth and Planetary Astrophysics +1603.03760 Theory +1603.03782 Theory +1603.03798 Astrophysics of Galaxies +1603.03812 Theory +1603.03823 Cosmology and Nongalactic Astrophysics +1603.03825 Solar and Stellar Astrophysics +1603.03861 +1603.03930 Phenomenology +1603.04039 Numerical Analysis +1603.04074 High Energy Astrophysical Phenomena +1603.04244 Astrophysics of Galaxies +1603.04253 Symplectic Geometry +1603.04323 Strongly Correlated Electrons +1603.04347 Theory +1603.04370 Superconductivity +1603.04385 Solar and Stellar Astrophysics +1603.04496 Solar and Stellar Astrophysics +1603.04533 Astrophysics of Galaxies +1603.04567 Solar and Stellar Astrophysics +1603.04593 High Energy Astrophysical Phenomena +1603.04598 Phenomenology +1603.04638 High Energy Astrophysical Phenomena +1603.04645 Solar and Stellar Astrophysics +1603.04741 Atomic Physics +1603.04824 Theory +1603.04840 Astrophysics of Galaxies +1603.04863 Astrophysics of Galaxies +1603.04968 Solar and Stellar Astrophysics +1603.05067 Instrumentation and Detectors +1603.05077 Materials Science +1603.05094 Astrophysics of Galaxies +1603.05109 Strongly Correlated Electrons +1603.05149 Plasma Physics +1603.05254 Solar and Stellar Astrophysics +1603.05275 Astrophysics of Galaxies +1603.05283 Solar and Stellar Astrophysics +1603.05397 Solar and Stellar Astrophysics +1603.05488 Theory +1603.05492 Atomic Physics +1603.05666 Solar and Stellar Astrophysics +1603.05742 Chemical Physics +1603.05754 Earth and Planetary Astrophysics +1603.05833 Astrophysics of Galaxies +1603.05885 Astrophysics of Galaxies +1603.05893 Earth and Planetary Astrophysics +1603.06050 Portfolio Management +1603.06055 Phenomenology +1603.06086 Experiment +1603.06144 Solar and Stellar Astrophysics +1603.06229 Functional Analysis +1603.06305 Solar and Stellar Astrophysics +1603.06448 Mesoscale and Nanoscale Physics +1603.06489 High Energy Astrophysical Phenomena +1603.06502 Solar and Stellar Astrophysics +1603.06526 Earth and Planetary Astrophysics +1603.06650 Physics and Society +1603.06778 Space Physics +1603.06866 Physics Education +1603.06876 Astrophysics of Galaxies +1603.06925 Plasma Physics +1603.06943 Solar and Stellar Astrophysics +1603.06949 High Energy Astrophysical Phenomena +1603.06954 High Energy Astrophysical Phenomena +1603.06982 Materials Science +1603.07090 High Energy Astrophysical Phenomena +1603.07145 Astrophysics of Galaxies +1603.07273 Solar and Stellar Astrophysics +1603.07274 Superconductivity +1603.07286 High Energy Astrophysical Phenomena +1603.07308 High Energy Astrophysical Phenomena +1603.07329 Differential Geometry +1603.07345 Astrophysics of Galaxies +1603.07361 Differential Geometry +1603.07470 +1603.07651 Solar and Stellar Astrophysics +1603.07677 Materials Science +1603.07782 +1603.07885 High Energy Astrophysical Phenomena +1603.07922 Number Theory +1603.08063 Chemical Physics +1603.08145 Earth and Planetary Astrophysics +1603.08185 High Energy Astrophysical Phenomena +1603.08195 +1603.08208 High Energy Astrophysical Phenomena +1603.08385 Astrophysics of Galaxies +1603.08448 +1603.08457 Statistical Mechanics +1603.08475 +1603.08606 Solar and Stellar Astrophysics +1603.08688 Materials Science +1603.08721 Solar and Stellar Astrophysics +1603.08724 Materials Science +1603.08761 Astrophysics of Galaxies +1603.08799 Soft Condensed Matter +1603.08807 Fluid Dynamics +1603.08809 Solar and Stellar Astrophysics +1603.08824 +1603.08920 Solar and Stellar Astrophysics +1603.08930 Earth and Planetary Astrophysics +1603.08931 Solar and Stellar Astrophysics +1603.09086 Probability +1603.09136 Earth and Planetary Astrophysics +1603.09179 Solar and Stellar Astrophysics +1603.09322 Atomic Physics +1603.09332 Astrophysics of Galaxies +1603.09358 Quantum Gases +1603.09594 Solar and Stellar Astrophysics +1604.00006 Astrophysics of Galaxies +1604.00007 Phenomenology +1604.00179 Phenomenology +1604.00185 Astrophysics of Galaxies +1604.00205 Astrophysics of Galaxies +1604.00245 Soft Condensed Matter +1604.00250 Materials Science +1604.00291 Fluid Dynamics +1604.00304 Fluid Dynamics +1604.00364 High Energy Astrophysical Phenomena +1604.00428 Probability +1604.00747 Number Theory +1604.00765 Number Theory +1604.00831 Solar and Stellar Astrophysics +1604.00891 Theory +1604.01068 Solar and Stellar Astrophysics +1604.01134 Phenomenology +1604.01276 +1604.01295 Optics +1604.01364 Materials Science +1604.01389 Mesoscale and Nanoscale Physics +1604.01409 Cosmology and Nongalactic Astrophysics +1604.01412 Experiment +1604.01492 Accelerator Physics +1604.01536 Solar and Stellar Astrophysics +1604.01552 High Energy Astrophysical Phenomena +1604.01768 Astrophysics of Galaxies +1604.01825 Experiment +1604.01884 Astrophysics of Galaxies +1604.02034 Astrophysics of Galaxies +1604.02101 Mesoscale and Nanoscale Physics +1604.02183 Chemical Physics +1604.02205 Plasma Physics +1604.02214 Astrophysics of Galaxies +1604.02273 Phenomenology +1604.02372 High Energy Astrophysical Phenomena +1604.02439 Strongly Correlated Electrons +1604.02451 +1604.02553 Subcellular Processes +1604.02554 Subcellular Processes +1604.02565 Astrophysics of Galaxies +1604.02587 +1604.02800 Solar and Stellar Astrophysics +1604.02874 Solar and Stellar Astrophysics +1604.02924 High Energy Astrophysical Phenomena +1604.02961 Soft Condensed Matter +1604.02974 Astrophysics of Galaxies +1604.02982 Optics +1604.03013 +1604.03119 Earth and Planetary Astrophysics +1604.03256 Astrophysics of Galaxies +1604.03273 Instrumentation and Methods for Astrophysics +1604.03307 Astrophysics of Galaxies +1604.03316 +1604.03361 Superconductivity +1604.03368 Plasma Physics +1604.03374 Atomic Physics +1604.03420 Mesoscale and Nanoscale Physics +1604.03667 Solar and Stellar Astrophysics +1604.03737 Strongly Correlated Electrons +1604.03748 Solar and Stellar Astrophysics +1604.03809 +1604.03819 Cosmology and Nongalactic Astrophysics +1604.03835 Solar and Stellar Astrophysics +1604.03843 Analysis of PDEs +1604.03943 Solar and Stellar Astrophysics +1604.03953 Astrophysics of Galaxies +1604.03981 Solar and Stellar Astrophysics +1604.04014 +1604.04066 High Energy Astrophysical Phenomena +1604.04184 Earth and Planetary Astrophysics +1604.04323 Accelerator Physics +1604.04332 Astrophysics of Galaxies +1604.04363 +1604.04395 Astrophysics of Galaxies +1604.04591 Distributed, Parallel, and Cluster Computing +1604.04621 Solar and Stellar Astrophysics +1604.05026 Materials Science +1604.05110 Materials Science +1604.05139 Earth and Planetary Astrophysics +1604.05202 Cosmology and Nongalactic Astrophysics +1604.05268 Numerical Analysis +1604.05306 +1604.05316 Astrophysics of Galaxies +1604.05374 Solar and Stellar Astrophysics +1604.05470 Solar and Stellar Astrophysics +1604.05512 Representation Theory +1604.05599 Astrophysics of Galaxies +1604.05669 Mesoscale and Nanoscale Physics +1604.05686 Materials Science +1604.05700 Instrumentation and Detectors +1604.05752 Materials Science +1604.05770 Solar and Stellar Astrophysics +1604.05798 Pattern Formation and Solitons +1604.05801 Representation Theory +1604.05874 Statistical Mechanics +1604.05882 Materials Science +1604.05901 +1604.06144 Dynamical Systems +1604.06287 Earth and Planetary Astrophysics +1604.06360 High Energy Astrophysical Phenomena +1604.06384 Logic in Computer Science +1604.06521 Materials Science +1604.06636 Astrophysics of Galaxies +1604.06847 Earth and Planetary Astrophysics +1604.06873 Mesoscale and Nanoscale Physics +1604.06885 Astrophysics of Galaxies +1604.07221 Astrophysics of Galaxies +1604.07247 +1604.07280 Solar and Stellar Astrophysics +1604.07285 Astrophysics of Galaxies +1604.07290 Astrophysics of Galaxies +1604.07324 Phenomenology +1604.07431 Astrophysics of Galaxies +1604.07460 Cosmology and Nongalactic Astrophysics +1604.07496 Astrophysics of Galaxies +1604.07537 Astrophysics of Galaxies +1604.07538 Earth and Planetary Astrophysics +1604.07727 Earth and Planetary Astrophysics +1604.07747 Strongly Correlated Electrons +1604.07790 Earth and Planetary Astrophysics +1604.07834 Astrophysics of Galaxies +1604.07836 Cosmology and Nongalactic Astrophysics +1604.07901 Earth and Planetary Astrophysics +1604.07902 Astrophysics of Galaxies +1604.07935 Soft Condensed Matter +1604.07950 Materials Science +1604.07955 Astrophysics of Galaxies +1604.08046 Solar and Stellar Astrophysics +1604.08337 Rings and Algebras +1604.08371 Earth and Planetary Astrophysics +1604.08380 Earth and Planetary Astrophysics +1604.08405 +1604.08411 Astrophysics of Galaxies +1604.08533 Mesoscale and Nanoscale Physics +1604.08537 Solar and Stellar Astrophysics +1604.08557 Earth and Planetary Astrophysics +1604.08560 Earth and Planetary Astrophysics +1604.08627 Astrophysics of Galaxies +1604.08700 Atomic Physics +1604.08856 +1604.08897 Information Retrieval +1604.08925 Plasma Physics +1604.08933 +1605.00006 Astrophysics of Galaxies +1605.00016 Cosmology and Nongalactic Astrophysics +1605.00120 Strongly Correlated Electrons +1605.00195 Solar and Stellar Astrophysics +1605.00330 Solar and Stellar Astrophysics +1605.00407 Astrophysics of Galaxies +1605.00661 Astrophysics of Galaxies +1605.00664 Astrophysics of Galaxies +1605.00714 Cosmology and Nongalactic Astrophysics +1605.00731 Optics +1605.00791 Instrumentation and Detectors +1605.00823 Cosmology and Nongalactic Astrophysics +1605.00938 Solar and Stellar Astrophysics +1605.01058 Astrophysics of Galaxies +1605.01187 Materials Science +1605.01346 Astrophysics of Galaxies +1605.01353 Solar and Stellar Astrophysics +1605.01453 Solar and Stellar Astrophysics +1605.01457 Mesoscale and Nanoscale Physics +1605.01638 Astrophysics of Galaxies +1605.01644 Cosmology and Nongalactic Astrophysics +1605.01677 Machine Learning +1605.01680 Mesoscale and Nanoscale Physics +1605.01730 High Energy Astrophysical Phenomena +1605.01740 Astrophysics of Galaxies +1605.01797 +1605.01816 Graphics +1605.01833 Solar and Stellar Astrophysics +1605.01963 Solar and Stellar Astrophysics +1605.01979 +1605.02039 Solar and Stellar Astrophysics +1605.02217 Solar and Stellar Astrophysics +1605.02405 Astrophysics of Galaxies +1605.02473 Earth and Planetary Astrophysics +1605.02532 Mathematical Software +1605.02536 Learning +1605.02545 Classical Physics +1605.02598 +1605.02736 Astrophysics of Galaxies +1605.02825 Earth and Planetary Astrophysics +1605.02855 Soft Condensed Matter +1605.03089 Materials Science +1605.03174 Solar and Stellar Astrophysics +1605.03440 Populations and Evolution +1605.03488 Phenomenology +1605.03752 Materials Science +1605.03784 +1605.04067 +1605.04089 Solar and Stellar Astrophysics +1605.04669 Superconductivity +1605.04720 Astrophysics of Galaxies +1605.04767 +1605.04812 Learning +1605.04827 Solar and Stellar Astrophysics +1605.04847 Materials Science +1605.04849 +1605.05020 +1605.05049 Algebraic Geometry +1605.05367 Populations and Evolution +1605.05422 Optimization and Control +1605.05581 General Physics +1605.05723 High Energy Astrophysical Phenomena +1605.05795 Systems and Control +1605.05859 Phenomenology +1605.06097 High Energy Astrophysical Phenomena +1605.06144 Symplectic Geometry +1605.06314 +1605.06315 +1605.06316 +1605.06378 Category Theory +1605.06565 Differential Geometry +1605.06570 Combinatorics +1605.06572 Combinatorics +1605.06574 Combinatorics +1605.06577 Combinatorics +1605.06643 Combinatorics +1605.06676 Artificial Intelligence +1605.07008 Sound +1605.07083 Distributed, Parallel, and Cluster Computing +1605.07167 Computers and Society +1605.07170 Combinatorics +1605.07172 Data Structures and Algorithms +1605.07173 Combinatorics +1605.07181 Theory +1605.07196 Networking and Internet Architecture +1605.07198 Numerical Analysis +1605.07203 Algebraic Geometry +1605.07204 Probability +1605.07211 Earth and Planetary Astrophysics +1605.07213 Phenomenology +1605.07216 Algebraic Geometry +1605.07230 Portfolio Management +1605.07232 Analysis of PDEs +1605.07233 Probability +1605.07234 Optimization and Control +1605.07237 Combinatorics +1605.07239 Spectral Theory +1605.07240 Probability +1605.07241 Combinatorics +1605.07242 Methodology +1605.07243 Combinatorics +1605.07244 Methodology +1605.07249 Statistics Theory +1605.07250 Differential Geometry +1605.07251 Computer Vision and Pattern Recognition +1605.07255 Differential Geometry +1605.07258 Geometric Topology +1605.07259 Symplectic Geometry +1605.07260 Artificial Intelligence +1605.07264 Applications +1605.07266 Neurons and Cognition +1605.07267 Geometric Topology +1605.07268 Computers and Society +1605.07270 Computer Vision and Pattern Recognition +1605.07277 Cryptography and Security +1605.07278 Statistical Finance +1605.07282 High Energy Astrophysical Phenomena +1605.07283 Dynamical Systems +1605.07285 Data Structures and Algorithms +1605.07288 Optics +1605.07290 Instrumentation and Methods for Astrophysics +1605.07293 Optimization and Control +1605.07294 Biomolecules +1605.07303 Numerical Analysis +1605.07308 Atomic and Molecular Clusters +1605.07311 +1605.07312 +1605.07313 Phenomenology +1605.07314 Computer Vision and Pattern Recognition +1605.07316 Robotics +1605.07318 Biological Physics +1605.07325 Solar and Stellar Astrophysics +1605.07330 Number Theory +1605.07333 Computation and Language +1605.07336 Software Engineering +1605.07337 Analysis of PDEs +1605.07341 Networking and Internet Architecture +1605.07343 Computers and Society +1605.07344 Numerical Analysis +1605.07345 Materials Science +1605.07346 Computation and Language +1605.07347 Information Theory +1605.07354 Distributed, Parallel, and Cluster Computing +1605.07358 Information Theory +1605.07361 Solar and Stellar Astrophysics +1605.07362 Information Theory +1605.07363 Computer Vision and Pattern Recognition +1605.07364 Artificial Intelligence +1605.07366 Computation and Language +1605.07369 Computer Vision and Pattern Recognition +1605.07370 Astrophysics of Galaxies +1605.07371 Neurons and Cognition +1605.07376 Soft Condensed Matter +1605.07380 Biological Physics +1605.07381 Analysis of PDEs +1605.07385 Statistics Theory +1605.07388 Analysis of PDEs +1605.07390 Group Theory +1605.07394 Analysis of PDEs +1605.07396 Analysis of PDEs +1605.07398 +1605.07399 +1605.07400 Combinatorics +1605.07404 Materials Science +1605.07408 Operator Algebras +1605.07409 Functional Analysis +1605.07411 Discrete Mathematics +1605.07412 Statistics Theory +1605.07413 Probability +1605.07417 Algebraic Geometry +1605.07419 Mathematical Finance +1605.07423 Metric Geometry +1605.07425 Dynamical Systems +1605.07427 Machine Learning +1605.07429 Instrumentation and Methods for Astrophysics +1605.07432 Classical Analysis and ODEs +1605.07433 Symbolic Computation +1605.07437 Metric Geometry +1605.07440 Combinatorics +1605.07443 Numerical Analysis +1605.07445 Analysis of PDEs +1605.07446 Strongly Correlated Electrons +1605.07448 Materials Science +1605.07449 Classical Analysis and ODEs +1605.07450 +1605.07451 Statistical Mechanics +1605.07452 +1605.07455 Analysis of PDEs +1605.07456 Instrumentation and Methods for Astrophysics +1605.07459 +1605.07461 Materials Science +1605.07464 Functional Analysis +1605.07467 Sound +1605.07471 Mesoscale and Nanoscale Physics +1605.07473 Algebraic Geometry +1605.07476 +1605.07477 Algebraic Geometry +1605.07479 Populations and Evolution +1605.07481 Space Physics +1605.07483 Computer Science and Game Theory +1605.07486 Algebraic Geometry +1605.07487 Optics +1605.07488 Genomics +1605.07491 Representation Theory +1605.07492 Combinatorics +1605.07495 Information Theory +1605.07497 +1605.07498 Learning +1605.07501 Instrumentation and Methods for Astrophysics +1605.07504 Mesoscale and Nanoscale Physics +1605.07507 Differential Geometry +1605.07511 Cryptography and Security +1605.07513 +1605.07514 Methodology +1605.07517 Theory +1605.07518 Astrophysics of Galaxies +1605.07519 Dynamical Systems +1605.07521 Methodology +1605.07522 Optimization and Control +1605.07526 Functional Analysis +1605.07527 Logic +1605.07532 Analysis of PDEs +1605.07534 Geometric Topology +1605.07535 Combinatorics +1605.07537 Superconductivity +1605.07540 Operator Algebras +1605.07541 Learning +1605.07544 Optimization and Control +1605.07546 Geometric Topology +1605.07549 +1605.07554 +1605.07559 Networking and Internet Architecture +1605.07560 Theory +1605.07561 Theory +1605.07567 Phenomenology +1605.07570 Probability +1605.07573 Differential Geometry +1605.07574 Artificial Intelligence +1605.07578 Optimization and Control +1605.07581 Dynamical Systems +1605.07582 Strongly Correlated Electrons +1605.07587 Physics and Society +1605.07590 Algebraic Geometry +1605.07591 Analysis of PDEs +1605.07592 Exactly Solvable and Integrable Systems +1605.07594 Symplectic Geometry +1605.07598 Probability +1605.07601 Probability +1605.07604 Machine Learning +astro-ph/0011092 +astro-ph/9809370 +math/0703699 Functional Analysis +nucl-th/0005064 +quant-ph/0403069 +0705.4676 Databases +0808.1311 Representation Theory +0903.2211 +1003.4960 Representation Theory +1005.5152 Representation Theory +1007.2811 Representation Theory +1007.3658 Differential Geometry +1104.0743 Plasma Physics +1104.5482 +1105.1154 Geometric Topology +1109.2557 Computational Finance +1110.1679 Representation Theory +1110.4882 Data Structures and Algorithms +1206.6426 Computation and Language +1207.0164 Combinatorics +1207.7338 Representation Theory +1208.1020 Differential Geometry +1209.1170 Geometric Topology +1210.3755 Materials Science +1210.5104 Mesoscale and Nanoscale Physics +1212.5704 Number Theory +1212.6539 Combinatorics +1303.3783 Probability +1304.1820 Differential Geometry +1307.0827 +1309.0792 +1309.4659 Differential Geometry +1309.7458 Group Theory +1310.0380 Number Theory +1310.1789 Dynamical Systems +1310.1826 Machine Learning +1311.1760 Combinatorics +1311.4722 +1311.4905 Number Theory +1311.5180 Metric Geometry +1311.7357 Data Structures and Algorithms +1312.7321 +1401.1443 Functional Analysis +1401.2433 Combinatorics +1402.3607 +1403.7071 Analysis of PDEs +1403.7240 Commutative Algebra +1403.7605 Computer Science and Game Theory +1404.0060 Representation Theory +1404.3080 Number Theory +1405.0746 Metric Geometry +1405.1218 Probability +1405.4312 Probability +1405.5449 Probability +1405.5536 Phenomenology +1406.1432 Probability +1406.2011 +1406.2796 Statistics Theory +1406.3441 Number Theory +1406.3558 Number Theory +1406.5268 Probability +1406.5484 Probability +1406.5526 Functional Analysis +1406.5614 Learning +1406.7851 Methodology +1407.1483 +1408.0848 Learning +1408.3151 Disordered Systems and Neural Networks +1408.3373 +1408.6089 Group Theory +1409.0733 Statistics Theory +1409.3302 Computer Science and Game Theory +1409.7548 Probability +1410.0423 Metric Geometry +1410.2491 Probability +1410.3280 Algebraic Geometry +1410.6857 Combinatorics +1410.7690 Machine Learning +1411.0771 Combinatorics +1411.0867 Metric Geometry +1411.1132 Social and Information Networks +1411.2738 Computation and Language +1411.4901 Physics and Society +1411.6046 Number Theory +1411.7780 Statistical Mechanics +1412.3676 +1412.5139 Statistics Theory +1412.5458 Representation Theory +1412.7700 Group Theory +1501.03285 Probability +1501.04168 +1501.06138 Mesoscale and Nanoscale Physics +1501.06300 Pattern Formation and Solitons +1502.00054 Other Computer Science +1502.05477 Learning +1502.05805 Analysis of PDEs +1503.00151 +1503.04363 Computation +1503.04507 Strongly Correlated Electrons +1503.06155 Statistics Theory +1503.06734 Analysis of PDEs +1503.07883 Theory +1503.08098 Materials Science +1503.08446 +1504.00296 Probability +1504.01013 Computer Vision and Pattern Recognition +1504.02251 Probability +1504.03231 +1504.03265 +1504.04838 +1504.05037 Commutative Algebra +1504.06069 Chemical Physics +1504.06780 +1504.08051 Numerical Analysis +1505.01657 Representation Theory +1505.02059 Astrophysics of Galaxies +1505.04730 +1505.05833 General Physics +1505.06894 Differential Geometry +1505.07460 Theory +1506.00088 Statistics Theory +1506.00497 +1506.02608 Number Theory +1506.02974 Metric Geometry +1506.03365 Computer Vision and Pattern Recognition +1506.03713 Differential Geometry +1506.05517 Group Theory +1506.06156 Mesoscale and Nanoscale Physics +1507.01974 Mesoscale and Nanoscale Physics +1507.02316 Functional Analysis +1507.03067 Data Structures and Algorithms +1507.03236 Mesoscale and Nanoscale Physics +1507.05848 +1507.06234 Representation Theory +1507.06569 Combinatorics +1507.07050 Statistics Theory +1507.08542 +1508.00945 Machine Learning +1508.02992 +1508.03226 Geometric Topology +1508.05227 Phenomenology +1508.05622 Group Theory +1508.05835 Probability +1508.06693 Instrumentation and Detectors +1509.01161 Strongly Correlated Electrons +1509.01172 Strongly Correlated Electrons +1509.02781 Neurons and Cognition +1509.03098 Probability +1509.03174 General Physics +1509.03249 +1509.03816 Dynamical Systems +1509.04363 +1509.04759 Quantum Gases +1509.05190 Experiment +1509.05552 Numerical Analysis +1509.05796 Astrophysics of Galaxies +1509.06024 Information Theory +1509.06751 Astrophysics of Galaxies +1509.08002 Mesoscale and Nanoscale Physics +1509.08275 Combinatorics +1509.09032 Quantum Algebra +1509.09148 Numerical Analysis +1510.00094 Methodology +1510.00886 Algebraic Geometry +1510.01056 Mesoscale and Nanoscale Physics +1510.01068 Dynamical Systems +1510.01635 Mesoscale and Nanoscale Physics +1510.03066 Theory +1510.03451 Mesoscale and Nanoscale Physics +1510.04672 Atomic Physics +1510.06142 Numerical Analysis +1510.06545 Group Theory +1510.06732 Applications +1510.06980 +1510.07030 Risk Management +1510.07562 Phenomenology +1510.08367 Experiment +1510.08605 Complex Variables +1510.08838 Symplectic Geometry +1511.00877 Rings and Algebras +1511.00968 Phenomenology +1511.01749 Classical Analysis and ODEs +1511.02860 Theory +1511.04428 Distributed, Parallel, and Cluster Computing +1511.04652 Spectral Theory +1511.05294 Functional Analysis +1511.06038 Computation and Language +1511.06273 +1511.06602 Geometric Topology +1511.06829 Analysis of PDEs +1511.08920 Computational Engineering, Finance, and Science +1512.00942 Plasma Physics +1512.01442 Materials Science +1512.01500 Dynamical Systems +1512.02272 Dynamical Systems +1512.02519 Theory +1512.03581 Phenomenology +1512.03927 Physics and Society +1512.03933 Algebraic Geometry +1512.04516 Differential Geometry +1512.05767 Phenomenology +1512.05932 Materials Science +1512.06292 Statistical Mechanics +1512.07940 Plasma Physics +1512.08023 +1512.08188 Group Theory +1512.09328 +1601.00007 High Energy Astrophysical Phenomena +1601.00174 Disordered Systems and Neural Networks +1601.00645 Astrophysics of Galaxies +1601.01837 Phenomenology +1601.01838 Phenomenology +1601.02318 Soft Condensed Matter +1601.02930 Materials Science +1601.03049 Phenomenology +1601.03487 Mesoscale and Nanoscale Physics +1601.03955 +1601.04337 Symplectic Geometry +1601.04353 Materials Science +1601.05560 Statistics Theory +1601.06602 Learning +1601.06924 Mesoscale and Nanoscale Physics +1601.07450 +1601.07993 Operator Algebras +1602.00159 Economics +1602.00699 Theory +1602.00830 Spectral Theory +1602.00985 Computer Vision and Pattern Recognition +1602.01168 Computer Vision and Pattern Recognition +1602.01822 Logic +1602.01849 Statistical Mechanics +1602.03492 Representation Theory +1602.03856 Geometric Topology +1602.03952 Theory +1602.04695 Classical Analysis and ODEs +1602.04732 Formal Languages and Automata Theory +1602.04895 Representation Theory +1602.06251 General Physics +1602.06677 Materials Science +1602.06752 Metric Geometry +1602.07868 Learning +1602.08009 +1603.00106 Learning +1603.00972 Representation Theory +1603.01160 Neurons and Cognition +1603.01930 +1603.02194 Learning +1603.02291 High Energy Astrophysical Phenomena +1603.02296 Statistical Mechanics +1603.03826 Other Computer Science +1603.03881 Number Theory +1603.04066 Probability +1603.04525 Computer Vision and Pattern Recognition +1603.04647 Optics +1603.04697 General Physics +1603.04912 Other Statistics +1603.05141 Quantum Gases +1603.06006 Probability +1603.06053 Databases +1603.06273 Theory +1603.06613 Disordered Systems and Neural Networks +1603.06748 Optics +1603.06961 Experiment +1603.07161 Chemical Physics +1603.07633 Soft Condensed Matter +1603.08586 Geometric Topology +1603.08917 General Mathematics +1603.09310 Number Theory +1603.09326 Methodology +1604.00679 Probability +1604.00727 Computation and Language +1604.00965 Theory +1604.01600 Numerical Analysis +1604.01885 +1604.02306 Mesoscale and Nanoscale Physics +1604.02329 Number Theory +1604.03995 Chemical Physics +1604.04589 High Energy Astrophysical Phenomena +1604.04701 Phenomenology +1604.04877 Geometric Topology +1604.05211 Fluid Dynamics +1604.05689 Systems and Control +1604.06111 Molecular Networks +1604.06222 Superconductivity +1604.06691 Systems and Control +1604.06693 +1604.07296 +1604.07387 +1604.07684 Accelerator Physics +1604.07865 Rings and Algebras +1604.08118 Probability +1605.00066 +1605.00107 +1605.00124 Data Structures and Algorithms +1605.01702 Optimization and Control +1605.01722 General Mathematics +1605.01898 Phenomenology +1605.02533 Solar and Stellar Astrophysics +1605.03885 Astrophysics of Galaxies +1605.03936 Number Theory +1605.03952 Quantitative Methods +1605.04037 Probability +1605.04171 Materials Science +1605.04293 +1605.04506 Statistical Mechanics +1605.04723 Computers and Society +1605.04807 Combinatorics +1605.04900 Operator Algebras +1605.05072 Disordered Systems and Neural Networks +1605.05396 Neural and Evolutionary Computing +1605.05489 Logic +1605.06227 Probability +1605.06909 Operator Algebras +1605.07103 Spectral Theory +1605.07335 Artificial Intelligence +1605.07424 Number Theory +1605.07866 Computer Vision and Pattern Recognition +1605.08143 Computer Science and Game Theory +1605.08273 General Mathematics +1605.08387 Theory +1605.08392 Probability +1605.08512 Learning +1605.08664 Cryptography and Security +1605.08737 Statistics Theory +1605.08894 Atomic Physics +1605.08963 Methodology +1605.08998 Information Theory +1605.09021 Distributed, Parallel, and Cluster Computing +1605.09046 Learning +1605.09481 +1605.09503 Methodology +1605.09656 Quantum Algebra +1605.09673 Learning +1605.09722 Quantum Algebra +1606.00044 Differential Geometry +1606.00047 Differential Geometry +1606.00049 Group Theory +1606.00058 Artificial Intelligence +1606.00078 Classical Analysis and ODEs +1606.00100 +1606.00236 Probability +1606.00357 Physics Education +1606.00471 Optics +1606.00573 +1606.00596 Computational Complexity +1606.00707 Algebraic Geometry +1606.00757 Information Theory +1606.00835 Combinatorics +1606.00851 Mesoscale and Nanoscale Physics +1606.00998 Systems and Control +1606.01088 Probability +1606.01243 Computational Engineering, Finance, and Science +1606.01244 Classical Physics +1606.01245 Numerical Analysis +1606.01257 Optimization and Control +1606.01259 Astrophysics of Galaxies +1606.01261 Learning +1606.01265 Probability +1606.01266 K-Theory and Homology +1606.01267 Theory +1606.01269 Computation and Language +1606.01278 Algebraic Geometry +1606.01281 Combinatorics +1606.01283 Computation and Language +1606.01284 Machine Learning +1606.01285 Probability +1606.01287 Analysis of PDEs +1606.01288 Robotics +1606.01292 Computation and Language +1606.01294 Number Theory +1606.01296 Rings and Algebras +1606.01297 K-Theory and Homology +1606.01307 Computer Vision and Pattern Recognition +1606.01308 Materials Science +1606.01312 Instrumentation and Methods for Astrophysics +1606.01322 Mesoscale and Nanoscale Physics +1606.01324 Methodology +1606.01326 Atomic Physics +1606.01335 Complex Variables +1606.01338 Numerical Analysis +1606.01343 Pricing of Securities +1606.01344 Logic in Computer Science +1606.01346 +1606.01348 Computers and Society +1606.01349 Computers and Society +1606.01351 Computers and Society +1606.01352 Systems and Control +1606.01353 High Energy Astrophysical Phenomena +1606.01354 Computers and Society +1606.01355 Computers and Society +1606.01356 Computers and Society +1606.01357 Soft Condensed Matter +1606.01359 Functional Analysis +1606.01360 Computers and Society +1606.01361 Functional Analysis +1606.01362 Computers and Society +1606.01363 Computers and Society +1606.01364 Networking and Internet Architecture +1606.01365 Computers and Society +1606.01366 Computers and Society +1606.01368 Sound +1606.01370 Analysis of PDEs +1606.01371 Data Structures and Algorithms +1606.01372 Biomolecules +1606.01374 Information Theory +1606.01376 Combinatorics +1606.01378 Analysis of PDEs +1606.01380 Artificial Intelligence +1606.01383 Algebraic Geometry +1606.01384 Algebraic Geometry +1606.01385 Methodology +1606.01393 Computer Vision and Pattern Recognition +1606.01394 Chemical Physics +1606.01396 Numerical Analysis +1606.01401 Populations and Evolution +1606.01403 Cryptography and Security +1606.01404 Computation and Language +1606.01408 Theory +1606.01412 Artificial Intelligence +1606.01413 Materials Science +1606.01417 General Physics +1606.01418 Algebraic Geometry +1606.01419 Other Computer Science +1606.01421 Combinatorics +1606.01424 Optimization and Control +1606.01425 Computers and Society +1606.01426 Computers and Society +1606.01427 Computers and Society +1606.01428 Computers and Society +1606.01430 Computers and Society +1606.01431 Other Computer Science +1606.01432 Computers and Society +1606.01433 Computation and Language +1606.01434 Computers and Society +1606.01436 Computers and Society +1606.01438 Quantum Algebra +1606.01443 Combinatorics +1606.01444 Computers and Society +1606.01445 Computers and Society +1606.01446 Geometric Topology +1606.01447 Computers and Society +1606.01448 Computers and Society +1606.01449 Computers and Society +1606.01450 Computers and Society +1606.01451 Logic in Computer Science +1606.01452 Digital Libraries +1606.01454 Computers and Society +1606.01456 Computers and Society +1606.01457 Computer Science and Game Theory +1606.01458 +1606.01459 Algebraic Geometry +1606.01460 Computer Vision and Pattern Recognition +1606.01461 Dynamical Systems +1606.01463 Algebraic Geometry +1606.01469 Differential Geometry +1606.01470 Superconductivity +1606.01472 Methodology +1606.01474 Phenomenology +1606.01475 +1606.01479 Computers and Society +1606.01481 Computer Vision and Pattern Recognition +1606.01483 Spectral Theory +1606.01487 Machine Learning +1606.01493 Group Theory +1606.01496 Combinatorics +1606.01500 Numerical Analysis +1606.01501 +1606.01504 Algebraic Topology +1606.01506 Representation Theory +1606.01511 Statistics Theory +1606.01512 Analysis of PDEs +1606.01518 Algebraic Geometry +1606.01519 Computer Vision and Pattern Recognition +1606.01521 Dynamical Systems +1606.01524 Classical Analysis and ODEs +1606.01528 Probability +1606.01530 Data Structures and Algorithms +1606.01533 +1606.01535 Computer Vision and Pattern Recognition +1606.01536 Distributed, Parallel, and Cluster Computing +1606.01540 Learning +1606.01543 Social and Information Networks +1606.01546 Rings and Algebras +1606.01548 Optimization and Control +1606.01550 Computer Vision and Pattern Recognition +1606.01552 Neural and Evolutionary Computing +1606.01555 Strongly Correlated Electrons +1606.01556 Chemical Physics +1606.01557 Information Theory +1606.01561 Computer Vision and Pattern Recognition +1606.01562 Quantum Gases +1606.01563 Spectral Theory +1606.01564 Probability +1606.01567 Information Theory +1606.01569 Optimization and Control +1606.01575 Metric Geometry +1606.01576 Symbolic Computation +1606.01579 +1606.01580 Differential Geometry +1606.01585 Differential Geometry +1606.01587 Solar and Stellar Astrophysics +1606.01590 Differential Geometry +1606.01594 Number Theory +1606.01595 Computer Vision and Pattern Recognition +1606.01596 Analysis of PDEs +1606.01597 Materials Science +1606.01601 Computer Vision and Pattern Recognition +1606.01605 Number Theory +1606.01606 Plasma Physics +1606.01607 Hardware Architecture +1606.01608 Networking and Internet Architecture +1606.01610 Computer Science and Game Theory +1606.01615 Functional Analysis +1606.01617 Probability +1606.01618 Probability +1606.01619 Probability +1606.01620 Dynamical Systems +1606.01624 Materials Science +1606.01629 Probability +1606.01631 Instrumentation and Methods for Astrophysics +1606.01632 Materials Science +1606.01633 Statistics Theory +1606.01634 Applications +1606.01638 Systems and Control +1606.01639 Dynamical Systems +1606.01642 Logic in Computer Science +1606.01644 Dynamical Systems +1606.01645 Mesoscale and Nanoscale Physics +1606.01647 Rings and Algebras +1606.01652 Space Physics +1606.01653 Theory +1606.01654 K-Theory and Homology +1606.01660 Information Theory +1606.01664 Quantum Gases +1606.01666 Applications +1606.01669 Group Theory +1606.01670 +1606.01671 Cryptography and Security +1606.01675 Solar and Stellar Astrophysics +1606.01677 Optics +1606.01679 Phenomenology +1606.01680 Functional Analysis +1606.01686 Probability +1606.01687 Probability +1606.01690 Mesoscale and Nanoscale Physics +1606.01691 Representation Theory +1606.01692 Space Physics +1606.01693 Combinatorics +1606.01694 Disordered Systems and Neural Networks +1606.01699 Astrophysics of Galaxies +1606.01704 Functional Analysis +1606.01709 Materials Science +1606.01713 Biological Physics +1606.01714 Space Physics +1606.01715 Number Theory +1606.01718 Optimization and Control +1606.01719 Networking and Internet Architecture +1606.01720 Logic in Computer Science +1606.01721 Computer Vision and Pattern Recognition +1606.01722 Category Theory +1606.01725 Probability +1606.01726 Representation Theory +1606.01727 Representation Theory +1606.01729 Materials Science +1606.01730 Space Physics +1606.01732 Theory +1606.01734 Astrophysics of Galaxies +1606.01737 Numerical Analysis +1606.01738 Classical Physics +1606.01739 Numerical Analysis +1606.01740 Systems and Control +1606.01742 Databases +1606.01745 Information Theory +1606.01746 Methodology +1606.01749 Methodology +1606.01751 Combinatorics +1606.01752 Astrophysics of Galaxies +1606.01753 Numerical Analysis +1606.01754 Data Structures and Algorithms +1606.01758 Combinatorics +1606.01760 Materials Science +1606.01765 Dynamical Systems +1606.01766 Numerical Analysis +1606.01774 High Energy Astrophysical Phenomena +1606.01776 Geometric Topology +1606.01784 Analysis of PDEs +1606.01791 Instrumentation and Detectors +1606.01792 Computation and Language +1606.01794 Complex Variables +1606.01795 Representation Theory +1606.01796 Algebraic Geometry +1606.01803 Algebraic Topology +1606.01805 Fluid Dynamics +1606.01807 Materials Science +1606.01808 Digital Libraries +1606.01809 Commutative Algebra +1606.01812 Commutative Algebra +1606.01817 Superconductivity +1606.01819 Dynamical Systems +1606.01820 Disordered Systems and Neural Networks +1606.01821 Chemical Physics +1606.01825 Soft Condensed Matter +1606.01827 Quantum Algebra +1606.01828 Differential Geometry +1606.01833 Distributed, Parallel, and Cluster Computing +1606.01834 Optics +1606.01835 Probability +1606.01836 Applications +1606.01837 Complex Variables +1606.01842 Plasma Physics +1606.01843 Algebraic Geometry +1606.01844 Computational Complexity +1606.01849 Networking and Internet Architecture +1606.01852 Popular Physics +1606.01855 Machine Learning +1606.01861 Differential Geometry +1606.01863 Probability +1606.01864 Atomic Physics +1606.01866 Popular Physics +1606.01867 Commutative Algebra +1606.01870 Accelerator Physics +1606.01873 Computer Vision and Pattern Recognition +1606.01882 Dynamical Systems +1606.01885 Learning +cs/0701185 Data Structures and Algorithms +0705.3825 Strongly Correlated Electrons +0705.4390 Materials Science +0711.3820 Algebraic Geometry +0906.0191 +0911.3967 +1002.3209 Disordered Systems and Neural Networks +1003.5969 Algebraic Geometry +1006.0048 Category Theory +1006.0829 Optics +1006.0830 Optics +1102.4393 Number Theory +1104.0475 Applications +1105.4269 +1105.5880 Materials Science +1106.2310 Group Theory +1106.2596 Materials Science +1108.3935 Materials Science +1110.1731 Materials Science +1110.5543 Rings and Algebras +1110.5981 Classical Analysis and ODEs +1110.6375 Strongly Correlated Electrons +1201.6424 Strongly Correlated Electrons +1202.3427 Classical Physics +1203.0127 Superconductivity +1203.0852 Algebraic Geometry +1206.4011 Logic +1207.1790 Commutative Algebra +1210.1522 Algebraic Geometry +1212.0771 Combinatorics +1301.3225 Chemical Physics +1301.5494 Analysis of PDEs +1302.1984 Symplectic Geometry +1302.4809 Materials Science +1303.0562 Soft Condensed Matter +1303.1973 +1303.3190 Mesoscale and Nanoscale Physics +1303.5452 Computational Engineering, Finance, and Science +1304.3197 Complex Variables +1305.2300 +1305.5696 Atomic Physics +1305.6200 Analysis of PDEs +1305.7341 Optics +1306.1042 Mesoscale and Nanoscale Physics +1306.3011 Computational Engineering, Finance, and Science +1306.5368 Methodology +1307.1625 Computational Engineering, Finance, and Science +1307.3530 Biological Physics +1309.3728 Probability +1310.6157 Statistical Mechanics +1310.6881 Dynamical Systems +1310.7881 Analysis of PDEs +1311.0046 Dynamical Systems +1312.1101 Quantum Algebra +1312.4047 Materials Science +1312.4148 Functional Analysis +1312.5541 Group Theory +1401.1439 Classical Analysis and ODEs +1401.3571 Materials Science +1401.6217 Fluid Dynamics +1401.7065 Functional Analysis +1401.7757 Cosmology and Nongalactic Astrophysics +1402.0745 +1402.0802 +1402.1886 Group Theory +1402.5843 Formal Languages and Automata Theory +1403.3184 Superconductivity +1403.3234 Quantum Gases +1403.6167 Computational Engineering, Finance, and Science +1403.7997 Logic in Computer Science +1405.4355 Superconductivity +1405.4729 Representation Theory +1405.6371 Representation Theory +1405.7022 Number Theory +1406.1479 +1406.2966 Differential Geometry +1406.7042 Computational Engineering, Finance, and Science +1407.0817 Analysis of PDEs +1407.5329 Geometric Topology +1408.4658 +1408.4686 +1409.0495 Algebraic Geometry +1409.2155 Dynamical Systems +1409.3520 Combinatorics +1409.5831 Phenomenology +1409.6936 Rings and Algebras +1409.8461 Materials Science +1410.2385 Probability +1410.4436 Instrumentation and Methods for Astrophysics +1410.5459 +1410.8275 Methodology +1411.1685 K-Theory and Homology +1411.4945 +1411.5100 Quantum Gases +1411.7676 Computer Vision and Pattern Recognition +1412.1904 +1412.3103 Information Retrieval +1412.3239 +1412.6484 Strongly Correlated Electrons +1412.6916 Cosmology and Nongalactic Astrophysics +1412.8192 Analysis of PDEs +1412.8753 Biological Physics +1501.00630 Computer Vision and Pattern Recognition +1501.00909 Computer Vision and Pattern Recognition +1501.01382 Probability +1501.04238 +1501.04287 +1501.04958 Functional Analysis +1501.05200 Machine Learning +1501.05552 Applications +1501.06146 Phenomenology +1501.06502 Statistics Theory +1501.07258 Probability +1501.07678 Strongly Correlated Electrons +1502.01029 Strongly Correlated Electrons +1502.01995 Pattern Formation and Solitons +1502.04371 Numerical Analysis +1502.04572 Optics +1502.04856 +1502.05187 Combinatorics +1502.05557 Strongly Correlated Electrons +1502.06143 Analysis of PDEs +1502.06836 Functional Analysis +1503.00263 +1503.01497 High Energy Astrophysical Phenomena +1503.01940 Methodology +1503.02015 Theory +1503.03150 Symplectic Geometry +1503.03555 Computational Physics +1503.06972 Astrophysics of Galaxies +1503.07732 Soft Condensed Matter +1503.08601 Numerical Analysis +1504.00688 Theory +1504.01056 High Energy Astrophysical Phenomena +1504.01595 Analysis of PDEs +1504.02855 Fluid Dynamics +1504.02897 Computational Physics +1504.03559 Theory +1504.04212 Materials Science +1504.06513 Functional Analysis +1504.06907 Theory +1504.06934 Materials Science +1504.07471 Astrophysics of Galaxies +1504.07526 Information Theory +1504.08291 Neural and Evolutionary Computing +1505.00753 Strongly Correlated Electrons +1505.00931 Number Theory +1505.01277 +1505.01378 Physics and Society +1505.01414 Algebraic Geometry +1505.02058 Group Theory +1505.02080 Phenomenology +1505.02097 Methodology +1505.02467 Mesoscale and Nanoscale Physics +1505.02518 Analysis of PDEs +1505.02620 Quantum Algebra +1505.02868 Strongly Correlated Electrons +1505.03178 Analysis of PDEs +1505.03763 Complex Variables +1505.05128 Number Theory +1505.06214 Strongly Correlated Electrons +1505.07359 Symplectic Geometry +1505.08017 Phenomenology +1505.08159 Physics and Society +1506.00867 Astrophysics of Galaxies +1506.00911 +1506.01554 Strongly Correlated Electrons +1506.02433 Physics and Society +1506.02834 Atomic Physics +1506.03077 Materials Science +1506.03472 Strongly Correlated Electrons +1506.04445 Pattern Formation and Solitons +1506.05196 Computer Vision and Pattern Recognition +1506.05215 Applications +1506.06491 Strongly Correlated Electrons +1506.06612 +1506.06777 Cosmology and Nongalactic Astrophysics +1506.07573 +1506.08088 Differential Geometry +1506.08141 +1506.09058 Quantum Gases +1506.09215 Computer Vision and Pattern Recognition +1507.00219 Computational Engineering, Finance, and Science +1507.00676 Cosmology and Nongalactic Astrophysics +1507.00733 Astrophysics of Galaxies +1507.00736 Astrophysics of Galaxies +1507.00743 Cosmology and Nongalactic Astrophysics +1507.01210 Astrophysics of Galaxies +1507.01214 Astrophysics of Galaxies +1507.01293 Instrumentation and Methods for Astrophysics +1507.01952 Astrophysics of Galaxies +1507.02160 Cosmology and Nongalactic Astrophysics +1507.02281 Solar and Stellar Astrophysics +1507.02534 Probability +1507.02724 Lattice +1507.02937 Dynamical Systems +1507.03345 Phenomenology +1507.03359 Analysis of PDEs +1507.03397 Cell Behavior +1507.03722 Superconductivity +1507.04923 Astrophysics of Galaxies +1507.05355 +1507.05378 Theory +1507.05505 Plasma Physics +1507.05515 Mesoscale and Nanoscale Physics +1507.05566 Analysis of PDEs +1507.06236 +1507.06546 +1507.06617 Computer Vision and Pattern Recognition +1507.06649 +1507.07164 Mesoscale and Nanoscale Physics +1507.07256 Information Theory +1507.07536 Applications +1507.07694 Astrophysics of Galaxies +1507.07762 Mesoscale and Nanoscale Physics +1507.07954 Astrophysics of Galaxies +1507.08525 Superconductivity +1508.00343 Lattice +1508.00816 Disordered Systems and Neural Networks +1508.01132 Numerical Analysis +1508.01439 Statistical Mechanics +1508.01853 Earth and Planetary Astrophysics +1508.02109 Theory +1508.03183 Optics +1508.03212 Mesoscale and Nanoscale Physics +1508.03690 Applications +1508.03709 +1508.04245 Numerical Analysis +1508.04276 Optics +1508.04298 Mesoscale and Nanoscale Physics +1508.04414 Strongly Correlated Electrons +1508.04608 Theory +1508.05333 Analysis of PDEs +1508.05716 Phenomenology +1508.05733 Statistics Theory +1508.06444 Astrophysics of Galaxies +1508.07928 Theory +1509.00394 Computation +1509.00477 Atomic Physics +1509.00516 Materials Science +1509.00655 Quantum Gases +1509.01057 Mesoscale and Nanoscale Physics +1509.01759 Materials Science +1509.01988 Computer Science and Game Theory +1509.02136 Theory +1509.02429 Earth and Planetary Astrophysics +1509.02851 Mesoscale and Nanoscale Physics +1509.02859 +1509.02995 Multimedia +1509.03097 Strongly Correlated Electrons +1509.03237 Optics +1509.03342 Instrumentation and Methods for Astrophysics +1509.03687 Mesoscale and Nanoscale Physics +1509.03877 Computer Vision and Pattern Recognition +1509.04282 Phenomenology +1509.04460 Materials Science +1509.04661 Theory +1509.04818 Phenomenology +1509.05185 Materials Science +1509.05298 Astrophysics of Galaxies +1509.05498 Systems and Control +1509.05642 Information Theory +1509.06621 Materials Science +1509.07020 Phenomenology +1509.07049 Theory +1509.07328 Quantum Gases +1509.07720 Computational Physics +1509.07932 Algebraic Topology +1509.08149 Phenomenology +1509.08485 Experiment +1509.08808 Theory +1509.08821 Geometric Topology +1509.09096 Atmospheric and Oceanic Physics +1510.00167 Superconductivity +1510.00297 Information Theory +1510.00627 Learning +1510.00707 +1510.01129 Optics +1510.01407 Astrophysics of Galaxies +1510.02181 Distributed, Parallel, and Cluster Computing +1510.02189 Information Theory +1510.02415 Information Theory +1510.02562 Materials Science +1510.02782 +1510.03000 Soft Condensed Matter +1510.03108 Materials Science +1510.03139 Theory +1510.03391 Dynamical Systems +1510.03746 Soft Condensed Matter +1510.03881 Probability +1510.04238 Computer Vision and Pattern Recognition +1510.04260 Optics +1510.04627 Medical Physics +1510.05166 Exactly Solvable and Integrable Systems +1510.06011 +1510.06210 Materials Science +1510.06327 Dynamical Systems +1510.06751 Solar and Stellar Astrophysics +1510.07073 Mesoscale and Nanoscale Physics +1510.07174 Phenomenology +1510.07720 Differential Geometry +1510.07993 Atomic Physics +1510.08028 Optics +1510.08097 Astrophysics of Galaxies +1510.08357 Biological Physics +1510.08426 Optics +1510.08664 Mesoscale and Nanoscale Physics +1510.08675 Lattice +1510.08767 Cosmology and Nongalactic Astrophysics +1510.09041 Computer Vision and Pattern Recognition +1510.09094 Atomic Physics +1511.00039 Chemical Physics +1511.00079 Analysis of PDEs +1511.00107 Genomics +1511.00379 Systems and Control +1511.00387 Differential Geometry +1511.00447 Atomic Physics +1511.01944 High Energy Astrophysical Phenomena +1511.02075 Astrophysics of Galaxies +1511.02135 +1511.02205 Strongly Correlated Electrons +1511.02887 Theory +1511.02996 Theory +1511.03239 Functional Analysis +1511.03659 Astrophysics of Galaxies +1511.03887 +1511.04244 Information Theory +1511.04274 Number Theory +1511.04315 Number Theory +1511.05347 Phenomenology +1511.05401 Materials Science +1511.05426 Optics +1511.05548 Populations and Evolution +1511.05550 Analysis of PDEs +1511.05753 Plasma Physics +1511.05790 +1511.05791 +1511.06245 Theory +1511.06592 +1511.06690 Fluid Dynamics +1511.06873 Trading and Market Microstructure +1511.06920 Neurons and Cognition +1511.06990 Phenomenology +1511.07201 Theory +1511.07949 Computational Complexity +1511.08485 Optics +1511.08676 Soft Condensed Matter +1511.08719 Mesoscale and Nanoscale Physics +1511.08756 Cryptography and Security +1511.08776 +1511.08794 Theory +1511.08830 General Finance +1511.08912 Analysis of PDEs +1511.09075 Physics and Society +1512.00013 Theory +1512.00252 +1512.00303 Fluid Dynamics +1512.00812 Dynamical Systems +1512.00876 Differential Geometry +1512.00989 Materials Science +1512.01026 Applications +1512.01267 Economics +1512.01386 +1512.01791 Mesoscale and Nanoscale Physics +1512.02030 Mesoscale and Nanoscale Physics +1512.02074 +1512.02305 Materials Science +1512.02321 Dynamical Systems +1512.02375 Analysis of PDEs +1512.02489 +1512.02903 Classical Analysis and ODEs +1512.02931 Soft Condensed Matter +1512.02942 +1512.02963 Data Structures and Algorithms +1512.03098 +1512.03102 Soft Condensed Matter +1512.03380 Mesoscale and Nanoscale Physics +1512.03441 Statistical Mechanics +1512.03462 +1512.03495 Quantum Algebra +1512.03652 +1512.03690 Materials Science +1512.03756 +1512.03937 Numerical Analysis +1512.04053 Phenomenology +1512.04073 +1512.04101 Probability +1512.04183 +1512.04438 Phenomenology +1512.04465 Fluid Dynamics +1512.04556 Materials Science +1512.04567 Phenomenology +1512.04961 Theory +1512.05085 Phenomenology +1512.05156 Materials Science +1512.05418 Mesoscale and Nanoscale Physics +1512.05435 High Energy Astrophysical Phenomena +1512.05575 Superconductivity +1512.05707 +1512.05800 Mesoscale and Nanoscale Physics +1512.06240 Theory +1512.06345 Mesoscale and Nanoscale Physics +1512.06431 Theory +1512.06464 Theory +1512.06517 Statistical Mechanics +1512.06518 Optics +1512.07203 High Energy Astrophysical Phenomena +1512.07229 Phenomenology +1512.07377 Optics +1512.07381 Geophysics +1512.07497 Phenomenology +1512.07701 Representation Theory +1512.08307 Phenomenology +1512.08514 Theory +1512.08875 Earth and Planetary Astrophysics +1512.09060 Theory +1512.09123 Exactly Solvable and Integrable Systems +1512.09127 Phenomenology +1512.09141 Solar and Stellar Astrophysics +1512.09286 Probability +1601.00013 Neural and Evolutionary Computing +1601.00240 Phenomenology +1601.00401 Experiment +1601.01068 Numerical Analysis +1601.01400 Phenomenology +1601.01624 Lattice +1601.01649 Neurons and Cognition +1601.01712 Phenomenology +1601.01968 Algebraic Geometry +1601.01994 Strongly Correlated Electrons +1601.02003 Probability +1601.02089 Optics +1601.02148 Complex Variables +1601.02152 Theory +1601.02239 Optimization and Control +1601.02435 Analysis of PDEs +1601.02875 Mesoscale and Nanoscale Physics +1601.02990 Physics and Society +1601.02995 Commutative Algebra +1601.03025 Strongly Correlated Electrons +1601.03365 Strongly Correlated Electrons +1601.03383 +1601.03502 Superconductivity +1601.03639 +1601.03663 Materials Science +1601.03688 Statistical Mechanics +1601.03813 Theory +1601.03881 Disordered Systems and Neural Networks +1601.04027 Lattice +1601.04104 Strongly Correlated Electrons +1601.04281 Theory +1601.04310 Fluid Dynamics +1601.04501 Quantum Gases +1601.04543 Materials Science +1601.04545 Phenomenology +1601.04570 Materials Science +1601.04757 Superconductivity +1601.04813 Plasma Physics +1601.05077 Mesoscale and Nanoscale Physics +1601.05089 Phenomenology +1601.05354 Strongly Correlated Electrons +1601.05405 Theory +1601.05436 Tissues and Organs +1601.05505 +1601.05548 Optics +1601.05636 +1601.05642 +1601.05999 Phenomenology +1601.06090 Operator Algebras +1601.06581 Computation and Language +1601.06612 Theory +1601.06621 Plasma Physics +1601.06700 Theory +1601.06736 Strongly Correlated Electrons +1601.06746 Theory +1601.06913 Plasma Physics +1601.07214 Strongly Correlated Electrons +1601.07385 Phenomenology +1601.07610 Theory +1601.07781 General Physics +1601.07896 Physics Education +1601.08118 Probability +1601.08242 Computational Physics +1601.08247 Fluid Dynamics +1602.00089 +1602.00178 Functional Analysis +1602.00200 Lattice +1602.00237 Cosmology and Nongalactic Astrophysics +1602.00513 Analysis of PDEs +1602.00573 +1602.00658 Earth and Planetary Astrophysics +1602.00678 Distributed, Parallel, and Cluster Computing +1602.00684 Phenomenology +1602.00917 +1602.00948 Theory +1602.00958 K-Theory and Homology +1602.01294 +1602.01351 Phenomenology +1602.01494 Instrumentation and Detectors +1602.01523 Experiment +1602.02029 +1602.02051 Mesoscale and Nanoscale Physics +1602.02248 Phenomenology +1602.02421 Theory +1602.02516 Mesoscale and Nanoscale Physics +1602.02973 Dynamical Systems +1602.03120 Disordered Systems and Neural Networks +1602.03149 +1602.03154 Phenomenology +1602.03235 Cosmology and Nongalactic Astrophysics +1602.03362 Phenomenology +1602.03375 +1602.03417 Materials Science +1602.03526 Astrophysics of Galaxies +1602.03652 Experiment +1602.03788 +1602.04065 Soft Condensed Matter +1602.04088 Materials Science +1602.04100 Solar and Stellar Astrophysics +1602.04113 Lattice +1602.04518 Information Theory +1602.04823 Astrophysics of Galaxies +1602.05024 Statistical Mechanics +1602.05288 Phenomenology +1602.05411 High Energy Astrophysical Phenomena +1602.05495 Phenomenology +1602.05636 Mesoscale and Nanoscale Physics +1602.05645 +1602.05740 Optics +1602.06087 Superconductivity +1602.06106 Theory +1602.06264 Materials Science +1602.06563 Experiment +1602.06661 Optimization and Control +1602.06747 Plasma Physics +1602.06756 Theory +1602.06776 +1602.06777 +1602.06952 +1602.07114 Optics +1602.07159 Theory +1602.07173 Solar and Stellar Astrophysics +1602.07424 Data Structures and Algorithms +1602.07476 Theory +1602.07852 +1602.07915 Optics +1602.07934 Theory +1602.08087 Optics +1602.08103 Phenomenology +1602.08165 Phenomenology +1602.08282 +1602.08387 +1602.08414 Optics +1602.08456 Social and Information Networks +1602.08638 Theory +1602.08656 +1602.09089 Theory +1602.09131 Astrophysics of Galaxies +1603.00023 Phenomenology +1603.00026 Astrophysics of Galaxies +1603.00052 +1603.00070 Strongly Correlated Electrons +1603.00114 Dynamical Systems +1603.00170 Optics +1603.00181 Strongly Correlated Electrons +1603.00387 Theory +1603.00470 Instrumentation and Methods for Astrophysics +1603.00485 Strongly Correlated Electrons +1603.00541 Theory +1603.00546 Computer Vision and Pattern Recognition +1603.00614 Strongly Correlated Electrons +1603.00615 Theory +1603.00687 Optics +1603.00865 Phenomenology +1603.00937 Computational Physics +1603.00960 Computer Vision and Pattern Recognition +1603.00962 Phenomenology +1603.01001 Atomic Physics +1603.01121 Learning +1603.01178 Phenomenology +1603.01190 Plasma Physics +1603.01383 Phenomenology +1603.01400 Pattern Formation and Solitons +1603.01602 +1603.02023 Systems and Control +1603.02037 Phenomenology +1603.02283 Theory +1603.02446 Optics +1603.02549 Superconductivity +1603.02569 +1603.02610 Chemical Physics +1603.02889 Statistical Mechanics +1603.02984 +1603.03096 +1603.03299 Strongly Correlated Electrons +1603.03422 Materials Science +1603.03485 Mesoscale and Nanoscale Physics +1603.03537 Strongly Correlated Electrons +1603.03592 Strongly Correlated Electrons +1603.03620 Theory +1603.03767 Populations and Evolution +1603.03816 Optics +1603.03895 Mesoscale and Nanoscale Physics +1603.03985 Pattern Formation and Solitons +1603.04138 Mesoscale and Nanoscale Physics +1603.04182 Optics +1603.04197 Superconductivity +1603.04485 Theory +1603.04612 Optics +1603.04686 +1603.04732 +1603.04778 Phenomenology +1603.04821 +1603.04876 +1603.05108 Optics +1603.05169 Theory +1603.05196 Theory +1603.05388 Phenomenology +1603.05668 Phenomenology +1603.05678 Theory +1603.05737 Theory +1603.05744 Dynamical Systems +1603.05751 Biological Physics +1603.05830 Theory +1603.06001 Instrumentation and Methods for Astrophysics +1603.06033 Pattern Formation and Solitons +1603.06117 +1603.06402 Theory +1603.06810 Strongly Correlated Electrons +1603.06956 Biological Physics +1603.07043 +1603.07183 Cosmology and Nongalactic Astrophysics +1603.07184 Other Condensed Matter +1603.07205 Lattice +1603.07302 Chemical Physics +1603.07307 Theory +1603.07380 Theory +1603.07386 High Energy Astrophysical Phenomena +1603.07391 Atomic Physics +1603.07676 Mesoscale and Nanoscale Physics +1603.07739 Phenomenology +1603.07902 Mesoscale and Nanoscale Physics +1603.07940 Pattern Formation and Solitons +1603.07941 Mesoscale and Nanoscale Physics +1603.08068 Materials Science +1603.08084 Theory +1603.08101 +1603.08228 Phenomenology +1603.08399 Phenomenology +1603.08534 Mesoscale and Nanoscale Physics +1603.08673 Instrumentation and Methods for Astrophysics +1603.08690 Phenomenology +1603.08719 +1603.08840 Solar and Stellar Astrophysics +1603.08881 Phenomenology +1603.08926 Phenomenology +1603.09074 Pattern Formation and Solitons +1603.09154 Phenomenology +1603.09166 Phenomenology +1603.09217 Cosmology and Nongalactic Astrophysics +1603.09227 Computational Engineering, Finance, and Science +1603.09323 Theory +1603.09528 Earth and Planetary Astrophysics +1603.09548 Lattice +1603.09693 +1604.00177 Phenomenology +1604.00246 +1604.00313 +1604.00541 +1604.00768 Lattice +1604.00782 +1604.00791 Earth and Planetary Astrophysics +1604.00793 Analysis of PDEs +1604.00897 Theory +1604.00898 Mesoscale and Nanoscale Physics +1604.00955 High Energy Astrophysical Phenomena +1604.00984 Solar and Stellar Astrophysics +1604.01032 Solar and Stellar Astrophysics +1604.01040 Mesoscale and Nanoscale Physics +1604.01213 Phenomenology +1604.01392 Astrophysics of Galaxies +1604.01411 Earth and Planetary Astrophysics +1604.01599 Optics +1604.01726 Instrumentation and Methods for Astrophysics +1604.01805 Strongly Correlated Electrons +1604.01964 Materials Science +1604.02025 Optics +1604.02263 Phenomenology +1604.02447 Astrophysics of Galaxies +1604.02586 Mesoscale and Nanoscale Physics +1604.02956 Optics +1604.03046 Theory +1604.03167 Optics +1604.03201 Materials Science +1604.03231 +1604.03355 Theory +1604.03395 +1604.03411 Statistical Mechanics +1604.03417 Atmospheric and Oceanic Physics +1604.03484 Theory +1604.03598 Phenomenology +1604.03911 Strongly Correlated Electrons +1604.03957 Astrophysics of Galaxies +1604.03990 Statistical Mechanics +1604.04439 Solar and Stellar Astrophysics +1604.04909 High Energy Astrophysical Phenomena +1604.04938 Atomic Physics +1604.04990 Theory +1604.04996 Quantum Gases +1604.05199 Strongly Correlated Electrons +1604.05315 Astrophysics of Galaxies +1604.05407 +1604.05463 Earth and Planetary Astrophysics +1604.05580 +1604.05604 Astrophysics of Galaxies +1604.05662 Optics +1604.05744 Earth and Planetary Astrophysics +1604.05768 Computational Physics +1604.05827 Lattice +1604.05971 Biological Physics +1604.06097 Instrumentation and Methods for Astrophysics +1604.06259 Instrumentation and Detectors +1604.06395 Solar and Stellar Astrophysics +1604.06399 Solar and Stellar Astrophysics +1604.06472 High Energy Astrophysical Phenomena +1604.06493 Instrumentation and Detectors +1604.06634 Social and Information Networks +1604.06672 Fluid Dynamics +1604.06680 Fluid Dynamics +1604.06795 Astrophysics of Galaxies +1604.06921 Cosmology and Nongalactic Astrophysics +1604.07068 Chemical Physics +1604.07091 Optics +1604.07159 Superconductivity +1604.07175 Phenomenology +1604.07203 Phenomenology +1604.07251 Materials Science +1604.07253 +1604.07314 Theory +1604.07388 Earth and Planetary Astrophysics +1604.07410 Astrophysics of Galaxies +1604.07430 Superconductivity +1604.07441 Astrophysics of Galaxies +1604.08025 Strongly Correlated Electrons +1604.08042 Theory +1604.08100 Biomolecules +1604.08167 Phenomenology +1604.08170 Solar and Stellar Astrophysics +1604.08307 Phenomenology +1604.08331 Astrophysics of Galaxies +1604.08431 Strongly Correlated Electrons +1604.08452 High Energy Astrophysical Phenomena +1604.08465 Materials Science +1604.08467 Materials Science +1604.08589 Astrophysics of Galaxies +1604.08638 Theory +1604.08781 Computation and Language +1604.08862 Astrophysics of Galaxies +1604.08879 Phenomenology +1605.00051 Astrophysics of Galaxies +1605.00435 Algebraic Geometry +1605.00510 Solar and Stellar Astrophysics +1605.00631 Experiment +1605.00841 High Energy Astrophysical Phenomena +1605.00849 Theory +1605.00944 High Energy Astrophysical Phenomena +1605.01047 Superconductivity +1605.01053 +1605.01067 High Energy Astrophysical Phenomena +1605.01246 +1605.01632 Theory +1605.01948 Solar and Stellar Astrophysics +1605.02015 Mesoscale and Nanoscale Physics +1605.02072 Phenomenology +1605.02081 Instrumentation and Methods for Astrophysics +1605.02334 Mesoscale and Nanoscale Physics +1605.02685 Astrophysics of Galaxies +1605.02967 Discrete Mathematics +1605.03300 Atomic Physics +1605.03339 Chaotic Dynamics +1605.03419 Phenomenology +1605.03497 Strongly Correlated Electrons +1605.03587 Instrumentation and Methods for Astrophysics +1605.03669 High Energy Astrophysical Phenomena +1605.03781 Cosmology and Nongalactic Astrophysics +1605.03963 Astrophysics of Galaxies +1605.04003 +1605.04007 Combinatorics +1605.04195 High Energy Astrophysical Phenomena +1605.04416 Functional Analysis +1605.04458 Solar and Stellar Astrophysics +1605.04512 Phenomenology +1605.04540 Optics +1605.04554 Theory +1605.04667 Phenomenology +1605.04702 Solar and Stellar Astrophysics +1605.04705 Theory +1605.04798 Mesoscale and Nanoscale Physics +1605.04997 Materials Science +1605.05165 Theory +1605.05324 High Energy Astrophysical Phenomena +1605.05497 Phenomenology +1605.05537 Methodology +1605.05594 Earth and Planetary Astrophysics +1605.05704 Solar and Stellar Astrophysics +1605.06241 Strongly Correlated Electrons +1605.06370 Cosmology and Nongalactic Astrophysics +1605.06476 Materials Science +1605.07023 Instrumentation and Methods for Astrophysics +1605.07041 Physics and Society +1605.07059 Solar and Stellar Astrophysics +1605.07253 Instrumentation and Methods for Astrophysics +1605.07384 Solar and Stellar Astrophysics +1605.07579 Earth and Planetary Astrophysics +1605.07822 +1605.07973 Earth and Planetary Astrophysics +1605.07993 Strongly Correlated Electrons +1605.08141 Plasma Physics +1605.08198 Group Theory +1605.08514 Strongly Correlated Electrons +1605.08544 Strongly Correlated Electrons +1605.08585 +1605.08915 Optics +1605.08983 Pattern Formation and Solitons +1605.09218 Instrumentation and Detectors +1605.09342 Representation Theory +1605.09352 Statistical Mechanics +1605.09622 Theory +1605.09684 Astrophysics of Galaxies +1605.09713 Cell Behavior +1605.09787 Analysis of PDEs +1606.00048 Soft Condensed Matter +1606.00053 Astrophysics of Galaxies +1606.00147 +1606.00220 Materials Science +1606.00231 Mesoscale and Nanoscale Physics +1606.00528 Astrophysics of Galaxies +1606.00564 Statistical Mechanics +1606.00643 Number Theory +1606.00756 +1606.01050 Superconductivity +1606.01092 Solar and Stellar Astrophysics +1606.01186 Statistical Mechanics +1606.01194 Materials Science +1606.01309 Strongly Correlated Electrons +1606.01382 Statistics Theory +1606.01651 Learning +1606.01804 Instrumentation and Detectors +1606.01877 Classical Physics +1606.01889 Numerical Analysis +1606.02037 Physics and Society +1606.02401 Machine Learning +1606.02491 Optics +1606.02530 Cosmology and Nongalactic Astrophysics +1606.02684 Phenomenology +1606.02830 Solar and Stellar Astrophysics +1606.02843 Atomic Physics +1606.02891 Computation and Language +1606.02892 Computation and Language +1606.03576 Classical Analysis and ODEs +1606.03654 Mesoscale and Nanoscale Physics +1606.04076 Algebraic Geometry +1606.04210 Algebraic Geometry +1606.04304 +1606.04772 Phenomenology +1606.04975 Numerical Analysis +1606.05223 Logic in Computer Science +1606.05264 +1606.05335 Probability +1606.05652 Strongly Correlated Electrons +1606.05824 Optics +1606.05901 Populations and Evolution +1606.06003 Statistical Finance +1606.06147 High Energy Astrophysical Phenomena +1606.06426 Solar and Stellar Astrophysics +1606.06567 High Energy Astrophysical Phenomena +1606.06583 Analysis of PDEs +1606.06674 Instrumentation and Methods for Astrophysics +1606.06743 Astrophysics of Galaxies +1606.06875 Materials Science +1606.07130 Phenomenology +1606.07494 Lattice +1606.07532 Theory +1606.07602 Statistics Theory +1606.07616 Disordered Systems and Neural Networks +1606.07651 Mesoscale and Nanoscale Physics +1606.07744 General Physics +1606.07860 Artificial Intelligence +1606.07894 Differential Geometry +1606.07952 Solar and Stellar Astrophysics +1606.08053 Solar and Stellar Astrophysics +1606.08094 Genomics +1606.08125 +1606.08182 Solar and Stellar Astrophysics +1606.08402 Phenomenology +1606.08434 Combinatorics +1606.08435 Solar and Stellar Astrophysics +1606.08436 Mesoscale and Nanoscale Physics +1606.08440 Astrophysics of Galaxies +1606.08450 Superconductivity +1606.08455 Machine Learning +1606.08458 Mesoscale and Nanoscale Physics +1606.08459 Statistical Mechanics +1606.08460 Superconductivity +1606.08470 Mesoscale and Nanoscale Physics +1606.08471 Analysis of PDEs +1606.08472 Logic +1606.08475 Chemical Physics +1606.08476 Machine Learning +1606.08479 Differential Geometry +1606.08480 Computers and Society +1606.08484 Classical Physics +1606.08485 Combinatorics +1606.08487 Physics Education +1606.08488 Social and Information Networks +1606.08490 Probability +1606.08492 Logic +1606.08493 Solar and Stellar Astrophysics +1606.08495 Computation and Language +1606.08504 Probability +1606.08510 Information Theory +1606.08512 Instrumentation and Detectors +1606.08515 Optimization and Control +1606.08516 Atomic Physics +1606.08517 Algebraic Geometry +1606.08521 Information Retrieval +1606.08523 Representation Theory +1606.08525 Combinatorics +1606.08526 Strongly Correlated Electrons +1606.08527 +1606.08528 Human-Computer Interaction +1606.08529 Theory +1606.08531 Artificial Intelligence +1606.08532 Combinatorics +1606.08533 Numerical Analysis +1606.08534 Digital Libraries +1606.08535 Methodology +1606.08536 Cryptography and Security +1606.08538 Artificial Intelligence +1606.08540 Number Theory +1606.08545 Information Theory +1606.08546 Analysis of PDEs +1606.08548 Astrophysics of Galaxies +1606.08549 Machine Learning +1606.08551 Optics +1606.08553 Solar and Stellar Astrophysics +1606.08555 Materials Science +1606.08567 Neurons and Cognition +1606.08572 Computer Vision and Pattern Recognition +1606.08576 Mesoscale and Nanoscale Physics +1606.08577 Computation +1606.08582 Functional Analysis +1606.08584 Group Theory +1606.08585 Genomics +1606.08590 Computer Science and Game Theory +1606.08592 Algebraic Geometry +1606.08595 Numerical Analysis +1606.08596 Statistics Theory +1606.08598 Theory +1606.08601 Analysis of PDEs +1606.08604 Optimization and Control +1606.08605 Instrumentation and Methods for Astrophysics +1606.08606 Functional Analysis +1606.08610 Analysis of PDEs +1606.08611 Optimization and Control +1606.08612 Dynamical Systems +1606.08615 Classical Analysis and ODEs +1606.08616 Number Theory +1606.08621 Commutative Algebra +1606.08625 Analysis of PDEs +1606.08626 High Energy Astrophysical Phenomena +1606.08627 Probability +1606.08628 Statistics Theory +1606.08629 Biomolecules +1606.08631 Differential Geometry +1606.08637 +1606.08638 Solar and Stellar Astrophysics +1606.08639 +1606.08643 Geometric Topology +1606.08645 Data Structures and Algorithms +1606.08646 Information Theory +1606.08647 Functional Analysis +1606.08648 High Energy Astrophysical Phenomena +1606.08649 Category Theory +1606.08653 Probability +1606.08654 Cryptography and Security +1606.08655 Probability +1606.08657 Databases +1606.08663 Systems and Control +1606.08668 Logic in Computer Science +1606.08670 Analysis of PDEs +1606.08671 Algebraic Geometry +1606.08672 Instrumentation and Methods for Astrophysics +1606.08674 Theory +1606.08675 Differential Geometry +1606.08678 Theory +1606.08683 Instrumentation and Methods for Astrophysics +1606.08684 Space Physics +1606.08686 Hardware Architecture +1606.08687 Materials Science +1606.08689 Computation and Language +1606.08691 History and Overview +1606.08693 Statistical Mechanics +1606.08694 Computer Vision and Pattern Recognition +1606.08695 Algebraic Geometry +1606.08699 Logic in Computer Science +1606.08701 Instrumentation and Methods for Astrophysics +1606.08703 Logic in Computer Science +1606.08704 Popular Physics +1606.08708 Programming Languages +1606.08709 Superconductivity +1606.08714 History and Philosophy of Physics +1606.08716 Classical Analysis and ODEs +1606.08717 Optics +1606.08719 Data Structures and Algorithms +1606.08720 Statistical Mechanics +1606.08722 Logic in Computer Science +1606.08723 Mesoscale and Nanoscale Physics +1606.08724 Neurons and Cognition +1606.08727 Functional Analysis +1606.08728 Functional Analysis +1606.08729 Classical Analysis and ODEs +1606.08734 Solar and Stellar Astrophysics +1606.08735 Mesoscale and Nanoscale Physics +1606.08736 Analysis of PDEs +1606.08737 General Physics +1606.08739 Exactly Solvable and Integrable Systems +1606.08740 Numerical Analysis +1606.08741 Systems and Control +1606.08750 +1606.08751 Information Theory +1606.08754 Optics +1606.08757 Biological Physics +1606.08759 Methodology +1606.08761 Computational Engineering, Finance, and Science +1606.08762 Group Theory +1606.08764 Formal Languages and Automata Theory +1606.08767 +1606.08773 Classical Analysis and ODEs +1606.08777 Computation and Language +1606.08784 Theory +1606.08788 Populations and Evolution +1606.08791 Atomic Physics +1606.08792 Atmospheric and Oceanic Physics +1606.08802 Materials Science +1606.08804 History and Overview +1606.08806 Systems and Control +1606.08808 Learning +1606.08809 Functional Analysis +1606.08815 Logic in Computer Science +1606.08817 Data Structures and Algorithms +1606.08818 Symplectic Geometry +1606.08819 Learning +1606.08821 Computation and Language +1606.08827 Combinatorics +1606.08828 Information Theory +1606.08830 Mesoscale and Nanoscale Physics +1606.08832 +1606.08840 Representation Theory +hep-ph/0603079 Phenomenology +physics/0203085 Optics +quant-ph/9701038 +quant-ph/9706024 +0910.0521 Optimization and Control +1006.4334 Instrumentation and Methods for Astrophysics +1102.3459 Solar and Stellar Astrophysics +1102.4610 Instrumentation and Methods for Astrophysics +1104.1897 Methodology +1106.5693 Logic +1109.3569 Numerical Analysis +1110.5284 +1111.0910 Phenomenology +1201.4234 +1206.5033 Optimization and Control +1208.3083 Trading and Market Microstructure +1302.5674 Symbolic Computation +1303.7170 Differential Geometry +1307.6252 Fluid Dynamics +1307.7145 Solar and Stellar Astrophysics +1309.2401 General Topology +1309.3217 Computation +1311.0307 Methodology +1311.3725 Classical Analysis and ODEs +1401.2319 General Topology +1401.4865 Optimization and Control +1401.6219 Information Theory +1403.0098 General Topology +1403.1394 Commutative Algebra +1403.2229 Trading and Market Microstructure +1403.4953 Phenomenology +1403.7768 Metric Geometry +1405.2151 Combinatorics +1405.6289 General Topology +1405.7375 +1406.2291 Phenomenology +1406.3656 Numerical Analysis +1406.5162 Information Retrieval +1406.6107 +1407.0381 Information Theory +1407.1986 Probability +1407.7687 General Topology +1408.1592 Logic in Computer Science +1408.1806 Analysis of PDEs +1409.2962 Functional Analysis +1409.3364 Cosmology and Nongalactic Astrophysics +1409.3922 General Topology +1409.5008 Combinatorics +1409.5219 Geometric Topology +1409.8368 Probability +1410.1902 Strongly Correlated Electrons +1410.5369 Computational Complexity +1411.6664 Mesoscale and Nanoscale Physics +1412.2239 General Topology +1412.2544 Computer Science and Game Theory +1412.3121 Neural and Evolutionary Computing +1412.3384 Quantum Algebra +1412.7509 Theory +1412.7620 Phenomenology +1412.8212 Theory +1501.00703 Category Theory +1501.01518 Numerical Analysis +1501.05692 Dynamical Systems +1501.06127 Exactly Solvable and Integrable Systems +1501.06521 Learning +1501.06901 Number Theory +1502.01306 Probability +1502.01790 Phenomenology +1502.04238 Probability +1502.06131 Combinatorics +1502.07565 Information Theory +1503.00974 +1503.04278 General Topology +1503.04480 General Topology +1503.04769 Optimization and Control +1504.02240 Operator Algebras +1504.02602 Optimization and Control +1504.06210 Probability +1504.06383 Combinatorics +1504.06728 Dynamical Systems +1504.06784 Optimization and Control +1504.07381 Number Theory +1505.02296 Instrumentation and Detectors +1505.06083 +1505.06363 Metric Geometry +1505.07427 Computer Vision and Pattern Recognition +1506.02802 Portfolio Management +1506.03726 Mathematical Software +1506.06630 General Physics +1506.07369 Phenomenology +1506.07622 Number Theory +1507.00697 +1507.04014 Analysis of PDEs +1507.04228 Statistics Theory +1507.06898 Analysis of PDEs +1507.07024 Computation +1507.07160 Adaptation and Self-Organizing Systems +1507.08635 Superconductivity +1508.00252 Probability +1508.02085 Biomolecules +1508.02533 +1508.04188 +1508.05121 Phenomenology +1508.05596 Optics +1508.06306 Cosmology and Nongalactic Astrophysics +1508.07312 General Physics +1508.07638 +1509.00093 Geophysics +1509.00114 Machine Learning +1509.00666 Logic +1509.01092 Theory +1509.01913 Neurons and Cognition +1509.01999 Optics +1509.03462 Materials Science +1509.04666 Strongly Correlated Electrons +1509.05909 Computer Vision and Pattern Recognition +1509.07284 Disordered Systems and Neural Networks +1509.07478 Number Theory +1509.08026 Representation Theory +1509.08435 +1510.00121 +1510.00124 Superconductivity +1510.00613 Soft Condensed Matter +1510.01523 Instrumentation and Detectors +1510.02064 Optimization and Control +1510.04662 Instrumentation and Methods for Astrophysics +1510.08403 Superconductivity +1510.08422 Analysis of PDEs +1511.00576 Social and Information Networks +1511.02234 Solar and Stellar Astrophysics +1511.03711 +1511.03824 High Energy Astrophysical Phenomena +1511.04233 Solar and Stellar Astrophysics +1511.04364 +1511.04954 Mesoscale and Nanoscale Physics +1511.05078 Digital Libraries +1511.05789 Learning +1511.08380 Experiment +1511.08927 Optimization and Control +1511.09030 Computer Vision and Pattern Recognition +1511.09427 Atomic Physics +1512.00227 Mathematical Finance +1512.00594 Theory +1512.00868 Analysis of PDEs +1512.02379 Computational Complexity +1512.03986 Mesoscale and Nanoscale Physics +1512.04402 Theory +1512.04498 Strongly Correlated Electrons +1512.05693 Discrete Mathematics +1512.06176 Information Theory +1512.06515 Materials Science +1512.06678 Data Structures and Algorithms +1512.06833 Phenomenology +1512.06920 +1512.07926 Instrumentation and Detectors +1512.08467 Phenomenology +1512.08732 Classical Analysis and ODEs +1601.00301 Category Theory +1601.00689 Representation Theory +1601.01102 Learning +1601.01281 Probability +1601.01491 Mesoscale and Nanoscale Physics +1601.01525 Algebraic Geometry +1601.01691 Astrophysics of Galaxies +1601.01814 Materials Science +1601.04428 Logic +1601.04948 Materials Science +1601.05718 Analysis of PDEs +1601.06215 Information Theory +1601.07253 Mesoscale and Nanoscale Physics +1601.08079 Classical Analysis and ODEs +1602.00022 High Energy Astrophysical Phenomena +1602.00106 +1602.00434 Soft Condensed Matter +1602.01887 Computer Vision and Pattern Recognition +1602.02183 Astrophysics of Galaxies +1602.02413 +1602.02636 Theory +1602.03030 Phenomenology +1602.03421 Analysis of PDEs +1602.04108 Mesoscale and Nanoscale Physics +1602.04279 Probability +1602.04343 Classical Analysis and ODEs +1602.04377 Metric Geometry +1602.04453 Phenomenology +1602.04462 Symplectic Geometry +1602.04533 Analysis of PDEs +1602.04571 Analysis of PDEs +1602.04635 Phenomenology +1602.04638 Functional Analysis +1602.04654 Phenomenology +1602.04719 Fluid Dynamics +1602.04770 Probability +1602.04806 Emerging Technologies +1602.04913 Group Theory +1602.05157 Information Retrieval +1602.05560 Probability +1602.05571 Combinatorics +1602.05572 Computer Vision and Pattern Recognition +1602.05573 Instrumentation and Methods for Astrophysics +1602.05574 Metric Geometry +1602.05590 Phenomenology +1602.05591 Rings and Algebras +1602.05596 Physics and Society +1602.05597 Strongly Correlated Electrons +1602.05598 Probability +1602.05602 Quantum Algebra +1602.05605 Classical Analysis and ODEs +1602.05607 Analysis of PDEs +1602.05608 Data Structures and Algorithms +1602.05611 +1602.05616 Physics Education +1602.05617 Probability +1602.05618 Software Engineering +1602.05619 Physics Education +1602.05620 Information Theory +1602.05622 Data Structures and Algorithms +1602.05626 Optimization and Control +1602.05628 Physics Education +1602.05632 Optimization and Control +1602.05635 Logic in Computer Science +1602.05637 Group Theory +1602.05638 Robotics +1602.05641 Probability +1602.05642 Social and Information Networks +1602.05643 Software Engineering +1602.05646 Rings and Algebras +1602.05647 Operator Algebras +1602.05651 +1602.05655 Physics Education +1602.05656 Other Computer Science +1602.05658 Probability +1602.05660 Computer Vision and Pattern Recognition +1602.05661 Optimization and Control +1602.05665 Methodology +1602.05668 Atomic Physics +1602.05669 Commutative Algebra +1602.05675 Theory +1602.05678 Chemical Physics +1602.05683 +1602.05686 Rings and Algebras +1602.05688 Algebraic Geometry +1602.05689 Physics Education +1602.05693 Functional Analysis +1602.05694 Group Theory +1602.05696 Analysis of PDEs +1602.05697 Physics Education +1602.05698 Differential Geometry +1602.05699 Artificial Intelligence +1602.05704 Algebraic Geometry +1602.05705 Artificial Intelligence +1602.05707 +1602.05709 Quantum Gases +1602.05710 Physics Education +1602.05712 Discrete Mathematics +1602.05713 Materials Science +1602.05717 Functional Analysis +1602.05719 Learning +1602.05720 Physics Education +1602.05721 Formal Languages and Automata Theory +1602.05722 Functional Analysis +1602.05727 Physics Education +1602.05728 Logic +1602.05729 Functional Analysis +1602.05731 Applications +1602.05734 Materials Science +1602.05736 Dynamical Systems +1602.05737 Analysis of PDEs +1602.05738 Combinatorics +1602.05739 Plasma Physics +1602.05741 Information Theory +1602.05742 Classical Analysis and ODEs +1602.05744 Social and Information Networks +1602.05746 Numerical Analysis +1602.05747 Mesoscale and Nanoscale Physics +1602.05748 Combinatorics +1602.05749 Risk Management +1602.05753 Computation and Language +1602.05754 Numerical Analysis +1602.05759 Algebraic Topology +1602.05761 Statistics Theory +1602.05765 Artificial Intelligence +1602.05767 +1602.05769 Fluid Dynamics +1602.05772 Computation and Language +1602.05774 +1602.05776 Geometric Topology +1602.05781 Numerical Analysis +1602.05783 Solar and Stellar Astrophysics +1602.05786 Instrumentation and Detectors +1602.05790 Superconductivity +1602.05792 Rings and Algebras +1602.05796 Rings and Algebras +1602.05798 Combinatorics +1602.05799 Rings and Algebras +1602.05801 Statistics Theory +1602.05805 Functional Analysis +1602.05807 Probability +1602.05809 Probability +1602.05813 Soft Condensed Matter +1602.05815 Mesoscale and Nanoscale Physics +1602.05819 Logic in Computer Science +1602.05820 +1602.05821 Dynamical Systems +1602.05822 Machine Learning +1602.05823 Numerical Analysis +1602.05826 Space Physics +1602.05828 Artificial Intelligence +1602.05829 Logic in Computer Science +1602.05830 Adaptation and Self-Organizing Systems +1602.05832 Biomolecules +1602.05835 Information Theory +1602.05838 Discrete Mathematics +1602.05843 Commutative Algebra +1602.05844 General Physics +1602.05846 Classical Analysis and ODEs +1602.05847 Other Quantitative Biology +1602.05848 Probability +1602.05853 Networking and Internet Architecture +1602.05856 Data Structures and Algorithms +1602.05858 Portfolio Management +1602.05860 Materials Science +1602.05862 Number Theory +1602.05866 Data Structures and Algorithms +1602.05871 Theory +1602.05873 Dynamical Systems +1602.05874 Cryptography and Security +1602.05876 Algebraic Geometry +1602.05879 Biomolecules +1602.05884 Geometric Topology +1602.05886 Optics +1602.05887 Populations and Evolution +1602.05888 Information Theory +1602.05889 Data Structures and Algorithms +1602.05890 Commutative Algebra +1602.05891 Software Engineering +1602.05895 Analysis of PDEs +1602.05899 Data Structures and Algorithms +1602.05900 Sound +1602.05906 Methodology +1602.05907 Applications +1602.05908 Learning +1602.05913 Optimization and Control +1602.05914 Computer Science and Game Theory +1602.05918 Astrophysics of Galaxies +1602.05919 Algebraic Geometry +1602.05921 Chemical Physics +1602.05922 Combinatorics +1602.05924 +1602.05925 Neural and Evolutionary Computing +1602.05927 Dynamical Systems +1602.05930 +1602.05935 Chemical Physics +1602.05938 +1602.05941 Computer Vision and Pattern Recognition +1602.05944 Computation and Language +1602.05948 Complex Variables +1602.05950 Numerical Analysis +astro-ph/0008170 +astro-ph/0201547 +physics/0207106 Physics Education +physics/0404094 Atmospheric and Oceanic Physics +physics/9812049 Chemical Physics +0804.2680 +1004.2438 Mesoscale and Nanoscale Physics +1005.4509 Analysis of PDEs +1008.1605 Analysis of PDEs +1009.1900 Algebraic Geometry +1110.0524 Instrumentation and Methods for Astrophysics +1110.6190 Fluid Dynamics +1202.1295 Analysis of PDEs +1203.2226 Discrete Mathematics +1204.1006 Logic +1205.2808 Algebraic Geometry +1206.0453 +1209.3653 Algebraic Geometry +1210.4220 Logic +1210.8161 Algebraic Geometry +1211.6154 +1212.1983 Number Theory +1302.0447 Logic +1303.1260 Analysis of PDEs +1303.4591 Biomolecules +1305.0871 Computer Vision and Pattern Recognition +1305.5953 Logic +1306.1149 Data Structures and Algorithms +1308.1872 Combinatorics +1308.4170 Analysis of PDEs +1310.0493 Group Theory +1310.5076 Logic +1311.0912 Operator Algebras +1312.1989 Analysis of PDEs +1403.4176 Analysis of PDEs +1404.1356 Machine Learning +1404.4832 History and Overview +1405.0586 Learning +1405.3322 Computer Science and Game Theory +1405.4479 Numerical Analysis +1407.2268 High Energy Astrophysical Phenomena +1408.2973 +1408.3624 Logic +1408.4332 Combinatorics +1410.2556 Functional Analysis +1410.3645 Rings and Algebras +1410.5393 Algebraic Geometry +1410.6227 Chaotic Dynamics +1410.7886 +1411.0196 Representation Theory +1411.3532 Geometric Topology +1412.0620 Statistics Theory +1412.1537 Analysis of PDEs +1412.2371 Biological Physics +1501.04845 Algebraic Geometry +1501.05478 Computation +1501.06794 Machine Learning +1502.01291 Soft Condensed Matter +1502.04640 +1503.01464 Phenomenology +1503.01806 Number Theory +1503.04981 Number Theory +1503.08487 Rings and Algebras +1504.00146 Subcellular Processes +1504.02655 Mesoscale and Nanoscale Physics +1504.03191 Algebraic Topology +1504.03712 Methodology +1504.03977 Information Theory +1505.06175 Strongly Correlated Electrons +1505.06683 +1505.07562 Algebraic Topology +1506.04675 Logic +1506.05383 Functional Analysis +1506.05449 +1506.05788 Strongly Correlated Electrons +1506.05880 Representation Theory +1506.07438 Plasma Physics +1506.07561 Numerical Analysis +1506.08295 Complex Variables +1506.08401 Number Theory +1506.08788 Phenomenology +1507.00495 Number Theory +1507.01077 Representation Theory +1507.04045 Mesoscale and Nanoscale Physics +1507.04853 Theory +1507.05788 Operator Algebras +1507.06899 +1508.00755 Analysis of PDEs +1508.02680 Phenomenology +1508.03820 +1508.03918 Quantum Algebra +1508.04817 General Physics +1508.05696 Group Theory +1508.05766 Computational Complexity +1508.06258 +1508.06772 Operator Algebras +1508.06858 Classical Analysis and ODEs +1508.07496 Rings and Algebras +1509.01727 Computer Science and Game Theory +1509.05214 Functional Analysis +1509.05525 Optics +1509.08724 Theory +1509.09079 Algebraic Geometry +1509.09215 Functional Analysis +1510.00784 Fluid Dynamics +1510.01632 Statistical Mechanics +1510.01666 +1510.01988 Differential Geometry +1510.03229 +1510.03919 Computational Geometry +1510.04124 Algebraic Geometry +1510.04291 Phenomenology +1510.04698 High Energy Astrophysical Phenomena +1510.05249 +1510.05703 +1510.08564 Logic in Computer Science +1511.00881 Strongly Correlated Electrons +1511.01752 Statistics Theory +1511.02942 Optimization and Control +1511.03397 Operator Algebras +1511.03478 Dynamical Systems +1511.04615 Atomic and Molecular Clusters +1511.07928 Differential Geometry +1511.08403 Discrete Mathematics +1511.08790 High Energy Astrophysical Phenomena +1511.09042 Optics +1511.09089 Lattice +1511.09274 Probability +1511.09316 Lattice +1511.09336 Phenomenology +1512.02300 Computer Science and Game Theory +1512.02850 Operator Algebras +1512.03352 Optics +1512.04103 Computer Vision and Pattern Recognition +1512.05324 +1512.05803 Mesoscale and Nanoscale Physics +1512.06164 +1512.06322 Superconductivity +1512.06766 Quantum Gases +1512.08176 Phenomenology +1601.00411 Phenomenology +1601.00559 Geometric Topology +1601.01190 Machine Learning +1601.01755 Representation Theory +1601.03536 Solar and Stellar Astrophysics +1601.04449 +1601.05376 Differential Geometry +1601.05633 Methodology +1601.06599 Combinatorics +1601.07821 Functional Analysis +1601.07859 Statistical Mechanics +1601.07989 +1602.00185 Strongly Correlated Electrons +1602.00828 Computer Vision and Pattern Recognition +1602.01334 Theory +1602.01381 Atomic Physics +1602.01459 Statistical Mechanics +1602.01504 High Energy Astrophysical Phenomena +1602.02099 +1602.02111 Differential Geometry +1602.02116 Commutative Algebra +1602.02934 Machine Learning +1602.03880 +1602.04197 Soft Condensed Matter +1602.04319 Data Analysis, Statistics and Probability +1602.04456 Operator Algebras +1602.05104 Strongly Correlated Electrons +1602.05381 Fluid Dynamics +1602.06513 Quantum Gases +1602.06716 Analysis of PDEs +1602.06894 Combinatorics +1602.06957 Phenomenology +1602.06966 +1602.07192 +1602.07220 Metric Geometry +1602.07518 +1602.08411 Quantum Gases +1602.08597 Strongly Correlated Electrons +1602.08882 Theory +1602.09059 Cosmology and Nongalactic Astrophysics +1602.09087 Astrophysics of Galaxies +1603.00281 Accelerator Physics +1603.01219 Optics +1603.01421 Dynamical Systems +1603.02013 Phenomenology +1603.02746 +1603.02909 Mesoscale and Nanoscale Physics +1603.02990 Atomic Physics +1603.03483 +1603.03560 Probability +1603.03612 +1603.03742 +1603.03793 Computation and Language +1603.04092 Mesoscale and Nanoscale Physics +1603.04271 +1603.04388 Optics +1603.04575 Phenomenology +1603.05247 +1603.05802 +1603.06206 +1603.06584 High Energy Astrophysical Phenomena +1603.06606 Optics +1603.06611 High Energy Astrophysical Phenomena +1603.07231 Soft Condensed Matter +1603.08919 Astrophysics of Galaxies +1603.09527 Phenomenology +1604.01191 Methodology +1604.01728 Experiment +1604.01751 Optics +1604.01906 Analysis of PDEs +1604.02145 Strongly Correlated Electrons +1604.02401 Cosmology and Nongalactic Astrophysics +1604.02457 Cosmology and Nongalactic Astrophysics +1604.02571 Phenomenology +1604.02970 +1604.03333 Strongly Correlated Electrons +1604.03750 Cellular Automata and Lattice Gases +1604.04259 Optics +1604.04351 Information Theory +1604.04462 Materials Science +1604.04530 Statistical Mechanics +1604.05486 Quantum Gases +1604.05705 Theory +1604.06237 +1604.06469 Quantum Gases +1604.06733 Adaptation and Self-Organizing Systems +1604.06760 Cosmology and Nongalactic Astrophysics +1604.07137 Materials Science +1604.07400 Phenomenology +1604.08702 Lattice +1604.08714 Numerical Analysis +1604.08730 Quantum Gases +1605.00063 Phenomenology +1605.00269 Statistical Mechanics +1605.00696 Superconductivity +1605.00915 Populations and Evolution +1605.01341 +1605.01582 Theory +1605.01721 Rings and Algebras +1605.02106 Cosmology and Nongalactic Astrophysics +1605.02335 Optics +1605.02750 Mesoscale and Nanoscale Physics +1605.02893 Materials Science +1605.03827 Superconductivity +1605.03960 Astrophysics of Galaxies +1605.04522 +1605.04958 Optics +1605.05171 Phenomenology +1605.05327 Phenomenology +1605.05606 Networking and Internet Architecture +1605.05696 Mesoscale and Nanoscale Physics +1605.05848 Strongly Correlated Electrons +1605.06031 Astrophysics of Galaxies +1605.06103 Experiment +1605.06125 Strongly Correlated Electrons +1605.06765 Phenomenology +1605.06817 Superconductivity +1605.07038 +1605.07100 Astrophysics of Galaxies +1605.07415 Statistical Mechanics +1605.07551 +1605.07898 Mesoscale and Nanoscale Physics +1605.08043 Phenomenology +1605.08287 +1605.08334 Phenomenology +1605.08433 Theory +1605.08526 Mesoscale and Nanoscale Physics +1605.08532 Materials Science +1605.08663 Phenomenology +1605.09291 Fluid Dynamics +1605.09472 +1605.09618 Theory +1605.09755 +1606.00094 Distributed, Parallel, and Cluster Computing +1606.00454 High Energy Astrophysical Phenomena +1606.00902 Theory +1606.00904 Strongly Correlated Electrons +1606.00912 Quantum Gases +1606.00949 Astrophysics of Galaxies +1606.01215 +1606.01377 Computer Vision and Pattern Recognition +1606.01480 High Energy Astrophysical Phenomena +1606.01656 Mesoscale and Nanoscale Physics +1606.01659 Statistical Mechanics +1606.02199 Atomic Physics +1606.02297 Theory +1606.02695 Lattice +1606.03485 Strongly Correlated Electrons +1606.03792 Metric Geometry +1606.03859 Materials Science +1606.04111 Phenomenology +1606.04508 Quantum Gases +1606.04683 Instrumentation and Methods for Astrophysics +1606.05116 +1606.05724 Data Structures and Algorithms +1606.05960 Phenomenology +1606.06269 Logic in Computer Science +1606.06280 Astrophysics of Galaxies +1606.06497 Solar and Stellar Astrophysics +1606.06601 Theory +1606.06756 Mesoscale and Nanoscale Physics +1606.07127 Experiment +1606.07264 Geometric Topology +1606.07339 Probability +1606.07371 Mesoscale and Nanoscale Physics +1606.07674 Information Retrieval +1606.08316 Strongly Correlated Electrons +1606.08346 Statistical Mechanics +1606.08387 Fluid Dynamics +1606.08430 +1606.08634 Mesoscale and Nanoscale Physics +1606.08725 Mesoscale and Nanoscale Physics +1606.08811 Phenomenology +1606.08891 Cosmology and Nongalactic Astrophysics +1606.09417 Instrumentation and Methods for Astrophysics +1606.09428 Astrophysics of Galaxies +1607.00026 Theory +1607.00214 Theory +1607.00500 Information Theory +1607.00910 +1607.00928 High Energy Astrophysical Phenomena +1607.01534 Theory +1607.01616 Statistical Mechanics +1607.01732 +1607.02186 High Energy Astrophysical Phenomena +1607.02715 Computer Vision and Pattern Recognition +1607.03138 Logic +1607.03593 +1607.03880 Atomic Physics +1607.04485 Mesoscale and Nanoscale Physics +1607.04701 +1607.04733 Soft Condensed Matter +1607.04753 Information Theory +1607.05420 Computational Complexity +1607.05537 Computational Physics +1607.05684 Strongly Correlated Electrons +1607.05813 Experiment +1607.05852 High Energy Astrophysical Phenomena +1607.06171 Mesoscale and Nanoscale Physics +1607.06223 Quantum Gases +1607.06241 Representation Theory +1607.06698 Strongly Correlated Electrons +1607.06868 Astrophysics of Galaxies +1607.06974 Theory +1607.07249 Artificial Intelligence +1607.07665 Mesoscale and Nanoscale Physics +1607.08206 Learning +1607.08474 Mesoscale and Nanoscale Physics +1607.08894 Statistical Mechanics +1608.00248 Theory +1608.00631 +1608.01048 High Energy Astrophysical Phenomena +1608.01104 Cosmology and Nongalactic Astrophysics +1608.01527 Mesoscale and Nanoscale Physics +1608.01949 Strongly Correlated Electrons +1608.01984 Statistical Mechanics +1608.02239 Robotics +1608.02555 Phenomenology +1608.02725 Operator Algebras +1608.03203 Combinatorics +1608.03229 Operator Algebras +1608.03565 Strongly Correlated Electrons +1608.03812 +1608.04140 +1608.04448 Computational Physics +1608.05121 Information Theory +1608.05861 Rings and Algebras +1608.06355 +1608.06376 Mathematical Finance +1608.06580 Computer Science and Game Theory +1608.08458 Phenomenology +1608.08616 Instrumentation and Detectors +1608.08627 High Energy Astrophysical Phenomena +1608.08972 Theory +1609.00083 +1609.00654 Quantum Gases +1609.00663 Mesoscale and Nanoscale Physics +1609.01425 Combinatorics +1609.02451 Information Retrieval +1609.02453 Information Retrieval +1609.02587 +1609.02594 Quantum Gases +1609.02608 +1609.02688 Statistics Theory +1609.02796 Solar and Stellar Astrophysics +1609.02878 +1609.02919 Solar and Stellar Astrophysics +1609.02992 Statistics Theory +1609.03046 Geometric Topology +1609.03095 Databases +1609.03127 Numerical Analysis +1609.03193 Learning +1609.03221 Representation Theory +1609.03322 Cryptography and Security +1609.03330 Medical Physics +1609.03344 Machine Learning +1609.03409 Sound +1609.03459 Statistical Mechanics +1609.03523 Theory +1609.03524 Theory +1609.03540 Databases +1609.03553 Quantum Gases +1609.03555 Numerical Analysis +1609.03565 High Energy Astrophysical Phenomena +1609.03575 Instrumentation and Methods for Astrophysics +1609.03576 Cosmology and Nongalactic Astrophysics +1609.03578 +1609.03579 Quantum Gases +1609.03583 Astrophysics of Galaxies +1609.03586 Solar and Stellar Astrophysics +1609.03587 Solar and Stellar Astrophysics +1609.03588 Number Theory +1609.03590 Software Engineering +1609.03593 Mesoscale and Nanoscale Physics +1609.03596 Representation Theory +1609.03604 Mesoscale and Nanoscale Physics +1609.03608 Analysis of PDEs +1609.03609 Mesoscale and Nanoscale Physics +1609.03610 Dynamical Systems +1609.03612 Strongly Correlated Electrons +1609.03615 Computers and Society +1609.03617 Physics and Society +1609.03618 Commutative Algebra +1609.03620 Combinatorics +1609.03621 Classical Analysis and ODEs +1609.03622 Neurons and Cognition +1609.03623 Geometric Topology +1609.03624 Group Theory +1609.03625 Classical Analysis and ODEs +1609.03626 Optimization and Control +1609.03627 +1609.03628 Robotics +1609.03629 Information Theory +1609.03630 Earth and Planetary Astrophysics +1609.03632 Computation and Language +1609.03634 Group Theory +1609.03635 Algebraic Topology +1609.03636 Algebraic Geometry +1609.03638 Algebraic Geometry +1609.03639 Solar and Stellar Astrophysics +1609.03640 Programming Languages +1609.03641 Programming Languages +1609.03642 Logic in Computer Science +1609.03643 Programming Languages +1609.03644 Logic in Computer Science +1609.03645 Data Structures and Algorithms +1609.03647 Distributed, Parallel, and Cluster Computing +1609.03648 Logic in Computer Science +1609.03653 Representation Theory +1609.03655 Algebraic Geometry +1609.03657 Systems and Control +1609.03658 Complex Variables +1609.03660 Number Theory +1609.03661 Geometric Topology +1609.03662 Combinatorics +1609.03663 Computation and Language +1609.03664 Combinatorics +1609.03666 Learning +1609.03667 Atomic Physics +1609.03671 Mesoscale and Nanoscale Physics +1609.03680 Statistics Theory +1609.03686 Methodology +1609.03687 +1609.03688 Differential Geometry +1609.03689 Phenomenology +1609.03690 Information Theory +1609.03691 Accelerator Physics +1609.03692 Methodology +1609.03693 Analysis of PDEs +1609.03700 +1609.03701 Numerical Analysis +1609.03704 Optimization and Control +1609.03706 Algebraic Geometry +1609.03707 Mesoscale and Nanoscale Physics +1609.03708 +1609.03714 Analysis of PDEs +1609.03717 Networking and Internet Architecture +1609.03721 +1609.03722 Logic +1609.03724 +1609.03726 Operator Algebras +1609.03727 Geometric Topology +1609.03728 Functional Analysis +1609.03729 Optics +1609.03730 Neurons and Cognition +1609.03731 Physics and Society +1609.03732 Computational Engineering, Finance, and Science +1609.03733 Algebraic Geometry +1609.03734 Cryptography and Security +1609.03735 Fluid Dynamics +1609.03738 Number Theory +1609.03739 Analysis of PDEs +1609.03740 Instrumentation and Detectors +1609.03743 Fluid Dynamics +1609.03744 +1609.03745 Numerical Analysis +1609.03747 Quantum Gases +1609.03749 Mesoscale and Nanoscale Physics +1609.03750 Distributed, Parallel, and Cluster Computing +1609.03751 +1609.03752 Instrumentation and Detectors +1609.03754 Quantitative Methods +1609.03755 Combinatorics +1609.03756 Social and Information Networks +1609.03757 Dynamical Systems +1609.03758 +1609.03760 Quantum Gases +1609.03762 Information Theory +1609.03763 Analysis of PDEs +1609.03764 Probability +1609.03765 Artificial Intelligence +1609.03766 Dynamical Systems +1609.03768 Symbolic Computation +1609.03769 Machine Learning +1609.03772 Machine Learning +1609.03773 Computer Vision and Pattern Recognition +1609.03774 Combinatorics +1609.03776 Instrumentation and Methods for Astrophysics +1609.03778 Analysis of PDEs +1609.03779 Statistics Theory +1609.03780 +1609.03781 Number Theory +1609.03782 Instrumentation and Methods for Astrophysics +1609.03783 Instrumentation and Detectors +1609.03786 Soft Condensed Matter +1609.03789 Rings and Algebras +1609.03792 High Energy Astrophysical Phenomena +1609.03794 +1609.03795 Computer Vision and Pattern Recognition +1609.03796 Quantum Gases +1609.03797 Numerical Analysis +1609.03805 Algebraic Topology +1609.03806 Digital Libraries +1609.03808 Combinatorics +1609.03811 Soft Condensed Matter +1609.03815 Computer Vision and Pattern Recognition +1609.03817 Solar and Stellar Astrophysics +1609.03819 Analysis of PDEs +1609.03821 Analysis of PDEs +1609.03823 Optics +1609.03825 Experiment +1609.03829 Subcellular Processes +1609.03831 Representation Theory +1609.03832 Soft Condensed Matter +1609.03834 Probability +1609.03838 Algebraic Geometry +1609.03839 Experiment +1609.03841 Classical Physics +1609.03844 Algebraic Geometry +1609.03845 Subcellular Processes +1609.03847 Artificial Intelligence +1609.03848 Analysis of PDEs +1609.03850 Classical Analysis and ODEs +1609.03853 Fluid Dynamics +1609.03855 Materials Science +1609.03856 Combinatorics +1609.03857 Analysis of PDEs +1609.03858 Solar and Stellar Astrophysics +1609.03862 General Physics +1609.03863 Differential Geometry +1609.03871 Fluid Dynamics +1609.03872 Number Theory +1609.03874 Computer Vision and Pattern Recognition +1609.03875 High Energy Astrophysical Phenomena +1609.03878 +1609.03881 +1609.03882 High Energy Astrophysical Phenomena +1609.03883 High Energy Astrophysical Phenomena +1609.03884 +1609.03890 Analysis of PDEs +1609.03892 Computer Vision and Pattern Recognition +1609.03893 Computational Engineering, Finance, and Science +1609.03894 Computer Vision and Pattern Recognition +1609.03895 Phenomenology +1609.03896 Astrophysics of Galaxies +1609.03898 +1609.03900 Astrophysics of Galaxies +1609.03901 +1609.03904 Algebraic Geometry +1609.03907 Accelerator Physics +1609.03911 +1609.03912 Information Theory +1609.03913 Fluid Dynamics +1609.03915 Dynamical Systems +1609.03916 Mesoscale and Nanoscale Physics +1609.03918 Mesoscale and Nanoscale Physics +1609.03919 Number Theory +1609.03920 Experiment +1609.03921 Other Condensed Matter +1609.03924 Rings and Algebras +1609.03925 Populations and Evolution +1609.03926 Populations and Evolution +1609.03927 Phenomenology +1609.03928 Plasma Physics +1609.03929 Differential Geometry +1609.03931 Classical Analysis and ODEs +1609.03933 Physics and Society +1609.03934 Combinatorics +1609.03935 Analysis of PDEs +1609.03938 Computer Science and Game Theory +1609.03939 Phenomenology +1609.03940 +1609.03942 +1609.03943 Logic +1609.03944 Differential Geometry +1609.03946 Social and Information Networks +1609.03948 Quantitative Methods +1609.03949 Dynamical Systems +1609.03950 Group Theory +1609.03951 Biological Physics +1609.03952 Rings and Algebras +1609.03953 Algebraic Geometry +1609.03958 Machine Learning +1609.03959 Classical Analysis and ODEs +1609.03960 Optimization and Control +1609.03962 Neurons and Cognition +1609.03963 Astrophysics of Galaxies +1609.03964 Combinatorics +1609.03968 Earth and Planetary Astrophysics +1609.03970 Statistics Theory +1609.03971 Neural and Evolutionary Computing +1609.03974 Combinatorics +1609.03976 Computation and Language +1609.03981 Algebraic Geometry +1609.03984 Optimization and Control +1609.03985 Lattice +1609.03987 Classical Analysis and ODEs +1609.03988 Superconductivity +1609.03990 Optimization and Control +1609.03992 Algebraic Geometry +1609.03993 Artificial Intelligence +1609.03995 Phenomenology +1609.03996 Multiagent Systems +1609.04003 Mesoscale and Nanoscale Physics +cs/0309044 Operating Systems +0705.3928 Theory +0808.0275 Commutative Algebra +0810.0359 Commutative Algebra +0811.4691 Commutative Algebra +0811.4693 Commutative Algebra +0901.1586 Optics +0903.0052 Commutative Algebra +0906.3757 Operator Algebras +1010.3404 Algebraic Geometry +1101.3854 Algebraic Geometry +1104.4644 +1202.5615 Commutative Algebra +1203.6384 Strongly Correlated Electrons +1205.3165 Cosmology and Nongalactic Astrophysics +1206.4985 Algebraic Geometry +1207.7284 Atomic Physics +1207.7294 Atomic Physics +1208.5883 Probability +1209.4790 Strongly Correlated Electrons +1209.5598 Databases +1211.6037 Functional Analysis +1301.0442 Probability +1301.2444 Computation and Language +1302.2257 Materials Science +1304.5390 Combinatorics +1306.3045 Algebraic Geometry +1308.3466 Data Structures and Algorithms +1308.5628 Algebraic Geometry +1309.0105 Number Theory +1310.6935 Phenomenology +1311.7476 Algebraic Geometry +1312.3401 Combinatorics +1312.7219 Algebraic Topology +1402.3145 Mesoscale and Nanoscale Physics +1403.1158 Methodology +1403.5397 +1403.5906 Optimization and Control +1404.6463 Analysis of PDEs +1405.3202 Physics and Society +1405.4910 Spectral Theory +1405.6616 Representation Theory +1406.4767 Strongly Correlated Electrons +1407.0508 Statistical Mechanics +1407.1958 +1407.2017 Theory +1407.5128 Computational Complexity +1408.5330 Phenomenology +1408.6071 Phenomenology +1409.1663 Theory +1409.7626 Networking and Internet Architecture +1410.1173 Methodology +1410.2695 Complex Variables +1410.6064 Optimization and Control +1411.7319 Phenomenology +1411.7904 Materials Science +1412.0041 Networking and Internet Architecture +1412.0547 Statistical Mechanics +1412.2566 Networking and Internet Architecture +1412.3341 Combinatorics +1412.4637 Lattice +1412.8319 Computation and Language +1501.02933 Algebraic Geometry +1501.06968 Fluid Dynamics +1502.02228 Strongly Correlated Electrons +1502.02800 Symbolic Computation +1502.05214 Functional Analysis +1502.06457 Popular Physics +1502.07356 Astrophysics of Galaxies +1502.07589 Theory +1503.02273 Dynamical Systems +1503.04533 Networking and Internet Architecture +1503.06525 Probability +1503.08687 Networking and Internet Architecture +1504.00374 Populations and Evolution +1504.01285 Atomic Physics +1504.03078 Differential Geometry +1504.03428 Cosmology and Nongalactic Astrophysics +1504.07250 Astrophysics of Galaxies +1505.00919 Information Theory +1505.04864 Strongly Correlated Electrons +1505.06763 Mesoscale and Nanoscale Physics +1505.07368 Programming Languages +1506.00857 Statistical Mechanics +1506.01280 Physics and Society +1506.04544 Physics and Society +1506.05700 Mesoscale and Nanoscale Physics +1506.09018 Phenomenology +1506.09119 Theory +1507.00241 Mesoscale and Nanoscale Physics +1507.00332 Phenomenology +1507.00593 Combinatorics +1507.02976 Physics Education +1507.03025 Theory +1507.03094 Lattice +1507.03281 +1507.06824 Experiment +1507.07010 Dynamical Systems +1507.07384 +1507.08063 Theory +1507.08336 Astrophysics of Galaxies +1507.08481 Cosmology and Nongalactic Astrophysics +1508.00929 Analysis of PDEs +1508.01073 Materials Science +1508.01250 Phenomenology +1508.02713 Cosmology and Nongalactic Astrophysics +1508.03605 Networking and Internet Architecture +1508.04471 Mesoscale and Nanoscale Physics +1508.04689 Superconductivity +1508.05421 Theory +1508.06318 Optics +1508.07316 +1509.00900 Number Theory +1509.02432 Strongly Correlated Electrons +1509.02467 Astrophysics of Galaxies +1509.02616 +1509.02842 Astrophysics of Galaxies +1509.02893 Strongly Correlated Electrons +1509.02900 Machine Learning +1509.02934 Phenomenology +1509.02943 Analysis of PDEs +1509.03628 Phenomenology +1509.03964 Statistical Mechanics +1509.04719 +1509.05029 High Energy Astrophysical Phenomena +1509.05931 +1509.07009 Computer Vision and Pattern Recognition +1509.07581 Operator Algebras +1509.07729 Plasma Physics +1509.07743 Plasma Physics +1509.07790 Theory +1509.08014 +1509.08548 High Energy Astrophysical Phenomena +1509.08887 Lattice +1509.08971 Computer Vision and Pattern Recognition +1509.09003 Mesoscale and Nanoscale Physics +1510.00689 Strongly Correlated Electrons +1510.01305 Instrumentation and Methods for Astrophysics +1510.01776 Information Theory +1510.02015 Quantum Gases +1510.04061 Mathematical Finance +1510.04362 +1510.05148 Phenomenology +1510.05927 Theory +1510.06169 +1510.06256 Materials Science +1510.07360 Statistical Mechanics +1510.07455 Theory +1510.08316 Plasma Physics +1511.00720 +1511.00782 Functional Analysis +1511.02587 Statistical Mechanics +1511.04289 Number Theory +1511.06940 Information Theory +1511.08226 Earth and Planetary Astrophysics +1511.08533 Soft Condensed Matter +1511.08925 High Energy Astrophysical Phenomena +1512.01104 Combinatorics +1512.01199 +1512.03883 Computation +1512.04507 Symplectic Geometry +1512.05280 Statistical Mechanics +1512.06890 Numerical Analysis +1512.07559 Analysis of PDEs +1512.08841 +1512.09010 Cosmology and Nongalactic Astrophysics +1601.00939 Phenomenology +1601.01136 +1601.01702 Solar and Stellar Astrophysics +1601.02752 Distributed, Parallel, and Cluster Computing +1601.03120 Rings and Algebras +1601.03492 Earth and Planetary Astrophysics +1601.04827 +1601.04988 Number Theory +1601.05183 Number Theory +1601.05485 Earth and Planetary Astrophysics +1601.06001 +1601.06304 Theory +1601.06509 Number Theory +1601.06580 Neural and Evolutionary Computing +1601.06681 Numerical Analysis +1601.06722 Methodology +1601.06773 +1601.06847 Information Theory +1601.06982 Group Theory +1601.07157 Software Engineering +1601.07362 Cosmology and Nongalactic Astrophysics +1601.07387 Representation Theory +1601.07444 Networking and Internet Architecture +1601.07482 Emerging Technologies +1601.07519 Algebraic Geometry +1601.07546 Statistical Mechanics +1601.07565 Pattern Formation and Solitons +1601.07569 Numerical Analysis +1601.07570 Rings and Algebras +1601.07572 Networking and Internet Architecture +1601.07580 Analysis of PDEs +1601.07581 Differential Geometry +1601.07587 Group Theory +1601.07588 Differential Geometry +1601.07590 Classical Analysis and ODEs +1601.07593 Information Theory +1601.07596 Artificial Intelligence +1601.07597 Networking and Internet Architecture +1601.07599 Representation Theory +1601.07602 Representation Theory +1601.07603 Numerical Analysis +1601.07605 Fluid Dynamics +1601.07606 Applications +1601.07607 +1601.07612 +1601.07613 Distributed, Parallel, and Cluster Computing +1601.07614 Fluid Dynamics +1601.07615 Classical Analysis and ODEs +1601.07617 Applications +1601.07620 Neurons and Cognition +1601.07622 Optimization and Control +1601.07624 Applications +1601.07625 Other Computer Science +1601.07626 Portfolio Management +1601.07628 Portfolio Management +1601.07631 Soft Condensed Matter +1601.07633 Information Theory +1601.07637 Molecular Networks +1601.07640 Materials Science +1601.07644 Materials Science +1601.07646 Representation Theory +1601.07649 Computer Vision and Pattern Recognition +1601.07650 Optics +1601.07651 +1601.07653 Commutative Algebra +1601.07654 Commutative Algebra +1601.07655 Populations and Evolution +1601.07656 Commutative Algebra +1601.07657 Commutative Algebra +1601.07658 Lattice +1601.07659 Differential Geometry +1601.07660 Commutative Algebra +1601.07663 Combinatorics +1601.07665 Machine Learning +1601.07667 Group Theory +1601.07668 +1601.07672 Representation Theory +1601.07673 Fluid Dynamics +1601.07674 Analysis of PDEs +1601.07678 Information Theory +1601.07683 +1601.07684 Phenomenology +1601.07685 Rings and Algebras +1601.07686 Information Theory +1601.07688 Analysis of PDEs +1601.07696 Differential Geometry +1601.07698 Number Theory +1601.07700 Physics and Society +1601.07709 Sound +1601.07712 Analysis of PDEs +1601.07713 Physics and Society +1601.07714 Social and Information Networks +1601.07716 Physics and Society +1601.07717 Numerical Analysis +1601.07721 Numerical Analysis +1601.07722 Analysis of PDEs +1601.07723 Discrete Mathematics +1601.07728 Computational Physics +1601.07734 Category Theory +1601.07738 Accelerator Physics +1601.07739 Methodology +1601.07740 Neurons and Cognition +1601.07742 Software Engineering +1601.07744 Analysis of PDEs +1601.07747 Commutative Algebra +1601.07751 Classical Analysis and ODEs +1601.07754 Information Retrieval +1601.07763 Algebraic Topology +1601.07765 Graphics +1601.07766 Neurons and Cognition +1601.07767 Dynamical Systems +1601.07769 Functional Analysis +1601.07770 Optimization and Control +1601.07771 +1601.07775 Combinatorics +1601.07776 Social and Information Networks +1601.07779 Optimization and Control +1601.07793 Computers and Society +1601.07797 Computational Geometry +1601.07798 Computational Geometry +1601.07800 Optimization and Control +1601.07802 +1601.07804 Learning +1601.07806 Analysis of PDEs +1601.07809 Combinatorics +1601.07811 Other Computer Science +1601.07812 Group Theory +1601.07813 Combinatorics +1601.07815 Distributed, Parallel, and Cluster Computing +1601.07816 Differential Geometry +1601.07818 Instrumentation and Detectors +1601.07825 Theory +1601.07826 Operator Algebras +1601.07827 Rings and Algebras +1601.07830 Populations and Evolution +1601.07832 Phenomenology +1601.07833 +1601.07836 Geometric Topology +1601.07843 Computer Vision and Pattern Recognition +1601.07846 High Energy Astrophysical Phenomena +1601.07848 Disordered Systems and Neural Networks +1601.07850 Functional Analysis +1601.07858 Instrumentation and Methods for Astrophysics +1601.07860 +1601.07867 Neurons and Cognition +1601.07870 Analysis of PDEs +1601.07872 Statistics Theory +1601.07873 Spectral Theory +1601.07879 Analysis of PDEs +1601.07881 Neurons and Cognition +1601.07883 Computer Vision and Pattern Recognition +1601.07884 Multimedia +1601.07885 Information Theory +1601.07891 Classical Physics +1601.07894 Dynamical Systems +1601.07895 Metric Geometry +1601.07898 Probability +math/0612431 Quantum Algebra +quant-ph/0406061 +1401.3119 General Topology +1401.6394 Optimization and Control +1401.8071 Optimization and Control +1401.8161 Optimization and Control +1402.1600 High Energy Astrophysical Phenomena +1402.2539 Experiment +1402.2554 Experiment +1402.5250 Experiment +1402.6242 Experiment +1402.6248 Experiment +1402.6543 Mesoscale and Nanoscale Physics +1512.05881 Formal Languages and Automata Theory +0904.3449 Category Theory +1003.5208 General Physics +1202.1171 Phenomenology +1204.1208 Probability +1205.5467 Methodology +1208.2121 Information Theory +1211.5865 Representation Theory +1302.5907 Theory +1306.1066 Machine Learning +1311.2717 +1311.6193 Probability +1404.0703 Databases +1410.0503 Statistics Theory +1410.5154 Analysis of PDEs +1412.4176 +1412.7231 Symplectic Geometry +1501.04445 Analysis of PDEs +1501.04898 Materials Science +1501.07740 Information Theory +1502.04083 Applications +1502.06506 Cosmology and Nongalactic Astrophysics +1502.07181 Statistics Theory +1503.06904 Differential Geometry +1504.05055 Algebraic Geometry +1504.05849 +1505.06860 Number Theory +1506.02991 Algebraic Geometry +1506.03881 Combinatorics +1507.03734 Optimization and Control +1507.07502 Probability +1507.07944 Probability +1508.00891 Phenomenology +1508.02872 Combinatorics +1508.05232 Systems and Control +1508.05918 Computation +1508.07041 Statistical Mechanics +1509.04807 Complex Variables +1509.07445 Databases +1510.03878 Optimization and Control +1510.08417 Computational Complexity +1511.00414 Statistical Mechanics +1511.01958 Populations and Evolution +1511.06750 Methodology +1511.08836 Populations and Evolution +1512.02297 Analysis of PDEs +1512.04047 Discrete Mathematics +1512.06650 Phenomenology +1512.06713 Symplectic Geometry +1512.07400 Probability +1512.09048 Phenomenology +1601.02805 +1601.04467 Information Theory +1601.05780 Strongly Correlated Electrons +1602.00602 Programming Languages +1602.01056 +1602.01760 Probability +1602.08310 Phenomenology +1603.01236 Combinatorics +1603.04229 Computation +1603.05458 Populations and Evolution +1603.06367 Phenomenology +1603.08508 Mesoscale and Nanoscale Physics +1604.02024 Methodology +1604.03053 Machine Learning +1604.05402 Numerical Analysis +1604.06945 Materials Science +1604.07005 Rings and Algebras +1604.07281 Information Theory +1604.08031 +1604.08049 Algebraic Geometry +1604.08193 Phenomenology +1604.08281 Strongly Correlated Electrons +1604.08475 Optimization and Control +1605.00554 Phenomenology +1605.00599 Soft Condensed Matter +1605.01651 Group Theory +1605.04255 Mesoscale and Nanoscale Physics +1605.04440 Quantum Gases +1605.05649 Functional Analysis +1606.00687 Soft Condensed Matter +1606.01856 Emerging Technologies +1606.07300 Computation +1606.08474 Cosmology and Nongalactic Astrophysics +1606.08889 Neurons and Cognition +1606.09293 High Energy Astrophysical Phenomena +1606.09595 Strongly Correlated Electrons +1607.01955 Analysis of PDEs +1607.02244 Classical Analysis and ODEs +1607.04251 Phenomenology +1607.04626 Complex Variables +1607.07039 Operator Algebras +1607.07808 Mesoscale and Nanoscale Physics +1607.07927 +1607.08329 Databases +1607.08542 Algebraic Geometry +1608.01362 Distributed, Parallel, and Cluster Computing +1608.01566 Methodology +1608.02185 Geometric Topology +1608.02786 +1608.03869 Soft Condensed Matter +1608.03967 Dynamical Systems +1608.05719 Cosmology and Nongalactic Astrophysics +1608.06255 Representation Theory +1608.06744 Differential Geometry +1608.06872 Quantum Algebra +1608.08958 Phenomenology +1609.00422 Strongly Correlated Electrons +1609.05573 Statistics Theory +1609.07524 Dynamical Systems +1609.08088 +1610.00119 +1610.02142 Mesoscale and Nanoscale Physics +1610.03519 Theory +1610.03578 Materials Science +1610.03896 Dynamical Systems +1610.04181 Machine Learning +1610.05587 Information Theory +1610.06614 Optimization and Control +1610.08334 General Physics +1610.08585 +1610.08621 Methodology +1610.08780 +1611.00053 Mesoscale and Nanoscale Physics +1611.00083 Applications +1611.00168 Phenomenology +1611.00789 Algebraic Geometry +1611.01045 Atmospheric and Oceanic Physics +1611.03271 Fluid Dynamics +1611.05259 Solar and Stellar Astrophysics +1611.06172 Distributed, Parallel, and Cluster Computing +1611.08572 Artificial Intelligence +1611.10128 Instrumentation and Detectors +1612.00372 Algebraic Geometry +1612.00442 +1612.00564 Optimization and Control +1612.00820 Optics +1612.00952 Superconductivity +1612.01031 Combinatorics +1612.01251 Machine Learning +1612.01801 Computation +1612.01803 Probability +1612.01836 +1612.02101 Computer Vision and Pattern Recognition +1612.02107 Group Theory +1612.02226 Geometric Topology +1612.02270 +1612.02271 +1612.02520 Superconductivity +1612.02624 Materials Science +1612.02723 Commutative Algebra +1612.04158 Computer Vision and Pattern Recognition +1612.04169 Probability +1612.04257 Plasma Physics +1612.04395 Solar and Stellar Astrophysics +1612.04916 Mesoscale and Nanoscale Physics +1612.05340 Computation and Language +1612.05480 +1612.05587 Strongly Correlated Electrons +1612.05927 +1612.05977 Phenomenology +1612.06004 +1612.06118 Methodology +1612.06505 Learning +1612.06862 Materials Science +1612.06895 Mesoscale and Nanoscale Physics +1612.07044 Pattern Formation and Solitons +1612.07373 Numerical Analysis +1612.07490 Statistics Theory +1612.07594 Optics +1612.07620 Algebraic Geometry +1612.07763 Optimization and Control +1612.07772 Quantitative Methods +1612.07801 Applications +1612.07802 Statistical Finance +1612.07803 Representation Theory +1612.07805 Quantum Gases +1612.07810 Algebraic Geometry +1612.07811 Methodology +1612.07812 Experiment +1612.07815 +1612.07816 Networking and Internet Architecture +1612.07817 Strongly Correlated Electrons +1612.07819 Number Theory +1612.07821 Instrumentation and Detectors +1612.07824 Optimization and Control +1612.07827 Computational Physics +1612.07830 Logic +1612.07831 High Energy Astrophysical Phenomena +1612.07832 Theory +1612.07833 Computation and Language +1612.07834 Astrophysics of Galaxies +1612.07835 Materials Science +1612.07836 Populations and Evolution +1612.07838 Numerical Analysis +1612.07839 Functional Analysis +1612.07840 Medical Physics +1612.07841 Cryptography and Security +1612.07842 Probability +1612.07843 Computation and Language +1612.07844 Logic in Computer Science +1612.07846 Neurons and Cognition +1612.07848 Mathematical Software +1612.07849 Atomic Physics +1612.07851 Numerical Analysis +1612.07852 Materials Science +1612.07853 Fluid Dynamics +1612.07854 Information Theory +1612.07857 Machine Learning +1612.07858 +1612.07859 Information Theory +1612.07860 Plasma Physics +1612.07861 +1612.07862 Networking and Internet Architecture +1612.07863 Digital Libraries +1612.07864 Instrumentation and Methods for Astrophysics +1612.07865 +1612.07866 Data Structures and Algorithms +1612.07867 Methodology +1612.07868 Algebraic Topology +1612.07869 Analysis of PDEs +1612.07870 Analysis of PDEs +1612.07871 +1612.07872 Multimedia +1612.07873 Lattice +1612.07874 High Energy Astrophysical Phenomena +1612.07875 Numerical Analysis +1612.07876 Dynamical Systems +1612.07877 Optimization and Control +1612.07881 Formal Languages and Automata Theory +1612.07882 Information Theory +1612.07884 Group Theory +1612.07888 Combinatorics +1612.07889 Networking and Internet Architecture +1612.07890 Disordered Systems and Neural Networks +1612.07891 High Energy Astrophysical Phenomena +1612.07895 Space Physics +1612.07896 Artificial Intelligence +1612.07897 Cell Behavior +1612.07898 Number Theory +1612.07899 Computer Vision and Pattern Recognition +1612.07900 Algebraic Geometry +1612.07901 Probability +1612.07902 Information Theory +1612.07903 Economics +1612.07904 Combinatorics +1612.07905 Soft Condensed Matter +1612.07907 Classical Analysis and ODEs +1612.07908 Populations and Evolution +1612.07909 Dynamical Systems +1612.07910 Rings and Algebras +1612.07911 Computational Physics +1612.07912 Logic in Computer Science +1612.07913 Economics +1612.07914 Analysis of PDEs +1612.07916 Optimization and Control +1612.07917 Instrumentation and Methods for Astrophysics +1612.07919 Computer Vision and Pattern Recognition +1612.07920 Social and Information Networks +1612.07921 Computer Vision and Pattern Recognition +1612.07922 Statistical Mechanics +1612.07923 Astrophysics of Galaxies +1612.07924 +1612.07925 Data Structures and Algorithms +1612.07926 +1612.07928 Information Theory +1612.07931 Information Theory +1612.07932 Optics +1612.07933 Phenomenology +1612.07934 Analysis of PDEs +1612.07936 Analysis of PDEs +1612.07937 Analysis of PDEs +1612.07938 Applications +1612.07939 Analysis of PDEs +1612.07940 Computation and Language +1612.07942 Analysis of PDEs +1612.07943 Solar and Stellar Astrophysics +1612.07944 +1612.07946 Statistics Theory +1612.07947 Networking and Internet Architecture +1612.07948 Mesoscale and Nanoscale Physics +1612.07949 Materials Science +1612.07950 Probability +1612.07951 Phenomenology +1612.07952 Phenomenology +1612.07953 Quantum Gases +1612.07954 +1612.07955 Mesoscale and Nanoscale Physics +1612.07956 Computation and Language +1612.07957 Networking and Internet Architecture +1612.07958 Phenomenology +1612.07960 Quantum Algebra +1612.07962 Optimization and Control +1612.07963 +1612.07964 Quantum Algebra +1612.07967 Phenomenology +1612.07969 Mesoscale and Nanoscale Physics +1612.07970 +1612.07971 Methodology +1612.07974 +1612.07975 Mesoscale and Nanoscale Physics +1612.07977 Mesoscale and Nanoscale Physics +1612.07978 Computer Vision and Pattern Recognition +1612.07979 +1612.07981 Materials Science +1612.07983 Logic in Computer Science +1612.07984 +1612.07985 Lattice +1612.07987 Phenomenology +1612.07992 Biological Physics +1612.07993 Machine Learning +1612.07996 General Physics +1612.07998 Mesoscale and Nanoscale Physics +1612.07999 Information Theory +1612.08000 +1612.08001 Rings and Algebras +1612.08002 High Energy Astrophysical Phenomena +1612.08003 Soft Condensed Matter +1612.08005 Strongly Correlated Electrons +1612.08007 Analysis of PDEs +1612.08008 Number Theory +1612.08009 Strongly Correlated Electrons +1612.08010 +1612.08011 Soft Condensed Matter +1612.08014 Soft Condensed Matter +1612.08015 Theory +1612.08016 Strongly Correlated Electrons +1612.08017 Mesoscale and Nanoscale Physics +1612.08018 Functional Analysis +1612.08020 Classical Analysis and ODEs +1612.08022 Systems and Control +1612.08023 Information Theory +1612.08026 Phenomenology +1612.08028 Number Theory +1612.08032 +1612.08033 Strongly Correlated Electrons +1612.08034 Robotics +1612.08035 Number Theory +1612.08037 Computer Vision and Pattern Recognition +1612.08038 Probability +1612.08039 Strongly Correlated Electrons +1612.08041 Mesoscale and Nanoscale Physics +1612.08043 Geometric Topology +1612.08044 +1612.08045 Probability +1612.08046 Optics +1612.08047 Phenomenology +1612.08049 Computer Vision and Pattern Recognition +1612.08050 Databases +1612.08051 Rings and Algebras +1612.08053 +1612.08054 Solar and Stellar Astrophysics +1612.08055 Mesoscale and Nanoscale Physics +1612.08056 +1612.08058 Quantitative Methods +1612.08059 Neurons and Cognition +1612.08060 Distributed, Parallel, and Cluster Computing +1612.08062 Methodology +1612.08065 Theory +1612.08066 Theory +1612.08067 Networking and Internet Architecture +1612.08068 Optics +1612.08070 +1612.08071 Logic +1612.08072 +1612.08073 Software Engineering +1612.08074 Analysis of PDEs +1612.08075 Data Structures and Algorithms +1612.08076 Networking and Internet Architecture +1612.08077 Numerical Analysis +1612.08078 Experiment +1612.08079 Classical Analysis and ODEs +1612.08080 Representation Theory +1612.08081 Materials Science +1612.08082 Machine Learning +1612.08083 Computation and Language +1612.08084 Molecular Networks +1612.08085 Combinatorics +1612.08086 Classical Analysis and ODEs +0905.3924 Dynamical Systems +1006.0614 Dynamical Systems +1202.2188 Number Theory +1204.4922 Optics +1212.0305 Combinatorics +1302.2275 Number Theory +1304.4559 Differential Geometry +1305.7383 Cryptography and Security +1306.4131 Algebraic Geometry +1306.4504 Algebraic Geometry +1306.6430 Statistics Theory +1308.6326 Group Theory +1310.5569 Networking and Internet Architecture +1311.6387 Dynamical Systems +1402.0647 Algebraic Geometry +1402.2263 Functional Analysis +1402.3456 K-Theory and Homology +1403.6521 Representation Theory +1404.3118 Differential Geometry +1404.3566 Physics Education +1407.5280 Differential Geometry +1407.6581 Analysis of PDEs +1408.0350 Group Theory +1408.6447 Strongly Correlated Electrons +1409.0221 Differential Geometry +1409.7613 Combinatorics +1409.8163 +1410.2072 Superconductivity +1410.4645 Dynamical Systems +1410.8332 +1411.0560 Computation +1411.2330 Algebraic Topology +1412.0381 Fluid Dynamics +1412.2262 Portfolio Management +1501.02728 Physics and Society +1501.03221 Methodology +1501.03224 Quantum Gases +1501.04248 +1501.07452 Optics +1502.02396 +1502.07201 Differential Geometry +1503.04650 Cosmology and Nongalactic Astrophysics +1503.06150 Probability +1503.08298 Superconductivity +1504.01253 Dynamical Systems +1504.04794 Operator Algebras +1504.05803 Optimization and Control +1504.06139 Chemical Physics +1504.08126 Lattice +1505.00595 +1505.04405 Superconductivity +1505.07643 Fluid Dynamics +1506.00694 Systems and Control +1506.02777 Mesoscale and Nanoscale Physics +1506.03662 Learning +1506.03714 Theory +1506.04665 General Topology +1506.04668 Soft Condensed Matter +1506.06895 Cosmology and Nongalactic Astrophysics +1506.07424 Computational Engineering, Finance, and Science +1506.07584 Distributed, Parallel, and Cluster Computing +1506.07990 Artificial Intelligence +1507.00953 Optics +1507.01745 Category Theory +1507.05130 Dynamical Systems +1507.05336 +1507.05790 Social and Information Networks +1507.06184 Probability +1507.07131 Representation Theory +1507.07682 +1507.08993 +1508.05906 Probability +1508.07313 Social and Information Networks +1509.01255 Astrophysics of Galaxies +1509.02486 Instrumentation and Detectors +1509.02527 Number Theory +1509.03850 Strongly Correlated Electrons +1509.04547 Logic +1509.05386 +1509.05782 +1509.06463 Numerical Analysis +1509.08573 Biological Physics +1510.01238 Astrophysics of Galaxies +1510.02486 Phenomenology +1510.02520 Quantum Gases +1510.02832 Rings and Algebras +1510.03009 Learning +1510.04052 Materials Science +1511.03020 Digital Libraries +1511.04431 Medical Physics +1511.04693 Optics +1511.04886 +1511.06187 Materials Science +1511.06426 Computation and Language +1511.07142 +1511.07765 Chaotic Dynamics +1511.07933 High Energy Astrophysical Phenomena +1511.08130 Artificial Intelligence +1511.08766 Superconductivity +1512.04638 +1512.04830 Information Theory +1512.05440 Earth and Planetary Astrophysics +1512.06651 Theory +1512.08097 Applications +1512.08696 Number Theory +1601.00014 Commutative Algebra +1601.01032 Differential Geometry +1601.01076 Strongly Correlated Electrons +1601.01543 Analysis of PDEs +1601.02030 Algebraic Geometry +1601.02270 Rings and Algebras +1601.03931 Instrumentation and Methods for Astrophysics +1601.04208 Materials Science +1601.04737 Optimization and Control +1601.04738 Optimization and Control +1601.04810 Information Theory +1601.05401 Strongly Correlated Electrons +1602.01421 Distributed, Parallel, and Cluster Computing +1602.03143 Astrophysics of Galaxies +1602.03315 Soft Condensed Matter +1602.03685 Plasma Physics +1602.05209 Multimedia +1602.05526 Sound +1602.05584 Earth and Planetary Astrophysics +1602.06726 Number Theory +1602.07235 Computational Geometry +1602.07636 Information Theory +1602.07783 Information Retrieval +1602.07963 +1602.08039 Fluid Dynamics +1602.08095 Mesoscale and Nanoscale Physics +1602.08096 Analysis of PDEs +1602.08097 Theory +1602.08101 Astrophysics of Galaxies +1602.08109 Computer Science and Game Theory +1602.08111 Biomolecules +1602.08113 Biomolecules +1602.08115 Biomolecules +1602.08116 Systems and Control +1602.08117 Biomolecules +1602.08118 Learning +1602.08119 Biomolecules +1602.08125 Analysis of PDEs +1602.08128 Sound +1602.08129 Algebraic Geometry +1602.08132 Sound +1602.08139 Robotics +1602.08141 Robotics +1602.08142 History and Overview +1602.08145 Optics +1602.08148 Combinatorics +1602.08149 +1602.08155 Cryptography and Security +1602.08156 Networking and Internet Architecture +1602.08158 Robotics +1602.08160 Probability +1602.08161 Information Theory +1602.08163 Analysis of PDEs +1602.08169 Classical Analysis and ODEs +1602.08175 Analysis of PDEs +1602.08176 Analysis of PDEs +1602.08178 Strongly Correlated Electrons +1602.08183 Quantitative Methods +1602.08184 Rings and Algebras +1602.08185 Sound +1602.08186 Information Retrieval +1602.08192 Materials Science +1602.08198 Disordered Systems and Neural Networks +1602.08203 Number Theory +1602.08208 Functional Analysis +1602.08209 Materials Science +1602.08212 Phenomenology +1602.08213 Robotics +1602.08214 Combinatorics +1602.08215 Sound +1602.08217 Optics +1602.08218 Strongly Correlated Electrons +1602.08220 +1602.08225 Human-Computer Interaction +1602.08227 High Energy Astrophysical Phenomena +1602.08228 Cryptography and Security +1602.08231 Number Theory +1602.08233 Computational Physics +1602.08234 Probability +1602.08235 Probability +1602.08236 Number Theory +1602.08237 Human-Computer Interaction +1602.08241 Classical Analysis and ODEs +1602.08242 Dynamical Systems +1602.08246 General Topology +1602.08247 Algebraic Topology +1602.08250 Combinatorics +1602.08253 Representation Theory +1602.08254 Data Structures and Algorithms +1602.08258 Statistical Finance +1602.08260 Logic in Computer Science +1602.08262 Materials Science +1602.08264 History and Overview +1602.08268 Populations and Evolution +1602.08270 Trading and Market Microstructure +1602.08278 +1602.08279 Functional Analysis +1602.08280 Optics +1602.08281 +1602.08284 Algebraic Geometry +1602.08285 Materials Science +1602.08288 Strongly Correlated Electrons +1602.08294 Chaotic Dynamics +1602.08297 Portfolio Management +1602.08298 Data Structures and Algorithms +1602.08301 +1602.08307 Statistics Theory +1602.08311 Probability +1602.08312 Cosmology and Nongalactic Astrophysics +1602.08313 Artificial Intelligence +1602.08314 Molecular Networks +1602.08318 Complex Variables +1602.08321 Software Engineering +1602.08326 Fluid Dynamics +1602.08331 Dynamical Systems +1602.08335 General Physics +1602.08336 Probability +1602.08337 Complex Variables +1602.08338 Numerical Analysis +1602.08340 Dynamical Systems +1602.08342 Computational Physics +1602.08343 Soft Condensed Matter +1602.08344 Analysis of PDEs +1602.08345 Dynamical Systems +1602.08347 Combinatorics +1602.08348 Materials Science +1602.08349 Logic in Computer Science +1602.08350 Learning +1602.08352 Phenomenology +1602.08354 Number Theory +1602.08355 Applications +1602.08358 Human-Computer Interaction +1602.08360 Applications +1602.08361 Distributed, Parallel, and Cluster Computing +1602.08365 Numerical Analysis +1602.08369 Data Structures and Algorithms +1602.08372 Optimization and Control +1602.08378 Optimization and Control +1602.08379 Group Theory +1602.08380 General Topology +1602.08382 Probability +1602.08386 +1602.08388 Computers and Society +1602.08391 Numerical Analysis +1602.08393 Data Structures and Algorithms +1602.08399 Computers and Society +1602.08401 Representation Theory +1602.08402 Astrophysics of Galaxies +1602.08408 Logic +1602.08410 Cryptography and Security +1602.08417 Neurons and Cognition +1602.08418 Machine Learning +1602.08420 Materials Science +1602.08423 Computers and Society +1602.08428 Probability +1602.08429 General Finance +1602.08430 Cosmology and Nongalactic Astrophysics +1602.08435 Functional Analysis +1602.08439 Phenomenology +1602.08441 Phenomenology +1602.08442 General Finance +1602.08444 Information Theory +1602.08446 Information Theory +1602.08447 Artificial Intelligence +1602.08450 Methodology +1602.08453 Mesoscale and Nanoscale Physics +1602.08455 Information Theory +1602.08457 Quantum Algebra +1602.08458 Complex Variables +1602.08459 Cryptography and Security +1602.08460 Dynamical Systems +1602.08461 Networking and Internet Architecture +1602.08463 Computational Engineering, Finance, and Science +1602.08466 Information Theory +1602.08469 Information Theory +1602.08472 Cryptography and Security +1602.08473 Optimization and Control +1602.08474 Astrophysics of Galaxies +1602.08475 Theory +math/0207108 Algebraic Geometry +math/0611658 Differential Geometry +nlin/0109006 Chaotic Dynamics +0705.0920 Functional Analysis +0707.4584 Analysis of PDEs +0710.3652 Analysis of PDEs +0712.4005 Group Theory +0801.1444 Analysis of PDEs +0802.2801 Analysis of PDEs +0803.3140 Functional Analysis +0902.3957 Superconductivity +0903.0323 Superconductivity +0903.1028 Superconductivity +0904.1508 Analysis of PDEs +0904.1691 Analysis of PDEs +0906.0403 Superconductivity +0906.4604 General Mathematics +0910.1537 Superconductivity +0912.0284 K-Theory and Homology +1002.0747 Applications +1003.1125 Rings and Algebras +1004.3686 Analysis of PDEs +1108.4267 Rings and Algebras +1110.3650 Group Theory +1110.5955 Representation Theory +1202.0695 Computer Science and Game Theory +1202.4160 Data Structures and Algorithms +1204.0020 Quantum Algebra +1205.2937 Phenomenology +1207.2962 Rings and Algebras +1208.4761 Strongly Correlated Electrons +1209.5784 Dynamical Systems +1210.0165 Number Theory +1302.5904 Dynamical Systems +1303.1579 Algebraic Topology +1304.7567 Quantum Gases +1305.0656 Spectral Theory +1305.1843 Spectral Theory +1305.3239 Numerical Analysis +1305.3426 Fluid Dynamics +1305.6028 Category Theory +1307.4697 Functional Analysis +1308.2635 Functional Analysis +1308.3431 +1308.5863 Theory +1308.6198 Cryptography and Security +1309.4183 Probability +1309.4863 Physics and Society +1310.6710 Algebraic Geometry +1311.3363 Probability +1311.6187 Probability +1312.7147 Number Theory +1401.1725 Combinatorics +1401.7071 Differential Geometry +1402.2017 Dynamical Systems +1402.6561 Optics +1403.0094 Analysis of PDEs +1404.5418 Probability +1404.6345 Number Theory +1404.7257 Probability +1405.1523 Logic in Computer Science +1405.4403 Cosmology and Nongalactic Astrophysics +1405.7463 Fluid Dynamics +1405.7590 Probability +1406.0319 Cosmology and Nongalactic Astrophysics +1406.1192 +1406.1931 Optics +1406.5261 Group Theory +1406.7312 Algebraic Geometry +1407.0416 Optimization and Control +1407.0841 Analysis of PDEs +1407.0876 Probability +1407.2629 Algebraic Geometry +1407.3594 Differential Geometry +1407.4207 Functional Analysis +1408.2676 Algebraic Geometry +1408.4308 Algebraic Geometry +1408.6468 Operator Algebras +1409.1771 Statistics Theory +1409.2757 General Mathematics +1409.7960 Probability +1410.0258 Combinatorics +1410.4278 Information Theory +1410.5916 +1410.8197 +1410.8229 Machine Learning +1410.8395 Combinatorics +1411.0541 Learning +1411.0868 Numerical Analysis +1411.1044 Discrete Mathematics +1411.3860 Operator Algebras +1411.6349 Differential Geometry +1411.6638 Superconductivity +1411.7179 Algebraic Geometry +1411.7668 Group Theory +1412.2412 Quantum Gases +1412.4228 +1412.5383 Functional Analysis +1412.8462 +1412.8622 Materials Science +1501.00054 +1501.00562 Probability +1501.01573 Portfolio Management +1501.02171 Astrophysics of Galaxies +1501.02994 Complex Variables +1501.03530 Instrumentation and Detectors +1501.03622 Analysis of PDEs +1501.04002 Computational Geometry +1501.06181 Mesoscale and Nanoscale Physics +1501.07480 Mathematical Finance +1502.00471 Methodology +1502.03374 Classical Analysis and ODEs +1502.03555 Combinatorics +1502.04400 Dynamical Systems +1502.05334 Data Structures and Algorithms +1503.00407 +1503.04413 Optimization and Control +1503.04675 Quantum Algebra +1503.05863 +1503.06171 Applications +1504.00235 Probability +1504.01924 +1505.01680 +1505.03667 Quantum Algebra +1505.04456 Materials Science +1505.04723 +1505.04753 +1505.07072 Statistics Theory +1505.07352 Methodology +1506.01728 +1506.02778 Probability +1506.04778 Computation +1506.07405 Numerical Analysis +1506.08266 Representation Theory +1507.00144 Functional Analysis +1507.00287 Information Theory +1507.00447 Optimization and Control +1507.01338 Social and Information Networks +1507.02870 Artificial Intelligence +1507.05014 Optimization and Control +1507.08632 Mesoscale and Nanoscale Physics +1507.08865 Algebraic Geometry +1508.00591 Operator Algebras +1508.00617 Probability +1508.03680 Geometric Topology +1508.04477 +1508.04869 +1509.00975 Earth and Planetary Astrophysics +1509.01862 Theory +1509.02101 Algebraic Topology +1509.03048 Logic +1509.03218 Combinatorics +1509.03598 Optics +1509.04001 Analysis of PDEs +1509.04093 Statistics Theory +1509.04697 Statistical Mechanics +1509.06638 Metric Geometry +1509.06676 +1509.06711 General Physics +1509.07141 Statistical Mechanics +1509.07243 Phenomenology +1509.08285 Computational Geometry +1509.08405 Rings and Algebras +1510.00154 Cosmology and Nongalactic Astrophysics +1510.01100 Neurons and Cognition +1510.03323 Complex Variables +1510.03666 +1510.04668 Operator Algebras +1510.05045 Adaptation and Self-Organizing Systems +1510.05188 Functional Analysis +1510.05578 Optimization and Control +1510.06806 +1510.08160 Computer Vision and Pattern Recognition +1510.08573 Optimization and Control +1511.00263 Optics +1511.00309 High Energy Astrophysical Phenomena +1511.01333 High Energy Astrophysical Phenomena +1511.02275 Lattice +1511.02982 Operator Algebras +1511.03094 Mesoscale and Nanoscale Physics +1511.03403 Optimization and Control +1511.05785 Mesoscale and Nanoscale Physics +1511.05904 Computer Vision and Pattern Recognition +1511.07389 Theory +1511.07911 Differential Geometry +1511.08144 +1511.08416 Computer Science and Game Theory +1512.00487 Applications +1512.00601 Differential Geometry +1512.00707 Dynamical Systems +1512.01384 Computation and Language +1512.01405 Strongly Correlated Electrons +1512.01407 Materials Science +1512.01717 Formal Languages and Automata Theory +1512.02430 Formal Languages and Automata Theory +1512.03075 Group Theory +1512.04254 Representation Theory +1512.05202 General Physics +1512.05306 Distributed, Parallel, and Cluster Computing +1512.06654 Geometric Topology +1512.06660 Combinatorics +1512.06708 Phenomenology +1512.07106 +1512.07733 Phenomenology +1512.07871 Probability +1512.07874 Combinatorics +1512.08316 Geometric Topology +1512.09081 +1601.00173 +1601.00454 Phenomenology +1601.00486 Phenomenology +1601.01269 Mesoscale and Nanoscale Physics +1601.01628 Mesoscale and Nanoscale Physics +1601.01873 +1601.02582 Complex Variables +1601.03189 Category Theory +1601.03699 Experiment +1601.03735 High Energy Astrophysical Phenomena +1601.04118 Optimization and Control +1601.04515 Theory +1601.04680 Number Theory +1601.05102 Optimization and Control +1601.06279 Dynamical Systems +1601.06411 Functional Analysis +1601.06679 Optics +1601.07117 Quantum Gases +1601.08157 Fluid Dynamics +1602.00909 +1602.01258 Social and Information Networks +1602.01710 Superconductivity +1602.02790 Phenomenology +1602.03046 Populations and Evolution +1602.03345 Statistical Mechanics +1602.03693 Differential Geometry +1602.03701 Instrumentation and Detectors +1602.06457 Representation Theory +1602.07543 Experiment +1602.08553 Strongly Correlated Electrons +1602.08819 Phenomenology +1603.00631 Dynamical Systems +1603.01423 Quantum Gases +1603.01782 Instrumentation and Detectors +1603.02040 Mesoscale and Nanoscale Physics +1603.02871 Probability +1603.02957 +1603.03316 Computation +1603.03850 Commutative Algebra +1603.04659 Instrumentation and Methods for Astrophysics +1603.05251 Phenomenology +1603.05301 +1603.06440 Mesoscale and Nanoscale Physics +1603.06447 Mesoscale and Nanoscale Physics +1603.06772 Optimization and Control +1603.06903 Astrophysics of Galaxies +1603.07016 Digital Libraries +1603.07295 Strongly Correlated Electrons +1603.07373 +1603.07754 +1603.08258 Mesoscale and Nanoscale Physics +1603.08495 Probability +1603.08528 Mesoscale and Nanoscale Physics +1603.09246 Computer Vision and Pattern Recognition +1603.09490 Networking and Internet Architecture +1604.00719 Dynamical Systems +1604.00876 Earth and Planetary Astrophysics +1604.01363 Phenomenology +1604.01792 Computation and Language +1604.02811 Theory +1604.03532 Biological Physics +1604.03565 Superconductivity +1604.05371 Mesoscale and Nanoscale Physics +1604.05917 General Physics +1604.06357 Mesoscale and Nanoscale Physics +1604.07677 Solar and Stellar Astrophysics +1604.07983 Lattice +1604.08681 Functional Analysis +1605.00163 High Energy Astrophysical Phenomena +1605.00481 Functional Analysis +1605.01488 Data Structures and Algorithms +1605.02309 Computers and Society +1605.02497 Phenomenology +1605.02930 Differential Geometry +1605.03901 Biological Physics +1605.03939 Experiment +1605.04570 +1605.04914 +1605.05051 Statistics Theory +1605.05428 Algebraic Geometry +1605.06278 +1605.07430 +1605.07531 +1605.07543 Algebraic Geometry +1605.07909 Superconductivity +1605.08136 Classical Analysis and ODEs +1606.00778 Differential Geometry +1606.01166 Learning +1606.01492 Phenomenology +1606.01568 Learning +1606.01786 Systems and Control +1606.01967 General Topology +1606.01995 Logic +1606.02099 Analysis of PDEs +1606.02144 Systems and Control +1606.02495 Materials Science +1606.02526 Chaotic Dynamics +1606.02600 Instrumentation and Detectors +1606.02703 Probability +1606.03351 Combinatorics +1606.03474 Learning +1606.03589 Quantum Gases +1606.03617 Logic +1606.03704 Geometric Topology +1606.03836 Probability +1606.03869 Logic +1606.04158 Algebraic Geometry +1606.04419 Combinatorics +1606.04529 +1606.05249 Earth and Planetary Astrophysics +1606.05679 Computation and Language +1606.05743 Networking and Internet Architecture +1606.05835 Algebraic Topology +1606.05992 Representation Theory +1606.06164 Computation and Language +1606.06326 Probability +1606.06354 Computer Vision and Pattern Recognition +1606.06389 Data Structures and Algorithms +1606.06476 Networking and Internet Architecture +1606.06615 Algebraic Geometry +1606.06702 Human-Computer Interaction +1606.06807 Geometric Topology +1606.06831 Atomic Physics +1606.07103 Information Retrieval +1606.07257 Algebraic Geometry +1606.07285 Computer Vision and Pattern Recognition +1606.07342 Biological Physics +1606.07425 Data Structures and Algorithms +1606.07484 Astrophysics of Galaxies +1606.07522 Logic in Computer Science +1606.07594 Group Theory +1606.07660 Information Retrieval +1606.07719 General Physics +1606.07768 Statistical Mechanics +1606.07769 Physics and Society +1606.07802 Data Structures and Algorithms +1606.07803 Computers and Society +1606.07804 High Energy Astrophysical Phenomena +1606.07807 Genomics +1606.07817 Astrophysics of Galaxies +1606.07820 Astrophysics of Galaxies +1606.07822 Computation and Language +1606.07823 Combinatorics +1606.07824 Complex Variables +1606.07825 Physics and Society +1606.07827 Computer Vision and Pattern Recognition +1606.07828 Information Retrieval +1606.07829 Computation and Language +1606.07830 Computer Vision and Pattern Recognition +1606.07831 Computational Finance +1606.07838 Classical Analysis and ODEs +1606.07840 Machine Learning +1606.07841 Human-Computer Interaction +1606.07843 Computer Science and Game Theory +1606.07844 Number Theory +1606.07845 Computation +1606.07848 Strongly Correlated Electrons +1606.07849 Computation and Language +1606.07850 Classical Analysis and ODEs +1606.07852 Hardware Architecture +1606.07853 Physics Education +1606.07855 Applications +1606.07857 Pattern Formation and Solitons +1606.07858 Systems and Control +1606.07859 Materials Science +1606.07863 Data Structures and Algorithms +1606.07864 Data Structures and Algorithms +1606.07868 Computation +1606.07869 Information Retrieval +1606.07873 Computer Vision and Pattern Recognition +1606.07874 Combinatorics +1606.07876 Distributed, Parallel, and Cluster Computing +1606.07877 Differential Geometry +1606.07878 Combinatorics +1606.07880 Theory +1606.07881 Combinatorics +1606.07883 Classical Analysis and ODEs +1606.07885 Rings and Algebras +1606.07886 Logic in Computer Science +1606.07887 Astrophysics of Galaxies +1606.07891 Analysis of PDEs +1606.07892 Computation +1606.07893 Rings and Algebras +1606.07896 Statistics Theory +1606.07901 Computation and Language +1606.07902 Computation and Language +1606.07903 Phenomenology +1606.07904 Information Theory +1606.07906 Combinatorics +1606.07907 Differential Geometry +1606.07909 Functional Analysis +1606.07910 Computational Complexity +1606.07911 Number Theory +1606.07913 Discrete Mathematics +1606.07914 Strongly Correlated Electrons +1606.07916 Social and Information Networks +1606.07918 Combinatorics +1606.07920 Complex Variables +1606.07921 Computer Vision and Pattern Recognition +1606.07925 Algebraic Topology +1606.07926 Methodology +1606.07932 Networking and Internet Architecture +1606.07935 Networking and Internet Architecture +1606.07936 +1606.07937 General Physics +1606.07939 Analysis of PDEs +1606.07940 Classical Analysis and ODEs +1606.07941 Software Engineering +1606.07943 Astrophysics of Galaxies +1606.07944 Number Theory +1606.07945 Probability +1606.07948 Statistics Theory +1606.07950 Computation and Language +1606.07955 Artificial Intelligence +1606.07956 Commutative Algebra +1606.07958 Dynamical Systems +1606.07962 Materials Science +1606.07965 Computation and Language +1606.07966 Number Theory +1606.07967 Computation and Language +1606.07968 Computer Vision and Pattern Recognition +1606.07969 Statistical Mechanics +1606.07970 Computer Vision and Pattern Recognition +1606.07973 Algebraic Geometry +1606.07975 +1606.07976 Commutative Algebra +1606.07980 Fluid Dynamics +1606.07983 Mesoscale and Nanoscale Physics +1606.07986 Applications +1606.07988 Software Engineering +1606.07990 Atomic Physics +1606.07991 Software Engineering +1606.07993 Computation and Language +1606.07994 Symplectic Geometry +1606.07996 Materials Science +1606.07997 Metric Geometry +1606.07998 Rings and Algebras +1606.08000 Materials Science +1606.08001 Combinatorics +1606.08002 Materials Science +1606.08003 Computation and Language +1606.08007 Mesoscale and Nanoscale Physics +1606.08010 +1606.08013 Mesoscale and Nanoscale Physics +1606.08014 Computational Complexity +1606.08015 Differential Geometry +1606.08016 Combinatorics +1606.08017 Group Theory +1606.08018 Differential Geometry +1606.08019 Optics +1606.08021 Number Theory +1606.08023 Computational Geometry +1606.08026 Functional Analysis +1606.08031 +1606.08033 Combinatorics +1606.08034 Number Theory +1606.08036 Group Theory +1606.08037 Combinatorics +1606.08040 Numerical Analysis +1606.08042 Number Theory +1606.08043 Differential Geometry +1606.08044 Probability +1606.08046 Methodology +1606.08047 Classical Analysis and ODEs +1606.08048 Functional Analysis +1606.08049 +1606.08057 Robotics +1606.08058 +1606.08061 Neural and Evolutionary Computing +1606.08062 Materials Science +1606.08063 Machine Learning +1606.08065 Human-Computer Interaction +1606.08066 Analysis of PDEs +1606.08069 Optimization and Control +1606.08072 Systems and Control +1606.08074 Classical Analysis and ODEs +1606.08077 Computer Science and Game Theory +1606.08080 Dynamical Systems +1606.08082 Classical Analysis and ODEs +1606.08083 Data Structures and Algorithms +1606.08084 Social and Information Networks +1606.08085 Discrete Mathematics +1606.08089 Computation and Language +1606.08090 Systems and Control +1606.08091 Complex Variables +1606.08092 Logic +1606.08095 Statistical Mechanics +1606.08096 +1606.08098 Applications +1606.08099 Functional Analysis +1606.08100 Mesoscale and Nanoscale Physics +1606.08101 Optimization and Control +1606.08102 Cosmology and Nongalactic Astrophysics +1606.08103 Social and Information Networks +1606.08104 Information Retrieval +1606.08105 Machine Learning +1606.08106 Methodology +1606.08109 Artificial Intelligence +1606.08118 Materials Science +1606.08119 Mesoscale and Nanoscale Physics +1606.08121 +1606.08122 Combinatorics +1606.08128 Information Theory +1606.08131 Fluid Dynamics +1606.08132 Social and Information Networks +1606.08133 Instrumentation and Methods for Astrophysics +1606.08134 Complex Variables +1606.08137 Materials Science +1606.08138 High Energy Astrophysical Phenomena +1606.08139 Quantum Algebra +1606.08141 Computational Complexity +1606.08143 Combinatorics +1606.08144 Complex Variables +1606.08151 Statistics Theory +1606.08153 Combinatorics +1606.08154 Social and Information Networks +1606.08156 Distributed, Parallel, and Cluster Computing +1606.08160 Computation +1606.08162 Populations and Evolution +1606.08165 Neural and Evolutionary Computing +1606.08167 Optics +1606.08170 Experiment +1606.08173 +1606.08174 Plasma Physics +1606.08175 Optics +1606.08184 Combinatorics +1606.08186 Mesoscale and Nanoscale Physics +1606.08188 Computational Physics +1606.08189 Classical Analysis and ODEs +1606.08190 Instrumentation and Methods for Astrophysics +1606.08191 Statistical Mechanics +1606.08193 Combinatorics +1606.08194 Functional Analysis +1606.08196 Group Theory +1606.08199 Applications +1606.08200 Optics +1606.08202 Mesoscale and Nanoscale Physics +1606.08209 Numerical Analysis +1606.08210 Atomic Physics +1606.08211 Analysis of PDEs +1606.08212 Probability +1606.08214 Differential Geometry +1606.08215 Soft Condensed Matter +1606.08216 Functional Analysis +1606.08220 Optimization and Control +1606.08222 Category Theory +1606.08226 Discrete Mathematics +1606.08227 Materials Science +1606.08229 +1606.08230 Probability +1606.08233 Populations and Evolution +1606.08238 Exactly Solvable and Integrable Systems +1606.08239 Chemical Physics +1606.08240 Metric Geometry +1606.08242 Algebraic Geometry +1606.08243 Phenomenology +1606.08245 Number Theory +1606.08246 Combinatorics +1606.08248 Statistics Theory +1606.08249 Analysis of PDEs +1606.08252 Mesoscale and Nanoscale Physics +1606.08253 Information Theory +1606.08254 Superconductivity +1606.08255 Classical Analysis and ODEs +1606.08259 Optics +1606.08261 Algebraic Geometry +1606.08269 Probability +1606.08270 Computation and Language +1606.08273 +1606.08275 Data Structures and Algorithms +1606.08277 Distributed, Parallel, and Cluster Computing +1606.08279 Rings and Algebras +1606.08280 Logic in Computer Science +1606.08281 Quantitative Methods +1606.08283 Experiment +1606.08288 Machine Learning +1606.08289 Experiment +1606.08290 Mesoscale and Nanoscale Physics +1606.08292 Applications +1606.08293 General Mathematics +1606.08297 Software Engineering +1606.08298 Methodology +1606.08300 General Physics +1606.08301 Mesoscale and Nanoscale Physics +1606.08302 Optics +1606.08303 Information Theory +1606.08304 High Energy Astrophysical Phenomena +1606.08306 Atomic and Molecular Clusters +1606.08309 General Physics +1606.08313 Neurons and Cognition +1606.08314 Biomolecules +1606.08315 Computer Vision and Pattern Recognition +1606.08321 Probability +1606.08322 Dynamical Systems +1606.08323 Optimization and Control +1606.08325 Classical Analysis and ODEs +1606.08326 Logic +1606.08328 Social and Information Networks +1606.08331 Exactly Solvable and Integrable Systems +1606.08332 +1606.08333 Artificial Intelligence +1606.08337 Methodology +1606.08339 Methodology +1606.08344 Materials Science +1606.08347 Differential Geometry +1606.08348 Phenomenology +1606.08354 Combinatorics +1606.08355 Materials Science +1606.08357 Group Theory +1606.08360 Analysis of PDEs +1606.08362 Data Structures and Algorithms +1606.08363 Populations and Evolution +1606.08364 Strongly Correlated Electrons +1606.08366 Neural and Evolutionary Computing +1606.08367 Information Theory +1606.08369 Classical Analysis and ODEs +1606.08370 Neurons and Cognition +1606.08371 +1606.08372 +1606.08375 +1606.08377 Genomics +1606.08378 Cryptography and Security +1606.08380 Cosmology and Nongalactic Astrophysics +1606.08381 Computational Finance +1606.08383 Combinatorics +1606.08385 Optics +1606.08386 Quantum Gases +1606.08395 Numerical Analysis +1606.08401 Information Theory +1606.08403 +1606.08404 Emerging Technologies +1606.08405 Information Theory +1606.08406 Information Retrieval +1606.08410 Systems and Control +1606.08413 Algebraic Geometry +1606.08414 Algebraic Geometry +1606.08416 Methodology +1606.08422 Systems and Control +1606.08427 Materials Science +1606.08428 Rings and Algebras +math/0601417 Group Theory +math/0610229 Analysis of PDEs +math/0611177 Group Theory +0706.2711 Combinatorics +0711.4897 +0804.0944 Combinatorics +0806.3046 Combinatorics +0811.0888 Rings and Algebras +0907.3965 Computational Complexity +1004.1204 Rings and Algebras +1103.4116 Algebraic Geometry +1105.3445 +1105.3520 +1107.3610 Combinatorics +1110.1998 Differential Geometry +1110.5250 Algebraic Geometry +1205.5544 Symplectic Geometry +1206.4140 Probability +1207.0248 Algebraic Topology +1208.4319 Combinatorics +1208.4968 Experiment +1208.5191 Combinatorics +1209.4956 Combinatorics +1210.3016 Theory +1212.6766 Theory +1302.0865 Combinatorics +1303.1575 Theory +1303.7257 +1304.1224 Combinatorics +1307.2528 Combinatorics +1307.3728 Differential Geometry +1307.4273 Combinatorics +1309.1305 Probability +1309.6500 Earth and Planetary Astrophysics +1312.1581 Differential Geometry +1401.3534 Quantum Algebra +1401.7577 Probability +1402.2570 Combinatorics +1402.4722 Data Structures and Algorithms +1402.4738 Information Theory +1404.7380 Combinatorics +1405.5000 Statistical Finance +1405.7658 Populations and Evolution +1405.7792 Algebraic Geometry +1406.4225 Differential Geometry +1407.1537 Data Structures and Algorithms +1408.5034 Group Theory +1408.5036 Probability +1410.6572 Discrete Mathematics +1410.7143 Social and Information Networks +1411.4270 Probability +1411.5723 Soft Condensed Matter +1412.1695 Rings and Algebras +1412.4876 Classical Analysis and ODEs +1412.5339 Disordered Systems and Neural Networks +1412.6846 Superconductivity +1412.7721 +1501.01624 Atomic Physics +1501.03872 Computational Complexity +1501.03889 Methodology +1502.04351 Probability +1502.06896 Combinatorics +1503.01894 Combinatorics +1503.07444 Computational Geometry +1504.00961 Differential Geometry +1504.01929 Chaotic Dynamics +1504.03086 Optics +1504.04175 Theory +1504.04533 Phenomenology +1504.05067 Analysis of PDEs +1504.06185 Statistics Theory +1504.06834 K-Theory and Homology +1504.07032 Mesoscale and Nanoscale Physics +1504.07520 Dynamical Systems +1505.01601 Strongly Correlated Electrons +1505.01913 Probability +1505.02537 Numerical Analysis +1505.03428 Differential Geometry +1505.04371 Soft Condensed Matter +1505.04465 Group Theory +1505.04639 Analysis of PDEs +1505.06012 Multiagent Systems +1506.00059 Numerical Analysis +1506.00715 Representation Theory +1506.00747 Data Structures and Algorithms +1506.01270 Number Theory +1506.01828 Atomic Physics +1506.04492 Theory +1506.06985 Classical Analysis and ODEs +1506.08964 Analysis of PDEs +1507.00228 Optimization and Control +1507.01186 Fluid Dynamics +1507.03005 Theory +1507.03693 Phenomenology +1507.04815 Soft Condensed Matter +1507.05563 Operator Algebras +1507.06308 +1508.01465 Combinatorics +1508.05607 +1508.06908 Analysis of PDEs +1508.07789 Category Theory +1508.07914 Trading and Market Microstructure +1509.00519 Learning +1509.00546 Analysis of PDEs +1509.02127 Analysis of PDEs +1509.02890 +1509.03268 Combinatorics +1509.06887 Phenomenology +1509.07001 Metric Geometry +1509.07109 Software Engineering +1509.07659 Sound +1510.00174 +1510.00452 Learning +1510.01343 Combinatorics +1510.01349 Combinatorics +1510.02390 +1510.05280 +1510.07888 Economics +1510.08613 Optics +1511.01028 Probability +1511.02084 Functional Analysis +1511.03623 Combinatorics +1511.03687 Optimization and Control +1511.03751 Numerical Analysis +1511.03979 Neural and Evolutionary Computing +1511.04078 Cosmology and Nongalactic Astrophysics +1511.05707 Differential Geometry +1511.05899 Representation Theory +1511.05986 Mathematical Software +1511.06268 Statistics Theory +1511.07342 +1511.07388 Superconductivity +1511.07854 Earth and Planetary Astrophysics +1511.09228 +1511.09232 Number Theory +1511.09280 Dynamical Systems +1512.00188 Disordered Systems and Neural Networks +1512.00218 Statistics Theory +1512.01262 Quantum Algebra +1512.01413 Instrumentation and Methods for Astrophysics +1512.02057 Statistical Mechanics +1512.04215 Complex Variables +1512.04306 Commutative Algebra +1512.04889 Analysis of PDEs +1512.05938 +1512.05991 Representation Theory +1512.05998 Logic +1512.07043 Dynamical Systems +1512.08353 Analysis of PDEs +1601.01380 +1601.01469 Optimization and Control +1601.03095 Data Structures and Algorithms +1601.04725 Astrophysics of Galaxies +1601.05080 Combinatorics +1601.05285 Machine Learning +1601.06561 Theory +1601.07824 Logic +1601.08110 Algebraic Geometry +1602.00825 +1602.00827 Dynamical Systems +1602.01033 Combinatorics +1602.01517 Computer Vision and Pattern Recognition +1602.01529 Differential Geometry +1602.01716 Optimization and Control +1602.01772 +1602.03497 High Energy Astrophysical Phenomena +1602.03622 +1602.04626 Numerical Analysis +1602.04655 +1602.04809 Analysis of PDEs +1602.06712 Geophysics +1602.07360 Computer Vision and Pattern Recognition +1602.07558 Numerical Analysis +1602.08323 Neural and Evolutionary Computing +1602.08821 Symplectic Geometry +1602.08927 Machine Learning +1602.09043 High Energy Astrophysical Phenomena +1603.00239 Probability +1603.00971 Superconductivity +1603.01847 Materials Science +1603.03538 Mathematical Finance +1603.03751 Mesoscale and Nanoscale Physics +1603.03940 Dynamical Systems +1603.04441 Cosmology and Nongalactic Astrophysics +1603.04633 Soft Condensed Matter +1603.04775 +1603.05536 Probability +1603.06368 Cosmology and Nongalactic Astrophysics +1603.06521 Mesoscale and Nanoscale Physics +1603.07012 Computation and Language +1603.07833 High Energy Astrophysical Phenomena +1603.09586 Optimization and Control +1604.00892 Dynamical Systems +1604.00909 Optics +1604.01756 Fluid Dynamics +1604.02050 Strongly Correlated Electrons +1604.02633 Strongly Correlated Electrons +1604.02832 Systems and Control +1604.02973 Theory +1604.04883 Populations and Evolution +1604.05354 Statistical Mechanics +1604.05922 Logic +1604.06316 Representation Theory +1604.06728 Combinatorics +1604.08412 +1604.08453 Complex Variables +1604.08564 Phenomenology +1604.08614 Cosmology and Nongalactic Astrophysics +1604.08639 Commutative Algebra +1604.08896 Group Theory +1605.00806 +1605.00929 Algebraic Geometry +1605.01657 Mesoscale and Nanoscale Physics +1605.01733 Phenomenology +1605.02035 +1605.02293 Complex Variables +1605.02343 Representation Theory +1605.02712 Mesoscale and Nanoscale Physics +1605.03429 +1605.03879 Theory +1605.03965 Cosmology and Nongalactic Astrophysics +1605.04152 Strongly Correlated Electrons +1605.04230 Analysis of PDEs +1605.04821 Numerical Analysis +1605.05209 Classical Physics +1605.05274 Programming Languages +1605.06348 Probability +1605.06438 Numerical Analysis +1605.06640 Neural and Evolutionary Computing +1605.07139 Learning +1605.07327 Lattice +1605.07589 Plasma Physics +1605.07689 Machine Learning +1605.07725 Machine Learning +1605.07865 Databases +1605.07880 Analysis of PDEs +1605.08128 Solar and Stellar Astrophysics +1605.08471 Earth and Planetary Astrophysics +1605.09180 Earth and Planetary Astrophysics +1605.09525 Optics +1605.09783 +1606.00077 +1606.00491 Optimization and Control +1606.00544 Mesoscale and Nanoscale Physics +1606.00645 Number Theory +1606.00672 Cosmology and Nongalactic Astrophysics +1606.01286 Computer Vision and Pattern Recognition +1606.01392 Biological Physics +1606.01865 Learning +1606.02206 Machine Learning +1606.02519 Biological Physics +1606.02719 Cosmology and Nongalactic Astrophysics +1606.02740 Physics and Society +1606.03694 +1606.03985 Strongly Correlated Electrons +1606.04285 Computational Finance +1606.04562 Cosmology and Nongalactic Astrophysics +1606.04634 +1606.04696 Data Structures and Algorithms +1606.05201 Machine Learning +1606.05525 Combinatorics +1606.05676 Classical Physics +1606.06842 Genomics +1606.07007 +1606.07493 Computation and Language +1606.08056 +1606.08064 Instrumentation and Detectors +1606.08185 Theory +1606.08424 Chemical Physics +1606.09170 Strongly Correlated Electrons +1607.00609 Probability +1607.02182 Probability +1607.02400 High Energy Astrophysical Phenomena +1607.02549 Systems and Control +1607.03066 Category Theory +1607.03455 Programming Languages +1607.03820 +1607.03956 Mesoscale and Nanoscale Physics +1607.04070 +1607.04265 Theory +1607.04599 +1607.04807 Other Statistics +1607.05127 Data Structures and Algorithms +1607.05132 Data Structures and Algorithms +1607.05160 +1607.05239 Geometric Topology +1607.05281 Astrophysics of Galaxies +1607.05994 Data Structures and Algorithms +1607.06095 +1607.06251 Neurons and Cognition +1607.06262 Cosmology and Nongalactic Astrophysics +1607.07736 Quantum Gases +1607.08154 Soft Condensed Matter +1607.08311 Information Theory +1607.08371 Robotics +1607.08449 Computational Geometry +1607.08498 Optimization and Control +1607.08649 Differential Geometry +1608.00029 Strongly Correlated Electrons +1608.00343 Theory +1608.00815 General Physics +1608.00914 Representation Theory +1608.01247 Information Retrieval +1608.01520 History and Philosophy of Physics +1608.01654 Programming Languages +1608.02311 Phenomenology +1608.02868 Quantum Gases +1608.02976 Biomolecules +1608.03086 Experiment +1608.03163 Differential Geometry +1608.03972 Theory +1608.03990 Computational Engineering, Finance, and Science +1608.04384 Solar and Stellar Astrophysics +1608.04865 Mesoscale and Nanoscale Physics +1608.05484 +1608.06228 +1608.06333 Materials Science +1608.07201 +1608.07267 Instrumentation and Detectors +1608.07756 Quantum Gases +1608.07905 Computation and Language +1608.08532 General Physics +1609.00356 +1609.01274 Pricing of Securities +1609.01491 Software Engineering +1609.01528 Analysis of PDEs +1609.01621 Mathematical Finance +1609.02373 Plasma Physics +1609.02465 +1609.02998 Plasma Physics +1609.03005 +1609.03235 Phenomenology +1609.03243 Geophysics +1609.03334 Lattice +1609.03835 +1609.04175 Atomic Physics +1609.04220 Computational Physics +1609.04382 Computer Vision and Pattern Recognition +1609.04910 Probability +1609.05146 Analysis of PDEs +1609.05404 Optimization and Control +1609.06302 Multimedia +1609.07021 +1609.07337 Analysis of PDEs +1609.07859 Computer Vision and Pattern Recognition +1609.08360 +1609.08541 Lattice +1609.09583 Strongly Correlated Electrons +1609.09670 Representation Theory +1609.09840 Data Structures and Algorithms +1610.00127 Cryptography and Security +1610.00287 Methodology +1610.00327 Computer Science and Game Theory +1610.00426 Phenomenology +1610.00489 Quantum Gases +1610.00646 +1610.01145 Learning +1610.01222 Materials Science +1610.01275 Algebraic Geometry +1610.01408 Differential Geometry +1610.01587 Social and Information Networks +1610.02553 Probability +1610.02592 Geometric Topology +1610.02734 Dynamical Systems +1610.02975 Representation Theory +1610.02991 Computers and Society +1610.03016 Numerical Analysis +1610.03259 Risk Management +1610.03379 Functional Analysis +1610.03661 +1610.04033 Geometric Topology +1610.04101 Probability +1610.04619 Strongly Correlated Electrons +1610.04900 Learning +1610.05237 Phenomenology +1610.05638 Theory +1610.05753 +1610.06158 Phenomenology +1610.06653 Soft Condensed Matter +1610.06680 Analysis of PDEs +1610.06940 Artificial Intelligence +1610.07059 Phenomenology +1610.07101 Probability +1610.07278 Quantitative Methods +1610.07414 Superconductivity +1610.07512 Materials Science +1610.07660 Classical Analysis and ODEs +1610.07876 General Physics +1610.08173 Information Theory +1610.08243 Chemical Physics +1610.08255 Rings and Algebras +1610.08345 Classical Analysis and ODEs +1610.08564 +1610.08722 Social and Information Networks +1610.08795 Methodology +1610.09077 Information Retrieval +1610.09325 Fluid Dynamics +1610.09337 Mesoscale and Nanoscale Physics +1610.09403 Trading and Market Microstructure +1610.09423 Genomics +1610.09432 Optimization and Control +1610.09536 Subcellular Processes +1610.09620 Differential Geometry +1610.09638 Information Theory +1610.09675 Dynamical Systems +1610.09751 Probability +1610.10052 Complex Variables +1610.10075 Strongly Correlated Electrons +1611.00074 Differential Geometry +1611.00172 Social and Information Networks +1611.00177 Commutative Algebra +1611.00256 Combinatorics +1611.00294 Neurons and Cognition +1611.00333 Analysis of PDEs +1611.00344 Lattice +1611.00481 Learning +1611.00736 Neural and Evolutionary Computing +1611.00918 Data Structures and Algorithms +1611.00980 Optimization and Control +1611.00999 Cosmology and Nongalactic Astrophysics +1611.01029 Computational Complexity +1611.01048 Probability +1611.01114 Genomics +1611.01119 Statistics Theory +1611.01125 Statistics Theory +1611.01132 Complex Variables +1611.01152 Human-Computer Interaction +1611.01163 Quantum Gases +1611.01189 +1611.01277 Experiment +1611.01318 Numerical Analysis +1611.01511 Machine Learning +1611.01512 Strongly Correlated Electrons +1611.01513 Astrophysics of Galaxies +1611.01517 Phenomenology +1611.01520 Superconductivity +1611.01523 Discrete Mathematics +1611.01524 Portfolio Management +1611.01525 Information Theory +1611.01527 Phenomenology +1611.01528 Theory +1611.01529 Networking and Internet Architecture +1611.01530 Probability +1611.01532 Superconductivity +1611.01534 Mathematical Software +1611.01535 Applications +1611.01536 Lattice +1611.01537 Mesoscale and Nanoscale Physics +1611.01542 Combinatorics +1611.01543 Functional Analysis +1611.01544 Phenomenology +1611.01545 Cosmology and Nongalactic Astrophysics +1611.01546 Databases +1611.01549 Human-Computer Interaction +1611.01550 Numerical Analysis +1611.01551 Differential Geometry +1611.01554 Differential Geometry +1611.01555 Mesoscale and Nanoscale Physics +1611.01558 Optimization and Control +1611.01559 Combinatorics +1611.01561 Probability +1611.01562 Rings and Algebras +1611.01563 Analysis of PDEs +1611.01564 Statistics Theory +1611.01565 Probability +1611.01567 Optics +1611.01568 Disordered Systems and Neural Networks +1611.01569 Data Structures and Algorithms +1611.01570 Combinatorics +1611.01573 Dynamical Systems +1611.01575 +1611.01579 Information Theory +1611.01581 Algebraic Geometry +1611.01582 Information Theory +1611.01585 Discrete Mathematics +1611.01586 Learning +1611.01591 Algebraic Geometry +1611.01593 Functional Analysis +1611.01595 Statistics Theory +1611.01597 Numerical Analysis +1611.01598 Distributed, Parallel, and Cluster Computing +1611.01601 Theory +1611.01605 Metric Geometry +1611.01606 Learning +1611.01607 Information Theory +1611.01609 Combinatorics +1611.01614 +1611.01615 Metric Geometry +1611.01616 Solar and Stellar Astrophysics +1611.01618 Combinatorics +1611.01621 Number Theory +1611.01622 Optics +1611.01624 Analysis of PDEs +1611.01625 Algebraic Geometry +1611.01627 Analysis of PDEs +1611.01630 Functional Analysis +1611.01631 Functional Analysis +1611.01632 Operator Algebras +1611.01633 Operator Algebras +1611.01634 Group Theory +1611.01636 Algebraic Geometry +1611.01640 Computer Vision and Pattern Recognition +1611.01641 Dynamical Systems +1611.01642 Computer Vision and Pattern Recognition +1611.01643 Neurons and Cognition +1611.01644 Data Structures and Algorithms +1611.01646 Computer Vision and Pattern Recognition +1611.01648 Logic +1611.01650 Cosmology and Nongalactic Astrophysics +1611.01651 Dynamical Systems +1611.01652 Neural and Evolutionary Computing +1611.01654 Category Theory +1611.01657 Combinatorics +1611.01658 Digital Libraries +1611.01659 Data Analysis, Statistics and Probability +1611.01660 Fluid Dynamics +1611.01661 Computational Geometry +1611.01662 Astrophysics of Galaxies +1611.01663 Analysis of PDEs +1611.01664 +1611.01665 Differential Geometry +1611.01668 Geometric Topology +1611.01669 Algebraic Geometry +1611.01674 Algebraic Geometry +1611.01675 Methodology +1611.01677 Materials Science +1611.01678 Learning +1611.01679 Atomic Physics +1611.01681 Probability +1611.01683 Cryptography and Security +1611.01684 Solar and Stellar Astrophysics +1611.01686 Probability +1611.01688 Learning +1611.01690 Distributed, Parallel, and Cluster Computing +1611.01691 Quantum Gases +1611.01692 Genomics +1611.01695 Geophysics +1611.01696 Logic in Computer Science +1611.01698 Information Theory +1611.01706 Computational Complexity +1611.01707 Differential Geometry +1611.01709 Astrophysics of Galaxies +1611.01711 Databases +1611.01714 Learning +1611.01717 Earth and Planetary Astrophysics +1611.01718 Number Theory +1611.01719 Materials Science +1611.01720 Number Theory +1611.01723 Probability +1611.01724 Computation and Language +1611.01726 Cryptography and Security +1611.01728 +1611.01729 Networking and Internet Architecture +1611.01730 Computer Vision and Pattern Recognition +1611.01731 Computer Vision and Pattern Recognition +1611.01733 High Energy Astrophysical Phenomena +1611.01735 Combinatorics +1611.01736 Representation Theory +1611.01737 Superconductivity +1611.01741 Group Theory +1611.01745 +1611.01747 Computation and Language +1611.01751 Computer Vision and Pattern Recognition +1611.01752 Programming Languages +1611.01754 Cryptography and Security +1611.01755 Combinatorics +1611.01758 Theory +1611.01761 Systems and Control +1611.01763 Analysis of PDEs +1611.01765 Graphics +1611.01766 Astrophysics of Galaxies +1611.01767 Economics +1611.01768 +1611.01769 Data Structures and Algorithms +1611.01771 Economics +1611.01774 Biological Physics +1611.01776 Materials Science +1611.01777 +1611.01778 Data Structures and Algorithms +1611.01782 Probability +1611.01783 Computation and Language +1611.01784 Representation Theory +1611.01786 Information Theory +1611.01789 +1611.01792 Chemical Physics +1611.01793 Pattern Formation and Solitons +1611.01794 Instrumentation and Detectors +1611.01796 Learning +1611.01797 +1611.01799 Learning +1611.01800 Differential Geometry +1611.01801 Other Computer Science +1611.01804 Algebraic Geometry +1611.01805 Data Structures and Algorithms +1611.01807 Geometric Topology +1611.01808 Differential Geometry +1611.01809 Algebraic Geometry +1611.01810 Theory +1611.01813 +1611.01814 Optics +1611.01815 +1611.01817 Human-Computer Interaction +1611.01818 Combinatorics +1611.01820 Digital Libraries +1611.01821 Representation Theory +1611.01825 Systems and Control +1611.01826 Instrumentation and Methods for Astrophysics +1611.01827 Systems and Control +1611.01828 Optimization and Control +1611.01829 Functional Analysis +1611.01830 Functional Analysis +1611.01831 Applications +1611.01833 Probability +1611.01835 Data Structures and Algorithms +1611.01836 Populations and Evolution +1611.01837 Probability +1611.01841 Algebraic Geometry +1611.01842 Populations and Evolution +1611.01844 Astrophysics of Galaxies +1611.01845 Machine Learning +1611.01849 Physics and Society +1611.01851 Robotics +1611.01853 Databases +1611.01855 Artificial Intelligence +1611.01857 Geometric Topology +1611.01860 Probability +1611.01863 High Energy Astrophysical Phenomena +1611.01865 Information Theory +1611.01866 Formal Languages and Automata Theory +1611.01867 Computation and Language +1611.01868 Computation and Language +1611.01869 Information Theory +1611.01870 Phenomenology +1611.01872 Computer Vision and Pattern Recognition +1611.01875 Learning +1611.01877 Differential Geometry +1611.01878 Atomic Physics +1611.01887 Information Theory +1611.01888 Theory +1611.01889 Space Physics +1611.01891 Machine Learning +1611.01894 Other Condensed Matter +1611.01895 Optics +1611.01896 Complex Variables +1611.01897 Chemical Physics +1611.01902 Differential Geometry +1611.01904 Combinatorics +1611.01905 Classical Analysis and ODEs +1611.01907 Cryptography and Security +1611.01908 Analysis of PDEs +1611.01909 Analysis of PDEs +1611.01912 Neurons and Cognition +1611.01913 +1611.01915 Commutative Algebra +1611.01916 Chemical Physics +1611.01919 Databases +1611.01920 Algebraic Topology +1611.01921 Number Theory +1611.01924 Algebraic Geometry +1611.01925 Phenomenology +1611.01926 Rings and Algebras +1611.01930 Differential Geometry +1611.01931 Algebraic Geometry +1611.01936 Combinatorics +1611.01937 Rings and Algebras +1611.01939 Information Theory +1611.01940 Commutative Algebra +1611.01941 Combinatorics +1611.01942 Learning +1611.01943 Statistical Mechanics +1611.01945 History and Overview +1611.01949 Number Theory +1611.01952 Atomic Physics +1611.01956 Soft Condensed Matter +1611.01959 +1611.01961 Astrophysics of Galaxies +1611.01962 Computer Vision and Pattern Recognition +1611.01963 Fluid Dynamics +1611.01964 Learning +1611.01966 Algebraic Geometry +1611.01969 Information Theory +1611.01972 Computer Vision and Pattern Recognition +1611.01977 Analysis of PDEs +1611.01979 +1611.01980 Soft Condensed Matter +1611.01981 Strongly Correlated Electrons +1611.01984 Analysis of PDEs +1611.01985 Distributed, Parallel, and Cluster Computing +1611.01987 Lattice +1611.01990 Graphics +1611.01991 Soft Condensed Matter +1611.01992 Quantum Algebra +1611.01993 Statistical Mechanics +1611.01995 Atomic Physics +1611.01996 Differential Geometry +1611.01997 Analysis of PDEs +1611.01998 Mesoscale and Nanoscale Physics +1611.01999 Number Theory +1611.02000 High Energy Astrophysical Phenomena +1611.02001 Networking and Internet Architecture +1611.02002 Discrete Mathematics +1611.02003 Dynamical Systems +1611.02005 Probability +1611.02006 Atomic Physics +1611.02007 Computation and Language +1611.02008 Probability +1611.02009 Lattice +1611.02010 Machine Learning +1611.02011 Dynamical Systems +1611.02012 Combinatorics +1611.02014 Dynamical Systems +1611.02015 Cryptography and Security +1611.02018 Spectral Theory +1611.02019 Learning +1611.02020 Dynamical Systems +1611.02021 Combinatorics +1611.02022 Lattice +1611.02023 Analysis of PDEs +1611.02025 Computation and Language +1611.02026 Pricing of Securities +1611.02027 Computation and Language +1611.02028 Strongly Correlated Electrons +1611.02030 Cosmology and Nongalactic Astrophysics +1611.02031 Medical Physics +1611.02034 Representation Theory +1611.02037 Mesoscale and Nanoscale Physics +1611.02040 Differential Geometry +1611.02042 Combinatorics +1611.02044 Geophysics +1611.02045 Numerical Analysis +1611.02047 Learning +1611.02048 Probability +1611.02049 Robotics +1611.02052 Systems and Control +1611.02053 Learning +1611.02054 Robotics +1611.02056 Analysis of PDEs +1611.02058 Analysis of PDEs +1611.02060 Algebraic Geometry +1611.02061 Robotics +1611.02062 Information Theory +1611.02063 Discrete Mathematics +1611.02067 Differential Geometry +1611.02068 Numerical Analysis +1611.02069 Quantum Algebra +1611.02070 Representation Theory +1611.02071 Systems and Control +1611.02072 Systems and Control +1611.02075 Statistical Mechanics +1611.02078 Lattice +1611.02080 Mesoscale and Nanoscale Physics +1611.02081 Quantum Gases +1611.02082 Number Theory +1611.02084 Dynamical Systems +1611.02087 Algebraic Geometry +1611.02088 Computational Physics +1611.02089 Differential Geometry +1611.02092 Algebraic Geometry +1611.02095 Differential Geometry +1611.02098 High Energy Astrophysical Phenomena +1611.02100 Theory +1611.02103 High Energy Astrophysical Phenomena +1611.02111 Number Theory +1611.02113 Cosmology and Nongalactic Astrophysics +1611.02114 Computational Physics +1611.02117 Networking and Internet Architecture +1611.02118 Computers and Society +1611.02119 Information Retrieval +1611.02120 Neural and Evolutionary Computing +1611.02121 Superconductivity +1611.02123 Soft Condensed Matter +1611.02124 +1611.02125 Analysis of PDEs +1611.02126 Artificial Intelligence +1611.02128 Algebraic Geometry +1611.02129 Chemical Physics +1611.02133 Functional Analysis +1611.02134 Superconductivity +1611.02135 +1611.02139 Cosmology and Nongalactic Astrophysics +1611.02140 Soft Condensed Matter +1611.02142 Combinatorics +1611.02143 Fluid Dynamics +1611.02144 Mesoscale and Nanoscale Physics +1611.02145 Computer Vision and Pattern Recognition +1611.02147 Graphics +1611.02148 Chemical Physics +1611.02153 Instrumentation and Detectors +1611.02154 Artificial Intelligence +1611.02155 Computer Vision and Pattern Recognition +1611.02156 +1611.02157 Statistical Mechanics +1611.02159 Instrumentation and Detectors +1611.02160 Probability +1611.02161 Solar and Stellar Astrophysics +1611.02164 Numerical Analysis +1611.02165 Probability +1611.02169 Mesoscale and Nanoscale Physics +1611.02171 Atomic and Molecular Clusters +1611.02173 Superconductivity +1611.02174 Computer Vision and Pattern Recognition +1611.02175 Solar and Stellar Astrophysics +1611.02176 +1611.02177 Systems and Control +1611.02178 Statistical Mechanics +1611.02181 Machine Learning +1611.02184 +1611.02188 Functional Analysis +1611.02189 Learning +1611.02192 Phenomenology +1611.02194 Analysis of PDEs +1611.02196 Earth and Planetary Astrophysics +1611.02198 Quantum Gases +1611.02199 Methodology +1611.02200 Computer Vision and Pattern Recognition +1611.02202 Computational Physics +1611.02203 Mesoscale and Nanoscale Physics +1611.02204 Logic +1611.02206 +1611.02207 Fluid Dynamics +1611.02208 Probability +1611.02209 Operator Algebras +1611.02210 Algebraic Geometry +1611.02211 Category Theory +1611.02212 Superconductivity +1611.02213 Computation +1611.02214 Differential Geometry +1611.02215 +1611.02216 Combinatorics +1611.02217 Number Theory +1611.02218 Metric Geometry +1611.02219 Numerical Analysis +1611.02220 Mesoscale and Nanoscale Physics +1611.02222 Mesoscale and Nanoscale Physics +1611.02224 Experiment +1611.02231 Combinatorics +1611.02233 Combinatorics +1611.02235 Exactly Solvable and Integrable Systems +1611.02240 +1611.02241 Methodology +1611.02242 Materials Science +1611.02246 Combinatorics +1611.02248 Exactly Solvable and Integrable Systems +1611.02249 Category Theory +1611.02251 Analysis of PDEs +1611.02252 Learning +1611.02253 +1611.02255 +1611.02256 Computational Engineering, Finance, and Science +1611.02257 Information Theory +1611.02259 Optics +1611.02260 Computer Vision and Pattern Recognition +1611.02263 +1611.02268 Learning +1611.02270 Economics +alg-geom/9703001 Algebraic Geometry +alg-geom/9709034 Algebraic Geometry +math/0002073 Combinatorics +math/0103181 Combinatorics +math/0106255 Combinatorics +math/0107155 Combinatorics +math/0109147 Combinatorics +math/0111246 Combinatorics +math/0202071 Combinatorics +math/0302278 Combinatorics +math/0304191 Combinatorics +math/0310016 Combinatorics +math/0502082 Combinatorics +math/0505612 Commutative Algebra +math/0505614 Representation Theory +math/0509265 Combinatorics +math/0612170 Rings and Algebras +math/9712256 Combinatorics +math/9712258 Combinatorics +math/9809126 Combinatorics +math/9810025 Combinatorics +math/9904105 Combinatorics +q-alg/9612012 Quantum Algebra +0806.2350 Probability +0809.2207 Optics +0809.3267 Optics +0810.0550 +0810.0592 Optics +0810.3113 Materials Science +0812.1001 Optics +0904.2679 Optics +0906.4608 Optics +0907.1870 Optics +0907.2217 +0910.2670 Optics +0910.5345 Strongly Correlated Electrons +0910.5716 Optics +0911.0636 Optics +1001.3298 High Energy Astrophysical Phenomena +1001.3889 +1001.3904 Optics +1004.0037 +1004.2340 Optics +1004.2405 Optics +1004.2549 Optics +1004.5305 Optics +1005.1470 Optics +1005.3520 Pattern Formation and Solitons +1005.4474 High Energy Astrophysical Phenomena +1007.1142 High Energy Astrophysical Phenomena +1007.5375 +1008.0896 Optics +1010.6287 +1012.1431 Optics +1012.1487 +1103.2842 Optics +1104.2430 Optics +1105.4020 Optics +1106.3024 +1108.4819 Optics +1109.1899 Optics +1109.4796 +1109.5895 Algebraic Geometry +1110.1707 Optics +1112.5175 Optics +1202.1052 Pattern Formation and Solitons +1204.2283 Optics +1204.4772 Optics +1207.0683 Optics +1208.4123 +1209.4823 Optics +1210.1009 +1210.1149 Fluid Dynamics +1210.5250 Optics +1212.6293 Mesoscale and Nanoscale Physics +1301.3515 Optics +1302.1918 +1302.5927 Optics +1302.6708 Combinatorics +1303.0544 Optics +1303.2127 Optics +1303.5028 Optics +1303.6205 Optics +1303.7174 Atomic Physics +1304.0097 Optics +1304.1031 Optics +1304.3469 Optics +1304.3511 +1304.4442 Optics +1304.7513 Pattern Formation and Solitons +1304.7999 Combinatorics +1305.2511 Optics +1305.3706 Information Theory +1305.4921 Optics +1305.5167 Pattern Formation and Solitons +1305.6460 +1305.7142 Phenomenology +1307.2311 Optics +1307.4246 Algebraic Geometry +1308.2117 Optics +1308.3653 Phenomenology +1308.6644 Optics +1309.3361 Geometric Topology +1309.5179 Biological Physics +1309.7563 Medical Physics +1310.1727 Optics +1310.7055 Probability +1311.2298 Combinatorics +1311.3064 Social and Information Networks +1402.4278 Dynamical Systems +1402.4721 Number Theory +1402.5122 Representation Theory +1402.5400 Combinatorics +1404.0339 Discrete Mathematics +1404.5132 Mesoscale and Nanoscale Physics +1404.5432 Discrete Mathematics +1404.6647 Probability +1404.7720 Mesoscale and Nanoscale Physics +1404.7730 +1405.5037 Atomic Physics +1406.3592 Quantum Gases +1406.5553 Probability +1407.6121 Atomic Physics +1408.0199 Theory +1408.0221 History and Philosophy of Physics +1408.3156 Phenomenology +1408.3921 Algebraic Topology +1408.5665 Phenomenology +1409.0393 Programming Languages +1409.0992 +1409.6909 Dynamical Systems +1410.5096 Commutative Algebra +1410.5691 Quantum Gases +1410.8479 Optimization and Control +1411.4397 +1411.6071 Group Theory +1411.6716 Statistics Theory +1411.7036 Quantum Gases +1412.0577 Atomic Physics +1412.1646 +1412.2717 Optics +1412.5271 +1412.7776 Optics +1501.01738 Analysis of PDEs +1501.06995 Soft Condensed Matter +1501.07404 Computational Finance +1501.07515 Group Theory +1501.07715 Mesoscale and Nanoscale Physics +1502.00331 Statistical Mechanics +1502.00805 Atmospheric and Oceanic Physics +1502.01492 Optics +1502.01841 Theory +1502.01879 Optics +1502.03226 Materials Science +1502.03733 Numerical Analysis +1502.06083 Optics +1502.06116 High Energy Astrophysical Phenomena +1502.06546 Algebraic Geometry +1502.06705 Solar and Stellar Astrophysics +1502.07329 Algebraic Geometry +1502.07623 Algebraic Geometry +1502.07722 Optics +1502.07899 Probability +1503.00057 Optics +1503.02716 Analysis of PDEs +1503.03609 Optics +1503.04243 Algebraic Geometry +1503.04551 Chaotic Dynamics +1503.04735 +1503.07164 Astrophysics of Galaxies +1503.07314 Algebraic Topology +1503.08654 Optics +1504.00106 Theory +1504.01609 Numerical Analysis +1504.01905 Algebraic Geometry +1504.02038 Optics +1505.00488 +1505.01034 Optimization and Control +1505.01076 Cosmology and Nongalactic Astrophysics +1505.01463 +1505.01812 Number Theory +1505.02660 Optics +1505.03011 Statistical Mechanics +1505.03071 Solar and Stellar Astrophysics +1505.03704 Earth and Planetary Astrophysics +1505.03903 +1505.05404 Information Theory +1505.06618 +1505.07871 Theory +1506.00507 Classical Analysis and ODEs +1506.00858 Artificial Intelligence +1506.01288 Analysis of PDEs +1506.02398 Phenomenology +1506.02885 Astrophysics of Galaxies +1506.03348 Optics +1506.03502 Quantum Gases +1506.03794 Fluid Dynamics +1506.04185 Instrumentation and Detectors +1506.05130 Phenomenology +1506.06280 Materials Science +1506.08257 Algebraic Geometry +1506.08741 Differential Geometry +1507.01997 Instrumentation and Detectors +1507.02558 Computer Vision and Pattern Recognition +1507.03088 Soft Condensed Matter +1507.04468 Statistical Mechanics +1507.04636 Algebraic Geometry +1507.05050 Populations and Evolution +1507.05303 Representation Theory +1507.05393 Algebraic Geometry +1507.05417 Solar and Stellar Astrophysics +1507.06399 Quantum Gases +1507.06624 Lattice +1507.06751 Atomic Physics +1507.06797 +1507.06825 Atomic Physics +1507.07005 Theory +1507.08731 Superconductivity +1507.08732 Superconductivity +1508.00436 Methodology +1508.00825 Superconductivity +1508.01390 Astrophysics of Galaxies +1508.01744 Materials Science +1508.02309 Subcellular Processes +1508.02654 Cosmology and Nongalactic Astrophysics +1508.03214 +1508.03608 High Energy Astrophysical Phenomena +1508.03786 Cosmology and Nongalactic Astrophysics +1508.04620 Combinatorics +1508.05129 Atomic Physics +1508.05354 Instrumentation and Methods for Astrophysics +1508.05675 Phenomenology +1508.06907 Statistical Mechanics +1508.06978 +1508.07940 Algebraic Geometry +1509.00265 +1509.00678 Soft Condensed Matter +1509.01987 Information Theory +1509.02033 Mesoscale and Nanoscale Physics +1509.02942 Theory +1509.03673 Strongly Correlated Electrons +1509.04060 Phenomenology +1509.04095 Quantum Gases +1509.04480 +1509.05049 Phenomenology +1509.05130 Quantum Gases +1509.06340 Theory +1509.06940 Experiment +1509.06977 Analysis of PDEs +1509.07527 Probability +1509.07546 Solar and Stellar Astrophysics +1509.07938 Phenomenology +1509.08072 Theory +1509.08522 High Energy Astrophysical Phenomena +1509.08943 Statistical Mechanics +1509.09132 Physics and Society +1510.00007 +1510.00085 +1510.01469 +1510.01664 Experiment +1510.01759 +1510.01977 Logic +1510.02024 Solar and Stellar Astrophysics +1510.02964 Algebraic Geometry +1510.03249 Optimization and Control +1510.03330 Strongly Correlated Electrons +1510.03443 Phenomenology +1510.03904 +1510.04022 +1510.04688 Phenomenology +1510.04699 +1510.04704 Strongly Correlated Electrons +1510.05251 Mesoscale and Nanoscale Physics +1510.05686 Other Condensed Matter +1510.05691 Theory +1510.05770 Classical Analysis and ODEs +1510.05823 Lattice +1510.06417 +1510.06477 Mesoscale and Nanoscale Physics +1510.06551 Mesoscale and Nanoscale Physics +1510.06820 +1510.07039 Theory +1510.07574 Instrumentation and Methods for Astrophysics +1510.07632 Astrophysics of Galaxies +1510.07650 Theory +1510.08096 Strongly Correlated Electrons +1510.08161 Pricing of Securities +1510.08670 Differential Geometry +1510.08799 Instrumentation and Detectors +1510.08969 Logic +1511.00902 Theory +1511.01338 General Physics +1511.01760 Mesoscale and Nanoscale Physics +1511.01827 Phenomenology +1511.01900 Phenomenology +1511.02169 +1511.02257 Instrumentation and Detectors +1511.02797 Phenomenology +1511.03240 Computer Vision and Pattern Recognition +1511.03548 Phenomenology +1511.03657 +1511.03994 Solar and Stellar Astrophysics +1511.04081 Phenomenology +1511.04196 Computer Vision and Pattern Recognition +1511.04294 Lattice +1511.04678 Probability +1511.04937 Number Theory +1511.05197 Computer Vision and Pattern Recognition +1511.05282 Mesoscale and Nanoscale Physics +1511.05901 Statistical Mechanics +1511.05923 Phenomenology +1511.05967 Phenomenology +1511.06062 Computer Vision and Pattern Recognition +1511.06065 Robotics +1511.06088 Statistical Mechanics +1511.06234 +1511.06347 Phenomenology +1511.06358 Theory +1511.06466 Phenomenology +1511.06583 Solar and Stellar Astrophysics +1511.07277 +1511.07380 Phenomenology +1511.07700 Solar and Stellar Astrophysics +1511.07752 Instrumentation and Detectors +1511.08060 Computers and Society +1511.08315 Mesoscale and Nanoscale Physics +1511.08339 Earth and Planetary Astrophysics +1511.08461 Phenomenology +1511.08716 Superconductivity +1511.08978 Mesoscale and Nanoscale Physics +1511.08989 Mesoscale and Nanoscale Physics +1511.09144 Disordered Systems and Neural Networks +1511.09268 +1512.00059 +1512.00089 Statistical Mechanics +1512.00168 Distributed, Parallel, and Cluster Computing +1512.00270 Instrumentation and Methods for Astrophysics +1512.01254 Lattice +1512.01740 Mesoscale and Nanoscale Physics +1512.01838 +1512.01929 Statistical Mechanics +1512.02198 +1512.02210 Phenomenology +1512.02226 Phenomenology +1512.02767 Computer Vision and Pattern Recognition +1512.03111 +1512.03249 Mesoscale and Nanoscale Physics +1512.03321 Solar and Stellar Astrophysics +1512.03413 Mesoscale and Nanoscale Physics +1512.03530 Astrophysics of Galaxies +1512.03684 +1512.04083 Category Theory +1512.04108 Computational Geometry +1512.04130 Mesoscale and Nanoscale Physics +1512.04705 Strongly Correlated Electrons +1512.04816 Cosmology and Nongalactic Astrophysics +1512.04877 Statistical Mechanics +1512.04966 High Energy Astrophysical Phenomena +1512.05357 Phenomenology +1512.05615 Fluid Dynamics +1512.05763 Mesoscale and Nanoscale Physics +1512.05847 Strongly Correlated Electrons +1512.05856 Mesoscale and Nanoscale Physics +1512.06057 Mesoscale and Nanoscale Physics +1512.06405 Theory +1512.06569 Theory +1512.06594 Phenomenology +1512.06666 Phenomenology +1512.06671 Phenomenology +1512.06716 Quantum Gases +1512.06746 Lattice +1512.06927 Learning +1512.06974 Computer Vision and Pattern Recognition +1512.07096 Solar and Stellar Astrophysics +1512.07185 Differential Geometry +1512.07218 Materials Science +1512.07228 High Energy Astrophysical Phenomena +1512.07261 Strongly Correlated Electrons +1512.07281 Social and Information Networks +1512.07453 +1512.07554 Theory +1512.07624 Phenomenology +1512.07835 +1512.08340 Soft Condensed Matter +1512.08450 Mesoscale and Nanoscale Physics +1512.08513 High Energy Astrophysical Phenomena +1512.09021 Theory +1512.09296 Algebraic Geometry +1601.00001 Mesoscale and Nanoscale Physics +1601.00553 Rings and Algebras +1601.00761 Plasma Physics +1601.00952 Phenomenology +1601.01353 Earth and Planetary Astrophysics +1601.01384 +1601.01574 Phenomenology +1601.01662 +1601.01777 Superconductivity +1601.02063 High Energy Astrophysical Phenomena +1601.03371 Instrumentation and Detectors +1601.03752 Number Theory +1601.04212 +1601.04226 Astrophysics of Galaxies +1601.04390 Solar and Stellar Astrophysics +1601.04617 Solar and Stellar Astrophysics +1601.04651 Materials Science +1601.05021 Theory +1601.05397 Solar and Stellar Astrophysics +1601.05729 Phenomenology +1601.05771 Phenomenology +1601.06067 Atomic Physics +1601.06074 High Energy Astrophysical Phenomena +1601.06154 Mesoscale and Nanoscale Physics +1601.06506 +1601.06543 Analysis of PDEs +1601.06686 Information Theory +1601.06727 +1601.06748 Networking and Internet Architecture +1601.07155 Lattice +1601.07535 Earth and Planetary Astrophysics +1601.07567 Astrophysics of Galaxies +1601.07762 Solar and Stellar Astrophysics +1601.07782 Phenomenology +1601.07922 +1601.08048 Soft Condensed Matter +1602.00088 Statistical Mechanics +1602.00134 Computer Vision and Pattern Recognition +1602.00235 Mathematical Finance +1602.00292 Earth and Planetary Astrophysics +1602.00485 +1602.00504 +1602.00533 High Energy Astrophysical Phenomena +1602.00601 Statistical Mechanics +1602.00887 Solar and Stellar Astrophysics +1602.00918 Mesoscale and Nanoscale Physics +1602.01165 Plasma Physics +1602.01166 Strongly Correlated Electrons +1602.01220 Mesoscale and Nanoscale Physics +1602.01426 Lattice +1602.01615 Solar and Stellar Astrophysics +1602.01723 Quantum Gases +1602.01985 Astrophysics of Galaxies +1602.02017 Phenomenology +1602.02062 Phenomenology +1602.02095 Strongly Correlated Electrons +1602.02189 Solar and Stellar Astrophysics +1602.02363 High Energy Astrophysical Phenomena +1602.02604 Atomic and Molecular Clusters +1602.02975 Mesoscale and Nanoscale Physics +1602.03099 High Energy Astrophysical Phenomena +1602.03141 Materials Science +1602.03185 High Energy Astrophysical Phenomena +1602.03486 Number Theory +1602.03628 Solar and Stellar Astrophysics +1602.03743 General Physics +1602.03826 Phenomenology +1602.04022 Mesoscale and Nanoscale Physics +1602.04132 Solar and Stellar Astrophysics +1602.04180 High Energy Astrophysical Phenomena +1602.04437 Solar and Stellar Astrophysics +1602.04665 Solar and Stellar Astrophysics +1602.04755 Earth and Planetary Astrophysics +1602.04772 Astrophysics of Galaxies +1602.04820 Solar and Stellar Astrophysics +1602.04865 High Energy Astrophysical Phenomena +1602.05002 Phenomenology +1602.05017 Phenomenology +1602.05252 Solar and Stellar Astrophysics +1602.05300 Phenomenology +1602.05652 Biological Physics +1602.05932 Solar and Stellar Astrophysics +1602.05986 Computation +1602.06788 Astrophysics of Galaxies +1602.07098 Earth and Planetary Astrophysics +1602.07367 Optics +1602.07701 High Energy Astrophysical Phenomena +1602.07719 Astrophysics of Galaxies +1602.07772 Astrophysics of Galaxies +1602.07792 Solar and Stellar Astrophysics +1602.07880 Astrophysics of Galaxies +1602.07954 High Energy Astrophysical Phenomena +1602.08390 Solar and Stellar Astrophysics +1602.08582 Instrumentation and Methods for Astrophysics +1602.08868 Astrophysics of Galaxies +1602.08873 Representation Theory +1602.08892 Mesoscale and Nanoscale Physics +1602.08977 Solar and Stellar Astrophysics +1603.00042 Earth and Planetary Astrophysics +1603.00199 Solar and Stellar Astrophysics +1603.00348 Astrophysics of Galaxies +1603.00376 Earth and Planetary Astrophysics +1603.00474 Astrophysics of Galaxies +1603.00641 Solar and Stellar Astrophysics +1603.00714 Solar and Stellar Astrophysics +1603.00768 Solar and Stellar Astrophysics +1603.00965 High Energy Astrophysical Phenomena +1603.01069 Solar and Stellar Astrophysics +1603.01073 Pattern Formation and Solitons +1603.01565 Solar and Stellar Astrophysics +1603.01610 Astrophysics of Galaxies +1603.01858 Theory +1603.02170 Solar and Stellar Astrophysics +1603.02690 Solar and Stellar Astrophysics +1603.02724 Computational Complexity +1603.02875 Complex Variables +1603.03274 Earth and Planetary Astrophysics +1603.03353 High Energy Astrophysical Phenomena +1603.03804 +1603.04207 Solar and Stellar Astrophysics +1603.04403 High Energy Astrophysical Phenomena +1603.04435 Earth and Planetary Astrophysics +1603.04857 Earth and Planetary Astrophysics +1603.04975 Analysis of PDEs +1603.05096 Analysis of PDEs +1603.05137 High Energy Astrophysical Phenomena +1603.05309 Solar and Stellar Astrophysics +1603.05473 +1603.05882 Applications +1603.05899 Solar and Stellar Astrophysics +1603.05901 Human-Computer Interaction +1603.06039 +1603.07718 Algebraic Geometry +1603.08468 Phenomenology +1603.08608 Solar and Stellar Astrophysics +1603.08735 Human-Computer Interaction +1603.08749 Theory +1603.08949 Programming Languages +1603.09352 Earth and Planetary Astrophysics +1603.09512 Earth and Planetary Astrophysics +1604.00013 High Energy Astrophysical Phenomena +1604.00055 Physics and Society +1604.00172 +1604.00194 +1604.00220 Exactly Solvable and Integrable Systems +1604.00238 Quantum Gases +1604.00240 Instrumentation and Detectors +1604.00386 Space Physics +1604.00435 Astrophysics of Galaxies +1604.00643 High Energy Astrophysical Phenomena +1604.00817 +1604.00910 Mesoscale and Nanoscale Physics +1604.01045 Astrophysics of Galaxies +1604.01066 Optics +1604.01116 Data Structures and Algorithms +1604.01196 Mesoscale and Nanoscale Physics +1604.01324 +1604.01328 Phenomenology +1604.01648 Soft Condensed Matter +1604.01771 Phenomenology +1604.01796 Disordered Systems and Neural Networks +1604.01898 High Energy Astrophysical Phenomena +1604.02000 Instrumentation and Detectors +1604.02004 Materials Science +1604.02078 Quantum Algebra +1604.02088 Combinatorics +1604.02124 Materials Science +1604.02530 Exactly Solvable and Integrable Systems +1604.02623 Molecular Networks +1604.02713 Phenomenology +1604.02748 Computer Vision and Pattern Recognition +1604.02753 Combinatorics +1604.03014 Systems and Control +1604.03084 Computational Complexity +1604.03097 Pattern Formation and Solitons +1604.03098 Logic in Computer Science +1604.03099 Artificial Intelligence +1604.03100 Fluid Dynamics +1604.03101 Phenomenology +1604.03102 Instrumentation and Detectors +1604.03103 Instrumentation and Detectors +1604.03108 Phenomenology +1604.03114 Computation and Language +1604.03115 Combinatorics +1604.03123 +1604.03125 Mesoscale and Nanoscale Physics +1604.03130 Computers and Society +1604.03131 Cosmology and Nongalactic Astrophysics +1604.03132 Genomics +1604.03136 Computation and Language +1604.03137 Logic +1604.03140 Information Theory +1604.03142 Solar and Stellar Astrophysics +1604.03144 +1604.03145 +1604.03152 Dynamical Systems +1604.03153 Probability +1604.03154 Functional Analysis +1604.03158 Solar and Stellar Astrophysics +1604.03160 Computers and Society +1604.03161 Probability +1604.03162 Group Theory +1604.03165 Instrumentation and Methods for Astrophysics +1604.03166 Mesoscale and Nanoscale Physics +1604.03170 Spectral Theory +1604.03171 Learning +1604.03174 Cosmology and Nongalactic Astrophysics +1604.03175 Networking and Internet Architecture +1604.03176 Algebraic Geometry +1604.03178 Computer Science and Game Theory +1604.03181 Geometric Topology +1604.03182 +1604.03184 Software Engineering +1604.03186 Applications +1604.03187 Chaotic Dynamics +1604.03190 Optics +1604.03192 Methodology +1604.03193 Computer Vision and Pattern Recognition +1604.03200 Artificial Intelligence +1604.03204 Information Theory +1604.03208 +1604.03209 Computation and Language +1604.03210 Artificial Intelligence +1604.03211 Programming Languages +1604.03214 Databases +1604.03215 Digital Libraries +1604.03217 Networking and Internet Architecture +1604.03220 Graphics +1604.03221 Social and Information Networks +1604.03222 Systems and Control +1604.03223 Systems and Control +1604.03225 Computer Vision and Pattern Recognition +1604.03227 Computer Vision and Pattern Recognition +1604.03228 Distributed, Parallel, and Cluster Computing +1604.03230 Operator Algebras +1604.03232 Materials Science +1604.03234 Databases +1604.03235 Social and Information Networks +1604.03238 Rings and Algebras +1604.03239 Computer Vision and Pattern Recognition +1604.03241 Differential Geometry +1604.03242 Chemical Physics +1604.03244 Molecular Networks +1604.03245 Classical Analysis and ODEs +1604.03246 Networking and Internet Architecture +1604.03247 Computer Vision and Pattern Recognition +1604.03248 Learning +1604.03249 Computer Vision and Pattern Recognition +1604.03250 Genomics +1604.03258 Materials Science +1604.03259 Differential Geometry +1604.03260 Astrophysics of Galaxies +1604.03261 +1604.03262 Superconductivity +1604.03264 Analysis of PDEs +1604.03266 Learning +1604.03270 Formal Languages and Automata Theory +1604.03271 Strongly Correlated Electrons +1604.03275 Numerical Analysis +1604.03277 Neural and Evolutionary Computing +1604.03278 Machine Learning +1604.03280 Information Theory +1604.03283 Mesoscale and Nanoscale Physics +1604.03284 Analysis of PDEs +1604.03287 Category Theory +1604.03288 Combinatorics +1604.03289 +1604.03290 Earth and Planetary Astrophysics +1604.03293 +1604.03296 Information Theory +1604.03300 Rings and Algebras +1604.03301 Number Theory +1604.03306 Information Theory +1604.03310 Phenomenology +1604.03313 Cryptography and Security +1604.03314 Instrumentation and Detectors +1604.03317 Probability +1604.03318 Artificial Intelligence +1604.03319 Rings and Algebras +1604.03338 Materials Science +1604.03342 Dynamical Systems +1604.03347 Group Theory +1604.03348 Learning +1604.03351 Computer Vision and Pattern Recognition +1604.03354 Number Theory +1604.03356 Distributed, Parallel, and Cluster Computing +1604.03357 Computation and Language +1604.03358 Functional Analysis +1604.03359 Information Theory +1604.03362 Computational Geometry +1604.03363 +1604.03365 Dynamical Systems +1604.03366 Soft Condensed Matter +1604.03373 Machine Learning +1604.03379 Systems and Control +1604.03389 +1604.03392 Machine Learning +1604.03396 Networking and Internet Architecture +1604.03400 Numerical Analysis +1604.03402 Soft Condensed Matter +1604.03403 Earth and Planetary Astrophysics +1604.03404 Complex Variables +1604.03405 Exactly Solvable and Integrable Systems +1604.03406 Complex Variables +1604.03407 Materials Science +1604.03408 +1604.03410 Distributed, Parallel, and Cluster Computing +1604.03412 Astrophysics of Galaxies +1604.03413 Databases +1604.03415 Group Theory +1604.03418 Combinatorics +1604.03421 Algebraic Geometry +1604.03424 Systems and Control +1604.03426 Computer Vision and Pattern Recognition +1604.03427 Social and Information Networks +1604.03432 Information Theory +1604.03435 Networking and Internet Architecture +1604.03441 History and Philosophy of Physics +1604.03442 Mesoscale and Nanoscale Physics +1604.03443 Computer Vision and Pattern Recognition +1604.03446 Computers and Society +1604.03448 +1604.03449 General Physics +1604.03450 Data Analysis, Statistics and Probability +1604.03452 Logic +1604.03453 Software Engineering +1604.03458 Optimization and Control +1604.03460 Geometric Topology +1604.03461 Functional Analysis +1604.03466 Geometric Topology +1604.03470 Distributed, Parallel, and Cluster Computing +1604.03471 Logic in Computer Science +1604.03473 Representation Theory +1604.03477 Mesoscale and Nanoscale Physics +1604.03480 Applications +1604.03481 Mesoscale and Nanoscale Physics +1604.03482 Data Structures and Algorithms +1604.03483 Analysis of PDEs +1604.03492 Machine Learning +1604.03493 Probability +1604.03494 +1604.03498 Computer Vision and Pattern Recognition +1604.03499 Classical Analysis and ODEs +1604.03502 Differential Geometry +1604.03504 Differential Geometry +1604.03506 Information Retrieval +1604.03508 Information Theory +1604.03509 Number Theory +1604.03512 Social and Information Networks +1604.03513 Computer Vision and Pattern Recognition +1604.03518 Computer Vision and Pattern Recognition +1604.03523 Mesoscale and Nanoscale Physics +1604.03526 Robotics +1604.03529 Analysis of PDEs +1604.03537 Algebraic Geometry +1604.03539 Computer Vision and Pattern Recognition +1604.03540 Computer Vision and Pattern Recognition +1604.03541 Information Theory +1604.03544 Data Structures and Algorithms +1604.03545 Superconductivity +astro-ph/0110060 +astro-ph/0202231 +astro-ph/0205551 +astro-ph/0301107 +astro-ph/0301603 +astro-ph/0303517 +astro-ph/0304112 +cond-mat/0405413 Materials Science +hep-ph/0210298 Phenomenology +hep-th/9806009 Theory +hep-th/9808159 Theory +hep-th/9809190 Theory +hep-th/9812032 Theory +hep-th/9901064 Theory +hep-th/9903003 Theory +hep-th/9903007 Theory +hep-th/9903013 Theory +hep-th/9903030 Theory +hep-th/9904060 Theory +physics/0307129 Chemical Physics +physics/0608168 Atomic and Molecular Clusters +0710.1124 Classical Analysis and ODEs +0710.1127 Classical Analysis and ODEs +0811.4437 Number Theory +0903.0117 Classical Analysis and ODEs +0909.0979 Classical Analysis and ODEs +0909.1852 Combinatorics +0912.3227 Number Theory +0912.5358 Combinatorics +0912.5376 Number Theory +1002.2049 Commutative Algebra +1002.2054 Combinatorics +1008.4660 Combinatorics +1101.4831 Commutative Algebra +1103.5895 Combinatorics +1111.3852 Cosmology and Nongalactic Astrophysics +1201.1456 Adaptation and Self-Organizing Systems +1201.2860 +1203.4538 Commutative Algebra +1204.0629 Algebraic Geometry +1209.4559 Commutative Algebra +1305.5624 Probability +1306.3494 Statistics Theory +1306.6458 Sound +1307.2477 Statistical Mechanics +1307.6444 Algebraic Topology +1307.6884 Differential Geometry +1308.2812 +1308.5348 Classical Analysis and ODEs +1308.6767 Number Theory +1309.0906 Number Theory +1312.6001 Number Theory +1401.4537 Geometric Topology +1402.0133 Number Theory +1405.6693 Statistics Theory +1407.3819 Classical Analysis and ODEs +1408.1274 Physics and Society +1408.3616 Functional Analysis +1408.5309 Differential Geometry +1409.0942 Number Theory +1410.4781 Emerging Technologies +1410.7334 Materials Science +1412.5374 Information Theory +1412.5394 Combinatorics +1412.7863 Theory +1501.00973 High Energy Astrophysical Phenomena +1501.03519 Methodology +1501.04256 Number Theory +1501.04330 Systems and Control +1503.01175 Classical Analysis and ODEs +1504.00777 Analysis of PDEs +1504.01865 Methodology +1504.05079 Probability +1504.07056 Distributed, Parallel, and Cluster Computing +1504.07272 Learning +1505.01288 Mesoscale and Nanoscale Physics +1505.02003 Numerical Analysis +1505.04087 Fluid Dynamics +1505.05198 Optimization and Control +1505.05465 Algebraic Topology +1505.05549 Other Condensed Matter +1506.00743 Databases +1506.07099 Phenomenology +1507.00401 Representation Theory +1507.00466 Quantitative Methods +1507.03354 Computational Physics +1507.07607 Number Theory +1507.08658 +1508.00857 Theory +1508.02368 +1508.04707 Rings and Algebras +1509.00454 +1509.02649 Computer Vision and Pattern Recognition +1509.08824 Dynamical Systems +1509.09141 Lattice +1510.00048 High Energy Astrophysical Phenomena +1510.02587 Category Theory +1510.04015 Computer Science and Game Theory +1510.04967 Multiagent Systems +1510.08962 Representation Theory +1510.09088 Numerical Analysis +1511.02328 Spectral Theory +1511.05001 Differential Geometry +1511.05092 Differential Geometry +1511.06450 Theory +1511.07109 Other Condensed Matter +1511.07263 Data Structures and Algorithms +1511.07365 High Energy Astrophysical Phenomena +1511.08170 Quantum Gases +1512.00999 Combinatorics +1512.02188 Computer Vision and Pattern Recognition +1512.04769 +1512.06084 Cosmology and Nongalactic Astrophysics +1601.00176 Computer Science and Game Theory +1601.01737 Astrophysics of Galaxies +1601.01862 Analysis of PDEs +1601.02164 Operator Algebras +1601.04344 Analysis of PDEs +1601.04897 Combinatorics +1601.04945 Probability +1601.05495 Learning +1601.07320 +1601.07805 Algebraic Geometry +1602.01065 Distributed, Parallel, and Cluster Computing +1602.02893 Probability +1602.04685 +1602.06335 Other Quantitative Biology +1602.06659 Data Structures and Algorithms +1602.07433 Combinatorics +1602.07753 Atomic Physics +1602.08846 Materials Science +1603.01216 Quantitative Methods +1603.01233 Complex Variables +1603.02386 Category Theory +1603.02839 Learning +1603.04053 Experiment +1603.04190 Learning +1603.04486 Pattern Formation and Solitons +1603.04812 Information Theory +1603.05219 Superconductivity +1603.05239 Cosmology and Nongalactic Astrophysics +1603.05872 Probability +1603.07937 Dynamical Systems +1604.00537 Phenomenology +1604.01362 Solar and Stellar Astrophysics +1604.02094 Data Structures and Algorithms +1604.03726 Disordered Systems and Neural Networks +1604.04518 Phenomenology +1604.05288 Artificial Intelligence +1604.06463 Cosmology and Nongalactic Astrophysics +1604.08914 Cosmology and Nongalactic Astrophysics +1605.00127 +1605.00175 Strongly Correlated Electrons +1605.01190 Probability +1605.01195 Mesoscale and Nanoscale Physics +1605.01213 Molecular Networks +1605.03971 Astrophysics of Galaxies +1605.04852 Fluid Dynamics +1605.05928 +1605.06393 Phenomenology +1605.07752 Cosmology and Nongalactic Astrophysics +1605.08507 History and Philosophy of Physics +1605.09297 Chaotic Dynamics +1605.09560 Optimization and Control +1606.00556 Computational Engineering, Finance, and Science +1606.00576 Operator Algebras +1606.02522 Theory +1606.04326 Statistical Mechanics +1606.06688 +1606.08120 +1607.00784 Mesoscale and Nanoscale Physics +1607.00797 +1607.02151 Astrophysics of Galaxies +1607.02292 Optics +1607.02565 Computer Vision and Pattern Recognition +1607.05428 Optimization and Control +1607.06193 Materials Science +1607.06375 Soft Condensed Matter +1607.07717 Superconductivity +1607.07967 Databases +1608.01832 Optimization and Control +1608.02520 High Energy Astrophysical Phenomena +1608.02669 Materials Science +1608.04961 Machine Learning +1608.05088 +1608.05974 +1608.06934 History and Philosophy of Physics +1608.07481 Social and Information Networks +1609.01529 Optimization and Control +1609.01909 Logic +1609.02407 Optimization and Control +1609.03136 Data Structures and Algorithms +1609.03961 Optimization and Control +1609.04075 Atomic Physics +1609.04927 Mesoscale and Nanoscale Physics +1609.06150 Mesoscale and Nanoscale Physics +1609.06222 +1609.06243 Algebraic Topology +1609.06642 Astrophysics of Galaxies +1609.07326 Soft Condensed Matter +1609.07651 +1609.08377 Materials Science +1609.08940 +1609.09433 Data Structures and Algorithms +1609.09725 Probability +1609.09758 Computers and Society +1610.00011 Theory +1610.00012 Theory +1610.00672 Dynamical Systems +1610.00689 Artificial Intelligence +1610.00732 Machine Learning +1610.01239 Learning +1610.01266 Phenomenology +1610.01511 Networking and Internet Architecture +1610.01682 +1610.01733 Robotics +1610.01778 Software Engineering +1610.01812 +1610.01835 Theory +1610.01922 Artificial Intelligence +1610.01925 Computer Vision and Pattern Recognition +1610.01947 Instrumentation and Detectors +1610.01993 Physics and Society +1610.02004 Solar and Stellar Astrophysics +1610.02027 Instrumentation and Detectors +1610.02029 Instrumentation and Detectors +1610.02043 Phenomenology +1610.02047 Cosmology and Nongalactic Astrophysics +1610.02050 Systems and Control +1610.02051 Other Condensed Matter +1610.02053 Strongly Correlated Electrons +1610.02055 Computer Vision and Pattern Recognition +1610.02056 Data Structures and Algorithms +1610.02058 Materials Science +1610.02059 Group Theory +1610.02060 Social and Information Networks +1610.02062 Superconductivity +1610.02063 Combinatorics +1610.02065 Cryptography and Security +1610.02067 Computer Science and Game Theory +1610.02069 +1610.02070 Statistical Mechanics +1610.02073 Category Theory +1610.02075 Commutative Algebra +1610.02077 Combinatorics +1610.02079 Group Theory +1610.02081 Phenomenology +1610.02083 Accelerator Physics +1610.02084 Neural and Evolutionary Computing +1610.02088 Probability +1610.02089 Combinatorics +1610.02090 Fluid Dynamics +1610.02092 Networking and Internet Architecture +1610.02094 Hardware Architecture +1610.02097 +1610.02100 Soft Condensed Matter +1610.02101 Logic in Computer Science +1610.02102 Mesoscale and Nanoscale Physics +1610.02103 Computer Science and Game Theory +1610.02104 +1610.02105 Computational Physics +1610.02106 Computation +1610.02109 Functional Analysis +1610.02110 Computer Science and Game Theory +1610.02111 Optics +1610.02115 Group Theory +1610.02119 Mesoscale and Nanoscale Physics +1610.02120 Analysis of PDEs +1610.02124 Computation and Language +1610.02126 Risk Management +1610.02127 Software Engineering +1610.02129 Metric Geometry +1610.02130 Accelerator Physics +1610.02131 Networking and Internet Architecture +1610.02132 Learning +1610.02133 Functional Analysis +1610.02135 Accelerator Physics +1610.02137 Dynamical Systems +1610.02138 Optics +1610.02139 Optimization and Control +1610.02141 +1610.02144 Programming Languages +1610.02148 +1610.02150 +1610.02152 +1610.02156 Space Physics +1610.02157 Number Theory +1610.02158 Classical Analysis and ODEs +1610.02159 Functional Analysis +1610.02161 Number Theory +1610.02164 Learning +1610.02165 Operator Algebras +1610.02166 Dynamical Systems +1610.02167 Functional Analysis +1610.02175 Discrete Mathematics +1610.02178 Probability +1610.02179 Optics +1610.02180 Category Theory +1610.02181 Information Theory +1610.02183 Experiment +1610.02184 Analysis of PDEs +1610.02186 Strongly Correlated Electrons +1610.02187 +1610.02188 Rings and Algebras +1610.02191 Logic +1610.02192 Optimization and Control +1610.02194 Logic +1610.02195 Solar and Stellar Astrophysics +1610.02196 Rings and Algebras +1610.02197 +1610.02198 Medical Physics +1610.02200 Solar and Stellar Astrophysics +1610.02202 Differential Geometry +1610.02204 Materials Science +1610.02205 Materials Science +1610.02206 Materials Science +1610.02207 Statistics Theory +1610.02208 +1610.02212 Combinatorics +1610.02213 Computation and Language +1610.02214 Physics and Society +1610.02216 Classical Analysis and ODEs +1610.02218 Chaotic Dynamics +1610.02222 Strongly Correlated Electrons +1610.02223 Differential Geometry +1610.02227 Neurons and Cognition +1610.02228 Social and Information Networks +1610.02229 Mesoscale and Nanoscale Physics +1610.02230 Experiment +1610.02231 Materials Science +1610.02232 Rings and Algebras +1610.02234 Analysis of PDEs +1610.02236 +1610.02237 Computer Vision and Pattern Recognition +1610.02238 Complex Variables +1610.02244 +1610.02245 Differential Geometry +1610.02249 Neurons and Cognition +1610.02250 History and Overview +1610.02251 Computer Vision and Pattern Recognition +1610.02253 Information Theory +1610.02254 Symplectic Geometry +1610.02255 Computer Vision and Pattern Recognition +1610.02256 Computer Vision and Pattern Recognition +1610.02258 Quantitative Methods +1610.02263 Multimedia +1610.02265 Numerical Analysis +1610.02268 High Energy Astrophysical Phenomena +1610.02270 Numerical Analysis +1610.02271 Optimization and Control +1610.02274 Other Computer Science +1610.02275 Phenomenology +1610.02277 Computational Engineering, Finance, and Science +1610.02278 Commutative Algebra +1610.02280 Complex Variables +1610.02281 Genomics +1610.02283 Earth and Planetary Astrophysics +1610.02285 Computational Physics +1610.02288 Distributed, Parallel, and Cluster Computing +1610.02289 Differential Geometry +1610.02290 Rings and Algebras +1610.02292 Tissues and Organs +1610.02293 Artificial Intelligence +1610.02295 Functional Analysis +1610.02298 +1610.02301 Cell Behavior +1610.02302 Combinatorics +1610.02305 Materials Science +1610.02306 Computer Vision and Pattern Recognition +1610.02307 Information Theory +1610.02308 Neurons and Cognition +1610.02309 Neurons and Cognition +1610.02310 Mesoscale and Nanoscale Physics +1610.02311 Differential Geometry +1610.02314 Chemical Physics +1610.02315 Number Theory +1610.02317 Numerical Analysis +1610.02318 Networking and Internet Architecture +1610.02321 Rings and Algebras +1610.02323 Dynamical Systems +1610.02327 Programming Languages +1610.02329 Instrumentation and Methods for Astrophysics +1610.02331 Numerical Analysis +1610.02332 Mesoscale and Nanoscale Physics +1610.02333 Distributed, Parallel, and Cluster Computing +1610.02336 Data Structures and Algorithms +1610.02337 Mesoscale and Nanoscale Physics +1610.02339 Cryptography and Security +1610.02340 Number Theory +1610.02342 Solar and Stellar Astrophysics +1610.02343 Theory +1610.02345 Soft Condensed Matter +1610.02348 Artificial Intelligence +1610.02352 Logic +1610.02353 Materials Science +1610.02354 Lattice +1610.02355 Popular Physics +1610.02356 +1610.02358 Social and Information Networks +1610.02359 Mesoscale and Nanoscale Physics +1610.02360 Cosmology and Nongalactic Astrophysics +1610.02361 Data Structures and Algorithms +1610.02362 Algebraic Topology +1610.02363 Theory +1610.02365 Optics +1610.02367 +1610.02368 Probability +1610.02371 Number Theory +1610.02372 Methodology +1610.02373 Learning +1610.02374 Software Engineering +1610.02375 Strongly Correlated Electrons +1610.02378 Functional Analysis +1610.02379 Complex Variables +1610.02381 Combinatorics +1610.02382 Complex Variables +1610.02383 Symplectic Geometry +1610.02384 Soft Condensed Matter +1610.02385 Robotics +1610.02388 Fluid Dynamics +1610.02389 Disordered Systems and Neural Networks +1610.02392 Sound +1610.02393 +math/0606173 Classical Analysis and ODEs +0811.4593 Fluid Dynamics +1004.4689 +1108.6282 Functional Analysis +1109.3216 History and Overview +1205.1455 Algebraic Topology +1209.6422 K-Theory and Homology +1211.3692 Representation Theory +1212.0174 Dynamical Systems +1305.2562 Geometric Topology +1306.0120 Differential Geometry +1311.0036 Analysis of PDEs +1401.0150 Symplectic Geometry +1402.2203 Quantum Algebra +1403.1919 Combinatorics +1403.4105 Algebraic Geometry +1404.3007 Combinatorics +1404.4275 Computational Engineering, Finance, and Science +1406.0412 Mathematical Finance +1406.6934 Functional Analysis +1406.7836 Strongly Correlated Electrons +1407.5615 Optimization and Control +1407.6309 Probability +1408.4439 Optimization and Control +1408.5037 Functional Analysis +1409.0180 Optics +1410.3331 Functional Analysis +1410.3572 Differential Geometry +1410.6394 Functional Analysis +1410.6408 Mathematical Finance +1411.0300 Numerical Analysis +1411.2475 Analysis of PDEs +1411.3059 Differential Geometry +1411.6527 Representation Theory +1412.5043 Number Theory +1412.5282 Differential Geometry +1501.04119 Combinatorics +1502.01106 Statistics Theory +1502.02451 Dynamical Systems +1502.06412 Methodology +1504.01644 Analysis of PDEs +1504.01952 Strongly Correlated Electrons +1504.03809 Multiagent Systems +1504.04535 Analysis of PDEs +1504.07790 Functional Analysis +1504.07830 Optimization and Control +1505.07007 +1506.02438 Learning +1506.04540 Number Theory +1506.05146 Computational Physics +1506.05861 Algebraic Topology +1506.07108 +1506.07275 Networking and Internet Architecture +1507.03894 Differential Geometry +1507.06816 Spectral Theory +1508.02465 +1508.04574 Mesoscale and Nanoscale Physics +1508.06659 Probability +1508.07410 Theory +1508.07646 Commutative Algebra +1509.02456 Analysis of PDEs +1510.00963 +1510.04994 High Energy Astrophysical Phenomena +1510.06288 Mesoscale and Nanoscale Physics +1511.00168 Atomic and Molecular Clusters +1511.00567 Networking and Internet Architecture +1511.01884 +1511.02207 Analysis of PDEs +1511.02315 Soft Condensed Matter +1511.02551 Dynamical Systems +1511.03425 Theory +1511.06712 Strongly Correlated Electrons +1511.06871 Number Theory +1511.07250 Classical Analysis and ODEs +1511.07407 Analysis of PDEs +1511.08194 Mathematical Finance +1511.08415 Number Theory +1512.08863 Computational Complexity +1601.01559 +1601.01720 +1601.03008 Representation Theory +1601.04539 Metric Geometry +1601.06116 Machine Learning +1601.07498 Information Theory +1601.07551 Phenomenology +1602.00881 Phenomenology +1602.01564 +1602.02456 +1602.03474 Analysis of PDEs +1602.04902 Portfolio Management +1602.06785 Quantitative Methods +1602.08608 Classical Analysis and ODEs +1603.01128 +1603.01351 Neurons and Cognition +1603.02852 Phenomenology +1603.03124 Probability +1603.03887 Dynamical Systems +1603.04883 Mesoscale and Nanoscale Physics +1603.05818 Probability +1603.08389 Information Theory +1603.08782 Analysis of PDEs +1603.09680 Optics +1604.02997 Experiment +1604.03924 Learning +1604.06105 Superconductivity +1604.06699 Phenomenology +1604.07757 Superconductivity +1604.08504 Computation and Language +1605.00182 Theory +1605.01224 Computer Vision and Pattern Recognition +1605.01856 Phenomenology +1605.02492 Quantum Gases +1605.02516 Optics +1605.04476 Optics +1605.04587 Geometric Topology +1605.05563 Superconductivity +1605.07160 Soft Condensed Matter +1605.07372 +1605.08477 Optics +1605.09322 Dynamical Systems +1605.09526 Computer Vision and Pattern Recognition +1606.00360 Networking and Internet Architecture +1606.00501 Superconductivity +1606.01636 Strongly Correlated Electrons +1606.01848 +1606.01874 Computational Physics +1606.02145 Physics and Society +1606.02528 Strongly Correlated Electrons +1606.03399 Cosmology and Nongalactic Astrophysics +1606.03489 Chemical Physics +1606.03882 +1606.03986 Information Theory +1606.06327 Numerical Analysis +1606.06603 Materials Science +1606.07020 Optics +1606.08078 Computer Vision and Pattern Recognition +1606.08823 Quantum Gases +1606.08982 Theory +1606.09498 Soft Condensed Matter +1607.00615 Theory +1607.00962 Mesoscale and Nanoscale Physics +1607.01782 Cosmology and Nongalactic Astrophysics +1607.02123 +1607.03541 Phenomenology +1607.03669 Experiment +1607.04398 +1607.04850 Algebraic Geometry +1607.04893 +1607.08142 High Energy Astrophysical Phenomena +1608.00412 Quantum Algebra +1608.00729 Soft Condensed Matter +1608.01742 Analysis of PDEs +1608.02149 Instrumentation and Methods for Astrophysics +1608.02995 High Energy Astrophysical Phenomena +1608.03162 Soft Condensed Matter +1608.03923 Plasma Physics +1608.04425 Optimization and Control +1608.04557 Statistical Mechanics +1608.04905 Optics +1608.05397 Chaotic Dynamics +1608.05411 Materials Science +1608.05575 Dynamical Systems +1608.06088 Differential Geometry +1608.06368 Graphics +1608.06404 Combinatorics +1608.06540 +1608.06599 Differential Geometry +1608.07437 Astrophysics of Galaxies +1608.07583 Phenomenology +1608.08134 +1608.08171 Computer Vision and Pattern Recognition +1608.08173 Computer Vision and Pattern Recognition +1608.08289 Dynamical Systems +1608.08673 History and Philosophy of Physics +1608.08952 Computational Geometry +1608.08974 Computer Vision and Pattern Recognition +1609.00274 Operator Algebras +1609.00429 Superconductivity +1609.00481 Computer Science and Game Theory +1609.00594 Information Theory +1609.01086 Earth and Planetary Astrophysics +1609.01233 Information Theory +1609.01371 Computer Vision and Pattern Recognition +1609.01759 Software Engineering +1609.01899 Information Theory +1609.01917 Information Theory +1609.02035 Distributed, Parallel, and Cluster Computing +1609.02063 Data Structures and Algorithms +1609.02116 Machine Learning +1609.02117 Information Theory +1609.02242 Mesoscale and Nanoscale Physics +1609.02271 Computer Vision and Pattern Recognition +1609.02371 Differential Geometry +1609.02559 Earth and Planetary Astrophysics +1609.02562 Algebraic Geometry +1609.02573 Accelerator Physics +1609.02574 +1609.02575 Chemical Physics +1609.02577 Group Theory +1609.02580 Phenomenology +1609.02583 Computer Vision and Pattern Recognition +1609.02584 Artificial Intelligence +1609.02585 Mesoscale and Nanoscale Physics +1609.02586 History and Philosophy of Physics +1609.02589 Metric Geometry +1609.02592 Physics and Society +1609.02593 Physics and Society +1609.02596 Information Theory +1609.02598 Cryptography and Security +1609.02600 Dynamical Systems +1609.02602 Solar and Stellar Astrophysics +1609.02603 Networking and Internet Architecture +1609.02605 Rings and Algebras +1609.02606 Machine Learning +1609.02609 Optimization and Control +1609.02610 Numerical Analysis +1609.02611 Probability +1609.02615 Differential Geometry +1609.02616 Logic +1609.02618 Optics +1609.02621 Physics and Society +1609.02623 +1609.02624 Analysis of PDEs +1609.02626 Materials Science +1609.02627 Logic +1609.02629 Methodology +1609.02630 Logic +1609.02631 Machine Learning +1609.02634 Representation Theory +1609.02636 Representation Theory +1609.02637 Computational Physics +1609.02639 Materials Science +1609.02640 Discrete Mathematics +1609.02641 Mesoscale and Nanoscale Physics +1609.02642 Biological Physics +1609.02643 Dynamical Systems +1609.02644 Geometric Topology +1609.02646 Artificial Intelligence +1609.02647 Materials Science +1609.02649 Soft Condensed Matter +1609.02654 Quantitative Methods +1609.02655 Statistics Theory +1609.02656 Biological Physics +1609.02657 Discrete Mathematics +1609.02659 History and Philosophy of Physics +1609.02660 Information Theory +1609.02661 Statistics Theory +1609.02664 Learning +1609.02665 Mesoscale and Nanoscale Physics +1609.02666 +1609.02667 Cryptography and Security +1609.02668 Data Structures and Algorithms +1609.02669 Physics and Society +1609.02670 Commutative Algebra +1609.02672 Artificial Intelligence +1609.02673 Pattern Formation and Solitons +1609.02674 +1609.02675 +1609.02677 +1609.02678 Systems and Control +1609.02679 Mesoscale and Nanoscale Physics +1609.02680 Group Theory +1609.02682 Networking and Internet Architecture +1609.02687 Information Retrieval +1609.02689 Solar and Stellar Astrophysics +1609.02691 Analysis of PDEs +1609.02692 Optimization and Control +1609.02694 Distributed, Parallel, and Cluster Computing +1609.02696 Methodology +1609.02697 Probability +1609.02698 +1609.02700 Machine Learning +1609.02701 Chemical Physics +1609.02702 Differential Geometry +1609.02704 Combinatorics +1609.02706 Earth and Planetary Astrophysics +1609.02707 Functional Analysis +1609.02709 Functional Analysis +1609.02710 Solar and Stellar Astrophysics +1609.02711 Optimization and Control +1609.02715 Computer Vision and Pattern Recognition +1609.02716 Algebraic Geometry +1609.02717 Dynamical Systems +1609.02718 Probability +1609.02720 Superconductivity +1609.02722 +1609.02724 Number Theory +1609.02725 Strongly Correlated Electrons +1609.02726 Discrete Mathematics +1609.02727 Computation and Language +1609.02728 Learning +1609.02730 Chaotic Dynamics +1609.02732 +1609.02733 Theory +1609.02737 Commutative Algebra +1609.02738 Algebraic Geometry +1609.02741 Numerical Analysis +1609.02742 High Energy Astrophysical Phenomena +1609.02744 Computer Vision and Pattern Recognition +1609.02745 Computation and Language +1609.02746 Computation and Language +1609.02750 Cryptography and Security +1609.02752 Soft Condensed Matter +1609.02754 +1609.02755 Combinatorics +1609.02756 Combinatorics +1609.02762 Optimization and Control +1609.02763 Numerical Analysis +1609.02764 Combinatorics +1609.02768 Algebraic Geometry +1609.02769 Other Computer Science +1609.02772 Analysis of PDEs +1609.02773 Soft Condensed Matter +1609.02774 Risk Management +1609.02775 History and Philosophy of Physics +1609.02777 Fluid Dynamics +1609.02780 Optics +1609.02781 Computer Vision and Pattern Recognition +1609.02782 Soft Condensed Matter +1609.02784 Optimization and Control +1609.02786 Phenomenology +1609.02787 Classical Physics +1609.02788 Phenomenology +1609.02789 Cryptography and Security +1609.02790 Combinatorics +1609.02791 Other Computer Science +1609.02793 Applications +1609.02794 Genomics +1609.02797 +1609.02798 Rings and Algebras +1609.02802 Analysis of PDEs +1609.02804 +1609.02805 Computer Vision and Pattern Recognition +1609.02808 +1609.02809 Computation and Language +1609.02810 Phenomenology +1609.02813 Optimization and Control +1609.02814 Optimization and Control +1609.02816 Theory +1609.02817 Earth and Planetary Astrophysics +1609.02818 Methodology +1609.02825 Computer Vision and Pattern Recognition +1609.02826 Combinatorics +1609.02828 Probability +1609.02836 Numerical Analysis +1609.02837 Number Theory +1609.02838 Differential Geometry +1609.02839 Social and Information Networks +1609.02840 Complex Variables +1609.02842 Information Theory +1609.02844 Rings and Algebras +1609.02845 Optimization and Control +1609.02846 Computation and Language +1609.02850 Theory +1609.02851 +1609.02853 Algebraic Topology +1609.02855 Statistics Theory +1609.02856 Soft Condensed Matter +1609.02858 Number Theory +1609.02860 Fluid Dynamics +1609.02866 Analysis of PDEs +1609.02867 Probability +1609.02868 History and Overview +1609.02870 Functional Analysis +1609.02871 Combinatorics +1609.02873 Rings and Algebras +1609.02874 Optics +1609.02875 +1609.02876 +1609.02881 High Energy Astrophysical Phenomena +1609.02882 Phenomenology +1609.02883 Category Theory +1609.02885 Fluid Dynamics +1609.02886 Fluid Dynamics +1609.02890 Spectral Theory +1609.02891 Statistical Mechanics +1609.02893 Neurons and Cognition +1609.02897 +1609.02898 Robotics +1609.02901 Probability +1609.02902 Mesoscale and Nanoscale Physics +1609.02906 Machine Learning +1609.02911 Information Theory +0806.2276 Dynamical Systems +0901.0018 Superconductivity +0905.3670 Complex Variables +1102.3276 Statistical Mechanics +1106.1568 History and Philosophy of Physics +1107.4418 High Energy Astrophysical Phenomena +1112.6063 +1202.0045 Probability +1203.0756 Combinatorics +1212.1943 Geometric Topology +1212.3711 +1212.6518 Algebraic Geometry +1307.5784 Functional Analysis +1310.2497 Geometric Topology +1311.3162 Differential Geometry +1311.7668 Complex Variables +1401.0100 Methodology +1401.0209 Networking and Internet Architecture +1401.3699 Geometric Topology +1402.1343 +1405.7134 Social and Information Networks +1406.5278 Chaotic Dynamics +1407.0637 Data Structures and Algorithms +1409.7132 Representation Theory +1410.1907 Materials Science +1410.3371 Classical Analysis and ODEs +1410.4054 Mathematical Software +1410.4770 Dynamical Systems +1411.0503 Analysis of PDEs +1411.1168 Methodology +1411.3578 +1411.5759 Complex Variables +1412.2594 Experiment +1412.7465 Commutative Algebra +1501.00133 Experiment +1501.02315 Methodology +1502.00827 Information Theory +1502.05890 Learning +1502.06380 Combinatorics +1503.02156 Number Theory +1503.03740 Differential Geometry +1503.04818 Astrophysics of Galaxies +1503.06258 Dynamical Systems +1503.06520 Number Theory +1504.01116 Analysis of PDEs +1504.05436 Applications +1506.01440 Analysis of PDEs +1506.01587 Optimization and Control +1506.02676 Statistics Theory +1506.04943 Classical Physics +1506.05595 Networking and Internet Architecture +1506.06293 Geometric Topology +1507.00770 Combinatorics +1507.02240 Metric Geometry +1508.01996 Computation and Language +1508.02225 Computation and Language +1509.01130 Quantum Gases +1509.02870 Methodology +1509.05681 Computational Geometry +1509.08984 Mesoscale and Nanoscale Physics +1510.00581 Differential Geometry +1510.01076 Complex Variables +1510.02427 Cryptography and Security +1511.00410 Combinatorics +1511.00884 Computational Finance +1511.05194 Geophysics +1511.05328 Optimization and Control +1511.05450 +1511.05454 +1511.05937 Combinatorics +1511.09396 Chemical Physics +1511.09429 Combinatorics +1511.09462 Theory +1512.00438 Phenomenology +1512.01416 Logic in Computer Science +1512.01647 Phenomenology +1512.01990 Functional Analysis +1512.02990 Information Theory +1512.04496 Operator Algebras +1512.04858 Other Statistics +1512.09062 Differential Geometry +1601.00258 Optimization and Control +1601.01694 Theory +1601.02946 Classical Analysis and ODEs +1601.04203 Data Structures and Algorithms +1601.07073 Mesoscale and Nanoscale Physics +1602.02151 Learning +1602.04128 Learning +1602.04419 Distributed, Parallel, and Cluster Computing +1602.05441 K-Theory and Homology +1602.06569 Algebraic Geometry +1602.06878 Theory +1602.08477 Distributed, Parallel, and Cluster Computing +1602.08481 Distributed, Parallel, and Cluster Computing +1603.00285 Statistics Theory +1603.02771 +1603.03317 Classical Analysis and ODEs +1603.03345 Mesoscale and Nanoscale Physics +1603.03506 Statistical Mechanics +1603.05203 Probability +1603.07232 Phenomenology +1603.08901 Number Theory +1604.01198 Mesoscale and Nanoscale Physics +1604.01249 Materials Science +1604.01774 Theory +1604.02138 Theory +1604.02659 Information Theory +1604.04111 Data Structures and Algorithms +1604.05974 High Energy Astrophysical Phenomena +1604.07587 Functional Analysis +1605.00058 Data Structures and Algorithms +1605.00400 High Energy Astrophysical Phenomena +1605.00656 Theory +1605.00668 Information Theory +1605.01388 +1605.03736 Algebraic Geometry +1605.04923 High Energy Astrophysical Phenomena +1605.07387 Materials Science +1605.08207 Materials Science +1605.09423 Strongly Correlated Electrons +1606.00237 Geometric Topology +1606.00327 Experiment +1606.00577 Computation and Language +1606.00730 Combinatorics +1606.01246 Astrophysics of Galaxies +1606.02862 Distributed, Parallel, and Cluster Computing +1606.03477 Phenomenology +1606.03698 Mesoscale and Nanoscale Physics +1606.04483 Superconductivity +1606.05308 Cosmology and Nongalactic Astrophysics +1606.05590 +1606.05630 Dynamical Systems +1606.06277 Strongly Correlated Electrons +1606.06554 Number Theory +1606.08786 Soft Condensed Matter +1606.08799 Algebraic Geometry +1606.09411 Optics +1606.09630 General Physics +1607.00001 Quantum Gases +1607.00213 Mesoscale and Nanoscale Physics +1607.01970 Materials Science +1607.02315 +1607.03079 Atomic Physics +1607.03688 Computer Science and Game Theory +1607.04231 Representation Theory +1607.04935 Phenomenology +1607.05870 +1607.06167 Soft Condensed Matter +1607.06387 Plasma Physics +1607.06883 Distributed, Parallel, and Cluster Computing +1607.07837 Optimization and Control +1607.08339 Astrophysics of Galaxies +1607.08436 +1607.08521 Number Theory +1608.00464 Plasma Physics +1608.00476 Methodology +1608.00733 Probability +1608.00963 Earth and Planetary Astrophysics +1608.01517 Astrophysics of Galaxies +1608.04687 Strongly Correlated Electrons +1608.04815 Mathematical Software +1608.05325 +1608.05537 Computer Science and Game Theory +1608.05548 Logic in Computer Science +1608.05552 Discrete Mathematics +1608.05583 Methodology +1608.06703 Group Theory +1608.06732 Experiment +1608.08314 Populations and Evolution +1608.08828 Neurons and Cognition +1609.00739 Biological Physics +1609.00742 Plasma Physics +1609.02812 Logic +1609.04049 +1609.04375 Quantitative Methods +1609.04492 Mesoscale and Nanoscale Physics +1609.04959 +1609.06488 High Energy Astrophysical Phenomena +1609.08022 Analysis of PDEs +1609.08384 Strongly Correlated Electrons +1610.00328 Logic in Computer Science +1610.00548 Geophysics +1610.01293 Chaotic Dynamics +1610.01295 Distributed, Parallel, and Cluster Computing +1610.02095 Functional Analysis +1610.03499 Astrophysics of Galaxies +1610.03502 Astrophysics of Galaxies +1610.03605 +1610.04126 Optics +1610.04442 Materials Science +1610.04648 Geometric Topology +1610.05284 Theory +1610.06239 Lattice +1610.06470 Discrete Mathematics +1610.06839 Phenomenology +1610.06980 +1610.07407 Machine Learning +1610.07641 Computational Physics +1610.07839 +1610.07984 Representation Theory +1610.08040 Mesoscale and Nanoscale Physics +1610.08521 Theory +1610.09461 Learning +1610.09496 Analysis of PDEs +1610.09575 Mesoscale and Nanoscale Physics +1611.00141 Mesoscale and Nanoscale Physics +1611.00158 Superconductivity +1611.00174 Disordered Systems and Neural Networks +1611.00424 +1611.00455 Logic in Computer Science +1611.00625 Learning +1611.00723 General Finance +1611.00734 Functional Analysis +1611.00790 Astrophysics of Galaxies +1611.00832 +1611.00936 Group Theory +1611.00938 Data Structures and Algorithms +1611.00997 Portfolio Management +1611.01018 General Physics +1611.01019 General Physics +1611.01076 High Energy Astrophysical Phenomena +1611.01153 General Mathematics +1611.01155 Solar and Stellar Astrophysics +1611.01157 Cosmology and Nongalactic Astrophysics +1611.01165 Phenomenology +1611.01166 Astrophysics of Galaxies +1611.01167 +1611.01169 Astrophysics of Galaxies +1611.01170 Learning +1611.01171 Strongly Correlated Electrons +1611.01172 Sound +1611.01174 Dynamical Systems +1611.01175 Algebraic Topology +1611.01176 +1611.01177 Differential Geometry +1611.01178 Geometric Topology +1611.01179 Machine Learning +1611.01180 Lattice +1611.01182 History and Overview +1611.01184 Analysis of PDEs +1611.01186 Neural and Evolutionary Computing +1611.01187 Phenomenology +1611.01188 Analysis of PDEs +1611.01190 Computational Complexity +1611.01192 Number Theory +1611.01195 Computer Vision and Pattern Recognition +1611.01196 Dynamical Systems +1611.01198 Theory +1611.01202 Numerical Analysis +1611.01203 Algebraic Geometry +1611.01204 Algebraic Topology +1611.01205 Methodology +1611.01208 Fluid Dynamics +1611.01209 Dynamical Systems +1611.01210 Data Structures and Algorithms +1611.01212 Strongly Correlated Electrons +1611.01213 Applications +1611.01214 Rings and Algebras +1611.01215 Number Theory +1611.01219 +1611.01223 +1611.01224 Learning +1611.01228 Information Retrieval +1611.01229 Theory +1611.01230 Machine Learning +1611.01232 Machine Learning +1611.01233 Mesoscale and Nanoscale Physics +1611.01235 Neural and Evolutionary Computing +1611.01237 Algebraic Geometry +1611.01239 Machine Learning +1611.01240 Statistics Theory +1611.01242 Computation and Language +1611.01243 High Energy Astrophysical Phenomena +1611.01244 Statistical Mechanics +1611.01245 Biomolecules +1611.01246 Probability +1611.01253 Number Theory +1611.01254 Probability +1611.01256 Experiment +1611.01257 Social and Information Networks +1611.01258 +1611.01259 Learning +1611.01261 Atomic Physics +1611.01262 Operator Algebras +1611.01263 +1611.01264 Materials Science +1611.01265 Materials Science +1611.01268 Learning +1611.01270 Combinatorics +1611.01274 Number Theory +1611.01276 Learning +1611.01280 Portfolio Management +1611.01281 Fluid Dynamics +1611.01284 Representation Theory +1611.01286 Software Engineering +1611.01287 Software Engineering +1611.01289 +1611.01290 Instrumentation and Methods for Astrophysics +1611.01291 Computational Complexity +1611.01294 Networking and Internet Architecture +1611.01296 Logic in Computer Science +1611.01298 Computer Vision and Pattern Recognition +1611.01301 Solar and Stellar Astrophysics +1611.01302 Statistical Mechanics +1611.01303 Analysis of PDEs +1611.01305 Combinatorics +1611.01306 Probability +1611.01307 Mesoscale and Nanoscale Physics +1611.01308 Atomic Physics +1611.01309 Optics +1611.01310 Methodology +1611.01312 Instrumentation and Methods for Astrophysics +1611.01313 Group Theory +1611.01314 Numerical Analysis +1611.01321 Strongly Correlated Electrons +1611.01323 Probability +1611.01324 Complex Variables +1611.01325 Performance +1611.01326 Biological Physics +1611.01328 Computational Complexity +1611.01329 Number Theory +1611.01330 Statistical Mechanics +1611.01334 +1611.01335 Information Theory +1611.01337 Logic in Computer Science +1611.01338 Complex Variables +1611.01340 Rings and Algebras +1611.01344 Computational Complexity +1611.01346 Group Theory +1611.01349 +1611.01350 Materials Science +1611.01351 Statistics Theory +1611.01352 Probability +1611.01354 Materials Science +1611.01355 Functional Analysis +1611.01356 Complex Variables +1611.01357 High Energy Astrophysical Phenomena +1611.01358 Combinatorics +1611.01359 Information Theory +1611.01360 Statistics Theory +1611.01361 Networking and Internet Architecture +1611.01362 Applications +1611.01363 Materials Science +1611.01364 Computer Science and Game Theory +1611.01365 Soft Condensed Matter +1611.01368 Computation and Language +1611.01369 Statistics Theory +1611.01370 Statistics Theory +1611.01372 Combinatorics +1611.01373 Statistics Theory +1611.01374 Instrumentation and Methods for Astrophysics +1611.01375 General Mathematics +1611.01376 Information Theory +1611.01377 Cryptography and Security +1611.01378 Lattice +1611.01379 Computational Finance +1611.01381 Physics and Society +1611.01382 Phenomenology +1611.01383 Lattice +1611.01384 Algebraic Geometry +1611.01386 High Energy Astrophysical Phenomena +1611.01387 Applications +1611.01389 Computational Physics +1611.01390 Neurons and Cognition +1611.01391 Numerical Analysis +1611.01392 +1611.01393 Social and Information Networks +1611.01394 Phenomenology +1611.01395 Theory +1611.01396 Soft Condensed Matter +1611.01399 Optimization and Control +1611.01400 Information Retrieval +1611.01402 Solar and Stellar Astrophysics +1611.01403 Data Structures and Algorithms +1611.01404 Biological Physics +1611.01406 Probability +1611.01407 Atmospheric and Oceanic Physics +1611.01410 Chemical Physics +1611.01411 General Mathematics +1611.01412 Optimization and Control +1611.01413 General Mathematics +1611.01414 Information Theory +1611.01417 Optimization and Control +1611.01419 Computational Geometry +1611.01420 Numerical Analysis +1611.01421 Computer Vision and Pattern Recognition +1611.01422 Analysis of PDEs +1611.01423 Learning +1611.01424 Group Theory +1611.01425 K-Theory and Homology +1611.01426 Materials Science +1611.01428 Information Theory +1611.01430 Atomic Physics +1611.01432 Phenomenology +1611.01433 Combinatorics +1611.01434 Statistical Mechanics +1611.01435 +1611.01437 Statistics Theory +1611.01438 +1611.01439 Applications +1611.01444 Theory +1611.01445 Solar and Stellar Astrophysics +1611.01447 Computational Physics +1611.01449 Learning +1611.01450 Computation +1611.01451 High Energy Astrophysical Phenomena +1611.01452 Atomic Physics +1611.01455 Learning +1611.01456 Learning +1611.01458 Lattice +1611.01461 Spectral Theory +1611.01463 Portfolio Management +1611.01465 Commutative Algebra +1611.01467 Mesoscale and Nanoscale Physics +1611.01468 Space Physics +1611.01470 Functional Analysis +1611.01471 General Finance +1611.01472 +1611.01474 Combinatorics +1611.01475 +1611.01476 Plasma Physics +1611.01477 Cryptography and Security +1611.01479 Data Structures and Algorithms +1611.01480 Methodology +1611.01481 Mesoscale and Nanoscale Physics +1611.01482 Analysis of PDEs +1611.01483 +1611.01484 Computer Vision and Pattern Recognition +1611.01486 Cosmology and Nongalactic Astrophysics +1611.01488 Rings and Algebras +1611.01489 +1611.01492 Optimization and Control +1611.01493 Quantum Algebra +1611.01494 Functional Analysis +1611.01495 Physics Education +1611.01500 Theory +1611.01501 Software Engineering +1611.01502 General Mathematics +1611.01503 Learning +1611.01504 Machine Learning +1611.01506 Statistics Theory +1611.01510 +hep-ph/9602236 Phenomenology +math/0409584 Algebraic Geometry +0705.3368 +0708.1754 Chemical Physics +0801.4080 Theory +0806.1165 General Physics +0806.4299 +0812.2630 Chemical Physics +0812.2632 Chemical Physics +0903.3494 +1108.5447 +1210.1198 Numerical Analysis +1307.5242 +1309.2798 Computer Science and Game Theory +1311.4665 Computational Geometry +1311.5699 Probability +1401.4184 Materials Science +1402.3544 +1403.7083 +1404.1754 K-Theory and Homology +1405.1696 Astrophysics of Galaxies +1407.6589 Computational Physics +1408.1645 +1409.0971 Algebraic Geometry +1409.2449 +1409.2452 +1409.4659 Classical Analysis and ODEs +1410.0331 Dynamical Systems +1410.1415 Analysis of PDEs +1412.1205 Information Theory +1412.3348 Complex Variables +1412.4267 +1412.4750 Theory +1412.5646 Combinatorics +1501.00799 Cosmology and Nongalactic Astrophysics +1501.02682 +1502.01022 Astrophysics of Galaxies +1502.04642 +1503.00126 +1503.01158 Artificial Intelligence +1503.01366 Logic +1503.02115 Machine Learning +1503.03791 Discrete Mathematics +1503.05492 Commutative Algebra +1503.07423 Statistics Theory +1503.07562 Differential Geometry +1504.03124 +1505.03127 Representation Theory +1505.03363 +1505.07835 +1507.00067 Combinatorics +1507.00159 Information Theory +1507.03614 Information Theory +1507.03970 Atomic Physics +1507.07530 Probability +1507.08007 Neural and Evolutionary Computing +1507.08858 Phenomenology +1508.04219 Theory +1508.05012 Dynamical Systems +1509.01192 Number Theory +1509.01596 Distributed, Parallel, and Cluster Computing +1509.06135 Phenomenology +1509.07276 +1510.01120 High Energy Astrophysical Phenomena +1510.01906 Differential Geometry +1510.02203 High Energy Astrophysical Phenomena +1510.02708 Numerical Analysis +1510.04595 Sound +1510.06408 Dynamical Systems +1510.08743 Number Theory +1510.08957 +1511.00454 Operator Algebras +1511.09028 Algebraic Geometry +1511.09389 Discrete Mathematics +1512.00321 Differential Geometry +1512.01540 Materials Science +1512.07071 Physics and Society +1512.07257 Superconductivity +1512.07886 Theory +1512.08544 Differential Geometry +1512.09179 Optics +1601.00318 Learning +1601.01842 +1601.03041 Disordered Systems and Neural Networks +1601.04500 Information Theory +1601.04796 Differential Geometry +1601.07218 Theory +1601.07371 Materials Science +1601.07910 Disordered Systems and Neural Networks +1601.08016 Physics Education +1602.00509 Subcellular Processes +1602.00812 Computation and Language +1602.04565 Methodology +1602.06023 Computation and Language +1602.06182 Statistical Mechanics +1602.06308 Classical Analysis and ODEs +1602.06685 Mathematical Finance +1602.07569 Earth and Planetary Astrophysics +1602.08362 +1603.00899 General Physics +1603.00964 Robotics +1603.01484 Metric Geometry +1603.01801 Computer Vision and Pattern Recognition +1603.02513 Cosmology and Nongalactic Astrophysics +1603.02572 Mesoscale and Nanoscale Physics +1603.02653 Theory +1603.04200 Statistical Mechanics +1603.04799 Strongly Correlated Electrons +1603.05273 Information Theory +1603.05953 Optimization and Control +1603.06565 Strongly Correlated Electrons +1603.06893 Number Theory +1603.08698 Atmospheric and Oceanic Physics +1603.09000 Statistics Theory +1603.09261 Algebraic Geometry +1603.09403 Mesoscale and Nanoscale Physics +1603.09634 Theory +1604.00592 General Mathematics +1604.00763 Functional Analysis +1604.01119 Group Theory +1604.01690 Theory +1604.02562 Probability +1604.03621 Strongly Correlated Electrons +1604.04145 Populations and Evolution +1604.05155 Probability +1604.06101 Strongly Correlated Electrons +1604.06272 General Physics +1604.06548 +1604.07027 Computation +1604.08192 +1604.08694 Subcellular Processes +1604.08780 Mesoscale and Nanoscale Physics +1605.00994 Mesoscale and Nanoscale Physics +1605.01066 Earth and Planetary Astrophysics +1605.03207 Theory +1605.03961 Theory +1605.04057 Materials Science +1605.04269 Astrophysics of Galaxies +1605.04380 Information Theory +1605.04541 Fluid Dynamics +1605.04887 +1605.06296 Learning +1605.07291 Classical Analysis and ODEs +1605.07926 Soft Condensed Matter +1605.09517 Algebraic Geometry +1605.09710 Biomolecules +1606.00017 Phenomenology +1606.00737 Information Theory +1606.01657 Mesoscale and Nanoscale Physics +1606.01926 Solar and Stellar Astrophysics +1606.03034 Geometric Topology +1606.03250 Phenomenology +1606.03925 Classical Analysis and ODEs +1606.03947 Strongly Correlated Electrons +1606.04250 Artificial Intelligence +1606.07261 Cosmology and Nongalactic Astrophysics +1606.07483 Astrophysics of Galaxies +1606.08005 +1606.08338 Functional Analysis +1606.08617 +1606.09089 Quantum Gases +1606.09551 Materials Science +1607.01840 Statistical Mechanics +1607.02499 +1607.02552 Learning +1607.03864 +1607.03911 Soft Condensed Matter +1607.04294 Phenomenology +1607.04334 Distributed, Parallel, and Cluster Computing +1607.04482 Materials Science +1607.04573 Computer Vision and Pattern Recognition +1607.06816 Astrophysics of Galaxies +1607.06976 Methodology +1607.08716 Classical Analysis and ODEs +1608.02166 Numerical Analysis +1608.02237 Materials Science +1608.02926 Computation and Language +1608.03674 Cosmology and Nongalactic Astrophysics +1608.03868 Group Theory +1608.04455 Probability +1608.04603 Analysis of PDEs +1608.05199 Instrumentation and Detectors +1608.05298 History and Philosophy of Physics +1608.05480 Dynamical Systems +1608.05621 Superconductivity +1608.05681 Algebraic Geometry +1608.05825 Superconductivity +1608.05903 Classical Analysis and ODEs +1608.06001 Combinatorics +1608.06010 Learning +1608.06014 Learning +1608.06345 Computational Physics +1608.06590 Biological Physics +1608.06605 Algebraic Topology +1608.06657 Metric Geometry +1608.06963 +1608.06978 +1608.07013 Strongly Correlated Electrons +1608.07182 Computers and Society +1608.07283 Phenomenology +1608.07285 Astrophysics of Galaxies +1608.07288 Astrophysics of Galaxies +1608.07290 Solar and Stellar Astrophysics +1608.07294 Theory +1608.07296 Cosmology and Nongalactic Astrophysics +1608.07297 Astrophysics of Galaxies +1608.07302 Chemical Physics +1608.07304 Combinatorics +1608.07305 Optimization and Control +1608.07306 Populations and Evolution +1608.07307 Information Theory +1608.07308 Geometric Topology +1608.07310 Optimization and Control +1608.07317 Number Theory +1608.07318 Optics +1608.07322 Solar and Stellar Astrophysics +1608.07323 Human-Computer Interaction +1608.07325 +1608.07326 +1608.07328 Learning +1608.07329 Networking and Internet Architecture +1608.07333 +1608.07336 Computer Science and Game Theory +1608.07337 Cryptography and Security +1608.07338 Computer Vision and Pattern Recognition +1608.07342 Differential Geometry +1608.07343 Cryptography and Security +1608.07344 Classical Analysis and ODEs +1608.07346 Mesoscale and Nanoscale Physics +1608.07348 Computational Geometry +1608.07350 Number Theory +1608.07352 Systems and Control +1608.07353 Algebraic Geometry +1608.07356 Biological Physics +1608.07357 Networking and Internet Architecture +1608.07358 Information Theory +1608.07359 Theory +1608.07360 High Energy Astrophysical Phenomena +1608.07362 Information Theory +1608.07363 Probability +1608.07365 Computer Vision and Pattern Recognition +1608.07366 Group Theory +1608.07367 Probability +1608.07368 Probability +1608.07369 Algebraic Geometry +1608.07371 Computers and Society +1608.07373 Neural and Evolutionary Computing +1608.07374 Materials Science +1608.07376 Functional Analysis +1608.07377 Exactly Solvable and Integrable Systems +1608.07380 Statistical Mechanics +1608.07381 Plasma Physics +1608.07382 Analysis of PDEs +1608.07383 Combinatorics +1608.07387 Theory +1608.07390 Combinatorics +1608.07391 Physics Education +1608.07394 Atomic Physics +1608.07395 Operator Algebras +1608.07396 Materials Science +1608.07397 Numerical Analysis +1608.07398 Logic in Computer Science +1608.07399 Dynamical Systems +1608.07401 Strongly Correlated Electrons +1608.07402 +1608.07403 Robotics +1608.07404 Statistical Mechanics +1608.07405 Materials Science +1608.07406 Geometric Topology +1608.07409 Materials Science +1608.07410 Computer Science and Game Theory +1608.07411 Computer Vision and Pattern Recognition +1608.07413 Discrete Mathematics +1608.07415 Analysis of PDEs +1608.07416 Phenomenology +1608.07422 Number Theory +1608.07423 Analysis of PDEs +1608.07424 Differential Geometry +1608.07426 Analysis of PDEs +1608.07427 Materials Science +1608.07429 Materials Science +1608.07430 Analysis of PDEs +1608.07431 Theory +1608.07432 Optics +1608.07435 Systems and Control +1608.07438 Spectral Theory +1608.07439 Analysis of PDEs +1608.07440 Quantitative Methods +1608.07441 Learning +1608.07443 Distributed, Parallel, and Cluster Computing +1608.07444 Computer Vision and Pattern Recognition +1608.07446 Number Theory +1608.07449 Optics +1608.07450 Optimization and Control +1608.07454 Computer Vision and Pattern Recognition +1608.07457 +1608.07459 Biological Physics +1608.07461 +1608.07463 Astrophysics of Galaxies +1608.07465 +1608.07467 Functional Analysis +1608.07469 Biological Physics +1608.07470 Computer Vision and Pattern Recognition +1608.07471 General Physics +1608.07472 Algebraic Geometry +1608.07474 Number Theory +1608.07476 Differential Geometry +1608.07477 Algebraic Geometry +1608.07478 Lattice +1608.07479 Optics +1608.07480 Optics +1608.07482 Methodology +1608.07483 Numerical Analysis +1608.07485 Hardware Architecture +1608.07486 Computational Complexity +1608.07490 Algebraic Topology +1608.07494 Machine Learning +1608.07495 Functional Analysis +1608.07497 +1608.07499 Neurons and Cognition +1608.07501 +1608.07502 Learning +1608.07505 Data Structures and Algorithms +1608.07506 Theory +1608.07508 Mesoscale and Nanoscale Physics +1608.07510 Superconductivity +1608.07512 Atmospheric and Oceanic Physics +1608.07518 Networking and Internet Architecture +1608.07519 Pattern Formation and Solitons +1608.07521 +1608.07522 Cosmology and Nongalactic Astrophysics +1608.07523 Analysis of PDEs +1608.07524 Earth and Planetary Astrophysics +1608.07525 Instrumentation and Detectors +1608.07526 Machine Learning +1608.07528 Optics +1608.07529 Analysis of PDEs +1608.07534 Probability +1608.07535 Physics and Society +1608.07536 Learning +1608.07538 Experiment +1608.07539 Differential Geometry +1608.07540 Analysis of PDEs +1608.07541 Symplectic Geometry +1608.07542 Mesoscale and Nanoscale Physics +1608.07543 Group Theory +1608.07544 Optimization and Control +1608.07545 Analysis of PDEs +1608.07546 Astrophysics of Galaxies +1608.07551 +1608.07552 Analysis of PDEs +1608.07556 Instrumentation and Detectors +1608.07560 Analysis of PDEs +1608.07562 Astrophysics of Galaxies +1608.07564 Computational Complexity +1608.07565 Physics Education +1608.07566 Complex Variables +1608.07570 Functional Analysis +1608.07571 Analysis of PDEs +gr-qc/0607046 +hep-ph/0603008 Phenomenology +hep-th/0309270 Theory +1611.09175 Theory +1612.05706 Astrophysics of Galaxies +1612.05709 +1612.05732 Biological Physics +1612.05740 Learning +1612.05747 Subcellular Processes +1612.05749 Adaptation and Self-Organizing Systems +1612.05760 Social and Information Networks +1612.05828 Phenomenology +1612.05855 Applications +1612.05930 Logic +1612.05981 Theory +1612.05990 Materials Science +1612.06003 Learning +1612.06025 Computers and Society +1612.06067 Optimization and Control +1612.06073 +1612.06083 Machine Learning +1612.06115 Social and Information Networks +1612.06167 High Energy Astrophysical Phenomena +1612.06180 +1612.06186 Economics +1612.06267 Soft Condensed Matter +1612.06357 Neurons and Cognition +0706.2756 Strongly Correlated Electrons +0707.0112 Classical Analysis and ODEs +0710.4295 Algebraic Geometry +0711.1650 Strongly Correlated Electrons +0905.1285 Theory +0906.4324 Combinatorics +0912.1813 Group Theory +1005.4804 +1007.3862 Cryptography and Security +1010.5898 +1011.0100 Theory +1012.5999 Theory +1106.4525 Rings and Algebras +1110.0731 Theory +1110.3751 Algebraic Geometry +1110.3752 Theory +1111.3160 Information Theory +1202.4707 Optimization and Control +1203.3045 Algebraic Geometry +1209.0051 Representation Theory +1209.3449 General Physics +1211.4188 Differential Geometry +1303.2500 Category Theory +1303.4230 +1303.4974 Phenomenology +1304.6236 Algebraic Geometry +1305.6557 Representation Theory +1305.7126 Statistical Mechanics +1306.5009 Experiment +1307.4968 Algebraic Topology +1308.4425 Algebraic Geometry +1309.1564 Complex Variables +1310.0420 +1310.3561 Machine Learning +1310.4818 Algebraic Geometry +1311.3028 Algebraic Geometry +1401.0176 +1401.5001 K-Theory and Homology +1401.8011 Classical Analysis and ODEs +1403.1269 Phenomenology +1403.3885 Computer Science and Game Theory +1404.0559 Astrophysics of Galaxies +1404.4075 General Physics +1404.6350 Materials Science +1405.1478 Statistics Theory +1406.1936 Mathematical Finance +1407.1614 Symplectic Geometry +1407.3744 Quantum Algebra +1407.6686 Analysis of PDEs +1408.2659 Dynamical Systems +1408.4039 Algebraic Geometry +1408.6105 Algebraic Geometry +1408.6464 Analysis of PDEs +1409.0174 Representation Theory +1409.6398 Algebraic Geometry +1410.1495 Representation Theory +1410.3745 Probability +1410.6890 Discrete Mathematics +1410.7229 Probability +1410.8434 Algebraic Geometry +1411.7849 Algebraic Geometry +1412.0199 Populations and Evolution +1412.0511 Symplectic Geometry +1412.0514 Combinatorics +1412.0855 Statistical Mechanics +1412.4468 Statistical Mechanics +1412.6949 Fluid Dynamics +1501.00883 Statistical Mechanics +1501.01038 Operator Algebras +1501.03115 Statistical Mechanics +1501.06557 Dynamical Systems +1502.02469 Operator Algebras +1502.04340 Combinatorics +1502.05315 Operator Algebras +1502.07503 Quantum Algebra +1503.00063 Materials Science +1503.00224 Quantum Algebra +1503.00860 +1503.01388 Operator Algebras +1503.02485 Number Theory +1503.03508 Probability +1504.04064 Optimization and Control +1504.07787 +1505.01073 Representation Theory +1505.01372 Dynamical Systems +1505.02236 Algebraic Geometry +1505.02900 Number Theory +1505.03679 Number Theory +1505.05698 Materials Science +1505.06445 Commutative Algebra +1506.02468 Differential Geometry +1506.03195 Group Theory +1506.05957 Numerical Analysis +1506.07002 +1507.04885 Discrete Mathematics +1508.00172 Phenomenology +1508.00389 Operator Algebras +1508.01369 Mesoscale and Nanoscale Physics +1508.01850 Rings and Algebras +1508.03246 +1508.03373 Probability +1508.04628 Logic +1508.05317 Molecular Networks +1508.07047 Geometric Topology +1509.04198 Analysis of PDEs +1509.04990 Algebraic Geometry +1509.05879 Group Theory +1509.06262 Analysis of PDEs +1509.06414 Representation Theory +1509.06646 Combinatorics +1510.00494 Phenomenology +1510.01245 Experiment +1510.01800 Data Structures and Algorithms +1510.02119 Analysis of PDEs +1510.03959 Methodology +1510.04399 Theory +1510.05410 Representation Theory +1510.07845 +1511.00077 Mesoscale and Nanoscale Physics +1511.01289 Machine Learning +1511.01930 Operator Algebras +1511.02284 Computation +1511.02516 Mesoscale and Nanoscale Physics +1511.03894 Cryptography and Security +1511.04334 Computation +1511.04336 Numerical Analysis +1511.04875 Optics +1511.06029 Numerical Analysis +1511.08494 Information Theory +1511.08594 Statistical Mechanics +1511.08962 Functional Analysis +1512.00265 Probability +1512.00351 Cryptography and Security +1512.00414 Soft Condensed Matter +1512.01515 Computer Vision and Pattern Recognition +1512.01865 Solar and Stellar Astrophysics +1512.01870 Materials Science +1512.02394 Learning +1512.02728 Machine Learning +1512.02743 Information Theory +1512.02961 Information Theory +1512.03250 Category Theory +1512.03465 Computation and Language +1512.04352 Algebraic Geometry +1512.06386 Theory +1512.06770 +1512.07613 Discrete Mathematics +1512.07884 +1512.08215 Group Theory +1512.08556 Theory +1512.08834 Instrumentation and Detectors +1601.00181 Combinatorics +1601.00487 +1601.00693 Mesoscale and Nanoscale Physics +1601.00888 Functional Analysis +1601.01417 Superconductivity +1601.01955 Computation +1601.02373 Number Theory +1601.02512 Functional Analysis +1601.03733 Complex Variables +1601.04328 +1601.04378 +1601.05691 High Energy Astrophysical Phenomena +1601.05699 Accelerator Physics +1601.06313 Experiment +1601.07418 Optimization and Control +1601.07958 Analysis of PDEs +1602.00199 Statistics Theory +1602.00490 Multimedia +1602.00506 Earth and Planetary Astrophysics +1602.00543 General Topology +1602.01779 Algebraic Geometry +1602.02065 +1602.02144 Networking and Internet Architecture +1602.02360 Number Theory +1602.03275 Optimization and Control +1602.03459 Strongly Correlated Electrons +1602.03702 Strongly Correlated Electrons +1602.04096 Number Theory +1602.04103 Functional Analysis +1602.04106 Number Theory +1602.04135 Differential Geometry +1602.04384 Experiment +1602.05136 Data Structures and Algorithms +1602.05270 Fluid Dynamics +1602.05273 Fluid Dynamics +1602.05685 +1602.05755 Analysis of PDEs +1602.06395 Computational Complexity +1602.06405 Atomic Physics +1602.06470 Probability +1602.06610 Methodology +1602.06809 Cosmology and Nongalactic Astrophysics +1602.06856 +1602.06908 +1602.07382 Symplectic Geometry +1602.07401 Instrumentation and Detectors +1602.07789 Accelerator Physics +1602.07906 +1602.08045 Sound +1602.08191 Learning +1602.08538 Combinatorics +1602.08621 Optics +1602.08919 +1603.00173 +1603.00246 Functional Analysis +1603.00333 Materials Science +1603.00497 Metric Geometry +1603.00828 Quantum Gases +1603.01560 Representation Theory +1603.01867 Algebraic Geometry +1603.02131 +1603.02924 Mesoscale and Nanoscale Physics +1603.03000 Analysis of PDEs +1603.03350 Analysis of PDEs +1603.03360 Disordered Systems and Neural Networks +1603.03405 Classical Analysis and ODEs +1603.03687 Disordered Systems and Neural Networks +1603.03734 Systems and Control +1603.03833 Robotics +1603.04084 Statistical Mechanics +1603.04129 Quantum Algebra +1603.04636 Soft Condensed Matter +1603.04894 Algebraic Geometry +1603.05208 Multiagent Systems +1603.05683 Group Theory +1603.05811 Number Theory +1603.06451 Strongly Correlated Electrons +1603.06697 Complex Variables +1603.07375 +1603.07708 Number Theory +1603.08089 Computers and Society +1603.08531 Theory +1603.09268 Theory +1603.09504 Instrumentation and Detectors +1603.09508 Instrumentation and Detectors +1603.09516 Instrumentation and Detectors +1604.00236 Instrumentation and Detectors +1604.00486 Combinatorics +1604.00670 Instrumentation and Methods for Astrophysics +1604.00865 Quantum Gases +1604.00957 Disordered Systems and Neural Networks +1604.01486 Rings and Algebras +1604.01549 Rings and Algebras +1604.02410 Number Theory +1604.02520 Probability +1604.02576 Statistics Theory +1604.03173 Dynamical Systems +1604.03276 Sound +1604.03653 Analysis of PDEs +1604.03663 +1604.04369 Differential Geometry +1604.04544 Earth and Planetary Astrophysics +1604.05138 Optics +1604.06217 +1604.06665 Numerical Analysis +1604.06816 Optics +1604.06869 Classical Analysis and ODEs +1604.07139 Computer Science and Game Theory +1604.07241 Solar and Stellar Astrophysics +1604.07300 Statistics Theory +1604.07354 Methodology +1604.07385 Combinatorics +1604.07444 Physics and Society +1604.07595 Functional Analysis +1604.07599 Instrumentation and Detectors +1604.07690 Mathematical Finance +1604.08269 Computer Vision and Pattern Recognition +1604.08363 Probability +1604.08379 Computer Science and Game Theory +1604.08701 Solar and Stellar Astrophysics +1605.00049 Classical Analysis and ODEs +1605.00239 Phenomenology +1605.00365 Computational Physics +1605.00391 Methodology +1605.00758 Methodology +1605.01642 Mesoscale and Nanoscale Physics +1605.01888 Combinatorics +1605.02043 Distributed, Parallel, and Cluster Computing +1605.02077 Statistics Theory +1605.02078 +1605.02590 +1605.02655 Commutative Algebra +1605.02824 Databases +1605.02943 Probability +1605.02972 Combinatorics +1605.03113 Quantum Algebra +1605.03141 Combinatorics +1605.03152 Data Structures and Algorithms +1605.03272 Strongly Correlated Electrons +1605.04270 Multimedia +1605.04468 Biomolecules +1605.04973 Optimization and Control +1605.05182 Mesoscale and Nanoscale Physics +1605.05194 Optimization and Control +1605.05409 Mesoscale and Nanoscale Physics +1605.05578 Information Theory +1605.05834 Optics +1605.06739 Number Theory +1605.06924 Mesoscale and Nanoscale Physics +1605.06943 Soft Condensed Matter +1605.07269 Spectral Theory +1605.07760 Human-Computer Interaction +1605.08254 Machine Learning +1605.08320 +1605.08426 Materials Science +1605.09030 Optimization and Control +1605.09132 Rings and Algebras +1605.09183 Solar and Stellar Astrophysics +1605.09329 Probability +1605.09511 Physics and Society +1605.09534 Rings and Algebras +1605.09565 +1605.09598 +1606.00045 Geometric Topology +1606.00209 High Energy Astrophysical Phenomena +1606.00554 Phenomenology +1606.00569 Operator Algebras +1606.01316 Machine Learning +1606.01406 Chemical Physics +1606.02189 Strongly Correlated Electrons +1606.02268 Theory +1606.02937 Functional Analysis +1606.03262 Statistical Mechanics +1606.03571 Networking and Internet Architecture +1606.04113 Phenomenology +1606.04643 +1606.04898 High Energy Astrophysical Phenomena +1606.05121 Strongly Correlated Electrons +1606.05291 Spectral Theory +1606.05320 Machine Learning +1606.05381 Computer Vision and Pattern Recognition +1606.05478 Functional Analysis +1606.05696 Distributed, Parallel, and Cluster Computing +1606.05800 Statistical Mechanics +1606.05825 Networking and Internet Architecture +1606.05883 Chemical Physics +1606.06293 Cosmology and Nongalactic Astrophysics +1606.06469 Functional Analysis +1606.06509 Social and Information Networks +1606.06529 Analysis of PDEs +1606.06585 Soft Condensed Matter +1606.07120 Classical Analysis and ODEs +1606.07717 Emerging Technologies +1606.07773 Phenomenology +1606.07789 Materials Science +1606.08263 Statistical Mechanics +1606.08349 Functional Analysis +1606.08432 Number Theory +1606.08468 Theory +1606.08692 Probability +1606.09183 Combinatorics +1606.09287 Materials Science +1606.09504 Experiment +1607.00099 Rings and Algebras +1607.00257 Combinatorics +1607.00267 Computer Vision and Pattern Recognition +1607.00427 Analysis of PDEs +1607.00495 Solar and Stellar Astrophysics +1607.00525 Numerical Analysis +1607.01294 Computational Geometry +1607.01367 Applications +1607.01720 Cosmology and Nongalactic Astrophysics +1607.01860 Quantum Gases +1607.02272 Statistical Mechanics +1607.02756 Classical Analysis and ODEs +1607.02798 Numerical Analysis +1607.03379 Materials Science +1607.03867 Astrophysics of Galaxies +1607.03960 Physics Education +1607.04095 Analysis of PDEs +1607.04162 Logic in Computer Science +1607.04853 Computation and Language +1607.06308 Solar and Stellar Astrophysics +1607.07007 Operator Algebras +1607.07538 Phenomenology +1607.07566 Strongly Correlated Electrons +1607.07933 Probability +1607.08375 Phenomenology +1607.08707 Medical Physics +1608.00245 Superconductivity +1608.00284 Algebraic Geometry +1608.00923 Materials Science +1608.01090 Analysis of PDEs +1608.01147 Lattice +1608.01193 Soft Condensed Matter +1608.01389 Experiment +1608.01884 Artificial Intelligence +1608.02022 Number Theory +1608.02055 Combinatorics +1608.02134 Algebraic Geometry +1608.02481 Lattice +1608.02904 Information Retrieval +1608.02998 Materials Science +1608.03251 Physics and Society +1608.04379 Probability +1608.04659 Emerging Technologies +1608.05112 Astrophysics of Galaxies +1608.05178 Group Theory +1608.05522 Information Theory +1608.06072 Learning +1608.06233 Combinatorics +1608.06374 Learning +1608.08185 Group Theory +1608.08187 Atmospheric and Oceanic Physics +1608.08260 Solar and Stellar Astrophysics +1609.00121 Algebraic Geometry +1609.00436 Analysis of PDEs +1609.00574 Algebraic Geometry +1609.00819 Pricing of Securities +1609.00901 +1609.00926 Statistical Finance +1609.00965 Metric Geometry +1609.01093 Operator Algebras +1609.02080 Logic +1609.02272 Biological Physics +1609.02943 Cryptography and Security +1609.02962 Instrumentation and Detectors +1609.02978 Optics +1609.03382 Theory +1609.03445 Phenomenology +1609.03543 Artificial Intelligence +1609.03556 Combinatorics +1609.03649 Materials Science +1609.03676 Theory +1609.04338 Physics and Society +1609.04439 Formal Languages and Automata Theory +1609.04451 High Energy Astrophysical Phenomena +1609.04518 Accelerator Physics +1609.04569 Hardware Architecture +1609.04688 Phenomenology +1609.04804 Solar and Stellar Astrophysics +1609.05403 Quantum Algebra +1609.05518 Artificial Intelligence +1609.06323 Computer Vision and Pattern Recognition +1609.06557 Theory +1609.06660 Optimization and Control +1609.06820 +1609.06886 Phenomenology +1609.07069 +1609.07118 Physics and Society +1609.07514 Instrumentation and Detectors +1609.07580 Social and Information Networks +1609.07695 Systems and Control +1609.07810 Differential Geometry +1609.07925 Symplectic Geometry +1609.07964 Databases +1609.07971 Probability +1609.08089 Computers and Society +1609.08252 Optimization and Control +1609.08370 Combinatorics +1609.08738 Probability +1609.08767 Data Structures and Algorithms +1609.09134 Discrete Mathematics +1609.09176 Analysis of PDEs +1609.09193 +1609.09232 Theory +1609.09288 Logic in Computer Science +1609.09300 Solar and Stellar Astrophysics +1609.09302 Theory +1609.09346 Computational Physics +1609.09349 +1609.09475 Computer Vision and Pattern Recognition +1609.09568 Superconductivity +1609.09611 Disordered Systems and Neural Networks +1609.09626 Earth and Planetary Astrophysics +1609.09844 +1610.00001 Systems and Control +1610.00002 Fluid Dynamics +1610.00003 Instrumentation and Detectors +1610.00004 Computational Engineering, Finance, and Science +1610.00008 Astrophysics of Galaxies +1610.00018 Theory +1610.00021 Probability +1610.00024 Distributed, Parallel, and Cluster Computing +1610.00027 Analysis of PDEs +1610.00029 Computer Vision and Pattern Recognition +1610.00030 Computation and Language +1610.00031 Computation and Language +1610.00037 Category Theory +1610.00038 Strongly Correlated Electrons +1610.00039 Applications +1610.00041 +1610.00043 Information Theory +1610.00044 Networking and Internet Architecture +1610.00045 Optics +1610.00046 Group Theory +1610.00048 Other Statistics +1610.00049 Distributed, Parallel, and Cluster Computing +1610.00052 Materials Science +1610.00054 Artificial Intelligence +1610.00055 Commutative Algebra +1610.00057 Information Theory +1610.00058 Information Theory +1610.00060 Analysis of PDEs +1610.00061 Accelerator Physics +1610.00062 Mesoscale and Nanoscale Physics +1610.00064 Learning +1610.00066 Group Theory +1610.00067 +1610.00068 Methodology +1610.00071 Networking and Internet Architecture +1610.00072 Computation and Language +1610.00074 Fluid Dynamics +1610.00076 Classical Analysis and ODEs +1610.00077 Other Quantitative Biology +1610.00078 Metric Geometry +1610.00079 Numerical Analysis +1610.00080 Optics +1610.00084 Spectral Theory +1610.00085 Learning +1610.00086 Social and Information Networks +1610.00087 Sound +1610.00088 Rings and Algebras +1610.00089 Systems and Control +1610.00092 Group Theory +1610.00093 Rings and Algebras +1610.00098 Classical Analysis and ODEs +1610.00099 Superconductivity +1610.00101 Statistical Mechanics +1610.00104 +1610.00105 +1610.00106 Instrumentation and Methods for Astrophysics +1610.00107 Combinatorics +1610.00108 Number Theory +1610.00109 Superconductivity +1610.00111 Operator Algebras +1610.00115 Theory +1610.00116 Combinatorics +1610.00118 Information Theory +1610.00120 Statistical Mechanics +1610.00121 Genomics +1610.00128 Number Theory +1610.00132 History and Philosophy of Physics +1610.00134 Computer Vision and Pattern Recognition +1610.00137 Representation Theory +1610.00139 Discrete Mathematics +1610.00142 Physics and Society +1610.00145 General Topology +1610.00146 Cosmology and Nongalactic Astrophysics +1610.00147 Methodology +1610.00148 Combinatorics +1610.00149 Performance +1610.00152 Mesoscale and Nanoscale Physics +1610.00155 Computational Geometry +1610.00157 Computer Science and Game Theory +1610.00158 Algebraic Topology +1610.00159 Computational Complexity +1610.00164 Number Theory +1610.00165 Materials Science +1610.00166 Number Theory +1610.00167 Dynamical Systems +1610.00172 Analysis of PDEs +1610.00175 Computer Vision and Pattern Recognition +1610.00176 Commutative Algebra +1610.00177 +1610.00178 Fluid Dynamics +1610.00179 Combinatorics +1610.00181 Biomolecules +1610.00183 Biological Physics +1610.00184 Biomolecules +1610.00185 Information Theory +1610.00188 Analysis of PDEs +1610.00189 Machine Learning +1610.00191 Probability +1610.00194 Probability +1610.00195 Applications +1610.00196 Optics +1610.00198 Group Theory +1610.00199 Numerical Analysis +1610.00200 Statistical Mechanics +1610.00201 Mesoscale and Nanoscale Physics +1610.00202 Strongly Correlated Electrons +1610.00203 Analysis of PDEs +1610.00204 Analysis of PDEs +1610.00205 Algebraic Geometry +1610.00207 Methodology +1610.00208 Probability +1610.00209 Data Structures and Algorithms +1610.00210 Instrumentation and Detectors +1610.00211 Computation and Language +1610.00212 Algebraic Geometry +1610.00213 Logic +1610.00214 Human-Computer Interaction +1610.00216 Biomolecules +1610.00219 Social and Information Networks +1610.00222 Mesoscale and Nanoscale Physics +1610.00224 Analysis of PDEs +1610.00225 +1610.00227 Information Theory +1610.00229 Analysis of PDEs +1610.00231 Chemical Physics +1610.00236 Optics +1610.00237 Analysis of PDEs +1610.00238 Combinatorics +1610.00241 Theory +1610.00243 Learning +1610.00245 Mesoscale and Nanoscale Physics +1610.00246 Machine Learning +1610.00248 Computers and Society +1610.00250 Earth and Planetary Astrophysics +1610.00254 Astrophysics of Galaxies +1610.00255 High Energy Astrophysical Phenomena +1610.00256 Pricing of Securities +1610.00259 Statistical Finance +1610.00262 Neurons and Cognition +1610.00265 Instrumentation and Methods for Astrophysics +1610.00266 History and Philosophy of Physics +1610.00268 Classical Analysis and ODEs +1610.00269 Materials Science +1610.00271 Materials Science +1610.00272 Instrumentation and Methods for Astrophysics +1610.00274 Economics +1610.00275 Lattice +1610.00276 Dynamical Systems +1610.00277 Computation and Language +1610.00278 Analysis of PDEs +1610.00279 Computer Vision and Pattern Recognition +1610.00281 Quantum Gases +1610.00282 Probability +1610.00289 Networking and Internet Architecture +1610.00290 Other Statistics +1610.00291 Computer Vision and Pattern Recognition +1610.00293 Populations and Evolution +1610.00297 Combinatorics +1610.00299 Commutative Algebra +1610.00300 Computational Geometry +1610.00302 Theory +1610.00305 High Energy Astrophysical Phenomena +1610.00307 Computer Vision and Pattern Recognition +1610.00310 Materials Science +1610.00311 Computation and Language +1610.00312 Mathematical Finance +1610.00313 Group Theory +1610.00316 Statistics Theory +1610.00317 Dynamical Systems +1610.00318 Computer Vision and Pattern Recognition +1610.00319 Logic +1610.00320 Computer Vision and Pattern Recognition +1610.00321 Medical Physics +1610.00322 Classical Analysis and ODEs +1610.00323 Formal Languages and Automata Theory +1610.00324 Learning +1610.00326 Theory +1610.00330 Geometric Topology +1610.00331 Formal Languages and Automata Theory +1610.00332 Statistical Finance +1610.00333 Formal Languages and Automata Theory +1610.00336 +1610.00338 Formal Languages and Automata Theory +1610.00340 Molecular Networks +1610.00341 Metric Geometry +1610.00343 Operator Algebras +1610.00344 Strongly Correlated Electrons +1610.00345 Methodology +1610.00348 Systems and Control +1610.00349 Classical Analysis and ODEs +1610.00351 Differential Geometry +1610.00356 +1610.00357 +1610.00358 Probability +1610.00361 Computational Geometry +1610.00362 Systems and Control +1610.00365 Materials Science +1610.00366 Artificial Intelligence +1610.00367 Number Theory +1610.00368 Information Theory +1610.00370 Logic +1610.00371 Solar and Stellar Astrophysics +1610.00372 Combinatorics +1610.00375 Chemical Physics +1610.00376 +1610.00379 +1610.00380 Spectral Theory +1610.00381 Information Theory +1610.00382 Computer Vision and Pattern Recognition +1610.00383 Biological Physics +1610.00384 Information Theory +1610.00385 Materials Science +1610.00386 Computer Vision and Pattern Recognition +1610.00389 Astrophysics of Galaxies +1610.00390 Mesoscale and Nanoscale Physics +1610.00395 Mathematical Finance +1610.00396 Algebraic Geometry +1610.00397 Numerical Analysis +1610.00401 Geometric Topology +1610.00404 Numerical Analysis +1610.00405 Computer Vision and Pattern Recognition +1610.00409 Materials Science +1610.00410 Computer Vision and Pattern Recognition +1610.00411 +1610.00412 Phenomenology +1610.00413 Optics +1610.00418 Theory +1610.00419 Statistical Mechanics +1610.00424 Combinatorics +1610.00425 Functional Analysis +1610.00427 Computer Vision and Pattern Recognition +1610.00429 High Energy Astrophysical Phenomena +1610.00430 Materials Science +1610.00433 Instrumentation and Detectors +1610.00434 Cryptography and Security +1610.00435 Materials Science +1610.00436 Analysis of PDEs +1610.00438 Instrumentation and Methods for Astrophysics +1610.00442 Artificial Intelligence +1610.00443 Theory +1610.00445 +1610.00446 Adaptation and Self-Organizing Systems +1610.00447 Phenomenology +1610.00448 +1610.00449 +1610.00450 Logic in Computer Science +1610.00452 Populations and Evolution +1610.00453 Statistical Mechanics +1610.00456 Analysis of PDEs +1610.00457 Distributed, Parallel, and Cluster Computing +1610.00458 Strongly Correlated Electrons +1610.00459 Other Condensed Matter +1610.00460 Computers and Society +1610.00461 Networking and Internet Architecture +1610.00463 Materials Science +1610.00466 Theory +1610.00467 Representation Theory +1610.00470 Systems and Control +1610.00471 Medical Physics +1610.00472 Materials Science +1610.00476 Populations and Evolution +1610.00477 Group Theory +1610.00481 Probability +1610.00483 +1610.00490 Chemical Physics +1610.00491 Dynamical Systems +1610.00493 Databases +1610.00498 Materials Science +1610.00502 Software Engineering +1610.00503 Analysis of PDEs +1610.00505 Data Structures and Algorithms +1610.00507 Analysis of PDEs +1610.00510 History and Overview +1610.00511 Dynamical Systems +1610.00513 Strongly Correlated Electrons +1610.00514 Probability +1610.00515 Logic +1610.00516 Symplectic Geometry +1610.00517 Logic +1610.00519 +1610.00520 Machine Learning +1610.00522 Probability +1610.00524 Astrophysics of Galaxies +1610.00525 Commutative Algebra +1610.00526 +1610.00528 +1610.00529 Robotics +1610.00532 Group Theory +1610.00536 +1610.00537 +1610.00538 Mesoscale and Nanoscale Physics +1610.00539 +1610.00541 Combinatorics +1610.00542 Neurons and Cognition +1610.00544 History and Overview +1610.00545 Spectral Theory +1610.00546 Phenomenology +1610.00549 +1610.00551 Rings and Algebras +1610.00552 Computation and Language +1610.00558 Functional Analysis +1610.00559 Instrumentation and Methods for Astrophysics +1610.00560 Performance +1610.00561 Exactly Solvable and Integrable Systems +1610.00562 Chemical Physics +1610.00563 Differential Geometry +1610.00564 Learning +1610.00566 Symplectic Geometry +1610.00567 Number Theory +1610.00570 Combinatorics +1610.00571 Computational Complexity +1610.00572 Computation and Language +1610.00573 Solar and Stellar Astrophysics +1610.00574 Databases +1610.00575 Data Structures and Algorithms +1610.00577 Pricing of Securities +1610.00578 Solar and Stellar Astrophysics +1610.00579 Learning +1610.00580 Learning +1610.00581 +1610.00582 Instrumentation and Methods for Astrophysics +1610.00584 +1610.00585 Combinatorics +1610.00588 Tissues and Organs +1610.00590 +1610.00592 Materials Science +1610.00593 High Energy Astrophysical Phenomena +1610.00594 Materials Science +1610.00596 Statistical Mechanics +1610.00598 History and Overview +1610.00599 Complex Variables +1610.00600 Earth and Planetary Astrophysics +1610.00602 Computation and Language +1610.00604 Plasma Physics +1610.00607 Solar and Stellar Astrophysics +1610.00608 Strongly Correlated Electrons +1610.00611 Neurons and Cognition +1610.00613 +1610.00614 Logic +1610.00615 Geometric Topology +1610.00617 Soft Condensed Matter +1610.00618 History and Overview +1610.00620 Networking and Internet Architecture +1610.00621 Atmospheric and Oceanic Physics +1610.00623 Biological Physics +1610.00624 Distributed, Parallel, and Cluster Computing +1610.00625 Numerical Analysis +1610.00626 +1610.00627 +1610.00630 Systems and Control +1610.00632 Cryptography and Security +1610.00634 Computation and Language +1610.00635 Networking and Internet Architecture +1610.00638 Quantitative Methods +1610.00640 Cryptography and Security +1610.00641 Probability +1610.00643 Chemical Physics +1610.00650 Materials Science +1610.00651 Computer Science and Game Theory +1610.00652 Metric Geometry +1610.00653 Statistical Mechanics +1610.00654 Theory +1610.00656 Physics and Society +1610.00661 Quantitative Methods +1610.00663 Information Theory +1610.00664 Social and Information Networks +1610.00665 Solar and Stellar Astrophysics +1610.00667 Machine Learning +1610.00668 Algebraic Geometry +1610.00671 +1610.00673 Learning +1610.00674 Analysis of PDEs +1610.00675 Symplectic Geometry +1610.00676 Analysis of PDEs +1610.00677 Analysis of PDEs +1610.00678 Experiment +1610.00682 +1610.00684 Probability +1610.00687 Geophysics +1610.00690 Statistics Theory +1610.00691 Cosmology and Nongalactic Astrophysics +1610.00692 Operator Algebras +1610.00693 Instrumentation and Methods for Astrophysics +1610.00697 Theory +hep-th/0208104 Theory +hep-th/0302099 Theory +hep-th/0402023 Theory +hep-th/0502053 Theory +hep-th/0605005 Theory +hep-th/0606034 Theory +hep-th/0701244 Theory +hep-th/9711036 Theory +hep-th/9810064 Theory +0704.3388 Geometric Topology +0709.2761 +0804.4154 Combinatorics +0912.5039 Combinatorics +1001.1002 Combinatorics +1004.1844 Algebraic Geometry +1007.1897 Combinatorics +1007.3252 Cosmology and Nongalactic Astrophysics +1008.1963 Cosmology and Nongalactic Astrophysics +1012.3716 Combinatorics +1101.4883 Algebraic Topology +1104.2414 Chemical Physics +1106.2870 Combinatorics +1106.2871 Combinatorics +1202.0844 Algebraic Topology +1203.2891 +1204.5709 K-Theory and Homology +1205.3303 Statistical Mechanics +1205.4185 Theory +1207.4382 Data Structures and Algorithms +1208.5239 Probability +1210.1199 +1211.3336 Analysis of PDEs +1211.4975 Probability +1212.2196 Algebraic Geometry +1301.6042 Differential Geometry +1303.2648 Algebraic Geometry +1303.4454 Algebraic Geometry +1303.7062 +1303.7147 Materials Science +1305.1653 Probability +1305.5719 Systems and Control +1306.4816 Probability +1306.6109 Networking and Internet Architecture +1307.7170 Systems and Control +1308.2263 Differential Geometry +1309.1439 Theory +1309.2621 Probability +1310.1696 Differential Geometry +1312.7842 Theory +1401.0936 Data Structures and Algorithms +1401.4888 +1402.6792 Social and Information Networks +1403.0647 Spectral Theory +1403.4269 Optics +1403.5021 Mesoscale and Nanoscale Physics +1404.0390 Data Structures and Algorithms +1404.2481 Differential Geometry +1404.5167 Materials Science +1405.5919 Data Structures and Algorithms +1406.2138 Symplectic Geometry +1406.3291 Theory +1406.4047 Systems and Control +1406.5392 Methodology +1406.7844 Experiment +1408.1763 Instrumentation and Detectors +1408.2266 Soft Condensed Matter +1408.3210 +1408.4953 Category Theory +1408.6427 Information Theory +1409.2547 Functional Analysis +1410.0248 Category Theory +1410.3695 Optimization and Control +1410.4430 Probability +1410.5943 Metric Geometry +1410.8346 +1411.0194 Data Structures and Algorithms +1411.2228 Differential Geometry +1411.2320 Algebraic Topology +1411.4186 Optimization and Control +1411.4498 Data Structures and Algorithms +1411.6502 General Mathematics +1411.7490 Algebraic Topology +1412.3363 Differential Geometry +1412.4404 Combinatorics +1412.5773 Populations and Evolution +1412.7758 Geometric Topology +1502.01421 Geophysics +1502.02246 +1502.02997 Dynamical Systems +1502.04880 Representation Theory +1502.05524 +1502.06685 Theory +1502.06986 Probability +1503.00763 Soft Condensed Matter +1503.00921 Representation Theory +1503.02161 Algebraic Geometry +1503.02202 Analysis of PDEs +1503.03096 +1503.06877 Optimization and Control +1503.08757 Soft Condensed Matter +1504.00922 Symplectic Geometry +1504.02926 Computer Science and Game Theory +1504.04818 Information Retrieval +1504.06456 Quantum Algebra +1504.07809 Optics +1505.00461 +1505.00677 +1505.00679 +1505.01302 +1505.02329 Algebraic Geometry +1505.03470 +1505.03953 Artificial Intelligence +1505.04160 Experiment +1505.04837 Theory +1505.05352 Number Theory +1505.05903 Algebraic Geometry +1505.05972 Learning +1505.08050 Complex Variables +1506.00018 Dynamical Systems +1506.00556 Probability +1506.00990 Learning +1506.01266 Functional Analysis +1506.01859 Numerical Analysis +1506.02910 +1506.03739 Optics +1506.04743 Mesoscale and Nanoscale Physics +1506.07722 Statistics Theory +1506.08245 Geometric Topology +1506.09194 Quantum Algebra +1507.03222 Phenomenology +1507.03847 +1507.04108 +1507.04410 Physics and Society +1507.05796 Distributed, Parallel, and Cluster Computing +1507.08327 Functional Analysis +1507.08626 Differential Geometry +1507.08965 Functional Analysis +1508.00147 Mesoscale and Nanoscale Physics +1508.01068 Logic +1508.01943 Rings and Algebras +1508.02149 Group Theory +1508.02213 Classical Physics +1508.02595 Strongly Correlated Electrons +1508.03113 Social and Information Networks +1508.03712 Machine Learning +1508.05259 Mesoscale and Nanoscale Physics +1508.05488 Computational Geometry +1508.05780 +1508.06201 Mesoscale and Nanoscale Physics +1508.06870 Materials Science +1508.07513 Probability +1509.00146 Phenomenology +1509.01866 Data Structures and Algorithms +1509.02894 Fluid Dynamics +1509.02957 Computation +1509.03382 Optics +1509.04055 Instrumentation and Detectors +1509.05326 Applications +1509.08764 Artificial Intelligence +1509.08907 Theory +1510.00457 Group Theory +1510.01294 +1510.02759 Mesoscale and Nanoscale Physics +1510.03508 +1510.04246 Numerical Analysis +1510.05185 Social and Information Networks +1510.05220 Mesoscale and Nanoscale Physics +1510.05522 +1510.05540 Phenomenology +1510.05956 Probability +1510.06630 Probability +1510.08014 Optics +1511.00347 Systems and Control +1511.00455 Statistical Mechanics +1511.01275 Optics +1511.01292 +1511.01365 Optimization and Control +1511.02546 Analysis of PDEs +1511.03562 Instrumentation and Methods for Astrophysics +1511.03588 Combinatorics +1511.03706 Combinatorics +1511.03881 Information Theory +1511.04189 Symplectic Geometry +1511.05242 Phenomenology +1511.06092 Superconductivity +1511.07452 Phenomenology +1511.07838 Learning +1511.08625 Strongly Correlated Electrons +1512.00460 Phenomenology +1512.00808 +1512.01210 Computational Complexity +1512.01265 Quantum Gases +1512.01846 High Energy Astrophysical Phenomena +1512.02012 Category Theory +1512.02017 Computer Vision and Pattern Recognition +1512.02467 Statistical Mechanics +1512.02898 Digital Libraries +1512.03090 Physics and Society +1512.04279 Theory +1512.04421 Functional Analysis +1512.06011 +1512.06559 Computer Vision and Pattern Recognition +1512.06851 Phenomenology +1512.07747 Number Theory +1512.08159 Statistics Theory +1512.08205 Data Analysis, Statistics and Probability +1512.08212 Computer Vision and Pattern Recognition +1512.08456 Computers and Society +1512.08744 Statistical Mechanics +1601.00090 Complex Variables +1601.01946 Theory +1601.02430 Numerical Analysis +1601.03905 Lattice +1601.04200 Numerical Analysis +1601.05026 Mesoscale and Nanoscale Physics +1601.05506 Molecular Networks +1601.06854 Analysis of PDEs +1601.06894 Superconductivity +1601.07970 Populations and Evolution +1602.00627 Analysis of PDEs +1602.00836 Symbolic Computation +1602.00839 Trading and Market Microstructure +1602.01582 Learning +1602.01690 Learning +1602.01925 Computation and Language +1602.01959 Distributed, Parallel, and Cluster Computing +1602.02018 Data Structures and Algorithms +1602.02109 Phenomenology +1602.02724 Classical Analysis and ODEs +1602.03012 Computer Vision and Pattern Recognition +1602.03559 Probability +1602.03876 Chemical Physics +1602.04052 Computer Vision and Pattern Recognition +1602.04474 Machine Learning +1602.04482 Information Theory +1602.04703 +1602.04900 Networking and Internet Architecture +1602.05995 Analysis of PDEs +1602.06628 Phenomenology +1602.06855 Economics +1602.07189 +1602.07307 Theory +1602.07375 Classical Analysis and ODEs +1602.07512 General Physics +1602.07597 Materials Science +1602.07831 Strongly Correlated Electrons +1602.08332 Artificial Intelligence +1602.08814 High Energy Astrophysical Phenomena +1603.00846 Geometric Topology +1603.00992 +1603.01051 Analysis of PDEs +1603.02287 Strongly Correlated Electrons +1603.02618 Computation and Language +1603.02920 +1603.03678 Machine Learning +1603.03794 Strongly Correlated Electrons +1603.04034 Optimization and Control +1603.04287 Software Engineering +1603.04899 Superconductivity +1603.05143 Materials Science +1603.05794 Populations and Evolution +1603.05887 Computational Physics +1603.06352 Learning +1603.06666 Solar and Stellar Astrophysics +1603.07707 Atomic Physics +1603.07717 Materials Science +1603.07842 Physics and Society +1603.07925 Astrophysics of Galaxies +1603.08074 Symplectic Geometry +1603.08954 Algebraic Geometry +1603.09320 Data Structures and Algorithms +1603.09477 +1604.00356 Quantum Gases +1604.00623 +1604.01124 Quantum Algebra +1604.01876 +1604.02309 Statistics Theory +1604.02336 Artificial Intelligence +1604.02568 Numerical Analysis +1604.02885 Computer Vision and Pattern Recognition +1604.02892 Computers and Society +1604.03382 Algebraic Geometry +1604.04486 Phenomenology +1604.04645 Probability +1604.04769 Phenomenology +1604.04963 Mathematical Finance +1604.05003 Theory +1604.05088 Instrumentation and Methods for Astrophysics +1604.05362 Soft Condensed Matter +1604.05387 +1604.05526 Atomic Physics +1604.06280 +1604.06372 +1604.06984 Distributed, Parallel, and Cluster Computing +1604.07218 Phenomenology +1604.07265 +1604.07489 Chemical Physics +1604.07888 Algebraic Geometry +1604.07928 Learning +1604.08179 Computer Science and Game Theory +1604.08257 Fluid Dynamics +1604.08325 Representation Theory +1604.08871 Theory +1605.00388 Machine Learning +1605.00547 +1605.00759 Theory +1605.00850 Mesoscale and Nanoscale Physics +1605.00956 +1605.01151 Computers and Society +1605.01259 Superconductivity +1605.01294 Number Theory +1605.01506 Number Theory +1605.01676 Symplectic Geometry +1605.01847 Superconductivity +1605.01994 Distributed, Parallel, and Cluster Computing +1605.02371 Phenomenology +1605.02650 Instrumentation and Methods for Astrophysics +1605.03364 Numerical Analysis +1605.03586 Astrophysics of Galaxies +1605.03789 Combinatorics +1605.04131 Optimization and Control +1605.04559 Cryptography and Security +1605.04582 Hardware Architecture +1605.04637 Number Theory +1605.05219 Databases +1605.05232 Optimization and Control +1605.05256 Theory +1605.05490 Combinatorics +1605.05568 Number Theory +1605.05692 Combinatorics +1605.05698 Combinatorics +1605.05706 Combinatorics +1605.05747 Combinatorics +1605.05807 Artificial Intelligence +1605.06077 Geophysics +1605.06084 Dynamical Systems +1605.06217 Computer Vision and Pattern Recognition +1605.06232 Complex Variables +1605.06506 Phenomenology +1605.06508 K-Theory and Homology +1605.06520 Plasma Physics +1605.06527 Dynamical Systems +1605.06532 Numerical Analysis +1605.06533 Cryptography and Security +1605.06535 Instrumentation and Detectors +1605.06536 Computers and Society +1605.06537 Computers and Society +1605.06538 Information Retrieval +1605.06541 +1605.06544 Neurons and Cognition +1605.06546 Combinatorics +1605.06547 Phenomenology +1605.06548 Materials Science +1605.06555 Social and Information Networks +1605.06557 Systems and Control +1605.06559 Quantum Gases +1605.06560 Learning +1605.06561 Learning +1605.06564 Computer Science and Game Theory +1605.06566 Statistics Theory +1605.06567 Astrophysics of Galaxies +1605.06568 Algebraic Geometry +1605.06576 Genomics +1605.06579 Methodology +1605.06580 Optics +1605.06581 Networking and Internet Architecture +1605.06583 Rings and Algebras +1605.06585 Computation +1605.06587 Optics +1605.06589 Statistical Mechanics +1605.06592 Differential Geometry +1605.06593 Learning +1605.06595 Instrumentation and Methods for Astrophysics +1605.06597 Computer Vision and Pattern Recognition +1605.06599 Analysis of PDEs +1605.06601 Classical Analysis and ODEs +1605.06602 Differential Geometry +1605.06608 Cryptography and Security +1605.06610 Cryptography and Security +1605.06619 Optimization and Control +1605.06620 Functional Analysis +1605.06621 Mesoscale and Nanoscale Physics +1605.06623 Mesoscale and Nanoscale Physics +1605.06624 Numerical Analysis +1605.06625 Superconductivity +1605.06628 Number Theory +1605.06631 Number Theory +1605.06633 Statistical Mechanics +1605.06636 Learning +1605.06639 Dynamical Systems +1605.06642 Algebraic Geometry +1605.06645 Optimization and Control +1605.06647 Combinatorics +1605.06652 Learning +1605.06653 Information Theory +1605.06654 Systems and Control +1605.06657 Group Theory +1605.06658 Computers and Society +1605.06659 Computers and Society +1605.06660 Functional Analysis +1605.06662 Analysis of PDEs +1605.06666 Numerical Analysis +1605.06668 Software Engineering +1605.06669 Software Engineering +1605.06670 Software Engineering +1605.06671 Astrophysics of Galaxies +1605.06673 Learning +1605.06677 Information Theory +1605.06681 Functional Analysis +1605.06682 Dynamical Systems +1605.06683 Complex Variables +1605.06684 Systems and Control +1605.06685 Materials Science +1605.06690 Analysis of PDEs +1605.06691 Differential Geometry +1605.06693 Information Retrieval +1605.06695 Computer Vision and Pattern Recognition +1605.06696 Commutative Algebra +1605.06700 Statistical Finance +1605.06703 Statistics Theory +1605.06704 Discrete Mathematics +1605.06706 Other Quantitative Biology +1605.06707 Fluid Dynamics +1605.06710 Neural and Evolutionary Computing +1605.06712 Phenomenology +1605.06714 Neural and Evolutionary Computing +1605.06715 Machine Learning +1605.06716 Soft Condensed Matter +1605.06717 Materials Science +1605.06718 Methodology +1605.06721 Social and Information Networks +1605.06722 Optimization and Control +1605.06726 Plasma Physics +1605.06727 +1605.06729 Software Engineering +1605.06735 Computational Engineering, Finance, and Science +1605.06740 Analysis of PDEs +1605.06745 Phenomenology +1605.06747 +1605.06748 Analysis of PDEs +1605.06752 Combinatorics +1605.06754 Combinatorics +1605.06755 Combinatorics +1605.06757 Other Condensed Matter +1605.06759 Statistics Theory +1605.06760 Numerical Analysis +1605.06761 Theory +1605.06762 Chemical Physics +1605.06763 Complex Variables +1605.06764 Computer Vision and Pattern Recognition +1605.06766 Quantum Algebra +1605.06767 K-Theory and Homology +1605.06768 Functional Analysis +1605.06770 Computation and Language +1605.06774 Number Theory +1605.06776 Computer Vision and Pattern Recognition +1605.06778 Computer Vision and Pattern Recognition +1605.06779 Applications +1605.06780 +1605.06783 Differential Geometry +1605.06787 Mesoscale and Nanoscale Physics +1605.06790 Populations and Evolution +1605.06795 Experiment +1605.06798 Instrumentation and Detectors +1605.06801 Computational Complexity +1605.06806 Combinatorics +1605.06807 Materials Science +1605.06809 Soft Condensed Matter +1605.06810 Quantum Algebra +1605.06811 Instrumentation and Methods for Astrophysics +1605.06813 Theory +1605.06814 Distributed, Parallel, and Cluster Computing +1605.06815 Geometric Topology +1605.06816 Mesoscale and Nanoscale Physics +1605.06818 Probability +1605.06819 Probability +1605.06820 Computer Vision and Pattern Recognition +1605.06824 Materials Science +1605.06825 Combinatorics +1605.06827 Information Theory +1605.06831 Mesoscale and Nanoscale Physics +1605.06835 Category Theory +1605.06837 Methodology +1605.06840 Portfolio Management +1605.06841 Analysis of PDEs +1605.06847 Information Theory +1605.06849 Portfolio Management +1605.06850 Strongly Correlated Electrons +1605.06852 Data Structures and Algorithms +1605.06853 Robotics +1605.06855 Social and Information Networks +1605.06860 Dynamical Systems +1605.06861 Materials Science +1605.06862 Algebraic Geometry +1605.06863 Computer Vision and Pattern Recognition +1605.06864 Dynamical Systems +1605.06865 Databases +1605.06868 Logic in Computer Science +1605.06871 Phenomenology +1605.06878 Computer Vision and Pattern Recognition +1605.06880 +1605.06882 Distributed, Parallel, and Cluster Computing +1605.06883 Mesoscale and Nanoscale Physics +1605.06885 Computer Vision and Pattern Recognition +1605.06888 Algebraic Geometry +1605.06889 Classical Analysis and ODEs +1605.06894 Learning +1605.06900 Optimization and Control +1605.06901 Rings and Algebras +1605.06903 Systems and Control +1605.06904 Distributed, Parallel, and Cluster Computing +1605.06905 Analysis of PDEs +1605.06906 Analysis of PDEs +1605.06910 Functional Analysis +1605.06912 Numerical Analysis +1605.06913 +1605.06915 Group Theory +1605.06917 Dynamical Systems +1605.06918 Combinatorics +1605.06921 Artificial Intelligence +1605.06926 Mesoscale and Nanoscale Physics +1605.06927 Information Theory +1605.06928 Software Engineering +1605.06929 Theory +1605.06932 Materials Science +1605.06933 Materials Science +1605.06936 +1605.06938 Programming Languages +1605.06940 Artificial Intelligence +1605.06947 Differential Geometry +1605.06948 Number Theory +1605.06949 Mesoscale and Nanoscale Physics +1605.06953 Group Theory +1605.06954 Chemical Physics +1605.06961 Algebraic Topology +1605.06963 +1605.06964 +1605.06966 +1605.06967 Materials Science +1605.06968 Numerical Analysis +1605.06972 Solar and Stellar Astrophysics +1605.06973 Systems and Control +1605.06974 Analysis of PDEs +1605.06976 Systems and Control +1605.06979 Numerical Analysis +1605.06980 Commutative Algebra +1605.06981 Symplectic Geometry +1605.06983 K-Theory and Homology +1605.06985 Complex Variables +1605.06987 Rings and Algebras +1605.06989 Discrete Mathematics +1605.06990 Experiment +1605.06993 Strongly Correlated Electrons +1605.06996 Logic in Computer Science +1605.06999 Astrophysics of Galaxies +1605.07000 Astrophysics of Galaxies +1605.07002 Combinatorics +1605.07004 Materials Science +1605.07006 Dynamical Systems +1605.07011 Optics +1605.07015 Theory +1605.07016 Combinatorics +1605.07018 Learning +1605.07022 Soft Condensed Matter +1605.07026 Computer Vision and Pattern Recognition +1605.07028 Experiment +1605.07031 Numerical Analysis +1605.07032 Software Engineering +1605.07034 +1605.07045 Geometric Topology +1605.07047 Dynamical Systems +1605.07049 Operator Algebras +1605.07050 Strongly Correlated Electrons +1605.07052 Populations and Evolution +1605.07055 Physics and Society +1605.07056 Statistics Theory +1605.07057 Machine Learning +1605.07061 Formal Languages and Automata Theory +1605.07063 Optics +1605.07069 Information Theory +1605.07070 +1605.07071 Functional Analysis +1605.07074 Neurons and Cognition +1605.07077 Mesoscale and Nanoscale Physics +1605.07084 Computational Complexity +1605.07086 Analysis of PDEs +1605.07087 Strongly Correlated Electrons +1605.07088 Analysis of PDEs +1605.07091 Computational Engineering, Finance, and Science +1605.07092 Number Theory +1605.07094 Neurons and Cognition +1605.07097 Group Theory +1605.07101 Functional Analysis +1605.07104 Computer Vision and Pattern Recognition +1605.07105 Software Engineering +1605.07107 Computer Science and Game Theory +1605.07108 Soft Condensed Matter +1605.07111 Algebraic Geometry +1605.07112 Optimization and Control +1605.07113 Analysis of PDEs +1605.07115 +1605.07116 Computer Vision and Pattern Recognition +1605.07120 Soft Condensed Matter +1605.07121 Optimization and Control +1605.07123 Logic +1605.07126 Number Theory +1605.07132 Solar and Stellar Astrophysics +1605.07133 Computation and Language +1605.07135 Representation Theory +1605.07136 High Energy Astrophysical Phenomena +1605.07141 Strongly Correlated Electrons +1605.07142 Materials Science +1605.07145 Machine Learning +1605.07147 Optimization and Control +1605.07149 Differential Geometry +1605.07153 Neurons and Cognition +1605.07154 Learning +1605.07156 Learning +1605.07159 Databases +1605.07163 Strongly Correlated Electrons +1605.07165 Theory +math/0606475 Combinatorics +quant-ph/0305100 +quant-ph/0312003 +quant-ph/0601088 +0710.2156 Databases +0711.1091 +0905.2657 Databases +0905.4436 Probability +0908.4481 Probability +1003.3947 Dynamical Systems +1010.2799 +1011.6518 Superconductivity +1012.3664 Commutative Algebra +1106.6223 Neural and Evolutionary Computing +1107.2681 Optimization and Control +1110.5465 Probability +1212.0122 Computation +1212.0811 +1301.2690 Classical Analysis and ODEs +1301.3195 Neural and Evolutionary Computing +1305.2799 Dynamical Systems +1306.1231 Strongly Correlated Electrons +1308.3607 Analysis of PDEs +1308.4320 Analysis of PDEs +1308.4376 Algebraic Geometry +1311.5322 +1401.5399 Dynamical Systems +1404.0044 Strongly Correlated Electrons +1404.4723 Number Theory +1405.7162 Differential Geometry +1406.5647 Learning +1407.1591 Probability +1407.5795 Strongly Correlated Electrons +1407.6276 Analysis of PDEs +1408.0607 +1408.4713 Combinatorics +1409.3936 Dynamical Systems +1410.4120 Physics and Society +1410.5624 Probability +1411.0399 High Energy Astrophysical Phenomena +1411.6239 Computational Physics +1411.7356 Classical Analysis and ODEs +1412.0195 Logic +1412.2172 Mesoscale and Nanoscale Physics +1412.2525 Numerical Analysis +1412.5864 Numerical Analysis +1501.06433 Probability +1502.00917 +1502.01181 Computers and Society +1502.03585 +1502.06256 Genomics +1503.00747 Mesoscale and Nanoscale Physics +1503.02310 Adaptation and Self-Organizing Systems +1503.02624 Differential Geometry +1503.03394 Information Theory +1503.04190 Chaotic Dynamics +1503.04563 Algebraic Topology +1503.07576 Social and Information Networks +1504.00556 Genomics +1504.01592 Materials Science +1504.04058 Numerical Analysis +1504.04505 Probability +1504.05599 Mesoscale and Nanoscale Physics +1504.05927 Metric Geometry +1504.06379 +1504.08087 +1504.08199 Algebraic Geometry +1505.02658 Superconductivity +1505.03982 +1505.07158 Systems and Control +1505.07602 Statistics Theory +1506.01625 Probability +1506.02656 Phenomenology +1506.03635 +1506.04282 Analysis of PDEs +1506.04412 Mesoscale and Nanoscale Physics +1506.06361 Combinatorics +1506.07981 High Energy Astrophysical Phenomena +1506.08232 +1507.00207 Number Theory +1507.01741 Optimization and Control +1507.05122 Artificial Intelligence +1507.06187 Combinatorics +1507.06323 Strongly Correlated Electrons +1507.06678 Solar and Stellar Astrophysics +1507.06804 Soft Condensed Matter +1508.01766 Dynamical Systems +1508.05938 Atmospheric and Oceanic Physics +1508.06221 +1508.06458 Algebraic Topology +1508.07088 Statistical Mechanics +1508.07569 Computational Geometry +1509.00803 Methodology +1509.02305 +1509.03325 Experiment +1509.03621 Neurons and Cognition +1509.04832 Algebraic Geometry +1509.05174 +1509.07152 Experiment +1509.07279 Instrumentation and Methods for Astrophysics +1509.07773 Phenomenology +1509.08458 Cosmology and Nongalactic Astrophysics +1509.08476 Statistical Mechanics +1510.00061 Analysis of PDEs +1510.00193 Astrophysics of Galaxies +1510.02463 Mesoscale and Nanoscale Physics +1510.03205 Statistical Finance +1510.03463 Probability +1510.04492 Theory +1510.05281 Rings and Algebras +1510.05603 Quantum Gases +1510.05609 Optics +1510.07162 Populations and Evolution +1510.08302 +1510.08710 +1510.09133 Statistical Mechanics +1511.00549 Phenomenology +1511.01474 Cosmology and Nongalactic Astrophysics +1511.04075 Cosmology and Nongalactic Astrophysics +1511.05469 Analysis of PDEs +1511.06611 Astrophysics of Galaxies +1511.07446 Astrophysics of Galaxies +1511.07490 Cosmology and Nongalactic Astrophysics +1511.08670 Applications +1512.01169 Methodology +1512.01228 Computational Physics +1512.02571 Cosmology and Nongalactic Astrophysics +1512.02765 +1512.02829 Theory +1512.04096 Phenomenology +1512.04435 Astrophysics of Galaxies +1512.04452 Number Theory +1512.05121 Cosmology and Nongalactic Astrophysics +1512.05755 Superconductivity +1512.05968 Instrumentation and Detectors +1512.06022 Algebraic Geometry +1512.06029 Quantum Gases +1512.06806 Materials Science +1512.06877 Phenomenology +1512.07519 Soft Condensed Matter +1512.08369 Chemical Physics +1601.00946 Group Theory +1601.02006 Phenomenology +1601.04289 Group Theory +1601.05007 Soft Condensed Matter +1601.05027 Chemical Physics +1601.06972 Differential Geometry +1601.07591 Superconductivity +1601.08251 Classical Analysis and ODEs +1602.00937 Phenomenology +1602.04684 Numerical Analysis +1602.05047 +1602.05248 Computer Science and Game Theory +1602.05418 Algebraic Geometry +1602.06067 Optics +1602.06393 Theory +1602.06865 Computer Science and Game Theory +1602.07951 +1602.08933 Materials Science +1603.00720 Instrumentation and Methods for Astrophysics +1603.00814 Systems and Control +1603.01706 Algebraic Geometry +1603.01826 Differential Geometry +1603.01887 Data Structures and Algorithms +1603.02415 Earth and Planetary Astrophysics +1603.02910 General Physics +1603.03071 Combinatorics +1603.03139 Analysis of PDEs +1603.03298 Combinatorics +1603.04237 Logic +1603.04397 Optics +1603.04445 Superconductivity +1603.04467 Distributed, Parallel, and Cluster Computing +1603.04532 Combinatorics +1603.04535 Computer Vision and Pattern Recognition +1603.04637 Numerical Analysis +1603.04694 Classical Analysis and ODEs +1603.04718 Experiment +1603.04726 Information Theory +1603.04830 Materials Science +1603.04845 +1603.04847 Number Theory +1603.04849 Astrophysics of Galaxies +1603.04869 Numerical Analysis +1603.04871 Computer Vision and Pattern Recognition +1603.04875 Instrumentation and Detectors +1603.04877 Metric Geometry +1603.04879 Group Theory +1603.04882 Machine Learning +1603.04887 Dynamical Systems +1603.04888 Geometric Topology +1603.04891 Distributed, Parallel, and Cluster Computing +1603.04892 Data Structures and Algorithms +1603.04893 Optimization and Control +1603.04896 Probability +1603.04897 Functional Analysis +1603.04900 Solar and Stellar Astrophysics +1603.04906 Neurons and Cognition +1603.04907 High Energy Astrophysical Phenomena +1603.04910 Functional Analysis +1603.04911 Systems and Control +1603.04913 Optimization and Control +1603.04914 Optimization and Control +1603.04916 Combinatorics +1603.04917 Discrete Mathematics +1603.04918 Learning +1603.04923 Combinatorics +1603.04924 +1603.04925 Fluid Dynamics +1603.04927 Classical Analysis and ODEs +1603.04929 Applications +1603.04930 Computer Vision and Pattern Recognition +1603.04931 Human-Computer Interaction +1603.04934 Mesoscale and Nanoscale Physics +1603.04938 Combinatorics +1603.04939 Digital Libraries +1603.04940 Analysis of PDEs +1603.04941 Data Structures and Algorithms +1603.04942 Accelerator Physics +1603.04943 Astrophysics of Galaxies +1603.04946 +1603.04947 Learning +1603.04949 +1603.04950 +1603.04952 Superconductivity +1603.04953 Information Retrieval +1603.04954 Learning +1603.04957 +1603.04958 Phenomenology +1603.04961 Strongly Correlated Electrons +1603.04962 Differential Geometry +1603.04963 Strongly Correlated Electrons +1603.04964 Optimization and Control +1603.04966 Analysis of PDEs +1603.04967 Astrophysics of Galaxies +1603.04969 Phenomenology +1603.04970 Phenomenology +1603.04971 Phenomenology +1603.04974 Number Theory +1603.04976 Quantum Algebra +1603.04978 Algebraic Geometry +1603.04980 +1603.04982 Computer Science and Game Theory +1603.04983 Soft Condensed Matter +1603.04984 +1603.04985 Rings and Algebras +1603.04986 Materials Science +1603.04990 Human-Computer Interaction +1603.04991 Rings and Algebras +1603.04994 Solar and Stellar Astrophysics +1603.04997 +1603.05003 +1603.05004 Dynamical Systems +1603.05007 +1603.05008 Strongly Correlated Electrons +1603.05010 Numerical Analysis +1603.05011 Optics +1603.05015 Computer Vision and Pattern Recognition +1603.05016 Geometric Topology +1603.05018 Combinatorics +1603.05020 Networking and Internet Architecture +1603.05021 Soft Condensed Matter +1603.05022 Numerical Analysis +1603.05026 Geometric Topology +1603.05030 Differential Geometry +1603.05032 Probability +1603.05034 Optimization and Control +1603.05035 Algebraic Geometry +1603.05037 Combinatorics +1603.05039 Analysis of PDEs +1603.05041 Classical Analysis and ODEs +1603.05042 Analysis of PDEs +1603.05046 Analysis of PDEs +1603.05047 Data Structures and Algorithms +1603.05048 Quantum Gases +1603.05049 Soft Condensed Matter +1603.05050 Algebraic Topology +1603.05052 Complex Variables +1603.05055 Materials Science +1603.05058 High Energy Astrophysical Phenomena +1603.05060 Machine Learning +1603.05062 Fluid Dynamics +1603.05063 Information Theory +1603.05065 Representation Theory +1603.05069 Software Engineering +1603.05071 +1603.05072 Computer Science and Game Theory +1603.05075 Discrete Mathematics +1603.05078 Digital Libraries +1603.05085 Analysis of PDEs +1603.05086 Number Theory +1603.05087 Analysis of PDEs +1603.05088 Probability +1603.05089 Analysis of PDEs +1603.05091 Numerical Analysis +1603.05095 Social and Information Networks +1603.05099 Robotics +1603.05103 Differential Geometry +1603.05104 Algebraic Geometry +1603.05105 Representation Theory +1603.05110 Numerical Analysis +1603.05112 +1603.05114 Analysis of PDEs +1603.05115 Classical Analysis and ODEs +1603.05116 Combinatorics +1603.05117 Optimization and Control +1603.05125 Earth and Planetary Astrophysics +1603.05127 +1603.05128 Cryptography and Security +1603.05129 Dynamical Systems +1603.05130 General Mathematics +1603.05131 General Mathematics +1603.05139 Algebraic Topology +1603.05142 Economics +1603.05144 Biological Physics +1603.05147 Statistical Mechanics +1603.05150 Theory +1603.05152 Learning +1603.05153 Materials Science +1603.05154 Computer Vision and Pattern Recognition +1603.05155 Number Theory +1603.05159 +1603.05161 Probability +1603.05162 Other Computer Science +1603.05163 Distributed, Parallel, and Cluster Computing +1603.05170 Logic +1603.05171 Probability +1603.05174 +1603.05178 Number Theory +1603.05180 Computational Physics +1603.05183 Computational Complexity +1603.05186 Analysis of PDEs +1603.05188 Optimization and Control +1603.05189 Neural and Evolutionary Computing +1603.05191 Learning +1603.05197 Programming Languages +1603.05199 Theory +1603.05202 Metric Geometry +1603.05205 Optimization and Control +1603.05211 Numerical Analysis +1603.05212 Digital Libraries +1603.05213 Phenomenology +1603.05214 Logic in Computer Science +1603.05220 Dynamical Systems +1603.05222 Probability +1603.05223 Computational Physics +1603.05229 Statistics Theory +1603.05230 Representation Theory +1603.05231 Analysis of PDEs +1603.05233 Number Theory +1603.05235 Differential Geometry +1603.05238 Information Theory +1603.05240 Cryptography and Security +1603.05241 Logic +cond-mat/0406185 Superconductivity +quant-ph/0702202 +0901.0940 Astrophysics of Galaxies +1007.5348 Astrophysics of Galaxies +1008.0622 Astrophysics of Galaxies +1110.2311 +1110.3150 Strongly Correlated Electrons +1207.4927 Number Theory +1208.5562 +1301.0056 Algebraic Topology +1305.0092 General Physics +1305.3642 +1306.1183 Algebraic Geometry +1307.4027 Classical Analysis and ODEs +1307.4296 Molecular Networks +1308.3765 Group Theory +1308.5626 Statistics Theory +1309.1619 Dynamical Systems +1310.6100 Operator Algebras +1311.3981 Methodology +1312.3586 +1401.3500 +1404.3774 +1404.5606 K-Theory and Homology +1404.6698 Algebraic Geometry +1405.3538 Probability +1406.1229 Disordered Systems and Neural Networks +1406.1480 Functional Analysis +1406.4177 General Mathematics +1406.4220 Medical Physics +1406.7634 Algebraic Geometry +1407.5707 Number Theory +1408.4063 Algebraic Geometry +1408.5193 Dynamical Systems +1408.5310 +1409.5238 Functional Analysis +1409.5549 Atomic Physics +1410.6118 Logic in Computer Science +1411.0896 Algebraic Geometry +1411.7016 Optimization and Control +1412.3174 Number Theory +1412.6742 Differential Geometry +1412.8569 Cosmology and Nongalactic Astrophysics +1501.02247 Statistics Theory +1501.06932 Analysis of PDEs +1502.04814 +1502.06952 Statistics Theory +1502.07332 Differential Geometry +1503.00525 Spectral Theory +1503.03448 Optimization and Control +1503.03701 Machine Learning +1503.05064 Category Theory +1503.05960 Data Structures and Algorithms +1503.09016 Computational Complexity +1504.06633 Solar and Stellar Astrophysics +1505.00196 Probability +1505.02742 Mesoscale and Nanoscale Physics +1505.03292 Mesoscale and Nanoscale Physics +1505.04352 +1505.05266 Methodology +1505.05763 Probability +1505.05929 Dynamical Systems +1505.06666 Geometric Topology +1505.06816 Computation and Language +1506.04576 Statistics Theory +1506.06120 Analysis of PDEs +1507.03213 Strongly Correlated Electrons +1507.04065 Economics +1507.06245 Statistics Theory +1508.01281 Quantum Algebra +1508.03616 Analysis of PDEs +1509.00200 Number Theory +1509.00534 Group Theory +1509.05113 Machine Learning +1509.08034 Differential Geometry +1510.01075 Mesoscale and Nanoscale Physics +1510.03096 Quantum Gases +1510.04048 +1510.04733 Number Theory +1510.06343 Numerical Analysis +1510.07482 Computation and Language +1510.08550 Geophysics +1510.09209 Superconductivity +1511.01601 Algebraic Topology +1511.02766 Experiment +1511.03817 Dynamical Systems +1511.04636 Artificial Intelligence +1511.04700 Optimization and Control +1511.06275 Algebraic Geometry +1511.08921 Phenomenology +1512.00358 Computational Geometry +1512.01698 Mathematical Finance +1512.02336 Geometric Topology +1512.02360 Probability +1512.02967 Algebraic Geometry +1512.05017 +1512.05702 Neural and Evolutionary Computing +1512.07587 Learning +1512.07777 Instrumentation and Detectors +1601.00440 Functional Analysis +1601.00496 Applications +1601.00568 Analysis of PDEs +1601.00770 Computation and Language +1601.00815 Statistics Theory +1601.01330 Astrophysics of Galaxies +1601.01705 Computation and Language +1601.04677 +1601.05649 Theory +1601.06765 Number Theory +1601.07246 Theory +1601.08236 Strongly Correlated Electrons +1602.00289 Cellular Automata and Lattice Gases +1602.00511 Superconductivity +1602.00853 Optimization and Control +1602.01179 Mesoscale and Nanoscale Physics +1602.01756 Materials Science +1602.01884 Instrumentation and Detectors +1602.02786 Mesoscale and Nanoscale Physics +1602.03348 Learning +1602.04001 Instrumentation and Methods for Astrophysics +1602.04461 +1602.04702 +1602.04987 Soft Condensed Matter +1602.05394 Machine Learning +1602.05456 Robotics +1602.05973 +1602.06037 Phenomenology +1602.06072 Medical Physics +1602.06217 Probability +1602.06886 Machine Learning +1602.07032 Artificial Intelligence +1602.07537 Combinatorics +1602.07804 Materials Science +1602.08053 Solar and Stellar Astrophysics +1602.08120 Solar and Stellar Astrophysics +1602.08761 Machine Learning +1602.08952 Computation and Language +1603.00027 Phenomenology +1603.00279 Numerical Analysis +1603.00607 Instrumentation and Methods for Astrophysics +1603.01072 Phenomenology +1603.02007 Neurons and Cognition +1603.02870 Experiment +1603.02918 Chemical Physics +1603.03253 Materials Science +1603.03504 Theory +1603.03606 Algebraic Topology +1603.04263 Strongly Correlated Electrons +1603.04872 Mesoscale and Nanoscale Physics +1603.04965 Mesoscale and Nanoscale Physics +1603.05537 +1603.06042 Computation and Language +1603.06067 Computation and Language +1603.06075 Computation and Language +1603.06155 Computation and Language +1603.06393 Computation and Language +1603.06598 Computation and Language +1603.06744 Computation and Language +1603.06776 High Energy Astrophysical Phenomena +1603.07037 Experiment +1603.07794 Strongly Correlated Electrons +1603.08802 Phenomenology +1603.08887 Computation and Language +1603.09440 Superconductivity +1603.09455 Lattice +1604.00425 Computation and Language +1604.01149 Strongly Correlated Electrons +1604.02779 Theory +1604.02913 +1604.02993 Computation and Language +1604.03618 +1604.03975 Astrophysics of Galaxies +1604.05615 Materials Science +1604.08153 Learning +1604.08833 Materials Science +1605.00234 +1605.00921 Phenomenology +1605.01034 Algebraic Geometry +1605.01105 Information Theory +1605.03326 Functional Analysis +1605.03619 +1605.03661 Machine Learning +1605.04278 Computation and Language +1605.04699 Functional Analysis +1605.05224 Human-Computer Interaction +1605.05273 Learning +1605.05516 Dynamical Systems +1605.05528 Human-Computer Interaction +1605.05625 Number Theory +1605.05644 Chaotic Dynamics +1605.07231 Instrumentation and Methods for Astrophysics +1605.07257 +1605.07323 Software Engineering +1605.07356 Materials Science +1605.07392 Fluid Dynamics +1605.07395 Fluid Dynamics +1605.07403 Disordered Systems and Neural Networks +1605.07405 Fluid Dynamics +1605.07499 +1605.07509 Experiment +1605.07533 Solar and Stellar Astrophysics +1605.07545 Geometric Topology +1605.07563 +1605.07566 Fluid Dynamics +1605.07692 Networking and Internet Architecture +1605.07792 Biomolecules +1605.07796 Subcellular Processes +1605.07797 Subcellular Processes +1605.07814 Classical Analysis and ODEs +1605.07845 Dynamical Systems +1605.07859 Numerical Analysis +1605.07893 Plasma Physics +1605.07935 Emerging Technologies +1605.07984 Social and Information Networks +1605.07992 Number Theory +1605.07999 Learning +1605.08016 +1605.08021 Numerical Analysis +1605.08084 Analysis of PDEs +1605.08281 Rings and Algebras +1605.08322 Dynamical Systems +1605.08398 Strongly Correlated Electrons +1605.08524 Theory +1605.08816 +1605.09133 Formal Languages and Automata Theory +1605.09629 Theory +1606.00080 Analysis of PDEs +1606.00346 Classical Physics +1606.00453 Algebraic Topology +1606.00489 +1606.00617 Combinatorics +1606.00816 +1606.01218 Statistical Finance +1606.01559 Combinatorics +1606.01604 Methodology +1606.01731 Differential Geometry +1606.01824 +1606.02011 Methodology +1606.02225 +1606.02276 Computation and Language +1606.02291 Combinatorics +1606.02305 Phenomenology +1606.02308 Strongly Correlated Electrons +1606.02312 Multimedia +1606.02314 Databases +1606.02321 Machine Learning +1606.02326 Group Theory +1606.02328 Computational Geometry +1606.02329 Numerical Analysis +1606.02330 Phenomenology +1606.02331 Probability +1606.02332 Complex Variables +1606.02338 Optimization and Control +1606.02340 Discrete Mathematics +1606.02344 Neurons and Cognition +1606.02349 Neurons and Cognition +1606.02352 Other Statistics +1606.02354 Number Theory +1606.02355 Learning +1606.02356 Materials Science +1606.02359 Methodology +1606.02360 Systems and Control +1606.02366 Dynamical Systems +1606.02372 Neurons and Cognition +1606.02373 Cryptography and Security +1606.02375 Combinatorics +1606.02377 Analysis of PDEs +1606.02379 Information Theory +1606.02381 Applications +1606.02382 Computer Vision and Pattern Recognition +1606.02384 Theory +1606.02386 Methodology +1606.02387 Systems and Control +1606.02388 Number Theory +1606.02395 Optimization and Control +1606.02396 Machine Learning +1606.02399 Number Theory +1606.02402 Differential Geometry +1606.02405 Superconductivity +1606.02406 Number Theory +1606.02407 Neural and Evolutionary Computing +1606.02408 Group Theory +1606.02411 Probability +1606.02418 +1606.02419 Accelerator Physics +1606.02423 Analysis of PDEs +1606.02424 Multimedia +1606.02426 Combinatorics +1606.02427 Human-Computer Interaction +1606.02428 Dynamical Systems +1606.02430 Combinatorics +1606.02431 Group Theory +1606.02432 Strongly Correlated Electrons +1606.02433 Information Theory +1606.02435 Materials Science +1606.02437 Plasma Physics +1606.02438 Human-Computer Interaction +1606.02440 Computation and Language +1606.02442 Software Engineering +1606.02445 +1606.02447 Computation and Language +1606.02448 Learning +1606.02451 Robotics +1606.02452 Classical Analysis and ODEs +1606.02454 Quantum Gases +1606.02455 Computers and Society +1606.02456 Fluid Dynamics +1606.02457 Disordered Systems and Neural Networks +1606.02459 Computers and Society +1606.02460 Computers and Society +1606.02461 Computation and Language +1606.02462 Computers and Society +1606.02463 Information Theory +1606.02465 Data Structures and Algorithms +1606.02467 Computer Vision and Pattern Recognition +1606.02468 Numerical Analysis +1606.02469 Materials Science +1606.02470 Dynamical Systems +1606.02474 Differential Geometry +1606.02476 Functional Analysis +1606.02478 Computers and Society +1606.02479 Discrete Mathematics +1606.02480 Computers and Society +1606.02482 Experiment +1606.02483 Computers and Society +1606.02485 Robotics +1606.02486 Computers and Society +1606.02488 Computers and Society +1606.02490 Category Theory +1606.02493 Computers and Society +1606.02497 Computers and Society +1606.02498 Classical Analysis and ODEs +1606.02499 Computers and Society +1606.02500 Computers and Society +1606.02501 High Energy Astrophysical Phenomena +1606.02502 Computers and Society +1606.02503 Computers and Society +1606.02505 Computers and Society +1606.02506 Group Theory +1606.02507 Computers and Society +1606.02508 Computers and Society +1606.02509 Computers and Society +1606.02510 Computers and Society +1606.02511 Computers and Society +1606.02513 Optimization and Control +1606.02514 Computation and Language +1606.02515 Superconductivity +1606.02517 Combinatorics +1606.02521 Quantum Algebra +1606.02524 Number Theory +1606.02525 Probability +1606.02527 Mesoscale and Nanoscale Physics +1606.02529 Computation and Language +1606.02531 Instrumentation and Methods for Astrophysics +1606.02533 Chemical Physics +1606.02534 Cryptography and Security +1606.02535 Theory +1606.02536 Applications +1606.02538 Geometric Topology +1606.02539 Differential Geometry +1606.02542 Sound +1606.02543 Atomic Physics +1606.02545 Social and Information Networks +1606.02546 Instrumentation and Methods for Astrophysics +1606.02547 Robotics +1606.02550 Combinatorics +1606.02552 Human-Computer Interaction +1606.02555 Computation and Language +1606.02557 +1606.02563 Analysis of PDEs +1606.02564 Mesoscale and Nanoscale Physics +1606.02566 Computation +1606.02568 Geometric Topology +1606.02571 Theory +1606.02572 Mesoscale and Nanoscale Physics +1606.02573 Databases +1606.02574 Algebraic Geometry +1606.02575 +1606.02578 Metric Geometry +1606.02580 Neural and Evolutionary Computing +1606.02581 Dynamical Systems +1606.02583 Robotics +1606.02584 Algebraic Geometry +1606.02585 Computer Vision and Pattern Recognition +1606.02588 Phenomenology +1606.02595 Astrophysics of Galaxies +1606.02597 Physics and Society +1606.02599 Networking and Internet Architecture +1606.02601 Computation and Language +1606.02610 Physics and Society +1606.02613 Discrete Mathematics +1606.02614 +1606.02615 Learning +1606.02619 Numerical Analysis +1606.02621 Commutative Algebra +1606.02622 Mesoscale and Nanoscale Physics +1606.02626 Medical Physics +1606.02627 Neurons and Cognition +1606.02628 Optics +1606.02631 Representation Theory +1606.02632 Robotics +1606.02634 Classical Analysis and ODEs +1606.02638 Computation and Language +1606.02640 Analysis of PDEs +1606.02641 Combinatorics +1606.02642 Classical Analysis and ODEs +1606.02644 Classical Analysis and ODEs +1606.02650 Space Physics +1606.02651 Space Physics +1606.02652 Space Physics +1606.02653 Space Physics +1606.02654 Space Physics +1606.02655 Space Physics +1606.02656 Space Physics +1606.02657 Space Physics +1606.02658 Space Physics +1606.02659 Theory +1606.02660 Combinatorics +1606.02663 Atomic and Molecular Clusters +1606.02668 Numerical Analysis +1606.02669 Software Engineering +1606.02671 Accelerator Physics +1606.02672 Phenomenology +1606.02674 Networking and Internet Architecture +1606.02676 +1606.02680 Computation and Language +1606.02682 Methodology +1606.02688 Data Structures and Algorithms +1606.02689 Computation and Language +1606.02690 Methodology +1606.02693 Theory +1606.02694 Astrophysics of Galaxies +1606.02698 Differential Geometry +1606.02700 Social and Information Networks +1606.02702 Machine Learning +1606.02705 Social and Information Networks +quant-ph/0301091 +0707.1668 Number Theory +0910.2032 Algebraic Geometry +1006.0186 Complex Variables +1009.1507 Applications +1009.3373 Probability +1009.3406 Probability +1009.3993 Differential Geometry +1009.4362 Applications +1102.5739 Networking and Internet Architecture +1110.4748 Pattern Formation and Solitons +1112.0699 Computational Complexity +1201.0864 Pattern Formation and Solitons +1202.5386 Quantum Gases +1206.6899 Data Structures and Algorithms +1208.1517 Applications +1208.1728 Computation +1209.4251 +1210.2798 Statistical Mechanics +1210.5926 Probability +1212.5180 Applications +1301.5529 +1303.6129 Formal Languages and Automata Theory +1310.2986 Analysis of PDEs +1310.4117 Probability +1310.5245 Computational Geometry +1312.3843 Probability +1312.4241 Differential Geometry +1401.5938 Probability +1401.6907 Logic +1403.6430 Group Theory +1406.0198 Optics +1406.2536 Theory +1406.3881 Analysis of PDEs +1406.6630 Exactly Solvable and Integrable Systems +1406.6636 Exactly Solvable and Integrable Systems +1407.0662 Optimization and Control +1407.7289 Number Theory +1408.0179 +1408.3751 +1410.1230 Exactly Solvable and Integrable Systems +1410.2011 Symbolic Computation +1410.2335 Exactly Solvable and Integrable Systems +1410.4654 Algebraic Geometry +1411.0165 Neurons and Cognition +1411.4844 Soft Condensed Matter +1411.5773 Analysis of PDEs +1411.7254 +1412.3069 Fluid Dynamics +1412.3467 Theory +1412.4415 Exactly Solvable and Integrable Systems +1412.5343 Biological Physics +1501.00915 Quantum Algebra +1501.05207 High Energy Astrophysical Phenomena +1501.07823 Analysis of PDEs +1502.00235 Statistics Theory +1502.01102 Geometric Topology +1502.02534 Methodology +1502.05770 Representation Theory +1503.00757 Optimization and Control +1503.04260 Artificial Intelligence +1504.03284 Operator Algebras +1505.04967 Algebraic Geometry +1505.04981 Artificial Intelligence +1506.01399 Phenomenology +1506.02721 Logic in Computer Science +1506.05094 Computational Physics +1506.06377 +1507.02618 Data Structures and Algorithms +1507.07034 Optimization and Control +1507.07494 Algebraic Geometry +1508.01264 Statistics Theory +1508.05691 +1508.06305 +1508.07258 +1509.01707 Group Theory +1509.01812 Logic +1509.04540 Lattice +1509.06969 Information Theory +1509.08157 Adaptation and Self-Organizing Systems +1509.09180 +1510.02114 Number Theory +1510.03048 +1510.07324 Analysis of PDEs +1511.01561 Distributed, Parallel, and Cluster Computing +1511.02858 Phenomenology +1511.02882 Earth and Planetary Astrophysics +1511.04387 Data Structures and Algorithms +1511.07062 General Topology +1511.07167 Functional Analysis +1511.07586 +1511.07815 +1512.00790 Popular Physics +1512.01636 +1512.01669 Operator Algebras +1512.04087 Artificial Intelligence +1512.04164 Superconductivity +1512.05927 +1512.06375 Analysis of PDEs +1512.06478 Logic +1512.06950 Analysis of PDEs +1512.07713 Statistics Theory +1512.08241 Theory +1512.08265 Combinatorics +1512.08710 Artificial Intelligence +1512.08876 Algebraic Geometry +1512.09075 Artificial Intelligence +1601.02872 Rings and Algebras +1601.05291 Phenomenology +1601.05366 Group Theory +1601.05781 Number Theory +1601.05904 Distributed, Parallel, and Cluster Computing +1601.06390 Combinatorics +1601.06610 Artificial Intelligence +1601.06713 Experiment +1601.07335 Numerical Analysis +1601.08095 +1602.01724 Solar and Stellar Astrophysics +1602.01749 Number Theory +1602.02156 Superconductivity +1602.04169 Atomic Physics +1602.04424 Numerical Analysis +1602.07374 Combinatorics +1602.07742 +1603.00346 Phenomenology +1603.03236 Mathematical Software +1603.03413 Probability +1603.03440 Theory +1603.06862 Mesoscale and Nanoscale Physics +1603.06863 Metric Geometry +1603.08152 Computer Vision and Pattern Recognition +1604.01160 Information Theory +1604.01359 Neurons and Cognition +1604.02722 Numerical Analysis +1604.03216 Algebraic Geometry +1604.04464 Experiment +1604.04985 +1604.05297 +1605.01022 Statistical Mechanics +1605.01479 Quantum Gases +1605.02966 Metric Geometry +1605.04245 Combinatorics +1605.05345 Tissues and Organs +1605.06290 Information Theory +1605.06629 Materials Science +1605.06925 Neurons and Cognition +1605.08211 Quantum Gases +1605.08686 Instrumentation and Detectors +1605.09275 +1606.00432 Earth and Planetary Astrophysics +1606.01905 Mesoscale and Nanoscale Physics +1606.02229 Quantum Gases +1606.02327 Operator Algebras +1606.02484 +1606.02587 Neurons and Cognition +1606.03109 Probability +1606.03919 Mesoscale and Nanoscale Physics +1606.04105 Strongly Correlated Electrons +1606.04139 Digital Libraries +1606.04538 High Energy Astrophysical Phenomena +1606.05451 Disordered Systems and Neural Networks +1606.07104 Graphics +1606.07492 +1607.01859 Probability +1607.02514 Theory +1607.02775 +1607.03058 Geometric Topology +1607.03654 Quantum Algebra +1607.03762 Mesoscale and Nanoscale Physics +1607.04589 Sound +1607.05005 Algebraic Geometry +1607.05153 Optics +1607.05711 Materials Science +1607.06123 Learning +1607.06438 +1607.06468 Phenomenology +1607.06590 Quantum Gases +1607.06642 Sound +1607.07059 Atomic Physics +1607.07142 Strongly Correlated Electrons +1607.08471 Mesoscale and Nanoscale Physics +1608.00097 Mesoscale and Nanoscale Physics +1608.00438 Soft Condensed Matter +1608.03075 Computer Vision and Pattern Recognition +1608.03695 Biological Physics +1608.03934 Combinatorics +1608.04036 Data Structures and Algorithms +1608.04185 Information Retrieval +1608.04211 High Energy Astrophysical Phenomena +1608.04253 Applications +1608.04648 Mesoscale and Nanoscale Physics +1608.04873 +1608.07068 Computer Vision and Pattern Recognition +1608.07752 Statistical Finance +1608.07884 +1608.08247 Optimization and Control +1608.08292 Systems and Control +1608.08676 Phenomenology +1609.00091 Logic in Computer Science +1609.00413 Optics +1609.00647 Combinatorics +1609.00858 Optics +1609.01148 Phenomenology +1609.01334 Phenomenology +1609.01376 Analysis of PDEs +1609.01443 Information Theory +1609.01509 Differential Geometry +1609.01693 Computer Vision and Pattern Recognition +1609.01803 Soft Condensed Matter +1609.02001 Computer Vision and Pattern Recognition +1609.02020 Machine Learning +1609.02092 +1609.02137 Computer Vision and Pattern Recognition +1609.02139 Artificial Intelligence +1609.02140 Classical Physics +1609.02141 Other Quantitative Biology +1609.02143 Earth and Planetary Astrophysics +1609.02146 Strongly Correlated Electrons +1609.02157 Strongly Correlated Electrons +1609.02159 +1609.02163 Quantum Gases +1609.02165 Theory +1609.02168 Representation Theory +1609.02170 +1609.02171 Information Retrieval +1609.02173 Analysis of PDEs +1609.02175 Optimization and Control +1609.02177 Algebraic Geometry +1609.02178 Astrophysics of Galaxies +1609.02180 Quantum Gases +1609.02181 Algebraic Geometry +1609.02182 Human-Computer Interaction +1609.02184 Commutative Algebra +1609.02186 Instrumentation and Methods for Astrophysics +1609.02188 Phenomenology +1609.02191 Information Theory +1609.02194 Optimization and Control +1609.02195 +1609.02196 +1609.02197 Information Theory +1609.02198 Systems and Control +1609.02199 Quantum Gases +1609.02200 Machine Learning +1609.02201 Solar and Stellar Astrophysics +1609.02202 Neurons and Cognition +1609.02206 Geometric Topology +1609.02208 Information Theory +1609.02209 Combinatorics +1609.02210 Combinatorics +1609.02211 Analysis of PDEs +1609.02214 Computer Vision and Pattern Recognition +1609.02216 Numerical Analysis +1609.02220 +1609.02224 +1609.02229 Quantum Gases +1609.02231 Algebraic Geometry +1609.02234 Cryptography and Security +1609.02235 Algebraic Geometry +1609.02239 +1609.02240 Dynamical Systems +1609.02243 Computer Vision and Pattern Recognition +1609.02244 Geometric Topology +1609.02249 Optimization and Control +1609.02250 Algebraic Topology +1609.02251 Systems and Control +1609.02252 Information Theory +1609.02254 Atomic Physics +1609.02257 Probability +1609.02258 Numerical Analysis +1609.02259 Optimization and Control +1609.02260 Spectral Theory +1609.02261 Neurons and Cognition +1609.02263 Biological Physics +1609.02264 Lattice +1609.02265 +1609.02268 Data Analysis, Statistics and Probability +1609.02269 Data Analysis, Statistics and Probability +1609.02270 Instrumentation and Detectors +1609.02273 Algebraic Geometry +1609.02275 Analysis of PDEs +1609.02277 Numerical Analysis +1609.02280 Plasma Physics +1609.02281 Robotics +1609.02284 Computer Vision and Pattern Recognition +1609.02287 +1609.02292 Number Theory +1609.02293 Soft Condensed Matter +1609.02295 +1609.02296 Algebraic Geometry +1609.02298 Materials Science +1609.02300 Information Theory +1609.02301 History and Overview +1609.02302 Numerical Analysis +1609.02303 Algebraic Geometry +1609.02305 Networking and Internet Architecture +1609.02306 Algebraic Geometry +1609.02308 Fluid Dynamics +1609.02309 Numerical Analysis +1609.02310 Dynamical Systems +1609.02312 Cosmology and Nongalactic Astrophysics +1609.02313 Applications +1609.02315 Differential Geometry +1609.02319 Mesoscale and Nanoscale Physics +1609.02320 Logic in Computer Science +1609.02321 Quantum Algebra +1609.02322 +1609.02324 Networking and Internet Architecture +1609.02325 +1609.02326 +1609.02329 +1609.02332 Analysis of PDEs +1609.02334 Economics +1609.02337 +1609.02342 Probability +1609.02343 Classical Analysis and ODEs +1609.02345 Functional Analysis +1609.02347 Dynamical Systems +1609.02348 Algebraic Geometry +1609.02349 Mathematical Finance +1609.02351 Combinatorics +1609.02353 Cryptography and Security +1609.02354 Computation +1609.02355 +1609.02360 Algebraic Geometry +1609.02362 Mesoscale and Nanoscale Physics +1609.02368 Computer Vision and Pattern Recognition +1609.02369 Statistical Finance +1609.02375 Networking and Internet Architecture +1609.02377 Geometric Topology +1609.02380 Group Theory +1609.02381 Algebraic Topology +1609.02383 Learning +1609.02384 Classical Analysis and ODEs +1609.02385 Accelerator Physics +1609.02386 Phenomenology +1609.02389 Strongly Correlated Electrons +1609.02390 Superconductivity +1609.02392 Representation Theory +1609.02393 Numerical Analysis +1609.02394 Functional Analysis +1609.02397 Algebraic Topology +1609.02398 Information Theory +1609.02399 Combinatorics +1609.02401 Solar and Stellar Astrophysics +1609.02402 Instrumentation and Detectors +1609.02404 Cryptography and Security +1609.02405 Geophysics +1609.02408 Logic +1609.02409 Computer Vision and Pattern Recognition +1609.02410 Emerging Technologies +1609.02411 Networking and Internet Architecture +1609.02412 +1609.02413 Probability +1609.02415 Complex Variables +1609.02416 +1609.02424 Phenomenology +1609.02426 Materials Science +1609.02427 Information Theory +1609.02430 General Physics +1609.02433 Logic +1609.02434 Distributed, Parallel, and Cluster Computing +1609.02436 Instrumentation and Methods for Astrophysics +1609.02437 Differential Geometry +1609.02438 Probability +1609.02440 Information Theory +1609.02441 Group Theory +1609.02442 Combinatorics +1609.02444 Analysis of PDEs +1609.02447 Probability +1609.02448 Instrumentation and Methods for Astrophysics +1609.02450 Information Theory +1609.02452 Computer Vision and Pattern Recognition +1609.02460 Information Theory +1609.02461 Physics and Society +1609.02462 Robotics +1609.02463 Methodology +1609.02464 Group Theory +1609.02467 Theory +1609.02468 Analysis of PDEs +1609.02469 Computer Vision and Pattern Recognition +1609.02470 Theory +1609.02471 Probability +1609.02472 +1609.02473 Pattern Formation and Solitons +1609.02479 Combinatorics +1609.02482 Strongly Correlated Electrons +1609.02483 Quantum Algebra +1609.02484 Group Theory +1609.02486 Algebraic Topology +1609.02489 Information Retrieval +1609.02490 Statistics Theory +1609.02494 Classical Analysis and ODEs +1609.02495 Soft Condensed Matter +1609.02496 Soft Condensed Matter +1609.02501 Computation +1609.02503 Phenomenology +1609.02504 Analysis of PDEs +1609.02505 Fluid Dynamics +1609.02512 Phenomenology +1609.02513 Learning +1609.02517 Information Theory +1609.02519 Statistical Mechanics +1609.02520 Combinatorics +1609.02521 Machine Learning +1609.02523 Representation Theory +1609.02524 Number Theory +1609.02525 +1609.02526 Combinatorics +1609.02527 Probability +1609.02528 Number Theory +1609.02529 Dynamical Systems +1609.02531 Robotics +1609.02532 Networking and Internet Architecture +1609.02534 Functional Analysis +1609.02535 Neurons and Cognition +1609.02537 Commutative Algebra +1609.02539 Number Theory +1609.02542 +1609.02543 Analysis of PDEs +1609.02548 Geometric Topology +1609.02554 Emerging Technologies +0809.3835 Analysis of PDEs +0911.5414 Rings and Algebras +0912.5078 Statistics Theory +1002.2357 Combinatorics +1005.4193 Logic +1010.2092 +1105.3223 Algebraic Geometry +1108.4790 Cell Behavior +1204.3248 Differential Geometry +1208.6254 Representation Theory +1210.5331 +1211.0006 Strongly Correlated Electrons +1211.4353 Astrophysics of Galaxies +1212.3298 Differential Geometry +1212.6244 Combinatorics +1303.0328 Data Structures and Algorithms +1303.6420 Differential Geometry +1304.4188 Mesoscale and Nanoscale Physics +1305.0526 Data Structures and Algorithms +1305.0893 Number Theory +1306.6817 Differential Geometry +1309.0485 Statistics Theory +1310.2525 Probability +1311.1031 Statistical Mechanics +1312.7054 Adaptation and Self-Organizing Systems +1312.7683 General Topology +1401.2566 Rings and Algebras +1401.8066 Machine Learning +1402.0948 Superconductivity +1402.2546 Differential Geometry +1403.5572 Biological Physics +1403.7146 Dynamical Systems +1404.4080 +1404.5049 History and Philosophy of Physics +1404.5403 Adaptation and Self-Organizing Systems +1405.1778 History and Philosophy of Physics +1405.3159 Statistical Mechanics +1405.4897 Learning +1405.7660 Probability +1406.1121 Rings and Algebras +1406.6595 Computer Vision and Pattern Recognition +1407.1601 Optimization and Control +1407.2264 Probability +1407.6761 Data Structures and Algorithms +1408.1973 Combinatorics +1408.5054 Astrophysics of Galaxies +1408.6523 Strongly Correlated Electrons +1408.6908 Artificial Intelligence +1409.4461 Algebraic Geometry +1409.8356 Combinatorics +1410.0232 Differential Geometry +1410.1100 Experiment +1410.1409 Data Structures and Algorithms +1410.8575 +1411.1893 Dynamical Systems +1411.2262 Data Structures and Algorithms +1412.0150 Combinatorics +1412.0174 Representation Theory +1412.8116 Exactly Solvable and Integrable Systems +1501.00476 Combinatorics +1501.02622 +1501.03775 Theory +1501.05229 Operator Algebras +1502.00247 +1502.02790 Algebraic Topology +1502.04246 Distributed, Parallel, and Cluster Computing +1502.06990 Computational Physics +1503.06243 Combinatorics +1504.01706 Combinatorics +1504.03032 Exactly Solvable and Integrable Systems +1504.06589 Spectral Theory +1504.08319 Methodology +1505.00725 Operator Algebras +1505.01249 +1505.01788 Commutative Algebra +1505.02457 General Mathematics +1505.03018 Combinatorics +1505.03697 Combinatorics +1505.04655 Chemical Physics +1505.05425 Computers and Society +1505.05614 +1505.07809 +1506.01882 Materials Science +1506.02739 Computation and Language +1506.05415 Differential Geometry +1506.08661 Dynamical Systems +1507.02233 Rings and Algebras +1507.04252 Strongly Correlated Electrons +1507.04875 Number Theory +1507.05152 K-Theory and Homology +1507.05518 Analysis of PDEs +1507.05949 Commutative Algebra +1507.05959 Chemical Physics +1507.06144 K-Theory and Homology +1508.00049 Soft Condensed Matter +1508.00796 Soft Condensed Matter +1508.01418 Soft Condensed Matter +1508.02038 Rings and Algebras +1508.02848 Computer Vision and Pattern Recognition +1508.03251 Biological Physics +1508.03344 Disordered Systems and Neural Networks +1508.04177 Combinatorics +1508.04342 +1508.06079 Functional Analysis +1508.06477 Learning +1509.00296 Computer Vision and Pattern Recognition +1509.00483 Disordered Systems and Neural Networks +1509.01748 Analysis of PDEs +1509.02883 Combinatorics +1509.04603 Functional Analysis +1509.05446 Instrumentation and Methods for Astrophysics +1509.08102 Learning +1509.08108 Statistics Theory +1510.00656 Soft Condensed Matter +1510.00735 Number Theory +1510.01134 Multimedia +1510.02456 Algebraic Topology +1510.03960 +1510.04441 Dynamical Systems +1510.04593 Mesoscale and Nanoscale Physics +1510.05172 +1510.05687 Number Theory +1510.08049 High Energy Astrophysical Phenomena +1510.08401 Statistics Theory +1511.00575 Systems and Control +1511.00792 Learning +1511.01577 Cosmology and Nongalactic Astrophysics +1511.01818 Optimization and Control +1511.02143 Phenomenology +1511.02878 Statistical Mechanics +1511.02935 Logic +1511.03141 Combinatorics +1511.03248 Analysis of PDEs +1511.03974 Geometric Topology +1511.04304 Strongly Correlated Electrons +1511.06207 Functional Analysis +1511.06677 +1511.06972 Strongly Correlated Electrons +1511.07846 Databases +1512.01834 Disordered Systems and Neural Networks +1512.01910 Optimization and Control +1512.03172 Instrumentation and Methods for Astrophysics +1512.03902 +1512.04334 Human-Computer Interaction +1512.05469 Machine Learning +1512.05691 Networking and Internet Architecture +1512.05841 Information Theory +1512.06025 Numerical Analysis +1512.06334 +1512.08110 Methodology +1512.08627 Experiment +1512.09325 Methodology +1601.00163 Data Structures and Algorithms +1601.00164 Data Structures and Algorithms +1601.00352 Rings and Algebras +1601.00742 Earth and Planetary Astrophysics +1601.01600 +1601.01816 Computational Geometry +1601.01972 Statistical Mechanics +1601.02012 Cosmology and Nongalactic Astrophysics +1601.02428 Analysis of PDEs +1601.04040 +1601.04109 Optics +1601.04124 +1601.05310 Numerical Analysis +1601.05315 Strongly Correlated Electrons +1601.05351 Rings and Algebras +1601.05559 Mesoscale and Nanoscale Physics +1601.05574 Geometric Topology +1601.06114 Optimization and Control +1601.07134 Probability +1601.08111 Data Structures and Algorithms +1602.01972 Numerical Analysis +1602.03471 Information Theory +1602.03843 +1602.06152 +1602.06313 Quantum Gases +1602.06770 Statistical Mechanics +1602.07067 Numerical Analysis +1602.07181 Quantitative Methods +1602.07210 Data Structures and Algorithms +1602.07827 Computational Complexity +1602.07959 General Physics +1602.08245 Solar and Stellar Astrophysics +1602.08431 Lattice +1602.08628 Geometric Topology +1603.00283 Mesoscale and Nanoscale Physics +1603.00634 Statistics Theory +1603.00815 High Energy Astrophysical Phenomena +1603.01389 +1603.01872 Algebraic Topology +1603.01916 +1603.02214 Instrumentation and Detectors +1603.02686 Strongly Correlated Electrons +1603.02987 Atmospheric and Oceanic Physics +1603.03431 High Energy Astrophysical Phenomena +1603.03675 Methodology +1603.04478 Lattice +1603.04710 Classical Analysis and ODEs +1603.04764 Experiment +1603.05122 Operator Algebras +1603.05592 Phenomenology +1603.06277 Machine Learning +1603.07312 +1603.07960 Phenomenology +1603.08148 Computation and Language +1603.09067 Geometric Topology +1603.09170 Computation and Language +1604.00068 Materials Science +1604.02103 Computer Science and Game Theory +1604.02886 Theory +1604.03391 +1604.03463 Machine Learning +1604.03876 Strongly Correlated Electrons +1604.03887 Optimization and Control +1604.03999 Category Theory +1604.05146 Statistical Mechanics +1604.05569 Phenomenology +1604.06150 Differential Geometry +1604.06288 Analysis of PDEs +1604.06566 Phenomenology +1604.06620 Computer Vision and Pattern Recognition +1604.06698 +1604.06748 Computational Physics +1604.06851 Statistical Mechanics +1604.07050 Materials Science +1605.00277 Probability +1605.00639 Disordered Systems and Neural Networks +1605.00800 Representation Theory +1605.00853 General Topology +1605.00884 Experiment +1605.01062 +1605.01408 High Energy Astrophysical Phenomena +1605.01595 Numerical Analysis +1605.02044 Optics +1605.02102 Algebraic Geometry +1605.04470 Physics and Society +1605.04742 +1605.05366 Phenomenology +1605.05984 Analysis of PDEs +1605.06323 General Topology +1605.06425 Rings and Algebras +1605.06956 Fluid Dynamics +1605.07089 +1605.07193 +1605.08133 Mesoscale and Nanoscale Physics +1605.08613 Statistical Mechanics +1606.00384 Analysis of PDEs +1606.00743 Theory +1606.00853 Number Theory +1606.00855 Number Theory +1606.00965 Tissues and Organs +1606.01152 Instrumentation and Detectors +1606.01554 Statistics Theory +1606.01665 History and Philosophy of Physics +1606.01793 Optimization and Control +1606.02050 Fluid Dynamics +1606.02814 Experiment +1606.03089 Astrophysics of Galaxies +1606.03224 Geometric Topology +1606.03294 Strongly Correlated Electrons +1606.03825 Quantum Gases +1606.04023 Cellular Automata and Lattice Gases +1606.05629 Accelerator Physics +1606.06090 Populations and Evolution +1606.06184 +1606.06999 Experiment +1606.07011 Probability +1606.08178 Chemical Physics +1606.08449 Theory +1606.09152 Learning +1607.00812 Phenomenology +1607.00889 Statistical Mechanics +1607.01264 +1607.01740 Experiment +1607.02804 Methodology +1607.03901 Theory +1607.04994 High Energy Astrophysical Phenomena +1607.05493 Chaotic Dynamics +1607.05633 Earth and Planetary Astrophysics +1607.05815 Functional Analysis +1607.06150 Combinatorics +1607.07345 Group Theory +1607.07957 Data Structures and Algorithms +1607.08588 Instrumentation and Detectors +1608.00045 Instrumentation and Methods for Astrophysics +1608.00169 +1608.00276 Information Retrieval +1608.00680 Superconductivity +1608.00783 Materials Science +1608.01055 Astrophysics of Galaxies +1608.01413 Computation and Language +1608.01493 +1608.01922 Strongly Correlated Electrons +1608.01945 High Energy Astrophysical Phenomena +1608.02243 Probability +1608.02600 +1608.03062 Phenomenology +1608.03138 Functional Analysis +1608.03613 +1608.03900 Mesoscale and Nanoscale Physics +1608.03965 Discrete Mathematics +1608.04107 Chemical Physics +1608.04283 Physics and Society +1608.04435 Quantum Algebra +1608.04494 Statistical Mechanics +1608.04501 Geometric Topology +1608.04814 +1608.04841 Distributed, Parallel, and Cluster Computing +1608.04937 +1608.05124 Representation Theory +1608.05279 Phenomenology +1608.05493 Networking and Internet Architecture +1608.05697 Number Theory +1608.05712 Astrophysics of Galaxies +1608.05713 Phenomenology +1608.05716 +1608.05717 +1608.05720 +1608.05721 Mesoscale and Nanoscale Physics +1608.05722 Combinatorics +1608.05723 Combinatorics +1608.05726 Logic +1608.05729 Combinatorics +1608.05730 Combinatorics +1608.05732 Theory +1608.05735 Combinatorics +1608.05736 Probability +1608.05737 Functional Analysis +1608.05738 Numerical Analysis +1608.05739 Computational Physics +1608.05740 Combinatorics +1608.05741 Combinatorics +1608.05746 Number Theory +1608.05747 Machine Learning +1608.05748 Phenomenology +1608.05749 Learning +1608.05751 Neurons and Cognition +1608.05752 History and Philosophy of Physics +1608.05753 Quantum Gases +1608.05754 Numerical Analysis +1608.05755 Materials Science +1608.05756 Complex Variables +1608.05757 Dynamical Systems +1608.05758 Dynamical Systems +1608.05759 Combinatorics +1608.05763 Artificial Intelligence +1608.05765 Materials Science +1608.05770 Physics and Society +1608.05772 Graphics +1608.05773 Graphics +1608.05774 +1608.05775 Complex Variables +1608.05776 Cosmology and Nongalactic Astrophysics +1608.05777 Computation and Language +1608.05778 Neurons and Cognition +1608.05780 +1608.05781 Geometric Topology +1608.05783 Networking and Internet Architecture +1608.05786 Systems and Control +1608.05787 Numerical Analysis +1608.05788 Soft Condensed Matter +1608.05791 Mesoscale and Nanoscale Physics +1608.05792 Plasma Physics +1608.05793 Information Theory +1608.05794 Computational Physics +1608.05797 Rings and Algebras +1608.05798 Algebraic Geometry +1608.05799 Quantum Gases +1608.05801 Soft Condensed Matter +1608.05802 +1608.05803 Solar and Stellar Astrophysics +1608.05808 Mesoscale and Nanoscale Physics +1608.05812 Cryptography and Security +1608.05814 Mathematical Finance +1608.05816 Data Structures and Algorithms +1608.05819 Classical Physics +1608.05820 Number Theory +1608.05821 Symplectic Geometry +1608.05823 Mesoscale and Nanoscale Physics +1608.05827 Fluid Dynamics +1608.05829 Robotics +1608.05830 Networking and Internet Architecture +1608.05832 Genomics +1608.05833 Chemical Physics +1608.05837 Mesoscale and Nanoscale Physics +1608.05839 Distributed, Parallel, and Cluster Computing +1608.05841 Mesoscale and Nanoscale Physics +1608.05842 Computer Vision and Pattern Recognition +1608.05844 Distributed, Parallel, and Cluster Computing +1608.05847 Operator Algebras +1608.05848 Soft Condensed Matter +1608.05850 Multimedia +1608.05851 General Finance +1608.05852 Computation and Language +1608.05855 Biomolecules +1608.05856 Computer Vision and Pattern Recognition +1608.05858 Number Theory +1608.05863 Rings and Algebras +1608.05864 Robotics +1608.05866 Distributed, Parallel, and Cluster Computing +1608.05867 Combinatorics +1608.05870 Probability +1608.05871 Mesoscale and Nanoscale Physics +1608.05876 Chaotic Dynamics +1608.05878 Social and Information Networks +1608.05879 Geometric Topology +1608.05883 Computational Physics +1608.05886 Dynamical Systems +1608.05887 Combinatorics +1608.05888 Phenomenology +1608.05889 Computer Vision and Pattern Recognition +1608.05891 Fluid Dynamics +1608.05892 Materials Science +1608.05893 Software Engineering +1608.05895 Computer Vision and Pattern Recognition +1608.05896 Differential Geometry +1608.05898 Number Theory +1608.05900 Mathematical Finance +1608.05901 Statistical Mechanics +1608.05905 Category Theory +1608.05910 Machine Learning +1608.05911 Strongly Correlated Electrons +1608.05912 Number Theory +1608.05913 Methodology +1608.05914 Statistical Mechanics +1608.05915 Theory +1608.05916 Neural and Evolutionary Computing +1608.05917 Distributed, Parallel, and Cluster Computing +1608.05920 Chaotic Dynamics +1608.05923 Robotics +1608.05925 Number Theory +1608.05926 Software Engineering +1608.05927 Group Theory +1608.05928 Cryptography and Security +1608.05929 Functional Analysis +1608.05930 Cryptography and Security +1608.05931 Robotics +1608.05932 Fluid Dynamics +1608.05933 Cosmology and Nongalactic Astrophysics +1608.05934 Machine Learning +1608.05936 Distributed, Parallel, and Cluster Computing +1608.05938 Number Theory +1608.05939 Algebraic Geometry +1608.05940 Probability +1608.05941 +1608.05942 Algebraic Geometry +1608.05944 Differential Geometry +1608.05946 +1608.05947 +1608.05948 +1608.05951 Distributed, Parallel, and Cluster Computing +1608.05953 Theory +1608.05955 Complex Variables +1608.05956 Materials Science +1608.05959 +1608.05960 Statistical Mechanics +1608.05961 +1608.05963 +1608.05964 Probability +1608.05965 Statistical Mechanics +1608.05966 Social and Information Networks +1608.05969 Functional Analysis +1608.05970 +1608.05981 Software Engineering +1608.05982 Social and Information Networks +1608.05983 Learning +1608.05984 Physics and Society +1608.05988 Materials Science +1608.05990 Functional Analysis +1608.05992 Pattern Formation and Solitons +1608.05993 Probability +1608.05994 Statistics Theory +1608.05999 Dynamical Systems +1608.06002 Distributed, Parallel, and Cluster Computing +1608.06005 Information Theory +1608.06006 Logic +1608.06009 Data Structures and Algorithms +1608.06011 Metric Geometry +1608.06012 Programming Languages +1608.06013 Combinatorics +1608.06016 Data Structures and Algorithms +1608.06017 Combinatorics +1608.06019 Computer Vision and Pattern Recognition +1608.06024 +1608.06025 Combinatorics +1608.06026 Information Theory +1608.06029 Algebraic Geometry +1608.06030 Plasma Physics +1608.06031 Learning +1608.06032 Combinatorics +1608.06033 Distributed, Parallel, and Cluster Computing +1608.06034 Representation Theory +1608.06036 Theory +1608.06038 Instrumentation and Methods for Astrophysics +1608.06039 Computational Geometry +1608.06045 Mathematical Finance +1608.06048 Applications +1608.06049 Learning +1608.06051 Instrumentation and Methods for Astrophysics +1608.06054 Information Retrieval +1608.06055 Strongly Correlated Electrons +1608.06056 Mesoscale and Nanoscale Physics +1608.06057 Information Theory +1608.06058 Strongly Correlated Electrons +1608.06061 Numerical Analysis +1608.06062 Representation Theory +1608.06063 Quantum Algebra +1608.06065 Information Theory +1608.06068 +1608.06069 Differential Geometry +1608.06071 +1608.06073 Instrumentation and Detectors +1608.06075 +1608.06076 General Finance +1608.06077 Algebraic Geometry +1608.06079 Digital Libraries +1608.06080 Cryptography and Security +1608.06081 Analysis of PDEs +1608.06084 Logic in Computer Science +1608.06085 +1608.06086 Number Theory +1608.06091 Discrete Mathematics +1608.06093 Chemical Physics +1608.06094 Functional Analysis +1608.06095 Functional Analysis +1608.06096 Representation Theory +1608.06101 Functional Analysis +1608.06102 Analysis of PDEs +1608.06103 Distributed, Parallel, and Cluster Computing +1608.06106 Number Theory +1608.06107 Biomolecules +1608.06109 Dynamical Systems +1608.06112 Number Theory +1608.06113 +1608.06114 Combinatorics +1608.06115 Analysis of PDEs +1608.06117 Information Theory +1608.06119 Physics and Society +1608.06121 Portfolio Management +1608.06124 Superconductivity +1608.06125 Differential Geometry +1608.06127 Combinatorics +1608.06130 Logic in Computer Science +1608.06132 Neural and Evolutionary Computing +1608.06133 Software Engineering +1608.06136 Data Structures and Algorithms +1608.06140 Representation Theory +1608.06141 History and Philosophy of Physics +1608.06143 Computation +1608.06144 Software Engineering +1608.06149 Analysis of PDEs +1608.06151 Analysis of PDEs +1608.06153 +1608.06154 Learning +1608.06159 Optimization and Control +1608.06160 Number Theory +1608.06165 Differential Geometry +1608.06167 Quantum Algebra +1608.06168 Information Theory +1608.06170 Combinatorics +1608.06171 Distributed, Parallel, and Cluster Computing +1608.06173 Astrophysics of Galaxies +1608.06175 Artificial Intelligence +1608.06176 Number Theory +1608.06177 Instrumentation and Methods for Astrophysics +1608.06183 Information Theory +1608.06188 Soft Condensed Matter +1608.06189 Computation +1608.06191 Algebraic Geometry +1608.06192 Computer Vision and Pattern Recognition +1608.06197 Computer Vision and Pattern Recognition +1608.06199 Mesoscale and Nanoscale Physics +1608.06200 Soft Condensed Matter +1608.06203 Learning +1608.06204 Systems and Control +1608.06210 General Topology +1608.06212 Logic in Computer Science +1608.06215 Representation Theory +1608.06217 General Mathematics +1608.06220 Number Theory +1608.06222 Populations and Evolution +1608.06226 Optimization and Control +1608.06227 Materials Science +1608.06229 Digital Libraries +1608.06232 Symplectic Geometry +1608.06237 Experiment +1608.06240 Astrophysics of Galaxies +1608.06241 Theory +1608.06242 Populations and Evolution +1608.06247 Adaptation and Self-Organizing Systems +1608.06248 Medical Physics +1608.06249 Cryptography and Security +1608.06253 Information Retrieval +1608.06254 Cryptography and Security +1608.06257 Atmospheric and Oceanic Physics +1608.06258 Instrumentation and Methods for Astrophysics +1608.06259 Fluid Dynamics +1608.06262 Instrumentation and Methods for Astrophysics +1608.06265 Group Theory +1608.06269 Dynamical Systems +1608.06270 +1608.06271 +1608.06272 Information Theory +1608.06273 Instrumentation and Detectors +1608.06274 Combinatorics +hep-th/0001048 Theory +hep-th/0202059 Theory +hep-th/0210121 Theory +1601.06530 Differential Geometry +1602.03073 Probability +1602.06906 K-Theory and Homology +1608.01256 Representation Theory +1609.01409 Human-Computer Interaction +1610.07258 Learning +1611.08040 Cosmology and Nongalactic Astrophysics +1611.08647 Networking and Internet Architecture +1611.08660 Information Theory +1611.08692 Chemical Physics +1611.08838 Phenomenology +1611.08841 Computer Vision and Pattern Recognition +1611.09062 Mathematical Finance +1611.09183 Analysis of PDEs +1611.09215 Metric Geometry +1611.09397 Experiment +1611.09863 +1611.09878 Computation and Language +1611.09888 Medical Physics +1611.09891 Medical Physics +1611.09893 General Finance +1611.09894 Artificial Intelligence +1611.09897 Machine Learning +1611.09907 Discrete Mathematics +1611.09929 Mesoscale and Nanoscale Physics +1611.09944 Distributed, Parallel, and Cluster Computing +1611.09948 Artificial Intelligence +1611.09953 High Energy Astrophysical Phenomena +1611.09957 Artificial Intelligence +1611.09999 +1611.10015 +1611.10031 Learning +1611.10039 +1611.10041 Optimization and Control +1611.10042 Tissues and Organs +1611.10046 +1611.10099 Classical Analysis and ODEs +1611.10127 Strongly Correlated Electrons +1611.10133 Combinatorics +1611.10157 Probability +1611.10247 Statistical Mechanics +1611.10312 Physics and Society +1611.10317 Symplectic Geometry +1611.10331 Applications +1611.10334 Computational Complexity +1611.10345 +1611.10359 Computation +1612.00100 Learning +1612.00194 Computational Physics +1612.00199 Lattice +1612.00250 Strongly Correlated Electrons +1612.00267 +1612.00326 Theory +1612.00374 Machine Learning +1612.00383 Machine Learning +1612.00402 Computational Engineering, Finance, and Science +1506.04386 Functional Analysis +1511.07129 +1512.02855 Statistical Mechanics +1512.07684 Distributed, Parallel, and Cluster Computing +1512.08534 Commutative Algebra +0706.0357 General Mathematics +0803.0297 Algebraic Geometry +0909.3604 Differential Geometry +1011.0499 Geometric Topology +1102.3928 Optimization and Control +1104.4792 Geometric Topology +1104.4796 Geometric Topology +1106.3116 Geometric Topology +1108.2467 Differential Geometry +1109.0332 Classical Analysis and ODEs +1109.0745 Dynamical Systems +1111.5277 Algebraic Topology +1111.7158 Complex Variables +1201.3432 Physics and Society +1203.5455 Differential Geometry +1205.4301 Differential Geometry +1208.6480 +1210.2560 Soft Condensed Matter +1211.1299 Discrete Mathematics +1212.4206 Analysis of PDEs +1301.1942 Machine Learning +1303.0587 Algebraic Geometry +1303.5908 Probability +1303.6319 Dynamical Systems +1305.1422 Distributed, Parallel, and Cluster Computing +1305.5511 Algebraic Geometry +1306.6035 Group Theory +1307.7438 Classical Analysis and ODEs +1309.4068 Algebraic Geometry +1309.4857 Analysis of PDEs +1309.5766 Probability +1310.5290 Soft Condensed Matter +1311.6416 Classical Analysis and ODEs +1312.1301 Probability +1312.3311 Analysis of PDEs +1312.4219 Analysis of PDEs +1312.5972 Combinatorics +1312.7014 Discrete Mathematics +1401.0149 Category Theory +1401.6043 Classical Analysis and ODEs +1402.0851 Discrete Mathematics +1402.2664 Discrete Mathematics +1402.2988 Statistical Mechanics +1402.3900 Metric Geometry +1403.2114 Functional Analysis +1404.0224 +1404.1579 Number Theory +1404.1906 Operator Algebras +1404.2436 Quantum Algebra +1404.3549 Number Theory +1404.4812 +1404.5616 Theory +1404.7158 Theory +1404.7232 Combinatorics +1405.0758 Analysis of PDEs +1405.3638 Fluid Dynamics +1405.5199 Superconductivity +1406.1721 Algebraic Geometry +1406.2457 Chemical Physics +1406.3802 +1406.3938 Instrumentation and Detectors +1406.4824 Computation and Language +1407.1272 Differential Geometry +1407.2534 Materials Science +1407.3947 Combinatorics +1407.5720 Dynamical Systems +1407.6347 Functional Analysis +1408.1045 Probability +1408.2182 +1409.2543 Atomic Physics +1409.3353 Data Analysis, Statistics and Probability +1410.0742 Combinatorics +1410.1789 Solar and Stellar Astrophysics +1410.1990 Atomic Physics +1410.2115 Phenomenology +1410.2637 Functional Analysis +1410.3519 Physics and Society +1410.3815 Applications +1410.4158 Optimization and Control +1410.4852 Mesoscale and Nanoscale Physics +1410.6239 +1410.6898 Statistical Finance +1410.8347 Operator Algebras +1411.0594 Information Theory +1411.0923 Combinatorics +1411.2221 Chemical Physics +1411.4467 Number Theory +1411.4523 Atomic Physics +1411.6520 Machine Learning +1411.7720 Numerical Analysis +1412.0181 Experiment +1412.1248 Number Theory +1412.3178 Algebraic Geometry +1412.3829 Hardware Architecture +1412.4693 +1412.4884 Materials Science +1412.6279 Computer Vision and Pattern Recognition +1412.7764 Statistical Mechanics +1501.00531 Materials Science +1501.02860 Dynamical Systems +1501.03702 Chemical Physics +1501.04687 Strongly Correlated Electrons +1501.07335 Combinatorics +1502.00533 Statistical Mechanics +1502.00610 Theory +1502.01431 Analysis of PDEs +1502.02656 Mesoscale and Nanoscale Physics +1502.04017 Chemical Physics +1502.05206 Complex Variables +1502.07919 Number Theory +1503.00511 Number Theory +1503.01313 Computer Vision and Pattern Recognition +1503.03969 Classical Analysis and ODEs +1503.05935 High Energy Astrophysical Phenomena +1503.05969 Cosmology and Nongalactic Astrophysics +1503.06055 Accelerator Physics +1503.07249 Dynamical Systems +1503.07767 Differential Geometry +1504.01085 Functional Analysis +1504.01280 Rings and Algebras +1504.01448 Soft Condensed Matter +1504.02557 Phenomenology +1504.02873 History and Philosophy of Physics +1504.03081 High Energy Astrophysical Phenomena +1504.03348 Category Theory +1504.03655 Learning +1504.03708 Biomolecules +1504.05410 Mesoscale and Nanoscale Physics +1504.06355 Logic in Computer Science +1504.06387 Networking and Internet Architecture +1504.06843 Differential Geometry +1504.07093 +1505.01138 Biomolecules +1505.01922 Statistics Theory +1505.02639 +1505.04901 Optimization and Control +1505.05553 Phenomenology +1505.05631 Materials Science +1505.05980 +1505.06232 Optimization and Control +1505.06887 Superconductivity +1505.07364 Mesoscale and Nanoscale Physics +1505.07646 Data Analysis, Statistics and Probability +1505.07882 Analysis of PDEs +1506.02252 Materials Science +1506.02563 Exactly Solvable and Integrable Systems +1506.04471 Theory +1506.06662 Biomolecules +1506.07426 Algebraic Geometry +1506.08670 Computer Vision and Pattern Recognition +1506.09073 Materials Science +1506.09213 Phenomenology +1507.00272 Numerical Analysis +1507.01444 Other Computer Science +1507.01520 Earth and Planetary Astrophysics +1507.01976 Algebraic Topology +1507.02259 Data Structures and Algorithms +1507.02624 Classical Analysis and ODEs +1507.03174 Quantum Gases +1507.04290 Combinatorics +1507.04421 Combinatorics +1507.04542 Soft Condensed Matter +1507.05032 Number Theory +1507.05409 Computer Vision and Pattern Recognition +1507.05827 Numerical Analysis +1507.06432 Strongly Correlated Electrons +1507.06470 Strongly Correlated Electrons +1507.07099 Experiment +1507.07555 Theory +1507.08472 Computational Physics +1508.00249 Statistics Theory +1508.00414 Strongly Correlated Electrons +1508.00629 Materials Science +1508.00942 Emerging Technologies +1508.01808 Classical Physics +1508.02126 Other Condensed Matter +1508.02512 Phenomenology +1508.03110 Numerical Analysis +1508.03559 Systems and Control +1508.03886 +1508.04142 Phenomenology +1508.04247 Probability +1508.04696 Spectral Theory +1508.05039 Systems and Control +1508.05160 Phenomenology +1508.07237 Strongly Correlated Electrons +1508.07607 Optimization and Control +1508.07643 Machine Learning +1508.07678 Artificial Intelligence +1508.07941 Optimization and Control +1509.00112 Representation Theory +1509.00838 Computation and Language +1509.01606 Phenomenology +1509.02679 Quantum Gases +1509.02713 Analysis of PDEs +1509.03892 Materials Science +1509.03906 Mesoscale and Nanoscale Physics +1509.04257 Quantum Gases +1509.07031 Phenomenology +1509.07609 Mesoscale and Nanoscale Physics +1509.08144 Learning +1509.08605 Programming Languages +1509.09050 High Energy Astrophysical Phenomena +1510.00045 Spectral Theory +1510.00075 Analysis of PDEs +1510.00878 Learning +1510.01386 Superconductivity +1510.01905 +1510.02667 Experiment +1510.02994 Exactly Solvable and Integrable Systems +1510.03001 Geometric Topology +1510.03111 High Energy Astrophysical Phenomena +1510.03866 Theory +1510.04228 Differential Geometry +1510.05965 Materials Science +1510.06214 Number Theory +1510.06315 Materials Science +1510.07468 Mesoscale and Nanoscale Physics +1510.07508 Strongly Correlated Electrons +1510.07884 Atmospheric and Oceanic Physics +1510.08983 Neural and Evolutionary Computing +1511.00211 +1511.00346 Logic in Computer Science +1511.01649 Astrophysics of Galaxies +1511.02412 Theory +1511.02494 Performance +1511.02559 Differential Geometry +1511.03301 +1511.04841 Information Theory +1511.05055 Astrophysics of Galaxies +1511.05216 Theory +1511.07094 Differential Geometry +1511.07394 Computer Vision and Pattern Recognition +1511.07403 Rings and Algebras +1511.07439 Solar and Stellar Astrophysics +1511.07567 Theory +1511.07777 General Physics +1511.07967 Functional Analysis +1511.08200 Cosmology and Nongalactic Astrophysics +1511.08576 Superconductivity +1511.08686 Instrumentation and Methods for Astrophysics +1511.08831 Dynamical Systems +1512.00256 Differential Geometry +1512.00275 Strongly Correlated Electrons +1512.00677 Statistics Theory +1512.00824 Information Theory +1512.00835 Algebraic Geometry +1512.00866 Group Theory +1512.00885 Mesoscale and Nanoscale Physics +1512.01213 Neurons and Cognition +1512.02170 Representation Theory +1512.02621 Theory +1512.03421 Combinatorics +1512.03589 Computational Geometry +1512.04546 Mesoscale and Nanoscale Physics +1512.04885 Soft Condensed Matter +1512.05161 +1512.05185 Systems and Control +1512.05721 Soft Condensed Matter +1512.05735 Algebraic Geometry +1512.06243 Analysis of PDEs +1512.06404 Cryptography and Security +1512.06689 +1512.06964 Statistical Mechanics +1512.07461 Algebraic Geometry +1512.07676 Rings and Algebras +1512.07802 Mesoscale and Nanoscale Physics +1512.08038 Solar and Stellar Astrophysics +1512.08204 Learning +1512.08496 Combinatorics +1512.08579 Mesoscale and Nanoscale Physics +1512.08584 Mesoscale and Nanoscale Physics +1512.08837 Fluid Dynamics +1512.08895 Phenomenology +1512.08975 Probability +1512.09161 Dynamical Systems +1512.09229 +1601.00275 Cryptography and Security +1601.00300 Phenomenology +1601.00368 Mesoscale and Nanoscale Physics +1601.00425 Superconductivity +1601.00522 Fluid Dynamics +1601.00570 Physics and Society +1601.00965 Instrumentation and Methods for Astrophysics +1601.01050 Programming Languages +1601.01546 Logic in Computer Science +1601.01609 Mesoscale and Nanoscale Physics +1601.01781 Materials Science +1601.01897 Metric Geometry +1601.02025 Theory +1601.02027 Phenomenology +1601.02034 Databases +1601.02035 Functional Analysis +1601.02036 +1601.02037 Functional Analysis +1601.02038 Phenomenology +1601.02039 Computer Science and Game Theory +1601.02042 +1601.02043 Applications +1601.02044 Solar and Stellar Astrophysics +1601.02046 Solar and Stellar Astrophysics +1601.02047 Plasma Physics +1601.02050 Biomolecules +1601.02052 Strongly Correlated Electrons +1601.02053 +1601.02056 Computational Physics +1601.02059 Programming Languages +1601.02060 +1601.02061 Soft Condensed Matter +1601.02065 Fluid Dynamics +1601.02069 Sound +1601.02071 Human-Computer Interaction +1601.02076 Multimedia +1601.02077 Theory +1601.02079 Materials Science +1601.02084 Differential Geometry +1601.02088 Computer Vision and Pattern Recognition +1601.02098 Computer Vision and Pattern Recognition +1601.02107 Analysis of PDEs +1601.02109 Information Theory +1601.02113 Phenomenology +1601.02115 Networking and Internet Architecture +1601.02117 Cryptography and Security +1601.02120 Numerical Analysis +1601.02121 Probability +1601.02122 Functional Analysis +1601.02124 Computer Vision and Pattern Recognition +1601.02127 Statistics Theory +1601.02130 Networking and Internet Architecture +1601.02131 Distributed, Parallel, and Cluster Computing +1601.02132 Logic in Computer Science +1601.02135 Group Theory +1601.02137 Information Theory +1601.02138 +1601.02142 Materials Science +1601.02143 Classical Analysis and ODEs +1601.02144 Earth and Planetary Astrophysics +1601.02145 Algebraic Geometry +1601.02146 Optimization and Control +1601.02147 Probability +1601.02149 Pricing of Securities +1601.02150 Networking and Internet Architecture +1601.02153 Algebraic Geometry +1601.02154 Analysis of PDEs +1601.02155 Social and Information Networks +1601.02156 Risk Management +1601.02158 Category Theory +1601.02165 Strongly Correlated Electrons +1601.02166 Computation and Language +1601.02167 Symplectic Geometry +1601.02169 Commutative Algebra +1601.02173 Classical Analysis and ODEs +1601.02182 Numerical Analysis +1601.02185 Algebraic Topology +1601.02186 Astrophysics of Galaxies +1601.02188 Probability +1601.02189 Neurons and Cognition +1601.02190 Systems and Control +1601.02191 Systems and Control +1601.02192 Classical Analysis and ODEs +1601.02193 Number Theory +1601.02194 Algebraic Geometry +1601.02195 +1601.02197 Human-Computer Interaction +1601.02199 Instrumentation and Detectors +1601.02200 Information Theory +1601.02201 Functional Analysis +1601.02204 Robotics +1601.02211 Materials Science +1601.02212 Combinatorics +1601.02213 Learning +1601.02214 Materials Science +1601.02215 Materials Science +1601.02216 Information Theory +1601.02218 Optimization and Control +1601.02220 Computer Vision and Pattern Recognition +1601.02221 Mesoscale and Nanoscale Physics +1601.02223 Information Theory +1601.02224 Applications +1601.02225 Computer Vision and Pattern Recognition +1601.02229 Combinatorics +1601.02230 +1601.02232 Differential Geometry +1601.02234 Combinatorics +1601.02237 Mesoscale and Nanoscale Physics +1601.02238 Probability +1601.02241 Computational Engineering, Finance, and Science +1601.02243 Number Theory +1601.02245 Numerical Analysis +1601.02246 Pricing of Securities +1601.02250 Systems and Control +1601.02252 Metric Geometry +1601.02255 Mesoscale and Nanoscale Physics +1601.02257 Learning +1601.02258 Logic in Computer Science +1601.02264 Lattice +1601.02265 Mesoscale and Nanoscale Physics +1601.02274 Rings and Algebras +1601.02275 Group Theory +1601.02277 Atomic Physics +1601.02281 Cryptography and Security +1601.02285 Probability +1601.02289 Solar and Stellar Astrophysics +1601.02291 Mesoscale and Nanoscale Physics +1601.02293 Solar and Stellar Astrophysics +1601.02294 Complex Variables +1601.02295 Complex Variables +1601.02296 Solar and Stellar Astrophysics +1601.02298 Computer Science and Game Theory +1601.02299 Analysis of PDEs +1601.02300 Information Retrieval +1601.02308 Spectral Theory +1601.02313 +1601.02314 Geometric Topology +1601.02315 Optimization and Control +1601.02316 Materials Science +1601.02317 Mesoscale and Nanoscale Physics +1601.02322 +1601.02324 +1601.02325 Analysis of PDEs +1601.02327 Information Retrieval +1601.02331 Disordered Systems and Neural Networks +1601.02332 Solar and Stellar Astrophysics +1601.02333 Numerical Analysis +1601.02334 Instrumentation and Methods for Astrophysics +1601.02338 Complex Variables +1601.02341 Phenomenology +1601.02343 General Topology +1601.02346 Materials Science +1601.02351 Software Engineering +1601.02352 Geophysics +1601.02354 Combinatorics +1601.02359 Medical Physics +1601.02361 Numerical Analysis +1601.02362 Functional Analysis +1601.02364 Superconductivity +1601.02366 Theory +1601.02370 Solar and Stellar Astrophysics +1601.02371 Discrete Mathematics +1601.02372 Social and Information Networks +1601.02376 Learning +1601.02377 Learning +1601.02378 Strongly Correlated Electrons +1601.02379 Robotics +1601.02380 Information Theory +1601.02387 Computation +1601.02397 Tissues and Organs +1601.02399 Materials Science +1601.02401 Chemical Physics +1601.02405 Earth and Planetary Astrophysics +1601.02407 Statistical Finance +1601.02408 Algebraic Geometry +1601.02410 Methodology +1601.02419 Differential Geometry +1601.02420 Information Theory +1601.02421 Algebraic Geometry +1601.02422 Algebraic Geometry +1601.02423 High Energy Astrophysical Phenomena +1601.02424 Mesoscale and Nanoscale Physics +1601.02425 Algebraic Geometry +1601.02429 Applications +1601.02431 Computation and Language +1601.02433 Artificial Intelligence +1601.02437 Information Theory +1601.02438 +1601.02441 Metric Geometry +1601.02442 Differential Geometry +1601.02443 Strongly Correlated Electrons +1601.02453 Discrete Mathematics +1601.02460 Information Theory +1601.02461 Methodology +1601.02464 Soft Condensed Matter +1601.02465 Social and Information Networks +1601.02472 Distributed, Parallel, and Cluster Computing +1601.02473 Commutative Algebra +1601.02475 +1601.02480 +1601.02481 Data Structures and Algorithms +1601.02482 Algebraic Geometry +1601.02484 Programming Languages +1601.02487 Computer Vision and Pattern Recognition +1601.02489 Sound +1601.02491 Instrumentation and Methods for Astrophysics +1601.02495 +1601.02497 High Energy Astrophysical Phenomena +1601.02499 Social and Information Networks +1601.02502 Computation and Language +1601.02504 General Physics +1601.02505 Solar and Stellar Astrophysics +1601.02509 Functional Analysis +1601.02510 Dynamical Systems +1601.02513 Machine Learning +1601.02514 Cosmology and Nongalactic Astrophysics +1601.02515 Probability +1601.02519 History and Philosophy of Physics +1601.02527 +1601.02536 Programming Languages +1601.02537 +1601.02538 Analysis of PDEs +1601.02539 Computation and Language +1601.02543 Computation and Language +1601.02546 Sound +1601.02547 Numerical Analysis +1601.02548 Analysis of PDEs +1601.02550 Analysis of PDEs +1601.02552 Analysis of PDEs +1601.02555 Geometric Topology +1601.02558 +1601.02560 Physics Education +1601.02561 Group Theory +1601.02562 Physics Education +1601.02563 +1601.02564 Combinatorics +1601.02566 Classical Analysis and ODEs +1601.02568 Functional Analysis +1601.02571 Phenomenology +1601.02572 Algebraic Geometry +1601.02579 Optics +1601.02588 +1601.02590 Materials Science +1601.02591 Number Theory +1601.02592 +1601.02596 Methodology +1601.02598 +1007.1948 +1010.0904 Molecular Networks +1110.2771 General Physics +1202.2481 Category Theory +1203.3155 Logic +1205.5878 Differential Geometry +1308.4236 Analysis of PDEs +1309.0630 Algebraic Geometry +1311.7172 Algebraic Geometry +1312.4007 +1401.0725 +1401.0758 Computational Complexity +1401.0779 Classical Analysis and ODEs +1401.1748 +1401.2370 Mesoscale and Nanoscale Physics +1401.2555 Probability +1401.2732 Hardware Architecture +1401.2958 Analysis of PDEs +1401.3669 Computation and Language +1401.4837 +1401.5230 Optics +1401.5484 Optimization and Control +1401.6615 Distributed, Parallel, and Cluster Computing +1401.7929 Combinatorics +1405.0985 Classical Analysis and ODEs +1405.4786 Representation Theory +1406.1688 Lattice +1409.5253 Physics and Society +1409.7861 Optimization and Control +1409.8537 Analysis of PDEs +1410.7280 Quantum Gases +1411.1197 Algebraic Geometry +1411.1394 Algebraic Geometry +1412.0388 Number Theory +1412.1150 Spectral Theory +1412.1540 Dynamical Systems +1412.1801 General Physics +1412.2047 Dynamical Systems +1412.2282 Methodology +1412.2829 Chemical Physics +1412.3071 Combinatorics +1412.3526 Differential Geometry +1412.4120 Strongly Correlated Electrons +1412.4409 Theory +1412.5184 Astrophysics of Galaxies +1412.5291 Optimization and Control +1412.5645 Probability +1412.6310 Differential Geometry +1412.6336 Differential Geometry +1412.6340 Number Theory +1412.6608 Methodology +1412.6745 Mathematical Finance +1412.7271 Materials Science +1412.8497 +1501.01622 Differential Geometry +1501.02108 Applications +1501.02353 Numerical Analysis +1501.02824 Spectral Theory +1501.03772 Probability +1501.04432 Operator Algebras +1501.04648 Biomolecules +1501.05179 +1501.05201 Instrumentation and Detectors +1501.05895 +1501.05988 Accelerator Physics +1501.06506 Instrumentation and Methods for Astrophysics +1501.07161 +1501.07297 Risk Management +1502.00766 Rings and Algebras +1502.00815 Statistical Mechanics +1502.00856 Instrumentation and Methods for Astrophysics +1502.01185 Materials Science +1502.02309 Machine Learning +1502.02825 Combinatorics +1502.03046 Statistical Mechanics +1502.03235 +1502.03438 Materials Science +1502.03609 Applications +1502.03909 Physics and Society +1502.05293 General Physics +1502.05612 Mesoscale and Nanoscale Physics +1502.06127 +1502.06266 Strongly Correlated Electrons +1502.06630 Solar and Stellar Astrophysics +1502.06945 Information Theory +1502.07387 Functional Analysis +1502.07910 Soft Condensed Matter +1503.01134 Number Theory +1503.04012 K-Theory and Homology +1503.06019 +1504.07377 Networking and Internet Architecture +1505.00819 Probability +1505.01517 Quantum Gases +1505.01952 +1505.02065 Machine Learning +1505.02292 Risk Management +1505.02344 Rings and Algebras +1505.02360 Optics +1505.03707 +1505.04139 Biomolecules +1505.04355 Astrophysics of Galaxies +1505.05300 Biological Physics +1505.07191 Solar and Stellar Astrophysics +1505.07229 Algebraic Geometry +1506.00618 Combinatorics +1506.00891 Plasma Physics +1506.00947 Applications +1506.01446 Distributed, Parallel, and Cluster Computing +1506.01576 Dynamical Systems +1506.03385 Numerical Analysis +1506.03972 Differential Geometry +1506.04376 Differential Geometry +1506.05292 Computational Physics +1506.05971 Mesoscale and Nanoscale Physics +1506.06087 Combinatorics +1506.06493 Analysis of PDEs +1506.06622 Group Theory +1506.06639 Strongly Correlated Electrons +1506.06812 +1506.06925 Molecular Networks +1506.07305 Space Physics +1506.07336 Materials Science +1506.07554 Computational Finance +1506.08053 Quantum Gases +1506.08224 Disordered Systems and Neural Networks +1506.08278 Statistics Theory +1506.08652 +1506.08697 +1506.09211 Optimization and Control +1507.00491 Materials Science +1507.01267 Atomic and Molecular Clusters +1507.01510 Soft Condensed Matter +1507.01640 Mesoscale and Nanoscale Physics +1507.02091 Phenomenology +1507.02825 Cryptography and Security +1507.03638 Artificial Intelligence +1507.03715 Computational Geometry +1507.03726 Group Theory +1507.03799 Instrumentation and Detectors +1507.04765 +1507.05239 Combinatorics +1507.05937 Quantum Gases +1507.06559 +1507.07143 Combinatorics +1507.08198 Information Retrieval +1507.08234 Information Retrieval +1507.08709 Algebraic Topology +1507.08789 Cellular Automata and Lattice Gases +1508.00937 Combinatorics +1508.02217 Adaptation and Self-Organizing Systems +1508.02658 +1508.02774 Neural and Evolutionary Computing +1508.03815 Biomolecules +1508.04878 Quantum Gases +1508.05179 Materials Science +1508.05265 Materials Science +1508.05656 Rings and Algebras +1508.05888 Analysis of PDEs +1508.06071 Robotics +1508.06236 Computational Finance +1508.06495 +1508.06626 Classical Analysis and ODEs +1508.07158 Number Theory +1508.07825 Methodology +1509.01822 Information Theory +1509.02092 Strongly Correlated Electrons +1509.03859 +1509.04382 Superconductivity +1509.04572 High Energy Astrophysical Phenomena +1509.04788 Social and Information Networks +1509.05873 Classical Analysis and ODEs +1509.06155 Solar and Stellar Astrophysics +1509.06260 Dynamical Systems +1509.09285 Quantitative Methods +1510.00427 Neurons and Cognition +1510.00777 Combinatorics +1510.00840 Dynamical Systems +1510.01085 Materials Science +1510.01762 Analysis of PDEs +1510.01946 Optimization and Control +1510.02043 Atmospheric and Oceanic Physics +1510.02521 Combinatorics +1510.03257 Classical Analysis and ODEs +1510.03939 Group Theory +1510.04525 +1510.04568 Optimization and Control +1510.04717 Analysis of PDEs +1510.05348 Strongly Correlated Electrons +1510.06467 +1510.06571 Materials Science +1510.06818 Mesoscale and Nanoscale Physics +1510.07203 Instrumentation and Detectors +1510.07304 Rings and Algebras +1510.09198 Theory +1511.02780 Theory +1511.03655 +1511.04637 Geometric Topology +1511.06229 Materials Science +1511.07993 Probability +1511.09193 Atomic and Molecular Clusters +1512.07749 Analysis of PDEs +1512.07985 Dynamical Systems +1601.00102 +1601.00945 Plasma Physics +1601.02722 Mesoscale and Nanoscale Physics +1601.02801 Methodology +1601.03296 Probability +1601.03649 Neural and Evolutionary Computing +1601.05278 Functional Analysis +1601.05437 Phenomenology +1601.05582 +1601.05763 +1601.06180 Artificial Intelligence +1601.07423 +1602.00369 Differential Geometry +1602.00621 Data Structures and Algorithms +1602.00863 Algebraic Geometry +1602.02075 +1602.02191 Machine Learning +1602.02311 Machine Learning +1602.02433 Phenomenology +1602.02442 Machine Learning +1602.02722 Learning +1602.05795 Applications +1602.07893 Cosmology and Nongalactic Astrophysics +1602.08085 Group Theory +1603.00288 Fluid Dynamics +1603.00940 Optimization and Control +1603.02206 Analysis of PDEs +1603.02921 +1603.03130 Learning +1603.03375 Superconductivity +1603.04159 +1603.05472 +1603.05815 Classical Analysis and ODEs +1603.05983 Theory +1603.08217 Mesoscale and Nanoscale Physics +1604.01013 +1604.02300 Number Theory +1604.03394 Analysis of PDEs +1604.04114 Logic in Computer Science +1604.05568 +1604.05937 Mathematical Software +1605.00191 Phenomenology +1605.00978 Quantum Algebra +1605.04959 Molecular Networks +1605.06794 Algebraic Topology +1605.06796 Machine Learning +1605.07254 Machine Learning +1605.07556 Cosmology and Nongalactic Astrophysics +1605.09775 Classical Analysis and ODEs +1606.01649 Phenomenology +1606.02101 Applications +1606.02556 Computer Vision and Pattern Recognition +1606.03829 Combinatorics +1606.06865 Discrete Mathematics +1606.08028 +1606.08501 Learning +1606.08513 Computation and Language +1606.08665 Phenomenology +1606.09165 Combinatorics +1607.00515 Methodology +1607.01746 Neurons and Cognition +1607.01791 High Energy Astrophysical Phenomena +1607.01817 Logic +1607.02046 Computer Vision and Pattern Recognition +1607.02931 Phenomenology +1607.04189 Strongly Correlated Electrons +1607.04323 History and Overview +1607.05053 Combinatorics +1607.05292 +1607.05329 Cosmology and Nongalactic Astrophysics +1607.05971 General Physics +1607.06801 Methodology +1607.08439 Pattern Formation and Solitons +1607.08723 Computation and Language +1607.08754 Combinatorics +1608.00231 Group Theory +1608.01635 Metric Geometry +1608.02347 Instrumentation and Detectors +1608.02595 +1608.02678 Commutative Algebra +1608.03011 Symplectic Geometry +1608.03817 Machine Learning +1608.05138 Distributed, Parallel, and Cluster Computing +1608.05247 Classical Analysis and ODEs +1608.05996 Solar and Stellar Astrophysics +1608.06860 Chemical Physics +1608.07960 Digital Libraries +1608.08300 +1608.08364 Instrumentation and Detectors +1609.01669 Phenomenology +1609.01993 Analysis of PDEs +1609.02475 Theory +1609.02478 Soft Condensed Matter +1609.03423 Information Theory +1609.05526 Strongly Correlated Electrons +1609.05636 +1609.05729 Earth and Planetary Astrophysics +1609.06182 Superconductivity +1609.06491 Phenomenology +1609.07386 Machine Learning +1609.07715 Systems and Control +1609.07723 Information Theory +1609.08129 Phenomenology +1609.08777 Computation and Language +1609.09004 Computation and Language +1609.09474 Phenomenology +1609.09551 Algebraic Geometry +1609.09764 Sound +1610.00890 Algebraic Topology +1610.02085 Computers and Society +1610.02738 Methodology +1610.03521 Quantitative Methods +1610.04385 Differential Geometry +1610.05147 Lattice +1610.05315 Biological Physics +1610.05603 Cryptography and Security +1610.05725 Data Structures and Algorithms +1610.05740 Classical Analysis and ODEs +1610.05941 Computational Physics +1610.05983 High Energy Astrophysical Phenomena +1610.06366 Formal Languages and Automata Theory +1610.06383 Computational Physics +1610.06424 History and Philosophy of Physics +1610.06493 Optics +1610.06909 Astrophysics of Galaxies +1610.07194 Analysis of PDEs +1610.07488 Computer Vision and Pattern Recognition +1610.07639 Data Structures and Algorithms +1610.07793 Number Theory +1610.07937 Phenomenology +1610.07943 Phenomenology +1610.08050 +1610.08341 +1610.08412 Geophysics +1610.08562 Solar and Stellar Astrophysics +1610.08667 Statistical Mechanics +1610.08687 Analysis of PDEs +1610.08691 Programming Languages +1610.08844 Computer Vision and Pattern Recognition +1610.08874 +1610.08883 Instrumentation and Detectors +1610.08921 Statistical Finance +1610.08955 Analysis of PDEs +1610.08976 Theory +1610.08978 +1610.08984 Instrumentation and Methods for Astrophysics +1610.08985 Phenomenology +1610.08986 Mesoscale and Nanoscale Physics +1610.08988 Mesoscale and Nanoscale Physics +1610.08989 Experiment +1610.08991 Computational Physics +1610.08992 Materials Science +1610.08993 Disordered Systems and Neural Networks +1610.08996 General Topology +1610.08999 Theory +1610.09001 Computer Vision and Pattern Recognition +1610.09002 Social and Information Networks +1610.09003 Computer Vision and Pattern Recognition +1610.09004 Differential Geometry +1610.09005 Statistics Theory +1610.09012 Software Engineering +1610.09016 History and Overview +1610.09019 Classical Analysis and ODEs +1610.09020 Optimization and Control +1610.09022 Mesoscale and Nanoscale Physics +1610.09023 Astrophysics of Galaxies +1610.09024 Phenomenology +1610.09027 Learning +1610.09030 +1610.09031 Chaotic Dynamics +1610.09032 Computer Vision and Pattern Recognition +1610.09034 Machine Learning +1610.09035 Algebraic Topology +1610.09036 Methodology +1610.09037 Methodology +1610.09038 Machine Learning +1610.09039 +1610.09041 Applications +1610.09042 Spectral Theory +1610.09045 Quantitative Methods +1610.09049 Numerical Analysis +1610.09051 Statistics Theory +1610.09052 +1610.09054 Information Theory +1610.09056 Plasma Physics +1610.09058 Data Structures and Algorithms +1610.09059 Pattern Formation and Solitons +1610.09063 Combinatorics +1610.09065 Algebraic Geometry +1610.09066 Accelerator Physics +1610.09068 Statistical Mechanics +1610.09069 Strongly Correlated Electrons +1610.09070 Statistical Mechanics +1610.09072 Learning +1610.09074 Quantum Gases +1610.09075 Machine Learning +1610.09078 Mesoscale and Nanoscale Physics +1610.09079 Numerical Analysis +1610.09080 Numerical Analysis +1610.09081 Representation Theory +1610.09083 Learning +1610.09084 Number Theory +1610.09085 Computational Finance +1610.09087 Computer Vision and Pattern Recognition +1610.09089 Logic in Computer Science +1610.09092 Plasma Physics +1610.09093 Combinatorics +1610.09094 Computational Physics +1610.09097 Pattern Formation and Solitons +1610.09098 High Energy Astrophysical Phenomena +1610.09099 Analysis of PDEs +1610.09100 High Energy Astrophysical Phenomena +1610.09101 Fluid Dynamics +1610.09102 Mesoscale and Nanoscale Physics +1610.09103 Differential Geometry +1610.09106 Dynamical Systems +1610.09107 Number Theory +1610.09110 Information Theory +1610.09111 Superconductivity +1610.09112 Optimization and Control +1610.09114 Combinatorics +1610.09115 Algebraic Geometry +1610.09116 Quantum Gases +1610.09117 Logic +1610.09118 Soft Condensed Matter +1610.09123 Networking and Internet Architecture +1610.09124 Mathematical Finance +1610.09127 Machine Learning +1610.09128 +1610.09129 Quantum Algebra +1610.09130 Computational Complexity +1610.09131 Statistical Mechanics +1610.09132 Computational Complexity +1610.09133 Mesoscale and Nanoscale Physics +1610.09135 Materials Science +1610.09136 Number Theory +1610.09137 Atomic Physics +1610.09138 Systems and Control +1610.09139 Methodology +1610.09140 +1610.09142 +1610.09144 Astrophysics of Galaxies +1610.09145 Systems and Control +1610.09146 Data Structures and Algorithms +1610.09148 Classical Analysis and ODEs +1610.09151 Functional Analysis +1610.09153 Mesoscale and Nanoscale Physics +1610.09154 Classical Analysis and ODEs +1610.09155 Optimization and Control +1610.09156 Machine Learning +1610.09157 Computer Vision and Pattern Recognition +1610.09158 Computation and Language +1610.09159 Computational Physics +1610.09162 Algebraic Geometry +1610.09163 Optics +1610.09164 Social and Information Networks +1610.09165 Classical Analysis and ODEs +1610.09166 Databases +1610.09169 Theory +1610.09170 Dynamical Systems +1610.09171 Number Theory +1610.09172 Materials Science +1610.09173 Systems and Control +1610.09175 Fluid Dynamics +1610.09179 +1610.09181 +1610.09183 Programming Languages +1610.09186 High Energy Astrophysical Phenomena +1610.09187 Statistics Theory +1610.09188 Group Theory +1610.09189 Quantitative Methods +1610.09190 Distributed, Parallel, and Cluster Computing +1610.09193 Neurons and Cognition +1610.09194 Probability +1610.09195 Probability +1610.09197 +1610.09199 Materials Science +1610.09200 Materials Science +1610.09201 Learning +1610.09202 Classical Analysis and ODEs +1610.09203 Analysis of PDEs +1610.09204 Computer Vision and Pattern Recognition +1610.09205 Systems and Control +1610.09206 +1610.09207 Numerical Analysis +1610.09208 Number Theory +1610.09210 Combinatorics +1610.09211 Numerical Analysis +1610.09212 Cryptography and Security +1610.09213 Complex Variables +1610.09214 +1610.09217 +1610.09219 Theory +1610.09221 Computer Science and Game Theory +1610.09222 +1610.09223 Data Structures and Algorithms +1610.09225 Information Retrieval +1610.09226 Computation and Language +1610.09227 Solar and Stellar Astrophysics +1610.09230 Mathematical Finance +1610.09231 Cryptography and Security +1610.09234 Mathematical Finance +1610.09235 Logic in Computer Science +1610.09236 Materials Science +1610.09237 Computer Vision and Pattern Recognition +1610.09238 Algebraic Geometry +1610.09240 Software Engineering +1610.09241 Numerical Analysis +1610.09242 +1610.09244 Information Theory +1610.09245 General Topology +1610.09246 Instrumentation and Detectors +1610.09247 Information Theory +1610.09248 Networking and Internet Architecture +1610.09250 Combinatorics +1610.09253 Social and Information Networks +1610.09254 Logic in Computer Science +1610.09256 Information Theory +1610.09258 Instrumentation and Methods for Astrophysics +1610.09260 Mesoscale and Nanoscale Physics +1610.09262 General Physics +1610.09266 +1610.09268 Commutative Algebra +1610.09269 Learning +1610.09270 Logic +1610.09271 Quantum Algebra +1610.09272 Statistics Theory +1610.09273 +1610.09274 Learning +1610.09276 Group Theory +1610.09278 Computer Vision and Pattern Recognition +1610.09279 Quantitative Methods +1610.09280 Rings and Algebras +1610.09284 Phenomenology +1610.09287 Functional Analysis +1610.09288 Lattice +1610.09292 Statistics Theory +1610.09294 Applications +1610.09295 Analysis of PDEs +1610.09297 Populations and Evolution +1610.09298 Lattice +1610.09300 Learning +1610.09301 Optimization and Control +1610.09304 Number Theory +1610.09306 Mathematical Finance +1610.09309 Other Condensed Matter +1610.09310 Probability +1610.09312 Information Theory +1610.09314 Soft Condensed Matter +1610.09315 Superconductivity +1610.09317 +1610.09318 Phenomenology +1610.09319 +1610.09321 Cosmology and Nongalactic Astrophysics +1610.09323 Group Theory +1610.09324 +1610.09327 High Energy Astrophysical Phenomena +1610.09328 Analysis of PDEs +1610.09330 Cosmology and Nongalactic Astrophysics +1610.09332 Algebraic Geometry +1610.09333 Computation and Language +1610.09334 Computer Vision and Pattern Recognition +1610.09336 Rings and Algebras +1610.09338 Analysis of PDEs +1610.09339 Solar and Stellar Astrophysics +1610.09340 Soft Condensed Matter +1610.09344 Instrumentation and Methods for Astrophysics +1610.09345 Systems and Control +1610.09347 General Physics +1610.09348 Representation Theory +1610.09349 Instrumentation and Detectors +1610.09350 Strongly Correlated Electrons +1610.09351 Superconductivity +1610.09354 Cosmology and Nongalactic Astrophysics +1610.09355 Lattice +1610.09357 Phenomenology +1610.09358 Geophysics +1610.09359 Tissues and Organs +1610.09363 Methodology +1610.09364 +1610.09365 Cosmology and Nongalactic Astrophysics +0710.5684 Soft Condensed Matter +0711.1512 Metric Geometry +0809.0103 Computation and Language +0811.4376 Data Structures and Algorithms +0909.1696 Numerical Analysis +0912.1294 Information Retrieval +1001.2151 Soft Condensed Matter +1001.4561 Materials Science +1001.5010 Solar and Stellar Astrophysics +1002.0914 Classical Physics +1002.2323 Geophysics +1002.2621 Analysis of PDEs +1005.2004 Networking and Internet Architecture +1005.3435 +1007.4009 Mesoscale and Nanoscale Physics +1007.4367 Theory +1008.1288 Mesoscale and Nanoscale Physics +1008.2253 High Energy Astrophysical Phenomena +1009.2972 Astrophysics of Galaxies +1010.2138 Computers and Society +1011.0810 Methodology +1103.5520 Cryptography and Security +1109.6354 Phenomenology +1111.5963 Dynamical Systems +1112.1546 Other Computer Science +1201.5346 Logic in Computer Science +1202.1388 Astrophysics of Galaxies +1202.4880 Performance +1206.6323 +1304.5857 Materials Science +1305.0925 Logic +1307.5387 Instrumentation and Methods for Astrophysics +1310.6820 Mesoscale and Nanoscale Physics +1601.05967 +1602.01548 +1611.06478 Computation and Language +1611.07078 Artificial Intelligence +0803.4354 Discrete Mathematics +0808.3386 Discrete Mathematics +0910.4952 +1010.0657 Mesoscale and Nanoscale Physics +1104.5331 Algebraic Topology +1109.6045 Quantum Gases +1203.0193 Statistics Theory +1204.6689 Number Theory +1210.8059 Complex Variables +1304.6111 Group Theory +1306.3299 +1306.5205 +1307.5919 Combinatorics +1309.1823 Discrete Mathematics +1309.7732 General Physics +1311.4072 Differential Geometry +1401.3993 Dynamical Systems +1401.4983 Algebraic Topology +1402.3353 Numerical Analysis +1402.3692 Exactly Solvable and Integrable Systems +1403.0529 Computational Complexity +1404.6143 +1404.6500 Physics Education +1404.7716 Combinatorics +1405.7485 Solar and Stellar Astrophysics +1407.5487 Chaotic Dynamics +1407.6565 Astrophysics of Galaxies +1408.0248 Algebraic Topology +1408.1390 Computational Complexity +1408.5836 Algebraic Geometry +1409.3718 Statistical Mechanics +1411.4127 +1411.5016 Symplectic Geometry +1411.6495 Number Theory +1412.1722 +1412.1783 +1412.4033 Symplectic Geometry +1412.4954 Analysis of PDEs +1412.5782 +1412.6174 Algebraic Geometry +1412.6776 +1501.02891 Data Analysis, Statistics and Probability +1501.05261 +1502.06027 +1502.06099 +1503.04634 Solar and Stellar Astrophysics +1503.08213 Phenomenology +1504.01999 Probability +1504.05459 Dynamical Systems +1504.07538 Phenomenology +1505.02169 Algebraic Geometry +1505.04616 Statistical Mechanics +1506.02759 Complex Variables +1506.02877 Dynamical Systems +1506.03784 Machine Learning +1506.05388 Combinatorics +1506.05664 +1506.06929 Phenomenology +1507.00816 +1507.01237 Probability +1507.01826 Social and Information Networks +1507.02231 Statistical Mechanics +1507.04461 Databases +1508.01482 Analysis of PDEs +1508.01978 +1508.02597 Dynamical Systems +1508.03149 Astrophysics of Galaxies +1508.05594 Representation Theory +1508.06272 Operator Algebras +1508.07972 Mesoscale and Nanoscale Physics +1509.02161 Atomic and Molecular Clusters +1509.06161 Computer Vision and Pattern Recognition +1509.06430 Discrete Mathematics +1509.07712 +1509.07717 Physics and Society +1510.00178 Dynamical Systems +1510.01953 +1510.05423 Group Theory +1510.08246 Numerical Analysis +1511.00458 Theory +1511.00648 Data Structures and Algorithms +1511.01049 Classical Physics +1511.01883 Accelerator Physics +1511.02392 Computational Physics +1511.02535 Classical Analysis and ODEs +1511.02609 Statistics Theory +1511.03057 Analysis of PDEs +1511.03064 Statistical Mechanics +1511.03565 +1511.03569 +1511.03797 Algebraic Geometry +1511.04202 Neurons and Cognition +1511.04798 Computer Vision and Pattern Recognition +1511.05642 Cosmology and Nongalactic Astrophysics +1511.07395 Classical Physics +1511.09416 Applications +1512.00743 Learning +1512.00858 Theory +1512.00933 Machine Learning +1512.01455 Instrumentation and Detectors +1512.04597 Cosmology and Nongalactic Astrophysics +1512.04829 Machine Learning +1512.05997 Dynamical Systems +1512.08124 Solar and Stellar Astrophysics +1601.00359 +1601.01780 Combinatorics +1601.04072 Theory +1601.04242 Operator Algebras +1601.05040 Combinatorics +1601.07150 Algebraic Topology +1601.07514 Algebraic Geometry +1602.00260 Machine Learning +1602.01793 +1602.02291 Combinatorics +1602.04050 +1602.04578 +1603.02575 Probability +1603.04800 Mesoscale and Nanoscale Physics +1603.06619 Probability +1603.07547 Strongly Correlated Electrons +1603.08477 Optics +1603.08480 +1604.03168 Computer Vision and Pattern Recognition +1604.03334 Computer Vision and Pattern Recognition +1604.04764 Neural and Evolutionary Computing +1604.06366 Biological Physics +1604.08610 Computer Vision and Pattern Recognition +1605.00083 Superconductivity +1605.01688 Combinatorics +1605.02740 Phenomenology +1605.03041 Strongly Correlated Electrons +1605.03243 Computational Complexity +1605.03357 Analysis of PDEs +1605.05199 Statistical Mechanics +1605.06337 +1605.07624 Phenomenology +1606.00127 Information Theory +1606.00322 Astrophysics of Galaxies +1606.02856 Mesoscale and Nanoscale Physics +1606.02886 Quantum Gases +1606.02982 Combinatorics +1606.03160 Algebraic Geometry +1606.03656 Superconductivity +1606.04096 Materials Science +1606.04760 Information Theory +1606.04969 Methodology +1606.05157 Digital Libraries +1606.05822 Strongly Correlated Electrons +1606.07946 Number Theory +1606.07979 Combinatorics +1606.08075 Computers and Society +1607.01155 Optimization and Control +1607.01192 Methodology +1607.01306 Physics and Society +1607.02448 Theory +1607.03689 +1607.05326 Superconductivity +1607.05617 Cosmology and Nongalactic Astrophysics +1607.05649 High Energy Astrophysical Phenomena +1607.06716 Analysis of PDEs +1607.06799 Phenomenology +1607.06832 Phenomenology +1607.07366 Group Theory +1607.08093 Mesoscale and Nanoscale Physics +1607.08632 Strongly Correlated Electrons +1608.01138 Solar and Stellar Astrophysics +1608.01484 Experiment +1608.02538 Phenomenology +1608.02838 Neurons and Cognition +1608.03077 Numerical Analysis +1608.04593 General Physics +1608.05350 +1608.07129 Computational Physics +1608.07197 Algebraic Geometry +1608.07885 Methodology +1608.08415 Strongly Correlated Electrons +1608.08840 High Energy Astrophysical Phenomena +1608.08864 General Physics +1608.08865 General Physics +1609.00342 Materials Science +1609.01575 Computational Complexity +1609.05171 +1609.06198 Theory +1609.07355 Discrete Mathematics +1609.08678 Optics +1609.09527 Solar and Stellar Astrophysics +1609.09576 Algebraic Geometry +1609.09614 +1610.00059 +1610.00094 Statistics Theory +1610.00622 Materials Science +1610.00886 +1610.01467 Materials Science +1610.02024 Strongly Correlated Electrons +1610.02118 K-Theory and Homology +1610.02173 Solar and Stellar Astrophysics +1610.03383 Data Structures and Algorithms +1610.03561 Algebraic Topology +1610.03588 Methodology +1610.03961 Theory +1610.04740 Operator Algebras +1610.04774 Software Engineering +1610.05025 +1610.05108 Machine Learning +1610.05292 Combinatorics +1610.05399 Materials Science +1610.05462 Computers and Society +1610.05485 Probability +1610.05711 Software Engineering +1610.05952 Classical Analysis and ODEs +1610.06038 Materials Science +1610.06080 Group Theory +1610.06110 Chaotic Dynamics +1610.06143 Theory +1610.06151 Accelerator Physics +1610.06170 Medical Physics +1610.06173 Numerical Analysis +1610.06175 Astrophysics of Galaxies +1610.06176 Cosmology and Nongalactic Astrophysics +1610.06178 +1610.06190 High Energy Astrophysical Phenomena +1610.06193 Phenomenology +1610.06194 Machine Learning +1610.06195 Applications +1610.06202 Representation Theory +1610.06203 Numerical Analysis +1610.06207 +1610.06210 Computation and Language +1610.06211 Phenomenology +1610.06212 Networking and Internet Architecture +1610.06213 +1610.06214 Sound +1610.06215 Cosmology and Nongalactic Astrophysics +1610.06218 Robotics +1610.06220 Geophysics +1610.06221 Lattice +1610.06222 Group Theory +1610.06224 Plasma Physics +1610.06226 Phenomenology +1610.06228 Quantum Gases +1610.06229 Logic in Computer Science +1610.06230 Soft Condensed Matter +1610.06231 Experiment +1610.06232 Metric Geometry +1610.06234 High Energy Astrophysical Phenomena +1610.06235 Machine Learning +1610.06236 +1610.06238 Strongly Correlated Electrons +1610.06240 Molecular Networks +1610.06241 Analysis of PDEs +1610.06242 Social and Information Networks +1610.06243 Astrophysics of Galaxies +1610.06244 Experiment +1610.06245 Group Theory +1610.06246 Representation Theory +1610.06247 Materials Science +1610.06249 Learning +1610.06250 Phenomenology +1610.06251 Social and Information Networks +1610.06252 Biological Physics +1610.06253 Materials Science +1610.06254 Phenomenology +1610.06256 +1610.06259 +1610.06261 Representation Theory +1610.06262 Combinatorics +1610.06263 Differential Geometry +1610.06264 Databases +1610.06265 Materials Science +1610.06266 Computer Vision and Pattern Recognition +1610.06267 Materials Science +1610.06268 Emerging Technologies +1610.06272 Computation and Language +1610.06275 +1610.06279 Methodology +1610.06281 Fluid Dynamics +1610.06282 Category Theory +1610.06283 Robotics +1610.06285 Solar and Stellar Astrophysics +1610.06286 Complex Variables +1610.06287 Materials Science +1610.06289 Logic +1610.06290 Dynamical Systems +1610.06291 Phenomenology +1610.06293 Phenomenology +1610.06294 Information Theory +1610.06295 Instrumentation and Detectors +1610.06297 Algebraic Geometry +1610.06298 Social and Information Networks +1610.06300 +1610.06301 Differential Geometry +1610.06304 Number Theory +1610.06305 Numerical Analysis +1610.06306 +1610.06307 Performance +1610.06308 Theory +1610.06309 Performance +1610.06310 Complex Variables +1610.06311 Subcellular Processes +1610.06312 Probability +1610.06315 Optimization and Control +1610.06316 Statistical Mechanics +1610.06317 Logic in Computer Science +1610.06319 +1610.06320 Numerical Analysis +1610.06321 K-Theory and Homology +1610.06323 Mesoscale and Nanoscale Physics +1610.06325 Numerical Analysis +1610.06326 Mesoscale and Nanoscale Physics +1610.06327 Soft Condensed Matter +1610.06330 Superconductivity +1610.06332 Optimization and Control +1610.06334 Accelerator Physics +1610.06335 Materials Science +1610.06336 Functional Analysis +1610.06337 Soft Condensed Matter +1610.06338 Analysis of PDEs +1610.06340 Social and Information Networks +1610.06341 General Topology +1610.06342 Mesoscale and Nanoscale Physics +1610.06343 Cryptography and Security +1610.06345 +1610.06346 Statistical Mechanics +1610.06347 Multimedia +1610.06348 Functional Analysis +1610.06350 Materials Science +1610.06354 Classical Analysis and ODEs +1610.06355 Information Theory +1610.06356 Materials Science +1610.06357 Information Theory +1610.06359 Combinatorics +1610.06361 Biological Physics +1610.06367 Instrumentation and Detectors +1610.06368 Computer Vision and Pattern Recognition +1610.06369 Materials Science +1610.06370 Computation and Language +1610.06372 Solar and Stellar Astrophysics +1610.06374 Number Theory +1610.06376 Number Theory +1610.06378 Combinatorics +1610.06379 Analysis of PDEs +1610.06382 Databases +1610.06384 Analysis of PDEs +1610.06386 Materials Science +1610.06388 Number Theory +1610.06389 Complex Variables +1610.06390 Differential Geometry +1610.06391 Mesoscale and Nanoscale Physics +1610.06392 Atomic Physics +1610.06393 Logic in Computer Science +1610.06394 Representation Theory +1610.06395 Computer Vision and Pattern Recognition +1610.06397 Instrumentation and Methods for Astrophysics +1610.06398 Rings and Algebras +1610.06399 Logic in Computer Science +1610.06400 Combinatorics +1610.06401 +1610.06402 Artificial Intelligence +1610.06403 Atmospheric and Oceanic Physics +1610.06404 Plasma Physics +1610.06405 Phenomenology +1610.06406 Mesoscale and Nanoscale Physics +1610.06407 Earth and Planetary Astrophysics +1610.06409 Logic in Computer Science +1610.06410 Optimization and Control +1610.06411 Dynamical Systems +1610.06412 High Energy Astrophysical Phenomena +1610.06413 Materials Science +1610.06414 General Physics +1610.06415 General Physics +1610.06416 +1610.06418 General Physics +1610.06419 Combinatorics +1610.06421 Neurons and Cognition +1610.06422 Chemical Physics +1610.06423 Probability +1610.06426 Emerging Technologies +1610.06427 Statistics Theory +1610.06428 Solar and Stellar Astrophysics +1610.06430 Probability +1610.06431 Social and Information Networks +1610.06432 Combinatorics +1610.06433 +1610.06434 Machine Learning +1610.06436 Theory +1610.06437 Chemical Physics +1610.06439 Functional Analysis +1610.06440 Number Theory +1610.06441 Representation Theory +1610.06442 Optics +1610.06445 Differential Geometry +1610.06447 Machine Learning +1610.06449 Computer Vision and Pattern Recognition +1610.06453 Computer Vision and Pattern Recognition +1610.06455 Optimization and Control +1610.06456 Theory +1610.06457 Computational Geometry +1610.06458 Information Theory +1610.06460 Solar and Stellar Astrophysics +1610.06461 Machine Learning +1610.06462 Machine Learning +1610.06465 Lattice +1610.06467 Computers and Society +1610.06468 Information Retrieval +1610.06469 Numerical Analysis +1610.06473 Artificial Intelligence +1610.06475 Robotics +1610.06479 Probability +1610.06482 Mesoscale and Nanoscale Physics +1610.06483 Artificial Intelligence +1610.06484 Artificial Intelligence +1610.06485 Artificial Intelligence +1610.06486 Artificial Intelligence +1610.06488 Artificial Intelligence +1610.06490 Artificial Intelligence +1610.06491 Earth and Planetary Astrophysics +1610.06492 Computer Vision and Pattern Recognition +1610.06494 Computer Vision and Pattern Recognition +1610.06496 Computers and Society +1610.06497 Social and Information Networks +1610.06498 Computation and Language +1610.06499 +1610.06500 Databases +1610.06501 Probability +1610.06503 Group Theory +1610.06504 Logic +1610.06505 Materials Science +1610.06506 Optimization and Control +1610.06509 Category Theory +1610.06510 Computation and Language +1610.06514 Geometric Topology +1610.06515 Data Structures and Algorithms +1610.06516 Rings and Algebras +1610.06517 Probability +1610.06518 History and Philosophy of Physics +1610.06519 Optimization and Control +1610.06520 Strongly Correlated Electrons +1610.06523 Analysis of PDEs +1610.06524 Algebraic Geometry +1610.06525 Machine Learning +1610.06526 Commutative Algebra +1610.06527 Analysis of PDEs +1610.06531 Classical Analysis and ODEs +1610.06533 Plasma Physics +1610.06535 Algebraic Topology +1610.06538 Optimization and Control +1610.06539 Combinatorics +1610.06540 Computation and Language +1610.06542 Computation and Language +1610.06544 Materials Science +1610.06547 +1610.06549 Cryptography and Security +1610.06550 Computation and Language +1610.06551 Applications +1610.06553 Algebraic Geometry +1610.06555 Classical Analysis and ODEs +1610.06558 Combinatorics +1610.06560 Theory +astro-ph/0606048 +astro-ph/0606448 +0709.2453 Classical Physics +0803.4392 Classical Analysis and ODEs +0807.3741 Superconductivity +0903.3079 Materials Science +1004.2273 Fluid Dynamics +1006.0541 Complex Variables +1008.1035 Superconductivity +1011.4194 Analysis of PDEs +1104.0406 Differential Geometry +1106.2271 +1201.1740 Biomolecules +1203.3800 Numerical Analysis +1204.4106 Data Structures and Algorithms +1204.4836 Quantum Algebra +1206.0078 +1206.5195 Pattern Formation and Solitons +1207.3378 Soft Condensed Matter +1208.1401 Physics and Society +1209.0160 Combinatorics +1209.2199 Theory +1211.6558 +1212.5561 Soft Condensed Matter +1212.6894 Algebraic Geometry +1301.0409 Probability +1301.3479 Differential Geometry +1305.5056 +1306.3936 Classical Analysis and ODEs +1307.5956 Quantum Algebra +1308.1765 Statistical Mechanics +1310.3478 Commutative Algebra +1311.0181 Information Theory +1311.5228 Cosmology and Nongalactic Astrophysics +1312.3533 Probability +1401.0300 Group Theory +1401.1399 Discrete Mathematics +1401.2932 Number Theory +1402.0779 Learning +1402.4093 Strongly Correlated Electrons +1402.4919 Group Theory +1403.4958 Logic in Computer Science +1405.3747 Functional Analysis +1405.4531 Algebraic Geometry +1406.2238 Probability +1406.3551 K-Theory and Homology +1406.4016 +1406.4693 Classical Analysis and ODEs +1407.2508 Probability +1407.4236 +1407.7513 Combinatorics +1408.1690 Probability +1408.2249 +1408.2290 +1408.3085 Dynamical Systems +1408.6242 Geometric Topology +1409.1315 Phenomenology +1409.5389 Cosmology and Nongalactic Astrophysics +1409.5663 Soft Condensed Matter +1409.6746 +1409.6877 Mesoscale and Nanoscale Physics +1409.7344 Analysis of PDEs +1410.5564 Mesoscale and Nanoscale Physics +1411.3592 +1411.5333 Complex Variables +1411.5360 Biomolecules +1411.6256 Functional Analysis +1411.6549 Computational Complexity +1411.6757 Neural and Evolutionary Computing +1412.0119 Pattern Formation and Solitons +1412.0555 Algebraic Geometry +1412.6239 Combinatorics +1412.7552 Numerical Analysis +1501.01491 Dynamical Systems +1501.02827 Chaotic Dynamics +1501.02874 +1501.07168 Algebraic Geometry +1501.07818 Materials Science +1502.00463 Theory +1502.02095 Strongly Correlated Electrons +1502.04052 Computer Science and Game Theory +1502.04063 General Mathematics +1502.04796 Probability +1502.04956 Artificial Intelligence +1503.02912 Methodology +1503.04156 Dynamical Systems +1503.04518 Theory +1504.01178 Quantum Algebra +1504.02818 +1504.03850 Algebraic Geometry +1504.05116 Superconductivity +1504.05951 Astrophysics of Galaxies +1504.07128 +1505.01623 Soft Condensed Matter +1505.03939 Complex Variables +1505.05895 Quantitative Methods +1505.06097 Analysis of PDEs +1506.00293 Optimization and Control +1506.01089 Soft Condensed Matter +1506.03620 Statistics Theory +1506.05102 General Mathematics +1506.06770 Theory +1506.07942 Computer Science and Game Theory +1507.01387 Materials Science +1507.04030 Soft Condensed Matter +1507.06589 Optics +1507.07023 Number Theory +1507.07291 Functional Analysis +1507.08726 Statistics Theory +1508.00525 Geometric Topology +1508.00886 Lattice +1508.01883 +1508.06150 Algebraic Topology +1508.06242 Materials Science +1509.01763 Cryptography and Security +1509.01962 Complex Variables +1509.02513 Analysis of PDEs +1509.02564 Statistics Theory +1509.04104 Analysis of PDEs +1509.04349 Databases +1509.04357 Physics and Society +1509.04599 Mesoscale and Nanoscale Physics +1509.06059 Number Theory +1509.06588 +1509.06954 +1509.07010 +1509.07566 Information Theory +1509.08041 Complex Variables +1509.08395 Soft Condensed Matter +1510.00776 Fluid Dynamics +1510.01064 Machine Learning +1510.01629 Phenomenology +1510.02418 Operator Algebras +1510.03695 +1510.05626 Theory +1510.06445 Earth and Planetary Astrophysics +1510.08697 Statistical Mechanics +1511.00777 Plasma Physics +1511.02775 Statistics Theory +1511.02939 Soft Condensed Matter +1511.03377 Numerical Analysis +1511.04929 +1511.05174 Computer Vision and Pattern Recognition +1511.05310 Optics +1511.06579 +1511.07283 Earth and Planetary Astrophysics +1511.08572 Dynamical Systems +1511.08808 Astrophysics of Galaxies +1511.09310 +1512.00897 Neurons and Cognition +1512.01289 Computer Vision and Pattern Recognition +1512.02277 Rings and Algebras +1512.02547 Analysis of PDEs +1512.03823 +1512.03858 Differential Geometry +1512.04723 Chaotic Dynamics +1512.05373 Statistical Mechanics +1512.05636 Quantum Gases +1512.06142 Optimization and Control +1512.06703 Phenomenology +1512.07033 Cell Behavior +1512.07599 Strongly Correlated Electrons +1512.07784 +1512.08759 Theory +1601.00170 Differential Geometry +1601.00754 Phenomenology +1601.01448 Optics +1601.02986 Solar and Stellar Astrophysics +1601.03310 Strongly Correlated Electrons +1601.03440 Solar and Stellar Astrophysics +1601.03447 +1601.04529 General Physics +1601.05000 Theory +1601.05413 Astrophysics of Galaxies +1601.06281 Analysis of PDEs +1601.06439 Information Retrieval +1602.00690 Astrophysics of Galaxies +1602.00861 Statistical Mechanics +1602.01473 Theory +1602.01573 +1602.01805 Instrumentation and Methods for Astrophysics +1602.02102 Numerical Analysis +1602.02252 +1602.02266 Mesoscale and Nanoscale Physics +1602.02828 +1602.03465 Lattice +1602.04058 Physics and Society +1602.04573 Classical Analysis and ODEs +1602.04802 Strongly Correlated Electrons +1602.05745 Number Theory +1602.06124 Phenomenology +1602.06404 Populations and Evolution +1602.06526 Phenomenology +1602.06909 Strongly Correlated Electrons +1602.06965 Phenomenology +1602.06969 +1602.07256 Number Theory +1603.00180 Functional Analysis +1603.01438 Chemical Physics +1603.01681 Optimization and Control +1603.01922 Analysis of PDEs +1603.02390 Soft Condensed Matter +1603.02567 Atomic Physics +1603.02600 +1603.02956 Theory +1603.03761 +1603.05100 +1603.05375 Rings and Algebras +1603.06642 Analysis of PDEs +1603.06986 Molecular Networks +1603.07120 Computer Vision and Pattern Recognition +1603.07209 History and Overview +1603.08376 Strongly Correlated Electrons +1603.08951 +1603.08971 Theory +1603.09019 +1603.09057 +1604.00183 Cosmology and Nongalactic Astrophysics +1604.00345 Strongly Correlated Electrons +1604.00472 Soft Condensed Matter +1604.00624 +1604.00756 Theory +1604.00771 Probability +1604.01059 Cosmology and Nongalactic Astrophysics +1604.01953 Pattern Formation and Solitons +1604.02127 Disordered Systems and Neural Networks +1604.02851 Differential Geometry +1604.03196 Computer Vision and Pattern Recognition +1604.03386 Algebraic Geometry +1604.03801 Solar and Stellar Astrophysics +1604.04195 Earth and Planetary Astrophysics +1604.04225 Information Theory +1604.04916 Number Theory +1604.05353 Disordered Systems and Neural Networks +1604.05433 Complex Variables +1604.06034 +1604.06257 Theory +1604.06822 Statistical Mechanics +1604.06859 Probability +1604.06884 Discrete Mathematics +1604.06909 Theory +1604.07321 Atomic Physics +1604.07718 Probability +1604.07876 Physics and Society +1604.08194 Optimization and Control +1604.08717 Number Theory +1604.08836 Phenomenology +1605.00525 Dynamical Systems +1605.00750 Theory +1605.01075 Theory +1605.01252 Materials Science +1605.01607 High Energy Astrophysical Phenomena +1605.01723 Cosmology and Nongalactic Astrophysics +1605.01737 Superconductivity +1605.01905 Neurons and Cognition +1605.02009 Disordered Systems and Neural Networks +1605.02379 Mesoscale and Nanoscale Physics +1605.02984 Quantum Gases +1605.03188 Rings and Algebras +1605.03504 Cosmology and Nongalactic Astrophysics +1605.04029 Computation +1605.04048 Atomic Physics +1605.04572 Probability +1605.04782 Optics +1605.05931 Combinatorics +1605.06196 +1605.06488 Subcellular Processes +1605.07644 Algebraic Geometry +1605.08140 Computer Vision and Pattern Recognition +1605.08571 Robotics +1605.08736 Phenomenology +1605.08782 Astrophysics of Galaxies +1605.08790 Functional Analysis +1605.08930 Statistical Mechanics +1605.09077 High Energy Astrophysical Phenomena +1605.09337 +1605.09414 Astrophysics of Galaxies +1605.09434 Algebraic Geometry +1605.09507 Sound +1606.00103 Computer Vision and Pattern Recognition +1606.00433 Cosmology and Nongalactic Astrophysics +1606.00468 +1606.00559 +1606.01256 +1606.01810 Other Computer Science +1606.01818 Phenomenology +1606.02030 Astrophysics of Galaxies +1606.02139 +1606.02269 Optimization and Control +1606.02301 Cosmology and Nongalactic Astrophysics +1606.02348 Information Theory +1606.02623 Classical Analysis and ODEs +1606.02648 Analysis of PDEs +1606.02776 Quantum Gases +1606.03130 Physics and Society +1606.03465 Mesoscale and Nanoscale Physics +1606.03623 Machine Learning +1606.03885 Atomic Physics +1606.03902 Materials Science +1606.03967 +1606.04220 Networking and Internet Architecture +1606.04353 Theory +1606.04392 Algebraic Geometry +1606.04781 Phenomenology +1606.04799 Soft Condensed Matter +1606.05015 Superconductivity +1606.05074 +1606.05180 Solar and Stellar Astrophysics +1606.05986 Materials Science +1606.06018 Superconductivity +1606.06096 +1606.06198 +1606.06398 Number Theory +1606.06456 Statistical Mechanics +1606.06695 Phenomenology +1606.07253 Computer Vision and Pattern Recognition +1606.07411 Phenomenology +1606.07740 +1606.07777 Social and Information Networks +1606.07826 Phenomenology +1606.07934 +1606.08308 Strongly Correlated Electrons +1606.08508 +1606.09030 Astrophysics of Galaxies +1606.09232 High Energy Astrophysical Phenomena +1606.09397 Cosmology and Nongalactic Astrophysics +1606.09484 Phenomenology +1607.00079 +1607.00123 Theory +1607.00337 +1607.00444 Materials Science +1607.00832 Phenomenology +1607.01039 Distributed, Parallel, and Cluster Computing +1607.01424 Combinatorics +1607.01777 Earth and Planetary Astrophysics +1607.01929 Theory +1607.02012 High Energy Astrophysical Phenomena +1607.02112 +1607.02141 Astrophysics of Galaxies +1607.02143 Astrophysics of Galaxies +1607.02156 Materials Science +1607.02159 +1607.02342 +1607.02861 Digital Libraries +1607.03137 Lattice +1607.03309 Phenomenology +1607.03491 Mesoscale and Nanoscale Physics +1607.03508 +1607.03754 Earth and Planetary Astrophysics +1607.03871 Statistical Mechanics +1607.04112 Strongly Correlated Electrons +1607.04407 Statistics Theory +1607.04620 Strongly Correlated Electrons +1607.04747 Social and Information Networks +1607.05111 Earth and Planetary Astrophysics +1607.05120 Logic in Computer Science +1607.05164 Strongly Correlated Electrons +1607.05260 Theory +1607.05854 +1607.06882 +1607.06968 Statistical Mechanics +1607.07111 +1607.07146 Materials Science +1607.07590 Data Analysis, Statistics and Probability +1607.07855 Strongly Correlated Electrons +1607.07899 Theory +1607.07914 Probability +1607.08016 Cosmology and Nongalactic Astrophysics +1607.08573 Strongly Correlated Electrons +1607.08636 Theory +1607.08646 Theory +1607.08767 Other Condensed Matter +1607.08895 High Energy Astrophysical Phenomena +1608.00017 Plasma Physics +1608.00331 Disordered Systems and Neural Networks +1608.00565 Instrumentation and Detectors +1608.00734 Optics +1608.00820 Information Theory +1608.00901 Phenomenology +1608.00928 Analysis of PDEs +1608.00965 +1608.00978 Solar and Stellar Astrophysics +1608.00996 Astrophysics of Galaxies +1608.01003 Experiment +1608.01325 Phenomenology +1608.01356 +1608.01624 Instrumentation and Methods for Astrophysics +1608.01646 Probability +1608.02113 High Energy Astrophysical Phenomena +1608.02220 Group Theory +1608.02313 Cosmology and Nongalactic Astrophysics +1608.02588 Astrophysics of Galaxies +1608.02607 +1608.02620 +1608.02625 Classical Physics +1608.02853 Theory +1608.02951 Astrophysics of Galaxies +1608.03038 +1608.03292 +1608.03441 Astrophysics of Galaxies +1608.03588 Instrumentation and Detectors +1608.03656 Social and Information Networks +1608.03753 Physics and Society +1608.03872 Phenomenology +1608.03966 Analysis of PDEs +1608.04256 Superconductivity +1608.04403 Cosmology and Nongalactic Astrophysics +1608.04414 Learning +1608.04523 Materials Science +1608.04567 Social and Information Networks +1608.04665 Solar and Stellar Astrophysics +1608.04856 Phenomenology +1608.05161 Astrophysics of Galaxies +1608.05398 Statistical Mechanics +1608.05415 Astrophysics of Galaxies +1608.05826 Strongly Correlated Electrons +1608.05885 +1608.05924 Algebraic Geometry +1608.06131 Solar and Stellar Astrophysics +1608.06205 Strongly Correlated Electrons +1608.06223 Theory +1608.06523 Theory +1608.06640 Strongly Correlated Electrons +1608.06731 +1608.06780 Representation Theory +1608.06835 +1608.06892 +1608.06912 Combinatorics +1608.06979 Theory +1608.07003 Optics +1608.07137 Quantum Gases +1608.07226 Mathematical Finance +1608.07235 +1608.07558 +1608.07791 Phenomenology +1608.07925 Statistical Mechanics +1608.07932 Atomic Physics +1608.08293 Accelerator Physics +1608.08390 +1608.08430 Plasma Physics +1608.08501 Phenomenology +1608.08566 Quantum Gases +1608.08707 Astrophysics of Galaxies +1608.08852 Machine Learning +1609.00066 Methodology +1609.00259 Statistical Mechanics +1609.00319 Earth and Planetary Astrophysics +1609.00352 Quantum Gases +1609.00402 Statistics Theory +1609.00641 Statistical Mechanics +1609.00816 Strongly Correlated Electrons +1609.00860 Phenomenology +1609.00946 Fluid Dynamics +1609.01069 High Energy Astrophysical Phenomena +1609.01318 Mesoscale and Nanoscale Physics +1609.01452 Solar and Stellar Astrophysics +1609.01741 +1609.01887 +1609.01896 Mesoscale and Nanoscale Physics +1609.01937 Soft Condensed Matter +1609.01998 Cosmology and Nongalactic Astrophysics +1609.02023 Astrophysics of Galaxies +1609.02062 Functional Analysis +1609.02352 Quantum Gases +1609.02480 Cosmology and Nongalactic Astrophysics +1609.02807 Quantum Gases +1609.02830 +1609.02864 Solar and Stellar Astrophysics +1609.02917 Earth and Planetary Astrophysics +1609.02942 High Energy Astrophysical Phenomena +1609.03246 Geophysics +1609.03370 Mesoscale and Nanoscale Physics +1609.03482 Number Theory +1609.03606 Quantum Gases +1609.03697 Cosmology and Nongalactic Astrophysics +1609.03705 Strongly Correlated Electrons +1609.04032 Solar and Stellar Astrophysics +1609.04123 Strongly Correlated Electrons +1609.04207 Materials Science +1609.04409 Astrophysics of Galaxies +1609.04557 Learning +1609.04983 Strongly Correlated Electrons +1609.05201 High Energy Astrophysical Phenomena +1609.05442 Materials Science +1609.05736 Theory +1609.05748 Instrumentation and Methods for Astrophysics +1609.05853 Analysis of PDEs +1609.05894 Astrophysics of Galaxies +1609.05972 +1609.06148 Earth and Planetary Astrophysics +1609.06300 Theory +1609.06307 High Energy Astrophysical Phenomena +1609.06308 Astrophysics of Galaxies +1609.06416 Computational Physics +1609.06735 Phenomenology +1609.06798 +1609.07099 Phenomenology +1609.07107 Solar and Stellar Astrophysics +1609.07462 Tissues and Organs +1609.07648 Strongly Correlated Electrons +1609.07707 Atomic Physics +1609.07751 Phenomenology +1609.07850 Materials Science +1609.07980 Materials Science +1609.08500 Theory +1609.08816 Methodology +1609.09492 Instrumentation and Methods for Astrophysics +1609.09512 Earth and Planetary Astrophysics +1609.09524 Materials Science +1609.09592 Algebraic Geometry +1609.09818 Solar and Stellar Astrophysics +1609.09824 Algebraic Geometry +1609.09860 Statistical Mechanics +1610.00034 Mesoscale and Nanoscale Physics +1610.00065 Materials Science +1610.00193 Solar and Stellar Astrophysics +1610.00861 Soft Condensed Matter +1610.00896 Earth and Planetary Astrophysics +1610.00919 High Energy Astrophysical Phenomena +1610.00938 Cosmology and Nongalactic Astrophysics +1610.01049 +1610.01132 Learning +1610.01244 Quantum Gases +1610.01261 +1610.01347 Phenomenology +1610.02061 +1610.02168 Solar and Stellar Astrophysics +1610.02224 Mesoscale and Nanoscale Physics +1610.02235 +1610.02322 Phenomenology +1610.02335 Cosmology and Nongalactic Astrophysics +1610.02636 +1610.02721 Solar and Stellar Astrophysics +1610.02793 Solar and Stellar Astrophysics +1610.02821 Differential Geometry +1610.03091 Cosmology and Nongalactic Astrophysics +1610.03101 Astrophysics of Galaxies +1610.03222 Solar and Stellar Astrophysics +1610.03240 Space Physics +1610.03304 +1610.03374 Phenomenology +1610.03423 Representation Theory +1610.03459 Solar and Stellar Astrophysics +1610.03544 Materials Science +1610.03670 Computer Vision and Pattern Recognition +1610.03816 Theory +1610.04006 +1610.04081 General Physics +1610.04133 Phenomenology +1610.04365 Instrumentation and Methods for Astrophysics +1610.04538 Statistical Mechanics +1610.04562 Astrophysics of Galaxies +1610.04600 Solar and Stellar Astrophysics +1610.04746 Experiment +1610.05310 Astrophysics of Galaxies +1610.05369 Astrophysics of Galaxies +1610.05407 Cosmology and Nongalactic Astrophysics +1610.05459 Astrophysics of Galaxies +1610.05543 Astrophysics of Galaxies +1610.05554 Solar and Stellar Astrophysics +1610.05582 Strongly Correlated Electrons +1610.05769 Astrophysics of Galaxies +1610.05790 Solar and Stellar Astrophysics +1610.06150 Solar and Stellar Astrophysics +1610.06164 +1610.06167 High Energy Astrophysical Phenomena +1610.06463 Earth and Planetary Astrophysics +1610.06481 Cosmology and Nongalactic Astrophysics +1610.06661 Materials Science +1610.06713 Space Physics +1610.07157 Solar and Stellar Astrophysics +1610.07280 +1610.07350 +1610.07454 Solar and Stellar Astrophysics +1610.07552 Solar and Stellar Astrophysics +1610.07740 Information Theory +1610.07790 Theory +1610.07928 Atomic Physics +1610.07953 Solar and Stellar Astrophysics +1610.08016 Earth and Planetary Astrophysics +1610.08505 Astrophysics of Galaxies +1610.08581 Astrophysics of Galaxies +1610.08596 High Energy Astrophysical Phenomena +1610.08610 Astrophysics of Galaxies +1610.08837 Quantum Gases +1610.08997 Astrophysics of Galaxies +1610.09067 Earth and Planetary Astrophysics +1610.09233 Atomic Physics +1610.09291 Solar and Stellar Astrophysics +1610.09343 Probability +1610.09374 Astrophysics of Galaxies +1610.09459 Astrophysics of Galaxies +1610.09667 Earth and Planetary Astrophysics +1610.09869 Astrophysics of Galaxies +1610.10015 Strongly Correlated Electrons +1610.10066 Astrophysics of Galaxies +1610.10089 Earth and Planetary Astrophysics +1611.00004 Astrophysics of Galaxies +1611.00006 Astrophysics of Galaxies +1611.00359 Cosmology and Nongalactic Astrophysics +1611.00364 Earth and Planetary Astrophysics +1611.00437 Astrophysics of Galaxies +1611.00653 Classical Analysis and ODEs +1611.00741 Earth and Planetary Astrophysics +1611.00754 K-Theory and Homology +1611.00781 Astrophysics of Galaxies +1611.00830 Solar and Stellar Astrophysics +1611.01020 +1611.01151 Astrophysics of Galaxies +1611.01156 Astrophysics of Galaxies +1611.01161 Astrophysics of Galaxies +1611.01183 Quantum Gases +1611.01185 Solar and Stellar Astrophysics +1611.01249 Solar and Stellar Astrophysics +1611.01521 Astrophysics of Galaxies +1611.02318 High Energy Astrophysical Phenomena +1611.02397 Phenomenology +1611.02574 Astrophysics of Galaxies +1611.02604 Earth and Planetary Astrophysics +1611.02615 Earth and Planetary Astrophysics +1611.02677 Phenomenology +1611.02712 Instrumentation and Methods for Astrophysics +1611.02887 High Energy Astrophysical Phenomena +1611.02897 Solar and Stellar Astrophysics +1611.03224 Functional Analysis +1611.03347 Theory +1611.03705 Number Theory +1611.03867 Instrumentation and Methods for Astrophysics +1611.03971 Social and Information Networks +1611.04022 Distributed, Parallel, and Cluster Computing +1611.04172 Classical Analysis and ODEs +1611.04574 Astrophysics of Galaxies +1611.04626 High Energy Astrophysical Phenomena +1611.04680 Probability +1611.04910 Number Theory +1611.04938 Exactly Solvable and Integrable Systems +1611.05069 Phenomenology +1611.05165 Astrophysics of Galaxies +1611.05192 Cosmology and Nongalactic Astrophysics +1611.05473 Solar and Stellar Astrophysics +1611.05686 Astrophysics of Galaxies +1611.05758 High Energy Astrophysical Phenomena +1611.06025 +1611.06087 High Energy Astrophysical Phenomena +1611.06275 Solar and Stellar Astrophysics +1611.06806 High Energy Astrophysical Phenomena +1611.07061 Earth and Planetary Astrophysics +1611.07160 Instrumentation and Methods for Astrophysics +1611.07174 Computation and Language +1611.07386 Numerical Analysis +1611.07415 Number Theory +1611.07574 Commutative Algebra +1611.07777 Optimization and Control +1611.08074 Statistical Mechanics +1611.08670 Mesoscale and Nanoscale Physics +1611.08708 Earth and Planetary Astrophysics +1611.09338 Number Theory +1611.09408 Statistics Theory +1611.10001 Complex Variables +1611.10125 High Energy Astrophysical Phenomena +1611.10182 Robotics +1611.10190 Mesoscale and Nanoscale Physics +1611.10203 Statistics Theory +1611.10205 +1611.10216 Representation Theory +1612.00158 High Energy Astrophysical Phenomena +1612.00296 +1612.00379 Superconductivity +1612.00580 Combinatorics +1612.00714 Astrophysics of Galaxies +1612.01188 Cryptography and Security +1612.01244 Dynamical Systems +1612.01420 Solar and Stellar Astrophysics +1612.01501 Neural and Evolutionary Computing +1612.01676 Lattice +1612.01745 Solar and Stellar Astrophysics +1612.01800 Strongly Correlated Electrons +1612.01948 Solar and Stellar Astrophysics +1612.02152 +1612.02196 Astrophysics of Galaxies +1612.02217 Phenomenology +1612.02506 Optimization and Control +1612.02677 Solar and Stellar Astrophysics +1612.02971 Mesoscale and Nanoscale Physics +1612.02972 +1612.03393 Optimization and Control +1612.03529 Materials Science +1612.03567 Populations and Evolution +1612.03680 Functional Analysis +1612.03739 General Physics +1612.03930 Computation +1612.04029 Computer Science and Game Theory +1612.04389 Phenomenology +1612.04917 Solar and Stellar Astrophysics +1612.04972 Differential Geometry +1612.05090 Representation Theory +1612.05191 Computer Science and Game Theory +1612.05233 Theory +1612.05303 Rings and Algebras +1612.05360 Computer Vision and Pattern Recognition +1612.05396 Phenomenology +1612.05526 Number Theory +1612.05695 +1612.05744 Soft Condensed Matter +1612.05835 Theory +1612.05841 Statistical Mechanics +1612.05876 Instrumentation and Detectors +1612.05903 +1612.05969 +1612.06007 Artificial Intelligence +1612.06234 Superconductivity +1612.06245 Optimization and Control +1612.06248 Theory +1612.06356 Statistical Mechanics +1612.06457 Computer Vision and Pattern Recognition +1612.06479 Mesoscale and Nanoscale Physics +1612.06488 Astrophysics of Galaxies +1612.06544 Phenomenology +1612.06631 Phenomenology +1612.06676 Learning +1612.06699 Computer Vision and Pattern Recognition +1612.06712 General Physics +1612.06765 Theory +1612.06882 High Energy Astrophysical Phenomena +1612.07016 Mathematical Finance +1612.07178 +1612.07190 Methodology +1612.07333 Robotics +1612.07398 Experiment +1612.07508 High Energy Astrophysical Phenomena +1612.07527 Combinatorics +1612.07545 Computer Vision and Pattern Recognition +1612.07566 Solar and Stellar Astrophysics +1612.07593 +1612.07667 Materials Science +1612.07713 Materials Science +1612.07723 Fluid Dynamics +1612.07818 Experiment +1612.07820 Dynamical Systems +1612.07915 Metric Geometry +1612.08004 +1612.08013 Numerical Analysis +1612.08057 Discrete Mathematics +1612.08088 Theory +1612.08090 Phenomenology +1612.08091 +1612.08092 Mesoscale and Nanoscale Physics +1612.08093 High Energy Astrophysical Phenomena +1612.08094 Numerical Analysis +1612.08095 Software Engineering +1612.08097 Data Structures and Algorithms +1612.08099 Methodology +1612.08102 Social and Information Networks +1612.08103 +1612.08105 Functional Analysis +1612.08106 Numerical Analysis +1612.08107 Numerical Analysis +1612.08108 High Energy Astrophysical Phenomena +1612.08109 Artificial Intelligence +1612.08110 Experiment +1612.08112 Phenomenology +1612.08113 Statistics Theory +1612.08114 Methodology +1612.08116 Quantitative Methods +1612.08117 Human-Computer Interaction +1612.08119 Optics +1612.08120 Analysis of PDEs +1612.08121 Fluid Dynamics +1612.08122 Theory +1612.08123 Quantum Algebra +1612.08126 Robotics +1612.08127 Functional Analysis +1612.08128 Dynamical Systems +1612.08129 Information Theory +1612.08131 Soft Condensed Matter +1612.08132 Soft Condensed Matter +1612.08134 Soft Condensed Matter +1612.08135 +1612.08136 Combinatorics +1612.08139 +1612.08142 Materials Science +1612.08143 Optics +1612.08146 Number Theory +1612.08149 Mesoscale and Nanoscale Physics +1612.08150 Mesoscale and Nanoscale Physics +1612.08152 Representation Theory +1612.08153 Computer Vision and Pattern Recognition +1612.08154 Formal Languages and Automata Theory +1612.08158 Number Theory +1612.08160 Chaotic Dynamics +1612.08161 Analysis of PDEs +1612.08163 Hardware Architecture +1612.08164 +1612.08165 Applications +1612.08167 Analysis of PDEs +1612.08168 Phenomenology +1612.08169 Computer Vision and Pattern Recognition +1612.08170 Computer Vision and Pattern Recognition +1612.08171 Computation and Language +1612.08172 +1612.08173 Algebraic Geometry +1612.08174 Soft Condensed Matter +1612.08175 Optics +1612.08177 Commutative Algebra +1612.08178 Information Retrieval +1612.08179 Soft Condensed Matter +1612.08182 +1612.08183 Differential Geometry +1612.08186 Combinatorics +1612.08188 High Energy Astrophysical Phenomena +1612.08189 Differential Geometry +1612.08190 Differential Geometry +1612.08192 Computational Complexity +1612.08193 Dynamical Systems +1612.08195 Analysis of PDEs +1612.08196 Materials Science +1612.08197 Discrete Mathematics +1612.08198 +1612.08199 Programming Languages +1612.08200 Social and Information Networks +1612.08202 Robotics +1612.08203 Programming Languages +1612.08204 Complex Variables +1612.08205 Computation and Language +1612.08207 Social and Information Networks +1612.08208 +1612.08209 Phenomenology +1612.08210 Solar and Stellar Astrophysics +1612.08211 Representation Theory +1612.08212 Complex Variables +1612.08214 Optics +1612.08215 Dynamical Systems +1612.08216 Quantum Gases +1612.08218 Materials Science +1612.08219 Number Theory +1612.08221 Dynamical Systems +1612.08224 Computation +1612.08225 Analysis of PDEs +1612.08229 General Topology +1612.08230 Computer Vision and Pattern Recognition +1612.08231 Classical Analysis and ODEs +1612.08232 Information Theory +1612.08233 Mesoscale and Nanoscale Physics +1612.08234 Discrete Mathematics +1612.08236 Quantum Algebra +1612.08237 Analysis of PDEs +1612.08239 Hardware Architecture +1612.08240 Chemical Physics +1612.08242 Computer Vision and Pattern Recognition +1612.08243 Materials Science +1612.08244 Rings and Algebras +1612.08245 Robotics +1612.08247 Analysis of PDEs +1612.08248 Mesoscale and Nanoscale Physics +1612.08249 Phenomenology +1612.08253 Numerical Analysis +1612.08254 Emerging Technologies +1612.08255 Combinatorics +1612.08256 Networking and Internet Architecture +1612.08257 Commutative Algebra +1612.08258 Soft Condensed Matter +1612.08259 Combinatorics +1612.08260 Analysis of PDEs +1612.08261 Statistics Theory +1612.08262 Geometric Topology +1612.08263 Systems and Control +1612.08264 Classical Analysis and ODEs +1612.08265 +1612.08266 Materials Science +1612.08267 Geometric Topology +1612.08270 Cosmology and Nongalactic Astrophysics +1612.08271 Algebraic Geometry +1612.08272 Chemical Physics +1612.08273 Phenomenology +1612.08274 Computer Vision and Pattern Recognition +1612.08275 Solar and Stellar Astrophysics +1612.08276 Optics +1612.08277 Soft Condensed Matter +1612.08278 Optics +1612.08281 +1612.08282 Materials Science +1612.08283 Discrete Mathematics +1612.08284 Logic +1612.08287 Methodology +1612.08288 Methodology +1612.08289 Computational Physics +1612.08290 Algebraic Topology +1612.08292 Theory +1612.08294 Theory +1612.08295 Analysis of PDEs +1612.08298 Solar and Stellar Astrophysics +1612.08299 History and Overview +1612.08301 Combinatorics +1612.08302 Optimization and Control +1612.08304 Complex Variables +1612.08305 Biological Physics +1612.08306 Combinatorics +1612.08307 Number Theory +1612.08308 Mesoscale and Nanoscale Physics +1612.08309 Number Theory +1612.08310 Analysis of PDEs +1612.08311 Biomolecules +1612.08313 Algebraic Geometry +1612.08314 +1612.08315 +1612.08316 Phenomenology +1612.08317 Physics Education +1612.08320 Phenomenology +1612.08321 Machine Learning +1612.08322 Geometric Topology +1612.08323 Solar and Stellar Astrophysics +1612.08324 Information Theory +1612.08326 Information Theory +1612.08327 Phenomenology +1612.08328 Information Theory +1612.08329 Instrumentation and Detectors +1612.08333 Computation and Language +1612.08335 Fluid Dynamics +1612.08337 Numerical Analysis +1612.08338 Physics and Society +1612.08339 +1612.08341 Mesoscale and Nanoscale Physics +1612.08342 Representation Theory +1612.08343 Space Physics +1612.08344 Rings and Algebras +1612.08346 Optics +1612.08347 Combinatorics +1612.08348 Cosmology and Nongalactic Astrophysics +1612.08349 Solar and Stellar Astrophysics +1612.08350 Multimedia +1612.08351 Social and Information Networks +1612.08352 Networking and Internet Architecture +1612.08354 Computer Vision and Pattern Recognition +1612.08355 Analysis of PDEs +1612.08356 Fluid Dynamics +1612.08357 Rings and Algebras +1612.08358 Logic +1612.08359 Computer Vision and Pattern Recognition +1612.08361 +1612.08362 Differential Geometry +1612.08363 Methodology +1612.08364 Algebraic Geometry +1612.08365 Methodology +1612.08366 Functional Analysis +1612.08369 Numerical Analysis +1612.08370 Phenomenology +1612.08371 Probability +1612.08372 Differential Geometry +1612.08374 Geometric Topology +1612.08375 Computation and Language +1612.08376 Dynamical Systems +1612.08377 Chaotic Dynamics +1612.08378 Physics and Society +1612.08380 Earth and Planetary Astrophysics +1612.08383 Fluid Dynamics +1612.08384 Spectral Theory +1612.08386 Theory +1612.08387 Probability +1612.08388 Learning +1612.08389 Mesoscale and Nanoscale Physics +1612.08390 Phenomenology +1612.08391 Information Retrieval +1612.08392 Machine Learning +1612.08394 Dynamical Systems +1612.08395 Soft Condensed Matter +1612.08396 Probability +1612.08400 Analysis of PDEs +1612.08401 Mesoscale and Nanoscale Physics +1612.08403 Analysis of PDEs +1612.08404 Statistical Mechanics +1612.08405 K-Theory and Homology +1612.08408 Computer Vision and Pattern Recognition +1612.08409 Mesoscale and Nanoscale Physics +1612.08410 +1612.08412 Optimization and Control +1612.08413 Strongly Correlated Electrons +1612.08415 Phenomenology +1612.08417 Mesoscale and Nanoscale Physics +1612.08419 +1612.08420 Phenomenology +1612.08422 Combinatorics +1612.08423 Applications +1612.08424 Logic +1612.08426 Dynamical Systems +1612.08427 Metric Geometry +1612.08428 +1612.08429 Algebraic Topology +1612.08430 Applications +1612.08431 Mesoscale and Nanoscale Physics +1612.08432 Number Theory +1612.08434 Number Theory +1612.08436 Quantum Gases +1612.08437 Atomic Physics +1612.08438 Lattice +1612.08439 Dynamical Systems +1612.08441 High Energy Astrophysical Phenomena +1612.08442 Classical Analysis and ODEs +1612.08444 Biological Physics +1612.08445 High Energy Astrophysical Phenomena +1612.08447 Social and Information Networks +1612.08449 Biological Physics +1612.08450 Soft Condensed Matter +1612.08452 Disordered Systems and Neural Networks +1612.08454 Commutative Algebra +1612.08455 Mesoscale and Nanoscale Physics +1612.08456 Materials Science +1612.08458 Mesoscale and Nanoscale Physics +1612.08459 Statistical Mechanics +1612.08460 Analysis of PDEs +1612.08461 Optimization and Control +1612.08462 +1612.08463 Optimization and Control +1612.08464 Statistical Mechanics +1612.08465 Information Theory +1612.08467 +1612.08468 Methodology +1612.08469 Systems and Control +1612.08470 Classical Analysis and ODEs +1612.08472 Phenomenology +1612.08473 Geometric Topology +1612.08474 Combinatorics +1612.08476 Operator Algebras +1612.08477 Information Theory +1612.08479 Physics and Society +1612.08480 Materials Science +1612.08481 Instrumentation and Detectors +1612.08482 +1612.08483 Differential Geometry +1612.08484 Computer Vision and Pattern Recognition +1612.08485 Probability +1612.08486 General Finance +1612.08487 Group Theory +1612.08488 Risk Management +1612.08489 Geometric Topology +1612.08490 Methodology +1612.08492 Dynamical Systems +1612.08493 Accelerator Physics +1612.08494 Statistical Mechanics +1612.08495 +1612.08497 Algebraic Geometry +1612.08498 Learning +1612.08499 Computer Vision and Pattern Recognition +1612.08502 Quantum Gases +1612.08503 Materials Science +1612.08504 Physics and Society +1612.08506 Probability +1612.08510 Computer Vision and Pattern Recognition +1612.08514 Quantum Gases +1612.08516 Probability +1612.08520 High Energy Astrophysical Phenomena +1612.08521 Probability +1612.08522 Phenomenology +1612.08526 Statistics Theory +1612.08529 Operator Algebras +1612.08530 Materials Science +1612.08531 Combinatorics +1612.08532 +1612.08533 Analysis of PDEs +1612.08534 Computer Vision and Pattern Recognition +1612.08535 Representation Theory +1612.08536 Materials Science +1612.08537 Computational Complexity +1612.08539 Information Theory +1612.08541 Computational Physics +1612.08542 Probability +1612.08543 Machine Learning +1612.08544 Learning +1612.08545 Information Theory +1612.08548 +1612.08551 +1612.08552 Multiagent Systems +1612.08553 Superconductivity +1612.08554 +1612.08555 Artificial Intelligence +1612.08558 Operator Algebras +1612.08559 Combinatorics +1612.08560 Instrumentation and Detectors +1612.08561 Probability +1612.08562 High Energy Astrophysical Phenomena +1612.08567 +1612.08568 Statistical Mechanics +1612.08569 Theory +1612.08572 Probability +1612.08575 Probability +1612.08576 Phenomenology +1612.08577 +1612.08578 +1612.08579 +1612.08580 Probability +1612.08581 Probability +1612.08583 Economics +1612.08584 Optics +1612.08585 Functional Analysis +1612.08586 Statistics Theory +1612.08587 Analysis of PDEs +1612.08588 Optimization and Control +1612.08589 High Energy Astrophysical Phenomena +1612.08590 Soft Condensed Matter +1612.08591 Classical Analysis and ODEs +1612.08592 Number Theory +1612.08593 Cryptography and Security +1612.08595 Cosmology and Nongalactic Astrophysics +1612.08596 Classical Analysis and ODEs +1612.08597 Classical Analysis and ODEs +1612.08598 Lattice +1612.08599 General Physics +1612.08600 Exactly Solvable and Integrable Systems +1612.08601 Biological Physics +1612.08603 High Energy Astrophysical Phenomena +1612.08604 Instrumentation and Methods for Astrophysics +1612.08605 Instrumentation and Methods for Astrophysics +1612.08606 Emerging Technologies +1612.08608 Distributed, Parallel, and Cluster Computing +1612.08609 +1612.08611 Probability +1612.08613 Soft Condensed Matter +1612.08616 Statistical Mechanics +1612.08617 Applications +1612.08618 Probability +1612.08620 Numerical Analysis +1612.08621 Phenomenology +1612.08624 Theory +1612.08625 K-Theory and Homology +1612.08627 Number Theory +1612.08628 Number Theory +1612.08629 Social and Information Networks +1612.08631 Physics and Society +1612.08632 Soft Condensed Matter +1612.08633 Artificial Intelligence +1612.08636 History and Overview +1612.08637 Classical Analysis and ODEs +1612.08639 Probability +1612.08640 +1612.08642 Computer Vision and Pattern Recognition +1612.08643 Dynamical Systems +1612.08644 Social and Information Networks +1612.08645 Computers and Society +1612.08647 Optics +1612.08648 Dynamical Systems +1612.08650 Machine Learning +1612.08651 Algebraic Geometry +1612.08652 Representation Theory +1612.08653 +1612.08654 Data Structures and Algorithms +1612.08655 Analysis of PDEs +1612.08656 Optimization and Control +1612.08657 Artificial Intelligence +1612.08658 +1612.08659 Number Theory +1612.08660 Analysis of PDEs +1612.08662 Differential Geometry +1612.08664 Experiment +1612.08666 Information Theory +1612.08668 Materials Science +1612.08669 Learning +1612.08670 Combinatorics +1612.08671 Soft Condensed Matter +1612.08672 Theory +1612.08673 Quantum Algebra +1612.08674 Optics +1612.08675 Theory +1612.08676 Metric Geometry +1612.08678 Cryptography and Security +1612.08679 Materials Science +1612.08680 Analysis of PDEs +1612.08681 Phenomenology +1612.08682 Theory +1612.08683 Superconductivity +1612.08684 Geometric Topology +1612.08685 Classical Physics +1612.08686 Numerical Analysis +1612.08687 Mesoscale and Nanoscale Physics +1612.08688 Phenomenology +1612.08689 General Finance +1612.08690 Geometric Topology +1612.08691 Differential Geometry +1612.08692 Differential Geometry +1612.08693 Probability +1612.08694 +1612.08696 +1612.08698 Combinatorics +1612.08699 Methodology +1612.08701 Distributed, Parallel, and Cluster Computing +1612.08702 Distributed, Parallel, and Cluster Computing +1612.08703 Statistical Mechanics +1612.08705 Statistical Finance +1612.08707 Numerical Analysis +1612.08710 +1612.08713 Soft Condensed Matter +1612.08715 +1612.08716 Probability +1612.08717 Analysis of PDEs +1612.08718 Mesoscale and Nanoscale Physics +1612.08719 Soft Condensed Matter +1612.08720 Materials Science +1612.08722 Number Theory +1612.08723 Algebraic Geometry +1612.08724 Astrophysics of Galaxies +1612.08726 +1612.08727 Multimedia +1612.08732 Exactly Solvable and Integrable Systems +1612.08733 Popular Physics +1612.08735 Complex Variables +1612.08736 Functional Analysis +1612.08738 Theory +1612.08739 Theory +1612.08740 Accelerator Physics +1612.08741 Probability +astro-ph/0412026 +astro-ph/0602452 +astro-ph/9910135 +gr-qc/0007011 +gr-qc/0007076 +gr-qc/9902022 +gr-qc/9902048 +gr-qc/9912093 +hep-ex/0002025 Experiment +hep-lat/0001005 Lattice +hep-lat/0001022 Lattice +hep-lat/9911015 Lattice +hep-ph/0002093 Phenomenology +hep-ph/0005247 Phenomenology +hep-ph/9803278 Phenomenology +hep-ph/9805305 Phenomenology +hep-ph/9811398 Phenomenology +hep-ph/9905216 Phenomenology +hep-ph/9907202 Phenomenology +hep-ph/9909451 Phenomenology +hep-ph/9910327 Phenomenology +hep-ph/9911456 Phenomenology +hep-th/0001086 Theory +hep-th/0001212 Theory +hep-th/0002065 Theory +hep-th/0002247 Theory +hep-th/0003095 Theory +hep-th/0003112 Theory +hep-th/0003119 Theory +hep-th/0004046 Theory +hep-th/0004121 Theory +hep-th/0006022 Theory +hep-th/0007018 Theory +hep-th/9701180 Theory +hep-th/9804117 Theory +hep-th/9808121 Theory +hep-th/9810073 Theory +hep-th/9811105 Theory +hep-th/9812098 Theory +hep-th/9901120 Theory +hep-th/9902198 Theory +hep-th/9904202 Theory +hep-th/9904211 Theory +hep-th/9907110 Theory +hep-th/9908100 Theory +hep-th/9908151 Theory +hep-th/9910017 Theory +hep-th/9910180 Theory +hep-th/9910237 Theory +hep-th/9911108 Theory +hep-th/9912052 Theory +hep-th/9912084 Theory +hep-th/9912154 Theory +math-ph/0610011 +math/0112122 Quantum Algebra +nlin/0001038 Exactly Solvable and Integrable Systems +nlin/0003068 Exactly Solvable and Integrable Systems +physics/0501114 Plasma Physics +physics/9712046 +quant-ph/9908014 +solv-int/9910012 Exactly Solvable and Integrable Systems +0907.2056 Strongly Correlated Electrons +0907.3721 Mesoscale and Nanoscale Physics +1004.1577 Probability +1004.3986 Probability +1005.0279 General Finance +1011.6241 Theory +1012.4415 Mesoscale and Nanoscale Physics +1102.0444 Probability +1102.5230 Exactly Solvable and Integrable Systems +1104.3541 +1110.4158 Analysis of PDEs +1111.5437 Soft Condensed Matter +1112.2872 Theory +1205.1211 Plasma Physics +1205.7036 +1208.1476 Logic in Computer Science +1209.1272 +1209.1366 Differential Geometry +1211.6670 Theory +1212.2408 +1212.5315 Numerical Analysis +1212.5405 Methodology +1301.0465 Optimization and Control +1301.6588 +1306.5525 Number Theory +1306.6796 Number Theory +1307.4570 Probability +1307.4905 Soft Condensed Matter +1308.1757 Phenomenology +1308.2697 Materials Science +1308.5649 +1309.2507 Probability +1312.2255 Commutative Algebra +1401.1169 Probability +1401.1433 Operator Algebras +1401.6975 Information Theory +1402.3742 +1402.4768 Mesoscale and Nanoscale Physics +1403.1732 Information Theory +1403.2418 Differential Geometry +1403.6215 Geometric Topology +1405.3004 Geometric Topology +1406.3973 Representation Theory +1406.4871 Cosmology and Nongalactic Astrophysics +1406.7304 Theory +1407.4376 Statistics Theory +1407.4813 Cosmology and Nongalactic Astrophysics +1408.1880 Algebraic Geometry +1408.4031 Probability +1409.0480 +1409.6937 Quantum Algebra +1409.7366 Probability +1409.7468 Probability +1410.3035 Geometric Topology +1410.6645 Analysis of PDEs +1410.7357 Statistics Theory +1410.7664 Quantum Algebra +1410.8362 Logic +1411.1420 Learning +1411.2987 Logic +1411.5035 Group Theory +1411.5495 Fluid Dynamics +1412.4188 Discrete Mathematics +1412.6234 Statistical Mechanics +1412.6281 Instrumentation and Detectors +1412.8581 Optimization and Control +1501.01283 +1501.03948 Metric Geometry +1501.04597 Rings and Algebras +1502.00886 Analysis of PDEs +1502.01253 Multiagent Systems +1502.04663 Strongly Correlated Electrons +1503.00305 Probability +1503.01397 Machine Learning +1503.02798 Number Theory +1503.08378 Number Theory +1504.04789 Probability +1504.05114 Representation Theory +1504.06389 Statistical Mechanics +1504.07332 Analysis of PDEs +1504.08355 Cosmology and Nongalactic Astrophysics +1505.04732 Computation +1505.05423 Discrete Mathematics +1505.06339 Number Theory +1505.07680 +1505.07968 Materials Science +1506.00459 Superconductivity +1506.03490 Mesoscale and Nanoscale Physics +1506.04293 Theory +1506.05405 +1506.05576 Dynamical Systems +1506.05657 Analysis of PDEs +1506.05792 Theory +1506.08064 Soft Condensed Matter +1506.08723 Number Theory +1507.00684 Number Theory +1507.02124 +1507.03518 Robotics +1507.03906 Cosmology and Nongalactic Astrophysics +1507.05829 Classical Analysis and ODEs +1507.07843 Cosmology and Nongalactic Astrophysics +1507.08084 Numerical Analysis +1507.08878 Theory +1508.00824 Analysis of PDEs +1508.00920 +1508.01238 Rings and Algebras +1508.02008 +1508.02981 +1508.06018 Systems and Control +1508.07026 +1509.00791 Spectral Theory +1509.01118 Optimization and Control +1509.04785 Dynamical Systems +1509.07702 Discrete Mathematics +1509.08771 +1509.09038 Instrumentation and Detectors +1510.00908 Exactly Solvable and Integrable Systems +1510.02113 Probability +1510.05570 Phenomenology +1510.06208 Analysis of PDEs +1510.07386 Optimization and Control +1510.08447 +1511.00121 +1511.00434 High Energy Astrophysical Phenomena +1511.00723 High Energy Astrophysical Phenomena +1511.00752 Analysis of PDEs +1511.01159 High Energy Astrophysical Phenomena +1511.01245 Computer Vision and Pattern Recognition +1511.01668 Discrete Mathematics +1511.04376 Networking and Internet Architecture +1511.04585 Information Theory +1511.04646 Computation and Language +1511.05578 Information Theory +1511.05792 Dynamical Systems +1511.06944 Analysis of PDEs +1511.07459 +1511.08905 Optimization and Control +1511.09050 Social and Information Networks +1512.00959 Fluid Dynamics +1512.00985 Materials Science +1512.01025 Theory +1512.02180 Analysis of PDEs +1512.02400 Classical Analysis and ODEs +1512.04031 Differential Geometry +1512.04874 +1512.05261 Combinatorics +1512.05453 +1512.06166 Phenomenology +1512.06778 Algebraic Geometry +1512.07715 Physics and Society +1512.08029 +1512.08207 Spectral Theory +1512.08500 Phenomenology +1512.09064 Algebraic Topology +1512.09298 Probability +1601.00948 Functional Analysis +1601.01149 Mesoscale and Nanoscale Physics +1601.01432 Computer Vision and Pattern Recognition +1601.03622 Number Theory +1601.04161 Numerical Analysis +1601.04744 Theory +1601.04784 Theory +1601.05392 Fluid Dynamics +1601.05461 Pattern Formation and Solitons +1601.06014 Information Theory +1601.06103 Statistics Theory +1601.06173 +1601.06675 Materials Science +1601.08055 Mesoscale and Nanoscale Physics +1601.08146 Differential Geometry +1602.00079 Systems and Control +1602.00540 Analysis of PDEs +1602.00770 High Energy Astrophysical Phenomena +1602.00883 Information Theory +1602.01281 Optics +1602.01340 +1602.02232 Analysis of PDEs +1602.02292 K-Theory and Homology +1602.04255 Group Theory +1602.04490 Social and Information Networks +1602.04892 +1602.05410 Chaotic Dynamics +1602.05676 Number Theory +1602.05861 Classical Analysis and ODEs +1602.06218 Computation +1602.07780 Populations and Evolution +1602.07973 Category Theory +1602.08043 Probability +1602.08373 Cosmology and Nongalactic Astrophysics +1603.00879 Phenomenology +1603.01461 +1603.01937 Numerical Analysis +1603.01955 Computational Physics +1603.02453 Subcellular Processes +1603.04559 Combinatorics +1603.06700 +1603.07442 Computer Vision and Pattern Recognition +1603.08136 Geometric Topology +1603.08443 Chemical Physics +1603.09514 Quantum Gases +1603.09724 Numerical Analysis +1604.00067 +1604.00192 Sound +1604.00937 +1604.01312 Statistical Mechanics +1604.01353 Theory +1604.01736 Optics +1604.01847 Probability +1604.02365 Mesoscale and Nanoscale Physics +1604.02606 Computer Science and Game Theory +1604.03742 Statistics Theory +1604.04025 Optics +1604.04433 +1604.04731 Phenomenology +1604.04807 +1604.04980 Methodology +1604.05756 Operator Algebras +1604.07491 Optimization and Control +1604.07588 +1604.07663 +1604.08699 Statistical Mechanics +1604.08860 Data Structures and Algorithms +1605.01512 Phenomenology +1605.01528 Statistical Mechanics +1605.02421 Probability +1605.03404 +1605.03637 +1605.03725 Fluid Dynamics +1605.04337 Learning +1605.04846 Probability +1605.05511 Classical Analysis and ODEs +1605.06137 Combinatorics +1605.06224 Solar and Stellar Astrophysics +1605.07454 Fluid Dynamics +1605.07672 Optics +1605.08518 Information Theory +1605.08569 +1605.09301 Strongly Correlated Electrons +1606.00132 Dynamical Systems +1606.00163 Atomic Physics +1606.00190 History and Philosophy of Physics +1606.00191 Networking and Internet Architecture +1606.00668 Information Theory +1606.00694 Data Analysis, Statistics and Probability +1606.01497 Representation Theory +1606.01510 Numerical Analysis +1606.01961 Group Theory +1606.02191 Biological Physics +1606.02220 Computational Geometry +1606.02797 Accelerator Physics +1606.03019 Differential Geometry +1606.03111 +1606.03145 Lattice +1606.03242 Information Theory +1606.03388 Mathematical Finance +1606.03982 Formal Languages and Automata Theory +1606.04004 Chemical Physics +1606.04752 Operator Algebras +1606.05005 Numerical Analysis +1606.05166 Geometric Topology +1606.05252 Algebraic Geometry +1606.06057 +1606.06207 Statistical Mechanics +1606.06231 Analysis of PDEs +1606.06371 Probability +1606.06470 Exactly Solvable and Integrable Systems +1606.06724 Computer Vision and Pattern Recognition +1606.06921 Information Theory +1606.07063 Phenomenology +1606.07334 Number Theory +1606.07794 +1606.09013 Phenomenology +1607.01051 Plasma Physics +1607.01599 Combinatorics +1607.02667 +1607.02999 Mesoscale and Nanoscale Physics +1607.03428 Learning +1607.04787 Data Structures and Algorithms +1607.05040 Phenomenology +1607.05223 Cosmology and Nongalactic Astrophysics +1607.05470 Atomic Physics +1607.05551 Theory +1607.05695 Computer Vision and Pattern Recognition +1607.06415 Materials Science +1607.06494 Discrete Mathematics +1607.06584 Mesoscale and Nanoscale Physics +1607.06629 Theory +1607.07419 Mesoscale and Nanoscale Physics +1607.07659 Theory +1607.07840 +1607.08047 Geometric Topology +1607.08544 Strongly Correlated Electrons +1608.00349 Theory +1608.02007 Solar and Stellar Astrophysics +1608.02532 +1608.03757 Neural and Evolutionary Computing +1608.03945 +1608.04363 Sound +1608.04404 Chemical Physics +1608.06180 Strongly Correlated Electrons +1608.06196 Social and Information Networks +1608.06328 Physics and Society +1608.06364 Theory +1608.06632 Materials Science +1608.07114 Materials Science +1608.07273 Plasma Physics +1608.08549 Fluid Dynamics +1608.08824 Cosmology and Nongalactic Astrophysics +1608.08909 Computational Geometry +1609.00157 Biomolecules +1609.00233 Phenomenology +1609.01081 Theory +1609.01161 Strongly Correlated Electrons +1609.01541 Computational Complexity +1609.01617 Fluid Dynamics +1609.01763 Geometric Topology +1609.01943 Theory +1609.02095 Materials Science +1609.02884 Chemical Physics +1609.02993 Artificial Intelligence +1609.03430 +1609.04017 High Energy Astrophysical Phenomena +1609.04120 Machine Learning +1609.04517 Complex Variables +1609.04683 Information Theory +1609.05549 Differential Geometry +1609.05981 Representation Theory +1609.06629 Biological Physics +1609.06930 Theory +1609.06931 +1609.07173 Space Physics +1609.07210 Theory +1609.07285 Superconductivity +1609.07504 Mesoscale and Nanoscale Physics +1609.07731 Computation +1609.07815 Quantum Gases +1609.08764 Computer Vision and Pattern Recognition +1610.00007 Theory +1610.00893 Computer Vision and Pattern Recognition +1610.01206 Learning +1610.01242 Accelerator Physics +1610.01354 Cryptography and Security +1610.01362 Theory +1610.01472 Lattice +1610.01914 Combinatorics +1610.02720 +1610.02795 +1610.02844 Optimization and Control +1610.03242 Exactly Solvable and Integrable Systems +1610.04253 Number Theory +1610.05103 Numerical Analysis +1610.05143 Mesoscale and Nanoscale Physics +1610.06018 Strongly Correlated Electrons +1610.06122 Statistical Mechanics +1610.06209 Learning +1610.06381 +1610.06385 Hardware Architecture +1610.06387 +1610.06554 Theory +1610.06702 Optimization and Control +1610.07076 Analysis of PDEs +1610.08619 Computer Vision and Pattern Recognition +1610.08684 Quantum Algebra +1610.09679 Data Structures and Algorithms +1610.09868 Combinatorics +1611.00113 Methodology +1611.00117 Astrophysics of Galaxies +1611.00149 +1611.01491 Learning +1611.01722 Machine Learning +1611.02245 Phenomenology +1611.02369 Phenomenology +1611.02497 +1611.02759 +1611.02864 Data Structures and Algorithms +1611.02960 Information Theory +1611.03022 +1611.03220 Numerical Analysis +1611.03435 Optimization and Control +1611.03598 Complex Variables +1611.04054 Numerical Analysis +1611.04072 Dynamical Systems +1611.04521 Strongly Correlated Electrons +1611.04583 Physics and Society +1611.04742 Operator Algebras +1611.04854 General Physics +1611.04889 Combinatorics +1611.05088 Computer Vision and Pattern Recognition +1611.05233 Optics +1611.05276 Theory +1611.05459 Quantum Gases +1611.05545 Probability +1611.05853 Cosmology and Nongalactic Astrophysics +1611.05952 +1611.06035 Spectral Theory +1611.06182 +1611.06210 Dynamical Systems +1611.06330 Numerical Analysis +1611.06336 Theory +1611.06345 Computer Vision and Pattern Recognition +1611.06541 Representation Theory +1611.06615 Data Structures and Algorithms +1611.06635 Number Theory +1611.06651 Quantitative Methods +1611.06679 Algebraic Geometry +1611.06689 Computer Vision and Pattern Recognition +1611.06841 Optics +1611.06883 Strongly Correlated Electrons +1611.06890 Instrumentation and Detectors +1611.06943 Digital Libraries +1611.07068 Materials Science +1611.07297 Computational Engineering, Finance, and Science +1611.07449 Networking and Internet Architecture +1611.07463 Geometric Topology +1611.07513 Combinatorics +1611.07708 Optimization and Control +1611.07792 Combinatorics +1611.07812 Software Engineering +1611.07864 Experiment +1611.07883 Solar and Stellar Astrophysics +1611.08000 Optimization and Control +1611.08051 Theory +1611.08134 Computer Vision and Pattern Recognition +1611.08161 Analysis of PDEs +1611.08264 Group Theory +1611.08280 Applications +1611.08291 +1611.08363 Materials Science +1611.08384 High Energy Astrophysical Phenomena +1611.08419 Discrete Mathematics +1611.08431 Discrete Mathematics +1611.08495 +1611.08512 Computer Vision and Pattern Recognition +1611.08531 Disordered Systems and Neural Networks +1611.08535 +1611.08590 Astrophysics of Galaxies +1611.08591 Phenomenology +1611.08592 Digital Libraries +1611.08599 Theory +1611.08601 Theory +1611.08602 Theory +1611.08603 Strongly Correlated Electrons +1611.08605 Chemical Physics +1611.08614 Solar and Stellar Astrophysics +1611.08619 Cosmology and Nongalactic Astrophysics +1611.08620 Materials Science +1611.08622 Numerical Analysis +1611.08623 Mesoscale and Nanoscale Physics +1611.08624 Computer Vision and Pattern Recognition +1611.08625 Computer Vision and Pattern Recognition +1611.08626 Dynamical Systems +1611.08627 Mesoscale and Nanoscale Physics +1611.08628 Lattice +1611.08629 Computer Vision and Pattern Recognition +1611.08630 Astrophysics of Galaxies +1611.08631 Methodology +1611.08632 Methodology +1611.08634 Methodology +1611.08635 Astrophysics of Galaxies +1611.08636 Methodology +1611.08637 Differential Geometry +1611.08639 Methodology +1611.08640 Methodology +1611.08641 Optimization and Control +1611.08642 Probability +1611.08643 Differential Geometry +1611.08644 Algebraic Geometry +1611.08646 Number Theory +1611.08648 Cryptography and Security +1611.08649 Methodology +1611.08651 Programming Languages +1611.08652 Fluid Dynamics +1611.08654 Probability +1611.08655 Geophysics +1611.08656 Computation and Language +1611.08658 Plasma Physics +1611.08662 Differential Geometry +1611.08663 Computer Vision and Pattern Recognition +1611.08666 Learning +1611.08667 Fluid Dynamics +1611.08671 Quantum Gases +1611.08672 Rings and Algebras +1611.08675 Artificial Intelligence +1611.08676 Functional Analysis +1611.08677 Logic in Computer Science +1611.08678 Dynamical Systems +1611.08681 Networking and Internet Architecture +1611.08682 Metric Geometry +1611.08683 Functional Analysis +1611.08685 Lattice +1611.08686 Cryptography and Security +1611.08688 Phenomenology +1611.08690 Information Theory +1611.08691 Computer Science and Game Theory +1611.08693 Number Theory +1611.08694 Cosmology and Nongalactic Astrophysics +1611.08697 Pattern Formation and Solitons +1611.08700 +1611.08703 Networking and Internet Architecture +1611.08705 +1611.08706 Numerical Analysis +1611.08707 Solar and Stellar Astrophysics +1611.08709 +1611.08710 Solar and Stellar Astrophysics +1611.08711 Lattice +1611.08713 Materials Science +1611.08714 Information Theory +1611.08717 Classical Analysis and ODEs +1611.08719 Applications +1611.08721 Statistics Theory +1611.08722 Algebraic Geometry +1611.08723 Functional Analysis +1611.08724 Functional Analysis +1611.08725 Networking and Internet Architecture +1611.08726 Analysis of PDEs +1611.08727 Analysis of PDEs +1611.08728 Networking and Internet Architecture +1611.08729 Lattice +1611.08730 Algebraic Geometry +1611.08731 Earth and Planetary Astrophysics +1611.08736 Numerical Analysis +1611.08738 Logic in Computer Science +1611.08740 Combinatorics +1611.08742 Theory +1611.08746 High Energy Astrophysical Phenomena +1611.08747 Methodology +1611.08748 Analysis of PDEs +1611.08751 Neurons and Cognition +1611.08754 Computer Vision and Pattern Recognition +1611.08755 Differential Geometry +1611.08759 Algebraic Topology +1611.08760 Populations and Evolution +1611.08761 Probability +1611.08762 Materials Science +1611.08764 Statistical Mechanics +1611.08765 Computation and Language +1611.08766 Soft Condensed Matter +1611.08767 Robotics +1611.08768 Algebraic Geometry +1611.08769 Cryptography and Security +1611.08771 Algebraic Topology +1611.08772 Numerical Analysis +1611.08773 Artificial Intelligence +1611.08774 Accelerator Physics +1611.08775 Optimization and Control +1611.08777 Combinatorics +1611.08778 Numerical Analysis +1611.08779 Information Theory +1611.08780 Computer Vision and Pattern Recognition +1611.08783 +1611.08784 Mesoscale and Nanoscale Physics +1611.08785 Phenomenology +1611.08788 Computer Vision and Pattern Recognition +1611.08789 Computer Vision and Pattern Recognition +1611.08790 K-Theory and Homology +1611.08791 Applications +1611.08792 Optics +1611.08795 Phenomenology +1611.08796 Computer Vision and Pattern Recognition +1611.08797 Instrumentation and Detectors +1611.08798 Accelerator Physics +1611.08799 Differential Geometry +1611.08800 Logic in Computer Science +1611.08801 +1611.08802 +1611.08803 Data Structures and Algorithms +1611.08804 +1611.08805 Information Theory +1611.08807 Computation and Language +1611.08810 Number Theory +1611.08812 Computer Vision and Pattern Recognition +1611.08813 Computation and Language +1611.08815 Computer Vision and Pattern Recognition +1611.08818 Algebraic Geometry +1611.08819 Algebraic Geometry +1611.08821 Algebraic Geometry +1611.08822 Information Theory +1611.08823 Soft Condensed Matter +1611.08824 +1611.08825 Optimization and Control +1611.08826 History and Overview +1611.08827 Complex Variables +1611.08829 Cellular Automata and Lattice Gases +1611.08830 Software Engineering +1611.08831 +1611.08832 Optimization and Control +1611.08833 Software Engineering +1611.08834 Software Engineering +1611.08839 Social and Information Networks +1611.08840 Commutative Algebra +1611.08842 Computational Complexity +1611.08843 Phenomenology +1611.08845 Soft Condensed Matter +1611.08846 Rings and Algebras +1611.08847 Software Engineering +1611.08849 Digital Libraries +1611.08850 Combinatorics +1611.08851 Mesoscale and Nanoscale Physics +1611.08852 Group Theory +1611.08853 Information Theory +1611.08854 Complex Variables +1611.08857 Classical Analysis and ODEs +1611.08860 Computer Vision and Pattern Recognition +1611.08861 Metric Geometry +1611.08863 Analysis of PDEs +1611.08864 Distributed, Parallel, and Cluster Computing +1611.08865 Representation Theory +1611.08866 +1611.08868 Software Engineering +1611.08869 Analysis of PDEs +1611.08870 General Topology +1611.08871 Medical Physics +1611.08872 Quantum Algebra +1611.08873 Mesoscale and Nanoscale Physics +1611.08874 Probability +1611.08875 Materials Science +1611.08878 +1611.08881 Commutative Algebra +1611.08882 Cryptography and Security +1611.08883 Analysis of PDEs +1611.08884 Astrophysics of Galaxies +1611.08885 Probability +1611.08886 Information Theory +1611.08887 Materials Science +1611.08888 Programming Languages +1611.08890 Mesoscale and Nanoscale Physics +1611.08892 Computer Science and Game Theory +1611.08893 Atomic Physics +1611.08895 Numerical Analysis +1611.08896 Computer Vision and Pattern Recognition +1611.08898 Data Structures and Algorithms +1611.08899 Analysis of PDEs +1611.08900 Algebraic Geometry +1611.08901 Chemical Physics +1611.08902 +1611.08904 Combinatorics +1611.08905 Sound +1611.08907 High Energy Astrophysical Phenomena +1611.08908 Artificial Intelligence +1611.08909 +1611.08911 Materials Science +1611.08912 Atmospheric and Oceanic Physics +1611.08913 Neurons and Cognition +1611.08917 Quantum Gases +1611.08918 Physics and Society +1611.08920 Combinatorics +1611.08921 Metric Geometry +1611.08923 Exactly Solvable and Integrable Systems +1611.08925 High Energy Astrophysical Phenomena +1611.08927 Computer Science and Game Theory +1611.08932 Probability +1611.08935 Materials Science +1611.08937 Mesoscale and Nanoscale Physics +1611.08938 Distributed, Parallel, and Cluster Computing +1611.08939 Instrumentation and Detectors +1611.08940 Materials Science +1611.08944 Artificial Intelligence +1611.08946 +1611.08947 Graphics +1611.08948 Other Quantitative Biology +1611.08951 Multiagent Systems +1611.08952 Analysis of PDEs +1611.08954 Data Structures and Algorithms +1611.08957 Strongly Correlated Electrons +1611.08958 Geophysics +1611.08959 Information Theory +1611.08960 Quantum Gases +1611.08963 Soft Condensed Matter +1611.08966 Strongly Correlated Electrons +1611.08967 Numerical Analysis +1611.08969 Number Theory +1611.08971 +1611.08973 Systems and Control +1611.08974 Computer Vision and Pattern Recognition +1611.08976 Computer Vision and Pattern Recognition +1611.08977 Number Theory +1611.08978 Theory +1611.08979 Probability +1611.08980 +1611.08981 Computers and Society +1611.08982 Optics +1611.08984 Strongly Correlated Electrons +1611.08985 Functional Analysis +1611.08986 Computer Vision and Pattern Recognition +1611.08988 Logic +1611.08989 +1611.08992 Logic in Computer Science +1611.08993 Mesoscale and Nanoscale Physics +1611.08994 Dynamical Systems +1611.08995 Software Engineering +1611.08999 Mesoscale and Nanoscale Physics +1611.09001 Differential Geometry +1611.09002 Combinatorics +1611.09003 Discrete Mathematics +1611.09004 High Energy Astrophysical Phenomena +1611.09005 Statistics Theory +1611.09006 +1611.09007 Computer Vision and Pattern Recognition +1611.09009 Cryptography and Security +1611.09010 Computer Vision and Pattern Recognition +1611.09011 Networking and Internet Architecture +1611.09012 Data Structures and Algorithms +1611.09013 Classical Analysis and ODEs +1611.09016 +1611.09018 Combinatorics +1611.09021 Numerical Analysis +1611.09022 Probability +1611.09023 Astrophysics of Galaxies +1611.09024 Neurons and Cognition +1611.09025 +1611.09027 +1611.09028 Information Retrieval +1611.09030 Social and Information Networks +1611.09031 Soft Condensed Matter +1611.09032 +1611.09033 Combinatorics +1611.09036 +1611.09037 +1611.09038 Optics +1611.09039 +1611.09040 Earth and Planetary Astrophysics +1611.09041 Numerical Analysis +1611.09043 Phenomenology +1611.09044 Strongly Correlated Electrons +1611.09045 +1611.09046 Experiment +1611.09048 Distributed, Parallel, and Cluster Computing +1611.09050 Chaotic Dynamics +1611.09051 Computer Vision and Pattern Recognition +1611.09052 Populations and Evolution +1611.09053 Computer Vision and Pattern Recognition +1611.09054 Number Theory +1611.09055 +1611.09057 Experiment +1611.09058 Information Theory +1611.09059 Quantum Algebra +1611.09063 Methodology +1611.09064 Functional Analysis +1611.09065 Computers and Society +1611.09066 Quantum Gases +1611.09068 Space Physics +1611.09069 +1611.09070 +1611.09071 Fluid Dynamics +1611.09076 Fluid Dynamics +1611.09077 Group Theory +1611.09078 Computer Vision and Pattern Recognition +1611.09079 Functional Analysis +1611.09080 Probability +1611.09081 Exactly Solvable and Integrable Systems +1611.09082 Phenomenology +1611.09083 Information Retrieval +1611.09084 Data Structures and Algorithms +1611.09088 +1611.09089 Neurons and Cognition +1611.09092 Number Theory +1611.09095 Materials Science +1611.09098 Statistical Mechanics +1611.09099 Computer Vision and Pattern Recognition +1611.09100 Computation and Language +1611.09102 Theory +1611.09104 Information Theory +1611.09106 Mesoscale and Nanoscale Physics +1611.09107 Numerical Analysis +1611.09108 Experiment +1611.09112 Complex Variables +1611.09113 Theory +1611.09114 Geometric Topology +1611.09115 Chemical Physics +1611.09116 Software Engineering +1611.09117 Complex Variables +1611.09120 Lattice +1611.09121 Optimization and Control +1611.09122 Applications +1611.09123 Soft Condensed Matter +1611.09125 Soft Condensed Matter +1611.09126 Classical Analysis and ODEs +1611.09129 Theory +1611.09131 Data Structures and Algorithms +1611.09132 Software Engineering +1611.09134 Differential Geometry +1611.09135 Functional Analysis +1611.09136 Algebraic Geometry +1611.09137 Plasma Physics +1611.09138 Mesoscale and Nanoscale Physics +1611.09139 Machine Learning +1611.09141 Experiment +1611.09142 Chemical Physics +1611.09143 Information Theory +1611.09147 Phenomenology +1611.09148 Category Theory +1611.09150 Group Theory +1611.09155 Analysis of PDEs +1611.09156 Classical Analysis and ODEs +1611.09157 Classical Analysis and ODEs +1611.09159 Computer Vision and Pattern Recognition +1611.09162 Computer Vision and Pattern Recognition +1611.09163 Lattice +1611.09164 +1611.09165 +1611.09168 Optimization and Control +1611.09169 Software Engineering +1611.09170 Databases +1611.09171 Statistical Mechanics +1611.09172 Databases +1611.09173 +1611.09174 Classical Analysis and ODEs +1611.09178 Algebraic Geometry +1611.09179 Probability +1611.09180 Computer Vision and Pattern Recognition +1611.09181 Combinatorics +1611.09182 Theory +1611.09184 Differential Geometry +1611.09185 +1611.09187 Software Engineering +1611.09189 Discrete Mathematics +1611.09190 Instrumentation and Methods for Astrophysics +1611.09191 Analysis of PDEs +1611.09193 Networking and Internet Architecture +1611.09195 Lattice +1611.09196 Dynamical Systems +1611.09197 Probability +1611.09198 Number Theory +1611.09200 Statistical Mechanics +1611.09201 Combinatorics +1611.09207 Computation and Language +1611.09210 General Physics +1611.09211 Quantum Algebra +1611.09212 Neurons and Cognition +1611.09214 Probability +1611.09216 Plasma Physics +1611.09220 +1611.09221 +1611.09222 Classical Analysis and ODEs +1611.09224 Computer Vision and Pattern Recognition +1611.09225 Methodology +1611.09227 +1611.09230 Software Engineering +1611.09232 Machine Learning +1611.09233 Cosmology and Nongalactic Astrophysics +1611.09235 Computation and Language +1611.09237 Phenomenology +1611.09238 Computation and Language +1611.09239 Molecular Networks +1611.09240 Robotics +1611.09244 Astrophysics of Galaxies +1611.09245 Neurons and Cognition +1611.09251 Dynamical Systems +1611.09252 Computation +1611.09255 Analysis of PDEs +1611.09259 Programming Languages +1611.09260 Optimization and Control +1611.09261 Cryptography and Security +1611.09263 Logic in Computer Science +1611.09264 High Energy Astrophysical Phenomena +1611.09265 Disordered Systems and Neural Networks +1611.09266 High Energy Astrophysical Phenomena +1611.09267 Analysis of PDEs +1611.09271 Analysis of PDEs +1611.09273 Metric Geometry +1611.09274 +1611.09276 Dynamical Systems +1611.09277 Analysis of PDEs +1611.09279 Combinatorics +1611.09280 Geometric Topology +1611.09281 Dynamical Systems +1611.09282 Atomic Physics +1611.09284 Materials Science +1611.09286 Chemical Physics +1611.09287 Representation Theory +1611.09289 Biomolecules +1611.09291 Combinatorics +1611.09292 Exactly Solvable and Integrable Systems +1611.09293 Numerical Analysis +1611.09294 Spectral Theory +1611.09299 +1611.09300 Probability +1611.09304 Optimization and Control +1611.09305 Superconductivity +1611.09306 +1611.09308 Phenomenology +1611.09309 Computer Vision and Pattern Recognition +1611.09315 Number Theory +1611.09316 Social and Information Networks +1611.09317 Data Structures and Algorithms +1611.09318 Logic in Computer Science +1611.09320 Phenomenology +1611.09325 Computer Vision and Pattern Recognition +1611.09327 K-Theory and Homology +1611.09329 Analysis of PDEs +1611.09332 Cryptography and Security +1611.09333 Learning +1611.09335 Networking and Internet Architecture +1611.09336 Phenomenology +1611.09337 Phenomenology +1611.09339 Solar and Stellar Astrophysics +1611.09341 Applications +1611.09342 Dynamical Systems +1611.09343 Geometric Topology +1611.09345 Learning +1611.09347 +1611.09348 Cosmology and Nongalactic Astrophysics +cond-mat/0203492 Strongly Correlated Electrons +cond-mat/9807353 Strongly Correlated Electrons +1601.01304 Optimization and Control +0709.3606 Molecular Networks +0808.1676 Strongly Correlated Electrons +0909.0799 Group Theory +0909.0804 Group Theory +1002.2260 Number Theory +1005.1444 Statistical Mechanics +1303.2441 Classical Analysis and ODEs +1303.2807 Algebraic Topology +1306.6390 Number Theory +1307.6931 Phenomenology +1308.4229 Group Theory +1310.1765 Number Theory +1311.2071 Algebraic Geometry +1311.2995 Differential Geometry +1311.6506 Materials Science +1312.3736 Theory +1312.6582 Algebraic Geometry +1312.6664 +1403.6278 Differential Geometry +1404.2379 Spectral Theory +1404.4745 Probability +1406.2562 Statistical Mechanics +1407.2783 Quantum Algebra +1407.8038 Methodology +1408.0298 Statistical Mechanics +1409.5819 Spectral Theory +1410.1282 Systems and Control +1410.2396 Differential Geometry +1410.2586 Optimization and Control +1410.3231 +1411.2434 Functional Analysis +1412.5352 Quantum Algebra +1412.5831 Information Theory +1501.03050 Analysis of PDEs +1501.03387 Probability +1501.05680 Computer Vision and Pattern Recognition +1501.07303 Spectral Theory +1502.00573 Logic +1502.02613 Computation +1502.06582 +1502.07242 Systems and Control +1503.00876 Algebraic Geometry +1503.01425 Computer Science and Game Theory +1503.02578 Learning +1503.03776 Number Theory +1503.04705 Number Theory +1504.02085 Statistical Mechanics +1504.04288 Quantum Gases +1505.04565 Digital Libraries +1505.06797 Materials Science +1505.07209 Functional Analysis +1506.02467 Quantum Gases +1506.05864 Experiment +1507.00404 Materials Science +1507.01669 Theory +1507.02975 +1508.05954 +1508.07687 Geometric Topology +1509.02065 Quantum Gases +1509.02747 History and Overview +1509.06240 Cosmology and Nongalactic Astrophysics +1509.06440 +1509.07747 Statistics Theory +1510.06084 Probability +1510.08064 +1511.00180 Symbolic Computation +1511.01528 Dynamical Systems +1511.04572 Numerical Analysis +1511.07769 Group Theory +1511.08240 Numerical Analysis +1511.08471 Complex Variables +1512.00143 Theory +1512.01093 Physics and Society +1512.03264 Superconductivity +1512.05287 Machine Learning +1512.05831 Lattice +1512.05834 Spectral Theory +1512.08767 +1512.09215 +1601.00604 Group Theory +1601.05098 Networking and Internet Architecture +1601.05834 Social and Information Networks +1601.06716 Optics +1601.07710 Probability +1602.00295 Classical Physics +1602.00697 +1602.00765 Operator Algebras +1602.01250 Functional Analysis +1602.01307 Number Theory +1602.02212 +1602.02653 Theory +1602.04312 Numerical Analysis +1602.05173 Logic +1602.08023 Computer Science and Game Theory +1602.08187 +1603.01744 Dynamical Systems +1603.03037 Astrophysics of Galaxies +1603.03578 Strongly Correlated Electrons +1603.03686 Physics Education +1603.04989 Learning +1603.05012 Optimization and Control +1603.08511 Computer Vision and Pattern Recognition +1603.09567 +1604.00086 Mesoscale and Nanoscale Physics +1604.01240 Theory +1604.01597 Methodology +1604.02218 Optimization and Control +1604.02855 Machine Learning +1604.03183 Information Theory +1604.04033 +1604.04112 Computer Vision and Pattern Recognition +1604.04239 Statistical Mechanics +1604.05665 Analysis of PDEs +1604.08620 Human-Computer Interaction +1604.08685 Computer Vision and Pattern Recognition +1605.05244 Instrumentation and Detectors +1605.05377 Operator Algebras +1605.06130 Statistical Mechanics +1605.06353 Computation and Language +1605.06562 +1605.07472 Solar and Stellar Astrophysics +1605.09247 Theory +1605.09288 Statistics Theory +1605.09715 Information Theory +1606.00442 Earth and Planetary Astrophysics +1606.00724 Probability +1606.01299 Computer Vision and Pattern Recognition +1606.01622 Atomic Physics +1606.01900 High Energy Astrophysical Phenomena +1606.01920 Theory +1606.02006 Computation and Language +1606.02606 Theory +1606.03260 +1606.03492 Phenomenology +1606.03905 Astrophysics of Galaxies +1606.05747 +1606.06165 Functional Analysis +1606.06370 Combinatorics +1606.07475 Plasma Physics +1606.07647 Materials Science +1606.07839 Computer Vision and Pattern Recognition +1606.07851 Mesoscale and Nanoscale Physics +1606.08412 Discrete Mathematics +1606.08579 Optics +1606.09638 Logic in Computer Science +1607.02061 Computation and Language +1607.03093 Phenomenology +1607.03233 Differential Geometry +1607.03268 Mesoscale and Nanoscale Physics +1607.03896 Strongly Correlated Electrons +1607.05663 Theory +1607.06794 Computer Vision and Pattern Recognition +1607.06797 Computer Vision and Pattern Recognition +1607.06870 Classical Analysis and ODEs +1607.07825 Cosmology and Nongalactic Astrophysics +1607.08740 Algebraic Geometry +1608.00368 Cosmology and Nongalactic Astrophysics +1608.00594 Strongly Correlated Electrons +1608.01528 +1608.03288 Phenomenology +1608.03661 K-Theory and Homology +1608.03685 Functional Analysis +1608.04221 Differential Geometry +1608.04336 Software Engineering +1608.04374 Machine Learning +1608.04906 Data Structures and Algorithms +1608.06278 Instrumentation and Detectors +1608.06348 Probability +1608.07738 Computation and Language +1608.08074 Probability +1609.01245 Geometric Topology +1609.01716 Instrumentation and Methods for Astrophysics +1609.01721 Astrophysics of Galaxies +1609.02340 Classical Analysis and ODEs +1609.03156 +1609.03879 Phenomenology +1609.04107 Classical Analysis and ODEs +1609.04156 Methodology +1609.04957 Superconductivity +1609.04988 Numerical Analysis +1609.05164 Analysis of PDEs +1609.05550 +1609.06476 Quantum Gases +1609.07732 Representation Theory +1609.08298 +1609.08312 Information Theory +1609.09367 Disordered Systems and Neural Networks +1609.09370 Theory +1609.09711 Materials Science +1609.09773 Information Theory +1610.00283 Astrophysics of Galaxies +1610.00286 Differential Geometry +1610.00378 Artificial Intelligence +1610.00468 Sound +1610.00662 Information Theory +1610.00770 Number Theory +1610.01013 Mesoscale and Nanoscale Physics +1610.01030 Computation and Language +1610.01064 Systems and Control +1610.01067 Group Theory +1610.01080 Complex Variables +1610.01134 Algebraic Topology +1610.01146 Instrumentation and Detectors +1610.01147 Neurons and Cognition +1610.01150 Data Structures and Algorithms +1610.01151 +1610.01152 +1610.01153 Computers and Society +1610.01155 Astrophysics of Galaxies +1610.01157 High Energy Astrophysical Phenomena +1610.01163 Astrophysics of Galaxies +1610.01164 Astrophysics of Galaxies +1610.01168 Numerical Analysis +1610.01169 Astrophysics of Galaxies +1610.01170 Earth and Planetary Astrophysics +1610.01172 +1610.01174 Astrophysics of Galaxies +1610.01175 Data Structures and Algorithms +1610.01178 Learning +1610.01182 Networking and Internet Architecture +1610.01183 Experiment +1610.01184 Differential Geometry +1610.01189 Biomolecules +1610.01190 Atomic Physics +1610.01191 Other Computer Science +1610.01192 Biomolecules +1610.01193 Biomolecules +1610.01196 Biomolecules +1610.01197 Instrumentation and Methods for Astrophysics +1610.01200 Combinatorics +1610.01201 +1610.01202 +1610.01203 +1610.01204 Fluid Dynamics +1610.01207 +1610.01208 Analysis of PDEs +1610.01209 Computers and Society +1610.01210 +1610.01211 Differential Geometry +1610.01216 Analysis of PDEs +1610.01218 +1610.01219 Algebraic Topology +1610.01220 Rings and Algebras +1610.01221 Networking and Internet Architecture +1610.01223 Computer Vision and Pattern Recognition +1610.01224 Strongly Correlated Electrons +1610.01225 Analysis of PDEs +1610.01226 Numerical Analysis +1610.01227 Mathematical Finance +1610.01228 Number Theory +1610.01229 Rings and Algebras +1610.01230 Numerical Analysis +1610.01234 Machine Learning +1610.01235 +1610.01236 Strongly Correlated Electrons +1610.01243 Systems and Control +1610.01247 Computation and Language +1610.01248 +1610.01250 Analysis of PDEs +1610.01252 +1610.01253 Probability +1610.01256 Computers and Society +1610.01257 Classical Analysis and ODEs +1610.01259 Combinatorics +1610.01262 +1610.01264 Commutative Algebra +1610.01265 Computational Engineering, Finance, and Science +1610.01272 Cosmology and Nongalactic Astrophysics +1610.01274 Dynamical Systems +1610.01276 Combinatorics +1610.01277 Superconductivity +1610.01279 Medical Physics +1610.01282 Networking and Internet Architecture +1610.01285 Space Physics +1610.01287 Information Theory +1610.01288 +1610.01289 Analysis of PDEs +1610.01290 Statistics Theory +1610.01291 Computation and Language +1610.01292 Networking and Internet Architecture +1610.01294 Dynamical Systems +1610.01296 Analysis of PDEs +1610.01302 Probability +1610.01303 Robotics +1610.01304 Earth and Planetary Astrophysics +1610.01306 Solar and Stellar Astrophysics +1610.01307 Group Theory +1610.01308 Physics and Society +1610.01310 Representation Theory +1610.01311 Number Theory +1610.01312 Physics and Society +1610.01313 Materials Science +1610.01314 Computer Science and Game Theory +1610.01315 Cryptography and Security +1610.01317 Number Theory +1610.01318 Theory +1610.01319 Soft Condensed Matter +1610.01320 Representation Theory +1610.01323 Numerical Analysis +1610.01324 Numerical Analysis +1610.01325 Optimization and Control +1610.01326 Robotics +1610.01328 Algebraic Geometry +1610.01332 +1610.01334 Phenomenology +1610.01337 +1610.01338 Pricing of Securities +1610.01339 Networking and Internet Architecture +1610.01340 Atomic Physics +1610.01342 Phenomenology +1610.01344 Logic +1610.01345 Adaptation and Self-Organizing Systems +1610.01346 K-Theory and Homology +1610.01348 High Energy Astrophysical Phenomena +1610.01349 Optimization and Control +1610.01351 Instrumentation and Methods for Astrophysics +1610.01353 Methodology +1610.01357 Combinatorics +1610.01360 Spectral Theory +1610.01363 Instrumentation and Methods for Astrophysics +1610.01364 Instrumentation and Detectors +1610.01365 Complex Variables +1610.01366 Information Retrieval +1610.01367 Computation and Language +1610.01368 Representation Theory +1610.01369 Classical Analysis and ODEs +1610.01370 Pattern Formation and Solitons +1610.01372 +1610.01377 Representation Theory +1610.01380 Superconductivity +1610.01381 Artificial Intelligence +1610.01382 Sound +1610.01385 Plasma Physics +1610.01386 Analysis of PDEs +1610.01387 Mesoscale and Nanoscale Physics +1610.01388 Fluid Dynamics +1610.01390 Computer Vision and Pattern Recognition +1610.01391 Quantitative Methods +1610.01393 Combinatorics +1610.01395 Statistical Mechanics +1610.01396 Differential Geometry +1610.01397 Formal Languages and Automata Theory +1610.01398 Instrumentation and Methods for Astrophysics +1610.01400 Computer Vision and Pattern Recognition +1610.01403 Optimization and Control +1610.01404 Other Quantitative Biology +1610.01405 Information Theory +1610.01406 Mesoscale and Nanoscale Physics +1610.01407 Robotics +1610.01409 Algebraic Geometry +1610.01412 Logic in Computer Science +1610.01413 Materials Science +1610.01414 Materials Science +1610.01415 Physics and Society +1610.01416 +1610.01417 Machine Learning +1610.01419 High Energy Astrophysical Phenomena +1610.01423 Distributed, Parallel, and Cluster Computing +1610.01426 Information Theory +1610.01427 High Energy Astrophysical Phenomena +1610.01428 Analysis of PDEs +1610.01431 Atomic Physics +1610.01432 +1610.01433 Information Theory +1610.01436 Materials Science +1610.01437 Classical Analysis and ODEs +1610.01439 Neural and Evolutionary Computing +1610.01440 Geometric Topology +1610.01442 Commutative Algebra +1610.01444 Applications +1610.01446 Populations and Evolution +1610.01447 Strongly Correlated Electrons +1610.01451 Optimization and Control +1610.01453 +1610.01455 Systems and Control +1610.01456 Probability +1610.01457 Theory +1610.01458 Discrete Mathematics +1610.01461 Systems and Control +1610.01463 Astrophysics of Galaxies +1610.01470 Logic in Computer Science +1610.01474 Differential Geometry +1610.01475 Combinatorics +1610.01476 Artificial Intelligence +1610.01479 Discrete Mathematics +1610.01481 Robotics +1610.01482 Distributed, Parallel, and Cluster Computing +1610.01483 Classical Physics +1610.01485 Soft Condensed Matter +1610.01487 Number Theory +1610.01488 Algebraic Geometry +1610.01489 Optimization and Control +1610.01491 Complex Variables +1610.01492 Machine Learning +1610.01493 Populations and Evolution +1610.01494 Algebraic Geometry +1610.01495 Robotics +1610.01496 Robotics +1610.01499 Dynamical Systems +1610.01500 Metric Geometry +1610.01501 Theory +1610.01504 Theory +1610.01505 Theory +1610.01506 Functional Analysis +1610.01507 Molecular Networks +1610.01508 Computation and Language +1610.01513 Optics +1610.01515 General Mathematics +1610.01516 Other Computer Science +1610.01517 Fluid Dynamics +1610.01518 Cryptography and Security +1610.01520 Computation and Language +1610.01521 Combinatorics +1610.01522 Solar and Stellar Astrophysics +1610.01524 Probability +1610.01525 Artificial Intelligence +1610.01527 Differential Geometry +1610.01528 Numerical Analysis +1610.01532 Algebraic Geometry +1610.01535 Functional Analysis +1610.01536 Instrumentation and Methods for Astrophysics +1610.01538 Social and Information Networks +1610.01541 Analysis of PDEs +1610.01543 Cosmology and Nongalactic Astrophysics +1610.01544 Combinatorics +1610.01546 Computation and Language +1610.01550 Materials Science +1610.01551 Optics +1610.01553 Optimization and Control +1610.01554 +1610.01555 Numerical Analysis +1610.01557 Classical Analysis and ODEs +1610.01559 Materials Science +1610.01560 Combinatorics +1610.01561 Social and Information Networks +1610.01562 Probability +1610.01563 Computer Vision and Pattern Recognition +1610.01565 General Mathematics +1610.01566 Theory +1610.01567 Classical Analysis and ODEs +1610.01568 Combinatorics +1610.01571 Theory +1610.01574 Logic +1610.01575 +1610.01576 Lattice +1610.01577 Strongly Correlated Electrons +1610.01578 Computer Vision and Pattern Recognition +1610.01579 Optics +1610.01582 Statistical Mechanics +1610.01583 Number Theory +1610.01588 Computation and Language +1610.01589 Fluid Dynamics +cond-mat/0303098 Statistical Mechanics +cond-mat/0303100 Statistical Mechanics +cond-mat/0410511 Statistical Mechanics +cond-mat/0503525 Statistical Mechanics +0901.3381 General Physics +0906.3525 General Physics +1001.2865 General Physics +1007.4497 Earth and Planetary Astrophysics +1103.0223 Dynamical Systems +1105.5612 Dynamical Systems +1206.2288 Chaotic Dynamics +1212.2001 +1301.3531 Probability +1307.0254 History and Philosophy of Physics +1307.5861 Theory +1308.0564 Algebraic Geometry +1310.0831 Number Theory +1311.1911 Machine Learning +1312.1672 Computational Complexity +1401.7718 Number Theory +1402.1673 Numerical Analysis +1403.4653 Combinatorics +1403.6295 Methodology +1403.6606 Methodology +1404.1141 Mesoscale and Nanoscale Physics +1404.5126 Statistics Theory +1405.0808 Methodology +1405.7605 Dynamical Systems +1406.1513 Theory +1406.2112 Statistics Theory +1406.2736 Phenomenology +1406.6519 Statistics Theory +1407.1649 +1407.4761 Strongly Correlated Electrons +1407.6738 +1408.1239 Statistics Theory +1408.1703 Combinatorics +1408.5951 Computer Science and Game Theory +1409.6233 Probability +1410.0995 Dynamical Systems +1410.5170 Statistics Theory +1410.7824 Fluid Dynamics +1411.4636 Theory +1412.2915 Analysis of PDEs +1412.7408 Combinatorics +1501.04210 Algebraic Geometry +1501.05475 Discrete Mathematics +1502.05222 Data Structures and Algorithms +1503.03443 Logic +1503.05114 Representation Theory +1503.05523 Category Theory +1503.08516 Number Theory +1504.04100 Statistics Theory +1504.05402 Algebraic Geometry +1504.06134 Mesoscale and Nanoscale Physics +1505.01530 Number Theory +1505.04132 +1505.05058 +1505.05542 +1505.06171 Strongly Correlated Electrons +1506.02024 Information Theory +1506.02333 Theory +1506.06966 Probability +1506.07146 Phenomenology +1507.05211 Populations and Evolution +1508.06451 Computation and Language +1508.07486 Complex Variables +1508.07879 Classical Analysis and ODEs +1509.01632 Earth and Planetary Astrophysics +1509.02402 K-Theory and Homology +1509.05094 Theory +1509.06562 Discrete Mathematics +1510.00356 Logic +1510.00733 Complex Variables +1510.03185 +1510.03519 Computation and Language +1510.04096 +1511.00333 Astrophysics of Galaxies +1511.00353 Information Theory +1511.02089 Optimization and Control +1511.02830 Statistical Mechanics +1511.02843 Cosmology and Nongalactic Astrophysics +1511.02869 Instrumentation and Methods for Astrophysics +1511.03554 Probability +1511.05208 Numerical Analysis +1511.05212 Learning +1511.05526 Robotics +1511.07676 Theory +1511.08438 Astrophysics of Galaxies +1511.08662 Theory +1511.08828 Probability +1511.09288 +1512.00544 Cell Behavior +1512.01230 Physics and Society +1512.05649 +1512.06723 Atomic Physics +1601.00190 Analysis of PDEs +1601.00868 +1601.01166 Information Theory +1601.02106 Quantum Gases +1601.03411 Artificial Intelligence +1601.05445 Operator Algebras +1601.06429 Instrumentation and Methods for Astrophysics +1601.07361 +1602.00598 Statistical Mechanics +1602.02286 +1602.02616 Computation +1602.02652 Soft Condensed Matter +1602.03253 Machine Learning +1602.03946 Soft Condensed Matter +1602.04658 Chaotic Dynamics +1602.05296 Soft Condensed Matter +1602.05499 +1602.06604 Systems and Control +1602.06915 Discrete Mathematics +1602.08134 Combinatorics +1602.08222 +1603.00610 Astrophysics of Galaxies +1603.01143 Biological Physics +1603.01332 Theory +1603.02468 Number Theory +1603.02969 Superconductivity +1603.03444 Strongly Correlated Electrons +1603.03507 Optics +1603.06011 +1603.06278 Mesoscale and Nanoscale Physics +1603.06634 Populations and Evolution +1603.07252 Computation and Language +1603.07336 Chemical Physics +1603.08613 +1604.00311 Algebraic Geometry +1604.00353 Numerical Analysis +1604.02525 Experiment +1604.03700 Mesoscale and Nanoscale Physics +1604.03722 Mesoscale and Nanoscale Physics +1604.04049 Strongly Correlated Electrons +1604.05036 Experiment +1604.06826 Networking and Internet Architecture +1604.06944 Mesoscale and Nanoscale Physics +1604.07569 Materials Science +1604.07605 Mesoscale and Nanoscale Physics +1604.07759 Learning +1604.08586 +1605.00074 Solar and Stellar Astrophysics +1605.00567 Fluid Dynamics +1605.01487 Chemical Physics +1605.02522 +1605.04290 Theory +1605.05399 High Energy Astrophysical Phenomena +1605.08793 Materials Science +1605.09697 Populations and Evolution +1606.00201 +1606.00550 Fluid Dynamics +1606.01358 Neurons and Cognition +1606.01684 Neurons and Cognition +1606.02920 Plasma Physics +1606.03079 Geophysics +1606.05009 Category Theory +1606.05258 Solar and Stellar Astrophysics +1606.05448 Instrumentation and Detectors +1606.05467 Computation and Language +1606.05475 Representation Theory +1606.05952 Earth and Planetary Astrophysics +1606.06678 Phenomenology +1606.08685 Phenomenology +1606.09309 Combinatorics +1606.09312 Combinatorics +1606.09450 Solar and Stellar Astrophysics +1606.09483 Solar and Stellar Astrophysics +1607.00019 Cosmology and Nongalactic Astrophysics +1607.00020 Quantum Algebra +1607.00021 Computation +1607.00022 Physics and Society +1607.00023 Accelerator Physics +1607.00028 Accelerator Physics +1607.00029 Probability +1607.00031 General Topology +1607.00033 Combinatorics +1607.00034 Machine Learning +1607.00035 Mathematical Finance +1607.00038 Differential Geometry +1607.00040 Functional Analysis +1607.00041 +1607.00042 +1607.00045 Accelerator Physics +1607.00046 Applications +1607.00047 Combinatorics +1607.00051 Robotics +1607.00053 Combinatorics +1607.00056 Analysis of PDEs +1607.00061 Artificial Intelligence +1607.00062 Algebraic Geometry +1607.00064 Hardware Architecture +1607.00065 Phenomenology +1607.00066 Differential Geometry +1607.00067 Learning +1607.00070 Computation and Language +1607.00072 Physics and Society +1607.00073 Classical Physics +1607.00083 Numerical Analysis +1607.00084 Machine Learning +1607.00085 Instrumentation and Methods for Astrophysics +1607.00086 Combinatorics +1607.00090 +1607.00091 Applications +1607.00096 Networking and Internet Architecture +1607.00098 Methodology +1607.00101 Optimization and Control +1607.00103 General Topology +1607.00104 Populations and Evolution +1607.00105 Classical Analysis and ODEs +1607.00106 Discrete Mathematics +1607.00107 Optics +1607.00110 Learning +1607.00113 Functional Analysis +1607.00114 +1607.00116 Mesoscale and Nanoscale Physics +1607.00120 Biological Physics +1607.00121 Physics and Society +1607.00122 Learning +1607.00126 +1607.00128 Molecular Networks +1607.00131 Combinatorics +1607.00132 Metric Geometry +1607.00136 Artificial Intelligence +1607.00137 Computer Vision and Pattern Recognition +1607.00138 Data Structures and Algorithms +1607.00141 Logic in Computer Science +1607.00144 Algebraic Topology +1607.00146 Learning +1607.00147 Instrumentation and Methods for Astrophysics +1607.00150 Systems and Control +1607.00151 Analysis of PDEs +1607.00153 Number Theory +1607.00156 +1607.00158 Mesoscale and Nanoscale Physics +1607.00159 Phenomenology +1607.00160 Materials Science +1607.00163 Optimization and Control +1607.00166 Numerical Analysis +1607.00167 Social and Information Networks +1607.00169 Mesoscale and Nanoscale Physics +1607.00170 Analysis of PDEs +1607.00171 Optimization and Control +1607.00172 Theory +1607.00174 Distributed, Parallel, and Cluster Computing +1607.00176 Algebraic Topology +1607.00177 Analysis of PDEs +1607.00178 Distributed, Parallel, and Cluster Computing +1607.00179 Metric Geometry +1607.00181 Representation Theory +1607.00183 +1607.00185 Information Theory +1607.00186 Computation and Language +1607.00188 Theory +1607.00191 Theory +1607.00192 Differential Geometry +1607.00195 Fluid Dynamics +1607.00196 Algebraic Topology +1607.00198 Computation and Language +1607.00199 +1607.00202 Experiment +1607.00205 Logic +1607.00207 Atomic Physics +1607.00208 Computational Geometry +1607.00209 Biological Physics +1607.00211 Sound +1607.00223 Information Retrieval +1607.00224 Optics +1607.00225 Computation and Language +1607.00229 Mesoscale and Nanoscale Physics +1607.00234 Artificial Intelligence +1607.00238 Phenomenology +1607.00240 Mesoscale and Nanoscale Physics +1607.00248 Combinatorics +1607.00253 Computational Physics +1607.00256 Soft Condensed Matter +1607.00262 Classical Analysis and ODEs +1607.00264 Algebraic Geometry +1607.00266 Information Theory +1607.00268 Analysis of PDEs +1607.00273 Robotics +1607.00274 Statistics Theory +1607.00275 Phenomenology +1607.00276 Genomics +1607.00279 Machine Learning +1607.00281 Astrophysics of Galaxies +1607.00286 Statistics Theory +1607.00292 Statistics Theory +1607.00295 Accelerator Physics +1607.00296 Atomic Physics +1607.00297 General Topology +1607.00298 Distributed, Parallel, and Cluster Computing +1607.00300 Quantum Algebra +1607.00301 Numerical Analysis +1607.00302 +1607.00303 Accelerator Physics +1607.00304 Earth and Planetary Astrophysics +1607.00305 Representation Theory +1607.00308 Accelerator Physics +1607.00311 Phenomenology +1607.00312 Instrumentation and Methods for Astrophysics +1607.00314 Quantum Algebra +1607.00315 Numerical Analysis +1607.00317 Materials Science +1607.00322 Earth and Planetary Astrophysics +1607.00326 Soft Condensed Matter +1607.00328 Rings and Algebras +1607.00329 Information Theory +1607.00336 Rings and Algebras +1607.00339 Dynamical Systems +1607.00347 Combinatorics +1607.00348 Phenomenology +1607.00349 Exactly Solvable and Integrable Systems +1607.00351 Numerical Analysis +1607.00353 +1607.00354 Robotics +1607.00355 Information Theory +1607.00356 Information Theory +1607.00358 Accelerator Physics +1607.00359 Computation and Language +1607.00360 Learning +1607.00361 Accelerator Physics +1607.00362 +1607.00365 Theory +1607.00366 Optimization and Control +1607.00370 Representation Theory +astro-ph/0510147 +physics/0603219 History and Philosophy of Physics +physics/0701132 General Physics +1607.03988 Dynamical Systems +1608.08207 High Energy Astrophysical Phenomena +1608.08231 Physics and Society +1608.08233 +1608.08250 Mesoscale and Nanoscale Physics +1608.08267 Neural and Evolutionary Computing +1608.08337 Optimization and Control +1608.08371 Analysis of PDEs +1608.08389 Medical Physics +1608.08403 Statistical Mechanics +1608.08412 Networking and Internet Architecture +1608.08457 Complex Variables +1608.08490 Portfolio Management +1608.08492 Human-Computer Interaction +1608.08523 Experiment +1608.08574 Learning +1608.08602 Astrophysics of Galaxies +1608.08606 Astrophysics of Galaxies +1608.08617 Earth and Planetary Astrophysics +1608.08690 Number Theory +1608.08813 History and Overview +1608.08854 Algebraic Geometry +1608.08859 Computer Science and Game Theory +1608.08945 History and Philosophy of Physics +1609.00112 Atomic Physics +0803.2674 Theory +0804.4032 Data Analysis, Statistics and Probability +0810.3972 +0901.3476 Probability +1006.5069 Quantitative Methods +1104.0241 Algebraic Geometry +1110.0172 Superconductivity +1110.5382 Experiment +1202.2280 +1205.6139 Phenomenology +1211.5327 Algebraic Geometry +1302.5672 Geometric Topology +1303.2045 +1303.3442 Strongly Correlated Electrons +1304.7719 Algebraic Geometry +1307.2689 Group Theory +1307.6351 Phenomenology +1308.5260 High Energy Astrophysical Phenomena +1309.7620 Number Theory +1310.5686 Phenomenology +1312.1918 Information Theory +1401.5223 Phenomenology +1403.0913 +1403.7547 Numerical Analysis +1405.3237 Group Theory +1406.3075 Quantitative Methods +1406.5233 Analysis of PDEs +1406.6692 Cosmology and Nongalactic Astrophysics +1407.2417 Information Theory +1408.5056 +1409.7199 Theory +1409.7778 Algebraic Geometry +1410.0523 Cosmology and Nongalactic Astrophysics +1410.1694 +1410.2467 Theory +1410.3885 Statistical Mechanics +1410.5343 Information Theory +1411.1276 Cosmology and Nongalactic Astrophysics +1411.5735 Information Theory +1411.6846 Logic +1412.0267 Applications +1412.1326 Differential Geometry +1412.1619 Learning +1412.5240 Information Theory +1412.7170 Theory +1501.01306 Cosmology and Nongalactic Astrophysics +1501.01517 Differential Geometry +1501.02577 Astrophysics of Galaxies +1501.02688 Geometric Topology +1501.03303 Geometric Topology +1501.07388 Computer Science and Game Theory +1502.02815 Fluid Dynamics +1502.03204 Information Theory +1502.04582 Cosmology and Nongalactic Astrophysics +1502.05623 Symbolic Computation +1502.07529 Group Theory +1503.03112 Statistical Mechanics +1503.03549 Geometric Topology +1503.03676 +1503.08856 Algebraic Topology +1503.09090 Theory +1504.03368 Geometric Topology +1504.04412 Cosmology and Nongalactic Astrophysics +1504.04979 +1504.05101 Analysis of PDEs +1504.05884 Populations and Evolution +1504.06820 Functional Analysis +1504.07107 Machine Learning +1505.00215 Theory +1505.01768 Fluid Dynamics +1505.01870 Astrophysics of Galaxies +1505.03502 Strongly Correlated Electrons +1505.03666 Materials Science +1505.04641 Theory +1505.05460 Algebraic Geometry +1505.06438 Materials Science +1505.06764 Differential Geometry +1505.06789 Differential Geometry +1505.07786 Group Theory +1505.08110 Group Theory +1506.00490 Information Theory +1506.01035 Astrophysics of Galaxies +1506.03081 +1506.03437 Optimization and Control +1506.04444 Information Theory +1506.04651 Numerical Analysis +1506.04789 Geometric Topology +1506.05620 Data Structures and Algorithms +1506.05922 Mesoscale and Nanoscale Physics +1506.06973 Differential Geometry +1506.08871 Phenomenology +1506.09072 Earth and Planetary Astrophysics +1507.00602 Number Theory +1507.01376 Statistical Mechanics +1507.01862 +1507.02444 Information Theory +1507.04805 Statistical Mechanics +1507.05817 Theory +1507.06663 +1507.07377 +1507.08196 Differential Geometry +1507.08991 High Energy Astrophysical Phenomena +1508.00875 Dynamical Systems +1508.02357 +1508.02635 Analysis of PDEs +1508.05818 Optics +1508.06796 Probability +1509.00795 Quantum Gases +1509.01242 Phenomenology +1509.03520 Analysis of PDEs +1509.05420 Instrumentation and Methods for Astrophysics +1509.07084 Functional Analysis +1509.08576 Numerical Analysis +1510.00998 Algebraic Geometry +1510.01792 Optics +1510.02096 Mesoscale and Nanoscale Physics +1510.02337 +1510.02440 Dynamical Systems +1510.02687 Fluid Dynamics +1510.04005 Disordered Systems and Neural Networks +1510.05636 Combinatorics +1510.05712 Materials Science +1510.09064 Lattice +1511.00113 Probability +1511.00237 Methodology +1511.00965 Materials Science +1511.02584 Fluid Dynamics +1511.03038 +1511.03644 +1511.04766 Optics +1511.05558 Astrophysics of Galaxies +1511.06789 Computer Vision and Pattern Recognition +1511.07517 +1511.08056 Combinatorics +1511.08480 Astrophysics of Galaxies +1512.00589 +1512.00798 Mesoscale and Nanoscale Physics +1512.01015 Phenomenology +1512.01760 +1512.01855 Phenomenology +1512.02079 Commutative Algebra +1512.02239 Astrophysics of Galaxies +1512.02282 Solar and Stellar Astrophysics +1512.02521 Theory +1512.02997 Algebraic Geometry +1512.03110 Mesoscale and Nanoscale Physics +1512.04774 Solar and Stellar Astrophysics +1512.05091 Astrophysics of Galaxies +1512.05216 Solar and Stellar Astrophysics +1512.05506 Astrophysics of Galaxies +1512.06627 Strongly Correlated Electrons +1512.06661 Theory +1512.07089 Spectral Theory +1512.07448 Quantum Gases +1512.08238 Solar and Stellar Astrophysics +1512.08509 Probability +1512.09129 Phenomenology +1601.00876 Geometric Topology +1601.00993 +1601.01313 Astrophysics of Galaxies +1601.01412 Solar and Stellar Astrophysics +1601.01617 Soft Condensed Matter +1601.02498 Astrophysics of Galaxies +1601.02673 Astrophysics of Galaxies +1601.02802 Solar and Stellar Astrophysics +1601.03099 Astrophysics of Galaxies +1601.03222 Theory +1601.03660 Information Theory +1601.04055 Probability +1601.04139 Logic +1601.04655 Astrophysics of Galaxies +1601.07040 Cosmology and Nongalactic Astrophysics +1601.07506 Mesoscale and Nanoscale Physics +1601.07608 Earth and Planetary Astrophysics +1601.07729 Instrumentation and Methods for Astrophysics +1601.08184 Solar and Stellar Astrophysics +1601.08241 Dynamical Systems +1602.00395 Dynamical Systems +1602.00440 +1602.00799 Mesoscale and Nanoscale Physics +1602.01115 Instrumentation and Methods for Astrophysics +1602.01596 Algebraic Geometry +1602.01828 Algebraic Topology +1602.02008 Algebraic Geometry +1602.02223 +1602.04942 Astrophysics of Galaxies +1602.05322 Phenomenology +1602.05538 Soft Condensed Matter +1602.06118 Mesoscale and Nanoscale Physics +1602.06416 Statistical Mechanics +1602.06436 +1602.06644 +1602.06956 Astrophysics of Galaxies +1602.06995 Combinatorics +1602.07861 +1602.08752 +1602.08759 +1602.08787 Computation +1603.00639 +1603.01031 Strongly Correlated Electrons +1603.01111 Mesoscale and Nanoscale Physics +1603.02553 +1603.02662 Quantum Gases +1603.04215 Materials Science +1603.04439 Phenomenology +1603.04455 Plasma Physics +1603.05156 Mesoscale and Nanoscale Physics +1603.05182 +1603.05190 Instrumentation and Methods for Astrophysics +1603.05192 Strongly Correlated Electrons +1603.05325 Mesoscale and Nanoscale Physics +1603.05405 Astrophysics of Galaxies +1603.06501 Phenomenology +1603.06608 +1603.06626 Quantum Gases +1603.07003 Group Theory +1603.07421 Systems and Control +1603.07504 Social and Information Networks +1603.08053 Atomic Physics +1603.08259 Theory +1603.08822 Superconductivity +1603.09689 Materials Science +1603.09694 Logic +1604.00063 Statistical Mechanics +1604.00156 Theory +1604.00671 Classical Analysis and ODEs +1604.01490 +1604.01566 Information Theory +1604.01668 +1604.02143 +1604.02942 Cosmology and Nongalactic Astrophysics +1604.03028 Superconductivity +1604.03111 Mesoscale and Nanoscale Physics +1604.03345 Probability +1604.03414 Physics and Society +1604.03507 High Energy Astrophysical Phenomena +1604.03816 +1604.04307 Analysis of PDEs +1604.04623 Mesoscale and Nanoscale Physics +1604.04629 Astrophysics of Galaxies +1604.04911 Phenomenology +1604.06026 Statistical Mechanics +1604.06041 Earth and Planetary Astrophysics +1604.06417 Strongly Correlated Electrons +1604.06603 Chaotic Dynamics +1604.07073 Solar and Stellar Astrophysics +1604.07708 Phenomenology +1604.07762 Fluid Dynamics +1604.07771 Astrophysics of Galaxies +1604.07868 Mesoscale and Nanoscale Physics +1604.08305 Combinatorics +1604.08308 +1604.08843 Statistical Mechanics +1605.00116 Experiment +1605.00201 Optimization and Control +1605.00276 High Energy Astrophysical Phenomena +1605.00430 Mesoscale and Nanoscale Physics +1605.00932 Instrumentation and Methods for Astrophysics +1605.01106 Data Structures and Algorithms +1605.02075 Astrophysics of Galaxies +1605.02759 Plasma Physics +1605.03186 High Energy Astrophysical Phenomena +1605.03433 Statistics Theory +1605.03671 Soft Condensed Matter +1605.04586 Earth and Planetary Astrophysics +1605.04599 +1605.04701 +1605.04825 Biomolecules +1605.04919 Astrophysics of Galaxies +1605.05574 Quantum Gases +1605.06261 Atomic Physics +1605.06680 Mesoscale and Nanoscale Physics +1605.07072 Methodology +1605.07157 Learning +1605.07217 Chaotic Dynamics +1605.07280 Quantum Gases +1605.07665 Phenomenology +1605.08177 +1605.08338 Cosmology and Nongalactic Astrophysics +1605.08417 Strongly Correlated Electrons +1605.08676 Quantum Gases +1605.08956 Strongly Correlated Electrons +1605.09730 Solar and Stellar Astrophysics +1606.00036 Physics and Society +1606.00052 Solar and Stellar Astrophysics +1606.00055 Solar and Stellar Astrophysics +1606.00057 Solar and Stellar Astrophysics +1606.00138 Combinatorics +1606.00150 +1606.00192 Cosmology and Nongalactic Astrophysics +1606.00200 Databases +1606.00404 Solar and Stellar Astrophysics +1606.00588 Mesoscale and Nanoscale Physics +1606.00736 Optics +1606.01021 Computer Vision and Pattern Recognition +1606.01252 Superconductivity +1606.01879 Classical Physics +1606.03047 Quantum Gases +1606.03219 Phenomenology +1606.03416 Computational Physics +1606.03453 Phenomenology +1606.03821 Computation and Language +1606.03827 +1606.03889 Strongly Correlated Electrons +1606.04234 +1606.05054 Strongly Correlated Electrons +1606.05485 Mesoscale and Nanoscale Physics +1606.05627 +1606.05928 Optics +1606.06042 Phenomenology +1606.06174 Phenomenology +1606.06495 Fluid Dynamics +1606.06739 Astrophysics of Galaxies +1606.06788 Optics +1606.06795 High Energy Astrophysical Phenomena +1606.06863 Solar and Stellar Astrophysics +1606.06922 Strongly Correlated Electrons +1606.06937 Materials Science +1606.07071 Solar and Stellar Astrophysics +1606.07117 Solar and Stellar Astrophysics +1606.07446 Astrophysics of Galaxies +1606.07766 Materials Science +1606.08039 Commutative Algebra +1606.08218 Biological Physics +1606.08503 Strongly Correlated Electrons +1606.08559 Materials Science +1606.08630 Phenomenology +1606.08712 Atomic Physics +1606.08749 Optimization and Control +1606.08847 Astrophysics of Galaxies +1606.09023 Statistical Mechanics +1606.09070 Optimization and Control +1606.09558 Astrophysics of Galaxies +1607.00007 Earth and Planetary Astrophysics +1607.00015 Astrophysics of Galaxies +1607.00127 Numerical Analysis +1607.00194 Soft Condensed Matter +1607.00320 High Energy Astrophysical Phenomena +1607.00374 Phenomenology +1607.00528 Superconductivity +1607.00953 Superconductivity +1607.01017 Astrophysics of Galaxies +1607.01037 +1607.01387 +1607.01435 Molecular Networks +1607.01512 Phenomenology +1607.01685 K-Theory and Homology +1607.01943 High Energy Astrophysical Phenomena +1607.02104 Computer Vision and Pattern Recognition +1607.02268 Cosmology and Nongalactic Astrophysics +1607.02322 Earth and Planetary Astrophysics +1607.02339 Earth and Planetary Astrophysics +1607.02496 Phenomenology +1607.02511 Astrophysics of Galaxies +1607.02599 Quantum Gases +1607.02625 High Energy Astrophysical Phenomena +1607.02884 Astrophysics of Galaxies +1607.02924 Materials Science +1607.03101 Superconductivity +1607.03116 High Energy Astrophysical Phenomena +1607.03285 Statistical Mechanics +1607.03415 High Energy Astrophysical Phenomena +1607.03416 High Energy Astrophysical Phenomena +1607.03539 Superconductivity +1607.03835 Phenomenology +1607.03909 Astrophysics of Galaxies +1607.04062 Earth and Planetary Astrophysics +1607.04103 +1607.04301 Quantum Gases +1607.04382 Statistical Mechanics +1607.04388 Statistical Mechanics +1607.04633 High Energy Astrophysical Phenomena +1607.04670 Astrophysics of Galaxies +1607.04674 Cosmology and Nongalactic Astrophysics +1607.04997 Astrophysics of Galaxies +1607.05010 Complex Variables +1607.05072 Solar and Stellar Astrophysics +1607.05533 Solar and Stellar Astrophysics +1607.05683 Solar and Stellar Astrophysics +1607.05734 Earth and Planetary Astrophysics +1607.05779 Astrophysics of Galaxies +1607.05954 Instrumentation and Methods for Astrophysics +1607.06102 Solar and Stellar Astrophysics +1607.06197 Phenomenology +1607.06394 High Energy Astrophysical Phenomena +1607.06596 Materials Science +1607.06840 Astrophysics of Galaxies +1607.06939 Quantum Gases +1607.07168 Optics +1607.07347 Theory +1607.07357 +1607.07371 +1607.07381 Strongly Correlated Electrons +1607.07458 Solar and Stellar Astrophysics +1607.07534 Astrophysics of Galaxies +1607.07658 Combinatorics +1607.07875 High Energy Astrophysical Phenomena +1607.07900 Theory +1607.07985 High Energy Astrophysical Phenomena +1607.07991 Solar and Stellar Astrophysics +1607.08069 Astrophysics of Galaxies +1607.08070 Functional Analysis +1607.08103 +1607.08147 Earth and Planetary Astrophysics +1607.08238 Strongly Correlated Electrons +1607.08239 Earth and Planetary Astrophysics +1607.08284 Solar and Stellar Astrophysics +1607.08334 High Energy Astrophysical Phenomena +1607.08385 Statistical Mechanics +1607.08405 Solar and Stellar Astrophysics +1607.08446 Mesoscale and Nanoscale Physics +1607.08457 Strongly Correlated Electrons +1607.08607 +1607.08654 Discrete Mathematics +1607.08776 Astrophysics of Galaxies +1608.00093 Solar and Stellar Astrophysics +1608.00225 Chemical Physics +1608.00484 Differential Geometry +1608.00495 Functional Analysis +1608.00517 Phenomenology +1608.00547 Cosmology and Nongalactic Astrophysics +1608.00556 Solar and Stellar Astrophysics +1608.00690 Astrophysics of Galaxies +1608.00838 Solar and Stellar Astrophysics +1608.00882 Phenomenology +1608.00974 Astrophysics of Galaxies +1608.00998 +1608.01000 Solar and Stellar Astrophysics +1608.01134 High Energy Astrophysical Phenomena +1608.01360 Earth and Planetary Astrophysics +1608.01444 Phenomenology +1608.01569 High Energy Astrophysical Phenomena +1608.01698 Astrophysics of Galaxies +1608.01772 Astrophysics of Galaxies +1608.01806 +1608.01892 Mesoscale and Nanoscale Physics +1608.02155 Dynamical Systems +1608.02384 Solar and Stellar Astrophysics +1608.02685 Earth and Planetary Astrophysics +1608.02987 Probability +1608.03020 +1608.03269 Logic +1608.03516 Theory +1608.03597 Earth and Planetary Astrophysics +1608.03665 Neural and Evolutionary Computing +1608.03958 High Energy Astrophysical Phenomena +1608.04065 Phenomenology +1608.04232 Solar and Stellar Astrophysics +1608.04288 Materials Science +1608.04499 Solar and Stellar Astrophysics +1608.04668 Astrophysics of Galaxies +1608.04739 +1608.04740 Strongly Correlated Electrons +1608.05077 Theory +1608.05526 Astrophysics of Galaxies +1608.06296 Chemical Physics +1608.06636 Statistical Mechanics +1608.06679 +1608.06987 Solar and Stellar Astrophysics +1608.07157 Solar and Stellar Astrophysics +1608.07261 Programming Languages +1608.07579 Astrophysics of Galaxies +1608.07621 Probability +1608.07722 Other Condensed Matter +1608.08297 Astrophysics of Galaxies +1608.08327 Strongly Correlated Electrons +1608.08446 Astrophysics of Galaxies +1608.08916 Instrumentation and Detectors +1608.08959 Earth and Planetary Astrophysics +1608.09003 Atomic Physics +1609.00219 Solar and Stellar Astrophysics +1609.00328 Cosmology and Nongalactic Astrophysics +1609.00438 Strongly Correlated Electrons +1609.00499 Astrophysics of Galaxies +1609.00596 Solar and Stellar Astrophysics +1609.00613 Phenomenology +1609.01150 +1609.01420 Solar and Stellar Astrophysics +1609.01879 Mesoscale and Nanoscale Physics +1609.02179 Optimization and Control +1609.02212 Numerical Analysis +1609.02515 Number Theory +1609.02761 Materials Science +1609.02806 Atomic Physics +1609.02979 Solar and Stellar Astrophysics +1609.03189 +1609.04246 General Physics +1609.04254 Logic +1609.04270 Combinatorics +1609.04326 Solar and Stellar Astrophysics +1609.04590 Phenomenology +1609.05031 Fluid Dynamics +1609.05139 Analysis of PDEs +1609.05153 Solar and Stellar Astrophysics +1609.05229 Mesoscale and Nanoscale Physics +1609.05273 Digital Libraries +1609.05604 Instrumentation and Methods for Astrophysics +1609.05633 Solar and Stellar Astrophysics +1609.05649 Information Theory +1609.05903 Astrophysics of Galaxies +1609.06334 Statistical Mechanics +1609.06514 Fluid Dynamics +1609.06655 Analysis of PDEs +1609.06973 Atomic Physics +1609.07047 Atomic Physics +1609.07141 Astrophysics of Galaxies +1609.07153 Theory +1609.07422 Phenomenology +1609.07620 Astrophysics of Galaxies +1609.07761 Solar and Stellar Astrophysics +1609.08347 Statistics Theory +1609.08410 +1609.08555 Mesoscale and Nanoscale Physics +1609.08864 Computer Vision and Pattern Recognition +1609.08986 Strongly Correlated Electrons +1609.09243 +1609.09393 Accelerator Physics +1609.09467 Quantum Gases +1609.09716 Solar and Stellar Astrophysics +1609.09782 Materials Science +1610.00557 Astrophysics of Galaxies +1610.00978 General Physics +1610.01672 Number Theory +1610.02530 +1610.02562 Classical Analysis and ODEs +1610.02679 +1610.02855 Cosmology and Nongalactic Astrophysics +1610.02906 Social and Information Networks +1610.03031 Solar and Stellar Astrophysics +1610.03071 High Energy Astrophysical Phenomena +1610.03108 Distributed, Parallel, and Cluster Computing +1610.03552 Number Theory +1610.03608 Methodology +1610.03624 Theory +1610.03626 Solar and Stellar Astrophysics +1610.03708 Computer Vision and Pattern Recognition +1610.03755 Mesoscale and Nanoscale Physics +1610.03781 +1610.03835 Physics and Society +1610.03856 Astrophysics of Galaxies +1610.03897 Distributed, Parallel, and Cluster Computing +1610.03964 Fluid Dynamics +1610.04219 General Physics +1610.04238 +1610.04323 Probability +1610.04406 Physics and Society +1610.04509 Numerical Analysis +1610.04561 High Energy Astrophysical Phenomena +1610.04566 High Energy Astrophysical Phenomena +1610.04605 Statistical Mechanics +1610.04644 Information Theory +1610.04647 Probability +1610.04662 Computer Vision and Pattern Recognition +1610.04760 Statistical Finance +1610.04789 Databases +1610.04828 +1610.04832 Phenomenology +1610.04919 Networking and Internet Architecture +1610.04967 Human-Computer Interaction +1610.04995 Algebraic Geometry +1610.04997 Computer Vision and Pattern Recognition +1610.05056 Physics and Society +1610.05082 Probability +1610.05083 Learning +1610.05189 Biomolecules +1610.05217 High Energy Astrophysical Phenomena +1610.05218 +1610.05270 Logic in Computer Science +1610.05274 Number Theory +1610.05300 Superconductivity +1610.05304 Astrophysics of Galaxies +1610.05306 High Energy Astrophysical Phenomena +1610.05308 Theory +1610.05309 High Energy Astrophysical Phenomena +1610.05313 Astrophysics of Galaxies +1610.05317 Theory +1610.05320 Theory +1610.05323 High Energy Astrophysical Phenomena +1610.05325 Optimization and Control +1610.05329 Quantum Gases +1610.05334 Optics +1610.05338 Commutative Algebra +1610.05340 Number Theory +1610.05341 +1610.05343 Geometric Topology +1610.05345 Algebraic Geometry +1610.05347 Social and Information Networks +1610.05348 Molecular Networks +1610.05349 Combinatorics +1610.05350 Discrete Mathematics +1610.05351 Numerical Analysis +1610.05352 Optics +1610.05353 Rings and Algebras +1610.05354 Combinatorics +1610.05355 Numerical Analysis +1610.05356 Fluid Dynamics +1610.05357 +1610.05358 Social and Information Networks +1610.05360 Probability +1610.05361 Computation and Language +1610.05363 Optics +1610.05365 Group Theory +1610.05367 Probability +1610.05368 Optics +1610.05371 Theory +1610.05372 Analysis of PDEs +1610.05376 Robotics +1610.05377 Human-Computer Interaction +1610.05379 Theory +1610.05381 Algebraic Geometry +1610.05383 Trading and Market Microstructure +1610.05384 +1610.05386 +1610.05389 +1610.05390 Plasma Physics +1610.05391 Spectral Theory +1610.05394 Learning +1610.05397 Logic +1610.05398 Quantum Gases +1610.05401 Numerical Analysis +1610.05402 Artificial Intelligence +1610.05403 Earth and Planetary Astrophysics +1610.05404 Probability +1610.05405 Logic +1610.05406 Combinatorics +1610.05408 Probability +1610.05409 Optimization and Control +1610.05412 Optimization and Control +1610.05414 Differential Geometry +1610.05416 Optimization and Control +1610.05417 Numerical Analysis +1610.05418 Phenomenology +1610.05420 Biological Physics +1610.05421 Networking and Internet Architecture +1610.05422 Algebraic Topology +1610.05424 Networking and Internet Architecture +1610.05425 Materials Science +1610.05426 Physics and Society +1610.05431 Networking and Internet Architecture +1610.05433 Instrumentation and Methods for Astrophysics +1610.05434 Systems and Control +1610.05435 Information Theory +1610.05436 Computer Science and Game Theory +1610.05437 Space Physics +1610.05438 Solar and Stellar Astrophysics +1610.05440 Methodology +1610.05441 Theory +1610.05442 Optics +1610.05443 Disordered Systems and Neural Networks +1610.05447 Analysis of PDEs +1610.05448 Machine Learning +1610.05451 Molecular Networks +1610.05452 Artificial Intelligence +1610.05453 Dynamical Systems +1610.05454 +1610.05455 Human-Computer Interaction +1610.05456 Exactly Solvable and Integrable Systems +1610.05457 Group Theory +1610.05458 Representation Theory +1610.05463 Human-Computer Interaction +1610.05464 Social and Information Networks +1610.05465 Computer Vision and Pattern Recognition +1610.05467 Algebraic Geometry +1610.05469 Plasma Physics +1610.05471 Optimization and Control +1610.05476 Phenomenology +1610.05478 Populations and Evolution +1610.05479 Mesoscale and Nanoscale Physics +1610.05482 Information Theory +1610.05484 Theory +1610.05487 Dynamical Systems +1610.05489 Space Physics +1610.05491 Mesoscale and Nanoscale Physics +1610.05492 Learning +1610.05493 Computational Complexity +1610.05495 Classical Analysis and ODEs +1610.05496 Analysis of PDEs +1610.05498 Discrete Mathematics +1610.05501 Superconductivity +1610.05503 Analysis of PDEs +1610.05504 Instrumentation and Methods for Astrophysics +1610.05505 Mesoscale and Nanoscale Physics +1610.05507 Optimization and Control +1610.05509 Chemical Physics +1610.05510 Biological Physics +1610.05511 Analysis of PDEs +1610.05512 Quantitative Methods +1610.05513 Mesoscale and Nanoscale Physics +1610.05514 Robotics +1610.05516 Social and Information Networks +1610.05517 Optimization and Control +1610.05518 Computer Vision and Pattern Recognition +1610.05520 Group Theory +1610.05521 Artificial Intelligence +1610.05522 Computation and Language +1610.05523 High Energy Astrophysical Phenomena +1610.05525 Numerical Analysis +1610.05526 Mesoscale and Nanoscale Physics +1610.05527 Accelerator Physics +1610.05528 Numerical Analysis +1610.05531 Cryptography and Security +1610.05533 Phenomenology +1610.05535 Chemical Physics +1610.05536 Analysis of PDEs +1610.05537 Analysis of PDEs +1610.05539 Statistical Mechanics +1610.05540 Computation and Language +1610.05542 +1610.05546 Analysis of PDEs +1610.05547 Dynamical Systems +1610.05550 Solar and Stellar Astrophysics +1610.05551 Artificial Intelligence +1610.05552 +1610.05555 Learning +1610.05556 Artificial Intelligence +1610.05558 Numerical Analysis +1610.05559 Methodology +1610.05561 Neurons and Cognition +1610.05562 Computers and Society +1610.05564 Neurons and Cognition +1610.05566 Computer Vision and Pattern Recognition +1610.05567 Computer Vision and Pattern Recognition +1610.05568 Algebraic Geometry +1610.05569 +1610.05570 Differential Geometry +1610.05572 Plasma Physics +1610.05574 Mesoscale and Nanoscale Physics +1610.05577 Discrete Mathematics +1610.05579 Networking and Internet Architecture +1610.05585 Chemical Physics +1610.05586 Computer Vision and Pattern Recognition +1610.05592 Symplectic Geometry +1610.05594 Statistical Mechanics +1610.05595 Plasma Physics +1610.05596 Solar and Stellar Astrophysics +1610.05597 Algebraic Geometry +1610.05602 Plasma Physics +1610.05604 Machine Learning +1610.05605 +1610.05606 General Physics +1610.05607 Combinatorics +1610.05608 General Physics +1610.05611 General Physics +1610.05612 Artificial Intelligence +1610.05613 Computer Vision and Pattern Recognition +1610.05615 Materials Science +1610.05617 Information Theory +1610.05621 Numerical Analysis +1610.05622 Solar and Stellar Astrophysics +1610.05625 Solar and Stellar Astrophysics +1610.05628 +1610.05630 Algebraic Geometry +1610.05631 Materials Science +1610.05632 Strongly Correlated Electrons +1610.05634 Materials Science +1610.05636 Probability +1610.05637 Analysis of PDEs +1610.05640 General Physics +1610.05642 Functional Analysis +1610.05643 High Energy Astrophysical Phenomena +1610.05644 Soft Condensed Matter +1610.05645 Optimization and Control +1610.05646 Distributed, Parallel, and Cluster Computing +1610.05647 Phenomenology +1610.05649 General Mathematics +1610.05650 High Energy Astrophysical Phenomena +1610.05655 High Energy Astrophysical Phenomena +1610.05657 +1610.05658 Optics +1610.05660 Computation +1610.05661 +1610.05664 Theory +1610.05666 Analysis of PDEs +1610.05667 Instrumentation and Detectors +1610.05669 Phenomenology +1610.05670 Computation and Language +1610.05671 Optimization and Control +1610.05673 Analysis of PDEs +1610.05674 Number Theory +1610.05675 +1610.05679 Astrophysics of Galaxies +1610.05680 Analysis of PDEs +1610.05684 Number Theory +1610.05685 High Energy Astrophysical Phenomena +1610.05686 Fluid Dynamics +1610.05688 Computation and Language +1610.05690 Phenomenology +1610.05693 Computer Vision and Pattern Recognition +1610.05694 Information Theory +1610.05695 Methodology +1610.05696 Cosmology and Nongalactic Astrophysics +1610.05697 Statistical Finance +1610.05698 Materials Science +1610.05699 Accelerator Physics +1610.05700 Probability +1610.05701 Differential Geometry +1610.05703 Economics +1610.05704 Fluid Dynamics +1610.05707 Instrumentation and Methods for Astrophysics +1610.05708 Optimization and Control +1610.05709 Physics and Society +1610.05710 Data Structures and Algorithms +1610.05714 Combinatorics +1610.05717 Neurons and Cognition +1610.05720 Algebraic Geometry +1610.05723 Algebraic Geometry +1610.05724 Classical Analysis and ODEs +1610.05726 Software Engineering +1610.05727 Strongly Correlated Electrons +1610.05728 Mathematical Finance +1610.05729 Neural and Evolutionary Computing +1610.05730 Combinatorics +1610.05731 Robotics +1610.05732 Mesoscale and Nanoscale Physics +1610.05733 Other Statistics +1610.05734 +1610.05735 Artificial Intelligence +1610.05736 Analysis of PDEs +1610.05737 Quantum Gases +1610.05738 Phenomenology +1610.05739 Strongly Correlated Electrons +1610.05741 K-Theory and Homology +1610.05742 Classical Analysis and ODEs +1610.05744 Geometric Topology +1610.05745 Biological Physics +1610.05747 Methodology +1610.05749 History and Philosophy of Physics +1610.05750 Earth and Planetary Astrophysics +1610.05751 Phenomenology +1610.05754 K-Theory and Homology +1610.05756 Social and Information Networks +1610.05759 Number Theory +1610.05760 Materials Science +1610.05762 Strongly Correlated Electrons +astro-ph/0202056 +astro-ph/0511258 +astro-ph/9906333 +gr-qc/0001008 +gr-qc/0003101 +gr-qc/0102085 +gr-qc/0103036 +gr-qc/0206069 +gr-qc/0306052 +gr-qc/0307032 +gr-qc/0312059 +gr-qc/0409034 +gr-qc/0502091 +gr-qc/0505065 +gr-qc/0601085 +gr-qc/9710008 +gr-qc/9805012 +0803.0447 Algebraic Geometry +0901.2279 Number Theory +1106.2751 General Physics +1109.2881 Probability +1110.6184 Combinatorics +1208.0562 Information Theory +1301.1588 +1302.1097 +1305.1833 Commutative Algebra +1401.8084 Computational Physics +1403.6771 Instrumentation and Detectors +1408.7054 Optics +1410.2746 +1410.5712 Statistical Mechanics +1411.1242 Disordered Systems and Neural Networks +1411.1320 Theory +1411.1611 Optimization and Control +1411.4255 Probability +1412.5222 Analysis of PDEs +1501.00141 Classical Analysis and ODEs +1501.00482 Statistical Mechanics +1501.00740 Number Theory +1501.02049 Strongly Correlated Electrons +1501.06092 Analysis of PDEs +1504.03224 Combinatorics +1504.08221 Analysis of PDEs +1506.04756 Combinatorics +1506.08440 Phenomenology +1507.04332 Classical Analysis and ODEs +1507.04334 Classical Analysis and ODEs +1507.07477 Classical Physics +1507.08818 Computer Vision and Pattern Recognition +1508.07543 +1509.00652 Data Analysis, Statistics and Probability +1509.05921 Theory +1509.06495 +1509.07448 Probability +1510.03236 Computational Physics +1510.04819 Probability +1510.08440 Statistics Theory +1510.08987 Pattern Formation and Solitons +1511.04401 Computer Vision and Pattern Recognition +1511.04520 Group Theory +1511.08117 Analysis of PDEs +1511.08703 Differential Geometry +1511.08780 +1512.01390 Category Theory +1512.05853 Theory +1601.02905 Logic +1601.03107 Algebraic Topology +1601.04099 Number Theory +1601.07576 Computer Vision and Pattern Recognition +1602.00495 Classical Analysis and ODEs +1602.01673 +1602.04295 Classical Analysis and ODEs +1602.07690 Astrophysics of Galaxies +1602.07854 Metric Geometry +1602.08951 Materials Science +1603.00083 Computational Physics +1603.00235 Methodology +1603.00412 Instrumentation and Methods for Astrophysics +1603.01252 Solar and Stellar Astrophysics +1603.01688 Superconductivity +1603.02127 Combinatorics +1603.02814 Computer Vision and Pattern Recognition +1603.02933 Combinatorics +1603.05453 +1603.05937 Portfolio Management +1603.07518 +1603.08579 Logic +1604.00571 Analysis of PDEs +1604.06466 Superconductivity +1605.00290 Differential Geometry +1605.00490 Algebraic Geometry +1605.01323 Probability +1605.03973 +1605.04090 Lattice +1605.04210 Atomic Physics +1605.07728 Artificial Intelligence +1606.00542 Representation Theory +1606.03683 Analysis of PDEs +1606.04236 Networking and Internet Architecture +1606.04400 Optics +1606.04757 +1606.05760 Materials Science +1606.05808 Materials Science +1606.06244 Computer Science and Game Theory +1606.06264 Representation Theory +1606.08833 Group Theory +1606.08878 Phenomenology +1606.09495 Superconductivity +1607.00097 Classical Analysis and ODEs +1607.00836 +1607.02181 Mesoscale and Nanoscale Physics +1607.02254 +1607.02467 Artificial Intelligence +1607.02617 Analysis of PDEs +1607.02875 Astrophysics of Galaxies +1607.04266 Phenomenology +1607.05368 Computation and Language +1607.05382 Physics and Society +1607.05941 Materials Science +1607.06151 Strongly Correlated Electrons +1607.06923 Quantum Gases +1607.06940 Exactly Solvable and Integrable Systems +1608.00071 +1608.01349 Phenomenology +1608.03497 +1608.04306 Theory +1608.05543 Information Theory +1609.00184 Instrumentation and Methods for Astrophysics +1609.00301 Cosmology and Nongalactic Astrophysics +1609.01638 Instrumentation and Detectors +1609.03419 Instrumentation and Detectors +1609.03513 Instrumentation and Detectors +1609.03699 Computational Physics +1609.05231 Analysis of PDEs +1609.06504 Mesoscale and Nanoscale Physics +1609.06602 Solar and Stellar Astrophysics +1609.07798 Theory +1609.08131 +1609.08135 Solar and Stellar Astrophysics +1609.08996 Instrumentation and Methods for Astrophysics +1609.09045 +1609.09313 Physics and Society +1610.00069 Methodology +1610.01700 Plasma Physics +1610.02128 +1610.02291 Distributed, Parallel, and Cluster Computing +1610.02304 Theory +1610.03863 Computational Engineering, Finance, and Science +1610.04356 Strongly Correlated Electrons +1610.04718 Learning +1610.05519 Cosmology and Nongalactic Astrophysics +1610.06794 Optics +1610.06899 Strongly Correlated Electrons +1610.07021 Soft Condensed Matter +1610.07049 Theory +1610.07717 Learning +1610.08079 Strongly Correlated Electrons +1610.08252 Soft Condensed Matter +1610.09320 Data Structures and Algorithms +1610.09572 Computation +1610.10038 Phenomenology +1611.01599 Learning +1611.01743 Methodology +1611.01876 Analysis of PDEs +1611.02529 Optics +1611.03714 Logic in Computer Science +1611.03944 Algebraic Geometry +1611.04189 Theory +1611.04587 Astrophysics of Galaxies +1611.05779 Classical Analysis and ODEs +1611.05983 Spectral Theory +1611.06572 Differential Geometry +1611.07505 Computation +1611.07528 +1611.07717 Mesoscale and Nanoscale Physics +1611.08151 Materials Science +1611.08255 +1611.09307 Materials Science +1611.09371 Theory +1611.09677 Optics +1611.10052 Distributed, Parallel, and Cluster Computing +1611.10233 Algebraic Geometry +1612.00017 +1612.00356 Computer Vision and Pattern Recognition +1612.00543 +1612.00586 Algebraic Geometry +1612.00985 Human-Computer Interaction +1612.01364 Functional Analysis +1612.01908 Lattice +1612.02008 Theory +1612.02121 Complex Variables +1612.02166 Computer Vision and Pattern Recognition +1612.02769 Theory +1612.03030 Astrophysics of Galaxies +1612.03053 Social and Information Networks +1612.03214 Learning +1612.03225 Learning +1612.03284 Computer Vision and Pattern Recognition +1612.03311 Metric Geometry +1612.03314 Systems and Control +1612.03347 Risk Management +1612.03350 Computational Engineering, Finance, and Science +1612.03364 Learning +1612.03385 Materials Science +1612.03391 Astrophysics of Galaxies +1612.03412 Learning +1612.03428 Methodology +1612.03441 Machine Learning +1612.03468 Social and Information Networks +1612.03494 Artificial Intelligence +1612.03600 Differential Geometry +1612.03610 Materials Science +1612.03640 Human-Computer Interaction +1612.03651 Computation and Language +1612.03653 Artificial Intelligence +1612.03663 Computer Vision and Pattern Recognition +1612.03699 Instrumentation and Detectors +1612.03724 Strongly Correlated Electrons +1612.03740 Strongly Correlated Electrons +1612.03742 Optimization and Control +1612.03780 Artificial Intelligence +1612.03789 Sound +1612.03805 High Energy Astrophysical Phenomena +1612.03812 Soft Condensed Matter +1612.03859 Cell Behavior +1612.04034 Combinatorics +1612.04270 Statistical Mechanics +1612.04364 Algebraic Geometry +1612.04370 Statistical Finance +1612.04376 Theory +1612.04413 Machine Learning +1612.04417 Astrophysics of Galaxies +1612.04422 Complex Variables +1612.04438 Solar and Stellar Astrophysics +1612.04443 Number Theory +1612.04453 Optimization and Control +1612.04457 Networking and Internet Architecture +1612.04459 Networking and Internet Architecture +1612.04463 Networking and Internet Architecture +1612.04471 Quantitative Methods +1612.04502 Disordered Systems and Neural Networks +1612.04512 Multiagent Systems +1612.04532 Populations and Evolution +1612.04560 Space Physics +1612.04583 Atomic Physics +1612.04618 Experiment +1612.04682 Other Quantitative Biology +1612.04703 Information Theory +1612.04747 Representation Theory +1612.04759 Artificial Intelligence +1612.04791 Artificial Intelligence +1612.04796 Numerical Analysis +1612.04887 Learning +1612.04922 Analysis of PDEs +1612.05091 Solar and Stellar Astrophysics +1612.05114 +1612.05149 Solar and Stellar Astrophysics +1612.05179 Methodology +1612.05210 Phenomenology +1612.05249 Disordered Systems and Neural Networks +1612.05253 Astrophysics of Galaxies +1612.05254 Atmospheric and Oceanic Physics +1612.05256 Theory +1612.05257 Theory +1612.05259 Earth and Planetary Astrophysics +1612.05260 Strongly Correlated Electrons +1612.05264 Astrophysics of Galaxies +1612.05265 Theory +1612.05266 Cosmology and Nongalactic Astrophysics +1612.05268 Optics +1612.05269 Mesoscale and Nanoscale Physics +1612.05270 Computation and Language +1612.05271 +1612.05272 Astrophysics of Galaxies +1612.05273 Logic +1612.05274 Networking and Internet Architecture +1612.05275 Astrophysics of Galaxies +1612.05276 Adaptation and Self-Organizing Systems +1612.05277 Astrophysics of Galaxies +1612.05278 Astrophysics of Galaxies +1612.05280 Classical Analysis and ODEs +1612.05281 High Energy Astrophysical Phenomena +1612.05282 Astrophysics of Galaxies +1612.05283 Materials Science +1612.05284 Cosmology and Nongalactic Astrophysics +1612.05286 Information Theory +1612.05291 Networking and Internet Architecture +1612.05293 Materials Science +1612.05294 Superconductivity +1612.05296 Learning +1612.05297 Rings and Algebras +1612.05298 Phenomenology +1612.05299 Learning +1612.05300 Dynamical Systems +1612.05301 Classical Analysis and ODEs +1612.05304 Spectral Theory +1612.05305 Astrophysics of Galaxies +1612.05306 Information Theory +1612.05307 Methodology +1612.05308 Instrumentation and Methods for Astrophysics +1612.05312 Differential Geometry +1612.05313 Numerical Analysis +1612.05316 Software Engineering +1612.05317 +1612.05318 Instrumentation and Detectors +1612.05321 Neurons and Cognition +1612.05323 Computer Vision and Pattern Recognition +1612.05325 +1612.05326 Strongly Correlated Electrons +1612.05327 Optimization and Control +1612.05330 Statistics Theory +1612.05331 Materials Science +1612.05332 Computer Vision and Pattern Recognition +1612.05333 +1612.05334 Dynamical Systems +1612.05335 Robotics +1612.05336 Experiment +1612.05337 Materials Science +1612.05339 Computational Physics +1612.05341 Differential Geometry +1612.05342 Numerical Analysis +1612.05343 Cryptography and Security +1612.05344 Computational Physics +1612.05346 Analysis of PDEs +1612.05347 Physics and Society +1612.05348 Artificial Intelligence +1612.05349 Algebraic Geometry +1612.05350 Analysis of PDEs +1612.05351 Earth and Planetary Astrophysics +1612.05352 Algebraic Geometry +1612.05353 Fluid Dynamics +1612.05354 Number Theory +1612.05355 +1612.05357 Mesoscale and Nanoscale Physics +1612.05358 Strongly Correlated Electrons +1612.05359 Materials Science +1612.05362 Computer Vision and Pattern Recognition +1612.05363 Computer Vision and Pattern Recognition +1612.05365 Computer Vision and Pattern Recognition +1612.05366 Analysis of PDEs +1612.05367 Combinatorics +1612.05368 Statistics Theory +1612.05370 Functional Analysis +1612.05371 Lattice +1612.05372 Combinatorics +1612.05373 Classical Analysis and ODEs +1612.05375 Analysis of PDEs +1612.05376 Optics +1612.05377 Cosmology and Nongalactic Astrophysics +1612.05378 Optics +1612.05379 Fluid Dynamics +1612.05380 +1612.05381 Combinatorics +1612.05382 Number Theory +1612.05385 Strongly Correlated Electrons +1612.05386 Computer Vision and Pattern Recognition +1612.05387 Combinatorics +1612.05388 Chemical Physics +1612.05389 Dynamical Systems +1612.05392 Functional Analysis +1612.05393 History and Overview +1612.05398 Chemical Physics +1612.05399 Materials Science +1612.05400 Computer Vision and Pattern Recognition +1612.05402 Information Theory +1612.05403 Symbolic Computation +1612.05404 Computational Physics +1612.05405 Astrophysics of Galaxies +1612.05407 Algebraic Topology +1612.05408 Analysis of PDEs +1612.05409 Probability +1612.05410 Functional Analysis +1612.05411 Atomic Physics +1612.05412 Functional Analysis +1612.05414 Solar and Stellar Astrophysics +1612.05415 Soft Condensed Matter +1612.05417 +1612.05419 Data Structures and Algorithms +1612.05420 Computation and Language +1612.05421 Strongly Correlated Electrons +1612.05422 Computational Physics +1612.05424 Computer Vision and Pattern Recognition +1612.05426 Methodology +1612.05428 Phenomenology +1612.05429 Soft Condensed Matter +1612.05431 Phenomenology +1612.05432 Sound +1612.05433 +1612.05434 Geometric Topology +1612.05435 Probability +1612.05436 Phenomenology +1612.05437 Lattice +1612.05438 Number Theory +1612.05439 Theory +1612.05442 Dynamical Systems +1612.05443 Analysis of PDEs +1612.05444 Instrumentation and Detectors +1612.05445 Statistics Theory +1612.05446 +1612.05447 Information Theory +1612.05448 +1612.05449 Algebraic Geometry +1612.05450 Biological Physics +1612.05451 Solar and Stellar Astrophysics +1612.05453 Phenomenology +1612.05454 Superconductivity +1612.05455 Classical Analysis and ODEs +1612.05456 Logic in Computer Science +1612.05457 Logic in Computer Science +1612.05458 Spectral Theory +1612.05461 Information Theory +1612.05462 Methodology +1612.05463 Populations and Evolution +1612.05464 +1612.05465 Earth and Planetary Astrophysics +1612.05467 Atomic Physics +1612.05468 Logic +1612.05469 Statistical Mechanics +1612.05470 +1612.05471 Astrophysics of Galaxies +1612.05473 Phenomenology +1612.05474 Data Structures and Algorithms +1612.05475 Experiment +1612.05477 Distributed, Parallel, and Cluster Computing +1612.05479 Medical Physics +1612.05481 Theory +1612.05482 Fluid Dynamics +1612.05484 +1612.05485 Phenomenology +1612.05488 Instrumentation and Detectors +1612.05489 Sound +1612.05490 Experiment +1612.05493 Classical Analysis and ODEs +1612.05495 Number Theory +1612.05496 Numerical Analysis +1612.05498 General Physics +1612.05499 Classical Physics +1612.05501 Computation +1612.05502 Learning +1612.05503 Phenomenology +1612.05504 Differential Geometry +1612.05506 Information Theory +1612.05507 Instrumentation and Detectors +1612.05508 Optimization and Control +1612.05511 +1612.05515 Computer Vision and Pattern Recognition +1612.05517 +1612.05518 Symbolic Computation +1612.05521 General Mathematics +1612.05522 Commutative Algebra +1612.05523 Information Theory +1612.05524 Dynamical Systems +1612.05525 General Finance +1612.05528 Spectral Theory +1612.05529 Atomic Physics +1612.05530 Populations and Evolution +1612.05531 Data Structures and Algorithms +1612.05532 Physics and Society +1612.05536 Discrete Mathematics +1612.05537 Networking and Internet Architecture +1612.05538 Theory +1612.05541 Probability +1612.05542 +1612.05543 Performance +1612.05544 Optics +1612.05545 Quantum Gases +1612.05546 Solar and Stellar Astrophysics +1612.05547 Hardware Architecture +1612.05548 Phenomenology +1612.05549 Operator Algebras +1612.05551 Numerical Analysis +1612.05552 Systems and Control +1612.05554 +1612.05558 Phenomenology +1612.05559 Materials Science +1612.05561 Phenomenology +1612.05565 Cosmology and Nongalactic Astrophysics +1612.05566 Databases +1612.05567 +1612.05568 Cryptography and Security +1612.05570 +1612.05571 Neural and Evolutionary Computing +1612.05572 Cryptography and Security +1612.05574 Plasma Physics +1612.05576 Optics +1612.05577 Plasma Physics +1612.05578 +1612.05581 Computational Physics +1612.05583 Analysis of PDEs +1612.05584 Numerical Analysis +1612.05588 +1612.05590 Theory +1612.05592 History and Overview +1612.05593 +1612.05594 Systems and Control +1612.05595 Strongly Correlated Electrons +1612.05597 Strongly Correlated Electrons +1612.05600 Chemical Physics +1612.05601 Computer Vision and Pattern Recognition +1612.05602 +1612.05603 +1612.05606 Numerical Analysis +1612.05607 Optics +1612.05608 +1612.05609 Phenomenology +1612.05610 Materials Science +1612.05611 Disordered Systems and Neural Networks +1612.05612 Statistics Theory +1612.05613 Mesoscale and Nanoscale Physics +1612.05615 Astrophysics of Galaxies +1612.05618 Strongly Correlated Electrons +1612.05619 Complex Variables +1612.05621 Instrumentation and Detectors +1612.05622 +1612.05623 Data Structures and Algorithms +1612.05625 +1612.05626 Computers and Society +1612.05627 Learning +1612.05629 +1612.05631 Quantum Gases +1106.3503 Statistics Theory +1108.0918 Atomic and Molecular Clusters +1110.6207 Combinatorics +1202.6211 Atomic and Molecular Clusters +1202.6496 Atomic and Molecular Clusters +1203.4871 Statistics Theory +1204.1228 Combinatorics +1206.5105 Atomic and Molecular Clusters +1208.4537 +1211.0627 Combinatorics +1305.5968 Logic in Computer Science +1306.5934 Quantum Gases +1307.3514 Atomic and Molecular Clusters +1310.7260 Probability +1312.0538 Applications +1312.6388 Algebraic Geometry +1401.0744 Differential Geometry +1401.1625 Combinatorics +1402.0881 Strongly Correlated Electrons +1402.4886 Combinatorics +1403.7614 Algebraic Geometry +1405.2561 Chemical Physics +1405.3001 Combinatorics +1405.3062 Geometric Topology +1405.3329 Analysis of PDEs +1405.4713 Information Theory +1406.0120 Number Theory +1407.1739 +1408.4490 Data Structures and Algorithms +1408.6627 Algebraic Geometry +1409.1546 +1409.3901 Computation +1409.5580 +1409.8637 Combinatorics +1410.6692 Number Theory +1410.8202 Computational Complexity +1411.7245 Optimization and Control +1412.2445 Probability +1412.3606 Algebraic Topology +1412.5403 +1412.5457 Atomic and Molecular Clusters +1412.5530 Atomic and Molecular Clusters +1501.03030 Operator Algebras +1501.07446 Geometric Topology +1502.00238 Programming Languages +1502.05286 General Physics +1503.05729 Algebraic Geometry +1503.08615 Spectral Theory +1503.08740 Differential Geometry +1504.00646 Materials Science +1504.01842 Programming Languages +1504.01971 Materials Science +1505.00861 Probability +1505.06931 Numerical Analysis +1505.06957 Computer Vision and Pattern Recognition +1505.07954 Information Theory +1506.02605 Probability +1506.04440 Number Theory +1506.05165 Number Theory +1506.06434 Algebraic Geometry +1506.08732 +1507.00336 Phenomenology +1507.01513 Symplectic Geometry +1507.02025 Economics +1507.03423 Chemical Physics +1507.04415 Methodology +1507.04661 Differential Geometry +1507.06523 +1507.08964 +1508.04183 +1508.05117 Computational Complexity +1508.07226 Theory +1509.00327 Combinatorics +1509.01404 Numerical Analysis +1509.05912 Classical Analysis and ODEs +1509.06942 Combinatorics +1509.07000 Differential Geometry +1510.03948 Superconductivity +1510.04366 Combinatorics +1510.05701 +1510.05731 Complex Variables +1510.05780 Dynamical Systems +1510.06790 Classical Analysis and ODEs +1510.07606 Analysis of PDEs +1510.07817 +1510.07860 Dynamical Systems +1511.00300 High Energy Astrophysical Phenomena +1511.00548 Group Theory +1511.01506 Cosmology and Nongalactic Astrophysics +1511.02868 Strongly Correlated Electrons +1511.03866 +1511.04406 Plasma Physics +1511.05219 Machine Learning +1511.05491 Statistics Theory +1511.07052 Analysis of PDEs +1511.07833 Dynamical Systems +1511.08577 Analysis of PDEs +1512.00695 Molecular Networks +1512.02437 Algebraic Geometry +1512.03081 Machine Learning +1512.04061 Soft Condensed Matter +1512.06544 Soft Condensed Matter +1512.06899 Probability +1512.06928 Experiment +1512.07334 +1512.08713 +1512.09187 Atmospheric and Oceanic Physics +1601.00800 +1601.01779 Commutative Algebra +1601.02233 +1601.02817 Optimization and Control +1601.03759 Probability +1601.05408 Methodology +1602.00146 +1602.01698 Phenomenology +1602.03399 Number Theory +1602.03782 Fluid Dynamics +1602.05371 +1602.05730 Theory +1602.07541 Rings and Algebras +1603.01316 Performance +1603.01871 Applications +1603.03385 Phenomenology +1603.05602 Phenomenology +1603.05911 Cosmology and Nongalactic Astrophysics +1603.06389 Pricing of Securities +1603.07916 Mathematical Software +1603.07993 Theory +1603.08465 Differential Geometry +1603.09049 Computational Finance +1604.00593 Fluid Dynamics +1604.01654 Optimization and Control +1604.02289 Astrophysics of Galaxies +1604.06916 +1604.06960 Solar and Stellar Astrophysics +1604.07770 Physics Education +1604.08428 Statistics Theory +1605.00492 Mathematical Software +1605.01100 Cosmology and Nongalactic Astrophysics +1605.01390 Strongly Correlated Electrons +1605.03524 Combinatorics +1605.03554 Theory +1605.04411 Functional Analysis +1605.04535 Algebraic Geometry +1605.05651 Atomic Physics +1605.05899 Statistics Theory +1605.06034 Operator Algebras +1605.07489 Superconductivity +1605.08382 Number Theory +1605.08957 Theory +1605.09552 Optics +1606.01032 Solar and Stellar Astrophysics +1606.01146 Astrophysics of Galaxies +1606.01200 Applications +1606.03158 +1606.04010 Methodology +1606.05536 Cosmology and Nongalactic Astrophysics +1606.05588 Cosmology and Nongalactic Astrophysics +1606.05595 Statistical Mechanics +1606.06203 Optics +1606.06391 Adaptation and Self-Organizing Systems +1606.06502 Phenomenology +1606.08721 Optimization and Control +1606.09115 Physics and Society +1606.09149 Solar and Stellar Astrophysics +1606.09612 Numerical Analysis +1607.00228 High Energy Astrophysical Phenomena +1607.00324 Symplectic Geometry +1607.01001 Phenomenology +1607.01211 Strongly Correlated Electrons +1607.01638 Phenomenology +1607.02530 Mesoscale and Nanoscale Physics +1607.04972 Experiment +1607.05118 Classical Analysis and ODEs +1607.05205 Statistical Mechanics +1607.06245 High Energy Astrophysical Phenomena +1607.06285 Populations and Evolution +1607.07429 Human-Computer Interaction +1607.08065 Solar and Stellar Astrophysics +1607.08080 Earth and Planetary Astrophysics +1607.08262 Symplectic Geometry +1608.00528 Methodology +1608.00642 Phenomenology +1608.00872 Experiment +1608.01336 Phenomenology +1608.01442 Optics +1608.03110 Plasma Physics +1608.03114 Mesoscale and Nanoscale Physics +1608.03206 High Energy Astrophysical Phenomena +1608.04194 Phenomenology +1608.04796 Materials Science +1608.04834 Numerical Analysis +1608.04907 Strongly Correlated Electrons +1608.05334 Phenomenology +1608.05836 Combinatorics +1608.06181 Functional Analysis +1608.06327 Functional Analysis +1608.07009 Strongly Correlated Electrons +1608.07408 Solar and Stellar Astrophysics +1608.07553 Geophysics +1608.08182 Learning +1608.08763 Analysis of PDEs +1608.08826 Soft Condensed Matter +1609.00077 Strongly Correlated Electrons +1609.00118 Logic in Computer Science +1609.00409 Operator Algebras +1609.00832 Information Theory +1609.00853 Combinatorics +1609.00879 +1609.00994 Quantum Algebra +1609.01108 +1609.01113 +1609.01347 Theory +1609.01471 Astrophysics of Galaxies +1609.02735 Solar and Stellar Astrophysics +1609.02749 Materials Science +1609.03673 Geometric Topology +1609.03682 Numerical Analysis +1609.04885 Optimization and Control +1609.05034 Discrete Mathematics +1609.05095 Plasma Physics +1609.05309 Atomic Physics +1609.06116 Superconductivity +1609.06352 Instrumentation and Methods for Astrophysics +1609.06453 Fluid Dynamics +1609.06833 Pattern Formation and Solitons +1609.07604 Operator Algebras +1609.07654 Optimization and Control +1609.08516 +1610.00075 Analysis of PDEs +1610.00760 Human-Computer Interaction +1610.01085 Artificial Intelligence +1610.01112 Learning +1610.01149 Statistical Finance +1610.01154 High Energy Astrophysical Phenomena +1610.01185 Logic in Computer Science +1610.01268 +1610.01298 +1610.01424 Methodology +1610.01430 Neural and Evolutionary Computing +1610.01438 Dynamical Systems +1610.01452 Instrumentation and Methods for Astrophysics +1610.01537 Other Statistics +1610.01592 Numerical Analysis +1610.01593 +1610.01595 Astrophysics of Galaxies +1610.01599 Cosmology and Nongalactic Astrophysics +1610.01603 High Energy Astrophysical Phenomena +1610.01616 High Energy Astrophysical Phenomena +1610.01620 Theory +1610.01621 Commutative Algebra +1610.01627 Astrophysics of Galaxies +1610.01628 +1610.01630 Networking and Internet Architecture +1610.01631 Optics +1610.01633 Applications +1610.01635 Probability +1610.01636 Medical Physics +1610.01637 Probability +1610.01639 Phenomenology +1610.01642 Machine Learning +1610.01643 Earth and Planetary Astrophysics +1610.01645 General Finance +1610.01646 Theory +1610.01647 Theory +1610.01648 Differential Geometry +1610.01649 Differential Geometry +1610.01650 Logic +1610.01651 Fluid Dynamics +1610.01653 Analysis of PDEs +1610.01656 Chaotic Dynamics +1610.01660 Numerical Analysis +1610.01661 Instrumentation and Methods for Astrophysics +1610.01664 +1610.01670 Computers and Society +1610.01671 Optics +1610.01673 Materials Science +1610.01674 Populations and Evolution +1610.01676 Combinatorics +1610.01677 Solar and Stellar Astrophysics +1610.01678 Fluid Dynamics +1610.01679 Earth and Planetary Astrophysics +1610.01680 Analysis of PDEs +1610.01681 Algebraic Topology +1610.01683 Machine Learning +1610.01684 Physics and Society +1610.01685 Robotics +1610.01686 Combinatorics +1610.01687 Computer Science and Game Theory +1610.01689 Number Theory +1610.01691 Graphics +1610.01692 +1610.01693 Optics +1610.01694 Computational Physics +1610.01696 +1610.01697 Methodology +1610.01698 Machine Learning +1610.01699 +1610.01703 Analysis of PDEs +1610.01704 Neurons and Cognition +1610.01708 Computer Vision and Pattern Recognition +1610.01709 High Energy Astrophysical Phenomena +1610.01710 +1610.01712 Learning +1610.01713 Computation and Language +1610.01714 Mesoscale and Nanoscale Physics +1610.01715 Analysis of PDEs +1610.01716 +1610.01717 Tissues and Organs +1610.01720 Computation and Language +1610.01721 Analysis of PDEs +1610.01722 Formal Languages and Automata Theory +1610.01723 Information Theory +1610.01724 Optics +1610.01727 +1610.01729 Analysis of PDEs +1610.01732 Computer Vision and Pattern Recognition +1610.01734 Cryptography and Security +1610.01735 Differential Geometry +1610.01737 Mesoscale and Nanoscale Physics +1610.01738 Fluid Dynamics +1610.01740 History and Philosophy of Physics +1610.01741 Learning +1610.01744 Theory +1610.01746 Computational Physics +1610.01747 Statistics Theory +1610.01748 Strongly Correlated Electrons +1610.01749 Information Theory +1610.01750 Logic +1610.01752 Phenomenology +1610.01753 Discrete Mathematics +1610.01754 +1610.01756 Mesoscale and Nanoscale Physics +1610.01757 Learning +1610.01758 Materials Science +1610.01759 Pattern Formation and Solitons +1610.01760 Logic +1610.01762 Mesoscale and Nanoscale Physics +1610.01763 +1610.01764 +1610.01768 Computer Science and Game Theory +1610.01770 Geometric Topology +1610.01772 Mesoscale and Nanoscale Physics +1610.01773 Algebraic Geometry +1610.01774 Mesoscale and Nanoscale Physics +1610.01776 Materials Science +1610.01777 Space Physics +1610.01779 Representation Theory +1610.01781 Astrophysics of Galaxies +1610.01782 Differential Geometry +1610.01783 Data Analysis, Statistics and Probability +1610.01784 Distributed, Parallel, and Cluster Computing +1610.01787 Analysis of PDEs +1610.01789 Materials Science +1610.01790 Social and Information Networks +1610.01792 Group Theory +1610.01793 Dynamical Systems +1610.01795 Computer Vision and Pattern Recognition +1610.01796 Classical Analysis and ODEs +1610.01797 Sound +1610.01800 Rings and Algebras +1610.01801 Computer Vision and Pattern Recognition +1610.01804 Numerical Analysis +1610.01805 Algebraic Geometry +1610.01806 Fluid Dynamics +1610.01807 Distributed, Parallel, and Cluster Computing +1610.01808 +1610.01809 Materials Science +1610.01815 Strongly Correlated Electrons +1610.01816 Plasma Physics +1610.01819 Mesoscale and Nanoscale Physics +1610.01827 Cosmology and Nongalactic Astrophysics +1610.01828 Probability +1610.01832 Hardware Architecture +1610.01836 Spectral Theory +1610.01838 Computers and Society +1610.01840 Phenomenology +1610.01842 Operator Algebras +1610.01846 Analysis of PDEs +1610.01849 Neurons and Cognition +1610.01851 Classical Analysis and ODEs +1610.01852 Computer Vision and Pattern Recognition +1610.01855 +1610.01856 Exactly Solvable and Integrable Systems +1610.01857 Data Analysis, Statistics and Probability +1610.01858 Computation and Language +1610.01859 Numerical Analysis +1610.01860 Algebraic Geometry +1610.01861 Computer Science and Game Theory +1610.01862 Representation Theory +1610.01863 Combinatorics +1610.01864 Strongly Correlated Electrons +1610.01865 Data Structures and Algorithms +1610.01866 Strongly Correlated Electrons +1610.01867 Instrumentation and Methods for Astrophysics +1610.01869 Methodology +1610.01872 Dynamical Systems +1610.01874 Computation and Language +1610.01875 +1610.01876 Data Structures and Algorithms +1610.01877 Earth and Planetary Astrophysics +1610.01878 Numerical Analysis +1610.01880 Phenomenology +1610.01881 Rings and Algebras +1610.01883 General Topology +1610.01884 Instrumentation and Methods for Astrophysics +1610.01888 Differential Geometry +1610.01889 Methodology +1610.01890 Phenomenology +1610.01891 Computation and Language +1610.01892 Optimization and Control +1610.01894 Neurons and Cognition +1610.01895 Statistics Theory +1610.01896 Systems and Control +1610.01898 Neurons and Cognition +1610.01900 Computer Science and Game Theory +1610.01901 Information Retrieval +1610.01902 Computer Science and Game Theory +1610.01903 Mesoscale and Nanoscale Physics +1610.01905 Adaptation and Self-Organizing Systems +1610.01907 +1610.01908 Combinatorics +1610.01909 Phenomenology +1610.01910 Computation and Language +1610.01911 Probability +1610.01913 Strongly Correlated Electrons +1610.01919 Soft Condensed Matter +1610.01921 Materials Science +1610.01924 Medical Physics +1610.01929 Computer Science and Game Theory +1610.01930 Algebraic Topology +1610.01931 Lattice +1610.01935 Neural and Evolutionary Computing +1610.01937 Trading and Market Microstructure +1610.01938 Probability +1610.01943 Number Theory +1610.01946 Computational Finance +1610.01948 Strongly Correlated Electrons +1610.01949 Biomolecules +1610.01950 Analysis of PDEs +1610.01952 Numerical Analysis +1610.01953 Computers and Society +1610.01954 Classical Analysis and ODEs +1610.01955 Multimedia +1610.01957 +1610.01959 Data Structures and Algorithms +1610.01960 Plasma Physics +1610.01962 Complex Variables +1610.01964 Number Theory +1610.01965 Functional Analysis +1610.01968 +1610.01970 Optimization and Control +1610.01971 Systems and Control +1610.01972 Optimization and Control +1610.01973 Systems and Control +1610.01975 Differential Geometry +1610.01976 Differential Geometry +1610.01978 Functional Analysis +1610.01979 Geometric Topology +1610.01980 Data Structures and Algorithms +1610.01981 Number Theory +1610.01982 Information Theory +1610.01986 Learning +1610.01987 Combinatorics +1610.01989 Learning +1610.01992 Soft Condensed Matter +1610.01995 Materials Science +1610.01996 Phenomenology +1610.01997 Functional Analysis +1610.01998 +1610.01999 Analysis of PDEs +1610.02001 Optics +1610.02002 Quantum Gases +1610.02003 Computation and Language +1610.02005 Materials Science +1610.02006 Number Theory +1610.02007 Plasma Physics +1610.02009 Differential Geometry +1610.02011 Instrumentation and Detectors +1610.02013 Mesoscale and Nanoscale Physics +1610.02016 Neurons and Cognition +1610.02019 Statistical Mechanics +1610.02020 +1610.02022 Information Theory +math/0201253 Combinatorics +math/0608095 General Mathematics +1611.03379 Emerging Technologies +0810.0558 Data Structures and Algorithms +0905.2621 Category Theory +0906.2364 Algebraic Geometry +0909.1680 +1006.3064 Analysis of PDEs +1012.0145 Analysis of PDEs +1109.3524 Computational Engineering, Finance, and Science +1109.6535 Computational Geometry +1110.5950 +1111.2749 Representation Theory +1201.0418 Statistics Theory +1202.4399 Combinatorics +1203.4516 +1203.5859 Classical Analysis and ODEs +1204.1565 Number Theory +1206.1547 Statistical Mechanics +1207.0697 Cosmology and Nongalactic Astrophysics +1207.1159 Algebraic Geometry +1207.3656 Earth and Planetary Astrophysics +1208.4019 Algebraic Geometry +1208.5102 +1210.5855 Functional Analysis +1210.7245 +1211.2721 Biomolecules +1301.0091 Probability +1301.2756 Differential Geometry +1301.4139 +1302.0871 Algebraic Geometry +1303.2147 Computer Science and Game Theory +1305.6634 Data Analysis, Statistics and Probability +1306.2181 Algebraic Geometry +1306.2348 +1307.4621 Statistics Theory +1307.6530 Probability +1308.0901 +1308.1138 Logic in Computer Science +1310.2012 Combinatorics +1310.7464 Solar and Stellar Astrophysics +1310.8635 Number Theory +1311.2610 Applications +1311.3320 Algebraic Geometry +1311.6660 Solar and Stellar Astrophysics +1312.1354 Cosmology and Nongalactic Astrophysics +1312.6932 Differential Geometry +1401.4736 Algebraic Geometry +1402.5816 Metric Geometry +1402.5876 Machine Learning +1402.6407 Databases +1403.5775 +1403.7399 Algebraic Geometry +1404.1500 +1404.4197 Populations and Evolution +1404.4957 Algebraic Geometry +1404.7210 +1405.1828 Logic +1405.3416 Group Theory +1405.3561 Computational Finance +1405.5124 Statistical Mechanics +1406.1451 Algebraic Geometry +1406.3527 Chaotic Dynamics +1406.3593 Statistical Mechanics +1406.3825 Chemical Physics +1406.5358 Combinatorics +1406.6662 Combinatorics +1407.4156 Analysis of PDEs +1407.6283 Algebraic Topology +1407.6810 Learning +1408.1279 Number Theory +1408.1813 Solar and Stellar Astrophysics +1408.6703 Combinatorics +1409.5915 Algebraic Geometry +1410.7803 Algebraic Geometry +1411.0023 Learning +1411.0586 Probability +1411.0733 Tissues and Organs +1411.1338 +1411.5896 Differential Geometry +1411.6907 Other Computer Science +1412.1755 +1412.3673 Algebraic Geometry +1412.4320 Databases +1412.7095 Fluid Dynamics +1412.7744 Algebraic Geometry +1412.7778 Methodology +1501.03017 Statistical Mechanics +1501.07331 Materials Science +1502.02174 +1502.02518 Number Theory +1502.03766 Rings and Algebras +1502.05041 Genomics +1502.06748 Atomic Physics +1503.03393 Statistics Theory +1503.03726 Risk Management +1503.03815 Quantitative Methods +1503.08079 Geometric Topology +1503.08150 Biological Physics +1503.08561 Phenomenology +1503.08747 +1504.00316 Distributed, Parallel, and Cluster Computing +1504.01046 Machine Learning +1504.01334 Strongly Correlated Electrons +1504.05548 Algebraic Geometry +1504.08252 Logic +1505.00769 Information Theory +1505.01101 Fluid Dynamics +1505.01116 +1505.01798 Numerical Analysis +1505.01801 Numerical Analysis +1505.02078 Soft Condensed Matter +1505.02453 Analysis of PDEs +1505.02673 Soft Condensed Matter +1505.02713 Symplectic Geometry +1505.03004 Strongly Correlated Electrons +1505.03086 Algebraic Geometry +1505.04390 +1505.04682 +1505.07236 Analysis of PDEs +1505.07575 Superconductivity +1505.07730 Instrumentation and Detectors +1506.00101 +1506.00594 Soft Condensed Matter +1506.02260 Theory +1506.02269 Algebraic Topology +1506.02418 Quantum Gases +1506.02587 +1506.03511 Algebraic Geometry +1506.03606 Numerical Analysis +1506.05275 Methodology +1506.05901 Differential Geometry +1506.07038 Mesoscale and Nanoscale Physics +1506.07287 +1506.08373 Superconductivity +1506.08435 Numerical Analysis +1506.08604 High Energy Astrophysical Phenomena +1506.08951 +1507.00455 Probability +1507.00650 Networking and Internet Architecture +1507.01430 Optimization and Control +1507.02331 Cryptography and Security +1507.02731 Optimization and Control +1507.02942 Group Theory +1507.06194 +1507.06496 Computation +1507.06900 Information Theory +1507.07519 Soft Condensed Matter +1507.07619 Algebraic Geometry +1507.07928 Phenomenology +1508.00211 Number Theory +1508.00707 Theory +1508.01166 Fluid Dynamics +1508.01729 +1508.02092 Probability +1508.02602 Theory +1508.02933 Machine Learning +1508.03259 Soft Condensed Matter +1508.03283 Numerical Analysis +1508.03390 Learning +1508.03448 Optimization and Control +1508.03676 Phenomenology +1508.03983 +1508.04214 Numerical Analysis +1508.06118 Algebraic Topology +1508.06309 Populations and Evolution +1508.06667 Theory +1509.00071 Analysis of PDEs +1509.01018 Data Structures and Algorithms +1509.02346 +1509.02743 Number Theory +1509.03777 Populations and Evolution +1509.05320 Geometric Topology +1509.06157 +1509.06351 Statistical Mechanics +1509.06670 Number Theory +1509.06888 +1509.07287 +1509.07313 Social and Information Networks +1509.07584 Category Theory +1509.08137 +1509.08877 Phenomenology +1509.09233 +1510.00049 +1510.00219 +1510.00425 Soft Condensed Matter +1510.01228 +1510.01426 Mesoscale and Nanoscale Physics +1510.01451 Strongly Correlated Electrons +1510.02224 Classical Analysis and ODEs +1510.02516 Neural and Evolutionary Computing +1510.02877 Information Theory +1510.03764 Experiment +1510.04621 Algebraic Geometry +1510.05371 Strongly Correlated Electrons +1510.05475 Theory +1510.05850 Molecular Networks +1510.06017 Populations and Evolution +1510.06454 Information Theory +1510.06724 Classical Physics +1510.07301 Number Theory +1510.07762 Strongly Correlated Electrons +1510.08042 Theory +1510.08303 Quantum Gases +1510.08365 Theory +1510.08843 Theory +1510.08846 Theory +1510.09073 Populations and Evolution +1511.00302 Classical Analysis and ODEs +1511.01267 +1511.01407 Experiment +1511.01544 Quantum Gases +1511.01562 Numerical Analysis +1511.02057 Dynamical Systems +1511.02283 Computer Vision and Pattern Recognition +1511.02336 Phenomenology +1511.02684 Physics Education +1511.02841 Computer Vision and Pattern Recognition +1511.03133 Algebraic Geometry +1511.03416 Computer Vision and Pattern Recognition +1511.03918 Soft Condensed Matter +1511.04164 Computer Vision and Pattern Recognition +1511.04166 Computer Vision and Pattern Recognition +1511.04273 Computer Vision and Pattern Recognition +1511.05289 Quantum Gases +1511.05298 Computer Vision and Pattern Recognition +1511.05776 Atomic Physics +1511.06159 Fluid Dynamics +1511.07579 Differential Geometry +1511.07811 Materials Science +1511.07885 Strongly Correlated Electrons +1511.08164 Algebraic Geometry +1511.08296 Solar and Stellar Astrophysics +1511.08426 +1511.08436 Mesoscale and Nanoscale Physics +1512.00292 Superconductivity +1512.00926 Number Theory +1512.01316 Phenomenology +1512.01815 Computer Vision and Pattern Recognition +1512.02407 Materials Science +1512.02584 +1512.03051 +1512.03305 Combinatorics +1512.03325 Cosmology and Nongalactic Astrophysics +1512.03526 Computer Vision and Pattern Recognition +1512.03758 Number Theory +1512.04408 Strongly Correlated Electrons +1512.05193 Computation and Language +1512.05227 Computer Vision and Pattern Recognition +1512.05338 Other Computer Science +1512.06538 +1512.06976 Phenomenology +1512.07468 Phenomenology +1512.07711 Computer Vision and Pattern Recognition +1512.08335 Statistical Mechanics +1512.08347 Computation and Language +1512.08438 Statistical Mechanics +1601.00048 Mesoscale and Nanoscale Physics +1601.00430 Astrophysics of Galaxies +1601.00587 Solar and Stellar Astrophysics +1601.02769 Combinatorics +1601.02876 +1601.03223 Phenomenology +1601.03307 Geometric Topology +1601.04149 Computer Vision and Pattern Recognition +1601.04168 Logic +1601.04708 Theory +1601.05709 Optimization and Control +1601.06018 Strongly Correlated Electrons +1601.06070 Computer Vision and Pattern Recognition +1601.06083 +1601.06690 +1601.07154 Physics and Society +1602.00033 Databases +1602.00271 Superconductivity +1602.00304 Analysis of PDEs +1602.00475 Phenomenology +1602.00552 Phenomenology +1602.00964 Theory +1602.01660 Classical Analysis and ODEs +1602.01804 Computers and Society +1602.02579 Quantum Gases +1602.03248 Strongly Correlated Electrons +1602.03712 Analysis of PDEs +1602.05094 Algebraic Geometry +1602.05133 +1602.05297 Materials Science +1602.05403 +1602.06429 Machine Learning +1602.06914 Algebraic Geometry +1602.06991 Metric Geometry +1602.07487 +1602.07807 Databases +1602.07989 +1602.08615 Information Theory +1602.08713 Classical Analysis and ODEs +1602.08753 Machine Learning +1603.01365 +1603.01440 Combinatorics +1603.02368 Combinatorics +1603.03175 +1603.03230 Experiment +1603.03359 Optimization and Control +1603.03911 Computer Vision and Pattern Recognition +1603.03975 Exactly Solvable and Integrable Systems +1603.05884 Phenomenology +1603.06245 Numerical Analysis +1603.06412 Dynamical Systems +1603.06610 Numerical Analysis +1603.07057 Computer Vision and Pattern Recognition +1603.07078 Instrumentation and Methods for Astrophysics +1603.07593 Machine Learning +1603.07824 Atomic Physics +1603.07944 Instrumentation and Methods for Astrophysics +1603.07976 Theory +1603.08306 Theory +1603.08754 Computer Vision and Pattern Recognition +1603.08895 Computer Vision and Pattern Recognition +1603.09088 Methodology +1603.09107 Theory +1603.09148 Combinatorics +1603.09603 Differential Geometry +1604.00123 Phenomenology +1604.00482 +1604.00644 Neural and Evolutionary Computing +1604.00726 Algebraic Geometry +1604.01158 Theory +1604.01355 Instrumentation and Methods for Astrophysics +1604.01670 Quantum Algebra +1604.01761 Number Theory +1604.01763 Classical Physics +1604.01813 Optimization and Control +1604.02449 Probability +1604.02450 Data Structures and Algorithms +1604.02453 Materials Science +1604.02454 Populations and Evolution +1604.02463 Materials Science +1604.02465 Astrophysics of Galaxies +1604.02468 Information Theory +1604.02469 Computer Vision and Pattern Recognition +1604.02476 Analysis of PDEs +1604.02480 Programming Languages +1604.02481 Phenomenology +1604.02484 History and Overview +1604.02485 Computer Vision and Pattern Recognition +1604.02486 Discrete Mathematics +1604.02487 Genomics +1604.02488 Computer Vision and Pattern Recognition +1604.02489 Dynamical Systems +1604.02494 Optimization and Control +1604.02496 Soft Condensed Matter +1604.02497 Number Theory +1604.02500 Optimization and Control +1604.02501 Solar and Stellar Astrophysics +1604.02503 Classical Analysis and ODEs +1604.02508 Fluid Dynamics +1604.02509 Artificial Intelligence +1604.02510 Geometric Topology +1604.02511 Information Theory +1604.02512 Genomics +1604.02515 Optics +1604.02517 Information Theory +1604.02518 Information Theory +1604.02519 Information Theory +1604.02522 Computers and Society +1604.02526 Networking and Internet Architecture +1604.02527 Optimization and Control +1604.02528 Mathematical Software +1604.02529 Number Theory +1604.02531 Computer Vision and Pattern Recognition +1604.02533 Distributed, Parallel, and Cluster Computing +1604.02534 Materials Science +1604.02535 Instrumentation and Detectors +1604.02536 Instrumentation and Detectors +1604.02539 Operator Algebras +1604.02543 Solar and Stellar Astrophysics +1604.02544 +1604.02546 Computer Vision and Pattern Recognition +1604.02557 Computational Complexity +1604.02558 Classical Analysis and ODEs +1604.02566 High Energy Astrophysical Phenomena +1604.02580 Information Retrieval +1604.02593 Instrumentation and Detectors +1604.02594 Learning +1604.02595 Superconductivity +1604.02596 Probability +1604.02598 Methodology +1604.02600 Instrumentation and Methods for Astrophysics +1604.02602 Information Theory +1604.02603 Logic in Computer Science +1604.02604 Category Theory +1604.02605 Data Structures and Algorithms +1604.02608 Computers and Society +1604.02610 Social and Information Networks +1604.02612 Computation and Language +1604.02613 Geophysics +1604.02616 Numerical Analysis +1604.02617 Probability +1604.02624 Computational Physics +1604.02627 Algebraic Geometry +1604.02635 Complex Variables +1604.02636 Networking and Internet Architecture +1604.02637 +1604.02639 Optimization and Control +1604.02641 Fluid Dynamics +1604.02642 Methodology +1604.02644 Probability +1604.02645 Probability +1604.02647 Computer Vision and Pattern Recognition +1604.02648 Differential Geometry +1604.02649 Classical Analysis and ODEs +1604.02650 Instrumentation and Detectors +1604.02651 +1604.02652 Methodology +1604.02654 Algebraic Geometry +1604.02656 Earth and Planetary Astrophysics +1604.02657 Computer Vision and Pattern Recognition +1604.02660 Networking and Internet Architecture +1604.02665 Networking and Internet Architecture +1604.02668 Methodology +1604.02669 General Topology +1604.02670 Instrumentation and Methods for Astrophysics +1604.02671 Dynamical Systems +1604.02672 Rings and Algebras +1604.02673 Metric Geometry +1604.02674 Differential Geometry +1604.02676 Computer Science and Game Theory +1604.02677 Computer Vision and Pattern Recognition +1604.02678 Dynamical Systems +1604.02681 Probability +1604.02682 Functional Analysis +1604.02683 Information Theory +1604.02684 Algebraic Geometry +1604.02688 Geometric Topology +1604.02691 Data Structures and Algorithms +1604.02692 Earth and Planetary Astrophysics +1604.02693 Number Theory +1604.02694 Social and Information Networks +1604.02699 Quantitative Methods +1604.02700 Distributed, Parallel, and Cluster Computing +1604.02702 Statistics Theory +1604.02704 Multiagent Systems +1604.02710 Functional Analysis +1604.02711 Data Structures and Algorithms +1604.02714 Discrete Mathematics +1604.02715 Computer Vision and Pattern Recognition +1604.02720 Mesoscale and Nanoscale Physics +1604.02721 Mesoscale and Nanoscale Physics +1604.02723 Information Theory +1604.02724 Computation +1604.02725 Group Theory +1604.02726 Analysis of PDEs +1604.02727 Optimization and Control +1604.02729 Quantum Gases +1604.02731 Materials Science +1604.02733 Populations and Evolution +1604.02734 Cryptography and Security +1604.02737 Artificial Intelligence +1604.02738 Instrumentation and Methods for Astrophysics +1604.02741 Materials Science +1604.02743 +1604.02744 Analysis of PDEs +1604.02746 Combinatorics +1604.02749 Analysis of PDEs +1604.02754 Optics +1604.02755 Combinatorics +1604.02759 Trading and Market Microstructure +1604.02760 Geometric Topology +1604.02764 Representation Theory +1604.02765 Distributed, Parallel, and Cluster Computing +1604.02768 Differential Geometry +1604.02769 Information Theory +1604.02772 Differential Geometry +1604.02774 Artificial Intelligence +1604.02778 Multimedia +1604.02780 Artificial Intelligence +1604.02781 Information Theory +1604.02782 Cryptography and Security +1604.02784 Logic in Computer Science +1604.02786 +1604.02789 Classical Analysis and ODEs +1604.02790 Logic in Computer Science +1604.02791 Combinatorics +1604.02792 +1604.02793 Materials Science +1604.02797 Cryptography and Security +1604.02799 Accelerator Physics +1604.02801 Computer Vision and Pattern Recognition +1604.02805 Algebraic Geometry +1604.02808 Computer Vision and Pattern Recognition +1604.02812 Functional Analysis +1604.02813 Representation Theory +1604.02815 Computer Vision and Pattern Recognition +1604.02819 Materials Science +1604.02822 Number Theory +1604.02825 Information Theory +1604.02826 Complex Variables +1604.02827 Differential Geometry +1604.02829 Materials Science +1604.02830 Information Theory +1604.02833 Data Structures and Algorithms +1604.02835 Analysis of PDEs +1604.02838 Networking and Internet Architecture +1604.02839 Superconductivity +1604.02843 Computation and Language +1604.02844 Distributed, Parallel, and Cluster Computing +1604.02845 Algebraic Geometry +1604.02846 Functional Analysis +1604.02847 Networking and Internet Architecture +1604.02848 Materials Science +1604.02849 Instrumentation and Methods for Astrophysics +1604.02850 Differential Geometry +1604.02852 Information Theory +1604.02854 Mesoscale and Nanoscale Physics +1604.02858 Materials Science +1604.02860 Functional Analysis +1604.02862 Commutative Algebra +1604.02863 Rings and Algebras +1604.02865 Spectral Theory +1604.02867 Superconductivity +1604.02871 Functional Analysis +1604.02877 Optics +1604.02883 Social and Information Networks +1604.02890 Probability +1604.02896 Number Theory +1604.02897 Analysis of PDEs +1604.02900 Statistical Mechanics +1604.02902 Computer Vision and Pattern Recognition +1604.02904 Phenomenology +1604.02907 Networking and Internet Architecture +1604.02909 Quantitative Methods +1604.02912 +1604.02914 Systems and Control +1604.02919 Molecular Networks +1604.02920 Materials Science +1604.02925 Information Theory +1604.02926 Category Theory +1604.02928 Methodology +1604.02929 Physics and Society +1604.02930 Robotics +1604.02931 +1604.02932 Differential Geometry +1604.02933 Commutative Algebra +1604.02934 Robotics +1604.02935 Human-Computer Interaction +1604.02936 Differential Geometry +1604.02939 Algebraic Geometry +1604.02940 Mesoscale and Nanoscale Physics +1604.02941 Fluid Dynamics +1604.02945 Geometric Topology +1604.02948 Analysis of PDEs +1604.02949 Information Theory +1604.02950 Rings and Algebras +1604.02951 +1604.02958 Optics +1604.02959 Phenomenology +1604.02960 Information Theory +1604.02963 Fluid Dynamics +1604.02966 Physics Education +1604.02967 Information Theory +1604.02971 Networking and Internet Architecture +1604.02975 Computer Vision and Pattern Recognition +1604.02979 Computers and Society +1604.02980 Computers and Society +1604.02983 Differential Geometry +1604.02984 Analysis of PDEs +1604.02985 Materials Science +1604.02998 Materials Science +1604.03001 Cryptography and Security +1604.03002 Combinatorics +1604.03003 Systems and Control +1604.03004 Number Theory +1604.03005 Atomic Physics +1604.03008 Data Structures and Algorithms +1604.03009 Data Structures and Algorithms +1604.03010 Learning +1604.03012 Soft Condensed Matter +1604.03015 Number Theory +1604.03020 Programming Languages +1604.03021 Popular Physics +1604.03022 Dynamical Systems +1604.03024 Analysis of PDEs +1604.03029 Computation and Language +1604.03030 Data Structures and Algorithms +1604.03034 Learning +1604.03035 Computation and Language +1604.03037 History and Philosophy of Physics +1604.03040 Space Physics +1604.03041 Subcellular Processes +1604.03044 Computers and Society +1604.03047 Probability +1604.03050 Solar and Stellar Astrophysics +1604.03052 Quantitative Methods +1604.03054 Logic +1604.03056 Physics and Society +1604.03057 General Physics +1604.03063 Combinatorics +1604.03067 Algebraic Topology +1604.03069 Materials Science +1604.03074 Materials Science +1604.03075 Computer Vision and Pattern Recognition +1604.03079 Algebraic Geometry +1604.03081 Quantitative Methods +1604.03083 Emerging Technologies +1604.03087 Disordered Systems and Neural Networks +1604.03091 +1604.03092 Earth and Planetary Astrophysics +1604.03094 +math/0412558 General Topology +0704.4003 K-Theory and Homology +0709.0454 Geometric Topology +0709.2215 Geometric Topology +0803.1060 Differential Geometry +0803.1876 Geometric Topology +1008.2731 Differential Geometry +1010.3764 Differential Geometry +1012.5918 Metric Geometry +1102.0344 Differential Geometry +1104.0489 Computational Physics +1105.5046 Metric Geometry +1111.4586 +1205.0662 Metric Geometry +1208.1265 Cosmology and Nongalactic Astrophysics +1211.7080 Systems and Control +1212.0519 Earth and Planetary Astrophysics +1301.3510 Complex Variables +1301.5868 Representation Theory +1306.1363 +1311.3820 Quantum Gases +1311.4426 Quantum Gases +1311.4739 Disordered Systems and Neural Networks +1311.7275 +1312.5805 Optics +1312.7688 Software Engineering +1401.6622 +1402.1802 Quantitative Methods +1402.7237 Disordered Systems and Neural Networks +1403.5343 +1404.3311 Formal Languages and Automata Theory +1404.3944 Populations and Evolution +1404.4821 Distributed, Parallel, and Cluster Computing +1404.5567 Cosmology and Nongalactic Astrophysics +1405.0854 Logic in Computer Science +1405.3634 +1407.2759 Probability +1408.5767 Disordered Systems and Neural Networks +1410.1777 Probability +1411.0906 Digital Libraries +1411.2347 Strongly Correlated Electrons +1412.1663 Phenomenology +1501.00350 Representation Theory +1501.01977 Cosmology and Nongalactic Astrophysics +1502.02476 Learning +1502.06832 Combinatorics +1502.07739 +1502.07782 +1503.01479 +1503.04161 Statistics Theory +1503.04271 Instrumentation and Methods for Astrophysics +1503.04561 Solar and Stellar Astrophysics +1503.05564 Instrumentation and Methods for Astrophysics +1503.07343 Rings and Algebras +1504.00079 Analysis of PDEs +1504.03178 +1504.06217 Astrophysics of Galaxies +1504.06822 Probability +1505.01323 Probability +1505.06467 Number Theory +1506.01271 +1506.02169 Applications +1506.02473 Differential Geometry +1506.04011 Number Theory +1507.01230 Dynamical Systems +1507.03250 Data Analysis, Statistics and Probability +1507.03511 Populations and Evolution +1507.04720 Digital Libraries +1507.06066 Number Theory +1507.06990 Astrophysics of Galaxies +1508.03502 Materials Science +1508.03808 Methodology +1508.03865 Learning +1508.05558 +1508.07945 Statistical Mechanics +1509.01002 Strongly Correlated Electrons +1509.02015 Numerical Analysis +1509.02711 Physics and Society +1509.03303 History and Philosophy of Physics +1509.04418 Quantum Gases +1509.05101 +1509.05439 Number Theory +1509.06606 Solar and Stellar Astrophysics +1509.07039 +1509.07061 Phenomenology +1509.07110 Superconductivity +1509.07306 Cosmology and Nongalactic Astrophysics +1509.07468 Analysis of PDEs +1509.08082 Computer Vision and Pattern Recognition +1509.08745 Learning +1510.00292 Computation +1510.01102 Instrumentation and Detectors +1510.02213 +1510.02242 Differential Geometry +1510.06721 +1510.08716 Cosmology and Nongalactic Astrophysics +1511.01464 Phenomenology +1511.02926 Classical Analysis and ODEs +1511.03372 Mesoscale and Nanoscale Physics +1511.03423 Functional Analysis +1511.03676 Disordered Systems and Neural Networks +1511.04801 +1511.05957 Cryptography and Security +1511.06421 Learning +1511.07071 +1511.07812 Solar and Stellar Astrophysics +1511.08685 Quantum Gases +1511.09420 Theory +1512.00815 Experiment +1512.00927 Machine Learning +1512.01219 Astrophysics of Galaxies +1512.01615 Number Theory +1512.02774 Superconductivity +1512.02863 Computation +1512.03175 Materials Science +1512.04229 Materials Science +1512.05720 Mesoscale and Nanoscale Physics +1512.06587 Phenomenology +1512.06701 Theory +1512.06803 Quantum Gases +1512.07935 Differential Geometry +1601.00514 Probability +1601.03647 Phenomenology +1601.05357 Phenomenology +1601.06062 Computer Vision and Pattern Recognition +1601.06664 Networking and Internet Architecture +1601.07222 Instrumentation and Detectors +1602.01449 Data Analysis, Statistics and Probability +1602.01899 High Energy Astrophysical Phenomena +1602.02177 Chaotic Dynamics +1602.02513 +1602.04792 Computer Science and Game Theory +1602.05670 Physics and Society +1602.06156 Information Theory +1602.08383 Phenomenology +1603.00232 Instrumentation and Detectors +1603.00797 Computers and Society +1603.00941 Solar and Stellar Astrophysics +1603.00994 Superconductivity +1603.01457 +1603.01708 Distributed, Parallel, and Cluster Computing +1603.03325 Analysis of PDEs +1603.04098 Optimization and Control +1603.04860 Astrophysics of Galaxies +1603.05315 Systems and Control +1603.05331 Classical Analysis and ODEs +1603.05343 Neurons and Cognition +1603.05523 Metric Geometry +1603.05525 Metric Geometry +1603.05648 Instrumentation and Detectors +1603.05649 Instrumentation and Detectors +1603.05650 Instrumentation and Detectors +1603.05651 Accelerator Physics +1603.05671 Atomic Physics +1603.05673 Computation and Language +1603.05676 Complex Variables +1603.05679 Differential Geometry +1603.05680 Information Theory +1603.05681 +1603.05687 Astrophysics of Galaxies +1603.05693 Probability +1603.05695 Astrophysics of Galaxies +1603.05697 Differential Geometry +1603.05698 Classical Physics +1603.05699 Representation Theory +1603.05701 Networking and Internet Architecture +1603.05702 Category Theory +1603.05704 Combinatorics +1603.05707 Populations and Evolution +1603.05710 Systems and Control +1603.05714 +1603.05715 Data Structures and Algorithms +1603.05716 Classical Analysis and ODEs +1603.05718 Numerical Analysis +1603.05723 Analysis of PDEs +1603.05725 Group Theory +1603.05728 Complex Variables +1603.05730 Analysis of PDEs +1603.05731 High Energy Astrophysical Phenomena +1603.05732 Functional Analysis +1603.05733 Complex Variables +1603.05734 Earth and Planetary Astrophysics +1603.05736 Information Theory +1603.05738 Optimization and Control +1603.05739 Computation and Language +1603.05743 +1603.05745 Earth and Planetary Astrophysics +1603.05752 Networking and Internet Architecture +1603.05757 Operator Algebras +1603.05758 Methodology +1603.05759 +1603.05760 +1603.05762 Optimization and Control +1603.05763 Computer Vision and Pattern Recognition +1603.05764 Superconductivity +1603.05765 Algebraic Geometry +1603.05766 Applications +1603.05767 Optics +1603.05768 Quantum Algebra +1603.05769 Superconductivity +1603.05770 Machine Learning +1603.05772 Computer Vision and Pattern Recognition +1603.05775 Other Computer Science +1603.05778 +1603.05780 Mesoscale and Nanoscale Physics +1603.05782 Computer Vision and Pattern Recognition +1603.05784 Representation Theory +1603.05785 Analysis of PDEs +1603.05787 Rings and Algebras +1603.05788 Group Theory +1603.05791 Probability +1603.05793 Symplectic Geometry +1603.05799 Accelerator Physics +1603.05800 Learning +1603.05803 Combinatorics +1603.05808 Phenomenology +1603.05810 Number Theory +1603.05812 Classical Physics +1603.05819 Symbolic Computation +1603.05824 Neural and Evolutionary Computing +1603.05828 Social and Information Networks +1603.05836 +1603.05838 Differential Geometry +1603.05840 Optics +1603.05842 +1603.05845 Theory +1603.05850 Learning +1603.05851 Group Theory +1603.05855 Numerical Analysis +1603.05856 Astrophysics of Galaxies +1603.05858 Analysis of PDEs +1603.05865 Combinatorics +1603.05867 Numerical Analysis +1603.05868 Differential Geometry +1603.05873 Geometric Topology +1603.05874 +1603.05875 Computer Vision and Pattern Recognition +1603.05876 Optimization and Control +1603.05877 Mesoscale and Nanoscale Physics +1603.05880 Fluid Dynamics +1603.05883 Phenomenology +1603.05886 High Energy Astrophysical Phenomena +1603.05889 Probability +1603.05892 Soft Condensed Matter +1603.05894 Information Theory +1603.05898 Representation Theory +1603.05900 Optimization and Control +1603.05902 General Physics +1603.05904 General Physics +1603.05907 Space Physics +1603.05908 Optimization and Control +1603.05909 Group Theory +1603.05912 Representation Theory +1603.05915 Applications +1603.05916 Differential Geometry +1603.05917 Dynamical Systems +1603.05922 Distributed, Parallel, and Cluster Computing +1603.05925 Probability +1603.05930 Computer Vision and Pattern Recognition +1603.05932 Phenomenology +1603.05934 Tissues and Organs +1603.05936 Analysis of PDEs +1603.05939 Distributed, Parallel, and Cluster Computing +1603.05942 Social and Information Networks +1603.05943 +1603.05944 Computational Geometry +1603.05945 Data Structures and Algorithms +1603.05946 Analysis of PDEs +1603.05948 Number Theory +1603.05949 Probability +1603.05951 Systems and Control +1603.05955 Computer Vision and Pattern Recognition +1603.05957 Populations and Evolution +1603.05958 Phenomenology +1603.05962 Learning +1603.05964 Optics +1603.05965 General Physics +1603.05966 Optimization and Control +gr-qc/0506102 +math/0409396 Geometric Topology +math/0505462 Geometric Topology +0707.2348 Algebraic Geometry +0902.3133 Quantitative Methods +0902.3148 Quantitative Methods +1104.4879 Complex Variables +1110.1555 Symplectic Geometry +1110.4269 Differential Geometry +1111.1552 Algebraic Geometry +1112.3069 Algebraic Geometry +1204.1070 Classical Analysis and ODEs +1204.2568 Combinatorics +1204.2954 Differential Geometry +1204.2988 Differential Geometry +1204.5859 Logic in Computer Science +1205.1394 Representation Theory +1205.1646 Number Theory +1210.4634 Combinatorics +1301.6211 Number Theory +1301.7097 Number Theory +1302.1025 Symplectic Geometry +1303.5104 Numerical Analysis +1304.1034 +1304.2087 Complex Variables +1304.7448 Classical Analysis and ODEs +1305.2456 Combinatorics +1305.5996 Differential Geometry +1305.5997 Differential Geometry +1305.7509 Theory +1306.2429 Analysis of PDEs +1307.6375 Differential Geometry +1307.7422 Combinatorics +1308.6343 Mesoscale and Nanoscale Physics +1310.0803 High Energy Astrophysical Phenomena +1310.1177 Learning +1310.2168 Algebraic Geometry +1310.6213 Materials Science +1310.7212 Classical Analysis and ODEs +1310.7312 Probability +1311.3737 Analysis of PDEs +1311.4907 Metric Geometry +1312.2106 Astrophysics of Galaxies +1312.2979 Geometric Topology +1401.4025 Formal Languages and Automata Theory +1401.4071 Algebraic Geometry +1401.4913 Quantitative Methods +1401.5040 Differential Geometry +1401.5899 Machine Learning +1402.5202 +1403.0665 Number Theory +1403.6977 Networking and Internet Architecture +1404.2384 Materials Science +1404.6580 Learning +1404.6780 Algebraic Geometry +1405.0862 Analysis of PDEs +1405.1053 High Energy Astrophysical Phenomena +1405.1428 Solar and Stellar Astrophysics +1405.2512 Other Computer Science +1405.5100 Differential Geometry +1405.5556 Superconductivity +1405.5587 Combinatorics +1406.0064 Classical Analysis and ODEs +1406.0111 Data Analysis, Statistics and Probability +1406.3129 Popular Physics +1406.3374 Number Theory +1406.6463 Probability +1407.3107 Quantum Gases +1407.4306 Cosmology and Nongalactic Astrophysics +1407.8032 Computer Science and Game Theory +1407.8294 Analysis of PDEs +1408.2541 Algebraic Geometry +1408.5291 Probability +1408.6927 Information Theory +1409.5340 Artificial Intelligence +1409.5465 Representation Theory +1409.5840 +1411.0501 Probability +1411.1152 Economics +1411.1367 Computer Science and Game Theory +1411.2796 Differential Geometry +1411.4760 Representation Theory +1411.6257 Probability +1412.0578 Astrophysics of Galaxies +1412.1481 Functional Analysis +1412.2118 Logic in Computer Science +1412.2855 Cryptography and Security +1412.2903 Quantum Gases +1412.2997 Classical Analysis and ODEs +1412.6574 Computer Vision and Pattern Recognition +1412.8631 Group Theory +1501.02226 Applications +1501.02229 Probability +1501.02687 Differential Geometry +1502.02288 Dynamical Systems +1502.03014 Pattern Formation and Solitons +1502.03760 Mesoscale and Nanoscale Physics +1502.03837 Probability +1502.04900 Statistics Theory +1502.06926 Group Theory +1502.06975 +1503.00358 Strongly Correlated Electrons +1503.00985 Superconductivity +1503.01014 Superconductivity +1503.02845 Probability +1503.05979 Dynamical Systems +1504.01026 Mathematical Finance +1504.02371 Functional Analysis +1504.04152 Logic in Computer Science +1504.04617 +1504.06361 Optics +1504.06680 Group Theory +1505.01037 Phenomenology +1505.01698 Analysis of PDEs +1505.02561 Materials Science +1505.02644 General Finance +1505.06213 Instrumentation and Methods for Astrophysics +1505.06300 Dynamical Systems +1505.06730 Commutative Algebra +1505.07101 Superconductivity +1506.00082 Mathematical Finance +1506.00338 +1506.00506 Social and Information Networks +1506.05791 Superconductivity +1506.07298 Probability +1506.07766 Rings and Algebras +1506.08463 Atomic Physics +1507.01279 Learning +1507.01405 Strongly Correlated Electrons +1507.02314 Data Structures and Algorithms +1507.02560 Quantum Gases +1507.02608 Statistics Theory +1507.02665 Materials Science +1507.03632 Systems and Control +1507.04239 Theory +1507.04599 Mesoscale and Nanoscale Physics +1507.05087 Learning +1507.05309 Algebraic Geometry +1507.06182 Biological Physics +1507.06481 Cell Behavior +1507.07823 Dynamical Systems +1507.08372 Phenomenology +1507.08562 Spectral Theory +1507.08581 Astrophysics of Galaxies +1508.01388 +1508.01434 Optics +1508.01816 Classical Analysis and ODEs +1508.02746 Operator Algebras +1508.03173 Combinatorics +1508.03924 Economics +1508.04384 Statistical Mechanics +1508.04653 Analysis of PDEs +1508.04695 Soft Condensed Matter +1508.05854 Differential Geometry +1508.06384 Theory +1508.07012 Cosmology and Nongalactic Astrophysics +1508.07138 Mesoscale and Nanoscale Physics +1508.07473 +1509.01269 Mesoscale and Nanoscale Physics +1509.02860 Strongly Correlated Electrons +1509.03153 Dynamical Systems +1509.03398 Analysis of PDEs +1509.04145 Biological Physics +1509.05797 Algebraic Geometry +1509.06227 Dynamical Systems +1509.07619 Numerical Analysis +1509.08217 Geometric Topology +1509.08382 Geometric Topology +1509.08684 Astrophysics of Galaxies +1510.00409 General Physics +1510.00503 Computation +1510.03768 Statistical Mechanics +1510.04367 +1510.05381 +1510.05631 Populations and Evolution +1510.06068 Instrumentation and Detectors +1510.06300 Dynamical Systems +1510.06490 +1510.07708 +1510.08657 +1510.09049 Probability +1511.00115 +1511.01193 Operator Algebras +1511.02408 Superconductivity +1511.02802 +1511.03691 Astrophysics of Galaxies +1511.03864 Methodology +1511.04285 Robotics +1511.04850 Analysis of PDEs +1511.06560 Theory +1511.06732 Learning +1511.07005 Quantum Algebra +1511.07126 Chemical Physics +1511.07972 Artificial Intelligence +1511.08113 Computational Complexity +1511.08273 +1511.08464 Human-Computer Interaction +1511.08695 Cosmology and Nongalactic Astrophysics +1511.08775 Methodology +1511.09148 Cosmology and Nongalactic Astrophysics +1511.09296 Classical Analysis and ODEs +1512.00323 Algebraic Geometry +1512.00580 Symplectic Geometry +1512.01121 Classical Analysis and ODEs +1512.01285 Mesoscale and Nanoscale Physics +1512.01450 +1512.02143 Mesoscale and Nanoscale Physics +1512.03042 Mesoscale and Nanoscale Physics +1512.03965 Learning +1512.04989 Dynamical Systems +1512.05365 Cosmology and Nongalactic Astrophysics +1512.05600 Superconductivity +1512.05740 +1512.05777 Phenomenology +1512.05788 High Energy Astrophysical Phenomena +1512.05931 Numerical Analysis +1512.06919 +1512.07026 +1512.07329 +1512.08588 Rings and Algebras +1512.08733 Theory +1601.00983 Plasma Physics +1601.02965 Rings and Algebras +1601.03707 Strongly Correlated Electrons +1601.03971 +1601.04003 Mesoscale and Nanoscale Physics +1601.04288 Phenomenology +1601.04366 Learning +1601.04939 Strongly Correlated Electrons +1601.05557 Data Structures and Algorithms +1601.06752 +1601.06942 Superconductivity +1601.07019 Quantitative Methods +1601.07106 +1601.07699 Logic +1601.07943 Strongly Correlated Electrons +1602.00618 Strongly Correlated Electrons +1602.01648 Information Theory +1602.01795 Strongly Correlated Electrons +1602.03616 Neural and Evolutionary Computing +1602.04503 Cryptography and Security +1602.04631 Statistical Mechanics +1602.04907 Quantum Algebra +1602.05691 General Topology +1602.06702 Solar and Stellar Astrophysics +1602.06932 Networking and Internet Architecture +1602.06985 Combinatorics +1602.07371 +1602.07553 History and Overview +1602.07554 History and Overview +1602.07572 Computation and Language +1602.07774 Metric Geometry +1602.09095 Computational Physics +1603.00255 Phenomenology +1603.00575 High Energy Astrophysical Phenomena +1603.00987 Pricing of Securities +1603.01002 +1603.01914 Numerical Analysis +1603.02285 Cosmology and Nongalactic Astrophysics +1603.02609 Human-Computer Interaction +1603.03218 Probability +1603.04191 Rings and Algebras +1603.04458 Theory +1603.05120 Cosmology and Nongalactic Astrophysics +1603.05373 Risk Management +1603.05829 Computer Science and Game Theory +1603.06385 Dynamical Systems +1603.06498 Probability +1603.08818 Quantum Gases +1603.08953 Solar and Stellar Astrophysics +1603.09017 Probability +1603.09325 Numerical Analysis +1603.09483 +1604.00940 Atomic Physics +1604.01067 Numerical Analysis +1604.01496 Functional Analysis +1604.01665 Phenomenology +1604.01799 High Energy Astrophysical Phenomena +1604.01939 Superconductivity +1604.02611 Fluid Dynamics +1604.03198 Atomic Physics +1604.04024 Computer Vision and Pattern Recognition +1604.04174 Number Theory +1604.04230 Logic +1604.04275 Combinatorics +1604.04558 Information Retrieval +1604.05173 Classical Analysis and ODEs +1604.05246 Quantum Algebra +1604.05541 Dynamical Systems +1604.05789 Astrophysics of Galaxies +1604.06155 Algebraic Geometry +1604.06246 Digital Libraries +1604.06387 Group Theory +1604.06985 Learning +1604.07036 Discrete Mathematics +1604.07123 Algebraic Geometry +1604.07270 Algebraic Geometry +1604.08356 Medical Physics +1604.08425 Materials Science +1604.08441 Classical Analysis and ODEs +1604.08584 +1604.08784 Software Engineering +1605.00002 Physics and Society +1605.00130 Classical Analysis and ODEs +1605.00176 Learning +1605.00434 Networking and Internet Architecture +1605.00735 Phenomenology +1605.00905 High Energy Astrophysical Phenomena +1605.01371 Number Theory +1605.01431 Solar and Stellar Astrophysics +1605.01435 Databases +1605.01442 Optimization and Control +1605.01704 Materials Science +1605.01713 Learning +1605.01960 Superconductivity +1605.02027 Probability +1605.02031 Optimization and Control +1605.02069 Fluid Dynamics +1605.02082 Applications +1605.02084 Solar and Stellar Astrophysics +1605.02085 Instrumentation and Detectors +1605.02087 Combinatorics +1605.02088 High Energy Astrophysical Phenomena +1605.02089 High Energy Astrophysical Phenomena +1605.02090 Analysis of PDEs +1605.02093 Computers and Society +1605.02094 Disordered Systems and Neural Networks +1605.02096 High Energy Astrophysical Phenomena +1605.02099 Learning +1605.02103 Geometric Topology +1605.02105 Optimization and Control +1605.02107 Classical Physics +1605.02109 +1605.02110 Atomic Physics +1605.02114 Dynamical Systems +1605.02115 Social and Information Networks +1605.02117 Differential Geometry +1605.02119 Optics +1605.02120 Optics +1605.02121 Numerical Analysis +1605.02123 Data Structures and Algorithms +1605.02124 Combinatorics +1605.02129 Computation and Language +1605.02130 Computation and Language +1605.02131 Combinatorics +1605.02132 Digital Libraries +1605.02134 Computation and Language +1605.02138 Methodology +1605.02139 Fluid Dynamics +1605.02140 Computer Vision and Pattern Recognition +1605.02144 Methodology +1605.02150 Computation and Language +1605.02151 Instrumentation and Methods for Astrophysics +1605.02153 +1605.02157 Analysis of PDEs +1605.02160 Artificial Intelligence +1605.02164 Computer Vision and Pattern Recognition +1605.02168 Data Structures and Algorithms +1605.02170 Statistical Mechanics +1605.02171 Complex Variables +1605.02174 Social and Information Networks +1605.02175 Information Theory +1605.02180 Cosmology and Nongalactic Astrophysics +1605.02181 +1605.02185 Logic in Computer Science +1605.02188 Statistical Finance +1605.02190 Machine Learning +1605.02196 Systems and Control +1605.02197 Social and Information Networks +1605.02198 Number Theory +1605.02199 Superconductivity +1605.02200 Classical Analysis and ODEs +1605.02201 Optics +1605.02202 Statistical Mechanics +1605.02204 Instrumentation and Detectors +1605.02205 Probability +1605.02206 Logic in Computer Science +1605.02210 Databases +1605.02212 Functional Analysis +1605.02213 Information Theory +1605.02215 Digital Libraries +1605.02216 Learning +1605.02218 Solar and Stellar Astrophysics +1605.02221 Solar and Stellar Astrophysics +1605.02222 Combinatorics +1605.02223 Solar and Stellar Astrophysics +1605.02224 Data Structures and Algorithms +1605.02227 Computers and Society +1605.02228 Group Theory +1605.02229 Algebraic Geometry +1605.02230 Networking and Internet Architecture +1605.02232 General Mathematics +1605.02235 Symplectic Geometry +1605.02238 Information Theory +1605.02239 +1605.02240 Computer Vision and Pattern Recognition +1605.02243 +1605.02244 Superconductivity +1605.02245 Computational Geometry +1605.02246 +1605.02248 Optics +1605.02249 +1605.02251 Molecular Networks +1605.02255 Earth and Planetary Astrophysics +1605.02257 Computation and Language +1605.02258 Geometric Topology +1605.02260 Computer Vision and Pattern Recognition +1605.02263 Software Engineering +1605.02265 Computers and Society +1605.02266 Computer Vision and Pattern Recognition +1605.02267 Fluid Dynamics +1605.02269 Computers and Society +1605.02270 Materials Science +1605.02271 Adaptation and Self-Organizing Systems +1605.02275 Number Theory +1605.02277 Machine Learning +1605.02278 Mesoscale and Nanoscale Physics +1605.02281 Information Theory +1605.02283 Statistical Finance +1605.02284 Complex Variables +1605.02286 Differential Geometry +1605.02287 Networking and Internet Architecture +1605.02288 Social and Information Networks +1605.02289 Computer Vision and Pattern Recognition +1605.02290 Information Theory +1605.02291 Combinatorics +1605.02298 Combinatorics +1605.02301 Chemical Physics +1605.02302 Algebraic Geometry +1605.02303 +1605.02306 Geometric Topology +1605.02307 Combinatorics +1605.02315 Machine Learning +1605.02317 Information Theory +1605.02318 Soft Condensed Matter +1605.02320 +1605.02321 Artificial Intelligence +1605.02326 Statistics Theory +1605.02327 Superconductivity +1605.02328 Cryptography and Security +1605.02332 Methodology +1605.02337 Data Structures and Algorithms +1605.02340 Analysis of PDEs +1605.02341 Optimization and Control +1605.02344 Mesoscale and Nanoscale Physics +1605.02347 Optimization and Control +1605.02349 Information Theory +1605.02350 Logic in Computer Science +1605.02352 Probability +1605.02353 Data Structures and Algorithms +1605.02358 High Energy Astrophysical Phenomena +1605.02361 Combinatorics +1605.02362 Analysis of PDEs +1605.02363 Analysis of PDEs +1605.02364 Number Theory +1605.02366 Combinatorics +1605.02367 Materials Science +1605.02376 Dynamical Systems +1605.02377 Social and Information Networks +1605.02378 Digital Libraries +1605.02380 Strongly Correlated Electrons +1605.02382 Representation Theory +1605.02387 Algebraic Topology +1605.02388 Theory +1605.02389 Representation Theory +1605.02398 Number Theory +1605.02400 Classical Analysis and ODEs +1605.02402 Computer Science and Game Theory +1605.02412 Analysis of PDEs +1605.02414 Combinatorics +1605.02415 Combinatorics +1605.02416 +1605.02417 Statistical Mechanics +1605.02418 Methodology +1605.02419 Logic +1605.02422 Materials Science +1605.02423 Information Theory +1605.02424 Computer Vision and Pattern Recognition +1605.02425 Earth and Planetary Astrophysics +1605.02427 Sound +1605.02430 +1605.02432 Distributed, Parallel, and Cluster Computing +1605.02434 Number Theory +1605.02436 Dynamical Systems +1605.02440 Number Theory +1605.02441 Information Theory +1605.02442 Artificial Intelligence +1605.02443 Complex Variables +1605.02444 Rings and Algebras +1605.02445 Multiagent Systems +1605.02446 Computation +1605.02448 Differential Geometry +1605.02452 Optimization and Control +1605.02453 Fluid Dynamics +1605.02455 Other Computer Science +1605.02456 Classical Analysis and ODEs +1605.02457 Computation and Language +1605.02460 Computer Vision and Pattern Recognition +1605.02461 +1605.02463 Medical Physics +1605.02464 Computer Vision and Pattern Recognition +1605.02465 Plasma Physics +1605.02466 +1605.02468 Optics +1605.02469 Combinatorics +1605.02470 Learning +1605.02471 Chaotic Dynamics +1605.02472 Mathematical Finance +1605.02474 Distributed, Parallel, and Cluster Computing +1605.02478 Number Theory +1605.02479 Fluid Dynamics +1605.02480 Functional Analysis +1605.02484 Functional Analysis +1605.02485 Functional Analysis +1605.02486 Neural and Evolutionary Computing +1605.02487 Experiment +1605.02489 Computer Science and Game Theory +1605.02490 Dynamical Systems +1605.02493 Differential Geometry +1605.02495 Information Theory +1605.02499 Computational Geometry +1605.02500 Classical Analysis and ODEs +1605.02501 Differential Geometry +1605.02508 Classical Analysis and ODEs +1605.02510 Numerical Analysis +1605.02512 Differential Geometry +1605.02513 Materials Science +1605.02514 Other Computer Science +1605.02515 Optics +1605.02518 Symbolic Computation +1605.02521 Materials Science +1605.02523 Analysis of PDEs +1605.02524 Instrumentation and Detectors +1605.02525 Instrumentation and Detectors +1605.02530 Data Structures and Algorithms +1605.02535 Analysis of PDEs +1605.02537 Plasma Physics +1605.02538 Number Theory +1605.02540 Machine Learning +1605.02541 Machine Learning +1605.02542 General Physics +1605.02543 General Physics +1605.02544 Functional Analysis +1605.02547 General Physics +1605.02550 Chaotic Dynamics +1605.02551 Logic +1605.02555 Fluid Dynamics +1605.02556 General Physics +1605.02557 General Physics +1605.02559 Computer Vision and Pattern Recognition +1605.02560 Applications +1605.02561 Methodology +1605.02563 Probability +1605.02566 Materials Science +1605.02567 Number Theory +1605.02568 Popular Physics +1605.02571 General Topology +1605.02576 Algebraic Geometry +1605.02577 Optimization and Control +1605.02579 Algebraic Geometry +1605.02581 Analysis of PDEs +1605.02582 History and Overview +1605.02583 History and Overview +1605.02584 Analysis of PDEs +1605.02585 Optimization and Control +1605.02587 Analysis of PDEs +1605.02588 Discrete Mathematics +1605.02589 Analysis of PDEs +1605.02592 Computation and Language +1605.02594 Accelerator Physics +1605.02595 Analysis of PDEs +1605.02599 Atomic Physics +1605.02602 Rings and Algebras +1605.02605 Multimedia +1605.02606 Networking and Internet Architecture +1605.02607 Information Theory +1605.02609 Neurons and Cognition +1605.02612 Mesoscale and Nanoscale Physics +1605.02614 Analysis of PDEs +1605.02616 Classical Analysis and ODEs +1605.02619 Neural and Evolutionary Computing +1605.02626 Computational Geometry +1605.02628 Formal Languages and Automata Theory +1605.02633 Learning +1605.02637 Number Theory +1605.02642 Quantum Gases +1605.02644 Probability +1605.02646 Cryptography and Security +1605.02647 Quantum Gases +1605.02651 Computer Science and Game Theory +1605.02652 Multiagent Systems +1605.02653 +1605.02659 Probability +1605.02660 Computers and Society +1605.02661 Software Engineering +1605.02662 Theory +1605.02665 Probability +1605.02668 Number Theory +1605.02669 Distributed, Parallel, and Cluster Computing +1605.02670 Statistical Mechanics +1605.02676 Mesoscale and Nanoscale Physics +1605.02677 Artificial Intelligence +1605.02678 Quantum Algebra +1605.02680 Cosmology and Nongalactic Astrophysics +1605.02682 Algebraic Topology +1605.02684 Phenomenology +1605.02688 Symbolic Computation +1605.02690 Combinatorics +1605.02691 Dynamical Systems +1605.02692 Instrumentation and Detectors +1605.02693 Machine Learning +1605.02700 Functional Analysis +1605.02707 Earth and Planetary Astrophysics +1605.02714 Probability +1605.02717 Number Theory +1605.02720 Neural and Evolutionary Computing +1605.02721 Algebraic Geometry +hep-ph/0503164 Phenomenology +math-ph/0606035 +math/0303142 Analysis of PDEs +math/9903034 Algebraic Geometry +quant-ph/9910029 +0708.0444 +0709.4485 Combinatorics +0908.2791 Combinatorics +1012.4724 Statistical Mechanics +1101.2080 Differential Geometry +1101.3619 History and Philosophy of Physics +1102.1617 Symplectic Geometry +1201.5135 Data Structures and Algorithms +1203.6127 Information Theory +1204.2065 General Finance +1207.0088 Mesoscale and Nanoscale Physics +1207.2200 Chemical Physics +1207.3455 High Energy Astrophysical Phenomena +1207.6326 Instrumentation and Methods for Astrophysics +1208.2618 Physics and Society +1208.3430 Data Analysis, Statistics and Probability +1208.4823 Logic +1211.2343 +1211.4293 Information Theory +1212.2379 +1212.5662 Number Theory +1301.2148 Chemical Physics +1301.5361 Instrumentation and Methods for Astrophysics +1302.0113 Cosmology and Nongalactic Astrophysics +1302.3987 Differential Geometry +1302.5658 Geometric Topology +1303.3381 Probability +1304.2042 General Topology +1304.4626 Data Structures and Algorithms +1306.0204 Logic +1306.6637 Cosmology and Nongalactic Astrophysics +1307.1175 +1307.2444 Combinatorics +1307.2526 Operator Algebras +1307.6669 High Energy Astrophysical Phenomena +1308.5501 Instrumentation and Methods for Astrophysics +1309.1403 History and Philosophy of Physics +1309.2444 Distributed, Parallel, and Cluster Computing +1310.5311 Number Theory +1310.6118 Mesoscale and Nanoscale Physics +1310.7178 +1310.7467 Applications +1311.2009 Optimization and Control +1311.3755 Statistics Theory +1311.5904 Distributed, Parallel, and Cluster Computing +1312.0104 High Energy Astrophysical Phenomena +1312.0778 Space Physics +1312.2024 Probability +1312.2204 Category Theory +1312.2695 Cosmology and Nongalactic Astrophysics +1312.4511 Social and Information Networks +1312.5893 Probability +1401.0645 Symbolic Computation +1401.3034 Statistics Theory +1401.3972 Probability +1401.4086 Dynamical Systems +1401.5336 Geometric Topology +1401.6963 Discrete Mathematics +1402.0123 Atomic Physics +1402.3460 Cosmology and Nongalactic Astrophysics +1402.3496 +1402.5842 Analysis of PDEs +1402.6178 Combinatorics +1402.6504 Optimization and Control +1402.7031 Biological Physics +1403.2193 Optics +1403.4644 Optics +1403.5986 Systems and Control +1404.0443 Representation Theory +1404.0807 Computer Science and Game Theory +1405.1261 Materials Science +1405.6379 Combinatorics +1406.0390 Numerical Analysis +1406.3084 Performance +1406.3587 Numerical Analysis +1406.5784 Atomic Physics +1406.6757 High Energy Astrophysical Phenomena +1406.7842 Learning +1407.1829 Fluid Dynamics +1407.3259 Geometric Topology +1407.4219 +1407.7258 Functional Analysis +1407.7725 Mathematical Finance +1407.8330 Optimization and Control +1408.2902 Physics and Society +1408.3374 Data Structures and Algorithms +1408.5263 Mesoscale and Nanoscale Physics +1408.5794 Number Theory +1409.0734 Representation Theory +1409.1231 Theory +1409.1562 Geometric Topology +1409.2448 Genomics +1409.4167 General Topology +1409.4535 High Energy Astrophysical Phenomena +1409.4573 Machine Learning +1409.7446 History and Philosophy of Physics +1409.8168 General Mathematics +1410.6596 General Topology +1411.0201 Strongly Correlated Electrons +1411.0978 Soft Condensed Matter +1411.1166 Statistics Theory +1411.1390 +1411.1719 Optimization and Control +1411.4459 Combinatorics +1411.6982 Functional Analysis +1411.7520 Plasma Physics +1412.0213 +1412.2976 Rings and Algebras +1412.3353 Molecular Networks +1412.4170 Statistics Theory +1412.8756 Numerical Analysis +1412.8760 Dynamical Systems +1501.00206 Phenomenology +1501.01058 Optimization and Control +1501.01268 Spectral Theory +1501.01664 High Energy Astrophysical Phenomena +1501.04289 +1501.04990 +1502.00154 Optimization and Control +1502.02522 Experiment +1502.03506 Optics +1502.04213 Instrumentation and Detectors +1502.05003 Probability +1503.00052 Statistical Mechanics +1503.00443 +1503.00621 Risk Management +1503.01349 Algebraic Geometry +1503.01609 Statistical Mechanics +1503.04559 Geometric Topology +1503.05322 Probability +1503.05901 Dynamical Systems +1503.06360 Dynamical Systems +1503.06396 General Topology +1503.06472 Theory +1503.06837 History and Philosophy of Physics +1503.06866 Neural and Evolutionary Computing +1503.06977 Algebraic Topology +1503.07759 Distributed, Parallel, and Cluster Computing +1503.08709 +1503.08710 +1503.08826 Cosmology and Nongalactic Astrophysics +1504.01036 Combinatorics +1504.01689 Probability +1504.01849 Theory +1504.02881 Numerical Analysis +1504.07463 Algebraic Geometry +1504.08061 Algebraic Geometry +1504.08139 Analysis of PDEs +1505.00483 Operator Algebras +1505.02177 Classical Analysis and ODEs +1505.04374 Differential Geometry +1505.06689 Phenomenology +1505.06881 Group Theory +1505.07259 High Energy Astrophysical Phenomena +1505.07743 Solar and Stellar Astrophysics +1505.08112 Theory +1506.01590 +1506.02000 Geometric Topology +1506.02335 Combinatorics +1506.03015 Functional Analysis +1506.04380 Combinatorics +1506.04726 Algebraic Geometry +1506.04830 Systems and Control +1506.04913 Mesoscale and Nanoscale Physics +1506.05005 Theory +1506.06459 Complex Variables +1506.07875 +1506.08963 General Mathematics +1506.09203 Classical Analysis and ODEs +1507.00105 Strongly Correlated Electrons +1507.00746 Soft Condensed Matter +1507.01204 Optics +1507.01715 Software Engineering +1507.02051 Optimization and Control +1507.02713 Probability +1507.03144 Algebraic Geometry +1507.03570 +1507.04541 Mesoscale and Nanoscale Physics +1507.04867 Materials Science +1507.06054 Materials Science +1507.06563 Theory +1507.07475 Instrumentation and Detectors +1507.08137 Human-Computer Interaction +1507.08242 Combinatorics +1507.08434 Phenomenology +1507.08633 +1508.00377 Artificial Intelligence +1508.01039 Analysis of PDEs +1508.01242 Atomic Physics +1508.01251 Rings and Algebras +1508.01953 Probability +1508.02144 Number Theory +1508.02156 Materials Science +1508.02249 Chemical Physics +1508.03418 Accelerator Physics +1508.03781 Strongly Correlated Electrons +1508.04030 Information Theory +1508.05413 Mesoscale and Nanoscale Physics +1508.05895 Phenomenology +1508.06145 Mesoscale and Nanoscale Physics +1508.07845 Distributed, Parallel, and Cluster Computing +1509.00017 Astrophysics of Galaxies +1509.00341 Algebraic Geometry +1509.01277 Computer Vision and Pattern Recognition +1509.01391 Mesoscale and Nanoscale Physics +1509.01457 General Physics +1509.03789 Artificial Intelligence +1509.04127 Accelerator Physics +1509.05243 Physics and Society +1509.05542 General Topology +1509.05913 Materials Science +1509.06208 Mesoscale and Nanoscale Physics +1509.06283 Cosmology and Nongalactic Astrophysics +1509.06735 +1509.07653 Number Theory +1509.07998 Cosmology and Nongalactic Astrophysics +1509.08212 Statistical Mechanics +1509.08234 Quantum Gases +1509.08452 Physics and Society +1509.08463 Cosmology and Nongalactic Astrophysics +1510.00391 Phenomenology +1510.01345 +1510.01360 Strongly Correlated Electrons +1510.01571 Complex Variables +1510.02473 Phenomenology +1510.02658 Information Theory +1510.03122 +1510.03420 Classical Analysis and ODEs +1510.03862 Mesoscale and Nanoscale Physics +1510.04494 +1510.04532 Combinatorics +1510.04701 +1510.05124 Representation Theory +1510.05302 Experiment +1510.08296 Mesoscale and Nanoscale Physics +1510.08314 Dynamical Systems +1510.08497 Materials Science +1511.00460 Materials Science +1511.00521 Methodology +1511.00770 Physics and Society +1511.00874 Phenomenology +1511.00923 Soft Condensed Matter +1511.01462 Analysis of PDEs +1511.01574 Computation and Language +1511.02062 Algebraic Topology +1511.02209 K-Theory and Homology +1511.02511 Cryptography and Security +1511.03560 +1511.03812 Information Theory +1511.03962 Computation and Language +1511.04222 Complex Variables +1511.04383 Machine Learning +1511.04725 Statistical Mechanics +1511.05050 Theory +1511.05458 Mesoscale and Nanoscale Physics +1511.05467 Machine Learning +1511.05510 Plasma Physics +1511.05647 +1511.05711 +1511.05751 +1511.05765 Strongly Correlated Electrons +1511.05962 Cosmology and Nongalactic Astrophysics +1511.06342 Learning +1511.06346 Phenomenology +1511.06394 Computer Vision and Pattern Recognition +1511.06697 Analysis of PDEs +1511.07057 Information Theory +1511.07243 Algebraic Geometry +1511.07289 Learning +1511.07979 +1511.07987 Operator Algebras +1511.08002 Theory +1511.09080 Artificial Intelligence +1512.00752 Combinatorics +1512.00905 Applications +1512.02459 Superconductivity +1512.02476 Disordered Systems and Neural Networks +1512.03326 +1512.04910 Statistical Mechanics +1512.05491 Phenomenology +1512.06349 Phenomenology +1512.06788 Formal Languages and Automata Theory +1512.06821 Optics +1512.07053 Quantum Gases +1512.07355 Plasma Physics +1512.07831 Social and Information Networks +1512.08921 Strongly Correlated Electrons +1512.08951 Information Theory +1512.09164 +1512.09175 Theory +1601.00313 Multiagent Systems +1601.00596 Rings and Algebras +1601.02886 Dynamical Systems +1601.03544 Chemical Physics +1601.03840 +1601.04697 Number Theory +1601.04925 Strongly Correlated Electrons +1601.05072 K-Theory and Homology +1601.05617 Differential Geometry +1601.06261 Functional Analysis +1601.06395 Differential Geometry +1602.00335 Geometric Topology +1602.00646 Systems and Control +1602.00797 Quantum Algebra +1602.01962 Theory +1602.02067 Disordered Systems and Neural Networks +1602.02338 Learning +1602.02343 Computer Vision and Pattern Recognition +1602.03329 +1602.03338 Numerical Analysis +1602.03897 Analysis of PDEs +1602.03949 Optics +1602.03981 +1602.03990 Methodology +1602.04693 Cryptography and Security +1602.04844 Social and Information Networks +1602.05106 Cryptography and Security +1602.05260 Accelerator Physics +1602.05536 Information Theory +1602.05662 Number Theory +1602.05663 Classical Analysis and ODEs +1602.05664 Physics Education +1602.05926 Combinatorics +1602.06062 Theory +1602.06111 Optimization and Control +1602.06159 Data Structures and Algorithms +1602.06293 Soft Condensed Matter +1602.06295 General Finance +1602.06301 Instrumentation and Methods for Astrophysics +1602.06303 Theory +1602.06311 Strongly Correlated Electrons +1602.06314 Solar and Stellar Astrophysics +1602.06315 Classical Analysis and ODEs +1602.06317 Genomics +1602.06318 Statistics Theory +1602.06319 Classical Analysis and ODEs +1602.06320 Number Theory +1602.06324 Soft Condensed Matter +1602.06328 Complex Variables +1602.06329 General Physics +1602.06330 +1602.06331 General Physics +1602.06333 Numerical Analysis +1602.06337 Astrophysics of Galaxies +1602.06339 Group Theory +1602.06344 Numerical Analysis +1602.06348 Biological Physics +1602.06349 Machine Learning +1602.06351 Dynamical Systems +1602.06352 Physics Education +1602.06353 +1602.06354 Theory +1602.06359 Computation and Language +1602.06360 Statistical Mechanics +1602.06361 Physics Education +1602.06363 Phenomenology +1602.06366 Methodology +1602.06367 Physics Education +1602.06368 Analysis of PDEs +1602.06369 Physics Education +1602.06372 Metric Geometry +1602.06373 Information Theory +1602.06374 Physics Education +1602.06375 Information Theory +1602.06376 Analysis of PDEs +1602.06380 Combinatorics +1602.06382 +1602.06386 Algebraic Geometry +1602.06387 +1602.06388 Physics Education +1602.06389 Physics Education +1602.06390 Physics Education +1602.06391 Physics Education +1602.06392 Physics Education +1602.06394 Differential Geometry +1602.06396 Strongly Correlated Electrons +1602.06397 Atmospheric and Oceanic Physics +1602.06398 Superconductivity +1602.06399 Information Theory +1602.06403 Algebraic Geometry +1602.06411 Data Structures and Algorithms +1602.06413 Soft Condensed Matter +1602.06415 Space Physics +1602.06417 Systems and Control +1602.06418 Cosmology and Nongalactic Astrophysics +1602.06422 Theory +1602.06423 Physics Education +1602.06424 Space Physics +1602.06426 Data Structures and Algorithms +1602.06427 Algebraic Geometry +1602.06428 Chemical Physics +1602.06431 Machine Learning +1602.06432 +1602.06438 Numerical Analysis +1602.06439 Computer Vision and Pattern Recognition +1602.06441 Physics Education +1602.06444 Numerical Analysis +1602.06445 Number Theory +1602.06447 Biological Physics +1602.06450 Algebraic Topology +1602.06452 Astrophysics of Galaxies +1602.06453 Software Engineering +1602.06455 Dynamical Systems +1602.06458 Databases +1602.06460 Multiagent Systems +1602.06462 Artificial Intelligence +1602.06464 Complex Variables +1602.06466 Quantitative Methods +1602.06467 Dynamical Systems +1602.06473 Number Theory +1602.06474 Algebraic Geometry +1602.06475 Probability +1602.06476 Numerical Analysis +1602.06480 Rings and Algebras +1602.06484 Artificial Intelligence +1602.06485 Rings and Algebras +1602.06487 Materials Science +1602.06488 Distributed, Parallel, and Cluster Computing +1602.06489 Distributed, Parallel, and Cluster Computing +1602.06490 Mesoscale and Nanoscale Physics +1602.06494 Algebraic Geometry +1602.06497 Physics Education +1602.06499 Physics Education +1602.06515 Mesoscale and Nanoscale Physics +1602.06519 Mesoscale and Nanoscale Physics +1602.06522 Disordered Systems and Neural Networks +1602.06529 Information Theory +1602.06533 Geophysics +1602.06535 Analysis of PDEs +1602.06537 Combinatorics +1602.06538 Number Theory +1602.06539 Learning +1602.06544 Superconductivity +1602.06546 Algebraic Geometry +1602.06548 Combinatorics +1602.06551 Analysis of PDEs +1602.06552 Optics +1602.06554 Plasma Physics +1602.06557 Theory +1602.06558 Differential Geometry +1602.06560 Geometric Topology +1602.06564 Computer Vision and Pattern Recognition +1602.06565 Differential Geometry +1602.06566 Artificial Intelligence +1602.06567 Metric Geometry +1602.06568 Programming Languages +1602.06571 Computer Science and Game Theory +1602.06572 Number Theory +1602.06574 Atomic Physics +1602.06576 Functional Analysis +1602.06577 Machine Learning +1602.06579 Applications +1602.06583 Classical Analysis and ODEs +1602.06584 Populations and Evolution +1602.06591 Molecular Networks +1602.06595 Methodology +1602.06597 Commutative Algebra +1602.06598 Information Theory +1602.06599 Software Engineering +1602.06600 Theory +1602.06601 Optics +1602.06602 Numerical Analysis +1602.06603 Number Theory +1602.06605 Analysis of PDEs +1602.06607 Algebraic Geometry +1602.06608 Number Theory +1602.06609 Methodology +1602.06611 Optics +1602.06614 Representation Theory +1602.06615 Analysis of PDEs +1602.06616 Differential Geometry +1602.06617 Number Theory +1602.06621 Optimization and Control +1602.06626 Probability +1602.06629 Probability +1602.06634 Human-Computer Interaction +1602.06635 Instrumentation and Detectors +1602.06636 Chaotic Dynamics +1602.06637 Physics Education +1602.06643 Databases +1602.06645 Graphics +1602.06650 Analysis of PDEs +1602.06651 Phenomenology +1602.06652 Robotics +1602.06653 Networking and Internet Architecture +1602.06654 Learning +1602.06660 Physics Education +1602.06666 Physics Education +1602.06669 Strongly Correlated Electrons +1602.06672 Fluid Dynamics +1602.06675 Robotics +1602.06680 Dynamical Systems +1602.06682 Differential Geometry +1602.06683 Distributed, Parallel, and Cluster Computing +1602.06694 Rings and Algebras +1602.06695 Information Theory +1602.06696 Methodology +1602.06698 Information Theory +1602.06701 Machine Learning +1602.06707 Materials Science +1602.06708 Data Structures and Algorithms +1602.06713 Earth and Planetary Astrophysics +1602.06717 Applications +1602.06720 Fluid Dynamics +1602.06722 Information Theory +1602.06724 Number Theory +1602.06731 Multiagent Systems +1602.06735 Group Theory +1602.06736 Algebraic Topology +1602.06738 Functional Analysis +1602.06739 Astrophysics of Galaxies +1602.06746 Learning +1602.06749 Analysis of PDEs +1602.06751 Combinatorics +1602.06763 Mathematical Software +1602.06768 Strongly Correlated Electrons +1602.06774 Materials Science +1602.06775 Space Physics +1602.06779 Geometric Topology +1602.06781 Numerical Analysis +1602.06783 +1602.06794 Optimization and Control +1602.06796 Combinatorics +1602.06797 Computation and Language +1602.06799 Instrumentation and Methods for Astrophysics +1602.06801 Instrumentation and Detectors +1602.06802 Optics +1602.06803 High Energy Astrophysical Phenomena +1602.06817 Combinatorics +1602.06819 Data Structures and Algorithms +1602.06822 Learning +1602.06823 Software Engineering +1602.06827 Neurons and Cognition +1602.06831 Superconductivity +1602.06834 Mesoscale and Nanoscale Physics +1602.06835 Physics and Society +1602.06838 Solar and Stellar Astrophysics +1602.06839 Mesoscale and Nanoscale Physics +1602.06841 Functional Analysis +1602.06842 Chaotic Dynamics +1602.06843 Dynamical Systems +1602.06845 Dynamical Systems +1602.06849 +1602.06853 Fluid Dynamics +1602.06857 +1602.06859 Cell Behavior +1602.06863 Learning +1602.06864 Numerical Analysis +1602.06869 Numerical Analysis +1602.06870 +1602.06871 Computers and Society +1602.06872 Data Structures and Algorithms +1602.06873 Differential Geometry +1602.06874 +1602.06876 Representation Theory +1602.06879 Numerical Analysis +1602.06882 Spectral Theory +1602.06887 Differential Geometry +1602.06891 General Topology +1602.06896 Statistics Theory +1602.06900 Superconductivity +1602.06904 Computer Vision and Pattern Recognition +1602.06910 Discrete Mathematics +1602.06911 Algebraic Topology +1602.06913 Information Theory +1602.06917 Superconductivity +1602.06925 Networking and Internet Architecture +1602.06926 Physics Education +1602.06933 Complex Variables +1602.06934 Functional Analysis +1602.06940 Computer Science and Game Theory +1602.06941 Differential Geometry +1602.06943 General Finance +math/0609464 Spectral Theory +quant-ph/0103116 +quant-ph/0311106 +0805.3541 Quantum Algebra +0807.4730 +0901.0020 Quantum Algebra +0903.4075 Soft Condensed Matter +0906.1364 Quantum Algebra +0908.1542 +0911.2197 Probability +1004.0887 Computation +1101.0015 Quantum Algebra +1102.5644 Phenomenology +1105.5382 Combinatorics +1110.0472 Quantum Algebra +1111.4640 Representation Theory +1112.1923 Combinatorics +1205.5077 Number Theory +1206.6629 Algebraic Topology +1207.5748 Representation Theory +1211.3351 +1212.1515 Algebraic Geometry +1308.2558 Quantum Algebra +1310.2529 Algebraic Geometry +1312.2388 Fluid Dynamics +1312.5473 Probability +1312.6163 Classical Analysis and ODEs +1401.0050 Information Theory +1401.1956 Algebraic Geometry +1402.0064 Computational Physics +1403.6149 Combinatorics +1404.0700 Optimization and Control +1404.4529 Combinatorics +1404.5871 Commutative Algebra +1406.1502 Multiagent Systems +1406.7509 Classical Analysis and ODEs +1409.2456 Computational Geometry +1409.2568 +1409.6246 Differential Geometry +1410.3554 Superconductivity +1410.5186 Computer Science and Game Theory +1410.6072 Computational Complexity +1410.6252 +1410.6800 Functional Analysis +1411.2273 Neurons and Cognition +1411.3282 Quantum Algebra +1412.0869 Analysis of PDEs +1412.1458 Number Theory +1412.3530 Optimization and Control +1412.8583 +1501.00621 +1501.02223 Networking and Internet Architecture +1501.05726 Materials Science +1501.06965 Operator Algebras +1502.02420 Symplectic Geometry +1502.06699 Analysis of PDEs +1502.07137 Computational Physics +1503.00542 Mesoscale and Nanoscale Physics +1503.03404 Materials Science +1503.09010 Analysis of PDEs +1503.09157 Numerical Analysis +1504.05802 Number Theory +1505.01445 +1505.01650 Differential Geometry +1505.05075 +1505.05086 Cosmology and Nongalactic Astrophysics +1505.07744 Physics and Society +1506.00517 +1506.03588 Cryptography and Security +1506.05860 Machine Learning +1506.06112 Learning +1506.08275 Differential Geometry +1507.00658 Strongly Correlated Electrons +1507.02242 Combinatorics +1507.02370 Number Theory +1507.03018 Phenomenology +1507.06807 Computation +1507.06849 Numerical Analysis +1507.07092 Numerical Analysis +1507.08219 Combinatorics +1507.08913 Mesoscale and Nanoscale Physics +1508.02729 Optics +1508.05965 Astrophysics of Galaxies +1509.00480 Computational Physics +1509.03588 Strongly Correlated Electrons +1509.04996 Strongly Correlated Electrons +1509.08953 Earth and Planetary Astrophysics +1510.01991 Information Retrieval +1510.03272 Soft Condensed Matter +1510.03734 Theory +1510.04165 Other Computer Science +1510.05368 +1510.05970 Computer Vision and Pattern Recognition +1510.06062 Quantitative Methods +1511.01220 Cosmology and Nongalactic Astrophysics +1511.01406 Theory +1511.01518 Statistical Mechanics +1511.05545 +1511.06101 Algebraic Topology +1511.06778 High Energy Astrophysical Phenomena +1511.07168 Information Theory +1511.08573 Soft Condensed Matter +1512.01326 Instrumentation and Methods for Astrophysics +1512.01725 Social and Information Networks +1512.02103 Materials Science +1512.03436 +1512.04128 Phenomenology +1512.04755 +1512.04777 Soft Condensed Matter +1512.05098 Dynamical Systems +1512.05635 Methodology +1512.06853 Phenomenology +1512.07104 Probability +1512.07532 Complex Variables +1512.07620 Theory +1512.08688 +1601.00872 Number Theory +1601.01182 Strongly Correlated Electrons +1601.01571 Phenomenology +1601.02602 Optimization and Control +1601.04021 +1601.04601 Medical Physics +1601.07877 High Energy Astrophysical Phenomena +1601.08203 +1602.00310 Computer Vision and Pattern Recognition +1602.00545 Symbolic Computation +1602.00607 Theory +1602.01572 Algebraic Geometry +1602.02657 Quantum Gases +1602.03824 Theory +1602.04373 Analysis of PDEs +1602.04804 Strongly Correlated Electrons +1602.06448 Phenomenology +1602.07203 Geometric Topology +1602.07894 Optics +1603.00252 Quantum Gases +1603.03442 Theory +1603.04635 Materials Science +1603.04782 Numerical Analysis +1603.05721 Optics +1603.05896 Soft Condensed Matter +1603.06230 Quantitative Methods +1603.06900 Optics +1603.08031 Earth and Planetary Astrophysics +1603.09207 Materials Science +1604.02952 Solar and Stellar Astrophysics +1604.03878 Combinatorics +1604.04504 Complex Variables +1604.04566 High Energy Astrophysical Phenomena +1604.05645 Analysis of PDEs +1604.06414 Distributed, Parallel, and Cluster Computing +1605.00287 Computer Vision and Pattern Recognition +1605.00343 Combinatorics +1605.00812 Probability +1605.01368 Computer Vision and Pattern Recognition +1605.01645 Functional Analysis +1605.01758 Probability +1605.03271 Computational Geometry +1605.03388 Classical Analysis and ODEs +1605.03630 Theory +1605.04078 Methodology +1605.04206 Combinatorics +1605.04652 Distributed, Parallel, and Cluster Computing +1605.04896 Functional Analysis +1605.04925 Astrophysics of Galaxies +1605.04948 Trading and Market Microstructure +1605.04998 Quantum Gases +1605.05014 Analysis of PDEs +1605.05108 Probability +1605.05234 Software Engineering +1605.05316 Differential Geometry +1605.05317 History and Overview +1605.05318 Analysis of PDEs +1605.05319 Multimedia +1605.05326 Astrophysics of Galaxies +1605.05334 Computational Physics +1605.05340 Analysis of PDEs +1605.05342 Other Computer Science +1605.05343 Experiment +1605.05346 Number Theory +1605.05348 Chemical Physics +1605.05349 Machine Learning +1605.05351 Optimization and Control +1605.05352 Cosmology and Nongalactic Astrophysics +1605.05353 Information Theory +1605.05354 Dynamical Systems +1605.05356 +1605.05358 Classical Physics +1605.05361 Differential Geometry +1605.05362 Computation and Language +1605.05363 Information Theory +1605.05369 Information Retrieval +1605.05379 Information Theory +1605.05380 Algebraic Geometry +1605.05382 Applications +1605.05384 Networking and Internet Architecture +1605.05391 Information Theory +1605.05394 Geometric Topology +1605.05395 Computer Vision and Pattern Recognition +1605.05398 Differential Geometry +1605.05400 Number Theory +1605.05401 Social and Information Networks +1605.05402 Physics and Society +1605.05404 Data Structures and Algorithms +1605.05405 Combinatorics +1605.05406 Geophysics +1605.05410 Analysis of PDEs +1605.05415 Computer Vision and Pattern Recognition +1605.05416 Computation and Language +1605.05420 Data Analysis, Statistics and Probability +1605.05424 Optics +1605.05425 Algebraic Geometry +1605.05426 +1605.05429 Computation +1605.05430 Combinatorics +1605.05431 +1605.05436 Data Structures and Algorithms +1605.05437 Physics and Society +1605.05438 Distributed, Parallel, and Cluster Computing +1605.05439 Materials Science +1605.05440 Computer Vision and Pattern Recognition +1605.05444 Numerical Analysis +1605.05445 +1605.05446 +1605.05447 High Energy Astrophysical Phenomena +1605.05448 Neural and Evolutionary Computing +1605.05452 Classical Analysis and ODEs +1605.05458 K-Theory and Homology +1605.05459 Strongly Correlated Electrons +1605.05461 Materials Science +1605.05462 Computer Vision and Pattern Recognition +1605.05463 Group Theory +1605.05465 Space Physics +1605.05466 Computer Vision and Pattern Recognition +1605.05468 Analysis of PDEs +1605.05469 Complex Variables +1605.05470 +1605.05474 Optimization and Control +1605.05478 Optics +1605.05480 Dynamical Systems +1605.05481 Numerical Analysis +1605.05482 Numerical Analysis +1605.05487 Probability +1605.05491 Fluid Dynamics +1605.05493 Experiment +1605.05494 Symplectic Geometry +1605.05495 Geophysics +1605.05496 Instrumentation and Methods for Astrophysics +1605.05498 Probability +1605.05500 Strongly Correlated Electrons +1605.05506 Analysis of PDEs +1605.05509 Machine Learning +1605.05510 Combinatorics +1605.05514 Materials Science +1605.05518 Plasma Physics +1605.05520 Astrophysics of Galaxies +1605.05521 Dynamical Systems +1605.05522 Networking and Internet Architecture +1605.05529 Space Physics +1605.05530 Geometric Topology +1605.05532 Chaotic Dynamics +1605.05533 Fluid Dynamics +1605.05538 Computer Vision and Pattern Recognition +1605.05540 Algebraic Geometry +1605.05542 Discrete Mathematics +1605.05545 Economics +1605.05546 Computational Geometry +1605.05547 Strongly Correlated Electrons +1605.05549 Cryptography and Security +1605.05551 Logic in Computer Science +1605.05552 Analysis of PDEs +1605.05555 Probability +1605.05556 Quantum Gases +1605.05557 Statistical Mechanics +1605.05558 Optimization and Control +1605.05560 Information Theory +1605.05561 Quantum Algebra +1605.05564 Analysis of PDEs +1605.05566 General Literature +1605.05570 Space Physics +1605.05571 Combinatorics +1605.05575 Cosmology and Nongalactic Astrophysics +1605.05576 Earth and Planetary Astrophysics +1605.05577 Complex Variables +1605.05580 Computers and Society +1605.05583 Differential Geometry +1605.05586 General Physics +1605.05589 High Energy Astrophysical Phenomena +1605.05593 +1605.05598 +1605.05599 Combinatorics +1605.05601 Combinatorics +1605.05602 Methodology +1605.05604 Probability +1605.05611 Solar and Stellar Astrophysics +1605.05612 Logic +1605.05615 Statistics Theory +1605.05619 Distributed, Parallel, and Cluster Computing +1605.05621 +1605.05627 Phenomenology +1605.05628 Learning +1605.05629 Computational Geometry +1605.05630 General Topology +1605.05631 Economics +1605.05632 Phenomenology +1605.05633 Information Theory +1605.05634 Quantum Algebra +1605.05636 Strongly Correlated Electrons +1605.05639 Information Theory +1605.05641 Optimization and Control +1605.05652 Computer Vision and Pattern Recognition +1605.05654 High Energy Astrophysical Phenomena +1605.05656 Operator Algebras +1605.05657 Biological Physics +1605.05660 Phenomenology +1605.05663 Popular Physics +1605.05664 +1605.05666 Materials Science +1605.05667 Combinatorics +1605.05669 Superconductivity +1605.05671 Statistics Theory +1605.05676 Artificial Intelligence +1605.05677 Plasma Physics +1605.05678 Theory +1605.05679 Complex Variables +1605.05681 Other Quantitative Biology +1605.05682 Other Quantitative Biology +1605.05684 Other Quantitative Biology +1605.05685 Other Quantitative Biology +1605.05686 Other Quantitative Biology +1605.05687 Other Quantitative Biology +1605.05688 Other Quantitative Biology +1605.05689 Analysis of PDEs +1605.05693 Information Theory +1605.05697 Machine Learning +1605.05702 Plasma Physics +1605.05703 Other Condensed Matter +1605.05705 Quantum Algebra +1605.05710 Learning +1605.05713 Information Theory +1605.05714 Numerical Analysis +1605.05715 Methodology +1605.05719 Representation Theory +math/0110235 Algebraic Geometry +math/0611442 Algebraic Geometry +math/0703151 Combinatorics +0705.1232 General Physics +0705.3895 Genomics +0706.1413 +0706.2409 +0707.3863 Probability +0801.2505 Classical Analysis and ODEs +0802.2251 +0803.3470 Materials Science +0804.4140 Optics +0812.2380 Data Analysis, Statistics and Probability +0901.0306 Phenomenology +0901.1489 Theory +0902.0292 +0902.0767 Theory +0902.1904 Theory +0902.3346 Phenomenology +0902.4041 Theory +0902.4515 Theory +0903.1096 Phenomenology +0903.1330 Phenomenology +0903.1865 Theory +0904.0429 Theory +0904.0711 Theory +0904.1748 Phenomenology +0904.2159 +0904.2272 Phenomenology +0904.4467 Theory +0905.0174 +0905.0235 Phenomenology +0905.0384 Cosmology and Nongalactic Astrophysics +0905.2433 +0905.2722 Phenomenology +0906.3263 Phenomenology +0906.5074 Mesoscale and Nanoscale Physics +0908.3385 Superconductivity +0909.2882 Fluid Dynamics +0909.4958 Chaotic Dynamics +0910.2633 Chaotic Dynamics +0911.2334 Adaptation and Self-Organizing Systems +0911.4800 Statistical Mechanics +0912.2273 Phenomenology +0912.3003 Theory +0912.3270 Phenomenology +0912.4148 Plasma Physics +1003.3942 +1003.4237 Probability +1003.4251 Probability +1005.3347 Superconductivity +1005.4113 +1008.0357 Soft Condensed Matter +1009.5845 Algebraic Geometry +1012.5844 +1101.3542 Phenomenology +1102.1098 History and Philosophy of Physics +1102.2408 Statistical Mechanics +1103.2621 +1103.5631 Accelerator Physics +1103.6223 Chaotic Dynamics +1104.3127 Chaotic Dynamics +1106.6226 Chaotic Dynamics +1108.1693 Data Analysis, Statistics and Probability +1109.1234 Theory +1111.6540 Dynamical Systems +1112.3212 Information Theory +1202.6661 High Energy Astrophysical Phenomena +1203.2588 Optics +1203.4662 Number Theory +1203.5940 Chaotic Dynamics +1204.3278 Chaotic Dynamics +1204.3917 Cosmology and Nongalactic Astrophysics +1205.0875 Chaotic Dynamics +1205.6771 +1206.2978 Optics +1206.3986 Chaotic Dynamics +1210.7528 Dynamical Systems +1211.1412 Mesoscale and Nanoscale Physics +1211.1839 Geometric Topology +1211.3140 Phenomenology +1211.3837 +1211.6317 Optics +1211.7282 Astrophysics of Galaxies +1301.0529 Complex Variables +1301.2943 Optics +1301.5945 Optics +1301.6055 Optics +1302.2965 Optics +1302.2980 Mesoscale and Nanoscale Physics +1302.5980 Optics +1303.5823 Optics +1304.0465 Geometric Topology +1304.1064 Optics +1304.1383 Statistics Theory +1304.3520 Optics +1304.6674 Optics +1304.7337 Optics +1304.7871 +1305.5909 Optics +1306.5119 Quantum Gases +1307.5077 Optics +1307.5269 Analysis of PDEs +1308.1537 Analysis of PDEs +1308.3244 High Energy Astrophysical Phenomena +1309.0077 Optics +1309.0666 Classical Analysis and ODEs +1310.5373 Group Theory +1310.6696 Geometric Topology +1310.6756 Cosmology and Nongalactic Astrophysics +1311.1863 Geometric Topology +1311.5510 Differential Geometry +1311.6855 Group Theory +1311.7014 Materials Science +1312.2361 Theory +1312.7093 Geometric Topology +1312.7609 Cosmology and Nongalactic Astrophysics +1402.1871 K-Theory and Homology +1403.2086 Lattice +1403.6654 Pattern Formation and Solitons +1403.8075 General Mathematics +1404.3442 Computer Science and Game Theory +1404.6321 Theory +1405.0414 Pattern Formation and Solitons +1405.3573 Functional Analysis +1406.1884 High Energy Astrophysical Phenomena +1407.7001 Quantum Algebra +1409.7587 Combinatorics +1409.7886 Phenomenology +1410.3846 Operator Algebras +1410.3881 +1410.6318 Geometric Topology +1411.0651 Group Theory +1411.3845 Theory +1411.6329 Geometric Topology +1501.06803 Analysis of PDEs +1502.00970 Operator Algebras +1502.03129 Theory +1502.03260 +1502.04209 Number Theory +1502.04317 Accelerator Physics +1502.05130 +1503.00271 Analysis of PDEs +1503.01424 Theory +1503.02036 Algebraic Topology +1503.03610 Differential Geometry +1503.04695 Plasma Physics +1503.05910 Differential Geometry +1503.06620 Complex Variables +1503.07410 Theory +1503.07419 Analysis of PDEs +1503.07685 Optimization and Control +1504.00727 Analysis of PDEs +1504.01034 Differential Geometry +1504.02284 +1504.02465 Theory +1504.04290 +1504.04692 Analysis of PDEs +1504.05013 Algebraic Geometry +1504.05830 Data Structures and Algorithms +1504.06079 Statistics Theory +1504.06835 Geometric Topology +1504.07439 +1504.07936 General Physics +1505.03757 Theory +1505.04212 Materials Science +1505.05859 Rings and Algebras +1505.07657 Theory +1506.00692 Symplectic Geometry +1506.01507 Computational Physics +1506.02095 Dynamical Systems +1506.02150 Analysis of PDEs +1506.02417 +1506.02598 Theory +1506.03664 Analysis of PDEs +1506.04139 Geometric Topology +1506.04441 Algebraic Geometry +1506.06975 Computation +1506.07804 Dynamical Systems +1506.08672 Differential Geometry +1507.00374 Strongly Correlated Electrons +1507.02017 Probability +1507.02287 Theory +1507.02340 Complex Variables +1507.03191 Probability +1507.03832 Quantum Gases +1507.06002 Physics and Society +1507.06607 +1507.07231 Geometric Topology +1507.08317 Superconductivity +1508.01082 Theory +1508.01640 Information Theory +1508.02007 Analysis of PDEs +1508.02197 Other Condensed Matter +1508.03521 Pattern Formation and Solitons +1508.03877 Probability +1508.06021 Information Theory +1508.06043 Dynamical Systems +1508.06722 +1508.07807 Category Theory +1509.00158 Astrophysics of Galaxies +1509.00847 Theory +1509.01073 Algebraic Topology +1509.01116 Learning +1509.01366 +1509.01725 Dynamical Systems +1509.02066 +1509.02363 Materials Science +1509.02635 Superconductivity +1509.02744 Materials Science +1509.02790 Numerical Analysis +1509.02792 Numerical Analysis +1509.03216 Algebraic Geometry +1509.03228 Algebraic Topology +1509.03600 Learning +1509.04140 Soft Condensed Matter +1509.04141 Chaotic Dynamics +1509.04645 Theory +1509.04650 Probability +1509.05206 Quantum Gases +1509.05578 Differential Geometry +1509.05699 Classical Analysis and ODEs +1509.05892 Classical Analysis and ODEs +1509.06568 +1509.07080 Probability +1509.07736 Optics +1509.08253 +1509.08309 Information Theory +1509.08607 Strongly Correlated Electrons +1509.09056 Theory +1510.00145 Analysis of PDEs +1510.00474 Applications +1510.00492 +1510.00677 Geometric Topology +1510.01054 Theory +1510.01279 +1510.02038 Statistical Mechanics +1510.02252 Dynamical Systems +1510.02338 Systems and Control +1510.04293 Astrophysics of Galaxies +1510.04556 Instrumentation and Methods for Astrophysics +1510.04648 Phenomenology +1510.04916 Spectral Theory +1510.05645 Astrophysics of Galaxies +1510.06023 Theory +1510.06234 High Energy Astrophysical Phenomena +1510.06238 +1510.06452 Data Structures and Algorithms +1510.07418 Biological Physics +1510.07476 Methodology +1510.08791 Geometric Topology +1510.09036 Materials Science +1510.09160 +1510.09220 Materials Science +1511.00587 Soft Condensed Matter +1511.01119 Algebraic Topology +1511.01959 Statistical Mechanics +1511.02269 Functional Analysis +1511.02468 +1511.03965 Molecular Networks +1511.04316 +1511.05877 Applications +1511.06168 Algebraic Topology +1511.06589 +1511.07308 Functional Analysis +1511.07338 Information Theory +1511.08034 +1511.08218 Phenomenology +1511.08371 Materials Science +1511.08746 Information Theory +1511.08749 Physics and Society +1512.00183 Rings and Algebras +1512.00503 Probability +1512.00526 Cosmology and Nongalactic Astrophysics +1512.00604 Materials Science +1512.00606 Symplectic Geometry +1512.00644 Materials Science +1512.01835 +1512.01970 Spectral Theory +1512.03273 Mesoscale and Nanoscale Physics +1512.03678 Number Theory +1512.03999 Theory +1512.04439 Mesoscale and Nanoscale Physics +1512.05450 Optics +1512.06098 Machine Learning +1512.06443 Theory +1512.06596 +1512.06859 Astrophysics of Galaxies +1512.09042 Experiment +1512.09085 Instrumentation and Methods for Astrophysics +1512.09312 Experiment +1601.00129 Numerical Analysis +1601.00723 Geometric Topology +1601.00854 Statistical Mechanics +1601.01056 +1601.01075 Instrumentation and Detectors +1601.01147 Applications +1601.01310 Theory +1601.01509 Statistical Mechanics +1601.01719 Instrumentation and Detectors +1601.01886 Combinatorics +1601.02066 Differential Geometry +1601.02496 Optics +1601.02525 Optics +1601.02776 Materials Science +1601.02933 +1601.03051 Earth and Planetary Astrophysics +1601.03052 Earth and Planetary Astrophysics +1601.03130 Statistical Mechanics +1601.03300 Phenomenology +1601.03445 Fluid Dynamics +1601.03549 Instrumentation and Detectors +1601.03726 +1601.03949 Optics +1601.03993 +1601.04030 Theory +1601.04174 Information Theory +1601.04429 Numerical Analysis +1601.04663 Theory +1601.05013 +1601.05555 +1601.05902 +1601.05931 Materials Science +1601.05944 Differential Geometry +1601.06160 Dynamical Systems +1601.06283 +1601.06724 Soft Condensed Matter +1601.06963 Phenomenology +1601.07142 +1601.07169 +1601.07239 Information Theory +1601.07545 +1601.07986 Differential Geometry +1601.08075 Algebraic Geometry +1601.08149 Exactly Solvable and Integrable Systems +1602.00083 Phenomenology +1602.00087 Optimization and Control +1602.00111 Theory +1602.00147 Physics and Society +1602.00205 Optics +1602.00209 Phenomenology +1602.00992 Representation Theory +1602.01135 +1602.01217 Theory +1602.01288 Instrumentation and Methods for Astrophysics +1602.01763 Statistical Mechanics +1602.02459 Phenomenology +1602.02737 Information Theory +1602.02936 Theory +1602.03257 +1602.03282 Other Condensed Matter +1602.03916 Theory +1602.03932 +1602.03977 Optics +1602.04029 +1602.04228 Phenomenology +1602.04315 +1602.04344 Superconductivity +1602.04436 Learning +1602.04566 Theory +1602.05083 +1602.05096 +1602.05145 Optics +1602.05405 +1602.05562 Phenomenology +1602.05763 Astrophysics of Galaxies +1602.06060 +1602.06061 +1602.06066 Phenomenology +1602.06068 +1602.06211 +1602.06270 Phenomenology +1602.06730 Experiment +1602.06840 +1602.06847 Information Theory +1602.06848 +1602.06851 Mesoscale and Nanoscale Physics +1602.06928 Strongly Correlated Electrons +1602.07020 Phenomenology +1602.07102 Statistical Mechanics +1602.07138 +1602.07226 Data Analysis, Statistics and Probability +1602.07242 Computational Physics +1602.07421 Strongly Correlated Electrons +1602.07811 Social and Information Networks +1602.07924 Strongly Correlated Electrons +1602.07949 Instrumentation and Detectors +1602.07994 Functional Analysis +1602.08102 Mesoscale and Nanoscale Physics +1602.08289 Theory +1602.08330 Complex Variables +1602.08843 Materials Science +1602.08872 +1602.08897 Quantum Gases +1602.09085 Strongly Correlated Electrons +1602.09091 Theory +1603.00420 Phenomenology +1603.00516 Physics Education +1603.01003 Statistics Theory +1603.01064 Atomic Physics +1603.01096 Computer Vision and Pattern Recognition +1603.01123 Materials Science +1603.01182 Artificial Intelligence +1603.02431 Mesoscale and Nanoscale Physics +1603.02522 +1603.02574 +1603.02595 Optimization and Control +1603.02707 Probability +1603.02793 Optics +1603.02931 +1603.03006 Phenomenology +1603.03051 Quantum Gases +1603.03064 Phenomenology +1603.03180 +1603.03445 Phenomenology +1603.03617 +1603.03717 +1603.03787 Atomic Physics +1603.03797 Phenomenology +1603.03851 Superconductivity +1603.03926 Materials Science +1603.03979 Mesoscale and Nanoscale Physics +1603.04097 Quantum Gases +1603.04195 Materials Science +1603.04231 Number Theory +1603.04431 Functional Analysis +1603.04511 +1603.04731 Phenomenology +1603.05038 Computation +1603.05051 Analysis of PDEs +1603.05500 Dynamical Systems +1603.05801 Optics +1603.06187 Disordered Systems and Neural Networks +1603.06411 Theory +1603.06576 Theory +1603.06749 +1603.07202 Spectral Theory +1603.07414 Optics +1603.07854 Phenomenology +1603.08033 Strongly Correlated Electrons +1603.08759 Probability +1603.08880 High Energy Astrophysical Phenomena +1603.09206 Statistical Mechanics +1603.09414 +1603.09456 Mesoscale and Nanoscale Physics +1603.09480 Functional Analysis +1603.09616 Materials Science +1603.09664 +1604.00208 Phenomenology +1604.00212 Phenomenology +1604.00247 Chaotic Dynamics +1604.00257 Numerical Analysis +1604.00267 Phenomenology +1604.00333 Phenomenology +1604.00403 Physics Education +1604.00418 Theory +1604.00431 Dynamical Systems +1604.00453 +1604.00547 Computational Engineering, Finance, and Science +1604.00701 Optics +1604.00769 Fluid Dynamics +1604.00813 +1604.00896 Computer Science and Game Theory +1604.00983 Strongly Correlated Electrons +1604.01207 +1604.01247 Quantum Algebra +1604.01262 Phenomenology +1604.01279 Astrophysics of Galaxies +1604.01451 Numerical Analysis +1604.01775 Astrophysics of Galaxies +1604.01963 +1604.01994 Instrumentation and Detectors +1604.02043 Quantum Algebra +1604.02225 Representation Theory +1604.02420 Phenomenology +1604.02584 Mesoscale and Nanoscale Physics +1604.02634 Machine Learning +1604.02894 Numerical Analysis +1604.03045 Phenomenology +1604.03051 Medical Physics +1604.03237 +1604.03370 Phenomenology +1604.03416 Phenomenology +1604.03479 Theory +1604.03485 Phenomenology +1604.03584 Learning +1604.03771 Strongly Correlated Electrons +1604.03970 Pattern Formation and Solitons +1604.03971 Soft Condensed Matter +1604.04108 Theory +1604.04237 Computational Physics +1604.04477 Analysis of PDEs +1604.04492 Systems and Control +1604.04572 Phenomenology +1604.04611 Phenomenology +1604.04625 High Energy Astrophysical Phenomena +1604.04869 Mesoscale and Nanoscale Physics +1604.05183 Theory +1604.05343 +1604.05438 +1604.05761 +1604.05812 Fluid Dynamics +1604.05845 Earth and Planetary Astrophysics +1604.06319 +1604.06322 Mesoscale and Nanoscale Physics +1604.06328 Earth and Planetary Astrophysics +1604.06385 +1604.06496 +1604.06520 Phenomenology +1604.06550 +1604.06662 Phenomenology +1604.06709 Phenomenology +1604.06731 Phenomenology +1604.06786 Theory +1604.06839 Probability +1604.07046 Statistical Mechanics +1604.07204 Fluid Dynamics +1604.07763 Astrophysics of Galaxies +1604.07799 +1604.07810 +1604.07934 Dynamical Systems +1604.07960 +1604.08001 Multimedia +1604.08020 +1604.08068 Fluid Dynamics +1604.08323 Analysis of PDEs +1604.08353 Classical Physics +1604.08495 +1604.08550 +1604.08619 Operator Algebras +1604.08746 Mesoscale and Nanoscale Physics +1604.08767 Phenomenology +1604.08771 History and Philosophy of Physics +1605.00133 Numerical Analysis +1605.00237 +1605.00380 Atmospheric and Oceanic Physics +1605.00524 Superconductivity +1605.00536 Accelerator Physics +1605.00893 Analysis of PDEs +1605.01070 Theory +1605.01174 Statistical Mechanics +1605.01179 Phenomenology +1605.01310 Disordered Systems and Neural Networks +1605.01338 Phenomenology +1605.01393 Solar and Stellar Astrophysics +1605.01420 +1605.01509 Superconductivity +1605.02167 Instrumentation and Detectors +1605.02172 Phenomenology +1605.02191 Chaotic Dynamics +1605.02375 Numerical Analysis +1605.02554 Mesoscale and Nanoscale Physics +1605.02575 Disordered Systems and Neural Networks +1605.02645 Data Analysis, Statistics and Probability +1605.02902 Materials Science +1605.02919 Phenomenology +1605.03206 +1605.03225 +1605.03400 Numerical Analysis +1605.03450 Number Theory +1605.03552 Theory +1605.03574 Astrophysics of Galaxies +1605.03686 Quantum Gases +1605.03748 Theory +1605.03910 Numerical Analysis +1605.04036 Fluid Dynamics +1605.04685 Mesoscale and Nanoscale Physics +1605.04828 Theory +1605.04858 Solar and Stellar Astrophysics +1605.04999 Instrumentation and Methods for Astrophysics +1605.05214 Strongly Correlated Electrons +1605.05254 +1605.05375 Statistical Mechanics +1605.05484 Theory +1605.05508 Computational Physics +1605.05562 +1605.05674 +1605.05945 Theory +1605.06040 Classical Physics +1605.06091 Phenomenology +1605.06173 Plasma Physics +1605.06346 Theory +1605.06501 Theory +1605.06711 Learning +1605.06808 High Energy Astrophysical Phenomena +1605.07155 Mesoscale and Nanoscale Physics +1605.07161 Phenomenology +1605.07174 Machine Learning +1605.07183 Phenomenology +1605.07227 Materials Science +1605.07284 Information Theory +1605.07386 +1605.07431 Combinatorics +1605.07599 Mesoscale and Nanoscale Physics +1605.07635 Solar and Stellar Astrophysics +1605.07666 +1605.07698 Atmospheric and Oceanic Physics +1605.07967 Atomic Physics +1605.07977 Disordered Systems and Neural Networks +1605.08060 Theory +1605.08202 +1605.08227 Phenomenology +1605.08435 Algebraic Geometry +1605.08487 Information Theory +1605.08572 Chemical Physics +1605.08713 Statistical Mechanics +1605.08818 Fluid Dynamics +1605.08835 Astrophysics of Galaxies +1605.09328 Molecular Networks +1605.09356 Spectral Theory +1605.09490 Statistical Mechanics +1605.09521 Instrumentation and Detectors +1605.09628 Statistical Mechanics +1606.00064 Strongly Correlated Electrons +1606.00355 Phenomenology +1606.00419 Phenomenology +1606.00455 Phenomenology +1606.00566 Atmospheric and Oceanic Physics +1606.00599 Instrumentation and Detectors +1606.00685 +1606.00810 Theory +1606.00837 Phenomenology +1606.00863 Cell Behavior +1606.01224 Materials Science +1606.01415 Fluid Dynamics +1606.01547 Materials Science +1606.01741 Phenomenology +1606.02029 +1606.02036 +1606.02136 +1606.02160 Fluid Dynamics +1606.02383 Numerical Analysis +1606.02425 Theory +1606.02523 High Energy Astrophysical Phenomena +1606.02554 Theory +1606.02589 Differential Geometry +1606.02611 Representation Theory +1606.02721 Phenomenology +1606.02745 Theory +1606.02769 Biological Physics +1606.02839 Disordered Systems and Neural Networks +1606.02880 Phenomenology +1606.03273 +1606.03334 Optics +1606.03400 Superconductivity +1606.03573 +1606.03627 Mesoscale and Nanoscale Physics +1606.03638 +1606.03640 Theory +1606.03690 +1606.03835 Fluid Dynamics +1606.03851 Information Theory +1606.03964 Instrumentation and Detectors +1606.04193 Lattice +1606.04388 +1606.04420 High Energy Astrophysical Phenomena +1606.04663 Analysis of PDEs +1606.04717 +1606.04724 Theory +1606.04744 Theory +1606.04895 High Energy Astrophysical Phenomena +1606.04921 High Energy Astrophysical Phenomena +1606.05010 Optics +1606.05080 Instrumentation and Detectors +1606.05120 Astrophysics of Galaxies +1606.05324 Theory +1606.05338 Cosmology and Nongalactic Astrophysics +1606.05376 Statistical Mechanics +1606.05434 Superconductivity +1606.05581 +1606.05695 Earth and Planetary Astrophysics +1606.06073 Instrumentation and Methods for Astrophysics +1606.06255 Dynamical Systems +1606.06260 Theory +1606.06270 Mesoscale and Nanoscale Physics +1606.06330 Probability +1606.06468 Strongly Correlated Electrons +1606.06546 Optics +1606.06652 Plasma Physics +1606.06849 +1606.06855 Plasma Physics +1606.06906 +1606.06914 Mesoscale and Nanoscale Physics +1606.07016 Phenomenology +1606.07078 Theory +1606.07191 Accelerator Physics +1606.07193 High Energy Astrophysical Phenomena +1606.07439 Astrophysics of Galaxies +1606.07482 Optics +1606.07543 Strongly Correlated Electrons +1606.07579 Adaptation and Self-Organizing Systems +1606.07732 Superconductivity +1606.07737 Phenomenology +1606.07816 Strongly Correlated Electrons +1606.07924 +1606.07930 +1606.08073 +1606.08123 Statistical Mechanics +1606.08148 Statistical Mechanics +1606.08217 General Physics +1606.08312 Mesoscale and Nanoscale Physics +1606.08429 Theory +1606.08594 +1606.08669 Strongly Correlated Electrons +1606.08882 Machine Learning +1606.08953 Theory +1606.09037 High Energy Astrophysical Phenomena +1606.09052 Quantum Algebra +1606.09119 Pattern Formation and Solitons +1606.09159 Instrumentation and Detectors +1606.09243 High Energy Astrophysical Phenomena +1606.09304 Theory +1606.09338 Mesoscale and Nanoscale Physics +1606.09410 Plasma Physics +1606.09425 Superconductivity +1607.00204 Phenomenology +1607.00241 +1607.00263 Theory +1607.00363 Physics Education +1607.00413 +1607.00617 Statistical Mechanics +1607.00654 Dynamical Systems +1607.00708 Superconductivity +1607.00728 Theory +1607.00763 Phenomenology +1607.00804 Combinatorics +1607.00822 Phenomenology +1607.00900 Phenomenology +1607.00993 Soft Condensed Matter +1607.00999 Probability +1607.01024 Cosmology and Nongalactic Astrophysics +1607.01079 Exactly Solvable and Integrable Systems +1607.01277 Theory +1607.01336 Materials Science +1607.01348 Theory +1607.01488 Accelerator Physics +1607.01495 Accelerator Physics +1607.01507 Phenomenology +1607.01571 Phenomenology +1607.01670 Phenomenology +1607.01709 Fluid Dynamics +1607.01743 Theory +1607.01767 Theory +1607.01787 Mesoscale and Nanoscale Physics +1607.01895 Computer Vision and Pattern Recognition +1607.02026 +1607.02042 High Energy Astrophysical Phenomena +1607.02074 Strongly Correlated Electrons +1607.02097 Superconductivity +1607.02240 Quantum Gases +1607.02317 Information Theory +1607.02336 Mesoscale and Nanoscale Physics +1607.02412 +1607.02475 Phenomenology +1607.02509 Quantum Gases +1607.02765 Strongly Correlated Electrons +1607.02823 Phenomenology +1607.02954 Optics +1607.02977 Mesoscale and Nanoscale Physics +1607.02984 Statistical Mechanics +1607.03028 Dynamical Systems +1607.03069 Instrumentation and Methods for Astrophysics +1607.03162 Optics +1607.03267 Earth and Planetary Astrophysics +1607.03381 Strongly Correlated Electrons +1607.03538 Strongly Correlated Electrons +1607.03616 Chaotic Dynamics +1607.03622 Astrophysics of Galaxies +1607.03641 Quantum Gases +1607.03808 Astrophysics of Galaxies +1607.03833 +1607.03857 Plasma Physics +1607.03870 Atomic and Molecular Clusters +1607.03875 +1607.03904 Astrophysics of Galaxies +1607.03912 Strongly Correlated Electrons +1607.04011 Soft Condensed Matter +1607.04015 Fluid Dynamics +1607.04016 Strongly Correlated Electrons +1607.04058 +1607.04151 +1607.04168 +1607.04191 +1607.04258 Phenomenology +1607.04465 Phenomenology +1607.04469 Populations and Evolution +1607.04483 Plasma Physics +1607.04572 Soft Condensed Matter +1607.04584 Other Condensed Matter +1607.04608 Atomic Physics +1607.04716 Materials Science +1607.04782 +1607.04794 Materials Science +1607.04977 +1607.05044 Optics +1607.05158 Optics +1607.05227 Quantum Gases +1607.05238 Superconductivity +1607.05293 Theory +1607.05438 Statistical Mechanics +1607.05580 Strongly Correlated Electrons +1607.05802 Soft Condensed Matter +1607.05814 +1607.05919 Theory +1607.06032 Computer Vision and Pattern Recognition +1607.06073 Strongly Correlated Electrons +1607.06194 Cosmology and Nongalactic Astrophysics +1607.06272 Instrumentation and Methods for Astrophysics +1607.06276 Disordered Systems and Neural Networks +1607.06321 +1607.06367 Soft Condensed Matter +1607.06414 Theory +1607.06421 Analysis of PDEs +1607.06457 Strongly Correlated Electrons +1607.06478 Numerical Analysis +1607.06516 Computational Physics +1607.06558 Phenomenology +1607.06615 High Energy Astrophysical Phenomena +1607.06635 Applications +1607.06643 Theory +1607.06668 Statistical Mechanics +1607.06727 Phenomenology +1607.06741 Phenomenology +1607.06821 Phenomenology +1607.06845 Fluid Dynamics +1607.06921 Statistics Theory +1607.06963 Optics +1607.06991 Optics +1607.07016 Statistical Mechanics +1607.07064 Atomic Physics +1607.07074 Theory +1607.07103 +1607.07147 +1607.07222 Exactly Solvable and Integrable Systems +1607.07261 +1607.07264 Optics +1607.07336 Quantum Gases +1607.07337 +1607.07340 Lattice +1607.07341 Superconductivity +1607.07406 +1607.07464 Optics +1607.07477 Optics +1607.07587 Soft Condensed Matter +1607.07613 Optics +1607.07615 Theory +1607.07711 Optics +1607.07893 Optics +1607.07907 Phenomenology +1607.07968 +1607.08007 Atomic Physics +1607.08039 +1607.08082 Solar and Stellar Astrophysics +1607.08107 Theory +1607.08129 Quantitative Methods +1607.08222 Optics +1607.08293 Materials Science +1607.08407 Optics +1607.08459 +1607.08462 +1607.08519 Disordered Systems and Neural Networks +1607.08655 Superconductivity +1607.08698 Theory +1607.08734 Materials Science +1607.08788 Cosmology and Nongalactic Astrophysics +1608.00213 Economics +1608.00256 Astrophysics of Galaxies +1608.00314 Mesoscale and Nanoscale Physics +1608.00437 Strongly Correlated Electrons +1608.00445 Theory +1608.00503 +1608.00637 Materials Science +1608.00645 Optics +1608.00688 +1608.00699 +1608.00979 +1608.00992 Mesoscale and Nanoscale Physics +1608.01159 Instrumentation and Methods for Astrophysics +1608.01177 +1608.01182 +1608.01221 Theory +1608.01317 +1608.01330 Theory +1608.01419 Biological Physics +1608.01436 Theory +1608.01476 Instrumentation and Methods for Astrophysics +1608.01600 Strongly Correlated Electrons +1608.01644 Superconductivity +1608.01657 Soft Condensed Matter +1608.01660 Theory +1608.01673 Phenomenology +1608.01675 Phenomenology +1608.01715 High Energy Astrophysical Phenomena +1608.01744 Strongly Correlated Electrons +1608.01964 Instrumentation and Methods for Astrophysics +1608.01985 Phenomenology +1608.02042 Optics +1608.02083 Statistical Mechanics +1608.02219 Spectral Theory +1608.02232 Quantum Gases +1608.02270 Phenomenology +1608.02284 Theory +1608.02361 Materials Science +1608.02422 Optics +1608.02454 Cosmology and Nongalactic Astrophysics +1608.02529 Phenomenology +1608.02576 Mesoscale and Nanoscale Physics +1608.02660 Other Condensed Matter +1608.02716 Phenomenology +1608.02735 Statistical Mechanics +1608.02762 Quantum Gases +1608.02764 High Energy Astrophysical Phenomena +1608.02855 Instrumentation and Detectors +1608.02891 Chaotic Dynamics +1608.02892 Phenomenology +1608.02907 Strongly Correlated Electrons +1608.02938 High Energy Astrophysical Phenomena +1608.02943 +1608.03103 +1608.03202 Optics +1608.03277 Theory +1608.03340 +1608.03348 High Energy Astrophysical Phenomena +1608.03409 +1608.03447 Plasma Physics +1608.03458 Phenomenology +1608.03512 Atomic Physics +1608.03520 Neurons and Cognition +1608.03633 Probability +1608.03634 Plasma Physics +1608.03756 Mesoscale and Nanoscale Physics +1608.03765 Phenomenology +1608.03776 Materials Science +1608.03848 Materials Science +1608.03864 Statistics Theory +1608.03880 High Energy Astrophysical Phenomena +1608.03881 Dynamical Systems +1608.03896 High Energy Astrophysical Phenomena +1608.04008 Data Analysis, Statistics and Probability +1608.04034 Fluid Dynamics +1608.04124 Phenomenology +1608.04360 +1608.04482 Statistical Mechanics +1608.04532 Superconductivity +1608.04607 Computational Physics +1608.04919 Phenomenology +1608.04921 Theory +1608.04948 Theory +1608.04951 Astrophysics of Galaxies +1608.04994 Astrophysics of Galaxies +1608.05055 Instrumentation and Methods for Astrophysics +1608.05120 Strongly Correlated Electrons +1608.05134 Instrumentation and Methods for Astrophysics +1608.05212 Phenomenology +1608.05234 Fluid Dynamics +1608.05238 Medical Physics +1608.05250 Optics +1608.05286 Medical Physics +1608.05294 Mesoscale and Nanoscale Physics +1608.05336 Theory +1608.05353 Phenomenology +1608.05361 Fluid Dynamics +1608.05450 Materials Science +1608.05508 Solar and Stellar Astrophysics +1608.05513 Artificial Intelligence +1608.05520 Solar and Stellar Astrophysics +1608.05553 Pattern Formation and Solitons +1608.05576 Spectral Theory +1608.05642 Optics +1608.05703 Soft Condensed Matter +1608.05760 Soft Condensed Matter +1608.05800 Materials Science +1608.05806 Data Analysis, Statistics and Probability +1608.05894 Theory +1608.05906 Phenomenology +1608.05908 Theory +1608.05991 Strongly Correlated Electrons +1608.06035 Strongly Correlated Electrons +1608.06162 Other Condensed Matter +1608.06184 Differential Geometry +1608.06187 +1608.06209 +1608.06287 Theory +1608.06331 +1608.06410 Mesoscale and Nanoscale Physics +1608.06414 Materials Science +1608.06482 Mesoscale and Nanoscale Physics +1608.06493 +1608.06600 Theory +1608.06603 Optics +1608.06634 Strongly Correlated Electrons +1608.06641 Theory +1608.06772 Earth and Planetary Astrophysics +1608.06870 Chemical Physics +1608.06915 Fluid Dynamics +1608.07046 Performance +1608.07065 Statistical Mechanics +1608.07118 +1608.07123 Strongly Correlated Electrons +1608.07178 High Energy Astrophysical Phenomena +1608.07309 Numerical Analysis +1608.07320 Chemical Physics +1608.07407 Phenomenology +1608.07417 Cosmology and Nongalactic Astrophysics +1608.07428 Solar and Stellar Astrophysics +1608.07517 Materials Science +1608.07582 Theory +1608.07765 Materials Science +1608.07767 Information Theory +1608.07806 +1608.07903 Phenomenology +1608.07926 Number Theory +1608.07954 Astrophysics of Galaxies +1608.07971 +1608.08093 Atomic Physics +1608.08120 Phenomenology +1608.08145 Solar and Stellar Astrophysics +1608.08195 Materials Science +1608.08244 Plasma Physics +1608.08263 Probability +1608.08345 Instrumentation and Detectors +1608.08357 Mesoscale and Nanoscale Physics +1608.08595 Theory +1608.08626 High Energy Astrophysical Phenomena +1608.08705 +1608.08706 +1608.08777 Phenomenology +1608.08822 +1608.08845 General Physics +1608.08880 High Energy Astrophysical Phenomena +1608.09011 Theory +1609.00007 Theory +1609.00026 Theory +1609.00035 Instrumentation and Methods for Astrophysics +1609.00058 Materials Science +1609.00186 Soft Condensed Matter +1609.00194 Quantum Gases +1609.00235 Biological Physics +1609.00240 Quantum Gases +1609.00248 +1609.00272 Chemical Physics +1609.00324 Numerical Analysis +1609.00332 Materials Science +1609.00390 Disordered Systems and Neural Networks +1609.00395 Differential Geometry +1609.00534 Solar and Stellar Astrophysics +1609.00564 Statistical Mechanics +1609.00649 +1609.00714 Phenomenology +1609.00716 Theory +1609.00746 Phenomenology +1609.00760 Optics +1609.00863 Materials Science +1609.00872 Theory +1609.00918 Fluid Dynamics +1609.00929 High Energy Astrophysical Phenomena +1609.00975 Theory +1609.00985 Strongly Correlated Electrons +1609.01024 Phenomenology +1609.01040 Experiment +1609.01059 Solar and Stellar Astrophysics +1609.01091 High Energy Astrophysical Phenomena +1609.01157 Astrophysics of Galaxies +1609.01199 Solar and Stellar Astrophysics +1609.01216 Phenomenology +1609.01248 Mesoscale and Nanoscale Physics +1609.01251 Statistical Mechanics +1609.01311 Theory +1609.01429 Number Theory +1609.01573 Lattice +1609.01620 Statistical Mechanics +1609.01678 Sound +1609.01706 Classical Analysis and ODEs +1609.01731 +1609.01752 Materials Science +1609.01758 +1609.01904 Solar and Stellar Astrophysics +1609.01957 Materials Science +1609.02107 Information Theory +1609.02164 Quantum Gases +1609.02176 Strongly Correlated Electrons +1609.02338 Materials Science +1609.02378 +1609.02423 Computer Science and Game Theory +1609.02456 Systems and Control +1609.02474 Mesoscale and Nanoscale Physics +1609.02488 Solar and Stellar Astrophysics +1609.02514 Theory +1609.02550 Theory +1609.02551 Atomic Physics +1609.02557 Astrophysics of Galaxies +1609.02558 Theory +1609.02560 Strongly Correlated Electrons +1609.02569 Astrophysics of Galaxies +1609.02601 Fluid Dynamics +1609.02663 Strongly Correlated Electrons +1609.02681 +1609.02877 +1609.02937 Cosmology and Nongalactic Astrophysics +1609.02951 High Energy Astrophysical Phenomena +1609.02952 Experiment +1609.03018 Phenomenology +1609.03040 Astrophysics of Galaxies +1609.03052 Phenomenology +1609.03100 Solar and Stellar Astrophysics +1609.03113 Quantum Gases +1609.03196 +1609.03343 +1609.03425 High Energy Astrophysical Phenomena +1609.03434 Superconductivity +1609.03477 Astrophysics of Galaxies +1609.03577 Cosmology and Nongalactic Astrophysics +1609.03614 Software Engineering +1609.03684 Optics +1609.03685 Chemical Physics +1609.03698 Phenomenology +1609.03742 Mesoscale and Nanoscale Physics +1609.04004 Strongly Correlated Electrons +1609.04011 Phenomenology +1609.04036 Theory +1609.04076 Astrophysics of Galaxies +1609.04284 Phenomenology +1609.04343 Phenomenology +1609.04355 Phenomenology +1609.04380 Soft Condensed Matter +1609.04401 Cosmology and Nongalactic Astrophysics +1609.04413 High Energy Astrophysical Phenomena +1609.04416 Earth and Planetary Astrophysics +1609.04534 Optics +1609.04537 Phenomenology +1609.04538 Experiment +1609.04591 Mesoscale and Nanoscale Physics +1609.04605 Phenomenology +1609.04648 Artificial Intelligence +1609.04675 Optimization and Control +1609.04702 Theory +1609.04790 Phenomenology +1609.04806 Theory +1609.04863 +1609.04954 Solar and Stellar Astrophysics +1609.05022 Theory +1609.05029 Phenomenology +1609.05030 High Energy Astrophysical Phenomena +1609.05053 Earth and Planetary Astrophysics +1609.05062 Theory +1609.05114 Lattice +1609.05214 Astrophysics of Galaxies +1609.05250 Instrumentation and Detectors +1609.05290 Solar and Stellar Astrophysics +1609.05293 Databases +1609.05350 Optics +1609.05377 Astrophysics of Galaxies +1609.05379 Numerical Analysis +1609.05417 Atomic Physics +1609.05467 Experiment +1609.05584 Chaotic Dynamics +1609.05589 Phenomenology +1609.05652 Phenomenology +1609.05668 +1609.05711 Phenomenology +1609.05737 Materials Science +1609.05770 Theory +1609.05826 Number Theory +1609.06014 Theory +1609.06211 Atomic Physics +1609.06251 Theory +1609.06271 Theory +1609.06293 +1609.06361 Statistical Mechanics +1609.06363 Numerical Analysis +1609.06387 Solar and Stellar Astrophysics +1609.06446 Astrophysics of Galaxies +1609.06449 +1609.06466 Lattice +1609.06603 Plasma Physics +1609.06631 Experiment +1609.06650 Solar and Stellar Astrophysics +1609.06722 Phenomenology +1609.06748 Soft Condensed Matter +1609.06969 Phenomenology +1609.07227 Materials Science +1609.07266 Solar and Stellar Astrophysics +1609.07275 Statistical Mechanics +1609.07314 Geophysics +1609.07369 Astrophysics of Galaxies +1609.07416 Solar and Stellar Astrophysics +1609.07465 +1609.07477 Theory +1609.07492 Solar and Stellar Astrophysics +1609.07739 Solar and Stellar Astrophysics +1609.07754 Chemical Physics +1609.07822 Mesoscale and Nanoscale Physics +1609.07913 Chemical Physics +1609.07921 Theory +1609.08019 Atomic Physics +1609.08044 Solar and Stellar Astrophysics +1609.08055 Phenomenology +1609.08068 Medical Physics +1609.08081 Plasma Physics +1609.08165 Theory +1609.08294 Mesoscale and Nanoscale Physics +1609.08339 Cosmology and Nongalactic Astrophysics +1609.08413 Phenomenology +1609.08450 Physics and Society +1609.08480 Theory +1609.08528 +1609.08543 Solar and Stellar Astrophysics +1609.08591 Atomic Physics +1609.08731 Adaptation and Self-Organizing Systems +1609.08772 Astrophysics of Galaxies +1609.08802 Superconductivity +1609.08985 Optics +1609.09009 Statistical Mechanics +1609.09023 +1609.09032 Instrumentation and Methods for Astrophysics +1609.09052 Probability +1609.09061 Theory +1609.09079 Phenomenology +1609.09112 Astrophysics of Galaxies +1609.09179 Data Structures and Algorithms +1609.09183 High Energy Astrophysical Phenomena +1609.09231 Sound +1609.09255 Mesoscale and Nanoscale Physics +1609.09273 Theory +1609.09289 +1609.09752 Atomic Physics +1609.09834 Theory +1609.09852 +1610.00014 Astrophysics of Galaxies +1610.00051 Chemical Physics +1610.00123 Theory +1610.00126 Accelerator Physics +1610.00141 Fluid Dynamics +1610.00153 Phenomenology +1610.00156 Materials Science +1610.00285 Mesoscale and Nanoscale Physics +1610.00339 Strongly Correlated Electrons +1610.00556 Mesoscale and Nanoscale Physics +1610.00595 Theory +1610.00840 Cosmology and Nongalactic Astrophysics +1610.00877 Earth and Planetary Astrophysics +1610.00880 Astrophysics of Galaxies +1610.00894 Materials Science +1610.00910 Phenomenology +1610.00943 Theory +1610.00989 Cosmology and Nongalactic Astrophysics +1610.01041 Superconductivity +1610.01142 +1610.01158 Astrophysics of Galaxies +1610.01166 Phenomenology +1610.01173 Earth and Planetary Astrophysics +1610.01273 Materials Science +1610.01284 Chemical Physics +1610.01336 Earth and Planetary Astrophysics +1610.01420 Materials Science +1610.01429 Theory +1610.01497 Theory +1610.01514 Phenomenology +1610.01558 Theory +1610.01608 Phenomenology +1610.01609 Astrophysics of Galaxies +1610.01638 Astrophysics of Galaxies +1610.01730 Atomic Physics +1610.01843 Phenomenology +1610.01927 Solar and Stellar Astrophysics +1610.01990 Instrumentation and Methods for Astrophysics +1610.02021 Instrumentation and Detectors +1610.02040 High Energy Astrophysical Phenomena +1610.02042 Astrophysics of Galaxies +1610.02116 Theory +1610.02259 Phenomenology +1610.02272 Phenomenology +1610.02370 Lattice +1610.02576 +1610.02650 Cosmology and Nongalactic Astrophysics +1610.02784 Theory +1610.02848 Earth and Planetary Astrophysics +1610.02989 Solar and Stellar Astrophysics +1610.03074 Phenomenology +1610.03081 Theory +1610.03197 Mesoscale and Nanoscale Physics +1610.03247 Phenomenology +1610.03249 Plasma Physics +1610.03254 Solar and Stellar Astrophysics +1610.03273 Mesoscale and Nanoscale Physics +1610.03333 Phenomenology +1610.03487 Cosmology and Nongalactic Astrophysics +1610.03489 Instrumentation and Methods for Astrophysics +1610.03656 Astrophysics of Galaxies +1610.03699 Mesoscale and Nanoscale Physics +1610.03732 Astrophysics of Galaxies +1610.03746 Superconductivity +1610.03758 +1610.03778 Astrophysics of Galaxies +1610.03785 Materials Science +1610.03800 Solar and Stellar Astrophysics +1610.03852 Astrophysics of Galaxies +1610.03866 Biological Physics +1610.03877 Astrophysics of Galaxies +1610.03979 Phenomenology +1610.03985 Logic +1610.04059 Strongly Correlated Electrons +1610.04060 Atomic and Molecular Clusters +1610.04082 +1610.04146 Mesoscale and Nanoscale Physics +1610.04202 Theory +1610.04264 Astrophysics of Galaxies +1610.04269 Astrophysics of Galaxies +1610.04307 Solar and Stellar Astrophysics +1610.04363 Materials Science +1610.04481 Plasma Physics +1610.04567 Phenomenology +1610.04569 High Energy Astrophysical Phenomena +1610.04621 Astrophysics of Galaxies +1610.04729 Phenomenology +1610.04860 Quantum Gases +1610.04867 High Energy Astrophysical Phenomena +1610.04966 +1610.04975 Phenomenology +1610.05109 Mesoscale and Nanoscale Physics +1610.05161 Instrumentation and Detectors +1610.05195 Soft Condensed Matter +1610.05219 High Energy Astrophysical Phenomena +1610.05307 Earth and Planetary Astrophysics +1610.05475 Solar and Stellar Astrophysics +1610.05618 Dynamical Systems +1610.05619 High Energy Astrophysical Phenomena +1610.05662 +1610.05676 +1610.05689 Astrophysics of Galaxies +1610.05705 Earth and Planetary Astrophysics +1610.05752 High Energy Astrophysical Phenomena +1610.05772 High Energy Astrophysical Phenomena +1610.05877 Instrumentation and Detectors +1610.05910 Astrophysics of Galaxies +1610.05978 Astrophysics of Galaxies +1610.06059 Classical Physics +1610.06180 Solar and Stellar Astrophysics +1610.06182 High Energy Astrophysical Phenomena +1610.06216 Instrumentation and Methods for Astrophysics +1610.06225 Soft Condensed Matter +1610.06255 Theory +1610.06260 +1610.06377 Materials Science +1610.06396 Astrophysics of Galaxies +1610.06444 +1610.06508 Phenomenology +1610.06709 Quantum Gases +1610.06797 +1610.06989 Materials Science +1610.07003 Cosmology and Nongalactic Astrophysics +1610.07106 Optics +1610.07166 Instrumentation and Detectors +1610.07170 Accelerator Physics +1610.07211 +1610.07265 Astrophysics of Galaxies +1610.07451 Materials Science +1610.07544 Astrophysics of Galaxies +1610.07546 Representation Theory +1610.07609 Solar and Stellar Astrophysics +1610.07699 Astrophysics of Galaxies +1610.07704 Solar and Stellar Astrophysics +1610.07745 Phenomenology +1610.07819 High Energy Astrophysical Phenomena +1610.07826 Strongly Correlated Electrons +1610.07851 Statistical Mechanics +1610.07898 Phenomenology +1610.07947 Astrophysics of Galaxies +1610.08082 +1610.08184 Cosmology and Nongalactic Astrophysics +1610.08185 Solar and Stellar Astrophysics +1610.08502 Earth and Planetary Astrophysics +1610.08517 High Energy Astrophysical Phenomena +1610.08554 Astrophysics of Galaxies +1610.08582 +1610.08641 Superconductivity +1610.08688 Solar and Stellar Astrophysics +1610.08708 Physics and Society +1610.09015 Phenomenology +1610.09021 Mesoscale and Nanoscale Physics +1610.09043 Astrophysics of Galaxies +1610.09086 Quantum Gases +1610.09134 Earth and Planetary Astrophysics +1610.09150 Superconductivity +1610.09152 Information Theory +1610.09228 High Energy Astrophysical Phenomena +1610.09255 Solar and Stellar Astrophysics +1610.09257 General Physics +1610.09282 Solar and Stellar Astrophysics +1610.09308 Biological Physics +1610.09353 Disordered Systems and Neural Networks +1610.09479 Mesoscale and Nanoscale Physics +1610.09695 Mesoscale and Nanoscale Physics +1610.09798 Astrophysics of Galaxies +1610.09848 Plasma Physics +1610.09932 Data Analysis, Statistics and Probability +1610.10072 Astrophysics of Galaxies +1611.00007 Earth and Planetary Astrophysics +1611.00082 Numerical Analysis +1611.00091 Astrophysics of Galaxies +1611.00125 Phenomenology +1611.00139 Astrophysics of Galaxies +1611.00236 +1611.00263 Information Theory +1611.00318 Strongly Correlated Electrons +1611.00334 Solar and Stellar Astrophysics +1611.00346 Solar and Stellar Astrophysics +1611.00475 Solar and Stellar Astrophysics +1611.00520 Soft Condensed Matter +1611.00587 Soft Condensed Matter +1611.00611 +1611.00614 Mesoscale and Nanoscale Physics +1611.00642 Mesoscale and Nanoscale Physics +1611.00758 Instrumentation and Methods for Astrophysics +1611.00768 Astrophysics of Galaxies +1611.00776 Mesoscale and Nanoscale Physics +1611.00777 Astrophysics of Galaxies +1611.00802 Cosmology and Nongalactic Astrophysics +1611.00816 High Energy Astrophysical Phenomena +1611.00849 Solar and Stellar Astrophysics +1611.00927 +1611.01009 Information Theory +1611.01218 +1611.01227 Mesoscale and Nanoscale Physics +1611.01288 Number Theory +1611.01293 Chemical Physics +1611.01538 Earth and Planetary Astrophysics +1611.01596 Instrumentation and Methods for Astrophysics +1611.01612 Strongly Correlated Electrons +1611.01671 Instrumentation and Detectors +1611.01762 Materials Science +1611.01770 +1611.01798 Solar and Stellar Astrophysics +1611.01859 Phenomenology +1611.01986 Superconductivity +1611.02127 Astrophysics of Galaxies +1611.02136 +1611.02282 Astrophysics of Galaxies +1611.02289 High Energy Astrophysical Phenomena +1611.02306 High Energy Astrophysical Phenomena +1611.02502 Astrophysics of Galaxies +1611.02876 Astrophysics of Galaxies +1611.02999 Fluid Dynamics +1611.03049 Quantum Gases +1611.03123 Plasma Physics +1611.03150 Materials Science +1611.03173 Fluid Dynamics +1611.03200 Statistical Mechanics +1611.03289 Space Physics +1611.03326 Theory +1611.03359 +1611.03546 Optics +1611.03551 Chaotic Dynamics +1611.03563 Astrophysics of Galaxies +1611.03587 Solar and Stellar Astrophysics +1611.03617 Phenomenology +1611.03640 Chemical Physics +1611.03658 High Energy Astrophysical Phenomena +1611.03709 Mesoscale and Nanoscale Physics +1611.03792 Plasma Physics +1611.03803 Strongly Correlated Electrons +1611.03816 Strongly Correlated Electrons +1611.03881 Instrumentation and Detectors +1611.03916 Other Condensed Matter +1611.04073 Fluid Dynamics +1611.04096 Quantum Algebra +1611.04270 Astrophysics of Galaxies +1611.04373 Differential Geometry +1611.04375 +1611.04378 Geometric Topology +1611.04386 Mesoscale and Nanoscale Physics +1611.04451 Plasma Physics +1611.04555 Soft Condensed Matter +1611.04612 Theory +1611.04622 Solar and Stellar Astrophysics +1611.04802 Space Physics +1611.04875 Atomic Physics +1611.05135 High Energy Astrophysical Phenomena +1611.05156 Atomic Physics +1611.05179 Instrumentation and Methods for Astrophysics +1611.05395 Earth and Planetary Astrophysics +1611.05452 Cosmology and Nongalactic Astrophysics +1611.05464 Mesoscale and Nanoscale Physics +1611.05495 Materials Science +1611.05505 Solar and Stellar Astrophysics +1611.05600 Analysis of PDEs +1611.05648 Phenomenology +1611.05687 Mesoscale and Nanoscale Physics +1611.05781 Mesoscale and Nanoscale Physics +1611.06096 Popular Physics +1611.06109 Mesoscale and Nanoscale Physics +1611.06281 Plasma Physics +1611.06286 Soft Condensed Matter +1611.06324 Statistical Mechanics +1611.06390 Lattice +1611.06578 Solar and Stellar Astrophysics +1611.06649 Computation +1611.06820 Strongly Correlated Electrons +1611.06934 Cosmology and Nongalactic Astrophysics +1611.06966 Astrophysics of Galaxies +1611.07162 Solar and Stellar Astrophysics +1611.07250 +1611.07283 Chemical Physics +1611.07331 Optics +1611.07389 Astrophysics of Galaxies +1611.07568 Soft Condensed Matter +1611.07731 Plasma Physics +1611.07737 +1611.07813 Strongly Correlated Electrons +1611.07835 +1611.07880 Algebraic Geometry +1611.07966 Cosmology and Nongalactic Astrophysics +1611.07976 Astrophysics of Galaxies +1611.08065 Mesoscale and Nanoscale Physics +1611.08179 Mesoscale and Nanoscale Physics +1611.08216 Instrumentation and Methods for Astrophysics +1611.08376 Astrophysics of Galaxies +1611.08450 Phenomenology +1611.08544 Group Theory +1611.08695 +1611.08702 Phenomenology +1611.08735 Earth and Planetary Astrophysics +1611.09101 +1611.09658 Earth and Planetary Astrophysics +1611.09699 General Physics +1611.09713 Instrumentation and Methods for Astrophysics +1611.09721 Rings and Algebras +1611.09761 Solar and Stellar Astrophysics +1611.09787 Cosmology and Nongalactic Astrophysics +1611.09825 Adaptation and Self-Organizing Systems +1611.09869 High Energy Astrophysical Phenomena +1611.10032 Solar and Stellar Astrophysics +1611.10119 +1611.10137 Mesoscale and Nanoscale Physics +1611.10196 Phenomenology +1612.00253 Solar and Stellar Astrophysics +1612.00333 Earth and Planetary Astrophysics +1612.00544 Differential Geometry +1612.00912 Optics +1612.01059 +1612.01532 Solar and Stellar Astrophysics +1612.01622 Solar and Stellar Astrophysics +1612.01723 Theory +1612.01750 Materials Science +1612.02239 Superconductivity +1612.02966 +1612.03045 Instrumentation and Methods for Astrophysics +1612.03086 Computational Complexity +1612.03126 Materials Science +1612.03162 Algebraic Geometry +1612.03193 Physics and Society +1612.03305 Astrophysics of Galaxies +1612.03366 Solar and Stellar Astrophysics +1612.03476 High Energy Astrophysical Phenomena +1612.03679 Instrumentation and Methods for Astrophysics +1612.03887 Space Physics +1612.03909 Cosmology and Nongalactic Astrophysics +1612.04028 Sound +1612.04177 +1612.04259 Solar and Stellar Astrophysics +1612.04267 Algebraic Topology +1612.04362 Astrophysics of Galaxies +1612.04479 +1612.04517 High Energy Astrophysical Phenomena +1612.04794 Data Structures and Algorithms +1612.04823 +1612.04912 Phenomenology +1612.04959 +1612.05107 Materials Science +1612.05222 Data Structures and Algorithms +1612.05320 Formal Languages and Automata Theory +1612.05361 Algebraic Geometry +1612.05472 Plasma Physics +1612.05534 Combinatorics +1612.05535 +1612.05553 Phenomenology +1612.05560 Instrumentation and Methods for Astrophysics +1612.05687 Phenomenology +1612.05861 +1612.05992 Mesoscale and Nanoscale Physics +1612.06043 Computation and Language +1612.06100 Optimization and Control +1612.06109 Statistics Theory +1612.06174 Emerging Technologies +1612.06177 Fluid Dynamics +1612.06292 +1612.06374 Statistical Mechanics +1612.06377 +1612.06379 Phenomenology +1612.06380 Instrumentation and Methods for Astrophysics +1612.06381 Astrophysics of Galaxies +1612.06386 Theory +1612.06387 Astrophysics of Galaxies +1612.06388 Algebraic Geometry +1612.06391 Social and Information Networks +1612.06392 Quantum Gases +1612.06393 Theory +1612.06394 Solar and Stellar Astrophysics +1612.06395 Theory +1612.06396 +1612.06398 Astrophysics of Galaxies +1612.06399 Theory +1612.06403 Phenomenology +1612.06404 Methodology +1612.06405 Astrophysics of Galaxies +1612.06408 Probability +1612.06409 Earth and Planetary Astrophysics +1612.06411 Phenomenology +1612.06412 Phenomenology +1612.06413 Phenomenology +1612.06414 Theory +1612.06415 Astrophysics of Galaxies +1612.06416 Mesoscale and Nanoscale Physics +1612.06422 Atmospheric and Oceanic Physics +1612.06423 Computer Vision and Pattern Recognition +1612.06425 Biological Physics +1612.06426 Phenomenology +1612.06428 Astrophysics of Galaxies +1612.06429 High Energy Astrophysical Phenomena +1612.06432 Quantum Gases +1612.06434 Solar and Stellar Astrophysics +1612.06435 Computer Vision and Pattern Recognition +1612.06436 Phenomenology +1612.06437 Probability +1612.06438 Materials Science +1612.06439 Physics and Society +1612.06440 Statistical Mechanics +1612.06442 Medical Physics +1612.06443 Computer Vision and Pattern Recognition +1612.06446 Theory +1612.06447 Metric Geometry +1612.06448 Information Theory +1612.06449 Dynamical Systems +1612.06450 Plasma Physics +1612.06451 Networking and Internet Architecture +1612.06452 Astrophysics of Galaxies +1612.06454 Computer Vision and Pattern Recognition +1612.06455 Classical Physics +1612.06456 Number Theory +1612.06458 Robotics +1612.06460 +1612.06461 Lattice +1612.06466 Optics +1612.06468 Computation +1612.06469 Cosmology and Nongalactic Astrophysics +1612.06470 Machine Learning +1612.06472 Statistical Mechanics +1612.06475 Computation and Language +1612.06477 Physics and Society +1612.06478 Optics +1612.06480 Differential Geometry +1612.06483 Numerical Analysis +1612.06484 Optimization and Control +1612.06485 +1612.06486 Soft Condensed Matter +1612.06489 Analysis of PDEs +1612.06490 Phenomenology +1612.06491 +1612.06493 Dynamical Systems +1612.06496 Computer Vision and Pattern Recognition +1612.06497 Soft Condensed Matter +1612.06498 Optimization and Control +1612.06501 Analysis of PDEs +1612.06502 Soft Condensed Matter +1612.06503 Soft Condensed Matter +1612.06508 Computer Vision and Pattern Recognition +1612.06511 Phenomenology +1612.06512 Strongly Correlated Electrons +1612.06514 Theory +1612.06515 +1612.06516 Optimization and Control +1612.06517 +1612.06518 Computation +1612.06519 Computer Vision and Pattern Recognition +1612.06523 Combinatorics +1612.06524 Computer Vision and Pattern Recognition +1612.06525 Logic +1612.06526 Logic +1612.06530 Computer Vision and Pattern Recognition +1612.06531 Number Theory +1612.06532 Statistical Mechanics +1612.06533 Optimization and Control +1612.06534 +1612.06535 Cosmology and Nongalactic Astrophysics +1612.06539 Combinatorics +1612.06540 High Energy Astrophysical Phenomena +1612.06541 Category Theory +1612.06543 Computer Vision and Pattern Recognition +1612.06545 Probability +1612.06546 +1612.06547 Methodology +1612.06548 Phenomenology +1612.06552 +1612.06553 Information Theory +1612.06554 Populations and Evolution +1612.06555 Mesoscale and Nanoscale Physics +1612.06557 Symplectic Geometry +1612.06558 Computer Vision and Pattern Recognition +1612.06559 Cosmology and Nongalactic Astrophysics +1612.06560 Functional Analysis +1612.06562 Materials Science +1612.06563 Number Theory +1612.06565 Quantitative Methods +1612.06566 +1612.06567 Complex Variables +1612.06569 Phenomenology +1612.06570 Solar and Stellar Astrophysics +1612.06571 Statistics Theory +1612.06573 Computer Vision and Pattern Recognition +1612.06576 Combinatorics +1612.06577 Number Theory +1612.06578 Quantum Gases +1612.06579 +1612.06580 Computational Physics +1612.06581 Computation and Language +1612.06582 Solar and Stellar Astrophysics +1612.06584 Group Theory +1612.06585 Phenomenology +1612.06586 High Energy Astrophysical Phenomena +1612.06587 Optimization and Control +1612.06588 Physics and Society +1612.06590 Fluid Dynamics +1612.06591 +1612.06592 Instrumentation and Methods for Astrophysics +1612.06593 Algebraic Geometry +1612.06595 Cosmology and Nongalactic Astrophysics +1612.06596 Analysis of PDEs +1612.06598 Machine Learning +1612.06599 Combinatorics +1612.06601 Methodology +1612.06602 Logic +1612.06603 General Mathematics +1612.06604 Analysis of PDEs +1612.06605 Mesoscale and Nanoscale Physics +1612.06606 Logic +1612.06608 Strongly Correlated Electrons +1612.06609 Combinatorics +1612.06610 Analysis of PDEs +1612.06611 Phenomenology +1612.06615 Computer Vision and Pattern Recognition +1612.06617 Materials Science +1612.06618 Statistics Theory +1612.06619 Phenomenology +1612.06623 Learning +1612.06624 Solar and Stellar Astrophysics +1612.06625 Number Theory +1612.06626 Phenomenology +1612.06627 Mesoscale and Nanoscale Physics +1612.06628 Quantum Algebra +1612.06636 Solar and Stellar Astrophysics +1612.06641 Instrumentation and Detectors +1612.06642 Sound +1612.06643 Solar and Stellar Astrophysics +1612.06644 Physics and Society +1612.06645 +1612.06647 Statistics Theory +1612.06649 Information Theory +1612.06650 Quantitative Methods +1612.06651 General Topology +1612.06654 Mathematical Finance +1612.06655 Numerical Analysis +1612.06656 Instrumentation and Methods for Astrophysics +1612.06657 +1612.06659 Theory +1612.06661 Probability +1612.06662 Statistical Mechanics +1612.06664 Instrumentation and Detectors +1612.06665 Pricing of Securities +1612.06666 Mesoscale and Nanoscale Physics +1612.06667 Mesoscale and Nanoscale Physics +1612.06668 Programming Languages +1612.06669 Optimization and Control +1612.06671 Computation and Language +1612.06672 Numerical Analysis +1612.06674 Rings and Algebras +1612.06675 Data Structures and Algorithms +1612.06677 General Physics +1612.06678 Differential Geometry +1612.06682 Quantum Gases +1612.06683 Strongly Correlated Electrons +1612.06684 Soft Condensed Matter +1612.06685 Computation and Language +1612.06686 Information Theory +1612.06687 Numerical Analysis +1612.06688 Quantum Algebra +1612.06690 Numerical Analysis +1612.06692 Strongly Correlated Electrons +1612.06693 Optimization and Control +1612.06696 General Physics +1612.06698 Atomic Physics +1612.06700 History and Overview +1612.06701 Combinatorics +1612.06703 Computer Vision and Pattern Recognition +1612.06704 Computer Vision and Pattern Recognition +1612.06706 General Physics +1612.06707 +1612.06711 Quantum Gases +1612.06713 Number Theory +1612.06714 High Energy Astrophysical Phenomena +1612.06717 Dynamical Systems +1612.06719 Neurons and Cognition +1612.06720 Earth and Planetary Astrophysics +1612.06721 Phenomenology +1612.06723 Exactly Solvable and Integrable Systems +1612.06724 Optimization and Control +1612.06725 +1612.06727 +1612.06729 Classical Analysis and ODEs +1612.06731 Mesoscale and Nanoscale Physics +1612.06733 +1612.06734 Plasma Physics +1612.06735 Populations and Evolution +1612.06736 Differential Geometry +1612.06737 Commutative Algebra +1612.06738 Computer Vision and Pattern Recognition +1612.06740 Programming Languages +1612.06741 Medical Physics +1612.06743 +1612.06745 Cosmology and Nongalactic Astrophysics +1612.06748 Distributed, Parallel, and Cluster Computing +1612.06749 Distributed, Parallel, and Cluster Computing +1612.06750 Astrophysics of Galaxies +1612.06751 Probability +1612.06752 Numerical Analysis +1612.06753 Information Retrieval +1612.06754 +1612.06755 Lattice +1612.06756 Strongly Correlated Electrons +1612.06758 Statistical Mechanics +1612.06760 Metric Geometry +1612.06762 Mesoscale and Nanoscale Physics +1612.06767 Metric Geometry +1612.06768 Analysis of PDEs +1612.06770 Materials Science +1612.06773 Algebraic Geometry +1612.06774 +1612.06777 +1612.06779 Mesoscale and Nanoscale Physics +1612.06781 +1612.06783 Analysis of PDEs +1612.06784 Optimization and Control +1612.06785 Materials Science +1612.06786 Geometric Topology +1612.06790 Numerical Analysis +1612.06791 Classical Analysis and ODEs +1612.06793 Algebraic Topology +1612.06796 Plasma Physics +1612.06797 Combinatorics +1612.06798 Materials Science +1612.06799 Cosmology and Nongalactic Astrophysics +1612.06800 Representation Theory +1612.06801 Geometric Topology +1612.06802 Materials Science +1612.06803 Phenomenology +1612.06804 +1612.06806 +1612.06808 Analysis of PDEs +1612.06809 Information Theory +1612.06810 Algebraic Geometry +1612.06812 +1612.06813 Analysis of PDEs +1612.06815 Differential Geometry +1612.06816 Combinatorics +1612.06817 Astrophysics of Galaxies +1612.06818 Complex Variables +1612.06820 History and Overview +1612.06821 Computation and Language +1612.06822 Mesoscale and Nanoscale Physics +1612.06823 Theory +1612.06824 Optics +1612.06826 +1612.06829 Solar and Stellar Astrophysics +1612.06830 Operating Systems +1612.06831 +1612.06832 Social and Information Networks +1612.06833 Applications +1612.06834 Soft Condensed Matter +1612.06835 Probability +1612.06836 Computer Vision and Pattern Recognition +1612.06837 Astrophysics of Galaxies +1612.06838 +1612.06839 Optimization and Control +1612.06842 Complex Variables +1612.06844 Information Theory +1612.06845 Combinatorics +1612.06846 Mesoscale and Nanoscale Physics +1612.06847 Theory +1612.06851 Computer Vision and Pattern Recognition +astro-ph/0602401 +astro-ph/9910205 +cond-mat/0005244 Disordered Systems and Neural Networks +cond-mat/0103256 +cond-mat/0104260 Statistical Mechanics +cond-mat/0112387 +cond-mat/0602297 Statistical Mechanics +gr-qc/0003108 +gr-qc/0004017 +gr-qc/0005080 +gr-qc/0006001 +gr-qc/0006075 +gr-qc/0007022 +gr-qc/0107022 +gr-qc/0409015 +gr-qc/0412107 +gr-qc/0703007 +gr-qc/9903037 +gr-qc/9906081 +gr-qc/9910063 +gr-qc/9911061 +hep-ph/0001247 Phenomenology +hep-ph/0002055 Phenomenology +hep-ph/0002211 Phenomenology +hep-ph/0003023 Phenomenology +hep-ph/0102053 Phenomenology +hep-ph/0104272 Phenomenology +hep-ph/0104299 Phenomenology +hep-ph/0202143 Phenomenology +hep-ph/0302178 Phenomenology +hep-ph/0307387 Phenomenology +hep-ph/0410073 Phenomenology +hep-ph/0605010 Phenomenology +hep-ph/9903293 Phenomenology +hep-ph/9910450 Phenomenology +hep-th/0002030 Theory +hep-th/0002109 Theory +hep-th/0004024 Theory +hep-th/0004108 Theory +hep-th/0004175 Theory +hep-th/0005043 Theory +hep-th/0005111 Theory +hep-th/0005175 Theory +hep-th/0006085 Theory +hep-th/0006209 Theory +hep-th/0007016 Theory +hep-th/0007101 Theory +hep-th/0009102 Theory +hep-th/0009193 Theory +hep-th/0101100 Theory +hep-th/0204151 Theory +hep-th/0301174 Theory +hep-th/0306207 Theory +hep-th/0406144 Theory +hep-th/9609165 Theory +hep-th/9610103 Theory +hep-th/9610110 Theory +hep-th/9610176 Theory +hep-th/9611013 Theory +hep-th/9611018 Theory +hep-th/9611029 Theory +hep-th/9611043 Theory +hep-th/9611066 Theory +hep-th/9611076 Theory +hep-th/9611099 Theory +hep-th/9611112 Theory +hep-th/9611135 Theory +hep-th/9611152 Theory +hep-th/9611188 Theory +hep-th/9701019 Theory +hep-th/9903130 Theory +hep-th/9905167 Theory +hep-th/9909177 Theory +hep-th/9911103 Theory +hep-th/9912143 Theory +hep-th/9912177 Theory +hep-th/9912179 Theory +math-ph/0006026 +math-ph/0203036 +math-ph/0601004 +math/0408215 Algebraic Topology +nlin/0005022 Exactly Solvable and Integrable Systems +nlin/0504003 Pattern Formation and Solitons +nlin/0506043 Chaotic Dynamics +nlin/0509030 Chaotic Dynamics +patt-sol/9401006 Pattern Formation and Solitons +physics/0007091 Computational Physics +physics/0009013 Space Physics +physics/0610263 General Physics +q-bio/0510042 Genomics +quant-ph/0001010 +quant-ph/0109062 +quant-ph/9911022 +0704.0334 Chemical Physics +0704.1959 Chemical Physics +0705.1090 Soft Condensed Matter +0706.0716 Other Condensed Matter +0707.0337 Atomic and Molecular Clusters +0707.0809 Chemical Physics +0707.3214 Chemical Physics +0708.4348 Chemical Physics +0711.1247 General Physics +0801.1427 Materials Science +0804.0215 Statistical Mechanics +0804.1958 Atomic Physics +0804.3145 Materials Science +0804.3281 Chemical Physics +0806.2221 Atomic and Molecular Clusters +0806.3205 Functional Analysis +0809.1599 Disordered Systems and Neural Networks +0809.2519 Chemical Physics +0810.2676 Materials Science +0812.0630 +0812.2446 Other Condensed Matter +0812.4734 Materials Science +0902.2529 Soft Condensed Matter +0903.0971 Chemical Physics +0903.4850 Numerical Analysis +0903.5116 +0905.0366 Materials Science +0905.0596 +0905.1736 Soft Condensed Matter +0906.1028 +0908.2475 Operator Algebras +0909.4347 Atomic Physics +0910.2548 Materials Science +1002.4383 High Energy Astrophysical Phenomena +1003.5310 Chemical Physics +1005.1829 Mesoscale and Nanoscale Physics +1006.5840 Disordered Systems and Neural Networks +1009.0205 Statistical Mechanics +1010.0589 Atomic and Molecular Clusters +1010.1358 Information Theory +1012.4383 Soft Condensed Matter +1101.5054 Statistical Mechanics +1103.0946 Other Condensed Matter +1103.3734 Atomic and Molecular Clusters +1109.3704 Probability +1109.5756 Chemical Physics +1110.2013 Functional Analysis +1112.2731 Biological Physics +1112.4546 Materials Science +1202.0325 +1202.0601 +1202.1332 Information Theory +1202.5582 Computational Physics +1202.6678 Computation +1206.6644 Functional Analysis +1209.3463 +1210.0007 Probability +1211.5443 Algebraic Geometry +1302.1722 Combinatorics +1302.2021 Solar and Stellar Astrophysics +1304.0498 Group Theory +1309.1380 Probability +1309.1596 Information Theory +1309.2757 Atomic Physics +1309.4202 Chemical Physics +1309.4718 Computational Complexity +1310.1560 Geometric Topology +1310.2112 Chemical Physics +1310.6723 K-Theory and Homology +1311.1826 Number Theory +1311.3003 +1311.5675 Algebraic Topology +1312.5468 Chemical Physics +1312.6165 Probability +1401.3814 Statistics Theory +1402.4201 Algebraic Geometry +1403.1013 Information Theory +1403.1335 Functional Analysis +1403.3036 Information Theory +1403.3761 Superconductivity +1403.4766 Materials Science +1406.1766 Combinatorics +1407.2860 Probability +1407.5568 Theory +1408.0250 Group Theory +1408.5404 Machine Learning +1409.0830 Geometric Topology +1409.3897 +1409.4460 Analysis of PDEs +1410.4153 Number Theory +1410.4633 Probability +1410.4935 +1410.6949 Metric Geometry +1410.6966 Statistics Theory +1411.0251 Analysis of PDEs +1411.1273 Geometric Topology +1411.2970 Cosmology and Nongalactic Astrophysics +1411.3423 Computer Vision and Pattern Recognition +1411.4390 Numerical Analysis +1411.5582 Analysis of PDEs +1411.6857 Geometric Topology +1412.0256 Algebraic Geometry +1412.2038 Dynamical Systems +1412.2467 Group Theory +1412.5668 Algebraic Topology +1412.8041 Dynamical Systems +1501.00763 Representation Theory +1501.05330 High Energy Astrophysical Phenomena +1501.05480 Computational Engineering, Finance, and Science +1501.06711 Optimization and Control +1502.01046 Chemical Physics +1502.01582 Cosmology and Nongalactic Astrophysics +1502.01585 Cosmology and Nongalactic Astrophysics +1502.01588 Cosmology and Nongalactic Astrophysics +1502.01590 Cosmology and Nongalactic Astrophysics +1502.01594 Cosmology and Nongalactic Astrophysics +1502.01598 Cosmology and Nongalactic Astrophysics +1502.01599 Astrophysics of Galaxies +1502.01953 Systems and Control +1502.01956 Systems and Control +1502.02114 Cosmology and Nongalactic Astrophysics +1502.03337 Computer Science and Game Theory +1502.04110 Computer Vision and Pattern Recognition +1502.05956 Cosmology and Nongalactic Astrophysics +1502.06110 Differential Geometry +1503.01018 Number Theory +1503.04371 Information Theory +1503.06503 Algebraic Geometry +1503.07028 Analysis of PDEs +1503.07110 +1503.07145 Symplectic Geometry +1504.06499 Differential Geometry +1505.00749 Probability +1505.01147 Applications +1505.01396 Physics and Society +1505.02485 Medical Physics +1505.03051 +1505.04408 Dynamical Systems +1505.04970 Analysis of PDEs +1505.05264 Phenomenology +1505.05815 Quantitative Methods +1505.06353 Neural and Evolutionary Computing +1505.07901 Dynamical Systems +1505.08114 Dynamical Systems +1506.01226 Optics +1506.01461 Social and Information Networks +1506.03417 Optimization and Control +1506.04739 High Energy Astrophysical Phenomena +1506.05587 Category Theory +1506.06806 Differential Geometry +1506.06971 Populations and Evolution +1506.08143 Probability +1506.08454 Computation and Language +1506.08995 Neurons and Cognition +1507.00802 Probability +1507.01223 Materials Science +1507.02058 Cosmology and Nongalactic Astrophysics +1507.03287 +1507.05943 Applications +1507.06621 Algebraic Geometry +1507.07176 Biological Physics +1507.07375 Optimization and Control +1507.07776 Solar and Stellar Astrophysics +1507.07915 Statistical Mechanics +1507.08853 Cosmology and Nongalactic Astrophysics +1507.08877 Other Condensed Matter +1508.00326 Analysis of PDEs +1508.00439 +1508.01789 Superconductivity +1508.02029 Statistical Mechanics +1508.02775 Medical Physics +1508.03640 High Energy Astrophysical Phenomena +1508.04751 Neurons and Cognition +1508.04954 Algebraic Geometry +1508.05156 Optimization and Control +1508.05315 Chemical Physics +1508.05465 Combinatorics +1508.05615 Geometric Topology +1508.07435 Computational Engineering, Finance, and Science +1508.07958 Probability +1509.00320 Number Theory +1509.00800 Astrophysics of Galaxies +1509.01711 Group Theory +1509.02816 Genomics +1509.03596 +1509.04064 Artificial Intelligence +1509.04122 Dynamical Systems +1509.05444 Dynamical Systems +1509.05703 Neurons and Cognition +1509.06373 Cosmology and Nongalactic Astrophysics +1509.06386 Cosmology and Nongalactic Astrophysics +1509.06534 Complex Variables +1509.07936 Quantum Gases +1509.08084 +1509.09110 +1510.00095 Learning +1510.00803 Soft Condensed Matter +1510.01130 Optimization and Control +1510.02083 +1510.02913 +1510.02985 Cosmology and Nongalactic Astrophysics +1510.03214 Dynamical Systems +1510.03610 Biological Physics +1510.04624 Dynamical Systems +1510.05236 Numerical Analysis +1510.06479 Neurons and Cognition +1510.06622 Algebraic Geometry +1510.06647 Fluid Dynamics +1510.07541 History and Overview +1510.07592 Neurons and Cognition +1510.08202 Information Theory +1510.08359 +1510.08519 Chemical Physics +1510.08566 Logic in Computer Science +1510.08649 Classical Analysis and ODEs +1510.08939 Soft Condensed Matter +1511.00810 Atmospheric and Oceanic Physics +1511.01129 Mesoscale and Nanoscale Physics +1511.01268 Quantitative Methods +1511.01418 Rings and Algebras +1511.01721 Probability +1511.02221 Number Theory +1511.02647 Social and Information Networks +1511.03567 Earth and Planetary Astrophysics +1511.03844 Theory +1511.04156 Machine Learning +1511.04369 +1511.04471 Dynamical Systems +1511.05712 Soft Condensed Matter +1511.06193 Optics +1511.06330 Rings and Algebras +1511.07070 Computational Complexity +1511.07454 Soft Condensed Matter +1511.07742 Mesoscale and Nanoscale Physics +1511.07768 Molecular Networks +1512.01313 Dynamical Systems +1512.01322 Learning +1512.01792 Probability +1512.01886 Social and Information Networks +1512.01899 Statistics Theory +1512.02026 Number Theory +1512.02094 Phenomenology +1512.02264 Dynamical Systems +1512.02539 +1512.02925 Mesoscale and Nanoscale Physics +1512.03059 Astrophysics of Galaxies +1512.03470 Materials Science +1512.03804 Superconductivity +1512.04451 Solar and Stellar Astrophysics +1512.05317 Probability +1512.05436 Mesoscale and Nanoscale Physics +1512.06137 Materials Science +1512.07031 Superconductivity +1512.07188 Plasma Physics +1512.07205 Algebraic Geometry +1512.07279 +1512.07520 Phenomenology +1512.07596 Neurons and Cognition +1512.07807 Learning +1512.08071 Dynamical Systems +1512.08173 Phenomenology +1512.08798 Molecular Networks +1512.09233 Cell Behavior +1601.00397 Information Theory +1601.00421 Combinatorics +1601.00450 Theory +1601.00657 Strongly Correlated Electrons +1601.00897 Quantum Algebra +1601.02062 Materials Science +1601.02133 Mesoscale and Nanoscale Physics +1601.02440 Fluid Dynamics +1601.02759 Experiment +1601.03063 Soft Condensed Matter +1601.03506 Number Theory +1601.03773 Classical Analysis and ODEs +1601.04837 Differential Geometry +1601.04869 Atomic Physics +1601.06028 Computers and Society +1601.06248 Neurons and Cognition +1601.06539 +1601.06614 Optics +1601.06855 +1601.06944 +1601.07183 Phenomenology +1601.07692 Phenomenology +1602.00222 Algebraic Geometry +1602.01424 Group Theory +1602.02964 Machine Learning +1602.02966 Soft Condensed Matter +1602.03070 Classical Analysis and ODEs +1602.03398 Phenomenology +1602.03603 Analysis of PDEs +1602.03766 Mesoscale and Nanoscale Physics +1602.05649 Soft Condensed Matter +1602.05771 Solar and Stellar Astrophysics +1602.06862 +1602.07286 +1602.07295 Strongly Correlated Electrons +1602.07898 Atomic and Molecular Clusters +1602.07991 Optics +1602.08454 Optics +1602.09108 Physics and Society +1603.00833 Phenomenology +1603.01303 Robotics +1603.01434 Soft Condensed Matter +1603.01714 Materials Science +1603.01953 Solar and Stellar Astrophysics +1603.01967 Atomic Physics +1603.02184 Phenomenology +1603.02258 Materials Science +1603.02268 Fluid Dynamics +1603.02379 Logic +1603.02407 +1603.02838 Solar and Stellar Astrophysics +1603.02894 Earth and Planetary Astrophysics +1603.03658 Materials Science +1603.03962 +1603.04250 Classical Analysis and ODEs +1603.05348 Strongly Correlated Electrons +1603.05502 Phenomenology +1603.05513 Trading and Market Microstructure +1603.05629 Learning +1603.05821 Fluid Dynamics +1603.06236 Formal Languages and Automata Theory +1603.06808 Fluid Dynamics +1603.06936 Mesoscale and Nanoscale Physics +1603.07118 +1603.07179 Representation Theory +1603.07446 Optics +1603.07472 Classical Physics +1603.08159 Soft Condensed Matter +1603.08207 High Energy Astrophysical Phenomena +1603.08363 Physics Education +1603.08596 Combinatorics +1603.08660 Number Theory +1603.09032 Statistical Mechanics +1603.09193 +1603.09239 +1603.09460 Computation and Language +1603.09643 Computation and Language +1604.00125 Information Retrieval +1604.00151 Systems and Control +1604.00166 Materials Science +1604.00463 +1604.00781 Atomic Physics +1604.00903 Physics and Society +1604.00928 Analysis of PDEs +1604.01070 Information Retrieval +1604.01188 Materials Science +1604.01557 General Finance +1604.01585 Atomic Physics +1604.01808 Strongly Correlated Electrons +1604.01881 Atomic Physics +1604.02040 Mesoscale and Nanoscale Physics +1604.02123 Machine Learning +1604.02296 Pattern Formation and Solitons +1604.02615 +1604.02705 Social and Information Networks +1604.03007 Earth and Planetary Astrophysics +1604.03704 Solar and Stellar Astrophysics +1604.03858 Cosmology and Nongalactic Astrophysics +1604.04015 +1604.04319 +1604.04568 Numerical Analysis +1604.05289 Cosmology and Nongalactic Astrophysics +1604.05305 Instrumentation and Methods for Astrophysics +1604.05381 +1604.06084 Soft Condensed Matter +1604.06389 Popular Physics +1604.06526 Superconductivity +1604.07126 Instrumentation and Methods for Astrophysics +1604.07999 +1604.08054 Theory +1604.08487 Materials Science +1604.08523 +1605.00014 Quantum Gases +1605.00046 Astrophysics of Galaxies +1605.00103 Theory +1605.00522 High Energy Astrophysical Phenomena +1605.00993 +1605.01013 +1605.01165 Solar and Stellar Astrophysics +1605.01584 Distributed, Parallel, and Cluster Computing +1605.01621 Soft Condensed Matter +1605.01884 Solar and Stellar Astrophysics +1605.01899 Classical Analysis and ODEs +1605.02252 +1605.02313 Theory +1605.02331 Mesoscale and Nanoscale Physics +1605.02339 +1605.02394 Exactly Solvable and Integrable Systems +1605.02649 Statistical Mechanics +1605.02671 Mesoscale and Nanoscale Physics +1605.02725 Dynamical Systems +1605.02965 Astrophysics of Galaxies +1605.03087 Phenomenology +1605.03194 Astrophysics of Galaxies +1605.03274 Strongly Correlated Electrons +1605.03405 +1605.03582 Strongly Correlated Electrons +1605.03984 Earth and Planetary Astrophysics +1605.04223 Statistical Mechanics +1605.04594 +1605.05315 Earth and Planetary Astrophysics +1605.05978 Mesoscale and Nanoscale Physics +1605.06003 Logic +1605.06873 Mesoscale and Nanoscale Physics +1605.06898 Applications +1605.06971 Materials Science +1605.07248 Theory +1605.07265 Astrophysics of Galaxies +1605.07304 Quantitative Methods +1605.08004 +1605.08020 Number Theory +1605.08939 Solar and Stellar Astrophysics +1605.09031 Materials Science +1605.09096 Computation and Language +1605.09152 Earth and Planetary Astrophysics +1605.09215 High Energy Astrophysical Phenomena +1605.09326 +1605.09364 Cosmology and Nongalactic Astrophysics +1605.09391 +1605.09627 Exactly Solvable and Integrable Systems +1605.09726 Representation Theory +1606.00004 Solar and Stellar Astrophysics +1606.00054 Molecular Networks +1606.00109 Strongly Correlated Electrons +1606.00162 High Energy Astrophysical Phenomena +1606.00329 Superconductivity +1606.00529 Atomic Physics +1606.00605 Other Condensed Matter +1606.00638 Mesoscale and Nanoscale Physics +1606.00641 Soft Condensed Matter +1606.00805 Plasma Physics +1606.00823 Mesoscale and Nanoscale Physics +1606.00932 Soft Condensed Matter +1606.01006 Phenomenology +1606.01253 Astrophysics of Galaxies +1606.01772 Theory +1606.01893 Theory +1606.02086 Atmospheric and Oceanic Physics +1606.02132 High Energy Astrophysical Phenomena +1606.02602 Statistical Mechanics +1606.02723 Solar and Stellar Astrophysics +1606.03057 Cosmology and Nongalactic Astrophysics +1606.03074 High Energy Astrophysical Phenomena +1606.03086 Astrophysics of Galaxies +1606.03096 Strongly Correlated Electrons +1606.03107 Phenomenology +1606.03124 Disordered Systems and Neural Networks +1606.03149 Phenomenology +1606.03458 Mesoscale and Nanoscale Physics +1606.03532 Strongly Correlated Electrons +1606.03567 Physics and Society +1606.03853 Algebraic Geometry +1606.04018 Phenomenology +1606.04124 Materials Science +1606.04138 Phenomenology +1606.04159 Instrumentation and Methods for Astrophysics +1606.04580 Quantum Gases +1606.04692 Theory +1606.04881 +1606.04882 Phenomenology +1606.05102 +1606.05359 Phenomenology +1606.05410 Solar and Stellar Astrophysics +1606.05464 Computation and Language +1606.05567 Mesoscale and Nanoscale Physics +1606.05640 Instrumentation and Methods for Astrophysics +1606.05662 Phenomenology +1606.05719 +1606.05770 Astrophysics of Galaxies +1606.06093 Strongly Correlated Electrons +1606.06196 History and Overview +1606.06247 Solar and Stellar Astrophysics +1606.06281 Astrophysics of Galaxies +1606.06313 Theory +1606.06405 Theory +1606.06479 Mesoscale and Nanoscale Physics +1606.06780 Statistical Mechanics +1606.06862 Astrophysics of Galaxies +1606.07033 Geometric Topology +1606.07067 Theory +1606.07293 Cosmology and Nongalactic Astrophysics +1606.07303 Atomic Physics +1606.07813 Strongly Correlated Electrons +1606.08597 Phenomenology +1606.08635 Phenomenology +1606.08987 Complex Variables +1606.09045 Solar and Stellar Astrophysics +1606.09122 +1606.09129 Phenomenology +1606.09177 Phenomenology +1606.09247 Astrophysics of Galaxies +1606.09324 Solar and Stellar Astrophysics +1606.09527 Statistics Theory +1606.09627 Astrophysics of Galaxies +1607.00012 Earth and Planetary Astrophysics +1607.00030 Computation and Language +1607.00094 Astrophysics of Galaxies +1607.00246 Phenomenology +1607.00651 +1607.00670 Dynamical Systems +1607.00871 Astrophysics of Galaxies +1607.00932 +1607.01157 Atomic Physics +1607.01357 Earth and Planetary Astrophysics +1607.01469 Phenomenology +1607.01576 +1607.01745 Phenomenology +1607.01766 Atomic Physics +1607.01891 Strongly Correlated Electrons +1607.01931 Instrumentation and Methods for Astrophysics +1607.02082 Phenomenology +1607.02140 +1607.02148 High Energy Astrophysical Phenomena +1607.02169 Phenomenology +1607.02302 Quantum Gases +1607.02320 Theory +1607.02405 Phenomenology +1607.02408 Fluid Dynamics +1607.02577 Solar and Stellar Astrophysics +1607.02650 Materials Science +1607.02761 Astrophysics of Galaxies +1607.02996 Solar and Stellar Astrophysics +1607.03023 General Physics +1607.03122 Theory +1607.03149 Cosmology and Nongalactic Astrophysics +1607.03230 Earth and Planetary Astrophysics +1607.03316 Computation and Language +1607.03446 Astrophysics of Galaxies +1607.03494 Solar and Stellar Astrophysics +1607.03497 Theory +1607.03567 Cosmology and Nongalactic Astrophysics +1607.03570 Astrophysics of Galaxies +1607.03806 Solar and Stellar Astrophysics +1607.03903 High Energy Astrophysical Phenomena +1607.04389 Representation Theory +1607.04415 Astrophysics of Galaxies +1607.04802 Mesoscale and Nanoscale Physics +1607.05087 Astrophysics of Galaxies +1607.05103 Astrophysics of Galaxies +1607.05598 Optics +1607.05843 Atomic Physics +1607.05905 Solar and Stellar Astrophysics +1607.06035 +1607.06378 Solar and Stellar Astrophysics +1607.06614 Soft Condensed Matter +1607.06662 +1607.06726 +1607.06732 Classical Physics +1607.06739 +1607.06859 Materials Science +1607.06958 Phenomenology +1607.07004 Solar and Stellar Astrophysics +1607.07046 High Energy Astrophysical Phenomena +1607.07049 Astrophysics of Galaxies +1607.07118 +1607.07124 Physics and Society +1607.07256 Computational Geometry +1607.07554 Cosmology and Nongalactic Astrophysics +1607.07676 Computational Complexity +1607.07724 Solar and Stellar Astrophysics +1607.07865 Phenomenology +1607.07938 Solar and Stellar Astrophysics +1607.08023 Astrophysics of Galaxies +1607.08427 +1607.08432 Phenomenology +1607.08690 Analysis of PDEs +1607.08715 Mesoscale and Nanoscale Physics +1607.08833 Cosmology and Nongalactic Astrophysics +1608.00254 Strongly Correlated Electrons +1608.00261 Robotics +1608.00267 +1608.00418 +1608.00674 +1608.00827 Strongly Correlated Electrons +1608.00886 Superconductivity +1608.01151 +1608.01279 Biological Physics +1608.01587 High Energy Astrophysical Phenomena +1608.01631 Theory +1608.01780 Earth and Planetary Astrophysics +1608.01812 Geometric Topology +1608.01893 Analysis of PDEs +1608.01924 High Energy Astrophysical Phenomena +1608.01937 Differential Geometry +1608.02160 High Energy Astrophysical Phenomena +1608.02218 Soft Condensed Matter +1608.02345 Instrumentation and Methods for Astrophysics +1608.02452 Instrumentation and Methods for Astrophysics +1608.02597 Solar and Stellar Astrophysics +1608.02694 Phenomenology +1608.02795 Quantitative Methods +1608.03294 Earth and Planetary Astrophysics +1608.03495 Astrophysics of Galaxies +1608.03717 Materials Science +1608.04067 Phenomenology +1608.04176 +1608.04592 Programming Languages +1608.04633 +1608.04776 Solar and Stellar Astrophysics +1608.04886 High Energy Astrophysical Phenomena +1608.04895 High Energy Astrophysical Phenomena +1608.05006 Physics Education +1608.05075 Astrophysics of Galaxies +1608.05331 Theory +1608.06152 Mesoscale and Nanoscale Physics +1608.06179 Mesoscale and Nanoscale Physics +1608.06202 Plasma Physics +1608.06895 Superconductivity +1608.07095 Astrophysics of Galaxies +1608.07330 Applications +1608.07351 High Energy Astrophysical Phenomena +1608.07609 Geometric Topology +1608.07668 Materials Science +1608.07811 Optics +1608.07868 Phenomenology +1608.07877 +1608.07974 Solar and Stellar Astrophysics +1608.08083 Astrophysics of Galaxies +1608.08201 Plasma Physics +1608.08317 Chemical Physics +1608.08837 Astrophysics of Galaxies +1608.08935 Mesoscale and Nanoscale Physics +1609.00021 High Energy Astrophysical Phenomena +1609.00075 +1609.00097 Astrophysics of Galaxies +1609.00447 +1609.00812 Functional Analysis +1609.00848 +1609.01212 Information Theory +1609.01419 Astrophysics of Galaxies +1609.01548 General Mathematics +1609.01925 High Energy Astrophysical Phenomena +1609.01992 High Energy Astrophysical Phenomena +1609.02084 Soft Condensed Matter +1609.02304 Mesoscale and Nanoscale Physics +1609.02365 Astrophysics of Galaxies +1609.02823 Mesoscale and Nanoscale Physics +1609.03190 Logic in Computer Science +1609.03240 Machine Learning +1609.04217 Solar and Stellar Astrophysics +1609.04301 Sound +1609.04816 High Energy Astrophysical Phenomena +1609.04819 Astrophysics of Galaxies +1609.04845 High Energy Astrophysical Phenomena +1609.04920 Astrophysics of Galaxies +1609.05226 High Energy Astrophysical Phenomena +1609.05276 Classical Analysis and ODEs +1609.05279 Mesoscale and Nanoscale Physics +1609.05319 Mesoscale and Nanoscale Physics +1609.05360 Mesoscale and Nanoscale Physics +1609.05415 Astrophysics of Galaxies +1609.05436 Mesoscale and Nanoscale Physics +1609.05474 Materials Science +1609.05477 Astrophysics of Galaxies +1609.05570 Number Theory +1609.05653 Mesoscale and Nanoscale Physics +1609.05704 High Energy Astrophysical Phenomena +1609.05968 Astrophysics of Galaxies +1609.06096 Analysis of PDEs +1609.06358 +1609.06410 Strongly Correlated Electrons +1609.06417 Computer Vision and Pattern Recognition +1609.06437 +1609.06705 Astrophysics of Galaxies +1609.06717 +1609.06746 Instrumentation and Detectors +1609.06764 Machine Learning +1609.06975 Materials Science +1609.06980 Populations and Evolution +1609.07123 Quantum Gases +1609.07146 +1609.07177 Materials Science +1609.07238 Earth and Planetary Astrophysics +1609.07244 Mesoscale and Nanoscale Physics +1609.07268 Solar and Stellar Astrophysics +1609.07283 Solar and Stellar Astrophysics +1609.07433 Optics +1609.07748 Plasma Physics +1609.07872 Logic +1609.07957 Mesoscale and Nanoscale Physics +1609.07969 Phenomenology +1609.08004 Computer Vision and Pattern Recognition +1609.08067 Information Theory +1609.08148 +1609.08149 Classical Physics +1609.08150 Mesoscale and Nanoscale Physics +1609.08153 Optics +1609.08154 Operating Systems +1609.08155 Fluid Dynamics +1609.08156 Theory +1609.08157 Phenomenology +1609.08162 Algebraic Geometry +1609.08163 Soft Condensed Matter +1609.08167 Cosmology and Nongalactic Astrophysics +1609.08168 Cosmology and Nongalactic Astrophysics +1609.08172 +1609.08173 +1609.08175 Astrophysics of Galaxies +1609.08176 Algebraic Geometry +1609.08177 Optimization and Control +1609.08180 Numerical Analysis +1609.08182 Information Theory +1609.08183 Number Theory +1609.08186 Analysis of PDEs +1609.08188 +1609.08189 +1609.08190 Statistical Mechanics +1609.08191 Materials Science +1609.08192 Information Theory +1609.08193 Analysis of PDEs +1609.08194 Computation and Language +1609.08195 Soft Condensed Matter +1609.08196 Optics +1609.08197 Analysis of PDEs +1609.08198 Information Theory +1609.08199 Probability +1609.08200 Analysis of PDEs +1609.08201 Databases +1609.08202 Mesoscale and Nanoscale Physics +1609.08203 Machine Learning +1609.08205 Biomolecules +1609.08208 Medical Physics +1609.08209 Computer Vision and Pattern Recognition +1609.08210 Computation and Language +1609.08211 Sound +1609.08212 Combinatorics +1609.08213 Neurons and Cognition +1609.08214 Classical Analysis and ODEs +1609.08216 Mesoscale and Nanoscale Physics +1609.08217 Applications +1609.08219 Dynamical Systems +1609.08225 Classical Analysis and ODEs +1609.08227 Methodology +1609.08228 Databases +1609.08230 Functional Analysis +1609.08231 Functional Analysis +1609.08232 Theory +1609.08233 Number Theory +1609.08234 +1609.08235 Machine Learning +1609.08237 Computation and Language +1609.08239 Computers and Society +1609.08241 Theory +1609.08244 Combinatorics +1609.08248 +1609.08251 Numerical Analysis +1609.08253 Computational Complexity +1609.08255 Combinatorics +1609.08257 Geometric Topology +1609.08261 Analysis of PDEs +1609.08262 Optimization and Control +1609.08263 Operator Algebras +1609.08264 Information Retrieval +1609.08265 Information Theory +1609.08266 Social and Information Networks +1609.08268 +1609.08269 Disordered Systems and Neural Networks +1609.08270 Information Theory +1609.08272 Discrete Mathematics +1609.08274 Dynamical Systems +1609.08275 Optics +1609.08276 Biomolecules +1609.08278 K-Theory and Homology +1609.08279 Algebraic Geometry +1609.08280 Experiment +1609.08282 Number Theory +1609.08283 Social and Information Networks +1609.08285 Medical Physics +1609.08286 Learning +1609.08287 +1609.08289 Solar and Stellar Astrophysics +1609.08291 Computer Vision and Pattern Recognition +1609.08292 Spectral Theory +1609.08293 Computation and Language +1609.08295 +1609.08299 Numerical Analysis +1609.08300 Information Theory +1609.08302 Metric Geometry +1609.08303 Geometric Topology +1609.08306 +1609.08308 Group Theory +1609.08310 Molecular Networks +1609.08311 Group Theory +1609.08313 Graphics +1609.08315 +1609.08317 Differential Geometry +1609.08318 Molecular Networks +1609.08321 Probability +1609.08322 Group Theory +1609.08326 Learning +1609.08328 Applications +1609.08329 Optics +1609.08331 Molecular Networks +1609.08333 Medical Physics +1609.08336 Information Theory +1609.08337 Computation and Language +1609.08340 Algebraic Geometry +1609.08343 Classical Physics +1609.08345 Human-Computer Interaction +1609.08348 Phenomenology +1609.08351 Atomic Physics +1609.08353 Combinatorics +1609.08355 Physics and Society +1609.08356 Mesoscale and Nanoscale Physics +1609.08357 Analysis of PDEs +1609.08358 Strongly Correlated Electrons +1609.08363 Instrumentation and Detectors +1609.08364 Computer Vision and Pattern Recognition +1609.08365 Classical Analysis and ODEs +1609.08366 Geophysics +1609.08369 Experiment +1609.08373 +1609.08378 Soft Condensed Matter +1609.08379 Optimization and Control +1609.08380 Physics and Society +1609.08381 Physics and Society +1609.08383 +1609.08385 Materials Science +1609.08386 Dynamical Systems +1609.08387 Computer Vision and Pattern Recognition +1609.08388 Analysis of PDEs +1609.08389 Computation and Language +1609.08390 Probability +1609.08393 Computer Vision and Pattern Recognition +1609.08394 Computer Science and Game Theory +1609.08397 Machine Learning +1609.08398 Information Theory +1609.08399 Computer Vision and Pattern Recognition +1609.08401 Algebraic Topology +1609.08403 Data Structures and Algorithms +1609.08405 Analysis of PDEs +1609.08406 Quantum Gases +1609.08407 +1609.08408 Sound +1609.08409 Computation and Language +1609.08411 High Energy Astrophysical Phenomena +1609.08412 Computation and Language +1609.08414 Neural and Evolutionary Computing +1609.08415 Materials Science +1609.08418 Functional Analysis +1609.08419 Sound +1609.08420 Commutative Algebra +1609.08421 Fluid Dynamics +1609.08422 Information Theory +1609.08424 Functional Analysis +1609.08426 General Physics +1609.08427 General Physics +1609.08428 Systems and Control +1609.08429 Mesoscale and Nanoscale Physics +1609.08432 Quantum Gases +1609.08433 Sound +1609.08434 Experiment +1609.08435 Learning +1609.08438 Computer Vision and Pattern Recognition +1609.08441 Learning +1609.08442 Sound +1609.08443 Combinatorics +1609.08444 General Physics +1609.08445 Computation and Language +1609.08446 Robotics +1609.08447 Probability +1609.08452 Algebraic Geometry +1609.08453 General Mathematics +1609.08454 Lattice +1609.08457 +1609.08458 History and Overview +1609.08460 Geometric Topology +1609.08467 Group Theory +1609.08469 Mesoscale and Nanoscale Physics +1609.08470 Artificial Intelligence +1609.08471 Phenomenology +1609.08474 Geometric Topology +1609.08475 Computer Vision and Pattern Recognition +1609.08476 Networking and Internet Architecture +1609.08477 Analysis of PDEs +1609.08479 Theory +1609.08481 Dynamical Systems +1609.08482 Quantum Gases +1609.08483 Analysis of PDEs +1609.08484 Data Structures and Algorithms +1609.08487 +1609.08488 Earth and Planetary Astrophysics +1609.08489 Dynamical Systems +1609.08491 Phenomenology +1609.08493 Optimization and Control +1609.08496 Computation and Language +1609.08498 Spectral Theory +1609.08502 Optimization and Control +1609.08503 Analysis of PDEs +1609.08504 Quantum Gases +1609.08505 Dynamical Systems +1609.08506 Earth and Planetary Astrophysics +1609.08508 Medical Physics +1609.08510 Cosmology and Nongalactic Astrophysics +1609.08511 Solar and Stellar Astrophysics +1609.08512 Statistics Theory +1609.08517 Other Computer Science +1609.08520 General Finance +1609.08522 Information Theory +1609.08524 Artificial Intelligence +1609.08526 +1609.08527 +1609.08529 Numerical Analysis +1609.08531 Software Engineering +1609.08533 Fluid Dynamics +1609.08534 Astrophysics of Galaxies +1609.08535 Human-Computer Interaction +1609.08536 Systems and Control +1609.08539 Numerical Analysis +1609.08542 Operator Algebras +1609.08544 Commutative Algebra +1609.08545 Symplectic Geometry +1609.08548 Instrumentation and Detectors +1609.08549 Number Theory +1609.08550 Learning +1609.08554 Cosmology and Nongalactic Astrophysics +1609.08556 Physics and Society +1609.08558 Instrumentation and Methods for Astrophysics +1609.08560 +1609.08563 Phenomenology +1609.08564 Optimization and Control +1609.08565 Medical Physics +1609.08566 Mesoscale and Nanoscale Physics +1609.08568 Differential Geometry +1609.08569 Computation +1609.08570 Number Theory +1609.08571 +1609.08573 Statistical Mechanics +1609.08574 Distributed, Parallel, and Cluster Computing +1609.08575 Classical Analysis and ODEs +1609.08577 Chemical Physics +1609.08578 Number Theory +1609.08579 +1609.08582 Probability +1609.08584 +1609.08587 Strongly Correlated Electrons +1609.08589 +1609.08590 +1609.08592 +1609.08593 Representation Theory +1609.08594 +1609.08595 +1609.08597 Analysis of PDEs +1609.08599 Differential Geometry +1609.08600 Complex Variables +1609.08602 Number Theory +1609.08605 Astrophysics of Galaxies +1609.08606 High Energy Astrophysical Phenomena +chao-dyn/9808003 Chaotic Dynamics +cond-mat/0001097 Soft Condensed Matter +cond-mat/0009335 Mesoscale and Nanoscale Physics +cond-mat/0103399 +cond-mat/0108419 +cond-mat/0207016 +cond-mat/0305553 Materials Science +cond-mat/0408183 Materials Science +cond-mat/0507236 Materials Science +cond-mat/0612287 Statistical Mechanics +cond-mat/9806089 +cond-mat/9807215 Soft Condensed Matter +cond-mat/9809385 Statistical Mechanics +cond-mat/9903088 Superconductivity +cond-mat/9903105 Superconductivity +cond-mat/9906238 Materials Science +math/0512115 Algebraic Geometry +physics/0011029 Chemical Physics +physics/0211122 Chemical Physics +physics/0303107 Chemical Physics +physics/0312130 Atomic and Molecular Clusters +physics/0401080 Chemical Physics +physics/0404056 Chemical Physics +physics/0405013 Chemical Physics +physics/0407119 Chemical Physics +physics/0501086 Chemical Physics +physics/0501112 Chemical Physics +physics/0509137 Chemical Physics +physics/0511223 Chemical Physics +physics/0512142 Chemical Physics +physics/0607228 General Physics +physics/0611176 Data Analysis, Statistics and Probability +physics/0612165 Atomic and Molecular Clusters +physics/0702008 Atomic and Molecular Clusters +physics/9710026 Chemical Physics +physics/9806023 Chemical Physics +physics/9902054 Chemical Physics +q-bio/0612039 Biomolecules +quant-ph/0401140 +quant-ph/0601195 +1008.0094 Analysis of PDEs +1011.2820 Materials Science +1103.5920 +1104.2492 Representation Theory +1201.0302 +1203.1609 Differential Geometry +1208.2412 Differential Geometry +1209.2777 Representation Theory +1209.3940 Differential Geometry +1209.4094 Operator Algebras +1210.7899 Materials Science +1302.2462 Algebraic Geometry +1306.1788 Dynamical Systems +1306.5316 Combinatorics +1308.5543 Dynamical Systems +1310.6051 +1311.1174 Representation Theory +1311.5454 Number Theory +1312.0823 Geometric Topology +1312.4028 Rings and Algebras +1312.7357 Geometric Topology +1401.7268 Superconductivity +1403.5904 Geometric Topology +1403.7554 Dynamical Systems +1404.1796 Classical Analysis and ODEs +1404.7338 Analysis of PDEs +1405.0186 Analysis of PDEs +1406.6145 Learning +1406.7276 Accelerator Physics +1407.0125 +1407.1253 Atomic Physics +1407.3496 Dynamical Systems +1407.5803 Geometric Topology +1409.5033 Algebraic Geometry +1410.4832 Probability +1411.0181 Robotics +1411.0917 Analysis of PDEs +1411.2371 Analysis of PDEs +1411.3864 Differential Geometry +1411.5229 Classical Analysis and ODEs +1411.6629 Phenomenology +1412.0531 Symplectic Geometry +1412.5024 Geometric Topology +1412.5608 +1501.04518 Quantum Algebra +1501.05088 High Energy Astrophysical Phenomena +1502.00384 Methodology +1502.06968 +1503.00240 Probability +1503.00736 Numerical Analysis +1503.00918 Differential Geometry +1503.03592 Materials Science +1503.03601 Strongly Correlated Electrons +1503.03602 Materials Science +1503.07962 Number Theory +1504.01212 Analysis of PDEs +1504.03383 +1504.05124 Probability +1505.00201 Geometric Topology +1505.04771 Learning +1505.05671 Cosmology and Nongalactic Astrophysics +1506.01138 Information Theory +1506.03172 Neural and Evolutionary Computing +1506.04614 Superconductivity +1506.06446 Populations and Evolution +1507.00515 Optics +1507.06001 Experiment +1507.07205 Optimization and Control +1507.07207 Optimization and Control +1508.05507 Analysis of PDEs +1508.07909 Computation and Language +1509.00628 Pattern Formation and Solitons +1509.02465 Information Theory +1509.02491 Computer Vision and Pattern Recognition +1509.02840 Systems and Control +1509.02848 Optimization and Control +1509.02852 Optimization and Control +1509.02861 Optimization and Control +1509.04775 Materials Science +1509.05359 Experiment +1509.06560 Mesoscale and Nanoscale Physics +1509.08419 History and Overview +1509.09022 Soft Condensed Matter +1510.00399 Combinatorics +1510.04003 Soft Condensed Matter +1510.04108 Computational Physics +1510.04522 Classical Analysis and ODEs +1510.04921 Cryptography and Security +1511.01777 Differential Geometry +1511.04089 Phenomenology +1511.05260 +1511.06068 Learning +1511.06307 +1511.08498 Computer Vision and Pattern Recognition +1511.08674 Combinatorics +1511.09388 Quantum Gases +1512.00442 Data Structures and Algorithms +1512.02913 Experiment +1512.03008 Theory +1512.03824 +1512.03853 Systems and Control +1512.03901 Symbolic Computation +1512.04411 +1512.05547 Phenomenology +1512.06491 +1512.06878 Phenomenology +1512.09271 Quantum Algebra +1601.00698 Optimization and Control +1601.00714 Probability +1601.00715 Probability +1601.01343 Computation and Language +1601.03042 Astrophysics of Galaxies +1601.03287 Plasma Physics +1601.03344 Mesoscale and Nanoscale Physics +1601.05064 Materials Science +1601.05490 Geometric Topology +1601.05919 Soft Condensed Matter +1601.07690 Materials Science +1601.07908 Mesoscale and Nanoscale Physics +1602.01578 Physics and Society +1602.03156 Mesoscale and Nanoscale Physics +1602.03614 Differential Geometry +1602.04867 Plasma Physics +1602.05030 Plasma Physics +1602.05240 Social and Information Networks +1602.06153 Analysis of PDEs +1602.06953 Phenomenology +1603.02228 High Energy Astrophysical Phenomena +1603.03602 Analysis of PDEs +1603.03629 Machine Learning +1603.04050 Differential Geometry +1603.04188 Chemical Physics +1603.04404 Information Theory +1603.08547 Geometric Topology +1603.08812 Physics and Society +1603.09043 Quantum Gases +1603.09551 Cosmology and Nongalactic Astrophysics +1604.00608 Phenomenology +1604.02803 Phenomenology +1604.04115 Materials Science +1604.04227 Logic +1604.06079 Computer Vision and Pattern Recognition +1604.06940 Functional Analysis +1604.07972 +1604.08618 Networking and Internet Architecture +1605.04244 Combinatorics +1605.04621 Materials Science +1605.05457 Analysis of PDEs +1605.05613 Combinatorics +1605.05948 Chemical Physics +1605.06911 Probability +1605.07168 Cryptography and Security +1605.08193 Materials Science +1605.08357 Cryptography and Security +1605.09761 Computer Science and Game Theory +1606.00168 +1606.01039 Machine Learning +1606.01577 Probability +1606.01797 Applications +1606.02270 Computation and Language +1606.02304 Astrophysics of Galaxies +1606.02315 +1606.02562 Artificial Intelligence +1606.02708 Geophysics +1606.02717 Astrophysics of Galaxies +1606.02825 Computer Science and Game Theory +1606.02961 Analysis of PDEs +1606.03003 Geophysics +1606.03046 +1606.03048 Information Retrieval +1606.03060 Networking and Internet Architecture +1606.03083 Phenomenology +1606.03091 Commutative Algebra +1606.03102 Phenomenology +1606.03103 Theory +1606.03106 Probability +1606.03113 Combinatorics +1606.03116 Complex Variables +1606.03121 Astrophysics of Galaxies +1606.03123 Materials Science +1606.03127 Algebraic Geometry +1606.03128 Number Theory +1606.03132 Dynamical Systems +1606.03138 Quantitative Methods +1606.03139 +1606.03141 Computer Vision and Pattern Recognition +1606.03143 Computation and Language +1606.03144 Computation and Language +1606.03146 Mesoscale and Nanoscale Physics +1606.03147 Cryptography and Security +1606.03150 Information Theory +1606.03153 Computation and Language +1606.03155 Functional Analysis +1606.03156 Operator Algebras +1606.03159 Complex Variables +1606.03164 Phenomenology +1606.03166 Soft Condensed Matter +1606.03167 +1606.03171 Numerical Analysis +1606.03174 Analysis of PDEs +1606.03178 Plasma Physics +1606.03182 Networking and Internet Architecture +1606.03184 Networking and Internet Architecture +1606.03188 Medical Physics +1606.03189 Other Statistics +1606.03190 Materials Science +1606.03191 Artificial Intelligence +1606.03194 Systems and Control +1606.03196 Information Theory +1606.03197 Group Theory +1606.03198 Data Structures and Algorithms +1606.03199 Systems and Control +1606.03200 Data Structures and Algorithms +1606.03203 Machine Learning +1606.03204 Chaotic Dynamics +1606.03210 Operator Algebras +1606.03212 Learning +1606.03217 Formal Languages and Automata Theory +1606.03220 Optics +1606.03223 Theory +1606.03227 Chemical Physics +1606.03228 Atomic Physics +1606.03229 Artificial Intelligence +1606.03233 Computational Complexity +1606.03234 Materials Science +1606.03236 Human-Computer Interaction +1606.03237 Computer Vision and Pattern Recognition +1606.03245 Computation +1606.03248 Hardware Architecture +1606.03253 Probability +1606.03255 Numerical Analysis +1606.03257 Combinatorics +1606.03263 Probability +1606.03265 Phenomenology +1606.03266 Software Engineering +1606.03268 Data Structures and Algorithms +1606.03274 Materials Science +1606.03275 Statistics Theory +1606.03281 Probability +1606.03284 +1606.03289 Artificial Intelligence +1606.03291 Physics Education +1606.03295 Applications +1606.03297 Phenomenology +1606.03298 Artificial Intelligence +1606.03300 Astrophysics of Galaxies +1606.03301 Algebraic Geometry +1606.03302 Computers and Society +1606.03304 Cryptography and Security +1606.03306 Materials Science +1606.03308 Space Physics +1606.03309 Commutative Algebra +1606.03310 Optics +1606.03313 Mesoscale and Nanoscale Physics +1606.03315 History and Overview +1606.03318 +1606.03320 Number Theory +1606.03321 Solar and Stellar Astrophysics +1606.03324 General Physics +1606.03326 Neural and Evolutionary Computing +1606.03327 Optimization and Control +1606.03328 K-Theory and Homology +1606.03330 Optimization and Control +1606.03331 Geometric Topology +1606.03332 Optimization and Control +1606.03333 Multimedia +1606.03335 Computation and Language +1606.03341 Theory +1606.03342 Probability +1606.03343 Cosmology and Nongalactic Astrophysics +1606.03344 Number Theory +1606.03345 +1606.03348 Probability +1606.03349 Solar and Stellar Astrophysics +1606.03350 Phenomenology +1606.03352 Computation and Language +1606.03356 +1606.03357 Computational Geometry +1606.03359 Analysis of PDEs +1606.03362 Statistics Theory +1606.03363 Functional Analysis +1606.03364 Soft Condensed Matter +1606.03368 Cryptography and Security +1606.03369 Computer Vision and Pattern Recognition +1606.03370 High Energy Astrophysical Phenomena +1606.03371 Classical Analysis and ODEs +1606.03372 Geometric Topology +1606.03374 High Energy Astrophysical Phenomena +1606.03376 Methodology +1606.03377 Number Theory +1606.03378 Number Theory +1606.03379 Numerical Analysis +1606.03380 Information Theory +1606.03381 +1606.03386 Social and Information Networks +1606.03394 Representation Theory +1606.03397 Geometric Topology +1606.03401 Neural and Evolutionary Computing +1606.03403 Mesoscale and Nanoscale Physics +1606.03404 Analysis of PDEs +1606.03405 Phenomenology +1606.03408 Geometric Topology +1606.03409 Materials Science +1606.03410 Numerical Analysis +1606.03411 Phenomenology +1606.03412 +1606.03413 +1606.03418 Distributed, Parallel, and Cluster Computing +1606.03419 +1606.03422 Quantitative Methods +1606.03423 +1606.03425 Materials Science +1606.03427 Data Structures and Algorithms +1606.03429 Commutative Algebra +1606.03431 Commutative Algebra +1606.03432 Learning +1606.03433 Physics and Society +1606.03434 Physics and Society +1606.03436 Classical Physics +1606.03439 Learning +1606.03441 Dynamical Systems +1606.03442 Combinatorics +1606.03444 Quantum Gases +cond-mat/0404416 Statistical Mechanics +0901.3862 Other Condensed Matter +0911.2031 Probability +1005.0193 Symplectic Geometry +1111.7010 Number Theory +1112.4309 Differential Geometry +1203.1554 Numerical Analysis +1203.4275 Classical Analysis and ODEs +1210.5753 +1212.2674 Analysis of PDEs +1212.3265 Probability +1303.0760 Group Theory +1305.2989 Symplectic Geometry +1306.6263 Computer Vision and Pattern Recognition +1308.2488 Phenomenology +1309.6902 Representation Theory +1311.4704 Phenomenology +1312.4515 Representation Theory +1312.6355 +1401.0780 Probability +1401.7417 Algebraic Geometry +1402.0473 Complex Variables +1404.0538 Algebraic Geometry +1404.6957 Numerical Analysis +1404.7065 +1405.0642 Pattern Formation and Solitons +1405.6343 Spectral Theory +1406.1682 +1406.5274 Analysis of PDEs +1407.2893 Social and Information Networks +1408.3450 Differential Geometry +1408.4335 Spectral Theory +1409.3524 Number Theory +1409.6101 Functional Analysis +1410.3712 Distributed, Parallel, and Cluster Computing +1410.8780 Rings and Algebras +1411.6538 Data Structures and Algorithms +1501.01479 Representation Theory +1501.01499 +1501.03267 Functional Analysis +1501.05747 Logic +1501.06429 +1502.02238 Complex Variables +1502.02630 Algebraic Topology +1502.04180 Materials Science +1502.05508 Populations and Evolution +1503.01712 Probability +1503.06984 Dynamical Systems +1504.00902 Number Theory +1504.02460 +1504.02714 Geometric Topology +1504.05959 Theory +1504.08058 Complex Variables +1505.03553 +1505.03996 Multiagent Systems +1505.07484 Risk Management +1506.04402 Mesoscale and Nanoscale Physics +1506.06540 Computational Complexity +1507.03500 Quantum Gases +1507.05260 +1507.07309 Number Theory +1507.07497 Discrete Mathematics +1507.07806 Fluid Dynamics +1508.01217 Methodology +1508.02630 Group Theory +1508.02869 Theory +1508.03977 Mesoscale and Nanoscale Physics +1508.04033 +1508.06378 Methodology +1508.06723 Materials Science +1508.07522 Dynamical Systems +1509.00348 +1509.00903 Strongly Correlated Electrons +1509.01182 Mesoscale and Nanoscale Physics +1509.01934 Differential Geometry +1509.03291 Theory +1509.04230 Superconductivity +1509.07534 Cosmology and Nongalactic Astrophysics +1509.09188 Discrete Mathematics +1510.01105 Optics +1510.01315 Computation and Language +1510.01420 Biomolecules +1510.01947 Numerical Analysis +1510.03296 Operator Algebras +1510.03547 Statistics Theory +1510.03671 Methodology +1510.03980 Number Theory +1510.04680 Analysis of PDEs +1510.05810 Statistical Mechanics +1510.07043 Instrumentation and Methods for Astrophysics +1510.07274 Representation Theory +1510.07866 Instrumentation and Detectors +1510.08419 Programming Languages +1510.09025 Social and Information Networks +1511.00025 +1511.00406 Algebraic Geometry +1511.02458 Classical Physics +1511.02688 Methodology +1511.02790 +1511.03599 Instrumentation and Methods for Astrophysics +1511.03855 Learning +1511.03908 Learning +1511.04997 Genomics +1511.05179 Theory +1511.05350 Methodology +1511.06522 Computer Vision and Pattern Recognition +1511.06792 Soft Condensed Matter +1511.07088 Group Theory +1511.07230 Probability +1511.09320 Rings and Algebras +1512.00135 Information Theory +1512.00283 Algebraic Topology +1512.01982 Dynamical Systems +1512.03138 Probability +1512.03316 Theory +1512.03748 Representation Theory +1512.07604 Superconductivity +1512.08865 Strongly Correlated Electrons +1601.00407 Materials Science +1601.00718 Atmospheric and Oceanic Physics +1601.01402 Mesoscale and Nanoscale Physics +1601.02008 Theory +1601.02846 Statistical Mechanics +1601.03765 +1601.05103 Atomic Physics +1601.05180 Number Theory +1601.05203 Representation Theory +1601.05205 Information Theory +1601.05549 +1601.05853 Mesoscale and Nanoscale Physics +1601.06293 Theory +1601.08041 Experiment +1602.01072 +1602.02093 Strongly Correlated Electrons +1602.02933 Solar and Stellar Astrophysics +1602.03119 Theory +1602.07405 Experiment +1603.01623 Astrophysics of Galaxies +1603.01964 +1603.02481 Formal Languages and Automata Theory +1603.04004 Analysis of PDEs +1603.05640 Mesoscale and Nanoscale Physics +1603.05711 Commutative Algebra +1603.07390 Strongly Correlated Electrons +1603.09737 K-Theory and Homology +1604.00115 Algebraic Geometry +1604.01095 +1604.01604 General Physics +1604.01608 General Physics +1604.01618 General Physics +1604.01625 General Physics +1604.01638 General Physics +1604.02209 Statistical Mechanics +1604.02357 Computational Physics +1604.02577 Quantum Algebra +1604.02696 Differential Geometry +1604.03325 Applications +1604.03692 Robotics +1604.04665 Numerical Analysis +1604.04967 Information Theory +1604.05213 Medical Physics +1604.05454 Group Theory +1604.05709 Probability +1604.05852 Materials Science +1604.05861 Cryptography and Security +1604.05905 +1604.05907 Computer Vision and Pattern Recognition +1604.05948 +1604.06002 Data Structures and Algorithms +1604.06044 Logic +1604.06087 +1604.06089 Quantitative Methods +1604.06090 Theory +1604.06103 Astrophysics of Galaxies +1604.06112 Mathematical Software +1604.06115 Instrumentation and Detectors +1604.06116 Metric Geometry +1604.06117 Information Theory +1604.06122 Physics Education +1604.06126 Analysis of PDEs +1604.06128 Solar and Stellar Astrophysics +1604.06132 Populations and Evolution +1604.06133 Learning +1604.06136 Number Theory +1604.06137 Combinatorics +1604.06141 Representation Theory +1604.06142 Functional Analysis +1604.06145 Methodology +1604.06146 Differential Geometry +1604.06147 Mesoscale and Nanoscale Physics +1604.06152 Probability +1604.06153 Learning +1604.06154 Learning +1604.06156 Chemical Physics +1604.06157 Human-Computer Interaction +1604.06158 Human-Computer Interaction +1604.06159 Human-Computer Interaction +1604.06161 Phenomenology +1604.06163 Geometric Topology +1604.06164 Information Theory +1604.06166 Logic +1604.06167 Applications +1604.06168 Optics +1604.06170 Methodology +1604.06171 Numerical Analysis +1604.06172 Combinatorics +1604.06173 Soft Condensed Matter +1604.06176 Algebraic Geometry +1604.06178 General Topology +1604.06181 Discrete Mathematics +1604.06183 +1604.06187 Neural and Evolutionary Computing +1604.06194 Machine Learning +1604.06195 Computer Vision and Pattern Recognition +1604.06197 Rings and Algebras +1604.06198 Functional Analysis +1604.06199 Functional Analysis +1604.06204 Logic in Computer Science +1604.06207 +1604.06209 +1604.06213 Dynamical Systems +1604.06219 Dynamical Systems +1604.06223 Artificial Intelligence +1604.06225 Information Retrieval +1604.06226 Algebraic Geometry +1604.06227 Statistical Mechanics +1604.06229 Applications +1604.06230 Astrophysics of Galaxies +1604.06236 Information Theory +1604.06240 High Energy Astrophysical Phenomena +1604.06243 Computer Vision and Pattern Recognition +1604.06247 Algebraic Geometry +1604.06248 +1604.06252 Human-Computer Interaction +1604.06253 +1604.06255 Functional Analysis +1604.06258 Computer Vision and Pattern Recognition +1604.06260 Social and Information Networks +1604.06261 Complex Variables +1604.06263 Classical Analysis and ODEs +1604.06264 Data Structures and Algorithms +1604.06270 Information Retrieval +1604.06275 Materials Science +1604.06277 +1604.06279 +1604.06281 Analysis of PDEs +1604.06282 Optimization and Control +1604.06283 Probability +1604.06285 Computation and Language +1604.06292 Quantum Gases +1604.06295 Solar and Stellar Astrophysics +1604.06300 Populations and Evolution +1604.06304 Statistics Theory +1604.06306 Group Theory +1604.06308 Applications +1604.06309 Quantum Algebra +1604.06310 Methodology +1604.06313 Theory +1604.06315 Differential Geometry +1604.06325 Superconductivity +1604.06327 Cosmology and Nongalactic Astrophysics +1604.06329 Optimization and Control +1604.06332 Materials Science +1604.06333 Differential Geometry +1604.06335 Applications +1604.06336 Probability +1604.06337 Differential Geometry +1604.06340 Probability +1604.06341 Functional Analysis +1604.06342 Computational Finance +1604.06347 Commutative Algebra +1604.06348 Dynamical Systems +1604.06350 Optimization and Control +1604.06352 Analysis of PDEs +1604.06358 Populations and Evolution +1604.06359 Group Theory +1604.06361 Computation and Language +1604.06363 Algebraic Geometry +1604.06365 +1604.06370 Probability +1604.06373 +1604.06375 Differential Geometry +1604.06376 Logic in Computer Science +1604.06379 Discrete Mathematics +1604.06380 Methodology +1604.06386 Logic in Computer Science +1604.06392 Combinatorics +1604.06393 Rings and Algebras +1604.06394 Probability +1604.06403 Statistical Mechanics +1604.06404 Probability +1604.06407 Algebraic Geometry +1604.06408 Materials Science +1604.06411 Number Theory +1604.06412 Databases +1604.06413 Number Theory +1604.06416 Data Analysis, Statistics and Probability +1604.06418 Probability +1604.06419 +1604.06420 Probability +1604.06421 Probability +1604.06422 High Energy Astrophysical Phenomena +1604.06423 Optimization and Control +1604.06424 Optics +1604.06425 Mesoscale and Nanoscale Physics +1604.06428 +1604.06429 Quantum Algebra +1604.06434 Metric Geometry +1604.06436 Optics +1604.06440 Differential Geometry +1604.06443 Data Structures and Algorithms +1604.06449 Strongly Correlated Electrons +1604.06450 Superconductivity +0806.2108 Cell Behavior +0909.4065 Symplectic Geometry +1009.0446 Optics +1109.0593 Data Analysis, Statistics and Probability +1203.1575 +1205.5026 Biomolecules +1206.2915 Spectral Theory +1207.0092 Symplectic Geometry +1207.3657 +1208.2342 Analysis of PDEs +1208.4422 Exactly Solvable and Integrable Systems +1209.1183 Algebraic Geometry +1211.6435 Symplectic Geometry +1212.1057 Astrophysics of Galaxies +1302.4832 +1304.5343 Solar and Stellar Astrophysics +1304.7620 Analysis of PDEs +1305.0442 Instrumentation and Detectors +1305.2187 +1308.3802 Materials Science +1310.1959 Geometric Topology +1311.2374 Algebraic Geometry +1312.0545 Instrumentation and Detectors +1312.1975 Exactly Solvable and Integrable Systems +1312.2421 Exactly Solvable and Integrable Systems +1312.4133 Dynamical Systems +1312.4321 Pattern Formation and Solitons +1312.4609 Differential Geometry +1401.3605 Classical Analysis and ODEs +1401.4241 Pattern Formation and Solitons +1401.4428 Combinatorics +1403.8111 Analysis of PDEs +1404.4728 Theory +1404.6636 +1405.2054 +1405.3042 Differential Geometry +1405.5240 Statistics Theory +1408.4445 Optimization and Control +1409.2134 Optics +1409.2232 Computer Vision and Pattern Recognition +1410.3914 Data Analysis, Statistics and Probability +1410.4534 Computation +1411.0151 Commutative Algebra +1411.2383 Geometric Topology +1411.7652 +1501.00395 Spectral Theory +1501.02269 High Energy Astrophysical Phenomena +1501.02831 Spectral Theory +1501.03890 Geometric Topology +1501.04677 Probability +1502.00069 Theory +1502.00902 Exactly Solvable and Integrable Systems +1502.01648 Optics +1502.02276 +1502.02715 Analysis of PDEs +1502.02803 Information Theory +1502.04507 +1502.04657 Numerical Analysis +1502.04998 +1502.05351 Category Theory +1503.00423 Data Structures and Algorithms +1503.01559 Materials Science +1503.01730 Atomic and Molecular Clusters +1503.03724 Algebraic Topology +1503.04800 Theory +1504.00135 Combinatorics +1504.01090 Information Theory +1504.02541 +1504.03177 +1504.04316 Dynamical Systems +1504.04668 Functional Analysis +1504.07100 +1505.01641 Analysis of PDEs +1505.02243 Theory +1505.03461 +1505.04159 Probability +1505.06019 +1505.06352 Optics +1505.06841 Information Theory +1505.07589 Mathematical Software +1506.01090 +1506.01758 Analysis of PDEs +1506.01942 Representation Theory +1506.02362 Exactly Solvable and Integrable Systems +1506.02688 General Physics +1506.02693 Information Theory +1506.02708 +1506.05532 Computer Vision and Pattern Recognition +1506.05634 Complex Variables +1506.08402 Materials Science +1506.08639 Exactly Solvable and Integrable Systems +1506.08660 Atomic Physics +1507.00032 Spectral Theory +1507.00461 Optimization and Control +1507.00897 Exactly Solvable and Integrable Systems +1507.01978 Learning +1507.02147 Metric Geometry +1507.02243 Fluid Dynamics +1507.02609 Rings and Algebras +1507.03357 Atomic Physics +1507.03420 +1507.06120 Computer Vision and Pattern Recognition +1507.06145 Statistics Theory +1507.07655 Solar and Stellar Astrophysics +1507.08796 Spectral Theory +1508.00017 Cosmology and Nongalactic Astrophysics +1508.01446 Dynamical Systems +1508.06635 Phenomenology +1509.00088 +1509.00254 +1509.00604 Fluid Dynamics +1509.01360 Systems and Control +1509.01558 +1509.03791 Algebraic Geometry +1509.03912 Mesoscale and Nanoscale Physics +1509.04959 +1509.05208 Computational Engineering, Finance, and Science +1509.06277 Analysis of PDEs +1509.06650 Materials Science +1509.07252 Classical Physics +1509.07277 Dynamical Systems +1509.07482 Algebraic Geometry +1509.08357 Computational Engineering, Finance, and Science +1509.08441 Symplectic Geometry +1509.08496 Computer Science and Game Theory +1509.08903 Probability +1510.00191 Soft Condensed Matter +1510.00533 +1510.00787 Representation Theory +1510.01358 Fluid Dynamics +1510.01522 Theory +1510.01540 Exactly Solvable and Integrable Systems +1510.02145 Optimization and Control +1510.02171 Optimization and Control +1510.05152 Numerical Analysis +1510.06077 Analysis of PDEs +1510.07260 Neurons and Cognition +1510.07937 Instrumentation and Detectors +1510.07987 Operator Algebras +1510.08023 +1510.08231 Learning +1510.08379 +1510.08866 Quantum Gases +1510.09149 Earth and Planetary Astrophysics +1511.00585 +1511.01397 Analysis of PDEs +1511.01542 Theory +1511.01792 Atomic Physics +1511.02086 Quantitative Methods +1511.02187 Machine Learning +1511.02314 Pattern Formation and Solitons +1511.02812 Theory +1511.02928 Computer Vision and Pattern Recognition +1511.02952 Materials Science +1511.03293 Atomic Physics +1511.03883 Geometric Topology +1511.04333 Group Theory +1511.04382 Classical Analysis and ODEs +1511.04595 Theory +1511.04921 Theory +1511.05279 Phenomenology +1511.05299 Theory +1511.05305 Analysis of PDEs +1511.06023 Combinatorics +1511.06202 General Mathematics +1511.07003 Mesoscale and Nanoscale Physics +1511.07030 Statistics Theory +1511.08011 Soft Condensed Matter +1511.08058 Computer Vision and Pattern Recognition +1511.08575 Information Theory +1511.09362 Theory +1511.09380 Optics +1512.00037 Neurons and Cognition +1512.00101 Data Structures and Algorithms +1512.00207 Theory +1512.00232 Phenomenology +1512.00468 Phenomenology +1512.00880 +1512.01003 Computer Vision and Pattern Recognition +1512.01119 Phenomenology +1512.01489 Theory +1512.01592 Theory +1512.02345 +1512.03041 Quantum Algebra +1512.04297 Combinatorics +1512.04388 Computational Geometry +1512.04569 Numerical Analysis +1512.04732 Theory +1512.04879 Optics +1512.04941 Phenomenology +1512.05824 Optics +1512.05945 Theory +1512.07143 Artificial Intelligence +1512.07293 Information Theory +1512.07387 Materials Science +1512.07622 Phenomenology +1512.07687 Theory +1512.07898 Fluid Dynamics +1512.08309 Neurons and Cognition +1512.08524 Quantum Algebra +1512.09061 Theory +1601.00530 Information Theory +1601.00670 Computation +1601.00860 Theory +1601.01115 +1601.01329 Theory +1601.01900 Optics +1601.02253 Theory +1601.02458 +1601.02531 Theory +1601.03170 Representation Theory +1601.03367 Classical Analysis and ODEs +1601.04425 Atomic Physics +1601.04466 +1601.04843 Chaotic Dynamics +1601.04892 +1601.05043 Classical Physics +1601.05446 +1601.05807 Statistical Mechanics +1601.05860 Geometric Topology +1601.05933 Atomic Physics +1601.05972 Spectral Theory +1601.07661 Computer Vision and Pattern Recognition +1601.07705 Materials Science +1601.07974 Optics +1602.00082 Mesoscale and Nanoscale Physics +1602.00186 Mesoscale and Nanoscale Physics +1602.00298 Phenomenology +1602.00941 +1602.01147 Theory +1602.01332 Mesoscale and Nanoscale Physics +1602.01674 Theory +1602.02027 Numerical Analysis +1602.02718 Information Theory +1602.02720 Computer Vision and Pattern Recognition +1602.02751 +1602.03724 +1602.03815 Statistical Mechanics +1602.03979 Computational Engineering, Finance, and Science +1602.03987 Materials Science +1602.03992 Machine Learning +1602.04064 Instrumentation and Detectors +1602.04098 +1602.04288 Strongly Correlated Electrons +1602.04345 Information Theory +1602.04988 +1602.05422 Metric Geometry +1602.05447 Statistical Mechanics +1602.05502 General Physics +1602.05633 Materials Science +1602.07124 Mesoscale and Nanoscale Physics +1602.07248 Algebraic Geometry +1602.07564 Plasma Physics +1602.07621 Lattice +1602.07705 Theory +1602.08130 Cosmology and Nongalactic Astrophysics +1602.08595 Numerical Analysis +1602.08658 Networking and Internet Architecture +1602.08710 Networking and Internet Architecture +1602.09039 Networking and Internet Architecture +1603.00038 Optics +1603.00316 Optimization and Control +1603.00394 Solar and Stellar Astrophysics +1603.00645 Probability +1603.00851 Theory +1603.01301 Optics +1603.01406 +1603.01411 Applications +1603.01477 Optics +1603.01875 +1603.02427 Fluid Dynamics +1603.03243 Cosmology and Nongalactic Astrophysics +1603.03277 Strongly Correlated Electrons +1603.04217 +1603.04325 Optics +1603.04477 Molecular Networks +1603.04608 Optics +1603.05215 Optimization and Control +1603.05234 Cosmology and Nongalactic Astrophysics +1603.05511 Theory +1603.06380 Phenomenology +1603.06643 Adaptation and Self-Organizing Systems +1603.07681 Functional Analysis +1603.07869 High Energy Astrophysical Phenomena +1603.07956 Symplectic Geometry +1603.08221 Computational Physics +1603.08527 Phenomenology +1603.08720 Computer Vision and Pattern Recognition +1603.08727 Optics +1603.08764 Strongly Correlated Electrons +1603.08795 Mesoscale and Nanoscale Physics +1603.08935 Theory +1603.08955 +1603.09253 Geophysics +1603.09515 Chaotic Dynamics +1603.09532 Discrete Mathematics +1604.00074 Information Theory +1604.00289 Artificial Intelligence +1604.00292 Phenomenology +1604.00339 Materials Science +1604.00767 Plasma Physics +1604.00834 Computation and Language +1604.00964 Phenomenology +1604.00968 +1604.01232 Mesoscale and Nanoscale Physics +1604.01516 +1604.01529 Computer Science and Game Theory +1604.01783 Theory +1604.01818 Computer Vision and Pattern Recognition +1604.02312 Optics +1604.02545 +1604.02589 Theory +1604.02817 Optics +1604.03341 Earth and Planetary Astrophysics +1604.03740 Atomic Physics +1604.03779 Optics +1604.03846 Optics +1604.04136 +1604.04150 Fluid Dynamics +1604.04234 Geometric Topology +1604.04782 Phenomenology +1604.05203 Phenomenology +1604.06063 Quantum Gases +1604.06205 Theory +1604.06367 Phenomenology +1604.06627 Statistical Mechanics +1604.06677 Phenomenology +1604.06827 Chemical Physics +1604.06893 +1604.06937 Materials Science +1604.07028 +1604.07118 Analysis of PDEs +1604.07341 Soft Condensed Matter +1604.07419 Phenomenology +1604.07421 Phenomenology +1604.07614 Statistical Mechanics +1604.07740 Phenomenology +1604.08111 General Mathematics +1604.08119 Optics +1604.08165 Plasma Physics +1604.08400 Strongly Correlated Electrons +1604.08596 Phenomenology +1604.08757 Mesoscale and Nanoscale Physics +1604.08840 Atomic Physics +1605.00200 Materials Science +1605.00667 Instrumentation and Detectors +1605.00673 Geophysics +1605.00685 Disordered Systems and Neural Networks +1605.00694 Other Condensed Matter +1605.00816 Fluid Dynamics +1605.01230 Logic +1605.01253 Software Engineering +1605.01427 Strongly Correlated Electrons +1605.01594 Mesoscale and Nanoscale Physics +1605.01983 +1605.02011 +1605.02155 Instrumentation and Detectors +1605.02189 Instrumentation and Detectors +1605.02667 Theory +1605.03110 Fluid Dynamics +1605.03138 Mesoscale and Nanoscale Physics +1605.03511 Materials Science +1605.03618 +1605.03766 Solar and Stellar Astrophysics +1605.04010 Optics +1605.04092 Theory +1605.04182 Optics +1605.04445 Materials Science +1605.04564 Analysis of PDEs +1605.04592 Functional Analysis +1605.04716 Mesoscale and Nanoscale Physics +1605.04769 Algebraic Geometry +1605.04819 +1605.05207 +1605.05228 Soft Condensed Matter +1605.05242 General Physics +1605.05845 Phenomenology +1605.06008 Optics +1605.06235 Instrumentation and Detectors +1605.06281 +1605.06284 Fluid Dynamics +1605.06578 Mesoscale and Nanoscale Physics +1605.06584 Mesoscale and Nanoscale Physics +1605.06607 Physics and Society +1605.06823 Mesoscale and Nanoscale Physics +1605.06851 Probability +1605.07007 +1605.07078 Learning +1605.07143 Space Physics +1605.07310 +1605.07368 Theory +1605.07444 +1605.07463 Plasma Physics +1605.07903 Phenomenology +1605.07933 Statistical Mechanics +1605.08045 Theory +1605.08052 Theory +1605.08077 Phenomenology +1605.08378 +1605.08482 +1606.00246 Accelerator Physics +1606.00718 Complex Variables +1606.00739 Computation and Language +1606.01000 Theory +1606.01192 Optics +1606.01197 Optics +1606.01318 Cosmology and Nongalactic Astrophysics +1606.01489 +1606.01498 +1606.01850 Dynamical Systems +1606.01922 +1606.02150 Number Theory +1606.02290 Instrumentation and Detectors +1606.02336 Accelerator Physics +1606.02394 +1606.02472 +1606.02612 Optimization and Control +1606.02728 Theory +1606.02784 Accelerator Physics +1606.02970 Phenomenology +1606.03080 Phenomenology +1606.03165 Instrumentation and Detectors +1606.03175 Information Theory +1606.03193 Optics +1606.03382 Accelerator Physics +1606.03757 Computation +1606.03786 Accelerator Physics +1606.03802 Learning +1606.03922 Strongly Correlated Electrons +1606.03951 +1606.04149 Phenomenology +1606.04227 Accelerator Physics +1606.04237 Accelerator Physics +1606.04440 Accelerator Physics +1606.04650 Accelerator Physics +1606.04675 Plasma Physics +1606.04681 Mesoscale and Nanoscale Physics +1606.04982 +1606.05044 Optics +1606.05882 Phenomenology +1606.06074 Number Theory +1606.06211 Phenomenology +1606.06503 Strongly Correlated Electrons +1606.06609 Theory +1606.06693 Phenomenology +1606.06968 Cosmology and Nongalactic Astrophysics +1606.06981 Phenomenology +1606.07054 +1606.07289 Machine Learning +1606.07444 Theory +1606.07495 Combinatorics +1606.07549 Instrumentation and Detectors +1606.07562 Optics +1606.07786 Neural and Evolutionary Computing +1606.07808 Phenomenology +1606.07842 Optics +1606.08067 Phenomenology +1606.08097 Instrumentation and Detectors +1606.08187 Plasma Physics +1606.08223 Soft Condensed Matter +1606.08489 Plasma Physics +1606.08624 Theory +1606.08713 Phenomenology +1606.08766 Distributed, Parallel, and Cluster Computing +1606.08796 +1606.08836 Optics +1606.08839 Mesoscale and Nanoscale Physics +1606.08895 +1606.09026 Soft Condensed Matter +1606.09072 Optics +1606.09168 Probability +1606.09486 Accelerator Physics +1607.00004 Phenomenology +1607.00037 Theory +1607.00039 +1607.00494 Information Theory +1607.01060 High Energy Astrophysical Phenomena +1607.01109 Statistical Mechanics +1607.01161 Plasma Physics +1607.01193 Fluid Dynamics +1607.01646 Chemical Physics +1607.01654 Phenomenology +1607.01781 Theory +1607.01810 Mesoscale and Nanoscale Physics +1607.01853 Statistics Theory +1607.01928 Phenomenology +1607.01969 Atomic Physics +1607.02558 +1607.02697 Optics +1607.02772 +1607.02801 Information Theory +1607.02818 Data Analysis, Statistics and Probability +1607.02879 Computer Science and Game Theory +1607.03119 Theory +1607.03125 Phenomenology +1607.03128 Information Theory +1607.03194 Strongly Correlated Electrons +1607.03397 Mesoscale and Nanoscale Physics +1607.03398 +1607.03536 Phenomenology +1607.03552 Statistical Mechanics +1607.03563 Strongly Correlated Electrons +1607.03600 Combinatorics +1607.03918 Discrete Mathematics +1607.03934 Optics +1607.03950 Superconductivity +1607.04119 Quantum Gases +1607.04319 Dynamical Systems +1607.04776 Information Theory +1607.04854 Chemical Physics +1607.04964 Instrumentation and Detectors +1607.05063 +1607.05098 Optics +1607.05451 Data Structures and Algorithms +1607.05461 Astrophysics of Galaxies +1607.05481 Chemical Physics +1607.05511 Statistical Mechanics +1607.05548 Phenomenology +1607.05576 Solar and Stellar Astrophysics +1607.05641 Phenomenology +1607.05728 Theory +1607.05844 Plasma Physics +1607.06037 Chemical Physics +1607.06046 Mesoscale and Nanoscale Physics +1607.06052 Optics +1607.06199 Materials Science +1607.06220 Astrophysics of Galaxies +1607.06591 Optics +1607.06713 Superconductivity +1607.06828 Theory +1607.07066 Materials Science +1607.07154 Optics +1607.07310 Atomic Physics +1607.07367 Earth and Planetary Astrophysics +1607.07428 Metric Geometry +1607.07621 Phenomenology +1607.08045 Instrumentation and Detectors +1607.08092 Materials Science +1607.08295 Optimization and Control +1607.08347 +1607.08379 Disordered Systems and Neural Networks +1607.08425 Biological Physics +1607.08685 Methodology +1607.08811 Computer Vision and Pattern Recognition +1607.08866 Materials Science +1607.08869 Chemical Physics +1608.00200 Phenomenology +1608.00215 Plasma Physics +1608.00562 Instrumentation and Detectors +1608.00907 +1608.00975 Phenomenology +1608.01180 Data Analysis, Statistics and Probability +1608.01388 Optics +1608.01485 Instrumentation and Detectors +1608.01530 +1608.01694 Computational Physics +1608.01855 Earth and Planetary Astrophysics +1608.01861 Atomic Physics +1608.02122 Soft Condensed Matter +1608.02133 Instrumentation and Methods for Astrophysics +1608.02457 Instrumentation and Methods for Astrophysics +1608.02528 Materials Science +1608.02570 Optics +1608.02596 Theory +1608.02703 Number Theory +1608.02723 Chaotic Dynamics +1608.02934 Instrumentation and Detectors +1608.03267 Statistical Mechanics +1608.03270 Data Structures and Algorithms +1608.03370 Optics +1608.03385 Optimization and Control +1608.03418 Plasma Physics +1608.03455 Solar and Stellar Astrophysics +1608.03570 Theory +1608.03805 Phenomenology +1608.04290 Machine Learning +1608.04320 Learning +1608.04373 Algebraic Geometry +1608.04676 Instrumentation and Detectors +1608.04930 Exactly Solvable and Integrable Systems +1608.05014 Computation and Language +1608.05727 History and Philosophy of Physics +1608.05907 Numerical Analysis +1608.05967 Materials Science +1608.06037 Computer Vision and Pattern Recognition +1608.06074 +1608.06110 Superconductivity +1608.06156 Materials Science +1608.06686 Mesoscale and Nanoscale Physics +1608.07295 Phenomenology +1608.07453 Superconductivity +1608.07725 Chemical Physics +1608.08243 +1608.08264 Optics +1608.08303 +1608.08411 +1608.08805 +1609.00180 Biological Physics +1609.00449 Astrophysics of Galaxies +1609.00599 Trading and Market Microstructure +1609.00624 Algebraic Geometry +1609.01077 Mesoscale and Nanoscale Physics +1609.01520 +1609.01625 Data Analysis, Statistics and Probability +1609.02077 Computer Vision and Pattern Recognition +1609.02414 Probability +1609.02578 Strongly Correlated Electrons +1609.02650 Analysis of PDEs +1609.02676 Optics +1609.02944 High Energy Astrophysical Phenomena +1609.03364 Phenomenology +1609.03422 Materials Science +1609.03502 Combinatorics +1609.03973 Cosmology and Nongalactic Astrophysics +1609.04447 Optimization and Control +1609.04582 Chaotic Dynamics +1609.04766 Operator Algebras +1609.04922 Materials Science +1609.04940 Optics +1609.04968 Mesoscale and Nanoscale Physics +1609.05006 Mesoscale and Nanoscale Physics +1609.05322 Soft Condensed Matter +1609.05445 Optics +1609.05453 Statistical Mechanics +1609.05494 Rings and Algebras +1609.05659 Chemical Physics +1609.05701 Information Theory +1609.05725 Mesoscale and Nanoscale Physics +1609.05855 Materials Science +1609.05859 Mesoscale and Nanoscale Physics +1609.05861 Instrumentation and Detectors +1609.05888 Soft Condensed Matter +1609.05906 Materials Science +1609.06073 Chaotic Dynamics +1609.06237 Theory +1609.06422 +1609.06541 Soft Condensed Matter +1609.06871 Soft Condensed Matter +1609.06924 Soft Condensed Matter +1609.07023 Materials Science +1609.07273 Analysis of PDEs +1609.07286 Materials Science +1609.07310 Mesoscale and Nanoscale Physics +1609.07553 Materials Science +1609.07578 Strongly Correlated Electrons +1609.07579 +1609.07863 Materials Science +1609.07883 Optics +1609.07906 Physics Education +1609.08108 Populations and Evolution +1609.08178 +1609.08437 Computers and Society +1609.08459 Quantum Gases +1609.08688 Combinatorics +1609.08695 +1609.08722 Algebraic Geometry +1609.09031 Data Structures and Algorithms +1609.09539 Mesoscale and Nanoscale Physics +1609.09620 Instrumentation and Detectors +1609.09853 Soft Condensed Matter +1610.00161 Neurons and Cognition +1610.00329 Mesoscale and Nanoscale Physics +1610.00391 Soft Condensed Matter +1610.00534 +1610.00929 Superconductivity +1610.01084 +1610.01486 Computation and Language +1610.01534 +1610.01641 Soft Condensed Matter +1610.01725 Mesoscale and Nanoscale Physics +1610.02033 Theory +1610.02112 Statistical Mechanics +1610.02840 +1610.03100 Statistical Mechanics +1610.03525 Graphics +1610.04098 Geometric Topology +1610.04380 Soft Condensed Matter +1610.04529 Plasma Physics +1610.04720 Chemical Physics +1610.04996 Superconductivity +1610.05089 Chemical Physics +1610.05130 Optics +1610.05380 Number Theory +1610.05515 Biological Physics +1610.05763 Rings and Algebras +1610.05764 Disordered Systems and Neural Networks +1610.06931 Phenomenology +1610.06982 +1610.07184 Distributed, Parallel, and Cluster Computing +1610.07271 Methodology +1610.07291 Differential Geometry +1610.07415 Superconductivity +1610.07672 Information Theory +1610.08062 Mesoscale and Nanoscale Physics +1610.08176 Cosmology and Nongalactic Astrophysics +1610.08327 Materials Science +1610.08542 +1610.08601 Strongly Correlated Electrons +1610.08651 Number Theory +1610.08826 Lattice +1610.08942 Phenomenology +1610.09076 Quantum Gases +1610.09322 Machine Learning +1610.09428 Learning +1610.09435 Distributed, Parallel, and Cluster Computing +1610.09457 Experiment +1610.09555 Learning +1610.09650 Learning +1610.09741 Quantum Algebra +1610.09744 Quantum Algebra +1610.09989 Lattice +1610.09996 Computation and Language +1610.10045 Superconductivity +1610.10074 Lattice +1611.00013 Phenomenology +1611.00265 Metric Geometry +1611.00319 Numerical Analysis +1611.00336 Machine Learning +1611.00357 Functional Analysis +1611.00358 Neurons and Cognition +1611.00363 Instrumentation and Methods for Astrophysics +1611.00366 Cosmology and Nongalactic Astrophysics +1611.00370 Computers and Society +1611.00373 Experiment +1611.00374 Cryptography and Security +1611.00375 +1611.00376 Cosmology and Nongalactic Astrophysics +1611.00377 Social and Information Networks +1611.00379 Human-Computer Interaction +1611.00381 Cryptography and Security +1611.00382 Algebraic Topology +1611.00383 Soft Condensed Matter +1611.00384 Information Retrieval +1611.00386 Soft Condensed Matter +1611.00387 Classical Analysis and ODEs +1611.00391 Algebraic Geometry +1611.00393 Computer Vision and Pattern Recognition +1611.00396 Statistical Mechanics +1611.00398 Methodology +1611.00399 +1611.00400 Methodology +1611.00401 Logic in Computer Science +1611.00403 Networking and Internet Architecture +1611.00406 Instrumentation and Detectors +1611.00409 Probability +1611.00410 Rings and Algebras +1611.00411 Probability +1611.00414 Mesoscale and Nanoscale Physics +1611.00415 Commutative Algebra +1611.00416 Algebraic Geometry +1611.00417 Number Theory +1611.00420 Astrophysics of Galaxies +1611.00421 Computer Vision and Pattern Recognition +1611.00423 Databases +1611.00426 Quantum Gases +1611.00427 Mesoscale and Nanoscale Physics +1611.00430 +1611.00432 Geometric Topology +1611.00433 Analysis of PDEs +1611.00435 Information Theory +1611.00436 Materials Science +1611.00438 Classical Analysis and ODEs +1611.00439 Logic +1611.00440 Information Retrieval +1611.00442 Statistics Theory +1611.00445 Instrumentation and Detectors +1611.00446 Theory +1611.00447 Computers and Society +1611.00448 Learning +1611.00450 Optimization and Control +1611.00454 Learning +1611.00457 Social and Information Networks +1611.00458 High Energy Astrophysical Phenomena +1611.00460 Applications +1611.00461 Group Theory +1611.00462 Analysis of PDEs +1611.00464 Computational Finance +1611.00465 Geometric Topology +1611.00466 Lattice +1611.00467 Programming Languages +1611.00468 Computer Vision and Pattern Recognition +1611.00469 Cryptography and Security +1611.00470 Algebraic Geometry +1611.00472 Computation and Language +1611.00473 Cosmology and Nongalactic Astrophysics +1611.00476 Operator Algebras +1611.00478 Materials Science +1611.00479 +1611.00485 Number Theory +1611.00487 Algebraic Topology +1611.00488 Instrumentation and Methods for Astrophysics +1611.00490 Materials Science +1611.00491 Information Theory +1611.00493 Probability +1611.00494 Functional Analysis +1611.00495 Phenomenology +1611.00499 Rings and Algebras +1611.00500 Phenomenology +1611.00502 Combinatorics +1611.00503 Lattice +1611.00504 Algebraic Geometry +1611.00505 Fluid Dynamics +1611.00507 Data Structures and Algorithms +1611.00508 Dynamical Systems +1611.00509 Neurons and Cognition +1611.00511 Solar and Stellar Astrophysics +1611.00514 Sound +1611.00515 Probability +1611.00517 Superconductivity +1611.00518 Multiagent Systems +1611.00519 Statistics Theory +1611.00521 Optimization and Control +1611.00522 Systems and Control +1611.00524 Optimization and Control +1611.00525 Rings and Algebras +1611.00527 Physics and Society +1611.00528 Astrophysics of Galaxies +1611.00529 Combinatorics +1611.00530 Theory +1611.00531 Computational Engineering, Finance, and Science +1611.00532 Data Structures and Algorithms +1611.00534 Mesoscale and Nanoscale Physics +1611.00535 Representation Theory +1611.00536 Complex Variables +1611.00537 Geometric Topology +1611.00538 Artificial Intelligence +1611.00539 Differential Geometry +1611.00540 Solar and Stellar Astrophysics +1611.00542 Cosmology and Nongalactic Astrophysics +1611.00544 Applications +1611.00545 Biological Physics +1611.00546 Theory +1611.00548 Classical Analysis and ODEs +1611.00549 Artificial Intelligence +1611.00550 Spectral Theory +1611.00551 Lattice +1611.00552 Mesoscale and Nanoscale Physics +1611.00553 Algebraic Geometry +1611.00554 Astrophysics of Galaxies +1611.00555 Machine Learning +1611.00556 Algebraic Geometry +1611.00557 Geophysics +1611.00558 Information Retrieval +1611.00559 Data Structures and Algorithms +1611.00560 Accelerator Physics +1611.00561 Numerical Analysis +1611.00562 General Topology +1611.00563 Analysis of PDEs +1611.00565 Machine Learning +1611.00566 Networking and Internet Architecture +1611.00567 Group Theory +1611.00568 Social and Information Networks +1611.00569 Differential Geometry +1611.00570 Soft Condensed Matter +1611.00571 Number Theory +1611.00574 Formal Languages and Automata Theory +1611.00575 Dynamical Systems +1611.00576 Artificial Intelligence +1611.00577 Neural and Evolutionary Computing +1611.00578 Software Engineering +1611.00579 Pattern Formation and Solitons +1611.00581 Optimization and Control +1611.00582 Systems and Control +1611.00583 Mesoscale and Nanoscale Physics +1611.00586 Systems and Control +1611.00588 Differential Geometry +1611.00590 Theory +1611.00591 Computer Vision and Pattern Recognition +1611.00592 Theory +1611.00593 Theory +1611.00596 Geophysics +1611.00598 Information Retrieval +1611.00599 General Physics +1611.00602 Programming Languages +1611.00603 General Physics +1611.00605 Computational Physics +1611.00606 Computational Engineering, Finance, and Science +1611.00607 Data Analysis, Statistics and Probability +1611.00609 Astrophysics of Galaxies +1611.00610 Numerical Analysis +1611.00615 +1611.00616 Computational Engineering, Finance, and Science +1611.00617 Information Theory +1611.00618 Numerical Analysis +1611.00619 +1611.00620 Lattice +1611.00622 Functional Analysis +1611.00623 High Energy Astrophysical Phenomena +1611.00624 Statistical Mechanics +1611.00627 Atomic Physics +1611.00628 Quantum Algebra +1611.00630 Statistics Theory +1611.00631 +1611.00633 Biological Physics +1611.00637 Statistical Mechanics +1611.00638 Optics +1611.00639 Physics and Society +1611.00641 Mesoscale and Nanoscale Physics +1611.00643 Fluid Dynamics +1611.00644 +1611.00645 Phenomenology +1611.00648 Optics +1611.00650 Statistical Mechanics +1611.00655 Plasma Physics +1611.00657 Pattern Formation and Solitons +1611.00658 Probability +1611.00661 +1611.00662 Representation Theory +1611.00663 Quantum Gases +1611.00664 +1611.00665 Data Structures and Algorithms +1611.00666 Molecular Networks +1611.00671 Optimization and Control +1611.00672 Differential Geometry +1611.00673 Strongly Correlated Electrons +1611.00675 Mathematical Software +1611.00676 Databases +1611.00678 Classical Analysis and ODEs +1611.00679 Networking and Internet Architecture +1611.00681 Optics +1611.00684 Computer Vision and Pattern Recognition +1611.00685 Artificial Intelligence +1611.00687 Social and Information Networks +1611.00688 Networking and Internet Architecture +1611.00692 Programming Languages +1611.00693 Biomolecules +1611.00694 Theory +1611.00695 Optics +1611.00698 Analysis of PDEs +1611.00702 Lattice +1611.00706 Atomic Physics +1611.00707 Optimization and Control +1611.00708 Networking and Internet Architecture +1611.00709 Information Theory +1611.00710 Neural and Evolutionary Computing +1611.00711 Optimization and Control +1611.00713 +1611.00714 Learning +1611.00715 Category Theory +1611.00716 Biomolecules +1611.00717 Methodology +1611.00718 Combinatorics +1611.00720 Number Theory +1611.00721 Data Structures and Algorithms +1611.00722 Dynamical Systems +1611.00724 Optimization and Control +1611.00730 Cell Behavior +1611.00731 Computational Physics +1611.00732 Populations and Evolution +1611.00735 Symplectic Geometry +1611.00737 Soft Condensed Matter +1611.00739 Other Computer Science +1611.00742 Cryptography and Security +1611.00743 Analysis of PDEs +1611.00744 Disordered Systems and Neural Networks +1611.00745 Probability +1611.00748 Strongly Correlated Electrons +1611.00750 +1611.00751 Instrumentation and Methods for Astrophysics +1611.00752 Cosmology and Nongalactic Astrophysics +1611.00755 Data Structures and Algorithms +astro-ph/0001255 +astro-ph/0002193 +astro-ph/0002204 +astro-ph/0002268 +astro-ph/0002307 +astro-ph/0003485 +astro-ph/0004046 +astro-ph/0004096 +astro-ph/0004098 +astro-ph/0004244 +astro-ph/0004356 +astro-ph/0005594 +astro-ph/0007290 +astro-ph/0009271 +astro-ph/0010570 +astro-ph/0011171 +astro-ph/0011292 +astro-ph/0011295 +astro-ph/0011553 +astro-ph/0012026 +astro-ph/0012084 +astro-ph/0012233 +astro-ph/0012234 +astro-ph/0012235 +astro-ph/0012338 +astro-ph/0101071 +astro-ph/0101176 +astro-ph/0101203 +astro-ph/0101204 +astro-ph/0101212 +astro-ph/0101263 +astro-ph/0101284 +astro-ph/0101286 +astro-ph/0101323 +astro-ph/0101338 +astro-ph/0101343 +astro-ph/0101376 +astro-ph/0101383 +astro-ph/0101414 +astro-ph/0101415 +astro-ph/0101432 +astro-ph/0101438 +astro-ph/0101439 +astro-ph/0101469 +astro-ph/0101561 +astro-ph/0102082 +astro-ph/0102247 +astro-ph/0102305 +astro-ph/0103094 +astro-ph/0103169 +astro-ph/0103170 +astro-ph/0104048 +astro-ph/0105299 +astro-ph/0106200 +astro-ph/0109495 +astro-ph/0202517 +astro-ph/0203070 +astro-ph/0305209 +astro-ph/0305501 +astro-ph/0306094 +astro-ph/0306114 +astro-ph/0306265 +astro-ph/0306427 +astro-ph/0306553 +astro-ph/0409549 +astro-ph/0411215 +astro-ph/0411222 +astro-ph/0411396 +astro-ph/0411409 +astro-ph/0411491 +astro-ph/0411629 +astro-ph/0412059 +astro-ph/0412273 +astro-ph/0501007 +astro-ph/0501276 +astro-ph/0502118 +astro-ph/9512060 +astro-ph/9608077 +astro-ph/9611054 +astro-ph/9701225 +astro-ph/9908247 +cond-mat/9308014 +cond-mat/9309047 +cond-mat/9312051 +cond-mat/9407027 +cond-mat/9408101 +cond-mat/9411017 +cond-mat/9503063 +cond-mat/9601060 +cond-mat/9703026 Mesoscale and Nanoscale Physics +cond-mat/9704055 Mesoscale and Nanoscale Physics +cond-mat/9708148 Soft Condensed Matter +cond-mat/9709293 Materials Science +cond-mat/9802244 Mesoscale and Nanoscale Physics +cond-mat/9803111 Soft Condensed Matter +cond-mat/9810353 +cond-mat/9812186 Mesoscale and Nanoscale Physics +funct-an/9502006 Functional Analysis +gr-qc/0001099 +gr-qc/0004010 +gr-qc/0203076 +gr-qc/0501064 +gr-qc/0508122 +gr-qc/9511014 +gr-qc/9705015 +gr-qc/9910021 +hep-ex/0004030 Experiment +hep-ex/0101019 Experiment +hep-ex/0504022 Experiment +hep-ex/9707026 Experiment +hep-ex/9709029 Experiment +hep-ex/9709030 Experiment +hep-lat/9402010 Lattice +hep-lat/9411073 Lattice +hep-lat/9504013 Lattice +hep-lat/9505006 Lattice +hep-lat/9505024 Lattice +hep-lat/9505026 Lattice +hep-lat/9506005 Lattice +hep-lat/9506016 Lattice +hep-lat/9506017 Lattice +hep-lat/9506018 Lattice +hep-lat/9506024 Lattice +hep-lat/9506033 Lattice +hep-lat/9508015 Lattice +hep-lat/9710057 Lattice +hep-ph/0001026 Phenomenology +hep-ph/0001077 Phenomenology +hep-ph/0001173 Phenomenology +hep-ph/0001199 Phenomenology +hep-ph/0001207 Phenomenology +hep-ph/0001210 Phenomenology +hep-ph/0001236 Phenomenology +hep-ph/0001241 Phenomenology +hep-ph/0001285 Phenomenology +hep-ph/0001292 Phenomenology +hep-ph/0001294 Phenomenology +hep-ph/0001328 Phenomenology +hep-ph/0002002 Phenomenology +hep-ph/0002012 Phenomenology +hep-ph/0002026 Phenomenology +hep-ph/0002031 Phenomenology +hep-ph/0002107 Phenomenology +hep-ph/0002109 Phenomenology +hep-ph/0002125 Phenomenology +hep-ph/0002146 Phenomenology +hep-ph/0002187 Phenomenology +hep-ph/0002197 Phenomenology +hep-ph/0002256 Phenomenology +hep-ph/0002273 Phenomenology +hep-ph/0003069 Phenomenology +hep-ph/0003120 Phenomenology +hep-ph/0003166 Phenomenology +hep-ph/0003208 Phenomenology +hep-ph/0003232 Phenomenology +hep-ph/0003248 Phenomenology +hep-ph/0003250 Phenomenology +hep-ph/0003265 Phenomenology +hep-ph/0003294 Phenomenology +hep-ph/0003306 Phenomenology +hep-ph/0003310 Phenomenology +hep-ph/0003314 Phenomenology +hep-ph/0003315 Phenomenology +hep-ph/0004036 Phenomenology +hep-ph/0004042 Phenomenology +hep-ph/0004058 Phenomenology +hep-ph/0004072 Phenomenology +hep-ph/0004096 Phenomenology +hep-ph/0004102 Phenomenology +hep-ph/0004129 Phenomenology +hep-ph/0004202 Phenomenology +hep-ph/0004240 Phenomenology +hep-ph/0005011 Phenomenology +hep-ph/0005079 Phenomenology +hep-ph/0005091 Phenomenology +hep-ph/0005256 Phenomenology +hep-ph/0008330 Phenomenology +hep-ph/0010335 Phenomenology +hep-ph/0011313 Phenomenology +hep-ph/0011318 Phenomenology +hep-ph/0102099 Phenomenology +hep-ph/0103077 Phenomenology +hep-ph/0103079 Phenomenology +hep-ph/0401178 Phenomenology +hep-ph/0409251 Phenomenology +hep-ph/0409252 Phenomenology +hep-ph/0409272 Phenomenology +hep-ph/0409323 Phenomenology +hep-ph/0409344 Phenomenology +hep-ph/0410007 Phenomenology +hep-ph/0411149 Phenomenology +hep-ph/0412076 Phenomenology +hep-ph/0412351 Phenomenology +hep-ph/0501113 Phenomenology +hep-ph/0511122 Phenomenology +hep-ph/0511265 Phenomenology +hep-ph/9204201 Phenomenology +hep-ph/9211275 Phenomenology +hep-ph/9404205 Phenomenology +hep-ph/9404264 Phenomenology +hep-ph/9404265 Phenomenology +hep-ph/9404314 Phenomenology +hep-ph/9412361 Phenomenology +hep-ph/9503400 Phenomenology +hep-ph/9503425 Phenomenology +hep-ph/9503427 Phenomenology +hep-ph/9504210 Phenomenology +hep-ph/9504216 Phenomenology +hep-ph/9504289 Phenomenology +hep-ph/9504310 Phenomenology +hep-ph/9504324 Phenomenology +hep-ph/9504325 Phenomenology +hep-ph/9505208 Phenomenology +hep-ph/9505263 Phenomenology +hep-ph/9505265 Phenomenology +hep-ph/9505293 Phenomenology +hep-ph/9505307 Phenomenology +hep-ph/9505345 Phenomenology +hep-ph/9505346 Phenomenology +hep-ph/9506365 Phenomenology +hep-ph/9506366 Phenomenology +hep-ph/9510375 Phenomenology +hep-ph/9511206 Phenomenology +hep-ph/9701231 Phenomenology +hep-ph/9702287 Phenomenology +hep-ph/9702375 Phenomenology +hep-ph/9702431 Phenomenology +hep-ph/9703387 Phenomenology +hep-ph/9703412 Phenomenology +hep-ph/9703442 Phenomenology +hep-ph/9704347 Phenomenology +hep-ph/9704376 Phenomenology +hep-ph/9704453 Phenomenology +hep-ph/9705282 Phenomenology +hep-ph/9705292 Phenomenology +hep-ph/9705404 Phenomenology +hep-ph/9705461 Phenomenology +hep-ph/9706340 Phenomenology +hep-ph/9706380 Phenomenology +hep-ph/9706384 Phenomenology +hep-ph/9706463 Phenomenology +hep-ph/9706466 Phenomenology +hep-ph/9706524 Phenomenology +hep-ph/9706532 Phenomenology +hep-ph/9706548 Phenomenology +hep-ph/9707209 Phenomenology +hep-ph/9707217 Phenomenology +hep-ph/9707241 Phenomenology +hep-ph/9707280 Phenomenology +hep-ph/9707283 Phenomenology +hep-ph/9707295 Phenomenology +hep-ph/9707410 Phenomenology +hep-ph/9707451 Phenomenology +hep-ph/9707497 Phenomenology +hep-ph/9707544 Phenomenology +hep-ph/9708214 Phenomenology +hep-ph/9708252 Phenomenology +hep-ph/9708254 Phenomenology +hep-ph/9708296 Phenomenology +hep-ph/9709244 Phenomenology +hep-ph/9709336 Phenomenology +hep-ph/9709356 Phenomenology +hep-ph/9709425 Phenomenology +hep-ph/9709440 Phenomenology +hep-ph/9709471 Phenomenology +hep-ph/9710475 Phenomenology +hep-ph/9710483 Phenomenology +hep-ph/9710559 Phenomenology +hep-ph/9712489 Phenomenology +hep-ph/9712509 Phenomenology +hep-ph/9712513 Phenomenology +hep-ph/9801331 Phenomenology +hep-ph/9801443 Phenomenology +hep-ph/9805263 Phenomenology +hep-ph/9806266 Phenomenology +hep-ph/9912466 Phenomenology +hep-ph/9912480 Phenomenology +hep-th/0001157 Theory +hep-th/0002166 Theory +hep-th/0003156 Theory +hep-th/0003251 Theory +hep-th/0004016 Theory +hep-th/0409189 Theory +hep-th/0501002 Theory +hep-th/0503110 Theory +hep-th/9308011 Theory +hep-th/9308135 Theory +hep-th/9309072 Theory +hep-th/9309115 Theory +hep-th/9309125 Theory +hep-th/9401138 Theory +hep-th/9404075 Theory +hep-th/9408129 Theory +hep-th/9505019 Theory +hep-th/9506123 Theory +hep-th/9510021 Theory +hep-th/9511190 Theory +hep-th/9601020 Theory +hep-th/9601022 Theory +hep-th/9703118 Theory +hep-th/9705011 Theory +hep-th/9705127 Theory +hep-th/9707075 Theory +hep-th/9902003 Theory +hep-th/9903252 Theory +nucl-th/9403014 +nucl-th/9409013 +nucl-th/9502045 +nucl-th/9504015 +nucl-th/9505004 +nucl-th/9510062 +physics/0006049 General Physics +physics/9710038 +q-alg/9512017 Quantum Algebra +q-alg/9512018 Quantum Algebra +q-alg/9602016 Quantum Algebra +quant-ph/9812037 +0802.1268 Differential Geometry +1111.4173 Differential Geometry +1203.6700 Logic +1205.0716 Differential Geometry +1210.0107 +1301.2942 Operator Algebras +1306.0024 Digital Libraries +1306.3599 Solar and Stellar Astrophysics +1307.4847 Learning +1309.2389 Soft Condensed Matter +1310.0950 Functional Analysis +1311.6372 Numerical Analysis +1312.2666 Differential Geometry +1401.2770 Chemical Physics +1402.0827 Lattice +1402.0831 Lattice +1403.7837 +1406.1293 Differential Geometry +1406.2139 Computer Vision and Pattern Recognition +1406.5683 Differential Geometry +1409.0146 Quantum Gases +1409.7706 Cosmology and Nongalactic Astrophysics +1409.8320 +1411.1624 Pricing of Securities +1411.5235 Numerical Analysis +1412.2580 Optics +1412.2582 Group Theory +1412.2605 +1412.2662 Emerging Technologies +1412.7103 Statistics Theory +1412.7595 Multimedia +1412.7885 Combinatorics +1412.8331 +1501.00508 Algebraic Topology +1501.06843 Number Theory +1502.05183 Distributed, Parallel, and Cluster Computing +1502.06619 Theory +1502.06794 +1503.01293 Phenomenology +1503.02999 Analysis of PDEs +1503.03441 Combinatorics +1503.06253 Materials Science +1503.06822 Discrete Mathematics +1504.01128 Methodology +1504.02797 +1504.04093 Computation +1505.05274 Strongly Correlated Electrons +1505.06186 General Physics +1505.07533 Probability +1506.05302 Atomic Physics +1506.08184 Quantum Gases +1506.09150 Numerical Analysis +1507.00778 Probability +1507.01521 Group Theory +1507.04310 Algebraic Topology +1507.05602 Digital Libraries +1507.05814 Materials Science +1507.06039 Superconductivity +1508.00012 Theory +1508.01981 +1508.02807 Numerical Analysis +1508.02833 Materials Science +1508.02965 Numerical Analysis +1508.03137 Geophysics +1508.06682 Phenomenology +1509.00016 Social and Information Networks +1509.00914 +1509.01099 Logic +1509.02259 +1509.03383 Group Theory +1509.05737 Disordered Systems and Neural Networks +1509.08030 Rings and Algebras +1510.00950 Number Theory +1510.03088 Spectral Theory +1510.05033 Adaptation and Self-Organizing Systems +1510.07643 Analysis of PDEs +1510.08040 Group Theory +1510.08224 Computational Physics +1510.08341 Information Theory +1510.08750 Analysis of PDEs +1511.01071 Theory +1511.01497 Theory +1511.03217 +1511.04203 Plasma Physics +1511.05944 Experiment +1511.06135 Atomic Physics +1511.06148 Representation Theory +1511.08738 Mesoscale and Nanoscale Physics +1512.02059 Networking and Internet Architecture +1512.03068 Mesoscale and Nanoscale Physics +1512.03828 General Mathematics +1512.04284 Superconductivity +1512.04312 Algebraic Geometry +1512.05005 Fluid Dynamics +1512.05209 Atomic Physics +1512.05444 Complex Variables +1512.05657 Phenomenology +1512.06220 Applications +1512.06541 +1512.06628 Quantum Gases +1512.06776 Representation Theory +1512.07459 Populations and Evolution +1512.08838 Symplectic Geometry +1512.08919 Instrumentation and Detectors +1512.09055 Theory +1601.00204 Optimization and Control +1601.00556 Probability +1601.01552 +1601.02011 Statistical Mechanics +1601.02436 Information Theory +1601.02634 Theory +1601.02964 Materials Science +1601.03212 Mesoscale and Nanoscale Physics +1601.03724 Classical Analysis and ODEs +1601.04868 +1601.05435 Statistical Mechanics +1601.07303 Spectral Theory +1602.00720 Theory +1602.00829 Soft Condensed Matter +1602.05076 Superconductivity +1602.06117 +1602.06905 Dynamical Systems +1602.07038 Graphics +1602.07197 +1602.07252 Experiment +1602.07652 Numerical Analysis +1602.08916 Phenomenology +1603.00383 Strongly Correlated Electrons +1603.02816 +1603.02925 Disordered Systems and Neural Networks +1603.02934 Experiment +1603.03663 +1603.03676 Mesoscale and Nanoscale Physics +1603.05236 Differential Geometry +1603.05469 High Energy Astrophysical Phenomena +1603.06707 Phenomenology +1603.07525 Lattice +1603.08836 +1603.08867 High Energy Astrophysical Phenomena +1603.09701 Social and Information Networks +1603.09742 Computer Vision and Pattern Recognition +1604.00959 Group Theory +1604.01619 General Physics +1604.02751 Computational Physics +1604.03088 Phenomenology +1604.03521 Chaotic Dynamics +1604.03725 +1604.04008 Populations and Evolution +1604.04316 Geometric Topology +1604.04408 Functional Analysis +1604.04993 Mesoscale and Nanoscale Physics +1604.05420 Differential Geometry +1604.05436 Differential Geometry +1604.06355 Atomic and Molecular Clusters +1604.06953 Geometric Topology +1604.08683 Computer Vision and Pattern Recognition +1605.00363 +1605.00509 Digital Libraries +1605.02135 Group Theory +1605.02373 Strongly Correlated Electrons +1605.02527 +1605.02549 Materials Science +1605.02664 Combinatorics +1605.04803 Algebraic Geometry +1605.05943 Fluid Dynamics +1605.08611 Materials Science +1605.09294 Phenomenology +1606.00173 Chaotic Dynamics +1606.00520 K-Theory and Homology +1606.01098 Combinatorics +1606.01206 Databases +1606.01764 Combinatorics +1606.01790 Theory +1606.02872 Superconductivity +1606.03361 Accelerator Physics +1606.03395 Statistical Mechanics +1606.03420 +1606.04189 Computer Vision and Pattern Recognition +1606.04422 Artificial Intelligence +1606.04430 Statistics Theory +1606.04672 Computation and Language +1606.05599 Combinatorics +1606.06959 Machine Learning +1606.09402 Numerical Analysis +1606.09447 Theory +1606.09539 Numerical Analysis +1607.00068 Theory +1607.00089 Information Theory +1607.00299 Lattice +1607.00331 Computer Vision and Pattern Recognition +1607.00426 Representation Theory +1607.00877 Dynamical Systems +1607.00917 K-Theory and Homology +1607.01007 Combinatorics +1607.01173 Lattice +1607.01332 Mesoscale and Nanoscale Physics +1607.01441 Information Theory +1607.01505 Analysis of PDEs +1607.01523 Mesoscale and Nanoscale Physics +1607.01536 Geometric Topology +1607.01703 Materials Science +1607.01713 Soft Condensed Matter +1607.01729 Artificial Intelligence +1607.01763 Geometric Topology +1607.01775 History and Philosophy of Physics +1607.01776 Instrumentation and Methods for Astrophysics +1607.01778 Strongly Correlated Electrons +1607.01780 High Energy Astrophysical Phenomena +1607.01793 High Energy Astrophysical Phenomena +1607.01794 Computer Vision and Pattern Recognition +1607.01796 +1607.01801 +1607.01804 Combinatorics +1607.01811 Geophysics +1607.01812 Pattern Formation and Solitons +1607.01815 +1607.01819 Theory +1607.01821 Optimization and Control +1607.01822 Numerical Analysis +1607.01823 Optics +1607.01824 Astrophysics of Galaxies +1607.01826 Computational Complexity +1607.01827 Information Theory +1607.01828 Formal Languages and Automata Theory +1607.01831 Phenomenology +1607.01833 Methodology +1607.01834 Group Theory +1607.01835 Programming Languages +1607.01838 Multiagent Systems +1607.01839 Analysis of PDEs +1607.01841 Cell Behavior +1607.01848 Systems and Control +1607.01850 Optics +1607.01851 Quantum Gases +1607.01854 Materials Science +1607.01855 Computer Vision and Pattern Recognition +1607.01856 Computation and Language +1607.01861 Optimization and Control +1607.01864 Information Theory +1607.01869 Information Retrieval +1607.01870 +1607.01872 Information Theory +1607.01876 Combinatorics +1607.01878 Strongly Correlated Electrons +1607.01880 Discrete Mathematics +1607.01885 Populations and Evolution +1607.01886 Logic in Computer Science +1607.01887 Information Theory +1607.01888 Fluid Dynamics +1607.01889 Astrophysics of Galaxies +1607.01893 Software Engineering +1607.01894 Earth and Planetary Astrophysics +1607.01897 Differential Geometry +1607.01898 Experiment +1607.01900 Strongly Correlated Electrons +1607.01905 +1607.01906 +1607.01907 Experiment +1607.01908 Information Theory +1607.01911 +1607.01915 Populations and Evolution +1607.01922 Theory +1607.01923 Analysis of PDEs +1607.01927 Soft Condensed Matter +1607.01930 Quantum Gases +1607.01932 Phenomenology +1607.01938 Atomic and Molecular Clusters +1607.01939 K-Theory and Homology +1607.01940 +1607.01941 Physics and Society +1607.01942 Networking and Internet Architecture +1607.01947 Commutative Algebra +1607.01950 Differential Geometry +1607.01951 Group Theory +1607.01952 Social and Information Networks +1607.01957 Rings and Algebras +1607.01958 Computation and Language +1607.01959 Neurons and Cognition +1607.01960 Materials Science +1607.01961 +1607.01967 Symbolic Computation +1607.01971 Computer Vision and Pattern Recognition +1607.01972 Astrophysics of Galaxies +1607.01976 High Energy Astrophysical Phenomena +1607.01977 Computer Vision and Pattern Recognition +1607.01978 Number Theory +1607.01983 Emerging Technologies +1607.01986 Analysis of PDEs +1607.01987 Exactly Solvable and Integrable Systems +1607.01990 Computers and Society +1607.01991 Analysis of PDEs +1607.01992 Mesoscale and Nanoscale Physics +1607.01995 Information Theory +1607.01996 Information Theory +1607.01999 Economics +1607.02001 Logic in Computer Science +1607.02002 Phenomenology +1607.02003 Computer Vision and Pattern Recognition +1607.02006 Complex Variables +1607.02007 Fluid Dynamics +1607.02010 Dynamical Systems +1607.02013 Optics +1607.02016 Symbolic Computation +1607.02017 Methodology +1607.02018 Artificial Intelligence +1607.02019 Number Theory +1607.02020 Social and Information Networks +1607.02025 Differential Geometry +1607.02027 Phenomenology +1607.02028 Neural and Evolutionary Computing +1607.02029 Accelerator Physics +1607.02031 Representation Theory +1607.02032 K-Theory and Homology +1607.02033 Experiment +1607.02035 Earth and Planetary Astrophysics +1607.02038 Statistical Mechanics +1607.02039 Combinatorics +1607.02041 Classical Analysis and ODEs +1607.02044 Commutative Algebra +1607.02045 Networking and Internet Architecture +1607.02049 Accelerator Physics +1607.02052 Computational Geometry +1607.02057 Analysis of PDEs +1607.02060 Social and Information Networks +1607.02062 Computers and Society +1607.02064 Category Theory +1607.02065 Accelerator Physics +1607.02066 Probability +1607.02067 Pricing of Securities +1607.02068 Quantum Algebra +1607.02070 Geometric Topology +1607.02071 Computer Science and Game Theory +1607.02072 Mesoscale and Nanoscale Physics +1607.02078 Learning +1607.02079 Group Theory +1607.02080 Materials Science +1607.02081 Number Theory +1607.02085 Machine Learning +1607.02089 Experiment +1607.02090 Materials Science +1607.02091 Earth and Planetary Astrophysics +1607.02092 Probability +1607.02093 Statistical Finance +1607.02096 Social and Information Networks +1607.02098 Complex Variables +1607.02100 Complex Variables +1607.02101 Complex Variables +1607.02103 Theory +1607.02105 Complex Variables +1607.02106 Geometric Topology +1607.02108 Solar and Stellar Astrophysics +1607.02109 Computation and Language +1607.02110 Biomolecules +1607.02114 Probability +1607.02116 Soft Condensed Matter +1607.02117 Representation Theory +1607.02121 Materials Science +1607.02122 Number Theory +1607.02124 Soft Condensed Matter +1607.02125 Materials Science +1607.02127 Instrumentation and Detectors +1607.02128 Materials Science +1607.02130 Optimization and Control +1607.02131 Combinatorics +1607.02133 Distributed, Parallel, and Cluster Computing +1607.02134 Probability +1607.02135 Commutative Algebra +hep-th/0205266 Theory +math/0510140 Complex Variables +math/0606756 Metric Geometry +nlin/0208048 Chaotic Dynamics +0710.2975 Theory +0806.4878 Analysis of PDEs +0904.2648 Optics +1006.5548 Plasma Physics +1010.4839 Earth and Planetary Astrophysics +1101.5452 Atomic Physics +1104.2372 Algebraic Topology +1105.2186 +1202.5067 Mesoscale and Nanoscale Physics +1204.3038 Analysis of PDEs +1204.5349 Optics +1207.3627 +1208.0656 Solar and Stellar Astrophysics +1302.1755 +1305.3418 Populations and Evolution +1307.5374 Solar and Stellar Astrophysics +1310.7220 +1311.1909 Geometric Topology +1312.2124 +1402.3334 +1403.0026 Group Theory +1404.0948 Data Structures and Algorithms +1404.6459 Materials Science +1405.0497 Metric Geometry +1405.3698 Theory +1405.4998 Representation Theory +1405.5705 Chaotic Dynamics +1405.5754 Discrete Mathematics +1405.7453 Differential Geometry +1407.1119 Numerical Analysis +1407.8534 +1409.0298 Probability +1409.6537 Combinatorics +1410.2097 Theory +1410.3660 Cosmology and Nongalactic Astrophysics +1410.3715 Probability +1410.6182 +1411.2675 Optimization and Control +1411.4344 Materials Science +1411.6340 Computer Vision and Pattern Recognition +1411.6408 Data Structures and Algorithms +1411.7894 Spectral Theory +1412.0913 Numerical Analysis +1412.2475 Algebraic Geometry +1412.5302 Data Structures and Algorithms +1412.7332 Statistics Theory +1501.04010 Neural and Evolutionary Computing +1501.06031 Applications +1502.00412 Statistics Theory +1502.01413 Statistics Theory +1502.04365 Logic +1502.05209 Logic in Computer Science +1502.05704 Phenomenology +1502.08008 Logic in Computer Science +1503.00630 Complex Variables +1503.01207 Optimization and Control +1503.06325 General Physics +1503.07463 Data Structures and Algorithms +1503.08144 Strongly Correlated Electrons +1504.00914 Differential Geometry +1504.03046 Theory +1504.03530 Probability +1504.03556 Combinatorics +1504.07889 Computer Vision and Pattern Recognition +1504.08089 Combinatorics +1504.08194 Differential Geometry +1505.01192 Quantum Algebra +1505.01962 Data Structures and Algorithms +1505.02572 Materials Science +1505.04035 +1505.05838 Phenomenology +1506.00225 Instrumentation and Methods for Astrophysics +1506.00937 Risk Management +1506.02406 Geometric Topology +1506.03730 Geometric Topology +1506.07579 +1506.08299 +1507.00670 Probability +1507.01428 Data Structures and Algorithms +1507.03153 +1507.03746 Logic +1507.05880 Learning +1508.00763 Quantum Gases +1508.02013 Logic +1508.02609 Symplectic Geometry +1508.02682 Mesoscale and Nanoscale Physics +1508.04308 Experiment +1508.04923 Solar and Stellar Astrophysics +1508.07115 Phenomenology +1509.00246 Lattice +1509.00939 Optics +1509.01803 Quantum Gases +1509.04113 +1509.04346 General Topology +1509.04921 Metric Geometry +1510.02876 +1510.03989 Databases +1510.07808 Strongly Correlated Electrons +1510.07979 +1510.08061 Algebraic Geometry +1511.00383 +1511.00646 +1511.01305 Analysis of PDEs +1511.06487 Mathematical Software +1511.06744 Computer Vision and Pattern Recognition +1511.07284 Mesoscale and Nanoscale Physics +1511.08468 Algebraic Geometry +1511.09096 Statistical Mechanics +1511.09231 Computer Vision and Pattern Recognition +1512.00605 +1512.00853 Astrophysics of Galaxies +1512.01022 Computation +1512.01631 Methodology +1512.01770 +1512.01923 Lattice +1512.02794 Computational Geometry +1512.03107 Optimization and Control +1512.03456 Strongly Correlated Electrons +1512.03548 +1512.03845 +1512.04631 +1512.05065 +1512.06326 +1512.06384 Algebraic Geometry +1512.07840 Numerical Analysis +1512.08855 Theory +1601.00179 Number Theory +1601.00326 Analysis of PDEs +1601.01015 Geometric Topology +1601.01105 +1601.02310 Solar and Stellar Astrophysics +1601.02643 Superconductivity +1601.03132 History and Overview +1601.03552 Superconductivity +1601.04276 Information Theory +1601.04980 Databases +1601.05450 Number Theory +1601.06017 Geometric Topology +1601.06890 Combinatorics +1601.07899 Mesoscale and Nanoscale Physics +1602.01012 Cosmology and Nongalactic Astrophysics +1602.02012 High Energy Astrophysical Phenomena +1602.02354 Soft Condensed Matter +1602.02501 Combinatorics +1602.02658 Learning +1602.02687 +1602.03481 Learning +1602.04095 Distributed, Parallel, and Cluster Computing +1602.04530 Logic in Computer Science +1602.07716 +1602.08151 Learning +1602.08265 Phenomenology +1602.08853 Computational Physics +1602.08863 Programming Languages +1602.09004 Number Theory +1603.00321 +1603.00447 Theory +1603.01242 Statistical Mechanics +1603.01497 +1603.01852 Mesoscale and Nanoscale Physics +1603.02111 Optics +1603.03384 +1603.04414 Materials Science +1603.04622 Phenomenology +1603.04642 Phenomenology +1603.04668 Theory +1603.04808 Algebraic Geometry +1603.05014 Quantum Algebra +1603.05344 Theory +1603.06374 Populations and Evolution +1603.06514 Classical Physics +1603.06631 Theory +1603.06963 Quantum Gases +1603.07129 Solar and Stellar Astrophysics +1603.08358 Computer Vision and Pattern Recognition +1603.09613 Combinatorics +1603.09743 Commutative Algebra +1604.00393 Phenomenology +1604.00867 Chaotic Dynamics +1604.01559 Mesoscale and Nanoscale Physics +1604.01729 Computation and Language +1604.02010 Group Theory +1604.02190 Representation Theory +1604.04002 Statistics Theory +1604.04253 Number Theory +1604.04760 Geometric Topology +1604.04971 +1604.05127 Probability +1604.06028 Probability +1604.06445 Mesoscale and Nanoscale Physics +1604.06460 +1604.07205 Plasma Physics +1604.08003 Materials Science +1605.00464 Solar and Stellar Astrophysics +1605.00827 Soft Condensed Matter +1605.00830 Mesoscale and Nanoscale Physics +1605.01222 Soft Condensed Matter +1605.01913 Algebraic Geometry +1605.02146 High Energy Astrophysical Phenomena +1605.03098 Theory +1605.03406 Phenomenology +1605.04101 Materials Science +1605.04112 Instrumentation and Methods for Astrophysics +1605.04231 Optics +1605.04709 Cosmology and Nongalactic Astrophysics +1605.05074 Combinatorics +1605.05569 Materials Science +1605.05914 High Energy Astrophysical Phenomena +1605.05949 +1605.06324 Solar and Stellar Astrophysics +1605.06551 Materials Science +1605.06838 Machine Learning +1605.07066 Machine Learning +1605.07262 Learning +1605.07377 +1605.07462 Solar and Stellar Astrophysics +1605.07569 +1605.07931 Mesoscale and Nanoscale Physics +1605.08582 Strongly Correlated Electrons +1605.08757 +1605.09047 Experiment +1605.09209 Soft Condensed Matter +1605.09341 Phenomenology +1605.09653 Computer Vision and Pattern Recognition +1606.00066 +1606.00074 +1606.00167 +1606.00281 Statistical Mechanics +1606.00333 Materials Science +1606.00353 Rings and Algebras +1606.01369 Theory +1606.01553 Geometric Topology +1606.01667 Strongly Correlated Electrons +1606.01735 Machine Learning +1606.01829 Theory +1606.01913 Quantum Gases +1606.02302 +1606.04183 Plasma Physics +1606.06202 Analysis of PDEs +1606.06321 Probability +1606.06538 Phenomenology +1606.06859 Experiment +1606.07064 Mesoscale and Nanoscale Physics +1606.07089 Strongly Correlated Electrons +1606.07682 Combinatorics +1606.08391 Experiment +1606.08408 Mesoscale and Nanoscale Physics +1606.08835 Physics and Society +1606.09007 +1606.09125 Mesoscale and Nanoscale Physics +1606.09128 Cosmology and Nongalactic Astrophysics +1606.09134 Theory +1606.09276 Superconductivity +1606.09564 Systems and Control +1607.00011 Phenomenology +1607.00055 Superconductivity +1607.00212 Cosmology and Nongalactic Astrophysics +1607.00701 Phenomenology +1607.01188 Astrophysics of Galaxies +1607.01372 +1607.01662 Strongly Correlated Electrons +1607.02152 Phenomenology +1607.02155 Mesoscale and Nanoscale Physics +1607.02850 Mesoscale and Nanoscale Physics +1607.02932 Phenomenology +1607.03542 Computation and Language +1607.03681 Sound +1607.04059 Theory +1607.04969 +1607.05089 Astrophysics of Galaxies +1607.05188 Differential Geometry +1607.05412 Databases +1607.05525 Phenomenology +1607.05738 Materials Science +1607.05925 Solar and Stellar Astrophysics +1607.06101 Phenomenology +1607.06210 Fluid Dynamics +1607.06549 Superconductivity +1607.06613 Quantum Gases +1607.06634 Solar and Stellar Astrophysics +1607.08165 Solar and Stellar Astrophysics +1607.08617 Disordered Systems and Neural Networks +1607.08744 Quantum Gases +1608.00068 Theory +1608.00115 Materials Science +1608.00298 Optics +1608.00302 Artificial Intelligence +1608.00513 Solar and Stellar Astrophysics +1608.00584 Materials Science +1608.00720 Materials Science +1608.01178 Mesoscale and Nanoscale Physics +1608.01305 Statistical Mechanics +1608.01489 Solar and Stellar Astrophysics +1608.01574 Statistical Mechanics +1608.01748 Strongly Correlated Electrons +1608.01857 Experiment +1608.01988 Solar and Stellar Astrophysics +1608.02208 Fluid Dynamics +1608.02294 +1608.02580 High Energy Astrophysical Phenomena +1608.04099 +1608.04933 Phenomenology +1608.05218 Phenomenology +1608.05725 Group Theory +1608.05952 Superconductivity +1608.06354 Metric Geometry +1608.06394 Phenomenology +1608.06717 +1608.06931 Combinatorics +1608.07240 Number Theory +1608.07900 Phenomenology +1608.07970 Mesoscale and Nanoscale Physics +1608.08060 Quantum Gases +1608.08164 Superconductivity +1608.08460 +1608.08470 Materials Science +1608.08965 Statistical Mechanics +1609.00196 Solar and Stellar Astrophysics +1609.00224 Astrophysics of Galaxies +1609.00275 Earth and Planetary Astrophysics +1609.00349 Cosmology and Nongalactic Astrophysics +1609.00351 Mesoscale and Nanoscale Physics +1609.00650 Astrophysics of Galaxies +1609.00751 +1609.00924 Mesoscale and Nanoscale Physics +1609.01656 Statistical Mechanics +1609.01824 +1609.02485 Astrophysics of Galaxies +1609.02662 Mesoscale and Nanoscale Physics +1609.02759 Earth and Planetary Astrophysics +1609.02888 Computational Complexity +1609.03090 +1609.03208 Strongly Correlated Electrons +1609.03339 Mesoscale and Nanoscale Physics +1609.03379 Astrophysics of Galaxies +1609.03424 Instrumentation and Methods for Astrophysics +1609.03533 Theory +1609.03594 Phenomenology +1609.03827 Mesoscale and Nanoscale Physics +1609.03983 Strongly Correlated Electrons +1609.04269 Solar and Stellar Astrophysics +1609.04303 Astrophysics of Galaxies +1609.04340 Cryptography and Security +1609.04396 +1609.04508 Learning +1609.04800 Quantum Gases +1609.04950 Mesoscale and Nanoscale Physics +1609.05502 Computational Engineering, Finance, and Science +1609.05911 Astrophysics of Galaxies +1609.05924 Mesoscale and Nanoscale Physics +1609.06019 Databases +1609.06242 Astrophysics of Galaxies +1609.06295 Computational Geometry +1609.06487 High Energy Astrophysical Phenomena +1609.06539 Astrophysics of Galaxies +1609.06682 Algebraic Geometry +1609.06766 +1609.06879 Astrophysics of Galaxies +1609.07062 Solar and Stellar Astrophysics +1609.07255 Instrumentation and Methods for Astrophysics +1609.07406 +1609.07453 +1609.07729 Mesoscale and Nanoscale Physics +1609.07944 Solar and Stellar Astrophysics +1609.08038 Phenomenology +1609.08806 Solar and Stellar Astrophysics +1609.08825 Solar and Stellar Astrophysics +1609.08945 Solar and Stellar Astrophysics +1609.09123 Theory +1609.09159 Phenomenology +1609.09556 Mesoscale and Nanoscale Physics +1609.09647 Solar and Stellar Astrophysics +1610.00162 Mesoscale and Nanoscale Physics +1610.00486 Algebraic Topology +1610.00610 Astrophysics of Galaxies +1610.00717 High Energy Astrophysical Phenomena +1610.00803 Mesoscale and Nanoscale Physics +1610.00884 Group Theory +1610.01448 Classical Analysis and ODEs +1610.01823 Superconductivity +1610.02078 Theory +1610.02334 Classical Analysis and ODEs +1610.02419 +1610.02790 Earth and Planetary Astrophysics +1610.03530 High Energy Astrophysical Phenomena +1610.03899 Machine Learning +1610.04007 Solar and Stellar Astrophysics +1610.04417 Solar and Stellar Astrophysics +1610.04934 Fluid Dynamics +1610.05106 Classical Analysis and ODEs +1610.05252 Algebraic Geometry +1610.05483 Number Theory +1610.08034 Theory +1610.08303 Solar and Stellar Astrophysics +1610.08454 Group Theory +1610.08791 +1610.08958 Mesoscale and Nanoscale Physics +1610.09018 Statistics Theory +1610.09521 Optics +1610.09534 Computer Vision and Pattern Recognition +1611.00057 Number Theory +1611.00245 Algebraic Geometry +1611.00541 High Energy Astrophysical Phenomena +1611.00964 Theory +1611.01098 Disordered Systems and Neural Networks +1611.01138 Materials Science +1611.01216 Group Theory +1611.01443 Other Condensed Matter +1611.01577 Materials Science +1611.01785 +1611.02036 Instrumentation and Methods for Astrophysics +1611.03683 High Energy Astrophysical Phenomena +1611.04121 +1611.04722 Mesoscale and Nanoscale Physics +1611.04751 Chaotic Dynamics +1611.04803 Solar and Stellar Astrophysics +1611.04963 Cosmology and Nongalactic Astrophysics +1611.05839 Information Theory +1611.06032 Group Theory +1611.06234 Earth and Planetary Astrophysics +1611.06244 +1611.06262 Materials Science +1611.06551 Cosmology and Nongalactic Astrophysics +1611.06769 Atomic and Molecular Clusters +1611.06805 Lattice +1611.06838 General Mathematics +1611.07271 Disordered Systems and Neural Networks +1611.07285 Computer Vision and Pattern Recognition +1611.07315 Soft Condensed Matter +1611.07316 Analysis of PDEs +1611.07498 Theory +1611.07563 Analysis of PDEs +1611.07727 Computer Vision and Pattern Recognition +1611.07744 Pattern Formation and Solitons +1611.07956 Phenomenology +1611.07958 +1611.08145 Methodology +1611.08156 Chemical Physics +1611.08229 Learning +1611.08570 +1611.08687 Data Structures and Algorithms +1611.08757 Discrete Mathematics +1611.08781 Optimization and Control +1611.08793 Materials Science +1611.08891 Optimization and Control +1611.08910 Strongly Correlated Electrons +1611.08987 Computation and Language +1611.08991 Computer Vision and Pattern Recognition +1611.09075 Cosmology and Nongalactic Astrophysics +1611.09118 High Energy Astrophysical Phenomena +1611.09166 Dynamical Systems +1611.09199 Mesoscale and Nanoscale Physics +1611.09248 +1611.09253 Experiment +1611.09268 Computation and Language +1611.09323 +1611.09349 Fluid Dynamics +1611.09350 Group Theory +1611.09352 Atomic Physics +1611.09354 Astrophysics of Galaxies +1611.09356 Phenomenology +1611.09363 Theory +1611.09364 Strongly Correlated Electrons +1611.09368 Theory +1611.09372 Astrophysics of Galaxies +1611.09373 Earth and Planetary Astrophysics +1611.09377 Physics Education +1611.09378 Statistical Mechanics +1611.09379 Numerical Analysis +1611.09382 Geometric Topology +1611.09384 Learning +1611.09387 Social and Information Networks +1611.09388 Cosmology and Nongalactic Astrophysics +1611.09389 Earth and Planetary Astrophysics +1611.09390 Functional Analysis +1611.09391 Machine Learning +1611.09392 Computer Vision and Pattern Recognition +1611.09393 Mesoscale and Nanoscale Physics +1611.09394 Computer Vision and Pattern Recognition +1611.09395 Chemical Physics +1611.09396 Theory +1611.09398 Algebraic Geometry +1611.09399 Solar and Stellar Astrophysics +1611.09400 Information Theory +1611.09401 Astrophysics of Galaxies +1611.09402 Analysis of PDEs +1611.09403 High Energy Astrophysical Phenomena +1611.09405 Computation and Language +1611.09410 Quantitative Methods +1611.09412 Differential Geometry +1611.09413 Phenomenology +1611.09414 Methodology +1611.09415 Geometric Topology +1611.09417 Analysis of PDEs +1611.09418 Cryptography and Security +1611.09421 Methodology +1611.09422 Materials Science +1611.09424 Robotics +1611.09425 Number Theory +1611.09426 Cosmology and Nongalactic Astrophysics +1611.09427 Human-Computer Interaction +1611.09429 Number Theory +1611.09430 Neural and Evolutionary Computing +1611.09431 Robotics +1611.09432 Numerical Analysis +1611.09433 Robotics +1611.09434 Artificial Intelligence +1611.09435 Applications +1611.09436 Robotics +1611.09437 Numerical Analysis +1611.09438 Solar and Stellar Astrophysics +1611.09439 Theory +1611.09440 Instrumentation and Methods for Astrophysics +1611.09441 Computation and Language +1611.09442 Theory +1611.09443 Metric Geometry +1611.09444 Machine Learning +1611.09446 Hardware Architecture +1611.09447 High Energy Astrophysical Phenomena +1611.09451 +1611.09457 Combinatorics +1611.09460 Accelerator Physics +1611.09461 Learning +1611.09462 Materials Science +1611.09463 Mesoscale and Nanoscale Physics +1611.09464 Computer Vision and Pattern Recognition +1611.09466 Combinatorics +1611.09468 Materials Science +1611.09469 Combinatorics +1611.09470 Computers and Society +1611.09471 Programming Languages +1611.09472 Programming Languages +1611.09473 Programming Languages +1611.09474 Data Structures and Algorithms +1611.09475 Computers and Society +1611.09476 Probability +1611.09480 Robotics +1611.09481 Fluid Dynamics +1611.09482 Sound +1611.09485 Computational Geometry +1611.09486 Probability +1611.09487 Group Theory +1611.09488 Methodology +1611.09489 Fluid Dynamics +1611.09490 Robotics +1611.09491 +1611.09492 Superconductivity +1611.09493 Dynamical Systems +1611.09494 Complex Variables +1611.09496 Information Retrieval +1611.09497 Statistical Mechanics +1611.09498 Computer Vision and Pattern Recognition +1611.09500 Combinatorics +1611.09501 Information Theory +1611.09502 Computer Vision and Pattern Recognition +1611.09503 Cosmology and Nongalactic Astrophysics +1611.09509 Methodology +1611.09510 Learning +1611.09511 Software Engineering +1611.09512 Networking and Internet Architecture +1611.09513 Rings and Algebras +1611.09515 Computer Science and Game Theory +1611.09516 Adaptation and Self-Organizing Systems +1611.09519 Experiment +1611.09521 Mesoscale and Nanoscale Physics +1611.09523 Mesoscale and Nanoscale Physics +1611.09524 Sound +1611.09525 Combinatorics +1611.09526 Sound +1611.09530 Phenomenology +1611.09531 Combinatorics +1611.09533 Earth and Planetary Astrophysics +1611.09534 Computer Vision and Pattern Recognition +1611.09535 Materials Science +1611.09536 Combinatorics +1611.09537 Optics +1611.09538 Numerical Analysis +1611.09539 Analysis of PDEs +1611.09541 Formal Languages and Automata Theory +1611.09545 Combinatorics +1611.09550 Optics +1611.09553 Astrophysics of Galaxies +1611.09554 Differential Geometry +1611.09556 Algebraic Geometry +1611.09558 Optics +1611.09559 Computer Vision and Pattern Recognition +1611.09560 Logic +1611.09562 Optics +1611.09563 +1611.09564 Cryptography and Security +1611.09565 Populations and Evolution +1611.09566 Cryptography and Security +1611.09567 Mathematical Software +1611.09568 Probability +1611.09569 Distributed, Parallel, and Cluster Computing +1611.09570 Distributed, Parallel, and Cluster Computing +1611.09572 Computer Vision and Pattern Recognition +1611.09573 Artificial Intelligence +1611.09574 Strongly Correlated Electrons +1611.09577 Computer Vision and Pattern Recognition +1611.09578 Materials Science +1611.09579 Combinatorics +1611.09580 Computer Vision and Pattern Recognition +1611.09581 Astrophysics of Galaxies +1611.09584 Lattice +1611.09586 +1611.09587 Computer Vision and Pattern Recognition +1611.09589 Logic +1611.09591 Optics +1611.09593 +1611.09595 Optics +1611.09597 Analysis of PDEs +1611.09598 +1611.09601 Solar and Stellar Astrophysics +1611.09606 Programming Languages +1611.09607 Experiment +1611.09609 Optics +1611.09610 +1611.09611 Superconductivity +1611.09612 +1611.09613 Computer Science and Game Theory +1611.09615 Fluid Dynamics +1611.09616 Combinatorics +1611.09617 Quantum Gases +1611.09618 Combinatorics +1611.09621 Machine Learning +1611.09623 Systems and Control +1611.09624 Populations and Evolution +1611.09625 Instrumentation and Methods for Astrophysics +1611.09626 Programming Languages +1611.09627 Optics +1611.09631 Mathematical Finance +1611.09632 +1611.09633 Logic in Computer Science +1611.09635 Physics and Society +1611.09637 Combinatorics +1611.09639 Combinatorics +1611.09640 +1611.09641 Group Theory +1611.09643 Optimization and Control +1611.09644 Soft Condensed Matter +1611.09645 Differential Geometry +1611.09646 Numerical Analysis +1611.09648 Biomolecules +1611.09649 Optics +1611.09650 Classical Physics +1611.09651 Optics +1611.09654 +1611.09656 Representation Theory +1611.09657 Experiment +1611.09660 +1611.09661 Experiment +1611.09662 High Energy Astrophysical Phenomena +1611.09664 Data Structures and Algorithms +1611.09666 Discrete Mathematics +1611.09668 Algebraic Geometry +1611.09671 Emerging Technologies +1611.09673 Phenomenology +1611.09674 Analysis of PDEs +1611.09679 Number Theory +1611.09682 Cosmology and Nongalactic Astrophysics +1611.09683 Combinatorics +1611.09686 Combinatorics +1611.09689 Lattice +1611.09691 Databases +1611.09692 Functional Analysis +1611.09693 Optics +1611.09695 Strongly Correlated Electrons +1611.09697 Optimization and Control +1611.09698 Functional Analysis +1611.09701 Systems and Control +1611.09702 Systems and Control +1611.09703 Computation and Language +1611.09704 Instrumentation and Methods for Astrophysics +1611.09705 Instrumentation and Detectors +1611.09706 Machine Learning +1611.09707 Optimization and Control +1611.09708 Instrumentation and Detectors +1611.09711 Lattice +1611.09712 Instrumentation and Detectors +1611.09715 Instrumentation and Detectors +1611.09716 Soft Condensed Matter +1611.09717 Strongly Correlated Electrons +1611.09719 Probability +1611.09720 +1611.09722 Mesoscale and Nanoscale Physics +1611.09723 Probability +1611.09724 Mesoscale and Nanoscale Physics +1611.09725 +1611.09726 Computer Vision and Pattern Recognition +1611.09727 Methodology +1611.09728 Combinatorics +1611.09729 +1611.09731 Mesoscale and Nanoscale Physics +1611.09732 Disordered Systems and Neural Networks +1611.09733 Sound +1611.09736 Instrumentation and Methods for Astrophysics +1611.09738 Information Theory +1611.09739 Instrumentation and Detectors +1611.09743 +1611.09744 Statistics Theory +1611.09745 Optimization and Control +1611.09746 Fluid Dynamics +1611.09747 Differential Geometry +1611.09750 Statistical Mechanics +1611.09751 Physics and Society +1611.09753 Cosmology and Nongalactic Astrophysics +1611.09754 Data Structures and Algorithms +1611.09755 Systems and Control +1611.09756 Instrumentation and Methods for Astrophysics +1611.09757 Number Theory +1611.09759 Metric Geometry +1611.09762 Classical Analysis and ODEs +1611.09768 Lattice +1611.09769 Computer Vision and Pattern Recognition +1611.09771 Soft Condensed Matter +1611.09772 +1611.09773 Analysis of PDEs +1611.09774 Distributed, Parallel, and Cluster Computing +1611.09775 Analysis of PDEs +1611.09777 Strongly Correlated Electrons +1611.09781 +1611.09784 Numerical Analysis +1611.09786 Materials Science +1611.09790 Methodology +1611.09791 Medical Physics +1611.09792 Optics +1611.09793 Optimization and Control +1611.09794 Combinatorics +1611.09795 Systems and Control +1611.09798 +1611.09799 Computation and Language +1611.09801 Solar and Stellar Astrophysics +1611.09805 Optimization and Control +1611.09811 Computer Vision and Pattern Recognition +1611.09814 Optimization and Control +1611.09815 Quantum Algebra +1611.09817 Phenomenology +1611.09818 Algebraic Geometry +1611.09819 Neurons and Cognition +1611.09820 Biological Physics +1611.09821 Probability +1611.09822 High Energy Astrophysical Phenomena +1611.09824 Other Quantitative Biology +1611.09827 Machine Learning +1611.09828 Representation Theory +1611.09829 Medical Physics +1611.09831 Fluid Dynamics +1611.09832 Instrumentation and Methods for Astrophysics +1611.09834 Theory +1611.09835 Optimization and Control +1611.09836 +1611.09837 +1611.09838 Phenomenology +1611.09840 Dynamical Systems +1611.09842 Computer Vision and Pattern Recognition +1611.09843 Quantum Algebra +1611.09844 Chaotic Dynamics +1611.09845 Phenomenology +1611.09847 Strongly Correlated Electrons +1611.09848 Earth and Planetary Astrophysics +cond-mat/9811074 Strongly Correlated Electrons +0711.0685 +0806.0602 +0807.0794 +0808.1788 Differential Geometry +0908.1341 General Physics +0911.1142 +1007.4272 +1009.3133 Cosmology and Nongalactic Astrophysics +1010.2817 Experiment +1011.4865 Cosmology and Nongalactic Astrophysics +1011.6591 Cosmology and Nongalactic Astrophysics +1012.0642 Cosmology and Nongalactic Astrophysics +1105.5529 Phenomenology +1107.1469 Differential Geometry +1107.4819 Rings and Algebras +1108.4406 Solar and Stellar Astrophysics +1109.6736 Astrophysics of Galaxies +1112.1305 +1206.6192 Cosmology and Nongalactic Astrophysics +1206.6286 Neurons and Cognition +1207.0015 Cosmology and Nongalactic Astrophysics +1207.0734 Cosmology and Nongalactic Astrophysics +1207.3443 Combinatorics +1211.2662 Data Structures and Algorithms +1211.6784 Geometric Topology +1301.0192 Theory +1302.6500 Discrete Mathematics +1303.0256 Neurons and Cognition +1303.2513 Portfolio Management +1303.6710 Group Theory +1304.3599 Algebraic Topology +1304.4955 Classical Analysis and ODEs +1304.7195 +1305.1332 Differential Geometry +1307.2037 Numerical Analysis +1307.7747 Combinatorics +1309.4817 +1309.5881 Optics +1310.1848 +1310.4519 +1310.6592 Physics and Society +1311.4478 Dynamical Systems +1311.5282 Instrumentation and Methods for Astrophysics +1311.7225 Information Theory +1401.3707 +1402.0120 Number Theory +1402.4986 Distributed, Parallel, and Cluster Computing +1402.6172 +1402.6984 Algebraic Topology +1403.2669 Group Theory +1403.6084 Functional Analysis +1403.6558 Probability +1403.6780 Strongly Correlated Electrons +1405.0585 Economics +1405.2331 Dynamical Systems +1405.5071 Rings and Algebras +1405.6918 +1405.6925 Algebraic Geometry +1405.7863 +1406.3667 Solar and Stellar Astrophysics +1406.5094 +1406.6334 +1406.6362 Cosmology and Nongalactic Astrophysics +1407.2901 Algebraic Geometry +1407.5520 Numerical Analysis +1407.6838 Algebraic Geometry +1407.7320 Mesoscale and Nanoscale Physics +1409.1120 Solar and Stellar Astrophysics +1409.2241 Logic +1409.3699 Numerical Analysis +1409.3964 Computer Vision and Pattern Recognition +1409.6439 Chemical Physics +1410.0303 Geometric Topology +1410.2572 +1410.6509 +1410.7543 +1410.8574 Statistical Mechanics +1410.8598 Optics +1411.1795 Theory +1411.3354 Strongly Correlated Electrons +1411.5432 Mesoscale and Nanoscale Physics +1412.1282 Statistical Mechanics +1412.2832 +1412.3183 Phenomenology +1412.4340 Geometric Topology +1501.03313 Theory +1501.05244 Algebraic Geometry +1501.05563 Probability +1502.01400 Computation +1502.01923 Category Theory +1502.04630 +1502.04984 Astrophysics of Galaxies +1502.05670 Combinatorics +1502.05754 +1502.07304 Theory +1502.07876 Theory +1503.00428 Mesoscale and Nanoscale Physics +1503.00742 Algebraic Geometry +1503.00752 Geometric Topology +1503.00896 Theory +1503.01089 High Energy Astrophysical Phenomena +1503.01456 +1503.01627 +1503.02157 +1503.04083 Plasma Physics +1503.04494 Strongly Correlated Electrons +1503.05466 Symplectic Geometry +1503.07315 +1503.08603 Differential Geometry +1503.08833 Cosmology and Nongalactic Astrophysics +1504.01397 Cosmology and Nongalactic Astrophysics +1504.01527 +1504.01860 Number Theory +1504.01969 Mesoscale and Nanoscale Physics +1504.02682 +1504.03035 High Energy Astrophysical Phenomena +1504.03773 +1504.04088 Cosmology and Nongalactic Astrophysics +1504.04352 Superconductivity +1504.04419 Information Theory +1504.05048 High Energy Astrophysical Phenomena +1504.07847 Quantum Gases +1504.08026 Operator Algebras +1505.01751 Probability +1505.01892 Solar and Stellar Astrophysics +1505.03217 Phenomenology +1505.03386 Theory +1505.03677 Number Theory +1505.03865 Cosmology and Nongalactic Astrophysics +1505.04896 Earth and Planetary Astrophysics +1505.05879 Solar and Stellar Astrophysics +1505.07848 Cosmology and Nongalactic Astrophysics +1506.00881 Analysis of PDEs +1506.01230 Analysis of PDEs +1506.01473 +1506.01640 Quantum Gases +1506.02049 Earth and Planetary Astrophysics +1506.02864 Theory +1506.02890 Information Theory +1506.02917 Optics +1506.03470 Combinatorics +1506.03644 Phenomenology +1506.03811 Phenomenology +1506.03812 Cosmology and Nongalactic Astrophysics +1506.04193 Solar and Stellar Astrophysics +1506.05105 Strongly Correlated Electrons +1506.05132 Solar and Stellar Astrophysics +1506.05207 +1506.06135 Cosmology and Nongalactic Astrophysics +1506.06421 Functional Analysis +1506.06685 Solar and Stellar Astrophysics +1506.06889 +1506.07265 +1506.07661 Phenomenology +1506.08355 +1507.00005 Astrophysics of Galaxies +1507.00322 Mesoscale and Nanoscale Physics +1507.01047 Quantum Gases +1507.01050 Materials Science +1507.01149 +1507.01828 +1507.01944 Earth and Planetary Astrophysics +1507.02247 Optics +1507.02364 Physics Education +1507.02572 Strongly Correlated Electrons +1507.02619 Representation Theory +1507.03052 Quantum Gases +1507.03643 Astrophysics of Galaxies +1507.04078 Cosmology and Nongalactic Astrophysics +1507.04096 Solar and Stellar Astrophysics +1507.04931 Phenomenology +1507.05177 Earth and Planetary Astrophysics +1507.05293 Solar and Stellar Astrophysics +1507.06142 Representation Theory +1507.06180 Analysis of PDEs +1507.06460 Solar and Stellar Astrophysics +1507.06697 Solar and Stellar Astrophysics +1507.06931 Soft Condensed Matter +1507.07865 Superconductivity +1507.07876 Operator Algebras +1507.08194 +1507.08288 High Energy Astrophysical Phenomena +1507.08292 Cosmology and Nongalactic Astrophysics +1507.08303 Experiment +1507.08724 Cosmology and Nongalactic Astrophysics +1507.08801 Astrophysics of Galaxies +1507.08977 High Energy Astrophysical Phenomena +1508.00137 Theory +1508.00174 Phenomenology +1508.00422 Phenomenology +1508.00544 Theory +1508.00880 Earth and Planetary Astrophysics +1508.00898 Solar and Stellar Astrophysics +1508.01341 Materials Science +1508.01398 Optics +1508.01427 Mesoscale and Nanoscale Physics +1508.01515 Quantum Gases +1508.01803 Cosmology and Nongalactic Astrophysics +1508.02184 Earth and Planetary Astrophysics +1508.02462 +1508.02642 +1508.02711 Astrophysics of Galaxies +1508.02726 Mesoscale and Nanoscale Physics +1508.02785 +1508.02917 Pattern Formation and Solitons +1508.02923 Theory +1508.03018 Quantum Gases +1508.03031 Phenomenology +1508.03339 Cosmology and Nongalactic Astrophysics +1508.03759 Phenomenology +1508.04046 Theory +1508.04110 +1508.04191 +1508.04460 Theory +1508.04694 Mesoscale and Nanoscale Physics +1508.04700 +1508.04940 Logic in Computer Science +1508.05144 Theory +1508.05820 Chemical Physics +1508.06051 Quantum Gases +1508.06077 Soft Condensed Matter +1508.06368 Superconductivity +1508.06484 Theory +1508.06786 +1508.06914 +1508.06949 +1508.07293 Disordered Systems and Neural Networks +1508.07524 +1508.07719 Cosmology and Nongalactic Astrophysics +1508.07745 High Energy Astrophysical Phenomena +1508.07779 Strongly Correlated Electrons +1508.07780 +1509.00064 Cosmology and Nongalactic Astrophysics +1509.00170 Solar and Stellar Astrophysics +1509.00232 +1509.00324 Soft Condensed Matter +1509.00592 Lattice +1509.00762 Quantum Gases +1509.00787 Space Physics +1509.01163 Cosmology and Nongalactic Astrophysics +1509.01340 Fluid Dynamics +1509.01414 Theory +1509.01689 Materials Science +1509.01983 Plasma Physics +1509.02365 Mesoscale and Nanoscale Physics +1509.02524 Cosmology and Nongalactic Astrophysics +1509.02820 Materials Science +1509.03147 Social and Information Networks +1509.03309 Theory +1509.03442 Mesoscale and Nanoscale Physics +1509.03517 Phenomenology +1509.03566 Other Condensed Matter +1509.03581 Materials Science +1509.03586 Solar and Stellar Astrophysics +1509.03622 Solar and Stellar Astrophysics +1509.04287 Phenomenology +1509.04308 Astrophysics of Galaxies +1509.04342 Cosmology and Nongalactic Astrophysics +1509.04351 Solar and Stellar Astrophysics +1509.04419 Mesoscale and Nanoscale Physics +1509.04421 Phenomenology +1509.04497 +1509.04523 Phenomenology +1509.04798 Phenomenology +1509.04930 Superconductivity +1509.05354 Solar and Stellar Astrophysics +1509.05387 Phenomenology +1509.05694 +1509.05719 Superconductivity +1509.05726 Solar and Stellar Astrophysics +1509.05728 +1509.05843 Phenomenology +1509.06007 Strongly Correlated Electrons +1509.06387 Mesoscale and Nanoscale Physics +1509.06396 High Energy Astrophysical Phenomena +1509.06550 High Energy Astrophysical Phenomena +1509.06608 Mesoscale and Nanoscale Physics +1509.06758 Astrophysics of Galaxies +1509.06806 +1509.07169 +1509.07177 Solar and Stellar Astrophysics +1509.07232 Quantum Gases +1509.07750 Earth and Planetary Astrophysics +1509.07846 Strongly Correlated Electrons +1509.07866 High Energy Astrophysical Phenomena +1509.07906 Phenomenology +1509.08920 Earth and Planetary Astrophysics +1510.00336 Statistical Mechanics +1510.00421 Phenomenology +1510.00739 Solar and Stellar Astrophysics +1510.00741 Solar and Stellar Astrophysics +1510.00807 +1510.00858 Earth and Planetary Astrophysics +1510.01128 Solar and Stellar Astrophysics +1510.01142 Solar and Stellar Astrophysics +1510.01161 Solar and Stellar Astrophysics +1510.01327 Solar and Stellar Astrophysics +1510.01382 Solar and Stellar Astrophysics +1510.01496 Theory +1510.01543 Statistical Mechanics +1510.01701 Phenomenology +1510.01702 Solar and Stellar Astrophysics +1510.01994 Optics +1510.02016 +1510.02090 Earth and Planetary Astrophysics +1510.02410 Optics +1510.02444 Lattice +1510.02785 Solar and Stellar Astrophysics +1510.03065 Mesoscale and Nanoscale Physics +1510.03067 Solar and Stellar Astrophysics +1510.03134 Quantum Gases +1510.03180 History and Overview +1510.03453 Phenomenology +1510.03526 Superconductivity +1510.03618 Solar and Stellar Astrophysics +1510.03832 Earth and Planetary Astrophysics +1510.03873 High Energy Astrophysical Phenomena +1510.04012 Phenomenology +1510.04276 Earth and Planetary Astrophysics +1510.04337 Materials Science +1510.04429 +1510.04560 Functional Analysis +1510.04658 Numerical Analysis +1510.04750 Earth and Planetary Astrophysics +1510.04903 Solar and Stellar Astrophysics +1510.05010 Astrophysics of Galaxies +1510.05330 Quantum Algebra +1510.05487 Superconductivity +1510.05655 +1510.05896 Solar and Stellar Astrophysics +1510.06072 Astrophysics of Galaxies +1510.06144 Optics +1510.06374 Earth and Planetary Astrophysics +1510.06388 Theory +1510.06642 Solar and Stellar Astrophysics +1510.06735 Theory +1510.07266 Materials Science +1510.07535 Materials Science +1510.07536 Astrophysics of Galaxies +1510.07628 Astrophysics of Galaxies +1510.07647 Astrophysics of Galaxies +1510.07846 +1510.07849 Phenomenology +1510.07895 Mesoscale and Nanoscale Physics +1510.08632 Phenomenology +1510.08774 Disordered Systems and Neural Networks +1510.09065 Materials Science +1510.09136 +1511.00231 +1511.00258 High Energy Astrophysical Phenomena +1511.00377 Superconductivity +1511.00445 Astrophysics of Galaxies +1511.00659 Astrophysics of Galaxies +1511.00682 Theory +1511.00698 Earth and Planetary Astrophysics +1511.00845 Solar and Stellar Astrophysics +1511.00867 Discrete Mathematics +1511.00951 Pattern Formation and Solitons +1511.00966 Solar and Stellar Astrophysics +1511.01215 Analysis of PDEs +1511.01840 Theory +1511.02034 Cosmology and Nongalactic Astrophysics +1511.02668 Materials Science +1511.02730 Superconductivity +1511.02890 Astrophysics of Galaxies +1511.02896 Earth and Planetary Astrophysics +1511.02988 Earth and Planetary Astrophysics +1511.03158 +1511.03195 Solar and Stellar Astrophysics +1511.03388 Soft Condensed Matter +1511.03431 Earth and Planetary Astrophysics +1511.03734 Astrophysics of Galaxies +1511.03846 High Energy Astrophysical Phenomena +1511.03903 Earth and Planetary Astrophysics +1511.03912 Statistical Mechanics +1511.03960 +1511.04107 Phenomenology +1511.04266 Solar and Stellar Astrophysics +1511.04296 Phenomenology +1511.04528 Biological Physics +1511.04712 Quantum Gases +1511.04878 Astrophysics of Galaxies +1511.05142 Astrophysics of Galaxies +1511.05317 Biological Physics +1511.05448 Atomic Physics +1511.05909 Statistical Mechanics +1511.06041 Space Physics +1511.06172 Instrumentation and Detectors +1511.06368 High Energy Astrophysical Phenomena +1511.06447 High Energy Astrophysical Phenomena +1511.06900 Solar and Stellar Astrophysics +1511.06970 Solar and Stellar Astrophysics +1511.07010 High Energy Astrophysical Phenomena +1511.07213 Solar and Stellar Astrophysics +1511.07301 Phenomenology +1511.07501 +1511.07502 +1511.07575 Astrophysics of Galaxies +1511.07680 Mesoscale and Nanoscale Physics +1511.07695 +1511.07820 Earth and Planetary Astrophysics +1511.07881 Solar and Stellar Astrophysics +1511.07998 Spectral Theory +1511.08039 Experiment +1511.08085 Mesoscale and Nanoscale Physics +1511.08149 +1511.08175 Mesoscale and Nanoscale Physics +1511.08311 Astrophysics of Galaxies +1511.08402 Solar and Stellar Astrophysics +1512.00318 Solar and Stellar Astrophysics +1512.00325 High Energy Astrophysical Phenomena +1512.00334 Solar and Stellar Astrophysics +1512.00402 +1512.00417 Earth and Planetary Astrophysics +1512.00476 Phenomenology +1512.00479 Astrophysics of Galaxies +1512.00625 Astrophysics of Galaxies +1512.00793 Mesoscale and Nanoscale Physics +1512.00904 Astrophysics of Galaxies +1512.01089 Solar and Stellar Astrophysics +1512.01233 Astrophysics of Galaxies +1512.01240 Solar and Stellar Astrophysics +1512.01597 Solar and Stellar Astrophysics +1512.01679 High Energy Astrophysical Phenomena +1512.01763 Solar and Stellar Astrophysics +1512.01951 Phenomenology +1512.02095 Solar and Stellar Astrophysics +1512.02132 Superconductivity +1512.02199 Solar and Stellar Astrophysics +1512.02276 Solar and Stellar Astrophysics +1512.02431 Mesoscale and Nanoscale Physics +1512.02502 Cosmology and Nongalactic Astrophysics +1512.02646 Mesoscale and Nanoscale Physics +1512.02658 Theory +1512.02741 High Energy Astrophysical Phenomena +1512.02823 Soft Condensed Matter +1512.02884 Cosmology and Nongalactic Astrophysics +1512.03258 Materials Science +1512.03411 Instrumentation and Methods for Astrophysics +1512.03414 High Energy Astrophysical Phenomena +1512.03453 Solar and Stellar Astrophysics +1512.03611 Astrophysics of Galaxies +1512.03650 Analysis of PDEs +1512.03745 Solar and Stellar Astrophysics +1512.03746 Statistical Mechanics +1512.03783 High Energy Astrophysical Phenomena +1512.03815 Astrophysics of Galaxies +1512.03995 Solar and Stellar Astrophysics +1512.04088 Solar and Stellar Astrophysics +1512.04167 High Energy Astrophysical Phenomena +1512.04221 Phenomenology +1512.04524 Instrumentation and Detectors +1512.04625 Astrophysics of Galaxies +1512.04738 Solar and Stellar Astrophysics +1512.04931 Phenomenology +1512.04956 Astrophysics of Galaxies +1512.05092 High Energy Astrophysical Phenomena +1512.05125 Solar and Stellar Astrophysics +1512.05175 Earth and Planetary Astrophysics +1512.05263 Solar and Stellar Astrophysics +1512.05295 Phenomenology +1512.05363 Astrophysics of Galaxies +1512.05430 Computer Vision and Pattern Recognition +1512.05514 High Energy Astrophysical Phenomena +1512.05546 Solar and Stellar Astrophysics +1512.05548 Theory +1512.05553 Solar and Stellar Astrophysics +1512.05816 Solar and Stellar Astrophysics +1512.06031 Solar and Stellar Astrophysics +1512.06224 Astrophysics of Galaxies +1512.06229 History and Philosophy of Physics +1512.06276 Quantum Gases +1512.06421 Solar and Stellar Astrophysics +1512.06691 Analysis of PDEs +1512.06714 Astrophysics of Galaxies +1512.06857 Astrophysics of Galaxies +1512.06968 Earth and Planetary Astrophysics +1512.07090 Earth and Planetary Astrophysics +1512.07169 Solar and Stellar Astrophysics +1512.07697 High Energy Astrophysical Phenomena +1512.07811 Solar and Stellar Astrophysics +1512.08054 +1512.08835 Theory +1512.08900 Astrophysics of Galaxies +1512.09031 +1601.00085 Economics +1601.00226 Complex Variables +1601.00327 Atomic Physics +1601.00412 Solar and Stellar Astrophysics +1601.00503 High Energy Astrophysical Phenomena +1601.00539 Solar and Stellar Astrophysics +1601.00771 High Energy Astrophysical Phenomena +1601.00805 Solar and Stellar Astrophysics +1601.00867 Solar and Stellar Astrophysics +1601.00871 High Energy Astrophysical Phenomena +1601.01005 Solar and Stellar Astrophysics +1601.01209 Earth and Planetary Astrophysics +1601.01225 Instrumentation and Methods for Astrophysics +1601.01282 Astrophysics of Galaxies +1601.01289 Networking and Internet Architecture +1601.01337 Astrophysics of Galaxies +1601.01636 Solar and Stellar Astrophysics +1601.01812 High Energy Astrophysical Phenomena +1601.01855 Solar and Stellar Astrophysics +1601.01908 Solar and Stellar Astrophysics +1601.01941 High Energy Astrophysical Phenomena +1601.02023 Cosmology and Nongalactic Astrophysics +1601.02024 Astrophysics of Galaxies +1601.02290 Quantum Gases +1601.02389 Astrophysics of Galaxies +1601.02620 Astrophysics of Galaxies +1601.02635 High Energy Astrophysical Phenomena +1601.02721 High Energy Astrophysical Phenomena +1601.02796 Astrophysics of Galaxies +1601.03040 Solar and Stellar Astrophysics +1601.03209 Astrophysics of Galaxies +1601.03311 Data Structures and Algorithms +1601.03652 Earth and Planetary Astrophysics +1601.03776 High Energy Astrophysical Phenomena +1601.04035 Theory +1601.04063 +1601.04636 Numerical Analysis +1601.04706 Astrophysics of Galaxies +1601.05250 Classical Analysis and ODEs +1601.05432 Astrophysics of Galaxies +1601.05724 +1601.06120 High Energy Astrophysical Phenomena +1601.06322 Group Theory +1601.06356 Commutative Algebra +1601.06500 High Energy Astrophysical Phenomena +1601.06550 High Energy Astrophysical Phenomena +1601.06596 Solar and Stellar Astrophysics +1601.06715 Solar and Stellar Astrophysics +1601.06718 Probability +1601.06818 Classical Physics +1601.06886 Solar and Stellar Astrophysics +1601.07000 High Energy Astrophysical Phenomena +1601.07008 High Energy Astrophysical Phenomena +1601.07066 Number Theory +1601.07296 Astrophysics of Galaxies +1601.07461 Phenomenology +1601.07540 Solar and Stellar Astrophysics +1601.07550 Astrophysics of Galaxies +1601.07562 Solar and Stellar Astrophysics +1601.07598 Fluid Dynamics +1601.07703 Superconductivity +1601.07785 Solar and Stellar Astrophysics +1601.07988 Combinatorics +1601.08147 Optimization and Control +1601.08148 High Energy Astrophysical Phenomena +1601.08216 High Energy Astrophysical Phenomena +1602.00032 Robotics +1602.00306 +1602.00389 Databases +1602.00446 Information Theory +1602.00515 Artificial Intelligence +1602.00534 Differential Geometry +1602.00636 Spectral Theory +1602.00642 Statistical Mechanics +1602.00681 Neurons and Cognition +1602.00685 +1602.00687 Strongly Correlated Electrons +1602.00695 Phenomenology +1602.00700 Numerical Analysis +1602.00711 Popular Physics +1602.00713 Soft Condensed Matter +1602.00715 Computer Vision and Pattern Recognition +1602.00716 Algebraic Geometry +1602.00717 Classical Analysis and ODEs +1602.00718 Plasma Physics +1602.00719 Methodology +1602.00722 Hardware Architecture +1602.00723 Populations and Evolution +1602.00724 Optimization and Control +1602.00725 General Topology +1602.00728 Spectral Theory +1602.00729 Distributed, Parallel, and Cluster Computing +1602.00730 Analysis of PDEs +1602.00732 Differential Geometry +1602.00734 Information Theory +1602.00739 Sound +1602.00743 Number Theory +1602.00744 Numerical Analysis +1602.00746 Numerical Analysis +1602.00747 Numerical Analysis +1602.00748 Algebraic Topology +1602.00749 Computer Vision and Pattern Recognition +1602.00750 Materials Science +1602.00753 Artificial Intelligence +1602.00755 Optics +1602.00760 Operator Algebras +1602.00761 Information Theory +1602.00762 Functional Analysis +1602.00763 Computer Vision and Pattern Recognition +1602.00766 Information Theory +1602.00768 Representation Theory +1602.00769 Methodology +1602.00772 Fluid Dynamics +1602.00775 Probability +1602.00776 Molecular Networks +1602.00777 Materials Science +1602.00778 Combinatorics +1602.00780 Number Theory +1602.00781 +1602.00786 Programming Languages +1602.00788 Theory +1602.00789 Analysis of PDEs +1602.00791 +1602.00796 Lattice +1602.00798 Social and Information Networks +1602.00800 Probability +1602.00804 Human-Computer Interaction +1602.00807 Quantum Gases +1602.00808 Neurons and Cognition +1602.00810 Symbolic Computation +1602.00811 Algebraic Geometry +1602.00815 Analysis of PDEs +1602.00818 High Energy Astrophysical Phenomena +1602.00819 Analysis of PDEs +1602.00820 Functional Analysis +1602.00822 +1602.00823 Algebraic Topology +1602.00824 Optics +1602.00831 Human-Computer Interaction +1602.00832 +1602.00833 Information Theory +1602.00834 Geometric Topology +1602.00837 Number Theory +1602.00841 Computers and Society +1602.00845 General Topology +1602.00848 Symbolic Computation +1602.00851 +1602.00854 Differential Geometry +1602.00855 Optimization and Control +1602.00856 Statistics Theory +1602.00857 Operator Algebras +1602.00865 Pricing of Securities +1602.00867 Instrumentation and Detectors +1602.00869 Statistics Theory +1602.00871 +1602.00878 Information Theory +1602.00879 Statistics Theory +1602.00886 Statistics Theory +1602.00888 Superconductivity +1602.00889 Astrophysics of Galaxies +1602.00894 Mesoscale and Nanoscale Physics +1602.00895 Cryptography and Security +1602.00896 Soft Condensed Matter +1602.00900 Popular Physics +1602.00903 Superconductivity +1602.00912 Logic in Computer Science +1602.00913 Differential Geometry +1602.00914 Information Theory +1602.00919 Group Theory +1602.00921 Quantum Algebra +1602.00922 Combinatorics +1602.00923 Phenomenology +1602.00924 +1602.00925 Dynamical Systems +1602.00927 Operator Algebras +1602.00928 Information Theory +1602.00932 Robotics +1602.00933 Quantitative Methods +1602.00934 Number Theory +1602.00942 Probability +1602.00943 Phenomenology +1602.00945 Fluid Dynamics +1602.00950 High Energy Astrophysical Phenomena +1602.00952 Quantum Gases +1602.00953 Numerical Analysis +1602.00956 Mesoscale and Nanoscale Physics +1602.00957 Strongly Correlated Electrons +1602.00959 Metric Geometry +1602.00960 Metric Geometry +1602.00961 Optimization and Control +1602.00962 Optics +1602.00963 Distributed, Parallel, and Cluster Computing +1602.00967 Metric Geometry +1602.00969 Combinatorics +1602.00972 Number Theory +1602.00973 Soft Condensed Matter +1602.00978 Materials Science +1602.00980 Algebraic Geometry +1602.00983 Analysis of PDEs +1602.00984 Software Engineering +1602.00986 Optimization and Control +1602.00989 Applications +1602.00990 Soft Condensed Matter +1602.00996 Representation Theory +1602.00997 Computer Vision and Pattern Recognition +1602.00998 Algebraic Topology +1602.00999 Number Theory +1602.01000 Algebraic Geometry +1602.01006 Computer Vision and Pattern Recognition +1602.01007 Computer Science and Game Theory +1602.01009 Probability +1602.01011 Number Theory +1602.01013 Social and Information Networks +1602.01014 Optics +1602.01016 Social and Information Networks +1602.01017 Dynamical Systems +1602.01019 Category Theory +1602.01021 +1602.01024 Learning +1602.01027 Phenomenology +1602.01028 Systems and Control +1602.01029 Classical Analysis and ODEs +1602.01035 Geometric Topology +1602.01036 Number Theory +1602.01038 Information Theory +1602.01040 Databases +1602.01042 Information Theory +1602.01043 +1602.01045 Representation Theory +1602.01046 Differential Geometry +1602.01048 Atomic Physics +1602.01051 Methodology +1602.01054 +1602.01059 Artificial Intelligence +1602.01060 Analysis of PDEs +1602.01061 Information Theory +1602.01069 Disordered Systems and Neural Networks +1602.01074 Optics +1602.01077 Geometric Topology +1602.01079 Materials Science +1602.01080 Numerical Analysis +1602.01083 +1602.01084 Emerging Technologies +astro-ph/0502256 +astro-ph/0601448 +astro-ph/0702118 +cond-mat/0211250 Mesoscale and Nanoscale Physics +cond-mat/0611558 Mesoscale and Nanoscale Physics +cond-mat/0611560 Strongly Correlated Electrons +math/0512539 Geometric Topology +0807.1539 Analysis of PDEs +0811.1784 Analysis of PDEs +0903.4295 +0908.3327 Analysis of PDEs +0908.3332 Analysis of PDEs +0908.3334 Analysis of PDEs +1006.3149 +1008.4964 Theory +1011.4886 Commutative Algebra +1109.2051 Analysis of PDEs +1109.4542 Analysis of PDEs +1205.1383 +1209.3814 Analysis of PDEs +1212.6445 Analysis of PDEs +1212.6447 Analysis of PDEs +1307.5018 +1308.5680 Quantum Gases +1310.5372 +1310.5996 +1310.7240 Classical Analysis and ODEs +1311.1738 Statistics Theory +1311.3268 Discrete Mathematics +1401.2184 Artificial Intelligence +1401.5834 Representation Theory +1401.6399 Information Retrieval +1402.4333 Complex Variables +1403.2847 +1403.7603 Dynamical Systems +1404.1310 Statistics Theory +1404.2905 Number Theory +1405.6423 Geometric Topology +1406.5933 Methodology +1407.3397 Statistics Theory +1407.4910 Probability +1407.5588 +1408.1635 General Physics +1409.4109 Differential Geometry +1409.6647 Quantum Gases +1410.1880 Theory +1410.6900 Combinatorics +1411.3624 Combinatorics +1412.0364 Databases +1412.1195 Complex Variables +1412.1515 General Topology +1412.2720 Probability +1412.7303 Algebraic Geometry +1412.7523 +1501.02957 +1501.06638 Quantum Algebra +1501.07748 Theory +1502.04226 Computational Complexity +1502.07205 +1503.00223 Statistical Mechanics +1503.03013 Information Theory +1503.03465 Data Structures and Algorithms +1503.05251 Solar and Stellar Astrophysics +1503.06686 Number Theory +1503.07128 +1503.08523 +1504.00626 Functional Analysis +1504.02145 Solar and Stellar Astrophysics +1504.06564 Quantum Gases +1504.06586 Discrete Mathematics +1504.07112 Spectral Theory +1504.07702 Optimization and Control +1505.01584 Cosmology and Nongalactic Astrophysics +1505.03653 Networking and Internet Architecture +1505.05950 Fluid Dynamics +1506.00030 +1506.03761 Analysis of PDEs +1506.04426 Solar and Stellar Astrophysics +1506.04600 +1506.07312 Statistical Mechanics +1506.08249 Astrophysics of Galaxies +1507.02684 Theory +1507.04818 Differential Geometry +1507.05021 Statistics Theory +1507.07064 Computer Science and Game Theory +1508.00934 Statistics Theory +1508.02170 Combinatorics +1508.03671 Artificial Intelligence +1508.03763 Databases +1508.03952 Information Theory +1508.04026 Theory +1508.06688 Optics +1508.07763 Theory +1509.00289 +1509.01532 Materials Science +1509.03328 Neurons and Cognition +1509.04294 Phenomenology +1509.04654 Theory +1509.07724 Classical Analysis and ODEs +1510.00380 Quantum Gases +1510.00591 Dynamical Systems +1510.00842 Applications +1510.01106 +1510.01897 Classical Analysis and ODEs +1510.02973 Optimization and Control +1510.05064 Information Theory +1510.06251 Classical Analysis and ODEs +1511.00809 Materials Science +1511.02555 +1511.02853 Computer Vision and Pattern Recognition +1511.03934 Instrumentation and Detectors +1511.04069 Functional Analysis +1511.04271 Logic in Computer Science +1511.05226 Operator Algebras +1512.00527 Instrumentation and Detectors +1512.01609 Distributed, Parallel, and Cluster Computing +1512.02755 Analysis of PDEs +1512.03096 +1512.03713 +1512.03867 Number Theory +1512.04667 Fluid Dynamics +1512.06119 Materials Science +1512.06234 Probability +1512.07638 Learning +1512.09252 General Topology +1512.09310 Phenomenology +1601.01833 +1601.02456 Strongly Correlated Electrons +1601.02565 Analysis of PDEs +1601.02783 Geometric Topology +1601.03521 Discrete Mathematics +1601.05398 Probability +1601.06214 Information Theory +1601.06402 +1602.00692 High Energy Astrophysical Phenomena +1602.00733 Combinatorics +1602.01826 Algebraic Geometry +1602.02647 Theory +1602.03259 Differential Geometry +1602.05520 Computational Physics +1602.06706 Number Theory +1602.06836 Combinatorics +1602.07968 Differential Geometry +1602.08201 Differential Geometry +1602.08938 Physics and Society +1603.00129 Rings and Algebras +1603.00432 Probability +1603.01445 Logic in Computer Science +1603.01507 Information Theory +1603.01892 Superconductivity +1603.02615 Risk Management +1603.04100 Numerical Analysis +1603.04230 +1603.05045 +1603.05719 Optimization and Control +1603.05839 +1603.06077 Computational Geometry +1603.06323 Probability +1603.07351 Distributed, Parallel, and Cluster Computing +1603.07356 +1603.07535 Materials Science +1603.07765 Statistical Mechanics +1603.07810 Computer Vision and Pattern Recognition +1603.08910 Materials Science +1603.09331 Superconductivity +1603.09559 +1604.00165 Mesoscale and Nanoscale Physics +1604.02506 Computation and Language +1604.02795 Commutative Algebra +1604.03076 +1604.03243 Computational Complexity +1604.04385 Analysis of PDEs +1604.04567 Information Theory +1604.04826 Information Theory +1604.05820 Theory +1604.06482 Networking and Internet Architecture +1604.06819 Probability +1604.07069 Dynamical Systems +1604.08616 Optimization and Control +1605.00548 Superconductivity +1605.00591 Quantitative Methods +1605.00995 +1605.01040 Phenomenology +1605.01471 Mesoscale and Nanoscale Physics +1605.01864 Soft Condensed Matter +1605.02390 Physics Education +1605.02475 Numerical Analysis +1605.02735 Astrophysics of Galaxies +1605.02748 Theory +1605.02871 +1605.02874 Fluid Dynamics +1605.03070 Phenomenology +1605.03084 +1605.03114 Mesoscale and Nanoscale Physics +1605.03822 Soft Condensed Matter +1605.03998 Probability +1605.04004 Computer Science and Game Theory +1605.04071 Artificial Intelligence +1605.04076 Numerical Analysis +1605.06168 Experiment +1605.06183 Data Structures and Algorithms +1605.06262 Cosmology and Nongalactic Astrophysics +1605.06649 +1605.07298 +1605.07328 Differential Geometry +1605.07916 Materials Science +1605.09108 Mesoscale and Nanoscale Physics +1606.00025 Computation and Language +1606.00614 Statistics Theory +1606.00910 +1606.01034 Phenomenology +1606.01196 Physics Education +1606.01872 Information Theory +1606.01886 Theory +1606.02091 Mesoscale and Nanoscale Physics +1606.03935 Artificial Intelligence +1606.04312 Complex Variables +1606.04324 Mesoscale and Nanoscale Physics +1606.04712 +1606.04990 Instrumentation and Detectors +1606.05023 Emerging Technologies +1606.05071 Materials Science +1606.06759 +1606.07464 General Physics +1606.07888 Phenomenology +1606.07964 +1606.09339 Fluid Dynamics +1607.00915 Experiment +1607.01119 Information Theory +1607.01386 Cosmology and Nongalactic Astrophysics +1607.01750 Neural and Evolutionary Computing +1607.03169 +1607.04160 Mesoscale and Nanoscale Physics +1607.04683 Learning +1607.04779 +1607.04825 Numerical Analysis +1607.05218 +1607.05328 +1607.05729 Theory +1607.06906 Systems and Control +1607.07351 Differential Geometry +1607.07418 Theory +1607.08000 +1607.08094 Theory +1607.08120 Instrumentation and Detectors +1607.08223 +1607.08388 Distributed, Parallel, and Cluster Computing +1608.00566 +1608.01829 Superconductivity +1608.02121 Phenomenology +1608.03245 Computational Geometry +1608.03866 Distributed, Parallel, and Cluster Computing +1608.03947 Theory +1608.04004 Optimization and Control +1608.04010 Functional Analysis +1608.04580 Phenomenology +1608.05373 Plasma Physics +1608.06308 Analysis of PDEs +1608.06316 Functional Analysis +1608.06487 +1608.06614 Number Theory +1608.06642 Strongly Correlated Electrons +1608.06945 Phenomenology +1608.07121 Operator Algebras +1608.07279 Theory +1608.07451 Materials Science +1608.07527 Number Theory +1608.07766 +1608.07871 Combinatorics +1608.07899 Physics and Society +1608.08198 Strongly Correlated Electrons +1609.00014 +1609.00303 Dynamical Systems +1609.00505 Algebraic Topology +1609.00854 Numerical Analysis +1609.01092 Materials Science +1609.02221 Probability +1609.02330 Atomic Physics +1609.03007 Theory +1609.03275 Fluid Dynamics +1609.03551 Phenomenology +1609.03826 Astrophysics of Galaxies +1609.04366 Statistical Mechanics +1609.04438 Analysis of PDEs +1609.04886 Software Engineering +1609.05475 Portfolio Management +1609.05932 Mesoscale and Nanoscale Physics +1609.05951 Logic +1609.06139 +1609.07070 Information Theory +1609.07401 Functional Analysis +1609.07644 Numerical Analysis +1609.07650 Data Structures and Algorithms +1609.08258 Quantum Gases +1609.08588 Data Structures and Algorithms +1609.09250 Earth and Planetary Astrophysics +1609.09784 +1610.00223 Quantum Gases +1610.00306 Optimization and Control +1610.00836 Differential Geometry +1610.01137 Probability +1610.01531 Classical Analysis and ODEs +1610.02210 Instrumentation and Detectors +1610.02226 Statistical Mechanics +1610.02948 Numerical Analysis +1610.03062 Mesoscale and Nanoscale Physics +1610.03066 Astrophysics of Galaxies +1610.03442 Astrophysics of Galaxies +1610.03765 Rings and Algebras +1610.04318 Materials Science +1610.05191 +1610.05580 Fluid Dynamics +1610.06536 Experiment +1610.06559 Cosmology and Nongalactic Astrophysics +1610.06597 Theory +1610.07047 Numerical Analysis +1610.08352 +1610.08825 Materials Science +1610.08972 Cosmology and Nongalactic Astrophysics +1610.09050 Plasma Physics +1610.09520 Computer Vision and Pattern Recognition +1610.10093 Dynamical Systems +1611.00365 Phenomenology +1611.01620 Superconductivity +1611.02264 High Energy Astrophysical Phenomena +1611.03024 Analysis of PDEs +1611.03336 Networking and Internet Architecture +1611.03630 Probability +1611.03633 Representation Theory +1611.03900 +1611.03964 Algebraic Geometry +1611.04021 Computer Vision and Pattern Recognition +1611.04082 Rings and Algebras +1611.04314 Number Theory +1611.04721 Algebraic Geometry +1611.05073 Data Analysis, Statistics and Probability +1611.05104 Computation and Language +1611.05169 Mesoscale and Nanoscale Physics +1611.05321 Computer Vision and Pattern Recognition +1611.05509 Methodology +1611.06570 Combinatorics +1611.07520 +1611.07644 Optics +1611.07691 Mesoscale and Nanoscale Physics +1611.08121 Phenomenology +1611.08296 Representation Theory +1611.09154 Classical Analysis and ODEs +1611.09246 Accelerator Physics +1611.09249 Accelerator Physics +1612.00391 Theory +1612.00531 Social and Information Networks +1612.01125 Instrumentation and Detectors +1612.01321 Theory +1612.01491 Emerging Technologies +1612.01650 Robotics +1612.01651 Representation Theory +1612.01668 Statistics Theory +1612.01679 Phenomenology +1612.01850 +1612.01971 Strongly Correlated Electrons +1612.02078 Operator Algebras +1612.02081 Phenomenology +1612.02248 Mesoscale and Nanoscale Physics +1612.02527 Applications +1612.02748 Materials Science +1612.02753 Analysis of PDEs +1612.02814 Learning +1612.02913 Emerging Technologies +1612.02953 +1612.02964 Combinatorics +1612.03034 Cosmology and Nongalactic Astrophysics +1612.03267 Classical Analysis and ODEs +1612.03276 +1612.03307 Geophysics +1612.03448 Networking and Internet Architecture +1612.03575 +1612.03627 Theory +1612.03698 Portfolio Management +1612.03904 Statistics Theory +1612.03908 +1612.04281 +1612.04311 Algebraic Geometry +1612.04321 +1612.04346 Probability +1612.04377 Theory +1612.04394 Theory +1612.04440 Computer Vision and Pattern Recognition +1612.04461 Instrumentation and Detectors +1612.04519 Distributed, Parallel, and Cluster Computing +1612.04668 Physics and Society +1612.04954 Mesoscale and Nanoscale Physics +1612.05150 Materials Science +1612.05180 +1612.05240 Instrumentation and Methods for Astrophysics +1612.05242 Instrumentation and Methods for Astrophysics +1612.05243 Instrumentation and Methods for Astrophysics +1612.05244 Instrumentation and Methods for Astrophysics +1612.05292 History and Overview +1612.05302 +1612.05314 +1612.05391 +1612.05413 Digital Libraries +1612.05605 Cryptography and Security +1612.05620 Optimization and Control +1612.05633 Distributed, Parallel, and Cluster Computing +1612.05634 +1612.05635 Astrophysics of Galaxies +1612.05638 Phenomenology +1612.05640 Theory +1612.05642 Phenomenology +1612.05647 Cosmology and Nongalactic Astrophysics +1612.05648 Disordered Systems and Neural Networks +1612.05652 Phenomenology +1612.05653 Methodology +1612.05654 High Energy Astrophysical Phenomena +1612.05657 Mesoscale and Nanoscale Physics +1612.05658 Astrophysics of Galaxies +1612.05659 Accelerator Physics +1612.05660 Neurons and Cognition +1612.05661 Soft Condensed Matter +1612.05662 Accelerator Physics +1612.05664 Rings and Algebras +1612.05665 Data Structures and Algorithms +1612.05668 Instrumentation and Methods for Astrophysics +1612.05671 Quantum Gases +1612.05673 Atmospheric and Oceanic Physics +1612.05675 Cryptography and Security +1612.05676 Analysis of PDEs +1612.05677 Phenomenology +1612.05678 Machine Learning +1612.05679 Materials Science +1612.05680 +1612.05682 Information Theory +1612.05683 Operator Algebras +1612.05684 Discrete Mathematics +1612.05685 Functional Analysis +1612.05686 Phenomenology +1612.05689 Exactly Solvable and Integrable Systems +1612.05693 Artificial Intelligence +1612.05694 Category Theory +1612.05696 Analysis of PDEs +1612.05698 Theory +1612.05700 High Energy Astrophysical Phenomena +1612.05701 Theory +1612.05702 Computer Science and Game Theory +1612.05703 Cosmology and Nongalactic Astrophysics +1612.05704 Optimization and Control +1612.05705 Optics +1612.05707 Lattice +1612.05708 Optimization and Control +1612.05710 Networking and Internet Architecture +1612.05712 Computer Vision and Pattern Recognition +1612.05713 Differential Geometry +1612.05715 Networking and Internet Architecture +1612.05716 Materials Science +1612.05717 Combinatorics +1612.05719 Computer Vision and Pattern Recognition +1612.05722 Lattice +1612.05724 +1612.05725 +1612.05726 +1612.05727 +1612.05729 Information Retrieval +1612.05731 Quantum Algebra +1612.05733 Data Structures and Algorithms +1612.05735 History and Overview +1612.05736 Materials Science +1612.05737 Commutative Algebra +1612.05746 Probability +1612.05748 Mesoscale and Nanoscale Physics +1612.05751 +1612.05754 Soft Condensed Matter +1612.05755 Functional Analysis +1612.05756 Logic +1612.05757 Probability +1612.05758 +1612.05759 Numerical Analysis +1612.05761 Analysis of PDEs +1612.05762 Soft Condensed Matter +1612.05763 Functional Analysis +1612.05764 Probability +1612.05765 Complex Variables +1612.05766 Symbolic Computation +1612.05768 Combinatorics +1612.05769 Mesoscale and Nanoscale Physics +1612.05772 Combinatorics +1612.05773 Soft Condensed Matter +1612.05774 Analysis of PDEs +1612.05775 Analysis of PDEs +1612.05778 Symbolic Computation +1612.05780 Software Engineering +1612.05784 Functional Analysis +1612.05785 Algebraic Geometry +1612.05786 Databases +1612.05787 Algebraic Geometry +1612.05789 Analysis of PDEs +1612.05790 Superconductivity +1612.05791 Mesoscale and Nanoscale Physics +1612.05792 Superconductivity +1612.05793 Robotics +1612.05794 Learning +1612.05795 High Energy Astrophysical Phenomena +1612.05798 Plasma Physics +1612.05803 General Topology +1612.05804 Optimization and Control +1612.05806 Cryptography and Security +1612.05807 Optimization and Control +1612.05808 Fluid Dynamics +1612.05809 Quantum Gases +1612.05810 Digital Libraries +1612.05811 Phenomenology +1612.05812 Optimization and Control +1612.05813 Earth and Planetary Astrophysics +1612.05814 Discrete Mathematics +1612.05816 Phenomenology +1612.05817 Social and Information Networks +1612.05818 Combinatorics +1612.05819 Differential Geometry +1612.05821 Functional Analysis +1612.05822 Instrumentation and Detectors +1612.05823 +1612.05825 Strongly Correlated Electrons +1612.05826 Fluid Dynamics +1612.05827 Discrete Mathematics +1612.05829 +1612.05830 +1612.05832 Computational Complexity +1612.05833 Logic +1612.05834 Numerical Analysis +1612.05836 Computer Vision and Pattern Recognition +1612.05837 Functional Analysis +1612.05838 +1612.05842 Statistical Mechanics +1612.05843 Differential Geometry +1612.05844 Methodology +1612.05845 Information Theory +1612.05846 Machine Learning +1612.05848 Phenomenology +1612.05849 Computational Complexity +1612.05852 Applications +1612.05853 Theory +1612.05856 +1612.05858 Databases +1612.05859 Distributed, Parallel, and Cluster Computing +1612.05862 Chemical Physics +1612.05864 Networking and Internet Architecture +1612.05865 Networking and Internet Architecture +1612.05867 Representation Theory +1612.05868 +1612.05869 Number Theory +1612.05871 High Energy Astrophysical Phenomena +1612.05872 Computer Vision and Pattern Recognition +1612.05873 Materials Science +1612.05874 Materials Science +1612.05875 Probability +1612.05877 Computer Vision and Pattern Recognition +1612.05878 Systems and Control +1612.05879 Mesoscale and Nanoscale Physics +1612.05880 Information Theory +1612.05881 Networking and Internet Architecture +1612.05882 Biomolecules +1612.05883 Soft Condensed Matter +1612.05884 Analysis of PDEs +1612.05885 Networking and Internet Architecture +1612.05887 Information Theory +1612.05888 Learning +1612.05890 Computer Vision and Pattern Recognition +1612.05891 Theory +1612.05892 Dynamical Systems +1612.05893 Dynamical Systems +1612.05894 Information Theory +1612.05895 Theory +1612.05898 Theory +1612.05899 Mesoscale and Nanoscale Physics +1612.05901 Computational Physics +1612.05904 Computational Physics +1612.05905 Number Theory +1612.05906 Statistics Theory +1612.05907 Machine Learning +1612.05908 Phenomenology +1612.05912 Algebraic Geometry +1612.05913 Spectral Theory +1612.05915 Functional Analysis +1612.05917 +1612.05918 Phenomenology +1612.05920 Probability +1612.05922 Human-Computer Interaction +1612.05925 Quantum Gases +1612.05926 Chaotic Dynamics +1612.05928 Mesoscale and Nanoscale Physics +1612.05929 Quantum Algebra +1612.05932 Robotics +1612.05933 Theory +1612.05935 Number Theory +1612.05936 Mesoscale and Nanoscale Physics +1612.05937 Dynamical Systems +1612.05939 Category Theory +1612.05940 +1612.05941 Logic +1612.05942 Theory +1612.05943 Cryptography and Security +1612.05944 History and Overview +1612.05946 Differential Geometry +1612.05948 Functional Analysis +1612.05949 High Energy Astrophysical Phenomena +1612.05951 Statistics Theory +1612.05953 Geometric Topology +1612.05954 Computational Complexity +1612.05955 Populations and Evolution +1612.05956 Disordered Systems and Neural Networks +1612.05957 Probability +1612.05958 Cosmology and Nongalactic Astrophysics +1612.05960 Biological Physics +1612.05961 Lattice +1612.05962 Lattice +1612.05963 Dynamical Systems +1612.05965 Mesoscale and Nanoscale Physics +1612.05966 Optimization and Control +1612.05967 Materials Science +1612.05968 Computer Vision and Pattern Recognition +1612.05970 Computer Vision and Pattern Recognition +1612.05972 Complex Variables +1612.05975 Software Engineering +1612.05976 Commutative Algebra +1612.05978 Astrophysics of Galaxies +1612.05979 Fluid Dynamics +1612.05982 +1612.05983 Probability +1612.05984 Probability +1612.05987 Soft Condensed Matter +1612.05988 Soft Condensed Matter +1612.05994 Statistics Theory +1612.05995 Cosmology and Nongalactic Astrophysics +1612.05996 Instrumentation and Methods for Astrophysics +1612.05997 Algebraic Geometry +1612.05998 Networking and Internet Architecture +1612.06000 Artificial Intelligence +1612.06001 Geophysics +1612.06002 Phenomenology +1612.06008 Robotics +1612.06010 Theory +1612.06011 Combinatorics +1612.06012 +1612.06013 Numerical Analysis +1612.06014 Optics +1612.06016 Data Structures and Algorithms +1612.06017 Computer Vision and Pattern Recognition +1612.06018 Learning +1612.06019 +1612.06020 +1612.06021 Combinatorics +1612.06023 Differential Geometry +1612.06024 Combinatorics +1612.06026 Combinatorics +1612.06028 High Energy Astrophysical Phenomena +1612.06029 Methodology +1612.06030 Materials Science +1612.06032 General Topology +1612.06033 Optics +1612.06034 Algebraic Topology +1612.06035 Populations and Evolution +1612.06036 Statistical Mechanics +1612.06037 Instrumentation and Methods for Astrophysics +1612.06038 Artificial Intelligence +1612.06039 Commutative Algebra +1612.06040 Methodology +1612.06041 Materials Science +1612.06042 Analysis of PDEs +1612.06044 Analysis of PDEs +1612.06047 Instrumentation and Detectors +1612.06048 Quantum Algebra +1612.06049 Materials Science +1612.06051 Representation Theory +1612.06052 Learning +1612.06053 Computer Vision and Pattern Recognition +1612.06056 Networking and Internet Architecture +1612.06057 Data Structures and Algorithms +1612.06058 Probability +1612.06060 Cosmology and Nongalactic Astrophysics +1612.06061 Machine Learning +1612.06062 Computation and Language +1612.06063 +1612.06069 Symbolic Computation +1612.06070 Computer Vision and Pattern Recognition +1612.06072 Dynamical Systems +1612.06075 Strongly Correlated Electrons +1612.06076 Computational Physics +1612.06077 Materials Science +1612.06078 Analysis of PDEs +1612.06081 Information Theory +1612.06086 Numerical Analysis +1612.06087 Plasma Physics +1612.06089 Phenomenology +1612.06090 Distributed, Parallel, and Cluster Computing +1612.06092 Computational Complexity +1612.06093 Neural and Evolutionary Computing +1612.06094 Phenomenology +1612.06098 Computer Vision and Pattern Recognition +1612.06101 Fluid Dynamics +1612.06102 High Energy Astrophysical Phenomena +1612.06103 Representation Theory +1612.06104 High Energy Astrophysical Phenomena +1612.06105 Materials Science +1612.06106 Lattice +1612.06107 Group Theory +1612.06108 Mesoscale and Nanoscale Physics +1612.06110 Analysis of PDEs +1612.06111 Mesoscale and Nanoscale Physics +1612.06113 Lattice +1612.06114 Human-Computer Interaction +1612.06117 Group Theory +1612.06119 Algebraic Geometry +1612.06120 Systems and Control +1612.06122 +1612.06123 Strongly Correlated Electrons +1612.06124 Instrumentation and Detectors +1612.06125 Probability +1612.06126 Networking and Internet Architecture +1612.06127 Statistics Theory +1612.06129 Computer Vision and Pattern Recognition +1612.06130 Functional Analysis +1612.06131 Statistical Mechanics +1612.06132 Popular Physics +1612.06133 Portfolio Management +1612.06134 Analysis of PDEs +1612.06135 Strongly Correlated Electrons +1612.06136 Information Retrieval +1612.06138 Computation and Language +1612.06139 Computation and Language +1612.06140 Computation and Language +1612.06141 Computation and Language +1612.06143 Combinatorics +1612.06144 Dynamical Systems +1612.06146 Methodology +1612.06147 Functional Analysis +1612.06148 Astrophysics of Galaxies +1612.06150 Commutative Algebra +1612.06152 Computer Vision and Pattern Recognition +1612.06153 Combinatorics +1612.06155 Mesoscale and Nanoscale Physics +1612.06157 Solar and Stellar Astrophysics +1612.06158 Rings and Algebras +1612.06159 Information Theory +1612.06160 Materials Science +1612.06162 Digital Libraries +1612.06164 Robotics +1612.06168 Fluid Dynamics +1612.06170 Computer Vision and Pattern Recognition +1612.06171 Representation Theory +1612.06172 Solar and Stellar Astrophysics +1612.06173 Complex Variables +1612.06176 Computer Vision and Pattern Recognition +1612.06178 Group Theory +1612.06179 Functional Analysis +1612.06181 Statistical Mechanics +1612.06182 Plasma Physics +1612.06185 Disordered Systems and Neural Networks +1612.06187 Number Theory +1612.06189 Human-Computer Interaction +1612.06190 Mesoscale and Nanoscale Physics +1612.06191 Cryptography and Security +1612.06192 Strongly Correlated Electrons +1612.06193 Analysis of PDEs +1612.06194 Phenomenology +1612.06195 Databases +1612.06196 Soft Condensed Matter +1612.06197 +1612.06198 Methodology +1612.06199 Mesoscale and Nanoscale Physics +1612.06202 Digital Libraries +1612.06204 Statistical Mechanics +1612.06205 Optimization and Control +1612.06208 Plasma Physics +1612.06210 Number Theory +1612.06212 Neural and Evolutionary Computing +1612.06213 Number Theory +1612.06214 Theory +1612.06215 Optics +1612.06216 Materials Science +1612.06218 Materials Science +1612.06219 History and Overview +1612.06220 Group Theory +1612.06221 Theory +1612.06222 Logic +1612.06223 Theory +1612.06224 +1612.06226 Classical Analysis and ODEs +1612.06227 Cosmology and Nongalactic Astrophysics +1612.06228 +1612.06229 Optimization and Control +1612.06230 Analysis of PDEs +1612.06231 Analysis of PDEs +1612.06233 Formal Languages and Automata Theory +1612.06235 Theory +1612.06236 Theory +1612.06237 Geometric Topology +1612.06238 Instrumentation and Methods for Astrophysics +1612.06240 +1612.06242 History and Overview +1612.06243 Combinatorics +1612.06244 General Finance +1612.06247 Formal Languages and Automata Theory +1612.06249 Materials Science +1612.06250 Classical Analysis and ODEs +1612.06251 +1612.06253 Phenomenology +1612.06256 Operator Algebras +1612.06259 Computer Vision and Pattern Recognition +1612.06260 Number Theory +1612.06261 Commutative Algebra +1612.06262 Networking and Internet Architecture +1612.06263 +1612.06265 Optimization and Control +1612.06266 Materials Science +1612.06269 Lattice +1612.06270 Functional Analysis +1612.06271 Information Theory +1612.06272 Group Theory +1612.06273 Strongly Correlated Electrons +1612.06274 Phenomenology +1612.06275 Materials Science +1612.06276 Theory +1612.06277 Analysis of PDEs +1612.06278 +1612.06279 Optimization and Control +1612.06280 Analysis of PDEs +1612.06281 Analysis of PDEs +1612.06282 Cosmology and Nongalactic Astrophysics +1612.06283 Analysis of PDEs +1612.06284 Analysis of PDEs +1612.06285 Analysis of PDEs +1612.06286 Metric Geometry +1612.06287 Sound +1612.06288 Optimization and Control +1612.06290 Materials Science +1612.06291 Economics +1612.06293 Accelerator Physics +1612.06295 Algebraic Geometry +1612.06296 Cosmology and Nongalactic Astrophysics +1612.06299 Learning +1612.06302 Distributed, Parallel, and Cluster Computing +1612.06303 Methodology +1612.06304 Methodology +1612.06305 Cryptography and Security +1612.06306 Probability +1612.06307 Complex Variables +1612.06308 Theory +1612.06309 Solar and Stellar Astrophysics +1612.06310 +1612.06312 Numerical Analysis +1612.06313 Quantitative Methods +1612.06314 Algebraic Topology +1612.06315 Algebraic Topology +1612.06316 Phenomenology +1612.06317 Quantum Algebra +1612.06318 Number Theory +1612.06319 Biomolecules +1612.06321 Computer Vision and Pattern Recognition +1612.06322 +1612.06327 Superconductivity +1612.06329 Astrophysics of Galaxies +1612.06331 Materials Science +1612.06333 Phenomenology +1612.06334 Phenomenology +1612.06335 Information Theory +1612.06336 Tissues and Organs +1612.06341 Computer Vision and Pattern Recognition +1612.06343 Probability +1612.06344 Optimization and Control +1612.06345 Information Theory +1612.06347 Computer Science and Game Theory +1612.06348 Theory +1612.06350 Phenomenology +1612.06352 Representation Theory +1612.06353 Mesoscale and Nanoscale Physics +1612.06355 Mesoscale and Nanoscale Physics +1612.06358 Statistics Theory +1612.06359 Probability +1612.06361 Optimization and Control +1612.06362 Mesoscale and Nanoscale Physics +1612.06363 Algebraic Topology +1612.06365 Mesoscale and Nanoscale Physics +1612.06367 Cosmology and Nongalactic Astrophysics +1612.06369 High Energy Astrophysical Phenomena +1612.06370 Computer Vision and Pattern Recognition +1612.06371 Computer Vision and Pattern Recognition +math/0504375 Logic +1602.04277 Learning +1602.04352 Physics and Society +1602.04368 Data Structures and Algorithms +1602.04420 Optimization and Control +1602.04513 Quantitative Methods +1602.04544 Mesoscale and Nanoscale Physics +1602.04607 Phenomenology +1602.04681 Mesoscale and Nanoscale Physics +1602.04718 Optimization and Control +1602.04721 Applications +1602.04759 Experiment +1602.04799 +0905.0203 Human-Computer Interaction +1001.4002 Graphics +1002.0690 Algebraic Geometry +1003.0302 Number Theory +1109.3314 Solar and Stellar Astrophysics +1109.5421 Theory +1110.2358 Geometric Topology +1205.6124 Algebraic Geometry +1211.0304 Algebraic Geometry +1211.3000 Combinatorics +1302.0872 General Mathematics +1307.0241 Probability +1307.5645 Combinatorics +1307.5957 Analysis of PDEs +1311.1095 +1401.2007 Quantum Gases +1402.1769 Probability +1403.2662 Functional Analysis +1405.4561 Algebraic Geometry +1405.7709 Computer Science and Game Theory +1406.5623 Superconductivity +1406.7756 Information Theory +1407.6326 +1408.2549 +1409.1751 +1409.1874 Combinatorics +1409.4228 Metric Geometry +1410.0585 Mesoscale and Nanoscale Physics +1410.4237 Neurons and Cognition +1410.7425 Dynamical Systems +1411.4802 Instrumentation and Detectors +1412.3644 Logic in Computer Science +1501.03855 Superconductivity +1502.06291 Statistics Theory +1502.07442 Instrumentation and Methods for Astrophysics +1503.01495 Mesoscale and Nanoscale Physics +1503.05087 Learning +1504.03225 General Physics +1504.03238 Mathematical Finance +1504.08310 Commutative Algebra +1505.05793 Metric Geometry +1505.07941 Number Theory +1506.03649 Representation Theory +1506.03806 Probability +1506.05330 +1506.06914 +1506.07869 Number Theory +1507.02272 Distributed, Parallel, and Cluster Computing +1507.03831 Algebraic Geometry +1507.04572 Algebraic Geometry +1507.07577 High Energy Astrophysical Phenomena +1507.08024 Representation Theory +1507.08185 +1508.00352 Materials Science +1508.01541 General Topology +1508.03040 Computation and Language +1508.07208 Cosmology and Nongalactic Astrophysics +1509.00133 Functional Analysis +1509.01062 +1509.05598 Optimization and Control +1509.06002 Number Theory +1510.00586 Logic +1510.00632 Mesoscale and Nanoscale Physics +1510.00943 Number Theory +1510.01733 Astrophysics of Galaxies +1510.03517 Optimization and Control +1510.06020 Logic in Computer Science +1510.06782 Differential Geometry +1511.00857 Category Theory +1511.01772 Algebraic Topology +1511.01805 +1511.02763 General Physics +1511.06309 Learning +1511.06498 Mesoscale and Nanoscale Physics +1511.06689 Number Theory +1511.07715 Machine Learning +1511.08031 Fluid Dynamics +1512.00553 Physics and Society +1512.00772 Differential Geometry +1512.04037 +1512.04632 Analysis of PDEs +1512.06293 Information Theory +1512.06503 Mesoscale and Nanoscale Physics +1512.07382 Number Theory +1512.07603 Populations and Evolution +1512.09013 Theory +1601.01414 Materials Science +1601.01982 Materials Science +1601.02994 Strongly Correlated Electrons +1601.04906 Dynamical Systems +1601.06911 Methodology +1601.07476 Analysis of PDEs +1601.07677 Classical Analysis and ODEs +1602.01160 Methodology +1602.01784 Cosmology and Nongalactic Astrophysics +1602.03034 K-Theory and Homology +1602.03071 Mesoscale and Nanoscale Physics +1602.04752 Cosmology and Nongalactic Astrophysics +1602.05684 Mesoscale and Nanoscale Physics +1602.06641 Differential Geometry +1602.07240 +1602.07907 Geometric Topology +1602.08173 Strongly Correlated Electrons +1603.00093 Atomic Physics +1603.00175 Numerical Analysis +1603.00176 Numerical Analysis +1603.00275 Computer Vision and Pattern Recognition +1603.00358 Mesoscale and Nanoscale Physics +1603.04379 Optimization and Control +1603.04661 Probability +1603.05860 +1603.06586 Cosmology and Nongalactic Astrophysics +1603.07067 Number Theory +1603.07328 +1603.07910 Physics Education +1603.09056 Computer Vision and Pattern Recognition +1603.09562 Algebraic Geometry +1604.00479 +1604.01033 Mesoscale and Nanoscale Physics +1604.01174 Probability +1604.01460 Strongly Correlated Electrons +1604.03011 Solar and Stellar Astrophysics +1604.03514 Theory +1604.03951 Strongly Correlated Electrons +1604.04285 Cosmology and Nongalactic Astrophysics +1604.04513 Mesoscale and Nanoscale Physics +1604.05252 Strongly Correlated Electrons +1604.06578 Information Theory +1605.01379 Computer Vision and Pattern Recognition +1605.01591 Group Theory +1605.02233 Information Theory +1605.02342 Chaotic Dynamics +1605.02817 Artificial Intelligence +1605.04871 Cosmology and Nongalactic Astrophysics +1605.08283 Learning +1606.00634 Cosmology and Nongalactic Astrophysics +1606.01334 +1606.01435 Adaptation and Self-Organizing Systems +1606.02692 +1606.02959 Numerical Analysis +1606.03307 Theory +1606.04837 Phenomenology +1606.06028 Metric Geometry +1606.06156 +1606.07626 Geometric Topology +1606.08894 Algebraic Geometry +1606.09054 Experiment +1607.00278 Computational Geometry +1607.01196 Computational Geometry +1607.01747 Theory +1607.02000 Representation Theory +1607.02305 Mesoscale and Nanoscale Physics +1607.02439 Theory +1607.02551 Solar and Stellar Astrophysics +1607.03045 Methodology +1607.04282 Earth and Planetary Astrophysics +1607.04481 +1607.04928 Theory +1607.06275 Computation and Language +1607.07123 Experiment +1607.08115 +1607.08671 Optimization and Control +1608.00871 Atomic Physics +1608.00936 Graphics +1608.01119 Astrophysics of Galaxies +1608.02099 Metric Geometry +1608.02200 High Energy Astrophysical Phenomena +1608.02534 Programming Languages +1608.02598 Strongly Correlated Electrons +1608.03341 +1608.03509 Earth and Planetary Astrophysics +1608.03546 General Topology +1608.03593 High Energy Astrophysical Phenomena +1608.03885 Quantum Algebra +1608.04982 Materials Science +1608.05811 +1608.06591 Materials Science +1608.07179 Learning +1608.07637 Software Engineering +1608.07793 Artificial Intelligence +1608.08161 Computational Geometry +1608.08336 Computer Vision and Pattern Recognition +1608.08367 Information Theory +1608.08407 Geophysics +1608.08542 Medical Physics +1608.08704 Logic in Computer Science +1608.08726 +1608.08764 Number Theory +1608.08967 Learning +1608.08968 Methodology +1609.00001 Neurons and Cognition +1609.00002 Instrumentation and Detectors +1609.00003 Astrophysics of Galaxies +1609.00004 Physics and Society +1609.00017 Robotics +1609.00018 Physics Education +1609.00030 Artificial Intelligence +1609.00031 Methodology +1609.00032 Neurons and Cognition +1609.00039 +1609.00040 Functional Analysis +1609.00042 Rings and Algebras +1609.00045 Multimedia +1609.00046 Methodology +1609.00047 Theory +1609.00048 Numerical Analysis +1609.00049 Symplectic Geometry +1609.00050 Phenomenology +1609.00051 Systems and Control +1609.00053 Computer Vision and Pattern Recognition +1609.00054 Optics +1609.00055 Instrumentation and Methods for Astrophysics +1609.00056 Systems and Control +1609.00059 Functional Analysis +1609.00060 Computational Physics +1609.00061 Numerical Analysis +1609.00062 Information Theory +1609.00063 Fluid Dynamics +1609.00064 High Energy Astrophysical Phenomena +1609.00065 Methodology +1609.00070 Computation and Language +1609.00072 Computer Vision and Pattern Recognition +1609.00073 Optics +1609.00076 Mathematical Software +1609.00081 Computation and Language +1609.00082 Probability +1609.00087 Superconductivity +1609.00088 Combinatorics +1609.00089 Combinatorics +1609.00092 Combinatorics +1609.00093 Logic +1609.00096 Computer Vision and Pattern Recognition +1609.00101 Cosmology and Nongalactic Astrophysics +1609.00102 +1609.00103 Materials Science +1609.00104 Cryptography and Security +1609.00105 Superconductivity +1609.00107 Analysis of PDEs +1609.00108 Social and Information Networks +1609.00109 Discrete Mathematics +1609.00111 Algebraic Geometry +1609.00115 Optimization and Control +1609.00117 Databases +1609.00119 Computational Engineering, Finance, and Science +1609.00120 Solar and Stellar Astrophysics +1609.00122 Analysis of PDEs +1609.00123 Algebraic Geometry +1609.00126 Networking and Internet Architecture +1609.00127 Analysis of PDEs +1609.00129 Computer Vision and Pattern Recognition +1609.00130 Distributed, Parallel, and Cluster Computing +1609.00131 Soft Condensed Matter +1609.00132 Logic in Computer Science +1609.00133 Cryptography and Security +1609.00134 Solar and Stellar Astrophysics +1609.00136 Strongly Correlated Electrons +1609.00137 Instrumentation and Methods for Astrophysics +1609.00139 Numerical Analysis +1609.00142 Information Theory +1609.00144 Algebraic Geometry +1609.00145 Category Theory +1609.00148 Phenomenology +1609.00149 Social and Information Networks +1609.00152 Combinatorics +1609.00154 Geophysics +1609.00155 +1609.00158 Soft Condensed Matter +1609.00160 Chemical Physics +1609.00162 Computer Vision and Pattern Recognition +1609.00163 Instrumentation and Methods for Astrophysics +1609.00165 Probability +1609.00167 Theory +1609.00169 Software Engineering +1609.00170 Complex Variables +1609.00172 Lattice +1609.00173 +1609.00175 High Energy Astrophysical Phenomena +1609.00176 Functional Analysis +1609.00177 Robotics +1609.00178 Solar and Stellar Astrophysics +1609.00179 Classical Analysis and ODEs +1609.00181 Lattice +1609.00182 Fluid Dynamics +1609.00185 Populations and Evolution +1609.00192 +1609.00195 Logic in Computer Science +1609.00198 Strongly Correlated Electrons +1609.00201 Strongly Correlated Electrons +1609.00203 Learning +1609.00205 Theory +1609.00210 Lattice +1609.00211 Combinatorics +1609.00212 Mesoscale and Nanoscale Physics +1609.00214 Formal Languages and Automata Theory +1609.00215 Probability +1609.00216 Optics +1609.00217 Geometric Topology +1609.00218 Complex Variables +1609.00220 Mesoscale and Nanoscale Physics +1609.00221 Computer Vision and Pattern Recognition +1609.00223 Geometric Topology +1609.00225 Cryptography and Security +1609.00231 Number Theory +1609.00232 Numerical Analysis +1609.00234 Classical Analysis and ODEs +1609.00236 Materials Science +1609.00237 Instrumentation and Methods for Astrophysics +1609.00242 Logic +1609.00243 Applications +1609.00251 Statistical Mechanics +1609.00254 Phenomenology +1609.00255 Materials Science +1609.00256 Plasma Physics +1609.00262 Representation Theory +1609.00266 Cryptography and Security +1609.00267 Materials Science +1609.00268 Soft Condensed Matter +1609.00269 Atomic Physics +1609.00273 Solar and Stellar Astrophysics +1609.00276 +1609.00277 History and Philosophy of Physics +1609.00278 Computer Vision and Pattern Recognition +1609.00279 Group Theory +1609.00281 Plasma Physics +1609.00283 Systems and Control +1609.00284 Combinatorics +1609.00288 Learning +1609.00289 Materials Science +1609.00290 Combinatorics +1609.00291 Sound +1609.00292 Artificial Intelligence +1609.00293 Methodology +1609.00294 +1609.00295 General Mathematics +1609.00298 Probability +1609.00299 Number Theory +1609.00300 Networking and Internet Architecture +1609.00302 Systems and Control +1609.00304 Superconductivity +1609.00306 Hardware Architecture +1609.00308 Mesoscale and Nanoscale Physics +1609.00309 Analysis of PDEs +1609.00311 History and Philosophy of Physics +1609.00314 Combinatorics +1609.00315 +1609.00320 Algebraic Geometry +1609.00321 Computational Geometry +1609.00325 Group Theory +1609.00327 Soft Condensed Matter +1609.00329 Solar and Stellar Astrophysics +1609.00330 High Energy Astrophysical Phenomena +1609.00333 Mesoscale and Nanoscale Physics +1609.00337 Commutative Algebra +1609.00338 Probability +1609.00339 Computation +1609.00340 Materials Science +1609.00341 Optimization and Control +1609.00344 Computer Vision and Pattern Recognition +1609.00345 Algebraic Geometry +1609.00346 Instrumentation and Detectors +1609.00347 Fluid Dynamics +1609.00355 Solar and Stellar Astrophysics +1609.00366 Differential Geometry +0711.3343 +0802.3956 Probability +0805.3407 Probability +0812.2432 Probability +0908.0257 Numerical Analysis +1011.2878 Numerical Analysis +1011.2880 Numerical Analysis +1011.2972 Numerical Analysis +1012.5906 Complex Variables +1103.1731 Algebraic Geometry +1107.2372 Operator Algebras +1203.3283 Strongly Correlated Electrons +1203.3896 Methodology +1204.2451 Number Theory +1207.4085 Methodology +1307.5173 Logic +1401.5436 Theory +1402.4492 Probability +1404.1455 Cosmology and Nongalactic Astrophysics +1405.5103 Statistics Theory +1406.6006 Analysis of PDEs +1409.0527 +1410.7217 Applications +1411.4686 Statistics Theory +1501.05732 Experiment +1501.06234 +1501.06314 Methodology +1502.00611 Logic in Computer Science +1502.00681 +1502.02928 +1502.06222 Optimization and Control +1503.07289 Fluid Dynamics +1504.01687 +1504.02509 +1504.05525 Chaotic Dynamics +1505.01216 Number Theory +1505.04923 Statistical Mechanics +1505.06371 Dynamical Systems +1505.07055 Strongly Correlated Electrons +1506.02773 Mesoscale and Nanoscale Physics +1506.04012 Probability +1506.05406 Phenomenology +1506.08320 General Topology +1506.08650 +1507.06504 Computer Vision and Pattern Recognition +1507.08191 Dynamical Systems +1508.01960 Functional Analysis +1508.01961 Functional Analysis +1508.02066 Functional Analysis +1508.06609 Mesoscale and Nanoscale Physics +1509.01755 Representation Theory +1509.04733 Social and Information Networks +1509.07044 +1509.07726 Astrophysics of Galaxies +1510.00921 Computer Vision and Pattern Recognition +1510.02852 Algebraic Geometry +1510.03297 Theory +1510.06683 +1511.00921 Subcellular Processes +1511.00940 Functional Analysis +1511.01009 Statistics Theory +1511.02280 High Energy Astrophysical Phenomena +1511.06084 Instrumentation and Detectors +1511.09410 +1512.03109 Functional Analysis +1512.08125 Theory +1512.08261 Number Theory +1601.00685 Algebraic Geometry +1601.02887 Combinatorics +1602.00494 Functional Analysis +1602.00619 Pricing of Securities +1602.01296 Instrumentation and Detectors +1602.01735 Functional Analysis +1602.03133 +1602.06673 Statistical Mechanics +1602.08221 Symplectic Geometry +1602.08730 Data Structures and Algorithms +1602.08744 Analysis of PDEs +1602.08983 Differential Geometry +1603.01818 Analysis of PDEs +1603.02735 Optics +1603.03564 Systems and Control +1603.04194 Probability +1603.05938 Methodology +1603.08783 Materials Science +1603.08800 +1604.03163 Functional Analysis +1604.04813 Complex Variables +1604.05553 Optimization and Control +1604.05602 Astrophysics of Galaxies +1604.06035 Analysis of PDEs +1604.07295 Probability +1604.07952 Computer Vision and Pattern Recognition +1605.00125 Optimization and Control +1605.00456 +1605.02517 Phenomenology +1605.03190 Phenomenology +1605.03512 Probability +1605.03679 +1605.04753 Functional Analysis +1605.04864 Phenomenology +1605.05213 Quantum Gases +1605.05451 Theory +1605.05476 Applications +1605.06530 Populations and Evolution +1605.08236 Complex Variables +1606.00615 Information Retrieval +1606.01084 Exactly Solvable and Integrable Systems +1606.01280 Computation and Language +1606.02183 Combinatorics +1606.02943 Dynamical Systems +1606.03793 Analysis of PDEs +1606.04244 Optimization and Control +1606.07372 Neurons and Cognition +1606.08743 Numerical Analysis +1607.00817 Cosmology and Nongalactic Astrophysics +1607.00882 Methodology +1607.02034 Mesoscale and Nanoscale Physics +1607.02129 Classical Analysis and ODEs +1607.02543 Number Theory +1607.03179 Digital Libraries +1607.03735 Theory +1607.03854 Information Theory +1607.03928 +1607.05187 Theory +1607.05432 Machine Learning +1607.06382 Phenomenology +1607.07498 Data Analysis, Statistics and Probability +1607.08517 Phenomenology +1608.00021 Theory +1608.00039 Computer Science and Game Theory +1608.01481 Optics +1608.01764 +1608.02112 Information Theory +1608.02833 Computer Vision and Pattern Recognition +1608.03099 Phenomenology +1608.03412 +1608.03714 Disordered Systems and Neural Networks +1608.04233 Computer Vision and Pattern Recognition +1608.04449 +1608.04741 Strongly Correlated Electrons +1608.05028 High Energy Astrophysical Phenomena +1608.05645 Optics +1608.05846 Mesoscale and Nanoscale Physics +1608.06923 +1608.07152 Quantum Gases +1608.08135 Theory +1608.08281 Mesoscale and Nanoscale Physics +1608.08419 Solar and Stellar Astrophysics +1609.00379 Cosmology and Nongalactic Astrophysics +1609.00565 Computation and Language +1609.00902 Classical Analysis and ODEs +1609.01214 Physics and Society +1609.02686 Machine Learning +1609.02971 Probability +1609.04736 Experiment +1609.04971 Soft Condensed Matter +1609.04995 Chaotic Dynamics +1609.05137 Combinatorics +1609.06325 Statistical Mechanics +1609.06630 Discrete Mathematics +1609.07529 Mesoscale and Nanoscale Physics +1609.07982 Computer Vision and Pattern Recognition +1609.08319 Astrophysics of Galaxies +1610.00112 Mesoscale and Nanoscale Physics +1610.00186 Medical Physics +1610.00819 Plasma Physics +1610.00870 Accelerator Physics +1610.01743 Mesoscale and Nanoscale Physics +1610.02549 Theory +1610.02945 Numerical Analysis +1610.03205 +1610.03388 Mesoscale and Nanoscale Physics +1610.03701 Computation +1610.03763 Cosmology and Nongalactic Astrophysics +1610.04196 Applications +1610.04422 General Topology +1610.07067 Analysis of PDEs +1610.07425 Mesoscale and Nanoscale Physics +1610.07830 Machine Learning +1610.08635 High Energy Astrophysical Phenomena +1610.09945 Dynamical Systems +1611.00340 Machine Learning +1611.00871 Rings and Algebras +1611.00933 Dynamical Systems +1611.01090 Databases +1611.02099 Combinatorics +1611.02271 Exactly Solvable and Integrable Systems +1611.04019 Statistical Mechanics +1611.04146 Artificial Intelligence +1611.05026 Programming Languages +1611.05031 Theory +1611.06091 Materials Science +1611.06156 Computational Physics +1611.06506 Algebraic Geometry +1611.07362 Logic +1611.07598 Disordered Systems and Neural Networks +1611.07827 Phenomenology +1611.08234 Phenomenology +1611.08466 K-Theory and Homology +1611.08562 Computation and Language +1611.09194 Learning +1611.09362 Cosmology and Nongalactic Astrophysics +1611.09749 Rings and Algebras +1612.00071 Physics and Society +1612.00685 +1612.00765 Number Theory +1612.00792 Algebraic Geometry +1612.00905 +1612.01051 Computer Vision and Pattern Recognition +1612.01414 Learning +1612.01465 Computer Vision and Pattern Recognition +1612.01797 Combinatorics +1612.02548 Phenomenology +1612.02728 Phenomenology +1612.02965 Machine Learning +1612.03131 +1612.03381 Earth and Planetary Astrophysics +1612.03644 Combinatorics +1612.03899 Strongly Correlated Electrons +1612.04070 +1612.04202 Phenomenology +1612.04690 Statistical Mechanics +1612.04983 Logic in Computer Science +1612.05003 Superconductivity +1612.05032 Theory +1612.05245 Instrumentation and Methods for Astrophysics +1612.05771 Representation Theory +1612.05831 Dynamical Systems +1612.05980 Geometric Topology +1612.06121 Earth and Planetary Astrophysics +1612.06161 Phenomenology +1612.06378 +1612.06433 Data Analysis, Statistics and Probability +1612.06658 Information Theory +1612.06772 Numerical Analysis +1612.06811 Cosmology and Nongalactic Astrophysics +1612.06856 Learning +1612.06907 Materials Science +1612.06938 Theory +1612.07014 Materials Science +1612.07059 Artificial Intelligence +1612.07201 Optics +1612.07213 Systems and Control +1612.07224 Information Theory +1612.07244 +1612.07318 Other Computer Science +1612.07319 +1612.07321 High Energy Astrophysical Phenomena +1612.07330 +1612.07331 +1612.07335 Optimization and Control +1612.07338 Statistical Mechanics +1612.07339 Accelerator Physics +1612.07340 Optimization and Control +1612.07342 Phenomenology +1612.07345 Logic in Computer Science +1612.07346 Fluid Dynamics +1612.07347 Lattice +1612.07348 Experiment +1612.07349 Statistics Theory +1612.07350 Optimization and Control +1612.07351 +1612.07352 Solar and Stellar Astrophysics +1612.07353 Graphics +1612.07354 General Topology +1612.07355 Solar and Stellar Astrophysics +1612.07356 Superconductivity +1612.07357 Complex Variables +1612.07358 Accelerator Physics +1612.07359 +1612.07360 Computer Vision and Pattern Recognition +1612.07361 Fluid Dynamics +1612.07363 Solar and Stellar Astrophysics +1612.07365 Social and Information Networks +1612.07366 +1612.07367 Optimization and Control +1612.07369 Accelerator Physics +1612.07370 Theory +1612.07371 Analysis of PDEs +1612.07372 Complex Variables +1612.07374 Learning +1612.07375 Optics +1612.07376 Earth and Planetary Astrophysics +1612.07377 Phenomenology +1612.07378 Algebraic Geometry +1612.07379 Computer Vision and Pattern Recognition +1612.07380 Lattice +1612.07381 Astrophysics of Galaxies +1612.07384 Complex Variables +1612.07385 Combinatorics +1612.07387 +1612.07388 Phenomenology +1612.07390 +1612.07391 Combinatorics +1612.07394 Information Theory +1612.07395 +1612.07396 Mesoscale and Nanoscale Physics +1612.07399 Solar and Stellar Astrophysics +1612.07400 Logic in Computer Science +1612.07402 Dynamical Systems +1612.07403 Computer Vision and Pattern Recognition +1612.07404 Databases +1612.07405 Computational Geometry +1612.07406 +1612.07408 Statistics Theory +1612.07409 Fluid Dynamics +1612.07410 Mesoscale and Nanoscale Physics +1612.07411 Computation and Language +1612.07412 +1612.07413 Information Theory +1612.07414 Algebraic Geometry +1612.07415 Phenomenology +1612.07417 Information Theory +1612.07418 High Energy Astrophysical Phenomena +1612.07419 +1612.07420 Analysis of PDEs +1612.07423 Representation Theory +1612.07424 +1612.07425 Populations and Evolution +1612.07426 Instrumentation and Detectors +1612.07427 +1612.07428 Optics +1612.07430 Subcellular Processes +1612.07432 Algebraic Geometry +1612.07435 Optimization and Control +1612.07436 Optimization and Control +1612.07439 Applications +1612.07441 Plasma Physics +1612.07442 Soft Condensed Matter +1612.07443 Soft Condensed Matter +1612.07444 Materials Science +1612.07445 Complex Variables +1612.07446 Complex Variables +1612.07447 Category Theory +1612.07451 Experiment +1612.07453 Computer Vision and Pattern Recognition +1612.07454 Learning +1612.07455 +1612.07456 Materials Science +1612.07457 Phenomenology +1612.07458 Functional Analysis +1612.07459 High Energy Astrophysical Phenomena +1612.07461 Algebraic Topology +1612.07462 Combinatorics +1612.07463 Methodology +1612.07465 Optics +1612.07466 Data Analysis, Statistics and Probability +1612.07467 Materials Science +1612.07469 Atomic Physics +1612.07470 Computational Physics +1612.07471 Computation +1612.07472 Quantum Algebra +1612.07473 Algebraic Geometry +1612.07474 Atmospheric and Oceanic Physics +1612.07475 Data Structures and Algorithms +1612.07476 Phenomenology +1612.07477 Lattice +1612.07478 Probability +1612.07479 Phenomenology +1612.07480 Superconductivity +1612.07481 Probability +1612.07483 +1612.07484 +1612.07487 Social and Information Networks +1612.07488 Differential Geometry +1612.07491 Computational Complexity +1612.07493 Data Structures and Algorithms +1612.07496 +1612.07497 Methodology +1612.07498 Computation +1612.07499 +1612.07500 +1612.07501 Numerical Analysis +1612.07503 Solar and Stellar Astrophysics +1612.07504 Materials Science +1612.07506 +1612.07507 +1612.07509 Phenomenology +1612.07510 Quantum Gases +1612.07511 Mesoscale and Nanoscale Physics +1612.07512 Machine Learning +1612.07514 Databases +1612.07516 Learning +1612.07517 Mesoscale and Nanoscale Physics +1612.07518 Materials Science +1612.07519 Probability +1612.07520 Accelerator Physics +1612.07522 Computational Physics +1612.07523 Sound +1612.07524 Astrophysics of Galaxies +1612.07529 Optics +1612.07530 Classical Analysis and ODEs +1612.07532 Numerical Analysis +1612.07533 Analysis of PDEs +1612.07534 Classical Physics +1612.07535 Analysis of PDEs +1612.07536 Instrumentation and Methods for Astrophysics +1612.07537 Geometric Topology +1612.07538 Combinatorics +1612.07539 Statistical Mechanics +1612.07540 Combinatorics +1612.07542 Other Statistics +1612.07543 Economics +1612.07546 Strongly Correlated Electrons +1612.07548 Artificial Intelligence +1612.07549 Instrumentation and Methods for Astrophysics +1612.07550 Numerical Analysis +1612.07553 Numerical Analysis +1612.07554 Functional Analysis +1612.07555 Artificial Intelligence +1612.07556 Materials Science +1612.07558 Quantum Gases +1612.07559 +1612.07560 Logic +1612.07561 Methodology +1612.07563 Numerical Analysis +1612.07564 Earth and Planetary Astrophysics +1612.07567 +1612.07568 Systems and Control +1612.07569 Algebraic Geometry +1612.07570 +1612.07571 Strongly Correlated Electrons +1612.07572 Instrumentation and Methods for Astrophysics +1612.07573 +1612.07579 Analysis of PDEs +1612.07580 Analysis of PDEs +1612.07581 Mesoscale and Nanoscale Physics +1612.07582 Analysis of PDEs +1612.07583 Statistics Theory +1612.07584 +1612.07585 Mesoscale and Nanoscale Physics +1612.07586 Cryptography and Security +1612.07587 Instrumentation and Methods for Astrophysics +1612.07588 K-Theory and Homology +1612.07589 Artificial Intelligence +1612.07590 Theory +1612.07591 Combinatorics +1612.07592 Plasma Physics +1612.07595 Solar and Stellar Astrophysics +1612.07596 Differential Geometry +1612.07598 Astrophysics of Galaxies +1612.07600 Computation and Language +1612.07601 Logic in Computer Science +1612.07603 Neural and Evolutionary Computing +1612.07606 Commutative Algebra +1612.07607 +1612.07608 Computers and Society +1612.07609 Strongly Correlated Electrons +1612.07611 Statistical Mechanics +1612.07613 Mesoscale and Nanoscale Physics +1612.07614 Mesoscale and Nanoscale Physics +1612.07615 +1612.07616 +1612.07617 Pattern Formation and Solitons +1612.07618 Mathematical Finance +1612.07619 Numerical Analysis +1612.07621 Solar and Stellar Astrophysics +1612.07623 Metric Geometry +1612.07624 Mesoscale and Nanoscale Physics +1612.07627 +1612.07628 Phenomenology +1612.07631 Instrumentation and Detectors +1612.07632 Number Theory +1612.07633 Superconductivity +1612.07634 Lattice +1612.07635 Probability +1612.07636 Digital Libraries +1612.07637 Theory +1612.07638 Commutative Algebra +1612.07639 Theory +1612.07640 Learning +1612.07641 Combinatorics +1612.07642 History and Philosophy of Physics +1612.07643 Mesoscale and Nanoscale Physics +1612.07644 +1612.07645 Biological Physics +1612.07646 +1612.07647 Probability +1612.07650 Cosmology and Nongalactic Astrophysics +1612.07651 Phenomenology +1612.07653 Dynamical Systems +1612.07654 Solar and Stellar Astrophysics +1612.07655 Geophysics +1612.07656 Phenomenology +1612.07657 Combinatorics +1612.07658 +1612.07659 Machine Learning +1612.07660 Phenomenology +1612.07661 Optimization and Control +1612.07662 Experiment +1612.07663 Algebraic Geometry +1612.07664 +1612.07665 Differential Geometry +1612.07669 +1612.07670 Statistics Theory +1612.07671 Optimization and Control +1612.07672 Theory +1612.07674 +1612.07675 +1612.07676 Classical Physics +1612.07677 Human-Computer Interaction +1612.07679 Representation Theory +1612.07680 Numerical Analysis +1612.07681 Phenomenology +1612.07682 Logic in Computer Science +1612.07685 Cryptography and Security +1612.07686 +1612.07688 Computers and Society +1612.07690 Quantum Gases +1612.07692 +1612.07694 Soft Condensed Matter +1612.07695 Computer Vision and Pattern Recognition +1612.07697 Computer Vision and Pattern Recognition +1612.07698 High Energy Astrophysical Phenomena +1612.07699 Accelerator Physics +1612.07700 +1612.07701 Theory +1612.07702 Distributed, Parallel, and Cluster Computing +1612.07704 Statistics Theory +1612.07707 Analysis of PDEs +1612.07708 Emerging Technologies +1612.07709 Fluid Dynamics +1612.07710 Data Structures and Algorithms +1612.07714 Human-Computer Interaction +1612.07716 Quantum Gases +1612.07717 Numerical Analysis +1612.07718 +1612.07721 Lattice +1612.07722 Analysis of PDEs +1612.07724 Astrophysics of Galaxies +1612.07726 Phenomenology +1612.07727 Analysis of PDEs +1612.07731 Differential Geometry +1612.07732 Rings and Algebras +1612.07733 Lattice +1612.07734 +1612.07735 +1612.07736 Cryptography and Security +1612.07737 Lattice +1612.07738 Cosmology and Nongalactic Astrophysics +1612.07739 Representation Theory +1612.07741 Phenomenology +1612.07742 Trading and Market Microstructure +1612.07743 Phenomenology +1612.07744 Probability +1612.07745 Probability +1612.07746 Quantum Gases +1612.07747 +1612.07748 Rings and Algebras +1612.07749 +1612.07750 Phenomenology +1612.07752 Lattice +1612.07753 Differential Geometry +1612.07754 +1612.07756 +1612.07757 Phenomenology +1612.07758 Phenomenology +1612.07759 Optics +1612.07761 Information Theory +1612.07762 Algebraic Topology +1612.07765 +1612.07767 Computer Vision and Pattern Recognition +1612.07768 Computational Complexity +1612.07769 Theory +1612.07770 Logic in Computer Science +1612.07773 Information Theory +1612.07775 Theory +1612.07777 Accelerator Physics +1612.07778 Human-Computer Interaction +1612.07780 Probability +1612.07781 Astrophysics of Galaxies +1612.07785 Theory +1612.07786 Algebraic Geometry +1612.07788 Earth and Planetary Astrophysics +1612.07790 Phenomenology +1612.07791 Algebraic Topology +1612.07792 Strongly Correlated Electrons +1612.07793 Materials Science +1612.07794 Phenomenology +1612.07795 Optics +1612.07796 Computer Vision and Pattern Recognition +1612.07797 Combinatorics +1612.07798 Theory +1612.07799 Strongly Correlated Electrons +1612.07800 Theory +cs/0604055 Data Structures and Algorithms +cs/0703093 Computational Geometry +math/0201048 Functional Analysis +math/0203275 Functional Analysis +math/0306314 Functional Analysis +math/0403278 Functional Analysis +math/0404192 Functional Analysis +math/0404500 Functional Analysis +math/0404502 Functional Analysis +math/0405566 Functional Analysis +math/0410001 Functional Analysis +math/0502299 Functional Analysis +math/0503442 Functional Analysis +math/0601112 Functional Analysis +math/0602559 Numerical Analysis +math/0608795 Differential Geometry +math/0611343 Numerical Analysis +math/0703503 Probability +0805.2306 Commutative Algebra +0807.2963 Algebraic Geometry +0808.2657 Commutative Algebra +0901.1625 +0902.1143 Algebraic Geometry +0906.1105 Commutative Algebra +0907.1232 Commutative Algebra +0911.3539 Number Theory +1001.5287 Soft Condensed Matter +1001.5289 Physics and Society +1001.5292 Cell Behavior +1001.5295 Soft Condensed Matter +1001.5468 Soft Condensed Matter +1003.1659 Algebraic Geometry +1005.1248 Geometric Topology +1005.1984 Algebraic Geometry +1010.1205 Statistical Mechanics +1010.1883 Algebraic Geometry +1012.1032 Geometric Topology +1101.1442 Data Analysis, Statistics and Probability +1101.4379 Commutative Algebra +1106.4029 Commutative Algebra +1107.2984 Information Theory +1107.3359 Commutative Algebra +1111.2847 +1111.5837 Probability +1112.4956 Commutative Algebra +1201.4734 Theory +1202.6345 Physics and Society +1204.1055 Theory +1207.1883 Algebraic Geometry +1207.2364 K-Theory and Homology +1208.5141 Analysis of PDEs +1209.2078 Functional Analysis +1210.0444 Probability +1210.2214 Commutative Algebra +1211.0319 Analysis of PDEs +1211.0898 Optimization and Control +1211.6791 Geometric Topology +1212.6826 Quantum Gases +1301.1973 Theory +1304.3333 Number Theory +1304.7206 Dynamical Systems +1305.0365 Algebraic Geometry +1305.1551 Soft Condensed Matter +1305.3235 Statistics Theory +1305.6749 Quantum Gases +1306.3773 Category Theory +1306.5806 Statistics Theory +1307.6412 Analysis of PDEs +1308.4915 Optimization and Control +1310.6763 Theory +1311.3161 +1311.4269 Materials Science +1312.4291 Instrumentation and Methods for Astrophysics +1312.7794 Information Theory +1312.7845 Numerical Analysis +1401.7667 Phenomenology +1402.0240 Data Structures and Algorithms +1402.1292 Algebraic Geometry +1403.1037 Pattern Formation and Solitons +1403.3181 Probability +1403.3630 Number Theory +1403.3926 Dynamical Systems +1403.4185 Quantum Gases +1403.4800 +1403.5318 Pattern Formation and Solitons +1403.5959 Pattern Formation and Solitons +1404.3780 Category Theory +1404.4078 Information Theory +1404.7713 Classical Analysis and ODEs +1405.4560 Logic in Computer Science +1405.4944 Differential Geometry +1406.3009 +1406.5364 Theory +1406.6304 Networking and Internet Architecture +1406.7471 Materials Science +1407.4005 +1407.4420 Computer Vision and Pattern Recognition +1407.5246 Analysis of PDEs +1408.1556 +1408.4531 +1408.4854 Theory +1409.0993 Number Theory +1409.5191 Computation +1409.6448 Computer Vision and Pattern Recognition +1410.3128 General Finance +1410.3585 Probability +1410.3811 Physics and Society +1410.3851 General Finance +1410.3860 General Finance +1410.3865 General Finance +1410.4866 General Finance +1410.5484 Geophysics +1410.6467 Algebraic Geometry +1410.6658 +1411.0624 Commutative Algebra +1411.0806 Statistical Mechanics +1411.2652 Geometric Topology +1411.3267 Dynamical Systems +1411.4136 +1412.0325 Discrete Mathematics +1412.2647 Probability +1412.3036 Plasma Physics +1412.3371 Analysis of PDEs +1412.5192 +1412.7204 Algebraic Geometry +1501.00707 +1501.02848 Earth and Planetary Astrophysics +1501.06661 Optimization and Control +1501.06821 Dynamical Systems +1502.01339 Astrophysics of Galaxies +1502.03280 Quantum Algebra +1502.03813 Applications +1502.04386 Algebraic Geometry +1502.04460 Number Theory +1502.04462 Number Theory +1502.06248 Analysis of PDEs +1502.06259 Optimization and Control +1503.01768 Strongly Correlated Electrons +1503.02285 Combinatorics +1503.04393 Representation Theory +1503.06705 Analysis of PDEs +1503.07771 Theory +1503.07804 Popular Physics +1503.08586 Risk Management +1504.00302 Computation +1504.01511 Cell Behavior +1504.01785 General Topology +1504.02045 Analysis of PDEs +1504.06390 +1504.06595 Optimization and Control +1504.06745 Statistics Theory +1505.00264 Phenomenology +1505.00900 Pattern Formation and Solitons +1505.02111 Information Theory +1505.04279 Materials Science +1505.04676 Analysis of PDEs +1505.04770 Superconductivity +1505.04957 Theory +1505.06143 Analysis of PDEs +1505.06463 Analysis of PDEs +1506.00626 Optics +1506.02178 Computer Vision and Pattern Recognition +1506.03840 Theory +1506.04459 Combinatorics +1506.05844 +1506.07378 +1506.08861 Phenomenology +1506.08983 Strongly Correlated Electrons +1507.00265 Mesoscale and Nanoscale Physics +1507.01675 Strongly Correlated Electrons +1507.01702 Phenomenology +1507.01815 Theory +1507.03272 Complex Variables +1507.04167 Economics +1507.05065 +1507.05246 Strongly Correlated Electrons +1507.06040 Analysis of PDEs +1507.06052 +1507.06281 Statistical Mechanics +1507.06970 Machine Learning +1507.07190 +1507.08553 Theory +1507.08765 Phenomenology +1508.00218 High Energy Astrophysical Phenomena +1508.00740 +1508.01391 Differential Geometry +1508.01561 Dynamical Systems +1508.01742 Networking and Internet Architecture +1508.02464 Number Theory +1508.04758 Numerical Analysis +1508.05167 Superconductivity +1508.05417 Emerging Technologies +1508.05542 Networking and Internet Architecture +1508.05708 Instrumentation and Detectors +1508.06623 +1508.07570 +1508.07971 Statistical Mechanics +1509.00473 Phenomenology +1509.01058 Statistics Theory +1509.02979 Probability +1509.04112 Logic +1509.04614 Theory +1509.06720 Computer Vision and Pattern Recognition +1509.06965 Functional Analysis +1509.07867 Phenomenology +1509.08766 Analysis of PDEs +1510.00646 Applications +1510.00934 Computation +1510.02732 Materials Science +1510.02740 Group Theory +1510.02744 Quantum Gases +1510.03206 Emerging Technologies +1510.04415 Superconductivity +1510.04725 Mesoscale and Nanoscale Physics +1510.05012 Number Theory +1510.05694 Mesoscale and Nanoscale Physics +1510.06578 Information Theory +1510.06887 Superconductivity +1510.06918 +1510.08283 Analysis of PDEs +1510.08688 +1510.08889 +1510.09020 Theory +1510.09070 Physics Education +1511.00806 Phenomenology +1511.02693 High Energy Astrophysical Phenomena +1511.03336 Mesoscale and Nanoscale Physics +1511.04108 Computation and Language +1511.04610 Representation Theory +1511.05582 High Energy Astrophysical Phenomena +1511.06515 Strongly Correlated Electrons +1511.06721 Representation Theory +1511.06933 Mesoscale and Nanoscale Physics +1511.07387 Materials Science +1511.08050 +1512.01526 Analysis of PDEs +1512.01593 Fluid Dynamics +1512.01980 Cryptography and Security +1512.02005 Networking and Internet Architecture +1512.02444 Materials Science +1512.03707 Number Theory +1512.05962 High Energy Astrophysical Phenomena +1512.06619 Cosmology and Nongalactic Astrophysics +1512.07965 Mesoscale and Nanoscale Physics +1512.08477 +1512.08536 +1512.08684 Mesoscale and Nanoscale Physics +1512.08783 Mesoscale and Nanoscale Physics +1512.08864 Phenomenology +1601.00072 Distributed, Parallel, and Cluster Computing +1601.00320 +1601.00988 Materials Science +1601.01198 Strongly Correlated Electrons +1601.01376 Information Theory +1601.02078 Dynamical Systems +1601.03819 Experiment +1601.05270 Databases +1601.06404 Combinatorics +1601.06860 Computational Physics +1601.07741 Physics and Society +1601.07948 Superconductivity +1601.08015 +1602.00158 Methodology +1602.00759 Solar and Stellar Astrophysics +1602.02313 Materials Science +1602.02507 Quantum Gases +1602.02875 +1602.03200 Populations and Evolution +1602.03941 Group Theory +1602.04232 Populations and Evolution +1602.05089 Superconductivity +1602.06463 Superconductivity +1602.06929 Learning +1602.07163 Combinatorics +1602.07325 Materials Science +1602.07501 Combinatorics +1603.00968 Computation and Language +1603.01004 +1603.01381 High Energy Astrophysical Phenomena +1603.02748 +1603.03183 Computer Vision and Pattern Recognition +1603.03381 Computer Vision and Pattern Recognition +1603.04173 Neurons and Cognition +1603.04408 Computer Vision and Pattern Recognition +1603.04490 Differential Geometry +1603.06083 Multimedia +1603.06112 +1603.06181 +1603.06290 Combinatorics +1603.06300 Dynamical Systems +1603.06552 Combinatorics +1603.06835 Computational Physics +1603.06887 Combinatorics +1603.07318 Mesoscale and Nanoscale Physics +1603.07324 Cosmology and Nongalactic Astrophysics +1603.07377 Statistics Theory +1603.07478 Probability +1603.07503 Mesoscale and Nanoscale Physics +1603.07735 +1603.07999 Subcellular Processes +1603.08012 +1603.08013 Materials Science +1603.08014 Networking and Internet Architecture +1603.08015 Networking and Internet Architecture +1603.08018 Networking and Internet Architecture +1603.08019 Networking and Internet Architecture +1603.08020 Networking and Internet Architecture +1603.08024 Numerical Analysis +1603.08026 Networking and Internet Architecture +1603.08028 Learning +1603.08029 Learning +1603.08030 Materials Science +1603.08034 Numerical Analysis +1603.08035 Machine Learning +1603.08037 Learning +1603.08038 +1603.08039 Computer Vision and Pattern Recognition +1603.08041 Chemical Physics +1603.08044 Representation Theory +1603.08045 Classical Analysis and ODEs +1603.08047 Robotics +1603.08048 Computation and Language +1603.08050 Information Theory +1603.08051 Optics +1603.08055 Classical Analysis and ODEs +1603.08059 Programming Languages +1603.08062 Networking and Internet Architecture +1603.08067 Computer Vision and Pattern Recognition +1603.08070 Computer Vision and Pattern Recognition +1603.08073 Combinatorics +1603.08076 +1603.08077 Geometric Topology +1603.08078 Information Theory +1603.08080 Information Theory +1603.08082 Functional Analysis +1603.08083 Phenomenology +1603.08085 Superconductivity +1603.08086 +1603.08090 Materials Science +1603.08092 Computer Vision and Pattern Recognition +1603.08094 Optimization and Control +1603.08095 Computer Vision and Pattern Recognition +1603.08097 Number Theory +1603.08098 Group Theory +1603.08099 Optimization and Control +1603.08102 Distributed, Parallel, and Cluster Computing +1603.08103 Human-Computer Interaction +1603.08105 Computer Vision and Pattern Recognition +1603.08106 Information Theory +1603.08108 Computer Vision and Pattern Recognition +1603.08111 Information Theory +1603.08112 +1603.08115 Functional Analysis +1603.08116 Computational Geometry +1603.08119 Networking and Internet Architecture +1603.08121 Quantum Algebra +1603.08124 Computer Vision and Pattern Recognition +1603.08125 Probability +1603.08126 Analysis of PDEs +1603.08129 Systems and Control +1603.08132 Information Theory +1603.08135 Numerical Analysis +1603.08137 Optimization and Control +1603.08138 Dynamical Systems +1603.08139 +1603.08141 Earth and Planetary Astrophysics +1603.08142 Economics +1603.08146 Neural and Evolutionary Computing +1603.08151 Data Structures and Algorithms +1603.08153 Combinatorics +1603.08154 Geometric Topology +1603.08155 Computer Vision and Pattern Recognition +1603.08156 Classical Analysis and ODEs +1603.08163 Machine Learning +1603.08164 Materials Science +1603.08169 Portfolio Management +1603.08171 Classical Analysis and ODEs +1603.08174 Social and Information Networks +1603.08175 Combinatorics +1603.08177 Computer Science and Game Theory +1603.08181 Category Theory +1603.08183 +1603.08184 Group Theory +1603.08188 Information Theory +1603.08189 Information Theory +1603.08191 Probability +1603.08192 Functional Analysis +1603.08193 Cosmology and Nongalactic Astrophysics +1603.08194 Classical Analysis and ODEs +1603.08197 Optics +1603.08198 Combinatorics +1603.08200 Instrumentation and Methods for Astrophysics +1603.08201 Metric Geometry +1603.08203 Materials Science +1603.08204 Logic +1603.08205 Analysis of PDEs +1603.08206 Logic in Computer Science +1603.08209 Number Theory +1603.08210 Analysis of PDEs +1603.08211 Phenomenology +1603.08212 Computer Vision and Pattern Recognition +1603.08213 Logic in Computer Science +1603.08215 Soft Condensed Matter +1603.08216 Computational Finance +1603.08219 +1603.08220 Logic +1603.08223 Representation Theory +1603.08225 Dynamical Systems +1603.08227 Number Theory +1603.08230 Number Theory +1603.08231 Optimization and Control +1603.08234 +1603.08239 Materials Science +1603.08240 Computer Vision and Pattern Recognition +1603.08241 +1603.08242 Statistics Theory +1603.08245 Mathematical Finance +1603.08248 Materials Science +1603.08249 Logic +1603.08252 Social and Information Networks +1603.08255 Combinatorics +1603.08257 Astrophysics of Galaxies +1603.08260 Computational Engineering, Finance, and Science +1603.08261 Social and Information Networks +1603.08264 Logic in Computer Science +1603.08268 Classical Physics +1603.08271 Analysis of PDEs +1603.08273 Physics and Society +1603.08279 Probability +1603.08280 Materials Science +1603.08282 +1603.08283 Combinatorics +1603.08284 Geometric Topology +1603.08285 Materials Science +1603.08286 Materials Science +1603.08287 Mesoscale and Nanoscale Physics +1603.08289 Mathematical Finance +1603.08290 Numerical Analysis +1603.08292 Phenomenology +1603.08293 Learning +1603.08295 Statistical Mechanics +1603.08296 Learning +1603.08297 Computers and Society +1603.08300 Cryptography and Security +1603.08304 Cryptography and Security +1603.08305 Cryptography and Security +1603.08307 Cryptography and Security +1603.08309 Cryptography and Security +1603.08311 Economics +1603.08312 Cryptography and Security +1603.08314 Cryptography and Security +1603.08315 Statistics Theory +1603.08316 Number Theory +1603.08320 Materials Science +1603.08321 Computer Vision and Pattern Recognition +1603.08322 Materials Science +1603.08323 Computer Vision and Pattern Recognition +1603.08324 Differential Geometry +1603.08328 Computer Vision and Pattern Recognition +1603.08331 Geometric Topology +1603.08332 Number Theory +1603.08334 History and Philosophy of Physics +1603.08336 Systems and Control +1603.08341 Logic +1603.08342 Learning +1603.08346 Systems and Control +1603.08347 Functional Analysis +1603.08351 Logic +1603.08355 Systems and Control +1603.08357 Computational Physics +1603.08359 Networking and Internet Architecture +1603.08362 Logic +1603.08365 Materials Science +1603.08369 +1603.08371 Software Engineering +1603.08372 Instrumentation and Methods for Astrophysics +1603.08373 Algebraic Geometry +1603.08375 +1603.08379 Cryptography and Security +1603.08383 General Finance +1603.08384 Solar and Stellar Astrophysics +1603.08388 Statistics Theory +1603.08390 Databases +1603.08393 Distributed, Parallel, and Cluster Computing +1603.08397 Tissues and Organs +1603.08398 Combinatorics +1603.08400 Combinatorics +1603.08401 Dynamical Systems +1603.08403 Materials Science +1603.08404 Rings and Algebras +1603.08406 General Physics +1603.08410 Probability +1603.08412 Metric Geometry +1603.08414 Rings and Algebras +1603.08415 Differential Geometry +1603.08417 History and Overview +1603.08418 Geometric Topology +1603.08419 Classical Analysis and ODEs +1603.08420 Number Theory +1603.08421 Group Theory +1603.08424 Algebraic Geometry +1603.08425 General Physics +1603.08426 Rings and Algebras +1603.08427 General Mathematics +1603.08428 Classical Analysis and ODEs +1603.08429 Theory +1603.08430 Computational Complexity +1603.08432 Neurons and Cognition +1603.08433 Group Theory +1603.08434 Experiment +1603.08438 +1603.08439 +1603.08444 Differential Geometry +1603.08446 Rings and Algebras +1603.08450 Geometric Topology +1603.08453 Number Theory +1603.08454 Hardware Architecture +1603.08456 General Mathematics +1603.08460 Statistics Theory +1603.08461 Networking and Internet Architecture +1603.08462 Networking and Internet Architecture +1603.08467 Functional Analysis +1603.08470 Phenomenology +1603.08471 Strongly Correlated Electrons +1603.08472 Algebraic Topology +1603.08474 Computation and Language +1603.08478 Theory +1603.08481 Optics +1603.08482 Machine Learning +1603.08485 Computational Geometry +1603.08486 Computer Vision and Pattern Recognition +1603.08489 Accelerator Physics +1603.08490 Combinatorics +1603.08492 Optics +1603.08493 Number Theory +1603.08494 Spectral Theory +1603.08497 Computer Vision and Pattern Recognition +1603.08498 Rings and Algebras +1603.08499 History and Overview +1603.08500 Combinatorics +1603.08501 General Mathematics +1603.08502 Rings and Algebras +1603.08505 Quantum Gases +1603.08507 Computer Vision and Pattern Recognition +hep-th/0011259 Theory +math/0412303 Number Theory +math/0610441 Commutative Algebra +math/0610649 Commutative Algebra +math/0611284 Algebraic Geometry +math/0702041 Commutative Algebra +math/0702283 Commutative Algebra +math/0702508 Commutative Algebra +math/0703757 Commutative Algebra +1103.1560 Dynamical Systems +1105.4447 Strongly Correlated Electrons +1107.3668 Algebraic Geometry +1206.2529 Algebraic Geometry +1206.2535 Algebraic Geometry +1207.2423 Dynamical Systems +1209.1285 Differential Geometry +1209.5692 Probability +1210.2157 Dynamical Systems +1211.2627 Computational Complexity +1212.0347 Combinatorics +1212.2059 Phenomenology +1303.0727 Probability +1303.5606 Materials Science +1304.7419 Materials Science +1306.3826 Classical Analysis and ODEs +1308.2871 Dynamical Systems +1308.6556 Algebraic Geometry +1310.4831 +1311.0316 Probability +1311.2758 Dynamical Systems +1312.1965 Geometric Topology +1402.0030 Learning +1403.0604 Chemical Physics +1403.7287 +1404.0750 +1405.1297 Machine Learning +1407.6329 Combinatorics +1409.3355 Metric Geometry +1409.4844 General Topology +1409.6753 Theory +1501.03332 +1502.00552 Methodology +1502.00661 Adaptation and Self-Organizing Systems +1503.00527 Geometric Topology +1503.02618 +1503.04213 +1503.04936 Experiment +1503.06034 Algebraic Geometry +1504.03767 Optics +1504.05169 Phenomenology +1504.05843 Computer Vision and Pattern Recognition +1504.06271 Phenomenology +1505.00189 Instrumentation and Detectors +1505.02023 Methodology +1505.03462 Group Theory +1505.06044 Theory +1506.01556 Optimization and Control +1507.00727 Theory +1507.02811 Commutative Algebra +1507.02991 Statistical Mechanics +1508.00437 Analysis of PDEs +1508.00595 Phenomenology +1508.01757 +1508.02779 +1508.05890 Numerical Analysis +1508.06480 Materials Science +1508.07439 +1508.07747 +1509.03281 Machine Learning +1509.03552 Theory +1509.03783 +1509.05349 Mesoscale and Nanoscale Physics +1510.00393 Astrophysics of Galaxies +1510.02125 Computation and Language +1510.03562 +1510.05898 +1510.06708 Classical Physics +1510.06722 +1510.07709 +1510.07924 Complex Variables +1511.01431 High Energy Astrophysical Phenomena +1511.03321 +1511.04613 Materials Science +1511.04899 Superconductivity +1511.06482 Molecular Networks +1511.06709 Computation and Language +1511.08300 Complex Variables +1512.00597 Systems and Control +1512.00956 Quantitative Methods +1512.03259 Pricing of Securities +1512.04011 Learning +1512.04257 High Energy Astrophysical Phenomena +1512.04454 Statistical Mechanics +1512.04526 High Energy Astrophysical Phenomena +1512.06204 Representation Theory +1512.06272 Combinatorics +1512.07210 +1512.08198 +1512.09083 Mesoscale and Nanoscale Physics +1601.00185 +1601.00628 Quantum Gases +1601.02479 Representation Theory +1601.04077 Materials Science +1601.04936 Chaotic Dynamics +1601.06565 Experiment +1601.06918 Quantum Gases +1601.07441 Differential Geometry +1602.00968 Superconductivity +1602.01366 Databases +1602.03577 Chemical Physics +1602.04563 Materials Science +1602.04781 Computational Complexity +1602.05205 Learning +1602.06410 Machine Learning +1602.07576 Learning +1602.07905 Learning +1602.08269 Statistical Mechanics +1602.08287 High Energy Astrophysical Phenomena +1602.09013 Machine Learning +1603.00055 Materials Science +1603.00263 Instrumentation and Methods for Astrophysics +1603.00524 High Energy Astrophysical Phenomena +1603.01279 Mesoscale and Nanoscale Physics +1603.02463 Disordered Systems and Neural Networks +1603.04453 Superconductivity +1603.05984 Astrophysics of Galaxies +1603.09260 Learning +1603.09282 Solar and Stellar Astrophysics +1604.00943 Mesoscale and Nanoscale Physics +1604.04393 Computer Vision and Pattern Recognition +1604.04718 +1604.05804 Computational Physics +1604.07089 Number Theory +1604.08497 Materials Science +1605.00482 Computation and Language +1605.00611 Phenomenology +1605.02864 Quantum Gases +1605.03260 Theory +1605.03539 +1605.04507 Dynamical Systems +1605.04521 Computational Physics +1605.04650 Theory +1605.05257 Spectral Theory +1605.06342 Fluid Dynamics +1605.06528 Theory +1605.07493 Optimization and Control +1605.07673 Other Computer Science +1605.08034 Information Theory +1605.08251 Earth and Planetary Astrophysics +1605.08440 +1605.08607 Phenomenology +1605.08832 +1605.09240 Differential Geometry +1605.09252 Algebraic Topology +1605.09317 Chemical Physics +1605.09508 Number Theory +1606.00008 Astrophysics of Galaxies +1606.00105 +1606.00131 Dynamical Systems +1606.00144 Neurons and Cognition +1606.00224 Statistical Mechanics +1606.00277 Geometric Topology +1606.00368 Computational Physics +1606.00482 Number Theory +1606.00513 Theory +1606.00650 Mesoscale and Nanoscale Physics +1606.00700 Classical Analysis and ODEs +1606.00842 Cosmology and Nongalactic Astrophysics +1606.00847 +1606.00856 Machine Learning +1606.00857 Superconductivity +1606.00858 Probability +1606.00862 Statistical Mechanics +1606.00864 Other Computer Science +1606.00867 Astrophysics of Galaxies +1606.00868 Learning +1606.00870 Combinatorics +1606.00874 Computers and Society +1606.00875 Computers and Society +1606.00876 Computers and Society +1606.00877 Computers and Society +1606.00878 Computers and Society +1606.00880 Computers and Society +1606.00881 Computers and Society +1606.00882 Computers and Society +1606.00883 Computers and Society +1606.00884 Computers and Society +1606.00885 Computers and Society +1606.00886 Computers and Society +1606.00887 Computers and Society +1606.00888 Computers and Society +1606.00889 Computers and Society +1606.00890 Computers and Society +1606.00891 Computers and Society +1606.00892 Computers and Society +1606.00893 Computers and Society +1606.00894 Computers and Society +1606.00898 Number Theory +1606.00900 Logic +1606.00907 Computational Physics +1606.00908 Computer Science and Game Theory +1606.00913 Mesoscale and Nanoscale Physics +1606.00917 Learning +1606.00927 Optimization and Control +1606.00930 Learning +1606.00933 Information Theory +1606.00934 Plasma Physics +1606.00935 Commutative Algebra +1606.00936 Strongly Correlated Electrons +1606.00937 Strongly Correlated Electrons +1606.00938 Representation Theory +1606.00939 Atomic Physics +1606.00941 Systems and Control +1606.00943 Representation Theory +1606.00944 Statistical Mechanics +1606.00946 Phenomenology +1606.00947 Phenomenology +1606.00948 Combinatorics +1606.00950 Social and Information Networks +1606.00952 Information Theory +1606.00953 +1606.00954 Optics +1606.00956 +1606.00957 Optimization and Control +1606.00958 Representation Theory +1606.00959 Analysis of PDEs +1606.00961 Representation Theory +1606.00962 +1606.00964 Plasma Physics +1606.00968 Learning +1606.00972 Machine Learning +1606.00974 Discrete Mathematics +1606.00976 Statistics Theory +1606.00978 +1606.00979 Information Retrieval +1606.00981 Other Computer Science +1606.00983 Statistics Theory +1606.00984 Statistics Theory +1606.00985 Learning +1606.00989 Materials Science +1606.00993 Instrumentation and Detectors +1606.00994 Networking and Internet Architecture +1606.00995 Numerical Analysis +1606.00996 Data Structures and Algorithms +1606.00997 Mesoscale and Nanoscale Physics +1606.01001 Computer Vision and Pattern Recognition +1606.01003 Solar and Stellar Astrophysics +1606.01004 Statistics Theory +1606.01005 Optimization and Control +1606.01009 Methodology +1606.01010 Cryptography and Security +1606.01012 Superconductivity +1606.01013 General Topology +1606.01014 Logic in Computer Science +1606.01015 Artificial Intelligence +1606.01017 Neurons and Cognition +1606.01019 Functional Analysis +1606.01020 Numerical Analysis +1606.01023 Analysis of PDEs +1606.01024 Functional Analysis +1606.01025 Statistics Theory +1606.01026 Combinatorics +1606.01028 Optimization and Control +1606.01029 Number Theory +1606.01035 Analysis of PDEs +1606.01036 Differential Geometry +1606.01037 Hardware Architecture +1606.01038 Networking and Internet Architecture +1606.01042 Learning +1606.01045 Cryptography and Security +1606.01048 Numerical Analysis +1606.01049 Astrophysics of Galaxies +1606.01051 Materials Science +1606.01053 Rings and Algebras +1606.01054 Analysis of PDEs +1606.01055 Materials Science +1606.01056 Numerical Analysis +1606.01057 Optics +1606.01062 Probability +1606.01063 Functional Analysis +1606.01064 Functional Analysis +1606.01066 Solar and Stellar Astrophysics +1606.01067 Quantum Algebra +1606.01071 Functional Analysis +1606.01072 Probability +1606.01073 High Energy Astrophysical Phenomena +1606.01074 Space Physics +1606.01075 Biological Physics +1606.01076 Space Physics +1606.01080 Analysis of PDEs +1606.01081 Programming Languages +1606.01085 Space Physics +1606.01087 Superconductivity +1606.01093 Computer Vision and Pattern Recognition +1606.01095 High Energy Astrophysical Phenomena +1606.01096 Geometric Topology +1606.01099 Disordered Systems and Neural Networks +1606.01100 Computer Vision and Pattern Recognition +1606.01101 +1606.01105 Earth and Planetary Astrophysics +1606.01112 Differential Geometry +1606.01113 Artificial Intelligence +1606.01116 Artificial Intelligence +1606.01117 Statistics Theory +1606.01120 Software Engineering +1606.01129 Differential Geometry +1606.01130 Disordered Systems and Neural Networks +1606.01131 Number Theory +1606.01137 Dynamical Systems +1606.01140 Symbolic Computation +1606.01145 +1606.01147 +1606.01148 Logic in Computer Science +1606.01153 Probability +1606.01155 Mesoscale and Nanoscale Physics +1606.01157 Differential Geometry +1606.01159 Analysis of PDEs +1606.01160 Machine Learning +1606.01161 Computation and Language +1606.01163 Numerical Analysis +1606.01167 Computer Vision and Pattern Recognition +1606.01171 General Mathematics +1606.01172 Computational Complexity +1606.01174 Materials Science +1606.01175 Learning +1606.01176 General Physics +1606.01177 Other Computer Science +1606.01178 Computer Vision and Pattern Recognition +1606.01179 Classical Analysis and ODEs +1606.01180 Optimization and Control +1606.01182 Logic +1606.01183 Other Statistics +1606.01187 Materials Science +1606.01188 Classical Analysis and ODEs +1606.01190 Information Theory +1606.01199 Formal Languages and Automata Theory +1606.01202 Statistical Mechanics +1606.01204 Combinatorics +1606.01205 Algebraic Topology +1606.01208 Physics and Society +1606.01211 Materials Science +1606.01219 Computation and Language +1606.01220 Instrumentation and Detectors +1606.01225 Phenomenology +1606.01227 Dynamical Systems +1606.01228 Lattice +1606.01231 Phenomenology +1606.01232 Probability +1606.01234 Solar and Stellar Astrophysics +1606.01235 Strongly Correlated Electrons +1606.01236 Solar and Stellar Astrophysics +1606.01237 Biological Physics +1606.01239 Neural and Evolutionary Computing +1606.01241 Mesoscale and Nanoscale Physics +0904.4834 Algebraic Geometry +0907.3228 Physics and Society +1007.3576 Representation Theory +1007.4398 Geometric Topology +1010.4298 Number Theory +1012.0012 Data Structures and Algorithms +1103.4957 General Topology +1111.6179 Probability +1112.0792 Rings and Algebras +1112.3160 Probability +1205.4697 Methodology +1205.5456 Plasma Physics +1206.5603 Algebraic Topology +1208.2586 Algebraic Geometry +1208.5170 Combinatorics +1209.0365 +1210.5456 Probability +1210.6958 Methodology +1211.6912 Phenomenology +1212.3362 Mesoscale and Nanoscale Physics +1301.1439 Populations and Evolution +1302.1409 Networking and Internet Architecture +1302.2206 Networking and Internet Architecture +1303.2456 Probability +1305.2620 Differential Geometry +1307.4229 Combinatorics +1307.5492 Phenomenology +1307.5628 Algebraic Geometry +1307.7364 Data Structures and Algorithms +1308.0962 Populations and Evolution +1309.2029 Classical Analysis and ODEs +1310.1632 Instrumentation and Methods for Astrophysics +1310.5162 Dynamical Systems +1310.5607 Earth and Planetary Astrophysics +1310.5924 Differential Geometry +1311.0244 Systems and Control +1312.3215 Metric Geometry +1312.4817 Probability +1312.7442 Multimedia +1402.3188 Probability +1402.7178 Algebraic Topology +1403.3604 Algebraic Geometry +1404.4198 Materials Science +1404.5285 High Energy Astrophysical Phenomena +1404.5887 Combinatorics +1404.6982 Representation Theory +1405.0981 Differential Geometry +1405.2023 Mathematical Finance +1405.7138 General Physics +1406.1103 Fluid Dynamics +1406.6168 Combinatorics +1406.6826 Populations and Evolution +1407.1627 Populations and Evolution +1407.5876 Other Condensed Matter +1407.8484 Probability +1408.0015 High Energy Astrophysical Phenomena +1408.0057 Strongly Correlated Electrons +1408.0527 +1408.1156 Statistics Theory +1408.2183 Materials Science +1408.7062 +1409.0610 Information Theory +1409.1396 Number Theory +1409.1780 Number Theory +1409.3996 Mesoscale and Nanoscale Physics +1409.6801 Phenomenology +1409.8029 Physics and Society +1409.8150 Statistics Theory +1410.5477 Optimization and Control +1410.5841 Quantum Gases +1411.1785 Theory +1411.5294 Algebraic Geometry +1411.6927 Computation +1411.7921 Operator Algebras +1412.0310 Geometric Topology +1412.6292 Numerical Analysis +1412.6671 Cosmology and Nongalactic Astrophysics +1501.00388 Statistical Mechanics +1501.02106 Populations and Evolution +1501.04999 Solar and Stellar Astrophysics +1501.05371 Information Theory +1501.07845 Differential Geometry +1502.00043 Statistics Theory +1502.00204 +1502.00598 Learning +1502.01345 High Energy Astrophysical Phenomena +1502.01654 Commutative Algebra +1502.02416 Algebraic Geometry +1502.02623 Combinatorics +1502.03000 +1502.03403 +1502.04195 Solar and Stellar Astrophysics +1502.04918 Computational Geometry +1502.05424 K-Theory and Homology +1502.05576 Functional Analysis +1502.06995 Astrophysics of Galaxies +1502.07426 High Energy Astrophysical Phenomena +1503.00794 Complex Variables +1503.01707 Databases +1503.01739 Solar and Stellar Astrophysics +1503.03357 Combinatorics +1503.05937 +1504.00969 Phenomenology +1504.01343 Representation Theory +1504.03763 Computational Geometry +1504.04463 Phenomenology +1504.05545 Lattice +1504.05905 Data Structures and Algorithms +1504.06256 +1504.06597 +1504.07170 Earth and Planetary Astrophysics +1504.07194 Astrophysics of Galaxies +1504.07237 Phenomenology +1504.07868 Instrumentation and Detectors +1504.08115 Superconductivity +1505.00204 Combinatorics +1505.00521 Learning +1505.02670 Superconductivity +1505.03146 Quantum Gases +1505.03371 Astrophysics of Galaxies +1505.03433 Combinatorics +1505.03523 Astrophysics of Galaxies +1505.03781 Phenomenology +1505.04764 Probability +1505.04991 Mesoscale and Nanoscale Physics +1505.05503 Cosmology and Nongalactic Astrophysics +1505.06122 Materials Science +1505.06447 Superconductivity +1505.06962 Solar and Stellar Astrophysics +1505.07887 Cosmology and Nongalactic Astrophysics +1506.00032 Mesoscale and Nanoscale Physics +1506.01816 +1506.01823 Disordered Systems and Neural Networks +1506.03592 Quantum Gases +1506.03868 Solar and Stellar Astrophysics +1506.04453 Probability +1506.04454 Phenomenology +1506.04832 Cryptography and Security +1506.05526 Theory +1506.05724 +1506.05736 High Energy Astrophysical Phenomena +1506.05789 Theory +1506.05984 Astrophysics of Galaxies +1506.06485 +1506.06807 Number Theory +1506.07025 +1506.07380 +1506.07406 Algebraic Geometry +1506.07431 Analysis of PDEs +1506.07771 Cosmology and Nongalactic Astrophysics +1506.08473 Learning +1506.08722 Soft Condensed Matter +1507.00030 Quantum Gases +1507.00769 Astrophysics of Galaxies +1507.00771 Astrophysics of Galaxies +1507.01229 Theory +1507.01686 +1507.02149 Category Theory +1507.02291 Astrophysics of Galaxies +1507.02462 +1507.04357 Phenomenology +1507.04463 Mesoscale and Nanoscale Physics +1507.04616 Soft Condensed Matter +1507.04838 Combinatorics +1507.05300 Combinatorics +1507.06014 High Energy Astrophysical Phenomena +1507.06082 +1507.06107 Quantum Algebra +1507.06129 High Energy Astrophysical Phenomena +1507.06465 Solar and Stellar Astrophysics +1507.06686 Space Physics +1507.07276 Strongly Correlated Electrons +1507.07730 +1507.07734 Optics +1507.08026 Statistical Mechanics +1507.08297 Phenomenology +1508.00368 +1508.00372 Phenomenology +1508.00409 Functional Analysis +1508.00566 Cosmology and Nongalactic Astrophysics +1508.00581 Phenomenology +1508.00589 Phenomenology +1508.01046 Phenomenology +1508.01524 Astrophysics of Galaxies +1508.01626 Theory +1508.01900 Complex Variables +1508.02328 Plasma Physics +1508.02707 Instrumentation and Detectors +1508.02763 Earth and Planetary Astrophysics +1508.02772 Mesoscale and Nanoscale Physics +1508.02791 Earth and Planetary Astrophysics +1508.02948 High Energy Astrophysical Phenomena +1508.02961 Mesoscale and Nanoscale Physics +1508.03920 Phenomenology +1508.03950 Digital Libraries +1508.04726 Information Theory +1508.05257 Mesoscale and Nanoscale Physics +1508.05283 Theory +1508.05334 +1508.05426 High Energy Astrophysical Phenomena +1508.05614 Theory +1508.05773 Phenomenology +1508.05829 Strongly Correlated Electrons +1508.06060 Atomic Physics +1508.06755 +1508.06959 Strongly Correlated Electrons +1508.07161 Phenomenology +1508.07348 High Energy Astrophysical Phenomena +1508.07629 Phenomenology +1508.07711 Phenomenology +1508.07882 Instrumentation and Methods for Astrophysics +1508.07938 Rings and Algebras +1508.07946 Materials Science +1509.00022 Theory +1509.00026 Phenomenology +1509.00039 Phenomenology +1509.00107 Social and Information Networks +1509.00122 Mesoscale and Nanoscale Physics +1509.00371 Phenomenology +1509.00417 Earth and Planetary Astrophysics +1509.00742 Cosmology and Nongalactic Astrophysics +1509.01027 Classical Analysis and ODEs +1509.01086 +1509.01362 Earth and Planetary Astrophysics +1509.01461 Strongly Correlated Electrons +1509.01530 Soft Condensed Matter +1509.01814 +1509.02056 Strongly Correlated Electrons +1509.02558 Materials Science +1509.03298 +1509.03357 Physics and Society +1509.03636 Astrophysics of Galaxies +1509.03921 Mesoscale and Nanoscale Physics +1509.03980 +1509.04056 Theory +1509.04129 +1509.04163 +1509.04275 Cosmology and Nongalactic Astrophysics +1509.04822 High Energy Astrophysical Phenomena +1509.05978 Theory +1509.06003 Computer Vision and Pattern Recognition +1509.06366 +1509.06378 Phenomenology +1509.07037 Astrophysics of Galaxies +1509.07090 Phenomenology +1509.07139 +1509.07247 Astrophysics of Galaxies +1509.07359 +1509.07410 Phenomenology +1509.07499 Materials Science +1509.07783 Strongly Correlated Electrons +1509.08297 +1509.08935 Astrophysics of Galaxies +1509.09247 Fluid Dynamics +1510.00368 Atomic Physics +1510.00557 Cosmology and Nongalactic Astrophysics +1510.00724 Phenomenology +1510.00829 Phenomenology +1510.00975 Strongly Correlated Electrons +1510.00978 Theory +1510.01081 Mesoscale and Nanoscale Physics +1510.01404 Cosmology and Nongalactic Astrophysics +1510.01475 Statistical Mechanics +1510.01615 Mesoscale and Nanoscale Physics +1510.01682 Atomic Physics +1510.01922 Astrophysics of Galaxies +1510.02317 Experiment +1510.02341 Solar and Stellar Astrophysics +1510.02447 Astrophysics of Galaxies +1510.02496 Strongly Correlated Electrons +1510.03168 High Energy Astrophysical Phenomena +1510.03563 Phenomenology +1510.04202 Cosmology and Nongalactic Astrophysics +1510.04255 Strongly Correlated Electrons +1510.04285 Mesoscale and Nanoscale Physics +1510.04348 Number Theory +1510.04408 Quantum Algebra +1510.04438 Quantum Gases +1510.04606 Earth and Planetary Astrophysics +1510.05052 Mesoscale and Nanoscale Physics +1510.05313 +1510.05972 Statistical Mechanics +1510.06066 Astrophysics of Galaxies +1510.06114 Solar and Stellar Astrophysics +1510.06370 Materials Science +1510.06446 Earth and Planetary Astrophysics +1510.06679 Atomic Physics +1510.06737 Astrophysics of Galaxies +1510.07047 Cosmology and Nongalactic Astrophysics +1510.07210 Analysis of PDEs +1510.07359 +1510.07375 Statistical Mechanics +1510.07381 +1510.07496 Theory +1510.07524 Solar and Stellar Astrophysics +1510.07848 +1510.07870 Solar and Stellar Astrophysics +1510.08070 High Energy Astrophysical Phenomena +1510.08087 Solar and Stellar Astrophysics +1510.08255 Solar and Stellar Astrophysics +1510.08273 Solar and Stellar Astrophysics +1510.08284 Experiment +1510.08329 Solar and Stellar Astrophysics +1510.08374 Solar and Stellar Astrophysics +1510.08445 Cosmology and Nongalactic Astrophysics +1510.08515 Mesoscale and Nanoscale Physics +1510.08527 Phenomenology +1510.08554 Cryptography and Security +1510.08709 +1510.08890 Earth and Planetary Astrophysics +1510.08996 Mesoscale and Nanoscale Physics +1511.00469 +1511.00584 Astrophysics of Galaxies +1511.00768 Earth and Planetary Astrophysics +1511.00889 Astrophysics of Galaxies +1511.01519 Astrophysics of Galaxies +1511.02045 Mesoscale and Nanoscale Physics +1511.02159 Solar and Stellar Astrophysics +1511.02710 Astrophysics of Galaxies +1511.03558 Solar and Stellar Astrophysics +1511.03941 Earth and Planetary Astrophysics +1511.04013 Theory +1511.04079 Astrophysics of Galaxies +1511.04195 Cosmology and Nongalactic Astrophysics +1511.04469 Astrophysics of Galaxies +1511.04699 Cosmology and Nongalactic Astrophysics +1511.04909 Astrophysics of Galaxies +1511.04998 Earth and Planetary Astrophysics +1511.05171 Earth and Planetary Astrophysics +1511.05213 Solar and Stellar Astrophysics +1511.05325 Solar and Stellar Astrophysics +1511.05581 +1511.05621 High Energy Astrophysical Phenomena +1511.05884 Astrophysics of Galaxies +1511.05919 Earth and Planetary Astrophysics +1511.06006 Astrophysics of Galaxies +1511.06047 Astrophysics of Galaxies +1511.06115 Disordered Systems and Neural Networks +1511.06280 Mesoscale and Nanoscale Physics +1511.06387 Astrophysics of Galaxies +1511.06763 Earth and Planetary Astrophysics +1511.06804 Mesoscale and Nanoscale Physics +1511.06819 Solar and Stellar Astrophysics +1511.06947 Solar and Stellar Astrophysics +1511.07145 Solar and Stellar Astrophysics +1511.07383 Astrophysics of Galaxies +1511.07415 Exactly Solvable and Integrable Systems +1511.07432 Astrophysics of Galaxies +1511.07541 Combinatorics +1511.07738 High Energy Astrophysical Phenomena +1511.07973 Solar and Stellar Astrophysics +1511.08079 Strongly Correlated Electrons +1511.08215 Astrophysics of Galaxies +1511.08627 Statistics Theory +1511.08884 Solar and Stellar Astrophysics +1511.09271 Earth and Planetary Astrophysics +1511.09372 Solar and Stellar Astrophysics +1512.00024 Astrophysics of Galaxies +1512.00044 High Energy Astrophysical Phenomena +1512.00065 Solar and Stellar Astrophysics +1512.00463 High Energy Astrophysical Phenomena +1512.00469 Astrophysics of Galaxies +1512.00662 High Energy Astrophysical Phenomena +1512.00740 +1512.00744 Plasma Physics +1512.02291 +1512.02531 Optics +1512.02785 High Energy Astrophysical Phenomena +1512.02821 Earth and Planetary Astrophysics +1512.03816 Astrophysics of Galaxies +1512.04077 Computer Vision and Pattern Recognition +1512.04157 Phenomenology +1512.04529 Solar and Stellar Astrophysics +1512.04543 Astrophysics of Galaxies +1512.04661 Astrophysics of Galaxies +1512.04949 Solar and Stellar Astrophysics +1512.04957 Astrophysics of Galaxies +1512.05037 High Energy Astrophysical Phenomena +1512.05231 Superconductivity +1512.05510 Statistical Mechanics +1512.05624 Cosmology and Nongalactic Astrophysics +1512.05685 Databases +1512.05828 Analysis of PDEs +1512.05836 Solar and Stellar Astrophysics +1512.05888 Astrophysics of Galaxies +1512.05891 Optimization and Control +1512.06078 Classical Physics +1512.06090 Solar and Stellar Astrophysics +1512.06269 Atomic Physics +1512.06321 Operator Algebras +1512.06323 Rings and Algebras +1512.06592 Soft Condensed Matter +1512.06662 K-Theory and Homology +1512.07227 +1512.08155 Combinatorics +1512.08561 Theory +1601.00123 Instrumentation and Detectors +1601.00186 Combinatorics +1601.00464 Mesoscale and Nanoscale Physics +1601.00763 Cryptography and Security +1601.01556 Software Engineering +1601.01843 Combinatorics +1601.01868 Mesoscale and Nanoscale Physics +1601.01957 General Physics +1601.02320 Information Theory +1601.02328 Information Theory +1601.02393 K-Theory and Homology +1601.02451 +1601.02452 Software Engineering +1601.02551 High Energy Astrophysical Phenomena +1601.02600 Functional Analysis +1601.02601 Combinatorics +1601.02603 Learning +1601.02604 Representation Theory +1601.02605 Computers and Society +1601.02627 +1601.02628 High Energy Astrophysical Phenomena +1601.02631 Solar and Stellar Astrophysics +1601.02639 Theory +1601.02640 Numerical Analysis +1601.02641 Mesoscale and Nanoscale Physics +1601.02645 Numerical Analysis +1601.02646 Astrophysics of Galaxies +1601.02647 General Physics +1601.02648 General Physics +1601.02650 Databases +1601.02653 Astrophysics of Galaxies +1601.02656 Computational Physics +1601.02662 General Mathematics +1601.02668 Materials Science +1601.02676 Phenomenology +1601.02678 Phenomenology +1601.02679 Computational Physics +1601.02680 Learning +1601.02681 Soft Condensed Matter +1601.02683 Mathematical Software +1601.02684 Phenomenology +1601.02685 Mesoscale and Nanoscale Physics +1601.02686 Superconductivity +1601.02687 Distributed, Parallel, and Cluster Computing +1601.02693 Cosmology and Nongalactic Astrophysics +1601.02695 Probability +1601.02697 Computational Complexity +1601.02698 Computation +1601.02701 Earth and Planetary Astrophysics +1601.02703 Statistical Mechanics +1601.02705 Robotics +1601.02709 Neurons and Cognition +1601.02712 Data Structures and Algorithms +1601.02717 Numerical Analysis +1601.02719 History and Overview +1601.02723 Mesoscale and Nanoscale Physics +1601.02724 Analysis of PDEs +1601.02730 Optimization and Control +1601.02731 Representation Theory +1601.02733 Learning +1601.02737 Representation Theory +1601.02738 Materials Science +1601.02739 Statistics Theory +1601.02741 +1601.02742 Logic in Computer Science +1601.02743 Algebraic Geometry +1601.02744 General Topology +1601.02745 Artificial Intelligence +1601.02748 Quantitative Methods +1601.02750 +1601.02751 Commutative Algebra +1601.02753 Superconductivity +1601.02754 Optimization and Control +1601.02755 Statistical Mechanics +1601.02756 Symbolic Computation +1601.02762 Statistics Theory +1601.02763 Information Theory +1601.02766 Commutative Algebra +1601.02768 Human-Computer Interaction +1601.02770 Biological Physics +1601.02771 Number Theory +1601.02772 Solar and Stellar Astrophysics +1601.02773 Numerical Analysis +1601.02778 Robotics +1601.02779 Optics +1601.02781 Distributed, Parallel, and Cluster Computing +1601.02785 Mesoscale and Nanoscale Physics +1601.02786 +1601.02788 Information Theory +1601.02789 Computation and Language +1601.02790 +1601.02791 Probability +1601.02798 Statistics Theory +1601.02799 +1601.02800 Distributed, Parallel, and Cluster Computing +1601.02803 Analysis of PDEs +1601.02806 Applications +1601.02810 Number Theory +1601.02812 Analysis of PDEs +1601.02814 Earth and Planetary Astrophysics +1601.02815 Phenomenology +1601.02818 Combinatorics +1601.02819 Analysis of PDEs +1601.02820 Methodology +1601.02821 Optics +1601.02822 Quantitative Methods +1601.02825 Symplectic Geometry +1601.02826 Dynamical Systems +1601.02829 +1601.02830 Solar and Stellar Astrophysics +1601.02831 Optimization and Control +1601.02834 Differential Geometry +1601.02840 Analysis of PDEs +1601.02842 Rings and Algebras +1601.02845 Analysis of PDEs +1601.02849 Solar and Stellar Astrophysics +1601.02852 Computer Vision and Pattern Recognition +1601.02854 Phenomenology +1601.02859 Differential Geometry +1601.02862 Classical Analysis and ODEs +1601.02864 Combinatorics +1601.02865 Artificial Intelligence +1601.02867 Data Structures and Algorithms +1601.02869 Statistics Theory +1601.02881 Soft Condensed Matter +1601.02882 +1601.02885 Optimization and Control +1601.02888 Probability +1601.02889 High Energy Astrophysical Phenomena +1601.02890 General Mathematics +1601.02893 +1601.02898 Probability +1601.02903 Analysis of PDEs +1601.02904 Information Retrieval +1601.02906 +1601.02908 Plasma Physics +1601.02912 Numerical Analysis +1601.02913 Multimedia +1601.02914 Combinatorics +1601.02915 Logic +1601.02923 Physics and Society +1601.02924 Adaptation and Self-Organizing Systems +1601.02927 Digital Libraries +1601.02928 Combinatorics +1601.02929 Lattice +1601.02931 +1601.02938 +1601.02939 Data Structures and Algorithms +1601.02941 Operator Algebras +1601.02942 Numerical Analysis +1601.02944 Probability +1601.02947 Systems and Control +1601.02948 Neurons and Cognition +1601.02950 Cosmology and Nongalactic Astrophysics +1601.02952 Statistical Mechanics +1601.02955 Mesoscale and Nanoscale Physics +1601.02958 Metric Geometry +1601.02959 Differential Geometry +1601.02960 Information Theory +1601.02961 Logic +1601.02966 Geophysics +1601.02968 Algebraic Geometry +1601.02969 Geophysics +1601.02970 Computer Vision and Pattern Recognition +1601.02975 Computers and Society +1601.02980 Instrumentation and Methods for Astrophysics +1601.02981 Differential Geometry +1601.02982 Physics Education +1601.02984 Instrumentation and Detectors +1601.02989 Complex Variables +1601.02991 Probability +1601.02992 Dynamical Systems +1601.02996 Combinatorics +1601.02997 Combinatorics +1601.02999 Materials Science +1601.03002 Plasma Physics +1601.03003 Combinatorics +1601.03004 Other Computer Science +1601.03006 +1601.03012 Number Theory +1601.03014 Complex Variables +1601.03015 Risk Management +1601.03016 Phenomenology +1601.03018 Fluid Dynamics +1601.03020 Materials Science +1601.03027 Cryptography and Security +1601.03032 +astro-ph/0010007 +astro-ph/0101227 +astro-ph/0104041 +astro-ph/0104157 +astro-ph/0105293 +astro-ph/0105404 +astro-ph/0105499 +astro-ph/0106029 +astro-ph/0106039 +astro-ph/0106127 +astro-ph/0106130 +astro-ph/0106216 +astro-ph/0106234 +astro-ph/0106275 +astro-ph/0106337 +astro-ph/0106442 +astro-ph/0106545 +astro-ph/0108286 +astro-ph/0108290 +astro-ph/0108291 +astro-ph/0108454 +astro-ph/0108468 +astro-ph/0110142 +astro-ph/9608171 +astro-ph/9608191 +astro-ph/9609076 +astro-ph/9611104 +astro-ph/9611206 +astro-ph/9612055 +astro-ph/9612166 +astro-ph/9701078 +astro-ph/9701246 +astro-ph/9702024 +astro-ph/9702100 +astro-ph/9703083 +astro-ph/9703100 +astro-ph/9703129 +astro-ph/9704128 +astro-ph/9704153 +astro-ph/9704199 +astro-ph/9705029 +astro-ph/9705079 +astro-ph/9706174 +astro-ph/9706246 +astro-ph/9707046 +astro-ph/9707082 +astro-ph/9707225 +astro-ph/9707314 +astro-ph/9707317 +astro-ph/9708005 +astro-ph/9708122 +astro-ph/9708127 +astro-ph/9708197 +astro-ph/9709007 +astro-ph/9709014 +astro-ph/9709050 +astro-ph/9709242 +astro-ph/9709283 +astro-ph/9710170 +astro-ph/9710240 +astro-ph/9712329 +1004.5150 +1103.3207 Materials Science +1302.5888 Quantum Algebra +1307.3795 High Energy Astrophysical Phenomena +1308.0745 Algebraic Geometry +1308.0784 Quantum Gases +1308.3604 Group Theory +1308.4757 Numerical Analysis +1308.6571 +1311.2645 Statistics Theory +1312.5382 Group Theory +1406.2054 Number Theory +1409.8668 Optics +1410.7478 Number Theory +1412.0109 Phenomenology +1412.4806 Cosmology and Nongalactic Astrophysics +1502.02342 +1502.05997 Optics +1502.07303 Computational Physics +1503.01979 Materials Science +1505.00615 Algebraic Geometry +1505.06234 Combinatorics +1506.04534 Geometric Topology +1507.00331 +1507.03248 Combinatorics +1508.00150 Neurons and Cognition +1508.03352 Quantum Gases +1508.03795 Mesoscale and Nanoscale Physics +1508.07448 Methodology +1509.01698 Machine Learning +1509.02222 +1509.07060 Number Theory +1510.01178 Algebraic Geometry +1510.03780 Logic +1510.05315 Spectral Theory +1510.05448 Algebraic Geometry +1511.00452 Computer Science and Game Theory +1511.01207 Mathematical Finance +1511.02149 Experiment +1511.03401 Other Condensed Matter +1511.03743 Number Theory +1511.06478 Number Theory +1511.08370 Complex Variables +1512.01184 Geometric Topology +1512.02390 Numerical Analysis +1512.04020 Accelerator Physics +1512.04892 Lattice +1512.06656 Experiment +1512.09172 Phenomenology +1601.00115 Cosmology and Nongalactic Astrophysics +1601.03214 Information Theory +1601.06974 Software Engineering +1602.00061 Learning +1602.02845 Machine Learning +1602.07142 +1603.00804 Probability +1603.01767 Solar and Stellar Astrophysics +1603.02524 Computational Engineering, Finance, and Science +1603.02635 Phenomenology +1603.04035 +1603.04393 Exactly Solvable and Integrable Systems +1603.05914 Risk Management +1603.06822 Combinatorics +1603.07682 Computer Science and Game Theory +1603.07863 Number Theory +1603.07904 Classical Analysis and ODEs +1603.09223 Optimization and Control +1603.09228 Optimization and Control +1603.09234 Optimization and Control +1604.01175 Computational Geometry +1604.01417 +1604.02643 +1604.03832 Computer Vision and Pattern Recognition +1604.04257 +1604.04535 Algebraic Geometry +1604.04979 Phenomenology +1604.07479 Numerical Analysis +1604.07961 Soft Condensed Matter +1604.08099 Phenomenology +1604.08290 Strongly Correlated Electrons +1604.08849 +1605.00437 Numerical Analysis +1605.00441 +1605.02779 Strongly Correlated Electrons +1605.04666 Theory +1605.05277 Differential Geometry +1605.05486 Systems and Control +1605.06650 Computation and Language +1605.06667 Accelerator Physics +1605.06821 Computer Science and Game Theory +1605.07722 Human-Computer Interaction +1605.08511 Optimization and Control +1605.08774 Phenomenology +1605.08820 Algebraic Geometry +1606.00647 Numerical Analysis +1606.01716 +1606.02153 Accelerator Physics +1606.02661 +1606.02984 +1606.03105 Rings and Algebras +1606.04094 Materials Science +1606.04297 Strongly Correlated Electrons +1606.04431 Methodology +1606.05384 Combinatorics +1606.05507 Combinatorics +1606.07633 Superconductivity +1606.08353 Spectral Theory +1607.00712 +1607.02601 Materials Science +1607.02899 Differential Geometry +1607.05143 Computer Science and Game Theory +1607.05740 Algebraic Geometry +1607.06905 +1607.07127 Symplectic Geometry +1607.07346 Chaotic Dynamics +1607.08393 Mesoscale and Nanoscale Physics +1608.00892 Computation and Language +1608.01803 Complex Variables +1608.02047 Functional Analysis +1608.02658 Machine Learning +1608.02740 Economics +1608.02869 Statistical Mechanics +1608.03261 Theory +1608.03470 +1608.03600 General Mathematics +1608.03906 Classical Analysis and ODEs +1608.05762 Strongly Correlated Electrons +1608.06539 Group Theory +1608.07055 Data Analysis, Statistics and Probability +1608.07289 High Energy Astrophysical Phenomena +1608.08326 Geophysics +1609.00069 Combinatorics +1609.01184 Data Structures and Algorithms +1609.01596 Machine Learning +1609.01994 Information Theory +1609.02055 +1609.04243 Neural and Evolutionary Computing +1609.05249 Instrumentation and Detectors +1609.05788 Physics and Society +1609.05943 Analysis of PDEs +1609.06926 Methodology +1609.06943 Instrumentation and Detectors +1609.07245 Sound +1609.07309 Strongly Correlated Electrons +1609.07782 Fluid Dynamics +1609.07812 +1609.08402 Theory +1609.09358 Information Theory +1609.09427 Theory +1609.09470 Systems and Control +1610.01136 Algebraic Topology +1610.01695 Combinatorics +1610.03384 Number Theory +1610.05798 Cosmology and Nongalactic Astrophysics +1610.06652 Optics +1610.09293 Phenomenology +1611.00186 Algebraic Geometry +1611.00206 Analysis of PDEs +1611.00855 Astrophysics of Galaxies +1611.01272 Digital Libraries +1611.01547 Computation and Language +1611.03076 Experiment +1611.03408 +1611.05022 Mesoscale and Nanoscale Physics +1611.05194 Mathematical Finance +1611.05496 Group Theory +1611.05823 Algebraic Geometry +1611.06220 Theory +1611.06272 Operator Algebras +1611.07566 Statistical Mechanics +1611.07909 Computer Vision and Pattern Recognition +1611.07920 Phenomenology +1611.07960 Atomic and Molecular Clusters +1611.08377 History and Overview +1611.08645 Materials Science +1611.09783 Theory +1611.09850 Combinatorics +1611.09902 Analysis of PDEs +1611.10045 Data Structures and Algorithms +1611.10275 Classical Analysis and ODEs +1612.00190 Computer Science and Game Theory +1612.00413 Phenomenology +1612.00484 Logic in Computer Science +1612.01166 Numerical Analysis +1612.01398 Solar and Stellar Astrophysics +1612.01431 Digital Libraries +1612.01444 Group Theory +1612.01510 Social and Information Networks +1612.02080 Analysis of PDEs +1612.03084 Geometric Topology +1612.03239 Systems and Control +1612.03370 +1612.04277 Hardware Architecture +1612.04535 Methodology +1612.04929 +1612.05000 Computer Vision and Pattern Recognition +1612.05033 Materials Science +1612.05338 +1612.05555 Computation and Language +1612.05628 Artificial Intelligence +1612.05730 Machine Learning +1612.06050 Populations and Evolution +1612.06301 Materials Science +1612.06328 Geometric Topology +1612.06459 +1612.06471 Phenomenology +1612.06494 Instrumentation and Detectors +1612.06499 Group Theory +1612.06679 Theory +1612.06739 Cosmology and Nongalactic Astrophysics +1612.06775 Analysis of PDEs +1612.06776 Strongly Correlated Electrons +1612.06859 Theory +1612.06860 Theory +1612.06865 Mesoscale and Nanoscale Physics +1612.06867 Phenomenology +1612.06868 Mesoscale and Nanoscale Physics +1612.06869 Astrophysics of Galaxies +1612.06870 Classical Physics +1612.06872 +1612.06873 Cosmology and Nongalactic Astrophysics +1612.06874 Theory +1612.06875 Materials Science +1612.06877 Geometric Topology +1612.06878 +1612.06879 Methodology +1612.06881 Adaptation and Self-Organizing Systems +1612.06885 Theory +1612.06888 Materials Science +1612.06889 +1612.06890 Computer Vision and Pattern Recognition +1612.06891 Astrophysics of Galaxies +1612.06892 +1612.06894 +1612.06896 High Energy Astrophysical Phenomena +1612.06897 Computation and Language +1612.06900 Information Theory +1612.06901 Biological Physics +1612.06902 +1612.06906 +1612.06908 Quantum Gases +1612.06911 Representation Theory +1612.06912 Group Theory +1612.06913 Representation Theory +1612.06914 Dynamical Systems +1612.06916 Analysis of PDEs +1612.06919 Computer Vision and Pattern Recognition +1612.06921 Quantitative Methods +1612.06922 Earth and Planetary Astrophysics +1612.06923 Theory +1612.06924 Solar and Stellar Astrophysics +1612.06925 Optics +1612.06926 Differential Geometry +1612.06928 Methodology +1612.06929 High Energy Astrophysical Phenomena +1612.06930 Applications +1612.06932 Algebraic Geometry +1612.06933 Computer Vision and Pattern Recognition +1612.06934 +1612.06936 Combinatorics +1612.06937 Optics +1612.06939 +1612.06942 Quantum Gases +1612.06943 Quantum Gases +1612.06945 Algebraic Geometry +1612.06946 Materials Science +1612.06947 Earth and Planetary Astrophysics +1612.06948 Number Theory +1612.06949 Theory +1612.06950 Computer Vision and Pattern Recognition +1612.06951 Materials Science +1612.06952 +1612.06953 Cryptography and Security +1612.06956 +1612.06960 Algebraic Geometry +1612.06961 Information Theory +1612.06962 Data Structures and Algorithms +1612.06963 Lattice +1612.06966 Logic +1612.06967 Statistics Theory +1612.06968 Methodology +1612.06969 Phenomenology +1612.06970 Geometric Topology +1612.06971 Combinatorics +1612.06972 Mesoscale and Nanoscale Physics +1612.06973 Geometric Topology +1612.06975 Neurons and Cognition +1612.06976 Analysis of PDEs +1612.06977 Numerical Analysis +1612.06978 Theory +1612.06979 +1612.06980 Category Theory +1612.06981 +1612.06982 Geometric Topology +1612.06983 Algebraic Topology +1612.06984 Earth and Planetary Astrophysics +1612.06986 Geometric Topology +1612.06987 Earth and Planetary Astrophysics +1612.06988 Probability +1612.06990 Complex Variables +1612.06991 Quantum Algebra +1612.06993 Number Theory +1612.06994 Astrophysics of Galaxies +1612.06995 Information Theory +1612.06996 Symplectic Geometry +1612.06997 Optimization and Control +1612.06998 Numerical Analysis +1612.06999 Optics +1612.07001 Mesoscale and Nanoscale Physics +1612.07002 Numerical Analysis +1612.07004 Experiment +1612.07007 Statistical Mechanics +1612.07009 Computational Physics +1612.07010 Methodology +1612.07011 Numerical Analysis +1612.07012 Phenomenology +1612.07015 Computational Complexity +1612.07017 Probability +1612.07018 Mesoscale and Nanoscale Physics +1612.07019 Machine Learning +1612.07020 Mesoscale and Nanoscale Physics +1612.07022 +1612.07025 Information Retrieval +1612.07026 Mesoscale and Nanoscale Physics +1612.07028 Quantum Gases +1612.07029 Chaotic Dynamics +1612.07030 Statistics Theory +1612.07031 Adaptation and Self-Organizing Systems +1612.07033 Algebraic Geometry +1612.07034 Applications +1612.07035 Classical Analysis and ODEs +1612.07038 Materials Science +1612.07040 Information Retrieval +1612.07042 Classical Analysis and ODEs +1612.07045 Mesoscale and Nanoscale Physics +1612.07047 Lattice +1612.07048 Optimization and Control +1612.07050 Category Theory +1612.07051 Analysis of PDEs +1612.07055 Fluid Dynamics +1612.07058 +1612.07061 +1612.07063 Differential Geometry +1612.07064 Networking and Internet Architecture +1612.07068 Materials Science +1612.07069 Instrumentation and Detectors +1612.07070 Statistical Mechanics +1612.07071 Materials Science +1612.07072 Methodology +1612.07073 Complex Variables +1612.07074 Discrete Mathematics +1612.07076 Other Condensed Matter +1612.07077 +1612.07078 Materials Science +1612.07082 Dynamical Systems +1612.07084 Information Theory +1612.07085 Combinatorics +1612.07088 Probability +1612.07089 Optimization and Control +1612.07090 Superconductivity +1612.07091 Phenomenology +1612.07092 Strongly Correlated Electrons +1612.07093 +1612.07094 Biological Physics +1612.07095 Theory +1612.07098 Mesoscale and Nanoscale Physics +1612.07101 Optimization and Control +1612.07102 Instrumentation and Detectors +1612.07103 Combinatorics +1612.07105 Atomic Physics +1612.07106 Neurons and Cognition +1612.07107 Algebraic Geometry +1612.07108 Classical Analysis and ODEs +1612.07109 Data Analysis, Statistics and Probability +1612.07111 Fluid Dynamics +1612.07112 Atomic Physics +1612.07113 Discrete Mathematics +1612.07114 Soft Condensed Matter +1612.07115 Phenomenology +1612.07116 +1612.07117 Information Retrieval +1612.07118 Information Theory +1612.07119 Computer Vision and Pattern Recognition +1612.07120 Computer Vision and Pattern Recognition +1612.07121 +1612.07122 Information Theory +1612.07124 Materials Science +1612.07125 Phenomenology +1612.07127 +1612.07130 Computation and Language +1612.07132 Risk Management +1612.07133 Combinatorics +1612.07134 +1612.07135 Dynamical Systems +1612.07136 Dynamical Systems +1612.07140 Other Statistics +1612.07141 Learning +1612.07142 Algebraic Topology +1612.07143 Classical Analysis and ODEs +1612.07144 Classical Analysis and ODEs +1612.07146 Learning +1612.07147 Earth and Planetary Astrophysics +1612.07148 Theory +1612.07149 General Physics +1612.07150 +1612.07151 Earth and Planetary Astrophysics +1612.07152 +1612.07153 Computer Vision and Pattern Recognition +1612.07154 Logic +1612.07155 High Energy Astrophysical Phenomena +1612.07157 Information Theory +1612.07158 Number Theory +1612.07160 Probability +1612.07161 General Physics +1612.07162 Computational Complexity +1612.07163 Information Theory +1612.07164 General Physics +1612.07167 Logic +1612.07168 Numerical Analysis +1612.07169 Dynamical Systems +1612.07170 Instrumentation and Detectors +1612.07171 Accelerator Physics +1612.07172 +1612.07173 Quantum Gases +1612.07174 Theory +1612.07177 Information Theory +1612.07180 Computer Vision and Pattern Recognition +1612.07184 Biological Physics +1612.07185 Operator Algebras +1612.07186 Data Analysis, Statistics and Probability +1612.07187 Combinatorics +1612.07189 Combinatorics +1612.07193 Algebraic Geometry +1612.07194 Risk Management +1612.07195 Logic in Computer Science +1612.07197 Statistics Theory +1612.07199 Mesoscale and Nanoscale Physics +1612.07202 Strongly Correlated Electrons +1612.07203 Mesoscale and Nanoscale Physics +1612.07204 Materials Science +1612.07205 Atomic Physics +1612.07206 Cryptography and Security +1612.07207 Strongly Correlated Electrons +1612.07208 Digital Libraries +1612.07209 Pattern Formation and Solitons +1612.07215 Computation and Language +1612.07216 Statistics Theory +1612.07217 Computer Vision and Pattern Recognition +1612.07220 Networking and Internet Architecture +1612.07222 Machine Learning +1612.07223 Statistical Mechanics +1612.07226 Instrumentation and Methods for Astrophysics +1612.07229 Classical Analysis and ODEs +1612.07230 Classical Analysis and ODEs +1612.07231 Experiment +1612.07233 Experiment +1612.07235 Instrumentation and Detectors +1612.07236 +1612.07237 Accelerator Physics +1612.07240 Classical Analysis and ODEs +1612.07241 Phenomenology +1612.07243 +1612.07245 Cosmology and Nongalactic Astrophysics +1612.07246 +1612.07247 Combinatorics +1612.07248 Phenomenology +1612.07250 +1612.07254 Dynamical Systems +1612.07255 Optimization and Control +1612.07256 Biological Physics +1612.07257 Operator Algebras +1612.07258 +1612.07259 Theory +1612.07261 Analysis of PDEs +1612.07262 Analysis of PDEs +1612.07263 Cosmology and Nongalactic Astrophysics +1612.07264 Cosmology and Nongalactic Astrophysics +1612.07266 Plasma Physics +1612.07267 Theory +1612.07268 Plasma Physics +1612.07269 Statistics Theory +1612.07271 Astrophysics of Galaxies +1612.07272 Data Analysis, Statistics and Probability +1612.07273 Logic in Computer Science +1612.07274 Analysis of PDEs +1612.07275 Phenomenology +1612.07276 Computational Geometry +1612.07277 Physics and Society +1612.07278 Algebraic Geometry +1612.07280 Analysis of PDEs +1612.07281 Cosmology and Nongalactic Astrophysics +1612.07283 Analysis of PDEs +1612.07285 Information Theory +1612.07286 Combinatorics +1612.07287 Optimization and Control +1612.07288 Cosmology and Nongalactic Astrophysics +1612.07289 Information Theory +1612.07290 High Energy Astrophysical Phenomena +1612.07292 +1612.07293 Accelerator Physics +1612.07294 Information Theory +1612.07296 Optimization and Control +1612.07297 Physics and Society +1612.07298 Classical Physics +1612.07301 Materials Science +1612.07302 Mesoscale and Nanoscale Physics +1612.07303 Human-Computer Interaction +1612.07305 Mesoscale and Nanoscale Physics +1612.07306 Probability +1612.07309 Multimedia +1612.07310 Computer Vision and Pattern Recognition +1612.07312 Functional Analysis +1612.07315 Theory +1612.07316 High Energy Astrophysical Phenomena +math/0604209 Logic +quant-ph/0503035 +0804.2540 Disordered Systems and Neural Networks +0805.2647 Superconductivity +0811.1404 Geometric Topology +0912.1502 Commutative Algebra +1012.5575 Rings and Algebras +1012.5824 Materials Science +1102.0781 Strongly Correlated Electrons +1106.0711 +1112.2127 Computational Complexity +1201.2169 Cosmology and Nongalactic Astrophysics +1201.5851 Superconductivity +1202.2956 Optics +1203.3804 Experiment +1203.4512 Statistical Mechanics +1204.0614 +1204.3446 Statistical Mechanics +1204.3980 Probability +1205.6591 Mesoscale and Nanoscale Physics +1209.0384 Cosmology and Nongalactic Astrophysics +1210.3417 Solar and Stellar Astrophysics +1211.3124 Cosmology and Nongalactic Astrophysics +1211.4296 Optics +1211.5764 Strongly Correlated Electrons +1301.1129 Cosmology and Nongalactic Astrophysics +1301.3643 Materials Science +1302.6197 Populations and Evolution +1302.6443 Functional Analysis +1304.4510 Atomic Physics +1305.5994 Differential Geometry +1308.6548 Category Theory +1309.1655 +1309.6949 Instrumentation and Methods for Astrophysics +1311.4001 Computational Complexity +1312.3357 Probability +1312.6788 Soft Condensed Matter +1401.2431 Numerical Analysis +1401.3345 Phenomenology +1401.4463 Statistical Mechanics +1402.0677 Cosmology and Nongalactic Astrophysics +1402.0799 Group Theory +1402.1724 Quantitative Methods +1402.5856 Statistical Mechanics +1402.6817 Combinatorics +1403.6710 Computational Complexity +1403.7304 Machine Learning +1404.0268 Theory +1404.0779 Quantum Gases +1404.4042 Phenomenology +1405.3817 Data Structures and Algorithms +1406.3560 Atomic Physics +1406.7141 Strongly Correlated Electrons +1407.4916 Methodology +1407.6674 Analysis of PDEs +1409.0790 Astrophysics of Galaxies +1409.7159 +1409.7282 Statistical Mechanics +1410.3224 +1411.4298 +1411.4644 +1411.5821 Classical Physics +1411.7751 +1412.1877 Probability +1412.2735 Logic +1412.3621 Operator Algebras +1412.4336 Analysis of PDEs +1412.8171 Numerical Analysis +1412.8372 Cosmology and Nongalactic Astrophysics +1501.01779 Computational Engineering, Finance, and Science +1501.03566 Information Theory +1501.04866 Geometric Topology +1501.05918 +1501.06110 Differential Geometry +1502.01478 Chaotic Dynamics +1502.02264 Strongly Correlated Electrons +1502.03026 Functional Analysis +1502.04802 +1502.07246 Applications +1502.07698 Symplectic Geometry +1503.01017 +1503.05024 Analysis of PDEs +1503.05052 Cosmology and Nongalactic Astrophysics +1503.07109 +1503.07676 Computational Finance +1503.08166 Functional Analysis +1503.09120 Solar and Stellar Astrophysics +1504.00071 Methodology +1504.01573 Mesoscale and Nanoscale Physics +1504.04460 +1504.07903 Numerical Analysis +1505.01175 Group Theory +1505.02957 Optics +1505.03423 +1505.03425 Logic +1506.00800 Analysis of PDEs +1506.02262 Analysis of PDEs +1506.03049 Materials Science +1506.05365 Number Theory +1506.07779 Analysis of PDEs +1506.08990 Statistical Mechanics +1507.00047 Phenomenology +1507.00213 +1507.04337 Mesoscale and Nanoscale Physics +1507.04508 Analysis of PDEs +1507.05203 General Finance +1507.05647 Cosmology and Nongalactic Astrophysics +1507.05664 Networking and Internet Architecture +1508.00020 Analysis of PDEs +1508.00050 Representation Theory +1508.00506 Optimization and Control +1508.00573 Strongly Correlated Electrons +1508.01059 Data Structures and Algorithms +1508.01627 Representation Theory +1508.02825 Astrophysics of Galaxies +1508.03220 +1508.03909 Analysis of PDEs +1508.07531 Number Theory +1508.07872 +1509.01241 Quantum Algebra +1509.01966 Statistical Finance +1509.02198 Cosmology and Nongalactic Astrophysics +1509.02584 Cryptography and Security +1509.02793 Experiment +1509.03496 +1509.04356 High Energy Astrophysical Phenomena +1509.04575 Computational Geometry +1509.05391 Phenomenology +1509.06392 Phenomenology +1509.06516 +1509.07133 Strongly Correlated Electrons +1509.07436 Geophysics +1509.09083 +1510.00029 Astrophysics of Galaxies +1510.00043 Dynamical Systems +1510.00091 Optimization and Control +1510.01748 Symplectic Geometry +1510.03038 Superconductivity +1510.03729 Materials Science +1510.05653 +1510.06018 Astrophysics of Galaxies +1510.06284 Probability +1510.08503 Quantum Gases +1511.00797 Networking and Internet Architecture +1511.03469 +1511.04664 Learning +1511.08017 Statistical Mechanics +1511.08193 Analysis of PDEs +1511.08250 Computer Vision and Pattern Recognition +1511.08482 +1511.09049 Mesoscale and Nanoscale Physics +1512.00279 Phenomenology +1512.01484 Superconductivity +1512.02052 Optimization and Control +1512.02283 Solar and Stellar Astrophysics +1512.02508 Phenomenology +1512.03658 Astrophysics of Galaxies +1512.03856 Strongly Correlated Electrons +1512.04960 Learning +1512.05131 Functional Analysis +1512.05242 Strongly Correlated Electrons +1512.05875 Neurons and Cognition +1512.06846 Mesoscale and Nanoscale Physics +1512.07052 Statistics Theory +1512.07245 Theory +1512.07413 +1601.00063 Dynamical Systems +1601.00382 Fluid Dynamics +1601.02094 Number Theory +1601.02583 Space Physics +1601.03815 Computational Physics +1601.03947 Cosmology and Nongalactic Astrophysics +1601.03948 Cosmology and Nongalactic Astrophysics +1601.04807 Discrete Mathematics +1601.06269 +1601.06295 Classical Analysis and ODEs +1601.08098 Probability +1602.01568 Dynamical Systems +1602.02904 Instrumentation and Methods for Astrophysics +1602.03297 +1602.03545 High Energy Astrophysical Phenomena +1602.03672 Algebraic Geometry +1602.06524 Analysis of PDEs +1602.06732 Algebraic Geometry +1602.07322 Cosmology and Nongalactic Astrophysics +1602.07784 Materials Science +1602.08416 +1602.08506 Phenomenology +1602.08856 Mesoscale and Nanoscale Physics +1603.00096 Mesoscale and Nanoscale Physics +1603.02608 Materials Science +1603.03242 Strongly Correlated Electrons +1603.03492 Astrophysics of Galaxies +1603.04275 Functional Analysis +1603.04318 Quantum Algebra +1603.05165 +1603.05432 +1603.05576 Information Theory +1603.05814 Quantum Gases +1603.06244 +1603.07733 High Energy Astrophysical Phenomena +1603.08595 +1603.08963 +1603.09356 Cosmology and Nongalactic Astrophysics +1603.09364 Computer Vision and Pattern Recognition +1604.00877 Superconductivity +1604.01300 +1604.01554 Geophysics +1604.02168 Astrophysics of Galaxies +1604.02717 Analysis of PDEs +1604.03367 Algebraic Geometry +1604.03377 Phenomenology +1604.03536 Mesoscale and Nanoscale Physics +1604.03938 Phenomenology +1604.04250 Phenomenology +1604.04345 Statistical Mechanics +1604.04799 +1604.04835 Computation and Language +1604.04943 Mesoscale and Nanoscale Physics +1604.04975 Astrophysics of Galaxies +1604.05209 Physics and Society +1604.05560 +1604.05670 High Energy Astrophysical Phenomena +1604.06045 Computation and Language +1604.06046 Phenomenology +1604.06307 Phenomenology +1604.06400 +1604.06410 K-Theory and Homology +1604.06495 Atomic and Molecular Clusters +1604.06630 Quantum Gases +1604.07086 Information Theory +1604.07127 Differential Geometry +1604.07210 +1604.07284 Superconductivity +1604.07755 Analysis of PDEs +1604.07974 +1604.08009 +1604.08541 Atomic Physics +1604.08762 Mesoscale and Nanoscale Physics +1605.00121 Strongly Correlated Electrons +1605.00357 +1605.00629 Phenomenology +1605.00701 High Energy Astrophysical Phenomena +1605.01235 Systems and Control +1605.01258 Mesoscale and Nanoscale Physics +1605.01279 Subcellular Processes +1605.01448 Accelerator Physics +1605.01477 +1605.02133 Materials Science +1605.02520 Functional Analysis +1605.02593 +1605.03090 Neurons and Cognition +1605.03380 Strongly Correlated Electrons +1605.03401 Probability +1605.03710 Materials Science +1605.04252 Materials Science +1605.04302 +1605.04589 Strongly Correlated Electrons +1605.04641 Strongly Correlated Electrons +1605.04748 Strongly Correlated Electrons +1605.04831 Fluid Dynamics +1605.05268 +1605.05291 Neurons and Cognition +1605.05505 Algebraic Geometry +1605.05680 Phenomenology +1605.05796 +1605.06049 Optimization and Control +1605.06081 Mesoscale and Nanoscale Physics +1605.06240 Computer Vision and Pattern Recognition +1605.06265 Machine Learning +1605.06306 +1605.06750 Solar and Stellar Astrophysics +1605.06939 Instrumentation and Detectors +1605.07043 Theory +1605.07179 Mesoscale and Nanoscale Physics +1605.07223 Quantum Algebra +1605.07275 Category Theory +1605.07391 Astrophysics of Galaxies +1605.07640 Instrumentation and Methods for Astrophysics +1605.07780 Solar and Stellar Astrophysics +1605.07925 Adaptation and Self-Organizing Systems +1605.08164 Superconductivity +1605.08209 Astrophysics of Galaxies +1605.08389 +1605.08454 Neurons and Cognition +1605.08601 Astrophysics of Galaxies +1605.08698 Mesoscale and Nanoscale Physics +1605.08715 +1605.08769 +1605.08780 High Energy Astrophysical Phenomena +1605.09140 Strongly Correlated Electrons +1605.09195 Mesoscale and Nanoscale Physics +1605.09261 Cosmology and Nongalactic Astrophysics +1605.09311 Statistical Mechanics +1605.09402 Astrophysics of Galaxies +1605.09592 Astrophysics of Galaxies +1606.00050 Mesoscale and Nanoscale Physics +1606.00063 +1606.00218 Atomic Physics +1606.00696 Instrumentation and Detectors +1606.00755 Information Theory +1606.00848 Earth and Planetary Astrophysics +1606.00931 Machine Learning +1606.01210 +1606.01516 Astrophysics of Galaxies +1606.01689 Information Theory +1606.02044 Number Theory +1606.02051 Mesoscale and Nanoscale Physics +1606.02249 Optics +1606.02380 Mesoscale and Nanoscale Physics +1606.03053 High Energy Astrophysical Phenomena +1606.03087 Phenomenology +1606.03133 Materials Science +1606.03337 Materials Science +1606.03385 Lattice +1606.03451 Cosmology and Nongalactic Astrophysics +1606.03624 Astrophysics of Galaxies +1606.03822 Strongly Correlated Electrons +1606.03887 Instrumentation and Methods for Astrophysics +1606.03916 Optics +1606.04005 Mesoscale and Nanoscale Physics +1606.04102 Astrophysics of Galaxies +1606.04180 Earth and Planetary Astrophysics +1606.04196 Pattern Formation and Solitons +1606.04348 +1606.04367 Solar and Stellar Astrophysics +1606.04373 Astrophysics of Galaxies +1606.04391 Phenomenology +1606.04759 +1606.04767 Theory +1606.04865 Superconductivity +1606.04947 Solar and Stellar Astrophysics +1606.05175 Classical Analysis and ODEs +1606.05192 Earth and Planetary Astrophysics +1606.05587 Phenomenology +1606.05600 Statistical Mechanics +1606.05657 Cosmology and Nongalactic Astrophysics +1606.05661 Solar and Stellar Astrophysics +1606.05686 Phenomenology +1606.05769 Astrophysics of Galaxies +1606.05802 Populations and Evolution +1606.06561 +1606.07073 Cosmology and Nongalactic Astrophysics +1606.07162 +1606.07199 Statistical Mechanics +1606.07586 Mesoscale and Nanoscale Physics +1606.07809 Astrophysics of Galaxies +1606.08203 Optimization and Control +1606.08241 Theory +1606.08417 Analysis of PDEs +1606.08425 Computation and Language +1606.08498 Earth and Planetary Astrophysics +1606.08852 Astrophysics of Galaxies +1606.09056 +1606.09057 +1606.09137 Information Theory +1606.09485 Solar and Stellar Astrophysics +1607.00009 Theory +1607.00135 +1607.00389 Phenomenology +1607.00618 Materials Science +1607.00676 Phenomenology +1607.00815 Phenomenology +1607.00839 Solar and Stellar Astrophysics +1607.00943 Solar and Stellar Astrophysics +1607.01020 Astrophysics of Galaxies +1607.01132 Mesoscale and Nanoscale Physics +1607.01180 Superconductivity +1607.01226 Mesoscale and Nanoscale Physics +1607.02445 Phenomenology +1607.02749 Astrophysics of Galaxies +1607.02981 Strongly Correlated Electrons +1607.03009 Solar and Stellar Astrophysics +1607.03049 Solar and Stellar Astrophysics +1607.03111 Phenomenology +1607.03123 Theory +1607.03181 Astrophysics of Galaxies +1607.03293 High Energy Astrophysical Phenomena +1607.03387 Functional Analysis +1607.03674 Astrophysics of Galaxies +1607.03772 Statistical Mechanics +1607.03779 +1607.03841 Dynamical Systems +1607.03900 Cosmology and Nongalactic Astrophysics +1607.03907 High Energy Astrophysical Phenomena +1607.03932 Optics +1607.03963 Earth and Planetary Astrophysics +1607.04036 Mesoscale and Nanoscale Physics +1607.04068 Astrophysics of Galaxies +1607.04239 Instrumentation and Methods for Astrophysics +1607.04273 Quantum Gases +1607.04338 Solar and Stellar Astrophysics +1607.04749 Chemical Physics +1607.04814 Software Engineering +1607.05007 Cosmology and Nongalactic Astrophysics +1607.05016 Atomic Physics +1607.05226 +1607.05255 Earth and Planetary Astrophysics +1607.05311 Strongly Correlated Electrons +1607.05588 Superconductivity +1607.05632 Earth and Planetary Astrophysics +1607.05713 Earth and Planetary Astrophysics +1607.05753 Strongly Correlated Electrons +1607.05767 +1607.05935 High Energy Astrophysical Phenomena +1607.05961 Solar and Stellar Astrophysics +1607.06007 Earth and Planetary Astrophysics +1607.06026 Mesoscale and Nanoscale Physics +1607.06152 Solar and Stellar Astrophysics +1607.06205 Strongly Correlated Electrons +1607.06242 Solar and Stellar Astrophysics +1607.06331 Optics +1607.06443 Astrophysics of Galaxies +1607.06493 Theory +1607.06761 Theory +1607.06860 Cell Behavior +1607.07325 Astrophysics of Galaxies +1607.07447 Astrophysics of Galaxies +1607.07528 Solar and Stellar Astrophysics +1607.07545 Cosmology and Nongalactic Astrophysics +1607.07564 Mesoscale and Nanoscale Physics +1607.07595 Astrophysics of Galaxies +1607.07720 Cryptography and Security +1607.07723 Cosmology and Nongalactic Astrophysics +1607.07772 Superconductivity +1607.07785 Astrophysics of Galaxies +1607.07811 Astrophysics of Galaxies +1607.07851 Astrophysics of Galaxies +1607.07888 Solar and Stellar Astrophysics +1607.07916 Representation Theory +1607.08008 Mesoscale and Nanoscale Physics +1607.08261 Strongly Correlated Electrons +1607.08431 Soft Condensed Matter +1607.08454 High Energy Astrophysical Phenomena +1607.08724 Quantum Gases +1608.00282 Instrumentation and Methods for Astrophysics +1608.00393 High Energy Astrophysical Phenomena +1608.00516 Mesoscale and Nanoscale Physics +1608.00810 Artificial Intelligence +1608.00850 Theory +1608.00962 Solar and Stellar Astrophysics +1608.00980 High Energy Astrophysical Phenomena +1608.00986 Solar and Stellar Astrophysics +1608.01076 High Energy Astrophysical Phenomena +1608.01087 Solar and Stellar Astrophysics +1608.01211 Astrophysics of Galaxies +1608.01229 Astrophysics of Galaxies +1608.01249 Number Theory +1608.01315 Earth and Planetary Astrophysics +1608.01316 Solar and Stellar Astrophysics +1608.01378 Instrumentation and Methods for Astrophysics +1608.01379 Spectral Theory +1608.01497 Solar and Stellar Astrophysics +1608.01702 Astrophysics of Galaxies +1608.01967 Astrophysics of Galaxies +1608.02033 Astrophysics of Galaxies +1608.02046 Mesoscale and Nanoscale Physics +1608.02057 Solar and Stellar Astrophysics +1608.02288 Solar and Stellar Astrophysics +1608.02302 Astrophysics of Galaxies +1608.02480 Solar and Stellar Astrophysics +1608.02590 Earth and Planetary Astrophysics +1608.02602 Solar and Stellar Astrophysics +1608.02656 Materials Science +1608.02704 Solar and Stellar Astrophysics +1608.02714 Astrophysics of Galaxies +1608.02758 Theory +1608.03035 High Energy Astrophysical Phenomena +1608.03185 Astrophysics of Galaxies +1608.03330 Number Theory +1608.03346 High Energy Astrophysical Phenomena +1608.03411 Astrophysics of Galaxies +1608.03457 Mesoscale and Nanoscale Physics +1608.03469 Mesoscale and Nanoscale Physics +1608.03537 +1608.03541 Solar and Stellar Astrophysics +1608.03629 Earth and Planetary Astrophysics +1608.03660 Cosmology and Nongalactic Astrophysics +1608.03687 Cosmology and Nongalactic Astrophysics +1608.03831 Astrophysics of Galaxies +1608.03893 Astrophysics of Galaxies +1608.03901 Strongly Correlated Electrons +1608.04362 Cryptography and Security +1608.04392 Algebraic Topology +1608.05149 Astrophysics of Galaxies +1608.05200 Optics +1608.05369 Astrophysics of Galaxies +1608.05557 Astrophysics of Galaxies +1608.05559 Astrophysics of Galaxies +1608.05563 Astrophysics of Galaxies +1608.05614 +1608.05743 Information Theory +1608.06158 Solar and Stellar Astrophysics +1608.06224 Phenomenology +1608.06283 Astrophysics of Galaxies +1608.06437 Strongly Correlated Electrons +1608.06586 Solar and Stellar Astrophysics +1608.06619 Phenomenology +1608.06633 Mesoscale and Nanoscale Physics +1608.06803 Strongly Correlated Electrons +1608.06820 Phenomenology +1608.06824 General Physics +1608.06849 Astrophysics of Galaxies +1608.07135 +1608.07513 Strongly Correlated Electrons +1608.07685 Learning +1608.07702 Solar and Stellar Astrophysics +1608.07705 Solar and Stellar Astrophysics +1608.07737 Algebraic Geometry +1608.08153 Quantum Gases +1608.08154 High Energy Astrophysical Phenomena +1608.08354 Astrophysics of Galaxies +1608.08392 Solar and Stellar Astrophysics +1608.08536 Astrophysics of Galaxies +1608.08550 Solar and Stellar Astrophysics +1608.08593 Earth and Planetary Astrophysics +1608.08637 +1608.08781 Theory +1609.00013 Astrophysics of Galaxies +1609.00331 Artificial Intelligence +1609.00376 Astrophysics of Galaxies +1609.00378 Astrophysics of Galaxies +1609.00382 Earth and Planetary Astrophysics +1609.00535 Solar and Stellar Astrophysics +1609.00692 Experiment +1609.00803 +1609.01094 Mesoscale and Nanoscale Physics +1609.01280 Astrophysics of Galaxies +1609.01391 Strongly Correlated Electrons +1609.01673 +1609.01690 Information Theory +1609.01713 Astrophysics of Galaxies +1609.01785 Earth and Planetary Astrophysics +1609.02115 Solar and Stellar Astrophysics +1609.02400 Astrophysics of Galaxies +1609.02827 Classical Analysis and ODEs +1609.03051 Astrophysics of Galaxies +1609.03154 Solar and Stellar Astrophysics +1609.03179 Astrophysics of Galaxies +1609.03249 Instrumentation and Methods for Astrophysics +1609.03317 Computation +1609.03329 Astrophysics of Galaxies +1609.03402 Solar and Stellar Astrophysics +1609.03469 Solar and Stellar Astrophysics +1609.04024 High Energy Astrophysical Phenomena +1609.04162 Astrophysics of Galaxies +1609.04457 Solar and Stellar Astrophysics +1609.04614 Phenomenology +1609.04728 Astrophysics of Galaxies +1609.04774 Classical Analysis and ODEs +1609.05016 Earth and Planetary Astrophysics +1609.05176 Representation Theory +1609.05227 Space Physics +1609.05841 Statistical Mechanics +1609.05860 Phenomenology +1609.05923 Solar and Stellar Astrophysics +1609.05973 Astrophysics of Galaxies +1609.06328 Solar and Stellar Astrophysics +1609.06806 Statistics Theory +1609.07767 Solar and Stellar Astrophysics +1609.07959 Neural and Evolutionary Computing +1609.08171 Solar and Stellar Astrophysics +1609.08598 High Energy Astrophysical Phenomena +1609.08645 Combinatorics +1609.08761 Plasma Physics +1609.08775 Algebraic Geometry +1609.09081 Astrophysics of Galaxies +1609.09857 Mesoscale and Nanoscale Physics +1610.00440 Astrophysics of Galaxies +1610.00576 Strongly Correlated Electrons +1610.00862 Strongly Correlated Electrons +1610.01077 Solar and Stellar Astrophysics +1610.01092 +1610.01421 Cosmology and Nongalactic Astrophysics +1610.01598 High Energy Astrophysical Phenomena +1610.01623 Astrophysics of Galaxies +1610.01625 High Energy Astrophysical Phenomena +1610.01923 High Energy Astrophysical Phenomena +1610.02387 Networking and Internet Architecture +1610.02531 Solar and Stellar Astrophysics +1610.02698 Algebraic Geometry +1610.03039 Networking and Internet Architecture +1610.03532 Logic +1610.03942 Solar and Stellar Astrophysics +1610.04043 Probability +1610.04045 Differential Geometry +1610.04273 Information Theory +1610.04433 Soft Condensed Matter +1610.04463 Earth and Planetary Astrophysics +1610.04473 Classical Analysis and ODEs +1610.04639 Dynamical Systems +1610.04689 Astrophysics of Galaxies +1610.04849 Strongly Correlated Electrons +1610.05095 Materials Science +1610.05206 Cosmology and Nongalactic Astrophysics +1610.05269 Earth and Planetary Astrophysics +1610.05508 Instrumentation and Methods for Astrophysics +1610.05840 Number Theory +1610.05990 Solar and Stellar Astrophysics +1610.06008 Data Structures and Algorithms +1610.06145 Methodology +1610.06201 Symplectic Geometry +1610.06373 Geometric Topology +1610.06541 Materials Science +1610.06607 Instrumentation and Detectors +1610.06865 Differential Geometry +1610.06896 Materials Science +1610.06925 Theory +1610.06937 Information Theory +1610.07012 +1610.07053 Experiment +1610.07071 Instrumentation and Methods for Astrophysics +1610.07094 Dynamical Systems +1610.07109 Systems and Control +1610.07115 Instrumentation and Detectors +1610.07192 Theory +1610.07303 Algebraic Geometry +1610.07306 Populations and Evolution +1610.07335 Complex Variables +1610.07393 Computer Vision and Pattern Recognition +1610.07396 Geometric Topology +1610.07441 Theory +1610.07468 Combinatorics +1610.07559 Optimization and Control +1610.07579 Mesoscale and Nanoscale Physics +1610.07594 Metric Geometry +1610.07595 +1610.07596 High Energy Astrophysical Phenomena +1610.07597 Analysis of PDEs +1610.07598 Instrumentation and Detectors +1610.07599 Numerical Analysis +1610.07600 Physics and Society +1610.07601 High Energy Astrophysical Phenomena +1610.07603 Strongly Correlated Electrons +1610.07604 Instrumentation and Methods for Astrophysics +1610.07605 Astrophysics of Galaxies +1610.07613 Mesoscale and Nanoscale Physics +1610.07618 Theory +1610.07620 Astrophysics of Galaxies +1610.07621 Strongly Correlated Electrons +1610.07622 Solar and Stellar Astrophysics +1610.07627 Strongly Correlated Electrons +1610.07628 Quantum Algebra +1610.07630 Instrumentation and Detectors +1610.07633 Quantum Gases +1610.07637 History and Philosophy of Physics +1610.07638 High Energy Astrophysical Phenomena +1610.07642 Biological Physics +1610.07643 +1610.07644 +1610.07649 Databases +1610.07650 Machine Learning +1610.07651 Computation and Language +1610.07655 Instrumentation and Methods for Astrophysics +1610.07657 Classical Analysis and ODEs +1610.07658 Dynamical Systems +1610.07662 Statistics Theory +1610.07663 Astrophysics of Galaxies +1610.07664 Combinatorics +1610.07665 Geometric Topology +1610.07668 Number Theory +1610.07669 Earth and Planetary Astrophysics +1610.07670 Applications +1610.07671 Robotics +1610.07674 Cosmology and Nongalactic Astrophysics +1610.07676 Atmospheric and Oceanic Physics +1610.07677 Machine Learning +1610.07680 Classical Analysis and ODEs +1610.07683 Methodology +1610.07684 Applications +1610.07685 Statistical Mechanics +1610.07686 Learning +1610.07687 Systems and Control +1610.07689 +1610.07691 Geometric Topology +1610.07692 Disordered Systems and Neural Networks +1610.07694 Portfolio Management +1610.07696 Programming Languages +1610.07697 Statistics Theory +1610.07698 Probability +1610.07700 Distributed, Parallel, and Cluster Computing +1610.07701 Computer Science and Game Theory +1610.07702 Strongly Correlated Electrons +1610.07703 Information Retrieval +1610.07705 Populations and Evolution +1610.07706 Differential Geometry +1610.07707 Databases +1610.07708 Artificial Intelligence +1610.07710 Computation and Language +1610.07712 Number Theory +1610.07713 General Mathematics +1610.07715 Commutative Algebra +1610.07716 Number Theory +1610.07719 Information Theory +1610.07721 Strongly Correlated Electrons +1610.07722 Learning +1610.07723 Algebraic Geometry +1610.07724 Information Theory +1610.07725 Statistical Mechanics +1610.07726 Optimization and Control +1610.07727 Probability +1610.07728 Computer Vision and Pattern Recognition +1610.07731 Geometric Topology +1610.07732 Databases +1610.07733 Machine Learning +1610.07734 +1610.07735 Distributed, Parallel, and Cluster Computing +1610.07736 Information Theory +1610.07737 Category Theory +1610.07738 Optics +1610.07739 Functional Analysis +1610.07741 Networking and Internet Architecture +1610.07742 Strongly Correlated Electrons +1610.07743 Theory +1610.07744 Astrophysics of Galaxies +1610.07746 Group Theory +1610.07748 Applications +1610.07749 Fluid Dynamics +1610.07750 +1610.07752 Neural and Evolutionary Computing +1610.07753 Multimedia +1610.07754 Social and Information Networks +1610.07755 Combinatorics +1610.07756 Algebraic Geometry +1610.07758 Human-Computer Interaction +1610.07760 Analysis of PDEs +1610.07761 Rings and Algebras +1610.07762 Analysis of PDEs +1610.07763 +1610.07764 Theory +1610.07765 Probability +1610.07766 Data Structures and Algorithms +1610.07767 Tissues and Organs +1610.07769 Neurons and Cognition +1610.07770 Discrete Mathematics +1610.07771 Information Theory +1610.07772 Social and Information Networks +1610.07775 Rings and Algebras +1610.07776 Number Theory +1610.07777 +1610.07778 Data Structures and Algorithms +1610.07779 Chemical Physics +1610.07780 Optics +1610.07782 Number Theory +1610.07783 Astrophysics of Galaxies +1610.07784 Biological Physics +1610.07785 Cosmology and Nongalactic Astrophysics +1610.07789 Information Theory +1610.07791 Group Theory +1610.07792 Mesoscale and Nanoscale Physics +1610.07794 Representation Theory +1610.07795 Phenomenology +1610.07798 Optics +1610.07800 Soft Condensed Matter +1610.07801 Lattice +1610.07802 Instrumentation and Methods for Astrophysics +1610.07803 Instrumentation and Detectors +1610.07804 Computer Vision and Pattern Recognition +1610.07805 Theory +1610.07807 Analysis of PDEs +1610.07808 Computational Physics +1610.07809 Computation and Language +1610.07817 Number Theory +1610.07820 +1610.07821 Chaotic Dynamics +1610.07823 Algebraic Geometry +1610.07824 Materials Science +1610.07825 Experiment +1610.07827 Algebraic Geometry +1610.07828 Analysis of PDEs +1610.07829 Differential Geometry +1610.07831 Astrophysics of Galaxies +1610.07832 Algebraic Geometry +1610.07833 Materials Science +1610.07834 Rings and Algebras +1610.07835 Mesoscale and Nanoscale Physics +1610.07836 Combinatorics +1610.07837 Representation Theory +1610.07838 Analysis of PDEs +1610.07840 High Energy Astrophysical Phenomena +1610.07841 Combinatorics +1610.07842 Functional Analysis +1610.07843 Medical Physics +1610.07844 Computation and Language +1610.07845 Number Theory +1610.07846 Soft Condensed Matter +1610.07848 Strongly Correlated Electrons +1610.07850 Accelerator Physics +1610.07852 Differential Geometry +1610.07853 Mesoscale and Nanoscale Physics +1610.07854 Classical Analysis and ODEs +1610.07856 Dynamical Systems +1610.07857 Learning +1610.07864 Differential Geometry +1610.07867 History and Overview +1610.07868 Group Theory +1610.07871 High Energy Astrophysical Phenomena +1610.07872 Analysis of PDEs +1610.07873 General Physics +1610.07877 General Physics +1610.07878 Chemical Physics +1610.07880 Mesoscale and Nanoscale Physics +1610.07882 Computer Vision and Pattern Recognition +1610.07883 Learning +1610.07884 Software Engineering +1610.07887 Phenomenology +1610.07888 Combinatorics +1610.07889 Fluid Dynamics +1610.07890 +1610.07892 Multiagent Systems +1610.07894 Computation +1610.07896 +1610.07899 Other Computer Science +1610.07901 Multiagent Systems +1610.07902 Distributed, Parallel, and Cluster Computing +1610.07907 Combinatorics +1610.07909 Chemical Physics +1610.07911 Metric Geometry +1610.07913 Strongly Correlated Electrons +1610.07915 +1610.07917 Analysis of PDEs +1610.07918 Computation and Language +1610.07921 Machine Learning +1610.07922 Phenomenology +1610.07923 Dynamical Systems +1610.07925 Methodology +1610.07927 +1610.07929 +1610.07930 Computer Vision and Pattern Recognition +1610.07931 Computer Vision and Pattern Recognition +1610.07932 +1610.07933 Materials Science +1610.07935 Computer Vision and Pattern Recognition +1610.07936 General Physics +1610.07940 Computer Vision and Pattern Recognition +1610.07942 Fluid Dynamics +1610.07944 Fluid Dynamics +1610.07945 Number Theory +1610.07946 History and Overview +1610.07948 Cryptography and Security +1610.07949 Methodology +1610.07951 +1610.07952 Logic +1610.07954 Numerical Analysis +1610.07956 High Energy Astrophysical Phenomena +1610.07957 Phenomenology +1610.07959 Metric Geometry +1610.07961 Analysis of PDEs +1610.07963 Earth and Planetary Astrophysics +1610.07965 Programming Languages +1610.07968 Algebraic Topology +1610.07969 Information Theory +1610.07971 Number Theory +1610.07972 Theory +1610.07973 Representation Theory +1610.07974 Soft Condensed Matter +1610.07977 Cosmology and Nongalactic Astrophysics +1610.07978 Programming Languages +1610.07979 +1610.07981 Analysis of PDEs +1610.07982 Computers and Society +1610.07988 Combinatorics +1610.07990 +1610.07991 Theory +1610.07992 Numerical Analysis +1610.07994 Probability +1610.07995 Computer Vision and Pattern Recognition +1610.07997 Artificial Intelligence +1610.07998 Differential Geometry +1610.07999 Probability +1610.08000 Computation and Language +1610.08001 Solar and Stellar Astrophysics +1610.08002 Numerical Analysis +1610.08003 Physics and Society +1610.08004 Information Theory +1610.08008 Mesoscale and Nanoscale Physics +1610.08009 Statistical Mechanics +1610.08010 Classical Physics +1610.08012 Materials Science +1610.08013 Methodology +1610.08014 Materials Science +1610.08015 Distributed, Parallel, and Cluster Computing +1610.08018 Numerical Analysis +1610.08020 Software Engineering +1610.08021 +1610.08025 Optics +1610.08026 Information Theory +1610.08027 Logic +1610.08028 Phenomenology +1610.08030 Information Theory +1610.08031 Quantum Gases +1610.08033 Algebraic Geometry +1610.08036 Medical Physics +1610.08037 +1610.08041 Theory +astro-ph/9305005 +astro-ph/9404040 +astro-ph/9710235 +astro-ph/9711288 +astro-ph/9711310 +astro-ph/9712315 +astro-ph/9801163 +astro-ph/9802135 +astro-ph/9802216 +astro-ph/9802262 +chem-ph/9608001 Chemical Physics +cond-mat/0006280 +cond-mat/0203058 Materials Science +cond-mat/0701560 Disordered Systems and Neural Networks +cond-mat/9802233 Strongly Correlated Electrons +cond-mat/9803164 +cond-mat/9805063 Mesoscale and Nanoscale Physics +cond-mat/9806370 Strongly Correlated Electrons +gr-qc/9604049 +gr-qc/9805014 +hep-lat/9403018 Lattice +hep-ph/9309309 Phenomenology +hep-ph/9401324 Phenomenology +hep-ph/9403263 Phenomenology +hep-ph/9404296 Phenomenology +hep-ph/9705337 Phenomenology +hep-ph/9708399 Phenomenology +hep-ph/9710318 Phenomenology +hep-ph/9710329 Phenomenology +hep-ph/9712378 Phenomenology +hep-ph/9712423 Phenomenology +hep-ph/9801249 Phenomenology +hep-ph/9801259 Phenomenology +hep-ph/9801286 Phenomenology +hep-ph/9801299 Phenomenology +hep-ph/9801313 Phenomenology +hep-ph/9801340 Phenomenology +hep-ph/9801428 Phenomenology +hep-ph/9801451 Phenomenology +hep-ph/9801452 Phenomenology +hep-ph/9802332 Phenomenology +hep-ph/9805352 Phenomenology +hep-ph/9805361 Phenomenology +hep-ph/9806469 Phenomenology +hep-th/0007195 Theory +hep-th/0103203 Theory +hep-th/9508168 Theory +hep-th/9604038 Theory +hep-th/9707203 Theory +hep-th/9708165 Theory +hep-th/9801008 Theory +physics/9712056 General Physics +quant-ph/9709042 +quant-ph/9710062 +quant-ph/9711016 +quant-ph/9807065 +quant-ph/9906061 +quant-ph/9906077 +quant-ph/9907083 +0910.3875 Number Theory +1001.0953 Dynamical Systems +1003.4467 Dynamical Systems +1004.0214 General Topology +1009.1565 General Topology +1104.4130 Dynamical Systems +1106.0273 Dynamical Systems +1106.2467 Statistics Theory +1106.5022 Dynamical Systems +1110.0801 Probability +1201.2541 Dynamical Systems +1201.2861 Dynamical Systems +1203.6877 Probability +1205.3128 High Energy Astrophysical Phenomena +1207.4983 Probability +1301.2699 Methodology +1303.1698 Statistics Theory +1303.2423 Computation +1303.7259 Materials Science +1304.4490 Differential Geometry +1304.6746 Statistics Theory +1304.7089 Mesoscale and Nanoscale Physics +1305.5788 Dynamical Systems +1305.5798 Dynamical Systems +1305.6261 Superconductivity +1310.0048 Algebraic Geometry +1311.4748 Functional Analysis +1311.4821 Computational Complexity +1401.5605 Differential Geometry +1401.6610 Theory +1401.7064 Probability +1402.3227 Combinatorics +1403.2065 Learning +1403.4050 Geometric Topology +1403.5116 Spectral Theory +1403.5625 +1403.6450 Biological Physics +1405.0834 Probability +1405.2573 Probability +1406.3836 Methodology +1406.7188 +1407.3293 Geometric Topology +1407.8092 Probability +1408.0196 Information Theory +1408.3756 Optimization and Control +1409.2656 Cosmology and Nongalactic Astrophysics +1409.3452 Algebraic Topology +1409.6006 Number Theory +1409.6520 Analysis of PDEs +1409.8262 High Energy Astrophysical Phenomena +1410.1484 Theory +1410.2691 +1410.4463 Analysis of PDEs +1410.4724 Applications +1410.4754 Multiagent Systems +1410.5710 Phenomenology +1411.3983 Other Condensed Matter +1411.4750 Probability +1411.5864 Differential Geometry +1411.7551 Probability +1412.1120 Optics +1412.4625 Optics +1412.5797 Information Theory +1501.02135 Superconductivity +1501.03407 Information Theory +1501.04188 Group Theory +1502.04434 Machine Learning +1502.04958 Classical Analysis and ODEs +1502.06297 Software Engineering +1503.00347 Dynamical Systems +1503.01983 Probability +1503.02035 Probability +1503.02777 Neurons and Cognition +1503.03765 Mesoscale and Nanoscale Physics +1503.06997 Rings and Algebras +1503.09082 Learning +1504.00575 Fluid Dynamics +1504.00697 +1504.00800 Optimization and Control +1504.04570 Superconductivity +1504.04964 Statistical Mechanics +1504.05887 Classical Analysis and ODEs +1504.06769 Quantum Gases +1504.07688 Commutative Algebra +1504.08171 Instrumentation and Detectors +1505.00498 Strongly Correlated Electrons +1505.02818 Computers and Society +1505.02862 Information Theory +1505.04192 Phenomenology +1505.05078 Theory +1505.06420 Group Theory +1505.07914 +1506.01636 Statistical Mechanics +1506.02400 Graphics +1506.03052 +1506.03062 Experiment +1506.06083 Geometric Topology +1506.08477 Data Structures and Algorithms +1507.01714 +1507.02527 Phenomenology +1507.03320 Superconductivity +1507.04497 Information Theory +1507.04983 High Energy Astrophysical Phenomena +1507.05509 Algebraic Geometry +1508.01325 Strongly Correlated Electrons +1508.01795 Social and Information Networks +1508.02325 +1508.02919 Mathematical Finance +1508.03454 Quantitative Methods +1508.03646 Statistical Mechanics +1508.04456 Combinatorics +1508.07819 Experiment +1509.00160 Phenomenology +1509.01322 Cosmology and Nongalactic Astrophysics +1509.01808 Data Analysis, Statistics and Probability +1509.04152 +1509.04246 +1509.04366 Networking and Internet Architecture +1509.05385 Rings and Algebras +1509.05423 Phenomenology +1509.05606 Mesoscale and Nanoscale Physics +1509.06409 Strongly Correlated Electrons +1509.06497 Phenomenology +1509.06614 Theory +1509.07248 Probability +1510.01253 Differential Geometry +1510.01566 Cosmology and Nongalactic Astrophysics +1510.02152 +1510.02607 Optics +1510.02903 Statistics Theory +1510.04687 Probability +1510.04831 +1510.06610 Optics +1510.07593 Statistical Mechanics +1510.08221 Chemical Physics +1510.08785 Classical Physics +1511.00621 +1511.01929 Instrumentation and Methods for Astrophysics +1511.03307 Geophysics +1511.03674 Phenomenology +1511.04165 Metric Geometry +1511.04866 Algebraic Geometry +1511.05492 Group Theory +1511.05668 Solar and Stellar Astrophysics +1511.06511 Theory +1511.08298 High Energy Astrophysical Phenomena +1511.08803 High Energy Astrophysical Phenomena +1511.08812 Astrophysics of Galaxies +1511.08896 Astrophysics of Galaxies +1512.00290 Metric Geometry +1512.01389 Quantitative Methods +1512.01550 Solar and Stellar Astrophysics +1512.01561 Astrophysics of Galaxies +1512.03435 Mesoscale and Nanoscale Physics +1512.03554 Theory +1512.04935 Networking and Internet Architecture +1512.07692 Materials Science +1512.08869 Geometric Topology +1601.02134 Fluid Dynamics +1601.02612 Astrophysics of Galaxies +1601.02746 Atomic Physics +1601.03118 Information Theory +1601.03229 Databases +1601.03645 Physics and Society +1601.03672 +1601.03705 Number Theory +1601.03740 Cosmology and Nongalactic Astrophysics +1601.03748 Phenomenology +1601.03750 +1601.03753 Astrophysics of Galaxies +1601.03754 Data Structures and Algorithms +1601.03758 Representation Theory +1601.03767 Distributed, Parallel, and Cluster Computing +1601.03768 Systems and Control +1601.03769 Instrumentation and Methods for Astrophysics +1601.03774 Experiment +1601.03780 Combinatorics +1601.03783 Computation and Language +1601.03785 Artificial Intelligence +1601.03787 Numerical Analysis +1601.03789 Cosmology and Nongalactic Astrophysics +1601.03791 Combinatorics +1601.03794 Solar and Stellar Astrophysics +1601.03797 Databases +1601.03798 General Topology +1601.03799 Optimization and Control +1601.03803 Information Theory +1601.03809 Neural and Evolutionary Computing +1601.03810 Networking and Internet Architecture +1601.03814 Solar and Stellar Astrophysics +1601.03816 +1601.03817 Computational Geometry +1601.03820 Materials Science +1601.03823 +1601.03824 +1601.03829 Networking and Internet Architecture +1601.03830 Information Theory +1601.03831 Logic +1601.03832 Astrophysics of Galaxies +1601.03834 Atomic Physics +1601.03835 Logic in Computer Science +1601.03836 Complex Variables +1601.03841 Optics +1601.03842 Atomic Physics +1601.03843 +1601.03848 Classical Analysis and ODEs +1601.03849 Experiment +1601.03852 Metric Geometry +1601.03854 Distributed, Parallel, and Cluster Computing +1601.03855 Learning +1601.03856 Classical Analysis and ODEs +1601.03857 Astrophysics of Galaxies +1601.03861 Mesoscale and Nanoscale Physics +1601.03863 Analysis of PDEs +1601.03864 Statistical Mechanics +1601.03865 Theory +1601.03867 Astrophysics of Galaxies +1601.03868 Methodology +1601.03871 +1601.03873 Functional Analysis +1601.03882 Differential Geometry +1601.03885 Complex Variables +1601.03886 Fluid Dynamics +1601.03889 Analysis of PDEs +1601.03895 Instrumentation and Detectors +1601.03896 Computation and Language +1601.03897 Analysis of PDEs +1601.03898 Astrophysics of Galaxies +1601.03899 Representation Theory +1601.03900 Statistics Theory +1601.03901 Phenomenology +1601.03906 Statistics Theory +1601.03909 Populations and Evolution +1601.03910 Dynamical Systems +1601.03911 Probability +1601.03913 Solar and Stellar Astrophysics +1601.03914 Quantum Gases +1601.03915 Robotics +1601.03919 Metric Geometry +1601.03921 Cryptography and Security +1601.03922 Fluid Dynamics +1601.03928 Data Structures and Algorithms +1601.03933 Fluid Dynamics +1601.03934 Number Theory +1601.03937 Probability +1601.03938 Number Theory +1601.03939 Metric Geometry +1601.03940 +1601.03941 +1601.03942 +1601.03945 Computer Vision and Pattern Recognition +1601.03951 Algebraic Geometry +1601.03953 Theory +1601.03956 +1601.03965 Probability +1601.03976 Networking and Internet Architecture +1601.03980 Distributed, Parallel, and Cluster Computing +1601.03984 Networking and Internet Architecture +1601.03987 Commutative Algebra +1601.03992 +1601.03994 Phenomenology +1601.03995 History and Overview +1601.03998 Robotics +1601.04000 Functional Analysis +1601.04001 Optimization and Control +1601.04004 High Energy Astrophysical Phenomena +1601.04006 High Energy Astrophysical Phenomena +1601.04012 Computation and Language +1601.04019 +1601.04025 Dynamical Systems +1601.04028 Economics +1601.04029 Human-Computer Interaction +1601.04031 Complex Variables +1601.04032 Complex Variables +1601.04033 Machine Learning +1601.04034 Combinatorics +1601.04036 Databases +1601.04038 Social and Information Networks +1601.04044 Combinatorics +1601.04045 Number Theory +1601.04048 Symplectic Geometry +1601.04052 Instrumentation and Methods for Astrophysics +1601.04054 Representation Theory +1601.04056 Soft Condensed Matter +1601.04057 Materials Science +1601.04059 Information Theory +1601.04065 Computation +cs/9809118 Computational Complexity +nucl-th/0306078 +0904.4141 Differential Geometry +1103.1614 Representation Theory +1106.5463 Combinatorics +1212.0496 Category Theory +1302.3502 +1307.8371 Learning +1309.4361 Optics +1310.7063 Optimization and Control +1403.1453 Combinatorics +1403.3772 Logic in Computer Science +1403.7393 Probability +1408.5405 Neural and Evolutionary Computing +1409.3137 Numerical Analysis +1409.8594 Group Theory +1410.0661 Statistics Theory +1411.4821 Soft Condensed Matter +1412.3058 Analysis of PDEs +1412.4679 Machine Learning +1412.6111 +1501.01361 Social and Information Networks +1501.03505 +1502.00554 +1502.04020 +1503.01628 Combinatorics +1503.04879 Analysis of PDEs +1504.02559 Group Theory +1504.03015 Spectral Theory +1504.07496 Experiment +1505.05001 Group Theory +1505.05945 Symplectic Geometry +1505.06892 Probability +1505.06984 Computer Science and Game Theory +1506.00890 Strongly Correlated Electrons +1506.02345 Computer Vision and Pattern Recognition +1506.04418 Analysis of PDEs +1506.05597 +1506.05739 +1506.06369 Discrete Mathematics +1507.00503 Category Theory +1507.06160 Molecular Networks +1508.04334 Geometric Topology +1508.06951 +1508.07386 +1508.07407 Commutative Algebra +1508.07676 Soft Condensed Matter +1509.02508 Superconductivity +1509.03045 Digital Libraries +1509.07361 Materials Science +1509.08741 Complex Variables +1510.01448 Strongly Correlated Electrons +1510.02966 Soft Condensed Matter +1510.04536 Metric Geometry +1510.05279 Analysis of PDEs +1510.07046 Astrophysics of Galaxies +1510.07066 Rings and Algebras +1510.08012 Computer Vision and Pattern Recognition +1510.08270 Phenomenology +1511.05272 Algebraic Geometry +1511.06464 Learning +1511.08007 Commutative Algebra +1511.08798 Statistical Mechanics +1512.03432 Cosmology and Nongalactic Astrophysics +1512.06235 Computer Vision and Pattern Recognition +1512.08055 Logic in Computer Science +1512.08545 +1601.00319 Combinatorics +1601.00762 Phenomenology +1601.01566 Robotics +1601.07604 Commutative Algebra +1601.07623 +1602.00588 Group Theory +1602.02113 +1602.02199 Numerical Analysis +1602.02615 Complex Variables +1602.03866 Mesoscale and Nanoscale Physics +1602.03870 Theory +1602.04574 +1602.06384 Phenomenology +1602.07776 Computation and Language +1602.08002 Combinatorics +1602.08366 +1602.08400 Atomic Physics +1603.04123 Number Theory +1603.04136 Optimization and Control +1603.05098 Instrumentation and Detectors +1603.06698 Quantum Gases +1603.07299 Astrophysics of Galaxies +1603.08270 Neural and Evolutionary Computing +1603.08518 High Energy Astrophysical Phenomena +1604.01135 Complex Variables +1604.01224 Economics +1604.03918 Probability +1604.03925 +1604.05361 Geometric Topology +1604.07326 Mesoscale and Nanoscale Physics +1604.07470 +1604.07483 Dynamical Systems +1604.07604 +1604.08057 Lattice +1605.00349 Operator Algebras +1605.00561 Computer Vision and Pattern Recognition +1605.01271 +1605.01389 Phenomenology +1605.03495 Experiment +1605.03645 Differential Geometry +1605.03840 Classical Analysis and ODEs +1605.04183 Superconductivity +1605.06445 +1605.06446 High Energy Astrophysical Phenomena +1605.07338 Operator Algebras +1605.07649 +1606.00258 Neurons and Cognition +1606.00777 Phenomenology +1606.02591 Complex Variables +1606.03468 Combinatorics +1606.03706 Geometric Topology +1606.04043 Materials Science +1606.04168 Superconductivity +1606.04215 Analysis of PDEs +1606.06015 Theory +1606.07497 Populations and Evolution +1606.07834 +1606.08494 Experiment +1606.08569 +1606.08829 Physics and Society +1606.09255 Mesoscale and Nanoscale Physics +1606.09554 Materials Science +1606.09603 +1607.00434 Geophysics +1607.00472 General Mathematics +1607.00758 +1607.00980 Fluid Dynamics +1607.01300 Strongly Correlated Electrons +1607.01302 +1607.02286 Representation Theory +1607.05272 Earth and Planetary Astrophysics +1607.06405 Mesoscale and Nanoscale Physics +1607.06758 Strongly Correlated Electrons +1607.07093 Lattice +1607.07872 Cosmology and Nongalactic Astrophysics +1607.08750 Mesoscale and Nanoscale Physics +1608.00292 General Topology +1608.00384 Algebraic Geometry +1608.01289 Experiment +1608.01308 Theory +1608.01911 Social and Information Networks +1608.02352 Analysis of PDEs +1608.02754 Strongly Correlated Electrons +1608.02791 Instrumentation and Detectors +1608.02863 Combinatorics +1608.03899 Strongly Correlated Electrons +1608.04165 Information Theory +1608.04324 Analysis of PDEs +1608.04407 Theory +1608.04729 +1608.05237 Combinatorics +1608.05696 +1608.06616 Quantum Gases +1608.06807 Learning +1608.08132 Number Theory +1609.00071 Number Theory +1609.00868 Theory +1609.01029 Mesoscale and Nanoscale Physics +1609.01816 Information Theory +1609.01858 Phenomenology +1609.02112 Methodology +1609.02282 +1609.03800 Analysis of PDEs +1609.03801 Theory +1609.04896 Quantum Algebra +1609.04931 Digital Libraries +1609.05026 Fluid Dynamics +1609.05236 Algebraic Geometry +1609.06052 Applications +1609.06392 Mesoscale and Nanoscale Physics +1609.06822 Disordered Systems and Neural Networks +1609.07143 Phenomenology +1609.07229 Optimization and Control +1609.07566 Mesoscale and Nanoscale Physics +1609.07786 +1609.08187 Cryptography and Security +1609.08992 +1610.00260 Commutative Algebra +1610.00540 K-Theory and Homology +1610.01198 Methodology +1610.01462 Number Theory +1610.01542 Theory +1610.01742 Phenomenology +1610.02496 Distributed, Parallel, and Cluster Computing +1610.02606 Other Computer Science +1610.02652 Chemical Physics +1610.02808 Theory +1610.02846 Combinatorics +1610.03024 Artificial Intelligence +1610.03073 Strongly Correlated Electrons +1610.03139 Cosmology and Nongalactic Astrophysics +1610.03199 Differential Geometry +1610.03274 Complex Variables +1610.03360 Distributed, Parallel, and Cluster Computing +1610.03368 Optimization and Control +1610.03375 Statistics Theory +1610.03444 Mesoscale and Nanoscale Physics +1610.03486 Phenomenology +1610.03495 Astrophysics of Galaxies +1610.03504 Earth and Planetary Astrophysics +1610.03505 High Energy Astrophysical Phenomena +1610.03506 Cosmology and Nongalactic Astrophysics +1610.03509 High Energy Astrophysical Phenomena +1610.03510 Optics +1610.03511 Disordered Systems and Neural Networks +1610.03514 Networking and Internet Architecture +1610.03518 Robotics +1610.03520 Optics +1610.03523 Complex Variables +1610.03527 Information Theory +1610.03528 Number Theory +1610.03531 Solar and Stellar Astrophysics +1610.03534 Networking and Internet Architecture +1610.03535 Combinatorics +1610.03536 Soft Condensed Matter +1610.03537 Dynamical Systems +1610.03538 +1610.03540 +1610.03542 Computers and Society +1610.03543 Computational Complexity +1610.03547 Functional Analysis +1610.03548 Robotics +1610.03554 Social and Information Networks +1610.03555 Statistics Theory +1610.03556 +1610.03558 Mesoscale and Nanoscale Physics +1610.03560 Fluid Dynamics +1610.03563 Algebraic Geometry +1610.03566 Strongly Correlated Electrons +1610.03568 +1610.03569 +1610.03570 Optics +1610.03571 +1610.03572 Atomic Physics +1610.03573 Artificial Intelligence +1610.03574 +1610.03575 Probability +1610.03576 Superconductivity +1610.03577 Learning +1610.03580 Methodology +1610.03581 Analysis of PDEs +1610.03582 Computational Complexity +1610.03583 Rings and Algebras +1610.03584 Optics +1610.03585 Computation and Language +1610.03587 Information Theory +1610.03589 Numerical Analysis +1610.03591 Logic +1610.03593 Number Theory +1610.03595 Statistics Theory +1610.03596 Cell Behavior +1610.03598 Differential Geometry +1610.03599 Cosmology and Nongalactic Astrophysics +1610.03602 Combinatorics +1610.03603 Quantum Gases +1610.03606 Artificial Intelligence +1610.03607 +1610.03609 Metric Geometry +1610.03610 Probability +1610.03611 Probability +1610.03612 Computer Vision and Pattern Recognition +1610.03613 Numerical Analysis +1610.03614 Computer Vision and Pattern Recognition +1610.03615 Computer Vision and Pattern Recognition +1610.03616 Representation Theory +1610.03617 Statistical Mechanics +1610.03618 Distributed, Parallel, and Cluster Computing +1610.03620 Analysis of PDEs +1610.03622 +1610.03623 Computer Vision and Pattern Recognition +1610.03625 Group Theory +1610.03628 Computer Vision and Pattern Recognition +1610.03629 Solar and Stellar Astrophysics +1610.03632 +1610.03633 +1610.03634 Numerical Analysis +1610.03638 Functional Analysis +1610.03639 Optics +1610.03641 Dynamical Systems +1610.03643 Materials Science +1610.03644 Mesoscale and Nanoscale Physics +1610.03645 Optics +1610.03646 Robotics +1610.03647 Cryptography and Security +1610.03648 +1610.03649 Geophysics +1610.03650 +1610.03651 Robotics +1610.03654 Classical Analysis and ODEs +1610.03658 Commutative Algebra +1610.03660 Computer Vision and Pattern Recognition +1610.03664 Exactly Solvable and Integrable Systems +1610.03668 Populations and Evolution +1610.03669 Group Theory +1610.03674 +1610.03676 Social and Information Networks +1610.03677 Robotics +1610.03678 +1610.03679 Quantum Gases +1610.03681 Soft Condensed Matter +1610.03682 +1610.03684 Computer Vision and Pattern Recognition +1610.03685 Combinatorics +1610.03687 Methodology +1610.03688 Computational Physics +1610.03689 Lattice +1610.03691 Geometric Topology +1610.03693 Number Theory +1610.03694 Statistics Theory +1610.03696 Mesoscale and Nanoscale Physics +1610.03697 Phenomenology +1610.03700 +1610.03702 General Physics +1610.03703 General Physics +1610.03704 Human-Computer Interaction +1610.03705 Social and Information Networks +1610.03706 Digital Libraries +1610.03707 Analysis of PDEs +1610.03709 Commutative Algebra +1610.03712 Group Theory +1610.03713 Machine Learning +1610.03715 Computer Science and Game Theory +1610.03716 Mesoscale and Nanoscale Physics +1610.03717 Materials Science +1610.03719 Probability +1610.03720 Strongly Correlated Electrons +1610.03721 Data Structures and Algorithms +1610.03723 Physics Education +1610.03724 Applications +1610.03726 Functional Analysis +1610.03729 Systems and Control +1610.03734 Analysis of PDEs +1610.03735 Plasma Physics +1610.03736 Information Theory +1610.03737 Solar and Stellar Astrophysics +1610.03738 Learning +1610.03740 Rings and Algebras +1610.03741 Solar and Stellar Astrophysics +1610.03742 Mesoscale and Nanoscale Physics +1610.03744 +1610.03745 Computer Science and Game Theory +1610.03748 Analysis of PDEs +1610.03749 Classical Physics +1610.03750 Computation and Language +1610.03751 High Energy Astrophysical Phenomena +1610.03754 Classical Physics +1610.03757 Space Physics +1610.03762 Probability +1610.03764 Numerical Analysis +1610.03766 Discrete Mathematics +1610.03767 Theory +1610.03768 Geometric Topology +1610.03771 Computation and Language +1610.03772 Sound +1610.03775 Materials Science +1610.03776 Statistics Theory +1610.03777 Computer Vision and Pattern Recognition +1610.03782 Computer Vision and Pattern Recognition +1610.03784 Analysis of PDEs +1610.03786 Quantitative Methods +1610.03788 Data Structures and Algorithms +1610.03789 Solar and Stellar Astrophysics +1610.03790 +1610.03791 Algebraic Geometry +1610.03792 Information Theory +1610.03793 Learning +1610.03794 +1610.03796 Metric Geometry +1610.03798 Computational Complexity +1610.03801 Theory +1610.03803 Probability +1610.03804 Classical Analysis and ODEs +1610.03806 Soft Condensed Matter +1610.03808 +1610.03809 Neurons and Cognition +1610.03810 Quantum Algebra +1610.03817 Probability +1610.03818 +1610.03819 Numerical Analysis +1610.03820 Commutative Algebra +1610.03821 Probability +1610.03824 Analysis of PDEs +1610.03826 Strongly Correlated Electrons +1610.03827 Instrumentation and Detectors +1610.03830 Geometric Topology +1610.03831 Optimization and Control +1610.03833 Numerical Analysis +1610.03834 Networking and Internet Architecture +1610.03837 Quantum Algebra +1610.03838 +1610.03840 High Energy Astrophysical Phenomena +1610.03841 Theory +1610.03842 Algebraic Geometry +1610.03844 Rings and Algebras +hep-ph/0609282 Phenomenology +0801.2357 Chemical Physics +0811.1930 Combinatorics +0907.3925 Algebraic Topology +0908.0647 Mesoscale and Nanoscale Physics +1001.4213 Combinatorics +1003.4493 Symplectic Geometry +1004.0282 Combinatorics +1004.5023 Probability +1010.3884 Combinatorics +1103.3808 Dynamical Systems +1105.1860 Group Theory +1105.5087 Combinatorics +1202.0100 Statistical Finance +1202.4644 Other Condensed Matter +1207.1842 Statistical Finance +1208.0750 Mesoscale and Nanoscale Physics +1209.5475 Soft Condensed Matter +1209.6114 Computational Physics +1210.0463 +1211.6134 Differential Geometry +1212.4983 Mesoscale and Nanoscale Physics +1301.7293 Spectral Theory +1302.2613 Theory +1303.1879 Combinatorics +1303.2770 Combinatorics +1303.3082 Combinatorics +1303.3084 Combinatorics +1304.3549 Phenomenology +1306.1818 Chemical Physics +1306.2473 +1306.3541 Methodology +1306.5621 Instrumentation and Methods for Astrophysics +1306.6132 Combinatorics +1307.4912 Spectral Theory +1307.6437 Data Analysis, Statistics and Probability +1310.3032 Logic +1310.7236 Quantum Algebra +1311.1246 Complex Variables +1311.4932 Dynamical Systems +1311.7211 Disordered Systems and Neural Networks +1312.1634 Materials Science +1312.3161 Dynamical Systems +1401.6769 Materials Science +1402.4880 Combinatorics +1402.6981 Numerical Analysis +1403.1080 Artificial Intelligence +1403.2173 Optics +1403.6964 Solar and Stellar Astrophysics +1404.1992 Combinatorics +1406.1165 Statistical Mechanics +1407.2317 Probability +1408.0536 Rings and Algebras +1408.6882 Complex Variables +1409.1525 Differential Geometry +1409.3928 Optimization and Control +1410.0063 Algebraic Geometry +1410.5298 Symplectic Geometry +1410.6242 Numerical Analysis +1411.4274 Data Structures and Algorithms +1411.4419 Computer Vision and Pattern Recognition +1411.4705 Complex Variables +1411.6085 Quantum Algebra +1411.6946 Differential Geometry +1412.0280 Theory +1412.1354 Algebraic Geometry +1412.1355 Solar and Stellar Astrophysics +1412.2408 Differential Geometry +1412.4722 Analysis of PDEs +1412.8154 Quantum Algebra +1501.02785 Networking and Internet Architecture +1502.00328 Algebraic Geometry +1502.01204 Instrumentation and Detectors +1502.02854 Number Theory +1502.07423 Computer Vision and Pattern Recognition +1503.00689 +1503.04472 Probability +1503.07278 Differential Geometry +1504.00513 Social and Information Networks +1504.02394 Algebraic Topology +1504.02828 Algebraic Geometry +1504.03360 Mesoscale and Nanoscale Physics +1504.04424 Combinatorics +1504.05171 Computational Complexity +1504.06997 Functional Analysis +1504.08362 Computer Vision and Pattern Recognition +1505.01163 Statistics Theory +1505.03963 +1505.05044 Materials Science +1505.06761 Differential Geometry +1506.03059 Neural and Evolutionary Computing +1506.04212 Accelerator Physics +1506.07778 Number Theory +1506.08479 +1506.08568 Optimization and Control +1507.00208 Pricing of Securities +1507.00319 Fluid Dynamics +1507.03873 Numerical Analysis +1507.04852 Materials Science +1507.05235 Probability +1507.06275 Combinatorics +1507.06869 Algebraic Topology +1507.08876 Algebraic Geometry +1508.00827 Analysis of PDEs +1508.02307 Networking and Internet Architecture +1508.03302 +1508.03656 Pattern Formation and Solitons +1508.03891 Robotics +1508.04999 Learning +1508.05007 Quantum Gases +1508.07750 Logic +1509.00337 Computer Science and Game Theory +1509.00372 Trading and Market Microstructure +1509.02146 +1509.02197 Phenomenology +1509.03996 Astrophysics of Galaxies +1509.05009 Neural and Evolutionary Computing +1509.05246 Dynamical Systems +1509.05862 K-Theory and Homology +1509.06457 Trading and Market Microstructure +1509.06603 Numerical Analysis +1509.06805 Physics and Society +1509.07825 Theory +1509.08139 Analysis of PDEs +1510.00897 Representation Theory +1510.01317 Statistical Mechanics +1510.01985 Mesoscale and Nanoscale Physics +1510.02870 Soft Condensed Matter +1510.03406 Metric Geometry +1510.04386 Combinatorics +1510.05411 Number Theory +1510.05453 Cosmology and Nongalactic Astrophysics +1510.05474 Biological Physics +1510.05518 Optics +1510.05760 High Energy Astrophysical Phenomena +1510.06670 Differential Geometry +1510.07057 Astrophysics of Galaxies +1510.07060 Solar and Stellar Astrophysics +1511.00492 Physics and Society +1511.01160 Phenomenology +1511.03061 Algebraic Geometry +1511.03766 Learning +1511.04167 Superconductivity +1511.04352 Artificial Intelligence +1511.07376 Distributed, Parallel, and Cluster Computing +1511.08490 Strongly Correlated Electrons +1511.08595 Dynamical Systems +1512.00105 Differential Geometry +1512.01573 Combinatorics +1512.02620 Algebraic Geometry +1512.03058 High Energy Astrophysical Phenomena +1512.04612 Algebraic Topology +1512.05948 Computational Complexity +1512.06132 +1512.08195 Commutative Algebra +1512.08415 Computational Physics +1512.08554 Disordered Systems and Neural Networks +1512.08985 Algebraic Geometry +1601.00969 Combinatorics +1601.01009 Mesoscale and Nanoscale Physics +1601.01041 Combinatorics +1601.01325 Probability +1601.02126 Classical Analysis and ODEs +1601.04364 Dynamical Systems +1601.05074 Optimization and Control +1601.05173 Materials Science +1601.06536 Combinatorics +1601.07317 Group Theory +1601.07405 Algebraic Topology +1601.07452 Analysis of PDEs +1601.07530 Theory +1601.07718 Superconductivity +1601.07874 +1601.08197 Methodology +1602.00603 Numerical Analysis +1602.02026 Combinatorics +1602.02250 Information Theory +1602.03655 Computer Science and Game Theory +1602.03801 Computational Physics +1602.04407 Cosmology and Nongalactic Astrophysics +1602.05020 +1602.05147 Mesoscale and Nanoscale Physics +1602.05644 +1602.06520 Number Theory +1602.06980 Astrophysics of Galaxies +1602.07364 Information Theory +1602.07459 Geometric Topology +1602.07800 Machine Learning +1602.08073 Combinatorics +1602.08502 Group Theory +1602.08811 Analysis of PDEs +1603.00162 Neural and Evolutionary Computing +1603.00251 Probability +1603.00570 Learning +1603.00703 Fluid Dynamics +1603.00772 Artificial Intelligence +1603.01527 Probability +1603.01719 Instrumentation and Detectors +1603.02098 Geometric Topology +1603.02286 +1603.02343 Algebraic Geometry +1603.02493 Representation Theory +1603.02749 Mesoscale and Nanoscale Physics +1603.03164 Theory +1603.03210 Analysis of PDEs +1603.03455 Soft Condensed Matter +1603.03480 Differential Geometry +1603.03736 Materials Science +1603.04146 Computer Vision and Pattern Recognition +1603.04160 Methodology +1603.06312 Probability +1603.08317 Optics +1603.08366 Numerical Analysis +1603.08640 Number Theory +1603.08770 Theory +1603.09155 Optimization and Control +1604.00280 Complex Variables +1604.00927 Differential Geometry +1604.01397 Astrophysics of Galaxies +1604.03151 Cosmology and Nongalactic Astrophysics +1604.03384 Solar and Stellar Astrophysics +1604.03758 Computational Complexity +1604.03783 Mesoscale and Nanoscale Physics +1604.04822 Phenomenology +1604.05886 Soft Condensed Matter +1604.06055 Quantum Gases +1604.07070 Learning +1604.07338 Soft Condensed Matter +1604.07852 Superconductivity +1604.08207 High Energy Astrophysical Phenomena +1604.08551 Number Theory +1604.08591 Strongly Correlated Electrons +1604.08882 Strongly Correlated Electrons +1605.00012 Algebraic Geometry +1605.00021 Quantitative Methods +1605.02173 Theory +1605.02234 Methodology +1605.02365 Earth and Planetary Astrophysics +1605.02657 Mesoscale and Nanoscale Physics +1605.04339 Computational Physics +1605.05418 +1605.06013 Computers and Society +1605.06299 Theory +1605.06456 Theory +1605.06792 Learning +1605.07520 Statistics Theory +1605.07953 Combinatorics +1605.08285 Machine Learning +1605.08451 Superconductivity +1605.08521 +1605.08798 Machine Learning +1605.09019 Biomolecules +1605.09643 Statistical Mechanics +1605.09740 Rings and Algebras +1606.00899 Strongly Correlated Electrons +1606.00905 Superconductivity +1606.00971 Functional Analysis +1606.01499 Optics +1606.01600 Number Theory +1606.01743 High Energy Astrophysical Phenomena +1606.02216 +1606.02481 Cosmology and Nongalactic Astrophysics +1606.02516 +1606.02718 Statistical Mechanics +1606.03305 Materials Science +1606.03591 Number Theory +1606.03722 Materials Science +1606.03844 Methodology +1606.04103 Strongly Correlated Electrons +1606.04736 Mesoscale and Nanoscale Physics +1606.04970 Optimization and Control +1606.06172 Discrete Mathematics +1606.06338 Superconductivity +1606.06425 Astrophysics of Galaxies +1606.06792 +1606.06887 Phenomenology +1606.07776 Classical Physics +1606.08020 Theory +1606.09035 Logic in Computer Science +1606.09051 Materials Science +1606.09148 +1607.00203 Mesoscale and Nanoscale Physics +1607.00307 Distributed, Parallel, and Cluster Computing +1607.00368 Numerical Analysis +1607.00541 Materials Science +1607.00766 Numerical Analysis +1607.01177 Experiment +1607.01862 Superconductivity +1607.01934 +1607.01989 Computer Science and Game Theory +1607.02058 Phenomenology +1607.03367 Cosmology and Nongalactic Astrophysics +1607.03501 +1607.03848 Discrete Mathematics +1607.04120 Strongly Correlated Electrons +1607.04503 Algebraic Geometry +1607.04845 Cosmology and Nongalactic Astrophysics +1607.05006 Information Theory +1607.05008 Combinatorics +1607.05110 Strongly Correlated Electrons +1607.05331 Pattern Formation and Solitons +1607.05429 Numerical Analysis +1607.05970 Machine Learning +1607.06024 Theory +1607.06056 Mesoscale and Nanoscale Physics +1607.06148 Algebraic Geometry +1607.06180 Quantum Gases +1607.06546 Theory +1607.08197 Superconductivity +1607.08357 Dynamical Systems +1607.08657 Strongly Correlated Electrons +1608.00535 Molecular Networks +1608.00958 +1608.01382 Atomic Physics +1608.01394 Probability +1608.01488 Combinatorics +1608.02628 Numerical Analysis +1608.02638 Geometric Topology +1608.02780 Programming Languages +1608.02953 Theory +1608.02954 Theory +1608.02955 Theory +1608.02956 Theory +1608.02957 Theory +1608.02958 Theory +1608.02959 Theory +1608.02960 Theory +1608.02961 Theory +1608.02962 Theory +1608.02963 Theory +1608.02964 Theory +1608.02965 Theory +1608.02966 Theory +1608.02967 Theory +1608.02968 Theory +1608.02969 Theory +1608.03239 Earth and Planetary Astrophysics +1608.03574 Computer Science and Game Theory +1608.04118 Computational Physics +1608.05003 Mesoscale and Nanoscale Physics +1608.05919 Soft Condensed Matter +1608.06339 Information Theory +1608.06397 Analysis of PDEs +1608.06631 Optics +1608.06743 Differential Geometry +1608.08672 Number Theory +1609.01842 Materials Science +1609.02037 +1609.02241 +1609.03310 Fluid Dynamics +1609.03446 Algebraic Geometry +1609.03597 Geometric Topology +1609.04578 Number Theory +1609.04813 Theory +1609.04941 High Energy Astrophysical Phenomena +1609.05085 Statistical Mechanics +1609.05301 Functional Analysis +1609.05408 Chemical Physics +1609.05500 Dynamical Systems +1609.05521 Artificial Intelligence +1609.05537 +1609.05761 Algebraic Topology +1609.06090 Combinatorics +1609.06318 Theory +1609.06832 Combinatorics +1609.07388 +1609.07496 +1609.07594 Probability +1609.07614 Materials Science +1609.07675 Differential Geometry +1609.08053 Dynamical Systems +1609.08325 Functional Analysis +1609.09040 Probability +1609.09203 Strongly Correlated Electrons +1609.09465 Dynamical Systems +1609.09590 Differential Geometry +1610.00050 Analysis of PDEs +1610.00163 Machine Learning +1610.00230 Number Theory +1610.00292 Other Condensed Matter +1610.01129 +1610.01237 +1610.01245 Software Engineering +1610.01384 Dynamical Systems +1610.01401 Combinatorics +1610.01533 Theory +1610.01570 Mesoscale and Nanoscale Physics +1610.01825 Algebraic Geometry +1610.01833 +1610.01961 Social and Information Networks +1610.02171 Statistical Mechanics +1610.02172 Mesoscale and Nanoscale Physics +1610.02185 Analysis of PDEs +1610.02211 +1610.02247 Logic in Computer Science +1610.02328 Materials Science +1610.02446 Combinatorics +1610.02460 Numerical Analysis +1610.02608 Computational Engineering, Finance, and Science +1610.02609 Robotics +1610.02681 Theory +1610.02725 Methodology +1610.02798 Operator Algebras +1610.02891 Artificial Intelligence +1610.03005 Differential Geometry +1610.03044 Analysis of PDEs +1610.03136 Rings and Algebras +1610.03144 Analysis of PDEs +1610.03147 Learning +1610.03256 Computation and Language +1610.03325 Earth and Planetary Astrophysics +1610.03402 Theory +1610.03637 Algebraic Geometry +1610.03773 Instrumentation and Methods for Astrophysics +1610.04212 Probability +1610.04282 Dynamical Systems +1610.04431 Soft Condensed Matter +1610.04535 Rings and Algebras +1610.04543 +1610.04547 Disordered Systems and Neural Networks +1610.04608 General Physics +1610.04610 Computational Engineering, Finance, and Science +1610.04611 Phenomenology +1610.04614 Strongly Correlated Electrons +1610.04625 Spectral Theory +1610.04626 Algebraic Geometry +1610.04627 Information Theory +1610.04628 +1610.04629 Plasma Physics +1610.04632 Strongly Correlated Electrons +1610.04635 Space Physics +1610.04636 Distributed, Parallel, and Cluster Computing +1610.04637 Materials Science +1610.04641 Programming Languages +1610.04643 Logic +1610.04649 Analysis of PDEs +1610.04651 Mesoscale and Nanoscale Physics +1610.04652 Analysis of PDEs +1610.04654 Algebraic Topology +1610.04655 Fluid Dynamics +1610.04656 Other Quantitative Biology +1610.04657 Materials Science +1610.04660 Distributed, Parallel, and Cluster Computing +1610.04661 +1610.04663 Analysis of PDEs +1610.04664 Numerical Analysis +1610.04666 Accelerator Physics +1610.04667 Algebraic Geometry +1610.04668 Learning +1610.04669 Complex Variables +1610.04670 +1610.04671 Materials Science +1610.04672 Combinatorics +1610.04676 Distributed, Parallel, and Cluster Computing +1610.04678 Numerical Analysis +1610.04681 Optimization and Control +1610.04683 Dynamical Systems +1610.04684 Materials Science +1610.04687 Optics +1610.04688 Networking and Internet Architecture +1610.04690 Combinatorics +1610.04692 Materials Science +1610.04693 +1610.04695 Sound +1610.04696 Instrumentation and Methods for Astrophysics +1610.04697 Strongly Correlated Electrons +1610.04698 Numerical Analysis +1610.04699 Rings and Algebras +1610.04700 Dynamical Systems +1610.04701 Functional Analysis +1610.04702 Optimization and Control +1610.04703 Soft Condensed Matter +1610.04705 Emerging Technologies +1610.04706 Algebraic Geometry +1610.04708 +1610.04711 Data Structures and Algorithms +1610.04714 Distributed, Parallel, and Cluster Computing +1610.04715 Mesoscale and Nanoscale Physics +1610.04719 Plasma Physics +1610.04725 Computer Vision and Pattern Recognition +1610.04728 Geometric Topology +1610.04730 Computers and Society +1610.04734 Mesoscale and Nanoscale Physics +1610.04735 +1610.04738 Analysis of PDEs +1610.04741 Combinatorics +1610.04742 +1610.04751 Machine Learning +1610.04752 Databases +1610.04754 Tissues and Organs +1610.04755 +1610.04756 Analysis of PDEs +1610.04758 Human-Computer Interaction +1610.04759 Physics and Society +1610.04765 Phenomenology +1610.04766 Materials Science +1610.04767 Optimization and Control +1610.04768 Logic +1610.04770 Sound +1610.04771 Experiment +1610.04772 Analysis of PDEs +1610.04775 Strongly Correlated Electrons +1610.04780 Optics +1610.04781 +1610.04782 Machine Learning +1610.04783 Learning +1610.04784 Commutative Algebra +1610.04785 Data Structures and Algorithms +1610.04786 Earth and Planetary Astrophysics +1610.04787 Computer Vision and Pattern Recognition +1610.04788 Mesoscale and Nanoscale Physics +1610.04790 Programming Languages +1610.04793 Networking and Internet Architecture +1610.04794 Learning +1610.04795 Robotics +1610.04796 +1610.04798 Machine Learning +1610.04799 Programming Languages +1610.04800 General Topology +1610.04802 Experiment +1610.04804 Machine Learning +1610.04805 Computer Vision and Pattern Recognition +1610.04808 Physics Education +1610.04809 Computer Science and Game Theory +1610.04810 Geometric Topology +1610.04814 Information Retrieval +1610.04815 Systems and Control +1610.04820 Instrumentation and Methods for Astrophysics +1610.04821 Statistics Theory +1610.04822 Dynamical Systems +1610.04823 Computer Vision and Pattern Recognition +1610.04825 History and Overview +1610.04826 Combinatorics +1610.04827 Geophysics +1610.04829 General Topology +1610.04830 Robotics +1610.04833 Differential Geometry +1610.04835 Subcellular Processes +1610.04836 Networking and Internet Architecture +1610.04837 Symplectic Geometry +1610.04838 Data Structures and Algorithms +1610.04839 Number Theory +1610.04840 Analysis of PDEs +1610.04842 Biological Physics +1610.04843 Dynamical Systems +1610.04845 Commutative Algebra +1610.04846 Representation Theory +1610.04847 +1610.04848 +1610.04850 Information Retrieval +1610.04851 Information Theory +1610.04853 Solar and Stellar Astrophysics +1610.04856 Mesoscale and Nanoscale Physics +1610.04858 Optimization and Control +1610.04865 Number Theory +1610.04868 Optimization and Control +1610.04870 Experiment +1610.04872 Artificial Intelligence +1610.04874 Combinatorics +1610.04876 Superconductivity +1610.04877 Mesoscale and Nanoscale Physics +1610.04878 Mesoscale and Nanoscale Physics +1610.04879 K-Theory and Homology +1610.04880 Probability +1610.04881 Materials Science +1610.04882 Materials Science +1610.04883 Materials Science +1610.04884 Materials Science +1610.04885 Number Theory +1610.04887 Materials Science +1610.04888 Geometric Topology +1610.04889 Computer Vision and Pattern Recognition +1610.04890 Materials Science +1610.04891 Mesoscale and Nanoscale Physics +1610.04892 +1610.04894 Soft Condensed Matter +1610.04895 Solar and Stellar Astrophysics +1610.04896 Optics +1610.04897 +1610.04898 Theory +1610.04899 +1610.04901 Optimization and Control +1610.04902 Probability +1610.04903 +1610.04904 Differential Geometry +1610.04905 Optimization and Control +1610.04906 Experiment +1610.04910 Optimization and Control +1610.04912 Analysis of PDEs +1610.04913 Other Condensed Matter +1610.04916 Analysis of PDEs +1610.04917 Optics +1610.04920 Geometric Topology +1610.04922 Sound +1610.04924 Information Theory +1610.04927 +1610.04929 Machine Learning +1610.04930 +1610.04931 Probability +1610.04935 Data Structures and Algorithms +1610.04936 Graphics +1610.04937 +1610.04938 Classical Analysis and ODEs +1610.04939 Numerical Analysis +1610.04942 +1610.04943 Dynamical Systems +1610.04944 Algebraic Geometry +1610.04945 +1610.04947 +1610.04948 Algebraic Geometry +1610.04950 Networking and Internet Architecture +1610.04951 Instrumentation and Methods for Astrophysics +1610.04953 Materials Science +1610.04955 Logic +1610.04956 +1610.04957 Computer Vision and Pattern Recognition +1610.04958 Strongly Correlated Electrons +1610.04959 Quantitative Methods +1610.04960 Methodology +1610.04962 Neurons and Cognition +1610.04963 Databases +1610.04964 Artificial Intelligence +1610.04965 Sound +1610.04969 Number Theory +1610.04970 Strongly Correlated Electrons +1610.04971 Materials Science +1610.04972 Computer Science and Game Theory +1610.04973 Neural and Evolutionary Computing +1610.04974 Information Theory +1610.04976 Differential Geometry +1610.04977 Number Theory +1610.04979 Plasma Physics +1610.04983 Information Theory +1610.04984 Mesoscale and Nanoscale Physics +1610.04985 Probability +1610.04987 Analysis of PDEs +1610.04988 Systems and Control +1610.04989 Computation and Language +1610.04991 Phenomenology +1610.04993 Representation Theory +1610.04998 K-Theory and Homology +1610.04999 Geometric Topology +1610.05000 Solar and Stellar Astrophysics +1610.05005 Methodology +1610.05006 Representation Theory +1610.05007 Materials Science +1610.05009 Learning +1610.05010 Astrophysics of Galaxies +1610.05011 Computation and Language +1610.05015 Instrumentation and Methods for Astrophysics +1610.05016 Neural and Evolutionary Computing +1610.05018 Mathematical Finance +1610.05020 Differential Geometry +1610.05021 Optimization and Control +1610.05022 Statistics Theory +1610.05024 Strongly Correlated Electrons +1610.05026 Classical Analysis and ODEs +1610.05027 Differential Geometry +1610.05028 +1610.05029 Computational Engineering, Finance, and Science +1610.05031 Astrophysics of Galaxies +1610.05035 Methodology +1610.05036 Computer Vision and Pattern Recognition +1610.05037 Superconductivity +1610.05038 Theory +1610.05039 Combinatorics +1610.05040 Phenomenology +1610.05042 Commutative Algebra +1610.05043 Materials Science +1610.05044 Metric Geometry +1610.05045 Social and Information Networks +1610.05046 Applications +1610.05047 Computer Vision and Pattern Recognition +1610.05048 Space Physics +1610.05051 Numerical Analysis +1610.05053 Combinatorics +1610.05054 Medical Physics +1610.05055 Quantum Gases +1610.05058 Systems and Control +1610.05059 Plasma Physics +1610.05060 +1610.05063 Strongly Correlated Electrons +1610.05064 Logic in Computer Science +1610.05065 Instrumentation and Methods for Astrophysics +1610.05066 Populations and Evolution +1610.05069 K-Theory and Homology +1610.05070 Fluid Dynamics +1610.05071 Numerical Analysis +1610.05073 Differential Geometry +1610.05074 Mesoscale and Nanoscale Physics +1610.05075 Computers and Society +1610.05076 Methodology +1610.05078 +1610.05079 Materials Science +1610.05080 +1610.05081 Group Theory +1610.05085 Statistical Mechanics +1610.05086 Phenomenology +1610.05087 Number Theory +1610.05092 Analysis of PDEs +1610.05093 Combinatorics +1610.05096 Algebraic Geometry +1610.05097 Classical Physics +1610.05099 Classical Physics +1610.05100 Materials Science +1610.05101 Phenomenology +1610.05102 Differential Geometry +1610.05105 Applications +1610.05110 Strongly Correlated Electrons +1610.05112 Computers and Society +1610.05113 Populations and Evolution +1610.05116 Distributed, Parallel, and Cluster Computing +1610.05117 +1610.05118 Distributed, Parallel, and Cluster Computing +1610.05119 Materials Science +1610.05123 Phenomenology +1610.05124 Strongly Correlated Electrons +1610.05125 Analysis of PDEs +1610.05127 Optimization and Control +1610.05128 Mesoscale and Nanoscale Physics +1610.05129 Learning +1610.05132 +1610.05135 Soft Condensed Matter +1610.05137 Combinatorics +1610.05138 Analysis of PDEs +1610.05139 Astrophysics of Galaxies +1610.05140 +1610.05141 Data Structures and Algorithms +1610.05142 Systems and Control +1610.05144 Phenomenology +1610.05145 Category Theory +1610.05148 Instrumentation and Detectors +1610.05149 Astrophysics of Galaxies +1610.05151 High Energy Astrophysical Phenomena +1610.05152 Analysis of PDEs +1610.05153 +1610.05154 Materials Science +1610.05155 Data Structures and Algorithms +1610.05157 Number Theory +1610.05159 Geometric Topology +1610.05160 Machine Learning +1610.05162 Functional Analysis +1610.05163 Machine Learning +1610.05166 Materials Science +1610.05167 Chemical Physics +1610.05168 Chemical Physics +1610.05169 Chemical Physics +1610.05171 Economics +1610.05172 High Energy Astrophysical Phenomena +1610.05173 Solar and Stellar Astrophysics +1610.05174 Computer Vision and Pattern Recognition +1610.05175 Robotics +1610.05177 Astrophysics of Galaxies +1610.05178 Rings and Algebras +1610.05179 Materials Science +1610.05181 Numerical Analysis +1610.05182 Robotics +1610.05183 Applications +1610.05184 Networking and Internet Architecture +1610.05185 Solar and Stellar Astrophysics +1610.05186 Probability +1610.05188 Numerical Analysis +1610.05190 +1610.05194 Mesoscale and Nanoscale Physics +1610.05197 Materials Science +1610.05199 Probability +1610.05200 Probability +1610.05203 Classical Analysis and ODEs +1610.05205 Theory +1610.05207 Geometric Topology +1610.05208 Materials Science +1610.05209 Networking and Internet Architecture +1610.05212 Cryptography and Security +1610.05216 +1610.05220 Quantum Algebra +1610.05221 Probability +1610.05223 +1610.05224 Materials Science +1610.05225 Probability +1610.05226 Analysis of PDEs +1610.05227 Analysis of PDEs +1610.05228 Experiment +1610.05231 Neural and Evolutionary Computing +1610.05232 Statistics Theory +1610.05233 Classical Analysis and ODEs +1610.05234 Differential Geometry +1610.05235 Subcellular Processes +1610.05236 Mesoscale and Nanoscale Physics +1610.05238 Networking and Internet Architecture +1610.05239 Differential Geometry +1610.05240 Analysis of PDEs +1610.05242 Number Theory +1610.05243 Computation and Language +1610.05245 Theory +1610.05247 Machine Learning +1610.05248 Representation Theory +1610.05249 Analysis of PDEs +1610.05250 Combinatorics +1610.05251 Mesoscale and Nanoscale Physics +1610.05253 Accelerator Physics +1610.05254 +1610.05257 Physics and Society +1610.05258 Fluid Dynamics +1610.05259 Phenomenology +1610.05262 Dynamical Systems +1610.05264 Systems and Control +1610.05265 Complex Variables +1610.05267 Computer Vision and Pattern Recognition +1610.05268 Operator Algebras +1610.05272 Probability +1610.05275 Machine Learning +1610.05276 Numerical Analysis +1610.05277 Differential Geometry +1610.05278 Algebraic Geometry +1610.05279 Strongly Correlated Electrons +1610.05283 Theory +1610.05285 +1610.05288 Medical Physics +1610.05290 Algebraic Geometry +1610.05291 Quantum Algebra +1610.05293 Earth and Planetary Astrophysics +1610.05294 Dynamical Systems +1610.05296 +math/0411268 Combinatorics +math/0608702 Representation Theory +quant-ph/0406088 +1103.3713 Algebraic Geometry +1104.5661 Representation Theory +1204.5027 Statistical Mechanics +1207.4227 Rings and Algebras +1208.3537 Astrophysics of Galaxies +1301.0950 +1303.7357 Materials Science +1304.7625 Probability +1309.5502 Artificial Intelligence +1309.5508 Optimization and Control +1310.3430 Analysis of PDEs +1311.5404 Materials Science +1311.7470 +1312.5031 +1402.2970 Computer Science and Game Theory +1403.3282 Complex Variables +1403.8142 Algebraic Geometry +1405.2443 Dynamical Systems +1408.1292 Computer Vision and Pattern Recognition +1409.1107 Operator Algebras +1409.3562 +1411.2325 Algebraic Geometry +1411.6565 Materials Science +1411.7673 +1411.7799 Group Theory +1412.1559 Methodology +1501.06147 Symplectic Geometry +1502.01058 +1502.02952 Analysis of PDEs +1502.05852 Analysis of PDEs +1502.05856 Analysis of PDEs +1502.05861 Analysis of PDEs +1504.06952 Learning +1505.01692 Probability +1505.02950 Information Theory +1506.01406 Databases +1507.05051 +1507.05735 Complex Variables +1507.06243 Optimization and Control +1508.03932 Complex Variables +1508.04643 Representation Theory +1508.04713 Classical Physics +1508.04873 Geophysics +1508.04950 Algebraic Geometry +1508.05539 Logic +1509.06177 Algebraic Geometry +1509.07078 Dynamical Systems +1510.02515 Algebraic Geometry +1510.05175 Cryptography and Security +1510.05819 Optimization and Control +1510.06695 Optimization and Control +1510.08237 Molecular Networks +1511.00294 Algebraic Geometry +1511.01957 Statistics Theory +1511.02902 Mesoscale and Nanoscale Physics +1511.03697 Algebraic Geometry +1511.03721 Populations and Evolution +1511.04136 Computer Vision and Pattern Recognition +1511.06373 Theory +1511.06932 Probability +1511.07226 Numerical Analysis +1511.09152 Superconductivity +1511.09418 Exactly Solvable and Integrable Systems +1512.00216 Optimization and Control +1512.04320 Combinatorics +1512.05319 Group Theory +1512.05554 +1512.08250 Systems and Control +1512.08549 Theory +1512.09080 Probability +1601.04136 Optimization and Control +1601.04508 Mesoscale and Nanoscale Physics +1601.04767 Methodology +1601.05238 Optimization and Control +1601.05647 Computation and Language +1601.06710 Analysis of PDEs +1601.06983 Mesoscale and Nanoscale Physics +1601.07148 Pattern Formation and Solitons +1601.07750 Classical Physics +1602.01445 Methodology +1602.02015 Functional Analysis +1602.02675 Computational Engineering, Finance, and Science +1602.02708 Probability +1602.03776 Quantum Gases +1602.04164 Analysis of PDEs +1602.05621 Algebraic Geometry +1602.08121 Cosmology and Nongalactic Astrophysics +1603.02190 Phenomenology +1603.02606 Cosmology and Nongalactic Astrophysics +1603.03238 Quantitative Methods +1603.03287 Dynamical Systems +1603.03401 Analysis of PDEs +1603.03947 Sound +1603.04184 Systems and Control +1603.04407 Materials Science +1603.05859 Physics and Society +1603.07281 +1603.07334 High Energy Astrophysical Phenomena +1603.07915 Differential Geometry +1603.07974 Rings and Algebras +1603.08487 Rings and Algebras +1603.08509 Theory +1604.00702 Algebraic Geometry +1604.00850 Quantum Gases +1604.01499 Strongly Correlated Electrons +1604.01643 Neural and Evolutionary Computing +1604.01719 Theory +1604.04342 Analysis of PDEs +1604.04397 Information Theory +1604.05043 Number Theory +1604.05646 Fluid Dynamics +1604.05899 Information Theory +1604.06093 High Energy Astrophysical Phenomena +1604.07165 Mesoscale and Nanoscale Physics +1604.08606 Operator Algebras +1605.02360 Rings and Algebras +1605.03072 Learning +1605.03743 +1605.03758 Operator Algebras +1605.03990 +1605.04734 Classical Analysis and ODEs +1605.05716 Information Theory +1605.07421 Optimization and Control +1605.07539 +1605.08485 Human-Computer Interaction +1605.09098 Differential Geometry +1606.00032 Combinatorics +1606.00773 Mesoscale and Nanoscale Physics +1606.02266 Experiment +1606.02691 Differential Geometry +1606.03038 Mesoscale and Nanoscale Physics +1606.03241 Disordered Systems and Neural Networks +1606.03980 Materials Science +1606.04968 Analysis of PDEs +1606.05158 Statistics Theory +1606.05284 Operator Algebras +1606.05462 Medical Physics +1606.06676 Functional Analysis +1606.07123 Mesoscale and Nanoscale Physics +1606.08296 +1606.09245 Theory +1606.09365 Optimization and Control +1607.01299 Data Structures and Algorithms +1607.01467 Theory +1607.02271 Soft Condensed Matter +1607.02626 Mesoscale and Nanoscale Physics +1607.03342 Functional Analysis +1607.03791 Data Structures and Algorithms +1607.03840 Probability +1607.04838 Soft Condensed Matter +1607.05366 Theory +1607.05774 Analysis of PDEs +1607.06645 Medical Physics +1607.07729 Number Theory +1608.00905 Multimedia +1608.02822 Probability +1608.03725 Commutative Algebra +1608.05118 Instrumentation and Detectors +1608.05985 Statistics Theory +1608.05987 Statistics Theory +1608.06323 Mesoscale and Nanoscale Physics +1608.06430 Materials Science +1608.07005 Artificial Intelligence +1608.07151 Materials Science +1608.07671 +1608.07718 Materials Science +1608.07928 Fluid Dynamics +1608.08295 Geometric Topology +1608.08905 Learning +1609.00368 Machine Learning +1609.00508 Solar and Stellar Astrophysics +1609.00795 Biological Physics +1609.01057 Statistics Theory +1609.01295 Theory +1609.01408 Human-Computer Interaction +1609.01444 Dynamical Systems +1609.01453 Dynamical Systems +1609.01646 Analysis of PDEs +1609.01945 Logic +1609.02099 Differential Geometry +1609.02190 Geophysics +1609.02498 High Energy Astrophysical Phenomena +1609.02546 Systems and Control +1609.02604 High Energy Astrophysical Phenomena +1609.03120 +1609.03181 Algebraic Geometry +1609.03695 Human-Computer Interaction +1609.03977 Probability +1609.03980 Probability +1609.04059 +1609.04168 Theory +1609.04232 Methodology +1609.04235 Combinatorics +1609.04320 Fluid Dynamics +1609.04357 Analysis of PDEs +1609.04385 +1609.04390 Optics +1609.04398 Astrophysics of Galaxies +1609.04400 Cosmology and Nongalactic Astrophysics +1609.04402 Astrophysics of Galaxies +1609.04404 Theory +1609.04405 Astrophysics of Galaxies +1609.04406 Theory +1609.04408 +1609.04410 Instrumentation and Methods for Astrophysics +1609.04411 Instrumentation and Methods for Astrophysics +1609.04412 Instrumentation and Methods for Astrophysics +1609.04414 Probability +1609.04417 Computation and Language +1609.04418 +1609.04422 +1609.04423 Astrophysics of Galaxies +1609.04424 Dynamical Systems +1609.04425 Astrophysics of Galaxies +1609.04426 +1609.04427 +1609.04428 +1609.04429 Chaotic Dynamics +1609.04431 Algebraic Geometry +1609.04433 Combinatorics +1609.04434 High Energy Astrophysical Phenomena +1609.04435 Analysis of PDEs +1609.04436 Artificial Intelligence +1609.04437 Numerical Analysis +1609.04440 Logic +1609.04441 Analysis of PDEs +1609.04443 Populations and Evolution +1609.04445 Mesoscale and Nanoscale Physics +1609.04448 Phenomenology +1609.04449 Cryptography and Security +1609.04453 Computer Vision and Pattern Recognition +1609.04454 Theory +1609.04455 Experiment +1609.04456 Phenomenology +1609.04460 +1609.04464 Methodology +1609.04466 Applications +1609.04469 Materials Science +1609.04471 Data Structures and Algorithms +1609.04479 Optics +1609.04480 Combinatorics +1609.04482 Combinatorics +1609.04484 Numerical Analysis +1609.04486 Algebraic Geometry +1609.04487 Complex Variables +1609.04490 Number Theory +1609.04491 Numerical Analysis +1609.04493 Robotics +1609.04494 Differential Geometry +1609.04495 Learning +1609.04497 Representation Theory +1609.04498 +1609.04499 Information Theory +1609.04500 Algebraic Topology +1609.04504 Mathematical Software +1609.04506 Numerical Analysis +1609.04507 Representation Theory +1609.04510 Mesoscale and Nanoscale Physics +1609.04511 Strongly Correlated Electrons +1609.04512 Data Structures and Algorithms +1609.04514 Cryptography and Security +1609.04515 Subcellular Processes +1609.04520 Cosmology and Nongalactic Astrophysics +1609.04521 Networking and Internet Architecture +1609.04522 Machine Learning +1609.04528 Algebraic Geometry +1609.04529 Probability +1609.04530 Combinatorics +1609.04531 History and Overview +1609.04532 Representation Theory +1609.04535 Information Theory +1609.04536 Information Theory +1609.04540 Classical Analysis and ODEs +1609.04541 Machine Learning +1609.04542 Representation Theory +1609.04543 Functional Analysis +1609.04545 Mesoscale and Nanoscale Physics +1609.04546 +1609.04549 Information Theory +1609.04550 Theory +1609.04552 Networking and Internet Architecture +1609.04553 Networking and Internet Architecture +1609.04554 Networking and Internet Architecture +1609.04555 Optics +1609.04556 Information Retrieval +1609.04559 Probability +1609.04560 Differential Geometry +1609.04563 Theory +1609.04564 Optics +1609.04565 Theory +1609.04567 Distributed, Parallel, and Cluster Computing +1609.04571 Classical Analysis and ODEs +1609.04573 Algebraic Geometry +1609.04575 Phenomenology +1609.04579 Combinatorics +1609.04580 Cosmology and Nongalactic Astrophysics +1609.04583 High Energy Astrophysical Phenomena +1609.04584 +1609.04586 Information Theory +1609.04587 Analysis of PDEs +1609.04588 Dynamical Systems +1609.04589 Analysis of PDEs +1609.04593 Computational Complexity +1609.04596 Analysis of PDEs +1609.04600 Robotics +1609.04601 Numerical Analysis +1609.04602 Information Theory +1609.04603 Performance +1609.04604 Networking and Internet Architecture +1609.04606 Computational Geometry +1609.04607 Number Theory +1609.04608 Machine Learning +1609.04609 Rings and Algebras +1609.04610 Complex Variables +1609.04611 Analysis of PDEs +1609.04612 Cosmology and Nongalactic Astrophysics +1609.04613 Optics +1609.04615 Number Theory +1609.04616 Complex Variables +1609.04617 Phenomenology +1609.04618 Data Structures and Algorithms +1609.04619 Mesoscale and Nanoscale Physics +1609.04620 Trading and Market Microstructure +1609.04621 Computation and Language +1609.04622 Category Theory +1609.04623 Machine Learning +1609.04626 Combinatorics +1609.04627 Strongly Correlated Electrons +1609.04628 Computer Vision and Pattern Recognition +1609.04629 General Finance +1609.04630 Soft Condensed Matter +1609.04631 Analysis of PDEs +1609.04632 Soft Condensed Matter +1609.04635 Popular Physics +1609.04638 Populations and Evolution +1609.04642 Combinatorics +1609.04646 General Mathematics +1609.04650 Commutative Algebra +1609.04652 Human-Computer Interaction +1609.04653 Computer Vision and Pattern Recognition +1609.04654 K-Theory and Homology +1609.04656 Human-Computer Interaction +1609.04657 Human-Computer Interaction +1609.04659 Social and Information Networks +1609.04661 Data Structures and Algorithms +1609.04665 Chemical Physics +1609.04666 Systems and Control +1609.04667 Computers and Society +1609.04669 Optics +1609.04670 Differential Geometry +1609.04672 Optics +1609.04676 Algebraic Geometry +1609.04678 Chemical Physics +1609.04681 Optics +1609.04682 Methodology +1609.04684 Instrumentation and Methods for Astrophysics +1609.04685 Algebraic Geometry +1609.04689 +1609.04690 Analysis of PDEs +1609.04691 Optics +1609.04692 Combinatorics +1609.04693 Logic in Computer Science +1609.04694 Quantum Gases +1609.04695 Mesoscale and Nanoscale Physics +1609.04699 Quantitative Methods +1609.04701 Earth and Planetary Astrophysics +1609.04703 Mesoscale and Nanoscale Physics +1609.04705 Robotics +1609.04707 Probability +1609.04709 History and Philosophy of Physics +1609.04711 Fluid Dynamics +1609.04712 Analysis of PDEs +1609.04715 Number Theory +1609.04718 Cryptography and Security +1609.04720 +1609.04721 Machine Learning +1609.04727 Systems and Control +1609.04730 Robotics +1609.04731 Number Theory +1609.04732 Mesoscale and Nanoscale Physics +1609.04734 Mesoscale and Nanoscale Physics +1609.04737 Operator Algebras +1609.04738 Mesoscale and Nanoscale Physics +1609.04740 Computation +1609.04742 Instrumentation and Methods for Astrophysics +1609.04744 Probability +1609.04745 Robotics +1609.04747 Learning +1609.04748 General Mathematics +1609.04749 Differential Geometry +1609.04751 Earth and Planetary Astrophysics +1609.04754 +1609.04757 Computer Vision and Pattern Recognition +1609.04760 Materials Science +1609.04761 Combinatorics +1609.04762 Quantum Gases +1609.04765 Strongly Correlated Electrons +1609.04768 Materials Science +1609.04770 Cosmology and Nongalactic Astrophysics +1609.04771 Classical Analysis and ODEs +1609.04772 Classical Analysis and ODEs +1609.04778 Methodology +1609.04779 Computation and Language +1609.04780 Geometric Topology +1609.04781 Operating Systems +1609.04782 Computer Science and Game Theory +1609.04784 Numerical Analysis +1609.04785 Operating Systems +1609.04787 Group Theory +1609.04792 Number Theory +1609.04797 Algebraic Geometry +1609.04803 +1609.04807 Number Theory +gr-qc/0610095 +0906.2206 Analysis of PDEs +0906.4152 Algebraic Geometry +0911.3216 Cosmology and Nongalactic Astrophysics +1012.3494 Operator Algebras +1201.5921 Information Theory +1205.0956 Statistics Theory +1205.4207 Algebraic Geometry +1206.6229 General Mathematics +1208.1449 +1209.5036 Logic in Computer Science +1210.2073 Group Theory +1211.4260 Probability +1212.3261 Algebraic Geometry +1303.2103 Combinatorics +1304.0698 Logic +1305.0231 Algebraic Geometry +1305.1237 Phenomenology +1305.1567 +1308.4998 K-Theory and Homology +1310.7481 Geometric Topology +1312.3553 Combinatorics +1401.0307 Functional Analysis +1401.4197 Dynamical Systems +1401.7702 Social and Information Networks +1402.5500 Social and Information Networks +1403.4229 Probability +1403.4381 Category Theory +1403.6575 Analysis of PDEs +1404.0556 Algebraic Topology +1404.3423 Probability +1404.5097 Methodology +1405.4363 Combinatorics +1405.6004 Functional Analysis +1406.4305 Numerical Analysis +1406.6755 Dynamical Systems +1406.7057 Algebraic Geometry +1406.7808 Numerical Analysis +1407.2922 Phenomenology +1407.6661 Optimization and Control +1408.0356 Group Theory +1408.0542 Combinatorics +1408.1018 Number Theory +1409.4859 Combinatorics +1410.1038 Combinatorics +1410.2270 Phenomenology +1410.2801 Genomics +1410.2882 +1411.5874 Logic +1411.6449 Group Theory +1411.7476 Dynamical Systems +1411.7997 Functional Analysis +1412.1640 Biological Physics +1412.2402 Materials Science +1412.2909 Metric Geometry +1412.3327 Group Theory +1412.4069 Quantitative Methods +1501.00603 Theory +1501.01840 Methodology +1501.05187 Chaotic Dynamics +1501.06122 Metric Geometry +1501.06942 Combinatorics +1502.03463 Phenomenology +1502.07272 Theory +1502.07800 Algebraic Topology +1503.01139 Classical Analysis and ODEs +1503.01964 Probability +1503.03063 Analysis of PDEs +1503.03127 Chaotic Dynamics +1503.04999 Systems and Control +1503.05003 Classical Analysis and ODEs +1503.05836 Phenomenology +1504.00314 +1504.00896 Algebraic Topology +1504.01559 Superconductivity +1504.03000 Group Theory +1504.05438 Methodology +1505.00167 Mesoscale and Nanoscale Physics +1505.00675 Statistics Theory +1505.00994 Phenomenology +1505.03173 Computation +1505.04468 Group Theory +1505.04645 Phenomenology +1505.05068 Statistics Theory +1505.06460 General Topology +1505.06917 +1505.06983 Representation Theory +1505.07412 Probability +1505.07448 Combinatorics +1505.07629 Algebraic Topology +1505.08042 +1506.01022 Representation Theory +1506.03094 Cosmology and Nongalactic Astrophysics +1506.05378 Combinatorics +1506.08411 +1507.01003 +1507.01710 +1507.04373 Group Theory +1507.05888 Systems and Control +1507.06277 Number Theory +1507.07775 +1507.07881 +1507.07894 Geometric Topology +1508.00290 Analysis of PDEs +1508.00449 +1508.01462 Representation Theory +1508.03474 +1508.03758 Methodology +1508.04597 Commutative Algebra +1508.04669 Probability +1508.05771 Commutative Algebra +1509.02216 Phenomenology +1509.02959 Algebraic Topology +1509.04680 Classical Analysis and ODEs +1509.04689 +1509.05114 Group Theory +1509.05994 Dynamical Systems +1509.07168 Analysis of PDEs +1509.08067 Computer Vision and Pattern Recognition +1510.00024 Numerical Analysis +1510.04974 Analysis of PDEs +1510.04981 Analysis of PDEs +1510.06550 Phenomenology +1510.07027 Numerical Analysis +1510.07742 Dynamical Systems +1510.08125 Quantum Gases +1510.09014 Analysis of PDEs +1510.09144 Analysis of PDEs +1511.00232 Mesoscale and Nanoscale Physics +1511.00982 Logic +1511.01531 +1511.02153 Classical Analysis and ODEs +1511.06872 General Mathematics +1511.06942 Superconductivity +1511.07147 Learning +1511.07214 Differential Geometry +1511.07304 Probability +1511.07398 Materials Science +1511.08203 Solar and Stellar Astrophysics +1511.09354 Methodology +1511.09422 Machine Learning +1511.09430 Exactly Solvable and Integrable Systems +1512.00667 Mesoscale and Nanoscale Physics +1512.02187 Theory +1512.02275 Functional Analysis +1512.04220 Cosmology and Nongalactic Astrophysics +1512.07302 Operator Algebras +1512.07575 K-Theory and Homology +1512.07849 Discrete Mathematics +1512.08384 Algebraic Geometry +1512.09092 Phenomenology +1512.09250 Number Theory +1601.00078 Probability +1601.01629 Algebraic Topology +1601.01671 Cosmology and Nongalactic Astrophysics +1601.01959 Analysis of PDEs +1601.02119 Representation Theory +1601.03033 Algebraic Geometry +1601.03297 Experiment +1601.03958 Social and Information Networks +1601.04485 Information Theory +1601.07574 Neurons and Cognition +1602.00890 Phenomenology +1602.01587 Functional Analysis +1602.01816 Phenomenology +1602.02355 Machine Learning +1602.02557 Mesoscale and Nanoscale Physics +1602.02915 Optimization and Control +1602.04306 +1602.04997 Classical Analysis and ODEs +1602.05303 Quantum Gases +1602.05465 Exactly Solvable and Integrable Systems +1602.06032 Statistical Mechanics +1602.06748 Analysis of PDEs +1602.07129 Materials Science +1602.07184 Commutative Algebra +1602.07438 Instrumentation and Detectors +1602.07508 Number Theory +1602.08204 Information Theory +1602.08895 Numerical Analysis +1603.00446 Statistical Mechanics +1603.00663 Robotics +1603.01489 Software Engineering +1603.02281 Astrophysics of Galaxies +1603.02696 Strongly Correlated Electrons +1603.03656 Networking and Internet Architecture +1603.05076 General Physics +1603.05177 Materials Science +1603.07248 Differential Geometry +1603.07272 Group Theory +1603.07939 Computer Science and Game Theory +1603.08263 +1603.08422 Commutative Algebra +1604.00307 Algebraic Geometry +1604.00409 Computer Vision and Pattern Recognition +1604.01379 Theory +1604.01691 Mesoscale and Nanoscale Physics +1604.01927 Mesoscale and Nanoscale Physics +1604.02740 Number Theory +1604.03423 Combinatorics +1604.04203 Neurons and Cognition +1604.05079 Solar and Stellar Astrophysics +1604.05736 Statistical Mechanics +1604.05960 Probability +1604.06265 Algebraic Geometry +1604.06740 Statistical Mechanics +1604.07467 Data Structures and Algorithms +1604.08224 Mathematical Finance +1605.00431 Dynamical Systems +1605.00975 Information Theory +1605.00989 Earth and Planetary Astrophysics +1605.01360 Chemical Physics +1605.01640 Strongly Correlated Electrons +1605.02125 Operator Algebras +1605.02663 Statistical Mechanics +1605.03303 Disordered Systems and Neural Networks +1605.05310 Number Theory +1605.06005 +1605.07553 Number Theory +1605.07585 Quantum Gases +1605.07646 Methodology +1605.08201 Information Theory +1605.09146 Dynamical Systems +1605.09175 Theory +1605.09278 +1606.00426 Commutative Algebra +1606.01070 Superconductivity +1606.01128 Optimization and Control +1606.01736 Experiment +1606.02345 Group Theory +1606.03974 Classical Analysis and ODEs +1606.04118 Strongly Correlated Electrons +1606.05111 Strongly Correlated Electrons +1606.05445 General Topology +1606.06157 Classical Analysis and ODEs +1606.06760 Probability +1606.08798 Lattice +1606.09432 Computational Physics +1607.00831 Materials Science +1607.00904 Number Theory +1607.01107 Dynamical Systems +1607.01962 Classical Analysis and ODEs +1607.02259 +1607.03223 Phenomenology +1607.03311 Analysis of PDEs +1607.04043 Differential Geometry +1607.04264 High Energy Astrophysical Phenomena +1607.05137 Mesoscale and Nanoscale Physics +1607.05783 +1607.06802 Methodology +1607.06815 High Energy Astrophysical Phenomena +1607.07057 Computation and Language +1607.07959 Learning +1608.00110 Rings and Algebras +1608.02079 High Energy Astrophysical Phenomena +1608.02148 Computation +1608.02183 Computer Vision and Pattern Recognition +1608.02251 Statistics Theory +1608.02675 +1608.02709 Data Structures and Algorithms +1608.02875 Optimization and Control +1608.03255 Theory +1608.03915 Number Theory +1608.03924 Classical Analysis and ODEs +1608.04161 Chemical Physics +1608.04173 Instrumentation and Detectors +1608.05582 Computational Physics +1608.05822 Analysis of PDEs +1608.05862 +1608.05918 Number Theory +1608.05921 Machine Learning +1608.06350 Combinatorics +1608.06472 Cryptography and Security +1608.06613 Information Theory +1608.06742 Algebraic Geometry +1608.06884 Machine Learning +1608.06980 Data Structures and Algorithms +1608.07084 Probability +1608.07568 Discrete Mathematics +1608.07719 Learning +1608.07769 Analysis of PDEs +1608.07800 Information Theory +1608.07801 Applications +1608.08051 Operating Systems +1608.08159 Combinatorics +1608.08271 Biological Physics +1608.08360 +1608.08435 Learning +1608.08647 Number Theory +1608.08657 Optimization and Control +1608.08697 +1608.08897 Statistical Mechanics +1608.08898 Learning +1609.00086 Learning +1609.00099 Cryptography and Security +1609.00100 Cryptography and Security +1609.00183 Human-Computer Interaction +1609.00435 Computation and Language +1609.00464 Information Retrieval +1609.00573 Numerical Analysis +1609.00633 Symplectic Geometry +1609.00682 Physics and Society +1609.00711 Statistics Theory +1609.00719 Computational Geometry +1609.00721 Algebraic Geometry +1609.00724 Solar and Stellar Astrophysics +1609.00730 Cosmology and Nongalactic Astrophysics +1609.00731 Solar and Stellar Astrophysics +1609.00734 Atmospheric and Oceanic Physics +1609.00735 +1609.00736 Methodology +1609.00738 Combinatorics +1609.00740 Medical Physics +1609.00741 Classical Physics +1609.00743 Fluid Dynamics +1609.00745 +1609.00748 Geometric Topology +1609.00749 Phenomenology +1609.00752 Data Analysis, Statistics and Probability +1609.00754 Human-Computer Interaction +1609.00755 Data Structures and Algorithms +1609.00758 Mesoscale and Nanoscale Physics +1609.00759 Artificial Intelligence +1609.00762 Neurons and Cognition +1609.00763 Combinatorics +1609.00765 Numerical Analysis +1609.00766 Optics +1609.00769 Probability +1609.00770 Computation +1609.00772 Dynamical Systems +1609.00773 Symplectic Geometry +1609.00774 Symplectic Geometry +1609.00775 Information Theory +1609.00776 Analysis of PDEs +1609.00778 Algebraic Topology +1609.00781 Fluid Dynamics +1609.00783 Fluid Dynamics +1609.00784 Classical Analysis and ODEs +1609.00787 +1609.00788 Populations and Evolution +1609.00790 Social and Information Networks +1609.00791 Databases +1609.00793 Soft Condensed Matter +1609.00798 +1609.00799 Information Retrieval +1609.00800 Atomic Physics +1609.00805 General Topology +1609.00807 Numerical Analysis +1609.00808 Combinatorics +1609.00809 Instrumentation and Methods for Astrophysics +1609.00810 Data Structures and Algorithms +1609.00813 Information Theory +1609.00814 Statistics Theory +1609.00815 Optics +1609.00817 Computer Vision and Pattern Recognition +1609.00821 Analysis of PDEs +1609.00823 Probability +1609.00829 Numerical Analysis +1609.00830 Commutative Algebra +1609.00833 Information Theory +1609.00834 Methodology +1609.00835 Combinatorics +1609.00837 Geometric Topology +1609.00838 Probability +1609.00839 General Mathematics +1609.00840 Commutative Algebra +1609.00842 Optimization and Control +1609.00843 Learning +1609.00844 Phenomenology +1609.00845 Machine Learning +1609.00847 +1609.00849 Commutative Algebra +1609.00850 Physics Education +1609.00859 Materials Science +1609.00861 Statistics Theory +1609.00862 Optimization and Control +1609.00866 Computer Vision and Pattern Recognition +1609.00867 Computational Geometry +1609.00869 Risk Management +1609.00871 Data Analysis, Statistics and Probability +1609.00873 Experiment +1609.00875 Operating Systems +1609.00876 Physics and Society +1609.00878 Computer Vision and Pattern Recognition +1609.00880 Materials Science +1609.00881 Cryptography and Security +1609.00883 Statistics Theory +1609.00885 Probability +1609.00887 Systems and Control +1609.00888 Materials Science +1609.00890 Classical Analysis and ODEs +1609.00891 Classical Analysis and ODEs +1609.00893 Numerical Analysis +1609.00896 Data Structures and Algorithms +1609.00897 Differential Geometry +1609.00898 Earth and Planetary Astrophysics +1609.00900 Neurons and Cognition +1609.00903 Accelerator Physics +1609.00904 Artificial Intelligence +1609.00908 Methodology +1609.00909 Combinatorics +1609.00910 Algebraic Geometry +1609.00911 +1609.00913 +1609.00914 Combinatorics +1609.00915 Instrumentation and Methods for Astrophysics +1609.00916 Fluid Dynamics +1609.00917 +1609.00920 Algebraic Topology +1609.00921 Machine Learning +1609.00922 Analysis of PDEs +1609.00925 Mesoscale and Nanoscale Physics +1609.00932 Learning +1609.00933 Combinatorics +1609.00934 Information Theory +1609.00935 Probability +1609.00936 Functional Analysis +1609.00938 Soft Condensed Matter +1609.00939 Representation Theory +1609.00940 Statistics Theory +1609.00943 Phenomenology +1609.00944 Rings and Algebras +1609.00952 Commutative Algebra +1609.00953 +1609.00954 +1609.00955 Commutative Algebra +1609.00956 Algebraic Geometry +1609.00957 Complex Variables +1609.00959 Genomics +1609.00961 +1609.00963 Representation Theory +1609.00964 +1609.00966 +1609.00967 Computer Vision and Pattern Recognition +1609.00968 +1609.00969 Information Retrieval +1609.00971 +1609.00974 Statistical Mechanics +1609.00978 Machine Learning +1609.00979 Analysis of PDEs +1609.00980 Combinatorics +1609.00982 Solar and Stellar Astrophysics +1609.00983 Combinatorics +1609.00984 Quantum Algebra +1609.00989 Probability +1609.00990 Databases +1609.00992 Information Retrieval +1609.00993 Probability +1609.00995 Instrumentation and Methods for Astrophysics +1609.00996 Computational Physics +1609.00997 Algebraic Geometry +1609.00999 Mathematical Software +1609.01000 Learning +1609.01002 Combinatorics +1609.01003 Probability +1609.01007 Probability +1609.01008 Differential Geometry +1609.01010 Symbolic Computation +1609.01011 Analysis of PDEs +1609.01014 Astrophysics of Galaxies +1609.01015 Neurons and Cognition +1609.01016 Combinatorics +1609.01017 Human-Computer Interaction +1609.01019 Optimization and Control +1609.01020 Materials Science +1609.01021 Superconductivity +1609.01022 Computation +1609.01023 Plasma Physics +1609.01028 Optimization and Control +1609.01033 Algebraic Geometry +1609.01034 Geophysics +1609.01036 Metric Geometry +1609.01038 Superconductivity +1609.01039 Representation Theory +1609.01041 Instrumentation and Methods for Astrophysics +1609.01042 Combinatorics +1609.01043 Networking and Internet Architecture +1609.01044 Robotics +1609.01045 Emerging Technologies +1609.01046 Numerical Analysis +1609.01047 Materials Science +1609.01048 Combinatorics +1609.01053 Information Theory +1609.01054 Materials Science +1609.01055 Distributed, Parallel, and Cluster Computing +1609.01058 Number Theory +1609.01062 Complex Variables +1609.01064 Computer Vision and Pattern Recognition +1609.01065 Quantum Gases +1609.01066 Probability +1609.01067 Statistics Theory +1609.01068 Distributed, Parallel, and Cluster Computing +1609.01070 Human-Computer Interaction +1609.01071 Solar and Stellar Astrophysics +1609.01072 Astrophysics of Galaxies +1609.01073 +1609.01074 Optimization and Control +1609.01075 Mesoscale and Nanoscale Physics +1609.01076 Strongly Correlated Electrons +1609.01078 Computational Complexity +1609.01082 Fluid Dynamics +1609.01083 Functional Analysis +1609.01084 Dynamical Systems +1609.01088 Mathematical Software +1609.01097 Operator Algebras +1609.01100 Computer Vision and Pattern Recognition +1609.01101 Networking and Internet Architecture +1609.01102 Combinatorics +1609.01104 Information Theory +1609.01105 Physics and Society +1609.01107 Software Engineering +1609.01109 Functional Analysis +1609.01110 Cosmology and Nongalactic Astrophysics +1609.01112 Optics +1609.01115 Combinatorics +1609.01116 Discrete Mathematics +1609.01117 Information Theory +1609.01120 Combinatorics +1609.01123 Analysis of PDEs +1609.01124 +1609.01128 Combinatorics +1609.01131 Computers and Society +1609.01134 Instrumentation and Methods for Astrophysics +1609.01136 Information Theory +1609.01137 Biological Physics +1609.01138 Probability +1609.01139 Information Theory +1609.01140 Solar and Stellar Astrophysics +1609.01141 Rings and Algebras +1609.01144 Rings and Algebras +1609.01145 Atomic and Molecular Clusters +1609.01146 Numerical Analysis +1609.01149 +1609.01155 General Mathematics +1609.01156 +1609.01158 Optics +1609.01160 Number Theory +1609.01163 Popular Physics +1609.01165 Statistics Theory +1609.01166 Algebraic Geometry +1609.01167 High Energy Astrophysical Phenomena +1609.01169 Differential Geometry +1609.01170 Geometric Topology +1609.01171 Programming Languages +1609.01172 Chemical Physics +1609.01173 Statistical Mechanics +1609.01175 +1609.01176 Learning +1609.01178 Information Theory +1609.01180 Statistical Mechanics +1609.01183 Representation Theory +1609.01186 Computers and Society +1609.01187 Computers and Society +1609.01188 Computation and Language +1609.01190 Networking and Internet Architecture +1609.01191 +1609.01194 Classical Analysis and ODEs +1609.01195 Algebraic Geometry +1609.01196 Dynamical Systems +1609.01197 Number Theory +1609.01198 +1609.01200 Mesoscale and Nanoscale Physics +1609.01201 Chemical Physics +1609.01202 Theory +1609.01203 Learning +1609.01205 Cosmology and Nongalactic Astrophysics +1609.01206 Experiment +1609.01207 Physics and Society +1609.01210 Soft Condensed Matter +1609.01211 Systems and Control +1609.01213 Number Theory +1609.01215 Materials Science +1609.01217 Physics and Society +1609.01218 Classical Analysis and ODEs +1609.01219 Mesoscale and Nanoscale Physics +1609.01220 Logic in Computer Science +1609.01221 Combinatorics +1609.01223 Materials Science +1609.01224 Number Theory +1609.01226 Learning +1609.01228 Computer Vision and Pattern Recognition +1609.01232 Complex Variables +1609.01235 Computation and Language +1609.01236 Classical Analysis and ODEs +1609.01238 Probability +1609.01239 Physics and Society +1609.01240 Combinatorics +1609.01241 +1609.01242 Differential Geometry +1609.01243 Differential Geometry +1609.01244 Mesoscale and Nanoscale Physics +1609.01247 Combinatorics +1609.01249 Classical Analysis and ODEs +1609.01255 Numerical Analysis +1609.01256 Earth and Planetary Astrophysics +1609.01259 High Energy Astrophysical Phenomena +1609.01261 Dynamical Systems +1609.01262 Number Theory +1609.01264 Complex Variables +1609.01266 Discrete Mathematics +1609.01268 Mesoscale and Nanoscale Physics +1609.01269 Analysis of PDEs +1609.01273 Probability +hep-ph/0001059 Phenomenology +hep-ph/0001100 Phenomenology +hep-ph/0001174 Phenomenology +hep-ph/0001183 Phenomenology +hep-ph/0001230 Phenomenology +hep-ph/0001243 Phenomenology +hep-ph/0001270 Phenomenology +hep-ph/0001303 Phenomenology +hep-ph/0001320 Phenomenology +hep-ph/0002029 Phenomenology +hep-ph/0002035 Phenomenology +hep-ph/0002043 Phenomenology +hep-ph/0002060 Phenomenology +hep-ph/0002084 Phenomenology +hep-ph/0002091 Phenomenology +hep-ph/0002119 Phenomenology +hep-ph/0002159 Phenomenology +hep-ph/0002291 Phenomenology +hep-ph/0003016 Phenomenology +hep-ph/0003087 Phenomenology +hep-ph/0003104 Phenomenology +hep-ph/0003150 Phenomenology +hep-ph/0003202 Phenomenology +hep-ph/0003285 Phenomenology +hep-ph/0003291 Phenomenology +hep-ph/0003322 Phenomenology +hep-ph/0004080 Phenomenology +hep-ph/0004109 Phenomenology +hep-ph/0004132 Phenomenology +hep-ph/0004176 Phenomenology +hep-ph/0004185 Phenomenology +hep-ph/0004193 Phenomenology +hep-ph/0004230 Phenomenology +hep-ph/0005024 Phenomenology +hep-ph/0005063 Phenomenology +hep-ph/0005071 Phenomenology +hep-ph/0005107 Phenomenology +hep-ph/0005141 Phenomenology +hep-ph/0005154 Phenomenology +hep-ph/0005186 Phenomenology +hep-ph/0005212 Phenomenology +hep-ph/0005213 Phenomenology +hep-ph/0005231 Phenomenology +hep-ph/0005260 Phenomenology +hep-ph/0005271 Phenomenology +hep-ph/0006057 Phenomenology +hep-ph/0006130 Phenomenology +hep-ph/0006194 Phenomenology +hep-ph/0006210 Phenomenology +hep-ph/0006236 Phenomenology +hep-ph/0006326 Phenomenology +hep-ph/0006336 Phenomenology +hep-ph/0006337 Phenomenology +hep-ph/0007014 Phenomenology +hep-ph/0007044 Phenomenology +hep-ph/0007048 Phenomenology +hep-ph/0007115 Phenomenology +hep-ph/0007127 Phenomenology +hep-ph/0007144 Phenomenology +hep-ph/0007232 Phenomenology +hep-ph/0007248 Phenomenology +hep-ph/0007274 Phenomenology +hep-ph/0007279 Phenomenology +hep-ph/0007303 Phenomenology +hep-ph/0007306 Phenomenology +hep-ph/0008151 Phenomenology +hep-ph/0008163 Phenomenology +hep-ph/0008282 Phenomenology +hep-ph/0009056 Phenomenology +hep-ph/0009097 Phenomenology +hep-ph/0009120 Phenomenology +hep-ph/0009239 Phenomenology +hep-ph/0009287 Phenomenology +hep-ph/0009322 Phenomenology +hep-ph/0010020 Phenomenology +hep-ph/0010063 Phenomenology +hep-ph/0010108 Phenomenology +hep-ph/0010159 Phenomenology +hep-ph/0010261 Phenomenology +hep-ph/0010285 Phenomenology +hep-ph/0011037 Phenomenology +hep-ph/0011069 Phenomenology +hep-ph/0011101 Phenomenology +hep-ph/0011125 Phenomenology +hep-ph/0011171 Phenomenology +hep-ph/0011198 Phenomenology +hep-ph/0011204 Phenomenology +hep-ph/0011237 Phenomenology +hep-ph/0011319 Phenomenology +hep-ph/0011347 Phenomenology +hep-ph/0012006 Phenomenology +hep-ph/0012022 Phenomenology +hep-ph/0012030 Phenomenology +hep-ph/0012041 Phenomenology +hep-ph/0012106 Phenomenology +hep-ph/0012136 Phenomenology +hep-ph/0012142 Phenomenology +hep-ph/0012220 Phenomenology +hep-ph/0012312 Phenomenology +hep-ph/0012320 Phenomenology +hep-ph/0012342 Phenomenology +hep-ph/0012343 Phenomenology +hep-ph/0012356 Phenomenology +hep-ph/0012368 Phenomenology +hep-ph/0101112 Phenomenology +hep-ph/0101138 Phenomenology +hep-ph/0101189 Phenomenology +hep-ph/0102023 Phenomenology +hep-ph/0102064 Phenomenology +hep-ph/0102065 Phenomenology +hep-ph/0102092 Phenomenology +hep-ph/0102194 Phenomenology +hep-ph/0102199 Phenomenology +hep-ph/0102219 Phenomenology +hep-ph/0102232 Phenomenology +hep-ph/0102248 Phenomenology +hep-ph/0102276 Phenomenology +hep-ph/0102335 Phenomenology +hep-ph/0103007 Phenomenology +hep-ph/0103008 Phenomenology +hep-ph/0103047 Phenomenology +hep-ph/0103060 Phenomenology +hep-ph/0103097 Phenomenology +hep-ph/0103109 Phenomenology +hep-ph/0103173 Phenomenology +hep-ph/0103189 Phenomenology +hep-ph/0103190 Phenomenology +hep-ph/0103262 Phenomenology +hep-ph/0103287 Phenomenology +hep-ph/0104046 Phenomenology +hep-ph/0104064 Phenomenology +hep-ph/0104073 Phenomenology +hep-ph/0104098 Phenomenology +hep-ph/0104123 Phenomenology +hep-ph/0104138 Phenomenology +hep-ph/0104179 Phenomenology +hep-ph/0104205 Phenomenology +hep-ph/0104220 Phenomenology +hep-ph/0104230 Phenomenology +hep-ph/0105003 Phenomenology +hep-ph/0105060 Phenomenology +hep-ph/0105075 Phenomenology +hep-ph/0105077 Phenomenology +hep-ph/0105094 Phenomenology +hep-ph/0105117 Phenomenology +hep-ph/0105230 Phenomenology +hep-ph/0105244 Phenomenology +hep-ph/0105281 Phenomenology +hep-ph/0105282 Phenomenology +hep-ph/0105294 Phenomenology +hep-ph/0105311 Phenomenology +hep-ph/0105320 Phenomenology +hep-ph/0106012 Phenomenology +hep-ph/0106018 Phenomenology +hep-ph/0106066 Phenomenology +hep-ph/0106082 Phenomenology +hep-ph/0106087 Phenomenology +hep-ph/0106100 Phenomenology +hep-ph/0106118 Phenomenology +hep-ph/0106149 Phenomenology +hep-ph/0106185 Phenomenology +hep-ph/0106202 Phenomenology +hep-ph/0107019 Phenomenology +hep-ph/0107170 Phenomenology +hep-ph/0107302 Phenomenology +hep-ph/0108013 Phenomenology +hep-ph/0108153 Phenomenology +hep-ph/0108179 Phenomenology +hep-ph/0109035 Phenomenology +hep-ph/0109065 Phenomenology +hep-ph/0109086 Phenomenology +hep-ph/0109116 Phenomenology +hep-ph/0109261 Phenomenology +hep-ph/0109281 Phenomenology +hep-ph/0110012 Phenomenology +hep-ph/0110048 Phenomenology +hep-ph/0110101 Phenomenology +hep-ph/0110130 Phenomenology +hep-ph/0110149 Phenomenology +hep-ph/0110162 Phenomenology +hep-ph/0110173 Phenomenology +hep-ph/0110202 Phenomenology +hep-ph/0110383 Phenomenology +hep-ph/0111064 Phenomenology +hep-ph/0111158 Phenomenology +hep-ph/0111188 Phenomenology +hep-ph/0111271 Phenomenology +hep-ph/0111332 Phenomenology +hep-ph/0111350 Phenomenology +hep-ph/0111371 Phenomenology +hep-ph/0112102 Phenomenology +hep-ph/0112180 Phenomenology +hep-ph/0112185 Phenomenology +hep-ph/0112228 Phenomenology +hep-ph/0112359 Phenomenology +hep-ph/0201030 Phenomenology +hep-ph/0201058 Phenomenology +hep-ph/0201061 Phenomenology +hep-ph/0201065 Phenomenology +hep-ph/0201135 Phenomenology +hep-ph/0201152 Phenomenology +hep-ph/0201171 Phenomenology +hep-ph/0201186 Phenomenology +hep-ph/0201202 Phenomenology +hep-ph/0201219 Phenomenology +hep-ph/0201231 Phenomenology +hep-ph/0201303 Phenomenology +hep-ph/0202057 Phenomenology +hep-ph/0202133 Phenomenology +hep-ph/0202211 Phenomenology +hep-ph/0202260 Phenomenology +hep-ph/0202276 Phenomenology +hep-ph/0203055 Phenomenology +hep-ph/0203087 Phenomenology +hep-ph/0203142 Phenomenology +hep-ph/0203144 Phenomenology +hep-ph/0203155 Phenomenology +hep-ph/0203157 Phenomenology +hep-ph/0203197 Phenomenology +hep-ph/0203249 Phenomenology +hep-ph/0204021 Phenomenology +hep-ph/0204055 Phenomenology +hep-ph/0204079 Phenomenology +hep-ph/0204117 Phenomenology +hep-ph/0204160 Phenomenology +hep-ph/0204351 Phenomenology +hep-ph/0204355 Phenomenology +hep-ph/0205028 Phenomenology +hep-ph/0205045 Phenomenology +hep-ph/0205116 Phenomenology +hep-ph/0205123 Phenomenology +hep-ph/0205170 Phenomenology +hep-ph/0205278 Phenomenology +hep-ph/0206030 Phenomenology +hep-ph/0206048 Phenomenology +hep-ph/0206144 Phenomenology +hep-ph/0206223 Phenomenology +hep-ph/0207046 Phenomenology +hep-ph/0207090 Phenomenology +hep-ph/0207157 Phenomenology +hep-ph/0207174 Phenomenology +hep-ph/0207176 Phenomenology +hep-ph/0207301 Phenomenology +hep-ph/0207309 Phenomenology +hep-ph/0207337 Phenomenology +hep-ph/0208085 Phenomenology +hep-ph/0208192 Phenomenology +hep-ph/0208211 Phenomenology +hep-ph/0208275 Phenomenology +hep-ph/0209062 Phenomenology +hep-ph/0209106 Phenomenology +hep-ph/0209126 Phenomenology +hep-ph/0209198 Phenomenology +hep-ph/0209354 Phenomenology +hep-ph/0210008 Phenomenology +hep-ph/0210010 Phenomenology +hep-ph/0210113 Phenomenology +hep-ph/0210140 Phenomenology +hep-ph/0210227 Phenomenology +hep-ph/0210307 Phenomenology +hep-ph/0211053 Phenomenology +hep-ph/0211221 Phenomenology +hep-ph/0211347 Phenomenology +hep-ph/0211355 Phenomenology +hep-ph/0211375 Phenomenology +hep-ph/0211391 Phenomenology +hep-ph/0211414 Phenomenology +hep-ph/0212021 Phenomenology +hep-ph/0212052 Phenomenology +hep-ph/0212055 Phenomenology +hep-ph/0212060 Phenomenology +hep-ph/0212061 Phenomenology +hep-ph/0212110 Phenomenology +hep-ph/0212139 Phenomenology +hep-ph/0212145 Phenomenology +hep-ph/0212169 Phenomenology +hep-ph/0212194 Phenomenology +hep-ph/0212212 Phenomenology +hep-ph/0212308 Phenomenology +hep-ph/0212368 Phenomenology +hep-ph/0212403 Phenomenology +hep-ph/0301138 Phenomenology +hep-ph/0301144 Phenomenology +hep-ph/0301194 Phenomenology +hep-ph/0301239 Phenomenology +hep-ph/0301250 Phenomenology +hep-ph/0301252 Phenomenology +hep-ph/0302010 Phenomenology +hep-ph/0302019 Phenomenology +hep-ph/0302044 Phenomenology +hep-ph/0302104 Phenomenology +hep-ph/0302190 Phenomenology +hep-ph/0303047 Phenomenology +hep-ph/0303097 Phenomenology +hep-ph/0303101 Phenomenology +hep-ph/0303121 Phenomenology +hep-ph/0303131 Phenomenology +hep-ph/0303144 Phenomenology +hep-ph/0303245 Phenomenology +hep-ph/0304045 Phenomenology +hep-ph/0304050 Phenomenology +hep-ph/0304172 Phenomenology +hep-ph/0304196 Phenomenology +hep-ph/0304204 Phenomenology +hep-ph/0304292 Phenomenology +hep-ph/0305074 Phenomenology +hep-ph/0305140 Phenomenology +hep-ph/0305185 Phenomenology +hep-ph/0305220 Phenomenology +hep-ph/0305222 Phenomenology +hep-ph/0305228 Phenomenology +hep-ph/0305231 Phenomenology +hep-ph/0305259 Phenomenology +hep-ph/0305303 Phenomenology +hep-ph/0306007 Phenomenology +hep-ph/0306030 Phenomenology +hep-ph/0306040 Phenomenology +hep-ph/0306047 Phenomenology +hep-ph/0306052 Phenomenology +hep-ph/0306100 Phenomenology +hep-ph/0306133 Phenomenology +hep-ph/0306151 Phenomenology +hep-ph/0307006 Phenomenology +hep-ph/0307077 Phenomenology +hep-ph/0307189 Phenomenology +hep-ph/0307209 Phenomenology +hep-ph/0307249 Phenomenology +hep-ph/0307267 Phenomenology +hep-ph/0307364 Phenomenology +hep-ph/0308171 Phenomenology +hep-ph/0308236 Phenomenology +hep-ph/0308256 Phenomenology +hep-ph/0309012 Phenomenology +hep-ph/0309029 Phenomenology +hep-ph/0310002 Phenomenology +hep-ph/0310120 Phenomenology +hep-ph/0310131 Phenomenology +hep-ph/0310179 Phenomenology +hep-ph/0311097 Phenomenology +hep-ph/0311225 Phenomenology +hep-ph/0311230 Phenomenology +hep-ph/0311261 Phenomenology +hep-ph/0311317 Phenomenology +hep-ph/0311323 Phenomenology +hep-ph/0311350 Phenomenology +hep-ph/0311365 Phenomenology +hep-ph/0312029 Phenomenology +hep-ph/0312069 Phenomenology +hep-ph/0312085 Phenomenology +hep-ph/0312198 Phenomenology +hep-ph/0312199 Phenomenology +hep-ph/0401046 Phenomenology +hep-ph/0401157 Phenomenology +hep-ph/0402059 Phenomenology +hep-ph/0402086 Phenomenology +hep-ph/0402089 Phenomenology +hep-ph/0403170 Phenomenology +hep-ph/0403259 Phenomenology +hep-ph/0403283 Phenomenology +hep-ph/0403301 Phenomenology +hep-ph/0404171 Phenomenology +hep-ph/0404223 Phenomenology +hep-ph/0404241 Phenomenology +hep-ph/0404279 Phenomenology +hep-ph/0405018 Phenomenology +hep-ph/0405046 Phenomenology +hep-ph/0405259 Phenomenology +hep-ph/0405284 Phenomenology +hep-ph/0406002 Phenomenology +hep-ph/0406010 Phenomenology +hep-ph/0406129 Phenomenology +hep-ph/0406131 Phenomenology +hep-ph/0406173 Phenomenology +hep-ph/0406185 Phenomenology +hep-ph/0406249 Phenomenology +hep-ph/0406250 Phenomenology +hep-ph/0406324 Phenomenology +hep-ph/0407038 Phenomenology +hep-ph/0407092 Phenomenology +hep-ph/0407108 Phenomenology +hep-ph/0407152 Phenomenology +hep-ph/0407183 Phenomenology +hep-ph/0407225 Phenomenology +hep-ph/0407259 Phenomenology +hep-ph/0407310 Phenomenology +hep-ph/0407333 Phenomenology +hep-ph/0408042 Phenomenology +hep-ph/0408090 Phenomenology +hep-ph/0408151 Phenomenology +hep-ph/0408177 Phenomenology +hep-ph/0408302 Phenomenology +hep-ph/0409117 Phenomenology +hep-ph/0409123 Phenomenology +hep-ph/0409174 Phenomenology +hep-ph/0409267 Phenomenology +hep-ph/0409283 Phenomenology +hep-ph/0409285 Phenomenology +hep-ph/0409301 Phenomenology +hep-ph/0409343 Phenomenology +hep-ph/0409359 Phenomenology +hep-ph/0410077 Phenomenology +hep-ph/0410086 Phenomenology +hep-ph/0410108 Phenomenology +hep-ph/0410324 Phenomenology +hep-ph/0411100 Phenomenology +hep-ph/0411278 Phenomenology +hep-ph/0411303 Phenomenology +hep-ph/0411365 Phenomenology +hep-ph/0412040 Phenomenology +hep-ph/0412109 Phenomenology +hep-ph/0412141 Phenomenology +hep-ph/0412239 Phenomenology +hep-ph/0412261 Phenomenology +hep-ph/0412271 Phenomenology +hep-ph/0412287 Phenomenology +hep-ph/0412322 Phenomenology +hep-ph/0412411 Phenomenology +hep-ph/0501122 Phenomenology +hep-ph/0501155 Phenomenology +hep-ph/0501177 Phenomenology +hep-ph/0501187 Phenomenology +hep-ph/0501208 Phenomenology +hep-ph/0501209 Phenomenology +hep-ph/0501228 Phenomenology +hep-ph/0502057 Phenomenology +hep-ph/0502117 Phenomenology +hep-ph/0502164 Phenomenology +hep-ph/0502213 Phenomenology +hep-ph/0502221 Phenomenology +hep-ph/0502225 Phenomenology +hep-ph/0503001 Phenomenology +hep-ph/0503106 Phenomenology +hep-ph/0503120 Phenomenology +hep-ph/0503163 Phenomenology +hep-ph/0503216 Phenomenology +hep-ph/0503265 Phenomenology +hep-ph/0504048 Phenomenology +hep-ph/0504236 Phenomenology +hep-ph/0505011 Phenomenology +hep-ph/0505066 Phenomenology +hep-ph/0505087 Phenomenology +hep-ph/0505117 Phenomenology +hep-ph/0505210 Phenomenology +hep-ph/0506001 Phenomenology +hep-ph/0506017 Phenomenology +hep-ph/0506035 Phenomenology +hep-ph/0506100 Phenomenology +hep-ph/0506108 Phenomenology +hep-ph/0506132 Phenomenology +hep-ph/0506144 Phenomenology +hep-ph/0506213 Phenomenology +hep-ph/0506282 Phenomenology +hep-ph/0507033 Phenomenology +hep-ph/0507123 Phenomenology +hep-ph/0507194 Phenomenology +hep-ph/0508034 Phenomenology +hep-ph/0508059 Phenomenology +hep-ph/0508088 Phenomenology +hep-ph/0508096 Phenomenology +hep-ph/0508102 Phenomenology +hep-ph/0508116 Phenomenology +hep-ph/0508199 Phenomenology +hep-ph/0508217 Phenomenology +hep-ph/0508220 Phenomenology +hep-ph/0508304 Phenomenology +hep-ph/0509081 Phenomenology +hep-ph/0509082 Phenomenology +hep-ph/0509086 Phenomenology +hep-ph/0509112 Phenomenology +hep-ph/0509154 Phenomenology +hep-ph/0509171 Phenomenology +hep-ph/0509179 Phenomenology +hep-ph/0509189 Phenomenology +hep-ph/0509210 Phenomenology +hep-ph/0509217 Phenomenology +hep-ph/0509225 Phenomenology +hep-ph/0509249 Phenomenology +hep-ph/0509259 Phenomenology +hep-ph/0509260 Phenomenology +hep-ph/0509262 Phenomenology +hep-ph/0509281 Phenomenology +hep-ph/0509288 Phenomenology +hep-ph/0509303 Phenomenology +hep-ph/0509311 Phenomenology +hep-ph/0509318 Phenomenology +hep-ph/0509319 Phenomenology +hep-ph/0509323 Phenomenology +hep-ph/0509324 Phenomenology +hep-ph/0509341 Phenomenology +hep-ph/0509343 Phenomenology +hep-ph/0509346 Phenomenology +hep-ph/0509347 Phenomenology +hep-ph/0509348 Phenomenology +hep-ph/0509354 Phenomenology +hep-ph/0509371 Phenomenology +hep-ph/0510019 Phenomenology +hep-ph/0510024 Phenomenology +hep-ph/0510025 Phenomenology +hep-ph/0510026 Phenomenology +hep-ph/0510030 Phenomenology +hep-ph/0510034 Phenomenology +hep-ph/0510038 Phenomenology +hep-ph/0510043 Phenomenology +hep-ph/0510048 Phenomenology +hep-ph/0510053 Phenomenology +hep-ph/0510067 Phenomenology +hep-ph/0510070 Phenomenology +hep-ph/0510072 Phenomenology +hep-ph/0510073 Phenomenology +hep-ph/0510084 Phenomenology +hep-ph/0510208 Phenomenology +hep-ph/0510321 Phenomenology +hep-ph/0510345 Phenomenology +hep-ph/0511049 Phenomenology +hep-ph/0511275 Phenomenology +hep-ph/0512018 Phenomenology +hep-ph/0512067 Phenomenology +hep-ph/0512075 Phenomenology +hep-ph/0512319 Phenomenology +hep-ph/0601019 Phenomenology +hep-ph/0602013 Phenomenology +hep-ph/0602132 Phenomenology +hep-ph/0602140 Phenomenology +hep-ph/0603119 Phenomenology +hep-ph/0604044 Phenomenology +hep-ph/0604070 Phenomenology +hep-ph/0604194 Phenomenology +hep-ph/0605320 Phenomenology +hep-ph/0606111 Phenomenology +hep-ph/0607200 Phenomenology +hep-ph/0607333 Phenomenology +hep-ph/0608168 Phenomenology +hep-ph/0608244 Phenomenology +hep-ph/0608257 Phenomenology +hep-ph/0608295 Phenomenology +hep-ph/0609080 Phenomenology +hep-ph/0610063 Phenomenology +hep-ph/0611230 Phenomenology +hep-ph/9605431 Phenomenology +hep-ph/9605459 Phenomenology +hep-ph/9606223 Phenomenology +hep-ph/9606232 Phenomenology +hep-ph/9606270 Phenomenology +hep-ph/9606283 Phenomenology +hep-ph/9606357 Phenomenology +hep-ph/9606364 Phenomenology +hep-ph/9606441 Phenomenology +hep-ph/9606452 Phenomenology +hep-ph/9606460 Phenomenology +hep-ph/9606486 Phenomenology +hep-ph/9607227 Phenomenology +hep-ph/9607283 Phenomenology +hep-ph/9607295 Phenomenology +hep-ph/9607303 Phenomenology +hep-ph/9607357 Phenomenology +hep-ph/9607407 Phenomenology +hep-ph/9607438 Phenomenology +hep-ph/9607459 Phenomenology +hep-ph/9607485 Phenomenology +hep-ph/9608213 Phenomenology +hep-ph/9608293 Phenomenology +hep-ph/9608306 Phenomenology +hep-ph/9608314 Phenomenology +hep-ph/9608345 Phenomenology +hep-ph/9608348 Phenomenology +hep-ph/9608364 Phenomenology +hep-ph/9608376 Phenomenology +hep-ph/9608381 Phenomenology +hep-ph/9608395 Phenomenology +hep-ph/9608405 Phenomenology +hep-ph/9608431 Phenomenology +hep-ph/9608447 Phenomenology +hep-ph/9608478 Phenomenology +hep-ph/9608480 Phenomenology +hep-ph/9609209 Phenomenology +hep-ph/9609214 Phenomenology +hep-ph/9609242 Phenomenology +hep-ph/9609254 Phenomenology +hep-ph/9609258 Phenomenology +hep-ph/9609269 Phenomenology +hep-ph/9609289 Phenomenology +hep-ph/9609291 Phenomenology +hep-ph/9609324 Phenomenology +hep-ph/9609348 Phenomenology +hep-ph/9609357 Phenomenology +hep-ph/9609363 Phenomenology +hep-ph/9609392 Phenomenology +hep-ph/9609393 Phenomenology +hep-ph/9609399 Phenomenology +hep-ph/9609402 Phenomenology +hep-ph/9609420 Phenomenology +hep-ph/9609423 Phenomenology +hep-ph/9609431 Phenomenology +hep-ph/9609445 Phenomenology +hep-ph/9609470 Phenomenology +hep-ph/9609485 Phenomenology +hep-ph/9609489 Phenomenology +hep-ph/9609496 Phenomenology +hep-ph/9609503 Phenomenology +hep-ph/9609505 Phenomenology +hep-ph/9609519 Phenomenology +hep-ph/9610208 Phenomenology +hep-ph/9610211 Phenomenology +hep-ph/9610227 Phenomenology +hep-ph/9610247 Phenomenology +hep-ph/9610262 Phenomenology +hep-ph/9610264 Phenomenology +hep-ph/9610269 Phenomenology +hep-ph/9610283 Phenomenology +hep-ph/9610287 Phenomenology +hep-ph/9610297 Phenomenology +hep-ph/9610306 Phenomenology +hep-ph/9610309 Phenomenology +hep-ph/9610320 Phenomenology +hep-ph/9610345 Phenomenology +hep-ph/9610380 Phenomenology +hep-ph/9610387 Phenomenology +hep-ph/9610391 Phenomenology +hep-ph/9610394 Phenomenology +hep-ph/9610397 Phenomenology +hep-ph/9610408 Phenomenology +hep-ph/9610411 Phenomenology +hep-ph/9610436 Phenomenology +hep-ph/9610439 Phenomenology +hep-ph/9610455 Phenomenology +hep-ph/9610469 Phenomenology +hep-ph/9610484 Phenomenology +hep-ph/9610496 Phenomenology +hep-ph/9610503 Phenomenology +hep-ph/9610530 Phenomenology +hep-ph/9610534 Phenomenology +hep-ph/9610548 Phenomenology +hep-ph/9610554 Phenomenology +hep-ph/9611201 Phenomenology +hep-ph/9611208 Phenomenology +hep-ph/9611211 Phenomenology +hep-ph/9611213 Phenomenology +hep-ph/9611218 Phenomenology +hep-ph/9611232 Phenomenology +hep-ph/9611249 Phenomenology +hep-ph/9611253 Phenomenology +hep-ph/9611255 Phenomenology +hep-ph/9611256 Phenomenology +hep-ph/9611263 Phenomenology +hep-ph/9611273 Phenomenology +hep-ph/9611287 Phenomenology +hep-ph/9611313 Phenomenology +hep-ph/9611315 Phenomenology +hep-ph/9611334 Phenomenology +hep-ph/9611366 Phenomenology +hep-ph/9611374 Phenomenology +hep-ph/9611380 Phenomenology +hep-ph/9611395 Phenomenology +hep-ph/9611402 Phenomenology +hep-ph/9611407 Phenomenology +hep-ph/9611417 Phenomenology +hep-ph/9611450 Phenomenology +hep-ph/9611458 Phenomenology +hep-ph/9611460 Phenomenology +hep-ph/9612202 Phenomenology +hep-ph/9612207 Phenomenology +hep-ph/9612221 Phenomenology +hep-ph/9612243 Phenomenology +hep-ph/9612276 Phenomenology +hep-ph/9612298 Phenomenology +hep-ph/9612308 Phenomenology +hep-ph/9612334 Phenomenology +hep-ph/9612337 Phenomenology +hep-ph/9612393 Phenomenology +hep-ph/9612422 Phenomenology +hep-ph/9612426 Phenomenology +hep-ph/9612428 Phenomenology +hep-ph/9612448 Phenomenology +hep-ph/9612469 Phenomenology +hep-ph/9612483 Phenomenology +hep-ph/9701207 Phenomenology +hep-ph/9701260 Phenomenology +hep-ph/9701262 Phenomenology +hep-ph/9701278 Phenomenology +hep-ph/9701281 Phenomenology +hep-ph/9701286 Phenomenology +hep-ph/9701307 Phenomenology +hep-ph/9701317 Phenomenology +hep-ph/9701341 Phenomenology +hep-ph/9701352 Phenomenology +hep-ph/9701371 Phenomenology +hep-ph/9701373 Phenomenology +hep-ph/9701376 Phenomenology +hep-ph/9701393 Phenomenology +hep-ph/9701405 Phenomenology +hep-ph/9701406 Phenomenology +hep-ph/9701407 Phenomenology +hep-ph/9701409 Phenomenology +hep-ph/9702202 Phenomenology +hep-ph/9702220 Phenomenology +hep-ph/9702221 Phenomenology +hep-ph/9702238 Phenomenology +hep-ph/9702258 Phenomenology +hep-ph/9702260 Phenomenology +hep-ph/9702263 Phenomenology +hep-ph/9702292 Phenomenology +hep-ph/9702297 Phenomenology +hep-ph/9702315 Phenomenology +hep-ph/9702317 Phenomenology +hep-ph/9702320 Phenomenology +hep-ph/9702339 Phenomenology +hep-ph/9702347 Phenomenology +hep-ph/9702370 Phenomenology +hep-ph/9702409 Phenomenology +hep-ph/9702428 Phenomenology +hep-ph/9703208 Phenomenology +hep-ph/9703215 Phenomenology +hep-ph/9703217 Phenomenology +hep-ph/9703235 Phenomenology +hep-ph/9703245 Phenomenology +hep-ph/9703311 Phenomenology +hep-ph/9703322 Phenomenology +hep-ph/9703324 Phenomenology +hep-ph/9703334 Phenomenology +hep-ph/9703346 Phenomenology +hep-ph/9703348 Phenomenology +hep-ph/9703353 Phenomenology +hep-ph/9703364 Phenomenology +hep-ph/9703388 Phenomenology +hep-ph/9703396 Phenomenology +hep-ph/9703409 Phenomenology +hep-ph/9703427 Phenomenology +hep-ph/9703448 Phenomenology +hep-ph/9703450 Phenomenology +hep-ph/9703458 Phenomenology +hep-ph/9703459 Phenomenology +hep-ph/9704231 Phenomenology +hep-ph/9704236 Phenomenology +hep-ph/9704259 Phenomenology +hep-ph/9704279 Phenomenology +hep-ph/9704282 Phenomenology +hep-ph/9704284 Phenomenology +hep-ph/9704291 Phenomenology +hep-ph/9704312 Phenomenology +hep-ph/9704322 Phenomenology +hep-ph/9704348 Phenomenology +hep-ph/9704358 Phenomenology +hep-ph/9704362 Phenomenology +hep-ph/9704370 Phenomenology +hep-ph/9704392 Phenomenology +hep-ph/9704394 Phenomenology +hep-ph/9704397 Phenomenology +hep-ph/9704403 Phenomenology +hep-ph/9704404 Phenomenology +hep-ph/9704417 Phenomenology +hep-ph/9704434 Phenomenology +hep-ph/9704437 Phenomenology +hep-ph/9704438 Phenomenology +hep-ph/9704444 Phenomenology +hep-ph/9704446 Phenomenology +hep-ph/9704449 Phenomenology +hep-ph/9704451 Phenomenology +hep-ph/9705238 Phenomenology +hep-ph/9705253 Phenomenology +hep-ph/9705257 Phenomenology +hep-ph/9705262 Phenomenology +hep-ph/9705267 Phenomenology +hep-ph/9705271 Phenomenology +hep-ph/9705294 Phenomenology +hep-ph/9705295 Phenomenology +hep-ph/9705312 Phenomenology +hep-ph/9705329 Phenomenology +hep-ph/9705407 Phenomenology +hep-ph/9705411 Phenomenology +hep-ph/9705433 Phenomenology +hep-ph/9705474 Phenomenology +hep-ph/9706231 Phenomenology +hep-ph/9706304 Phenomenology +hep-ph/9706320 Phenomenology +hep-ph/9706328 Phenomenology +hep-ph/9706394 Phenomenology +hep-ph/9706402 Phenomenology +hep-ph/9706472 Phenomenology +hep-ph/9707236 Phenomenology +hep-ph/9707294 Phenomenology +hep-ph/9707328 Phenomenology +hep-ph/9707329 Phenomenology +hep-ph/9707375 Phenomenology +hep-ph/9707416 Phenomenology +hep-ph/9707488 Phenomenology +hep-ph/9708215 Phenomenology +hep-ph/9708224 Phenomenology +hep-ph/9708240 Phenomenology +hep-ph/9708257 Phenomenology +hep-ph/9708268 Phenomenology +hep-ph/9708272 Phenomenology +hep-ph/9708359 Phenomenology +hep-ph/9708379 Phenomenology +hep-ph/9708471 Phenomenology +hep-ph/9709207 Phenomenology +hep-ph/9709277 Phenomenology +hep-ph/9709364 Phenomenology +hep-ph/9709477 Phenomenology +hep-ph/9709512 Phenomenology +hep-ph/9710216 Phenomenology +hep-ph/9710281 Phenomenology +hep-ph/9710322 Phenomenology +hep-ph/9710330 Phenomenology +hep-ph/9710372 Phenomenology +hep-ph/9710386 Phenomenology +hep-ph/9710434 Phenomenology +hep-ph/9710516 Phenomenology +hep-ph/9711220 Phenomenology +hep-ph/9711283 Phenomenology +hep-ph/9711317 Phenomenology +hep-ph/9711332 Phenomenology +hep-ph/9711342 Phenomenology +hep-ph/9711428 Phenomenology +hep-ph/9712211 Phenomenology +hep-ph/9712232 Phenomenology +hep-ph/9712336 Phenomenology +hep-ph/9712429 Phenomenology +hep-ph/9801276 Phenomenology +hep-ph/9801379 Phenomenology +hep-ph/9801404 Phenomenology +hep-ph/9801450 Phenomenology +hep-ph/9802202 Phenomenology +hep-ph/9802203 Phenomenology +hep-ph/9802249 Phenomenology +hep-ph/9802361 Phenomenology +hep-ph/9802364 Phenomenology +hep-ph/9802399 Phenomenology +hep-ph/9802410 Phenomenology +hep-ph/9802448 Phenomenology +hep-ph/9803234 Phenomenology +hep-ph/9803244 Phenomenology +hep-ph/9803287 Phenomenology +hep-ph/9803300 Phenomenology +hep-ph/9803332 Phenomenology +hep-ph/9803340 Phenomenology +hep-ph/9803432 Phenomenology +hep-ph/9803450 Phenomenology +hep-ph/9803478 Phenomenology +hep-ph/9803482 Phenomenology +hep-ph/9803494 Phenomenology +hep-ph/9804259 Phenomenology +hep-ph/9804277 Phenomenology +hep-ph/9804289 Phenomenology +hep-ph/9804345 Phenomenology +hep-ph/9804413 Phenomenology +hep-ph/9804418 Phenomenology +hep-ph/9805214 Phenomenology +hep-ph/9805228 Phenomenology +hep-ph/9805292 Phenomenology +hep-ph/9805317 Phenomenology +hep-ph/9805499 Phenomenology +hep-ph/9806205 Phenomenology +hep-ph/9806211 Phenomenology +hep-ph/9806273 Phenomenology +hep-ph/9806305 Phenomenology +hep-ph/9806327 Phenomenology +hep-ph/9806449 Phenomenology +hep-ph/9806480 Phenomenology +hep-ph/9806519 Phenomenology +hep-ph/9807255 Phenomenology +hep-ph/9807267 Phenomenology +hep-ph/9807368 Phenomenology +hep-ph/9807447 Phenomenology +hep-ph/9807456 Phenomenology +hep-ph/9807487 Phenomenology +hep-ph/9807507 Phenomenology +hep-ph/9807540 Phenomenology +hep-ph/9807547 Phenomenology +hep-ph/9807553 Phenomenology +hep-ph/9808307 Phenomenology +hep-ph/9808320 Phenomenology +hep-ph/9808363 Phenomenology +hep-ph/9808387 Phenomenology +hep-ph/9808439 Phenomenology +hep-ph/9809211 Phenomenology +hep-ph/9809355 Phenomenology +hep-ph/9809491 Phenomenology +hep-ph/9809567 Phenomenology +hep-ph/9810338 Phenomenology +hep-ph/9810344 Phenomenology +hep-ph/9810476 Phenomenology +hep-ph/9810533 Phenomenology +hep-ph/9811280 Phenomenology +hep-ph/9811306 Phenomenology +hep-ph/9812295 Phenomenology +hep-ph/9812306 Phenomenology +hep-ph/9812390 Phenomenology +hep-ph/9812469 Phenomenology +hep-ph/9812498 Phenomenology +hep-ph/9901232 Phenomenology +hep-ph/9901297 Phenomenology +hep-ph/9901339 Phenomenology +hep-ph/9901364 Phenomenology +hep-ph/9901376 Phenomenology +hep-ph/9901410 Phenomenology +hep-ph/9901419 Phenomenology +hep-ph/9903260 Phenomenology +hep-ph/9903297 Phenomenology +hep-ph/9903414 Phenomenology +hep-ph/9903464 Phenomenology +hep-ph/9903494 Phenomenology +hep-ph/9904221 Phenomenology +hep-ph/9904290 Phenomenology +hep-ph/9904308 Phenomenology +hep-ph/9904418 Phenomenology +hep-ph/9905228 Phenomenology +hep-ph/9905266 Phenomenology +hep-ph/9905268 Phenomenology +hep-ph/9905337 Phenomenology +hep-ph/9905349 Phenomenology +hep-ph/9905372 Phenomenology +hep-ph/9905392 Phenomenology +hep-ph/9905400 Phenomenology +hep-ph/9905441 Phenomenology +hep-ph/9905483 Phenomenology +hep-ph/9905519 Phenomenology +hep-ph/9905526 Phenomenology +hep-ph/9905555 Phenomenology +hep-ph/9906233 Phenomenology +hep-ph/9906354 Phenomenology +hep-ph/9906369 Phenomenology +hep-ph/9906372 Phenomenology +hep-ph/9906505 Phenomenology +hep-ph/9906531 Phenomenology +hep-ph/9907201 Phenomenology +hep-ph/9907241 Phenomenology +hep-ph/9907265 Phenomenology +hep-ph/9907328 Phenomenology +hep-ph/9907347 Phenomenology +hep-ph/9907506 Phenomenology +hep-ph/9907526 Phenomenology +hep-ph/9908207 Phenomenology +hep-ph/9908271 Phenomenology +hep-ph/9908317 Phenomenology +hep-ph/9908332 Phenomenology +hep-ph/9908352 Phenomenology +hep-ph/9908435 Phenomenology +hep-ph/9908462 Phenomenology +hep-ph/9908466 Phenomenology +hep-ph/9908521 Phenomenology +hep-ph/9909210 Phenomenology +hep-ph/9909232 Phenomenology +hep-ph/9909280 Phenomenology +hep-ph/9909380 Phenomenology +hep-ph/9909402 Phenomenology +hep-ph/9909458 Phenomenology +hep-ph/9909525 Phenomenology +hep-ph/9909567 Phenomenology +hep-ph/9910229 Phenomenology +hep-ph/9910235 Phenomenology +hep-ph/9910247 Phenomenology +hep-ph/9910295 Phenomenology +hep-ph/9910406 Phenomenology +hep-ph/9910417 Phenomenology +hep-ph/9910426 Phenomenology +hep-ph/9910427 Phenomenology +hep-ph/9910533 Phenomenology +hep-ph/9911234 Phenomenology +hep-ph/9911292 Phenomenology +hep-ph/9911317 Phenomenology +hep-ph/9911351 Phenomenology +hep-ph/9911352 Phenomenology +hep-ph/9911354 Phenomenology +hep-ph/9911381 Phenomenology +hep-ph/9911432 Phenomenology +hep-ph/9911489 Phenomenology +hep-ph/9911497 Phenomenology +hep-ph/9912225 Phenomenology +hep-ph/9912228 Phenomenology +hep-ph/9912289 Phenomenology +hep-ph/9912406 Phenomenology +hep-ph/9912418 Phenomenology +hep-ph/9912477 Phenomenology +hep-ph/9912531 Phenomenology +hep-ph/9912552 Phenomenology +hep-th/0001088 Theory +hep-th/0002173 Theory +hep-th/0003149 Theory +hep-th/0003159 Theory +hep-th/0003218 Theory +hep-th/0003227 Theory +hep-th/0003285 Theory +hep-th/0004040 Theory +hep-th/0004041 Theory +hep-th/0004132 Theory +hep-th/0004136 Theory +hep-th/0004165 Theory +hep-th/0004173 Theory +hep-th/0005077 Theory +hep-th/0005099 Theory +hep-th/0005152 Theory +hep-th/0005192 Theory +hep-th/0005286 Theory +hep-th/0006009 Theory +hep-th/0006016 Theory +hep-th/0006145 Theory +hep-th/0007134 Theory +hep-th/0007145 Theory +hep-th/0008027 Theory +hep-th/0008085 Theory +hep-th/0008103 Theory +hep-th/0008165 Theory +hep-th/0008221 Theory +hep-th/0009034 Theory +hep-th/0009044 Theory +hep-th/0009047 Theory +hep-th/0009097 Theory +hep-th/0009142 Theory +hep-th/0009234 Theory +hep-th/0010043 Theory +hep-th/0010044 Theory +hep-th/0010078 Theory +hep-th/0010233 Theory +hep-th/0010285 Theory +hep-th/0011017 Theory +hep-th/0011065 Theory +hep-th/0011187 Theory +hep-th/0011273 Theory +hep-th/0012085 Theory +hep-th/0012157 Theory +hep-th/0012261 Theory +hep-th/0012265 Theory +hep-th/0101063 Theory +hep-th/0101169 Theory +hep-th/0101181 Theory +hep-th/0102007 Theory +hep-th/0102017 Theory +hep-th/0102021 Theory +hep-th/0102030 Theory +hep-th/0102043 Theory +hep-th/0102088 Theory +hep-th/0102105 Theory +hep-th/0102193 Theory +hep-th/0103030 Theory +hep-th/0103065 Theory +hep-th/0103083 Theory +hep-th/0103155 Theory +hep-th/0103176 Theory +hep-th/0103241 Theory +hep-th/0103251 Theory +hep-th/0103261 Theory +hep-th/0104023 Theory +hep-th/0104056 Theory +hep-th/0104079 Theory +hep-th/0104123 Theory +hep-th/0104131 Theory +hep-th/0104197 Theory +hep-th/0104207 Theory +hep-th/0105035 Theory +hep-th/0105071 Theory +hep-th/0105091 Theory +hep-th/0105149 Theory +hep-th/0105235 Theory +hep-th/0105258 Theory +hep-th/0106056 Theory +hep-th/0106093 Theory +hep-th/0106235 Theory +hep-th/0106269 Theory +hep-th/0106276 Theory +hep-th/0107014 Theory +hep-th/0107032 Theory +hep-th/0107067 Theory +hep-th/0107074 Theory +hep-th/0107174 Theory +hep-th/0107210 Theory +hep-th/0108014 Theory +hep-th/0108147 Theory +hep-th/0108166 Theory +hep-th/0108217 Theory +hep-th/0109029 Theory +hep-th/0109083 Theory +hep-th/0109132 Theory +hep-th/0110088 Theory +hep-th/0110177 Theory +hep-th/0110191 Theory +hep-th/0110210 Theory +hep-th/0110241 Theory +hep-th/0110266 Theory +hep-th/0111002 Theory +hep-th/0111048 Theory +hep-th/0111076 Theory +hep-th/0111098 Theory +hep-th/0111147 Theory +hep-th/0111180 Theory +hep-th/0112045 Theory +hep-th/0112159 Theory +hep-th/0112176 Theory +hep-th/0112221 Theory +hep-th/0201025 Theory +hep-th/0201052 Theory +hep-th/0201100 Theory +hep-th/0201110 Theory +hep-th/0201156 Theory +hep-th/0201162 Theory +hep-th/0202027 Theory +hep-th/0202106 Theory +hep-th/0202142 Theory +hep-th/0202159 Theory +hep-th/0202209 Theory +hep-th/0203017 Theory +hep-th/0203059 Theory +hep-th/0203067 Theory +hep-th/0203104 Theory +hep-th/0203238 Theory +hep-th/0204034 Theory +hep-th/0204070 Theory +hep-th/0204119 Theory +hep-th/0204155 Theory +hep-th/0204180 Theory +hep-th/0204221 Theory +hep-th/0204230 Theory +hep-th/0205018 Theory +hep-th/0205067 Theory +hep-th/0205074 Theory +hep-th/0205123 Theory +hep-th/0205183 Theory +hep-th/0205203 Theory +hep-th/0205205 Theory +hep-th/0205224 Theory +hep-th/0206232 Theory +hep-th/0206246 Theory +hep-th/0207061 Theory +hep-th/0207063 Theory +hep-th/0207184 Theory +hep-th/0207218 Theory +hep-th/0207225 Theory +hep-th/0207283 Theory +hep-th/0208161 Theory +hep-th/0209018 Theory +hep-th/0209083 Theory +hep-th/0209202 Theory +hep-th/0209219 Theory +hep-th/0210152 Theory +hep-th/0210249 Theory +hep-th/0210258 Theory +hep-th/0210284 Theory +hep-th/0211027 Theory +hep-th/0211033 Theory +hep-th/0211076 Theory +hep-th/0211127 Theory +hep-th/0211138 Theory +hep-th/0211228 Theory +hep-th/0211248 Theory +hep-th/0211261 Theory +hep-th/0211289 Theory +hep-th/0212112 Theory +hep-th/0212182 Theory +hep-th/0212216 Theory +hep-th/0212220 Theory +hep-th/0212225 Theory +hep-th/0212227 Theory +hep-th/0212249 Theory +hep-th/0212291 Theory +hep-th/0301014 Theory +hep-th/0301040 Theory +hep-th/0301073 Theory +hep-th/0301090 Theory +hep-th/0301113 Theory +hep-th/0301202 Theory +hep-th/0302032 Theory +hep-th/0303014 Theory +hep-th/0303030 Theory +hep-th/0303236 Theory +hep-th/0304012 Theory +hep-th/0304047 Theory +hep-th/0305076 Theory +hep-th/0305088 Theory +hep-th/0305105 Theory +hep-th/0305106 Theory +hep-th/0305172 Theory +hep-th/0305213 Theory +hep-th/0305216 Theory +hep-th/0305217 Theory +hep-th/0305249 Theory +hep-th/0306108 Theory +hep-th/0306141 Theory +hep-th/0306189 Theory +hep-th/0306193 Theory +hep-th/0306255 Theory +hep-th/0307017 Theory +hep-th/0307060 Theory +hep-th/0307061 Theory +hep-th/0307083 Theory +hep-th/0307090 Theory +hep-th/0307238 Theory +hep-th/0307255 Theory +hep-th/0309014 Theory +hep-th/0309055 Theory +hep-th/0309208 Theory +hep-th/0309271 Theory +hep-th/0310169 Theory +hep-th/0310194 Theory +hep-th/0310225 Theory +hep-th/0310294 Theory +hep-th/0311022 Theory +hep-th/0311029 Theory +hep-th/0311096 Theory +hep-th/0311215 Theory +hep-th/0312009 Theory +hep-th/0312152 Theory +hep-th/0312242 Theory +hep-th/0401069 Theory +hep-th/0401196 Theory +hep-th/0401215 Theory +hep-th/0402033 Theory +hep-th/0402120 Theory +hep-th/0402146 Theory +hep-th/0402163 Theory +hep-th/0402200 Theory +hep-th/0403034 Theory +hep-th/0403055 Theory +hep-th/0403108 Theory +hep-th/0403127 Theory +hep-th/0403167 Theory +hep-th/0404048 Theory +hep-th/0404092 Theory +hep-th/0404109 Theory +hep-th/0404131 Theory +hep-th/0404166 Theory +hep-th/0404184 Theory +hep-th/0405073 Theory +hep-th/0405117 Theory +hep-th/0405275 Theory +hep-th/0406030 Theory +hep-th/0406042 Theory +hep-th/0406063 Theory +hep-th/0406091 Theory +hep-th/0406125 Theory +hep-th/0406145 Theory +hep-th/0406225 Theory +hep-th/0407036 Theory +hep-th/0407198 Theory +hep-th/0407201 Theory +hep-th/0407211 Theory +hep-th/0407223 Theory +hep-th/0407231 Theory +hep-th/0407268 Theory +hep-th/0408004 Theory +hep-th/0408030 Theory +hep-th/0408065 Theory +hep-th/0408090 Theory +hep-th/0408126 Theory +hep-th/0408220 Theory +hep-th/0408226 Theory +hep-th/0409007 Theory +hep-th/0409019 Theory +hep-th/0409032 Theory +hep-th/0409163 Theory +hep-th/0410024 Theory +hep-th/0410071 Theory +hep-th/0410111 Theory +hep-th/0411048 Theory +hep-th/0412054 Theory +hep-th/0412233 Theory +hep-th/0412237 Theory +hep-th/0501019 Theory +hep-th/0501132 Theory +hep-th/0501196 Theory +hep-th/0502013 Theory +hep-th/0502024 Theory +hep-th/0502070 Theory +hep-th/0502088 Theory +hep-th/0502096 Theory +hep-th/0502179 Theory +hep-th/0502192 Theory +hep-th/0502227 Theory +hep-th/0503036 Theory +hep-th/0503148 Theory +hep-th/0503159 Theory +hep-th/0503162 Theory +hep-th/0503245 Theory +hep-th/0504129 Theory +hep-th/0504206 Theory +hep-th/0504226 Theory +hep-th/0505015 Theory +hep-th/0505143 Theory +hep-th/0505148 Theory +hep-th/0505209 Theory +hep-th/0506026 Theory +hep-th/0506084 Theory +hep-th/0506107 Theory +hep-th/0506118 Theory +hep-th/0506199 Theory +hep-th/0506264 Theory +hep-th/0507159 Theory +hep-th/0508056 Theory +hep-th/0508100 Theory +hep-th/0508125 Theory +hep-th/0508199 Theory +hep-th/0509061 Theory +hep-th/0509078 Theory +hep-th/0509114 Theory +hep-th/0509157 Theory +hep-th/0509162 Theory +hep-th/0509173 Theory +hep-th/0509178 Theory +hep-th/0509187 Theory +hep-th/0509223 Theory +hep-th/0510003 Theory +hep-th/0510014 Theory +hep-th/0510037 Theory +hep-th/0510038 Theory +hep-th/0510041 Theory +hep-th/0510163 Theory +hep-th/0601097 Theory +hep-th/0602151 Theory +hep-th/0603130 Theory +hep-th/0603172 Theory +hep-th/0603247 Theory +hep-th/0604199 Theory +hep-th/0605077 Theory +hep-th/0605285 Theory +hep-th/0606119 Theory +hep-th/0608125 Theory +hep-th/0608142 Theory +hep-th/0608172 Theory +hep-th/0611350 Theory +hep-th/0703219 Theory +hep-th/9201001 Theory +hep-th/9201051 Theory +hep-th/9203032 Theory +hep-th/9204064 Theory +hep-th/9205055 Theory +hep-th/9205070 Theory +hep-th/9207088 Theory +hep-th/9208061 Theory +hep-th/9209013 Theory +hep-th/9209082 Theory +hep-th/9209088 Theory +hep-th/9210040 Theory +hep-th/9210121 Theory +hep-th/9210160 Theory +hep-th/9211070 Theory +hep-th/9212034 Theory +hep-th/9212071 Theory +hep-th/9212088 Theory +hep-th/9212091 Theory +hep-th/9212115 Theory +hep-th/9212152 Theory +hep-th/9301074 Theory +hep-th/9301128 Theory +hep-th/9302035 Theory +hep-th/9302055 Theory +hep-th/9302059 Theory +hep-th/9302112 Theory +hep-th/9303014 Theory +hep-th/9303088 Theory +hep-th/9303127 Theory +hep-th/9303154 Theory +hep-th/9304161 Theory +hep-th/9305082 Theory +hep-th/9305085 Theory +hep-th/9305093 Theory +hep-th/9306003 Theory +hep-th/9306020 Theory +hep-th/9306049 Theory +hep-th/9306145 Theory +hep-th/9306147 Theory +hep-th/9306156 Theory +hep-th/9306157 Theory +hep-th/9307024 Theory +hep-th/9307122 Theory +hep-th/9307125 Theory +hep-th/9307170 Theory +hep-th/9307194 Theory +hep-th/9308010 Theory +hep-th/9308153 Theory +hep-th/9309021 Theory +hep-th/9309081 Theory +hep-th/9309117 Theory +hep-th/9310007 Theory +hep-th/9310083 Theory +hep-th/9311013 Theory +hep-th/9311067 Theory +hep-th/9311112 Theory +hep-th/9311134 Theory +hep-th/9311152 Theory +hep-th/9312082 Theory +hep-th/9312084 Theory +hep-th/9312141 Theory +hep-th/9312182 Theory +hep-th/9401011 Theory +hep-th/9401047 Theory +hep-th/9401072 Theory +hep-th/9401114 Theory +hep-th/9402026 Theory +hep-th/9402081 Theory +hep-th/9402116 Theory +hep-th/9402123 Theory +hep-th/9402142 Theory +hep-th/9403134 Theory +hep-th/9403182 Theory +hep-th/9404029 Theory +hep-th/9404037 Theory +hep-th/9404157 Theory +hep-th/9404189 Theory +hep-th/9405012 Theory +hep-th/9405044 Theory +hep-th/9405105 Theory +hep-th/9406053 Theory +hep-th/9406140 Theory +hep-th/9407034 Theory +hep-th/9407040 Theory +hep-th/9407070 Theory +hep-th/9407174 Theory +hep-th/9408016 Theory +hep-th/9408020 Theory +hep-th/9408021 Theory +hep-th/9408053 Theory +hep-th/9408086 Theory +hep-th/9408093 Theory +hep-th/9408136 Theory +hep-th/9409016 Theory +hep-th/9409093 Theory +hep-th/9409095 Theory +hep-th/9409114 Theory +hep-th/9409178 Theory +hep-th/9410076 Theory +hep-th/9410079 Theory +hep-th/9410105 Theory +hep-th/9410128 Theory +hep-th/9410185 Theory +hep-th/9411070 Theory +hep-th/9411103 Theory +hep-th/9411104 Theory +hep-th/9412003 Theory +hep-th/9412112 Theory +hep-th/9412122 Theory +hep-th/9501003 Theory +hep-th/9501004 Theory +hep-th/9501006 Theory +hep-th/9501007 Theory +hep-th/9501013 Theory +hep-th/9501014 Theory +hep-th/9501016 Theory +hep-th/9501017 Theory +hep-th/9501019 Theory +hep-th/9501021 Theory +hep-th/9501022 Theory +hep-th/9501023 Theory +hep-th/9501024 Theory +hep-th/9501027 Theory +hep-th/9501028 Theory +hep-th/9501029 Theory +hep-th/9501033 Theory +hep-th/9501034 Theory +hep-th/9501036 Theory +hep-th/9501037 Theory +hep-th/9501038 Theory +hep-th/9501039 Theory +hep-th/9501040 Theory +hep-th/9501041 Theory +hep-th/9501042 Theory +hep-th/9501043 Theory +hep-th/9501049 Theory +hep-th/9501050 Theory +hep-th/9501051 Theory +hep-th/9501053 Theory +hep-th/9501054 Theory +hep-th/9501056 Theory +hep-th/9501057 Theory +hep-th/9501058 Theory +hep-th/9501059 Theory +hep-th/9501060 Theory +hep-th/9501061 Theory +hep-th/9501064 Theory +hep-th/9501065 Theory +hep-th/9501067 Theory +hep-th/9501068 Theory +hep-th/9501069 Theory +hep-th/9501070 Theory +hep-th/9501072 Theory +hep-th/9501074 Theory +hep-th/9501076 Theory +hep-th/9501078 Theory +hep-th/9501082 Theory +hep-th/9501084 Theory +hep-th/9501086 Theory +hep-th/9501088 Theory +hep-th/9501089 Theory +hep-th/9501090 Theory +hep-th/9501091 Theory +hep-th/9501092 Theory +hep-th/9501093 Theory +hep-th/9501098 Theory +hep-th/9501100 Theory +hep-th/9501101 Theory +hep-th/9501104 Theory +hep-th/9501105 Theory +hep-th/9501109 Theory +hep-th/9501111 Theory +hep-th/9501112 Theory +hep-th/9501115 Theory +hep-th/9501117 Theory +hep-th/9501120 Theory +hep-th/9501121 Theory +hep-th/9501122 Theory +hep-th/9501125 Theory +hep-th/9501126 Theory +hep-th/9501127 Theory +hep-th/9501129 Theory +hep-th/9501130 Theory +hep-th/9501134 Theory +hep-th/9501135 Theory +hep-th/9501138 Theory +hep-th/9501140 Theory +hep-th/9501141 Theory +hep-th/9501142 Theory +hep-th/9502001 Theory +hep-th/9502005 Theory +hep-th/9502007 Theory +hep-th/9502010 Theory +hep-th/9502011 Theory +hep-th/9502013 Theory +hep-th/9502014 Theory +hep-th/9502018 Theory +hep-th/9502019 Theory +hep-th/9502021 Theory +hep-th/9502022 Theory +hep-th/9502026 Theory +hep-th/9502028 Theory +hep-th/9502030 Theory +hep-th/9502033 Theory +hep-th/9502034 Theory +hep-th/9502037 Theory +hep-th/9502039 Theory +hep-th/9502040 Theory +hep-th/9502041 Theory +hep-th/9502042 Theory +hep-th/9502043 Theory +hep-th/9502045 Theory +hep-th/9502047 Theory +hep-th/9502048 Theory +hep-th/9502050 Theory +hep-th/9502051 Theory +hep-th/9502052 Theory +hep-th/9502055 Theory +hep-th/9502057 Theory +hep-th/9502058 Theory +hep-th/9502059 Theory +hep-th/9502060 Theory +hep-th/9502065 Theory +hep-th/9502066 Theory +hep-th/9502067 Theory +hep-th/9502068 Theory +hep-th/9502071 Theory +hep-th/9502072 Theory +hep-th/9502076 Theory +hep-th/9502077 Theory +hep-th/9502083 Theory +hep-th/9502085 Theory +hep-th/9502088 Theory +hep-th/9502089 Theory +hep-th/9502091 Theory +hep-th/9502092 Theory +hep-th/9502093 Theory +hep-th/9502096 Theory +hep-th/9502097 Theory +hep-th/9502098 Theory +hep-th/9502099 Theory +hep-th/9502103 Theory +hep-th/9502105 Theory +hep-th/9502106 Theory +hep-th/9502108 Theory +hep-th/9502109 Theory +hep-th/9502111 Theory +hep-th/9502112 Theory +hep-th/9502113 Theory +hep-th/9502114 Theory +hep-th/9502115 Theory +hep-th/9502117 Theory +hep-th/9502118 Theory +hep-th/9502119 Theory +hep-th/9502124 Theory +hep-th/9502126 Theory +hep-th/9502127 Theory +hep-th/9502128 Theory +hep-th/9502130 Theory +hep-th/9502132 Theory +hep-th/9502134 Theory +hep-th/9502135 Theory +hep-th/9502136 Theory +hep-th/9502137 Theory +hep-th/9502142 Theory +hep-th/9502144 Theory +hep-th/9502147 Theory +hep-th/9502148 Theory +hep-th/9502149 Theory +hep-th/9502151 Theory +hep-th/9502154 Theory +hep-th/9502159 Theory +hep-th/9502161 Theory +hep-th/9502162 Theory +hep-th/9502164 Theory +hep-th/9503001 Theory +hep-th/9503005 Theory +hep-th/9503008 Theory +hep-th/9503009 Theory +hep-th/9503010 Theory +hep-th/9503011 Theory +hep-th/9503015 Theory +hep-th/9503017 Theory +hep-th/9503018 Theory +hep-th/9503020 Theory +hep-th/9503022 Theory +hep-th/9503023 Theory +hep-th/9503026 Theory +hep-th/9503030 Theory +hep-th/9503032 Theory +hep-th/9503034 Theory +hep-th/9503036 Theory +hep-th/9503037 Theory +hep-th/9503038 Theory +hep-th/9503039 Theory +hep-th/9503040 Theory +hep-th/9503041 Theory +hep-th/9503045 Theory +hep-th/9503048 Theory +hep-th/9503050 Theory +hep-th/9503052 Theory +hep-th/9503053 Theory +hep-th/9503054 Theory +hep-th/9503056 Theory +hep-th/9503057 Theory +hep-th/9503059 Theory +hep-th/9503060 Theory +hep-th/9503063 Theory +hep-th/9503065 Theory +hep-th/9503066 Theory +hep-th/9503067 Theory +hep-th/9503069 Theory +hep-th/9503076 Theory +hep-th/9503077 Theory +hep-th/9503080 Theory +hep-th/9503086 Theory +hep-th/9503087 Theory +hep-th/9503089 Theory +hep-th/9503090 Theory +hep-th/9503092 Theory +hep-th/9503094 Theory +hep-th/9503096 Theory +hep-th/9503100 Theory +hep-th/9503102 Theory +hep-th/9503103 Theory +hep-th/9503104 Theory +hep-th/9503109 Theory +hep-th/9503110 Theory +hep-th/9503111 Theory +hep-th/9503112 Theory +hep-th/9503114 Theory +hep-th/9503115 Theory +hep-th/9503116 Theory +hep-th/9503117 Theory +hep-th/9503120 Theory +hep-th/9503154 Theory +hep-th/9503237 Theory +hep-th/9504008 Theory +hep-th/9504017 Theory +hep-th/9504126 Theory +hep-th/9504129 Theory +hep-th/9505007 Theory +hep-th/9505030 Theory +hep-th/9505111 Theory +hep-th/9505194 Theory +hep-th/9506003 Theory +hep-th/9506042 Theory +hep-th/9506092 Theory +hep-th/9506194 Theory +hep-th/9507051 Theory +hep-th/9507102 Theory +hep-th/9507128 Theory +hep-th/9507151 Theory +hep-th/9507169 Theory +hep-th/9508062 Theory +hep-th/9508105 Theory +hep-th/9508158 Theory +hep-th/9509017 Theory +hep-th/9509121 Theory +hep-th/9510076 Theory +hep-th/9510179 Theory +hep-th/9510230 Theory +hep-th/9511027 Theory +hep-th/9511029 Theory +hep-th/9511032 Theory +hep-th/9511052 Theory +hep-th/9511114 Theory +hep-th/9511144 Theory +hep-th/9511147 Theory +hep-th/9511210 Theory +hep-th/9511214 Theory +hep-th/9512028 Theory +hep-th/9512112 Theory +hep-th/9512136 Theory +hep-th/9512189 Theory +hep-th/9601021 Theory +hep-th/9601034 Theory +hep-th/9601041 Theory +hep-th/9601055 Theory +hep-th/9601063 Theory +hep-th/9601075 Theory +hep-th/9601105 Theory +hep-th/9601155 Theory +hep-th/9601162 Theory +hep-th/9601170 Theory +hep-th/9602013 Theory +hep-th/9602045 Theory +hep-th/9602077 Theory +hep-th/9602093 Theory +hep-th/9602127 Theory +hep-th/9602133 Theory +hep-th/9602164 Theory +hep-th/9603086 Theory +hep-th/9603124 Theory +hep-th/9603168 Theory +hep-th/9603187 Theory +hep-th/9604036 Theory +hep-th/9604065 Theory +hep-th/9604087 Theory +hep-th/9604156 Theory +hep-th/9604161 Theory +hep-th/9604187 Theory +hep-th/9605089 Theory +hep-th/9605090 Theory +hep-th/9605103 Theory +hep-th/9605122 Theory +hep-th/9605132 Theory +hep-th/9605190 Theory +hep-th/9605195 Theory +hep-th/9606021 Theory +hep-th/9606026 Theory +hep-th/9606063 Theory +hep-th/9606064 Theory +hep-th/9606065 Theory +hep-th/9606085 Theory +hep-th/9606166 Theory +hep-th/9607033 Theory +hep-th/9607045 Theory +hep-th/9607073 Theory +hep-th/9607078 Theory +hep-th/9607134 Theory +hep-th/9607154 Theory +hep-th/9607164 Theory +hep-th/9607220 Theory +hep-th/9607226 Theory +hep-th/9608009 Theory +hep-th/9608035 Theory +hep-th/9608073 Theory +hep-th/9608093 Theory +hep-th/9608108 Theory +hep-th/9608141 Theory +hep-th/9608177 Theory +hep-th/9608193 Theory +hep-th/9609025 Theory +hep-th/9609056 Theory +hep-th/9609064 Theory +hep-th/9609066 Theory +hep-th/9609070 Theory +hep-th/9609110 Theory +hep-th/9609114 Theory +hep-th/9609119 Theory +hep-th/9609125 Theory +hep-th/9609133 Theory +hep-th/9609190 Theory +hep-th/9609204 Theory +hep-th/9609219 Theory +hep-th/9610004 Theory +hep-th/9610011 Theory +hep-th/9610031 Theory +hep-th/9610048 Theory +hep-th/9610049 Theory +hep-th/9610053 Theory +hep-th/9610055 Theory +hep-th/9610064 Theory +hep-th/9610076 Theory +hep-th/9610087 Theory +hep-th/9610092 Theory +hep-th/9610098 Theory +hep-th/9610125 Theory +hep-th/9610130 Theory +hep-th/9610137 Theory +hep-th/9610139 Theory +hep-th/9610150 Theory +hep-th/9610160 Theory +hep-th/9610174 Theory +hep-th/9610185 Theory +hep-th/9610190 Theory +hep-th/9610194 Theory +hep-th/9610205 Theory +hep-th/9610225 Theory +hep-th/9610241 Theory +hep-th/9610252 Theory +hep-th/9611001 Theory +hep-th/9611002 Theory +hep-th/9611032 Theory +hep-th/9611036 Theory +hep-th/9611040 Theory +hep-th/9611049 Theory +hep-th/9611056 Theory +hep-th/9611086 Theory +hep-th/9611088 Theory +hep-th/9611090 Theory +hep-th/9611104 Theory +hep-th/9611110 Theory +hep-th/9611121 Theory +hep-th/9611122 Theory +hep-th/9611129 Theory +hep-th/9611136 Theory +hep-th/9611157 Theory +hep-th/9611180 Theory +hep-th/9611199 Theory +hep-th/9611216 Theory +hep-th/9611222 Theory +hep-th/9611232 Theory +hep-th/9611234 Theory +hep-th/9611235 Theory +hep-th/9612012 Theory +hep-th/9612013 Theory +hep-th/9612025 Theory +hep-th/9612039 Theory +hep-th/9612046 Theory +hep-th/9612051 Theory +hep-th/9612066 Theory +hep-th/9612071 Theory +hep-th/9612080 Theory +hep-th/9612085 Theory +hep-th/9612090 Theory +hep-th/9612101 Theory +hep-th/9612103 Theory +hep-th/9612104 Theory +hep-th/9612134 Theory +hep-th/9612175 Theory +hep-th/9612182 Theory +hep-th/9612205 Theory +hep-th/9612227 Theory +hep-th/9612243 Theory +hep-th/9612246 Theory +hep-th/9612252 Theory +hep-th/9701006 Theory +hep-th/9701012 Theory +hep-th/9701015 Theory +hep-th/9701020 Theory +hep-th/9701041 Theory +hep-th/9701049 Theory +hep-th/9701073 Theory +hep-th/9701107 Theory +hep-th/9701129 Theory +hep-th/9701144 Theory +hep-th/9701172 Theory +hep-th/9701173 Theory +hep-th/9701187 Theory +hep-th/9702012 Theory +hep-th/9702018 Theory +hep-th/9702042 Theory +hep-th/9702087 Theory +hep-th/9702096 Theory +hep-th/9702099 Theory +hep-th/9702117 Theory +hep-th/9702142 Theory +hep-th/9702190 Theory +hep-th/9703007 Theory +hep-th/9703009 Theory +hep-th/9703014 Theory +hep-th/9703022 Theory +hep-th/9703034 Theory +hep-th/9703050 Theory +hep-th/9703052 Theory +hep-th/9703096 Theory +hep-th/9703106 Theory +hep-th/9703111 Theory +hep-th/9703125 Theory +hep-th/9703186 Theory +hep-th/9703191 Theory +hep-th/9704001 Theory +hep-th/9704018 Theory +hep-th/9704061 Theory +hep-th/9704068 Theory +hep-th/9704098 Theory +hep-th/9704131 Theory +hep-th/9704136 Theory +hep-th/9704158 Theory +hep-th/9704181 Theory +hep-th/9704182 Theory +hep-th/9704188 Theory +hep-th/9704191 Theory +hep-th/9704198 Theory +hep-th/9704210 Theory +hep-th/9704213 Theory +hep-th/9705022 Theory +hep-th/9705024 Theory +hep-th/9705055 Theory +hep-th/9705057 Theory +hep-th/9705097 Theory +hep-th/9705137 Theory +hep-th/9705142 Theory +hep-th/9705181 Theory +hep-th/9705184 Theory +hep-th/9705189 Theory +hep-th/9705190 Theory +hep-th/9705232 Theory +hep-th/9706001 Theory +hep-th/9706006 Theory +hep-th/9706029 Theory +hep-th/9706041 Theory +hep-th/9706054 Theory +hep-th/9706125 Theory +hep-th/9706152 Theory +hep-th/9706158 Theory +hep-th/9706167 Theory +hep-th/9706179 Theory +hep-th/9706186 Theory +hep-th/9707001 Theory +hep-th/9707110 Theory +hep-th/9707232 Theory +hep-th/9707250 Theory +hep-th/9708005 Theory +hep-th/9708022 Theory +hep-th/9708073 Theory +hep-th/9708148 Theory +hep-th/9709064 Theory +hep-th/9709105 Theory +hep-th/9709132 Theory +hep-th/9710036 Theory +hep-th/9710055 Theory +hep-th/9710068 Theory +hep-th/9710083 Theory +hep-th/9710116 Theory +hep-th/9711014 Theory +hep-th/9711032 Theory +hep-th/9711049 Theory +hep-th/9711115 Theory +hep-th/9711147 Theory +hep-th/9712023 Theory +hep-th/9712025 Theory +hep-th/9712043 Theory +hep-th/9712092 Theory +hep-th/9712117 Theory +hep-th/9712121 Theory +hep-th/9712139 Theory +hep-th/9712164 Theory +hep-th/9712186 Theory +hep-th/9712189 Theory +hep-th/9712194 Theory +hep-th/9712219 Theory +hep-th/9801042 Theory +hep-th/9801069 Theory +hep-th/9801134 Theory +hep-th/9801142 Theory +hep-th/9802029 Theory +hep-th/9802032 Theory +hep-th/9802102 Theory +hep-th/9802110 Theory +hep-th/9802111 Theory +hep-th/9802128 Theory +hep-th/9802157 Theory +hep-th/9803002 Theory +hep-th/9803038 Theory +hep-th/9803071 Theory +hep-th/9803085 Theory +hep-th/9803095 Theory +hep-th/9803096 Theory +hep-th/9803140 Theory +hep-th/9803157 Theory +hep-th/9803178 Theory +hep-th/9803187 Theory +hep-th/9804077 Theory +hep-th/9804114 Theory +hep-th/9804134 Theory +hep-th/9804193 Theory +hep-th/9805030 Theory +hep-th/9805154 Theory +hep-th/9805155 Theory +hep-th/9805178 Theory +hep-th/9805198 Theory +hep-th/9806051 Theory +hep-th/9806140 Theory +hep-th/9806213 Theory +hep-th/9806215 Theory +hep-th/9806217 Theory +hep-th/9807019 Theory +hep-th/9807093 Theory +hep-th/9807103 Theory +hep-th/9807127 Theory +hep-th/9807186 Theory +hep-th/9808006 Theory +hep-th/9808043 Theory +hep-th/9808058 Theory +hep-th/9808108 Theory +hep-th/9808144 Theory +hep-th/9809008 Theory +hep-th/9809085 Theory +hep-th/9809132 Theory +hep-th/9809154 Theory +hep-th/9810011 Theory +hep-th/9810057 Theory +hep-th/9810076 Theory +hep-th/9810103 Theory +hep-th/9810129 Theory +hep-th/9810136 Theory +hep-th/9810151 Theory +hep-th/9810160 Theory +hep-th/9810213 Theory +hep-th/9811118 Theory +hep-th/9812022 Theory +hep-th/9812061 Theory +hep-th/9812087 Theory +hep-th/9901028 Theory +hep-th/9901035 Theory +hep-th/9901127 Theory +hep-th/9902074 Theory +hep-th/9902081 Theory +hep-th/9902091 Theory +hep-th/9902096 Theory +hep-th/9902109 Theory +hep-th/9902192 Theory +hep-th/9902193 Theory +hep-th/9903174 Theory +hep-th/9903230 Theory +hep-th/9903249 Theory +hep-th/9904048 Theory +hep-th/9904057 Theory +hep-th/9904159 Theory +hep-th/9905020 Theory +hep-th/9905088 Theory +hep-th/9905101 Theory +hep-th/9905123 Theory +hep-th/9905124 Theory +hep-th/9905149 Theory +hep-th/9905186 Theory +hep-th/9906018 Theory +hep-th/9906078 Theory +hep-th/9906085 Theory +hep-th/9906087 Theory +hep-th/9906091 Theory +hep-th/9906108 Theory +hep-th/9906120 Theory +hep-th/9906216 Theory +hep-th/9907005 Theory +hep-th/9907026 Theory +hep-th/9907049 Theory +hep-th/9907070 Theory +hep-th/9907102 Theory +hep-th/9907144 Theory +hep-th/9907153 Theory +hep-th/9908045 Theory +hep-th/9908058 Theory +hep-th/9908069 Theory +hep-th/9908102 Theory +hep-th/9909020 Theory +hep-th/9909223 Theory +hep-th/9910051 Theory +hep-th/9910118 Theory +hep-th/9910159 Theory +hep-th/9910190 Theory +hep-th/9910198 Theory +hep-th/9910199 Theory +hep-th/9910223 Theory +hep-th/9910239 Theory +hep-th/9911020 Theory +hep-th/9911130 Theory +hep-th/9911133 Theory +hep-th/9911167 Theory +hep-th/9912034 Theory +hep-th/9912271 Theory +math/0512450 Analysis of PDEs +math/9201203 Metric Geometry +math/9201204 Metric Geometry +math/9201208 Probability +math/9201209 Functional Analysis +math/9201230 Functional Analysis +math/9201233 Functional Analysis +math/9201234 Functional Analysis +math/9201244 Logic +math/9201246 Logic +math/9201249 Logic +math/9201253 Logic +math/9201254 Functional Analysis +math/9201255 Differential Geometry +math/9201256 Representation Theory +math/9201258 Differential Geometry +math/9201260 Analysis of PDEs +math/9201261 Analysis of PDEs +math/9201263 Geometric Topology +math/9201265 Group Theory +math/9201266 Numerical Analysis +math/9201267 Complex Variables +math/9201268 Analysis of PDEs +math/9201272 Dynamical Systems +math/9201274 Dynamical Systems +math/9201277 Dynamical Systems +math/9201281 Dynamical Systems +math/9201282 Dynamical Systems +math/9201283 Dynamical Systems +math/9201284 Dynamical Systems +math/9201285 Dynamical Systems +math/9201286 Dynamical Systems +math/9201288 Dynamical Systems +math/9201291 Dynamical Systems +math/9201294 Dynamical Systems +math/9201295 Dynamical Systems +math/9201298 Dynamical Systems +math/9201299 Differential Geometry +math/9201300 Dynamical Systems +math/9201301 Quantum Algebra +math/9201302 Quantum Algebra +math/9202202 Functional Analysis +math/9202206 Differential Geometry +math/9202207 Differential Geometry +math/9202208 Differential Geometry +math/9202209 Dynamical Systems +math/9203202 Differential Geometry +math/9203203 Dynamical Systems +math/9204202 Logic +math/9204203 Logic +math/9204205 Logic +math/9204209 Logic +math/9204211 Functional Analysis +math/9204212 Functional Analysis +math/9204213 Functional Analysis +math/9204215 Functional Analysis +math/9204216 Functional Analysis +math/9204217 Number Theory +math/9204219 Logic +math/9204220 Group Theory +math/9204222 Representation Theory +math/9204224 Complex Variables +math/9204226 Differential Geometry +math/9204227 Representation Theory +math/9204228 Operator Algebras +math/9204229 Representation Theory +math/9204230 Algebraic Geometry +math/9204231 Algebraic Topology +math/9204232 Complex Variables +math/9204235 Spectral Theory +math/9204237 Complex Variables +math/9204238 Complex Variables +math/9204240 Dynamical Systems +math/9205202 Logic +math/9205205 Functional Analysis +math/9205207 Functional Analysis +math/9205208 Logic +math/9205209 Dynamical Systems +math/9205210 Dynamical Systems +math/9206204 Functional Analysis +math/9207206 Functional Analysis +math/9207207 Functional Analysis +math/9207208 Functional Analysis +math/9207209 Quantum Algebra +math/9207211 Differential Geometry +math/9207214 Complex Variables +math/9207220 Dynamical Systems +math/9208201 Functional Analysis +math/9208202 Functional Analysis +math/9208203 Quantum Algebra +math/9209210 Logic +math/9209213 Functional Analysis +math/9209215 Functional Analysis +math/9209217 Functional Analysis +math/9209218 Logic +math/9209219 Differential Geometry +math/9209220 Dynamical Systems +math/9209221 Dynamical Systems +math/9210201 Complex Variables +math/9210202 Logic +math/9210205 Functional Analysis +math/9210206 Functional Analysis +math/9210208 Functional Analysis +math/9210209 Functional Analysis +math/9210210 Functional Analysis +math/9210211 Functional Analysis +math/9210213 Metric Geometry +math/9210215 Analysis of PDEs +math/9210216 Differential Geometry +math/9210217 Dynamical Systems +math/9210218 Metric Geometry +math/9210220 Functional Analysis +math/9210222 Metric Geometry +math/9210223 Differential Geometry +math/9210224 Geometric Topology +math/9210225 Complex Variables +math/9210227 Operator Algebras +math/9211201 Logic +math/9211202 Logic +math/9211210 Functional Analysis +math/9211211 Functional Analysis +math/9211212 Functional Analysis +math/9211214 Logic +math/9212204 Functional Analysis +math/9212206 Functional Analysis +math/9212207 Functional Analysis +math/9212208 Functional Analysis +math/9212209 Quantum Algebra +math/9301201 Functional Analysis +math/9301203 Logic +math/9301204 Logic +math/9301205 Logic +math/9301208 Logic +math/9301209 Logic +math/9301212 Geometric Topology +math/9301216 Combinatorics +math/9301220 Dynamical Systems +math/9302203 Logic +math/9302206 Functional Analysis +math/9302207 Functional Analysis +math/9302208 Functional Analysis +math/9302209 Functional Analysis +math/9302210 Metric Geometry +math/9302211 Functional Analysis +math/9302212 Functional Analysis +math/9302213 Functional Analysis +math/9302214 Functional Analysis +math/9302216 Functional Analysis +math/9303201 Functional Analysis +math/9303207 Logic +math/9303208 Logic +math/9303209 Dynamical Systems +math/9304202 Logic +math/9304206 Functional Analysis +math/9304207 Logic +math/9304208 Logic +math/9304211 Number Theory +math/9304212 Algebraic Geometry +math/9304214 Numerical Analysis +math/9304215 Representation Theory +math/9305203 Functional Analysis +math/9305205 Logic +math/9306203 Group Theory +math/9306206 Functional Analysis +math/9306207 Functional Analysis +math/9306208 Functional Analysis +math/9306209 Functional Analysis +math/9306210 Functional Analysis +math/9306211 Functional Analysis +math/9307203 Classical Analysis and ODEs +math/9307204 Classical Analysis and ODEs +math/9307207 Classical Analysis and ODEs +math/9307208 Classical Analysis and ODEs +math/9307209 Classical Analysis and ODEs +math/9307210 Classical Analysis and ODEs +math/9307211 Classical Analysis and ODEs +math/9307213 Classical Analysis and ODEs +math/9307214 Classical Analysis and ODEs +math/9307217 Classical Analysis and ODEs +math/9307218 Classical Analysis and ODEs +math/9307222 Classical Analysis and ODEs +math/9307224 Classical Analysis and ODEs +math/9307227 History and Overview +math/9307230 Geometric Topology +math/9307234 Numerical Analysis +math/9308204 Functional Analysis +math/9308205 Functional Analysis +math/9308207 Functional Analysis +math/9308208 Functional Analysis +math/9308209 Classical Analysis and ODEs +math/9308210 Logic +math/9308213 Logic +math/9308214 Logic +math/9308215 Logic +math/9308218 Logic +math/9308219 Logic +math/9308220 Logic +math/9308221 Logic +math/9308222 Logic +math/9308223 Dynamical Systems +math/9309204 Logic +math/9309209 Logic +math/9309210 Functional Analysis +math/9309213 Classical Analysis and ODEs +math/9309214 Differential Geometry +math/9309215 Dynamical Systems +math/9310201 Complex Variables +math/9310216 Functional Analysis +math/9310220 Classical Analysis and ODEs +math/9310221 Classical Analysis and ODEs +math/9310222 Classical Analysis and ODEs +math/9310223 Classical Analysis and ODEs +math/9310224 Logic +math/9310225 Probability +math/9310226 Dynamical Systems +math/9310228 Algebraic Topology +math/9310231 Differential Geometry +math/9310233 Operator Algebras +math/9310235 Dynamical Systems +math/9311205 Logic +math/9311208 Functional Analysis +math/9311209 Classical Analysis and ODEs +math/9311210 Classical Analysis and ODEs +math/9311213 Dynamical Systems +math/9312205 Functional Analysis +math/9312206 Functional Analysis +math/9312208 Functional Analysis +math/9312210 Classical Analysis and ODEs +math/9312212 Logic +math/9312213 Symplectic Geometry +math/9401205 Functional Analysis +math/9401206 Functional Analysis +math/9401209 Classical Analysis and ODEs +math/9401211 Logic +math/9401213 Logic +math/9401217 Logic +math/9401218 Logic +math/9401221 Functional Analysis +math/9401223 Complex Variables +math/9401224 Dynamical Systems +math/9402204 Functional Analysis +math/9402205 Functional Analysis +math/9402206 Functional Analysis +math/9402210 Functional Analysis +math/9402212 Classical Analysis and ODEs +math/9402213 Logic +math/9402214 Logic +math/9403202 Logic +math/9403203 Logic +math/9403205 Functional Analysis +math/9403206 Functional Analysis +math/9403207 Functional Analysis +math/9403208 Functional Analysis +math/9403210 Functional Analysis +math/9403211 Functional Analysis +math/9403213 Classical Analysis and ODEs +math/9403214 Classical Analysis and ODEs +math/9403218 Quantum Algebra +math/9403219 Logic +math/9403222 Dynamical Systems +math/9404204 Logic +math/9404207 Functional Analysis +math/9404208 Functional Analysis +math/9404209 Functional Analysis +math/9404210 Functional Analysis +math/9404211 Functional Analysis +math/9404212 Functional Analysis +math/9404214 Functional Analysis +math/9404215 Functional Analysis +math/9404219 Classical Analysis and ODEs +math/9404220 Classical Analysis and ODEs +math/9404221 Classical Analysis and ODEs +math/9404223 Classical Analysis and ODEs +math/9404225 Quantum Algebra +math/9404226 Logic +math/9404232 Geometric Topology +math/9404233 History and Overview +math/9404234 Functional Analysis +math/9404237 Dynamical Systems +math/9405206 Logic +math/9405209 Functional Analysis +math/9405211 Functional Analysis +math/9405213 Classical Analysis and ODEs +math/9405216 Dynamical Systems +math/9405217 Dynamical Systems +math/9405218 Metric Geometry +math/9406210 Functional Analysis +math/9406212 Probability +math/9406215 Functional Analysis +math/9406217 Functional Analysis +math/9406224 Classical Analysis and ODEs +math/9406225 Combinatorics +math/9406227 Classical Analysis and ODEs +math/9406228 Logic +math/9406229 Logic +math/9407204 Logic +math/9407205 Logic +math/9407206 Logic +math/9407207 Logic +math/9407210 Functional Analysis +math/9407214 Quantum Algebra +math/9407215 Functional Analysis +math/9407216 Differential Geometry +math/9407217 Geometric Topology +math/9407218 Dynamical Systems +math/9407219 Number Theory +math/9407220 Number Theory +math/9407222 Geometric Topology +math/9408202 Logic +math/9408209 Classical Analysis and ODEs +math/9408211 Classical Analysis and ODEs +math/9408212 Representation Theory +math/9408213 Logic +math/9408217 Dynamical Systems +math/9409207 Logic +math/9409208 Commutative Algebra +math/9409209 Geometric Topology +math/9409211 K-Theory and Homology +math/9409212 Combinatorics +math/9409213 Combinatorics +math/9409214 Combinatorics +math/9409215 Combinatorics +math/9409217 Combinatorics +math/9409218 Combinatorics +math/9409221 Combinatorics +math/9409224 Combinatorics +math/9409225 Combinatorics +math/9409226 Combinatorics +math/9409229 Classical Analysis and ODEs +math/9409231 Classical Analysis and ODEs +math/9409232 Geometric Topology +math/9410201 Logic +math/9410204 Functional Analysis +math/9410205 Functional Analysis +math/9410206 Logic +math/9410207 Rings and Algebras +math/9410208 Combinatorics +math/9410209 Combinatorics +math/9410210 Combinatorics +math/9410212 Number Theory +math/9410214 Representation Theory +math/9410215 Geometric Topology +math/9410218 Geometric Topology +math/9410221 Dynamical Systems +math/9410223 Dynamical Systems +math/9410224 Combinatorics +math/9411202 Complex Variables +math/9411203 Group Theory +math/9411206 Logic +math/9411210 Functional Analysis +math/9411212 Number Theory +math/9411215 Combinatorics +math/9411219 Combinatorics +math/9411220 Combinatorics +math/9411221 Combinatorics +math/9411222 Combinatorics +math/9411223 Combinatorics +math/9411224 Classical Analysis and ODEs +math/9411225 Quantum Algebra +math/9411227 Classical Analysis and ODEs +math/9411229 Classical Analysis and ODEs +math/9411230 Quantum Algebra +math/9411231 Quantum Algebra +math/9411233 Algebraic Geometry +math/9411235 Logic +math/9411236 Logic +math/9411237 Dynamical Systems +math/9412208 Logic +math/9412211 Functional Analysis +math/9412213 Functional Analysis +math/9412216 Functional Analysis +math/9412219 Functional Analysis +math/9412221 Differential Geometry +math/9412222 Combinatorics +math/9412224 Classical Analysis and ODEs +math/9412225 Quantum Algebra +math/9412227 Classical Analysis and ODEs +math/9412229 Logic +math/9412230 Logic +math/9412233 Dynamical Systems +math/9501203 Logic +math/9501204 Logic +math/9501205 Logic +math/9501207 Logic +math/9501208 Logic +math/9501209 Logic +math/9501210 Functional Analysis +math/9501215 Functional Analysis +math/9501216 Representation Theory +math/9501218 Classical Analysis and ODEs +math/9501219 Quantum Algebra +math/9501221 Logic +math/9501222 Logic +math/9501224 Classical Analysis and ODEs +math/9501226 Classical Analysis and ODEs +math/9501230 Dynamical Systems +math/9501231 Combinatorics +math/9501232 Dynamical Systems +math/9501233 Dynamical Systems +math/9502203 Logic +math/9502204 Logic +math/9502205 Logic +math/9502209 Number Theory +math/9502210 Combinatorics +math/9502211 Combinatorics +math/9502213 Combinatorics +math/9502215 Combinatorics +math/9502216 Combinatorics +math/9502218 Combinatorics +math/9502219 Combinatorics +math/9502220 Combinatorics +math/9502224 Combinatorics +math/9502226 Combinatorics +math/9502229 Classical Analysis and ODEs +math/9502230 Logic +math/9502232 Logic +math/9502234 Combinatorics +math/9503203 Logic +math/9503204 Logic +math/9503207 Logic +math/9503208 Logic +math/9503209 Logic +math/9503211 Functional Analysis +math/9503212 Functional Analysis +math/9503214 Metric Geometry +math/9503215 Dynamical Systems +math/9503216 Differential Geometry +math/9503218 Number Theory +math/9503221 Combinatorics +math/9503222 Combinatorics +math/9503223 Classical Analysis and ODEs +math/9503224 Quantum Algebra +math/9503225 Quantum Algebra +math/9503226 Logic +math/9503232 Group Theory +math/9504201 Logic +math/9504205 Functional Analysis +math/9504208 Differential Geometry +math/9504209 Differential Geometry +math/9504211 Combinatorics +math/9504213 Combinatorics +math/9504215 Classical Analysis and ODEs +math/9504216 Classical Analysis and ODEs +math/9504217 Classical Analysis and ODEs +math/9504218 Classical Analysis and ODEs +math/9504220 Logic +math/9504222 Number Theory +math/9504223 Number Theory +math/9504224 Rings and Algebras +math/9504225 Complex Variables +math/9504226 Analysis of PDEs +math/9504227 Dynamical Systems +math/9505202 Complex Variables +math/9505204 Logic +math/9505205 Metric Geometry +math/9505206 Representation Theory +math/9505207 Dynamical Systems +math/9505209 Representation Theory +math/9505210 Metric Geometry +math/9505212 Logic +math/9505213 Classical Analysis and ODEs +math/9505215 Logic +math/9505216 Logic +math/9505217 Differential Geometry +math/9506208 Logic +math/9506209 Geometric Topology +math/9506211 Dynamical Systems +math/9506212 Dynamical Systems +math/9506213 Complex Variables +math/9506216 Quantum Algebra +math/9506217 Representation Theory +math/9506219 Representation Theory +math/9506221 Geometric Topology +math/9506222 Logic +math/9506223 Differential Geometry +math/9506225 Combinatorics +math/9507208 Logic +math/9507209 Logic +math/9507210 Logic +math/9507211 Logic +math/9507212 Logic +math/9507214 Logic +math/9507217 Number Theory +math/9507218 Number Theory +math/9507219 Combinatorics +math/9507223 Dynamical Systems +math/9507225 Dynamical Systems +math/9508206 Logic +math/9508207 Functional Analysis +math/9508208 Number Theory +math/9508210 Number Theory +math/9508212 Dynamical Systems +math/9508213 Differential Geometry +math/9508214 Differential Geometry +math/9508217 Algebraic Topology +math/9508218 Combinatorics +math/9508220 Logic +math/9509207 Logic +math/9509208 Logic +math/9509209 Logic +math/9509210 Logic +math/9509211 Logic +math/9509215 Functional Analysis +math/9509217 Functional Analysis +math/9509218 Representation Theory +math/9509219 Algebraic Topology +math/9509220 Differential Geometry +math/9509221 Dynamical Systems +math/9509222 Quantum Algebra +math/9509224 Number Theory +math/9509228 Logic +math/9510201 Complex Variables +math/9510202 Functional Analysis +math/9510203 Probability +math/9510204 Representation Theory +math/9510206 Complex Variables +math/9510207 Differential Geometry +math/9510208 Number Theory +math/9510211 Classical Analysis and ODEs +math/9510215 Logic +math/9510216 Logic +math/9510217 Metric Geometry +math/9510219 Dynamical Systems +math/9511202 Complex Variables +math/9511206 Functional Analysis +math/9511207 Functional Analysis +math/9511208 Dynamical Systems +math/9511210 Complex Variables +math/9511212 Functional Analysis +math/9511214 Functional Analysis +math/9511215 Representation Theory +math/9511216 Representation Theory +math/9511217 Operator Algebras +math/9511218 Classical Analysis and ODEs +math/9512201 Logic +math/9512202 Logic +math/9512203 Functional Analysis +math/9512204 Functional Analysis +math/9512205 Functional Analysis +math/9512206 Functional Analysis +math/9512209 Functional Analysis +math/9512212 Functional Analysis +math/9512213 Complex Variables +math/9512214 Operator Algebras +math/9512215 Analysis of PDEs +math/9512216 Analysis of PDEs +math/9512217 Number Theory +math/9512219 Spectral Theory +math/9512220 Operator Algebras +math/9512221 Dynamical Systems +math/9512222 Classical Analysis and ODEs +math/9512226 Logic +math/9512229 Dynamical Systems +math/9601204 Functional Analysis +math/9601208 Differential Geometry +math/9601210 Functional Analysis +math/9601211 Functional Analysis +math/9601212 Dynamical Systems +math/9601213 Dynamical Systems +math/9601214 Dynamical Systems +math/9601215 Representation Theory +math/9601216 Classical Analysis and ODEs +math/9601218 Logic +math/9601220 Functional Analysis +math/9601221 Quantum Algebra +math/9602204 Logic +math/9602205 Logic +math/9602206 Functional Analysis +math/9602207 Functional Analysis +math/9602209 Functional Analysis +math/9602213 Differential Geometry +math/9602214 Classical Analysis and ODEs +math/9602215 Number Theory +math/9602216 Logic +math/9602218 Functional Analysis +math/9602219 Operator Algebras +math/9603205 Logic +math/9603209 Probability +math/9603210 Complex Variables +math/9603211 Combinatorics +math/9603212 Functional Analysis +math/9603217 Classical Analysis and ODEs +math/9603219 Logic +math/9604201 Complex Variables +math/9604207 Logic +math/9604209 Logic +math/9604211 Logic +math/9604212 Functional Analysis +math/9604213 Functional Analysis +math/9604214 Functional Analysis +math/9604218 Functional Analysis +math/9604219 Functional Analysis +math/9604221 Complex Variables +math/9604223 Number Theory +math/9604224 Complex Variables +math/9604227 Algebraic Geometry +math/9604228 Complex Variables +math/9604229 Functional Analysis +math/9604231 Dynamical Systems +math/9604235 Dynamical Systems +math/9604237 Dynamical Systems +math/9604238 Dynamical Systems +math/9604240 Dynamical Systems +math/9604242 Logic +math/9604243 Logic +math/9604244 Logic +math/9604245 Numerical Analysis +math/9605208 Logic +math/9605209 Logic +math/9605210 Logic +math/9605212 Functional Analysis +math/9605213 Functional Analysis +math/9605215 Functional Analysis +math/9605216 Number Theory +math/9605217 Metric Geometry +math/9605218 Metric Geometry +math/9605219 Representation Theory +math/9605220 Geometric Topology +math/9605222 Differential Geometry +math/9605224 Functional Analysis +math/9605226 Functional Analysis +math/9605227 Operator Algebras +math/9605228 Dynamical Systems +math/9605229 Dynamical Systems +math/9605232 Geometric Topology +math/9605234 Logic +math/9605235 Logic +math/9606205 Logic +math/9606206 Logic +math/9606208 Logic +math/9606209 Functional Analysis +math/9606210 Functional Analysis +math/9606212 Operator Algebras +math/9606214 Spectral Theory +math/9606215 Algebraic Geometry +math/9606216 Geometric Topology +math/9606218 Dynamical Systems +math/9606219 Dynamical Systems +math/9606223 Dynamical Systems +math/9606225 Geometric Topology +math/9606227 Logic +math/9606230 Logic +math/9606231 Logic +math/9607203 Logic +math/9607208 Functional Analysis +math/9607209 Probability +math/9607210 Probability +math/9607211 Functional Analysis +math/9607214 Dynamical Systems +math/9607215 Algebraic Geometry +math/9607217 Algebraic Geometry +math/9607218 Representation Theory +math/9607219 Representation Theory +math/9607222 Representation Theory +math/9607226 Logic +math/9607228 Logic +math/9607231 Representation Theory +math/9607232 Rings and Algebras +math/9608203 Logic +math/9608204 Logic +math/9608205 Logic +math/9608206 Group Theory +math/9608208 Metric Geometry +math/9608210 Differential Geometry +math/9608211 Geometric Topology +math/9608212 Dynamical Systems +math/9608213 Dynamical Systems +math/9609202 Logic +math/9609203 Logic +math/9609207 Geometric Topology +math/9609208 Geometric Topology +math/9609210 Differential Geometry +math/9609211 Combinatorics +math/9609214 Number Theory +math/9609215 Logic +math/9609216 Logic +math/9610207 Logic +math/9610208 Functional Analysis +math/9610209 Functional Analysis +math/9610213 Functional Analysis +math/9610214 Functional Analysis +math/9610216 Spectral Theory +math/9610218 Representation Theory +math/9610219 Logic +math/9610220 Geometric Topology +math/9610225 Classical Analysis and ODEs +math/9610226 Logic +math/9611207 Logic +math/9611208 Logic +math/9611209 Logic +math/9611210 Logic +math/9611212 Group Theory +math/9611214 Group Theory +math/9611215 Combinatorics +math/9611217 Dynamical Systems +math/9611218 Classical Analysis and ODEs +math/9611219 Representation Theory +math/9611220 Representation Theory +math/9611223 Differential Geometry +math/9612201 Complex Variables +math/9612203 Complex Variables +math/9612207 Logic +0704.2585 +0704.3324 Soft Condensed Matter +0705.0823 Statistical Mechanics +0705.3753 +0705.3924 Superconductivity +0705.4189 Soft Condensed Matter +0706.2406 +0707.2506 Artificial Intelligence +0707.2527 Information Theory +0707.2776 Geometric Topology +0707.3094 +0707.3611 Lattice +0708.0214 +0708.4132 Statistics Theory +0709.4285 Probability +0710.2203 Differential Geometry +0710.3071 Operator Algebras +0710.4566 Soft Condensed Matter +0710.4882 +0711.2140 +0711.3655 +0711.3724 +0711.4913 Mesoscale and Nanoscale Physics +0712.2186 +0812.0811 +0904.0698 Computational Complexity +0907.4894 Number Theory +0911.3173 Group Theory +0912.5354 Phenomenology +1002.4564 Group Theory +1112.4829 Metric Geometry +1201.3343 Theory +1207.3137 Molecular Networks +1208.3964 Probability +1210.7146 Algebraic Geometry +1211.1355 Analysis of PDEs +1304.1467 Data Structures and Algorithms +1306.2851 Geometric Topology +1307.6491 Algebraic Geometry +1308.5024 Materials Science +1309.7857 Machine Learning +1401.0218 Probability +1401.4563 Complex Variables +1402.4169 Probability +1403.3033 +1405.3278 Symplectic Geometry +1406.1693 Complex Variables +1408.2998 Probability +1408.5783 Combinatorics +1410.1736 Analysis of PDEs +1410.4767 Analysis of PDEs +1410.6887 Analysis of PDEs +1410.8160 Mathematical Finance +1411.0383 Representation Theory +1411.6751 Differential Geometry +1412.8575 +1501.00031 Atomic Physics +1501.00783 Optimization and Control +1501.02102 Machine Learning +1502.06927 Representation Theory +1504.03971 Number Theory +1504.07630 Mesoscale and Nanoscale Physics +1505.01197 Computer Vision and Pattern Recognition +1505.04038 Materials Science +1505.04284 Number Theory +1505.06279 Machine Learning +1505.07305 Number Theory +1506.01020 +1506.01100 Cosmology and Nongalactic Astrophysics +1506.01894 Statistics Theory +1506.02410 Representation Theory +1506.03037 Dynamical Systems +1506.03560 Phenomenology +1506.05855 Machine Learning +1506.06275 Distributed, Parallel, and Cluster Computing +1506.07756 +1506.08617 Mesoscale and Nanoscale Physics +1507.02097 Numerical Analysis +1507.05349 Mesoscale and Nanoscale Physics +1507.06358 Superconductivity +1508.00046 Theory +1508.00667 General Topology +1508.01185 +1508.01274 Networking and Internet Architecture +1508.02239 Optimization and Control +1508.05487 Combinatorics +1508.07922 +1509.01843 +1509.01946 Differential Geometry +1509.02276 Earth and Planetary Astrophysics +1509.03667 Combinatorics +1510.00109 Multiagent Systems +1510.04034 Materials Science +1510.05224 Instrumentation and Detectors +1510.05293 Analysis of PDEs +1510.06944 Mesoscale and Nanoscale Physics +1510.07327 Statistical Mechanics +1511.00429 Analysis of PDEs +1511.03581 High Energy Astrophysical Phenomena +1511.04096 Trading and Market Microstructure +1511.05005 Instrumentation and Detectors +1511.06205 Phenomenology +1511.08611 +1511.09167 Differential Geometry +1511.09218 Atomic Physics +1511.09359 Materials Science +1512.00336 Applications +1512.02533 Theory +1512.06487 +1512.06603 Phenomenology +1601.00968 Strongly Correlated Electrons +1601.01804 General Finance +1601.03282 Statistical Mechanics +1601.04315 +1601.04332 Mesoscale and Nanoscale Physics +1601.04686 Economics +1601.05024 Theory +1601.05444 Materials Science +1601.06647 Strongly Correlated Electrons +1601.06792 Cosmology and Nongalactic Astrophysics +1601.07075 Analysis of PDEs +1602.00417 Computer Vision and Pattern Recognition +1602.02738 Complex Variables +1602.03534 Machine Learning +1602.03768 Information Theory +1602.04738 +1602.05718 Economics +1602.06986 Optimization and Control +1602.08462 Atmospheric and Oceanic Physics +1603.00633 Data Analysis, Statistics and Probability +1603.01292 Computer Vision and Pattern Recognition +1603.01294 Theory +1603.01643 General Physics +1603.01861 Algebraic Topology +1603.01889 Probability +1603.02220 Representation Theory +1603.02995 Biological Physics +1603.03301 Combinatorics +1603.04223 Neural and Evolutionary Computing +1603.05446 Physics Education +1603.06199 +1603.06712 Combinatorics +1603.06846 Machine Learning +1603.07110 Phenomenology +1603.07296 +1603.07392 Computer Science and Game Theory +1603.07513 Information Theory +1603.07728 Fluid Dynamics +1603.07730 High Energy Astrophysical Phenomena +1603.07732 Astrophysics of Galaxies +1603.07737 Computational Geometry +1603.07738 Machine Learning +1603.07743 Optics +1603.07744 +1603.07745 Computer Vision and Pattern Recognition +1603.07746 Numerical Analysis +1603.07749 Machine Learning +1603.07751 Computer Science and Game Theory +1603.07756 +1603.07759 Neurons and Cognition +1603.07763 Computer Vision and Pattern Recognition +1603.07764 Astrophysics of Galaxies +1603.07767 Analysis of PDEs +1603.07768 Data Structures and Algorithms +1603.07772 Computer Vision and Pattern Recognition +1603.07773 Solar and Stellar Astrophysics +1603.07779 Computational Complexity +1603.07780 Number Theory +1603.07783 Optimization and Control +1603.07789 Optimization and Control +1603.07791 Mesoscale and Nanoscale Physics +1603.07792 Functional Analysis +1603.07793 Differential Geometry +1603.07796 Data Structures and Algorithms +1603.07797 Computer Vision and Pattern Recognition +1603.07799 Number Theory +1603.07800 Computer Vision and Pattern Recognition +1603.07803 Mesoscale and Nanoscale Physics +1603.07806 Probability +1603.07809 Combinatorics +1603.07813 Social and Information Networks +1603.07816 Methodology +1603.07817 Number Theory +1603.07819 Strongly Correlated Electrons +1603.07821 Algebraic Geometry +1603.07822 Statistical Finance +1603.07825 Networking and Internet Architecture +1603.07826 Number Theory +1603.07834 Computer Vision and Pattern Recognition +1603.07836 Functional Analysis +1603.07838 Numerical Analysis +1603.07839 Computer Vision and Pattern Recognition +1603.07841 Functional Analysis +1603.07843 Methodology +1603.07846 Learning +1603.07848 Solar and Stellar Astrophysics +1603.07849 Information Retrieval +1603.07850 Machine Learning +1603.07853 Classical Physics +1603.07859 Probability +1603.07866 Learning +1603.07867 Strongly Correlated Electrons +1603.07868 Combinatorics +1603.07874 Representation Theory +1603.07875 Optimization and Control +1603.07876 Symplectic Geometry +1603.07879 Learning +1603.07881 Computational Complexity +1603.07883 Combinatorics +1603.07884 Number Theory +1603.07886 Computer Vision and Pattern Recognition +1603.07889 Functional Analysis +1603.07892 High Energy Astrophysical Phenomena +1603.07895 Methodology +1603.07896 Fluid Dynamics +1603.07897 Statistical Mechanics +1603.07898 Soft Condensed Matter +1603.07900 Probability +1603.07901 Probability +1603.07903 Data Analysis, Statistics and Probability +1603.07909 Probability +1603.07911 Physics Education +1603.07914 Number Theory +1603.07918 Fluid Dynamics +1603.07919 Computational Engineering, Finance, and Science +1603.07924 Cryptography and Security +1603.07927 Statistical Mechanics +1603.07929 Theory +1603.07930 Exactly Solvable and Integrable Systems +1603.07931 +1603.07933 Social and Information Networks +1603.07935 Algebraic Geometry +1603.07947 Data Structures and Algorithms +1603.07948 Applications +1603.07949 Instrumentation and Detectors +1603.07951 Pattern Formation and Solitons +1603.07952 Differential Geometry +1603.07953 Analysis of PDEs +1603.07957 Computer Vision and Pattern Recognition +1603.07958 Quantum Algebra +1603.07959 High Energy Astrophysical Phenomena +1603.07961 Hardware Architecture +1603.07962 Hardware Architecture +1603.07964 Hardware Architecture +1603.07965 Computer Vision and Pattern Recognition +1603.07968 Mesoscale and Nanoscale Physics +1603.07969 +1603.07970 Probability +1603.07971 +1603.07972 Phenomenology +1603.07975 Quantum Gases +1603.07978 Methodology +1603.07980 +1603.07981 Networking and Internet Architecture +1603.07984 Systems and Control +1603.07990 Networking and Internet Architecture +1603.07992 Social and Information Networks +1603.07995 Networking and Internet Architecture +1603.07996 Materials Science +math/0604465 Number Theory +0810.3317 Analysis of PDEs +1209.2491 Algebraic Geometry +1301.6252 Pricing of Securities +1307.4673 +1308.5446 +1309.6280 Computational Complexity +1312.7119 +1401.2853 Networking and Internet Architecture +1402.7364 Algebraic Geometry +1403.5556 Learning +1411.3272 Optimization and Control +1411.5906 Classical Analysis and ODEs +1411.6354 Algebraic Geometry +1412.1798 Systems and Control +1412.4912 Statistics Theory +1501.03372 Algebraic Geometry +1502.00662 Strongly Correlated Electrons +1502.06967 +1503.04244 Information Theory +1503.05622 Combinatorics +1506.01583 Methodology +1506.01901 Analysis of PDEs +1506.04248 Optics +1506.05557 Information Theory +1506.07222 Optimization and Control +1506.08810 +1507.00747 Methodology +1507.03719 Data Structures and Algorithms +1507.05709 Functional Analysis +1507.08080 Computational Geometry +1508.01102 +1508.01484 Theory +1508.02211 Operator Algebras +1508.02943 Operator Algebras +1508.03774 Populations and Evolution +1508.03870 Combinatorics +1508.03875 Combinatorics +1509.03072 Combinatorics +1509.03326 General Physics +1509.04190 Combinatorics +1509.05408 Mesoscale and Nanoscale Physics +1509.05597 Strongly Correlated Electrons +1510.01863 Soft Condensed Matter +1510.02196 Human-Computer Interaction +1510.04374 Information Theory +1510.04957 +1510.07985 Phenomenology +1511.00146 Machine Learning +1511.01315 Combinatorics +1511.03952 Operator Algebras +1511.07872 Cosmology and Nongalactic Astrophysics +1512.05461 Materials Science +1512.07693 Pattern Formation and Solitons +1512.08323 Phenomenology +1601.01342 Optimization and Control +1601.03599 Instrumentation and Detectors +1601.04111 Probability +1601.05071 Strongly Correlated Electrons +1601.06098 Logic in Computer Science +1601.06788 Theory +1601.07791 Theory +1602.00127 Representation Theory +1602.02139 Graphics +1602.07337 Methodology +1602.07574 Phenomenology +1602.07685 +1602.08780 Machine Learning +1602.09017 Lattice +1603.03235 Computer Vision and Pattern Recognition +1603.04167 +1603.05935 Theory +1603.05968 Cosmology and Nongalactic Astrophysics +1603.05971 Quantum Gases +1603.06280 Atomic Physics +1603.06935 Theory +1603.08060 Materials Science +1603.08575 Computer Vision and Pattern Recognition +1603.09538 Analysis of PDEs +1604.00420 Materials Science +1604.00510 Materials Science +1604.00821 Mesoscale and Nanoscale Physics +1604.02074 +1604.02473 Logic +1604.07469 +1604.07511 Mesoscale and Nanoscale Physics +1604.07514 Mesoscale and Nanoscale Physics +1604.07568 +1604.08553 Data Structures and Algorithms +1605.00187 Classical Analysis and ODEs +1605.01674 Chemical Physics +1605.01715 Computational Physics +1605.01827 Materials Science +1605.02702 Cosmology and Nongalactic Astrophysics +1605.03456 Optimization and Control +1605.05650 Materials Science +1605.07339 +1605.09036 Geometric Topology +1606.00387 Methodology +1606.00824 Quantum Gases +1606.01750 Information Theory +1606.03732 Phenomenology +1606.04617 +1606.05765 Numerical Analysis +1606.07121 Materials Science +1606.08775 +1606.08810 High Energy Astrophysical Phenomena +1606.09606 +1607.00564 Geometric Topology +1607.00694 Strongly Correlated Electrons +1607.02024 Machine Learning +1607.03371 Group Theory +1607.03510 Theory +1607.03872 Mesoscale and Nanoscale Physics +1607.04081 High Energy Astrophysical Phenomena +1607.04343 Category Theory +1607.04830 Algebraic Topology +1607.05744 Mesoscale and Nanoscale Physics +1607.06094 Superconductivity +1607.06214 Analysis of PDEs +1607.06234 Phenomenology +1607.06498 Probability +1607.06533 High Energy Astrophysical Phenomena +1607.07405 Computer Vision and Pattern Recognition +1607.08598 Soft Condensed Matter +1607.08830 +1608.00364 Algebraic Geometry +1608.01061 Materials Science +1608.01431 Computer Vision and Pattern Recognition +1608.01751 Earth and Planetary Astrophysics +1608.01883 Materials Science +1608.02082 Artificial Intelligence +1608.02115 +1608.02317 Number Theory +1608.02404 +1608.02436 Instrumentation and Methods for Astrophysics +1608.02592 +1608.02653 Computational Geometry +1608.03259 Combinatorics +1608.03329 Geometric Topology +1608.03459 Number Theory +1608.03530 Learning +1608.03589 Numerical Analysis +1608.03590 Differential Geometry +1608.03594 Populations and Evolution +1608.03595 Instrumentation and Methods for Astrophysics +1608.03598 +1608.03603 Instrumentation and Detectors +1608.03605 Physics and Society +1608.03606 Earth and Planetary Astrophysics +1608.03608 Software Engineering +1608.03609 Computer Vision and Pattern Recognition +1608.03610 Robotics +1608.03611 Data Structures and Algorithms +1608.03614 Optics +1608.03615 Mesoscale and Nanoscale Physics +1608.03616 Neurons and Cognition +1608.03617 Computer Vision and Pattern Recognition +1608.03618 Fluid Dynamics +1608.03619 Neurons and Cognition +1608.03620 Optics +1608.03622 Systems and Control +1608.03624 Software Engineering +1608.03625 Strongly Correlated Electrons +1608.03626 Functional Analysis +1608.03628 Classical Analysis and ODEs +1608.03631 High Energy Astrophysical Phenomena +1608.03632 Combinatorics +1608.03635 Combinatorics +1608.03636 Statistical Finance +1608.03637 Physics and Society +1608.03638 Information Theory +1608.03639 Machine Learning +1608.03640 Information Theory +1608.03642 +1608.03645 Optics +1608.03646 Algebraic Geometry +1608.03647 Learning +1608.03648 Algebraic Geometry +1608.03649 Computer Science and Game Theory +1608.03650 Programming Languages +1608.03651 Phenomenology +1608.03652 High Energy Astrophysical Phenomena +1608.03654 Algebraic Topology +1608.03655 Neurons and Cognition +1608.03657 Algebraic Topology +1608.03658 Computer Vision and Pattern Recognition +1608.03662 Phenomenology +1608.03663 Information Theory +1608.03664 Information Theory +1608.03666 Functional Analysis +1608.03667 Computer Vision and Pattern Recognition +1608.03668 Functional Analysis +1608.03669 +1608.03670 Number Theory +1608.03672 Artificial Intelligence +1608.03676 Performance +1608.03677 Information Theory +1608.03678 Materials Science +1608.03680 Computational Geometry +1608.03682 Analysis of PDEs +1608.03684 Information Theory +1608.03686 Methodology +1608.03688 Rings and Algebras +1608.03689 Information Theory +1608.03696 Analysis of PDEs +1608.03697 Discrete Mathematics +1608.03699 Functional Analysis +1608.03700 Combinatorics +1608.03701 Analysis of PDEs +1608.03703 Statistics Theory +1608.03706 Methodology +1608.03708 Mesoscale and Nanoscale Physics +1608.03710 Information Theory +1608.03712 Complex Variables +1608.03713 Classical Analysis and ODEs +1608.03715 Analysis of PDEs +1608.03719 Atomic and Molecular Clusters +1608.03720 Sound +1608.03722 Soft Condensed Matter +1608.03723 Information Theory +1608.03724 Other Computer Science +1608.03726 Mesoscale and Nanoscale Physics +1608.03729 Optimization and Control +1608.03730 Biological Physics +1608.03731 +1608.03732 Cryptography and Security +1608.03733 Functional Analysis +1608.03736 Probability +1608.03737 +1608.03738 Theory +1608.03740 Commutative Algebra +1608.03744 +1608.03747 Functional Analysis +1608.03749 Information Theory +1608.03750 Analysis of PDEs +1608.03752 Superconductivity +1608.03754 Group Theory +1608.03755 Strongly Correlated Electrons +1608.03758 Functional Analysis +1608.03761 Materials Science +1608.03762 Quantum Algebra +1608.03764 Computation and Language +1608.03766 Probability +1608.03767 Computation and Language +1608.03768 Metric Geometry +1608.03769 Methodology +1608.03770 Networking and Internet Architecture +1608.03771 Programming Languages +1608.03774 Physics and Society +1608.03777 Mesoscale and Nanoscale Physics +1608.03778 +1608.03780 Databases +1608.03783 Materials Science +1608.03785 Artificial Intelligence +1608.03786 Algebraic Geometry +1608.03787 Applications +1608.03788 Solar and Stellar Astrophysics +1608.03790 Atmospheric and Oceanic Physics +1608.03791 Materials Science +1608.03794 Geophysics +1608.03795 Algebraic Topology +1608.03796 Number Theory +1608.03800 Earth and Planetary Astrophysics +1608.03802 Geophysics +1608.03803 Computation and Language +1608.03804 Group Theory +1608.03807 Differential Geometry +1608.03808 +1608.03811 Machine Learning +1608.03818 Numerical Analysis +1608.03819 Computer Vision and Pattern Recognition +1608.03820 +1608.03821 Materials Science +1608.03822 Plasma Physics +1608.03823 Geometric Topology +1608.03824 Artificial Intelligence +1608.03827 Superconductivity +1608.03829 Quantum Algebra +1608.03832 Computer Vision and Pattern Recognition +1608.03833 Solar and Stellar Astrophysics +1608.03834 Soft Condensed Matter +1608.03836 Numerical Analysis +1608.03840 Representation Theory +1608.03843 Optimization and Control +1608.03845 Robotics +1608.03846 Phenomenology +1608.03847 Instrumentation and Detectors +1608.03849 Instrumentation and Detectors +1608.03856 Probability +1608.03857 Number Theory +1608.03860 Combinatorics +1608.03862 Systems and Control +1608.03871 Optimization and Control +1608.03874 Information Theory +1608.03875 Information Theory +1608.03877 Chemical Physics +1608.03878 Analysis of PDEs +1608.03882 Algebraic Geometry +1608.03887 Probability +1608.03889 Social and Information Networks +1608.03890 Materials Science +alg-geom/9604019 Algebraic Geometry +alg-geom/9606009 Algebraic Geometry +alg-geom/9701015 Algebraic Geometry +alg-geom/9703013 Algebraic Geometry +alg-geom/9706009 Algebraic Geometry +alg-geom/9711022 Algebraic Geometry +astro-ph/0001034 +astro-ph/0001416 +astro-ph/0002310 +astro-ph/0003025 +astro-ph/0004382 +astro-ph/0005352 +astro-ph/0005588 +astro-ph/0006218 +astro-ph/0007150 +astro-ph/0007189 +astro-ph/0007217 +astro-ph/0007477 +astro-ph/0008100 +astro-ph/0008101 +astro-ph/0008215 +astro-ph/0009358 +astro-ph/0010102 +astro-ph/0011136 +astro-ph/0011492 +astro-ph/0501427 +astro-ph/0601067 +astro-ph/0601068 +astro-ph/0601069 +astro-ph/0601071 +astro-ph/0601097 +astro-ph/0601150 +astro-ph/0601300 +astro-ph/0601418 +astro-ph/0601426 +astro-ph/0601607 +astro-ph/0602112 +astro-ph/0602150 +astro-ph/0602151 +astro-ph/0602396 +astro-ph/0602427 +astro-ph/0602435 +astro-ph/0602436 +astro-ph/0602444 +astro-ph/0603299 +astro-ph/0603670 +astro-ph/0603846 +astro-ph/0603854 +astro-ph/0604058 +astro-ph/0605714 +astro-ph/0605751 +astro-ph/0606113 +astro-ph/0606114 +astro-ph/0606163 +astro-ph/0606171 +astro-ph/0606225 +astro-ph/0606380 +astro-ph/0606681 +astro-ph/0606745 +astro-ph/0607026 +astro-ph/0607259 +astro-ph/0607291 +astro-ph/0607365 +astro-ph/0608214 +astro-ph/0608218 +astro-ph/0608290 +astro-ph/0608510 +astro-ph/0608551 +astro-ph/0609491 +astro-ph/0609649 +astro-ph/0609677 +astro-ph/0609817 +astro-ph/0609826 +astro-ph/0610200 +astro-ph/0610211 +astro-ph/0610290 +astro-ph/0610548 +astro-ph/0610849 +astro-ph/0610915 +astro-ph/0610957 +astro-ph/0611027 +astro-ph/0611067 +astro-ph/0611278 +astro-ph/0611362 +astro-ph/0611414 +astro-ph/0611941 +astro-ph/0612223 +astro-ph/0612242 +astro-ph/0612588 +astro-ph/9503066 +astro-ph/9505032 +astro-ph/9505146 +astro-ph/9601154 +astro-ph/9603041 +astro-ph/9603093 +astro-ph/9604037 +astro-ph/9604170 +astro-ph/9605142 +astro-ph/9606164 +astro-ph/9607106 +astro-ph/9608176 +astro-ph/9609059 +astro-ph/9609062 +astro-ph/9609063 +astro-ph/9609064 +astro-ph/9611147 +astro-ph/9702183 +astro-ph/9703028 +astro-ph/9709004 +astro-ph/9709047 +astro-ph/9709049 +astro-ph/9709103 +astro-ph/9709191 +astro-ph/9709290 +astro-ph/9710113 +astro-ph/9711322 +astro-ph/9711346 +astro-ph/9712256 +astro-ph/9801312 +astro-ph/9806044 +astro-ph/9809045 +astro-ph/9809183 +astro-ph/9809292 +astro-ph/9809297 +astro-ph/9810161 +astro-ph/9811368 +astro-ph/9812099 +astro-ph/9812282 +astro-ph/9812483 +astro-ph/9904077 +astro-ph/9908034 +astro-ph/9911265 +astro-ph/9911531 +astro-ph/9912090 +astro-ph/9912122 +atom-ph/9602001 Atomic Physics +atom-ph/9607004 Atomic Physics +chao-dyn/9502024 Chaotic Dynamics +chao-dyn/9504012 Chaotic Dynamics +chao-dyn/9509019 Chaotic Dynamics +chao-dyn/9510007 Chaotic Dynamics +chao-dyn/9603006 Chaotic Dynamics +chao-dyn/9605016 Chaotic Dynamics +chao-dyn/9608011 Chaotic Dynamics +chao-dyn/9702013 Chaotic Dynamics +chao-dyn/9708008 Chaotic Dynamics +chao-dyn/9906033 Chaotic Dynamics +chao-dyn/9910011 Chaotic Dynamics +chem-ph/9602004 Chemical Physics +chem-ph/9609001 Chemical Physics +cmp-lg/9505035 Computation and Language +cmp-lg/9507002 Computation and Language +cmp-lg/9507004 Computation and Language +cmp-lg/9603006 Computation and Language +cmp-lg/9607001 Computation and Language +cond-mat/0001088 +cond-mat/0001102 Materials Science +cond-mat/0001142 +cond-mat/0001144 +cond-mat/0001290 +cond-mat/0002164 Superconductivity +cond-mat/0002327 Disordered Systems and Neural Networks +cond-mat/0002354 Statistical Mechanics +cond-mat/0002397 Statistical Mechanics +cond-mat/0003010 +cond-mat/0003023 Soft Condensed Matter +cond-mat/0003323 +cond-mat/0003374 Statistical Mechanics +cond-mat/0003499 Superconductivity +cond-mat/0004067 Superconductivity +cond-mat/0004217 Superconductivity +cond-mat/0004223 Superconductivity +cond-mat/0004359 Disordered Systems and Neural Networks +cond-mat/0004385 Mesoscale and Nanoscale Physics +cond-mat/0004397 Statistical Mechanics +cond-mat/0004429 Statistical Mechanics +cond-mat/0004493 Strongly Correlated Electrons +cond-mat/0005052 Strongly Correlated Electrons +cond-mat/0005133 Soft Condensed Matter +cond-mat/0005191 Statistical Mechanics +cond-mat/0005204 Soft Condensed Matter +cond-mat/0005432 Soft Condensed Matter +cond-mat/0006063 Statistical Mechanics +cond-mat/0006083 Disordered Systems and Neural Networks +cond-mat/0006229 +cond-mat/0006292 Mesoscale and Nanoscale Physics +cond-mat/0006396 Disordered Systems and Neural Networks +cond-mat/0006458 Superconductivity +cond-mat/0007213 Statistical Mechanics +cond-mat/0010357 Soft Condensed Matter +cond-mat/0011426 +cond-mat/0011491 Materials Science +cond-mat/0012083 +cond-mat/0012426 Mesoscale and Nanoscale Physics +cond-mat/0012452 Strongly Correlated Electrons +cond-mat/0109290 Soft Condensed Matter +cond-mat/0310022 +cond-mat/0310102 +cond-mat/0310113 +cond-mat/0606147 Mesoscale and Nanoscale Physics +cond-mat/9503030 +cond-mat/9503080 +cond-mat/9504012 +cond-mat/9504015 +cond-mat/9504022 +cond-mat/9504115 +cond-mat/9505102 +cond-mat/9505111 +cond-mat/9506017 +cond-mat/9506077 +cond-mat/9507045 +cond-mat/9509162 +cond-mat/9509175 +cond-mat/9510033 +cond-mat/9510138 +cond-mat/9511019 +cond-mat/9511115 +cond-mat/9512139 +cond-mat/9601059 +cond-mat/9601094 +cond-mat/9601102 +cond-mat/9601104 +cond-mat/9601129 +cond-mat/9601148 +cond-mat/9602020 +cond-mat/9602067 +cond-mat/9602083 +cond-mat/9603098 Mesoscale and Nanoscale Physics +cond-mat/9603153 +cond-mat/9603180 +cond-mat/9605069 +cond-mat/9605071 +cond-mat/9607144 +cond-mat/9609077 +cond-mat/9609078 +cond-mat/9609276 +cond-mat/9610051 Superconductivity +cond-mat/9610125 Statistical Mechanics +cond-mat/9611208 Superconductivity +cond-mat/9612093 Superconductivity +cond-mat/9612151 Soft Condensed Matter +cond-mat/9612230 Superconductivity +cond-mat/9612234 Soft Condensed Matter +cond-mat/9702026 +cond-mat/9702183 +cond-mat/9702205 +cond-mat/9703015 +cond-mat/9703016 +cond-mat/9703139 Superconductivity +cond-mat/9703191 Disordered Systems and Neural Networks +cond-mat/9704027 Strongly Correlated Electrons +cond-mat/9704042 Materials Science +cond-mat/9704090 Statistical Mechanics +cond-mat/9704136 +cond-mat/9705025 Superconductivity +cond-mat/9706077 +cond-mat/9706136 +cond-mat/9706141 Disordered Systems and Neural Networks +cond-mat/9706142 Disordered Systems and Neural Networks +cond-mat/9706184 Superconductivity +cond-mat/9706213 Statistical Mechanics +cond-mat/9707044 +cond-mat/9707141 +cond-mat/9707197 Mesoscale and Nanoscale Physics +cond-mat/9707198 Mesoscale and Nanoscale Physics +cond-mat/9707305 +cond-mat/9707309 Materials Science +cond-mat/9708164 Mesoscale and Nanoscale Physics +cond-mat/9708227 Disordered Systems and Neural Networks +cond-mat/9709005 Superconductivity +cond-mat/9709080 +cond-mat/9710071 Soft Condensed Matter +cond-mat/9710307 +cond-mat/9710318 +cond-mat/9711047 Strongly Correlated Electrons +cond-mat/9711300 Statistical Mechanics +cond-mat/9712095 +cond-mat/9712157 +cond-mat/9712186 +cond-mat/9801129 +cond-mat/9801259 Statistical Mechanics +cond-mat/9801261 Statistical Mechanics +cond-mat/9802033 Statistical Mechanics +cond-mat/9803025 Disordered Systems and Neural Networks +cond-mat/9803213 Statistical Mechanics +cond-mat/9805310 Superconductivity +cond-mat/9806106 +cond-mat/9807013 Disordered Systems and Neural Networks +cond-mat/9807157 +cond-mat/9807322 Superconductivity +cond-mat/9808042 Mesoscale and Nanoscale Physics +cond-mat/9809418 Disordered Systems and Neural Networks +cond-mat/9810253 Strongly Correlated Electrons +cond-mat/9810272 Strongly Correlated Electrons +cond-mat/9810297 Mesoscale and Nanoscale Physics +cond-mat/9811186 Disordered Systems and Neural Networks +cond-mat/9811356 +cond-mat/9812012 Statistical Mechanics +cond-mat/9812027 Superconductivity +cond-mat/9812143 Materials Science +cond-mat/9812163 Mesoscale and Nanoscale Physics +cond-mat/9812254 Mesoscale and Nanoscale Physics +cond-mat/9901084 Superconductivity +cond-mat/9901111 Statistical Mechanics +cond-mat/9902055 +cond-mat/9903222 Statistical Mechanics +cond-mat/9903234 Superconductivity +cond-mat/9903359 +cond-mat/9903363 Strongly Correlated Electrons +cond-mat/9903374 Superconductivity +cond-mat/9903388 Statistical Mechanics +cond-mat/9904407 Superconductivity +cond-mat/9904425 Soft Condensed Matter +cond-mat/9904447 +cond-mat/9905036 Strongly Correlated Electrons +cond-mat/9905124 +cond-mat/9905329 Statistical Mechanics +cond-mat/9905369 +cond-mat/9905389 Materials Science +cond-mat/9906035 +cond-mat/9906233 Superconductivity +cond-mat/9906321 Disordered Systems and Neural Networks +cond-mat/9907448 Strongly Correlated Electrons +cond-mat/9908047 Superconductivity +cond-mat/9909024 Superconductivity +cond-mat/9909210 Disordered Systems and Neural Networks +cond-mat/9909366 +cond-mat/9910488 +cond-mat/9911029 Disordered Systems and Neural Networks +cond-mat/9911073 Statistical Mechanics +cond-mat/9911462 +cond-mat/9912193 Strongly Correlated Electrons +cond-mat/9912385 Strongly Correlated Electrons +cs/0010011 Computational Complexity +cs/0312057 Logic in Computer Science +dg-ga/9501001 Differential Geometry +funct-an/9707001 Functional Analysis +funct-an/9711004 Functional Analysis +funct-an/9712002 Functional Analysis +gr-qc/0001004 +gr-qc/0002067 +gr-qc/0005101 +gr-qc/0006002 +gr-qc/0006108 +gr-qc/0009077 +gr-qc/0012019 +gr-qc/9504027 +gr-qc/9505003 +gr-qc/9508053 +gr-qc/9510035 +gr-qc/9510036 +gr-qc/9510042 +gr-qc/9511065 +gr-qc/9511066 +gr-qc/9511072 +gr-qc/9512028 +gr-qc/9601020 +gr-qc/9605035 +gr-qc/9606082 +gr-qc/9607004 +gr-qc/9607023 +gr-qc/9609059 +gr-qc/9610007 +gr-qc/9702028 +gr-qc/9706009 +gr-qc/9706080 +gr-qc/9707061 +gr-qc/9710039 +gr-qc/9711019 +gr-qc/9711041 +gr-qc/9802009 +gr-qc/9804062 +gr-qc/9906007 +gr-qc/9907075 +gr-qc/9911046 +gr-qc/9911069 +gr-qc/9911084 +gr-qc/9912088 +hep-ex/0002004 Experiment +hep-ex/9802016 Experiment +hep-ex/9806024 Experiment +hep-ex/9912045 Experiment +hep-lat/9509077 Lattice +hep-lat/9512031 Lattice +hep-lat/9603026 Lattice +hep-lat/9606016 Lattice +hep-lat/9607049 Lattice +hep-lat/9608090 Lattice +hep-lat/9608123 Lattice +hep-lat/9610023 Lattice +hep-lat/9612009 Lattice +hep-lat/9701017 Lattice +hep-lat/9702001 Lattice +hep-lat/9710073 Lattice +hep-lat/9801005 Lattice +hep-lat/9804029 Lattice +hep-lat/9809076 Lattice +hep-lat/9809086 Lattice +hep-lat/9809124 Lattice +hep-lat/9809185 Lattice +hep-lat/9811034 Lattice +hep-lat/9901019 Lattice +hep-lat/9911025 Lattice +hep-ph/0006093 Phenomenology +hep-ph/0007037 Phenomenology +hep-ph/0008117 Phenomenology +hep-ph/0011164 Phenomenology +hep-ph/0011328 Phenomenology +hep-ph/0012084 Phenomenology +hep-ph/0012117 Phenomenology +hep-ph/0101261 Phenomenology +hep-ph/9502369 Phenomenology +hep-ph/9502371 Phenomenology +hep-ph/9502377 Phenomenology +hep-ph/9504228 Phenomenology +hep-ph/9505223 Phenomenology +hep-ph/9506236 Phenomenology +hep-ph/9506389 Phenomenology +hep-ph/9508334 Phenomenology +hep-ph/9511229 Phenomenology +hep-ph/9511254 Phenomenology +hep-ph/9511358 Phenomenology +hep-ph/9512246 Phenomenology +hep-ph/9512294 Phenomenology +hep-ph/9512305 Phenomenology +hep-ph/9512431 Phenomenology +hep-ph/9602244 Phenomenology +hep-ph/9602259 Phenomenology +hep-ph/9603302 Phenomenology +hep-ph/9604273 Phenomenology +hep-ph/9604403 Phenomenology +hep-ph/9604419 Phenomenology +hep-ph/9605208 Phenomenology +hep-ph/9606240 Phenomenology +hep-ph/9606329 Phenomenology +hep-ph/9606339 Phenomenology +hep-ph/9607308 Phenomenology +hep-ph/9607376 Phenomenology +hep-ph/9608266 Phenomenology +hep-ph/9609405 Phenomenology +hep-ph/9612438 Phenomenology +hep-ph/9702254 Phenomenology +hep-ph/9704406 Phenomenology +hep-ph/9705232 Phenomenology +hep-ph/9706416 Phenomenology +hep-ph/9708491 Phenomenology +hep-ph/9709205 Phenomenology +hep-ph/9709466 Phenomenology +hep-ph/9710480 Phenomenology +hep-ph/9711221 Phenomenology +hep-ph/9711477 Phenomenology +hep-ph/9801356 Phenomenology +hep-ph/9804220 Phenomenology +hep-ph/9806207 Phenomenology +hep-ph/9806279 Phenomenology +hep-ph/9809292 Phenomenology +hep-ph/9902236 Phenomenology +hep-ph/9902240 Phenomenology +hep-ph/9908407 Phenomenology +hep-ph/9908517 Phenomenology +hep-ph/9909422 Phenomenology +hep-ph/9909510 Phenomenology +hep-ph/9910208 Phenomenology +hep-ph/9910439 Phenomenology +hep-ph/9911361 Phenomenology +hep-th/0003141 Theory +hep-th/0007183 Theory +hep-th/0008215 Theory +hep-th/0008224 Theory +hep-th/0008251 Theory +hep-th/0009092 Theory +hep-th/0011178 Theory +hep-th/0012056 Theory +hep-th/0012268 Theory +hep-th/0012269 Theory +hep-th/0507039 Theory +hep-th/9408140 Theory +hep-th/9502008 Theory +hep-th/9502049 Theory +hep-th/9502140 Theory +hep-th/9503051 Theory +hep-th/9503075 Theory +hep-th/9504007 Theory +hep-th/9504050 Theory +hep-th/9504096 Theory +hep-th/9505157 Theory +hep-th/9506115 Theory +hep-th/9507021 Theory +hep-th/9507113 Theory +hep-th/9508008 Theory +hep-th/9508019 Theory +hep-th/9510051 Theory +hep-th/9510120 Theory +hep-th/9511136 Theory +hep-th/9601012 Theory +hep-th/9601145 Theory +hep-th/9602151 Theory +hep-th/9603082 Theory +hep-th/9603108 Theory +hep-th/9603148 Theory +hep-th/9604188 Theory +hep-th/9605034 Theory +hep-th/9606172 Theory +hep-th/9607150 Theory +hep-th/9607215 Theory +hep-th/9608101 Theory +hep-th/9609194 Theory +hep-th/9610010 Theory +hep-th/9612100 Theory +hep-th/9612189 Theory +hep-th/9701160 Theory +hep-th/9702169 Theory +hep-th/9703098 Theory +hep-th/9704051 Theory +hep-th/9704070 Theory +hep-th/9705007 Theory +hep-th/9705122 Theory +hep-th/9705185 Theory +hep-th/9707165 Theory +hep-th/9709140 Theory +hep-th/9712069 Theory +hep-th/9803037 Theory +hep-th/9804025 Theory +hep-th/9805173 Theory +hep-th/9807158 Theory +hep-th/9809193 Theory +hep-th/9812095 Theory +hep-th/9901024 Theory +hep-th/9902037 Theory +hep-th/9902060 Theory +hep-th/9903250 Theory +hep-th/9904099 Theory +hep-th/9905090 Theory +hep-th/9909005 Theory +hep-th/9909142 Theory +hep-th/9910141 Theory +hep-th/9910151 Theory +hep-th/9910166 Theory +hep-th/9911174 Theory +math-ph/0003043 +math-ph/9809018 +math-ph/9812007 +math-ph/9904022 +math-ph/9909025 +math/0002239 Functional Analysis +math/0003020 Functional Analysis +math/0003055 Complex Variables +math/0003111 Functional Analysis +math/0003124 Functional Analysis +math/0004016 Classical Analysis and ODEs +math/0004101 Functional Analysis +math/0005303 Dynamical Systems +math/0008004 Algebraic Geometry +math/0008005 Algebraic Geometry +math/0011066 Algebraic Geometry +math/0012072 Classical Analysis and ODEs +math/0604613 Operator Algebras +math/0604614 Operator Algebras +math/0604616 Functional Analysis +math/0604618 Quantum Algebra +math/0604621 Quantum Algebra +math/0604622 Operator Algebras +math/0604623 Operator Algebras +math/0702474 Probability +math/9502201 Geometric Topology +math/9801138 Algebraic Geometry +math/9801147 Combinatorics +math/9802102 Differential Geometry +math/9804031 Probability +math/9807047 Algebraic Geometry +math/9808111 Algebraic Topology +math/9901080 Quantum Algebra +math/9904088 Algebraic Geometry +math/9905026 Algebraic Geometry +math/9907054 Rings and Algebras +math/9907069 Algebraic Geometry +math/9911187 Algebraic Geometry +nlin/0001028 Exactly Solvable and Integrable Systems +nlin/0002026 Chaotic Dynamics +nlin/0010047 Pattern Formation and Solitons +nlin/0012050 Pattern Formation and Solitons +nucl-ex/0002005 +nucl-ex/0007005 +nucl-ex/0007006 +nucl-ex/0012009 +nucl-ex/9805006 +nucl-ex/9904009 +nucl-th/0003026 +nucl-th/0006011 +nucl-th/0006072 +nucl-th/9503013 +nucl-th/9508022 +nucl-th/9508024 +nucl-th/9511009 +nucl-th/9511038 +nucl-th/9603041 +nucl-th/9611021 +nucl-th/9612007 +nucl-th/9701042 +nucl-th/9702017 +nucl-th/9702055 +nucl-th/9703049 +nucl-th/9709018 +nucl-th/9709047 +nucl-th/9711029 +nucl-th/9711035 +nucl-th/9712069 +nucl-th/9803045 +nucl-th/9804063 +nucl-th/9806068 +nucl-th/9806098 +nucl-th/9810076 +nucl-th/9811021 +nucl-th/9903017 +nucl-th/9903041 +nucl-th/9903066 +nucl-th/9904010 +nucl-th/9909026 +nucl-th/9912018 +patt-sol/9709002 Pattern Formation and Solitons +physics/0001030 Physics Education +physics/0008003 Instrumentation and Detectors +physics/0008029 Chemical Physics +physics/0008246 Atomic Physics +physics/0509228 Optics +physics/9611026 Atomic Physics +physics/9702015 +physics/9705022 +physics/9706017 +physics/9805022 Atomic Physics +physics/9805023 Atomic Physics +physics/9807001 Chemical Physics +physics/9810034 Classical Physics +physics/9905024 Plasma Physics +q-alg/9506027 Quantum Algebra +q-alg/9604017 Quantum Algebra +q-alg/9612027 Quantum Algebra +q-alg/9710003 Quantum Algebra +quant-ph/0005072 +quant-ph/0006024 +quant-ph/0011073 +quant-ph/0012103 +quant-ph/9502018 +quant-ph/9502019 +quant-ph/9502027 +quant-ph/9503004 +quant-ph/9503013 +quant-ph/9506001 +quant-ph/9506038 +quant-ph/9510004 +quant-ph/9511002 +quant-ph/9606011 +quant-ph/9702005 +quant-ph/9702013 +quant-ph/9807030 +quant-ph/9809059 +quant-ph/9809063 +quant-ph/9812041 +quant-ph/9812054 +quant-ph/9812055 +quant-ph/9902043 +quant-ph/9903086 +quant-ph/9905067 +quant-ph/9908020 +quant-ph/9908069 +quant-ph/9910116 +quant-ph/9912051 +0912.0888 Analysis of PDEs +1006.3605 Analysis of PDEs +1007.1276 Analysis of PDEs +1007.3744 Analysis of PDEs +1008.1559 Statistical Mechanics +1010.5068 Differential Geometry +1011.5561 Analysis of PDEs +1012.1158 Analysis of PDEs +1012.2890 Analysis of PDEs +1101.5580 Analysis of PDEs +1103.1469 Differential Geometry +1103.5551 Differential Geometry +1106.1579 Analysis of PDEs +1109.5806 Lattice +1111.0333 Experiment +1112.0613 +1112.5801 Theory +1112.6161 General Topology +1202.2471 Analysis of PDEs +1202.4088 Analysis of PDEs +1206.0027 Analysis of PDEs +1206.3713 Learning +1206.5618 General Physics +1207.7339 +1208.2559 Computational Complexity +1209.3239 Rings and Algebras +1301.0795 Number Theory +1301.6589 Information Theory +1302.2248 Combinatorics +1302.4072 Optimization and Control +1303.4703 Theory +1305.2516 Combinatorics +1306.4104 Number Theory +1307.6167 +1307.6263 Theory +1308.2087 Optimization and Control +1308.2206 +1308.2709 Geophysics +1309.0515 Strongly Correlated Electrons +1309.4023 Analysis of PDEs +1309.4262 Dynamical Systems +1309.6522 Representation Theory +1310.0349 Representation Theory +1310.2539 Systems and Control +1310.8244 Methodology +1311.0066 Algebraic Geometry +1311.0200 Analysis of PDEs +1311.2205 Analysis of PDEs +1311.3230 Numerical Analysis +1311.3806 Logic +1311.3904 Rings and Algebras +1312.0908 +1312.1485 Group Theory +1312.5943 Number Theory +1312.7364 Solar and Stellar Astrophysics +1401.1137 Methodology +1401.2034 Adaptation and Self-Organizing Systems +1401.2094 Materials Science +1401.2188 Statistics Theory +1401.5624 Strongly Correlated Electrons +1401.7318 Differential Geometry +1401.7466 Algebraic Geometry +1401.7861 Group Theory +1402.0349 Combinatorics +1402.0791 +1402.2643 Quantitative Methods +1403.6150 Information Theory +1403.6737 Functional Analysis +1404.4001 Algebraic Geometry +1404.5339 Chaotic Dynamics +1404.5340 Probability +1404.5343 Phenomenology +1404.5509 Differential Geometry +1404.6611 Analysis of PDEs +1404.6933 Classical Analysis and ODEs +1405.0135 Optimization and Control +1405.4613 Logic +1405.5064 Dynamical Systems +1406.0165 Analysis of PDEs +1406.0168 Analysis of PDEs +1406.0169 Analysis of PDEs +1406.0681 Analysis of PDEs +1406.2751 Learning +1406.5467 Theory +1406.6228 Combinatorics +1406.7873 Solar and Stellar Astrophysics +1407.0821 Functional Analysis +1407.5685 Representation Theory +1407.8340 Mesoscale and Nanoscale Physics +1408.3098 Solar and Stellar Astrophysics +1408.4168 +1408.4255 Commutative Algebra +1408.7093 Classical Analysis and ODEs +1409.0448 Quantum Algebra +1409.1201 Representation Theory +1409.1575 +1409.3314 Logic in Computer Science +1409.4274 Statistics Theory +1409.4632 Combinatorics +1409.4783 Solar and Stellar Astrophysics +1409.5779 Solar and Stellar Astrophysics +1409.6787 Superconductivity +1409.8396 Group Theory +1410.0633 Machine Learning +1410.3383 Mesoscale and Nanoscale Physics +1410.4397 +1410.8194 Solar and Stellar Astrophysics +1410.8464 Digital Libraries +1411.0512 Operator Algebras +1411.1691 +1411.2386 +1411.3081 Dynamical Systems +1411.3174 Methodology +1411.3202 Superconductivity +1411.4952 Computer Vision and Pattern Recognition +1411.6177 Dynamical Systems +1412.0234 Optics +1412.0597 Materials Science +1412.2122 Human-Computer Interaction +1412.5004 Neurons and Cognition +1412.5052 Networking and Internet Architecture +1412.6045 Computation and Language +1412.8429 Cosmology and Nongalactic Astrophysics +1412.8541 +1412.8547 Information Theory +1501.01304 Quantum Gases +1501.01621 Theory +1501.02660 Atomic Physics +1501.03988 Formal Languages and Automata Theory +1501.04968 Astrophysics of Galaxies +1501.06005 Systems and Control +1501.06021 Numerical Analysis +1501.06059 Logic in Computer Science +1501.06466 Group Theory +1501.06658 Phenomenology +1501.07628 Representation Theory +1502.01317 Group Theory +1502.03759 Algebraic Geometry +1502.04769 Logic in Computer Science +1502.06735 Software Engineering +1502.06751 Representation Theory +1502.07976 Computer Vision and Pattern Recognition +1503.00165 Solar and Stellar Astrophysics +1503.01386 Computational Geometry +1503.01564 Theory +1503.01797 Mesoscale and Nanoscale Physics +1503.03980 Optimization and Control +1503.04546 Numerical Analysis +1503.04631 Number Theory +1503.04638 Mesoscale and Nanoscale Physics +1503.05691 Number Theory +1503.07079 Differential Geometry +1503.08318 Materials Science +1503.09166 Information Theory +1504.01263 Functional Analysis +1504.04189 Optimization and Control +1504.04673 Probability +1504.04720 Distributed, Parallel, and Cluster Computing +1504.06975 Other Computer Science +1505.00224 Instrumentation and Methods for Astrophysics +1505.00979 Other Condensed Matter +1505.01779 Combinatorics +1505.03075 Analysis of PDEs +1505.04368 Neurons and Cognition +1505.06281 Analysis of PDEs +1506.02742 Combinatorics +1506.03627 Methodology +1506.03670 Computation +1506.04127 +1506.05702 Computation and Language +1506.05865 Computation and Language +1506.06543 Classical Analysis and ODEs +1506.06917 Computational Physics +1506.08898 Multimedia +1507.00700 Logic in Computer Science +1507.01673 Multimedia +1507.02617 +1507.03698 Computer Vision and Pattern Recognition +1507.04090 Statistics Theory +1507.05319 Geometric Topology +1507.05424 +1507.07826 Computation and Language +1508.00650 +1508.02327 Phenomenology +1508.04167 Phenomenology +1508.04253 Computation +1508.04549 +1508.06779 Logic in Computer Science +1508.07059 Instrumentation and Detectors +1508.07248 Theory +1509.00087 Lattice +1509.00789 Cryptography and Security +1509.01010 Data Analysis, Statistics and Probability +1509.01944 Probability +1509.04314 Analysis of PDEs +1509.04628 Instrumentation and Methods for Astrophysics +1509.05378 +1509.07012 Soft Condensed Matter +1509.07755 Learning +1509.08163 Plasma Physics +1510.02167 Mesoscale and Nanoscale Physics +1510.02682 Computational Complexity +1510.03835 Dynamical Systems +1510.05180 Mesoscale and Nanoscale Physics +1510.05456 Theory +1510.06132 Statistical Mechanics +1510.06946 Statistics Theory +1510.07067 Differential Geometry +1510.07488 Instrumentation and Detectors +1510.07509 +1510.07976 Optics +1510.08834 Cosmology and Nongalactic Astrophysics +1511.00029 Cosmology and Nongalactic Astrophysics +1511.00265 Optimization and Control +1511.00493 Data Structures and Algorithms +1511.00618 Disordered Systems and Neural Networks +1511.01032 Social and Information Networks +1511.01403 Quantum Gases +1511.02782 Logic +1511.04398 +1511.04561 Neural and Evolutionary Computing +1511.04750 Human-Computer Interaction +1511.05835 Machine Learning +1511.06332 Operator Algebras +1511.06412 Learning +1511.06422 Learning +1511.06830 Computer Vision and Pattern Recognition +1511.06998 Phenomenology +1511.07557 Dynamical Systems +1511.07817 Representation Theory +1512.02338 Solar and Stellar Astrophysics +1512.05176 Plasma Physics +1512.05644 Instrumentation and Detectors +1512.06707 +1512.08157 Representation Theory +1512.08742 Phenomenology +1601.00056 High Energy Astrophysical Phenomena +1601.00809 Algebraic Geometry +1601.01512 Soft Condensed Matter +1601.03731 Plasma Physics +1601.04418 Instrumentation and Detectors +1601.04716 Theory +1601.04740 Computers and Society +1601.07101 Cryptography and Security +1601.07330 Phenomenology +1601.07731 Materials Science +1601.08025 Probability +1601.08168 General Topology +1602.00093 Physics and Society +1602.00489 Multimedia +1602.01242 Information Theory +1602.01762 Phenomenology +1602.02601 Software Engineering +1602.03031 Computational Engineering, Finance, and Science +1602.03038 Mesoscale and Nanoscale Physics +1602.03229 Group Theory +1602.03877 Phenomenology +1602.03983 Phenomenology +1602.04762 Robotics +1602.04854 Social and Information Networks +1602.04874 Learning +1602.04876 Optimization and Control +1602.04959 Operator Algebras +1602.04962 +1602.04976 Machine Learning +1602.04996 Astrophysics of Galaxies +1602.05028 Formal Languages and Automata Theory +1602.05069 Applications +1602.05077 +1602.05087 Instrumentation and Detectors +1602.05129 Adaptation and Self-Organizing Systems +1602.05163 Computers and Society +1602.05231 Software Engineering +1602.05326 Theory +1602.05423 +1602.05541 Computational Finance +1602.05897 Learning +1602.05958 +1602.05965 High Energy Astrophysical Phenomena +1602.05972 Combinatorics +1602.05979 +1602.05981 Tissues and Organs +1602.05982 Geometric Topology +1602.05985 +1602.05990 Computer Vision and Pattern Recognition +1602.05992 Algebraic Geometry +1602.05993 High Energy Astrophysical Phenomena +1602.05994 Metric Geometry +1602.05996 Neural and Evolutionary Computing +1602.05998 Pricing of Securities +1602.06001 Probability +1602.06003 +1602.06005 Distributed, Parallel, and Cluster Computing +1602.06006 Cryptography and Security +1602.06008 Complex Variables +1602.06009 Information Theory +1602.06012 Computational Complexity +1602.06015 Soft Condensed Matter +1602.06017 Group Theory +1602.06018 Group Theory +1602.06019 Atomic Physics +1602.06025 Learning +1602.06026 Quantum Algebra +1602.06031 Analysis of PDEs +1602.06038 Software Engineering +1602.06039 +1602.06045 Networking and Internet Architecture +1602.06049 Machine Learning +1602.06050 Numerical Analysis +1602.06052 Logic in Computer Science +1602.06053 Optimization and Control +1602.06057 Neural and Evolutionary Computing +1602.06065 Statistical Mechanics +1602.06070 Information Theory +1602.06077 +1602.06078 Spectral Theory +1602.06079 Computational Complexity +1602.06081 Probability +1602.06083 +1602.06085 Rings and Algebras +1602.06088 Rings and Algebras +1602.06089 Materials Science +1602.06091 Computers and Society +1602.06092 Analysis of PDEs +1602.06093 Dynamical Systems +1602.06094 Rings and Algebras +1602.06095 Dynamical Systems +1602.06097 Symbolic Computation +1602.06098 Analysis of PDEs +1602.06101 Probability +1602.06102 Analysis of PDEs +1602.06103 Analysis of PDEs +1602.06104 +1602.06105 Soft Condensed Matter +1602.06108 Rings and Algebras +1602.06110 Number Theory +1602.06114 Physics Education +1602.06119 Classical Analysis and ODEs +1602.06122 Statistical Mechanics +1602.06123 Classical Analysis and ODEs +1602.06126 Classical Analysis and ODEs +1602.06127 Number Theory +1602.06132 Biomolecules +1602.06133 Information Theory +1602.06135 Adaptation and Self-Organizing Systems +1602.06136 Information Retrieval +1602.06137 Analysis of PDEs +1602.06138 Materials Science +1602.06139 Materials Science +1602.06144 Metric Geometry +1602.06146 Phenomenology +1602.06148 Probability +1602.06149 Computer Vision and Pattern Recognition +1602.06150 Algebraic Geometry +1602.06161 Medical Physics +1602.06162 Physics Education +1602.06167 Information Theory +1602.06168 Solar and Stellar Astrophysics +1602.06169 Data Structures and Algorithms +1602.06172 Physics Education +1602.06178 Differential Geometry +1602.06179 Spectral Theory +1602.06180 Optimization and Control +1602.06183 Learning +1602.06186 Statistical Finance +1602.06187 Analysis of PDEs +1602.06188 Economics +1602.06189 Pricing of Securities +1602.06191 Geometric Topology +1602.06192 Atomic Physics +1602.06195 Adaptation and Self-Organizing Systems +1602.06199 Information Theory +1602.06203 Probability +1602.06205 Dynamical Systems +1602.06207 Experiment +1602.06208 Number Theory +1602.06213 Trading and Market Microstructure +1602.06215 Information Theory +1602.06219 Physics and Society +1602.06220 Logic in Computer Science +1602.06222 K-Theory and Homology +1602.06224 Other Condensed Matter +1602.06227 General Topology +1602.06235 Machine Learning +1602.06236 Databases +1602.06239 Graphics +1602.06241 Analysis of PDEs +1602.06242 Instrumentation and Detectors +1602.06246 Networking and Internet Architecture +1602.06249 Symplectic Geometry +1602.06250 +1602.06252 +1602.06254 History and Philosophy of Physics +1602.06257 Phenomenology +1602.06260 Computational Complexity +1602.06274 Combinatorics +1602.06275 Soft Condensed Matter +1602.06276 Machine Learning +1602.06281 Dynamical Systems +1602.06284 +1602.06285 Materials Science +1602.06289 Computation and Language +0706.2010 Cryptography and Security +0711.2241 General Mathematics +0712.0890 Category Theory +0804.0815 Representation Theory +0806.1540 Category Theory +0809.2270 Computational Finance +0901.3977 Optimization and Control +1002.1053 Representation Theory +1010.2986 Differential Geometry +1110.6554 History and Philosophy of Physics +1112.0255 Probability +1202.0923 Group Theory +1207.5099 Number Theory +1209.0197 Geometric Topology +1209.4421 Theory +1209.6519 Mesoscale and Nanoscale Physics +1210.7097 Representation Theory +1301.2682 Analysis of PDEs +1303.2183 +1304.1620 Cosmology and Nongalactic Astrophysics +1304.3780 Combinatorics +1305.6291 Logic in Computer Science +1306.2923 Biological Physics +1306.6234 Commutative Algebra +1309.1785 Social and Information Networks +1309.1890 Social and Information Networks +1309.2884 Numerical Analysis +1310.7161 Optimization and Control +1311.6420 Operator Algebras +1311.6545 +1312.3958 Methodology +1312.3977 Instrumentation and Detectors +1401.2585 +1401.6013 Computer Vision and Pattern Recognition +1401.7214 Methodology +1402.4209 Dynamical Systems +1402.4719 Algebraic Topology +1402.6280 Group Theory +1403.0074 Solar and Stellar Astrophysics +1403.0689 Geometric Topology +1403.4460 General Finance +1405.0904 Theory +1405.1176 Functional Analysis +1405.3529 Combinatorics +1405.4083 +1405.4172 Materials Science +1405.5885 Cosmology and Nongalactic Astrophysics +1406.2616 Robotics +1406.3629 Theory +1406.4026 Optimization and Control +1407.4842 Soft Condensed Matter +1407.6105 Mesoscale and Nanoscale Physics +1408.2591 Dynamical Systems +1409.3241 Strongly Correlated Electrons +1409.3605 Rings and Algebras +1410.4392 Differential Geometry +1411.0209 Optimization and Control +1411.2361 +1411.2607 +1411.2898 Strongly Correlated Electrons +1411.4158 Methodology +1411.5573 Programming Languages +1411.5635 Artificial Intelligence +1411.5791 Disordered Systems and Neural Networks +1412.0412 Geometric Topology +1412.6766 +1412.6875 Cosmology and Nongalactic Astrophysics +1412.7483 Analysis of PDEs +1501.01419 Algebraic Geometry +1501.01531 Dynamical Systems +1501.01715 +1501.03901 Strongly Correlated Electrons +1501.04079 Dynamical Systems +1501.06442 Statistical Mechanics +1501.07736 Complex Variables +1502.00387 Number Theory +1502.00426 Representation Theory +1502.01449 Mesoscale and Nanoscale Physics +1502.01788 Optics +1502.02430 Differential Geometry +1502.02664 Mesoscale and Nanoscale Physics +1502.03715 Discrete Mathematics +1502.05892 Phenomenology +1502.06638 Subcellular Processes +1502.07310 Physics and Society +1502.07932 Metric Geometry +1503.02014 Soft Condensed Matter +1503.02412 +1503.02602 +1503.04227 Geometric Topology +1503.05363 Lattice +1503.05425 Experiment +1503.05842 Accelerator Physics +1503.06146 Optics +1503.06475 Phenomenology +1503.08543 +1503.08863 Dynamical Systems +1503.09179 Theory +1504.00908 +1504.01528 Cosmology and Nongalactic Astrophysics +1504.02275 Strongly Correlated Electrons +1504.03254 Functional Analysis +1504.04142 +1504.04162 Atomic Physics +1504.04248 Lattice +1504.04476 Chaotic Dynamics +1504.05019 +1504.05164 Theory +1504.05693 Mesoscale and Nanoscale Physics +1504.06008 Dynamical Systems +1504.06901 Strongly Correlated Electrons +1504.07576 Materials Science +1504.08158 Biological Physics +1505.00140 Mesoscale and Nanoscale Physics +1505.01307 Algebraic Geometry +1505.01498 Strongly Correlated Electrons +1505.01556 +1505.02060 +1505.03951 Theory +1505.04099 Phenomenology +1505.05162 +1505.05896 Phenomenology +1505.06172 +1505.06205 Theory +1505.06753 Soft Condensed Matter +1505.06978 Analysis of PDEs +1505.07540 Instrumentation and Methods for Astrophysics +1506.01037 Astrophysics of Galaxies +1506.01189 +1506.01649 +1506.02118 Strongly Correlated Electrons +1506.03162 Methodology +1506.04069 Materials Science +1506.04833 Solar and Stellar Astrophysics +1506.05254 Learning +1506.05351 Disordered Systems and Neural Networks +1506.05468 Statistical Mechanics +1506.05594 Mesoscale and Nanoscale Physics +1506.06221 Social and Information Networks +1506.06263 Materials Science +1506.06432 Materials Science +1506.06763 Mesoscale and Nanoscale Physics +1506.07647 Mesoscale and Nanoscale Physics +1506.08892 +1506.08919 Artificial Intelligence +1507.00530 Mesoscale and Nanoscale Physics +1507.00628 +1507.00981 Theory +1507.01222 +1507.01811 +1507.02633 Soft Condensed Matter +1507.03139 +1507.03141 Statistical Finance +1507.03402 Quantum Gases +1507.03524 +1507.03592 Theory +1507.04793 Information Theory +1507.04926 Soft Condensed Matter +1507.05109 Strongly Correlated Electrons +1507.05643 +1507.06509 Phenomenology +1507.06726 Phenomenology +1507.06930 Mesoscale and Nanoscale Physics +1507.07861 Optics +1507.08059 Theory +1507.08894 Theory +1507.08925 Experiment +1507.08945 Soft Condensed Matter +1508.00216 Phenomenology +1508.01121 Theory +1508.01215 Soft Condensed Matter +1508.01275 Quantum Gases +1508.01347 Other Condensed Matter +1508.01371 Strongly Correlated Electrons +1508.01629 Atomic Physics +1508.02524 +1508.02555 Strongly Correlated Electrons +1508.03048 Lattice +1508.03230 +1508.03340 Theory +1508.03595 Complex Variables +1508.03735 Data Structures and Algorithms +1508.03962 Superconductivity +1508.03980 Phenomenology +1508.04042 Statistical Mechanics +1508.04129 Phenomenology +1508.04150 Statistical Mechanics +1508.04166 +1508.04353 Representation Theory +1508.04513 Theory +1508.05199 Biomolecules +1508.05218 Statistical Mechanics +1508.05295 Mesoscale and Nanoscale Physics +1508.05390 Phenomenology +1508.05832 Theory +1508.06009 Materials Science +1508.06094 Solar and Stellar Astrophysics +1508.06117 Computational Finance +1508.06745 Solar and Stellar Astrophysics +1508.06856 Lattice +1508.06953 +1508.07517 Mesoscale and Nanoscale Physics +1508.07816 Strongly Correlated Electrons +1508.07957 Mesoscale and Nanoscale Physics +1509.00756 Statistical Mechanics +1509.00846 +1509.01106 Strongly Correlated Electrons +1509.01154 Probability +1509.01761 Theory +1509.01929 Atomic Physics +1509.02461 Cosmology and Nongalactic Astrophysics +1509.02550 +1509.02582 Mesoscale and Nanoscale Physics +1509.02881 Strongly Correlated Electrons +1509.03070 Strongly Correlated Electrons +1509.03171 Phenomenology +1509.03290 Superconductivity +1509.04891 Theory +1509.05077 Materials Science +1509.05095 Materials Science +1509.05152 Mesoscale and Nanoscale Physics +1509.05316 Fluid Dynamics +1509.05895 Numerical Analysis +1509.06511 Biomolecules +1509.07085 Materials Science +1509.07420 Biological Physics +1509.07604 Phenomenology +1509.08013 Phenomenology +1509.08321 Materials Science +1509.08326 +1509.08964 Astrophysics of Galaxies +1509.09052 Instrumentation and Detectors +1510.00261 Mesoscale and Nanoscale Physics +1510.00308 Experiment +1510.00566 Statistical Mechanics +1510.01067 Phenomenology +1510.01477 +1510.01484 Numerical Analysis +1510.01802 Strongly Correlated Electrons +1510.02085 +1510.02221 Astrophysics of Galaxies +1510.02431 Statistical Mechanics +1510.02459 Soft Condensed Matter +1510.02544 +1510.02613 Disordered Systems and Neural Networks +1510.02764 Experiment +1510.03290 Category Theory +1510.03432 High Energy Astrophysical Phenomena +1510.03520 Phenomenology +1510.03723 Cosmology and Nongalactic Astrophysics +1510.03852 Theory +1510.03868 Cosmology and Nongalactic Astrophysics +1510.04178 Astrophysics of Galaxies +1510.04269 Solar and Stellar Astrophysics +1510.04759 Theory +1510.04988 Earth and Planetary Astrophysics +1510.05738 +1510.06120 +1510.06339 Mesoscale and Nanoscale Physics +1510.06648 Phenomenology +1510.06661 Mesoscale and Nanoscale Physics +1510.06716 Mesoscale and Nanoscale Physics +1510.07605 Phenomenology +1510.07634 Strongly Correlated Electrons +1510.08072 Phenomenology +1510.08358 Instrumentation and Methods for Astrophysics +1510.08747 Mesoscale and Nanoscale Physics +1510.08757 Phenomenology +1510.08775 Cosmology and Nongalactic Astrophysics +1510.08965 Populations and Evolution +1511.00229 Phenomenology +1511.00247 +1511.01248 Phenomenology +1511.01322 Astrophysics of Galaxies +1511.01382 +1511.01514 Cryptography and Security +1511.01793 +1511.01831 Mesoscale and Nanoscale Physics +1511.02389 Mesoscale and Nanoscale Physics +1511.02757 Theory +1511.02848 Analysis of PDEs +1511.03585 Atomic Physics +1511.04140 Lattice +1511.04141 Astrophysics of Galaxies +1511.04325 Solar and Stellar Astrophysics +1511.04641 Instrumentation and Methods for Astrophysics +1511.05334 Logic in Computer Science +1511.05929 Soft Condensed Matter +1511.07092 Cosmology and Nongalactic Astrophysics +1511.07442 Strongly Correlated Electrons +1511.08271 Classical Analysis and ODEs +1511.08724 Learning +1512.01969 Medical Physics +1512.02552 +1512.02683 Number Theory +1512.04186 Materials Science +1512.04552 Solar and Stellar Astrophysics +1512.04644 Optimization and Control +1512.04945 +1512.05090 Astrophysics of Galaxies +1512.05119 Astrophysics of Galaxies +1512.05665 Learning +1512.05714 Mesoscale and Nanoscale Physics +1512.05937 Combinatorics +1512.06168 Databases +1512.07984 Mesoscale and Nanoscale Physics +1512.08021 Mesoscale and Nanoscale Physics +1512.08116 +1512.08167 Materials Science +1512.08301 Neural and Evolutionary Computing +1512.08716 Numerical Analysis +1512.08748 Plasma Physics +1512.08795 Functional Analysis +1512.08965 +1512.08966 Chemical Physics +1512.08971 Chemical Physics +1512.08972 +1512.08988 +1512.08994 +1512.09192 Astrophysics of Galaxies +1512.09247 +1601.00022 Computer Vision and Pattern Recognition +1601.00148 Theory +1601.00249 Instrumentation and Detectors +1601.00461 Superconductivity +1601.00492 Materials Science +1601.00643 Information Retrieval +1601.00655 Strongly Correlated Electrons +1601.00662 Cosmology and Nongalactic Astrophysics +1601.00665 Other Statistics +1601.00668 Group Theory +1601.00669 Artificial Intelligence +1601.00674 Mesoscale and Nanoscale Physics +1601.00675 Classical Analysis and ODEs +1601.00690 Dynamical Systems +1601.00694 Algebraic Geometry +1601.00697 Category Theory +1601.00700 Materials Science +1601.00702 Materials Science +1601.00703 Analysis of PDEs +1601.00705 Subcellular Processes +1601.00706 Learning +1601.00707 Databases +1601.00710 Computation and Language +1601.00713 Programming Languages +1601.00717 Probability +1601.00719 Functional Analysis +1601.00722 Computer Vision and Pattern Recognition +1601.00728 Classical Analysis and ODEs +1601.00729 Differential Geometry +1601.00730 Physics Education +1601.00733 Fluid Dynamics +1601.00735 Fluid Dynamics +1601.00736 Methodology +1601.00737 Fluid Dynamics +1601.00738 Distributed, Parallel, and Cluster Computing +1601.00740 Robotics +1601.00741 Robotics +1601.00744 Lattice +1601.00745 Strongly Correlated Electrons +1601.00750 Differential Geometry +1601.00751 Networking and Internet Architecture +1601.00752 Theory +1601.00755 Fluid Dynamics +1601.00756 Quantitative Methods +1601.00760 Chaotic Dynamics +1601.00764 Mesoscale and Nanoscale Physics +1601.00767 Optimization and Control +1601.00768 Phenomenology +1601.00769 Complex Variables +1601.00772 Optimization and Control +1601.00773 Statistics Theory +1601.00774 Spectral Theory +1601.00775 Number Theory +1601.00776 Materials Science +1601.00778 Numerical Analysis +1601.00779 Analysis of PDEs +1601.00780 Mesoscale and Nanoscale Physics +1601.00781 Computer Vision and Pattern Recognition +1601.00784 Analysis of PDEs +1601.00785 +1601.00786 Instrumentation and Detectors +1601.00787 Materials Science +1601.00788 Networking and Internet Architecture +1601.00790 Experiment +1601.00797 Methodology +1601.00798 Algebraic Topology +1601.00804 Soft Condensed Matter +1601.00806 Soft Condensed Matter +1601.00808 Materials Science +1601.00810 Analysis of PDEs +1601.00812 Mesoscale and Nanoscale Physics +1601.00813 Numerical Analysis +1601.00814 Functional Analysis +1601.00816 Artificial Intelligence +1601.00818 Dynamical Systems +1601.00820 Materials Science +1601.00821 Earth and Planetary Astrophysics +1601.00823 Optimization and Control +1601.00825 Computer Vision and Pattern Recognition +1601.00826 +1601.00827 Differential Geometry +1601.00831 Optics +1601.00832 High Energy Astrophysical Phenomena +1601.00833 Sound +1601.00834 Distributed, Parallel, and Cluster Computing +1601.00835 Networking and Internet Architecture +1601.00837 Analysis of PDEs +1601.00839 Data Structures and Algorithms +1601.00840 Soft Condensed Matter +1601.00843 Probability +1601.00845 Popular Physics +1601.00846 Cryptography and Security +1601.00847 Data Structures and Algorithms +1601.00848 Pattern Formation and Solitons +1601.00849 Instrumentation and Methods for Astrophysics +1601.00850 Soft Condensed Matter +1601.00852 Robotics +1601.00855 Information Retrieval +1601.00856 Analysis of PDEs +1601.00858 Optics +1601.00861 Numerical Analysis +1601.00869 Atomic Physics +1601.00870 Combinatorics +1601.00873 Networking and Internet Architecture +1601.00875 +1601.00879 General Physics +1601.00882 Classical Analysis and ODEs +1601.00883 Combinatorics +1601.00884 Exactly Solvable and Integrable Systems +1601.00885 Algebraic Geometry +1601.00893 Computation and Language +1601.00901 Artificial Intelligence +1601.00902 +1601.00908 Instrumentation and Detectors +1601.00912 Cryptography and Security +1601.00916 Commutative Algebra +1601.00918 Fluid Dynamics +1601.00919 Computational Finance +1601.00923 Solar and Stellar Astrophysics +1601.00924 Earth and Planetary Astrophysics +1601.00925 Learning +1601.00926 Combinatorics +1601.00929 Algebraic Geometry +1601.00930 Commutative Algebra +1601.00932 Differential Geometry +1601.00934 Statistics Theory +1601.00935 Dynamical Systems +1601.00936 Analysis of PDEs +1601.00938 Classical Analysis and ODEs +1601.00940 Pricing of Securities +1601.00944 Combinatorics +1601.00947 +1601.00955 Machine Learning +1601.00957 Analysis of PDEs +1601.00960 Computers and Society +1601.00962 +hep-th/0509168 Theory +quant-ph/0101046 +0811.2113 Logic in Computer Science +1001.5222 Dynamical Systems +1003.0380 Dynamical Systems +1003.0708 Dynamical Systems +1005.5267 Solar and Stellar Astrophysics +1007.0702 Astrophysics of Galaxies +1108.1518 Analysis of PDEs +1108.2863 Rings and Algebras +1108.4804 Artificial Intelligence +1108.4942 Artificial Intelligence +1109.1300 Classical Analysis and ODEs +1201.2427 Algebraic Geometry +1204.1740 Optimization and Control +1205.4209 Atomic Physics +1207.6582 Classical Analysis and ODEs +1209.2733 Algebraic Geometry +1209.5577 Classical Analysis and ODEs +1210.6470 Astrophysics of Galaxies +1212.1243 Number Theory +1303.6109 Cosmology and Nongalactic Astrophysics +1304.0680 Logic +1305.2678 Dynamical Systems +1305.3258 Theory +1308.3990 Solar and Stellar Astrophysics +1310.7069 Solar and Stellar Astrophysics +1311.6910 Probability +1312.2554 Differential Geometry +1312.3332 +1401.3590 Computer Vision and Pattern Recognition +1401.4209 Optimization and Control +1402.0311 Algebraic Topology +1402.2346 Number Theory +1402.7212 Analysis of PDEs +1403.6108 Differential Geometry +1404.3723 Phenomenology +1404.3973 Combinatorics +1405.1161 Atomic Physics +1405.2770 Atomic Physics +1405.6931 Classical Analysis and ODEs +1405.7585 Probability +1406.0470 Materials Science +1406.1239 Algebraic Geometry +1406.6323 Computer Vision and Pattern Recognition +1407.4100 Number Theory +1407.4379 Mesoscale and Nanoscale Physics +1408.4553 Phenomenology +1409.2305 Materials Science +1409.2646 Experiment +1409.4478 Group Theory +1409.6668 Phenomenology +1409.7920 +1409.8116 Numerical Analysis +1410.0079 Combinatorics +1410.1183 Classical Analysis and ODEs +1410.1585 Algebraic Geometry +1410.4680 Optics +1410.7113 Analysis of PDEs +1411.0882 Differential Geometry +1411.1340 Probability +1411.1736 Logic +1411.3369 Probability +1411.6650 Cosmology and Nongalactic Astrophysics +1411.6829 Computational Complexity +1411.7380 Probability +1412.4003 +1412.5569 Classical Analysis and ODEs +1412.6490 +1412.8507 Theory +1501.00899 Accelerator Physics +1501.01342 Physics Education +1501.01352 Information Theory +1501.01679 Phenomenology +1501.02039 Representation Theory +1501.02843 +1501.02900 Computational Physics +1501.02940 Information Theory +1501.02950 +1501.03229 Mesoscale and Nanoscale Physics +1501.03443 Phenomenology +1501.03965 Dynamical Systems +1501.04483 Fluid Dynamics +1501.05101 Optics +1501.05175 Analysis of PDEs +1501.05383 Analysis of PDEs +1501.05737 Optimization and Control +1501.05972 Materials Science +1501.06068 Plasma Physics +1501.06193 Phenomenology +1501.06254 Materials Science +1501.06514 Statistical Mechanics +1501.07160 Theory +1501.07579 Analysis of PDEs +1502.01125 Computational Finance +1502.01285 +1502.02156 Analysis of PDEs +1502.02185 Differential Geometry +1502.02410 Computer Vision and Pattern Recognition +1502.02742 Atomic Physics +1502.02869 Fluid Dynamics +1502.03044 Learning +1502.03050 Probability +1502.03107 Cosmology and Nongalactic Astrophysics +1502.03331 Solar and Stellar Astrophysics +1502.03389 Soft Condensed Matter +1502.04102 Representation Theory +1502.04291 Materials Science +1502.04486 Accelerator Physics +1502.04858 Applications +1502.05055 Phenomenology +1502.05327 Quantum Algebra +1502.05335 Materials Science +1502.05488 Soft Condensed Matter +1502.05608 Numerical Analysis +1502.06024 Quantum Gases +1502.06077 Commutative Algebra +1502.06538 Strongly Correlated Electrons +1502.07374 Probability +1502.07560 Theory +1502.07619 Optics +1502.07914 +1503.00103 Strongly Correlated Electrons +1503.00739 Theory +1503.01507 +1503.01582 Spectral Theory +1503.02529 +1503.02538 Astrophysics of Galaxies +1503.02972 +1503.03268 Statistical Mechanics +1503.04456 Mesoscale and Nanoscale Physics +1503.04544 Numerical Analysis +1503.04609 Information Theory +1503.04776 Optimization and Control +1503.05477 Information Theory +1503.05521 Computer Vision and Pattern Recognition +1503.05648 Quantum Gases +1503.06083 Theory +1503.06148 Fluid Dynamics +1503.07260 Phenomenology +1503.07263 Phenomenology +1503.07354 Differential Geometry +1503.07964 Phenomenology +1504.00259 Materials Science +1504.00271 Materials Science +1504.00636 Computational Physics +1504.00702 Learning +1504.00988 Optics +1504.01204 Phenomenology +1504.01210 Algebraic Geometry +1504.01252 Information Theory +1504.01372 Statistical Mechanics +1504.01933 Applications +1504.01935 Numerical Analysis +1504.02382 Methodology +1504.02528 +1504.02596 Dynamical Systems +1504.02629 Materials Science +1504.02666 Biological Physics +1504.03168 Phenomenology +1504.03361 Atmospheric and Oceanic Physics +1504.03679 Information Theory +1504.04040 Mesoscale and Nanoscale Physics +1504.04407 Learning +1504.04687 Social and Information Networks +1504.05091 Phenomenology +1504.05229 Learning +1504.05552 Data Analysis, Statistics and Probability +1504.05715 Computation +1504.06160 Rings and Algebras +1504.06445 Mesoscale and Nanoscale Physics +1504.06775 Materials Science +1504.06914 Soft Condensed Matter +1504.07007 Differential Geometry +1504.07015 Theory +1504.07061 Probability +1504.07259 Computer Vision and Pattern Recognition +1504.07832 +1504.07902 Biomolecules +1505.00208 Pattern Formation and Solitons +1505.00273 Information Theory +1505.00474 +1505.00961 +1505.01027 Statistical Mechanics +1505.01042 Analysis of PDEs +1505.01339 +1505.01429 Computer Vision and Pattern Recognition +1505.01527 Phenomenology +1505.02489 Optics +1505.02534 Information Theory +1505.03006 Information Theory +1505.03232 Optics +1505.03495 Superconductivity +1505.03752 Materials Science +1505.03837 +1505.04092 Mesoscale and Nanoscale Physics +1505.04202 Information Theory +1505.04515 Numerical Analysis +1505.04664 Materials Science +1505.05029 +1505.05104 Lattice +1505.05194 +1505.05219 Materials Science +1505.05414 Optics +1505.05520 Superconductivity +1505.05943 Analysis of PDEs +1505.06278 Fluid Dynamics +1505.06343 Disordered Systems and Neural Networks +1505.06357 Computation +1505.06507 +1505.07407 Computational Physics +1505.07711 Probability +1505.08044 Combinatorics +1505.08081 Phenomenology +1506.00092 Social and Information Networks +1506.00658 Numerical Analysis +1506.01196 High Energy Astrophysical Phenomena +1506.01358 Strongly Correlated Electrons +1506.01660 Statistical Finance +1506.01803 Numerical Analysis +1506.02479 +1506.02566 Materials Science +1506.02702 Materials Science +1506.02937 Information Theory +1506.03001 Phenomenology +1506.03290 Cell Behavior +1506.03745 Computational Physics +1506.04234 Optimization and Control +1506.04298 Soft Condensed Matter +1506.04300 +1506.04919 Classical Physics +1506.04934 Numerical Analysis +1506.05002 Fluid Dynamics +1506.05224 Theory +1506.05387 Phenomenology +1506.05494 Plasma Physics +1506.05635 Strongly Correlated Electrons +1506.05760 Materials Science +1506.05815 +1506.05850 Phenomenology +1506.05994 Phenomenology +1506.06176 Quantum Gases +1506.06560 Probability +1506.06847 Strongly Correlated Electrons +1506.07086 Algebraic Geometry +1506.07090 Analysis of PDEs +1506.07361 Mesoscale and Nanoscale Physics +1506.07490 Computational Complexity +1506.07611 Machine Learning +1506.07633 +1506.07710 Quantum Gases +1506.07880 Astrophysics of Galaxies +1506.07885 Phenomenology +1506.07951 Biomolecules +1506.08185 Phenomenology +1506.08354 Social and Information Networks +1506.08613 +1506.08913 Mesoscale and Nanoscale Physics +1506.09088 Theory +1507.00011 +1507.00018 +1507.00123 Statistics Theory +1507.00146 Quantum Algebra +1507.00156 Materials Science +1507.01045 +1507.01248 Information Theory +1507.01544 Biological Physics +1507.01607 Phenomenology +1507.01751 Materials Science +1507.02369 Data Analysis, Statistics and Probability +1507.02474 Theory +1507.02511 Applications +1507.03247 Superconductivity +1507.03404 +1507.03645 High Energy Astrophysical Phenomena +1507.03757 Phenomenology +1507.03785 Differential Geometry +1507.04025 +1507.04156 Soft Condensed Matter +1507.04193 Theory +1507.04230 Machine Learning +1507.04364 Phenomenology +1507.04583 Mesoscale and Nanoscale Physics +1507.04707 +1507.04727 Neural and Evolutionary Computing +1507.05000 Analysis of PDEs +1507.05092 Cosmology and Nongalactic Astrophysics +1507.05329 Cosmology and Nongalactic Astrophysics +1507.05655 Biological Physics +1507.05698 Information Theory +1507.05893 Instrumentation and Detectors +1507.06067 +1507.07087 Phenomenology +1507.07392 Computation +1507.07527 Experiment +1507.07617 Analysis of PDEs +1507.07641 Phenomenology +1507.07679 +1507.07712 Materials Science +1507.07726 +1507.07891 Phenomenology +1507.08128 +1507.08342 Theory +1507.08369 Optics +1507.08406 Materials Science +1507.08616 Mesoscale and Nanoscale Physics +1507.08712 Materials Science +1507.08747 Neurons and Cognition +1507.08955 Superconductivity +1508.00289 Numerical Analysis +1508.00806 Materials Science +1508.00815 Phenomenology +1508.00859 Theory +1508.00923 Accelerator Physics +1508.00979 Theory +1508.01075 Optics +1508.01261 +1508.01307 Experiment +1508.01538 Fluid Dynamics +1508.01611 Other Condensed Matter +1508.01891 Optics +1508.02276 Fluid Dynamics +1508.02337 +1508.02403 +1508.02648 Mesoscale and Nanoscale Physics +1508.02697 +1508.03147 Physics and Society +1508.03216 Applications +1508.03271 +1508.03328 Fluid Dynamics +1508.03468 Strongly Correlated Electrons +1508.03734 Number Theory +1508.03794 Atmospheric and Oceanic Physics +1508.03991 Phenomenology +1508.04086 Instrumentation and Detectors +1508.04088 +1508.04144 Phenomenology +1508.04152 Applications +1508.04408 Phenomenology +1508.04426 High Energy Astrophysical Phenomena +1508.04615 Materials Science +1508.04642 Fluid Dynamics +1508.04660 Theory +1508.04690 +1508.04722 +1508.04840 +1508.04846 Accelerator Physics +1508.04861 +1508.04890 Phenomenology +1508.05019 +1508.05042 +1508.05101 Phenomenology +1508.05214 Methodology +1508.05493 High Energy Astrophysical Phenomena +1508.05548 High Energy Astrophysical Phenomena +1508.05625 Materials Science +1508.05846 Analysis of PDEs +1508.05952 Dynamical Systems +1508.06030 Mesoscale and Nanoscale Physics +1508.06372 Mesoscale and Nanoscale Physics +1508.06398 Superconductivity +1508.06657 Materials Science +1508.06876 +1508.07244 Other Quantitative Biology +1508.07328 Astrophysics of Galaxies +1508.07363 +1508.07492 +1508.07493 +1508.07614 +1508.07674 +1508.07718 Theory +1508.07781 Numerical Analysis +1509.00108 Statistical Mechanics +1509.00198 Spectral Theory +1509.00385 Optics +1509.00405 Plasma Physics +1509.00429 Materials Science +1509.00450 +1509.00451 +1509.00472 Phenomenology +1509.00502 Materials Science +1509.00841 +1509.00878 +1509.00928 +1509.00971 +1509.01026 Soft Condensed Matter +1509.01107 Superconductivity +1509.01497 Phenomenology +1509.01587 Phenomenology +1509.01617 Materials Science +1509.01678 Dynamical Systems +1509.01766 Soft Condensed Matter +1509.01807 Materials Science +1509.02059 +1509.02306 Materials Science +1509.02555 +1509.02698 Strongly Correlated Electrons +1509.02770 Mesoscale and Nanoscale Physics +1509.02780 Phenomenology +1509.02862 Statistical Mechanics +1509.02916 Theory +1509.02919 +1509.03077 Theory +1509.03084 Exactly Solvable and Integrable Systems +1509.03182 Optics +1509.03235 Atomic Physics +1509.03261 Soft Condensed Matter +1509.03265 Phenomenology +1509.03378 Optics +1509.03379 Materials Science +1509.03424 Logic in Computer Science +1509.03495 Computation +1509.03855 Combinatorics +1509.03861 +1509.03924 +1509.04058 Optics +1509.04288 Theory +1509.04490 High Energy Astrophysical Phenomena +1509.04555 Information Theory +1509.04605 Fluid Dynamics +1509.04613 Computation +1509.04726 Phenomenology +1509.05008 Optimization and Control +1509.05092 Mesoscale and Nanoscale Physics +1509.05235 Theory +1509.05305 Data Structures and Algorithms +1509.05311 Theory +1509.05561 Theory +1509.05658 Plasma Physics +1509.05847 Mesoscale and Nanoscale Physics +1509.05882 +1509.05922 Lattice +1509.05968 +1509.05987 Quantum Gases +1509.06071 Phenomenology +1509.06230 Materials Science +1509.06525 +1509.06531 Solar and Stellar Astrophysics +1509.06833 Numerical Analysis +1509.06886 Mesoscale and Nanoscale Physics +1509.07008 +1509.07030 +1509.07097 Optics +1509.07355 Classical Physics +1509.07392 Soft Condensed Matter +1509.07472 +1509.07931 Optics +1509.08009 Soft Condensed Matter +1509.08324 Phenomenology +1509.08355 Combinatorics +1509.08470 Mesoscale and Nanoscale Physics +1509.08578 Phenomenology +1509.08913 Biological Physics +1509.09009 +1509.09159 Phenomenology +1509.09282 Information Theory +1510.00100 Phenomenology +1510.00138 Quantum Gases +1510.00281 Quantum Gases +1510.00454 Phenomenology +1510.00489 Optics +1510.00608 +1510.00795 +1510.00828 +1510.00898 Phenomenology +1510.01421 Software Engineering +1510.01462 Pattern Formation and Solitons +1510.01474 Statistical Mechanics +1510.01609 Theory +1510.01789 Phenomenology +1510.01805 Superconductivity +1510.01893 High Energy Astrophysical Phenomena +1510.01914 Phenomenology +1510.01979 Atomic Physics +1510.02206 +1510.02248 +1510.02264 Statistical Mechanics +1510.02508 +1510.02509 Atomic Physics +1510.02535 Theory +1510.02540 Probability +1510.02551 Statistics Theory +1510.02630 Biomolecules +1510.02799 +1510.02809 Instrumentation and Methods for Astrophysics +1510.03043 +1510.03332 Theory +1510.03620 +1510.03636 Statistical Mechanics +1510.04021 Rings and Algebras +1510.04047 Phenomenology +1510.04119 Accelerator Physics +1510.04232 Computational Physics +1510.04485 Phenomenology +1510.04561 Phenomenology +1510.04643 High Energy Astrophysical Phenomena +1510.04714 Soft Condensed Matter +1510.04818 Optics +1510.04887 Theory +1510.04964 Accelerator Physics +1510.05018 Phenomenology +1510.05020 Phenomenology +1510.05047 Mesoscale and Nanoscale Physics +1510.05055 +1510.05197 Mesoscale and Nanoscale Physics +1510.05450 +1510.05471 Instrumentation and Methods for Astrophysics +1510.05756 Optics +1510.06036 Theory +1510.06117 +1510.06154 +1510.06159 +1510.06335 Artificial Intelligence +1510.06341 Atomic Physics +1510.06424 Phenomenology +1510.06442 Cosmology and Nongalactic Astrophysics +1510.06652 Phenomenology +1510.06798 Mesoscale and Nanoscale Physics +1510.06844 Mesoscale and Nanoscale Physics +1510.06919 Mesoscale and Nanoscale Physics +1510.07048 High Energy Astrophysical Phenomena +1510.07159 Solar and Stellar Astrophysics +1510.07392 High Energy Astrophysical Phenomena +1510.07399 Statistical Mechanics +1510.07410 Emerging Technologies +1510.07514 Earth and Planetary Astrophysics +1510.07602 Optics +1510.07627 Theory +1510.07644 Theory +1510.07797 Instrumentation and Methods for Astrophysics +1510.07821 Optimization and Control +1510.07841 Lattice +1510.07854 +1510.07886 Theory +1510.07973 Numerical Analysis +1510.08067 Astrophysics of Galaxies +1510.08157 Medical Physics +1510.08252 Materials Science +1510.08309 Cosmology and Nongalactic Astrophysics +1510.08451 Phenomenology +1510.08522 Solar and Stellar Astrophysics +1510.08698 Atomic Physics +1510.08768 Phenomenology +1510.08888 Mesoscale and Nanoscale Physics +1510.08917 Computational Geometry +1510.08967 Optics +1510.08975 Strongly Correlated Electrons +1510.09060 Theory +1510.09071 Strongly Correlated Electrons +1510.09076 Cosmology and Nongalactic Astrophysics +1511.00102 +1511.00122 High Energy Astrophysical Phenomena +1511.00172 Dynamical Systems +1511.00292 Statistical Mechanics +1511.00466 Numerical Analysis +1511.00503 Mesoscale and Nanoscale Physics +1511.00691 Phenomenology +1511.00693 Cosmology and Nongalactic Astrophysics +1511.00868 +1511.01195 Spectral Theory +1511.01228 Atomic Physics +1511.01243 Astrophysics of Galaxies +1511.01307 +1511.01452 Phenomenology +1511.01512 Learning +1511.01576 Optics +1511.01651 Optics +1511.01698 Phenomenology +1511.01801 Theory +1511.01872 Quantum Gases +1511.01972 Mesoscale and Nanoscale Physics +1511.01998 Astrophysics of Galaxies +1511.02013 Atomic Physics +1511.02060 +1511.02063 Plasma Physics +1511.02087 Atmospheric and Oceanic Physics +1511.02266 Optics +1511.02288 Theory +1511.02350 Phenomenology +1511.02444 Theory +1511.02509 Phenomenology +1511.02781 +1511.02946 +1511.03109 Quantum Gases +1511.03127 +1511.03235 Physics and Society +1511.03348 Mesoscale and Nanoscale Physics +1511.03463 Methodology +1511.03539 Instrumentation and Detectors +1511.03587 Theory +1511.03615 High Energy Astrophysical Phenomena +1511.03630 Theory +1511.03731 Cosmology and Nongalactic Astrophysics +1511.03750 Materials Science +1511.03836 Atomic Physics +1511.03878 Computational Physics +1511.04126 Information Theory +1511.04241 +1511.04392 Materials Science +1511.04396 Mesoscale and Nanoscale Physics +1511.04407 +1511.04506 Instrumentation and Methods for Astrophysics +1511.04575 Theory +1511.04605 Phenomenology +1511.04722 +1511.04759 Mesoscale and Nanoscale Physics +1511.05099 Computation and Language +1511.05114 Populations and Evolution +1511.05125 High Energy Astrophysical Phenomena +1511.05159 Theory +1511.05175 Computer Vision and Pattern Recognition +1511.05293 Theory +1511.05344 +1511.05359 Information Theory +1511.05476 Astrophysics of Galaxies +1511.05484 Theory +1511.05537 Materials Science +1511.05556 Computational Physics +1511.05588 Classical Physics +1511.05786 Optics +1511.05829 +1511.06097 +1511.06215 Phenomenology +1511.06298 Materials Science +1511.06315 Theory +1511.06506 Materials Science +1511.06565 +1511.06686 Theory +1511.06716 Theory +1511.06749 Optics +1511.06796 Mesoscale and Nanoscale Physics +1511.06931 Computation and Language +1511.07198 +1511.07225 Superconductivity +1511.07241 Materials Science +1511.07324 +1511.07463 Phenomenology +1511.07645 Statistical Mechanics +1511.07840 Plasma Physics +1511.07909 Strongly Correlated Electrons +1511.07923 Materials Science +1511.08022 Numerical Analysis +1511.08363 Optics +1511.08379 Phenomenology +1511.08614 Strongly Correlated Electrons +1511.08747 Theory +1511.08759 Theory +1511.08820 Theory +1511.09029 Instrumentation and Detectors +1511.09098 Optics +1511.09248 Fluid Dynamics +1511.09449 Probability +1512.00111 Mesoscale and Nanoscale Physics +1512.00457 Theory +1512.00559 Astrophysics of Galaxies +1512.00560 Astrophysics of Galaxies +1512.00702 Mesoscale and Nanoscale Physics +1512.00762 Emerging Technologies +1512.00769 Cellular Automata and Lattice Gases +1512.00854 Theory +1512.00857 Phenomenology +1512.01151 Superconductivity +1512.01170 Theory +1512.01231 Theory +1512.01460 Space Physics +1512.01461 Solar and Stellar Astrophysics +1512.01508 Optics +1512.01531 Theory +1512.01575 +1512.01777 Soft Condensed Matter +1512.01859 Statistical Mechanics +1512.01903 Instrumentation and Detectors +1512.01964 Theory +1512.02020 +1512.02101 +1512.02119 Quantum Gases +1512.02147 Strongly Correlated Electrons +1512.02246 +1512.02352 +1512.02401 Optics +1512.02462 Theory +1512.02557 Phenomenology +1512.02605 Optics +1512.02613 Mesoscale and Nanoscale Physics +1512.02642 Astrophysics of Galaxies +1512.02647 Phenomenology +1512.02669 Strongly Correlated Electrons +1512.02725 Mesoscale and Nanoscale Physics +1512.02742 Information Theory +1512.02753 Atomic Physics +1512.02779 +1512.02812 Theory +1512.03003 Phenomenology +1512.03136 Phenomenology +1512.03179 Phenomenology +1512.03257 +1512.03317 Phenomenology +1512.03429 Phenomenology +1512.03608 +1512.03688 Dynamical Systems +1512.03800 Theory +1512.03811 Representation Theory +1512.03822 Astrophysics of Galaxies +1512.03849 +1512.03891 Computational Physics +1512.03941 Optics +1512.04091 Quantum Gases +1512.04125 Optics +1512.04154 +1512.04285 Optics +1512.04448 Strongly Correlated Electrons +1512.04497 Phenomenology +1512.04500 Theory +1512.04558 Theory +1512.04646 Mesoscale and Nanoscale Physics +1512.04659 +1512.04846 Theory +1512.04917 Phenomenology +1512.04928 Phenomenology +1512.04933 Phenomenology +1512.04952 Theory +1512.04984 Lattice +1512.05076 +1512.05097 Optics +1512.05186 Phenomenology +1512.05195 Lattice +1512.05205 +1512.05221 Phenomenology +1512.05327 Phenomenology +1512.05328 Phenomenology +1512.05333 Phenomenology +1512.05358 +1512.05369 Phenomenology +1512.05388 Theory +1512.05477 +1512.05478 Disordered Systems and Neural Networks +1512.05620 Solar and Stellar Astrophysics +1512.05630 Phenomenology +1512.05662 Physics Education +1512.05825 Phenomenology +1512.05884 +1512.05890 Phenomenology +1512.05922 +1512.05933 Atomic Physics +1512.05946 Cosmology and Nongalactic Astrophysics +1512.05969 Chaotic Dynamics +1512.05981 Atomic Physics +1512.06091 Phenomenology +1512.06128 Phenomenology +1512.06135 Phenomenology +1512.06160 Instrumentation and Detectors +1512.06218 Optics +1512.06239 Cosmology and Nongalactic Astrophysics +1512.06314 Information Theory +1512.06324 Probability +1512.06414 Theory +1512.06437 Phenomenology +1512.06636 Soft Condensed Matter +1512.06653 Materials Science +1512.06783 Mesoscale and Nanoscale Physics +1512.06801 Theory +1512.06822 Phenomenology +1512.06824 Phenomenology +1512.06861 Theory +1512.06904 Theory +1512.06914 Quantum Gases +1512.06917 Mesoscale and Nanoscale Physics +1512.06930 Materials Science +1512.07014 Lattice +1512.07105 +1512.07127 Phenomenology +1512.07131 Theory +1512.07230 Plasma Physics +1512.07403 +1512.07506 Computer Vision and Pattern Recognition +1512.07588 Statistical Mechanics +1512.07698 +1512.07754 Fluid Dynamics +1512.07761 Phenomenology +1512.07763 Optics +1512.07820 Solar and Stellar Astrophysics +1512.07909 Theory +1512.07929 Mesoscale and Nanoscale Physics +1512.07930 Solar and Stellar Astrophysics +1512.07979 Optics +1512.08114 Theory +1512.08131 High Energy Astrophysical Phenomena +1512.08217 Materials Science +1512.08342 Theory +1512.08359 Classical Physics +1512.08374 Phenomenology +1512.08416 Optics +1512.08508 Phenomenology +1512.08631 Soft Condensed Matter +1512.08725 Materials Science +1512.08749 Phenomenology +1512.08774 Solar and Stellar Astrophysics +1512.08894 Phenomenology +1512.08941 Phenomenology +1512.08947 Chaotic Dynamics +1512.09014 Phenomenology +1512.09195 Mesoscale and Nanoscale Physics +1512.09315 +1512.09361 Optics +1601.00036 Instrumentation and Methods for Astrophysics +1601.00095 Strongly Correlated Electrons +1601.00435 +1601.00560 Optics +1601.00598 Mesoscale and Nanoscale Physics +1601.00708 +1601.00747 +1601.00803 +1601.00973 +1601.00997 Dynamical Systems +1601.01040 Materials Science +1601.01290 Mesoscale and Nanoscale Physics +1601.01306 +1601.01333 Optics +1601.01368 +1601.01371 Materials Science +1601.01424 Chaotic Dynamics +1601.01458 Optics +1601.01481 Optics +1601.01547 +1601.01575 Strongly Correlated Electrons +1601.01583 Theory +1601.01725 Programming Languages +1601.01813 Phenomenology +1601.01818 +1601.01830 Phenomenology +1601.01889 Mesoscale and Nanoscale Physics +1601.01930 Solar and Stellar Astrophysics +1601.01938 Phenomenology +1601.01945 Theory +1601.02026 Optics +1601.02048 Materials Science +1601.02086 Strongly Correlated Electrons +1601.02162 Chaotic Dynamics +1601.02374 Optics +1601.02384 Solar and Stellar Astrophysics +1601.02518 Optics +1601.02540 Phenomenology +1601.02576 Algebraic Geometry +1601.02651 Statistical Mechanics +1601.02657 Materials Science +1601.02757 Theory +1601.02761 Mesoscale and Nanoscale Physics +1601.02774 Instrumentation and Methods for Astrophysics +1601.02856 Phenomenology +1601.02866 Fluid Dynamics +1601.03010 Strongly Correlated Electrons +1601.03066 Theory +1601.03087 Strongly Correlated Electrons +1601.03134 +1601.03399 Astrophysics of Galaxies +1601.03417 Optics +1601.03579 Optics +1601.03604 Phenomenology +1601.03636 Cosmology and Nongalactic Astrophysics +1601.03703 +1601.03744 High Energy Astrophysical Phenomena +1601.03746 Physics and Society +1601.03781 +1601.03782 +1601.03996 +1601.04018 Statistical Mechanics +1601.04090 +1601.04339 Atomic Physics +1601.04393 Fluid Dynamics +1601.04475 Exactly Solvable and Integrable Systems +1601.04559 High Energy Astrophysical Phenomena +1601.04639 Fluid Dynamics +1601.04656 +1601.04659 Solar and Stellar Astrophysics +1601.04690 Disordered Systems and Neural Networks +1601.04718 Phenomenology +1601.04909 +1601.05038 Phenomenology +1601.05079 Phenomenology +1601.05094 Phenomenology +1601.05154 +1601.05170 Mesoscale and Nanoscale Physics +1601.05211 Instrumentation and Methods for Astrophysics +1601.05254 Computers and Society +1601.05267 +1601.05368 High Energy Astrophysical Phenomena +1601.05406 Astrophysics of Galaxies +1601.05423 Astrophysics of Galaxies +1601.05526 +1601.05802 Cosmology and Nongalactic Astrophysics +1601.05937 Phenomenology +1601.05993 Materials Science +1601.06121 Classical Analysis and ODEs +1601.06150 Phenomenology +1601.06161 Instrumentation and Methods for Astrophysics +1601.06328 Phenomenology +1601.06340 Physics and Society +1601.06350 Optics +1601.06418 Theory +1601.06499 Phenomenology +1601.06507 Materials Science +1601.06513 Solar and Stellar Astrophysics +1601.06552 Phenomenology +1601.06557 Phenomenology +1601.06600 Materials Science +1601.06665 Phenomenology +1601.06851 Theory +1601.06856 Solar and Stellar Astrophysics +1601.06883 Plasma Physics +1601.06914 Theory +1601.06966 Solar and Stellar Astrophysics +1601.06968 Statistical Mechanics +1601.07032 Soft Condensed Matter +1601.07043 Astrophysics of Galaxies +1601.07045 Phenomenology +1601.07083 Optics +1601.07115 Phenomenology +1601.07156 Solar and Stellar Astrophysics +1601.07226 Accelerator Physics +1601.07242 Phenomenology +1601.07328 Phenomenology +1601.07338 Phenomenology +1601.07426 Instrumentation and Methods for Astrophysics +1601.07512 Phenomenology +1601.07536 Cosmology and Nongalactic Astrophysics +1601.07666 Phenomenology +1601.07801 Phenomenology +1601.07822 +1601.07905 Astrophysics of Galaxies +1601.07980 Materials Science +1601.07987 Phenomenology +1601.08004 High Energy Astrophysical Phenomena +1601.08087 Solar and Stellar Astrophysics +1601.08105 Solar and Stellar Astrophysics +1601.08175 +1601.08239 Instrumentation and Methods for Astrophysics +1602.00129 Optics +1602.00151 Solar and Stellar Astrophysics +1602.00241 +1602.00254 Phenomenology +1602.00317 Mesoscale and Nanoscale Physics +1602.00455 Phenomenology +1602.00539 Phenomenology +1602.00767 Computational Geometry +1602.00866 Strongly Correlated Electrons +1602.00870 Optics +1602.00891 Strongly Correlated Electrons +1602.01393 Atmospheric and Oceanic Physics +1602.01453 Disordered Systems and Neural Networks +1602.01508 Theory +1602.01602 Optics +1602.01745 Phenomenology +1602.01755 Instrumentation and Detectors +1602.01769 Earth and Planetary Astrophysics +1602.01773 Phenomenology +1602.01774 Phenomenology +1602.01797 Solar and Stellar Astrophysics +1602.01853 +1602.01890 Computer Vision and Pattern Recognition +1602.01999 Solar and Stellar Astrophysics +1602.02307 Phenomenology +1602.02419 Materials Science +1602.02444 High Energy Astrophysical Phenomena +1602.02478 Quantum Gases +1602.02503 Astrophysics of Galaxies +1602.02587 Optics +1602.02812 Cosmology and Nongalactic Astrophysics +1602.02959 +1602.02960 Cosmology and Nongalactic Astrophysics +1602.03151 Earth and Planetary Astrophysics +1602.03173 Theory +1602.03245 Mesoscale and Nanoscale Physics +1602.03284 Superconductivity +1602.03359 High Energy Astrophysical Phenomena +1602.03443 Mesoscale and Nanoscale Physics +1602.03822 Learning +1602.03891 Astrophysics of Galaxies +1602.03895 Earth and Planetary Astrophysics +1602.03955 Astrophysics of Galaxies +1602.04077 Solar and Stellar Astrophysics +1602.04119 Statistical Mechanics +1602.04192 Phenomenology +1602.04501 Cosmology and Nongalactic Astrophysics +1602.04509 Superconductivity +1602.04715 High Energy Astrophysical Phenomena +1602.04737 Astrophysics of Galaxies +1602.04837 Cosmology and Nongalactic Astrophysics +1602.04901 +1602.04921 Computer Vision and Pattern Recognition +1602.04954 +1602.05025 +1602.05065 +1602.05120 Optics +1602.05280 Statistical Mechanics +1602.05293 Soft Condensed Matter +1602.05317 Materials Science +1602.05364 Astrophysics of Galaxies +1602.05586 High Energy Astrophysical Phenomena +1602.05589 Astrophysics of Galaxies +1602.05609 +1602.05630 Solar and Stellar Astrophysics +1602.05700 Instrumentation and Methods for Astrophysics +1602.05878 Mesoscale and Nanoscale Physics +1602.06022 Optics +1602.06036 Plasma Physics +1602.06044 Solar and Stellar Astrophysics +1602.06141 Quantum Gases +1602.06145 +1602.06190 High Energy Astrophysical Phenomena +1602.06234 General Finance +1602.06286 Solar and Stellar Astrophysics +1602.06521 +1602.06523 Solar and Stellar Astrophysics +1602.06549 High Energy Astrophysical Phenomena +1602.06733 Earth and Planetary Astrophysics +1602.06740 Phenomenology +1602.06780 Combinatorics +1602.06837 +1602.06854 Astrophysics of Galaxies +1602.06898 Plasma Physics +1602.06945 Astrophysics of Galaxies +1602.06959 Astrophysics of Galaxies +1602.06993 Strongly Correlated Electrons +1602.07011 Solar and Stellar Astrophysics +1602.07014 Earth and Planetary Astrophysics +1602.07023 Optics +1602.07186 Fluid Dynamics +1602.07222 Phenomenology +1602.07343 High Energy Astrophysical Phenomena +1602.07404 +1602.07611 Physics Education +1602.07687 Astrophysics of Galaxies +1602.07704 Cosmology and Nongalactic Astrophysics +1602.07707 Earth and Planetary Astrophysics +1602.07771 Materials Science +1602.07843 Earth and Planetary Astrophysics +1602.07908 Astrophysics of Galaxies +1602.07976 Instrumentation and Methods for Astrophysics +1602.07997 Computational Physics +1602.08167 Astrophysics of Galaxies +1602.08170 Solar and Stellar Astrophysics +1602.08263 Strongly Correlated Electrons +1602.08273 Information Theory +1602.08292 +1602.08364 High Energy Astrophysical Phenomena +1602.08375 Statistical Mechanics +1602.08381 Instrumentation and Methods for Astrophysics +1602.08537 Fluid Dynamics +1602.08726 Lattice +1602.08756 High Energy Astrophysical Phenomena +1602.08842 +1602.08959 Materials Science +1602.09026 Strongly Correlated Electrons +1602.09027 Classical Analysis and ODEs +1602.09064 Materials Science +1602.09075 High Energy Astrophysical Phenomena +1603.00019 Astrophysics of Galaxies +1603.00035 Astrophysics of Galaxies +1603.00036 Solar and Stellar Astrophysics +1603.00057 Astrophysics of Galaxies +1603.00068 Statistical Mechanics +1603.00366 +1603.00455 High Energy Astrophysical Phenomena +1603.00480 Solar and Stellar Astrophysics +1603.00523 Strongly Correlated Electrons +1603.00549 Solar and Stellar Astrophysics +1603.00586 Astrophysics of Galaxies +1603.00685 +1603.00852 +1603.00873 High Energy Astrophysical Phenomena +1603.00989 Lattice +1603.01000 Mesoscale and Nanoscale Physics +1603.01034 High Energy Astrophysical Phenomena +1603.01108 +1603.01119 Solar and Stellar Astrophysics +1603.01131 Phenomenology +1603.01146 Instrumentation and Methods for Astrophysics +1603.01151 High Energy Astrophysical Phenomena +1603.01163 Astrophysics of Galaxies +1603.01197 Solar and Stellar Astrophysics +1603.01211 +1603.01245 Solar and Stellar Astrophysics +1603.01286 +1603.01410 Solar and Stellar Astrophysics +1603.01474 High Energy Astrophysical Phenomena +1603.01792 +1603.01968 Earth and Planetary Astrophysics +1603.02095 +1603.02101 Numerical Analysis +1603.02108 Strongly Correlated Electrons +1603.02134 Materials Science +1603.02174 Chemical Physics +1603.02192 Strongly Correlated Electrons +1603.02207 Strongly Correlated Electrons +1603.02332 Solar and Stellar Astrophysics +1603.02356 Cosmology and Nongalactic Astrophysics +1603.02374 Solar and Stellar Astrophysics +1603.02475 Earth and Planetary Astrophysics +1603.02483 Fluid Dynamics +1603.02505 Solar and Stellar Astrophysics +1603.02573 +1603.02654 Fluid Dynamics +1603.02744 Numerical Analysis +1603.02773 Neurons and Cognition +1603.02855 Solar and Stellar Astrophysics +1603.02962 High Energy Astrophysical Phenomena +1603.03032 +1603.03063 Phenomenology +1603.03067 +1603.03074 Theory +1603.03118 Strongly Correlated Electrons +1603.03331 Phenomenology +1603.03386 Instrumentation and Methods for Astrophysics +1603.03548 High Energy Astrophysical Phenomena +1603.03646 Earth and Planetary Astrophysics +1603.03709 Earth and Planetary Astrophysics +1603.03777 High Energy Astrophysical Phenomena +1603.03879 Cosmology and Nongalactic Astrophysics +1603.03915 Computer Vision and Pattern Recognition +1603.03933 Phenomenology +1603.04133 Mesoscale and Nanoscale Physics +1603.04204 +1603.04208 Strongly Correlated Electrons +1603.04346 +1603.04365 High Energy Astrophysical Phenomena +1603.04377 Strongly Correlated Electrons +1603.04430 +1603.04728 High Energy Astrophysical Phenomena +1603.04762 Phenomenology +1603.04766 Cell Behavior +1603.04769 Statistical Mechanics +1603.04895 High Energy Astrophysical Phenomena +1603.05006 Earth and Planetary Astrophysics +1603.05135 +1603.05187 High Energy Astrophysical Phenomena +1603.05276 Solar and Stellar Astrophysics +1603.05504 High Energy Astrophysical Phenomena +1603.05560 High Energy Astrophysical Phenomena +1603.05658 High Energy Astrophysical Phenomena +1603.06008 +1603.06149 Combinatorics +1603.06250 Chaotic Dynamics +1603.06575 Earth and Planetary Astrophysics +1603.06594 High Energy Astrophysical Phenomena +1603.06629 Materials Science +1603.06638 Solar and Stellar Astrophysics +1603.06651 Cosmology and Nongalactic Astrophysics +1603.06753 Computational Physics +1603.06769 +1603.06803 Astrophysics of Galaxies +1603.06831 +1603.06836 Solar and Stellar Astrophysics +1603.06839 Earth and Planetary Astrophysics +1603.06840 Earth and Planetary Astrophysics +1603.06864 Mesoscale and Nanoscale Physics +1603.06890 High Energy Astrophysical Phenomena +1603.06938 +1603.07024 High Energy Astrophysical Phenomena +1603.07084 High Energy Astrophysical Phenomena +1603.07109 Soft Condensed Matter +1603.07223 Astrophysics of Galaxies +1603.07332 Astrophysics of Galaxies +1603.07381 Solar and Stellar Astrophysics +1603.07407 High Energy Astrophysical Phenomena +1603.07527 Instrumentation and Methods for Astrophysics +1603.07645 Earth and Planetary Astrophysics +1603.07731 Solar and Stellar Astrophysics +1603.07736 Astrophysics of Galaxies +1603.07812 Operator Algebras +1603.07829 Astrophysics of Galaxies +1603.08081 Computer Vision and Pattern Recognition +1603.08364 Astrophysics of Galaxies +1603.08469 +1603.08537 Astrophysics of Galaxies +1603.08630 High Energy Astrophysical Phenomena +1603.08757 High Energy Astrophysical Phenomena +1603.08823 Earth and Planetary Astrophysics +1603.08905 Spectral Theory +1603.08991 Instrumentation and Methods for Astrophysics +1603.09151 Chaotic Dynamics +1603.09226 Solar and Stellar Astrophysics +1603.09328 High Energy Astrophysical Phenomena +1603.09342 Astrophysics of Galaxies +1603.09368 Solar and Stellar Astrophysics +1603.09461 Instrumentation and Methods for Astrophysics +1603.09525 Astrophysics of Galaxies +1603.09591 Astrophysics of Galaxies +1603.09637 Astrophysics of Galaxies +1604.00008 Astrophysics of Galaxies +1604.00070 High Energy Astrophysical Phenomena +1604.00137 Atomic Physics +1604.00173 Cosmology and Nongalactic Astrophysics +1604.00394 Astrophysics of Galaxies +1604.00397 Solar and Stellar Astrophysics +1604.00401 Astrophysics of Galaxies +1604.00414 Astrophysics of Galaxies +1604.00485 Solar and Stellar Astrophysics +1604.00587 Astrophysics of Galaxies +1604.00792 Earth and Planetary Astrophysics +1604.00888 Combinatorics +1604.00901 Astrophysics of Galaxies +1604.01046 Astrophysics of Galaxies +1604.01071 +1604.01273 Other Condensed Matter +1604.01342 Astrophysics of Galaxies +1604.01393 +1604.01457 Solar and Stellar Astrophysics +1604.01463 Cosmology and Nongalactic Astrophysics +1604.01494 High Energy Astrophysical Phenomena +1604.01822 Astrophysics of Galaxies +1604.01962 Computer Vision and Pattern Recognition +1604.02185 Superconductivity +1604.02202 +1604.02204 Astrophysics of Galaxies +1604.02259 Instrumentation and Detectors +1604.02283 High Energy Astrophysical Phenomena +1604.02409 Classical Analysis and ODEs +1604.02498 Popular Physics +1604.02521 Optics +1604.02766 Mesoscale and Nanoscale Physics +1604.02807 Mesoscale and Nanoscale Physics +1604.02861 Strongly Correlated Electrons +1604.02876 Mesoscale and Nanoscale Physics +1604.02969 Combinatorics +1604.03016 Combinatorics +1604.03255 Phenomenology +1604.03324 Computer Science and Game Theory +1604.03332 History and Philosophy of Physics +1604.03335 Phenomenology +1604.03339 Phenomenology +1604.03469 Phenomenology +1604.03490 Mesoscale and Nanoscale Physics +1604.03527 Instrumentation and Methods for Astrophysics +1604.03854 Strongly Correlated Electrons +1604.03894 High Energy Astrophysical Phenomena +1604.03923 Soft Condensed Matter +1604.04011 Quantum Gases +1604.04017 Earth and Planetary Astrophysics +1604.04029 Learning +1604.04128 Instrumentation and Detectors +1604.04129 Probability +1604.04262 +1604.04268 Solar and Stellar Astrophysics +1604.04378 Computation and Language +1604.04588 Populations and Evolution +1604.04598 Combinatorics +1604.04643 Molecular Networks +1604.04735 Information Theory +1604.04805 Phenomenology +1604.04867 Solar and Stellar Astrophysics +1604.05004 Group Theory +1604.05017 Optimization and Control +1604.05091 Learning +1604.05108 Combinatorics +1604.05276 Algebraic Geometry +1604.05299 Optimization and Control +1604.05304 Optics +1604.05307 Learning +1604.05321 Cosmology and Nongalactic Astrophysics +1604.05322 Astrophysics of Galaxies +1604.05324 Phenomenology +1604.05331 Earth and Planetary Astrophysics +1604.05334 Number Theory +1604.05337 Data Structures and Algorithms +1604.05338 Classical Analysis and ODEs +1604.05340 Instrumentation and Detectors +1604.05341 Networking and Internet Architecture +1604.05342 Solar and Stellar Astrophysics +1604.05344 Classical Analysis and ODEs +1604.05345 Combinatorics +1604.05347 +1604.05348 Commutative Algebra +1604.05350 Computational Geometry +1604.05351 Metric Geometry +1604.05355 Networking and Internet Architecture +1604.05356 Earth and Planetary Astrophysics +1604.05357 +1604.05358 Artificial Intelligence +1604.05363 Digital Libraries +1604.05364 Populations and Evolution +1604.05365 Algebraic Geometry +1604.05366 Earth and Planetary Astrophysics +1604.05367 Metric Geometry +1604.05368 Earth and Planetary Astrophysics +1604.05369 Optimization and Control +1604.05372 Computation and Language +1604.05375 Methodology +1604.05376 Probability +1604.05377 Machine Learning +1604.05379 Phenomenology +1604.05380 Solar and Stellar Astrophysics +1604.05383 Computer Vision and Pattern Recognition +1604.05384 Earth and Planetary Astrophysics +1604.05390 Differential Geometry +1604.05391 Optimization and Control +1604.05393 Information Theory +1604.05399 Optimization and Control +1604.05408 Rings and Algebras +1604.05410 Number Theory +1604.05411 Plasma Physics +1604.05412 Combinatorics +1604.05413 Computer Vision and Pattern Recognition +1604.05414 Combinatorics +1604.05415 +1604.05418 Other Statistics +1604.05419 Artificial Intelligence +1604.05428 Distributed, Parallel, and Cluster Computing +1604.05429 Learning +1604.05430 Networking and Internet Architecture +1604.05440 Probability +1604.05442 Distributed, Parallel, and Cluster Computing +1604.05444 Materials Science +1604.05446 Analysis of PDEs +1604.05447 Theory +1604.05448 Data Structures and Algorithms +1604.05449 Machine Learning +1604.05451 Computer Vision and Pattern Recognition +1604.05453 Probability +1604.05455 Systems and Control +1604.05458 Representation Theory +1604.05459 Neural and Evolutionary Computing +1604.05460 Networking and Internet Architecture +1604.05461 Analysis of PDEs +1604.05462 Information Retrieval +1604.05464 Probability +1604.05466 General Topology +1604.05467 Soft Condensed Matter +1604.05468 Information Retrieval +1604.05478 Computation +1604.05479 Human-Computer Interaction +1604.05480 Analysis of PDEs +1604.05487 Computational Complexity +1604.05488 High Energy Astrophysical Phenomena +1604.05490 Social and Information Networks +1604.05491 Metric Geometry +1604.05494 Complex Variables +1604.05495 Computer Vision and Pattern Recognition +1604.05497 Materials Science +1604.05498 Analysis of PDEs +1604.05499 Computation and Language +1604.05500 Complex Variables +1604.05501 Astrophysics of Galaxies +1604.05503 Software Engineering +1604.05507 Physics Education +1604.05509 Algebraic Geometry +1604.05510 Computational Complexity +1604.05511 Accelerator Physics +1604.05514 Computational Physics +1604.05515 Materials Science +1604.05517 Optimization and Control +1604.05521 Physics and Society +1604.05522 Mesoscale and Nanoscale Physics +1604.05524 Dynamical Systems +1604.05525 Computation and Language +1604.05528 Plasma Physics +1604.05534 Networking and Internet Architecture +1604.05537 Statistical Mechanics +1604.05539 Analysis of PDEs +1604.05540 Numerical Analysis +1604.05545 +1604.05548 +1604.05549 Dynamical Systems +1604.05550 Information Theory +1604.05551 Classical Analysis and ODEs +1604.05558 Spectral Theory +1604.05559 Computation and Language +1604.05561 Materials Science +1604.05562 Computer Science and Game Theory +1604.05563 Classical Physics +1604.05564 Spectral Theory +1604.05567 Dynamical Systems +1604.05570 Other Computer Science +1604.05571 Other Computer Science +1604.05572 Human-Computer Interaction +1604.05573 Information Theory +1604.05575 Physics and Society +1604.05576 Computer Vision and Pattern Recognition +1604.05577 Software Engineering +1604.05579 Classical Analysis and ODEs +1604.05583 Fluid Dynamics +1604.05584 Mathematical Finance +1604.05585 Astrophysics of Galaxies +1604.05588 Computational Complexity +1604.05589 Methodology +1604.05594 Analysis of PDEs +1604.05597 Mesoscale and Nanoscale Physics +1604.05598 Statistical Finance +1604.05603 Data Structures and Algorithms +1604.05605 Computer Vision and Pattern Recognition +1604.05606 Algebraic Topology +1604.05607 Operator Algebras +1604.05617 Soft Condensed Matter +1604.05619 Complex Variables +1604.05621 Dynamical Systems +1604.05622 Networking and Internet Architecture +1604.05623 Networking and Internet Architecture +1604.05624 Fluid Dynamics +1604.05627 Optics +1604.05628 Solar and Stellar Astrophysics +1604.05629 Theory +1604.05631 Materials Science +1604.05632 Accelerator Physics +1604.05636 Artificial Intelligence +1604.05637 Strongly Correlated Electrons +1604.05638 +1604.05642 High Energy Astrophysical Phenomena +1604.05643 Methodology +1604.05647 Optics +1604.05650 Astrophysics of Galaxies +1604.05652 +1604.05653 Numerical Analysis +1604.05654 Dynamical Systems +1604.05655 +1604.05658 Computation +1604.05659 Emerging Technologies +1604.05660 Superconductivity +1604.05661 Methodology +1604.05672 General Finance +1604.05673 K-Theory and Homology +1604.05674 History and Philosophy of Physics +1604.05677 Materials Science +1604.05678 Rings and Algebras +1604.05680 Information Theory +1604.05683 Classical Analysis and ODEs +1604.05685 +1604.05688 +1604.05694 Optimization and Control +1604.05695 Group Theory +1604.05697 Analysis of PDEs +1604.05698 +1604.05699 Mesoscale and Nanoscale Physics +1604.05702 Earth and Planetary Astrophysics +1604.05703 Probability +1604.05704 +1604.05707 Differential Geometry +1604.05710 Analysis of PDEs +1604.05713 Superconductivity +1604.05715 Data Analysis, Statistics and Probability +cond-mat/0007019 Disordered Systems and Neural Networks +cond-mat/0009403 Strongly Correlated Electrons +cond-mat/0010355 Superconductivity +cond-mat/0111060 Statistical Mechanics +cond-mat/9812199 Disordered Systems and Neural Networks +cond-mat/9812247 Mesoscale and Nanoscale Physics +gr-qc/0703045 +hep-th/9112020 Theory +physics/9810008 Classical Physics +quant-ph/9809030 +quant-ph/9810009 +0810.4948 History and Philosophy of Physics +1202.2194 Atmospheric and Oceanic Physics +1204.0097 Materials Science +1205.1735 Probability +1206.2248 Learning +1206.6527 Cosmology and Nongalactic Astrophysics +1210.7013 Probability +1211.4795 Information Theory +1301.5085 Instrumentation and Detectors +1302.1513 Phenomenology +1303.3278 Chemical Physics +1304.4036 Group Theory +1305.2487 Exactly Solvable and Integrable Systems +1307.5741 Probability +1309.1262 Statistics Theory +1309.4433 Mesoscale and Nanoscale Physics +1310.4633 Physics and Society +1311.0913 Computer Science and Game Theory +1312.5686 Computational Complexity +1401.6595 Applications +1402.6011 Combinatorics +1404.1258 Group Theory +1404.1351 Pricing of Securities +1405.4523 Cosmology and Nongalactic Astrophysics +1405.7801 Economics +1406.0297 Optics +1407.0545 Materials Science +1407.3139 Algebraic Geometry +1408.3889 Numerical Analysis +1409.5925 Analysis of PDEs +1409.6873 Logic in Computer Science +1409.7358 Chemical Physics +1409.7601 Algebraic Geometry +1410.1630 Applications +1410.2455 Machine Learning +1410.4652 Complex Variables +1410.6370 +1410.7719 Optimization and Control +1410.7811 Theory +1411.1622 Strongly Correlated Electrons +1411.3697 Representation Theory +1411.4082 Representation Theory +1411.4558 Strongly Correlated Electrons +1411.4788 Functional Analysis +1411.5051 Representation Theory +1412.0393 Numerical Analysis +1412.4007 +1412.5578 Materials Science +1412.6022 Analysis of PDEs +1501.01615 +1501.02374 Populations and Evolution +1501.02663 Methodology +1501.03560 Mesoscale and Nanoscale Physics +1501.05876 Computation +1501.07550 Combinatorics +1502.00350 Mesoscale and Nanoscale Physics +1502.00682 Number Theory +1502.00833 Materials Science +1502.01901 Dynamical Systems +1502.03395 Superconductivity +1502.03533 Materials Science +1503.01963 Materials Science +1503.02057 Dynamical Systems +1503.07324 Atomic Physics +1504.03166 Numerical Analysis +1504.03605 Probability +1504.05969 Algebraic Geometry +1505.01211 Mesoscale and Nanoscale Physics +1505.02411 History and Overview +1505.03156 Phenomenology +1505.05221 Physics Education +1505.06912 Probability +1505.07228 Computation +1506.00967 Graphics +1506.01370 Probability +1506.02025 Computer Vision and Pattern Recognition +1506.04433 Fluid Dynamics +1506.04671 Quantum Algebra +1506.05195 Strongly Correlated Electrons +1506.06395 Physics and Society +1506.07223 +1507.02855 Phenomenology +1507.04074 Combinatorics +1507.04625 Optics +1507.05269 +1507.06402 +1507.06764 Computational Physics +1507.08591 Chemical Physics +1507.08824 Materials Science +1507.08985 Number Theory +1508.01835 Numerical Analysis +1508.02718 Phenomenology +1508.04907 Distributed, Parallel, and Cluster Computing +1508.05860 Functional Analysis +1508.06115 Applications +1509.01638 Populations and Evolution +1509.02877 Systems and Control +1509.02933 Mesoscale and Nanoscale Physics +1509.04279 +1509.04686 Probability +1509.05223 Mesoscale and Nanoscale Physics +1509.05841 Phenomenology +1509.05937 Robotics +1509.06055 Quantitative Methods +1509.06666 Optics +1509.08987 High Energy Astrophysical Phenomena +1509.09010 +1510.00381 Chemical Physics +1510.01535 Fluid Dynamics +1510.01784 Information Retrieval +1510.01813 Materials Science +1510.02854 Fluid Dynamics +1510.03020 Mesoscale and Nanoscale Physics +1510.04640 Number Theory +1510.04936 Accelerator Physics +1510.05067 Learning +1510.06992 Atomic Physics +1510.07025 Machine Learning +1510.07226 Number Theory +1510.07646 High Energy Astrophysical Phenomena +1510.08295 Biological Physics +1510.08687 Geometric Topology +1511.00490 +1511.00830 Machine Learning +1511.02239 Cosmology and Nongalactic Astrophysics +1511.02503 Computer Vision and Pattern Recognition +1511.02741 +1511.03260 Machine Learning +1511.03666 Theory +1511.04181 Strongly Correlated Electrons +1511.05308 +1511.05381 Optics +1511.05873 +1511.05880 +1511.06764 Phenomenology +1511.07595 Optimization and Control +1511.07912 Algebraic Geometry +1511.08134 Metric Geometry +1511.08205 Artificial Intelligence +1511.08362 +1511.08451 Metric Geometry +1511.09301 Combinatorics +1512.02218 Phenomenology +1512.02761 Optics +1512.05323 Probability +1512.06983 +1512.07317 Quantum Gases +1512.07648 Optics +1512.08637 Representation Theory +1512.09194 Computer Vision and Pattern Recognition +1601.00133 Algebraic Geometry +1601.01554 +1601.01621 General Mathematics +1601.01911 Numerical Analysis +1601.02262 Numerical Analysis +1601.02593 Category Theory +1601.02823 Mesoscale and Nanoscale Physics +1601.03558 Superconductivity +1601.04246 +1601.04854 Earth and Planetary Astrophysics +1601.05750 Classical Analysis and ODEs +1601.05907 Differential Geometry +1601.06023 Information Theory +1601.06498 Group Theory +1601.06517 Programming Languages +1601.07300 Programming Languages +1601.07520 Algebraic Topology +1601.07648 Computer Vision and Pattern Recognition +1601.07862 Computers and Society +1601.08011 Networking and Internet Architecture +1602.00428 Experiment +1602.00507 Strongly Correlated Electrons +1602.00955 Computer Vision and Pattern Recognition +1602.01070 Mathematical Finance +1602.01431 Number Theory +1602.01463 Analysis of PDEs +1602.01464 Computer Vision and Pattern Recognition +1602.01471 Superconductivity +1602.01478 Algebraic Geometry +1602.01480 Instrumentation and Methods for Astrophysics +1602.01486 Classical Analysis and ODEs +1602.01490 Dynamical Systems +1602.01495 Differential Geometry +1602.01496 Classical Analysis and ODEs +1602.01497 History and Philosophy of Physics +1602.01498 Classical Analysis and ODEs +1602.01505 Probability +1602.01506 Optimization and Control +1602.01507 Number Theory +1602.01510 Neural and Evolutionary Computing +1602.01511 Information Theory +1602.01513 Classical Analysis and ODEs +1602.01514 Algebraic Geometry +1602.01516 Systems and Control +1602.01520 Systems and Control +1602.01522 Methodology +1602.01531 Differential Geometry +1602.01532 Information Theory +1602.01533 Operator Algebras +1602.01535 Algebraic Geometry +1602.01536 Experiment +1602.01538 +1602.01544 Materials Science +1602.01545 Information Theory +1602.01546 Materials Science +1602.01551 Number Theory +1602.01552 Solar and Stellar Astrophysics +1602.01553 Number Theory +1602.01554 +1602.01555 Astrophysics of Galaxies +1602.01556 Materials Science +1602.01557 Learning +1602.01558 Geometric Topology +1602.01560 Information Theory +1602.01561 Combinatorics +1602.01567 Networking and Internet Architecture +1602.01571 Spectral Theory +1602.01574 Strongly Correlated Electrons +1602.01576 Computation and Language +1602.01580 Learning +1602.01583 Instrumentation and Detectors +1602.01584 +1602.01585 Artificial Intelligence +1602.01591 Number Theory +1602.01593 Analysis of PDEs +1602.01597 Probability +1602.01598 Numerical Analysis +1602.01603 Group Theory +1602.01604 Pattern Formation and Solitons +1602.01605 Instrumentation and Methods for Astrophysics +1602.01606 Probability +1602.01611 Chemical Physics +1602.01613 Probability +1602.01617 Combinatorics +1602.01618 Operator Algebras +1602.01619 Networking and Internet Architecture +1602.01620 Networking and Internet Architecture +1602.01623 Networking and Internet Architecture +1602.01625 Computer Vision and Pattern Recognition +1602.01629 Networking and Internet Architecture +1602.01634 Classical Analysis and ODEs +1602.01635 Computation and Language +1602.01637 Algebraic Geometry +1602.01638 Mesoscale and Nanoscale Physics +1602.01639 Mesoscale and Nanoscale Physics +1602.01641 Discrete Mathematics +1602.01643 Solar and Stellar Astrophysics +1602.01647 Computational Physics +1602.01653 Mesoscale and Nanoscale Physics +1602.01654 High Energy Astrophysical Phenomena +1602.01656 Functional Analysis +1602.01657 Probability +1602.01658 Numerical Analysis +1602.01659 Data Structures and Algorithms +1602.01661 Group Theory +1602.01662 Materials Science +1602.01663 Mesoscale and Nanoscale Physics +1602.01664 Earth and Planetary Astrophysics +1602.01665 Information Retrieval +1602.01670 Strongly Correlated Electrons +1602.01672 Populations and Evolution +1602.01675 Numerical Analysis +1602.01680 Computational Physics +1602.01683 High Energy Astrophysical Phenomena +1602.01684 Materials Science +1602.01687 Differential Geometry +1602.01689 Chemical Physics +1602.01692 +1602.01694 High Energy Astrophysical Phenomena +1602.01697 Combinatorics +1602.01703 Numerical Analysis +1602.01706 Number Theory +1602.01709 Materials Science +1602.01711 Learning +1602.01713 Solar and Stellar Astrophysics +1602.01715 +1602.01718 Artificial Intelligence +1602.01719 Plasma Physics +1602.01726 Soft Condensed Matter +1602.01727 Number Theory +1602.01728 Computer Vision and Pattern Recognition +1602.01729 Machine Learning +1602.01737 Optimization and Control +1602.01739 Computational Complexity +1602.01743 Quantitative Methods +1602.01748 Materials Science +1602.01750 Number Theory +1602.01751 Probability +1602.01752 General Physics +1602.01753 Logic +1602.01757 Solar and Stellar Astrophysics +1602.01759 Category Theory +1602.01770 Combinatorics +1602.01771 +1602.01775 +1602.01777 Data Structures and Algorithms +1602.01778 Tissues and Organs +1602.01780 Theory +1602.01781 Strongly Correlated Electrons +1602.01782 General Topology +1602.01789 Rings and Algebras +1602.01790 Mesoscale and Nanoscale Physics +1602.01799 Complex Variables +1602.01800 High Energy Astrophysical Phenomena +1602.01809 Fluid Dynamics +1602.01810 Soft Condensed Matter +1602.01811 Materials Science +1602.01817 Logic +1602.01818 Computer Vision and Pattern Recognition +1602.01819 Computational Complexity +1602.01820 Analysis of PDEs +1602.01821 Complex Variables +1602.01823 Analysis of PDEs +hep-th/0411047 Theory +math/0611830 Group Theory +0710.2079 Number Theory +0906.0290 History and Overview +0906.1934 Number Theory +0909.2808 Number Theory +0910.5177 Astrophysics of Galaxies +1008.1905 Number Theory +1008.3919 Dynamical Systems +1009.3560 Adaptation and Self-Organizing Systems +1010.4496 Complex Variables +1103.1109 Data Structures and Algorithms +1103.1979 Number Theory +1106.3654 Quantum Algebra +1106.6018 Solar and Stellar Astrophysics +1107.3516 Number Theory +1108.3364 Algebraic Geometry +1108.5462 Analysis of PDEs +1201.5331 Analysis of PDEs +1204.3076 Functional Analysis +1205.4456 Number Theory +1206.0178 K-Theory and Homology +1208.3505 Dynamical Systems +1208.3909 Algebraic Geometry +1210.2531 Mesoscale and Nanoscale Physics +1210.7736 Analysis of PDEs +1211.5994 Experiment +1212.5870 Classical Analysis and ODEs +1302.0061 Number Theory +1302.1748 Theory +1302.2537 General Physics +1302.6565 +1306.4564 Geometric Topology +1307.7490 Dynamical Systems +1308.1620 Combinatorics +1308.2046 Geometric Topology +1308.2048 Geometric Topology +1308.2419 History and Overview +1308.3934 Number Theory +1309.4421 Number Theory +1310.1154 Geometric Topology +1310.4045 Mesoscale and Nanoscale Physics +1310.5391 Algebraic Geometry +1311.7193 Algebraic Geometry +1312.1086 Materials Science +1312.5195 Operator Algebras +1312.5931 +1401.0704 Dynamical Systems +1401.0992 Dynamical Systems +1401.1749 Applications +1402.2886 Functional Analysis +1402.2901 Materials Science +1402.6032 Quantum Algebra +1403.1646 Analysis of PDEs +1403.1738 Optimization and Control +1404.1416 Representation Theory +1404.3187 Group Theory +1405.0162 Analysis of PDEs +1405.3013 Dynamical Systems +1405.3203 Solar and Stellar Astrophysics +1405.4409 Combinatorics +1405.5088 Geometric Topology +1405.5968 Solar and Stellar Astrophysics +1405.6431 Physics and Society +1405.7100 +1406.4595 +1406.7455 +1406.7815 +1407.1766 Fluid Dynamics +1407.3380 Operator Algebras +1407.3474 Information Theory +1407.4906 Superconductivity +1408.2125 Logic +1408.2239 Strongly Correlated Electrons +1408.4556 Instrumentation and Methods for Astrophysics +1408.5186 Analysis of PDEs +1409.0438 Quantum Algebra +1409.2158 Number Theory +1409.3121 Mesoscale and Nanoscale Physics +1409.4059 Classical Analysis and ODEs +1409.4146 +1409.5688 Combinatorics +1409.7341 Strongly Correlated Electrons +1410.0947 +1410.2323 Methodology +1410.2444 Classical Analysis and ODEs +1410.3017 Operator Algebras +1410.4589 Group Theory +1410.5227 Commutative Algebra +1410.7767 Operator Algebras +1410.7892 Number Theory +1410.8785 Number Theory +1411.0100 Digital Libraries +1411.5530 Dynamical Systems +1411.6295 Algebraic Geometry +1411.6790 Materials Science +1412.1820 Computation and Language +1412.2284 Quantum Algebra +1412.2532 Dynamical Systems +1412.4588 Number Theory +1412.8733 Algebraic Geometry +1501.00654 Strongly Correlated Electrons +1501.01290 +1501.02545 +1501.04421 Dynamical Systems +1501.05064 Materials Science +1501.07001 Group Theory +1502.00998 +1502.03541 Phenomenology +1502.04296 Accelerator Physics +1503.01033 Dynamical Systems +1503.01106 Instrumentation and Detectors +1503.01204 Biological Physics +1503.01270 Dynamical Systems +1503.01530 Accelerator Physics +1503.02139 Strongly Correlated Electrons +1503.02929 Biological Physics +1503.04335 Commutative Algebra +1503.04977 Group Theory +1503.05372 Instrumentation and Detectors +1503.05856 Medical Physics +1503.06183 Quantum Algebra +1503.06724 +1503.06856 Metric Geometry +1503.07136 Experiment +1503.07160 Networking and Internet Architecture +1503.07196 Number Theory +1503.07326 Accelerator Physics +1503.07389 Economics +1503.08005 Probability +1504.00294 Solar and Stellar Astrophysics +1504.01457 Instrumentation and Detectors +1504.01500 Accelerator Physics +1504.02187 Statistical Mechanics +1504.02271 Number Theory +1504.02570 Instrumentation and Detectors +1504.03902 Instrumentation and Detectors +1504.04553 Combinatorics +1504.04681 Instrumentation and Detectors +1504.05034 +1504.05444 Instrumentation and Detectors +1504.05649 Instrumentation and Detectors +1504.06300 Theory +1504.07155 Materials Science +1504.07219 +1504.07353 Atmospheric and Oceanic Physics +1504.07812 Mesoscale and Nanoscale Physics +1504.07998 Differential Geometry +1504.08277 Number Theory +1505.01221 Artificial Intelligence +1505.01270 Accelerator Physics +1505.01546 Instrumentation and Detectors +1505.02382 Materials Science +1505.03487 Operator Algebras +1505.04172 Commutative Algebra +1505.04942 +1505.05866 Geometric Topology +1505.07528 Accelerator Physics +1506.01817 Number Theory +1506.01888 Dynamical Systems +1506.02072 Strongly Correlated Electrons +1506.02370 Accelerator Physics +1506.03460 Rings and Algebras +1506.05227 Fluid Dynamics +1506.05476 Rings and Algebras +1506.06008 Instrumentation and Detectors +1506.06037 Materials Science +1506.06227 Theory +1506.06498 Mesoscale and Nanoscale Physics +1506.06789 Combinatorics +1506.06839 +1506.06851 Computational Physics +1506.06901 Classical Analysis and ODEs +1506.06923 Instrumentation and Detectors +1506.07179 Strongly Correlated Electrons +1506.07219 Instrumentation and Detectors +1506.07684 Optics +1506.07812 +1507.00153 Algebraic Topology +1507.00707 Accelerator Physics +1507.00901 +1507.01164 +1507.01540 Optimization and Control +1507.01711 Numerical Analysis +1507.01788 Statistical Mechanics +1507.02217 Accelerator Physics +1507.02367 Accelerator Physics +1507.03218 Materials Science +1507.03383 Instrumentation and Detectors +1507.03389 Instrumentation and Detectors +1507.03453 Experiment +1507.03595 Mesoscale and Nanoscale Physics +1507.04257 Cosmology and Nongalactic Astrophysics +1507.04371 Optimization and Control +1507.04430 Medical Physics +1507.04493 Cosmology and Nongalactic Astrophysics +1507.04882 Instrumentation and Methods for Astrophysics +1507.05038 Numerical Analysis +1507.05075 Classical Physics +1507.05113 Classical Analysis and ODEs +1507.05193 Theory +1507.05673 Combinatorics +1507.05691 Optimization and Control +1507.05740 Instrumentation and Detectors +1507.05914 Optimization and Control +1507.05957 Superconductivity +1507.06241 Theory +1507.06410 Theory +1507.06641 Classical Analysis and ODEs +1507.07621 Strongly Correlated Electrons +1507.07966 Computer Science and Game Theory +1507.08320 Fluid Dynamics +1507.08404 +1507.08547 Algebraic Geometry +1508.00396 Computational Geometry +1508.00735 Medical Physics +1508.01726 Number Theory +1508.02146 Atomic Physics +1508.02224 Astrophysics of Galaxies +1508.02484 Astrophysics of Galaxies +1508.02641 +1508.02918 Representation Theory +1508.03394 Instrumentation and Detectors +1508.03544 Phenomenology +1508.03707 Probability +1508.03749 +1508.04049 Optics +1508.04611 Strongly Correlated Electrons +1508.04701 Materials Science +1508.04715 Mesoscale and Nanoscale Physics +1508.04820 Superconductivity +1508.05139 Quantum Gases +1508.05618 Instrumentation and Detectors +1508.05692 Statistical Mechanics +1508.07087 Superconductivity +1508.07979 Classical Physics +1509.00267 Theory +1509.00442 Data Structures and Algorithms +1509.00780 +1509.01908 Theory +1509.02068 Functional Analysis +1509.02167 Astrophysics of Galaxies +1509.02229 Instrumentation and Detectors +1509.02968 Strongly Correlated Electrons +1509.03244 +1509.03457 +1509.04096 Phenomenology +1509.04248 Algebraic Geometry +1509.04871 High Energy Astrophysical Phenomena +1509.04980 Theory +1509.05309 Geometric Topology +1509.05399 Mesoscale and Nanoscale Physics +1509.05645 High Energy Astrophysical Phenomena +1509.05661 Analysis of PDEs +1509.05721 Strongly Correlated Electrons +1509.06149 Probability +1509.06443 Cosmology and Nongalactic Astrophysics +1509.06573 Number Theory +1509.07394 Optimization and Control +1509.07459 +1509.07984 Spectral Theory +1509.08673 Materials Science +1509.08965 +1509.09275 Accelerator Physics +1510.00467 Accelerator Physics +1510.00516 Instrumentation and Detectors +1510.00531 Probability +1510.00620 Networking and Internet Architecture +1510.00973 Classical Analysis and ODEs +1510.01538 Functional Analysis +1510.02140 +1510.02202 Mesoscale and Nanoscale Physics +1510.02273 Superconductivity +1510.02379 Phenomenology +1510.02781 Computer Vision and Pattern Recognition +1510.02891 Accelerator Physics +1510.03080 Mesoscale and Nanoscale Physics +1510.03407 Theory +1510.04338 Accelerator Physics +1510.04719 Solar and Stellar Astrophysics +1510.04739 Pattern Formation and Solitons +1510.04857 +1510.04898 Strongly Correlated Electrons +1510.05375 +1510.05489 Numerical Analysis +1510.05548 +1510.06005 Number Theory +1510.06899 Numerical Analysis +1510.07241 Mesoscale and Nanoscale Physics +1510.07259 Biological Physics +1510.07419 +1510.07896 Strongly Correlated Electrons +1510.08167 Instrumentation and Detectors +1510.08828 +1510.08886 Fluid Dynamics +1511.00625 Accelerator Physics +1511.01121 Plasma Physics +1511.01385 +1511.01979 Computational Physics +1511.02473 +1511.02673 Instrumentation and Methods for Astrophysics +1511.02714 Numerical Analysis +1511.03121 Phenomenology +1511.03454 Mesoscale and Nanoscale Physics +1511.03839 Accelerator Physics +1511.04038 +1511.04193 Plasma Physics +1511.04360 Plasma Physics +1511.04560 Mesoscale and Nanoscale Physics +1511.04573 Phenomenology +1511.05327 +1511.05497 Learning +1511.05723 +1511.05729 +1511.05874 Classical Analysis and ODEs +1511.05988 Fluid Dynamics +1511.06475 Atomic Physics +1511.06537 Plasma Physics +1511.06610 Materials Science +1511.06634 Quantum Gases +1511.06702 Computer Vision and Pattern Recognition +1511.07684 +1511.07824 Accelerator Physics +1511.07848 Materials Science +1511.07892 Mesoscale and Nanoscale Physics +1511.08001 Superconductivity +1511.08107 Accelerator Physics +1511.08155 Spectral Theory +1511.08295 Lattice +1511.08377 Accelerator Physics +1511.08763 Instrumentation and Detectors +1511.09032 Plasma Physics +1511.09457 Phenomenology +1512.00012 High Energy Astrophysical Phenomena +1512.00015 Astrophysics of Galaxies +1512.00072 Cosmology and Nongalactic Astrophysics +1512.00083 Combinatorics +1512.00109 +1512.00361 Group Theory +1512.00392 Mesoscale and Nanoscale Physics +1512.01209 Analysis of PDEs +1512.01264 High Energy Astrophysical Phenomena +1512.01331 Quantum Gases +1512.01547 Strongly Correlated Electrons +1512.01735 +1512.02398 Strongly Correlated Electrons +1512.03061 Theory +1512.03076 Analysis of PDEs +1512.03442 High Energy Astrophysical Phenomena +1512.03570 Rings and Algebras +1512.03940 Theory +1512.03996 Atomic Physics +1512.04045 Fluid Dynamics +1512.04149 Phenomenology +1512.04162 Populations and Evolution +1512.04494 +1512.04745 Materials Science +1512.05113 Group Theory +1512.05123 +1512.05235 Plasma Physics +1512.05248 Instrumentation and Methods for Astrophysics +1512.05310 Mesoscale and Nanoscale Physics +1512.05376 Theory +1512.05498 Accelerator Physics +1512.05504 Computer Science and Game Theory +1512.05660 Atomic Physics +1512.05731 Phenomenology +1512.05743 +1512.05781 Phenomenology +1512.07231 Number Theory +1512.07476 +1512.07480 Lattice +1512.07834 +1512.08024 Accelerator Physics +1512.08076 Phenomenology +1512.08232 Optics +1512.08308 Medical Physics +1512.08376 +1512.08386 Phenomenology +1512.08727 Phenomenology +1512.08777 Phenomenology +1512.08928 Phenomenology +1512.08977 Cosmology and Nongalactic Astrophysics +1512.08989 +1512.09147 Phenomenology +1601.00141 Digital Libraries +1601.00304 Materials Science +1601.00523 Soft Condensed Matter +1601.00561 Materials Science +1601.00678 Theory +1601.01369 Optics +1601.01383 Mesoscale and Nanoscale Physics +1601.01485 Plasma Physics +1601.01854 Mesoscale and Nanoscale Physics +1601.02102 Classical Physics +1601.02350 +1601.02356 +1601.02382 Atomic Physics +1601.02625 High Energy Astrophysical Phenomena +1601.02728 Theory +1601.02749 Atomic Physics +1601.02808 Physics and Society +1601.02850 +1601.02879 Statistical Mechanics +1601.02922 +1601.03529 Fluid Dynamics +1601.03658 +1601.03877 Solar and Stellar Astrophysics +1601.04350 Materials Science +1601.04376 Materials Science +1601.04379 Atomic Physics +1601.04472 Phenomenology +1601.04482 Numerical Analysis +1601.04502 +1601.04633 Computational Physics +1601.04643 Computational Physics +1601.04646 Optics +1601.04934 Theory +1601.05513 +1601.06073 Mesoscale and Nanoscale Physics +1601.06508 Accelerator Physics +1601.06624 +1601.06930 Quantitative Methods +1601.07208 Phenomenology +1601.07367 Mesoscale and Nanoscale Physics +1601.07425 Superconductivity +1601.07561 Theory +1601.07681 Solar and Stellar Astrophysics +1601.07808 +1601.07849 High Energy Astrophysical Phenomena +1602.00004 Phenomenology +1602.00006 Cosmology and Nongalactic Astrophysics +1602.00037 Fluid Dynamics +1602.00118 Mesoscale and Nanoscale Physics +1602.00119 Analysis of PDEs +1602.00130 Theory +1602.00152 Geophysics +1602.00444 Cell Behavior +1602.00470 Statistical Mechanics +1602.00680 Phenomenology +1602.00814 Computational Physics +1602.00971 Materials Science +1602.01209 Theory +1602.01257 Atomic Physics +1602.01371 Probability +1602.01372 Phenomenology +1602.01375 Theory +1602.01434 +1602.01539 Strongly Correlated Electrons +1602.01566 High Energy Astrophysical Phenomena +1602.01682 Theory +1602.01861 +1602.01997 +1602.02160 Astrophysics of Galaxies +1602.02193 Soft Condensed Matter +1602.02353 Mesoscale and Nanoscale Physics +1602.02420 Superconductivity +1602.02498 Strongly Correlated Electrons +1602.02565 +1602.02590 Numerical Analysis +1602.02640 +1602.02696 Statistical Mechanics +1602.02926 Mesoscale and Nanoscale Physics +1602.03036 High Energy Astrophysical Phenomena +1602.03176 +1602.03241 +1602.03294 Optics +1602.03561 Soft Condensed Matter +1602.03834 Digital Libraries +1602.03913 Materials Science +1602.04235 Biomolecules +1602.04271 Phenomenology +1602.04293 Astrophysics of Galaxies +1602.04429 Numerical Analysis +1602.04452 +1602.04648 Data Analysis, Statistics and Probability +1602.04656 Mathematical Finance +1602.04670 Phenomenology +1602.04764 +1602.04794 Astrophysics of Galaxies +1602.04965 Accelerator Physics +1602.05031 Mesoscale and Nanoscale Physics +1602.05150 Computational Complexity +1602.05212 Phenomenology +1602.05306 Mesoscale and Nanoscale Physics +1602.05475 +1602.05498 Physics and Society +1602.05552 Materials Science +1602.05615 Chemical Physics +1602.05810 Atomic Physics +1602.05812 Optics +1602.06016 Earth and Planetary Astrophysics +1602.06247 Quantum Gases +1602.06261 +1602.06272 Mesoscale and Nanoscale Physics +1602.06377 Atomic Physics +1602.06547 Soft Condensed Matter +1602.06757 +1602.06907 High Energy Astrophysical Phenomena +1602.06923 Mesoscale and Nanoscale Physics +1602.07096 Experiment +1602.07196 +1602.07300 Economics +1602.07493 +1602.07497 High Energy Astrophysical Phenomena +1602.07659 Mesoscale and Nanoscale Physics +1602.07895 Mesoscale and Nanoscale Physics +1602.08091 Mesoscale and Nanoscale Physics +1602.08094 Soft Condensed Matter +1602.08105 Phenomenology +1602.08205 Data Analysis, Statistics and Probability +1602.08443 Mesoscale and Nanoscale Physics +1602.08501 High Energy Astrophysical Phenomena +1602.08555 Materials Science +1602.08632 Chaotic Dynamics +1602.08803 Soft Condensed Matter +1602.08831 Soft Condensed Matter +1602.08865 +1602.08893 Soft Condensed Matter +1602.08921 Mesoscale and Nanoscale Physics +1602.08935 Materials Science +1602.08947 Soft Condensed Matter +1603.00008 Instrumentation and Detectors +1603.00249 High Energy Astrophysical Phenomena +1603.00533 +1603.00688 Plasma Physics +1603.00842 Adaptation and Self-Organizing Systems +1603.00868 Phenomenology +1603.01127 Materials Science +1603.01154 Theory +1603.01195 Experiment +1603.01223 Instrumentation and Methods for Astrophysics +1603.01343 Statistical Mechanics +1603.01361 Strongly Correlated Electrons +1603.01380 Phenomenology +1603.01608 Cosmology and Nongalactic Astrophysics +1603.01653 Instrumentation and Detectors +1603.01674 Mesoscale and Nanoscale Physics +1603.01683 Soft Condensed Matter +1603.01856 +1603.01992 Mesoscale and Nanoscale Physics +1603.02035 Mesoscale and Nanoscale Physics +1603.02203 Phenomenology +1603.02537 Computational Physics +1603.02591 Materials Science +1603.02673 Geometric Topology +1603.02755 +1603.02772 Robotics +1603.02904 Instrumentation and Detectors +1603.02974 Phenomenology +1603.02980 Multimedia +1603.03035 Cosmology and Nongalactic Astrophysics +1603.03049 Phenomenology +1603.03326 Earth and Planetary Astrophysics +1603.03428 Other Condensed Matter +1603.03489 Optics +1603.03529 Instrumentation and Detectors +1603.03576 Mesoscale and Nanoscale Physics +1603.03601 Mesoscale and Nanoscale Physics +1603.03864 Cosmology and Nongalactic Astrophysics +1603.03967 Plasma Physics +1603.04072 Materials Science +1603.04101 Theory +1603.04213 Theory +1603.04226 Cosmology and Nongalactic Astrophysics +1603.04607 Adaptation and Self-Organizing Systems +1603.04648 Statistical Mechanics +1603.04817 Accelerator Physics +1603.04850 High Energy Astrophysical Phenomena +1603.04932 Dynamical Systems +1603.04993 Phenomenology +1603.05023 Statistical Mechanics +1603.05059 Social and Information Networks +1603.05206 Pattern Formation and Solitons +1603.05477 +1603.05551 Theory +1603.05588 Phenomenology +1603.05597 Chemical Physics +1603.05612 Statistical Mechanics +1603.05779 Mesoscale and Nanoscale Physics +1603.05816 Atomic Physics +1603.05879 Mesoscale and Nanoscale Physics +1603.05961 Plasma Physics +1603.05972 Statistical Mechanics +1603.06074 Mesoscale and Nanoscale Physics +1603.06095 Strongly Correlated Electrons +1603.06118 Soft Condensed Matter +1603.06314 Disordered Systems and Neural Networks +1603.06316 Phenomenology +1603.06326 Phenomenology +1603.06382 +1603.06534 +1603.06566 Phenomenology +1603.07122 Statistical Mechanics +1603.07220 Combinatorics +1603.07360 +1603.07507 Plasma Physics +1603.07592 Superconductivity +1603.07597 Earth and Planetary Astrophysics +1603.07741 Mesoscale and Nanoscale Physics +1603.07742 +1603.07776 Instrumentation and Detectors +1603.07798 Instrumentation and Detectors +1603.07882 Materials Science +1603.08032 Atomic Physics +1603.08056 +1603.08087 +1603.08130 Plasma Physics +1603.08313 Theory +1603.08411 +1603.08886 Astrophysics of Galaxies +1603.08994 Theory +1603.09108 Theory +1603.09115 Soft Condensed Matter +1603.09306 Instrumentation and Methods for Astrophysics +1603.09319 Physics and Society +1603.09505 Phenomenology +1603.09662 Mesoscale and Nanoscale Physics +1604.00108 Materials Science +1604.00131 High Energy Astrophysical Phenomena +1604.00329 +1604.00574 Optics +1604.00583 Numerical Analysis +1604.00601 Mesoscale and Nanoscale Physics +1604.00639 Plasma Physics +1604.00810 Theory +1604.00873 Physics and Society +1604.00998 Phenomenology +1604.01148 Phenomenology +1604.01212 +1604.01309 +1604.01489 Cosmology and Nongalactic Astrophysics +1604.01905 Mesoscale and Nanoscale Physics +1604.01920 Materials Science +1604.02054 Soft Condensed Matter +1604.02189 +1604.02207 Astrophysics of Galaxies +1604.02351 Chemical Physics +1604.02384 Theory +1604.02592 Pattern Formation and Solitons +1604.02689 +1604.02770 Materials Science +1604.02859 Plasma Physics +1604.02866 Cosmology and Nongalactic Astrophysics +1604.02981 Experiment +1604.03253 Theory +1604.03281 Materials Science +1604.03323 Mesoscale and Nanoscale Physics +1604.03445 High Energy Astrophysical Phenomena +1604.03495 Statistical Mechanics +1604.03522 General Finance +1604.03528 Mesoscale and Nanoscale Physics +1604.03643 Accelerator Physics +1604.03644 Theory +1604.03646 +1604.03674 Soft Condensed Matter +1604.03828 +1604.03985 Strongly Correlated Electrons +1604.04288 High Energy Astrophysical Phenomena +1604.04301 Instrumentation and Detectors +1604.04662 Theory +1604.04770 +1604.04836 Statistical Mechanics +1604.04923 Optics +1604.04972 Mesoscale and Nanoscale Physics +1604.05002 Phenomenology +1604.05092 Theory +1604.05115 Materials Science +1604.05205 Instrumentation and Methods for Astrophysics +1604.05693 Logic +1604.05712 Mesoscale and Nanoscale Physics +1604.05723 Astrophysics of Galaxies +1604.05818 Phenomenology +1604.05837 Space Physics +1604.05918 Mesoscale and Nanoscale Physics +1604.06114 Solar and Stellar Astrophysics +1604.06179 Mesoscale and Nanoscale Physics +1604.06267 Phenomenology +1604.06297 +1604.06334 +1604.06456 Solar and Stellar Astrophysics +1604.06532 Instrumentation and Methods for Astrophysics +1604.06696 Plasma Physics +1604.06756 Solar and Stellar Astrophysics +1604.06825 Superconductivity +1604.06841 Mesoscale and Nanoscale Physics +1604.07024 Disordered Systems and Neural Networks +1604.07061 Phenomenology +1604.07146 +1604.07262 Mesoscale and Nanoscale Physics +1604.07598 Phenomenology +1604.07697 +1604.07721 Earth and Planetary Astrophysics +1604.07941 Phenomenology +1604.08022 High Energy Astrophysical Phenomena +1604.08051 Disordered Systems and Neural Networks +1604.08060 Instrumentation and Detectors +1604.08110 Quantum Gases +1604.08588 Phenomenology +1604.08653 Theory +1604.08678 Optics +1604.08776 Instrumentation and Detectors +1604.08782 Mesoscale and Nanoscale Physics +1604.08907 Experiment +1605.00005 Theory +1605.00077 Theory +1605.00209 Cosmology and Nongalactic Astrophysics +1605.00376 Statistical Mechanics +1605.00418 Instrumentation and Detectors +1605.00458 Quantum Gases +1605.00485 Chemical Physics +1605.00516 Materials Science +1605.00729 Quantum Gases +1605.00808 Soft Condensed Matter +1605.00851 Chemical Physics +1605.01044 Instrumentation and Detectors +1605.01069 Pattern Formation and Solitons +1605.01093 Theory +1605.01150 Statistical Mechanics +1605.01181 Theory +1605.01273 +1605.01378 Physics and Society +1605.01383 +1605.01439 Astrophysics of Galaxies +1605.01637 Statistical Mechanics +1605.01780 Instrumentation and Detectors +1605.02074 Earth and Planetary Astrophysics +1605.02385 Astrophysics of Galaxies +1605.02462 Materials Science +1605.02610 Theory +1605.02638 Other Condensed Matter +1605.02648 +1605.02739 Phenomenology +1605.02746 Astrophysics of Galaxies +1605.02766 Learning +1605.02771 Earth and Planetary Astrophysics +1605.02773 Astrophysics of Galaxies +1605.02814 Mesoscale and Nanoscale Physics +1605.02844 +1605.02857 Mesoscale and Nanoscale Physics +1605.03077 Solar and Stellar Astrophysics +1605.03258 Soft Condensed Matter +1605.03681 Materials Science +1605.03703 Solar and Stellar Astrophysics +1605.03765 Mesoscale and Nanoscale Physics +1605.03788 Quantum Gases +1605.03856 Atomic Physics +1605.03917 Astrophysics of Galaxies +1605.03940 Solar and Stellar Astrophysics +1605.03944 Experiment +1605.03966 High Energy Astrophysical Phenomena +1605.04047 Solar and Stellar Astrophysics +1605.04052 Theory +1605.04216 High Energy Astrophysical Phenomena +1605.04236 Atomic Physics +1605.04308 Phenomenology +1605.04309 Astrophysics of Galaxies +1605.04660 High Energy Astrophysical Phenomena +1605.04802 Earth and Planetary Astrophysics +1605.04804 Phenomenology +1605.04902 Earth and Planetary Astrophysics +1605.04938 General Finance +1605.05093 Earth and Planetary Astrophysics +1605.05116 Phenomenology +1605.05160 Astrophysics of Galaxies +1605.05184 Superconductivity +1605.05230 Atomic Physics +1605.05304 Theory +1605.05373 Cosmology and Nongalactic Astrophysics +1605.05407 Superconductivity +1605.05483 Theory +1605.05624 Statistical Mechanics +1605.05675 Chaotic Dynamics +1605.05699 Chemical Physics +1605.05732 Astrophysics of Galaxies +1605.05739 Mesoscale and Nanoscale Physics +1605.05740 Solar and Stellar Astrophysics +1605.05821 Astrophysics of Galaxies +1605.05840 Phenomenology +1605.06136 Astrophysics of Galaxies +1605.06218 Fluid Dynamics +1605.06239 Astrophysics of Galaxies +1605.06512 Astrophysics of Galaxies +1605.06614 Soft Condensed Matter +1605.07003 Computer Vision and Pattern Recognition +1605.07096 Earth and Planetary Astrophysics +1605.07138 Mesoscale and Nanoscale Physics +1605.07176 Astrophysics of Galaxies +1605.07271 High Energy Astrophysical Phenomena +1605.07351 Materials Science +1605.07355 Phenomenology +1605.07536 Materials Science +1605.07691 Earth and Planetary Astrophysics +1605.07724 Phenomenology +1605.07885 +1605.07899 Mesoscale and Nanoscale Physics +1605.07957 Atomic Physics +1605.07970 Instrumentation and Detectors +1605.08186 Phenomenology +1605.08213 Strongly Correlated Electrons +1605.08216 Phenomenology +1605.08229 Solar and Stellar Astrophysics +1605.08406 Astrophysics of Galaxies +1605.08620 Earth and Planetary Astrophysics +1605.08641 +1605.08662 Instrumentation and Methods for Astrophysics +1605.08684 Theory +1605.08690 Physics and Society +1605.08871 Mesoscale and Nanoscale Physics +1605.08901 +1605.09015 Solar and Stellar Astrophysics +1605.09224 Mesoscale and Nanoscale Physics +1605.09315 Solar and Stellar Astrophysics +1605.09482 Theory +1605.09642 High Energy Astrophysical Phenomena +1606.00115 Numerical Analysis +1606.00270 High Energy Astrophysical Phenomena +1606.00302 Superconductivity +1606.00378 Phenomenology +1606.00443 Astrophysics of Galaxies +1606.00565 Earth and Planetary Astrophysics +1606.00644 Superconductivity +1606.00677 +1606.00733 +1606.00763 Materials Science +1606.00990 Solar and Stellar Astrophysics +1606.01007 Analysis of PDEs +1606.01022 Theory +1606.01134 Solar and Stellar Astrophysics +1606.01144 Solar and Stellar Astrophysics +1606.01279 +1606.01816 High Energy Astrophysical Phenomena +1606.01826 Mesoscale and Nanoscale Physics +1606.01895 Earth and Planetary Astrophysics +1606.01923 High Energy Astrophysical Phenomena +1606.01930 Databases +1606.02152 +1606.02273 Theory +1606.02743 Astrophysics of Galaxies +1606.02859 Molecular Networks +1606.02936 Experiment +1606.02945 Theory +1606.02951 Theory +1606.03016 Theory +1606.03246 Soft Condensed Matter +1606.03271 +1606.03283 Other Condensed Matter +1606.03375 Cosmology and Nongalactic Astrophysics +1606.03438 Theory +1606.03448 Instrumentation and Detectors +1606.03856 Mesoscale and Nanoscale Physics +1606.03876 High Energy Astrophysical Phenomena +1606.03900 +1606.03931 Probability +1606.04019 +1606.04112 Cosmology and Nongalactic Astrophysics +1606.04243 Strongly Correlated Electrons +1606.04330 Earth and Planetary Astrophysics +1606.04638 Phenomenology +1606.04706 Strongly Correlated Electrons +1606.04840 Earth and Planetary Astrophysics +1606.04879 Theory +1606.04941 High Energy Astrophysical Phenomena +1606.05108 Atmospheric and Oceanic Physics +1606.05138 Astrophysics of Galaxies +1606.05227 Statistical Mechanics +1606.05440 Solar and Stellar Astrophysics +1606.05645 Instrumentation and Detectors +1606.05748 +1606.05949 Astrophysics of Galaxies +1606.05953 Astrophysics of Galaxies +1606.06181 Soft Condensed Matter +1606.06182 Astrophysics of Galaxies +1606.06185 Astrophysics of Galaxies +1606.06304 Astrophysics of Galaxies +1606.06458 Fluid Dynamics +1606.06485 Computational Physics +1606.06498 Chemical Physics +1606.06506 Materials Science +1606.06713 Chemical Physics +1606.06762 Instrumentation and Detectors +1606.06847 Solar and Stellar Astrophysics +1606.06905 Computation and Language +1606.06955 Materials Science +1606.06978 Atomic Physics +1606.07147 High Energy Astrophysical Phenomena +1606.07236 Combinatorics +1606.07281 +1606.07323 Phenomenology +1606.07344 +1606.07397 High Energy Astrophysical Phenomena +1606.07599 Solar and Stellar Astrophysics +1606.07669 Chaotic Dynamics +1606.07811 High Energy Astrophysical Phenomena +1606.07900 +1606.07923 Cosmology and Nongalactic Astrophysics +1606.07974 Materials Science +1606.08147 Superconductivity +1606.08236 +1606.08336 Phenomenology +1606.08442 Astrophysics of Galaxies +1606.08461 Earth and Planetary Astrophysics +1606.08477 Astrophysics of Galaxies +1606.08537 High Energy Astrophysical Phenomena +1606.08632 Statistical Mechanics +1606.08664 Plasma Physics +1606.08676 Plasma Physics +1606.08778 Astrophysics of Galaxies +1606.08800 Quantum Gases +1606.08858 Astrophysics of Galaxies +1606.08899 Phenomenology +1606.09179 Solar and Stellar Astrophysics +1606.09363 Cosmology and Nongalactic Astrophysics +1606.09386 Soft Condensed Matter +1606.09416 Strongly Correlated Electrons +1606.09536 High Energy Astrophysical Phenomena +1606.09556 General Physics +1606.09592 Phenomenology +1607.00074 High Energy Astrophysical Phenomena +1607.00143 Atomic Physics +1607.00161 Solar and Stellar Astrophysics +1607.00187 +1607.00201 Chaotic Dynamics +1607.00206 Probability +1607.00230 Materials Science +1607.00258 Fluid Dynamics +1607.00404 Phenomenology +1607.00450 Optics +1607.00471 +1607.00551 Plasma Physics +1607.00632 Strongly Correlated Electrons +1607.00732 High Energy Astrophysical Phenomena +1607.00792 Optics +1607.01019 Astrophysics of Galaxies +1607.01054 Solar and Stellar Astrophysics +1607.01093 Strongly Correlated Electrons +1607.01175 Astrophysics of Galaxies +1607.01238 Superconductivity +1607.01329 Solar and Stellar Astrophysics +1607.01397 Earth and Planetary Astrophysics +1607.01427 Dynamical Systems +1607.01514 Adaptation and Self-Organizing Systems +1607.01543 High Energy Astrophysical Phenomena +1607.01737 High Energy Astrophysical Phenomena +1607.01953 Astrophysics of Galaxies +1607.01973 Combinatorics +1607.02150 Cosmology and Nongalactic Astrophysics +1607.02519 High Energy Astrophysical Phenomena +1607.02807 Superconductivity +1607.02891 +1607.03375 Earth and Planetary Astrophysics +1607.03516 Computer Vision and Pattern Recognition +1607.03595 Astrophysics of Galaxies +1607.03636 Astrophysics of Galaxies +1607.03695 Earth and Planetary Astrophysics +1607.03771 High Energy Astrophysical Phenomena +1607.03849 Learning +1607.03866 Data Structures and Algorithms +1607.03953 Strongly Correlated Electrons +1607.04121 +1607.04276 Phenomenology +1607.04351 Solar and Stellar Astrophysics +1607.04451 Social and Information Networks +1607.04792 Materials Science +1607.05124 Statistical Mechanics +1607.05211 Phenomenology +1607.05265 High Energy Astrophysical Phenomena +1607.06513 Optimization and Control +1607.07255 Soft Condensed Matter +1607.07297 Instrumentation and Detectors +1607.07408 Astrophysics of Galaxies +1607.07412 Dynamical Systems +1607.07836 +1607.08509 Materials Science +1607.08691 Learning +1607.08692 Computation and Language +1607.08778 +1607.08892 Phenomenology +1608.00040 +1608.00078 Solar and Stellar Astrophysics +1608.00151 Theory +1608.00153 Phenomenology +1608.00210 Solar and Stellar Astrophysics +1608.00265 Computer Vision and Pattern Recognition +1608.00268 Computer Vision and Pattern Recognition +1608.00270 Computer Vision and Pattern Recognition +1608.00273 Computer Vision and Pattern Recognition +1608.00274 Computer Vision and Pattern Recognition +1608.00277 Computer Vision and Pattern Recognition +1608.00279 Computer Vision and Pattern Recognition +1608.00297 Representation Theory +1608.00396 Solar and Stellar Astrophysics +1608.00398 Solar and Stellar Astrophysics +1608.00557 Optimization and Control +1608.00558 Classical Physics +1608.00563 Instrumentation and Detectors +1608.00564 Differential Geometry +1608.00567 Genomics +1608.00570 Computers and Society +1608.00571 Distributed, Parallel, and Cluster Computing +1608.00572 Networking and Internet Architecture +1608.00581 Mesoscale and Nanoscale Physics +1608.00591 +1608.00592 Logic +1608.00596 Instrumentation and Methods for Astrophysics +1608.00598 Optimization and Control +1608.00600 Geometric Topology +1608.00601 Classical Analysis and ODEs +1608.00604 Accelerator Physics +1608.00605 Superconductivity +1608.00606 Information Theory +1608.00607 Methodology +1608.00609 Robotics +1608.00610 Operator Algebras +1608.00611 Computer Vision and Pattern Recognition +1608.00612 Computation and Language +1608.00614 Strongly Correlated Electrons +1608.00615 Applications +1608.00616 Classical Physics +1608.00617 Group Theory +1608.00622 Numerical Analysis +1608.00623 Methodology +1608.00624 Statistics Theory +1608.00625 Soft Condensed Matter +1608.00627 Robotics +1608.00628 Probability +1608.00629 Methodology +1608.00630 Geophysics +1608.00632 Dynamical Systems +1608.00633 Computers and Society +1608.00634 Information Theory +1608.00635 Optimization and Control +1608.00636 Performance +1608.00639 General Topology +1608.00640 Optics +1608.00643 +1608.00644 Numerical Analysis +1608.00648 +1608.00649 Geometric Topology +1608.00652 Computer Science and Game Theory +1608.00653 Computer Science and Game Theory +1608.00654 Formal Languages and Automata Theory +1608.00655 Systems and Control +1608.00656 Distributed, Parallel, and Cluster Computing +1608.00657 Logic in Computer Science +1608.00658 Systems and Control +1608.00659 Classical Physics +1608.00660 +1608.00661 Information Theory +1608.00663 Optimization and Control +1608.00664 Differential Geometry +1608.00666 Lattice +1608.00667 Learning +1608.00668 Computer Vision and Pattern Recognition +1608.00669 Cryptography and Security +1608.00671 Soft Condensed Matter +1608.00673 Data Structures and Algorithms +1608.00676 Instrumentation and Methods for Astrophysics +1608.00681 +1608.00684 Social and Information Networks +1608.00687 Distributed, Parallel, and Cluster Computing +1608.00693 Classical Physics +1608.00696 Methodology +1608.00697 Symbolic Computation +1608.00701 +1608.00703 Algebraic Geometry +1608.00708 Social and Information Networks +1608.00710 Probability +1608.00712 Learning +1608.00713 Combinatorics +1608.00715 Combinatorics +1608.00718 Physics Education +1608.00719 +1608.00722 Information Theory +1608.00724 Data Structures and Algorithms +1608.00726 Distributed, Parallel, and Cluster Computing +1608.00727 Analysis of PDEs +1608.00728 Numerical Analysis +1608.00730 Artificial Intelligence +1608.00731 Logic in Computer Science +1608.00732 Logic +1608.00735 +1608.00736 Materials Science +1608.00737 Robotics +1608.00738 Methodology +1608.00739 +1608.00740 Number Theory +1608.00743 Information Theory +1608.00744 Atomic and Molecular Clusters +1608.00745 Instrumentation and Methods for Astrophysics +1608.00747 Combinatorics +1608.00749 Formal Languages and Automata Theory +1608.00751 Information Theory +1608.00752 Geometric Topology +1608.00753 Computer Vision and Pattern Recognition +1608.00755 Functional Analysis +1608.00757 Statistics Theory +1608.00758 Information Retrieval +1608.00759 Solar and Stellar Astrophysics +1608.00761 Analysis of PDEs +1608.00763 Physics and Society +1608.00764 Earth and Planetary Astrophysics +1608.00766 +1608.00767 Number Theory +1608.00769 Combinatorics +1608.00770 High Energy Astrophysical Phenomena +1608.00774 Group Theory +1608.00780 Algebraic Geometry +1608.00785 Computer Vision and Pattern Recognition +1608.00787 Programming Languages +1608.00788 Information Retrieval +1608.00789 Computation and Language +1608.00790 Complex Variables +1608.00792 Probability +1608.00793 Materials Science +1608.00794 Applications +1608.00797 Computer Vision and Pattern Recognition +1608.00798 Digital Libraries +1608.00800 Combinatorics +1608.00801 Classical Analysis and ODEs +1608.00803 Number Theory +1608.00807 Soft Condensed Matter +1608.00811 Exactly Solvable and Integrable Systems +1608.00812 Strongly Correlated Electrons +1608.00814 Probability +1608.00816 Programming Languages +1608.00817 General Physics +1608.00818 Methodology +1608.00821 Analysis of PDEs +1608.00822 Theory +1608.00831 Numerical Analysis +1608.00832 Probability +1608.00833 Pattern Formation and Solitons +1608.00834 Representation Theory +1608.00835 Cryptography and Security +1608.00836 Instrumentation and Detectors +1608.00839 Networking and Internet Architecture +1608.00840 Physics and Society +1608.00842 Learning +1608.00846 Algebraic Geometry +1608.00847 +1608.00848 Cryptography and Security +1608.00849 Cryptography and Security +1608.00853 Computer Vision and Pattern Recognition +1608.00854 Analysis of PDEs +1608.00855 Networking and Internet Architecture +1608.00856 General Mathematics +1608.00859 Computer Vision and Pattern Recognition +1608.00860 Learning +1608.00861 General Mathematics +1608.00865 Data Structures and Algorithms +1608.00866 Cryptography and Security +1608.00867 Logic in Computer Science +1608.00876 Machine Learning +1608.00878 General Finance +1608.00879 Experiment +1608.00880 Chemical Physics +1608.00885 Probability +1608.00887 Robotics +1608.00888 Solar and Stellar Astrophysics +1608.00891 Optimization and Control +1608.00893 Complex Variables +1608.00902 Theory +1608.00906 Numerical Analysis +1608.00909 +1608.00911 Computer Vision and Pattern Recognition +1608.00912 Statistical Mechanics +1608.00913 Networking and Internet Architecture +1608.00916 Materials Science +1608.00919 Experiment +1608.00921 Graphics +1608.00922 Algebraic Geometry +1608.00925 Multimedia +1608.00926 Algebraic Geometry +1608.00927 Pattern Formation and Solitons +1608.00929 Computation and Language +1608.00930 Tissues and Organs +1608.00933 Group Theory +1608.00934 Solar and Stellar Astrophysics +1608.00937 +1608.00938 Populations and Evolution +1608.00940 Theory +1608.00941 Information Theory +1608.00943 Solar and Stellar Astrophysics +1608.00944 Distributed, Parallel, and Cluster Computing +1608.00945 Computation +1608.00946 Materials Science +1608.00947 Fluid Dynamics +1608.00948 Methodology +1608.00949 Differential Geometry +1608.00950 Complex Variables +1608.00951 Algebraic Geometry +1608.00952 Combinatorics +1608.00953 Complex Variables +1608.00959 Group Theory +1608.00960 Geometric Topology +1608.00961 Differential Geometry +1608.00964 Statistical Mechanics +math/0606465 Number Theory +math/0606580 Number Theory +math/0611606 Number Theory +0906.2450 Number Theory +1004.3236 Logic in Computer Science +1008.4788 Accelerator Physics +1205.5761 +1208.2711 Experiment +1210.3615 +1211.2851 Logic +1211.6764 Mesoscale and Nanoscale Physics +1301.7156 Probability +1303.2209 Statistics Theory +1304.1675 Emerging Technologies +1306.2602 Probability +1306.6118 Number Theory +1307.2717 Computational Physics +1307.6921 Disordered Systems and Neural Networks +1307.7177 Physics Education +1308.0415 Mesoscale and Nanoscale Physics +1310.2285 Analysis of PDEs +1310.7525 +1311.4833 Machine Learning +1312.1415 Dynamical Systems +1312.2142 Dynamical Systems +1312.4218 +1312.7186 Statistics Theory +1401.0062 Statistics Theory +1402.0142 Statistics Theory +1402.4791 Probability +1403.7383 Algebraic Geometry +1405.3904 Methodology +1405.5882 Phenomenology +1406.6256 Differential Geometry +1407.0471 Statistics Theory +1407.7290 Phenomenology +1408.0904 Probability +1408.3769 Algebraic Topology +1409.3587 Algebraic Geometry +1409.4050 Probability +1409.7525 +1410.1380 Group Theory +1410.5716 Information Theory +1411.2098 Strongly Correlated Electrons +1411.2568 Phenomenology +1411.3047 Combinatorics +1411.5192 Analysis of PDEs +1411.7172 Differential Geometry +1411.7919 Methodology +1411.7984 Statistical Mechanics +1501.02195 +1501.04499 Probability +1501.04750 Combinatorics +1501.05139 Social and Information Networks +1501.06984 +1502.02711 Information Theory +1502.05185 Probability +1503.03272 Combinatorics +1503.04673 Emerging Technologies +1503.08963 Probability +1505.00056 Computational Physics +1505.03723 +1505.05910 Combinatorics +1506.02667 Mesoscale and Nanoscale Physics +1506.03418 +1506.04086 Theory +1506.07064 Quantum Gases +1506.07870 Probability +1507.01621 Analysis of PDEs +1507.02621 +1507.04264 +1507.05545 Numerical Analysis +1508.00512 Number Theory +1508.02041 Analysis of PDEs +1508.02565 +1508.06685 +1508.07908 Differential Geometry +1509.03488 Computation and Language +1509.03730 Applications +1509.05570 Methodology +1509.07045 Numerical Analysis +1509.07855 +1510.01121 Probability +1510.02387 Computation and Language +1510.03389 Dynamical Systems +1510.04708 +1510.05328 Neural and Evolutionary Computing +1510.05463 Algebraic Geometry +1510.08102 Commutative Algebra +1510.08986 Statistics Theory +1511.00028 Statistics Theory +1511.01923 Earth and Planetary Astrophysics +1511.02270 Statistics Theory +1511.02846 Cosmology and Nongalactic Astrophysics +1511.03771 Neural and Evolutionary Computing +1511.03888 Optics +1511.05268 Strongly Correlated Electrons +1511.06095 Mesoscale and Nanoscale Physics +1511.07358 Materials Science +1511.08102 Statistics Theory +1511.08254 +1511.09267 Mesoscale and Nanoscale Physics +1511.09327 Computational Geometry +1512.01610 Lattice +1512.02273 Quantum Gases +1512.03681 Differential Geometry +1512.03838 Optimization and Control +1512.04181 +1512.04480 Soft Condensed Matter +1512.05164 Computational Geometry +1512.05456 Materials Science +1512.06705 Disordered Systems and Neural Networks +1512.07040 Phenomenology +1512.07149 Other Condensed Matter +1512.07346 +1601.01322 Cosmology and Nongalactic Astrophysics +1601.01538 Chaotic Dynamics +1601.02517 +1601.03530 Optics +1601.04335 Mesoscale and Nanoscale Physics +1601.07907 Astrophysics of Galaxies +1602.03539 +1602.04260 Information Theory +1602.04296 +1602.04748 Algebraic Topology +1602.05557 Functional Analysis +1602.06194 Experiment +1602.06262 Adaptation and Self-Organizing Systems +1602.07122 Strongly Correlated Electrons +1602.07456 Quantum Algebra +1602.08539 Physics and Society +1603.00857 Dynamical Systems +1603.01563 +1603.03157 Phenomenology +1603.03437 Astrophysics of Galaxies +1603.03817 Probability +1603.04626 Databases +1603.04733 Machine Learning +1603.04935 Representation Theory +1603.08743 Discrete Mathematics +1603.08791 Experiment +1604.00788 Computation and Language +1604.02516 Analysis of PDEs +1604.02763 Operator Algebras +1604.03156 Differential Geometry +1604.05445 Astrophysics of Galaxies +1604.05481 Systems and Control +1604.06433 Computer Vision and Pattern Recognition +1604.07195 Superconductivity +1604.08086 Systems and Control +1604.08346 Lattice +1604.08494 Number Theory +1605.01474 Combinatorics +1605.01601 Accelerator Physics +1605.01873 Earth and Planetary Astrophysics +1605.04655 Computation and Language +1605.04800 Computation and Language +1605.04809 Computation and Language +1605.04970 +1605.06992 Data Structures and Algorithms +1605.07465 Physics and Society +1605.07500 Numerical Analysis +1605.07891 Information Retrieval +1605.07894 Differential Geometry +1605.08114 Representation Theory +1605.08813 Numerical Analysis +1605.09231 Optics +1606.00723 Dynamical Systems +1606.01924 Artificial Intelligence +1606.02260 Probability +1606.02272 Astrophysics of Galaxies +1606.02767 Artificial Intelligence +1606.02775 Algebraic Geometry +1606.02833 +1606.03209 Combinatorics +1606.03264 Mesoscale and Nanoscale Physics +1606.03686 Physics and Society +1606.04006 Logic in Computer Science +1606.04535 Computer Vision and Pattern Recognition +1606.04569 Probability +1606.05459 Algebraic Topology +1606.06080 Representation Theory +1606.06103 Number Theory +1606.06176 Analysis of PDEs +1606.06222 Networking and Internet Architecture +1606.06339 Networking and Internet Architecture +1606.06368 Learning +1606.06647 Accelerator Physics +1606.06790 Strongly Correlated Electrons +1606.06812 Social and Information Networks +1606.06907 Phenomenology +1606.07015 Computer Vision and Pattern Recognition +1606.07079 Networking and Internet Architecture +1606.07080 Cryptography and Security +1606.07081 Machine Learning +1606.07082 Phenomenology +1606.07088 Social and Information Networks +1606.07090 Phenomenology +1606.07091 Astrophysics of Galaxies +1606.07092 Other Computer Science +1606.07093 Numerical Analysis +1606.07094 Analysis of PDEs +1606.07095 Artificial Intelligence +1606.07096 High Energy Astrophysical Phenomena +1606.07098 +1606.07099 Networking and Internet Architecture +1606.07100 Quantum Gases +1606.07101 Materials Science +1606.07106 Probability +1606.07110 Instrumentation and Detectors +1606.07111 Distributed, Parallel, and Cluster Computing +1606.07112 Machine Learning +1606.07116 +1606.07118 Probability +1606.07119 Geometric Topology +1606.07124 Logic in Computer Science +1606.07125 Complex Variables +1606.07129 Machine Learning +1606.07132 +1606.07133 Analysis of PDEs +1606.07134 Instrumentation and Methods for Astrophysics +1606.07135 Rings and Algebras +1606.07136 Sound +1606.07137 Artificial Intelligence +1606.07141 Probability +1606.07145 Analysis of PDEs +1606.07149 Neural and Evolutionary Computing +1606.07153 Machine Learning +1606.07154 Artificial Intelligence +1606.07156 Instrumentation and Methods for Astrophysics +1606.07157 Combinatorics +1606.07158 Analysis of PDEs +1606.07159 Spectral Theory +1606.07160 Populations and Evolution +1606.07161 Information Theory +1606.07163 Machine Learning +1606.07164 Networking and Internet Architecture +1606.07165 Quantum Algebra +1606.07166 Computer Vision and Pattern Recognition +1606.07167 +1606.07170 Physics Education +1606.07171 Phenomenology +1606.07172 Numerical Analysis +1606.07176 Information Theory +1606.07178 Number Theory +1606.07183 Mesoscale and Nanoscale Physics +1606.07184 Other Quantitative Biology +1606.07187 Classical Analysis and ODEs +1606.07188 Information Retrieval +1606.07189 Computation and Language +1606.07190 Quantum Gases +1606.07197 Networking and Internet Architecture +1606.07198 Networking and Internet Architecture +1606.07201 Rings and Algebras +1606.07202 Functional Analysis +1606.07204 Combinatorics +1606.07205 Differential Geometry +1606.07208 Data Structures and Algorithms +1606.07209 +1606.07211 Information Retrieval +1606.07215 Systems and Control +1606.07217 Superconductivity +1606.07222 Phenomenology +1606.07223 Solar and Stellar Astrophysics +1606.07224 Geometric Topology +1606.07226 Networking and Internet Architecture +1606.07227 Probability +1606.07228 Applications +1606.07230 Computer Vision and Pattern Recognition +1606.07231 Information Theory +1606.07232 Information Theory +1606.07233 Artificial Intelligence +1606.07234 Numerical Analysis +1606.07237 Disordered Systems and Neural Networks +1606.07241 Information Theory +1606.07243 Analysis of PDEs +1606.07244 Probability +1606.07245 Classical Analysis and ODEs +1606.07246 Statistics Theory +1606.07247 Human-Computer Interaction +1606.07250 Functional Analysis +1606.07251 Machine Learning +1606.07254 Algebraic Geometry +1606.07255 Instrumentation and Detectors +1606.07256 Computer Vision and Pattern Recognition +1606.07258 Combinatorics +1606.07260 Optimization and Control +1606.07262 Neural and Evolutionary Computing +1606.07265 +1606.07267 Analysis of PDEs +1606.07268 Methodology +1606.07269 Biomolecules +1606.07270 Analysis of PDEs +1606.07271 Astrophysics of Galaxies +1606.07273 +1606.07274 Experiment +1606.07275 +1606.07277 Disordered Systems and Neural Networks +1606.07278 +1606.07280 Materials Science +1606.07283 Learning +1606.07284 Algebraic Geometry +1606.07286 Learning +1606.07287 Information Retrieval +1606.07288 Combinatorics +1606.07290 +1606.07292 +1606.07294 Probability +1606.07295 Computer Science and Game Theory +1606.07298 Computation and Language +1606.07306 Instrumentation and Detectors +1606.07309 Methodology +1606.07311 Portfolio Management +1606.07312 Robotics +1606.07313 +1606.07314 Instrumentation and Detectors +1606.07317 Group Theory +1606.07322 Dynamical Systems +1606.07324 Computer Vision and Pattern Recognition +1606.07336 Distributed, Parallel, and Cluster Computing +1606.07337 Logic in Computer Science +1606.07345 Instrumentation and Methods for Astrophysics +1606.07348 Pattern Formation and Solitons +1606.07350 Populations and Evolution +1606.07351 Information Retrieval +1606.07358 Methodology +1606.07362 Combinatorics +1606.07364 Representation Theory +1606.07365 Machine Learning +1606.07367 Biological Physics +1606.07368 Medical Physics +1606.07369 Applications +1606.07370 Combinatorics +1606.07378 Statistics Theory +1606.07380 Optimization and Control +1606.07381 Trading and Market Microstructure +1606.07382 Fluid Dynamics +1606.07383 Social and Information Networks +1606.07384 Data Structures and Algorithms +1606.07385 Networking and Internet Architecture +1606.07386 Networking and Internet Architecture +1606.07392 Logic +1606.07396 Computer Vision and Pattern Recognition +1606.07405 Astrophysics of Galaxies +1606.07408 Number Theory +1606.07410 Mesoscale and Nanoscale Physics +1606.07414 Computer Vision and Pattern Recognition +1606.07415 Computer Vision and Pattern Recognition +1606.07416 Theory +1606.07418 Analysis of PDEs +1606.07420 Theory +1606.07422 +1606.07424 +1606.07426 Differential Geometry +1606.07427 Number Theory +0805.3753 Algebraic Geometry +0901.1840 Differential Geometry +1202.1135 Representation Theory +1210.0530 Mathematical Software +1302.1910 Differential Geometry +1302.4475 Artificial Intelligence +1302.7091 Mesoscale and Nanoscale Physics +1308.4004 Optimization and Control +1308.6536 Combinatorics +1311.3788 Materials Science +1311.4197 Exactly Solvable and Integrable Systems +1401.0459 Commutative Algebra +1402.4125 +1403.5831 Combinatorics +1403.8058 Logic +1404.2314 Artificial Intelligence +1404.7105 Information Theory +1405.5230 Mathematical Finance +1407.1547 Category Theory +1409.4843 Data Structures and Algorithms +1410.1655 Materials Science +1410.3504 Classical Analysis and ODEs +1412.3358 Experiment +1501.00652 +1501.04234 Statistical Mechanics +1501.07353 Logic +1502.01894 High Energy Astrophysical Phenomena +1502.05244 Materials Science +1503.00816 Mesoscale and Nanoscale Physics +1503.02026 Theory +1503.03703 Optimization and Control +1503.07378 Materials Science +1504.01095 Algebraic Geometry +1504.03485 Classical Physics +1504.07305 Number Theory +1505.01017 Numerical Analysis +1505.04812 Mesoscale and Nanoscale Physics +1505.07584 Phenomenology +1505.08007 Differential Geometry +1506.00598 Information Theory +1506.01448 Operator Algebras +1506.02228 +1506.02554 Machine Learning +1506.02698 Phenomenology +1506.03413 Probability +1506.04063 Probability +1506.06476 Formal Languages and Automata Theory +1506.07063 Analysis of PDEs +1506.07105 Combinatorics +1506.08385 Algebraic Geometry +1506.08488 +1507.00426 Optics +1507.00899 Mesoscale and Nanoscale Physics +1507.01125 Probability +1507.02363 Commutative Algebra +1507.03448 Numerical Analysis +1507.03821 Analysis of PDEs +1507.05333 Machine Learning +1507.07570 Analysis of PDEs +1507.08751 Systems and Control +1508.03533 Physics and Society +1508.05162 Probability +1509.02183 Symplectic Geometry +1509.03304 +1509.06576 General Topology +1509.08919 Quantum Gases +1509.08996 Exactly Solvable and Integrable Systems +1510.05420 Optimization and Control +1510.06678 Geometric Topology +1510.09140 Physics and Society +1511.02803 Phenomenology +1511.03669 Theory +1511.04792 Systems and Control +1511.06311 Quantum Gases +1511.07858 Differential Geometry +1512.02887 Theory +1512.02971 Computational Physics +1512.03479 Statistics Theory +1512.03877 Algebraic Geometry +1512.04039 Learning +1512.04113 +1601.00532 Mesoscale and Nanoscale Physics +1601.00595 Learning +1601.04064 +1601.05083 Cosmology and Nongalactic Astrophysics +1601.05805 Theory +1601.06588 Rings and Algebras +1602.00072 +1602.00946 +1602.01403 Representation Theory +1602.03896 Complex Variables +1602.04305 Experiment +1602.05959 Theory +1602.06753 Differential Geometry +1602.06921 Algebraic Topology +1602.07867 Theory +1602.08328 History and Overview +1602.08412 Other Computer Science +1602.08688 +1603.00367 Geometric Topology +1603.01110 Chaotic Dynamics +1603.01535 Functional Analysis +1603.02479 +1603.05279 Computer Vision and Pattern Recognition +1603.06078 Graphics +1603.06568 Computer Vision and Pattern Recognition +1603.07069 Geometric Topology +1603.07096 Mesoscale and Nanoscale Physics +1603.07420 +1603.07704 Artificial Intelligence +1603.08804 Statistical Mechanics +1604.01117 +1604.01330 Mesoscale and Nanoscale Physics +1604.01893 Theory +1604.02879 Formal Languages and Automata Theory +1604.03459 Rings and Algebras +1604.05614 Geometric Topology +1605.00804 Space Physics +1605.01284 Astrophysics of Galaxies +1605.02333 Cosmology and Nongalactic Astrophysics +1605.04164 +1605.04204 +1605.05090 Rings and Algebras +1605.05797 Social and Information Networks +1605.06311 Computation +1605.08311 Information Theory +1605.08609 Atomic Physics +1605.08885 Algebraic Geometry +1605.09460 History and Philosophy of Physics +1605.09478 Soft Condensed Matter +1605.09707 Astrophysics of Galaxies +1606.01442 Probability +1606.01681 Strongly Correlated Electrons +1606.02683 Materials Science +1606.03183 History and Philosophy of Physics +1606.04260 +1606.04729 +1606.06472 Computer Vision and Pattern Recognition +1606.08949 Metric Geometry +1607.00093 Numerical Analysis +1607.01210 Distributed, Parallel, and Cluster Computing +1607.01510 +1607.02373 Phenomenology +1607.04277 High Energy Astrophysical Phenomena +1607.04667 Materials Science +1607.05070 Plasma Physics +1607.05399 Strongly Correlated Electrons +1607.05573 Applications +1607.05932 Algebraic Geometry +1607.06041 Quantum Algebra +1607.06049 +1607.06527 Soft Condensed Matter +1607.06550 Algebraic Geometry +1607.06869 Earth and Planetary Astrophysics +1607.06878 Human-Computer Interaction +1607.06951 Mesoscale and Nanoscale Physics +1607.07603 Superconductivity +1607.07612 Instrumentation and Detectors +1607.08489 Optimization and Control +1607.08518 Astrophysics of Galaxies +1607.08600 Physics and Society +1607.08602 Number Theory +1607.08864 Computation and Language +1608.00186 Solar and Stellar Astrophysics +1608.00255 Logic +1608.00263 +1608.00329 Computation and Language +1608.00487 +1608.00542 Biological Physics +1608.00589 +1608.00641 Computer Vision and Pattern Recognition +1608.00678 Cryptography and Security +1608.00841 Computation and Language +1608.00844 Optimization and Control +1608.00874 Methodology +1608.00967 Cosmology and Nongalactic Astrophysics +1608.00968 Classical Physics +1608.00969 Astrophysics of Galaxies +1608.00973 Astrophysics of Galaxies +1608.00981 Disordered Systems and Neural Networks +1608.00985 Populations and Evolution +1608.00988 Materials Science +1608.00989 Programming Languages +1608.00991 Group Theory +1608.00993 Materials Science +1608.00995 Instrumentation and Detectors +1608.01004 Instrumentation and Methods for Astrophysics +1608.01009 Distributed, Parallel, and Cluster Computing +1608.01011 +1608.01012 High Energy Astrophysical Phenomena +1608.01013 Databases +1608.01016 Probability +1608.01017 Computer Vision and Pattern Recognition +1608.01018 Computation and Language +1608.01019 Distributed, Parallel, and Cluster Computing +1608.01021 Networking and Internet Architecture +1608.01022 Combinatorics +1608.01023 Performance +1608.01024 Computer Vision and Pattern Recognition +1608.01025 Combinatorics +1608.01026 Computer Vision and Pattern Recognition +1608.01027 Combinatorics +1608.01031 Data Structures and Algorithms +1608.01034 Phenomenology +1608.01036 Data Structures and Algorithms +1608.01039 Computer Science and Game Theory +1608.01040 Combinatorics +1608.01042 Solar and Stellar Astrophysics +1608.01044 Superconductivity +1608.01045 Materials Science +1608.01047 +1608.01049 Computational Physics +1608.01051 Operator Algebras +1608.01052 +1608.01054 Solar and Stellar Astrophysics +1608.01057 Solar and Stellar Astrophysics +1608.01058 Materials Science +1608.01063 Plasma Physics +1608.01064 Plasma Physics +1608.01065 Functional Analysis +1608.01068 Information Retrieval +1608.01071 Disordered Systems and Neural Networks +1608.01072 Learning +1608.01074 Computer Vision and Pattern Recognition +1608.01077 Materials Science +1608.01078 Materials Science +1608.01079 Computer Vision and Pattern Recognition +1608.01081 Information Theory +1608.01082 Computer Vision and Pattern Recognition +1608.01084 Computation and Language +1608.01085 Exactly Solvable and Integrable Systems +1608.01086 +1608.01088 +1608.01092 Operator Algebras +1608.01094 Superconductivity +1608.01096 Strongly Correlated Electrons +1608.01102 Graphics +1608.01103 Statistical Finance +1608.01107 Differential Geometry +1608.01112 Category Theory +1608.01113 Networking and Internet Architecture +1608.01115 Dynamical Systems +1608.01116 Dynamical Systems +1608.01117 Networking and Internet Architecture +1608.01118 Machine Learning +1608.01120 Networking and Internet Architecture +1608.01122 +1608.01123 Analysis of PDEs +1608.01125 Computational Physics +1608.01127 Robotics +1608.01128 Systems and Control +1608.01129 Probability +1608.01130 Strongly Correlated Electrons +1608.01132 Solar and Stellar Astrophysics +1608.01133 Probability +1608.01135 +1608.01136 Strongly Correlated Electrons +1608.01140 Computational Geometry +1608.01141 +1608.01143 Probability +1608.01144 Combinatorics +1608.01145 Probability +1608.01146 Chemical Physics +1608.01148 Category Theory +1608.01149 Statistical Mechanics +1608.01150 Differential Geometry +1608.01152 Number Theory +1608.01153 Functional Analysis +1608.01154 Physics and Society +1608.01155 High Energy Astrophysical Phenomena +1608.01156 Representation Theory +1608.01158 Combinatorics +1608.01160 Instrumentation and Detectors +1608.01164 Numerical Analysis +1608.01166 Materials Science +1608.01167 Optimization and Control +1608.01172 Information Theory +1608.01173 Logic +1608.01176 Dynamical Systems +1608.01179 Neurons and Cognition +1608.01181 +1608.01187 High Energy Astrophysical Phenomena +1608.01189 Combinatorics +1608.01190 Superconductivity +1608.01191 Mesoscale and Nanoscale Physics +1608.01199 Dynamical Systems +1608.01201 Methodology +1608.01202 Earth and Planetary Astrophysics +1608.01204 Superconductivity +1608.01206 Algebraic Topology +1608.01208 Solar and Stellar Astrophysics +1608.01212 Artificial Intelligence +1608.01216 Geophysics +1608.01220 Optics +1608.01223 Astrophysics of Galaxies +1608.01224 Experiment +1608.01225 Hardware Architecture +1608.01226 Computational Physics +1608.01228 +1608.01230 Learning +1608.01233 Probability +1608.01235 Numerical Analysis +1608.01236 Spectral Theory +1608.01237 Soft Condensed Matter +1608.01239 Representation Theory +1608.01242 Solar and Stellar Astrophysics +1608.01243 Earth and Planetary Astrophysics +1608.01244 Computer Science and Game Theory +1608.01246 Number Theory +1608.01251 High Energy Astrophysical Phenomena +1608.01252 Statistical Mechanics +1608.01253 +1608.01254 Logic +1608.01255 Rings and Algebras +1608.01259 Classical Analysis and ODEs +1608.01261 Fluid Dynamics +1608.01262 Computational Physics +1608.01264 Learning +1608.01267 Information Theory +1608.01268 Formal Languages and Automata Theory +1608.01272 Superconductivity +1608.01274 Applications +1608.01275 Data Structures and Algorithms +1608.01276 Computer Vision and Pattern Recognition +1608.01278 Combinatorics +1608.01281 Learning +1608.01284 +1608.01291 Physics and Society +1608.01292 Combinatorics +1608.01294 Combinatorics +1608.01295 Earth and Planetary Astrophysics +1608.01298 Computation and Language +1608.01302 Artificial Intelligence +1608.01303 Symplectic Geometry +1608.01304 Symplectic Geometry +cond-mat/0112069 Statistical Mechanics +cs/0510032 Information Theory +math/0410493 Differential Geometry +1001.0023 Algebraic Geometry +1006.4069 High Energy Astrophysical Phenomena +1011.3377 Strongly Correlated Electrons +1209.2289 +1212.6949 Probability +1306.3134 Multiagent Systems +1307.2824 Portfolio Management +1309.5665 Representation Theory +1312.7547 Optimization and Control +1401.1418 +1401.3319 +1402.0489 +1404.2051 Astrophysics of Galaxies +1404.2285 Astrophysics of Galaxies +1404.2373 +1404.2676 Materials Science +1404.3013 Phenomenology +1404.3073 Phenomenology +1404.3595 +1404.4257 +1404.4336 Data Analysis, Statistics and Probability +1404.5100 Optimization and Control +1404.5573 Combinatorics +1404.6026 Optimization and Control +1404.6306 Materials Science +1404.6553 Differential Geometry +1404.7089 +1404.7262 Mesoscale and Nanoscale Physics +1404.7479 Data Structures and Algorithms +1406.7287 Probability +1407.7201 Algebraic Topology +1409.1040 Superconductivity +1410.5040 Information Theory +1410.6531 Statistical Mechanics +1411.1282 Physics and Society +1411.1919 Data Structures and Algorithms +1411.7635 Neurons and Cognition +1411.7661 Number Theory +1501.00924 Numerical Analysis +1501.03142 Numerical Analysis +1501.03928 Numerical Analysis +1501.04059 Representation Theory +1501.06235 Combinatorics +1501.06646 Numerical Analysis +1503.01160 Physics and Society +1503.04058 Physics and Society +1503.04531 +1503.07926 Probability +1504.00020 +1504.02921 Systems and Control +1504.07698 Materials Science +1505.06777 +1505.06975 Dynamical Systems +1506.00231 Information Theory +1506.01332 Methodology +1506.02562 Instrumentation and Methods for Astrophysics +1507.00434 Optics +1507.02362 Combinatorics +1507.03004 Probability +1507.05111 Physics and Society +1507.07410 Representation Theory +1507.07644 Analysis of PDEs +1508.07078 Phenomenology +1509.03202 Strongly Correlated Electrons +1509.04030 Optics +1509.07254 +1509.09013 Numerical Analysis +1510.01273 Theory +1510.02450 +1510.03109 Mesoscale and Nanoscale Physics +1510.05097 Portfolio Management +1510.05709 Statistical Mechanics +1510.06362 Combinatorics +1510.06378 Numerical Analysis +1510.06677 +1510.07314 Mesoscale and Nanoscale Physics +1510.08057 +1510.08185 Mesoscale and Nanoscale Physics +1510.08393 Logic in Computer Science +1511.00727 +1511.01111 Data Structures and Algorithms +1511.01541 Mesoscale and Nanoscale Physics +1511.03147 +1511.03525 Theory +1511.04351 Applications +1511.04830 Earth and Planetary Astrophysics +1511.06049 Learning +1511.06320 Risk Management +1511.07673 Subcellular Processes +1512.03797 Strongly Correlated Electrons +1512.04119 Phenomenology +1512.05329 +1512.05574 Molecular Networks +1512.06626 Numerical Analysis +1601.00020 Astrophysics of Galaxies +1601.00067 Instrumentation and Methods for Astrophysics +1601.00334 Neurons and Cognition +1601.00377 Instrumentation and Methods for Astrophysics +1601.00711 Biological Physics +1601.00999 Analysis of PDEs +1601.02329 Solar and Stellar Astrophysics +1601.02330 Differential Geometry +1601.02500 Probability +1601.02835 Phenomenology +1601.03930 +1601.05846 Algebraic Geometry +1601.06618 +1601.07072 Phenomenology +1601.07543 Quantum Gases +1602.00278 Theory +1602.00488 +1602.01156 Logic +1602.02474 Optics +1602.03878 +1602.04527 Functional Analysis +1602.05841 +1602.06271 +1602.07419 Geometric Topology +1602.07429 Optics +1602.07575 Phenomenology +1602.07625 Neurons and Cognition +1602.07718 Fluid Dynamics +1602.07819 Optimization and Control +1602.08497 Cosmology and Nongalactic Astrophysics +1602.08996 Classical Analysis and ODEs +1603.00211 Optimization and Control +1603.00538 Theory +1603.01027 Populations and Evolution +1603.01983 Discrete Mathematics +1603.01991 Information Theory +1603.03245 +1603.03333 Phenomenology +1603.03780 Superconductivity +1603.04554 Pattern Formation and Solitons +1603.05250 Theory +1603.06304 Materials Science +1603.06409 Strongly Correlated Electrons +1603.06908 Mesoscale and Nanoscale Physics +1603.07000 Phenomenology +1603.07009 Information Theory +1603.07256 Logic in Computer Science +1603.07297 Superconductivity +1603.07701 Optimization and Control +1603.08144 Physics and Society +1603.08503 General Physics +1603.09159 Functional Analysis +1603.09740 Probability +1604.00176 Materials Science +1604.00524 Representation Theory +1604.01356 Earth and Planetary Astrophysics +1604.01957 Chemical Physics +1604.02321 High Energy Astrophysical Phenomena +1604.03326 Mesoscale and Nanoscale Physics +1604.03476 +1604.03696 Theory +1604.03917 Disordered Systems and Neural Networks +1604.05291 Theory +1604.05320 Phenomenology +1604.05439 Operator Algebras +1604.05523 Strongly Correlated Electrons +1604.06175 Statistical Mechanics +1604.06193 Phenomenology +1604.06580 Computer Science and Game Theory +1604.06908 +1604.07249 Soft Condensed Matter +1604.07448 Theory +1604.07650 Phenomenology +1604.07924 Information Theory +1604.08183 Optimization and Control +1604.08246 Information Theory +1604.08348 Logic in Computer Science +1604.08454 +1604.08647 Representation Theory +1604.08740 Learning +1604.08741 Theory +1604.08832 Statistical Mechanics +1605.00356 Statistical Mechanics +1605.00419 Information Theory +1605.00935 +1605.01159 +1605.01255 Mesoscale and Nanoscale Physics +1605.02482 Strongly Correlated Electrons +1605.02570 Data Analysis, Statistics and Probability +1605.03053 Cosmology and Nongalactic Astrophysics +1605.03604 +1605.03685 Disordered Systems and Neural Networks +1605.04172 Phenomenology +1605.04320 Cosmology and Nongalactic Astrophysics +1605.04398 +1605.04854 Materials Science +1605.04946 +1605.05378 Materials Science +1605.06313 Phenomenology +1605.06372 Phenomenology +1605.06713 Phenomenology +1605.07175 Phenomenology +1605.07299 Functional Analysis +1605.07523 +1605.09476 +1605.09760 Quantum Gases +1606.01789 Mesoscale and Nanoscale Physics +1606.02277 Quantum Gases +1606.02553 Statistical Mechanics +1606.02934 High Energy Astrophysical Phenomena +1606.02955 General Physics +1606.03015 Solar and Stellar Astrophysics +1606.03195 Lattice +1606.03205 Statistical Mechanics +1606.03762 Strongly Correlated Electrons +1606.03878 +1606.04246 +1606.04807 +1606.05329 Phenomenology +1606.05385 Mathematical Software +1606.05610 Phenomenology +1606.06107 Fluid Dynamics +1606.06341 Theory +1606.06634 Statistical Mechanics +1606.06945 Earth and Planetary Astrophysics +1606.07297 Mesoscale and Nanoscale Physics +1606.07928 Lattice +1606.07954 High Energy Astrophysical Phenomena +1606.08071 +1606.08114 Instrumentation and Detectors +1606.08554 +1606.08780 Strongly Correlated Electrons +1606.08787 Exactly Solvable and Integrable Systems +1607.00130 +1607.01010 Neurons and Cognition +1607.01316 Theory +1607.01351 +1607.01440 Phenomenology +1607.01652 +1607.02099 Phenomenology +1607.02158 Phenomenology +1607.02406 Quantum Gases +1607.02517 Superconductivity +1607.02967 Theory +1607.03185 Lattice +1607.03219 Phenomenology +1607.03399 Numerical Analysis +1607.03710 Mesoscale and Nanoscale Physics +1607.03782 +1607.03939 Phenomenology +1607.04178 Strongly Correlated Electrons +1607.04697 +1607.04952 Phenomenology +1607.05207 Materials Science +1607.05261 Theory +1607.05275 Quantum Gases +1607.05563 Astrophysics of Galaxies +1607.05631 +1607.05670 Plasma Physics +1607.05751 Phenomenology +1607.06092 Quantum Gases +1607.06112 Instrumentation and Detectors +1607.06176 Functional Analysis +1607.06578 +1607.06703 Materials Science +1607.06925 +1607.07089 Phenomenology +1607.07434 Instrumentation and Detectors +1607.07460 Theory +1607.07560 Atomic Physics +1607.07569 Differential Geometry +1607.07876 Phenomenology +1607.08095 Statistical Mechanics +1607.08643 Astrophysics of Galaxies +1607.08813 Superconductivity +1608.00238 Phenomenology +1608.00468 Phenomenology +1608.00469 +1608.00894 Mesoscale and Nanoscale Physics +1608.00918 Earth and Planetary Astrophysics +1608.01397 Solar and Stellar Astrophysics +1608.02086 Operator Algebras +1608.02244 +1608.03076 +1608.03296 Disordered Systems and Neural Networks +1608.03303 Quantum Gases +1608.03313 Computational Complexity +1608.03483 Mesoscale and Nanoscale Physics +1608.03792 Solar and Stellar Astrophysics +1608.04443 Materials Science +1608.04574 High Energy Astrophysical Phenomena +1608.04657 Fluid Dynamics +1608.04839 Learning +1608.04860 Atomic Physics +1608.04900 Theory +1608.04988 Cosmology and Nongalactic Astrophysics +1608.05037 +1608.05063 High Energy Astrophysical Phenomena +1608.05083 Quantum Gases +1608.05139 Cosmology and Nongalactic Astrophysics +1608.05685 Materials Science +1608.05702 Experiment +1608.06246 +1608.06263 Earth and Planetary Astrophysics +1608.06289 Astrophysics of Galaxies +1608.06518 High Energy Astrophysical Phenomena +1608.06796 Astrophysics of Galaxies +1608.06831 +1608.07057 Astrophysics of Galaxies +1608.07101 Solar and Stellar Astrophysics +1608.07248 Quantum Gases +1608.07331 Soft Condensed Matter +1608.07442 Phenomenology +1608.07503 Mesoscale and Nanoscale Physics +1608.07589 +1608.07661 Solar and Stellar Astrophysics +1608.07826 Theory +1608.08141 Combinatorics +1608.08776 Astrophysics of Galaxies +1608.08778 Instrumentation and Detectors +1609.00207 Theory +1609.00777 Computation and Language +1609.01363 Solar and Stellar Astrophysics +1609.01670 Computer Vision and Pattern Recognition +1609.01818 Astrophysics of Galaxies +1609.02086 Algebraic Topology +1609.02124 Phenomenology +1609.02219 +1609.02549 Computation and Language +1609.02829 +1609.03355 Information Theory +1609.03421 Astrophysics of Galaxies +1609.03426 Learning +1609.03736 Quantum Gases +1609.03807 Cosmology and Nongalactic Astrophysics +1609.04133 Phenomenology +1609.04336 Theory +1609.04599 Instrumentation and Methods for Astrophysics +1609.04820 Astrophysics of Galaxies +1609.04855 Human-Computer Interaction +1609.05870 Theory +1609.06078 Statistical Mechanics +1609.06291 +1609.06853 Formal Languages and Automata Theory +1609.06883 Solar and Stellar Astrophysics +1609.07920 Phenomenology +1609.08518 Strongly Correlated Electrons +1609.08667 Computation and Language +1609.09017 +1610.00009 Phenomenology +1610.00655 Materials Science +1610.00724 Theory +1610.01135 Optics +1610.01473 +1610.02170 Optimization and Control +1610.02344 +1610.02487 +1610.02537 +1610.02728 Networking and Internet Architecture +1610.03017 Computation and Language +1610.03480 Social and Information Networks +1610.04099 Geometric Topology +1610.04412 Theory +1610.05090 +1610.05322 Astrophysics of Galaxies +1610.05337 Strongly Correlated Electrons +1610.05346 Analysis of PDEs +1610.05748 Number Theory +1610.06074 Quantum Gases +1610.06091 Materials Science +1610.06796 +1610.06906 Computer Vision and Pattern Recognition +1610.06939 Astrophysics of Galaxies +1610.07816 Logic +1610.08249 Statistics Theory +1610.08366 Mesoscale and Nanoscale Physics +1610.08439 +1610.08471 Earth and Planetary Astrophysics +1610.08694 Computation and Language +1610.08695 +1610.08715 Probability +1610.08815 Computation and Language +1610.09033 Machine Learning +1610.09120 Cosmology and Nongalactic Astrophysics +1610.09126 Fluid Dynamics +1610.09160 Social and Information Networks +1610.09264 Atomic and Molecular Clusters +1610.09283 +1610.09398 Phenomenology +1610.09508 Experiment +1610.09518 Lattice +1610.09533 Earth and Planetary Astrophysics +1610.09559 Learning +1610.09706 Number Theory +1610.09731 Probability +1610.09736 Computer Vision and Pattern Recognition +1610.09746 +1610.09805 +1610.09855 Lattice +1610.09935 Computation and Language +1610.09947 +1610.09987 Differential Geometry +1610.09991 Computational Engineering, Finance, and Science +1610.09998 Probability +1610.10035 Subcellular Processes +1611.00001 Theory +1611.00005 Astrophysics of Galaxies +1611.00010 Astrophysics of Galaxies +1611.00012 Earth and Planetary Astrophysics +1611.00014 Cosmology and Nongalactic Astrophysics +1611.00016 Theory +1611.00019 Lattice +1611.00022 Lattice +1611.00023 Strongly Correlated Electrons +1611.00027 Computation and Language +1611.00028 +1611.00029 Data Structures and Algorithms +1611.00030 Methodology +1611.00031 Strongly Correlated Electrons +1611.00033 Neurons and Cognition +1611.00034 Computational Physics +1611.00035 Machine Learning +1611.00038 Computational Physics +1611.00040 Computation +1611.00043 Cosmology and Nongalactic Astrophysics +1611.00044 Information Theory +1611.00047 Strongly Correlated Electrons +1611.00052 Data Structures and Algorithms +1611.00054 Molecular Networks +1611.00055 Digital Libraries +1611.00059 Materials Science +1611.00060 +1611.00062 Quantum Gases +1611.00066 Geometric Topology +1611.00067 Dynamical Systems +1611.00069 Differential Geometry +1611.00070 Instrumentation and Methods for Astrophysics +1611.00071 Quantum Algebra +1611.00073 Atmospheric and Oceanic Physics +1611.00075 Materials Science +1611.00076 +1611.00078 Mesoscale and Nanoscale Physics +1611.00079 High Energy Astrophysical Phenomena +1611.00080 +1611.00081 Algebraic Geometry +1611.00084 Combinatorics +1611.00088 Astrophysics of Galaxies +1611.00090 Optimization and Control +1611.00092 Dynamical Systems +1611.00095 Soft Condensed Matter +1611.00096 Networking and Internet Architecture +1611.00098 Group Theory +1611.00100 Mesoscale and Nanoscale Physics +1611.00102 Numerical Analysis +1611.00103 Quantitative Methods +1611.00104 +1611.00105 Instrumentation and Methods for Astrophysics +1611.00106 Computational Geometry +1611.00107 Classical Analysis and ODEs +1611.00108 Solar and Stellar Astrophysics +1611.00114 Representation Theory +1611.00115 Functional Analysis +1611.00119 Information Theory +1611.00121 Materials Science +1611.00123 Information Theory +1611.00124 +1611.00126 Computation and Language +1611.00127 Numerical Analysis +1611.00129 Data Structures and Algorithms +1611.00133 Solar and Stellar Astrophysics +1611.00134 Instrumentation and Methods for Astrophysics +1611.00135 Computer Vision and Pattern Recognition +1611.00136 +1611.00137 Computer Vision and Pattern Recognition +1611.00138 Learning +1611.00143 Differential Geometry +1611.00144 Learning +1611.00146 Optimization and Control +1611.00147 Phenomenology +1611.00148 Computer Vision and Pattern Recognition +1611.00150 Theory +1611.00151 Instrumentation and Detectors +1611.00154 Numerical Analysis +1611.00155 Atomic Physics +1611.00156 General Finance +1611.00157 Theory +1611.00160 Materials Science +1611.00162 Differential Geometry +1611.00163 Differential Geometry +1611.00164 Numerical Analysis +1611.00165 Instrumentation and Detectors +1611.00167 Earth and Planetary Astrophysics +1611.00169 Information Theory +1611.00175 Learning +1611.00176 Logic +1611.00178 Phenomenology +1611.00179 Computation and Language +1611.00180 Other Condensed Matter +1611.00181 Analysis of PDEs +1611.00182 +1611.00183 Artificial Intelligence +1611.00184 Analysis of PDEs +1611.00185 Instrumentation and Detectors +1611.00187 Astrophysics of Galaxies +1611.00188 +1611.00192 Instrumentation and Detectors +1611.00195 Lattice +1611.00200 Solar and Stellar Astrophysics +1611.00201 Robotics +1611.00202 Group Theory +1611.00203 Methodology +1611.00205 Quantum Gases +1611.00208 +1611.00209 Materials Science +1611.00211 Networking and Internet Architecture +1611.00212 Physics and Society +1611.00214 Probability +1611.00215 Analysis of PDEs +1611.00216 Combinatorics +1611.00217 Digital Libraries +1611.00218 Computer Vision and Pattern Recognition +1611.00220 Phenomenology +1611.00221 Operator Algebras +1611.00224 +1611.00228 Other Computer Science +1611.00229 Differential Geometry +1611.00230 Robotics +1611.00233 Probability +1611.00234 Analysis of PDEs +1611.00235 Information Theory +1611.00238 Other Condensed Matter +1611.00239 Superconductivity +1611.00242 Numerical Analysis +1611.00244 Geophysics +1611.00246 Combinatorics +1611.00248 Commutative Algebra +1611.00249 Algebraic Topology +1611.00250 +1611.00251 Computational Physics +1611.00254 Social and Information Networks +1611.00255 Learning +1611.00257 Mesoscale and Nanoscale Physics +1611.00258 Combinatorics +1611.00259 Populations and Evolution +1611.00260 Neural and Evolutionary Computing +1611.00261 Machine Learning +1611.00266 Numerical Analysis +1611.00267 Classical Analysis and ODEs +1611.00268 Atmospheric and Oceanic Physics +1611.00270 Information Theory +1611.00271 Programming Languages +1611.00272 +1611.00273 Materials Science +1611.00274 Artificial Intelligence +1611.00275 Lattice +1611.00276 Classical Physics +1611.00277 Information Theory +1611.00280 Lattice +1611.00281 Analysis of PDEs +1611.00282 Lattice +1611.00286 Geometric Topology +1611.00288 Numerical Analysis +1611.00289 Networking and Internet Architecture +1611.00290 Combinatorics +1611.00291 Social and Information Networks +1611.00296 Instrumentation and Detectors +1611.00300 Disordered Systems and Neural Networks +1611.00301 Learning +1611.00302 Combinatorics +1611.00304 Analysis of PDEs +1611.00305 Quantum Algebra +1611.00306 Cryptography and Security +1611.00307 Geophysics +1611.00312 Information Theory +1611.00313 Quantitative Methods +1611.00314 Group Theory +1611.00315 Computers and Society +1611.00316 Computational Finance +1611.00317 Other Computer Science +1611.00320 +1611.00321 Information Theory +1611.00322 Differential Geometry +1611.00323 Software Engineering +1611.00331 Robotics +1611.00335 Atomic Physics +1611.00337 Group Theory +1611.00338 Experiment +1611.00339 Systems and Control +1611.00347 Optimization and Control +1611.00350 Social and Information Networks +1611.00351 Probability +1611.00354 Computation and Language +1611.00355 +astro-ph/0302436 +cond-mat/0402363 Strongly Correlated Electrons +cond-mat/0502555 Strongly Correlated Electrons +quant-ph/0207120 +0811.1712 +0907.5332 Analysis of PDEs +0907.5334 Analysis of PDEs +1001.0624 Logic +1003.0985 Category Theory +1004.0820 General Physics +1006.0894 Logic +1006.5526 Logic +1007.2426 Logic +1007.3692 Logic +1011.4337 Cosmology and Nongalactic Astrophysics +1012.2451 Algebraic Geometry +1101.1947 Logic +1102.2334 Analysis of PDEs +1102.3237 Cosmology and Nongalactic Astrophysics +1103.1416 Combinatorics +1103.2625 Algebraic Geometry +1105.4135 Logic +1107.2284 Logic in Computer Science +1108.6315 Logic +1109.2246 Logic +1109.5437 Logic +1112.1890 Logic +1112.4784 Logic +1112.5237 Logic +1112.6331 Logic +1201.5799 Logic +1203.4026 Logic +1204.3610 Number Theory +1204.5860 High Energy Astrophysical Phenomena +1205.0826 Dynamical Systems +1205.3351 Analysis of PDEs +1205.3791 Theory +1206.2713 Logic +1206.6032 Logic +1207.2533 Logic +1207.4857 Quantum Algebra +1207.5433 Algebraic Geometry +1207.6434 Logic +1208.2858 Logic +1208.2991 Logic +1210.3787 Logic +1211.1245 Analysis of PDEs +1211.1626 Statistical Mechanics +1211.5547 Differential Geometry +1211.6165 Group Theory +1211.7187 +1212.5796 Combinatorics +1212.6925 Computational Complexity +1301.0712 Number Theory +1301.4102 Algebraic Geometry +1301.6911 Probability +1302.5446 Logic +1302.6964 Methodology +1303.3252 Operator Algebras +1303.3914 Functional Analysis +1303.4279 Differential Geometry +1304.0246 Probability +1304.0670 +1304.1199 Applications +1304.5687 Analysis of PDEs +1306.1056 Classical Analysis and ODEs +1306.1964 Quantum Gases +1306.2797 Probability +1306.3930 Statistics Theory +1307.0604 Logic +1307.3730 Statistics Theory +1307.6396 Logic +1307.6674 Complex Variables +1308.1599 High Energy Astrophysical Phenomena +1308.3602 Probability +1309.3553 Geometric Topology +1309.7560 Classical Analysis and ODEs +1310.3148 Combinatorics +1311.4366 +1311.6307 Algebraic Geometry +1312.1045 Analysis of PDEs +1312.4284 +1312.7216 +1401.0054 Lattice +1401.5204 Algebraic Geometry +1401.7256 Representation Theory +1402.0272 Combinatorics +1402.1929 Number Theory +1402.5591 Probability +1403.0542 Number Theory +1403.1166 Optimization and Control +1403.3049 Combinatorics +1403.3639 +1403.6792 Algebraic Geometry +1403.7281 Dynamical Systems +1404.0015 Subcellular Processes +1404.3306 Combinatorics +1404.4227 Differential Geometry +1405.4007 Strongly Correlated Electrons +1405.6070 Methodology +1405.6865 Analysis of PDEs +1405.7938 Group Theory +1406.1858 Dynamical Systems +1406.6528 Group Theory +1407.1299 Strongly Correlated Electrons +1407.1518 Mesoscale and Nanoscale Physics +1407.1570 Strongly Correlated Electrons +1407.3108 +1407.3789 Theory +1407.4307 Symplectic Geometry +1407.6267 Optimization and Control +1408.3310 Data Structures and Algorithms +1408.4488 Group Theory +1408.6712 Analysis of PDEs +1409.0270 +1409.2971 Complex Variables +1409.4587 Multimedia +1409.5094 Combinatorics +1409.5325 Theory +1409.5738 Cosmology and Nongalactic Astrophysics +1409.5746 Astrophysics of Galaxies +1409.6574 Atomic Physics +1409.6728 Astrophysics of Galaxies +1410.0212 Algebraic Geometry +1410.1846 General Physics +1410.2477 Methodology +1410.5634 +1410.7051 Group Theory +1410.8748 Differential Geometry +1411.2271 Astrophysics of Galaxies +1411.3914 +1411.5711 Atomic Physics +1411.7129 +1411.7214 Differential Geometry +1412.1997 +1412.2853 Dynamical Systems +1501.00922 Astrophysics of Galaxies +1501.01657 Networking and Internet Architecture +1501.01776 Statistical Mechanics +1501.02358 Algebraic Topology +1501.04537 Computer Vision and Pattern Recognition +1501.05564 Materials Science +1501.06822 Analysis of PDEs +1501.07491 Operator Algebras +1502.03136 Populations and Evolution +1502.04123 Astrophysics of Galaxies +1502.04624 Mesoscale and Nanoscale Physics +1502.05268 +1502.05547 Rings and Algebras +1502.05686 Experiment +1503.00396 Superconductivity +1503.02457 Superconductivity +1503.04223 Strongly Correlated Electrons +1503.05267 Cosmology and Nongalactic Astrophysics +1503.06012 Cosmology and Nongalactic Astrophysics +1503.07861 Theory +1503.08580 Theory +1504.00050 Physics and Society +1504.01932 Superconductivity +1504.04182 Theory +1504.05825 Fluid Dynamics +1504.05925 Differential Geometry +1504.06443 Computational Physics +1505.00105 Optics +1505.00735 Phenomenology +1505.01492 Theory +1505.02142 Neurons and Cognition +1505.02514 Combinatorics +1505.02684 Disordered Systems and Neural Networks +1505.02779 Astrophysics of Galaxies +1505.02970 Mesoscale and Nanoscale Physics +1505.03413 Materials Science +1505.05214 Soft Condensed Matter +1505.05255 Complex Variables +1505.06006 Phenomenology +1505.07034 Mesoscale and Nanoscale Physics +1505.07112 High Energy Astrophysical Phenomena +1506.00111 +1506.02297 Atomic Physics +1506.02526 High Energy Astrophysical Phenomena +1506.04630 Differential Geometry +1506.05124 High Energy Astrophysical Phenomena +1506.07142 Materials Science +1506.07181 Theory +1506.08151 Chemical Physics +1506.08729 Strongly Correlated Electrons +1506.08819 Strongly Correlated Electrons +1506.08950 Functional Analysis +1507.00751 Populations and Evolution +1507.01420 Statistical Mechanics +1507.01462 Dynamical Systems +1507.01594 Phenomenology +1507.02562 Molecular Networks +1507.02688 +1507.03202 Strongly Correlated Electrons +1507.03364 Numerical Analysis +1507.04503 Phenomenology +1507.04613 Strongly Correlated Electrons +1507.04639 Atomic Physics +1507.05475 Classical Analysis and ODEs +1507.06375 Theory +1507.06705 Phenomenology +1507.07181 Differential Geometry +1507.07452 Cosmology and Nongalactic Astrophysics +1507.08248 Quantum Gases +1507.08290 Strongly Correlated Electrons +1507.08428 Dynamical Systems +1507.08614 Phenomenology +1507.08782 +1508.00132 Analysis of PDEs +1508.00296 Strongly Correlated Electrons +1508.00441 +1508.02504 Cosmology and Nongalactic Astrophysics +1508.03472 Quantum Gases +1508.04777 Phenomenology +1508.04995 Statistical Mechanics +1508.05097 Disordered Systems and Neural Networks +1508.05110 Quantum Gases +1508.05111 Quantum Gases +1508.06067 Soft Condensed Matter +1508.06470 Statistical Mechanics +1508.06849 +1508.06974 Strongly Correlated Electrons +1508.07164 Quantum Gases +1508.07188 +1508.07250 +1508.07253 +1508.07318 Phenomenology +1508.07669 Statistical Mechanics +1509.00005 Quantum Gases +1509.00294 Experiment +1509.01110 Phenomenology +1509.01228 High Energy Astrophysical Phenomena +1509.01315 Statistical Mechanics +1509.01667 +1509.02329 Chaotic Dynamics +1509.02376 Logic +1509.02406 Phenomenology +1509.02677 Mesoscale and Nanoscale Physics +1509.02967 Phenomenology +1509.03632 Astrophysics of Galaxies +1509.03826 Quantum Gases +1509.04009 Mesoscale and Nanoscale Physics +1509.04800 Statistical Mechanics +1509.05627 +1509.06425 Algebraic Geometry +1509.06821 Phenomenology +1509.07664 Classical Analysis and ODEs +1509.08213 +1509.08472 Theory +1509.08817 +1509.09006 Mesoscale and Nanoscale Physics +1509.09024 +1509.09242 Phenomenology +1510.00173 Mesoscale and Nanoscale Physics +1510.00584 Mesoscale and Nanoscale Physics +1510.01182 Mesoscale and Nanoscale Physics +1510.01250 Mesoscale and Nanoscale Physics +1510.01381 +1510.01790 Solar and Stellar Astrophysics +1510.01817 Mesoscale and Nanoscale Physics +1510.01974 Strongly Correlated Electrons +1510.02110 Phenomenology +1510.02164 +1510.03271 Programming Languages +1510.03441 Lattice +1510.03442 Astrophysics of Galaxies +1510.03471 +1510.03751 +1510.03756 +1510.03901 Phenomenology +1510.04520 Superconductivity +1510.04990 +1510.05165 Solar and Stellar Astrophysics +1510.05206 Atomic Physics +1510.05428 Lattice +1510.05680 Astrophysics of Galaxies +1510.05908 Solar and Stellar Astrophysics +1510.06314 Solar and Stellar Astrophysics +1510.06483 +1510.06504 Phenomenology +1510.06777 Mesoscale and Nanoscale Physics +1510.07446 Lattice +1510.07705 Plasma Physics +1510.07840 Methodology +1510.08079 Logic in Computer Science +1510.08453 Earth and Planetary Astrophysics +1510.08883 Information Theory +1510.09210 +1511.00014 High Energy Astrophysical Phenomena +1511.00246 Number Theory +1511.00295 Algebraic Topology +1511.00751 Soft Condensed Matter +1511.01300 Astrophysics of Galaxies +1511.01876 Mesoscale and Nanoscale Physics +1511.02200 Experiment +1511.02215 +1511.02371 Phenomenology +1511.03047 Strongly Correlated Electrons +1511.03394 +1511.03598 Strongly Correlated Electrons +1511.03642 Superconductivity +1511.03963 Subcellular Processes +1511.04029 Lattice +1511.05095 Theory +1511.05209 Phenomenology +1511.05248 Differential Geometry +1511.05312 K-Theory and Homology +1511.05443 Mesoscale and Nanoscale Physics +1511.05486 Astrophysics of Galaxies +1511.06428 Learning +1511.06451 Phenomenology +1511.06635 Theory +1511.06678 +1511.06717 Earth and Planetary Astrophysics +1511.06894 Solar and Stellar Astrophysics +1511.06954 Computer Science and Game Theory +1511.07143 Theory +1511.07593 Quantum Gases +1511.07663 Artificial Intelligence +1511.07705 Analysis of PDEs +1511.08209 +1511.08651 +1512.00041 Mesoscale and Nanoscale Physics +1512.00288 Chaotic Dynamics +1512.00886 Phenomenology +1512.00937 Solar and Stellar Astrophysics +1512.01243 Phenomenology +1512.01556 +1512.02165 Mesoscale and Nanoscale Physics +1512.02168 Phenomenology +1512.02409 High Energy Astrophysical Phenomena +1512.03069 Phenomenology +1512.03112 Superconductivity +1512.03356 Strongly Correlated Electrons +1512.03835 Astrophysics of Galaxies +1512.03842 Mesoscale and Nanoscale Physics +1512.04232 +1512.04291 Astrophysics of Galaxies +1512.04789 Optics +1512.05378 Instrumentation and Methods for Astrophysics +1512.05776 Phenomenology +1512.05865 +1512.07085 Strongly Correlated Electrons +1512.07129 Dynamical Systems +1512.07345 Other Condensed Matter +1512.07483 Functional Analysis +1512.08769 Astrophysics of Galaxies +1512.08871 High Energy Astrophysical Phenomena +1601.00291 Astrophysics of Galaxies +1601.00830 Statistical Mechanics +1601.01532 Category Theory +1601.01682 Astrophysics of Galaxies +1601.02183 Instrumentation and Detectors +1601.02545 Statistical Mechanics +1601.03534 Statistical Mechanics +1601.03548 Probability +1601.05120 +1601.06481 Phenomenology +1601.07915 Astrophysics of Galaxies +1601.08217 Astrophysics of Galaxies +1602.00143 +1602.00333 Soft Condensed Matter +1602.00782 Portfolio Management +1602.01025 Solar and Stellar Astrophysics +1602.01041 +1602.01148 Solar and Stellar Astrophysics +1602.01950 Digital Libraries +1602.02035 Phenomenology +1602.02290 Combinatorics +1602.02317 Rings and Algebras +1602.02440 Number Theory +1602.02574 Computers and Society +1602.02644 Learning +1602.02673 Information Theory +1602.02743 Logic in Computer Science +1602.02747 Combinatorics +1602.02748 Functional Analysis +1602.02750 Cosmology and Nongalactic Astrophysics +1602.02764 Theory +1602.02769 Geometric Topology +1602.02772 Theory +1602.02784 Superconductivity +1602.02787 Geometric Topology +1602.02788 Discrete Mathematics +1602.02794 Distributed, Parallel, and Cluster Computing +1602.02795 +1602.02797 Combinatorics +1602.02798 Analysis of PDEs +1602.02800 Optimization and Control +1602.02803 Probability +1602.02807 Optics +1602.02808 Analysis of PDEs +1602.02815 Probability +1602.02822 Computer Vision and Pattern Recognition +1602.02823 Learning +1602.02826 Category Theory +1602.02831 Information Theory +1602.02834 Multimedia +1602.02836 K-Theory and Homology +1602.02837 Analysis of PDEs +1602.02840 +1602.02842 Machine Learning +1602.02847 Computational Engineering, Finance, and Science +1602.02849 Materials Science +1602.02852 Machine Learning +1602.02853 Representation Theory +1602.02854 Statistics Theory +1602.02858 +1602.02859 Classical Analysis and ODEs +1602.02860 Cryptography and Security +1602.02861 Statistics Theory +1602.02862 Neural and Evolutionary Computing +1602.02863 Computational Complexity +1602.02865 Computer Vision and Pattern Recognition +1602.02866 Probability +1602.02868 Systems and Control +1602.02869 Analysis of PDEs +1602.02874 +1602.02877 Earth and Planetary Astrophysics +1602.02880 Soft Condensed Matter +1602.02881 Computer Vision and Pattern Recognition +1602.02882 Statistics Theory +1602.02884 Plasma Physics +1602.02885 Computer Vision and Pattern Recognition +1602.02886 Computational Physics +1602.02887 Learning +1602.02888 Learning +1602.02889 Methodology +1602.02891 Applications +1602.02894 Dynamical Systems +1602.02895 Applications +1602.02898 Applications +1602.02899 Cryptography and Security +1602.02900 Applications +1602.02902 Applications +1602.02905 Statistics Theory +1602.02907 Statistics Theory +1602.02908 Methodology +1602.02911 Information Retrieval +1602.02912 Physics and Society +1602.02916 Combinatorics +1602.02919 Differential Geometry +1602.02932 Number Theory +1602.02937 Materials Science +1602.02938 Computer Vision and Pattern Recognition +1602.02940 Rings and Algebras +1602.02942 Rings and Algebras +1602.02945 Neurons and Cognition +1602.02949 Discrete Mathematics +1602.02950 Learning +1602.02952 Materials Science +1602.02953 Probability +1602.02954 Analysis of PDEs +1602.02955 Differential Geometry +1602.02956 Classical Analysis and ODEs +1602.02958 Geometric Topology +1602.02961 Analysis of PDEs +1602.02982 Computational Engineering, Finance, and Science +1602.02985 Geophysics +1602.02987 Combinatorics +1602.02989 Algebraic Geometry +1602.02993 Classical Analysis and ODEs +1602.02994 Logic +1602.02996 Algebraic Geometry +1602.02998 Representation Theory +1602.02999 Computer Vision and Pattern Recognition +1602.03000 General Physics +1602.03002 Analysis of PDEs +1602.03005 History and Overview +1602.03008 Neurons and Cognition +1602.03009 Algebraic Topology +1602.03010 Earth and Planetary Astrophysics +1602.03013 +1602.03016 Hardware Architecture +1602.03019 +1602.03020 Group Theory +1602.03023 Biological Physics +1602.03024 Mesoscale and Nanoscale Physics +1602.03025 Number Theory +1602.03026 +1602.03027 Machine Learning +1602.03033 Information Theory +1602.03035 Statistical Mechanics +1602.03043 Trading and Market Microstructure +1602.03044 Chaotic Dynamics +1602.03045 Optimization and Control +1602.03048 Machine Learning +1602.03053 Physics and Society +1602.03054 Probability +1602.03055 Cellular Automata and Lattice Gases +1602.03057 +1602.03058 General Physics +1602.03059 Analysis of PDEs +1602.03063 Populations and Evolution +1602.03067 +1602.03068 Solar and Stellar Astrophysics +1602.03069 Classical Physics +1602.03074 +1602.03075 Combinatorics +1602.03077 Rings and Algebras +1602.03078 Functional Analysis +1602.03080 Quantum Algebra +1602.03084 Information Theory +1602.03089 Accelerator Physics +1602.03091 Information Theory +1602.03092 Geometric Topology +1602.03093 Populations and Evolution +1602.03094 Numerical Analysis +1602.03095 Hardware Architecture +1602.03098 Combinatorics +1602.03100 Other Computer Science +1602.03101 Information Retrieval +1602.03103 Physics and Society +1602.03104 Robotics +1602.03106 Optimization and Control +1602.03107 Probability +1602.03109 Combinatorics +1602.03110 Social and Information Networks +1602.03115 Information Theory +1602.03116 Mesoscale and Nanoscale Physics +1602.03117 Information Theory +1602.03121 Cosmology and Nongalactic Astrophysics +1602.03122 +1602.03125 Differential Geometry +1602.03127 Dynamical Systems +1602.03129 Numerical Analysis +1602.03132 +1602.03137 Solar and Stellar Astrophysics +1602.03139 Robotics +1602.03142 Dynamical Systems +1602.03145 Computer Vision and Pattern Recognition +1602.03148 Algebraic Geometry +1602.03150 Instrumentation and Detectors +1602.03153 Networking and Internet Architecture +1602.03155 Spectral Theory +1602.03162 Group Theory +1602.03163 Fluid Dynamics +1602.03164 Rings and Algebras +1602.03165 Classical Analysis and ODEs +1602.03166 Phenomenology +1602.03168 Quantitative Methods +astro-ph/9609126 +astro-ph/9701167 +0704.2795 +0801.2664 Algebraic Topology +0809.3341 Algebraic Topology +0812.2968 +0902.0556 Algebraic Topology +0902.1567 +0908.0156 +0911.0956 Probability +1002.4220 Spectral Theory +1004.4146 +1011.5644 Algebraic Geometry +1101.3064 Category Theory +1108.2903 Optimization and Control +1201.2134 Algebraic Topology +1201.3135 +1204.0563 Optimization and Control +1205.1038 +1206.4019 +1301.3408 Spectral Theory +1304.2504 Cryptography and Security +1304.6790 +1305.0480 Group Theory +1305.4026 +1306.4222 Superconductivity +1307.1459 Cosmology and Nongalactic Astrophysics +1308.6186 Cosmology and Nongalactic Astrophysics +1309.3717 Number Theory +1311.0194 Probability +1401.3424 Statistics Theory +1401.3602 Probability +1403.6481 Statistical Mechanics +1404.0410 Pricing of Securities +1406.0526 Statistics Theory +1406.0571 Number Theory +1406.0766 Combinatorics +1406.4807 Dynamical Systems +1406.5136 Strongly Correlated Electrons +1406.6276 Soft Condensed Matter +1407.0195 Numerical Analysis +1408.1228 Social and Information Networks +1408.1829 Classical Analysis and ODEs +1408.2467 Optimization and Control +1409.3868 +1409.4358 Materials Science +1409.4455 Differential Geometry +1409.8669 Superconductivity +1410.1118 Differential Geometry +1410.1656 Probability +1410.3322 Networking and Internet Architecture +1410.3920 Optics +1412.4339 Numerical Analysis +1412.5007 Algebraic Geometry +1412.7113 Phenomenology +1412.8609 Information Theory +1501.03379 Computation +1501.04682 Statistical Finance +1501.07439 Information Theory +1502.00217 Analysis of PDEs +1502.01456 Optimization and Control +1502.07803 History and Overview +1503.00127 Physics and Society +1503.06732 Analysis of PDEs +1503.08719 Statistical Mechanics +1504.00630 Popular Physics +1504.01168 Materials Science +1504.01307 Number Theory +1504.02338 Machine Learning +1504.05341 Strongly Correlated Electrons +1505.03548 Classical Analysis and ODEs +1505.04350 Functional Analysis +1505.07515 Information Theory +1506.02774 Probability +1506.03294 Mesoscale and Nanoscale Physics +1506.07094 Mathematical Software +1506.09155 Physics and Society +1507.02293 Social and Information Networks +1507.04151 Instrumentation and Methods for Astrophysics +1507.04331 Quantitative Methods +1507.06775 Superconductivity +1507.07569 Phenomenology +1508.01939 Methodology +1508.04300 Algebraic Geometry +1508.06239 Representation Theory +1508.06389 Strongly Correlated Electrons +1509.00228 Spectral Theory +1509.00439 Materials Science +1509.01699 Cosmology and Nongalactic Astrophysics +1509.01781 Probability +1509.01861 Dynamical Systems +1509.02561 +1509.05203 Representation Theory +1509.05891 Phenomenology +1510.02575 Number Theory +1510.03711 Disordered Systems and Neural Networks +1510.06773 Representation Theory +1510.06843 Algebraic Geometry +1511.02301 Computation and Language +1511.05074 Materials Science +1511.05838 Computation +1511.07355 +1511.08023 Combinatorics +1511.08700 Information Theory +1511.08781 +1512.01565 Number Theory +1512.02974 Superconductivity +1512.03646 Mesoscale and Nanoscale Physics +1512.04270 +1512.05602 Cell Behavior +1512.05621 Representation Theory +1512.07619 Methodology +1512.07651 Differential Geometry +1512.07812 K-Theory and Homology +1512.08058 Theory +1601.00516 Logic in Computer Science +1601.01397 Quantum Gases +1601.02732 Computational Geometry +1601.02863 Number Theory +1601.03213 Superconductivity +1601.04153 Computer Vision and Pattern Recognition +1601.04218 Optics +1601.04817 +1601.05760 Mesoscale and Nanoscale Physics +1601.06254 Differential Geometry +1601.06721 +1601.07839 Number Theory +1602.01399 Lattice +1602.01786 Statistical Mechanics +1602.03608 Materials Science +1602.04450 Robotics +1602.07606 Disordered Systems and Neural Networks +1603.01099 +1603.02123 +1603.02727 Cryptography and Security +1603.02768 Theory +1603.02835 Chemical Physics +1603.03153 Physics and Society +1603.03973 Analysis of PDEs +1603.04781 Human-Computer Interaction +1603.04944 Probability +1603.05312 +1603.06047 Portfolio Management +1603.06623 Number Theory +1603.07267 +1603.07580 Probability +1603.08370 Combinatorics +1603.08747 Exactly Solvable and Integrable Systems +1603.09318 Materials Science +1603.09372 Strongly Correlated Electrons +1603.09373 +1603.09406 Statistics Theory +1603.09439 Computer Vision and Pattern Recognition +1603.09540 Social and Information Networks +1603.09678 Numerical Analysis +1603.09730 Dynamical Systems +1604.00001 Other Quantitative Biology +1604.00023 +1604.00025 Cryptography and Security +1604.00033 Computers and Society +1604.00036 Computer Vision and Pattern Recognition +1604.00039 Statistics Theory +1604.00041 Materials Science +1604.00044 Phenomenology +1604.00045 Biomolecules +1604.00046 +1604.00047 Graphics +1604.00049 Popular Physics +1604.00050 Algebraic Geometry +1604.00051 Statistics Theory +1604.00052 Algebraic Geometry +1604.00053 Representation Theory +1604.00056 Probability +1604.00058 Functional Analysis +1604.00059 Applications +1604.00060 Networking and Internet Architecture +1604.00061 Systems and Control +1604.00062 Analysis of PDEs +1604.00065 Materials Science +1604.00066 Computer Vision and Pattern Recognition +1604.00069 Neurons and Cognition +1604.00071 Information Retrieval +1604.00072 Rings and Algebras +1604.00076 Combinatorics +1604.00077 Computation and Language +1604.00080 Human-Computer Interaction +1604.00081 +1604.00082 Applications +1604.00085 Mesoscale and Nanoscale Physics +1604.00090 High Energy Astrophysical Phenomena +1604.00091 Neurons and Cognition +1604.00092 Computer Vision and Pattern Recognition +1604.00094 +1604.00097 Probability +1604.00098 Instrumentation and Detectors +1604.00099 +1604.00100 Computation and Language +1604.00101 Analysis of PDEs +1604.00104 Combinatorics +1604.00105 Pricing of Securities +1604.00107 Information Theory +1604.00109 Group Theory +1604.00114 Symplectic Geometry +1604.00116 +1604.00118 Cryptography and Security +1604.00121 Functional Analysis +1604.00126 Computation and Language +1604.00130 Dynamical Systems +1604.00133 Computer Vision and Pattern Recognition +1604.00136 Computer Vision and Pattern Recognition +1604.00138 Numerical Analysis +1604.00140 Chemical Physics +1604.00142 Differential Geometry +1604.00149 General Topology +1604.00150 General Topology +1604.00154 +1604.00155 Analysis of PDEs +1604.00158 High Energy Astrophysical Phenomena +1604.00159 Operator Algebras +1604.00162 Artificial Intelligence +1604.00168 Soft Condensed Matter +1604.00170 Instrumentation and Methods for Astrophysics +1604.00174 Materials Science +1604.00175 Social and Information Networks +1604.00178 Networking and Internet Architecture +1604.00180 Differential Geometry +1604.00182 Functional Analysis +1604.00186 Classical Analysis and ODEs +1604.00190 Probability +1604.00191 Astrophysics of Galaxies +1604.00193 Number Theory +1604.00198 Functional Analysis +1604.00200 Computational Physics +1604.00201 Phenomenology +1604.00202 Discrete Mathematics +1604.00204 Cryptography and Security +1604.00209 Mesoscale and Nanoscale Physics +1604.00211 Analysis of PDEs +1604.00215 Algebraic Geometry +1604.00216 Computational Complexity +1604.00217 Systems and Control +1604.00219 Systems and Control +1604.00221 Exactly Solvable and Integrable Systems +1604.00223 Information Retrieval +1604.00224 Computational Physics +1604.00228 Phenomenology +1604.00229 High Energy Astrophysical Phenomena +1604.00233 Computers and Society +1604.00235 Combinatorics +1604.00237 Analysis of PDEs +1604.00243 Rings and Algebras +1604.00252 Algebraic Geometry +1604.00253 Systems and Control +1604.00254 Mathematical Finance +1604.00256 Solar and Stellar Astrophysics +1604.00258 Logic in Computer Science +1604.00260 History and Philosophy of Physics +1604.00261 Numerical Analysis +1604.00262 Numerical Analysis +1604.00263 High Energy Astrophysical Phenomena +1604.00270 Functional Analysis +1604.00271 Astrophysics of Galaxies +1604.00273 Networking and Internet Architecture +1604.00274 Information Theory +1604.00275 Information Theory +1604.00276 Instrumentation and Detectors +1604.00277 Combinatorics +1604.00281 Number Theory +1604.00282 Astrophysics of Galaxies +1604.00283 General Finance +1604.00285 Numerical Analysis +1604.00287 Analysis of PDEs +1604.00290 Geometric Topology +1604.00293 Spectral Theory +1604.00298 Soft Condensed Matter +1604.00300 Artificial Intelligence +1604.00301 Artificial Intelligence +1604.00306 Statistics Theory +1604.00310 Data Structures and Algorithms +1604.00314 Methodology +1604.00317 Computation and Language +1604.00318 High Energy Astrophysical Phenomena +1604.00319 +1604.00320 Cryptography and Security +1604.00322 Data Structures and Algorithms +1604.00325 +1604.00326 Computer Vision and Pattern Recognition +1604.00327 Chemical Physics +1604.00330 Geometric Topology +1604.00331 Strongly Correlated Electrons +1604.00337 Materials Science +1604.00340 Materials Science +1604.00341 Group Theory +1604.00346 Software Engineering +1604.00347 Software Engineering +1604.00348 Software Engineering +1604.00349 Software Engineering +1604.00350 Logic in Computer Science +1604.00351 +1604.00352 Materials Science +1604.00355 Numerical Analysis +1604.00357 Data Structures and Algorithms +1604.00358 Logic +1604.00360 Other Computer Science +1604.00362 Statistics Theory +1604.00363 +1604.00365 Algebraic Topology +1604.00367 Computer Vision and Pattern Recognition +1604.00368 Probability +1604.00369 Economics +1604.00371 Probability +1604.00372 High Energy Astrophysical Phenomena +1604.00376 Methodology +1604.00377 Artificial Intelligence +1604.00379 Optics +1604.00384 Programming Languages +1604.00385 Quantitative Methods +1604.00387 Materials Science +math-ph/0308012 +math-ph/0605037 +math-ph/0609021 +math/0503075 Classical Analysis and ODEs +math/0503128 Analysis of PDEs +1003.3327 Cosmology and Nongalactic Astrophysics +1008.3418 Functional Analysis +1102.3326 Soft Condensed Matter +1207.2940 Machine Learning +1207.5136 Machine Learning +1211.2446 Theory +1304.0236 +1305.5767 Theory +1306.1043 Machine Learning +1307.4848 +1308.3649 Spectral Theory +1309.6779 Machine Learning +1310.3023 Geometric Topology +1310.3033 Geometric Topology +1310.3159 Strongly Correlated Electrons +1312.2304 Functional Analysis +1401.3661 Algebraic Geometry +1401.4095 Functional Analysis +1402.3905 Geometric Topology +1403.0408 Probability +1404.5012 Information Theory +1404.5657 Algebraic Geometry +1405.4396 Number Theory +1405.4902 Algebraic Geometry +1405.4965 +1405.5620 Combinatorics +1405.5624 Combinatorics +1405.7228 Representation Theory +1405.7236 Representation Theory +1406.4423 Soft Condensed Matter +1407.3012 +1409.0810 Analysis of PDEs +1409.8632 +1410.5449 Combinatorics +1410.7899 Combinatorics +1411.1208 Algebraic Geometry +1411.3134 Numerical Analysis +1411.6506 Methodology +1411.7755 +1412.0477 Computer Vision and Pattern Recognition +1412.3129 Analysis of PDEs +1501.01307 Number Theory +1501.01810 Geometric Topology +1502.02462 Analysis of PDEs +1502.02987 +1503.03379 Cosmology and Nongalactic Astrophysics +1503.04702 Discrete Mathematics +1504.03749 Numerical Analysis +1504.06066 Computer Vision and Pattern Recognition +1504.06136 Information Theory +1505.05061 Numerical Analysis +1506.04755 +1506.07557 +1507.01012 Strongly Correlated Electrons +1507.02595 Algebraic Geometry +1507.02597 Algebraic Geometry +1507.02653 Solar and Stellar Astrophysics +1507.06394 Numerical Analysis +1508.00737 Cosmology and Nongalactic Astrophysics +1508.00747 Instrumentation and Methods for Astrophysics +1508.04997 +1509.02838 Chemical Physics +1509.03576 +1509.03619 Information Theory +1509.04641 Materials Science +1509.05371 Computer Vision and Pattern Recognition +1509.06480 Solar and Stellar Astrophysics +1509.06482 Solar and Stellar Astrophysics +1509.06580 Information Theory +1509.07958 Plasma Physics +1510.07115 +1511.05385 Machine Learning +1511.08116 Number Theory +1512.01277 Quantum Gases +1512.02066 Analysis of PDEs +1512.02660 Strongly Correlated Electrons +1512.02678 Representation Theory +1512.03308 Machine Learning +1512.04608 Number Theory +1512.04618 Combinatorics +1512.04831 Computation +1512.05255 Strongly Correlated Electrons +1512.07322 Differential Geometry +1601.00237 Methodology +1601.00467 Disordered Systems and Neural Networks +1601.01286 Information Theory +1601.01852 Optimization and Control +1601.02688 Number Theory +1601.02932 Quantitative Methods +1601.04389 +1601.04699 Materials Science +1601.05775 Social and Information Networks +1601.05923 Plasma Physics +1601.06611 +1601.07088 Optics +1601.07138 Solar and Stellar Astrophysics +1601.07583 Number Theory +1601.07768 Information Theory +1601.08249 Strongly Correlated Electrons +1602.01626 Numerical Analysis +1602.01991 +1602.02265 Systems and Control +1602.02314 +1602.03744 General Physics +1602.04202 Differential Geometry +1602.05052 Quantum Algebra +1602.07075 Symplectic Geometry +1602.07529 General Physics +1603.00765 Experiment +1603.02115 Strongly Correlated Electrons +1603.05967 Materials Science +1603.06182 Computer Vision and Pattern Recognition +1603.06944 Strongly Correlated Electrons +1603.07065 Rings and Algebras +1603.07777 Superconductivity +1604.00022 Phenomenology +1604.01750 Number Theory +1604.02315 Materials Science +1604.03397 Theory +1604.03805 Data Analysis, Statistics and Probability +1604.03860 Superconductivity +1604.04242 Methodology +1604.05097 +1604.05332 +1604.06895 Instrumentation and Detectors +1604.07401 Cosmology and Nongalactic Astrophysics +1604.08202 Computer Vision and Pattern Recognition +1605.00283 Programming Languages +1605.03211 Quantum Gases +1605.04431 Cosmology and Nongalactic Astrophysics +1605.04482 +1605.05471 Mesoscale and Nanoscale Physics +1605.05513 Statistical Mechanics +1605.07763 Cryptography and Security +1605.09435 +1605.09474 Emerging Technologies +1605.09563 Phenomenology +1605.09579 Formal Languages and Automata Theory +1606.01602 +1606.03710 Solar and Stellar Astrophysics +1606.04641 +1606.05321 Algebraic Geometry +1606.05810 Algebraic Geometry +1606.06474 +1606.07143 Logic in Computer Science +1606.07628 Theory +1606.08816 Statistical Mechanics +1606.08851 Phenomenology +1607.00994 +1607.02471 Superconductivity +1607.03487 Astrophysics of Galaxies +1607.04806 Optics +1607.06461 Mesoscale and Nanoscale Physics +1607.06600 Combinatorics +1607.07478 Popular Physics +1608.00586 Instrumentation and Methods for Astrophysics +1608.00587 Instrumentation and Methods for Astrophysics +1608.00982 +1608.01518 Earth and Planetary Astrophysics +1608.01585 +1608.01929 Combinatorics +1608.02038 Populations and Evolution +1608.03226 Combinatorics +1608.03237 Risk Management +1608.03939 Cryptography and Security +1608.03976 Classical Physics +1608.04055 Representation Theory +1608.04115 Cryptography and Security +1608.04459 +1608.04460 +1608.04529 Software Engineering +1608.04548 High Energy Astrophysical Phenomena +1608.04572 Combinatorics +1608.04612 Analysis of PDEs +1608.04616 Instrumentation and Methods for Astrophysics +1608.04684 +1608.04743 Astrophysics of Galaxies +1608.04744 Theory +1608.04752 Probability +1608.04753 Solar and Stellar Astrophysics +1608.04756 Logic +1608.04758 Instrumentation and Methods for Astrophysics +1608.04759 Data Structures and Algorithms +1608.04763 Optimization and Control +1608.04764 Computational Complexity +1608.04765 Astrophysics of Galaxies +1608.04766 Cryptography and Security +1608.04767 Computation and Language +1608.04768 Computer Science and Game Theory +1608.04769 Data Structures and Algorithms +1608.04770 Analysis of PDEs +1608.04773 Machine Learning +1608.04774 Mesoscale and Nanoscale Physics +1608.04777 Classical Analysis and ODEs +1608.04778 Atomic Physics +1608.04779 Mesoscale and Nanoscale Physics +1608.04780 Classical Analysis and ODEs +1608.04783 Learning +1608.04784 Phenomenology +1608.04787 Atomic Physics +1608.04789 Computers and Society +1608.04791 Computational Geometry +1608.04792 Fluid Dynamics +1608.04793 Lattice +1608.04794 Combinatorics +1608.04795 Operator Algebras +1608.04797 Algebraic Geometry +1608.04799 Strongly Correlated Electrons +1608.04800 Combinatorics +1608.04804 +1608.04806 Instrumentation and Methods for Astrophysics +1608.04807 Instrumentation and Methods for Astrophysics +1608.04809 Group Theory +1608.04810 Differential Geometry +1608.04821 Materials Science +1608.04823 Space Physics +1608.04824 Biological Physics +1608.04825 Spectral Theory +1608.04826 Optimization and Control +1608.04827 Dynamical Systems +1608.04829 +1608.04830 Machine Learning +1608.04833 Numerical Analysis +1608.04838 Combinatorics +1608.04840 Mesoscale and Nanoscale Physics +1608.04843 Other Statistics +1608.04845 Data Structures and Algorithms +1608.04847 Fluid Dynamics +1608.04849 +1608.04850 Dynamical Systems +1608.04851 Multiagent Systems +1608.04852 Data Structures and Algorithms +1608.04854 Mesoscale and Nanoscale Physics +1608.04858 Number Theory +1608.04859 Operator Algebras +1608.04866 Discrete Mathematics +1608.04867 Methodology +1608.04869 Astrophysics of Galaxies +1608.04871 Probability +1608.04872 Information Theory +1608.04875 Digital Libraries +1608.04876 Mesoscale and Nanoscale Physics +1608.04877 Differential Geometry +1608.04879 Systems and Control +1608.04880 Dynamical Systems +1608.04883 Discrete Mathematics +1608.04885 Software Engineering +1608.04888 Instrumentation and Methods for Astrophysics +1608.04894 Accelerator Physics +1608.04896 Spectral Theory +1608.04897 Instrumentation and Detectors +1608.04901 Strongly Correlated Electrons +1608.04902 Computer Vision and Pattern Recognition +1608.04903 Mesoscale and Nanoscale Physics +1608.04908 +1608.04909 +1608.04910 Applications +1608.04913 Logic +1608.04914 Computer Vision and Pattern Recognition +1608.04925 +1608.04926 Exactly Solvable and Integrable Systems +1608.04929 Learning +1608.04932 Analysis of PDEs +1608.04935 Neurons and Cognition +1608.04936 Geometric Topology +1608.04938 Strongly Correlated Electrons +1608.04940 Phenomenology +1608.04941 Dynamical Systems +1608.04942 +1608.04943 Computer Science and Game Theory +1608.04944 Differential Geometry +1608.04945 Metric Geometry +1608.04947 Complex Variables +1608.04952 Optimization and Control +1608.04953 Graphics +1608.04954 Experiment +1608.04955 Optimization and Control +1608.04956 Mesoscale and Nanoscale Physics +1608.04959 Computer Vision and Pattern Recognition +1608.04963 Probability +1608.04965 Astrophysics of Galaxies +1608.04967 Distributed, Parallel, and Cluster Computing +1608.04968 Algebraic Geometry +1608.04970 Chemical Physics +1608.04971 Instrumentation and Methods for Astrophysics +1608.04972 Neurons and Cognition +1608.04973 Commutative Algebra +1608.04975 Fluid Dynamics +1608.04980 Learning +1608.04981 Information Theory +1608.04983 Computation and Language +1608.04984 +1608.04985 Rings and Algebras +1608.04986 History and Philosophy of Physics +1608.04987 Dynamical Systems +1608.04989 Classical Analysis and ODEs +1608.04990 Algebraic Geometry +1608.04992 Instrumentation and Methods for Astrophysics +1608.04996 Artificial Intelligence +1608.04998 Computational Engineering, Finance, and Science +1608.05007 Cryptography and Security +1608.05010 Materials Science +1608.05011 Software Engineering +1608.05013 Commutative Algebra +1608.05015 Probability +1608.05016 Solar and Stellar Astrophysics +1608.05018 Materials Science +1608.05020 +1608.05021 Soft Condensed Matter +1608.05022 Strongly Correlated Electrons +1608.05023 Materials Science +1608.05029 Soft Condensed Matter +1608.05030 Fluid Dynamics +1608.05031 Optimization and Control +1608.05034 +1608.05035 Geometric Topology +1608.05038 Economics +1608.05039 Algebraic Geometry +1608.05041 Phenomenology +1608.05043 Computational Complexity +1608.05044 Computer Science and Game Theory +1608.05045 Computer Vision and Pattern Recognition +1608.05046 Artificial Intelligence +1608.05049 +1608.05050 Functional Analysis +1608.05051 Optics +1608.05054 Multimedia +1608.05056 Algebraic Geometry +1608.05058 Methodology +1608.05060 Trading and Market Microstructure +1608.05061 Quantum Gases +1608.05062 Strongly Correlated Electrons +1608.05064 Optimization and Control +1608.05065 Logic +1608.05068 Pattern Formation and Solitons +cond-mat/0703363 Disordered Systems and Neural Networks +0810.4637 Classical Physics +1005.1721 Combinatorics +1009.3036 Probability +1011.1715 Superconductivity +1104.4343 +1105.1685 Earth and Planetary Astrophysics +1107.0295 Algebraic Geometry +1107.1087 Phenomenology +1107.2019 Differential Geometry +1107.2712 Theory +1111.4427 +1111.4980 +1111.5455 Number Theory +1111.5459 Number Theory +1112.4078 Logic +1204.0492 Popular Physics +1205.5898 +1206.2254 Computational Geometry +1209.0841 Computer Vision and Pattern Recognition +1209.5895 Strongly Correlated Electrons +1210.1316 Computer Vision and Pattern Recognition +1210.6363 Quantum Algebra +1211.0217 Symplectic Geometry +1211.2887 Theory +1212.2521 Combinatorics +1212.6444 Algebraic Geometry +1302.1805 Methodology +1304.3969 Methodology +1305.0972 Probability +1306.1157 Information Theory +1306.2472 Analysis of PDEs +1306.6560 Classical Analysis and ODEs +1307.7536 Methodology +1309.0408 Genomics +1309.3754 Algebraic Geometry +1309.4739 Algebraic Geometry +1309.6487 Learning +1309.7241 Representation Theory +1309.7606 Operator Algebras +1309.7970 Numerical Analysis +1310.2902 Analysis of PDEs +1310.5023 Group Theory +1310.5080 Symplectic Geometry +1311.0689 Computation +1311.2970 Networking and Internet Architecture +1312.1619 +1312.6923 Symplectic Geometry +1401.6101 Algebraic Geometry +1401.6237 Analysis of PDEs +1401.7287 Physics and Society +1402.5874 Learning +1402.7250 +1403.3111 Differential Geometry +1403.3314 Geometric Topology +1403.3426 Theory +1403.6377 Earth and Planetary Astrophysics +1404.1390 Classical Analysis and ODEs +1404.1568 Data Structures and Algorithms +1404.2337 Earth and Planetary Astrophysics +1404.5064 Optimization and Control +1405.0478 Materials Science +1405.2044 Quantitative Methods +1405.2203 Analysis of PDEs +1405.2303 Symplectic Geometry +1405.3512 General Finance +1405.6091 General Physics +1405.6708 Earth and Planetary Astrophysics +1406.0873 Machine Learning +1406.1739 Differential Geometry +1406.3089 Subcellular Processes +1406.3873 Analysis of PDEs +1406.5835 Algebraic Geometry +1407.0427 Number Theory +1407.2505 Statistical Mechanics +1407.6644 +1407.7228 Commutative Algebra +1408.1422 Computational Geometry +1408.1503 Chaotic Dynamics +1408.4200 Logic +1408.5328 +1409.2035 Medical Physics +1409.4071 Representation Theory +1409.4652 +1409.5786 Computer Vision and Pattern Recognition +1409.5929 Computational Physics +1409.6906 Differential Geometry +1410.1970 Logic +1410.2353 Combinatorics +1410.2363 Geometric Topology +1410.6363 Theory +1410.8157 Geometric Topology +1411.0732 Logic +1411.4946 Quantum Gases +1411.6371 Data Structures and Algorithms +1411.6534 Group Theory +1411.6763 Databases +1411.6931 Category Theory +1411.7928 Instrumentation and Methods for Astrophysics +1412.0458 Spectral Theory +1412.1273 +1412.2097 Statistical Mechanics +1412.2229 Geometric Topology +1412.2521 +1412.2627 Probability +1412.3456 Superconductivity +1412.3817 +1412.4293 Analysis of PDEs +1412.7223 Multiagent Systems +1501.00226 Algebraic Geometry +1501.00366 Fluid Dynamics +1501.00768 +1501.01884 Representation Theory +1501.06263 Geometric Topology +1502.02368 Complex Variables +1502.02833 +1502.04212 Analysis of PDEs +1502.04295 Neurons and Cognition +1502.04538 Information Theory +1503.00164 Machine Learning +1503.03788 Group Theory +1503.05933 Optimization and Control +1503.05995 +1503.07253 Systems and Control +1503.07591 Numerical Analysis +1503.07615 Symplectic Geometry +1503.08177 Numerical Analysis +1503.08817 Phenomenology +1503.09182 Biological Physics +1504.00925 Quantum Gases +1504.02230 Instrumentation and Detectors +1504.03948 Number Theory +1504.07001 Phenomenology +1504.07306 +1504.07843 Physics and Society +1504.08326 Chemical Physics +1505.00650 Differential Geometry +1505.02372 Computational Complexity +1505.05914 Computer Vision and Pattern Recognition +1505.06580 Number Theory +1505.07501 Biological Physics +1505.07746 Analysis of PDEs +1505.07995 Geometric Topology +1506.00136 Biological Physics +1506.00713 Earth and Planetary Astrophysics +1506.00719 Number Theory +1506.00981 +1506.01569 Complex Variables +1506.01848 Solar and Stellar Astrophysics +1506.03590 Quantum Gases +1506.04372 Algebraic Geometry +1506.05454 +1506.07049 +1506.07475 Phenomenology +1506.07499 +1506.07842 Complex Variables +1506.08045 Physics and Society +1506.08159 Statistics Theory +1506.08527 Symbolic Computation +1507.01346 +1507.01851 Superconductivity +1507.02847 Computational Finance +1507.04031 Mesoscale and Nanoscale Physics +1507.04817 Programming Languages +1507.05115 Metric Geometry +1507.05951 Differential Geometry +1507.08872 Algebraic Topology +1507.08980 Spectral Theory +1508.00316 Symplectic Geometry +1508.00438 +1508.01223 +1508.01277 +1508.02451 Instrumentation and Detectors +1508.02751 Instrumentation and Detectors +1508.02783 Analysis of PDEs +1508.03414 Analysis of PDEs +1508.04968 Mesoscale and Nanoscale Physics +1508.05300 Strongly Correlated Electrons +1508.05423 Probability +1508.05848 Superconductivity +1508.06377 Systems and Control +1508.06461 +1508.06579 Neurons and Cognition +1508.07212 Strongly Correlated Electrons +1508.07370 Computer Science and Game Theory +1509.00171 Neurons and Cognition +1509.00572 Rings and Algebras +1509.00897 Probability +1509.01584 High Energy Astrophysical Phenomena +1509.02703 +1509.03007 Spectral Theory +1509.03469 +1509.04165 Strongly Correlated Electrons +1509.05097 Analysis of PDEs +1509.05936 Neural and Evolutionary Computing +1509.05998 Optics +1509.06178 Probability +1509.08110 Portfolio Management +1510.00338 Optimization and Control +1510.00488 Populations and Evolution +1510.00855 +1510.01170 Mesoscale and Nanoscale Physics +1510.02533 Learning +1510.03966 Statistics Theory +1510.04384 Classical Analysis and ODEs +1510.04448 Mesoscale and Nanoscale Physics +1510.04862 Computer Vision and Pattern Recognition +1510.04947 Differential Geometry +1510.05201 Programming Languages +1510.05619 Statistical Mechanics +1510.05630 Cosmology and Nongalactic Astrophysics +1510.06191 Probability +1510.06198 Cosmology and Nongalactic Astrophysics +1510.06325 Geometric Topology +1510.07427 Strongly Correlated Electrons +1510.07729 Algebraic Topology +1510.08322 Disordered Systems and Neural Networks +1510.08465 Astrophysics of Galaxies +1510.08653 Strongly Correlated Electrons +1511.00823 Symplectic Geometry +1511.00914 Accelerator Physics +1511.01350 High Energy Astrophysical Phenomena +1511.01498 +1511.01534 Networking and Internet Architecture +1511.01540 Social and Information Networks +1511.02576 +1511.03942 Strongly Correlated Electrons +1511.04252 +1511.04277 +1511.04505 Numerical Analysis +1511.05234 Computer Vision and Pattern Recognition +1511.05946 Learning +1511.06366 Quantum Gases +1511.06612 Classical Analysis and ODEs +1511.06753 Theory +1511.06755 Mesoscale and Nanoscale Physics +1511.06780 +1511.07369 Mesoscale and Nanoscale Physics +1512.00630 Phenomenology +1512.00820 Statistics Theory +1512.01218 Systems and Control +1512.01883 Social and Information Networks +1512.01946 +1512.02003 Earth and Planetary Astrophysics +1512.02138 Databases +1512.02402 Populations and Evolution +1512.02590 Fluid Dynamics +1512.02633 Astrophysics of Galaxies +1512.02637 Cosmology and Nongalactic Astrophysics +1512.02685 Number Theory +1512.03556 Computational Physics +1512.04319 Statistical Mechanics +1512.05423 Information Theory +1512.05880 Algebraic Geometry +1512.06169 Physics and Society +1512.06749 Optics +1512.06840 Social and Information Networks +1512.07633 Soft Condensed Matter +1512.08361 Chemical Physics +1512.08704 Strongly Correlated Electrons +1512.08764 Lattice +1512.08851 Atmospheric and Oceanic Physics +1512.09143 Superconductivity +1512.09236 Data Structures and Algorithms +1601.00257 +1601.00442 Phenomenology +1601.01320 Strongly Correlated Electrons +1601.02139 Mesoscale and Nanoscale Physics +1601.03194 Analysis of PDEs +1601.03298 Theory +1601.03879 Disordered Systems and Neural Networks +1601.04157 Numerical Analysis +1601.04223 Combinatorics +1601.05482 Geometric Topology +1601.06273 Atomic Physics +1601.07820 Optics +1601.08017 Optimization and Control +1602.00029 Phenomenology +1602.00101 Emerging Technologies +1602.00821 Materials Science +1602.01205 Digital Libraries +1602.02058 Instrumentation and Detectors +1602.02320 Functional Analysis +1602.03957 Group Theory +1602.03959 Materials Science +1602.04298 High Energy Astrophysical Phenomena +1602.05342 Computer Science and Game Theory +1602.05516 Instrumentation and Detectors +1602.06773 Representation Theory +1602.08153 Fluid Dynamics +1602.09122 Mesoscale and Nanoscale Physics +1603.00644 Information Theory +1603.00681 Number Theory +1603.00859 Networking and Internet Architecture +1603.01085 Classical Analysis and ODEs +1603.01669 Superconductivity +1603.02267 +1603.02520 Mesoscale and Nanoscale Physics +1603.02562 Combinatorics +1603.02699 Classical Analysis and ODEs +1603.02752 Learning +1603.02761 Algebraic Geometry +1603.02837 +1603.03518 Artificial Intelligence +1603.03542 Exactly Solvable and Integrable Systems +1603.03847 Phenomenology +1603.03928 Probability +1603.04051 Group Theory +1603.04094 Hardware Architecture +1603.04174 Information Theory +1603.04428 +1603.04476 Combinatorics +1603.04834 Systems and Control +1603.04905 Spectral Theory +1603.05073 Computer Vision and Pattern Recognition +1603.05193 Mesoscale and Nanoscale Physics +1603.05338 Combinatorics +1603.05495 Programming Languages +1603.05512 Classical Analysis and ODEs +1603.05720 Astrophysics of Galaxies +1603.05809 Number Theory +1603.05905 Optimization and Control +1603.05910 Experiment +1603.05979 Earth and Planetary Astrophysics +1603.05985 Chemical Physics +1603.05987 +1603.05990 Instrumentation and Methods for Astrophysics +1603.05991 Differential Geometry +1603.05995 Group Theory +1603.06002 Data Structures and Algorithms +1603.06005 Analysis of PDEs +1603.06009 Computation and Language +1603.06012 Networking and Internet Architecture +1603.06014 Statistical Mechanics +1603.06016 Experiment +1603.06017 Formal Languages and Automata Theory +1603.06018 General Literature +1603.06020 Geometric Topology +1603.06022 Functional Analysis +1603.06024 Physics Education +1603.06025 Physics Education +1603.06030 Combinatorics +1603.06031 Accelerator Physics +1603.06035 Learning +1603.06038 Learning +1603.06043 Functional Analysis +1603.06044 Networking and Internet Architecture +1603.06045 Methodology +1603.06046 +1603.06048 Physics Education +1603.06051 Materials Science +1603.06056 Category Theory +1603.06060 Computer Vision and Pattern Recognition +1603.06063 Soft Condensed Matter +1603.06065 Sound +1603.06068 Databases +1603.06070 Materials Science +1603.06073 Algebraic Topology +1603.06079 Solar and Stellar Astrophysics +1603.06080 Representation Theory +1603.06084 Operator Algebras +1603.06085 Functional Analysis +1603.06087 General Topology +1603.06088 Analysis of PDEs +1603.06089 Number Theory +1603.06093 Computer Vision and Pattern Recognition +1603.06094 Differential Geometry +1603.06097 Mesoscale and Nanoscale Physics +1603.06099 Combinatorics +1603.06100 Statistics Theory +1603.06109 Data Structures and Algorithms +1603.06110 Software Engineering +1603.06113 Cryptography and Security +1603.06114 Physics and Society +1603.06115 Combinatorics +1603.06119 Computational Engineering, Finance, and Science +1603.06122 Number Theory +1603.06123 Multimedia +1603.06124 Combinatorics +1603.06125 Artificial Intelligence +1603.06128 K-Theory and Homology +1603.06129 Programming Languages +1603.06130 Phenomenology +1603.06131 Phenomenology +1603.06132 Optics +1603.06133 Cryptography and Security +1603.06134 Instrumentation and Methods for Astrophysics +1603.06135 Statistics Theory +1603.06136 Earth and Planetary Astrophysics +1603.06138 Methodology +1603.06139 Fluid Dynamics +1603.06141 Artificial Intelligence +1603.06142 Populations and Evolution +1603.06145 Methodology +1603.06148 +1603.06150 Mesoscale and Nanoscale Physics +1603.06151 Optimization and Control +1603.06152 Algebraic Geometry +1603.06156 Quantum Gases +1603.06158 Astrophysics of Galaxies +1603.06159 Optimization and Control +1603.06161 Number Theory +1603.06162 General Topology +1603.06163 Optimization and Control +1603.06164 Combinatorics +1603.06167 Analysis of PDEs +1603.06168 Theory +1603.06170 Learning +1603.06171 Quantum Algebra +1603.06174 Operator Algebras +1603.06176 Number Theory +1603.06177 Statistics Theory +1603.06178 Number Theory +1603.06179 Number Theory +1603.06180 Computer Vision and Pattern Recognition +1603.06183 Portfolio Management +1603.06184 Algebraic Geometry +1603.06188 Computational Physics +1603.06190 Representation Theory +1603.06191 Probability +1603.06192 Rings and Algebras +1603.06193 Statistical Mechanics +1603.06196 General Finance +1603.06197 Algebraic Geometry +1603.06200 Social and Information Networks +1603.06202 Statistical Finance +1603.06203 Experiment +1603.06204 Group Theory +1603.06205 Number Theory +1603.06210 Functional Analysis +1603.06211 Differential Geometry +1603.06212 Neural and Evolutionary Computing +1603.06213 Mesoscale and Nanoscale Physics +1603.06214 Mesoscale and Nanoscale Physics +1603.06215 Commutative Algebra +1603.06216 Systems and Control +1603.06217 Robotics +1603.06220 Information Theory +1603.06223 Other Computer Science +1603.06225 Statistical Mechanics +1603.06226 Discrete Mathematics +1603.06227 Cryptography and Security +1603.06228 Rings and Algebras +1603.06235 Materials Science +1603.06239 Classical Analysis and ODEs +1603.06241 Distributed, Parallel, and Cluster Computing +1603.06243 Human-Computer Interaction +1603.06247 Algebraic Geometry +1603.06248 Neurons and Cognition +1603.06252 Computational Geometry +1603.06257 Rings and Algebras +1603.06260 +1603.06261 +1603.06262 Astrophysics of Galaxies +1603.06266 Programming Languages +1603.06267 Number Theory +1603.06274 +1603.06275 +1603.06276 Probability +1603.06281 Dynamical Systems +1603.06282 +1603.06283 Medical Physics +1603.06284 Methodology +1603.06286 Information Theory +1603.06289 Cryptography and Security +1603.06293 Functional Analysis +1603.06296 Quantum Gases +1603.06297 Cryptography and Security +1603.06301 Optics +1603.06302 Theory +1603.06303 Geometric Topology +1603.06306 Optimization and Control +1603.06307 Number Theory +1603.06308 Materials Science +1603.06311 Representation Theory +1603.06315 Differential Geometry +1603.06317 Robotics +1603.06319 Strongly Correlated Electrons +1603.06321 Combinatorics +1603.06327 Computer Vision and Pattern Recognition +1603.06329 Differential Geometry +1603.06335 Biomolecules +1603.06337 Analysis of PDEs +1603.06340 Machine Learning +1603.06342 Neurons and Cognition +1603.06349 Methodology +1603.06351 Information Theory +1603.06353 Neural and Evolutionary Computing +1603.06358 Methodology +1603.06359 Computer Vision and Pattern Recognition +1603.06371 History and Overview +1603.06372 Methodology +1603.06378 Probability +1603.06381 Computation +1603.06386 Statistics Theory +1603.06387 Representation Theory +1603.06388 Chaotic Dynamics +1603.06390 Robotics +1603.06394 Mesoscale and Nanoscale Physics +1603.06397 Analysis of PDEs +1603.06398 Computer Vision and Pattern Recognition +1603.06399 Cosmology and Nongalactic Astrophysics +1603.06400 Computer Vision and Pattern Recognition +1603.06401 Neurons and Cognition +1603.06405 Differential Geometry +1603.06406 Cosmology and Nongalactic Astrophysics +1603.06408 Methodology +1603.06415 Methodology +1603.06422 Logic in Computer Science +1603.06423 Materials Science +1603.06424 Mathematical Software +1603.06425 Algebraic Geometry +1603.06427 Commutative Algebra +1603.06428 Rings and Algebras +1603.06431 Analysis of PDEs +1603.06433 Computer Vision and Pattern Recognition +1603.06439 Numerical Analysis +1603.06445 Analysis of PDEs +1603.06450 Dynamical Systems +1603.06453 Theory +1603.06455 Applications +1603.06456 Fluid Dynamics +1603.06459 Artificial Intelligence +1603.06465 Systems and Control +1603.06466 Instrumentation and Detectors +1603.06469 Combinatorics +1603.06473 Statistical Mechanics +1603.06476 Applications +1603.06477 Information Theory +1603.06478 Learning +1603.06480 Dynamical Systems +1603.06483 Systems and Control +1603.06485 Artificial Intelligence +1603.06491 Classical Analysis and ODEs +1603.06494 Digital Libraries +1603.06500 Earth and Planetary Astrophysics +1603.06503 Computation and Language +1603.06504 +1603.06507 Networking and Internet Architecture +1603.06508 Fluid Dynamics +1603.06511 Numerical Analysis +1603.06513 Group Theory +1603.06517 Analysis of PDEs +1603.06525 Strongly Correlated Electrons +1603.06528 Differential Geometry +1603.06530 +1603.06531 Computer Vision and Pattern Recognition +1603.06533 Complex Variables +1603.06539 Differential Geometry +1603.06540 Instrumentation and Methods for Astrophysics +1603.06541 Machine Learning +1603.06542 Cryptography and Security +1603.06547 Logic +1603.06551 Group Theory +1603.06553 Number Theory +1603.06554 Computer Vision and Pattern Recognition +1603.06556 Probability +1603.06557 Category Theory +1603.06558 Trading and Market Microstructure +1603.06559 Geometric Topology +1603.06562 Rings and Algebras +1603.06564 Probability +physics/0310096 Biological Physics +0804.0264 Algebraic Topology +0911.0562 Pricing of Securities +1007.4531 Computer Vision and Pattern Recognition +1010.4535 Optimization and Control +1109.4994 +1202.1573 Numerical Analysis +1301.4089 Cryptography and Security +1309.6579 Representation Theory +1309.7812 Commutative Algebra +1402.6246 Data Structures and Algorithms +1403.3117 Optimization and Control +1403.4137 Algebraic Geometry +1405.5553 Solar and Stellar Astrophysics +1405.5701 Classical Analysis and ODEs +1407.0408 Phenomenology +1407.0679 Dynamical Systems +1407.2570 Materials Science +1408.5743 Number Theory +1409.7275 Computation and Language +1410.4276 Statistics Theory +1411.5116 Number Theory +1412.5548 Probability +1501.04972 Probability +1502.01941 Combinatorics +1502.02278 Metric Geometry +1502.05002 Logic +1504.01066 Commutative Algebra +1504.02784 Cosmology and Nongalactic Astrophysics +1504.04514 Analysis of PDEs +1505.00762 Logic +1505.02418 Optimization and Control +1505.02990 Group Theory +1506.04364 Learning +1507.04673 Strongly Correlated Electrons +1508.02118 +1508.07818 Probability +1509.00696 Strongly Correlated Electrons +1509.02844 Instrumentation and Detectors +1509.04423 Fluid Dynamics +1509.04678 Materials Science +1510.05502 Discrete Mathematics +1510.07330 Number Theory +1511.00280 Theory +1511.00597 Cosmology and Nongalactic Astrophysics +1511.00645 +1511.04456 +1511.05671 Information Theory +1511.05841 Phenomenology +1511.06254 Mesoscale and Nanoscale Physics +1511.09008 Cosmology and Nongalactic Astrophysics +1512.01721 Algebraic Geometry +1512.02549 Optimization and Control +1512.06116 Cosmology and Nongalactic Astrophysics +1512.08348 Combinatorics +1512.09011 Phenomenology +1601.01196 Representation Theory +1601.03453 Geometric Topology +1601.03651 Computation and Language +1601.03828 Dynamical Systems +1601.04564 Theory +1601.04975 Discrete Mathematics +1601.06149 Instrumentation and Detectors +1602.02527 Computer Science and Game Theory +1602.03687 Other Condensed Matter +1602.03752 Superconductivity +1602.03993 Commutative Algebra +1602.04141 Strongly Correlated Electrons +1602.07763 Physics and Society +1602.07844 Learning +1602.08066 Applications +1602.08182 Mesoscale and Nanoscale Physics +1602.08259 Analysis of PDEs +1602.08686 +1602.08877 Optimization and Control +1603.00638 +1603.01260 Mesoscale and Nanoscale Physics +1603.02187 Cryptography and Security +1603.02411 Mesoscale and Nanoscale Physics +1603.02456 Category Theory +1603.03394 Mesoscale and Nanoscale Physics +1603.03579 Statistical Mechanics +1603.03631 Number Theory +1603.03883 +1603.06111 Computation and Language +1603.06858 Mesoscale and Nanoscale Physics +1603.07208 Optics +1603.08104 Theory +1604.01010 Superconductivity +1604.02413 Analysis of PDEs +1604.02499 Mesoscale and Nanoscale Physics +1604.04087 Differential Geometry +1604.05080 Neurons and Cognition +1604.05476 Systems and Control +1604.06302 Discrete Mathematics +1604.08582 +1605.00213 +1605.00875 Materials Science +1605.01186 +1605.01667 Cosmology and Nongalactic Astrophysics +1605.01906 Geophysics +1605.02897 +1605.04623 Lattice +1605.05220 Commutative Algebra +1605.05737 Disordered Systems and Neural Networks +1605.06096 Information Theory +1605.07025 Machine Learning +1605.07350 +1605.07774 Computer Science and Game Theory +1606.00607 Disordered Systems and Neural Networks +1606.00798 Combinatorics +1606.01388 +1606.01464 Optics +1606.01700 Computation and Language +1606.01993 Optimization and Control +1606.03272 Functional Analysis +1606.03955 Discrete Mathematics +1606.04120 Astrophysics of Galaxies +1606.05665 Physics and Society +1606.05671 High Energy Astrophysical Phenomena +1606.06463 Strongly Correlated Electrons +1606.07138 Social and Information Networks +1606.09164 Number Theory +1606.09434 Phenomenology +1606.09502 Strongly Correlated Electrons +1607.00071 Machine Learning +1607.00125 Phenomenology +1607.00568 Strongly Correlated Electrons +1607.00970 Computation and Language +1607.01426 Computation and Language +1607.01710 Theory +1607.02195 Theory +1607.03118 +1607.03306 Databases +1607.03726 Mesoscale and Nanoscale Physics +1607.03941 +1607.06201 Data Structures and Algorithms +1607.06731 +1608.00131 Group Theory +1608.01424 Mesoscale and Nanoscale Physics +1608.01672 Operator Algebras +1608.02491 Instrumentation and Methods for Astrophysics +1608.02812 Methodology +1608.02952 Theory +1608.03149 Solar and Stellar Astrophysics +1608.04400 Fluid Dynamics +1608.04837 Robotics +1608.05220 Fluid Dynamics +1608.05854 Astrophysics of Galaxies +1608.06720 Functional Analysis +1608.06910 Artificial Intelligence +1608.08163 Geometric Topology +1608.08454 Information Theory +1609.00043 +1609.00397 +1609.00644 Chemical Physics +1609.01478 Mesoscale and Nanoscale Physics +1609.03398 Number Theory +1609.04729 Theory +1609.04733 Atomic Physics +1609.05088 Materials Science +1609.05169 Analysis of PDEs +1609.05612 +1609.05946 Classical Analysis and ODEs +1609.06398 +1609.06788 Rings and Algebras +1609.06987 Medical Physics +1609.07152 Learning +1609.07299 Data Analysis, Statistics and Probability +1609.07718 +1609.07927 Rings and Algebras +1609.08346 Instrumentation and Methods for Astrophysics +1609.08352 Quantum Gases +1609.08431 Databases +1609.08886 Machine Learning +1609.09508 Plasma Physics +1610.00192 Information Retrieval +1610.00373 Group Theory +1610.00725 Instrumentation and Detectors +1610.00807 Number Theory +1610.00958 Optics +1610.00972 Solar and Stellar Astrophysics +1610.01120 +1610.01394 Computer Vision and Pattern Recognition +1610.01454 +1610.01548 +1610.01586 Information Theory +1610.02072 Data Structures and Algorithms +1610.02551 Distributed, Parallel, and Cluster Computing +1610.02701 Optimization and Control +1610.02842 Strongly Correlated Electrons +1610.03098 Computation and Language +1610.03294 +1610.03299 +1610.03378 Data Analysis, Statistics and Probability +1610.03475 Information Theory +1610.03484 Computational Engineering, Finance, and Science +1610.03492 Astrophysics of Galaxies +1610.03533 Materials Science +1610.03722 Materials Science +1610.03825 Geometric Topology +1610.03832 Atomic Physics +1610.03839 Optimization and Control +1610.03845 Instrumentation and Detectors +1610.03849 Phenomenology +1610.03850 Astrophysics of Galaxies +1610.03854 Cosmology and Nongalactic Astrophysics +1610.03857 Astrophysics of Galaxies +1610.03862 Logic +1610.03864 Optics +1610.03865 Instrumentation and Methods for Astrophysics +1610.03867 Solar and Stellar Astrophysics +1610.03868 Operator Algebras +1610.03869 Functional Analysis +1610.03870 Differential Geometry +1610.03871 Optimization and Control +1610.03873 Combinatorics +1610.03875 Instrumentation and Detectors +1610.03876 Instrumentation and Methods for Astrophysics +1610.03878 Classical Physics +1610.03879 Fluid Dynamics +1610.03884 Analysis of PDEs +1610.03885 High Energy Astrophysical Phenomena +1610.03887 Probability +1610.03888 Combinatorics +1610.03889 Symplectic Geometry +1610.03891 Differential Geometry +1610.03892 Information Theory +1610.03894 Phenomenology +1610.03898 Computer Vision and Pattern Recognition +1610.03900 Number Theory +1610.03901 Social and Information Networks +1610.03903 Optics +1610.03904 Strongly Correlated Electrons +1610.03905 Computational Physics +1610.03907 Algebraic Topology +1610.03909 +1610.03910 Analysis of PDEs +1610.03915 Populations and Evolution +1610.03916 +1610.03917 Applications +1610.03918 Plasma Physics +1610.03919 +1610.03923 Differential Geometry +1610.03924 Combinatorics +1610.03927 Methodology +1610.03928 Social and Information Networks +1610.03929 Functional Analysis +1610.03930 Populations and Evolution +1610.03931 Commutative Algebra +1610.03932 Computational Engineering, Finance, and Science +1610.03935 Logic in Computer Science +1610.03936 Physics and Society +1610.03937 Geometric Topology +1610.03938 Methodology +1610.03939 Computation +1610.03943 Geometric Topology +1610.03944 Methodology +1610.03945 Statistics Theory +1610.03946 Computation and Language +1610.03948 Operator Algebras +1610.03950 Computation and Language +1610.03952 Theory +1610.03953 Materials Science +1610.03954 +1610.03955 Computation and Language +1610.03956 Analysis of PDEs +1610.03958 Portfolio Management +1610.03959 Combinatorics +1610.03960 Software Engineering +1610.03962 History and Overview +1610.03963 Probability +1610.03965 Functional Analysis +1610.03966 Functional Analysis +1610.03967 Strongly Correlated Electrons +1610.03968 Strongly Correlated Electrons +1610.03970 Algebraic Topology +1610.03971 Formal Languages and Automata Theory +1610.03976 Dynamical Systems +1610.03977 Rings and Algebras +1610.03978 +1610.03981 Disordered Systems and Neural Networks +1610.03983 Materials Science +1610.03984 Number Theory +1610.03986 Subcellular Processes +1610.03987 Solar and Stellar Astrophysics +1610.03988 Machine Learning +1610.03990 Information Theory +1610.03992 Rings and Algebras +1610.03993 Optics +1610.03996 Learning +1610.03999 Combinatorics +1610.04001 Dynamical Systems +1610.04002 Information Retrieval +1610.04003 Numerical Analysis +1610.04005 Artificial Intelligence +1610.04010 Data Structures and Algorithms +1610.04011 Materials Science +1610.04012 Data Structures and Algorithms +1610.04013 +1610.04015 Analysis of PDEs +1610.04018 Soft Condensed Matter +1610.04019 Machine Learning +1610.04020 Number Theory +1610.04023 Functional Analysis +1610.04024 Soft Condensed Matter +1610.04025 Cryptography and Security +1610.04027 Information Theory +1610.04028 Artificial Intelligence +1610.04031 Metric Geometry +1610.04039 Logic +1610.04041 Molecular Networks +1610.04042 Systems and Control +1610.04046 Populations and Evolution +1610.04049 Dynamical Systems +1610.04050 Logic +1610.04051 Mathematical Finance +1610.04052 Statistics Theory +1610.04055 Data Structures and Algorithms +1610.04056 Information Theory +1610.04057 Computer Vision and Pattern Recognition +1610.04058 Analysis of PDEs +1610.04062 Computer Vision and Pattern Recognition +1610.04064 Cryptography and Security +1610.04065 Cryptography and Security +1610.04066 +1610.04067 Functional Analysis +1610.04068 Mesoscale and Nanoscale Physics +1610.04070 Numerical Analysis +1610.04071 Computer Science and Game Theory +1610.04072 +1610.04073 Artificial Intelligence +1610.04074 Phenomenology +1610.04075 Phenomenology +1610.04076 Systems and Control +1610.04077 Algebraic Geometry +1610.04078 Methodology +1610.04079 Computer Vision and Pattern Recognition +1610.04083 Computational Physics +1610.04086 Information Retrieval +1610.04087 +1610.04088 +1610.04090 History and Overview +1610.04091 Systems and Control +1610.04094 +1610.04097 Computer Vision and Pattern Recognition +1610.04100 Functional Analysis +1610.04103 Representation Theory +1610.04105 Quantum Algebra +1610.04107 Applications +1610.04108 +1610.04109 Experiment +1610.04110 Superconductivity +1610.04114 Computational Physics +1610.04115 Information Theory +1610.04116 Other Quantitative Biology +1610.04117 Algebraic Geometry +1610.04118 Operator Algebras +1610.04119 Materials Science +1610.04120 Artificial Intelligence +1610.04121 Computer Vision and Pattern Recognition +1610.04122 Representation Theory +1610.04124 Computer Vision and Pattern Recognition +1610.04127 Analysis of PDEs +1610.04129 Mesoscale and Nanoscale Physics +1610.04130 Phenomenology +1610.04131 Phenomenology +1610.04134 Neurons and Cognition +1610.04135 Statistics Theory +1610.04136 Materials Science +1610.04137 Representation Theory +1610.04138 +1610.04139 Accelerator Physics +1610.04140 Instrumentation and Methods for Astrophysics +1610.04141 Human-Computer Interaction +1610.04142 Software Engineering +1610.04143 Group Theory +1610.04144 Theory +1610.04147 Analysis of PDEs +1610.04148 Plasma Physics +1610.04151 Materials Science +1610.04152 Emerging Technologies +1610.04153 Materials Science +1610.04155 +1610.04156 Mesoscale and Nanoscale Physics +1610.04158 Analysis of PDEs +1610.04159 Materials Science +1610.04160 Genomics +1610.04162 Functional Analysis +1610.04164 Mesoscale and Nanoscale Physics +1610.04165 Functional Analysis +1610.04166 Superconductivity +1610.04168 Mesoscale and Nanoscale Physics +1610.04169 Materials Science +1610.04170 Social and Information Networks +1610.04172 Analysis of PDEs +1610.04173 Instrumentation and Methods for Astrophysics +1610.04174 Information Theory +1610.04175 Physics and Society +1610.04176 Mesoscale and Nanoscale Physics +1610.04178 Instrumentation and Methods for Astrophysics +1610.04179 Optics +1610.04182 Dynamical Systems +1610.04183 Fluid Dynamics +1610.04184 Materials Science +1610.04185 Algebraic Geometry +1610.04186 Mesoscale and Nanoscale Physics +1610.04187 Combinatorics +1610.04188 Lattice +1610.04189 Cosmology and Nongalactic Astrophysics +1610.04191 Experiment +1610.04192 Information Theory +1610.04194 Optimization and Control +1610.04195 Probability +1610.04201 Neurons and Cognition +1610.04203 Networking and Internet Architecture +1610.04206 Combinatorics +1610.04208 Solar and Stellar Astrophysics +1610.04213 Robotics +1610.04216 Theory +1610.04217 Discrete Mathematics +1610.04220 Experiment +1610.04223 +cond-mat/0409538 Statistical Mechanics +hep-th/0009081 Theory +math/0112027 Differential Geometry +math/0401099 General Mathematics +0705.2524 +0709.1917 +0709.2348 Theory +0709.2447 +0710.0411 Theory +0710.0701 +0711.2519 Phenomenology +0711.3822 +0801.1711 +0802.3785 Phenomenology +0803.2228 +0804.0269 Phenomenology +0903.5459 Quantum Gases +0908.1721 Optics +1006.1010 +1012.0849 High Energy Astrophysical Phenomena +1105.2328 Combinatorics +1110.0651 Algebraic Topology +1110.3617 Materials Science +1110.6202 Cosmology and Nongalactic Astrophysics +1205.4450 Computer Vision and Pattern Recognition +1205.6724 Materials Science +1206.4284 Category Theory +1209.4005 Materials Science +1212.6498 Algebraic Topology +1301.1820 +1302.2211 Materials Science +1303.1978 Astrophysics of Galaxies +1303.6219 Theory +1304.1211 General Topology +1307.4331 Phenomenology +1308.0790 Algebraic Geometry +1309.6567 Phenomenology +1310.1562 Machine Learning +1310.3474 Cosmology and Nongalactic Astrophysics +1311.5052 Methodology +1311.5239 Materials Science +1312.0468 Statistical Mechanics +1312.6904 Algebraic Geometry +1401.2458 Earth and Planetary Astrophysics +1401.6488 Cryptography and Security +1401.6635 Algebraic Geometry +1402.1700 Statistics Theory +1402.4182 Software Engineering +1402.5357 Algebraic Geometry +1404.0417 Software Engineering +1404.6437 Materials Science +1405.0609 Mesoscale and Nanoscale Physics +1405.6309 Materials Science +1406.4388 Other Condensed Matter +1408.3927 Functional Analysis +1408.5210 Combinatorics +1409.7115 Algebraic Geometry +1410.0247 Methodology +1410.1139 Differential Geometry +1410.3479 Astrophysics of Galaxies +1411.7905 Analysis of PDEs +1412.0317 K-Theory and Homology +1412.5167 Group Theory +1502.05831 Distributed, Parallel, and Cluster Computing +1503.02205 Algebraic Geometry +1503.03869 Computational Physics +1503.08882 Number Theory +1504.03129 Geometric Topology +1504.04097 Strongly Correlated Electrons +1504.05209 Astrophysics of Galaxies +1504.06461 Robotics +1504.07210 Mesoscale and Nanoscale Physics +1504.08016 Functional Analysis +1505.07507 Soft Condensed Matter +1506.03282 Data Structures and Algorithms +1506.05128 Theory +1507.04691 K-Theory and Homology +1507.06036 Mesoscale and Nanoscale Physics +1507.07045 Computer Science and Game Theory +1508.05476 Statistics Theory +1508.06175 Optimization and Control +1508.06299 +1508.06414 Metric Geometry +1509.00410 +1509.02729 Theory +1509.02855 Probability +1509.04887 Computer Vision and Pattern Recognition +1509.05409 Cosmology and Nongalactic Astrophysics +1509.06231 Numerical Analysis +1509.06705 Spectral Theory +1509.07768 Statistical Mechanics +1509.07877 Instrumentation and Methods for Astrophysics +1509.08115 High Energy Astrophysical Phenomena +1509.08133 Chaotic Dynamics +1509.08161 Optimization and Control +1509.08568 Optimization and Control +1510.02477 Astrophysics of Galaxies +1510.04354 +1510.04822 Machine Learning +1510.06129 Cosmology and Nongalactic Astrophysics +1510.07053 Phenomenology +1510.07202 Logic +1510.08299 Biological Physics +1511.01103 Theory +1511.01586 Strongly Correlated Electrons +1511.02577 Materials Science +1511.03714 Theory +1511.04430 Phenomenology +1511.04779 Analysis of PDEs +1511.05512 Computer Vision and Pattern Recognition +1511.07697 Representation Theory +1511.09243 Dynamical Systems +1512.00113 Solar and Stellar Astrophysics +1512.00262 +1512.00277 +1512.00394 Analysis of PDEs +1512.00505 +1512.02109 +1512.02136 +1512.03834 Astrophysics of Galaxies +1512.04287 Analysis of PDEs +1512.04691 Number Theory +1512.05331 +1512.05655 Astrophysics of Galaxies +1512.08519 Strongly Correlated Electrons +1512.08597 Strongly Correlated Electrons +1601.01888 Experiment +1601.02544 +1601.03009 Earth and Planetary Astrophysics +1601.03205 Strongly Correlated Electrons +1601.03790 Information Theory +1601.04092 Astrophysics of Galaxies +1601.04624 Theory +1601.04635 Phenomenology +1601.05402 Astrophysics of Galaxies +1601.05538 Mesoscale and Nanoscale Physics +1601.05945 Earth and Planetary Astrophysics +1601.06179 Exactly Solvable and Integrable Systems +1601.06534 High Energy Astrophysical Phenomena +1601.06547 Number Theory +1601.06821 Differential Geometry +1602.00696 +1602.02230 Strongly Correlated Electrons +1602.03370 Statistical Mechanics +1602.04066 Soft Condensed Matter +1602.04729 Functional Analysis +1602.05100 Databases +1602.05125 Methodology +1602.05839 Statistical Mechanics +1602.06028 Statistics Theory +1602.06129 Lattice +1602.06472 Cosmology and Nongalactic Astrophysics +1603.00197 Combinatorics +1603.00604 Phenomenology +1603.01379 Analysis of PDEs +1603.01637 Instrumentation and Detectors +1603.01952 Phenomenology +1603.02927 Networking and Internet Architecture +1603.03432 Astrophysics of Galaxies +1603.03932 Soft Condensed Matter +1603.04779 Computer Vision and Pattern Recognition +1603.04828 Soft Condensed Matter +1603.04898 Quantum Gases +1603.05111 Optimization and Control +1603.05391 Mesoscale and Nanoscale Physics +1603.05584 Information Theory +1603.05677 Earth and Planetary Astrophysics +1603.07288 High Energy Astrophysical Phenomena +1603.07660 Systems and Control +1603.08274 Optimization and Control +1603.09718 Strongly Correlated Electrons +1604.00398 Solar and Stellar Astrophysics +1604.00960 Computational Geometry +1604.01111 Strongly Correlated Electrons +1604.01708 Classical Physics +1604.01754 Theory +1604.02891 Lattice +1604.02986 Networking and Internet Architecture +1604.02996 +1604.03714 Optimization and Control +1604.03772 Theory +1604.04179 Mesoscale and Nanoscale Physics +1604.04236 Dynamical Systems +1604.04299 Phenomenology +1604.04350 +1604.04406 Experiment +1604.05325 Theory +1604.06430 Phenomenology +1604.07113 Dynamical Systems +1604.07367 +1604.07818 Theory +1604.07848 High Energy Astrophysical Phenomena +1604.08595 Phenomenology +1604.08710 High Energy Astrophysical Phenomena +1604.08830 Analysis of PDEs +1605.00208 Experiment +1605.00291 Combinatorics +1605.00527 +1605.00669 Probability +1605.01056 Cosmology and Nongalactic Astrophysics +1605.01119 Dynamical Systems +1605.01475 Cosmology and Nongalactic Astrophysics +1605.01672 Superconductivity +1605.01763 Statistical Mechanics +1605.01975 +1605.02274 Quantum Gases +1605.02842 Astrophysics of Galaxies +1605.03120 Phenomenology +1605.03849 Statistical Mechanics +1605.04024 Phenomenology +1605.04113 Materials Science +1605.04132 Statistical Mechanics +1605.04405 Statistical Mechanics +1605.04952 Solar and Stellar Astrophysics +1605.05151 +1605.05235 High Energy Astrophysical Phenomena +1605.05350 Statistical Mechanics +1605.05368 Learning +1605.05707 Chemical Physics +1605.05986 Astrophysics of Galaxies +1605.06475 Mesoscale and Nanoscale Physics +1605.06519 Astrophysics of Galaxies +1605.06744 Numerical Analysis +1605.07616 High Energy Astrophysical Phenomena +1605.07693 Other Condensed Matter +1605.07747 Optimization and Control +1605.07816 Mesoscale and Nanoscale Physics +1605.08456 Numerical Analysis +1605.08768 Cosmology and Nongalactic Astrophysics +1605.08864 Networking and Internet Architecture +1605.09129 Theory +1605.09358 Other Condensed Matter +1605.09495 Astrophysics of Galaxies +1605.09734 Astrophysics of Galaxies +1605.09764 Mesoscale and Nanoscale Physics +1606.00194 High Energy Astrophysical Phenomena +1606.00314 High Energy Astrophysical Phenomena +1606.01868 Artificial Intelligence +1606.02635 Operating Systems +1606.02647 Learning +1606.02670 Algebraic Geometry +1606.02968 Mesoscale and Nanoscale Physics +1606.03039 Numerical Analysis +1606.03747 Cosmology and Nongalactic Astrophysics +1606.03808 Phenomenology +1606.04070 Other Condensed Matter +1606.04395 Materials Science +1606.04489 High Energy Astrophysical Phenomena +1606.04951 Lattice +1606.05263 +1606.05509 Solar and Stellar Astrophysics +1606.05608 Data Structures and Algorithms +1606.05821 Disordered Systems and Neural Networks +1606.06179 Statistics Theory +1606.06570 Distributed, Parallel, and Cluster Computing +1606.06579 Astrophysics of Galaxies +1606.06821 +1606.07072 Mesoscale and Nanoscale Physics +1606.07077 Astrophysics of Galaxies +1606.07114 Cosmology and Nongalactic Astrophysics +1606.07331 Strongly Correlated Electrons +1606.07546 Earth and Planetary Astrophysics +1606.07635 +1606.07691 Strongly Correlated Electrons +1606.07812 Phenomenology +1606.07938 Strongly Correlated Electrons +1606.08599 Mesoscale and Nanoscale Physics +1606.08744 Cosmology and Nongalactic Astrophysics +1606.08779 Statistical Mechanics +1606.08893 Data Structures and Algorithms +1606.09020 Solar and Stellar Astrophysics +1606.09206 Networking and Internet Architecture +1607.00095 +1607.00115 Instrumentation and Methods for Astrophysics +1607.00244 Phenomenology +1607.00250 +1607.00416 High Energy Astrophysical Phenomena +1607.00496 +1607.01506 Mesoscale and Nanoscale Physics +1607.01557 Number Theory +1607.01675 Phenomenology +1607.01718 Machine Learning +1607.01944 Physics and Society +1607.02353 High Energy Astrophysical Phenomena +1607.02476 +1607.02663 High Energy Astrophysical Phenomena +1607.02892 Soft Condensed Matter +1607.03382 +1607.03411 Theory +1607.03535 Astrophysics of Galaxies +1607.03687 Neurons and Cognition +1607.04007 +1607.04205 Theory +1607.04361 Analysis of PDEs +1607.04405 +1607.04414 Superconductivity +1607.04468 +1607.04553 Trading and Market Microstructure +1607.04556 Fluid Dynamics +1607.04658 Number Theory +1607.04706 Instrumentation and Methods for Astrophysics +1607.04762 Strongly Correlated Electrons +1607.05000 High Energy Astrophysical Phenomena +1607.05095 +1607.05254 Quantum Gases +1607.05379 Theory +1607.05677 Cosmology and Nongalactic Astrophysics +1607.06084 Theory +1607.06159 +1607.06268 Formal Languages and Automata Theory +1607.06354 Phenomenology +1607.06368 Solar and Stellar Astrophysics +1607.06396 Phenomenology +1607.06463 Theory +1607.06710 Earth and Planetary Astrophysics +1607.06904 Phenomenology +1607.06995 Theory +1607.07296 Cosmology and Nongalactic Astrophysics +1607.07688 Strongly Correlated Electrons +1607.07691 Materials Science +1607.07692 Solar and Stellar Astrophysics +1607.07735 High Energy Astrophysical Phenomena +1607.08076 Plasma Physics +1607.08229 Mesoscale and Nanoscale Physics +1607.08251 Phenomenology +1607.08487 High Energy Astrophysical Phenomena +1607.08564 Algebraic Geometry +1607.08614 Phenomenology +1607.08688 Phenomenology +1608.00013 Solar and Stellar Astrophysics +1608.00119 Theory +1608.00123 Solar and Stellar Astrophysics +1608.00240 Solar and Stellar Astrophysics +1608.00465 Astrophysics of Galaxies +1608.00711 Astrophysics of Galaxies +1608.00864 Quantum Gases +1608.01326 Quantum Gases +1608.01329 Cosmology and Nongalactic Astrophysics +1608.01768 Earth and Planetary Astrophysics +1608.01837 Optics +1608.01844 Sound +1608.02058 Computational Physics +1608.02471 Statistical Mechanics +1608.02583 High Energy Astrophysical Phenomena +1608.02584 Astrophysics of Galaxies +1608.02741 Optimization and Control +1608.02975 Astrophysics of Galaxies +1608.02981 Materials Science +1608.03169 Cosmology and Nongalactic Astrophysics +1608.03218 Theory +1608.03232 High Energy Astrophysical Phenomena +1608.03531 High Energy Astrophysical Phenomena +1608.03571 Earth and Planetary Astrophysics +1608.03621 Earth and Planetary Astrophysics +1608.03683 Astrophysics of Galaxies +1608.03709 Theory +1608.03799 Solar and Stellar Astrophysics +1608.03879 Mesoscale and Nanoscale Physics +1608.04432 Solar and Stellar Astrophysics +1608.04781 Astrophysics of Galaxies +1608.05158 Astrophysics of Galaxies +1608.05348 High Energy Astrophysical Phenomena +1608.05593 Instrumentation and Methods for Astrophysics +1608.05750 Astrophysics of Galaxies +1608.05804 Statistical Mechanics +1608.05853 Solar and Stellar Astrophysics +1608.06015 Solar and Stellar Astrophysics +1608.06092 +1608.06464 High Energy Astrophysical Phenomena +1608.06480 Astrophysics of Galaxies +1608.06499 Programming Languages +1608.06857 Cosmology and Nongalactic Astrophysics +1608.06962 +1608.07107 Solar and Stellar Astrophysics +1608.07172 Solar and Stellar Astrophysics +1608.07184 High Energy Astrophysical Phenomena +1608.07211 Atomic Physics +1608.07212 High Energy Astrophysical Phenomena +1608.07252 Instrumentation and Methods for Astrophysics +1608.07271 Phenomenology +1608.07798 Solar and Stellar Astrophysics +1608.08030 Algebraic Geometry +1608.08129 Astrophysics of Galaxies +1608.08224 High Energy Astrophysical Phenomena +1608.08361 Instrumentation and Methods for Astrophysics +1608.08414 Physics and Society +1608.08544 Earth and Planetary Astrophysics +1608.08741 Solar and Stellar Astrophysics +1608.08811 +1609.00009 Astrophysics of Galaxies +1609.00016 Earth and Planetary Astrophysics +1609.00146 Instrumentation and Methods for Astrophysics +1609.00252 Chemical Physics +1609.00323 +1609.00353 Theory +1609.00388 Astrophysics of Galaxies +1609.00470 Mesoscale and Nanoscale Physics +1609.00551 Earth and Planetary Astrophysics +1609.01004 Theory +1609.01079 Instrumentation and Methods for Astrophysics +1609.01095 High Energy Astrophysical Phenomena +1609.01130 Solar and Stellar Astrophysics +1609.01168 Astrophysics of Galaxies +1609.01700 Number Theory +1609.01742 Astrophysics of Galaxies +1609.01961 Computer Science and Game Theory +1609.02019 Instrumentation and Methods for Astrophysics +1609.02085 Earth and Planetary Astrophysics +1609.02203 High Energy Astrophysical Phenomena +1609.02477 Instrumentation and Methods for Astrophysics +1609.02508 High Energy Astrophysical Phenomena +1609.03725 +1609.04027 Earth and Planetary Astrophysics +1609.04063 Solar and Stellar Astrophysics +1609.04472 Materials Science +1609.04677 Earth and Planetary Astrophysics +1609.05413 Computers and Society +1609.05702 Networking and Internet Architecture +1609.05816 Phenomenology +1609.06337 Earth and Planetary Astrophysics +1609.06388 Instrumentation and Methods for Astrophysics +1609.06794 +1609.07129 High Energy Astrophysical Phenomena +1609.07188 Astrophysics of Galaxies +1609.07527 High Energy Astrophysical Phenomena +1609.07907 Information Theory +1609.08362 Soft Condensed Matter +1609.08685 Graphics +1609.08791 Solar and Stellar Astrophysics +1609.09030 Theory +1610.00280 Metric Geometry +1610.00303 Strongly Correlated Electrons +1610.00649 Solar and Stellar Astrophysics +1610.00844 Machine Learning +1610.00909 Soft Condensed Matter +1610.01181 Superconductivity +1610.01195 Number Theory +1610.01205 Algebraic Geometry +1610.01213 Programming Languages +1610.01373 High Energy Astrophysical Phenomena +1610.01378 High Energy Astrophysical Phenomena +1610.01736 Mesoscale and Nanoscale Physics +1610.02279 +1610.02369 +1610.03170 +1610.03550 Earth and Planetary Astrophysics +1610.03949 Differential Geometry +1610.03957 Computers and Society +1610.04038 Earth and Planetary Astrophysics +1610.04089 Tissues and Organs +1610.04106 Astrophysics of Galaxies +1610.04149 Representation Theory +1610.04270 High Energy Astrophysical Phenomena +1610.04448 +1610.04722 Chaotic Dynamics +1610.04911 Phenomenology +1610.05222 Mesoscale and Nanoscale Physics +1610.05428 +1610.05581 Rings and Algebras +1610.06111 Symplectic Geometry +1610.06318 Earth and Planetary Astrophysics +1610.06464 Theory +1610.06789 General Physics +1610.07279 Instrumentation and Methods for Astrophysics +1610.07916 Theory +1610.08578 +1610.08824 Numerical Analysis +1610.09220 Plasma Physics +1610.09265 Materials Science +1610.09494 Materials Science +1610.09598 Strongly Correlated Electrons +1610.09614 +1610.09938 +1610.09961 +1610.10094 Instrumentation and Methods for Astrophysics +1611.00486 Astrophysics of Galaxies +1611.00669 +1611.00746 Astrophysics of Galaxies +1611.00835 Solar and Stellar Astrophysics +1611.00901 Materials Science +1611.01154 Theory +1611.01164 Adaptation and Self-Organizing Systems +1611.01193 Lattice +1611.01221 Cosmology and Nongalactic Astrophysics +1611.01556 Operator Algebras +1611.01574 +1611.01667 Programming Languages +1611.01710 Data Structures and Algorithms +1611.01760 High Energy Astrophysical Phenomena +1611.01775 Instrumentation and Methods for Astrophysics +1611.01788 Commutative Algebra +1611.01802 Artificial Intelligence +1611.01944 Optimization and Control +1611.01960 Cryptography and Security +1611.01974 Information Retrieval +1611.02038 Optics +1611.02077 +1611.02091 Computation and Language +1611.02267 Category Theory +1611.02273 Software Engineering +1611.02274 Mathematical Software +1611.02275 Distributed, Parallel, and Cluster Computing +1611.02276 Other Quantitative Biology +1611.02277 Cell Behavior +1611.02279 Earth and Planetary Astrophysics +1611.02281 Astrophysics of Galaxies +1611.02284 +1611.02286 Astrophysics of Galaxies +1611.02288 Strongly Correlated Electrons +1611.02293 Phenomenology +1611.02294 +1611.02298 Chaotic Dynamics +1611.02299 Instrumentation and Detectors +1611.02300 Materials Science +1611.02305 Social and Information Networks +1611.02307 Materials Science +1611.02308 Data Structures and Algorithms +1611.02309 Soft Condensed Matter +1611.02310 +1611.02312 Lattice +1611.02313 Classical Analysis and ODEs +1611.02314 Methodology +1611.02315 Learning +1611.02316 Numerical Analysis +1611.02320 Neural and Evolutionary Computing +1611.02322 Physics Education +1611.02323 Computational Geometry +1611.02327 Optimization and Control +1611.02328 Phenomenology +1611.02329 Computer Science and Game Theory +1611.02333 Probability +1611.02334 Probability +1611.02335 Statistics Theory +1611.02336 Information Theory +1611.02337 Information Retrieval +1611.02338 Systems and Control +1611.02339 Analysis of PDEs +1611.02340 +1611.02342 Algebraic Geometry +1611.02343 Robotics +1611.02346 Optics +1611.02347 Differential Geometry +1611.02350 Dynamical Systems +1611.02351 Discrete Mathematics +1611.02352 Soft Condensed Matter +1611.02355 Information Theory +1611.02356 +1611.02357 Complex Variables +1611.02359 Materials Science +1611.02361 Computation and Language +1611.02362 Plasma Physics +1611.02363 Symplectic Geometry +1611.02365 Machine Learning +1611.02367 Methodology +1611.02370 Networking and Internet Architecture +1611.02371 Algebraic Geometry +1611.02373 Mesoscale and Nanoscale Physics +1611.02374 Materials Science +1611.02375 Computational Physics +1611.02376 History and Overview +1611.02377 Number Theory +1611.02379 Discrete Mathematics +1611.02380 Information Theory +1611.02381 Optimization and Control +1611.02384 Differential Geometry +1611.02385 Artificial Intelligence +1611.02387 Phenomenology +1611.02388 Social and Information Networks +1611.02390 Differential Geometry +1611.02391 Strongly Correlated Electrons +1611.02392 Programming Languages +1611.02393 +1611.02395 Mesoscale and Nanoscale Physics +1611.02396 Experiment +1611.02399 Materials Science +1611.02400 Discrete Mathematics +1611.02403 Applications +1611.02404 Disordered Systems and Neural Networks +1611.02406 Atomic Physics +1611.02408 Optimization and Control +1611.02410 Optimization and Control +1611.02412 Physics and Society +1611.02413 Lattice +1611.02414 High Energy Astrophysical Phenomena +1611.02415 +1611.02416 Learning +1611.02419 Physics and Society +1611.02420 History and Philosophy of Physics +1611.02421 Computers and Society +1611.02423 Number Theory +1611.02424 Number Theory +1611.02425 Combinatorics +1611.02427 +1611.02428 Experiment +1611.02429 Software Engineering +1611.02430 +1611.02432 Materials Science +1611.02433 Methodology +1611.02434 Probability +1611.02436 Phenomenology +1611.02439 Artificial Intelligence +1611.02440 Machine Learning +1611.02441 +1611.02443 Computer Vision and Pattern Recognition +1611.02444 +1611.02445 Distributed, Parallel, and Cluster Computing +1611.02446 Combinatorics +1611.02448 Astrophysics of Galaxies +1611.02450 Hardware Architecture +1611.02451 Soft Condensed Matter +1611.02453 Artificial Intelligence +1611.02454 Experiment +1611.02455 Combinatorics +1611.02457 Earth and Planetary Astrophysics +1611.02458 Materials Science +1611.02459 Human-Computer Interaction +1611.02460 Discrete Mathematics +1611.02461 Chemical Physics +1611.02463 Information Theory +1611.02464 Mesoscale and Nanoscale Physics +1611.02465 Numerical Analysis +1611.02466 Commutative Algebra +1611.02468 Commutative Algebra +1611.02469 Commutative Algebra +1611.02470 Complex Variables +1611.02471 Commutative Algebra +1611.02472 Information Theory +1611.02473 Probability +1611.02474 Analysis of PDEs +1611.02475 Algebraic Geometry +1611.02478 Complex Variables +1611.02480 Methodology +1611.02481 Instrumentation and Methods for Astrophysics +1611.02482 Quantitative Methods +1611.02483 Mesoscale and Nanoscale Physics +1611.02484 Functional Analysis +1611.02485 Theory +1611.02486 Representation Theory +1611.02487 Classical Analysis and ODEs +1611.02488 Networking and Internet Architecture +1611.02491 Networking and Internet Architecture +1611.02492 Computation +1611.02493 Digital Libraries +1611.02494 Networking and Internet Architecture +1611.02495 Probability +1611.02496 Distributed, Parallel, and Cluster Computing +1611.02499 Lattice +1611.02501 Group Theory +1611.02503 Materials Science +1611.02504 +1611.02506 Data Structures and Algorithms +1611.02507 Theory +1611.02510 Mesoscale and Nanoscale Physics +1611.02512 Artificial Intelligence +1611.02514 +1611.02515 +1611.02516 Software Engineering +1611.02518 Systems and Control +1611.02521 +1611.02523 Strongly Correlated Electrons +1611.02525 Computer Vision and Pattern Recognition +1611.02527 Logic +1611.02528 Logic in Computer Science +1611.02530 Applications +1611.02531 Logic +1611.02533 Lattice +1611.02534 Logic +1611.02537 Networking and Internet Architecture +1611.02538 Molecular Networks +1611.02539 Phenomenology +1611.02540 Functional Analysis +1611.02542 Logic +1611.02543 Logic +1611.02544 Strongly Correlated Electrons +1611.02545 Combinatorics +1611.02547 Economics +1611.02548 Superconductivity +1611.02549 Statistical Finance +1611.02550 Computation and Language +1611.02551 Rings and Algebras +1611.02552 Information Theory +1611.02553 Complex Variables +1611.02555 High Energy Astrophysical Phenomena +1611.02556 Statistical Finance +1611.02557 +1611.02563 Geometric Topology +1611.02564 General Physics +1611.02565 Physics and Society +1611.02566 General Physics +1611.02567 General Physics +1611.02569 Symbolic Computation +1611.02573 General Physics +1611.02576 General Physics +1611.02577 Cosmology and Nongalactic Astrophysics +1611.02579 Solar and Stellar Astrophysics +1611.02580 Soft Condensed Matter +1611.02581 Optics +1611.02582 Number Theory +1611.02583 Methodology +1611.02584 Functional Analysis +1611.02587 Group Theory +1611.02591 Algebraic Topology +1611.02592 Lattice +1611.02593 Other Condensed Matter +1611.02594 +1611.02596 Instrumentation and Methods for Astrophysics +1611.02597 Tissues and Organs +1611.02601 Number Theory +1611.02603 Systems and Control +1611.02606 Mesoscale and Nanoscale Physics +1611.02608 Probability +1611.02609 Methodology +1611.02610 Probability +1611.02614 Networking and Internet Architecture +1611.02616 Networking and Internet Architecture +1611.02617 Physics and Society +1611.02619 Software Engineering +1611.02620 +1611.02622 Theory +1611.02623 Numerical Analysis +1611.02624 Networking and Internet Architecture +1611.02626 +1611.02628 Networking and Internet Architecture +1611.02629 Information Theory +1611.02633 Materials Science +1611.02634 Solar and Stellar Astrophysics +1611.02636 Computational Physics +1611.02637 Computer Vision and Pattern Recognition +1611.02640 Analysis of PDEs +1611.02642 Networking and Internet Architecture +1611.02644 Computer Vision and Pattern Recognition +1611.02645 Rings and Algebras +1611.02646 Artificial Intelligence +1611.02649 Number Theory +1611.02650 +1611.02651 Exactly Solvable and Integrable Systems +1611.02652 Space Physics +1611.02653 Functional Analysis +1611.02654 Computation and Language +1611.02655 Numerical Analysis +1611.02656 Molecular Networks +1611.02657 Astrophysics of Galaxies +1611.02658 Plasma Physics +1611.02659 Other Computer Science +1611.02660 Information Theory +1611.02661 Astrophysics of Galaxies +1611.02662 General Physics +1611.02663 Data Structures and Algorithms +1611.02665 Distributed, Parallel, and Cluster Computing +1611.02666 Human-Computer Interaction +1611.02667 Representation Theory +1611.02668 Number Theory +1611.02669 Instrumentation and Detectors +1611.02670 Functional Analysis +1611.02673 History and Philosophy of Physics +1611.02674 Algebraic Geometry +1611.02675 Cryptography and Security +1611.02676 Symplectic Geometry +1611.02678 Accelerator Physics +1611.02679 Geometric Topology +1611.02680 +1611.02682 Human-Computer Interaction +1611.02683 Computation and Language +1611.02684 Materials Science +1611.02685 Group Theory +1611.02686 Statistics Theory +1611.02687 Solar and Stellar Astrophysics +1611.02688 Combinatorics +1611.02690 Methodology +astro-ph/0401010 +astro-ph/0401277 +astro-ph/0401296 +astro-ph/0401342 +astro-ph/0401590 +astro-ph/0401624 +astro-ph/0401632 +astro-ph/0402032 +astro-ph/0402058 +astro-ph/0402101 +astro-ph/0402178 +astro-ph/0402179 +astro-ph/0402369 +astro-ph/0402438 +astro-ph/0402677 +astro-ph/0403008 +astro-ph/0403096 +astro-ph/0403110 +astro-ph/0403290 +astro-ph/0403586 +astro-ph/0404064 +astro-ph/0404122 +astro-ph/0404254 +astro-ph/0404608 +astro-ph/0405110 +astro-ph/0409378 +astro-ph/0409496 +astro-ph/0501290 +astro-ph/0501291 +astro-ph/0501292 +astro-ph/0501293 +astro-ph/0501294 +astro-ph/0501295 +astro-ph/0503109 +astro-ph/0503475 +astro-ph/0604441 +astro-ph/0604602 +astro-ph/0605028 +astro-ph/0605166 +astro-ph/0605434 +astro-ph/0606130 +astro-ph/0608231 +astro-ph/0608526 +astro-ph/0608553 +astro-ph/0611700 +astro-ph/0611788 +astro-ph/0612052 +astro-ph/0612239 +astro-ph/0612255 +astro-ph/0612422 +astro-ph/0701230 +astro-ph/0701530 +astro-ph/0701627 +astro-ph/0701696 +astro-ph/0701835 +cond-mat/0511331 Disordered Systems and Neural Networks +cond-mat/0603190 Superconductivity +gr-qc/0201025 +gr-qc/0201029 +gr-qc/0204025 +gr-qc/0307114 +gr-qc/0308022 +gr-qc/0401003 +gr-qc/0401015 +gr-qc/0401040 +gr-qc/0401082 +gr-qc/0401087 +gr-qc/0401091 +gr-qc/0401094 +gr-qc/0401095 +gr-qc/0401096 +gr-qc/0401104 +gr-qc/0401124 +gr-qc/0401127 +gr-qc/0402002 +gr-qc/0402006 +gr-qc/0402007 +gr-qc/0402009 +gr-qc/0402010 +gr-qc/0402019 +gr-qc/0402071 +gr-qc/0402072 +gr-qc/0402073 +gr-qc/0402091 +gr-qc/0402092 +gr-qc/0402100 +gr-qc/0402115 +gr-qc/0402122 +gr-qc/0403021 +gr-qc/0403062 +gr-qc/0403086 +gr-qc/0403101 +gr-qc/0403112 +gr-qc/0405005 +gr-qc/0405043 +gr-qc/0407065 +gr-qc/0408082 +gr-qc/0409090 +gr-qc/0410042 +gr-qc/0410112 +gr-qc/0411049 +gr-qc/0508098 +gr-qc/0605036 +gr-qc/0610066 +gr-qc/0701004 +hep-ex/0503016 Experiment +hep-ex/0505002 Experiment +hep-ex/0505085 Experiment +hep-ex/0506054 Experiment +hep-ex/0506060 Experiment +hep-ex/0507058 Experiment +hep-ex/0508016 Experiment +hep-ex/0511034 Experiment +hep-ex/0604021 Experiment +hep-ex/0604028 Experiment +hep-ph/0402102 Phenomenology +hep-ph/0402142 Phenomenology +hep-ph/0402271 Phenomenology +hep-ph/0403001 Phenomenology +hep-ph/0505018 Phenomenology +hep-ph/0510211 Phenomenology +hep-ph/0602092 Phenomenology +hep-ph/0606157 Phenomenology +hep-ph/0610414 Phenomenology +hep-ph/0610433 Phenomenology +hep-ph/0612024 Phenomenology +hep-ph/0612056 Phenomenology +hep-ph/0612127 Phenomenology +hep-ph/0612141 Phenomenology +hep-ph/0701053 Phenomenology +hep-ph/0702018 Phenomenology +hep-th/0401117 Theory +hep-th/0401123 Theory +hep-th/0401124 Theory +hep-th/0401182 Theory +hep-th/0402081 Theory +hep-th/0402166 Theory +hep-th/0403054 Theory +hep-th/0403140 Theory +hep-th/0405009 Theory +hep-th/0505010 Theory +hep-th/0702200 Theory +math/0405098 Differential Geometry +math/0411278 Number Theory +nlin/0702044 Chaotic Dynamics +nucl-ex/0505001 +nucl-ex/0505004 +nucl-ex/0604017 +nucl-th/0503077 +nucl-th/0602018 +nucl-th/0602067 +nucl-th/0604039 +nucl-th/0607028 +physics/0604110 Instrumentation and Detectors +physics/0610016 Plasma Physics +physics/0611156 Instrumentation and Detectors +physics/0701118 Instrumentation and Detectors +physics/0703274 Plasma Physics +quant-ph/0308065 +0910.2511 Analysis of PDEs +1108.1306 Mesoscale and Nanoscale Physics +1109.5045 Analysis of PDEs +1203.1640 Representation Theory +1203.6276 Computation +1204.2270 Theory +1302.3358 +1304.7349 Differential Geometry +1306.0182 Combinatorics +1309.1400 Plasma Physics +1311.3203 Phenomenology +1312.4665 +1401.8249 Algebraic Geometry +1403.2166 Probability +1403.3990 Algebraic Geometry +1405.6646 Programming Languages +1407.2898 Symplectic Geometry +1407.6625 Metric Geometry +1407.6984 Analysis of PDEs +1408.4050 Methodology +1409.0428 Physics and Society +1409.1744 Physics and Society +1409.6203 Data Analysis, Statistics and Probability +1410.1654 Combinatorics +1410.2520 Logic +1411.4735 +1412.4923 Differential Geometry +1412.7298 +1412.8481 Functional Analysis +1501.00280 Numerical Analysis +1501.04024 Algebraic Geometry +1501.04227 Soft Condensed Matter +1502.02130 Computation +1502.02756 Functional Analysis +1503.05793 +1503.06297 Quantum Algebra +1504.03644 Mathematical Finance +1504.03718 Methodology +1504.04557 Representation Theory +1504.04987 +1505.00607 Metric Geometry +1505.01305 Dynamical Systems +1505.02389 Algebraic Geometry +1506.02453 Operator Algebras +1506.04168 Probability +1506.04660 Theory +1506.06669 Economics +1506.07612 Number Theory +1506.07844 Pattern Formation and Solitons +1507.00962 Soft Condensed Matter +1507.01429 Mesoscale and Nanoscale Physics +1507.02502 Metric Geometry +1507.02861 Complex Variables +1507.07001 High Energy Astrophysical Phenomena +1507.08627 High Energy Astrophysical Phenomena +1508.00225 Applications +1508.02033 Dynamical Systems +1508.06810 Optics +1509.00980 Machine Learning +1509.01165 Rings and Algebras +1509.02256 Distributed, Parallel, and Cluster Computing +1509.04552 Probability +1509.06866 Methodology +1509.07077 +1509.07292 Analysis of PDEs +1509.07312 Rings and Algebras +1509.07333 Strongly Correlated Electrons +1509.08232 Cosmology and Nongalactic Astrophysics +1510.00078 Logic +1510.02677 Combinatorics +1510.03387 Computational Complexity +1510.06476 Strongly Correlated Electrons +1510.06834 Classical Analysis and ODEs +1511.00634 Methodology +1511.01354 Robotics +1511.01565 Superconductivity +1511.01863 Applications +1511.03068 +1511.03790 Biological Physics +1511.05222 Neurons and Cognition +1511.09386 Fluid Dynamics +1512.01190 +1512.06693 Statistics Theory +1512.07808 Astrophysics of Galaxies +1512.08366 Logic in Computer Science +1601.00880 Plasma Physics +1601.02828 Computation and Language +1601.04185 Computational Physics +1601.04407 +1601.04476 Mesoscale and Nanoscale Physics +1601.05363 Analysis of PDEs +1601.05416 Theory +1601.05997 Computational Physics +1601.07392 Software Engineering +1601.08065 Statistics Theory +1601.08104 +1602.00210 Optimization and Control +1602.00441 +1602.00995 Numerical Analysis +1602.01010 K-Theory and Homology +1602.01157 Group Theory +1602.04817 Theory +1602.06300 +1602.06800 Representation Theory +1602.06895 Superconductivity +1602.07110 Differential Geometry +1602.07506 Mesoscale and Nanoscale Physics +1602.07970 Artificial Intelligence +1602.08665 Mesoscale and Nanoscale Physics +1603.00195 +1603.00243 +1603.00574 Superconductivity +1603.01238 Algebraic Geometry +1603.01302 Experiment +1603.01745 Superconductivity +1603.01811 Materials Science +1603.02444 +1603.02732 Materials Science +1603.02896 Pricing of Securities +1603.02899 Solar and Stellar Astrophysics +1603.02968 Optics +1603.03568 Phenomenology +1603.04285 Symbolic Computation +1603.04516 +1603.05079 +1603.07029 Artificial Intelligence +1603.07865 Algebraic Geometry +1603.08002 Phenomenology +1603.08542 History and Overview +1603.08700 Materials Science +1603.08848 Phenomenology +1603.09630 Computation and Language +1604.00545 Artificial Intelligence +1604.01591 Probability +1604.01634 Analysis of PDEs +1604.02011 +1604.03557 Strongly Correlated Electrons +1604.05472 Artificial Intelligence +1604.05508 Robotics +1604.06644 Formal Languages and Automata Theory +1604.06689 Dynamical Systems +1604.06783 Quantitative Methods +1604.08079 Mathematical Software +1605.00403 Theory +1605.00447 +1605.01126 Networking and Internet Architecture +1605.01921 Optics +1605.02836 Computers and Society +1605.03059 Data Structures and Algorithms +1605.04117 Spectral Theory +1605.04606 Rings and Algebras +1605.05614 Networking and Internet Architecture +1605.05804 Molecular Networks +1605.06407 Combinatorics +1605.06418 Theory +1605.07418 Complex Variables +1605.09469 Superconductivity +1606.01473 Applications +1606.01907 Solar and Stellar Astrophysics +1606.04457 Methodology +1606.04705 Cryptography and Security +1606.05170 Geometric Topology +1606.06248 Combinatorics +1606.06908 Cryptography and Security +1606.07181 Chemical Physics +1606.07762 Soft Condensed Matter +1606.07917 Biological Physics +1606.08164 Robotics +1606.09095 Neurons and Cognition +1606.09105 Chemical Physics +1606.09108 Chemical Physics +1606.09451 Instrumentation and Detectors +1607.00759 Phenomenology +1607.00983 Mesoscale and Nanoscale Physics +1607.01586 Classical Analysis and ODEs +1607.01975 Analysis of PDEs +1607.01979 Computer Vision and Pattern Recognition +1607.02265 +1607.02367 Plasma Physics +1607.02398 +1607.02882 Analysis of PDEs +1607.02919 Systems and Control +1607.03052 Group Theory +1607.03163 +1607.03264 Dynamical Systems +1607.03272 Information Theory +1607.03347 Phenomenology +1607.03434 Emerging Technologies +1607.03485 +1607.03495 High Energy Astrophysical Phenomena +1607.03498 +1607.03503 Group Theory +1607.03509 +1607.03511 Number Theory +1607.03513 Representation Theory +1607.03514 Plasma Physics +1607.03515 Dynamical Systems +1607.03519 Information Theory +1607.03525 Differential Geometry +1607.03526 Probability +1607.03527 Classical Analysis and ODEs +1607.03528 Quantum Gases +1607.03531 Number Theory +1607.03533 Optimization and Control +1607.03534 Applications +1607.03543 Solar and Stellar Astrophysics +1607.03545 Probability +1607.03549 Experiment +1607.03550 Operator Algebras +1607.03555 Mesoscale and Nanoscale Physics +1607.03556 Numerical Analysis +1607.03557 K-Theory and Homology +1607.03559 Learning +1607.03565 +1607.03566 Optimization and Control +1607.03572 Information Theory +1607.03573 Spectral Theory +1607.03575 Computers and Society +1607.03576 General Topology +1607.03578 Human-Computer Interaction +1607.03579 Instrumentation and Methods for Astrophysics +1607.03581 Information Theory +1607.03582 Strongly Correlated Electrons +1607.03583 Computer Science and Game Theory +1607.03587 Functional Analysis +1607.03588 Materials Science +1607.03589 Materials Science +1607.03590 Materials Science +1607.03598 Combinatorics +1607.03601 Probability +1607.03603 Logic +1607.03604 Probability +1607.03606 Combinatorics +1607.03607 Networking and Internet Architecture +1607.03609 Analysis of PDEs +1607.03610 Probability +1607.03612 Number Theory +1607.03613 Number Theory +1607.03614 Probability +1607.03615 Machine Learning +1607.03617 Statistical Mechanics +1607.03619 Probability +1607.03620 Experiment +1607.03623 Analysis of PDEs +1607.03626 Learning +1607.03627 Symplectic Geometry +1607.03628 Phenomenology +1607.03629 Cryptography and Security +1607.03631 Probability +1607.03634 Complex Variables +1607.03637 +1607.03639 Mesoscale and Nanoscale Physics +1607.03640 Phenomenology +1607.03643 Materials Science +1607.03644 Algebraic Topology +1607.03646 Atomic Physics +1607.03649 Software Engineering +1607.03651 Combinatorics +1607.03652 Algebraic Topology +1607.03655 Group Theory +1607.03658 Solar and Stellar Astrophysics +1607.03659 Cryptography and Security +1607.03661 Probability +1607.03662 Analysis of PDEs +1607.03664 Symplectic Geometry +1607.03665 Information Theory +1607.03667 Algebraic Geometry +1607.03668 Analysis of PDEs +1607.03670 Number Theory +1607.03671 Information Theory +1607.03672 Soft Condensed Matter +1607.03675 Methodology +1607.03676 Analysis of PDEs +1607.03677 Distributed, Parallel, and Cluster Computing +1607.03680 Earth and Planetary Astrophysics +1607.03683 Information Theory +1607.03685 Computer Science and Game Theory +1607.03690 Functional Analysis +1607.03691 Learning +1607.03692 +1607.03694 Physics and Society +1607.03696 Statistical Mechanics +1607.03698 Methodology +1607.03702 +1607.03703 Probability +1607.03704 +1607.03705 Artificial Intelligence +1607.03706 Phenomenology +1607.03707 Computation and Language +1607.03708 Complex Variables +1607.03717 Methodology +1607.03718 Data Structures and Algorithms +1607.03720 Fluid Dynamics +1607.03721 Theory +1607.03722 Solar and Stellar Astrophysics +1607.03723 +1607.03727 Group Theory +1607.03730 Machine Learning +1607.03731 Atomic Physics +1607.03733 Programming Languages +1607.03734 +1607.03736 Physics Education +1607.03737 Information Theory +1607.03739 Other Computer Science +1607.03740 Cosmology and Nongalactic Astrophysics +1607.03741 Algebraic Geometry +1607.03744 Differential Geometry +1607.03746 Combinatorics +1607.03747 Logic in Computer Science +1607.03748 Software Engineering +1607.03750 Phenomenology +1607.03752 Methodology +1607.03755 Computational Physics +1607.03760 Logic in Computer Science +1607.03761 Phenomenology +1607.03764 Biomolecules +1607.03765 Applications +1607.03766 Sound +1607.03767 Earth and Planetary Astrophysics +1607.03774 Astrophysics of Galaxies +1607.03775 Methodology +1607.03780 Computation and Language +1607.03783 Biomolecules +1607.03785 Computer Vision and Pattern Recognition +1607.03786 Distributed, Parallel, and Cluster Computing +1607.03787 Information Theory +1607.03788 Probability +1607.03790 Group Theory +1607.03792 Machine Learning +1607.03794 Molecular Networks +1607.03797 +1607.03798 Group Theory +1607.03799 Astrophysics of Galaxies +1607.03800 Symplectic Geometry +1607.03802 Optimization and Control +1607.03804 Mesoscale and Nanoscale Physics +1607.03805 Metric Geometry +1607.03807 Algebraic Geometry +1607.03810 Computational Complexity +1607.03813 Mesoscale and Nanoscale Physics +1607.03814 Algebraic Geometry +1607.03816 Analysis of PDEs +1607.03818 High Energy Astrophysical Phenomena +1607.03819 Logic in Computer Science +1607.03821 Computer Science and Game Theory +1607.03822 Machine Learning +1607.03823 +1607.03825 Earth and Planetary Astrophysics +1607.03827 Robotics +1607.03830 Distributed, Parallel, and Cluster Computing +1607.03834 Quantum Algebra +1607.03837 Popular Physics +1607.03839 +1607.03842 Machine Learning +1607.03846 Number Theory +1607.03847 Accelerator Physics +1607.03852 Analysis of PDEs +1607.03859 +1607.03862 Functional Analysis +1607.03863 General Mathematics +1607.03865 Complex Variables +1607.03869 General Mathematics +1607.03873 +1607.03878 Phenomenology +1607.03881 Social and Information Networks +0802.3471 Representation Theory +0907.0454 Geometric Topology +1009.2937 History and Overview +1009.2938 History and Overview +1009.2939 History and Overview +1103.5906 Number Theory +1112.0729 Phenomenology +1202.2678 Cosmology and Nongalactic Astrophysics +1202.2822 Dynamical Systems +1203.1583 Representation Theory +1208.2157 Computation +1307.0048 Machine Learning +1307.3292 Classical Analysis and ODEs +1309.0797 Spectral Theory +1309.2660 Robotics +1311.3347 Geometric Topology +1312.0331 +1401.2404 General Physics +1401.6104 Theory +1403.1235 +1403.2938 Classical Analysis and ODEs +1403.6682 Rings and Algebras +1404.0058 Applications +1404.2791 Spectral Theory +1404.3367 Probability +1407.4924 +1407.5472 Methodology +1410.1442 Algebraic Geometry +1410.6148 Geometric Topology +1410.6338 Computational Physics +1410.6798 Number Theory +1411.0729 +1411.7176 Phenomenology +1411.7360 Algebraic Topology +1411.7969 +1412.2427 +1412.5844 Statistics Theory +1412.6051 Cosmology and Nongalactic Astrophysics +1412.6520 Applications +1412.6952 Systems and Control +1412.7151 Phenomenology +1501.03209 Neural and Evolutionary Computing +1501.03250 Probability +1501.07345 Numerical Analysis +1501.07434 Analysis of PDEs +1502.00519 Differential Geometry +1502.00545 Other Condensed Matter +1502.00826 Metric Geometry +1502.00978 Logic +1502.03240 Computer Vision and Pattern Recognition +1502.06701 Earth and Planetary Astrophysics +1503.07062 Materials Science +1503.08122 Earth and Planetary Astrophysics +1503.08490 Optimization and Control +1503.08714 +1504.02043 Differential Geometry +1504.04790 Mesoscale and Nanoscale Physics +1504.05312 High Energy Astrophysical Phenomena +1504.05605 Algebraic Geometry +1505.01561 Mesoscale and Nanoscale Physics +1505.03066 Earth and Planetary Astrophysics +1505.04571 Phenomenology +1505.07403 Analysis of PDEs +1506.00431 +1506.02387 +1506.02480 Statistical Mechanics +1506.04714 Computer Vision and Pattern Recognition +1506.05905 Computational Engineering, Finance, and Science +1506.06458 +1506.07218 +1506.07569 Astrophysics of Galaxies +1507.03409 Computer Vision and Pattern Recognition +1507.03779 Statistical Mechanics +1507.04441 Human-Computer Interaction +1507.06139 +1507.06553 Mesoscale and Nanoscale Physics +1507.08455 Chaotic Dynamics +1507.08931 Differential Geometry +1508.00955 Solar and Stellar Astrophysics +1508.02087 Optimization and Control +1508.06363 Fluid Dynamics +1509.00582 Statistical Mechanics +1509.00831 +1509.03599 +1509.04044 Experiment +1509.05867 High Energy Astrophysical Phenomena +1509.07838 Computer Vision and Pattern Recognition +1510.00702 Cosmology and Nongalactic Astrophysics +1510.00987 Quantum Gases +1510.01460 Materials Science +1510.01954 Differential Geometry +1510.03085 Subcellular Processes +1510.04282 Disordered Systems and Neural Networks +1510.04320 Methodology +1510.05751 Computational Engineering, Finance, and Science +1510.05866 Strongly Correlated Electrons +1510.07130 Applications +1511.00109 Mesoscale and Nanoscale Physics +1511.00443 Atomic Physics +1511.01096 Cosmology and Nongalactic Astrophysics +1511.02296 Computer Science and Game Theory +1511.03037 Strongly Correlated Electrons +1511.03482 Theory +1511.05041 Astrophysics of Galaxies +1511.05639 Populations and Evolution +1511.06078 Computer Vision and Pattern Recognition +1511.06503 Mesoscale and Nanoscale Physics +1511.06973 Computer Vision and Pattern Recognition +1511.08121 Dynamical Systems +1512.00565 Theory +1512.01349 Rings and Algebras +1512.01414 Complex Variables +1512.01612 Probability +1512.02144 Mesoscale and Nanoscale Physics +1512.02696 +1512.02809 Quantum Gases +1512.02849 Rings and Algebras +1512.04611 Symplectic Geometry +1512.04796 Mesoscale and Nanoscale Physics +1512.05283 Cosmology and Nongalactic Astrophysics +1512.06419 Number Theory +1512.06729 Instrumentation and Detectors +1512.07425 Plasma Physics +1512.07907 Phenomenology +1512.08827 Earth and Planetary Astrophysics +1601.00434 Quantum Gases +1601.00677 +1601.02080 High Energy Astrophysical Phenomena +1601.02787 Phenomenology +1601.02871 Algebraic Geometry +1601.03560 Plasma Physics +1601.04022 +1601.04303 +1601.04791 Materials Science +1601.04815 Superconductivity +1601.05150 Computer Vision and Pattern Recognition +1601.05973 Instrumentation and Methods for Astrophysics +1601.06078 Geophysics +1601.07440 Mesoscale and Nanoscale Physics +1602.00884 Soft Condensed Matter +1602.01318 Mesoscale and Nanoscale Physics +1602.01412 Distributed, Parallel, and Cluster Computing +1602.01590 Rings and Algebras +1602.02573 K-Theory and Homology +1602.02599 Fluid Dynamics +1602.02702 Solar and Stellar Astrophysics +1602.03082 Theory +1602.05585 Mesoscale and Nanoscale Physics +1602.05859 Theory +1602.06867 Computational Complexity +1602.07200 Rings and Algebras +1603.00560 Computer Vision and Pattern Recognition +1603.01802 High Energy Astrophysical Phenomena +1603.01809 High Energy Astrophysical Phenomena +1603.03896 Mesoscale and Nanoscale Physics +1603.04438 Astrophysics of Galaxies +1603.04595 Computer Vision and Pattern Recognition +1603.05001 Quantum Gases +1603.06454 Mesoscale and Nanoscale Physics +1603.06652 Combinatorics +1603.06676 +1603.07451 Phenomenology +1603.08349 Optics +1603.09412 Number Theory +1604.00978 High Energy Astrophysical Phenomena +1604.01087 +1604.01182 Exactly Solvable and Integrable Systems +1604.01219 Artificial Intelligence +1604.02504 Distributed, Parallel, and Cluster Computing +1604.02698 History and Overview +1604.02706 Information Theory +1604.02747 Networking and Internet Architecture +1604.02903 Phenomenology +1604.03579 Differential Geometry +1604.03687 Emerging Technologies +1604.03752 General Mathematics +1604.03864 Physics and Society +1604.03877 Information Theory +1604.03935 Medical Physics +1604.03947 Mesoscale and Nanoscale Physics +1604.03949 Superconductivity +1604.03954 Combinatorics +1604.03956 +1604.03959 +1604.03960 Analysis of PDEs +1604.03962 Logic in Computer Science +1604.03968 Computation and Language +1604.03972 Soft Condensed Matter +1604.03973 +1604.03974 +1604.03976 +1604.03977 Phenomenology +1604.03979 Earth and Planetary Astrophysics +1604.03982 Atomic Physics +1604.03986 Learning +1604.03987 Algebraic Geometry +1604.03989 Materials Science +1604.03992 Materials Science +1604.03993 Probability +1604.03997 Metric Geometry +1604.04005 General Topology +1604.04006 Hardware Architecture +1604.04007 Information Retrieval +1604.04009 Networking and Internet Architecture +1604.04010 Strongly Correlated Electrons +1604.04016 Strongly Correlated Electrons +1604.04021 Information Theory +1604.04023 Number Theory +1604.04026 Optimization and Control +1604.04028 Combinatorics +1604.04037 Geometric Topology +1604.04041 Astrophysics of Galaxies +1604.04046 Algebraic Geometry +1604.04047 Mesoscale and Nanoscale Physics +1604.04048 Computer Vision and Pattern Recognition +1604.04050 Atmospheric and Oceanic Physics +1604.04051 Optimization and Control +1604.04052 Numerical Analysis +1604.04054 Machine Learning +1604.04056 Superconductivity +1604.04058 Probability +1604.04060 Analysis of PDEs +1604.04063 Soft Condensed Matter +1604.04064 Physics and Society +1604.04070 Commutative Algebra +1604.04072 Combinatorics +1604.04073 Dynamical Systems +1604.04079 Probability +1604.04085 Phenomenology +1604.04089 Atomic Physics +1604.04090 Rings and Algebras +1604.04091 Classical Analysis and ODEs +1604.04094 Optics +1604.04095 Computer Science and Game Theory +1604.04096 Artificial Intelligence +1604.04100 Analysis of PDEs +1604.04103 Distributed, Parallel, and Cluster Computing +1604.04107 Optics +1604.04113 Optics +1604.04116 Earth and Planetary Astrophysics +1604.04117 Differential Geometry +1604.04119 Operator Algebras +1604.04120 Classical Analysis and ODEs +1604.04122 Solar and Stellar Astrophysics +1604.04125 Computer Vision and Pattern Recognition +1604.04131 Functional Analysis +1604.04133 Soft Condensed Matter +1604.04134 Differential Geometry +1604.04135 Numerical Analysis +1604.04138 Neural and Evolutionary Computing +1604.04139 Formal Languages and Automata Theory +1604.04140 Combinatorics +1604.04141 Rings and Algebras +1604.04142 Computer Vision and Pattern Recognition +1604.04144 Computer Vision and Pattern Recognition +1604.04146 Neural and Evolutionary Computing +1604.04152 High Energy Astrophysical Phenomena +1604.04153 Neural and Evolutionary Computing +1604.04154 Optimization and Control +1604.04156 Dynamical Systems +1604.04157 Computer Science and Game Theory +1604.04158 Systems and Control +1604.04161 Statistical Mechanics +1604.04166 Information Theory +1604.04167 Computers and Society +1604.04169 Optimization and Control +1604.04171 Atomic Physics +1604.04172 Optimization and Control +1604.04176 Commutative Algebra +1604.04177 Analysis of PDEs +1604.04180 Multiagent Systems +1604.04182 Learning +1604.04185 Databases +1604.04187 Differential Geometry +1604.04188 Algebraic Topology +1604.04189 Analysis of PDEs +1604.04191 Machine Learning +1604.04192 Geometric Topology +1604.04197 Logic in Computer Science +1604.04199 Instrumentation and Methods for Astrophysics +1604.04200 Materials Science +1604.04204 Number Theory +1604.04205 Distributed, Parallel, and Cluster Computing +1604.04206 Distributed, Parallel, and Cluster Computing +1604.04209 Number Theory +1604.04210 Instrumentation and Detectors +1604.04211 Methodology +1604.04214 Neurons and Cognition +1604.04217 Distributed, Parallel, and Cluster Computing +1604.04220 Information Theory +1604.04223 Economics +1604.04224 Optimization and Control +1604.04226 Fluid Dynamics +1604.04235 Applications +1604.04238 Representation Theory +1604.04240 Logic in Computer Science +1604.04241 Chemical Physics +1604.04243 Number Theory +1604.04249 Strongly Correlated Electrons +1604.04255 Analysis of PDEs +1604.04256 Information Theory +1604.04258 Representation Theory +1604.04260 Geometric Topology +1604.04261 Dynamical Systems +1604.04264 Methodology +1604.04265 Cryptography and Security +1604.04267 Numerical Analysis +1604.04270 Physics and Society +1604.04271 Combinatorics +1604.04272 Numerical Analysis +1604.04273 Geometric Topology +1604.04274 Numerical Analysis +1604.04281 Mesoscale and Nanoscale Physics +0803.3841 Algebraic Geometry +0809.3366 Commutative Algebra +0903.4546 Dynamical Systems +0906.1412 +0911.5129 Rings and Algebras +1001.3235 Commutative Algebra +1001.3238 Commutative Algebra +1001.4375 Commutative Algebra +1003.4495 Commutative Algebra +1009.0645 Cosmology and Nongalactic Astrophysics +1101.1670 General Physics +1102.4521 Algebraic Geometry +1103.4010 Algebraic Geometry +1104.3401 +1106.0381 Commutative Algebra +1111.2754 Algebraic Geometry +1202.0510 Algebraic Geometry +1202.1964 Statistics Theory +1203.5382 Algebraic Geometry +1207.2071 Commutative Algebra +1207.6256 Rings and Algebras +1207.6536 Cryptography and Security +1208.2582 Plasma Physics +1210.0575 Mesoscale and Nanoscale Physics +1303.2081 Cosmology and Nongalactic Astrophysics +1305.0024 Algebraic Geometry +1306.0868 General Physics +1306.4016 Algebraic Geometry +1306.5615 Cryptography and Security +1307.4493 Atomic Physics +1309.3341 K-Theory and Homology +1310.7834 Data Structures and Algorithms +1310.8523 Classical Analysis and ODEs +1311.5668 Algebraic Topology +1311.6883 Computer Science and Game Theory +1312.7594 Probability +1401.5123 Dynamical Systems +1402.0135 Operator Algebras +1402.6477 Probability +1403.0303 Combinatorics +1406.1816 +1406.4440 High Energy Astrophysical Phenomena +1407.5272 Statistics Theory +1408.0471 Phenomenology +1408.0943 Discrete Mathematics +1410.2321 Number Theory +1410.7180 Optimization and Control +1411.3025 Algebraic Geometry +1411.4434 High Energy Astrophysical Phenomena +1412.8343 Number Theory +1501.01899 Classical Analysis and ODEs +1501.03717 Probability +1501.04523 Commutative Algebra +1502.00857 +1502.03688 Adaptation and Self-Organizing Systems +1503.00068 Classical Analysis and ODEs +1503.00212 Mesoscale and Nanoscale Physics +1503.00350 Populations and Evolution +1503.00822 Algebraic Geometry +1503.02649 Solar and Stellar Astrophysics +1503.02650 Earth and Planetary Astrophysics +1503.02652 Astrophysics of Galaxies +1503.03303 Number Theory +1503.03537 Social and Information Networks +1503.03976 Probability +1503.04121 Complex Variables +1503.04360 Optimization and Control +1503.07290 Analysis of PDEs +1504.00400 Dynamical Systems +1504.03158 +1504.03453 +1504.03472 +1504.03856 Computational Complexity +1504.04877 Instrumentation and Methods for Astrophysics +1505.00232 Numerical Analysis +1505.04343 Machine Learning +1506.00776 Probability +1506.07029 Optimization and Control +1507.01382 Dynamical Systems +1507.05512 Materials Science +1507.07376 Statistical Mechanics +1507.07398 Computational Physics +1508.01510 +1508.02865 Systems and Control +1508.07510 +1509.04776 Experiment +1509.04812 +1510.04538 Functional Analysis +1510.06043 Dynamical Systems +1510.06421 Optimization and Control +1510.06441 Number Theory +1510.06699 +1511.01866 Algebraic Geometry +1511.03106 Symplectic Geometry +1511.03673 Cosmology and Nongalactic Astrophysics +1511.03761 Methodology +1511.04033 Statistics Theory +1511.07524 Algebraic Geometry +1511.09259 Data Structures and Algorithms +1512.00246 Astrophysics of Galaxies +1512.00369 Optimization and Control +1512.01100 Computation and Language +1512.01118 Solar and Stellar Astrophysics +1512.02625 Materials Science +1512.05488 Chemical Physics +1512.06403 Geometric Topology +1512.06687 Phenomenology +1512.07428 Fluid Dynamics +1512.09307 +1601.02157 +1601.05502 Statistical Mechanics +1601.05551 +1601.06433 Spectral Theory +1601.07193 +1601.08112 Information Theory +1602.02690 Optimization and Control +1602.05535 Combinatorics +1602.05773 Materials Science +1602.07081 +1602.08561 +1602.08960 Computer Vision and Pattern Recognition +1603.02509 +1603.03058 Astrophysics of Galaxies +1603.04139 Computer Vision and Pattern Recognition +1603.06537 High Energy Astrophysical Phenomena +1603.06845 Mesoscale and Nanoscale Physics +1603.07333 High Energy Astrophysical Phenomena +1603.08251 Differential Geometry +1603.09473 Information Retrieval +1603.09620 Learning +1604.00255 Physics and Society +1604.00735 Analysis of PDEs +1604.01565 Statistical Mechanics +1604.01742 Geophysics +1604.02888 High Energy Astrophysical Phenomena +1604.03212 Software Engineering +1604.03712 +1604.04263 Experiment +1604.07162 +1604.07751 Computer Vision and Pattern Recognition +1604.08149 Combinatorics +1604.08602 Theory +1605.00539 Mesoscale and Nanoscale Physics +1605.01428 Materials Science +1605.05092 +1605.05626 Algebraic Geometry +1605.05794 +1605.05874 Strongly Correlated Electrons +1605.06651 Learning +1605.07802 Number Theory +1605.08170 Mesoscale and Nanoscale Physics +1605.09067 Group Theory +1606.00157 Neural and Evolutionary Computing +1606.01118 Experiment +1606.01123 +1606.01541 Computation and Language +1606.01948 Algebraic Geometry +1606.03142 Geometric Topology +1606.05067 Applications +1606.05995 Networking and Internet Architecture +1606.08235 Statistical Mechanics +1606.08307 +1606.08507 Biological Physics +1606.09091 Cosmology and Nongalactic Astrophysics +1606.09591 Phenomenology +1607.00173 Theory +1607.00469 Number Theory +1607.00975 +1607.00981 Classical Analysis and ODEs +1607.01191 Mathematical Software +1607.01498 Theory +1607.02270 Quantum Gases +1607.02354 Instrumentation and Detectors +1607.03335 Statistical Mechanics +1607.03745 Experiment +1607.04472 Operator Algebras +1607.04587 Disordered Systems and Neural Networks +1607.04941 Mesoscale and Nanoscale Physics +1607.06085 Strongly Correlated Electrons +1607.07401 Mesoscale and Nanoscale Physics +1607.08672 Cosmology and Nongalactic Astrophysics +1608.00009 Astrophysics of Galaxies +1608.00136 +1608.01448 Computation and Language +1608.03132 Instrumentation and Methods for Astrophysics +1608.04005 Neurons and Cognition +1608.04436 Numerical Analysis +1608.05655 Applications +1608.05943 Differential Geometry +1608.08784 Classical Analysis and ODEs +1608.08969 Phenomenology +1609.00253 Lattice +1609.02648 +1609.02653 +1609.02713 Solar and Stellar Astrophysics +1609.02714 Rings and Algebras +1609.02801 +1609.02835 Information Theory +1609.02863 Optics +1609.03030 Phenomenology +1609.03253 Analysis of PDEs +1609.04077 Group Theory +1609.04525 Representation Theory +1609.05563 Software Engineering +1609.05908 Solar and Stellar Astrophysics +1609.06030 Materials Science +1609.06227 Mesoscale and Nanoscale Physics +1609.06229 Logic +1609.06470 Physics and Society +1609.06750 Phenomenology +1609.06804 Learning +1609.06993 Theory +1609.07160 Neural and Evolutionary Computing +1609.07226 Symplectic Geometry +1609.07258 Functional Analysis +1609.07259 Instrumentation and Methods for Astrophysics +1609.07494 Methodology +1609.07535 Superconductivity +1609.07641 Superconductivity +1609.07686 +1609.07836 Phenomenology +1609.08023 Materials Science +1609.08151 Learning +1609.08161 Atomic Physics +1609.08341 Astrophysics of Galaxies +1609.08349 Learning +1609.08430 Analysis of PDEs +1609.08651 Tissues and Organs +1609.08673 Soft Condensed Matter +1609.08697 Optimization and Control +1609.08736 Computational Physics +1609.08819 Optics +1609.08971 Functional Analysis +1609.09051 Quantitative Methods +1609.09062 Databases +1609.09063 Strongly Correlated Electrons +1609.09064 Instrumentation and Detectors +1609.09065 Computers and Society +1609.09066 Computers and Society +1609.09067 Computers and Society +1609.09068 Data Structures and Algorithms +1609.09071 Solar and Stellar Astrophysics +1609.09080 Strongly Correlated Electrons +1609.09083 Theory +1609.09084 Superconductivity +1609.09087 Disordered Systems and Neural Networks +1609.09089 Quantum Gases +1609.09096 Probability +1609.09097 Solar and Stellar Astrophysics +1609.09098 Combinatorics +1609.09101 Solar and Stellar Astrophysics +1609.09103 Systems and Control +1609.09104 Phenomenology +1609.09108 High Energy Astrophysical Phenomena +1609.09110 Theory +1609.09111 Phenomenology +1609.09113 Theory +1609.09114 High Energy Astrophysical Phenomena +1609.09115 Combinatorics +1609.09116 Learning +1609.09117 Optics +1609.09118 Combinatorics +1609.09119 Complex Variables +1609.09121 Dynamical Systems +1609.09122 Combinatorics +1609.09129 +1609.09130 Mesoscale and Nanoscale Physics +1609.09131 Mesoscale and Nanoscale Physics +1609.09132 Symplectic Geometry +1609.09133 Number Theory +1609.09137 +1609.09140 +1609.09141 Probability +1609.09144 Biological Physics +1609.09145 Biological Physics +1609.09146 Mesoscale and Nanoscale Physics +1609.09147 Statistics Theory +1609.09148 High Energy Astrophysical Phenomena +1609.09149 Combinatorics +1609.09151 Analysis of PDEs +1609.09152 Information Retrieval +1609.09154 Distributed, Parallel, and Cluster Computing +1609.09155 Strongly Correlated Electrons +1609.09157 Cryptography and Security +1609.09158 Neural and Evolutionary Computing +1609.09160 +1609.09161 Information Theory +1609.09162 Learning +1609.09163 Materials Science +1609.09164 Complex Variables +1609.09167 Information Theory +1609.09168 Number Theory +1609.09172 Databases +1609.09173 Probability +1609.09174 Computation +1609.09178 Learning +1609.09180 Disordered Systems and Neural Networks +1609.09181 Populations and Evolution +1609.09182 Number Theory +1609.09184 +1609.09185 Atmospheric and Oceanic Physics +1609.09187 Phenomenology +1609.09188 Computation and Language +1609.09189 Computation and Language +1609.09191 +1609.09192 Symplectic Geometry +1609.09194 Learning +1609.09195 Dynamical Systems +1609.09196 Machine Learning +1609.09198 Superconductivity +1609.09199 Learning +1609.09200 Superconductivity +1609.09202 Molecular Networks +1609.09206 Systems and Control +1609.09207 +1609.09208 Mesoscale and Nanoscale Physics +1609.09211 Distributed, Parallel, and Cluster Computing +1609.09212 Data Analysis, Statistics and Probability +1609.09213 Optics +1609.09216 Commutative Algebra +1609.09217 Mesoscale and Nanoscale Physics +1609.09218 Chaotic Dynamics +1609.09219 Cryptography and Security +1609.09220 Computer Vision and Pattern Recognition +1609.09221 +1609.09223 +1609.09225 Geophysics +1609.09227 Computer Vision and Pattern Recognition +1609.09228 Phenomenology +1609.09229 Functional Analysis +1609.09230 Numerical Analysis +1609.09235 Phenomenology +1609.09236 Information Theory +1609.09237 +1609.09238 Probability +1609.09239 Optics +1609.09240 Computer Vision and Pattern Recognition +1609.09244 High Energy Astrophysical Phenomena +1609.09246 Commutative Algebra +1609.09247 Computation and Language +1609.09249 Phenomenology +1609.09251 Computer Vision and Pattern Recognition +1609.09253 Artificial Intelligence +1609.09256 Algebraic Geometry +1609.09258 Statistical Mechanics +1609.09261 Materials Science +1609.09263 Probability +1609.09265 Soft Condensed Matter +1609.09266 Fluid Dynamics +1609.09267 Robotics +1609.09268 Solar and Stellar Astrophysics +1609.09271 Mesoscale and Nanoscale Physics +1609.09272 Methodology +1609.09277 Analysis of PDEs +1609.09278 Methodology +1609.09279 Solar and Stellar Astrophysics +1609.09280 Numerical Analysis +1609.09281 Distributed, Parallel, and Cluster Computing +1609.09282 Probability +1609.09283 Probability +1609.09284 Soft Condensed Matter +1609.09285 Algebraic Geometry +1609.09286 Computation +1609.09287 Statistics Theory +1609.09292 Logic +1609.09293 Classical Analysis and ODEs +1609.09294 Performance +1609.09296 Computer Vision and Pattern Recognition +1609.09297 Category Theory +1609.09299 Theory +1609.09304 Data Structures and Algorithms +1609.09306 Symplectic Geometry +1609.09307 Materials Science +1609.09309 Strongly Correlated Electrons +1609.09314 Networking and Internet Architecture +1609.09315 Computation and Language +1609.09316 Pattern Formation and Solitons +1609.09319 Number Theory +1609.09321 Combinatorics +1609.09322 High Energy Astrophysical Phenomena +1609.09323 Soft Condensed Matter +1609.09324 Experiment +1609.09325 Astrophysics of Galaxies +1609.09326 Tissues and Organs +1609.09327 Probability +1609.09329 Cryptography and Security +1609.09331 Statistics Theory +1609.09332 Differential Geometry +1609.09333 Distributed, Parallel, and Cluster Computing +1609.09334 Number Theory +1609.09335 Probability +1609.09336 Number Theory +1609.09337 Functional Analysis +1609.09338 Probability +1609.09340 Databases +1609.09341 Computer Science and Game Theory +1609.09342 +1609.09344 Chaotic Dynamics +1609.09348 Statistical Mechanics +1609.09350 Quantum Gases +1609.09351 Chemical Physics +1609.09352 Representation Theory +1609.09354 Chaotic Dynamics +1609.09356 Number Theory +1609.09357 Differential Geometry +1609.09360 High Energy Astrophysical Phenomena +1609.09362 +1609.09363 High Energy Astrophysical Phenomena +1609.09366 Biological Physics +1609.09368 Networking and Internet Architecture +1609.09369 Optimization and Control +1609.09374 Probability +1609.09376 Instrumentation and Methods for Astrophysics +1609.09377 Cosmology and Nongalactic Astrophysics +1609.09379 Number Theory +1609.09380 Methodology +1609.09382 Computation and Language +1609.09384 Rings and Algebras +1609.09385 +1609.09387 Probability +1609.09390 Sound +1609.09394 Analysis of PDEs +1609.09395 Systems and Control +1609.09398 +1609.09400 History and Philosophy of Physics +1609.09401 Quantum Gases +1609.09404 Fluid Dynamics +1609.09407 Combinatorics +1609.09409 Differential Geometry +1609.09410 Analysis of PDEs +1609.09411 Physics and Society +1609.09412 Optics +1609.09413 Physics and Society +1609.09417 Strongly Correlated Electrons +1609.09420 Accelerator Physics +1609.09421 Other Quantitative Biology +1609.09425 Numerical Analysis +1609.09426 +1609.09428 Instrumentation and Methods for Astrophysics +1609.09429 Applications +1609.09432 Machine Learning +1609.09434 Materials Science +1609.09436 +1609.09437 Optimization and Control +1609.09439 Dynamical Systems +1609.09440 +1609.09441 Optimization and Control +1609.09445 Atomic Physics +1609.09447 Combinatorics +1609.09448 Computer Science and Game Theory +1609.09449 Systems and Control +1609.09450 Optimization and Control +1609.09451 Computer Vision and Pattern Recognition +1609.09452 Dynamical Systems +1609.09453 Operator Algebras +1609.09454 Information Theory +1609.09455 Soft Condensed Matter +1609.09457 Fluid Dynamics +1609.09459 Soft Condensed Matter +1609.09460 Differential Geometry +1609.09463 Robotics +1609.09464 Commutative Algebra +1609.09466 Solar and Stellar Astrophysics +1609.09468 Computer Vision and Pattern Recognition +1609.09469 Cosmology and Nongalactic Astrophysics +1609.09472 Mesoscale and Nanoscale Physics +1609.09473 +1609.09476 Algebraic Geometry +1609.09478 Atomic Physics +1609.09480 Functional Analysis +1609.09481 Machine Learning +1609.09482 Mesoscale and Nanoscale Physics +1609.09483 Instrumentation and Detectors +1609.09484 Materials Science +1609.09485 History and Overview +1609.09486 Materials Science +1609.09487 +1609.09488 +cs/0509015 Data Structures and Algorithms +math/0306381 Group Theory +physics/0102007 General Physics +0811.3358 Symplectic Geometry +1007.3516 Operator Algebras +1010.5543 Differential Geometry +1011.6429 Logic in Computer Science +1011.6431 Logic in Computer Science +1011.6432 Formal Languages and Automata Theory +1011.6434 Logic in Computer Science +1012.0695 Statistical Mechanics +1107.4190 Adaptation and Self-Organizing Systems +1107.4195 Disordered Systems and Neural Networks +1107.4197 Adaptation and Self-Organizing Systems +1203.3419 +1203.3585 Probability +1204.6011 Instrumentation and Detectors +1208.0744 Combinatorics +1209.1950 Disordered Systems and Neural Networks +1210.4996 Geometric Topology +1303.5534 Soft Condensed Matter +1307.0119 Probability +1307.2787 Probability +1309.0139 Differential Geometry +1309.6471 Discrete Mathematics +1309.7395 Combinatorics +1309.7659 Exactly Solvable and Integrable Systems +1311.1919 Adaptation and Self-Organizing Systems +1311.5909 Number Theory +1312.2664 Computational Physics +1401.7997 +1402.1975 Probability +1402.2746 Number Theory +1402.6381 +1404.3240 Optimization and Control +1405.3118 Combinatorics +1405.7877 Adaptation and Self-Organizing Systems +1406.2589 Dynamical Systems +1406.5473 +1406.7149 High Energy Astrophysical Phenomena +1406.7262 High Energy Astrophysical Phenomena +1407.0396 Disordered Systems and Neural Networks +1407.2972 Quantum Gases +1407.3732 Instrumentation and Methods for Astrophysics +1407.3955 Astrophysics of Galaxies +1407.4121 Phenomenology +1407.4469 Earth and Planetary Astrophysics +1407.4604 Instrumentation and Methods for Astrophysics +1407.4605 Instrumentation and Methods for Astrophysics +1407.4741 +1407.5265 Mesoscale and Nanoscale Physics +1407.5416 Information Retrieval +1407.5873 Experiment +1407.5907 Experiment +1407.5973 Experiment +1407.6127 Experiment +1407.6663 Cosmology and Nongalactic Astrophysics +1407.7409 Mesoscale and Nanoscale Physics +1407.7516 Earth and Planetary Astrophysics +1407.7574 Experiment +1407.7657 High Energy Astrophysical Phenomena +1407.7696 Earth and Planetary Astrophysics +1407.7704 Experiment +1407.7712 Experiment +1407.7734 Experiment +1407.8406 Applications +1408.0005 Astrophysics of Galaxies +1408.0275 Experiment +1408.0405 Mesoscale and Nanoscale Physics +1408.0662 Quantum Gases +1408.0971 Experiment +1408.0978 Experiment +1408.1137 Experiment +1408.1169 Astrophysics of Galaxies +1408.1251 Experiment +1408.1299 Experiment +1408.1883 Soft Condensed Matter +1408.2735 Phenomenology +1408.2748 Experiment +1408.2821 Astrophysics of Galaxies +1408.4137 Solar and Stellar Astrophysics +1408.4259 Solar and Stellar Astrophysics +1408.4354 Experiment +1408.4368 Experiment +1408.4800 Theory +1408.6107 Physics and Society +1408.6173 +1408.6190 Strongly Correlated Electrons +1408.6641 Mesoscale and Nanoscale Physics +1408.6652 +1409.0152 Superconductivity +1409.0253 High Energy Astrophysical Phenomena +1409.0433 Strongly Correlated Electrons +1409.1408 Experiment +1409.1463 Phenomenology +1409.2126 Astrophysics of Galaxies +1409.2518 High Energy Astrophysical Phenomena +1409.2577 Symplectic Geometry +1409.2585 Databases +1409.2631 Optimization and Control +1409.2659 +1409.2747 Astrophysics of Galaxies +1409.2825 Statistical Mechanics +1409.2853 Instrumentation and Detectors +1409.2911 Differential Geometry +1409.2954 Space Physics +1409.3067 Analysis of PDEs +1409.3848 Astrophysics of Galaxies +1409.4286 Mesoscale and Nanoscale Physics +1409.4619 Experiment +1409.4747 Machine Learning +1409.6287 Artificial Intelligence +1409.6370 Mesoscale and Nanoscale Physics +1409.6421 Algebraic Geometry +1409.6648 Earth and Planetary Astrophysics +1409.6941 Optimization and Control +1409.7119 Astrophysics of Galaxies +1409.7882 +1409.7888 +1409.7915 Populations and Evolution +1409.7942 Populations and Evolution +1409.7991 Combinatorics +1409.8548 Experiment +1410.0021 Solar and Stellar Astrophysics +1410.0149 Experiment +1410.0180 Statistics Theory +1410.0238 Mesoscale and Nanoscale Physics +1410.0241 Physics and Society +1410.0477 Methodology +1410.0889 Solar and Stellar Astrophysics +1410.1350 Solar and Stellar Astrophysics +1410.1693 Geometric Topology +1410.1808 Instrumentation and Methods for Astrophysics +1410.2032 +1410.3129 Astrophysics of Galaxies +1410.4170 Experiment +1410.5200 Robotics +1410.5248 Solar and Stellar Astrophysics +1410.5367 High Energy Astrophysical Phenomena +1410.5939 Statistics Theory +1410.6020 Statistics Theory +1410.6210 Number Theory +1410.6676 High Energy Astrophysical Phenomena +1410.7737 +1410.7926 Classical Physics +1410.8674 Computational Engineering, Finance, and Science +1411.1108 Robotics +1411.1111 Astrophysics of Galaxies +1411.1241 +1411.1297 Computer Vision and Pattern Recognition +1411.1359 Solar and Stellar Astrophysics +1411.1369 Differential Geometry +1411.2402 Differential Geometry +1411.2597 Cosmology and Nongalactic Astrophysics +1411.3051 Solar and Stellar Astrophysics +1411.3104 Experiment +1411.3240 Solar and Stellar Astrophysics +1411.4000 Learning +1411.4413 Experiment +1411.4747 Probability +1411.4905 Mesoscale and Nanoscale Physics +1411.4987 Logic +1411.5093 Soft Condensed Matter +1411.5237 Analysis of PDEs +1411.5637 Solar and Stellar Astrophysics +1411.5638 Solar and Stellar Astrophysics +1411.5733 +1411.6355 Astrophysics of Galaxies +1411.7295 Instrumentation and Methods for Astrophysics +1411.7568 High Energy Astrophysical Phenomena +1412.1365 Solar and Stellar Astrophysics +1412.2280 Combinatorics +1412.3114 Astrophysics of Galaxies +1412.3899 Astrophysics of Galaxies +1412.4149 High Energy Astrophysical Phenomena +1412.4423 Algebraic Geometry +1412.4678 Phenomenology +1412.4694 Astrophysics of Galaxies +1412.5324 Cosmology and Nongalactic Astrophysics +1412.6352 Experiment +1412.6433 Experiment +1412.6997 High Energy Astrophysical Phenomena +1412.7065 +1412.7591 Geometric Topology +1412.7615 Quantum Gases +1412.7654 Experiment +1412.7670 Functional Analysis +1412.7737 Analysis of PDEs +1501.06777 Experiment +1501.06962 Cosmology and Nongalactic Astrophysics +1502.01568 Probability +1502.02638 Experiment +1502.03484 Commutative Algebra +1502.04156 Learning +1502.06041 +1502.07601 Multiagent Systems +1503.00963 Experiment +1503.05362 Experiment +1503.06944 Machine Learning +1503.07055 Experiment +1503.07089 Experiment +1503.07112 Experiment +1503.07138 Experiment +1503.07483 Experiment +1503.07606 Quantum Gases +1503.07657 Adaptation and Self-Organizing Systems +1503.07803 Symplectic Geometry +1503.08123 Statistics Theory +1503.08386 Combinatorics +1503.08413 Information Theory +1503.09024 Phenomenology +1503.09086 Experiment +1504.01568 Experiment +1504.05060 Strongly Correlated Electrons +1504.05398 +1504.05442 Experiment +1504.05462 Biological Physics +1504.06298 Optimization and Control +1504.06339 Experiment +1504.07670 Experiment +1505.01505 Experiment +1505.01654 Experiment +1505.01710 Experiment +1505.01986 Information Theory +1505.02140 Logic in Computer Science +1505.03295 Experiment +1505.04051 Experiment +1505.04382 Computer Vision and Pattern Recognition +1505.05546 Probability +1505.05711 Materials Science +1505.07024 Experiment +1505.08139 Experiment +1505.08162 Combinatorics +1506.00669 Probability +1506.00903 Experiment +1506.01724 Cosmology and Nongalactic Astrophysics +1506.02635 +1506.04192 Soft Condensed Matter +1506.05507 High Energy Astrophysical Phenomena +1506.07903 Computational Geometry +1506.08158 Phenomenology +1506.08209 Astrophysics of Galaxies +1506.08325 +1506.08614 Experiment +1506.08634 Experiment +1506.08777 Experiment +1506.09004 Instrumentation and Methods for Astrophysics +1507.00244 Risk Management +1507.03414 Experiment +1507.03516 Experiment +1507.05752 +1507.05875 Artificial Intelligence +1507.06267 Soft Condensed Matter +1507.07360 Logic +1507.07506 Functional Analysis +1507.07803 Solar and Stellar Astrophysics +1507.07892 Experiment +1508.00237 Dynamical Systems +1508.00607 Economics +1508.00788 Experiment +1508.01977 Data Structures and Algorithms +1508.02966 Optimization and Control +1508.03974 Atomic Physics +1508.04094 Experiment +1508.05633 +1508.06087 Experiment +1508.06268 Computational Physics +1509.00292 Experiment +1509.00400 Experiment +1509.00414 Experiment +1509.00771 Experiment +1509.02318 Statistical Mechanics +1509.02372 Experiment +1509.03331 Analysis of PDEs +1509.03429 Representation Theory +1509.04764 Information Theory +1509.05045 Cosmology and Nongalactic Astrophysics +1510.01271 General Mathematics +1510.01612 Superconductivity +1510.03454 +1510.05795 Number Theory +1510.05949 Experiment +1510.07637 Strongly Correlated Electrons +1510.07926 Combinatorics +1510.08435 Cryptography and Security +1510.09124 Information Theory +1511.00197 Differential Geometry +1511.03011 Biomolecules +1511.05153 Mesoscale and Nanoscale Physics +1511.06214 Computer Vision and Pattern Recognition +1511.06439 Mesoscale and Nanoscale Physics +1511.07921 +1511.08508 Earth and Planetary Astrophysics +1511.08826 Combinatorics +1511.09104 Combinatorics +1512.00138 Soft Condensed Matter +1512.00373 Mesoscale and Nanoscale Physics +1512.00376 +1512.01111 Astrophysics of Galaxies +1512.01562 Fluid Dynamics +1512.02206 +1512.02413 Computer Vision and Pattern Recognition +1512.02485 Probability +1512.04124 Solar and Stellar Astrophysics +1512.04271 Strongly Correlated Electrons +1512.04277 Computer Science and Game Theory +1512.04893 Commutative Algebra +1512.05958 Mesoscale and Nanoscale Physics +1512.06242 Mesoscale and Nanoscale Physics +1512.06244 Systems and Control +1512.07328 Methodology +1512.07470 Probability +1512.07869 Cosmology and Nongalactic Astrophysics +1512.08221 Phenomenology +1512.08570 Phenomenology +1512.09086 +1601.01295 +1601.02447 Phenomenology +1601.02694 Strongly Correlated Electrons +1601.02979 Theory +1601.03712 Information Theory +1601.03893 Mesoscale and Nanoscale Physics +1601.04026 Instrumentation and Methods for Astrophysics +1601.04471 Networking and Internet Architecture +1601.05658 Physics and Society +1601.05710 Tissues and Organs +1601.07061 +1601.08014 Experiment +1602.00456 Mesoscale and Nanoscale Physics +1602.00847 Classical Analysis and ODEs +1602.01216 +1602.01885 Materials Science +1602.02841 Populations and Evolution +1602.03167 Soft Condensed Matter +1602.04938 Learning +1602.05014 Phenomenology +1602.05431 Cosmology and Nongalactic Astrophysics +1602.05442 Fluid Dynamics +1602.05634 Quantum Gases +1602.06086 Theory +1602.06230 Applications +1602.06505 Theory +1602.06784 Quantum Gases +1602.07398 Probability +1602.08171 Superconductivity +1602.08295 +1602.08880 +1602.08980 Experiment +1602.09112 Phenomenology +1603.00413 Experiment +1603.00999 Superconductivity +1603.01574 +1603.01920 Phenomenology +1603.02898 Instrumentation and Methods for Astrophysics +1603.03616 Combinatorics +1603.03688 Mesoscale and Nanoscale Physics +1603.03806 Computer Science and Game Theory +1603.04488 Phenomenology +1603.04624 Mesoscale and Nanoscale Physics +1603.05148 +1603.05184 Cosmology and Nongalactic Astrophysics +1603.06258 +1603.06270 Computation and Language +1603.06544 Algebraic Geometry +1603.06561 Quantum Gases +1603.07137 +1603.07250 Theory +1603.07762 Dynamical Systems +1603.07774 Chaotic Dynamics +1603.08333 +1603.08338 Cosmology and Nongalactic Astrophysics +1603.08844 Systems and Control +1603.08890 Medical Physics +1603.08922 Astrophysics of Galaxies +1603.08929 Phenomenology +1603.09245 +1603.09672 Systems and Control +1604.00032 +1604.00496 Strongly Correlated Electrons +1604.01526 Instrumentation and Methods for Astrophysics +1604.01895 Mesoscale and Nanoscale Physics +1604.01988 Strongly Correlated Electrons +1604.02003 +1604.02179 Cosmology and Nongalactic Astrophysics +1604.02999 Materials Science +1604.03298 Phenomenology +1604.03360 Computational Physics +1604.03475 Experiment +1604.03510 Phenomenology +1604.03634 +1604.04364 Superconductivity +1604.04455 Materials Science +1604.04708 Materials Science +1604.04757 +1604.05105 Number Theory +1604.05137 Materials Science +1604.05277 Mesoscale and Nanoscale Physics +1604.05530 +1604.05639 Quantum Gases +1604.05895 Data Analysis, Statistics and Probability +1604.06203 Adaptation and Self-Organizing Systems +1604.06585 Phenomenology +1604.06749 Statistics Theory +1604.06767 +1604.07622 Phenomenology +1604.08116 Astrophysics of Galaxies +1604.08285 +1604.08621 +1604.08850 Astrophysics of Galaxies +1605.00030 Optics +1605.00053 Superconductivity +1605.00413 +1605.00470 Quantum Gases +1605.00617 Phenomenology +1605.00927 High Energy Astrophysical Phenomena +1605.01272 +1605.01415 High Energy Astrophysical Phenomena +1605.01634 Superconductivity +1605.02250 Mesoscale and Nanoscale Physics +1605.02694 Optics +1605.02734 Strongly Correlated Electrons +1605.02743 Phenomenology +1605.02760 Solar and Stellar Astrophysics +1605.02837 Mesoscale and Nanoscale Physics +1605.03061 Phenomenology +1605.03065 Astrophysics of Galaxies +1605.03169 Quantum Gases +1605.03873 Astrophysics of Galaxies +1605.03993 Lattice +1605.04016 Quantum Gases +1605.04254 Mesoscale and Nanoscale Physics +1605.04341 Lattice +1605.04438 Adaptation and Self-Organizing Systems +1605.04749 Mesoscale and Nanoscale Physics +1605.04862 +1605.04978 Biological Physics +1605.05617 Superconductivity +1605.05738 Quantum Gases +1605.06141 Solar and Stellar Astrophysics +1605.06351 Theory +1605.06411 +1605.06959 Earth and Planetary Astrophysics +1605.07226 Biological Physics +1605.07229 Number Theory +1605.07365 Solar and Stellar Astrophysics +1605.07564 Superconductivity +1605.07790 Phenomenology +1605.07958 Solar and Stellar Astrophysics +1605.08130 Solar and Stellar Astrophysics +1605.08189 Astrophysics of Galaxies +1605.08431 Theory +1605.08523 Instrumentation and Methods for Astrophysics +1605.09268 Networking and Internet Architecture +1605.09421 Strongly Correlated Electrons +1605.09527 Computer Vision and Pattern Recognition +1605.09768 Experiment +1606.00178 +1606.00204 Optics +1606.01282 Theory +1606.01582 Optics +1606.01650 Lattice +1606.02415 +1606.02858 Computation and Language +1606.03026 Phenomenology +1606.03056 Materials Science +1606.03406 Solar and Stellar Astrophysics +1606.03675 Solar and Stellar Astrophysics +1606.03676 Computation and Language +1606.04091 Cosmology and Nongalactic Astrophysics +1606.04329 Astrophysics of Galaxies +1606.04359 +1606.05202 Solar and Stellar Astrophysics +1606.05437 Computational Physics +1606.05497 Solar and Stellar Astrophysics +1606.05503 Optics +1606.05856 Strongly Correlated Electrons +1606.06082 Cosmology and Nongalactic Astrophysics +1606.06679 Phenomenology +1606.06742 Astrophysics of Galaxies +1606.07379 Functional Analysis +1606.08176 Strongly Correlated Electrons +1606.08620 Atomic Physics +1606.08890 Experiment +1606.08912 Phenomenology +1606.08965 Artificial Intelligence +1607.00184 Cosmology and Nongalactic Astrophysics +1607.00919 Phenomenology +1607.01082 Number Theory +1607.01504 Phenomenology +1607.01759 Computation and Language +1607.02454 Spectral Theory +1607.02849 Dynamical Systems +1607.03457 Astrophysics of Galaxies +1607.04586 Group Theory +1607.05921 Strongly Correlated Electrons +1607.05998 +1607.06237 Strongly Correlated Electrons +1607.06877 +1607.08736 Soft Condensed Matter +1608.00380 Materials Science +1608.00825 Functional Analysis +1608.00910 Cosmology and Nongalactic Astrophysics +1608.01198 Learning +1608.01623 Materials Science +1608.01778 Earth and Planetary Astrophysics +1608.01789 Networking and Internet Architecture +1608.01868 Robotics +1608.01948 High Energy Astrophysical Phenomena +1608.02354 Number Theory +1608.02468 Functional Analysis +1608.02579 Classical Analysis and ODEs +1608.02582 +1608.02608 Geometric Topology +1608.02610 Group Theory +1608.02611 Databases +1608.02616 Classical Analysis and ODEs +1608.02617 Analysis of PDEs +1608.02619 Physics and Society +1608.02623 Soft Condensed Matter +1608.02626 Classical Analysis and ODEs +1608.02629 Operator Algebras +1608.02630 Classical Physics +1608.02632 Pattern Formation and Solitons +1608.02633 High Energy Astrophysical Phenomena +1608.02637 Analysis of PDEs +1608.02639 Cryptography and Security +1608.02643 Medical Physics +1608.02646 Social and Information Networks +1608.02647 Differential Geometry +1608.02649 Instrumentation and Methods for Astrophysics +1608.02650 +1608.02654 Theory +1608.02655 Analysis of PDEs +1608.02657 Human-Computer Interaction +1608.02659 Artificial Intelligence +1608.02661 Human-Computer Interaction +1608.02665 Optimization and Control +1608.02666 Optimization and Control +1608.02674 Distributed, Parallel, and Cluster Computing +1608.02676 Computer Vision and Pattern Recognition +1608.02679 Geometric Topology +1608.02680 Computer Vision and Pattern Recognition +1608.02686 Algebraic Geometry +1608.02687 Information Theory +1608.02688 Logic in Computer Science +1608.02689 Computation and Language +1608.02690 Pricing of Securities +1608.02691 Instrumentation and Methods for Astrophysics +1608.02692 Logic in Computer Science +1608.02693 Artificial Intelligence +1608.02695 +1608.02697 Dynamical Systems +1608.02698 +1608.02699 Optimization and Control +1608.02700 Instrumentation and Methods for Astrophysics +1608.02701 Group Theory +1608.02702 Computer Vision and Pattern Recognition +1608.02706 Mathematical Finance +1608.02712 Optimization and Control +1608.02715 Software Engineering +1608.02717 Computer Vision and Pattern Recognition +1608.02718 Probability +1608.02719 Numerical Analysis +1608.02720 Combinatorics +1608.02721 Classical Physics +1608.02722 Other Condensed Matter +1608.02724 History and Overview +1608.02726 Strongly Correlated Electrons +1608.02727 Representation Theory +1608.02728 Computer Vision and Pattern Recognition +1608.02729 Instrumentation and Detectors +1608.02731 Machine Learning +1608.02732 Machine Learning +1608.02733 Analysis of PDEs +1608.02734 Phenomenology +1608.02738 Accelerator Physics +1608.02743 Statistics Theory +1608.02745 Accelerator Physics +1608.02746 Operator Algebras +1608.02748 Solar and Stellar Astrophysics +1608.02750 Materials Science +1608.02752 Molecular Networks +1608.02753 Probability +1608.02757 Software Engineering +1608.02759 Number Theory +1608.02760 Group Theory +1608.02763 Artificial Intelligence +1608.02767 Functional Analysis +1608.02769 High Energy Astrophysical Phenomena +1608.02770 Differential Geometry +1608.02771 Phenomenology +1608.02772 Superconductivity +1608.02774 Computer Science and Game Theory +1608.02776 +1608.02778 Computer Vision and Pattern Recognition +1608.02781 +1608.02782 Computational Physics +1608.02784 Computation and Language +1608.02787 Accelerator Physics +1608.02788 Number Theory +1608.02793 Soft Condensed Matter +1608.02794 Complex Variables +1608.02797 Computation +1608.02800 Performance +1608.02803 +1608.02804 Chemical Physics +1608.02807 Logic in Computer Science +1608.02809 Materials Science +1608.02811 Analysis of PDEs +1608.02815 Algebraic Geometry +1608.02816 Differential Geometry +1608.02817 Combinatorics +1608.02821 Probability +1608.02823 Differential Geometry +1608.02824 Computer Vision and Pattern Recognition +1608.02825 Chemical Physics +1608.02826 Accelerator Physics +1608.02827 +1608.02829 Human-Computer Interaction +1608.02830 Information Theory +1608.02831 Analysis of PDEs +1608.02832 Differential Geometry +1608.02834 Phenomenology +1608.02836 Accelerator Physics +1608.02837 Rings and Algebras +1608.02841 Cosmology and Nongalactic Astrophysics +1608.02842 Medical Physics +1608.02843 Dynamical Systems +1608.02844 Combinatorics +1608.02846 Geometric Topology +1608.02848 Dynamical Systems +1608.02850 Logic +1608.02852 Solar and Stellar Astrophysics +1608.02854 +1608.02856 Fluid Dynamics +1608.02857 Analysis of PDEs +1608.02858 Artificial Intelligence +1608.02859 Medical Physics +1608.02861 Machine Learning +1608.02864 Optics +1608.02865 Statistical Mechanics +1608.02866 Information Theory +1608.02870 Analysis of PDEs +1608.02873 Earth and Planetary Astrophysics +1608.02874 Analysis of PDEs +1608.02876 Algebraic Topology +1608.02878 Statistical Mechanics +1608.02879 +1608.02880 Analysis of PDEs +1608.02881 Combinatorics +1608.02884 Networking and Internet Architecture +1608.02885 Complex Variables +1608.02887 Materials Science +1608.02888 Learning +1608.02889 Chaotic Dynamics +1608.02890 Combinatorics +1608.02897 +1608.02898 Classical Physics +1608.02900 Quantum Algebra +1608.02901 Algebraic Topology +1608.02902 Statistics Theory +1608.02903 Algebraic Topology +1608.02905 Quantum Gases +1608.02909 Optics +1608.02910 +1608.02913 Algebraic Geometry +1608.02917 Software Engineering +1608.02918 Combinatorics +1608.02921 Algebraic Geometry +1608.02922 +1608.02927 Computation and Language +1608.02931 Mesoscale and Nanoscale Physics +1608.02932 Theory +1111.0235 Probability +1302.2645 Machine Learning +1303.5796 Optimization and Control +1304.5990 Group Theory +1305.0327 Mesoscale and Nanoscale Physics +1309.4054 Methodology +1309.5180 Mesoscale and Nanoscale Physics +1402.2898 +1402.6437 Symplectic Geometry +1404.0994 Populations and Evolution +1404.1851 Combinatorics +1404.6571 Classical Analysis and ODEs +1405.6457 +1407.7598 Cryptography and Security +1408.2949 Algebraic Geometry +1408.4314 Mesoscale and Nanoscale Physics +1408.6698 Algebraic Geometry +1409.3575 Theory +1410.5499 Information Theory +1411.3182 Quantum Gases +1412.1093 Theory +1412.2455 Networking and Internet Architecture +1501.01100 +1501.04697 Rings and Algebras +1503.00374 Data Structures and Algorithms +1503.00404 Geometric Topology +1503.02975 Atomic and Molecular Clusters +1503.03234 Analysis of PDEs +1503.07853 Theory +1504.00463 Mesoscale and Nanoscale Physics +1504.01273 Classical Physics +1504.08278 Dynamical Systems +1505.03321 Classical Analysis and ODEs +1505.03535 Mesoscale and Nanoscale Physics +1505.07656 Functional Analysis +1506.00566 Phenomenology +1506.04631 Numerical Analysis +1506.08264 Information Theory +1507.01795 +1507.03729 Information Theory +1507.07524 Operator Algebras +1507.08010 Networking and Internet Architecture +1508.00388 Mesoscale and Nanoscale Physics +1508.03624 Phenomenology +1508.04065 Learning +1508.06420 Computer Science and Game Theory +1508.07699 Logic +1509.04160 Functional Analysis +1509.04656 Plasma Physics +1509.06235 Lattice +1509.07379 +1510.03656 +1510.03679 Statistics Theory +1510.05383 Statistical Mechanics +1510.07170 Information Theory +1510.07209 Group Theory +1511.01036 Quantum Gases +1511.01190 Statistical Mechanics +1511.01472 Biological Physics +1511.06161 +1511.07084 +1511.08878 Spectral Theory +1511.09294 +1512.03021 Group Theory +1512.03949 Populations and Evolution +1512.04679 Dynamical Systems +1512.05517 Quantum Gases +1512.05778 Phenomenology +1512.06621 Functional Analysis +1512.06973 Numerical Analysis +1512.08721 +1601.00591 Mesoscale and Nanoscale Physics +1601.01530 Computation and Language +1601.03024 Representation Theory +1601.04862 Robotics +1601.05063 Earth and Planetary Astrophysics +1601.05462 Fluid Dynamics +1601.05470 Numerical Analysis +1601.05540 Mesoscale and Nanoscale Physics +1602.02175 Combinatorics +1602.05353 Quantum Gases +1602.06892 Phenomenology +1602.08751 Physics and Society +1603.00380 Mesoscale and Nanoscale Physics +1603.00467 High Energy Astrophysical Phenomena +1603.00507 Algebraic Topology +1603.03061 Phenomenology +1603.04409 +1603.06917 Superconductivity +1603.08637 Computer Vision and Pattern Recognition +1604.00269 +1604.02059 Combinatorics +1604.02102 Phenomenology +1604.03788 Group Theory +1604.06075 Analysis of PDEs +1604.06339 +1604.06426 +1604.06876 Soft Condensed Matter +1604.06883 Soft Condensed Matter +1604.08641 Algebraic Geometry +1604.08823 Computers and Society +1604.08921 Populations and Evolution +1605.00146 Theory +1605.01247 Optics +1605.01870 Quantum Gases +1605.02073 Mesoscale and Nanoscale Physics +1605.03176 Cosmology and Nongalactic Astrophysics +1605.03550 Theory +1605.04566 +1605.06738 +1605.06984 Functional Analysis +1606.00865 Phenomenology +1606.01455 Computer Vision and Pattern Recognition +1606.01551 Disordered Systems and Neural Networks +1606.01702 Strongly Correlated Electrons +1606.02202 Phenomenology +1606.02317 Strongly Correlated Electrons +1606.02885 Soft Condensed Matter +1606.02949 Theory +1606.03231 Strongly Correlated Electrons +1606.03736 Robotics +1606.03890 Computational Geometry +1606.04864 Strongly Correlated Electrons +1606.06963 General Physics +1606.07673 Cosmology and Nongalactic Astrophysics +1606.07797 +1606.08813 Machine Learning +1606.08996 +1606.09345 Materials Science +1606.09350 Algebraic Geometry +1607.02273 Atomic Physics +1607.03005 Differential Geometry +1607.04446 Data Structures and Algorithms +1607.05567 Cosmology and Nongalactic Astrophysics +1607.05667 Fluid Dynamics +1607.05676 Strongly Correlated Electrons +1607.05926 Theory +1607.06484 +1607.06851 Soft Condensed Matter +1607.07339 Dynamical Systems +1607.07815 Information Theory +1607.08030 Logic +1607.08266 Fluid Dynamics +1608.02356 Strongly Correlated Electrons +1608.02455 Algebraic Geometry +1608.03334 +1608.05052 Theory +1608.05383 Phenomenology +1608.05592 Earth and Planetary Astrophysics +1608.06365 Optics +1608.06695 Optimization and Control +1608.06727 Logic +1608.06841 General Physics +1608.06851 Statistics Theory +1608.07163 Logic in Computer Science +1608.07214 Fluid Dynamics +1608.07452 Cosmology and Nongalactic Astrophysics +1608.07763 Strongly Correlated Electrons +1608.08003 Chemical Physics +1608.08088 General Mathematics +1608.08143 Mesoscale and Nanoscale Physics +1608.08158 Algebraic Geometry +1608.08169 Analysis of PDEs +1608.08215 +1608.08220 +1608.08266 Learning +1608.08381 Information Theory +1608.08526 Computer Vision and Pattern Recognition +1608.08597 Optimization and Control +1608.08632 Phenomenology +1608.08635 Statistical Mechanics +1608.08641 Mesoscale and Nanoscale Physics +1608.08645 Analysis of PDEs +1608.08648 Data Structures and Algorithms +1608.08652 Spectral Theory +1608.08654 Geometric Topology +1608.08659 Machine Learning +1608.08660 Networking and Internet Architecture +1608.08662 Computational Geometry +1608.08663 Symbolic Computation +1608.08665 Optimization and Control +1608.08666 Computation +1608.08667 Symplectic Geometry +1608.08669 Differential Geometry +1608.08674 +1608.08675 Probability +1608.08677 Astrophysics of Galaxies +1608.08678 Information Theory +1608.08679 Computational Complexity +1608.08680 Probability +1608.08683 Optimization and Control +1608.08685 Complex Variables +1608.08686 Phenomenology +1608.08687 Numerical Analysis +1608.08689 Formal Languages and Automata Theory +1608.08691 Data Structures and Algorithms +1608.08693 Commutative Algebra +1608.08695 Theory +1608.08696 Instrumentation and Detectors +1608.08698 Social and Information Networks +1608.08700 Algebraic Geometry +1608.08702 Combinatorics +1608.08711 Computer Vision and Pattern Recognition +1608.08712 Probability +1608.08714 Astrophysics of Galaxies +1608.08716 Artificial Intelligence +1608.08717 Statistics Theory +1608.08718 Applications +1608.08721 Complex Variables +1608.08724 Artificial Intelligence +1608.08725 Networking and Internet Architecture +1608.08728 Probability +1608.08729 Networking and Internet Architecture +1608.08731 Representation Theory +1608.08732 Metric Geometry +1608.08733 Differential Geometry +1608.08734 Dynamical Systems +1608.08736 Software Engineering +1608.08737 Mesoscale and Nanoscale Physics +1608.08738 Computation and Language +1608.08740 Discrete Mathematics +1608.08742 Information Theory +1608.08743 Probability +1608.08746 Algebraic Geometry +1608.08747 Combinatorics +1608.08748 Instrumentation and Methods for Astrophysics +1608.08749 Artificial Intelligence +1608.08750 +1608.08753 Robotics +1608.08754 Software Engineering +1608.08755 Combinatorics +1608.08759 Numerical Analysis +1608.08760 Optimization and Control +1608.08765 Mesoscale and Nanoscale Physics +1608.08767 Optics +1608.08770 Popular Physics +1608.08771 Pattern Formation and Solitons +1608.08773 Combinatorics +1608.08774 Earth and Planetary Astrophysics +1608.08780 Optimization and Control +1608.08782 Neural and Evolutionary Computing +1608.08783 Statistics Theory +1608.08785 +1608.08787 Cryptography and Security +1608.08791 Computational Geometry +1608.08792 Computer Vision and Pattern Recognition +1608.08796 Soft Condensed Matter +1608.08797 Dynamical Systems +1608.08800 Combinatorics +1608.08804 Algebraic Geometry +1608.08806 High Energy Astrophysical Phenomena +1608.08807 Human-Computer Interaction +1608.08808 Cosmology and Nongalactic Astrophysics +1608.08814 Computation +1608.08816 Earth and Planetary Astrophysics +1608.08817 Numerical Analysis +1608.08819 Theory +1608.08820 Mesoscale and Nanoscale Physics +1608.08821 +1608.08829 Numerical Analysis +1608.08830 Numerical Analysis +1608.08832 Probability +1608.08835 Dynamical Systems +1608.08839 Physics and Society +1608.08841 Phenomenology +1608.08843 Combinatorics +1608.08844 Computational Geometry +1608.08846 General Physics +1608.08847 Earth and Planetary Astrophysics +1608.08857 General Physics +1608.08861 Functional Analysis +1608.08863 General Physics +1608.08866 Dynamical Systems +1608.08867 Plasma Physics +1608.08868 Computation and Language +1608.08870 Optics +1608.08871 Numerical Analysis +1608.08872 Analysis of PDEs +1608.08873 Methodology +1608.08878 Computer Vision and Pattern Recognition +1608.08882 Algebraic Geometry +1608.08883 Optimization and Control +1608.08889 Mesoscale and Nanoscale Physics +1608.08890 Dynamical Systems +1608.08892 Computational Geometry +1608.08894 Fluid Dynamics +1608.08899 Computational Geometry +1608.08900 Lattice +1608.08902 Superconductivity +1608.08903 +1608.08912 Mesoscale and Nanoscale Physics +1608.08913 Analysis of PDEs +1608.08914 Materials Science +1608.08915 Instrumentation and Detectors +1608.08918 Logic in Computer Science +1608.08924 Soft Condensed Matter +1608.08926 Probability +1608.08927 Computation and Language +1608.08929 Mesoscale and Nanoscale Physics +1608.08931 +1608.08933 Software Engineering +1608.08936 Human-Computer Interaction +1608.08937 Classical Analysis and ODEs +1608.08940 Computation and Language +1608.08941 Methodology +1608.08942 Commutative Algebra +1608.08944 Commutative Algebra +1608.08946 Soft Condensed Matter +1608.08948 Combinatorics +1608.08954 Combinatorics +1608.08956 Logic in Computer Science +1608.08957 Algebraic Geometry +1608.08961 Fluid Dynamics +1608.08962 Algebraic Geometry +1608.08964 Rings and Algebras +1608.08970 Data Structures and Algorithms +1608.08975 Numerical Analysis +1608.08979 Atomic Physics +1608.08986 Astrophysics of Galaxies +1608.08988 Phenomenology +1608.08989 Representation Theory +1608.08990 Combinatorics +1608.08992 Symplectic Geometry +1608.08994 Mesoscale and Nanoscale Physics +1608.08996 +1608.08997 Analysis of PDEs +1608.08998 Superconductivity +1608.09000 Software Engineering +1608.09001 Dynamical Systems +1608.09002 Information Retrieval +1608.09005 Computer Vision and Pattern Recognition +1608.09006 Strongly Correlated Electrons +1608.09009 Biomolecules +1608.09014 Learning +hep-lat/0004026 Lattice +hep-lat/0005027 Lattice +hep-lat/0006009 Lattice +hep-lat/0008017 Lattice +hep-lat/0009009 Lattice +hep-lat/0009028 Lattice +hep-lat/0009035 Lattice +hep-lat/0010041 Lattice +hep-lat/0010062 Lattice +hep-lat/0010098 Lattice +hep-lat/0011024 Lattice +hep-lat/0011050 Lattice +hep-lat/0011092 Lattice +hep-lat/0103016 Lattice +hep-lat/0108003 Lattice +hep-lat/0108018 Lattice +hep-lat/0110036 Lattice +hep-lat/0110183 Lattice +hep-lat/0111056 Lattice +hep-lat/0112036 Lattice +hep-lat/0112041 Lattice +hep-lat/0201006 Lattice +hep-lat/0201016 Lattice +hep-lat/0203005 Lattice +hep-lat/0203016 Lattice +hep-lat/0203019 Lattice +hep-lat/0205024 Lattice +hep-lat/0205027 Lattice +hep-lat/0206021 Lattice +hep-lat/0206028 Lattice +hep-lat/0207012 Lattice +hep-lat/0209083 Lattice +hep-lat/0209107 Lattice +hep-lat/0209157 Lattice +hep-lat/0210016 Lattice +hep-lat/0210028 Lattice +hep-lat/0210047 Lattice +hep-lat/0211006 Lattice +hep-lat/0211010 Lattice +hep-lat/0301002 Lattice +hep-lat/0301003 Lattice +hep-lat/0303023 Lattice +hep-lat/0305018 Lattice +hep-lat/0306005 Lattice +hep-lat/0308017 Lattice +hep-lat/0308036 Lattice +hep-lat/0309043 Lattice +hep-lat/0309111 Lattice +hep-lat/0309118 Lattice +hep-lat/0309120 Lattice +hep-lat/0309143 Lattice +hep-lat/0310010 Lattice +hep-lat/0310037 Lattice +hep-lat/0312036 Lattice +hep-lat/0401002 Lattice +hep-lat/0405023 Lattice +hep-lat/0407010 Lattice +hep-lat/0409007 Lattice +hep-lat/0409145 Lattice +hep-lat/0410028 Lattice +hep-lat/0507008 Lattice +hep-lat/0507015 Lattice +hep-lat/0508022 Lattice +hep-lat/0509024 Lattice +hep-lat/0509038 Lattice +hep-lat/0509039 Lattice +hep-lat/0509044 Lattice +hep-lat/0509061 Lattice +hep-lat/0509062 Lattice +hep-lat/0509068 Lattice +hep-lat/0509070 Lattice +hep-lat/0509076 Lattice +hep-lat/0509089 Lattice +hep-lat/0509095 Lattice +hep-lat/0509097 Lattice +hep-lat/0509103 Lattice +hep-lat/0509105 Lattice +hep-lat/0509113 Lattice +hep-lat/0509136 Lattice +hep-lat/0509144 Lattice +hep-lat/0509150 Lattice +hep-lat/0509155 Lattice +hep-lat/0509159 Lattice +hep-lat/0509167 Lattice +hep-lat/0509170 Lattice +hep-lat/0509171 Lattice +hep-lat/0509178 Lattice +hep-lat/0509182 Lattice +hep-lat/0509191 Lattice +hep-lat/0509193 Lattice +hep-lat/0509196 Lattice +hep-lat/0510001 Lattice +hep-lat/0510006 Lattice +hep-lat/0510016 Lattice +hep-lat/0510020 Lattice +hep-lat/0510021 Lattice +hep-lat/0510032 Lattice +hep-lat/0510033 Lattice +hep-lat/0510034 Lattice +hep-lat/0510035 Lattice +hep-lat/0510037 Lattice +hep-lat/0510038 Lattice +hep-lat/0510039 Lattice +hep-lat/0510040 Lattice +hep-lat/0510044 Lattice +hep-lat/0510045 Lattice +hep-lat/0510080 Lattice +hep-lat/0601017 Lattice +hep-lat/0602009 Lattice +hep-lat/0603007 Lattice +hep-lat/0603015 Lattice +hep-lat/0604002 Lattice +hep-lat/0604009 Lattice +hep-lat/0607021 Lattice +hep-lat/0609024 Lattice +hep-lat/0610032 Lattice +hep-lat/9503012 Lattice +hep-lat/9503013 Lattice +hep-lat/9503014 Lattice +hep-lat/9503015 Lattice +hep-lat/9503018 Lattice +hep-lat/9503019 Lattice +hep-lat/9504007 Lattice +hep-lat/9504015 Lattice +hep-lat/9505003 Lattice +hep-lat/9506021 Lattice +hep-lat/9509094 Lattice +hep-lat/9510005 Lattice +hep-lat/9510030 Lattice +hep-lat/9510035 Lattice +hep-lat/9511018 Lattice +hep-lat/9511024 Lattice +hep-lat/9511029 Lattice +hep-lat/9601029 Lattice +hep-lat/9607002 Lattice +hep-lat/9607056 Lattice +hep-lat/9607082 Lattice +hep-lat/9607086 Lattice +hep-lat/9608032 Lattice +hep-lat/9608113 Lattice +hep-lat/9608129 Lattice +hep-lat/9608135 Lattice +hep-lat/9609017 Lattice +hep-lat/9609035 Lattice +hep-lat/9609046 Lattice +hep-lat/9610024 Lattice +hep-lat/9611009 Lattice +hep-lat/9611015 Lattice +hep-lat/9611026 Lattice +hep-lat/9612008 Lattice +hep-lat/9612016 Lattice +hep-lat/9701001 Lattice +hep-lat/9703002 Lattice +hep-lat/9703008 Lattice +hep-lat/9704010 Lattice +hep-lat/9705014 Lattice +hep-lat/9705017 Lattice +hep-lat/9707027 Lattice +hep-lat/9708017 Lattice +hep-lat/9709043 Lattice +hep-lat/9709091 Lattice +hep-lat/9709158 Lattice +hep-lat/9710001 Lattice +hep-lat/9710026 Lattice +hep-lat/9711053 Lattice +hep-lat/9801015 Lattice +hep-lat/9801037 Lattice +hep-lat/9802038 Lattice +hep-lat/9803011 Lattice +hep-lat/9805025 Lattice +hep-lat/9805027 Lattice +hep-lat/9809011 Lattice +hep-lat/9809044 Lattice +hep-lat/9809059 Lattice +hep-lat/9809079 Lattice +hep-lat/9809139 Lattice +hep-lat/9809157 Lattice +hep-lat/9809176 Lattice +hep-lat/9812002 Lattice +hep-lat/9902032 Lattice +hep-lat/9903038 Lattice +hep-lat/9906026 Lattice +hep-lat/9907021 Lattice +hep-lat/9909033 Lattice +hep-lat/9909112 Lattice +hep-lat/9910013 Lattice +hep-lat/9910030 Lattice +hep-lat/9912023 Lattice +hep-ph/9203218 Phenomenology +hep-ph/9204234 Phenomenology +hep-ph/9204238 Phenomenology +hep-ph/9205234 Phenomenology +hep-ph/9206201 Phenomenology +hep-ph/9207239 Phenomenology +hep-ph/9207246 Phenomenology +hep-ph/9208250 Phenomenology +hep-ph/9209227 Phenomenology +hep-ph/9209246 Phenomenology +hep-ph/9210215 Phenomenology +hep-ph/9210246 Phenomenology +hep-ph/9212223 Phenomenology +hep-ph/9212285 Phenomenology +hep-ph/9301284 Phenomenology +hep-ph/9302254 Phenomenology +hep-ph/9302289 Phenomenology +hep-ph/9302311 Phenomenology +hep-ph/9302316 Phenomenology +hep-ph/9305206 Phenomenology +hep-ph/9305252 Phenomenology +hep-ph/9305277 Phenomenology +hep-ph/9305291 Phenomenology +hep-ph/9307317 Phenomenology +hep-ph/9307325 Phenomenology +hep-ph/9308227 Phenomenology +hep-ph/9308378 Phenomenology +hep-ph/9309201 Phenomenology +hep-ph/9309212 Phenomenology +hep-ph/9309245 Phenomenology +hep-ph/9309280 Phenomenology +hep-ph/9310229 Phenomenology +hep-ph/9310245 Phenomenology +hep-ph/9310282 Phenomenology +hep-ph/9310329 Phenomenology +hep-ph/9310340 Phenomenology +hep-ph/9311214 Phenomenology +hep-ph/9311287 Phenomenology +hep-ph/9311289 Phenomenology +hep-ph/9312227 Phenomenology +hep-ph/9312229 Phenomenology +hep-ph/9312239 Phenomenology +hep-ph/9401317 Phenomenology +hep-ph/9402226 Phenomenology +hep-ph/9402245 Phenomenology +hep-ph/9402282 Phenomenology +hep-ph/9403241 Phenomenology +hep-ph/9403245 Phenomenology +hep-ph/9403261 Phenomenology +hep-ph/9403273 Phenomenology +hep-ph/9403297 Phenomenology +hep-ph/9403348 Phenomenology +hep-ph/9404219 Phenomenology +hep-ph/9404221 Phenomenology +hep-ph/9404252 Phenomenology +hep-ph/9404278 Phenomenology +hep-ph/9404329 Phenomenology +hep-ph/9404341 Phenomenology +hep-ph/9405396 Phenomenology +hep-ph/9406202 Phenomenology +hep-ph/9406337 Phenomenology +hep-ph/9406390 Phenomenology +hep-ph/9407233 Phenomenology +hep-ph/9407249 Phenomenology +hep-ph/9407383 Phenomenology +hep-ph/9407387 Phenomenology +hep-ph/9407391 Phenomenology +hep-ph/9408214 Phenomenology +hep-ph/9408260 Phenomenology +hep-ph/9409216 Phenomenology +hep-ph/9409262 Phenomenology +hep-ph/9409372 Phenomenology +hep-ph/9409383 Phenomenology +hep-ph/9409408 Phenomenology +hep-ph/9410219 Phenomenology +hep-ph/9410266 Phenomenology +hep-ph/9410286 Phenomenology +hep-ph/9410360 Phenomenology +hep-ph/9410380 Phenomenology +hep-ph/9411338 Phenomenology +hep-ph/9412319 Phenomenology +hep-ph/9412321 Phenomenology +hep-ph/9412366 Phenomenology +hep-ph/9501204 Phenomenology +hep-ph/9501205 Phenomenology +hep-ph/9501206 Phenomenology +hep-ph/9501207 Phenomenology +hep-ph/9501208 Phenomenology +hep-ph/9501209 Phenomenology +hep-ph/9501213 Phenomenology +hep-ph/9501214 Phenomenology +hep-ph/9501215 Phenomenology +hep-ph/9501216 Phenomenology +hep-ph/9501217 Phenomenology +hep-ph/9501219 Phenomenology +hep-ph/9501220 Phenomenology +hep-ph/9501224 Phenomenology +hep-ph/9501226 Phenomenology +hep-ph/9501227 Phenomenology +hep-ph/9501228 Phenomenology +hep-ph/9501229 Phenomenology +hep-ph/9501233 Phenomenology +hep-ph/9501234 Phenomenology +hep-ph/9501235 Phenomenology +hep-ph/9501236 Phenomenology +hep-ph/9501239 Phenomenology +hep-ph/9501240 Phenomenology +hep-ph/9501241 Phenomenology +hep-ph/9501242 Phenomenology +hep-ph/9501243 Phenomenology +hep-ph/9501244 Phenomenology +hep-ph/9501246 Phenomenology +hep-ph/9501247 Phenomenology +hep-ph/9501248 Phenomenology +hep-ph/9501249 Phenomenology +hep-ph/9501250 Phenomenology +hep-ph/9501253 Phenomenology +hep-ph/9501255 Phenomenology +hep-ph/9501256 Phenomenology +hep-ph/9501257 Phenomenology +hep-ph/9501258 Phenomenology +hep-ph/9501259 Phenomenology +hep-ph/9501260 Phenomenology +hep-ph/9501261 Phenomenology +hep-ph/9501262 Phenomenology +hep-ph/9501264 Phenomenology +hep-ph/9501267 Phenomenology +hep-ph/9501270 Phenomenology +hep-ph/9501271 Phenomenology +hep-ph/9501274 Phenomenology +hep-ph/9501276 Phenomenology +hep-ph/9501277 Phenomenology +hep-ph/9501278 Phenomenology +hep-ph/9501279 Phenomenology +hep-ph/9501280 Phenomenology +hep-ph/9501281 Phenomenology +hep-ph/9501282 Phenomenology +hep-ph/9501285 Phenomenology +hep-ph/9501286 Phenomenology +hep-ph/9501288 Phenomenology +hep-ph/9501289 Phenomenology +hep-ph/9501291 Phenomenology +hep-ph/9501293 Phenomenology +hep-ph/9501294 Phenomenology +hep-ph/9501297 Phenomenology +hep-ph/9501298 Phenomenology +hep-ph/9501300 Phenomenology +hep-ph/9501301 Phenomenology +hep-ph/9501302 Phenomenology +hep-ph/9501303 Phenomenology +hep-ph/9501305 Phenomenology +hep-ph/9501306 Phenomenology +hep-ph/9501307 Phenomenology +hep-ph/9501308 Phenomenology +hep-ph/9501309 Phenomenology +hep-ph/9501311 Phenomenology +hep-ph/9501312 Phenomenology +hep-ph/9501313 Phenomenology +hep-ph/9501315 Phenomenology +hep-ph/9501320 Phenomenology +hep-ph/9501322 Phenomenology +hep-ph/9501327 Phenomenology +hep-ph/9501328 Phenomenology +hep-ph/9501333 Phenomenology +hep-ph/9501335 Phenomenology +hep-ph/9501336 Phenomenology +hep-ph/9501337 Phenomenology +hep-ph/9501338 Phenomenology +hep-ph/9501340 Phenomenology +hep-ph/9501341 Phenomenology +hep-ph/9501344 Phenomenology +hep-ph/9501346 Phenomenology +hep-ph/9501348 Phenomenology +hep-ph/9501349 Phenomenology +hep-ph/9501351 Phenomenology +hep-ph/9501352 Phenomenology +hep-ph/9501353 Phenomenology +hep-ph/9501354 Phenomenology +hep-ph/9501362 Phenomenology +hep-ph/9501364 Phenomenology +hep-ph/9501365 Phenomenology +hep-ph/9501366 Phenomenology +hep-ph/9501367 Phenomenology +hep-ph/9501368 Phenomenology +hep-ph/9501372 Phenomenology +hep-ph/9501375 Phenomenology +hep-ph/9501376 Phenomenology +hep-ph/9501377 Phenomenology +hep-ph/9501378 Phenomenology +hep-ph/9501379 Phenomenology +hep-ph/9501381 Phenomenology +hep-ph/9501383 Phenomenology +hep-ph/9501385 Phenomenology +hep-ph/9501386 Phenomenology +hep-ph/9501390 Phenomenology +hep-ph/9501392 Phenomenology +hep-ph/9501393 Phenomenology +hep-ph/9501396 Phenomenology +hep-ph/9501398 Phenomenology +hep-ph/9501400 Phenomenology +hep-ph/9501403 Phenomenology +hep-ph/9501405 Phenomenology +hep-ph/9501406 Phenomenology +hep-ph/9501407 Phenomenology +hep-ph/9501408 Phenomenology +hep-ph/9501412 Phenomenology +hep-ph/9501413 Phenomenology +hep-ph/9501415 Phenomenology +hep-ph/9501416 Phenomenology +hep-ph/9501418 Phenomenology +hep-ph/9502201 Phenomenology +hep-ph/9502202 Phenomenology +hep-ph/9502203 Phenomenology +hep-ph/9502204 Phenomenology +hep-ph/9502207 Phenomenology +hep-ph/9502208 Phenomenology +hep-ph/9502211 Phenomenology +hep-ph/9502212 Phenomenology +hep-ph/9502213 Phenomenology +hep-ph/9502214 Phenomenology +hep-ph/9502216 Phenomenology +hep-ph/9502217 Phenomenology +hep-ph/9502218 Phenomenology +hep-ph/9502220 Phenomenology +hep-ph/9502221 Phenomenology +hep-ph/9502227 Phenomenology +hep-ph/9502230 Phenomenology +hep-ph/9502231 Phenomenology +hep-ph/9502232 Phenomenology +hep-ph/9502233 Phenomenology +hep-ph/9502234 Phenomenology +hep-ph/9502235 Phenomenology +hep-ph/9502236 Phenomenology +hep-ph/9502238 Phenomenology +hep-ph/9502240 Phenomenology +hep-ph/9502241 Phenomenology +hep-ph/9502242 Phenomenology +hep-ph/9502244 Phenomenology +hep-ph/9502247 Phenomenology +hep-ph/9502249 Phenomenology +hep-ph/9502251 Phenomenology +hep-ph/9502253 Phenomenology +hep-ph/9502254 Phenomenology +hep-ph/9502256 Phenomenology +hep-ph/9502257 Phenomenology +hep-ph/9502259 Phenomenology +hep-ph/9502260 Phenomenology +hep-ph/9502261 Phenomenology +hep-ph/9502262 Phenomenology +hep-ph/9502265 Phenomenology +hep-ph/9502267 Phenomenology +hep-ph/9502268 Phenomenology +hep-ph/9502269 Phenomenology +hep-ph/9502272 Phenomenology +hep-ph/9502273 Phenomenology +hep-ph/9502275 Phenomenology +hep-ph/9502277 Phenomenology +hep-ph/9502278 Phenomenology +hep-ph/9502279 Phenomenology +hep-ph/9502280 Phenomenology +hep-ph/9502282 Phenomenology +hep-ph/9502284 Phenomenology +hep-ph/9502287 Phenomenology +hep-ph/9502288 Phenomenology +hep-ph/9502289 Phenomenology +hep-ph/9502291 Phenomenology +hep-ph/9502292 Phenomenology +hep-ph/9502296 Phenomenology +hep-ph/9502298 Phenomenology +hep-ph/9502299 Phenomenology +hep-ph/9502301 Phenomenology +hep-ph/9502304 Phenomenology +hep-ph/9502305 Phenomenology +hep-ph/9502306 Phenomenology +hep-ph/9502307 Phenomenology +hep-ph/9502309 Phenomenology +hep-ph/9502310 Phenomenology +hep-ph/9502312 Phenomenology +hep-ph/9502313 Phenomenology +hep-ph/9502314 Phenomenology +hep-ph/9502315 Phenomenology +hep-ph/9502316 Phenomenology +hep-ph/9502319 Phenomenology +hep-ph/9502320 Phenomenology +hep-ph/9502321 Phenomenology +hep-ph/9502322 Phenomenology +hep-ph/9502325 Phenomenology +hep-ph/9502326 Phenomenology +hep-ph/9502328 Phenomenology +hep-ph/9502330 Phenomenology +hep-ph/9502331 Phenomenology +hep-ph/9502334 Phenomenology +hep-ph/9502336 Phenomenology +hep-ph/9502338 Phenomenology +hep-ph/9502341 Phenomenology +hep-ph/9502343 Phenomenology +hep-ph/9502344 Phenomenology +hep-ph/9502345 Phenomenology +hep-ph/9502349 Phenomenology +hep-ph/9502350 Phenomenology +hep-ph/9502351 Phenomenology +hep-ph/9502352 Phenomenology +hep-ph/9502354 Phenomenology +hep-ph/9502357 Phenomenology +hep-ph/9502359 Phenomenology +hep-ph/9502360 Phenomenology +hep-ph/9502361 Phenomenology +hep-ph/9502364 Phenomenology +hep-ph/9502365 Phenomenology +hep-ph/9502367 Phenomenology +hep-ph/9502368 Phenomenology +hep-ph/9502374 Phenomenology +hep-ph/9502379 Phenomenology +hep-ph/9502381 Phenomenology +hep-ph/9502383 Phenomenology +hep-ph/9502384 Phenomenology +hep-ph/9502388 Phenomenology +hep-ph/9502389 Phenomenology +hep-ph/9502390 Phenomenology +hep-ph/9502392 Phenomenology +hep-ph/9502393 Phenomenology +hep-ph/9502394 Phenomenology +hep-ph/9502397 Phenomenology +hep-ph/9502398 Phenomenology +hep-ph/9502399 Phenomenology +hep-ph/9502400 Phenomenology +hep-ph/9502401 Phenomenology +hep-ph/9502402 Phenomenology +hep-ph/9502403 Phenomenology +hep-ph/9502405 Phenomenology +hep-ph/9502407 Phenomenology +hep-ph/9502409 Phenomenology +hep-ph/9502410 Phenomenology +hep-ph/9502411 Phenomenology +hep-ph/9502412 Phenomenology +hep-ph/9502413 Phenomenology +hep-ph/9502414 Phenomenology +hep-ph/9502415 Phenomenology +hep-ph/9502416 Phenomenology +hep-ph/9502417 Phenomenology +hep-ph/9502418 Phenomenology +hep-ph/9503202 Phenomenology +hep-ph/9503203 Phenomenology +hep-ph/9503204 Phenomenology +hep-ph/9503205 Phenomenology +hep-ph/9503206 Phenomenology +hep-ph/9503209 Phenomenology +hep-ph/9503210 Phenomenology +hep-ph/9503211 Phenomenology +hep-ph/9503212 Phenomenology +hep-ph/9503213 Phenomenology +hep-ph/9503214 Phenomenology +hep-ph/9503219 Phenomenology +hep-ph/9503220 Phenomenology +hep-ph/9503221 Phenomenology +hep-ph/9503222 Phenomenology +hep-ph/9503225 Phenomenology +hep-ph/9503226 Phenomenology +hep-ph/9503227 Phenomenology +hep-ph/9503228 Phenomenology +hep-ph/9503229 Phenomenology +hep-ph/9503235 Phenomenology +hep-ph/9503241 Phenomenology +hep-ph/9503242 Phenomenology +hep-ph/9503245 Phenomenology +hep-ph/9503246 Phenomenology +hep-ph/9503247 Phenomenology +hep-ph/9503248 Phenomenology +hep-ph/9503249 Phenomenology +hep-ph/9503250 Phenomenology +hep-ph/9503251 Phenomenology +hep-ph/9503253 Phenomenology +hep-ph/9503254 Phenomenology +hep-ph/9503256 Phenomenology +hep-ph/9503257 Phenomenology +hep-ph/9503258 Phenomenology +hep-ph/9503261 Phenomenology +hep-ph/9503264 Phenomenology +hep-ph/9503265 Phenomenology +hep-ph/9503267 Phenomenology +hep-ph/9503271 Phenomenology +hep-ph/9503272 Phenomenology +hep-ph/9503275 Phenomenology +hep-ph/9503277 Phenomenology +hep-ph/9503279 Phenomenology +hep-ph/9503281 Phenomenology +hep-ph/9503283 Phenomenology +hep-ph/9503284 Phenomenology +hep-ph/9503286 Phenomenology +hep-ph/9503288 Phenomenology +hep-ph/9503292 Phenomenology +hep-ph/9503294 Phenomenology +hep-ph/9503296 Phenomenology +hep-ph/9503297 Phenomenology +hep-ph/9503299 Phenomenology +hep-ph/9503301 Phenomenology +hep-ph/9503302 Phenomenology +hep-ph/9503303 Phenomenology +hep-ph/9503306 Phenomenology +hep-ph/9503311 Phenomenology +hep-ph/9503312 Phenomenology +hep-ph/9503314 Phenomenology +hep-ph/9503315 Phenomenology +hep-ph/9503316 Phenomenology +hep-ph/9503317 Phenomenology +hep-ph/9503318 Phenomenology +hep-ph/9503319 Phenomenology +hep-ph/9503320 Phenomenology +hep-ph/9503321 Phenomenology +hep-ph/9503324 Phenomenology +hep-ph/9503325 Phenomenology +hep-ph/9503327 Phenomenology +hep-ph/9503328 Phenomenology +hep-ph/9503329 Phenomenology +hep-ph/9503330 Phenomenology +hep-ph/9503333 Phenomenology +hep-ph/9503336 Phenomenology +hep-ph/9503339 Phenomenology +hep-ph/9503340 Phenomenology +hep-ph/9503341 Phenomenology +hep-ph/9503342 Phenomenology +hep-ph/9503343 Phenomenology +hep-ph/9503344 Phenomenology +hep-ph/9503349 Phenomenology +hep-ph/9503350 Phenomenology +hep-ph/9503356 Phenomenology +hep-ph/9503360 Phenomenology +hep-ph/9503361 Phenomenology +hep-ph/9503363 Phenomenology +hep-ph/9503364 Phenomenology +hep-ph/9503365 Phenomenology +hep-ph/9503366 Phenomenology +hep-ph/9503367 Phenomenology +hep-ph/9503368 Phenomenology +hep-ph/9503369 Phenomenology +hep-ph/9503370 Phenomenology +hep-ph/9503371 Phenomenology +hep-ph/9503372 Phenomenology +hep-ph/9503374 Phenomenology +hep-ph/9503375 Phenomenology +hep-ph/9503378 Phenomenology +hep-ph/9503386 Phenomenology +hep-ph/9503399 Phenomenology +hep-ph/9503412 Phenomenology +hep-ph/9503424 Phenomenology +hep-ph/9503436 Phenomenology +hep-ph/9503469 Phenomenology +hep-ph/9504217 Phenomenology +hep-ph/9504247 Phenomenology +hep-ph/9504284 Phenomenology +hep-ph/9504292 Phenomenology +hep-ph/9504293 Phenomenology +hep-ph/9504302 Phenomenology +hep-ph/9504311 Phenomenology +hep-ph/9504320 Phenomenology +hep-ph/9504372 Phenomenology +hep-ph/9505368 Phenomenology +hep-ph/9505402 Phenomenology +hep-ph/9505414 Phenomenology +hep-ph/9505415 Phenomenology +hep-ph/9505439 Phenomenology +hep-ph/9506220 Phenomenology +hep-ph/9506225 Phenomenology +hep-ph/9506246 Phenomenology +hep-ph/9506299 Phenomenology +hep-ph/9506303 Phenomenology +hep-ph/9506349 Phenomenology +hep-ph/9506384 Phenomenology +hep-ph/9506434 Phenomenology +hep-ph/9507205 Phenomenology +hep-ph/9507237 Phenomenology +hep-ph/9507276 Phenomenology +hep-ph/9507300 Phenomenology +hep-ph/9507335 Phenomenology +hep-ph/9507434 Phenomenology +hep-ph/9508206 Phenomenology +hep-ph/9508215 Phenomenology +hep-ph/9508228 Phenomenology +hep-ph/9508249 Phenomenology +hep-ph/9508315 Phenomenology +hep-ph/9508319 Phenomenology +hep-ph/9508324 Phenomenology +hep-ph/9508337 Phenomenology +hep-ph/9508352 Phenomenology +hep-ph/9508365 Phenomenology +hep-ph/9509202 Phenomenology +hep-ph/9509215 Phenomenology +hep-ph/9509241 Phenomenology +hep-ph/9509283 Phenomenology +hep-ph/9509335 Phenomenology +hep-ph/9510241 Phenomenology +hep-ph/9510247 Phenomenology +hep-ph/9510307 Phenomenology +hep-ph/9510401 Phenomenology +hep-ph/9511231 Phenomenology +hep-ph/9511238 Phenomenology +hep-ph/9511244 Phenomenology +hep-ph/9511274 Phenomenology +hep-ph/9511360 Phenomenology +hep-ph/9511421 Phenomenology +hep-ph/9512277 Phenomenology +hep-ph/9512295 Phenomenology +hep-ph/9512304 Phenomenology +hep-ph/9512432 Phenomenology +hep-ph/9601208 Phenomenology +hep-ph/9601221 Phenomenology +hep-ph/9601293 Phenomenology +hep-ph/9601310 Phenomenology +hep-ph/9601348 Phenomenology +hep-ph/9601358 Phenomenology +hep-ph/9602247 Phenomenology +hep-ph/9602345 Phenomenology +hep-ph/9602352 Phenomenology +hep-ph/9602398 Phenomenology +hep-ph/9602431 Phenomenology +hep-ph/9603224 Phenomenology +hep-ph/9603226 Phenomenology +hep-ph/9603227 Phenomenology +hep-ph/9603241 Phenomenology +hep-ph/9603298 Phenomenology +hep-ph/9603322 Phenomenology +hep-ph/9603360 Phenomenology +hep-ph/9603375 Phenomenology +hep-ph/9603421 Phenomenology +hep-ph/9603422 Phenomenology +hep-ph/9604217 Phenomenology +hep-ph/9604274 Phenomenology +hep-ph/9604295 Phenomenology +hep-ph/9604304 Phenomenology +hep-ph/9604309 Phenomenology +hep-ph/9604343 Phenomenology +hep-ph/9604356 Phenomenology +hep-ph/9604368 Phenomenology +hep-ph/9604380 Phenomenology +hep-ph/9604437 Phenomenology +hep-ph/9604438 Phenomenology +hep-ph/9605217 Phenomenology +hep-ph/9605262 Phenomenology +hep-ph/9605281 Phenomenology +hep-ph/9605289 Phenomenology +hep-ph/9605299 Phenomenology +hep-ph/9605362 Phenomenology +hep-ph/9605369 Phenomenology +0903.2802 High Energy Astrophysical Phenomena +0906.3878 Fluid Dynamics +1001.3701 Materials Science +1006.0847 Quantum Algebra +1007.2697 Classical Analysis and ODEs +1010.4724 Materials Science +1104.1559 Quantum Algebra +1112.6043 Phenomenology +1202.1460 Analysis of PDEs +1207.2045 Rings and Algebras +1209.0307 Logic +1210.4471 Statistical Mechanics +1210.4767 Commutative Algebra +1211.2528 Statistical Mechanics +1301.5271 Combinatorics +1303.6752 Dynamical Systems +1304.1642 +1305.0834 Astrophysics of Galaxies +1305.2405 Instrumentation and Detectors +1311.1825 Quantum Gases +1311.4711 Mesoscale and Nanoscale Physics +1311.5095 +1401.4968 Materials Science +1402.0689 Materials Science +1402.2587 Category Theory +1403.0298 Data Structures and Algorithms +1404.3704 Strongly Correlated Electrons +1404.5960 High Energy Astrophysical Phenomena +1405.4276 Materials Science +1405.7762 Phenomenology +1406.1725 Information Theory +1406.3612 Probability +1406.6079 Astrophysics of Galaxies +1408.2729 +1408.2919 +1408.4779 Geometric Topology +1409.1306 Operator Algebras +1409.2099 +1410.6111 Algebraic Topology +1410.7322 Materials Science +1410.7407 Disordered Systems and Neural Networks +1411.6911 Group Theory +1412.6836 Algebraic Geometry +1501.02606 Geometric Topology +1501.04197 Algebraic Geometry +1501.06188 Probability +1502.03804 Number Theory +1503.00651 Mesoscale and Nanoscale Physics +1503.02928 Mesoscale and Nanoscale Physics +1503.03399 Number Theory +1503.05085 +1503.05717 Plasma Physics +1503.08966 Atomic Physics +1504.02643 +1504.02717 Group Theory +1504.05417 Earth and Planetary Astrophysics +1504.06335 Cosmology and Nongalactic Astrophysics +1505.00647 Number Theory +1505.04697 Methodology +1506.00841 Algebraic Geometry +1506.02304 +1506.03093 Mesoscale and Nanoscale Physics +1506.06201 Methodology +1506.08148 Metric Geometry +1507.00982 Cosmology and Nongalactic Astrophysics +1507.02225 Quantum Gases +1507.04999 Representation Theory +1507.07676 Quantum Algebra +1507.07696 Probability +1508.01361 Statistical Mechanics +1508.01606 +1508.01985 Number Theory +1508.02245 Combinatorics +1508.02611 Theory +1508.04171 Astrophysics of Galaxies +1508.07967 Optimization and Control +1509.00129 Instrumentation and Methods for Astrophysics +1509.00366 Quantum Gases +1509.01377 Information Theory +1509.01486 Probability +1509.06027 +1509.06675 Classical Analysis and ODEs +1509.07067 Quantum Algebra +1509.07073 Analysis of PDEs +1510.00432 Emerging Technologies +1510.00710 Phenomenology +1510.01820 Representation Theory +1510.02304 Statistical Mechanics +1510.02657 Probability +1510.03484 Earth and Planetary Astrophysics +1510.04656 +1510.07068 Number Theory +1510.07958 General Physics +1510.08425 +1511.02829 Combinatorics +1511.03617 Astrophysics of Galaxies +1511.03668 Strongly Correlated Electrons +1511.05156 Cosmology and Nongalactic Astrophysics +1511.07066 Cosmology and Nongalactic Astrophysics +1511.08115 Materials Science +1511.08423 Dynamical Systems +1511.08452 Classical Analysis and ODEs +1511.09305 Number Theory +1512.00767 Solar and Stellar Astrophysics +1512.01086 Mesoscale and Nanoscale Physics +1512.02882 Cosmology and Nongalactic Astrophysics +1512.03009 +1512.04030 Number Theory +1512.05799 Superconductivity +1512.06533 Algebraic Geometry +1512.06779 Theory +1512.06812 Mathematical Finance +1512.09065 +1601.00546 Astrophysics of Galaxies +1601.01126 Applications +1601.02632 Strongly Correlated Electrons +1601.02633 Theory +1601.02793 Commutative Algebra +1601.04525 Astrophysics of Galaxies +1601.05415 Theory +1601.05521 Materials Science +1601.05912 +1601.07046 Algebraic Geometry +1601.07630 Computer Vision and Pattern Recognition +1602.00245 Applications +1602.00575 Learning +1602.00691 Earth and Planetary Astrophysics +1602.00773 Databases +1602.01034 Mesoscale and Nanoscale Physics +1602.01088 High Energy Astrophysical Phenomena +1602.01099 Astrophysics of Galaxies +1602.02122 Mesoscale and Nanoscale Physics +1602.02425 Mesoscale and Nanoscale Physics +1602.05110 Learning +1602.06624 Astrophysics of Galaxies +1602.07054 +1602.07105 Algebraic Topology +1602.07331 Algebraic Geometry +1602.07505 Quantum Gases +1602.07588 Experiment +1602.07885 Number Theory +1602.08010 Information Theory +1602.08076 Differential Geometry +1602.09010 Cosmology and Nongalactic Astrophysics +1603.00465 Astrophysics of Galaxies +1603.00545 High Energy Astrophysical Phenomena +1603.00640 Number Theory +1603.01553 +1603.01810 Atomic Physics +1603.01959 Cosmology and Nongalactic Astrophysics +1603.02409 Quantum Gases +1603.03778 Astrophysics of Galaxies +1603.04615 Discrete Mathematics +1603.04919 Cosmology and Nongalactic Astrophysics +1603.05000 +1603.05232 Cosmology and Nongalactic Astrophysics +1603.05327 +1603.05534 Optimization and Control +1603.05545 +1603.06403 Fluid Dynamics +1603.07068 Combinatorics +1603.07498 +1603.08267 Statistical Mechanics +1603.08859 Theory +1603.09119 +1603.09605 Fluid Dynamics +1604.00102 Astrophysics of Galaxies +1604.00336 Materials Science +1604.00396 High Energy Astrophysical Phenomena +1604.01029 Astrophysics of Galaxies +1604.01264 Phenomenology +1604.01345 Computer Vision and Pattern Recognition +1604.01788 Cosmology and Nongalactic Astrophysics +1604.03080 +1604.03589 Materials Science +1604.04071 Complex Variables +1604.04612 Cosmology and Nongalactic Astrophysics +1604.04838 +1604.04929 Quantum Gases +1604.05314 Astrophysics of Galaxies +1604.05370 Instrumentation and Methods for Astrophysics +1604.05729 Solar and Stellar Astrophysics +1604.06249 Quantum Gases +1604.06459 Astrophysics of Galaxies +1604.06807 Strongly Correlated Electrons +1604.06969 Quantum Gases +1604.07071 +1604.07524 Experiment +1604.07833 Cosmology and Nongalactic Astrophysics +1604.07842 Astrophysics of Galaxies +1604.08108 +1604.08920 Soft Condensed Matter +1604.08941 Earth and Planetary Astrophysics +1605.00007 Theory +1605.00196 +1605.00560 Quantum Algebra +1605.00597 Quantum Gases +1605.00966 Astrophysics of Galaxies +1605.01104 Astrophysics of Galaxies +1605.01830 Mesoscale and Nanoscale Physics +1605.02596 +1605.02985 Cosmology and Nongalactic Astrophysics +1605.03411 Functional Analysis +1605.03412 Astrophysics of Galaxies +1605.03479 Physics and Society +1605.03507 Cosmology and Nongalactic Astrophysics +1605.03575 Astrophysics of Galaxies +1605.03591 High Energy Astrophysical Phenomena +1605.03814 Experiment +1605.04310 Earth and Planetary Astrophysics +1605.04659 Lattice +1605.05623 Cosmology and Nongalactic Astrophysics +1605.05700 Instrumentation and Methods for Astrophysics +1605.05820 Materials Science +1605.05956 +1605.06334 Astrophysics of Galaxies +1605.06395 Operator Algebras +1605.06479 Phenomenology +1605.06503 Astrophysics of Galaxies +1605.06569 Instrumentation and Methods for Astrophysics +1605.06733 Quantum Algebra +1605.07117 Differential Geometry +1605.07621 Cosmology and Nongalactic Astrophysics +1605.07636 Theory +1605.07777 Mesoscale and Nanoscale Physics +1605.07855 Strongly Correlated Electrons +1605.08057 Astrophysics of Galaxies +1605.08479 Geophysics +1605.08520 Phenomenology +1605.08633 Cosmology and Nongalactic Astrophysics +1605.08810 Earth and Planetary Astrophysics +1605.08821 +1605.09387 Cosmology and Nongalactic Astrophysics +1605.09660 Instrumentation and Methods for Astrophysics +1606.00208 +1606.00476 Phenomenology +1606.00660 +1606.00690 Instrumentation and Methods for Astrophysics +1606.00838 Theory +1606.01566 Rings and Algebras +1606.01813 Experiment +1606.01902 Theory +1606.02001 Instrumentation and Detectors +1606.02087 Information Theory +1606.02594 Statistical Mechanics +1606.02687 Strongly Correlated Electrons +1606.02896 Instrumentation and Detectors +1606.03125 Astrophysics of Galaxies +1606.03232 Mesoscale and Nanoscale Physics +1606.04057 Neurons and Cognition +1606.04286 Cosmology and Nongalactic Astrophysics +1606.04413 Instrumentation and Methods for Astrophysics +1606.04575 Solar and Stellar Astrophysics +1606.04595 Mesoscale and Nanoscale Physics +1606.04932 +1606.04973 Physics and Society +1606.05280 Astrophysics of Galaxies +1606.05584 Methodology +1606.05624 Physics and Society +1606.05648 Astrophysics of Galaxies +1606.06205 Strongly Correlated Electrons +1606.06496 +1606.06600 +1606.06869 +1606.07097 High Energy Astrophysical Phenomena +1606.07115 Lattice +1606.07140 Instrumentation and Methods for Astrophysics +1606.07340 Theory +1606.07361 Theory +1606.07680 Mesoscale and Nanoscale Physics +1606.07756 Statistical Mechanics +1606.08045 +1606.08198 +1606.08873 High Energy Astrophysical Phenomena +1606.09209 Mesoscale and Nanoscale Physics +1606.09214 Instrumentation and Methods for Astrophysics +1607.00081 +1607.00261 +1607.00294 +1607.00340 Metric Geometry +1607.00704 Experiment +1607.01013 Earth and Planetary Astrophysics +1607.01560 Instrumentation and Methods for Astrophysics +1607.01954 Instrumentation and Methods for Astrophysics +1607.02119 Cosmology and Nongalactic Astrophysics +1607.02197 Computational Physics +1607.02248 Statistics Theory +1607.02357 Instrumentation and Detectors +1607.02393 Solar and Stellar Astrophysics +1607.02432 Instrumentation and Methods for Astrophysics +1607.02462 Materials Science +1607.02507 Astrophysics of Galaxies +1607.02520 Astrophysics of Galaxies +1607.02965 Instrumentation and Methods for Astrophysics +1607.03256 Superconductivity +1607.03490 Instrumentation and Methods for Astrophysics +1607.03701 Solar and Stellar Astrophysics +1607.03729 Instrumentation and Methods for Astrophysics +1607.03919 Earth and Planetary Astrophysics +1607.04089 Strongly Correlated Electrons +1607.04124 Phenomenology +1607.04275 Astrophysics of Galaxies +1607.04506 Logic +1607.04533 Astrophysics of Galaxies +1607.04569 Cosmology and Nongalactic Astrophysics +1607.04690 Logic in Computer Science +1607.04708 Earth and Planetary Astrophysics +1607.05003 Instrumentation and Methods for Astrophysics +1607.05027 Lattice +1607.05232 Cosmology and Nongalactic Astrophysics +1607.05245 Phenomenology +1607.05471 Probability +1607.05634 Instrumentation and Methods for Astrophysics +1607.05775 Earth and Planetary Astrophysics +1607.05811 Earth and Planetary Astrophysics +1607.05886 High Energy Astrophysical Phenomena +1607.06075 Astrophysics of Galaxies +1607.06218 Phenomenology +1607.06336 Solar and Stellar Astrophysics +1607.06352 Quantum Gases +1607.06449 Mesoscale and Nanoscale Physics +1607.06476 High Energy Astrophysical Phenomena +1607.06592 Solar and Stellar Astrophysics +1607.06735 +1607.06767 Instrumentation and Methods for Astrophysics +1607.06768 Astrophysics of Galaxies +1607.06769 Astrophysics of Galaxies +1607.06770 Astrophysics of Galaxies +1607.06771 Astrophysics of Galaxies +1607.06772 Astrophysics of Galaxies +1607.06773 Astrophysics of Galaxies +1607.06970 Earth and Planetary Astrophysics +1607.07058 Cosmology and Nongalactic Astrophysics +1607.07231 Solar and Stellar Astrophysics +1607.07237 Instrumentation and Methods for Astrophysics +1607.07456 High Energy Astrophysical Phenomena +1607.07480 Plasma Physics +1607.07585 Solar and Stellar Astrophysics +1607.07710 Astrophysics of Galaxies +1607.07721 Instrumentation and Methods for Astrophysics +1607.07869 Cosmology and Nongalactic Astrophysics +1607.07923 Experiment +1607.07928 Solar and Stellar Astrophysics +1607.07945 Strongly Correlated Electrons +1607.08172 Solar and Stellar Astrophysics +1607.08231 Theory +1607.08237 Earth and Planetary Astrophysics +1607.08346 Geophysics +1607.08481 Computer Vision and Pattern Recognition +1607.08749 Instrumentation and Methods for Astrophysics +1608.00049 Astrophysics of Galaxies +1608.00050 High Energy Astrophysical Phenomena +1608.00590 Mesoscale and Nanoscale Physics +1608.00593 Solar and Stellar Astrophysics +1608.00675 Instrumentation and Methods for Astrophysics +1608.00714 Soft Condensed Matter +1608.00843 Phenomenology +1608.01033 +1608.01035 Numerical Analysis +1608.01075 Instrumentation and Methods for Astrophysics +1608.01196 Instrumentation and Methods for Astrophysics +1608.01287 Instrumentation and Methods for Astrophysics +1608.01327 Astrophysics of Galaxies +1608.01421 Earth and Planetary Astrophysics +1608.01649 Superconductivity +1608.01690 Instrumentation and Methods for Astrophysics +1608.01693 Instrumentation and Methods for Astrophysics +1608.01720 Instrumentation and Methods for Astrophysics +1608.01733 Instrumentation and Methods for Astrophysics +1608.01791 Optics +1608.01876 Optics +1608.01902 Phenomenology +1608.01913 Instrumentation and Methods for Astrophysics +1608.01991 Phenomenology +1608.02001 Earth and Planetary Astrophysics +1608.02118 Phenomenology +1608.02159 Phenomenology +1608.02298 Strongly Correlated Electrons +1608.02350 Instrumentation and Methods for Astrophysics +1608.02351 Instrumentation and Methods for Astrophysics +1608.02396 Astrophysics of Galaxies +1608.02428 Economics +1608.02435 Instrumentation and Methods for Astrophysics +1608.02601 Astrophysics of Galaxies +1608.02640 Instrumentation and Methods for Astrophysics +1608.02751 Solar and Stellar Astrophysics +1608.02936 Instrumentation and Detectors +1608.03097 High Energy Astrophysical Phenomena +1608.03121 +1608.03230 Instrumentation and Methods for Astrophysics +1608.03318 +1608.03523 Strongly Correlated Electrons +1608.03630 Distributed, Parallel, and Cluster Computing +1608.03844 Atomic Physics +1608.03865 Earth and Planetary Astrophysics +1608.03886 Astrophysics of Galaxies +1608.03930 High Energy Astrophysical Phenomena +1608.04022 Classical Analysis and ODEs +1608.04138 Information Theory +1608.04180 Cryptography and Security +1608.04368 Mesoscale and Nanoscale Physics +1608.04583 Statistical Mechanics +1608.04751 High Energy Astrophysical Phenomena +1608.04760 Earth and Planetary Astrophysics +1608.04928 +1608.04934 Astrophysics of Galaxies +1608.05301 Statistical Mechanics +1608.05399 Mesoscale and Nanoscale Physics +1608.05423 Instrumentation and Methods for Astrophysics +1608.05459 +1608.05482 High Energy Astrophysical Phenomena +1608.06089 +1608.06090 Instrumentation and Methods for Astrophysics +1608.06245 Instrumentation and Methods for Astrophysics +1608.06637 Strongly Correlated Electrons +1608.06648 Atomic Physics +1608.06806 Phenomenology +1608.06813 Earth and Planetary Astrophysics +1608.06827 Earth and Planetary Astrophysics +1608.06869 Astrophysics of Galaxies +1608.07023 High Energy Astrophysical Phenomena +1608.07099 Atomic Physics +1608.07120 Atomic Physics +1608.07280 Astrophysics of Galaxies +1608.07515 Instrumentation and Methods for Astrophysics +1608.07584 Astrophysics of Galaxies +1608.07653 Astrophysics of Galaxies +1608.07673 High Energy Astrophysical Phenomena +1608.07984 Disordered Systems and Neural Networks +1608.08310 Phenomenology +1608.08321 Optimization and Control +1608.08350 Astrophysics of Galaxies +1608.08421 Logic +1608.08621 Astrophysics of Galaxies +1608.08625 Phenomenology +1608.08735 Earth and Planetary Astrophysics +1608.08757 Experiment +1608.08772 Earth and Planetary Astrophysics +1608.08842 Solar and Stellar Astrophysics +1608.08881 High Energy Astrophysical Phenomena +1608.08884 High Energy Astrophysical Phenomena +1608.08943 +1608.08983 High Energy Astrophysical Phenomena +1609.00012 Astrophysics of Galaxies +1609.00033 Strongly Correlated Electrons +1609.00270 +1609.00407 +1609.00497 Instrumentation and Methods for Astrophysics +1609.00669 Theory +1609.00725 High Energy Astrophysical Phenomena +1609.00894 Solar and Stellar Astrophysics +1609.01018 Phenomenology +1609.01026 Solar and Stellar Astrophysics +1609.01106 Solar and Stellar Astrophysics +1609.01151 Optics +1609.01291 Astrophysics of Galaxies +1609.01350 Phenomenology +1609.01463 Solar and Stellar Astrophysics +1609.01522 Astrophysics of Galaxies +1609.01588 Cosmology and Nongalactic Astrophysics +1609.02134 Solar and Stellar Astrophysics +1609.02150 Astrophysics of Galaxies +1609.02155 Astrophysics of Galaxies +1609.02204 Solar and Stellar Astrophysics +1609.02215 Solar and Stellar Astrophysics +1609.02256 Solar and Stellar Astrophysics +1609.02376 Solar and Stellar Astrophysics +1609.02417 Astrophysics of Galaxies +1609.02561 Astrophysics of Galaxies +1609.02734 Plasma Physics +1609.02861 Superconductivity +1609.02908 Cosmology and Nongalactic Astrophysics +1609.03269 Astrophysics of Galaxies +1609.03280 Astrophysics of Galaxies +1609.03489 Experiment +1609.03560 Theory +1609.03567 Solar and Stellar Astrophysics +1609.03656 Instrumentation and Methods for Astrophysics +1609.03748 Astrophysics of Galaxies +1609.03759 Robotics +1609.03932 Instrumentation and Methods for Astrophysics +1609.04008 High Energy Astrophysical Phenomena +1609.04015 High Energy Astrophysical Phenomena +1609.04245 Neurons and Cognition +1609.04639 Soft Condensed Matter +1609.04674 Solar and Stellar Astrophysics +1609.04708 Strongly Correlated Electrons +1609.04824 Astrophysics of Galaxies +1609.04825 Cosmology and Nongalactic Astrophysics +1609.04858 Solar and Stellar Astrophysics +1609.04970 Earth and Planetary Astrophysics +1609.05061 Biomolecules +1609.05089 Instrumentation and Methods for Astrophysics +1609.05346 Solar and Stellar Astrophysics +1609.05392 Fluid Dynamics +1609.05460 Earth and Planetary Astrophysics +1609.05538 Astrophysics of Galaxies +1609.05568 Theory +1609.05688 Astrophysics of Galaxies +1609.06152 Instrumentation and Methods for Astrophysics +1609.06255 Phenomenology +1609.06319 High Energy Astrophysical Phenomena +1609.06357 Statistics Theory +1609.06360 +1609.06366 Astrophysics of Galaxies +1609.06381 Systems and Control +1609.06440 Astrophysics of Galaxies +1609.06540 Astrophysics of Galaxies +1609.06611 Solar and Stellar Astrophysics +1609.06695 Solar and Stellar Astrophysics +1609.06857 Astrophysics of Galaxies +1609.07470 Astrophysics of Galaxies +1609.07500 Astrophysics of Galaxies +1609.07617 Earth and Planetary Astrophysics +1609.07821 Astrophysics of Galaxies +1609.07891 +1609.07987 Materials Science +1609.08179 Cosmology and Nongalactic Astrophysics +1609.08271 Solar and Stellar Astrophysics +1609.08290 High Energy Astrophysical Phenomena +1609.08634 Earth and Planetary Astrophysics +1609.08660 Astrophysics of Galaxies +1609.08693 Instrumentation and Methods for Astrophysics +1609.08711 Solar and Stellar Astrophysics +1609.09076 Solar and Stellar Astrophysics +1609.09093 High Energy Astrophysical Phenomena +1609.09100 Solar and Stellar Astrophysics +1609.09136 Theory +1609.09138 Quantum Gases +1609.09479 Solar and Stellar Astrophysics +1609.09503 High Energy Astrophysical Phenomena +1609.09649 Astrophysics of Galaxies +1609.09763 Solar and Stellar Astrophysics +1610.00056 +1610.00347 Astrophysics of Galaxies +1610.00403 High Energy Astrophysical Phenomena +1610.00431 High Energy Astrophysical Phenomena +1610.00495 Astrophysics of Galaxies +1610.00583 Rings and Algebras +1610.00658 Astrophysics of Galaxies +1610.00713 Astrophysics of Galaxies +1610.00716 Astrophysics of Galaxies +1610.00721 Solar and Stellar Astrophysics +1610.00834 Astrophysics of Galaxies +1610.00927 Dynamical Systems +1610.01167 Astrophysics of Galaxies +1610.01186 Earth and Planetary Astrophysics +1610.01233 Astrophysics of Galaxies +1610.01258 Theory +1610.01286 Astrophysics of Galaxies +1610.01358 Cosmology and Nongalactic Astrophysics +1610.01503 Phenomenology +1610.01581 Instrumentation and Methods for Astrophysics +1610.01619 Astrophysics of Galaxies +1610.01657 Optics +1610.01662 Statistical Mechanics +1610.01667 Solar and Stellar Astrophysics +1610.01705 High Energy Astrophysical Phenomena +1610.01780 Solar and Stellar Astrophysics +1610.01904 Solar and Stellar Astrophysics +1610.01934 Learning +1610.01963 Theory +1610.01984 Solar and Stellar Astrophysics +1610.02034 Astrophysics of Galaxies +1610.02066 Data Structures and Algorithms +1610.02082 Solar and Stellar Astrophysics +1610.02113 Solar and Stellar Astrophysics +1610.02404 Astrophysics of Galaxies +1610.02416 Astrophysics of Galaxies +1610.02773 Astrophysics of Galaxies +1610.02944 Solar and Stellar Astrophysics +1610.02947 Computer Vision and Pattern Recognition +1610.03051 Solar and Stellar Astrophysics +1610.03059 Astrophysics of Galaxies +1610.03236 Astrophysics of Galaxies +1610.03407 Solar and Stellar Astrophysics +1610.03436 Earth and Planetary Astrophysics +1610.03802 Category Theory +1610.03811 Phenomenology +1610.03859 Astrophysics of Galaxies +1610.03925 Astrophysics of Galaxies +1610.03997 Phenomenology +1610.04061 High Energy Astrophysical Phenomena +1610.04221 High Energy Astrophysical Phenomena +1610.04313 High Energy Astrophysical Phenomena +1610.04316 Solar and Stellar Astrophysics +1610.04328 Solar and Stellar Astrophysics +1610.04381 Solar and Stellar Astrophysics +1610.04402 High Energy Astrophysical Phenomena +1610.04428 Optics +1610.04508 High Energy Astrophysical Phenomena +1610.04685 High Energy Astrophysical Phenomena +1610.04709 High Energy Astrophysical Phenomena +1610.04732 Solar and Stellar Astrophysics +1610.04739 Statistical Mechanics +1610.04992 Earth and Planetary Astrophysics +1610.05121 Distributed, Parallel, and Cluster Computing +1610.05158 Space Physics +1610.05176 Solar and Stellar Astrophysics +1610.05316 Astrophysics of Galaxies +1610.05326 Instrumentation and Methods for Astrophysics +1610.05332 Solar and Stellar Astrophysics +1610.05393 Astrophysics of Galaxies +1610.05449 Functional Analysis +1610.05488 Solar and Stellar Astrophysics +1610.05678 Materials Science +1610.05687 Solar and Stellar Astrophysics +1610.05713 Atomic Physics +1610.05761 Solar and Stellar Astrophysics +1610.05777 Astrophysics of Galaxies +1610.05904 Differential Geometry +1610.06333 High Energy Astrophysical Phenomena +1610.06511 Social and Information Networks +1610.06561 High Energy Astrophysical Phenomena +1610.06580 Astrophysics of Galaxies +1610.06642 Astrophysics of Galaxies +1610.06777 Numerical Analysis +1610.06926 Earth and Planetary Astrophysics +1610.06951 Solar and Stellar Astrophysics +1610.07002 Astrophysics of Galaxies +1610.07113 Materials Science +1610.07139 Solar and Stellar Astrophysics +1610.07247 Astrophysics of Galaxies +1610.07616 High Energy Astrophysical Phenomena +1610.07679 Earth and Planetary Astrophysics +1610.07768 Complex Variables +1610.07818 Astrophysics of Galaxies +1610.07920 Cosmology and Nongalactic Astrophysics +1610.07924 Mesoscale and Nanoscale Physics +1610.08056 High Energy Astrophysical Phenomena +1610.08061 Astrophysics of Galaxies +1610.08125 Solar and Stellar Astrophysics +1610.08130 Solar and Stellar Astrophysics +1610.08149 Solar and Stellar Astrophysics +1610.08264 Solar and Stellar Astrophysics +1610.08323 High Energy Astrophysical Phenomena +1610.08493 Optics +1610.08817 Phenomenology +1610.08980 Astrophysics of Galaxies +1610.09178 Theory +1610.09662 Solar and Stellar Astrophysics +1611.00024 Information Theory +1611.00036 Instrumentation and Methods for Astrophysics +1611.00037 Instrumentation and Methods for Astrophysics +1611.00765 Solar and Stellar Astrophysics +1611.00930 Astrophysics of Galaxies +1611.01095 Astrophysics of Galaxies +1611.01207 Solar and Stellar Astrophysics +1611.01588 High Energy Astrophysical Phenomena +1611.01746 Solar and Stellar Astrophysics +1611.01953 Solar and Stellar Astrophysics +1611.01994 Optics +1611.02074 Solar and Stellar Astrophysics +1611.02509 Solar and Stellar Astrophysics +1611.02715 Solar and Stellar Astrophysics +1611.03207 Materials Science +1611.03325 Solar and Stellar Astrophysics +1611.03499 Astrophysics of Galaxies +1611.03521 Solar and Stellar Astrophysics +1611.04283 Astrophysics of Galaxies +1611.04318 Earth and Planetary Astrophysics +1611.04331 High Energy Astrophysical Phenomena +1611.04342 High Energy Astrophysical Phenomena +1611.04348 Logic +1611.04406 Dynamical Systems +1611.04615 Cosmology and Nongalactic Astrophysics +1611.04880 Cryptography and Security +1611.05198 Computer Vision and Pattern Recognition +1611.05608 Differential Geometry +1611.05708 Computer Vision and Pattern Recognition +1611.05834 Chaotic Dynamics +1611.05854 Populations and Evolution +1611.06015 Solar and Stellar Astrophysics +1611.06427 Optimization and Control +1611.06975 Solar and Stellar Astrophysics +1611.07149 High Energy Astrophysical Phenomena +1611.07371 Data Structures and Algorithms +1611.07603 Instrumentation and Methods for Astrophysics +1611.07888 Optics +1611.08349 Solar and Stellar Astrophysics +1611.08546 Networking and Internet Architecture +1611.08661 Computation and Language +1611.08704 Astrophysics of Galaxies +1611.08862 Methodology +1611.09331 Metric Geometry +1611.09467 +1611.09508 Strongly Correlated Electrons +1611.09546 Differential Geometry +1611.09653 Mesoscale and Nanoscale Physics +1612.00119 Computer Vision and Pattern Recognition +1612.00381 Quantum Gases +1612.00483 Astrophysics of Galaxies +1612.00650 Probability +1612.00907 Numerical Analysis +1612.00980 Phenomenology +1612.01019 Strongly Correlated Electrons +1612.01127 Complex Variables +1612.01141 Combinatorics +1612.01405 Soft Condensed Matter +1612.01545 Astrophysics of Galaxies +1612.01569 Theory +1612.01588 Other Condensed Matter +1612.01724 Fluid Dynamics +1612.01844 +1612.02001 Astrophysics of Galaxies +1612.02061 Lattice +1612.02123 Theory +1612.02167 +1612.02193 +1612.02198 Sound +1612.02204 Astrophysics of Galaxies +1612.02426 Solar and Stellar Astrophysics +1612.02449 Cosmology and Nongalactic Astrophysics +1612.02531 Data Structures and Algorithms +1612.02551 History and Philosophy of Physics +1612.02662 +1612.02674 Numerical Analysis +1612.02681 +1612.02790 Instrumentation and Methods for Astrophysics +1612.02819 +1612.02823 Astrophysics of Galaxies +1612.02869 Statistical Mechanics +1612.02969 Instrumentation and Methods for Astrophysics +1612.03078 Probability +1612.03100 +1612.03173 High Energy Astrophysical Phenomena +1612.03211 Artificial Intelligence +1612.03462 Quantum Gases +1612.03466 Theory +1612.03549 Operator Algebras +1612.03595 Soft Condensed Matter +1612.03671 High Energy Astrophysical Phenomena +1612.03747 +1612.03758 +1612.03769 Computation and Language +1612.03801 Artificial Intelligence +1612.03894 Theory +1612.03910 Numerical Analysis +1612.03913 High Energy Astrophysical Phenomena +1612.03915 Theory +1612.03917 Phenomenology +1612.03918 Astrophysics of Galaxies +1612.03919 Superconductivity +1612.03921 Materials Science +1612.03924 High Energy Astrophysical Phenomena +1612.03925 Computer Vision and Pattern Recognition +1612.03931 Instrumentation and Methods for Astrophysics +1612.03933 Soft Condensed Matter +1612.03935 Instrumentation and Methods for Astrophysics +1612.03936 Operator Algebras +1612.03937 Distributed, Parallel, and Cluster Computing +1612.03938 Astrophysics of Galaxies +1612.03939 Earth and Planetary Astrophysics +1612.03940 Neural and Evolutionary Computing +1612.03944 Mesoscale and Nanoscale Physics +1612.03946 Information Theory +1612.03950 Learning +1612.03951 Strongly Correlated Electrons +1612.03954 Statistical Mechanics +1612.03955 History and Overview +1612.03956 Mesoscale and Nanoscale Physics +1612.03958 Analysis of PDEs +1612.03959 Computer Vision and Pattern Recognition +1612.03961 Computer Vision and Pattern Recognition +1612.03962 Digital Libraries +1612.03964 Probability +1612.03965 Rings and Algebras +1612.03967 Accelerator Physics +1612.03968 Dynamical Systems +1612.03970 Functional Analysis +1612.03973 Numerical Analysis +1612.03974 Methodology +1612.03975 Computation and Language +1612.03976 Populations and Evolution +1612.03977 Pattern Formation and Solitons +1612.03979 Robotics +1612.03981 Machine Learning +1612.03982 Computer Vision and Pattern Recognition +1612.03983 Dynamical Systems +1612.03984 Chemical Physics +1612.03985 Networking and Internet Architecture +1612.03986 Materials Science +1612.03988 +1612.03990 Computation and Language +1612.03993 Information Theory +1612.03995 Mesoscale and Nanoscale Physics +1612.03997 Robotics +1612.03998 Representation Theory +1612.03999 Accelerator Physics +1612.04001 High Energy Astrophysical Phenomena +1612.04002 +1612.04003 Distributed, Parallel, and Cluster Computing +1612.04005 Information Theory +1612.04006 Cosmology and Nongalactic Astrophysics +1612.04008 Analysis of PDEs +1612.04012 Operator Algebras +1612.04013 Algebraic Geometry +1612.04014 Numerical Analysis +1612.04015 Analysis of PDEs +1612.04018 Numerical Analysis +1612.04019 Mesoscale and Nanoscale Physics +1612.04021 Learning +1612.04023 Systems and Control +1612.04025 Methodology +1612.04026 Quantum Gases +1612.04027 Materials Science +1612.04030 Information Theory +1612.04031 Materials Science +1612.04032 Dynamical Systems +1612.04033 Dynamical Systems +1612.04035 Learning +1612.04036 Materials Science +1612.04037 Logic in Computer Science +1612.04038 +1612.04039 Information Theory +1612.04040 Computational Physics +1612.04041 Cosmology and Nongalactic Astrophysics +1612.04042 Cosmology and Nongalactic Astrophysics +1612.04047 +1612.04048 Quantum Gases +1612.04049 Populations and Evolution +1612.04050 Numerical Analysis +1612.04051 Spectral Theory +1612.04052 Machine Learning +1612.04053 Networking and Internet Architecture +1612.04054 Instrumentation and Detectors +1612.04055 Quantum Gases +1612.04057 Phenomenology +1612.04058 Information Theory +1612.04059 Statistics Theory +1612.04060 Statistics Theory +1612.04061 Computer Vision and Pattern Recognition +1612.04062 Computer Vision and Pattern Recognition +1612.04063 Numerical Analysis +1612.04064 Strongly Correlated Electrons +1612.04065 Information Theory +1612.04066 Statistical Mechanics +1612.04067 Networking and Internet Architecture +1612.04068 Numerical Analysis +1612.04069 Combinatorics +1612.04071 Number Theory +1612.04072 Quantum Gases +1612.04074 Populations and Evolution +1612.04075 Digital Libraries +1612.04076 Discrete Mathematics +1612.04079 +1612.04082 Optimization and Control +1612.04083 Algebraic Geometry +1612.04085 Numerical Analysis +1612.04087 +1612.04088 Operator Algebras +1612.04090 K-Theory and Homology +1612.04091 Applications +1612.04093 Computation +1612.04094 Data Structures and Algorithms +1612.04097 +1612.04098 Instrumentation and Methods for Astrophysics +1612.04099 Cryptography and Security +1612.04100 Optics +1612.04101 Computation +1612.04103 Analysis of PDEs +1612.04104 Soft Condensed Matter +1612.04106 Functional Analysis +1612.04108 Computers and Society +1612.04110 Quantitative Methods +1612.04111 Machine Learning +1612.04113 Computation and Language +1612.04114 Combinatorics +1612.04115 Plasma Physics +1612.04116 Mesoscale and Nanoscale Physics +1612.04119 Differential Geometry +1612.04120 Dynamical Systems +1612.04121 Plasma Physics +1612.04122 Mesoscale and Nanoscale Physics +1612.04123 Analysis of PDEs +1612.04126 Risk Management +1612.04127 Numerical Analysis +1612.04129 Materials Science +1612.04130 Information Theory +1612.04131 Networking and Internet Architecture +1612.04133 Representation Theory +1612.04134 Statistical Mechanics +1612.04135 +1612.04136 Subcellular Processes +1612.04137 Number Theory +1612.04138 Analysis of PDEs +1612.04139 Software Engineering +1612.04140 +1612.04142 Functional Analysis +1612.04143 Plasma Physics +1612.04144 Fluid Dynamics +1612.04146 Optimization and Control +1612.04147 Statistical Mechanics +1612.04148 Spectral Theory +1612.04149 Analysis of PDEs +1612.04152 Optics +1612.04153 Algebraic Topology +1612.04156 Computational Physics +1612.04157 Cosmology and Nongalactic Astrophysics +1612.04159 Dynamical Systems +1612.04160 Mesoscale and Nanoscale Physics +1612.04161 Analysis of PDEs +1612.04162 Materials Science +1612.04163 Mesoscale and Nanoscale Physics +1612.04164 Software Engineering +1612.04165 Information Theory +1612.04168 +1612.04170 Logic +1612.04171 Soft Condensed Matter +1612.04172 Combinatorics +1612.04173 +1612.04174 Computation and Language +1612.04175 Analysis of PDEs +1612.04176 Information Theory +1612.04178 Atomic Physics +1612.04179 +1612.04180 +1612.04181 Adaptation and Self-Organizing Systems +1612.04183 Instrumentation and Methods for Astrophysics +1612.04184 +1612.04185 Medical Physics +1612.04186 Computational Physics +1612.04187 General Topology +1612.04188 Astrophysics of Galaxies +1612.04189 Combinatorics +1612.04191 Other Computer Science +1612.04192 +1612.04193 General Physics +1612.04194 General Mathematics +1612.04196 Numerical Analysis +1612.04197 Distributed, Parallel, and Cluster Computing +1612.04198 General Physics +1612.04199 General Physics +1612.04200 History and Overview +1612.04201 General Physics +1612.04204 Representation Theory +1612.04205 +1612.04207 Statistical Mechanics +1612.04209 Data Structures and Algorithms +1612.04210 Chemical Physics +1612.04211 Computation and Language +1612.04212 Statistical Mechanics +1612.04213 Geometric Topology +1612.04214 Mesoscale and Nanoscale Physics +1612.04217 Networking and Internet Architecture +1612.04219 Rings and Algebras +1612.04221 Algebraic Geometry +1612.04223 Mesoscale and Nanoscale Physics +1612.04224 Algebraic Geometry +1612.04225 Earth and Planetary Astrophysics +1612.04226 Cosmology and Nongalactic Astrophysics +1612.04227 Information Theory +1612.04229 Computer Vision and Pattern Recognition +1612.04232 Materials Science +1612.04233 Group Theory +1612.04234 Neurons and Cognition +1612.04236 Analysis of PDEs +1612.04237 Number Theory +1612.04238 Theory +1612.04239 +1612.04240 Analysis of PDEs +1612.04241 Analysis of PDEs +1612.04242 Astrophysics of Galaxies +1612.04243 Operator Algebras +1612.04244 Networking and Internet Architecture +1612.04245 Theory +1612.04247 Cosmology and Nongalactic Astrophysics +1612.04248 High Energy Astrophysical Phenomena +1612.04250 Astrophysics of Galaxies +1612.04251 Distributed, Parallel, and Cluster Computing +1612.04253 Classical Analysis and ODEs +1612.04254 General Mathematics +1612.04256 Quantitative Methods +1612.04260 Combinatorics +1612.04261 Group Theory +1612.04266 Probability +1612.04268 Information Theory +1612.04269 Analysis of PDEs +1612.04271 Computation +1612.04273 +1612.04274 Probability +1612.04275 Cosmology and Nongalactic Astrophysics +1612.04276 Instrumentation and Detectors +1612.04278 Solar and Stellar Astrophysics +1612.04279 Mesoscale and Nanoscale Physics +1612.04280 Functional Analysis +1612.04283 Theory +1612.04284 Instrumentation and Detectors +1612.04286 Databases +1612.04287 Solar and Stellar Astrophysics +1612.04288 Statistics Theory +1612.04289 +1612.04291 Lattice +1612.04292 Phenomenology +1612.04295 Neurons and Cognition +1612.04297 Analysis of PDEs +1612.04298 +1612.04299 Multiagent Systems +1612.04300 Group Theory +1612.04301 High Energy Astrophysical Phenomena +1612.04302 Group Theory +1612.04304 Data Structures and Algorithms +1612.04308 Geophysics +1612.04312 Optics +1612.04313 Instrumentation and Methods for Astrophysics +1612.04314 Mesoscale and Nanoscale Physics +1612.04315 Machine Learning +1612.04317 Materials Science +1612.04318 Robotics +1612.04319 Combinatorics +1612.04322 Materials Science +1612.04323 Optics +1612.04324 Robotics +1612.04328 Optics +1612.04330 Statistics Theory +1612.04333 Phenomenology +1612.04335 Computer Vision and Pattern Recognition +1612.04336 Graphics +1612.04337 Computer Vision and Pattern Recognition +1612.04338 Computational Complexity +1612.04339 Cryptography and Security +1612.04340 Machine Learning +1612.04341 +1612.04342 Computation and Language +1612.04347 Numerical Analysis +1612.04349 Exactly Solvable and Integrable Systems +1612.04350 Cryptography and Security +1612.04351 Software Engineering +1612.04353 Logic +1612.04354 Probability +1612.04356 Materials Science +1612.04358 Networking and Internet Architecture +1612.04359 +1612.04363 Networking and Internet Architecture +1612.04365 General Mathematics +1612.04367 Rings and Algebras +astro-ph/9806249 +0802.2741 Geometric Topology +0802.2746 Geometric Topology +0905.3007 Probability +0908.1839 Probability +0910.4846 Probability +1003.1150 +1009.2120 Representation Theory +1110.4915 Dynamical Systems +1110.5961 Algebraic Topology +1303.3771 +1306.3077 Populations and Evolution +1312.7806 +1401.1048 Mesoscale and Nanoscale Physics +1402.4727 Theory +1402.5079 Probability +1405.4628 Information Theory +1405.6435 Physics Education +1406.6447 Physics and Society +1406.6903 Combinatorics +1407.2109 Data Structures and Algorithms +1407.6117 Molecular Networks +1411.4708 Statistics Theory +1411.6227 Dynamical Systems +1412.0633 Geometric Topology +1412.1001 Computational Geometry +1412.1028 +1501.05579 Group Theory +1501.05887 Information Theory +1501.07234 +1501.07586 Networking and Internet Architecture +1502.04731 Analysis of PDEs +1502.06594 Theory +1503.06248 Statistical Mechanics +1504.01369 Information Theory +1504.04603 +1504.07674 Classical Analysis and ODEs +1504.07829 Machine Learning +1505.00790 Superconductivity +1505.04686 Cosmology and Nongalactic Astrophysics +1505.05390 +1505.06874 Other Condensed Matter +1506.03101 Learning +1506.05384 Methodology +1506.06814 Atomic Physics +1506.07353 Cell Behavior +1506.07931 Differential Geometry +1507.00333 Numerical Analysis +1507.01238 Computer Vision and Pattern Recognition +1507.01535 Cosmology and Nongalactic Astrophysics +1507.03546 +1507.05913 Number Theory +1508.01637 +1508.01787 Cosmology and Nongalactic Astrophysics +1508.03402 Probability +1508.03708 +1508.05749 Mesoscale and Nanoscale Physics +1508.07403 Methodology +1509.03419 Atmospheric and Oceanic Physics +1509.04983 +1510.00042 Analysis of PDEs +1510.00327 +1510.00637 Plasma Physics +1510.02270 Statistical Mechanics +1510.03285 Classical Analysis and ODEs +1510.03415 Analysis of PDEs +1510.03612 +1510.06230 +1510.06730 Probability +1510.06951 Statistics Theory +1510.07459 Accelerator Physics +1510.07952 Quantum Gases +1510.08770 +1511.03520 +1511.03900 +1511.05370 Probability +1511.07177 Biological Physics +1511.08661 Physics and Society +1512.01727 Data Structures and Algorithms +1512.03133 Instrumentation and Detectors +1512.03204 Strongly Correlated Electrons +1512.04407 Computer Vision and Pattern Recognition +1512.04951 Earth and Planetary Astrophysics +1512.05203 Superconductivity +1512.05395 Theory +1512.05480 Quantum Algebra +1512.06294 Instrumentation and Detectors +1512.08030 Neural and Evolutionary Computing +1601.00245 Digital Libraries +1601.00783 Commutative Algebra +1601.01396 Data Structures and Algorithms +1601.01942 Strongly Correlated Electrons +1601.02181 High Energy Astrophysical Phenomena +1601.02263 Classical Analysis and ODEs +1601.02804 Statistics Theory +1601.03600 Theory +1601.03695 Quantum Gases +1601.03737 Phenomenology +1601.03827 +1601.04657 Information Theory +1601.05426 Mesoscale and Nanoscale Physics +1601.05673 Algebraic Geometry +1601.08061 Experiment +1602.00477 Logic in Computer Science +1602.01092 Phenomenology +1602.01699 Phenomenology +1602.01834 Theory +1602.04055 Probability +1602.05547 Formal Languages and Automata Theory +1602.06734 Differential Geometry +1602.07000 Experiment +1602.07402 Quantum Algebra +1602.08909 +1603.00241 Functional Analysis +1603.00649 Programming Languages +1603.01189 Representation Theory +1603.01470 Strongly Correlated Electrons +1603.01525 +1603.02307 Chemical Physics +1603.04316 +1603.05005 +1603.05665 Theory +1603.05729 Machine Learning +1603.07143 Instrumentation and Detectors +1603.08329 Physics and Society +1603.08661 Learning +1604.00370 Theory +1604.00492 Materials Science +1604.02921 Superconductivity +1604.03344 Information Theory +1604.05117 Probability +1604.05147 Analysis of PDEs +1604.06228 Algebraic Geometry +1604.08283 Algebraic Geometry +1604.08288 Optics +1604.08416 Analysis of PDEs +1604.08658 Combinatorics +1605.00045 Emerging Technologies +1605.00078 Dynamical Systems +1605.00253 Combinatorics +1605.00761 Popular Physics +1605.01134 Phenomenology +1605.01135 +1605.01329 Sound +1605.01561 +1605.01592 Quantitative Methods +1605.01695 Data Structures and Algorithms +1605.01698 Dynamical Systems +1605.01711 Geometric Topology +1605.01727 High Energy Astrophysical Phenomena +1605.01735 Strongly Correlated Electrons +1605.01741 Social and Information Networks +1605.01742 Group Theory +1605.01743 Metric Geometry +1605.01744 Computation and Language +1605.01745 Analysis of PDEs +1605.01746 Neural and Evolutionary Computing +1605.01747 Dynamical Systems +1605.01749 Learning +1605.01750 Combinatorics +1605.01751 Phenomenology +1605.01752 Data Structures and Algorithms +1605.01754 Medical Physics +1605.01755 Sound +1605.01759 Algebraic Geometry +1605.01760 Graphics +1605.01761 Optics +1605.01764 +1605.01768 Disordered Systems and Neural Networks +1605.01769 Cryptography and Security +1605.01770 Operator Algebras +1605.01773 Solar and Stellar Astrophysics +1605.01774 History and Philosophy of Physics +1605.01779 Machine Learning +1605.01781 Combinatorics +1605.01782 Analysis of PDEs +1605.01783 Dynamical Systems +1605.01784 Neurons and Cognition +1605.01787 Phenomenology +1605.01788 Algebraic Geometry +1605.01789 Materials Science +1605.01790 Computer Vision and Pattern Recognition +1605.01791 +1605.01792 Computational Physics +1605.01794 Dynamical Systems +1605.01798 Superconductivity +1605.01799 Optimization and Control +1605.01801 Probability +1605.01802 Distributed, Parallel, and Cluster Computing +1605.01803 Algebraic Geometry +1605.01806 Mesoscale and Nanoscale Physics +1605.01807 Commutative Algebra +1605.01808 +1605.01810 Formal Languages and Automata Theory +1605.01811 Classical Analysis and ODEs +1605.01813 Computer Vision and Pattern Recognition +1605.01814 Probability +1605.01815 Numerical Analysis +1605.01817 Statistical Mechanics +1605.01819 Mesoscale and Nanoscale Physics +1605.01820 Complex Variables +1605.01821 Digital Libraries +1605.01823 Complex Variables +1605.01825 Computer Vision and Pattern Recognition +1605.01828 Computational Complexity +1605.01829 Information Theory +1605.01831 Probability +1605.01832 Learning +1605.01834 Information Theory +1605.01835 History and Philosophy of Physics +1605.01836 History and Philosophy of Physics +1605.01837 Analysis of PDEs +1605.01838 Quantitative Methods +1605.01839 Computer Vision and Pattern Recognition +1605.01842 +1605.01843 Computer Vision and Pattern Recognition +1605.01845 Computation and Language +1605.01848 Information Theory +1605.01852 Instrumentation and Methods for Astrophysics +1605.01853 Multiagent Systems +1605.01855 Neural and Evolutionary Computing +1605.01857 Combinatorics +1605.01861 Information Theory +1605.01866 Data Structures and Algorithms +1605.01868 Number Theory +1605.01872 Metric Geometry +1605.01877 Number Theory +1605.01878 Software Engineering +1605.01879 Complex Variables +1605.01880 Information Theory +1605.01882 Differential Geometry +1605.01885 Analysis of PDEs +1605.01886 Logic in Computer Science +1605.01887 Number Theory +1605.01889 Applications +1605.01890 Differential Geometry +1605.01893 Other Quantitative Biology +1605.01895 Social and Information Networks +1605.01896 Materials Science +1605.01907 Theory +1605.01909 Complex Variables +1605.01914 Atomic Physics +1605.01919 Human-Computer Interaction +1605.01923 Computer Vision and Pattern Recognition +1605.01925 Spectral Theory +1605.01928 Spectral Theory +1605.01929 Quantum Gases +1605.01930 Information Theory +1605.01931 Computation +1605.01935 Differential Geometry +1605.01936 Statistics Theory +1605.01939 Machine Learning +1605.01940 Probability +1605.01941 Information Theory +1605.01942 Combinatorics +1605.01943 +1605.01946 Phenomenology +1605.01952 Biological Physics +1605.01954 Analysis of PDEs +1605.01956 Computers and Society +1605.01958 Rings and Algebras +1605.01962 Quantum Algebra +1605.01965 +1605.01968 Operator Algebras +1605.01969 Functional Analysis +1605.01970 Rings and Algebras +1605.01974 Atomic Physics +1605.01976 General Finance +1605.01977 Networking and Internet Architecture +1605.01981 Classical Analysis and ODEs +1605.01982 Combinatorics +1605.01984 Cosmology and Nongalactic Astrophysics +1605.01985 Commutative Algebra +1605.01987 Networking and Internet Architecture +1605.01993 Information Theory +1605.01997 Information Theory +1605.01998 Computational Finance +1605.01999 Computer Vision and Pattern Recognition +1605.02000 Soft Condensed Matter +1605.02002 Analysis of PDEs +1605.02003 Geometric Topology +1605.02007 Geometric Topology +1605.02008 Adaptation and Self-Organizing Systems +1605.02010 Algebraic Geometry +1605.02013 Phenomenology +1605.02014 Analysis of PDEs +1605.02019 Computation and Language +1605.02020 Probability +1605.02021 Mesoscale and Nanoscale Physics +1605.02022 Distributed, Parallel, and Cluster Computing +1605.02026 Learning +1605.02033 Programming Languages +1605.02037 Neurons and Cognition +1605.02040 Software Engineering +1605.02041 Digital Libraries +1605.02045 Data Structures and Algorithms +1605.02046 Learning +1605.02048 Classical Analysis and ODEs +1605.02049 Analysis of PDEs +1605.02050 Classical Analysis and ODEs +1605.02053 Optics +1605.02054 Computer Science and Game Theory +1605.02055 Information Theory +1605.02060 Quantitative Methods +1605.02065 Cryptography and Security +dg-ga/9704015 Differential Geometry +gr-qc/0611104 +math/0612416 Probability +0704.2456 Mesoscale and Nanoscale Physics +0704.3771 Populations and Evolution +0705.1134 Biological Physics +0705.3997 Experiment +0706.0156 General Physics +0706.1148 Mesoscale and Nanoscale Physics +0706.4413 +0710.1768 Strongly Correlated Electrons +0711.0753 +0711.2973 General Physics +0711.4827 Chaotic Dynamics +0712.1720 Chaotic Dynamics +0712.1752 Statistical Mechanics +0712.3497 Differential Geometry +0801.0366 +0801.2562 Phenomenology +0802.1041 Experiment +0809.0239 Chaotic Dynamics +0809.4982 Biological Physics +0812.2095 +0812.4750 Strongly Correlated Electrons +0906.2155 +0906.3981 Instrumentation and Methods for Astrophysics +0908.1176 Astrophysics of Galaxies +1006.2223 Optics +1007.4166 Chaotic Dynamics +1012.4526 Category Theory +1101.3374 Geometric Topology +1104.1662 +1105.2246 Logic in Computer Science +1109.0470 Chaotic Dynamics +1111.0163 Dynamical Systems +1201.0039 Statistical Mechanics +1206.1218 Symplectic Geometry +1206.1737 Representation Theory +1208.5023 Theory +1209.2064 Algebraic Geometry +1210.4456 +1210.6670 Symplectic Geometry +1211.2434 Theory +1212.4802 +1212.6151 Probability +1301.0069 +1304.6271 Probability +1304.6298 Phenomenology +1309.6956 Complex Variables +1309.7059 Cosmology and Nongalactic Astrophysics +1401.1423 Probability +1402.2078 +1403.2303 Mesoscale and Nanoscale Physics +1404.3852 Analysis of PDEs +1408.3325 Computational Geometry +1409.1247 +1409.2385 Symplectic Geometry +1410.0302 Phenomenology +1410.5178 Algebraic Geometry +1410.5391 K-Theory and Homology +1411.4361 Fluid Dynamics +1411.4874 Accelerator Physics +1411.7220 Probability +1412.2218 Probability +1412.3876 Other Condensed Matter +1412.5881 +1501.01955 Analysis of PDEs +1501.02581 Numerical Analysis +1501.04269 Number Theory +1501.06967 Quantum Gases +1502.00398 Analysis of PDEs +1502.00764 Rings and Algebras +1502.02097 Analysis of PDEs +1502.03254 Pricing of Securities +1502.06571 Differential Geometry +1502.06687 Soft Condensed Matter +1503.00065 Analysis of PDEs +1503.00145 Physics and Society +1503.02663 Theory +1503.04319 Dynamical Systems +1503.04741 Numerical Analysis +1503.04809 Theory +1503.04902 Superconductivity +1503.06144 Systems and Control +1503.06777 +1503.07127 Strongly Correlated Electrons +1503.08405 Instrumentation and Methods for Astrophysics +1504.02401 +1504.02822 +1504.03070 +1504.03461 Computation +1504.05056 +1504.06674 Fluid Dynamics +1505.00494 Information Theory +1505.00689 Theory +1505.01752 +1505.02723 Solar and Stellar Astrophysics +1505.03335 Numerical Analysis +1505.04479 Group Theory +1505.05856 Strongly Correlated Electrons +1505.06026 Spectral Theory +1505.06225 Systems and Control +1505.06308 Theory +1505.07588 Mesoscale and Nanoscale Physics +1506.01192 Computation and Language +1506.01669 Analysis of PDEs +1506.01770 Plasma Physics +1506.01789 Probability +1506.01970 Theory +1506.02245 Human-Computer Interaction +1506.03597 Economics +1506.03807 Theory +1506.03832 Statistics Theory +1506.04420 +1506.05201 Optics +1506.05294 Materials Science +1506.06601 Theory +1506.07754 Phenomenology +1507.00414 Differential Geometry +1507.01527 Differential Geometry +1507.02104 +1507.02432 Experiment +1507.04013 Theory +1507.04277 Physics and Society +1507.04587 Social and Information Networks +1507.04602 Numerical Analysis +1507.04641 Spectral Theory +1507.04930 Physics and Society +1507.06940 Materials Science +1507.07772 Numerical Analysis +1507.08643 Phenomenology +1508.00398 Quantum Gases +1508.01389 Instrumentation and Methods for Astrophysics +1508.01642 Statistical Mechanics +1508.01984 Soft Condensed Matter +1508.02077 Soft Condensed Matter +1508.02978 +1508.03146 Analysis of PDEs +1508.03333 Theory +1508.06566 Theory +1508.07428 Statistical Finance +1509.00056 Differential Geometry +1509.00898 Probability +1509.01522 +1509.02245 Quantum Algebra +1509.02442 +1509.02457 Mesoscale and Nanoscale Physics +1509.03177 History and Overview +1509.03338 Materials Science +1509.03865 High Energy Astrophysical Phenomena +1509.03997 +1509.04181 Phenomenology +1509.04325 Theory +1509.04514 Chaotic Dynamics +1509.04971 +1509.06473 Chemical Physics +1509.07601 Probability +1509.07610 Phenomenology +1509.07849 Cell Behavior +1509.09243 Computer Vision and Pattern Recognition +1510.00228 Other Condensed Matter +1510.00936 Social and Information Networks +1510.01101 Soft Condensed Matter +1510.02541 Applications +1510.03112 Phenomenology +1510.03141 Probability +1510.03286 Theory +1510.03587 Materials Science +1510.05011 Theory +1510.05287 Theory +1510.05782 Theory +1510.05829 Operator Algebras +1510.05936 Probability +1510.07433 Exactly Solvable and Integrable Systems +1510.07878 Mesoscale and Nanoscale Physics +1510.07951 +1511.00482 Materials Science +1511.00570 Cosmology and Nongalactic Astrophysics +1511.01451 Soft Condensed Matter +1511.02059 Medical Physics +1511.02219 Soft Condensed Matter +1511.02353 Phenomenology +1511.02834 Phenomenology +1511.03104 Analysis of PDEs +1511.03253 Algebraic Geometry +1511.03289 Strongly Correlated Electrons +1511.03435 +1511.03583 Popular Physics +1511.03810 Number Theory +1511.04436 Exactly Solvable and Integrable Systems +1511.04956 Analysis of PDEs +1511.05204 Computer Vision and Pattern Recognition +1511.05238 +1511.05521 Mesoscale and Nanoscale Physics +1511.05827 Chaotic Dynamics +1511.05856 Cosmology and Nongalactic Astrophysics +1511.06212 Fluid Dynamics +1511.06698 +1511.06742 +1511.07111 Computer Vision and Pattern Recognition +1511.07144 +1511.07431 Cosmology and Nongalactic Astrophysics +1511.07496 Phenomenology +1511.08202 Phenomenology +1511.08509 Exactly Solvable and Integrable Systems +1511.08527 Atomic Physics +1511.08559 +1511.09136 +1511.09441 Theory +1512.00042 High Energy Astrophysical Phenomena +1512.00888 +1512.00902 Phenomenology +1512.01046 Dynamical Systems +1512.01051 Analysis of PDEs +1512.01115 Optics +1512.01900 +1512.02197 Optics +1512.02202 Instrumentation and Detectors +1512.02450 Plasma Physics +1512.02570 Fluid Dynamics +1512.02904 Experiment +1512.03335 Numerical Analysis +1512.03372 Experiment +1512.03445 Earth and Planetary Astrophysics +1512.03738 Experiment +1512.03920 +1512.04136 Mesoscale and Nanoscale Physics +1512.04230 +1512.04446 +1512.04580 +1512.05132 Phenomenology +1512.05136 Differential Geometry +1512.05250 +1512.05273 Experiment +1512.05289 Lattice +1512.05397 +1512.05603 +1512.06111 Strongly Correlated Electrons +1512.06213 +1512.06215 +1512.06250 Theory +1512.06299 +1512.06402 Phenomenology +1512.06465 +1512.06602 +1512.06702 Phenomenology +1512.06855 Theory +1512.06901 Theory +1512.06906 Information Theory +1512.06987 Lattice +1512.07135 +1512.07178 Theory +1512.07209 Phenomenology +1512.07368 Atomic Physics +1512.07373 +1512.07416 Analysis of PDEs +1512.07535 Phenomenology +1512.07567 Biological Physics +1512.07571 Phenomenology +1512.07610 +1512.07631 +1512.07882 +1512.07924 Quantum Gases +1512.08022 +1512.08095 Superconductivity +1512.08177 +1512.08231 +1512.08260 +1512.08276 +1512.08327 Strongly Correlated Electrons +1512.08329 Exactly Solvable and Integrable Systems +1512.08388 Phenomenology +1512.08465 +1512.08592 Phenomenology +1512.08784 +1512.08877 +1512.09004 Mesoscale and Nanoscale Physics +1512.09009 +1512.09071 Theory +1512.09074 Physics and Society +1512.09142 Earth and Planetary Astrophysics +1512.09152 +1512.09157 +1512.09170 Learning +1512.09214 +1512.09231 +1512.09238 History and Philosophy of Physics +1512.09255 Phenomenology +1512.09274 Phenomenology +1512.09318 Phenomenology +1512.09329 +1512.09352 +1512.09353 Phenomenology +1601.00015 Phenomenology +1601.00058 +1601.00278 Phenomenology +1601.00308 +1601.00343 Group Theory +1601.00381 +1601.00466 +1601.00600 +1601.00629 Solar and Stellar Astrophysics +1601.00695 +1601.00743 Experiment +1601.00887 Phenomenology +1601.00904 +1601.00951 +1601.01119 Atomic Physics +1601.01177 Phenomenology +1601.01296 +1601.01588 Materials Science +1601.01644 +1601.01783 Dynamical Systems +1601.01943 Theory +1601.01947 Theory +1601.02031 Materials Science +1601.02236 +1601.02242 Analysis of PDEs +1601.02260 +1601.02367 Lattice +1601.02559 Mesoscale and Nanoscale Physics +1601.02918 Cell Behavior +1601.02963 Phenomenology +1601.03000 Cosmology and Nongalactic Astrophysics +1601.03283 Phenomenology +1601.03386 Phenomenology +1601.03414 Theory +1601.03450 +1601.03520 Experiment +1601.03833 Atomic Physics +1601.03853 Analysis of PDEs +1601.04128 Phenomenology +1601.04216 Probability +1601.04240 Classical Analysis and ODEs +1601.04561 Theory +1601.04577 Lattice +1601.04720 Theory +1601.05025 Experiment +1601.05316 Exactly Solvable and Integrable Systems +1601.05576 Quantum Algebra +1601.05632 +1601.05668 Cosmology and Nongalactic Astrophysics +1601.05910 Earth and Planetary Astrophysics +1601.06525 Phenomenology +1601.06594 Other Condensed Matter +1601.06730 Biological Physics +1601.06766 +1601.06771 +1601.06813 Phenomenology +1601.07393 Dynamical Systems +1601.07437 +1601.07671 Algebraic Geometry +1601.07852 +1601.07904 Theory +1601.07911 Statistics Theory +1601.08209 Theory +1602.00794 +1602.00908 Theory +1602.00938 Strongly Correlated Electrons +1602.01047 Phenomenology +1602.01974 Instrumentation and Detectors +1602.02140 +1602.02173 +1602.02197 Lattice +1602.02242 Biological Physics +1602.02263 Optimization and Control +1602.02723 Mesoscale and Nanoscale Physics +1602.02925 Lattice +1602.02983 Instrumentation and Detectors +1602.03621 Optics +1602.03637 +1602.03791 Statistical Mechanics +1602.03901 Phenomenology +1602.04116 Theory +1602.04765 Theory +1602.04884 Functional Analysis +1602.05195 Cosmology and Nongalactic Astrophysics +1602.05250 Phenomenology +1602.05276 Phenomenology +1602.05278 +1602.05336 Theory +1602.05493 Phenomenology +1602.05576 Solar and Stellar Astrophysics +1602.05811 Phenomenology +1602.05863 +1602.05881 +1602.05943 Theory +1602.06198 Phenomenology +1602.06206 Phenomenology +1602.06332 +1602.06356 High Energy Astrophysical Phenomena +1602.06658 +1602.06791 Phenomenology +1602.06818 Learning +1602.06930 Theory +1602.07002 General Topology +1602.07006 +1602.07071 Numerical Analysis +1602.07219 Strongly Correlated Electrons +1602.07319 +1602.07417 Mesoscale and Nanoscale Physics +1602.07634 Lattice +1602.07671 Phenomenology +1602.07932 Superconductivity +1602.08177 +1602.08272 Theory +1602.08275 Theory +1602.08566 Theory +1602.08570 Theory +1602.08624 Spectral Theory +1602.09034 Materials Science +1603.00694 Mesoscale and Nanoscale Physics +1603.00731 Dynamical Systems +1603.00887 Theory +1603.01024 Numerical Analysis +1603.01129 Statistical Mechanics +1603.01132 Physics and Society +1603.01218 Atmospheric and Oceanic Physics +1603.01258 Strongly Correlated Electrons +1603.01414 Optics +1603.01516 Optics +1603.01888 Theory +1603.02026 Atomic Physics +1603.02096 Analysis of PDEs +1603.02110 Materials Science +1603.02254 +1603.02359 Theory +1603.02581 +1603.02795 Theory +1603.03004 Optics +1603.03042 Strongly Correlated Electrons +1603.03050 Theory +1603.03055 Theory +1603.03193 +1603.03213 Theory +1603.03312 +1603.03320 +1603.03356 Numerical Analysis +1603.03448 Information Theory +1603.03651 Strongly Correlated Electrons +1603.03666 Analysis of PDEs +1603.03839 Analysis of PDEs +1603.03923 +1603.03999 +1603.04143 Optics +1603.04454 Theory +1603.04540 Mesoscale and Nanoscale Physics +1603.04757 Plasma Physics +1603.04761 Phenomenology +1603.04829 Mesoscale and Nanoscale Physics +1603.04858 Astrophysics of Galaxies +1603.04868 Computer Vision and Pattern Recognition +1603.05019 Optics +1603.05036 +1603.05440 Statistical Mechanics +1603.05532 Lattice +1603.05807 +1603.05822 Theory +1603.05927 +1603.06154 Mesoscale and Nanoscale Physics +1603.06410 Populations and Evolution +1603.06446 Dynamical Systems +1603.06467 Lattice +1603.06579 Theory +1603.06654 Mesoscale and Nanoscale Physics +1603.06681 Phenomenology +1603.06800 Theory +1603.06962 Phenomenology +1603.07698 Superconductivity +1603.07891 Statistical Mechanics +1603.08007 Astrophysics of Galaxies +1603.08350 Materials Science +1603.08382 Theory +1603.08496 Spectral Theory +1603.08574 Fluid Dynamics +1603.08580 Instrumentation and Detectors +1603.08860 Differential Geometry +1603.09431 Experiment +1603.09432 +1603.09539 Differential Geometry +1603.09542 Theory +1603.09549 Experiment +1603.09582 Optics +1604.00014 High Energy Astrophysical Phenomena +1604.00303 Analysis of PDEs +1604.00335 Phenomenology +1604.00483 Mesoscale and Nanoscale Physics +1604.00531 +1604.00667 High Energy Astrophysical Phenomena +1604.00703 Theory +1604.01577 Materials Science +1604.01829 Soft Condensed Matter +1604.01989 +1604.02334 Distributed, Parallel, and Cluster Computing +1604.02762 +1604.02773 +1604.02946 Computer Vision and Pattern Recognition +1604.03124 +1604.03139 Experiment +1604.03428 +1604.03488 Mesoscale and Nanoscale Physics +1604.03525 Materials Science +1604.03567 Fluid Dynamics +1604.03575 Theory +1604.03765 Materials Science +1604.03916 Mesoscale and Nanoscale Physics +1604.04099 Theory +1604.04193 Phenomenology +1604.04292 Theory +1604.04449 Astrophysics of Galaxies +1604.04522 Theory +1604.04541 Numerical Analysis +1604.04614 Statistical Mechanics +1604.04940 Experiment +1604.05071 Dynamical Systems +1604.05547 +1604.05600 Physics and Society +1604.05904 Cosmology and Nongalactic Astrophysics +1604.06124 Number Theory +1604.06572 Statistical Mechanics +1604.06595 Phenomenology +1604.06618 Numerical Analysis +1604.06736 Experiment +1604.06890 Optics +1604.07192 +1604.07611 Soft Condensed Matter +1604.07912 Materials Science +1604.07932 +1604.08030 Mesoscale and Nanoscale Physics +1604.08109 Fluid Dynamics +1604.08135 +1604.08241 Number Theory +1604.08296 Phenomenology +1604.08304 Quantum Algebra +1604.08548 Theory +1604.08687 History and Philosophy of Physics +1604.08712 +1604.08835 Optics +1604.08869 History and Philosophy of Physics +1604.08870 Quantum Gases +1605.00048 Instrumentation and Methods for Astrophysics +1605.00067 Materials Science +1605.00334 Theory +1605.00534 Optics +1605.00636 Theory +1605.00899 Populations and Evolution +1605.00963 Plasma Physics +1605.01337 Phenomenology +1605.01351 +1605.01398 Phenomenology +1605.01458 Numerical Analysis +1605.01600 Computer Vision and Pattern Recognition +1605.01777 Combinatorics +1605.01785 +1605.01805 Data Analysis, Statistics and Probability +1605.01927 +1605.02047 Phenomenology +1605.02116 Mesoscale and Nanoscale Physics +1605.02203 Mesoscale and Nanoscale Physics +1605.02241 +1605.02259 Pattern Formation and Solitons +1605.02428 Analysis of PDEs +1605.02451 +1605.02608 Theory +1605.02672 High Energy Astrophysical Phenomena +1605.02687 Data Structures and Algorithms +1605.02696 Quantum Gases +1605.02709 Lattice +1605.02737 Phenomenology +1605.02767 Statistical Mechanics +1605.02846 +1605.02909 Optics +1605.02986 Plasma Physics +1605.02990 Statistical Mechanics +1605.03010 Phenomenology +1605.03056 Phenomenology +1605.03067 Quantum Gases +1605.03156 Phenomenology +1605.03164 Plasma Physics +1605.03181 Phenomenology +1605.03278 Soft Condensed Matter +1605.03541 Cosmology and Nongalactic Astrophysics +1605.03605 Optics +1605.04139 Soft Condensed Matter +1605.04175 Theory +1605.04286 Soft Condensed Matter +1605.04332 +1605.04498 Phenomenology +1605.04585 Combinatorics +1605.04713 Pattern Formation and Solitons +1605.04762 +1605.04855 Phenomenology +1605.04937 Materials Science +1605.05035 Mesoscale and Nanoscale Physics +1605.05113 Phenomenology +1605.05178 Instrumentation and Methods for Astrophysics +1605.05292 Cosmology and Nongalactic Astrophysics +1605.05403 Quantum Gases +1605.05467 Superconductivity +1605.05635 Theory +1605.05690 Statistical Mechanics +1605.05921 Numerical Analysis +1605.05961 Atomic Physics +1605.06142 Phenomenology +1605.06286 +1605.06468 Mesoscale and Nanoscale Physics +1605.06513 Phenomenology +1605.06526 Theory +1605.06540 +1605.06675 Phenomenology +1605.06736 Instrumentation and Methods for Astrophysics +1605.06741 Statistical Mechanics +1605.06784 Theory +1605.06834 Phenomenology +1605.06958 Statistical Mechanics +1605.07051 Machine Learning +1605.07053 Subcellular Processes +1605.07185 Earth and Planetary Astrophysics +1605.07195 Phenomenology +1605.07238 Statistical Mechanics +1605.07584 Phenomenology +1605.07600 Phenomenology +1605.07622 Theory +1605.07817 Analysis of PDEs +1605.08200 Quantum Gases +1605.08345 Plasma Physics +1605.08376 Mesoscale and Nanoscale Physics +1605.08442 Phenomenology +1605.08465 Pattern Formation and Solitons +1605.08547 +1605.08624 Quantum Gases +1605.08897 Mesoscale and Nanoscale Physics +1605.09075 Mesoscale and Nanoscale Physics +1605.09138 Instrumentation and Detectors +1605.09181 Portfolio Management +1605.09241 +1605.09249 Numerical Analysis +1605.09253 Atomic Physics +1605.09594 Phenomenology +1605.09603 Exactly Solvable and Integrable Systems +1605.09639 Pattern Formation and Solitons +1605.09677 Theory +1606.00072 Phenomenology +1606.00141 Superconductivity +1606.00164 Analysis of PDEs +1606.00241 Materials Science +1606.00469 Astrophysics of Galaxies +1606.00509 Instrumentation and Detectors +1606.00896 +1606.00929 +1606.01011 +1606.01170 Superconductivity +1606.01300 Soft Condensed Matter +1606.01405 Mesoscale and Nanoscale Physics +1606.01411 Materials Science +1606.01490 Theory +1606.01612 Systems and Control +1606.01839 Optics +1606.01883 Phenomenology +1606.01894 Theory +1606.01936 Cell Behavior +1606.01989 Theory +1606.02288 Computer Vision and Pattern Recognition +1606.02295 Theory +1606.02333 +1606.02404 Learning +1606.02416 +1606.02439 Mesoscale and Nanoscale Physics +1606.02586 Accelerator Physics +1606.02798 Mesoscale and Nanoscale Physics +1606.02906 Mesoscale and Nanoscale Physics +1606.02964 +1606.02983 Superconductivity +1606.02996 Phenomenology +1606.03004 Fluid Dynamics +1606.03008 Phenomenology +1606.03068 Theory +1606.03222 Chemical Physics +1606.03239 Phenomenology +1606.03261 Physics and Society +1606.03270 Chaotic Dynamics +1606.03455 Theory +1606.03554 Fluid Dynamics +1606.03603 Optics +1606.03648 +1606.03739 Mesoscale and Nanoscale Physics +1606.03934 Soft Condensed Matter +1606.04013 Adaptation and Self-Organizing Systems +1606.04084 Phenomenology +1606.04222 +1606.04355 Classical Analysis and ODEs +1606.04499 Soft Condensed Matter +1606.04500 Materials Science +1606.04604 High Energy Astrophysical Phenomena +1606.04610 Probability +1606.04829 Mesoscale and Nanoscale Physics +1606.04833 Experiment +1606.04917 Instrumentation and Detectors +1606.04979 Instrumentation and Methods for Astrophysics +1606.05021 Methodology +1606.05036 Emerging Technologies +1606.05089 Geophysics +1606.05098 Mesoscale and Nanoscale Physics +1606.05218 Phenomenology +1606.05356 Strongly Correlated Electrons +1606.05369 +1606.05537 +1606.05557 +1606.05558 Cosmology and Nongalactic Astrophysics +1606.05607 Quantum Gases +1606.05636 Theory +1606.05674 Physics and Society +1606.06008 Atomic Physics +1606.06009 Strongly Correlated Electrons +1606.06016 Atomic Physics +1606.06038 Soft Condensed Matter +1606.06050 Materials Science +1606.06091 Phenomenology +1606.06110 Chemical Physics +1606.06145 Chemical Physics +1606.06166 Phenomenology +1606.06194 Theory +1606.06276 Plasma Physics +1606.06292 +1606.06312 Lattice +1606.06322 Representation Theory +1606.06494 Instrumentation and Methods for Astrophysics +1606.06505 Statistical Mechanics +1606.06544 Solar and Stellar Astrophysics +1606.06616 +1606.06635 +1606.06754 Phenomenology +1606.06773 Pattern Formation and Solitons +1606.07005 Plasma Physics +1606.07009 Phenomenology +1606.07051 Theory +1606.07086 Phenomenology +1606.07126 Physics Education +1606.07186 Theory +1606.07212 Optics +1606.07291 Mesoscale and Nanoscale Physics +1606.07338 Instrumentation and Methods for Astrophysics +1606.07376 Theory +1606.07377 +1606.07406 Theory +1606.07432 Instrumentation and Detectors +1606.07456 Instrumentation and Methods for Astrophysics +1606.07458 Theory +1606.07547 Plasma Physics +1606.07559 +1606.07570 Theory +1606.07654 Strongly Correlated Electrons +1606.07862 Phenomenology +1606.07890 Mesoscale and Nanoscale Physics +1606.07982 Plasma Physics +1606.08155 Statistical Mechanics +1606.08159 Materials Science +1606.08166 Mesoscale and Nanoscale Physics +1606.08213 Mesoscale and Nanoscale Physics +1606.08286 Astrophysics of Galaxies +1606.08438 Theory +1606.08563 Superconductivity +1606.08573 Materials Science +1606.08765 Mesoscale and Nanoscale Physics +1606.08789 Chemical Physics +1606.08803 Cosmology and Nongalactic Astrophysics +1606.08812 Lattice +1606.08837 +1606.08838 +1606.08853 Phenomenology +1606.09078 Superconductivity +1606.09146 +1606.09263 +1606.09372 +1606.09379 Experiment +1606.09414 +1606.09448 Solar and Stellar Astrophysics +1606.09468 Astrophysics of Galaxies +1606.09510 Information Theory +1606.09535 Theory +1606.09538 Plasma Physics +1606.09543 Theory +1606.09576 Phenomenology +1606.09601 Optics +1606.09616 Theory +1606.09619 +1606.09628 Theory +1606.09644 Theory +1607.00016 Astrophysics of Galaxies +1607.00027 Solar and Stellar Astrophysics +1607.00069 Mesoscale and Nanoscale Physics +1607.00080 Materials Science +1607.00168 +1607.00280 General Physics +1607.00284 Atomic Physics +1607.00287 Mesoscale and Nanoscale Physics +1607.00310 Numerical Analysis +1607.00390 Theory +1607.00529 +1607.00531 Optimization and Control +1607.00535 Space Physics +1607.00539 Chemical Physics +1607.00544 Optics +1607.00593 Chemical Physics +1607.00594 Phenomenology +1607.00605 Materials Science +1607.00622 Phenomenology +1607.00795 Theory +1607.00834 Instrumentation and Methods for Astrophysics +1607.00873 +1607.00878 Instrumentation and Methods for Astrophysics +1607.00892 Soft Condensed Matter +1607.01014 Cosmology and Nongalactic Astrophysics +1607.01025 Theory +1607.01171 Instrumentation and Detectors +1607.01230 Materials Science +1607.01246 Theory +1607.01632 Phenomenology +1607.01635 Statistical Mechanics +1607.01659 Phenomenology +1607.01754 Fluid Dynamics +1607.01757 Materials Science +1607.01785 Astrophysics of Galaxies +1607.01807 Theory +1607.01846 Strongly Correlated Electrons +1607.01868 Plasma Physics +1607.01871 Theory +1607.01913 Quantum Gases +1607.01916 Materials Science +1607.01917 High Energy Astrophysical Phenomena +1607.01919 Materials Science +1607.01925 Probability +1607.02102 Phenomenology +1607.02183 Space Physics +1607.02206 +1607.02222 Operator Algebras +1607.02249 Information Theory +1607.02260 Phenomenology +1607.02313 Mesoscale and Nanoscale Physics +1607.02321 Mesoscale and Nanoscale Physics +1607.02323 Mesoscale and Nanoscale Physics +1607.02351 Mesoscale and Nanoscale Physics +1607.02486 Mesoscale and Nanoscale Physics +1607.02658 Optics +1607.02664 Astrophysics of Galaxies +1607.02831 Fluid Dynamics +1607.02896 Statistics Theory +1607.02900 +1607.02947 Strongly Correlated Electrons +1607.03120 Theory +1607.03259 Mesoscale and Nanoscale Physics +1607.03263 Materials Science +1607.03283 Strongly Correlated Electrons +1607.03395 Optics +1607.03403 Mesoscale and Nanoscale Physics +1607.03473 Theory +1607.03488 Astrophysics of Galaxies +1607.03512 Earth and Planetary Astrophysics +1607.03517 Earth and Planetary Astrophysics +1607.03580 Quantum Gases +1607.03602 Earth and Planetary Astrophysics +1607.03630 +1607.03686 Optics +1607.03711 Mesoscale and Nanoscale Physics +1607.03756 Theory +1607.03773 Phenomenology +1607.03812 Soft Condensed Matter +1607.03850 Physics and Society +1607.03924 +1607.03968 Strongly Correlated Electrons +1607.03974 Mesoscale and Nanoscale Physics +1607.03982 Astrophysics of Galaxies +1607.04050 +1607.04187 Phenomenology +1607.04237 Theory +1607.04304 Phenomenology +1607.04307 +1607.04326 +1607.04337 Mesoscale and Nanoscale Physics +1607.04412 Instrumentation and Methods for Astrophysics +1607.04434 Phenomenology +1607.04447 Phenomenology +1607.04517 Instrumentation and Methods for Astrophysics +1607.04519 +1607.04651 Optics +1607.04743 Materials Science +1607.04832 Theory +1607.04843 Plasma Physics +1607.04924 Quantum Gases +1607.04955 Instrumentation and Detectors +1607.04970 Optics +1607.04974 Mesoscale and Nanoscale Physics +1607.04980 +1607.05029 Instrumentation and Methods for Astrophysics +1607.05126 Fluid Dynamics +1607.05170 Instrumentation and Methods for Astrophysics +1607.05193 Theory +1607.05224 Probability +1607.05240 Strongly Correlated Electrons +1607.05330 Phenomenology +1607.05354 Physics and Society +1607.05361 Fluid Dynamics +1607.05450 Theory +1607.05497 Instrumentation and Methods for Astrophysics +1607.05541 Phenomenology +1607.05635 Distributed, Parallel, and Cluster Computing +1607.05680 Materials Science +1607.05700 Instrumentation and Methods for Astrophysics +1607.05730 Mesoscale and Nanoscale Physics +1607.05737 Numerical Analysis +1607.05778 +1607.05846 Phenomenology +1607.05881 +1607.06047 Theory +1607.06185 +1607.06200 Strongly Correlated Electrons +1607.06371 Lattice +1607.06395 Geometric Topology +1607.06427 Theory +1607.06431 Optics +1607.06488 Solar and Stellar Astrophysics +1607.06496 Instrumentation and Methods for Astrophysics +1607.06693 Computational Physics +1607.06866 Theory +1607.06900 Phenomenology +1607.06949 Instrumentation and Methods for Astrophysics +1607.07017 Soft Condensed Matter +1607.07152 Theory +1607.07201 Mesoscale and Nanoscale Physics +1607.07294 Fluid Dynamics +1607.07617 Other Condensed Matter +1607.07624 Instrumentation and Methods for Astrophysics +1607.07651 Theory +1607.07655 Phenomenology +1607.07700 Instrumentation and Methods for Astrophysics +1607.07718 Representation Theory +1607.07752 Mesoscale and Nanoscale Physics +1607.07773 Theory +1607.07854 Superconductivity +1607.07898 Phenomenology +1607.07962 +1607.08241 Phenomenology +1607.08268 Statistical Mechanics +1607.08298 Materials Science +1607.08304 Soft Condensed Matter +1607.08313 Phenomenology +1607.08327 Theory +1607.08361 Theory +1607.08410 Strongly Correlated Electrons +1607.08447 Other Condensed Matter +1607.08476 Theory +1607.08513 Phenomenology +1607.08565 +1607.08586 Instrumentation and Methods for Astrophysics +1607.08587 Theory +1607.08652 Phenomenology +1607.08703 Optics +1607.08726 Soft Condensed Matter +1607.08757 Soft Condensed Matter +1607.08777 Soft Condensed Matter +1607.08823 Instrumentation and Methods for Astrophysics +1607.08854 Theory +1607.08873 Optics +1608.00028 High Energy Astrophysical Phenomena +1608.00227 Plasma Physics +1608.00283 Phenomenology +1608.00285 +1608.00320 Phenomenology +1608.00336 Phenomenology +1608.00522 Cosmology and Nongalactic Astrophysics +1608.00575 Earth and Planetary Astrophysics +1608.00579 Instrumentation and Methods for Astrophysics +1608.00662 Phenomenology +1608.00665 Space Physics +1608.00741 +1608.00791 Phenomenology +1608.00829 Theory +1608.00920 Social and Information Networks +1608.01029 Materials Science +1608.01037 Social and Information Networks +1608.01038 Social and Information Networks +1608.01073 Instrumentation and Methods for Astrophysics +1608.01105 +1608.01121 Fluid Dynamics +1608.01124 Instrumentation and Methods for Astrophysics +1608.01194 Phenomenology +1608.01310 Cosmology and Nongalactic Astrophysics +1608.01456 Other Condensed Matter +1608.01457 Instrumentation and Methods for Astrophysics +1608.01512 Logic +1608.01584 Phenomenology +1608.01665 Theory +1608.01804 Instrumentation and Methods for Astrophysics +1608.01850 Phenomenology +1608.01860 Phenomenology +1608.01885 Computational Physics +1608.01943 Physics and Society +1608.02077 +1608.02213 Strongly Correlated Electrons +1608.02331 Phenomenology +1608.02343 Analysis of PDEs +1608.02358 Cosmology and Nongalactic Astrophysics +1608.02496 Instrumentation and Detectors +1608.02507 Phenomenology +1608.02521 Phenomenology +1608.02605 Phenomenology +1608.02613 Disordered Systems and Neural Networks +1608.02622 Theory +1608.02796 Astrophysics of Galaxies +1608.02941 Astrophysics of Galaxies +1608.02970 Theory +1608.03003 Astrophysics of Galaxies +1608.03068 Mesoscale and Nanoscale Physics +1608.03279 Astrophysics of Galaxies +1608.03420 Instrumentation and Methods for Astrophysics +1608.03476 Theory +1608.03627 Earth and Planetary Astrophysics +1608.03867 Statistical Mechanics +1608.03904 Materials Science +1608.03917 Solar and Stellar Astrophysics +1608.04050 +1608.04129 Phenomenology +1608.04157 Other Condensed Matter +1608.04252 Phenomenology +1608.04269 Materials Science +1608.04378 Phenomenology +1608.04387 Theory +1608.04429 Phenomenology +1608.04450 Materials Science +1608.04582 Theory +1608.04646 Phenomenology +1608.04663 Theory +1608.04749 +1608.04790 Instrumentation and Methods for Astrophysics +1608.04798 Phenomenology +1608.04950 Phenomenology +1608.04957 Superconductivity +1608.04962 Optics +1608.05000 Theory +1608.05070 Cosmology and Nongalactic Astrophysics +1608.05257 Optics +1608.05291 Theory +1608.05341 Phenomenology +1608.05402 Theory +1608.05429 High Energy Astrophysical Phenomena +1608.05534 Theory +1608.05545 +1608.05549 Astrophysics of Galaxies +1608.05644 Optics +1608.05718 Phenomenology +1608.05884 Optics +1608.05937 Strongly Correlated Electrons +1608.06120 Mesoscale and Nanoscale Physics +1608.06163 Theory +1608.06194 Chemical Physics +1608.06267 Phenomenology +1608.06320 Solar and Stellar Astrophysics +1608.06534 Accelerator Physics +1608.06597 Phenomenology +1608.06653 +1608.06662 High Energy Astrophysical Phenomena +1608.06681 Chemical Physics +1608.06762 Plasma Physics +1608.06823 Materials Science +1608.06836 Earth and Planetary Astrophysics +1608.07008 Strongly Correlated Electrons +1608.07106 Accelerator Physics +1608.07264 +1608.07287 Quantum Gases +1608.07313 +1608.07316 +1608.07345 Earth and Planetary Astrophysics +1608.07456 History and Philosophy of Physics +1608.07473 +1608.07484 +1608.07530 High Energy Astrophysical Phenomena +1608.07554 Theory +1608.07555 Theory +1608.07618 Methodology +1608.07706 Computer Vision and Pattern Recognition +1608.07773 Strongly Correlated Electrons +1608.07776 Phenomenology +1608.07947 Phenomenology +1608.08056 Applications +1608.08095 Soft Condensed Matter +1608.08177 Atomic Physics +1608.08259 Solar and Stellar Astrophysics +1608.08280 Soft Condensed Matter +1608.08369 Materials Science +1608.08404 Astrophysics of Galaxies +1608.08478 Chemical Physics +1608.08585 +1608.08661 Experiment +1608.08703 Solar and Stellar Astrophysics +1608.08790 Numerical Analysis +1608.08848 Phenomenology +1608.08862 Solar and Stellar Astrophysics +1608.08896 Mesoscale and Nanoscale Physics +1608.08921 +1608.08960 +1608.08982 Phenomenology +1608.08985 Optics +1609.00125 Superconductivity +1609.00204 Phenomenology +1609.00239 Earth and Planetary Astrophysics +1609.00484 Strongly Correlated Electrons +1609.00490 Theory +1609.00545 Astrophysics of Galaxies +1609.00569 Solar and Stellar Astrophysics +1609.00665 +1609.00666 Probability +1609.00801 Theory +1609.00846 Materials Science +1609.00865 Materials Science +1609.01126 +1609.01185 Probability +1609.01192 Cosmology and Nongalactic Astrophysics +1609.01302 Astrophysics of Galaxies +1609.01346 Phenomenology +1609.01358 Probability +1609.01360 Learning +1609.01525 Soft Condensed Matter +1609.01727 Theory +1609.01738 Theory +1609.01768 High Energy Astrophysical Phenomena +1609.01772 +1609.01787 Phenomenology +1609.01794 Optics +1609.01918 High Energy Astrophysical Phenomena +1609.01960 Other Condensed Matter +1609.02104 Databases +1609.02152 Solar and Stellar Astrophysics +1609.02372 Fluid Dynamics +1609.02387 Strongly Correlated Electrons +1609.02388 High Energy Astrophysical Phenomena +1609.02454 Phenomenology +1609.02455 Phenomenology +1609.02466 +1609.02547 Statistical Mechanics +1609.02553 Astrophysics of Galaxies +1609.02566 Astrophysics of Galaxies +1609.02567 Astrophysics of Galaxies +1609.02597 Phenomenology +1609.02671 Cosmology and Nongalactic Astrophysics +1609.02693 Solar and Stellar Astrophysics +1609.02719 History and Philosophy of Physics +1609.02766 +1609.02834 History and Philosophy of Physics +1609.02915 Astrophysics of Galaxies +1609.03019 Earth and Planetary Astrophysics +1609.03121 Mesoscale and Nanoscale Physics +1609.03165 Solar and Stellar Astrophysics +1609.03288 +1609.03324 Physics and Society +1609.03331 +1609.03342 Fluid Dynamics +1609.03431 Numerical Analysis +1609.03466 Cosmology and Nongalactic Astrophysics +1609.03480 Theory +1609.03522 Astrophysics of Galaxies +1609.03595 Astrophysics of Galaxies +1609.03665 Theory +1609.03679 Theory +1609.03761 +1609.03813 Astrophysics of Galaxies +1609.03849 +1609.03902 Optics +1609.03972 Phenomenology +1609.04018 Astrophysics of Galaxies +1609.04082 Atomic Physics +1609.04264 Astrophysics of Galaxies +1609.04265 Theory +1609.04324 +1609.04346 Astrophysics of Galaxies +1609.04374 Atomic Physics +1609.04419 Neurons and Cognition +1609.04463 +1609.04519 Superconductivity +1609.04663 +1609.04786 Earth and Planetary Astrophysics +1609.04805 Astrophysics of Galaxies +1609.04834 Materials Science +1609.04871 Solar and Stellar Astrophysics +1609.05149 Mesoscale and Nanoscale Physics +1609.05208 Solar and Stellar Astrophysics +1609.05210 High Energy Astrophysical Phenomena +1609.05269 Mesoscale and Nanoscale Physics +1609.05446 Strongly Correlated Electrons +1609.05746 Phenomenology +1609.05753 +1609.05850 Solar and Stellar Astrophysics +1609.05864 Other Condensed Matter +1609.05899 Astrophysics of Galaxies +1609.05916 High Energy Astrophysical Phenomena +1609.05991 Solar and Stellar Astrophysics +1609.06043 Instrumentation and Detectors +1609.06162 Chemical Physics +1609.06240 Mesoscale and Nanoscale Physics +1609.06461 Statistical Mechanics +1609.06802 Experiment +1609.06835 +1609.06934 +1609.07110 High Energy Astrophysical Phenomena +1609.07185 High Energy Astrophysical Phenomena +1609.07280 Optics +1609.07303 +1609.07340 Superconductivity +1609.07399 Theory +1609.07435 Solar and Stellar Astrophysics +1609.07457 Materials Science +1609.07493 Analysis of PDEs +1609.07716 Phenomenology +1609.07865 Number Theory +1609.07933 +1609.07940 Soft Condensed Matter +1609.07988 Optics +1609.08002 High Energy Astrophysical Phenomena +1609.08061 Mesoscale and Nanoscale Physics +1609.08085 Materials Science +1609.08324 Solar and Stellar Astrophysics +1609.08448 General Physics +1609.08468 Classical Physics +1609.08485 Earth and Planetary Astrophysics +1609.08638 High Energy Astrophysical Phenomena +1609.08657 Accelerator Physics +1609.08782 Statistical Mechanics +1609.08800 Mesoscale and Nanoscale Physics +1609.08850 Plasma Physics +1609.08857 Soft Condensed Matter +1609.08890 +1609.08905 Learning +1609.08993 Strongly Correlated Electrons +1609.09150 Optics +1609.09233 Chaotic Dynamics +1609.09241 High Energy Astrophysical Phenomena +1609.09260 Classical Physics +1609.09262 Materials Science +1609.09355 Earth and Planetary Astrophysics +1609.09491 Phenomenology +1609.09640 Pattern Formation and Solitons +1609.09676 Mesoscale and Nanoscale Physics +1609.09833 Computational Physics +1610.00110 Superconductivity +1610.00304 Phenomenology +1610.00420 Astrophysics of Galaxies +1610.00455 Fluid Dynamics +1610.00501 Instrumentation and Methods for Astrophysics +1610.00800 Mesoscale and Nanoscale Physics +1610.00925 +1610.00942 Computational Physics +1610.00946 Artificial Intelligence +1610.01006 Classical Physics +1610.01007 Chemical Physics +1610.01026 Quantum Gases +1610.01179 +1610.01379 Earth and Planetary Astrophysics +1610.01512 Cosmology and Nongalactic Astrophysics +1610.01591 +1610.01617 Astrophysics of Galaxies +1610.01658 Optics +1610.01761 Chaotic Dynamics +1610.01814 Experiment +1610.01873 Plasma Physics +1610.01885 Functional Analysis +1610.01942 Atomic Physics +1610.02163 Plasma Physics +1610.02176 Instrumentation and Methods for Astrophysics +1610.02219 Statistical Mechanics +1610.02464 Astrophysics of Galaxies +1610.02564 Phenomenology +1610.02696 High Energy Astrophysical Phenomena +1610.02716 +1610.02754 Number Theory +1610.02817 Mesoscale and Nanoscale Physics +1610.02862 Instrumentation and Methods for Astrophysics +1610.02886 Theory +1610.02890 Theory +1610.02892 Theory +1610.02912 Space Physics +1610.02941 Astrophysics of Galaxies +1610.03200 Strongly Correlated Electrons +1610.03431 Mesoscale and Nanoscale Physics +1610.03439 Optics +1610.03469 High Energy Astrophysical Phenomena +1610.03551 Astrophysics of Galaxies +1610.03586 Optics +1610.03728 Plasma Physics +1610.03969 Strongly Correlated Electrons +1610.04204 Chemical Physics +1610.04205 Strongly Correlated Electrons +1610.04291 Theory +1610.04376 Materials Science +1610.04394 Lattice +1610.04409 Quantum Algebra +1610.04446 Earth and Planetary Astrophysics +1610.04694 Populations and Evolution +1610.04731 +1610.04733 +1610.04736 +1610.04757 Optics +1610.04801 Statistical Mechanics +1610.04869 +1610.05091 Optics +1610.05286 Optics +1610.05460 Plasma Physics +1610.05601 Distributed, Parallel, and Cluster Computing +1610.05610 General Physics +1610.05807 +1610.05808 Materials Science +1610.05821 Statistical Mechanics +1610.06017 High Energy Astrophysical Phenomena +1610.06030 Analysis of PDEs +1610.06045 Other Condensed Matter +1610.06055 Materials Science +1610.06063 Solar and Stellar Astrophysics +1610.06189 Astrophysics of Galaxies +1610.06206 Astrophysics of Galaxies +1610.06257 +1610.06313 Instrumentation and Methods for Astrophysics +1610.06604 Phenomenology +1610.06647 Phenomenology +1610.06778 Mesoscale and Nanoscale Physics +1610.06787 General Physics +1610.06927 Astrophysics of Galaxies +1610.07048 Numerical Analysis +1610.07050 Numerical Analysis +1610.07295 Algebraic Geometry +1610.07347 Theory +1610.07411 +1610.07548 Materials Science +1610.07866 Mesoscale and Nanoscale Physics +1610.07950 Quantum Gases +1610.08052 Soft Condensed Matter +1610.08178 High Energy Astrophysical Phenomena +1610.08179 Cosmology and Nongalactic Astrophysics +1610.08182 Cosmology and Nongalactic Astrophysics +1610.08467 Quantum Gases +1610.08513 Solar and Stellar Astrophysics +1610.08535 Information Theory +1610.08540 Solar and Stellar Astrophysics +1610.08829 +1610.08880 Mesoscale and Nanoscale Physics +1610.09104 Plasma Physics +1610.09121 Astrophysics of Galaxies +1610.09397 Other Condensed Matter +1610.09528 Category Theory +1610.09663 +1610.09707 +1611.00189 Solar and Stellar Astrophysics +1611.00253 Solar and Stellar Astrophysics +1611.00298 Lattice +1611.00372 Astrophysics of Galaxies +1611.00480 Astrophysics of Galaxies +1611.00656 Solar and Stellar Astrophysics +1611.00956 Instrumentation and Methods for Astrophysics +1611.01001 Astrophysics of Galaxies +1611.01056 Physics and Society +1611.01158 Solar and Stellar Astrophysics +1611.01222 Cosmology and Nongalactic Astrophysics +1611.01611 Fluid Dynamics +1611.01790 Solar and Stellar Astrophysics +1611.02050 Optimization and Control +1611.02225 Materials Science +1611.02227 Materials Science +1611.02228 Materials Science +1611.02229 Materials Science +1611.02230 Materials Science +1611.02326 Combinatorics +1611.02589 Data Structures and Algorithms +1611.02811 Strongly Correlated Electrons +1611.03093 Theory +1611.03164 Theory +1611.03273 Discrete Mathematics +1611.03522 Earth and Planetary Astrophysics +1611.03560 +1611.03649 Phenomenology +1611.03744 Soft Condensed Matter +1611.04301 Statistical Mechanics +1611.04326 Computation and Language +1611.04699 Solar and Stellar Astrophysics +1611.04736 Experiment +1611.04863 Plasma Physics +1611.04890 Strongly Correlated Electrons +1611.05111 +1611.05149 Quantitative Methods +1611.05168 Plasma Physics +1611.05244 Computer Vision and Pattern Recognition +1611.05435 Computer Vision and Pattern Recognition +1611.05484 +1611.05672 Logic in Computer Science +1611.05724 Learning +1611.06245 Neural and Evolutionary Computing +1611.06266 Materials Science +1611.06276 Programming Languages +1611.06284 Computer Vision and Pattern Recognition +1611.06369 Quantum Gases +1611.06385 Computational Complexity +1611.06422 Superconductivity +1611.06440 Learning +1611.06442 +1611.06448 Computer Vision and Pattern Recognition +1611.06476 Atomic Physics +1611.06496 Differential Geometry +1611.06504 Representation Theory +1611.06531 Experiment +1611.06596 Computer Vision and Pattern Recognition +1611.06636 Mesoscale and Nanoscale Physics +1611.06643 Algebraic Geometry +1611.06684 Learning +1611.06843 Applications +1611.06889 Quantitative Methods +1611.06892 Mathematical Software +1611.06953 Learning +1611.06996 Machine Learning +1611.07015 +1611.07016 Classical Physics +1611.07018 Chaotic Dynamics +1611.07020 Networking and Internet Architecture +1611.07021 Theory +1611.07023 Theory +1611.07024 Astrophysics of Galaxies +1611.07028 Astrophysics of Galaxies +1611.07031 Phenomenology +1611.07032 Tissues and Organs +1611.07036 Astrophysics of Galaxies +1611.07038 Astrophysics of Galaxies +1611.07041 Theory +1611.07042 Cosmology and Nongalactic Astrophysics +1611.07044 Cosmology and Nongalactic Astrophysics +1611.07045 Astrophysics of Galaxies +1611.07046 Cosmology and Nongalactic Astrophysics +1611.07047 Astrophysics of Galaxies +1611.07048 Astrophysics of Galaxies +1611.07052 Mesoscale and Nanoscale Physics +1611.07054 Learning +1611.07055 Data Structures and Algorithms +1611.07056 Computation +1611.07057 Algebraic Geometry +1611.07058 Mesoscale and Nanoscale Physics +1611.07059 Theory +1611.07060 Robotics +1611.07062 Theory +1611.07063 +1611.07074 Theory +1611.07076 Classical Physics +1611.07077 History and Philosophy of Physics +1611.07079 Mesoscale and Nanoscale Physics +1611.07081 Statistical Mechanics +1611.07082 +1611.07083 Distributed, Parallel, and Cluster Computing +1611.07085 Chemical Physics +1611.07087 Combinatorics +1611.07090 Strongly Correlated Electrons +1611.07091 Quantum Gases +1611.07094 Superconductivity +1611.07095 High Energy Astrophysical Phenomena +1611.07097 Classical Analysis and ODEs +1611.07101 Optics +1611.07102 Computer Science and Game Theory +1611.07105 Computer Science and Game Theory +1611.07108 Optimization and Control +1611.07109 Cryptography and Security +1611.07110 +1611.07111 Combinatorics +1611.07113 Strongly Correlated Electrons +1611.07115 Machine Learning +1611.07116 Theory +1611.07117 +1611.07119 Computer Vision and Pattern Recognition +1611.07120 Operator Algebras +1611.07121 Functional Analysis +1611.07122 +1611.07124 Information Theory +1611.07129 +1611.07130 Materials Science +1611.07133 +1611.07134 Experiment +1611.07136 Computer Vision and Pattern Recognition +1611.07137 Combinatorics +1611.07138 Optimization and Control +1611.07139 Human-Computer Interaction +1611.07140 Statistical Mechanics +1611.07141 Algebraic Geometry +1611.07142 Atomic Physics +1611.07143 Computer Vision and Pattern Recognition +1611.07144 Symbolic Computation +1611.07145 Computer Vision and Pattern Recognition +1611.07146 Number Theory +1611.07148 Soft Condensed Matter +1611.07150 Lattice +1611.07151 Distributed, Parallel, and Cluster Computing +1611.07152 +1611.07153 Strongly Correlated Electrons +1611.07154 Mesoscale and Nanoscale Physics +1611.07155 +1611.07157 Soft Condensed Matter +1611.07158 Optics +1611.07159 Phenomenology +1611.07161 Machine Learning +1611.07163 Software Engineering +1611.07164 Information Theory +1611.07165 Soft Condensed Matter +1611.07166 +1611.07167 +1611.07168 Instrumentation and Detectors +1611.07170 Numerical Analysis +1611.07171 Numerical Analysis +1611.07172 Numerical Analysis +1611.07173 Functional Analysis +1611.07175 Systems and Control +1611.07176 Mesoscale and Nanoscale Physics +1611.07178 Logic in Computer Science +1611.07179 Superconductivity +1611.07180 High Energy Astrophysical Phenomena +1611.07181 Physics and Society +1611.07182 Materials Science +1611.07183 Number Theory +1611.07185 Spectral Theory +1611.07186 +1611.07187 Analysis of PDEs +1611.07188 Information Theory +1611.07189 +1611.07190 Materials Science +1611.07191 Data Structures and Algorithms +1611.07193 Astrophysics of Galaxies +1611.07194 Phenomenology +1611.07195 Phenomenology +1611.07197 Methodology +1611.07198 Materials Science +1611.07199 Functional Analysis +1611.07200 Classical Analysis and ODEs +1611.07201 Numerical Analysis +1611.07203 Instrumentation and Methods for Astrophysics +1611.07204 Functional Analysis +1611.07205 Lattice +1611.07206 Computation and Language +1611.07208 Materials Science +1611.07210 Mesoscale and Nanoscale Physics +1611.07212 Computer Vision and Pattern Recognition +1611.07213 Numerical Analysis +1611.07214 Information Theory +1611.07215 Experiment +1611.07217 Optics +1611.07219 Functional Analysis +1611.07220 Instrumentation and Detectors +1611.07221 Lattice +1611.07223 Probability +1611.07224 Information Theory +1611.07226 Phenomenology +1611.07227 Mesoscale and Nanoscale Physics +1611.07228 Analysis of PDEs +1611.07230 Statistics Theory +1611.07231 Computer Vision and Pattern Recognition +1611.07233 Computer Vision and Pattern Recognition +1611.07235 Computational Complexity +1611.07236 Probability +1611.07238 Distributed, Parallel, and Cluster Computing +1611.07241 Dynamical Systems +1611.07242 Statistics Theory +1611.07245 Computer Vision and Pattern Recognition +1611.07248 Dynamical Systems +1611.07249 Phenomenology +1611.07251 Number Theory +1611.07252 Machine Learning +1611.07253 Statistics Theory +1611.07260 Combinatorics +1611.07261 Phenomenology +1611.07264 Biological Physics +1611.07266 Materials Science +1611.07269 Number Theory +1611.07270 Machine Learning +1611.07272 Neurons and Cognition +1611.07275 Probability +1611.07276 Statistics Theory +1611.07281 Lattice +1611.07282 Probability +1611.07286 Materials Science +1611.07287 Number Theory +1611.07288 Strongly Correlated Electrons +1611.07291 Mesoscale and Nanoscale Physics +1611.07292 Numerical Analysis +1611.07293 +1611.07296 Fluid Dynamics +1611.07298 Quantum Algebra +1611.07299 Cryptography and Security +1611.07303 Data Structures and Algorithms +1611.07306 Commutative Algebra +1611.07308 Machine Learning +1611.07309 Solar and Stellar Astrophysics +1611.07310 Soft Condensed Matter +1611.07312 Phenomenology +1611.07313 Theory +1611.07314 Solar and Stellar Astrophysics +1611.07317 Atmospheric and Oceanic Physics +1611.07319 Atmospheric and Oceanic Physics +1611.07320 Superconductivity +1611.07321 Mesoscale and Nanoscale Physics +1611.07323 High Energy Astrophysical Phenomena +1611.07324 Probability +1611.07326 Accelerator Physics +1611.07328 +1611.07329 Robotics +1611.07332 +1611.07333 Quantum Gases +1611.07336 Data Structures and Algorithms +1611.07337 Numerical Analysis +1611.07339 Earth and Planetary Astrophysics +1611.07340 Mesoscale and Nanoscale Physics +1611.07341 General Physics +1611.07343 Learning +1611.07347 Statistics Theory +1611.07348 Representation Theory +1611.07350 Cryptography and Security +1611.07351 Sound +1611.07352 Phenomenology +1611.07353 Instrumentation and Detectors +1611.07356 Computational Geometry +1611.07358 Differential Geometry +1611.07360 Computational Geometry +1611.07365 +1611.07366 Networking and Internet Architecture +1611.07368 Computational Engineering, Finance, and Science +1611.07370 Phenomenology +1611.07372 Logic in Computer Science +1611.07374 Mesoscale and Nanoscale Physics +1611.07375 Experiment +1611.07377 Phenomenology +1611.07379 Computer Science and Game Theory +1611.07381 Representation Theory +1611.07382 Optimization and Control +1611.07384 History and Overview +1611.07385 Computer Vision and Pattern Recognition +1611.07388 Optimization and Control +1611.07390 Medical Physics +1611.07391 Phenomenology +1611.07392 Cryptography and Security +1611.07393 Optimization and Control +1611.07394 Instrumentation and Detectors +1611.07395 Solar and Stellar Astrophysics +1611.07396 Number Theory +1611.07397 Networking and Internet Architecture +1611.07398 +1611.07399 Robotics +1611.07400 Networking and Internet Architecture +1611.07401 Popular Physics +1611.07403 Computational Engineering, Finance, and Science +1611.07404 Mesoscale and Nanoscale Physics +1611.07406 Materials Science +1611.07407 Combinatorics +1611.07408 Mesoscale and Nanoscale Physics +1611.07409 Performance +1611.07411 Lattice +1611.07412 Applications +1611.07413 Earth and Planetary Astrophysics +1611.07414 Data Structures and Algorithms +1611.07416 Solar and Stellar Astrophysics +1611.07417 Computation +1611.07419 Phenomenology +1611.07420 Computer Science and Game Theory +1611.07421 Symbolic Computation +1611.07422 Learning +1611.07423 Algebraic Geometry +1611.07424 Superconductivity +1611.07425 Information Theory +1611.07427 Lattice +1611.07429 Machine Learning +1611.07431 Instrumentation and Detectors +1611.07433 Algebraic Geometry +1611.07436 Symplectic Geometry +1611.07437 Combinatorics +1611.07438 Learning +1611.07439 Commutative Algebra +1611.07440 Probability +1611.07441 General Topology +1611.07442 Functional Analysis +1611.07443 Machine Learning +1611.07444 Geometric Topology +1611.07446 Phenomenology +1611.07448 Networking and Internet Architecture +1611.07451 Data Structures and Algorithms +1611.07453 Group Theory +1611.07454 Social and Information Networks +1611.07457 +1611.07458 Number Theory +1611.07460 Machine Learning +1611.07464 Solar and Stellar Astrophysics +1611.07466 Probability +1611.07467 Group Theory +1611.07468 Discrete Mathematics +1611.07471 Algebraic Geometry +1611.07472 Theory +1611.07473 +1611.07475 Solar and Stellar Astrophysics +1611.07476 Learning +1611.07480 Experiment +1611.07481 Materials Science +1611.07482 Materials Science +1611.07484 Mesoscale and Nanoscale Physics +1611.07487 Dynamical Systems +1611.07489 Data Structures and Algorithms +1611.07490 Robotics +1611.07492 Machine Learning +1611.07493 Combinatorics +1611.07494 Phenomenology +1611.07495 +1611.07499 Classical Analysis and ODEs +1611.07500 +1611.07501 +1611.07502 Programming Languages +1611.07503 Data Structures and Algorithms +1611.07504 Optics +1611.07507 Learning +1611.07509 Learning +1611.07510 Materials Science +1611.07511 Distributed, Parallel, and Cluster Computing +1611.07514 Phenomenology +1611.07515 +1611.07516 Earth and Planetary Astrophysics +astro-ph/0008224 +astro-ph/0101496 +astro-ph/0104388 +astro-ph/0106075 +astro-ph/0108259 +astro-ph/0605626 +astro-ph/9804043 +astro-ph/9804078 +astro-ph/9810209 +astro-ph/9903346 +astro-ph/9906155 +astro-ph/9912211 +chao-dyn/9907005 Chaotic Dynamics +cond-mat/0002072 Statistical Mechanics +cond-mat/0011049 Statistical Mechanics +cond-mat/0105509 +cond-mat/0106334 Disordered Systems and Neural Networks +cond-mat/0106442 +cond-mat/0107326 Strongly Correlated Electrons +cond-mat/0107394 Statistical Mechanics +cond-mat/0107491 Disordered Systems and Neural Networks +cond-mat/0108469 Statistical Mechanics +cond-mat/0109034 Statistical Mechanics +cond-mat/0109182 Materials Science +cond-mat/0109215 Statistical Mechanics +cond-mat/0110317 Statistical Mechanics +cond-mat/0110373 Statistical Mechanics +cond-mat/0110413 Disordered Systems and Neural Networks +cond-mat/0110472 Disordered Systems and Neural Networks +cond-mat/0110496 Superconductivity +cond-mat/0111246 Statistical Mechanics +cond-mat/0111471 Statistical Mechanics +cond-mat/0112463 Disordered Systems and Neural Networks +cond-mat/0206122 +cond-mat/0206367 Statistical Mechanics +cond-mat/0210042 Disordered Systems and Neural Networks +cond-mat/0210166 Disordered Systems and Neural Networks +cond-mat/0302283 Statistical Mechanics +cond-mat/0303485 Superconductivity +cond-mat/0310038 Statistical Mechanics +cond-mat/0310405 Strongly Correlated Electrons +cond-mat/0310479 Statistical Mechanics +cond-mat/0311314 Statistical Mechanics +cond-mat/0312432 Disordered Systems and Neural Networks +cond-mat/0312567 Soft Condensed Matter +cond-mat/0408407 Statistical Mechanics +cond-mat/0409602 Strongly Correlated Electrons +cond-mat/0412421 Strongly Correlated Electrons +cond-mat/0412581 Soft Condensed Matter +cond-mat/0412682 Statistical Mechanics +cond-mat/0505520 Mesoscale and Nanoscale Physics +cond-mat/0612655 Statistical Mechanics +cond-mat/9906164 Statistical Mechanics +cond-mat/9907372 Statistical Mechanics +cond-mat/9910495 Strongly Correlated Electrons +cond-mat/9911115 Strongly Correlated Electrons +cond-mat/9911261 +cs/0605065 Neural and Evolutionary Computing +cs/0610049 Computational Complexity +gr-qc/0101090 +gr-qc/0202016 +gr-qc/0206034 +gr-qc/0405135 +gr-qc/0411036 +gr-qc/0503107 +gr-qc/0503112 +gr-qc/0504096 +gr-qc/0508097 +gr-qc/9906109 +gr-qc/9911045 +hep-ex/0002011 Experiment +hep-ex/0002031 Experiment +hep-ex/0002059 Experiment +hep-ex/0005004 Experiment +hep-ex/0005044 Experiment +hep-ex/0103046 Experiment +hep-ex/0104018 Experiment +hep-ex/0104024 Experiment +hep-ex/0104028 Experiment +hep-ex/0104041 Experiment +hep-ex/0104045 Experiment +hep-ex/0104048 Experiment +hep-ex/0104053 Experiment +hep-ex/0105005 Experiment +hep-ex/0106064 Experiment +hep-ex/0112043 Experiment +hep-ex/9909001 Experiment +hep-ex/9909053 Experiment +hep-ex/9910018 Experiment +hep-ex/9911005 Experiment +hep-ex/9911034 Experiment +hep-lat/0205021 Lattice +hep-lat/0302001 Lattice +hep-lat/0307027 Lattice +hep-lat/0406007 Lattice +hep-lat/0406033 Lattice +hep-lat/9903029 Lattice +hep-ph/0001003 Phenomenology +hep-ph/0001088 Phenomenology +hep-ph/0001170 Phenomenology +hep-ph/0001280 Phenomenology +hep-ph/0001313 Phenomenology +hep-ph/0001317 Phenomenology +hep-ph/0001321 Phenomenology +hep-ph/0001324 Phenomenology +hep-ph/0002025 Phenomenology +hep-ph/0002114 Phenomenology +hep-ph/0002121 Phenomenology +hep-ph/0002131 Phenomenology +hep-ph/0002171 Phenomenology +hep-ph/0002173 Phenomenology +hep-ph/0002210 Phenomenology +hep-ph/0002254 Phenomenology +hep-ph/0002280 Phenomenology +hep-ph/0002296 Phenomenology +hep-ph/0003092 Phenomenology +hep-ph/0003116 Phenomenology +hep-ph/0003155 Phenomenology +hep-ph/0004025 Phenomenology +hep-ph/0004055 Phenomenology +hep-ph/0004061 Phenomenology +hep-ph/0004152 Phenomenology +hep-ph/0005134 Phenomenology +hep-ph/0006127 Phenomenology +hep-ph/0007092 Phenomenology +hep-ph/0008124 Phenomenology +hep-ph/0008206 Phenomenology +hep-ph/0009006 Phenomenology +hep-ph/0009131 Phenomenology +hep-ph/0009138 Phenomenology +hep-ph/0009298 Phenomenology +hep-ph/0010007 Phenomenology +hep-ph/0010023 Phenomenology +hep-ph/0010049 Phenomenology +hep-ph/0010099 Phenomenology +hep-ph/0010175 Phenomenology +hep-ph/0010208 Phenomenology +hep-ph/0010328 Phenomenology +hep-ph/0011193 Phenomenology +hep-ph/0011333 Phenomenology +hep-ph/0011390 Phenomenology +hep-ph/0101042 Phenomenology +hep-ph/0101225 Phenomenology +hep-ph/0102060 Phenomenology +hep-ph/0102167 Phenomenology +hep-ph/0103011 Phenomenology +hep-ph/0103074 Phenomenology +hep-ph/0103145 Phenomenology +hep-ph/0103264 Phenomenology +hep-ph/0103305 Phenomenology +hep-ph/0103310 Phenomenology +hep-ph/0103319 Phenomenology +hep-ph/0103345 Phenomenology +hep-ph/0104002 Phenomenology +hep-ph/0104008 Phenomenology +hep-ph/0104018 Phenomenology +hep-ph/0104050 Phenomenology +hep-ph/0104080 Phenomenology +hep-ph/0104136 Phenomenology +hep-ph/0104153 Phenomenology +hep-ph/0104157 Phenomenology +hep-ph/0104202 Phenomenology +hep-ph/0106039 Phenomenology +hep-ph/0106200 Phenomenology +hep-ph/0106273 Phenomenology +hep-ph/0107070 Phenomenology +hep-ph/0110293 Phenomenology +hep-ph/0111249 Phenomenology +hep-ph/0112253 Phenomenology +hep-ph/0112325 Phenomenology +hep-ph/0112339 Phenomenology +hep-ph/0112349 Phenomenology +hep-ph/0201005 Phenomenology +hep-ph/0204068 Phenomenology +hep-ph/0204299 Phenomenology +hep-ph/0302227 Phenomenology +hep-ph/0303185 Phenomenology +hep-ph/0303204 Phenomenology +hep-ph/0304151 Phenomenology +hep-ph/0405043 Phenomenology +hep-ph/0405147 Phenomenology +hep-ph/0406165 Phenomenology +hep-ph/0406238 Phenomenology +hep-ph/0409168 Phenomenology +hep-ph/0505177 Phenomenology +hep-ph/0508233 Phenomenology +hep-ph/0702124 Phenomenology +hep-ph/9908477 Phenomenology +hep-ph/9909531 Phenomenology +hep-ph/9910207 Phenomenology +hep-ph/9910480 Phenomenology +hep-ph/9910552 Phenomenology +hep-ph/9911228 Phenomenology +hep-ph/9911334 Phenomenology +hep-ph/9911519 Phenomenology +hep-ph/9912245 Phenomenology +hep-ph/9912372 Phenomenology +hep-ph/9912401 Phenomenology +hep-ph/9912413 Phenomenology +hep-ph/9912440 Phenomenology +hep-th/0001149 Theory +hep-th/0002204 Theory +hep-th/0003182 Theory +hep-th/0006083 Theory +hep-th/0008175 Theory +hep-th/0010228 Theory +hep-th/0012130 Theory +hep-th/0104233 Theory +hep-th/0105193 Theory +hep-th/0109045 Theory +hep-th/0110140 Theory +hep-th/0110261 Theory +hep-th/0111119 Theory +hep-th/0111174 Theory +hep-th/0112072 Theory +hep-th/0112103 Theory +hep-th/0112144 Theory +hep-th/0112225 Theory +hep-th/0201164 Theory +hep-th/0203207 Theory +hep-th/0204040 Theory +hep-th/0205026 Theory +hep-th/0207081 Theory +hep-th/0302028 Theory +hep-th/0403071 Theory +hep-th/0403090 Theory +hep-th/0403152 Theory +hep-th/0403166 Theory +hep-th/0403225 Theory +hep-th/0403294 Theory +hep-th/0404052 Theory +hep-th/0404102 Theory +hep-th/0404108 Theory +hep-th/0405040 Theory +hep-th/0405068 Theory +hep-th/0405189 Theory +hep-th/0405289 Theory +hep-th/0406162 Theory +hep-th/0406216 Theory +hep-th/0406234 Theory +hep-th/0406272 Theory +hep-th/0407003 Theory +hep-th/0407007 Theory +hep-th/0407026 Theory +hep-th/0407100 Theory +hep-th/0407197 Theory +hep-th/0407209 Theory +hep-th/0407236 Theory +hep-th/0408118 Theory +hep-th/0408162 Theory +hep-th/0409028 Theory +hep-th/0409105 Theory +hep-th/0411024 Theory +hep-th/0505153 Theory +hep-th/9902029 Theory +hep-th/9903005 Theory +hep-th/9905218 Theory +hep-th/9907061 Theory +hep-th/9907114 Theory +hep-th/9908105 Theory +hep-th/9908146 Theory +hep-th/9908160 Theory +hep-th/9908202 Theory +hep-th/9908204 Theory +hep-th/9908208 Theory +hep-th/9909125 Theory +hep-th/9910096 Theory +hep-th/9911004 Theory +hep-th/9911008 Theory +hep-th/9912142 Theory +hep-th/9912264 Theory +hep-th/9912292 Theory +math-ph/0012009 +math-ph/0112053 +math-ph/0202001 +math-ph/0202026 +math-ph/0209056 +math-ph/0407050 +math-ph/0502034 +math/0001136 Quantum Algebra +math/0007065 Quantum Algebra +math/0202193 Representation Theory +math/0208045 Spectral Theory +math/0208173 Combinatorics +math/0407245 Differential Geometry +math/0610687 Metric Geometry +nlin/0207025 Exactly Solvable and Integrable Systems +nlin/0209035 Exactly Solvable and Integrable Systems +nlin/0509008 Adaptation and Self-Organizing Systems +nucl-th/0008064 +nucl-th/0009016 +nucl-th/0011099 +nucl-th/0012002 +nucl-th/0012019 +nucl-th/0012021 +nucl-th/0012035 +nucl-th/0012079 +nucl-th/0012084 +nucl-th/0103024 +nucl-th/0103080 +nucl-th/0106004 +nucl-th/0106017 +nucl-th/0108054 +nucl-th/0111076 +nucl-th/0302077 +nucl-th/0304013 +nucl-th/0305064 +nucl-th/0509016 +nucl-th/9904043 +physics/0010079 Fluid Dynamics +physics/0107010 History and Philosophy of Physics +physics/0204089 Chemical Physics +physics/0207103 Atomic Physics +physics/0609062 Popular Physics +physics/0702250 General Physics +quant-ph/0004025 +quant-ph/0103041 +quant-ph/0105095 +quant-ph/0204156 +quant-ph/0303034 +quant-ph/9906111 +quant-ph/9911066 +solv-int/9908003 Exactly Solvable and Integrable Systems +solv-int/9909017 Exactly Solvable and Integrable Systems +1207.1527 Classical Analysis and ODEs +0709.3894 Other Condensed Matter +0905.2824 +0905.4169 Data Analysis, Statistics and Probability +1103.3475 Representation Theory +1110.0288 Numerical Analysis +1205.3756 Information Theory +1206.0370 Functional Analysis +1206.2611 Representation Theory +1301.0204 Optics +1303.1122 Mesoscale and Nanoscale Physics +1303.5960 Computation and Language +1304.4907 Probability +1304.6924 Statistics Theory +1311.3016 Probability +1312.3937 Statistics Theory +1312.5990 Information Theory +1401.2010 Formal Languages and Automata Theory +1401.6823 Combinatorics +1401.7895 Probability +1402.0988 Computer Science and Game Theory +1403.3957 +1403.7494 Differential Geometry +1404.1430 Soft Condensed Matter +1404.1894 Discrete Mathematics +1404.5429 Algebraic Geometry +1405.6843 Cryptography and Security +1405.7157 Analysis of PDEs +1406.2768 +1406.3958 Combinatorics +1406.7728 Statistics Theory +1407.0492 Analysis of PDEs +1407.1440 Algebraic Geometry +1407.8202 +1408.0618 Analysis of PDEs +1408.2214 Information Theory +1408.5188 Materials Science +1409.3570 Cosmology and Nongalactic Astrophysics +1409.5276 Combinatorics +1409.7011 Algebraic Geometry +1410.0193 Differential Geometry +1410.0778 Rings and Algebras +1410.8638 Analysis of PDEs +1411.0276 Materials Science +1411.1618 +1411.5662 Geometric Topology +1411.7925 Information Theory +1412.4716 High Energy Astrophysical Phenomena +1412.4857 Statistics Theory +1412.5597 Strongly Correlated Electrons +1412.7262 Optics +1412.7333 +1501.00839 Group Theory +1501.01672 +1501.04979 Mathematical Software +1501.07060 Probability +1502.00844 Theory +1502.01127 Optics +1502.05010 +1502.05425 Geometric Topology +1502.05510 Statistics Theory +1503.00516 Computer Vision and Pattern Recognition +1503.00828 Operator Algebras +1503.04143 +1503.07379 Materials Science +1504.02015 Soft Condensed Matter +1504.02138 +1504.02252 Mesoscale and Nanoscale Physics +1504.03261 High Energy Astrophysical Phenomena +1504.03733 Methodology +1504.04451 Mesoscale and Nanoscale Physics +1504.06003 Social and Information Networks +1504.06493 Probability +1504.07080 Analysis of PDEs +1504.07233 +1505.00522 Mesoscale and Nanoscale Physics +1505.05307 +1505.06378 Learning +1505.07604 Functional Analysis +1506.00438 Learning +1506.01135 +1506.01516 Physics and Society +1506.02638 +1506.03912 K-Theory and Homology +1506.05767 Mesoscale and Nanoscale Physics +1506.07449 Combinatorics +1507.00991 Strongly Correlated Electrons +1507.01598 High Energy Astrophysical Phenomena +1507.01830 Analysis of PDEs +1507.02765 +1507.03558 Data Structures and Algorithms +1507.04234 Distributed, Parallel, and Cluster Computing +1508.00128 Commutative Algebra +1508.00871 Rings and Algebras +1508.01020 Geometric Topology +1508.01024 Classical Analysis and ODEs +1508.03038 Representation Theory +1508.03349 Information Theory +1508.05040 +1508.06312 +1508.06514 General Mathematics +1508.06681 Materials Science +1508.06683 Strongly Correlated Electrons +1508.07480 Digital Libraries +1509.01251 Mesoscale and Nanoscale Physics +1509.01447 Analysis of PDEs +1509.02009 Analysis of PDEs +1509.02656 Strongly Correlated Electrons +1509.04094 Classical Physics +1509.04402 Plasma Physics +1509.04481 +1509.06958 Solar and Stellar Astrophysics +1509.07572 Mesoscale and Nanoscale Physics +1509.08192 Materials Science +1509.08393 Astrophysics of Galaxies +1509.08404 Experiment +1509.08466 Cosmology and Nongalactic Astrophysics +1509.09145 Mesoscale and Nanoscale Physics +1510.00833 Probability +1510.02157 Materials Science +1510.03014 Functional Analysis +1510.03054 Mesoscale and Nanoscale Physics +1510.04283 Astrophysics of Galaxies +1510.05125 +1510.05654 Solar and Stellar Astrophysics +1510.06202 Phenomenology +1510.06404 Astrophysics of Galaxies +1511.00808 Exactly Solvable and Integrable Systems +1511.01456 Phenomenology +1511.01681 Neurons and Cognition +1511.01854 +1511.03366 Mesoscale and Nanoscale Physics +1511.03785 +1511.06748 Experiment +1511.08319 Materials Science +1511.09408 High Energy Astrophysical Phenomena +1512.00228 Learning +1512.00965 Artificial Intelligence +1512.01932 Number Theory +1512.03079 Solar and Stellar Astrophysics +1512.04369 Instrumentation and Methods for Astrophysics +1512.05425 Optics +1512.05820 Numerical Analysis +1512.08016 +1601.01031 Number Theory +1601.02417 Astrophysics of Galaxies +1601.04007 Analysis of PDEs +1601.04169 Data Structures and Algorithms +1601.04674 Machine Learning +1601.04878 +1601.04928 Phenomenology +1601.05244 Functional Analysis +1601.05271 Digital Libraries +1601.05411 Accelerator Physics +1601.05419 Earth and Planetary Astrophysics +1601.05438 Earth and Planetary Astrophysics +1601.05439 Distributed, Parallel, and Cluster Computing +1601.05447 Computer Vision and Pattern Recognition +1601.05448 Computational Physics +1601.05449 Quantitative Methods +1601.05451 Optics +1601.05452 Instrumentation and Methods for Astrophysics +1601.05454 Logic +1601.05458 Distributed, Parallel, and Cluster Computing +1601.05466 Physics Education +1601.05467 Physics Education +1601.05468 Algebraic Geometry +1601.05469 Physics Education +1601.05471 Instrumentation and Detectors +1601.05472 Computation and Language +1601.05474 Cosmology and Nongalactic Astrophysics +1601.05477 Chaotic Dynamics +1601.05480 Data Structures and Algorithms +1601.05483 Human-Computer Interaction +1601.05487 Complex Variables +1601.05488 Mesoscale and Nanoscale Physics +1601.05491 Number Theory +1601.05493 Optics +1601.05494 Computational Complexity +1601.05496 Analysis of PDEs +1601.05498 Combinatorics +1601.05504 Dynamical Systems +1601.05507 Probability +1601.05510 Dynamical Systems +1601.05511 Computer Vision and Pattern Recognition +1601.05514 Materials Science +1601.05515 Number Theory +1601.05516 Information Theory +1601.05520 Programming Languages +1601.05525 Functional Analysis +1601.05527 Social and Information Networks +1601.05530 Mesoscale and Nanoscale Physics +1601.05531 +1601.05532 Social and Information Networks +1601.05534 Mesoscale and Nanoscale Physics +1601.05535 Computer Vision and Pattern Recognition +1601.05536 Mesoscale and Nanoscale Physics +1601.05539 Information Theory +1601.05542 Classical Analysis and ODEs +1601.05545 Classical Physics +1601.05547 Analysis of PDEs +1601.05552 Analysis of PDEs +1601.05554 Optics +1601.05558 Optics +1601.05562 Combinatorics +1601.05566 +1601.05567 Probability +1601.05569 Software Engineering +1601.05571 Materials Science +1601.05572 Probability +1601.05573 Optics +1601.05580 Combinatorics +1601.05581 Analysis of PDEs +1601.05586 +1601.05590 Distributed, Parallel, and Cluster Computing +1601.05591 +1601.05593 Computer Vision and Pattern Recognition +1601.05595 Information Theory +1601.05597 Probability +1601.05601 Optics +1601.05607 High Energy Astrophysical Phenomena +1601.05608 Optimization and Control +1601.05610 Computer Vision and Pattern Recognition +1601.05612 Algebraic Topology +1601.05614 Dynamical Systems +1601.05618 Probability +1601.05622 Commutative Algebra +1601.05624 Numerical Analysis +1601.05626 +1601.05628 Theory +1601.05629 Combinatorics +1601.05634 +1601.05637 Combinatorics +1601.05638 Information Theory +1601.05640 Solar and Stellar Astrophysics +1601.05644 Computer Vision and Pattern Recognition +1601.05645 Combinatorics +1601.05653 Probability +1601.05654 Instrumentation and Methods for Astrophysics +1601.05655 Experiment +1601.05656 Logic in Computer Science +1601.05660 Physics and Society +1601.05662 Experiment +1601.05664 Physics and Society +1601.05666 Analysis of PDEs +1601.05667 Strongly Correlated Electrons +1601.05670 Dynamical Systems +1601.05675 Machine Learning +1601.05678 Optimization and Control +1601.05680 Numerical Analysis +1601.05682 Statistics Theory +1601.05684 Geophysics +1601.05686 Statistics Theory +1601.05690 Information Theory +1601.05695 Numerical Analysis +1601.05696 Geometric Topology +1601.05697 Differential Geometry +1601.05700 Populations and Evolution +1601.05704 Analysis of PDEs +1601.05706 Computational Geometry +1601.05707 +1601.05708 Symplectic Geometry +1601.05711 Geophysics +1601.05712 +1601.05713 Probability +1601.05716 Complex Variables +1601.05717 Lattice +1601.05721 Soft Condensed Matter +1601.05722 Solar and Stellar Astrophysics +1601.05723 Algebraic Geometry +1601.05725 Distributed, Parallel, and Cluster Computing +1601.05727 Rings and Algebras +1601.05728 Analysis of PDEs +1601.05734 Materials Science +1601.05737 General Physics +1601.05738 Software Engineering +1601.05742 Phenomenology +1601.05743 Number Theory +1601.05745 Analysis of PDEs +1601.05746 Phenomenology +1601.05747 Computational Geometry +1601.05748 Databases +1601.05751 +1601.05754 Computational Engineering, Finance, and Science +1601.05756 Probability +1601.05759 Superconductivity +1601.05762 Combinatorics +1601.05764 Learning +1601.05765 Data Analysis, Statistics and Probability +1601.05766 Statistics Theory +1601.05767 Computer Vision and Pattern Recognition +1601.05768 Computation and Language +1601.05770 Probability +1601.05774 Operator Algebras +1601.05778 Classical Analysis and ODEs +1601.05779 Cosmology and Nongalactic Astrophysics +1601.05782 Plasma Physics +1601.05783 Analysis of PDEs +nlin/0202021 Exactly Solvable and Integrable Systems +quant-ph/0703052 +1012.3692 Phenomenology +1105.4007 +1109.0426 Phenomenology +1110.2657 Theory +1112.1497 Information Theory +1201.1792 Probability +1202.0632 +1203.4346 Statistics Theory +1203.5590 Quantum Algebra +1205.0905 Differential Geometry +1205.6034 +1206.0734 Mesoscale and Nanoscale Physics +1206.4939 Probability +1206.6924 Theory +1207.1499 Phenomenology +1207.3497 Theory +1208.1902 Experiment +1208.3590 Symplectic Geometry +1208.4910 Theory +1208.5328 Phenomenology +1208.6219 Theory +1209.0561 Theory +1209.0903 Cosmology and Nongalactic Astrophysics +1209.1914 Theory +1209.2556 +1209.2867 +1209.4712 Theory +1209.5150 Phenomenology +1209.5159 +1209.6318 Phenomenology +1209.6622 Statistical Mechanics +1210.2848 Phenomenology +1210.6108 +1210.6308 Theory +1210.7305 Theory +1210.8306 Cosmology and Nongalactic Astrophysics +1211.3525 +1211.5949 Theory +1211.5963 Theory +1211.5976 Theory +1211.6135 Theory +1211.6627 Phenomenology +1212.0063 Theory +1212.1353 Lattice +1212.2717 Adaptation and Self-Organizing Systems +1212.5235 Phenomenology +1212.5913 Phenomenology +1212.5958 Experiment +1212.6803 +1301.2644 +1301.3088 Theory +1301.5435 Numerical Analysis +1301.7543 Theory +1302.2502 +1302.6121 Number Theory +1302.6438 Phenomenology +1303.2744 High Energy Astrophysical Phenomena +1303.6815 Representation Theory +1304.0533 Lattice +1304.0598 +1304.3976 Quantum Algebra +1304.5144 Group Theory +1304.7455 +1304.7885 Phenomenology +1304.7904 Theory +1305.1500 Theory +1305.3423 Instrumentation and Detectors +1305.5307 Phenomenology +1306.0341 Differential Geometry +1307.6415 +1308.3030 Representation Theory +1308.4939 Probability +1309.3394 +1310.1358 +1310.2378 Combinatorics +1310.2802 Dynamical Systems +1312.0271 Metric Geometry +1312.2081 Combinatorics +1312.3627 Theory +1312.4954 Strongly Correlated Electrons +1312.5415 Theory +1312.7207 Phenomenology +1401.0169 Combinatorics +1401.0171 Combinatorics +1401.0813 Phenomenology +1401.1029 Algebraic Topology +1401.1854 Algebraic Geometry +1401.4214 High Energy Astrophysical Phenomena +1401.4737 Cosmology and Nongalactic Astrophysics +1401.6692 Algebraic Geometry +1402.0223 Differential Geometry +1402.0550 Optimization and Control +1402.5296 Group Theory +1402.6209 Differential Geometry +1402.7188 Phenomenology +1403.0174 Theory +1403.0507 Group Theory +1403.2304 Group Theory +1403.2564 Group Theory +1403.4772 Lattice +1403.5131 Differential Geometry +1403.7629 Phenomenology +1404.2719 Differential Geometry +1404.5228 Chemical Physics +1405.6067 +1406.1967 Numerical Analysis +1406.2549 Phenomenology +1406.2900 Theory +1406.3607 Number Theory +1406.5892 Rings and Algebras +1406.6023 Theory +1406.6259 Logic in Computer Science +1406.7833 Classical Analysis and ODEs +1407.0198 Representation Theory +1407.2328 Phenomenology +1407.2507 Representation Theory +1407.2526 +1408.0386 Instrumentation and Detectors +1408.0668 Geometric Topology +1408.1030 +1408.4462 Phenomenology +1408.5535 Numerical Analysis +1408.6318 Theory +1408.6856 Numerical Analysis +1409.2858 Cosmology and Nongalactic Astrophysics +1409.3334 Phenomenology +1409.5931 Combinatorics +1409.7172 Materials Science +1409.8183 Optimization and Control +1409.8436 Theory +1409.8472 Phenomenology +1410.2114 Differential Geometry +1410.2386 Computer Vision and Pattern Recognition +1410.5037 Logic in Computer Science +1410.7476 Solar and Stellar Astrophysics +1410.7572 Analysis of PDEs +1411.1814 +1411.3057 +1411.3352 Classical Analysis and ODEs +1411.7258 +1412.0194 Instrumentation and Detectors +1412.2350 Theory +1412.5281 Theory +1412.6543 Strongly Correlated Electrons +1412.6880 Instrumentation and Detectors +1412.8699 Computers and Society +1501.05526 Numerical Analysis +1501.05713 Phenomenology +1501.06991 +1502.00103 High Energy Astrophysical Phenomena +1502.00385 +1502.00715 Phenomenology +1502.01809 Lattice +1502.04036 +1502.04786 Differential Geometry +1502.05451 Commutative Algebra +1502.06206 Phenomenology +1502.06449 Methodology +1503.00494 Combinatorics +1503.03054 Solar and Stellar Astrophysics +1503.03376 Combinatorics +1503.08536 Quantum Algebra +1503.08578 Theory +1504.01039 Distributed, Parallel, and Cluster Computing +1504.01829 Combinatorics +1504.03532 Theory +1504.04191 Theory +1504.05024 Quantum Gases +1504.07887 Algebraic Geometry +1504.08025 Learning +1505.00032 +1505.00131 Theory +1505.00202 Methodology +1505.01218 Materials Science +1505.01236 High Energy Astrophysical Phenomena +1505.03630 Experiment +1505.04395 Probability +1505.05090 Cryptography and Security +1505.05561 Machine Learning +1505.06146 Computational Complexity +1505.06244 +1505.07335 Molecular Networks +1505.07663 Atomic Physics +1506.02388 +1506.02476 +1506.03174 Geometric Topology +1506.04390 Theory +1506.05242 Numerical Analysis +1506.05582 Theory +1506.08503 Cryptography and Security +1506.08505 Distributed, Parallel, and Cluster Computing +1506.08506 Databases +1506.08590 Representation Theory +1507.00555 Geometric Topology +1507.00558 +1507.01239 Learning +1507.02357 Distributed, Parallel, and Cluster Computing +1507.04127 Phenomenology +1507.05560 +1508.01308 Computer Vision and Pattern Recognition +1508.01916 Quantitative Methods +1508.01983 Computer Vision and Pattern Recognition +1508.02048 +1508.02137 +1508.03027 Phenomenology +1508.03310 Group Theory +1508.04178 Methodology +1508.04267 High Energy Astrophysical Phenomena +1508.05569 Theory +1508.07076 Systems and Control +1508.07449 Rings and Algebras +1508.07667 Mesoscale and Nanoscale Physics +1509.00528 Number Theory +1509.00784 Strongly Correlated Electrons +1509.01098 Experiment +1509.01790 Complex Variables +1509.02275 Logic +1509.02977 Phenomenology +1509.04059 Functional Analysis +1509.04323 Number Theory +1509.05126 Phenomenology +1509.05489 Instrumentation and Methods for Astrophysics +1509.05832 Fluid Dynamics +1509.06730 Theory +1509.07816 Cosmology and Nongalactic Astrophysics +1509.07964 Analysis of PDEs +1509.08056 Artificial Intelligence +1510.00212 Theory +1510.02183 Probability +1510.03701 +1510.03884 Theory +1510.04576 +1510.04634 Strongly Correlated Electrons +1510.06706 Neural and Evolutionary Computing +1510.07237 Theory +1510.08569 Chaotic Dynamics +1510.09152 High Energy Astrophysical Phenomena +1511.01635 Optimization and Control +1511.03696 Astrophysics of Galaxies +1511.03880 Soft Condensed Matter +1511.03987 Plasma Physics +1511.04135 Quantum Algebra +1511.04188 Analysis of PDEs +1511.04897 Cryptography and Security +1511.05056 Applications +1511.05665 Optimization and Control +1511.05922 Quantum Gases +1511.06540 Statistics Theory +1511.06955 History and Philosophy of Physics +1511.07760 Mesoscale and Nanoscale Physics +1511.08328 Statistical Mechanics +1511.08677 Statistics Theory +1511.08999 Logic in Computer Science +1511.09239 Optics +1512.00014 High Energy Astrophysical Phenomena +1512.00400 Astrophysics of Galaxies +1512.01334 Theory +1512.01663 Complex Variables +1512.02422 +1512.02530 Theory +1512.02857 Statistics Theory +1512.03207 Programming Languages +1512.04000 +1512.04280 Computation and Language +1512.04355 Mesoscale and Nanoscale Physics +1512.05104 History and Overview +1512.05611 Phenomenology +1512.06179 Superconductivity +1512.06484 Theory +1512.06529 Analysis of PDEs +1512.06571 Disordered Systems and Neural Networks +1512.07364 Cosmology and Nongalactic Astrophysics +1512.08419 Information Theory +1512.09119 Theory +1512.09163 Human-Computer Interaction +1512.09178 Populations and Evolution +1601.00563 +1601.00996 Mesoscale and Nanoscale Physics +1601.01403 Phenomenology +1601.01561 Numerical Analysis +1601.02075 Systems and Control +1601.02096 Differential Geometry +1601.02426 High Energy Astrophysical Phenomena +1601.02901 Accelerator Physics +1601.05218 Information Theory +1601.05290 Analysis of PDEs +1601.07140 Computer Vision and Pattern Recognition +1601.07217 High Energy Astrophysical Phenomena +1601.07255 Computer Vision and Pattern Recognition +1601.07719 Plasma Physics +1602.00171 Materials Science +1602.00402 Instrumentation and Methods for Astrophysics +1602.00694 Mesoscale and Nanoscale Physics +1602.01304 Symbolic Computation +1602.01956 Data Structures and Algorithms +1602.01979 +1602.01994 Phenomenology +1602.02426 Social and Information Networks +1602.02691 Statistical Mechanics +1602.03840 +1602.04062 Optimization and Control +1602.04256 Databases +1602.04662 Mathematical Finance +1602.05504 Category Theory +1602.06226 Algebraic Geometry +1602.06238 Neurons and Cognition +1602.06786 Theory +1602.07657 Materials Science +1602.08219 Complex Variables +1602.08315 Analysis of PDEs +1602.08319 Analysis of PDEs +1602.08653 Discrete Mathematics +1602.08861 Applications +1602.09032 Algebraic Geometry +1603.00156 Statistical Mechanics +1603.00223 Computation and Language +1603.00519 Atomic and Molecular Clusters +1603.00849 +1603.01756 Phenomenology +1603.01977 Computational Complexity +1603.01995 Theory +1603.02075 Optimization and Control +1603.02212 Probability +1603.04783 Biological Physics +1603.04988 Astrophysics of Galaxies +1603.05126 Dynamical Systems +1603.06310 Theory +1603.06430 Learning +1603.06582 High Energy Astrophysical Phenomena +1603.06637 Lattice +1603.07508 +1603.07795 Theory +1603.08117 Theory +1603.08787 Soft Condensed Matter +1603.09229 Phenomenology +1603.09249 +1603.09708 Astrophysics of Galaxies +1604.01892 Mesoscale and Nanoscale Physics +1604.02108 Instrumentation and Methods for Astrophysics +1604.02590 Materials Science +1604.02906 Discrete Mathematics +1604.03285 Phenomenology +1604.03628 Computer Vision and Pattern Recognition +1604.03673 +1604.04013 Performance +1604.04510 Theory +1604.04653 Computer Vision and Pattern Recognition +1604.04773 Solar and Stellar Astrophysics +1604.04857 Theory +1604.05423 Solar and Stellar Astrophysics +1604.05592 Computer Vision and Pattern Recognition +1604.05851 Strongly Correlated Electrons +1604.06776 History and Philosophy of Physics +1604.06920 +1604.07063 Computational Complexity +1604.07380 Representation Theory +1604.07666 Computer Vision and Pattern Recognition +1604.07683 Algebraic Geometry +1604.08072 Phenomenology +1604.08191 Computer Science and Game Theory +1604.08572 Classical Physics +1605.00730 Probability +1605.01532 Phenomenology +1605.01553 Astrophysics of Galaxies +1605.02611 Chemical Physics +1605.02621 Statistics Theory +1605.03378 Methodology +1605.03759 +1605.04045 Materials Science +1605.04184 Information Theory +1605.04515 Computation and Language +1605.05134 Social and Information Networks +1605.05150 Computation and Language +1605.05156 Computation and Language +1605.05166 Social and Information Networks +1605.05655 +1605.05853 Subcellular Processes +1605.06550 Phenomenology +1605.06896 Analysis of PDEs +1605.07773 Combinatorics +1605.08228 Neurons and Cognition +1605.08415 Disordered Systems and Neural Networks +1605.09044 Number Theory +1606.00082 +1606.00715 Social and Information Networks +1606.00861 Symplectic Geometry +1606.02636 Mesoscale and Nanoscale Physics +1606.02756 Phenomenology +1606.02878 Computers and Society +1606.02911 Computers and Society +1606.02953 General Physics +1606.03163 +1606.03415 Phenomenology +1606.03610 Soft Condensed Matter +1606.03789 Number Theory +1606.03895 Functional Analysis +1606.04074 Hardware Architecture +1606.04097 +1606.04117 Quantum Gases +1606.04137 Combinatorics +1606.04294 Classical Analysis and ODEs +1606.04340 Optics +1606.04438 Fluid Dynamics +1606.04498 +1606.04611 Number Theory +1606.04787 Dynamical Systems +1606.04942 Astrophysics of Galaxies +1606.05176 Quantum Gases +1606.05328 Computer Vision and Pattern Recognition +1606.05330 Logic +1606.05424 Quantum Algebra +1606.05596 Machine Learning +1606.05658 Applications +1606.05660 Formal Languages and Automata Theory +1606.05663 Mesoscale and Nanoscale Physics +1606.05666 Other Computer Science +1606.05668 Analysis of PDEs +1606.05672 Machine Learning +1606.05675 Computer Vision and Pattern Recognition +1606.05681 Computer Vision and Pattern Recognition +1606.05684 Soft Condensed Matter +1606.05687 Statistics Theory +1606.05688 Distributed, Parallel, and Cluster Computing +1606.05689 Data Structures and Algorithms +1606.05690 Computers and Society +1606.05691 Computer Science and Game Theory +1606.05693 Machine Learning +1606.05694 Computation and Language +1606.05697 Phenomenology +1606.05698 Instrumentation and Detectors +1606.05699 Computation and Language +1606.05700 Probability +1606.05701 Logic +1606.05702 Computation and Language +1606.05704 Computation and Language +1606.05705 Information Retrieval +1606.05706 Computation and Language +1606.05708 Databases +1606.05709 Differential Geometry +1606.05711 Optics +1606.05712 Superconductivity +1606.05714 Earth and Planetary Astrophysics +1606.05717 +1606.05718 Quantitative Methods +1606.05720 Information Theory +1606.05722 Number Theory +1606.05725 Learning +1606.05727 Materials Science +1606.05729 Robotics +1606.05730 Social and Information Networks +1606.05731 Soft Condensed Matter +1606.05732 Data Structures and Algorithms +1606.05733 Mesoscale and Nanoscale Physics +1606.05736 Functional Analysis +1606.05739 Instrumentation and Detectors +1606.05740 Medical Physics +1606.05742 Fluid Dynamics +1606.05744 Analysis of PDEs +1606.05746 Software Engineering +1606.05749 Networking and Internet Architecture +1606.05750 Logic +1606.05751 Solar and Stellar Astrophysics +1606.05752 Digital Libraries +1606.05753 Computers and Society +1606.05756 Materials Science +1606.05757 Dynamical Systems +1606.05759 Computation and Language +1606.05761 Differential Geometry +1606.05763 Computer Vision and Pattern Recognition +1606.05768 Networking and Internet Architecture +1606.05771 Methodology +1606.05773 Instrumentation and Detectors +1606.05774 Differential Geometry +1606.05778 Applications +1606.05779 Number Theory +1606.05781 Databases +1606.05783 Soft Condensed Matter +1606.05785 Computer Vision and Pattern Recognition +1606.05786 Physics and Society +1606.05787 Databases +1606.05788 Instrumentation and Detectors +1606.05789 Materials Science +1606.05792 Probability +1606.05793 Atmospheric and Oceanic Physics +1606.05798 Machine Learning +1606.05801 Numerical Analysis +1606.05803 Optimization and Control +1606.05806 Systems and Control +1606.05807 Group Theory +1606.05809 Information Theory +1606.05814 Computer Vision and Pattern Recognition +1606.05816 Probability +1606.05817 +1606.05819 Machine Learning +1606.05820 Logic in Computer Science +1606.05829 Computation and Language +1606.05832 Computers and Society +1606.05833 History and Overview +1606.05834 Optimization and Control +1606.05836 +1606.05837 Multiagent Systems +1606.05839 Programming Languages +1606.05842 Instrumentation and Detectors +1606.05844 Sound +1606.05845 Analysis of PDEs +1606.05848 Optimization and Control +1606.05857 Probability +1606.05859 Information Retrieval +1606.05861 Optimization and Control +1606.05862 Accelerator Physics +1606.05866 +1606.05868 Analysis of PDEs +1606.05871 Complex Variables +1606.05875 Other Computer Science +1606.05876 Geometric Topology +1606.05877 Mathematical Finance +1606.05878 Optimization and Control +1606.05884 Symplectic Geometry +1606.05886 Differential Geometry +1606.05887 Networking and Internet Architecture +1606.05889 Machine Learning +1606.05891 Commutative Algebra +1606.05893 Social and Information Networks +1606.05894 +1606.05895 Spectral Theory +1606.05896 Machine Learning +1606.05897 Computer Vision and Pattern Recognition +1606.05899 Earth and Planetary Astrophysics +1606.05900 Applications +1606.05902 Differential Geometry +1606.05903 Emerging Technologies +1606.05904 Information Theory +1606.05906 Complex Variables +1606.05910 Data Structures and Algorithms +1606.05911 Dynamical Systems +1606.05915 Cryptography and Security +1606.05916 Algebraic Topology +1606.05917 Computer Science and Game Theory +1606.05918 Learning +1606.05920 Complex Variables +1606.05923 Combinatorics +1606.05924 Optimization and Control +1606.05925 Machine Learning +1606.05926 Software Engineering +1606.05927 Neural and Evolutionary Computing +1606.05931 Information Theory +1606.05932 Algebraic Geometry +1606.05933 Hardware Architecture +1606.05934 Learning +1606.05936 Logic in Computer Science +1606.05937 Distributed, Parallel, and Cluster Computing +1606.05938 Logic in Computer Science +1606.05939 Programming Languages +1606.05940 Programming Languages +1606.05941 Logic in Computer Science +1606.05942 Logic in Computer Science +1606.05943 Programming Languages +1606.05944 Programming Languages +1606.05945 Logic in Computer Science +1606.05946 Logic in Computer Science +1606.05947 Logic in Computer Science +1606.05948 Logic in Computer Science +1606.05951 Phenomenology +1606.05954 Information Theory +1606.05958 Number Theory +1606.05962 Distributed, Parallel, and Cluster Computing +1606.05963 Distributed, Parallel, and Cluster Computing +1606.05964 Functional Analysis +1606.05966 Geometric Topology +1606.05967 Computation and Language +1606.05970 General Mathematics +1606.05971 Number Theory +1606.05973 Data Structures and Algorithms +1606.05978 Information Retrieval +1606.05979 Optimization and Control +1606.05980 Systems and Control +1606.05982 Information Theory +1606.05985 +1606.05987 Optimization and Control +1606.05988 Methodology +1606.05989 Discrete Mathematics +1606.05990 Neural and Evolutionary Computing +1606.05991 Software Engineering +1606.05993 Spectral Theory +1606.05997 Theory +1606.05998 Probability +1606.06000 +1606.06007 Computer Vision and Pattern Recognition +1606.06011 Combinatorics +1606.06012 Probability +1606.06014 Optimization and Control +1606.06023 Soft Condensed Matter +1606.06024 Mesoscale and Nanoscale Physics +1606.06025 Distributed, Parallel, and Cluster Computing +1606.06026 Exactly Solvable and Integrable Systems +1606.06031 Computation and Language +1606.06033 Statistics Theory +1606.06035 Numerical Analysis +1606.06036 Emerging Technologies +1606.06037 Phenomenology +1606.06039 Information Theory +1606.06041 Artificial Intelligence +1606.06043 Probability +1606.06044 Astrophysics of Galaxies +1606.06045 Probability +1606.06047 Cryptography and Security +1606.06048 Accelerator Physics +1606.06049 Soft Condensed Matter +1606.06051 General Finance +1606.06052 Algebraic Geometry +1606.06053 Optics +1606.06056 Systems and Control +1606.06060 Analysis of PDEs +1606.06062 Disordered Systems and Neural Networks +1606.06064 Number Theory +1606.06066 Databases +1606.06067 Geometric Topology +1606.06069 Learning +1606.06070 +1606.06075 Materials Science +1606.06078 Dynamical Systems +1606.06079 General Mathematics +1606.06081 Information Retrieval +1606.06085 Algebraic Topology +1606.06086 Computation and Language +1606.06087 Accelerator Physics +1606.06088 Accelerator Physics +1606.06089 Analysis of PDEs +1606.06094 Instrumentation and Methods for Astrophysics +1606.06095 Chemical Physics +1606.06098 +1606.06102 General Topology +1606.06104 Robotics +1606.06106 +1606.06108 Computer Vision and Pattern Recognition +1606.06111 Statistical Finance +1606.06112 Cosmology and Nongalactic Astrophysics +1606.06114 Combinatorics +1606.06115 Physics and Society +1606.06116 Physics and Society +1606.06117 Computational Physics +1606.06119 Dynamical Systems +1606.06121 Computation and Language +1606.06122 Number Theory +1606.06123 Emerging Technologies +1606.06127 Computer Vision and Pattern Recognition +1606.06128 Complex Variables +1606.06129 Computers and Society +1606.06130 Methodology +1606.06131 +1606.06133 Distributed, Parallel, and Cluster Computing +1606.06136 Computers and Society +1606.06137 Information Retrieval +1606.06138 Differential Geometry +1606.06140 Social and Information Networks +1606.06141 Theory +1606.06143 Computational Finance +1606.06146 Populations and Evolution +1606.06149 Classical Analysis and ODEs +1606.06150 +1606.06152 Multimedia +1606.06153 Atomic Physics +1606.06154 Computational Engineering, Finance, and Science +1606.06155 Classical Analysis and ODEs +1606.06158 Functional Analysis +1606.06162 Physics and Society +1606.06163 +1606.06170 +1606.06173 Number Theory +1606.06177 Computers and Society +1606.06180 +1606.06187 Materials Science +1606.06190 Functional Analysis +1606.06192 Materials Science +1606.06195 Materials Science +1606.06201 Optimization and Control +1606.06209 Phenomenology +1606.06210 K-Theory and Homology +1606.06213 Analysis of PDEs +1606.06217 Mesoscale and Nanoscale Physics +1606.06223 Information Theory +1606.06224 Systems and Control +1606.06228 Combinatorics +1606.06234 Learning +1606.06236 Solar and Stellar Astrophysics +1606.06243 Earth and Planetary Astrophysics +1606.06249 Quantitative Methods +1606.06250 Learning +1606.06251 Probability +1606.06253 Dynamical Systems +1606.06254 +1606.06256 Optimization and Control +1606.06257 Networking and Internet Architecture +1606.06258 Sound +1606.06261 Analysis of PDEs +1606.06262 Chemical Physics +1606.06263 Combinatorics +1606.06265 Combinatorics +1606.06266 Computer Vision and Pattern Recognition +1606.06268 Cosmology and Nongalactic Astrophysics +1606.06273 Cosmology and Nongalactic Astrophysics +1606.06274 Computation and Language +1606.06275 Combinatorics +1606.06279 Computers and Society +cond-mat/9911333 Mesoscale and Nanoscale Physics +cs/0404030 Artificial Intelligence +0807.1793 General Mathematics +0906.2994 Representation Theory +0908.2516 Combinatorics +0911.4494 Algebraic Geometry +1006.0732 Classical Analysis and ODEs +1009.0146 Number Theory +1010.4691 Probability +1102.2065 Combinatorics +1103.5259 Probability +1110.1533 Complex Variables +1110.3290 General Physics +1203.3991 +1209.4150 Probability +1301.1180 Probability +1303.6539 General Physics +1304.5547 Functional Analysis +1307.5220 +1308.2927 Statistics Theory +1308.5429 Cosmology and Nongalactic Astrophysics +1308.5936 Differential Geometry +1309.3873 Probability +1310.8240 Statistics Theory +1311.0021 Probability +1311.1067 Statistics Theory +1311.3118 Statistics Theory +1312.0623 +1312.6418 Number Theory +1312.7390 Probability +1401.8104 Statistics Theory +1402.7243 Numerical Analysis +1403.7447 Complex Variables +1404.2822 Probability +1404.4747 Statistical Mechanics +1405.5491 Group Theory +1406.0416 Neural and Evolutionary Computing +1407.6870 Combinatorics +1408.0938 Statistics Theory +1409.4604 Rings and Algebras +1409.8491 Statistics Theory +1410.3330 Biological Physics +1411.1512 Rings and Algebras +1411.3058 Algebraic Geometry +1411.3575 Information Theory +1412.1716 Methodology +1412.3985 Operator Algebras +1412.6465 +1501.00448 Quantum Gases +1501.05255 K-Theory and Homology +1501.06002 Optics +1501.06874 Analysis of PDEs +1502.00169 Combinatorics +1502.01815 Networking and Internet Architecture +1502.04633 Combinatorics +1502.07061 Statistics Theory +1502.07596 Instrumentation and Methods for Astrophysics +1503.00051 Biological Physics +1503.05347 Algebraic Topology +1505.00374 Strongly Correlated Electrons +1505.01879 +1505.02492 Populations and Evolution +1505.02565 +1505.02602 Soft Condensed Matter +1505.05821 Information Retrieval +1505.07763 Functional Analysis +1506.02741 +1506.05451 Functional Analysis +1506.06150 Cosmology and Nongalactic Astrophysics +1506.07152 Systems and Control +1506.08190 Superconductivity +1506.08514 Probability +1506.08709 Materials Science +1507.00186 Quantum Gases +1507.00203 Soft Condensed Matter +1507.00240 +1507.03239 Pattern Formation and Solitons +1507.04791 Plasma Physics +1507.04847 Mesoscale and Nanoscale Physics +1507.06517 Applications +1507.06574 Mesoscale and Nanoscale Physics +1507.08725 Strongly Correlated Electrons +1508.00284 Operator Algebras +1508.00795 Soft Condensed Matter +1508.03078 Strongly Correlated Electrons +1508.05729 Strongly Correlated Electrons +1508.06050 Strongly Correlated Electrons +1509.00743 Mesoscale and Nanoscale Physics +1509.02023 Computer Science and Game Theory +1509.03748 Algebraic Topology +1509.04438 Neural and Evolutionary Computing +1509.06542 Systems and Control +1509.06846 +1509.08059 Experiment +1509.08398 Methodology +1510.01037 Atomic Physics +1510.03202 Dynamical Systems +1510.07264 Differential Geometry +1510.07424 Multiagent Systems +1510.07499 Computational Geometry +1510.09137 Phenomenology +1511.00781 Information Theory +1511.01233 Analysis of PDEs +1511.01836 Theory +1511.02102 Soft Condensed Matter +1511.02440 Mesoscale and Nanoscale Physics +1511.02545 Populations and Evolution +1511.06435 Learning +1511.07585 Optimization and Control +1511.07637 Information Theory +1511.08398 Atomic Physics +1511.08886 Computer Vision and Pattern Recognition +1511.08897 Number Theory +1512.00021 Theory +1512.00324 Strongly Correlated Electrons +1512.00340 Solar and Stellar Astrophysics +1512.02488 Statistical Mechanics +1512.04607 Theory +1512.05099 Experiment +1512.05224 Strongly Correlated Electrons +1512.06670 Phenomenology +1512.07395 Accelerator Physics +1512.07703 Cosmology and Nongalactic Astrophysics +1512.08356 Theory +1601.00676 Theory +1601.02014 Formal Languages and Automata Theory +1601.04866 Algebraic Geometry +1601.05037 Experiment +1601.05537 Other Condensed Matter +1601.05885 Atomic Physics +1601.06479 Superconductivity +1601.07299 Algebraic Geometry +1602.01423 Analysis of PDEs +1602.01829 Phenomenology +1602.02927 Astrophysics of Galaxies +1602.04047 +1602.05341 Materials Science +1602.05840 Materials Science +1602.06942 +1602.07070 Astrophysics of Galaxies +1602.07273 Systems and Control +1602.07444 Mesoscale and Nanoscale Physics +1602.07778 Solar and Stellar Astrophysics +1602.07850 Classical Analysis and ODEs +1602.07856 Soft Condensed Matter +1602.08074 Soft Condensed Matter +1602.08540 Information Theory +1602.08541 Cosmology and Nongalactic Astrophysics +1602.08768 Geometric Topology +1603.01402 Solar and Stellar Astrophysics +1603.01533 Optimization and Control +1603.02126 Instrumentation and Methods for Astrophysics +1603.02470 Astrophysics of Galaxies +1603.02841 Combinatorics +1603.03233 Mesoscale and Nanoscale Physics +1603.03526 Combinatorics +1603.03964 +1603.04114 Differential Geometry +1603.04141 Chemical Physics +1603.04394 Computer Science and Game Theory +1603.04434 Number Theory +1603.05195 Theory +1603.05313 Trading and Market Microstructure +1603.07691 Theory +1603.07899 Distributed, Parallel, and Cluster Computing +1603.08091 Digital Libraries +1603.08479 Number Theory +1603.08491 Networking and Internet Architecture +1603.08539 Classical Analysis and ODEs +1603.08665 +1603.08707 +1603.08916 General Mathematics +1603.08918 Space Physics +1603.08924 Cosmology and Nongalactic Astrophysics +1603.08937 Differential Geometry +1603.08946 Phenomenology +1603.08948 +1603.08956 Solar and Stellar Astrophysics +1603.08957 Cosmology and Nongalactic Astrophysics +1603.08959 Popular Physics +1603.08962 +1603.08964 Probability +1603.08965 Analysis of PDEs +1603.08966 General Physics +1603.08968 Computer Vision and Pattern Recognition +1603.08969 Applications +1603.08970 Numerical Analysis +1603.08978 Networking and Internet Architecture +1603.08979 Functional Analysis +1603.08982 Applications +1603.08984 Graphics +1603.08987 Information Theory +1603.08988 Artificial Intelligence +1603.08989 Optimization and Control +1603.08990 Phenomenology +1603.08995 Systems and Control +1603.08996 Computers and Society +1603.08997 Computational Complexity +1603.09001 Probability +1603.09002 Neural and Evolutionary Computing +1603.09005 Computation +1603.09007 Physics Education +1603.09009 Data Structures and Algorithms +1603.09011 Quantum Gases +1603.09012 Multimedia +1603.09013 Combinatorics +1603.09014 Optimization and Control +1603.09015 Materials Science +1603.09022 Systems and Control +1603.09027 Computer Vision and Pattern Recognition +1603.09028 Spectral Theory +1603.09029 Artificial Intelligence +1603.09031 Phenomenology +1603.09034 Mesoscale and Nanoscale Physics +1603.09035 Learning +1603.09036 Materials Science +1603.09037 Computer Vision and Pattern Recognition +1603.09038 Rings and Algebras +1603.09039 Geometric Topology +1603.09041 Geometric Topology +1603.09042 Logic +1603.09044 Operator Algebras +1603.09046 Computer Vision and Pattern Recognition +1603.09050 Learning +1603.09052 Information Theory +1603.09054 Computation and Language +1603.09055 Logic in Computer Science +1603.09058 Solar and Stellar Astrophysics +1603.09059 Statistics Theory +1603.09061 Mesoscale and Nanoscale Physics +1603.09062 Hardware Architecture +1603.09063 Theory +1603.09065 Computer Vision and Pattern Recognition +1603.09066 Phenomenology +1603.09068 Quantum Algebra +1603.09069 Strongly Correlated Electrons +1603.09070 Combinatorics +1603.09075 Space Physics +1603.09077 Probability +1603.09079 Dynamical Systems +1603.09080 Algebraic Geometry +1603.09081 +1603.09084 +1603.09087 +1603.09089 Optimization and Control +1603.09090 Cryptography and Security +1603.09092 Probability +1603.09093 Instrumentation and Detectors +1603.09094 Probability +1603.09096 Earth and Planetary Astrophysics +1603.09099 Complex Variables +1603.09100 Materials Science +1603.09101 Number Theory +1603.09102 Cosmology and Nongalactic Astrophysics +1603.09103 Combinatorics +1603.09104 Fluid Dynamics +1603.09110 Geometric Topology +1603.09111 Digital Libraries +1603.09113 Differential Geometry +1603.09125 Algebraic Topology +1603.09128 Computation and Language +1603.09129 Computer Vision and Pattern Recognition +1603.09130 Statistics Theory +1603.09131 Differential Geometry +1603.09132 Metric Geometry +1603.09135 Differential Geometry +1603.09138 Statistics Theory +1603.09139 Materials Science +1603.09143 Superconductivity +1603.09144 Statistics Theory +1603.09145 Statistics Theory +1603.09152 Phenomenology +1603.09153 Networking and Internet Architecture +1603.09158 Networking and Internet Architecture +1603.09163 Geometric Topology +1603.09164 Social and Information Networks +1603.09165 Operator Algebras +1603.09168 Algebraic Geometry +1603.09169 Information Theory +1603.09171 +1603.09173 Optimization and Control +1603.09176 Distributed, Parallel, and Cluster Computing +1603.09180 Distributed, Parallel, and Cluster Computing +1603.09181 Algebraic Topology +1603.09187 Combinatorics +1603.09188 Computation and Language +1603.09189 Analysis of PDEs +1603.09191 Algebraic Geometry +1603.09192 Quantum Algebra +1603.09194 Artificial Intelligence +1603.09195 Genomics +1603.09196 Logic +1603.09198 Theory +1603.09201 Mesoscale and Nanoscale Physics +1603.09205 Discrete Mathematics +1603.09208 Applications +1603.09209 Differential Geometry +1603.09212 Biological Physics +1603.09213 Algebraic Geometry +1603.09215 Mesoscale and Nanoscale Physics +1603.09218 Representation Theory +1603.09220 Analysis of PDEs +1603.09221 Geophysics +1603.09224 Classical Analysis and ODEs +1603.09231 Numerical Analysis +1603.09232 Combinatorics +1603.09233 Learning +1603.09235 Algebraic Geometry +1603.09237 Phenomenology +1603.09238 Complex Variables +1603.09247 +1603.09252 Analysis of PDEs +1603.09254 Machine Learning +1603.09255 Quantitative Methods +1603.09256 Superconductivity +1603.09258 Systems and Control +1603.09259 Differential Geometry +1603.09262 Algebraic Geometry +1603.09264 Theory +1603.09266 Category Theory +1603.09267 Algebraic Geometry +1603.09269 Differential Geometry +1603.09270 Cosmology and Nongalactic Astrophysics +1603.09271 History and Philosophy of Physics +1603.09273 Optimization and Control +1603.09276 High Energy Astrophysical Phenomena +1603.09277 Atomic Physics +1603.09281 Combinatorics +1603.09284 Algebraic Geometry +1603.09285 Metric Geometry +1603.09286 Logic in Computer Science +1603.09288 Group Theory +1603.09290 Programming Languages +1603.09292 Analysis of PDEs +1603.09293 Chemical Physics +1603.09297 Applications +1603.09304 Dynamical Systems +1603.09305 Algebraic Topology +1603.09309 Dynamical Systems +1603.09311 Geophysics +1603.09313 Physics and Society +1603.09314 +1603.09316 Optics +1603.09321 Materials Science +1603.09329 Probability +gr-qc/0312049 +physics/0604204 Classical Physics +0910.2755 +1106.0425 Rings and Algebras +1109.6109 Theory +1111.3555 Atomic Physics +1210.2542 Number Theory +1301.7116 History and Overview +1302.6116 Differential Geometry +1303.6632 Phenomenology +1305.6061 Optimization and Control +1312.2110 Astrophysics of Galaxies +1402.3007 +1404.0298 Information Theory +1404.4076 +1405.6118 Theory +1406.2510 Rings and Algebras +1406.3898 +1406.5956 Algebraic Geometry +1407.0581 Machine Learning +1408.3464 Probability +1409.5616 Learning +1410.4958 Mesoscale and Nanoscale Physics +1410.7497 Rings and Algebras +1411.4240 Functional Analysis +1412.3213 Analysis of PDEs +1412.5098 Representation Theory +1412.5654 Algebraic Geometry +1412.6085 Combinatorics +1501.00166 Cryptography and Security +1501.04615 Probability +1501.06479 Distributed, Parallel, and Cluster Computing +1501.06929 Machine Learning +1501.07071 +1502.00797 Computers and Society +1502.02086 Optics +1503.00184 Networking and Internet Architecture +1503.00194 +1503.01648 Probability +1503.02114 +1503.05228 Analysis of PDEs +1503.05914 Physics and Society +1504.04834 Astrophysics of Galaxies +1504.05391 Solar and Stellar Astrophysics +1505.00767 Combinatorics +1505.04912 Theory +1505.05971 Phenomenology +1505.06156 Mesoscale and Nanoscale Physics +1505.06520 Experiment +1506.01145 Differential Geometry +1506.02247 Computer Vision and Pattern Recognition +1506.02285 Numerical Analysis +1506.02474 Functional Analysis +1506.04972 Optimization and Control +1506.05217 Cryptography and Security +1506.08423 Analysis of PDEs +1507.02470 Experiment +1507.03119 Experiment +1507.03743 Materials Science +1507.04881 Computational Physics +1507.05727 Pattern Formation and Solitons +1507.06384 Materials Science +1507.06571 Fluid Dynamics +1507.07752 Algebraic Topology +1508.01429 +1508.03176 Experiment +1508.05396 Phenomenology +1508.07806 +1509.01851 Learning +1509.03114 Chemical Physics +1509.03139 Statistical Mechanics +1509.03353 Information Theory +1509.03780 Differential Geometry +1509.06187 +1509.08448 Theory +1510.00325 Analysis of PDEs +1510.01438 Mesoscale and Nanoscale Physics +1510.01459 Probability +1510.01508 Phenomenology +1510.04279 Other Condensed Matter +1510.05845 Phenomenology +1510.06609 Instrumentation and Methods for Astrophysics +1510.07253 Logic in Computer Science +1510.08568 Neural and Evolutionary Computing +1511.00288 +1511.02612 Data Structures and Algorithms +1511.02947 Chemical Physics +1511.03335 +1511.03808 Analysis of PDEs +1511.05044 Quantum Gases +1511.05626 Atomic and Molecular Clusters +1511.08070 Number Theory +1511.09161 Theory +1512.00022 Phenomenology +1512.00097 Algebraic Geometry +1512.00304 +1512.01147 Analysis of PDEs +1512.02933 Superconductivity +1512.03171 Dynamical Systems +1512.03330 High Energy Astrophysical Phenomena +1512.03813 Phenomenology +1512.04296 Functional Analysis +1512.05152 Computational Geometry +1512.05236 Mesoscale and Nanoscale Physics +1512.06190 Probability +1512.06268 Astrophysics of Galaxies +1512.06921 Number Theory +1512.07038 Multiagent Systems +1512.07778 Computational Physics +1512.08243 Theory +1512.08256 Experiment +1512.08813 Instrumentation and Methods for Astrophysics +1601.00404 Number Theory +1601.03904 Phenomenology +1601.05333 Superconductivity +1602.00216 Machine Learning +1602.01765 Cosmology and Nongalactic Astrophysics +1602.02499 Machine Learning +1602.02801 Combinatorics +1602.03903 Computer Vision and Pattern Recognition +1602.04144 Mesoscale and Nanoscale Physics +1602.06688 Data Structures and Algorithms +1602.07172 Instrumentation and Detectors +1602.07818 Theory +1602.08962 +1603.02449 Differential Geometry +1603.02820 +1603.04973 Superconductivity +1603.06040 Functional Analysis +1603.06265 Learning +1603.06741 Instrumentation and Detectors +1603.06899 +1603.07532 Applications +1603.08423 Probability +1603.08442 Classical Analysis and ODEs +1603.08772 Superconductivity +1603.08998 Chemical Physics +1603.09327 Computational Physics +1603.09485 Dynamical Systems +1603.09686 +1604.00083 Logic +1604.00213 Theory +1604.00454 Information Theory +1604.00466 Computation and Language +1604.00645 Information Theory +1604.01292 Information Theory +1604.01569 Complex Variables +1604.01602 Machine Learning +1604.01649 Classical Analysis and ODEs +1604.01916 Statistical Mechanics +1604.01931 Computer Vision and Pattern Recognition +1604.01982 Chemical Physics +1604.02005 Human-Computer Interaction +1604.02038 Learning +1604.02140 +1604.02141 Phenomenology +1604.02142 Differential Geometry +1604.02152 Instrumentation and Methods for Astrophysics +1604.02153 Optimization and Control +1604.02155 Theory +1604.02158 Statistics Theory +1604.02159 Geometric Topology +1604.02165 Number Theory +1604.02166 Algebraic Geometry +1604.02170 Metric Geometry +1604.02171 Operating Systems +1604.02175 Physics and Society +1604.02177 Algebraic Topology +1604.02180 Networking and Internet Architecture +1604.02182 Computer Vision and Pattern Recognition +1604.02184 Optimization and Control +1604.02186 Earth and Planetary Astrophysics +1604.02187 Numerical Analysis +1604.02188 Data Structures and Algorithms +1604.02193 Genomics +1604.02195 Spectral Theory +1604.02201 Computation and Language +1604.02203 +1604.02208 Molecular Networks +1604.02210 +1604.02211 Superconductivity +1604.02212 Optimization and Control +1604.02215 Dynamical Systems +1604.02217 Commutative Algebra +1604.02223 Networking and Internet Architecture +1604.02228 Logic +1604.02229 Quantum Gases +1604.02231 Analysis of PDEs +1604.02232 Mesoscale and Nanoscale Physics +1604.02233 Genomics +1604.02234 Information Theory +1604.02237 Computational Finance +1604.02238 Discrete Mathematics +1604.02239 Analysis of PDEs +1604.02240 Optimization and Control +1604.02242 Combinatorics +1604.02243 Sound +1604.02244 Classical Analysis and ODEs +1604.02246 Instrumentation and Detectors +1604.02247 Atmospheric and Oceanic Physics +1604.02248 Atmospheric and Oceanic Physics +1604.02249 Optics +1604.02251 Fluid Dynamics +1604.02253 Networking and Internet Architecture +1604.02254 Instrumentation and Detectors +1604.02255 Instrumentation and Detectors +1604.02257 Computational Physics +1604.02258 Instrumentation and Detectors +1604.02262 Mesoscale and Nanoscale Physics +1604.02264 Learning +1604.02267 Numerical Analysis +1604.02268 Complex Variables +1604.02269 Mathematical Finance +1604.02274 Mathematical Finance +1604.02275 Computer Vision and Pattern Recognition +1604.02277 Cryptography and Security +1604.02278 Computational Complexity +1604.02281 +1604.02286 Instrumentation and Detectors +1604.02287 Human-Computer Interaction +1604.02288 Discrete Mathematics +1604.02291 Analysis of PDEs +1604.02292 Numerical Analysis +1604.02293 Functional Analysis +1604.02294 Probability +1604.02295 Probability +1604.02303 Discrete Mathematics +1604.02304 Differential Geometry +1604.02305 Number Theory +1604.02317 Combinatorics +1604.02320 Optics +1604.02322 Networking and Internet Architecture +1604.02323 Artificial Intelligence +1604.02325 Combinatorics +1604.02326 Chemical Physics +1604.02327 Combinatorics +1604.02330 General Physics +1604.02331 General Physics +1604.02332 General Physics +1604.02335 Methodology +1604.02339 Fluid Dynamics +1604.02342 Algebraic Geometry +1604.02343 Phenomenology +1604.02345 Fluid Dynamics +1604.02347 Information Theory +1604.02348 Algebraic Geometry +1604.02349 Commutative Algebra +1604.02352 Operator Algebras +1604.02354 Computer Vision and Pattern Recognition +1604.02355 Neural and Evolutionary Computing +1604.02356 Phenomenology +1604.02358 Computers and Society +1604.02359 +1604.02361 Number Theory +1604.02362 History and Philosophy of Physics +1604.02363 Digital Libraries +1604.02364 Computer Science and Game Theory +1604.02368 Cryptography and Security +1604.02369 Differential Geometry +1604.02370 General Finance +1604.02371 Phenomenology +1604.02375 +1604.02377 Databases +1604.02378 Quantum Algebra +1604.02380 Cryptography and Security +1604.02381 Algebraic Geometry +1604.02383 Fluid Dynamics +1604.02386 Logic in Computer Science +1604.02389 Algebraic Geometry +1604.02390 Statistics Theory +1604.02391 Solar and Stellar Astrophysics +1604.02392 Systems and Control +1604.02393 Solar and Stellar Astrophysics +1604.02395 Combinatorics +1604.02398 High Energy Astrophysical Phenomena +1604.02399 Genomics +1604.02402 Analysis of PDEs +1604.02403 Neurons and Cognition +1604.02404 Neurons and Cognition +1604.02405 Geometric Topology +1604.02406 Classical Physics +1604.02407 Analysis of PDEs +1604.02408 Soft Condensed Matter +1604.02417 Dynamical Systems +1604.02422 Algebraic Geometry +1604.02425 Analysis of PDEs +1604.02429 Mesoscale and Nanoscale Physics +1604.02430 Functional Analysis +1604.02431 High Energy Astrophysical Phenomena +1604.02434 Materials Science +1604.02436 Spectral Theory +1604.02437 Dynamical Systems +1604.02438 Materials Science +1604.02442 Information Theory +dg-ga/9503001 Differential Geometry +dg-ga/9505004 Differential Geometry +dg-ga/9707001 Differential Geometry +math-ph/0402030 +math-ph/0412004 +math-ph/0506003 +math-ph/9904007 +math-ph/9904008 +math-ph/9907007 +math/0211090 Logic +math/0608423 Representation Theory +math/9805040 Differential Geometry +1512.08042 Fluid Dynamics +0706.2553 Phenomenology +0708.2167 Phenomenology +0709.1576 Geometric Topology +0801.2422 +0805.1301 Statistics Theory +0806.2552 Chaotic Dynamics +0809.0786 Combinatorics +0906.4873 Commutative Algebra +0911.3517 Geometric Topology +0912.4450 Disordered Systems and Neural Networks +1001.2343 Dynamical Systems +1105.3164 Dynamical Systems +1106.0979 +1106.4165 Group Theory +1106.5968 Commutative Algebra +1107.3548 Dynamical Systems +1112.4824 Analysis of PDEs +1201.0190 Differential Geometry +1201.2591 Commutative Algebra +1202.4042 Algebraic Geometry +1202.6499 Strongly Correlated Electrons +1203.4252 Dynamical Systems +1204.1317 Probability +1204.6613 Analysis of PDEs +1206.0831 Analysis of PDEs +1207.5003 Dynamical Systems +1210.5399 +1210.6727 Analysis of PDEs +1211.4636 Probability +1212.3426 Commutative Algebra +1301.1998 Dynamical Systems +1301.4191 Theory +1301.7187 Neurons and Cognition +1302.4132 Dynamical Systems +1302.4391 Computational Engineering, Finance, and Science +1302.5571 Dynamical Systems +1303.4079 Algebraic Geometry +1303.4437 Representation Theory +1305.3449 +1305.4700 Combinatorics +1307.4029 Commutative Algebra +1308.5725 Probability +1310.4224 Statistical Mechanics +1311.2180 Dynamical Systems +1311.5407 Differential Geometry +1312.3651 Analysis of PDEs +1401.1637 Strongly Correlated Electrons +1401.4411 Strongly Correlated Electrons +1402.4736 Dynamical Systems +1402.6081 Computational Physics +1403.4016 Functional Analysis +1403.5535 Number Theory +1403.7805 Group Theory +1404.0995 Metric Geometry +1404.6785 Systems and Control +1405.6954 Analysis of PDEs +1405.7889 Quantum Algebra +1406.0327 Differential Geometry +1406.0421 Representation Theory +1406.3215 Metric Geometry +1406.6932 +1407.5124 Strongly Correlated Electrons +1407.5407 Software Engineering +1407.6963 +1407.7994 Representation Theory +1407.8048 Mesoscale and Nanoscale Physics +1408.5109 Molecular Networks +1408.5683 Operator Algebras +1408.6471 Probability +1409.2558 Optimization and Control +1409.4091 Dynamical Systems +1409.4918 +1410.6433 Data Structures and Algorithms +1410.7536 Pattern Formation and Solitons +1410.8627 Differential Geometry +1411.0483 Functional Analysis +1411.5818 Algebraic Geometry +1411.7729 Functional Analysis +1412.2404 Learning +1412.3828 +1412.4114 Differential Geometry +1501.04669 Analysis of PDEs +1502.00590 Rings and Algebras +1502.03229 Differential Geometry +1502.04046 Probability +1502.05324 Analysis of PDEs +1502.05533 Computational Complexity +1502.05553 Algebraic Geometry +1503.00133 +1503.02935 Systems and Control +1503.04355 +1503.05527 Theory +1503.06379 Information Theory +1503.08481 Optimization and Control +1503.08879 Phenomenology +1504.02407 Solar and Stellar Astrophysics +1504.05033 +1505.01708 Probability +1505.01909 Pattern Formation and Solitons +1505.02242 Quantum Gases +1505.02359 Differential Geometry +1505.02983 Discrete Mathematics +1505.05422 Dynamical Systems +1505.06125 Learning +1505.07496 Superconductivity +1506.02216 Learning +1506.03124 Medical Physics +1506.03680 Materials Science +1506.04831 +1506.06754 Strongly Correlated Electrons +1506.08449 Numerical Analysis +1507.01335 Cosmology and Nongalactic Astrophysics +1507.02223 Quantum Gases +1507.03267 Optics +1507.04808 Computation and Language +1507.05669 +1507.05956 Artificial Intelligence +1508.00173 Rings and Algebras +1508.01577 Computation and Language +1508.01705 Phenomenology +1508.03024 Astrophysics of Galaxies +1508.03959 Systems and Control +1508.05813 Commutative Algebra +1508.07621 Statistical Mechanics +1509.00515 +1509.01702 Number Theory +1509.01784 Instrumentation and Methods for Astrophysics +1509.03818 Optimization and Control +1509.05295 Mesoscale and Nanoscale Physics +1509.06222 Phenomenology +1509.06687 Algebraic Geometry +1509.08032 Mesoscale and Nanoscale Physics +1510.00041 Computation +1510.01490 Computer Vision and Pattern Recognition +1510.01845 Commutative Algebra +1510.02358 Computation and Language +1510.02824 Data Structures and Algorithms +1510.03820 Computation and Language +1510.05117 Combinatorics +1510.07554 Optics +1510.07844 Statistical Mechanics +1510.08472 Astrophysics of Galaxies +1510.08905 +1510.09199 Theory +1511.01702 +1511.01845 Biological Physics +1511.02252 Soft Condensed Matter +1511.02601 Materials Science +1511.02606 Materials Science +1511.02675 Superconductivity +1511.02809 Analysis of PDEs +1511.03178 Strongly Correlated Electrons +1511.03393 +1511.03653 Theory +1511.03683 Computation and Language +1511.04298 Combinatorics +1511.07763 Computer Vision and Pattern Recognition +1511.08769 Statistical Mechanics +1511.09214 +1511.09312 Materials Science +1511.09413 Information Theory +1512.01168 Combinatorics +1512.01652 Theory +1512.02787 Mesoscale and Nanoscale Physics +1512.03052 Theory +1512.03384 Computer Vision and Pattern Recognition +1512.05651 History and Philosophy of Physics +1512.05989 Plasma Physics +1512.06570 Materials Science +1512.07986 Mesoscale and Nanoscale Physics +1601.00039 Operator Algebras +1601.00134 Theory +1601.00188 +1601.03489 Probability +1601.04582 Atomic Physics +1601.06127 Disordered Systems and Neural Networks +1601.06272 Atmospheric and Oceanic Physics +1601.06468 Information Theory +1601.07098 Mesoscale and Nanoscale Physics +1601.07302 Mesoscale and Nanoscale Physics +1601.07364 Fluid Dynamics +1602.00354 Machine Learning +1602.00447 Data Structures and Algorithms +1602.00478 Populations and Evolution +1602.02686 Superconductivity +1602.04254 Algebraic Geometry +1602.05226 +1602.05834 Data Analysis, Statistics and Probability +1602.05892 Solar and Stellar Astrophysics +1602.05975 Multimedia +1602.06051 Geometric Topology +1602.06627 Computational Complexity +1602.08486 Neurons and Cognition +1603.01186 Solar and Stellar Astrophysics +1603.01360 Computation and Language +1603.01609 Dynamical Systems +1603.02294 Astrophysics of Galaxies +1603.04107 Probability +1603.04709 Dynamical Systems +1603.05227 Soft Condensed Matter +1603.05350 Computation and Language +1603.05443 Instrumentation and Methods for Astrophysics +1603.06932 Analysis of PDEs +1603.07484 Logic in Computer Science +1603.08458 Computation and Language +1603.08928 Earth and Planetary Astrophysics +1603.08972 Soft Condensed Matter +1603.08980 Algebraic Geometry +1603.09045 Machine Learning +1603.09458 Statistics Theory +1603.09535 Data Structures and Algorithms +1603.09702 Probability +1604.00111 Databases +1604.00615 +1604.00646 Astrophysics of Galaxies +1604.01155 Algebraic Geometry +1604.01349 Quantum Gases +1604.01472 Statistics Theory +1604.01560 Computational Complexity +1604.01589 Spectral Theory +1604.01662 Machine Learning +1604.01673 Logic in Computer Science +1604.01685 Computer Vision and Pattern Recognition +1604.01743 Functional Analysis +1604.01757 Group Theory +1604.01758 Operator Algebras +1604.01760 General Mathematics +1604.01762 General Mathematics +1604.01769 High Energy Astrophysical Phenomena +1604.01780 Superconductivity +1604.01785 Methodology +1604.01787 Computer Vision and Pattern Recognition +1604.01790 +1604.01791 Materials Science +1604.01793 +1604.01797 Human-Computer Interaction +1604.01798 +1604.01800 Optics +1604.01801 Optics +1604.01803 Fluid Dynamics +1604.01806 Learning +1604.01807 +1604.01810 Functional Analysis +1604.01812 Geometric Topology +1604.01815 Materials Science +1604.01816 Earth and Planetary Astrophysics +1604.01819 Economics +1604.01821 Materials Science +1604.01828 Systems and Control +1604.01830 Cosmology and Nongalactic Astrophysics +1604.01833 Social and Information Networks +1604.01836 Analysis of PDEs +1604.01839 Data Structures and Algorithms +1604.01840 Computers and Society +1604.01841 Computer Vision and Pattern Recognition +1604.01843 +1604.01844 Methodology +1604.01846 Information Theory +1604.01848 Databases +1604.01851 Networking and Internet Architecture +1604.01852 Classical Analysis and ODEs +1604.01853 Classical Analysis and ODEs +1604.01855 Classical Analysis and ODEs +1604.01857 Classical Analysis and ODEs +1604.01860 Numerical Analysis +1604.01862 Functional Analysis +1604.01865 Representation Theory +1604.01866 Optimization and Control +1604.01868 Geometric Topology +1604.01869 Geometric Topology +1604.01871 Statistics Theory +1604.01872 Functional Analysis +1604.01873 Mesoscale and Nanoscale Physics +1604.01874 Methodology +1604.01875 Strongly Correlated Electrons +1604.01877 Atmospheric and Oceanic Physics +1604.01878 Information Theory +1604.01882 Systems and Control +1604.01886 Phenomenology +1604.01887 Combinatorics +1604.01889 Computer Vision and Pattern Recognition +1604.01890 Performance +1604.01891 Computer Vision and Pattern Recognition +1604.01894 Computer Vision and Pattern Recognition +1604.01907 Algebraic Geometry +1604.01908 Optics +1604.01910 Numerical Analysis +1604.01911 Differential Geometry +1604.01913 Number Theory +1604.01915 +1604.01919 Methodology +1604.01922 Algebraic Topology +1604.01928 Systems and Control +1604.01929 Phenomenology +1604.01930 Cosmology and Nongalactic Astrophysics +1604.01934 Combinatorics +1604.01936 Algebraic Geometry +1604.01940 Superconductivity +1604.01941 +1604.01942 Formal Languages and Automata Theory +1604.01943 Neurons and Cognition +1604.01945 +1604.01946 Learning +1604.01950 Distributed, Parallel, and Cluster Computing +1604.01952 Learning +1604.01954 +1604.01955 Machine Learning +1604.01958 Symbolic Computation +1604.01960 +1604.01961 +1604.01966 Instrumentation and Methods for Astrophysics +1604.01968 Operator Algebras +1604.01969 Probability +1604.01970 Algebraic Geometry +1604.01971 Computer Science and Game Theory +1604.01974 General Physics +1604.01976 Geometric Topology +1604.01978 Probability +1604.01979 +1604.01981 Systems and Control +1604.01983 Statistics Theory +1604.01985 Human-Computer Interaction +1604.01992 Statistics Theory +1604.01993 Metric Geometry +1604.01996 Methodology +1604.01998 Algebraic Geometry +1604.02001 Phenomenology +1604.02006 Computers and Society +1604.02013 Graphics +1604.02014 Classical Analysis and ODEs +1604.02015 Operator Algebras +1604.02016 Representation Theory +1604.02018 Methodology +1604.02020 Materials Science +1604.02028 Computers and Society +1604.02030 Computer Vision and Pattern Recognition +1604.02032 Computer Vision and Pattern Recognition +1604.02035 Information Theory +1604.02036 Number Theory +1604.02039 Differential Geometry +1604.02044 Materials Science +1604.02047 Information Theory +1604.02048 Astrophysics of Galaxies +1604.02051 Applications +1604.02052 Soft Condensed Matter +1604.02058 Information Theory +1604.02062 Cosmology and Nongalactic Astrophysics +1604.02063 Quantum Algebra +1604.02068 Materials Science +1604.02071 Information Retrieval +1604.02080 Artificial Intelligence +1604.02081 Analysis of PDEs +1604.02083 Optimization and Control +1604.02099 Quantitative Methods +1604.02104 Number Theory +1604.02105 Combinatorics +1604.02106 Atmospheric and Oceanic Physics +1604.02107 Geometric Topology +1604.02111 Numerical Analysis +1604.02115 Computer Vision and Pattern Recognition +1604.02116 Materials Science +1604.02122 Robotics +1604.02126 Artificial Intelligence +1604.02128 Cryptography and Security +1604.02130 Statistics Theory +1604.02132 Differential Geometry +1604.02133 Artificial Intelligence +1604.02137 Optimization and Control +1604.02139 Strongly Correlated Electrons +dg-ga/9709022 Differential Geometry +dg-ga/9711004 Differential Geometry +dg-ga/9712005 Differential Geometry +math/0007190 Differential Geometry +math/0106238 Differential Geometry +math/0305442 Representation Theory +math/0609530 Differential Geometry +math/9809001 Differential Geometry +math/9812125 Differential Geometry +math/9903021 Differential Geometry +0707.1913 Digital Libraries +1001.2621 +1003.2934 Atmospheric and Oceanic Physics +1003.4542 Plasma Physics +1010.1233 Soft Condensed Matter +1010.2602 Cosmology and Nongalactic Astrophysics +1101.0692 +1104.3911 Information Theory +1105.0286 Information Theory +1105.5645 High Energy Astrophysical Phenomena +1107.2143 Numerical Analysis +1110.4050 Information Theory +1110.6469 Computational Physics +1112.3331 Strongly Correlated Electrons +1203.4870 Information Theory +1206.4822 Learning +1207.4393 Information Theory +1208.3449 Computational Physics +1209.0897 Applications +1209.4994 Numerical Analysis +1210.0056 Numerical Analysis +1212.0017 Databases +1212.4295 Fluid Dynamics +1212.6630 Astrophysics of Galaxies +1302.3076 Numerical Analysis +1302.5947 Commutative Algebra +1303.5785 Genomics +1304.1770 Differential Geometry +1304.5188 Analysis of PDEs +1305.1759 Numerical Analysis +1305.3676 Computational Physics +1306.5880 Dynamical Systems +1307.0319 Statistical Mechanics +1307.1938 Solar and Stellar Astrophysics +1308.0094 Information Theory +1308.2590 Plasma Physics +1308.3082 Fluid Dynamics +1308.4605 Numerical Analysis +1309.0560 +1309.1779 Computational Complexity +1310.4555 Numerical Analysis +1310.6005 Numerical Analysis +1311.2952 Probability +1311.3574 Dynamical Systems +1312.1145 Differential Geometry +1312.7508 Plasma Physics +1401.0442 Metric Geometry +1401.4223 Adaptation and Self-Organizing Systems +1403.6087 Differential Geometry +1404.0903 Dynamical Systems +1404.3403 Computational Geometry +1405.2415 Algebraic Geometry +1405.3386 Differential Geometry +1405.4503 Analysis of PDEs +1405.7580 Probability +1406.0633 +1406.4776 Analysis of PDEs +1406.6565 Numerical Analysis +1406.6637 Algebraic Geometry +1407.0674 Numerical Analysis +1407.0906 Algebraic Geometry +1410.1103 Learning +1410.2837 Algebraic Geometry +1410.2928 +1410.3059 Logic in Computer Science +1410.7619 Information Theory +1411.4784 Plasma Physics +1412.0129 Computer Science and Game Theory +1412.2149 Methodology +1412.5988 +1412.7611 Number Theory +1501.00439 Theory +1501.01714 Phenomenology +1501.02394 Cosmology and Nongalactic Astrophysics +1501.02692 Complex Variables +1501.03896 Analysis of PDEs +1501.05019 Other Statistics +1501.05551 Solar and Stellar Astrophysics +1501.06855 +1501.07658 Information Theory +1502.00867 Combinatorics +1502.01099 Numerical Analysis +1502.02181 Classical Analysis and ODEs +1502.05446 Chaotic Dynamics +1502.05673 +1502.05857 Analysis of PDEs +1502.06290 +1502.07532 Computation +1503.00449 Strongly Correlated Electrons +1503.01868 Computer Vision and Pattern Recognition +1503.03670 Analysis of PDEs +1503.05853 General Physics +1503.06714 Systems and Control +1503.07720 Optimization and Control +1503.08217 +1503.08301 Dynamical Systems +1503.08360 Numerical Analysis +1504.00203 Information Theory +1504.01222 +1504.01515 Computer Vision and Pattern Recognition +1504.01722 Algebraic Geometry +1504.01962 Spectral Theory +1504.03727 Mesoscale and Nanoscale Physics +1504.03901 Disordered Systems and Neural Networks +1504.04049 Information Theory +1504.04071 Theory +1504.04214 Dynamical Systems +1504.05574 +1504.05851 Classical Analysis and ODEs +1504.06661 Computational Physics +1504.07555 Analysis of PDEs +1504.07952 Phenomenology +1504.07999 +1504.08137 Dynamical Systems +1505.00091 Instrumentation and Detectors +1505.00169 Optics +1505.00305 High Energy Astrophysical Phenomena +1505.01536 +1505.02105 Mesoscale and Nanoscale Physics +1505.02109 Probability +1505.02506 +1505.02700 Exactly Solvable and Integrable Systems +1505.02919 +1505.03475 Atmospheric and Oceanic Physics +1505.04101 Analysis of PDEs +1505.05966 Biological Physics +1505.07717 Information Theory +1506.01664 +1506.01721 Populations and Evolution +1506.02309 +1506.02342 Dynamical Systems +1506.03396 Cosmology and Nongalactic Astrophysics +1506.03641 Statistical Mechanics +1506.04013 Probability +1506.04055 +1506.04209 Machine Learning +1506.04462 Computational Physics +1506.05297 Systems and Control +1506.05578 Statistical Mechanics +1506.05613 Theory +1506.05924 Fluid Dynamics +1506.06096 Computer Vision and Pattern Recognition +1506.06449 Atomic Physics +1506.07274 Differential Geometry +1506.08079 +1506.08484 Probability +1506.08710 +1507.00117 +1507.00429 +1507.00490 Cosmology and Nongalactic Astrophysics +1507.00574 Disordered Systems and Neural Networks +1507.01294 Number Theory +1507.01661 Machine Learning +1507.01982 Information Theory +1507.02692 Theory +1507.03324 Chemical Physics +1507.04232 Theory +1507.04248 Materials Science +1507.05107 Physics Education +1507.05231 Analysis of PDEs +1507.06600 +1507.06655 Cosmology and Nongalactic Astrophysics +1507.07426 Atomic Physics +1507.07670 Materials Science +1507.07677 Computer Science and Game Theory +1507.07770 Geophysics +1507.07868 Atomic and Molecular Clusters +1507.07952 Soft Condensed Matter +1507.08057 Chaotic Dynamics +1507.08100 Physics and Society +1507.08302 Statistical Mechanics +1507.08364 Social and Information Networks +1507.08822 Discrete Mathematics +1507.08941 Phenomenology +1508.00549 +1508.00842 Learning +1508.00964 Information Theory +1508.01074 Analysis of PDEs +1508.04002 Fluid Dynamics +1508.04151 Fluid Dynamics +1508.05365 Fluid Dynamics +1508.05636 Exactly Solvable and Integrable Systems +1508.05793 Mesoscale and Nanoscale Physics +1508.05802 Fluid Dynamics +1508.05978 +1508.06176 Analysis of PDEs +1508.06411 Theory +1508.06718 +1508.07082 Materials Science +1508.07581 Spectral Theory +1508.07794 Mesoscale and Nanoscale Physics +1509.01139 Quantum Gases +1509.01235 +1509.01309 Theory +1509.01942 Information Theory +1509.02002 Numerical Analysis +1509.02443 General Physics +1509.02462 Probability +1509.02540 Pattern Formation and Solitons +1509.03609 Dynamical Systems +1509.04003 +1509.04952 Computational Finance +1509.05134 Cosmology and Nongalactic Astrophysics +1509.05196 Information Theory +1509.06005 +1509.06009 Combinatorics +1509.06259 Instrumentation and Detectors +1509.06284 Optics +1509.06494 Applications +1509.06556 Optics +1509.06593 Group Theory +1509.06897 Algebraic Geometry +1509.06910 +1509.07082 Soft Condensed Matter +1509.08093 Mesoscale and Nanoscale Physics +1509.08170 Mesoscale and Nanoscale Physics +1509.08252 +1509.08313 Analysis of PDEs +1509.08533 Analysis of PDEs +1509.08735 Phenomenology +1509.08901 Fluid Dynamics +1509.09042 Optics +1509.09175 Computation +1509.09231 History and Philosophy of Physics +1509.09256 Mesoscale and Nanoscale Physics +1510.00252 Information Theory +1510.00630 Number Theory +1510.01512 Phenomenology +1510.01747 Instrumentation and Detectors +1510.01821 +1510.01851 Probability +1510.01898 Probability +1510.02464 Theory +1510.02618 Quantum Gases +1510.02728 Information Theory +1510.02822 Information Theory +1510.02831 Dynamical Systems +1510.03222 Statistical Mechanics +1510.03364 +1510.03686 Pattern Formation and Solitons +1510.04234 Optics +1510.04797 Fluid Dynamics +1510.04996 Astrophysics of Galaxies +1510.05027 +1510.05484 Computer Vision and Pattern Recognition +1510.05893 Data Analysis, Statistics and Probability +1510.06767 Computer Vision and Pattern Recognition +1510.07023 Numerical Analysis +1510.07164 Mesoscale and Nanoscale Physics +1510.07316 +1510.07578 Analysis of PDEs +1510.07633 Cosmology and Nongalactic Astrophysics +1510.07914 Atomic Physics +1510.08065 Theory +1510.08261 Phenomenology +1510.08301 Information Theory +1510.08482 Phenomenology +1510.08494 Analysis of PDEs +1510.08849 High Energy Astrophysical Phenomena +1510.09112 Soft Condensed Matter +1510.09145 Plasma Physics +1511.00216 Medical Physics +1511.00307 Operator Algebras +1511.00393 Sound +1511.00598 +1511.00903 +1511.01069 +1511.01167 Fluid Dynamics +1511.01370 Theory +1511.01457 Materials Science +1511.01669 Information Theory +1511.02065 Phenomenology +1511.02118 Probability +1511.02277 Mesoscale and Nanoscale Physics +1511.02327 Numerical Analysis +1511.02588 Astrophysics of Galaxies +1511.02807 Analysis of PDEs +1511.02871 Astrophysics of Galaxies +1511.02873 Mesoscale and Nanoscale Physics +1511.03060 Astrophysics of Galaxies +1511.03411 Lattice +1511.03634 Adaptation and Self-Organizing Systems +1511.03774 Learning +1511.04047 +1511.04207 Discrete Mathematics +1511.04215 +1511.04246 Complex Variables +1511.04292 Numerical Analysis +1511.04449 Phenomenology +1511.04681 Theory +1511.04687 Computer Vision and Pattern Recognition +1511.04695 Numerical Analysis +1511.04771 Classical Analysis and ODEs +1511.04870 Numerical Analysis +1511.04879 +1511.04939 Mesoscale and Nanoscale Physics +1511.05345 Atomic Physics +1511.05501 Algebraic Geometry +1511.05656 +1511.05698 Data Analysis, Statistics and Probability +1511.05832 Solar and Stellar Astrophysics +1511.05850 Physics and Society +1511.05859 +1511.05876 Accelerator Physics +1511.06166 +1511.06199 Theory +1511.06472 Materials Science +1511.06505 Other Condensed Matter +1511.06713 Theory +1511.06799 Analysis of PDEs +1511.07492 Numerical Analysis +1511.07668 Accelerator Physics +1511.07735 Atomic Physics +1511.07918 Optimization and Control +1511.08136 Machine Learning +1511.08282 Numerical Analysis +1511.08535 Group Theory +1511.08634 Materials Science +1511.08974 +1511.09100 Differential Geometry +1511.09314 Computational Physics +1511.09395 Fluid Dynamics +1511.09421 Mesoscale and Nanoscale Physics +1512.00006 Phenomenology +1512.00464 Earth and Planetary Astrophysics +1512.00722 Plasma Physics +1512.00730 Fluid Dynamics +1512.00850 Phenomenology +1512.01073 Disordered Systems and Neural Networks +1512.01108 Cosmology and Nongalactic Astrophysics +1512.01301 +1512.01470 Number Theory +1512.01548 Theory +1512.01711 +1512.01868 Solar and Stellar Astrophysics +1512.01869 Solar and Stellar Astrophysics +1512.02024 Quantum Gases +1512.02044 Quantum Gases +1512.02572 Phenomenology +1512.02739 Instrumentation and Detectors +1512.02864 +1512.02926 Theory +1512.03126 Quantitative Methods +1512.03203 Theory +1512.03229 Strongly Correlated Electrons +1512.03553 Plasma Physics +1512.03562 Cosmology and Nongalactic Astrophysics +1512.03618 Economics +1512.03900 +1512.03943 Fluid Dynamics +1512.04102 Mesoscale and Nanoscale Physics +1512.04117 +1512.04153 Strongly Correlated Electrons +1512.04179 Mesoscale and Nanoscale Physics +1512.04415 Number Theory +1512.04461 Mesoscale and Nanoscale Physics +1512.04533 Phenomenology +1512.04595 Astrophysics of Galaxies +1512.04660 Mesoscale and Nanoscale Physics +1512.04710 Quantum Algebra +1512.04712 Optics +1512.04730 Plasma Physics +1512.04930 +1512.04982 Quantitative Methods +1512.05001 Theory +1512.05038 +1512.05081 Classical Analysis and ODEs +1512.05211 Soft Condensed Matter +1512.05243 +1512.05354 +1512.05551 +1512.05748 +1512.06053 Soft Condensed Matter +1512.06072 Theory +1512.06156 Fluid Dynamics +1512.06301 Optics +1512.06459 Numerical Analysis +1512.06727 Phenomenology +1512.06741 Phenomenology +1512.06791 Quantum Gases +1512.06807 Strongly Correlated Electrons +1512.06838 Theory +1512.06892 Spectral Theory +1512.06986 +1512.07179 Commutative Algebra +1512.07348 Accelerator Physics +1512.07456 Chemical Physics +1512.07578 Numerical Analysis +1512.07589 +1512.07920 Theory +1512.08118 Fluid Dynamics +1512.08343 Optimization and Control +1512.08581 Quantum Gases +1512.08598 Phenomenology +1512.08924 Theory +1512.08980 +1512.09177 Dynamical Systems +1601.00195 Astrophysics of Galaxies +1601.00395 Accelerator Physics +1601.00565 Phenomenology +1601.00727 +1601.00844 Pattern Formation and Solitons +1601.00886 +1601.01078 Instrumentation and Detectors +1601.01099 Exactly Solvable and Integrable Systems +1601.01124 Statistical Mechanics +1601.01321 Cosmology and Nongalactic Astrophysics +1601.01331 Materials Science +1601.01441 Analysis of PDEs +1601.01454 Phenomenology +1601.01560 Atmospheric and Oceanic Physics +1601.01570 Space Physics +1601.01726 Analysis of PDEs +1601.01847 Superconductivity +1601.02032 +1601.02123 +1601.02259 Optics +1601.02304 Applications +1601.02309 Sound +1601.02623 Strongly Correlated Electrons +1601.02747 Plasma Physics +1601.02767 Probability +1601.02953 Phenomenology +1601.03168 Materials Science +1601.03360 +1601.03476 Theory +1601.03540 Statistical Mechanics +1601.03666 Operator Algebras +1601.03745 Mesoscale and Nanoscale Physics +1601.03912 Classical Physics +1601.03932 Fluid Dynamics +1601.03977 Strongly Correlated Electrons +1601.03991 Mesoscale and Nanoscale Physics +1601.04078 Theory +1601.04151 +1601.04197 Mesoscale and Nanoscale Physics +1601.04317 Chaotic Dynamics +1601.04506 +1601.04551 Combinatorics +1601.04695 Phenomenology +1601.04741 Materials Science +1601.04770 Computer Vision and Pattern Recognition +1601.04771 +1601.04958 Theory +1601.05088 Phenomenology +1601.05145 Phenomenology +1601.05321 Materials Science +1601.05927 Information Theory +1601.05946 Phenomenology +1601.05954 +1601.05975 Mesoscale and Nanoscale Physics +1601.06005 Robotics +1601.06156 Astrophysics of Galaxies +1601.06166 +1601.06641 Accelerator Physics +1601.06824 Numerical Analysis +1601.06893 Optimization and Control +1601.06916 +1601.07185 Statistical Mechanics +1601.07372 Accelerator Physics +1601.07794 Statistical Mechanics +1601.07992 +1601.08248 Numerical Analysis +1602.00074 Numerical Analysis +1602.00153 Mesoscale and Nanoscale Physics +1602.00275 Atomic Physics +1602.00622 Earth and Planetary Astrophysics +1602.00679 Theory +1602.00846 Solar and Stellar Astrophysics +1602.01316 Instrumentation and Detectors +1602.01344 Strongly Correlated Electrons +1602.01512 Numerical Analysis +1602.01642 +1602.01681 Mesoscale and Nanoscale Physics +1602.01734 +1602.01961 Strongly Correlated Electrons +1602.01996 Combinatorics +1602.02042 +1602.02072 Numerical Analysis +1602.02107 Theory +1602.02380 Phenomenology +1602.02417 Mesoscale and Nanoscale Physics +1602.02545 Statistical Mechanics +1602.02664 Combinatorics +1602.02717 +1602.02759 Earth and Planetary Astrophysics +1602.02817 Mesoscale and Nanoscale Physics +1602.02824 High Energy Astrophysical Phenomena +1602.02855 Soft Condensed Matter +1602.03108 Fluid Dynamics +1602.03170 Mesoscale and Nanoscale Physics +1602.03232 Mesoscale and Nanoscale Physics +1602.03335 Strongly Correlated Electrons +1602.03902 Mesoscale and Nanoscale Physics +1602.03925 Solar and Stellar Astrophysics +1602.03961 Soft Condensed Matter +1602.03975 Exactly Solvable and Integrable Systems +1602.04379 Applications +1602.04439 Computation +1602.04451 +1602.04542 High Energy Astrophysical Phenomena +1602.04592 +1602.04801 Phenomenology +1602.05071 +1602.05206 Astrophysics of Galaxies +1602.05215 Mesoscale and Nanoscale Physics +1602.05218 +1602.05246 Chemical Physics +1602.05438 Phenomenology +1602.05550 Atomic Physics +1602.05595 Soft Condensed Matter +1602.05613 Theory +1602.05760 Chaotic Dynamics +1602.05802 Strongly Correlated Electrons +1602.05911 +1602.05912 Optics +1602.06059 Chaotic Dynamics +1602.06090 Strongly Correlated Electrons +1602.06517 Theory +1602.06944 Mesoscale and Nanoscale Physics +1602.06968 Trading and Market Microstructure +1602.07069 Phenomenology +1602.07148 Astrophysics of Galaxies +1602.07177 Theory +1602.07261 Computer Vision and Pattern Recognition +1602.07326 Atomic Physics +1602.07370 Analysis of PDEs +1602.07654 Chemical Physics +1602.07814 Statistical Mechanics +1602.08137 Numerical Analysis +1602.08146 Optics +1602.08188 Plasma Physics +1602.08211 Computational Physics +1602.08249 +1602.08317 Statistical Mechanics +1602.08356 Algebraic Geometry +1602.08465 Computer Vision and Pattern Recognition +1602.08546 Materials Science +1602.08550 Computational Physics +1602.08852 Phenomenology +1602.08939 Adaptation and Self-Organizing Systems +1602.09057 Theory +1602.09060 +1603.00062 Theory +1603.00099 Mesoscale and Nanoscale Physics +1603.00233 +1603.00385 Phenomenology +1603.00433 Theory +1603.00529 +1603.00609 Materials Science +1603.00723 Solar and Stellar Astrophysics +1603.00866 Mesoscale and Nanoscale Physics +1603.00946 +1603.00961 Computer Vision and Pattern Recognition +1603.00983 Solar and Stellar Astrophysics +1603.01093 Theory +1603.01142 Strongly Correlated Electrons +1603.01147 Solar and Stellar Astrophysics +1603.01176 Chemical Physics +1603.01256 Phenomenology +1603.01298 Mesoscale and Nanoscale Physics +1603.01521 Chemical Physics +1603.01540 Theory +1603.01803 Experiment +1603.01855 Learning +1603.01860 Learning +1603.01981 Phenomenology +1603.02029 +1603.02071 +1603.02616 Quantum Gases +1603.02637 Phenomenology +1603.02657 Probability +1603.02663 Phenomenology +1603.02693 Astrophysics of Galaxies +1603.02857 +1603.02951 +1603.02996 Cosmology and Nongalactic Astrophysics +1603.03015 Space Physics +1603.03052 Phenomenology +1603.03057 Theory +1603.03332 Astrophysics of Galaxies +1603.03341 Exactly Solvable and Integrable Systems +1603.03462 Theory +1603.03588 Materials Science +1603.03594 +1603.03607 +1603.03689 Theory +1603.03755 +1603.03768 Learning +1603.04030 Complex Variables +1603.04063 +1603.04157 Atomic Physics +1603.04366 Phenomenology +1603.04436 Theory +1603.04613 Computation +1603.04672 Phenomenology +1603.04676 Soft Condensed Matter +1603.04752 +1603.04794 Soft Condensed Matter +1603.04796 +1603.04846 Instrumentation and Detectors +1603.05113 +1603.05258 Theory +1603.05316 Pattern Formation and Solitons +1603.05411 Materials Science +1603.05498 Optimization and Control +1603.05552 Theory +1603.05582 Theory +1603.05590 Materials Science +1603.05652 Strongly Correlated Electrons +1603.05761 +1603.05853 Fluid Dynamics +1603.05862 Mesoscale and Nanoscale Physics +1603.05864 Functional Analysis +1603.05978 Phenomenology +1603.06032 +1603.06062 Atomic Physics +1603.06120 Materials Science +1603.06121 Computer Vision and Pattern Recognition +1603.06140 Computer Vision and Pattern Recognition +1603.06219 Other Quantitative Biology +1603.06251 Category Theory +1603.06285 Soft Condensed Matter +1603.06328 Pattern Formation and Solitons +1603.06384 Soft Condensed Matter +1603.06481 Cosmology and Nongalactic Astrophysics +1603.06529 Phenomenology +1603.06609 Phenomenology +1603.06682 Phenomenology +1603.06721 Optics +1603.06724 Quantum Gases +1603.06728 Materials Science +1603.06812 Computer Vision and Pattern Recognition +1603.06847 Statistical Mechanics +1603.06880 Instrumentation and Detectors +1603.06969 Theory +1603.07042 Solar and Stellar Astrophysics +1603.07050 Statistical Mechanics +1603.07108 +1603.07146 Optics +1603.07240 Materials Science +1603.07265 +1603.07283 Mesoscale and Nanoscale Physics +1603.07301 Optimization and Control +1603.07303 Phenomenology +1603.07411 Accelerator Physics +1603.07490 Numerical Analysis +1603.07519 Cosmology and Nongalactic Astrophysics +1603.07553 Quantum Algebra +1603.07568 High Energy Astrophysical Phenomena +1603.07769 Strongly Correlated Electrons +1603.07827 Strongly Correlated Electrons +1603.07845 Theory +1603.07955 Astrophysics of Galaxies +1603.08065 Phenomenology +1603.08107 Mesoscale and Nanoscale Physics +1603.08236 Information Theory +1603.08299 Cosmology and Nongalactic Astrophysics +1603.08319 Plasma Physics +1603.08463 Phenomenology +1603.08476 +1603.08524 Theory +1603.08659 Atomic and Molecular Clusters +1603.08692 Materials Science +1603.08829 Soft Condensed Matter +1603.08874 Soft Condensed Matter +1603.08896 Strongly Correlated Electrons +1603.08913 Phenomenology +1603.09146 Theory +1603.09174 Soft Condensed Matter +1603.09275 Group Theory +1603.09338 Phenomenology +1603.09369 Soft Condensed Matter +1603.09517 Lattice +1603.09523 Numerical Analysis +1603.09625 Theory +1603.09655 +1603.09731 Theory +1603.09745 Theory +1604.00380 Soft Condensed Matter +1604.00412 Biological Physics +1604.00443 Chemical Physics +1604.00506 Numerical Analysis +1604.00673 Fluid Dynamics +1604.00785 Soft Condensed Matter +1604.00844 Optics +1604.00871 Phenomenology +1604.01343 Instrumentation and Detectors +1604.01346 Theory +1604.01437 +1604.01453 +1604.01466 +1604.01469 Information Theory +1604.01473 Materials Science +1604.01555 +1604.01561 Theory +1604.01621 Logic +1604.01784 Classical Physics +1604.01811 Mesoscale and Nanoscale Physics +1604.01817 +1604.01827 Computer Vision and Pattern Recognition +1604.01880 Superconductivity +1604.01909 Accelerator Physics +1604.01947 Optics +1604.02072 Atomic Physics +1604.02134 Superconductivity +1604.02532 Computer Vision and Pattern Recognition +1604.02631 Statistics Theory +1604.02719 Pattern Formation and Solitons +1604.02735 Strongly Correlated Electrons +1604.03017 Phenomenology +1604.03105 Phenomenology +1604.03155 Numerical Analysis +1604.03286 Computer Vision and Pattern Recognition +1604.03327 Phenomenology +1604.03371 Optics +1604.03381 +1604.03401 Lattice +1604.03552 Theory +1604.03574 Theory +1604.03682 +1604.03685 Optics +1604.03699 Atomic Physics +1604.03855 Phenomenology +1604.03922 Instrumentation and Detectors +1604.03964 Theory +1604.04036 +1604.04077 Materials Science +1604.04086 Accelerator Physics +1604.04222 Cosmology and Nongalactic Astrophysics +1604.04388 High Energy Astrophysical Phenomena +1604.04441 Phenomenology +1604.04491 Materials Science +1604.04502 Theory +1604.04597 +1604.04627 Phenomenology +1604.04691 +1604.04763 Solar and Stellar Astrophysics +1604.04787 Soft Condensed Matter +1604.04965 Phenomenology +1604.05001 Information Theory +1604.05059 Superconductivity +1604.05098 Chemical Physics +1604.05123 Atomic Physics +1604.05149 Optics +1604.05204 Mesoscale and Nanoscale Physics +1604.05257 Learning +1604.05386 Fluid Dynamics +1604.05397 Materials Science +1604.05421 Lattice +1604.05469 Solar and Stellar Astrophysics +1604.05520 Theory +1604.05531 Algebraic Geometry +1604.05587 Instrumentation and Methods for Astrophysics +1604.05593 Lattice +1604.05708 Experiment +1604.05711 Theory +1604.05846 Superconductivity +1604.06060 Theory +1604.06108 Theory +1604.06180 Phenomenology +1604.06211 Cosmology and Nongalactic Astrophysics +1604.06442 Theory +1604.06446 Phenomenology +1604.06523 Optics +1604.06638 Quantum Gases +1604.06642 +1604.06656 Materials Science +1604.06694 Soft Condensed Matter +1604.06703 Algebraic Geometry +1604.06717 Strongly Correlated Electrons +1604.06757 +1604.06771 +1604.06891 Theory +1604.06928 Instrumentation and Methods for Astrophysics +1604.07052 Mesoscale and Nanoscale Physics +1604.07076 Computers and Society +1604.07079 Mesoscale and Nanoscale Physics +1604.07112 Lattice +1604.07132 High Energy Astrophysical Phenomena +1604.07145 Phenomenology +1604.07252 Phenomenology +1604.07376 Optics +1604.07494 +1604.07571 Theory +1604.07612 Statistical Mechanics +1604.07619 Atomic Physics +1604.07637 Populations and Evolution +1604.07701 Networking and Internet Architecture +1604.07717 Lattice +1604.07752 High Energy Astrophysical Phenomena +1604.07851 Theory +1604.07886 Optics +1604.07896 Phenomenology +1604.07987 Theory +1604.08081 Soft Condensed Matter +1604.08156 Cosmology and Nongalactic Astrophysics +1604.08159 Fluid Dynamics +1604.08211 Phenomenology +1604.08228 Materials Science +1604.08251 Plasma Physics +1604.08344 Optics +1604.08384 Strongly Correlated Electrons +1604.08457 Materials Science +1604.08628 Mesoscale and Nanoscale Physics +1604.08635 +1604.08645 Optics +1604.08749 Chemical Physics +1604.08855 Materials Science +1604.08867 Atomic Physics +1604.08881 Optics +1605.00010 Theory +1605.00022 Fluid Dynamics +1605.00032 Materials Science +1605.00110 Systems and Control +1605.00183 Theory +1605.00206 Phenomenology +1605.00222 Atomic Physics +1605.00248 +1605.00326 +1605.00457 Materials Science +1605.00542 Phenomenology +1605.00586 Soft Condensed Matter +1605.00602 Fluid Dynamics +1605.00712 Biological Physics +1605.00727 Numerical Analysis +1605.00780 +1605.00792 +1605.00815 Phenomenology +1605.00852 Plasma Physics +1605.01083 Logic in Computer Science +1605.01122 Theory +1605.01129 Phenomenology +1605.01239 Astrophysics of Galaxies +1605.01249 Materials Science +1605.01290 Disordered Systems and Neural Networks +1605.01392 Cosmology and Nongalactic Astrophysics +1605.01476 +1605.01503 Dynamical Systems +1605.01507 Superconductivity +1605.01522 Numerical Analysis +1605.01523 Astrophysics of Galaxies +1605.01732 Theory +1605.01771 Mesoscale and Nanoscale Physics +1605.01804 Analysis of PDEs +1605.01871 Classical Physics +1605.01915 Phenomenology +1605.02067 Instrumentation and Detectors +1605.02141 Numerical Analysis +1605.02187 +1605.02311 Programming Languages +1605.02395 Instrumentation and Detectors +1605.02397 Strongly Correlated Electrons +1605.02553 Theory +1605.02573 +1605.02591 Theory +1605.02636 Fluid Dynamics +1605.02640 +1605.02681 Soft Condensed Matter +1605.02753 Social and Information Networks +1605.02799 Mesoscale and Nanoscale Physics +1605.02804 Theory +1605.02808 Atomic Physics +1605.02811 Plasma Physics +1605.02889 Experiment +1605.02901 Quantum Gases +1605.02910 Phenomenology +1605.02944 +1605.03002 Fluid Dynamics +1605.03082 Solar and Stellar Astrophysics +1605.03233 +1605.03246 Optics +1605.03251 Phenomenology +1605.03314 Theory +1605.03351 Materials Science +1605.03365 Solar and Stellar Astrophysics +1605.03381 Strongly Correlated Electrons +1605.03386 Lattice +1605.03402 General Physics +1605.03434 Biological Physics +1605.03469 Mesoscale and Nanoscale Physics +1605.03473 Mesoscale and Nanoscale Physics +1605.03537 Soft Condensed Matter +1605.03585 Phenomenology +1605.03631 Machine Learning +1605.03767 +1605.04028 Atomic Physics +1605.04075 Instrumentation and Detectors +1605.04161 Fluid Dynamics +1605.04311 Phenomenology +1605.04334 Optics +1605.04357 Cosmology and Nongalactic Astrophysics +1605.04377 Mesoscale and Nanoscale Physics +1605.04494 Emerging Technologies +1605.04610 Phenomenology +1605.04727 Optics +1605.04759 +1605.04939 Atomic Physics +1605.05075 Instrumentation and Detectors +1605.05095 Fluid Dynamics +1605.05127 +1605.05175 Strongly Correlated Electrons +1605.05185 Cosmology and Nongalactic Astrophysics +1605.05250 High Energy Astrophysical Phenomena +1605.05328 Phenomenology +1605.05338 Astrophysics of Galaxies +1605.05383 Statistical Mechanics +1605.05464 Mesoscale and Nanoscale Physics +1605.05519 Strongly Correlated Electrons +1605.05541 Phenomenology +1605.05585 Experiment +1605.05646 +1605.05691 Soft Condensed Matter +1605.05734 Superconductivity +1605.05748 +1605.05800 Chemical Physics +1605.05922 Materials Science +1605.05999 Theory +1605.06086 Populations and Evolution +1605.06118 Earth and Planetary Astrophysics +1605.06152 Astrophysics of Galaxies +1605.06163 Solar and Stellar Astrophysics +1605.06198 Accelerator Physics +1605.06219 +1605.06231 +1605.06298 Phenomenology +1605.06367 Mesoscale and Nanoscale Physics +1605.06392 Optics +1605.06406 Optics +1605.06415 Optics +1605.06517 Solar and Stellar Astrophysics +1605.06609 Computational Physics +1605.06637 Cosmology and Nongalactic Astrophysics +1605.06694 Plasma Physics +1605.06698 Differential Geometry +1605.06962 Superconductivity +1605.06969 Statistical Mechanics +1605.07021 Theory +1605.07065 Computational Physics +1605.07090 Soft Condensed Matter +1605.07130 Earth and Planetary Astrophysics +1605.07150 Optics +1605.07317 Materials Science +1605.07393 +1605.07402 Theory +1605.07406 +1605.07548 Cosmology and Nongalactic Astrophysics +1605.07647 Dynamical Systems +1605.07934 Phenomenology +1605.07962 Phenomenology +1605.08014 Quantum Gases +1605.08040 Lattice +1605.08103 Phenomenology +1605.08256 Phenomenology +1605.08262 Statistical Mechanics +1605.08282 Mesoscale and Nanoscale Physics +1605.08373 Quantitative Methods +1605.08557 Atomic Physics +1605.08586 Mesoscale and Nanoscale Physics +1605.08631 Astrophysics of Galaxies +1605.08655 +1605.08868 Theory +1605.08921 Optics +1605.08922 +1605.08927 Statistical Mechanics +1605.08934 Superconductivity +1605.08999 Cosmology and Nongalactic Astrophysics +1605.09078 Optics +1605.09103 Experiment +1605.09151 Plasma Physics +1605.09485 Mesoscale and Nanoscale Physics +1605.09568 +1605.09686 Quantum Gases +1605.09751 Chemical Physics +1606.00027 Optics +1606.00073 Dynamical Systems +1606.00165 Materials Science +1606.00179 Theory +1606.00271 Atomic Physics +1606.00287 Optics +1606.00383 Statistical Mechanics +1606.00394 Theory +1606.00567 Other Condensed Matter +1606.00580 Chemical Physics +1606.00646 Theory +1606.00761 Phenomenology +1606.00872 Solar and Stellar Astrophysics +1606.00924 +1606.01068 Optics +1606.01165 Astrophysics of Galaxies +1606.01233 Analysis of PDEs +1606.01254 Theory +1606.01313 Computational Engineering, Finance, and Science +1606.01507 +1606.01571 +1606.01703 Materials Science +1606.01705 Atomic Physics +1606.01756 Statistical Mechanics +1606.01780 Geophysics +1606.01862 Phenomenology +1606.01958 Solar and Stellar Astrophysics +1606.02048 +1606.02156 Disordered Systems and Neural Networks +1606.02289 Classical Physics +1606.02293 Cosmology and Nongalactic Astrophysics +1606.02322 Instrumentation and Detectors +1606.02324 Astrophysics of Galaxies +1606.02339 Optics +1606.02346 Learning +1606.02361 Phenomenology +1606.02389 Phenomenology +1606.02446 Instrumentation and Methods for Astrophysics +1606.02579 Soft Condensed Matter +1606.02810 Phenomenology +1606.02922 Theory +1606.02980 +1606.02990 Chemical Physics +1606.03011 Chemical Physics +1606.03030 Earth and Planetary Astrophysics +1606.03070 Mesoscale and Nanoscale Physics +1606.03202 Information Theory +1606.03207 Computation and Language +1606.03312 Theory +1606.03358 Optimization and Control +1606.03495 Number Theory +1606.03586 Materials Science +1606.03780 Atomic Physics +1606.03852 Numerical Analysis +1606.03861 Theory +1606.03999 +1606.04053 Phenomenology +1606.04085 Combinatorics +1606.04093 Experiment +1606.04144 Phenomenology +1606.04152 Theory +1606.04201 Materials Science +1606.04295 Biological Physics +1606.04336 Optics +1606.04362 +1606.04416 Phenomenology +1606.04612 Earth and Planetary Astrophysics +1606.04630 Classical Physics +1606.04699 Optics +1606.04783 Strongly Correlated Electrons +1606.04784 Superconductivity +1606.04785 Strongly Correlated Electrons +1606.04860 Superconductivity +1606.04873 Phenomenology +1606.04931 +1606.05295 +1606.05362 Soft Condensed Matter +1606.05399 Optics +1606.05423 Optimization and Control +1606.05454 Plasma Physics +1606.05476 Mesoscale and Nanoscale Physics +1606.05552 Phenomenology +1606.05828 Earth and Planetary Astrophysics +1606.05849 +1606.05881 Optics +1606.06019 Solar and Stellar Astrophysics +1606.06032 Information Theory +1606.06214 Solar and Stellar Astrophysics +1606.06241 Optics +1606.06267 Chemical Physics +1606.06297 +1606.06337 Soft Condensed Matter +1606.06344 Phenomenology +1606.06455 Cosmology and Nongalactic Astrophysics +1606.06537 Phenomenology +1606.06549 +1606.06605 +1606.06779 Materials Science +1606.06827 +1606.07105 +1606.07242 Dynamical Systems +1606.07539 Earth and Planetary Astrophysics +1606.07542 Optics +1606.07564 +1606.07675 Phenomenology +1606.07819 Earth and Planetary Astrophysics +1606.07832 Astrophysics of Galaxies +1606.07884 Phenomenology +1606.07919 Other Condensed Matter +1606.07929 Solar and Stellar Astrophysics +1606.08108 Phenomenology +1606.08146 Fluid Dynamics +1606.08179 Phenomenology +1606.08287 Phenomenology +1606.08311 Strongly Correlated Electrons +1606.08341 Probability +1606.08466 Atomic Physics +1606.08607 Molecular Networks +1606.08825 +1606.08945 Mesoscale and Nanoscale Physics +1606.08959 Strongly Correlated Electrons +1606.08966 +1606.09084 Optics +1606.09182 Soft Condensed Matter +1606.09311 Strongly Correlated Electrons +1606.09322 Solar and Stellar Astrophysics +1606.09327 Optics +1606.09441 Atomic Physics +1606.09472 +1606.09500 Phenomenology +1606.09571 Strongly Correlated Electrons +1607.00005 Astrophysics of Galaxies +1607.00075 Theory +1607.00165 Physics and Society +1607.00221 Strongly Correlated Electrons +1607.00283 +1607.00518 Algebraic Geometry +1607.00823 Soft Condensed Matter +1607.00912 Astrophysics of Galaxies +1607.00916 Lattice +1607.01011 Astrophysics of Galaxies +1607.01096 Astrophysics of Galaxies +1607.01137 Soft Condensed Matter +1607.01160 +1607.01227 Phenomenology +1607.01244 Theory +1607.01309 Adaptation and Self-Organizing Systems +1607.01322 Optics +1607.01470 Materials Science +1607.01875 Phenomenology +1607.01918 Mesoscale and Nanoscale Physics +1607.01921 Materials Science +1607.01948 Information Theory +1607.02126 +1607.02203 Atomic Physics +1607.02275 Plasma Physics +1607.02403 Geometric Topology +1607.02545 Statistical Mechanics +1607.02773 Theory +1607.02813 Instrumentation and Detectors +1607.03059 High Energy Astrophysical Phenomena +1607.03115 Earth and Planetary Astrophysics +1607.03133 +1607.03159 Theory +1607.03325 +1607.03361 High Energy Astrophysical Phenomena +1607.03507 +1607.03562 Physics and Society +1607.03584 +1607.03635 Mesoscale and Nanoscale Physics +1607.03653 High Energy Astrophysical Phenomena +1607.03757 Solar and Stellar Astrophysics +1607.03759 Superconductivity +1607.03768 Solar and Stellar Astrophysics +1607.03899 Superconductivity +1607.03962 Pattern Formation and Solitons +1607.04079 Astrophysics of Galaxies +1607.04085 Optics +1607.04117 Instrumentation and Detectors +1607.04140 Theory +1607.04148 +1607.04314 Phenomenology +1607.04335 Physics and Society +1607.04386 Exactly Solvable and Integrable Systems +1607.04665 Plasma Physics +1607.04705 Strongly Correlated Electrons +1607.04746 Materials Science +1607.04869 Rings and Algebras +1607.05012 Strongly Correlated Electrons +1607.05389 Mesoscale and Nanoscale Physics +1607.05416 Superconductivity +1607.05435 +1607.05510 Phenomenology +1607.05611 Plasma Physics +1607.05623 Phenomenology +1607.05646 Differential Geometry +1607.05706 +1607.05731 Astrophysics of Galaxies +1607.05782 Strongly Correlated Electrons +1607.05804 Soft Condensed Matter +1607.05821 Mesoscale and Nanoscale Physics +1607.05857 Soft Condensed Matter +1607.05899 +1607.05916 +1607.06013 Optics +1607.06119 Mesoscale and Nanoscale Physics +1607.06184 Mesoscale and Nanoscale Physics +1607.06188 +1607.06248 Pattern Formation and Solitons +1607.06311 Phenomenology +1607.06399 Strongly Correlated Electrons +1607.06485 Instrumentation and Methods for Astrophysics +1607.06567 +1607.06602 Phenomenology +1607.06826 Phenomenology +1607.06888 Theory +1607.06893 Mesoscale and Nanoscale Physics +1607.06919 +1607.06944 +1607.06954 +1607.06957 Solar and Stellar Astrophysics +1607.06987 +1607.07026 Mesoscale and Nanoscale Physics +1607.07107 +1607.07189 Mesoscale and Nanoscale Physics +1607.07242 Soft Condensed Matter +1607.07442 Plasma Physics +1607.07465 Solar and Stellar Astrophysics +1607.07579 Plasma Physics +1607.07592 Statistical Mechanics +1607.07609 Instrumentation and Methods for Astrophysics +1607.07638 Lattice +1607.07677 Strongly Correlated Electrons +1607.07699 Astrophysics of Galaxies +1607.07813 Number Theory +1607.07909 Mesoscale and Nanoscale Physics +1607.07946 Mesoscale and Nanoscale Physics +1607.07961 +1607.08055 +1607.08060 Astrophysics of Galaxies +1607.08281 Atomic Physics +1607.08286 Statistical Mechanics +1607.08323 +1607.08389 Disordered Systems and Neural Networks +1607.08532 Optics +1607.08651 Superconductivity +1607.08747 Astrophysics of Galaxies +1607.08768 +1607.08814 Disordered Systems and Neural Networks +1608.00044 Mathematical Software +1608.00165 +1608.00489 Fluid Dynamics +1608.00700 Computer Vision and Pattern Recognition +1608.00826 Plasma Physics +1608.01015 High Energy Astrophysical Phenomena +1608.01142 Fluid Dynamics +1608.01241 High Energy Astrophysical Phenomena +1608.01498 Differential Geometry +1608.01581 Materials Science +1608.01605 +1608.01678 Solar and Stellar Astrophysics +1608.01957 Materials Science +1608.02070 Cosmology and Nongalactic Astrophysics +1608.02142 Mesoscale and Nanoscale Physics +1608.02335 +1608.02667 Algebraic Geometry +1608.02789 Mesoscale and Nanoscale Physics +1608.03010 Solar and Stellar Astrophysics +1608.03205 +1608.03553 Earth and Planetary Astrophysics +1608.03653 Astrophysics of Galaxies +1608.03743 Astrophysics of Galaxies +1608.03861 Optimization and Control +1608.03895 Solar and Stellar Astrophysics +1608.04049 Physics and Society +1608.04353 Astrophysics of Galaxies +1608.04386 Astrophysics of Galaxies +1608.04391 Instrumentation and Methods for Astrophysics +1608.04506 Statistical Finance +1608.04589 High Energy Astrophysical Phenomena +1608.04978 Solar and Stellar Astrophysics +1608.05017 Earth and Planetary Astrophysics +1608.05143 Computer Vision and Pattern Recognition +1608.05153 Pattern Formation and Solitons +1608.05228 Superconductivity +1608.05287 Commutative Algebra +1608.05477 Computer Vision and Pattern Recognition +1608.05675 Logic in Computer Science +1608.06128 Information Theory +1608.06129 Theory +1608.06138 Chaotic Dynamics +1608.06139 Phenomenology +1608.06146 Subcellular Processes +1608.06169 Databases +1608.06182 Numerical Analysis +1608.06195 Fluid Dynamics +1608.06236 Geometric Topology +1608.06276 Combinatorics +1608.06277 Computer Vision and Pattern Recognition +1608.06280 Statistical Mechanics +1608.06286 Solar and Stellar Astrophysics +1608.06290 Astrophysics of Galaxies +1608.06298 Information Retrieval +1608.06301 Materials Science +1608.06304 Mesoscale and Nanoscale Physics +1608.06305 Other Quantitative Biology +1608.06312 +1608.06314 Populations and Evolution +1608.06315 Learning +1608.06317 Geometric Topology +1608.06318 +1608.06321 Materials Science +1608.06325 Data Structures and Algorithms +1608.06326 Combinatorics +1608.06332 Superconductivity +1608.06334 Soft Condensed Matter +1608.06336 Optimization and Control +1608.06340 Category Theory +1608.06341 Information Theory +1608.06342 Astrophysics of Galaxies +1608.06343 Instrumentation and Detectors +1608.06346 Number Theory +1608.06349 Artificial Intelligence +1608.06351 Dynamical Systems +1608.06353 +1608.06356 Plasma Physics +1608.06357 Soft Condensed Matter +1608.06358 Fluid Dynamics +1608.06361 Probability +1608.06367 Applications +1608.06370 +1608.06372 Commutative Algebra +1608.06373 Combinatorics +1608.06375 Operator Algebras +1608.06378 Computation and Language +1608.06379 Computers and Society +1608.06381 Materials Science +1608.06383 Machine Learning +1608.06384 Probability +1608.06386 Computation and Language +1608.06389 Astrophysics of Galaxies +1608.06391 Experiment +1608.06392 Logic in Computer Science +1608.06395 Quantum Algebra +1608.06398 Combinatorics +1608.06399 Instrumentation and Detectors +1608.06400 Logic +1608.06401 Number Theory +1608.06403 Computer Science and Game Theory +1608.06408 Learning +1608.06409 Learning +1608.06411 Strongly Correlated Electrons +1608.06412 Machine Learning +1608.06413 +1608.06415 Data Structures and Algorithms +1608.06416 Computational Finance +1608.06420 Robotics +1608.06422 Optimization and Control +1608.06424 Analysis of PDEs +1608.06425 Phenomenology +1608.06426 Operator Algebras +1608.06427 Social and Information Networks +1608.06428 Number Theory +1608.06434 Computer Vision and Pattern Recognition +1608.06438 Differential Geometry +1608.06439 Instrumentation and Methods for Astrophysics +1608.06440 Robotics +1608.06444 Solar and Stellar Astrophysics +1608.06446 Space Physics +1608.06447 Analysis of PDEs +1608.06448 Quantum Gases +1608.06450 Phenomenology +1608.06451 Computer Vision and Pattern Recognition +1608.06452 Theory +1608.06453 Complex Variables +1608.06454 Complex Variables +1608.06456 Soft Condensed Matter +1608.06457 Complex Variables +1608.06458 Computational Geometry +1608.06459 Computation and Language +1608.06460 +1608.06462 Data Structures and Algorithms +1608.06465 Algebraic Geometry +1608.06467 Differential Geometry +1608.06468 Theory +1608.06469 Databases +1608.06473 Numerical Analysis +1608.06474 Symplectic Geometry +1608.06475 Optimization and Control +1608.06477 Classical Physics +1608.06478 Combinatorics +1608.06481 Theory +1608.06486 Experiment +1608.06488 Solar and Stellar Astrophysics +1608.06489 Instrumentation and Methods for Astrophysics +1608.06490 Superconductivity +1608.06491 Distributed, Parallel, and Cluster Computing +1608.06492 Social and Information Networks +1608.06495 Computer Vision and Pattern Recognition +1608.06496 Optics +1608.06497 Representation Theory +1608.06498 Information Theory +1608.06500 Popular Physics +1608.06504 +1608.06505 Solar and Stellar Astrophysics +1608.06506 Instrumentation and Methods for Astrophysics +1608.06507 Representation Theory +1608.06510 Systems and Control +1608.06511 Networking and Internet Architecture +1608.06515 Astrophysics of Galaxies +1608.06516 Physics and Society +1608.06517 Numerical Analysis +1608.06522 Solar and Stellar Astrophysics +1608.06524 Numerical Analysis +1608.06525 General Physics +1608.06529 Statistical Mechanics +1608.06530 High Energy Astrophysical Phenomena +1608.06533 Combinatorics +1608.06536 Statistics Theory +1608.06538 Mesoscale and Nanoscale Physics +1608.06542 Instrumentation and Methods for Astrophysics +1608.06544 Strongly Correlated Electrons +1608.06545 Information Theory +1608.06547 +1608.06549 Software Engineering +1608.06550 Combinatorics +1608.06554 Algebraic Geometry +1608.06556 Probability +1608.06557 Computer Vision and Pattern Recognition +1608.06558 Computer Vision and Pattern Recognition +1608.06559 Distributed, Parallel, and Cluster Computing +1608.06562 Disordered Systems and Neural Networks +1608.06563 Information Theory +1608.06564 Probability +1608.06565 Optics +1608.06566 Instrumentation and Methods for Astrophysics +1608.06567 Logic in Computer Science +1608.06569 Phenomenology +1608.06570 Number Theory +1608.06571 Classical Analysis and ODEs +1608.06575 Differential Geometry +1608.06576 +1608.06577 Computational Physics +1608.06578 Phenomenology +1608.06579 +1608.06583 Programming Languages +1608.06587 Materials Science +1608.06588 Mesoscale and Nanoscale Physics +1608.06589 Theory +1608.06592 Cryptography and Security +1608.06593 Number Theory +1608.06595 Dynamical Systems +1608.06598 Biological Physics +1608.06601 Plasma Physics +1608.06602 Information Theory +1608.06606 Networking and Internet Architecture +1608.06608 Learning +1608.06609 Probability +1608.06610 +1608.06611 Operator Algebras +1608.06612 Metric Geometry +1608.06617 +1608.06621 Combinatorics +1608.06623 Soft Condensed Matter +1608.06625 Mesoscale and Nanoscale Physics +astro-ph/9411104 +astro-ph/9504081 +astro-ph/9505120 +astro-ph/9510029 +astro-ph/9511029 +astro-ph/9603034 +astro-ph/9603138 +astro-ph/9608106 +astro-ph/9610183 +astro-ph/9611106 +astro-ph/9702006 +cond-mat/0011283 Materials Science +cond-mat/0206513 Superconductivity +cond-mat/0401447 Superconductivity +cond-mat/9612019 Mesoscale and Nanoscale Physics +gr-qc/9403027 +gr-qc/9408015 +gr-qc/9412001 +gr-qc/9412066 +gr-qc/9506029 +gr-qc/9506050 +gr-qc/9602056 +gr-qc/9607064 +gr-qc/9608034 +gr-qc/9609057 +gr-qc/9610040 +gr-qc/9610051 +gr-qc/9612026 +gr-qc/9702018 +gr-qc/9702038 +gr-qc/9702049 +gr-qc/9704050 +hep-lat/9511021 Lattice +hep-lat/9603016 Lattice +hep-lat/9606021 Lattice +hep-lat/9610001 Lattice +hep-lat/9612002 Lattice +hep-lat/9702015 Lattice +hep-lat/9703010 Lattice +hep-ph/0603047 Phenomenology +hep-ph/9407299 Phenomenology +hep-ph/9408247 Phenomenology +hep-ph/9408254 Phenomenology +hep-ph/9408384 Phenomenology +hep-ph/9409221 Phenomenology +hep-ph/9409319 Phenomenology +hep-ph/9411206 Phenomenology +hep-ph/9411249 Phenomenology +hep-ph/9411365 Phenomenology +hep-ph/9411383 Phenomenology +hep-ph/9411430 Phenomenology +hep-ph/9412217 Phenomenology +hep-ph/9412305 Phenomenology +hep-ph/9502223 Phenomenology +hep-ph/9502324 Phenomenology +hep-ph/9503244 Phenomenology +hep-ph/9503476 Phenomenology +hep-ph/9505226 Phenomenology +hep-ph/9505245 Phenomenology +hep-ph/9505326 Phenomenology +hep-ph/9507262 Phenomenology +hep-ph/9507375 Phenomenology +hep-ph/9507378 Phenomenology +hep-ph/9507420 Phenomenology +hep-ph/9508252 Phenomenology +hep-ph/9508253 Phenomenology +hep-ph/9508279 Phenomenology +hep-ph/9508322 Phenomenology +hep-ph/9508406 Phenomenology +hep-ph/9509325 Phenomenology +hep-ph/9509351 Phenomenology +hep-ph/9510424 Phenomenology +hep-ph/9511356 Phenomenology +hep-ph/9512225 Phenomenology +hep-ph/9512306 Phenomenology +hep-ph/9512430 Phenomenology +hep-ph/9512433 Phenomenology +hep-ph/9601211 Phenomenology +hep-ph/9602221 Phenomenology +hep-ph/9602300 Phenomenology +hep-ph/9602323 Phenomenology +hep-ph/9602349 Phenomenology +hep-ph/9603212 Phenomenology +hep-ph/9603247 Phenomenology +hep-ph/9603253 Phenomenology +hep-ph/9603261 Phenomenology +hep-ph/9603266 Phenomenology +hep-ph/9603442 Phenomenology +hep-ph/9604237 Phenomenology +hep-ph/9604452 Phenomenology +hep-ph/9605332 Phenomenology +hep-ph/9605409 Phenomenology +hep-ph/9607217 Phenomenology +hep-ph/9607243 Phenomenology +hep-ph/9608269 Phenomenology +hep-ph/9608275 Phenomenology +hep-ph/9608303 Phenomenology +hep-ph/9608361 Phenomenology +hep-ph/9608443 Phenomenology +hep-ph/9609221 Phenomenology +hep-ph/9609246 Phenomenology +hep-ph/9609285 Phenomenology +hep-ph/9609302 Phenomenology +hep-ph/9609372 Phenomenology +hep-ph/9609411 Phenomenology +hep-ph/9609448 Phenomenology +hep-ph/9609463 Phenomenology +hep-ph/9609469 Phenomenology +hep-ph/9609480 Phenomenology +hep-ph/9609509 Phenomenology +hep-ph/9609510 Phenomenology +hep-ph/9609520 Phenomenology +hep-ph/9610377 Phenomenology +hep-ph/9610495 Phenomenology +hep-ph/9610540 Phenomenology +hep-ph/9611209 Phenomenology +hep-ph/9611330 Phenomenology +hep-ph/9611422 Phenomenology +hep-ph/9612231 Phenomenology +hep-ph/9612267 Phenomenology +hep-ph/9612282 Phenomenology +hep-ph/9612285 Phenomenology +hep-ph/9612302 Phenomenology +hep-ph/9612304 Phenomenology +hep-ph/9612316 Phenomenology +hep-ph/9612402 Phenomenology +hep-ph/9612485 Phenomenology +hep-ph/9612493 Phenomenology +hep-ph/9701229 Phenomenology +hep-ph/9701247 Phenomenology +hep-ph/9701283 Phenomenology +hep-ph/9701294 Phenomenology +hep-ph/9701347 Phenomenology +hep-ph/9701354 Phenomenology +hep-ph/9701423 Phenomenology +hep-ph/9702207 Phenomenology +hep-ph/9702270 Phenomenology +hep-ph/9702283 Phenomenology +hep-ph/9702377 Phenomenology +hep-ph/9702380 Phenomenology +hep-ph/9702423 Phenomenology +hep-ph/9702427 Phenomenology +hep-ph/9703232 Phenomenology +hep-ph/9703340 Phenomenology +hep-ph/9703370 Phenomenology +hep-ph/9703408 Phenomenology +hep-ph/9704247 Phenomenology +hep-ph/9705308 Phenomenology +hep-th/9312150 Theory +hep-th/9407167 Theory +hep-th/9407169 Theory +hep-th/9408120 Theory +hep-th/9411221 Theory +hep-th/9412065 Theory +hep-th/9501094 Theory +hep-th/9502073 Theory +hep-th/9502146 Theory +hep-th/9502153 Theory +hep-th/9503029 Theory +hep-th/9504022 Theory +hep-th/9504026 Theory +hep-th/9504141 Theory +hep-th/9505141 Theory +hep-th/9506059 Theory +hep-th/9506109 Theory +hep-th/9506113 Theory +hep-th/9506196 Theory +hep-th/9507045 Theory +hep-th/9507107 Theory +hep-th/9508091 Theory +hep-th/9508179 Theory +hep-th/9509168 Theory +hep-th/9509169 Theory +hep-th/9510104 Theory +hep-th/9510136 Theory +hep-th/9510212 Theory +hep-th/9511016 Theory +hep-th/9511116 Theory +hep-th/9601154 Theory +hep-th/9601167 Theory +hep-th/9602067 Theory +hep-th/9602135 Theory +hep-th/9602136 Theory +hep-th/9602179 Theory +hep-th/9603090 Theory +hep-th/9603136 Theory +hep-th/9603195 Theory +hep-th/9604168 Theory +hep-th/9604193 Theory +hep-th/9604195 Theory +hep-th/9605121 Theory +hep-th/9605218 Theory +hep-th/9606052 Theory +hep-th/9606113 Theory +hep-th/9606157 Theory +hep-th/9606174 Theory +hep-th/9607075 Theory +hep-th/9607202 Theory +hep-th/9608050 Theory +hep-th/9608156 Theory +hep-th/9609085 Theory +hep-th/9609100 Theory +hep-th/9609106 Theory +hep-th/9609152 Theory +hep-th/9610074 Theory +hep-th/9610171 Theory +hep-th/9611140 Theory +hep-th/9611189 Theory +hep-th/9611207 Theory +hep-th/9612022 Theory +hep-th/9612031 Theory +hep-th/9612130 Theory +hep-th/9612183 Theory +hep-th/9701077 Theory +hep-th/9701136 Theory +hep-th/9702025 Theory +hep-th/9702075 Theory +hep-th/9702161 Theory +hep-th/9703138 Theory +hep-th/9703179 Theory +hep-th/9703216 Theory +nlin/0310036 Exactly Solvable and Integrable Systems +nucl-th/9412025 +nucl-th/9612049 +quant-ph/0506010 +0704.1142 +0810.3908 +0906.0259 Probability +0909.3726 +0912.2527 +1003.2771 +1004.3842 Computational Complexity +1006.0837 +1007.2682 +1007.5105 Algebraic Topology +1009.3146 Optics +1009.3647 Dynamical Systems +1102.3343 Statistical Mechanics +1105.0100 Optics +1105.3836 Popular Physics +1105.5578 Statistics Theory +1106.3541 Optics +1109.2125 Optics +1110.6587 +1201.3534 Optics +1205.0508 Fluid Dynamics +1205.2131 +1207.1143 Optics +1208.1373 Algebraic Geometry +1209.5147 Fluid Dynamics +1212.6536 Materials Science +1302.0438 Optics +1303.5021 Combinatorics +1303.6223 Machine Learning +1304.8033 Combinatorics +1305.1834 Optics +1305.4793 Pattern Formation and Solitons +1305.5150 Phenomenology +1307.0426 Computer Vision and Pattern Recognition +1307.2681 Fluid Dynamics +1307.2820 Atomic Physics +1307.4566 Networking and Internet Architecture +1310.1650 Number Theory +1310.1682 Probability +1310.3287 Soft Condensed Matter +1310.4544 +1310.5589 Group Theory +1310.6845 Analysis of PDEs +1311.1405 Functional Analysis +1311.1766 Analysis of PDEs +1311.5179 Statistics Theory +1312.4081 Exactly Solvable and Integrable Systems +1401.2111 Geometric Topology +1401.5659 High Energy Astrophysical Phenomena +1402.0599 Information Theory +1402.1989 Mesoscale and Nanoscale Physics +1402.5539 Probability +1402.6778 Classical Analysis and ODEs +1403.1540 +1403.5270 Astrophysics of Galaxies +1404.1494 Logic +1404.1973 Fluid Dynamics +1404.5813 Distributed, Parallel, and Cluster Computing +1404.6795 Astrophysics of Galaxies +1404.7033 Differential Geometry +1405.6978 Numerical Analysis +1406.1202 Solar and Stellar Astrophysics +1407.0032 +1407.0838 +1407.2389 Fluid Dynamics +1407.3321 Geometric Topology +1407.4165 Differential Geometry +1407.5040 Other Computer Science +1408.0273 Optics +1408.0276 Theory +1408.3391 +1408.3948 Analysis of PDEs +1408.4818 General Topology +1409.3711 Combinatorics +1410.0777 Algebraic Geometry +1410.2448 Algebraic Geometry +1410.4172 +1410.5292 Combinatorics +1411.0657 Optics +1411.3754 +1412.0210 Superconductivity +1412.1111 Astrophysics of Galaxies +1412.7725 Computer Vision and Pattern Recognition +1412.8397 Statistics Theory +1412.8762 Statistical Mechanics +1501.01812 Complex Variables +1501.03853 Disordered Systems and Neural Networks +1501.03916 +1501.04092 Mesoscale and Nanoscale Physics +1501.04489 Algebraic Geometry +1501.04569 Phenomenology +1501.04704 Information Theory +1501.06100 +1501.07131 Formal Languages and Automata Theory +1501.07148 Solar and Stellar Astrophysics +1501.07840 Probability +1502.00136 Astrophysics of Galaxies +1502.01262 +1502.01300 Soft Condensed Matter +1502.01947 Astrophysics of Galaxies +1502.03799 Solar and Stellar Astrophysics +1502.05493 +1502.07354 Cosmology and Nongalactic Astrophysics +1502.07931 Superconductivity +1502.07969 Molecular Networks +1503.00811 Fluid Dynamics +1503.00891 Dynamical Systems +1503.00913 Trading and Market Microstructure +1503.00925 Physics and Society +1503.01775 Cosmology and Nongalactic Astrophysics +1503.01817 Multimedia +1503.03908 Theory +1503.04056 Cosmology and Nongalactic Astrophysics +1503.04059 Quantitative Methods +1503.05868 Mesoscale and Nanoscale Physics +1503.06862 Mesoscale and Nanoscale Physics +1503.08470 Solar and Stellar Astrophysics +1503.08572 Logic +1504.01958 Optics +1504.02200 High Energy Astrophysical Phenomena +1504.04263 Information Theory +1504.05246 Solar and Stellar Astrophysics +1504.05706 Populations and Evolution +1504.05891 Information Theory +1504.06284 Astrophysics of Galaxies +1504.07451 Experiment +1505.00216 Astrophysics of Galaxies +1505.00286 +1505.01949 Methodology +1505.03034 +1505.03431 Methodology +1505.03854 Physics and Society +1505.03987 Earth and Planetary Astrophysics +1505.04346 Molecular Networks +1505.04605 Materials Science +1505.06948 Cosmology and Nongalactic Astrophysics +1505.07218 +1505.07446 Algebraic Geometry +1505.07909 Computation and Language +1506.00855 +1506.00889 Adaptation and Self-Organizing Systems +1506.00964 Mesoscale and Nanoscale Physics +1506.01441 Solar and Stellar Astrophysics +1506.01703 High Energy Astrophysical Phenomena +1506.02076 Biomolecules +1506.02123 +1506.02266 Mesoscale and Nanoscale Physics +1506.02826 Geometric Topology +1506.02892 Cosmology and Nongalactic Astrophysics +1506.03022 Social and Information Networks +1506.03496 +1506.03944 Distributed, Parallel, and Cluster Computing +1506.03959 High Energy Astrophysical Phenomena +1506.05171 Quantitative Methods +1506.05705 Mesoscale and Nanoscale Physics +1506.06141 Phenomenology +1506.06187 Materials Science +1506.06381 Phenomenology +1506.06822 Information Theory +1506.06949 Phenomenology +1506.07564 Computation +1506.07578 Soft Condensed Matter +1506.08168 Biological Physics +1506.09165 Mesoscale and Nanoscale Physics +1507.00116 Biological Physics +1507.00812 +1507.01312 Materials Science +1507.01532 Cosmology and Nongalactic Astrophysics +1507.02049 Computer Vision and Pattern Recognition +1507.02308 Phenomenology +1507.02694 High Energy Astrophysical Phenomena +1507.02829 Dynamical Systems +1507.03451 Soft Condensed Matter +1507.03627 Spectral Theory +1507.04049 High Energy Astrophysical Phenomena +1507.04178 Quantitative Methods +1507.04385 Cosmology and Nongalactic Astrophysics +1507.05074 Statistical Mechanics +1507.05366 Statistics Theory +1507.05807 Optics +1507.05917 +1507.06027 Soft Condensed Matter +1507.06351 Disordered Systems and Neural Networks +1507.08268 Information Theory +1507.08487 Spectral Theory +1507.08852 +1508.00033 +1508.00832 Dynamical Systems +1508.01356 Astrophysics of Galaxies +1508.01772 Materials Science +1508.01849 +1508.01919 High Energy Astrophysical Phenomena +1508.02401 Theory +1508.02424 Disordered Systems and Neural Networks +1508.02805 Computational Physics +1508.03241 Earth and Planetary Astrophysics +1508.03429 +1508.03520 Probability +1508.04184 Strongly Correlated Electrons +1508.04692 Cell Behavior +1508.05676 Solar and Stellar Astrophysics +1508.06340 +1508.06409 Astrophysics of Galaxies +1508.06412 Solar and Stellar Astrophysics +1508.07571 Molecular Networks +1508.07642 Probability +1509.00639 Astrophysics of Galaxies +1509.00731 Information Theory +1509.00862 +1509.01239 +1509.01246 Strongly Correlated Electrons +1509.01721 Solar and Stellar Astrophysics +1509.01879 Cosmology and Nongalactic Astrophysics +1509.02187 Pattern Formation and Solitons +1509.02267 Systems and Control +1509.02343 Theory +1509.02350 Probability +1509.02389 Numerical Analysis +1509.02450 Populations and Evolution +1509.02639 +1509.02936 Phenomenology +1509.02969 High Energy Astrophysical Phenomena +1509.03180 +1509.03310 Cosmology and Nongalactic Astrophysics +1509.03580 Dynamical Systems +1509.03775 Other Quantitative Biology +1509.03981 Mesoscale and Nanoscale Physics +1509.04299 Mesoscale and Nanoscale Physics +1509.04592 +1509.04629 Computational Physics +1509.04662 +1509.04723 Materials Science +1509.05083 Physics and Society +1509.05148 Statistical Mechanics +1509.05367 Analysis of PDEs +1509.05380 +1509.05558 +1509.05622 +1509.05691 Strongly Correlated Electrons +1509.06038 +1509.06145 Statistical Mechanics +1509.06342 Strongly Correlated Electrons +1509.06434 Discrete Mathematics +1509.06578 Biological Physics +1509.06643 Materials Science +1509.06684 Mesoscale and Nanoscale Physics +1509.06709 General Physics +1509.06738 Phenomenology +1509.06746 +1509.06873 Analysis of PDEs +1509.07131 Cosmology and Nongalactic Astrophysics +1509.07377 Logic +1509.07385 Machine Learning +1509.07399 Superconductivity +1509.07500 +1509.08298 Materials Science +1509.08429 +1509.08682 +1509.08732 Earth and Planetary Astrophysics +1509.08752 Materials Science +1509.08825 Computational Complexity +1509.08974 Quantum Gases +1510.00166 Mesoscale and Nanoscale Physics +1510.00294 Phenomenology +1510.00524 Mesoscale and Nanoscale Physics +1510.00718 Astrophysics of Galaxies +1510.00775 Methodology +1510.00875 Atmospheric and Oceanic Physics +1510.01109 Solar and Stellar Astrophysics +1510.01195 Populations and Evolution +1510.01503 Mesoscale and Nanoscale Physics +1510.01936 Solar and Stellar Astrophysics +1510.02569 Strongly Correlated Electrons +1510.02778 Materials Science +1510.02919 Materials Science +1510.03007 Dynamical Systems +1510.03431 Cosmology and Nongalactic Astrophysics +1510.03556 Solar and Stellar Astrophysics +1510.04075 Cosmology and Nongalactic Astrophysics +1510.04110 Optics +1510.04372 High Energy Astrophysical Phenomena +1510.04664 Solar and Stellar Astrophysics +1510.04703 Astrophysics of Galaxies +1510.04927 Mesoscale and Nanoscale Physics +1510.05100 General Topology +1510.05392 Superconductivity +1510.05515 +1510.05539 Astrophysics of Galaxies +1510.05545 Cosmology and Nongalactic Astrophysics +1510.05648 Astrophysics of Galaxies +1510.05868 Disordered Systems and Neural Networks +1510.06296 Soft Condensed Matter +1510.06426 Atomic Physics +1510.06498 Astrophysics of Galaxies +1510.06675 Phenomenology +1510.07005 Optics +1510.07662 High Energy Astrophysical Phenomena +1510.07806 Disordered Systems and Neural Networks +1510.07909 +1510.07994 Cosmology and Nongalactic Astrophysics +1510.08400 +1510.08639 Materials Science +1510.08685 Materials Science +1510.09028 Differential Geometry +1510.09165 Earth and Planetary Astrophysics +1510.09168 Pattern Formation and Solitons +1511.00238 High Energy Astrophysical Phenomena +1511.00299 Mesoscale and Nanoscale Physics +1511.00606 Mesoscale and Nanoscale Physics +1511.00692 Cosmology and Nongalactic Astrophysics +1511.00841 Phenomenology +1511.00957 Solar and Stellar Astrophysics +1511.01231 +1511.01384 +1511.01679 +1511.01723 +1511.01892 Emerging Technologies +1511.02014 Computation and Language +1511.02116 High Energy Astrophysical Phenomena +1511.02133 Atomic Physics +1511.02238 +1511.02891 High Energy Astrophysical Phenomena +1511.03076 Cosmology and Nongalactic Astrophysics +1511.03460 Differential Geometry +1511.03514 +1511.03663 Earth and Planetary Astrophysics +1511.04391 Cosmology and Nongalactic Astrophysics +1511.04439 +1511.04819 Atomic Physics +1511.04829 +1511.04905 Mesoscale and Nanoscale Physics +1511.04936 Biological Physics +1511.04991 General Physics +1511.05037 Materials Science +1511.05332 Differential Geometry +1511.05446 +1511.05487 Solar and Stellar Astrophysics +1511.05695 Theory +1511.05974 Phenomenology +1511.06321 Learning +1511.06624 Computational Geometry +1511.06645 Computer Vision and Pattern Recognition +1511.06671 Strongly Correlated Electrons +1511.07054 Astrophysics of Galaxies +1511.07282 Mesoscale and Nanoscale Physics +1511.07487 Social and Information Networks +1511.07746 High Energy Astrophysical Phenomena +1511.07873 Astrophysics of Galaxies +1511.07950 Superconductivity +1511.08024 +1511.08036 +1511.08092 +1511.08126 Materials Science +1511.08400 Neural and Evolutionary Computing +1511.08445 Quantitative Methods +1511.08519 Instrumentation and Methods for Astrophysics +1511.08654 +1511.08679 Earth and Planetary Astrophysics +1511.08801 +1511.08811 Solar and Stellar Astrophysics +1511.09071 Lattice +1511.09318 Soft Condensed Matter +1511.09434 Instrumentation and Detectors +1511.09468 Neurons and Cognition +1512.00128 Applications +1512.00462 Astrophysics of Galaxies +1512.00756 Strongly Correlated Electrons +1512.00763 Statistical Mechanics +1512.00782 Superconductivity +1512.00978 Quantum Gases +1512.01175 Phenomenology +1512.01481 Probability +1512.01651 Astrophysics of Galaxies +1512.01674 +1512.01968 Computational Complexity +1512.01979 Numerical Analysis +1512.02083 +1512.02205 Cosmology and Nongalactic Astrophysics +1512.02417 Materials Science +1512.02638 Instrumentation and Methods for Astrophysics +1512.02982 Fluid Dynamics +1512.03064 Astrophysics of Galaxies +1512.03125 Optics +1512.03157 Theory +1512.03217 Lattice +1512.03339 Mesoscale and Nanoscale Physics +1512.03386 Fluid Dynamics +1512.03402 Cosmology and Nongalactic Astrophysics +1512.03837 Theory +1512.03894 Theory +1512.04094 Theory +1512.04278 Mesoscale and Nanoscale Physics +1512.04955 +1512.05011 Phenomenology +1512.05072 +1512.05747 Strongly Correlated Electrons +1512.05751 Phenomenology +1512.05779 Phenomenology +1512.05911 +1512.06055 Optics +1512.06165 Phenomenology +1512.06436 Phenomenology +1512.06455 Cosmology and Nongalactic Astrophysics +1512.06481 Mesoscale and Nanoscale Physics +1512.06507 Cosmology and Nongalactic Astrophysics +1512.06977 +1512.07011 Mesoscale and Nanoscale Physics +1512.07180 Lattice +1512.07298 Solar and Stellar Astrophysics +1512.07367 Quantum Gases +1512.07407 +1512.07533 Computational Geometry +1512.07729 Computer Vision and Pattern Recognition +1512.07854 +1512.07916 Cosmology and Nongalactic Astrophysics +1512.08330 Solar and Stellar Astrophysics +1512.08412 Mesoscale and Nanoscale Physics +1512.08441 Phenomenology +1512.08470 Soft Condensed Matter +1512.09025 Optics +1512.09056 +1512.09063 Phenomenology +1512.09097 Phenomenology +1512.09149 High Energy Astrophysical Phenomena +1512.09350 General Physics +1601.00346 Systems and Control +1601.00452 Earth and Planetary Astrophysics +1601.00613 Operator Algebras +1601.00900 Applications +1601.00922 Strongly Correlated Electrons +1601.01179 Theory +1601.01287 Theory +1601.01438 Fluid Dynamics +1601.01551 Mesoscale and Nanoscale Physics +1601.01741 Algebraic Topology +1601.01949 Phenomenology +1601.02342 Solar and Stellar Astrophysics +1601.02412 +1601.02445 Mesoscale and Nanoscale Physics +1601.02469 Mesoscale and Nanoscale Physics +1601.02725 Algebraic Geometry +1601.02907 Algebraic Geometry +1601.02911 Algebraic Geometry +1601.03058 Cosmology and Nongalactic Astrophysics +1601.03114 Number Theory +1601.03158 Chemical Physics +1601.03493 +1601.04130 Differential Geometry +1601.04513 +1601.04649 Cosmology and Nongalactic Astrophysics +1601.04788 Phenomenology +1601.04920 Machine Learning +1601.05093 Phenomenology +1601.05143 Earth and Planetary Astrophysics +1601.05192 Astrophysics of Galaxies +1601.05245 Experiment +1601.05342 Mesoscale and Nanoscale Physics +1601.05500 +1601.05565 Astrophysics of Galaxies +1601.05592 Experiment +1601.05650 Information Theory +1601.05733 Solar and Stellar Astrophysics +1601.05795 +1601.06163 Phenomenology +1601.06189 Materials Science +1601.06593 Logic +1601.06605 Materials Science +1601.06636 Optimization and Control +1601.06791 Astrophysics of Galaxies +1601.07042 Astrophysics of Galaxies +1601.07130 Mesoscale and Nanoscale Physics +1601.07167 Phenomenology +1601.07173 Astrophysics of Galaxies +1601.07510 +1601.07523 Phenomenology +1601.07552 +1601.07559 Astrophysics of Galaxies +1601.07595 Earth and Planetary Astrophysics +1601.07726 Quantum Gases +1601.07787 Phenomenology +1601.08058 +1602.00011 Astrophysics of Galaxies +1602.00272 Strongly Correlated Electrons +1602.00501 Instrumentation and Methods for Astrophysics +1602.00628 Mesoscale and Nanoscale Physics +1602.00632 Theory +1602.00707 Solar and Stellar Astrophysics +1602.00735 Theory +1602.00840 Soft Condensed Matter +1602.00873 Strongly Correlated Electrons +1602.00936 Theory +1602.00993 Astrophysics of Galaxies +1602.01015 Cosmology and Nongalactic Astrophysics +1602.01078 Theory +1602.01195 Solar and Stellar Astrophysics +1602.01234 +1602.01356 Chaotic Dynamics +1602.01390 Phenomenology +1602.01442 Physics and Society +1602.01447 Strongly Correlated Electrons +1602.01502 +1602.01550 High Energy Astrophysical Phenomena +1602.01854 Astrophysics of Galaxies +1602.01901 Solar and Stellar Astrophysics +1602.01912 Solar and Stellar Astrophysics +1602.01967 Earth and Planetary Astrophysics +1602.01986 Algebraic Geometry +1602.02167 Instrumentation and Methods for Astrophysics +1602.02303 Superconductivity +1602.02674 Cosmology and Nongalactic Astrophysics +1602.02770 Astrophysics of Galaxies +1602.02914 +1602.03037 Earth and Planetary Astrophysics +1602.03189 Astrophysics of Galaxies +1602.03261 +1602.03289 Solar and Stellar Astrophysics +1602.03385 Cosmology and Nongalactic Astrophysics +1602.03517 Optics +1602.03544 +1602.03696 Solar and Stellar Astrophysics +1602.03879 High Energy Astrophysical Phenomena +1602.03928 Astrophysics of Galaxies +1602.04035 Phenomenology +1602.04362 Earth and Planetary Astrophysics +1602.04447 Solar and Stellar Astrophysics +1602.04646 Instrumentation and Detectors +1602.04751 Earth and Planetary Astrophysics +1602.04766 +1602.04782 +1602.04953 +1602.05027 Superconductivity +1602.05140 High Energy Astrophysical Phenomena +1602.05304 Functional Analysis +1602.05315 Space Physics +1602.05325 Astrophysics of Galaxies +1602.05743 Fluid Dynamics +1602.05865 Geometric Topology +1602.05963 Earth and Planetary Astrophysics +1602.06296 Solar and Stellar Astrophysics +1602.06327 High Energy Astrophysical Phenomena +1602.06345 Optics +1602.06355 Solar and Stellar Astrophysics +1602.06587 Astrophysics of Galaxies +1602.06596 Chaotic Dynamics +1602.06743 Cosmology and Nongalactic Astrophysics +1602.06764 High Energy Astrophysical Phenomena +1602.06883 Solar and Stellar Astrophysics +1602.06890 +1602.07080 Optimization and Control +1602.07246 High Energy Astrophysical Phenomena +1602.07318 Solar and Stellar Astrophysics +1602.07465 Earth and Planetary Astrophysics +1602.07598 Solar and Stellar Astrophysics +1602.07604 Astrophysics of Galaxies +1602.07635 Solar and Stellar Astrophysics +1602.07711 Cosmology and Nongalactic Astrophysics +1602.08092 Phenomenology +1602.08112 Strongly Correlated Electrons +1602.08197 Computational Physics +1602.08374 Physics and Society +1602.08404 Phenomenology +1602.08434 Cosmology and Nongalactic Astrophysics +1602.08644 Applications +1602.08748 Cosmology and Nongalactic Astrophysics +1602.08770 Cosmology and Nongalactic Astrophysics +1602.08810 Medical Physics +1602.08976 Soft Condensed Matter +1603.00135 Optics +1603.00355 Strongly Correlated Electrons +1603.00463 Astrophysics of Galaxies +1603.00484 Earth and Planetary Astrophysics +1603.00559 Phenomenology +1603.00606 Materials Science +1603.00655 Solar and Stellar Astrophysics +1603.00876 Astrophysics of Galaxies +1603.00891 High Energy Astrophysical Phenomena +1603.00967 Instrumentation and Methods for Astrophysics +1603.01009 Earth and Planetary Astrophysics +1603.01048 High Energy Astrophysical Phenomena +1603.01088 High Energy Astrophysical Phenomena +1603.01090 Other Computer Science +1603.01225 Mesoscale and Nanoscale Physics +1603.01522 Phenomenology +1603.01558 Theory +1603.01572 Astrophysics of Galaxies +1603.01588 Mesoscale and Nanoscale Physics +1603.01616 Astrophysics of Galaxies +1603.01632 Solar and Stellar Astrophysics +1603.01666 Solar and Stellar Astrophysics +1603.01703 Astrophysics of Galaxies +1603.01728 High Energy Astrophysical Phenomena +1603.01741 Solar and Stellar Astrophysics +1603.01862 Earth and Planetary Astrophysics +1603.01910 Astrophysics of Galaxies +1603.01933 High Energy Astrophysical Phenomena +1603.01969 Algebraic Topology +1603.02143 Phenomenology +1603.02202 Astrophysics of Galaxies +1603.02265 Populations and Evolution +1603.02302 Astrophysics of Galaxies +1603.02363 Astrophysics of Galaxies +1603.02369 Strongly Correlated Electrons +1603.02459 Accelerator Physics +1603.02697 Solar and Stellar Astrophysics +1603.02785 High Energy Astrophysical Phenomena +1603.02809 Solar and Stellar Astrophysics +1603.03090 Earth and Planetary Astrophysics +1603.03091 Cosmology and Nongalactic Astrophysics +1603.03166 Statistical Mechanics +1603.03559 Solar and Stellar Astrophysics +1603.03731 Solar and Stellar Astrophysics +1603.03801 Astrophysics of Galaxies +1603.04256 Solar and Stellar Astrophysics +1603.04282 Solar and Stellar Astrophysics +1603.04640 High Energy Astrophysical Phenomena +1603.04673 Solar and Stellar Astrophysics +1603.04768 Solar and Stellar Astrophysics +1603.04909 Astrophysics of Galaxies +1603.04998 High Energy Astrophysical Phenomena +1603.05166 Instrumentation and Methods for Astrophysics +1603.05244 Optimization and Control +1603.05302 +1603.05370 Solar and Stellar Astrophysics +1603.05622 Astrophysics of Galaxies +1603.06344 Information Theory +1603.06347 +1603.06355 High Energy Astrophysical Phenomena +1603.06395 Instrumentation and Methods for Astrophysics +1603.06578 Astrophysics of Galaxies +1603.06614 Phenomenology +1603.06670 Solar and Stellar Astrophysics +1603.06735 Solar and Stellar Astrophysics +1603.06745 Solar and Stellar Astrophysics +1603.06911 Earth and Planetary Astrophysics +1603.06993 +1603.07062 Solar and Stellar Astrophysics +1603.07189 Solar and Stellar Astrophysics +1603.07236 Sound +1603.07514 Theory +1603.07583 Solar and Stellar Astrophysics +1603.07652 Mesoscale and Nanoscale Physics +1603.07723 Cosmology and Nongalactic Astrophysics +1603.07880 Functional Analysis +1603.07985 Solar and Stellar Astrophysics +1603.08096 Astrophysics of Galaxies +1603.08391 Differential Geometry +1603.08435 Statistical Mechanics +1603.08529 Solar and Stellar Astrophysics +1603.08892 Astrophysics of Galaxies +1603.08943 Instrumentation and Methods for Astrophysics +1603.09004 Spectral Theory +1603.09053 Symplectic Geometry +1603.09167 Solar and Stellar Astrophysics +1603.09343 Solar and Stellar Astrophysics +1603.09593 Astrophysics of Galaxies +1603.09719 Earth and Planetary Astrophysics +1604.00144 Astrophysics of Galaxies +1604.00152 Solar and Stellar Astrophysics +1604.00887 High Energy Astrophysical Phenomena +1604.01205 Instrumentation and Methods for Astrophysics +1604.01241 Solar and Stellar Astrophysics +1604.01255 Phenomenology +1604.01307 Solar and Stellar Astrophysics +1604.01400 Astrophysics of Galaxies +1604.01510 Solar and Stellar Astrophysics +1604.01523 Astrophysics of Galaxies +1604.01563 Instrumentation and Methods for Astrophysics +1604.01571 High Energy Astrophysical Phenomena +1604.01923 Astrophysics of Galaxies +1604.01987 High Energy Astrophysical Phenomena +1604.02092 Phenomenology +1604.02150 Cosmology and Nongalactic Astrophysics +1604.02162 Solar and Stellar Astrophysics +1604.02176 Solar and Stellar Astrophysics +1604.02192 Astrophysics of Galaxies +1604.02252 Solar and Stellar Astrophysics +1604.02276 Solar and Stellar Astrophysics +1604.02310 Earth and Planetary Astrophysics +1604.02570 Materials Science +1604.02661 High Energy Astrophysical Phenomena +1604.02679 Solar and Stellar Astrophysics +1604.02816 Theory +1604.02901 Information Theory +1604.03018 Solar and Stellar Astrophysics +1604.03031 Solar and Stellar Astrophysics +1604.03059 Astrophysics of Galaxies +1604.03135 Earth and Planetary Astrophysics +1604.03143 Earth and Planetary Astrophysics +1604.03254 Cosmology and Nongalactic Astrophysics +1604.03372 High Energy Astrophysical Phenomena +1604.03556 High Energy Astrophysical Phenomena +1604.03559 Astrophysics of Galaxies +1604.03562 High Energy Astrophysical Phenomena +1604.03623 High Energy Astrophysical Phenomena +1604.03624 Astrophysics of Galaxies +1604.03631 Astrophysics of Galaxies +1604.03899 Solar and Stellar Astrophysics +1604.03942 Solar and Stellar Astrophysics +1604.03978 Astrophysics of Galaxies +1604.03994 Astrophysics of Galaxies +1604.04031 Astrophysics of Galaxies +1604.04284 Solar and Stellar Astrophysics +1604.04637 Optimization and Control +1604.04901 Geometric Topology +1604.04921 Numerical Analysis +1604.05040 Solar and Stellar Astrophysics +1604.05228 Numerical Analysis +1604.05230 Complex Variables +1604.05310 Astrophysics of Galaxies +1604.05388 Astrophysics of Galaxies +1604.05513 Data Analysis, Statistics and Probability +1604.05620 +1604.05644 High Energy Astrophysical Phenomena +1604.05682 Solar and Stellar Astrophysics +1604.05720 Astrophysics of Galaxies +1604.05721 High Energy Astrophysical Phenomena +1604.05730 High Energy Astrophysical Phenomena +1604.05897 Emerging Technologies +1604.05906 Earth and Planetary Astrophysics +1604.05946 High Energy Astrophysical Phenomena +1604.06106 Astrophysics of Galaxies +1604.06120 Cosmology and Nongalactic Astrophysics +1604.06266 Data Analysis, Statistics and Probability +1604.06593 Astrophysics of Galaxies +1604.06626 Learning +1604.06668 +1604.06857 Theory +1604.06955 Chemical Physics +1604.07097 Artificial Intelligence +1604.07103 Social and Information Networks +1604.07164 Symplectic Geometry +1604.07176 Biomolecules +1604.07183 Artificial Intelligence +1604.07223 Dynamical Systems +1604.07229 General Mathematics +1604.07264 Methodology +1604.07382 Probability +1604.07389 Materials Science +1604.07390 Metric Geometry +1604.07391 Data Analysis, Statistics and Probability +1604.07393 Functional Analysis +1604.07394 Fluid Dynamics +1604.07395 Fluid Dynamics +1604.07396 Functional Analysis +1604.07397 Other Statistics +1604.07398 High Energy Astrophysical Phenomena +1604.07402 Astrophysics of Galaxies +1604.07407 Computation and Language +1604.07417 Phenomenology +1604.07420 Differential Geometry +1604.07422 +1604.07426 Computational Engineering, Finance, and Science +1604.07427 Computational Engineering, Finance, and Science +1604.07429 Artificial Intelligence +1604.07432 Computational Complexity +1604.07434 Astrophysics of Galaxies +1604.07436 +1604.07442 Solar and Stellar Astrophysics +1604.07445 Combinatorics +1604.07446 Robotics +1604.07447 Classical Physics +1604.07449 Statistics Theory +1604.07452 +1604.07456 Combinatorics +1604.07457 Neurons and Cognition +1604.07458 Quantum Gases +1604.07462 +1604.07463 Machine Learning +1604.07464 Methodology +1604.07468 Computer Vision and Pattern Recognition +1604.07472 Rings and Algebras +1604.07474 Software Engineering +1604.07481 +1604.07482 Soft Condensed Matter +1604.07484 Learning +1604.07485 +1604.07488 Functional Analysis +1604.07492 Soft Condensed Matter +1604.07495 Number Theory +1604.07499 Computer Vision and Pattern Recognition +1604.07500 Algebraic Geometry +1604.07504 Space Physics +1604.07506 Information Theory +1604.07507 Computer Vision and Pattern Recognition +1604.07510 Cryptography and Security +1604.07517 +1604.07519 Multimedia +1604.07520 Statistics Theory +1604.07521 Information Retrieval +1604.07523 General Topology +1604.07526 Analysis of PDEs +1604.07528 Computer Vision and Pattern Recognition +1604.07530 Logic in Computer Science +1604.07533 Functional Analysis +1604.07534 Mesoscale and Nanoscale Physics +1604.07535 Data Structures and Algorithms +1604.07539 Networking and Internet Architecture +1604.07540 Computer Science and Game Theory +1604.07541 Mesoscale and Nanoscale Physics +1604.07546 Mesoscale and Nanoscale Physics +1604.07550 Quantum Algebra +1604.07553 Computational Complexity +1604.07554 Computer Vision and Pattern Recognition +1604.07555 Geometric Topology +1604.07556 Trading and Market Microstructure +1604.07559 Analysis of PDEs +1604.07563 Differential Geometry +1604.07564 Distributed, Parallel, and Cluster Computing +1604.07566 Number Theory +1604.07567 Materials Science +1604.07570 Functional Analysis +1604.07572 Networking and Internet Architecture +1604.07573 Phenomenology +1604.07575 Functional Analysis +1604.07578 +1604.07579 Popular Physics +1604.07584 High Energy Astrophysical Phenomena +1604.07585 Algebraic Geometry +1604.07586 Functional Analysis +1604.07591 Representation Theory +1604.07592 Complex Variables +1604.07593 Multimedia +1604.07596 Numerical Analysis +1604.07597 Complex Variables +1604.07606 Rings and Algebras +1604.07607 Numerical Analysis +1604.07615 Metric Geometry +1604.07618 Complex Variables +1604.07621 Networking and Internet Architecture +1604.07625 Artificial Intelligence +1604.07626 Cosmology and Nongalactic Astrophysics +1604.07627 Methodology +1604.07628 +1604.07629 Complex Variables +1604.07630 Metric Geometry +1604.07631 Probability +1604.07634 Computer Science and Game Theory +1604.07635 Dynamical Systems +1604.07639 +1604.07643 Analysis of PDEs +1604.07644 Number Theory +1604.07645 Chemical Physics +1604.07649 Tissues and Organs +1604.07651 Numerical Analysis +1604.07654 +1604.07656 Commutative Algebra +1604.07657 Analysis of PDEs +1604.07658 Optimization and Control +1604.07660 Human-Computer Interaction +1604.07661 Optimization and Control +1604.07667 Biomolecules +1604.07668 Numerical Analysis +1604.07669 Computer Vision and Pattern Recognition +1604.07670 Complex Variables +1604.07673 +1604.07675 Analysis of PDEs +1604.07676 Analysis of PDEs +1604.07679 Networking and Internet Architecture +1604.07681 Computer Vision and Pattern Recognition +1604.07686 Fluid Dynamics +1604.07689 Applications +1604.07691 Algebraic Geometry +1604.07694 Analysis of PDEs +1604.07695 Differential Geometry +1604.07698 Combinatorics +1604.07699 Analysis of PDEs +1604.07700 Solar and Stellar Astrophysics +1604.07702 Differential Geometry +1604.07704 Artificial Intelligence +1604.07705 Probability +1604.07707 Probability +1604.07709 Computational Physics +1604.07710 Combinatorics +1604.07715 Materials Science +1604.07724 Computational Complexity +1604.07725 Earth and Planetary Astrophysics +1604.07731 Geophysics +1604.07732 Spectral Theory +1604.07735 Dynamical Systems +1604.07736 Group Theory +1604.07737 Analysis of PDEs +1604.07738 Instrumentation and Detectors +1604.07739 Number Theory +1604.07744 +1604.07745 +1604.07746 Number Theory +1604.07748 Quantum Algebra +1604.07750 Statistics Theory +1604.07756 Analysis of PDEs +1604.07758 Functional Analysis +1604.07761 Astrophysics of Galaxies +1604.07764 +1604.07766 +1604.07768 Mesoscale and Nanoscale Physics +1604.07769 Networking and Internet Architecture +1604.07774 Number Theory +1604.07775 Atomic Physics +1604.07778 Physics and Society +1604.07780 Strongly Correlated Electrons +1604.07781 Social and Information Networks +1604.07782 General Finance +1604.07783 Physics and Society +1604.07784 Plasma Physics +1604.07787 Differential Geometry +1604.07788 Computer Vision and Pattern Recognition +1604.07789 Materials Science +1604.07792 Classical Physics +1604.07796 Neural and Evolutionary Computing +1604.07797 Rings and Algebras +1604.07800 Computational Complexity +1604.07803 Emerging Technologies +1604.07805 Distributed, Parallel, and Cluster Computing +1604.07806 Artificial Intelligence +1604.07809 Computation and Language +1604.07811 Combinatorics +1604.07819 Mesoscale and Nanoscale Physics +astro-ph/0605623 +gr-qc/9912119 +hep-th/0501138 Theory +hep-th/0608030 Theory +nucl-th/9909020 +0706.1929 General Mathematics +1111.7093 +1207.5845 Classical Analysis and ODEs +1211.2308 Complex Variables +1211.6182 Combinatorics +1301.0994 Logic +1301.1005 +1301.1602 Commutative Algebra +1301.3095 Biomolecules +1301.3136 Strongly Correlated Electrons +1301.3354 Mesoscale and Nanoscale Physics +1301.4486 +1301.4632 Algebraic Geometry +1301.4633 +1301.4853 Combinatorics +1301.5923 Numerical Analysis +1301.6459 Accelerator Physics +1301.6462 +1301.6642 Astrophysics of Galaxies +1301.7224 +1301.7249 Probability +1301.7493 Mesoscale and Nanoscale Physics +1301.7529 +1302.0062 Materials Science +1302.0160 Functional Analysis +1302.0471 Number Theory +1302.0588 +1302.1224 Digital Libraries +1302.1859 Algebraic Geometry +1302.2809 Differential Geometry +1302.3438 Probability +1302.3570 Artificial Intelligence +1302.3588 Artificial Intelligence +1302.4497 +1302.4507 Statistical Mechanics +1302.5654 Combinatorics +1302.5681 Computer Science and Game Theory +1302.6616 Astrophysics of Galaxies +1302.6621 Atomic Physics +1302.6838 Methodology +1303.0316 Cosmology and Nongalactic Astrophysics +1303.3028 Solar and Stellar Astrophysics +1305.2125 Classical Analysis and ODEs +1309.2720 Optimization and Control +1309.5034 Classical Physics +1310.5344 Algebraic Geometry +1310.5585 Statistical Mechanics +1311.6926 Number Theory +1401.3026 Optimization and Control +1403.6764 Optimization and Control +1405.0475 Analysis of PDEs +1405.0568 Logic +1406.1671 Combinatorics +1406.5725 Operator Algebras +1406.5907 Analysis of PDEs +1407.0678 Symplectic Geometry +1408.1262 Combinatorics +1408.5049 Materials Science +1408.5598 Probability +1409.0239 Number Theory +1409.0407 Portfolio Management +1409.0414 Strongly Correlated Electrons +1409.0745 Machine Learning +1409.1837 Theory +1409.1879 Software Engineering +1409.2169 Probability +1409.2721 Commutative Algebra +1409.3722 Astrophysics of Galaxies +1409.4250 Probability +1409.5202 Optimization and Control +1409.5547 Superconductivity +1409.5649 Quantum Gases +1409.5949 Rings and Algebras +1409.5950 Rings and Algebras +1409.5952 Rings and Algebras +1409.6032 Optimization and Control +1409.6033 Physics and Society +1409.6122 Probability +1409.6180 Rings and Algebras +1409.6464 Commutative Algebra +1409.7161 +1409.7368 Networking and Internet Architecture +1410.0580 Methodology +1410.1048 Theory +1410.1051 Astrophysics of Galaxies +1410.1518 Probability +1410.2188 Computer Vision and Pattern Recognition +1410.2347 Statistical Mechanics +1410.2387 Functional Analysis +1410.3422 Information Theory +1410.3946 Fluid Dynamics +1410.4312 Cryptography and Security +1410.4771 Cell Behavior +1410.5148 +1410.5515 +1410.5891 +1410.6113 +1410.6133 Chemical Physics +1410.6788 General Physics +1410.7626 Differential Geometry +1410.7829 Functional Analysis +1410.7845 Risk Management +1410.7866 Chemical Physics +1411.0049 Exactly Solvable and Integrable Systems +1411.0430 Strongly Correlated Electrons +1411.0617 Analysis of PDEs +1411.0908 General Topology +1411.1974 Theory +1411.2047 Performance +1411.2776 Operator Algebras +1411.3596 Cosmology and Nongalactic Astrophysics +1411.3938 Numerical Analysis +1411.5009 Complex Variables +1412.3789 Geometric Topology +1501.01818 Cosmology and Nongalactic Astrophysics +1501.02990 Machine Learning +1501.03474 Systems and Control +1501.04260 Systems and Control +1502.01179 Analysis of PDEs +1502.05028 Algebraic Geometry +1502.07384 Social and Information Networks +1503.00139 Combinatorics +1503.03034 Optimization and Control +1503.06403 Analysis of PDEs +1504.03364 Cosmology and Nongalactic Astrophysics +1504.05518 Classical Physics +1504.05734 Operator Algebras +1505.00195 Classical Analysis and ODEs +1506.02984 Statistics Theory +1506.03247 Plasma Physics +1506.03968 +1507.00256 Optics +1507.00844 Combinatorics +1507.01762 Computer Science and Game Theory +1507.01935 Earth and Planetary Astrophysics +1507.02465 Probability +1507.04006 Phenomenology +1507.07017 Social and Information Networks +1508.04761 +1508.06985 Optimization and Control +1508.07867 Algebraic Geometry +1509.01875 Mesoscale and Nanoscale Physics +1509.02139 Algebraic Geometry +1509.02495 +1509.05821 Combinatorics +1509.06446 Superconductivity +1509.09317 +1510.00505 Probability +1510.00506 Classical Analysis and ODEs +1510.05772 +1511.00657 +1511.01041 Differential Geometry +1511.01446 Distributed, Parallel, and Cluster Computing +1511.01529 General Finance +1511.03985 Algebraic Geometry +1511.04309 +1511.04858 Mesoscale and Nanoscale Physics +1511.05704 Materials Science +1511.08455 Dynamical Systems +1511.09203 Economics +1512.00196 Databases +1512.00412 +1512.03812 Numerical Analysis +1512.03975 Algebraic Geometry +1512.04286 Algebraic Geometry +1512.04290 Mesoscale and Nanoscale Physics +1512.04525 Theory +1512.04915 Theory +1512.05952 Mesoscale and Nanoscale Physics +1512.08612 Chemical Physics +1601.00389 Methodology +1601.00995 Mesoscale and Nanoscale Physics +1601.02323 Data Structures and Algorithms +1601.04734 Computers and Society +1601.05234 +1601.05399 Phenomenology +1601.06344 Applications +1601.06495 Classical Physics +1601.06784 High Energy Astrophysical Phenomena +1601.06971 Computation and Language +1602.01652 Social and Information Networks +1602.03072 Distributed, Parallel, and Cluster Computing +1602.03111 Social and Information Networks +1602.04484 Learning +1602.06228 High Energy Astrophysical Phenomena +1602.08667 Group Theory +1603.01524 Computer Science and Game Theory +1603.01786 Data Structures and Algorithms +1603.02628 Theory +1603.05013 Dynamical Systems +1603.05792 Optimization and Control +1603.06942 Phenomenology +1603.09026 Dynamical Systems +1604.02750 Networking and Internet Architecture +1604.02864 +1604.03387 Analysis of PDEs +1604.03870 Geometric Topology +1604.04392 Analysis of PDEs +1604.04445 Plasma Physics +1604.04647 Algebraic Topology +1604.06191 +1604.07222 +1604.07451 Statistics Theory +1604.08477 +1604.08903 Databases +1605.00230 Applications +1605.02755 Algebraic Geometry +1605.03031 Neurons and Cognition +1605.06398 Learning +1605.07420 Strongly Correlated Electrons +1605.07838 +1605.08697 Theory +1605.09649 Phenomenology +1605.09692 Statistical Mechanics +1606.00318 Statistical Mechanics +1606.00321 +1606.01841 Materials Science +1606.02414 Theory +1606.02489 Analysis of PDEs +1606.02771 Theory +1606.04155 Computation and Language +1606.04314 Functional Analysis +1606.04742 Analysis of PDEs +1606.04803 Functional Analysis +1606.06671 Geometric Topology +1606.07631 Cosmology and Nongalactic Astrophysics +1606.08011 Differential Geometry +1606.08769 Combinatorics +1607.00809 Optimization and Control +1607.01128 +1607.01285 Disordered Systems and Neural Networks +1607.01902 Optimization and Control +1607.02153 Phenomenology +1607.02817 Information Theory +1607.02938 Instrumentation and Methods for Astrophysics +1607.03467 Data Structures and Algorithms +1607.03815 Optimization and Control +1607.03938 Data Structures and Algorithms +1607.04229 Computational Complexity +1607.04877 Commutative Algebra +1607.04929 +1607.05342 Data Structures and Algorithms +1607.06470 Mesoscale and Nanoscale Physics +1607.06579 Analysis of PDEs +1608.00163 Physics and Society +1608.01700 Data Structures and Algorithms +1608.03517 Mesoscale and Nanoscale Physics +1608.04418 Social and Information Networks +1608.04444 Statistical Mechanics +1608.05239 Materials Science +1608.05430 Information Theory +1608.05835 Commutative Algebra +1608.07573 Distributed, Parallel, and Cluster Computing +1608.08104 Computer Vision and Pattern Recognition +1608.08183 High Energy Astrophysical Phenomena +1609.00285 Machine Learning +1609.00430 Chemical Physics +1609.00947 Commutative Algebra +1609.01271 Quantum Gases +1609.01931 Operator Algebras +1609.02091 Algebraic Geometry +1609.04112 Computer Vision and Pattern Recognition +1609.04524 +1609.04945 Superconductivity +1609.06482 Materials Science +1609.06720 Earth and Planetary Astrophysics +1609.08486 Distributed, Parallel, and Cluster Computing +1610.00036 Mesoscale and Nanoscale Physics +1610.00129 Cosmology and Nongalactic Astrophysics +1610.00695 Strongly Correlated Electrons +1610.01655 Social and Information Networks +1610.01969 Cryptography and Security +1610.01991 Cosmology and Nongalactic Astrophysics +1610.02297 Optics +1610.02643 Data Analysis, Statistics and Probability +1610.02990 Algebraic Geometry +1610.03714 +1610.05331 Probability +1610.05344 Number Theory +1610.05375 Optimization and Control +1610.05427 Numerical Analysis +1610.05743 Phenomenology +1610.06047 Representation Theory +1610.06489 Representation Theory +1610.06990 Commutative Algebra +1610.07267 Mesoscale and Nanoscale Physics +1610.07270 Complex Variables +1610.08337 +1610.08339 Algebraic Topology +1610.08636 Materials Science +1610.09096 Atomic Physics +1610.09147 Differential Geometry +1610.09366 Differential Geometry +1610.09758 Theory +1610.09985 Subcellular Processes +1611.00020 Computation and Language +1611.00021 Optics +1611.00045 Optics +1611.00077 Instrumentation and Detectors +1611.00099 +1611.00325 +1611.00378 Phenomenology +1611.00483 Computation and Language +1611.00601 Computation and Language +1611.00612 Chemical Physics +1611.00634 Mesoscale and Nanoscale Physics +1611.00659 Quantum Gases +1611.00670 Mesoscale and Nanoscale Physics +1611.00728 Lattice +1611.00760 +1611.00764 High Energy Astrophysical Phenomena +1611.00766 Instrumentation and Methods for Astrophysics +1611.00770 Disordered Systems and Neural Networks +1611.00771 Phenomenology +1611.00785 +1611.00786 Theory +1611.00788 Phenomenology +1611.00791 Cryptography and Security +1611.00796 Strongly Correlated Electrons +1611.00797 +1611.00798 Machine Learning +1611.00799 Astrophysics of Galaxies +1611.00800 Learning +1611.00801 Computation and Language +1611.00803 Instrumentation and Detectors +1611.00805 Atomic Physics +1611.00806 Fluid Dynamics +1611.00807 Fluid Dynamics +1611.00808 Theory +1611.00811 Earth and Planetary Astrophysics +1611.00812 Information Retrieval +1611.00813 Functional Analysis +1611.00815 Exactly Solvable and Integrable Systems +1611.00817 Machine Learning +1611.00819 Statistics Theory +1611.00820 Experiment +1611.00821 Experiment +1611.00822 Computer Vision and Pattern Recognition +1611.00824 Rings and Algebras +1611.00826 Statistics Theory +1611.00827 Computational Complexity +1611.00828 Representation Theory +1611.00829 Data Structures and Algorithms +1611.00833 Biomolecules +1611.00834 Neurons and Cognition +1611.00836 Biomolecules +1611.00837 Cryptography and Security +1611.00839 Solar and Stellar Astrophysics +1611.00840 Data Structures and Algorithms +1611.00842 Biological Physics +1611.00843 Statistics Theory +1611.00844 Optimization and Control +1611.00846 +1611.00848 Group Theory +1611.00851 Computer Vision and Pattern Recognition +1611.00853 Theory +1611.00854 Computational Physics +1611.00856 Probability +1611.00860 Programming Languages +1611.00861 Networking and Internet Architecture +1611.00862 Learning +1611.00864 Neural and Evolutionary Computing +1611.00865 +1611.00866 Machine Learning +1611.00867 Biological Physics +1611.00868 Statistics Theory +1611.00869 Multimedia +1611.00870 Plasma Physics +1611.00872 Human-Computer Interaction +1611.00873 Artificial Intelligence +1611.00875 Algebraic Geometry +1611.00876 Materials Science +1611.00877 Cosmology and Nongalactic Astrophysics +1611.00878 Mesoscale and Nanoscale Physics +1611.00882 Soft Condensed Matter +1611.00883 Accelerator Physics +1611.00884 Statistics Theory +1611.00885 Mathematical Finance +1611.00887 Mesoscale and Nanoscale Physics +1611.00889 Robotics +1611.00891 Materials Science +1611.00893 Differential Geometry +1611.00894 Materials Science +1611.00897 Statistical Finance +1611.00898 Data Structures and Algorithms +1611.00900 Mesoscale and Nanoscale Physics +1611.00902 Instrumentation and Methods for Astrophysics +1611.00903 Materials Science +1611.00905 Fluid Dynamics +1611.00908 Strongly Correlated Electrons +1611.00909 Numerical Analysis +1611.00911 Data Structures and Algorithms +1611.00912 Lattice +1611.00916 Differential Geometry +1611.00917 +1611.00920 Differential Geometry +1611.00921 Lattice +1611.00922 Disordered Systems and Neural Networks +1611.00923 Materials Science +1611.00924 Optics +1611.00925 Differential Geometry +1611.00926 Analysis of PDEs +1611.00928 Classical Analysis and ODEs +1611.00929 Spectral Theory +1611.00932 Rings and Algebras +1611.00934 Computational Complexity +1611.00935 Mesoscale and Nanoscale Physics +1611.00937 Group Theory +1611.00939 Computer Vision and Pattern Recognition +1611.00944 Analysis of PDEs +1611.00946 Distributed, Parallel, and Cluster Computing +1611.00947 Software Engineering +1611.00948 Fluid Dynamics +1611.00949 Statistical Mechanics +1611.00950 Mesoscale and Nanoscale Physics +1611.00951 Soft Condensed Matter +1611.00959 Probability +1611.00960 Computer Vision and Pattern Recognition +1611.00961 Exactly Solvable and Integrable Systems +1611.00962 Machine Learning +1611.00965 Statistics Theory +1611.00966 Sound +1611.00968 Numerical Analysis +1611.00970 General Finance +1611.00971 Algebraic Geometry +1611.00974 Materials Science +1611.00976 Algebraic Geometry +1611.00977 +1611.00978 Plasma Physics +1611.00979 Numerical Analysis +1611.00981 Combinatorics +1611.00982 Group Theory +1611.00983 Analysis of PDEs +1611.00984 Analysis of PDEs +1611.00985 Disordered Systems and Neural Networks +1611.00987 Complex Variables +1611.00988 Rings and Algebras +1611.00989 Analysis of PDEs +1611.00991 Probability +1611.00992 Data Structures and Algorithms +1611.00993 Optimization and Control +1611.00994 Fluid Dynamics +1611.00995 Computation and Language +1611.00996 Optimization and Control +1611.01002 Probability +1611.01003 +1611.01004 Combinatorics +1611.01006 Multiagent Systems +1611.01008 Solar and Stellar Astrophysics +1611.01010 Combinatorics +1611.01011 Algebraic Geometry +1611.01013 Theory +1611.01016 Quantum Algebra +1611.01017 Data Structures and Algorithms +1611.01021 Phenomenology +1611.01022 Lattice +1611.01023 General Physics +1611.01024 Applications +1611.01025 Fluid Dynamics +1611.01030 Information Theory +1611.01031 Data Analysis, Statistics and Probability +1611.01032 Data Structures and Algorithms +1611.01033 Atomic Physics +1611.01034 Lattice +1611.01036 Adaptation and Self-Organizing Systems +1611.01037 Quantitative Methods +1611.01038 Group Theory +1611.01039 Mesoscale and Nanoscale Physics +1611.01042 Information Theory +1611.01047 Chemical Physics +1611.01051 Optimization and Control +1611.01052 Operator Algebras +1611.01053 Strongly Correlated Electrons +1611.01054 Soft Condensed Matter +1611.01055 Learning +1611.01059 Spectral Theory +1611.01060 Learning +1611.01061 Combinatorics +1611.01065 Differential Geometry +1611.01066 Methodology +1611.01067 Astrophysics of Galaxies +1611.01068 +1611.01069 Computation +1611.01073 Quantum Gases +1611.01074 Atomic and Molecular Clusters +1611.01075 Algebraic Geometry +1611.01077 Number Theory +1611.01079 Probability +1611.01080 Artificial Intelligence +1611.01081 Differential Geometry +1611.01083 Computation and Language +1611.01086 Social and Information Networks +1611.01087 Phenomenology +1611.01089 Instrumentation and Methods for Astrophysics +1611.01091 Algebraic Geometry +1611.01092 Algebraic Geometry +1611.01093 Networking and Internet Architecture +1611.01096 Machine Learning +1611.01097 Phenomenology +1611.01099 Statistical Mechanics +1611.01100 Numerical Analysis +1611.01101 Computation and Language +1611.01102 Logic +1611.01103 Group Theory +1611.01106 Mesoscale and Nanoscale Physics +1611.01107 Probability +1611.01110 Mesoscale and Nanoscale Physics +1611.01111 +1611.01112 Phenomenology +1611.01113 Solar and Stellar Astrophysics +1611.01115 Probability +1611.01117 Phenomenology +1611.01118 +1611.01120 Mathematical Software +1611.01121 Solar and Stellar Astrophysics +1611.01127 Plasma Physics +1611.01128 Materials Science +1611.01129 Methodology +1611.01130 Information Theory +1611.01135 Phenomenology +1611.01136 Experiment +1611.01137 Databases +1611.01139 +1611.01142 Learning +1611.01147 Probability +1611.01148 Computers and Society +1611.01149 Strongly Correlated Electrons +0808.1490 Analysis of PDEs +0902.0087 Symplectic Geometry +0903.0221 Analysis of PDEs +1006.5024 Human-Computer Interaction +1011.4243 K-Theory and Homology +1109.1857 Functional Analysis +1109.5544 Metric Geometry +1112.0232 Algebraic Geometry +1208.0842 Other Condensed Matter +1208.3410 Classical Analysis and ODEs +1209.6421 Combinatorics +1210.0936 Optics +1212.2601 +1302.3320 Dynamical Systems +1306.0316 Complex Variables +1307.0676 Representation Theory +1307.6316 Combinatorics +1308.3359 Analysis of PDEs +1310.0112 Physics and Society +1310.6281 Probability +1311.0384 Optics +1311.5203 Algebraic Topology +1312.0256 Information Theory +1312.5549 Algebraic Geometry +1312.5759 Complex Variables +1312.7318 Differential Geometry +1401.7396 Exactly Solvable and Integrable Systems +1402.1472 Computation +1402.3886 Classical Analysis and ODEs +1402.4754 Combinatorics +1402.5523 Classical Analysis and ODEs +1402.6187 Atmospheric and Oceanic Physics +1403.5127 Algebraic Geometry +1404.5101 Quantum Algebra +1404.7523 Fluid Dynamics +1406.6110 +1407.0184 Geometric Topology +1407.0465 Optimization and Control +1407.2086 +1407.4786 Classical Analysis and ODEs +1407.5598 Probability +1408.0534 Methodology +1408.2313 Computer Vision and Pattern Recognition +1408.3242 Chemical Physics +1408.4235 Combinatorics +1408.6522 Theory +1410.0173 +1410.3571 Optimization and Control +1410.7870 Number Theory +1411.0608 Optics +1411.2640 Algebraic Geometry +1411.3609 Statistics Theory +1412.0309 +1412.2571 Logic +1412.6915 Cosmology and Nongalactic Astrophysics +1501.02865 +1501.05352 Learning +1501.06624 Combinatorics +1502.01407 Differential Geometry +1502.01804 Analysis of PDEs +1502.02113 Superconductivity +1502.03361 Phenomenology +1503.02505 Differential Geometry +1503.03046 Operator Algebras +1503.04857 Theory +1503.06064 Metric Geometry +1503.06493 Classical Analysis and ODEs +1503.06987 Phenomenology +1503.07555 Complex Variables +1503.08668 Algebraic Geometry +1504.03908 Phenomenology +1504.07251 +1505.02051 Algebraic Geometry +1505.04898 Methodology +1505.04916 Complex Variables +1505.05803 Biological Physics +1505.07830 Theory +1505.07908 +1506.00916 K-Theory and Homology +1506.05711 Algebraic Topology +1506.06674 Analysis of PDEs +1506.06742 +1506.07437 Combinatorics +1506.09146 Analysis of PDEs +1507.00960 Phenomenology +1507.01288 Commutative Algebra +1507.03566 Optimization and Control +1507.03651 Phenomenology +1507.03974 Phenomenology +1507.04061 +1507.04629 Analysis of PDEs +1507.06699 Optics +1507.07029 Fluid Dynamics +1507.08874 Computers and Society +1507.08940 Physics and Society +1508.00366 Theory +1508.00768 Materials Science +1508.00785 High Energy Astrophysical Phenomena +1508.02049 High Energy Astrophysical Phenomena +1508.05397 Phenomenology +1508.05433 Combinatorics +1508.05669 Probability +1508.07204 Phenomenology +1508.07709 Computation and Language +1509.01311 Instrumentation and Detectors +1509.02260 Numerical Analysis +1509.03075 Networking and Internet Architecture +1509.05786 Lattice +1509.06861 Strongly Correlated Electrons +1509.07216 Optics +1509.08535 Statistics Theory +1510.00096 Astrophysics of Galaxies +1510.00758 +1510.01175 Learning +1510.02841 +1510.04280 Cosmology and Nongalactic Astrophysics +1510.04397 Optics +1510.05216 Programming Languages +1510.06842 Materials Science +1510.08815 Cosmology and Nongalactic Astrophysics +1511.00259 Mesoscale and Nanoscale Physics +1511.00798 Optics +1511.01108 Theory +1511.02453 Algebraic Geometry +1511.04579 Dynamical Systems +1511.06060 Superconductivity +1511.06685 Soft Condensed Matter +1511.06800 +1511.06805 Differential Geometry +1512.04406 Quantum Gases +1512.04621 Functional Analysis +1512.04920 Phenomenology +1512.07139 Methodology +1512.09354 Optimization and Control +1601.00667 Probability +1601.00914 Number Theory +1601.01266 General Mathematics +1601.01413 Statistics Theory +1601.02383 Instrumentation and Methods for Astrophysics +1601.03694 +1601.04114 Learning +1601.04320 Quantum Algebra +1601.04395 +1601.04560 Social and Information Networks +1601.04886 Number Theory +1601.04967 Information Theory +1601.05938 Cosmology and Nongalactic Astrophysics +1601.07315 Information Theory +1601.07585 +1601.07991 +1602.00433 Materials Science +1602.00516 Phenomenology +1602.00583 Phenomenology +1602.00981 Programming Languages +1602.01071 Analysis of PDEs +1602.01204 Materials Science +1602.01370 Applications +1602.01391 Combinatorics +1602.01438 Functional Analysis +1602.01476 Phenomenology +1602.01484 Probability +1602.01563 +1602.01614 Networking and Internet Architecture +1602.01624 +1602.01644 Graphics +1602.01830 Instrumentation and Methods for Astrophysics +1602.01832 +1602.01841 Astrophysics of Galaxies +1602.01842 Astrophysics of Galaxies +1602.01844 Astrophysics of Galaxies +1602.01845 Astrophysics of Galaxies +1602.01852 Geometric Topology +1602.01855 Materials Science +1602.01859 +1602.01860 Probability +1602.01862 Cosmology and Nongalactic Astrophysics +1602.01864 Classical Analysis and ODEs +1602.01866 General Topology +1602.01867 Data Structures and Algorithms +1602.01868 Robotics +1602.01869 Geometric Topology +1602.01882 Phenomenology +1602.01883 Systems and Control +1602.01891 Robotics +1602.01892 Analysis of PDEs +1602.01893 +1602.01895 Computer Vision and Pattern Recognition +1602.01897 Astrophysics of Galaxies +1602.01898 Instrumentation and Detectors +1602.01902 Functional Analysis +1602.01903 Number Theory +1602.01904 Digital Libraries +1602.01909 High Energy Astrophysical Phenomena +1602.01910 Learning +1602.01911 Information Theory +1602.01913 Graphics +1602.01914 Astrophysics of Galaxies +1602.01915 Applications +1602.01919 Operator Algebras +1602.01920 K-Theory and Homology +1602.01923 Dynamical Systems +1602.01927 Computer Vision and Pattern Recognition +1602.01928 Atomic Physics +1602.01929 Computation and Language +1602.01930 Social and Information Networks +1602.01932 Optimization and Control +1602.01936 Solar and Stellar Astrophysics +1602.01937 Cryptography and Security +1602.01940 Computer Vision and Pattern Recognition +1602.01946 Analysis of PDEs +1602.01948 Classical Analysis and ODEs +1602.01951 Statistics Theory +1602.01954 Symplectic Geometry +1602.01955 Statistics Theory +1602.01960 Statistical Finance +1602.01963 Computer Science and Game Theory +1602.01964 Complex Variables +1602.01966 High Energy Astrophysical Phenomena +1602.01969 Optimization and Control +1602.01970 Computer Science and Game Theory +1602.01971 Artificial Intelligence +1602.01973 Optimization and Control +1602.01977 Algebraic Geometry +1602.01980 Number Theory +1602.01984 Number Theory +1602.01988 Phenomenology +1602.01992 Combinatorics +1602.01995 Information Theory +1602.01998 +1602.02000 Solar and Stellar Astrophysics +1602.02002 Combinatorics +1602.02004 Software Engineering +1602.02006 Differential Geometry +1602.02007 Probability +1602.02011 Pricing of Securities +1602.02013 Mesoscale and Nanoscale Physics +1602.02016 Logic +1602.02019 Differential Geometry +1602.02021 +1602.02022 Computer Vision and Pattern Recognition +1602.02023 Computer Vision and Pattern Recognition +1602.02032 Multiagent Systems +1602.02033 Physics Education +1602.02041 Networking and Internet Architecture +1602.02043 Operator Algebras +1602.02044 Instrumentation and Methods for Astrophysics +1602.02045 Optimization and Control +1602.02046 Computers and Society +1602.02047 Computation and Language +1602.02048 Exactly Solvable and Integrable Systems +1602.02049 Symbolic Computation +1602.02055 Applications +1602.02056 Mesoscale and Nanoscale Physics +1602.02057 Information Theory +1602.02059 Probability +1602.02060 Differential Geometry +1602.02066 Computer Science and Game Theory +1602.02069 Combinatorics +1602.02073 Number Theory +1602.02074 Algebraic Geometry +1602.02076 Differential Geometry +1602.02077 Medical Physics +1602.02078 Chemical Physics +1602.02079 General Physics +1602.02081 Probability +1602.02083 Materials Science +1602.02084 Functional Analysis +1602.02085 Combinatorics +1602.02086 Artificial Intelligence +1602.02089 Artificial Intelligence +1602.02091 Networking and Internet Architecture +1602.02094 Algebraic Geometry +1602.02098 Dynamical Systems +1602.02101 Learning +1602.02108 Probability +1602.02114 Methodology +1602.02117 Medical Physics +1602.02118 Analysis of PDEs +1602.02123 Learning +1602.02124 Numerical Analysis +1602.02126 Dynamical Systems +1602.02127 Algebraic Geometry +1602.02128 Analysis of PDEs +1602.02129 Computational Complexity +1602.02130 Computer Vision and Pattern Recognition +1602.02131 +1602.02132 Numerical Analysis +1602.02133 Computation and Language +1602.02134 Complex Variables +1602.02136 Learning +1602.02137 Applications +1602.02142 Combinatorics +1602.02143 High Energy Astrophysical Phenomena +1602.02148 Cryptography and Security +hep-ph/9603254 Phenomenology +0805.1521 +0902.2900 Plasma Physics +0907.0289 Algebraic Geometry +0908.2799 Algebraic Geometry +1007.3028 Algebraic Geometry +1012.0389 +1102.3848 Mesoscale and Nanoscale Physics +1105.1468 Probability +1109.3520 Quantum Algebra +1110.0539 Cosmology and Nongalactic Astrophysics +1202.3896 Algebraic Geometry +1210.6158 Atomic Physics +1210.6921 Representation Theory +1211.3112 Solar and Stellar Astrophysics +1303.1045 +1303.2997 Combinatorics +1304.6667 Statistical Mechanics +1305.1265 Algebraic Geometry +1305.3073 Algebraic Geometry +1306.0913 Cosmology and Nongalactic Astrophysics +1306.2265 Solar and Stellar Astrophysics +1307.0382 Algebraic Geometry +1307.5718 Algebraic Geometry +1307.6961 Solar and Stellar Astrophysics +1307.8356 Rings and Algebras +1308.4526 Logic in Computer Science +1309.7548 Analysis of PDEs +1310.1386 Combinatorics +1311.2982 Operator Algebras +1311.3249 Number Theory +1311.5051 Combinatorics +1312.1680 Combinatorics +1401.4246 Strongly Correlated Electrons +1402.5154 Algebraic Geometry +1402.5649 Numerical Analysis +1403.6851 Probability +1404.1197 Analysis of PDEs +1404.1510 Dynamical Systems +1404.3210 High Energy Astrophysical Phenomena +1404.5153 +1404.6407 Algebraic Geometry +1405.2183 Statistics Theory +1405.4066 +1405.5765 Differential Geometry +1405.6609 Rings and Algebras +1406.0222 Differential Geometry +1406.1491 Algebraic Geometry +1406.7144 Dynamical Systems +1407.3214 High Energy Astrophysical Phenomena +1407.7125 Data Structures and Algorithms +1407.7367 +1407.7986 Differential Geometry +1408.1288 Combinatorics +1408.1447 Analysis of PDEs +1408.3947 Dynamical Systems +1408.4033 Operator Algebras +1409.3564 Group Theory +1409.8229 Algebraic Geometry +1410.3473 High Energy Astrophysical Phenomena +1410.4532 Combinatorics +1410.6777 Strongly Correlated Electrons +1411.1605 Category Theory +1412.2406 Geometric Topology +1412.2418 Operator Algebras +1501.01999 Category Theory +1501.02937 Astrophysics of Galaxies +1501.04841 Differential Geometry +1501.06687 Phenomenology +1502.03193 Methodology +1502.04590 Representation Theory +1502.05644 Quantum Gases +1503.00607 Commutative Algebra +1503.01878 Cosmology and Nongalactic Astrophysics +1503.05536 Dynamical Systems +1504.02427 Logic +1504.03320 Astrophysics of Galaxies +1504.03755 Algebraic Geometry +1504.06198 Representation Theory +1504.06234 Combinatorics +1504.07873 Biological Physics +1504.07914 Complex Variables +1505.00183 Differential Geometry +1505.00984 Group Theory +1505.03809 +1505.03997 Solar and Stellar Astrophysics +1505.05176 Solar and Stellar Astrophysics +1505.07737 Combinatorics +1505.08164 Quantum Gases +1506.00410 Phenomenology +1506.01168 Algebraic Geometry +1506.02499 Phenomenology +1506.02860 Number Theory +1506.03455 Strongly Correlated Electrons +1506.04162 Logic +1506.04379 Number Theory +1506.04408 Solar and Stellar Astrophysics +1506.06111 +1506.07102 +1506.08784 General Physics +1507.00647 Analysis of PDEs +1507.03514 Cosmology and Nongalactic Astrophysics +1507.04120 Soft Condensed Matter +1507.04263 +1507.04479 Materials Science +1507.04582 Algebraic Geometry +1507.04742 Theory +1507.04878 Optimization and Control +1507.05323 +1507.05909 Cosmology and Nongalactic Astrophysics +1507.06106 Physics and Society +1507.07227 Numerical Analysis +1507.08841 Group Theory +1508.00101 +1508.01271 Mesoscale and Nanoscale Physics +1508.02537 +1508.04440 Theory +1508.04538 Statistical Mechanics +1508.05294 Rings and Algebras +1508.06031 Number Theory +1508.06392 Materials Science +1508.06570 Information Theory +1509.00094 +1509.00332 Number Theory +1509.00402 Geometric Topology +1509.01473 Dynamical Systems +1509.04358 Strongly Correlated Electrons +1509.04532 Geometric Topology +1509.05036 Astrophysics of Galaxies +1509.05050 Superconductivity +1509.05685 Theory +1509.05799 Quantum Gases +1509.05930 Strongly Correlated Electrons +1509.05997 Astrophysics of Galaxies +1509.07148 Astrophysics of Galaxies +1509.08159 Experiment +1509.08473 Astrophysics of Galaxies +1509.08541 Astrophysics of Galaxies +1509.08613 Strongly Correlated Electrons +1509.09304 Astrophysics of Galaxies +1510.00507 Astrophysics of Galaxies +1510.00873 Astrophysics of Galaxies +1510.01157 Probability +1510.01929 Astrophysics of Galaxies +1510.02476 Earth and Planetary Astrophysics +1510.02578 Solar and Stellar Astrophysics +1510.03181 Astrophysics of Galaxies +1510.03425 Strongly Correlated Electrons +1510.03487 Astrophysics of Galaxies +1510.04023 High Energy Astrophysical Phenomena +1510.05647 Cosmology and Nongalactic Astrophysics +1510.05989 Solar and Stellar Astrophysics +1510.06006 Astrophysics of Galaxies +1510.06558 Mesoscale and Nanoscale Physics +1510.06822 Dynamical Systems +1510.07200 Experiment +1510.07929 Cosmology and Nongalactic Astrophysics +1510.08127 Experiment +1511.00011 Astrophysics of Galaxies +1511.00552 +1511.02002 Astrophysics of Galaxies +1511.03189 +1511.03329 Theory +1511.04454 Cosmology and Nongalactic Astrophysics +1511.04492 Mesoscale and Nanoscale Physics +1511.04787 Solar and Stellar Astrophysics +1511.05143 Theory +1511.05739 High Energy Astrophysical Phenomena +1511.05811 Astrophysics of Galaxies +1511.06293 Phenomenology +1511.06741 Cosmology and Nongalactic Astrophysics +1511.07420 Phenomenology +1511.07976 Atomic Physics +1511.09166 Populations and Evolution +1511.09195 Materials Science +1512.01122 Mesoscale and Nanoscale Physics +1512.01304 Astrophysics of Galaxies +1512.01722 Computer Vision and Pattern Recognition +1512.02221 Astrophysics of Galaxies +1512.02496 Combinatorics +1512.03254 Representation Theory +1512.03333 +1512.03801 Superconductivity +1512.03827 General Physics +1512.05399 Theory +1512.05495 +1512.06339 Differential Geometry +1512.06605 Analysis of PDEs +1512.06688 Strongly Correlated Electrons +1512.08711 Dynamical Systems +1512.09116 Solar and Stellar Astrophysics +1601.00512 Statistical Mechanics +1601.00889 Probability +1601.01718 Solar and Stellar Astrophysics +1601.02474 Phenomenology +1601.03616 Theory +1601.03811 Differential Geometry +1601.03967 Plasma Physics +1601.04017 Data Structures and Algorithms +1601.04343 +1601.04480 Group Theory +1601.04650 Machine Learning +1601.05185 +1601.05380 Group Theory +1601.05400 Distributed, Parallel, and Cluster Computing +1601.05627 Experiment +1601.05681 Materials Science +1601.05688 +1601.05821 Astrophysics of Galaxies +1601.06117 Phenomenology +1601.06515 Optimization and Control +1601.07102 +1601.07135 Mesoscale and Nanoscale Physics +1601.07290 +1601.07516 +1601.07579 Functional Analysis +1601.07823 +1602.00461 Probability +1602.00902 Solar and Stellar Astrophysics +1602.00920 Optimization and Control +1602.01314 +1602.01345 Machine Learning +1602.01489 Mesoscale and Nanoscale Physics +1602.01562 Mesoscale and Nanoscale Physics +1602.02281 Pattern Formation and Solitons +1602.03184 High Energy Astrophysical Phenomena +1602.03285 Materials Science +1602.03336 +1602.03790 High Energy Astrophysical Phenomena +1602.04150 Strongly Correlated Electrons +1602.04253 Dynamical Systems +1602.04455 +1602.04634 Theory +1602.04671 Populations and Evolution +1602.04758 Numerical Analysis +1602.05554 High Energy Astrophysical Phenomena +1602.05604 Analysis of PDEs +1602.06096 Mesoscale and Nanoscale Physics +1602.06477 +1602.06984 Phenomenology +1602.07282 Cosmology and Nongalactic Astrophysics +1602.07727 Phenomenology +1602.07762 Information Theory +1602.07903 Theory +1602.08038 +1602.08089 Strongly Correlated Electrons +1602.08320 Mesoscale and Nanoscale Physics +1602.08671 Neural and Evolutionary Computing +1602.08767 Astrophysics of Galaxies +1603.00361 Formal Languages and Automata Theory +1603.00535 +1603.00624 Materials Science +1603.01130 Mesoscale and Nanoscale Physics +1603.02405 Solar and Stellar Astrophysics +1603.03223 High Energy Astrophysical Phenomena +1603.03265 Optimization and Control +1603.03365 Strongly Correlated Electrons +1603.03858 +1603.04021 Algebraic Topology +1603.04142 Information Theory +1603.04163 Information Theory +1603.04183 High Energy Astrophysical Phenomena +1603.04426 Theory +1603.04662 Computational Physics +1603.04921 Strongly Correlated Electrons +1603.04999 Mesoscale and Nanoscale Physics +1603.05070 Phenomenology +1603.05074 Phenomenology +1603.05160 Astrophysics of Galaxies +1603.06003 Disordered Systems and Neural Networks +1603.06471 Mesoscale and Nanoscale Physics +1603.06796 Statistical Mechanics +1603.07204 Atomic Physics +1603.07755 Materials Science +1603.09336 Theory +1603.09339 Astrophysics of Galaxies +1603.09348 Astrophysics of Galaxies +1604.00020 Astrophysics of Galaxies +1604.00122 Strongly Correlated Electrons +1604.00207 Mesoscale and Nanoscale Physics +1604.00342 Cosmology and Nongalactic Astrophysics +1604.00410 Quantum Gases +1604.00649 +1604.00690 Biological Physics +1604.00789 +1604.00948 Statistical Mechanics +1604.01297 +1604.01418 Astrophysics of Galaxies +1604.01444 Experiment +1604.02117 Phenomenology +1604.02456 Astrophysics of Galaxies +1604.02853 +1604.02882 +1604.03425 Systems and Control +1604.03616 Statistical Mechanics +1604.03679 Atomic Physics +1604.03944 Theory +1604.04311 Mesoscale and Nanoscale Physics +1604.04379 Analysis of PDEs +1604.04859 Computer Science and Game Theory +1604.04908 Experiment +1604.05010 High Energy Astrophysical Phenomena +1604.05175 Physics and Society +1604.05292 Strongly Correlated Electrons +1604.05328 Phenomenology +1604.05719 Earth and Planetary Astrophysics +1604.06402 +1604.07010 Astrophysics of Galaxies +1604.07404 Astrophysics of Galaxies +1604.07475 Metric Geometry +1604.08097 Materials Science +1604.08210 Astrophysics of Galaxies +1604.08376 Statistical Mechanics +1604.08536 Phenomenology +1604.08770 Astrophysics of Galaxies +1604.08787 Instrumentation and Methods for Astrophysics +1605.00009 Astrophysics of Galaxies +1605.00140 Phenomenology +1605.00570 Mesoscale and Nanoscale Physics +1605.00745 Quantum Gases +1605.01495 Materials Science +1605.01550 Mesoscale and Nanoscale Physics +1605.01912 Phenomenology +1605.02036 Cosmology and Nongalactic Astrophysics +1605.02159 Mesoscale and Nanoscale Physics +1605.02285 Cosmology and Nongalactic Astrophysics +1605.02574 Solar and Stellar Astrophysics +1605.02731 Earth and Planetary Astrophysics +1605.03026 Solar and Stellar Astrophysics +1605.03458 +1605.03482 Quantitative Methods +1605.03728 Soft Condensed Matter +1605.03928 Cosmology and Nongalactic Astrophysics +1605.03962 Earth and Planetary Astrophysics +1605.04145 Earth and Planetary Astrophysics +1605.04170 Superconductivity +1605.04289 Combinatorics +1605.04297 Combinatorics +1605.04525 +1605.04607 Astrophysics of Galaxies +1605.04967 Theory +1605.05523 Atomic Physics +1605.05582 Astrophysics of Galaxies +1605.05880 Materials Science +1605.05995 +1605.06001 Mesoscale and Nanoscale Physics +1605.06016 Atomic Physics +1605.06116 Solar and Stellar Astrophysics +1605.06175 Optics +1605.06273 Statistical Mechanics +1605.06390 +1605.06781 Optics +1605.06941 Superconductivity +1605.07119 Superconductivity +1605.07342 Phenomenology +1605.07382 Solar and Stellar Astrophysics +1605.07438 +1605.07441 Mesoscale and Nanoscale Physics +1605.07552 +1605.07668 Solar and Stellar Astrophysics +1605.07997 Metric Geometry +1605.08148 +1605.08235 Mesoscale and Nanoscale Physics +1605.08237 Mesoscale and Nanoscale Physics +1605.08341 Cosmology and Nongalactic Astrophysics +1605.08439 Cosmology and Nongalactic Astrophysics +1605.08468 Materials Science +1605.08661 Earth and Planetary Astrophysics +1605.08783 High Energy Astrophysical Phenomena +1605.08787 Strongly Correlated Electrons +1605.09048 Strongly Correlated Electrons +1605.09056 Cosmology and Nongalactic Astrophysics +1605.09105 High Energy Astrophysical Phenomena +1605.09286 +1605.09321 Information Theory +1605.09443 Mesoscale and Nanoscale Physics +1605.09732 Cosmology and Nongalactic Astrophysics +1606.00436 +1606.00437 +1606.00452 Quantum Gases +1606.00689 Experiment +1606.01058 Phenomenology +1606.01103 Earth and Planetary Astrophysics +1606.01347 Chemical Physics +1606.01502 Probability +1606.01529 +1606.01640 Astrophysics of Galaxies +1606.01747 Phenomenology +1606.01773 Mesoscale and Nanoscale Physics +1606.02281 Mesoscale and Nanoscale Physics +1606.02300 Solar and Stellar Astrophysics +1606.02364 Optics +1606.02699 Experiment +1606.02715 Astrophysics of Galaxies +1606.02742 Lattice +1606.02752 Solar and Stellar Astrophysics +1606.03037 Solar and Stellar Astrophysics +1606.03069 +1606.03396 Quantum Gases +1606.03681 Solar and Stellar Astrophysics +1606.03996 Astrophysics of Galaxies +1606.04536 Astrophysics of Galaxies +1606.04574 High Energy Astrophysical Phenomena +1606.04711 High Energy Astrophysical Phenomena +1606.04811 Solar and Stellar Astrophysics +1606.04813 Atomic Physics +1606.04923 Solar and Stellar Astrophysics +1606.04937 Strongly Correlated Electrons +1606.05318 Materials Science +1606.05377 Astrophysics of Galaxies +1606.05412 Optics +1606.05489 Solar and Stellar Astrophysics +1606.05651 Astrophysics of Galaxies +1606.05680 Mesoscale and Nanoscale Physics +1606.05840 Atomic Physics +1606.05841 Instrumentation and Methods for Astrophysics +1606.06132 Solar and Stellar Astrophysics +1606.06188 +1606.06296 Theory +1606.06300 Mesoscale and Nanoscale Physics +1606.06413 Analysis of PDEs +1606.06471 Fluid Dynamics +1606.06793 Learning +1606.06804 Representation Theory +1606.07066 Astrophysics of Galaxies +1606.07192 Astrophysics of Galaxies +1606.07266 Earth and Planetary Astrophysics +1606.07447 High Energy Astrophysical Phenomena +1606.07636 Learning +1606.07725 High Energy Astrophysical Phenomena +1606.07942 Astrophysics of Galaxies +1606.08051 Learning +1606.08225 Metric Geometry +1606.08423 High Energy Astrophysical Phenomena +1606.08499 Phenomenology +1606.08505 +1606.08520 High Energy Astrophysical Phenomena +1606.08562 Social and Information Networks +1606.08782 Astrophysics of Galaxies +1606.08854 Solar and Stellar Astrophysics +1606.08914 Astrophysics of Galaxies +1606.09110 Logic in Computer Science +1606.09226 Mesoscale and Nanoscale Physics +1606.09334 Solar and Stellar Astrophysics +1606.09357 Solar and Stellar Astrophysics +1606.09455 Logic in Computer Science +1606.09506 Solar and Stellar Astrophysics +1606.09529 Astrophysics of Galaxies +1606.09586 Solar and Stellar Astrophysics +1607.00129 Astrophysics of Galaxies +1607.00142 Solar and Stellar Astrophysics +1607.00290 High Energy Astrophysical Phenomena +1607.00344 Solar and Stellar Astrophysics +1607.00380 High Energy Astrophysical Phenomena +1607.00385 Solar and Stellar Astrophysics +1607.00432 Astrophysics of Galaxies +1607.00641 Astrophysics of Galaxies +1607.00848 Astrophysics of Galaxies +1607.00879 High Energy Astrophysical Phenomena +1607.00951 Astrophysics of Galaxies +1607.00987 Phenomenology +1607.01056 Solar and Stellar Astrophysics +1607.01090 Solar and Stellar Astrophysics +1607.01278 Phenomenology +1607.01352 Other Condensed Matter +1607.01531 Statistical Mechanics +1607.01711 Phenomenology +1607.01779 Astrophysics of Galaxies +1607.01799 Atomic Physics +1607.01806 +1607.01829 Solar and Stellar Astrophysics +1607.01847 Cosmology and Nongalactic Astrophysics +1607.02053 High Energy Astrophysical Phenomena +1607.02054 Astrophysics of Galaxies +1607.02132 Earth and Planetary Astrophysics +1607.02190 Astrophysics of Galaxies +1607.02215 Instrumentation and Methods for Astrophysics +1607.02243 Astrophysics of Galaxies +1607.02266 Astrophysics of Galaxies +1607.02274 Astrophysics of Galaxies +1607.02309 +1607.02331 Astrophysics of Galaxies +1607.02365 Analysis of PDEs +1607.02466 Logic in Computer Science +1607.02797 Cosmology and Nongalactic Astrophysics +1607.02832 +1607.02876 Solar and Stellar Astrophysics +1607.03203 Phenomenology +1607.03330 Superconductivity +1607.03336 Mesoscale and Nanoscale Physics +1607.03861 Instrumentation and Methods for Astrophysics +1607.03874 Solar and Stellar Astrophysics +1607.04107 High Energy Astrophysical Phenomena +1607.04271 Representation Theory +1607.04385 Solar and Stellar Astrophysics +1607.04686 Cosmology and Nongalactic Astrophysics +1607.05139 Computer Science and Game Theory +1607.05299 Astrophysics of Galaxies +1607.05503 Algebraic Geometry +1607.05532 Astrophysics of Galaxies +1607.05715 +1607.05799 Astrophysics of Galaxies +1607.06284 Analysis of PDEs +1607.06304 +1607.06453 High Energy Astrophysical Phenomena +1607.07250 Materials Science +1607.07308 Astrophysics of Galaxies +1607.07333 Earth and Planetary Astrophysics +1607.07369 Earth and Planetary Astrophysics +1607.07725 High Energy Astrophysical Phenomena +1607.07822 High Energy Astrophysical Phenomena +1607.07934 Astrophysics of Galaxies +1607.08245 Astrophysics of Galaxies +1607.08257 Astrophysics of Galaxies +1607.08568 Solar and Stellar Astrophysics +1607.08596 Astrophysics of Galaxies +1607.08603 Astrophysics of Galaxies +1607.08605 High Energy Astrophysical Phenomena +1607.08606 Earth and Planetary Astrophysics +1607.08615 Solar and Stellar Astrophysics +1607.08630 Earth and Planetary Astrophysics +1607.08761 Astrophysics of Galaxies +1608.00002 +1608.00030 Strongly Correlated Electrons +1608.00773 Materials Science +1608.00972 Solar and Stellar Astrophysics +1608.01066 Strongly Correlated Electrons +1608.01114 Solar and Stellar Astrophysics +1608.01210 Numerical Analysis +1608.01417 Astrophysics of Galaxies +1608.01531 General Physics +1608.01534 Solar and Stellar Astrophysics +1608.01650 Phenomenology +1608.02225 Solar and Stellar Astrophysics +1608.02249 Exactly Solvable and Integrable Systems +1608.02671 Phenomenology +1608.02684 Strongly Correlated Electrons +1608.02739 Solar and Stellar Astrophysics +1608.02790 High Energy Astrophysical Phenomena +1608.03539 Astrophysics of Galaxies +1608.03596 Soft Condensed Matter +1608.03671 Solar and Stellar Astrophysics +1608.03763 Astrophysics of Galaxies +1608.04406 Atomic Physics +1608.04464 High Energy Astrophysical Phenomena +1608.04504 Instrumentation and Methods for Astrophysics +1608.04664 Machine Learning +1608.04666 Rings and Algebras +1608.05026 Astrophysics of Galaxies +1608.05509 Astrophysics of Galaxies +1608.05796 Solar and Stellar Astrophysics +1608.05809 +1608.05813 Computation and Language +1608.06100 Materials Science +1608.06193 Solar and Stellar Astrophysics +1608.06309 Applications +1608.06553 +1608.06675 Instrumentation and Detectors +1608.06685 Astrophysics of Galaxies +1608.06746 Algebraic Geometry +1608.06812 Astrophysics of Galaxies +1608.06907 Optics +1608.06948 High Energy Astrophysical Phenomena +1608.06960 Solar and Stellar Astrophysics +1608.06973 High Energy Astrophysical Phenomena +1608.06990 Systems and Control +1608.07012 Astrophysics of Galaxies +1608.07109 +1608.07130 Astrophysics of Galaxies +1608.07278 Earth and Planetary Astrophysics +1608.07281 Solar and Stellar Astrophysics +1608.07286 Solar and Stellar Astrophysics +1608.07291 Solar and Stellar Astrophysics +1608.07293 Astrophysics of Galaxies +1608.07504 Rings and Algebras +1608.07509 Representation Theory +1608.07580 Earth and Planetary Astrophysics +1608.07629 Phenomenology +1608.07678 Soft Condensed Matter +1608.07687 Mesoscale and Nanoscale Physics +1608.07839 Probability +1608.07933 Earth and Planetary Astrophysics +1608.07978 Soft Condensed Matter +1608.07994 Phenomenology +1608.08034 Solar and Stellar Astrophysics +1608.08059 Classical Analysis and ODEs +1608.08071 High Energy Astrophysical Phenomena +1608.08091 High Energy Astrophysical Phenomena +1608.08238 Astrophysics of Galaxies +1608.08239 Astrophysics of Galaxies +1608.08248 Astrophysics of Galaxies +1608.08309 Geometric Topology +1608.08380 Solar and Stellar Astrophysics +1608.08461 Soft Condensed Matter +1608.08539 Solar and Stellar Astrophysics +1608.08540 Mesoscale and Nanoscale Physics +1608.08557 High Energy Astrophysical Phenomena +1608.08656 +1608.08694 Astrophysics of Galaxies +1608.08751 Astrophysics of Galaxies +1608.08853 Astrophysics of Galaxies +1608.08993 Earth and Planetary Astrophysics +1609.00023 Astrophysics of Galaxies +1609.00038 Chemical Physics +1609.00110 Information Theory +1609.00202 Mesoscale and Nanoscale Physics +1609.00209 Astrophysics of Galaxies +1609.00313 Mesoscale and Nanoscale Physics +1609.00441 Molecular Networks +1609.00458 High Energy Astrophysical Phenomena +1609.00489 Software Engineering +1609.00589 +1609.00678 Statistical Mechanics +1609.00684 +1609.00804 Learning +1609.00827 Numerical Analysis +1609.00919 Logic in Computer Science +1609.00951 Optimization and Control +1609.01001 Combinatorics +1609.01006 Computer Vision and Pattern Recognition +1609.01009 Dynamical Systems +1609.01129 Astrophysics of Galaxies +1609.01182 Atomic and Molecular Clusters +1609.01237 Geophysics +1609.01252 Instrumentation and Methods for Astrophysics +1609.01275 Combinatorics +1609.01278 Instrumentation and Detectors +1609.01279 +1609.01281 Theory +1609.01282 Astrophysics of Galaxies +1609.01283 Solar and Stellar Astrophysics +1609.01294 Astrophysics of Galaxies +1609.01297 +1609.01303 Strongly Correlated Electrons +1609.01305 Instrumentation and Methods for Astrophysics +1609.01309 Human-Computer Interaction +1609.01313 Group Theory +1609.01315 Number Theory +1609.01317 Graphics +1609.01319 Databases +1609.01321 Numerical Analysis +1609.01322 Information Theory +1609.01323 Dynamical Systems +1609.01325 Mesoscale and Nanoscale Physics +1609.01326 Computer Vision and Pattern Recognition +1609.01327 +1609.01328 Probability +1609.01330 Superconductivity +1609.01331 Information Retrieval +1609.01332 Instrumentation and Detectors +1609.01333 Statistical Mechanics +1609.01335 Dynamical Systems +1609.01337 Combinatorics +1609.01338 Spectral Theory +1609.01339 Classical Analysis and ODEs +1609.01341 Soft Condensed Matter +1609.01343 Number Theory +1609.01344 Computer Vision and Pattern Recognition +1609.01345 Computer Vision and Pattern Recognition +1609.01348 Human-Computer Interaction +1609.01349 Optics +1609.01351 Analysis of PDEs +1609.01352 Solar and Stellar Astrophysics +1609.01353 Logic +1609.01355 Phenomenology +1609.01357 Social and Information Networks +1609.01361 Data Structures and Algorithms +1609.01362 Number Theory +1609.01364 Probability +1609.01365 Algebraic Topology +1609.01366 Computer Vision and Pattern Recognition +1609.01367 Combinatorics +1609.01368 Classical Analysis and ODEs +1609.01370 Combinatorics +1609.01373 Data Structures and Algorithms +1609.01374 Networking and Internet Architecture +1609.01375 Analysis of PDEs +1609.01377 Differential Geometry +1609.01378 Phenomenology +1609.01380 Computer Vision and Pattern Recognition +1609.01381 Mesoscale and Nanoscale Physics +1609.01382 Human-Computer Interaction +1609.01383 Systems and Control +1609.01386 Number Theory +1609.01388 Multimedia +1609.01390 Materials Science +1609.01392 Soft Condensed Matter +1609.01393 Dynamical Systems +1609.01395 Differential Geometry +1609.01396 Methodology +1609.01401 Phenomenology +1609.01402 Commutative Algebra +1609.01403 Rings and Algebras +1609.01406 Combinatorics +1609.01407 +1609.01410 Cryptography and Security +1609.01411 Number Theory +1609.01413 Theory +1609.01414 Computer Vision and Pattern Recognition +1609.01415 Information Retrieval +1609.01416 +1609.01417 Lattice +1609.01421 +1609.01426 Phenomenology +1609.01427 Algebraic Geometry +1609.01428 Analysis of PDEs +1609.01430 Fluid Dynamics +1609.01431 Analysis of PDEs +1609.01434 Optics +1609.01435 Probability +1609.01436 Numerical Analysis +1609.01437 Computer Science and Game Theory +1609.01439 Soft Condensed Matter +1609.01440 Analysis of PDEs +1609.01441 Analysis of PDEs +1609.01442 Analysis of PDEs +1609.01445 Phenomenology +1609.01446 Rings and Algebras +1609.01447 Analysis of PDEs +1609.01448 Mesoscale and Nanoscale Physics +1609.01449 Information Theory +1609.01450 Functional Analysis +1609.01451 Probability +1609.01454 Computation and Language +1609.01456 Plasma Physics +1609.01458 Optimization and Control +1609.01460 Combinatorics +1609.01461 Computer Vision and Pattern Recognition +1609.01462 Computation and Language +1609.01464 Social and Information Networks +1609.01465 Computer Vision and Pattern Recognition +1609.01467 Optimization and Control +1609.01468 Learning +1609.01472 Computers and Society +1609.01475 Multiagent Systems +1609.01476 +1609.01477 +1609.01481 Accelerator Physics +1609.01482 Dynamical Systems +1609.01483 Medical Physics +1609.01484 Human-Computer Interaction +1609.01485 Differential Geometry +1609.01486 Dynamical Systems +1609.01488 Probability +1609.01490 Distributed, Parallel, and Cluster Computing +1609.01494 Materials Science +1609.01495 Analysis of PDEs +1609.01497 Soft Condensed Matter +1609.01498 Materials Science +1609.01499 Computer Vision and Pattern Recognition +1609.01502 Disordered Systems and Neural Networks +1609.01507 Distributed, Parallel, and Cluster Computing +1609.01508 Learning +1609.01510 Discrete Mathematics +1609.01511 Instrumentation and Methods for Astrophysics +1609.01512 Analysis of PDEs +1609.01516 Analysis of PDEs +1609.01517 Data Structures and Algorithms +1609.01521 Soft Condensed Matter +1609.01523 Materials Science +1609.01524 Computer Vision and Pattern Recognition +1609.01530 Information Theory +1609.01531 Optimization and Control +1609.01535 Fluid Dynamics +1609.01537 Digital Libraries +1609.01539 Soft Condensed Matter +1609.01542 Representation Theory +1609.01543 Functional Analysis +1609.01544 Combinatorics +1609.01545 +1609.01547 Methodology +1609.01549 Representation Theory +1609.01550 Numerical Analysis +1609.01551 Strongly Correlated Electrons +1609.01555 Exactly Solvable and Integrable Systems +1609.01561 Quantum Gases +1609.01562 Algebraic Geometry +1609.01563 Metric Geometry +1609.01564 Classical Analysis and ODEs +1609.01565 Classical Physics +1609.01566 Other Quantitative Biology +1609.01567 Information Theory +1609.01568 Phenomenology +1609.01569 Biomolecules +1609.01570 Quantitative Methods +1609.01571 Computer Vision and Pattern Recognition +1609.01574 Computation and Language +1609.01576 +1609.01578 Optics +1609.01579 Differential Geometry +1609.01580 Computation and Language +1609.01582 Combinatorics +1609.01583 Atomic Physics +1609.01585 Hardware Architecture +1609.01586 Learning +1609.01587 Functional Analysis +1609.01589 +1609.01592 Computation and Language +1609.01593 Astrophysics of Galaxies +1609.01594 Computation and Language +1609.01597 Computation and Language +1609.01600 +1609.01601 Probability +1609.01602 Algebraic Geometry +1609.01603 Statistical Mechanics +1609.01604 Molecular Networks +1609.01606 Differential Geometry +1609.01609 +1609.01611 Experiment +1609.01612 Combinatorics +1609.01614 Human-Computer Interaction +1609.01615 Materials Science +1609.01616 Social and Information Networks +1609.01618 +1609.01619 Phenomenology +1609.01622 Networking and Internet Architecture +1609.01623 Astrophysics of Galaxies +1609.01624 Chemical Physics +1609.01627 Optimization and Control +1609.01633 Complex Variables +1609.01634 Data Structures and Algorithms +1609.01635 Representation Theory +1609.01636 Fluid Dynamics +1609.01639 +1609.01640 Analysis of PDEs +1609.01641 Social and Information Networks +1609.01642 Analysis of PDEs +1609.01644 Superconductivity +1609.01645 Analysis of PDEs +1609.01648 Computer Vision and Pattern Recognition +1609.01652 +1609.01657 History and Overview +1609.01658 Geometric Topology +1609.01661 Accelerator Physics +1609.01662 Computational Geometry +1609.01665 +1609.01668 Data Analysis, Statistics and Probability +1609.01671 Probability +1609.01672 Methodology +1609.01675 Combinatorics +1609.01676 Software Engineering +1609.01679 Statistics Theory +1609.01680 +1609.01682 Computer Science and Game Theory +1609.01684 Analysis of PDEs +1609.01686 Experiment +1609.01688 Materials Science +1609.01695 Spectral Theory +1609.01698 +1609.01699 Combinatorics +1609.01703 Strongly Correlated Electrons +astro-ph/0103366 +astro-ph/9503015 +astro-ph/9702079 +astro-ph/9910567 +cond-mat/0106574 Superconductivity +cond-mat/0201472 Statistical Mechanics +cond-mat/0212600 Materials Science +cond-mat/0503425 Soft Condensed Matter +cond-mat/0701444 Disordered Systems and Neural Networks +cond-mat/9502042 +cond-mat/9509167 +cond-mat/9803305 +cs/0508114 Cryptography and Security +math-ph/0001013 +math-ph/0002005 +math-ph/0003016 +math-ph/0003020 +math-ph/0003032 +math-ph/0006009 +math-ph/0008005 +math-ph/0009007 +math-ph/0009008 +math-ph/0009022 +math-ph/0010034 +math-ph/0010041 +math-ph/0011007 +math-ph/0011053 +math-ph/0012046 +math-ph/0102001 +math-ph/0102002 +math-ph/0105045 +math-ph/0106010 +math-ph/0107001 +math-ph/0107027 +math-ph/0108007 +math-ph/0109004 +math-ph/0110037 +math-ph/0201015 +math-ph/0201038 +math-ph/0201039 +math-ph/0202007 +math-ph/0202012 +math-ph/0202030 +math-ph/0202031 +math-ph/0203055 +math-ph/0204022 +math-ph/0204034 +math-ph/0205003 +math-ph/0205008 +math-ph/0205028 +math-ph/0208007 +math-ph/0209023 +math-ph/0210011 +math-ph/0210041 +math-ph/0211028 +math-ph/0212007 +math-ph/0212025 +math-ph/0212030 +math-ph/0212053 +math-ph/0301040 +math-ph/0301046 +math-ph/0302021 +math-ph/0302026 +math-ph/0303052 +math-ph/0305018 +math-ph/0305048 +math-ph/0306017 +math-ph/0306044 +math-ph/0306054 +math-ph/0306060 +math-ph/0308034 +math-ph/0309038 +math-ph/0309057 +math-ph/0310052 +math-ph/0310055 +math-ph/0311008 +math-ph/0311033 +math-ph/0312016 +math-ph/0312063 +math-ph/0312070 +math-ph/0401037 +math-ph/0402003 +math-ph/0402062 +math-ph/0403002 +math-ph/0403058 +math-ph/0404046 +math-ph/0404048 +math-ph/0404051 +math-ph/0404054 +math-ph/0404071 +math-ph/0405015 +math-ph/0407030 +math-ph/0501005 +math-ph/0501007 +math-ph/0501013 +math-ph/0501020 +math-ph/0503024 +math-ph/0504003 +math-ph/0504073 +math-ph/0505011 +math-ph/0506054 +math-ph/0506065 +math-ph/0506069 +math-ph/0507016 +math-ph/0508009 +math-ph/0509034 +math-ph/0509061 +math-ph/0510003 +math-ph/0510013 +math-ph/0510019 +math-ph/0510035 +math-ph/0511006 +math-ph/0604034 +math-ph/0605057 +math-ph/0606055 +math-ph/0611019 +math-ph/0703019 +math-ph/9806011 +math-ph/9807028 +math-ph/9808002 +math-ph/9808012 +math-ph/9809021 +math-ph/9809023 +math-ph/9809026 +math-ph/9811026 +math-ph/9812024 +math-ph/9901013 +math-ph/9902025 +math-ph/9904006 +math-ph/9904025 +math-ph/9906008 +math-ph/9907002 +math-ph/9907025 +math-ph/9910002 +math-ph/9910008 +math-ph/9910026 +math-ph/9911021 +math-ph/9911045 +math/0001028 Quantum Algebra +math/0001176 Differential Geometry +math/0002040 Quantum Algebra +math/0002105 Rings and Algebras +math/0002126 Operator Algebras +math/0002167 Differential Geometry +math/0002210 Numerical Analysis +math/0002248 Dynamical Systems +math/0002254 Number Theory +math/0003104 Algebraic Geometry +math/0003109 Quantum Algebra +math/0003135 Numerical Analysis +math/0003136 Number Theory +math/0003153 Algebraic Geometry +math/0003176 Geometric Topology +math/0003200 Quantum Algebra +math/0003201 Algebraic Geometry +math/0003205 Spectral Theory +math/0003237 Number Theory +math/0003238 Number Theory +math/0003239 Number Theory +math/0003240 Algebraic Geometry +math/0003241 Number Theory +math/0003242 Representation Theory +math/0004041 Differential Geometry +math/0004188 History and Overview +math/0004189 Number Theory +math/0005002 Symplectic Geometry +math/0005068 Differential Geometry +math/0005102 Algebraic Geometry +math/0005108 Geometric Topology +math/0005176 Differential Geometry +math/0005194 Functional Analysis +math/0005196 Algebraic Geometry +math/0005225 Operator Algebras +math/0005232 Algebraic Geometry +math/0005259 Differential Geometry +math/0005273 Rings and Algebras +math/0005302 Representation Theory +math/0005304 Dynamical Systems +math/0005305 Representation Theory +math/0005306 Analysis of PDEs +math/0005307 Complex Variables +math/0006024 History and Overview +math/0006043 Algebraic Geometry +math/0006081 General Topology +math/0006083 Quantum Algebra +math/0006106 Combinatorics +math/0006136 Complex Variables +math/0006170 K-Theory and Homology +math/0006226 Quantum Algebra +math/0007004 Algebraic Geometry +math/0007010 Operator Algebras +math/0007022 Algebraic Geometry +math/0007061 Dynamical Systems +math/0007156 Algebraic Geometry +math/0007163 Quantum Algebra +math/0007198 Differential Geometry +math/0007199 Logic +math/0007200 Representation Theory +math/0007201 Algebraic Geometry +math/0007202 Number Theory +math/0007203 Number Theory +math/0007204 Representation Theory +math/0008008 Complex Variables +math/0008018 Differential Geometry +math/0008088 Spectral Theory +math/0008095 Functional Analysis +math/0008103 Quantum Algebra +math/0008142 Rings and Algebras +math/0008157 Symplectic Geometry +math/0008195 Quantum Algebra +math/0008203 Algebraic Geometry +math/0008235 Geometric Topology +math/0008236 Algebraic Topology +math/0008246 Number Theory +math/0009027 Dynamical Systems +math/0009108 Algebraic Geometry +math/0009123 Algebraic Geometry +math/0009142 Classical Analysis and ODEs +math/0009154 Algebraic Geometry +math/0009161 Differential Geometry +math/0009216 Geometric Topology +math/0009219 Quantum Algebra +math/0009231 Quantum Algebra +math/0009238 Classical Analysis and ODEs +math/0009243 Differential Geometry +math/0009251 Complex Variables +math/0009252 Number Theory +math/0009253 Complex Variables +math/0009254 Analysis of PDEs +math/0010051 Functional Analysis +math/0010071 Metric Geometry +math/0010114 Algebraic Geometry +math/0010177 Differential Geometry +math/0010211 Algebraic Geometry +math/0010221 Combinatorics +math/0010250 Quantum Algebra +math/0010256 Analysis of PDEs +math/0010283 Algebraic Geometry +math/0010303 Group Theory +math/0010311 Metric Geometry +math/0010312 Quantum Algebra +math/0011025 Numerical Analysis +math/0011085 Differential Geometry +math/0011095 Complex Variables +math/0011102 Number Theory +math/0011149 Algebraic Geometry +math/0011152 General Topology +math/0011198 Algebraic Geometry +math/0011225 Rings and Algebras +math/0011257 Algebraic Geometry +math/0011268 Dynamical Systems +math/0012065 Geometric Topology +math/0012085 Geometric Topology +math/0012125 Operator Algebras +math/0012127 Operator Algebras +math/0012128 Operator Algebras +math/0101001 Analysis of PDEs +math/0101108 Geometric Topology +math/0101146 Operator Algebras +math/0101184 Operator Algebras +math/0101248 Differential Geometry +math/0102066 Combinatorics +math/0102098 Geometric Topology +math/0102109 Differential Geometry +math/0102198 Analysis of PDEs +math/0102207 Dynamical Systems +math/0102226 Algebraic Geometry +math/0102228 Algebraic Geometry +math/0103022 Algebraic Geometry +math/0103186 Algebraic Geometry +math/0103196 Optimization and Control +math/0104019 Rings and Algebras +math/0104023 K-Theory and Homology +math/0104071 Quantum Algebra +math/0104142 Analysis of PDEs +math/0104143 Analysis of PDEs +math/0104176 Number Theory +math/0104205 Number Theory +math/0104258 Operator Algebras +math/0105133 Differential Geometry +math/0105170 Quantum Algebra +math/0105184 Rings and Algebras +math/0105198 Algebraic Geometry +math/0105228 Analysis of PDEs +math/0105230 Geometric Topology +math/0105242 Algebraic Geometry +math/0105251 Quantum Algebra +math/0106011 Representation Theory +math/0106012 Classical Analysis and ODEs +math/0106039 Combinatorics +math/0106077 Differential Geometry +math/0106141 Differential Geometry +math/0106155 Probability +math/0106180 Optimization and Control +math/0106231 Analysis of PDEs +math/0107050 Operator Algebras +math/0107068 Probability +math/0107075 Operator Algebras +math/0107085 Dynamical Systems +math/0107089 Quantum Algebra +math/0107102 Classical Analysis and ODEs +math/0107115 Group Theory +math/0107121 Probability +math/0108010 Geometric Topology +math/0108037 Algebraic Geometry +math/0108085 Analysis of PDEs +math/0108086 Analysis of PDEs +math/0108209 Dynamical Systems +math/0109014 Algebraic Geometry +math/0109075 Differential Geometry +math/0109151 Algebraic Geometry +math/0109173 Analysis of PDEs +math/0109174 Analysis of PDEs +math/0109186 Complex Variables +math/0109227 Number Theory +math/0110232 Algebraic Geometry +math/0110254 Algebraic Geometry +math/0110266 Quantum Algebra +math/0110284 Group Theory +math/0110326 Symplectic Geometry +math/0110330 Symplectic Geometry +math/0110337 Differential Geometry +math/0110339 Representation Theory +math/0111042 Quantum Algebra +math/0111129 Differential Geometry +math/0111207 Algebraic Geometry +math/0111208 Differential Geometry +math/0111227 Functional Analysis +math/0112085 Functional Analysis +math/0112088 Geometric Topology +math/0112154 Quantum Algebra +math/0112155 Quantum Algebra +math/0112177 Quantum Algebra +math/0112181 Functional Analysis +math/0112183 Algebraic Geometry +math/0112236 Operator Algebras +math/0112241 Rings and Algebras +math/0201045 Group Theory +math/0201130 Probability +math/0201215 Differential Geometry +math/0201278 Dynamical Systems +math/0201282 Symplectic Geometry +math/0201312 Group Theory +math/0202061 Operator Algebras +math/0202116 General Topology +math/0202131 Algebraic Geometry +math/0202174 Group Theory +math/0202213 Representation Theory +math/0202229 Number Theory +math/0202309 General Mathematics +math/0203020 Group Theory +math/0203035 Quantum Algebra +math/0203054 Algebraic Geometry +math/0203077 Differential Geometry +math/0203106 Algebraic Geometry +math/0203135 Differential Geometry +math/0203148 Algebraic Geometry +math/0203198 Differential Geometry +math/0204050 Differential Geometry +math/0204073 Complex Variables +math/0204083 Algebraic Geometry +math/0204087 Probability +math/0204098 Classical Analysis and ODEs +math/0204184 Quantum Algebra +math/0204289 Probability +math/0204317 Classical Analysis and ODEs +math/0204335 Differential Geometry +math/0204336 Algebraic Geometry +math/0205012 Differential Geometry +math/0205030 Symplectic Geometry +math/0205035 Algebraic Geometry +math/0205043 Algebraic Topology +math/0205062 Algebraic Geometry +math/0205101 Probability +math/0205141 Group Theory +math/0205183 General Mathematics +math/0205190 Differential Geometry +math/0205228 Algebraic Geometry +math/0205331 Logic +math/0206004 Algebraic Geometry +math/0206054 Dynamical Systems +math/0206086 Complex Variables +math/0206116 Algebraic Geometry +math/0206156 Geometric Topology +math/0206184 Statistics Theory +math/0206205 Quantum Algebra +math/0206248 Algebraic Geometry +math/0206289 Probability +math/0207029 Number Theory +math/0207035 Quantum Algebra +math/0207075 Optimization and Control +math/0207083 Rings and Algebras +math/0207180 Number Theory +math/0207192 Combinatorics +math/0207218 Quantum Algebra +math/0208034 Differential Geometry +math/0208096 Algebraic Geometry +math/0208145 Analysis of PDEs +math/0208178 Algebraic Geometry +math/0208244 Classical Analysis and ODEs +math/0209092 Algebraic Geometry +math/0209102 Number Theory +math/0209162 Number Theory +math/0209195 Number Theory +math/0209201 Differential Geometry +math/0209349 Differential Geometry +math/0209378 Commutative Algebra +math/0209408 Logic +math/0210160 Differential Geometry +math/0210174 Geometric Topology +math/0210253 Differential Geometry +math/0210277 Analysis of PDEs +math/0210303 Differential Geometry +math/0210318 Algebraic Geometry +math/0210325 Symplectic Geometry +math/0211031 Quantum Algebra +math/0211067 Representation Theory +math/0211078 History and Overview +math/0211124 Classical Analysis and ODEs +math/0211190 Classical Analysis and ODEs +math/0211259 Number Theory +math/0211267 Combinatorics +math/0211295 Differential Geometry +math/0211333 Differential Geometry +math/0211428 Algebraic Geometry +math/0211431 Algebraic Geometry +math/0212135 Commutative Algebra +math/0212157 Algebraic Topology +math/0212229 Functional Analysis +math/0212241 Operator Algebras +math/0212313 Quantum Algebra +math/0212314 Algebraic Geometry +math/0212344 Number Theory +math/0301059 Complex Variables +math/0301107 Functional Analysis +math/0301138 Algebraic Geometry +math/0301221 Category Theory +math/0301244 Quantum Algebra +math/0301249 Algebraic Geometry +math/0301259 Operator Algebras +math/0301262 Commutative Algebra +math/0301263 Representation Theory +math/0301306 Number Theory +math/0302002 Numerical Analysis +math/0302045 Algebraic Geometry +math/0302098 Geometric Topology +math/0302105 Combinatorics +math/0302193 Classical Analysis and ODEs +math/0302326 Analysis of PDEs +math/0303008 Analysis of PDEs +math/0303039 Analysis of PDEs +math/0303056 Differential Geometry +math/0303057 General Topology +math/0303069 K-Theory and Homology +math/0303112 Differential Geometry +math/0303135 Differential Geometry +math/0303186 Functional Analysis +math/0303274 Differential Geometry +math/0303329 Algebraic Geometry +math/0303367 Algebraic Geometry +math/0304017 Number Theory +math/0304020 Representation Theory +math/0304075 Quantum Algebra +math/0304269 Differential Geometry +math/0304366 Probability +math/0304426 Probability +math/0304469 Dynamical Systems +math/0304482 Complex Variables +math/0304487 Symplectic Geometry +math/0305014 Numerical Analysis +math/0305042 Algebraic Geometry +math/0305090 Algebraic Geometry +math/0305115 Quantum Algebra +math/0305117 Quantum Algebra +math/0305200 Probability +math/0305242 Combinatorics +math/0305252 Probability +math/0305313 Probability +math/0305316 Geometric Topology +math/0305339 Number Theory +math/0305371 Operator Algebras +math/0305401 Geometric Topology +math/0305413 Quantum Algebra +math/0305429 Representation Theory +math/0306047 Combinatorics +math/0306118 Complex Variables +math/0306239 Analysis of PDEs +math/0306244 Rings and Algebras +math/0306286 Classical Analysis and ODEs +math/0306341 Differential Geometry +math/0306389 Combinatorics +math/0306398 Geometric Topology +math/0306431 Analysis of PDEs +math/0307030 Dynamical Systems +math/0307062 Representation Theory +math/0307180 Algebraic Geometry +math/0308003 History and Overview +math/0308064 Algebraic Topology +math/0308074 Classical Analysis and ODEs +math/0308079 Algebraic Geometry +math/0308123 Analysis of PDEs +math/0308147 Geometric Topology +math/0308213 Number Theory +math/0308257 Operator Algebras +math/0308284 Probability +math/0309056 Algebraic Geometry +math/0309084 Differential Geometry +math/0309094 Spectral Theory +math/0309125 Algebraic Geometry +math/0309130 Algebraic Geometry +math/0309198 Operator Algebras +math/0309318 Combinatorics +math/0309400 Algebraic Topology +math/0309463 Analysis of PDEs +math/0309471 Group Theory +math/0310039 Analysis of PDEs +math/0310060 Algebraic Geometry +math/0310084 Algebraic Geometry +math/0310119 Complex Variables +math/0310255 Combinatorics +math/0310361 Algebraic Geometry +math/0310398 Functional Analysis +math/0310446 Differential Geometry +math/0310454 Algebraic Geometry +math/0311010 Number Theory +math/0311041 Combinatorics +math/0311137 Algebraic Geometry +math/0311185 Geometric Topology +math/0311211 Combinatorics +math/0311282 Geometric Topology +math/0311320 Differential Geometry +math/0311461 Operator Algebras +math/0312042 Dynamical Systems +math/0312054 Analysis of PDEs +math/0312123 Functional Analysis +math/0312124 Representation Theory +math/0312256 Probability +math/0312277 Algebraic Topology +math/0401091 Functional Analysis +math/0401198 Analysis of PDEs +math/0401206 Dynamical Systems +math/0401212 Symplectic Geometry +math/0401298 Representation Theory +math/0401374 Algebraic Geometry +math/0401396 Algebraic Geometry +math/0401407 Differential Geometry +math/0402013 Metric Geometry +math/0402096 Complex Variables +math/0402118 Quantum Algebra +math/0402204 History and Overview +math/0402271 Combinatorics +math/0402280 Differential Geometry +math/0402305 Classical Analysis and ODEs +math/0402343 Dynamical Systems +math/0402350 Quantum Algebra +math/0403040 Functional Analysis +math/0403061 Quantum Algebra +math/0403119 Number Theory +math/0403160 Algebraic Geometry +math/0403187 Spectral Theory +math/0403232 Analysis of PDEs +math/0403286 Differential Geometry +math/0403344 Classical Analysis and ODEs +math/0403355 Numerical Analysis +math/0403412 Differential Geometry +math/0403423 Group Theory +math/0404004 Differential Geometry +math/0404008 Quantum Algebra +math/0404063 Combinatorics +math/0404092 Probability +math/0404142 Combinatorics +math/0404232 Differential Geometry +math/0404296 Numerical Analysis +math/0404315 Operator Algebras +math/0404387 Algebraic Geometry +math/0404404 Geometric Topology +math/0404475 Geometric Topology +math/0404494 Differential Geometry +math/0405005 Quantum Algebra +math/0405021 Algebraic Geometry +math/0405070 Probability +math/0405083 Number Theory +math/0405138 Representation Theory +math/0405202 Commutative Algebra +math/0405300 Algebraic Geometry +math/0405344 Commutative Algebra +math/0405387 Operator Algebras +math/0405444 Representation Theory +math/0405514 Operator Algebras +math/0405520 Probability +math/0406007 Operator Algebras +math/0406020 Differential Geometry +math/0406021 Differential Geometry +math/0406178 Probability +math/0406289 Functional Analysis +math/0406317 Quantum Algebra +math/0406365 Rings and Algebras +math/0406418 Combinatorics +math/0406448 Metric Geometry +math/0406500 Complex Variables +math/0406505 Logic +math/0407034 Algebraic Geometry +math/0407057 Probability +math/0407074 Rings and Algebras +math/0407110 Group Theory +math/0407118 Probability +math/0407125 Probability +math/0407128 Probability +math/0407131 Probability +math/0407136 Probability +math/0407140 Probability +math/0407192 Analysis of PDEs +math/0407345 Dynamical Systems +math/0407388 K-Theory and Homology +math/0407401 Differential Geometry +math/0407421 Number Theory +math/0408042 Rings and Algebras +math/0408053 Combinatorics +math/0408112 Geometric Topology +math/0408121 Differential Geometry +math/0408130 Algebraic Geometry +math/0408152 Differential Geometry +math/0408193 Numerical Analysis +math/0408194 Functional Analysis +math/0408216 Algebraic Topology +math/0408248 Differential Geometry +math/0408260 K-Theory and Homology +math/0408273 Analysis of PDEs +math/0408296 Operator Algebras +math/0408300 Functional Analysis +math/0408352 Analysis of PDEs +math/0408407 Complex Variables +math/0409001 Dynamical Systems +math/0409037 Algebraic Geometry +math/0409062 Combinatorics +math/0409103 Logic +math/0409115 Number Theory +math/0409146 Group Theory +math/0409269 Algebraic Geometry +math/0409303 Differential Geometry +math/0409325 Dynamical Systems +math/0409355 Symplectic Geometry +math/0409382 Group Theory +math/0409554 Probability +math/0410019 Differential Geometry +math/0410046 Algebraic Geometry +math/0410057 Classical Analysis and ODEs +math/0410103 Probability +math/0410106 Probability +math/0410110 Probability +math/0410114 Probability +math/0410116 Probability +math/0410135 Probability +math/0410137 Probability +math/0410139 Probability +math/0410151 Probability +math/0410155 Probability +math/0410156 Probability +math/0410158 Probability +math/0410164 Probability +math/0410165 Probability +math/0410168 Probability +math/0410169 Probability +math/0410170 Probability +math/0410177 Probability +math/0410357 Representation Theory +math/0410400 Operator Algebras +math/0410406 Rings and Algebras +math/0410422 Functional Analysis +math/0410427 Functional Analysis +math/0410452 Analysis of PDEs +math/0410598 Commutative Algebra +math/0410605 Quantum Algebra +math/0411007 Combinatorics +math/0411145 Combinatorics +math/0411152 Number Theory +math/0411187 Commutative Algebra +math/0411194 Analysis of PDEs +math/0411226 Logic +math/0411324 Commutative Algebra +math/0411355 Algebraic Geometry +math/0411378 Number Theory +math/0411477 Quantum Algebra +math/0411495 Operator Algebras +math/0411505 Quantum Algebra +math/0411572 Complex Variables +math/0411621 Quantum Algebra +math/0411644 Group Theory +math/0412011 Differential Geometry +math/0412150 Algebraic Geometry +math/0412241 Analysis of PDEs +math/0412271 Algebraic Topology +math/0412296 Complex Variables +math/0412346 Probability +math/0412368 Number Theory +math/0412374 Number Theory +math/0412392 Probability +math/0412414 Symplectic Geometry +math/0412458 Quantum Algebra +math/0501034 Dynamical Systems +math/0501039 Numerical Analysis +math/0501095 Probability +math/0501179 Commutative Algebra +math/0501238 Operator Algebras +math/0501272 Quantum Algebra +math/0501296 Dynamical Systems +math/0501332 Representation Theory +math/0501348 Algebraic Geometry +math/0501422 Differential Geometry +math/0501446 Representation Theory +math/0501473 Quantum Algebra +math/0501488 Differential Geometry +math/0502070 Algebraic Geometry +math/0502074 Commutative Algebra +math/0502108 Metric Geometry +math/0502169 Algebraic Geometry +math/0502209 Geometric Topology +math/0502217 Functional Analysis +math/0502261 Number Theory +math/0502345 Metric Geometry +math/0502495 Differential Geometry +math/0502529 Rings and Algebras +math/0502581 Probability +math/0503029 Algebraic Geometry +math/0503071 Probability +math/0503086 Functional Analysis +math/0503114 Combinatorics +math/0503132 Quantum Algebra +math/0503137 Probability +math/0503140 Functional Analysis +math/0503153 Differential Geometry +math/0503157 Commutative Algebra +math/0503168 Symplectic Geometry +math/0503200 Number Theory +math/0503209 Number Theory +math/0503253 Algebraic Geometry +math/0503259 Complex Variables +math/0503268 Symplectic Geometry +math/0503307 Representation Theory +math/0503487 Probability +math/0503493 Analysis of PDEs +math/0503535 Probability +math/0503547 Probability +math/0504049 Geometric Topology +math/0504134 Analysis of PDEs +math/0504147 Geometric Topology +math/0504215 Number Theory +math/0504247 Probability +math/0504258 Geometric Topology +math/0504332 Number Theory +math/0504373 Quantum Algebra +math/0504420 Quantum Algebra +math/0504422 Differential Geometry +math/0504492 Algebraic Geometry +math/0504536 Analysis of PDEs +math/0505111 Algebraic Geometry +math/0505183 Algebraic Geometry +math/0505288 Group Theory +math/0505294 Classical Analysis and ODEs +math/0505311 Operator Algebras +math/0505421 Commutative Algebra +math/0505487 Group Theory +math/0505581 Commutative Algebra +math/0505618 Probability +math/0506030 Quantum Algebra +math/0506036 Dynamical Systems +math/0506184 Functional Analysis +math/0506248 Algebraic Geometry +math/0506274 Combinatorics +math/0506375 Geometric Topology +math/0506387 Quantum Algebra +math/0506443 Geometric Topology +math/0506507 Quantum Algebra +math/0506542 Combinatorics +math/0506547 Geometric Topology +math/0506584 Commutative Algebra +math/0507092 Representation Theory +math/0507141 Dynamical Systems +math/0507174 Differential Geometry +math/0507220 Probability +math/0507272 Complex Variables +math/0507281 Symplectic Geometry +math/0507556 Differential Geometry +math/0508006 Differential Geometry +math/0508048 Group Theory +math/0508065 Geometric Topology +math/0508133 Algebraic Geometry +math/0508221 Commutative Algebra +math/0508262 Probability +math/0508433 Algebraic Geometry +math/0508435 Combinatorics +math/0508508 Dynamical Systems +math/0508544 Functional Analysis +math/0508568 Spectral Theory +math/0509045 Algebraic Geometry +math/0509119 Algebraic Geometry +math/0509145 Quantum Algebra +math/0509166 Probability +math/0509188 Rings and Algebras +math/0509196 Number Theory +math/0509199 Analysis of PDEs +math/0509248 Logic +math/0509263 Analysis of PDEs +math/0509369 Dynamical Systems +math/0509485 Number Theory +math/0509495 Operator Algebras +math/0509506 Operator Algebras +math/0509521 Combinatorics +math/0509545 Analysis of PDEs +math/0509571 Differential Geometry +math/0509572 Differential Geometry +math/0509585 Probability +math/0509594 K-Theory and Homology +math/0509626 Dynamical Systems +math/0509641 Algebraic Geometry +math/0509643 Operator Algebras +math/0509697 Commutative Algebra +math/0509725 Algebraic Geometry +math/0510035 Probability +math/0510038 Probability +math/0510043 Probability +math/0510069 Differential Geometry +math/0510086 Geometric Topology +math/0510118 General Topology +math/0510120 General Topology +math/0510262 Rings and Algebras +math/0510299 Algebraic Geometry +math/0510371 Spectral Theory +math/0510556 Probability +math/0510577 Analysis of PDEs +math/0510588 Probability +math/0510592 Analysis of PDEs +math/0511025 Probability +math/0511062 Dynamical Systems +math/0511103 Numerical Analysis +math/0511319 Functional Analysis +math/0511650 Group Theory +math/0511654 Rings and Algebras +math/0511655 Functional Analysis +math/0511709 Classical Analysis and ODEs +math/0512171 Rings and Algebras +math/0512264 Probability +math/0512422 Rings and Algebras +math/0512596 Algebraic Topology +math/0601081 Combinatorics +math/0601100 Algebraic Geometry +math/0601120 Algebraic Geometry +math/0601121 Combinatorics +math/0601486 Geometric Topology +math/0601609 Functional Analysis +math/0601668 Algebraic Geometry +math/0602075 Representation Theory +math/0602301 Algebraic Geometry +math/0602309 Dynamical Systems +math/0602433 Dynamical Systems +math/0602658 Quantum Algebra +math/0603178 Probability +math/0603294 Analysis of PDEs +math/0603580 Probability +math/0604002 Spectral Theory +math/0604046 Commutative Algebra +math/0604489 Number Theory +math/0605073 Rings and Algebras +math/0605170 Algebraic Geometry +math/0605265 Analysis of PDEs +math/0605575 Analysis of PDEs +math/0605579 Quantum Algebra +math/0605651 Dynamical Systems +math/0605795 Quantum Algebra +math/0606011 Quantum Algebra +math/0606155 Representation Theory +math/0606161 Representation Theory +math/0606191 Operator Algebras +math/0606319 Functional Analysis +math/0606640 Analysis of PDEs +math/0607148 Differential Geometry +math/0607400 Probability +math/0608096 Rings and Algebras +math/0608099 Quantum Algebra +math/0608311 Dynamical Systems +math/0608338 Probability +math/0608345 Commutative Algebra +math/0608394 Optimization and Control +math/0608581 Group Theory +math/0608678 Quantum Algebra +math/0608686 Metric Geometry +math/0609141 Algebraic Topology +math/0609629 Algebraic Geometry +math/0610078 Analysis of PDEs +math/0610191 Classical Analysis and ODEs +math/0610243 Probability +math/0610893 Combinatorics +math/0610927 Functional Analysis +math/0611047 Commutative Algebra +math/0611236 Quantum Algebra +math/0611473 Statistics Theory +math/0611766 Algebraic Topology +math/0611785 Differential Geometry +math/0611879 Operator Algebras +math/0612048 Probability +math/0702339 Analysis of PDEs +math/0702880 Differential Geometry +math/0703909 Differential Geometry +math/9612209 Functional Analysis +math/9612210 Functional Analysis +math/9612211 Group Theory +math/9612212 Combinatorics +math/9612213 Combinatorics +math/9612214 Geometric Topology +math/9612215 Geometric Topology +math/9612216 Geometric Topology +math/9612218 Combinatorics +math/9612219 Combinatorics +math/9701201 Complex Variables +math/9701202 Logic +math/9701207 Combinatorics +math/9701208 Number Theory +math/9701209 Number Theory +math/9701210 Commutative Algebra +math/9701214 Analysis of PDEs +math/9701216 Dynamical Systems +math/9701217 Dynamical Systems +math/9701219 Logic +math/9701221 Complex Variables +math/9701223 Probability +math/9701224 Probability +math/9701227 Probability +math/9702204 Logic +math/9702205 Logic +math/9702206 Logic +math/9702207 Logic +math/9702208 Logic +math/9702209 Logic +math/9702215 Functional Analysis +math/9702217 Functional Analysis +math/9702218 Optimization and Control +math/9702219 Combinatorics +math/9702223 Combinatorics +math/9702224 Combinatorics +math/9702225 Dynamical Systems +math/9702226 Combinatorics +math/9702229 Complex Variables +math/9702234 Group Theory +math/9703203 Logic +math/9703204 Logic +math/9703205 Spectral Theory +math/9703207 Geometric Topology +math/9703209 Combinatorics +math/9703210 Representation Theory +math/9703212 Combinatorics +math/9703214 Classical Analysis and ODEs +math/9703215 Classical Analysis and ODEs +math/9703216 Classical Analysis and ODEs +math/9703217 Classical Analysis and ODEs +math/9703218 Logic +math/9703222 Logic +math/9703223 Differential Geometry +math/9704205 Logic +math/9704206 Logic +math/9704207 Logic +math/9704208 Functional Analysis +math/9704210 Functional Analysis +math/9704214 Functional Analysis +math/9704215 Functional Analysis +math/9704216 Functional Analysis +math/9704217 Combinatorics +math/9704220 Combinatorics +math/9704226 Combinatorics +math/9704227 Combinatorics +math/9704228 Combinatorics +math/9704230 Dynamical Systems +math/9705201 Complex Variables +math/9705210 Functional Analysis +math/9705214 Number Theory +math/9705215 Algebraic Geometry +math/9705217 Geometric Topology +math/9705219 Combinatorics +math/9705223 Combinatorics +math/9705226 Logic +math/9705229 Algebraic Topology +math/9706204 Logic +math/9706205 Logic +math/9706206 Logic +math/9706207 Logic +math/9706209 Functional Analysis +math/9706210 Functional Analysis +math/9706211 Functional Analysis +math/9706214 Functional Analysis +math/9706215 Metric Geometry +math/9706217 Algebraic Geometry +math/9706218 Geometric Topology +math/9706219 Combinatorics +math/9706220 Combinatorics +math/9706221 Spectral Theory +math/9706222 Geometric Topology +math/9706225 Logic +math/9706226 Differential Geometry +math/9706227 Differential Geometry +math/9707202 Logic +math/9707203 Logic +math/9707204 Logic +math/9707205 Logic +math/9707206 Logic +math/9707208 Functional Analysis +math/9707209 Metric Geometry +math/9707213 Classical Analysis and ODEs +math/9707214 Differential Geometry +math/9707217 Differential Geometry +math/9707218 Combinatorics +math/9707223 Dynamical Systems +math/9707224 Dynamical Systems +math/9707225 Logic +math/9707226 Combinatorics +math/9707232 Geometric Topology +math/9708201 Complex Variables +math/9708206 Geometric Topology +math/9708207 Representation Theory +math/9708208 Dynamical Systems +math/9708209 Representation Theory +math/9708213 Differential Geometry +math/9709203 Logic +math/9709204 Logic +math/9709208 Functional Analysis +math/9709209 Functional Analysis +math/9709212 Functional Analysis +math/9709213 Functional Analysis +math/9709214 Functional Analysis +math/9709217 Functional Analysis +math/9709222 Analysis of PDEs +math/9709223 Classical Analysis and ODEs +math/9709227 Dynamical Systems +math/9709228 Logic +math/9709232 Rings and Algebras +math/9709233 Geometric Topology +math/9710201 Logic +math/9710203 Functional Analysis +math/9710204 Functional Analysis +math/9710205 Functional Analysis +math/9710208 Differential Geometry +math/9710209 Classical Analysis and ODEs +math/9710217 Logic +math/9710219 Differential Geometry +math/9710221 Analysis of PDEs +math/9711202 Group Theory +math/9711208 Functional Analysis +math/9711210 Functional Analysis +math/9711212 Functional Analysis +math/9711214 Dynamical Systems +math/9711217 Classical Analysis and ODEs +math/9711219 Algebraic Geometry +math/9711220 Logic +math/9711223 Logic +math/9711224 Rings and Algebras +math/9711225 Differential Geometry +math/9711226 Rings and Algebras +math/9712229 Combinatorics +math/9712245 Complex Variables +math/9712270 Logic +math/9712272 Logic +math/9712273 Logic +math/9712275 Logic +math/9712277 Functional Analysis +math/9712280 Complex Variables +math/9712282 Logic +math/9712283 Logic +math/9712284 Logic +math/9712285 Logic +math/9712288 Logic +math/9712289 Logic +math/9712291 Rings and Algebras +math/9712293 Representation Theory +math/9801017 Algebraic Geometry +math/9801057 Numerical Analysis +math/9801073 Differential Geometry +math/9801095 Quantum Algebra +math/9801141 Quantum Algebra +math/9801142 Functional Analysis +math/9801143 Probability +math/9801146 Analysis of PDEs +math/9801150 Dynamical Systems +math/9801151 Logic +math/9801152 Logic +math/9801154 Logic +math/9801155 Logic +math/9802015 Operator Algebras +math/9802038 Differential Geometry +math/9802108 Rings and Algebras +math/9802133 Geometric Topology +math/9802134 Logic +math/9802135 Logic +math/9803038 Differential Geometry +math/9803053 Algebraic Geometry +math/9803071 Algebraic Geometry +math/9803083 Differential Geometry +math/9803108 Algebraic Geometry +math/9803158 Complex Variables +math/9803159 Representation Theory +math/9803160 Probability +math/9803162 Probability +math/9803163 Classical Analysis and ODEs +math/9803164 Classical Analysis and ODEs +math/9803167 Logic +math/9804007 Complex Variables +math/9804009 Complex Variables +math/9804013 Algebraic Geometry +math/9804048 Algebraic Geometry +math/9804066 Functional Analysis +math/9804084 Quantum Algebra +math/9804104 Operator Algebras +math/9804147 Differential Geometry +math/9804148 Probability +math/9804149 Analysis of PDEs +math/9804151 Differential Geometry +math/9804152 Differential Geometry +math/9804153 Logic +math/9804155 Logic +math/9804156 Logic +math/9804160 Analysis of PDEs +math/9805067 Algebraic Geometry +math/9805070 Differential Geometry +math/9805101 Algebraic Geometry +math/9805135 Quantum Algebra +math/9805137 Combinatorics +math/9805143 Classical Analysis and ODEs +math/9805146 Logic +math/9805151 Logic +math/9805153 Representation Theory +math/9806003 Algebraic Geometry +math/9806007 Operator Algebras +math/9806026 Operator Algebras +math/9806132 Probability +math/9806142 Complex Variables +math/9806153 Algebraic Geometry +math/9806155 Algebraic Geometry +math/9806160 Differential Geometry +math/9806164 Dynamical Systems +math/9807061 Algebraic Geometry +math/9807180 Logic +math/9807181 Logic +math/9807183 Logic +math/9807185 Logic +math/9807187 Number Theory +math/9808063 Differential Geometry +math/9808140 Logic +math/9809013 Geometric Topology +math/9809025 Representation Theory +math/9809095 Combinatorics +math/9809112 Algebraic Geometry +math/9809154 Geometric Topology +math/9809177 Group Theory +math/9809186 Analysis of PDEs +math/9809193 Probability +math/9809194 Probability +math/9809195 Algebraic Topology +math/9809196 Logic +math/9809197 Logic +math/9809198 Logic +math/9809200 Logic +math/9809201 Logic +math/9809202 Logic +math/9809203 Probability +math/9809205 Logic +math/9809206 Number Theory +math/9810040 Geometric Topology +math/9810048 Algebraic Geometry +math/9810135 Differential Geometry +math/9810159 Complex Variables +math/9810181 Logic +math/9810186 Geometric Topology +math/9810187 Group Theory +math/9810190 Group Theory +math/9810192 Geometric Topology +math/9810193 Geometric Topology +math/9810194 Geometric Topology +math/9811022 Algebraic Geometry +math/9811033 Symplectic Geometry +math/9811107 Group Theory +math/9811134 Number Theory +math/9811178 Analysis of PDEs +math/9811179 Number Theory +math/9811180 Geometric Topology +math/9811181 Geometric Topology +math/9811182 Geometric Topology +math/9811184 Analysis of PDEs +math/9811187 Logic +math/9811188 Complex Variables +math/9811189 Representation Theory +math/9812068 Geometric Topology +math/9812158 Algebraic Geometry +math/9812165 Probability +math/9812167 Group Theory +math/9812169 Algebraic Topology +math/9901031 Algebraic Geometry +math/9901062 Differential Geometry +math/9901123 Numerical Analysis +math/9901144 K-Theory and Homology +math/9901145 K-Theory and Homology +math/9901146 Analysis of PDEs +math/9901147 Analysis of PDEs +math/9901148 Complex Variables +math/9901149 Algebraic Geometry +math/9901150 Differential Geometry +math/9901151 Rings and Algebras +math/9902002 Algebraic Geometry +math/9902022 Algebraic Geometry +math/9902066 Quantum Algebra +math/9902102 Algebraic Geometry +math/9902139 Quantum Algebra +math/9902162 Number Theory +math/9903008 Quantum Algebra +math/9903042 Analysis of PDEs +math/9903047 Differential Geometry +math/9903078 Geometric Topology +math/9903098 Functional Analysis +math/9903111 Dynamical Systems +math/9903124 Algebraic Geometry +math/9903155 Representation Theory +math/9903181 Algebraic Geometry +math/9903193 Complex Variables +math/9903195 Number Theory +math/9903196 Number Theory +math/9903197 Number Theory +math/9903199 Complex Variables +math/9903200 Metric Geometry +math/9903201 Dynamical Systems +math/9903203 Classical Analysis and ODEs +math/9903205 Metric Geometry +math/9904044 Number Theory +math/9904075 Quantum Algebra +math/9904076 Algebraic Geometry +math/9904102 Algebraic Geometry +math/9904183 Complex Variables +math/9904184 Probability +math/9904185 Symplectic Geometry +math/9905031 Probability +math/9905049 Algebraic Geometry +math/9905068 Algebraic Geometry +math/9905072 Quantum Algebra +math/9905081 Algebraic Geometry +math/9905192 Quantum Algebra +math/9905204 Metric Geometry +math/9905205 Dynamical Systems +math/9905207 Number Theory +math/9905208 Number Theory +math/9905210 Geometric Topology +math/9905211 Geometric Topology +math/9905212 Metric Geometry +math/9905214 Differential Geometry +math/9905215 Classical Analysis and ODEs +math/9906039 Category Theory +math/9906050 Probability +math/9906073 Operator Algebras +math/9906106 Operator Algebras +math/9906115 Geometric Topology +math/9906181 Rings and Algebras +math/9906186 Operator Algebras +math/9906213 Probability +math/9906214 Number Theory +math/9906215 Number Theory +math/9907026 Operator Algebras +math/9907073 Algebraic Topology +math/9907103 Number Theory +math/9907136 Algebraic Geometry +math/9907175 Quantum Algebra +math/9907183 Combinatorics +math/9907196 Probability +math/9907201 Combinatorics +math/9907202 Representation Theory +math/9907204 Number Theory +math/9907205 Dynamical Systems +math/9907206 Differential Geometry +math/9907207 Number Theory +math/9907209 Classical Analysis and ODEs +math/9908049 Functional Analysis +math/9908111 Functional Analysis +math/9909003 Differential Geometry +math/9909004 Symplectic Geometry +math/9909048 Operator Algebras +math/9909120 Algebraic Topology +math/9909187 Probability +math/9909189 Probability +math/9909190 Number Theory +math/9909193 Classical Analysis and ODEs +math/9909197 Classical Analysis and ODEs +math/9910002 Differential Geometry +math/9910108 Geometric Topology +math/9910128 Classical Analysis and ODEs +math/9910174 Algebraic Geometry +math/9911026 Functional Analysis +math/9911058 Quantum Algebra +math/9911062 Differential Geometry +math/9911166 Algebraic Geometry +math/9911247 Geometric Topology +math/9911248 Geometric Topology +math/9911249 Geometric Topology +math/9911250 Geometric Topology +math/9911251 Geometric Topology +math/9911253 Geometric Topology +math/9911256 Geometric Topology +math/9911257 Geometric Topology +math/9911258 Geometric Topology +math/9911259 Geometric Topology +math/9911261 Number Theory +math/9911262 Group Theory +math/9911263 Group Theory +math/9911264 Number Theory +math/9911265 Spectral Theory +math/9911266 Differential Geometry +math/9911268 Combinatorics +math/9911269 Geometric Topology +math/9912041 Algebraic Geometry +math/9912113 Classical Analysis and ODEs +math/9912124 Combinatorics +math/9912199 Algebraic Topology +math/9912241 Algebraic Geometry +mtrl-th/9411009 Materials Science +mtrl-th/9412006 Materials Science +mtrl-th/9412008 Materials Science +mtrl-th/9501001 Materials Science +mtrl-th/9501002 Materials Science +mtrl-th/9501003 Materials Science +mtrl-th/9501004 Materials Science +mtrl-th/9501005 Materials Science +mtrl-th/9501006 Materials Science +mtrl-th/9502002 Materials Science +mtrl-th/9502003 Materials Science +mtrl-th/9502004 Materials Science +mtrl-th/9502005 Materials Science +mtrl-th/9502006 Materials Science +mtrl-th/9503001 Materials Science +mtrl-th/9503003 Materials Science +mtrl-th/9503005 Materials Science +mtrl-th/9503006 Materials Science +mtrl-th/9505006 Materials Science +mtrl-th/9607012 Materials Science +mtrl-th/9607014 Materials Science +mtrl-th/9609009 Materials Science +mtrl-th/9609011 Materials Science +nlin/0001043 Pattern Formation and Solitons +nlin/0002039 Pattern Formation and Solitons +nlin/0003039 Exactly Solvable and Integrable Systems +nlin/0003064 Chaotic Dynamics +nlin/0004028 Pattern Formation and Solitons +nlin/0005049 Pattern Formation and Solitons +nlin/0006006 Chaotic Dynamics +nlin/0006038 Chaotic Dynamics +nlin/0007002 Exactly Solvable and Integrable Systems +nlin/0008012 Pattern Formation and Solitons +nlin/0009002 Exactly Solvable and Integrable Systems +nlin/0009052 Chaotic Dynamics +nlin/0010004 Chaotic Dynamics +nlin/0102006 Chaotic Dynamics +nlin/0103034 Chaotic Dynamics +nlin/0104004 Chaotic Dynamics +nlin/0104034 Chaotic Dynamics +nlin/0104067 Pattern Formation and Solitons +0711.3666 Analysis of PDEs +0808.0051 Algebraic Topology +0906.3039 Atomic Physics +0912.3186 Algebraic Geometry +1001.0587 Atomic Physics +1006.3161 +1009.2633 Other Condensed Matter +1105.2338 Strongly Correlated Electrons +1105.2964 Strongly Correlated Electrons +1106.3861 Analysis of PDEs +1107.3342 Computer Science and Game Theory +1108.0714 Geometric Topology +1110.0671 Metric Geometry +1111.0321 Data Structures and Algorithms +1111.3123 General Physics +1111.4629 Dynamical Systems +1111.4976 Metric Geometry +1112.0499 Metric Geometry +1112.3892 Differential Geometry +1201.0147 Differential Geometry +1201.0321 Neurons and Cognition +1207.6848 Physics Education +1208.4066 Genomics +1209.5527 Computer Science and Game Theory +1210.5597 Differential Geometry +1211.4514 Metric Geometry +1211.4764 Classical Physics +1211.4814 Functional Analysis +1212.5564 Numerical Analysis +1305.4725 Quantum Algebra +1305.4887 Group Theory +1305.5365 Functional Analysis +1306.5648 Number Theory +1306.6452 +1307.4170 Superconductivity +1307.6626 Cryptography and Security +1307.7657 Algebraic Geometry +1401.4580 Spectral Theory +1401.7823 Group Theory +1401.7860 Metric Geometry +1402.6313 Portfolio Management +1402.6907 Phenomenology +1404.0989 Probability +1404.4269 Dynamical Systems +1404.4437 Theory +1404.6788 Information Theory +1404.7342 Representation Theory +1405.2583 Analysis of PDEs +1405.5899 Geometric Topology +1406.1877 Soft Condensed Matter +1406.2458 Dynamical Systems +1406.4488 Group Theory +1406.4996 General Mathematics +1406.7282 Statistical Mechanics +1407.4352 Soft Condensed Matter +1407.5684 Trading and Market Microstructure +1407.7714 Materials Science +1408.0133 K-Theory and Homology +1408.1051 Symplectic Geometry +1408.1932 Analysis of PDEs +1408.5342 Dynamical Systems +1408.5611 +1408.6207 Phenomenology +1408.6445 Quantum Algebra +1409.1326 Cosmology and Nongalactic Astrophysics +1409.2451 Classical Analysis and ODEs +1409.3202 Analysis of PDEs +1409.4338 +1409.7087 Strongly Correlated Electrons +1410.2182 Number Theory +1410.2610 Neurons and Cognition +1410.4178 Theory +1410.4190 +1410.4378 Algebraic Geometry +1410.4867 Theory +1410.7224 Analysis of PDEs +1410.7686 Statistical Mechanics +1410.7856 Artificial Intelligence +1410.8320 Solar and Stellar Astrophysics +1411.1156 +1411.1219 Solar and Stellar Astrophysics +1411.3877 Number Theory +1411.4456 Classical Physics +1411.4596 Mesoscale and Nanoscale Physics +1411.6476 Numerical Analysis +1412.0730 Probability +1412.6050 Phenomenology +1412.6845 Numerical Analysis +1412.8207 Algebraic Geometry +1412.8674 Probability +1501.03766 Chaotic Dynamics +1501.05086 Networking and Internet Architecture +1501.05512 Theory +1501.05681 Algebraic Geometry +1501.06089 Experiment +1501.07183 Geometric Topology +1502.00259 +1502.00445 Combinatorics +1502.02377 Learning +1502.03115 Probability +1503.00488 Computer Vision and Pattern Recognition +1503.01788 Physics Education +1503.02857 Optimization and Control +1503.04181 Combinatorics +1503.04514 +1503.05125 +1503.05400 Classical Analysis and ODEs +1503.07393 Numerical Analysis +1503.08894 Number Theory +1504.01647 Networking and Internet Architecture +1504.02245 Mesoscale and Nanoscale Physics +1504.02925 Commutative Algebra +1504.06200 Materials Science +1504.08353 Statistical Mechanics +1505.00415 Group Theory +1505.01220 Physics and Society +1505.01939 +1505.03070 +1505.03593 Differential Geometry +1505.04417 Distributed, Parallel, and Cluster Computing +1505.05800 Computational Complexity +1505.05881 Superconductivity +1505.07244 Mesoscale and Nanoscale Physics +1505.07285 Number Theory +1505.07624 Soft Condensed Matter +1506.00398 +1506.00801 +1506.01081 Experiment +1506.01218 Operator Algebras +1506.01795 +1506.02232 Combinatorics +1506.04343 +1506.04411 Algebraic Geometry +1506.06044 +1506.06388 Dynamical Systems +1506.07341 Algebraic Topology +1506.07755 High Energy Astrophysical Phenomena +1506.07954 +1506.09109 Networking and Internet Architecture +1507.00560 Strongly Correlated Electrons +1507.01126 Mesoscale and Nanoscale Physics +1507.01331 Analysis of PDEs +1507.02292 Astrophysics of Galaxies +1507.02337 Functional Analysis +1507.02480 Mesoscale and Nanoscale Physics +1507.02526 Probability +1507.03325 Distributed, Parallel, and Cluster Computing +1507.03937 Physics Education +1507.03939 Physics Education +1507.03941 Physics Education +1507.05093 Phenomenology +1507.05136 Data Structures and Algorithms +1507.05899 Machine Learning +1507.06333 Statistical Mechanics +1507.07252 Phenomenology +1507.08330 Mesoscale and Nanoscale Physics +1507.08476 Networking and Internet Architecture +1507.08826 Artificial Intelligence +1508.00008 Phenomenology +1508.00125 Complex Variables +1508.00552 Phenomenology +1508.01400 Classical Analysis and ODEs +1508.02745 Metric Geometry +1508.03439 Instrumentation and Methods for Astrophysics +1508.03483 Computation +1508.03714 Distributed, Parallel, and Cluster Computing +1508.05331 Superconductivity +1508.06863 Probability +1508.06991 Algebraic Geometry +1508.07533 Soft Condensed Matter +1509.02308 Hardware Architecture +1509.02684 Mesoscale and Nanoscale Physics +1509.02884 Logic +1509.02973 Mesoscale and Nanoscale Physics +1509.03655 Analysis of PDEs +1509.04713 Mesoscale and Nanoscale Physics +1509.04742 Quantum Gases +1509.04976 Experiment +1509.05372 Disordered Systems and Neural Networks +1509.06076 Experiment +1509.06702 Optics +1509.07262 Materials Science +1509.07637 Theory +1509.07988 Phenomenology +1509.08037 Graphics +1509.09143 Analysis of PDEs +1510.00105 Mesoscale and Nanoscale Physics +1510.00150 Astrophysics of Galaxies +1510.00458 Instrumentation and Detectors +1510.02706 Machine Learning +1510.03684 Numerical Analysis +1510.04057 Optics +1510.04160 Distributed, Parallel, and Cluster Computing +1510.04236 Soft Condensed Matter +1510.04439 Methodology +1510.04913 Strongly Correlated Electrons +1510.04928 Strongly Correlated Electrons +1510.05353 +1510.06227 Optics +1510.06276 Instrumentation and Detectors +1510.06297 Phenomenology +1510.06360 Strongly Correlated Electrons +1510.06972 Plasma Physics +1510.07138 Quantum Gases +1510.07706 Differential Geometry +1510.08344 Populations and Evolution +1510.08407 Lattice +1510.08442 Theory +1510.09217 Cosmology and Nongalactic Astrophysics +1511.02070 Materials Science +1511.02268 Biological Physics +1511.03075 Theory +1511.03079 Number Theory +1511.03549 Theory +1511.03939 Materials Science +1511.04012 Number Theory +1511.04152 Exactly Solvable and Integrable Systems +1511.04508 Cryptography and Security +1511.04933 Materials Science +1511.06180 Group Theory +1511.06184 Cosmology and Nongalactic Astrophysics +1511.06492 Optics +1511.06605 +1511.07321 Algebraic Geometry +1511.07478 Materials Science +1511.07678 Lattice +1511.08073 Combinatorics +1511.08581 Statistical Mechanics +1511.08843 Theory +1512.00030 Superconductivity +1512.00349 Theory +1512.00571 Number Theory +1512.00590 +1512.00882 Chemical Physics +1512.01420 Physics and Society +1512.01428 Atomic Physics +1512.01662 Theory +1512.03214 Astrophysics of Galaxies +1512.03538 Astrophysics of Galaxies +1512.03544 Mesoscale and Nanoscale Physics +1512.03735 Analysis of PDEs +1512.03841 High Energy Astrophysical Phenomena +1512.03959 Representation Theory +1512.05173 +1512.05356 Cosmology and Nongalactic Astrophysics +1512.05549 Earth and Planetary Astrophysics +1512.05699 Probability +1512.05839 +1512.06311 Solar and Stellar Astrophysics +1512.06615 Mesoscale and Nanoscale Physics +1512.06956 +1512.07246 Computation +1512.07305 Distributed, Parallel, and Cluster Computing +1512.07362 Systems and Control +1512.07543 Mesoscale and Nanoscale Physics +1512.07654 Operating Systems +1512.08009 Logic in Computer Science +1512.08284 Statistical Mechanics +1512.08957 Statistical Mechanics +1601.00271 Data Structures and Algorithms +1601.00355 Atomic Physics +1601.00865 Chemical Physics +1601.01592 Superconductivity +1601.01851 Analysis of PDEs +1601.03005 Strongly Correlated Electrons +1601.03690 Earth and Planetary Astrophysics +1601.03808 Theory +1601.04164 Materials Science +1601.04732 Theory +1601.05739 Classical Physics +1601.06239 Learning +1601.06884 Information Theory +1601.07521 Statistics Theory +1601.07586 Physics and Society +1602.00492 Experiment +1602.01003 Social and Information Networks +1602.01353 Fluid Dynamics +1602.02278 Strongly Correlated Electrons +1602.02591 Analysis of PDEs +1602.02774 High Energy Astrophysical Phenomena +1602.02979 Statistical Mechanics +1602.03418 Computer Vision and Pattern Recognition +1602.03648 Information Theory +1602.03663 Combinatorics +1602.03881 Data Structures and Algorithms +1602.03904 Combinatorics +1602.04211 Networking and Internet Architecture +1602.04252 Optics +1602.04657 Materials Science +1602.04734 Chemical Physics +1602.04984 Computer Vision and Pattern Recognition +1602.05567 Spectral Theory +1602.05869 Soft Condensed Matter +1602.06268 Probability +1602.06692 Materials Science +1602.06924 Networking and Internet Architecture +1602.07153 Earth and Planetary Astrophysics +1602.07188 Computer Vision and Pattern Recognition +1602.07582 Solar and Stellar Astrophysics +1602.08061 Theory +1602.08958 Algebraic Geometry +1602.08988 Materials Science +1603.00002 Combinatorics +1603.00558 Superconductivity +1603.00766 Combinatorics +1603.01320 Materials Science +1603.01344 Mesoscale and Nanoscale Physics +1603.01611 +1603.01664 Differential Geometry +1603.01686 Optics +1603.01711 Differential Geometry +1603.01730 Mesoscale and Nanoscale Physics +1603.01865 Probability +1603.01896 Analysis of PDEs +1603.01901 Learning +1603.01951 Instrumentation and Methods for Astrophysics +1603.01974 Instrumentation and Methods for Astrophysics +1603.01979 Digital Libraries +1603.02047 Mesoscale and Nanoscale Physics +1603.02113 Mesoscale and Nanoscale Physics +1603.02168 Soft Condensed Matter +1603.02169 Mesoscale and Nanoscale Physics +1603.02504 Discrete Mathematics +1603.02521 Representation Theory +1603.02620 Molecular Networks +1603.02729 Computer Vision and Pattern Recognition +1603.02895 Information Theory +1603.02960 Combinatorics +1603.02997 Spectral Theory +1603.03178 Data Structures and Algorithms +1603.03185 Computation and Language +1603.03465 Information Theory +1603.03505 Data Structures and Algorithms +1603.03513 Optics +1603.03764 Classical Physics +1603.03765 Number Theory +1603.03766 Cosmology and Nongalactic Astrophysics +1603.03769 Medical Physics +1603.03772 Phenomenology +1603.03773 Earth and Planetary Astrophysics +1603.03781 Strongly Correlated Electrons +1603.03783 Computer Vision and Pattern Recognition +1603.03784 Computation and Language +1603.03788 Machine Learning +1603.03789 Number Theory +1603.03790 Analysis of PDEs +1603.03791 Computational Physics +1603.03792 History and Philosophy of Physics +1603.03795 Human-Computer Interaction +1603.03802 Optics +1603.03805 Machine Learning +1603.03808 Geometric Topology +1603.03809 Software Engineering +1603.03813 Number Theory +1603.03814 Artificial Intelligence +1603.03818 Computational Geometry +1603.03819 Computation +1603.03822 Geometric Topology +1603.03827 Computation and Language +1603.03829 Strongly Correlated Electrons +1603.03830 Statistics Theory +1603.03834 Networking and Internet Architecture +1603.03836 Data Structures and Algorithms +1603.03837 Cryptography and Security +1603.03840 Representation Theory +1603.03842 Operator Algebras +1603.03843 Representation Theory +1603.03844 Chaotic Dynamics +1603.03846 +1603.03849 Distributed, Parallel, and Cluster Computing +1603.03855 Combinatorics +1603.03856 Computer Vision and Pattern Recognition +1603.03857 Analysis of PDEs +1603.03860 Mesoscale and Nanoscale Physics +1603.03863 Commutative Algebra +1603.03865 Instrumentation and Methods for Astrophysics +1603.03866 Astrophysics of Galaxies +1603.03868 High Energy Astrophysical Phenomena +1603.03869 Rings and Algebras +1603.03871 Analysis of PDEs +1603.03872 Materials Science +1603.03873 Computation and Language +1603.03874 Pricing of Securities +1603.03875 Computer Vision and Pattern Recognition +1603.03877 Differential Geometry +1603.03884 Artificial Intelligence +1603.03885 Complex Variables +1603.03886 Computational Geometry +1603.03888 Distributed, Parallel, and Cluster Computing +1603.03892 Algebraic Topology +1603.03893 Algebraic Topology +1603.03894 Computational Physics +1603.03898 Information Theory +1603.03899 +1603.03900 +1603.03903 Experiment +1603.03905 Solar and Stellar Astrophysics +1603.03906 Solar and Stellar Astrophysics +1603.03907 +1603.03908 Combinatorics +1603.03910 Number Theory +1603.03912 Classical Analysis and ODEs +1603.03913 Number Theory +1603.03914 Representation Theory +1603.03917 Materials Science +1603.03918 Operator Algebras +1603.03919 Optics +1603.03921 Emerging Technologies +1603.03924 Mesoscale and Nanoscale Physics +1603.03925 Computer Vision and Pattern Recognition +1603.03927 Phenomenology +1603.03929 Algebraic Geometry +1603.03931 Geometric Topology +1603.03934 Statistics Theory +1603.03936 Optimization and Control +1603.03938 Networking and Internet Architecture +1603.03941 +1603.03945 Numerical Analysis +1603.03946 Group Theory +1603.03950 Applications +1603.03952 Statistics Theory +1603.03955 Analysis of PDEs +1603.03956 Computer Science and Game Theory +1603.03963 +1603.03965 Classical Analysis and ODEs +1603.03968 Computer Vision and Pattern Recognition +1603.03970 Materials Science +1603.03971 Distributed, Parallel, and Cluster Computing +1603.03976 Analysis of PDEs +1603.03981 Combinatorics +1603.03982 Analysis of PDEs +1603.03984 Computer Vision and Pattern Recognition +1603.03986 Number Theory +1603.03987 Symbolic Computation +1603.03988 Materials Science +1603.03991 Number Theory +1603.03992 +1603.03994 Exactly Solvable and Integrable Systems +1603.03995 Combinatorics +1603.04000 Computer Vision and Pattern Recognition +1603.04002 Learning +1603.04003 Strongly Correlated Electrons +1603.04006 Analysis of PDEs +1603.04007 Populations and Evolution +1603.04009 +1603.04010 Social and Information Networks +1603.04012 Computers and Society +1603.04018 Group Theory +1603.04020 Information Theory +1603.04024 Classical Analysis and ODEs +1603.04025 Mesoscale and Nanoscale Physics +1603.04026 Computer Vision and Pattern Recognition +1603.04027 Accelerator Physics +1603.04028 Biological Physics +1603.04029 Geometric Topology +1603.04031 Networking and Internet Architecture +1603.04032 Commutative Algebra +1603.04033 Chemical Physics +1603.04041 Strongly Correlated Electrons +1603.04042 Computer Vision and Pattern Recognition +1603.04046 Computer Vision and Pattern Recognition +1603.04047 Classical Analysis and ODEs +1603.04049 Metric Geometry +1603.04052 Combinatorics +1603.04055 Information Theory +1603.04056 Strongly Correlated Electrons +1603.04058 Biological Physics +1603.04060 Graphics +1603.04064 Optimization and Control +1603.04069 Mesoscale and Nanoscale Physics +1603.04071 High Energy Astrophysical Phenomena +1603.04073 Numerical Analysis +1603.04076 Number Theory +1603.04078 Theory +1603.04085 Cryptography and Security +1603.04086 Number Theory +1603.04087 Algebraic Geometry +1603.04093 Methodology +1603.04096 Statistics Theory +1603.04099 Computational Finance +1603.04103 Materials Science +1603.04104 Complex Variables +1603.04105 Superconductivity +1603.04106 Differential Geometry +1603.04109 Computational Geometry +1603.04111 Number Theory +1603.04112 Robotics +1603.04113 Materials Science +1603.04116 Computer Vision and Pattern Recognition +1603.04117 Computer Vision and Pattern Recognition +1603.04119 Artificial Intelligence +1603.04121 Combinatorics +1603.04122 Methodology +1603.04125 Systems and Control +1603.04128 Optimization and Control +1603.04130 Probability +1603.04140 Methodology +1603.04144 Phenomenology +1603.04145 Number Theory +1603.04148 Analysis of PDEs +1603.04150 Computer Vision and Pattern Recognition +1603.04151 Dynamical Systems +1603.04153 Learning +1603.04154 Optimization and Control +1603.04156 Experiment +1603.04161 Materials Science +1603.04162 Metric Geometry +1603.04164 Phenomenology +1603.04166 Computation +1603.04169 Optics +1603.04175 Mesoscale and Nanoscale Physics +1603.04176 Methodology +1603.04177 Mesoscale and Nanoscale Physics +1603.04180 Combinatorics +1603.04185 Analysis of PDEs +1603.04187 Number Theory +1603.04192 Phenomenology +1603.04196 Methodology +1603.04198 Dynamical Systems +1603.04199 Distributed, Parallel, and Cluster Computing +1603.04201 Analysis of PDEs +1603.04202 Functional Analysis +1603.04203 Computer Vision and Pattern Recognition +1603.04205 Phenomenology +1603.04211 Dynamical Systems +1603.04212 Group Theory +1603.04214 Mesoscale and Nanoscale Physics +1603.04218 Atmospheric and Oceanic Physics +1603.04219 Analysis of PDEs +1603.04222 Methodology +1603.04224 Computational Physics +1603.04225 Physics and Society +1603.04228 Cryptography and Security +1603.04233 Analysis of PDEs +1603.04234 Distributed, Parallel, and Cluster Computing +1603.04236 Computation and Language +1603.04241 Materials Science +1603.04243 Instrumentation and Detectors +1603.04245 Optimization and Control +1603.04246 Number Theory +1603.04251 Phenomenology +1603.04254 Strongly Correlated Electrons +1603.04257 Numerical Analysis +1603.04258 Combinatorics +1603.04260 Numerical Analysis +1603.04261 Statistics Theory +1603.04265 Computer Vision and Pattern Recognition +1603.04267 Adaptation and Self-Organizing Systems +1603.04268 Combinatorics +1603.04270 Analysis of PDEs +1603.04272 Adaptation and Self-Organizing Systems +1603.04274 +1603.04277 Functional Analysis +1603.04278 Instrumentation and Methods for Astrophysics +1603.04279 Functional Analysis +1603.04280 Combinatorics +1603.04283 Learning +1603.04284 Numerical Analysis +1603.04286 Differential Geometry +1603.04289 Theory +1603.04290 Information Theory +1603.04292 Discrete Mathematics +1603.04293 Representation Theory +1603.04297 Commutative Algebra +1603.04298 Programming Languages +1603.04299 Pattern Formation and Solitons +1603.04301 Combinatorics +1603.04303 +1603.04305 Optimization and Control +1603.04307 Networking and Internet Architecture +1603.04308 Computer Vision and Pattern Recognition +1603.04314 Systems and Control +1603.04315 Computational Physics +1603.04319 Learning +1603.04320 Algebraic Geometry +1603.04321 Optimization and Control +1603.04322 Computers and Society +1603.04327 Computer Vision and Pattern Recognition +1603.04333 +1603.04335 Software Engineering +1603.04336 Biomolecules +1603.04337 Combinatorics +1603.04338 Robotics +1603.04340 Soft Condensed Matter +1603.04344 Probability +1603.04345 Algebraic Geometry +1603.04348 Probability +1603.04352 Number Theory +1603.04360 Computation +1603.04364 Statistical Mechanics +1603.04372 Materials Science +1603.04375 Optimization and Control +1603.04387 Networking and Internet Architecture +1603.04390 Mesoscale and Nanoscale Physics +1603.04391 Soft Condensed Matter +1603.04392 Computer Vision and Pattern Recognition +1603.04395 Networking and Internet Architecture +1603.04399 Quantum Algebra +1603.04400 Astrophysics of Galaxies +1603.04401 Software Engineering +1603.04402 Artificial Intelligence +1603.04411 Algebraic Geometry +1603.04412 Algebraic Topology +1603.04413 Earth and Planetary Astrophysics +1603.04422 Computational Geometry +1603.04423 Social and Information Networks +1603.04425 Social and Information Networks +1603.04427 Strongly Correlated Electrons +cond-mat/0208383 Strongly Correlated Electrons +cond-mat/0302032 Statistical Mechanics +cond-mat/0407244 Other Condensed Matter +gr-qc/0604047 +math/0411518 Optimization and Control +math/0501123 Optimization and Control +math/0501133 Optimization and Control +physics/0504062 General Physics +physics/0510242 Physics and Society +quant-ph/0403130 +0901.4975 Astrophysics of Galaxies +0906.2953 Functional Analysis +0908.2717 Probability +0911.5706 Analysis of PDEs +1005.0915 Disordered Systems and Neural Networks +1012.1236 Probability +1102.4054 Analysis of PDEs +1111.0824 Analysis of PDEs +1201.3089 Probability +1202.3094 Probability +1204.4571 Analysis of PDEs +1211.0054 Category Theory +1301.0408 Probability +1304.5774 Formal Languages and Automata Theory +1305.2486 Spectral Theory +1307.6589 General Physics +1307.6629 Differential Geometry +1308.3430 Rings and Algebras +1309.2766 Complex Variables +1309.5839 Classical Analysis and ODEs +1310.7845 Probability +1312.4861 Probability +1404.5863 Probability +1404.7403 Methodology +1405.2806 Systems and Control +1405.7405 Cosmology and Nongalactic Astrophysics +1406.1837 Learning +1406.3800 Materials Science +1407.1810 High Energy Astrophysical Phenomena +1407.3267 Performance +1408.0320 Combinatorics +1408.0786 +1409.2969 Algebraic Geometry +1409.5120 Astrophysics of Galaxies +1409.6843 Physics and Society +1409.8263 Phenomenology +1409.8545 +1410.3959 +1410.4204 Phenomenology +1410.6962 Algebraic Geometry +1410.7165 Statistics Theory +1410.7673 Instrumentation and Detectors +1411.4389 Computer Vision and Pattern Recognition +1501.00179 Computational Geometry +1501.00282 Cosmology and Nongalactic Astrophysics +1501.05103 Analysis of PDEs +1501.05888 Classical Analysis and ODEs +1502.02547 Optics +1502.02898 Strongly Correlated Electrons +1502.04608 +1502.07881 +1503.02430 Spectral Theory +1503.06335 +1504.00649 Geometric Topology +1504.02888 Classical Analysis and ODEs +1504.03356 +1504.04532 Probability +1504.06653 Methodology +1504.06709 Optimization and Control +1505.02791 Probability +1505.04983 Methodology +1505.06344 Optimization and Control +1505.07947 Classical Analysis and ODEs +1506.00105 Statistical Mechanics +1506.03000 Phenomenology +1506.06069 Economics +1506.06457 +1506.06570 Representation Theory +1506.06831 Methodology +1506.07868 Numerical Analysis +1506.09143 Cosmology and Nongalactic Astrophysics +1507.04741 Algebraic Topology +1507.07691 Soft Condensed Matter +1507.08238 Algebraic Geometry +1508.01146 Methodology +1508.03788 Neurons and Cognition +1508.03947 Other Condensed Matter +1508.05038 Computer Vision and Pattern Recognition +1508.05689 Strongly Correlated Electrons +1508.07035 Materials Science +1508.07721 Mesoscale and Nanoscale Physics +1509.00172 Computation +1509.06698 Optimization and Control +1509.08107 Cosmology and Nongalactic Astrophysics +1509.08278 Operator Algebras +1509.09248 Superconductivity +1510.01211 +1510.02527 Optics +1510.03774 Theory +1510.04043 Classical Analysis and ODEs +1510.05366 Theory +1510.06702 Systems and Control +1511.00729 +1511.01486 Mesoscale and Nanoscale Physics +1511.02799 Computer Vision and Pattern Recognition +1511.03243 Machine Learning +1511.03600 Analysis of PDEs +1511.03608 Theory +1511.05200 Solar and Stellar Astrophysics +1511.06710 Optimization and Control +1511.07305 Social and Information Networks +1511.08358 Statistical Mechanics +1512.00429 Differential Geometry +1512.00958 Probability +1512.01754 General Topology +1512.02192 Experiment +1512.02796 Numerical Analysis +1512.04759 Mesoscale and Nanoscale Physics +1512.05955 Experiment +1512.06097 Group Theory +1512.06150 Atomic Physics +1512.06155 Chemical Physics +1601.02175 Theory +1601.02649 Phenomenology +1601.03011 Theory +1601.03361 Logic +1601.03874 Cryptography and Security +1601.04437 Mesoscale and Nanoscale Physics +1601.04778 High Energy Astrophysical Phenomena +1601.06701 Materials Science +1602.00001 Numerical Analysis +1602.00136 Statistics Theory +1602.00641 Combinatorics +1602.00726 Instrumentation and Detectors +1602.00949 Phenomenology +1602.01153 Cosmology and Nongalactic Astrophysics +1602.03146 Learning +1602.03828 Information Theory +1602.04187 +1602.04589 Statistics Theory +1602.04741 Learning +1602.04849 +1602.06171 Strongly Correlated Electrons +1602.06725 Learning +1602.07593 Computer Science and Game Theory +1602.08405 Computer Vision and Pattern Recognition +1602.08468 Dynamical Systems +1603.00943 Optimization and Control +1603.03033 Combinatorics +1603.03890 Algebraic Geometry +1603.09048 Learning +1603.09122 Theory +1603.09295 Representation Theory +1604.02474 Programming Languages +1604.02625 Differential Geometry +1604.03419 +1604.05394 Phenomenology +1604.06149 Mesoscale and Nanoscale Physics +1604.06241 Earth and Planetary Astrophysics +1604.06509 Logic in Computer Science +1605.00369 Strongly Correlated Electrons +1605.00790 Chemical Physics +1605.00951 Experiment +1605.02122 +1605.02169 Popular Physics +1605.02689 +1605.02992 Cell Behavior +1605.03828 Logic +1605.04524 Information Theory +1605.05492 Combinatorics +1605.05720 Spectral Theory +1605.06293 Computation +1605.06490 Earth and Planetary Astrophysics +1605.06731 Geometric Topology +1605.07037 Soft Condensed Matter +1605.07128 Theory +1605.07732 Networking and Internet Architecture +1605.08062 Learning +1605.08294 Cryptography and Security +1605.09065 Mesoscale and Nanoscale Physics +1605.09190 Data Structures and Algorithms +1605.09437 Computers and Society +1605.09519 Information Theory +1605.09577 Superconductivity +1605.09769 Human-Computer Interaction +1606.00001 Data Structures and Algorithms +1606.00003 Phenomenology +1606.00010 Analysis of PDEs +1606.00020 Combinatorics +1606.00021 Computer Vision and Pattern Recognition +1606.00026 Earth and Planetary Astrophysics +1606.00028 Analysis of PDEs +1606.00030 Mesoscale and Nanoscale Physics +1606.00031 Distributed, Parallel, and Cluster Computing +1606.00037 Sound +1606.00038 Group Theory +1606.00040 Logic +1606.00041 Group Theory +1606.00042 Molecular Networks +1606.00043 Instrumentation and Methods for Astrophysics +1606.00046 Databases +1606.00051 Operator Algebras +1606.00056 +1606.00059 Materials Science +1606.00060 Instrumentation and Methods for Astrophysics +1606.00062 Numerical Analysis +1606.00068 Artificial Intelligence +1606.00069 Differential Geometry +1606.00071 Analysis of PDEs +1606.00075 Artificial Intelligence +1606.00084 Solar and Stellar Astrophysics +1606.00086 Analysis of PDEs +1606.00087 Algebraic Geometry +1606.00090 +1606.00092 Statistics Theory +1606.00093 Computational Engineering, Finance, and Science +1606.00096 Materials Science +1606.00098 Dynamical Systems +1606.00099 Complex Variables +1606.00104 Dynamical Systems +1606.00107 +1606.00110 Computer Vision and Pattern Recognition +1606.00112 Computational Geometry +1606.00113 Machine Learning +1606.00114 Atomic Physics +1606.00116 Materials Science +1606.00117 Data Structures and Algorithms +1606.00118 Machine Learning +1606.00120 Combinatorics +1606.00121 Complex Variables +1606.00122 Optimization and Control +1606.00125 Geometric Topology +1606.00133 Artificial Intelligence +1606.00134 Information Theory +1606.00135 +1606.00136 Machine Learning +1606.00137 Software Engineering +1606.00142 Machine Learning +1606.00149 Classical Analysis and ODEs +1606.00152 Dynamical Systems +1606.00153 Digital Libraries +1606.00155 Digital Libraries +1606.00156 Symplectic Geometry +1606.00160 History and Overview +1606.00161 Cryptography and Security +1606.00166 Computer Vision and Pattern Recognition +1606.00169 Networking and Internet Architecture +1606.00171 Operator Algebras +1606.00172 Analysis of PDEs +1606.00174 Algebraic Geometry +1606.00175 Logic in Computer Science +1606.00176 Analysis of PDEs +1606.00177 Earth and Planetary Astrophysics +1606.00180 Cosmology and Nongalactic Astrophysics +1606.00181 Materials Science +1606.00185 Computer Vision and Pattern Recognition +1606.00189 Computation and Language +1606.00193 Digital Libraries +1606.00196 +1606.00198 Solar and Stellar Astrophysics +1606.00199 Algebraic Topology +1606.00205 History and Philosophy of Physics +1606.00210 Computation and Language +1606.00211 +1606.00216 Group Theory +1606.00217 Representation Theory +1606.00226 Machine Learning +1606.00228 Physics and Society +1606.00232 Digital Libraries +1606.00233 Cosmology and Nongalactic Astrophysics +1606.00234 Formal Languages and Automata Theory +1606.00235 Instrumentation and Methods for Astrophysics +1606.00240 Digital Libraries +1606.00242 Computation +1606.00245 Physics Education +1606.00247 Computational Physics +1606.00249 Functional Analysis +1606.00250 Statistics Theory +1606.00251 Numerical Analysis +1606.00253 Computation and Language +1606.00255 +1606.00256 +1606.00257 Tissues and Organs +1606.00261 Tissues and Organs +1606.00263 Statistics Theory +1606.00264 Multimedia +1606.00265 Methodology +1606.00266 Soft Condensed Matter +1606.00267 Number Theory +1606.00268 General Mathematics +1606.00274 Numerical Analysis +1606.00279 Dynamical Systems +1606.00280 Logic in Computer Science +1606.00282 Learning +1606.00283 Astrophysics of Galaxies +1606.00285 Robotics +1606.00288 Software Engineering +1606.00289 Combinatorics +1606.00290 Logic +1606.00291 Optics +1606.00294 Computation and Language +1606.00295 Databases +1606.00298 Sound +1606.00299 +1606.00300 Number Theory +1606.00303 Algebraic Geometry +1606.00307 Strongly Correlated Electrons +1606.00309 Quantitative Methods +1606.00312 Group Theory +1606.00313 Learning +1606.00316 Statistical Mechanics +1606.00319 Functional Analysis +1606.00320 Theory +1606.00324 Optimization and Control +1606.00325 Dynamical Systems +1606.00330 Number Theory +1606.00338 Logic +1606.00339 Artificial Intelligence +1606.00341 Multimedia +1606.00347 Mesoscale and Nanoscale Physics +1606.00349 Complex Variables +1606.00350 Optimization and Control +1606.00354 Physics Education +1606.00358 Number Theory +1606.00359 Discrete Mathematics +1606.00361 Applications +1606.00362 High Energy Astrophysical Phenomena +1606.00365 Theory +1606.00369 Solar and Stellar Astrophysics +1606.00370 Human-Computer Interaction +1606.00372 Computation and Language +1606.00374 Soft Condensed Matter +1606.00376 Number Theory +1606.00379 Analysis of PDEs +1606.00381 Rings and Algebras +1606.00382 Instrumentation and Detectors +1606.00386 Plasma Physics +1606.00389 Machine Learning +1606.00390 Optics +1606.00391 Data Analysis, Statistics and Probability +1606.00396 Performance +1606.00398 Learning +1606.00399 Learning +1606.00400 Networking and Internet Architecture +1606.00405 Digital Libraries +1606.00408 Soft Condensed Matter +1606.00409 Functional Analysis +1606.00410 Cryptography and Security +1606.00411 Social and Information Networks +1606.00413 Spectral Theory +1606.00414 Computation and Language +1606.00417 Optics +1606.00421 Symplectic Geometry +1606.00422 Probability +1606.00424 Economics +1606.00425 Computational Geometry +1606.00427 +cs/0503039 Discrete Mathematics +1307.1357 Solar and Stellar Astrophysics +1307.2476 Experiment +1307.2782 Experiment +1307.3473 High Energy Astrophysical Phenomena +1307.4285 Experiment +1307.4556 Experiment +1307.4889 Experiment +1307.4991 Complex Variables +1307.5024 Experiment +1307.5379 Soft Condensed Matter +1307.6379 Experiment +1307.6982 Systems and Control +1307.7335 Experiment +1307.7595 Experiment +1308.1340 Experiment +1308.2487 Group Theory +1308.2933 Superconductivity +1308.2949 Superconductivity +1308.4105 Rings and Algebras +1308.5916 Experiment +1308.6396 Optics +1308.6729 +1309.0694 Discrete Mathematics +1309.0811 Earth and Planetary Astrophysics +1309.0979 Combinatorics +1309.1547 Discrete Mathematics +1309.1553 Discrete Mathematics +1309.1841 Discrete Mathematics +1309.2009 Solar and Stellar Astrophysics +1309.3519 Instrumentation and Methods for Astrophysics +1309.3742 Experiment +1309.5332 Differential Geometry +1309.5335 Quantum Gases +1309.5535 Astrophysics of Galaxies +1309.6534 Experiment +1309.7580 Number Theory +1310.0596 Differential Geometry +1310.1268 Algebraic Geometry +1310.1554 Cosmology and Nongalactic Astrophysics +1310.1994 Earth and Planetary Astrophysics +1310.2145 Experiment +1310.2535 Experiment +1310.2538 Experiment +1310.4740 Experiment +1310.5517 Cosmology and Nongalactic Astrophysics +1310.6041 Earth and Planetary Astrophysics +1310.7201 Experiment +1310.7953 Experiment +1310.8156 Logic in Computer Science +1310.8197 Experiment +1311.2083 Earth and Planetary Astrophysics +1311.5206 Mesoscale and Nanoscale Physics +1311.5820 +1312.1217 Experiment +1312.2268 Formal Languages and Automata Theory +1312.3927 Logic in Computer Science +1312.4957 Cosmology and Nongalactic Astrophysics +1312.5618 Cosmology and Nongalactic Astrophysics +1312.5631 High Energy Astrophysical Phenomena +1403.3054 +1403.3606 Experiment +1403.3828 +1403.5306 +1403.6317 Symplectic Geometry +1403.7761 Probability +1403.8045 Experiment +1404.0275 Experiment +1404.1273 Probability +1404.1961 Differential Geometry +1404.6476 Digital Libraries +1404.7455 Dynamical Systems +1405.0988 +1405.1212 Risk Management +1405.2032 Mesoscale and Nanoscale Physics +1405.2758 +1405.4178 Complex Variables +1405.4627 Commutative Algebra +1405.4905 Risk Management +1405.4933 Analysis of PDEs +1405.4988 Functional Analysis +1405.5194 Group Theory +1405.6322 Information Theory +1405.6630 Computer Science and Game Theory +1406.0187 Information Theory +1407.6509 Statistical Mechanics +0709.0738 +0810.1861 +0901.4138 Probability +0904.1221 Solar and Stellar Astrophysics +0904.2457 Discrete Mathematics +0904.3613 Probability +0904.4566 Biological Physics +0904.4745 Analysis of PDEs +0905.1104 Statistical Mechanics +0905.2287 Data Structures and Algorithms +0905.4119 Analysis of PDEs +0906.4940 Strongly Correlated Electrons +0906.5473 Materials Science +0908.2564 Differential Geometry +0908.2711 Differential Geometry +0908.4005 Programming Languages +0909.2562 +0909.3600 Differential Geometry +0909.4839 Cosmology and Nongalactic Astrophysics +0909.5550 Algebraic Topology +0910.1013 Machine Learning +0910.1690 Software Engineering +0910.2086 Analysis of PDEs +0910.2087 Analysis of PDEs +0910.2155 Solar and Stellar Astrophysics +0910.3150 Theory +0910.3943 High Energy Astrophysical Phenomena +0910.4341 Mesoscale and Nanoscale Physics +0910.5443 Phenomenology +0911.0107 Classical Physics +0911.1708 Artificial Intelligence +0911.2995 Rings and Algebras +1001.0233 Operator Algebras +1001.0710 Strongly Correlated Electrons +1001.0890 Data Structures and Algorithms +1002.0730 Statistics Theory +1002.2902 Optics +1002.3460 Probability +1004.1040 Strongly Correlated Electrons +1005.0425 Solar and Stellar Astrophysics +1005.0749 Symbolic Computation +1005.0927 Probability +1005.1953 Cryptography and Security +1005.3060 Cosmology and Nongalactic Astrophysics +1005.3518 General Finance +1005.4324 High Energy Astrophysical Phenomena +1005.4720 +1005.4745 Materials Science +1006.0321 Solar and Stellar Astrophysics +1006.1278 +1006.1572 Methodology +1006.1881 Computer Science and Game Theory +1006.2955 Computational Geometry +1006.3108 +1006.5278 Information Retrieval +1006.5511 Artificial Intelligence +1006.5829 Robotics +1006.5951 Mesoscale and Nanoscale Physics +1007.0983 +1007.2964 Probability +1007.3628 Analysis of PDEs +1007.5120 Artificial Intelligence +1008.1720 +1008.2667 History and Overview +1008.3268 Applications +1008.4086 Classical Physics +1008.4706 Materials Science +1009.0207 Mesoscale and Nanoscale Physics +1009.2952 +1009.2992 Cosmology and Nongalactic Astrophysics +1009.3237 +1009.3697 Biomolecules +1009.5930 +1010.1169 Biological Physics +1010.3154 Solar and Stellar Astrophysics +1010.3731 +1010.3804 Strongly Correlated Electrons +1010.4061 Mesoscale and Nanoscale Physics +1010.4658 Analysis of PDEs +1011.1538 +1011.4700 Materials Science +1011.5044 +1011.5243 Strongly Correlated Electrons +1012.0048 Medical Physics +1012.1217 Differential Geometry +1012.1623 Human-Computer Interaction +1012.2099 Instrumentation and Methods for Astrophysics +1012.3002 Cosmology and Nongalactic Astrophysics +1012.4683 Differential Geometry +1012.5408 Populations and Evolution +1101.0956 Differential Geometry +1101.0960 Differential Geometry +1101.2301 Software Engineering +1101.2471 Category Theory +1101.3500 Systems and Control +1101.5218 Probability +1101.6040 +1102.0152 Earth and Planetary Astrophysics +1102.0415 Functional Analysis +1102.1373 Rings and Algebras +1102.2543 Cosmology and Nongalactic Astrophysics +1102.3351 Optics +1102.4127 Number Theory +1102.4867 Strongly Correlated Electrons +1102.5493 General Topology +1103.0045 Networking and Internet Architecture +1103.4794 Algebraic Geometry +1104.0324 Combinatorics +1104.0989 Mesoscale and Nanoscale Physics +1104.1536 Statistics Theory +1104.4092 Cell Behavior +1104.4139 Probability +1104.5683 Analysis of PDEs +1104.5684 Analysis of PDEs +1104.5685 Analysis of PDEs +1105.3353 Computational Physics +1105.4318 Digital Libraries +1105.5020 Representation Theory +1105.5389 Phenomenology +1105.5434 +1105.5726 Probability +1105.6289 Quantum Gases +1106.0119 Materials Science +1106.1588 Algebraic Geometry +1106.1781 Analysis of PDEs +1106.3199 Probability +1106.5883 +1107.0259 Quantum Gases +1107.0670 Strongly Correlated Electrons +1107.0843 Analysis of PDEs +1107.0859 Algebraic Topology +1107.2265 +1107.2443 Data Structures and Algorithms +1107.2522 Mesoscale and Nanoscale Physics +1107.3115 Other Condensed Matter +1107.3344 Functional Analysis +1107.3526 Computational Physics +1107.4153 Multiagent Systems +1107.4300 Materials Science +1107.5220 +1108.0737 Earth and Planetary Astrophysics +1108.0805 Earth and Planetary Astrophysics +1108.1042 Numerical Analysis +1108.1248 Mesoscale and Nanoscale Physics +1108.1269 Analysis of PDEs +1108.1721 Functional Analysis +1108.2493 Optics +1108.3393 Strongly Correlated Electrons +1108.3577 Optics +1108.3874 +1108.3881 Geometric Topology +1108.5210 Combinatorics +1108.5353 Other Condensed Matter +1108.5415 Probability +1108.5745 Instrumentation and Methods for Astrophysics +1108.6047 Quantum Gases +1109.0411 Mesoscale and Nanoscale Physics +1109.0899 Cosmology and Nongalactic Astrophysics +1109.3131 Instrumentation and Methods for Astrophysics +1109.4608 Mesoscale and Nanoscale Physics +1109.5451 Materials Science +1109.5480 Quantum Gases +1109.5546 Superconductivity +1109.5571 Quantum Gases +1109.6794 Software Engineering +1110.0158 +1110.1352 Optimization and Control +1110.2667 Strongly Correlated Electrons +1110.3688 Phenomenology +1110.3982 Fluid Dynamics +1110.4294 Neurons and Cognition +1110.5211 Optics +1110.5291 Materials Science +1110.5293 Category Theory +1110.5442 +1110.6041 K-Theory and Homology +1111.0349 Applications +1111.0405 Computational Complexity +1111.0589 Solar and Stellar Astrophysics +1111.1135 Differential Geometry +1111.1149 Solar and Stellar Astrophysics +1111.1364 +1111.2984 Dynamical Systems +1111.3280 Differential Geometry +1111.3463 Optics +1111.3470 Optics +1111.4143 Algebraic Geometry +1111.4242 Solar and Stellar Astrophysics +1111.4247 Solar and Stellar Astrophysics +1111.4928 Experiment +1111.5178 Analysis of PDEs +1111.5989 Statistics Theory +1111.6378 Optimization and Control +1112.0903 +1112.1515 Mesoscale and Nanoscale Physics +1112.1652 Pricing of Securities +1112.2760 Probability +1112.3217 General Finance +1112.3373 Methodology +1112.4035 Information Theory +1112.4168 +1112.4376 Numerical Analysis +1112.4779 General Physics +1112.5798 Statistical Mechanics +1112.5989 Chemical Physics +1309.0026 Experiment +1309.0174 Combinatorics +1309.0310 Materials Science +1309.0377 General Physics +1309.1143 Mesoscale and Nanoscale Physics +1309.1903 Strongly Correlated Electrons +1309.2436 Mesoscale and Nanoscale Physics +1309.2654 +1309.2688 Earth and Planetary Astrophysics +1309.2754 +1309.2755 Mesoscale and Nanoscale Physics +1309.2910 Optics +1309.3429 Functional Analysis +1309.4220 Functional Analysis +1309.4395 Classical Physics +1309.4484 Solar and Stellar Astrophysics +1309.4490 Solar and Stellar Astrophysics +1309.5052 Geometric Topology +1309.5237 Biological Physics +1309.5359 +1309.5538 Plasma Physics +1309.5639 +1309.5943 Optics +1309.6659 Computational Geometry +1309.7041 High Energy Astrophysical Phenomena +1309.7210 Probability +1309.7480 Instrumentation and Detectors +1310.0369 Superconductivity +1310.1486 Probability +1310.1862 Commutative Algebra +1310.1984 Classical Analysis and ODEs +1310.2010 Differential Geometry +1310.2386 Data Structures and Algorithms +1310.3065 Strongly Correlated Electrons +1310.3144 Functional Analysis +1310.3508 Geometric Topology +1310.4033 Representation Theory +1310.4670 High Energy Astrophysical Phenomena +1310.4755 Differential Geometry +1310.5476 Cryptography and Security +1310.5492 +1310.5501 Strongly Correlated Electrons +1310.7496 Atomic Physics +1310.7663 Group Theory +1310.7713 Analysis of PDEs +1310.8037 Methodology +1310.8461 Combinatorics +1311.0102 Quantum Algebra +1311.0191 Dynamical Systems +1311.3256 Analysis of PDEs +1311.5551 Plasma Physics +1311.5765 Information Retrieval +1311.6001 Cryptography and Security +1311.6913 +1311.7507 Rings and Algebras +1311.7587 Rings and Algebras +1312.0063 Complex Variables +1312.0064 Complex Variables +1312.0439 Algebraic Geometry +1312.0503 +1312.0872 Fluid Dynamics +1312.1400 Optimization and Control +1312.1594 Phenomenology +1312.1854 Classical Physics +1312.1881 Data Analysis, Statistics and Probability +1312.1926 Mesoscale and Nanoscale Physics +1312.2784 Computers and Society +1312.3132 Solar and Stellar Astrophysics +1312.3444 Discrete Mathematics +1312.4356 Optimization and Control +1312.4404 Metric Geometry +1312.4406 Metric Geometry +1312.4460 Phenomenology +1312.4936 Statistics Theory +1312.5109 Networking and Internet Architecture +1312.5407 Phenomenology +1312.5981 Cosmology and Nongalactic Astrophysics +1312.6167 Strongly Correlated Electrons +1312.6294 Optics +1312.6334 Instrumentation and Detectors +1312.6841 Portfolio Management +1312.6909 Optics +1312.7238 Classical Analysis and ODEs +1312.7813 Quantum Algebra +1401.0982 Exactly Solvable and Integrable Systems +1401.2197 Analysis of PDEs +1402.0104 Combinatorics +1402.0154 Group Theory +1402.0277 Statistics Theory +1402.0731 Combinatorics +1402.0908 Statistical Mechanics +1402.1062 Probability +1402.1319 Chemical Physics +1402.1614 Information Theory +1402.3172 Chaotic Dynamics +1402.3721 Analysis of PDEs +1402.3799 Materials Science +1402.4767 Optics +1402.5278 Phenomenology +1402.6012 Combinatorics +1402.6023 Phenomenology +1402.6194 +1402.6892 Dynamical Systems +1402.7199 +1402.7371 Superconductivity +1403.0006 Solar and Stellar Astrophysics +1403.3497 +1404.4558 Group Theory +1404.4906 Chaotic Dynamics +1405.0448 Probability +1405.0517 +1405.0738 Strongly Correlated Electrons +1405.0920 General Physics +1405.0946 Mesoscale and Nanoscale Physics +1405.1187 Number Theory +1405.1407 Superconductivity +1405.1704 Optics +1405.2171 Number Theory +1405.3077 Mesoscale and Nanoscale Physics +1405.3102 Combinatorics +1405.3130 Strongly Correlated Electrons +1405.3356 Category Theory +1405.3885 Optics +1405.4283 Mesoscale and Nanoscale Physics +1405.4544 Learning +1405.4767 +1405.4953 Materials Science +1405.4983 Mesoscale and Nanoscale Physics +1405.5056 Earth and Planetary Astrophysics +1405.5819 Numerical Analysis +1405.6455 +1405.6500 Databases +1405.6765 +1405.7644 +1405.7849 Computational Complexity +1406.0182 Computation +1406.0913 Other Statistics +1406.1149 Pricing of Securities +1406.1471 Strongly Correlated Electrons +1406.1885 +1406.2034 Chemical Physics +1406.2153 Phenomenology +1406.2500 Populations and Evolution +1406.3106 Applications +1406.3489 Plasma Physics +1406.4280 Mesoscale and Nanoscale Physics +1406.4337 Functional Analysis +1406.4401 Dynamical Systems +1406.4434 Instrumentation and Detectors +1406.4780 Classical Physics +1406.4963 +1406.5937 Optimization and Control +1406.6202 Functional Analysis +1406.6465 Rings and Algebras +1406.6857 Soft Condensed Matter +1406.7190 Optics +1406.7241 Commutative Algebra +1406.7687 Superconductivity +1407.0780 Solar and Stellar Astrophysics +1407.0878 Analysis of PDEs +1407.0903 Instrumentation and Methods for Astrophysics +1407.2337 Numerical Analysis +1407.3607 Soft Condensed Matter +1407.4041 +1407.4044 +1407.4495 Group Theory +1407.4894 Materials Science +1407.5211 Biomolecules +1407.5634 +1407.6082 Computer Vision and Pattern Recognition +1407.7048 Numerical Analysis +1407.7262 Functional Analysis +1407.7820 Statistics Theory +1407.8005 Numerical Analysis +1407.8019 Plasma Physics +1407.8361 Numerical Analysis +1407.8503 Solar and Stellar Astrophysics +1408.0963 Other Statistics +1408.1322 Algebraic Topology +1408.4485 Mesoscale and Nanoscale Physics +1409.3447 Probability +1409.5503 Geometric Topology +1410.2065 Digital Libraries +1410.3223 Representation Theory +1410.5475 Quantum Gases +1410.6602 Materials Science +1410.7560 Hardware Architecture +1410.8296 Materials Science +1411.2141 Computer Vision and Pattern Recognition +1411.5915 Systems and Control +1411.7049 Statistics Theory +1511.03184 Group Theory +1609.00197 Solar and Stellar Astrophysics +1611.06450 Group Theory +cond-mat/0302428 +cond-mat/0404436 Materials Science +math/0206193 Algebraic Geometry +0707.2165 Algebraic Topology +1005.3962 Combinatorics +1011.3568 Earth and Planetary Astrophysics +1104.0435 Atmospheric and Oceanic Physics +1206.5029 +1208.5310 Exactly Solvable and Integrable Systems +1209.0648 +1211.6693 Probability +1307.0978 Probability +1308.6817 Probability +1309.7947 +1311.0490 Spectral Theory +1311.0658 Spectral Theory +1311.0669 Statistics Theory +1311.0862 Spectral Theory +1401.1485 +1401.4191 Astrophysics of Galaxies +1403.0667 Learning +1403.2141 Numerical Analysis +1403.2310 Methodology +1403.2538 Algebraic Geometry +1403.5006 Databases +1405.0352 Statistics Theory +1405.2325 Theory +1405.4058 Atmospheric and Oceanic Physics +1405.7828 Discrete Mathematics +1406.1084 +1406.2115 Probability +1406.2428 Computational Geometry +1406.3397 Combinatorics +1406.4301 Mathematical Finance +1406.4480 Atmospheric and Oceanic Physics +1406.6108 +1407.0543 Soft Condensed Matter +1407.1873 Programming Languages +1407.5052 Experiment +1407.7349 Functional Analysis +1408.0916 Mathematical Finance +1408.5122 Probability +1409.2791 Functional Analysis +1410.1481 Trading and Market Microstructure +1410.5593 Logic +1410.6228 Numerical Analysis +1410.8298 Logic +1411.3209 Differential Geometry +1412.1896 Probability +1412.3605 Algebraic Geometry +1412.5399 Dynamical Systems +1412.6604 Learning +1412.8314 Combinatorics +1501.00813 Combinatorics +1501.02861 Statistics Theory +1502.00366 Combinatorics +1502.04914 Representation Theory +1502.07152 Materials Science +1503.05671 Learning +1503.08187 Algebraic Geometry +1504.04884 Information Theory +1504.07099 Number Theory +1504.07198 Strongly Correlated Electrons +1504.07414 Strongly Correlated Electrons +1504.07664 Mesoscale and Nanoscale Physics +1505.03919 Optimization and Control +1505.04740 Number Theory +1505.08031 Optimization and Control +1506.03410 Machine Learning +1506.04622 Neurons and Cognition +1506.06097 Algebraic Geometry +1506.06696 Methodology +1506.07268 +1507.05713 Statistical Mechanics +1507.06298 Representation Theory +1507.08230 Quantum Gases +1508.02295 Group Theory +1508.02661 Group Theory +1508.04064 Probability +1508.05398 Soft Condensed Matter +1508.07744 Digital Libraries +1509.01064 Materials Science +1509.02251 Probability +1509.03862 Differential Geometry +1509.04433 Combinatorics +1509.05051 Experiment +1509.05355 Analysis of PDEs +1509.06955 Optics +1509.07249 Soft Condensed Matter +1509.09017 +1509.09273 Statistics Theory +1510.00351 Pattern Formation and Solitons +1510.05386 Logic +1510.05801 +1510.06207 Statistics Theory +1510.06255 Combinatorics +1510.06553 Systems and Control +1510.07696 Statistical Mechanics +1510.08195 Theory +1511.00063 Differential Geometry +1511.00499 Strongly Correlated Electrons +1511.01324 Soft Condensed Matter +1511.01404 +1511.02179 Number Theory +1511.04577 Combinatorics +1511.05322 Superconductivity +1511.05493 Learning +1511.09221 Mesoscale and Nanoscale Physics +1512.00912 +1512.01499 Optics +1512.01541 +1512.02037 High Energy Astrophysical Phenomena +1512.02251 Numerical Analysis +1512.05683 Mesoscale and Nanoscale Physics +1512.07717 Statistical Mechanics +1601.00182 Databases +1601.02415 Data Structures and Algorithms +1601.03308 Dynamical Systems +1601.03359 Chemical Physics +1601.03555 Distributed, Parallel, and Cluster Computing +1601.03866 Optics +1601.04504 Information Theory +1601.06237 Instrumentation and Detectors +1602.00059 Theory +1602.00267 Materials Science +1602.01847 +1602.03042 Number Theory +1602.03308 Computer Vision and Pattern Recognition +1602.03516 +1602.03806 Number Theory +1602.04107 Methodology +1602.04897 Algebraic Topology +1602.05298 Probability +1602.05764 +1602.05778 Optics +1602.06744 Metric Geometry +1602.07461 Chemical Physics +1602.07523 Mesoscale and Nanoscale Physics +1602.08257 Quantum Gases +1602.08840 Solar and Stellar Astrophysics +1602.09135 High Energy Astrophysical Phenomena +1603.00831 Computer Vision and Pattern Recognition +1603.01857 Machine Learning +1603.03698 Geometric Topology +1603.04343 Soft Condensed Matter +1603.04417 +1603.04790 Theory +1603.05317 Classical Analysis and ODEs +1603.05970 +1603.06730 Group Theory +1603.07860 Numerical Analysis +1603.08758 Operator Algebras +1604.00650 Theory +1604.02136 Combinatorics +1604.03122 Theory +1604.03203 Instrumentation and Detectors +1604.04035 Probability +1604.04594 Mesoscale and Nanoscale Physics +1604.05278 Methodology +1604.05751 +1604.06941 Optimization and Control +1604.07043 Computer Vision and Pattern Recognition +1604.07077 Materials Science +1605.00023 +1605.00065 Data Structures and Algorithms +1605.00242 Representation Theory +1605.00417 Representation Theory +1605.00440 Instrumentation and Detectors +1605.00702 Artificial Intelligence +1605.00751 Learning +1605.00962 Computers and Society +1605.01057 Astrophysics of Galaxies +1605.01063 Astrophysics of Galaxies +1605.01064 +1605.01071 Analysis of PDEs +1605.01072 Cryptography and Security +1605.01073 +1605.01074 Mesoscale and Nanoscale Physics +1605.01078 Mathematical Software +1605.01079 Data Structures and Algorithms +1605.01081 Information Theory +1605.01084 +1605.01085 Dynamical Systems +1605.01086 Dynamical Systems +1605.01088 +1605.01090 Phenomenology +1605.01091 Social and Information Networks +1605.01092 Databases +1605.01094 Metric Geometry +1605.01096 Neurons and Cognition +1605.01097 Software Engineering +1605.01098 Populations and Evolution +1605.01099 Phenomenology +1605.01101 Computer Vision and Pattern Recognition +1605.01102 Physics and Society +1605.01107 Machine Learning +1605.01109 Numerical Analysis +1605.01110 Information Theory +1605.01114 Phenomenology +1605.01116 Machine Learning +1605.01117 Algebraic Geometry +1605.01118 +1605.01120 Information Theory +1605.01125 +1605.01127 Dynamical Systems +1605.01128 Analysis of PDEs +1605.01130 Computer Vision and Pattern Recognition +1605.01136 Materials Science +1605.01143 Classical Analysis and ODEs +1605.01144 Differential Geometry +1605.01146 Methodology +1605.01147 Strongly Correlated Electrons +1605.01149 Phenomenology +1605.01155 Biomolecules +1605.01156 Computer Vision and Pattern Recognition +1605.01158 Probability +1605.01162 Solar and Stellar Astrophysics +1605.01164 Materials Science +1605.01166 Group Theory +1605.01167 Dynamical Systems +1605.01168 Operating Systems +1605.01170 Analysis of PDEs +1605.01171 Exactly Solvable and Integrable Systems +1605.01176 Complex Variables +1605.01180 Artificial Intelligence +1605.01182 Information Theory +1605.01184 Information Theory +1605.01185 Machine Learning +1605.01189 Computer Vision and Pattern Recognition +1605.01191 Information Theory +1605.01194 Computation and Language +1605.01197 Optics +1605.01198 Logic in Computer Science +1605.01199 Logic in Computer Science +1605.01202 Operator Algebras +1605.01204 +1605.01207 Databases +1605.01210 +1605.01211 Information Theory +1605.01212 Numerical Analysis +1605.01214 Methodology +1605.01215 Astrophysics of Galaxies +1605.01217 Metric Geometry +1605.01218 High Energy Astrophysical Phenomena +1605.01219 Genomics +1605.01221 Logic +1605.01228 Networking and Internet Architecture +1605.01229 Databases +1605.01231 Combinatorics +1605.01232 Complex Variables +1605.01236 Computer Science and Game Theory +1605.01242 Computer Vision and Pattern Recognition +1605.01243 Probability +1605.01248 Solar and Stellar Astrophysics +1605.01250 Analysis of PDEs +1605.01251 Analysis of PDEs +1605.01256 Analysis of PDEs +1605.01257 Statistical Mechanics +1605.01260 Number Theory +1605.01262 Social and Information Networks +1605.01264 Group Theory +1605.01274 +1605.01275 Probability +1605.01276 Analysis of PDEs +1605.01283 Geophysics +1605.01285 Numerical Analysis +1605.01286 +1605.01289 Algebraic Geometry +1605.01291 Physics Education +1605.01292 Phenomenology +1605.01297 Probability +1605.01298 Commutative Algebra +1605.01299 Algebraic Geometry +1605.01301 Distributed, Parallel, and Cluster Computing +1605.01302 Other Computer Science +1605.01304 General Mathematics +1605.01305 Commutative Algebra +1605.01308 Numerical Analysis +1605.01313 Solar and Stellar Astrophysics +1605.01315 Fluid Dynamics +1605.01317 Biological Physics +1605.01318 High Energy Astrophysical Phenomena +1605.01319 Discrete Mathematics +1605.01320 Combinatorics +1605.01321 Fluid Dynamics +1605.01324 Dynamical Systems +1605.01328 +1605.01331 Information Theory +1605.01333 Statistics Theory +1605.01335 Learning +1605.01336 Logic +1605.01344 +1605.01345 Networking and Internet Architecture +1605.01347 +1605.01349 Probability +1605.01350 General Mathematics +1605.01356 Mesoscale and Nanoscale Physics +1605.01358 Statistical Mechanics +1605.01359 Algebraic Geometry +1605.01361 Distributed, Parallel, and Cluster Computing +1605.01362 Programming Languages +1605.01364 Optimization and Control +1605.01365 Probability +1605.01370 Physics Education +1605.01373 Representation Theory +1605.01374 Differential Geometry +1605.01375 High Energy Astrophysical Phenomena +1605.01376 Quantum Algebra +1605.01377 Soft Condensed Matter +1605.01381 Neurons and Cognition +1605.01385 General Topology +1605.01386 Theory +1605.01394 Cryptography and Security +1605.01395 Fluid Dynamics +1605.01396 Graphics +1605.01397 Computer Vision and Pattern Recognition +1605.01399 Earth and Planetary Astrophysics +1605.01400 Probability +1605.01401 Cryptography and Security +1605.01402 Computational Engineering, Finance, and Science +math/0207185 Combinatorics +physics/0605244 Geophysics +astro-ph/9610094 +1001.2930 Algebraic Geometry +1004.0294 Commutative Algebra +1008.2500 Probability +1110.2283 Algebraic Topology +1111.6987 +1201.0209 Combinatorics +1201.3014 Combinatorics +1203.2270 Logic +1204.2124 Discrete Mathematics +1208.4737 Algebraic Topology +1209.0366 Combinatorics +1211.3981 Combinatorics +1301.7266 Strongly Correlated Electrons +1302.3200 Discrete Mathematics +1303.2753 Combinatorics +1305.2467 Combinatorics +1305.2670 Combinatorics +1305.6797 Data Analysis, Statistics and Probability +1306.1477 Combinatorics +1306.5283 Combinatorics +1307.4394 Methodology +1308.5944 Materials Science +1310.1555 Symplectic Geometry +1311.6501 Differential Geometry +1312.3107 Number Theory +1402.7313 Dynamical Systems +1404.3339 Rings and Algebras +1404.4504 Data Structures and Algorithms +1405.2890 Analysis of PDEs +1406.3832 +1406.5404 Combinatorics +1407.1124 +1407.6664 Combinatorics +1408.5724 Statistics Theory +1409.2245 Representation Theory +1410.0720 Combinatorics +1411.4645 Combinatorics +1411.4759 Performance +1411.6421 Complex Variables +1412.1107 Probability +1412.7032 Computational Physics +1412.7112 +1501.00769 History and Philosophy of Physics +1501.01032 Phenomenology +1501.04085 Quantum Algebra +1501.04763 Symplectic Geometry +1501.04804 Probability +1503.02185 Theory +1503.02352 Numerical Analysis +1503.03155 Data Structures and Algorithms +1504.02573 Lattice +1504.03458 Representation Theory +1504.07423 Number Theory +1505.03986 Dynamical Systems +1506.00740 Information Theory +1507.00202 Geometric Topology +1507.04177 Systems and Control +1508.05140 Probability +1508.07722 Number Theory +1509.08586 Instrumentation and Detectors +1509.08869 Statistics Theory +1510.02914 Phenomenology +1510.03875 Statistical Mechanics +1510.04249 Data Structures and Algorithms +1510.06577 Quantum Algebra +1510.07363 Numerical Analysis +1511.01073 Operator Algebras +1511.03578 +1511.04484 Neural and Evolutionary Computing +1511.07874 Superconductivity +1511.09024 Information Theory +1512.01203 Theory +1512.02284 Optics +1512.03231 Statistical Mechanics +1512.04365 General Physics +1512.04848 Learning +1512.05627 Mesoscale and Nanoscale Physics +1512.06154 Optimization and Control +1512.06460 Differential Geometry +1512.08397 Probability +1512.08950 Theory +1601.02520 +1601.05311 Numerical Analysis +1601.07265 Computer Vision and Pattern Recognition +1602.01655 Mesoscale and Nanoscale Physics +1602.01880 Number Theory +1602.03765 Data Analysis, Statistics and Probability +1602.06402 Materials Science +1603.01159 Data Analysis, Statistics and Probability +1603.02854 +1603.03543 Social and Information Networks +1603.09623 +1604.00521 Exactly Solvable and Integrable Systems +1604.01470 Dynamical Systems +1604.02471 Differential Geometry +1604.02836 +1604.05657 Robotics +1604.06033 +1604.06244 Theory +1604.06256 Cosmology and Nongalactic Astrophysics +1604.06290 Operator Algebras +1604.07423 Quantum Gases +1604.07497 Neurons and Cognition +1605.01564 Earth and Planetary Astrophysics +1605.01697 Fluid Dynamics +1605.04604 Numerical Analysis +1605.06615 Data Structures and Algorithms +1605.09069 Rings and Algebras +1606.00097 Phenomenology +1606.00664 Mesoscale and Nanoscale Physics +1606.01683 Mesoscale and Nanoscale Physics +1606.02616 +1606.02646 +1606.02921 Theory +1606.03595 Economics +1606.03984 Logic +1606.04082 Methodology +1606.04737 Algebraic Geometry +1606.05604 Quantum Algebra +1606.06237 Machine Learning +1606.07438 Earth and Planetary Astrophysics +1606.07445 Solar and Stellar Astrophysics +1606.08129 Analysis of PDEs +1606.09316 High Energy Astrophysical Phenomena +1606.09459 Neurons and Cognition +1607.00249 Distributed, Parallel, and Cluster Computing +1607.01101 Materials Science +1607.01601 High Energy Astrophysical Phenomena +1607.01914 Computational Physics +1607.03991 Computer Vision and Pattern Recognition +1607.04860 Algebraic Geometry +1607.05459 Information Theory +1607.05979 Experiment +1607.05984 Algebraic Geometry +1607.06154 Astrophysics of Galaxies +1607.06165 Dynamical Systems +1607.06419 +1607.06807 Combinatorics +1607.07797 Robotics +1607.08161 Machine Learning +1607.08174 Lattice +1608.00211 Probability +1608.00504 Mesoscale and Nanoscale Physics +1608.01106 Programming Languages +1608.01346 Quantum Gases +1608.02906 +1608.03398 +1608.03837 Representation Theory +1608.04606 Number Theory +1608.06829 Differential Geometry +1608.08720 Quantum Gases +1609.00612 Mesoscale and Nanoscale Physics +1609.01336 Methodology +1609.01404 K-Theory and Homology +1609.01650 Strongly Correlated Electrons +1609.03257 Biomolecules +1609.03978 Mesoscale and Nanoscale Physics +1609.04126 Dynamical Systems +1609.06528 Mesoscale and Nanoscale Physics +1609.07559 Pricing of Securities +1609.08361 Materials Science +1609.08456 Geophysics +1609.08783 +1609.09757 Earth and Planetary Astrophysics +1609.09837 Combinatorics +1610.01956 +1610.02771 Algebraic Geometry +1610.02911 Materials Science +1610.03630 Computational Physics +1610.04633 Logic +1610.05593 Logic in Computer Science +1610.05973 Representation Theory +1610.06364 Rings and Algebras +1610.07813 Optics +1611.00696 Spectral Theory +1611.01014 Statistical Mechanics +1611.01884 Computation and Language +1611.02878 Algebraic Geometry +1611.03245 +1611.03331 Functional Analysis +1611.03414 Geophysics +1611.03662 Algebraic Topology +1611.07325 Probability +1611.07869 Combinatorics +1611.08811 Information Theory +1611.08942 Artificial Intelligence +1611.09456 +1611.10134 Algebraic Geometry +1612.00390 Computer Vision and Pattern Recognition +1612.00521 Distributed, Parallel, and Cluster Computing +1612.00575 Social and Information Networks +1612.00668 Cryptography and Security +1612.00854 Exactly Solvable and Integrable Systems +1612.01032 Fluid Dynamics +1612.01106 Solar and Stellar Astrophysics +1612.01267 Analysis of PDEs +1612.01270 Phenomenology +1612.01394 Number Theory +1612.01499 +1612.01530 Materials Science +1612.01591 Phenomenology +1612.01601 Computer Vision and Pattern Recognition +1612.01779 Classical Analysis and ODEs +1612.01806 Theory +1612.02110 Classical Physics +1612.02267 Phenomenology +1612.02319 Astrophysics of Galaxies +1612.02616 +1612.03024 Analysis of PDEs +1612.03147 Data Structures and Algorithms +1612.03706 Cryptography and Security +1612.04235 +1612.04343 Combinatorics +1612.04415 Optics +1612.04496 Computers and Society +1612.04504 +1612.04593 Quantum Gases +1612.04641 Algebraic Geometry +1612.04742 Sound +1612.04801 Algebraic Topology +1612.04812 Theory +1612.04817 Phenomenology +1612.04820 High Energy Astrophysical Phenomena +1612.04822 Mesoscale and Nanoscale Physics +1612.04825 Astrophysics of Galaxies +1612.04827 Astrophysics of Galaxies +1612.04828 +1612.04829 High Energy Astrophysical Phenomena +1612.04831 Social and Information Networks +1612.04833 Theory +1612.04834 Instrumentation and Methods for Astrophysics +1612.04835 +1612.04837 Statistical Mechanics +1612.04838 Statistics Theory +1612.04839 Theory +1612.04840 Mesoscale and Nanoscale Physics +1612.04841 Statistical Mechanics +1612.04843 Phenomenology +1612.04844 Computer Vision and Pattern Recognition +1612.04845 Quantum Gases +1612.04846 Numerical Analysis +1612.04847 Optimization and Control +1612.04848 Astrophysics of Galaxies +1612.04850 Phenomenology +1612.04853 Learning +1612.04854 Computer Vision and Pattern Recognition +1612.04855 Hardware Architecture +1612.04857 Theory +1612.04858 Learning +1612.04859 +1612.04860 Materials Science +1612.04861 Computational Geometry +1612.04862 Computer Vision and Pattern Recognition +1612.04864 +1612.04865 Materials Science +1612.04867 Materials Science +1612.04868 Computation and Language +1612.04869 Computer Vision and Pattern Recognition +1612.04870 Superconductivity +1612.04874 +1612.04875 Machine Learning +1612.04876 Artificial Intelligence +1612.04878 General Topology +1612.04880 Classical Analysis and ODEs +1612.04882 Representation Theory +1612.04883 Information Retrieval +1612.04884 Computer Vision and Pattern Recognition +1612.04885 Artificial Intelligence +1612.04886 Number Theory +1612.04888 History and Overview +1612.04890 Computational Geometry +1612.04891 Machine Learning +1612.04892 Exactly Solvable and Integrable Systems +1612.04893 Superconductivity +1612.04894 Theory +1612.04895 Strongly Correlated Electrons +1612.04896 Systems and Control +1612.04897 Neural and Evolutionary Computing +1612.04900 Combinatorics +1612.04901 Computer Vision and Pattern Recognition +1612.04902 Computers and Society +1612.04903 Solar and Stellar Astrophysics +1612.04904 Computer Vision and Pattern Recognition +1612.04905 Strongly Correlated Electrons +1612.04906 Number Theory +1612.04907 Soft Condensed Matter +1612.04910 Materials Science +1612.04911 Methodology +1612.04913 Systems and Control +1612.04914 +1612.04915 Robotics +1612.04919 Sound +1612.04920 +1612.04921 Geometric Topology +1612.04924 High Energy Astrophysical Phenomena +1612.04925 Astrophysics of Galaxies +1612.04926 Strongly Correlated Electrons +1612.04927 Analysis of PDEs +1612.04928 Sound +1612.04930 Theory +1612.04931 Instrumentation and Detectors +1612.04932 Statistics Theory +1612.04933 Machine Learning +1612.04934 High Energy Astrophysical Phenomena +1612.04935 Group Theory +1612.04938 Theory +1612.04940 Combinatorics +1612.04942 Systems and Control +1612.04943 Information Theory +1612.04944 Networking and Internet Architecture +1612.04946 Solar and Stellar Astrophysics +1612.04949 Computer Vision and Pattern Recognition +1612.04951 Earth and Planetary Astrophysics +1612.04952 Numerical Analysis +1612.04953 Mesoscale and Nanoscale Physics +1612.04955 Lattice +1612.04957 Logic +1612.04958 Information Theory +1612.04960 Combinatorics +1612.04961 Strongly Correlated Electrons +1612.04963 Operator Algebras +1612.04965 Methodology +1612.04966 Computer Vision and Pattern Recognition +1612.04967 Quantum Gases +1612.04968 Statistical Mechanics +1612.04969 Statistics Theory +1612.04970 Neural and Evolutionary Computing +1612.04971 Phenomenology +1612.04973 Logic in Computer Science +1612.04974 Systems and Control +1612.04975 Logic in Computer Science +1612.04976 Formal Languages and Automata Theory +1612.04977 Software Engineering +1612.04978 Information Retrieval +1612.04979 Logic +1612.04980 Discrete Mathematics +1612.04981 Formal Languages and Automata Theory +1612.04982 Cryptography and Security +1612.04984 Cryptography and Security +1612.04985 Data Structures and Algorithms +1612.04986 Hardware Architecture +1612.04987 Quantum Algebra +1612.04988 Computation and Language +1612.04989 Strongly Correlated Electrons +1612.04990 Statistical Finance +1612.04991 +1612.04992 Lattice +1612.04993 Atomic and Molecular Clusters +1612.04994 Experiment +1612.04996 Statistics Theory +1612.04997 Cryptography and Security +1612.04998 Theory +1612.05001 Social and Information Networks +1612.05002 Logic in Computer Science +1612.05004 Combinatorics +1612.05006 Biological Physics +1612.05007 +1612.05008 Representation Theory +1612.05009 Classical Analysis and ODEs +1612.05010 Phenomenology +1612.05011 Dynamical Systems +1612.05013 Solar and Stellar Astrophysics +1612.05014 Experiment +1612.05015 Functional Analysis +1612.05016 Digital Libraries +1612.05017 Number Theory +1612.05018 Statistical Mechanics +1612.05019 Logic in Computer Science +1612.05020 Complex Variables +1612.05021 Applications +1612.05022 Fluid Dynamics +1612.05023 Chaotic Dynamics +1612.05024 Statistical Mechanics +1612.05025 Rings and Algebras +1612.05026 Optimization and Control +1612.05028 Artificial Intelligence +1612.05029 Lattice +1612.05030 Formal Languages and Automata Theory +1612.05031 Phenomenology +1612.05034 Quantum Algebra +1612.05036 Phenomenology +1612.05038 Computer Vision and Pattern Recognition +1612.05039 Solar and Stellar Astrophysics +1612.05040 Rings and Algebras +1612.05042 Solar and Stellar Astrophysics +1612.05043 Combinatorics +1612.05044 Optimization and Control +1612.05045 Instrumentation and Detectors +1612.05046 Chemical Physics +1612.05048 Machine Learning +1612.05049 Functional Analysis +1612.05050 Learning +1612.05051 Classical Analysis and ODEs +1612.05052 Strongly Correlated Electrons +1612.05053 Machine Learning +1612.05054 Neural and Evolutionary Computing +1612.05055 +1612.05056 Dynamical Systems +1612.05057 Optimization and Control +1612.05058 Functional Analysis +1612.05059 Lattice +1612.05060 Earth and Planetary Astrophysics +1612.05061 Solar and Stellar Astrophysics +1612.05062 Computer Vision and Pattern Recognition +1612.05063 Mesoscale and Nanoscale Physics +1612.05064 Graphics +1612.05065 Sound +1612.05067 Accelerator Physics +1612.05070 Sound +1612.05071 Solar and Stellar Astrophysics +1612.05072 Statistical Finance +1612.05073 Mesoscale and Nanoscale Physics +1612.05075 Geophysics +1612.05076 Sound +1612.05077 +1612.05078 Number Theory +1612.05080 +1612.05081 Algebraic Geometry +1612.05082 Learning +1612.05083 Human-Computer Interaction +1612.05085 Information Theory +1612.05086 Learning +1612.05087 Other Computer Science +1612.05095 General Physics +1612.05096 Analysis of PDEs +1612.05097 +1612.05098 General Physics +1612.05099 +1612.05100 General Physics +1612.05102 Classical Analysis and ODEs +1612.05103 Classical Analysis and ODEs +1612.05104 Probability +1612.05108 General Physics +1612.05109 General Physics +1612.05110 Databases +1612.05111 High Energy Astrophysical Phenomena +1612.05112 Lattice +1612.05113 Classical Analysis and ODEs +1612.05115 Analysis of PDEs +1612.05116 +1612.05117 +1612.05118 Experiment +1612.05122 Astrophysics of Galaxies +1612.05124 Statistics Theory +1612.05125 Phenomenology +1612.05127 Operator Algebras +1612.05128 +1612.05129 Networking and Internet Architecture +1612.05130 Materials Science +1612.05131 Computation and Language +1612.05132 Phenomenology +1612.05133 Functional Analysis +1612.05135 Soft Condensed Matter +1612.05136 Logic +1612.05137 Logic +1612.05139 Category Theory +1612.05142 Analysis of PDEs +1612.05144 +1612.05145 Instrumentation and Detectors +1612.05146 Fluid Dynamics +1612.05147 Materials Science +1612.05148 Solar and Stellar Astrophysics +1612.05151 +1612.05152 Group Theory +1612.05153 Sound +1612.05154 Chaotic Dynamics +1612.05156 Sound +1612.05157 Mesoscale and Nanoscale Physics +1612.05158 Strongly Correlated Electrons +1612.05160 Commutative Algebra +1612.05161 +1612.05162 Instrumentation and Detectors +1612.05163 Disordered Systems and Neural Networks +1612.05164 Computers and Society +1612.05166 Hardware Architecture +1612.05167 History and Overview +1612.05168 Sound +1612.05169 Quantum Gases +1612.05171 Atomic Physics +1612.05172 Strongly Correlated Electrons +1612.05173 +1612.05174 Materials Science +1612.05175 K-Theory and Homology +1612.05177 Materials Science +1612.05178 Statistics Theory +1612.05181 Astrophysics of Galaxies +1612.05184 Strongly Correlated Electrons +1612.05185 Phenomenology +1612.05186 Number Theory +1612.05188 Analysis of PDEs +1612.05190 Numerical Analysis +1612.05192 Algebraic Geometry +1612.05194 Phenomenology +1612.05195 +1612.05196 Mesoscale and Nanoscale Physics +1612.05197 Theory +1612.05199 Fluid Dynamics +1612.05201 Optimization and Control +1612.05202 Computation and Language +1612.05204 +1612.05205 Distributed, Parallel, and Cluster Computing +1612.05206 +1612.05207 Dynamical Systems +1612.05209 Plasma Physics +1612.05211 Strongly Correlated Electrons +1612.05212 Strongly Correlated Electrons +1612.05213 Dynamical Systems +1612.05214 Mesoscale and Nanoscale Physics +1612.05215 +1612.05218 Computers and Society +1612.05219 Phenomenology +1612.05220 Experiment +1612.05221 Logic in Computer Science +1612.05223 Fluid Dynamics +1612.05224 Theory +1612.05225 Information Theory +1612.05226 Neurons and Cognition +1612.05227 Risk Management +1612.05228 Algebraic Topology +1612.05229 Statistical Finance +1612.05230 Theory +1612.05232 Number Theory +1612.05234 Computer Vision and Pattern Recognition +1612.05235 Theory +1612.05236 Distributed, Parallel, and Cluster Computing +1612.05237 +1612.05238 +1612.05239 Digital Libraries +1612.05246 Combinatorics +1612.05247 Mesoscale and Nanoscale Physics +1612.05248 Cosmology and Nongalactic Astrophysics +1612.05250 Astrophysics of Galaxies +1612.05251 Computation and Language +math/0311095 Logic +0704.2611 Mesoscale and Nanoscale Physics +0906.5511 High Energy Astrophysical Phenomena +1002.2604 Risk Management +1104.4766 Strongly Correlated Electrons +1104.5087 +1108.0752 +1206.6927 Methodology +1208.0616 Quantum Algebra +1209.3558 Materials Science +1301.5030 Operator Algebras +1303.2201 Programming Languages +1303.6693 Materials Science +1304.6503 Geometric Topology +1305.0968 Symplectic Geometry +1305.2769 Populations and Evolution +1308.0959 Networking and Internet Architecture +1308.2297 Analysis of PDEs +1309.5679 Optimization and Control +1309.6397 Computational Physics +1402.0692 Classical Analysis and ODEs +1402.3044 Computer Science and Game Theory +1402.4466 Databases +1403.5406 K-Theory and Homology +1404.5492 Quantum Algebra +1405.2298 Fluid Dynamics +1405.4581 Classical Analysis and ODEs +1406.0940 Combinatorics +1406.1634 Representation Theory +1406.1744 Category Theory +1406.2957 +1406.3647 Methodology +1408.3114 Biomolecules +1408.5899 Instrumentation and Methods for Astrophysics +1409.0293 Complex Variables +1409.2736 Probability +1409.4094 Mesoscale and Nanoscale Physics +1409.4425 Astrophysics of Galaxies +1409.4437 Differential Geometry +1409.5764 Chaotic Dynamics +1411.0510 Logic +1411.2654 Mesoscale and Nanoscale Physics +1412.1768 K-Theory and Homology +1412.4210 Neural and Evolutionary Computing +1412.8766 +1501.03591 Combinatorics +1501.05331 Theory +1501.06268 Classical Analysis and ODEs +1502.00608 Instrumentation and Methods for Astrophysics +1502.00846 Materials Science +1502.04000 Optimization and Control +1502.05631 Probability +1503.00725 Differential Geometry +1503.01877 Cosmology and Nongalactic Astrophysics +1503.05718 Functional Analysis +1503.08416 Probability +1503.08448 +1504.00547 Algebraic Geometry +1504.02962 Instrumentation and Methods for Astrophysics +1504.03491 Optics +1504.03597 Functional Analysis +1504.05456 Astrophysics of Galaxies +1504.05465 Astrophysics of Galaxies +1504.05546 Astrophysics of Galaxies +1504.06448 Classical Analysis and ODEs +1504.06976 Functional Analysis +1504.07502 Symplectic Geometry +1504.07828 Data Structures and Algorithms +1504.08046 +1504.08328 Mesoscale and Nanoscale Physics +1505.00381 Mesoscale and Nanoscale Physics +1505.00572 Operator Algebras +1505.00821 Methodology +1505.03818 Mesoscale and Nanoscale Physics +1505.04281 Rings and Algebras +1505.05705 Applications +1505.05712 Probability +1505.06099 High Energy Astrophysical Phenomena +1505.06632 Solar and Stellar Astrophysics +1505.07840 Cosmology and Nongalactic Astrophysics +1505.07854 +1506.01066 Computation and Language +1506.02450 Theory +1506.02494 Methodology +1506.02961 Theory +1506.04196 Lattice +1506.04325 +1506.04925 Classical Analysis and ODEs +1506.05056 +1506.05483 Statistics Theory +1506.05794 +1506.05930 Theory +1506.06411 Lattice +1506.06635 Mesoscale and Nanoscale Physics +1506.08622 +1506.08700 Machine Learning +1506.09192 Number Theory +1507.01000 Phenomenology +1507.02027 Space Physics +1507.02453 Disordered Systems and Neural Networks +1507.02483 Phenomenology +1507.03012 Mesoscale and Nanoscale Physics +1507.05371 Learning +1507.07563 Astrophysics of Galaxies +1508.00868 Representation Theory +1508.02099 Instrumentation and Detectors +1508.02320 Strongly Correlated Electrons +1508.02435 Data Structures and Algorithms +1508.02915 Materials Science +1508.03101 Information Theory +1508.05142 Combinatorics +1508.06129 Strongly Correlated Electrons +1508.06165 Materials Science +1509.00243 Networking and Internet Architecture +1509.01115 Differential Geometry +1509.01818 Number Theory +1509.02914 Strongly Correlated Electrons +1509.04024 Materials Science +1509.04522 Astrophysics of Galaxies +1509.05556 Neurons and Cognition +1509.06297 Metric Geometry +1509.07395 Distributed, Parallel, and Cluster Computing +1509.07721 Numerical Analysis +1509.08370 Theory +1509.09020 Astrophysics of Galaxies +1510.01032 Computation and Language +1510.01771 Instrumentation and Methods for Astrophysics +1510.02416 Mesoscale and Nanoscale Physics +1510.02838 Discrete Mathematics +1510.03538 +1510.04567 Earth and Planetary Astrophysics +1510.05213 +1510.06667 Combinatorics +1510.06853 +1510.09102 Logic in Computer Science +1511.00175 Computer Vision and Pattern Recognition +1511.02021 Numerical Analysis +1511.02725 Software Engineering +1511.02877 Theory +1511.04377 Computer Vision and Pattern Recognition +1511.04541 Cryptography and Security +1511.05236 Learning +1511.06297 Learning +1511.06328 Learning +1511.06333 Learning +1511.06348 Learning +1511.06407 Learning +1511.06423 Machine Learning +1511.06434 Learning +1511.06437 Computer Vision and Pattern Recognition +1511.06507 Mesoscale and Nanoscale Physics +1512.01688 Digital Libraries +1512.01876 Computational Geometry +1512.02537 Classical Analysis and ODEs +1512.02653 +1512.02826 Molecular Networks +1512.04367 General Physics +1512.04658 Statistics Theory +1512.06013 Phenomenology +1512.06328 Materials Science +1512.08281 Fluid Dynamics +1512.08451 Artificial Intelligence +1512.09313 Quantum Gases +1601.00065 Geometric Topology +1601.00074 Plasma Physics +1601.00127 Theory +1601.00362 Astrophysics of Galaxies +1601.00691 Computational Complexity +1601.00864 Physics and Society +1601.00942 Dynamical Systems +1601.01014 +1601.01058 Digital Libraries +1601.01188 Combinatorics +1601.01394 Information Theory +1601.01482 Operator Algebras +1601.01672 +1601.01673 Number Theory +1601.01674 Classical Physics +1601.01675 Artificial Intelligence +1601.01683 Solar and Stellar Astrophysics +1601.01688 Strongly Correlated Electrons +1601.01700 Methodology +1601.01706 +1601.01709 Statistical Mechanics +1601.01710 Mathematical Finance +1601.01711 Rings and Algebras +1601.01713 Soft Condensed Matter +1601.01721 Chemical Physics +1601.01722 Hardware Architecture +1601.01723 Analysis of PDEs +1601.01724 +1601.01730 Lattice +1601.01733 Probability +1601.01734 +1601.01736 Distributed, Parallel, and Cluster Computing +1601.01738 Optimization and Control +1601.01743 Analysis of PDEs +1601.01744 +1601.01746 Data Structures and Algorithms +1601.01747 Human-Computer Interaction +1601.01749 Solar and Stellar Astrophysics +1601.01751 Phenomenology +1601.01754 Graphics +1601.01757 Dynamical Systems +1601.01758 Cosmology and Nongalactic Astrophysics +1601.01759 Materials Science +1601.01761 Instrumentation and Methods for Astrophysics +1601.01763 Probability +1601.01765 +1601.01766 Analysis of PDEs +1601.01768 Discrete Mathematics +1601.01770 Databases +1601.01771 Economics +1601.01778 Systems and Control +1601.01782 Logic in Computer Science +1601.01785 Materials Science +1601.01788 Populations and Evolution +1601.01789 Algebraic Topology +1601.01791 Combinatorics +1601.01793 Materials Science +1601.01795 Strongly Correlated Electrons +1601.01796 Software Engineering +1601.01798 Symbolic Computation +1601.01802 Analysis of PDEs +1601.01806 Complex Variables +1601.01807 Optimization and Control +1601.01808 Numerical Analysis +1601.01809 Superconductivity +1601.01810 Fluid Dynamics +1601.01811 Probability +1601.01815 Human-Computer Interaction +1601.01821 Logic +1601.01822 +1601.01825 Networking and Internet Architecture +1601.01826 Mesoscale and Nanoscale Physics +1601.01831 Analysis of PDEs +1601.01835 Number Theory +1601.01841 Probability +1601.01848 Mesoscale and Nanoscale Physics +1601.01850 Algebraic Geometry +1601.01853 Dynamical Systems +1601.01856 Symbolic Computation +1601.01857 Algebraic Geometry +1601.01861 Instrumentation and Detectors +1601.01864 Mesoscale and Nanoscale Physics +1601.01866 Soft Condensed Matter +1601.01867 Biological Physics +1601.01869 Algebraic Geometry +1601.01870 Representation Theory +1601.01872 Optics +1601.01876 Computer Vision and Pattern Recognition +1601.01879 Methodology +1601.01881 Distributed, Parallel, and Cluster Computing +1601.01882 Differential Geometry +1601.01884 Mesoscale and Nanoscale Physics +1601.01885 Computer Vision and Pattern Recognition +1601.01887 Computation and Language +1601.01891 Logic +1601.01893 Mesoscale and Nanoscale Physics +1601.01894 Group Theory +1601.01895 Optimization and Control +1601.01899 Logic +1601.01901 +1601.01907 Analysis of PDEs +1601.01909 Information Theory +1601.01910 Distributed, Parallel, and Cluster Computing +1601.01912 Distributed, Parallel, and Cluster Computing +1601.01915 Numerical Analysis +1601.01916 Numerical Analysis +1601.01917 Information Retrieval +1601.01919 +1601.01920 Artificial Intelligence +1601.01922 Group Theory +1601.01923 Information Theory +1601.01925 Phenomenology +1601.01927 Cell Behavior +1601.01928 Logic in Computer Science +1601.01932 Soft Condensed Matter +1601.01933 Geometric Topology +1601.01934 Fluid Dynamics +1601.01935 Populations and Evolution +1601.01940 Physics and Society +1601.01944 Machine Learning +1601.01948 Number Theory +1601.01950 Combinatorics +1601.01951 Systems and Control +1601.01956 General Physics +1601.01958 Computational Complexity +1601.01963 Digital Libraries +1601.01964 Fluid Dynamics +1601.01967 Analysis of PDEs +1601.01975 +1601.01976 Optics +1601.01977 Mesoscale and Nanoscale Physics +1601.01979 Instrumentation and Detectors +1601.01980 Statistical Finance +1601.01981 Methodology +1601.01983 Information Theory +1601.01984 Mesoscale and Nanoscale Physics +1601.01985 Geometric Topology +1601.01986 Methodology +1601.01988 Information Theory +1601.01991 Number Theory +1601.01992 Optimization and Control +1601.01993 Mesoscale and Nanoscale Physics +1601.01995 Strongly Correlated Electrons +1601.01996 Mesoscale and Nanoscale Physics +1601.01997 Optimization and Control +1601.02002 +1601.02009 Strongly Correlated Electrons +1601.02010 Optimization and Control +1601.02013 Materials Science +cond-mat/0201379 Disordered Systems and Neural Networks +cond-mat/0308052 Mesoscale and Nanoscale Physics +quant-ph/0112044 +0704.0590 Information Theory +0704.0805 Information Theory +0704.1308 Information Theory +0704.1751 Information Theory +0704.2017 Information Theory +0704.2505 Information Theory +0704.2507 Information Theory +0704.2509 Information Theory +0704.2511 Information Theory +0704.2651 Information Theory +0704.2786 Information Theory +0704.2811 Information Theory +0704.3239 Atomic Physics +0704.3399 Information Theory +0704.3644 Information Theory +0704.3878 Information Theory +0704.3880 Information Theory +0705.0123 Information Theory +0705.0124 Information Theory +0705.0128 Information Theory +0705.0130 Information Theory +0705.0204 Data Structures and Algorithms +0705.0423 Information Theory +0705.1187 Information Theory +0705.1682 Information Theory +0705.3261 Information Theory +0705.3344 Information Theory +0705.3669 Neural and Evolutionary Computing +0706.3170 Information Theory +0707.0743 Distributed, Parallel, and Cluster Computing +0707.1470 Information Theory +0707.1912 Information Theory +0707.2780 Information Theory +0707.3959 Information Theory +0708.0648 Information Theory +0708.0741 Information Retrieval +0708.0805 Information Theory +0708.2566 Information Theory +0708.3057 Information Theory +0708.3573 Information Theory +0709.0599 Information Theory +0709.2191 Classical Physics +0709.3541 Information Theory +0710.0270 Networking and Internet Architecture +0710.1436 Distributed, Parallel, and Cluster Computing +0710.1484 Networking and Internet Architecture +0710.4948 Number Theory +0710.5235 Networking and Internet Architecture +0710.5236 Networking and Internet Architecture +0710.5238 Networking and Internet Architecture +0710.5241 Networking and Internet Architecture +0710.5242 Networking and Internet Architecture +0710.5327 Networking and Internet Architecture +0710.5758 Information Theory +0711.0237 Information Theory +0711.0277 Information Theory +0711.1383 Information Theory +0711.2501 Information Theory +0711.2642 Information Theory +0711.2745 Information Theory +0711.3077 Information Theory +0711.3251 Information Theory +0711.3398 Instrumentation and Detectors +0711.3545 Information Theory +0711.3751 Instrumentation and Detectors +0711.4388 Information Retrieval +0711.4406 Information Theory +0711.4864 Information Theory +0712.0035 Networking and Internet Architecture +0712.0042 Information Theory +0712.2430 Probability +0712.2467 Information Theory +0712.2806 Instrumentation and Detectors +0712.2857 Information Theory +0712.2872 Information Theory +0712.4011 Information Theory +0712.4135 Information Theory +0801.0061 Information Theory +0801.0426 Information Theory +0801.0938 Information Theory +0801.1276 Information Theory +0801.1282 Information Theory +0801.1544 +0801.3289 Information Theory +0801.3710 Data Structures and Algorithms +0801.4048 Information Theory +0801.4544 Information Theory +0801.4592 Networking and Internet Architecture +0802.0766 Networking and Internet Architecture +0802.1754 Information Theory +0802.2013 Information Theory +0802.2125 Information Theory +0802.2159 Information Theory +0802.2768 Mesoscale and Nanoscale Physics +0802.3401 Information Theory +0802.3535 Information Theory +0802.4282 Information Theory +0802.4284 Information Theory +0802.4291 Information Theory +0802.4299 Information Theory +0802.4330 Information Theory +0802.4344 Information Theory +0803.1144 Information Theory +0803.1195 Information Theory +0803.2639 Information Theory +0803.3816 Information Theory +0803.4025 Software Engineering +0804.0813 Information Theory +0804.0819 Information Theory +0804.1382 Information Theory +0804.3421 Computer Science and Game Theory +0804.4239 Information Theory +0804.4255 Information Theory +0804.4316 +0805.0092 Information Theory +0805.0507 Information Theory +0805.1262 Information Theory +0805.1485 Information Theory +0805.2427 Information Theory +0805.2684 Hardware Architecture +0805.2890 +0805.2995 Information Theory +0805.2996 Information Theory +0805.3082 Statistics Theory +0805.3638 Information Theory +0805.4374 Information Theory +0805.4583 Information Theory +0806.0036 Information Theory +0806.0080 Information Theory +0806.0387 Optimization and Control +0806.1565 Information Theory +0806.1577 Information Theory +0806.2198 Information Theory +0806.2216 Artificial Intelligence +0806.2395 Distributed, Parallel, and Cluster Computing +0806.3650 Information Theory +0806.3653 Computer Science and Game Theory +0806.4347 Materials Science +0806.4667 Information Theory +0807.0610 Cryptography and Security +0807.1158 Information Theory +0807.1372 Information Theory +0807.3065 Information Theory +0807.3097 Information Theory +0808.0272 Information Theory +0808.0745 Information Theory +0808.2530 Information Theory +0808.2591 Cryptography and Security +0808.2662 Computational Complexity +0808.2666 Cryptography and Security +0808.2676 Cryptography and Security +0808.2833 Information Theory +0808.3510 Numerical Analysis +0808.3540 Distributed, Parallel, and Cluster Computing +0808.3546 Distributed, Parallel, and Cluster Computing +0808.3558 Distributed, Parallel, and Cluster Computing +0808.3572 Information Theory +0808.3689 Information Theory +0808.3756 Information Theory +0808.3937 Networking and Internet Architecture +0808.4133 Logic in Computer Science +0808.4156 Information Theory +0809.0016 Information Theory +0809.0116 Databases +0809.0686 Information Theory +0809.1039 Information Theory +0809.1043 Information Theory +0809.1258 Information Theory +0809.1260 Optimization and Control +0809.1934 +0809.2152 Information Theory +0809.2226 Information Theory +0809.3546 Information Theory +0809.3554 Information Theory +0809.3731 Information Theory +0809.3908 Networking and Internet Architecture +0809.4138 +0809.5008 Information Theory +0809.5022 Networking and Internet Architecture +0810.1187 Information Theory +0810.1735 Networking and Internet Architecture +0810.2323 Information Theory +0810.4182 Information Theory +0810.4657 Information Theory +0811.2431 Instrumentation and Detectors +0811.2432 Instrumentation and Detectors +0811.4565 Information Theory +0812.1713 Information Theory +0812.3648 Distributed, Parallel, and Cluster Computing +0812.3927 Mesoscale and Nanoscale Physics +0812.4889 Information Theory +0901.0492 Information Theory +0901.1705 Information Theory +0901.2090 Information Theory +0901.2094 Information Theory +0901.2356 Information Theory +0901.2373 Atomic Physics +0901.3314 Information Theory +0901.3583 Dynamical Systems +0901.4068 Information Theory +0901.4129 Information Theory +0902.0838 Information Theory +0902.2436 Information Theory +0902.2932 +0902.3210 Networking and Internet Architecture +0902.3593 Information Theory +0903.0604 Networking and Internet Architecture +0903.0673 Information Theory +0903.0996 +0903.1379 Information Theory +0903.1388 Distributed, Parallel, and Cluster Computing +0903.1624 Information Theory +0903.1638 +0903.1952 Information Theory +0903.2292 Data Analysis, Statistics and Probability +0903.2310 Data Structures and Algorithms +0903.2653 Information Theory +0903.2966 Computer Science and Game Theory +0903.3276 Cryptography and Security +0903.3624 Robotics +0903.4251 Data Structures and Algorithms +0903.4365 Networking and Internet Architecture +0903.4378 Distributed, Parallel, and Cluster Computing +0903.5074 Information Theory +0903.5108 Information Theory +0903.5282 Information Theory +0904.0288 Instrumentation and Detectors +0904.0308 Information Theory +0904.2722 Networking and Internet Architecture +0904.2759 +0904.2863 Information Theory +0904.2921 Information Theory +0904.3310 Databases +0904.3312 Databases +0904.4635 Optimization and Control +0904.4789 Information Theory +0904.4872 Optimization and Control +0905.0483 Optimization and Control +0905.2355 Software Engineering +0905.2364 Software Engineering +0905.2638 Information Theory +0905.2643 Information Theory +0905.2659 Computer Science and Game Theory +0905.3023 Information Theory +0905.3030 Information Theory +0905.3076 Information Theory +0905.3086 Information Theory +0905.4164 Information Theory +0906.0391 Data Structures and Algorithms +0906.0744 Information Theory +0906.1055 Optimization and Control +0906.1147 Distributed, Parallel, and Cluster Computing +0906.1565 Information Theory +0906.1599 Information Theory +0906.1985 Atomic Physics +0906.2212 Computers and Society +0906.2742 Networking and Internet Architecture +0906.3394 Networking and Internet Architecture +0906.3461 Networking and Internet Architecture +0906.3816 Information Theory +0906.3821 Information Theory +0906.3988 Information Theory +0907.0472 Information Theory +0907.1099 Information Theory +0907.2252 Networking and Internet Architecture +0907.2312 Adaptation and Self-Organizing Systems +0907.2313 Adaptation and Self-Organizing Systems +0907.2599 Information Theory +0907.3341 Information Theory +0907.5168 Distributed, Parallel, and Cluster Computing +0907.5321 Computer Vision and Pattern Recognition +0907.5464 Optimization and Control +0908.0515 Information Theory +0908.0794 Information Theory +0908.2494 Information Theory +0908.2529 Information Theory +0908.3262 Applications +0908.3929 Robotics +0908.4051 Information Theory +0909.0553 Information Theory +0909.1241 Networking and Internet Architecture +0909.1293 Optimization and Control +0909.1623 Information Theory +0909.2119 Networking and Internet Architecture +0909.2489 Information Retrieval +0909.3691 Genomics +0909.5393 Logic in Computer Science +0910.2486 Information Theory +0910.3068 Artificial Intelligence +0910.3509 Information Theory +0910.3591 Optimization and Control +0910.3920 +0910.3973 Information Theory +0910.4901 Information Theory +0910.5002 Computer Vision and Pattern Recognition +0911.0130 Information Theory +0911.0351 Information Theory +0911.0467 Information Theory +0911.0519 Information Theory +0911.1426 Information Theory +0911.2639 Instrumentation and Detectors +0911.2746 Information Theory +0911.2904 Learning +0911.3203 Instrumentation and Detectors +0911.3213 Information Theory +0911.3357 Networking and Internet Architecture +0911.3921 Information Theory +0911.4357 Networking and Internet Architecture +0911.4575 Instrumentation and Detectors +0911.5462 Computer Vision and Pattern Recognition +0911.5515 Information Theory +0911.5683 Instrumentation and Methods for Astrophysics +0912.5497 Cryptography and Security +1001.0080 Information Theory +1001.1187 Information Theory +1001.1278 Information Theory +1001.1482 Information Theory +1001.1603 Information Theory +1001.1763 Information Theory +1001.1826 Information Theory +1001.2112 Information Theory +1001.2218 Information Theory +1001.2410 Information Theory +1001.2411 Artificial Intelligence +1001.2421 Information Theory +1001.2488 Information Theory +1001.2806 Information Theory +1001.2900 Information Theory +1001.2947 Information Theory +1001.3173 Information Theory +1001.3187 Information Theory +1001.3365 Information Theory +1001.3387 Information Theory +1001.3760 Information Theory +1001.3765 Information Theory +1001.4271 Information Theory +1001.4519 Information Theory +1001.4520 Information Theory +1001.4992 Cryptography and Security +1001.5336 Information Theory +1002.0019 Information Theory +1002.0043 Information Theory +1002.1897 Networking and Internet Architecture +1002.2293 Information Theory +1002.3047 Information Theory +1002.3065 Information Theory +1002.3192 Information Theory +1002.4263 Information Theory +1003.0064 Information Theory +1003.0227 +1003.0339 Artificial Intelligence +1003.0514 Information Theory +1003.0520 Information Theory +1003.0955 Distributed, Parallel, and Cluster Computing +1003.1821 Other Computer Science +1003.2012 Instrumentation and Methods for Astrophysics +1003.2022 Computer Vision and Pattern Recognition +1003.2883 Information Theory +1003.3195 +1003.3966 Cryptography and Security +1003.4655 Physics Education +1003.5309 Distributed, Parallel, and Cluster Computing +1003.5517 Networking and Internet Architecture +1004.0152 Networking and Internet Architecture +1004.0487 Optimization and Control +1004.0488 Instrumentation and Detectors +1004.0897 Information Theory +1004.1324 Distributed, Parallel, and Cluster Computing +1004.2764 Logic in Computer Science +1004.3071 Information Theory +1004.4437 Networking and Internet Architecture +1004.4514 Plasma Physics +1004.5424 Computer Vision and Pattern Recognition +1004.5548 Cryptography and Security +1005.0017 Molecular Networks +1005.0117 Information Theory +1005.0351 Adaptation and Self-Organizing Systems +1005.0945 Computer Vision and Pattern Recognition +1005.1065 Information Theory +1005.1339 Information Theory +1005.1871 Information Theory +1005.2108 Populations and Evolution +1005.2251 Information Theory +1005.3119 +1005.4834 Information Theory +1005.4895 Other Computer Science +1005.5574 Information Theory +1006.0379 Information Theory +1006.0386 Information Theory +1006.0646 Information Theory +1006.0659 Information Theory +1006.1024 Information Theory +1006.1057 Cryptography and Security +1006.1673 Networking and Internet Architecture +1006.2162 Information Theory +1006.2565 Information Theory +1006.3417 Computer Science and Game Theory +1006.3782 Networking and Internet Architecture +1006.4557 Networking and Internet Architecture +1007.1282 Learning +1007.2053 Computational Physics +1007.2088 Cryptography and Security +1007.4840 Information Theory +1008.0420 Information Theory +1008.0961 Information Theory +1008.1043 Information Theory +1008.1145 Information Theory +1008.1615 Information Theory +1008.3932 Systems and Control +1009.0282 Information Theory +1009.1080 Data Analysis, Statistics and Probability +1009.1254 Information Theory +1009.1670 Optimization and Control +1009.2378 Networking and Internet Architecture +1009.2574 Networking and Internet Architecture +1009.2575 Networking and Internet Architecture +1009.2576 Networking and Internet Architecture +1009.2830 Dynamical Systems +1009.3130 Information Theory +1009.3522 Networking and Internet Architecture +1009.3916 Information Theory +1009.4352 Information Theory +1009.4610 Information Theory +1009.4780 Information Theory +1009.4866 Atomic Physics +1009.5145 Information Theory +1009.5614 Optimization and Control +1009.5975 Information Theory +1009.6053 Information Theory +1010.0333 Information Theory +1010.1409 Molecular Networks +1010.1583 Cryptography and Security +1010.1584 Information Theory +1010.2438 Distributed, Parallel, and Cluster Computing +1010.2789 Information Theory +1010.3469 Information Theory +1010.4499 Information Theory +1010.4501 Information Theory +1010.4548 Information Theory +1010.5416 Information Theory +1010.5734 Information Theory +1010.5806 Information Theory +1011.1050 Cryptography and Security +1011.1584 Networking and Internet Architecture +1011.1939 Robotics +1011.3087 Distributed, Parallel, and Cluster Computing +1011.3088 Networking and Internet Architecture +1011.3091 Networking and Internet Architecture +1011.3092 Networking and Internet Architecture +1011.3094 Distributed, Parallel, and Cluster Computing +1011.3096 Distributed, Parallel, and Cluster Computing +1011.3097 Networking and Internet Architecture +1011.3098 Cryptography and Security +1011.3099 Human-Computer Interaction +1011.3231 Instrumentation and Detectors +1011.3498 Information Theory +1011.3852 Other Computer Science +1011.5674 Networking and Internet Architecture +1011.6017 Information Theory +1012.0081 Information Theory +1012.0416 Information Theory +1012.0602 Information Theory +1012.1095 Networking and Internet Architecture +1012.1425 Information Theory +1012.4225 Information Theory +1012.4552 Information Theory +1012.4715 Information Theory +1012.5043 +1012.5197 Information Theory +1012.5430 Information Theory +1101.0082 Logic in Computer Science +1101.0133 Information Theory +1101.0858 Networking and Internet Architecture +1101.1345 Information Theory +1101.1350 Information Theory +1101.1607 Atomic Physics +1101.1688 Information Theory +1101.2516 Information Theory +1101.2713 Information Theory +1101.3824 Information Theory +1101.3979 Multimedia +1101.4617 Information Theory +1101.4849 Optimization and Control +1101.6004 Rings and Algebras +1102.0424 Information Theory +1102.0522 Information Theory +1102.1466 Information Theory +1102.2176 Information Theory +1102.2593 Information Theory +1102.2936 Information Theory +1102.2939 Information Theory +1102.3126 Information Theory +1102.3235 Information Theory +1102.3520 Information Theory +1102.3527 Information Theory +1102.3617 Information Theory +1102.3669 Information Theory +1102.4085 Information Theory +1102.4126 Information Theory +1102.4176 Networking and Internet Architecture +1102.4711 Information Theory +1102.4810 Information Theory +1102.5364 Information Theory +1102.5593 Information Theory +1103.0361 Information Theory +1103.0484 Information Theory +1103.0561 Information Theory +1103.0801 Information Theory +1103.1324 +1103.1559 Information Theory +1103.2431 Information Theory +1103.2573 Information Theory +1103.2750 Systems and Control +1103.3915 Information Theory +1103.3933 Information Theory +1103.4684 Information Theory +1103.4687 Information Theory +1103.4749 Software Engineering +1103.4784 Information Theory +1103.4787 Information Theory +1103.5678 Systems and Control +1103.6060 Information Theory +1103.6258 Information Theory +1104.0909 Medical Physics +1104.2285 Computer Vision and Pattern Recognition +1104.4155 Information Theory +1104.4731 Computational Engineering, Finance, and Science +1105.0452 Information Theory +1105.0769 Information Theory +1105.1841 Geophysics +1105.1843 Space Physics +1105.1891 Distributed, Parallel, and Cluster Computing +1105.3264 Social and Information Networks +1105.5215 Information Theory +1105.5895 Information Theory +1105.5975 Information Theory +1106.0436 Information Theory +1106.0736 Distributed, Parallel, and Cluster Computing +1106.0941 Networking and Internet Architecture +1106.1006 Algebraic Geometry +1106.2013 Information Theory +1106.2581 Information Theory +1106.2662 Learning +1106.3412 +1106.3681 Hardware Architecture +1106.3713 Information Theory +1106.3858 Computer Science and Game Theory +1106.5364 Information Theory +1106.5387 Information Theory +1106.5601 Computational Complexity +1106.5615 Information Theory +1106.6328 Networking and Internet Architecture +1107.1276 Information Theory +1107.1339 Networking and Internet Architecture +1107.1937 Distributed, Parallel, and Cluster Computing +1107.1970 Networking and Internet Architecture +1107.4255 Optimization and Control +1107.4617 Computer Vision and Pattern Recognition +1107.5676 Optimization and Control +1107.6027 Information Theory +1108.0870 Information Theory +1108.1136 Information Theory +1108.1844 Adaptation and Self-Organizing Systems +1108.2106 Cryptography and Security +1108.2111 Cryptography and Security +1108.3706 Networking and Internet Architecture +1108.3708 Networking and Internet Architecture +1108.4063 Networking and Internet Architecture +1108.5250 Artificial Intelligence +1108.5499 Computational Geometry +1109.0724 Information Theory +1109.1021 Cryptography and Security +1109.1507 Information Theory +1109.2028 Networking and Internet Architecture +1109.3410 Cosmology and Nongalactic Astrophysics +1109.4102 Optimization and Control +1109.5338 Networking and Internet Architecture +1109.5373 Information Theory +1109.5444 Optics +1109.5664 Learning +1109.6586 Instrumentation and Detectors +1109.6766 Statistical Mechanics +1109.6845 Information Theory +1110.0594 Information Theory +1110.1020 +1110.1732 Computer Science and Game Theory +1110.2343 Information Theory +1110.4535 Performance +1110.6282 Atomic Physics +1110.6476 Information Theory +1111.0689 Information Theory +1111.0711 Information Theory +1111.1827 Information Theory +1111.1995 Information Theory +1111.3163 Information Theory +1111.4232 Artificial Intelligence +1111.5280 Optimization and Control +1111.6828 Information Theory +1111.7076 Information Theory +1111.7221 Optimization and Control +1112.0371 Information Theory +1112.0711 Information Theory +1112.0789 Information Theory +1112.0941 Cryptography and Security +1112.0958 Cryptography and Security +1112.1086 Networking and Internet Architecture +1112.1229 Optimization and Control +1112.1863 Optimization and Control +1112.1968 Information Theory +1112.2409 Information Theory +1112.2690 Information Theory +1112.3573 Mesoscale and Nanoscale Physics +1112.4909 Systems and Control +1201.0218 Networking and Internet Architecture +1201.1835 Information Theory +1201.2859 Information Theory +1201.2985 Information Theory +1201.3140 Information Theory +1201.4949 Information Theory +1201.5805 Information Theory +1202.0798 Information Theory +1202.1209 Information Theory +1202.2231 Information Theory +1202.3192 Optimization and Control +1202.5014 Information Theory +1203.0046 Optimization and Control +1203.0628 +1203.0630 +1203.1304 Information Theory +1203.2468 Information Theory +1203.2550 Information Theory +1203.3287 Information Theory +1203.3288 Information Theory +1203.3659 Information Theory +1203.4040 Information Theory +1203.4358 Information Theory +1203.4865 Information Theory +1203.4924 Information Theory +1203.5638 Information Theory +1203.6798 Systems and Control +1204.0069 Numerical Analysis +1204.0166 Information Theory +1204.2428 Information Theory +1204.2504 Dynamical Systems +1204.2518 Information Theory +1204.2587 Information Theory +1204.3006 Atomic Physics +1204.3047 Statistical Mechanics +1204.3379 Information Theory +1204.3388 Information Theory +1204.3997 Information Theory +1204.4000 Information Theory +1204.4249 Information Theory +1204.4419 Optimization and Control +1204.4427 Multiagent Systems +1204.4518 Information Theory +1204.4840 Information Theory +1204.5507 Networking and Internet Architecture +1205.1672 Networking and Internet Architecture +1205.1885 Information Theory +1205.2546 Distributed, Parallel, and Cluster Computing +1205.2590 Information Theory +1205.3317 Information Theory +1205.3322 Networking and Internet Architecture +1205.4353 Networking and Internet Architecture +1205.4551 Information Theory +1205.4781 Information Theory +1205.5522 Information Theory +1205.5614 Information Theory +1205.5904 Information Theory +1205.5914 Information Theory +1205.6752 Information Theory +1205.6829 Instrumentation and Detectors +1205.6852 Information Theory +1206.1074 Neural and Evolutionary Computing +1206.1282 Information Theory +1206.1973 Information Theory +1206.2534 Emerging Technologies +1206.5389 Information Theory +1206.6172 Information Theory +1206.6682 Information Theory +1207.0436 Information Theory +1207.1760 Information Theory +1207.1768 Networking and Internet Architecture +1207.1777 Networking and Internet Architecture +1207.1860 Information Theory +1207.2038 Representation Theory +1207.2761 Artificial Intelligence +1207.3045 Information Theory +1207.3582 Information Theory +1207.3595 Networking and Internet Architecture +1207.3599 Networking and Internet Architecture +1207.4502 +1207.4807 Information Theory +1207.6819 Optics +1208.1443 Optimization and Control +1208.3017 Information Theory +1208.3227 Cryptography and Security +1208.4901 Information Theory +1208.5374 Information Theory +1208.5919 Information Theory +1208.6406 Operating Systems +1209.1350 Chaotic Dynamics +1209.1380 Information Theory +1209.1681 Instrumentation and Methods for Astrophysics +1209.1763 Networking and Internet Architecture +1209.2179 Information Theory +1209.2192 Information Theory +1209.3356 Distributed, Parallel, and Cluster Computing +1209.3721 Distributed, Parallel, and Cluster Computing +1209.3728 Information Theory +1209.5259 Information Theory +1209.5370 Information Theory +1209.6186 Networking and Internet Architecture +1209.6367 Information Theory +1210.0510 Networking and Internet Architecture +1210.0848 Social and Information Networks +1210.3335 Machine Learning +1210.3906 Information Theory +1210.4749 Networking and Internet Architecture +1210.5614 Networking and Internet Architecture +1210.6488 Systems and Control +1210.6738 Machine Learning +1210.6764 Information Theory +1210.6954 Information Theory +1210.7533 Information Theory +1211.0951 Information Theory +1211.1044 Information Theory +1211.1239 Optimization and Control +1211.2065 Computer Science and Game Theory +1211.3322 Information Theory +1211.4041 Information Theory +1211.4060 Instrumentation and Detectors +1211.4198 Information Theory +1211.4227 Differential Geometry +1211.4728 Information Theory +1211.5235 Risk Management +1211.5358 Information Theory +1211.5399 Instrumentation and Detectors +1211.5757 Information Theory +1211.5856 Optimization and Control +1211.6120 +1211.7200 Combinatorics +1212.0047 Information Theory +1212.1198 Information Theory +1212.2262 Learning +1212.3225 Systems and Control +1212.3638 Information Theory +1212.3640 Information Theory +1212.4092 Networking and Internet Architecture +1212.4106 Networking and Internet Architecture +1212.4237 Networking and Internet Architecture +1212.4244 Networking and Internet Architecture +1212.4336 Networking and Internet Architecture +1212.4617 Systems and Control +1212.4633 Instrumentation and Detectors +1212.4649 Information Theory +1212.4654 +1212.4950 Information Theory +1212.4991 Information Theory +1212.5032 Networking and Internet Architecture +1212.5185 Optimization and Control +1212.5394 Information Theory +1212.5406 Information Theory +1212.5462 Information Theory +1212.5654 Applications +1212.5687 +1212.5829 Information Theory +1212.6058 Multimedia +1212.6235 Computer Science and Game Theory +1301.0087 Information Theory +1301.0858 Machine Learning +1301.0859 Information Theory +1301.1084 Software Engineering +1301.2013 +1301.3106 Information Theory +1301.3401 Superconductivity +1301.4315 Networking and Internet Architecture +1301.4397 Information Theory +1301.4643 Information Theory +1301.4646 Information Theory +1301.4738 Networking and Internet Architecture +1301.5309 Information Theory +1301.5687 Information Theory +1301.5852 Information Theory +1301.6312 Social and Information Networks +1301.6779 Combinatorics +1301.6915 Machine Learning +1301.6956 Information Theory +1301.7506 Information Theory +1301.7515 Information Theory +1302.1610 Information Theory +1302.2702 Information Theory +1302.3446 Applications +1302.4128 Networking and Internet Architecture +1302.4463 Hardware Architecture +1302.4786 Information Theory +1302.5021 Information Theory +1302.5182 +1302.6615 Neural and Evolutionary Computing +1302.7080 Neural and Evolutionary Computing +1302.7264 Information Theory +1303.0166 Optics +1303.0323 Neural and Evolutionary Computing +1303.0592 Information Theory +1303.2774 Information Theory +1303.3018 Data Structures and Algorithms +1303.3177 Other Computer Science +1303.3400 Information Theory +1303.3480 Computation +1303.3668 Information Theory +1303.3938 Physics and Society +1303.4006 Information Theory +1303.4092 Other Computer Science +1303.5194 Information Theory +1303.5310 Information Theory +1303.6242 Networking and Internet Architecture +1303.6518 Networking and Internet Architecture +1303.6573 Networking and Internet Architecture +1303.7043 Learning +1303.7083 Information Theory +1304.0062 Information Theory +1304.0183 Information Theory +1304.0507 Instrumentation and Detectors +1304.1926 Information Theory +1304.2222 Systems and Control +1304.2269 Information Theory +1304.2444 Information Theory +1304.2475 Other Computer Science +1304.2476 Information Retrieval +1304.3519 Networking and Internet Architecture +1304.3531 Information Theory +1304.3553 Information Theory +1304.3640 Computer Science and Game Theory +1304.4028 Artificial Intelligence +1304.4181 Cryptography and Security +1304.4577 Optimization and Control +1304.4664 Software Engineering +1304.4778 Information Theory +1304.5150 Information Theory +1304.5315 Networking and Internet Architecture +1304.5509 Networking and Internet Architecture +1304.5590 Systems and Control +1304.5817 Information Theory +1304.5850 Information Theory +1304.6360 Multiagent Systems +1304.6761 Cryptography and Security +1304.7311 +1304.7423 Neural and Evolutionary Computing +1304.7487 Information Theory +1304.8083 Networking and Internet Architecture +1305.0185 Information Theory +1305.0510 Networking and Internet Architecture +1305.0664 Information Theory +1305.0735 Information Theory +1305.0817 Information Theory +1305.0982 Software Engineering +1305.1044 Systems and Control +1305.1187 Information Theory +1305.1434 Information Theory +1305.2091 Social and Information Networks +1305.2112 Information Theory +1305.2123 Information Theory +1305.2245 Information Theory +1305.3265 Information Theory +1305.3483 Information Theory +1305.3537 Information Theory +1305.3586 Information Theory +1305.4219 Information Theory +1305.4403 Information Theory +1305.4419 Information Theory +1305.4560 Information Theory +1305.4897 Networking and Internet Architecture +1305.4980 Information Theory +1305.5082 Information Theory +1305.5216 Information Theory +1305.5376 Information Theory +1305.5601 Applications +1305.5762 Information Theory +1305.6971 Networking and Internet Architecture +1305.7181 Computer Vision and Pattern Recognition +1305.7323 Information Theory +1306.0969 Information Theory +1306.1057 Information Theory +1306.1304 Networking and Internet Architecture +1306.1346 Information Theory +1306.1350 Computational Engineering, Finance, and Science +1306.1913 Computer Vision and Pattern Recognition +1306.2454 Optimization and Control +1306.2701 Information Theory +1306.3624 Computers and Society +1306.3717 Information Theory +1306.3786 Information Theory +1306.4350 Information Theory +1306.4414 Information Theory +1306.5781 Information Theory +1307.0214 Cryptography and Security +1307.0309 Social and Information Networks +1307.1461 Information Theory +1307.1599 Learning +1307.1778 Functional Analysis +1307.2800 Information Theory +1307.2889 Information Theory +1307.3156 Networking and Internet Architecture +1307.4138 Dynamical Systems +1307.4666 Statistics Theory +1307.5095 Information Theory +1307.6125 Information Theory +1307.6679 Information Theory +1307.7052 Networking and Internet Architecture +1307.7059 Networking and Internet Architecture +1307.7068 Networking and Internet Architecture +1307.7075 Networking and Internet Architecture +1307.7612 Networking and Internet Architecture +1307.7779 Information Theory +1307.8012 Instrumentation and Methods for Astrophysics +1308.0104 Numerical Analysis +1308.1144 Information Theory +1308.1714 Physics Education +1308.1762 Discrete Mathematics +1308.1968 Systems and Control +1308.3200 Information Theory +1308.3384 Networking and Internet Architecture +1308.3827 Information Theory +1308.4764 Systems and Control +1308.4840 Information Theory +1308.5133 Robotics +1308.5136 Artificial Intelligence +1308.5144 Computational Engineering, Finance, and Science +1308.5434 Information Theory +1309.0462 Optimization and Control +1309.0576 +1309.1200 Networking and Internet Architecture +1309.1208 Networking and Internet Architecture +1309.1644 Information Theory +1309.2143 Information Theory +1309.3147 Systems and Control +1309.3323 Computation and Language +1309.3376 Statistics Theory +1309.3582 Information Theory +1309.3618 Networking and Internet Architecture +1309.3674 Information Theory +1309.3808 Information Theory +1309.4372 Computer Science and Game Theory +1309.4873 Information Theory +1309.4942 Information Theory +1309.5067 Networking and Internet Architecture +1309.5262 Information Theory +1309.5546 Networking and Internet Architecture +1309.6270 Optimization and Control +1309.7817 Information Theory +1309.7910 Information Theory +1309.7949 Digital Libraries +1310.0054 Information Theory +1310.0892 Medical Physics +1310.1174 Information Theory +1310.2148 Distributed, Parallel, and Cluster Computing +1310.2435 Information Theory +1310.2490 Information Theory +1310.2703 Information Theory +1310.2773 Information Theory +1310.3001 Neurons and Cognition +1310.3101 Machine Learning +1310.3381 Information Theory +1310.3724 Information Theory +1310.4939 Information Theory +1310.5542 Computer Vision and Pattern Recognition +1310.6502 Distributed, Parallel, and Cluster Computing +1310.6546 Distributed, Parallel, and Cluster Computing +1310.8067 Information Theory +1310.8135 Networking and Internet Architecture +1311.1025 Other Computer Science +1311.1084 Distributed, Parallel, and Cluster Computing +1311.1240 Networking and Internet Architecture +1311.3141 Information Theory +1311.4111 Information Theory +1311.4242 Space Physics +1311.4310 Information Theory +1311.5360 Information Theory +1311.5376 Information Theory +1311.6020 Information Theory +1311.6570 Databases +1311.7298 Information Theory +1312.0116 Information Theory +1312.0659 Systems and Control +1312.0914 Information Theory +1312.1439 Algebraic Topology +1312.1756 Information Theory +1312.2316 +1312.2598 Systems and Control +1312.3662 Information Theory +1312.4016 Networking and Internet Architecture +1312.4318 Systems and Control +1312.4370 Systems and Control +1312.4805 Information Theory +1312.4875 Quantitative Methods +1312.5035 Cryptography and Security +1312.5555 Networking and Internet Architecture +1312.6721 Networking and Internet Architecture +1312.6808 Information Retrieval +1312.7079 Materials Science +1401.0994 Information Theory +1401.1406 Databases +1401.1714 Information Theory +1401.1779 Space Physics +1401.3201 Databases +1401.3202 Information Theory +1401.4020 Systems and Control +1401.4337 Information Theory +1401.4727 Statistical Mechanics +1401.5037 Information Theory +1401.5099 Networking and Internet Architecture +1401.5297 Systems and Control +1401.5530 Networking and Internet Architecture +1401.6444 Cryptography and Security +1401.6455 Computer Science and Game Theory +1401.6728 Information Theory +1401.7088 Networking and Internet Architecture +1401.7100 Computational Geometry +1401.7141 Networking and Internet Architecture +1401.7161 Information Theory +1402.0327 Information Theory +1402.0639 Classical Analysis and ODEs +1402.0911 Systems and Control +1402.1223 Instrumentation and Methods for Astrophysics +1402.1572 Information Theory +1402.2091 Information Theory +1402.2710 Data Structures and Algorithms +1402.2863 Systems and Control +1402.2902 Emerging Technologies +1402.5869 Information Theory +1402.7092 Classical Analysis and ODEs +1403.1881 Classical Physics +1403.2010 Information Theory +1403.2079 Information Theory +1403.3376 Information Theory +1403.4077 Other Computer Science +1403.4378 Learning +1403.5089 Information Theory +1403.5204 Systems and Control +1403.6143 Information Theory +1403.7012 Information Theory +1403.7017 Information Theory +1403.7164 Information Theory +1404.0400 Sound +1404.0424 Information Theory +1404.0425 Information Theory +1404.0660 Information Theory +1404.0864 Information Theory +1404.1107 Information Theory +1404.1547 Information Theory +1404.1561 Computer Vision and Pattern Recognition +1404.1785 Methodology +1404.1955 Systems and Control +1404.2258 Information Theory +1404.2357 Information Theory +1404.2366 Networking and Internet Architecture +1404.3018 Multimedia +1404.3075 Information Theory +1404.3099 Networking and Internet Architecture +1404.3104 Emerging Technologies +1404.3165 Information Theory +1404.3891 Networking and Internet Architecture +1404.4152 Distributed, Parallel, and Cluster Computing +1404.5020 Other Computer Science +1404.5538 Information Theory +1404.5859 Information Theory +1404.6150 Information Theory +1404.6162 Statistical Mechanics +1404.6560 Information Theory +1404.6687 Information Theory +1404.6810 Information Theory +1404.6813 Systems and Control +1404.6862 Information Theory +1404.6891 +1404.7211 Computer Vision and Pattern Recognition +1404.7251 Information Theory +1404.7306 Computer Vision and Pattern Recognition +1404.7374 Information Theory +1404.7478 Information Theory +1404.7704 Algebraic Geometry +1405.0032 Information Theory +1405.0209 Information Theory +1405.0212 Applications +1405.0751 Optimization and Control +1405.1472 Information Theory +1405.1593 Information Theory +1405.1963 Networking and Internet Architecture +1405.2202 Information Theory +1405.2295 Information Theory +1405.4160 Spectral Theory +1405.4372 Information Theory +1405.4380 Networking and Internet Architecture +1405.4623 Information Theory +1405.4626 Information Theory +1405.5704 Cryptography and Security +1405.6052 Information Theory +1405.7432 Materials Science +1405.7789 Optimization and Control +1406.0121 Materials Science +1406.0173 Information Theory +1406.0895 Instrumentation and Detectors +1406.1169 Information Theory +1406.1308 Information Theory +1406.1738 Systems and Control +1406.1818 Networking and Internet Architecture +1406.2312 Instrumentation and Detectors +1406.3237 +1406.3619 Information Theory +1406.3789 Instrumentation and Detectors +1406.4259 Emerging Technologies +1406.4651 Optimization and Control +1406.4662 Other Condensed Matter +1406.4952 Optimization and Control +1406.5105 Information Theory +1406.5521 Networking and Internet Architecture +1406.5555 Information Theory +1406.5732 Information Theory +1406.5765 Human-Computer Interaction +1406.6133 Applications +1406.6673 Atomic Physics +1406.6852 Information Theory +1406.7116 Networking and Internet Architecture +1406.7315 Information Theory +1406.7373 Information Theory +1406.7699 Information Theory +1407.0118 Systems and Control +1407.0453 Analysis of PDEs +1407.0536 Networking and Internet Architecture +1407.0597 Optimization and Control +1407.1065 Information Theory +1407.2201 Information Theory +1407.2542 Information Theory +1407.2857 Networking and Internet Architecture +1407.2990 Information Theory +1407.3006 Systems and Control +1407.3023 Computational Engineering, Finance, and Science +1407.3502 Instrumentation and Methods for Astrophysics +1407.3936 Statistical Mechanics +1407.4000 Neural and Evolutionary Computing +1407.4017 Other Computer Science +1407.4171 Information Theory +1407.4177 Information Theory +1407.4318 Information Theory +1407.5366 Information Theory +1407.6751 Information Theory +1407.7150 Information Theory +1407.8016 +1407.8463 Information Theory +1407.8469 Information Theory +1408.0177 Information Theory +1408.1468 Information Theory +1408.2302 Information Theory +1408.2335 Networking and Internet Architecture +1408.2401 Social and Information Networks +1408.3025 Systems and Control +1408.3164 Systems and Control +1408.3206 Information Theory +1408.3717 Information Theory +1408.4215 Information Theory +1408.4435 Applications +1408.4590 Information Theory +1408.4792 Computational Engineering, Finance, and Science +1408.5057 Information Theory +1408.5072 Information Theory +1408.5245 Information Theory +1408.5574 Learning +1408.5583 Information Theory +1408.5699 Software Engineering +1408.5710 Information Theory +1408.5717 Networking and Internet Architecture +1408.5928 Networking and Internet Architecture +1408.6245 Accelerator Physics +1408.6369 Information Theory +1408.7004 Information Theory +1409.0561 Information Theory +1409.0586 Information Theory +1409.1730 Systems and Control +1409.3909 Computers and Society +1409.3940 Networking and Internet Architecture +1409.3954 Information Theory +1409.5700 Instrumentation and Detectors +1409.6151 Systems and Control +1409.6620 Software Engineering +1409.6624 Software Engineering +1409.7900 Statistical Mechanics +1409.8588 Physics and Society +1410.0213 Information Theory +1410.0765 Optimization and Control +1410.1031 Information Theory +1410.1085 Information Theory +1410.1266 Information Theory +1410.1606 Computer Vision and Pattern Recognition +1410.1830 Systems and Control +1410.1966 Networking and Internet Architecture +1410.1969 Networking and Internet Architecture +1410.1973 Networking and Internet Architecture +1410.1980 Computer Vision and Pattern Recognition +1410.2291 Information Theory +1410.2419 Networking and Internet Architecture +1410.3691 Information Theory +1410.3728 Information Theory +1410.3947 Information Theory +1410.3976 Optimization and Control +1410.4017 Computer Vision and Pattern Recognition +1410.4086 Information Theory +1410.4162 Classical Physics +1410.5358 Computer Vision and Pattern Recognition +1410.5585 Information Theory +1410.5605 Computer Vision and Pattern Recognition +1410.5890 Information Theory +1410.6086 Probability +1410.6095 Machine Learning +1410.6569 Information Theory +1410.6831 Other Computer Science +1410.7174 Information Theory +1410.8023 Information Theory +1410.8078 Information Theory +1410.8521 Social and Information Networks +1410.8660 Information Theory +1410.8714 Information Theory +1410.8797 Information Theory +1411.0220 Information Theory +1411.0224 Information Theory +1411.0390 Information Theory +1411.0912 Distributed, Parallel, and Cluster Computing +1411.1211 Optimization and Control +1411.1215 Distributed, Parallel, and Cluster Computing +1411.1339 Information Theory +1411.1352 Methodology +1411.1356 Risk Management +1411.2269 Number Theory +1411.2744 Sound +1411.3769 Optimization and Control +1411.3990 Physics and Society +1411.4105 Optimization and Control +1411.5003 Networking and Internet Architecture +1411.5319 Computer Vision and Pattern Recognition +1411.5620 Optimization and Control +1411.6382 Computer Vision and Pattern Recognition +1411.7529 Information Theory +1411.7533 Information Theory +1411.7564 Computer Vision and Pattern Recognition +1412.0349 Information Theory +1412.0524 Dynamical Systems +1412.0614 Information Theory +1412.1964 Information Theory +1412.1993 Information Theory +1412.2096 Instrumentation and Methods for Astrophysics +1412.2584 Number Theory +1412.4474 Networking and Internet Architecture +1412.5867 Computers and Society +1412.6546 Computer Science and Game Theory +1412.6677 Information Theory +1412.6699 Information Theory +1412.7512 Information Theory +1412.7713 Information Theory +1412.8339 Computers and Society +1501.00029 Computers and Society +1501.00155 Logic +1501.00188 Optimization and Control +1501.00409 Information Theory +1501.01184 Information Theory +1501.01563 Information Theory +1501.01661 Distributed, Parallel, and Cluster Computing +1501.01726 Information Theory +1501.01957 Information Theory +1501.02317 Networking and Internet Architecture +1501.02410 Information Theory +1501.02429 Information Theory +1501.02478 Computer Science and Game Theory +1501.02480 Computer Science and Game Theory +1501.02594 Networking and Internet Architecture +1501.02988 Information Theory +1501.03569 Information Theory +1501.04204 Information Theory +1501.04721 Information Theory +1501.05376 Information Theory +1501.05379 Information Theory +1501.05450 Networking and Internet Architecture +1501.05501 Information Theory +1501.05590 Machine Learning +1501.05695 Information Theory +1501.05819 Networking and Internet Architecture +1501.06026 Information Theory +1501.06123 Information Theory +1501.06180 Computer Vision and Pattern Recognition +1501.06647 Networking and Internet Architecture +1502.00206 Distributed, Parallel, and Cluster Computing +1502.00451 Information Theory +1502.00507 Networking and Internet Architecture +1502.00679 Optimization and Control +1502.00687 Analysis of PDEs +1502.01621 Information Theory +1502.03221 Optimization and Control +1502.03493 Networking and Internet Architecture +1502.04348 Information Retrieval +1502.05435 Computer Vision and Pattern Recognition +1502.05789 Systems and Control +1502.05938 Computational Engineering, Finance, and Science +1502.05943 Databases +1502.06084 Cryptography and Security +1502.06669 Information Theory +1502.06670 Information Theory +1502.06743 Networking and Internet Architecture +1502.06809 Information Theory +1502.07411 Computer Vision and Pattern Recognition +1502.07828 Multimedia +1503.00083 Multimedia +1503.00085 Multimedia +1503.00087 Multimedia +1503.00118 Multimedia +1503.00121 Multimedia +1503.00205 Information Theory +1503.00587 Computers and Society +1503.01415 Information Theory +1503.01440 Networking and Internet Architecture +1503.02254 Exactly Solvable and Integrable Systems +1503.02318 Social and Information Networks +1503.02815 Information Theory +1503.02877 Information Theory +1503.02878 Information Theory +1503.03121 +1503.03366 Networking and Internet Architecture +1503.03597 Information Theory +1503.03600 Emerging Technologies +1503.05144 Cryptography and Security +1503.05241 Information Theory +1503.05962 Optics +1503.05964 Medical Physics +1503.06021 Information Theory +1503.06202 Instrumentation and Methods for Astrophysics +1503.06614 Information Theory +1503.07073 Programming Languages +1503.07288 Social and Information Networks +1503.07612 Information Theory +1503.07717 Logic in Computer Science +1503.08093 Probability +1503.08134 Computer Science and Game Theory +1503.08627 Information Theory +1503.09039 Information Theory +1503.09170 Information Theory +1503.09178 Information Theory +1504.00088 Systems and Control +1504.00183 Optimization and Control +1504.00553 Information Theory +1504.00724 Systems and Control +1504.00788 Distributed, Parallel, and Cluster Computing +1504.00953 Information Theory +1504.00954 Data Structures and Algorithms +1504.01000 Information Theory +1504.01002 Information Theory +1504.01267 Materials Science +1504.01492 Computer Vision and Pattern Recognition +1504.01690 Information Theory +1504.01802 Information Theory +1504.02083 Complex Variables +1504.03240 Information Theory +1504.03274 Optimization and Control +1504.03410 Computer Vision and Pattern Recognition +1504.03803 Networking and Internet Architecture +1504.03810 Computer Vision and Pattern Recognition +1504.04113 Information Theory +1504.04494 Information Theory +1504.04499 Information Theory +1504.04515 Information Theory +1504.04568 Materials Science +1504.04615 Information Theory +1504.04663 Social and Information Networks +1504.04806 Information Theory +1504.04975 Information Theory +1504.05358 Information Theory +1504.05756 Information Theory +1504.05898 Information Theory +1504.05931 Information Theory +1504.06224 Dynamical Systems +1504.06416 Information Theory +1504.06746 Information Theory +1504.06749 Information Theory +1504.07014 Algebraic Geometry +1504.07544 Information Theory +1504.07547 Information Theory +1504.07615 Information Theory +1504.07969 Dynamical Systems +1504.08068 Information Theory +1504.08076 Information Theory +1504.08231 Information Theory +1504.08245 Information Theory +1505.00145 Computer Vision and Pattern Recognition +1505.00181 Emerging Technologies +1505.00303 Information Theory +1505.00330 Information Theory +1505.00511 Information Theory +1505.01786 Information Theory +1505.02098 Systems and Control +1505.02147 Logic +1505.02597 Information Theory +1505.02819 Functional Analysis +1505.02911 Information Theory +1505.02928 Quantitative Methods +1505.03209 Networking and Internet Architecture +1505.03357 Mathematical Software +1505.03460 Networking and Internet Architecture +1505.04651 Materials Science +1505.04679 Information Theory +1505.04868 Computer Vision and Pattern Recognition +1505.06345 Information Theory +1505.06553 Information Theory +1505.06608 Networking and Internet Architecture +1505.06699 Computational Engineering, Finance, and Science +1505.07919 Information Theory +1505.07929 Information Theory +1505.08097 Distributed, Parallel, and Cluster Computing +1506.00485 Distributed, Parallel, and Cluster Computing +1506.01158 Probability +1506.01394 Networking and Internet Architecture +1506.01853 Information Theory +1506.02031 Information Theory +1506.02197 Instrumentation and Detectors +1506.02600 Dynamical Systems +1506.03065 Differential Geometry +1506.03236 Information Theory +1506.03495 Computer Vision and Pattern Recognition +1506.03774 Systems and Control +1506.04226 Neurons and Cognition +1506.04233 Information Theory +1506.04303 Cryptography and Security +1506.04374 Neurons and Cognition +1506.04458 Neurons and Cognition +1506.04461 Neurons and Cognition +1506.04737 +1506.04775 Probability +1506.05072 Social and Information Networks +1506.05222 Information Theory +1506.06114 Information Theory +1506.06345 Information Theory +1506.06372 Information Theory +1506.06390 Information Theory +1506.06537 Formal Languages and Automata Theory +1506.06646 Artificial Intelligence +1506.06691 Emerging Technologies +1506.06797 Dynamical Systems +1506.07158 Information Theory +1506.07367 Cryptography and Security +1506.07466 Networking and Internet Architecture +1506.07614 Theory +1506.07742 Distributed, Parallel, and Cluster Computing +1506.07789 Materials Science +1506.08307 Networking and Internet Architecture +1506.08308 Networking and Internet Architecture +1506.08754 Human-Computer Interaction +1506.08762 Systems and Control +1506.09074 Cryptography and Security +1507.00071 Information Theory +1507.00095 Cryptography and Security +1507.00389 Information Theory +1507.00598 Information Theory +1507.00787 Physics and Society +1507.01269 Information Theory +1507.01780 Information Theory +1507.02129 Optics +1507.02598 Information Theory +1507.02615 Computer Science and Game Theory +1507.02853 Data Structures and Algorithms +1507.02874 Information Theory +1507.02973 Social and Information Networks +1507.03214 Theory +1507.04159 Information Theory +1507.04300 Systems and Control +1507.04540 Learning +1507.05228 Systems and Control +1507.05268 Artificial Intelligence +1507.05479 Statistical Mechanics +1507.05533 Information Theory +1507.05679 Emerging Technologies +1507.05737 Computer Vision and Pattern Recognition +1507.05924 Information Theory +1507.05994 Information Theory +1507.06296 Information Theory +1507.06881 Information Theory +1507.07056 Information Theory +1507.07142 Dynamical Systems +1507.07217 Networking and Internet Architecture +1507.07458 Computer Vision and Pattern Recognition +1507.08800 Optimization and Control +1507.08810 Networking and Internet Architecture +1508.00105 Information Theory +1508.00187 Combinatorics +1508.00349 Optimization and Control +1508.00951 Combinatorics +1508.01055 Multimedia +1508.01602 Information Theory +1508.01617 Information Theory +1508.01773 Information Theory +1508.01775 Physics and Society +1508.02668 Information Theory +1508.02808 Networking and Internet Architecture +1508.03517 Information Theory +1508.03940 Information Theory +1508.05037 Optimization and Control +1508.05149 Information Theory +1508.05181 Information Theory +1508.05336 High Energy Astrophysical Phenomena +1508.05348 Networking and Internet Architecture +1508.05703 Information Theory +1508.06011 Information Theory +1508.06093 Information Theory +1508.06158 Information Theory +1508.06223 Analysis of PDEs +1508.06227 Analysis of PDEs +1508.06366 Networking and Internet Architecture +1508.06369 Networking and Internet Architecture +1508.07635 Soft Condensed Matter +1509.00174 Neural and Evolutionary Computing +1509.00244 Computer Vision and Pattern Recognition +1509.00291 Information Theory +1509.00338 Networking and Internet Architecture +1509.00374 Networking and Internet Architecture +1509.00395 Information Theory +1509.01038 Networking and Internet Architecture +1509.01187 Information Theory +1509.01774 Information Theory +1509.01788 Computer Vision and Pattern Recognition +1509.01886 Information Theory +1509.02268 Cryptography and Security +1509.02297 Information Theory +1509.02956 Information Theory +1509.03057 Artificial Intelligence +1509.03252 Optimization and Control +1509.03381 Machine Learning +1509.03854 Fluid Dynamics +1509.04035 Symplectic Geometry +1509.04125 Systems and Control +1509.04154 Optimization and Control +1509.04186 Computer Vision and Pattern Recognition +1509.04619 Computer Vision and Pattern Recognition +1509.04648 Robotics +1509.04664 Computer Vision and Pattern Recognition +1509.04674 Information Theory +1509.04845 Information Theory +1509.04934 Sound +1509.05395 Information Theory +1509.05618 Information Theory +1509.05671 Multimedia +1509.07223 Information Theory +1509.07302 Neural and Evolutionary Computing +1509.07922 Optimization and Control +1509.07950 Information Theory +1509.08152 Algebraic Geometry +1509.08189 Strongly Correlated Electrons +1509.08316 Networking and Internet Architecture +1509.08331 Systems and Control +1509.09222 Information Theory +1509.09227 Optimization and Control +1510.00073 Optimization and Control +1510.00082 Information Theory +1510.00563 Computation +1510.01240 Robotics +1510.01392 Information Theory +1510.01434 Information Theory +1510.02073 Computer Vision and Pattern Recognition +1510.02078 Computer Vision and Pattern Recognition +1510.02384 +1510.02436 Algebraic Geometry +1510.02462 Optimization and Control +1510.02574 Hardware Architecture +1510.03125 Computer Vision and Pattern Recognition +1510.03336 Artificial Intelligence +1510.04031 Social and Information Networks +1510.04039 Sound +1510.04161 Methodology +1510.04330 Optimization and Control +1510.04472 Networking and Internet Architecture +1510.04503 Networking and Internet Architecture +1510.04571 Probability +1510.04574 Probability +1510.04583 Computational Engineering, Finance, and Science +1510.05557 Information Theory +1510.05594 Information Theory +1510.06469 Robotics +1510.06486 Distributed, Parallel, and Cluster Computing +1510.06495 Information Theory +1510.06796 Dynamical Systems +1510.07295 Information Theory +1510.07320 Computer Vision and Pattern Recognition +1510.07323 Computer Vision and Pattern Recognition +1510.07355 Information Theory +1510.07394 Information Theory +1510.07517 Information Theory +1510.07550 Networking and Internet Architecture +1510.07672 Information Theory +1510.08174 Medical Physics +1510.08380 Networking and Internet Architecture +1510.08612 Information Theory +1510.08736 Optimization and Control +1510.08979 Software Engineering +1510.09046 Information Theory +1511.00207 Information Theory +1511.00799 Systems and Control +1511.01291 Information Theory +1511.01556 Computation and Language +1511.01631 Computer Vision and Pattern Recognition +1511.01646 Information Theory +1511.02128 Information Theory +1511.02150 Information Theory +1511.02547 Systems and Control +1511.02548 Systems and Control +1511.02574 Information Theory +1511.02667 Computer Vision and Pattern Recognition +1511.02727 Information Theory +1511.02833 Information Theory +1511.03144 Multiagent Systems +1511.03342 Information Theory +1511.03418 Computers and Society +1511.03561 Information Theory +1511.03611 Systems and Control +1511.03698 Networking and Internet Architecture +1511.04240 Computer Vision and Pattern Recognition +1511.04515 Computational Engineering, Finance, and Science +1511.04519 Computational Engineering, Finance, and Science +1511.04540 Mesoscale and Nanoscale Physics +1511.04763 Networking and Internet Architecture +1511.05076 Computation and Language +1511.05261 Computer Vision and Pattern Recognition +1511.05499 Information Theory +1511.05612 Networking and Internet Architecture +1511.05677 Systems and Control +1511.05892 Information Theory +1511.06715 Information Theory +1511.06815 Computer Vision and Pattern Recognition +1511.06888 Networking and Internet Architecture +1511.07042 Numerical Analysis +1511.07311 Information Theory +1511.07316 Information Theory +1511.07374 Information Theory +1511.07499 Information Theory +1511.07693 Distributed, Parallel, and Cluster Computing +1511.07844 Instrumentation and Detectors +1511.07913 Instrumentation and Detectors +1511.08242 Theory +1511.08587 Networking and Internet Architecture +1511.08862 +1511.08876 Systems and Control +1512.01148 +1512.01738 Information Theory +1512.01780 Information Theory +1512.01944 Instrumentation and Detectors +1512.02784 Instrumentation and Methods for Astrophysics +1512.02908 Instrumentation and Methods for Astrophysics +1512.02918 Information Theory +1512.02945 Information Theory +1512.03766 Probability +1512.03839 Networking and Internet Architecture +1512.03982 Information Theory +1512.03985 Information Theory +1512.04042 Information Retrieval +1512.04116 Cryptography and Security +1512.04133 Computer Vision and Pattern Recognition +1512.04134 Computer Vision and Pattern Recognition +1512.04255 Logic in Computer Science +1512.04833 Information Theory +1512.04968 Instrumentation and Detectors +1512.06197 Computer Science and Game Theory +1512.06238 Data Structures and Algorithms +1512.06726 Emerging Technologies +1512.06785 Information Retrieval +1512.06896 Cell Behavior +1512.06938 Information Theory +1512.07221 Information Theory +1512.07735 Cryptography and Security +1512.08523 Superconductivity +1512.08650 Computational Physics +1601.00042 Systems and Control +1601.00086 Instrumentation and Detectors +1601.00721 Information Theory +1601.01062 Representation Theory +1601.01435 Information Theory +1601.01786 Networking and Internet Architecture +1601.02082 Information Theory +1601.02699 Networking and Internet Architecture +1601.02807 Earth and Planetary Astrophysics +1601.03121 Information Theory +1601.03164 Information Theory +1601.03821 Computer Vision and Pattern Recognition +1601.03876 Networking and Internet Architecture +1601.03926 Networking and Internet Architecture +1601.03981 Combinatorics +1601.04247 Information Theory +1601.05164 Systems and Control +1601.05275 Classical Analysis and ODEs +1601.05769 Information Theory +1601.06113 Information Theory +1601.06209 Information Theory +1601.06537 Statistics Theory +1601.07375 Applications +1601.07468 Information Theory +1601.07471 Computer Vision and Pattern Recognition +1601.08020 Dynamical Systems +1601.08062 Information Theory +1601.08117 Information Theory +1601.08198 Soft Condensed Matter +1601.08201 Numerical Analysis +1601.08245 Instrumentation and Detectors +1602.00043 Information Theory +1602.00066 Networking and Internet Architecture +1602.00145 Information Theory +1602.00173 Information Theory +1602.00193 Computers and Society +1602.00223 Learning +1602.01026 Dynamical Systems +1602.01066 Information Theory +1602.01149 Information Theory +1602.01208 Artificial Intelligence +1602.01565 Information Theory +1602.01944 Human-Computer Interaction +1602.02040 Information Theory +1602.02100 Phenomenology +1602.02159 Distributed, Parallel, and Cluster Computing +1602.02366 Information Theory +1602.03342 Networking and Internet Architecture +1602.03571 Learning +1602.03602 Information Theory +1602.03617 Networking and Internet Architecture +1602.03654 Information Theory +1602.03676 Information Theory +1602.04183 Hardware Architecture +1602.04207 Information Theory +1602.04445 Strongly Correlated Electrons +1602.04591 Information Theory +1602.05318 Networking and Internet Architecture +1602.05703 Learning +1602.05715 Materials Science +1602.06063 Information Theory +1602.06365 Information Theory +1602.06401 Human-Computer Interaction +1602.06498 Systems and Control +1602.06665 Information Theory +1602.06727 Sound +1602.06755 Differential Geometry +1602.06931 Medical Physics +1602.07022 Information Theory +1602.07423 Information Theory +1602.07495 Learning +1602.07570 Computer Science and Game Theory +1602.07743 Information Theory +1602.08327 Information Theory +1602.08567 Information Theory +1602.08857 Information Theory +1603.01217 Information Theory +1603.01420 Information Theory +1603.01869 Information Theory +1603.01926 Information Theory +1603.02713 Medical Physics +1603.03133 Information Theory +1603.03551 Information Theory +1603.03677 Optimization and Control +1603.03682 Networking and Internet Architecture +1603.03935 Systems and Control +1603.04079 Information Theory +1603.04341 Information Theory +1603.04418 Systems and Control +1603.04777 Numerical Analysis +1603.04908 Computer Vision and Pattern Recognition +1603.05225 +1603.05692 Optimization and Control +1603.05923 Atomic Physics +1603.06173 Information Theory +1603.06318 Learning +1603.06616 Information Theory +1603.06644 Mesoscale and Nanoscale Physics +1603.06777 Computer Vision and Pattern Recognition +1603.06970 Systems and Control +1603.07357 Distributed, Parallel, and Cluster Computing +1603.07683 Materials Science +1603.07807 Computer Vision and Pattern Recognition +1603.07936 Distributed, Parallel, and Cluster Computing +1603.07938 Distributed, Parallel, and Cluster Computing +1603.08027 Networking and Internet Architecture +1603.08150 Machine Learning +1603.08386 Genomics +1603.08763 Analysis of PDEs +1603.08876 Information Theory +1603.08900 Mesoscale and Nanoscale Physics +1603.09278 Networking and Internet Architecture +1604.00861 Sound +1604.00913 Networking and Internet Architecture +1604.00933 Computation and Language +1604.01680 Neurons and Cognition +1604.02559 Networking and Internet Architecture +1604.02687 Theory +1604.02752 Information Theory +1604.02758 Rings and Algebras +1604.02802 Networking and Internet Architecture +1604.02937 Computers and Society +1604.03049 Information Theory +1604.03693 Quantum Gases +1604.03764 Computer Science and Game Theory +1604.03984 Systems and Control +1604.04804 Distributed, Parallel, and Cluster Computing +1604.04906 Computer Vision and Pattern Recognition +1604.04966 Information Theory +1604.05240 +1604.05890 Theory +1604.06051 +1604.06113 Computation and Language +1604.06140 Earth and Planetary Astrophysics +1604.06722 Disordered Systems and Neural Networks +1604.06842 Information Theory +1604.07213 +1604.07318 Information Theory +1604.07918 Information Theory +1604.08315 Information Theory +1604.08319 Information Theory +1604.08937 Networking and Internet Architecture +1605.00301 Statistical Mechanics +1605.00305 Networking and Internet Architecture +1605.00451 Other Computer Science +1605.00710 Materials Science +1605.01160 Information Theory +1605.01178 Information Theory +1605.01201 Networking and Internet Architecture +1605.01668 Information Theory +1605.01972 Materials Science +1605.02242 Dynamical Systems +1605.02268 Information Theory +1605.02314 Information Theory +1605.02324 Information Theory +1605.02372 Learning +1605.02410 Information Theory +1605.02411 Optimization and Control +1605.03035 Computers and Society +1605.03338 Networking and Internet Architecture +1605.03498 Computer Vision and Pattern Recognition +1605.03547 Distributed, Parallel, and Cluster Computing +1605.03616 Numerical Analysis +1605.03621 Computer Vision and Pattern Recognition +1605.03778 Group Theory +1605.04039 Computer Vision and Pattern Recognition +1605.04065 Group Theory +1605.04180 Digital Libraries +1605.04227 Information Retrieval +1605.04283 Information Theory +1605.04634 Computer Vision and Pattern Recognition +1605.05026 Information Theory +1605.05137 Information Theory +1605.05140 Probability +1605.05179 Instrumentation and Detectors +1605.05195 Social and Information Networks +1605.05284 Information Theory +1605.05393 Materials Science +1605.05488 Information Theory +1605.05527 Fluid Dynamics +1605.05622 Computation +1605.06436 Experiment +1605.06474 Computer Vision and Pattern Recognition +1605.07098 Information Theory +1605.07164 Phenomenology +1605.07466 Sound +1605.07468 Sound +1605.07469 Sound +1605.07681 Computer Vision and Pattern Recognition +1605.07729 Information Theory +1605.07853 Information Theory +1605.08962 Cryptography and Security +1605.09038 Information Theory +1606.00219 Computer Vision and Pattern Recognition +1606.00284 Astrophysics of Galaxies +1606.00397 Information Theory +1606.00656 Applications +1606.00940 Theory +1606.01275 Data Structures and Algorithms +1606.01314 Information Theory +1606.01581 Networking and Internet Architecture +1606.01599 Information Theory +1606.01952 Mesoscale and Nanoscale Physics +1606.02213 Information Theory +1606.02371 Information Theory +1606.03129 +1606.03469 Mesoscale and Nanoscale Physics +1606.03535 +1606.03636 Sound +1606.04191 Information Theory +1606.04322 Information Theory +1606.04488 Information Theory +1606.04794 Information Theory +1606.05677 History and Philosophy of Physics +1606.05905 Digital Libraries +1606.06408 Information Theory +1606.06900 Computation and Language +1606.08407 Networking and Internet Architecture +1606.08642 +1606.08772 Experiment +1606.08924 +1607.00054 Dynamical Systems +1607.00565 Group Theory +1607.00589 Computer Vision and Pattern Recognition +1607.01383 Information Theory +1607.01657 Data Structures and Algorithms +1607.02014 Information Theory +1607.02295 Strongly Correlated Electrons +1607.02864 Systems and Control +1607.02920 Information Theory +1607.03362 Instrumentation and Detectors +1607.04024 Cosmology and Nongalactic Astrophysics +1607.05017 Information Theory +1607.05090 Computational Physics +1607.05203 Phenomenology +1607.05553 Optics +1607.05850 Data Structures and Algorithms +1607.06124 +1607.06190 Learning +1607.06351 Information Theory +1607.06384 Information Theory +1607.06540 Information Theory +1607.06708 Robotics +1607.06734 Strongly Correlated Electrons +1607.07277 +1607.08096 Methodology +1607.08175 Plasma Physics +1607.08200 Information Theory +1607.08220 Distributed, Parallel, and Cluster Computing +1607.08292 Information Theory +1608.00721 +1608.00990 Computation +1608.01398 Machine Learning +1608.01849 Astrophysics of Galaxies +1608.01907 +1608.01996 Strongly Correlated Electrons +1608.02322 Number Theory +1608.02414 Mesoscale and Nanoscale Physics +1608.02755 Computer Vision and Pattern Recognition +1608.02775 Metric Geometry +1608.03464 Neurons and Cognition +1608.03643 Learning +1608.03718 Earth and Planetary Astrophysics +1608.03728 Number Theory +1608.03798 Optimization and Control +1608.04135 Optimization and Control +1608.04167 Methodology +1608.04213 Information Theory +1608.04977 +1608.05265 Distributed, Parallel, and Cluster Computing +1608.05470 Information Theory +1608.05473 Information Theory +1608.05631 Probability +1608.06041 Information Theory +1608.06369 Instrumentation and Detectors +1608.06581 Learning +1608.06997 Superconductivity +1608.08150 High Energy Astrophysical Phenomena +1608.08313 Networking and Internet Architecture +1608.08451 Theory +1608.08605 Strongly Correlated Electrons +1608.08744 Computer Science and Game Theory +1609.00189 Information Theory +1609.00230 Soft Condensed Matter +1609.00468 Quantum Gases +1609.00987 Pricing of Securities +1609.01090 Classical Analysis and ODEs +1609.01103 Computer Vision and Pattern Recognition +1609.01885 Computer Vision and Pattern Recognition +1609.01955 Solar and Stellar Astrophysics +1609.02285 Soft Condensed Matter +1609.02500 Computer Vision and Pattern Recognition +1609.03490 Learning +1609.04360 Information Theory +1609.05490 Information Theory +1609.05789 Optics +1609.05831 Information Theory +1609.05836 Information Theory +1609.05871 Computer Vision and Pattern Recognition +1609.05971 Information Theory +1609.06261 Information Theory +1609.06353 Information Theory +1609.06395 Information Theory +1609.06460 Information Theory +1609.07576 Computer Science and Game Theory +1609.07589 Information Theory +1609.09471 Learning +1609.09789 Systems and Control +1610.00125 Distributed, Parallel, and Cluster Computing +1610.00473 Metric Geometry +1610.00966 Information Theory +1610.01654 Theory +1610.01706 Computer Vision and Pattern Recognition +1610.01820 Chemical Physics +1610.02826 Computer Science and Game Theory +1610.03132 Geometric Topology +1610.03428 Combinatorics +1610.04420 Machine Learning +1610.05094 Information Theory +1610.05423 Symplectic Geometry +1610.05600 Number Theory +1610.05999 Quantum Algebra +1610.06138 Networking and Internet Architecture +1610.06349 Computational Physics +1610.06507 Chaotic Dynamics +1610.07026 Functional Analysis +1610.07030 Probability +1610.07084 Probability +1610.07435 Optimization and Control +1610.07647 Computation and Language +1610.09029 Geometric Topology +1610.09259 Theory +1610.09851 Dynamical Systems +1611.00278 Number Theory +1611.00998 +1611.01063 Programming Languages +1611.01082 Complex Variables +1611.01589 Materials Science +1611.01721 Accelerator Physics +1611.01950 Information Theory +1611.01982 Computer Vision and Pattern Recognition +1611.02064 Computer Vision and Pattern Recognition +1611.02151 +1611.02187 Algebraic Topology +1611.02348 Numerical Analysis +1611.02409 Fluid Dynamics +1611.02559 Solar and Stellar Astrophysics +1611.02737 Databases +1611.02992 Social and Information Networks +1611.03035 +1611.03660 Computers and Society +1611.03847 Algebraic Geometry +1611.03938 Rings and Algebras +1611.03997 Lattice +1611.04290 Experiment +1611.04472 +1611.04663 Classical Analysis and ODEs +1611.04743 Quantitative Methods +1611.04801 Optimization and Control +1611.04952 Theory +1611.04989 Computation and Language +1611.05033 Solar and Stellar Astrophysics +1611.05034 Analysis of PDEs +1611.05036 Theory +1611.05041 Solar and Stellar Astrophysics +1611.05042 Phenomenology +1611.05045 Astrophysics of Galaxies +1611.05046 Phenomenology +1611.05049 Strongly Correlated Electrons +1611.05050 +1611.05051 Cosmology and Nongalactic Astrophysics +1611.05053 Computer Vision and Pattern Recognition +1611.05055 Cosmology and Nongalactic Astrophysics +1611.05057 +1611.05058 Physics and Society +1611.05059 Combinatorics +1611.05060 Phenomenology +1611.05061 Phenomenology +1611.05063 Information Theory +1611.05064 Astrophysics of Galaxies +1611.05067 Commutative Algebra +1611.05070 Probability +1611.05072 Mesoscale and Nanoscale Physics +1611.05074 +1611.05075 Mesoscale and Nanoscale Physics +1611.05077 +1611.05078 +1611.05079 Phenomenology +1611.05081 Optics +1611.05082 Biomolecules +1611.05084 Chaotic Dynamics +1611.05086 Computational Complexity +1611.05087 Networking and Internet Architecture +1611.05089 +1611.05090 Statistical Mechanics +1611.05091 Phenomenology +1611.05092 Robotics +1611.05094 Phenomenology +1611.05095 Learning +1611.05096 Numerical Analysis +1611.05097 Numerical Analysis +1611.05099 Classical Analysis and ODEs +1611.05101 Symbolic Computation +1611.05102 Optics +1611.05103 Quantum Algebra +1611.05105 Programming Languages +1611.05107 +1611.05108 Functional Analysis +1611.05110 Materials Science +1611.05112 Algebraic Geometry +1611.05113 Computer Vision and Pattern Recognition +1611.05116 Materials Science +1611.05117 Applications +1611.05118 Computer Vision and Pattern Recognition +1611.05120 Phenomenology +1611.05122 Networking and Internet Architecture +1611.05123 Cosmology and Nongalactic Astrophysics +1611.05124 Analysis of PDEs +1611.05129 Numerical Analysis +1611.05130 Numerical Analysis +1611.05132 Learning +1611.05134 Computer Vision and Pattern Recognition +1611.05137 Neurons and Cognition +1611.05138 Learning +1611.05141 Neural and Evolutionary Computing +1611.05142 Optimization and Control +1611.05143 Superconductivity +1611.05144 Materials Science +1611.05145 +1611.05146 Learning +1611.05148 Computer Vision and Pattern Recognition +1611.05150 Neurons and Cognition +1611.05152 Social and Information Networks +1611.05153 Algebraic Geometry +1611.05154 Robotics +1611.05157 Category Theory +1611.05159 Operator Algebras +1611.05161 Distributed, Parallel, and Cluster Computing +1611.05164 Systems and Control +1611.05166 Functional Analysis +1611.05167 Mesoscale and Nanoscale Physics +1611.05170 Artificial Intelligence +1611.05172 Networking and Internet Architecture +1611.05173 Dynamical Systems +1611.05175 Solar and Stellar Astrophysics +1611.05176 Logic +1611.05177 Networking and Internet Architecture +1611.05178 Cosmology and Nongalactic Astrophysics +1611.05180 Mesoscale and Nanoscale Physics +1611.05181 Learning +1611.05182 Sound +1611.05184 Solar and Stellar Astrophysics +1611.05185 +1611.05187 Discrete Mathematics +1611.05188 Analysis of PDEs +1611.05190 Artificial Intelligence +1611.05195 Mesoscale and Nanoscale Physics +1611.05199 Functional Analysis +1611.05200 Analysis of PDEs +1611.05203 Computer Vision and Pattern Recognition +1611.05204 Social and Information Networks +1611.05205 Computer Science and Game Theory +1611.05206 Digital Libraries +1611.05207 +1611.05208 Materials Science +1611.05209 Machine Learning +1611.05210 Spectral Theory +1611.05212 Numerical Analysis +1611.05213 Astrophysics of Galaxies +1611.05215 Computer Vision and Pattern Recognition +1611.05217 +1611.05218 K-Theory and Homology +1611.05219 Probability +1611.05220 Probability +1611.05222 Information Retrieval +1611.05225 Information Theory +1611.05227 Solar and Stellar Astrophysics +1611.05228 Instrumentation and Detectors +1611.05229 +1611.05231 Logic +1611.05232 Instrumentation and Detectors +1611.05234 Materials Science +1611.05235 Statistical Mechanics +1611.05237 Spectral Theory +1611.05238 Quantum Gases +1611.05239 Computation and Language +1611.05240 Probability +1611.05241 Computer Vision and Pattern Recognition +1611.05242 Analysis of PDEs +1611.05243 +1611.05245 Instrumentation and Detectors +1611.05246 Mesoscale and Nanoscale Physics +1611.05248 Data Structures and Algorithms +1611.05249 Solar and Stellar Astrophysics +1611.05250 Computer Vision and Pattern Recognition +1611.05251 Combinatorics +1611.05252 Combinatorics +1611.05255 Mesoscale and Nanoscale Physics +1611.05257 Dynamical Systems +1611.05258 Number Theory +1611.05260 Astrophysics of Galaxies +1611.05261 Differential Geometry +1611.05263 Complex Variables +1611.05265 Complex Variables +1611.05266 Statistical Mechanics +1611.05267 Computer Vision and Pattern Recognition +1611.05268 Instrumentation and Methods for Astrophysics +1611.05269 Information Theory +1611.05271 Computer Vision and Pattern Recognition +1611.05273 Analysis of PDEs +1611.05274 Experiment +1611.05275 Probability +1611.05277 Soft Condensed Matter +1611.05278 Analysis of PDEs +1611.05279 Instrumentation and Methods for Astrophysics +1611.05282 Soft Condensed Matter +1611.05284 Metric Geometry +1611.05285 Classical Analysis and ODEs +1611.05286 Phenomenology +1611.05287 Superconductivity +1611.05288 General Finance +1611.05289 Applications +1611.05290 Materials Science +1611.05295 General Physics +1611.05296 Classical Analysis and ODEs +1611.05297 Physics Education +1611.05298 Combinatorics +1611.05299 Atomic Physics +1611.05300 Analysis of PDEs +1611.05301 Computer Vision and Pattern Recognition +1611.05302 Applications +1611.05304 General Physics +1611.05305 Strongly Correlated Electrons +1611.05312 Differential Geometry +1611.05313 Physics Education +1611.05314 Combinatorics +1611.05316 General Physics +1611.05317 Learning +1611.05318 Analysis of PDEs +1611.05320 Combinatorics +1611.05322 Information Theory +1611.05326 +1611.05327 +1611.05328 Multimedia +1611.05330 Phenomenology +1611.05331 +1611.05332 Instrumentation and Detectors +1611.05333 Materials Science +1611.05334 Representation Theory +1611.05336 Phenomenology +1611.05339 Computers and Society +1611.05341 Number Theory +1611.05342 Computer Science and Game Theory +1611.05343 Numerical Analysis +1611.05344 Methodology +1611.05346 Distributed, Parallel, and Cluster Computing +1611.05349 Number Theory +1611.05350 Pattern Formation and Solitons +1611.05351 General Topology +1611.05353 Networking and Internet Architecture +1611.05355 Algebraic Geometry +1611.05360 Computation and Language +1611.05362 Networking and Internet Architecture +1611.05364 Probability +1611.05366 Solar and Stellar Astrophysics +1611.05368 Computer Vision and Pattern Recognition +1611.05369 Computer Vision and Pattern Recognition +1611.05371 Mesoscale and Nanoscale Physics +1611.05373 Social and Information Networks +1611.05375 Superconductivity +1611.05377 Computer Vision and Pattern Recognition +1611.05378 Learning +1611.05379 Artificial Intelligence +1611.05384 Computation and Language +1611.05385 Classical Analysis and ODEs +1611.05386 Complex Variables +1611.05387 +1611.05394 +1611.05396 Computer Vision and Pattern Recognition +1611.05397 Learning +1611.05398 Classical Analysis and ODEs +1611.05399 Optics +1611.05400 Instrumentation and Methods for Astrophysics +1611.05401 Statistics Theory +1611.05403 Biological Physics +1611.05405 Methodology +1611.05406 Physics and Society +1611.05407 Statistics Theory +1611.05408 Strongly Correlated Electrons +1611.05410 Statistics Theory +1611.05411 +1611.05412 Quantum Gases +1611.05413 Information Theory +1611.05414 Data Analysis, Statistics and Probability +1611.05415 Hardware Architecture +1611.05417 Algebraic Geometry +1611.05419 Social and Information Networks +1611.05420 Methodology +1611.05422 Logic +1611.05423 Combinatorics +1611.05424 Computer Vision and Pattern Recognition +1611.05425 Artificial Intelligence +1611.05427 Complex Variables +1611.05429 Data Structures and Algorithms +1611.05430 Optimization and Control +1611.05431 Computer Vision and Pattern Recognition +1611.05432 Mesoscale and Nanoscale Physics +1611.05433 Machine Learning +1611.05434 +1611.05436 Theory +1611.05437 Astrophysics of Galaxies +1611.05438 Other Computer Science +1611.05441 Dynamical Systems +acc-phys/9504001 Accelerator Physics +astro-ph/0304312 +astro-ph/0504651 +astro-ph/9906098 +astro-ph/9906099 +cond-mat/0012120 Superconductivity +cond-mat/0101384 Superconductivity +cond-mat/0210535 Disordered Systems and Neural Networks +cond-mat/0410529 Statistical Mechanics +cond-mat/0608056 Materials Science +cond-mat/9802293 Materials Science +cond-mat/9901118 Mesoscale and Nanoscale Physics +cs/0005022 Sound +cs/0005032 Computational Complexity +cs/0010010 Computational Engineering, Finance, and Science +cs/0106010 Artificial Intelligence +cs/0203014 Computational Complexity +cs/0208023 Networking and Internet Architecture +cs/0403029 Networking and Internet Architecture +cs/0405026 Artificial Intelligence +cs/0405028 Artificial Intelligence +cs/0405033 Artificial Intelligence +cs/0405065 Neural and Evolutionary Computing +cs/0407010 Information Theory +cs/0410012 Performance +cs/0412071 Artificial Intelligence +cs/0412072 Artificial Intelligence +cs/0412118 Networking and Internet Architecture +cs/0501057 Information Theory +cs/0501061 Information Theory +cs/0501064 Information Theory +cs/0501066 Information Theory +cs/0501067 Information Theory +cs/0501085 Information Theory +cs/0502091 Cryptography and Security +cs/0505032 Information Theory +cs/0505064 Human-Computer Interaction +cs/0506012 Information Theory +cs/0506028 Information Theory +cs/0506042 Information Theory +cs/0506043 Information Theory +cs/0506045 Information Theory +cs/0506093 Information Theory +cs/0507005 Information Theory +cs/0507009 Networking and Internet Architecture +cs/0507068 Information Theory +cs/0508011 Cryptography and Security +cs/0508012 Information Theory +cs/0508013 Information Theory +cs/0508014 Information Theory +cs/0508019 Information Theory +cs/0508027 Information Theory +cs/0508030 Information Theory +cs/0508039 Information Theory +cs/0508046 Information Theory +cs/0508051 Information Theory +cs/0508054 Information Theory +cs/0508055 Discrete Mathematics +cs/0508057 Information Theory +cs/0508077 Information Theory +cs/0508099 Information Theory +cs/0508104 Information Theory +cs/0508124 Information Theory +cs/0510005 Information Theory +cs/0511003 Information Theory +cs/0511019 Information Theory +cs/0511065 Information Theory +cs/0601012 Information Theory +cs/0601017 Information Theory +cs/0601036 Information Theory +cs/0601041 Information Theory +cs/0601048 Information Theory +cs/0601090 Information Theory +cs/0602035 Information Theory +cs/0603068 Information Theory +cs/0603112 Distributed, Parallel, and Cluster Computing +cs/0603126 Multiagent Systems +cs/0604077 Information Theory +cs/0604110 Multiagent Systems +cs/0605100 Information Theory +cs/0605106 Logic in Computer Science +cs/0605118 Information Theory +cs/0605137 Information Theory +cs/0608021 Information Theory +cs/0608044 Networking and Internet Architecture +cs/0608046 Distributed, Parallel, and Cluster Computing +cs/0608047 Distributed, Parallel, and Cluster Computing +cs/0609018 Information Theory +cs/0609023 Hardware Architecture +cs/0609042 Information Theory +cs/0610025 Information Theory +cs/0610079 Information Theory +cs/0610090 Hardware Architecture +cs/0610106 Information Theory +cs/0610112 Information Theory +cs/0611106 Information Theory +cs/0611118 Artificial Intelligence +cs/0611160 Information Theory +cs/0611161 Information Theory +cs/0612007 Information Theory +cs/0612083 Distributed, Parallel, and Cluster Computing +cs/0612089 Computational Complexity +cs/0612099 Information Theory +cs/0701006 Information Theory +cs/0701034 Information Theory +cs/0701050 Information Theory +cs/0701065 Information Theory +cs/0701090 Information Theory +cs/0701093 Information Theory +cs/0701152 Information Theory +cs/0701178 Information Theory +cs/0702105 Information Theory +cs/0702115 Information Theory +cs/0702147 Information Theory +cs/0702158 Networking and Internet Architecture +cs/0702161 Information Theory +cs/0703005 Information Theory +cs/0703016 Information Theory +cs/0703022 Information Theory +cs/0703035 Information Theory +cs/0703078 Information Theory +cs/0703125 Learning +cs/0703132 Data Structures and Algorithms +cs/9809090 Networking and Internet Architecture +cs/9809102 Networking and Internet Architecture +cs/9809104 Networking and Internet Architecture +cs/9810011 Hardware Architecture +cs/9812006 Neural and Evolutionary Computing +cs/9904002 Information Retrieval +cs/9906031 Software Engineering +cs/9909006 Computational Geometry +math-ph/0503037 +math/0006133 Optimization and Control +math/0309285 Numerical Analysis +math/0506060 Optimization and Control +math/0506420 Combinatorics +math/0509536 Optimization and Control +math/0608556 Statistics Theory +math/0612193 Optimization and Control +math/0701261 Statistics Theory +math/9705212 Probability +nlin/0006050 Adaptation and Self-Organizing Systems +nlin/0409038 Chaotic Dynamics +nlin/0512031 Adaptation and Self-Organizing Systems +nlin/0606029 Chaotic Dynamics +nlin/0606032 Chaotic Dynamics +physics/0107020 Accelerator Physics +physics/0112013 Instrumentation and Detectors +physics/0308094 General Physics +physics/0404052 Chemical Physics +physics/0406129 Optics +physics/0411136 Instrumentation and Detectors +physics/0504013 Atomic Physics +physics/0509202 Optics +physics/0511173 Instrumentation and Detectors +physics/0604015 Medical Physics +physics/0605004 Computational Physics +physics/0612129 Data Analysis, Statistics and Probability +physics/0612166 Instrumentation and Detectors +physics/0701161 Medical Physics +q-bio/0407030 Biomolecules +q-bio/0407039 Biomolecules +q-bio/0508012 Genomics +q-bio/0606018 Quantitative Methods +quant-ph/0102108 +quant-ph/0205057 +quant-ph/0206093 +quant-ph/0206185 +quant-ph/0206186 +quant-ph/0206187 +quant-ph/0209076 +quant-ph/0304112 +quant-ph/0304161 +quant-ph/0305105 +quant-ph/0305154 +quant-ph/0404154 +quant-ph/0405016 +quant-ph/0409135 +quant-ph/0501099 +quant-ph/0506189 +quant-ph/0601168 +quant-ph/0610195 +quant-ph/0702005 +quant-ph/9808063 +quant-ph/9907087 +1004.1586 Discrete Mathematics +1104.0811 Dynamical Systems +1106.3747 Mesoscale and Nanoscale Physics +1110.5594 Analysis of PDEs +1201.5158 Dynamical Systems +1203.0539 Algebraic Geometry +1206.6575 Analysis of PDEs +1212.1273 +1304.6828 Strongly Correlated Electrons +1305.1572 Symplectic Geometry +1305.3627 Probability +1306.0659 Probability +1306.5685 Number Theory +1308.3305 Mesoscale and Nanoscale Physics +1310.4021 Statistics Theory +1310.7719 Logic +1311.6180 Probability +1401.1951 Spectral Theory +1401.2175 Data Structures and Algorithms +1401.3911 Applications +1401.5595 Probability +1401.6312 Logic in Computer Science +1403.1411 Number Theory +1403.2162 Functional Analysis +1405.6055 Optimization and Control +1405.6658 Physics and Society +1406.5413 +1407.0224 Physics and Society +1407.2223 Optics +1407.3740 Data Structures and Algorithms +1408.3501 Combinatorics +1408.3618 Quantum Gases +1409.0505 +1409.5537 Logic +1409.6278 Symplectic Geometry +1409.6749 Number Theory +1410.2870 Theory +1410.3912 +1410.4687 Functional Analysis +1411.1363 Phenomenology +1411.3307 Combinatorics +1412.3663 Group Theory +1412.4377 Quantum Gases +1412.6695 Phenomenology +1501.00535 Functional Analysis +1501.07530 Rings and Algebras +1502.03332 Systems and Control +1502.04506 Functional Analysis +1502.06339 Superconductivity +1502.07042 Statistics Theory +1503.00846 Solar and Stellar Astrophysics +1503.01223 Algebraic Geometry +1503.01317 Operator Algebras +1503.02373 Social and Information Networks +1503.04652 Optimization and Control +1503.05909 Statistics Theory +1503.06486 Probability +1503.07593 Strongly Correlated Electrons +1503.08722 Theory +1504.00517 Phenomenology +1504.02575 +1504.03976 Networking and Internet Architecture +1504.06832 Representation Theory +1504.06906 +1504.07947 Computer Vision and Pattern Recognition +1505.04194 Strongly Correlated Electrons +1506.01273 Computation and Language +1506.02324 Phenomenology +1506.03056 Materials Science +1506.03674 Analysis of PDEs +1506.03953 +1506.03986 Quantum Gases +1506.04979 Atomic Physics +1506.05104 High Energy Astrophysical Phenomena +1506.05193 Social and Information Networks +1506.06893 Probability +1506.07196 Information Theory +1507.00199 Mesoscale and Nanoscale Physics +1507.02762 Computational Geometry +1507.03307 Commutative Algebra +1507.03973 Differential Geometry +1507.07412 Statistics Theory +1507.07896 Mesoscale and Nanoscale Physics +1507.08995 High Energy Astrophysical Phenomena +1508.00905 +1508.01552 Metric Geometry +1508.03700 Statistical Mechanics +1508.05923 Combinatorics +1508.07633 Optimization and Control +1509.01188 +1509.01358 +1509.01764 Astrophysics of Galaxies +1509.02220 Phenomenology +1509.02408 +1509.02448 Cosmology and Nongalactic Astrophysics +1509.05006 Superconductivity +1509.05325 Dynamical Systems +1509.07939 +1509.08484 Logic +1510.00184 Optimization and Control +1510.01709 Materials Science +1510.01889 Mesoscale and Nanoscale Physics +1510.02089 +1510.02356 Populations and Evolution +1510.02733 +1510.04771 Information Theory +1510.05344 Systems and Control +1510.05422 Materials Science +1511.00766 Earth and Planetary Astrophysics +1511.01557 +1511.02131 Earth and Planetary Astrophysics +1511.02201 Optimization and Control +1511.02300 Computer Vision and Pattern Recognition +1511.02704 +1511.02713 Earth and Planetary Astrophysics +1511.04357 Earth and Planetary Astrophysics +1511.06912 Theory +1511.08793 Cosmology and Nongalactic Astrophysics +1512.00496 Biological Physics +1512.01174 Social and Information Networks +1512.01574 Materials Science +1512.02111 Chemical Physics +1512.02418 Probability +1512.02593 Fluid Dynamics +1512.02899 Phenomenology +1512.03332 Phenomenology +1512.03919 Mesoscale and Nanoscale Physics +1512.03936 Number Theory +1512.04733 Mesoscale and Nanoscale Physics +1512.05753 Phenomenology +1512.05845 +1512.06163 Probability +1512.07254 Theory +1512.07557 Theory +1601.01315 Solar and Stellar Astrophysics +1601.01840 Materials Science +1601.03141 Information Theory +1601.03766 Physics and Society +1602.00991 Learning +1602.01717 Analysis of PDEs +1602.02146 Group Theory +1602.02229 Strongly Correlated Electrons +1602.02839 Strongly Correlated Electrons +1602.03376 Theory +1602.04601 Machine Learning +1602.05415 Theory +1602.05445 Information Theory +1602.06762 Instrumentation and Detectors +1602.07414 Statistical Mechanics +1602.08643 Numerical Analysis +1603.00276 Plasma Physics +1603.00676 Space Physics +1603.00830 Dynamical Systems +1603.00929 Machine Learning +1603.00930 Neural and Evolutionary Computing +1603.02338 Materials Science +1603.02443 Machine Learning +1603.02490 +1603.02500 Category Theory +1603.02508 +1603.02677 Theory +1603.02692 Strongly Correlated Electrons +1603.02695 Learning +1603.02701 Information Theory +1603.02703 Astrophysics of Galaxies +1603.02706 +1603.02711 Combinatorics +1603.02712 Methodology +1603.02718 Social and Information Networks +1603.02721 Analysis of PDEs +1603.02723 Dynamical Systems +1603.02725 Functional Analysis +1603.02730 Commutative Algebra +1603.02731 Commutative Algebra +1603.02734 Information Theory +1603.02736 Machine Learning +1603.02737 Quantum Algebra +1603.02738 Artificial Intelligence +1603.02743 Machine Learning +1603.02745 Methodology +1603.02747 Optimization and Control +1603.02753 Algebraic Geometry +1603.02757 Statistics Theory +1603.02763 Learning +1603.02764 Systems and Control +1603.02765 Quantum Algebra +1603.02766 Computers and Society +1603.02767 Cryptography and Security +1603.02770 Geometric Topology +1603.02775 +1603.02776 Computation and Language +1603.02778 Representation Theory +1603.02779 Dynamical Systems +1603.02780 Information Theory +1603.02781 Soft Condensed Matter +1603.02782 Data Structures and Algorithms +1603.02783 Dynamical Systems +1603.02789 Number Theory +1603.02798 Neurons and Cognition +1603.02799 Materials Science +1603.02802 Methodology +1603.02803 Differential Geometry +1603.02805 Theory +1603.02806 Machine Learning +1603.02808 Differential Geometry +1603.02810 Analysis of PDEs +1603.02813 Computers and Society +1603.02819 Superconductivity +1603.02822 Analysis of PDEs +1603.02823 Analysis of PDEs +1603.02825 Numerical Analysis +1603.02827 Solar and Stellar Astrophysics +1603.02830 Other Condensed Matter +1603.02832 +1603.02836 Learning +1603.02843 Analysis of PDEs +1603.02845 Computation and Language +1603.02846 Group Theory +1603.02848 +1603.02849 Fluid Dynamics +1603.02853 Computational Geometry +1603.02856 Functional Analysis +1603.02858 Algebraic Geometry +1603.02859 Physics and Society +1603.02861 Solar and Stellar Astrophysics +1603.02863 Information Theory +1603.02864 Symplectic Geometry +1603.02865 Phenomenology +1603.02867 Mathematical Finance +1603.02868 Instrumentation and Methods for Astrophysics +1603.02869 Human-Computer Interaction +1603.02874 Statistical Finance +1603.02880 Materials Science +1603.02881 Mesoscale and Nanoscale Physics +1603.02887 Complex Variables +1603.02888 Soft Condensed Matter +1603.02890 Number Theory +1603.02892 Superconductivity +1603.02897 Solar and Stellar Astrophysics +1603.02900 Computers and Society +1603.02901 Combinatorics +1603.02902 Computational Finance +1603.02906 Numerical Analysis +1603.02907 General Physics +1603.02911 Number Theory +1603.02914 Number Theory +1603.02916 Neurons and Cognition +1603.02922 Logic in Computer Science +1603.02923 Spectral Theory +1603.02926 Differential Geometry +1603.02928 Formal Languages and Automata Theory +1603.02930 Plasma Physics +1603.02932 Differential Geometry +1603.02936 Mesoscale and Nanoscale Physics +1603.02937 Differential Geometry +1603.02938 Metric Geometry +1603.02941 Mesoscale and Nanoscale Physics +1603.02942 Logic +1603.02944 Physics Education +1603.02945 Physics Education +1603.02946 Physics Education +1603.02947 Physics Education +1603.02948 Physics Education +1603.02949 Physics Education +1603.02950 Physics Education +1603.02952 Number Theory +1603.02954 Number Theory +1603.02955 Distributed, Parallel, and Cluster Computing +1603.02958 Materials Science +1603.02959 Probability +1603.02961 Analysis of PDEs +1603.02963 Instrumentation and Methods for Astrophysics +1603.02964 Computers and Society +1603.02965 Classical Analysis and ODEs +1603.02966 Formal Languages and Automata Theory +1603.02971 Computer Science and Game Theory +1603.02972 Optics +1603.02975 Differential Geometry +1603.02977 Machine Learning +1603.02981 Distributed, Parallel, and Cluster Computing +1603.02983 Plasma Physics +1603.02988 Analysis of PDEs +1603.02989 Differential Geometry +1603.02994 Symplectic Geometry +1603.02999 History and Philosophy of Physics +1603.03001 Statistics Theory +1603.03002 Group Theory +1603.03007 Robotics +1603.03008 Probability +1603.03009 Biological Physics +1603.03012 Computational Finance +1603.03014 Information Retrieval +1603.03016 Geometric Topology +1603.03018 Dynamical Systems +1603.03019 Data Structures and Algorithms +1603.03023 Solar and Stellar Astrophysics +1603.03024 Data Structures and Algorithms +1603.03028 Methodology +hep-ph/0703309 Phenomenology +hep-th/0309180 Theory +0705.0114 +0706.2286 +0710.5103 +0802.1173 Dynamical Systems +0807.1480 +0903.4746 High Energy Astrophysical Phenomena +0904.1683 Commutative Algebra +0907.2065 Biological Physics +1103.0348 High Energy Astrophysical Phenomena +1106.0534 Analysis of PDEs +1108.0530 Biological Physics +1203.1827 Strongly Correlated Electrons +1203.4553 Differential Geometry +1207.6604 Quantum Algebra +1208.2881 Superconductivity +1210.1000 +1210.7894 Number Theory +1212.4817 Symplectic Geometry +1306.5941 Soft Condensed Matter +1308.4644 Commutative Algebra +1309.0492 Group Theory +1309.1068 Symplectic Geometry +1309.2719 Superconductivity +1310.2243 Astrophysics of Galaxies +1311.0431 Applications +1312.3167 Algebraic Geometry +1312.4089 Soft Condensed Matter +1401.0803 Applications +1401.5702 Algebraic Geometry +1401.7179 Number Theory +1402.1231 Differential Geometry +1402.6553 Probability +1403.5514 Superconductivity +1404.0761 Phenomenology +1404.6902 Statistical Mechanics +1405.1219 Differential Geometry +1405.1645 +1405.2946 Dynamical Systems +1405.5465 Representation Theory +1406.1366 Number Theory +1406.3662 Probability +1407.1093 Number Theory +1407.5295 Combinatorics +1407.5698 Classical Analysis and ODEs +1407.8328 Operator Algebras +1408.2084 +1408.2795 +1408.4193 Probability +1409.0176 Group Theory +1409.4759 General Physics +1409.7353 Number Theory +1410.2249 Astrophysics of Galaxies +1410.2257 Theory +1410.2351 Astrophysics of Galaxies +1410.2872 Representation Theory +1410.4605 Superconductivity +1410.4853 Biological Physics +1410.5554 Probability +1410.6389 Strongly Correlated Electrons +1410.6845 Algebraic Geometry +1410.6960 Artificial Intelligence +1410.7272 +1410.7541 Numerical Analysis +1411.0728 Learning +1411.3554 Theory +1411.5434 High Energy Astrophysical Phenomena +1411.6813 Group Theory +1411.7893 +1412.1875 Biological Physics +1412.3309 Algebraic Topology +1412.3754 Differential Geometry +1501.00622 Optimization and Control +1501.02557 Atomic Physics +1501.04522 Logic +1501.05160 Probability +1501.05291 Phenomenology +1501.07355 Superconductivity +1501.07390 Operator Algebras +1501.07753 +1502.00403 Quantum Algebra +1502.00941 +1502.01008 Atmospheric and Oceanic Physics +1502.01163 Dynamical Systems +1502.01232 +1502.01859 +1502.02480 +1502.03030 +1502.04787 Exactly Solvable and Integrable Systems +1502.06535 Dynamical Systems +1503.01810 Quantum Gases +1503.02553 Numerical Analysis +1503.02690 Soft Condensed Matter +1503.02995 Experiment +1503.03263 Operator Algebras +1503.03412 Mesoscale and Nanoscale Physics +1503.04305 Dynamical Systems +1503.04523 Atomic Physics +1503.06327 Rings and Algebras +1503.07061 +1503.07818 Statistical Mechanics +1503.08919 Quantum Gases +1503.09102 High Energy Astrophysical Phenomena +1504.01412 Plasma Physics +1504.01498 Differential Geometry +1504.02379 Plasma Physics +1504.02884 Soft Condensed Matter +1504.02923 Information Theory +1504.04055 Theory +1504.04220 +1504.04729 Differential Geometry +1504.04745 Soft Condensed Matter +1504.04793 +1504.05668 +1504.05881 +1504.06261 Astrophysics of Galaxies +1504.06452 +1504.06799 Phenomenology +1504.07185 Strongly Correlated Electrons +1504.07187 Phenomenology +1504.07191 Chemical Physics +1504.07326 Numerical Analysis +1504.07799 Theory +1504.08336 +1505.00034 Cosmology and Nongalactic Astrophysics +1505.01233 Phenomenology +1505.02032 Analysis of PDEs +1505.02303 Analysis of PDEs +1505.02654 Atomic Physics +1505.03749 Analysis of PDEs +1505.04082 Phenomenology +1505.04684 +1505.04799 Solar and Stellar Astrophysics +1505.04940 High Energy Astrophysical Phenomena +1505.05009 Operator Algebras +1505.06687 Quantum Gases +1505.06720 Phenomenology +1505.07172 Soft Condensed Matter +1505.07316 Analysis of PDEs +1505.07451 Strongly Correlated Electrons +1505.07767 Instrumentation and Detectors +1506.00207 Differential Geometry +1506.00519 +1506.00854 Astrophysics of Galaxies +1506.01469 Cosmology and Nongalactic Astrophysics +1506.01595 +1506.01898 Spectral Theory +1506.02179 +1506.02643 Popular Physics +1506.03690 +1506.04545 Strongly Correlated Electrons +1506.04772 Phenomenology +1506.05800 Astrophysics of Galaxies +1506.06248 Analysis of PDEs +1506.07138 Materials Science +1506.07792 Biological Physics +1506.08135 Mesoscale and Nanoscale Physics +1506.08403 Optics +1506.08413 Quantum Gases +1506.08462 Phenomenology +1506.08673 Instrumentation and Detectors +1506.08936 Mesoscale and Nanoscale Physics +1506.09012 Materials Science +1507.00456 Representation Theory +1507.00645 +1507.00795 Analysis of PDEs +1507.01219 Operator Algebras +1507.01250 Phenomenology +1507.01451 Artificial Intelligence +1507.02557 Numerical Analysis +1507.03079 +1507.03199 Numerical Analysis +1507.03312 Geometric Topology +1507.03964 Differential Geometry +1507.03990 Phenomenology +1507.04386 Geometric Topology +1507.04896 Materials Science +1507.05262 Group Theory +1507.05326 Cosmology and Nongalactic Astrophysics +1507.05659 Mesoscale and Nanoscale Physics +1507.05845 Instrumentation and Detectors +1507.06309 Quantum Gases +1507.06935 Analysis of PDEs +1507.07007 Mesoscale and Nanoscale Physics +1507.07129 Experiment +1507.07654 Strongly Correlated Electrons +1507.07796 High Energy Astrophysical Phenomena +1507.08062 Molecular Networks +1507.08686 Disordered Systems and Neural Networks +1507.08817 Neurons and Cognition +1507.08828 Theory +1507.08962 Statistical Mechanics +1508.00007 Astrophysics of Galaxies +1508.00149 Analysis of PDEs +1508.00234 Theory +1508.00807 Mesoscale and Nanoscale Physics +1508.00876 Computational Physics +1508.01417 +1508.01528 Soft Condensed Matter +1508.01801 Phenomenology +1508.02573 +1508.02822 Strongly Correlated Electrons +1508.02875 Complex Variables +1508.02894 Strongly Correlated Electrons +1508.03263 Programming Languages +1508.03486 Phenomenology +1508.03561 Mesoscale and Nanoscale Physics +1508.03683 +1508.03738 Superconductivity +1508.04000 Analysis of PDEs +1508.04222 +1508.04501 +1508.05060 Phenomenology +1508.05095 Phenomenology +1508.05264 Soft Condensed Matter +1508.05482 Quantum Gases +1508.05590 Disordered Systems and Neural Networks +1508.05664 Chaotic Dynamics +1508.05755 Exactly Solvable and Integrable Systems +1508.05875 +1508.05912 Instrumentation and Detectors +1508.05947 Quantum Gases +1508.05961 High Energy Astrophysical Phenomena +1508.06160 +1508.06297 Mesoscale and Nanoscale Physics +1508.06416 Phenomenology +1508.07102 Analysis of PDEs +1508.07156 Mesoscale and Nanoscale Physics +1508.07242 Materials Science +1508.07274 Differential Geometry +1508.07359 Phenomenology +1508.07441 Computational Physics +1508.07498 Dynamical Systems +1508.07707 +1508.07853 Phenomenology +1508.07860 +1508.07947 Mesoscale and Nanoscale Physics +1509.00059 Dynamical Systems +1509.00802 Theory +1509.01048 +1509.01519 Commutative Algebra +1509.01616 Probability +1509.02042 Probability +1509.02044 Populations and Evolution +1509.02097 Representation Theory +1509.02248 +1509.02336 Instrumentation and Detectors +1509.02538 High Energy Astrophysical Phenomena +1509.02791 Superconductivity +1509.02905 Phenomenology +1509.02925 +1509.03266 +1509.03359 Algebraic Topology +1509.03418 Strongly Correlated Electrons +1509.03519 Superconductivity +1509.03923 Mesoscale and Nanoscale Physics +1509.04195 Experiment +1509.04226 +1509.04231 +1509.04253 +1509.04692 Soft Condensed Matter +1509.04813 Phenomenology +1509.05254 Sound +1509.05332 Numerical Analysis +1509.05368 Superconductivity +1509.05557 +1509.05608 +1509.05708 Instrumentation and Detectors +1509.05711 Materials Science +1509.06219 Phenomenology +1509.06270 Astrophysics of Galaxies +1509.06952 +1509.06973 Theory +1509.07429 +1509.07506 Cosmology and Nongalactic Astrophysics +1509.07542 Computational Physics +1509.07592 Fluid Dynamics +1509.07781 +1509.07953 Portfolio Management +1509.08005 Mesoscale and Nanoscale Physics +1509.08151 +1509.08459 Astrophysics of Galaxies +1509.08617 Number Theory +1509.08719 Quantum Algebra +1509.08952 +1509.09025 +1509.09074 Mesoscale and Nanoscale Physics +1509.09094 Theory +1509.09144 +1509.09181 +1509.09184 Optics +1509.09284 Data Analysis, Statistics and Probability +1510.00153 Phenomenology +1510.00444 +1510.00451 Numerical Analysis +1510.00752 +1510.00762 Mesoscale and Nanoscale Physics +1510.00780 Plasma Physics +1510.00854 Phenomenology +1510.00929 Phenomenology +1510.00962 Soft Condensed Matter +1510.01062 +1510.01377 +1510.01383 Mesoscale and Nanoscale Physics +1510.01488 +1510.01660 +1510.01803 Phenomenology +1510.02327 +1510.02336 Mesoscale and Nanoscale Physics +1510.02365 Instrumentation and Detectors +1510.02465 Plasma Physics +1510.02466 Statistical Mechanics +1510.02571 Algebraic Topology +1510.02586 Materials Science +1510.02691 Analysis of PDEs +1510.02748 Dynamical Systems +1510.02804 Theory +1510.03204 +1510.03408 Classical Analysis and ODEs +1510.03414 Probability +1510.03475 Quantum Algebra +1510.03536 Space Physics +1510.03624 Strongly Correlated Electrons +1510.03962 Cosmology and Nongalactic Astrophysics +1510.04019 Mesoscale and Nanoscale Physics +1510.04304 Space Physics +1510.04345 Data Analysis, Statistics and Probability +1510.04506 +1510.04610 +1510.04665 +1510.04847 Statistical Mechanics +1510.05087 Mesoscale and Nanoscale Physics +1510.05089 Numerical Analysis +1510.05219 +1510.05239 Methodology +1510.05246 Combinatorics +1510.05254 Statistical Mechanics +1510.05595 Materials Science +1510.05629 High Energy Astrophysical Phenomena +1510.05640 Chaotic Dynamics +1510.05796 Phenomenology +1510.06049 +1510.06330 +1510.06515 +1510.06529 Mesoscale and Nanoscale Physics +1510.06933 Chaotic Dynamics +1510.07101 Materials Science +1510.07110 Plasma Physics +1510.07157 Theory +1510.07173 Analysis of PDEs +1510.07201 Fluid Dynamics +1510.07396 Phenomenology +1510.07413 +1510.07445 +1510.07457 Plasma Physics +1510.07750 Materials Science +1510.07940 Soft Condensed Matter +1510.07950 +1510.08253 +1510.08278 +1510.08523 Cosmology and Nongalactic Astrophysics +1510.08686 Phenomenology +1510.08730 +1510.08741 Plasma Physics +1510.09097 Instrumentation and Detectors +1511.00142 +1511.00173 +1511.00252 +1511.00358 +1511.00450 Phenomenology +1511.00498 Phenomenology +1511.00608 +1511.00609 +1511.00702 +1511.00712 Statistical Mechanics +1511.00870 Phenomenology +1511.01070 Theory +1511.01082 Instrumentation and Methods for Astrophysics +1511.01185 Spectral Theory +1511.01187 Phenomenology +1511.01227 Dynamical Systems +1511.01241 Analysis of PDEs +1511.01329 Phenomenology +1511.01551 +1511.01558 Discrete Mathematics +1511.01583 Materials Science +1511.01640 Artificial Intelligence +1511.01795 Social and Information Networks +1511.01816 Optimization and Control +1511.01878 Pattern Formation and Solitons +1511.01992 +1511.02015 +1511.02028 Theory +1511.02271 Phenomenology +1511.02450 Accelerator Physics +1511.02719 High Energy Astrophysical Phenomena +1511.03201 Statistical Mechanics +1511.03203 Phenomenology +1511.03231 Plasma Physics +1511.03300 Biological Physics +1511.03365 Strongly Correlated Electrons +1511.03544 Exactly Solvable and Integrable Systems +1511.03614 Phenomenology +1511.03618 +1511.03795 Soft Condensed Matter +1511.03831 Phenomenology +1511.03838 Phenomenology +1511.03874 +1511.03936 +1511.03989 +1511.04015 Phenomenology +1511.04213 Materials Science +1511.04237 Mesoscale and Nanoscale Physics +1511.04249 Cell Behavior +1511.04268 Physics and Society +1511.04421 Phenomenology +1511.04462 Materials Science +1511.04473 Phenomenology +1511.04496 +1511.04675 Quantum Gases +1511.04826 +1511.04882 Instrumentation and Detectors +1511.04959 Lattice +1511.05316 +1511.05405 Phenomenology +1511.05515 Mesoscale and Nanoscale Physics +1511.05562 Phenomenology +1511.05679 Phenomenology +1511.05852 Geophysics +1511.06203 +1511.06231 Mesoscale and Nanoscale Physics +1511.06305 Earth and Planetary Astrophysics +1511.06345 Instrumentation and Detectors +1511.06496 Materials Science +1511.06569 Combinatorics +1511.06637 Differential Geometry +1511.06826 Phenomenology +1511.07034 Theory +1511.07219 +1511.07569 Social and Information Networks +1511.07646 Mesoscale and Nanoscale Physics +1511.07661 Mesoscale and Nanoscale Physics +1511.07782 Atomic Physics +1511.07793 Mesoscale and Nanoscale Physics +1511.07818 Superconductivity +1511.07999 Quantum Gases +1511.08222 Phenomenology +1511.08334 Computer Science and Game Theory +1511.08590 Phenomenology +1511.08650 High Energy Astrophysical Phenomena +1511.08757 +1511.08761 Quantum Algebra +1511.08778 Algebraic Geometry +1511.08882 Quantum Gases +1511.08910 Data Analysis, Statistics and Probability +1511.08932 Phenomenology +1511.08988 Mesoscale and Nanoscale Physics +1511.09015 High Energy Astrophysical Phenomena +1511.09133 Materials Science +1511.09146 Lattice +1511.09219 Phenomenology +1511.09269 Mesoscale and Nanoscale Physics +1511.09331 Fluid Dynamics +1511.09461 Phenomenology +1512.00125 Superconductivity +1512.00211 Atomic and Molecular Clusters +1512.00230 +1512.00481 Data Structures and Algorithms +1512.00532 Mesoscale and Nanoscale Physics +1512.00548 Experiment +1512.00603 Atomic Physics +1512.00674 +1512.00928 Experiment +1512.01066 Materials Science +1512.01096 General Mathematics +1512.01134 Soft Condensed Matter +1512.01234 Mesoscale and Nanoscale Physics +1512.01328 Phenomenology +1512.01336 Superconductivity +1512.01640 Theory +1512.01682 +1512.01822 Mesoscale and Nanoscale Physics +1512.02092 Statistical Mechanics +1512.02099 Differential Geometry +1512.02104 Materials Science +1512.02112 Dynamical Systems +1512.02190 Phenomenology +1512.02193 Spectral Theory +1512.02313 Strongly Correlated Electrons +1512.02350 Atomic Physics +1512.02358 Chaotic Dynamics +1512.02494 Experiment +1512.02548 Computational Physics +1512.02639 +1512.02762 +1512.02770 +1512.02771 Lattice +1512.02959 Statistical Mechanics +1512.03046 +1512.03089 Physics and Society +1512.03161 Strongly Correlated Electrons +1512.03241 High Energy Astrophysical Phenomena +1512.03281 Experiment +1512.03416 +1512.03599 Experiment +1512.03612 Space Physics +1512.03676 Statistical Mechanics +1512.03763 Fluid Dynamics +1512.03767 Classical Analysis and ODEs +1512.03782 Phenomenology +1512.03799 Theory +1512.03814 Cosmology and Nongalactic Astrophysics +1512.03833 Cosmology and Nongalactic Astrophysics +1512.03890 Materials Science +1512.03905 Phenomenology +1512.03910 Statistical Mechanics +1512.04059 Mesoscale and Nanoscale Physics +1512.04151 Experiment +1512.04239 Instrumentation and Methods for Astrophysics +1512.04249 Experiment +1512.04264 Cosmology and Nongalactic Astrophysics +1512.04317 Cosmology and Nongalactic Astrophysics +1512.04322 Astrophysics of Galaxies +1512.04359 Cosmology and Nongalactic Astrophysics +1512.04414 Phenomenology +1512.04447 Solar and Stellar Astrophysics +1512.04511 High Energy Astrophysical Phenomena +1512.04547 Strongly Correlated Electrons +1512.04645 Instrumentation and Methods for Astrophysics +1512.04649 Phenomenology +1512.04669 Physics and Society +1512.04708 Phenomenology +1512.04721 +1512.04758 Phenomenology +1512.04853 Phenomenology +1512.04863 Analysis of PDEs +1512.04896 Phenomenology +1512.05029 Mesoscale and Nanoscale Physics +1512.05130 Phenomenology +1512.05145 Lattice +1512.05174 Plasma Physics +1512.05409 Instrumentation and Detectors +1512.05432 Probability +1512.05496 Experiment +1512.05536 +1512.05545 +1512.05564 Phenomenology +1512.05723 Phenomenology +1512.05916 Chaotic Dynamics +1512.06162 Instrumentation and Methods for Astrophysics +1512.06200 Strongly Correlated Electrons +1512.06225 Number Theory +1512.06254 Phenomenology +1512.06296 Populations and Evolution +1512.06302 Superconductivity +1512.06394 Quantum Gases +1512.06435 Optics +1512.06555 +1512.06575 Operator Algebras +1512.06599 +1512.06638 Phenomenology +1512.06719 Strongly Correlated Electrons +1512.06787 Phenomenology +1512.06856 Phenomenology +1512.06965 Instrumentation and Detectors +1512.07234 Statistical Mechanics +1512.07260 Phenomenology +1512.07268 Phenomenology +1512.07280 Phenomenology +1512.07303 Chaotic Dynamics +1512.07325 +1512.07406 Quantum Gases +1512.07427 +1512.07464 Statistical Mechanics +1512.07510 Mesoscale and Nanoscale Physics +1512.07601 Materials Science +1512.07814 Number Theory +1512.07837 Phenomenology +1512.07895 Phenomenology +1512.07967 +1512.07987 Phenomenology +1512.08074 Biomolecules +1512.08115 +1512.08121 Superconductivity +1512.08127 Quantum Gases +1512.08274 +1512.08328 Molecular Networks +1512.08355 High Energy Astrophysical Phenomena +1512.08380 Instrumentation and Detectors +1512.08430 +1512.08481 Instrumentation and Detectors +1512.08522 Theory +1512.08703 Superconductivity +1512.08724 Physics and Society +1512.08752 Phenomenology +1512.08890 Materials Science +1512.09018 Phenomenology +1512.09104 Physics and Society +1512.09122 Statistical Mechanics +1512.09225 Theory +1512.09237 Instrumentation and Detectors +1512.09279 +1512.09316 Superconductivity +1512.09334 Quantum Gases +1512.09351 Instrumentation and Detectors +1601.00171 Theory +1601.00223 Materials Science +1601.00244 Soft Condensed Matter +1601.00451 Atomic Physics +1601.00520 Astrophysics of Galaxies +1601.00734 +1601.00793 Strongly Correlated Electrons +1601.00817 Cosmology and Nongalactic Astrophysics +1601.00881 Information Theory +1601.00910 Fluid Dynamics +1601.01072 +1601.01223 Algebraic Geometry +1601.01327 +1601.01445 Instrumentation and Detectors +1601.01514 Materials Science +1601.01594 Lattice +1601.01716 +1601.01732 Accelerator Physics +1601.01819 Statistical Mechanics +1601.01846 Earth and Planetary Astrophysics +1601.01859 +1601.01903 Instrumentation and Detectors +1601.01939 +1601.02083 Exactly Solvable and Integrable Systems +1601.02097 +1601.02141 Soft Condensed Matter +1601.02369 Phenomenology +1601.02490 Phenomenology +1601.02503 Mesoscale and Nanoscale Physics +1601.02700 Materials Science +1601.02775 Applications +1601.02782 Superconductivity +1601.02832 High Energy Astrophysical Phenomena +1601.02853 +1601.02858 Materials Science +1601.03055 Computer Vision and Pattern Recognition +1601.03064 Chemical Physics +1601.03113 Accelerator Physics +1601.03232 Strongly Correlated Electrons +1601.03352 +1601.03394 +1601.03397 Theory +1601.03421 Space Physics +1601.03496 Instrumentation and Detectors +1601.03559 Molecular Networks +1601.03566 Phenomenology +1601.03641 Statistical Mechanics +1601.03779 Instrumentation and Detectors +1601.03888 Chemical Physics +1601.03970 Instrumentation and Detectors +1601.03974 Theory +1601.03986 Optics +1601.04142 Phenomenology +1601.04284 Phenomenology +1601.04322 High Energy Astrophysical Phenomena +1601.04405 Methodology +1601.04505 Superconductivity +1601.04544 Other Condensed Matter +1601.04597 Theory +1601.04693 High Energy Astrophysical Phenomena +1601.04804 Superconductivity +1601.04847 Accelerator Physics +1601.04851 Statistical Mechanics +1601.04867 High Energy Astrophysical Phenomena +1601.04989 +1601.04993 +1601.05004 Phenomenology +1601.05018 High Energy Astrophysical Phenomena +1601.05049 Atomic Physics +1601.05085 Astrophysics of Galaxies +1601.05104 Digital Libraries +1601.05233 Experiment +1601.05252 Algebraic Geometry +1601.05253 +1601.05307 Instrumentation and Detectors +1601.05314 Medical Physics +1601.05332 Materials Science +1601.05476 Mesoscale and Nanoscale Physics +1601.05578 +1601.05583 +1601.05598 +1601.05619 Optics +1601.05676 High Energy Astrophysical Phenomena +1601.05698 +1601.05935 Instrumentation and Detectors +1601.05979 Phenomenology +1601.06104 Rings and Algebras +1601.06165 Astrophysics of Galaxies +1601.06190 Phenomenology +1601.06250 +1601.06252 Statistical Mechanics +1601.06348 Solar and Stellar Astrophysics +1601.06582 Soft Condensed Matter +1601.06597 Materials Science +1601.06699 Instrumentation and Detectors +1601.06734 +1601.06802 High Energy Astrophysical Phenomena +1601.06863 Soft Condensed Matter +1601.06866 Earth and Planetary Astrophysics +1601.06881 Atomic Physics +1601.06976 Fluid Dynamics +1601.06981 Phenomenology +1601.07048 Instrumentation and Detectors +1601.07263 Optimization and Control +1601.07292 Mesoscale and Nanoscale Physics +1601.07384 Numerical Analysis +1601.07494 Materials Science +1601.07566 Statistical Mechanics +1601.07777 Phenomenology +1601.07831 Materials Science +1601.07926 +1601.07938 Materials Science +1601.07960 Fluid Dynamics +1601.07981 Mesoscale and Nanoscale Physics +1601.08007 Theory +1601.08204 +1601.08234 +1602.00227 Phenomenology +1602.00277 Materials Science +1602.00315 Dynamical Systems +1602.00373 Mesoscale and Nanoscale Physics +1602.00394 Numerical Analysis +1602.00445 Experiment +1602.00604 Soft Condensed Matter +1602.00671 Phenomenology +1602.00790 Quantum Gases +1602.00864 Phenomenology +1602.00876 Statistical Mechanics +1602.00898 Instrumentation and Detectors +1602.01237 Computer Vision and Pattern Recognition +1602.01238 Instrumentation and Methods for Astrophysics +1602.01310 Statistical Mechanics +1602.01402 Phenomenology +1602.01420 +1602.01499 Phenomenology +1602.01534 Mesoscale and Nanoscale Physics +1602.01667 Phenomenology +1602.01695 Soft Condensed Matter +1602.01766 Computational Physics +1602.01794 Optics +1602.01808 Physics and Society +1602.01827 Computer Vision and Pattern Recognition +1602.01839 Cosmology and Nongalactic Astrophysics +1602.01905 Statistical Mechanics +1602.02195 Rings and Algebras +1602.02254 Theory +1602.02462 Instrumentation and Detectors +1602.02469 +1602.02494 Quantum Gases +1602.02532 +1602.02578 Lattice +1602.02621 Instrumentation and Methods for Astrophysics +1602.02689 Accelerator Physics +1602.02766 Phenomenology +1602.02813 +1602.03003 Phenomenology +1602.03065 Statistical Mechanics +1602.03204 Earth and Planetary Astrophysics +1602.03215 +1602.03268 Materials Science +1602.03317 Optics +1602.03460 +1602.03477 Statistical Mechanics +1602.03491 +1602.03737 Phenomenology +1602.03792 Phenomenology +1602.03800 +1602.03844 +1602.03863 +1602.03935 Computer Vision and Pattern Recognition +1602.03991 Experiment +1602.04016 +1602.04110 Physics and Society +1602.04125 Logic +1602.04320 +1602.04470 Biomolecules +1602.04624 Statistical Mechanics +1602.04641 Fluid Dynamics +1602.04710 High Energy Astrophysical Phenomena +1602.04771 +1602.04958 Optics +1602.05075 Phenomenology +1602.05283 Theory +1602.05366 Quantum Gases +1602.05385 Statistical Finance +1602.05490 Materials Science +1602.05528 Statistical Mechanics +1602.05827 +1602.05902 Cosmology and Nongalactic Astrophysics +1602.06047 +1602.06204 Materials Science +1602.06350 Solar and Stellar Astrophysics +1602.06503 Phenomenology +1602.06545 Phenomenology +1602.06575 +1602.06640 +1602.06679 +1602.06689 Statistical Mechanics +1602.06846 Instrumentation and Detectors +1602.07005 Strongly Correlated Electrons +1602.07154 Data Structures and Algorithms +1602.07288 +1602.07333 +1602.07410 Solar and Stellar Astrophysics +1602.07623 Performance +1602.07697 Phenomenology +1602.07864 Phenomenology +1602.07883 Soft Condensed Matter +1602.07914 Cosmology and Nongalactic Astrophysics +1602.07972 Solar and Stellar Astrophysics +1602.07981 +1602.08224 High Energy Astrophysical Phenomena +1602.08322 Materials Science +1602.08333 General Physics +1602.08398 +1602.08478 Solar and Stellar Astrophysics +1602.08493 Theory +1602.08569 Atomic Physics +1602.08589 Theory +1602.08691 Disordered Systems and Neural Networks +1602.08695 Materials Science +1602.08722 High Energy Astrophysical Phenomena +1602.08764 Instrumentation and Methods for Astrophysics +1602.08795 Instrumentation and Methods for Astrophysics +1603.00152 +1603.00261 Chemical Physics +1603.00265 Disordered Systems and Neural Networks +1603.00425 Superconductivity +1603.00434 Quantum Gases +1603.00478 Lattice +1603.00496 Optics +1603.00561 Chemical Physics +1603.00710 Soft Condensed Matter +1603.00843 Strongly Correlated Electrons +1603.00901 Strongly Correlated Electrons +1603.01057 Statistical Mechanics +1603.01089 Chaotic Dynamics +1603.01153 Solar and Stellar Astrophysics +1603.01188 Strongly Correlated Electrons +1603.01272 Earth and Planetary Astrophysics +1603.01307 Materials Science +1603.01418 High Energy Astrophysical Phenomena +1603.01456 Pattern Formation and Solitons +1603.01567 Instrumentation and Detectors +1603.01613 Earth and Planetary Astrophysics +1603.01652 Instrumentation and Detectors +1603.01658 Chemical Physics +1603.01667 Plasma Physics +1603.01805 +1603.01834 Mesoscale and Nanoscale Physics +1603.01918 High Energy Astrophysical Phenomena +1603.02001 Phenomenology +1603.02089 +1603.02159 Theory +1603.02196 Earth and Planetary Astrophysics +1603.02249 Phenomenology +1603.02436 Soft Condensed Matter +1603.02462 Phenomenology +1603.02694 Strongly Correlated Electrons +1603.02800 Phenomenology +1603.02831 Materials Science +1603.02873 Materials Science +1603.03186 Soft Condensed Matter +1603.03279 Plasma Physics +1603.03285 Chemical Physics +1603.03338 Theory +1603.03420 Optics +1603.03441 Astrophysics of Galaxies +1603.03476 Mesoscale and Nanoscale Physics +1603.03636 Mesoscale and Nanoscale Physics +1603.03672 +1603.03730 Phenomenology +1603.03859 Solar and Stellar Astrophysics +1603.03920 Strongly Correlated Electrons +1603.04038 Materials Science +1603.04062 Chemical Physics +1603.04075 +1603.04089 Atomic Physics +1603.04102 Astrophysics of Galaxies +1603.04120 High Energy Astrophysical Phenomena +1603.04232 Plasma Physics +1603.04479 Phenomenology +1603.04582 Computational Geometry +1603.04616 Solar and Stellar Astrophysics +1603.04631 Phenomenology +1603.04646 +1603.04801 Theory +1603.04960 +1603.04995 High Energy Astrophysical Phenomena +1603.05252 Phenomenology +1603.05268 Optics +1603.05304 Phenomenology +1603.05454 +1603.05455 Soft Condensed Matter +1603.05478 Materials Science +1603.05555 High Energy Astrophysical Phenomena +1603.05564 Soft Condensed Matter +1603.05712 Earth and Planetary Astrophysics +1603.05820 +1603.05832 High Energy Astrophysical Phenomena +1603.05852 Phenomenology +1603.06054 Superconductivity +1603.06147 Computation and Language +1603.06209 Statistical Mechanics +1603.06242 Phenomenology +1603.06268 Earth and Planetary Astrophysics +1603.06407 Economics +1603.06492 +1603.06588 Disordered Systems and Neural Networks +1603.06662 Mesoscale and Nanoscale Physics +1603.06690 High Energy Astrophysical Phenomena +1603.06720 Phenomenology +1603.06794 Plasma Physics +1603.06815 Physics and Society +1603.06841 Phenomenology +1603.06973 High Energy Astrophysical Phenomena +1603.06975 Computational Physics +1603.07101 Theory +1603.07561 +1603.07665 Strongly Correlated Electrons +1603.07784 Mesoscale and Nanoscale Physics +1603.07906 Algebraic Topology +1603.07908 Phenomenology +1603.08040 Solar and Stellar Astrophysics +1603.08277 Fluid Dynamics +1603.08302 +1603.08325 Exactly Solvable and Integrable Systems +1603.08353 Solar and Stellar Astrophysics +1603.08356 Mesoscale and Nanoscale Physics +1603.08466 Superconductivity +1603.08484 Instrumentation and Methods for Astrophysics +1603.08521 Astrophysics of Galaxies +1603.08523 Instrumentation and Methods for Astrophysics +1603.08672 Solar and Stellar Astrophysics +1603.08696 Phenomenology +1603.08725 Atomic Physics +1603.08803 Chaotic Dynamics +1603.08941 Astrophysics of Galaxies +1603.09161 Solar and Stellar Astrophysics +1603.09172 Phenomenology +1603.09175 +1603.09177 Astrophysics of Galaxies +1603.09307 Solar and Stellar Astrophysics +1603.09347 Phenomenology +1603.09353 +1603.09393 Optics +1603.09467 Theory +1603.09544 Instrumentation and Detectors +1603.09554 Lattice +1603.09681 Strongly Correlated Electrons +1604.00021 Mesoscale and Nanoscale Physics +1604.00034 Astrophysics of Galaxies +1604.00244 Superconductivity +1604.00249 Mesoscale and Nanoscale Physics +1604.00744 Phenomenology +1604.00778 High Energy Astrophysical Phenomena +1604.00807 Fluid Dynamics +1604.00826 Analysis of PDEs +1604.00859 Earth and Planetary Astrophysics +1604.01003 Theory +1604.01085 Strongly Correlated Electrons +1604.01114 Strongly Correlated Electrons +1604.01137 +1604.01193 Phenomenology +1604.01208 Astrophysics of Galaxies +1604.01245 Phenomenology +1604.01291 Earth and Planetary Astrophysics +1604.01394 +1604.01407 Astrophysics of Galaxies +1604.01546 Solar and Stellar Astrophysics +1604.01572 Instrumentation and Detectors +1604.01776 Phenomenology +1604.02045 Disordered Systems and Neural Networks +1604.02055 Solar and Stellar Astrophysics +1604.02095 Solar and Stellar Astrophysics +1604.02191 Phenomenology +1604.02226 Strongly Correlated Electrons +1604.02301 Biological Physics +1604.02338 Astrophysics of Galaxies +1604.02353 Astrophysics of Galaxies +1604.02373 Data Analysis, Statistics and Probability +1604.02379 +1604.02416 Artificial Intelligence +1604.02472 High Energy Astrophysical Phenomena +1604.02591 Mesoscale and Nanoscale Physics +1604.02632 +1604.02664 Mesoscale and Nanoscale Physics +1604.02685 +1604.02868 Plasma Physics +1604.02869 Mesoscale and Nanoscale Physics +1604.02895 Astrophysics of Galaxies +1604.02972 High Energy Astrophysical Phenomena +1604.03116 Solar and Stellar Astrophysics +1604.03194 Materials Science +1604.03197 +1604.03206 Symplectic Geometry +1604.03369 Earth and Planetary Astrophysics +1604.03516 Cosmology and Nongalactic Astrophysics +1604.03561 Theory +1604.03576 Statistical Mechanics +1604.03730 Theory +1604.04034 Mesoscale and Nanoscale Physics +1604.04075 Atomic Physics +1604.04088 Soft Condensed Matter +1604.04151 Solar and Stellar Astrophysics +1604.04327 Computer Vision and Pattern Recognition +1604.04409 Optics +1604.04456 +1604.04538 Solar and Stellar Astrophysics +1604.04607 Solar and Stellar Astrophysics +1604.04714 Numerical Analysis +1604.04814 Solar and Stellar Astrophysics +1604.04925 +1604.04959 Solar and Stellar Astrophysics +1604.05030 Materials Science +1604.05168 +1604.05425 Differential Geometry +1604.05457 Atomic Physics +1604.05496 Solar and Stellar Astrophysics +1604.05618 Solar and Stellar Astrophysics +1604.05687 Solar and Stellar Astrophysics +1604.05735 Solar and Stellar Astrophysics +1604.05941 Solar and Stellar Astrophysics +1604.05961 History and Philosophy of Physics +1604.06021 Numerical Analysis +1604.06091 Earth and Planetary Astrophysics +1604.06100 Phenomenology +1604.06104 Astrophysics of Galaxies +1604.06189 High Energy Astrophysical Phenomena +1604.06251 Mesoscale and Nanoscale Physics +1604.06291 +1604.06391 Phenomenology +1604.06541 Materials Science +1604.06553 Information Theory +1604.06701 Solar and Stellar Astrophysics +1604.06797 Astrophysics of Galaxies +1604.07238 Materials Science +1604.07323 Earth and Planetary Astrophysics +1604.07361 Computer Vision and Pattern Recognition +1604.07424 Earth and Planetary Astrophysics +1604.07527 +1604.07536 Phenomenology +1604.07713 Computational Physics +1604.07742 +1604.07802 Materials Science +1604.07982 Solar and Stellar Astrophysics +1604.08011 Chemical Physics +1604.08035 Pattern Formation and Solitons +1604.08062 Analysis of PDEs +1604.08129 +1604.08278 Biomolecules +1604.08292 Instrumentation and Detectors +1604.08312 Numerical Analysis +1604.08328 Phenomenology +1604.08415 Astrophysics of Galaxies +1604.08422 Theory +1604.08520 Mesoscale and Nanoscale Physics +1604.08578 Cosmology and Nongalactic Astrophysics +1604.08816 Physics and Society +1604.08883 Fluid Dynamics +1604.08932 +1605.00099 Mesoscale and Nanoscale Physics +1605.00238 +1605.00340 Solar and Stellar Astrophysics +1605.00483 High Energy Astrophysical Phenomena +1605.00523 Phenomenology +1605.00653 Solar and Stellar Astrophysics +1605.00720 Theory +1605.00969 +1605.00984 Soft Condensed Matter +1605.01295 Other Condensed Matter +1605.01468 High Energy Astrophysical Phenomena +1605.01500 Soft Condensed Matter +1605.01567 Solar and Stellar Astrophysics +1605.01579 +1605.01609 Statistical Mechanics +1605.01707 High Energy Astrophysical Phenomena +1605.01724 High Energy Astrophysical Phenomena +1605.01786 Physics Education +1605.01809 Dynamical Systems +1605.02016 High Energy Astrophysical Phenomena +1605.02051 Cryptography and Security +1605.02104 Mesoscale and Nanoscale Physics +1605.02162 Number Theory +1605.02192 Probability +1605.02236 Theory +1605.02308 General Physics +1605.02316 +1605.02336 +1605.02359 Solar and Stellar Astrophysics +1605.02381 Strongly Correlated Electrons +1605.02399 +1605.02449 Strongly Correlated Electrons +1605.02459 Plasma Physics +1605.02529 Software Engineering +1605.02564 High Energy Astrophysical Phenomena +1605.02565 General Physics +1605.02695 Superconductivity +1605.02699 Computer Vision and Pattern Recognition +1605.02744 Earth and Planetary Astrophysics +1605.02872 Astrophysics of Galaxies +1605.02939 +1605.02947 Physics and Society +1605.02957 Solar and Stellar Astrophysics +1605.03011 Soft Condensed Matter +1605.03049 Solar and Stellar Astrophysics +1605.03073 High Energy Astrophysical Phenomena +1605.03287 +1605.03336 Solar and Stellar Astrophysics +1605.03341 Strongly Correlated Electrons +1605.03362 Mesoscale and Nanoscale Physics +1605.03447 Differential Geometry +1605.03461 Instrumentation and Detectors +1605.03517 Optics +1605.03528 Strongly Correlated Electrons +1605.03588 High Energy Astrophysical Phenomena +1605.03676 Strongly Correlated Electrons +1605.03852 Computation and Language +1605.03913 Mesoscale and Nanoscale Physics +1605.03968 Solar and Stellar Astrophysics +1605.03972 Mesoscale and Nanoscale Physics +1605.04202 High Energy Astrophysical Phenomena +1605.04225 Plasma Physics +1605.04647 Superconductivity +1605.04879 Statistical Mechanics +1605.04905 High Energy Astrophysical Phenomena +1605.04921 Theory +1605.04927 Astrophysics of Galaxies +1605.05012 Strongly Correlated Electrons +1605.05033 +1605.05048 +1605.05064 Earth and Planetary Astrophysics +1605.05107 Strongly Correlated Electrons +1605.05161 Statistical Mechanics +1605.05200 Solar and Stellar Astrophysics +1605.05262 Solar and Stellar Astrophysics +1605.05330 Solar and Stellar Astrophysics +1605.05504 Solar and Stellar Astrophysics +1605.05539 Materials Science +1605.05605 Astrophysics of Galaxies +1605.05712 Numerical Analysis +1605.05749 Phenomenology +1605.05849 High Energy Astrophysical Phenomena +1605.05866 +1605.05897 Materials Science +1605.05902 +1605.05905 +1605.06237 +1605.06291 Earth and Planetary Astrophysics +1605.06386 Physics and Society +1605.06409 Computer Vision and Pattern Recognition +1605.06464 +1605.06524 +1605.06545 Plasma Physics +1605.06689 Operator Algebras +1605.06842 Superconductivity +1605.06879 Earth and Planetary Astrophysics +1605.06890 Superconductivity +1605.06895 Astrophysics of Galaxies +1605.06919 +1605.07122 Materials Science +1605.07300 Astrophysics of Galaxies +1605.07502 +1605.07602 Chemical Physics +1605.07677 Solar and Stellar Astrophysics +1605.07710 +1605.07764 Earth and Planetary Astrophysics +1605.07815 Quantum Gases +1605.07829 Graphics +1605.07852 Information Retrieval +1605.08008 Phenomenology +1605.08138 Phenomenology +1605.08223 Cosmology and Nongalactic Astrophysics +1605.08286 +1605.08314 Biological Physics +1605.08528 Strongly Correlated Electrons +1605.08553 Populations and Evolution +1605.08773 Astrophysics of Galaxies +1605.08837 Phenomenology +1605.08905 Discrete Mathematics +1605.08991 High Energy Astrophysical Phenomena +1605.09121 +1605.09267 Solar and Stellar Astrophysics +1605.09778 +1606.00011 Combinatorics +1606.00088 Quantum Gases +1606.00140 Astrophysics of Galaxies +1606.00145 Mesoscale and Nanoscale Physics +1606.00401 Human-Computer Interaction +1606.00477 Optics +1606.00485 +1606.00727 Superconductivity +1606.00975 Optics +1606.01082 Rings and Algebras +1606.01248 High Energy Astrophysical Phenomena +1606.01306 +1606.01327 Optimization and Control +1606.01429 +1606.01439 Physics and Society +1606.01748 Probability +1606.01763 Logic +1606.01785 Earth and Planetary Astrophysics +1606.02000 Phenomenology +1606.02089 Mesoscale and Nanoscale Physics +1606.02164 +1606.02306 +1606.02731 Solar and Stellar Astrophysics +1606.02747 Complex Variables +1606.02847 Materials Science +1606.02912 Mesoscale and Nanoscale Physics +1606.03040 Strongly Correlated Electrons +1606.03299 Quantum Gases +1606.03755 Probability +1606.03760 Phenomenology +1606.03783 Information Retrieval +1606.03881 Number Theory +1606.04134 Dynamical Systems +1606.04179 Materials Science +1606.04356 +1606.04405 Information Theory +1606.04697 Mesoscale and Nanoscale Physics +1606.04788 Phenomenology +1606.04896 Applications +1606.04922 Solar and Stellar Astrophysics +1606.04944 +1606.05340 Machine Learning +1606.05421 +1606.05549 Earth and Planetary Astrophysics +1606.05667 History and Philosophy of Physics +1606.05685 Machine Learning +1606.05854 Computation and Language +1606.05869 Accelerator Physics +1606.05912 Populations and Evolution +1606.05919 Materials Science +1606.05957 Combinatorics +1606.06151 Combinatorics +1606.06159 Social and Information Networks +1606.06197 Sound +1606.06282 +1606.06283 Materials Science +1606.06284 Applications +1606.06285 +1606.06287 Operator Algebras +1606.06290 High Energy Astrophysical Phenomena +1606.06299 Astrophysics of Galaxies +1606.06302 +1606.06306 Theory +1606.06308 Dynamical Systems +1606.06309 Phenomenology +1606.06310 Numerical Analysis +1606.06311 Mathematical Software +1606.06316 Networking and Internet Architecture +1606.06317 +1606.06318 Optimization and Control +1606.06319 +1606.06323 Populations and Evolution +1606.06325 Number Theory +1606.06328 Methodology +1606.06332 Materials Science +1606.06333 Combinatorics +1606.06340 Probability +1606.06343 Social and Information Networks +1606.06347 Materials Science +1606.06349 Astrophysics of Galaxies +1606.06350 Phenomenology +1606.06352 Machine Learning +1606.06353 Logic +1606.06355 Artificial Intelligence +1606.06356 Social and Information Networks +1606.06357 Artificial Intelligence +1606.06361 Computation and Language +1606.06362 Number Theory +1606.06363 Materials Science +1606.06365 Popular Physics +1606.06366 Machine Learning +1606.06369 Cryptography and Security +1606.06373 Fluid Dynamics +1606.06374 Instrumentation and Methods for Astrophysics +1606.06376 Logic in Computer Science +1606.06377 Machine Learning +1606.06378 Programming Languages +1606.06379 Programming Languages +1606.06380 Programming Languages +1606.06381 Programming Languages +1606.06382 Programming Languages +1606.06384 Logic in Computer Science +1606.06385 Logic in Computer Science +1606.06386 Logic in Computer Science +1606.06387 Logic in Computer Science +1606.06388 Numerical Analysis +1606.06390 Number Theory +1606.06392 Analysis of PDEs +1606.06395 Data Structures and Algorithms +1606.06396 Number Theory +1606.06399 Discrete Mathematics +1606.06401 Adaptation and Self-Organizing Systems +1606.06402 Strongly Correlated Electrons +1606.06404 Geometric Topology +1606.06406 Computation and Language +1606.06407 Theory +1606.06410 Quantum Gases +1606.06411 Probability +1606.06417 Logic +1606.06419 +1606.06421 Optimization and Control +1606.06422 Logic in Computer Science +1606.06423 Applications +1606.06424 Information Retrieval +1606.06427 Optimization and Control +1606.06428 Information Theory +1606.06429 Differential Geometry +1606.06432 Soft Condensed Matter +1606.06434 Artificial Intelligence +1606.06435 Mesoscale and Nanoscale Physics +1606.06437 Computer Vision and Pattern Recognition +1606.06439 Machine Learning +1606.06440 Analysis of PDEs +1606.06444 Representation Theory +1606.06445 Materials Science +1606.06447 Social and Information Networks +1606.06449 Complex Variables +1606.06450 Social and Information Networks +1606.06451 Hardware Architecture +1606.06452 Hardware Architecture +1606.06453 Probability +1606.06454 Hardware Architecture +1606.06457 Hardware Architecture +1606.06459 Statistics Theory +1606.06460 Hardware Architecture +1606.06464 Analysis of PDEs +1606.06466 Mesoscale and Nanoscale Physics +1606.06473 Probability +1606.06475 Numerical Analysis +1606.06478 Commutative Algebra +1606.06482 Number Theory +1606.06483 Hardware Architecture +1606.06487 Statistical Mechanics +1606.06488 Computational Geometry +1606.06489 Analysis of PDEs +1606.06491 Geometric Topology +1606.06492 Earth and Planetary Astrophysics +1606.06500 Analysis of PDEs +1606.06501 Statistical Mechanics +1606.06504 Information Theory +1606.06507 +1606.06508 Computational Geometry +1606.06510 Computer Science and Game Theory +1606.06511 Numerical Analysis +1606.06512 Systems and Control +1606.06513 Emerging Technologies +1606.06514 Mesoscale and Nanoscale Physics +1606.06515 Theory +1606.06517 Algebraic Geometry +1606.06518 Probability +1606.06519 Statistics Theory +1606.06521 Applications +1606.06522 Methodology +1606.06523 Mesoscale and Nanoscale Physics +1606.06524 Atomic Physics +1606.06526 High Energy Astrophysical Phenomena +1606.06530 Cryptography and Security +1606.06532 Combinatorics +1606.06534 Plasma Physics +1606.06535 Number Theory +1606.06536 Probability +1606.06539 Computer Vision and Pattern Recognition +1606.06541 Numerical Analysis +1606.06542 Phenomenology +1606.06543 Distributed, Parallel, and Cluster Computing +1606.06547 Combinatorics +1606.06548 K-Theory and Homology +1606.06551 Representation Theory +1606.06553 Complex Variables +1606.06556 Numerical Analysis +1606.06557 Logic in Computer Science +1606.06562 Applications +1606.06563 Soft Condensed Matter +1606.06564 Learning +1606.06566 Data Structures and Algorithms +1606.06568 Astrophysics of Galaxies +1606.06569 Differential Geometry +1606.06572 Commutative Algebra +1606.06573 +1606.06574 Materials Science +1606.06575 Analysis of PDEs +1606.06576 Information Theory +1606.06577 Combinatorics +1606.06580 Computer Science and Game Theory +1606.06581 Computational Complexity +1606.06582 Learning +1606.06587 Solar and Stellar Astrophysics +1606.06588 Robotics +1606.06590 +1606.06593 Distributed, Parallel, and Cluster Computing +1606.06594 Biological Physics +1606.06599 Soft Condensed Matter +1606.06602 Probability +1606.06604 Computational Physics +1606.06606 Strongly Correlated Electrons +1606.06607 Logic +1606.06610 Theory +1606.06612 Experiment +1606.06613 Numerical Analysis +1606.06620 Combinatorics +1606.06623 Computation and Language +1606.06628 Algebraic Geometry +1606.06629 Distributed, Parallel, and Cluster Computing +1606.06633 Applications +1606.06636 Data Structures and Algorithms +1606.06637 +1606.06640 Computation and Language +1606.06644 Cryptography and Security +1606.06645 Methodology +1606.06648 Numerical Analysis +1606.06649 Materials Science +1606.06650 Computer Vision and Pattern Recognition +1606.06653 Learning +1606.06655 Probability +1606.06659 Computation +1606.06660 Computational Geometry +1606.06661 +1606.06662 Numerical Analysis +1606.06664 Computer Science and Game Theory +1606.06667 Soft Condensed Matter +1606.06670 Phenomenology +1606.06672 Superconductivity +1606.06680 Geometric Topology +1606.06682 Systems and Control +1606.06683 Fluid Dynamics +1606.06685 Operator Algebras +1606.06692 Information Theory +1606.06697 Accelerator Physics +1606.06699 Systems and Control +1606.06701 Rings and Algebras +1606.06704 Software Engineering +1606.06705 Functional Analysis +1606.06706 Analysis of PDEs +1606.06710 Computation and Language +1606.06711 Materials Science +1606.06714 Complex Variables +1606.06715 Instrumentation and Detectors +1606.06717 Metric Geometry +1606.06721 Functional Analysis +1606.06725 Fluid Dynamics +1606.06728 Astrophysics of Galaxies +1606.06729 Earth and Planetary Astrophysics +astro-ph/0702731 +cond-mat/0207635 Strongly Correlated Electrons +math/0609217 Classical Analysis and ODEs +1004.2717 Logic in Computer Science +1008.3111 +1012.3800 Theory +1103.2938 +1108.3582 Differential Geometry +1111.2626 Computer Science and Game Theory +1111.7045 Theory +1201.0663 +1203.1601 Differential Geometry +1205.2186 Differential Geometry +1212.5319 Theory +1303.6686 Physics and Society +1306.5718 Methodology +1306.6154 Strongly Correlated Electrons +1309.2118 Differential Geometry +1309.6235 +1310.6931 Differential Geometry +1401.2829 Plasma Physics +1402.0298 Probability +1402.2925 Systems and Control +1402.5723 Methodology +1404.0421 Metric Geometry +1404.4601 Applications +1404.6943 High Energy Astrophysical Phenomena +1405.1940 +1406.0361 +1406.3307 Logic +1406.3671 Networking and Internet Architecture +1408.3779 +1409.1851 Classical Analysis and ODEs +1410.3544 Metric Geometry +1410.4891 Differential Geometry +1410.7006 Differential Geometry +1411.7916 Neurons and Cognition +1412.3115 Solar and Stellar Astrophysics +1412.4046 Complex Variables +1412.6783 Logic +1412.7852 Mesoscale and Nanoscale Physics +1412.8024 Algebraic Geometry +1501.01579 Systems and Control +1501.01856 Materials Science +1501.02559 Statistics Theory +1501.02629 Machine Learning +1502.04135 +1503.03836 Phenomenology +1503.07597 Metric Geometry +1503.08237 Information Theory +1503.08248 Information Retrieval +1504.01626 General Topology +1505.01241 Theory +1506.00194 Information Theory +1506.01067 Phenomenology +1506.02039 Earth and Planetary Astrophysics +1506.02322 +1506.02690 Learning +1506.04059 Formal Languages and Automata Theory +1507.00611 +1507.01031 Probability +1507.02284 Machine Learning +1507.02414 Discrete Mathematics +1507.04736 Differential Geometry +1507.06098 Quantum Algebra +1507.06172 +1507.06396 Information Theory +1507.07041 Quantum Algebra +1508.02709 Theory +1508.04877 Materials Science +1508.06919 Probability +1509.00381 +1509.01237 +1509.01265 +1509.01567 Quantum Algebra +1509.03280 Statistical Mechanics +1509.03774 Logic +1510.01007 Strongly Correlated Electrons +1510.01565 Experiment +1510.02858 +1510.03073 Soft Condensed Matter +1510.03266 Instrumentation and Detectors +1510.04481 Quantum Gases +1510.04559 Quantum Gases +1510.05352 Strongly Correlated Electrons +1510.06235 Materials Science +1510.08048 Algebraic Geometry +1510.08410 Spectral Theory +1511.00944 Solar and Stellar Astrophysics +1511.03316 +1511.04497 Earth and Planetary Astrophysics +1511.04918 Strongly Correlated Electrons +1511.05462 Logic +1511.05992 Cosmology and Nongalactic Astrophysics +1511.06131 Number Theory +1511.06728 Computer Vision and Pattern Recognition +1511.07827 Neurons and Cognition +1512.00612 Phenomenology +1512.01720 Combinatorics +1512.02872 Statistical Mechanics +1512.05355 Phenomenology +1512.05539 +1512.06563 Statistical Mechanics +1512.06869 Physics Education +1512.08674 +1601.00292 Numerical Analysis +1601.00836 Phenomenology +1601.02217 Dynamical Systems +1601.02973 Superconductivity +1601.03299 Mesoscale and Nanoscale Physics +1601.03957 Probability +1601.04876 Logic +1601.05835 Statistics Theory +1601.07003 Superconductivity +1602.00784 Dynamical Systems +1602.01188 +1602.02706 Learning +1602.03841 +1602.06760 Commutative Algebra +1602.08584 Representation Theory +1603.00957 Computation and Language +1603.01966 Mesoscale and Nanoscale Physics +1603.02518 Computer Vision and Pattern Recognition +1603.03323 Materials Science +1603.04054 Biomolecules +1603.05386 Computational Physics +1603.05986 Mesoscale and Nanoscale Physics +1603.06059 Computation and Language +1603.07294 Learning +1603.08677 Disordered Systems and Neural Networks +1603.08786 Phenomenology +1604.01333 Optics +1604.01674 Quantitative Methods +1604.02110 Theory +1604.02388 Computer Vision and Pattern Recognition +1604.02663 Fluid Dynamics +1604.03025 Phenomenology +1604.04503 +1604.07342 Computer Vision and Pattern Recognition +1604.08172 Space Physics +1605.00267 Optimization and Control +1605.00688 Fluid Dynamics +1605.02029 Computer Vision and Pattern Recognition +1605.03780 Representation Theory +1605.05155 Cosmology and Nongalactic Astrophysics +1605.06033 Representation Theory +1605.06157 Earth and Planetary Astrophysics +1605.06270 Theory +1605.06914 Computer Vision and Pattern Recognition +1605.06937 Cellular Automata and Lattice Gases +1605.07658 Fluid Dynamics +1605.07682 Strongly Correlated Electrons +1605.08595 Dynamical Systems +1605.08599 Dynamical Systems +1605.08804 Probability +1606.00547 Methodology +1606.00568 Optics +1606.00779 Operator Algebras +1606.00846 +1606.01323 Computation and Language +1606.02307 Machine Learning +1606.02347 Software Engineering +1606.02376 Differential Geometry +1606.02421 Machine Learning +1606.02582 Plasma Physics +1606.02596 Computational Physics +1606.02608 Learning +1606.02709 Materials Science +1606.02710 Artificial Intelligence +1606.02711 Human-Computer Interaction +1606.02712 +1606.02714 Astrophysics of Galaxies +1606.02716 Phenomenology +1606.02734 +1606.02736 Robotics +1606.02737 Biomolecules +1606.02738 Distributed, Parallel, and Cluster Computing +1606.02746 Atomic Physics +1606.02748 Economics +1606.02749 Accelerator Physics +1606.02750 Complex Variables +1606.02753 Computer Vision and Pattern Recognition +1606.02754 +1606.02759 Chemical Physics +1606.02760 Algebraic Geometry +1606.02763 Information Theory +1606.02764 Materials Science +1606.02765 Neurons and Cognition +1606.02770 Mesoscale and Nanoscale Physics +1606.02773 Numerical Analysis +1606.02774 Instrumentation and Detectors +1606.02777 Analysis of PDEs +1606.02779 Dynamical Systems +1606.02780 Functional Analysis +1606.02781 High Energy Astrophysical Phenomena +1606.02782 Pattern Formation and Solitons +1606.02785 Computation and Language +1606.02786 Data Structures and Algorithms +1606.02787 Functional Analysis +1606.02788 Geometric Topology +1606.02789 Quantum Algebra +1606.02790 Analysis of PDEs +1606.02791 Functional Analysis +1606.02793 Analysis of PDEs +1606.02794 Probability +1606.02795 Probability +1606.02796 Chemical Physics +1606.02800 Dynamical Systems +1606.02801 Quantitative Methods +1606.02803 Number Theory +1606.02805 +1606.02807 Human-Computer Interaction +1606.02808 Dynamical Systems +1606.02809 Information Theory +1606.02811 Computer Vision and Pattern Recognition +1606.02812 +1606.02818 Mesoscale and Nanoscale Physics +1606.02827 Machine Learning +1606.02828 Information Theory +1606.02829 Soft Condensed Matter +1606.02831 Networking and Internet Architecture +1606.02835 Astrophysics of Galaxies +1606.02837 Populations and Evolution +1606.02838 Learning +1606.02842 Materials Science +1606.02844 Geometric Topology +1606.02845 Symbolic Computation +1606.02848 Probability +1606.02849 Information Theory +1606.02850 Fluid Dynamics +1606.02851 Astrophysics of Galaxies +1606.02854 Learning +1606.02860 Molecular Networks +1606.02861 Computer Vision and Pattern Recognition +1606.02863 Analysis of PDEs +1606.02866 Information Theory +1606.02870 Mesoscale and Nanoscale Physics +1606.02873 Optimization and Control +1606.02874 Number Theory +1606.02877 Robotics +1606.02879 Formal Languages and Automata Theory +1606.02881 Astrophysics of Galaxies +1606.02882 Software Engineering +1606.02889 Data Structures and Algorithms +1606.02894 Computer Vision and Pattern Recognition +1606.02898 Analysis of PDEs +1606.02899 Artificial Intelligence +1606.02902 Optics +1606.02903 Software Engineering +1606.02905 Algebraic Topology +1606.02909 Computer Vision and Pattern Recognition +1606.02913 Classical Analysis and ODEs +1606.02915 Phenomenology +1606.02917 Cell Behavior +1606.02918 Dynamical Systems +1606.02919 Optimization and Control +1606.02926 Combinatorics +1606.02928 Combinatorics +1606.02930 Instrumentation and Methods for Astrophysics +1606.02931 Methodology +1606.02938 Mesoscale and Nanoscale Physics +1606.02939 Probability +1606.02940 Functional Analysis +1606.02942 Networking and Internet Architecture +1606.02948 General Physics +1606.02954 General Physics +1606.02958 Combinatorics +1606.02963 Materials Science +1606.02974 Algebraic Geometry +1606.02976 Information Retrieval +1606.02977 Biological Physics +1606.02978 Combinatorics +1606.02985 Mesoscale and Nanoscale Physics +1606.02989 Probability +1606.02992 Dynamical Systems +1606.02995 Cryptography and Security +1606.03000 Information Theory +1606.03001 Probability +1606.03002 Neural and Evolutionary Computing +1606.03005 +1606.03006 +1606.03010 +1606.03014 Computer Vision and Pattern Recognition +1606.03017 Materials Science +1606.03021 Computer Vision and Pattern Recognition +1606.03023 Exactly Solvable and Integrable Systems +1606.03024 High Energy Astrophysical Phenomena +1606.03025 Optimization and Control +1606.03027 Instrumentation and Detectors +1606.03029 Dynamical Systems +1606.03031 Space Physics +1606.03032 Numerical Analysis +1606.03035 Cosmology and Nongalactic Astrophysics +1606.03041 Analysis of PDEs +1606.03043 High Energy Astrophysical Phenomena +1606.03044 Sound +1606.03045 Dynamical Systems +1606.03049 Number Theory +1606.03051 Instrumentation and Detectors +1606.03052 Physics Education +1606.03054 Instrumentation and Detectors +1606.03055 Information Theory +1606.03058 Astrophysics of Galaxies +1606.03059 Populations and Evolution +1606.03062 Computer Science and Game Theory +1606.03063 Neurons and Cognition +1606.03064 Group Theory +1606.03065 Geophysics +1606.03066 Information Retrieval +1606.03076 Probability +1606.03077 Data Structures and Algorithms +1606.03078 Differential Geometry +1606.03084 +astro-ph/0307543 +cond-mat/0608345 Materials Science +hep-ph/9712526 Phenomenology +0801.3741 Analysis of PDEs +0804.0403 Metric Geometry +0909.5648 Number Theory +1002.2061 +1006.4872 Probability +1007.0021 Combinatorics +1010.2902 Combinatorics +1102.3785 Representation Theory +1105.2232 Superconductivity +1105.5777 Representation Theory +1106.3979 Group Theory +1109.4501 Representation Theory +1109.5540 Algebraic Geometry +1204.3365 Combinatorics +1204.4107 Neural and Evolutionary Computing +1207.6236 Representation Theory +1207.6938 Differential Geometry +1208.6582 High Energy Astrophysical Phenomena +1210.6602 Representation Theory +1210.7163 Dynamical Systems +1212.3420 Probability +1301.2548 Representation Theory +1301.6430 Classical Analysis and ODEs +1302.1732 Chaotic Dynamics +1303.3261 Operator Algebras +1304.5506 Theory +1305.3543 Algebraic Geometry +1305.3899 Probability +1305.6526 Machine Learning +1307.1331 +1307.5321 Computational Complexity +1308.0310 Probability +1308.0521 Probability +1308.0919 Solar and Stellar Astrophysics +1309.0034 Superconductivity +1309.0496 Algebraic Geometry +1309.0861 Networking and Internet Architecture +1309.1808 Category Theory +1309.2896 Statistics Theory +1309.3445 Formal Languages and Automata Theory +1309.4329 Probability +1310.0948 High Energy Astrophysical Phenomena +1310.1549 Statistics Theory +1310.7085 Combinatorics +1311.4338 Representation Theory +1311.5725 Algebraic Geometry +1311.6070 Dynamical Systems +1311.6459 Superconductivity +1312.2730 Discrete Mathematics +1312.6322 History and Philosophy of Physics +1312.7687 Representation Theory +1401.5498 Probability +1402.0635 Machine Learning +1402.1096 Probability +1402.2351 Social and Information Networks +1402.3391 Number Theory +1402.6256 Classical Analysis and ODEs +1403.2376 +1403.3972 Formal Languages and Automata Theory +1404.4222 Representation Theory +1405.2545 Algebraic Geometry +1406.0879 Computational Complexity +1406.6753 Differential Geometry +1407.1482 Computational Complexity +1407.6609 Optimization and Control +1407.7795 Methodology +1408.3040 +1408.3686 Computer Vision and Pattern Recognition +1408.5594 Chaotic Dynamics +1409.6086 Machine Learning +1410.0051 Analysis of PDEs +1410.1608 Genomics +1410.1964 Complex Variables +1410.3088 Algebraic Topology +1410.6951 Computational Engineering, Finance, and Science +1410.8129 Numerical Analysis +1410.8645 Phenomenology +1410.8720 Computational Geometry +1411.0067 Chemical Physics +1411.1869 Methodology +1411.4551 Probability +1411.4885 Cellular Automata and Lattice Gases +1411.6065 Numerical Analysis +1411.6113 Combinatorics +1411.6458 Algebraic Topology +1411.7191 Data Structures and Algorithms +1411.7888 Methodology +1412.1387 Analysis of PDEs +1412.7260 Machine Learning +1412.7635 Number Theory +1412.7730 +1501.00820 Logic in Computer Science +1501.01122 Solar and Stellar Astrophysics +1501.01205 +1501.01271 Statistics Theory +1501.02243 Computer Science and Game Theory +1501.02587 Differential Geometry +1501.04344 Emerging Technologies +1501.04512 +1501.05829 General Physics +1501.06003 Information Theory +1502.01623 Disordered Systems and Neural Networks +1502.05017 Statistics Theory +1502.05952 Cosmology and Nongalactic Astrophysics +1502.07439 Social and Information Networks +1503.00258 Formal Languages and Automata Theory +1503.03781 Optics +1503.04104 Mesoscale and Nanoscale Physics +1503.05407 Classical Analysis and ODEs +1503.05988 Computer Science and Game Theory +1503.06858 Learning +1503.06916 K-Theory and Homology +1503.07206 Optimization and Control +1504.00109 Representation Theory +1504.00865 Statistics Theory +1504.05439 Algebraic Geometry +1504.06876 Emerging Technologies +1504.06883 Superconductivity +1505.00690 Materials Science +1505.02996 Phenomenology +1505.03775 +1505.04025 Theory +1505.05629 Machine Learning +1505.05779 Cryptography and Security +1505.06369 Phenomenology +1506.00132 Combinatorics +1506.00166 Mathematical Finance +1506.00186 +1506.00272 Distributed, Parallel, and Cluster Computing +1506.00390 +1506.00473 Computer Vision and Pattern Recognition +1506.02351 Machine Learning +1506.02620 Machine Learning +1506.03106 Economics +1506.05747 Classical Analysis and ODEs +1506.05824 Superconductivity +1506.06169 Methodology +1506.06451 Algebraic Topology +1506.07520 Phenomenology +1506.07590 Optics +1506.07798 Theory +1506.09198 +1507.01189 Strongly Correlated Electrons +1507.01981 Data Structures and Algorithms +1507.02603 Strongly Correlated Electrons +1507.03386 Optics +1507.04787 Probability +1507.04811 Computer Science and Game Theory +1507.04995 Theory +1507.06965 Numerical Analysis +1507.07352 Differential Geometry +1507.07435 Commutative Algebra +1507.07845 +1507.08118 Functional Analysis +1507.08270 Operator Algebras +1507.08746 Strongly Correlated Electrons +1508.01269 Probability +1508.01468 Phenomenology +1508.01539 Differential Geometry +1508.01791 Theory +1508.03065 Strongly Correlated Electrons +1508.03522 Lattice +1508.04401 Statistical Mechanics +1508.04462 Mesoscale and Nanoscale Physics +1508.04922 +1508.05370 Instrumentation and Detectors +1508.05909 Materials Science +1508.06828 Phenomenology +1508.07090 +1508.07114 Theory +1508.07354 +1509.00233 +1509.00788 Plasma Physics +1509.01515 Cosmology and Nongalactic Astrophysics +1509.01669 Dynamical Systems +1509.01802 Phenomenology +1509.04109 Differential Geometry +1509.04816 +1509.05859 Group Theory +1509.06488 Superconductivity +1509.06635 Atomic Physics +1509.07342 +1509.07347 Functional Analysis +1509.07508 Strongly Correlated Electrons +1509.07999 Analysis of PDEs +1509.08193 Optimization and Control +1509.08203 Optimization and Control +1509.08225 Quantum Gases +1509.08499 +1510.00149 Computer Vision and Pattern Recognition +1510.00954 Symplectic Geometry +1510.01162 Strongly Correlated Electrons +1510.01744 Theory +1510.01968 +1510.02349 Phenomenology +1510.03094 Instrumentation and Detectors +1510.04146 Probability +1510.04812 Strongly Correlated Electrons +1510.05385 Solar and Stellar Astrophysics +1510.05490 Theory +1510.06674 Cosmology and Nongalactic Astrophysics +1510.06779 Machine Learning +1510.07215 +1510.07246 Systems and Control +1510.07591 Metric Geometry +1510.07747 Cosmology and Nongalactic Astrophysics +1510.08490 Social and Information Networks +1511.00666 Probability +1511.01342 General Physics +1511.01708 High Energy Astrophysical Phenomena +1511.02107 Phenomenology +1511.02357 Theory +1511.02455 Artificial Intelligence +1511.03197 Solar and Stellar Astrophysics +1511.03359 Optics +1511.04119 Learning +1511.04209 Strongly Correlated Electrons +1511.04581 Machine Learning +1511.04747 Computation and Language +1511.05333 Statistics Theory +1511.05692 +1511.06067 Learning +1511.06431 Biomolecules +1511.06660 Learning +1511.06823 Materials Science +1511.06941 Information Theory +1511.07683 Rings and Algebras +1511.08497 Software Engineering +1512.00092 Mesoscale and Nanoscale Physics +1512.01874 +1512.02216 Instrumentation and Detectors +1512.03013 Phenomenology +1512.03195 Astrophysics of Galaxies +1512.05244 Learning +1512.06365 Algebraic Topology +1512.06526 Combinatorics +1512.07776 Operator Algebras +1512.07966 Social and Information Networks +1512.07988 Discrete Mathematics +1512.08304 Optics +1512.09137 +1512.09213 Chemical Physics +1601.00913 Phenomenology +1601.00920 Dynamical Systems +1601.02099 Combinatorics +1601.02348 Solar and Stellar Astrophysics +1601.02978 Earth and Planetary Astrophysics +1601.03289 Soft Condensed Matter +1601.03778 Learning +1601.04073 Materials Science +1601.04220 Combinatorics +1601.05499 Probability +1601.06091 Statistical Mechanics +1601.06316 Databases +1601.07099 Logic +1601.07324 Numerical Analysis +1601.07353 Theory +1601.07589 Geometric Topology +1601.07854 Combinatorics +1601.07864 Numerical Analysis +1601.08164 +1602.00574 Combinatorics +1602.00645 Algebraic Geometry +1602.00982 Functional Analysis +1602.01198 Learning +1602.01425 +1602.01543 Optimization and Control +1602.01678 Theory +1602.01754 Solar and Stellar Astrophysics +1602.01812 Phenomenology +1602.02246 +1602.02255 Information Retrieval +1602.03131 Applications +1602.03220 Machine Learning +1602.03266 Systems and Control +1602.03287 Symplectic Geometry +1602.03469 Combinatorics +1602.03496 Algebraic Geometry +1602.03582 Number Theory +1602.03631 Pattern Formation and Solitons +1602.03692 Computation +1602.03697 Methodology +1602.04210 Networking and Internet Architecture +1602.04213 +1602.04215 +1602.04216 Instrumentation and Methods for Astrophysics +1602.04217 Complex Variables +1602.04218 Functional Analysis +1602.04227 Machine Learning +1602.04231 Analysis of PDEs +1602.04233 +1602.04234 Systems and Control +1602.04236 Materials Science +1602.04238 Materials Science +1602.04239 Spectral Theory +1602.04241 Classical Analysis and ODEs +1602.04243 Dynamical Systems +1602.04244 Number Theory +1602.04246 Metric Geometry +1602.04247 +1602.04249 General Physics +1602.04250 Complex Variables +1602.04257 Artificial Intelligence +1602.04261 Systems and Control +1602.04264 Theory +1602.04265 Machine Learning +1602.04268 Logic in Computer Science +1602.04269 Biological Physics +1602.04270 Data Structures and Algorithms +1602.04272 Optics +1602.04278 Computation and Language +1602.04280 Materials Science +1602.04281 Computers and Society +1602.04282 Machine Learning +1602.04283 Distributed, Parallel, and Cluster Computing +1602.04286 Optimization and Control +1602.04287 Machine Learning +1602.04289 Materials Science +1602.04292 Data Analysis, Statistics and Probability +1602.04294 Formal Languages and Automata Theory +1602.04297 Phenomenology +1602.04299 +1602.04310 Statistics Theory +1602.04311 Representation Theory +1602.04316 Combinatorics +1602.04317 Number Theory +1602.04321 Representation Theory +1602.04325 Representation Theory +1602.04326 Classical Analysis and ODEs +1602.04328 Computer Science and Game Theory +1602.04330 Statistics Theory +1602.04331 Combinatorics +1602.04335 Neural and Evolutionary Computing +1602.04340 Optics +1602.04341 Computation and Language +1602.04346 Optics +1602.04347 Number Theory +1602.04348 Computer Vision and Pattern Recognition +1602.04349 Mesoscale and Nanoscale Physics +1602.04350 Physics and Society +1602.04351 Combinatorics +1602.04353 Logic in Computer Science +1602.04354 Group Theory +1602.04355 Dynamical Systems +1602.04356 Superconductivity +1602.04358 Artificial Intelligence +1602.04361 Statistics Theory +1602.04363 Statistical Mechanics +1602.04364 Learning +1602.04366 Plasma Physics +1602.04370 Combinatorics +1602.04371 Mesoscale and Nanoscale Physics +1602.04372 Computational Finance +1602.04376 Artificial Intelligence +1602.04383 Representation Theory +1602.04385 Numerical Analysis +1602.04386 Numerical Analysis +1602.04387 Statistics Theory +1602.04388 Algebraic Geometry +1602.04389 Instrumentation and Methods for Astrophysics +1602.04390 +1602.04391 Machine Learning +1602.04392 Representation Theory +1602.04393 Information Retrieval +1602.04394 Mesoscale and Nanoscale Physics +1602.04395 +1602.04396 Information Theory +1602.04399 Data Structures and Algorithms +1602.04400 Networking and Internet Architecture +1602.04401 Instrumentation and Methods for Astrophysics +1602.04402 Systems and Control +1602.04406 Superconductivity +1602.04409 Learning +1602.04410 Computer Science and Game Theory +1602.04414 Hardware Architecture +1602.04415 Hardware Architecture +1602.04416 +1602.04417 Group Theory +1602.04421 Data Structures and Algorithms +1602.04422 Computer Vision and Pattern Recognition +1602.04423 Economics +1602.04431 Databases +1602.04432 Logic +1602.04435 Artificial Intelligence +1602.04440 Networking and Internet Architecture +1602.04443 Dynamical Systems +1602.04444 Algebraic Geometry +1602.04448 Algebraic Geometry +1602.04449 Combinatorics +1602.04454 +1602.04459 +1602.04463 Optics +1602.04464 Optics +1602.04465 Functional Analysis +1602.04466 Economics +1602.04469 Geophysics +1602.04471 Materials Science +1602.04472 Algebraic Geometry +1602.04473 Artificial Intelligence +1602.04475 Soft Condensed Matter +1602.04486 Earth and Planetary Astrophysics +1602.04489 Computer Vision and Pattern Recognition +1602.04491 Earth and Planetary Astrophysics +1602.04492 Geophysics +1602.04496 Information Theory +1602.04497 Numerical Analysis +1602.04502 Computer Vision and Pattern Recognition +1602.04504 Computer Vision and Pattern Recognition +1602.04505 Discrete Mathematics +1602.04506 Human-Computer Interaction +1602.04507 Rings and Algebras +1602.04508 Disordered Systems and Neural Networks +1602.04515 Algebraic Topology +1602.04517 Number Theory +1602.04519 Materials Science +1602.04520 Optics +1602.04521 Information Theory +1602.04523 Probability +1602.04528 Methodology +1602.04532 Dynamical Systems +1602.04536 Distributed, Parallel, and Cluster Computing +1602.04537 Solar and Stellar Astrophysics +1602.04540 Analysis of PDEs +1602.04546 Geometric Topology +1602.04547 Geometric Topology +1602.04548 Machine Learning +1602.04550 Computational Physics +1602.04552 Distributed, Parallel, and Cluster Computing +1602.04556 Numerical Analysis +1602.04557 Optics +1602.04561 Probability +1602.04567 Information Retrieval +1602.04568 Logic in Computer Science +1602.04570 Probability +1602.04572 Information Retrieval +1602.04575 +1602.04576 Combinatorics +1602.04577 Information Theory +1602.04579 Machine Learning +1602.04580 Mathematical Finance +1602.04582 Solar and Stellar Astrophysics +1602.04585 Analysis of PDEs +1602.04586 Dynamical Systems +1602.04590 Materials Science +1602.04593 Computer Vision and Pattern Recognition +1602.04594 Classical Analysis and ODEs +1602.04595 Lattice +1602.04597 Differential Geometry +1602.04602 Differential Geometry +1602.04603 Operator Algebras +1602.04604 Classical Analysis and ODEs +1602.04608 Instrumentation and Methods for Astrophysics +1602.04609 Optimization and Control +1602.04612 Operator Algebras +1602.04613 Artificial Intelligence +1602.04614 Lattice +1602.04615 Instrumentation and Methods for Astrophysics +1602.04617 Atomic Physics +1602.04619 Mesoscale and Nanoscale Physics +1602.04620 Computers and Society +1602.04623 Combinatorics +1602.04627 Instrumentation and Methods for Astrophysics +1602.04629 Networking and Internet Architecture +1602.04630 Information Theory +1602.04633 Instrumentation and Methods for Astrophysics +1602.04637 Metric Geometry +1602.04644 Algebraic Geometry +1602.04647 Strongly Correlated Electrons +1602.04649 Dynamical Systems +1602.04653 Analysis of PDEs +1602.04660 Mathematical Finance +1602.04663 +1602.04668 Combinatorics +1602.04669 Category Theory +1602.04673 Theory +1602.04674 History and Philosophy of Physics +1602.04675 Combinatorics +1602.04676 Statistics Theory +1602.04677 Differential Geometry +1602.04678 +1602.04680 Materials Science +1602.04689 Group Theory +1602.04690 Phenomenology +1602.04691 Numerical Analysis +1602.04697 Probability +1602.04698 General Mathematics +1602.04700 Analysis of PDEs +1602.04707 Computational Geometry +1602.04708 Superconductivity +1602.04709 Information Retrieval +1602.04713 Computers and Society +1602.04716 Other Computer Science +1602.04717 Combinatorics +1602.04720 Materials Science +1602.04722 Chemical Physics +1602.04723 Neural and Evolutionary Computing +1602.04725 Materials Science +1602.04726 Operator Algebras +1602.04727 Discrete Mathematics +1602.04730 Number Theory +1602.04733 Solar and Stellar Astrophysics +1602.04740 Probability +1602.04742 Neural and Evolutionary Computing +1602.04743 Optimization and Control +1602.04745 Dynamical Systems +1602.04746 Probability +1602.04747 Cryptography and Security +1602.04750 Functional Analysis +1602.04753 Biological Physics +1602.04754 Robotics +1602.04756 Complex Variables +1602.04757 Mesoscale and Nanoscale Physics +1602.04760 Operator Algebras +1602.04761 Theory +1602.04768 +1602.04774 +1602.04775 Astrophysics of Galaxies +1602.04776 Neurons and Cognition +1602.04778 Functional Analysis +1602.04783 Physics and Society +1602.04784 Numerical Analysis +1602.04785 Optimization and Control +1602.04787 Plasma Physics +1602.04791 Classical Analysis and ODEs +1602.04793 Spectral Theory +1602.04795 Analysis of PDEs +1602.04798 Phenomenology +1602.04800 Data Structures and Algorithms +1602.04805 Machine Learning +math/0502138 Algebraic Geometry +quant-ph/9904085 +0801.4612 +1301.2993 Statistical Mechanics +1505.06303 Plasma Physics +astro-ph/0702399 +0704.1313 Geometric Topology +0705.0090 Geometric Topology +0705.1143 Geometric Topology +0705.3453 Geometric Topology +0706.0339 Geometric Topology +0706.0715 Algebraic Geometry +0706.1581 Geometric Topology +0707.2350 Algebraic Topology +0708.1585 Dynamical Systems +0709.0376 Geometric Topology +0709.0720 Geometric Topology +0709.0827 Atomic Physics +0709.1427 Geometric Topology +0710.4150 Geometric Topology +0710.5940 Group Theory +0711.2677 Algebraic Geometry +0712.2803 Symplectic Geometry +0712.4060 Geometric Topology +0801.4596 Group Theory +0801.4925 Mesoscale and Nanoscale Physics +0803.1333 Geometric Topology +0803.4281 Dynamical Systems +0804.0427 Geometric Topology +0804.4229 Geometric Topology +0805.4222 Group Theory +0806.1518 Optics +0807.0852 +0809.0454 Geometric Topology +0811.0950 Mesoscale and Nanoscale Physics +0811.2254 Geometric Topology +0811.2383 Group Theory +0811.2917 Algebraic Geometry +0811.4566 Mesoscale and Nanoscale Physics +0812.4696 Geometric Topology +0903.3565 Optics +0904.1893 Geometric Topology +0904.3888 Optics +0905.0048 Geometric Topology +0905.0059 Algebraic Geometry +0905.2760 Geometric Topology +0906.1192 Dynamical Systems +0907.4639 Geometric Topology +0908.2863 Geometric Topology +0909.0918 Algebraic Geometry +0909.3485 Algebraic Topology +0909.4182 Geometric Topology +0910.1030 Algebraic Topology +0910.1102 Geometric Topology +0910.5642 Optics +0910.5691 Geometric Topology +0911.0085 Algebraic Topology +0912.4296 Geometric Topology +1001.4906 Algebraic Topology +1002.1731 Number Theory +1003.0598 Geometric Topology +1003.2088 Mesoscale and Nanoscale Physics +1003.4845 Dynamical Systems +1003.5021 Classical Analysis and ODEs +1004.0964 Algebraic Topology +1004.1884 Algebraic Geometry +1005.0329 Geometric Topology +1005.1902 Dynamical Systems +1005.3366 Optics +1006.2762 Algebraic Topology +1006.3864 Number Theory +1006.3953 Mesoscale and Nanoscale Physics +1007.0447 Phenomenology +1007.2407 Geometric Topology +1007.2913 Algebraic Topology +1007.2949 Differential Geometry +1008.5338 Dynamical Systems +1009.0603 Differential Geometry +1009.1067 Number Theory +1009.1365 Number Theory +1009.3132 Optics +1009.5271 Algebraic Topology +1009.6038 Analysis of PDEs +1010.0284 Geometric Topology +1010.0457 Commutative Algebra +1010.3014 Differential Geometry +1010.3274 Geometric Topology +1010.4133 Dynamical Systems +1010.5235 Geometric Topology +1011.1697 Differential Geometry +1011.2966 Mesoscale and Nanoscale Physics +1011.3695 Geometric Topology +1011.5051 Geometric Topology +1012.0994 Geometric Topology +1012.1039 Geometric Topology +1012.2780 Geometric Topology +1012.3212 Analysis of PDEs +1012.4146 Symplectic Geometry +1012.5963 +1101.0301 Graphics +1101.3196 Analysis of PDEs +1101.4119 Materials Science +1102.0328 Number Theory +1102.0750 Geometric Topology +1102.0991 Differential Geometry +1102.3086 Analysis of PDEs +1102.3234 Differential Geometry +1102.4589 Group Theory +1102.5653 Algebraic Geometry +1103.0874 Chaotic Dynamics +1103.1721 Representation Theory +1103.1829 Dynamical Systems +1103.1921 Algebraic Geometry +1103.3480 Symplectic Geometry +1103.3839 Geometric Topology +1103.5116 Analysis of PDEs +1103.6213 Algebraic Topology +1104.0177 Analysis of PDEs +1104.0805 +1104.0818 Algebraic Geometry +1104.4460 Group Theory +1104.5474 Optimization and Control +1105.2415 Combinatorics +1105.5056 Group Theory +1105.5478 Group Theory +1105.5564 Analysis of PDEs +1106.0947 Geometric Topology +1106.1677 Numerical Analysis +1106.3132 Complex Variables +1106.3221 Combinatorics +1106.4642 Analysis of PDEs +1107.1009 Optics +1107.2154 Geometric Topology +1107.4674 Symplectic Geometry +1108.0317 Geometric Topology +1108.0724 Geometric Topology +1108.4714 Algebraic Geometry +1108.5459 Theory +1109.3964 Analysis of PDEs +1109.4211 Differential Geometry +1109.6287 Number Theory +1109.6396 Classical Analysis and ODEs +1110.1615 Chaotic Dynamics +1110.2041 Group Theory +1110.2370 Algebraic Topology +1110.3389 Operator Algebras +1110.3916 Algebraic Geometry +1110.4609 Algebraic Topology +1110.4847 Algebraic Geometry +1110.5155 Analysis of PDEs +1110.5976 Algebraic Geometry +1110.6701 Rings and Algebras +1111.2902 Commutative Algebra +1111.3087 Differential Geometry +1111.3896 Number Theory +1111.5061 Classical Analysis and ODEs +1111.5065 Geometric Topology +1111.6827 Analysis of PDEs +1112.0030 Theory +1112.3063 Complex Variables +1112.3211 Mesoscale and Nanoscale Physics +1112.4306 Algebraic Geometry +1112.5596 Mesoscale and Nanoscale Physics +1112.6185 +1112.6296 Geometric Topology +1201.0201 Materials Science +1201.0957 Group Theory +1201.1110 +1201.1626 Fluid Dynamics +1201.2385 Analysis of PDEs +1201.2545 Probability +1201.3191 Theory +1201.3274 Algebraic Geometry +1201.3646 Representation Theory +1201.4231 Theory +1201.5051 Algebraic Geometry +1201.6027 Geometric Topology +1202.0084 Theory +1202.0336 Theory +1202.0543 Theory +1202.0765 Geometric Topology +1202.2240 K-Theory and Homology +1202.3227 Differential Geometry +1202.3487 Geometric Topology +1202.4683 Number Theory +1202.5029 Theory +1202.5045 Theory +1202.5065 Numerical Analysis +1202.5201 Analysis of PDEs +1202.5756 Differential Geometry +1202.6385 Analysis of PDEs +1202.6508 Theory +1203.0479 Analysis of PDEs +1203.0831 K-Theory and Homology +1203.1063 Quantum Algebra +1203.1608 Geometric Topology +1203.2413 Geometric Topology +1203.2904 Classical Analysis and ODEs +1203.3808 Differential Geometry +1203.4019 Geometric Topology +1203.4963 Number Theory +1203.5041 Mesoscale and Nanoscale Physics +1203.5589 Symplectic Geometry +1203.5722 Algebraic Geometry +1203.6302 Analysis of PDEs +1203.6383 Algebraic Topology +1204.0289 Operator Algebras +1204.2013 Algebraic Topology +1204.2209 Symplectic Geometry +1204.4068 Differential Geometry +1204.4269 Number Theory +1204.5079 Analysis of PDEs +1204.5630 Mesoscale and Nanoscale Physics +1205.0342 Analysis of PDEs +1205.0708 Representation Theory +1205.0713 Differential Geometry +1205.0992 Representation Theory +1205.1047 Mesoscale and Nanoscale Physics +1205.2420 Classical Analysis and ODEs +1205.3457 Number Theory +1205.5165 Complex Variables +1205.5196 +1206.0137 Commutative Algebra +1206.2025 Representation Theory +1206.2102 Number Theory +1206.3505 Mesoscale and Nanoscale Physics +1206.4746 Number Theory +1206.4922 Differential Geometry +1206.5955 Differential Geometry +1206.6237 Geometric Topology +1206.6249 Symplectic Geometry +1207.0109 Geometric Topology +1207.2363 Algebraic Topology +1207.2408 Optimization and Control +1207.2685 Number Theory +1207.2964 Algebraic Topology +1207.3299 Quantum Algebra +1207.4855 Symplectic Geometry +1207.4980 Algebraic Geometry +1207.5090 Operator Algebras +1207.6898 Analysis of PDEs +1207.7012 Algebraic Geometry +1208.0703 Number Theory +1208.1492 Representation Theory +1208.1671 Rings and Algebras +1208.1747 Number Theory +1208.1808 Analysis of PDEs +1208.2040 Differential Geometry +1208.2108 Analysis of PDEs +1208.2152 Differential Geometry +1208.2484 Classical Analysis and ODEs +1208.3547 Algebraic Geometry +1208.3917 Geometric Topology +1208.5326 Number Theory +1208.5548 Functional Analysis +1208.5788 Geometric Topology +1208.5806 Number Theory +1208.6339 Geometric Topology +1209.0238 Rings and Algebras +1209.0581 Biological Physics +1209.1256 Probability +1209.1268 Geometric Topology +1209.1894 Number Theory +1209.2068 Algebraic Geometry +1209.2882 Representation Theory +1209.3529 Symplectic Geometry +1210.0180 Optimization and Control +1210.0212 Algebraic Topology +1210.0382 Geometric Topology +1210.1322 Analysis of PDEs +1210.1460 Combinatorics +1210.1982 Commutative Algebra +1210.3785 Algebraic Geometry +1210.4088 Analysis of PDEs +1210.4127 Number Theory +1210.4653 Algebraic Geometry +1210.5433 Combinatorics +1210.6184 Representation Theory +1210.6399 Quantum Algebra +1210.6879 Analysis of PDEs +1210.6946 Number Theory +1210.7226 Analysis of PDEs +1210.7534 Analysis of PDEs +1210.7602 Analysis of PDEs +1210.7713 Differential Geometry +1210.8069 Combinatorics +1210.8091 Operator Algebras +1211.0031 Group Theory +1211.1054 Analysis of PDEs +1211.1353 Number Theory +1211.1423 Geometric Topology +1211.2005 Classical Analysis and ODEs +1211.2173 +1211.3066 Geometric Topology +1211.3197 Commutative Algebra +1211.3637 Geometric Topology +1211.3712 Geometric Topology +1211.4754 Differential Geometry +1211.5366 Representation Theory +1211.7111 Analysis of PDEs +1211.7198 Dynamical Systems +1211.7281 Analysis of PDEs +1212.0150 Representation Theory +1212.0176 Differential Geometry +1212.1010 Number Theory +1212.1569 Mesoscale and Nanoscale Physics +1212.1906 Differential Geometry +1212.2644 Numerical Analysis +1212.2739 Group Theory +1212.6117 Geometric Topology +1301.1101 Geometric Topology +1301.1210 Analysis of PDEs +1301.1579 +1301.1859 Analysis of PDEs +1301.2983 Methodology +1301.3976 Number Theory +1301.4210 Algebraic Geometry +1301.4369 Geometric Topology +1301.6217 +1301.7284 Algebraic Geometry +1301.7647 Number Theory +1302.0048 Algebraic Geometry +1302.0979 Number Theory +1302.1247 Geometric Topology +1302.1407 Metric Geometry +1302.3149 Differential Geometry +1302.4108 Dynamical Systems +1302.4850 Classical Analysis and ODEs +1302.5188 Geometric Topology +1302.5191 Operator Algebras +1302.5659 Functional Analysis +1302.6457 Differential Geometry +1303.0234 Number Theory +1303.0655 Metric Geometry +1303.0689 Optics +1303.1032 Algebraic Geometry +1303.1421 Differential Geometry +1303.1694 K-Theory and Homology +1303.2128 Geometric Topology +1303.2862 Differential Geometry +1303.3750 Methodology +1303.4040 Functional Analysis +1303.4125 Number Theory +1303.4167 Analysis of PDEs +1303.5278 Geometric Topology +1303.5944 +1303.6019 Differential Geometry +1303.6843 Algebraic Geometry +1303.7196 Analysis of PDEs +1304.0551 Optics +1304.2954 +1304.3491 Representation Theory +1304.4135 Analysis of PDEs +1304.4295 Classical Analysis and ODEs +1304.4827 Differential Geometry +1304.4871 Algebraic Geometry +1304.5204 Number Theory +1304.5376 Algebraic Geometry +1304.6651 Analysis of PDEs +1304.7274 Commutative Algebra +1305.0289 Metric Geometry +1305.0402 Differential Geometry +1305.0411 Differential Geometry +1305.1715 Analysis of PDEs +1305.1905 Differential Geometry +1305.2142 Algebraic Geometry +1305.2501 Representation Theory +1305.2896 Analysis of PDEs +1305.3231 Metric Geometry +1305.4138 Optics +1305.4658 Optics +1305.5293 Geometric Topology +1305.5403 Group Theory +1305.6165 Numerical Analysis +1305.7020 Differential Geometry +1305.7306 Quantum Algebra +1306.0133 Number Theory +1306.1055 Classical Analysis and ODEs +1306.3549 Differential Geometry +1306.3634 Rings and Algebras +1306.3698 Quantum Algebra +1306.4431 Differential Geometry +1306.4670 Differential Geometry +1306.5227 Probability +1306.6362 Number Theory +1307.1033 Algebraic Geometry +1307.1495 Geometric Topology +1307.2462 Analysis of PDEs +1307.2871 Differential Geometry +1307.3351 Algebraic Topology +1307.3977 Algebraic Geometry +1307.3981 Analysis of PDEs +1307.4646 Algebraic Geometry +1307.5284 Analysis of PDEs +1307.5650 Algebraic Geometry +1307.5944 Machine Learning +1307.6062 Mesoscale and Nanoscale Physics +1307.6843 Information Theory +1307.7739 Representation Theory +1307.8110 Number Theory +1307.8402 Analysis of PDEs +1308.0935 K-Theory and Homology +1308.0998 Analysis of PDEs +1308.2213 Rings and Algebras +1308.2332 Theory +1308.2374 Differential Geometry +1308.3022 Geometric Topology +1308.3266 Geometric Topology +1308.3339 Numerical Analysis +1308.4219 Algebraic Topology +1308.4388 Representation Theory +1308.4640 Numerical Analysis +1308.4991 Number Theory +1308.5197 Operator Algebras +1308.5544 Differential Geometry +1308.6011 Rings and Algebras +1309.0452 Symplectic Geometry +1309.0550 Geometric Topology +1309.0655 Analysis of PDEs +1309.0795 Analysis of PDEs +1309.0859 Representation Theory +1309.1486 Theory +1309.1639 Analysis of PDEs +1309.1661 Algebraic Geometry +1309.2123 Number Theory +1309.2743 Optics +1309.2793 Quantum Algebra +1309.3762 Representation Theory +1309.3875 Differential Geometry +1309.3898 Analysis of PDEs +1309.4370 K-Theory and Homology +1309.5072 Symplectic Geometry +1309.5322 Spectral Theory +1309.6097 Group Theory +1309.7018 Group Theory +1309.7103 Dynamical Systems +1310.0604 +1310.0719 Differential Geometry +1310.0724 Representation Theory +1310.1211 Analysis of PDEs +1310.1473 +1310.1749 Analysis of PDEs +1310.2207 Spectral Theory +1310.2508 Number Theory +1310.2537 Geometric Topology +1310.2735 Geometric Topology +1310.2784 Algebraic Geometry +1310.3336 Algebraic Topology +1310.3798 Representation Theory +1310.3862 Geometric Topology +1310.3874 Differential Geometry +1310.4448 Number Theory +1310.4476 Geometric Topology +1310.4806 Group Theory +1310.5278 Theory +1310.5844 Probability +1310.8505 Algebraic Geometry +1311.0817 Differential Geometry +1311.1461 Theory +1311.1809 Differential Geometry +1311.1930 Dynamical Systems +1311.2343 K-Theory and Homology +1311.2431 Numerical Analysis +1311.2477 Analysis of PDEs +1311.2804 Geometric Topology +1311.3756 Symplectic Geometry +1311.4024 +1311.5004 Differential Geometry +1311.5097 Differential Geometry +1311.6727 Differential Geometry +1311.7062 Combinatorics +1311.7191 Differential Geometry +1312.0913 Geometric Topology +1312.2283 Complex Variables +1312.2577 Algebraic Geometry +1312.3417 Information Theory +1312.3584 Differential Geometry +1312.3705 Geometric Topology +1312.5470 Representation Theory +1312.5787 Analysis of PDEs +1312.5958 Quantum Algebra +1312.6465 Group Theory +1312.7166 Algebraic Topology +1401.0499 Group Theory +1401.0552 Algebraic Geometry +1401.0792 Superconductivity +1401.0854 Number Theory +1401.1953 Symplectic Geometry +1401.2313 Numerical Analysis +1401.2478 Geometric Topology +1401.2584 Algebraic Geometry +1401.2715 Analysis of PDEs +1401.2935 Analysis of PDEs +1401.3264 Geometric Topology +1401.3764 Number Theory +1401.4342 Applications +1401.5670 +1401.7184 Differential Geometry +1401.7379 Algebraic Geometry +1402.0811 Number Theory +1402.1049 Differential Geometry +1402.1439 Algebraic Geometry +1402.1562 Statistical Mechanics +1402.1632 Number Theory +1402.1671 Phenomenology +1402.1980 Operator Algebras +1402.2106 Functional Analysis +1402.2636 Analysis of PDEs +1402.2984 +1402.4052 Commutative Algebra +1402.4082 Number Theory +1402.4177 Analysis of PDEs +1402.4751 Analysis of PDEs +1402.5854 Probability +1402.5980 Theory +1402.7160 Applications +1403.0203 +1403.0553 Number Theory +1403.0624 Classical Analysis and ODEs +1403.0767 Quantum Gases +1403.0924 Superconductivity +1403.1741 Algebraic Geometry +1403.2554 Geometric Topology +1403.2968 Strongly Correlated Electrons +1403.3799 Operator Algebras +1403.3954 Metric Geometry +1403.4805 Theory +1403.4875 Representation Theory +1403.5070 Analysis of PDEs +1403.5593 Mesoscale and Nanoscale Physics +1403.5767 +1403.5958 Operator Algebras +1403.6211 Geometric Topology +1403.6362 Differential Geometry +1403.6452 Group Theory +1403.6867 Analysis of PDEs +1403.6981 K-Theory and Homology +1403.7140 Analysis of PDEs +1403.7169 Analysis of PDEs +1403.7567 Theory +1403.7584 Rings and Algebras +1404.0050 Complex Variables +1404.0190 Differential Geometry +1404.1006 Physics and Society +1404.1552 Phenomenology +1404.3008 Applications +1404.3390 Algebraic Geometry +1404.4007 Number Theory +1404.4399 Commutative Algebra +1404.4657 Dynamical Systems +1404.5159 Analysis of PDEs +1404.5585 Computation and Language +1404.5938 Algebraic Geometry +1404.6362 Analysis of PDEs +1404.6853 Machine Learning +1404.7052 Theory +1404.7085 Theory +1404.7304 Theory +1404.7635 Theory +1405.0097 Theory +1405.0116 Analysis of PDEs +1405.1347 Mesoscale and Nanoscale Physics +1405.1538 Analysis of PDEs +1405.1830 Theory +1405.2014 Analysis of PDEs +1405.2348 Algebraic Topology +1405.2353 Theory +1405.2546 Combinatorics +1405.4999 Theory +1405.5551 Functional Analysis +1405.5722 Geometric Topology +1405.5904 Theory +1405.6125 Algebraic Geometry +1405.6554 Numerical Analysis +1405.6957 Algebraic Geometry +1405.7754 Complex Variables +1405.7950 Quantum Algebra +1406.0279 Geometric Topology +1406.0434 Group Theory +1406.1932 Group Theory +1406.1990 Number Theory +1406.2517 Quantum Algebra +1406.2723 +1406.3925 Instrumentation and Detectors +1406.4232 Group Theory +1406.4436 Plasma Physics +1406.5242 Logic +1406.5912 Number Theory +1406.6502 Number Theory +1406.6674 Number Theory +1406.6723 Functional Analysis +1406.7012 Atomic Physics +1406.7254 +1406.7767 Strongly Correlated Electrons +1407.0284 Theory +1407.1436 Analysis of PDEs +1407.1896 Fluid Dynamics +1407.2472 Classical Analysis and ODEs +1407.2966 Algebraic Geometry +1407.3488 Geophysics +1407.3705 Geometric Topology +1407.4235 Data Structures and Algorithms +1407.4435 Number Theory +1407.4737 Symplectic Geometry +1407.5146 Algebraic Geometry +1407.5181 Algebraic Geometry +1407.5245 Computer Vision and Pattern Recognition +1407.5306 Rings and Algebras +1407.5322 Theory +1407.5505 Populations and Evolution +1407.6375 Representation Theory +1407.6734 Analysis of PDEs +1407.6936 Differential Geometry +1407.6956 Theory +1407.7298 Accelerator Physics +1407.8431 Phenomenology +1407.8464 Algebraic Geometry +1407.8541 Dynamical Systems +1407.8543 Combinatorics +1408.0564 Theory +1408.0571 Theory +1408.1733 Number Theory +1408.2879 Combinatorics +1408.3051 Classical Analysis and ODEs +1408.3289 +1408.3749 Analysis of PDEs +1408.3824 Computational Physics +1408.3982 Group Theory +1408.4061 +1408.4094 +1408.4299 Representation Theory +1408.4783 Classical Analysis and ODEs +1408.5361 Commutative Algebra +1408.5457 Phenomenology +1408.5735 Data Analysis, Statistics and Probability +1408.5822 Mesoscale and Nanoscale Physics +1408.6018 +1408.6506 Number Theory +1408.6700 Mesoscale and Nanoscale Physics +1408.7101 Spectral Theory +1409.0593 Biological Physics +1409.1188 Optics +1409.1286 Analysis of PDEs +1409.1641 Differential Geometry +1409.1810 +1409.2335 Cosmology and Nongalactic Astrophysics +1409.2700 Chemical Physics +1409.2912 Differential Geometry +1409.3573 +1409.3672 Materials Science +1409.4525 Analysis of PDEs +1409.5255 +1409.5494 Quantum Gases +1409.5689 Functional Analysis +1409.5851 Phenomenology +1409.5890 Classical Analysis and ODEs +1409.5967 Rings and Algebras +1409.6364 Materials Science +1409.6535 Number Theory +1409.6572 +1409.6754 Theory +1409.6778 Theory +1409.7015 Algebraic Geometry +1409.7076 Theory +1409.7335 Probability +1409.7505 Biological Physics +1409.7899 Symplectic Geometry +1409.7958 Algebraic Topology +1409.8316 Geometric Topology +1409.8533 Algebraic Geometry +1410.0668 Theory +1410.1367 Atmospheric and Oceanic Physics +1410.1433 Analysis of PDEs +1410.1763 Classical Analysis and ODEs +1410.1827 Soft Condensed Matter +1410.2103 Algebraic Topology +1410.2300 Numerical Analysis +1410.3899 Systems and Control +1410.3943 Systems and Control +1410.5569 K-Theory and Homology +1410.6062 Analysis of PDEs +1410.6974 Geometric Topology +1410.7073 Number Theory +1410.7131 Atomic Physics +1410.7179 Materials Science +1410.8032 Atomic Physics +1410.8038 Mesoscale and Nanoscale Physics +1410.8341 Statistical Mechanics +1410.8816 Computational Complexity +1410.8836 Group Theory +1410.8840 +1411.0545 Symplectic Geometry +1411.0957 Fluid Dynamics +1411.1164 +1411.1616 Strongly Correlated Electrons +1411.1912 Classical Physics +1411.2429 Distributed, Parallel, and Cluster Computing +1411.2431 Algebraic Geometry +1411.2538 Functional Analysis +1411.3213 Plasma Physics +1411.4641 +1411.4690 High Energy Astrophysical Phenomena +1411.4703 Quantum Gases +1411.5242 Materials Science +1411.5272 Representation Theory +1411.6605 Phenomenology +1411.7146 Statistical Mechanics +1411.7499 Differential Geometry +1412.0249 Soft Condensed Matter +1412.0297 Materials Science +1412.0631 Operator Algebras +1412.0678 Cosmology and Nongalactic Astrophysics +1412.0826 Computer Vision and Pattern Recognition +1412.0886 Space Physics +1412.1033 +1412.1071 Mesoscale and Nanoscale Physics +1412.2376 Combinatorics +1412.2382 Analysis of PDEs +1412.2668 +1412.2805 Soft Condensed Matter +1412.2865 Combinatorics +1412.2998 Cosmology and Nongalactic Astrophysics +1412.3152 Theory +1412.3337 Theory +1412.4417 Instrumentation and Methods for Astrophysics +1412.5216 Analysis of PDEs +1412.5964 Analysis of PDEs +1412.6155 Social and Information Networks +1412.6217 Optics +1412.6288 Numerical Analysis +1412.6720 Information Theory +1412.6968 Category Theory +1412.7227 General Finance +1412.8376 Mesoscale and Nanoscale Physics +1501.00628 Statistical Mechanics +1501.00867 Solar and Stellar Astrophysics +1501.01018 +1501.01112 Phenomenology +1501.01380 Phenomenology +1501.02091 Quantum Gases +1501.03012 Fluid Dynamics +1501.03025 Optics +1501.03428 Statistical Mechanics +1501.03515 Theory +1501.03718 Analysis of PDEs +1501.03800 Plasma Physics +1501.04414 Numerical Analysis +1501.04685 Mesoscale and Nanoscale Physics +1501.04705 Information Theory +1501.04723 Instrumentation and Detectors +1501.04776 Mesoscale and Nanoscale Physics +1501.04988 Phenomenology +1501.05091 Physics and Society +1501.05094 Quantum Algebra +1501.05370 Probability +1501.05768 Chemical Physics +1501.05884 Materials Science +1501.05945 +1501.05966 Instrumentation and Detectors +1501.06077 +1501.06895 Theory +1501.06923 Phenomenology +1501.06924 +1501.06961 Strongly Correlated Electrons +1501.07089 +1501.07195 Logic in Computer Science +1501.07299 Algebraic Geometry +1501.07483 +1501.07523 Phenomenology +1501.07654 Differential Geometry +1502.00924 +1502.00959 Representation Theory +1502.01044 Statistical Mechanics +1502.01094 Machine Learning +1502.01260 Methodology +1502.01373 Mesoscale and Nanoscale Physics +1502.01437 Theory +1502.01466 Instrumentation and Detectors +1502.01619 Mesoscale and Nanoscale Physics +1502.01950 Mesoscale and Nanoscale Physics +1502.02464 Biological Physics +1502.03073 Theory +1502.03125 Cosmology and Nongalactic Astrophysics +1502.03140 Pattern Formation and Solitons +1502.03435 Analysis of PDEs +1502.03523 Materials Science +1502.03904 Geometric Topology +1502.04573 +1502.04594 Analysis of PDEs +1502.04668 Theory +1502.04720 Analysis of PDEs +1502.05163 Algebraic Geometry +1502.05325 +1502.05394 Physics and Society +1502.05405 Theory +1502.05537 Statistical Mechanics +1502.05588 Materials Science +1502.05601 Solar and Stellar Astrophysics +1502.05643 Analysis of PDEs +1502.06257 +1502.06300 Instrumentation and Detectors +1502.07010 Atmospheric and Oceanic Physics +1502.07066 Information Theory +1502.07498 Superconductivity +1502.07563 +1502.07577 Information Theory +1502.07684 +1502.07939 Multimedia +1503.00122 +1503.00217 Materials Science +1503.00283 Analysis of PDEs +1503.00287 Statistical Mechanics +1503.00339 Computation and Language +1503.00641 +1503.00780 Astrophysics of Galaxies +1503.00954 Adaptation and Self-Organizing Systems +1503.01053 Data Analysis, Statistics and Probability +1503.01076 General Physics +1503.01294 Theory +1503.01319 Functional Analysis +1503.01384 Quantum Gases +1503.01608 +1503.01864 Numerical Analysis +1503.02211 Differential Geometry +1503.02474 Computational Physics +1503.02483 Optics +1503.02595 Cosmology and Nongalactic Astrophysics +1503.02904 Quantitative Methods +1503.03259 Atomic Physics +1503.03406 +1503.03857 +1503.03914 Numerical Analysis +1503.03936 Numerical Analysis +1503.04084 Physics and Society +1503.04085 Physics and Society +1503.04111 Analysis of PDEs +1503.04188 Materials Science +1503.04620 Neurons and Cognition +1503.04698 +1503.04719 Phenomenology +1503.04789 Accelerator Physics +1503.04822 +1503.04920 Fluid Dynamics +1503.05046 Phenomenology +1503.05048 Plasma Physics +1503.05057 Mesoscale and Nanoscale Physics +1503.05095 Theory +1503.05121 Number Theory +1503.05126 Phenomenology +1503.05460 +1503.05505 Phenomenology +1503.05569 Materials Science +1503.05634 Theory +1503.05637 Information Theory +1503.05687 Instrumentation and Detectors +1503.06578 Cosmology and Nongalactic Astrophysics +1503.06679 Information Theory +1503.06785 Theory +1503.06914 Information Theory +1503.06929 Discrete Mathematics +1503.07207 Operator Algebras +1503.07210 Mesoscale and Nanoscale Physics +1503.07267 Superconductivity +1503.07305 +1503.07401 Human-Computer Interaction +1503.07416 Numerical Analysis +1503.07698 Instrumentation and Methods for Astrophysics +1503.07865 +1503.07955 Probability +1503.07961 Solar and Stellar Astrophysics +1503.08013 Portfolio Management +1503.08116 Numerical Analysis +1503.08196 Methodology +1503.08216 Phenomenology +1503.08233 Pattern Formation and Solitons +1503.08299 Materials Science +1503.08334 Plasma Physics +1503.08701 Differential Geometry +1503.08704 Phenomenology +1503.08729 Materials Science +1503.08824 Quantum Gases +1503.08861 Phenomenology +1503.08864 High Energy Astrophysical Phenomena +1503.08935 Experiment +1503.08977 Accelerator Physics +1503.09007 +1504.00336 Other Condensed Matter +1504.00392 Chemical Physics +1504.00643 +1504.00653 Social and Information Networks +1504.00787 Physics and Society +1504.00861 Phenomenology +1504.00986 Chemical Physics +1504.01319 High Energy Astrophysical Phenomena +1504.01521 Strongly Correlated Electrons +1504.01621 Symplectic Geometry +1504.01766 Optics +1504.02204 High Energy Astrophysical Phenomena +1504.02249 Optimization and Control +1504.02434 Operator Algebras +1504.02458 Phenomenology +1504.02711 Instrumentation and Detectors +1504.02793 Instrumentation and Detectors +1504.02854 Optimization and Control +1504.02907 Quantum Gases +1504.03088 Materials Science +1504.03245 +1504.03538 +1504.03549 Statistical Mechanics +1504.03970 Dynamical Systems +1504.04063 Optics +1504.04256 Spectral Theory +1504.04268 Phenomenology +1504.04381 Phenomenology +1504.04469 Phenomenology +1504.04571 Space Physics +1504.04786 Quantum Gases +1504.04949 Mesoscale and Nanoscale Physics +1504.05030 Numerical Analysis +1504.05170 Probability +1504.05541 High Energy Astrophysical Phenomena +1504.05658 Soft Condensed Matter +1504.05775 Cell Behavior +1504.06202 Accelerator Physics +1504.06233 Accelerator Physics +1504.06289 Numerical Analysis +1504.06331 Chemical Physics +1504.06802 Theory +1504.06849 Algebraic Geometry +1504.06922 Physics and Society +1504.07214 Classical Analysis and ODEs +1504.07223 +1504.07276 Theory +1504.07285 +1504.07515 Mesoscale and Nanoscale Physics +1504.07617 Phenomenology +1504.07975 +1504.08154 Solar and Stellar Astrophysics +1504.08279 +1504.08311 Materials Science +1504.08348 Theory +1505.00188 Physics and Society +1505.00344 Mathematical Software +1505.00347 Soft Condensed Matter +1505.00389 Computer Vision and Pattern Recognition +1505.00499 Mesoscale and Nanoscale Physics +1505.00642 +1505.00945 Optics +1505.01006 +1505.01263 +1505.01370 Strongly Correlated Electrons +1505.01399 Phenomenology +1505.01499 Plasma Physics +1505.01528 Classical Analysis and ODEs +1505.01608 Soft Condensed Matter +1505.01636 Experiment +1505.01960 Quantum Gases +1505.02107 Phenomenology +1505.02116 Mesoscale and Nanoscale Physics +1505.02117 +1505.02201 Populations and Evolution +1505.02285 +1505.02398 +1505.02571 Soft Condensed Matter +1505.02698 +1505.02709 +1505.03029 Soft Condensed Matter +1505.03384 Solar and Stellar Astrophysics +1505.03565 Superconductivity +1505.03583 Phenomenology +1505.03746 +1505.03866 Astrophysics of Galaxies +1505.03876 Optimization and Control +1505.03888 Phenomenology +1505.03955 Cosmology and Nongalactic Astrophysics +1505.04004 Theory +1505.04146 Cosmology and Nongalactic Astrophysics +1505.04359 +1505.04525 Statistical Mechanics +1505.04540 Instrumentation and Detectors +1505.04569 Hardware Architecture +1505.04604 Physics Education +1505.05015 Mesoscale and Nanoscale Physics +1505.05172 Mesoscale and Nanoscale Physics +1505.05237 Phenomenology +1505.05299 Solar and Stellar Astrophysics +1505.05333 Solar and Stellar Astrophysics +1505.05488 Phenomenology +1505.05589 Phenomenology +1505.05591 +1505.05850 +1505.05862 Superconductivity +1505.05884 Theory +1505.05887 Theory +1505.05897 Lattice +1505.05944 +1505.05954 Optics +1505.05985 Phenomenology +1505.06076 Computational Physics +1505.06456 Phenomenology +1505.06612 High Energy Astrophysical Phenomena +1505.06801 Strongly Correlated Electrons +1505.06802 Disordered Systems and Neural Networks +1505.07156 Optics +1505.07180 Mesoscale and Nanoscale Physics +1505.07213 Optics +1505.07288 Strongly Correlated Electrons +1505.07301 Theory +1505.07439 Phenomenology +1505.07474 Instrumentation and Methods for Astrophysics +1505.07590 Numerical Analysis +1505.07898 Fluid Dynamics +1505.07942 Materials Science +1505.08016 Optics +1506.00039 Quantum Gases +1506.00205 Statistical Mechanics +1506.00280 Quantum Gases +1506.00487 +1506.00523 +1506.00608 Instrumentation and Detectors +1506.00647 Phenomenology +1506.00836 Chaotic Dynamics +1506.01045 Theory +1506.01154 Information Theory +1506.01235 Dynamical Systems +1506.01251 Solar and Stellar Astrophysics +1506.01278 Materials Science +1506.01312 Solar and Stellar Astrophysics +1506.01460 Analysis of PDEs +1506.01578 Differential Geometry +1506.01579 Fluid Dynamics +1506.01807 Theory +1506.02111 Statistical Mechanics +1506.02205 Materials Science +1506.02296 +1506.02302 Instrumentation and Detectors +1506.02330 Optics +1506.02332 Materials Science +1506.02403 Geophysics +1506.02411 High Energy Astrophysical Phenomena +1506.02415 Materials Science +1506.02419 +1506.02525 Mesoscale and Nanoscale Physics +1506.02527 Quantum Gases +1506.02534 Analysis of PDEs +1506.02537 Commutative Algebra +1506.02624 Phenomenology +1506.02760 +1506.02800 Experiment +1506.02807 Atmospheric and Oceanic Physics +1506.02817 +1506.02971 Soft Condensed Matter +1506.03082 Quantum Gases +1506.03207 Atomic Physics +1506.03221 Earth and Planetary Astrophysics +1506.03239 Experiment +1506.03390 Superconductivity +1506.03732 Materials Science +1506.03738 Classical Physics +1506.03991 Mesoscale and Nanoscale Physics +1506.04295 Atmospheric and Oceanic Physics +1506.04381 Statistical Mechanics +1506.04382 +1506.04414 +1506.04753 Solar and Stellar Astrophysics +1506.04777 Mesoscale and Nanoscale Physics +1506.04795 Theory +1506.04997 +1506.05033 +1506.05036 Computer Vision and Pattern Recognition +1506.05037 Disordered Systems and Neural Networks +1506.05050 +1506.05085 Learning +1506.05190 Optics +1506.05359 Mesoscale and Nanoscale Physics +1506.05363 Solar and Stellar Astrophysics +1506.05490 Social and Information Networks +1506.05625 Materials Science +1506.05670 Analysis of PDEs +1506.05978 Statistical Mechanics +1506.06206 Statistical Mechanics +1506.06209 Strongly Correlated Electrons +1506.06210 Soft Condensed Matter +1506.06257 Materials Science +1506.06393 Physics and Society +1506.06443 Plasma Physics +1506.06466 Probability +1506.06846 Phenomenology +1506.06927 Optics +1506.06955 Soft Condensed Matter +1506.07054 Information Theory +1506.07130 Fluid Dynamics +1506.07177 Phenomenology +1506.07188 Theory +1506.07201 Phenomenology +1506.07247 Optimization and Control +1506.07542 Optics +1506.07593 +1506.07938 Superconductivity +1506.08016 +1506.08132 Statistical Mechanics +1506.08156 Theory +1506.08174 Optics +1506.08241 +1506.08276 +1506.08305 Mesoscale and Nanoscale Physics +1506.08371 Instrumentation and Detectors +1506.08390 Phenomenology +1506.08433 Theory +1506.08442 Phenomenology +1506.08446 Strongly Correlated Electrons +1506.08481 Computational Physics +1506.08490 Solar and Stellar Astrophysics +1506.08504 Statistics Theory +1506.08508 Materials Science +1506.08539 Optics +1506.08609 Cosmology and Nongalactic Astrophysics +1506.08739 +1506.08795 Theory +1506.08799 Phenomenology +1506.08856 Instrumentation and Detectors +1506.08883 +1506.09020 +1506.09199 Instrumentation and Detectors +1507.00035 Atomic Physics +1507.00082 Analysis of PDEs +1507.00247 General Physics +1507.00261 Theory +1507.00361 Strongly Correlated Electrons +1507.00422 Mesoscale and Nanoscale Physics +1507.00610 Physics and Society +1507.00858 Materials Science +1507.00974 Optics +1507.01252 Soft Condensed Matter +1507.01352 Materials Science +1507.01401 Theory +1507.01582 Theory +1507.01680 Mesoscale and Nanoscale Physics +1507.01829 Classical Analysis and ODEs +1507.01864 Classical Physics +1507.01874 Fluid Dynamics +1507.01910 Solar and Stellar Astrophysics +1507.01950 Theory +1507.01994 Social and Information Networks +1507.02009 Solar and Stellar Astrophysics +1507.02014 Materials Science +1507.02060 Earth and Planetary Astrophysics +1507.02073 Experiment +1507.02116 Strongly Correlated Electrons +1507.02181 +1507.02185 Computational Physics +1507.02197 +1507.02215 Analysis of PDEs +1507.02325 Statistical Mechanics +1507.02354 High Energy Astrophysical Phenomena +1507.02512 +1507.02548 Theory +1507.02649 +1507.02756 +1507.02785 Instrumentation and Detectors +1507.02915 Differential Geometry +1507.03023 Mesoscale and Nanoscale Physics +1507.03115 Mesoscale and Nanoscale Physics +1507.03381 Mesoscale and Nanoscale Physics +1507.03522 General Physics +1507.03590 Astrophysics of Galaxies +1507.03593 Solar and Stellar Astrophysics +1507.03649 Earth and Planetary Astrophysics +1507.03697 +1507.03765 +1507.03774 +1507.03793 Strongly Correlated Electrons +1507.03806 Optics +1507.03812 Mesoscale and Nanoscale Physics +1507.03912 Fluid Dynamics +1507.04012 Plasma Physics +1507.04047 Distributed, Parallel, and Cluster Computing +1507.04066 Mesoscale and Nanoscale Physics +1507.04103 Numerical Analysis +1507.04225 Mesoscale and Nanoscale Physics +1507.04270 Mesoscale and Nanoscale Physics +1507.04319 Learning +1507.04446 Plasma Physics +1507.04456 Materials Science +1507.04490 Materials Science +1507.04514 Mesoscale and Nanoscale Physics +1507.04557 Theory +1507.04694 Phenomenology +1507.04726 Mesoscale and Nanoscale Physics +1507.04937 +1507.04949 Atomic Physics +1507.05218 Theory +1507.05261 Classical Analysis and ODEs +1507.05267 Phenomenology +1507.05318 Analysis of PDEs +1507.05320 +1507.05322 Biological Physics +1507.05400 Superconductivity +1507.05420 Theory +1507.05426 Theory +1507.05496 Quantum Gases +1507.05628 Phenomenology +1507.05792 Theory +1507.05841 Computational Complexity +1507.06004 Subcellular Processes +1507.06063 Materials Science +1507.06088 Strongly Correlated Electrons +1507.06130 Theory +1507.06164 Phenomenology +1507.06170 Earth and Planetary Astrophysics +1507.06177 Disordered Systems and Neural Networks +1507.06279 Spectral Theory +1507.06419 Mesoscale and Nanoscale Physics +1507.06425 Mesoscale and Nanoscale Physics +1507.06426 Quantum Gases +1507.06428 +1507.06434 Strongly Correlated Electrons +1507.06468 Instrumentation and Detectors +1507.06973 Optics +1507.07166 +1507.07223 Instrumentation and Detectors +1507.07240 Theory +1507.07347 Soft Condensed Matter +1507.07404 +1507.07428 Mesoscale and Nanoscale Physics +1507.07429 Distributed, Parallel, and Cluster Computing +1507.07430 Distributed, Parallel, and Cluster Computing +1507.07525 Phenomenology +1507.07559 Theory +1507.07741 Pattern Formation and Solitons +1507.07827 Numerical Analysis +1507.07834 Phenomenology +1507.07841 Phenomenology +1507.07867 +1507.07972 Atomic Physics +1507.08019 Plasma Physics +1507.08067 Phenomenology +1507.08157 Computational Physics +1507.08176 Optics +1507.08183 Disordered Systems and Neural Networks +1507.08239 Fluid Dynamics +1507.08352 Mesoscale and Nanoscale Physics +1507.08460 Mesoscale and Nanoscale Physics +1507.08468 Mesoscale and Nanoscale Physics +1507.08557 Optics +1507.08646 +1507.08657 Theory +1507.08673 Phenomenology +1507.08844 Mesoscale and Nanoscale Physics +1508.00100 Materials Science +1508.00122 Soft Condensed Matter +1508.00167 +1508.00260 Mesoscale and Nanoscale Physics +1508.00300 Materials Science +1508.00402 Phenomenology +1508.00500 Materials Science +1508.00557 +1508.00558 +1508.00578 Quantum Gases +1508.00624 Mesoscale and Nanoscale Physics +1508.00658 Materials Science +1508.00660 +1508.00678 Earth and Planetary Astrophysics +1508.00693 Physics and Society +1508.00733 Quantum Gases +1508.00745 Computational Physics +1508.00771 Materials Science +1508.00833 Materials Science +1508.00838 Instrumentation and Detectors +1508.00839 Medical Physics +1508.01061 Phenomenology +1508.01108 Computer Vision and Pattern Recognition +1508.01111 Strongly Correlated Electrons +1508.01143 Statistical Mechanics +1508.01201 Theory +1508.01232 Statistical Mechanics +1508.01352 Physics and Society +1508.01370 Cosmology and Nongalactic Astrophysics +1508.01380 Statistical Mechanics +1508.01414 Atomic and Molecular Clusters +1508.01440 Chaotic Dynamics +1508.01449 Phenomenology +1508.01516 Phenomenology +1508.01527 Theory +1508.01597 +1508.01650 Experiment +1508.01652 +1508.01702 +1508.01746 Sound +1508.01785 +1508.01812 Phenomenology +1508.01897 Phenomenology +1508.01948 Phenomenology +1508.02072 Classical Physics +1508.02107 Mesoscale and Nanoscale Physics +1508.02114 Quantum Gases +1508.02165 Materials Science +1508.02180 Phenomenology +1508.02269 Strongly Correlated Electrons +1508.02457 Atomic Physics +1508.02475 Statistical Mechanics +1508.02510 Instrumentation and Methods for Astrophysics +1508.02516 Materials Science +1508.02522 +1508.02534 Phenomenology +1508.02554 Theory +1508.02561 High Energy Astrophysical Phenomena +1508.02696 +1508.02809 Dynamical Systems +1508.02892 Plasma Physics +1508.03132 Quantum Gases +1508.03172 Phenomenology +1508.03245 Phenomenology +1508.03290 Classical Physics +1508.03300 Materials Science +1508.03361 +1508.03368 Disordered Systems and Neural Networks +1508.03392 +1508.03430 Theory +1508.03456 Materials Science +1508.03491 +1508.03551 +1508.03563 Materials Science +1508.03627 Theory +1508.03634 +1508.03743 Materials Science +1508.03803 Statistical Mechanics +1508.03967 Plasma Physics +1508.04012 Optics +1508.04067 Materials Science +1508.04118 Phenomenology +1508.04176 Phenomenology +1508.04187 Adaptation and Self-Organizing Systems +1508.04223 Statistical Mechanics +1508.04252 Disordered Systems and Neural Networks +1508.04287 Mesoscale and Nanoscale Physics +1508.04292 Theory +1508.04313 Theory +1508.04346 Astrophysics of Galaxies +1508.04355 Mesoscale and Nanoscale Physics +1508.04391 Materials Science +1508.04415 Atomic Physics +1508.04493 Theory +1508.04497 Mesoscale and Nanoscale Physics +1508.04539 High Energy Astrophysical Phenomena +1508.04592 Phenomenology +1508.04743 Atomic Physics +1508.04754 Statistical Finance +1508.04776 Theory +1508.04788 Materials Science +1508.04844 +1508.05094 Phenomenology +1508.05113 Solar and Stellar Astrophysics +1508.05287 Phenomenology +1508.05350 Theory +1508.05402 Superconductivity +1508.05422 +1508.05472 Phenomenology +1508.05521 Solar and Stellar Astrophysics +1508.05610 Computational Physics +1508.05722 Plasma Physics +1508.05731 Instrumentation and Detectors +1508.05758 Soft Condensed Matter +1508.05781 Superconductivity +1508.05789 Information Theory +1508.05799 Theory +1508.05859 Representation Theory +1508.05876 Mesoscale and Nanoscale Physics +1508.05877 Optics +1508.05940 Phenomenology +1508.06057 Phenomenology +1508.06290 Instrumentation and Methods for Astrophysics +1508.06357 Phenomenology +1508.06521 Optics +1508.06544 +1508.06601 Instrumentation and Methods for Astrophysics +1508.06646 Astrophysics of Galaxies +1508.06648 Mesoscale and Nanoscale Physics +1508.06658 Plasma Physics +1508.06661 Instrumentation and Methods for Astrophysics +1508.06664 Plasma Physics +1508.06687 Functional Analysis +1508.06691 Quantum Gases +1508.06740 Cosmology and Nongalactic Astrophysics +1508.06850 Optics +1508.06964 Phenomenology +1508.07029 Instrumentation and Detectors +1508.07031 +1508.07042 Soft Condensed Matter +1508.07074 Instrumentation and Detectors +1508.07085 Instrumentation and Detectors +1508.07104 Phenomenology +1508.07105 Differential Geometry +1508.07143 Instrumentation and Detectors +1508.07152 Pattern Formation and Solitons +1508.07160 +1508.07210 Functional Analysis +1508.07238 Lattice +1508.07247 Strongly Correlated Electrons +1508.07290 Materials Science +1508.07311 Theory +1508.07352 +1508.07397 Materials Science +1508.07424 Number Theory +1508.07487 Instrumentation and Methods for Astrophysics +1508.07500 Theory +1508.07546 Theory +1508.07609 Quantum Gases +1508.07648 Machine Learning +1508.07681 Atomic Physics +1508.07746 Materials Science +1508.07913 Information Theory +1508.07915 Strongly Correlated Electrons +1508.07963 Mesoscale and Nanoscale Physics +1508.07975 Theory +1509.00008 Theory +1509.00084 Mesoscale and Nanoscale Physics +1509.00145 Lattice +1509.00182 Superconductivity +1509.00208 Materials Science +1509.00218 Phenomenology +1509.00448 Optics +1509.00627 Instrumentation and Methods for Astrophysics +1509.00641 +1509.00680 Materials Science +1509.00832 Information Theory +1509.00904 Mesoscale and Nanoscale Physics +1509.00972 +1509.01000 Theory +1509.01029 Biological Physics +1509.01068 Solar and Stellar Astrophysics +1509.01113 +1509.01124 Astrophysics of Galaxies +1509.01166 Optics +1509.01245 Theory +1509.01249 Phenomenology +1509.01254 Astrophysics of Galaxies +1509.01299 Instrumentation and Methods for Astrophysics +1509.01341 Materials Science +1509.01395 Materials Science +1509.01408 Theory +1509.01413 Classical Physics +1509.01435 +1509.01540 Mesoscale and Nanoscale Physics +1509.01573 Optics +1509.01640 +1509.01670 Statistical Mechanics +1509.01825 +1509.01901 High Energy Astrophysical Phenomena +1509.01914 Superconductivity +1509.01939 Astrophysics of Galaxies +1509.02040 Theory +1509.02083 Phenomenology +1509.02091 Atomic Physics +1509.02184 Fluid Dynamics +1509.02232 Optics +1509.02252 Optics +1509.02257 Probability +1509.02392 +1509.02535 +1509.02542 Theory +1509.02598 High Energy Astrophysical Phenomena +1509.02659 +1509.02982 +1509.02983 Theory +1509.02988 Fluid Dynamics +1509.03058 +1509.03133 Analysis of PDEs +1509.03168 High Energy Astrophysical Phenomena +1509.03229 Optics +1509.03311 +1509.03395 Statistical Mechanics +1509.03416 Instrumentation and Methods for Astrophysics +1509.03430 Materials Science +1509.03438 Materials Science +1509.03690 Instrumentation and Detectors +1509.03702 Disordered Systems and Neural Networks +1509.03707 +1509.03763 +1509.03827 +1509.03942 Neurons and Cognition +1509.04068 Phenomenology +1509.04114 Materials Science +1509.04136 Optics +1509.04401 Materials Science +1509.04440 Mesoscale and Nanoscale Physics +1509.04447 Data Analysis, Statistics and Probability +1509.04520 Materials Science +1509.04606 Materials Science +1509.04649 Statistical Mechanics +1509.04782 Astrophysics of Galaxies +1509.04803 +1509.04830 +1509.04873 Fluid Dynamics +1509.04877 Fluid Dynamics +1509.04907 Soft Condensed Matter +1509.04966 Solar and Stellar Astrophysics +1509.05034 Cosmology and Nongalactic Astrophysics +1509.05080 Astrophysics of Galaxies +1509.05116 +1509.05177 Neural and Evolutionary Computing +1509.05233 Materials Science +1509.05237 Instrumentation and Detectors +1509.05335 Biological Physics +1509.05340 Logic +1509.05352 Theory +1509.05462 Strongly Correlated Electrons +1509.05467 Fluid Dynamics +1509.05470 +1509.05563 Biological Physics +1509.05600 Information Theory +1509.05641 Statistical Mechanics +1509.05817 Adaptation and Self-Organizing Systems +1509.05885 Optics +1509.05971 Materials Science +1509.06012 +1509.06028 Algebraic Geometry +1509.06131 Fluid Dynamics +1509.06144 +1509.06153 Optics +1509.06186 Theory +1509.06202 Materials Science +1509.06307 +1509.06313 Phenomenology +1509.06345 Theory +1509.06400 Cosmology and Nongalactic Astrophysics +1509.06439 Mesoscale and Nanoscale Physics +1509.06622 Statistical Mechanics +1509.06636 Instrumentation and Detectors +1509.06750 Cosmology and Nongalactic Astrophysics +1509.06798 Theory +1509.06809 Instrumentation and Detectors +1509.06819 Mesoscale and Nanoscale Physics +1509.06871 Materials Science +1509.06879 Instrumentation and Detectors +1509.06912 Pattern Formation and Solitons +1509.06978 Atomic Physics +1509.07015 Classical Analysis and ODEs +1509.07099 Mesoscale and Nanoscale Physics +1509.07123 Phenomenology +1509.07176 +1509.07237 Mesoscale and Nanoscale Physics +1509.07280 Phenomenology +1509.07381 Theory +1509.07441 Materials Science +1509.07509 Theory +1509.07549 Disordered Systems and Neural Networks +1509.07648 Atomic Physics +1509.07748 Theory +1509.07957 Optics +1509.07972 Materials Science +1509.08057 Statistical Mechanics +1509.08135 +1509.08168 Experiment +1509.08176 Lattice +1509.08348 +1509.08492 Optics +1509.08498 +1509.08616 Quantum Algebra +1509.08620 Phenomenology +1509.08633 Optics +1509.08727 Phenomenology +1509.08809 Theory +1509.08884 Medical Physics +1509.09178 Materials Science +1509.09212 Soft Condensed Matter +1509.09223 High Energy Astrophysical Phenomena +1509.09280 Superconductivity +1510.00055 Systems and Control +1510.00106 Materials Science +1510.00132 Distributed, Parallel, and Cluster Computing +1510.00182 High Energy Astrophysical Phenomena +1510.00207 Quantum Gases +1510.00321 Optics +1510.00572 Instrumentation and Detectors +1510.00624 Data Analysis, Statistics and Probability +1510.00694 +1510.00706 Mesoscale and Nanoscale Physics +1510.00806 +1510.00893 +1510.00928 Statistical Mechanics +1510.00965 Phenomenology +1510.01015 Phenomenology +1510.01021 +1510.01035 Phenomenology +1510.01070 Quantitative Methods +1510.01089 Phenomenology +1510.01138 Statistical Mechanics +1510.01173 +1510.01237 Fluid Dynamics +1510.01252 Theory +1510.01297 Computational Physics +1510.01310 Optics +1510.01339 +1510.01408 +1510.01418 Atomic Physics +1510.01487 +1510.01547 Data Analysis, Statistics and Probability +1510.01551 +1510.01649 Chemical Physics +1510.01651 Theory +1510.01715 Phenomenology +1510.01726 +1510.01766 Plasma Physics +1510.01859 +1510.01870 Soft Condensed Matter +1510.01887 Mesoscale and Nanoscale Physics +1510.01894 Materials Science +1510.01912 Phenomenology +1510.02007 Theory +1510.02012 Superconductivity +1510.02031 Soft Condensed Matter +1510.02034 Optics +1510.02048 Phenomenology +1510.02095 Earth and Planetary Astrophysics +1510.02099 Theory +1510.02128 Mesoscale and Nanoscale Physics +1510.02162 Astrophysics of Galaxies +1510.02253 Phenomenology +1510.02254 Superconductivity +1510.02478 Instrumentation and Methods for Astrophysics +1510.02479 Instrumentation and Methods for Astrophysics +1510.02489 Instrumentation and Methods for Astrophysics +1510.02490 Instrumentation and Methods for Astrophysics +1510.02529 Mesoscale and Nanoscale Physics +1510.02563 Theory +1510.02672 Atomic Physics +1510.02692 Plasma Physics +1510.02715 Materials Science +1510.02719 Numerical Analysis +1510.02766 Soft Condensed Matter +1510.02810 +1510.02887 Optics +1510.02898 +1510.02920 Optics +1510.02936 Phenomenology +1510.02965 Classical Analysis and ODEs +1510.02968 Quantum Gases +1510.03093 Earth and Planetary Astrophysics +1510.03113 Quantitative Methods +1510.03172 Quantitative Methods +1510.03177 Phenomenology +1510.03217 Superconductivity +1510.03268 Phenomenology +1510.03314 Optics +1510.03326 Soft Condensed Matter +1510.03413 Phenomenology +1510.03568 +1510.03593 Chaotic Dynamics +1510.03626 Phenomenology +1510.03668 Phenomenology +1510.03676 Distributed, Parallel, and Cluster Computing +1510.03718 Soft Condensed Matter +1510.03749 Optics +1510.03762 Phenomenology +1510.03763 Solar and Stellar Astrophysics +1510.03792 Instrumentation and Detectors +1510.03841 Mesoscale and Nanoscale Physics +1510.03857 Information Theory +1510.03877 Cosmology and Nongalactic Astrophysics +1510.03936 Optics +1510.04042 +1510.04084 Theory +1510.04116 Phenomenology +1510.04120 +1510.04177 Optics +1510.04288 High Energy Astrophysical Phenomena +1510.04358 Materials Science +1510.04369 Mesoscale and Nanoscale Physics +1510.04382 +1510.04401 Quantum Gases +1510.04422 Digital Libraries +1510.04477 High Energy Astrophysical Phenomena +1510.04660 Astrophysics of Galaxies +1510.04786 Materials Science +1510.04804 Mesoscale and Nanoscale Physics +1510.04910 Statistical Finance +1510.04950 Soft Condensed Matter +1510.04960 +1510.04979 Phenomenology +1510.05003 Quantum Gases +1510.05121 Quantum Gases +1510.05163 +1510.05259 Astrophysics of Galaxies +1510.05273 +1510.05303 +1510.05529 Soft Condensed Matter +1510.05536 Optics +1510.05657 Phenomenology +1510.05659 Astrophysics of Galaxies +1510.05715 Materials Science +1510.05735 Strongly Correlated Electrons +1510.05988 Chemical Physics +1510.05992 Physics Education +1510.06026 Cosmology and Nongalactic Astrophysics +1510.06032 Strongly Correlated Electrons +1510.06089 Phenomenology +1510.06100 Optics +1510.06105 Plasma Physics +1510.06127 Materials Science +1510.06223 Social and Information Networks +1510.06225 Solar and Stellar Astrophysics +1510.06239 Optics +1510.06413 Solar and Stellar Astrophysics +1510.06509 Superconductivity +1510.06601 Atomic Physics +1510.06690 Phenomenology +1510.06857 Quantum Gases +1510.06868 Mesoscale and Nanoscale Physics +1510.06895 Learning +1510.07002 Strongly Correlated Electrons +1510.07100 Lattice +1510.07236 Optics +1510.07279 Phenomenology +1510.07345 Superconductivity +1510.07477 Optics +1510.07478 Experiment +1510.07497 Materials Science +1510.07569 Materials Science +1510.07571 Instrumentation and Detectors +1510.07575 Strongly Correlated Electrons +1510.07580 Cosmology and Nongalactic Astrophysics +1510.07626 Astrophysics of Galaxies +1510.07629 Earth and Planetary Astrophysics +1510.07660 High Energy Astrophysical Phenomena +1510.07673 Mesoscale and Nanoscale Physics +1510.07699 Biomolecules +1510.07707 Optics +1510.07794 +1510.07831 Materials Science +1510.07847 Physics and Society +1510.07853 Chaotic Dynamics +1510.07967 +1510.07977 Strongly Correlated Electrons +1510.08092 Disordered Systems and Neural Networks +1510.08111 +1510.08133 Optimization and Control +1510.08220 Materials Science +1510.08306 Instrumentation and Detectors +1510.08340 +1510.08563 Mesoscale and Nanoscale Physics +1510.08602 Analysis of PDEs +1510.08691 Theory +1510.08726 Phenomenology +1510.08748 Formal Languages and Automata Theory +1510.08810 High Energy Astrophysical Phenomena +1510.08853 Earth and Planetary Astrophysics +1510.08918 Earth and Planetary Astrophysics +1510.08922 High Energy Astrophysical Phenomena +1510.09117 Distributed, Parallel, and Cluster Computing +1510.09158 Optics +1510.09204 Cosmology and Nongalactic Astrophysics +1511.00064 Fluid Dynamics +1511.00069 Exactly Solvable and Integrable Systems +1511.00171 Biological Physics +1511.00236 Chaotic Dynamics +1511.00254 Statistical Mechanics +1511.00327 Mesoscale and Nanoscale Physics +1511.00343 Solar and Stellar Astrophysics +1511.00391 Optics +1511.00518 Instrumentation and Methods for Astrophysics +1511.00555 Optics +1511.00558 Chemical Physics +1511.00612 Analysis of PDEs +1511.00629 Atomic Physics +1511.00812 Mesoscale and Nanoscale Physics +1511.00854 Theory +1511.00913 Phenomenology +1511.01012 Solar and Stellar Astrophysics +1511.01092 Astrophysics of Galaxies +1511.01183 Instrumentation and Methods for Astrophysics +1511.01201 Materials Science +1511.01221 Atomic Physics +1511.01251 +1511.01317 Astrophysics of Galaxies +1511.01323 Phenomenology +1511.01547 Mesoscale and Nanoscale Physics +1511.01592 +1511.01595 Strongly Correlated Electrons +1511.01623 Phenomenology +1511.01645 Mesoscale and Nanoscale Physics +1511.01701 Quantum Gases +1511.01729 +1511.01879 Materials Science +1511.01931 Accelerator Physics +1511.02016 Optics +1511.02208 Astrophysics of Galaxies +1511.02397 Optics +1511.02406 Phenomenology +1511.02449 Phenomenology +1511.02638 Fluid Dynamics +1511.02653 Superconductivity +1511.02749 Strongly Correlated Electrons +1511.02919 Computer Vision and Pattern Recognition +1511.02957 +1511.02961 Materials Science +1511.02971 Theory +1511.03116 Theory +1511.03206 Computer Vision and Pattern Recognition +1511.03208 Solar and Stellar Astrophysics +1511.03214 +1511.03228 +1511.03263 Astrophysics of Galaxies +1511.03318 Solar and Stellar Astrophysics +1511.03344 Earth and Planetary Astrophysics +1511.03373 Statistical Mechanics +1511.03419 Materials Science +1511.03492 Strongly Correlated Electrons +1511.03533 Optimization and Control +1511.03540 Phenomenology +1511.03594 Astrophysics of Galaxies +1511.03648 Optics +1511.03695 High Energy Astrophysical Phenomena +1511.03789 Astrophysics of Galaxies +1511.03799 +1511.03823 Solar and Stellar Astrophysics +1511.03859 Statistical Mechanics +1511.03919 Astrophysics of Galaxies +1511.04175 Soft Condensed Matter +1511.04318 Phenomenology +1511.04367 Materials Science +1511.04379 Phenomenology +1511.04490 Astrophysics of Galaxies +1511.04682 Solar and Stellar Astrophysics +1511.04760 Instrumentation and Methods for Astrophysics +1511.04796 Atomic Physics +1511.04802 Mesoscale and Nanoscale Physics +1511.04895 Optics +1511.04912 Physics and Society +1511.05103 Physics Education +1511.05135 Solar and Stellar Astrophysics +1511.05166 Astrophysics of Galaxies +1511.05206 +1511.05329 +1511.05336 Soft Condensed Matter +1511.05351 Chaotic Dynamics +1511.05416 Astrophysics of Galaxies +1511.05489 Atomic Physics +1511.05517 Soft Condensed Matter +1511.05724 Materials Science +1511.05828 Soft Condensed Matter +1511.05863 Quantum Gases +1511.05906 Dynamical Systems +1511.05918 Theory +1511.05965 Solar and Stellar Astrophysics +1511.05973 Earth and Planetary Astrophysics +1511.06019 Strongly Correlated Electrons +1511.06104 Neural and Evolutionary Computing +1511.06111 Mesoscale and Nanoscale Physics +1511.06292 Learning +1511.06310 Soft Condensed Matter +1511.06456 Learning +1511.06501 Fluid Dynamics +1511.06516 +1511.06564 Chemical Physics +1511.06580 Earth and Planetary Astrophysics +1511.06747 Learning +1511.06776 +1511.06777 Materials Science +1511.06840 +1511.06842 Theory +1511.06851 High Energy Astrophysical Phenomena +1511.06889 Solar and Stellar Astrophysics +1511.06935 Cosmology and Nongalactic Astrophysics +1511.06993 Experiment +1511.07047 +1511.07119 Astrophysics of Galaxies +1511.07138 Astrophysics of Galaxies +1511.07160 Solar and Stellar Astrophysics +1511.07258 Solar and Stellar Astrophysics +1511.07264 Mesoscale and Nanoscale Physics +1511.07344 Astrophysics of Galaxies +1511.07346 Phenomenology +1511.07404 Computer Vision and Pattern Recognition +1511.07430 Astrophysics of Galaxies +1511.07513 Astrophysics of Galaxies +1511.07547 Theory +1511.07602 Soft Condensed Matter +1511.07630 High Energy Astrophysical Phenomena +1511.07711 Algebraic Geometry +1511.07749 Space Physics +1511.07757 Solar and Stellar Astrophysics +1511.07761 Strongly Correlated Electrons +1511.07882 High Energy Astrophysical Phenomena +1511.07904 High Energy Astrophysical Phenomena +1511.07960 Strongly Correlated Electrons +1511.08045 Chaotic Dynamics +1511.08127 Optics +1511.08171 Solar and Stellar Astrophysics +1511.08217 Astrophysics of Galaxies +1511.08306 Optics +1511.08356 Solar and Stellar Astrophysics +1511.08608 Astrophysics of Galaxies +1511.08740 +1511.08815 High Energy Astrophysical Phenomena +1511.08928 Atomic Physics +1511.08955 Theory +1511.08992 High Energy Astrophysical Phenomena +1511.08998 +1511.09005 Superconductivity +1511.09010 +1511.09059 Databases +1511.09236 Physics and Society +1511.09358 +1512.00028 Fluid Dynamics +1512.00087 Materials Science +1512.00167 Astrophysics of Galaxies +1512.00190 Phenomenology +1512.00272 Computational Physics +1512.00286 Mesoscale and Nanoscale Physics +1512.00381 Astrophysics of Galaxies +1512.00453 Astrophysics of Galaxies +1512.00477 Astrophysics of Galaxies +1512.00492 Instrumentation and Methods for Astrophysics +1512.00649 Solar and Stellar Astrophysics +1512.00872 Soft Condensed Matter +1512.00878 Solar and Stellar Astrophysics +1512.00980 Astrophysics of Galaxies +1512.01000 Solar and Stellar Astrophysics +1512.01002 Solar and Stellar Astrophysics +1512.01050 Astrophysics of Galaxies +1512.01062 +1512.01109 Instrumentation and Detectors +1512.01212 Astrophysics of Galaxies +1512.01251 Astrophysics of Galaxies +1512.01350 Solar and Stellar Astrophysics +1512.01623 Geometric Topology +1512.01772 +1512.01992 Solar and Stellar Astrophysics +1512.02014 Physics and Society +1512.02122 High Energy Astrophysical Phenomena +1512.02124 Molecular Networks +1512.02292 Theory +1512.02362 Mesoscale and Nanoscale Physics +1512.02649 Earth and Planetary Astrophysics +1512.02702 Solar and Stellar Astrophysics +1512.02833 Spectral Theory +1512.02852 Earth and Planetary Astrophysics +1512.02955 +1512.03114 Solar and Stellar Astrophysics +1512.03304 Astrophysics of Galaxies +1512.03482 Pattern Formation and Solitons +1512.03493 +1512.03496 Solar and Stellar Astrophysics +1512.03499 Theory +1512.03505 Chemical Physics +1512.03529 Materials Science +1512.03534 Mesoscale and Nanoscale Physics +1512.03547 Data Structures and Algorithms +1512.03585 Earth and Planetary Astrophysics +1512.03625 Cosmology and Nongalactic Astrophysics +1512.03772 High Energy Astrophysical Phenomena +1512.03908 Fluid Dynamics +1512.03947 Optics +1512.04159 Astrophysics of Galaxies +1512.04298 Data Analysis, Statistics and Probability +1512.04300 High Energy Astrophysical Phenomena +1512.04518 Solar and Stellar Astrophysics +1512.04539 Solar and Stellar Astrophysics +1512.04549 Astrophysics of Galaxies +1512.04624 Statistical Mechanics +1512.04836 High Energy Astrophysical Phenomena +1512.04845 Solar and Stellar Astrophysics +1512.04903 Mesoscale and Nanoscale Physics +1512.04914 Mesoscale and Nanoscale Physics +1512.05271 Astrophysics of Galaxies +1512.05455 Computational Physics +1512.05483 Cryptography and Security +1512.05664 Solar and Stellar Astrophysics +1512.05768 Astrophysics of Galaxies +1512.05867 Materials Science +1512.05898 Phenomenology +1512.05902 Solar and Stellar Astrophysics +1512.05920 Earth and Planetary Astrophysics +1512.05960 Atomic Physics +1512.06006 +1512.06103 Materials Science +1512.06105 Biological Physics +1512.06106 Phenomenology +1512.06129 High Energy Astrophysical Phenomena +1512.06184 Systems and Control +1512.06251 Statistical Mechanics +1512.06261 Astrophysics of Galaxies +1512.06327 +1512.06495 Materials Science +1512.06512 Solar and Stellar Astrophysics +1512.06748 Solar and Stellar Astrophysics +1512.06814 Fluid Dynamics +1512.06865 Astrophysics of Galaxies +1512.06936 Mesoscale and Nanoscale Physics +1512.06996 +1512.07579 +1512.07673 Astrophysics of Galaxies +1512.08245 Strongly Correlated Electrons +1512.08399 Instrumentation and Detectors +1512.08425 Statistics Theory +1512.08729 Atomic Physics +1512.08868 Dynamical Systems +1512.08882 Mesoscale and Nanoscale Physics +1512.09211 +1601.00417 Atomic Physics +1601.00656 Cosmology and Nongalactic Astrophysics +1601.00660 High Energy Astrophysical Phenomena +1601.00895 Plasma Physics +1601.00971 Astrophysics of Galaxies +1601.01338 +1601.01520 Astrophysics of Galaxies +1601.01591 High Energy Astrophysical Phenomena +1601.01680 High Energy Astrophysical Phenomena +1601.01898 Theory +1601.02007 Astrophysics of Galaxies +1601.02072 Mesoscale and Nanoscale Physics +1601.02219 Mesoscale and Nanoscale Physics +1601.02222 Mesoscale and Nanoscale Physics +1601.02312 Mesoscale and Nanoscale Physics +1601.02345 Solar and Stellar Astrophysics +1601.02394 Earth and Planetary Astrophysics +1601.02418 +1601.02940 Instrumentation and Detectors +1601.03498 Materials Science +1601.03692 +1601.03755 +1601.03756 +1601.03788 Geophysics +1601.03870 Classical Analysis and ODEs +1601.03875 Rings and Algebras +1601.04120 Numerical Analysis +1601.04358 Analysis of PDEs +1601.04640 Computational Physics +1601.04694 Instrumentation and Detectors +1601.04696 Complex Variables +1601.04698 Instrumentation and Detectors +1601.04701 +1601.04702 Instrumentation and Detectors +1601.04724 Information Theory +1601.04730 Atmospheric and Oceanic Physics +1601.04731 Probability +1601.04735 +1601.04736 Applications +1601.04739 Physics and Society +1601.04742 +1601.04743 Computational Complexity +1601.04745 Information Retrieval +1601.04746 Social and Information Networks +1601.04747 Popular Physics +1601.04748 Optics +1601.04749 Networking and Internet Architecture +1601.04752 Combinatorics +1601.04753 Applications +1601.04754 Number Theory +1601.04756 Learning +1601.04762 Mesoscale and Nanoscale Physics +1601.04766 Probability +1601.04780 Cryptography and Security +1601.04781 Differential Geometry +1601.04782 Number Theory +1601.04785 Number Theory +1601.04786 Metric Geometry +1601.04790 +1601.04793 +1601.04794 Computational Complexity +1601.04795 Information Theory +1601.04799 Exactly Solvable and Integrable Systems +1601.04800 Information Retrieval +1601.04801 Optics +1601.04808 Probability +1601.04816 Graphics +1601.04818 Lattice +1601.04819 Differential Geometry +1601.04820 Distributed, Parallel, and Cluster Computing +1601.04824 Logic +1601.04825 Analysis of PDEs +1601.04826 Methodology +1601.04828 +1601.04830 Logic +1601.04832 +1601.04836 +1601.04840 Combinatorics +1601.04841 Methodology +1601.04842 +1601.04844 +1601.04845 Statistical Mechanics +1601.04850 Probability +1601.04856 Combinatorics +1601.04857 +1601.04858 Probability +1601.04859 Information Theory +1601.04861 Astrophysics of Galaxies +1601.04863 Computational Physics +1601.04864 +1601.04865 +1601.04873 Functional Analysis +1601.04875 Materials Science +1601.04882 Numerical Analysis +1601.04883 Astrophysics of Galaxies +1601.04884 Information Theory +1601.04885 Instrumentation and Detectors +1601.04891 Probability +1601.04895 Information Theory +1601.04898 Mesoscale and Nanoscale Physics +1601.04901 Accelerator Physics +1601.04902 Computer Vision and Pattern Recognition +1601.04904 Number Theory +1601.04907 Accelerator Physics +1601.04910 +1601.04911 Logic +1601.04912 Analysis of PDEs +1601.04913 Accelerator Physics +1601.04915 Geometric Topology +1601.04917 Chaotic Dynamics +1601.04922 Numerical Analysis +1601.04924 Symplectic Geometry +1601.04930 Differential Geometry +1601.04932 Differential Geometry +1601.04933 Mesoscale and Nanoscale Physics +1601.04935 Computational Complexity +1601.04937 History and Overview +1601.04938 Number Theory +1601.04942 Mesoscale and Nanoscale Physics +1601.04949 Economics +1601.04950 Digital Libraries +1601.04953 Analysis of PDEs +1601.04955 Algebraic Geometry +1601.04956 +1601.04960 Differential Geometry +1601.04961 Information Theory +1601.04964 Logic in Computer Science +1601.04965 Cosmology and Nongalactic Astrophysics +1601.04966 Theory +1601.04970 Number Theory +1601.04973 Symplectic Geometry +1601.04979 Combinatorics +1601.04982 Materials Science +1601.04984 Optimization and Control +1601.04986 Differential Geometry +1601.04987 Dynamical Systems +1601.04998 Category Theory +1601.04999 Number Theory +1601.05001 Differential Geometry +1601.05003 Data Structures and Algorithms +1601.05011 Optimization and Control +1601.05016 Commutative Algebra +1601.05019 +1601.05030 Computer Vision and Pattern Recognition +1601.05032 Number Theory +1601.05034 Combinatorics +1601.05036 Optics +1601.05042 Functional Analysis +1601.05044 Classical Physics +1601.05048 Quantum Algebra +1601.05050 Systems and Control +1601.05052 Distributed, Parallel, and Cluster Computing +1601.05053 Statistics Theory +1601.05055 Analysis of PDEs +1601.05058 Combinatorics +1601.05059 Geometric Topology +1601.05060 Mesoscale and Nanoscale Physics +1601.05069 Networking and Internet Architecture +1601.05073 Combinatorics +1601.05076 Combinatorics +1601.05078 Methodology +1601.05081 General Finance +1601.05082 Phenomenology +astro-ph/0607543 +math/0412492 Group Theory +math/0507266 Geometric Topology +math/0605471 Algebraic Topology +math/0611588 Group Theory +math/0612473 Geometric Topology +math/0701327 Algebraic Topology +0709.0321 Statistical Mechanics +0812.3677 Combinatorics +1007.1314 Algebraic Geometry +1010.3413 +1104.0320 Algebraic Geometry +1106.5519 Algebraic Geometry +1107.1435 General Topology +1109.4286 Algebraic Geometry +1110.1820 Differential Geometry +1110.5066 Disordered Systems and Neural Networks +1111.3988 Methodology +1201.4832 General Topology +1203.3555 Disordered Systems and Neural Networks +1204.1837 Algebraic Geometry +1204.6589 Algebraic Geometry +1205.3471 Rings and Algebras +1207.3999 Differential Geometry +1211.2718 Algebraic Geometry +1212.0373 Algebraic Geometry +1212.3276 Machine Learning +1303.5570 +1304.0806 Artificial Intelligence +1304.3914 +1304.5129 Materials Science +1305.1182 Algebraic Geometry +1305.3937 Information Theory +1307.1827 Learning +1308.2241 Soft Condensed Matter +1308.2893 Learning +1309.3340 Combinatorics +1309.4403 Algebraic Geometry +1310.2519 Mesoscale and Nanoscale Physics +1310.5726 Methodology +1310.8422 Dynamical Systems +1311.6358 Group Theory +1312.0258 Analysis of PDEs +1312.1237 Number Theory +1312.1428 Group Theory +1402.5129 Combinatorics +1403.0726 Numerical Analysis +1403.6799 Probability +1404.3746 Operator Algebras +1406.1755 Geometric Topology +1406.4175 Information Theory +1406.6579 Logic +1406.7642 Physics and Society +1407.7771 Dynamical Systems +1408.0376 Fluid Dynamics +1408.1223 +1408.4493 Geometric Topology +1408.5380 Computational Engineering, Finance, and Science +1408.5604 Statistics Theory +1409.0439 +1409.1111 Number Theory +1409.5900 Data Structures and Algorithms +1409.8379 Analysis of PDEs +1410.2412 +1410.3123 Optimization and Control +1410.3642 Classical Analysis and ODEs +1410.4351 Optimization and Control +1410.5464 Algebraic Topology +1410.5626 Networking and Internet Architecture +1410.7320 Algebraic Geometry +1411.0924 Applications +1411.1046 Optics +1411.1697 Analysis of PDEs +1411.6747 +1411.7256 Probability +1412.0011 Combinatorics +1412.1426 Differential Geometry +1412.2409 History and Philosophy of Physics +1412.2674 Algebraic Topology +1412.3890 Optimization and Control +1412.7282 Databases +1412.7804 Rings and Algebras +1412.8153 Algebraic Geometry +1501.01574 Geometric Topology +1501.02416 Complex Variables +1501.03097 Group Theory +1501.06161 +1502.01180 Mesoscale and Nanoscale Physics +1502.02432 Plasma Physics +1502.02822 Chaotic Dynamics +1502.03424 +1502.04239 Populations and Evolution +1502.05180 Applications +1502.05228 Logic +1502.05716 +1502.06586 Optics +1502.07891 +1503.02960 Phenomenology +1503.04669 Biological Physics +1503.06435 Algebraic Geometry +1503.07286 Accelerator Physics +1503.08206 Optics +1503.08384 Algebraic Geometry +1504.01336 Symplectic Geometry +1504.03993 +1504.04106 Algebraic Geometry +1504.04827 Representation Theory +1504.07527 Cosmology and Nongalactic Astrophysics +1504.08318 Physics and Society +1505.00209 +1505.02033 Other Quantitative Biology +1505.03517 Phenomenology +1505.03904 Algebraic Geometry +1505.05858 High Energy Astrophysical Phenomena +1505.06622 Logic in Computer Science +1505.07160 Analysis of PDEs +1505.07442 Representation Theory +1505.07445 Probability +1505.07754 Algebraic Geometry +1505.07816 Classical Analysis and ODEs +1506.00292 Optimization and Control +1506.02243 Computational Complexity +1506.02797 Combinatorics +1506.03792 Information Theory +1506.04633 +1506.08298 Group Theory +1506.08300 Group Theory +1507.00108 Methodology +1507.01653 Number Theory +1507.02988 Programming Languages +1507.03254 Chaotic Dynamics +1507.03260 Chaotic Dynamics +1507.03753 Dynamical Systems +1507.03857 Information Theory +1507.04087 Group Theory +1507.04113 Social and Information Networks +1507.05131 Machine Learning +1507.05150 Multimedia +1507.05573 Differential Geometry +1507.05987 Phenomenology +1507.06556 Theory +1507.07008 Phenomenology +1507.07049 Programming Languages +1507.08116 Quantum Gases +1507.08517 Number Theory +1507.08907 Soft Condensed Matter +1508.00304 Materials Science +1508.00858 Optimization and Control +1508.01424 Strongly Correlated Electrons +1508.01908 Classical Physics +1508.02166 Information Theory +1508.02293 Algebraic Geometry +1508.03945 Analysis of PDEs +1508.04929 Strongly Correlated Electrons +1508.04948 Statistics Theory +1509.00092 Computational Complexity +1509.00478 Quantum Gases +1509.00919 Mesoscale and Nanoscale Physics +1509.01022 Strongly Correlated Electrons +1509.01514 Computer Vision and Pattern Recognition +1509.02206 Strongly Correlated Electrons +1509.02295 Mesoscale and Nanoscale Physics +1509.02680 Quantum Gases +1509.03643 Number Theory +1509.03785 Analysis of PDEs +1509.03917 Machine Learning +1509.04270 Optics +1509.04377 Materials Science +1509.04450 Fluid Dynamics +1509.06872 Disordered Systems and Neural Networks +1509.07570 Physics Education +1509.08409 Molecular Networks +1509.08590 +1509.09198 Numerical Analysis +1509.09255 Strongly Correlated Electrons +1510.00484 Plasma Physics +1510.00628 Fluid Dynamics +1510.00685 +1510.00882 +1510.01331 Strongly Correlated Electrons +1510.01433 Number Theory +1510.01685 Methodology +1510.02103 Theory +1510.03681 Statistical Mechanics +1510.04663 Probability +1510.04932 Phenomenology +1510.05234 Quantitative Methods +1510.05466 Optimization and Control +1510.05622 Algebraic Geometry +1510.06310 Probability +1510.06889 Materials Science +1510.07305 Differential Geometry +1510.07489 Disordered Systems and Neural Networks +1510.07836 +1510.08771 Complex Variables +1511.00363 Learning +1511.00721 Optimization and Control +1511.02881 Mesoscale and Nanoscale Physics +1511.03096 Differential Geometry +1511.03128 Strongly Correlated Electrons +1511.04704 Combinatorics +1511.04706 Probability +1511.04847 Atomic Physics +1511.05277 Fluid Dynamics +1511.05767 Group Theory +1511.06107 Mesoscale and Nanoscale Physics +1511.06389 Disordered Systems and Neural Networks +1511.06481 Machine Learning +1511.06499 Machine Learning +1511.06552 Quantum Gases +1511.07356 Computer Vision and Pattern Recognition +1511.08313 Mesoscale and Nanoscale Physics +1511.08470 Cosmology and Nongalactic Astrophysics +1512.01087 +1512.02028 +1512.02497 Computer Vision and Pattern Recognition +1512.02622 Optics +1512.03729 Logic +1512.03983 +1512.04008 Theory +1512.04224 Theory +1512.04654 Cosmology and Nongalactic Astrophysics +1512.06275 Rings and Algebras +1512.06722 +1512.07598 Mesoscale and Nanoscale Physics +1512.07740 Theory +1512.07932 Theory +1512.08255 Phenomenology +1512.08266 Statistical Mechanics +1512.08762 Metric Geometry +1512.08828 Group Theory +1512.09169 Classical Analysis and ODEs +1512.09257 Quantum Gases +1512.09335 Computer Science and Game Theory +1601.00654 +1601.01091 Mesoscale and Nanoscale Physics +1601.02226 Dynamical Systems +1601.03088 Fluid Dynamics +1601.03320 Analysis of PDEs +1601.03586 Representation Theory +1601.04262 Statistics Theory +1601.04270 Mesoscale and Nanoscale Physics +1601.04375 Statistical Mechanics +1601.04620 +1601.04929 Quantum Gases +1601.05428 Earth and Planetary Astrophysics +1601.07679 Physics and Society +1602.00563 Databases +1602.00609 Optics +1602.00944 Instrumentation and Detectors +1602.01540 Geophysics +1602.01896 Computer Science and Game Theory +1602.02039 Theory +1602.02692 Computers and Society +1602.02972 Materials Science +1602.03321 Optics +1602.04952 Distributed, Parallel, and Cluster Computing +1602.05367 Mesoscale and Nanoscale Physics +1602.07372 Solar and Stellar Astrophysics +1602.07752 Theory +1602.07975 Theory +1602.08580 Functional Analysis +1602.08594 Strongly Correlated Electrons +1603.00682 +1603.00758 +1603.00776 Earth and Planetary Astrophysics +1603.01705 Algebraic Geometry +1603.01785 Numerical Analysis +1603.01851 Applications +1603.03845 Representation Theory +1603.04332 Classical Analysis and ODEs +1603.05172 Mesoscale and Nanoscale Physics +1603.05572 Information Retrieval +1603.06198 Functional Analysis +1603.06232 Algebraic Geometry +1603.06515 Earth and Planetary Astrophysics +1603.06520 Earth and Planetary Astrophysics +1603.06538 Subcellular Processes +1603.07025 Social and Information Networks +1603.07291 Materials Science +1603.08143 Probability +1603.08149 +1603.08367 Learning +1603.08449 Statistical Mechanics +1603.08536 History and Overview +1603.08612 Operator Algebras +1603.08871 Astrophysics of Galaxies +1603.09303 Computational Physics +1603.09463 +1604.00295 Number Theory +1604.00591 +1604.02441 Algebraic Geometry +1604.02542 Complex Variables +1604.02555 Functional Analysis +1604.02620 Physics Education +1604.02742 Information Theory +1604.02796 Social and Information Networks +1604.02818 +1604.03126 Phenomenology +1604.03159 Social and Information Networks +1604.03240 Social and Information Networks +1604.03279 Analysis of PDEs +1604.03302 Computational Geometry +1604.03321 +1604.03625 Representation Theory +1604.03701 Theory +1604.03703 Distributed, Parallel, and Cluster Computing +1604.03797 General Physics +1604.03885 Number Theory +1604.03980 +1604.04018 Computer Vision and Pattern Recognition +1604.04042 Experiment +1604.04083 Analysis of PDEs +1604.04401 Analysis of PDEs +1604.04414 Classical Physics +1604.04633 Statistical Mechanics +1604.04638 Software Engineering +1604.04639 Programming Languages +1604.04641 Digital Libraries +1604.04642 Combinatorics +1604.04646 Numerical Analysis +1604.04649 Computers and Society +1604.04652 Number Theory +1604.04654 Tissues and Organs +1604.04655 Logic +1604.04656 Methodology +1604.04657 Optimization and Control +1604.04658 Atomic Physics +1604.04659 Robotics +1604.04663 Algebraic Geometry +1604.04664 Data Structures and Algorithms +1604.04666 Information Theory +1604.04667 Cryptography and Security +1604.04668 Atomic Physics +1604.04669 Sound +1604.04672 Representation Theory +1604.04673 Computer Vision and Pattern Recognition +1604.04675 Computer Vision and Pattern Recognition +1604.04676 Computer Vision and Pattern Recognition +1604.04677 Computation and Language +1604.04678 Computer Vision and Pattern Recognition +1604.04680 +1604.04682 Classical Analysis and ODEs +1604.04685 Numerical Analysis +1604.04686 Combinatorics +1604.04687 Applications +1604.04688 Materials Science +1604.04692 Fluid Dynamics +1604.04694 Materials Science +1604.04695 Programming Languages +1604.04696 Social and Information Networks +1604.04699 Networking and Internet Architecture +1604.04700 Algebraic Topology +1604.04703 Theory +1604.04704 Strongly Correlated Electrons +1604.04705 Digital Libraries +1604.04711 Computers and Society +1604.04713 Optimization and Control +1604.04715 Analysis of PDEs +1604.04720 Number Theory +1604.04721 Artificial Intelligence +1604.04723 Cryptography and Security +1604.04724 Computer Vision and Pattern Recognition +1604.04725 Multiagent Systems +1604.04727 Multiagent Systems +1604.04728 Multiagent Systems +1604.04729 Programming Languages +1604.04730 Multiagent Systems +1604.04732 Applications +1604.04733 Rings and Algebras +1604.04734 +1604.04736 Multiagent Systems +1604.04737 Multiagent Systems +1604.04738 Optics +1604.04739 +1604.04741 Machine Learning +1604.04742 Phenomenology +1604.04743 Networking and Internet Architecture +1604.04744 Complex Variables +1604.04745 Astrophysics of Galaxies +1604.04746 Category Theory +1604.04749 Human-Computer Interaction +1604.04750 +1604.04753 Algebraic Geometry +1604.04754 Materials Science +1604.04756 Dynamical Systems +1604.04758 Physics and Society +1604.04759 Combinatorics +1604.04762 Physics and Society +1604.04765 Probability +1604.04766 Combinatorics +1604.04767 Learning +1604.04771 Dynamical Systems +1604.04775 Number Theory +1604.04778 +1604.04779 Robotics +1604.04780 Digital Libraries +1604.04784 Computer Vision and Pattern Recognition +1604.04786 Biomolecules +1604.04788 Solar and Stellar Astrophysics +1604.04791 Phenomenology +1604.04792 Formal Languages and Automata Theory +1604.04793 Methodology +1604.04794 Optics +1604.04796 Neurons and Cognition +1604.04797 Combinatorics +1604.04798 Analysis of PDEs +1604.04802 Computation and Language +1604.04803 Genomics +1604.04806 Analysis of PDEs +1604.04809 Computer Science and Game Theory +1604.04810 Cryptography and Security +1604.04811 Social and Information Networks +1604.04815 Distributed, Parallel, and Cluster Computing +1604.04816 Adaptation and Self-Organizing Systems +1604.04819 +1604.04823 Networking and Internet Architecture +1604.04824 Networking and Internet Architecture +1604.04825 Computer Vision and Pattern Recognition +1604.04828 Algebraic Geometry +1604.04829 Discrete Mathematics +1604.04830 Theory +1604.04831 Earth and Planetary Astrophysics +1604.04833 Geometric Topology +1604.04834 Information Theory +1604.04839 Chemical Physics +1604.04840 Optimization and Control +1604.04842 Computer Vision and Pattern Recognition +1604.04843 Materials Science +1604.04844 Statistical Mechanics +1604.04845 Optimization and Control +1604.04847 High Energy Astrophysical Phenomena +1604.04850 Phenomenology +1604.04852 Optimization and Control +1604.04853 +1604.04856 +1604.04858 Functional Analysis +1604.04860 Information Theory +1604.04862 Differential Geometry +1604.04863 Numerical Analysis +1604.04866 Commutative Algebra +1604.04870 Geometric Topology +1604.04871 Computer Science and Game Theory +1604.04873 Computation and Language +1604.04874 Probability +1604.04875 Chemical Physics +1604.04879 Learning +1604.04880 Dynamical Systems +1604.04881 Analysis of PDEs +1604.04884 Number Theory +1604.04886 Analysis of PDEs +1604.04887 Analysis of PDEs +1604.04888 Information Theory +1604.04891 History and Philosophy of Physics +1604.04892 Cryptography and Security +1604.04893 Learning +1604.04894 Artificial Intelligence +1604.04895 Computers and Society +1604.04896 Digital Libraries +1604.04897 Probability +1604.04898 Superconductivity +1604.04899 Methodology +1604.04902 Geometric Topology +1604.04903 Quantitative Methods +1604.04904 Classical Analysis and ODEs +1604.04910 Statistical Mechanics +1604.04912 Logic +1604.04914 Soft Condensed Matter +1604.04915 Algebraic Geometry +1604.04917 Earth and Planetary Astrophysics +1604.04920 Classical Analysis and ODEs +1604.04926 Computer Vision and Pattern Recognition +1604.04927 Metric Geometry +1604.04928 Computer Science and Game Theory +1604.04931 Applications +1604.04937 Optics +1604.04939 Machine Learning +1604.04941 Instrumentation and Methods for Astrophysics +1604.04945 Combinatorics +1604.04946 Classical Physics +1604.04947 Combinatorics +1604.04951 Performance +1604.04953 Computer Vision and Pattern Recognition +1604.04955 +1604.04956 Combinatorics +1604.04957 Solar and Stellar Astrophysics +1604.04958 Atomic Physics +1604.04960 Machine Learning +1604.04961 Information Theory +1604.04964 Superconductivity +1604.04968 Information Theory +1604.04969 Group Theory +1604.04973 Group Theory +1604.04976 Complex Variables +1604.04981 Complex Variables +1604.04983 Cryptography and Security +1604.04986 Medical Physics +1604.04988 Solar and Stellar Astrophysics +1604.04989 Quantum Algebra +1604.04992 Information Theory +1604.04994 Computer Vision and Pattern Recognition +1604.04997 Performance +1604.04998 +1604.05005 Information Retrieval +1604.05008 Neural and Evolutionary Computing +1604.05009 Analysis of PDEs +1604.05013 +1604.05014 Complex Variables +1604.05015 Computational Engineering, Finance, and Science +1604.05018 Emerging Technologies +1604.05019 Number Theory +1604.05020 Combinatorics +1604.05021 Dynamical Systems +1604.05023 Data Structures and Algorithms +1604.05024 Learning +1604.05034 Computational Physics +1604.05038 Functional Analysis +1604.05039 Strongly Correlated Electrons +1604.05041 Algebraic Geometry +1604.05042 Optics +1604.05044 Programming Languages +1604.05046 Optics +1604.05047 Logic in Computer Science +1604.05048 Networking and Internet Architecture +1604.05049 Optics +1604.05055 Information Theory +1604.05056 Cell Behavior +1604.05057 Complex Variables +1604.05058 Cryptography and Security +1604.05060 Differential Geometry +1604.05061 Numerical Analysis +1604.05062 Soft Condensed Matter +1604.05063 +1604.05064 Robotics +1604.05066 Combinatorics +1604.05067 Classical Analysis and ODEs +1604.05070 Digital Libraries +1604.05072 Spectral Theory +1604.05073 Computation and Language +1604.05074 Numerical Analysis +1604.05075 Instrumentation and Detectors +1604.05077 Classical Analysis and ODEs +1604.05078 Earth and Planetary Astrophysics +1604.05082 Tissues and Organs +1604.05086 Artificial Intelligence +1604.05090 Computer Science and Game Theory +1604.05095 Networking and Internet Architecture +1604.05102 Quantitative Methods +1604.05103 Data Structures and Algorithms +1604.05104 Analysis of PDEs +1604.05106 Optics +1604.05107 Networking and Internet Architecture +1604.05111 Information Theory +1604.05114 Functional Analysis +1604.05116 General Topology +1604.05118 Optimization and Control +1604.05120 Numerical Analysis +1604.05122 Computational Engineering, Finance, and Science +1604.05124 Probability +1604.05126 Numerical Analysis +1604.05128 Logic +1604.05132 Computer Vision and Pattern Recognition +1604.05134 Optics +1604.05135 Combinatorics +1604.05141 Cosmology and Nongalactic Astrophysics +1604.05142 Astrophysics of Galaxies +1604.05143 High Energy Astrophysical Phenomena +1604.05144 Computer Vision and Pattern Recognition +1604.05148 Classical Analysis and ODEs +1604.05151 Information Theory +1604.05152 General Mathematics +1604.05154 Classical Analysis and ODEs +1604.05156 Materials Science +1604.05157 Classical Analysis and ODEs +1604.05159 Plasma Physics +1604.05160 General Physics +1604.05161 Plasma Physics +1604.05162 General Physics +1604.05163 Classical Analysis and ODEs +1604.05165 General Physics +1604.05167 Accelerator Physics +1604.05169 Information Theory +1604.05171 Medical Physics +1604.05174 General Physics +1604.05177 Medical Physics +1604.05178 Computational Finance +1604.05179 Classical Analysis and ODEs +1604.05180 Cryptography and Security +1604.05181 Theory +1604.05184 Classical Analysis and ODEs +1604.05185 Analysis of PDEs +1604.05192 Logic +1604.05194 Computer Science and Game Theory +1604.05196 Geometric Topology +1604.05198 Neural and Evolutionary Computing +1604.05201 Computational Engineering, Finance, and Science +1604.05207 Popular Physics +1604.05208 Materials Science +1604.05210 Computer Vision and Pattern Recognition +1604.05214 Probability +1604.05215 Materials Science +1604.05216 Astrophysics of Galaxies +1604.05218 Analysis of PDEs +1604.05219 Numerical Analysis +1604.05220 Earth and Planetary Astrophysics +1604.05221 Accelerator Physics +1604.05223 Number Theory +1604.05226 Combinatorics +1604.05227 Numerical Analysis +1604.05229 Analysis of PDEs +1604.05231 Probability +1604.05233 Astrophysics of Galaxies +1604.05235 Probability +1604.05236 Materials Science +1604.05238 Differential Geometry +1604.05243 Computer Science and Game Theory +1604.05244 Optics +1604.05245 History and Overview +1604.05247 General Physics +1604.05248 Metric Geometry +1604.05249 Metric Geometry +1604.05251 Machine Learning +1604.05255 Networking and Internet Architecture +1604.05256 Information Theory +1604.05258 Logic in Computer Science +1604.05259 Probability +1604.05260 General Physics +1604.05261 Algebraic Geometry +1604.05262 Combinatorics +1604.05263 Machine Learning +1604.05264 Computational Complexity +1604.05265 Soft Condensed Matter +1604.05267 Classical Analysis and ODEs +1604.05269 Group Theory +1604.05272 Databases +1604.05273 Artificial Intelligence +1604.05274 Databases +1604.05279 Soft Condensed Matter +1604.05281 Group Theory +1604.05282 Information Theory +1604.05287 Probability +1604.05290 Differential Geometry +1604.05293 Plasma Physics +1604.05294 Number Theory +1604.05296 Strongly Correlated Electrons +cond-mat/0407118 Other Condensed Matter +math/0601490 Logic +math/0607488 Operator Algebras +quant-ph/0303004 +1607.06920 +0807.3096 Probability +0810.3218 Analysis of PDEs +1004.2937 Algebraic Geometry +1201.1933 Differential Geometry +1205.2693 Astrophysics of Galaxies +1206.4255 Algebraic Geometry +1210.4140 Analysis of PDEs +1303.1333 Statistical Mechanics +1303.5687 Algebraic Geometry +1303.5690 Algebraic Geometry +1311.0398 Numerical Analysis +1312.2922 Algebraic Geometry +1403.6625 Algebraic Geometry +1404.6543 Optimization and Control +1404.7632 Statistical Finance +1405.0678 Algebraic Geometry +1406.1840 Analysis of PDEs +1406.1955 Dynamical Systems +1406.4427 History and Philosophy of Physics +1407.6327 Data Structures and Algorithms +1409.1289 Group Theory +1409.7979 Computer Science and Game Theory +1409.8286 Cosmology and Nongalactic Astrophysics +1410.4391 Machine Learning +1410.4718 Applications +1411.4843 Algebraic Geometry +1412.3523 Number Theory +1501.00949 Probability +1501.01732 Statistics Theory +1501.04713 Algebraic Geometry +1501.06630 Applications +1502.01053 Systems and Control +1502.06807 Computer Vision and Pattern Recognition +1502.07235 +1503.02900 Classical Analysis and ODEs +1503.04209 Rings and Algebras +1503.06939 Analysis of PDEs +1504.00955 Analysis of PDEs +1504.01299 Algebraic Geometry +1505.07325 Dynamical Systems +1506.00503 Complex Variables +1507.02843 Complex Variables +1507.03904 Fluid Dynamics +1507.05605 Data Structures and Algorithms +1507.08868 Phenomenology +1508.02440 Computer Science and Game Theory +1508.03362 Algebraic Geometry +1509.00096 Numerical Analysis +1509.02960 Number Theory +1509.03712 Formal Languages and Automata Theory +1509.04880 Data Structures and Algorithms +1509.07742 Analysis of PDEs +1510.00010 +1510.03823 Experiment +1510.07361 Methodology +1510.08808 History and Philosophy of Physics +1511.00131 +1511.02839 +1511.02991 Cosmology and Nongalactic Astrophysics +1511.04458 Computer Vision and Pattern Recognition +1511.06680 Statistical Mechanics +1512.00907 Computer Vision and Pattern Recognition +1512.02254 Data Structures and Algorithms +1512.03978 Phenomenology +1512.04026 Combinatorics +1512.04247 Neurons and Cognition +1512.04427 General Physics +1512.07037 Mesoscale and Nanoscale Physics +1601.00724 Soft Condensed Matter +1601.03800 Combinatorics +1601.03975 Optimization and Control +1601.03978 Numerical Analysis +1601.07282 +1601.08143 Phenomenology +1602.02272 Number Theory +1602.03484 Soft Condensed Matter +1602.03642 Cryptography and Security +1602.04079 Algebraic Geometry +1602.07228 Applications +1603.00652 Robotics +1603.01076 Computer Vision and Pattern Recognition +1603.01446 Algebraic Topology +1603.02004 Numerical Analysis +1603.02157 Instrumentation and Detectors +1603.02266 Quantitative Methods +1603.03197 Group Theory +1603.04589 Superconductivity +1603.06028 Cryptography and Security +1603.06919 Algebraic Geometry +1603.09560 Probability +1604.00248 Statistical Mechanics +1604.00299 Optimization and Control +1604.00762 Physics and Society +1604.02067 Number Theory +1604.03048 Strongly Correlated Electrons +1604.05093 +1604.08032 Theory +1604.08366 Theory +1604.08543 Number Theory +1605.01793 Dynamical Systems +1605.03389 Computer Vision and Pattern Recognition +1605.04123 Analysis of PDEs +1605.04316 Quantum Gases +1605.05873 Soft Condensed Matter +1605.08308 Multimedia +1605.08711 Quantum Algebra +1605.09148 Numerical Analysis +1605.09694 +1605.09779 Cryptography and Security +1606.00457 Fluid Dynamics +1606.00897 Quantitative Methods +1606.01869 Machine Learning +1606.02363 Analysis of PDEs +1606.02369 Algebraic Geometry +1606.03602 Classical Analysis and ODEs +1606.03961 Analysis of PDEs +1606.04300 Computation and Language +1606.06169 Cosmology and Nongalactic Astrophysics +1606.06493 General Topology +1606.06611 Computation +1606.07659 Learning +1606.07972 Information Theory +1606.08181 Algebraic Geometry +1606.09231 Theory +1607.00087 Artificial Intelligence +1607.00193 Phenomenology +1607.00408 Instrumentation and Methods for Astrophysics +1607.00734 Statistical Mechanics +1607.01240 Theory +1607.01254 Artificial Intelligence +1607.02349 General Finance +1607.03660 Optimization and Control +1607.04427 Learning +1607.04512 Instrumentation and Detectors +1607.05687 +1607.06547 Phenomenology +1607.06724 Materials Science +1607.06975 Experiment +1607.07022 +1607.08756 Optimization and Control +1607.08786 Phenomenology +1608.02162 Cosmology and Nongalactic Astrophysics +1608.02217 Lattice +1608.04300 Applications +1608.04549 Probability +1608.05831 Optics +1608.05973 Methodology +1608.06573 Classical Analysis and ODEs +1608.07597 Machine Learning +1608.08308 Statistical Mechanics +1608.08351 Theory +1608.08858 Phenomenology +1609.00078 Physics and Society +1609.00246 Numerical Analysis +1609.01591 Phenomenology +1609.01626 Solar and Stellar Astrophysics +1609.01892 +1609.02218 Atomic Physics +1609.02223 Theory +1609.02435 Strongly Correlated Electrons +1609.02481 Astrophysics of Galaxies +1609.04668 Analysis of PDEs +1609.04735 Networking and Internet Architecture +1609.04904 Computation and Language +1609.05120 +1609.05614 +1609.05847 Logic in Computer Science +1609.06212 Analysis of PDEs +1609.08376 Lattice +1609.09011 Probability +1610.00261 Trading and Market Microstructure +1610.02303 Exactly Solvable and Integrable Systems +1610.02584 Cell Behavior +1610.02722 +1610.02861 Probability +1610.03485 Strongly Correlated Electrons +1610.04915 Data Structures and Algorithms +1610.05314 Theory +1610.05541 Computer Vision and Pattern Recognition +1610.06736 Representation Theory +1610.07262 Machine Learning +1610.08324 Statistical Mechanics +1610.09360 Mesoscale and Nanoscale Physics +1610.09563 Astrophysics of Galaxies +1611.02799 Materials Science +1611.02940 +1611.03068 Learning +1611.03329 Computational Physics +1611.04056 Differential Geometry +1611.04333 Methodology +1611.04620 Operator Algebras +1611.06075 +1611.06877 Representation Theory +1611.06962 Computer Vision and Pattern Recognition +1611.06970 Spectral Theory +1611.07037 Theory +1611.07342 Mesoscale and Nanoscale Physics +1611.07462 History and Overview +1611.07590 Superconductivity +1611.08400 Discrete Mathematics +1611.08715 Classical Analysis and ODEs +1611.08970 +1611.09060 Combinatorics +1611.09096 Combinatorics +1611.09219 Computer Science and Game Theory +1611.09346 Computational Physics +1611.09367 Mesoscale and Nanoscale Physics +1611.09404 Functional Analysis +1611.09419 Robotics +1611.09445 Mesoscale and Nanoscale Physics +1611.09514 High Energy Astrophysical Phenomena +1611.09543 Plasma Physics +1611.09544 Biomolecules +1611.09549 Phenomenology +1611.09602 Classical Analysis and ODEs +1611.09667 Lattice +1611.09958 Machine Learning +1611.09972 Methodology +1611.10121 Operator Algebras +1612.00012 Phenomenology +1612.00106 Optimization and Control +1612.00108 Learning +1612.00144 Computer Vision and Pattern Recognition +1612.00239 Exactly Solvable and Integrable Systems +1612.00274 Soft Condensed Matter +1612.00323 Computers and Society +1612.00335 Optics +1612.00440 Phenomenology +1612.00441 +1612.00443 Other Computer Science +1612.00444 Phenomenology +1612.00445 Hardware Architecture +1612.00449 Astrophysics of Galaxies +1612.00450 Phenomenology +1612.00451 Astrophysics of Galaxies +1612.00453 Theory +1612.00455 Cosmology and Nongalactic Astrophysics +1612.00456 Instrumentation and Methods for Astrophysics +1612.00457 High Energy Astrophysical Phenomena +1612.00458 Astrophysics of Galaxies +1612.00460 Phenomenology +1612.00461 Astrophysics of Galaxies +1612.00462 Theory +1612.00463 Chaotic Dynamics +1612.00464 Astrophysics of Galaxies +1612.00466 Phenomenology +1612.00467 Computation and Language +1612.00469 Mesoscale and Nanoscale Physics +1612.00470 Theory +1612.00471 Combinatorics +1612.00472 Computer Vision and Pattern Recognition +1612.00475 Machine Learning +1612.00476 Databases +1612.00477 Astrophysics of Galaxies +1612.00478 Computer Vision and Pattern Recognition +1612.00480 Multiagent Systems +1612.00487 Number Theory +1612.00489 Number Theory +1612.00491 Astrophysics of Galaxies +1612.00492 +1612.00493 Statistical Mechanics +1612.00494 +1612.00496 Computer Vision and Pattern Recognition +1612.00497 Applications +1612.00498 Probability +1612.00499 Numerical Analysis +1612.00500 Computer Vision and Pattern Recognition +1612.00502 Physics and Society +1612.00503 Methodology +1612.00504 Soft Condensed Matter +1612.00505 Optimization and Control +1612.00506 Algebraic Topology +1612.00507 Atomic and Molecular Clusters +1612.00509 Commutative Algebra +1612.00510 +1612.00511 Phenomenology +1612.00513 Astrophysics of Galaxies +1612.00514 Probability +1612.00515 Classical Analysis and ODEs +1612.00517 Complex Variables +1612.00518 Statistical Mechanics +1612.00519 Complex Variables +1612.00522 Computer Vision and Pattern Recognition +1612.00523 Computer Vision and Pattern Recognition +1612.00526 Analysis of PDEs +1612.00529 Experiment +1612.00530 Mathematical Software +1612.00532 Algebraic Topology +1612.00536 Representation Theory +1612.00537 Dynamical Systems +1612.00539 Classical Analysis and ODEs +1612.00541 Algebraic Topology +1612.00542 Computer Vision and Pattern Recognition +1612.00545 Optics +1612.00546 Exactly Solvable and Integrable Systems +1612.00548 Algebraic Topology +1612.00549 Methodology +1612.00550 Quantum Gases +1612.00551 Theory +1612.00552 Information Theory +1612.00553 Materials Science +1612.00554 Learning +1612.00555 Machine Learning +1612.00556 Algebraic Geometry +1612.00557 +1612.00559 Differential Geometry +1612.00562 Numerical Analysis +1612.00563 Learning +1612.00565 Robotics +1612.00566 Optics +1612.00567 Computation and Language +1612.00568 +1612.00569 Mesoscale and Nanoscale Physics +1612.00570 Systems and Control +1612.00571 Statistics Theory +1612.00572 Mesoscale and Nanoscale Physics +1612.00574 Soft Condensed Matter +1612.00576 Computer Vision and Pattern Recognition +1612.00577 Differential Geometry +1612.00578 +1612.00581 +1612.00582 Computers and Society +1612.00583 Machine Learning +1612.00585 Learning +1612.00587 Probability +1612.00588 Probability +1612.00589 Combinatorics +1612.00590 High Energy Astrophysical Phenomena +1612.00591 Astrophysics of Galaxies +1612.00592 Space Physics +1612.00593 Computer Vision and Pattern Recognition +1612.00594 Mesoscale and Nanoscale Physics +1612.00596 Computer Vision and Pattern Recognition +1612.00597 Complex Variables +1612.00598 Lattice +1612.00599 Learning +1612.00602 Space Physics +1612.00604 Computer Vision and Pattern Recognition +1612.00606 Computer Vision and Pattern Recognition +1612.00607 Phenomenology +1612.00608 Instrumentation and Detectors +1612.00611 Learning +1612.00612 Instrumentation and Methods for Astrophysics +1612.00615 Machine Learning +1612.00617 Numerical Analysis +1612.00618 High Energy Astrophysical Phenomena +1612.00619 +1612.00621 Lattice +1612.00623 Databases +1612.00624 Instrumentation and Detectors +1612.00625 Computer Vision and Pattern Recognition +1612.00626 Instrumentation and Detectors +1612.00627 Differential Geometry +1612.00629 +1612.00631 +1612.00633 Mesoscale and Nanoscale Physics +1612.00636 Representation Theory +1612.00637 Learning +1612.00641 Soft Condensed Matter +1612.00642 Functional Analysis +1612.00643 Phenomenology +1612.00644 Neurons and Cognition +1612.00645 Computer Vision and Pattern Recognition +1612.00646 Operator Algebras +1612.00648 Combinatorics +1612.00649 Systems and Control +1612.00651 Functional Analysis +1612.00652 Algebraic Geometry +1612.00654 +1612.00657 Numerical Analysis +1612.00658 Adaptation and Self-Organizing Systems +1612.00661 Combinatorics +1612.00662 Machine Learning +1612.00663 Functional Analysis +1612.00664 Applications +1612.00665 Geometric Topology +1612.00666 Programming Languages +1612.00670 Programming Languages +1612.00671 Neural and Evolutionary Computing +1612.00672 Chemical Physics +1612.00673 Experiment +1612.00675 Computational Complexity +1612.00676 History and Philosophy of Physics +1612.00677 Optimization and Control +1612.00678 Algebraic Geometry +1612.00679 Materials Science +1612.00680 Dynamical Systems +1612.00682 +1612.00683 +1612.00684 +1612.00686 Learning +1612.00688 Combinatorics +1612.00691 Phenomenology +1612.00692 Probability +1612.00693 Logic in Computer Science +1612.00696 Theory +1612.00698 Complex Variables +1612.00700 Phenomenology +1612.00701 Theory +1612.00703 Neurons and Cognition +1612.00704 Soft Condensed Matter +1612.00706 Solar and Stellar Astrophysics +1612.00707 Optics +1612.00708 +1612.00711 Instrumentation and Methods for Astrophysics +1612.00712 Neural and Evolutionary Computing +1612.00713 +1612.00715 Systems and Control +1612.00716 Systems and Control +1612.00719 Number Theory +1612.00720 Mathematical Finance +1612.00725 Cosmology and Nongalactic Astrophysics +1612.00727 +1612.00730 Computers and Society +1612.00731 Combinatorics +1612.00732 Populations and Evolution +1612.00733 Computers and Society +1612.00734 Software Engineering +1612.00735 Software Engineering +1612.00736 Combinatorics +1612.00738 Computer Vision and Pattern Recognition +1612.00739 Lattice +1612.00741 Soft Condensed Matter +1612.00742 Artificial Intelligence +1612.00744 Optimization and Control +1612.00745 Learning +1612.00746 +1612.00747 Atomic Physics +1612.00748 Algebraic Geometry +1612.00749 Commutative Algebra +1612.00751 +1612.00753 Strongly Correlated Electrons +1612.00754 Algebraic Geometry +1612.00755 +1612.00756 Algebraic Geometry +1612.00757 Complex Variables +1612.00760 +1612.00761 Strongly Correlated Electrons +1612.00762 +1612.00766 Cryptography and Security +1612.00768 Theory +1612.00770 Cosmology and Nongalactic Astrophysics +1612.00772 +1612.00773 Phenomenology +1612.00774 Astrophysics of Galaxies +1612.00776 Astrophysics of Galaxies +1612.00777 Theory +1612.00780 Pricing of Securities +1612.00781 Strongly Correlated Electrons +1612.00783 Cosmology and Nongalactic Astrophysics +1612.00784 Phenomenology +1612.00785 Logic +1612.00787 Representation Theory +1612.00788 Numerical Analysis +1612.00789 Numerical Analysis +1612.00793 Numerical Analysis +1612.00795 Phenomenology +1612.00798 Analysis of PDEs +1612.00799 Computer Vision and Pattern Recognition +1612.00800 Computers and Society +1612.00802 Astrophysics of Galaxies +1612.00803 Analysis of PDEs +1612.00804 Machine Learning +1612.00805 Astrophysics of Galaxies +1612.00806 Probability +1612.00807 Multimedia +1612.00809 Theory +1612.00810 Theory +1612.00812 Cosmology and Nongalactic Astrophysics +1612.00816 Optimization and Control +1612.00817 Learning +1612.00818 Group Theory +1612.00819 Quantum Gases +1612.00822 Classical Analysis and ODEs +1612.00823 +1612.00824 Machine Learning +1612.00825 Populations and Evolution +1612.00826 Phenomenology +1612.00827 Learning +1612.00828 Pricing of Securities +1612.00829 Differential Geometry +1612.00830 Analysis of PDEs +1612.00831 Phenomenology +1612.00832 Rings and Algebras +1612.00833 General Finance +1612.00834 Solar and Stellar Astrophysics +1612.00837 Computer Vision and Pattern Recognition +1612.00838 Numerical Analysis +0705.1792 Algebraic Geometry +0711.2307 Dynamical Systems +0802.2011 Differential Geometry +0804.0605 Differential Geometry +0805.2605 Commutative Algebra +0806.2434 Optics +0810.3351 Differential Geometry +0811.0496 +0812.1602 Differential Geometry +0901.3813 Optics +0904.1069 Commutative Algebra +0909.2306 Optics +1001.3293 Commutative Algebra +1102.2132 Commutative Algebra +1102.4174 Analysis of PDEs +1106.0525 Geometric Topology +1201.5933 Commutative Algebra +1202.5392 Analysis of PDEs +1204.6669 Algebraic Geometry +1205.2129 Numerical Analysis +1206.7067 Computational Geometry +1208.1738 Geometric Topology +1208.1755 Dynamical Systems +1208.4279 Algebraic Geometry +1209.6477 Classical Analysis and ODEs +1210.5125 Combinatorics +1211.3426 Operator Algebras +1212.0157 Logic +1212.5826 Classical Analysis and ODEs +1301.2051 Dynamical Systems +1301.3831 Earth and Planetary Astrophysics +1301.5500 Logic in Computer Science +1303.0126 Optimization and Control +1303.6257 Computational Physics +1304.3824 General Finance +1304.4836 Algebraic Topology +1305.4888 Analysis of PDEs +1305.5799 Dynamical Systems +1308.0802 Numerical Analysis +1308.2735 +1310.1723 Probability +1310.3392 Number Theory +1311.3787 Cosmology and Nongalactic Astrophysics +1312.0145 Metric Geometry +1312.5701 Number Theory +1312.6434 Algebraic Geometry +1402.4299 Commutative Algebra +1402.4718 Data Structures and Algorithms +1403.0706 Algebraic Geometry +1403.0894 Optics +1405.2711 Group Theory +1406.1914 Algebraic Topology +1406.5311 Optimization and Control +1406.5734 Analysis of PDEs +1406.7769 Combinatorics +1406.7857 Combinatorics +1408.0552 Algebraic Geometry +1409.5074 Quantum Algebra +1409.6034 Applications +1409.7187 Methodology +1409.7246 +1410.0327 Theory +1410.8144 +1412.1805 Algebraic Topology +1412.1977 +1412.3570 Symbolic Computation +1412.8209 Theory +1501.00914 Combinatorics +1501.02406 Optics +1501.06678 Systems and Control +1502.00830 Rings and Algebras +1502.05699 Chemical Physics +1502.05741 Physics and Society +1503.00899 Artificial Intelligence +1503.00982 Methodology +1503.04611 Strongly Correlated Electrons +1503.05867 Soft Condensed Matter +1503.08131 Multiagent Systems +1503.08249 Earth and Planetary Astrophysics +1504.03174 Instrumentation and Detectors +1504.04183 Probability +1504.04267 Analysis of PDEs +1504.04270 Phenomenology +1504.04659 Differential Geometry +1504.05666 Information Theory +1504.07181 Group Theory +1504.08234 Plasma Physics +1505.00684 Functional Analysis +1505.01066 Quantitative Methods +1505.01994 Differential Geometry +1505.03566 Computer Vision and Pattern Recognition +1505.04387 Quantum Gases +1505.04418 High Energy Astrophysical Phenomena +1505.04606 +1505.05622 Group Theory +1505.06379 Systems and Control +1506.00294 Analysis of PDEs +1506.00846 Phenomenology +1506.01743 Information Retrieval +1506.02963 Physics and Society +1506.05382 Artificial Intelligence +1506.06109 Strongly Correlated Electrons +1507.02529 +1507.03294 Algebraic Geometry +1507.04242 Chaotic Dynamics +1507.04355 +1507.05024 Instrumentation and Detectors +1507.06276 Quantum Algebra +1507.06557 +1507.08031 Cosmology and Nongalactic Astrophysics +1507.08598 Analysis of PDEs +1508.02416 Theory +1508.02507 Experiment +1508.04394 Geometric Topology +1508.04427 K-Theory and Homology +1508.05371 Cellular Automata and Lattice Gases +1508.05994 Statistics Theory +1508.06686 Social and Information Networks +1508.07199 Functional Analysis +1509.01830 Atomic Physics +1509.02301 Computation and Language +1509.02833 Cosmology and Nongalactic Astrophysics +1509.03155 +1509.03484 Physics and Society +1509.04410 Phenomenology +1509.05238 Computers and Society +1509.06659 Social and Information Networks +1509.07497 Machine Learning +1509.08679 Materials Science +1510.01174 Mesoscale and Nanoscale Physics +1510.01597 Optimization and Control +1510.02191 Mesoscale and Nanoscale Physics +1510.04670 Mesoscale and Nanoscale Physics +1510.05505 Strongly Correlated Electrons +1510.06540 Statistical Mechanics +1510.06628 +1510.06892 Phenomenology +1511.00132 Phenomenology +1511.00153 Phenomenology +1511.03582 Number Theory +1511.04344 +1511.04427 +1511.04481 Solar and Stellar Astrophysics +1511.04731 Computational Complexity +1511.04917 Mesoscale and Nanoscale Physics +1511.05672 Human-Computer Interaction +1511.06375 Phenomenology +1511.07228 Experiment +1511.07922 Symbolic Computation +1512.00502 Earth and Planetary Astrophysics +1512.02399 Algebraic Topology +1512.03784 Neurons and Cognition +1512.04212 Classical Analysis and ODEs +1512.04888 Atomic Physics +1512.05783 Solar and Stellar Astrophysics +1512.08853 Geometric Topology +1601.00447 Astrophysics of Galaxies +1601.01541 Quantum Gases +1601.02000 Analysis of PDEs +1601.02486 Theory +1601.02595 +1601.03028 Theory +1601.03048 Theory +1601.04039 Analysis of PDEs +1601.05546 Algebraic Geometry +1601.05758 Numerical Analysis +1601.06026 Analysis of PDEs +1601.06241 Information Theory +1601.06308 Algebraic Geometry +1601.06604 Materials Science +1601.06750 Learning +1601.07047 Distributed, Parallel, and Cluster Computing +1601.07288 Phenomenology +1601.07463 Methodology +1601.07488 Information Theory +1601.07670 Data Structures and Algorithms +1601.07708 Mesoscale and Nanoscale Physics +1601.07788 Rings and Algebras +1601.07878 +1601.07902 Strongly Correlated Electrons +1601.07914 Algebraic Geometry +1601.07917 Tissues and Organs +1601.07920 Complex Variables +1601.07923 Instrumentation and Methods for Astrophysics +1601.07924 Logic +1601.07925 Learning +1601.07930 Dynamical Systems +1601.07936 Dynamical Systems +1601.07941 Computational Engineering, Finance, and Science +1601.07944 Distributed, Parallel, and Cluster Computing +1601.07947 Machine Learning +1601.07949 Probability +1601.07950 Computer Vision and Pattern Recognition +1601.07953 Graphics +1601.07959 Materials Science +1601.07961 Mathematical Finance +1601.07962 Software Engineering +1601.07963 Soft Condensed Matter +1601.07964 Materials Science +1601.07972 Optimization and Control +1601.07975 Combinatorics +1601.07976 Information Theory +1601.07977 Computer Vision and Pattern Recognition +1601.07978 Group Theory +1601.07982 Optics +1601.07984 General Topology +1601.07985 Information Theory +1601.07994 Applications +1601.07995 Physics and Society +1601.07997 Chemical Physics +1601.07998 Algebraic Geometry +1601.07999 Applications +1601.08000 Materials Science +1601.08001 Lattice +1601.08002 Methodology +1601.08003 Computer Vision and Pattern Recognition +1601.08005 Atomic Physics +1601.08006 Group Theory +1601.08008 Analysis of PDEs +1601.08009 Combinatorics +1601.08010 Geometric Topology +1601.08013 Probability +1601.08019 Dynamical Systems +1601.08021 Social and Information Networks +1601.08023 Optimization and Control +1601.08026 Probability +1601.08027 Networking and Internet Architecture +1601.08028 Statistical Mechanics +1601.08029 Algebraic Geometry +1601.08030 Human-Computer Interaction +1601.08031 Computational Complexity +1601.08032 Human-Computer Interaction +1601.08033 Phenomenology +1601.08034 Applications +1601.08035 Mesoscale and Nanoscale Physics +1601.08037 Instrumentation and Methods for Astrophysics +1601.08038 Analysis of PDEs +1601.08039 Distributed, Parallel, and Cluster Computing +1601.08040 Mesoscale and Nanoscale Physics +1601.08042 Functional Analysis +1601.08044 Soft Condensed Matter +1601.08046 Other Computer Science +1601.08047 Analysis of PDEs +1601.08050 Mesoscale and Nanoscale Physics +1601.08051 Data Structures and Algorithms +1601.08053 Probability +1601.08056 Probability +1601.08059 Human-Computer Interaction +1601.08067 Distributed, Parallel, and Cluster Computing +1601.08068 Machine Learning +1601.08072 Complex Variables +1601.08073 Classical Analysis and ODEs +1601.08074 Medical Physics +1601.08084 Combinatorics +1601.08090 Applications +1601.08091 Fluid Dynamics +1601.08096 Solar and Stellar Astrophysics +1601.08097 Applications +1601.08102 Complex Variables +1601.08103 Numerical Analysis +1601.08106 +1601.08109 Number Theory +1601.08114 Instrumentation and Methods for Astrophysics +1601.08115 Algebraic Geometry +1601.08116 Multiagent Systems +1601.08119 Fluid Dynamics +1601.08120 Theory +1601.08121 Quantitative Methods +1601.08125 Materials Science +1601.08126 Rings and Algebras +1601.08127 Analysis of PDEs +1601.08129 +1601.08130 Combinatorics +1601.08132 Information Theory +1601.08133 Methodology +1601.08138 High Energy Astrophysical Phenomena +1601.08139 Cryptography and Security +1601.08142 Group Theory +1601.08144 Functional Analysis +1601.08145 Numerical Analysis +1601.08151 Probability +1601.08154 Multiagent Systems +1601.08156 Optics +1601.08158 Robotics +1601.08162 Multiagent Systems +1601.08163 Probability +1601.08165 Machine Learning +1601.08166 Optimization and Control +1601.08169 Machine Learning +1601.08172 Metric Geometry +1601.08173 Number Theory +1601.08174 Statistics Theory +1601.08176 Information Theory +1601.08177 Differential Geometry +1601.08178 Classical Analysis and ODEs +1601.08179 Numerical Analysis +1601.08183 Mesoscale and Nanoscale Physics +1601.08186 Algebraic Geometry +1601.08188 Computer Vision and Pattern Recognition +1601.08190 Information Theory +1601.08193 Phenomenology +1601.08194 Group Theory +1601.08195 Superconductivity +1601.08196 Quantum Algebra +1601.08202 Quantitative Methods +1601.08205 +1601.08208 Operator Algebras +1601.08210 Physics Education +1601.08212 Mesoscale and Nanoscale Physics +1601.08214 Logic +1601.08215 Theory +1601.08219 Probability +1601.08220 +1601.08223 Theory +1601.08226 Superconductivity +1601.08227 Cryptography and Security +1601.08229 Algebraic Geometry +1601.08230 +1601.08235 Strongly Correlated Electrons +1601.08237 Group Theory +1601.08240 Number Theory +1601.08243 Materials Science +1601.08244 Methodology +cond-mat/0502338 Strongly Correlated Electrons +gr-qc/0107100 +math/0303207 Algebraic Topology +math/0602111 Algebraic Geometry +math/0610698 Differential Geometry +1601.03597 Numerical Analysis +0705.0681 +0911.4709 Theory +1003.5823 Theory +1012.2399 Soft Condensed Matter +1110.2375 Phenomenology +1201.1439 Mesoscale and Nanoscale Physics +1207.4658 Rings and Algebras +1210.6141 Phenomenology +1211.7306 Commutative Algebra +1212.6348 Combinatorics +1301.1057 Combinatorics +1306.6593 Data Structures and Algorithms +1307.2702 Representation Theory +1308.3336 Data Structures and Algorithms +1309.5675 +1311.0514 Algebraic Topology +1312.0754 Analysis of PDEs +1401.5042 Symplectic Geometry +1403.5422 Group Theory +1405.4129 Mesoscale and Nanoscale Physics +1405.6891 Algebraic Topology +1406.4829 Computer Science and Game Theory +1407.1414 Theory +1407.3359 Number Theory +1407.6616 +1407.6799 Quantum Gases +1408.3158 Logic +1408.3641 Probability +1408.4848 Mathematical Finance +1409.0160 Analysis of PDEs +1409.3325 Combinatorics +1409.4445 Theory +1409.4487 Analysis of PDEs +1409.4585 Combinatorics +1409.5397 Classical Analysis and ODEs +1409.6077 Phenomenology +1409.8560 Analysis of PDEs +1412.5541 Classical Physics +1501.03420 Spectral Theory +1502.05645 Spectral Theory +1502.07016 Combinatorics +1502.07118 Programming Languages +1503.07990 Machine Learning +1504.05776 Computer Vision and Pattern Recognition +1504.06352 Computation +1505.00955 Rings and Algebras +1505.05250 Theory +1505.07083 Algebraic Geometry +1505.07269 Phenomenology +1505.07348 Soft Condensed Matter +1506.01284 Phenomenology +1506.07898 Data Structures and Algorithms +1507.06102 Probability +1507.07121 Data Structures and Algorithms +1508.00420 +1508.01410 Mesoscale and Nanoscale Physics +1508.04122 Soft Condensed Matter +1508.05581 Computer Vision and Pattern Recognition +1508.06749 Methodology +1508.06770 Probability +1509.00175 Algebraic Geometry +1509.01387 +1509.05980 Statistical Mechanics +1509.08373 Systems and Control +1510.03810 Differential Geometry +1510.07838 Analysis of PDEs +1511.01105 +1511.01106 +1511.01226 Numerical Analysis +1511.02376 +1511.03129 Cosmology and Nongalactic Astrophysics +1511.03229 Data Structures and Algorithms +1511.04116 Trading and Market Microstructure +1511.04288 Lattice +1511.04893 Formal Languages and Automata Theory +1511.06818 Theory +1511.07135 Physics and Society +1511.07786 Metric Geometry +1511.08710 +1512.00280 Probability +1512.00359 Lattice +1512.05669 +1512.06765 Algebraic Geometry +1512.08779 Combinatorics +1512.08892 Probability +1601.01451 Cosmology and Nongalactic Astrophysics +1601.02303 +1601.02306 Social and Information Networks +1601.03463 Probability +1601.04848 Networking and Internet Architecture +1601.06225 +1601.06676 Information Theory +1601.07780 Methodology +1602.00714 Phenomenology +1602.00926 +1602.03988 +1602.04686 Mesoscale and Nanoscale Physics +1602.05612 Phenomenology +1602.05872 Complex Variables +1602.06468 Learning +1602.07131 +1602.07583 Logic +1602.08389 Earth and Planetary Astrophysics +1602.09082 Applications +1603.00422 Soft Condensed Matter +1603.01547 Computation and Language +1603.03227 Mesoscale and Nanoscale Physics +1603.03882 Astrophysics of Galaxies +1603.03901 Representation Theory +1603.05869 Strongly Correlated Electrons +1603.06004 Mesoscale and Nanoscale Physics +1603.06061 +1603.06091 +1603.06370 Materials Science +1603.07362 Theory +1603.07923 Materials Science +1603.09097 +1604.00464 K-Theory and Homology +1604.01078 Materials Science +1604.01199 Combinatorics +1604.01361 High Energy Astrophysical Phenomena +1604.01647 Phenomenology +1604.03062 Hardware Architecture +1604.04644 +1604.06697 Data Structures and Algorithms +1604.07198 +1605.00186 Formal Languages and Automata Theory +1605.00346 Methodology +1605.00647 Astrophysics of Galaxies +1605.02163 Instrumentation and Detectors +1605.04176 High Energy Astrophysical Phenomena +1605.06697 Formal Languages and Automata Theory +1605.09238 Classical Analysis and ODEs +1605.09491 Differential Geometry +1606.00126 Materials Science +1606.00662 Physics and Society +1606.01668 Materials Science +1606.01678 Geophysics +1606.02067 Materials Science +1606.02102 Probability +1606.02441 Instrumentation and Detectors +1606.03131 Classical Analysis and ODEs +1606.03906 Metric Geometry +1606.04012 Physics and Society +1606.04147 Instrumentation and Detectors +1606.04316 Machine Learning +1606.04636 Applications +1606.05030 Optimization and Control +1606.05115 Classical Analysis and ODEs +1606.05395 Analysis of PDEs +1606.05429 Phenomenology +1606.06571 Adaptation and Self-Organizing Systems +1606.06681 Computer Vision and Pattern Recognition +1606.06973 Other Computer Science +1606.07179 Chemical Physics +1606.07180 Chemical Physics +1606.07195 High Energy Astrophysical Phenomena +1606.07239 Computer Vision and Pattern Recognition +1606.07301 +1606.07327 Phenomenology +1606.07366 Materials Science +1606.07389 Networking and Internet Architecture +1606.07429 Statistical Mechanics +1606.07430 Accelerator Physics +1606.07433 High Energy Astrophysical Phenomena +1606.07434 Cosmology and Nongalactic Astrophysics +1606.07441 Strongly Correlated Electrons +1606.07451 Probability +1606.07455 Phenomenology +1606.07457 Emerging Technologies +1606.07459 Instrumentation and Detectors +1606.07460 History and Overview +1606.07461 Computation and Language +1606.07463 Social and Information Networks +1606.07465 Operator Algebras +1606.07467 Emerging Technologies +1606.07468 Accelerator Physics +1606.07470 Computation and Language +1606.07474 Combinatorics +1606.07476 Functional Analysis +1606.07478 Algebraic Geometry +1606.07479 Networking and Internet Architecture +1606.07480 Networking and Internet Architecture +1606.07481 Computation and Language +1606.07489 Logic +1606.07490 Distributed, Parallel, and Cluster Computing +1606.07491 Probability +1606.07496 Computer Vision and Pattern Recognition +1606.07502 Distributed, Parallel, and Cluster Computing +1606.07505 Phenomenology +1606.07506 Distributed, Parallel, and Cluster Computing +1606.07507 Statistical Mechanics +1606.07509 Computer Vision and Pattern Recognition +1606.07511 Computer Vision and Pattern Recognition +1606.07513 Logic in Computer Science +1606.07514 Artificial Intelligence +1606.07515 Logic in Computer Science +1606.07516 Artificial Intelligence +1606.07517 Computer Science and Game Theory +1606.07518 Logic in Computer Science +1606.07519 Computer Science and Game Theory +1606.07520 Artificial Intelligence +1606.07521 Computer Science and Game Theory +1606.07523 Computer Science and Game Theory +1606.07524 Logic in Computer Science +1606.07525 Multiagent Systems +1606.07526 Logic in Computer Science +1606.07527 Logic in Computer Science +1606.07528 Artificial Intelligence +1606.07529 Artificial Intelligence +1606.07530 Analysis of PDEs +1606.07531 Information Theory +1606.07533 Computer Science and Game Theory +1606.07534 Complex Variables +1606.07535 +1606.07537 Computers and Society +1606.07538 Experiment +1606.07540 Mesoscale and Nanoscale Physics +1606.07545 Computation and Language +1606.07548 Computation and Language +1606.07550 Social and Information Networks +1606.07553 Subcellular Processes +1606.07555 Mesoscale and Nanoscale Physics +1606.07556 Social and Information Networks +1606.07557 Programming Languages +1606.07558 Learning +1606.07560 Numerical Analysis +1606.07561 Information Theory +1606.07565 Information Retrieval +1606.07568 Dynamical Systems +1606.07569 Strongly Correlated Electrons +1606.07573 Dynamical Systems +1606.07574 Medical Physics +1606.07575 Machine Learning +1606.07576 Probability +1606.07578 Machine Learning +1606.07580 Computational Physics +1606.07584 Quantum Algebra +1606.07585 Formal Languages and Automata Theory +1606.07588 Representation Theory +1606.07591 Numerical Analysis +1606.07593 Theory +1606.07595 Differential Geometry +1606.07597 Combinatorics +1606.07598 Sound +1606.07601 Computation and Language +1606.07603 Atomic Physics +1606.07604 Information Retrieval +1606.07605 Information Theory +1606.07606 Information Theory +1606.07607 Dynamical Systems +1606.07608 Information Retrieval +1606.07610 Methodology +1606.07611 +1606.07613 Networking and Internet Architecture +1606.07614 Combinatorics +1606.07617 Lattice +1606.07620 Computation +1606.07622 Number Theory +1606.07623 Emerging Technologies +1606.07624 Phenomenology +1606.07625 Phenomenology +1606.07629 Materials Science +1606.07630 Networking and Internet Architecture +1606.07632 Classical Analysis and ODEs +1606.07634 Mesoscale and Nanoscale Physics +1606.07637 Analysis of PDEs +1606.07638 Materials Science +1606.07641 Analysis of PDEs +1606.07642 Instrumentation and Methods for Astrophysics +1606.07648 Operator Algebras +1606.07652 Numerical Analysis +1606.07653 Soft Condensed Matter +1606.07655 Combinatorics +1606.07664 Probability +1606.07666 Phenomenology +1606.07667 Applications +1606.07668 Social and Information Networks +1606.07670 Atomic Physics +1606.07671 Materials Science +1606.07676 Distributed, Parallel, and Cluster Computing +1606.07679 Algebraic Geometry +1606.07681 General Physics +1606.07683 Physics and Society +1606.07684 Risk Management +1606.07686 Numerical Analysis +1606.07687 Programming Languages +1606.07688 Materials Science +1606.07690 Differential Geometry +1606.07692 Probability +1606.07696 Materials Science +1606.07698 Numerical Analysis +1606.07699 Differential Geometry +1606.07701 Differential Geometry +1606.07702 Statistics Theory +1606.07704 Probability +1606.07707 Social and Information Networks +1606.07708 Probability +1606.07710 Logic +1606.07712 +1606.07714 Algebraic Geometry +1606.07715 Algebraic Geometry +1606.07716 Dynamical Systems +1606.07720 Materials Science +1606.07722 Information Retrieval +1606.07723 +1606.07724 Analysis of PDEs +1606.07726 Soft Condensed Matter +1606.07727 Number Theory +1606.07728 Group Theory +1606.07729 Systems and Control +1606.07731 Analysis of PDEs +1606.07734 Analysis of PDEs +1606.07736 Computation and Language +1606.07738 Analysis of PDEs +1606.07749 Statistics Theory +1606.07750 Combinatorics +1606.07752 Analysis of PDEs +1606.07754 Classical Analysis and ODEs +1606.07757 Computer Vision and Pattern Recognition +1606.07758 Superconductivity +1606.07760 Cryptography and Security +1606.07761 Algebraic Geometry +1606.07763 Analysis of PDEs +1606.07765 Analysis of PDEs +1606.07771 Dynamical Systems +1606.07778 Group Theory +1606.07779 Other Quantitative Biology +1606.07780 Complex Variables +1606.07781 Human-Computer Interaction +1606.07782 Number Theory +1606.07783 Computation and Language +1606.07784 Databases +1606.07785 Distributed, Parallel, and Cluster Computing +1606.07787 Optics +1606.07788 Algebraic Geometry +1606.07792 Learning +1606.07793 Phenomenology +1606.07795 +1606.07796 Functional Analysis +1606.07799 Rings and Algebras +1606.07800 Rings and Algebras +cond-mat/0403496 Soft Condensed Matter +cond-mat/0702339 Soft Condensed Matter +cs/0502074 Learning +hep-th/0703055 Theory +0808.1199 Geometric Topology +0906.2984 +1001.4031 Computational Finance +1009.0627 Earth and Planetary Astrophysics +1104.4542 Group Theory +1107.0435 Analysis of PDEs +1107.4632 Risk Management +1111.2325 +1111.6246 Analysis of PDEs +1201.1214 Computational Complexity +1201.2314 Theory +1201.4741 Phenomenology +1206.3746 Computers and Society +1208.4523 Optics +1212.6696 Algebraic Geometry +1302.4559 Neurons and Cognition +1302.5982 Group Theory +1303.1870 Information Theory +1303.5531 Algebraic Geometry +1305.5510 Differential Geometry +1306.0126 Algebraic Geometry +1308.6323 Phenomenology +1309.6141 Probability +1311.2537 +1402.0600 +1404.2359 Group Theory +1404.2963 Algebraic Geometry +1404.7153 Number Theory +1405.0721 Number Theory +1405.2436 Functional Analysis +1405.4463 Networking and Internet Architecture +1405.7880 Probability +1406.5688 Digital Libraries +1406.6756 Geometric Topology +1408.1384 +1408.1664 Artificial Intelligence +1408.6751 Differential Geometry +1409.0485 Combinatorics +1410.1611 Mathematical Finance +1410.8170 Operator Algebras +1411.4725 Combinatorics +1411.5532 Mesoscale and Nanoscale Physics +1412.4090 Geophysics +1412.7443 Logic +1501.00386 Logic in Computer Science +1501.00644 Networking and Internet Architecture +1501.03690 Category Theory +1501.05893 Pricing of Securities +1501.06085 +1501.06518 Combinatorics +1502.00392 Physics and Society +1502.05290 Combinatorics +1502.06106 Pricing of Securities +1502.06834 Geometric Topology +1502.07154 Theory +1503.00797 Complex Variables +1503.01363 Data Structures and Algorithms +1503.02977 Number Theory +1503.03032 Commutative Algebra +1503.03139 Group Theory +1503.05061 +1503.05761 Information Theory +1504.00666 Probability +1504.03426 Information Theory +1504.05172 Group Theory +1505.00460 Analysis of PDEs +1505.00531 Analysis of PDEs +1505.04091 Operator Algebras +1505.06293 Group Theory +1505.06318 Methodology +1505.06389 Computer Vision and Pattern Recognition +1505.06929 Algebraic Topology +1506.00886 Group Theory +1506.05408 Algebraic Topology +1506.07555 Fluid Dynamics +1506.08010 Computation +1506.08547 Data Structures and Algorithms +1506.09126 Algebraic Topology +1506.09170 Number Theory +1507.01034 Algebraic Topology +1507.01924 Algebraic Geometry +1507.02361 Theory +1507.06408 Phenomenology +1507.06939 Rings and Algebras +1507.08400 Operator Algebras +1508.00230 Networking and Internet Architecture +1508.00793 Methodology +1508.01870 Group Theory +1508.01982 Optimization and Control +1508.03923 Probability +1508.04250 Computer Science and Game Theory +1508.05517 Optics +1509.01384 Probability +1509.01562 Algebraic Geometry +1509.01692 Computation and Language +1509.04085 Distributed, Parallel, and Cluster Computing +1509.06199 Phenomenology +1509.06471 Phenomenology +1509.08678 +1510.00047 +1510.01171 Machine Learning +1510.01447 Phenomenology +1510.02232 Statistics Theory +1510.04214 Optimization and Control +1510.04883 +1510.07555 Optics +1510.08386 Number Theory +1510.08954 Statistical Mechanics +1510.09106 Computer Science and Game Theory +1511.01173 Analysis of PDEs +1511.01716 Optimization and Control +1511.02666 Differential Geometry +1511.02700 Analysis of PDEs +1511.02879 Phenomenology +1511.03619 Commutative Algebra +1511.04011 Representation Theory +1511.05754 Superconductivity +1511.09213 Earth and Planetary Astrophysics +1512.00107 Differential Geometry +1512.00564 Cosmology and Nongalactic Astrophysics +1512.00616 Optimization and Control +1512.00753 Number Theory +1512.02382 Fluid Dynamics +1512.02460 Populations and Evolution +1512.02500 Soft Condensed Matter +1512.02795 +1512.03374 Differential Geometry +1512.04902 Materials Science +1512.07349 Social and Information Networks +1512.07957 Strongly Correlated Electrons +1601.00083 Classical Analysis and ODEs +1601.00863 Optimization and Control +1601.02251 Algebraic Geometry +1601.03673 +1601.03968 Probability +1601.05146 Physics and Society +1601.05761 Functional Analysis +1601.07449 Group Theory +1602.00328 Computer Vision and Pattern Recognition +1602.01518 Logic +1602.02352 Numerical Analysis +1602.03202 Computer Science and Game Theory +1602.03898 +1602.03930 Computer Vision and Pattern Recognition +1602.04102 Statistics Theory +1602.04309 Differential Geometry +1602.04555 Quantum Gases +1602.05690 Optimization and Control +1602.06107 Algebraic Geometry +1602.06511 Theory +1602.06589 Computational Engineering, Finance, and Science +1602.06790 Materials Science +1602.07001 Mesoscale and Nanoscale Physics +1602.07031 Distributed, Parallel, and Cluster Computing +1602.07605 Probability +1602.07782 Strongly Correlated Electrons +1602.07966 Statistical Mechanics +1602.08406 Programming Languages +1602.08620 Logic in Computer Science +1602.08692 Strongly Correlated Electrons +1602.08754 Applications +1603.00799 Mesoscale and Nanoscale Physics +1603.01329 Optics +1603.01499 Probability +1603.02241 Materials Science +1603.02787 Atomic Physics +1603.03633 Materials Science +1603.03670 High Energy Astrophysical Phenomena +1603.04081 Strongly Correlated Electrons +1603.04951 Solar and Stellar Astrophysics +1603.05061 Theory +1603.05185 +1603.05224 Statistics Theory +1603.05813 Quantum Gases +1603.05837 Phenomenology +1603.06218 Theory +1603.06271 Algebraic Topology +1603.06356 Commutative Algebra +1603.07171 Number Theory +1603.08256 Theory +1604.00406 Phenomenology +1604.00736 Networking and Internet Architecture +1604.01782 Theory +1604.01972 Machine Learning +1604.02271 Computer Vision and Pattern Recognition +1604.03268 Commutative Algebra +1604.03939 Cosmology and Nongalactic Astrophysics +1604.05544 Lattice +1604.06346 +1604.06968 Data Structures and Algorithms +1604.07733 Complex Variables +1604.07841 Theory +1604.08082 Phenomenology +1604.08150 Dynamical Systems +1604.08617 Theory +1605.00122 Information Retrieval +1605.01142 +1605.01419 +1605.02447 Probability +1605.02623 Solar and Stellar Astrophysics +1605.03103 +1605.03171 Experiment +1605.03806 Phenomenology +1605.04436 Experiment +1605.04462 Computation and Language +1605.04770 Computer Vision and Pattern Recognition +1605.05087 Learning +1605.05565 Theory +1605.06605 Phenomenology +1605.08498 Theory +1605.08801 Dynamical Systems +1605.09072 Theory +1605.09426 +1606.00254 General Physics +1606.00490 Optimization and Control +1606.01089 Strongly Correlated Electrons +1606.01319 Molecular Networks +1606.01423 Soft Condensed Matter +1606.01484 Machine Learning +1606.02046 Algebraic Geometry +1606.02271 Theory +1606.02618 +1606.02997 Strongly Correlated Electrons +1606.03254 Computation and Language +1606.03711 History and Overview +1606.04341 Representation Theory +1606.05908 Machine Learning +1606.05976 Analysis of PDEs +1606.06894 Optics +1606.07695 Computer Vision and Pattern Recognition +1606.08384 Theory +1606.08556 +1606.09240 Number Theory +1607.02288 Soft Condensed Matter +1607.02303 Neural and Evolutionary Computing +1607.02306 Sound +1607.03039 Computational Geometry +1607.03682 Sound +1607.04003 +1607.04699 Number Theory +1607.04882 +1607.05351 Artificial Intelligence +1607.05615 Chemical Physics +1607.05654 Human-Computer Interaction +1607.05863 Theory +1607.05877 Disordered Systems and Neural Networks +1607.06437 Fluid Dynamics +1607.06986 Computer Vision and Pattern Recognition +1607.07432 Combinatorics +1607.07452 Astrophysics of Galaxies +1607.07944 Logic +1607.08308 +1607.08373 Theory +1608.00063 Numerical Analysis +1608.00189 Operator Algebras +1608.00474 Information Theory +1608.00492 Cryptography and Security +1608.00884 Superconductivity +1608.00984 Mesoscale and Nanoscale Physics +1608.01010 Classical Analysis and ODEs +1608.01046 +1608.01098 Atomic Physics +1608.01612 Combinatorics +1608.01682 Instrumentation and Methods for Astrophysics +1608.01745 Computer Vision and Pattern Recognition +1608.01754 Algebraic Geometry +1608.01820 Discrete Mathematics +1608.01835 Artificial Intelligence +1608.01914 Quantum Gases +1608.01975 Quantitative Methods +1608.02040 Theory +1608.02178 Pattern Formation and Solitons +1608.02357 Combinatorics +1608.02437 Optics +1608.02542 +1608.02615 Data Structures and Algorithms +1608.02663 Differential Geometry +1608.03282 Social and Information Networks +1608.03333 Learning +1608.03393 Computation +1608.03478 Probability +1608.03507 Artificial Intelligence +1608.03572 Geometric Topology +1608.03601 Representation Theory +1608.03898 Graphics +1608.03902 Computation and Language +1608.03905 Information Retrieval +1608.03907 Computer Vision and Pattern Recognition +1608.03908 Optimization and Control +1608.03909 Instrumentation and Methods for Astrophysics +1608.03911 Materials Science +1608.03912 Programming Languages +1608.03913 Statistics Theory +1608.03914 Computer Vision and Pattern Recognition +1608.03919 Theory +1608.03922 Fluid Dynamics +1608.03925 Dynamical Systems +1608.03926 Earth and Planetary Astrophysics +1608.03928 Optimization and Control +1608.03929 History and Overview +1608.03931 Numerical Analysis +1608.03932 Computer Vision and Pattern Recognition +1608.03933 Learning +1608.03937 Dynamical Systems +1608.03938 Computation and Language +1608.03943 Discrete Mathematics +1608.03944 Mesoscale and Nanoscale Physics +1608.03946 Chemical Physics +1608.03948 Strongly Correlated Electrons +1608.03950 +1608.03954 Geometric Topology +1608.03959 Classical Analysis and ODEs +1608.03961 Information Theory +1608.03962 Combinatorics +1608.03964 Quantum Gases +1608.03968 Systems and Control +1608.03969 Operator Algebras +1608.03973 Instrumentation and Detectors +1608.03974 Machine Learning +1608.03975 Geometric Topology +1608.03977 Algebraic Geometry +1608.03979 Probability +1608.03981 Computer Vision and Pattern Recognition +1608.03985 General Finance +1608.03986 Operator Algebras +1608.03987 Numerical Analysis +1608.03988 Social and Information Networks +1608.03989 Information Theory +1608.03991 Applications +1608.03993 Molecular Networks +1608.03995 Computation and Language +1608.03996 Operator Algebras +1608.03997 High Energy Astrophysical Phenomena +1608.03999 Computer Science and Game Theory +1608.04000 Rings and Algebras +1608.04001 Information Theory +1608.04003 History and Overview +1608.04006 General Mathematics +1608.04011 Fluid Dynamics +1608.04016 Programming Languages +1608.04017 Networking and Internet Architecture +1608.04018 Representation Theory +1608.04019 Chemical Physics +1608.04020 Logic +1608.04021 Analysis of PDEs +1608.04023 Theory +1608.04024 Networking and Internet Architecture +1608.04025 Combinatorics +1608.04026 Classical Analysis and ODEs +1608.04027 Commutative Algebra +1608.04028 Solar and Stellar Astrophysics +1608.04029 Logic +1608.04030 Software Engineering +1608.04033 Astrophysics of Galaxies +1608.04035 Fluid Dynamics +1608.04037 Learning +1608.04038 Fluid Dynamics +1608.04042 Computer Vision and Pattern Recognition +1608.04044 Commutative Algebra +1608.04045 Computer Vision and Pattern Recognition +1608.04048 Machine Learning +1608.04051 Computer Vision and Pattern Recognition +1608.04058 Commutative Algebra +1608.04059 Quantitative Methods +1608.04060 Numerical Analysis +1608.04061 Analysis of PDEs +1608.04063 Learning +1608.04064 Computer Vision and Pattern Recognition +1608.04066 Combinatorics +1608.04069 Sound +1608.04070 Information Theory +1608.04071 Classical Physics +1608.04072 Analysis of PDEs +1608.04073 +1608.04076 Strongly Correlated Electrons +1608.04078 Atomic Physics +1608.04080 Computer Vision and Pattern Recognition +1608.04082 Graphics +1608.04083 Plasma Physics +1608.04084 Complex Variables +1608.04085 Group Theory +1608.04086 Superconductivity +1608.04089 Computation and Language +1608.04090 Social and Information Networks +1608.04093 Combinatorics +1608.04097 +1608.04101 Mesoscale and Nanoscale Physics +1608.04102 Mesoscale and Nanoscale Physics +1608.04104 Systems and Control +1608.04105 Emerging Technologies +1608.04106 Dynamical Systems +1608.04108 Materials Science +1608.04109 Computation +1608.04110 Instrumentation and Methods for Astrophysics +1608.04114 Classical Analysis and ODEs +1608.04122 Differential Geometry +1608.04123 Computation +1608.04125 Number Theory +1608.04126 Combinatorics +1608.04127 Combinatorics +1608.04131 Differential Geometry +1608.04134 Optics +1608.04136 Materials Science +1608.04137 Optimization and Control +1608.04142 Databases +1608.04145 +1608.04146 Number Theory +1608.04147 Computation and Language +1608.04149 +1608.04152 Mathematical Software +1608.04155 Systems and Control +1608.04156 Fluid Dynamics +1608.04158 Combinatorics +1608.04159 High Energy Astrophysical Phenomena +1608.04168 Optimization and Control +1608.04174 Distributed, Parallel, and Cluster Computing +1608.04175 Populations and Evolution +1608.04177 Combinatorics +1608.04179 Representation Theory +1608.04188 Computer Vision and Pattern Recognition +1608.04190 High Energy Astrophysical Phenomena +1608.04191 Algebraic Geometry +1608.04192 Solar and Stellar Astrophysics +1608.04193 Computational Physics +1608.04195 +1608.04196 Number Theory +1608.04198 Information Theory +1608.04199 Accelerator Physics +1608.04201 Phenomenology +1608.04203 Physics and Society +1608.04204 Rings and Algebras +1608.04206 Number Theory +1608.04209 Algebraic Geometry +1608.04210 Classical Analysis and ODEs +1608.04215 +1608.04217 Discrete Mathematics +1608.04222 Theory +1608.04224 Computer Vision and Pattern Recognition +1608.04225 Earth and Planetary Astrophysics +1608.04226 K-Theory and Homology +1608.04229 Analysis of PDEs +1608.04231 Optics +1608.04235 Functional Analysis +1608.04237 +1608.04239 Phenomenology +1608.04240 +1608.04241 Fluid Dynamics +1608.04242 Statistics Theory +1608.04243 Numerical Analysis +1608.04244 Statistics Theory +1608.04246 Spectral Theory +1608.04247 +1608.04249 High Energy Astrophysical Phenomena +1608.04250 Probability +1608.04254 Group Theory +1608.04255 Plasma Physics +1608.04258 Mesoscale and Nanoscale Physics +1608.04260 Networking and Internet Architecture +1608.04261 Probability +1608.04264 Mesoscale and Nanoscale Physics +1608.04265 Algebraic Geometry +1608.04266 Chemical Physics +1608.04267 Computer Vision and Pattern Recognition +1608.04271 Information Theory +1608.04274 Computer Vision and Pattern Recognition +1608.04275 +1608.04276 Tissues and Organs +1608.04279 Combinatorics +1608.04280 Astrophysics of Galaxies +1608.04281 Instrumentation and Detectors +1608.04282 Analysis of PDEs +1608.04291 General Physics +1608.04293 +1608.04294 Optimization and Control +1608.04295 Performance +1608.04296 History and Overview +1608.04299 Metric Geometry +1608.04301 Logic in Computer Science +1608.04303 Cryptography and Security +1608.04304 Statistical Mechanics +1608.04305 +1608.04307 Computer Vision and Pattern Recognition +1608.04317 Probability +1608.04318 +1608.04319 Discrete Mathematics +1608.04321 Optimization and Control +1608.04323 Instrumentation and Detectors +1608.04325 Functional Analysis +1608.04327 Functional Analysis +1608.04328 Fluid Dynamics +1608.04329 Computation +1608.04331 Learning +1608.04333 Dynamical Systems +1608.04334 Biological Physics +1608.04335 Materials Science +1608.04338 Algebraic Geometry +1608.04339 Computer Vision and Pattern Recognition +1608.04340 Instrumentation and Methods for Astrophysics +1608.04342 Computer Vision and Pattern Recognition +1608.04346 Lattice +1608.04347 Instrumentation and Methods for Astrophysics +1608.04350 Operator Algebras +1608.04354 Phenomenology +1608.04355 Data Structures and Algorithms +1608.04356 Astrophysics of Galaxies +1608.04358 +1608.04367 Data Analysis, Statistics and Probability +1608.04370 Statistical Mechanics +1608.04371 Differential Geometry +1608.04375 +1608.04376 Phenomenology +adap-org/9602001 Adaptation and Self-Organizing Systems +adap-org/9608002 Adaptation and Self-Organizing Systems +astro-ph/0001432 +astro-ph/0101103 +astro-ph/0101310 +astro-ph/0101522 +astro-ph/0102044 +astro-ph/0102191 +astro-ph/0103257 +astro-ph/0103288 +astro-ph/0103327 +astro-ph/0103419 +astro-ph/0108035 +astro-ph/0108221 +astro-ph/0108249 +astro-ph/0108472 +astro-ph/0110295 +astro-ph/0110364 +astro-ph/0110643 +astro-ph/0111115 +astro-ph/0111372 +astro-ph/0112140 +astro-ph/0112143 +astro-ph/0112561 +astro-ph/0201282 +astro-ph/0201284 +astro-ph/0201291 +astro-ph/0202041 +astro-ph/0202246 +astro-ph/0203441 +astro-ph/0205167 +astro-ph/0205421 +astro-ph/0207328 +astro-ph/0207330 +astro-ph/0207331 +astro-ph/0207544 +astro-ph/0208060 +astro-ph/0208152 +astro-ph/0208267 +astro-ph/0208312 +astro-ph/0209458 +astro-ph/0210162 +astro-ph/0210204 +astro-ph/0210409 +astro-ph/0210484 +astro-ph/0210498 +astro-ph/0211216 +astro-ph/0211412 +astro-ph/0212063 +astro-ph/0212203 +astro-ph/0212239 +astro-ph/0301251 +astro-ph/0301382 +astro-ph/0301482 +astro-ph/0301500 +astro-ph/0302092 +astro-ph/0302554 +astro-ph/0303462 +astro-ph/0304166 +astro-ph/0305052 +astro-ph/0306391 +astro-ph/0307198 +astro-ph/0308094 +astro-ph/0308269 +astro-ph/0309115 +astro-ph/0309427 +astro-ph/0310022 +astro-ph/0310162 +astro-ph/0310182 +astro-ph/0310397 +astro-ph/0310459 +astro-ph/0310466 +astro-ph/0310672 +astro-ph/0310788 +astro-ph/0311073 +astro-ph/0311096 +astro-ph/0311196 +astro-ph/0312026 +astro-ph/0401271 +astro-ph/0401396 +astro-ph/0401585 +astro-ph/0402209 +astro-ph/0402219 +astro-ph/0403007 +astro-ph/0403182 +astro-ph/0403458 +astro-ph/0403629 +astro-ph/0404108 +astro-ph/0405228 +astro-ph/0405237 +astro-ph/0405308 +astro-ph/0405470 +astro-ph/0405618 +astro-ph/0406130 +astro-ph/0406414 +astro-ph/0406427 +astro-ph/0407527 +astro-ph/0408041 +astro-ph/0408210 +astro-ph/0408220 +astro-ph/0408385 +astro-ph/0408389 +astro-ph/0409019 +astro-ph/0409559 +astro-ph/0409750 +astro-ph/0410230 +astro-ph/0410446 +astro-ph/0410544 +astro-ph/0411693 +astro-ph/0501040 +astro-ph/0501042 +astro-ph/0501059 +astro-ph/0501213 +astro-ph/0501420 +astro-ph/0501459 +astro-ph/0501674 +astro-ph/0502117 +astro-ph/0502235 +astro-ph/0502341 +astro-ph/0503073 +astro-ph/0503380 +astro-ph/0503619 +astro-ph/0503667 +astro-ph/0504023 +astro-ph/0504078 +astro-ph/0504545 +astro-ph/0505019 +astro-ph/0505123 +astro-ph/0505242 +astro-ph/0505264 +astro-ph/0505342 +astro-ph/0505620 +astro-ph/0506378 +astro-ph/0506695 +astro-ph/0506745 +astro-ph/0507088 +astro-ph/0507233 +astro-ph/0507255 +astro-ph/0507318 +astro-ph/0507415 +astro-ph/0507559 +astro-ph/0507580 +astro-ph/0508113 +astro-ph/0508452 +astro-ph/0508511 +astro-ph/0508541 +astro-ph/0508614 +astro-ph/0509014 +astro-ph/0509139 +astro-ph/0509166 +astro-ph/0509208 +astro-ph/0509500 +astro-ph/0509613 +astro-ph/0509816 +astro-ph/0509903 +astro-ph/0509908 +astro-ph/0510368 +astro-ph/0510381 +astro-ph/0510602 +astro-ph/0510695 +astro-ph/0510700 +astro-ph/0511134 +astro-ph/0511135 +astro-ph/0511261 +astro-ph/0511556 +astro-ph/0511672 +astro-ph/0512039 +astro-ph/0512290 +astro-ph/0512293 +astro-ph/0512482 +astro-ph/0512604 +astro-ph/0604404 +astro-ph/0611237 +astro-ph/9803121 +astro-ph/9905077 +chao-dyn/9510005 Chaotic Dynamics +cond-mat/0007451 Superconductivity +cond-mat/0101040 Strongly Correlated Electrons +cond-mat/0101236 Mesoscale and Nanoscale Physics +cond-mat/0101263 Soft Condensed Matter +cond-mat/0101318 Statistical Mechanics +cond-mat/0102085 +cond-mat/0102087 Statistical Mechanics +cond-mat/0102243 Superconductivity +cond-mat/0102430 Statistical Mechanics +cond-mat/0102478 Statistical Mechanics +cond-mat/0103125 +cond-mat/0103143 +cond-mat/0103567 Superconductivity +cond-mat/0103571 Superconductivity +cond-mat/0104326 Superconductivity +cond-mat/0104361 +cond-mat/0104483 Soft Condensed Matter +cond-mat/0104514 Soft Condensed Matter +cond-mat/0104539 Mesoscale and Nanoscale Physics +cond-mat/0105244 Materials Science +cond-mat/0105298 Mesoscale and Nanoscale Physics +cond-mat/0105405 Disordered Systems and Neural Networks +cond-mat/0106008 Materials Science +cond-mat/0106136 Statistical Mechanics +cond-mat/0106167 Materials Science +cond-mat/0106344 Superconductivity +cond-mat/0106406 Disordered Systems and Neural Networks +cond-mat/0106511 Strongly Correlated Electrons +cond-mat/0106521 Strongly Correlated Electrons +cond-mat/0107211 Strongly Correlated Electrons +cond-mat/0107373 Strongly Correlated Electrons +cond-mat/0107457 +cond-mat/0108430 Mesoscale and Nanoscale Physics +cond-mat/0108442 Materials Science +cond-mat/0109270 Statistical Mechanics +cond-mat/0109427 Soft Condensed Matter +cond-mat/0110391 Superconductivity +cond-mat/0110442 Statistical Mechanics +cond-mat/0110530 +cond-mat/0110559 Strongly Correlated Electrons +cond-mat/0111090 Disordered Systems and Neural Networks +cond-mat/0111296 Strongly Correlated Electrons +cond-mat/0111352 Strongly Correlated Electrons +cond-mat/0111367 Statistical Mechanics +cond-mat/0112159 Strongly Correlated Electrons +cond-mat/0112284 Superconductivity +cond-mat/0112320 Statistical Mechanics +cond-mat/0112413 Superconductivity +cond-mat/0112425 Soft Condensed Matter +cond-mat/0201003 Strongly Correlated Electrons +cond-mat/0201004 Strongly Correlated Electrons +cond-mat/0201016 Strongly Correlated Electrons +cond-mat/0201157 Materials Science +cond-mat/0201347 Strongly Correlated Electrons +cond-mat/0202113 Disordered Systems and Neural Networks +cond-mat/0202485 Superconductivity +cond-mat/0203067 Statistical Mechanics +cond-mat/0203102 Strongly Correlated Electrons +cond-mat/0203378 Materials Science +cond-mat/0203445 Soft Condensed Matter +cond-mat/0204281 Superconductivity +cond-mat/0204335 Soft Condensed Matter +cond-mat/0204354 Mesoscale and Nanoscale Physics +cond-mat/0204395 Materials Science +cond-mat/0204573 Statistical Mechanics +cond-mat/0205224 Strongly Correlated Electrons +cond-mat/0205292 Materials Science +cond-mat/0205306 Mesoscale and Nanoscale Physics +cond-mat/0205468 Statistical Mechanics +cond-mat/0205595 Superconductivity +cond-mat/0206274 Soft Condensed Matter +cond-mat/0206417 +cond-mat/0206494 Soft Condensed Matter +cond-mat/0206522 Statistical Mechanics +cond-mat/0206545 Statistical Mechanics +cond-mat/0207072 Superconductivity +cond-mat/0207092 +cond-mat/0207099 Mesoscale and Nanoscale Physics +cond-mat/0207254 Materials Science +cond-mat/0207531 Materials Science +cond-mat/0207541 Soft Condensed Matter +cond-mat/0208187 Strongly Correlated Electrons +cond-mat/0208432 Disordered Systems and Neural Networks +cond-mat/0208510 Materials Science +cond-mat/0208552 Statistical Mechanics +cond-mat/0208593 Soft Condensed Matter +cond-mat/0209389 +cond-mat/0209481 Strongly Correlated Electrons +cond-mat/0209559 Mesoscale and Nanoscale Physics +cond-mat/0210019 Mesoscale and Nanoscale Physics +cond-mat/0210092 Strongly Correlated Electrons +cond-mat/0211108 Statistical Mechanics +cond-mat/0211115 Statistical Mechanics +cond-mat/0211143 Materials Science +cond-mat/0211176 Statistical Mechanics +cond-mat/0211177 Statistical Mechanics +cond-mat/0211488 Mesoscale and Nanoscale Physics +cond-mat/0211662 Strongly Correlated Electrons +cond-mat/0211692 Statistical Mechanics +cond-mat/0212085 Superconductivity +cond-mat/0212238 Strongly Correlated Electrons +cond-mat/0212465 Statistical Mechanics +cond-mat/0212480 Soft Condensed Matter +cond-mat/0301164 Strongly Correlated Electrons +cond-mat/0301350 Strongly Correlated Electrons +cond-mat/0301387 Strongly Correlated Electrons +cond-mat/0301567 Superconductivity +cond-mat/0302155 +cond-mat/0302384 Superconductivity +cond-mat/0302581 Soft Condensed Matter +cond-mat/0303002 Superconductivity +cond-mat/0303026 Mesoscale and Nanoscale Physics +cond-mat/0303070 Strongly Correlated Electrons +cond-mat/0303246 Mesoscale and Nanoscale Physics +cond-mat/0303284 Superconductivity +cond-mat/0303536 Mesoscale and Nanoscale Physics +cond-mat/0304015 Statistical Mechanics +cond-mat/0304248 Other Condensed Matter +cond-mat/0304260 Mesoscale and Nanoscale Physics +cond-mat/0304358 Other Condensed Matter +cond-mat/0304401 +cond-mat/0304567 Statistical Mechanics +cond-mat/0304619 Materials Science +cond-mat/0305033 Superconductivity +cond-mat/0305261 Mesoscale and Nanoscale Physics +cond-mat/0305321 Superconductivity +cond-mat/0305489 Soft Condensed Matter +cond-mat/0305497 Soft Condensed Matter +cond-mat/0305662 Soft Condensed Matter +cond-mat/0306063 Mesoscale and Nanoscale Physics +cond-mat/0306102 Soft Condensed Matter +cond-mat/0306251 Strongly Correlated Electrons +cond-mat/0306514 Soft Condensed Matter +cond-mat/0307018 Superconductivity +cond-mat/0307143 Superconductivity +cond-mat/0307216 Disordered Systems and Neural Networks +cond-mat/0307231 +cond-mat/0307589 Statistical Mechanics +cond-mat/0307616 Mesoscale and Nanoscale Physics +cond-mat/0307650 Materials Science +cond-mat/0308086 Mesoscale and Nanoscale Physics +cond-mat/0308292 Superconductivity +cond-mat/0308311 Superconductivity +cond-mat/0308312 Superconductivity +cond-mat/0308450 Statistical Mechanics +cond-mat/0308627 Statistical Mechanics +cond-mat/0309012 +cond-mat/0309104 +cond-mat/0309232 Strongly Correlated Electrons +cond-mat/0309388 Statistical Mechanics +cond-mat/0309426 Disordered Systems and Neural Networks +cond-mat/0309489 Soft Condensed Matter +cond-mat/0309561 Superconductivity +cond-mat/0309637 Statistical Mechanics +cond-mat/0309655 +cond-mat/0310110 Materials Science +cond-mat/0310651 Soft Condensed Matter +cond-mat/0311064 Strongly Correlated Electrons +cond-mat/0311655 Soft Condensed Matter +cond-mat/0312100 Materials Science +cond-mat/0312204 Soft Condensed Matter +cond-mat/0401030 Mesoscale and Nanoscale Physics +cond-mat/0401185 Strongly Correlated Electrons +cond-mat/0401623 Superconductivity +cond-mat/0402043 Materials Science +cond-mat/0402067 Soft Condensed Matter +cond-mat/0402093 Materials Science +cond-mat/0402148 Disordered Systems and Neural Networks +cond-mat/0402529 Disordered Systems and Neural Networks +cond-mat/0403060 Materials Science +cond-mat/0403065 Materials Science +cond-mat/0403075 Strongly Correlated Electrons +cond-mat/0403139 Soft Condensed Matter +cond-mat/0403333 Statistical Mechanics +cond-mat/0403418 Superconductivity +cond-mat/0403483 Materials Science +cond-mat/0403565 Other Condensed Matter +cond-mat/0403589 Superconductivity +cond-mat/0403706 Disordered Systems and Neural Networks +cond-mat/0404018 Disordered Systems and Neural Networks +cond-mat/0404176 Materials Science +cond-mat/0404311 Strongly Correlated Electrons +cond-mat/0404559 Other Condensed Matter +cond-mat/0405093 Statistical Mechanics +cond-mat/0405096 Disordered Systems and Neural Networks +cond-mat/0405147 Materials Science +cond-mat/0405319 Statistical Mechanics +cond-mat/0405404 Superconductivity +cond-mat/0405476 Strongly Correlated Electrons +cond-mat/0405478 Strongly Correlated Electrons +cond-mat/0405493 Superconductivity +cond-mat/0405500 Materials Science +cond-mat/0405555 Statistical Mechanics +cond-mat/0405617 Mesoscale and Nanoscale Physics +cond-mat/0406060 Superconductivity +cond-mat/0406173 Other Condensed Matter +cond-mat/0406268 Disordered Systems and Neural Networks +cond-mat/0406515 Strongly Correlated Electrons +cond-mat/0406634 Strongly Correlated Electrons +cond-mat/0406656 Other Condensed Matter +cond-mat/0406727 Other Condensed Matter +cond-mat/0406734 Other Condensed Matter +cond-mat/0407037 Materials Science +cond-mat/0407038 Materials Science +cond-mat/0407047 Statistical Mechanics +cond-mat/0407071 Mesoscale and Nanoscale Physics +cond-mat/0407200 Mesoscale and Nanoscale Physics +cond-mat/0407210 Mesoscale and Nanoscale Physics +cond-mat/0407329 Materials Science +cond-mat/0407393 Soft Condensed Matter +cond-mat/0407648 Superconductivity +cond-mat/0408024 Strongly Correlated Electrons +cond-mat/0408086 Disordered Systems and Neural Networks +cond-mat/0408368 Mesoscale and Nanoscale Physics +cond-mat/0409015 Other Condensed Matter +cond-mat/0409223 Other Condensed Matter +cond-mat/0409357 Strongly Correlated Electrons +cond-mat/0409368 Superconductivity +cond-mat/0409397 Superconductivity +cond-mat/0409447 Materials Science +cond-mat/0409534 Other Condensed Matter +cond-mat/0409545 Statistical Mechanics +cond-mat/0409617 Materials Science +cond-mat/0409707 Materials Science +cond-mat/0409713 Materials Science +cond-mat/0409726 Other Condensed Matter +cond-mat/0409753 Materials Science +cond-mat/0410203 Strongly Correlated Electrons +cond-mat/0410394 Strongly Correlated Electrons +cond-mat/0410506 Mesoscale and Nanoscale Physics +cond-mat/0410513 Materials Science +cond-mat/0410514 Materials Science +cond-mat/0410540 Materials Science +cond-mat/0410592 Statistical Mechanics +cond-mat/0410632 Superconductivity +cond-mat/0410633 Superconductivity +cond-mat/0410666 Mesoscale and Nanoscale Physics +cond-mat/0410674 Mesoscale and Nanoscale Physics +cond-mat/0410687 Mesoscale and Nanoscale Physics +cond-mat/0410747 Strongly Correlated Electrons +cond-mat/0411038 Materials Science +cond-mat/0411062 Disordered Systems and Neural Networks +cond-mat/0411135 Strongly Correlated Electrons +cond-mat/0411200 Strongly Correlated Electrons +cond-mat/0411259 Materials Science +cond-mat/0411290 Superconductivity +cond-mat/0411552 Materials Science +cond-mat/0411623 Mesoscale and Nanoscale Physics +cond-mat/0411647 Soft Condensed Matter +cond-mat/0412005 Superconductivity +cond-mat/0412030 Other Condensed Matter +cond-mat/0412249 Strongly Correlated Electrons +cond-mat/0412276 Strongly Correlated Electrons +cond-mat/0412277 Strongly Correlated Electrons +cond-mat/0412393 Mesoscale and Nanoscale Physics +cond-mat/0412400 Soft Condensed Matter +cond-mat/0412530 Strongly Correlated Electrons +cond-mat/0412560 Strongly Correlated Electrons +cond-mat/0412762 Mesoscale and Nanoscale Physics +cond-mat/0501212 Mesoscale and Nanoscale Physics +cond-mat/0501300 Materials Science +cond-mat/0501346 Statistical Mechanics +cond-mat/0501422 Other Condensed Matter +cond-mat/0501687 Materials Science +cond-mat/0501745 Other Condensed Matter +cond-mat/0502026 Statistical Mechanics +cond-mat/0502105 Strongly Correlated Electrons +cond-mat/0502148 Superconductivity +cond-mat/0502265 Other Condensed Matter +cond-mat/0502300 Strongly Correlated Electrons +cond-mat/0502428 Materials Science +cond-mat/0502510 Strongly Correlated Electrons +cond-mat/0502529 Other Condensed Matter +cond-mat/0502565 Strongly Correlated Electrons +cond-mat/0502596 Mesoscale and Nanoscale Physics +cond-mat/0502622 Soft Condensed Matter +cond-mat/0503067 Superconductivity +cond-mat/0503074 Materials Science +cond-mat/0503084 Soft Condensed Matter +cond-mat/0503151 Other Condensed Matter +cond-mat/0503159 Statistical Mechanics +cond-mat/0503204 Mesoscale and Nanoscale Physics +cond-mat/0503439 Disordered Systems and Neural Networks +cond-mat/0503460 Strongly Correlated Electrons +cond-mat/0503485 Materials Science +cond-mat/0503569 Superconductivity +cond-mat/0503602 Mesoscale and Nanoscale Physics +cond-mat/0503691 Superconductivity +cond-mat/0503704 Statistical Mechanics +cond-mat/0504021 Other Condensed Matter +cond-mat/0504182 Other Condensed Matter +cond-mat/0504387 Materials Science +cond-mat/0504476 Mesoscale and Nanoscale Physics +cond-mat/0504506 Mesoscale and Nanoscale Physics +cond-mat/0504586 Soft Condensed Matter +cond-mat/0504612 Other Condensed Matter +cond-mat/0504713 Materials Science +cond-mat/0504738 Materials Science +cond-mat/0505065 Materials Science +cond-mat/0505210 Other Condensed Matter +cond-mat/0505240 Other Condensed Matter +cond-mat/0505381 Other Condensed Matter +cond-mat/0505420 Other Condensed Matter +cond-mat/0505454 Statistical Mechanics +cond-mat/0505507 Materials Science +cond-mat/0505561 Superconductivity +cond-mat/0505602 Materials Science +cond-mat/0505610 Statistical Mechanics +cond-mat/0505651 Soft Condensed Matter +cond-mat/0505699 Strongly Correlated Electrons +cond-mat/0505709 Other Condensed Matter +cond-mat/0505725 Other Condensed Matter +cond-mat/0506155 Materials Science +cond-mat/0506180 Other Condensed Matter +cond-mat/0506258 Strongly Correlated Electrons +cond-mat/0506483 Strongly Correlated Electrons +cond-mat/0506522 Superconductivity +cond-mat/0506638 Other Condensed Matter +cond-mat/0506656 Soft Condensed Matter +cond-mat/0506736 Statistical Mechanics +cond-mat/0506781 Soft Condensed Matter +cond-mat/0507062 Mesoscale and Nanoscale Physics +cond-mat/0507079 Other Condensed Matter +cond-mat/0507203 Statistical Mechanics +cond-mat/0507224 Mesoscale and Nanoscale Physics +cond-mat/0507225 Materials Science +cond-mat/0507240 Strongly Correlated Electrons +cond-mat/0507264 Mesoscale and Nanoscale Physics +cond-mat/0507317 Materials Science +cond-mat/0507399 Other Condensed Matter +cond-mat/0507439 Strongly Correlated Electrons +cond-mat/0507469 Soft Condensed Matter +cond-mat/0507503 Mesoscale and Nanoscale Physics +cond-mat/0507641 Superconductivity +cond-mat/0507656 Mesoscale and Nanoscale Physics +cond-mat/0507696 Other Condensed Matter +cond-mat/0507707 Strongly Correlated Electrons +cond-mat/0507722 Mesoscale and Nanoscale Physics +cond-mat/0508097 Strongly Correlated Electrons +cond-mat/0508125 Statistical Mechanics +cond-mat/0508131 Other Condensed Matter +cond-mat/0508265 Strongly Correlated Electrons +cond-mat/0508281 Other Condensed Matter +cond-mat/0508284 Mesoscale and Nanoscale Physics +cond-mat/0508503 Other Condensed Matter +cond-mat/0508548 Materials Science +cond-mat/0508609 Disordered Systems and Neural Networks +cond-mat/0508635 Materials Science +cond-mat/0508759 Disordered Systems and Neural Networks +cond-mat/0509029 Other Condensed Matter +cond-mat/0509327 Materials Science +cond-mat/0509336 Soft Condensed Matter +cond-mat/0509419 Materials Science +cond-mat/0509503 Statistical Mechanics +cond-mat/0509562 Statistical Mechanics +cond-mat/0509605 Other Condensed Matter +cond-mat/0509792 Strongly Correlated Electrons +cond-mat/0510021 Statistical Mechanics +cond-mat/0510083 Mesoscale and Nanoscale Physics +cond-mat/0510127 Disordered Systems and Neural Networks +cond-mat/0510221 Materials Science +cond-mat/0510256 Mesoscale and Nanoscale Physics +cond-mat/0510582 Strongly Correlated Electrons +cond-mat/0510677 Soft Condensed Matter +cond-mat/0510833 Statistical Mechanics +cond-mat/0511078 Mesoscale and Nanoscale Physics +cond-mat/0511079 Strongly Correlated Electrons +cond-mat/0511101 Mesoscale and Nanoscale Physics +cond-mat/0511123 Materials Science +cond-mat/0511187 Soft Condensed Matter +cond-mat/0511362 Other Condensed Matter +cond-mat/0511408 Strongly Correlated Electrons +cond-mat/0511511 Other Condensed Matter +cond-mat/0511547 Mesoscale and Nanoscale Physics +cond-mat/0511644 Superconductivity +cond-mat/0511671 Statistical Mechanics +cond-mat/0512100 Soft Condensed Matter +cond-mat/0512181 Statistical Mechanics +cond-mat/0512304 Other Condensed Matter +cond-mat/0512338 Materials Science +cond-mat/0512403 Other Condensed Matter +cond-mat/0512405 Superconductivity +cond-mat/0512536 Strongly Correlated Electrons +cond-mat/0601078 Superconductivity +cond-mat/0601086 Statistical Mechanics +cond-mat/0601122 Statistical Mechanics +cond-mat/0601145 Materials Science +cond-mat/0601196 Statistical Mechanics +cond-mat/0601199 Mesoscale and Nanoscale Physics +cond-mat/0601253 Statistical Mechanics +cond-mat/0601255 Statistical Mechanics +cond-mat/0601286 Strongly Correlated Electrons +cond-mat/0601399 Statistical Mechanics +cond-mat/0601472 Other Condensed Matter +cond-mat/0601477 Soft Condensed Matter +cond-mat/0601510 Mesoscale and Nanoscale Physics +cond-mat/0601516 Materials Science +cond-mat/0601546 Materials Science +cond-mat/0601635 Mesoscale and Nanoscale Physics +cond-mat/0601709 Other Condensed Matter +cond-mat/0601718 Other Condensed Matter +cond-mat/0602069 Other Condensed Matter +cond-mat/0602169 Strongly Correlated Electrons +cond-mat/0602174 Other Condensed Matter +cond-mat/0602276 Disordered Systems and Neural Networks +cond-mat/0602282 Soft Condensed Matter +cond-mat/0602337 Disordered Systems and Neural Networks +cond-mat/0602346 Other Condensed Matter +cond-mat/0602388 Materials Science +cond-mat/0602426 Statistical Mechanics +cond-mat/0602448 Superconductivity +cond-mat/0602498 Soft Condensed Matter +cond-mat/0602523 Soft Condensed Matter +cond-mat/0602582 Other Condensed Matter +cond-mat/0602594 Materials Science +cond-mat/0602665 Mesoscale and Nanoscale Physics +cond-mat/0603040 Mesoscale and Nanoscale Physics +cond-mat/0603122 Superconductivity +cond-mat/0603239 Mesoscale and Nanoscale Physics +cond-mat/0603262 Other Condensed Matter +cond-mat/0603279 Other Condensed Matter +cond-mat/0603338 Statistical Mechanics +cond-mat/0603356 Mesoscale and Nanoscale Physics +cond-mat/0603358 Materials Science +cond-mat/0603417 Statistical Mechanics +cond-mat/0603420 Soft Condensed Matter +cond-mat/0603562 Statistical Mechanics +cond-mat/0603667 Soft Condensed Matter +cond-mat/0603818 Disordered Systems and Neural Networks +cond-mat/0603857 Soft Condensed Matter +cond-mat/0604025 Materials Science +cond-mat/0604039 Soft Condensed Matter +cond-mat/0604067 Other Condensed Matter +cond-mat/0604141 Soft Condensed Matter +cond-mat/0604156 Other Condensed Matter +cond-mat/0604312 Other Condensed Matter +cond-mat/0604368 Materials Science +cond-mat/0604369 Mesoscale and Nanoscale Physics +cond-mat/0604371 Other Condensed Matter +cond-mat/0604461 Soft Condensed Matter +cond-mat/0605038 Other Condensed Matter +cond-mat/0605057 Other Condensed Matter +cond-mat/0605107 Materials Science +cond-mat/0605141 Mesoscale and Nanoscale Physics +cond-mat/0605199 Mesoscale and Nanoscale Physics +cond-mat/0605272 Other Condensed Matter +cond-mat/0605291 Other Condensed Matter +cond-mat/0605302 Other Condensed Matter +cond-mat/0605330 Other Condensed Matter +cond-mat/0605374 Other Condensed Matter +cond-mat/0605482 Strongly Correlated Electrons +cond-mat/0605727 Statistical Mechanics +cond-mat/0605738 Materials Science +cond-mat/0605751 Statistical Mechanics +cond-mat/0606006 Materials Science +cond-mat/0606015 Other Condensed Matter +cond-mat/0606092 Other Condensed Matter +cond-mat/0606276 Strongly Correlated Electrons +cond-mat/0606496 Statistical Mechanics +cond-mat/0606533 Materials Science +cond-mat/0606562 Superconductivity +cond-mat/0606761 Superconductivity +cond-mat/0606798 Statistical Mechanics +cond-mat/0607170 Other Condensed Matter +cond-mat/0607197 Mesoscale and Nanoscale Physics +cond-mat/0607260 Superconductivity +cond-mat/0607264 Soft Condensed Matter +cond-mat/0607337 Statistical Mechanics +cond-mat/0607438 Other Condensed Matter +cond-mat/0607480 Other Condensed Matter +cond-mat/0607561 Superconductivity +cond-mat/0607696 Materials Science +cond-mat/0607723 Other Condensed Matter +cond-mat/0607785 Other Condensed Matter +cond-mat/0607820 Statistical Mechanics +cond-mat/0607821 Other Condensed Matter +cond-mat/0608088 Statistical Mechanics +cond-mat/0608261 Other Condensed Matter +cond-mat/0608315 Materials Science +cond-mat/0608359 Strongly Correlated Electrons +cond-mat/0608457 Mesoscale and Nanoscale Physics +cond-mat/0608529 Other Condensed Matter +cond-mat/0608612 Statistical Mechanics +cond-mat/0608623 Soft Condensed Matter +cond-mat/0608658 Statistical Mechanics +cond-mat/0609031 Disordered Systems and Neural Networks +cond-mat/0609086 Mesoscale and Nanoscale Physics +cond-mat/0609099 Disordered Systems and Neural Networks +cond-mat/0609216 Soft Condensed Matter +cond-mat/0609397 Materials Science +cond-mat/0609420 Soft Condensed Matter +cond-mat/0609504 Materials Science +cond-mat/0609506 Materials Science +cond-mat/0609689 Soft Condensed Matter +cond-mat/0609704 Superconductivity +cond-mat/0609761 Other Condensed Matter +cond-mat/0609772 Superconductivity +cond-mat/0610174 Other Condensed Matter +cond-mat/0610297 Other Condensed Matter +cond-mat/0610346 Other Condensed Matter +cond-mat/0610408 Superconductivity +cond-mat/0610517 Materials Science +cond-mat/0610556 Mesoscale and Nanoscale Physics +cond-mat/0610572 Mesoscale and Nanoscale Physics +cond-mat/0610656 Materials Science +cond-mat/0610840 Other Condensed Matter +cond-mat/0610841 Mesoscale and Nanoscale Physics +cond-mat/0610867 Statistical Mechanics +cond-mat/0610880 Superconductivity +cond-mat/0611127 Mesoscale and Nanoscale Physics +cond-mat/0611204 Strongly Correlated Electrons +cond-mat/0611307 Materials Science +cond-mat/0611388 Statistical Mechanics +cond-mat/0611559 Materials Science +cond-mat/0611564 Disordered Systems and Neural Networks +cond-mat/0611627 Strongly Correlated Electrons +cond-mat/0611644 Mesoscale and Nanoscale Physics +cond-mat/0611728 Materials Science +cond-mat/0612108 Statistical Mechanics +cond-mat/0612110 Soft Condensed Matter +cond-mat/0612142 Strongly Correlated Electrons +cond-mat/0612242 Materials Science +cond-mat/0612324 Other Condensed Matter +cond-mat/0612375 Materials Science +cond-mat/0612547 Other Condensed Matter +cond-mat/0612695 Statistical Mechanics +cond-mat/9405001 +cond-mat/9409016 +cond-mat/9601109 +cond-mat/9709124 Mesoscale and Nanoscale Physics +cond-mat/9711041 Strongly Correlated Electrons +cond-mat/9711130 Materials Science +cond-mat/9711131 Materials Science +cs/0106041 Computational Complexity +cs/0109018 Computational Complexity +cs/0110025 Computational Complexity +cs/0112021 Computational Complexity +cs/0212016 Computational Complexity +cs/0402034 Computational Complexity +cs/0405006 Distributed, Parallel, and Cluster Computing +cs/0405059 Discrete Mathematics +cs/0405069 Databases +cs/0405106 Artificial Intelligence +cs/0501074 Symbolic Computation +cs/0502073 Data Structures and Algorithms +cs/0502076 Learning +cs/0502081 Multiagent Systems +cs/0503013 Distributed, Parallel, and Cluster Computing +cs/0503059 Artificial Intelligence +cs/0504082 Discrete Mathematics +cs/0504107 Networking and Internet Architecture +cs/0505027 Data Structures and Algorithms +cs/0506006 Distributed, Parallel, and Cluster Computing +cs/0506017 Databases +cs/0506049 Digital Libraries +cs/0506096 Computational Complexity +cs/0507025 Computational Engineering, Finance, and Science +cs/0509003 Computational Engineering, Finance, and Science +cs/0509004 Discrete Mathematics +cs/0510014 Symbolic Computation +cs/0510034 Human-Computer Interaction +cs/0510041 Symbolic Computation +cs/0510081 Distributed, Parallel, and Cluster Computing +cs/0510082 Networking and Internet Architecture +cs/0511093 Computer Science and Game Theory +cs/0512018 Neural and Evolutionary Computing +cs/0512032 Information Retrieval +cs/0512050 Learning +cs/0512051 Discrete Mathematics +cs/0601004 Artificial Intelligence +cs/0601025 Human-Computer Interaction +cs/0601027 Discrete Mathematics +cs/0601031 Artificial Intelligence +cs/0601044 Learning +cs/0602005 Mathematical Software +cs/0602017 Other Computer Science +cs/0602021 Artificial Intelligence +cs/0602022 Artificial Intelligence +cs/0602036 Neural and Evolutionary Computing +cs/0603017 Computational Complexity +cs/0603122 Data Structures and Algorithms +cs/0604023 Networking and Internet Architecture +cs/0604060 Symbolic Computation +cs/0604081 Logic in Computer Science +cs/0605019 Discrete Mathematics +cs/0605055 Artificial Intelligence +cs/0605080 Networking and Internet Architecture +cs/0605096 Distributed, Parallel, and Cluster Computing +cs/0605142 Hardware Architecture +cs/0605143 Hardware Architecture +cs/0605144 Hardware Architecture +cs/0605145 Hardware Architecture +cs/0605146 Hardware Architecture +cs/0605147 Human-Computer Interaction +cs/0606005 Networking and Internet Architecture +cs/0606030 Cryptography and Security +cs/0606069 Information Retrieval +cs/0606073 Information Retrieval +cs/0606076 Networking and Internet Architecture +cs/0606092 Software Engineering +cs/0606105 Information Retrieval +cs/0606108 Software Engineering +cs/0606112 Software Engineering +cs/0606117 Information Theory +cs/0606118 Computation and Language +cs/0606120 Computational Complexity +cs/0607008 Discrete Mathematics +cs/0607017 Information Theory +cs/0607041 Distributed, Parallel, and Cluster Computing +cs/0607048 Neural and Evolutionary Computing +cs/0607049 Cryptography and Security +cs/0607082 Discrete Mathematics +cs/0607096 Learning +cs/0607097 Networking and Internet Architecture +cs/0608125 Logic in Computer Science +cs/0609002 Logic in Computer Science +cs/0609013 Logic in Computer Science +cs/0609026 Networking and Internet Architecture +cs/0609039 Logic in Computer Science +cs/0609044 Computation and Language +cs/0609086 Networking and Internet Architecture +cs/0609107 Other Computer Science +cs/0609114 Numerical Analysis +cs/0609133 Artificial Intelligence +cs/0609134 Artificial Intelligence +cs/0609135 Artificial Intelligence +cs/0609136 Artificial Intelligence +cs/0609137 Artificial Intelligence +cs/0609151 Networking and Internet Architecture +cs/0609152 Networking and Internet Architecture +cs/0610004 Computation and Language +cs/0610014 Cryptography and Security +cs/0610041 Neural and Evolutionary Computing +cs/0610044 Networking and Internet Architecture +cs/0610064 Logic in Computer Science +cs/0610065 Logic in Computer Science +cs/0610068 Logic in Computer Science +cs/0610069 Logic in Computer Science +cs/0610070 Logic in Computer Science +cs/0610071 Logic in Computer Science +cs/0610072 Logic in Computer Science +cs/0610073 Logic in Computer Science +cs/0610097 Software Engineering +cs/0610131 Distributed, Parallel, and Cluster Computing +cs/0611016 Networking and Internet Architecture +cs/0611027 Cryptography and Security +cs/0611034 Distributed, Parallel, and Cluster Computing +cs/0611056 Networking and Internet Architecture +cs/0611084 Distributed, Parallel, and Cluster Computing +cs/0611101 Data Structures and Algorithms +cs/0611104 Neural and Evolutionary Computing +cs/0611105 Networking and Internet Architecture +cs/0611127 Mathematical Software +cs/0611135 Artificial Intelligence +cs/0611138 Artificial Intelligence +cs/0611139 Distributed, Parallel, and Cluster Computing +cs/0611151 Human-Computer Interaction +cs/0611152 Human-Computer Interaction +cs/0611153 Human-Computer Interaction +cs/0611154 Human-Computer Interaction +cs/0611158 Human-Computer Interaction +cs/0611159 Human-Computer Interaction +cs/0612004 Human-Computer Interaction +cs/0612005 Human-Computer Interaction +cs/0612008 Human-Computer Interaction +cs/0612009 Human-Computer Interaction +cs/0612010 Human-Computer Interaction +cs/0612016 Human-Computer Interaction +cs/0612017 Human-Computer Interaction +cs/0612018 Human-Computer Interaction +cs/0612020 Other Computer Science +cs/0612021 Human-Computer Interaction +cs/0612023 Human-Computer Interaction +cs/0612037 Data Structures and Algorithms +cs/0612059 Networking and Internet Architecture +gr-qc/0101079 +gr-qc/0104047 +gr-qc/0105070 +gr-qc/0105081 +gr-qc/0109094 +gr-qc/0202030 +gr-qc/0203101 +gr-qc/0204016 +gr-qc/0206088 +gr-qc/0207018 +gr-qc/0207099 +gr-qc/0207110 +gr-qc/0212063 +gr-qc/0303020 +gr-qc/0308051 +gr-qc/0308091 +gr-qc/0309059 +gr-qc/0310049 +gr-qc/0311027 +gr-qc/0312035 +gr-qc/0312051 +gr-qc/0405058 +gr-qc/0406122 +gr-qc/0407104 +gr-qc/0408071 +gr-qc/0409072 +gr-qc/0411005 +gr-qc/0501019 +gr-qc/0501069 +gr-qc/0502002 +gr-qc/0502041 +gr-qc/0503040 +gr-qc/0506004 +gr-qc/0507040 +gr-qc/0507065 +gr-qc/0601125 +gr-qc/0602015 +gr-qc/0602040 +gr-qc/0602067 +gr-qc/0603081 +gr-qc/0605075 +gr-qc/0606044 +gr-qc/0607037 +gr-qc/0607105 +gr-qc/0609100 +gr-qc/0610120 +gr-qc/0611089 +gr-qc/0612031 +gr-qc/0612097 +gr-qc/0612114 +hep-ex/0107007 Experiment +hep-ex/0406074 Experiment +hep-ex/0409045 Experiment +hep-ex/0501058 Experiment +hep-ex/0506074 Experiment +hep-lat/0107002 Lattice +hep-lat/0110206 Lattice +hep-lat/0110223 Lattice +hep-lat/0112051 Lattice +hep-lat/0202003 Lattice +hep-lat/0206011 Lattice +hep-lat/0208058 Lattice +hep-lat/0209061 Lattice +hep-lat/0209124 Lattice +hep-lat/0304005 Lattice +hep-lat/0305024 Lattice +hep-lat/0307026 Lattice +hep-lat/0402026 Lattice +hep-lat/0404016 Lattice +hep-lat/0405031 Lattice +hep-lat/0408010 Lattice +hep-lat/0409014 Lattice +hep-lat/0410002 Lattice +hep-lat/0507020 Lattice +hep-lat/0507022 Lattice +hep-lat/0509110 Lattice +hep-lat/0610050 Lattice +hep-ph/0101284 Phenomenology +hep-ph/0102017 Phenomenology +hep-ph/0102142 Phenomenology +hep-ph/0103186 Phenomenology +hep-ph/0105063 Phenomenology +hep-ph/0105221 Phenomenology +hep-ph/0107249 Phenomenology +hep-ph/0107278 Phenomenology +hep-ph/0109112 Phenomenology +hep-ph/0110172 Phenomenology +hep-ph/0110232 Phenomenology +hep-ph/0110244 Phenomenology +hep-ph/0110289 Phenomenology +hep-ph/0111011 Phenomenology +hep-ph/0111441 Phenomenology +hep-ph/0112111 Phenomenology +hep-ph/0112244 Phenomenology +hep-ph/0204152 Phenomenology +hep-ph/0205187 Phenomenology +hep-ph/0206237 Phenomenology +hep-ph/0207109 Phenomenology +hep-ph/0208008 Phenomenology +hep-ph/0209031 Phenomenology +hep-ph/0209294 Phenomenology +hep-ph/0210098 Phenomenology +hep-ph/0211199 Phenomenology +hep-ph/0212192 Phenomenology +hep-ph/0212313 Phenomenology +hep-ph/0301199 Phenomenology +hep-ph/0301221 Phenomenology +hep-ph/0301230 Phenomenology +hep-ph/0301231 Phenomenology +hep-ph/0302120 Phenomenology +hep-ph/0303070 Phenomenology +hep-ph/0303151 Phenomenology +hep-ph/0303152 Phenomenology +hep-ph/0303199 Phenomenology +hep-ph/0303205 Phenomenology +hep-ph/0303241 Phenomenology +hep-ph/0306108 Phenomenology +hep-ph/0306199 Phenomenology +hep-ph/0306300 Phenomenology +hep-ph/0312299 Phenomenology +hep-ph/0312332 Phenomenology +hep-ph/0403233 Phenomenology +hep-ph/0405021 Phenomenology +hep-ph/0406313 Phenomenology +hep-ph/0408005 Phenomenology +hep-ph/0408123 Phenomenology +hep-ph/0409193 Phenomenology +hep-ph/0409207 Phenomenology +hep-ph/0409235 Phenomenology +hep-ph/0410347 Phenomenology +hep-ph/0412081 Phenomenology +hep-ph/0506328 Phenomenology +hep-ph/0507241 Phenomenology +hep-ph/0509329 Phenomenology +hep-ph/0509361 Phenomenology +hep-ph/0510285 Phenomenology +hep-ph/0511264 Phenomenology +hep-ph/0512159 Phenomenology +hep-ph/0605249 Phenomenology +hep-ph/0608044 Phenomenology +hep-ph/0609174 Phenomenology +hep-ph/0611170 Phenomenology +hep-ph/0612210 Phenomenology +hep-ph/0612302 Phenomenology +hep-ph/9310345 Phenomenology +hep-ph/9312203 Phenomenology +hep-th/0101044 Theory +hep-th/0102089 Theory +hep-th/0103027 Theory +hep-th/0103044 Theory +hep-th/0103127 Theory +hep-th/0104137 Theory +hep-th/0105022 Theory +hep-th/0109118 Theory +hep-th/0109205 Theory +hep-th/0111064 Theory +hep-th/0112237 Theory +hep-th/0208164 Theory +hep-th/0209017 Theory +hep-th/0209019 Theory +hep-th/0210306 Theory +hep-th/0211211 Theory +hep-th/0301171 Theory +hep-th/0301224 Theory +hep-th/0302143 Theory +hep-th/0302145 Theory +hep-th/0303003 Theory +hep-th/0304104 Theory +hep-th/0306126 Theory +hep-th/0306147 Theory +hep-th/0307038 Theory +hep-th/0307126 Theory +hep-th/0307241 Theory +hep-th/0308124 Theory +hep-th/0309110 Theory +hep-th/0310255 Theory +hep-th/0311061 Theory +hep-th/0311128 Theory +hep-th/0312227 Theory +hep-th/0402048 Theory +hep-th/0403099 Theory +hep-th/0403227 Theory +hep-th/0403228 Theory +hep-th/0403229 Theory +hep-th/0404165 Theory +hep-th/0404169 Theory +hep-th/0406087 Theory +hep-th/0408112 Theory +hep-th/0409150 Theory +hep-th/0410023 Theory +hep-th/0411265 Theory +hep-th/0412178 Theory +hep-th/0501040 Theory +hep-th/0501116 Theory +hep-th/0501129 Theory +hep-th/0502230 Theory +hep-th/0505013 Theory +hep-th/0507088 Theory +hep-th/0510072 Theory +hep-th/0512055 Theory +hep-th/0512074 Theory +hep-th/0512115 Theory +hep-th/0601200 Theory +hep-th/0601217 Theory +hep-th/0603223 Theory +hep-th/0603227 Theory +hep-th/0605174 Theory +hep-th/0606159 Theory +hep-th/0607207 Theory +hep-th/0610112 Theory +hep-th/0612068 Theory +hep-th/9411002 Theory +hep-th/9703211 Theory +math-ph/0105012 +math-ph/0105018 +math-ph/0107006 +math-ph/0110029 +math-ph/0202005 +math-ph/0203026 +math-ph/0206036 +math-ph/0211078 +math-ph/0212002 +math-ph/0212043 +math-ph/0212046 +math-ph/0212048 +math-ph/0212049 +math-ph/0212066 +math-ph/0302007 +math-ph/0305045 +math-ph/0306020 +math-ph/0307011 +math-ph/0311014 +math-ph/0311015 +math-ph/0311016 +math-ph/0406027 +math-ph/0409037 +math-ph/0410057 +math-ph/0411047 +math-ph/0412058 +math-ph/0502031 +math-ph/0502039 +math-ph/0502054 +math-ph/0505030 +math-ph/0505034 +math-ph/0506045 +math-ph/0506056 +math-ph/0507014 +math-ph/0509022 +math-ph/0511091 +math-ph/0512004 +math-ph/0512052 +math-ph/0603045 +math-ph/0603055 +math-ph/0603061 +math-ph/0605029 +math-ph/0605030 +math-ph/0605031 +math-ph/0607061 +math-ph/0610065 +math-ph/0612009 +math-ph/0612062 +math-ph/9909017 +math/0101181 Symplectic Geometry +math/0102046 Symplectic Geometry +math/0102080 Classical Analysis and ODEs +math/0102095 Symplectic Geometry +math/0103097 Combinatorics +math/0104199 Analysis of PDEs +math/0105199 Probability +math/0105258 Probability +math/0106029 Numerical Analysis +math/0109046 Geometric Topology +math/0109123 Algebraic Geometry +math/0109182 Combinatorics +math/0111266 Algebraic Geometry +math/0112159 Differential Geometry +math/0112160 Differential Geometry +math/0112161 Differential Geometry +math/0201200 Dynamical Systems +math/0202298 Classical Analysis and ODEs +math/0202299 Probability +math/0207091 Algebraic Geometry +math/0207202 Algebraic Geometry +math/0207208 Combinatorics +math/0208171 Differential Geometry +math/0210405 Algebraic Topology +math/0212222 General Mathematics +math/0212223 General Mathematics +math/0212224 General Mathematics +math/0212233 Logic +math/0302184 Number Theory +math/0304004 Quantum Algebra +math/0304027 Geometric Topology +math/0305273 Statistics Theory +math/0305307 Optimization and Control +math/0309033 Algebraic Geometry +math/0310095 Differential Geometry +math/0311003 Quantum Algebra +math/0311201 Operator Algebras +math/0311350 Complex Variables +math/0312314 Probability +math/0312376 Spectral Theory +math/0401041 Probability +math/0401233 Probability +math/0404462 Dynamical Systems +math/0404519 Differential Geometry +math/0405092 Logic +math/0405350 Algebraic Geometry +math/0405550 Rings and Algebras +math/0406266 Probability +math/0407385 Metric Geometry +math/0408148 Algebraic Geometry +math/0409481 Dynamical Systems +math/0409502 Probability +math/0410354 Statistics Theory +math/0410426 Operator Algebras +math/0410454 Representation Theory +math/0410572 Algebraic Geometry +math/0411011 Probability +math/0411113 Representation Theory +math/0411242 Algebraic Geometry +math/0411361 Probability +math/0411655 Probability +math/0411660 Probability +math/0412188 Probability +math/0412548 Combinatorics +math/0501057 Representation Theory +math/0501107 Probability +math/0501135 Probability +math/0501366 General Mathematics +math/0501370 General Mathematics +math/0501416 General Mathematics +math/0501418 General Mathematics +math/0501419 General Mathematics +math/0501430 General Mathematics +math/0501431 General Mathematics +math/0501436 General Mathematics +math/0501438 General Mathematics +math/0502012 Probability +math/0502023 Algebraic Geometry +math/0502083 Numerical Analysis +math/0502182 Probability +math/0502208 Probability +math/0502285 Statistics Theory +math/0502308 Rings and Algebras +math/0502361 Optimization and Control +math/0502375 Probability +math/0502424 Differential Geometry +math/0502508 Number Theory +math/0503070 Probability +math/0503110 Probability +math/0503195 Differential Geometry +math/0503256 Spectral Theory +math/0503715 Statistics Theory +math/0504022 Numerical Analysis +math/0504040 Algebraic Geometry +math/0504162 Differential Geometry +math/0504236 Probability +math/0504237 Numerical Analysis +math/0504291 Group Theory +math/0504294 Functional Analysis +math/0504398 Differential Geometry +math/0504464 Probability +math/0505081 Statistics Theory +math/0505109 Numerical Analysis +math/0505117 Differential Geometry +math/0505126 General Mathematics +math/0505145 Analysis of PDEs +math/0505179 General Mathematics +math/0505184 Statistics Theory +math/0505207 Rings and Algebras +math/0505228 Functional Analysis +math/0505281 Numerical Analysis +math/0505295 Number Theory +math/0505303 Functional Analysis +math/0505439 Probability +math/0506042 Dynamical Systems +math/0506148 Differential Geometry +math/0506194 Algebraic Geometry +math/0506299 Differential Geometry +math/0506365 Differential Geometry +math/0507032 Combinatorics +math/0507133 Probability +math/0507194 Algebraic Geometry +math/0507211 Functional Analysis +math/0507239 Geometric Topology +math/0507256 Combinatorics +math/0507594 Symplectic Geometry +math/0508073 Statistics Theory +math/0508173 Analysis of PDEs +math/0508616 Probability +math/0509256 Statistics Theory +math/0509278 Spectral Theory +math/0509308 Probability +math/0509352 Optimization and Control +math/0509546 Algebraic Topology +math/0509634 Statistics Theory +math/0509713 Probability +math/0510066 Numerical Analysis +math/0510111 Operator Algebras +math/0510351 Probability +math/0510384 Probability +math/0510439 Probability +math/0510453 Probability +math/0510497 Probability +math/0510611 Classical Analysis and ODEs +math/0510626 Analysis of PDEs +math/0510630 Analysis of PDEs +math/0510655 Probability +math/0510656 Probability +math/0511005 Geometric Topology +math/0511049 Probability +math/0511096 Functional Analysis +math/0511242 Differential Geometry +math/0511280 Quantum Algebra +math/0511442 Group Theory +math/0511465 Dynamical Systems +math/0511545 Probability +math/0511607 Probability +math/0511708 Probability +math/0511736 Algebraic Geometry +math/0512030 Operator Algebras +math/0512174 Algebraic Geometry +math/0512244 Group Theory +math/0512314 Number Theory +math/0512321 Functional Analysis +math/0601065 Statistics Theory +math/0601087 Logic +math/0601099 Statistics Theory +math/0601118 Combinatorics +math/0601177 Probability +math/0601243 Probability +math/0601315 Probability +math/0601363 Group Theory +math/0601495 Spectral Theory +math/0601551 Analysis of PDEs +math/0601586 Differential Geometry +math/0601611 Analysis of PDEs +math/0601698 Quantum Algebra +math/0602207 Probability +math/0602217 Statistics Theory +math/0602241 Statistics Theory +math/0602244 Statistics Theory +math/0602305 Numerical Analysis +math/0602349 Numerical Analysis +math/0602381 Probability +math/0602482 Logic +math/0602493 Logic +math/0602501 Probability +math/0602503 Probability +math/0602560 Analysis of PDEs +math/0602663 Statistics Theory +math/0602664 Probability +math/0603084 Statistics Theory +math/0603107 Analysis of PDEs +math/0603123 Statistics Theory +math/0603132 Statistics Theory +math/0603250 Probability +math/0603333 Probability +math/0603337 Probability +math/0603448 Statistics Theory +math/0603514 Differential Geometry +math/0603526 Statistics Theory +math/0603613 Probability +math/0603640 Classical Analysis and ODEs +math/0603641 Classical Analysis and ODEs +math/0603642 Classical Analysis and ODEs +math/0603721 Analysis of PDEs +math/0603741 Optimization and Control +math/0604010 Numerical Analysis +math/0604023 Algebraic Geometry +math/0604041 Probability +math/0604064 Statistics Theory +math/0604184 Complex Variables +math/0604214 Dynamical Systems +math/0604223 Differential Geometry +math/0604246 Statistics Theory +math/0604332 Analysis of PDEs +math/0604446 Probability +math/0604603 Rings and Algebras +math/0605323 Statistics Theory +math/0605364 Geometric Topology +math/0605400 Probability +math/0605438 Dynamical Systems +math/0605491 Probability +math/0605504 Geometric Topology +math/0605621 Representation Theory +math/0605688 Analysis of PDEs +math/0605719 Probability +math/0605750 Algebraic Geometry +math/0606166 Statistics Theory +math/0606307 Analysis of PDEs +math/0606328 Analysis of PDEs +math/0606346 Combinatorics +math/0606516 Functional Analysis +math/0606750 Probability +math/0606788 Probability +math/0606789 Statistics Theory +math/0606792 Logic +math/0607010 Statistics Theory +math/0607013 Statistics Theory +math/0607015 Statistics Theory +math/0607041 Probability +math/0607046 Statistics Theory +math/0607087 Representation Theory +math/0607186 Analysis of PDEs +math/0607280 Combinatorics +math/0607282 Probability +math/0607411 Combinatorics +math/0607412 Combinatorics +math/0607419 Combinatorics +math/0607420 Combinatorics +math/0607424 Optimization and Control +math/0607425 Optimization and Control +math/0607426 Optimization and Control +math/0607439 Statistics Theory +math/0607453 Probability +math/0607455 Optimization and Control +math/0607457 Optimization and Control +math/0607466 Optimization and Control +math/0607493 Numerical Analysis +math/0607495 Analysis of PDEs +math/0607530 Analysis of PDEs +math/0607532 Analysis of PDEs +math/0607535 Analysis of PDEs +math/0607536 Analysis of PDEs +math/0607538 Analysis of PDEs +math/0607539 Analysis of PDEs +math/0607540 Analysis of PDEs +math/0607541 Analysis of PDEs +math/0607542 Analysis of PDEs +math/0607545 Probability +math/0607550 Analysis of PDEs +math/0607573 Analysis of PDEs +math/0607595 Representation Theory +math/0607597 Numerical Analysis +math/0607604 Optimization and Control +math/0607803 Statistics Theory +math/0607812 Statistics Theory +math/0608017 Statistics Theory +math/0608022 Statistics Theory +math/0608025 Statistics Theory +math/0608216 Probability +math/0608249 Dynamical Systems +math/0608484 Quantum Algebra +math/0608610 Combinatorics +math/0608613 Statistics Theory +math/0608641 Logic +math/0608667 Probability +math/0608757 Numerical Analysis +math/0609164 Functional Analysis +math/0609212 Probability +math/0609231 Optimization and Control +math/0609353 Probability +math/0609391 Analysis of PDEs +math/0609397 Analysis of PDEs +math/0609400 Quantum Algebra +math/0609496 Optimization and Control +math/0609679 Probability +math/0609682 Probability +math/0609738 Probability +math/0609745 Statistics Theory +math/0609781 Analysis of PDEs +math/0610113 Statistics Theory +math/0610178 Probability +math/0610182 Analysis of PDEs +math/0610219 Probability +math/0610221 Statistics Theory +math/0610317 Probability +math/0610323 Probability +math/0610324 Probability +math/0610328 Probability +math/0610584 Statistics Theory +math/0610585 Statistics Theory +math/0610598 Algebraic Topology +math/0610807 Probability +math/0610838 Statistics Theory +math/0610899 Algebraic Topology +math/0611069 Probability +math/0611133 Statistics Theory +math/0611166 Statistics Theory +math/0611193 Statistics Theory +math/0611217 Statistics Theory +math/0611270 Statistics Theory +math/0611336 K-Theory and Homology +math/0611413 Statistics Theory +math/0611422 Statistics Theory +math/0611433 Statistics Theory +math/0611508 Combinatorics +math/0611512 Statistics Theory +math/0611598 Probability +math/0611646 Rings and Algebras +math/0611652 Probability +math/0611684 Statistics Theory +math/0611708 Probability +math/0611723 Rings and Algebras +math/0611861 Representation Theory +math/0612017 Classical Analysis and ODEs +math/0612066 Statistics Theory +math/0612188 Rings and Algebras +math/0612212 Probability +math/0612241 Logic +math/0612413 Probability +math/0612546 Statistics Theory +math/0612648 Probability +math/0612649 Probability +math/0612694 Probability +math/0612697 Statistics Theory +math/0612726 Probability +math/0612777 Probability +math/0612812 Probability +math/0612817 Statistics Theory +math/0612820 Statistics Theory +math/0612825 Statistics Theory +nlin/0102004 Pattern Formation and Solitons +nlin/0104048 Chaotic Dynamics +nlin/0108048 Pattern Formation and Solitons +nlin/0111058 Exactly Solvable and Integrable Systems +nlin/0212037 Chaotic Dynamics +nlin/0301046 Pattern Formation and Solitons +nlin/0303049 Chaotic Dynamics +nlin/0309056 Exactly Solvable and Integrable Systems +nlin/0402028 Chaotic Dynamics +nlin/0406029 Exactly Solvable and Integrable Systems +nlin/0406031 Chaotic Dynamics +nlin/0406055 Chaotic Dynamics +nlin/0407052 Chaotic Dynamics +nlin/0408062 Chaotic Dynamics +nlin/0411007 Chaotic Dynamics +nlin/0501015 Pattern Formation and Solitons +nlin/0501018 Chaotic Dynamics +nlin/0501035 Chaotic Dynamics +nlin/0503044 Chaotic Dynamics +nlin/0504015 Chaotic Dynamics +nlin/0505060 Exactly Solvable and Integrable Systems +nlin/0506030 Adaptation and Self-Organizing Systems +nlin/0506050 Chaotic Dynamics +nlin/0507066 Adaptation and Self-Organizing Systems +nlin/0510063 Chaotic Dynamics +nlin/0511054 Pattern Formation and Solitons +nlin/0512011 Chaotic Dynamics +nlin/0604071 Cellular Automata and Lattice Gases +nlin/0607018 Chaotic Dynamics +nlin/0609003 Pattern Formation and Solitons +nlin/0610042 Chaotic Dynamics +nucl-ex/0010003 +nucl-ex/0108020 +nucl-ex/0109005 +nucl-ex/0111008 +nucl-ex/0206005 +nucl-ex/0208006 +nucl-ex/0311022 +nucl-ex/0312018 +nucl-ex/0404017 +nucl-ex/0404030 +nucl-ex/0409026 +nucl-ex/0411022 +nucl-ex/0501008 +nucl-ex/0501012 +nucl-ex/0505007 +nucl-ex/0506004 +nucl-ex/0508033 +nucl-ex/0511054 +nucl-ex/0512022 +nucl-ex/0602018 +nucl-ex/0603020 +nucl-ex/0610047 +nucl-th/0011063 +nucl-th/0107059 +nucl-th/0107060 +nucl-th/0107073 +nucl-th/0112010 +nucl-th/0112028 +nucl-th/0201004 +nucl-th/0201005 +nucl-th/0202053 +nucl-th/0205021 +nucl-th/0208033 +nucl-th/0209053 +nucl-th/0211019 +nucl-th/0211098 +nucl-th/0302010 +nucl-th/0303023 +nucl-th/0303075 +nucl-th/0310018 +nucl-th/0311022 +nucl-th/0408059 +nucl-th/0411050 +nucl-th/0501005 +nucl-th/0501048 +nucl-th/0503059 +nucl-th/0504082 +nucl-th/0506030 +nucl-th/0508035 +nucl-th/0508044 +nucl-th/0509049 +nucl-th/0511049 +nucl-th/0512087 +nucl-th/0604003 +nucl-th/0604019 +nucl-th/0604066 +nucl-th/0605018 +nucl-th/0605047 +nucl-th/0605079 +nucl-th/0612084 +nucl-th/9310002 +physics/0102017 Atomic Physics +physics/0103027 Instrumentation and Detectors +physics/0109015 Atomic Physics +physics/0207059 Atomic Physics +physics/0209007 Biological Physics +physics/0209054 Biological Physics +physics/0302008 Classical Physics +physics/0303057 Biological Physics +physics/0304049 Atomic Physics +physics/0306025 Computational Physics +physics/0307039 Fluid Dynamics +physics/0307133 Classical Physics +physics/0310135 Fluid Dynamics +physics/0311128 Atomic Physics +physics/0312074 Accelerator Physics +physics/0402061 Atomic Physics +physics/0402106 Atomic Physics +physics/0403073 Atomic Physics +physics/0406027 Atomic Physics +physics/0407049 Physics Education +physics/0407094 Atomic Physics +physics/0407095 Atomic Physics +physics/0408134 Data Analysis, Statistics and Probability +physics/0409146 Atomic Physics +physics/0410206 Space Physics +physics/0410272 Computational Physics +physics/0411048 Biological Physics +physics/0411055 Space Physics +physics/0411062 Computational Physics +physics/0411083 Fluid Dynamics +physics/0411145 Instrumentation and Detectors +physics/0411213 Fluid Dynamics +physics/0411230 Space Physics +physics/0412053 Atomic Physics +physics/0412136 Plasma Physics +physics/0501019 Plasma Physics +physics/0501127 Medical Physics +physics/0502064 Computational Physics +physics/0502067 Physics and Society +physics/0502075 Chemical Physics +physics/0502076 Chemical Physics +physics/0502077 Chemical Physics +physics/0502086 Instrumentation and Detectors +physics/0502134 Atmospheric and Oceanic Physics +physics/0502135 Geophysics +physics/0503038 Geophysics +physics/0503047 Classical Physics +physics/0503055 Optics +physics/0503096 Atomic Physics +physics/0503143 Atomic Physics +physics/0503153 Geophysics +physics/0503171 Physics Education +physics/0503183 Geophysics +physics/0503205 Classical Physics +physics/0504020 Instrumentation and Detectors +physics/0504068 Optics +physics/0504120 Instrumentation and Detectors +physics/0504206 Chemical Physics +physics/0505012 Atomic and Molecular Clusters +physics/0505084 Fluid Dynamics +physics/0505177 Optics +physics/0506025 Atomic Physics +physics/0506044 Atomic Physics +physics/0506076 Computational Physics +physics/0506137 Physics and Society +physics/0506225 Atomic Physics +physics/0507025 Geophysics +physics/0507060 Atomic Physics +physics/0507195 Physics and Society +physics/0507208 Atomic Physics +physics/0507209 Atomic Physics +physics/0508018 Classical Physics +physics/0508048 Atomic Physics +physics/0508097 Classical Physics +physics/0508106 Plasma Physics +physics/0509032 Atomic Physics +physics/0509053 Medical Physics +physics/0509086 Atmospheric and Oceanic Physics +physics/0509094 Atomic Physics +physics/0509116 Chemical Physics +physics/0509120 Chemical Physics +physics/0509231 Fluid Dynamics +physics/0510016 Biological Physics +physics/0510074 Optics +physics/0510093 Biological Physics +physics/0510094 Atomic and Molecular Clusters +physics/0510095 Atomic and Molecular Clusters +physics/0510096 Atomic and Molecular Clusters +physics/0510097 Chemical Physics +physics/0510098 Atomic and Molecular Clusters +physics/0510099 Atomic and Molecular Clusters +physics/0510101 Atomic Physics +physics/0510119 Atomic and Molecular Clusters +physics/0510120 Atomic and Molecular Clusters +physics/0510121 Atomic and Molecular Clusters +physics/0510133 Atomic and Molecular Clusters +physics/0510171 Biological Physics +physics/0510174 Optics +physics/0510192 Atomic and Molecular Clusters +physics/0510202 Atomic Physics +physics/0510231 Geophysics +physics/0510261 Atomic Physics +physics/0510272 Instrumentation and Detectors +physics/0511089 Atomic Physics +physics/0511094 Chemical Physics +physics/0511104 Atomic Physics +physics/0511121 Classical Physics +physics/0511122 Classical Physics +physics/0511150 Atomic and Molecular Clusters +physics/0511164 Classical Physics +physics/0511169 Physics Education +physics/0511203 Atmospheric and Oceanic Physics +physics/0511226 Fluid Dynamics +physics/0511230 Classical Physics +physics/0511244 Optics +physics/0512002 Optics +physics/0512015 Atomic Physics +physics/0512021 Classical Physics +physics/0512028 Biological Physics +physics/0512029 Biological Physics +physics/0512030 Biological Physics +physics/0512044 Biological Physics +physics/0512123 Biological Physics +physics/0512190 Optics +physics/0512201 Atomic Physics +physics/0512217 Geophysics +physics/0601008 Chemical Physics +physics/0601062 Fluid Dynamics +physics/0601076 Atomic and Molecular Clusters +physics/0601091 Physics and Society +physics/0601099 Atomic and Molecular Clusters +physics/0601105 Fluid Dynamics +physics/0601212 Plasma Physics +physics/0601215 Atomic Physics +physics/0602014 Geophysics +physics/0602093 Atomic Physics +physics/0602106 Atomic Physics +physics/0603032 Medical Physics +physics/0603102 Chemical Physics +physics/0603131 Atomic Physics +physics/0603236 Chemical Physics +physics/0604125 Optics +physics/0604176 Classical Physics +physics/0604222 Plasma Physics +physics/0605039 Optics +physics/0605043 Atomic and Molecular Clusters +physics/0605134 Atomic Physics +physics/0605177 Fluid Dynamics +physics/0605198 Classical Physics +physics/0605200 Atomic Physics +physics/0605259 Fluid Dynamics +physics/0606026 Optics +physics/0606052 Optics +physics/0606080 Biological Physics +physics/0606099 Atmospheric and Oceanic Physics +physics/0606149 Medical Physics +physics/0606215 Medical Physics +physics/0606232 Medical Physics +physics/0607011 Classical Physics +physics/0607097 Classical Physics +physics/0607116 Medical Physics +physics/0607145 Classical Physics +physics/0607160 Classical Physics +physics/0607196 Plasma Physics +physics/0608085 Chemical Physics +physics/0608311 Geophysics +physics/0609073 Atomic Physics +physics/0609108 Geophysics +physics/0609111 Geophysics +physics/0610012 Optics +physics/0610013 Atomic Physics +physics/0610078 Optics +physics/0610141 Optics +physics/0610161 Geophysics +physics/0610167 Medical Physics +physics/0610171 Medical Physics +physics/0610176 Medical Physics +physics/0610182 Medical Physics +physics/0610188 Medical Physics +physics/0610204 Medical Physics +physics/0611005 Geophysics +physics/0611019 Optics +physics/0611174 Plasma Physics +physics/0611255 Optics +physics/0611298 Chemical Physics +physics/0612003 Chemical Physics +physics/0612125 Accelerator Physics +physics/0612181 Chemical Physics +physics/0612226 Classical Physics +q-bio/0501012 Genomics +q-bio/0504012 Genomics +q-bio/0506007 Populations and Evolution +q-bio/0508003 Populations and Evolution +q-bio/0508005 Populations and Evolution +q-bio/0509030 Genomics +q-bio/0511025 Populations and Evolution +q-bio/0511038 Molecular Networks +q-bio/0511044 Populations and Evolution +q-bio/0601005 Populations and Evolution +q-bio/0601011 Neurons and Cognition +q-bio/0601018 Biomolecules +q-bio/0603006 Quantitative Methods +q-bio/0606020 Neurons and Cognition +q-bio/0606040 Neurons and Cognition +q-bio/0609024 Quantitative Methods +q-bio/0610021 Genomics +q-bio/0610022 Genomics +q-bio/0610049 Biomolecules +q-bio/0611010 Populations and Evolution +q-bio/0611019 Populations and Evolution +q-bio/0611028 Quantitative Methods +q-bio/0611034 Other Quantitative Biology +q-bio/0611036 Neurons and Cognition +q-bio/0611053 Quantitative Methods +q-bio/0611075 Genomics +q-bio/0611076 Genomics +q-bio/0611077 Genomics +q-bio/0611079 Genomics +q-bio/0611081 Genomics +q-bio/0611082 Genomics +q-bio/0611083 Genomics +q-bio/0612006 Genomics +quant-ph/0102032 +quant-ph/0104056 +quant-ph/0106007 +quant-ph/0106087 +quant-ph/0106130 +quant-ph/0106136 +quant-ph/0106159 +quant-ph/0107150 +quant-ph/0108094 +quant-ph/0109139 +quant-ph/0111161 +quant-ph/0112005 +quant-ph/0112136 +quant-ph/0202068 +quant-ph/0202078 +quant-ph/0202158 +quant-ph/0203022 +quant-ph/0205056 +quant-ph/0205099 +quant-ph/0205192 +quant-ph/0206063 +quant-ph/0207023 +quant-ph/0207133 +quant-ph/0207137 +quant-ph/0208129 +quant-ph/0208180 +quant-ph/0208181 +quant-ph/0209006 +quant-ph/0209028 +quant-ph/0209087 +quant-ph/0210069 +quant-ph/0210070 +quant-ph/0210111 +quant-ph/0210135 +quant-ph/0211187 +quant-ph/0212011 +quant-ph/0212111 +quant-ph/0212154 +quant-ph/0302083 +quant-ph/0302100 +quant-ph/0302133 +quant-ph/0302150 +quant-ph/0302169 +quant-ph/0302177 +quant-ph/0304057 +quant-ph/0305092 +quant-ph/0306028 +quant-ph/0306172 +quant-ph/0307012 +quant-ph/0307180 +quant-ph/0307214 +quant-ph/0308038 +quant-ph/0308048 +quant-ph/0308091 +quant-ph/0308108 +quant-ph/0308121 +quant-ph/0309130 +quant-ph/0311175 +quant-ph/0312162 +quant-ph/0312229 +quant-ph/0401002 +quant-ph/0401128 +quant-ph/0401129 +quant-ph/0403128 +quant-ph/0403182 +quant-ph/0403204 +quant-ph/0404118 +quant-ph/0404162 +quant-ph/0405045 +quant-ph/0405048 +quant-ph/0405084 +quant-ph/0405092 +quant-ph/0406016 +quant-ph/0406109 +quant-ph/0406138 +quant-ph/0406221 +quant-ph/0407075 +quant-ph/0407166 +quant-ph/0407184 +quant-ph/0407250 +quant-ph/0408134 +quant-ph/0408165 +quant-ph/0408179 +quant-ph/0409047 +quant-ph/0409060 +quant-ph/0409092 +quant-ph/0409097 +quant-ph/0409162 +quant-ph/0409180 +quant-ph/0410024 +quant-ph/0410033 +quant-ph/0410124 +quant-ph/0410182 +quant-ph/0410214 +quant-ph/0411092 +quant-ph/0412051 +quant-ph/0501031 +quant-ph/0501111 +quant-ph/0502067 +quant-ph/0503055 +quant-ph/0503103 +quant-ph/0503134 +quant-ph/0503203 +quant-ph/0503217 +quant-ph/0504039 +quant-ph/0504046 +quant-ph/0504152 +quant-ph/0505058 +quant-ph/0505074 +quant-ph/0505163 +quant-ph/0506106 +quant-ph/0506120 +quant-ph/0506143 +quant-ph/0506146 +quant-ph/0507067 +quant-ph/0507276 +quant-ph/0508082 +quant-ph/0508101 +quant-ph/0508235 +quant-ph/0509057 +quant-ph/0509200 +quant-ph/0510008 +quant-ph/0510163 +quant-ph/0511038 +quant-ph/0512197 +quant-ph/0512254 +quant-ph/0602197 +quant-ph/0603058 +quant-ph/0603191 +quant-ph/0603216 +quant-ph/0603246 +quant-ph/0604022 +quant-ph/0604028 +quant-ph/0604094 +quant-ph/0605055 +quant-ph/0605119 +quant-ph/0606048 +quant-ph/0606119 +quant-ph/0606147 +quant-ph/0606247 +quant-ph/0607002 +quant-ph/0607017 +quant-ph/0607036 +quant-ph/0607054 +quant-ph/0607198 +quant-ph/0608041 +quant-ph/0608182 +quant-ph/0609019 +quant-ph/0609188 +quant-ph/0609199 +quant-ph/0609208 +quant-ph/0610016 +quant-ph/0610019 +quant-ph/0610087 +quant-ph/0610149 +quant-ph/0610226 +quant-ph/0611028 +quant-ph/0611056 +quant-ph/0611114 +quant-ph/0611185 +quant-ph/0611210 +quant-ph/0611266 +quant-ph/0612031 +quant-ph/0612189 +1604.04126 Differential Geometry +1007.2706 Group Theory +1008.4940 Combinatorics +1012.5804 Computational Complexity +1104.4530 Numerical Analysis +1107.1489 Group Theory +1109.1792 Group Theory +1207.3240 Numerical Analysis +1207.5394 Operator Algebras +1209.0523 Numerical Analysis +1210.2946 Mesoscale and Nanoscale Physics +1212.5107 Probability +1306.1612 Phenomenology +1308.3072 Analysis of PDEs +1308.3228 Analysis of PDEs +1309.6003 +1401.8093 Complex Variables +1407.3157 Biological Physics +1407.4543 Machine Learning +1407.6574 Theory +1407.6672 Number Theory +1407.6813 Quantum Algebra +1408.0042 Numerical Analysis +1408.0799 Cosmology and Nongalactic Astrophysics +1408.3867 Analysis of PDEs +1408.6894 +1409.3698 Combinatorics +1409.7793 Probability +1410.2279 Representation Theory +1410.3315 Mesoscale and Nanoscale Physics +1410.6847 Statistics Theory +1411.7248 +1412.0785 Analysis of PDEs +1412.5197 Cosmology and Nongalactic Astrophysics +1412.8447 Numerical Analysis +1501.00288 Optimization and Control +1501.03729 Phenomenology +1501.04964 Phenomenology +1502.01533 Statistics Theory +1502.02762 Soft Condensed Matter +1502.07842 +1503.04109 Phenomenology +1503.04406 Combinatorics +1503.06370 Methodology +1504.02665 Analysis of PDEs +1504.04299 Combinatorics +1504.05273 Numerical Analysis +1504.06459 +1504.06947 Analysis of PDEs +1505.00300 Soft Condensed Matter +1505.00700 Phenomenology +1505.04601 Disordered Systems and Neural Networks +1505.04614 Analysis of PDEs +1505.05734 +1505.07308 Number Theory +1506.01030 High Energy Astrophysical Phenomena +1506.01484 +1506.02873 Spectral Theory +1506.07949 Combinatorics +1506.08096 Analysis of PDEs +1507.03362 Group Theory +1507.05793 Numerical Analysis +1507.06391 Algebraic Geometry +1509.01191 Logic +1509.04917 Analysis of PDEs +1509.04989 Theory +1509.05720 Statistics Theory +1509.05810 Methodology +1509.08021 Optimization and Control +1509.08758 Optics +1509.08882 Theory +1510.01449 Mesoscale and Nanoscale Physics +1510.04516 Information Theory +1510.06835 Materials Science +1510.06988 Software Engineering +1510.08581 Operator Algebras +1511.03807 Theory +1511.03865 +1511.08698 Statistics Theory +1512.00375 Optimization and Control +1512.02137 Numerical Analysis +1512.02384 Phenomenology +1512.06618 Information Theory +1512.09340 Dynamical Systems +1601.00277 Statistical Mechanics +1601.01929 Exactly Solvable and Integrable Systems +1601.04023 Systems and Control +1601.05231 Differential Geometry +1601.05631 +1601.05689 Representation Theory +1601.07412 Algebraic Topology +1602.00382 Optimization and Control +1602.00882 Mesoscale and Nanoscale Physics +1602.01265 Information Theory +1602.04166 +1602.04696 +1602.05600 +1602.08334 Mesoscale and Nanoscale Physics +1603.00781 Exactly Solvable and Integrable Systems +1603.02074 Learning +1603.02982 Methodology +1603.03137 Cosmology and Nongalactic Astrophysics +1603.05608 Number Theory +1603.06442 +1603.06854 Geometric Topology +1603.07367 Theory +1603.09178 Superconductivity +1604.00841 Optimization and Control +1604.01747 Analysis of PDEs +1604.03731 Physics and Society +1604.05538 Experiment +1604.06718 Operator Algebras +1604.07120 Optimization and Control +1604.07894 Phenomenology +1604.07956 Mesoscale and Nanoscale Physics +1604.08261 Algebraic Geometry +1604.08515 Fluid Dynamics +1605.00480 Networking and Internet Architecture +1605.00545 Strongly Correlated Electrons +1605.00928 Distributed, Parallel, and Cluster Computing +1605.02231 Applications +1605.02880 Methodology +1605.03256 Experiment +1605.03660 Populations and Evolution +1605.03836 Probability +1605.04981 Strongly Correlated Electrons +1605.07158 Phenomenology +1605.07755 Differential Geometry +1606.00091 +1606.00515 Computational Physics +1606.01052 Phenomenology +1606.01782 Statistics Theory +1606.02607 Statistical Mechanics +1606.03238 Computer Vision and Pattern Recognition +1606.03705 Geometric Topology +1606.04135 High Energy Astrophysical Phenomena +1606.04487 Distributed, Parallel, and Cluster Computing +1606.06220 Systems and Control +1606.06820 Computation and Language +1606.07663 Mesoscale and Nanoscale Physics +1606.08578 +1607.00835 +1607.00931 Formal Languages and Automata Theory +1607.01623 Strongly Correlated Electrons +1607.02959 Computer Science and Game Theory +1607.03099 +1607.03132 Information Theory +1607.03192 Superconductivity +1607.04999 Mesoscale and Nanoscale Physics +1607.08190 Superconductivity +1607.08399 Combinatorics +1607.08631 Statistical Mechanics +1607.08907 Group Theory +1608.02124 Mesoscale and Nanoscale Physics +1608.03472 Lattice +1608.03644 Learning +1608.03690 Optics +1608.04369 Instrumentation and Methods for Astrophysics +1608.04476 Algebraic Geometry +1608.06027 Learning +1608.06705 Number Theory +1608.07024 Geometric Topology +1608.07059 +1608.07962 +1608.08991 Astrophysics of Galaxies +1609.00036 Computer Vision and Pattern Recognition +1609.00764 Astrophysics of Galaxies +1609.01096 Mesoscale and Nanoscale Physics +1609.02228 Neural and Evolutionary Computing +1609.03262 Materials Science +1609.03378 +1609.03842 Materials Science +1609.03937 Quantum Gases +1609.04247 +1609.04717 Algebraic Topology +1609.06120 Solar and Stellar Astrophysics +1609.06587 Statistical Mechanics +1609.06785 Category Theory +1609.07362 Theory +1609.07659 +1609.07901 Materials Science +1609.08260 Solar and Stellar Astrophysics +1609.08586 High Energy Astrophysical Phenomena +1609.08939 Number Theory +1609.09175 Other Quantitative Biology +1610.00784 Strongly Correlated Electrons +1610.01095 Strongly Correlated Electrons +1610.01845 +1610.02287 Machine Learning +1610.02319 +1610.02674 Statistical Mechanics +1610.03264 High Energy Astrophysical Phenomena +1610.03385 Number Theory +1610.03799 Number Theory +1610.03883 Number Theory +1610.04069 Computer Science and Game Theory +1610.04154 Artificial Intelligence +1610.04177 Experiment +1610.04265 Computation and Language +1610.04275 Rings and Algebras +1610.04331 Fluid Dynamics +1610.04372 Quantum Gases +1610.04410 Phenomenology +1610.04923 Fluid Dynamics +1610.05214 Geometric Topology +1610.05400 Computation +1610.05419 Networking and Internet Architecture +1610.05439 Solar and Stellar Astrophysics +1610.05446 Learning +1610.05575 Superconductivity +1610.05578 High Energy Astrophysical Phenomena +1610.05616 Combinatorics +1610.05652 Computation and Language +1610.05715 Biomolecules +1610.05718 Analysis of PDEs +1610.05758 Information Theory +1610.05766 Phenomenology +1610.05768 Cosmology and Nongalactic Astrophysics +1610.05771 Phenomenology +1610.05773 Machine Learning +1610.05775 Machine Learning +1610.05779 Biomolecules +1610.05781 High Energy Astrophysical Phenomena +1610.05785 Classical Physics +1610.05788 Software Engineering +1610.05789 Biological Physics +1610.05793 Combinatorics +1610.05794 Complex Variables +1610.05795 Methodology +1610.05796 Learning +1610.05797 Theory +1610.05799 High Energy Astrophysical Phenomena +1610.05800 Biological Physics +1610.05801 Computational Physics +1610.05803 Combinatorics +1610.05809 Methodology +1610.05811 Fluid Dynamics +1610.05814 Theory +1610.05815 Learning +1610.05817 Populations and Evolution +1610.05818 +1610.05819 Information Retrieval +1610.05823 Optimization and Control +1610.05824 Robotics +1610.05825 Computational Complexity +1610.05826 Medical Physics +1610.05827 Dynamical Systems +1610.05828 Operator Algebras +1610.05830 Metric Geometry +1610.05833 Theory +1610.05837 Geometric Topology +1610.05839 Combinatorics +1610.05841 +1610.05842 Earth and Planetary Astrophysics +1610.05843 Optimization and Control +1610.05844 Differential Geometry +1610.05845 Superconductivity +1610.05847 Systems and Control +1610.05848 Computational Physics +1610.05849 Other Computer Science +1610.05850 Numerical Analysis +1610.05852 Materials Science +1610.05853 Number Theory +1610.05854 Computer Vision and Pattern Recognition +1610.05855 Numerical Analysis +1610.05856 +1610.05857 Methodology +1610.05858 Computation and Language +1610.05862 Numerical Analysis +1610.05863 Systems and Control +1610.05866 Mesoscale and Nanoscale Physics +1610.05868 Social and Information Networks +1610.05869 Probability +1610.05870 Geophysics +1610.05871 Differential Geometry +1610.05873 Instrumentation and Methods for Astrophysics +1610.05874 Commutative Algebra +1610.05876 Phenomenology +1610.05881 Classical Analysis and ODEs +1610.05882 Robotics +1610.05883 Computer Vision and Pattern Recognition +1610.05884 Instrumentation and Detectors +1610.05885 Theory +1610.05888 Solar and Stellar Astrophysics +1610.05889 Differential Geometry +1610.05890 Optimization and Control +1610.05891 Statistics Theory +1610.05892 Social and Information Networks +1610.05894 Spectral Theory +1610.05895 Optimization and Control +1610.05896 Soft Condensed Matter +1610.05897 Data Structures and Algorithms +1610.05900 Strongly Correlated Electrons +1610.05902 Spectral Theory +1610.05903 Mesoscale and Nanoscale Physics +1610.05907 Spectral Theory +1610.05908 Analysis of PDEs +1610.05912 Dynamical Systems +1610.05913 Analysis of PDEs +1610.05915 Functional Analysis +1610.05919 Chaotic Dynamics +1610.05922 Probability +1610.05924 Algebraic Topology +1610.05925 Machine Learning +1610.05927 Soft Condensed Matter +1610.05928 Number Theory +1610.05929 Computer Vision and Pattern Recognition +1610.05930 Algebraic Geometry +1610.05932 Information Theory +1610.05933 Materials Science +1610.05935 Number Theory +1610.05937 Digital Libraries +1610.05938 Number Theory +1610.05940 Quantum Gases +1610.05942 Phenomenology +1610.05944 Group Theory +1610.05945 Sound +1610.05946 Cosmology and Nongalactic Astrophysics +1610.05947 Functional Analysis +1610.05948 Sound +1610.05950 Machine Learning +1610.05951 +1610.05954 Programming Languages +1610.05956 Machine Learning +1610.05958 +1610.05959 Chaotic Dynamics +1610.05960 Probability +1610.05962 Phenomenology +1610.05964 Number Theory +1610.05965 +1610.05966 Plasma Physics +1610.05969 Probability +1610.05970 Networking and Internet Architecture +1610.05971 Cryptography and Security +1610.05974 +1610.05975 Fluid Dynamics +1610.05976 Number Theory +1610.05977 Optics +1610.05979 Algebraic Geometry +1610.05981 Mesoscale and Nanoscale Physics +1610.05982 Neurons and Cognition +1610.05984 Neural and Evolutionary Computing +1610.05986 Differential Geometry +1610.05987 Soft Condensed Matter +1610.05991 Information Theory +1610.05993 Quantum Gases +1610.05994 Data Structures and Algorithms +1610.05995 +1610.05996 Methodology +1610.05998 Dynamical Systems +1610.06002 Dynamical Systems +1610.06005 Number Theory +1610.06006 Physics and Society +1610.06009 Artificial Intelligence +1610.06010 Complex Variables +1610.06011 +1610.06013 +1610.06015 Instrumentation and Detectors +1610.06019 Experiment +1610.06020 General Physics +1610.06021 Combinatorics +1610.06022 Cryptography and Security +1610.06023 Data Structures and Algorithms +1610.06024 Phenomenology +1610.06025 +1610.06026 Statistics Theory +1610.06028 Analysis of PDEs +1610.06029 Fluid Dynamics +1610.06031 Analysis of PDEs +1610.06033 Other Quantitative Biology +1610.06035 Fluid Dynamics +1610.06039 +1610.06040 +1610.06042 Strongly Correlated Electrons +1610.06043 Robotics +1610.06044 Databases +1610.06046 Computers and Society +1610.06049 Numerical Analysis +1610.06050 Hardware Architecture +1610.06052 Social and Information Networks +1610.06053 Computation and Language +1610.06054 Numerical Analysis +1610.06056 Geometric Topology +1610.06057 Atomic Physics +1610.06058 Combinatorics +1610.06060 Data Structures and Algorithms +1610.06064 Physics and Society +1610.06065 +1610.06066 +1610.06067 Programming Languages +1610.06068 Optimization and Control +1610.06071 +1610.06072 Learning +1610.06073 Networking and Internet Architecture +1610.06076 Statistical Mechanics +1610.06077 Cryptography and Security +1610.06078 Theory +1610.06079 Solar and Stellar Astrophysics +1610.06082 Information Theory +1610.06084 Databases +1610.06085 Social and Information Networks +1610.06086 Numerical Analysis +1610.06087 Classical Physics +1610.06088 Emerging Technologies +1610.06089 Networking and Internet Architecture +1610.06090 Phenomenology +1610.06093 +1610.06094 +1610.06095 Cryptography and Security +1610.06096 K-Theory and Homology +1610.06098 Information Theory +1610.06100 Cosmology and Nongalactic Astrophysics +1610.06102 Analysis of PDEs +1610.06104 +1610.06105 Optimization and Control +1610.06106 Human-Computer Interaction +1610.06108 +1610.06112 Statistical Mechanics +1610.06114 Combinatorics +1610.06115 Representation Theory +1610.06116 Geophysics +1610.06117 Superconductivity +1610.06118 Functional Analysis +1610.06120 Number Theory +1610.06121 Lattice +1610.06124 +1610.06126 +1610.06127 Populations and Evolution +1610.06128 Populations and Evolution +1610.06129 Other Computer Science +1610.06130 Geometric Topology +1610.06131 Data Structures and Algorithms +1610.06132 Analysis of PDEs +1610.06135 +1610.06136 Computer Vision and Pattern Recognition +1610.06140 Cryptography and Security +1610.06147 Geometric Topology +1610.06148 Algebraic Geometry +1610.06149 Optimization and Control +1610.06152 Materials Science +1610.06153 Atomic Physics +1610.06154 Applications +1610.06156 Theory +1610.06157 Methodology +1610.06159 Spectral Theory +1610.06160 Learning +1610.06163 Optics +1610.06168 Strongly Correlated Electrons +math/0103015 Metric Geometry +1507.05063 Numerical Analysis +1602.07853 Analysis of PDEs +1606.09010 Algebraic Geometry +1608.08630 Cosmology and Nongalactic Astrophysics +1608.08664 Atmospheric and Oceanic Physics +1608.08768 Chemical Physics +1608.08809 Other Condensed Matter +1608.08818 Experiment +1608.08823 Optimization and Control +1608.08825 Methodology +1608.08827 Chemical Physics +1608.08876 Analysis of PDEs +1608.08877 Chemical Physics +1608.08886 +1608.08984 Machine Learning +1608.09013 +0802.1665 Analysis of PDEs +0812.3058 +0906.3109 Algebraic Geometry +0907.2202 Numerical Analysis +0911.0664 Computational Complexity +0912.0650 General Physics +1012.5479 Numerical Analysis +1203.2208 Classical Analysis and ODEs +1203.5010 Statistics Theory +1209.1759 Computer Vision and Pattern Recognition +1210.8245 Probability +1305.1503 Algebraic Geometry +1307.3930 General Topology +1309.6376 Optimization and Control +1312.0480 Algebraic Geometry +1312.7472 Operator Algebras +1401.1020 Numerical Analysis +1402.4062 Logic in Computer Science +1403.3796 Group Theory +1403.5295 Rings and Algebras +1403.7048 Logic in Computer Science +1406.1999 Algebraic Geometry +1406.2293 Physics and Society +1406.2567 Geometric Topology +1406.5472 Computer Vision and Pattern Recognition +1406.7515 Computers and Society +1407.0336 Dynamical Systems +1408.4154 Populations and Evolution +1408.6630 Analysis of PDEs +1409.0217 Methodology +1409.0865 Experiment +1409.2068 Probability +1409.7203 Functional Analysis +1409.7406 Theory +1411.4951 Probability +1411.7935 Computer Vision and Pattern Recognition +1412.5604 +1412.7895 +1412.8240 Operator Algebras +1501.06397 Algebraic Geometry +1502.04872 Algebraic Geometry +1504.00703 Computational Complexity +1504.00966 Differential Geometry +1504.03233 Geometric Topology +1504.06184 Probability +1504.06568 Algebraic Geometry +1504.08023 Computer Vision and Pattern Recognition +1505.05202 Operator Algebras +1505.07234 Analysis of PDEs +1506.02911 Optimization and Control +1506.04732 Theory +1506.05862 Probability +1507.00923 +1507.06739 Statistics Theory +1507.07863 Quantum Gases +1508.00656 Quantum Gases +1508.01423 Materials Science +1508.03341 +1508.04325 Quantitative Methods +1509.02640 Distributed, Parallel, and Cluster Computing +1509.05664 Software Engineering +1509.07330 Computer Science and Game Theory +1510.00163 Experiment +1510.03922 Statistical Mechanics +1510.03928 Numerical Analysis +1510.07350 Probability +1510.08745 Analysis of PDEs +1511.00862 Probability +1511.01359 Algebraic Geometry +1511.01366 Algebraic Geometry +1511.02332 Probability +1511.03972 Probability +1511.07370 Materials Science +1511.08235 Phenomenology +1511.08893 +1511.09160 Optics +1512.00892 Quantitative Methods +1512.01395 +1512.04147 Optics +1512.04426 Dynamical Systems +1512.04689 Dynamical Systems +1512.05003 Algebraic Geometry +1512.06189 Algebraic Geometry +1512.06442 +1601.00550 Representation Theory +1601.00866 Phenomenology +1601.01681 Phenomenology +1601.05212 Number Theory +1601.06133 Cosmology and Nongalactic Astrophysics +1601.07251 Methodology +1602.00246 Commutative Algebra +1602.01114 Cosmology and Nongalactic Astrophysics +1602.04219 Phenomenology +1602.06443 Probability +1602.06771 Category Theory +1602.07043 Machine Learning +1603.00479 Materials Science +1603.00563 Optics +1603.00743 Number Theory +1603.01026 Differential Geometry +1603.01391 Functional Analysis +1603.02084 General Physics +1603.03980 Machine Learning +1603.04036 Analysis of PDEs +1603.04384 Systems and Control +1603.06019 +1603.06071 Probability +1603.07130 +1603.08133 Quantum Algebra +1603.09383 +1604.01576 Dynamical Systems +1604.04202 Methodology +1604.04674 Combinatorics +1604.05140 Numerical Analysis +1604.05416 Quantum Algebra +1604.06708 Analysis of PDEs +1604.07255 Artificial Intelligence +1604.07557 +1604.08468 Earth and Planetary Astrophysics +1605.01245 Analysis of PDEs +1605.03170 Computer Vision and Pattern Recognition +1605.03640 Phenomenology +1605.04049 Methodology +1605.04181 Optics +1605.04993 Optimization and Control +1605.06489 Neural and Evolutionary Computing +1605.06846 Operator Algebras +1605.06986 Atomic Physics +1605.07410 Fluid Dynamics +1605.07928 Theory +1606.01682 +1606.01711 Physics and Society +1606.02215 +1606.02819 Computer Vision and Pattern Recognition +1606.03292 Phenomenology +1606.03484 Atomic Physics +1606.03907 +1606.03977 Experiment +1606.04089 Quantum Gases +1606.04474 Neural and Evolutionary Computing +1606.04698 Neurons and Cognition +1606.05818 Earth and Planetary Astrophysics +1606.06621 +1606.06997 Machine Learning +1606.07960 Materials Science +1606.08820 Phenomenology +1606.09337 Number Theory +1607.01083 +1607.02785 Combinatorics +1607.03207 +1607.04896 Mesoscale and Nanoscale Physics +1607.06363 Experiment +1607.06538 Strongly Correlated Electrons +1607.06692 Statistical Mechanics +1607.08664 Algebraic Geometry +1608.00987 Materials Science +1608.01174 +1608.03850 Functional Analysis +1608.05263 Programming Languages +1608.05845 Physics and Society +1608.05902 Mesoscale and Nanoscale Physics +1608.06116 Astrophysics of Galaxies +1608.07108 Tissues and Organs +1608.08054 Algebraic Topology +1608.08236 +1608.08483 Networking and Internet Architecture +1608.09010 Physics and Society +1609.00824 +1609.01797 Information Theory +1609.03646 Statistical Mechanics +1609.03713 Computer Science and Game Theory +1609.04203 Cryptography and Security +1609.04880 Social and Information Networks +1609.05599 Experiment +1609.05796 Instrumentation and Methods for Astrophysics +1609.06946 +1609.07044 +1609.08585 Functional Analysis +1609.09107 Statistical Mechanics +1610.01108 Computation and Language +1610.01254 Chaotic Dynamics +1610.02591 Artificial Intelligence +1610.03088 Experiment +1610.03212 Quantum Gases +1610.03843 Lattice +1610.03934 Computation and Language +1610.04016 Geometric Topology +1610.04357 Probability +1610.07126 Computer Vision and Pattern Recognition +1610.07274 Representation Theory +1610.08215 Strongly Correlated Electrons +1610.08839 +1610.09833 Analysis of PDEs +1610.10012 Materials Science +1611.00389 Mathematical Finance +1611.00613 +1611.01295 +1611.01539 Strongly Correlated Electrons +1611.01864 Algebraic Geometry +1611.01927 Data Analysis, Statistics and Probability +1611.02266 Machine Learning +1611.02612 Differential Geometry +1611.02691 Phenomenology +1611.02857 +1611.02935 +1611.03462 Theory +1611.03722 High Energy Astrophysical Phenomena +1611.03824 Machine Learning +1611.03851 +1611.04074 Numerical Analysis +1611.04303 Rings and Algebras +1611.04365 Statistics Theory +1611.04370 Combinatorics +1611.05109 Computer Vision and Pattern Recognition +1611.05151 Analysis of PDEs +1611.05174 Strongly Correlated Electrons +1611.05256 Combinatorics +1611.05465 Theory +1611.05970 Lattice +1611.06034 Statistics Theory +1611.07211 Phenomenology +1611.07402 Statistical Mechanics +1611.07418 Statistics Theory +1611.07832 Cryptography and Security +1611.08516 Superconductivity +1611.08657 Computer Vision and Pattern Recognition +1611.08720 Algebraic Geometry +1611.08877 Analysis of PDEs +1611.08953 Theory +1611.08990 Combinatorics +1611.09014 Artificial Intelligence +1611.09158 Applications +1611.09188 Chemical Physics +1611.09448 Machine Learning +1611.09479 Metric Geometry +1611.09506 Algebraic Geometry +1611.09548 Analysis of PDEs +1611.09629 Phenomenology +1611.09681 Number Theory +1611.09694 Statistical Mechanics +1611.09766 Applications +1611.09778 Optimization and Control +1611.09789 Optics +1611.09802 Optimization and Control +1611.09806 Number Theory +1611.09809 Systems and Control +1611.09816 Machine Learning +1611.09849 Chemical Physics +1611.09851 Algebraic Geometry +1611.09853 High Energy Astrophysical Phenomena +1611.09861 Astrophysics of Galaxies +1611.09866 Phenomenology +1611.09868 Phenomenology +1611.09872 Plasma Physics +1611.09875 Systems and Control +1611.09876 Solar and Stellar Astrophysics +1611.09877 Probability +1611.09881 Systems and Control +1611.09887 K-Theory and Homology +1611.09889 Number Theory +1611.09890 Methodology +1611.09892 Cosmology and Nongalactic Astrophysics +1611.09895 Materials Science +1611.09898 Rings and Algebras +1611.09900 Computation and Language +1611.09901 Fluid Dynamics +1611.09903 +1611.09904 Artificial Intelligence +1611.09908 Phenomenology +1611.09909 Probability +1611.09911 Instrumentation and Detectors +1611.09915 Networking and Internet Architecture +1611.09916 +1611.09919 +1611.09920 Soft Condensed Matter +1611.09922 Astrophysics of Galaxies +1611.09923 Instrumentation and Methods for Astrophysics +1611.09924 Quantum Algebra +1611.09925 Methodology +1611.09926 Economics +1611.09927 Geometric Topology +1611.09928 Computer Science and Game Theory +1611.09930 Materials Science +1611.09931 Combinatorics +1611.09932 Computer Vision and Pattern Recognition +1611.09933 Statistics Theory +1611.09934 Software Engineering +1611.09937 High Energy Astrophysical Phenomena +1611.09938 Astrophysics of Galaxies +1611.09939 Differential Geometry +1611.09941 Dynamical Systems +1611.09943 Geophysics +1611.09945 Optics +1611.09947 Theory +1611.09949 +1611.09951 Chemical Physics +1611.09952 Numerical Analysis +1611.09954 High Energy Astrophysical Phenomena +1611.09955 Analysis of PDEs +1611.09956 Computer Vision and Pattern Recognition +1611.09959 Analysis of PDEs +1611.09960 Computer Vision and Pattern Recognition +1611.09961 Computer Vision and Pattern Recognition +1611.09962 Probability +1611.09963 Materials Science +1611.09964 Information Theory +1611.09965 Metric Geometry +1611.09967 Computer Vision and Pattern Recognition +1611.09968 Information Theory +1611.09969 Computer Vision and Pattern Recognition +1611.09970 +1611.09977 Number Theory +1611.09978 Computer Vision and Pattern Recognition +1611.09981 Probability +1611.09982 +1611.09983 Networking and Internet Architecture +1611.09984 Optimization and Control +1611.09986 Geometric Topology +1611.09987 Systems and Control +1611.09988 Hardware Architecture +1611.09990 +1611.09993 Differential Geometry +1611.09994 Instrumentation and Methods for Astrophysics +1611.09995 Earth and Planetary Astrophysics +1611.09996 Theory +1611.09997 Earth and Planetary Astrophysics +1611.09998 Atomic Physics +1611.10000 Representation Theory +1611.10002 Numerical Analysis +1611.10003 Neurons and Cognition +1611.10004 +1611.10005 Materials Science +1611.10007 Systems and Control +1611.10008 Computational Physics +1611.10010 Computer Vision and Pattern Recognition +1611.10011 Statistics Theory +1611.10012 Computer Vision and Pattern Recognition +1611.10014 Information Theory +1611.10016 Atomic Physics +1611.10017 Computer Vision and Pattern Recognition +1611.10018 +1611.10019 Superconductivity +1611.10021 Software Engineering +1611.10022 Software Engineering +1611.10023 Software Engineering +1611.10024 Software Engineering +1611.10025 Cosmology and Nongalactic Astrophysics +1611.10026 Optimization and Control +1611.10027 +1611.10029 Numerical Analysis +1611.10030 +1611.10033 +1611.10034 Numerical Analysis +1611.10035 Dynamical Systems +1611.10038 Computation and Language +1611.10043 Complex Variables +1611.10044 Numerical Analysis +1611.10048 Materials Science +1611.10049 Experiment +1611.10053 Software Engineering +1611.10055 Soft Condensed Matter +1611.10056 Dynamical Systems +1611.10057 Exactly Solvable and Integrable Systems +1611.10058 Combinatorics +1611.10059 Computational Geometry +1611.10060 Theory +1611.10061 Computers and Society +1611.10063 Fluid Dynamics +1611.10064 Algebraic Geometry +1611.10065 History and Overview +1611.10067 Soft Condensed Matter +1611.10068 Distributed, Parallel, and Cluster Computing +1611.10071 Analysis of PDEs +1611.10073 Machine Learning +1611.10075 Analysis of PDEs +1611.10076 Cryptography and Security +1611.10079 Strongly Correlated Electrons +1611.10080 Computer Vision and Pattern Recognition +1611.10081 Analysis of PDEs +1611.10082 General Topology +1611.10083 Analysis of PDEs +1611.10087 +1611.10089 Representation Theory +1611.10090 +1611.10091 Populations and Evolution +1611.10093 Group Theory +1611.10094 Social and Information Networks +1611.10095 Artificial Intelligence +1611.10096 Theory +1611.10097 Software Engineering +1611.10098 Mesoscale and Nanoscale Physics +1611.10104 Computer Vision and Pattern Recognition +1611.10106 Classical Analysis and ODEs +1611.10107 +1611.10108 Optics +1611.10109 Optics +1611.10111 Dynamical Systems +1611.10112 Instrumentation and Detectors +1611.10113 Atomic Physics +1611.10114 General Physics +1611.10116 Algebraic Geometry +1611.10117 Commutative Algebra +1611.10120 Artificial Intelligence +1611.10122 Computation and Language +1611.10123 +1611.10124 Analysis of PDEs +1611.10129 Analysis of PDEs +1611.10131 Solar and Stellar Astrophysics +1611.10135 Quantum Gases +1611.10136 Information Theory +1611.10140 Combinatorics +1611.10141 Phenomenology +1611.10142 Numerical Analysis +1611.10143 Rings and Algebras +1611.10144 +1611.10147 Combinatorics +1611.10150 Phenomenology +1611.10151 Theory +1611.10152 Computer Vision and Pattern Recognition +1611.10153 Algebraic Geometry +1611.10154 Computer Science and Game Theory +1611.10155 Phenomenology +1611.10156 Optimization and Control +1611.10158 Dynamical Systems +1611.10160 Software Engineering +1611.10161 Computers and Society +1611.10163 Soft Condensed Matter +1611.10164 Optimization and Control +1611.10165 Numerical Analysis +1611.10167 Probability +1611.10168 Functional Analysis +1611.10169 Software Engineering +1611.10170 Lattice +1611.10171 Computation +1611.10173 Optics +1611.10175 +1611.10176 Learning +1611.10178 Fluid Dynamics +1611.10179 General Physics +1611.10180 Analysis of PDEs +1611.10181 Software Engineering +1611.10183 High Energy Astrophysical Phenomena +1611.10186 Number Theory +1611.10187 Software Engineering +1611.10188 Number Theory +1611.10189 Data Analysis, Statistics and Probability +1611.10191 Computer Science and Game Theory +1611.10192 Analysis of PDEs +1611.10193 Astrophysics of Galaxies +1611.10198 +1611.10202 Probability +1611.10204 Distributed, Parallel, and Cluster Computing +1611.10206 Phenomenology +1611.10208 Data Structures and Algorithms +1611.10210 Distributed, Parallel, and Cluster Computing +1611.10211 Information Theory +1611.10212 Logic in Computer Science +1611.10213 Theory +1611.10215 Learning +1611.10217 Phenomenology +1611.10218 Operator Algebras +1611.10219 Statistical Mechanics +1611.10220 Number Theory +1611.10221 Methodology +1611.10223 High Energy Astrophysical Phenomena +1611.10225 Plasma Physics +1611.10226 High Energy Astrophysical Phenomena +1611.10227 Complex Variables +1611.10228 Learning +1611.10229 Computer Vision and Pattern Recognition +1611.10231 Cryptography and Security +1611.10235 Instrumentation and Detectors +1611.10236 Populations and Evolution +1611.10237 Optics +1611.10239 Combinatorics +1611.10243 Numerical Analysis +1611.10248 Information Retrieval +1611.10249 General Physics +1611.10250 Analysis of PDEs +1611.10252 Neurons and Cognition +1611.10254 Exactly Solvable and Integrable Systems +1611.10255 Theory +1611.10257 Optimization and Control +1611.10259 Combinatorics +1611.10260 Analysis of PDEs +1611.10261 +1611.10263 Materials Science +1611.10264 +1611.10266 Statistics Theory +1611.10268 Information Theory +1611.10270 Computer Science and Game Theory +1611.10271 Analysis of PDEs +1611.10276 Formal Languages and Automata Theory +1611.10277 Computation and Language +1611.10278 Algebraic Geometry +1611.10279 Number Theory +1611.10280 +1611.10281 Theory +1611.10282 +1611.10283 Learning +1611.10284 Fluid Dynamics +1611.10285 Quantum Algebra +1611.10286 Quantum Gases +1611.10287 +1611.10288 Software Engineering +1611.10289 Probability +1611.10290 Theory +1611.10291 Theory +1611.10294 Probability +1611.10295 Phenomenology +1611.10296 Optimization and Control +1611.10299 Combinatorics +1611.10300 Theory +1611.10301 Optics +1611.10302 Information Theory +1611.10305 Social and Information Networks +1611.10306 Phenomenology +1611.10307 Mesoscale and Nanoscale Physics +1611.10309 Information Theory +1611.10310 +1611.10311 Numerical Analysis +1611.10314 Computer Vision and Pattern Recognition +1611.10315 Combinatorics +1611.10316 Hardware Architecture +1611.10318 Populations and Evolution +1611.10319 Computational Complexity +1611.10321 Space Physics +1611.10322 Instrumentation and Methods for Astrophysics +1611.10326 Cosmology and Nongalactic Astrophysics +1611.10327 Theory +1611.10328 Learning +1611.10330 Geometric Topology +1611.10333 Statistics Theory +1611.10336 Computer Vision and Pattern Recognition +1611.10337 Number Theory +1611.10338 Distributed, Parallel, and Cluster Computing +1611.10339 Physics and Society +1611.10340 Representation Theory +1611.10341 Operator Algebras +1611.10347 Instrumentation and Methods for Astrophysics +1611.10349 Machine Learning +1611.10350 Cosmology and Nongalactic Astrophysics +1611.10352 Instrumentation and Detectors +1611.10355 Optics +1611.10356 Mesoscale and Nanoscale Physics +hep-th/0208093 Theory +math/0703800 Operator Algebras +1605.06009 Data Analysis, Statistics and Probability +0801.4072 General Mathematics +1207.2480 +1209.4040 Symplectic Geometry +1210.0184 +1210.4521 Algebraic Geometry +1212.0322 +1301.7106 Commutative Algebra +1303.3757 +1306.6030 Dynamical Systems +1307.2494 +1310.0207 +1310.2109 +1311.0379 +1311.4109 Combinatorics +1311.5396 Representation Theory +1312.1863 Analysis of PDEs +1312.6289 Operator Algebras +1401.2854 Cryptography and Security +1401.6514 Representation Theory +1402.2582 Instrumentation and Methods for Astrophysics +1402.5002 +1403.4055 Representation Theory +1403.6212 Methodology +1403.7312 Operator Algebras +1403.7342 Number Theory +1404.1818 Soft Condensed Matter +1405.0408 +1405.0410 +1405.6531 Methodology +1406.2381 Quantum Algebra +1407.3898 History and Philosophy of Physics +1407.7787 Dynamical Systems +1408.3517 Geometric Topology +1409.1128 +1409.8391 Number Theory +1410.1255 Computer Science and Game Theory +1410.2518 Operator Algebras +1410.3923 Analysis of PDEs +1411.5295 Dynamical Systems +1412.0223 Databases +1412.1199 +1412.2643 Software Engineering +1412.4772 Optics +1412.5086 +1501.00629 Differential Geometry +1501.00821 Combinatorics +1501.03632 Populations and Evolution +1501.04893 Number Theory +1502.04376 Geometric Topology +1502.05440 Combinatorics +1502.07845 +1503.04834 +1503.05534 Phenomenology +1503.08756 Number Theory +1504.02456 Analysis of PDEs +1504.02869 +1504.03832 Populations and Evolution +1504.04855 Phenomenology +1505.03129 +1505.05210 Commutative Algebra +1505.06966 Methodology +1506.02162 Data Structures and Algorithms +1506.02409 Numerical Analysis +1506.05284 Chaotic Dynamics +1507.07540 Soft Condensed Matter +1508.06629 High Energy Astrophysical Phenomena +1508.06630 High Energy Astrophysical Phenomena +1508.07949 Algebraic Geometry +1509.02179 Computational Finance +1509.07307 Plasma Physics +1510.00606 +1510.01932 Social and Information Networks +1510.03149 Databases +1510.04207 Differential Geometry +1510.04555 Operator Algebras +1510.05774 Computer Science and Game Theory +1510.06686 Statistical Mechanics +1510.08041 Atomic Physics +1511.00272 Combinatorics +1511.01667 Chemical Physics +1511.06054 Geometric Topology +1511.06965 Programming Languages +1511.07021 General Topology +1511.07055 Representation Theory +1511.07079 Analysis of PDEs +1511.07699 Representation Theory +1512.00530 Optics +1512.01045 Rings and Algebras +1512.01101 Mesoscale and Nanoscale Physics +1512.01797 Representation Theory +1512.02334 Strongly Correlated Electrons +1512.05667 Logic in Computer Science +1512.07099 +1601.01159 Number Theory +1601.01742 Analysis of PDEs +1601.02271 Combinatorics +1601.02920 Instrumentation and Methods for Astrophysics +1601.04189 Probability +1601.05486 Superconductivity +1601.06059 Social and Information Networks +1601.06373 Analysis of PDEs +1601.07871 Geometric Topology +1601.08088 Methodology +1602.01112 Solar and Stellar Astrophysics +1602.01938 Dynamical Systems +1602.04587 Materials Science +1602.05103 Networking and Internet Architecture +1602.06562 Mesoscale and Nanoscale Physics +1602.08694 Algebraic Geometry +1603.01011 Superconductivity +1603.03138 Combinatorics +1603.03361 General Topology +1603.04503 +1603.05903 Physics and Society +1603.08265 Geometric Topology +1604.01047 Superconductivity +1604.02021 Physics and Society +1604.02427 Mesoscale and Nanoscale Physics +1604.02771 Soft Condensed Matter +1604.03676 Populations and Evolution +1604.04463 Number Theory +1604.04634 Networking and Internet Architecture +1604.04936 Populations and Evolution +1604.05788 +1604.06023 +1605.00188 Phenomenology +1605.00261 +1605.00988 Optimization and Control +1605.02330 Information Theory +1605.02431 Information Theory +1605.02988 +1605.05512 Number Theory +1605.06027 Rings and Algebras +1605.06244 +1605.06514 +1605.06870 +1605.07332 Machine Learning +1605.07630 +1605.08031 Neurons and Cognition +1605.08098 Combinatorics +1605.08600 Operator Algebras +1605.09168 +1606.00148 +1606.00439 Cosmology and Nongalactic Astrophysics +1606.01674 Phenomenology +1606.02875 Accelerator Physics +1606.03120 Atomic Physics +1606.03615 +1606.04123 Theory +1606.05278 Optics +1606.06540 Category Theory +1606.06836 Strongly Correlated Electrons +1606.07070 Theory +1606.07185 Geometric Topology +1606.07488 Methodology +1606.08050 Statistical Mechanics +1606.08593 Phenomenology +1606.09290 +1606.09573 +1607.00480 Phenomenology +1607.01704 Information Theory +1607.02004 Geometric Topology +1607.02011 Machine Learning +1607.02239 Strongly Correlated Electrons +1607.04013 +1607.04493 Mesoscale and Nanoscale Physics +1607.04666 Materials Science +1607.07574 Phenomenology +1607.08110 Machine Learning +1607.08804 Statistical Mechanics +1608.01557 +1608.03440 Computer Vision and Pattern Recognition +1608.05310 Soft Condensed Matter +1608.05381 Instrumentation and Detectors +1608.05995 Machine Learning +1608.06652 +1608.07976 +1608.08400 Dynamical Systems +1608.08668 Optics +1609.01687 +1609.02591 Strongly Correlated Electrons +1609.02612 Computer Vision and Pattern Recognition +1609.02620 Optimization and Control +1609.03613 +1609.05038 Classical Analysis and ODEs +1609.05929 +1609.07015 Multiagent Systems +1609.07190 Computers and Society +1609.08644 Cosmology and Nongalactic Astrophysics +1609.08646 Combinatorics +1609.09708 General Topology +1610.00122 Analysis of PDEs +1610.00133 Complex Variables +1610.00631 Phenomenology +1610.01180 Soft Condensed Matter +1610.02590 Machine Learning +1610.02958 Commutative Algebra +1610.03653 Populations and Evolution +1610.04330 Classical Analysis and ODEs +1610.04353 Commutative Algebra +1610.04370 +1610.05229 Probability +1610.05273 Analysis of PDEs +1610.05939 Operator Algebras +1610.06331 Number Theory +1610.06363 Information Theory +1610.06602 Computation and Language +1610.06656 Machine Learning +1610.07004 Computers and Society +1610.07197 Materials Science +1610.07322 Number Theory +1610.07346 +1610.07356 Geometric Topology +1610.07557 Computer Vision and Pattern Recognition +1610.07588 Atomic Physics +1610.07635 Physics and Society +1610.07667 Learning +1610.07688 Materials Science +1610.07693 Information Theory +1610.07759 Materials Science +1610.07796 Computation and Language +1610.07847 Cosmology and Nongalactic Astrophysics +1610.07862 Artificial Intelligence +1610.07891 Information Theory +1610.07914 Software Engineering +1610.07989 Artificial Intelligence +1610.08024 Metric Geometry +1610.08035 Machine Learning +1610.08044 Chemical Physics +1610.08045 +1610.08049 +1610.08057 +1610.08060 Phenomenology +1610.08064 Analysis of PDEs +1610.08065 Astrophysics of Galaxies +1610.08068 Algebraic Topology +1610.08070 Information Theory +1610.08073 Information Theory +1610.08074 Machine Learning +1610.08077 Machine Learning +1610.08078 Computation and Language +1610.08081 +1610.08084 Physics and Society +1610.08085 Physics and Society +1610.08086 Statistical Mechanics +1610.08088 Methodology +1610.08089 Instrumentation and Detectors +1610.08090 +1610.08094 +1610.08095 Information Retrieval +1610.08098 Social and Information Networks +1610.08100 +1610.08106 Computational Physics +1610.08108 Analysis of PDEs +1610.08110 Quantum Gases +1610.08111 Data Structures and Algorithms +1610.08112 Phenomenology +1610.08114 Information Theory +1610.08116 Logic in Computer Science +1610.08117 Information Retrieval +1610.08118 +1610.08119 Computer Vision and Pattern Recognition +1610.08120 Robotics +1610.08122 Materials Science +1610.08124 Theory +1610.08126 Representation Theory +1610.08128 Distributed, Parallel, and Cluster Computing +1610.08129 Operating Systems +1610.08131 History and Philosophy of Physics +1610.08133 Computer Vision and Pattern Recognition +1610.08134 Plasma Physics +1610.08136 Information Retrieval +1610.08137 Materials Science +1610.08140 Algebraic Geometry +1610.08143 Mathematical Finance +1610.08145 Optics +1610.08146 +1610.08147 +1610.08148 Populations and Evolution +1610.08151 Probability +1610.08152 Networking and Internet Architecture +1610.08153 Combinatorics +1610.08154 Data Structures and Algorithms +1610.08155 Classical Analysis and ODEs +1610.08159 Complex Variables +1610.08160 Dynamical Systems +1610.08161 Group Theory +1610.08162 Differential Geometry +1610.08163 Populations and Evolution +1610.08167 Logic in Computer Science +1610.08168 Multiagent Systems +1610.08169 Logic in Computer Science +1610.08170 Programming Languages +1610.08171 Logic in Computer Science +1610.08172 Performance +1610.08177 Cosmology and Nongalactic Astrophysics +1610.08183 Cosmology and Nongalactic Astrophysics +1610.08186 Instrumentation and Detectors +1610.08189 Machine Learning +1610.08190 Differential Geometry +1610.08191 Representation Theory +1610.08193 Information Theory +1610.08195 Optimization and Control +1610.08196 Phenomenology +1610.08197 Probability +1610.08198 Distributed, Parallel, and Cluster Computing +1610.08199 Distributed, Parallel, and Cluster Computing +1610.08201 Distributed, Parallel, and Cluster Computing +1610.08204 Probability +1610.08205 Fluid Dynamics +1610.08206 Information Theory +1610.08208 Differential Geometry +1610.08209 Differential Geometry +1610.08210 Computer Science and Game Theory +1610.08214 Differential Geometry +1610.08216 Human-Computer Interaction +1610.08218 Mesoscale and Nanoscale Physics +1610.08219 +1610.08220 Materials Science +1610.08221 Fluid Dynamics +1610.08222 Artificial Intelligence +1610.08223 Information Theory +1610.08225 +1610.08226 Optics +1610.08227 Quantitative Methods +1610.08228 Mesoscale and Nanoscale Physics +1610.08229 Learning +1610.08230 Statistical Finance +1610.08231 Algebraic Geometry +1610.08232 Atomic Physics +1610.08233 Superconductivity +1610.08234 +1610.08235 Systems and Control +1610.08236 Materials Science +1610.08237 Materials Science +1610.08240 Optics +1610.08242 Probability +1610.08245 High Energy Astrophysical Phenomena +1610.08246 Applications +1610.08247 Computational Physics +1610.08248 Earth and Planetary Astrophysics +1610.08250 Learning +1610.08251 +1610.08253 Solar and Stellar Astrophysics +1610.08254 History and Philosophy of Physics +1610.08256 Networking and Internet Architecture +1610.08257 Information Theory +1610.08258 Mesoscale and Nanoscale Physics +1610.08262 Social and Information Networks +1610.08263 Materials Science +1610.08265 Lattice +1610.08266 Networking and Internet Architecture +1610.08268 +1610.08269 Phenomenology +1610.08270 Chemical Physics +1610.08271 Phenomenology +1610.08272 +1610.08273 Phenomenology +1610.08274 Systems and Control +1610.08275 +1610.08276 Dynamical Systems +1610.08277 Dynamical Systems +1610.08280 +1610.08282 Metric Geometry +1610.08284 Superconductivity +1610.08285 Analysis of PDEs +1610.08286 Analysis of PDEs +1610.08287 Instrumentation and Methods for Astrophysics +1610.08289 Instrumentation and Methods for Astrophysics +1610.08290 Information Theory +1610.08291 +1610.08292 +1610.08293 Networking and Internet Architecture +1610.08294 Solar and Stellar Astrophysics +1610.08295 Analysis of PDEs +1610.08298 Analysis of PDEs +1610.08299 Number Theory +1610.08300 Materials Science +1610.08301 Materials Science +1610.08302 High Energy Astrophysical Phenomena +1610.08304 Strongly Correlated Electrons +1610.08306 Geometric Topology +1610.08307 Fluid Dynamics +1610.08309 Data Structures and Algorithms +1610.08311 +1610.08313 Strongly Correlated Electrons +1610.08316 Optics +1610.08317 Solar and Stellar Astrophysics +1610.08322 Physics and Society +1610.08325 Multiagent Systems +1610.08328 Data Analysis, Statistics and Probability +1610.08329 Computation +1610.08330 General Physics +1610.08331 General Physics +1610.08332 Systems and Control +1610.08333 Combinatorics +1610.08335 Analysis of PDEs +1610.08342 Computers and Society +1610.08344 +1610.08347 General Mathematics +1610.08349 Computational Complexity +1610.08350 +1610.08351 Optics +1610.08353 Optimization and Control +1610.08356 Phenomenology +1610.08357 +1610.08359 +1610.08360 Methodology +1610.08362 Cosmology and Nongalactic Astrophysics +1610.08363 Methodology +1610.08364 Computational Complexity +1610.08365 Materials Science +1610.08369 Cryptography and Security +1610.08370 Combinatorics +1610.08371 Materials Science +1610.08372 Social and Information Networks +1610.08373 Distributed, Parallel, and Cluster Computing +1610.08375 Computation and Language +1610.08379 Systems and Control +1610.08380 Systems and Control +1610.08384 Analysis of PDEs +1610.08385 Fluid Dynamics +1610.08386 Applications +1610.08387 Category Theory +1610.08389 Combinatorics +1610.08390 Complex Variables +1610.08391 Number Theory +1610.08392 Category Theory +1610.08393 Representation Theory +1610.08398 Representation Theory +1610.08399 Instrumentation and Detectors +1610.08400 Computer Vision and Pattern Recognition +1610.08402 Mesoscale and Nanoscale Physics +1610.08403 Algebraic Geometry +1610.08404 Geometric Topology +1610.08405 Statistics Theory +1610.08407 Computer Science and Game Theory +1610.08408 Information Theory +1610.08410 Number Theory +1610.08411 Databases +1610.08413 Exactly Solvable and Integrable Systems +1610.08414 Statistical Finance +1610.08415 Statistical Finance +1610.08416 Statistical Finance +1610.08417 Numerical Analysis +1610.08420 Phenomenology +1610.08421 +1610.08422 Classical Analysis and ODEs +1610.08424 Robotics +1610.08425 Biological Physics +1610.08427 Fluid Dynamics +1610.08430 Rings and Algebras +1610.08432 Optics +1610.08434 Geometric Topology +1610.08435 Combinatorics +1610.08436 Computer Vision and Pattern Recognition +1610.08437 Dynamical Systems +1610.08438 Materials Science +1610.08441 Classical Analysis and ODEs +1610.08442 Information Retrieval +1610.08443 Materials Science +1610.08445 Artificial Intelligence +1610.08446 Statistical Mechanics +1610.08448 Materials Science +1610.08450 Applications +1610.08451 Phenomenology +1610.08453 Mesoscale and Nanoscale Physics +1610.08456 Complex Variables +1610.08457 Representation Theory +1610.08459 Category Theory +1610.08460 +1610.08462 Computation and Language +1610.08463 Strongly Correlated Electrons +1610.08464 Group Theory +1610.08465 Machine Learning +1610.08466 Machine Learning +1610.08468 Rings and Algebras +1610.08473 Machine Learning +1610.08474 Astrophysics of Galaxies +1610.08476 Programming Languages +1610.08478 Strongly Correlated Electrons +1610.08479 Cosmology and Nongalactic Astrophysics +1610.08480 Materials Science +1610.08482 Information Theory +1610.08483 Geometric Topology +1610.08485 Combinatorics +1610.08486 Superconductivity +1610.08487 Algebraic Geometry +1610.08488 Group Theory +1610.08490 +1610.08491 Systems and Control +1610.08492 Probability +1610.08494 Distributed, Parallel, and Cluster Computing +1610.08495 Learning +1610.08497 Astrophysics of Galaxies +cond-mat/0504606 Mesoscale and Nanoscale Physics +hep-th/0106094 Theory +quant-ph/0304140 +0704.3278 Representation Theory +1003.3069 General Mathematics +1003.5108 +1004.4737 Number Theory +1011.1701 Information Theory +1106.1379 Learning +1108.2335 Differential Geometry +1203.1719 Strongly Correlated Electrons +1203.6839 Phenomenology +1211.0899 Metric Geometry +1211.7091 Representation Theory +1305.3156 Materials Science +1306.2515 Metric Geometry +1306.2644 Number Theory +1306.3349 Analysis of PDEs +1307.3175 Algebraic Geometry +1308.5386 Quantum Algebra +1308.6090 Optimization and Control +1310.3061 Pricing of Securities +1310.5764 Machine Learning +1401.5154 Number Theory +1403.4828 Systems and Control +1404.2995 Strongly Correlated Electrons +1404.4115 Category Theory +1404.5106 History and Overview +1404.7184 Symplectic Geometry +1405.1797 +1405.2038 Materials Science +1405.6585 Information Theory +1407.4507 Algebraic Geometry +1407.6091 +1408.1946 Operator Algebras +1408.3053 Quantum Algebra +1408.3902 Number Theory +1408.3903 Materials Science +1408.6139 +1409.4576 Algebraic Geometry +1409.5536 Statistical Mechanics +1409.6935 Strongly Correlated Electrons +1410.3119 Probability +1410.4229 Astrophysics of Galaxies +1410.5952 Computational Geometry +1410.8075 Information Theory +1410.8506 Combinatorics +1411.1810 Machine Learning +1411.1811 +1411.2613 +1411.7083 Analysis of PDEs +1412.1921 Mesoscale and Nanoscale Physics +1412.2743 Number Theory +1412.5135 +1412.5465 +1412.5799 Quantum Gases +1412.7400 Phenomenology +1412.8730 Phenomenology +1501.00434 Economics +1501.02386 Fluid Dynamics +1501.04019 Algebraic Geometry +1501.07176 Number Theory +1502.03683 Artificial Intelligence +1502.04799 Strongly Correlated Electrons +1502.05086 Computational Complexity +1503.04578 Analysis of PDEs +1503.08768 Cryptography and Security +1504.00210 General Mathematics +1504.00554 Analysis of PDEs +1504.00743 Quantum Algebra +1504.01362 Machine Learning +1504.02903 Analysis of PDEs +1504.03025 Numerical Analysis +1504.03366 Symplectic Geometry +1504.04922 Representation Theory +1504.05652 Analysis of PDEs +1504.05846 Artificial Intelligence +1504.07070 Operating Systems +1505.00707 Discrete Mathematics +1505.01209 Theory +1505.03282 +1505.04491 Pattern Formation and Solitons +1505.05381 Metric Geometry +1505.06471 Number Theory +1505.06854 Quantum Gases +1505.07539 Theory +1506.00662 Analysis of PDEs +1506.00915 Cosmology and Nongalactic Astrophysics +1506.02045 Theory +1506.02975 Machine Learning +1506.04154 Earth and Planetary Astrophysics +1506.05205 Algebraic Geometry +1506.05888 Solar and Stellar Astrophysics +1506.06343 Computer Vision and Pattern Recognition +1507.00783 Statistical Mechanics +1507.01221 +1507.02947 Lattice +1507.03042 Analysis of PDEs +1507.04925 Computer Science and Game Theory +1507.06038 +1507.07487 Rings and Algebras +1507.07738 +1507.08419 +1508.00186 +1508.00241 Differential Geometry +1508.01479 Representation Theory +1508.03597 Optics +1508.03801 Astrophysics of Galaxies +1508.04212 +1508.05997 Differential Geometry +1508.06304 +1508.07892 Classical Analysis and ODEs +1509.00521 +1509.00769 Theory +1509.01618 Learning +1509.01619 Superconductivity +1509.01681 Analysis of PDEs +1509.03515 Probability +1509.04072 Machine Learning +1509.04326 Numerical Analysis +1509.04521 Systems and Control +1509.04773 Analysis of PDEs +1509.05763 Quantum Gases +1509.07052 Materials Science +1509.07319 Theory +1509.08265 Geometric Topology +1509.08273 Analysis of PDEs +1510.00405 Classical Analysis and ODEs +1510.02149 Optimization and Control +1510.02640 +1510.02882 Data Structures and Algorithms +1510.04128 High Energy Astrophysical Phenomena +1510.04886 Complex Variables +1510.05534 Astrophysics of Galaxies +1510.06517 +1510.07858 Mesoscale and Nanoscale Physics +1510.08896 Data Structures and Algorithms +1511.00007 Quantum Gases +1511.00225 +1511.00352 Learning +1511.01259 Information Retrieval +1511.03552 Emerging Technologies +1511.05098 General Physics +1511.05721 Astrophysics of Galaxies +1511.05964 Phenomenology +1511.06014 Learning +1511.06240 Materials Science +1511.06600 +1511.06740 +1511.06934 Spectral Theory +1511.07222 Neurons and Cognition +1511.08511 Analysis of PDEs +1512.00268 Molecular Networks +1512.00413 Information Theory +1512.00742 Probability +1512.01072 Optics +1512.01110 Numerical Analysis +1512.01158 Optics +1512.01193 Astrophysics of Galaxies +1512.01221 Statistical Mechanics +1512.01842 Dynamical Systems +1512.01904 Machine Learning +1512.02312 +1512.02793 Lattice +1512.02835 Theory +1512.03093 General Physics +1512.04553 Strongly Correlated Electrons +1512.05914 Computational Physics +1512.06368 Logic +1512.08836 Learning +1601.00247 Combinatorics +1601.00609 Probability +1601.01012 Logic +1601.01480 +1601.01769 Algebraic Geometry +1601.01773 Quantum Gases +1601.02118 Accelerator Physics +1601.02659 Phenomenology +1601.02954 Phenomenology +1601.03187 +1601.03580 +1601.03693 Combinatorics +1601.04526 General Physics +1601.04637 Probability +1601.05301 Materials Science +1601.06262 Networking and Internet Architecture +1601.06573 Quantum Gases +1601.07745 Logic +1601.07783 Systems and Control +1601.07921 +1602.00201 Logic +1602.00905 Materials Science +1602.01417 Astrophysics of Galaxies +1602.01691 +1602.03052 Algebraic Geometry +1602.03731 +1602.03745 Strongly Correlated Electrons +1602.04374 Quantum Gases +1602.04426 Optimization and Control +1602.04485 Learning +1602.05144 +1602.05291 Group Theory +1602.05631 Theory +1602.05825 Probability +1602.05947 Phenomenology +1602.06210 Theory +1602.06378 +1602.07416 Learning +1602.07539 Instrumentation and Detectors +1602.07764 Artificial Intelligence +1602.08017 Artificial Intelligence +1602.08031 Quantum Gases +1602.08055 Numerical Analysis +1602.08286 Differential Geometry +1602.08673 Numerical Analysis +1602.08755 Algebraic Geometry +1603.00015 Instrumentation and Detectors +1603.00031 Strongly Correlated Electrons +1603.00304 Theory +1603.00409 Optics +1603.00464 Cosmology and Nongalactic Astrophysics +1603.00544 Probability +1603.00550 Computer Vision and Pattern Recognition +1603.00970 Atomic Physics +1603.00988 Learning +1603.01241 Dynamical Systems +1603.01354 Learning +1603.01895 Social and Information Networks +1603.02052 +1603.03073 Computer Science and Game Theory +1603.03148 Quantum Gases +1603.03270 Theory +1603.03720 Number Theory +1603.04844 Fluid Dynamics +1603.05598 Experiment +1603.05717 Combinatorics +1603.05756 Phenomenology +1603.06052 Learning +1603.06186 Machine Learning +1603.06338 +1603.06506 Representation Theory +1603.06807 Computation and Language +1603.07100 Solar and Stellar Astrophysics +1603.07260 Materials Science +1603.08140 Complex Variables +1603.08567 Superconductivity +1603.08649 Optimization and Control +1603.08945 Statistical Mechanics +1604.00430 High Energy Astrophysical Phenomena +1604.01687 Mesoscale and Nanoscale Physics +1604.03177 Phenomenology +1604.03826 Probability +1604.04123 Number Theory +1604.05129 Neurons and Cognition +1604.05431 Formal Languages and Automata Theory +1604.06139 Logic in Computer Science +1604.07032 +1604.07958 Superconductivity +1604.07981 Computational Complexity +1604.08113 +1604.08145 Optics +1605.00013 Phenomenology +1605.00788 Artificial Intelligence +1605.01278 Machine Learning +1605.03309 Complex Variables +1605.03475 Probability +1605.03731 Information Theory +1605.03886 Phenomenology +1605.03926 Information Theory +1605.04107 Phenomenology +1605.05336 Strongly Correlated Electrons +1605.05756 +1605.05988 Information Theory +1605.06026 +1605.06051 Logic +1605.06212 +1605.06339 Solar and Stellar Astrophysics +1605.06375 History and Philosophy of Physics +1605.06857 History and Overview +1605.07064 Phenomenology +1605.07297 Optics +1605.07435 Operator Algebras +1605.07703 Optics +1605.07921 Geometric Topology +1605.08263 General Physics +1605.08269 General Physics +1605.08361 Machine Learning +1605.08494 Social and Information Networks +1605.08564 Materials Science +1605.08589 Spectral Theory +1605.08590 Systems and Control +1605.08743 Geophysics +1605.08775 Chemical Physics +1605.08776 Chemical Physics +1605.08779 Classical Physics +1605.08781 High Energy Astrophysical Phenomena +1605.08786 +1605.08788 Phenomenology +1605.08792 Information Theory +1605.08794 Probability +1605.08796 Rings and Algebras +1605.08799 Methodology +1605.08800 Analysis of PDEs +1605.08805 Cryptography and Security +1605.08806 Networking and Internet Architecture +1605.08807 Lattice +1605.08811 Logic +1605.08815 Networking and Internet Architecture +1605.08819 Combinatorics +1605.08823 Optimization and Control +1605.08825 +1605.08827 Populations and Evolution +1605.08829 Mesoscale and Nanoscale Physics +1605.08831 Computer Vision and Pattern Recognition +1605.08833 Learning +1605.08836 Analysis of PDEs +1605.08838 Learning +1605.08839 Statistics Theory +1605.08841 Human-Computer Interaction +1605.08842 Optics +1605.08843 K-Theory and Homology +1605.08844 Computers and Society +1605.08846 Computers and Society +1605.08847 +1605.08848 Analysis of PDEs +1605.08851 Information Theory +1605.08852 Numerical Analysis +1605.08853 Differential Geometry +1605.08854 Theory +1605.08855 Metric Geometry +1605.08856 Computer Vision and Pattern Recognition +1605.08857 Computer Vision and Pattern Recognition +1605.08858 +1605.08862 Probability +1605.08863 Computer Science and Game Theory +1605.08866 Chemical Physics +1605.08867 Logic +1605.08869 Complex Variables +1605.08870 Discrete Mathematics +1605.08872 Learning +1605.08873 Dynamical Systems +1605.08874 Information Theory +1605.08875 Statistics Theory +1605.08878 Computers and Society +1605.08879 Combinatorics +1605.08880 Statistics Theory +1605.08882 Learning +1605.08883 Multiagent Systems +1605.08884 Number Theory +1605.08886 Materials Science +1605.08887 Genomics +1605.08888 Digital Libraries +1605.08890 Instrumentation and Detectors +1605.08893 Mesoscale and Nanoscale Physics +1605.08895 Optics +1605.08898 Methodology +1605.08902 +1605.08903 Dynamical Systems +1605.08904 Number Theory +1605.08906 +1605.08908 Portfolio Management +1605.08909 Neurons and Cognition +1605.08911 Algebraic Geometry +1605.08912 Algebraic Topology +1605.08914 Superconductivity +1605.08916 +1605.08917 Astrophysics of Galaxies +1605.08920 +1605.08923 Phenomenology +1605.08925 Computational Physics +1605.08928 Computers and Society +1605.08931 Mesoscale and Nanoscale Physics +1605.08933 Methodology +1605.08935 Data Structures and Algorithms +1605.08937 Algebraic Geometry +1605.08938 General Mathematics +1605.08940 Dynamical Systems +1605.08941 Algebraic Geometry +1605.08943 Geometric Topology +1605.08944 Biological Physics +1605.08945 Dynamical Systems +1605.08946 Probability +1605.08948 Dynamical Systems +1605.08950 Dynamical Systems +1605.08951 Computational Complexity +1605.08954 +1605.08958 Systems and Control +1605.08960 Classical Analysis and ODEs +1605.08961 Machine Learning +1605.08966 Exactly Solvable and Integrable Systems +1605.08967 Statistical Mechanics +1605.08969 Multimedia +1605.08971 Group Theory +1605.08972 Classical Analysis and ODEs +1605.08973 Classical Analysis and ODEs +1605.08974 Networking and Internet Architecture +1605.08977 Geometric Topology +1605.08978 Computation +1605.08981 Group Theory +1605.08982 Optimization and Control +1605.08984 Analysis of PDEs +1605.08985 Chemical Physics +1605.08986 Chaotic Dynamics +1605.08987 Dynamical Systems +1605.08989 Probability +1605.08990 Number Theory +1605.08992 Category Theory +1605.08995 Computers and Society +1605.08996 Probability +1605.09000 Methodology +1605.09001 Atomic Physics +1605.09002 Networking and Internet Architecture +1605.09003 Algebraic Geometry +1605.09004 Machine Learning +1605.09005 Analysis of PDEs +1605.09006 Mesoscale and Nanoscale Physics +1605.09008 Optics +1605.09009 Computation +1605.09012 Computer Science and Game Theory +1605.09022 Superconductivity +1605.09025 +1605.09026 Machine Learning +1605.09027 +1605.09028 Phenomenology +1605.09029 +1605.09033 Optics +1605.09034 Cryptography and Security +1605.09037 Dynamical Systems +1605.09039 Probability +1605.09041 Numerical Analysis +1605.09045 Phenomenology +1605.09049 Learning +1605.09052 Probability +1605.09053 Lattice +1605.09055 Combinatorics +1605.09058 Space Physics +1605.09059 High Energy Astrophysical Phenomena +1605.09061 Formal Languages and Automata Theory +1605.09062 Computer Vision and Pattern Recognition +1605.09063 Probability +1605.09070 Genomics +1605.09073 Neurons and Cognition +1605.09074 Optimization and Control +1605.09079 Instrumentation and Methods for Astrophysics +1605.09082 Learning +1605.09083 Probability +1605.09086 Mesoscale and Nanoscale Physics +1605.09089 Robotics +1605.09090 Computation and Language +1605.09092 Soft Condensed Matter +1605.09095 Analysis of PDEs +1605.09104 Numerical Analysis +1605.09109 Numerical Analysis +1605.09112 Optimization and Control +1605.09113 Optimization and Control +1605.09114 Learning +1605.09115 Cryptography and Security +1605.09116 Optimization and Control +1605.09117 Materials Science +1605.09118 Instrumentation and Detectors +1605.09119 Space Physics +1605.09122 Experiment +1605.09126 +1605.09128 Artificial Intelligence +1605.09130 Cosmology and Nongalactic Astrophysics +1605.09131 Learning +1605.09134 +1605.09135 Number Theory +1605.09136 Computer Vision and Pattern Recognition +1605.09137 Materials Science +1605.09141 Combinatorics +1605.09142 Statistical Mechanics +1605.09143 Differential Geometry +1605.09145 Commutative Algebra +1605.09150 Differential Geometry +1605.09153 Computational Geometry +1605.09157 Differential Geometry +1605.09158 Theory +1605.09161 Symplectic Geometry +1605.09162 Computational Engineering, Finance, and Science +1605.09163 Optics +1605.09164 Superconductivity +1605.09167 Optics +1605.09169 Combinatorics +1605.09170 Computers and Society +1605.09171 Applications +1605.09173 Group Theory +1605.09176 Phenomenology +1605.09177 Logic +1605.09179 Number Theory +1605.09182 Strongly Correlated Electrons +1605.09184 Computers and Society +1605.09185 Robotics +1605.09187 Popular Physics +1605.09191 Cosmology and Nongalactic Astrophysics +1605.09192 Category Theory +1605.09194 Computer Science and Game Theory +1605.09197 Representation Theory +1605.09198 Classical Analysis and ODEs +1605.09200 Classical Analysis and ODEs +1605.09201 Numerical Analysis +1605.09202 Numerical Analysis +1605.09204 Number Theory +1605.09206 Category Theory +1605.09207 K-Theory and Homology +1605.09210 Analysis of PDEs +1605.09211 Multimedia +1605.09212 Metric Geometry +1605.09213 Number Theory +1605.09216 Algebraic Geometry +1605.09217 Complex Variables +1605.09219 Instrumentation and Methods for Astrophysics +1605.09220 Probability +1605.09221 Learning +1605.09222 Logic +1605.09223 Combinatorics +1605.09226 Analysis of PDEs +1605.09227 Learning +1605.09228 Number Theory +1605.09232 Numerical Analysis +1605.09233 General Physics +1605.09234 Analysis of PDEs +1605.09235 Strongly Correlated Electrons +1605.09244 Computational Geometry +1605.09245 Atomic Physics +1605.09250 Computational Geometry +1605.09255 Representation Theory +1605.09257 Physics and Society +1605.09264 Pattern Formation and Solitons +1605.09265 Rings and Algebras +1605.09266 Biomolecules +1605.09269 Biomolecules +1605.09274 Rings and Algebras +1605.09277 Optics +1605.09279 Number Theory +1605.09280 Classical Analysis and ODEs +1605.09282 Neurons and Cognition +1605.09283 Metric Geometry +1605.09284 Phenomenology +1605.09285 Theory +1605.09290 Differential Geometry +1605.09292 Number Theory +1605.09293 Logic in Computer Science +1605.09295 Instrumentation and Methods for Astrophysics +1605.09296 Robotics +1605.09299 Learning +1605.09302 Group Theory +1605.09306 Optics +1605.09307 Networking and Internet Architecture +1605.09312 Neurons and Cognition +1605.09316 Metric Geometry +1605.09319 Mesoscale and Nanoscale Physics +1605.09323 Number Theory +1605.09324 Statistical Mechanics +1605.09327 Statistical Mechanics +1605.09331 High Energy Astrophysical Phenomena +1605.09333 Combinatorics +1605.09336 Computer Vision and Pattern Recognition +1605.09343 Combinatorics +1605.09344 Differential Geometry +1605.09349 Optimization and Control +1605.09350 Networking and Internet Architecture +1605.09353 Neurons and Cognition +1605.09354 Theory +1605.09355 Statistical Mechanics +1605.09359 Phenomenology +1605.09360 Number Theory +1605.09361 Instrumentation and Detectors +1605.09363 Number Theory +1605.09366 Instrumentation and Detectors +1605.09369 Theory +1605.09370 Machine Learning +cond-mat/0504527 Strongly Correlated Electrons +math/0611004 Geometric Topology +q-alg/9506005 Quantum Algebra +0804.0006 Combinatorics +0909.3747 General Mathematics +1103.1496 General Physics +1105.0103 Computational Geometry +1105.3820 Popular Physics +1108.2579 Number Theory +1109.0855 +1110.1462 Statistics Theory +1110.2295 Methodology +1112.3414 +1202.1436 Methodology +1204.2392 Statistics Theory +1206.2068 Computer Vision and Pattern Recognition +1209.1031 Statistics Theory +1209.4161 Classical Analysis and ODEs +1210.6578 Information Theory +1212.3595 Differential Geometry +1301.6295 Information Theory +1302.1124 Commutative Algebra +1303.0250 Functional Analysis +1304.1476 Astrophysics of Galaxies +1304.3384 High Energy Astrophysical Phenomena +1305.1451 Combinatorics +1305.3789 Instrumentation and Methods for Astrophysics +1307.5297 Representation Theory +1307.6325 Classical Physics +1308.1269 Statistics Theory +1308.5623 Applications +1309.0587 Experiment +1310.6982 Phenomenology +1311.1757 Computers and Society +1311.2209 Functional Analysis +1311.3959 Artificial Intelligence +1312.0384 Biological Physics +1402.2193 Analysis of PDEs +1402.3019 Methodology +1402.5277 Materials Science +1402.5830 Optimization and Control +1403.0476 Computational Complexity +1403.2155 Combinatorics +1403.4290 Computation +1403.4680 Computation +1403.4735 Information Theory +1403.6596 Complex Variables +1404.1214 Statistics Theory +1404.2239 General Topology +1404.4951 Dynamical Systems +1404.5933 Instrumentation and Detectors +1405.0360 Instrumentation and Methods for Astrophysics +1405.5466 Instrumentation and Methods for Astrophysics +1405.7542 Lattice +1406.3585 Strongly Correlated Electrons +1406.5943 Combinatorics +1407.1152 Phenomenology +1407.1710 Instrumentation and Methods for Astrophysics +1407.3081 Geometric Topology +1407.4217 Strongly Correlated Electrons +1408.0222 Phenomenology +1408.2899 Earth and Planetary Astrophysics +1408.5549 Differential Geometry +1409.0755 +1409.4621 Computational Geometry +1410.0472 +1410.1319 +1410.1358 Geometric Topology +1410.2203 Quantum Gases +1410.5516 Dynamical Systems +1410.7563 Mesoscale and Nanoscale Physics +1410.7834 Combinatorics +1411.1766 Algebraic Geometry +1411.3034 Optics +1411.3688 Computation +1411.6141 Analysis of PDEs +1411.6872 Probability +1411.7765 Functional Analysis +1412.2082 +1412.2813 Computer Vision and Pattern Recognition +1412.3773 Learning +1412.6971 Combinatorics +1412.8253 Complex Variables +1412.8325 +1412.8450 +1501.00372 Methodology +1501.01350 Numerical Analysis +1501.01797 Information Theory +1501.05937 Phenomenology +1502.00221 Fluid Dynamics +1502.04539 Computer Science and Game Theory +1502.04547 Symplectic Geometry +1502.05739 +1502.06695 Classical Analysis and ODEs +1503.02228 Quantum Algebra +1503.02619 Computer Vision and Pattern Recognition +1503.02779 Combinatorics +1503.04856 Functional Analysis +1503.05636 +1503.06388 Statistics Theory +1503.07176 Astrophysics of Galaxies +1503.07513 High Energy Astrophysical Phenomena +1503.08052 Cosmology and Nongalactic Astrophysics +1503.08239 Optimization and Control +1503.08496 Commutative Algebra +1503.08626 Combinatorics +1503.08962 Analysis of PDEs +1504.01974 Cryptography and Security +1504.02845 Metric Geometry +1504.04680 Optimization and Control +1504.04917 Number Theory +1504.04952 Mesoscale and Nanoscale Physics +1504.05211 Theory +1504.06779 Computer Vision and Pattern Recognition +1504.07345 +1505.01409 Representation Theory +1505.01653 Classical Analysis and ODEs +1505.01785 Pattern Formation and Solitons +1505.01804 Classical Analysis and ODEs +1505.02404 Dynamical Systems +1505.02507 High Energy Astrophysical Phenomena +1505.03259 Systems and Control +1505.04296 Phenomenology +1505.04802 Disordered Systems and Neural Networks +1505.05108 Functional Analysis +1505.05926 +1505.07492 Optimization and Control +1505.07564 Data Analysis, Statistics and Probability +1506.00467 Combinatorics +1506.06531 +1506.06608 Mathematical Finance +1506.07660 Analysis of PDEs +1506.07924 Optimization and Control +1507.00303 +1507.01349 Representation Theory +1507.02010 +1507.02155 +1507.02792 Quantum Algebra +1507.03084 Information Theory +1507.04009 Earth and Planetary Astrophysics +1507.04027 Social and Information Networks +1507.04191 Superconductivity +1507.04233 +1507.04606 Social and Information Networks +1507.05492 Social and Information Networks +1507.05522 Probability +1507.05705 +1507.05885 Analysis of PDEs +1507.07737 Materials Science +1507.08480 +1507.08850 +1508.00586 Astrophysics of Galaxies +1508.01362 Analysis of PDEs +1508.01752 +1508.01822 Phenomenology +1508.02456 Algebraic Geometry +1508.02596 Combinatorics +1508.03008 Pattern Formation and Solitons +1508.03647 Cosmology and Nongalactic Astrophysics +1508.05030 Quantum Gases +1508.05243 Machine Learning +1508.05431 Methodology +1508.05555 Geometric Topology +1508.07218 Strongly Correlated Electrons +1508.07768 Probability +1509.00118 Data Structures and Algorithms +1509.00408 +1509.01430 +1509.01723 Dynamical Systems +1509.02120 Cosmology and Nongalactic Astrophysics +1509.03307 Dynamical Systems +1509.04914 +1509.05139 Cosmology and Nongalactic Astrophysics +1509.05150 +1509.06612 Economics +1509.07590 Statistical Mechanics +1509.08623 Combinatorics +1509.08747 Instrumentation and Detectors +1510.00143 Computer Vision and Pattern Recognition +1510.00931 Computer Science and Game Theory +1510.01290 Statistics Theory +1510.01436 +1510.01499 Algebraic Geometry +1510.02098 Theory +1510.02176 Materials Science +1510.03140 +1510.05167 Populations and Evolution +1510.05174 Strongly Correlated Electrons +1510.06053 Computation +1510.06267 Atomic Physics +1510.06935 Materials Science +1510.06990 Classical Analysis and ODEs +1510.07272 Instrumentation and Detectors +1510.08222 Algebraic Geometry +1511.00389 Dynamical Systems +1511.00755 Mesoscale and Nanoscale Physics +1511.00906 Social and Information Networks +1511.00931 Physics Education +1511.02148 Phenomenology +1511.02398 Optimization and Control +1511.03155 +1511.04350 Symplectic Geometry +1511.04690 Learning +1511.04715 Phenomenology +1511.04840 Probability +1511.05565 Theory +1511.05622 Learning +1511.06138 +1511.06390 Machine Learning +1511.06473 Commutative Algebra +1511.07122 Computer Vision and Pattern Recognition +1511.07247 Computer Vision and Pattern Recognition +1511.07649 Materials Science +1511.08935 Analysis of PDEs +1512.00096 +1512.00129 Geometric Topology +1512.00267 Metric Geometry +1512.00620 Optimization and Control +1512.00697 Probability +1512.01290 Information Theory +1512.01323 +1512.01649 Fluid Dynamics +1512.01839 Information Theory +1512.02938 Probability +1512.03211 Computers and Society +1512.03223 Methodology +1512.03284 Numerical Analysis +1512.05741 Digital Libraries +1512.05773 +1512.06658 Robotics +1512.06717 Algebraic Geometry +1512.06918 Classical Analysis and ODEs +1512.08512 Computer Vision and Pattern Recognition +1512.09052 Methodology +1601.00672 Mesoscale and Nanoscale Physics +1601.02051 Statistical Mechanics +1601.03364 Earth and Planetary Astrophysics +1601.03567 Experiment +1601.04336 Phenomenology +1601.05022 Experiment +1601.05171 Strongly Correlated Electrons +1601.05390 +1601.05421 Strongly Correlated Electrons +1601.05528 Materials Science +1601.05862 Mesoscale and Nanoscale Physics +1601.05930 Materials Science +1601.06277 Theory +1601.06431 Experiment +1601.06747 Solar and Stellar Astrophysics +1601.07133 Distributed, Parallel, and Cluster Computing +1601.07810 Computational Engineering, Finance, and Science +1601.07951 Statistical Mechanics +1601.08221 Databases +1602.00439 Strongly Correlated Electrons +1602.00590 Phenomenology +1602.01062 Quantum Gases +1602.02233 Solar and Stellar Astrophysics +1602.02416 Logic +1602.02648 Information Theory +1602.03260 Numerical Analysis +1602.03718 Distributed, Parallel, and Cluster Computing +1602.04365 Data Structures and Algorithms +1602.04796 Soft Condensed Matter +1602.05207 Probability +1602.05339 Fluid Dynamics +1602.05432 Formal Languages and Automata Theory +1602.05980 Learning +1602.06279 Theory +1602.06430 Functional Analysis +1602.07896 High Energy Astrophysical Phenomena +1602.08870 Soft Condensed Matter +1603.00404 Optics +1603.01319 +1603.01594 High Energy Astrophysical Phenomena +1603.01678 Mesoscale and Nanoscale Physics +1603.01685 Economics +1603.02215 +1603.02248 Experiment +1603.03102 Networking and Internet Architecture +1603.03328 Cosmology and Nongalactic Astrophysics +1603.03411 Algebraic Geometry +1603.03983 Number Theory +1603.06237 Analysis of PDEs +1603.06869 +1603.07210 Computer Science and Game Theory +1603.07545 Robotics +1603.08042 Computation and Language +1603.08648 Programming Languages +1604.00590 Social and Information Networks +1604.01637 Superconductivity +1604.01914 Number Theory +1604.02019 Number Theory +1604.02435 Computer Science and Game Theory +1604.02732 K-Theory and Homology +1604.02917 Machine Learning +1604.03780 Instrumentation and Methods for Astrophysics +1604.03841 Logic +1604.04740 Distributed, Parallel, and Cluster Computing +1604.04841 Optimization and Control +1604.04846 +1604.05298 Functional Analysis +1604.05841 Programming Languages +1604.06343 Classical Analysis and ODEs +1604.06604 +1604.07059 Complex Variables +1604.07166 Social and Information Networks +1604.07351 +1604.07353 Solar and Stellar Astrophysics +1604.07359 Data Structures and Algorithms +1604.07450 +1604.07478 Systems and Control +1604.07821 Instrumentation and Methods for Astrophysics +1604.07882 High Energy Astrophysical Phenomena +1604.07909 Classical Analysis and ODEs +1604.07945 Analysis of PDEs +1604.07977 Number Theory +1604.08096 Optimization and Control +1604.08334 Instrumentation and Methods for Astrophysics +1604.08437 Computational Complexity +1604.08448 Data Structures and Algorithms +1604.08521 Combinatorics +1604.08568 Databases +1604.08670 Number Theory +1604.08752 Plasma Physics +1604.08756 Networking and Internet Architecture +1604.08758 Networking and Internet Architecture +1604.08877 Instrumentation and Detectors +1604.08916 Cell Behavior +1605.00001 Probability +1605.00003 Learning +1605.00015 Methodology +1605.00018 Exactly Solvable and Integrable Systems +1605.00024 Probability +1605.00025 Physics Education +1605.00026 Robotics +1605.00028 Mesoscale and Nanoscale Physics +1605.00029 Computer Vision and Pattern Recognition +1605.00033 Other Quantitative Biology +1605.00034 Differential Geometry +1605.00039 Probability +1605.00040 Applications +1605.00041 +1605.00043 Analysis of PDEs +1605.00047 Combinatorics +1605.00050 Systems and Control +1605.00052 Computer Vision and Pattern Recognition +1605.00055 Computer Vision and Pattern Recognition +1605.00060 Databases +1605.00061 Phenomenology +1605.00064 Neural and Evolutionary Computing +1605.00070 Geometric Topology +1605.00071 Optimization and Control +1605.00072 Number Theory +1605.00073 Geometric Topology +1605.00075 Computer Vision and Pattern Recognition +1605.00079 Learning +1605.00080 General Finance +1605.00085 Distributed, Parallel, and Cluster Computing +1605.00087 Dynamical Systems +1605.00088 Number Theory +1605.00089 Data Structures and Algorithms +1605.00091 Networking and Internet Architecture +1605.00097 Neural and Evolutionary Computing +1605.00101 Networking and Internet Architecture +1605.00102 Analysis of PDEs +1605.00104 Methodology +1605.00105 Networking and Internet Architecture +1605.00118 Probability +1605.00119 Data Structures and Algorithms +1605.00126 Materials Science +1605.00128 Differential Geometry +1605.00129 Computer Vision and Pattern Recognition +1605.00131 Number Theory +1605.00132 Numerical Analysis +1605.00136 Computer Science and Game Theory +1605.00139 Data Structures and Algorithms +1605.00141 Experiment +1605.00147 Mesoscale and Nanoscale Physics +1605.00148 Mesoscale and Nanoscale Physics +1605.00150 Materials Science +1605.00153 Networking and Internet Architecture +1605.00154 Experiment +1605.00155 Methodology +1605.00156 Numerical Analysis +1605.00157 Statistics Theory +1605.00158 Optimization and Control +1605.00159 Theory +1605.00160 Algebraic Geometry +1605.00161 +1605.00162 Probability +1605.00165 Functional Analysis +1605.00169 Robotics +1605.00170 Computer Vision and Pattern Recognition +1605.00171 Earth and Planetary Astrophysics +1605.00172 Combinatorics +1605.00173 Portfolio Management +1605.00178 Neurons and Cognition +1605.00179 Experiment +1605.00185 Methodology +1605.00192 Representation Theory +1605.00193 Group Theory +1605.00194 Information Theory +1605.00198 Physics and Society +1605.00199 +1605.00204 Information Theory +1605.00205 Information Theory +1605.00207 High Energy Astrophysical Phenomena +1605.00211 Information Theory +1605.00212 Materials Science +1605.00214 Cryptography and Security +1605.00215 Instrumentation and Detectors +1605.00218 Logic +1605.00219 +1605.00223 Learning +1605.00225 +1605.00227 Quantum Algebra +1605.00228 Representation Theory +1605.00232 Analysis of PDEs +1605.00233 Functional Analysis +1605.00235 Plasma Physics +1605.00236 Algebraic Geometry +1605.00241 Artificial Intelligence +1605.00244 Fluid Dynamics +1605.00245 Functional Analysis +1605.00247 Functional Analysis +1605.00249 Applications +1605.00255 Medical Physics +1605.00256 +1605.00257 Combinatorics +1605.00258 Dynamical Systems +1605.00266 Combinatorics +1605.00268 Quantum Algebra +1605.00271 Group Theory +1605.00272 Accelerator Physics +1605.00273 Combinatorics +1605.00274 Systems and Control +1605.00281 Classical Analysis and ODEs +1605.00284 Human-Computer Interaction +1605.00285 Probability +1605.00286 Computer Vision and Pattern Recognition +1605.00296 Logic +1605.00297 Algebraic Geometry +1605.00298 Optics +1605.00300 Cryptography and Security +1605.00302 Algebraic Geometry +1605.00303 Computational Engineering, Finance, and Science +1605.00306 Computer Science and Game Theory +1605.00307 Computational Finance +1605.00310 Physics and Society +1605.00311 Dynamical Systems +1605.00312 Atomic Physics +1605.00314 Commutative Algebra +1605.00316 Machine Learning +1605.00319 Information Theory +1605.00320 Optimization and Control +1605.00322 Information Theory +1605.00324 Computer Vision and Pattern Recognition +1605.00325 +1605.00329 Learning +1605.00331 Geometric Topology +1605.00337 Soft Condensed Matter +1605.00338 Materials Science +1605.00344 Phenomenology +1605.00345 Optics +1605.00347 Systems and Control +1605.00351 Number Theory +1605.00352 Chaotic Dynamics +1605.00354 Robotics +1605.00355 Machine Learning +1605.00359 Classical Analysis and ODEs +1605.00361 Probability +1605.00362 Operating Systems +1605.00366 Computer Vision and Pattern Recognition +1605.00367 Solar and Stellar Astrophysics +1605.00370 +1605.00371 Formal Languages and Automata Theory +1605.00372 Data Structures and Algorithms +1605.00373 Combinatorics +1605.00374 Chemical Physics +1605.00375 Number Theory +1605.00377 Phenomenology +1605.00378 Number Theory +1605.00381 Logic in Computer Science +1605.00382 Networking and Internet Architecture +1605.00385 Theory +1605.00386 Soft Condensed Matter +1605.00390 Information Theory +1605.00392 Computer Vision and Pattern Recognition +1605.00393 Spectral Theory +1605.00395 High Energy Astrophysical Phenomena +1605.00396 Strongly Correlated Electrons +1605.00397 Functional Analysis +1605.00398 Networking and Internet Architecture +1605.00399 Fluid Dynamics +1605.00402 Symbolic Computation +1605.00404 Learning +1605.00406 Discrete Mathematics +1605.00409 Networking and Internet Architecture +1605.00410 Mathematical Software +1605.00412 Mesoscale and Nanoscale Physics +1605.00415 Probability +1605.00420 Computer Vision and Pattern Recognition +1605.00422 Symbolic Computation +1605.00423 Numerical Analysis +1605.00425 Cryptography and Security +1605.00428 Fluid Dynamics +1605.00429 Numerical Analysis +1605.00432 Differential Geometry +1605.00433 Phenomenology +1605.00439 Analysis of PDEs +1605.00442 Discrete Mathematics +1605.00443 Metric Geometry +1605.00445 Numerical Analysis +1605.00446 Cryptography and Security +1605.00449 Complex Variables +1605.00450 Combinatorics +1605.00452 Computer Vision and Pattern Recognition +1605.00453 Numerical Analysis +1605.00455 History and Overview +1605.00459 Computation and Language +1605.00460 Differential Geometry +1605.00462 Information Theory +1605.00465 Materials Science +1605.00467 Dynamical Systems +1605.00468 Earth and Planetary Astrophysics +1605.00475 Computer Vision and Pattern Recognition +1605.00476 Classical Analysis and ODEs +1605.00477 Optics +1605.00478 Materials Science +1605.00479 Optimization and Control +1605.00487 Number Theory +1605.00488 Dynamical Systems +1605.00489 Statistical Mechanics +1605.00493 Physics Education +1605.00494 Fluid Dynamics +1605.00495 Artificial Intelligence +1605.00498 Distributed, Parallel, and Cluster Computing +1605.00502 Analysis of PDEs +1605.00506 Numerical Analysis +1605.00508 Information Theory +1605.00511 Number Theory +1605.00513 Machine Learning +1605.00515 Astrophysics of Galaxies +1605.00520 Plasma Physics +1605.00526 Systems and Control +1605.00528 Combinatorics +1605.00532 Data Structures and Algorithms +1605.00533 Statistics Theory +1605.00535 Analysis of PDEs +1605.00537 Atomic and Molecular Clusters +1605.00538 Geometric Topology +1605.00540 Strongly Correlated Electrons +1605.00541 Atmospheric and Oceanic Physics +1605.00544 Analysis of PDEs +1605.00549 Mesoscale and Nanoscale Physics +1605.00552 +1605.00556 Pattern Formation and Solitons +1605.00559 Performance +1605.00566 History and Philosophy of Physics +1605.00568 Numerical Analysis +1605.00572 Computer Vision and Pattern Recognition +1605.00573 Phenomenology +1605.00574 Classical Analysis and ODEs +1605.00576 +1605.00577 Symplectic Geometry +1605.00581 Probability +1605.00587 Algebraic Geometry +1605.00588 Numerical Analysis +1605.00590 Computational Physics +1605.00592 Representation Theory +1605.00593 Fluid Dynamics +1605.00595 Theory +1605.00596 Machine Learning +1605.00598 Group Theory +1605.00604 Systems and Control +1605.00605 Logic +1605.00609 Learning +1605.00612 Experiment +1605.00613 Logic +1605.00614 Chemical Physics +1605.00615 Number Theory +1605.00621 Numerical Analysis +1605.00623 +1605.00625 Combinatorics +1605.00626 Information Theory +1605.00627 Optimization and Control +1605.00630 High Energy Astrophysical Phenomena +1605.00632 Analysis of PDEs +1605.00635 Information Theory +1605.00637 Mesoscale and Nanoscale Physics +1605.00641 Logic +quant-ph/0111149 +0705.2067 Rings and Algebras +0809.4977 Phenomenology +0902.4716 Exactly Solvable and Integrable Systems +1205.3214 Quantum Algebra +1210.0943 Combinatorics +1306.3235 Algebraic Geometry +1307.8277 Phenomenology +1308.5566 Functional Analysis +1310.1634 Statistical Finance +1310.4605 Quantum Algebra +1311.0054 Theory +1311.6588 Algebraic Geometry +1401.3992 Rings and Algebras +1402.2135 Combinatorics +1402.2242 +1402.5135 Theory +1402.6435 Algebraic Geometry +1403.0185 Logic in Computer Science +1403.6864 Quantum Algebra +1404.4209 Number Theory +1405.5554 Statistical Mechanics +1405.7964 Artificial Intelligence +1406.2274 General Mathematics +1406.3088 +1407.5278 Portfolio Management +1408.2666 +1408.2984 Combinatorics +1408.5355 Statistics Theory +1410.2482 Algebraic Topology +1410.4746 Theory +1411.6276 Social and Information Networks +1411.6973 Systems and Control +1411.7418 Numerical Analysis +1412.1592 Cosmology and Nongalactic Astrophysics +1412.7147 Theory +1501.00753 High Energy Astrophysical Phenomena +1501.01016 Experiment +1501.03061 Theory +1501.06065 Geometric Topology +1501.07698 Algebraic Topology +1502.01379 Numerical Analysis +1502.01464 Optics +1502.03434 Complex Variables +1502.03527 Chaotic Dynamics +1502.05572 +1502.07166 Biological Physics +1503.00540 Disordered Systems and Neural Networks +1503.02165 +1503.02467 Strongly Correlated Electrons +1503.03023 Fluid Dynamics +1503.05027 Experiment +1503.05864 Numerical Analysis +1503.06889 Phenomenology +1503.07696 Numerical Analysis +1503.08491 Instrumentation and Methods for Astrophysics +1504.00530 +1504.02479 Astrophysics of Galaxies +1504.02482 Astrophysics of Galaxies +1504.04524 Number Theory +1504.05534 Algebraic Geometry +1505.00877 Strongly Correlated Electrons +1505.01053 Phenomenology +1505.01125 History and Philosophy of Physics +1505.02016 Physics and Society +1505.02145 Statistical Mechanics +1505.03426 +1505.04096 Functional Analysis +1505.05345 Mesoscale and Nanoscale Physics +1505.07863 Lattice +1506.03293 Probability +1506.05716 Number Theory +1506.06931 +1506.08565 Information Theory +1506.09161 +1507.00777 Earth and Planetary Astrophysics +1507.01662 +1507.07965 Soft Condensed Matter +1508.00787 Superconductivity +1508.00865 Tissues and Organs +1508.01564 +1508.01601 +1508.02454 Information Theory +1508.03966 Optics +1508.04439 Complex Variables +1508.05212 Soft Condensed Matter +1508.06173 Systems and Control +1508.06538 Neural and Evolutionary Computing +1508.06587 Algebraic Geometry +1508.07760 Number Theory +1508.07861 Strongly Correlated Electrons +1509.00631 Soft Condensed Matter +1509.04242 Superconductivity +1509.04933 Phenomenology +1509.06514 Soft Condensed Matter +1509.06541 Classical Analysis and ODEs +1509.07568 +1509.07811 Algebraic Topology +1509.08008 +1509.08948 Solar and Stellar Astrophysics +1510.00062 Biological Physics +1510.00471 Populations and Evolution +1510.00672 Theory +1510.00992 Populations and Evolution +1510.01235 Phenomenology +1510.01467 Category Theory +1510.03752 Experiment +1510.04897 Atomic Physics +1510.05296 Populations and Evolution +1510.05914 Number Theory +1510.06534 Experiment +1510.07786 Machine Learning +1510.07802 Algebraic Topology +1510.08076 Instrumentation and Methods for Astrophysics +1510.08608 +1510.08796 Instrumentation and Methods for Astrophysics +1511.00432 Optimization and Control +1511.00681 Optimization and Control +1511.01481 Theory +1511.03168 High Energy Astrophysical Phenomena +1511.03392 Astrophysics of Galaxies +1511.04836 Genomics +1511.04871 Lattice +1511.06380 Learning +1511.06418 Learning +1511.08834 Solar and Stellar Astrophysics +1512.00554 Cosmology and Nongalactic Astrophysics +1512.01707 Materials Science +1512.02011 Learning +1512.02650 Solar and Stellar Astrophysics +1512.03023 Algebraic Topology +1512.05457 Social and Information Networks +1512.06355 Combinatorics +1601.00315 Mesoscale and Nanoscale Physics +1601.00758 Atomic Physics +1601.00877 Robotics +1601.01318 Solar and Stellar Astrophysics +1601.01676 Phenomenology +1601.02020 Solar and Stellar Astrophysics +1601.02278 Materials Science +1601.02857 Logic +1601.02937 Phenomenology +1601.02943 +1601.03145 Pattern Formation and Solitons +1601.03304 Differential Geometry +1601.03313 Computation and Language +1601.03513 Representation Theory +1601.03664 Information Theory +1601.03675 Information Theory +1601.03979 Differential Geometry +1601.04159 Chemical Physics +1601.04243 Algebraic Geometry +1601.04524 General Physics +1601.04615 Information Retrieval +1601.04634 Phenomenology +1601.04881 Algebraic Geometry +1601.04888 Computer Vision and Pattern Recognition +1601.04899 Classical Analysis and ODEs +1601.04952 Multiagent Systems +1601.04963 Earth and Planetary Astrophysics +1601.05009 Number Theory +1601.05012 Statistical Finance +1601.05092 Strongly Correlated Electrons +1601.05100 Physics and Society +1601.05105 Information Theory +1601.05106 Programming Languages +1601.05108 Materials Science +1601.05111 Optimization and Control +1601.05112 Earth and Planetary Astrophysics +1601.05115 Systems and Control +1601.05116 Computer Vision and Pattern Recognition +1601.05117 Molecular Networks +1601.05119 Algebraic Geometry +1601.05121 Instrumentation and Methods for Astrophysics +1601.05122 +1601.05124 +1601.05125 Dynamical Systems +1601.05127 Algebraic Geometry +1601.05128 Algebraic Geometry +1601.05130 Analysis of PDEs +1601.05132 Numerical Analysis +1601.05133 Algebraic Geometry +1601.05141 Computers and Society +1601.05142 Digital Libraries +1601.05144 Solar and Stellar Astrophysics +1601.05147 Complex Variables +1601.05149 Instrumentation and Detectors +1601.05152 Pattern Formation and Solitons +1601.05155 Statistics Theory +1601.05162 +1601.05163 +1601.05167 +1601.05174 +1601.05177 Probability +1601.05184 Solar and Stellar Astrophysics +1601.05187 Cryptography and Security +1601.05188 Analysis of PDEs +1601.05189 Analysis of PDEs +1601.05190 Discrete Mathematics +1601.05193 Information Theory +1601.05194 Computation and Language +1601.05197 General Topology +1601.05199 Portfolio Management +1601.05200 Pattern Formation and Solitons +1601.05201 Accelerator Physics +1601.05202 Optimization and Control +1601.05207 Accelerator Physics +1601.05210 Accelerator Physics +1601.05213 Analysis of PDEs +1601.05214 Accelerator Physics +1601.05216 Accelerator Physics +1601.05219 Analysis of PDEs +1601.05220 Rings and Algebras +1601.05221 Materials Science +1601.05222 +1601.05224 Superconductivity +1601.05225 Optics +1601.05227 Accelerator Physics +1601.05228 Logic in Computer Science +1601.05230 Accelerator Physics +1601.05232 Geophysics +1601.05235 Accelerator Physics +1601.05239 +1601.05241 Probability +1601.05247 Information Theory +1601.05256 Cosmology and Nongalactic Astrophysics +1601.05258 Accelerator Physics +1601.05259 Accelerator Physics +1601.05260 Biological Physics +1601.05264 Mesoscale and Nanoscale Physics +1601.05266 Networking and Internet Architecture +1601.05269 Superconductivity +1601.05272 +1601.05273 Emerging Technologies +1601.05276 Mesoscale and Nanoscale Physics +1601.05277 Earth and Planetary Astrophysics +1601.05279 Algebraic Geometry +1601.05286 Analysis of PDEs +1601.05287 Number Theory +1601.05289 High Energy Astrophysical Phenomena +1601.05295 Biological Physics +1601.05296 +1601.05297 Complex Variables +1601.05298 Fluid Dynamics +1601.05299 +1601.05300 Materials Science +1601.05303 Functional Analysis +1601.05305 Combinatorics +1601.05306 Pricing of Securities +1601.05308 Instrumentation and Detectors +1601.05313 Distributed, Parallel, and Cluster Computing +1601.05318 Superconductivity +1601.05320 Classical Analysis and ODEs +1601.05323 History and Overview +1601.05326 Mesoscale and Nanoscale Physics +1601.05334 Chemical Physics +1601.05339 +1601.05340 Populations and Evolution +1601.05344 General Physics +1601.05345 Rings and Algebras +1601.05346 Probability +1601.05349 Differential Geometry +1601.05355 Analysis of PDEs +1601.05356 Emerging Technologies +1601.05358 Analysis of PDEs +1601.05359 +1601.05362 Numerical Analysis +1601.05369 Mesoscale and Nanoscale Physics +1601.05370 Optimization and Control +1601.05381 +1601.05382 Analysis of PDEs +1601.05383 Algebraic Geometry +1601.05384 Distributed, Parallel, and Cluster Computing +1601.05387 Adaptation and Self-Organizing Systems +1601.05388 Populations and Evolution +1601.05393 Mesoscale and Nanoscale Physics +1601.05403 Computation and Language +1601.05404 Adaptation and Self-Organizing Systems +1601.05407 Space Physics +1601.05409 Computer Vision and Pattern Recognition +0705.1833 Algebraic Geometry +0801.1520 Theory +1009.0763 Algebraic Geometry +1112.5646 Phenomenology +1202.6542 Classical Physics +1205.3230 +1205.4818 Statistics Theory +1304.2477 Logic +1307.7189 +1307.8238 +1308.2033 Complex Variables +1310.0528 Algebraic Geometry +1310.8161 +1311.5140 Differential Geometry +1311.6835 Instrumentation and Methods for Astrophysics +1401.0315 Category Theory +1401.1790 Cell Behavior +1402.0531 +1402.1665 Dynamical Systems +1402.1823 Probability +1403.6403 Phenomenology +1403.7885 +1404.5698 Dynamical Systems +1404.7029 Probability +1405.4911 Materials Science +1405.5479 Representation Theory +1406.1066 Distributed, Parallel, and Cluster Computing +1406.2361 Category Theory +1406.5695 Probability +1407.2242 Statistical Mechanics +1407.8394 Computer Science and Game Theory +1408.0738 +1408.4352 Algebraic Geometry +1409.0475 +1409.3702 Operator Algebras +1409.3800 +1409.5349 Geometric Topology +1410.2352 +1410.6758 Methodology +1411.5154 +1412.2938 Phenomenology +1412.3262 Information Theory +1412.3392 Analysis of PDEs +1412.3872 Theory +1412.4841 Methodology +1412.5342 +1412.6835 Geometric Topology +1502.00567 Probability +1502.02120 Statistics Theory +1502.03858 Dynamical Systems +1502.06309 Machine Learning +1503.00024 Social and Information Networks +1503.04867 Computational Geometry +1503.05701 Number Theory +1503.07349 Algebraic Geometry +1504.02657 Soft Condensed Matter +1504.03312 Phenomenology +1504.04792 Computer Vision and Pattern Recognition +1504.05446 Complex Variables +1504.06243 Computer Vision and Pattern Recognition +1505.05664 Probability +1506.01944 Mesoscale and Nanoscale Physics +1506.02753 Neural and Evolutionary Computing +1506.02830 Geometric Topology +1506.03058 +1506.06706 +1507.01939 Quantum Gases +1507.02220 Category Theory +1507.03385 Differential Geometry +1507.06334 +1508.00582 +1508.00638 Materials Science +1508.00837 Social and Information Networks +1508.00906 Quantum Gases +1508.02776 Optics +1508.03904 Quantum Gases +1508.05085 +1508.05655 Instrumentation and Methods for Astrophysics +1508.06571 Dynamical Systems +1509.01623 Earth and Planetary Astrophysics +1509.01971 Differential Geometry +1509.02632 Chemical Physics +1509.04970 Representation Theory +1509.05135 Cosmology and Nongalactic Astrophysics +1509.05308 Statistical Mechanics +1509.05695 Analysis of PDEs +1509.07632 Category Theory +1509.07862 Materials Science +1510.00018 +1510.00080 Dynamical Systems +1510.00256 Computational Physics +1510.00599 Fluid Dynamics +1510.01181 Experiment +1510.03227 Formal Languages and Automata Theory +1510.04088 Biological Physics +1510.04747 Learning +1510.04823 Optimization and Control +1510.06379 Software Engineering +1510.06871 Applications +1510.07194 Phenomenology +1510.08228 Astrophysics of Galaxies +1510.08599 Classical Analysis and ODEs +1511.01316 Fluid Dynamics +1511.01419 Machine Learning +1511.01501 Strongly Correlated Electrons +1511.02920 Category Theory +1511.02921 Theory +1511.04450 Mesoscale and Nanoscale Physics +1511.04513 Phenomenology +1511.04776 Machine Learning +1511.05748 Methodology +1511.06386 Fluid Dynamics +1511.07043 Strongly Correlated Electrons +1511.07510 High Energy Astrophysical Phenomena +1511.08524 Differential Geometry +1511.08660 Algebraic Geometry +1511.09258 Differential Geometry +1512.00333 Computational Complexity +1512.01989 +1512.02628 +1512.02860 Theory +1512.03282 Metric Geometry +1512.03371 Phenomenology +1512.03757 Strongly Correlated Electrons +1512.04798 Analysis of PDEs +1512.05346 Cosmology and Nongalactic Astrophysics +1512.06019 Combinatorics +1512.06735 Computer Vision and Pattern Recognition +1512.06773 Phenomenology +1512.08440 Phenomenology +1512.08949 Learning +1512.09356 Classical Analysis and ODEs +1601.00050 Logic +1601.01044 Statistical Mechanics +1601.01144 Phenomenology +1601.01283 +1601.01334 +1601.03650 Computation and Language +1601.04399 Theory +1601.05284 Experiment +1601.05842 Statistics Theory +1601.05932 +1601.06667 Theory +1601.07201 Materials Science +1602.00518 Metric Geometry +1602.01067 Theory +1602.01373 Algebraic Topology +1602.02135 Optimization and Control +1602.03258 Learning +1602.05682 Sound +1602.07143 Numerical Analysis +1602.09069 Cryptography and Security +1603.00314 Phenomenology +1603.01101 Complex Variables +1603.02171 Strongly Correlated Electrons +1603.03737 Classical Analysis and ODEs +1603.05376 Formal Languages and Automata Theory +1603.05497 Subcellular Processes +1603.05891 Probability +1603.05895 Probability +1603.07054 Computer Vision and Pattern Recognition +1603.07153 Differential Geometry +1603.07235 Computer Vision and Pattern Recognition +1603.08016 Computation and Language +1603.08122 Materials Science +1603.08739 Mesoscale and Nanoscale Physics +1603.09534 Theory +1603.09592 +1604.00127 Representation Theory +1604.00775 +1604.01480 Complex Variables +1604.01786 +1604.01901 +1604.03462 Data Structures and Algorithms +1604.03688 Multimedia +1604.04003 Logic +1604.05006 Artificial Intelligence +1604.05403 Representation Theory +1604.05552 Logic +1604.05977 Probability +1604.06232 Computer Vision and Pattern Recognition +1604.06314 Plasma Physics +1604.06653 Materials Science +1604.06947 +1604.07057 Computer Vision and Pattern Recognition +1604.07067 Superconductivity +1604.07276 Combinatorics +1604.07322 Multimedia +1604.07486 Numerical Analysis +1604.07503 Algebraic Geometry +1604.07608 Rings and Algebras +1604.07641 Experiment +1604.07646 Number Theory +1604.07693 Probability +1604.07729 Physics and Society +1604.07822 Astrophysics of Galaxies +1604.07827 Theory +1604.07830 Theory +1604.07837 Theory +1604.07839 Analysis of PDEs +1604.07840 Analysis of PDEs +1604.07843 Theory +1604.07844 Instrumentation and Methods for Astrophysics +1604.07846 Classical Analysis and ODEs +1604.07847 Classical Analysis and ODEs +1604.07850 Computers and Society +1604.07853 Chemical Physics +1604.07856 Rings and Algebras +1604.07858 Instrumentation and Detectors +1604.07860 Theory +1604.07861 Experiment +1604.07862 Algebraic Topology +1604.07863 Information Theory +1604.07867 Combinatorics +1604.07870 Probability +1604.07872 Neurons and Cognition +1604.07874 +1604.07875 Functional Analysis +1604.07877 Combinatorics +1604.07878 Social and Information Networks +1604.07879 +1604.07880 Fluid Dynamics +1604.07881 Networking and Internet Architecture +1604.07885 Mesoscale and Nanoscale Physics +1604.07887 Soft Condensed Matter +1604.07890 Social and Information Networks +1604.07891 +1604.07892 Differential Geometry +1604.07893 Rings and Algebras +1604.07895 Combinatorics +1604.07897 Combinatorics +1604.07903 Numerical Analysis +1604.07904 Computer Vision and Pattern Recognition +1604.07905 Robotics +1604.07906 Artificial Intelligence +1604.07911 Probability +1604.07915 High Energy Astrophysical Phenomena +1604.07916 Optimization and Control +1604.07919 Materials Science +1604.07922 Analysis of PDEs +1604.07923 Differential Geometry +1604.07938 Mesoscale and Nanoscale Physics +1604.07944 Computer Vision and Pattern Recognition +1604.07946 Optics +1604.07948 Computer Vision and Pattern Recognition +1604.07954 Algebraic Geometry +1604.07959 Disordered Systems and Neural Networks +1604.07962 Dynamical Systems +1604.07963 Statistical Mechanics +1604.07965 Soft Condensed Matter +1604.07967 Representation Theory +1604.07969 Applications +1604.07970 Probability +1604.07973 Software Engineering +1604.07975 Phenomenology +1604.07978 Mesoscale and Nanoscale Physics +1604.07979 Functional Analysis +1604.07986 Commutative Algebra +1604.07990 Artificial Intelligence +1604.07991 Solar and Stellar Astrophysics +1604.07994 Numerical Analysis +1604.07996 Phenomenology +1604.08000 Number Theory +1604.08002 +1604.08004 Performance +1604.08005 Solar and Stellar Astrophysics +1604.08006 Algebraic Topology +1604.08007 Dynamical Systems +1604.08010 Computer Vision and Pattern Recognition +1604.08012 Analysis of PDEs +1604.08016 Methodology +1604.08017 +1604.08019 Solar and Stellar Astrophysics +1604.08021 Chemical Physics +1604.08026 Phenomenology +1604.08027 Theory +1604.08033 Materials Science +1604.08034 Group Theory +1604.08037 Probability +1604.08039 +1604.08040 Logic in Computer Science +1604.08044 Numerical Analysis +1604.08047 Functional Analysis +1604.08050 Optics +1604.08053 Combinatorics +1604.08055 Artificial Intelligence +1604.08058 Logic in Computer Science +1604.08065 Instrumentation and Detectors +1604.08069 Dynamical Systems +1604.08070 Mathematical Finance +1604.08071 Cryptography and Security +1604.08074 Dynamical Systems +1604.08078 Statistical Mechanics +1604.08083 Analysis of PDEs +1604.08084 Differential Geometry +1604.08085 Methodology +1604.08087 Robotics +1604.08088 Multimedia +1604.08090 Optics +1604.08091 Probability +1604.08092 Fluid Dynamics +1604.08095 Sound +1604.08101 Optics +1604.08102 Computation +1604.08104 Information Theory +1604.08106 Dynamical Systems +1604.08112 +1604.08114 Atomic Physics +1604.08115 Optics +1604.08117 Optics +1604.08120 Computation and Language +1604.08121 Computational Complexity +1604.08122 Experiment +1604.08123 Information Theory +1604.08124 Optics +1604.08125 Data Structures and Algorithms +1604.08127 Optimization and Control +1604.08128 Chemical Physics +1604.08130 Optics +1604.08132 Data Structures and Algorithms +1604.08134 Subcellular Processes +1604.08139 +1604.08143 +1604.08144 Combinatorics +1604.08146 Classical Physics +1604.08147 Data Structures and Algorithms +1604.08148 Artificial Intelligence +1604.08152 Algebraic Geometry +1604.08154 Materials Science +1604.08155 Software Engineering +1604.08161 Distributed, Parallel, and Cluster Computing +1604.08162 Materials Science +1604.08164 Computer Vision and Pattern Recognition +1604.08171 Social and Information Networks +1604.08173 Space Physics +1604.08174 Lattice +1604.08175 Classical Analysis and ODEs +1604.08178 Information Theory +1604.08181 Probability +1604.08187 +1604.08189 Optimization and Control +1604.08195 Complex Variables +1604.08200 Instrumentation and Methods for Astrophysics +1604.08201 Neural and Evolutionary Computing +math-ph/0512002 +0805.4448 Classical Analysis and ODEs +0807.4145 Number Theory +1001.4895 General Topology +1002.2419 +1002.4730 General Topology +1003.0587 Probability +1004.1404 Phenomenology +1101.2973 Data Structures and Algorithms +1104.4647 General Physics +1107.5633 Instrumentation and Methods for Astrophysics +1109.4265 Lattice +1201.1496 Probability +1201.1497 Probability +1201.1498 Probability +1203.3213 Cosmology and Nongalactic Astrophysics +1204.0918 General Topology +1205.0467 Phenomenology +1210.7495 Neurons and Cognition +1211.4300 Group Theory +1301.1340 Phenomenology +1302.0520 Metric Geometry +1303.3038 Algebraic Geometry +1303.3288 Algebraic Geometry +1304.5359 Metric Geometry +1305.4684 Instrumentation and Methods for Astrophysics +1306.2014 Probability +1307.6809 Data Structures and Algorithms +1307.8240 Information Theory +1309.4664 Analysis of PDEs +1309.5011 Optics +1310.1147 Optimization and Control +1310.2901 Combinatorics +1310.7082 Differential Geometry +1312.1243 Optimization and Control +1401.3598 Symplectic Geometry +1401.6025 Information Theory +1401.6845 +1402.1238 Phenomenology +1402.2317 Dynamical Systems +1402.4318 Statistical Mechanics +1403.3293 Plasma Physics +1403.7276 Numerical Analysis +1404.4241 +1404.7044 Algebraic Geometry +1405.1047 Astrophysics of Galaxies +1405.4490 General Finance +1405.4763 Statistical Mechanics +1405.6726 Astrophysics of Galaxies +1406.0258 Analysis of PDEs +1406.2380 Experiment +1406.3429 Algebraic Geometry +1406.6018 Other Statistics +1407.2002 Social and Information Networks +1407.2056 Chemical Physics +1407.2575 Data Structures and Algorithms +1407.3422 Machine Learning +1407.5625 High Energy Astrophysical Phenomena +1407.8198 Operator Algebras +1408.0372 Geometric Topology +1408.3345 Plasma Physics +1408.5423 Analysis of PDEs +1408.5983 Probability +1408.6354 Combinatorics +1408.6507 Probability +1409.2387 Probability +1409.2690 Analysis of PDEs +1409.5196 Other Statistics +1409.7055 Probability +1410.0894 Quantum Gases +1410.2502 Functional Analysis +1410.7595 Differential Geometry +1410.7707 Dynamical Systems +1411.4039 Theory +1411.4988 Numerical Analysis +1411.7292 Functional Analysis +1411.7335 Strongly Correlated Electrons +1411.8001 Analysis of PDEs +1412.1225 Strongly Correlated Electrons +1412.1434 High Energy Astrophysical Phenomena +1412.1810 Differential Geometry +1412.2487 Physics and Society +1412.7783 +1501.00885 Number Theory +1501.00904 +1501.01260 Representation Theory +1501.01368 Dynamical Systems +1501.01815 Optimization and Control +1501.02753 Algebraic Geometry +1501.03757 Networking and Internet Architecture +1501.07030 +1501.07778 Trading and Market Microstructure +1502.03849 Computer Science and Game Theory +1502.04169 Information Theory +1503.00262 +1503.00264 +1503.00946 Statistics Theory +1503.01678 Chaotic Dynamics +1504.01348 Cosmology and Nongalactic Astrophysics +1504.02953 Probability +1504.03455 Operator Algebras +1504.03898 Mesoscale and Nanoscale Physics +1504.04131 Numerical Analysis +1504.05350 Probability +1504.06847 Instrumentation and Methods for Astrophysics +1504.06891 General Topology +1504.07744 Theory +1505.00364 Operator Algebras +1505.01819 Strongly Correlated Electrons +1505.02504 Probability +1505.03792 +1505.03814 Cosmology and Nongalactic Astrophysics +1505.04675 Quantum Gases +1505.05576 Information Theory +1505.06633 Operator Algebras +1505.07516 Astrophysics of Galaxies +1505.08145 Algebraic Geometry +1506.02364 Atmospheric and Oceanic Physics +1506.02632 Learning +1506.03010 Astrophysics of Galaxies +1506.03064 Differential Geometry +1506.03476 Differential Geometry +1506.03804 Probability +1506.03887 Quantum Gases +1506.04331 +1506.04506 Physics and Society +1506.05157 Distributed, Parallel, and Cluster Computing +1506.05306 Classical Analysis and ODEs +1506.05907 Chemical Physics +1506.07115 Spectral Theory +1506.07761 Phenomenology +1507.00012 Astrophysics of Galaxies +1507.00070 Statistics Theory +1507.00719 Probability +1507.01615 Probability +1507.01995 Optimization and Control +1507.03424 Materials Science +1507.07985 Phenomenology +1507.08090 Analysis of PDEs +1507.08209 Numerical Analysis +1507.08617 Algebraic Geometry +1507.08675 +1508.00786 Materials Science +1508.01525 Cosmology and Nongalactic Astrophysics +1508.03385 Mesoscale and Nanoscale Physics +1508.03396 Chemical Physics +1508.03874 Theory +1508.04717 Logic +1508.04880 +1508.06910 +1508.07038 Materials Science +1508.07864 Mesoscale and Nanoscale Physics +1509.00681 Optimization and Control +1509.01019 Dynamical Systems +1509.01263 Astrophysics of Galaxies +1509.02971 Learning +1509.03087 Mesoscale and Nanoscale Physics +1509.03295 Computation and Language +1509.04292 Phenomenology +1509.04524 Digital Libraries +1509.04597 Quantum Gases +1509.06632 Theory +1509.07021 +1509.07308 Computation and Language +1509.07362 Quantum Gases +1509.07640 Analysis of PDEs +1509.07788 Geometric Topology +1509.08491 +1510.00098 Computer Vision and Pattern Recognition +1510.00273 Probability +1510.02325 Soft Condensed Matter +1510.02803 Strongly Correlated Electrons +1510.03037 Geometric Topology +1510.03716 Mesoscale and Nanoscale Physics +1510.03957 Phenomenology +1510.06357 Materials Science +1510.06646 Learning +1510.07358 Computer Science and Game Theory +1510.07771 Mesoscale and Nanoscale Physics +1510.08923 Plasma Physics +1511.00244 Theory +1511.02151 +1511.02527 Combinatorics +1511.02706 Strongly Correlated Electrons +1511.02793 Learning +1511.03071 +1511.04634 Robotics +1511.04773 Learning +1511.05042 Neural and Evolutionary Computing +1511.05440 Learning +1511.05553 Number Theory +1511.06051 Machine Learning +1511.06141 Mesoscale and Nanoscale Physics +1511.06279 Learning +1511.06410 Learning +1511.06559 Data Structures and Algorithms +1511.07543 Learning +1511.07635 Algebraic Geometry +1511.07750 Instrumentation and Detectors +1511.08169 Astrophysics of Galaxies +1511.08247 Mesoscale and Nanoscale Physics +1511.08429 Phenomenology +1511.08465 +1511.09257 Strongly Correlated Electrons +1511.09363 Numerical Analysis +1512.00140 Lattice +1512.00443 Digital Libraries +1512.00654 Materials Science +1512.00813 Superconductivity +1512.00848 Disordered Systems and Neural Networks +1512.01061 Superconductivity +1512.02018 Space Physics +1512.03164 Economics +1512.03871 Cryptography and Security +1512.05074 General Finance +1512.05266 Strongly Correlated Electrons +1512.05817 Exactly Solvable and Integrable Systems +1512.05975 Materials Science +1512.06309 General Finance +1512.06576 Analysis of PDEs +1512.06610 +1512.06827 Phenomenology +1512.06841 Mesoscale and Nanoscale Physics +1512.08067 Economics +1512.08291 Other Computer Science +1512.08952 Analysis of PDEs +1601.00227 Materials Science +1601.00457 Soft Condensed Matter +1601.00572 Combinatorics +1601.00688 Solar and Stellar Astrophysics +1601.00949 High Energy Astrophysical Phenomena +1601.01013 Mesoscale and Nanoscale Physics +1601.01214 +1601.01248 Strongly Correlated Electrons +1601.01921 Earth and Planetary Astrophysics +1601.02184 Algebraic Topology +1601.02319 Optimization and Control +1601.03013 Instrumentation and Methods for Astrophysics +1601.03231 Phenomenology +1601.03248 Combinatorics +1601.03338 Solar and Stellar Astrophysics +1601.03966 +1601.04272 Numerical Analysis +1601.04338 Mesoscale and Nanoscale Physics +1601.04787 Combinatorics +1601.05455 Solar and Stellar Astrophysics +1601.06380 Group Theory +1601.06764 Biomolecules +1601.06849 Combinatorics +1601.07965 Computer Science and Game Theory +1601.08077 Differential Geometry +1602.00148 Software Engineering +1602.00421 Commutative Algebra +1602.00521 Combinatorics +1602.00595 Chemical Physics +1602.01044 Quantum Gases +1602.01180 Chemical Physics +1602.01218 Information Theory +1602.01280 +1602.01559 Superconductivity +1602.01983 Algebraic Geometry +1602.02184 Methodology +1602.02402 Superconductivity +1602.02445 Computational Complexity +1602.02821 Analysis of PDEs +1602.03305 Networking and Internet Architecture +1602.04480 Probability +1602.05188 Mesoscale and Nanoscale Physics +1602.05224 Probability +1602.05378 Materials Science +1602.05920 Computer Vision and Pattern Recognition +1602.06007 Cryptography and Security +1602.06046 Materials Science +1602.06232 Logic +1602.06245 Computational Geometry +1602.06550 Learning +1602.06606 Statistics Theory +1602.06810 +1602.07072 Differential Geometry +1602.07128 Cryptography and Security +1602.07496 Operator Algebras +1602.07548 Physics and Society +1602.07642 Neurons and Cognition +1602.07675 Discrete Mathematics +1602.07739 Commutative Algebra +1602.07769 Logic +1602.07790 Representation Theory +1602.07796 Computational Complexity +1602.07836 Applications +1602.07842 Materials Science +1602.07913 Computational Physics +1602.08028 History and Overview +1602.08062 Methodology +1602.08255 Information Theory +1602.08274 Instrumentation and Methods for Astrophysics +1602.08296 Statistics Theory +1602.08385 Commutative Algebra +1602.08485 Functional Analysis +1602.08487 Classical Physics +1602.08488 History and Overview +1602.08507 Sound +1602.08508 Optimization and Control +1602.08510 Computer Vision and Pattern Recognition +1602.08514 General Physics +1602.08515 Data Structures and Algorithms +1602.08517 Optimization and Control +1602.08518 Earth and Planetary Astrophysics +1602.08519 Data Structures and Algorithms +1602.08520 Analysis of PDEs +1602.08521 Methodology +1602.08523 Pattern Formation and Solitons +1602.08526 Molecular Networks +1602.08527 Analysis of PDEs +1602.08528 Materials Science +1602.08529 Probability +1602.08532 Combinatorics +1602.08533 Economics +1602.08535 Geometric Topology +1602.08536 Quantum Algebra +1602.08542 Fluid Dynamics +1602.08544 Classical Analysis and ODEs +1602.08545 Complex Variables +1602.08547 Theory +1602.08548 Methodology +1602.08549 Cryptography and Security +1602.08552 Instrumentation and Detectors +1602.08554 Soft Condensed Matter +1602.08556 Neural and Evolutionary Computing +1602.08557 Neural and Evolutionary Computing +1602.08559 Materials Science +1602.08562 Metric Geometry +1602.08563 Data Structures and Algorithms +1602.08565 Formal Languages and Automata Theory +1602.08571 Artificial Intelligence +1602.08572 Pattern Formation and Solitons +1602.08573 Dynamical Systems +1602.08575 Computer Vision and Pattern Recognition +1602.08576 Physics and Society +1602.08577 Group Theory +1602.08581 Information Retrieval +1602.08585 Algebraic Topology +1602.08588 Numerical Analysis +1602.08592 Number Theory +1602.08593 Combinatorics +1602.08596 +1602.08599 Cosmology and Nongalactic Astrophysics +1602.08600 Optics +1602.08601 Optics +1602.08603 Mesoscale and Nanoscale Physics +1602.08605 Space Physics +1602.08607 Soft Condensed Matter +1602.08609 Sound +1602.08611 Group Theory +1602.08612 Analysis of PDEs +1602.08614 Information Theory +1602.08618 Optimization and Control +1602.08619 Optimization and Control +1602.08625 Commutative Algebra +1602.08627 Category Theory +1602.08629 Robotics +1602.08633 Sound +1602.08634 Chaotic Dynamics +1602.08635 Group Theory +1602.08636 Numerical Analysis +1602.08637 Dynamical Systems +1602.08639 Rings and Algebras +1602.08646 +1602.08648 Computational Complexity +1602.08650 Geometric Topology +1602.08654 Statistics Theory +1602.08655 Classical Analysis and ODEs +1602.08657 Computation and Language +1602.08659 Number Theory +1602.08660 Numerical Analysis +1602.08663 Numerical Analysis +1602.08664 Analysis of PDEs +1602.08666 Physics Education +1602.08668 Sound +1602.08669 Combinatorics +1602.08672 Dynamical Systems +1602.08675 Social and Information Networks +1602.08676 Theory +1602.08681 Statistical Mechanics +1602.08682 Plasma Physics +1602.08683 Algebraic Geometry +1602.08684 Combinatorics +1602.08685 Optics +1602.08687 Computer Science and Game Theory +1602.08696 Applications +1602.08698 Number Theory +1602.08700 Populations and Evolution +1602.08701 Analysis of PDEs +1602.08705 Combinatorics +1602.08712 Numerical Analysis +1602.08714 Information Theory +1602.08715 Computation and Language +1602.08716 Combinatorics +1602.08717 Algebraic Geometry +1602.08718 Theory +1602.08720 Theory +1602.08721 Databases +1602.08723 Group Theory +1602.08724 Plasma Physics +1602.08727 Numerical Analysis +1602.08728 Information Theory +1602.08731 Rings and Algebras +1602.08732 Analysis of PDEs +1602.08733 Theory +1602.08734 Machine Learning +1602.08736 Combinatorics +1602.08737 +1602.08741 Computation and Language +1602.08743 Symplectic Geometry +1602.08746 Mesoscale and Nanoscale Physics +1602.08747 +1602.08750 Human-Computer Interaction +1602.08757 Analysis of PDEs +1602.08760 Differential Geometry +1602.08763 Analysis of PDEs +1602.08765 Information Theory +1602.08773 Applications +1602.08774 +1602.08775 Physics Education +1602.08781 Physics Education +1602.08782 Combinatorics +1602.08784 Combinatorics +1602.08788 Analysis of PDEs +1602.08791 Databases +1602.08792 Quantum Algebra +1602.08793 Methodology +1602.08794 Numerical Analysis +1602.08800 Numerical Analysis +1602.08801 Probability +1602.08807 Methodology +1602.08808 Classical Analysis and ODEs +1602.08812 Numerical Analysis +1602.08813 Numerical Analysis +1602.08815 Numerical Analysis +1602.08817 Numerical Analysis +1602.08823 Materials Science +1602.08826 Optics +1602.08828 +1602.08829 Information Theory +1602.08830 High Energy Astrophysical Phenomena +1602.08832 Algebraic Topology +1602.08833 Optics +1602.08835 +1602.08836 Information Theory +1602.08837 Algebraic Topology +1602.08839 +1602.08844 Computation and Language +1602.08848 +1602.08849 Computation +1602.08854 Classical Analysis and ODEs +1602.08855 Computer Vision and Pattern Recognition +1602.08858 Probability +1602.08859 Number Theory +1602.08860 +1602.08862 Optics +1602.08864 Commutative Algebra +1602.08866 Algebraic Geometry +1602.08867 Quantum Algebra +1602.08869 High Energy Astrophysical Phenomena +1602.08871 +1602.08875 Probability +1602.08876 Combinatorics +1602.08881 Neurons and Cognition +1602.08883 Spectral Theory +1602.08885 Materials Science +1602.08887 Probability +1602.08888 +1602.08889 Biomolecules +1602.08891 Operator Algebras +1602.08896 +1602.08899 Space Physics +1602.08900 Probability +1602.08901 Probability +1602.08902 +1602.08903 Logic in Computer Science +1602.08908 Information Theory +1602.08910 Numerical Analysis +1602.08911 Theory +1602.08913 Other Quantitative Biology +1602.08917 +1602.08920 Materials Science +1602.08922 Number Theory +1602.08923 Theory +1602.08925 Distributed, Parallel, and Cluster Computing +1602.08929 +1602.08930 Solar and Stellar Astrophysics +1602.08931 Optimization and Control +1602.08934 Number Theory +1602.08937 Complex Variables +1602.08940 Analysis of PDEs +1602.08943 Optimization and Control +1602.08945 Materials Science +1602.08953 Dynamical Systems +1602.08954 +1602.08956 Medical Physics +1602.08961 Numerical Analysis +1602.08964 +1602.08968 Differential Geometry +1602.08970 Experiment +1602.08971 Logic in Computer Science +1602.08974 Applications +1602.08975 Information Theory +1602.08978 Social and Information Networks +1602.08979 Computers and Society +1602.08981 Formal Languages and Automata Theory +1602.08984 Algebraic Geometry +1602.08985 Physics and Society +1602.08986 Learning +1602.08989 Algebraic Geometry +1602.08998 Commutative Algebra +1602.08999 Combinatorics +1602.09000 Social and Information Networks +1602.09006 Experiment +1602.09007 +1602.09008 Experiment +1602.09012 Rings and Algebras +1602.09016 Number Theory +1602.09020 Phenomenology +1602.09021 Theory +1602.09023 General Physics +1602.09025 Dynamical Systems +1602.09029 Geophysics +1602.09030 Astrophysics of Galaxies +1602.09033 Plasma Physics +1602.09037 Data Structures and Algorithms +1602.09046 Neural and Evolutionary Computing +1602.09047 +1602.09050 Accelerator Physics +1602.09051 Rings and Algebras +1602.09052 Combinatorics +1602.09054 Molecular Networks +1602.09056 Phenomenology +1602.09067 Computers and Society +1602.09070 Adaptation and Self-Organizing Systems +1602.09071 Economics +1602.09072 +1602.09074 Soft Condensed Matter +1602.09079 Instrumentation and Methods for Astrophysics +1602.09081 Materials Science +1602.09090 Theory +1602.09092 Analysis of PDEs +1602.09094 Geophysics +1602.09100 Methodology +1602.09101 Differential Geometry +1602.09102 Digital Libraries +1602.09103 Analysis of PDEs +1602.09104 Networking and Internet Architecture +1602.09105 Fluid Dynamics +1602.09106 Number Theory +1602.09107 Multiagent Systems +1602.09110 +1602.09111 Discrete Mathematics +1602.09113 Rings and Algebras +1602.09116 Representation Theory +1602.09118 Learning +1602.09121 Astrophysics of Galaxies +1602.09123 Digital Libraries +1602.09124 Discrete Mathematics +1602.09125 Software Engineering +1602.09128 Methodology +1602.09136 Algebraic Geometry +1602.09137 Earth and Planetary Astrophysics +1602.09140 +astro-ph/9701005 +gr-qc/0501063 +math/0505302 Operator Algebras +nucl-th/0512045 +1411.7403 +1511.00961 Methodology +1511.01266 Functional Analysis +1511.01436 Social and Information Networks +1511.03819 +1511.04532 Statistical Mechanics +1511.04732 Cosmology and Nongalactic Astrophysics +1511.04833 +1511.05063 Instrumentation and Detectors +1511.05869 Emerging Technologies +1511.06793 Atomic Physics +1511.07065 +1511.07276 Materials Science +1511.07778 General Mathematics +1511.08069 Rings and Algebras +1511.08450 Analysis of PDEs +1511.08556 Probability +1512.04028 +1512.05923 Functional Analysis +1601.04584 Soft Condensed Matter +1601.06917 Rings and Algebras +1602.04780 Superconductivity +1604.08559 +0803.0191 Statistical Mechanics +0810.2397 Exactly Solvable and Integrable Systems +1106.1650 Cosmology and Nongalactic Astrophysics +1107.3821 Analysis of PDEs +1112.0976 Theory +1201.3285 Rings and Algebras +1203.3333 Complex Variables +1204.0781 Number Theory +1206.3817 Probability +1206.3856 Probability +1208.3238 Instrumentation and Detectors +1209.2578 Dynamical Systems +1212.1437 Analysis of PDEs +1212.1635 Analysis of PDEs +1212.1713 Analysis of PDEs +1304.3224 K-Theory and Homology +1305.1328 Mesoscale and Nanoscale Physics +1305.2088 Number Theory +1305.4778 Optimization and Control +1305.6579 Probability +1307.0882 Probability +1307.5994 Phenomenology +1308.4942 Information Theory +1309.1586 Probability +1310.7873 Algebraic Geometry +1311.5854 +1311.6521 Superconductivity +1312.2692 Analysis of PDEs +1312.2870 Probability +1312.2917 Analysis of PDEs +1312.7324 Dynamical Systems +1312.7426 Dynamical Systems +1401.0217 Probability +1401.0769 +1401.2626 +1401.3935 Algebraic Geometry +1401.4046 Algebraic Geometry +1402.1112 Operator Algebras +1402.2265 +1402.6021 Representation Theory +1404.4154 Theory +1404.5069 Symbolic Computation +1405.0431 Operator Algebras +1405.1643 Dynamical Systems +1405.2952 Probability +1405.4473 Algebraic Geometry +1405.4922 Analysis of PDEs +1406.7413 Logic +1407.4279 Mesoscale and Nanoscale Physics +1407.6729 Probability +1408.0533 +1408.3222 Number Theory +1408.5781 Information Theory +1408.6642 Logic +1409.8103 Probability +1410.1679 Solar and Stellar Astrophysics +1410.2537 Logic +1410.2747 Dynamical Systems +1410.8398 Algebraic Geometry +1411.4029 Dynamical Systems +1411.6394 +1412.0050 +1412.5059 Statistics Theory +1412.8239 Analysis of PDEs +1412.8267 Analysis of PDEs +1501.02974 Mesoscale and Nanoscale Physics +1501.03968 +1501.04031 Algebraic Geometry +1501.05823 Instrumentation and Methods for Astrophysics +1501.07044 +1501.07696 Phenomenology +1502.02249 +1502.02938 Mesoscale and Nanoscale Physics +1502.03843 Astrophysics of Galaxies +1502.04526 Symplectic Geometry +1503.00277 Chemical Physics +1503.00663 Operator Algebras +1503.01395 Mesoscale and Nanoscale Physics +1503.01753 Astrophysics of Galaxies +1503.03035 Dynamical Systems +1503.03147 General Topology +1503.03291 Discrete Mathematics +1503.03310 Solar and Stellar Astrophysics +1503.06073 Combinatorics +1503.06519 Phenomenology +1503.06980 Systems and Control +1504.00595 Statistics Theory +1504.02080 Cosmology and Nongalactic Astrophysics +1504.04620 Astrophysics of Galaxies +1504.06885 Cosmology and Nongalactic Astrophysics +1504.07105 Astrophysics of Galaxies +1504.07207 Algebraic Geometry +1504.07262 Theory +1504.07895 Theory +1504.08223 Functional Analysis +1505.01014 Number Theory +1505.02223 +1505.04508 Astrophysics of Galaxies +1505.05131 Popular Physics +1505.05256 Mathematical Finance +1505.05349 Strongly Correlated Electrons +1505.06202 Astrophysics of Galaxies +1505.06559 Cosmology and Nongalactic Astrophysics +1505.07062 Other Computer Science +1506.00378 Optics +1506.00710 Representation Theory +1506.00861 Classical Analysis and ODEs +1506.01420 Earth and Planetary Astrophysics +1506.02294 Cryptography and Security +1506.02505 +1506.02567 Lattice +1506.03407 Information Theory +1506.04172 High Energy Astrophysical Phenomena +1506.04504 Analysis of PDEs +1506.05374 Information Theory +1506.05471 Astrophysics of Galaxies +1506.05836 Commutative Algebra +1506.07119 +1506.07303 Dynamical Systems +1506.07525 Astrophysics of Galaxies +1506.09016 Learning +1507.00223 Statistical Mechanics +1507.00622 Algebraic Geometry +1507.01464 Cosmology and Nongalactic Astrophysics +1507.02255 Cosmology and Nongalactic Astrophysics +1507.02960 Dynamical Systems +1507.03296 Operator Algebras +1507.03355 Astrophysics of Galaxies +1507.04081 High Energy Astrophysical Phenomena +1507.04752 Astrophysics of Galaxies +1507.05852 High Energy Astrophysical Phenomena +1507.06951 Fluid Dynamics +1507.07467 Materials Science +1507.07640 +1507.07938 Astrophysics of Galaxies +1507.08289 Cosmology and Nongalactic Astrophysics +1507.08295 Phenomenology +1507.08551 Earth and Planetary Astrophysics +1507.08893 Number Theory +1508.00421 Theory +1508.00510 Computational Geometry +1508.01180 High Energy Astrophysical Phenomena +1508.02302 Astrophysics of Galaxies +1508.02399 High Energy Astrophysical Phenomena +1508.02972 Differential Geometry +1508.04087 Artificial Intelligence +1508.04395 Computation and Language +1508.04451 Physics and Society +1508.04468 Optimization and Control +1508.05058 +1508.05092 +1508.06547 +1508.06753 Soft Condensed Matter +1508.07000 High Energy Astrophysical Phenomena +1508.07027 Earth and Planetary Astrophysics +1508.07108 High Energy Astrophysical Phenomena +1508.07398 Cosmology and Nongalactic Astrophysics +1508.07911 High Energy Astrophysical Phenomena +1508.07939 High Energy Astrophysical Phenomena +1509.00033 Theory +1509.00812 Phenomenology +1509.01621 +1509.01726 Physics Education +1509.02191 Cosmology and Nongalactic Astrophysics +1509.03293 Physics Education +1509.03793 Astrophysics of Galaxies +1509.03928 Astrophysics of Galaxies +1509.04714 Cosmology and Nongalactic Astrophysics +1509.04899 Solar and Stellar Astrophysics +1509.05451 Astrophysics of Galaxies +1509.05532 Theory +1509.05833 High Energy Astrophysical Phenomena +1509.05864 Astrophysics of Galaxies +1509.06436 Phenomenology +1509.06438 Instrumentation and Methods for Astrophysics +1509.06546 Strongly Correlated Electrons +1509.06824 Learning +1509.06975 Solar and Stellar Astrophysics +1509.07130 Astrophysics of Galaxies +1509.07156 High Energy Astrophysical Phenomena +1509.08945 High Energy Astrophysical Phenomena +1509.09265 Classical Analysis and ODEs +1510.00141 Theory +1510.01061 +1510.01226 High Energy Astrophysical Phenomena +1510.01326 Astrophysics of Galaxies +1510.02201 Phenomenology +1510.02303 Astrophysics of Galaxies +1510.03069 +1510.03147 +1510.03318 Optimization and Control +1510.03440 Astrophysics of Galaxies +1510.03594 Astrophysics of Galaxies +1510.03638 Other Computer Science +1510.03696 +1510.03699 +1510.03703 +1510.03849 Earth and Planetary Astrophysics +1510.03870 Astrophysics of Galaxies +1510.03997 Earth and Planetary Astrophysics +1510.04297 Earth and Planetary Astrophysics +1510.04465 Astrophysics of Galaxies +1510.04471 Functional Analysis +1510.04607 Combinatorics +1510.04685 Phenomenology +1510.04754 +1510.04992 Theory +1510.06083 Learning +1510.06088 Solar and Stellar Astrophysics +1510.06605 Fluid Dynamics +1510.06763 High Energy Astrophysical Phenomena +1510.07083 Astrophysics of Galaxies +1510.07233 +1510.07286 Optics +1510.07425 Astrophysics of Galaxies +1510.07582 Earth and Planetary Astrophysics +1510.07746 Phenomenology +1510.07822 Phenomenology +1510.07869 Earth and Planetary Astrophysics +1510.08387 High Energy Astrophysical Phenomena +1510.08479 Differential Geometry +1510.08485 Cryptography and Security +1510.08489 Differential Geometry +1510.08677 Solar and Stellar Astrophysics +1510.08851 High Energy Astrophysical Phenomena +1510.08860 High Energy Astrophysical Phenomena +1510.09061 Astrophysics of Galaxies +1511.00005 Astrophysics of Galaxies +1511.00022 Phenomenology +1511.00403 Theory +1511.00436 Astrophysics of Galaxies +1511.00566 Earth and Planetary Astrophysics +1511.00588 +1511.00704 Cosmology and Nongalactic Astrophysics +1511.00993 Solar and Stellar Astrophysics +1511.01094 Astrophysics of Galaxies +1511.01140 Combinatorics +1511.01253 Mesoscale and Nanoscale Physics +1511.01490 Astrophysics of Galaxies +1511.01613 Astrophysics of Galaxies +1511.01648 Astrophysics of Galaxies +1511.01912 Earth and Planetary Astrophysics +1511.02363 Instrumentation and Methods for Astrophysics +1511.02983 Adaptation and Self-Organizing Systems +1511.03090 High Energy Astrophysical Phenomena +1511.03199 Instrumentation and Methods for Astrophysics +1511.03224 Solar and Stellar Astrophysics +1511.03272 Astrophysics of Galaxies +1511.03740 Solar and Stellar Astrophysics +1511.04276 Quantum Gases +1511.04816 +1511.04960 Computer Vision and Pattern Recognition +1511.04963 Earth and Planetary Astrophysics +1511.05158 Cosmology and Nongalactic Astrophysics +1511.05658 Solar and Stellar Astrophysics +1511.05915 Theory +1511.06105 Superconductivity +1511.06296 Astrophysics of Galaxies +1511.06587 Functional Analysis +1511.07199 Earth and Planetary Astrophysics +1511.07385 Earth and Planetary Astrophysics +1511.07659 Earth and Planetary Astrophysics +1511.07891 +1511.08228 Learning +1511.08293 Earth and Planetary Astrophysics +1511.09021 Social and Information Networks +1511.09132 Astrophysics of Galaxies +1511.09281 Instrumentation and Methods for Astrophysics +1512.00052 Solar and Stellar Astrophysics +1512.00159 Instrumentation and Methods for Astrophysics +1512.00193 High Energy Astrophysical Phenomena +1512.00729 High Energy Astrophysical Phenomena +1512.01523 Solar and Stellar Astrophysics +1512.01819 Theory +1512.01851 Astrophysics of Galaxies +1512.01879 Phenomenology +1512.01920 Astrophysics of Galaxies +1512.02438 Astrophysics of Galaxies +1512.02486 Cosmology and Nongalactic Astrophysics +1512.02586 Experiment +1512.02751 Phenomenology +1512.02805 High Energy Astrophysical Phenomena +1512.02889 High Energy Astrophysical Phenomena +1512.03054 Astrophysics of Galaxies +1512.03430 Astrophysics of Galaxies +1512.03491 Analysis of PDEs +1512.03630 High Energy Astrophysical Phenomena +1512.04071 Theory +1512.04129 Solar and Stellar Astrophysics +1512.04192 High Energy Astrophysical Phenomena +1512.04756 Soft Condensed Matter +1512.04948 Astrophysics of Galaxies +1512.05262 Quantum Gases +1512.05552 Astrophysics of Galaxies +1512.05701 Cosmology and Nongalactic Astrophysics +1512.05769 High Energy Astrophysical Phenomena +1512.06099 High Energy Astrophysical Phenomena +1512.06153 Astrophysics of Galaxies +1512.06418 Theory +1512.06668 Phenomenology +1512.06826 Theory +1512.06867 Instrumentation and Detectors +1512.07707 Astrophysics of Galaxies +1512.07780 Logic in Computer Science +1512.08830 Solar and Stellar Astrophysics +1601.00116 Astrophysics of Galaxies +1601.00623 Astrophysics of Galaxies +1601.00905 Earth and Planetary Astrophysics +1601.00941 Astrophysics of Galaxies +1601.01117 Cosmology and Nongalactic Astrophysics +1601.01162 Mesoscale and Nanoscale Physics +1601.01601 Astrophysics of Galaxies +1601.01631 Astrophysics of Galaxies +1601.01692 High Energy Astrophysical Phenomena +1601.01731 Solar and Stellar Astrophysics +1601.01960 Theory +1601.01971 Astrophysics of Galaxies +1601.02054 Earth and Planetary Astrophysics +1601.02103 Earth and Planetary Astrophysics +1601.02104 Cosmology and Nongalactic Astrophysics +1601.02385 High Energy Astrophysical Phenomena +1601.02427 Astrophysics of Galaxies +1601.02450 Solar and Stellar Astrophysics +1601.02587 Earth and Planetary Astrophysics +1601.02891 High Energy Astrophysical Phenomena +1601.02926 Solar and Stellar Astrophysics +1601.03047 Astrophysics of Galaxies +1601.03057 Astrophysics of Galaxies +1601.03104 Instrumentation and Methods for Astrophysics +1601.03165 Astrophysics of Galaxies +1601.03261 High Energy Astrophysical Phenomena +1601.03405 Solar and Stellar Astrophysics +1601.03406 Astrophysics of Galaxies +1601.03507 Solar and Stellar Astrophysics +1601.03850 Astrophysics of Galaxies +1601.04070 Solar and Stellar Astrophysics +1601.04155 Computer Vision and Pattern Recognition +1601.04318 Astrophysics of Galaxies +1601.04356 Astrophysics of Galaxies +1601.04417 Earth and Planetary Astrophysics +1601.04443 Solar and Stellar Astrophysics +1601.04488 Astrophysics of Galaxies +1601.04552 Superconductivity +1601.04562 Earth and Planetary Astrophysics +1601.04715 Astrophysics of Galaxies +1601.04729 Solar and Stellar Astrophysics +1601.04947 Cosmology and Nongalactic Astrophysics +1601.05028 Instrumentation and Methods for Astrophysics +1601.05151 Astrophysics of Galaxies +1601.05312 Solar and Stellar Astrophysics +1601.05343 High Energy Astrophysical Phenomena +1601.05465 Earth and Planetary Astrophysics +1601.05503 Astrophysics of Galaxies +1601.05508 Solar and Stellar Astrophysics +1601.05553 Earth and Planetary Astrophysics +1601.05620 Astrophysics of Galaxies +1601.05651 Earth and Planetary Astrophysics +1601.05652 +1601.05800 Astrophysics of Galaxies +1601.05806 High Energy Astrophysical Phenomena +1601.05810 High Energy Astrophysical Phenomena +1601.05857 Instrumentation and Methods for Astrophysics +1601.05878 Astrophysics of Galaxies +1601.05913 Solar and Stellar Astrophysics +1601.06029 High Energy Astrophysical Phenomena +1601.06168 Earth and Planetary Astrophysics +1601.06177 Instrumentation and Methods for Astrophysics +1601.06232 Phenomenology +1601.06240 Solar and Stellar Astrophysics +1601.06783 Astrophysics of Galaxies +1601.06835 Solar and Stellar Astrophysics +1601.07465 Solar and Stellar Astrophysics +1601.07495 Earth and Planetary Astrophysics +1601.07571 Theory +1601.07639 High Energy Astrophysical Phenomena +1601.07906 Astrophysics of Galaxies +1601.08083 Solar and Stellar Astrophysics +1602.00007 Astrophysics of Galaxies +1602.00038 Solar and Stellar Astrophysics +1602.00142 Solar and Stellar Astrophysics +1602.00319 Instrumentation and Methods for Astrophysics +1602.00527 Astrophysics of Galaxies +1602.00541 Astrophysics of Galaxies +1602.00701 Astrophysics of Galaxies +1602.00844 Information Theory +1602.01575 Solar and Stellar Astrophysics +1602.01688 Solar and Stellar Astrophysics +1602.01856 Astrophysics of Galaxies +1602.01935 Solar and Stellar Astrophysics +1602.02090 Solar and Stellar Astrophysics +1602.02781 Earth and Planetary Astrophysics +1602.02890 Earth and Planetary Astrophysics +1602.03135 High Energy Astrophysical Phenomena +1602.03188 Solar and Stellar Astrophysics +1602.03306 Solar and Stellar Astrophysics +1602.03373 Solar and Stellar Astrophysics +1602.03403 Astrophysics of Galaxies +1602.03570 Computer Vision and Pattern Recognition +1602.03680 Solar and Stellar Astrophysics +1602.04002 Astrophysics of Galaxies +1602.04069 High Energy Astrophysical Phenomena +1602.04082 +1602.04237 Solar and Stellar Astrophysics +1602.04303 Earth and Planetary Astrophysics +1602.04476 +1602.04735 High Energy Astrophysical Phenomena +1602.04898 Solar and Stellar Astrophysics +1602.04911 Theory +1602.05013 High Energy Astrophysical Phenomena +1602.05176 Earth and Planetary Astrophysics +1602.05474 Physics and Society +1602.05594 +1602.05706 +1602.05903 Astrophysics of Galaxies +1602.05967 Astrophysics of Galaxies +1602.06310 Astrophysics of Galaxies +1602.06370 Solar and Stellar Astrophysics +1602.06493 Solar and Stellar Astrophysics +1602.07341 Solar and Stellar Astrophysics +1602.07380 Earth and Planetary Astrophysics +1602.07457 Earth and Planetary Astrophysics +1602.07470 Solar and Stellar Astrophysics +1602.07544 High Energy Astrophysical Phenomena +1602.07619 Astrophysics of Galaxies +1602.07700 Astrophysics of Galaxies +1602.07748 Phenomenology +1602.07849 Solar and Stellar Astrophysics +1602.07874 Solar and Stellar Astrophysics +1602.07920 Astrophysics of Galaxies +1602.08037 Instrumentation and Methods for Astrophysics +1602.08098 High Energy Astrophysical Phenomena +1602.08498 Cosmology and Nongalactic Astrophysics +1602.08560 Materials Science +1602.08670 Astrophysics of Galaxies +1602.08703 Astrophysics of Galaxies +1602.08708 Solar and Stellar Astrophysics +1602.09055 Earth and Planetary Astrophysics +1602.09080 Instrumentation and Methods for Astrophysics +1603.00025 Earth and Planetary Astrophysics +1603.00078 Astrophysics of Galaxies +1603.00110 Computer Vision and Pattern Recognition +1603.00134 Astrophysics of Galaxies +1603.00174 Earth and Planetary Astrophysics +1603.00238 Exactly Solvable and Integrable Systems +1603.00305 High Energy Astrophysical Phenomena +1603.00309 High Energy Astrophysical Phenomena +1603.00691 Group Theory +1603.00773 Optimization and Control +1603.01185 Biomolecules +1603.01266 Solar and Stellar Astrophysics +1603.01460 Statistical Mechanics +1603.01473 Analysis of PDEs +1603.01629 Solar and Stellar Astrophysics +1603.01649 Statistics Theory +1603.01661 Software Engineering +1603.01665 Dynamical Systems +1603.01676 Probability +1603.01684 Computer Vision and Pattern Recognition +1603.01712 High Energy Astrophysical Phenomena +1603.01778 Logic +1603.01795 Statistics Theory +1603.01797 +1603.01804 Physics and Society +1603.01822 Optimization and Control +1603.01853 +1603.01978 Differential Geometry +1603.02011 Discrete Mathematics +1603.02073 Instrumentation and Detectors +1603.02473 Number Theory +1603.02564 Systems and Control +1603.02669 +1603.02674 Mesoscale and Nanoscale Physics +1603.02691 Solar and Stellar Astrophysics +1603.02715 Mesoscale and Nanoscale Physics +1603.03100 Differential Geometry +1603.03206 Mesoscale and Nanoscale Physics +1603.03392 High Energy Astrophysical Phenomena +1603.03403 Functional Analysis +1603.03770 Representation Theory +1603.03796 Tissues and Organs +1603.03878 Solar and Stellar Astrophysics +1603.03916 Systems and Control +1603.04019 Optimization and Control +1603.04132 Computer Vision and Pattern Recognition +1603.04210 Computational Geometry +1603.04247 Operator Algebras +1603.04350 Learning +1603.04432 Atomic Physics +1603.04443 Astrophysics of Galaxies +1603.04444 Theory +1603.04447 Social and Information Networks +1603.04450 Strongly Correlated Electrons +1603.04451 Data Structures and Algorithms +1603.04452 Analysis of PDEs +1603.04456 Numerical Analysis +1603.04459 Number Theory +1603.04460 Optimization and Control +1603.04462 Combinatorics +1603.04466 Social and Information Networks +1603.04472 Classical Analysis and ODEs +1603.04480 Algebraic Geometry +1603.04481 Metric Geometry +1603.04482 Information Retrieval +1603.04483 Mathematical Software +1603.04484 +1603.04489 Number Theory +1603.04494 Analysis of PDEs +1603.04497 Computers and Society +1603.04498 Cosmology and Nongalactic Astrophysics +1603.04500 Statistics Theory +1603.04502 Analysis of PDEs +1603.04504 Theory +1603.04506 Learning +1603.04507 Instrumentation and Methods for Astrophysics +1603.04508 Materials Science +1603.04510 Systems and Control +1603.04513 Computation and Language +1603.04514 Phenomenology +1603.04515 Optics +1603.04517 Combinatorics +1603.04518 Populations and Evolution +1603.04519 Optimization and Control +1603.04520 Geometric Topology +1603.04521 Instrumentation and Detectors +1603.04522 Information Retrieval +1603.04524 +1603.04526 Theory +1603.04527 Operator Algebras +1603.04528 Number Theory +1603.04529 Instrumentation and Detectors +1603.04530 Computer Vision and Pattern Recognition +1603.04536 Earth and Planetary Astrophysics +1603.04539 Classical Analysis and ODEs +1603.04541 Formal Languages and Automata Theory +1603.04542 Statistics Theory +1603.04543 +1603.04546 Mesoscale and Nanoscale Physics +1603.04547 Optimization and Control +1603.04549 Learning +1603.04550 Computer Vision and Pattern Recognition +1603.04553 Computation and Language +1603.04558 Number Theory +1603.04560 Dynamical Systems +1603.04561 Number Theory +1603.04562 Optimization and Control +1603.04563 Number Theory +1603.04564 Information Theory +1603.04565 Methodology +1603.04569 Computational Complexity +1603.04570 Numerical Analysis +1603.04572 Machine Learning +1603.04576 +1603.04578 Classical Analysis and ODEs +1603.04580 Earth and Planetary Astrophysics +1603.04583 +1603.04584 Software Engineering +1603.04585 Phenomenology +1603.04586 Artificial Intelligence +1603.04588 Computer Vision and Pattern Recognition +1603.04590 Materials Science +1603.04591 Information Theory +1603.04594 Quantum Algebra +1603.04596 Materials Science +1603.04597 Data Structures and Algorithms +1603.04599 Representation Theory +1603.04606 Computational Complexity +1603.04609 Materials Science +1603.04611 Probability +1603.04614 Computer Vision and Pattern Recognition +1603.04620 Human-Computer Interaction +1603.04621 Combinatorics +1603.04623 +1603.04625 Strongly Correlated Electrons +1603.04627 Hardware Architecture +1603.04628 Fluid Dynamics +1603.04630 +1603.04632 Discrete Mathematics +1603.04643 Social and Information Networks +1603.04649 Analysis of PDEs +1603.04650 Quantum Algebra +1603.04653 Numerical Analysis +1603.04654 Combinatorics +1603.04657 Classical Analysis and ODEs +1603.04658 Classical Analysis and ODEs +1603.04663 Experiment +1603.04665 Lattice +1603.04666 Materials Science +1603.04667 Systems and Control +1603.04669 Materials Science +1603.04670 Probability +1603.04678 Operator Algebras +1603.04680 Analysis of PDEs +1603.04681 Algebraic Topology +1603.04683 Optimization and Control +1603.04685 Number Theory +1603.04687 Neurons and Cognition +1603.04691 Number Theory +1603.04693 Number Theory +1603.04695 General Topology +1603.04703 +1603.04706 Combinatorics +1603.04712 Logic +1603.04713 Computer Vision and Pattern Recognition +1603.04715 Analysis of PDEs +1603.04719 Strongly Correlated Electrons +1603.04721 Quantitative Methods +1603.04724 Combinatorics +1603.04727 Plasma Physics +1603.04734 Probability +1603.04735 Probability +1603.04738 Computers and Society +1603.04739 Systems and Control +1603.04740 Geometric Topology +1603.04742 Solar and Stellar Astrophysics +1603.04743 Probability +1603.04745 Numerical Analysis +1603.04747 Computation and Language +1603.04750 Fluid Dynamics +1603.04754 Group Theory +1603.04756 Optics +1603.04758 Materials Science +1603.04759 Metric Geometry +1603.04760 Astrophysics of Galaxies +1603.04765 Mesoscale and Nanoscale Physics +1603.04767 Computation and Language +1603.04774 +1603.04785 Optimization and Control +1603.04786 Analysis of PDEs +1603.04788 Discrete Mathematics +1603.04791 Optics +1603.04792 Databases +1603.04793 Theory +1603.04797 +1603.04798 Data Structures and Algorithms +1603.04807 Quantum Gases +1603.04810 Physics and Society +1603.04811 Algebraic Topology +1603.04814 Physics and Society +1603.04822 Information Theory +1603.04823 Combinatorics +1603.04825 High Energy Astrophysical Phenomena +1603.04831 Number Theory +1603.04832 Number Theory +1603.04833 Learning +1603.04835 Applications +1603.04836 Combinatorics +1603.04839 Instrumentation and Methods for Astrophysics +1603.04843 Statistics Theory +0801.4040 Probability +0806.3026 General Physics +0811.2196 +0902.1601 +0902.4700 Representation Theory +0908.1489 Representation Theory +1003.3416 Representation Theory +1005.1472 Differential Geometry +1011.6468 Representation Theory +1104.3135 Theory +1105.5590 Solar and Stellar Astrophysics +1108.2435 Materials Science +1204.2125 +1204.3768 Analysis of PDEs +1205.2996 Information Theory +1206.1639 Geometric Topology +1206.4067 Statistical Mechanics +1210.6247 Numerical Analysis +1212.1417 General Physics +1212.6814 Algebraic Geometry +1301.5126 Analysis of PDEs +1304.4403 Theory +1305.0164 Commutative Algebra +1305.1497 +1305.2977 Dynamical Systems +1306.0639 Theory +1306.1759 Geometric Topology +1306.4338 Theory +1307.1818 Representation Theory +1307.4814 Probability +1307.7985 Number Theory +1308.2014 Superconductivity +1308.6611 Representation Theory +1309.1738 Analysis of PDEs +1309.6472 Metric Geometry +1310.3256 Theory +1311.0096 Methodology +1311.3280 Cosmology and Nongalactic Astrophysics +1311.6531 Dynamical Systems +1312.1661 +1312.3217 Experiment +1312.3904 Computational Geometry +1312.4675 Methodology +1402.4539 Methodology +1402.6405 Representation Theory +1403.3195 Differential Geometry +1403.3895 Rings and Algebras +1403.3963 Spectral Theory +1403.5311 Classical Analysis and ODEs +1403.7482 +1404.1901 Commutative Algebra +1404.3773 Computational Physics +1405.0521 Information Theory +1405.1386 Analysis of PDEs +1405.3975 Strongly Correlated Electrons +1405.4579 Geometric Topology +1405.5220 Materials Science +1405.7368 Combinatorics +1406.0741 Exactly Solvable and Integrable Systems +1406.1968 +1406.2326 Materials Science +1406.2558 Applications +1406.3721 Rings and Algebras +1406.6299 Commutative Algebra +1406.6657 Functional Analysis +1407.0789 Representation Theory +1407.1026 +1407.3584 Theory +1407.4344 Statistical Mechanics +1407.4625 Representation Theory +1408.2194 Adaptation and Self-Organizing Systems +1408.4982 +1408.5837 Group Theory +1409.1741 Exactly Solvable and Integrable Systems +1409.4188 Classical Analysis and ODEs +1409.6284 Analysis of PDEs +1409.6465 Differential Geometry +1410.3858 Classical Analysis and ODEs +1410.3866 Classical Analysis and ODEs +1410.4018 Geometric Topology +1410.4619 Statistical Mechanics +1410.5338 Analysis of PDEs +1411.0281 Information Theory +1411.0492 Differential Geometry +1411.4206 Algebraic Geometry +1411.6610 Solar and Stellar Astrophysics +1411.6663 Combinatorics +1411.7415 Physics and Society +1412.0812 Adaptation and Self-Organizing Systems +1412.1105 Phenomenology +1412.3793 Strongly Correlated Electrons +1412.4098 Machine Learning +1412.7025 Combinatorics +1412.7998 Logic +1412.8764 Probability +1501.00343 Discrete Mathematics +1501.00502 Representation Theory +1501.01478 +1501.03397 Statistical Mechanics +1501.03877 Materials Science +1501.04265 Computer Science and Game Theory +1501.04453 Superconductivity +1501.04525 Differential Geometry +1501.04901 Neurons and Cognition +1501.05733 Analysis of PDEs +1502.00020 +1502.01380 Neural and Evolutionary Computing +1502.04304 Superconductivity +1502.05803 Computer Vision and Pattern Recognition +1502.07516 Differential Geometry +1503.03182 Theory +1503.05999 Dynamical Systems +1503.06577 Mesoscale and Nanoscale Physics +1503.07174 Strongly Correlated Electrons +1503.09181 Rings and Algebras +1504.00255 Differential Geometry +1504.01779 Superconductivity +1504.02774 Group Theory +1504.04520 Probability +1504.06107 Probability +1504.07879 Probability +1505.01223 Superconductivity +1505.01522 Geometric Topology +1505.01686 +1505.05308 Numerical Analysis +1505.05983 Quantitative Methods +1505.06236 Computer Vision and Pattern Recognition +1505.06665 Classical Analysis and ODEs +1505.06889 Numerical Analysis +1505.07014 +1505.07821 Populations and Evolution +1506.00833 Number Theory +1506.02073 +1506.04344 Statistics Theory +1506.04557 Learning +1506.04735 Functional Analysis +1506.06030 Mesoscale and Nanoscale Physics +1506.06602 Disordered Systems and Neural Networks +1506.07285 Computation and Language +1506.07767 Differential Geometry +1506.07794 Cosmology and Nongalactic Astrophysics +1506.07809 +1506.08140 +1507.00545 Commutative Algebra +1507.01629 +1507.02179 Materials Science +1507.02256 Cosmology and Nongalactic Astrophysics +1507.02643 Algebraic Geometry +1507.02818 Quantum Gases +1507.04434 Solar and Stellar Astrophysics +1507.05629 Astrophysics of Galaxies +1507.05930 Experiment +1507.06013 Probability +1507.06056 Computers and Society +1507.08298 Statistics Theory +1507.08766 Statistical Mechanics +1508.00570 +1508.01843 Social and Information Networks +1508.02070 Fluid Dynamics +1508.02720 +1508.03528 Physics and Society +1508.03557 High Energy Astrophysical Phenomena +1508.03606 Probability +1508.04180 Distributed, Parallel, and Cluster Computing +1508.05943 Mesoscale and Nanoscale Physics +1508.06323 Astrophysics of Galaxies +1508.07395 Soft Condensed Matter +1508.07427 Classical Analysis and ODEs +1508.07630 Machine Learning +1508.07658 Quantum Algebra +1508.07886 Strongly Correlated Electrons +1509.01708 Statistics Theory +1509.01731 Analysis of PDEs +1509.01968 Classical Analysis and ODEs +1509.02551 Combinatorics +1509.03611 Computation and Language +1509.03689 Biological Physics +1509.03915 Computer Science and Game Theory +1509.04054 Physics and Society +1509.04108 Phenomenology +1509.05197 Distributed, Parallel, and Cluster Computing +1509.06225 Dynamical Systems +1509.06503 Programming Languages +1509.07095 Number Theory +1509.07970 +1509.08708 Combinatorics +1510.00278 Mesoscale and Nanoscale Physics +1510.00955 Symplectic Geometry +1510.02362 Dynamical Systems +1510.03426 Astrophysics of Galaxies +1510.03557 Numerical Analysis +1510.03608 Computer Vision and Pattern Recognition +1510.05467 Information Theory +1510.06786 Computation and Language +1510.06904 Space Physics +1510.07485 Atmospheric and Oceanic Physics +1510.07923 Probability +1510.08082 Data Analysis, Statistics and Probability +1510.08456 Phenomenology +1510.08580 Optimization and Control +1510.08811 +1510.08856 Strongly Correlated Electrons +1511.00135 Earth and Planetary Astrophysics +1511.00278 Mesoscale and Nanoscale Physics +1511.01122 Phenomenology +1511.02170 Astrophysics of Galaxies +1511.02216 Materials Science +1511.02227 Mesoscale and Nanoscale Physics +1511.02258 Learning +1511.02405 Analysis of PDEs +1511.02591 Data Structures and Algorithms +1511.03006 Cosmology and Nongalactic Astrophysics +1511.03420 Phenomenology +1511.03445 +1511.04018 +1511.06024 Phenomenology +1511.06341 Computation and Language +1511.06843 Analysis of PDEs +1511.08044 Mesoscale and Nanoscale Physics +1511.08732 +1512.00123 +1512.00908 Dynamical Systems +1512.01223 Probability +1512.01604 Computational Physics +1512.01766 Phenomenology +1512.02512 Information Theory +1512.04366 Mesoscale and Nanoscale Physics +1512.04603 Geometric Topology +1512.05673 Strongly Correlated Electrons +1512.05766 Strongly Correlated Electrons +1512.05787 Phenomenology +1512.06720 Dynamical Systems +1512.07512 Materials Science +1512.07593 Operator Algebras +1512.08426 +1512.08656 +1512.09289 Plasma Physics +1601.00414 Computer Vision and Pattern Recognition +1601.00432 Functional Analysis +1601.00558 Combinatorics +1601.01033 Group Theory +1601.01255 +1601.01404 Astrophysics of Galaxies +1601.03277 +1601.04229 Phenomenology +1601.04355 +1601.04362 Probability +1601.04493 Number Theory +1601.04774 +1601.04991 General Physics +1601.05283 Social and Information Networks +1601.05615 Commutative Algebra +1601.05741 Plasma Physics +1601.06331 Networking and Internet Architecture +1601.06333 Networking and Internet Architecture +1601.06655 Representation Theory +1601.06770 High Energy Astrophysical Phenomena +1601.07044 Probability +1601.07069 Strongly Correlated Electrons +1602.00138 Numerical Analysis +1602.00323 Fluid Dynamics +1602.00709 +1602.01151 Commutative Algebra +1602.01519 +1602.02222 Phenomenology +1602.02570 Theory +1602.02715 Programming Languages +1602.03114 Differential Geometry +1602.03212 +1602.03665 Solar and Stellar Astrophysics +1602.03746 Social and Information Networks +1602.03833 Strongly Correlated Electrons +1602.03970 Theory +1602.04042 Combinatorics +1602.04212 +1602.04967 Emerging Technologies +1602.05295 Algebraic Topology +1602.05610 Classical Analysis and ODEs +1602.06514 Solar and Stellar Astrophysics +1602.06824 Materials Science +1602.07170 Molecular Networks +1602.07198 +1602.07231 Probability +1602.07422 Data Structures and Algorithms +1602.07432 Combinatorics +1602.08516 General Physics +1602.08907 Combinatorics +1602.08950 Strongly Correlated Electrons +1602.09096 Mesoscale and Nanoscale Physics +1602.09097 Number Theory +1603.00048 Instrumentation and Methods for Astrophysics +1603.00350 Theory +1603.00671 Information Theory +1603.01482 General Physics +1603.01615 Earth and Planetary Astrophysics +1603.01631 Methodology +1603.01633 Computer Vision and Pattern Recognition +1603.01634 Information Theory +1603.01635 +1603.01639 Theory +1603.01640 Data Analysis, Statistics and Probability +1603.01641 Metric Geometry +1603.01644 Numerical Analysis +1603.01646 Statistical Mechanics +1603.01648 Computation and Language +1603.01650 Optimization and Control +1603.01651 Information Theory +1603.01654 Instrumentation and Detectors +1603.01656 Atmospheric and Oceanic Physics +1603.01662 Chemical Physics +1603.01663 Superconductivity +1603.01671 Number Theory +1603.01672 Optimization and Control +1603.01673 Differential Geometry +1603.01675 Information Theory +1603.01677 Analysis of PDEs +1603.01682 Databases +1603.01687 Spectral Theory +1603.01689 Instrumentation and Methods for Astrophysics +1603.01690 Solar and Stellar Astrophysics +1603.01691 Differential Geometry +1603.01692 Fluid Dynamics +1603.01694 Information Theory +1603.01695 Computer Vision and Pattern Recognition +1603.01696 Computer Vision and Pattern Recognition +1603.01698 Information Theory +1603.01701 Mesoscale and Nanoscale Physics +1603.01707 High Energy Astrophysical Phenomena +1603.01715 +1603.01716 Learning +1603.01717 Strongly Correlated Electrons +1603.01718 +1603.01720 Probability +1603.01722 Artificial Intelligence +1603.01726 Group Theory +1603.01727 Probability +1603.01729 Information Theory +1603.01731 +1603.01732 Mesoscale and Nanoscale Physics +1603.01733 Data Structures and Algorithms +1603.01735 Operator Algebras +1603.01736 Combinatorics +1603.01739 Computer Vision and Pattern Recognition +1603.01747 Geophysics +1603.01753 Functional Analysis +1603.01760 Mesoscale and Nanoscale Physics +1603.01761 Numerical Analysis +1603.01765 Numerical Analysis +1603.01766 Logic +1603.01768 Computer Vision and Pattern Recognition +1603.01769 Phenomenology +1603.01770 Sound +1603.01771 Soft Condensed Matter +1603.01772 Computer Vision and Pattern Recognition +1603.01775 Methodology +1603.01776 Logic in Computer Science +1603.01784 Representation Theory +1603.01787 Multiagent Systems +1603.01790 Statistical Mechanics +1603.01791 Materials Science +1603.01793 Numerical Analysis +1603.01794 Biomolecules +1603.01796 Mesoscale and Nanoscale Physics +1603.01798 Optimization and Control +1603.01799 Probability +1603.01800 Strongly Correlated Electrons +1603.01806 History and Philosophy of Physics +1603.01807 Discrete Mathematics +1603.01808 Soft Condensed Matter +1603.01813 Algebraic Geometry +1603.01815 +1603.01817 Information Theory +1603.01820 Databases +1603.01823 Combinatorics +1603.01824 Sound +1603.01828 Number Theory +1603.01832 Classical Analysis and ODEs +1603.01833 Computation and Language +1603.01836 Functional Analysis +1603.01838 Theory +1603.01839 Optimization and Control +1603.01840 Artificial Intelligence +1603.01841 Commutative Algebra +1603.01842 Computer Vision and Pattern Recognition +1603.01843 Instrumentation and Detectors +1603.01845 Systems and Control +1603.01849 Probability +1603.01850 Commutative Algebra +1603.01859 Combinatorics +1603.01863 Sound +1603.01868 Functional Analysis +1603.01870 Learning +1603.01873 Metric Geometry +1603.01882 Machine Learning +1603.01884 Operator Algebras +1603.01885 Probability +1603.01886 Probability +1603.01890 +1603.01891 Classical Analysis and ODEs +1603.01897 Methodology +1603.01899 +1603.01900 Logic +1603.01904 Dynamical Systems +1603.01907 Classical Analysis and ODEs +1603.01909 Classical Physics +1603.01919 Phenomenology +1603.01921 Information Theory +1603.01924 +1603.01928 Optics +1603.01929 Social and Information Networks +1603.01931 Robotics +1603.01932 Robotics +1603.01938 Astrophysics of Galaxies +1603.01939 Quantitative Methods +1603.01940 Optics +1603.01943 Information Theory +1603.01944 Analysis of PDEs +1603.01945 Probability +1603.01947 Analysis of PDEs +1603.01949 Number Theory +1603.01950 High Energy Astrophysical Phenomena +1603.01954 Emerging Technologies +1603.01956 Metric Geometry +1603.01961 Cosmology and Nongalactic Astrophysics +1603.01963 +1603.01965 Robotics +1603.01972 Optics +1603.01973 Social and Information Networks +1603.01975 Differential Geometry +1603.01976 Computer Vision and Pattern Recognition +1603.01982 Cell Behavior +1603.01985 Applications +1603.01987 Information Retrieval +1603.01993 Astrophysics of Galaxies +1603.01996 Quantum Gases +1603.01999 Networking and Internet Architecture +1603.02003 Computer Vision and Pattern Recognition +1603.02006 Symplectic Geometry +1603.02008 Computational Geometry +1603.02009 Functional Analysis +1603.02010 Learning +1603.02015 Soft Condensed Matter +1603.02018 Information Theory +1603.02019 Physics and Society +1603.02020 Numerical Analysis +1603.02021 Genomics +1603.02024 Logic +1603.02025 Combinatorics +1603.02028 Computer Vision and Pattern Recognition +1603.02030 Soft Condensed Matter +1603.02031 Cryptography and Security +1603.02038 Robotics +1603.02039 Strongly Correlated Electrons +1603.02041 Artificial Intelligence +1603.02042 Astrophysics of Galaxies +1603.02043 Strongly Correlated Electrons +1603.02048 General Physics +1603.02055 Superconductivity +1603.02056 Databases +1603.02057 Probability +1603.02059 Classical Analysis and ODEs +1603.02060 Classical Analysis and ODEs +1603.02062 Other Quantitative Biology +1603.02064 Classical Analysis and ODEs +1603.02065 Classical Analysis and ODEs +1603.02067 Numerical Analysis +1603.02068 General Physics +1603.02069 General Physics +1603.02070 Classical Analysis and ODEs +1603.02072 Classical Analysis and ODEs +1603.02077 +1603.02080 Computational Geometry +1603.02081 Soft Condensed Matter +1603.02086 Classical Analysis and ODEs +1603.02088 Analysis of PDEs +1603.02091 Group Theory +1603.02092 Algebraic Geometry +1603.02093 Commutative Algebra +1603.02094 Networking and Internet Architecture +1603.02097 Analysis of PDEs +1603.02100 Logic +1603.02104 Algebraic Geometry +1603.02107 Logic +1603.02114 Algebraic Geometry +1603.02118 Algebraic Geometry +1603.02121 Functional Analysis +1603.02128 Complex Variables +1603.02129 Differential Geometry +1603.02132 Materials Science +1603.02133 Logic in Computer Science +1603.02138 Analysis of PDEs +1603.02139 Computer Vision and Pattern Recognition +1603.02142 Fluid Dynamics +1603.02144 High Energy Astrophysical Phenomena +1603.02148 Logic in Computer Science +1603.02149 Astrophysics of Galaxies +1603.02150 Algebraic Geometry +1603.02152 Geometric Topology +1603.02153 Strongly Correlated Electrons +1603.02155 Plasma Physics +1603.02161 Mesoscale and Nanoscale Physics +1603.02163 Soft Condensed Matter +1603.02166 Soft Condensed Matter +1603.02167 +1603.02172 Soft Condensed Matter +1603.02173 Commutative Algebra +1603.02175 Social and Information Networks +1603.02176 Soft Condensed Matter +1603.02179 Logic +1603.02180 Soft Condensed Matter +1603.02183 Soft Condensed Matter +1603.02185 Learning +1603.02186 Soft Condensed Matter +1603.02188 Distributed, Parallel, and Cluster Computing +1603.02193 Differential Geometry +1603.02195 +1603.02198 High Energy Astrophysical Phenomena +1603.02201 Differential Geometry +1603.02204 Rings and Algebras +1603.02205 +1603.02209 +1603.02211 Computer Vision and Pattern Recognition +1603.02217 Probability +1603.02221 Probability +1603.02223 Probability +1603.02225 Algebraic Geometry +1603.02226 Distributed, Parallel, and Cluster Computing +1603.02227 Algebraic Geometry +1603.02229 Geometric Topology +1603.02230 Phenomenology +1603.02231 Physics and Society +1603.02232 Combinatorics +1603.02234 Chaotic Dynamics +1603.02235 Probability +1603.02244 Dynamical Systems +1603.02245 Statistics Theory +1603.02250 Learning +1603.02252 Computer Vision and Pattern Recognition +1603.02253 Computer Vision and Pattern Recognition +1603.02255 Mesoscale and Nanoscale Physics +cond-mat/0703734 Other Condensed Matter +cs/0003078 Data Structures and Algorithms +gr-qc/0401117 +hep-th/0003140 Theory +math/0309469 Representation Theory +math/0410302 Representation Theory +math/0701681 Analysis of PDEs +math/0702015 Analysis of PDEs +0710.4155 Combinatorics +1103.2312 Logic +1105.0487 +1202.4679 Atmospheric and Oceanic Physics +1205.6684 Materials Science +1207.6068 +1210.6527 Algebraic Geometry +1210.7001 Phenomenology +1212.0884 Data Structures and Algorithms +1212.5708 Differential Geometry +1303.2981 Computational Complexity +1305.7078 Astrophysics of Galaxies +1306.2371 Phenomenology +1308.0810 Statistics Theory +1308.3353 Complex Variables +1311.1393 Numerical Analysis +1312.3804 Commutative Algebra +1402.2402 Probability +1403.1981 Analysis of PDEs +1403.5655 +1404.0748 Probability +1404.4335 Group Theory +1405.1143 Information Theory +1405.2153 Classical Analysis and ODEs +1405.2433 Differential Geometry +1405.5752 Atmospheric and Oceanic Physics +1406.0046 Analysis of PDEs +1406.0410 Quantum Algebra +1406.4901 Statistics Theory +1406.6033 Geometric Topology +1406.6411 Logic +1406.7130 Machine Learning +1407.4942 Complex Variables +1407.7216 Data Structures and Algorithms +1408.1437 Systems and Control +1408.6644 Mesoscale and Nanoscale Physics +1409.4510 Combinatorics +1410.2190 Combinatorics +1410.3928 +1411.0665 Phenomenology +1412.1272 Biological Physics +1412.2216 General Topology +1412.3349 Probability +1412.3772 Theory +1412.7766 Probability +1412.8582 Group Theory +1412.8749 Astrophysics of Galaxies +1501.04307 Symplectic Geometry +1501.05874 Probability +1501.06669 Algebraic Geometry +1502.01375 Physics and Society +1502.06053 Atomic Physics +1503.02836 Analysis of PDEs +1503.04461 Analysis of PDEs +1503.08015 Mesoscale and Nanoscale Physics +1503.08993 Geometric Topology +1504.06415 +1505.04693 Data Structures and Algorithms +1505.05411 Numerical Analysis +1505.06839 Classical Analysis and ODEs +1506.01279 +1506.02603 Phenomenology +1506.02909 Mesoscale and Nanoscale Physics +1506.07464 Methodology +1506.08969 Group Theory +1507.00285 Algebraic Geometry +1507.00504 Learning +1507.01306 Numerical Analysis +1507.02882 Mesoscale and Nanoscale Physics +1507.04487 Quantitative Methods +1507.05263 Information Theory +1507.05266 Information Theory +1507.06318 Theory +1507.06811 +1507.07895 Analysis of PDEs +1507.08923 Data Structures and Algorithms +1508.00534 +1508.00873 Strongly Correlated Electrons +1508.01464 Information Theory +1508.03435 Materials Science +1508.03925 +1508.04032 Artificial Intelligence +1508.07965 Probability +1509.00382 Differential Geometry +1509.04097 Mesoscale and Nanoscale Physics +1509.04409 +1509.06967 +1509.07096 Numerical Analysis +1509.07980 Logic +1509.08733 Mesoscale and Nanoscale Physics +1510.00352 Mathematical Finance +1510.00522 +1510.01384 Instrumentation and Detectors +1510.03758 Analysis of PDEs +1510.04470 K-Theory and Homology +1510.06809 Economics +1510.07254 Data Structures and Algorithms +1511.00925 Computer Science and Game Theory +1511.03592 Data Structures and Algorithms +1511.03649 Lattice +1511.04191 Information Theory +1511.05315 Strongly Correlated Electrons +1511.06526 +1511.07197 Quantum Gases +1511.07901 +1511.08196 Mesoscale and Nanoscale Physics +1511.08460 +1511.09355 +1511.09390 Solar and Stellar Astrophysics +1512.00384 Statistics Theory +1512.02038 Numerical Analysis +1512.05674 Analysis of PDEs +1512.05801 Statistical Mechanics +1512.07495 Mesoscale and Nanoscale Physics +1512.07781 Statistical Mechanics +1601.00140 Mesoscale and Nanoscale Physics +1601.00681 Emerging Technologies +1601.01146 Probability +1601.02967 Geophysics +1601.04714 Astrophysics of Galaxies +1601.04918 Mesoscale and Nanoscale Physics +1601.06396 Information Theory +1601.06443 Theory +1601.07305 Statistical Mechanics +1601.07438 Differential Geometry +1601.07453 Experiment +1601.07558 Theory +1602.01120 Machine Learning +1602.01456 +1602.05061 Materials Science +1602.05997 +1602.07229 Disordered Systems and Neural Networks +1602.08341 +1602.08371 Data Structures and Algorithms +1603.00386 Molecular Networks +1603.02120 Numerical Analysis +1603.02334 Superconductivity +1603.02543 Theory +1603.04068 Databases +1603.04090 Strongly Correlated Electrons +1603.04118 Machine Learning +1603.05456 Differential Geometry +1603.08272 Astrophysics of Galaxies +1603.08413 Rings and Algebras +1603.08455 Differential Geometry +1603.08557 Chemical Physics +1604.00721 Strongly Correlated Electrons +1604.02502 Combinatorics +1604.03630 Strongly Correlated Electrons +1604.04175 +1604.05373 Theory +1604.05814 Data Structures and Algorithms +1604.06134 High Energy Astrophysical Phenomena +1604.06274 Computation and Language +1604.06338 Neural and Evolutionary Computing +1604.06758 High Energy Astrophysical Phenomena +1604.07722 Optics +1604.08242 Computation and Language +1604.08750 Instrumentation and Detectors +1605.00444 Statistical Mechanics +1605.01280 Algebraic Geometry +1605.01510 Computer Science and Game Theory +1605.02276 Computation and Language +1605.02797 Phenomenology +1605.03398 Chemical Physics +1605.03665 Astrophysics of Galaxies +1605.04091 Fluid Dynamics +1605.04214 High Energy Astrophysical Phenomena +1605.04656 Materials Science +1605.04874 Learning +1605.05777 Discrete Mathematics +1605.06590 Operator Algebras +1605.07783 Mesoscale and Nanoscale Physics +1605.08726 Populations and Evolution +1605.08817 Robotics +1606.00665 History and Philosophy of Physics +1606.01676 Instrumentation and Methods for Astrophysics +1606.02110 Dynamical Systems +1606.02195 Functional Analysis +1606.02303 Phenomenology +1606.02865 Superconductivity +1606.02910 Theory +1606.03649 Dynamical Systems +1606.04048 Algebraic Geometry +1606.04086 Applications +1606.04173 Soft Condensed Matter +1606.04408 Phenomenology +1606.04417 Statistics Theory +1606.04434 Distributed, Parallel, and Cluster Computing +1606.05407 Methodology +1606.05409 Computation and Language +1606.05490 Logic in Computer Science +1606.05500 Functional Analysis +1606.05611 Computation and Language +1606.05762 K-Theory and Homology +1606.06061 Sound +1606.06183 Distributed, Parallel, and Cluster Computing +1606.06329 Computer Vision and Pattern Recognition +1606.06516 Materials Science +1606.06708 Dynamical Systems +1606.06730 Data Structures and Algorithms +1606.06731 Instrumentation and Detectors +1606.06736 High Energy Astrophysical Phenomena +1606.06741 Astrophysics of Galaxies +1606.06745 Functional Analysis +1606.06752 Algebraic Geometry +1606.06753 Mesoscale and Nanoscale Physics +1606.06755 Differential Geometry +1606.06761 Materials Science +1606.06763 Statistics Theory +1606.06764 Dynamical Systems +1606.06765 Combinatorics +1606.06768 Astrophysics of Galaxies +1606.06769 Physics and Society +1606.06770 +1606.06772 Statistics Theory +1606.06774 Phenomenology +1606.06777 Category Theory +1606.06782 Combinatorics +1606.06783 Dynamical Systems +1606.06784 Solar and Stellar Astrophysics +1606.06786 +1606.06787 Analysis of PDEs +1606.06791 High Energy Astrophysical Phenomena +1606.06796 +1606.06797 Artificial Intelligence +1606.06799 Logic in Computer Science +1606.06800 Emerging Technologies +1606.06801 Computational Complexity +1606.06802 Information Theory +1606.06803 Computational Complexity +1606.06809 Geometric Topology +1606.06810 Combinatorics +1606.06811 Computer Vision and Pattern Recognition +1606.06814 Strongly Correlated Electrons +1606.06816 Information Retrieval +1606.06817 Experiment +1606.06818 Neural and Evolutionary Computing +1606.06819 Combinatorics +1606.06822 Mesoscale and Nanoscale Physics +1606.06825 Analysis of PDEs +1606.06828 Methodology +1606.06840 Human-Computer Interaction +1606.06843 Mesoscale and Nanoscale Physics +1606.06844 Functional Analysis +1606.06845 Functional Analysis +1606.06846 Computer Science and Game Theory +1606.06851 Astrophysics of Galaxies +1606.06852 Materials Science +1606.06853 Numerical Analysis +1606.06854 Computer Vision and Pattern Recognition +1606.06857 Functional Analysis +1606.06860 Rings and Algebras +1606.06861 Phenomenology +1606.06872 Computational Complexity +1606.06874 Number Theory +1606.06876 Algebraic Geometry +1606.06877 Software Engineering +1606.06880 Complex Variables +1606.06881 Logic +1606.06883 Algebraic Geometry +1606.06886 Analysis of PDEs +1606.06888 Artificial Intelligence +1606.06889 Representation Theory +1606.06891 Probability +1606.06892 Superconductivity +1606.06896 Optics +1606.06897 Cryptography and Security +1606.06903 Statistics Theory +1606.06909 Cryptography and Security +1606.06911 Classical Analysis and ODEs +1606.06912 Methodology +1606.06913 Metric Geometry +1606.06915 Instrumentation and Methods for Astrophysics +1606.06916 Phenomenology +1606.06917 +1606.06924 Strongly Correlated Electrons +1606.06925 Networking and Internet Architecture +1606.06926 Data Structures and Algorithms +1606.06930 Combinatorics +1606.06933 Physics and Society +1606.06934 Probability +1606.06938 +1606.06939 Representation Theory +1606.06940 Computational Geometry +1606.06942 Combinatorics +1606.06943 Phenomenology +1606.06944 Materials Science +1606.06946 Classical Analysis and ODEs +1606.06947 Geometric Topology +1606.06948 General Finance +1606.06949 Optics +1606.06950 Computation and Language +1606.06953 Materials Science +1606.06956 Combinatorics +1606.06958 Combinatorics +1606.06961 Neural and Evolutionary Computing +1606.06962 Learning +1606.06964 General Physics +1606.06965 General Physics +1606.06966 General Physics +1606.06969 Numerical Analysis +1606.06970 History and Philosophy of Physics +1606.06972 Instrumentation and Methods for Astrophysics +1606.06975 Computational Engineering, Finance, and Science +1606.06976 Optics +1606.06979 Human-Computer Interaction +1606.06980 Materials Science +1606.06984 Number Theory +1606.06985 +1606.06987 Statistical Mechanics +1606.06988 Statistics Theory +1606.06989 Solar and Stellar Astrophysics +1606.06991 Information Retrieval +1606.06992 Information Theory +1606.06993 Methodology +1606.06995 Materials Science +1606.06996 Computation and Language +1606.07000 +1606.07003 Geometric Topology +1606.07010 Probability +1606.07012 Number Theory +1606.07014 Algebraic Geometry +1606.07018 Dynamical Systems +1606.07019 Complex Variables +1606.07022 Probability +1606.07023 History and Overview +1606.07025 Cryptography and Security +1606.07026 Astrophysics of Galaxies +1606.07029 Neurons and Cognition +1606.07031 Rings and Algebras +1606.07032 Algebraic Topology +1606.07034 Functional Analysis +1606.07036 Information Theory +1606.07037 Earth and Planetary Astrophysics +1606.07039 Cosmology and Nongalactic Astrophysics +1606.07040 Astrophysics of Galaxies +1606.07041 +1606.07042 Computer Science and Game Theory +1606.07043 Machine Learning +1606.07044 Medical Physics +1606.07045 +1606.07047 Logic in Computer Science +1606.07048 Dynamical Systems +1606.07050 Symplectic Geometry +1606.07052 Analysis of PDEs +1606.07055 Probability +1606.07056 Artificial Intelligence +1606.07057 Superconductivity +0910.4076 Probability +1001.4134 +1003.0937 Cosmology and Nongalactic Astrophysics +1008.2572 +1104.5039 Discrete Mathematics +1107.3432 Probability +1201.0136 General Physics +1203.4213 Probability +1207.4802 General Mathematics +1212.3202 Soft Condensed Matter +1302.3756 Number Theory +1302.6863 Data Structures and Algorithms +1303.1208 Machine Learning +1303.3235 Information Theory +1307.4215 Systems and Control +1307.7904 +1309.1574 Systems and Control +1309.3408 Logic +1310.6014 Differential Geometry +1310.8511 Information Theory +1311.3861 Functional Analysis +1311.6405 Classical Analysis and ODEs +1311.6836 Algebraic Topology +1312.0904 Differential Geometry +1312.0984 Networking and Internet Architecture +1312.4462 +1312.6586 Mesoscale and Nanoscale Physics +1312.6752 Number Theory +1312.7160 Theory +1401.0560 Theory +1401.1393 General Topology +1401.4264 Probability +1402.3435 Information Theory +1402.4265 +1403.0254 Earth and Planetary Astrophysics +1403.6615 Statistical Mechanics +1404.1827 Algebraic Geometry +1404.4415 Representation Theory +1404.5895 Probability +1405.1837 Information Retrieval +1405.2783 +1405.4406 Functional Analysis +1405.7207 Instrumentation and Methods for Astrophysics +1405.7724 Physics and Society +1405.7874 Combinatorics +1405.7946 Rings and Algebras +1406.3811 Optimization and Control +1406.4535 Analysis of PDEs +1406.6208 Probability +1406.7713 +1407.1632 Cosmology and Nongalactic Astrophysics +1407.2005 Theory +1407.3694 Probability +1407.4370 +1407.7421 Quantum Gases +1407.7542 Theory +1407.8073 Functional Analysis +1407.8131 Phenomenology +1408.3209 Strongly Correlated Electrons +1408.4128 Astrophysics of Galaxies +1409.0529 Materials Science +1409.2671 Numerical Analysis +1409.5087 Theory +1409.5353 Statistics Theory +1409.7602 Probability +1409.8417 Astrophysics of Galaxies +1410.0583 Optics +1410.2238 Astrophysics of Galaxies +1410.2373 Emerging Technologies +1410.2481 Phenomenology +1410.2626 Group Theory +1410.3454 High Energy Astrophysical Phenomena +1410.5309 Statistics Theory +1410.8026 Statistical Mechanics +1411.1291 Statistical Mechanics +1411.2306 K-Theory and Homology +1411.2995 +1411.3660 Cosmology and Nongalactic Astrophysics +1411.5516 Soft Condensed Matter +1411.7294 Functional Analysis +1411.7710 Theory +1411.7789 Solar and Stellar Astrophysics +1411.7899 Theory +1412.0606 Statistical Mechanics +1412.0656 Cosmology and Nongalactic Astrophysics +1412.0851 Numerical Analysis +1412.1039 Computational Geometry +1412.2682 Symplectic Geometry +1412.2764 Cosmology and Nongalactic Astrophysics +1412.2878 Solar and Stellar Astrophysics +1412.4270 Mesoscale and Nanoscale Physics +1412.4455 Symplectic Geometry +1412.5228 Cosmology and Nongalactic Astrophysics +1412.7339 +1412.8367 Phenomenology +1412.8694 +1501.00477 Statistical Mechanics +1501.01167 Neurons and Cognition +1501.02453 Theory +1501.02804 Theory +1501.02845 Solar and Stellar Astrophysics +1501.05221 Group Theory +1501.06583 Solar and Stellar Astrophysics +1501.07226 Phenomenology +1501.07488 Mesoscale and Nanoscale Physics +1502.00631 Solar and Stellar Astrophysics +1502.01001 Phenomenology +1502.01998 Number Theory +1502.02694 +1502.04903 Optics +1502.05581 Theory +1502.06639 +1502.06849 Mesoscale and Nanoscale Physics +1502.07105 +1502.07606 +1502.07673 +1503.00336 Logic in Computer Science +1503.00352 +1503.00420 Disordered Systems and Neural Networks +1503.00598 High Energy Astrophysical Phenomena +1503.00610 Experiment +1503.01157 Astrophysics of Galaxies +1503.01214 Cryptography and Security +1503.01378 Algebraic Geometry +1503.01587 Statistics Theory +1503.01644 Cosmology and Nongalactic Astrophysics +1503.01923 Optics +1503.02293 Solar and Stellar Astrophysics +1503.02640 +1503.02711 High Energy Astrophysical Phenomena +1503.03245 +1503.03566 +1503.03572 Combinatorics +1503.03623 High Energy Astrophysical Phenomena +1503.03708 Atomic Physics +1503.04031 Strongly Correlated Electrons +1503.04314 +1503.04571 Metric Geometry +1503.04788 Astrophysics of Galaxies +1503.04980 Instrumentation and Methods for Astrophysics +1503.05215 Applications +1503.05393 Functional Analysis +1503.05531 Category Theory +1503.05613 Experiment +1503.06090 Superconductivity +1503.06121 Astrophysics of Galaxies +1503.06302 Methodology +1503.06349 +1503.06502 Disordered Systems and Neural Networks +1503.06568 Differential Geometry +1503.06598 Information Retrieval +1503.06607 Functional Analysis +1503.06615 Soft Condensed Matter +1503.06769 Data Analysis, Statistics and Probability +1503.07448 Analysis of PDEs +1503.07458 +1503.07568 Networking and Internet Architecture +1503.07740 +1503.08225 Astrophysics of Galaxies +1503.09027 Instrumentation and Methods for Astrophysics +1504.00095 Optics +1504.00496 Solar and Stellar Astrophysics +1504.00705 Mesoscale and Nanoscale Physics +1504.00799 Mesoscale and Nanoscale Physics +1504.00815 Soft Condensed Matter +1504.00843 General Mathematics +1504.00849 Solar and Stellar Astrophysics +1504.01217 Soft Condensed Matter +1504.01923 Metric Geometry +1504.02030 +1504.02131 Phenomenology +1504.02178 Quantum Gases +1504.02192 +1504.02405 Astrophysics of Galaxies +1504.02497 Adaptation and Self-Organizing Systems +1504.02560 Quantum Gases +1504.02966 Statistical Mechanics +1504.03023 Atomic Physics +1504.03176 Phenomenology +1504.03202 Populations and Evolution +1504.03477 Software Engineering +1504.03586 Computer Science and Game Theory +1504.03753 High Energy Astrophysical Phenomena +1504.03877 Computers and Society +1504.04674 Solar and Stellar Astrophysics +1504.04982 Analysis of PDEs +1504.05156 Phenomenology +1504.05614 Instrumentation and Methods for Astrophysics +1504.05761 Mesoscale and Nanoscale Physics +1504.05831 Experiment +1504.05901 Numerical Analysis +1504.06098 Solar and Stellar Astrophysics +1504.06544 Data Structures and Algorithms +1504.07291 Analysis of PDEs +1504.07497 +1504.07838 Formal Languages and Automata Theory +1505.00066 Computer Vision and Pattern Recognition +1505.00170 Mesoscale and Nanoscale Physics +1505.00733 Differential Geometry +1505.00923 Disordered Systems and Neural Networks +1505.01137 Information Theory +1505.01182 +1505.01425 Solar and Stellar Astrophysics +1505.01645 Superconductivity +1505.01715 Phenomenology +1505.02068 Probability +1505.02081 Algebraic Geometry +1505.02113 Instrumentation and Methods for Astrophysics +1505.02120 Optimization and Control +1505.03150 Astrophysics of Galaxies +1505.03362 Experiment +1505.03687 Metric Geometry +1505.04442 General Topology +1505.04866 High Energy Astrophysical Phenomena +1505.04908 Combinatorics +1505.05493 Probability +1505.05519 General Mathematics +1505.05722 Solar and Stellar Astrophysics +1505.05807 +1505.06073 Probability +1505.06184 +1505.06581 Dynamical Systems +1505.06690 Optics +1505.07099 +1505.07136 Number Theory +1505.07328 Strongly Correlated Electrons +1505.07405 Strongly Correlated Electrons +1505.07467 High Energy Astrophysical Phenomena +1505.07493 Information Theory +1505.07568 Cosmology and Nongalactic Astrophysics +1505.07586 Astrophysics of Galaxies +1505.07700 Analysis of PDEs +1505.07892 Networking and Internet Architecture +1505.08079 Phenomenology +1505.08111 Commutative Algebra +1506.00067 Dynamical Systems +1506.00429 Applications +1506.00437 Algebraic Geometry +1506.00518 +1506.00640 Astrophysics of Galaxies +1506.01547 Astrophysics of Galaxies +1506.01668 Solar and Stellar Astrophysics +1506.01860 Astrophysics of Galaxies +1506.01867 Number Theory +1506.01971 Information Theory +1506.02016 Disordered Systems and Neural Networks +1506.02457 Geophysics +1506.02496 Atomic Physics +1506.02977 Mesoscale and Nanoscale Physics +1506.03513 +1506.03599 Neural and Evolutionary Computing +1506.03636 Atomic Physics +1506.03659 +1506.03988 +1506.04551 Dynamical Systems +1506.04590 Optics +1506.04706 Analysis of PDEs +1506.04761 Quantum Gases +1506.04941 Mesoscale and Nanoscale Physics +1506.05129 Astrophysics of Galaxies +1506.05808 High Energy Astrophysical Phenomena +1506.05825 Experiment +1506.05921 Materials Science +1506.06536 Lattice +1506.06741 Strongly Correlated Electrons +1506.07294 Atomic Physics +1506.07354 High Energy Astrophysical Phenomena +1506.07973 Materials Science +1506.08157 +1506.09156 Cosmology and Nongalactic Astrophysics +1507.00055 Solar and Stellar Astrophysics +1507.00103 +1507.00191 Probability +1507.00715 +1507.00966 Experiment +1507.01417 Experiment +1507.01463 Biological Physics +1507.02427 Atomic Physics +1507.02443 Quantum Gases +1507.02460 Mesoscale and Nanoscale Physics +1507.02503 Strongly Correlated Electrons +1507.02564 Probability +1507.02677 Mesoscale and Nanoscale Physics +1507.03407 Computer Science and Game Theory +1507.03744 +1507.03841 Mesoscale and Nanoscale Physics +1507.03846 +1507.03859 Experiment +1507.04005 High Energy Astrophysical Phenomena +1507.04137 Solar and Stellar Astrophysics +1507.04155 Learning +1507.04241 Geophysics +1507.04693 +1507.04848 General Finance +1507.04916 +1507.05419 Representation Theory +1507.05468 Earth and Planetary Astrophysics +1507.05516 Information Theory +1507.06786 Solar and Stellar Astrophysics +1507.06822 Materials Science +1507.07233 Analysis of PDEs +1507.07427 Quantum Gases +1507.07442 +1507.07466 Methodology +1507.07500 Dynamical Systems +1507.07573 Combinatorics +1507.07853 Superconductivity +1507.08114 Functional Analysis +1507.08544 Earth and Planetary Astrophysics +1507.08608 Mesoscale and Nanoscale Physics +1507.08671 High Energy Astrophysical Phenomena +1507.08740 High Energy Astrophysical Phenomena +1507.08786 Astrophysics of Galaxies +1507.08917 Information Theory +1507.08935 Phenomenology +1508.00508 Strongly Correlated Electrons +1508.00925 Strongly Correlated Electrons +1508.00950 Solar and Stellar Astrophysics +1508.01792 Algebraic Geometry +1508.01800 Astrophysics of Galaxies +1508.02207 Strongly Correlated Electrons +1508.02861 Astrophysics of Galaxies +1508.03345 Instrumentation and Methods for Astrophysics +1508.03487 Solar and Stellar Astrophysics +1508.03539 Phenomenology +1508.03810 Discrete Mathematics +1508.03901 Programming Languages +1508.03968 Instrumentation and Methods for Astrophysics +1508.04121 Astrophysics of Galaxies +1508.04304 Phenomenology +1508.04399 Strongly Correlated Electrons +1508.04565 Astrophysics of Galaxies +1508.04845 Astrophysics of Galaxies +1508.04896 Strongly Correlated Electrons +1508.05182 Number Theory +1508.05207 Earth and Planetary Astrophysics +1508.05222 Astrophysics of Galaxies +1508.05737 Computational Complexity +1508.05759 Instrumentation and Detectors +1508.06284 Astrophysics of Galaxies +1508.06572 Theory +1508.06986 +1508.07301 Materials Science +1508.07895 Classical Analysis and ODEs +1509.00215 Representation Theory +1509.01595 Combinatorics +1509.01921 Strongly Correlated Electrons +1509.03017 Logic in Computer Science +1509.03020 Logic in Computer Science +1509.03620 Optics +1509.04911 Statistical Mechanics +1509.05652 Experiment +1509.05869 Optics +1509.07163 +1509.08299 Information Theory +1510.01088 Systems and Control +1510.03898 +1510.06271 Phenomenology +1510.09022 Materials Science +1511.01080 Programming Languages +1511.02604 Dynamical Systems +1511.02615 Logic in Computer Science +1511.03889 Theory +1511.03933 +1511.04380 +1511.04593 Classical Physics +1511.04601 Computer Vision and Pattern Recognition +1511.04868 Learning +1511.06354 Solar and Stellar Astrophysics +1511.06785 Algebraic Topology +1511.07159 Phenomenology +1511.08733 Quantum Gases +1512.01551 Phenomenology +1512.02289 Rings and Algebras +1512.03884 Superconductivity +1512.04542 Disordered Systems and Neural Networks +1512.04600 +1512.06033 Combinatorics +1512.07027 Statistical Mechanics +1512.07730 Information Theory +1512.07962 Machine Learning +1512.08707 +1601.00666 Quantum Gases +1601.03795 Number Theory +1601.03858 Probability +1601.03892 Data Structures and Algorithms +1601.03989 Phenomenology +1601.05951 Optics +1601.06068 Computation and Language +1601.06174 Instrumentation and Methods for Astrophysics +1601.06995 Pricing of Securities +1601.07209 +1601.07946 Quantum Gases +1602.04221 Theory +1602.05257 Learning +1602.06342 Numerical Analysis +1602.07028 Representation Theory +1602.07216 Analysis of PDEs +1602.07937 Fluid Dynamics +1602.08591 Networking and Internet Architecture +1603.00435 Quantum Algebra +1603.03104 Superconductivity +1603.03319 Phenomenology +1603.03640 Methodology +1603.04158 Phenomenology +1603.04178 Optimization and Control +1603.05118 Computation and Language +1603.05259 High Energy Astrophysical Phenomena +1603.06153 Analysis of PDEs +1603.09127 General Topology +1603.09185 Formal Languages and Automata Theory +1603.09597 Programming Languages +1603.09706 Methodology +1604.00189 +1604.00195 Differential Geometry +1604.00907 Analysis of PDEs +1604.01195 Differential Geometry +1604.01310 Mesoscale and Nanoscale Physics +1604.02151 High Energy Astrophysical Phenomena +1604.02302 Statistics Theory +1604.04164 Logic in Computer Science +1604.04610 Strongly Correlated Electrons +1604.04632 Astrophysics of Galaxies +1604.05701 Cosmology and Nongalactic Astrophysics +1604.06125 Theory +1604.06324 Strongly Correlated Electrons +1604.07795 Cosmology and Nongalactic Astrophysics +1604.08514 +1604.08848 Graphics +1604.08929 Commutative Algebra +1605.00521 Pattern Formation and Solitons +1605.00618 Networking and Internet Architecture +1605.01050 +1605.02617 Strongly Correlated Electrons +1605.02620 Statistical Mechanics +1605.02630 Numerical Analysis +1605.04613 Materials Science +1605.04776 Phenomenology +1605.05098 Phenomenology +1605.05643 Statistical Mechanics +1605.06335 Superconductivity +1605.06495 +1605.06836 Probability +1605.07781 High Energy Astrophysical Phenomena +1605.08220 Phenomenology +1605.09401 Phenomenology +1605.09634 Representation Theory +1605.09792 Astrophysics of Galaxies +1606.00202 Networking and Internet Architecture +1606.00340 Representation Theory +1606.00586 Fluid Dynamics +1606.00693 Theory +1606.01771 Algebraic Geometry +1606.02296 Astrophysics of Galaxies +1606.04628 Complex Variables +1606.04845 Mesoscale and Nanoscale Physics +1606.05383 Accelerator Physics +1606.06830 Astrophysics of Galaxies +1606.07272 Representation Theory +1606.08557 Information Theory +1606.08696 Space Physics +1607.00218 Quantum Gases +1607.00788 Space Physics +1607.00796 Space Physics +1607.01168 Space Physics +1607.01508 Analysis of PDEs +1607.01727 Spectral Theory +1607.02069 Differential Geometry +1607.02518 Combinatorics +1607.02554 Metric Geometry +1607.02844 Algebraic Geometry +1607.02848 Analysis of PDEs +1607.03151 Cosmology and Nongalactic Astrophysics +1607.03216 +1607.03296 Information Retrieval +1607.04511 Space Physics +1607.05566 Phenomenology +1607.05911 Mesoscale and Nanoscale Physics +1607.06114 History and Philosophy of Physics +1607.06686 Earth and Planetary Astrophysics +1607.06742 Chemical Physics +1607.07276 Dynamical Systems +1607.07423 Learning +1607.07745 Artificial Intelligence +1608.00070 Optimization and Control +1608.00073 Solar and Stellar Astrophysics +1608.00157 Number Theory +1608.00341 Plasma Physics +1608.00386 Instrumentation and Methods for Astrophysics +1608.00390 Instrumentation and Methods for Astrophysics +1608.00391 Instrumentation and Methods for Astrophysics +1608.00395 Instrumentation and Methods for Astrophysics +1608.00756 Trading and Market Microstructure +1608.00966 Astrophysics of Galaxies +1608.01338 Artificial Intelligence +1608.01364 Statistics Theory +1608.01414 Combinatorics +1608.01472 +1608.01543 General Physics +1608.01552 Computers and Society +1608.01661 Experiment +1608.01668 Artificial Intelligence +1608.01670 Data Structures and Algorithms +1608.01674 Astrophysics of Galaxies +1608.01685 Algebraic Topology +1608.01686 Computer Vision and Pattern Recognition +1608.01692 Statistical Mechanics +1608.01696 Instrumentation and Methods for Astrophysics +1608.01697 Social and Information Networks +1608.01699 Operator Algebras +1608.01701 Algebraic Topology +1608.01703 Algebraic Geometry +1608.01704 Instrumentation and Methods for Astrophysics +1608.01705 Fluid Dynamics +1608.01707 Chemical Physics +1608.01709 Social and Information Networks +1608.01711 Algebraic Geometry +1608.01712 Formal Languages and Automata Theory +1608.01713 Optimization and Control +1608.01714 Number Theory +1608.01716 Data Structures and Algorithms +1608.01718 General Mathematics +1608.01721 Data Structures and Algorithms +1608.01723 Programming Languages +1608.01724 +1608.01725 Networking and Internet Architecture +1608.01728 Optimization and Control +1608.01731 Popular Physics +1608.01732 Information Theory +1608.01734 Computation +1608.01736 Methodology +1608.01739 Methodology +1608.01741 Numerical Analysis +1608.01743 Representation Theory +1608.01746 Phenomenology +1608.01747 Learning +1608.01749 Astrophysics of Galaxies +1608.01750 Chaotic Dynamics +1608.01752 Phenomenology +1608.01755 Logic in Computer Science +1608.01756 Information Theory +1608.01757 Fluid Dynamics +1608.01760 Social and Information Networks +1608.01762 Materials Science +1608.01765 Number Theory +1608.01766 Physics and Society +1608.01767 Dynamical Systems +1608.01770 K-Theory and Homology +1608.01771 Social and Information Networks +1608.01773 Complex Variables +1608.01774 Superconductivity +1608.01775 Representation Theory +1608.01776 Astrophysics of Galaxies +1608.01779 Strongly Correlated Electrons +1608.01781 +1608.01783 Neural and Evolutionary Computing +1608.01784 Number Theory +1608.01787 Statistics Theory +1608.01788 Geophysics +1608.01790 Information Theory +1608.01793 Computer Vision and Pattern Recognition +1608.01796 Theory +1608.01797 Analysis of PDEs +1608.01798 Theory +1608.01799 +1608.01800 Phenomenology +1608.01801 Statistics Theory +1608.01805 Probability +1608.01807 Computer Vision and Pattern Recognition +1608.01810 Exactly Solvable and Integrable Systems +1608.01815 Disordered Systems and Neural Networks +1608.01816 Instrumentation and Methods for Astrophysics +1608.01818 Neural and Evolutionary Computing +1608.01819 Cosmology and Nongalactic Astrophysics +1608.01821 +1608.01822 Pattern Formation and Solitons +1608.01824 Statistics Theory +1608.01825 Medical Physics +1608.01826 Analysis of PDEs +1608.01827 Computer Science and Game Theory +1608.01828 Information Theory +1608.01830 Atomic Physics +1608.01834 Phenomenology +1608.01836 Analysis of PDEs +1608.01839 Instrumentation and Methods for Astrophysics +1608.01841 Instrumentation and Detectors +1608.01842 Physics and Society +1608.01845 Group Theory +1608.01851 Probability +1608.01852 Algebraic Geometry +1608.01853 Dynamical Systems +1608.01856 Artificial Intelligence +1608.01858 Probability +1608.01859 Information Theory +1608.01863 Numerical Analysis +1608.01864 Analysis of PDEs +1608.01865 Representation Theory +1608.01866 Computer Vision and Pattern Recognition +1608.01869 Functional Analysis +1608.01870 Computers and Society +1608.01871 Mesoscale and Nanoscale Physics +1608.01873 Combinatorics +1608.01874 Learning +1608.01875 Computer Science and Game Theory +1608.01878 Exactly Solvable and Integrable Systems +1608.01879 Optimization and Control +1608.01881 Experiment +1608.01887 Classical Physics +1608.01894 Statistics Theory +1608.01895 Statistics Theory +1608.01896 Computer Vision and Pattern Recognition +1608.01897 General Physics +1608.01898 Dynamical Systems +1608.01899 History and Overview +1608.01903 Statistics Theory +1608.01905 Analysis of PDEs +1608.01906 Fluid Dynamics +1608.01909 Cryptography and Security +1608.01910 Computation and Language +1608.01915 Functional Analysis +1608.01920 +1608.01921 Computational Geometry +1608.01925 Spectral Theory +1608.01926 Mesoscale and Nanoscale Physics +1608.01927 Superconductivity +1608.01928 Phenomenology +1608.01930 High Energy Astrophysical Phenomena +1608.01931 Strongly Correlated Electrons +1608.01932 Computational Complexity +1608.01933 Graphics +1608.01935 Astrophysics of Galaxies +1608.01936 Tissues and Organs +1608.01939 Computers and Society +1608.01942 Optics +1608.01946 Artificial Intelligence +1608.01947 Multimedia +1608.01953 Sound +1608.01954 Combinatorics +1608.01955 Differential Geometry +1608.01958 Numerical Analysis +1608.01959 Classical Analysis and ODEs +1608.01961 Computation and Language +1608.01962 Functional Analysis +1608.01968 +1608.01969 Number Theory +1608.01970 Cosmology and Nongalactic Astrophysics +1608.01971 Discrete Mathematics +1608.01972 Computation and Language +1608.01973 Combinatorics +1608.01976 Machine Learning +1608.01978 +1608.01986 +1608.01987 Computers and Society +1608.01989 Popular Physics +cond-mat/9502071 +math/0310266 Geometric Topology +quant-ph/0501012 +quant-ph/0507144 +quant-ph/0605157 +quant-ph/0612024 +0804.2268 +1111.2321 Number Theory +1203.4281 Atomic Physics +1212.3715 Geometric Topology +1303.3831 Materials Science +1305.2143 Number Theory +1306.2060 History and Overview +1307.1930 Analysis of PDEs +1307.2841 Dynamical Systems +1307.3656 Probability +1308.1263 Statistics Theory +1310.6219 Number Theory +1401.3193 Differential Geometry +1401.4148 Dynamical Systems +1401.5400 Combinatorics +1401.6169 Learning +1403.0170 Theory +1403.5181 Algebraic Geometry +1406.5061 Rings and Algebras +1410.2280 Group Theory +1411.1302 +1501.02113 Computer Vision and Pattern Recognition +1501.05745 Algebraic Geometry +1501.06389 Representation Theory +1501.06635 Probability +1502.04093 Materials Science +1502.06930 Methodology +1503.00751 Classical Analysis and ODEs +1503.00805 Data Structures and Algorithms +1503.01673 Machine Learning +1504.01148 Commutative Algebra +1504.07330 Number Theory +1504.07362 Algebraic Topology +1505.04585 Computer Vision and Pattern Recognition +1505.05002 Probability +1505.07079 Graphics +1505.07369 Methodology +1506.01443 Experiment +1506.04928 Applications +1506.05290 Materials Science +1506.05410 Physics and Society +1507.01041 Complex Variables +1507.01122 Artificial Intelligence +1507.03210 +1507.04259 Pattern Formation and Solitons +1507.04304 Combinatorics +1507.06112 Algebraic Topology +1507.06541 Discrete Mathematics +1508.00011 Phenomenology +1508.00466 +1508.03941 Strongly Correlated Electrons +1509.02233 Geometric Topology +1509.02737 Chaotic Dynamics +1509.03983 Combinatorics +1509.08327 Machine Learning +1509.08519 Information Theory +1510.01607 Combinatorics +1510.01978 Mesoscale and Nanoscale Physics +1510.02665 +1510.05068 Strongly Correlated Electrons +1510.05807 Optics +1510.05843 Dynamical Systems +1510.06301 Statistics Theory +1510.06322 Methodology +1510.06344 Optics +1510.07919 Combinatorics +1510.08642 Numerical Analysis +1510.08729 Molecular Networks +1511.00031 Phenomenology +1511.01318 Cosmology and Nongalactic Astrophysics +1511.01660 Theory +1511.04225 Strongly Correlated Electrons +1511.05382 Strongly Correlated Electrons +1511.06100 Operator Algebras +1511.08902 Differential Geometry +1511.09326 +1512.00646 Analysis of PDEs +1512.01238 Theory +1512.03753 Mesoscale and Nanoscale Physics +1512.05974 Data Structures and Algorithms +1512.06270 Strongly Correlated Electrons +1512.06696 Phenomenology +1512.06774 Cosmology and Nongalactic Astrophysics +1512.08300 Exactly Solvable and Integrable Systems +1512.08422 Computation and Language +1512.08527 Differential Geometry +1601.00273 +1601.00284 +1601.00588 +1601.00720 Neurons and Cognition +1601.02041 Mesoscale and Nanoscale Physics +1601.02064 Mesoscale and Nanoscale Physics +1601.03357 Exactly Solvable and Integrable Systems +1601.05068 Information Theory +1601.05319 Strongly Correlated Electrons +1601.06840 Atomic Physics +1601.07182 Instrumentation and Methods for Astrophysics +1601.07195 +1601.07611 Strongly Correlated Electrons +1602.00408 +1602.00651 Symbolic Computation +1602.00803 Statistical Mechanics +1602.01255 Computer Vision and Pattern Recognition +1602.01273 Phenomenology +1602.01547 Networking and Internet Architecture +1602.01907 +1602.02438 Strongly Correlated Electrons +1602.02547 Strongly Correlated Electrons +1602.04204 Phenomenology +1602.05751 Human-Computer Interaction +1602.05855 Statistical Mechanics +1602.06820 Information Theory +1602.07003 Theory +1602.07269 Theory +1602.07729 Discrete Mathematics +1603.00898 Discrete Mathematics +1603.04124 Theory +1603.04419 Machine Learning +1603.04568 Phenomenology +1603.09628 Experiment +1604.00839 Theory +1604.01250 Machine Learning +1604.02910 Neural and Evolutionary Computing +1604.03292 Information Theory +1604.03583 Databases +1604.04194 Algebraic Geometry +1604.04821 Astrophysics of Galaxies +1604.05881 Earth and Planetary Astrophysics +1604.08059 Symbolic Computation +1604.08357 Networking and Internet Architecture +1604.08940 Number Theory +1605.00798 Statistical Mechanics +1605.01032 Computers and Society +1605.01449 Fluid Dynamics +1605.01716 Probability +1605.01840 Instrumentation and Methods for Astrophysics +1605.01937 Phenomenology +1605.02062 Cryptography and Security +1605.02209 Methodology +1605.02772 Data Structures and Algorithms +1605.02937 Solar and Stellar Astrophysics +1605.02971 Computer Vision and Pattern Recognition +1605.03284 Computation and Language +1605.03390 Data Structures and Algorithms +1605.03496 Instrumentation and Methods for Astrophysics +1605.03519 +1605.03540 High Energy Astrophysical Phenomena +1605.03650 Functional Analysis +1605.03692 Data Structures and Algorithms +1605.03924 Computation and Language +1605.03957 Instrumentation and Detectors +1605.03958 Quantum Gases +1605.03959 Theory +1605.03967 Astrophysics of Galaxies +1605.03969 Strongly Correlated Electrons +1605.03970 Cosmology and Nongalactic Astrophysics +1605.03975 Optimization and Control +1605.03976 Classical Analysis and ODEs +1605.03977 Instrumentation and Detectors +1605.03995 Quantum Algebra +1605.03996 Mesoscale and Nanoscale Physics +1605.03997 Theory +1605.04000 Combinatorics +1605.04001 Differential Geometry +1605.04002 Computation and Language +1605.04008 Optimization and Control +1605.04011 Probability +1605.04012 Probability +1605.04014 Classical Analysis and ODEs +1605.04017 Probability +1605.04018 Combinatorics +1605.04020 Complex Variables +1605.04021 Networking and Internet Architecture +1605.04026 Computer Science and Game Theory +1605.04031 Data Structures and Algorithms +1605.04034 Learning +1605.04035 Databases +1605.04038 Strongly Correlated Electrons +1605.04041 Biological Physics +1605.04042 Information Theory +1605.04046 Computer Vision and Pattern Recognition +1605.04051 Materials Science +1605.04055 Methodology +1605.04059 Statistics Theory +1605.04061 Dynamical Systems +1605.04062 Materials Science +1605.04063 Information Theory +1605.04064 Probability +1605.04068 Computer Vision and Pattern Recognition +1605.04069 Distributed, Parallel, and Cluster Computing +1605.04070 Computers and Society +1605.04072 Computation and Language +1605.04073 +1605.04074 Machine Learning +1605.04077 +1605.04079 Optimization and Control +1605.04080 +1605.04081 Number Theory +1605.04085 Numerical Analysis +1605.04087 General Topology +1605.04088 Materials Science +1605.04093 Geometric Topology +1605.04094 Dynamical Systems +1605.04096 +1605.04097 Functional Analysis +1605.04098 Data Structures and Algorithms +1605.04099 Exactly Solvable and Integrable Systems +1605.04100 Functional Analysis +1605.04103 Numerical Analysis +1605.04104 Strongly Correlated Electrons +1605.04105 Mesoscale and Nanoscale Physics +1605.04106 Complex Variables +1605.04108 Phenomenology +1605.04111 Distributed, Parallel, and Cluster Computing +1605.04114 Mesoscale and Nanoscale Physics +1605.04115 Operator Algebras +1605.04116 Mesoscale and Nanoscale Physics +1605.04118 Logic +1605.04122 Computation and Language +1605.04124 Geometric Topology +1605.04125 Representation Theory +1605.04126 +1605.04127 Functional Analysis +1605.04128 Information Theory +1605.04129 Computer Vision and Pattern Recognition +1605.04134 Numerical Analysis +1605.04137 Analysis of PDEs +1605.04140 Statistical Mechanics +1605.04144 Networking and Internet Architecture +1605.04146 History and Overview +1605.04148 Probability +1605.04150 Analysis of PDEs +1605.04153 Disordered Systems and Neural Networks +1605.04154 +1605.04156 Computational Geometry +1605.04160 Data Structures and Algorithms +1605.04163 Differential Geometry +1605.04166 Other Quantitative Biology +1605.04167 General Physics +1605.04168 Cosmology and Nongalactic Astrophysics +1605.04169 Optics +1605.04173 Theory +1605.04174 +1605.04177 Robotics +1605.04178 Analysis of PDEs +1605.04179 Superconductivity +1605.04186 Analysis of PDEs +1605.04188 +1605.04189 +1605.04190 Differential Geometry +1605.04192 Information Theory +1605.04196 History and Philosophy of Physics +1605.04197 General Physics +1605.04198 Dynamical Systems +1605.04201 Information Theory +1605.04203 Algebraic Geometry +1605.04205 Representation Theory +1605.04207 Computational Complexity +1605.04209 Functional Analysis +1605.04212 Methodology +1605.04213 Materials Science +1605.04215 +1605.04217 Physics and Society +1605.04218 Artificial Intelligence +1605.04219 General Finance +1605.04226 Probability +1605.04229 Classical Physics +1605.04233 Computer Science and Game Theory +1605.04238 Computation and Language +1605.04239 Combinatorics +1605.04241 General Physics +1605.04243 Computer Vision and Pattern Recognition +1605.04247 General Physics +1605.04249 General Physics +1605.04251 Materials Science +1605.04260 Phenomenology +1605.04262 Machine Learning +1605.04264 Strongly Correlated Electrons +1605.04265 Computational Geometry +1605.04266 Quantum Algebra +1605.04267 Combinatorics +1605.04275 Classical Analysis and ODEs +1605.04277 +1605.04280 Phenomenology +1605.04281 Computation +1605.04284 Data Structures and Algorithms +1605.04291 Earth and Planetary Astrophysics +1605.04294 Solar and Stellar Astrophysics +1605.04295 Phenomenology +1605.04301 Combinatorics +math/0701184 Optimization and Control +1202.5018 Operator Algebras +1208.5235 Probability +1212.0649 Metric Geometry +1310.4782 Algebraic Geometry +1312.2093 Materials Science +1312.3187 Number Theory +1312.4152 Populations and Evolution +1312.4653 Fluid Dynamics +1401.2748 Commutative Algebra +1403.1204 +1403.3475 Analysis of PDEs +1403.4685 Representation Theory +1404.1250 Combinatorics +1404.4804 Populations and Evolution +1404.4999 Number Theory +1405.4474 Pricing of Securities +1406.6445 Combinatorics +1407.8519 Algebraic Geometry +1409.0800 Number Theory +1410.3228 Optics +1411.1825 Dynamical Systems +1411.2298 Group Theory +1411.7737 +1412.2870 Differential Geometry +1412.7331 Optimization and Control +1501.06869 Quantum Algebra +1502.07633 Complex Variables +1502.07871 Mesoscale and Nanoscale Physics +1503.04269 Learning +1503.06582 Group Theory +1503.07536 +1504.03684 High Energy Astrophysical Phenomena +1504.05113 +1505.05598 Combinatorics +1506.01374 Number Theory +1506.02577 Probability +1506.07075 Algebraic Topology +1507.02061 Statistics Theory +1507.02158 Learning +1507.02651 Pricing of Securities +1507.03372 Learning +1507.03764 Combinatorics +1507.04806 Analysis of PDEs +1507.06240 Data Structures and Algorithms +1508.00432 Differential Geometry +1508.00997 Classical Analysis and ODEs +1508.02742 Optimization and Control +1508.07235 +1509.01643 Fluid Dynamics +1509.02003 Mesoscale and Nanoscale Physics +1509.02868 Physics and Society +1509.04298 +1509.06532 Probability +1509.08431 Strongly Correlated Electrons +1510.02617 Cosmology and Nongalactic Astrophysics +1510.04727 Numerical Analysis +1510.06715 +1510.08234 Optimization and Control +1510.08652 +1511.01696 Discrete Mathematics +1511.02038 Discrete Mathematics +1511.02120 Mesoscale and Nanoscale Physics +1511.02485 Superconductivity +1511.05244 Lattice +1511.05511 Representation Theory +1511.08466 Pricing of Securities +1512.00295 Instrumentation and Detectors +1512.03768 Theory +1512.04177 Social and Information Networks +1512.04598 Optics +1512.05322 Theory +1512.05447 +1512.05555 +1512.06525 Plasma Physics +1512.07235 Mesoscale and Nanoscale Physics +1512.07836 Instrumentation and Detectors +1512.09057 Logic +1512.09374 +1601.03143 +1601.04769 Number Theory +1601.06555 Information Theory +1602.00673 Solar and Stellar Astrophysics +1602.01714 Exactly Solvable and Integrable Systems +1602.02024 Superconductivity +1602.04526 Atomic Physics +1602.05347 Differential Geometry +1602.06772 Strongly Correlated Electrons +1602.08046 Quantum Gases +1603.00401 Number Theory +1603.02511 Accelerator Physics +1603.04351 Computation and Language +1603.05385 Chemical Physics +1603.05514 Phenomenology +1603.05835 Optimization and Control +1603.06246 Theory +1603.07601 Phenomenology +1603.09687 Computer Vision and Pattern Recognition +1604.00088 Materials Science +1604.00184 Superconductivity +1604.00790 Computer Vision and Pattern Recognition +1604.01335 Computer Vision and Pattern Recognition +1604.01421 Data Structures and Algorithms +1604.01975 General Physics +1604.02069 Phenomenology +1604.03043 Soft Condensed Matter +1604.03577 Phenomenology +1604.03806 Optimization and Control +1604.03983 High Energy Astrophysical Phenomena +1604.08509 Mesoscale and Nanoscale Physics +1605.00486 Cosmology and Nongalactic Astrophysics +1605.01326 Computation and Language +1605.01728 Astrophysics of Galaxies +1605.02182 Mesoscale and Nanoscale Physics +1605.02355 Emerging Technologies +1605.02673 Data Structures and Algorithms +1605.03632 +1605.05077 Cryptography and Security +1605.06523 Artificial Intelligence +1605.07562 Fluid Dynamics +1605.07629 Materials Science +1605.07720 Phenomenology +1605.08658 Operator Algebras +1605.08808 Cryptography and Security +1605.08975 +1606.00065 Chemical Physics +1606.00067 Number Theory +1606.01127 Solar and Stellar Astrophysics +1606.02138 Metric Geometry +1606.03879 Lattice +1606.05257 Soft Condensed Matter +1606.05556 Numerical Analysis +1606.09074 Number Theory +1607.00154 Functional Analysis +1607.01218 Number Theory +1607.01266 Digital Libraries +1607.01663 Differential Geometry +1607.02562 Cryptography and Security +1607.02794 Soft Condensed Matter +1607.02970 Logic in Computer Science +1607.03174 Analysis of PDEs +1607.03343 Computer Vision and Pattern Recognition +1607.03529 Mesoscale and Nanoscale Physics +1607.03877 Logic in Computer Science +1607.04285 Astrophysics of Galaxies +1607.04377 +1607.04392 Representation Theory +1607.04655 Classical Physics +1607.04799 Quantum Gases +1607.04899 Information Theory +1607.04905 Information Theory +1607.04909 Data Structures and Algorithms +1607.05050 +1607.05055 Complex Variables +1607.05073 Numerical Analysis +1607.05307 Differential Geometry +1607.05400 +1607.05507 Distributed, Parallel, and Cluster Computing +1607.05549 Number Theory +1607.05682 Quantum Gases +1607.05720 Fluid Dynamics +1607.05721 Numerical Analysis +1607.05722 Fluid Dynamics +1607.05724 Astrophysics of Galaxies +1607.05725 Strongly Correlated Electrons +1607.05739 Computational Geometry +1607.05749 Learning +1607.05750 Classical Analysis and ODEs +1607.05757 Combinatorics +1607.05758 Computation +1607.05759 Dynamical Systems +1607.05760 Materials Science +1607.05761 Materials Science +1607.05762 Instrumentation and Methods for Astrophysics +1607.05765 Sound +1607.05766 Differential Geometry +1607.05768 High Energy Astrophysical Phenomena +1607.05771 Physics and Society +1607.05772 Algebraic Geometry +1607.05773 Number Theory +1607.05777 Geometric Topology +1607.05780 Optimization and Control +1607.05781 Computer Vision and Pattern Recognition +1607.05784 Networking and Internet Architecture +1607.05785 +1607.05786 Data Structures and Algorithms +1607.05787 +1607.05788 Combinatorics +1607.05790 Numerical Analysis +1607.05791 Computational Geometry +1607.05793 Mesoscale and Nanoscale Physics +1607.05801 Numerical Analysis +1607.05803 Optimization and Control +1607.05805 Quantum Gases +1607.05806 Information Retrieval +1607.05807 Numerical Analysis +1607.05808 Multimedia +1607.05809 Computation and Language +1607.05810 Artificial Intelligence +1607.05812 Graphics +1607.05816 Optimization and Control +1607.05817 Discrete Mathematics +1607.05818 Computation and Language +1607.05820 Fluid Dynamics +1607.05823 Astrophysics of Galaxies +1607.05824 Computational Geometry +1607.05827 Materials Science +1607.05828 Differential Geometry +1607.05829 +1607.05832 Machine Learning +1607.05833 Phenomenology +1607.05835 Earth and Planetary Astrophysics +1607.05837 +1607.05839 Computer Vision and Pattern Recognition +1607.05842 Probability +1607.05845 Artificial Intelligence +1607.05847 High Energy Astrophysical Phenomena +1607.05848 Algebraic Topology +1607.05853 Physics and Society +1607.05855 Biological Physics +1607.05858 Methodology +1607.05859 Probability +1607.05861 Applications +1607.05866 Theory +1607.05868 Cryptography and Security +1607.05869 Artificial Intelligence +1607.05871 Dynamical Systems +1607.05874 Methodology +1607.05876 History and Overview +1607.05878 Materials Science +1607.05879 Probability +1607.05883 Combinatorics +1607.05884 Statistics Theory +1607.05887 Information Theory +1607.05888 Artificial Intelligence +1607.05892 Combinatorics +1607.05893 Numerical Analysis +1607.05896 Statistics Theory +1607.05897 Instrumentation and Methods for Astrophysics +1607.05898 Numerical Analysis +1607.05901 Cryptography and Security +1607.05906 Artificial Intelligence +1607.05907 Differential Geometry +1607.05909 Artificial Intelligence +1607.05910 Computer Vision and Pattern Recognition +1607.05912 Artificial Intelligence +1607.05913 Artificial Intelligence +1607.05915 Probability +1607.05917 Analysis of PDEs +1607.05918 Optimization and Control +1607.05920 Analysis of PDEs +1607.05922 Distributed, Parallel, and Cluster Computing +1607.05923 Strongly Correlated Electrons +1607.05924 Optimization and Control +1607.05927 Optimization and Control +1607.05930 Combinatorics +1607.05933 Functional Analysis +1607.05934 High Energy Astrophysical Phenomena +1607.05936 Numerical Analysis +1607.05940 Mesoscale and Nanoscale Physics +1607.05943 High Energy Astrophysical Phenomena +1607.05944 Neural and Evolutionary Computing +1607.05945 Mesoscale and Nanoscale Physics +1607.05946 Human-Computer Interaction +1607.05948 General Physics +1607.05949 General Physics +1607.05950 Materials Science +1607.05951 Differential Geometry +1607.05952 Social and Information Networks +1607.05953 Chemical Physics +1607.05955 Materials Science +1607.05956 Logic in Computer Science +1607.05957 Dynamical Systems +1607.05958 Rings and Algebras +1607.05959 Geophysics +1607.05960 General Physics +1607.05962 Systems and Control +1607.05964 Classical Analysis and ODEs +1607.05965 Representation Theory +1607.05966 Information Theory +1607.05967 Computer Vision and Pattern Recognition +1607.05968 Artificial Intelligence +1607.05969 Computer Vision and Pattern Recognition +1607.05973 Quantum Algebra +1607.05974 Machine Learning +1607.05975 Computer Vision and Pattern Recognition +1607.05976 Algebraic Geometry +1607.05977 +1607.05978 Numerical Analysis +1607.05980 Statistics Theory +1607.05981 Computation +1607.05983 Numerical Analysis +1607.05985 +1607.05987 Phenomenology +1607.05988 Numerical Analysis +1607.05991 Analysis of PDEs +1607.05992 Differential Geometry +1607.05993 Systems and Control +1607.05996 Solar and Stellar Astrophysics +1607.05997 History and Overview +1607.06001 Theory +1607.06003 Medical Physics +1607.06004 Materials Science +1607.06006 Combinatorics +1607.06008 Differential Geometry +1607.06009 Fluid Dynamics +1607.06011 Learning +1607.06012 +1607.06014 Materials Science +1607.06015 Systems and Control +1607.06018 Optimization and Control +1607.06019 Dynamical Systems +1607.06020 Applications +1607.06027 Strongly Correlated Electrons +1607.06038 Computer Vision and Pattern Recognition +1607.06039 Number Theory +1607.06040 Classical Physics +1607.06042 Information Theory +1607.06044 Information Theory +1607.06050 Mesoscale and Nanoscale Physics +1607.06051 Methodology +1607.06053 Classical Analysis and ODEs +1607.06058 Probability +1607.06059 Instrumentation and Methods for Astrophysics +1607.06060 Geometric Topology +1607.06061 Combinatorics +1607.06062 Computer Vision and Pattern Recognition +1607.06063 Databases +1607.06065 Mesoscale and Nanoscale Physics +1607.06068 Data Structures and Algorithms +1607.06069 Classical Analysis and ODEs +1607.06072 Complex Variables +1607.06076 Accelerator Physics +1607.06078 Functional Analysis +math/0508203 History and Overview +1411.6782 Representation Theory +1511.00053 Multiagent Systems +1601.05587 Chemical Physics +1601.05600 Metric Geometry +0806.4788 +0809.4476 Other Condensed Matter +1009.0462 Mesoscale and Nanoscale Physics +1010.5221 Operator Algebras +1011.0772 +1011.4436 Operator Algebras +1101.2827 Operator Algebras +1107.1140 Number Theory +1208.4112 Mesoscale and Nanoscale Physics +1211.5930 +1311.0051 Number Theory +1311.1468 General Topology +1311.5975 +1312.1007 +1402.6629 +1403.2862 +1403.5806 Combinatorics +1407.3526 Symplectic Geometry +1407.7804 +1408.2173 Theory +1408.3312 Quantum Gases +1409.0996 Optics +1409.7424 Spectral Theory +1409.8612 +1411.3412 Differential Geometry +1411.3996 Mesoscale and Nanoscale Physics +1411.4358 Combinatorics +1411.4691 Statistics Theory +1412.0451 Earth and Planetary Astrophysics +1501.00090 Algebraic Geometry +1501.01915 Algebraic Geometry +1501.04922 Differential Geometry +1501.05392 Symbolic Computation +1502.07832 +1503.06449 Number Theory +1503.06605 +1505.02271 +1505.02807 Fluid Dynamics +1505.04015 Methodology +1505.06002 Information Theory +1506.01983 Logic +1507.00720 Machine Learning +1507.01033 Statistical Finance +1507.02837 Analysis of PDEs +1507.04197 Combinatorics +1507.06444 Functional Analysis +1508.01098 Geometric Topology +1508.01431 Geometric Topology +1508.01936 Classical Physics +1508.04019 Quantum Gases +1508.05437 Classical Analysis and ODEs +1508.05979 Analysis of PDEs +1508.06510 Complex Variables +1508.06890 Classical Analysis and ODEs +1509.04627 Distributed, Parallel, and Cluster Computing +1509.05015 Probability +1509.05357 +1509.05729 Experiment +1509.06428 Methodology +1509.07027 +1510.00523 Data Structures and Algorithms +1510.01917 Operator Algebras +1510.02572 Numerical Analysis +1510.02769 +1510.05186 Phenomenology +1510.05800 Analysis of PDEs +1510.06197 Social and Information Networks +1510.06468 +1510.07988 Phenomenology +1510.08051 +1511.02115 Mesoscale and Nanoscale Physics +1511.02974 Optimization and Control +1511.03876 Optimization and Control +1511.05196 Computer Science and Game Theory +1511.08312 Disordered Systems and Neural Networks +1512.00819 Statistics Theory +1512.02035 Quantum Gases +1512.02085 +1512.05852 Number Theory +1512.09051 Mesoscale and Nanoscale Physics +1601.02203 Theory +1601.03218 Complex Variables +1601.04230 Analysis of PDEs +1601.06456 Combinatorics +1602.01266 +1602.02174 Computer Science and Game Theory +1602.02928 Astrophysics of Galaxies +1602.04706 Networking and Internet Architecture +1602.05977 Mesoscale and Nanoscale Physics +1602.08159 +1603.00537 Materials Science +1603.00616 Materials Science +1603.01419 Robotics +1603.04881 Neurons and Cognition +1603.05947 Statistics Theory +1604.01104 Probability +1604.01863 Metric Geometry +1604.05186 Differential Geometry +1604.05867 Strongly Correlated Electrons +1604.06820 Commutative Algebra +1604.07000 Materials Science +1604.07287 Medical Physics +1604.08180 Probability +1604.08464 Systems and Control +1605.00416 Strongly Correlated Electrons +1605.00603 Theory +1605.02018 Data Analysis, Statistics and Probability +1605.02207 Mesoscale and Nanoscale Physics +1605.02435 Cryptography and Security +1605.03218 Analysis of PDEs +1605.04679 Disordered Systems and Neural Networks +1605.04838 Statistics Theory +1605.05347 Strongly Correlated Electrons +1605.05607 Category Theory +1605.06119 High Energy Astrophysical Phenomena +1605.07453 Phenomenology +1605.07529 Probability +1606.00301 Soft Condensed Matter +1606.01102 Neural and Evolutionary Computing +1606.01706 Analysis of PDEs +1606.02245 Computation and Language +1606.02625 Experiment +1606.02836 +1606.02916 Materials Science +1606.02944 Materials Science +1606.03823 Theory +1606.04961 Phenomenology +1606.05823 Phenomenology +1606.06027 +1606.06272 Statistical Mechanics +1606.08790 Metric Geometry +1607.00259 Computational Complexity +1607.04173 Statistical Mechanics +1607.04217 Statistical Mechanics +1607.04417 Strongly Correlated Electrons +1607.05184 Methodology +1607.06117 Solar and Stellar Astrophysics +1607.07552 Strongly Correlated Electrons +1607.08834 Experiment +1608.02860 Mesoscale and Nanoscale Physics +1608.03704 +1608.03851 Phenomenology +1608.03992 +1608.04918 Probability +1608.05327 Logic in Computer Science +1608.05542 Complex Variables +1608.06360 Strongly Correlated Electrons +1608.07447 Phenomenology +1608.08240 Phenomenology +1608.08529 Classical Analysis and ODEs +1609.00213 Functional Analysis +1609.00700 +1609.01479 Distributed, Parallel, and Cluster Computing +1609.02771 Number Theory +1609.03859 Disordered Systems and Neural Networks +1609.04597 Category Theory +1609.04911 +1609.05028 Phenomenology +1609.05567 Classical Physics +1609.05857 Statistical Mechanics +1609.06741 Systems and Control +1609.07915 Algebraic Geometry +1610.00786 Materials Science +1610.00980 +1610.02273 Hardware Architecture +1610.02920 Machine Learning +1610.03424 Differential Geometry +1610.04503 +1610.04640 Classical Physics +1610.05295 Soft Condensed Matter +1610.06675 Theory +1610.06760 Complex Variables +1610.07294 Data Structures and Algorithms +1610.07581 Strongly Correlated Electrons +1610.07860 Pattern Formation and Solitons +1610.08165 Dynamical Systems +1610.08279 Cryptography and Security +1610.09176 Quantum Gases +1610.09636 Solar and Stellar Astrophysics +1611.00142 Computer Vision and Pattern Recognition +1611.00231 Phenomenology +1611.00646 Strongly Correlated Electrons +1611.00852 Representation Theory +1611.00915 Classical Analysis and ODEs +1611.01234 Astrophysics of Galaxies +1611.01285 Economics +1611.01580 Phenomenology +1611.01742 Networking and Internet Architecture +1611.01812 Functional Analysis +1611.02243 Fluid Dynamics +1611.02292 Symplectic Geometry +1611.02304 Machine Learning +1611.02586 Solar and Stellar Astrophysics +1611.02641 Analysis of PDEs +1611.02692 +1611.02693 +1611.02694 Logic +1611.02695 Computation and Language +1611.02696 Materials Science +1611.02698 Systems and Control +1611.02701 +1611.02706 Astrophysics of Galaxies +1611.02707 Mesoscale and Nanoscale Physics +1611.02709 Astrophysics of Galaxies +1611.02711 Cosmology and Nongalactic Astrophysics +1611.02718 Earth and Planetary Astrophysics +1611.02719 +1611.02721 Information Theory +1611.02722 Mesoscale and Nanoscale Physics +1611.02725 Mesoscale and Nanoscale Physics +1611.02726 Instrumentation and Detectors +1611.02727 Number Theory +1611.02729 Geophysics +1611.02730 Computer Vision and Pattern Recognition +1611.02732 +1611.02735 Other Quantitative Biology +1611.02736 +1611.02738 +1611.02740 Dynamical Systems +1611.02741 Functional Analysis +1611.02742 Mesoscale and Nanoscale Physics +1611.02743 Dynamical Systems +1611.02744 Mesoscale and Nanoscale Physics +1611.02745 Mesoscale and Nanoscale Physics +1611.02746 Combinatorics +1611.02748 Superconductivity +1611.02751 +1611.02752 Spectral Theory +1611.02754 Computation +1611.02755 Artificial Intelligence +1611.02758 Distributed, Parallel, and Cluster Computing +1611.02760 Economics +1611.02761 Mesoscale and Nanoscale Physics +1611.02762 Statistics Theory +1611.02764 Computational Physics +1611.02766 Chemical Physics +1611.02767 Computer Vision and Pattern Recognition +1611.02768 Physics and Society +1611.02769 Earth and Planetary Astrophysics +1611.02771 Combinatorics +1611.02772 Theory +1611.02773 Soft Condensed Matter +1611.02774 Numerical Analysis +1611.02775 Computers and Society +1611.02776 Computer Vision and Pattern Recognition +1611.02777 Representation Theory +1611.02781 Classical Analysis and ODEs +1611.02782 Solar and Stellar Astrophysics +1611.02784 +1611.02785 Numerical Analysis +1611.02787 Cryptography and Security +1611.02788 Computer Vision and Pattern Recognition +1611.02791 Probability +1611.02792 Hardware Architecture +1611.02795 +1611.02801 Commutative Algebra +1611.02802 Methodology +1611.02803 Computer Vision and Pattern Recognition +1611.02805 Numerical Analysis +1611.02806 Social and Information Networks +1611.02807 Numerical Analysis +1611.02809 Physics and Society +1611.02812 Analysis of PDEs +1611.02814 Classical Physics +1611.02815 Information Retrieval +1611.02816 Databases +1611.02818 Applications +1611.02819 Combinatorics +1611.02820 Astrophysics of Galaxies +1611.02821 Cryptography and Security +1611.02822 Number Theory +1611.02824 Optimization and Control +1611.02825 Phenomenology +1611.02826 Commutative Algebra +1611.02829 Instrumentation and Methods for Astrophysics +1611.02830 Learning +1611.02831 Mathematical Software +1611.02832 Algebraic Geometry +1611.02833 Mesoscale and Nanoscale Physics +1611.02834 Materials Science +1611.02836 Networking and Internet Architecture +1611.02837 Materials Science +1611.02838 Functional Analysis +1611.02839 Computation and Language +1611.02841 Probability +1611.02842 Networking and Internet Architecture +1611.02844 +1611.02845 Methodology +1611.02846 Phenomenology +1611.02847 Mesoscale and Nanoscale Physics +1611.02849 Probability +1611.02850 Mesoscale and Nanoscale Physics +1611.02851 Probability +1611.02852 Atomic and Molecular Clusters +1611.02853 Networking and Internet Architecture +1611.02856 Strongly Correlated Electrons +1611.02858 Optics +1611.02860 Probability +1611.02861 Applications +1611.02862 Computer Vision and Pattern Recognition +1611.02865 Materials Science +1611.02866 Materials Science +1611.02869 Applications +1611.02871 Combinatorics +1611.02872 +1611.02873 Solar and Stellar Astrophysics +1611.02877 Mathematical Finance +1611.02879 Computer Vision and Pattern Recognition +1611.02880 Number Theory +1611.02881 Networking and Internet Architecture +1611.02882 High Energy Astrophysical Phenomena +1611.02883 Algebraic Geometry +1611.02884 Chemical Physics +1611.02885 Artificial Intelligence +1611.02886 Computer Vision and Pattern Recognition +1611.02888 Analysis of PDEs +1611.02889 Classical Analysis and ODEs +1611.02893 +1611.02894 Mesoscale and Nanoscale Physics +1611.02896 Statistical Mechanics +1611.02898 Statistical Mechanics +1611.02899 Optimization and Control +1611.02901 Combinatorics +1611.02903 Optimization and Control +1611.02905 Distributed, Parallel, and Cluster Computing +1611.02906 +1611.02908 Logic in Computer Science +1611.02909 Differential Geometry +1611.02910 Statistics Theory +1611.02911 Combinatorics +1611.02912 Theory +1611.02915 Hardware Architecture +1611.02916 Statistical Mechanics +1611.02917 Distributed, Parallel, and Cluster Computing +1611.02918 Optimization and Control +1611.02919 Analysis of PDEs +1611.02920 Networking and Internet Architecture +1611.02921 Biological Physics +1611.02923 Software Engineering +1611.02927 Strongly Correlated Electrons +1611.02928 Astrophysics of Galaxies +1611.02929 Distributed, Parallel, and Cluster Computing +1611.02930 Lattice +1611.02931 Lattice +1611.02933 Experiment +1611.02934 Combinatorics +1611.02936 +1611.02937 Theory +1611.02938 Algebraic Geometry +1611.02939 Phenomenology +1611.02942 Commutative Algebra +1611.02943 +1611.02944 Computation and Language +1611.02945 Quantitative Methods +1611.02946 Superconductivity +1611.02947 Probability +1611.02948 +1611.02949 Algebraic Geometry +1611.02951 Phenomenology +1611.02952 Probability +1611.02953 Number Theory +1611.02954 Probability +1611.02955 Optimization and Control +1611.02957 Classical Physics +1611.02958 Algebraic Geometry +1611.02961 Numerical Analysis +1611.02962 Strongly Correlated Electrons +1611.02963 General Physics +1611.02965 +1611.02966 Data Structures and Algorithms +1611.02967 Numerical Analysis +1611.02968 Cryptography and Security +1611.02970 Disordered Systems and Neural Networks +1611.02971 Complex Variables +1611.02974 General Physics +1611.02976 General Physics +1611.02978 Methodology +1611.02979 Functional Analysis +1611.02980 General Physics +1611.02981 Functional Analysis +1611.02983 Number Theory +1611.02986 High Energy Astrophysical Phenomena +1611.02988 Computation and Language +1611.02989 Information Theory +1611.02993 Numerical Analysis +1611.02997 Mesoscale and Nanoscale Physics +1611.02998 Differential Geometry +1611.03001 Algebraic Geometry +1611.03003 Instrumentation and Detectors +1611.03004 Dynamical Systems +1611.03005 Subcellular Processes +1611.03008 Differential Geometry +1611.03009 Probability +1611.03010 Probability +1611.03011 Analysis of PDEs +1611.03014 Information Theory +1611.03015 Statistics Theory +1611.03016 Networking and Internet Architecture +1611.03017 Algebraic Geometry +1611.03018 Soft Condensed Matter +1611.03019 Cryptography and Security +1611.03020 Phenomenology +1611.03021 Learning +1611.03023 Dynamical Systems +1611.03025 Dynamical Systems +1611.03026 Neurons and Cognition +1611.03027 Algebraic Geometry +1611.03030 Solar and Stellar Astrophysics +1611.03032 Materials Science +1611.03033 Spectral Theory +1611.03034 Statistical Mechanics +1611.03036 High Energy Astrophysical Phenomena +1611.03038 Algebraic Topology +1611.03039 Analysis of PDEs +1611.03040 Mesoscale and Nanoscale Physics +1611.03041 Atmospheric and Oceanic Physics +1611.03042 Statistics Theory +1611.03043 Number Theory +1611.03045 Number Theory +1611.03047 Atmospheric and Oceanic Physics +1611.03048 Statistical Mechanics +1611.03050 Mesoscale and Nanoscale Physics +1611.03052 Combinatorics +1611.03054 Information Theory +1611.03055 Physics and Society +1611.03057 Computation and Language +1611.03058 Algebraic Geometry +1611.03059 Computer Vision and Pattern Recognition +1611.03060 Information Theory +1611.03062 High Energy Astrophysical Phenomena +1611.03063 Statistics Theory +1611.03066 Cosmology and Nongalactic Astrophysics +1611.03067 Optimization and Control +1611.03069 Information Theory +1611.03072 Other Statistics +1611.03073 Other Statistics +1611.03074 Phenomenology +1611.03075 Combinatorics +1611.03077 +1611.03078 Logic +math-ph/0701054 +quant-ph/0211063 +quant-ph/0502085 +0903.1983 +1012.0234 Lattice +1102.1952 Spectral Theory +1102.3042 Theory +1110.3547 Neurons and Cognition +1206.1945 Combinatorics +1207.6927 Combinatorics +1209.5030 Number Theory +1305.6214 Complex Variables +1309.4299 Differential Geometry +1312.3270 Symbolic Computation +1312.6702 Analysis of PDEs +1401.0135 Mesoscale and Nanoscale Physics +1402.1937 Statistics Theory +1403.4385 Operator Algebras +1403.5478 Applications +1407.2125 Networking and Internet Architecture +1407.5197 Robotics +1407.6090 Artificial Intelligence +1410.0027 Algebraic Geometry +1411.1910 Mesoscale and Nanoscale Physics +1411.4273 Strongly Correlated Electrons +1502.04327 Representation Theory +1502.06827 Probability +1502.07674 Combinatorics +1503.05134 Dynamical Systems +1503.05316 Combinatorics +1503.08573 Combinatorics +1504.00254 Analysis of PDEs +1504.04862 Analysis of PDEs +1504.06862 Functional Analysis +1505.01667 Dynamical Systems +1505.06922 Algebraic Geometry +1506.00489 Analysis of PDEs +1506.02112 Algebraic Topology +1506.03749 Complex Variables +1506.08347 Computer Vision and Pattern Recognition +1507.04653 Phenomenology +1508.01247 Cosmology and Nongalactic Astrophysics +1508.02824 Risk Management +1508.07118 Analysis of PDEs +1508.07777 Mesoscale and Nanoscale Physics +1509.03380 Combinatorics +1509.05816 +1509.07416 Differential Geometry +1509.08438 +1510.01098 Computer Vision and Pattern Recognition +1510.01183 +1510.01320 Astrophysics of Galaxies +1510.02195 Combinatorics +1510.04540 Analysis of PDEs +1510.06181 Representation Theory +1510.06249 Number Theory +1510.06664 Emerging Technologies +1510.07534 Operator Algebras +1511.00879 Symplectic Geometry +1511.00891 Symplectic Geometry +1511.01902 Theory +1511.02476 Statistical Mechanics +1511.07458 Phenomenology +1512.00249 Theory +1512.00436 Strongly Correlated Electrons +1512.01376 Optics +1512.01488 Mathematical Finance +1512.02022 Optics +1512.02249 Fluid Dynamics +1512.05200 Differential Geometry +1512.06852 Strongly Correlated Electrons +1601.00087 Computation and Language +1601.00663 +1601.01204 Combinatorics +1601.02353 +1601.04927 Superconductivity +1601.06683 Social and Information Networks +1601.07219 +1601.07261 +1601.07887 Classical Analysis and ODEs +1602.01346 Computational Geometry +1602.01776 Number Theory +1602.02025 Strongly Correlated Electrons +1602.02944 Information Theory +1602.02974 Biological Physics +1602.05484 Mathematical Finance +1602.05933 Cosmology and Nongalactic Astrophysics +1602.06034 Experiment +1602.06278 Instrumentation and Detectors +1602.06594 Systems and Control +1602.08033 Social and Information Networks +1602.08579 Formal Languages and Automata Theory +1603.00856 Machine Learning +1603.01612 Instrumentation and Detectors +1603.02439 Experiment +1603.02817 Mesoscale and Nanoscale Physics +1603.02991 Experiment +1603.03290 Networking and Internet Architecture +1603.03426 Functional Analysis +1603.03439 Strongly Correlated Electrons +1603.04573 Differential Geometry +1603.05566 Physics and Society +1603.05643 Optimization and Control +1603.05646 Strongly Correlated Electrons +1603.07445 Social and Information Networks +1603.08545 Theory +1604.00683 Strongly Correlated Electrons +1604.01436 Probability +1604.02061 Spectral Theory +1604.03112 Mesoscale and Nanoscale Physics +1604.04201 +1604.05136 General Physics +1604.05284 Probability +1604.05849 Superconductivity +1604.06099 Phenomenology +1604.06878 Combinatorics +1604.06956 Pattern Formation and Solitons +1604.07849 Robotics +1605.00670 Phenomenology +1605.01340 Statistics Theory +1605.01416 Phenomenology +1605.03953 Statistical Mechanics +1605.04617 Classical Analysis and ODEs +1605.04917 Phenomenology +1605.05776 Information Theory +1605.06529 Dynamical Systems +1605.07118 +1605.08430 Phenomenology +1605.09396 Theory +1605.09580 Quantum Gases +1606.00859 +1606.00860 Number Theory +1606.01249 Mesoscale and Nanoscale Physics +1606.05270 Phenomenology +1606.05491 Computation and Language +1606.05492 Machine Learning +1606.05635 +1606.06632 Theory +1606.07592 Rings and Algebras +1606.08356 Phenomenology +1606.08962 Artificial Intelligence +1606.08988 Optimization and Control +1607.00232 +1607.00406 Classical Physics +1607.01739 Algebraic Geometry +1607.02498 Instrumentation and Detectors +1607.03851 Analysis of PDEs +1607.05444 +1607.05664 Strongly Correlated Electrons +1607.05894 Commutative Algebra +1607.06706 Sound +1607.07953 Superconductivity +1607.08680 Strongly Correlated Electrons +1607.08717 Probability +1608.00467 Strongly Correlated Electrons +1608.00695 Robotics +1608.01735 Optimization and Control +1608.02389 Discrete Mathematics +1608.02627 Statistical Mechanics +1608.03283 Solar and Stellar Astrophysics +1608.03587 Computation and Language +1608.03982 Phenomenology +1608.04103 Formal Languages and Automata Theory +1608.04162 Human-Computer Interaction +1608.05264 General Physics +1608.05673 Phenomenology +1608.05976 Mesoscale and Nanoscale Physics +1608.05989 Materials Science +1608.06541 Statistics Theory +1608.06795 Instrumentation and Methods for Astrophysics +1608.06905 Spectral Theory +1608.06936 Instrumentation and Detectors +1608.06937 Phenomenology +1608.06938 Astrophysics of Galaxies +1608.06939 Atomic Physics +1608.06940 +1608.06944 Combinatorics +1608.06949 Computers and Society +1608.06950 Statistical Mechanics +1608.06953 Probability +1608.06954 Artificial Intelligence +1608.06959 Optimization and Control +1608.06961 Combinatorics +1608.06965 Algebraic Geometry +1608.06967 Combinatorics +1608.06968 Probability +1608.06969 Combinatorics +1608.06970 +1608.06972 Emerging Technologies +1608.06975 Analysis of PDEs +1608.06976 Classical Analysis and ODEs +1608.06977 Probability +1608.06981 Combinatorics +1608.06982 Classical Analysis and ODEs +1608.06983 Mesoscale and Nanoscale Physics +1608.06985 Computer Vision and Pattern Recognition +1608.06988 Functional Analysis +1608.06989 Combinatorics +1608.06991 +1608.06996 Combinatorics +1608.06998 Combinatorics +1608.07000 Combinatorics +1608.07001 Artificial Intelligence +1608.07002 Data Structures and Algorithms +1608.07006 Probability +1608.07007 Chemical Physics +1608.07010 Analysis of PDEs +1608.07014 Statistics Theory +1608.07015 Information Theory +1608.07021 Combinatorics +1608.07022 Data Structures and Algorithms +1608.07026 Dynamical Systems +1608.07027 Optics +1608.07028 Combinatorics +1608.07029 Computation +1608.07032 Number Theory +1608.07033 Fluid Dynamics +1608.07034 Mesoscale and Nanoscale Physics +1608.07035 Data Analysis, Statistics and Probability +1608.07036 Hardware Architecture +1608.07040 Earth and Planetary Astrophysics +1608.07041 Phenomenology +1608.07047 Mesoscale and Nanoscale Physics +1608.07048 Computation +1608.07050 Geometric Topology +1608.07051 Learning +1608.07052 Plasma Physics +1608.07053 Instrumentation and Methods for Astrophysics +1608.07054 Algebraic Geometry +1608.07056 Computational Geometry +1608.07058 Quantitative Methods +1608.07060 Systems and Control +1608.07061 Probability +1608.07062 Analysis of PDEs +1608.07063 Number Theory +1608.07067 Analysis of PDEs +1608.07069 Instrumentation and Detectors +1608.07070 Materials Science +1608.07071 Analysis of PDEs +1608.07072 Combinatorics +1608.07074 High Energy Astrophysical Phenomena +1608.07075 Statistical Mechanics +1608.07076 Computation and Language +1608.07078 Instrumentation and Methods for Astrophysics +1608.07079 Dynamical Systems +1608.07082 Analysis of PDEs +1608.07083 Combinatorics +1608.07085 Computers and Society +1608.07086 +1608.07087 Materials Science +1608.07089 Complex Variables +1608.07091 Statistical Mechanics +1608.07092 Soft Condensed Matter +1608.07093 Materials Science +1608.07097 Mesoscale and Nanoscale Physics +1608.07098 Soft Condensed Matter +1608.07103 Networking and Internet Architecture +1608.07113 Materials Science +1608.07115 Computation and Language +1608.07116 Commutative Algebra +1608.07117 Artificial Intelligence +1608.07119 Materials Science +1608.07122 Materials Science +1608.07124 Probability +1608.07125 +1608.07126 Materials Science +1608.07132 Materials Science +1608.07134 Instrumentation and Detectors +1608.07136 +1608.07138 Computer Vision and Pattern Recognition +1608.07141 Group Theory +1608.07144 General Topology +1608.07146 Cryptography and Security +1608.07147 Complex Variables +1608.07148 Numerical Analysis +1608.07149 Probability +1608.07150 Representation Theory +1608.07155 Distributed, Parallel, and Cluster Computing +1608.07156 Materials Science +1608.07158 Pricing of Securities +1608.07159 Learning +1608.07160 Complex Variables +1608.07161 Programming Languages +1608.07164 Combinatorics +1608.07165 Combinatorics +1608.07166 Combinatorics +1608.07167 Combinatorics +1608.07168 Combinatorics +1608.07169 Analysis of PDEs +1608.07170 Optimization and Control +1608.07171 Materials Science +1608.07174 Complex Variables +1608.07175 General Physics +1608.07176 Materials Science +1608.07180 Methodology +1608.07181 Solar and Stellar Astrophysics +1608.07186 Statistics Theory +1608.07189 +1608.07190 Materials Science +1608.07193 Statistical Finance +1608.07195 Phenomenology +1608.07196 Phenomenology +1608.07199 Classical Analysis and ODEs +1608.07202 Information Theory +1608.07203 Materials Science +1608.07204 Methodology +1608.07205 Statistical Mechanics +1608.07206 Programming Languages +1608.07207 Numerical Analysis +1608.07213 +1608.07215 Cosmology and Nongalactic Astrophysics +1608.07217 Dynamical Systems +1608.07221 Materials Science +1608.07222 Soft Condensed Matter +1608.07223 Artificial Intelligence +1608.07224 Social and Information Networks +1608.07225 Artificial Intelligence +1608.07228 Operator Algebras +1608.07229 Metric Geometry +1608.07230 Astrophysics of Galaxies +1608.07232 Tissues and Organs +1608.07233 Emerging Technologies +1608.07238 Algebraic Topology +1608.07239 Numerical Analysis +1608.07241 Machine Learning +1608.07242 Computer Vision and Pattern Recognition +1608.07244 Neurons and Cognition +1608.07245 Optics +1608.07247 Combinatorics +1608.07250 Soft Condensed Matter +1608.07251 Learning +1608.07253 Information Retrieval +1608.07256 Phenomenology +1608.07257 History and Philosophy of Physics +1608.07258 Dynamical Systems +1608.07259 Molecular Networks +1608.07260 Discrete Mathematics +1608.07262 Theory +1608.07263 Earth and Planetary Astrophysics +1608.07265 +1608.07266 Soft Condensed Matter +1608.07268 Numerical Analysis +1608.07269 Lattice +1608.07270 Metric Geometry +1608.07272 Theory +1608.07276 Analysis of PDEs +1608.07277 Strongly Correlated Electrons +astro-ph/0410439 +astro-ph/0607067 +q-bio/0507037 Neurons and Cognition +0712.1685 Phenomenology +1107.5073 Quantum Algebra +1111.2539 Theory +1203.2995 Systems and Control +1204.3642 Analysis of PDEs +1207.0529 Quantum Algebra +1208.3035 Instrumentation and Methods for Astrophysics +1209.5269 Mesoscale and Nanoscale Physics +1211.5821 Algebraic Geometry +1302.1006 Chaotic Dynamics +1302.2529 Distributed, Parallel, and Cluster Computing +1307.5884 Functional Analysis +1307.6208 Functional Analysis +1310.4054 Probability +1401.4017 Phenomenology +1401.6782 Representation Theory +1404.0770 Dynamical Systems +1404.1639 Differential Geometry +1405.2731 Spectral Theory +1405.4683 Algebraic Geometry +1406.3317 +1407.1872 Instrumentation and Methods for Astrophysics +1409.1430 Analysis of PDEs +1409.5767 Combinatorics +1412.5756 Operator Algebras +1501.00559 +1501.00869 Combinatorics +1501.03785 +1501.07177 +1502.02197 Group Theory +1502.06280 Analysis of PDEs +1503.00214 Machine Learning +1503.05799 Commutative Algebra +1505.02817 Mesoscale and Nanoscale Physics +1505.05207 Differential Geometry +1505.06700 Probability +1506.00236 General Finance +1506.03638 +1506.04029 +1507.01310 Instrumentation and Detectors +1507.04725 Probability +1507.06631 Representation Theory +1507.07069 Algebraic Geometry +1507.07541 Theory +1508.00371 Group Theory +1508.02473 Statistics Theory +1508.02906 Populations and Evolution +1508.04585 +1509.01609 Dynamical Systems +1509.02849 Cryptography and Security +1509.03557 Computer Vision and Pattern Recognition +1509.04038 Probability +1509.05075 Algebraic Topology +1509.07550 +1509.09047 Distributed, Parallel, and Cluster Computing +1510.00046 Algebraic Geometry +1510.01048 Probability +1510.01676 Applications +1510.01913 Logic +1510.05931 Optics +1510.06519 Number Theory +1510.06537 Cosmology and Nongalactic Astrophysics +1510.06681 Analysis of PDEs +1510.06927 Phenomenology +1510.08182 Mesoscale and Nanoscale Physics +1511.00269 Theory +1511.04837 Functional Analysis +1511.06427 Neurons and Cognition +1511.07985 Differential Geometry +1512.03134 +1512.03403 Cosmology and Nongalactic Astrophysics +1512.04489 Materials Science +1512.06312 Algebraic Geometry +1512.09059 Statistical Mechanics +1601.01345 Machine Learning +1601.01490 Physics and Society +1601.01618 Mesoscale and Nanoscale Physics +1601.02112 Combinatorics +1601.03485 Mesoscale and Nanoscale Physics +1601.06430 Fluid Dynamics +1601.07176 Superconductivity +1601.07458 +1601.07528 +1602.00233 +1602.01466 Optics +1602.02984 Number Theory +1602.04184 Computer Science and Game Theory +1602.04904 Fluid Dynamics +1602.05421 Computational Physics +1602.05968 High Energy Astrophysical Phenomena +1602.06048 +1602.07689 Astrophysics of Galaxies +1602.08451 Digital Libraries +1602.09028 Information Theory +1603.00121 Statistical Mechanics +1603.01063 Mesoscale and Nanoscale Physics +1603.03322 Phenomenology +1603.05476 Materials Science +1603.06875 Phenomenology +1603.06983 +1603.07888 Computation +1603.07926 Cryptography and Security +1603.08075 Statistical Mechanics +1603.08703 Soft Condensed Matter +1603.09020 Accelerator Physics +1604.00035 Classical Physics +1604.00500 Distributed, Parallel, and Cluster Computing +1604.01373 +1604.01508 Mesoscale and Nanoscale Physics +1604.01639 Theory +1604.01730 Quantum Gases +1604.03932 Analysis of PDEs +1604.04800 Neurons and Cognition +1604.04801 Neurons and Cognition +1604.05130 Differential Geometry +1604.06645 Experiment +1604.07365 Phenomenology +1604.08298 Analysis of PDEs +1604.08713 Number Theory +1604.08919 Optics +1605.00368 Functional Analysis +1605.00531 +1605.03005 Neurons and Cognition +1605.03534 +1605.04032 Mesoscale and Nanoscale Physics +1605.04054 Soft Condensed Matter +1605.04191 Soft Condensed Matter +1605.04815 Soft Condensed Matter +1605.05372 Analysis of PDEs +1605.05397 Applications +1605.06451 Machine Learning +1605.07068 Logic in Computer Science +1605.07292 Differential Geometry +1605.07572 Soft Condensed Matter +1605.07779 Learning +1605.07839 Complex Variables +1605.08144 Classical Physics +1605.08700 Astrophysics of Galaxies +1605.09260 Algebraic Geometry +1606.00007 Mesoscale and Nanoscale Physics +1606.00018 Astrophysics of Galaxies +1606.04009 Statistical Mechanics +1606.04253 Computational Complexity +1606.05713 Astrophysics of Galaxies +1606.08158 Differential Geometry +1606.08206 Atomic Physics +1607.00978 Algebraic Geometry +1607.01023 Cosmology and Nongalactic Astrophysics +1607.01682 Instrumentation and Methods for Astrophysics +1607.03003 +1607.05732 Astrophysics of Galaxies +1607.05742 Biological Physics +1607.06105 Theory +1607.06528 Soft Condensed Matter +1607.08328 Phenomenology +1607.08394 Information Theory +1607.08531 +1607.08700 Complex Variables +1608.01214 Theory +1608.01452 +1608.02412 Optimization and Control +1608.02571 Soft Condensed Matter +1608.02673 Algebraic Topology +1608.03772 High Energy Astrophysical Phenomena +1608.05295 Social and Information Networks +1608.05372 Combinatorics +1608.05591 +1608.05869 Networking and Internet Architecture +1608.06000 Materials Science +1608.06137 Number Theory +1608.06166 Multiagent Systems +1608.06190 Analysis of PDEs +1608.06513 Astrophysics of Galaxies +1608.06521 Computer Vision and Pattern Recognition +1608.06584 +1608.06594 Solar and Stellar Astrophysics +1608.06627 Medical Physics +1608.06628 Materials Science +1608.06630 Functional Analysis +1608.06638 Theory +1608.06644 Algebraic Geometry +1608.06645 Instrumentation and Methods for Astrophysics +1608.06646 Combinatorics +1608.06651 Information Retrieval +1608.06654 Computational Engineering, Finance, and Science +1608.06655 Instrumentation and Detectors +1608.06656 Information Retrieval +1608.06661 Combinatorics +1608.06664 Learning +1608.06665 Biomolecules +1608.06667 Applications +1608.06668 Medical Physics +1608.06670 Commutative Algebra +1608.06671 Disordered Systems and Neural Networks +1608.06674 Information Theory +1608.06676 Networking and Internet Architecture +1608.06678 Classical Analysis and ODEs +1608.06680 Analysis of PDEs +1608.06682 Applications +1608.06683 Superconductivity +1608.06687 Rings and Algebras +1608.06688 Superconductivity +1608.06691 Symbolic Computation +1608.06693 Symbolic Computation +1608.06694 Networking and Internet Architecture +1608.06696 Distributed, Parallel, and Cluster Computing +1608.06697 Computation and Language +1608.06700 Numerical Analysis +1608.06707 Algebraic Topology +1608.06708 Number Theory +1608.06709 Computer Vision and Pattern Recognition +1608.06711 Phenomenology +1608.06712 K-Theory and Homology +1608.06713 Computer Vision and Pattern Recognition +1608.06716 Computer Vision and Pattern Recognition +1608.06719 Earth and Planetary Astrophysics +1608.06721 Numerical Analysis +1608.06722 +1608.06723 Tissues and Organs +1608.06724 Computational Complexity +1608.06726 Symplectic Geometry +1608.06728 Functional Analysis +1608.06729 Logic in Computer Science +1608.06730 Analysis of PDEs +1608.06736 Probability +1608.06737 Number Theory +1608.06738 Classical Analysis and ODEs +1608.06740 Statistics Theory +1608.06745 Space Physics +1608.06747 Analysis of PDEs +1608.06748 Information Theory +1608.06749 Information Theory +1608.06750 Fluid Dynamics +1608.06752 Instrumentation and Methods for Astrophysics +1608.06753 Cryptography and Security +1608.06754 Networking and Internet Architecture +1608.06756 Astrophysics of Galaxies +1608.06757 Computation and Language +1608.06759 Software Engineering +1608.06761 Computer Vision and Pattern Recognition +1608.06764 +1608.06767 Robotics +1608.06768 Earth and Planetary Astrophysics +1608.06769 Computation +1608.06771 Optimization and Control +1608.06774 Group Theory +1608.06775 Dynamical Systems +1608.06776 Instrumentation and Methods for Astrophysics +1608.06777 Computational Physics +1608.06778 Medical Physics +1608.06779 Rings and Algebras +1608.06782 +1608.06784 Number Theory +1608.06785 Probability +1608.06787 Artificial Intelligence +1608.06790 Complex Variables +1608.06791 Methodology +1608.06792 Analysis of PDEs +1608.06793 Rings and Algebras +1608.06794 Computation and Language +1608.06797 Discrete Mathematics +1608.06798 Functional Analysis +1608.06800 Computer Vision and Pattern Recognition +1608.06804 Combinatorics +1608.06805 Applications +1608.06808 Optimization and Control +1608.06809 Classical Physics +1608.06810 Number Theory +1608.06811 Rings and Algebras +1608.06815 Phenomenology +1608.06822 General Physics +1608.06825 Geophysics +1608.06830 Information Theory +1608.06833 Phenomenology +1608.06834 History and Overview +1608.06837 Statistical Mechanics +1608.06838 Analysis of PDEs +1608.06842 Metric Geometry +1608.06843 Instrumentation and Methods for Astrophysics +1608.06844 Geometric Topology +1608.06847 Number Theory +1608.06848 Combinatorics +1608.06852 Analysis of PDEs +1608.06853 Materials Science +1608.06855 Materials Science +1608.06859 Materials Science +1608.06861 Distributed, Parallel, and Cluster Computing +1608.06862 Quantum Gases +1608.06863 Computer Vision and Pattern Recognition +1608.06866 Strongly Correlated Electrons +1608.06871 Numerical Analysis +1608.06875 Differential Geometry +1608.06876 Information Retrieval +1608.06877 Combinatorics +1608.06878 History and Philosophy of Physics +1608.06879 Optimization and Control +1608.06880 Combinatorics +1608.06881 Mesoscale and Nanoscale Physics +1608.06883 Soft Condensed Matter +1608.06885 +1608.06887 Robotics +1608.06889 +1608.06890 Differential Geometry +1608.06891 Computer Vision and Pattern Recognition +1608.06893 Numerical Analysis +1608.06894 Computational Physics +1608.06896 Phenomenology +1608.06897 Quantitative Methods +1608.06898 Fluid Dynamics +1608.06899 Theory +1608.06900 +1608.06901 Materials Science +1608.06903 Methodology +1608.06904 Representation Theory +1608.06913 Chemical Physics +1608.06914 +1608.06918 Biological Physics +1608.06919 Earth and Planetary Astrophysics +1608.06924 Other Quantitative Biology +1608.06930 Earth and Planetary Astrophysics +1608.06933 Differential Geometry +1608.06935 Experiment +astro-ph/9702038 +astro-ph/9702211 +astro-ph/9703118 +astro-ph/9703119 +astro-ph/9703145 +astro-ph/9703201 +astro-ph/9704070 +astro-ph/9704251 +astro-ph/9705166 +astro-ph/9705219 +astro-ph/9707036 +astro-ph/9708004 +astro-ph/9708036 +astro-ph/9710048 +astro-ph/9710332 +astro-ph/9712121 +astro-ph/9801022 +astro-ph/9802133 +astro-ph/9802209 +astro-ph/9803150 +astro-ph/9803271 +astro-ph/9803272 +astro-ph/9805114 +astro-ph/9806127 +astro-ph/9808099 +astro-ph/9810257 +astro-ph/9810509 +astro-ph/9811252 +astro-ph/9811430 +astro-ph/9811431 +astro-ph/9812204 +astro-ph/9901213 +astro-ph/9901268 +astro-ph/9902046 +astro-ph/9902265 +astro-ph/9903270 +astro-ph/9903361 +astro-ph/9903397 +astro-ph/9904021 +astro-ph/9904396 +astro-ph/9906210 +astro-ph/9906415 +cond-mat/0407197 Mesoscale and Nanoscale Physics +gr-qc/9511033 +gr-qc/9701003 +gr-qc/9703021 +gr-qc/9703027 +gr-qc/9703050 +gr-qc/9704008 +gr-qc/9704023 +gr-qc/9706011 +gr-qc/9706033 +gr-qc/9706057 +gr-qc/9708012 +gr-qc/9708023 +gr-qc/9708024 +gr-qc/9709026 +gr-qc/9709032 +gr-qc/9710042 +gr-qc/9710055 +gr-qc/9710140 +gr-qc/9711030 +gr-qc/9711070 +gr-qc/9712050 +gr-qc/9712052 +gr-qc/9712063 +gr-qc/9712067 +gr-qc/9801016 +gr-qc/9801067 +gr-qc/9802008 +gr-qc/9802015 +gr-qc/9803062 +gr-qc/9803066 +gr-qc/9804040 +gr-qc/9804056 +gr-qc/9804088 +gr-qc/9805039 +gr-qc/9805055 +gr-qc/9805101 +gr-qc/9806012 +gr-qc/9806040 +gr-qc/9806047 +gr-qc/9806052 +gr-qc/9806069 +gr-qc/9806077 +gr-qc/9806085 +gr-qc/9806093 +gr-qc/9806121 +gr-qc/9807009 +gr-qc/9808019 +gr-qc/9808043 +gr-qc/9808057 +gr-qc/9809033 +gr-qc/9809034 +gr-qc/9809050 +gr-qc/9810003 +gr-qc/9810005 +gr-qc/9810024 +gr-qc/9810049 +gr-qc/9811001 +gr-qc/9811019 +gr-qc/9811024 +gr-qc/9811067 +gr-qc/9812032 +gr-qc/9812041 +gr-qc/9812045 +gr-qc/9812069 +gr-qc/9901032 +gr-qc/9901074 +gr-qc/9902006 +gr-qc/9902007 +gr-qc/9902021 +gr-qc/9902052 +gr-qc/9903042 +gr-qc/9903081 +gr-qc/9903100 +gr-qc/9904016 +gr-qc/9904049 +gr-qc/9904059 +gr-qc/9904082 +gr-qc/9905012 +gr-qc/9905017 +gr-qc/9905032 +gr-qc/9905039 +gr-qc/9906019 +gr-qc/9906054 +gr-qc/9906055 +gr-qc/9906107 +hep-lat/9707001 Lattice +hep-lat/9710048 Lattice +hep-lat/9710066 Lattice +hep-lat/9711009 Lattice +hep-lat/9711030 Lattice +hep-lat/9712003 Lattice +hep-lat/9712016 Lattice +hep-lat/9801008 Lattice +hep-lat/9801018 Lattice +hep-lat/9801029 Lattice +hep-lat/9803016 Lattice +hep-lat/9805015 Lattice +hep-lat/9805019 Lattice +hep-lat/9805020 Lattice +hep-lat/9805023 Lattice +hep-lat/9805032 Lattice +hep-lat/9806003 Lattice +hep-lat/9806014 Lattice +hep-lat/9806018 Lattice +hep-lat/9806027 Lattice +hep-lat/9806029 Lattice +hep-lat/9806036 Lattice +hep-lat/9807012 Lattice +hep-lat/9807015 Lattice +hep-lat/9809160 Lattice +hep-lat/9811012 Lattice +hep-lat/9811035 Lattice +hep-lat/9812009 Lattice +hep-lat/9901003 Lattice +hep-lat/9901006 Lattice +hep-lat/9902015 Lattice +hep-lat/9903006 Lattice +hep-lat/9903019 Lattice +hep-lat/9905015 Lattice +hep-ph/9604282 Phenomenology +hep-ph/9609441 Phenomenology +hep-ph/9610381 Phenomenology +hep-ph/9612397 Phenomenology +hep-ph/9701343 Phenomenology +hep-ph/9702321 Phenomenology +hep-ph/9702331 Phenomenology +hep-ph/9704305 Phenomenology +hep-ph/9704306 Phenomenology +hep-ph/9704371 Phenomenology +hep-ph/9704408 Phenomenology +hep-ph/9704425 Phenomenology +hep-ph/9704426 Phenomenology +hep-ph/9705210 Phenomenology +hep-ph/9705300 Phenomenology +hep-ph/9705356 Phenomenology +hep-ph/9705357 Phenomenology +hep-ph/9705392 Phenomenology +hep-ph/9705447 Phenomenology +hep-ph/9706227 Phenomenology +hep-ph/9706235 Phenomenology +hep-ph/9706273 Phenomenology +hep-ph/9706309 Phenomenology +hep-ph/9706397 Phenomenology +hep-ph/9706412 Phenomenology +hep-ph/9706425 Phenomenology +hep-ph/9706443 Phenomenology +hep-ph/9706501 Phenomenology +hep-ph/9706529 Phenomenology +hep-ph/9706541 Phenomenology +hep-ph/9706542 Phenomenology +hep-ph/9707208 Phenomenology +hep-ph/9707315 Phenomenology +hep-ph/9707366 Phenomenology +hep-ph/9707429 Phenomenology +hep-ph/9707473 Phenomenology +hep-ph/9707485 Phenomenology +hep-ph/9708202 Phenomenology +hep-ph/9708218 Phenomenology +hep-ph/9708219 Phenomenology +hep-ph/9708223 Phenomenology +hep-ph/9708281 Phenomenology +hep-ph/9708305 Phenomenology +hep-ph/9708405 Phenomenology +hep-ph/9708464 Phenomenology +hep-ph/9708481 Phenomenology +hep-ph/9709214 Phenomenology +hep-ph/9709306 Phenomenology +hep-ph/9709320 Phenomenology +hep-ph/9709392 Phenomenology +hep-ph/9709410 Phenomenology +hep-ph/9709411 Phenomenology +hep-ph/9709497 Phenomenology +hep-ph/9709498 Phenomenology +hep-ph/9709506 Phenomenology +hep-ph/9710206 Phenomenology +hep-ph/9710213 Phenomenology +hep-ph/9710223 Phenomenology +hep-ph/9710236 Phenomenology +hep-ph/9710275 Phenomenology +hep-ph/9710300 Phenomenology +hep-ph/9710405 Phenomenology +hep-ph/9710436 Phenomenology +hep-ph/9710441 Phenomenology +hep-ph/9710443 Phenomenology +hep-ph/9710444 Phenomenology +hep-ph/9710490 Phenomenology +hep-ph/9710512 Phenomenology +hep-ph/9711214 Phenomenology +hep-ph/9711257 Phenomenology +hep-ph/9711309 Phenomenology +hep-ph/9711323 Phenomenology +hep-ph/9711325 Phenomenology +hep-ph/9711338 Phenomenology +hep-ph/9711363 Phenomenology +hep-ph/9711398 Phenomenology +hep-ph/9711400 Phenomenology +hep-ph/9711412 Phenomenology +hep-ph/9711447 Phenomenology +hep-ph/9711452 Phenomenology +hep-ph/9711501 Phenomenology +hep-ph/9712333 Phenomenology +hep-ph/9712339 Phenomenology +hep-ph/9712353 Phenomenology +hep-ph/9712357 Phenomenology +hep-ph/9712379 Phenomenology +hep-ph/9712384 Phenomenology +hep-ph/9712385 Phenomenology +hep-ph/9712389 Phenomenology +hep-ph/9712463 Phenomenology +hep-ph/9712467 Phenomenology +hep-ph/9712497 Phenomenology +hep-ph/9712506 Phenomenology +hep-ph/9801232 Phenomenology +hep-ph/9801239 Phenomenology +hep-ph/9801240 Phenomenology +hep-ph/9801245 Phenomenology +hep-ph/9801257 Phenomenology +hep-ph/9801262 Phenomenology +hep-ph/9801265 Phenomenology +hep-ph/9801280 Phenomenology +hep-ph/9801308 Phenomenology +hep-ph/9801334 Phenomenology +hep-ph/9801348 Phenomenology +hep-ph/9801349 Phenomenology +hep-ph/9801380 Phenomenology +hep-ph/9801397 Phenomenology +hep-ph/9801432 Phenomenology +hep-ph/9801434 Phenomenology +hep-ph/9801436 Phenomenology +hep-ph/9801444 Phenomenology +hep-ph/9802238 Phenomenology +hep-ph/9802251 Phenomenology +hep-ph/9802277 Phenomenology +hep-ph/9802352 Phenomenology +hep-ph/9802353 Phenomenology +hep-ph/9802377 Phenomenology +hep-ph/9802393 Phenomenology +hep-ph/9802409 Phenomenology +hep-ph/9803231 Phenomenology +hep-ph/9803284 Phenomenology +hep-ph/9803356 Phenomenology +hep-ph/9803368 Phenomenology +hep-ph/9803410 Phenomenology +hep-ph/9803412 Phenomenology +hep-ph/9803426 Phenomenology +hep-ph/9803451 Phenomenology +hep-ph/9803457 Phenomenology +hep-ph/9803472 Phenomenology +hep-ph/9804227 Phenomenology +hep-ph/9804234 Phenomenology +hep-ph/9804243 Phenomenology +hep-ph/9804248 Phenomenology +hep-ph/9804279 Phenomenology +hep-ph/9804283 Phenomenology +hep-ph/9804311 Phenomenology +hep-ph/9804325 Phenomenology +hep-ph/9804355 Phenomenology +hep-ph/9804447 Phenomenology +hep-ph/9805211 Phenomenology +hep-ph/9805243 Phenomenology +hep-ph/9805264 Phenomenology +hep-ph/9805289 Phenomenology +hep-ph/9805291 Phenomenology +hep-ph/9805337 Phenomenology +hep-ph/9805403 Phenomenology +hep-ph/9805422 Phenomenology +hep-ph/9805477 Phenomenology +hep-ph/9805488 Phenomenology +hep-ph/9805503 Phenomenology +hep-ph/9806221 Phenomenology +hep-ph/9806235 Phenomenology +hep-ph/9806270 Phenomenology +hep-ph/9806287 Phenomenology +hep-ph/9806293 Phenomenology +hep-ph/9806296 Phenomenology +hep-ph/9806306 Phenomenology +hep-ph/9806311 Phenomenology +hep-ph/9806346 Phenomenology +hep-ph/9806359 Phenomenology +hep-ph/9806360 Phenomenology +hep-ph/9806397 Phenomenology +hep-ph/9806416 Phenomenology +hep-ph/9806446 Phenomenology +hep-ph/9806468 Phenomenology +hep-ph/9806486 Phenomenology +hep-ph/9806515 Phenomenology +hep-ph/9806522 Phenomenology +hep-ph/9807254 Phenomenology +hep-ph/9807277 Phenomenology +hep-ph/9807286 Phenomenology +hep-ph/9807289 Phenomenology +hep-ph/9807336 Phenomenology +hep-ph/9807363 Phenomenology +hep-ph/9807371 Phenomenology +hep-ph/9807387 Phenomenology +hep-ph/9807418 Phenomenology +hep-ph/9807438 Phenomenology +hep-ph/9807469 Phenomenology +hep-ph/9807492 Phenomenology +hep-ph/9807509 Phenomenology +hep-ph/9807532 Phenomenology +hep-ph/9807561 Phenomenology +hep-ph/9808216 Phenomenology +hep-ph/9808256 Phenomenology +hep-ph/9808360 Phenomenology +hep-ph/9808405 Phenomenology +hep-ph/9808406 Phenomenology +hep-ph/9808431 Phenomenology +hep-ph/9808466 Phenomenology +hep-ph/9808467 Phenomenology +hep-ph/9808469 Phenomenology +hep-ph/9809237 Phenomenology +hep-ph/9809277 Phenomenology +hep-ph/9809364 Phenomenology +hep-ph/9809453 Phenomenology +hep-ph/9809473 Phenomenology +hep-ph/9809493 Phenomenology +hep-ph/9809513 Phenomenology +hep-ph/9810215 Phenomenology +hep-ph/9810241 Phenomenology +hep-ph/9810252 Phenomenology +hep-ph/9810371 Phenomenology +hep-ph/9810381 Phenomenology +hep-ph/9810393 Phenomenology +hep-ph/9810439 Phenomenology +hep-ph/9810441 Phenomenology +hep-ph/9810449 Phenomenology +hep-ph/9810452 Phenomenology +hep-ph/9810457 Phenomenology +hep-ph/9810479 Phenomenology +hep-ph/9810510 Phenomenology +hep-ph/9810542 Phenomenology +hep-ph/9811226 Phenomenology +hep-ph/9811232 Phenomenology +hep-ph/9811237 Phenomenology +hep-ph/9811248 Phenomenology +hep-ph/9811269 Phenomenology +hep-ph/9811289 Phenomenology +hep-ph/9811357 Phenomenology +hep-ph/9811367 Phenomenology +hep-ph/9811396 Phenomenology +hep-ph/9811500 Phenomenology +hep-ph/9812232 Phenomenology +hep-ph/9812266 Phenomenology +hep-ph/9812271 Phenomenology +hep-ph/9812313 Phenomenology +hep-ph/9812345 Phenomenology +hep-ph/9812358 Phenomenology +hep-ph/9812377 Phenomenology +hep-ph/9812445 Phenomenology +hep-ph/9812456 Phenomenology +hep-ph/9812488 Phenomenology +hep-ph/9812504 Phenomenology +hep-ph/9812508 Phenomenology +hep-ph/9812518 Phenomenology +hep-ph/9812520 Phenomenology +hep-ph/9812530 Phenomenology +hep-ph/9812531 Phenomenology +hep-ph/9812533 Phenomenology +hep-ph/9901209 Phenomenology +hep-ph/9901226 Phenomenology +hep-ph/9901242 Phenomenology +hep-ph/9901293 Phenomenology +hep-ph/9901294 Phenomenology +hep-ph/9901296 Phenomenology +hep-ph/9901385 Phenomenology +hep-ph/9901389 Phenomenology +hep-ph/9901397 Phenomenology +hep-ph/9901449 Phenomenology +hep-ph/9902248 Phenomenology +hep-ph/9902255 Phenomenology +hep-ph/9902274 Phenomenology +hep-ph/9902359 Phenomenology +hep-ph/9902428 Phenomenology +hep-ph/9902441 Phenomenology +hep-ph/9902449 Phenomenology +hep-ph/9903252 Phenomenology +hep-ph/9903259 Phenomenology +hep-ph/9903281 Phenomenology +hep-ph/9903292 Phenomenology +hep-ph/9903314 Phenomenology +hep-ph/9903333 Phenomenology +hep-ph/9903340 Phenomenology +hep-ph/9903362 Phenomenology +hep-ph/9903369 Phenomenology +hep-ph/9903453 Phenomenology +hep-ph/9903498 Phenomenology +hep-ph/9903516 Phenomenology +hep-ph/9903517 Phenomenology +hep-ph/9903540 Phenomenology +hep-ph/9904202 Phenomenology +hep-ph/9904214 Phenomenology +hep-ph/9904252 Phenomenology +hep-ph/9904390 Phenomenology +hep-ph/9904411 Phenomenology +hep-ph/9904420 Phenomenology +hep-ph/9904452 Phenomenology +hep-ph/9904470 Phenomenology +hep-ph/9905206 Phenomenology +hep-ph/9905220 Phenomenology +hep-ph/9905224 Phenomenology +hep-ph/9905252 Phenomenology +hep-ph/9905253 Phenomenology +hep-ph/9905277 Phenomenology +hep-ph/9905313 Phenomenology +hep-ph/9905366 Phenomenology +hep-ph/9906215 Phenomenology +hep-ph/9906235 Phenomenology +hep-ph/9906260 Phenomenology +hep-ph/9906273 Phenomenology +hep-ph/9906363 Phenomenology +hep-ph/9906420 Phenomenology +hep-ph/9906421 Phenomenology +hep-ph/9906512 Phenomenology +hep-ph/9906542 Phenomenology +hep-ph/9907206 Phenomenology +hep-ph/9907218 Phenomenology +hep-ph/9907533 Phenomenology +hep-ph/9907557 Phenomenology +hep-ph/9907569 Phenomenology +hep-th/9508095 Theory +hep-th/9605037 Theory +hep-th/9610208 Theory +hep-th/9610237 Theory +hep-th/9611176 Theory +hep-th/9612061 Theory +hep-th/9701029 Theory +hep-th/9701132 Theory +hep-th/9701156 Theory +hep-th/9702059 Theory +hep-th/9702107 Theory +hep-th/9702109 Theory +hep-th/9703041 Theory +hep-th/9703164 Theory +hep-th/9704105 Theory +hep-th/9704106 Theory +hep-th/9704125 Theory +hep-th/9704143 Theory +hep-th/9704189 Theory +hep-th/9704195 Theory +hep-th/9704204 Theory +hep-th/9705017 Theory +hep-th/9705035 Theory +hep-th/9705054 Theory +hep-th/9705056 Theory +hep-th/9705063 Theory +hep-th/9705079 Theory +hep-th/9705084 Theory +hep-th/9705110 Theory +hep-th/9705113 Theory +hep-th/9705139 Theory +hep-th/9705205 Theory +hep-th/9705230 Theory +hep-th/9705231 Theory +hep-th/9706012 Theory +hep-th/9706048 Theory +hep-th/9706059 Theory +hep-th/9706079 Theory +hep-th/9706083 Theory +hep-th/9706099 Theory +hep-th/9706163 Theory +hep-th/9706185 Theory +hep-th/9707025 Theory +hep-th/9707035 Theory +hep-th/9707048 Theory +hep-th/9707058 Theory +hep-th/9707071 Theory +hep-th/9707102 Theory +hep-th/9707157 Theory +hep-th/9707215 Theory +hep-th/9707251 Theory +hep-th/9708019 Theory +hep-th/9708060 Theory +hep-th/9708091 Theory +hep-th/9708099 Theory +hep-th/9708124 Theory +hep-th/9709009 Theory +hep-th/9709080 Theory +hep-th/9709166 Theory +hep-th/9710098 Theory +hep-th/9710107 Theory +hep-th/9710128 Theory +hep-th/9710191 Theory +hep-th/9710213 Theory +hep-th/9710217 Theory +hep-th/9710240 Theory +hep-th/9711097 Theory +hep-th/9711152 Theory +hep-th/9711166 Theory +hep-th/9711173 Theory +hep-th/9711197 Theory +hep-th/9712029 Theory +hep-th/9712046 Theory +hep-th/9712049 Theory +hep-th/9712056 Theory +hep-th/9712073 Theory +hep-th/9712123 Theory +hep-th/9712147 Theory +hep-th/9712148 Theory +hep-th/9712212 Theory +hep-th/9712224 Theory +hep-th/9712238 Theory +hep-th/9712252 Theory +hep-th/9801024 Theory +hep-th/9801105 Theory +hep-th/9801122 Theory +hep-th/9801125 Theory +hep-th/9801147 Theory +hep-th/9801152 Theory +hep-th/9801157 Theory +hep-th/9802004 Theory +hep-th/9802042 Theory +hep-th/9802060 Theory +hep-th/9802062 Theory +hep-th/9802108 Theory +hep-th/9802189 Theory +hep-th/9803007 Theory +hep-th/9803034 Theory +hep-th/9803069 Theory +hep-th/9803081 Theory +hep-th/9803164 Theory +hep-th/9803177 Theory +hep-th/9803188 Theory +hep-th/9803190 Theory +hep-th/9803197 Theory +hep-th/9804024 Theory +hep-th/9804028 Theory +hep-th/9804094 Theory +hep-th/9804129 Theory +hep-th/9804162 Theory +hep-th/9804174 Theory +hep-th/9805041 Theory +hep-th/9805088 Theory +hep-th/9805121 Theory +hep-th/9805164 Theory +hep-th/9805171 Theory +hep-th/9805202 Theory +hep-th/9805218 Theory +hep-th/9806022 Theory +hep-th/9806065 Theory +hep-th/9806085 Theory +hep-th/9806133 Theory +hep-th/9806149 Theory +hep-th/9806178 Theory +hep-th/9806203 Theory +hep-th/9806231 Theory +hep-th/9807038 Theory +hep-th/9807042 Theory +hep-th/9807059 Theory +hep-th/9807100 Theory +hep-th/9807114 Theory +hep-th/9807122 Theory +hep-th/9807159 Theory +hep-th/9807164 Theory +hep-th/9807168 Theory +hep-th/9807184 Theory +hep-th/9807221 Theory +hep-th/9808027 Theory +hep-th/9808037 Theory +hep-th/9808075 Theory +hep-th/9808081 Theory +hep-th/9808101 Theory +hep-th/9808120 Theory +hep-th/9808124 Theory +hep-th/9808133 Theory +hep-th/9808166 Theory +hep-th/9808177 Theory +hep-th/9808184 Theory +hep-th/9809013 Theory +hep-th/9809059 Theory +hep-th/9809061 Theory +hep-th/9809065 Theory +hep-th/9809075 Theory +hep-th/9809142 Theory +hep-th/9809174 Theory +hep-th/9809177 Theory +hep-th/9809188 Theory +hep-th/9810025 Theory +hep-th/9810065 Theory +hep-th/9810066 Theory +hep-th/9810135 Theory +hep-th/9810144 Theory +hep-th/9810197 Theory +hep-th/9810224 Theory +hep-th/9810230 Theory +hep-th/9811037 Theory +hep-th/9811052 Theory +hep-th/9811083 Theory +hep-th/9811092 Theory +hep-th/9811119 Theory +hep-th/9811132 Theory +hep-th/9811152 Theory +hep-th/9812080 Theory +hep-th/9812081 Theory +hep-th/9812119 Theory +hep-th/9812143 Theory +hep-th/9812161 Theory +hep-th/9812171 Theory +hep-th/9901067 Theory +hep-th/9901070 Theory +hep-th/9901073 Theory +hep-th/9901103 Theory +hep-th/9901121 Theory +hep-th/9901132 Theory +hep-th/9901135 Theory +hep-th/9901152 Theory +hep-th/9902071 Theory +hep-th/9902083 Theory +hep-th/9902122 Theory +hep-th/9902135 Theory +hep-th/9902183 Theory +hep-th/9903040 Theory +hep-th/9903062 Theory +hep-th/9903101 Theory +hep-th/9903133 Theory +hep-th/9903178 Theory +hep-th/9903184 Theory +hep-th/9903203 Theory +hep-th/9903213 Theory +hep-th/9903227 Theory +hep-th/9903237 Theory +hep-th/9903238 Theory +hep-th/9903240 Theory +hep-th/9904037 Theory +hep-th/9904042 Theory +hep-th/9904065 Theory +hep-th/9904070 Theory +hep-th/9904086 Theory +hep-th/9904104 Theory +hep-th/9904133 Theory +hep-th/9904173 Theory +hep-th/9905030 Theory +hep-th/9905099 Theory +hep-th/9905121 Theory +hep-th/9905173 Theory +hep-th/9905210 Theory +hep-th/9905220 Theory +hep-th/9905223 Theory +hep-th/9906119 Theory +hep-th/9906191 Theory +hep-th/9906232 Theory +hep-th/9906237 Theory +hep-th/9907088 Theory +hep-th/9907151 Theory +hep-th/9907192 Theory +hep-th/9907204 Theory +hep-th/9908101 Theory +nucl-th/9807025 +nucl-th/9809095 +nucl-th/9903023 +quant-ph/9603004 +quant-ph/9705005 +quant-ph/9902008 +0706.0195 Rings and Algebras +0712.1753 Combinatorics +0810.3212 Rings and Algebras +0905.1611 Rings and Algebras +0905.1614 Rings and Algebras +0910.5131 Rings and Algebras +0910.5409 Rings and Algebras +0910.5607 Rings and Algebras +0911.0200 Combinatorics +0912.0478 Rings and Algebras +1003.1294 Combinatorics +1003.2192 Rings and Algebras +1009.0184 Algebraic Geometry +1102.3378 Algebraic Topology +1106.3255 Group Theory +1109.3490 Combinatorics +1110.3242 Analysis of PDEs +1110.5570 Atomic Physics +1203.5424 Combinatorics +1207.1265 Data Structures and Algorithms +1209.2035 Formal Languages and Automata Theory +1211.5828 Algebraic Geometry +1212.5286 Algebraic Geometry +1302.2100 Combinatorics +1302.7109 Combinatorics +1304.3678 +1304.4422 Algebraic Topology +1305.0511 Analysis of PDEs +1306.5462 Methodology +1306.5578 Combinatorics +1308.2269 Combinatorics +1309.7657 Numerical Analysis +1310.0783 Algebraic Topology +1310.7041 Rings and Algebras +1310.7797 Combinatorics +1310.7933 Differential Geometry +1311.0733 +1311.7218 Theory +1312.0987 Strongly Correlated Electrons +1401.0294 Discrete Mathematics +1401.2802 Functional Analysis +1401.4934 Number Theory +1401.5462 Differential Geometry +1401.6396 Optimization and Control +1402.1651 Algebraic Geometry +1402.2365 Statistics Theory +1402.6526 Differential Geometry +1404.6783 Algebraic Geometry +1405.2435 Formal Languages and Automata Theory +1405.4366 Analysis of PDEs +1405.4495 +1405.4631 Differential Geometry +1406.0160 Theory +1406.5139 Differential Geometry +1407.0897 Algebraic Geometry +1408.1469 Statistics Theory +1408.5195 Numerical Analysis +1408.5591 Numerical Analysis +1409.1993 +1409.4556 Analysis of PDEs +1409.6715 Mesoscale and Nanoscale Physics +1409.7464 Numerical Analysis +1410.0726 Computation +1410.5638 Differential Geometry +1411.3392 Lattice +1411.5417 Learning +1411.6038 Lattice +1411.6914 Probability +1412.2274 Algebraic Topology +1412.4851 Lattice +1412.8406 Instrumentation and Methods for Astrophysics +1412.8595 Combinatorics +1501.00076 Combinatorics +1501.01043 Analysis of PDEs +1502.01753 Computation and Language +1502.04152 Algebraic Topology +1502.06196 Algebraic Geometry +1503.00329 Representation Theory +1503.02891 Algebraic Geometry +1503.03768 Algebraic Geometry +1503.06300 Human-Computer Interaction +1503.09049 Experiment +1503.09108 Differential Geometry +1504.00042 +1504.03544 +1504.03588 Quantum Algebra +1504.07260 Theory +1504.07540 Mesoscale and Nanoscale Physics +1505.01184 Data Analysis, Statistics and Probability +1505.02118 Methodology +1505.02864 Optics +1505.03176 Neurons and Cognition +1505.03345 Geometric Topology +1505.03347 Functional Analysis +1505.03554 +1505.03614 Algebraic Geometry +1505.06671 Differential Geometry +1506.02151 Representation Theory +1506.06352 Representation Theory +1506.06363 +1506.06378 Programming Languages +1506.06412 Geometric Topology +1506.07012 Classical Analysis and ODEs +1506.08495 High Energy Astrophysical Phenomena +1507.02067 Computational Geometry +1507.03293 Computation +1507.03895 Statistics Theory +1507.06669 Differential Geometry +1507.08141 Numerical Analysis +1507.08216 Instrumentation and Detectors +1507.08344 Symplectic Geometry +1508.01409 Computational Physics +1508.01450 Soft Condensed Matter +1508.04028 Computer Vision and Pattern Recognition +1508.06102 Functional Analysis +1508.06454 Combinatorics +1508.07929 Statistics Theory +1509.01078 Logic +1509.01178 Classical Analysis and ODEs +1509.01267 Analysis of PDEs +1509.01385 +1509.01520 Computer Vision and Pattern Recognition +1509.05702 Analysis of PDEs +1509.09031 Representation Theory +1509.09037 Mesoscale and Nanoscale Physics +1509.09161 Chaotic Dynamics +1510.00579 Probability +1510.01040 +1510.01117 Dynamical Systems +1510.02020 Materials Science +1510.02082 +1510.03221 Differential Geometry +1510.03479 Number Theory +1510.03572 Materials Science +1510.04185 Metric Geometry +1510.04342 Methodology +1510.06345 +1510.07218 Combinatorics +1510.07891 Soft Condensed Matter +1511.01386 Representation Theory +1511.01550 +1511.01945 Analysis of PDEs +1511.04669 Probability +1511.04864 Combinatorics +1511.07058 +1511.08507 Multimedia +1511.08557 Algebraic Topology +1511.08785 Theory +1512.01125 Lattice +1512.01408 Machine Learning +1512.01820 Representation Theory +1512.02458 General Topology +1512.02566 +1512.02830 Phenomenology +1512.04293 Neurons and Cognition +1512.05381 Strongly Correlated Electrons +1512.09363 Computational Complexity +1601.00049 Optics +1601.01531 Superconductivity +1601.01926 Probability +1601.02594 Strongly Correlated Electrons +1601.03610 Methodology +1601.04542 Superconductivity +1601.05223 Phenomenology +1601.05338 Materials Science +1601.05786 Cosmology and Nongalactic Astrophysics +1601.05875 Information Theory +1601.06408 Probability +1601.06945 Software Engineering +1601.07402 Classical Analysis and ODEs +1602.00431 Systems and Control +1602.02147 Combinatorics +1602.02273 Complex Variables +1602.02293 Distributed, Parallel, and Cluster Computing +1602.03410 Theory +1602.04645 +1602.05732 Algebraic Geometry +1602.05800 Dynamical Systems +1602.06434 Systems and Control +1602.06542 Theory +1602.06899 Number Theory +1602.08049 +1603.00160 Information Theory +1603.00782 +1603.00816 Computer Vision and Pattern Recognition +1603.00832 Optimization and Control +1603.02329 Numerical Analysis +1603.04001 Plasma Physics +1603.04955 Populations and Evolution +1603.05081 Soft Condensed Matter +1603.05846 Information Theory +1603.06165 Computer Science and Game Theory +1603.07387 Phenomenology +1603.07584 Learning +1603.07828 Learning +1603.08638 Numerical Analysis +1603.09124 Astrophysics of Galaxies +1603.09133 Numerical Analysis +1604.00064 Materials Science +1604.01384 +1604.01606 Probability +1604.01794 Fluid Dynamics +1604.02540 Symplectic Geometry +1604.02730 Information Theory +1604.03058 Computer Vision and Pattern Recognition +1604.03082 +1604.03733 Biological Physics +1604.05029 Representation Theory +1604.05119 Atmospheric and Oceanic Physics +1604.05842 Solar and Stellar Astrophysics +1604.06284 Economics +1604.06765 Group Theory +1604.07379 Computer Vision and Pattern Recognition +1604.07791 Number Theory +1604.07988 Statistical Mechanics +1604.08136 Systems and Control +1604.08539 Phenomenology +1604.08709 Artificial Intelligence +1605.01587 +1605.02176 +1605.03677 Methodology +1605.04711 Computer Vision and Pattern Recognition +1605.04755 +1605.04974 Phenomenology +1605.05479 Classical Analysis and ODEs +1605.05717 Distributed, Parallel, and Cluster Computing +1605.08118 Theory +1605.08650 +1605.09042 Machine Learning +1605.09066 Learning +1606.00085 Materials Science +1606.00364 Chaotic Dynamics +1606.00622 Statistics Theory +1606.00710 +1606.00906 Machine Learning +1606.01478 +1606.01517 Complex Variables +1606.02320 Number Theory +1606.03568 Computation and Language +1606.04327 Networking and Internet Architecture +1606.04633 Theory +1606.04965 Phenomenology +1606.05984 Materials Science +1606.06346 Analysis of PDEs +1606.06694 Strongly Correlated Electrons +1606.06834 Optics +1606.06932 Analysis of PDEs +1606.07499 Operator Algebras +1606.07554 +1606.07705 Soft Condensed Matter +1606.08602 Accelerator Physics +1606.08730 Statistical Mechanics +1606.09607 Phenomenology +1607.00655 Databases +1607.00771 Databases +1607.01327 Computer Vision and Pattern Recognition +1607.01347 Atomic Physics +1607.02120 Instrumentation and Methods for Astrophysics +1607.02711 Optics +1607.02974 Digital Libraries +1607.03016 Quantum Gases +1607.03544 Statistical Mechanics +1607.03776 +1607.04474 Dynamical Systems +1607.04652 Disordered Systems and Neural Networks +1607.05377 +1607.05434 Discrete Mathematics +1607.05586 Classical Analysis and ODEs +1607.05830 Programming Languages +1607.06121 Lattice +1607.06537 Mesoscale and Nanoscale Physics +1607.06780 Statistical Mechanics +1607.06898 +1607.06922 Probability +1607.07500 Mesoscale and Nanoscale Physics +1607.07506 Theory +1607.07880 Phenomenology +1607.08499 Experiment +1607.08512 +1607.08541 Materials Science +1608.00011 Theory +1608.00130 Theory +1608.00195 Optimization and Control +1608.00226 Theory +1608.00378 +1608.00778 Machine Learning +1608.02424 Information Theory +1608.03338 Astrophysics of Galaxies +1608.03493 Superconductivity +1608.03498 Mesoscale and Nanoscale Physics +1608.03529 Materials Science +1608.04257 +1608.04366 Graphics +1608.04844 Quantitative Methods +1608.05618 Strongly Correlated Electrons +1608.05865 Spectral Theory +1608.05980 Other Condensed Matter +1608.06476 Quantitative Methods +1608.07549 Number Theory +1608.07952 Information Retrieval +1608.09004 Probability +1609.00494 Physics and Society +1609.00523 Computational Geometry +1609.00581 Numerical Analysis +1609.01032 Logic +1609.01035 Analysis of PDEs +1609.01863 +1609.02236 Artificial Intelligence +1609.02364 Materials Science +1609.02865 General Topology +1609.03298 +1609.03563 Strongly Correlated Electrons +1609.03737 Discrete Mathematics +1609.04370 Chemical Physics +1609.04636 Quantitative Methods +1609.04802 Computer Vision and Pattern Recognition +1609.04870 Instrumentation and Methods for Astrophysics +1609.04909 Computation and Language +1609.05166 Probability +1609.05472 Computational Complexity +1609.05848 +1609.05874 Phenomenology +1609.05907 Phenomenology +1609.05922 Phenomenology +1609.06885 Mesoscale and Nanoscale Physics +1609.07472 Computational Finance +1609.07543 Optics +1609.07556 Optics +1609.07562 Optics +1609.07574 Machine Learning +1609.07608 Optics +1609.07625 Numerical Analysis +1609.08039 Machine Learning +1609.08359 Computation and Language +1609.09537 Cryptography and Security +1609.09609 Phenomenology +1610.00957 Phenomenology +1610.01811 Superconductivity +1610.02174 Astrophysics of Galaxies +1610.02240 Algebraic Geometry +1610.02704 Computational Complexity +1610.02910 Classical Physics +1610.03303 Optimization and Control +1610.03359 Analysis of PDEs +1610.03425 Machine Learning +1610.04030 Astrophysics of Galaxies +1610.04198 Materials Science +1610.04540 +1610.04716 Quantum Gases +1610.04791 Representation Theory +1610.05415 Probability +1610.05524 Analysis of PDEs +1610.05898 Differential Geometry +1610.06429 Group Theory +1610.06941 Social and Information Networks +1610.06981 Theory +1610.07042 Group Theory +1610.07900 Atomic Physics +1610.07964 +1610.07985 Cryptography and Security +1610.08032 Theory +1610.08075 Algebraic Geometry +1610.08444 Algebraic Geometry +1610.08932 Algebraic Geometry +1610.09182 Information Theory +1610.09393 Number Theory +1610.09596 Functional Analysis +1610.09701 Analysis of PDEs +1610.09779 Lattice +1610.09801 Instrumentation and Detectors +1610.10042 Computer Vision and Pattern Recognition +1611.00132 Materials Science +1611.00297 Information Theory +1611.00453 Information Theory +1611.00690 Optimization and Control +1611.00759 Astrophysics of Galaxies +1611.00850 Computer Vision and Pattern Recognition +1611.00969 Materials Science +1611.01046 Machine Learning +1611.01576 Neural and Evolutionary Computing +1611.01587 Computation and Language +1611.01694 Dynamical Systems +1611.01795 Biological Physics +1611.01824 Systems and Control +1611.01874 Computation and Language +1611.01933 Superconductivity +1611.01971 Machine Learning +1611.01975 +1611.02378 Computation and Language +1611.02600 Experiment +1611.03044 Computer Science and Game Theory +1611.03096 +1611.03206 Optimization and Control +1611.03222 Analysis of PDEs +1611.03264 Emerging Technologies +1611.03468 Phenomenology +1611.03555 Rings and Algebras +1611.03562 Distributed, Parallel, and Cluster Computing +1611.03622 High Energy Astrophysical Phenomena +1611.03628 Logic in Computer Science +1611.03638 Superconductivity +1611.03690 Theory +1611.03968 Computer Vision and Pattern Recognition +1611.04113 Numerical Analysis +1611.04118 Lattice +1611.04135 Computer Vision and Pattern Recognition +1611.04161 Materials Science +1611.04182 Materials Science +1611.04221 Mesoscale and Nanoscale Physics +1611.04356 Number Theory +1611.04463 Analysis of PDEs +1611.04563 Algebraic Topology +1611.04606 Phenomenology +1611.04723 Cosmology and Nongalactic Astrophysics +1611.04831 Learning +1611.04843 Computational Complexity +1611.04920 Machine Learning +1611.04941 Statistical Finance +1611.04973 Combinatorics +1611.05147 Statistics Theory +1611.05319 Computer Vision and Pattern Recognition +1611.05359 Data Structures and Algorithms +1611.05380 Computer Science and Game Theory +1611.05477 Mesoscale and Nanoscale Physics +1611.05517 Probability +1611.05540 Phenomenology +1611.05546 Computer Vision and Pattern Recognition +1611.05564 Cryptography and Security +1611.05875 High Energy Astrophysical Phenomena +1611.05930 High Energy Astrophysical Phenomena +1611.05932 Astrophysics of Galaxies +1611.05956 Group Theory +1611.05996 Dynamical Systems +1611.06108 Artificial Intelligence +1611.06130 Cosmology and Nongalactic Astrophysics +1611.06157 Analysis of PDEs +1611.06205 Physics Education +1611.06214 +1611.06226 Chemical Physics +1611.06227 Other Condensed Matter +1611.06231 Solar and Stellar Astrophysics +1611.06232 Instrumentation and Methods for Astrophysics +1611.06233 Theory +1611.06235 Cosmology and Nongalactic Astrophysics +1611.06238 Strongly Correlated Electrons +1611.06240 Instrumentation and Detectors +1611.06241 Instrumentation and Detectors +1611.06242 Classical Physics +1611.06243 Chemical Physics +1611.06246 Chemical Physics +1611.06247 Mesoscale and Nanoscale Physics +1611.06248 Statistical Mechanics +1611.06249 Systems and Control +1611.06250 Chemical Physics +1611.06255 +1611.06258 Systems and Control +1611.06259 Combinatorics +1611.06260 Fluid Dynamics +1611.06263 Superconductivity +1611.06264 Combinatorics +1611.06265 Machine Learning +1611.06267 Combinatorics +1611.06268 General Topology +1611.06269 K-Theory and Homology +1611.06271 Computational Engineering, Finance, and Science +1611.06274 Mesoscale and Nanoscale Physics +1611.06277 Numerical Analysis +1611.06278 Dynamical Systems +1611.06279 Algebraic Geometry +1611.06280 Probability +1611.06282 Combinatorics +1611.06283 Phenomenology +1611.06285 Combinatorics +1611.06287 Astrophysics of Galaxies +1611.06288 Numerical Analysis +1611.06290 Commutative Algebra +1611.06291 Number Theory +1611.06292 Human-Computer Interaction +1611.06293 Data Analysis, Statistics and Probability +1611.06294 Strongly Correlated Electrons +1611.06296 Computer Vision and Pattern Recognition +1611.06297 Numerical Analysis +1611.06298 Representation Theory +1611.06299 Networking and Internet Architecture +1611.06300 Materials Science +1611.06301 Computer Vision and Pattern Recognition +1611.06302 Networking and Internet Architecture +1611.06304 Methodology +1611.06306 Learning +1611.06307 Computer Vision and Pattern Recognition +1611.06308 Combinatorics +1611.06309 Distributed, Parallel, and Cluster Computing +1611.06312 Combinatorics +1611.06313 +1611.06314 Social and Information Networks +1611.06316 Analysis of PDEs +1611.06317 Theory +1611.06318 Geophysics +1611.06320 Computation and Language +1611.06322 Social and Information Networks +1611.06325 Quantum Algebra +1611.06326 Theory +1611.06329 Data Structures and Algorithms +1611.06331 Statistical Mechanics +1611.06332 Number Theory +1611.06333 Atomic Physics +1611.06334 Distributed, Parallel, and Cluster Computing +1611.06335 Numerical Analysis +1611.06339 Theory +1611.06341 Probability +1611.06342 Learning +1611.06343 Distributed, Parallel, and Cluster Computing +1611.06344 Computational Finance +1611.06349 Representation Theory +1611.06351 Quantum Gases +1611.06352 +1611.06355 Computer Vision and Pattern Recognition +1611.06356 Instrumentation and Detectors +1611.06357 Information Theory +1611.06358 Quantum Gases +1611.06360 Numerical Analysis +1611.06361 Combinatorics +1611.06362 Computer Vision and Pattern Recognition +1611.06363 Complex Variables +1611.06364 History and Philosophy of Physics +1611.06365 Distributed, Parallel, and Cluster Computing +1611.06368 Robotics +1611.06370 Materials Science +1611.06371 Information Theory +1611.06372 Analysis of PDEs +1611.06374 Phenomenology +1611.06376 Theory +1611.06377 Complex Variables +1611.06378 Strongly Correlated Electrons +1611.06381 Methodology +1611.06382 Solar and Stellar Astrophysics +1611.06383 Logic +1611.06384 Quantum Gases +1611.06386 Mesoscale and Nanoscale Physics +1611.06387 Instrumentation and Methods for Astrophysics +1611.06392 Commutative Algebra +1611.06393 Group Theory +1611.06394 Metric Geometry +1611.06395 Computer Vision and Pattern Recognition +1611.06396 Computational Engineering, Finance, and Science +1611.06399 Methodology +1611.06401 Combinatorics +1611.06403 Computer Vision and Pattern Recognition +1611.06404 Quantum Gases +1611.06405 Information Theory +1611.06407 Statistical Finance +1611.06408 Applications +1611.06412 High Energy Astrophysical Phenomena +1611.06413 Multiagent Systems +1611.06414 Number Theory +1611.06416 Soft Condensed Matter +1611.06417 Databases +1611.06418 Combinatorics +1611.06420 Algebraic Geometry +1611.06421 Differential Geometry +1611.06423 Computation and Language +1611.06425 Materials Science +1611.06429 Plasma Physics +1611.06430 Computer Vision and Pattern Recognition +1611.06433 Statistical Mechanics +1611.06434 Optimization and Control +1611.06435 Solar and Stellar Astrophysics +1611.06436 Computational Engineering, Finance, and Science +1611.06439 Cryptography and Security +1611.06441 Combinatorics +1611.06443 Information Theory +1611.06444 Combinatorics +1611.06445 Optics +1611.06449 Quantum Algebra +1611.06452 Numerical Analysis +1611.06453 Computer Vision and Pattern Recognition +1611.06454 Rings and Algebras +1611.06456 Materials Science +1611.06457 Optics +1611.06458 Information Theory +1611.06460 Combinatorics +1611.06462 Functional Analysis +1611.06467 Computer Vision and Pattern Recognition +1611.06468 Artificial Intelligence +1611.06469 Functional Analysis +1611.06470 Dynamical Systems +1611.06471 Symplectic Geometry +1611.06472 Group Theory +1611.06473 Computer Vision and Pattern Recognition +1611.06474 Computer Vision and Pattern Recognition +1611.06475 Learning +1611.06480 Mesoscale and Nanoscale Physics +1611.06482 Strongly Correlated Electrons +1611.06483 Combinatorics +1611.06484 High Energy Astrophysical Phenomena +1611.06485 Optimization and Control +1611.06486 Computational Physics +1611.06487 Information Theory +1611.06488 Numerical Analysis +1611.06490 Numerical Analysis +1611.06493 Probability +1611.06494 +1611.06495 Computer Vision and Pattern Recognition +1611.06497 Optimization and Control +1611.06499 Phenomenology +1611.06500 Data Structures and Algorithms +1611.06501 Data Structures and Algorithms +1611.06502 Representation Theory +1611.06503 Mesoscale and Nanoscale Physics +1611.06505 Sound +1611.06507 Experiment +1611.06511 Fluid Dynamics +1611.06512 Materials Science +1611.06513 Fluid Dynamics +1611.06514 Optimization and Control +1611.06516 Lattice +1611.06517 Lattice +1611.06518 Phenomenology +1611.06519 Optics +1611.06520 Algebraic Geometry +1611.06521 Differential Geometry +1611.06524 Experiment +1611.06526 Analysis of PDEs +1611.06527 Information Theory +1611.06528 Commutative Algebra +1611.06529 Data Structures and Algorithms +1611.06530 Learning +1611.06532 Metric Geometry +1611.06535 Combinatorics +1611.06539 Neural and Evolutionary Computing +1611.06540 Phenomenology +1611.06542 Theory +1611.06543 Earth and Planetary Astrophysics +1611.06544 Social and Information Networks +1611.06545 Other Statistics +1611.06546 Combinatorics +1611.06548 Symbolic Computation +1611.06549 Superconductivity +1611.06550 +1611.06552 Theory +1611.06554 Mesoscale and Nanoscale Physics +1611.06555 +1611.06556 General Mathematics +1611.06558 Functional Analysis +1611.06559 Functional Analysis +1611.06560 Functional Analysis +1611.06561 Lattice +1611.06562 Optics +1611.06564 Functional Analysis +1611.06566 Probability +1611.06569 Group Theory +1611.06573 Astrophysics of Galaxies +1611.06574 Rings and Algebras +1611.06575 Statistics Theory +1611.06576 Optimization and Control +1611.06577 Number Theory +1611.06581 Fluid Dynamics +1611.06582 Instrumentation and Detectors +1611.06583 Physics Education +1611.06584 Functional Analysis +1611.06586 Experiment +1611.06587 Human-Computer Interaction +1611.06589 Data Structures and Algorithms +1611.06591 Information Theory +1611.06592 Materials Science +1611.06595 Fluid Dynamics +1611.06601 Lattice +1611.06603 Probability +1611.06604 Experiment +1611.06605 Data Structures and Algorithms +1611.06606 +1611.06607 Computer Vision and Pattern Recognition +1611.06608 +1611.06609 Networking and Internet Architecture +1611.06611 Quantum Algebra +1611.06616 Plasma Physics +1611.06617 Algebraic Geometry +1611.06618 Quantitative Methods +1611.06619 +1611.06620 Social and Information Networks +1611.06621 Dynamical Systems +1611.06622 Phenomenology +1611.06624 Learning +1611.06625 Social and Information Networks +1611.06626 Optimization and Control +1611.06628 Number Theory +1611.06629 Combinatorics +1611.06630 Number Theory +1611.06631 Logic in Computer Science +1611.06633 Rings and Algebras +1611.06637 Optics +1611.06638 Computer Vision and Pattern Recognition +1611.06639 Computation and Language +1611.06640 Combinatorics +1611.06642 Computer Vision and Pattern Recognition +1611.06645 Social and Information Networks +1611.06647 High Energy Astrophysical Phenomena +1611.06648 Experiment +1611.06650 Computational Complexity +1611.06652 Machine Learning +1611.06653 Methodology +1611.06654 Astrophysics of Galaxies +1611.06655 Statistics Theory +1611.06656 Computer Vision and Pattern Recognition +1611.06657 Mesoscale and Nanoscale Physics +1611.06658 History and Overview +1611.06659 Chemical Physics +1611.06660 Physics and Society +1611.06662 Optics +1611.06663 +1611.06667 Functional Analysis +1611.06668 Information Retrieval +1611.06669 Phenomenology +1611.06670 Statistics Theory +1611.06671 Computation and Language +1611.06673 Information Theory +1611.06674 Computer Vision and Pattern Recognition +1611.06675 Analysis of PDEs +1611.06677 Strongly Correlated Electrons +1611.06678 Computer Vision and Pattern Recognition +1611.06680 +1611.06681 Soft Condensed Matter +1611.06682 Networking and Internet Architecture +1611.06683 Computer Vision and Pattern Recognition +1611.06686 Machine Learning +1611.06687 Algebraic Geometry +1611.06688 Materials Science +1611.06692 Systems and Control +1611.06693 Fluid Dynamics +1611.06694 Computer Vision and Pattern Recognition +1611.06695 Physics and Society +1611.06696 Fluid Dynamics +1611.06697 Astrophysics of Galaxies +1611.06699 Probability +1611.06700 Quantum Algebra +1611.06703 Formal Languages and Automata Theory +1611.06704 Analysis of PDEs +1611.06708 Functional Analysis +1611.06709 Differential Geometry +1611.06711 Optics +1611.06712 Information Theory +1611.06713 Applications +1611.06714 Statistics Theory +1611.06717 Experiment +1611.06719 Analysis of PDEs +1611.06721 Computational Engineering, Finance, and Science +1611.06722 Computation and Language +1611.06724 Classical Analysis and ODEs +1611.06727 Statistics Theory +1611.06728 Systems and Control +1611.06729 Optimization and Control +1611.06730 Optimization and Control +1611.06731 +1611.06732 Solar and Stellar Astrophysics +1611.06734 Complex Variables +1611.06735 Logic +1611.06737 Social and Information Networks +1611.06738 Mesoscale and Nanoscale Physics +1611.06739 Methodology +1611.06740 Machine Learning +1611.06741 Statistical Mechanics +1611.06742 Chemical Physics +1611.06744 Statistics Theory +1611.06745 Probability +1611.06747 Instrumentation and Detectors +1611.06748 Computer Vision and Pattern Recognition +1611.06749 +1611.06750 Analysis of PDEs +1611.06751 Earth and Planetary Astrophysics +1611.06752 Statistics Theory +1611.06753 Statistics Theory +1611.06754 Disordered Systems and Neural Networks +1611.06755 Numerical Analysis +1611.06756 Algebraic Geometry +1611.06757 Computer Vision and Pattern Recognition +1611.06758 Lattice +1611.06760 Phenomenology +1611.06762 Plasma Physics +1611.06763 Mesoscale and Nanoscale Physics +1611.06764 Computer Vision and Pattern Recognition +1611.06765 +1611.06766 Optimization and Control +1611.06767 Experiment +1611.06768 Algebraic Geometry +1611.06770 Space Physics +1611.06771 +1611.06772 +1611.06774 +1611.06775 Representation Theory +1611.06776 Space Physics +1611.06777 Learning +1611.06778 Probability +1611.06779 Computer Vision and Pattern Recognition +1611.06780 +1611.06781 +1611.06782 Probability +1611.06784 Populations and Evolution +1611.06785 Networking and Internet Architecture +1611.06787 Solar and Stellar Astrophysics +1611.06788 Computation and Language +1611.06789 Algebraic Geometry +1611.06790 Analysis of PDEs +1611.06791 Learning +1611.06793 Computational Physics +1611.06794 Optics +1611.06795 Data Structures and Algorithms +1611.06796 Distributed, Parallel, and Cluster Computing +1611.06800 Machine Learning +1611.06801 Phenomenology +1611.06802 Phenomenology +1611.06804 Lattice +1611.06807 +1611.06808 Functional Analysis +1611.06810 Algebraic Geometry +1611.06811 +1611.06812 High Energy Astrophysical Phenomena +1611.06813 Exactly Solvable and Integrable Systems +1611.06815 Combinatorics +1611.06816 Cryptography and Security +1611.06818 Applications +1611.06822 Information Theory +1611.06823 Symplectic Geometry +1611.06825 Representation Theory +1611.06827 Combinatorics +1611.06828 Statistics Theory +1611.06829 Probability +1611.06830 Optimization and Control +1611.06832 Fluid Dynamics +1611.06833 Optimization and Control +1611.06834 Neurons and Cognition +1611.06836 Mesoscale and Nanoscale Physics +1611.06840 Formal Languages and Automata Theory +1611.06842 Combinatorics +1611.06846 General Mathematics +1611.06847 General Mathematics +1611.06848 Numerical Analysis +1611.06849 Symplectic Geometry +1611.06851 Applications +1611.06852 Combinatorics +1611.06853 General Mathematics +1611.06854 Quantum Gases +1611.06855 Materials Science +1611.06856 Chemical Physics +1611.06858 Multiagent Systems +1611.06861 Classical Analysis and ODEs +1611.06862 Numerical Analysis +1611.06863 Machine Learning +1611.06864 Distributed, Parallel, and Cluster Computing +1611.06865 Complex Variables +1611.06866 Numerical Analysis +1611.06867 General Mathematics +1611.06868 Computational Engineering, Finance, and Science +1611.06869 Materials Science +1611.06871 Quantum Gases +1611.06873 Statistics Theory +1611.06874 Computation +1611.06875 Networking and Internet Architecture +1611.06876 +1611.06878 Computer Vision and Pattern Recognition +1611.06879 Probability +1611.06880 Computer Vision and Pattern Recognition +1611.06882 Learning +1611.06885 Analysis of PDEs +1611.06886 Cosmology and Nongalactic Astrophysics +1611.06888 Adaptation and Self-Organizing Systems +1611.06894 Plasma Physics +1611.06895 Materials Science +1611.06897 Optics +1611.06898 +1611.06899 Number Theory +1611.06900 Group Theory +1611.06901 Lattice +1611.06902 +1611.06904 Networking and Internet Architecture +1611.06905 Networking and Internet Architecture +1611.06906 Computer Vision and Pattern Recognition +1611.06907 Representation Theory +1611.06909 High Energy Astrophysical Phenomena +1611.06910 Computer Science and Game Theory +1611.06911 Analysis of PDEs +1611.06912 +1611.06913 Complex Variables +1611.06914 Systems and Control +1611.06916 Earth and Planetary Astrophysics +1611.06917 Algebraic Geometry +1611.06918 Number Theory +1611.06921 Statistical Mechanics +1611.06923 History and Overview +1611.06924 Information Theory +1611.06925 Systems and Control +1611.06927 +1611.06928 Artificial Intelligence +1611.06930 Number Theory +1611.06933 Learning +1611.06936 +1611.06937 Neural and Evolutionary Computing +1611.06938 +1611.06939 Computer Vision and Pattern Recognition +1611.06940 Data Structures and Algorithms +1611.06944 Lattice +1611.06945 Neural and Evolutionary Computing +1611.06946 +1611.06948 Phenomenology +1611.06949 Computer Vision and Pattern Recognition +1611.06950 Computer Vision and Pattern Recognition +1611.06954 Operator Algebras +1611.06956 Networking and Internet Architecture +1611.06958 Algebraic Topology +1611.06959 Optimization and Control +1611.06960 Classical Analysis and ODEs +1611.06961 Social and Information Networks +1611.06963 Social and Information Networks +1611.06965 Instrumentation and Methods for Astrophysics +1611.06967 Number Theory +1611.06968 Representation Theory +1611.06969 Computer Vision and Pattern Recognition +1611.06971 Mesoscale and Nanoscale Physics +1611.06973 Neurons and Cognition +1611.06977 High Energy Astrophysical Phenomena +1611.06978 Optimization and Control +1611.06979 Combinatorics +1611.06980 Computational Complexity +1611.06981 Computer Vision and Pattern Recognition +1611.06983 Combinatorics +1611.06986 Computation and Language +1611.06987 Computer Vision and Pattern Recognition +1611.06989 Analysis of PDEs +1611.06990 Strongly Correlated Electrons +1611.06994 Analysis of PDEs +1611.06997 Computation and Language +1611.06998 Solar and Stellar Astrophysics +1611.07002 +1611.07004 Computer Vision and Pattern Recognition +1611.07007 Algebraic Topology +1611.07008 Data Structures and Algorithms +1611.07010 Phenomenology +1611.07011 Combinatorics +1611.07013 Numerical Analysis +1611.07014 Earth and Planetary Astrophysics +chao-dyn/9905028 Chaotic Dynamics +math/0607281 Combinatorics +math/0701332 Combinatorics +math/0702001 Quantum Algebra +nlin/0005067 Chaotic Dynamics +nlin/0106043 Chaotic Dynamics +nlin/0603030 Chaotic Dynamics +0712.4050 Disordered Systems and Neural Networks +0806.2310 Theory +0809.1978 Disordered Systems and Neural Networks +0811.3341 Complex Variables +0912.5468 Discrete Mathematics +1004.3655 Logic in Computer Science +1008.3746 Portfolio Management +1207.1671 +1208.0502 Instrumentation and Detectors +1208.1981 Methodology +1302.4759 Commutative Algebra +1302.6766 Machine Learning +1305.6625 Strongly Correlated Electrons +1310.2451 Machine Learning +1311.3464 Probability +1403.1539 +1404.0762 Algebraic Geometry +1404.5222 Portfolio Management +1405.2294 Learning +1405.5445 Spectral Theory +1409.6259 Spectral Theory +1409.8230 Computer Vision and Pattern Recognition +1411.5473 Dynamical Systems +1412.1613 Probability +1412.6333 Probability +1501.04495 Systems and Control +1501.06200 Algebraic Topology +1503.06188 Combinatorics +1503.07969 Geometric Topology +1503.09075 Classical Analysis and ODEs +1504.02006 Probability +1505.02984 +1505.03199 Probability +1505.04580 Mesoscale and Nanoscale Physics +1505.06468 +1505.07891 Representation Theory +1506.01231 +1506.03234 Statistical Mechanics +1506.07234 Information Theory +1506.07607 Astrophysics of Galaxies +1507.02044 Spectral Theory +1507.05676 +1507.06314 Phenomenology +1508.05161 Optimization and Control +1508.06774 Theory +1508.07739 Sound +1509.01329 Computer Vision and Pattern Recognition +1509.04586 Group Theory +1509.04593 Superconductivity +1509.09258 Group Theory +1510.02372 Algebraic Topology +1510.03157 Optimization and Control +1510.05297 Logic +1510.05820 +1510.06496 Systems and Control +1510.07028 Numerical Analysis +1510.07146 Data Analysis, Statistics and Probability +1510.07354 Phenomenology +1510.08782 Rings and Algebras +1510.08833 Algebraic Geometry +1511.00428 Systems and Control +1511.00756 Analysis of PDEs +1511.09291 Algebraic Geometry +1511.09414 Cosmology and Nongalactic Astrophysics +1512.03362 Theory +1512.03363 Theory +1512.04216 Strongly Correlated Electrons +1512.04554 Superconductivity +1512.06063 Chemical Physics +1512.06802 Analysis of PDEs +1512.09068 Phenomenology +1601.01974 Learning +1601.02177 Statistics Theory +1601.03443 Computation +1601.08224 Combinatorics +1602.00793 Numerical Analysis +1602.01276 Strongly Correlated Electrons +1602.02351 Cosmology and Nongalactic Astrophysics +1602.03738 Computational Physics +1602.04516 Experiment +1602.05780 +1603.00104 Networking and Internet Architecture +1603.00789 +1603.01702 Experiment +1603.01819 Information Theory +1603.02760 +1603.03406 Superconductivity +1603.03748 Materials Science +1603.04587 Mesoscale and Nanoscale Physics +1603.06672 Cosmology and Nongalactic Astrophysics +1603.06774 Experiment +1603.07986 General Physics +1603.08831 Learning +1604.03172 Operator Algebras +1604.03888 Information Theory +1604.06351 Earth and Planetary Astrophysics +1605.00786 +1605.01206 +1605.03597 Strongly Correlated Electrons +1605.03620 Applications +1605.03920 Theory +1605.04159 +1605.04860 +1605.05592 Differential Geometry +1605.06098 Theory +1605.06743 Neural and Evolutionary Computing +1605.06843 Portfolio Management +1605.06902 +1605.07060 Phenomenology +1605.07858 Atomic and Molecular Clusters +1605.08682 Physics and Society +1606.01375 Strongly Correlated Electrons +1606.02246 Algebraic Geometry +1606.03775 Methodology +1606.04272 Optimization and Control +1606.04565 Instrumentation and Detectors +1606.06113 Quantitative Methods +1606.06305 +1606.06738 Phenomenology +1606.07399 Mathematical Software +1606.07897 Optics +1606.09356 Mesoscale and Nanoscale Physics +1607.00739 Analysis of PDEs +1607.00764 Theory +1607.00990 Phenomenology +1607.01053 Probability +1607.01668 Machine Learning +1607.03095 Earth and Planetary Astrophysics +1607.05482 Fluid Dynamics +1607.05616 Differential Geometry +1607.05864 Combinatorics +1607.06717 Analysis of PDEs +1607.06971 Phenomenology +1607.07372 +1607.08118 Fluid Dynamics +1607.08760 Quantum Gases +1608.01069 Social and Information Networks +1608.01422 Cosmology and Nongalactic Astrophysics +1608.01782 Operator Algebras +1608.03174 Number Theory +1608.03273 +1608.05954 Statistical Mechanics +1608.06786 Superconductivity +1608.07153 Probability +1608.08151 Algebraic Geometry +1608.08450 Information Theory +1609.00116 Artificial Intelligence +1609.00174 Statistical Mechanics +1609.01554 Quantum Gases +1609.02147 Phenomenology +1609.02331 Analysis of PDEs +1609.03659 Computer Vision and Pattern Recognition +1609.04309 Computation and Language +1609.05258 Robotics +1609.06812 Probability +1609.06912 Theory +1609.07092 Numerical Analysis +1609.08184 Algebraic Geometry +1609.08859 Combinatorics +1609.09059 Neurons and Cognition +1609.09274 Group Theory +1609.09867 Symplectic Geometry +1610.00226 Number Theory +1610.00284 Representation Theory +1610.00768 Learning +1610.00934 Theory +1610.01478 Optimization and Control +1610.01766 Machine Learning +1610.02429 Statistical Mechanics +1610.03268 Phenomenology +1610.03562 Theory +1610.04425 Rings and Algebras +1610.05430 Complex Variables +1610.05872 Neurons and Cognition +1610.06578 Astrophysics of Galaxies +1610.06623 Analysis of PDEs +1610.06812 Dynamical Systems +1610.07675 Learning +1610.08801 +1610.08802 +1610.09122 +1610.09732 Data Structures and Algorithms +1610.10088 +1611.00196 Computation and Language +1611.00701 Phenomenology +1611.01150 +1611.04523 Algebraic Geometry +1611.05294 Lattice +1611.05992 Information Theory +1611.06455 Learning +1611.06571 Differential Geometry +1611.06707 +1611.06723 +1611.07246 Category Theory +1611.07799 Materials Science +1611.07923 +1611.09288 Computation and Language +1611.09670 Mesoscale and Nanoscale Physics +1611.10013 Cosmology and Nongalactic Astrophysics +1611.10036 Materials Science +1611.10342 Quantum Algebra +1612.01021 Atomic Physics +1612.01403 Methodology +1612.01780 Plasma Physics +1612.02023 Applications +1612.02079 Dynamical Systems +1612.02463 Physics and Society +1612.02568 Solar and Stellar Astrophysics +1612.03036 +1612.03207 Experiment +1612.03444 +1612.03536 Materials Science +1612.03730 Popular Physics +1612.03972 Strongly Correlated Electrons +1612.03987 Soft Condensed Matter +1612.04096 Networking and Internet Architecture +1612.04151 Numerical Analysis +1612.04290 +1612.04325 Number Theory +1612.04345 Applications +1612.04368 Medical Physics +1612.04369 Physics and Society +1612.04371 Operator Algebras +1612.04373 Theory +1612.04378 Theory +1612.04379 Earth and Planetary Astrophysics +1612.04382 Phenomenology +1612.04383 Phenomenology +1612.04386 Algebraic Topology +1612.04388 Lattice +1612.04391 Robotics +1612.04398 Materials Science +1612.04402 Computer Vision and Pattern Recognition +1612.04403 Social and Information Networks +1612.04404 Theory +1612.04405 Analysis of PDEs +1612.04406 Functional Analysis +1612.04407 Mathematical Finance +1612.04409 Software Engineering +1612.04410 Group Theory +1612.04411 Representation Theory +1612.04414 +1612.04418 Information Retrieval +1612.04419 +1612.04420 Spectral Theory +1612.04423 Neurons and Cognition +1612.04424 Dynamical Systems +1612.04425 Optimization and Control +1612.04426 Computation and Language +1612.04427 Mesoscale and Nanoscale Physics +1612.04428 Probability +1612.04429 +1612.04430 Networking and Internet Architecture +1612.04432 Social and Information Networks +1612.04434 +1612.04435 +1612.04436 Theory +1612.04437 Analysis of PDEs +1612.04439 Analysis of PDEs +1612.04441 Number Theory +1612.04444 Materials Science +1612.04445 Analysis of PDEs +1612.04446 Statistical Mechanics +1612.04447 Computer Vision and Pattern Recognition +1612.04448 Probability +1612.04449 Analysis of PDEs +1612.04450 Algebraic Topology +1612.04451 Computational Engineering, Finance, and Science +1612.04452 Probability +1612.04454 Probability +1612.04455 Materials Science +1612.04456 Information Theory +1612.04458 Phenomenology +1612.04462 Formal Languages and Automata Theory +1612.04465 Algebraic Geometry +1612.04466 Geometric Topology +1612.04467 Methodology +1612.04468 Computer Vision and Pattern Recognition +1612.04469 Artificial Intelligence +1612.04470 Performance +1612.04472 Probability +1612.04475 Mesoscale and Nanoscale Physics +1612.04477 Atomic Physics +1612.04481 Phenomenology +1612.04482 Optics +1612.04485 Computer Science and Game Theory +1612.04487 Optics +1612.04488 Computational Physics +1612.04489 Analysis of PDEs +1612.04490 Plasma Physics +1612.04491 Mesoscale and Nanoscale Physics +1612.04492 Operator Algebras +1612.04493 High Energy Astrophysical Phenomena +1612.04494 Logic +1612.04495 Materials Science +1612.04497 Optics +1612.04499 Computation and Language +1612.04500 +1612.04506 +1612.04507 Statistics Theory +1612.04509 Operator Algebras +1612.04510 Combinatorics +1612.04511 Functional Analysis +1612.04513 Logic in Computer Science +1612.04515 Information Theory +1612.04516 +1612.04518 Cryptography and Security +1612.04520 Computer Vision and Pattern Recognition +1612.04523 +1612.04524 Analysis of PDEs +1612.04526 Computer Vision and Pattern Recognition +1612.04527 Phenomenology +1612.04528 Biological Physics +1612.04529 Numerical Analysis +1612.04530 Computer Vision and Pattern Recognition +1612.04531 Networking and Internet Architecture +1612.04533 Analysis of PDEs +1612.04534 +1612.04536 Exactly Solvable and Integrable Systems +1612.04537 Phenomenology +1612.04538 Computation and Language +1612.04539 Number Theory +1612.04540 Astrophysics of Galaxies +1612.04541 Metric Geometry +1612.04542 Numerical Analysis +1612.04543 Differential Geometry +1612.04544 Instrumentation and Detectors +1612.04545 Optics +1612.04546 +1612.04547 Chemical Physics +1612.04548 Number Theory +1612.04549 Number Theory +1612.04550 Differential Geometry +1612.04552 Theory +1612.04554 +1612.04555 Applications +1612.04556 Adaptation and Self-Organizing Systems +1612.04557 Probability +1612.04558 Systems and Control +1612.04562 Optics +1612.04565 Astrophysics of Galaxies +1612.04566 Functional Analysis +1612.04567 Probability +1612.04568 Systems and Control +1612.04569 Geometric Topology +1612.04570 Algebraic Geometry +1612.04571 Data Structures and Algorithms +1612.04572 +1612.04573 Computer Vision and Pattern Recognition +1612.04574 Statistical Mechanics +1612.04575 Solar and Stellar Astrophysics +1612.04576 Probability +1612.04578 Functional Analysis +1612.04579 Lattice +1612.04580 Social and Information Networks +1612.04581 +1612.04582 Materials Science +1612.04585 Phenomenology +1612.04587 Solar and Stellar Astrophysics +1612.04588 Symbolic Computation +1612.04589 +1612.04590 Software Engineering +1612.04591 Solar and Stellar Astrophysics +1612.04592 Atmospheric and Oceanic Physics +1612.04595 High Energy Astrophysical Phenomena +1612.04596 Statistical Mechanics +1612.04597 Solar and Stellar Astrophysics +1612.04598 Human-Computer Interaction +1612.04599 Information Theory +1612.04603 Combinatorics +1612.04604 Instrumentation and Detectors +1612.04605 Plasma Physics +1612.04609 Computation and Language +1612.04610 Programming Languages +1612.04611 Soft Condensed Matter +1612.04612 Phenomenology +1612.04614 Instrumentation and Detectors +1612.04620 Materials Science +1612.04621 Lattice +1612.04622 Mesoscale and Nanoscale Physics +1612.04624 Theory +1612.04625 +1612.04626 Statistical Mechanics +1612.04627 Quantum Gases +1612.04628 Optics +1612.04630 Theory +1612.04631 Computer Vision and Pattern Recognition +1612.04633 Mesoscale and Nanoscale Physics +1612.04634 Mesoscale and Nanoscale Physics +1612.04636 Statistics Theory +1612.04637 Analysis of PDEs +1612.04638 +1612.04642 Computer Vision and Pattern Recognition +1612.04643 +1612.04644 Lattice +1612.04645 Analysis of PDEs +1612.04646 Information Theory +1612.04647 Computer Vision and Pattern Recognition +1612.04648 Software Engineering +1612.04651 Differential Geometry +1612.04652 Logic +1612.04654 Information Theory +1612.04655 Chaotic Dynamics +1612.04656 High Energy Astrophysical Phenomena +1612.04657 High Energy Astrophysical Phenomena +1612.04658 Theory +1612.04659 Neural and Evolutionary Computing +1612.04660 Geometric Topology +1612.04662 Information Theory +1612.04663 Fluid Dynamics +1612.04664 Cosmology and Nongalactic Astrophysics +1612.04666 Data Structures and Algorithms +1612.04667 Statistical Mechanics +1612.04670 High Energy Astrophysical Phenomena +1612.04671 Analysis of PDEs +1612.04672 High Energy Astrophysical Phenomena +1612.04673 Chemical Physics +1612.04675 Computation and Language +1612.04676 +1612.04677 Complex Variables +1612.04678 +1612.04680 Instrumentation and Methods for Astrophysics +1612.04681 Statistical Mechanics +1612.04683 Computation and Language +1612.04684 Solar and Stellar Astrophysics +1612.04685 Experiment +1612.04688 Multimedia +1612.04689 Data Structures and Algorithms +1612.04691 Materials Science +1612.04692 Computers and Society +1612.04693 Strongly Correlated Electrons +1612.04695 Other Quantitative Biology +1612.04698 Optimization and Control +1612.04699 Mesoscale and Nanoscale Physics +1612.04700 Materials Science +1612.04701 Phenomenology +1612.04702 Combinatorics +1612.04704 Systems and Control +1612.04706 Metric Geometry +1612.04707 Superconductivity +1612.04709 Materials Science +1612.04711 Exactly Solvable and Integrable Systems +1612.04712 Strongly Correlated Electrons +1612.04714 Solar and Stellar Astrophysics +1612.04716 Probability +1612.04719 Representation Theory +1612.04720 Cosmology and Nongalactic Astrophysics +1612.04721 Optimization and Control +1612.04722 Dynamical Systems +1612.04724 Optimization and Control +1612.04725 Analysis of PDEs +1612.04726 Cosmology and Nongalactic Astrophysics +1612.04727 Theory +1612.04730 Cosmology and Nongalactic Astrophysics +1612.04731 +1612.04732 Computation and Language +1612.04733 Computer Vision and Pattern Recognition +1612.04735 Solar and Stellar Astrophysics +1612.04737 Phenomenology +1612.04739 Learning +1612.04740 Statistics Theory +1612.04743 Theory +1612.04744 Computation and Language +1612.04745 Theory +1612.04746 Computer Science and Game Theory +1612.04750 Pattern Formation and Solitons +1612.04752 Dynamical Systems +1612.04754 Classical Analysis and ODEs +1612.04755 Computer Vision and Pattern Recognition +1612.04756 Materials Science +1612.04757 Computer Vision and Pattern Recognition +1612.04758 Theory +1612.04760 Plasma Physics +1612.04761 Probability +1612.04762 Atomic and Molecular Clusters +1612.04763 Probability +1612.04764 Differential Geometry +1612.04767 +1612.04769 Instrumentation and Detectors +1612.04770 Computer Vision and Pattern Recognition +1612.04771 Dynamical Systems +1612.04772 Instrumentation and Methods for Astrophysics +1612.04773 Optimization and Control +1612.04774 Computer Vision and Pattern Recognition +1612.04776 Geometric Topology +1612.04777 Systems and Control +1612.04778 Number Theory +1612.04779 +1612.04780 Computational Geometry +1612.04781 Materials Science +1612.04782 Optimization and Control +1612.04783 +1612.04784 Solar and Stellar Astrophysics +1612.04785 +1612.04786 Combinatorics +1612.04787 Computer Vision and Pattern Recognition +1612.04788 Strongly Correlated Electrons +1612.04789 Statistical Mechanics +1612.04793 Numerical Analysis +1612.04797 Information Theory +1612.04799 Machine Learning +1612.04800 Differential Geometry +1612.04802 Analysis of PDEs +1612.04803 +1612.04804 Learning +1612.04805 Differential Geometry +1612.04806 Instrumentation and Detectors +1612.04807 Mesoscale and Nanoscale Physics +1612.04808 Instrumentation and Detectors +1612.04809 Computer Vision and Pattern Recognition +1612.04810 Phenomenology +1612.04811 Computer Vision and Pattern Recognition +hep-ph/9411275 Phenomenology +0707.1082 Exactly Solvable and Integrable Systems +0707.1084 Exactly Solvable and Integrable Systems +0708.2512 Algebraic Geometry +0803.1439 Exactly Solvable and Integrable Systems +0807.1294 Exactly Solvable and Integrable Systems +0810.0766 Exactly Solvable and Integrable Systems +0902.1511 Exactly Solvable and Integrable Systems +1007.0359 Soft Condensed Matter +1007.4733 Soft Condensed Matter +1008.3074 +1010.3333 +1011.5091 +1012.3192 Theory +1105.4544 Number Theory +1107.3387 +1108.1090 Optics +1109.0833 Soft Condensed Matter +1109.3726 Optics +1112.4618 Analysis of PDEs +1202.1632 Algebraic Geometry +1202.2682 Exactly Solvable and Integrable Systems +1203.5318 Soft Condensed Matter +1204.6118 Methodology +1205.3144 Algebraic Geometry +1209.3358 Information Theory +1209.3638 Networking and Internet Architecture +1210.0913 +1211.4897 Algebraic Geometry +1301.1357 Soft Condensed Matter +1302.0674 +1304.0736 +1304.2075 +1305.5686 Exactly Solvable and Integrable Systems +1309.3188 Exactly Solvable and Integrable Systems +1310.1528 +1310.4067 Pricing of Securities +1401.5805 Optics +1403.3635 Combinatorics +1404.2980 Mesoscale and Nanoscale Physics +1404.3082 Computational Complexity +1404.6298 Computation +1404.6709 Optics +1404.6770 Optimization and Control +1405.2230 Mesoscale and Nanoscale Physics +1405.2688 +1405.6893 Discrete Mathematics +1406.1059 Networking and Internet Architecture +1406.1062 Computational Engineering, Finance, and Science +1406.1727 Information Theory +1406.7568 Astrophysics of Galaxies +1407.0064 Methodology +1407.4552 Combinatorics +1407.6918 Operator Algebras +1409.0370 Number Theory +1409.0398 Theory +1409.3114 Number Theory +1409.4926 Numerical Analysis +1409.6844 Phenomenology +1409.7849 Differential Geometry +1409.7971 Other Computer Science +1409.8041 Group Theory +1409.8642 Information Theory +1410.1259 Quantum Gases +1410.1452 Medical Physics +1410.1895 Digital Libraries +1410.2678 Plasma Physics +1410.4114 Plasma Physics +1410.6456 Superconductivity +1410.8149 Computation and Language +1410.8812 Experiment +1411.4948 Optics +1411.6118 Software Engineering +1412.2434 Mesoscale and Nanoscale Physics +1412.2649 Statistical Mechanics +1412.3127 +1412.3179 Dynamical Systems +1412.8513 Optics +1501.02274 Statistical Mechanics +1501.03091 Representation Theory +1501.05035 Applications +1501.07211 Analysis of PDEs +1501.07312 Materials Science +1502.00931 Dynamical Systems +1502.04943 +1502.05396 +1502.05591 Systems and Control +1502.06523 Materials Science +1503.00427 Statistical Mechanics +1503.00430 Statistical Mechanics +1503.00821 Optics +1503.01190 Computation and Language +1503.01784 Analysis of PDEs +1503.05503 Algebraic Geometry +1503.08072 Statistical Mechanics +1504.02042 Physics Education +1504.02056 Physics Education +1504.02113 +1505.00710 History and Overview +1505.01363 Group Theory +1505.02254 Pattern Formation and Solitons +1505.03685 Medical Physics +1505.05112 Number Theory +1505.05652 Mesoscale and Nanoscale Physics +1505.05841 Computation and Language +1505.07006 Strongly Correlated Electrons +1505.07668 Phenomenology +1506.02313 Theory +1506.06653 Cellular Automata and Lattice Gases +1506.06813 Discrete Mathematics +1506.08270 Numerical Analysis +1506.09031 +1507.00174 Optimization and Control +1507.01071 Probability +1507.02705 Plasma Physics +1507.03369 Dynamical Systems +1507.05434 Numerical Analysis +1507.05892 +1507.06638 Metric Geometry +1507.07438 Optics +1507.07618 Mesoscale and Nanoscale Physics +1507.08171 +1508.00536 Information Theory +1508.01480 +1508.02057 Algebraic Geometry +1508.04612 +1508.04782 Superconductivity +1508.04792 Optics +1508.05528 Fluid Dynamics +1508.06039 Logic +1509.01488 Logic +1509.03470 +1509.03638 Quantum Gases +1509.04081 Physics Education +1509.04084 Physics Education +1509.04296 Astrophysics of Galaxies +1509.04946 Statistical Mechanics +1509.05012 Soft Condensed Matter +1509.05432 Mesoscale and Nanoscale Physics +1509.06337 +1509.07323 +1509.07502 +1509.08130 Accelerator Physics +1509.08333 Learning +1509.09252 Classical Physics +1510.00849 Numerical Analysis +1510.00939 +1510.01295 Physics Education +1510.01296 Physics Education +1510.01299 Physics Education +1510.01300 Physics Education +1510.01319 Physics Education +1510.01761 Disordered Systems and Neural Networks +1510.02863 Applications +1510.05438 +1510.06752 Cosmology and Nongalactic Astrophysics +1510.07811 Strongly Correlated Electrons +1510.08007 Cryptography and Security +1510.08277 Solar and Stellar Astrophysics +1511.00758 Robotics +1511.02817 Strongly Correlated Electrons +1511.03247 Classical Analysis and ODEs +1511.03252 +1511.04402 Machine Learning +1511.04707 Learning +1511.05117 Strongly Correlated Electrons +1511.05384 Combinatorics +1511.05931 Logic +1511.06546 Genomics +1511.07248 Physics and Society +1511.07461 +1511.07548 +1511.09438 Optimization and Control +1512.02019 Experiment +1512.02208 Combinatorics +1512.04702 Optimization and Control +1512.04922 Statistics Theory +1512.07013 Strongly Correlated Electrons +1512.08624 Strongly Correlated Electrons +1512.09043 Strongly Correlated Electrons +1512.09358 Data Structures and Algorithms +1512.09360 Fluid Dynamics +1601.04710 Solar and Stellar Astrophysics +1601.05579 Algebraic Geometry +1601.06424 +1601.07720 Astrophysics of Galaxies +1601.07841 +1602.00412 Data Structures and Algorithms +1602.00929 Spectral Theory +1602.02304 +1602.02318 Representation Theory +1602.02963 Strongly Correlated Electrons +1602.03505 Risk Management +1602.03967 Rings and Algebras +1602.04442 Instrumentation and Detectors +1602.04500 Information Theory +1602.04562 Symbolic Computation +1602.04845 Multimedia +1602.04857 General Topology +1602.04969 +1602.04993 Mesoscale and Nanoscale Physics +1602.05187 Rings and Algebras +1602.05196 Theory +1602.05200 Earth and Planetary Astrophysics +1602.05208 Computation +1602.05210 Analysis of PDEs +1602.05211 Numerical Analysis +1602.05214 +1602.05217 Information Theory +1602.05220 Neurons and Cognition +1602.05222 +1602.05223 +1602.05228 Classical Analysis and ODEs +1602.05229 General Physics +1602.05232 Data Structures and Algorithms +1602.05233 Algebraic Geometry +1602.05236 Methodology +1602.05238 Computation +1602.05243 Instrumentation and Detectors +1602.05245 Chaotic Dynamics +1602.05251 Instrumentation and Detectors +1602.05254 Differential Geometry +1602.05255 Classical Physics +1602.05256 Computer Vision and Pattern Recognition +1602.05261 Fluid Dynamics +1602.05263 Data Structures and Algorithms +1602.05264 Optics +1602.05266 Differential Geometry +1602.05268 Analysis of PDEs +1602.05269 Superconductivity +1602.05271 Statistical Mechanics +1602.05274 Soft Condensed Matter +1602.05279 Combinatorics +1602.05281 Systems and Control +1602.05284 Mesoscale and Nanoscale Physics +1602.05285 Machine Learning +1602.05287 Information Theory +1602.05290 Differential Geometry +1602.05292 Computation and Language +1602.05299 Experiment +1602.05302 Theory +1602.05305 Networking and Internet Architecture +1602.05307 Computation and Language +1602.05309 Pattern Formation and Solitons +1602.05310 Learning +1602.05311 Multimedia +1602.05312 Computer Vision and Pattern Recognition +1602.05313 Algebraic Topology +1602.05316 Superconductivity +1602.05323 Statistical Finance +1602.05327 Optimization and Control +1602.05328 Genomics +1602.05329 Instrumentation and Methods for Astrophysics +1602.05331 Analysis of PDEs +1602.05332 Functional Analysis +1602.05333 Networking and Internet Architecture +1602.05340 Superconductivity +1602.05343 Number Theory +1602.05345 Cosmology and Nongalactic Astrophysics +1602.05348 Astrophysics of Galaxies +1602.05349 Applications +1602.05351 Information Theory +1602.05354 Numerical Analysis +1602.05355 +1602.05356 Computational Finance +1602.05358 Chaotic Dynamics +1602.05365 Programming Languages +1602.05370 Materials Science +1602.05372 Cryptography and Security +1602.05373 Logic +1602.05374 Analysis of PDEs +1602.05375 Materials Science +1602.05376 +1602.05377 Materials Science +1602.05379 Commutative Algebra +1602.05383 Strongly Correlated Electrons +1602.05384 Analysis of PDEs +1602.05386 Combinatorics +1602.05390 Mesoscale and Nanoscale Physics +1602.05392 Phenomenology +1602.05395 Software Engineering +1602.05396 History and Overview +1602.05397 Numerical Analysis +1602.05398 Logic +1602.05399 Applications +1602.05400 Logic in Computer Science +1602.05402 Medical Physics +1602.05404 Artificial Intelligence +1602.05408 Instrumentation and Methods for Astrophysics +1602.05414 Probability +1602.05416 Fluid Dynamics +1602.05417 Classical Physics +1602.05420 History and Overview +1602.05424 +1602.05425 Atomic and Molecular Clusters +1602.05426 +1602.05428 History and Overview +1602.05429 Geometric Topology +1602.05435 Materials Science +1602.05436 Machine Learning +1602.05437 Data Structures and Algorithms +1602.05439 Computer Vision and Pattern Recognition +1602.05440 Physics Education +1602.05444 Numerical Analysis +1602.05446 Combinatorics +1602.05451 +1602.05453 Applications +1602.05454 Methodology +1602.05455 Methodology +1602.05457 Spectral Theory +1602.05459 Spectral Theory +1602.05460 Robotics +1602.05461 Physics Education +1602.05462 Information Theory +1602.05467 Numerical Analysis +1602.05471 Mathematical Finance +1602.05472 Combinatorics +1602.05480 Information Theory +1602.05481 Computational Geometry +1602.05483 Statistical Mechanics +1602.05486 Instrumentation and Methods for Astrophysics +1602.05487 Metric Geometry +1602.05488 Accelerator Physics +1602.05489 Statistical Finance +1602.05492 Differential Geometry +1602.05497 Data Analysis, Statistics and Probability +1602.05500 Probability +1602.05507 Systems and Control +1602.05510 Distributed, Parallel, and Cluster Computing +1602.05511 Information Theory +1602.05512 Geometric Topology +1602.05513 Information Theory +1602.05515 Combinatorics +1602.05522 Statistics Theory +1602.05524 Analysis of PDEs +1602.05532 Quantum Gases +1602.05537 Systems and Control +1602.05539 Phenomenology +1602.05540 Methodology +1602.05542 Combinatorics +1602.05543 High Energy Astrophysical Phenomena +1602.05546 Robotics +1602.05548 Networking and Internet Architecture +1602.05549 Applications +1602.05551 Distributed, Parallel, and Cluster Computing +1602.05556 Networking and Internet Architecture +1602.05558 Molecular Networks +1602.05559 Computers and Society +1602.05563 Machine Learning +1602.05565 Probability +1602.05566 Materials Science +1602.05568 Learning +hep-ph/0311077 Phenomenology +nlin/0211008 Exactly Solvable and Integrable Systems +nlin/0211018 Exactly Solvable and Integrable Systems +nlin/0310010 Exactly Solvable and Integrable Systems +nlin/0501044 Exactly Solvable and Integrable Systems +nlin/0510068 Exactly Solvable and Integrable Systems +physics/0406144 General Physics +0710.2107 Group Theory +0804.1810 Probability +0812.1036 Group Theory +0903.3479 Chaotic Dynamics +0908.1962 Soft Condensed Matter +0908.2857 Mesoscale and Nanoscale Physics +0911.2971 +1002.0892 General Physics +1104.5221 Geometric Topology +1111.7180 Materials Science +1203.0832 +1203.2436 +1203.6676 Symplectic Geometry +1208.1974 Experiment +1209.4624 Probability +1210.1120 Number Theory +1210.3740 Chaotic Dynamics +1211.3869 Information Theory +1211.4579 Cosmology and Nongalactic Astrophysics +1212.0463 Statistics Theory +1301.6070 General Topology +1301.7297 Theory +1304.7938 Cosmology and Nongalactic Astrophysics +1305.5903 Strongly Correlated Electrons +1307.1149 Data Analysis, Statistics and Probability +1307.4986 Chaotic Dynamics +1308.2587 Algebraic Topology +1308.3853 Number Theory +1309.2484 +1310.3861 Group Theory +1310.5489 Geometric Topology +1311.0763 +1311.4515 Differential Geometry +1311.4871 Operator Algebras +1312.3493 +1401.1061 Artificial Intelligence +1401.3231 Representation Theory +1401.4400 Analysis of PDEs +1401.4952 Computational Geometry +1402.3366 Quantum Gases +1402.4045 +1402.5179 +1403.1512 Data Structures and Algorithms +1403.7031 Quantum Gases +1404.0024 Cryptography and Security +1404.2825 Information Theory +1404.3569 Solar and Stellar Astrophysics +1405.7038 Astrophysics of Galaxies +1406.1321 +1406.4392 Systems and Control +1407.3970 +1407.8269 Multiagent Systems +1408.2499 Geometric Topology +1408.4695 Cosmology and Nongalactic Astrophysics +1408.4844 Exactly Solvable and Integrable Systems +1409.3664 Algebraic Geometry +1409.5582 +1412.3848 Group Theory +1412.3864 Logic +1501.01612 Algebraic Geometry +1501.01743 +1501.02220 Metric Geometry +1501.05619 Combinatorics +1501.06611 +1502.02719 Functional Analysis +1502.05990 Statistics Theory +1503.01746 Classical Analysis and ODEs +1503.05199 Strongly Correlated Electrons +1503.05841 +1503.06414 Materials Science +1503.06469 Category Theory +1503.07168 Cosmology and Nongalactic Astrophysics +1503.09112 Formal Languages and Automata Theory +1504.02877 Phenomenology +1504.03114 Atomic Physics +1504.04785 Information Theory +1505.00631 Numerical Analysis +1505.00705 Differential Geometry +1505.01688 Physics and Society +1505.02981 Astrophysics of Galaxies +1505.04980 Representation Theory +1505.05292 Metric Geometry +1505.06694 +1505.08043 Combinatorics +1506.01686 Differential Geometry +1506.01917 Methodology +1506.08199 Strongly Correlated Electrons +1506.09091 Optimization and Control +1506.09129 Commutative Algebra +1506.09168 Commutative Algebra +1506.09184 Probability +1507.00473 Learning +1507.01296 Statistics Theory +1507.01824 Number Theory +1507.06094 Statistical Mechanics +1507.06255 Fluid Dynamics +1507.07149 +1508.02994 Optimization and Control +1508.03201 Physics and Society +1508.03807 Rings and Algebras +1508.03929 Computer Vision and Pattern Recognition +1508.04106 Probability +1508.04289 Numerical Analysis +1508.04326 Computer Vision and Pattern Recognition +1508.05233 Mathematical Finance +1508.05600 Algebraic Geometry +1509.00262 +1509.01534 Spectral Theory +1509.02688 Complex Variables +1509.03136 Numerical Analysis +1509.04485 Combinatorics +1509.06426 Fluid Dynamics +1509.07644 Number Theory +1510.01277 Optics +1510.01934 Differential Geometry +1510.02294 Materials Science +1510.02443 +1510.02616 +1510.03641 Probability +1510.04700 Cosmology and Nongalactic Astrophysics +1510.06333 Classical Analysis and ODEs +1510.07400 +1510.07710 Group Theory +1510.07942 Fluid Dynamics +1510.08347 Analysis of PDEs +1510.08998 Combinatorics +1511.02943 +1511.03078 Fluid Dynamics +1511.04153 Computer Vision and Pattern Recognition +1511.04584 Mesoscale and Nanoscale Physics +1511.05019 Numerical Analysis +1511.06239 Differential Geometry +1511.07527 Data Structures and Algorithms +1511.08814 Quantum Gases +1511.08851 Logic in Computer Science +1512.00209 Statistics Theory +1512.02279 Group Theory +1512.02957 +1512.03394 Strongly Correlated Electrons +1512.03665 Analysis of PDEs +1512.05020 Computers and Society +1512.05438 Number Theory +1512.05532 Fluid Dynamics +1512.06283 Data Structures and Algorithms +1512.06825 High Energy Astrophysical Phenomena +1512.07086 Superconductivity +1512.07146 Learning +1512.07269 Numerical Analysis +1512.07722 Phenomenology +1601.00601 Theory +1601.01581 Combinatorics +1601.01824 Discrete Mathematics +1601.02161 Probability +1601.02434 Plasma Physics +1601.02556 Quantum Gases +1601.02896 Combinatorics +1601.03363 Metric Geometry +1601.03605 Probability +1601.03670 Applications +1601.04053 Statistical Mechanics +1601.04286 Statistical Mechanics +1601.04654 Phenomenology +1601.05418 Cosmology and Nongalactic Astrophysics +1601.05479 Algebraic Geometry +1601.05804 Earth and Planetary Astrophysics +1601.06318 Algebraic Topology +1601.07194 Classical Analysis and ODEs +1602.00021 Operator Algebras +1602.02375 Combinatorics +1602.02514 Machine Learning +1602.02680 Computational Engineering, Finance, and Science +1602.02957 +1602.04866 +1602.05259 Operator Algebras +1602.06881 Optics +1602.07392 Statistical Mechanics +1602.07788 Optics +1602.08568 Molecular Networks +1603.00791 Quantum Gases +1603.00948 Optics +1603.02049 Methodology +1603.02116 Differential Geometry +1603.02371 Databases +1603.02435 +1603.02681 Strongly Correlated Electrons +1603.03069 +1603.03771 Theory +1603.04209 Analysis of PDEs +1603.05705 +1603.05727 Analysis of PDEs +1603.06175 Physics and Society +1603.06269 Number Theory +1603.06341 Theory +1603.06820 Analysis of PDEs +1603.07327 Information Theory +1603.07521 Metric Geometry +1603.07775 Systems and Control +1603.08381 Mesoscale and Nanoscale Physics +1603.09600 Analysis of PDEs +1603.09632 Plasma Physics +1604.01169 Data Structures and Algorithms +1604.02467 Quantitative Methods +1604.02477 Learning +1604.03531 +1604.03708 +1604.03755 Computer Vision and Pattern Recognition +1604.04684 Emerging Technologies +1604.05395 Optics +1604.06009 Representation Theory +1604.06143 Information Theory +1604.06486 Computer Vision and Pattern Recognition +1604.06918 Data Structures and Algorithms +1604.07547 Computer Vision and Pattern Recognition +1604.07814 Optimization and Control +1604.07917 +1604.08408 +1604.08482 Phenomenology +1605.01087 +1605.01234 Strongly Correlated Electrons +1605.02406 Robotics +1605.02572 Phenomenology +1605.02625 Phenomenology +1605.02727 Number Theory +1605.02882 Data Structures and Algorithms +1605.02948 Computation and Language +1605.04608 Experiment +1605.04612 Phenomenology +1605.04787 Probability +1605.04866 Geometric Topology +1605.04883 Atomic Physics +1605.05290 Adaptation and Self-Organizing Systems +1605.05806 Algebraic Geometry +1605.06317 +1605.06414 Physics and Society +1605.06521 Operator Algebras +1605.06800 Geometric Topology +1605.06833 Geometric Topology +1605.07276 +1605.07289 Computer Vision and Pattern Recognition +1605.07612 High Energy Astrophysical Phenomena +1605.07813 +1605.07954 Theory +1605.08492 Social and Information Networks +1605.08760 Phenomenology +1605.09791 Superconductivity +1606.00602 Machine Learning +1606.00691 General Physics +1606.00768 Mesoscale and Nanoscale Physics +1606.00788 Analysis of PDEs +1606.01414 Quantum Algebra +1606.01822 Machine Learning +1606.01857 Theory +1606.01880 +1606.02182 Discrete Mathematics +1606.02494 Superconductivity +1606.02681 Rings and Algebras +1606.03152 Computation and Language +1606.03632 Computation and Language +1606.04334 Computational Geometry +1606.04798 Instrumentation and Methods for Astrophysics +1606.04866 Functional Analysis +1606.05083 Mesoscale and Nanoscale Physics +1606.05529 Category Theory +1606.05813 Differential Geometry +1606.05929 Neural and Evolutionary Computing +1606.06105 Fluid Dynamics +1606.06781 Number Theory +1606.06936 Fluid Dynamics +1606.07259 Databases +1606.07693 High Energy Astrophysical Phenomena +1606.07798 +1606.08305 Fluid Dynamics +1606.08342 Fluid Dynamics +1606.08396 Fluid Dynamics +1606.09009 Fluid Dynamics +1606.09462 Algebraic Geometry +1607.00798 Combinatorics +1607.01408 Fluid Dynamics +1607.01483 Astrophysics of Galaxies +1607.01845 Social and Information Networks +1607.03860 Functional Analysis +1607.03891 Astrophysics of Galaxies +1607.04331 Machine Learning +1607.04490 Probability +1607.04532 Methodology +1607.04647 Mesoscale and Nanoscale Physics +1607.04989 Computational Geometry +1607.05147 Mesoscale and Nanoscale Physics +1607.05315 High Energy Astrophysical Phenomena +1607.05356 Performance +1607.05397 Data Structures and Algorithms +1607.06045 Mesoscale and Nanoscale Physics +1607.06263 Digital Libraries +1607.06441 Strongly Correlated Electrons +1607.07070 Geophysics +1607.07301 Theory +1607.07549 Statistics Theory +1607.08189 Instrumentation and Detectors +1608.00376 Algebraic Geometry +1608.00429 Representation Theory +1608.01250 Computer Vision and Pattern Recognition +1608.01447 Phenomenology +1608.01769 Computer Vision and Pattern Recognition +1608.01846 Systems and Control +1608.02028 Pricing of Securities +1608.02581 Classical Analysis and ODEs +1608.02683 Optimization and Control +1608.03236 Tissues and Organs +1608.04590 +1608.04605 Fluid Dynamics +1608.05005 +1608.05057 Materials Science +1608.05092 Strongly Correlated Electrons +1608.05362 Probability +1608.05849 Number Theory +1608.05949 Learning +1608.06219 Astrophysics of Galaxies +1608.06225 Disordered Systems and Neural Networks +1608.06235 Robotics +1608.06251 +1608.06338 Computer Vision and Pattern Recognition +1608.06352 Strongly Correlated Electrons +1608.06445 Strongly Correlated Electrons +1608.06888 Methodology +1608.07384 Optics +1608.07937 Materials Science +1608.08272 +1608.08382 Strongly Correlated Electrons +1608.08932 Populations and Evolution +1608.08973 Cosmology and Nongalactic Astrophysics +1608.08999 Probability +1609.00143 Theory +1609.00361 Computer Vision and Pattern Recognition +1609.00672 +1609.00676 Experiment +1609.00695 Methodology +1609.01312 Differential Geometry +1609.01329 Computer Vision and Pattern Recognition +1609.01433 Strongly Correlated Electrons +1609.01664 Genomics +1609.02029 Group Theory +1609.02255 +1609.02290 Theory +1609.02622 Social and Information Networks +1609.02721 Populations and Evolution +1609.02833 Number Theory +1609.02913 Astrophysics of Galaxies +1609.02914 Solar and Stellar Astrophysics +1609.02918 Astrophysics of Galaxies +1609.02920 Astrophysics of Galaxies +1609.02924 Cosmology and Nongalactic Astrophysics +1609.02926 Theory +1609.02928 Optimization and Control +1609.02929 Chemical Physics +1609.02931 Robotics +1609.02932 Computer Vision and Pattern Recognition +1609.02933 Instrumentation and Detectors +1609.02934 Instrumentation and Detectors +1609.02935 Analysis of PDEs +1609.02938 Quantitative Methods +1609.02939 High Energy Astrophysical Phenomena +1609.02940 High Energy Astrophysical Phenomena +1609.02945 Social and Information Networks +1609.02947 Cryptography and Security +1609.02948 Computer Vision and Pattern Recognition +1609.02949 Algebraic Topology +1609.02950 Methodology +1609.02953 Cryptography and Security +1609.02954 Cryptography and Security +1609.02955 Spectral Theory +1609.02956 Populations and Evolution +1609.02957 Data Structures and Algorithms +1609.02959 Populations and Evolution +1609.02960 Computation and Language +1609.02963 Optimization and Control +1609.02965 Information Theory +1609.02966 Cryptography and Security +1609.02969 +1609.02970 Logic +1609.02972 Classical Analysis and ODEs +1609.02973 +1609.02974 Computer Vision and Pattern Recognition +1609.02975 Metric Geometry +1609.02976 Artificial Intelligence +1609.02977 Physics and Society +1609.02981 Other Quantitative Biology +1609.02982 Networking and Internet Architecture +1609.02985 Information Theory +1609.02987 Cryptography and Security +1609.02988 Algebraic Geometry +1609.02990 Phenomenology +1609.02994 Computer Vision and Pattern Recognition +1609.02995 Other Computer Science +1609.03000 Data Structures and Algorithms +1609.03001 Combinatorics +1609.03002 Combinatorics +1609.03003 Cryptography and Security +1609.03004 Probability +1609.03009 +1609.03010 Superconductivity +1609.03011 Optimization and Control +1609.03014 Logic in Computer Science +1609.03016 Optimization and Control +1609.03017 Optimization and Control +1609.03020 Cryptography and Security +1609.03021 Functional Analysis +1609.03022 +1609.03023 Category Theory +1609.03024 Computer Vision and Pattern Recognition +1609.03025 +1609.03026 Group Theory +1609.03027 Classical Analysis and ODEs +1609.03028 Group Theory +1609.03029 Pricing of Securities +1609.03031 Number Theory +1609.03032 Graphics +1609.03034 Phenomenology +1609.03035 Human-Computer Interaction +1609.03036 Number Theory +1609.03041 Combinatorics +1609.03043 Differential Geometry +1609.03044 Statistical Mechanics +1609.03045 Methodology +1609.03047 Cryptography and Security +1609.03048 Soft Condensed Matter +1609.03049 Combinatorics +1609.03050 Human-Computer Interaction +1609.03054 Learning +1609.03059 Combinatorics +1609.03060 Probability +1609.03062 Formal Languages and Automata Theory +1609.03064 +1609.03066 Chemical Physics +1609.03067 Information Retrieval +1609.03069 Fluid Dynamics +1609.03070 Dynamical Systems +1609.03073 Genomics +1609.03074 Logic +1609.03075 +1609.03076 Robotics +1609.03077 Chemical Physics +1609.03078 Logic +1609.03079 Strongly Correlated Electrons +1609.03081 Functional Analysis +1609.03083 General Mathematics +1609.03084 Combinatorics +1609.03086 +1609.03087 Number Theory +1609.03088 Statistics Theory +1609.03091 Number Theory +1609.03094 Space Physics +1609.03097 Dynamical Systems +1609.03098 Soft Condensed Matter +1609.03099 Optimization and Control +1609.03101 Combinatorics +1609.03104 Phenomenology +1609.03105 Classical Analysis and ODEs +1609.03106 Information Theory +1609.03107 Probability +1609.03108 Robotics +1609.03109 Cryptography and Security +1609.03110 Discrete Mathematics +1609.03111 Analysis of PDEs +1609.03112 Astrophysics of Galaxies +1609.03115 Optimization and Control +1609.03119 General Topology +1609.03123 Computational Physics +1609.03128 Combinatorics +1609.03129 Tissues and Organs +1609.03131 Space Physics +1609.03132 Probability +1609.03133 Commutative Algebra +1609.03134 Number Theory +1609.03139 Logic in Computer Science +1609.03140 Computer Vision and Pattern Recognition +1609.03145 Artificial Intelligence +1609.03146 Programming Languages +1609.03147 Instrumentation and Methods for Astrophysics +1609.03148 Computation and Language +1609.03150 Information Theory +1609.03152 +1609.03153 Quantum Gases +1609.03155 Representation Theory +1609.03157 Distributed, Parallel, and Cluster Computing +1609.03159 +1609.03161 Systems and Control +1609.03163 +1609.03164 Machine Learning +1609.03169 Classical Physics +1609.03170 +1609.03171 +1609.03172 Probability +1609.03173 Information Theory +1609.03174 +1609.03175 Numerical Analysis +1609.03180 Analysis of PDEs +1609.03182 Probability +1609.03183 Optimization and Control +1609.03184 Information Theory +1609.03185 +1609.03186 Dynamical Systems +1609.03187 Number Theory +1609.03192 Group Theory +1609.03194 Optimization and Control +1609.03195 Solar and Stellar Astrophysics +1609.03198 Logic +1609.03199 Combinatorics +1609.03200 Cosmology and Nongalactic Astrophysics +1609.03204 Computation and Language +1609.03205 Computation and Language +1609.03206 Strongly Correlated Electrons +1609.03207 Physics and Society +1609.03211 Social and Information Networks +1609.03213 Sound +1609.03214 Category Theory +1609.03216 Combinatorics +1609.03217 +1609.03223 Economics +1609.03224 Human-Computer Interaction +1609.03225 Combinatorics +1609.03226 Functional Analysis +1609.03228 Methodology +1609.03229 Applications +1609.03230 +1609.03231 Analysis of PDEs +1609.03232 Logic +1609.03234 Computer Science and Game Theory +1609.03236 Analysis of PDEs +1609.03237 Statistical Mechanics +1609.03241 Statistics Theory +1609.03242 Experiment +1609.03245 Algebraic Geometry +1609.03247 Differential Geometry +1609.03248 Physics and Society +1609.03251 Data Structures and Algorithms +1609.03255 +1609.03256 +1609.03258 Information Theory +1609.03260 Information Theory +1609.03261 Optimization and Control +1609.03264 High Energy Astrophysical Phenomena +1609.03265 Probability +1609.03266 Computers and Society +1609.03267 Experiment +1609.03270 Functional Analysis +1609.03272 Commutative Algebra +1609.03273 Instrumentation and Methods for Astrophysics +1609.03276 Category Theory +1609.03277 Computer Vision and Pattern Recognition +1609.03283 Human-Computer Interaction +1609.03284 Fluid Dynamics +1609.03286 Artificial Intelligence +1609.03287 Instrumentation and Detectors +1609.03289 Networking and Internet Architecture +1609.03294 +1609.03296 Sound +1609.03297 Methodology +1609.03300 Atomic Physics +1609.03303 Functional Analysis +1609.03305 Cryptography and Security +1609.03306 Classical Physics +1609.03307 Differential Geometry +1609.03308 +1609.03311 Differential Geometry +1609.03312 Computers and Society +1609.03313 Mesoscale and Nanoscale Physics +1609.03314 Differential Geometry +1609.03325 Classical Analysis and ODEs +1609.03326 Numerical Analysis +1609.03327 Phenomenology +1609.03328 Numerical Analysis +1609.03333 Methodology +1609.03335 Superconductivity +1609.03336 High Energy Astrophysical Phenomena +1609.03337 Molecular Networks +1609.03340 Probability +1609.03341 Logic in Computer Science +1609.03345 Logic in Computer Science +1609.03346 Databases +1609.03347 Performance +1609.03349 Algebraic Geometry +1609.03352 Atomic Physics +1609.03353 Plasma Physics +1609.03359 +1609.03360 Plasma Physics +1609.03361 Mathematical Software +1609.03362 Optics +1609.03363 Information Theory +1609.03365 Statistical Mechanics +1609.03367 Methodology +1609.03369 +1609.03371 Logic +1609.03372 Neurons and Cognition +1609.03373 Numerical Analysis +1609.03376 Computation and Language +1609.03377 Metric Geometry +1609.03381 Mesoscale and Nanoscale Physics +1609.03384 Instrumentation and Detectors +1609.03385 Digital Libraries +1609.03387 Networking and Internet Architecture +1609.03388 Astrophysics of Galaxies +1609.03392 Solar and Stellar Astrophysics +1609.03393 Combinatorics +1609.03394 General Mathematics +1609.03395 General Mathematics +1609.03401 Combinatorics +1609.03404 General Physics +1609.03405 Functional Analysis +1609.03406 Analysis of PDEs +1609.03408 Phenomenology +1609.03410 Fluid Dynamics +1609.03413 General Mathematics +1609.03414 Analysis of PDEs +1609.03415 Computer Vision and Pattern Recognition +1609.03416 +1609.03417 Strongly Correlated Electrons +1609.03418 Plasma Physics +1609.03427 Fluid Dynamics +1609.03428 Astrophysics of Galaxies +1609.03432 Logic in Computer Science +1609.03436 Methodology +1609.03437 Artificial Intelligence +1609.03439 Applications +1609.03440 Atomic Physics +1609.03441 Computation and Language +1609.03442 Social and Information Networks +1609.03443 Numerical Analysis +1609.03444 Phenomenology +1609.03447 Dynamical Systems +1609.03448 Learning +1609.03449 Earth and Planetary Astrophysics +1609.03452 Biological Physics +1609.03456 Materials Science +1609.03457 Digital Libraries +1609.03458 Materials Science +1609.03460 Formal Languages and Automata Theory +1609.03463 Chemical Physics +1609.03464 Solar and Stellar Astrophysics +1609.03465 Systems and Control +1609.03468 Combinatorics +1609.03470 Statistics Theory +1609.03471 Economics +1609.03472 High Energy Astrophysical Phenomena +1609.03473 Metric Geometry +1609.03474 Mesoscale and Nanoscale Physics +1609.03476 Systems and Control +1609.03478 Social and Information Networks +1609.03479 Methodology +1609.03481 Accelerator Physics +1609.03483 Statistical Mechanics +1609.03484 Software Engineering +1609.03485 Algebraic Topology +1609.03486 Materials Science +1609.03487 Superconductivity +1609.03491 Number Theory +1609.03492 Group Theory +1609.03493 Theory +1609.03495 Accelerator Physics +1609.03496 Chemical Physics +1609.03497 Combinatorics +1609.03498 Networking and Internet Architecture +1609.03500 Computer Vision and Pattern Recognition +1609.03501 Combinatorics +1609.03504 Number Theory +1609.03506 Quantum Algebra +1609.03507 Combinatorics +1609.03509 Cosmology and Nongalactic Astrophysics +1609.03511 Statistics Theory +1609.03512 Dynamical Systems +1609.03514 Functional Analysis +1609.03515 Strongly Correlated Electrons +1609.03517 Physics Education +1609.03519 Machine Learning +1609.03525 Group Theory +1609.03526 Physics and Society +1609.03527 Phenomenology +1609.03529 Computer Vision and Pattern Recognition +1609.03530 Experiment +1609.03531 Instrumentation and Methods for Astrophysics +1609.03532 Computer Vision and Pattern Recognition +1609.03534 Theory +1609.03535 Cellular Automata and Lattice Gases +1609.03536 Computer Vision and Pattern Recognition +1609.03537 Computer Science and Game Theory +1609.03538 Mesoscale and Nanoscale Physics +1609.03541 Disordered Systems and Neural Networks +1609.03542 Solar and Stellar Astrophysics +1609.03544 Machine Learning +1609.03545 Data Structures and Algorithms +1609.03547 Information Theory +1609.03548 +1609.03549 Combinatorics +hep-th/0302114 Theory +math/0405482 Combinatorics +math/0502060 Group Theory +1604.08359 Classical Analysis and ODEs +1604.08387 Algebraic Topology +1604.08426 Computer Vision and Pattern Recognition +1604.08447 Classical Physics +1604.08513 +1604.08529 History and Philosophy of Physics +0906.0623 Group Theory +0906.3749 Logic +1006.3895 Representation Theory +1006.4586 Data Structures and Algorithms +1009.2817 Functional Analysis +1012.4228 Dynamical Systems +1105.4830 Algebraic Geometry +1111.3071 Optics +1202.0916 +1204.4933 Strongly Correlated Electrons +1211.0733 Optics +1303.2205 Spectral Theory +1304.0708 Number Theory +1306.0084 Statistics Theory +1307.3835 Networking and Internet Architecture +1308.0704 Algebraic Topology +1310.0017 +1311.1716 Optics +1311.2948 Methodology +1311.6189 Rings and Algebras +1312.1559 Combinatorics +1312.7257 Probability +1401.3211 Applications +1403.0920 Combinatorics +1403.4428 Numerical Analysis +1403.7910 +1406.2653 General Physics +1406.3361 Metric Geometry +1407.0905 Analysis of PDEs +1407.2497 Rings and Algebras +1407.3074 Quantum Algebra +1407.6567 Functional Analysis +1407.8309 Networking and Internet Architecture +1408.1922 Optimization and Control +1408.4809 Solar and Stellar Astrophysics +1409.1387 Instrumentation and Methods for Astrophysics +1409.1671 Strongly Correlated Electrons +1409.2286 Probability +1409.3017 Functional Analysis +1409.6167 +1410.1244 Superconductivity +1410.7365 Machine Learning +1410.7524 Group Theory +1411.3515 Chaotic Dynamics +1411.6839 +1412.3386 Disordered Systems and Neural Networks +1412.7853 Representation Theory +1502.00790 Quantum Algebra +1502.01078 Functional Analysis +1502.07114 Solar and Stellar Astrophysics +1502.07324 Superconductivity +1502.07611 Algebraic Topology +1503.00498 Algebraic Topology +1503.00501 Algebraic Topology +1503.02759 Superconductivity +1503.02839 Information Theory +1503.03785 Functional Analysis +1503.04761 Theory +1503.04904 Systems and Control +1504.01102 Mesoscale and Nanoscale Physics +1504.01438 Systems and Control +1504.01484 Theory +1504.01550 Number Theory +1504.05175 High Energy Astrophysical Phenomena +1505.02440 Analysis of PDEs +1505.03928 Differential Geometry +1505.04199 Soft Condensed Matter +1505.04344 Discrete Mathematics +1505.06387 Theory +1506.00534 Mesoscale and Nanoscale Physics +1506.04677 Dynamical Systems +1506.08235 Computational Engineering, Finance, and Science +1507.01684 Number Theory +1507.02113 +1507.02539 Algebraic Geometry +1507.04016 Classical Analysis and ODEs +1507.04028 Probability +1507.04083 +1507.05314 +1507.05561 +1507.06076 Probability +1507.07542 Quantum Gases +1508.01778 Materials Science +1508.01903 Machine Learning +1508.02288 Phenomenology +1508.03780 Theory +1508.04452 +1508.06595 +1508.07116 Phenomenology +1508.07869 Experiment +1509.01955 Mesoscale and Nanoscale Physics +1509.03898 Instrumentation and Detectors +1509.04953 Materials Science +1509.06205 +1509.08141 Experiment +1509.09018 Exactly Solvable and Integrable Systems +1510.00169 Statistical Mechanics +1510.00667 Statistical Mechanics +1510.02161 Soft Condensed Matter +1510.03457 Classical Analysis and ODEs +1510.03615 Materials Science +1510.04264 Commutative Algebra +1510.04697 Mesoscale and Nanoscale Physics +1510.04805 +1510.06034 Cosmology and Nongalactic Astrophysics +1510.06163 Statistical Mechanics +1510.07463 Lattice +1510.08326 Exactly Solvable and Integrable Systems +1510.09017 Materials Science +1511.00724 Phenomenology +1511.01306 Numerical Analysis +1511.03872 Differential Geometry +1511.04612 Optics +1511.05077 Learning +1511.06649 Cosmology and Nongalactic Astrophysics +1511.07937 Materials Science +1511.08186 Mesoscale and Nanoscale Physics +1511.09207 Computer Vision and Pattern Recognition +1512.01685 Mesoscale and Nanoscale Physics +1512.02337 Data Structures and Algorithms +1512.05150 Statistical Mechanics +1512.07376 Experiment +1512.07534 Algebraic Geometry +1601.00316 Solar and Stellar Astrophysics +1601.00468 Chemical Physics +1601.00500 Quantum Gases +1601.00547 +1601.01832 Rings and Algebras +1601.01965 +1601.03985 Strongly Correlated Electrons +1601.04049 +1601.04106 Chemical Physics +1601.05268 Probability +1601.05789 Mesoscale and Nanoscale Physics +1601.05841 Physics Education +1601.07356 Cosmology and Nongalactic Astrophysics +1601.07442 Analysis of PDEs +1601.07893 +1601.07900 Statistical Finance +1602.00363 Databases +1602.00443 Phenomenology +1602.00589 Number Theory +1602.00774 Algebraic Geometry +1602.00801 Human-Computer Interaction +1602.00849 Space Physics +1602.00904 Human-Computer Interaction +1602.00915 Earth and Planetary Astrophysics +1602.01058 Analysis of PDEs +1602.01075 Software Engineering +1602.01085 Number Theory +1602.01107 Social and Information Networks +1602.01116 Data Structures and Algorithms +1602.01122 Superconductivity +1602.01126 Combinatorics +1602.01127 Differential Geometry +1602.01128 Systems and Control +1602.01130 Cryptography and Security +1602.01131 Geometric Topology +1602.01133 Number Theory +1602.01134 Materials Science +1602.01136 Materials Science +1602.01137 Information Retrieval +1602.01140 Optimization and Control +1602.01143 Algebraic Geometry +1602.01144 Cosmology and Nongalactic Astrophysics +1602.01146 Rings and Algebras +1602.01155 Materials Science +1602.01159 Quantum Algebra +1602.01162 Combinatorics +1602.01163 Functional Analysis +1602.01164 Learning +1602.01167 Functional Analysis +1602.01170 Programming Languages +1602.01171 Logic in Computer Science +1602.01172 Software Engineering +1602.01173 Logic in Computer Science +1602.01174 Logic in Computer Science +1602.01175 Logic in Computer Science +1602.01176 Logic in Computer Science +1602.01178 Multimedia +1602.01183 +1602.01184 Numerical Analysis +1602.01185 Computational Physics +1602.01186 Computational Physics +1602.01189 Differential Geometry +1602.01196 Methodology +1602.01197 Computer Vision and Pattern Recognition +1602.01200 Numerical Analysis +1602.01201 Analysis of PDEs +1602.01206 Applications +1602.01207 Representation Theory +1602.01211 Adaptation and Self-Organizing Systems +1602.01213 Methodology +1602.01214 Rings and Algebras +1602.01221 +1602.01223 Soft Condensed Matter +1602.01225 Systems and Control +1602.01226 Software Engineering +1602.01228 Computer Vision and Pattern Recognition +1602.01233 Logic +1602.01235 +1602.01240 Statistical Mechanics +1602.01243 Algebraic Geometry +1602.01244 Metric Geometry +1602.01247 Optics +1602.01248 Databases +1602.01249 Fluid Dynamics +1602.01254 Computation +1602.01259 Atmospheric and Oceanic Physics +1602.01261 Cryptography and Security +1602.01263 +1602.01264 Logic +1602.01267 Strongly Correlated Electrons +1602.01268 Fluid Dynamics +1602.01269 Statistics Theory +1602.01270 Probability +1602.01271 Economics +1602.01272 K-Theory and Homology +1602.01274 Algebraic Topology +1602.01275 Analysis of PDEs +1602.01278 Numerical Analysis +1602.01279 Analysis of PDEs +1602.01282 Probability +1602.01285 Materials Science +1602.01289 +1602.01290 Spectral Theory +1602.01291 +1602.01293 Probability +1602.01295 Data Structures and Algorithms +1602.01297 Number Theory +1602.01299 Number Theory +1602.01300 Metric Geometry +1602.01302 History and Overview +1602.01303 Number Theory +1602.01306 Combinatorics +1602.01309 Probability +1602.01311 Other Condensed Matter +1602.01312 Computational Physics +1602.01315 Solar and Stellar Astrophysics +1602.01321 Neural and Evolutionary Computing +1602.01323 Learning +1602.01325 Probability +1602.01328 Probability +1602.01329 Hardware Architecture +1602.01335 Numerical Analysis +1602.01337 Combinatorics +1602.01342 Data Structures and Algorithms +1602.01343 Commutative Algebra +1602.01347 Other Statistics +1602.01348 Hardware Architecture +1602.01352 Discrete Mathematics +1602.01354 Superconductivity +1602.01357 Analysis of PDEs +1602.01358 Systems and Control +1602.01359 Theory +1602.01362 Mesoscale and Nanoscale Physics +1602.01364 Superconductivity +1602.01369 Strongly Correlated Electrons +1602.01374 Lattice +1602.01376 Numerical Analysis +1602.01378 Commutative Algebra +1602.01379 Optimization and Control +1602.01382 Theory +1602.01384 Classical Analysis and ODEs +1602.01385 Computational Complexity +1602.01388 Physics and Society +1602.01389 Cosmology and Nongalactic Astrophysics +1602.01394 +1602.01395 Geophysics +1602.01401 History and Overview +1602.01404 +1602.01408 Functional Analysis +1602.01411 Geometric Topology +1602.01415 Algebraic Geometry +1602.01416 Information Theory +1602.01419 Materials Science +1602.01428 Computation and Language +1602.01429 Differential Geometry +1602.01432 Representation Theory +1602.01436 Other Quantitative Biology +1602.01439 +1602.01440 Representation Theory +1602.01443 Databases +1602.01444 Complex Variables +1602.01450 General Physics +1602.01451 Representation Theory +1602.01452 Classical Analysis and ODEs +1602.01454 Group Theory +math-ph/0401029 +math/0310400 Operator Algebras +0704.2146 Combinatorics +0812.4044 Learning +0902.1823 Optimization and Control +0902.4881 Optimization and Control +1012.3121 Algebraic Geometry +1101.4601 Algebraic Geometry +1106.2361 Algebraic Topology +1108.4853 Symbolic Computation +1110.5164 Analysis of PDEs +1201.3198 Symbolic Computation +1203.6294 Algebraic Geometry +1206.1564 Symplectic Geometry +1206.3742 Algebraic Geometry +1206.5209 Optimization and Control +1209.4199 Optimization and Control +1210.1728 Analysis of PDEs +1210.2868 Algebraic Geometry +1210.3765 Optimization and Control +1301.2750 Networking and Internet Architecture +1301.3117 Theory +1302.3806 Quantum Gases +1302.3986 Strongly Correlated Electrons +1304.6889 Symbolic Computation +1304.7622 Optimization and Control +1306.0041 Functional Analysis +1306.3555 Algebraic Geometry +1307.3482 Rings and Algebras +1307.3484 Rings and Algebras +1307.4059 Algebraic Geometry +1311.0088 Commutative Algebra +1311.2003 Information Theory +1312.0422 Algebraic Geometry +1401.3916 +1401.5927 Functional Analysis +1402.0772 Combinatorics +1402.2102 Logic in Computer Science +1402.4651 Algebraic Geometry +1402.7266 Algebraic Geometry +1403.4002 Mesoscale and Nanoscale Physics +1404.0344 Probability +1404.0732 Probability +1405.1581 Phenomenology +1405.6209 +1405.6278 Combinatorics +1405.7253 Logic in Computer Science +1406.2663 Theory +1406.5149 +1406.6584 Probability +1407.0525 Functional Analysis +1407.0785 Number Theory +1407.2341 Complex Variables +1407.5874 Dynamical Systems +1408.1423 Probability +1408.6094 Earth and Planetary Astrophysics +1408.6518 Phenomenology +1409.1085 Group Theory +1409.3585 +1409.7527 Dynamical Systems +1409.8565 Methodology +1410.1041 +1410.1540 Theory +1410.2392 Methodology +1410.4819 Combinatorics +1410.5284 Optimization and Control +1410.5526 Quantum Gases +1411.4119 Strongly Correlated Electrons +1411.5308 Representation Theory +1412.3281 Probability +1412.7179 Other Condensed Matter +1412.7471 +1412.7787 Analysis of PDEs +1412.7906 Number Theory +1501.01344 Number Theory +1501.01819 Discrete Mathematics +1501.02443 +1501.03643 Information Theory +1501.04601 +1501.04641 Analysis of PDEs +1501.05067 Superconductivity +1501.07337 Combinatorics +1502.01697 Theory +1502.01710 Learning +1502.03252 Risk Management +1502.04431 Probability +1502.05697 Materials Science +1502.06436 Logic +1502.06996 +1502.07470 Logic +1502.07544 Superconductivity +1503.00462 Rings and Algebras +1503.00895 Numerical Analysis +1503.02889 +1503.07369 +1504.01696 Representation Theory +1504.02641 Optics +1504.03781 Probability +1504.04358 Probability +1504.04477 Analysis of PDEs +1504.04814 Statistics Theory +1504.05655 Social and Information Networks +1504.06075 Systems and Control +1504.07819 Probability +1504.08203 +1505.00950 Multiagent Systems +1505.01383 Theory +1505.02054 Information Theory +1505.03436 +1505.04702 Phenomenology +1505.05097 Rings and Algebras +1505.05909 Strongly Correlated Electrons +1505.06675 +1505.07785 Phenomenology +1506.01512 Classical Analysis and ODEs +1506.05095 Probability +1506.05366 +1506.05828 Adaptation and Self-Organizing Systems +1506.06749 +1506.07691 Functional Analysis +1506.08651 +1506.08928 Learning +1506.09080 Phenomenology +1507.00048 Functional Analysis +1507.00415 Materials Science +1507.00688 Algebraic Geometry +1507.01413 Geometric Topology +1507.03046 Discrete Mathematics +1507.03618 Phenomenology +1507.04724 Geometric Topology +1507.05114 Metric Geometry +1507.05640 Phenomenology +1507.05730 Analysis of PDEs +1507.05873 Soft Condensed Matter +1507.06030 Operator Algebras +1507.07212 Optimization and Control +1507.07243 Cosmology and Nongalactic Astrophysics +1507.07589 Differential Geometry +1507.07893 Optimization and Control +1507.08079 Dynamical Systems +1507.08310 +1507.08483 Algebraic Topology +1507.08743 Number Theory +1508.01383 Mesoscale and Nanoscale Physics +1508.02188 Theory +1508.02256 +1508.02280 Geometric Topology +1508.02452 Optimization and Control +1508.03079 Strongly Correlated Electrons +1508.03747 Applications +1508.04865 Group Theory +1508.06931 Superconductivity +1508.07509 Applications +1508.07541 Probability +1509.00828 Quantum Gases +1509.01626 Learning +1509.02125 Differential Geometry +1509.03313 Strongly Correlated Electrons +1509.04882 Spectral Theory +1509.06023 Metric Geometry +1509.06628 Experiment +1509.07210 +1509.08702 Instrumentation and Detectors +1509.09040 Operator Algebras +1509.09269 Analysis of PDEs +1510.00495 Dynamical Systems +1510.01998 +1510.02215 Social and Information Networks +1510.02236 Probability +1510.02538 Information Theory +1510.03046 +1510.04158 Optimization and Control +1510.04168 Mesoscale and Nanoscale Physics +1510.04507 +1510.05309 Rings and Algebras +1510.05538 Other Condensed Matter +1510.06338 +1510.06427 +1510.06615 +1510.07949 Discrete Mathematics +1510.08035 Mesoscale and Nanoscale Physics +1510.08094 Numerical Analysis +1510.08135 Algebraic Topology +1510.08262 Mesoscale and Nanoscale Physics +1510.09029 Analysis of PDEs +1511.00060 Computation and Language +1511.00494 Phenomenology +1511.02273 Information Theory +1511.02678 Rings and Algebras +1511.02973 Optics +1511.03728 Phenomenology +1511.04667 Quantum Gases +1511.04891 Computer Vision and Pattern Recognition +1511.05181 Chemical Physics +1511.05839 Solar and Stellar Astrophysics +1511.05960 Computer Vision and Pattern Recognition +1511.06257 Functional Analysis +1511.07231 Differential Geometry +1511.07372 Materials Science +1511.07508 Algebraic Geometry +1511.07688 Phenomenology +1511.09279 +1512.00094 High Energy Astrophysical Phenomena +1512.00103 Computation and Language +1512.01259 Category Theory +1512.02219 Astrophysics of Galaxies +1512.02472 Phenomenology +1512.02862 Theory +1512.03227 +1512.04266 Adaptation and Self-Organizing Systems +1512.05066 General Finance +1512.05520 Phenomenology +1512.05726 Computation and Language +1512.05795 Materials Science +1512.05830 Computer Vision and Pattern Recognition +1512.06007 Phenomenology +1512.07365 Superconductivity +1512.07679 Artificial Intelligence +1512.08547 +1512.09136 Phenomenology +1512.09155 Plasma Physics +1601.00110 Cosmology and Nongalactic Astrophysics +1601.01354 Phenomenology +1601.01880 +1601.02471 Materials Science +1601.02707 Operator Algebras +1601.03166 Analysis of PDEs +1601.04068 Theory +1601.04345 Earth and Planetary Astrophysics +1601.06351 Numerical Analysis +1601.06382 Optimization and Control +1601.06831 +1601.07266 +1602.00166 Combinatorics +1602.00875 Information Theory +1602.00877 Information Theory +1602.01145 Chemical Physics +1602.01736 High Energy Astrophysical Phenomena +1602.02347 Representation Theory +1602.03630 Mesoscale and Nanoscale Physics +1602.03781 Cosmology and Nongalactic Astrophysics +1602.03852 Materials Science +1602.04285 Statistical Mechanics +1602.04441 Theory +1602.04478 Distributed, Parallel, and Cluster Computing +1602.04701 Digital Libraries +1602.04705 Algebraic Geometry +1602.05053 Algebraic Geometry +1602.05185 General Physics +1602.05714 Physics Education +1602.05793 Probability +1602.05817 Theory +1602.06020 Plasma Physics +1602.06165 Physics Education +1602.06214 Materials Science +1602.06358 Solar and Stellar Astrophysics +1602.06690 Information Theory +1602.07947 Materials Science +1602.08427 Geometric Topology +1602.08449 Representation Theory +1603.00391 Learning +1603.00742 Representation Theory +1603.01042 Solar and Stellar Astrophysics +1603.01083 Plasma Physics +1603.01135 Algebraic Geometry +1603.01825 Theory +1603.01962 Strongly Correlated Electrons +1603.02601 Statistical Mechanics +1603.03031 Neurons and Cognition +1603.03144 Computation and Language +1603.03691 Group Theory +1603.03757 +1603.03951 Strongly Correlated Electrons +1603.04396 Mesoscale and Nanoscale Physics +1603.04501 Materials Science +1603.05151 Algebraic Geometry +1603.05157 Computation and Language +1603.06201 Computer Vision and Pattern Recognition +1603.06313 Information Theory +1603.06364 Spectral Theory +1603.06463 Computer Vision and Pattern Recognition +1603.06882 Materials Science +1603.07487 Number Theory +1603.07766 Multiagent Systems +1603.07823 Computer Vision and Pattern Recognition +1603.08167 Representation Theory +1603.08235 Optimization and Control +1603.08515 Logic +1603.08522 Astrophysics of Galaxies +1603.08986 Analysis of PDEs +1603.09186 Chaotic Dynamics +1603.09190 Algebraic Geometry +1603.09204 Statistical Mechanics +1603.09422 Robotics +1603.09437 Symplectic Geometry +1603.09451 Soft Condensed Matter +1603.09465 Artificial Intelligence +1603.09588 Probability +1604.00040 Functional Analysis +1604.00043 Phenomenology +1604.00103 Cryptography and Security +1604.00366 Combinatorics +1604.00389 Networking and Internet Architecture +1604.00391 Optimization and Control +1604.00392 Phenomenology +1604.00400 Computation and Language +1604.00404 Dynamical Systems +1604.00405 +1604.00407 Strongly Correlated Electrons +1604.00411 Classical Analysis and ODEs +1604.00415 Analysis of PDEs +1604.00416 Spectral Theory +1604.00417 Human-Computer Interaction +1604.00421 Numerical Analysis +1604.00423 Algebraic Geometry +1604.00427 Computer Vision and Pattern Recognition +1604.00429 Representation Theory +1604.00432 Functional Analysis +1604.00433 Computer Vision and Pattern Recognition +1604.00434 Information Theory +1604.00436 Algebraic Geometry +1604.00441 Geophysics +1604.00442 Superconductivity +1604.00445 Number Theory +1604.00446 Data Structures and Algorithms +1604.00447 Methodology +1604.00449 Computer Vision and Pattern Recognition +1604.00456 Metric Geometry +1604.00459 Systems and Control +1604.00460 Optimization and Control +1604.00461 Computation and Language +1604.00462 Neural and Evolutionary Computing +1604.00467 Physics and Society +1604.00468 +1604.00470 Computer Vision and Pattern Recognition +1604.00473 Metric Geometry +1604.00478 Distributed, Parallel, and Cluster Computing +1604.00480 Classical Analysis and ODEs +1604.00487 Populations and Evolution +1604.00488 Theory +1604.00490 Complex Variables +1604.00491 Physics and Society +1604.00493 Multimedia +1604.00494 Computer Vision and Pattern Recognition +1604.00497 Chemical Physics +1604.00498 Robotics +1604.00499 +1604.00502 Computation and Language +1604.00503 Computation and Language +1604.00504 Statistical Mechanics +1604.00505 Pattern Formation and Solitons +1604.00507 Populations and Evolution +1604.00508 Physics Education +1604.00511 Chemical Physics +1604.00512 Algebraic Geometry +1604.00513 Optimization and Control +1604.00514 Differential Geometry +1604.00516 Commutative Algebra +1604.00517 Number Theory +1604.00518 Earth and Planetary Astrophysics +1604.00519 General Mathematics +1604.00520 Analysis of PDEs +1604.00525 Mathematical Finance +1604.00526 Optimization and Control +1604.00527 Optimization and Control +1604.00528 Differential Geometry +1604.00533 Computer Vision and Pattern Recognition +1604.00535 Solar and Stellar Astrophysics +1604.00536 Logic in Computer Science +1604.00542 Differential Geometry +1604.00543 Optimization and Control +1604.00546 Computer Vision and Pattern Recognition +1604.00548 Optimization and Control +1604.00549 Instrumentation and Detectors +1604.00550 Combinatorics +1604.00551 Analysis of PDEs +1604.00552 Neural and Evolutionary Computing +1604.00553 Instrumentation and Methods for Astrophysics +1604.00554 Distributed, Parallel, and Cluster Computing +1604.00556 Systems and Control +1604.00557 Networking and Internet Architecture +1604.00558 Neural and Evolutionary Computing +1604.00560 Physics and Society +1604.00561 Statistics Theory +1604.00563 Solar and Stellar Astrophysics +1604.00564 Information Theory +1604.00565 Information Theory +1604.00566 +1604.00568 +1604.00569 +1604.00570 Methodology +1604.00572 Applications +1604.00573 Group Theory +1604.00575 Cryptography and Security +1604.00576 Information Theory +1604.00577 Commutative Algebra +1604.00578 Representation Theory +1604.00579 Materials Science +1604.00580 Metric Geometry +1604.00581 +1604.00582 Information Theory +1604.00584 Geometric Topology +1604.00585 Optics +1604.00586 Materials Science +1604.00588 Information Theory +1604.00594 Computational Engineering, Finance, and Science +1604.00598 Soft Condensed Matter +1604.00600 Computer Vision and Pattern Recognition +1604.00602 Systems and Control +1604.00606 Computer Vision and Pattern Recognition +1604.00607 Information Theory +1604.00609 Group Theory +1604.00612 Combinatorics +1604.00614 Mesoscale and Nanoscale Physics +1604.00617 Numerical Analysis +1604.00618 Functional Analysis +1604.00622 Number Theory +1604.00625 Atmospheric and Oceanic Physics +1604.00626 Materials Science +1604.00630 Differential Geometry +1604.00632 +1604.00633 Analysis of PDEs +1604.00634 Systems and Control +1604.00636 Networking and Internet Architecture +1604.00637 Phenomenology +1604.00640 Robotics +1604.00641 Distributed, Parallel, and Cluster Computing +1604.00647 Machine Learning +1604.00653 Learning +1604.00654 Commutative Algebra +1604.00656 Commutative Algebra +1604.00661 Combinatorics +1604.00662 Materials Science +1604.00663 Combinatorics +1604.00664 Computers and Society +1604.00666 Cryptography and Security +1604.00668 Statistical Mechanics +1604.00672 General Physics +1604.00676 Computer Vision and Pattern Recognition +1604.00677 Materials Science +1604.00678 General Physics +1604.00680 Superconductivity +1604.00682 Materials Science +1604.00684 Complex Variables +1604.00685 Statistics Theory +1604.00686 Algebraic Geometry +1604.00688 Probability +1604.00691 Optimization and Control +1604.00692 Disordered Systems and Neural Networks +1604.00693 Artificial Intelligence +1604.00695 Methodology +1604.00696 Social and Information Networks +1604.00699 Functional Analysis +1604.00700 Information Theory +1604.00704 Dynamical Systems +1604.00706 Computer Science and Game Theory +1604.00708 Data Structures and Algorithms +1604.00709 Superconductivity +1604.00710 Computer Science and Game Theory +1604.00711 Differential Geometry +1604.00712 Representation Theory +1604.00713 Operator Algebras +1604.00714 Classical Analysis and ODEs +1604.00718 Mesoscale and Nanoscale Physics +1604.00730 Computer Vision and Pattern Recognition +1604.00731 Computational Physics +1604.00734 Computation and Language +1604.00740 Discrete Mathematics +1604.00741 Information Theory +1604.00742 Information Theory +1604.00743 +1604.00745 Algebraic Geometry +1604.00746 Algebraic Geometry +1604.00750 Geometric Topology +1604.00752 Algebraic Geometry +1604.00753 Classical Analysis and ODEs +1604.00759 +1604.00760 +1604.00764 Computers and Society +1604.00766 Number Theory +1604.00772 Learning +1604.00773 Differential Geometry +1604.00774 Analysis of PDEs +1604.00776 Quantum Gases +1604.00779 Probability +1604.00783 Learning +1604.00784 Analysis of PDEs +1604.00786 Information Theory +1604.00787 Information Theory +1604.00794 Distributed, Parallel, and Cluster Computing +1604.00795 Commutative Algebra +1604.00796 Solar and Stellar Astrophysics +1604.00797 Representation Theory +1604.00799 Artificial Intelligence +1604.00800 Solar and Stellar Astrophysics +1604.00801 Analysis of PDEs +1604.00803 Combinatorics +1604.00808 Analysis of PDEs +1604.00811 Number Theory +1604.00814 Strongly Correlated Electrons +1604.00815 Atomic and Molecular Clusters +1604.00818 Other Computer Science +1604.00819 Strongly Correlated Electrons +1604.00820 +1604.00823 Applications +1604.00824 Materials Science +1604.00825 Computer Vision and Pattern Recognition +1604.00827 Instrumentation and Detectors +1604.00828 Molecular Networks +1604.00829 +1604.00830 Software Engineering +1604.00832 Populations and Evolution +1604.00835 Differential Geometry +1604.00836 Geometric Topology +1604.00837 Social and Information Networks +1604.00840 Fluid Dynamics +1604.00842 Combinatorics +1604.00845 Data Structures and Algorithms +1604.00846 +1604.00847 Theory +1604.00848 Metric Geometry +1604.00851 Operator Algebras +1604.00852 +1604.00856 Rings and Algebras +1604.00862 Materials Science +1604.00863 Optimization and Control +1604.00864 Probability +1604.00866 Algebraic Geometry +1604.00869 Artificial Intelligence +1604.00870 Data Structures and Algorithms +1604.00875 Information Theory +1604.00878 Earth and Planetary Astrophysics +1604.00879 Logic +1604.00880 Category Theory +1604.00881 Numerical Analysis +1604.00884 Solar and Stellar Astrophysics +1604.00889 Computational Physics +1604.00890 Combinatorics +1604.00895 Computer Vision and Pattern Recognition +1604.00900 Superconductivity +1604.00902 General Mathematics +1604.00904 Theory +1604.00906 Computer Vision and Pattern Recognition +1604.00908 Probability +1604.00911 Materials Science +1604.00912 Methodology +1604.00919 Neurons and Cognition +1604.00920 Number Theory +1604.00921 Computers and Society +1604.00922 Data Structures and Algorithms +1604.00923 Learning +1604.00924 Algebraic Geometry +1604.00926 Information Theory +1604.00929 Numerical Analysis +1604.00930 Optimization and Control +1604.00934 Combinatorics +1604.00935 Instrumentation and Detectors +1604.00936 Logic in Computer Science +1604.00938 Computation and Language +1604.00941 Number Theory +1604.00942 Information Retrieval +1604.00944 Analysis of PDEs +1604.00946 High Energy Astrophysical Phenomena +1604.00949 Biological Physics +1604.00952 Systems and Control +1604.00954 Methodology +1604.00962 Combinatorics +1604.00963 Physics and Society +1604.00966 Astrophysics of Galaxies +1604.00967 Databases +1604.00969 Algebraic Topology +1604.00972 Materials Science +1604.00975 Systems and Control +1604.00976 Physics and Society +1604.00979 Atomic Physics +1604.00980 Cryptography and Security +1604.00985 Differential Geometry +1604.00987 +1604.00989 Computer Vision and Pattern Recognition +1604.00990 Robotics +1604.00991 +1604.00992 Astrophysics of Galaxies +1604.00993 Classical Analysis and ODEs +1604.00994 Adaptation and Self-Organizing Systems +1604.00995 Analysis of PDEs +1604.00996 Functional Analysis +1604.01000 Popular Physics +1604.01001 +1604.01004 Data Analysis, Statistics and Probability +1604.01007 Number Theory +1604.01009 Mesoscale and Nanoscale Physics +quant-ph/0007050 +0707.2110 Number Theory +0708.2199 Number Theory +0709.1215 +0804.0738 Complex Variables +0902.4637 Algebraic Geometry +0908.2140 Number Theory +0910.4695 Number Theory +1004.2267 Algebraic Geometry +1007.1226 Algebraic Geometry +1102.1080 Algebraic Topology +1103.6011 Rings and Algebras +1105.3952 Number Theory +1106.0339 Functional Analysis +1110.0620 Data Structures and Algorithms +1111.1929 Cosmology and Nongalactic Astrophysics +1202.4183 Number Theory +1203.5150 Numerical Analysis +1210.2614 Number Theory +1303.7114 Algebraic Geometry +1307.4281 Rings and Algebras +1311.0698 Mesoscale and Nanoscale Physics +1311.2288 Geometric Topology +1311.4193 Superconductivity +1311.5846 Number Theory +1401.2122 Analysis of PDEs +1401.3140 Medical Physics +1401.6856 Medical Physics +1401.7629 +1402.1071 +1402.6224 Group Theory +1403.0301 Probability +1403.3268 Differential Geometry +1404.4991 Spectral Theory +1404.6441 +1405.1413 Quantitative Methods +1405.3989 +1405.7871 Algebraic Geometry +1406.3271 Analysis of PDEs +1407.0950 Data Structures and Algorithms +1408.2598 Solar and Stellar Astrophysics +1409.2765 Differential Geometry +1409.4223 Cosmology and Nongalactic Astrophysics +1410.1641 Differential Geometry +1410.3354 Differential Geometry +1410.5151 Soft Condensed Matter +1411.2200 Algebraic Geometry +1411.4062 Algebraic Geometry +1412.2762 Superconductivity +1412.2917 +1412.4297 Statistical Mechanics +1412.6812 Statistical Mechanics +1501.04201 Numerical Analysis +1501.04379 Phenomenology +1501.06453 Atomic Physics +1501.06503 Analysis of PDEs +1502.00006 Strongly Correlated Electrons +1502.00131 Fluid Dynamics +1502.00459 Complex Variables +1502.03616 Theory +1502.04243 Applications +1502.05959 Number Theory +1503.01626 Materials Science +1503.02206 Probability +1503.03668 Rings and Algebras +1503.06042 Experiment +1503.08787 Optics +1504.01289 Experiment +1504.03293 Computer Vision and Pattern Recognition +1504.03633 Plasma Physics +1504.03859 Quantum Gases +1504.06404 Quantum Gases +1504.08162 Optics +1505.01139 Distributed, Parallel, and Cluster Computing +1505.02084 Optics +1505.04138 Optics +1505.04883 Methodology +1505.06953 Logic in Computer Science +1505.07001 Functional Analysis +1506.02172 Commutative Algebra +1506.03441 +1506.03652 Instrumentation and Detectors +1506.06349 Cosmology and Nongalactic Astrophysics +1506.06701 +1506.08536 Machine Learning +1507.02783 +1507.03010 High Energy Astrophysical Phenomena +1507.03393 Dynamical Systems +1507.04080 Algebraic Geometry +1507.04148 +1507.04801 Mesoscale and Nanoscale Physics +1507.05401 Materials Science +1507.06713 Optics +1507.07651 Mesoscale and Nanoscale Physics +1507.08206 Combinatorics +1508.01120 Plasma Physics +1508.01425 Phenomenology +1508.02947 Quantum Gases +1508.03221 Strongly Correlated Electrons +1508.03598 Analysis of PDEs +1508.03900 Superconductivity +1508.04937 Phenomenology +1508.05545 Distributed, Parallel, and Cluster Computing +1508.05864 +1508.06909 Classical Analysis and ODEs +1508.06988 History and Philosophy of Physics +1509.00648 Optics +1509.01145 Differential Geometry +1509.03415 Quantum Algebra +1509.04404 Mesoscale and Nanoscale Physics +1509.05613 Instrumentation and Detectors +1509.05784 Cosmology and Nongalactic Astrophysics +1509.07335 Experiment +1509.07623 Instrumentation and Detectors +1509.08928 General Physics +1510.00331 Robotics +1510.00626 Functional Analysis +1510.00944 Rings and Algebras +1510.01006 Social and Information Networks +1510.01480 +1510.01795 +1510.02184 Information Theory +1510.03360 Earth and Planetary Astrophysics +1510.03710 Computation and Language +1510.03827 Statistics Theory +1510.04275 Strongly Correlated Electrons +1510.05506 Optics +1510.08538 Strongly Correlated Electrons +1510.08555 Cryptography and Security +1511.00898 Data Structures and Algorithms +1511.01415 +1511.01890 +1511.01956 Populations and Evolution +1511.05012 Information Theory +1511.06381 Learning +1511.07828 Spectral Theory +1511.08269 Plasma Physics +1511.08421 Materials Science +1511.08693 Instrumentation and Detectors +1512.03130 Number Theory +1512.03463 Functional Analysis +1512.04009 +1512.04818 Combinatorics +1512.05646 Strongly Correlated Electrons +1512.05717 Rings and Algebras +1512.05908 Combinatorics +1512.07389 +1512.08886 Analysis of PDEs +1601.00324 Soft Condensed Matter +1601.00679 Economics +1601.01522 Materials Science +1601.01668 +1601.01679 Group Theory +1601.01715 Rings and Algebras +1601.02240 Cell Behavior +1601.02340 Strongly Correlated Electrons +1601.02585 Physics and Society +1601.02809 Experiment +1601.02827 Instrumentation and Methods for Astrophysics +1601.03124 Learning +1601.03254 Dynamical Systems +1601.03390 Networking and Internet Architecture +1601.03410 Methodology +1601.03416 Soft Condensed Matter +1601.03418 Analysis of PDEs +1601.03419 Other Quantitative Biology +1601.03423 Operator Algebras +1601.03424 Rings and Algebras +1601.03425 Functional Analysis +1601.03428 Data Structures and Algorithms +1601.03429 Mesoscale and Nanoscale Physics +1601.03430 Geometric Topology +1601.03431 Mesoscale and Nanoscale Physics +1601.03432 Numerical Analysis +1601.03434 Combinatorics +1601.03436 Rings and Algebras +1601.03437 Differential Geometry +1601.03438 Rings and Algebras +1601.03439 Information Theory +1601.03444 Rings and Algebras +1601.03452 Materials Science +1601.03454 Superconductivity +1601.03457 Theory +1601.03458 Data Structures and Algorithms +1601.03459 Instrumentation and Methods for Astrophysics +1601.03460 Materials Science +1601.03461 Networking and Internet Architecture +1601.03462 Solar and Stellar Astrophysics +1601.03464 Probability +1601.03465 Combinatorics +1601.03467 Classical Analysis and ODEs +1601.03468 Information Theory +1601.03470 Symplectic Geometry +1601.03471 Combinatorics +1601.03473 Classical Analysis and ODEs +1601.03474 Applications +1601.03475 Operator Algebras +1601.03477 Logic +1601.03478 Learning +1601.03481 Neural and Evolutionary Computing +1601.03482 Logic +1601.03483 Learning +1601.03486 Superconductivity +1601.03494 Algebraic Topology +1601.03497 Analysis of PDEs +1601.03500 Materials Science +1601.03501 Methodology +1601.03503 Combinatorics +1601.03504 Fluid Dynamics +1601.03509 Differential Geometry +1601.03511 Combinatorics +1601.03514 General Topology +1601.03515 General Topology +1601.03517 Methodology +1601.03518 General Topology +1601.03519 Applications +1601.03522 Commutative Algebra +1601.03525 Number Theory +1601.03528 Software Engineering +1601.03531 Computer Vision and Pattern Recognition +1601.03533 Cryptography and Security +1601.03539 Combinatorics +1601.03543 Combinatorics +1601.03545 Classical Physics +1601.03546 Operator Algebras +1601.03550 Optimization and Control +1601.03557 Atomic Physics +1601.03562 Mathematical Finance +1601.03563 Phenomenology +1601.03564 Mesoscale and Nanoscale Physics +1601.03565 Fluid Dynamics +1601.03568 Materials Science +1601.03572 Number Theory +1601.03573 Atomic Physics +1601.03574 Probability +1601.03577 Analysis of PDEs +1601.03578 Algebraic Geometry +1601.03582 +1601.03587 Chaotic Dynamics +1601.03588 Mesoscale and Nanoscale Physics +1601.03589 Geometric Topology +1601.03590 Mesoscale and Nanoscale Physics +1601.03592 Chaotic Dynamics +1601.03594 Probability +1601.03595 Category Theory +1601.03596 Logic +1601.03602 Instrumentation and Detectors +1601.03603 Discrete Mathematics +1601.03607 Algebraic Geometry +1601.03611 Representation Theory +1601.03612 Instrumentation and Detectors +1601.03614 Statistics Theory +1601.03615 Numerical Analysis +1601.03618 Dynamical Systems +1601.03619 Computational Complexity +1601.03620 Metric Geometry +1601.03626 Biological Physics +1601.03627 Materials Science +1601.03628 Combinatorics +1601.03630 Probability +1601.03633 Other Computer Science +1601.03640 Methodology +1601.03642 Computer Vision and Pattern Recognition +1601.03646 Phenomenology +1601.03648 Robotics +1601.03653 Probability +1601.03657 Phenomenology +1601.03659 Combinatorics +1601.03661 Algebraic Geometry +1601.03665 Number Theory +1601.03669 Number Theory +1601.03674 Analysis of PDEs +1601.03676 Data Structures and Algorithms +1601.03679 Computer Vision and Pattern Recognition +1601.03680 Number Theory +1601.03683 Group Theory +1601.03684 Populations and Evolution +1601.03686 Computational Physics +1601.03689 Information Theory +1601.03691 Probability +1601.03700 Analysis of PDEs +1601.03701 +1601.03704 Methodology +1601.03715 +1601.03716 Complex Variables +1601.03719 Functional Analysis +1601.03720 Probability +1601.03721 Complex Variables +1601.03722 Phenomenology +1601.03723 Differential Geometry +cs/0604029 Information Theory +math/0401008 Number Theory +math/0507274 Algebraic Geometry +math/0601596 Algebraic Geometry +math/0608038 Algebraic Geometry +math/0609657 Number Theory +math/0609658 Number Theory +math/0703756 Complex Variables +1008.2549 Geometric Topology +1009.0793 Operator Algebras +1012.1082 Phenomenology +1103.0465 Dynamical Systems +1106.1761 Statistical Mechanics +1109.4771 Mesoscale and Nanoscale Physics +1112.2721 Group Theory +1201.5313 +1202.2444 Spectral Theory +1203.1206 Dynamical Systems +1203.1209 Dynamical Systems +1203.1407 Phenomenology +1203.1414 Dynamical Systems +1210.3272 Atomic Physics +1210.4033 Differential Geometry +1212.4358 Commutative Algebra +1302.3623 Dynamical Systems +1302.6665 Geometric Topology +1305.0161 +1305.3074 Probability +1306.3887 Strongly Correlated Electrons +1308.2078 +1308.5401 Complex Variables +1309.0880 Algebraic Geometry +1310.0538 Algebraic Geometry +1310.3543 High Energy Astrophysical Phenomena +1311.2159 Algebraic Geometry +1312.0287 Probability +1312.3385 Differential Geometry +1401.1149 Cosmology and Nongalactic Astrophysics +1401.1271 Astrophysics of Galaxies +1402.0319 Optimization and Control +1402.6130 Logic +1403.2406 Spectral Theory +1403.5857 Superconductivity +1404.2349 +1404.3763 Statistics Theory +1404.5914 High Energy Astrophysical Phenomena +1405.1325 High Energy Astrophysical Phenomena +1406.4455 Numerical Analysis +1407.6455 Algebraic Geometry +1408.0227 High Energy Astrophysical Phenomena +1408.5154 Algebraic Geometry +1408.5318 Geometric Topology +1409.3892 Metric Geometry +1409.4598 Atomic Physics +1409.5283 +1409.6195 Functional Analysis +1409.6463 Functional Analysis +1410.2877 Geometric Topology +1410.6375 Robotics +1410.7094 +1412.1573 High Energy Astrophysical Phenomena +1412.3046 Learning +1412.4071 Networking and Internet Architecture +1412.4574 +1412.5136 Statistics Theory +1412.5761 Functional Analysis +1412.7330 Group Theory +1412.8039 Instrumentation and Detectors +1501.00045 Analysis of PDEs +1502.02603 Mesoscale and Nanoscale Physics +1502.03750 Chemical Physics +1502.06593 Discrete Mathematics +1502.07381 Materials Science +1503.01891 Geometric Topology +1503.08003 Optics +1504.00750 Materials Science +1504.01712 Quantum Algebra +1504.01819 Materials Science +1504.05814 Differential Geometry +1504.06858 Metric Geometry +1504.07054 +1505.00715 Theory +1505.01078 Solar and Stellar Astrophysics +1505.03770 +1505.06024 Physics and Society +1505.07417 Experiment +1506.00814 Dynamical Systems +1506.01038 Astrophysics of Galaxies +1506.02099 Optimization and Control +1506.04605 High Energy Astrophysical Phenomena +1506.05110 Phenomenology +1506.05848 Complex Variables +1506.08191 Probability +1506.08350 Learning +1506.08588 +1507.00918 Probability +1507.00945 Theory +1507.02409 Operator Algebras +1507.03714 +1507.06592 Strongly Correlated Electrons +1507.08458 Probability +1507.08645 Methodology +1508.00608 Molecular Networks +1508.03036 +1508.03135 Optics +1508.04605 Superconductivity +1508.05436 Astrophysics of Galaxies +1508.05980 Functional Analysis +1508.07206 Number Theory +1508.07554 Differential Geometry +1508.07579 Phenomenology +1508.07610 Mesoscale and Nanoscale Physics +1509.00260 Combinatorics +1509.01494 Classical Analysis and ODEs +1509.03537 +1509.04468 Instrumentation and Detectors +1509.04805 Information Theory +1509.05301 Graphics +1509.07844 Experiment +1509.08219 Quantum Gases +1509.09044 Atomic Physics +1510.00092 Algebraic Geometry +1510.02673 +1510.03095 +1510.03892 Cryptography and Security +1510.06240 Phenomenology +1510.06369 Theory +1510.06760 Theory +1510.07756 Differential Geometry +1510.08251 Group Theory +1510.08625 Superconductivity +1510.08629 Superconductivity +1510.08647 Materials Science +1510.08960 +1511.00219 Superconductivity +1511.01093 High Energy Astrophysical Phenomena +1511.03110 Phenomenology +1511.03412 +1511.05028 +1511.05047 +1511.05062 +1511.05536 Astrophysics of Galaxies +1511.05640 Earth and Planetary Astrophysics +1512.00271 Metric Geometry +1512.00534 Mesoscale and Nanoscale Physics +1512.01745 Representation Theory +1512.03340 Fluid Dynamics +1512.04663 Logic +1512.04825 High Energy Astrophysical Phenomena +1512.05468 Solar and Stellar Astrophysics +1512.05972 Materials Science +1512.06674 Phenomenology +1512.06837 Mesoscale and Nanoscale Physics +1512.07434 Group Theory +1512.07460 Mesoscale and Nanoscale Physics +1512.07767 Discrete Mathematics +1512.08179 Probability +1512.08417 Databases +1512.08661 Phenomenology +1512.08824 Logic in Computer Science +1512.08850 Differential Geometry +1512.08888 Materials Science +1601.00335 Computational Complexity +1601.00928 Combinatorics +1601.01232 Graphics +1601.01259 Operator Algebras +1601.01278 Cryptography and Security +1601.01704 Neurons and Cognition +1601.01799 Learning +1601.01892 Machine Learning +1601.02049 Probability +1601.02093 Computer Vision and Pattern Recognition +1601.02287 Lattice +1601.02337 Solar and Stellar Astrophysics +1601.02446 +1601.02710 Materials Science +1601.02727 Combinatorics +1601.02729 Optimization and Control +1601.02758 Algebraic Geometry +1601.02794 +1601.02921 Chaotic Dynamics +1601.02949 Phenomenology +1601.03036 Materials Science +1601.03037 Other Quantitative Biology +1601.03038 Combinatorics +1601.03059 Logic +1601.03062 Optics +1601.03065 Artificial Intelligence +1601.03067 Physics and Society +1601.03068 Astrophysics of Galaxies +1601.03070 Phenomenology +1601.03071 Lattice +1601.03075 Fluid Dynamics +1601.03079 Exactly Solvable and Integrable Systems +1601.03080 Symbolic Computation +1601.03081 Number Theory +1601.03082 Solar and Stellar Astrophysics +1601.03083 Computational Geometry +1601.03085 Mesoscale and Nanoscale Physics +1601.03089 Materials Science +1601.03094 Computer Vision and Pattern Recognition +1601.03096 Analysis of PDEs +1601.03100 Exactly Solvable and Integrable Systems +1601.03101 Optics +1601.03102 Exactly Solvable and Integrable Systems +1601.03105 +1601.03108 Metric Geometry +1601.03115 Distributed, Parallel, and Cluster Computing +1601.03116 Programming Languages +1601.03117 Computer Vision and Pattern Recognition +1601.03119 Chemical Physics +1601.03122 Spectral Theory +1601.03123 Analysis of PDEs +1601.03125 Differential Geometry +1601.03129 Optics +1601.03133 Materials Science +1601.03135 Classical Analysis and ODEs +1601.03136 Differential Geometry +1601.03137 Dynamical Systems +1601.03140 Pattern Formation and Solitons +1601.03142 Functional Analysis +1601.03144 Distributed, Parallel, and Cluster Computing +1601.03146 Plasma Physics +1601.03150 Strongly Correlated Electrons +1601.03151 Fluid Dynamics +1601.03153 Phenomenology +1601.03154 Mesoscale and Nanoscale Physics +1601.03155 Instrumentation and Methods for Astrophysics +1601.03157 Rings and Algebras +1601.03162 Computer Science and Game Theory +1601.03163 General Topology +1601.03167 Classical Analysis and ODEs +1601.03171 Risk Management +1601.03172 Analysis of PDEs +1601.03173 Classical Analysis and ODEs +1601.03174 Data Structures and Algorithms +1601.03175 Functional Analysis +1601.03176 Optics +1601.03177 Medical Physics +1601.03179 Probability +1601.03180 Classical Analysis and ODEs +1601.03184 Lattice +1601.03185 Materials Science +1601.03190 Differential Geometry +1601.03192 Human-Computer Interaction +1601.03195 Logic in Computer Science +1601.03196 Differential Geometry +1601.03199 Classical Analysis and ODEs +1601.03200 Dynamical Systems +1601.03201 Networking and Internet Architecture +1601.03204 Information Theory +1601.03206 Logic in Computer Science +1601.03207 Combinatorics +1601.03210 Computation and Language +1601.03211 Mesoscale and Nanoscale Physics +1601.03224 Graphics +1601.03225 Distributed, Parallel, and Cluster Computing +1601.03227 Number Theory +1601.03230 Numerical Analysis +1601.03235 Molecular Networks +1601.03236 Neurons and Cognition +1601.03237 Statistical Mechanics +1601.03239 Computer Vision and Pattern Recognition +1601.03241 Combinatorics +1601.03242 Probability +1601.03245 General Mathematics +1601.03246 High Energy Astrophysical Phenomena +1601.03250 +1601.03252 Other Condensed Matter +1601.03253 Analysis of PDEs +1601.03255 Quantitative Methods +1601.03257 Instrumentation and Detectors +1601.03258 General Mathematics +1601.03260 High Energy Astrophysical Phenomena +1601.03263 +1601.03264 Representation Theory +1601.03265 Optics +1601.03272 Analysis of PDEs +1601.03278 Computers and Society +1601.03281 Methodology +1601.03286 Group Theory +1601.03288 Computation and Language +1601.03290 Optimization and Control +1601.03291 Group Theory +1601.03293 Instrumentation and Detectors +1601.03294 Dynamical Systems +1601.03295 Computer Vision and Pattern Recognition +1601.03301 Probability +1601.03306 Phenomenology +1601.03309 Number Theory +1601.03312 Soft Condensed Matter +1601.03314 Algebraic Geometry +1601.03315 Chemical Physics +1601.03316 Social and Information Networks +1601.03321 Probability +1601.03322 Combinatorics +1601.03323 Computer Vision and Pattern Recognition +1601.03324 Mesoscale and Nanoscale Physics +1601.03325 Solar and Stellar Astrophysics +1601.03329 Optimization and Control +1601.03332 Metric Geometry +1601.03333 Computer Vision and Pattern Recognition +1601.03334 Quantitative Methods +1601.03336 Classical Analysis and ODEs +1601.03337 Analysis of PDEs +1601.03339 Earth and Planetary Astrophysics +1601.03341 Distributed, Parallel, and Cluster Computing +1601.03342 Geometric Topology +1601.03345 Logic +1601.03346 Materials Science +1601.03347 Complex Variables +1601.03350 Fluid Dynamics +1601.03351 Rings and Algebras +1601.03353 Functional Analysis +1601.03354 Information Retrieval +1601.03358 Soft Condensed Matter +1601.03366 Phenomenology +1601.03373 Dynamical Systems +1601.03374 Probability +1601.03375 Computer Vision and Pattern Recognition +1601.03379 Statistics Theory +1601.03380 Mathematical Finance +1601.03381 Astrophysics of Galaxies +1601.03388 Mathematical Finance +cond-mat/0402396 Statistical Mechanics +math/0503453 Logic +0911.2296 Representation Theory +1105.3028 Operator Algebras +1106.3175 Differential Geometry +1106.3177 Differential Geometry +1107.5099 Representation Theory +1109.2080 Numerical Analysis +1109.2664 Dynamical Systems +1204.1377 Solar and Stellar Astrophysics +1204.2185 Category Theory +1204.2846 Combinatorics +1204.5916 Instrumentation and Detectors +1206.3707 Symplectic Geometry +1210.0101 Logic +1211.2306 +1211.4100 Logic in Computer Science +1301.5767 +1303.3202 Plasma Physics +1304.6228 Instrumentation and Detectors +1305.0867 Dynamical Systems +1305.3700 Cryptography and Security +1306.3320 Fluid Dynamics +1306.5046 Operator Algebras +1307.5002 Operator Algebras +1309.0994 Differential Geometry +1310.4538 General Finance +1311.3422 Cosmology and Nongalactic Astrophysics +1312.1741 Phenomenology +1401.0035 Number Theory +1401.3518 Applications +1402.2588 Commutative Algebra +1403.3521 Differential Geometry +1403.4400 Differential Geometry +1404.2508 Dynamical Systems +1405.1434 Phenomenology +1405.6565 Dynamical Systems +1406.1028 Populations and Evolution +1406.2185 Data Analysis, Statistics and Probability +1406.4845 Computer Vision and Pattern Recognition +1407.3177 Statistical Mechanics +1407.4336 Phenomenology +1407.5318 +1408.0823 Phenomenology +1408.3928 +1409.2821 Artificial Intelligence +1409.3236 Other Condensed Matter +1409.3271 +1409.3850 Chaotic Dynamics +1410.5840 Complex Variables +1410.5948 Quantum Gases +1410.6103 Superconductivity +1410.7507 +1410.8246 Mesoscale and Nanoscale Physics +1411.1877 Phenomenology +1411.3603 Computational Complexity +1411.7762 Mesoscale and Nanoscale Physics +1412.1660 Cosmology and Nongalactic Astrophysics +1412.2446 Geometric Topology +1501.01085 Populations and Evolution +1501.02459 Statistical Mechanics +1501.02731 Number Theory +1502.00322 +1502.01480 Computational Physics +1502.04979 +1503.01006 Materials Science +1503.01218 Data Structures and Algorithms +1504.05773 Data Structures and Algorithms +1504.05883 Algebraic Geometry +1504.06796 Learning +1504.07467 Algebraic Geometry +1505.00723 Materials Science +1505.01982 +1505.03054 Number Theory +1505.04248 +1505.04746 Databases +1505.05064 Algebraic Geometry +1505.05179 Molecular Networks +1505.07833 Cosmology and Nongalactic Astrophysics +1506.00695 Systems and Control +1506.02640 Computer Vision and Pattern Recognition +1506.07216 Learning +1506.07762 +1507.04168 Group Theory +1507.04895 Plasma Physics +1507.06904 +1507.07084 Theory +1507.07574 Phenomenology +1507.08124 Classical Analysis and ODEs +1508.00038 +1508.01994 Instrumentation and Detectors +1508.02306 +1508.02397 Phenomenology +1508.03305 Physics Education +1508.03879 +1508.04003 Strongly Correlated Electrons +1508.04100 +1508.04444 Phenomenology +1508.05090 +1508.05427 Commutative Algebra +1508.06400 Phenomenology +1508.07887 Materials Science +1508.07927 Solar and Stellar Astrophysics +1508.07982 Distributed, Parallel, and Cluster Computing +1509.02753 Biological Physics +1509.02760 Lattice +1509.03156 Superconductivity +1509.03220 +1509.03659 Theory +1509.05192 Other Computer Science +1509.05222 Mesoscale and Nanoscale Physics +1509.05653 +1509.07013 Mesoscale and Nanoscale Physics +1509.07024 Logic +1510.00360 +1510.01696 +1510.01794 Cosmology and Nongalactic Astrophysics +1510.01827 Chemical Physics +1510.01856 Solar and Stellar Astrophysics +1510.01959 Astrophysics of Galaxies +1510.02736 +1510.03400 Subcellular Processes +1510.04159 Phenomenology +1510.04292 Strongly Correlated Electrons +1510.04758 +1510.05581 High Energy Astrophysical Phenomena +1510.06289 Superconductivity +1510.06914 Strongly Correlated Electrons +1510.08205 +1510.08880 Number Theory +1510.09223 Statistical Mechanics +1511.01433 +1511.02721 Phenomenology +1511.02981 Functional Analysis +1511.04117 Fluid Dynamics +1511.04487 Plasma Physics +1511.04597 Mesoscale and Nanoscale Physics +1511.04680 Cosmology and Nongalactic Astrophysics +1511.04733 Strongly Correlated Electrons +1511.04989 Combinatorics +1511.05540 Rings and Algebras +1511.06137 Dynamical Systems +1511.06555 +1511.07202 +1511.07623 Cosmology and Nongalactic Astrophysics +1511.07687 Dynamical Systems +1511.07690 Theory +1511.08305 Statistical Mechanics +1511.08321 Optics +1511.08663 +1511.08697 +1511.08969 +1512.00074 Materials Science +1512.00297 Data Analysis, Statistics and Probability +1512.00488 Cosmology and Nongalactic Astrophysics +1512.00566 Lattice +1512.01354 Mesoscale and Nanoscale Physics +1512.01709 Phenomenology +1512.01959 Phenomenology +1512.02233 Physics and Society +1512.02509 Mesoscale and Nanoscale Physics +1512.02581 Statistical Mechanics +1512.02910 Networking and Internet Architecture +1512.03480 Astrophysics of Galaxies +1512.03705 Mesoscale and Nanoscale Physics +1512.03807 Theory +1512.04022 Accelerator Physics +1512.04373 +1512.04457 Statistical Mechanics +1512.04673 Theory +1512.04739 Phenomenology +1512.04815 Algebraic Topology +1512.04883 Theory +1512.04944 Solar and Stellar Astrophysics +1512.05335 Probability +1512.05387 Theory +1512.06382 Phenomenology +1512.06681 High Energy Astrophysical Phenomena +1512.06889 Statistical Mechanics +1512.07035 Theory +1512.07183 Mesoscale and Nanoscale Physics +1512.07390 Differential Geometry +1512.07410 Chemical Physics +1512.07471 Mesoscale and Nanoscale Physics +1512.07572 Mesoscale and Nanoscale Physics +1512.07584 Numerical Analysis +1512.07696 Quantum Gases +1512.07727 +1512.08665 Quantum Gases +1512.09131 Lattice +1601.00265 Superconductivity +1601.00652 Phenomenology +1601.00673 Mesoscale and Nanoscale Physics +1601.01584 Mesoscale and Nanoscale Physics +1601.02624 Cosmology and Nongalactic Astrophysics +1601.02671 Fluid Dynamics +1601.03275 +1601.03441 Optics +1601.03456 +1601.03749 Phenomenology +1601.03751 Strongly Correlated Electrons +1601.03775 Data Analysis, Statistics and Probability +1601.05096 Theory +1601.05195 Mesoscale and Nanoscale Physics +1601.05621 Phenomenology +1601.05888 Fluid Dynamics +1601.06453 Information Theory +1601.06490 Chaotic Dynamics +1601.06653 Algebraic Geometry +1601.06861 Functional Analysis +1601.07091 Information Theory +1601.07527 Mesoscale and Nanoscale Physics +1601.07756 Theory +1601.07759 Earth and Planetary Astrophysics +1601.07869 Superconductivity +1601.07875 Theory +1601.08071 High Energy Astrophysical Phenomena +1602.00493 Classical Analysis and ODEs +1602.00519 Astrophysics of Galaxies +1602.00599 +1602.00655 High Energy Astrophysical Phenomena +1602.00813 Superconductivity +1602.00911 Mesoscale and Nanoscale Physics +1602.01037 Atomic Physics +1602.01230 Statistical Mechanics +1602.01747 Strongly Correlated Electrons +1602.03222 Optics +1602.03721 Theory +1602.03810 Phenomenology +1602.03926 Applications +1602.04225 Mesoscale and Nanoscale Physics +1602.04276 Mesoscale and Nanoscale Physics +1602.04714 Phenomenology +1602.04986 Soft Condensed Matter +1602.04991 Optics +1602.05095 Mesoscale and Nanoscale Physics +1602.05468 Optics +1602.05517 Statistical Mechanics +1602.05681 Logic in Computer Science +1602.05724 Statistical Mechanics +1602.05949 +1602.06193 Strongly Correlated Electrons +1602.06233 Theory +1602.06612 Machine Learning +1602.06897 Logic in Computer Science +1602.07626 +1602.07846 Phenomenology +1602.07992 +1602.08069 Strongly Correlated Electrons +1602.08948 Statistical Mechanics +1603.00022 Theory +1603.00147 Rings and Algebras +1603.00323 +1603.01206 Cosmology and Nongalactic Astrophysics +1603.01466 +1603.01471 Phenomenology +1603.02122 Optics +1603.02124 Mesoscale and Nanoscale Physics +1603.02125 Astrophysics of Galaxies +1603.02164 Cosmology and Nongalactic Astrophysics +1603.02571 Chemical Physics +1603.02670 Theory +1603.02935 +1603.03177 Solar and Stellar Astrophysics +1603.03613 +1603.03743 +1603.04220 High Energy Astrophysical Phenomena +1603.04302 Astrophysics of Galaxies +1603.04651 +1603.05293 Populations and Evolution +1603.06373 Medical Physics +1603.06426 High Energy Astrophysical Phenomena +1603.06891 Astrophysics of Galaxies +1603.06920 +1603.06989 High Energy Astrophysical Phenomena +1603.07674 Earth and Planetary Astrophysics +1603.07945 Instrumentation and Methods for Astrophysics +1603.08451 +1603.09120 +1603.09589 Combinatorics +1604.00089 Astrophysics of Galaxies +1604.01002 Soft Condensed Matter +1604.01506 Complex Variables +1604.01778 Earth and Planetary Astrophysics +1604.02550 +1604.03104 Earth and Planetary Astrophysics +1604.03164 Combinatorics +1604.03937 Astrophysics of Galaxies +1604.04232 Strongly Correlated Electrons +1604.05758 Biological Physics +1604.05870 +1604.05930 Analysis of PDEs +1604.06557 Superconductivity +1604.06975 Probability +1604.07016 Discrete Mathematics +1604.07072 Optics +1604.08075 Social and Information Networks +1604.08708 Robotics +1604.08801 Plasma Physics +1605.00134 Instrumentation and Detectors +1605.00240 Combinatorics +1605.00260 Combinatorics +1605.00295 Astrophysics of Galaxies +1605.00546 High Energy Astrophysical Phenomena +1605.00709 Combinatorics +1605.00858 Dynamical Systems +1605.00864 +1605.01103 +1605.01111 Materials Science +1605.01139 Complex Variables +1605.01154 +1605.01196 Classical Analysis and ODEs +1605.01261 Astrophysics of Galaxies +1605.01263 Phenomenology +1605.01466 Astrophysics of Galaxies +1605.01467 Astrophysics of Galaxies +1605.01636 Learning +1605.01860 Algebraic Geometry +1605.02178 Computer Vision and Pattern Recognition +1605.02208 Strongly Correlated Electrons +1605.02304 Computers and Society +1605.02345 +1605.02580 History and Overview +1605.02728 Classical Analysis and ODEs +1605.02730 Complex Variables +1605.02752 Dynamical Systems +1605.02754 Soft Condensed Matter +1605.02757 Mesoscale and Nanoscale Physics +1605.02758 Group Theory +1605.02761 Soft Condensed Matter +1605.02762 Soft Condensed Matter +1605.02763 Soft Condensed Matter +1605.02765 Programming Languages +1605.02768 Astrophysics of Galaxies +1605.02775 Computer Vision and Pattern Recognition +1605.02776 Classical Analysis and ODEs +1605.02777 Classical Analysis and ODEs +1605.02778 Cryptography and Security +1605.02784 Machine Learning +1605.02785 Theory +1605.02787 Number Theory +1605.02788 Analysis of PDEs +1605.02789 Mesoscale and Nanoscale Physics +1605.02792 Differential Geometry +1605.02795 Algebraic Geometry +1605.02796 Cryptography and Security +1605.02801 Optics +1605.02806 Mesoscale and Nanoscale Physics +1605.02809 Populations and Evolution +1605.02810 Solar and Stellar Astrophysics +1605.02813 Systems and Control +1605.02815 Computational Complexity +1605.02816 Optimization and Control +1605.02818 Information Theory +1605.02819 +1605.02826 Probability +1605.02830 Materials Science +1605.02832 Learning +1605.02833 Probability +1605.02839 Number Theory +1605.02840 Numerical Analysis +1605.02841 Number Theory +1605.02843 General Mathematics +1605.02845 Numerical Analysis +1605.02848 Optimization and Control +1605.02849 +1605.02851 Statistical Mechanics +1605.02856 Information Theory +1605.02858 Numerical Analysis +1605.02860 Networking and Internet Architecture +1605.02861 Experiment +1605.02862 Differential Geometry +1605.02863 Numerical Analysis +1605.02865 Phenomenology +1605.02866 Combinatorics +1605.02867 Instrumentation and Detectors +1605.02873 Functional Analysis +1605.02877 Information Theory +1605.02878 Information Theory +1605.02883 Chaotic Dynamics +1605.02884 Instrumentation and Detectors +1605.02885 Information Theory +1605.02886 Networking and Internet Architecture +1605.02887 Machine Learning +1605.02888 +1605.02891 Discrete Mathematics +1605.02892 Computer Vision and Pattern Recognition +1605.02894 Information Theory +1605.02895 Functional Analysis +1605.02896 Instrumentation and Detectors +1605.02898 Representation Theory +1605.02899 Information Theory +1605.02900 Probability +1605.02905 Discrete Mathematics +1605.02906 Instrumentation and Detectors +1605.02916 Computation and Language +1605.02917 Information Retrieval +1605.02920 Number Theory +1605.02926 Analysis of PDEs +1605.02928 Information Theory +1605.02929 Artificial Intelligence +1605.02933 Dynamical Systems +1605.02935 Programming Languages +1605.02940 Number Theory +1605.02941 Programming Languages +1605.02942 Soft Condensed Matter +1605.02949 +1605.02950 Cryptography and Security +1605.02952 Information Theory +1605.02954 Cryptography and Security +1605.02955 +1605.02956 Combinatorics +1605.02960 Physics and Society +1605.02961 Number Theory +1605.02962 Differential Geometry +1605.02963 Cosmology and Nongalactic Astrophysics +1605.02968 Information Theory +1605.02969 Information Theory +1605.02970 Optimization and Control +1605.02974 Optimization and Control +1605.02976 Multimedia +1605.02978 Chaotic Dynamics +1605.02979 General Physics +1605.02980 Information Theory +1605.02981 Probability +1605.02983 General Physics +1605.02989 Machine Learning +1605.02991 Systems and Control +1605.02993 High Energy Astrophysical Phenomena +1605.02995 Combinatorics +1605.02996 Performance +1605.02999 Number Theory +1605.03000 Methodology +1605.03001 Data Structures and Algorithms +1605.03004 Learning +1605.03012 Computer Vision and Pattern Recognition +1605.03015 History and Overview +1605.03016 Optimization and Control +1605.03019 Computational Complexity +1605.03021 Mesoscale and Nanoscale Physics +1605.03022 Earth and Planetary Astrophysics +1605.03027 Machine Learning +1605.03032 Medical Physics +1605.03033 Optics +1605.03036 Robotics +1605.03037 Instrumentation and Methods for Astrophysics +1605.03038 Computers and Society +1605.03039 Robotics +1605.03040 Machine Learning +1605.03045 Logic in Computer Science +1605.03046 Combinatorics +1605.03047 Distributed, Parallel, and Cluster Computing +1605.03052 +1605.03062 Accelerator Physics +1605.03063 Computational Complexity +1605.03066 Numerical Analysis +1605.03068 Performance +1605.03071 Data Structures and Algorithms +1605.03075 Computational Physics +1605.03078 Mesoscale and Nanoscale Physics +1605.03079 Networking and Internet Architecture +1605.03086 Combinatorics +1605.03091 Atomic Physics +1605.03093 Functional Analysis +1605.03094 Mesoscale and Nanoscale Physics +1605.03095 Analysis of PDEs +1605.03096 Information Theory +1605.03097 Analysis of PDEs +1605.03100 Differential Geometry +1605.03101 Mesoscale and Nanoscale Physics +1605.03102 Differential Geometry +1605.03105 Commutative Algebra +1605.03107 Computers and Society +1605.03112 +1605.03116 Cryptography and Security +1605.03118 Mesoscale and Nanoscale Physics +1605.03119 Subcellular Processes +1605.03122 Machine Learning +1605.03123 Mesoscale and Nanoscale Physics +1605.03124 Computer Vision and Pattern Recognition +1605.03125 +1605.03127 Optimization and Control +1605.03129 Strongly Correlated Electrons +1605.03132 Mesoscale and Nanoscale Physics +1605.03133 Economics +1605.03134 Mesoscale and Nanoscale Physics +1605.03135 Optimization and Control +1605.03137 Geometric Topology +1605.03139 Algebraic Geometry +1605.03140 Geometric Topology +1605.03142 Artificial Intelligence +1605.03143 Artificial Intelligence +1605.03144 Optics +1605.03149 Formal Languages and Automata Theory +1605.03150 Computer Vision and Pattern Recognition +1605.03153 Fluid Dynamics +1605.03154 Methodology +1605.03158 Networking and Internet Architecture +1605.03159 Phenomenology +1605.03165 Theory +1605.03167 Classical Analysis and ODEs +1605.03168 Number Theory +1605.03172 Combinatorics +1605.03173 Theory +1605.03175 Software Engineering +0802.2913 +0804.3746 +1105.6219 +1109.5459 +1110.4418 Solar and Stellar Astrophysics +1112.4959 +1202.0537 +1205.5508 Statistics Theory +1207.0295 +1207.3151 Symplectic Geometry +1208.4046 Category Theory +1209.2527 Statistical Mechanics +1209.4563 +1209.5843 Solar and Stellar Astrophysics +1211.6075 Theory +1301.6194 Dynamical Systems +1302.0071 Number Theory +1302.7019 Algebraic Topology +1303.1708 Combinatorics +1303.4778 Learning +1303.5849 High Energy Astrophysical Phenomena +1306.1816 +1307.7836 Symbolic Computation +1308.4324 Dynamical Systems +1308.5742 Solar and Stellar Astrophysics +1309.5811 Plasma Physics +1309.6771 Dynamical Systems +1310.5114 Disordered Systems and Neural Networks +1310.5604 General Mathematics +1312.4788 Phenomenology +1402.3416 Disordered Systems and Neural Networks +1402.5612 Materials Science +1407.7663 Neural and Evolutionary Computing +1407.7685 Exactly Solvable and Integrable Systems +1409.1544 Logic in Computer Science +1410.5376 Algebraic Geometry +1410.5917 Geometric Topology +1410.6623 +1410.7912 Data Structures and Algorithms +1411.2287 Differential Geometry +1411.2370 Social and Information Networks +1411.5555 Computer Vision and Pattern Recognition +1412.7705 Probability +1412.8326 +1501.03750 +1502.00623 +1502.02911 Plasma Physics +1502.06736 Statistical Mechanics +1503.08154 Discrete Mathematics +1503.08169 Distributed, Parallel, and Cluster Computing +1504.03838 Number Theory +1504.05569 Analysis of PDEs +1504.07592 High Energy Astrophysical Phenomena +1505.00468 Computation and Language +1505.00534 Differential Geometry +1505.07125 Phenomenology +1506.01302 Phenomenology +1506.03399 Differential Geometry +1506.04489 Methodology +1506.04843 Computer Vision and Pattern Recognition +1506.07469 Phenomenology +1507.00803 Methodology +1507.01856 Analysis of PDEs +1507.03323 Social and Information Networks +1507.04530 Phenomenology +1508.07069 Disordered Systems and Neural Networks +1509.02041 Analysis of PDEs +1509.04414 Differential Geometry +1509.08104 Materials Science +1510.00559 +1510.00600 Combinatorics +1510.03162 Information Theory +1510.04223 Group Theory +1510.05907 Phenomenology +1510.07558 Statistical Mechanics +1510.07960 Statistical Mechanics +1510.08553 Cosmology and Nongalactic Astrophysics +1510.08885 Algebraic Geometry +1511.02901 Operator Algebras +1511.03847 Fluid Dynamics +1511.07664 Quantum Algebra +1511.09382 Probability +1512.01433 Commutative Algebra +1512.03265 Theory +1512.03998 Numerical Analysis +1512.04572 Soft Condensed Matter +1512.08641 Analysis of PDEs +1512.09327 Learning +1601.01787 Quantum Gases +1601.01961 Materials Science +1601.02838 +1601.04448 Data Structures and Algorithms +1601.06448 Probability +1601.07772 +1602.04588 Algebraic Geometry +1602.05952 +1602.06407 Computational Geometry +1602.08702 Statistical Mechanics +1603.00177 Theory +1603.00864 Theory +1603.00945 Numerical Analysis +1603.03072 Cosmology and Nongalactic Astrophysics +1603.04457 Materials Science +1603.07379 Analysis of PDEs +1604.00809 Phenomenology +1604.02065 High Energy Astrophysical Phenomena +1604.02709 Number Theory +1604.05326 Theory +1604.05857 Algebraic Topology +1604.07101 Learning +1604.07688 Statistical Mechanics +1605.00906 Analysis of PDEs +1605.03248 Theory +1605.03745 Quantitative Methods +1605.03777 +1605.03914 Physics and Society +1605.03982 Cosmology and Nongalactic Astrophysics +1605.06187 Analysis of PDEs +1605.06431 Computer Vision and Pattern Recognition +1605.06481 Analysis of PDEs +1605.07309 Instrumentation and Detectors +1605.07719 Machine Learning +1605.07912 Learning +1605.07966 Algebraic Topology +1605.08003 Optimization and Control +1605.08288 Formal Languages and Automata Theory +1605.08694 +1605.08865 Strongly Correlated Electrons +1605.09155 Theory +1605.09442 Logic in Computer Science +1606.00076 Representation Theory +1606.00119 Learning +1606.01317 Dynamical Systems +1606.01802 Tissues and Organs +1606.02118 Optimization and Control +1606.03514 Quantum Gases +1606.03973 Methodology +1606.06084 +1606.06193 Lattice +1606.06732 Phenomenology +1606.08268 Statistical Mechanics +1606.08690 Number Theory +1606.09249 Strongly Correlated Electrons +1606.09267 Materials Science +1607.01167 Combinatorics +1607.01544 Materials Science +1607.02386 Optics +1607.03809 Number Theory +1607.04214 Probability +1607.04837 Phenomenology +1607.04921 Phenomenology +1607.05599 Phenomenology +1607.05939 Lattice +1607.06657 Learning +1607.07285 Materials Science +1607.08540 +1608.00472 Phenomenology +1608.00479 Materials Science +1608.01666 Probability +1608.03286 Theory +1608.03711 +1608.03918 +1608.05407 Theory +1608.06433 Materials Science +1608.06546 Quantitative Methods +1608.06548 Neurons and Cognition +1608.06758 Statistics Theory +1608.07493 Commutative Algebra +1608.07863 Mathematical Finance +1608.08638 Cosmology and Nongalactic Astrophysics +1608.08895 Optimization and Control +1609.00199 Phenomenology +1609.00733 Solar and Stellar Astrophysics +1609.00811 +1609.00945 Human-Computer Interaction +1609.01581 Materials Science +1609.02420 Geometric Topology +1609.03803 +1609.03914 Dynamical Systems +1609.04276 +1609.05330 Theory +1609.07575 Combinatorics +1609.08033 Differential Geometry +1609.08076 Disordered Systems and Neural Networks +1609.08238 Differential Geometry +1609.08525 Superconductivity +1610.00102 +1610.01374 Computer Vision and Pattern Recognition +1610.01974 +1610.02571 Fluid Dynamics +1610.02870 Theory +1610.03305 Robotics +1610.03315 Phenomenology +1610.03774 Machine Learning +1610.03913 Solar and Stellar Astrophysics +1610.04624 Strongly Correlated Electrons +1610.04673 Computer Vision and Pattern Recognition +1610.05588 Number Theory +1610.06269 Emerging Technologies +1610.06371 Software Engineering +1610.06502 Probability +1610.07509 Geometric Topology +1610.07646 Mesoscale and Nanoscale Physics +1610.07652 Number Theory +1610.07799 High Energy Astrophysical Phenomena +1610.07908 Computational Complexity +1610.07910 Disordered Systems and Neural Networks +1610.08007 Number Theory +1610.08115 Artificial Intelligence +1610.08127 Learning +1610.08138 Classical Analysis and ODEs +1610.08200 Software Engineering +1610.08238 +1610.08239 Learning +1610.08261 Logic +1610.08340 Instrumentation and Methods for Astrophysics +1610.08374 Tissues and Organs +1610.08481 Computer Vision and Pattern Recognition +1610.08498 Chemical Physics +1610.08500 Robotics +1610.08503 Astrophysics of Galaxies +1610.08512 Phenomenology +1610.08514 +1610.08518 Other Condensed Matter +1610.08523 Astrophysics of Galaxies +1610.08524 Solar and Stellar Astrophysics +1610.08526 Theory +1610.08528 Astrophysics of Galaxies +1610.08532 High Energy Astrophysical Phenomena +1610.08533 Probability +1610.08534 Systems and Control +1610.08537 Phenomenology +1610.08538 Space Physics +1610.08544 Soft Condensed Matter +1610.08545 Group Theory +1610.08546 Phenomenology +1610.08548 +1610.08550 Materials Science +1610.08551 Number Theory +1610.08552 Molecular Networks +1610.08556 Soft Condensed Matter +1610.08558 Portfolio Management +1610.08559 Databases +1610.08560 Differential Geometry +1610.08565 Analysis of PDEs +1610.08567 Numerical Analysis +1610.08568 Optimization and Control +1610.08570 Cryptography and Security +1610.08572 Complex Variables +1610.08575 Discrete Mathematics +1610.08576 Chemical Physics +1610.08577 Analysis of PDEs +1610.08579 Dynamical Systems +1610.08583 Instrumentation and Detectors +1610.08587 Lattice +1610.08588 Materials Science +1610.08590 Logic +1610.08591 +1610.08592 +1610.08594 Materials Science +1610.08595 Combinatorics +1610.08597 Social and Information Networks +1610.08599 Operator Algebras +1610.08600 High Energy Astrophysical Phenomena +1610.08602 Artificial Intelligence +1610.08604 +1610.08606 Computer Vision and Pattern Recognition +1610.08607 Software Engineering +1610.08608 Numerical Analysis +1610.08609 Dynamical Systems +1610.08611 Machine Learning +1610.08612 Lattice +1610.08614 Symplectic Geometry +1610.08615 Logic +1610.08616 Computer Vision and Pattern Recognition +1610.08618 Physics and Society +1610.08620 Logic +1610.08623 Machine Learning +1610.08624 Computer Vision and Pattern Recognition +1610.08625 Astrophysics of Galaxies +1610.08627 Computer Vision and Pattern Recognition +1610.08628 Machine Learning +1610.08629 Computers and Society +1610.08630 Mesoscale and Nanoscale Physics +1610.08632 Cosmology and Nongalactic Astrophysics +1610.08633 Strongly Correlated Electrons +1610.08637 Machine Learning +1610.08638 Fluid Dynamics +1610.08639 Accelerator Physics +1610.08640 Artificial Intelligence +1610.08642 Mesoscale and Nanoscale Physics +1610.08643 Optics +1610.08644 Mathematical Finance +1610.08645 Strongly Correlated Electrons +1610.08646 Analysis of PDEs +1610.08647 Numerical Analysis +1610.08648 Optimization and Control +1610.08650 Soft Condensed Matter +1610.08654 Classical Analysis and ODEs +1610.08655 Experiment +1610.08657 Statistical Mechanics +1610.08658 +1610.08659 Materials Science +1610.08660 Instrumentation and Detectors +1610.08662 Probability +1610.08663 Methodology +1610.08664 Quantitative Methods +1610.08665 Applications +1610.08666 Computational Physics +1610.08668 Systems and Control +1610.08669 Mesoscale and Nanoscale Physics +1610.08670 +1610.08671 Rings and Algebras +1610.08673 Numerical Analysis +1610.08674 Solar and Stellar Astrophysics +1610.08675 Algebraic Geometry +1610.08676 General Finance +1610.08677 Probability +1610.08679 Phenomenology +1610.08681 Analysis of PDEs +1610.08685 Distributed, Parallel, and Cluster Computing +1610.08686 Social and Information Networks +1610.08692 History and Philosophy of Physics +1610.08693 Information Theory +1610.08697 Optimization and Control +1610.08699 Geometric Topology +1610.08700 Logic +1610.08701 +1610.08702 Differential Geometry +1610.08706 Differential Geometry +1610.08710 Solar and Stellar Astrophysics +1610.08712 High Energy Astrophysical Phenomena +1610.08716 Data Analysis, Statistics and Probability +1610.08718 Methodology +1610.08719 +1610.08721 +1610.08723 Probability +1610.08725 Cosmology and Nongalactic Astrophysics +1610.08727 Cryptography and Security +1610.08728 Superconductivity +1610.08729 Number Theory +1610.08730 Chemical Physics +1610.08731 Complex Variables +1610.08732 Probability +1610.08733 Machine Learning +1610.08734 Accelerator Physics +1610.08739 Data Structures and Algorithms +1610.08740 Theory +1610.08743 Dynamical Systems +1610.08746 Analysis of PDEs +1610.08747 Complex Variables +1610.08748 Phenomenology +1610.08749 Machine Learning +1610.08750 Analysis of PDEs +1610.08751 +1610.08755 Phenomenology +1610.08756 Mesoscale and Nanoscale Physics +1610.08757 Theory +1610.08759 Group Theory +1610.08762 Cryptography and Security +1610.08763 Computation and Language +1610.08764 Differential Geometry +1610.08765 Other Computer Science +1610.08766 Other Computer Science +1610.08767 Trading and Market Microstructure +1610.08768 Methodology +1610.08769 Probability +1610.08770 High Energy Astrophysical Phenomena +1610.08771 General Physics +1610.08773 Materials Science +1610.08774 Category Theory +1610.08776 Optimization and Control +1610.08777 Optimization and Control +1610.08778 Populations and Evolution +1610.08779 Methodology +1610.08781 Commutative Algebra +1610.08782 Risk Management +1610.08783 Algebraic Geometry +1610.08784 Functional Analysis +1610.08786 Probability +1610.08787 Chemical Physics +1610.08789 +1610.08790 Differential Geometry +1610.08794 Mesoscale and Nanoscale Physics +1610.08796 Instrumentation and Methods for Astrophysics +1610.08797 Lattice +1610.08798 Solar and Stellar Astrophysics +1610.08799 Materials Science +1610.08804 Multiagent Systems +1610.08805 Methodology +1610.08806 Mathematical Finance +1610.08807 Materials Science +1610.08808 Computer Vision and Pattern Recognition +1610.08809 Data Structures and Algorithms +1610.08810 Phenomenology +1610.08813 Machine Learning +1610.08814 +1610.08816 Combinatorics +1610.08818 Portfolio Management +1610.08819 Geometric Topology +1610.08820 Discrete Mathematics +1610.08821 +1610.08822 Complex Variables +1610.08827 Soft Condensed Matter +1610.08828 Solar and Stellar Astrophysics +1610.08832 Cryptography and Security +1610.08833 Distributed, Parallel, and Cluster Computing +1610.08835 Phenomenology +1610.08838 Machine Learning +1610.08840 +1610.08841 +1610.08845 Logic in Computer Science +1610.08847 Plasma Physics +1610.08848 Analysis of PDEs +1610.08850 +1610.08853 Artificial Intelligence +1610.08854 Computer Vision and Pattern Recognition +1610.08855 Combinatorics +1610.08859 Materials Science +1610.08860 Methodology +1610.08861 Machine Learning +1610.08862 Solar and Stellar Astrophysics +1610.08863 Number Theory +1610.08865 Computation +1610.08868 Cosmology and Nongalactic Astrophysics +1610.08871 Computer Vision and Pattern Recognition +1610.08873 Differential Geometry +1610.08876 Statistics Theory +1610.08877 Materials Science +1610.08879 Materials Science +1610.08881 Numerical Analysis +1610.08884 Discrete Mathematics +1610.08885 Systems and Control +1610.08886 +1610.08888 Superconductivity +1610.08892 Analysis of PDEs +1610.08894 High Energy Astrophysical Phenomena +1610.08895 Instrumentation and Methods for Astrophysics +1610.08896 Metric Geometry +1610.08899 Methodology +1610.08902 Theory +1610.08903 Methodology +1610.08904 Computer Vision and Pattern Recognition +1610.08906 Computer Science and Game Theory +1610.08909 Methodology +1610.08910 Logic in Computer Science +1610.08911 Software Engineering +1610.08913 Number Theory +1610.08915 Materials Science +1610.08916 Cosmology and Nongalactic Astrophysics +1610.08920 Probability +1610.08922 Experiment +1610.08923 Combinatorics +1610.08924 Analysis of PDEs +1610.08926 High Energy Astrophysical Phenomena +1610.08927 Machine Learning +1610.08928 Machine Learning +1610.08930 Phenomenology +1610.08936 Learning +1610.08937 Solar and Stellar Astrophysics +1610.08938 Dynamical Systems +1610.08941 Mesoscale and Nanoscale Physics +1610.08943 Analysis of PDEs +1610.08946 Analysis of PDEs +1610.08947 Geometric Topology +1610.08948 Astrophysics of Galaxies +1610.08949 Analysis of PDEs +1610.08950 Optics +1610.08951 Plasma Physics +1610.08954 +1610.08959 Quantum Gases +1610.08962 Computation +1610.08963 Physics and Society +1610.08964 +1610.08967 Classical Physics +1610.08969 Operator Algebras +1610.08971 Astrophysics of Galaxies +cond-mat/9912186 Mesoscale and Nanoscale Physics +hep-ph/0611106 Phenomenology +hep-th/0410196 Theory +math-ph/0405018 +math-ph/0405022 +math-ph/0607029 +math-ph/0702050 +0810.1854 +0907.0955 Number Theory +0907.0972 Number Theory +0908.0670 Number Theory +1006.3339 Number Theory +1011.0323 Number Theory +1011.0561 +1101.1408 Representation Theory +1109.6616 Mesoscale and Nanoscale Physics +1203.2242 Number Theory +1203.2461 Algebraic Topology +1205.0182 Number Theory +1206.1386 Machine Learning +1211.5444 Mesoscale and Nanoscale Physics +1211.6343 Instrumentation and Detectors +1212.4192 Geometric Topology +1302.4285 Number Theory +1306.0429 Superconductivity +1306.4838 Representation Theory +1307.5527 +1308.0877 Combinatorics +1309.0625 +1309.7229 Algebraic Geometry +1312.3421 Geometric Topology +1312.4310 Representation Theory +1401.0327 +1402.2123 Functional Analysis +1403.1731 Functional Analysis +1403.4494 Statistical Mechanics +1404.2330 +1404.7426 Algebraic Geometry +1405.6194 Dynamical Systems +1406.4722 Algebraic Topology +1407.3254 Statistics Theory +1407.3408 Materials Science +1407.3542 Instrumentation and Methods for Astrophysics +1407.6306 Probability +1408.1216 Materials Science +1408.1740 Pattern Formation and Solitons +1408.1801 Number Theory +1408.3249 Number Theory +1408.4634 Spectral Theory +1408.6397 Probability +1409.0198 Number Theory +1409.3713 Combinatorics +1409.4150 Computer Science and Game Theory +1409.4879 Analysis of PDEs +1409.5777 Functional Analysis +1409.8390 Logic +1410.1395 Instrumentation and Detectors +1410.6080 Probability +1410.8257 Probability +1410.8312 Classical Analysis and ODEs +1410.8704 Classical Physics +1411.2962 Algebraic Geometry +1411.7936 +1412.0698 Mesoscale and Nanoscale Physics +1501.02700 Classical Analysis and ODEs +1501.05447 Methodology +1501.06097 Geometric Topology +1501.07138 Geometric Topology +1503.00013 Information Theory +1503.06738 Probability +1503.07788 Algebraic Topology +1503.08952 +1504.01130 Data Structures and Algorithms +1504.03069 Strongly Correlated Electrons +1504.03837 Mesoscale and Nanoscale Physics +1505.00179 Theory +1505.01025 Statistical Mechanics +1505.02678 Combinatorics +1505.06795 Computer Vision and Pattern Recognition +1505.07023 +1506.01144 Computer Vision and Pattern Recognition +1506.01695 Computational Complexity +1506.01745 Strongly Correlated Electrons +1506.04406 Combinatorics +1506.05768 Strongly Correlated Electrons +1506.06028 Cosmology and Nongalactic Astrophysics +1506.07635 Programming Languages +1506.08383 Theory +1506.08904 Disordered Systems and Neural Networks +1506.09039 Machine Learning +1507.01203 +1507.01253 Differential Geometry +1507.02888 Mesoscale and Nanoscale Physics +1507.03070 High Energy Astrophysical Phenomena +1507.05195 Algebraic Geometry +1507.06799 Materials Science +1507.08068 Theory +1508.01077 Optimization and Control +1508.01353 +1508.03085 Mesoscale and Nanoscale Physics +1509.00163 +1509.02946 Theory +1509.03582 Adaptation and Self-Organizing Systems +1509.03750 Experiment +1509.04732 +1509.04843 +1509.06168 Mesoscale and Nanoscale Physics +1509.07331 Phenomenology +1509.08853 Operator Algebras +1509.09244 Chemical Physics +1510.00354 Computational Complexity +1510.00518 +1510.00969 +1510.01261 Systems and Control +1510.03569 Number Theory +1510.04187 Probability +1510.04743 Experiment +1510.05364 Materials Science +1510.06179 +1510.07379 Data Analysis, Statistics and Probability +1510.07640 Strongly Correlated Electrons +1510.07912 Materials Science +1510.08660 Learning +1511.00908 Number Theory +1511.03593 Mesoscale and Nanoscale Physics +1511.05256 Theory +1511.05284 Computer Vision and Pattern Recognition +1511.05983 Cosmology and Nongalactic Astrophysics +1511.06000 Data Structures and Algorithms +1511.06122 +1511.06783 Computer Vision and Pattern Recognition +1511.07031 Information Theory +1511.07764 Computational Physics +1511.08537 Analysis of PDEs +1511.09439 Computer Vision and Pattern Recognition +1512.01237 Theory +1512.01786 Logic +1512.02105 +1512.02576 Phenomenology +1512.03794 Metric Geometry +1512.04160 Combinatorics +1512.04924 Phenomenology +1512.07003 Classical Analysis and ODEs +1512.07946 +1512.09145 Theory +1512.09180 Information Theory +1601.00348 +1601.00602 Phenomenology +1601.02198 Statistical Mechanics +1601.02360 +1601.07211 Analysis of PDEs +1601.07504 Strongly Correlated Electrons +1601.07743 Classical Analysis and ODEs +1601.08207 Dynamical Systems +1602.02096 Strongly Correlated Electrons +1602.02385 +1602.02778 Strongly Correlated Electrons +1602.04777 Combinatorics +1602.05265 Differential Geometry +1602.05320 Materials Science +1602.06632 Computer Vision and Pattern Recognition +1602.06938 High Energy Astrophysical Phenomena +1602.07304 High Energy Astrophysical Phenomena +1602.09088 Computer Science and Game Theory +1602.09129 Strongly Correlated Electrons +1603.00680 +1603.01458 Group Theory +1603.01493 Operator Algebras +1603.02408 Experiment +1603.03608 Computational Engineering, Finance, and Science +1603.03954 Dynamical Systems +1603.04115 +1603.04367 Quantum Algebra +1603.04493 Instrumentation and Detectors +1603.06784 Strongly Correlated Electrons +1604.00707 Materials Science +1604.01352 Algebraic Geometry +1604.02775 Materials Science +1604.02918 Probability +1604.03497 Phenomenology +1604.03825 Analysis of PDEs +1604.04335 High Energy Astrophysical Phenomena +1604.04772 Distributed, Parallel, and Cluster Computing +1604.04978 Discrete Mathematics +1604.05516 Networking and Internet Architecture +1604.05557 Artificial Intelligence +1604.05578 Complex Variables +1604.05773 Networking and Internet Architecture +1604.06029 Algebraic Geometry +1604.06190 Experiment +1604.06476 +1604.06828 Probability +1604.07392 Materials Science +1604.07453 Combinatorics +1604.07529 Social and Information Networks +1604.07794 Representation Theory +1604.07914 +1604.07997 Digital Libraries +1604.08137 Distributed, Parallel, and Cluster Computing +1604.08209 Theory +1604.08216 Algebraic Geometry +1604.08220 Learning +1604.08222 Theory +1604.08226 Multiagent Systems +1604.08227 Logic +1604.08229 Artificial Intelligence +1604.08230 Information Theory +1604.08231 Information Theory +1604.08233 Phenomenology +1604.08235 Computers and Society +1604.08236 Differential Geometry +1604.08237 Optimization and Control +1604.08239 Human-Computer Interaction +1604.08240 Geometric Topology +1604.08243 Networking and Internet Architecture +1604.08245 Multimedia +1604.08248 Logic in Computer Science +1604.08250 Soft Condensed Matter +1604.08252 Dynamical Systems +1604.08255 Software Engineering +1604.08256 Computer Vision and Pattern Recognition +1604.08259 Group Theory +1604.08260 Plasma Physics +1604.08262 Algebraic Geometry +1604.08265 Analysis of PDEs +1604.08267 Geometric Topology +1604.08268 Artificial Intelligence +1604.08270 Artificial Intelligence +1604.08271 Algebraic Geometry +1604.08275 Cryptography and Security +1604.08276 Probability +1604.08284 Human-Computer Interaction +1604.08289 +1604.08291 Machine Learning +1604.08293 Superconductivity +1604.08294 Methodology +1604.08299 Combinatorics +1604.08302 +1604.08303 Number Theory +1604.08309 Earth and Planetary Astrophysics +1604.08311 Chemical Physics +1604.08313 Phenomenology +1604.08314 Quantitative Methods +1604.08320 Methodology +1604.08322 Human-Computer Interaction +1604.08330 Distributed, Parallel, and Cluster Computing +1604.08333 Phenomenology +1604.08335 Distributed, Parallel, and Cluster Computing +1604.08340 Artificial Intelligence +1604.08341 Probability +1604.08349 Materials Science +1604.08351 Probability +1604.08352 Computer Vision and Pattern Recognition +1604.08358 Classical Physics +1604.08360 Instrumentation and Methods for Astrophysics +1604.08372 Spectral Theory +1604.08373 Earth and Planetary Astrophysics +1604.08374 Solar and Stellar Astrophysics +1604.08375 Superconductivity +1604.08377 Databases +1604.08378 Probability +1604.08385 Theory +1604.08389 Strongly Correlated Electrons +1604.08390 Popular Physics +1604.08391 Phenomenology +1604.08392 Phenomenology +1604.08394 Physics and Society +1604.08395 Superconductivity +1604.08396 Analysis of PDEs +1604.08397 Networking and Internet Architecture +1604.08398 History and Philosophy of Physics +1604.08399 +1604.08402 Machine Learning +1604.08409 Analysis of PDEs +1604.08410 Numerical Analysis +1604.08414 Instrumentation and Methods for Astrophysics +1604.08418 Information Theory +1604.08419 Phenomenology +1604.08420 Information Retrieval +1604.08421 Differential Geometry +1604.08423 +1604.08430 Geometric Topology +1604.08433 Differential Geometry +1604.08434 Statistical Mechanics +1604.08435 Commutative Algebra +1604.08438 Soft Condensed Matter +1604.08439 Combinatorics +1604.08442 Rings and Algebras +1604.08445 Classical Analysis and ODEs +1604.08449 Atomic Physics +1604.08451 Classical Physics +1604.08459 Optimization and Control +1604.08460 Instrumentation and Methods for Astrophysics +1604.08461 Computational Physics +1604.08470 Statistics Theory +1604.08472 History and Overview +1604.08474 Accelerator Physics +1604.08476 Numerical Analysis +1604.08478 Group Theory +1604.08480 Algebraic Topology +1604.08481 General Physics +1604.08484 Distributed, Parallel, and Cluster Computing +1604.08485 Analysis of PDEs +1604.08486 Fluid Dynamics +1604.08489 Differential Geometry +1604.08491 Data Structures and Algorithms +1604.08496 Materials Science +1604.08499 Materials Science +1604.08500 Learning +1604.08501 Programming Languages +1604.08503 Algebraic Geometry +1604.08507 Social and Information Networks +1604.08508 Neurons and Cognition +1604.08510 Number Theory +1604.08517 Commutative Algebra +1604.08518 +1604.08519 Mesoscale and Nanoscale Physics +1604.08524 Machine Learning +1604.08527 Strongly Correlated Electrons +1604.08534 +1604.08540 Earth and Planetary Astrophysics +1604.08542 +1604.08544 Numerical Analysis +1604.08545 Differential Geometry +1604.08546 Probability +1604.08547 Probability +1604.08549 Chemical Physics +1604.08552 Networking and Internet Architecture +1604.08558 Computational Complexity +1604.08561 Computation and Language +1604.08562 Solar and Stellar Astrophysics +1604.08563 Instrumentation and Methods for Astrophysics +1604.08569 Category Theory +1604.08571 Strongly Correlated Electrons +1604.08579 Metric Geometry +1604.08580 K-Theory and Homology +0705.3458 Combinatorics +0901.3751 Databases +0905.3895 Pattern Formation and Solitons +1004.2694 Geometric Topology +1004.4250 Optimization and Control +1009.3247 Optimization and Control +1106.2773 Optimization and Control +1106.2781 Optimization and Control +1201.6610 Algebraic Topology +1203.0543 Data Structures and Algorithms +1208.5757 Optimization and Control +1211.0638 Methodology +1301.1977 Theory +1301.5373 Analysis of PDEs +1301.7313 Materials Science +1303.2463 Astrophysics of Galaxies +1304.6242 Dynamical Systems +1307.4439 Geometric Topology +1307.5407 Classical Analysis and ODEs +1309.1770 Analysis of PDEs +1309.1772 Analysis of PDEs +1309.1846 Data Structures and Algorithms +1309.4775 Theory +1311.1891 Algebraic Geometry +1312.5946 Learning +1402.0033 Logic +1402.2939 Number Theory +1402.6724 Probability +1403.1523 Computational Engineering, Finance, and Science +1403.4404 Combinatorics +1403.6348 Artificial Intelligence +1404.4118 Probability +1405.4551 Strongly Correlated Electrons +1406.0153 Fluid Dynamics +1406.1945 Geometric Topology +1406.3786 Symplectic Geometry +1407.6205 General Physics +1407.7379 Probability +1408.2176 Classical Analysis and ODEs +1408.6750 Probability +1409.6319 Quantum Gases +1410.0590 Phenomenology +1412.3376 Representation Theory +1412.4524 Group Theory +1412.5776 Rings and Algebras +1412.6911 Probability +1501.00524 Number Theory +1501.01053 +1501.02316 +1501.03192 Optics +1502.03571 Optimization and Control +1502.07325 Phenomenology +1503.00337 Quantum Algebra +1503.00801 Differential Geometry +1503.02121 Algebraic Geometry +1503.02622 +1503.03371 Adaptation and Self-Organizing Systems +1503.05487 Fluid Dynamics +1503.06465 Computer Vision and Pattern Recognition +1503.06663 Popular Physics +1504.02298 Information Theory +1504.02367 Discrete Mathematics +1504.02730 Operator Algebras +1504.03447 Dynamical Systems +1504.03652 Superconductivity +1504.04715 Formal Languages and Automata Theory +1504.05290 Classical Analysis and ODEs +1505.02249 Algebraic Geometry +1505.03790 Superconductivity +1505.04665 Phenomenology +1505.06493 Commutative Algebra +1505.06721 Mesoscale and Nanoscale Physics +1506.00793 Mesoscale and Nanoscale Physics +1506.05244 Applications +1506.05246 +1506.05841 Geometric Topology +1507.00794 Optics +1507.01948 Astrophysics of Galaxies +1507.02131 Phenomenology +1507.03219 Logic in Computer Science +1507.05878 +1507.06015 Risk Management +1508.00379 Materials Science +1508.00887 Number Theory +1508.02962 Analysis of PDEs +1508.04062 Algebraic Topology +1508.04984 Mesoscale and Nanoscale Physics +1508.05878 +1508.07270 Lattice +1508.07548 Symplectic Geometry +1509.00268 Networking and Internet Architecture +1509.01478 +1509.01826 +1509.03901 Dynamical Systems +1509.05464 Combinatorics +1509.05911 Analysis of PDEs +1509.06411 Statistical Mechanics +1509.07278 Data Structures and Algorithms +1509.08966 Group Theory +1509.09274 Algebraic Geometry +1510.01191 Number Theory +1510.01262 +1510.02434 Analysis of PDEs +1510.05741 Analysis of PDEs +1510.08336 Numerical Analysis +1511.00085 Materials Science +1511.00569 +1511.02097 Materials Science +1511.02976 Neurons and Cognition +1511.04111 Representation Theory +1511.04663 Materials Science +1511.04764 Portfolio Management +1511.07099 +1511.07902 Machine Learning +1511.08655 Quantum Gases +1512.00056 Exactly Solvable and Integrable Systems +1512.01016 Strongly Correlated Electrons +1512.04065 Computer Vision and Pattern Recognition +1512.05215 Probability +1512.05300 Computer Vision and Pattern Recognition +1512.05332 Phenomenology +1512.05782 Phenomenology +1512.06266 Mesoscale and Nanoscale Physics +1512.07025 Combinatorics +1512.07810 Biomolecules +1512.08153 Mesoscale and Nanoscale Physics +1512.09264 Algebraic Geometry +1512.09272 Computer Vision and Pattern Recognition +1512.09302 Optimization and Control +1601.00076 Theory +1601.05217 Phenomenology +1601.05522 +1601.05635 Optics +1601.06712 Mesoscale and Nanoscale Physics +1601.06956 Mesoscale and Nanoscale Physics +1601.07178 Astrophysics of Galaxies +1602.01002 Optics +1602.01632 Materials Science +1602.04329 Systems and Control +1602.04359 Combinatorics +1602.05282 Algebraic Geometry +1602.05575 +1602.06163 Pattern Formation and Solitons +1602.06465 Optics +1602.06997 Cryptography and Security +1602.07313 Classical Analysis and ODEs +1603.00805 Soft Condensed Matter +1603.01084 Statistical Mechanics +1603.01700 Machine Learning +1603.01751 Optimization and Control +1603.02311 Mesoscale and Nanoscale Physics +1603.02640 Cryptography and Security +1603.02844 Computer Vision and Pattern Recognition +1603.02998 +1603.03075 +1603.03665 Mesoscale and Nanoscale Physics +1603.04061 Theory +1603.04716 +1603.04771 Computer Vision and Pattern Recognition +1603.04862 Astrophysics of Galaxies +1603.05280 Numerical Analysis +1603.05656 Strongly Correlated Electrons +1603.06325 Strongly Correlated Electrons +1603.06924 Materials Science +1603.07462 Human-Computer Interaction +1603.07605 +1603.07748 +1603.07785 Phenomenology +1603.07851 +1603.08004 Theory +1603.08161 Computer Vision and Pattern Recognition +1603.08526 Quantum Gases +1603.08785 Artificial Intelligence +1603.08993 Experiment +1603.09197 +1604.00214 Plasma Physics +1604.01514 Number Theory +1604.01520 Mesoscale and Nanoscale Physics +1604.02216 Optimization and Control +1604.02423 Mesoscale and Nanoscale Physics +1604.02461 +1604.02757 Logic +1604.02916 Strongly Correlated Electrons +1604.03071 Genomics +1604.03078 Logic +1604.03117 Theory +1604.03795 Geometric Topology +1604.03815 +1604.05317 Astrophysics of Galaxies +1604.05726 Phenomenology +1604.06447 Phenomenology +1604.06480 Computer Vision and Pattern Recognition +1604.07443 Superconductivity +1604.07515 Distributed, Parallel, and Cluster Computing +1604.07883 Quantum Gases +1604.08067 +1604.08287 Probability +1605.01384 Numerical Analysis +1605.02147 Information Theory +1605.02264 Computer Vision and Pattern Recognition +1605.02305 Computer Vision and Pattern Recognition +1605.02356 Algebraic Geometry +1605.02987 General Topology +1605.03209 Computation and Language +1605.03212 +1605.03633 +1605.03859 Statistical Mechanics +1605.03981 Logic +1605.04194 +1605.04250 Computer Vision and Pattern Recognition +1605.04274 High Energy Astrophysical Phenomena +1605.04894 Optics +1605.06822 Mesoscale and Nanoscale Physics +1605.06867 Theory +1605.07670 Classical Analysis and ODEs +1605.07946 Multimedia +1605.08276 Solar and Stellar Astrophysics +1605.08483 High Energy Astrophysical Phenomena +1605.08976 +1605.09718 Soft Condensed Matter +1606.00500 Superconductivity +1606.00516 Chemical Physics +1606.00922 Statistics Theory +1606.01399 Astrophysics of Galaxies +1606.01625 Differential Geometry +1606.03225 Materials Science +1606.04204 +1606.05129 Experiment +1606.05880 Number Theory +1606.06099 Information Theory +1606.06359 Mesoscale and Nanoscale Physics +1606.06766 +1606.07390 +1606.07747 Disordered Systems and Neural Networks +1606.08079 Physics and Society +1606.09332 Pattern Formation and Solitons +1607.00145 Mathematical Software +1607.00597 Information Theory +1607.00911 Optics +1607.01207 Mathematical Finance +1607.01418 +1607.01477 Mathematical Software +1607.01525 Analysis of PDEs +1607.01619 Pricing of Securities +1607.01816 Instrumentation and Detectors +1607.01837 Cosmology and Nongalactic Astrophysics +1607.02372 Statistical Mechanics +1607.02435 Statistics Theory +1607.02688 Optimization and Control +1607.02860 Instrumentation and Detectors +1607.03596 Probability +1607.03697 Algebraic Geometry +1607.03829 Phenomenology +1607.04564 Computer Vision and Pattern Recognition +1607.04672 Mesoscale and Nanoscale Physics +1607.04720 Other Condensed Matter +1607.04801 Functional Analysis +1607.04829 Data Structures and Algorithms +1607.04874 +1607.05486 Materials Science +1607.05947 Computer Vision and Pattern Recognition +1607.06622 Networking and Internet Architecture +1607.06875 Artificial Intelligence +1607.07183 Networking and Internet Architecture +1607.07309 Phenomenology +1607.07879 Solar and Stellar Astrophysics +1607.08078 Computational Complexity +1607.08264 +1607.08306 Differential Geometry +1607.08362 Computer Vision and Pattern Recognition +1607.08455 Information Theory +1607.08484 Logic in Computer Science +1607.08583 Cryptography and Security +1607.08610 +1607.08670 Theory +1607.08702 Differential Geometry +1607.08779 Systems and Control +1607.08821 Social and Information Networks +1608.00003 High Energy Astrophysical Phenomena +1608.00005 Astrophysics of Galaxies +1608.00007 Astrophysics of Galaxies +1608.00018 Differential Geometry +1608.00019 Geometric Topology +1608.00020 Optimization and Control +1608.00022 Mesoscale and Nanoscale Physics +1608.00023 Mesoscale and Nanoscale Physics +1608.00024 Number Theory +1608.00027 Machine Learning +1608.00032 Statistics Theory +1608.00033 Statistics Theory +1608.00034 Numerical Analysis +1608.00036 Instrumentation and Detectors +1608.00037 Instrumentation and Methods for Astrophysics +1608.00041 Theory +1608.00042 Optimization and Control +1608.00043 Earth and Planetary Astrophysics +1608.00052 Combinatorics +1608.00053 Computation +1608.00054 Chemical Physics +1608.00055 Number Theory +1608.00057 Experiment +1608.00058 Combinatorics +1608.00059 Computer Vision and Pattern Recognition +1608.00061 Analysis of PDEs +1608.00064 Neurons and Cognition +1608.00066 Distributed, Parallel, and Cluster Computing +1608.00069 +1608.00072 Superconductivity +1608.00074 Quantum Gases +1608.00076 +1608.00079 Combinatorics +1608.00080 Optics +1608.00081 Materials Science +1608.00082 Metric Geometry +1608.00085 Probability +1608.00086 Applications +1608.00088 Statistics Theory +1608.00089 Programming Languages +1608.00090 Soft Condensed Matter +1608.00091 Combinatorics +1608.00092 Software Engineering +1608.00095 Networking and Internet Architecture +1608.00096 Combinatorics +1608.00100 Learning +1608.00101 +1608.00102 +1608.00104 Learning +1608.00107 Methodology +1608.00108 Quantitative Methods +1608.00109 Combinatorics +1608.00111 Mesoscale and Nanoscale Physics +1608.00112 Computation and Language +1608.00116 Computer Vision and Pattern Recognition +1608.00117 Numerical Analysis +1608.00122 Materials Science +1608.00124 +1608.00127 Computational Complexity +1608.00128 Numerical Analysis +1608.00129 Solar and Stellar Astrophysics +1608.00132 Strongly Correlated Electrons +1608.00135 Computational Complexity +1608.00137 +1608.00138 Neural and Evolutionary Computing +1608.00141 Algebraic Topology +1608.00142 Social and Information Networks +1608.00143 Computers and Society +1608.00145 Theory +1608.00146 Combinatorics +1608.00147 Information Retrieval +1608.00148 Computer Vision and Pattern Recognition +1608.00149 Classical Analysis and ODEs +1608.00150 Combinatorics +1608.00152 History and Overview +1608.00154 Analysis of PDEs +1608.00155 Probability +1608.00160 Analysis of PDEs +1608.00166 Number Theory +1608.00168 Computer Vision and Pattern Recognition +1608.00171 Commutative Algebra +1608.00172 Rings and Algebras +1608.00173 +1608.00174 Popular Physics +1608.00176 +1608.00180 Data Structures and Algorithms +1608.00181 Algebraic Geometry +1608.00182 Computer Vision and Pattern Recognition +1608.00185 Analysis of PDEs +1608.00187 Computer Vision and Pattern Recognition +1608.00188 Operator Algebras +1608.00190 Operator Algebras +1608.00191 Information Theory +1608.00192 Optimization and Control +1608.00194 Materials Science +1608.00196 Data Structures and Algorithms +1608.00199 Computer Vision and Pattern Recognition +1608.00201 Optics +1608.00202 Optics +1608.00203 Computer Vision and Pattern Recognition +1608.00205 +1608.00206 Computational Geometry +1608.00207 Computer Vision and Pattern Recognition +1608.00208 Functional Analysis +1608.00209 Information Theory +1608.00212 Data Structures and Algorithms +1608.00216 Dynamical Systems +1608.00217 Analysis of PDEs +1608.00218 Learning +1608.00220 Learning +1608.00221 Algebraic Geometry +1608.00222 History and Overview +1608.00223 +1608.00224 Spectral Theory +1608.00229 Computer Vision and Pattern Recognition +1608.00230 Pricing of Securities +1608.00232 Solar and Stellar Astrophysics +1608.00234 Algebraic Geometry +1608.00235 Optics +1608.00237 Superconductivity +1608.00239 Networking and Internet Architecture +1608.00241 Phenomenology +1608.00243 Combinatorics +1608.00247 Computer Vision and Pattern Recognition +1608.00249 Distributed, Parallel, and Cluster Computing +1608.00250 Learning +1608.00251 Atomic Physics +1608.00252 Mesoscale and Nanoscale Physics +1608.00259 Combinatorics +1608.00264 Methodology +1608.00266 Optics +1608.00271 Data Structures and Algorithms +1608.00278 +1608.00280 Pricing of Securities +1608.00281 +1608.00286 Optics +1608.00288 High Energy Astrophysical Phenomena +1608.00289 High Energy Astrophysical Phenomena +1608.00293 Computation and Language +1608.00295 Functional Analysis +1608.00300 Algebraic Geometry +1608.00301 Social and Information Networks +1608.00306 Experiment +1608.00307 Distributed, Parallel, and Cluster Computing +1608.00310 Computer Vision and Pattern Recognition +1608.00311 Mesoscale and Nanoscale Physics +1608.00312 Solar and Stellar Astrophysics +1608.00313 Physics Education +1608.00315 Number Theory +1608.00316 Computational Physics +1608.00319 General Topology +1608.00321 Representation Theory +1608.00323 Mesoscale and Nanoscale Physics +1608.00324 Differential Geometry +1608.00325 Differential Geometry +1608.00326 Strongly Correlated Electrons +1608.00332 Fluid Dynamics +1608.00333 Functional Analysis +1608.00334 Robotics +1608.00335 Combinatorics +1608.00337 Systems and Control +1608.00339 Computation and Language +1608.00344 +1608.00346 Combinatorics +1608.00347 Combinatorics +1608.00348 Mesoscale and Nanoscale Physics +1608.00350 Information Theory +1608.00351 Numerical Analysis +1608.00352 Information Theory +1608.00354 Methodology +1608.00355 Optics +1608.00356 Logic +1608.00357 Dynamical Systems +1608.00358 Optics +1608.00359 Robotics +1608.00363 Biological Physics +1608.00365 Algebraic Topology +1608.00367 Computer Vision and Pattern Recognition +1608.00370 Astrophysics of Galaxies +1608.00373 Combinatorics +1608.00374 +1608.00375 Social and Information Networks +1608.00383 +1608.00385 Atomic Physics +1608.00387 Phenomenology +1608.00388 Functional Analysis +1608.00392 Number Theory +1608.00394 Probability +1608.00397 Geometric Topology +1608.00401 Differential Geometry +1608.00409 Superconductivity +1608.00410 Numerical Analysis +1608.00413 Optimization and Control +1608.00417 Computational Complexity +1608.00419 Numerical Analysis +1608.00422 Analysis of PDEs +1608.00423 Algebraic Geometry +1608.00425 +1608.00426 Systems and Control +1608.00428 Adaptation and Self-Organizing Systems +1608.00431 Neurons and Cognition +1608.00432 Spectral Theory +1608.00433 Other Computer Science +1608.00434 +1608.00439 Dynamical Systems +1608.00440 Spectral Theory +1608.00441 Machine Learning +1608.00442 Complex Variables +1608.00443 Metric Geometry +1608.00447 Human-Computer Interaction +1608.00449 Analysis of PDEs +1608.00450 Plasma Physics +1608.00451 Computation +1608.00455 Phenomenology +1608.00457 Quantum Gases +1608.00460 Differential Geometry +1608.00462 Computers and Society +1608.00473 Optics +1608.00477 Computational Geometry +1608.00481 Computation +1608.00483 Algebraic Topology +1608.00485 Statistics Theory +1608.00488 Optimization and Control +1608.00493 +1608.00497 Computational Complexity +1608.00498 +1608.00499 Group Theory +1608.00501 Computer Vision and Pattern Recognition +1608.00507 Computer Vision and Pattern Recognition +1608.00508 Computation and Language +1608.00509 Cryptography and Security +1608.00510 Representation Theory +1608.00511 Numerical Analysis +1608.00512 Numerical Analysis +1608.00515 Materials Science +1608.00518 Logic +1608.00519 Theory +1608.00520 +1608.00521 Geometric Topology +1608.00525 Computer Vision and Pattern Recognition +1608.00529 Combinatorics +1608.00531 Combinatorics +1608.00532 Plasma Physics +1608.00533 Logic in Computer Science +1608.00534 Cosmology and Nongalactic Astrophysics +1608.00536 Physics Education +1608.00537 Physics Education +1608.00538 Applications +1608.00543 Geometric Topology +1608.00544 Chemical Physics +1608.00546 Systems and Control +1608.00548 +1608.00549 Earth and Planetary Astrophysics +1608.00550 Methodology +1608.00555 Number Theory +math/0610459 Probability +0802.1945 Number Theory +1211.0534 Materials Science +1212.6705 +1302.2634 Strongly Correlated Electrons +1305.5573 Analysis of PDEs +1306.0736 Number Theory +1309.1877 Group Theory +1309.2480 Analysis of PDEs +1309.2638 Mesoscale and Nanoscale Physics +1309.6362 Computational Physics +1311.2439 Metric Geometry +1312.1614 Statistical Mechanics +1312.4681 Quantum Algebra +1401.8266 Number Theory +1402.0640 Genomics +1402.3784 Analysis of PDEs +1403.4013 Representation Theory +1404.4186 +1406.0770 Number Theory +1407.0373 Representation Theory +1407.0539 Differential Geometry +1407.6928 +1408.0589 Representation Theory +1409.7932 Functional Analysis +1410.6032 +1410.8550 Algebraic Geometry +1411.5572 Differential Geometry +1411.7316 Quantum Gases +1412.2882 Analysis of PDEs +1412.5252 Differential Geometry +1501.02180 Numerical Analysis +1501.03363 Probability +1501.03659 Statistics Theory +1501.07364 Analysis of PDEs +1502.02406 Applications +1502.06205 Complex Variables +1502.06989 Representation Theory +1503.00858 Solar and Stellar Astrophysics +1503.01380 Digital Libraries +1503.03442 Geophysics +1503.04692 Atmospheric and Oceanic Physics +1503.05166 Numerical Analysis +1504.02422 Phenomenology +1504.03921 Differential Geometry +1504.05918 Physics Education +1504.06301 Functional Analysis +1504.07622 +1505.03669 Logic +1505.04064 Materials Science +1505.04207 Cryptography and Security +1505.05093 Computation +1505.06495 Strongly Correlated Electrons +1506.00027 Theory +1506.01026 Cosmology and Nongalactic Astrophysics +1506.07741 Combinatorics +1506.08685 Differential Geometry +1506.08726 Logic in Computer Science +1506.09193 Chemical Physics +1507.02733 Representation Theory +1507.07230 Materials Science +1507.07991 Mesoscale and Nanoscale Physics +1508.00188 Social and Information Networks +1508.00387 +1508.00756 Metric Geometry +1508.04140 Strongly Correlated Electrons +1508.04411 Atomic Physics +1508.05362 Mesoscale and Nanoscale Physics +1508.05573 Combinatorics +1508.05627 Strongly Correlated Electrons +1508.07461 Materials Science +1508.07689 Superconductivity +1509.03461 Cosmology and Nongalactic Astrophysics +1509.04758 Superconductivity +1509.05757 Populations and Evolution +1509.06452 Phenomenology +1509.07451 Superconductivity +1509.07673 Analysis of PDEs +1509.08063 Probability +1510.00850 Machine Learning +1510.01063 Phenomenology +1510.01257 Computer Vision and Pattern Recognition +1510.01450 Statistical Mechanics +1510.01472 +1510.03700 +1510.03929 Programming Languages +1510.05492 Machine Learning +1510.07426 Statistical Mechanics +1510.09187 Combinatorics +1511.01966 Computer Vision and Pattern Recognition +1511.02007 Superconductivity +1511.03119 Superconductivity +1511.03250 +1511.03776 Computer Vision and Pattern Recognition +1511.03926 Soft Condensed Matter +1511.03951 Experiment +1511.07164 +1511.08158 Artificial Intelligence +1511.08585 Systems and Control +1511.08852 Operator Algebras +1511.09373 +1511.09375 Experiment +1512.00428 Other Computer Science +1512.00486 Machine Learning +1512.01355 Computer Vision and Pattern Recognition +1512.01521 Cosmology and Nongalactic Astrophysics +1512.02247 +1512.04012 Soft Condensed Matter +1512.05383 Cosmology and Nongalactic Astrophysics +1512.06133 Mesoscale and Nanoscale Physics +1512.06554 Mesoscale and Nanoscale Physics +1512.07375 Strongly Correlated Electrons +1512.08137 Chemical Physics +1512.08194 Distributed, Parallel, and Cluster Computing +1512.08377 Experiment +1512.08596 High Energy Astrophysical Phenomena +1601.00653 Phenomenology +1601.01080 Numerical Analysis +1601.03391 Astrophysics of Galaxies +1601.04981 Optics +1601.05625 Theory +1601.05643 Disordered Systems and Neural Networks +1601.06280 Information Theory +1601.06938 Instrumentation and Detectors +1601.07594 Fluid Dynamics +1602.00226 Phenomenology +1602.01430 +1602.02213 Cosmology and Nongalactic Astrophysics +1602.05319 Superconductivity +1602.05725 +1602.05842 Symplectic Geometry +1602.06805 High Energy Astrophysical Phenomena +1602.07381 High Energy Astrophysical Phenomena +1602.07513 Mesoscale and Nanoscale Physics +1603.00201 Neurons and Cognition +1603.01877 Differential Geometry +1603.01908 Analysis of PDEs +1603.02322 Cosmology and Nongalactic Astrophysics +1603.03498 Spectral Theory +1603.05619 Quantum Gases +1603.06363 +1603.07830 +1603.07890 Functional Analysis +1603.09648 Optics +1604.00737 Computers and Society +1604.00999 Computer Vision and Pattern Recognition +1604.01151 Information Theory +1604.01727 Dynamical Systems +1604.01867 Algebraic Geometry +1604.01918 Phenomenology +1604.02097 Performance +1604.02428 Materials Science +1604.02483 Graphics +1604.02881 General Topology +1604.02893 +1604.03113 Astrophysics of Galaxies +1604.03236 Cosmology and Nongalactic Astrophysics +1604.03267 Systems and Control +1604.03295 Information Theory +1604.03299 Information Theory +1604.03330 Networking and Internet Architecture +1604.03349 High Energy Astrophysical Phenomena +1604.03376 Astrophysics of Galaxies +1604.03517 Computer Vision and Pattern Recognition +1604.03547 Functional Analysis +1604.03558 Applications +1604.03563 Computers and Society +1604.03566 Superconductivity +1604.03568 Logic +1604.03570 Mathematical Software +1604.03573 Optimization and Control +1604.03580 Theory +1604.03581 Logic +1604.03587 Data Structures and Algorithms +1604.03590 Optimization and Control +1604.03591 Molecular Networks +1604.03592 Optimization and Control +1604.03594 Commutative Algebra +1604.03600 Superconductivity +1604.03601 Social and Information Networks +1604.03602 Materials Science +1604.03603 Computational Geometry +1604.03605 Computer Vision and Pattern Recognition +1604.03607 Databases +1604.03608 Networking and Internet Architecture +1604.03609 Computer Science and Game Theory +1604.03610 Optimization and Control +1604.03612 Information Theory +1604.03615 Methodology +1604.03617 Information Theory +1604.03626 Social and Information Networks +1604.03627 Computers and Society +1604.03632 Computer Science and Game Theory +1604.03633 Networking and Internet Architecture +1604.03636 Probability +1604.03637 Instrumentation and Methods for Astrophysics +1604.03639 Robotics +1604.03640 Learning +1604.03641 Programming Languages +1604.03642 Representation Theory +1604.03647 Applications +1604.03648 Methodology +1604.03650 Computer Vision and Pattern Recognition +1604.03651 Astrophysics of Galaxies +1604.03654 Computational Geometry +1604.03656 Atmospheric and Oceanic Physics +1604.03657 Optics +1604.03658 Mesoscale and Nanoscale Physics +1604.03659 Mesoscale and Nanoscale Physics +1604.03664 Earth and Planetary Astrophysics +1604.03666 Probability +1604.03671 Rings and Algebras +1604.03672 Optimization and Control +1604.03675 Optics +1604.03677 Probability +1604.03681 Quantum Algebra +1604.03683 High Energy Astrophysical Phenomena +1604.03684 Commutative Algebra +1604.03686 Soft Condensed Matter +1604.03690 Plasma Physics +1604.03694 Atmospheric and Oceanic Physics +1604.03698 Information Theory +1604.03702 Probability +1604.03709 Atmospheric and Oceanic Physics +1604.03710 Theory +1604.03711 Classical Analysis and ODEs +1604.03713 Experiment +1604.03715 +1604.03716 Combinatorics +1604.03717 Disordered Systems and Neural Networks +1604.03720 Other Condensed Matter +1604.03721 Optics +1604.03727 Fluid Dynamics +1604.03728 Exactly Solvable and Integrable Systems +1604.03729 Combinatorics +1604.03732 Mesoscale and Nanoscale Physics +1604.03734 Computer Vision and Pattern Recognition +1604.03735 Biological Physics +1604.03736 Learning +1604.03739 Theory +1604.03741 Analysis of PDEs +1604.03745 Differential Geometry +1604.03746 Materials Science +1604.03747 Multiagent Systems +1604.03751 Instrumentation and Methods for Astrophysics +1604.03763 Learning +1604.03766 Optics +1604.03767 Materials Science +1604.03768 Mesoscale and Nanoscale Physics +1604.03774 Information Theory +1604.03775 Solar and Stellar Astrophysics +1604.03778 Geometric Topology +1604.03781 Numerical Analysis +1604.03787 Number Theory +1604.03790 Earth and Planetary Astrophysics +1604.03794 History and Overview +1604.03796 +1604.03802 Computation +1604.03804 General Physics +1604.03808 History and Overview +1604.03810 Instrumentation and Methods for Astrophysics +1604.03811 Materials Science +1604.03813 Differential Geometry +1604.03814 Materials Science +1604.03817 Materials Science +1604.03821 Distributed, Parallel, and Cluster Computing +1604.03823 Networking and Internet Architecture +1604.03824 Cryptography and Security +1604.03829 Learning +1604.03833 Geophysics +1604.03834 Quantitative Methods +1604.03837 Number Theory +1604.03839 Combinatorics +1604.03840 Group Theory +1604.03844 Cryptography and Security +1604.03848 Cryptography and Security +1604.03849 Differential Geometry +1604.03850 Cryptography and Security +1604.03851 Logic +1604.03857 Group Theory +1604.03861 Combinatorics +1604.03862 Superconductivity +1604.03863 History and Philosophy of Physics +1604.03865 Soft Condensed Matter +1604.03866 +1604.03867 +1604.03868 Chaotic Dynamics +1604.03869 Optics +1604.03871 Distributed, Parallel, and Cluster Computing +1604.03872 +1604.03873 +1604.03880 Computer Vision and Pattern Recognition +1604.03881 Solar and Stellar Astrophysics +1604.03882 Computer Vision and Pattern Recognition +1604.03883 Complex Variables +1604.03889 Cryptography and Security +1604.03890 Solar and Stellar Astrophysics +1604.03892 Solar and Stellar Astrophysics +1604.03897 Number Theory +1604.03902 Accelerator Physics +1604.03907 Materials Science +1604.03912 Artificial Intelligence +1604.03913 Optimization and Control +1604.03915 Computer Vision and Pattern Recognition +1604.03919 Chemical Physics +1604.03921 Data Structures and Algorithms +1604.03926 Chaotic Dynamics +1604.03927 Algebraic Geometry +1604.03931 Mesoscale and Nanoscale Physics +0805.4712 Soft Condensed Matter +1205.6117 Theory +1206.6794 Chaotic Dynamics +1208.4042 Physics and Society +1210.1442 Functional Analysis +1210.4150 Probability +1211.5859 Symplectic Geometry +1301.4417 Physics and Society +1304.3760 Methodology +1309.1114 Instrumentation and Methods for Astrophysics +1309.5987 Number Theory +1310.2093 Number Theory +1310.6873 General Finance +1312.0062 +1312.1063 Solar and Stellar Astrophysics +1312.2607 Numerical Analysis +1401.1338 +1401.3733 Distributed, Parallel, and Cluster Computing +1401.4389 Rings and Algebras +1401.5329 Quantum Algebra +1403.2236 Number Theory +1403.3043 Physics and Society +1404.0909 Algebraic Geometry +1404.7007 Dynamical Systems +1404.7056 Functional Analysis +1406.7105 Differential Geometry +1407.7914 Geometric Topology +1408.0526 +1408.4131 High Energy Astrophysical Phenomena +1409.1130 Methodology +1409.5199 Probability +1409.5782 Metric Geometry +1410.4248 +1411.0968 Distributed, Parallel, and Cluster Computing +1411.6145 Probability +1412.4330 Differential Geometry +1412.4396 Algebraic Topology +1502.00952 Probability +1502.01591 Cosmology and Nongalactic Astrophysics +1502.03295 Analysis of PDEs +1503.00712 Theory +1503.02244 Optimization and Control +1506.07879 Mesoscale and Nanoscale Physics +1507.06070 Combinatorics +1507.07126 Systems and Control +1507.07469 Analysis of PDEs +1507.07513 Number Theory +1507.08072 Physics and Society +1507.08883 Analysis of PDEs +1508.00594 +1508.06367 Operating Systems +1509.00354 Probability +1509.01634 Quantum Algebra +1509.05988 Cryptography and Security +1509.06210 Mathematical Finance +1509.07028 Quantitative Methods +1510.00164 Strongly Correlated Electrons +1510.00262 +1510.05727 Computers and Society +1510.06964 Discrete Mathematics +1511.00594 +1511.04267 Superconductivity +1511.06081 Number Theory +1511.06367 Mesoscale and Nanoscale Physics +1512.00516 Phenomenology +1512.04106 Emerging Technologies +1512.04503 High Energy Astrophysical Phenomena +1512.09036 Algebraic Geometry +1601.01284 +1601.01507 Machine Learning +1601.02349 +1601.03826 Functional Analysis +1601.04427 Materials Science +1601.07118 Theory +1601.07278 Fluid Dynamics +1601.07304 Logic +1601.07979 Rings and Algebras +1602.01475 Theory +1602.03538 Quantum Gases +1602.03710 Populations and Evolution +1602.04267 Astrophysics of Galaxies +1602.05078 Analysis of PDEs +1602.05186 Materials Science +1602.05999 Materials Science +1602.07113 Computational Complexity +1602.08283 Cosmology and Nongalactic Astrophysics +1602.08779 +1603.02375 +1603.02555 Experiment +1603.04784 Instrumentation and Methods for Astrophysics +1603.05554 Analysis of PDEs +1603.05726 +1603.05789 Logic in Computer Science +1603.05831 Fluid Dynamics +1603.06231 Theory +1603.07715 Mesoscale and Nanoscale Physics +1603.08675 +1603.08909 Strongly Correlated Electrons +1603.09575 Theory +1604.00038 Mesoscale and Nanoscale Physics +1604.00284 Number Theory +1604.00424 Information Theory +1604.01688 Mesoscale and Nanoscale Physics +1604.05089 Mesoscale and Nanoscale Physics +1604.06011 Algebraic Geometry +1604.06245 Programming Languages +1604.06318 Computer Vision and Pattern Recognition +1604.06629 Risk Management +1604.07141 +1604.08946 Cosmology and Nongalactic Astrophysics +1605.00090 Computation and Language +1605.01604 High Energy Astrophysical Phenomena +1605.01699 Biological Physics +1605.01892 Earth and Planetary Astrophysics +1605.02154 Instrumentation and Detectors +1605.04141 Materials Science +1605.04242 Instrumentation and Methods for Astrophysics +1605.04481 Computation and Language +1605.06553 Materials Science +1605.06732 Analysis of PDEs +1605.06951 +1605.07178 Cosmology and Nongalactic Astrophysics +1605.07709 Probability +1605.07904 Geometric Topology +1605.09057 Rings and Algebras +1605.09320 Astrophysics of Galaxies +1605.09528 Optics +1605.09696 Computer Vision and Pattern Recognition +1606.00331 Biological Physics +1606.03286 +1606.03815 Computational Physics +1606.04100 Phenomenology +1606.04764 Atomic and Molecular Clusters +1606.06383 +1606.06394 Materials Science +1606.06639 Strongly Correlated Electrons +1606.07947 Computation and Language +1606.08446 Mesoscale and Nanoscale Physics +1606.09294 Complex Variables +1607.01937 Classical Analysis and ODEs +1607.02015 Plasma Physics +1607.02149 +1607.02748 Computer Vision and Pattern Recognition +1607.02985 Optics +1607.04774 Optics +1607.04833 +1607.06002 History and Overview +1607.06055 Biological Physics +1607.08524 +1608.00686 Machine Learning +1608.01277 Materials Science +1608.02076 Computation and Language +1608.02845 High Energy Astrophysical Phenomena +1608.03006 Superconductivity +1608.03535 Programming Languages +1608.04039 Methodology +1608.05950 Instrumentation and Detectors +1608.06244 Information Theory +1608.08179 Numerical Analysis +1608.08517 Social and Information Networks +1608.08613 Representation Theory +1609.00005 +1609.00310 Theory +1609.00460 Mesoscale and Nanoscale Physics +1609.00702 Mathematical Finance +1609.01469 Other Condensed Matter +1609.02327 High Energy Astrophysical Phenomena +1609.02748 Computation and Language +1609.03039 Space Physics +1609.03160 Information Theory +1609.03299 +1609.03568 Cosmology and Nongalactic Astrophysics +1609.04644 General Mathematics +1609.04767 Computer Vision and Pattern Recognition +1609.04973 Tissues and Organs +1609.05856 Cosmology and Nongalactic Astrophysics +1609.05999 Spectral Theory +1609.06054 Astrophysics of Galaxies +1609.06061 Chemical Physics +1609.06426 Computer Vision and Pattern Recognition +1609.06428 +1609.06429 +1609.06499 Digital Libraries +1609.06516 Information Theory +1609.06591 Computer Vision and Pattern Recognition +1609.06609 Theory +1609.06617 Statistics Theory +1609.06661 +1609.06671 Analysis of PDEs +1609.06710 History and Philosophy of Physics +1609.06711 +1609.06712 Medical Physics +1609.06713 Statistics Theory +1609.06716 High Energy Astrophysical Phenomena +1609.06724 Theory +1609.06725 Strongly Correlated Electrons +1609.06730 Strongly Correlated Electrons +1609.06731 General Physics +1609.06734 Cosmology and Nongalactic Astrophysics +1609.06736 Computational Complexity +1609.06737 Soft Condensed Matter +1609.06738 Mesoscale and Nanoscale Physics +1609.06739 Phenomenology +1609.06743 Biomolecules +1609.06745 High Energy Astrophysical Phenomena +1609.06747 High Energy Astrophysical Phenomena +1609.06749 Combinatorics +1609.06751 Atomic Physics +1609.06754 Operator Algebras +1609.06756 Computers and Society +1609.06759 Optics +1609.06762 Numerical Analysis +1609.06763 Populations and Evolution +1609.06767 Robotics +1609.06768 Symplectic Geometry +1609.06770 Rings and Algebras +1609.06771 Networking and Internet Architecture +1609.06772 Computer Vision and Pattern Recognition +1609.06774 Materials Science +1609.06775 Chaotic Dynamics +1609.06776 Statistical Mechanics +1609.06777 Combinatorics +1609.06778 Combinatorics +1609.06779 Robotics +1609.06782 Computer Vision and Pattern Recognition +1609.06783 Machine Learning +1609.06784 Phenomenology +1609.06786 Phenomenology +1609.06789 Methodology +1609.06790 Materials Science +1609.06791 Computation and Language +1609.06792 Numerical Analysis +1609.06796 +1609.06807 Optimization and Control +1609.06808 Metric Geometry +1609.06809 Combinatorics +1609.06813 Geometric Topology +1609.06814 Probability +1609.06815 Superconductivity +1609.06817 +1609.06819 Statistics Theory +1609.06823 Computer Science and Game Theory +1609.06824 Quantum Algebra +1609.06825 Computer Science and Game Theory +1609.06826 Digital Libraries +1609.06828 Optics +1609.06829 Number Theory +1609.06831 Learning +1609.06837 Strongly Correlated Electrons +1609.06838 Artificial Intelligence +1609.06839 Numerical Analysis +1609.06840 Learning +1609.06841 Data Structures and Algorithms +1609.06842 Data Analysis, Statistics and Probability +1609.06843 Quantitative Methods +1609.06844 Computer Science and Game Theory +1609.06845 Neural and Evolutionary Computing +1609.06846 Computer Vision and Pattern Recognition +1609.06847 Biological Physics +1609.06848 Software Engineering +1609.06849 Analysis of PDEs +1609.06850 Disordered Systems and Neural Networks +1609.06851 Combinatorics +1609.06852 Strongly Correlated Electrons +1609.06856 Probability +1609.06860 Optimization and Control +1609.06861 Computer Vision and Pattern Recognition +1609.06862 Networking and Internet Architecture +1609.06864 Machine Learning +1609.06866 Numerical Analysis +1609.06868 Software Engineering +1609.06869 Functional Analysis +1609.06873 Dynamical Systems +1609.06875 Combinatorics +1609.06876 Strongly Correlated Electrons +1609.06877 Information Theory +1609.06878 Experiment +1609.06881 Differential Geometry +1609.06882 Materials Science +1609.06888 Systems and Control +1609.06890 Fluid Dynamics +1609.06891 +1609.06892 Numerical Analysis +1609.06893 Group Theory +1609.06894 Materials Science +1609.06895 Number Theory +1609.06896 Computer Vision and Pattern Recognition +1609.06897 Probability +1609.06898 Phenomenology +1609.06901 Rings and Algebras +1609.06902 Number Theory +1609.06906 Functional Analysis +1609.06908 Combinatorics +1609.06909 Earth and Planetary Astrophysics +1609.06911 Combinatorics +1609.06913 Functional Analysis +1609.06915 +1609.06918 Differential Geometry +1609.06920 Theory +1609.06921 K-Theory and Homology +1609.06923 Classical Analysis and ODEs +1609.06925 +1609.06927 Computer Vision and Pattern Recognition +1609.06929 Algebraic Geometry +1609.06932 Statistical Mechanics +1609.06933 Analysis of PDEs +1609.06935 Neural and Evolutionary Computing +1609.06937 Probability +1609.06939 Disordered Systems and Neural Networks +1609.06942 Machine Learning +1609.06944 +1609.06945 Optics +1609.06947 Number Theory +1609.06948 Systems and Control +1609.06951 Logic in Computer Science +1609.06953 Artificial Intelligence +1609.06954 Artificial Intelligence +1609.06957 Learning +1609.06959 Optimization and Control +1609.06962 Analysis of PDEs +1609.06963 Soft Condensed Matter +1609.06964 Soft Condensed Matter +1609.06968 Methodology +1609.06970 Functional Analysis +1609.06976 Combinatorics +1609.06978 Distributed, Parallel, and Cluster Computing +1609.06979 High Energy Astrophysical Phenomena +1609.06981 +1609.06983 Statistical Mechanics +1609.06984 Optimization and Control +1609.06986 Number Theory +1609.06988 Computer Vision and Pattern Recognition +1609.06989 Soft Condensed Matter +1609.06991 Representation Theory +1609.06992 +1609.06994 +1609.06995 +1609.06996 Geophysics +1609.06997 Materials Science +1609.06998 Representation Theory +1609.06999 Number Theory +1609.07000 Biomolecules +1609.07003 +1609.07005 Symplectic Geometry +1609.07006 Robotics +1609.07007 Computation +1609.07009 Computer Vision and Pattern Recognition +1609.07011 Algebraic Geometry +1609.07013 Analysis of PDEs +1609.07014 Phenomenology +1609.07017 Commutative Algebra +1609.07019 Plasma Physics +1609.07022 Fluid Dynamics +1609.07024 Phenomenology +1609.07026 Fluid Dynamics +1609.07029 Systems and Control +1609.07031 Probability +1609.07032 Information Theory +1609.07033 Computation and Language +1609.07034 Computation and Language +1609.07036 Materials Science +1609.07037 Phenomenology +1609.07038 Multiagent Systems +1609.07039 Mesoscale and Nanoscale Physics +1609.07040 Fluid Dynamics +1609.07041 Cosmology and Nongalactic Astrophysics +1609.07046 Analysis of PDEs +1609.07049 Graphics +1609.07050 Complex Variables +1609.07055 Metric Geometry +1609.07058 Group Theory +1609.07059 Computational Complexity +1609.07060 Machine Learning +1609.07061 Neural and Evolutionary Computing +1609.07064 +1609.07068 Neurons and Cognition +1609.07071 Quantum Gases +1609.07072 Chemical Physics +1609.07074 Probability +1609.07075 Computation and Language +1609.07076 Number Theory +1609.07079 +1609.07081 Phenomenology +1609.07083 +1609.07085 Analysis of PDEs +1609.07086 Numerical Analysis +1609.07087 Learning +1609.07088 Learning +1609.07089 Instrumentation and Detectors +1609.07091 Analysis of PDEs +1609.07094 Phenomenology +1609.07095 Phenomenology +1609.07100 Commutative Algebra +1609.07102 Artificial Intelligence +1609.07103 Probability +1609.07104 +1609.07108 Software Engineering +1609.07111 Other Computer Science +1609.07112 Phenomenology +1609.07113 Solar and Stellar Astrophysics +1609.07114 Computational Engineering, Finance, and Science +1609.07117 +1609.07119 Atmospheric and Oceanic Physics +1609.07121 Spectral Theory +1609.07125 +1609.07126 Analysis of PDEs +1609.07127 Social and Information Networks +1609.07132 Learning +1609.07134 Data Structures and Algorithms +1609.07135 Statistics Theory +1609.07139 Instrumentation and Methods for Astrophysics +math/0605088 K-Theory and Homology +1612.06054 Logic in Computer Science +1612.07526 Mathematical Software +1612.07578 Numerical Analysis +1612.07649 Fluid Dynamics +1612.07828 Computer Vision and Pattern Recognition +1612.08064 Cell Behavior +physics/0612137 Physics and Society +1206.2184 Accelerator Physics +1212.3133 Computational Geometry +1612.07703 Experiment +0705.1177 Symplectic Geometry +0806.0402 +0901.1002 Dynamical Systems +1111.0403 Complex Variables +1212.5965 Functional Analysis +1306.1409 Combinatorics +1306.5421 Logic +1307.4032 Algebraic Geometry +1307.4033 Algebraic Geometry +1309.4418 Symplectic Geometry +1309.7268 Probability +1310.7156 Analysis of PDEs +1311.1421 Number Theory +1312.4389 Combinatorics +1402.7343 Computational Physics +1403.1260 Cosmology and Nongalactic Astrophysics +1405.3226 Quantitative Methods +1406.0059 Logic +1407.7066 Geometric Topology +1409.0034 Networking and Internet Architecture +1409.1487 Computer Science and Game Theory +1409.6041 Computer Vision and Pattern Recognition +1410.2468 Biological Physics +1410.4113 Algebraic Geometry +1410.4618 Number Theory +1410.5658 Logic +1411.0440 Artificial Intelligence +1411.2167 Economics +1412.0485 +1412.6294 Spectral Theory +1503.07398 K-Theory and Homology +1503.08371 Combinatorics +1504.01588 Mesoscale and Nanoscale Physics +1504.03180 Classical Analysis and ODEs +1504.04042 Astrophysics of Galaxies +1504.04684 Systems and Control +1504.04900 Analysis of PDEs +1504.06061 Analysis of PDEs +1505.03597 Computer Vision and Pattern Recognition +1506.01111 Fluid Dynamics +1506.03192 Probability +1506.03481 Methodology +1506.07159 Strongly Correlated Electrons +1507.03755 Numerical Analysis +1507.04356 Cosmology and Nongalactic Astrophysics +1507.05588 Soft Condensed Matter +1507.05598 Cosmology and Nongalactic Astrophysics +1508.00818 Classical Analysis and ODEs +1508.01002 Classical Analysis and ODEs +1508.02348 Combinatorics +1508.02598 Populations and Evolution +1508.07680 Computer Vision and Pattern Recognition +1509.01007 Computation and Language +1509.01097 Number Theory +1509.07469 Information Theory +1509.09295 +1510.00679 Accelerator Physics +1510.01637 Mesoscale and Nanoscale Physics +1510.03304 Algebraic Topology +1510.04361 Numerical Analysis +1510.04373 Computer Vision and Pattern Recognition +1510.05276 Classical Analysis and ODEs +1510.06409 Cosmology and Nongalactic Astrophysics +1510.06473 +1511.01051 Mesoscale and Nanoscale Physics +1511.02739 +1511.02892 Theory +1511.03012 Computation and Language +1511.04028 Optics +1511.04946 Digital Libraries +1511.05170 Phenomenology +1511.05697 Geometric Topology +1511.07076 Neural and Evolutionary Computing +1511.08684 Geometric Topology +1511.08774 Hardware Architecture +1512.03100 +1512.04665 +1512.07190 High Energy Astrophysical Phenomena +1512.07864 Subcellular Processes +1512.07870 Optics +1512.08225 +1601.00045 +1601.02125 Theory +1601.06039 Information Theory +1601.06592 +1601.06898 Classical Analysis and ODEs +1601.07236 Classical Analysis and ODEs +1601.07697 Materials Science +1601.08152 Differential Geometry +1602.00135 Mesoscale and Nanoscale Physics +1602.01118 Statistical Mechanics +1602.01193 Analysis of PDEs +1602.01435 General Physics +1602.02434 Computer Vision and Pattern Recognition +1602.03864 Spectral Theory +1602.04711 Optics +1602.07979 General Physics +1602.08678 Applications +1603.00269 Functional Analysis +1603.00504 Statistical Mechanics +1603.01748 Algebraic Geometry +1603.02233 +1603.02240 +1603.02644 Learning +1603.03379 +1603.04866 High Energy Astrophysical Phenomena +1603.05320 Superconductivity +1603.06438 Mesoscale and Nanoscale Physics +1603.07238 Representation Theory +1603.07963 Instrumentation and Detectors +1603.08695 Computer Vision and Pattern Recognition +1603.09493 Computational Physics +1604.00265 +1604.01459 Strongly Correlated Electrons +1604.01753 Computer Vision and Pattern Recognition +1604.01804 Optics +1604.01997 Strongly Correlated Electrons +1604.02261 +1604.02556 Phenomenology +1604.02597 Dynamical Systems +1604.02638 Dynamical Systems +1604.04279 Computer Vision and Pattern Recognition +1604.05200 Optimization and Control +1604.06085 Theory +1604.06208 Optics +1604.07414 Solar and Stellar Astrophysics +1605.02831 Quantum Gases +1605.03449 Information Theory +1605.04471 Strongly Correlated Electrons +1605.04477 Programming Languages +1605.05133 Theory +1605.05658 Methodology +1605.06720 Earth and Planetary Astrophysics +1605.08745 Astrophysics of Galaxies +1605.09229 General Physics +1605.09621 Commutative Algebra +1605.09738 Solar and Stellar Astrophysics +1606.00278 Numerical Analysis +1606.01621 Computer Vision and Pattern Recognition +1606.01635 Mesoscale and Nanoscale Physics +1606.02946 Theory +1606.03098 Algebraic Geometry +1606.05164 Risk Management +1606.05334 +1606.06229 General Mathematics +1606.07735 Systems and Control +1606.08107 +1606.08711 Theory +1607.00465 +1607.01380 Plasma Physics +1607.02531 Machine Learning +1607.02940 Differential Geometry +1607.02979 Cosmology and Nongalactic Astrophysics +1607.03087 Category Theory +1607.03173 Statistics Theory +1607.03793 Combinatorics +1607.04523 Materials Science +1607.04642 Theory +1607.04820 Differential Geometry +1607.05882 Phenomenology +1607.06258 Distributed, Parallel, and Cluster Computing +1607.06280 Machine Learning +1607.07032 Computer Vision and Pattern Recognition +1607.07380 Commutative Algebra +1607.07393 Soft Condensed Matter +1607.07395 Learning +1607.07531 Solar and Stellar Astrophysics +1607.07533 +1607.07599 Group Theory +1607.07757 Probability +1607.07766 Hardware Architecture +1607.07768 Mesoscale and Nanoscale Physics +1607.07775 Differential Geometry +1607.07803 Functional Analysis +1607.07831 +1607.07843 Algebraic Geometry +1607.07862 Probability +1607.07868 Quantum Gases +1607.07871 +1607.07873 Theory +1607.07884 Disordered Systems and Neural Networks +1607.07887 +1607.07889 Classical Physics +1607.07890 Probability +1607.07891 Metric Geometry +1607.07892 Mathematical Software +1607.07894 Instrumentation and Methods for Astrophysics +1607.07895 Differential Geometry +1607.07896 Systems and Control +1607.07897 Soft Condensed Matter +1607.07901 Experiment +1607.07902 +1607.07903 Cryptography and Security +1607.07904 Information Retrieval +1607.07905 Optics +1607.07906 Data Structures and Algorithms +1607.07908 +1607.07911 Discrete Mathematics +1607.07913 Rings and Algebras +1607.07920 Information Theory +1607.07922 Earth and Planetary Astrophysics +1607.07924 Rings and Algebras +1607.07925 Methodology +1607.07926 Methodology +1607.07931 Computation and Language +1607.07932 Phenomenology +1607.07935 +1607.07936 +1607.07937 +1607.07939 Robotics +1607.07940 Fluid Dynamics +1607.07942 Artificial Intelligence +1607.07943 Mesoscale and Nanoscale Physics +1607.07947 Cryptography and Security +1607.07949 Differential Geometry +1607.07950 Computational Complexity +1607.07951 Number Theory +1607.07952 Optics +1607.07954 Optics +1607.07956 Computation and Language +1607.07958 Analysis of PDEs +1607.07966 Systems and Control +1607.07969 Instrumentation and Methods for Astrophysics +1607.07970 Populations and Evolution +1607.07972 Phenomenology +1607.07973 Biological Physics +1607.07975 Mesoscale and Nanoscale Physics +1607.07977 Exactly Solvable and Integrable Systems +1607.07979 Algebraic Geometry +1607.07980 Graphics +1607.07981 Statistics Theory +1607.07982 Exactly Solvable and Integrable Systems +1607.07983 Computer Vision and Pattern Recognition +1607.07984 Optics +1607.07986 Numerical Analysis +1607.07988 Computer Vision and Pattern Recognition +1607.07990 Materials Science +1607.07992 Materials Science +1607.07993 Materials Science +1607.07997 +1607.07998 Mesoscale and Nanoscale Physics +1607.08002 +1607.08003 Classical Analysis and ODEs +1607.08004 Experiment +1607.08009 Tissues and Organs +1607.08010 Phenomenology +1607.08012 Learning +1607.08013 Group Theory +1607.08015 Biological Physics +1607.08017 Materials Science +1607.08018 Combinatorics +1607.08019 Numerical Analysis +1607.08024 Functional Analysis +1607.08025 Information Theory +1607.08026 Networking and Internet Architecture +1607.08027 Classical Analysis and ODEs +1607.08029 Biological Physics +1607.08033 Methodology +1607.08034 +1607.08038 Artificial Intelligence +1607.08040 Computer Vision and Pattern Recognition +1607.08041 Data Structures and Algorithms +1607.08043 Phenomenology +1607.08044 Geometric Topology +1607.08046 Probability +1607.08053 Number Theory +1607.08056 Mesoscale and Nanoscale Physics +1607.08062 Biological Physics +1607.08063 Statistical Mechanics +1607.08071 Numerical Analysis +1607.08073 Artificial Intelligence +1607.08074 Artificial Intelligence +1607.08075 Artificial Intelligence +1607.08081 Algebraic Topology +1607.08083 Computational Engineering, Finance, and Science +1607.08085 Computer Vision and Pattern Recognition +1607.08087 Cryptography and Security +1607.08088 Phenomenology +1607.08090 Computers and Society +1607.08091 Computers and Society +1607.08097 Combinatorics +1607.08098 Databases +1607.08100 Artificial Intelligence +1607.08101 Networking and Internet Architecture +1607.08102 Performance +1607.08104 Complex Variables +1607.08105 Optics +1607.08106 Algebraic Geometry +1607.08108 Physics and Society +1607.08111 +1607.08112 Computer Vision and Pattern Recognition +1607.08114 +1607.08116 Optimization and Control +1607.08117 Geometric Topology +1607.08119 Robotics +1607.08123 Networking and Internet Architecture +1607.08124 Probability +1607.08127 Physics and Society +1607.08128 Computer Vision and Pattern Recognition +1607.08130 Combinatorics +1607.08131 Artificial Intelligence +1607.08132 Probability +1607.08135 Probability +1607.08136 +1607.08137 Algebraic Geometry +1607.08138 Networking and Internet Architecture +1607.08139 Systems and Control +1607.08140 +1607.08141 Applications +1607.08143 Theory +1607.08144 Algebraic Geometry +1607.08146 Strongly Correlated Electrons +1607.08148 Representation Theory +1607.08149 Cryptography and Security +1607.08151 Exactly Solvable and Integrable Systems +1607.08152 Combinatorics +1607.08153 Differential Geometry +1607.08155 +1607.08156 Statistics Theory +1607.08159 Numerical Analysis +1607.08162 Earth and Planetary Astrophysics +1607.08166 Cryptography and Security +1607.08167 Soft Condensed Matter +1607.08168 +1607.08169 Methodology +1607.08171 Theory +1607.08176 Data Structures and Algorithms +1607.08177 Strongly Correlated Electrons +1607.08179 Rings and Algebras +1607.08180 Materials Science +1607.08181 Artificial Intelligence +1607.08186 Cryptography and Security +1607.08187 +1607.08188 Computer Vision and Pattern Recognition +1607.08192 Computational Complexity +1607.08195 Combinatorics +1607.08196 Computer Vision and Pattern Recognition +1607.08198 Algebraic Geometry +1607.08202 Probability +1607.08203 Social and Information Networks +1607.08205 Applications +1607.08208 Cosmology and Nongalactic Astrophysics +1607.08209 Systems and Control +1607.08211 Methodology +1607.08212 Digital Libraries +1607.08214 General Finance +1607.08215 Optimization and Control +1607.08216 Optimization and Control +1607.08217 Optimization and Control +1607.08221 Computer Vision and Pattern Recognition +1607.08224 History and Philosophy of Physics +1607.08226 Formal Languages and Automata Theory +1607.08227 Networking and Internet Architecture +math/0505023 Geometric Topology +math/0505297 Geometric Topology +1006.5114 Statistical Mechanics +1103.0833 Algebraic Geometry +1107.4259 Algebraic Geometry +1201.5281 General Physics +1202.4047 Statistical Mechanics +1205.4282 Physics and Society +1207.2734 Information Theory +1209.5570 Statistical Mechanics +1210.2142 Combinatorics +1210.7710 +1301.7490 Mesoscale and Nanoscale Physics +1302.3685 Genomics +1302.5796 Differential Geometry +1303.0590 Mesoscale and Nanoscale Physics +1304.2832 Theory +1304.7608 Analysis of PDEs +1305.3347 Genomics +1306.0890 Differential Geometry +1306.5646 Cryptography and Security +1308.4308 Commutative Algebra +1309.0668 Fluid Dynamics +1309.3339 Methodology +1309.6664 History and Overview +1310.7903 Cryptography and Security +1312.1499 Representation Theory +1401.4156 Atomic Physics +1401.7514 Combinatorics +1402.3078 Combinatorics +1403.3369 Neural and Evolutionary Computing +1404.7487 Theory +1406.0051 Atmospheric and Oceanic Physics +1406.2686 Computational Physics +1406.3171 Probability +1407.3162 Fluid Dynamics +1407.4339 Combinatorics +1407.4729 Methodology +1407.7102 Logic +1407.7411 Materials Science +1407.7487 Fluid Dynamics +1408.0628 Probability +1408.0864 Superconductivity +1408.1382 Portfolio Management +1409.2434 Spectral Theory +1409.2808 Numerical Analysis +1409.8200 High Energy Astrophysical Phenomena +1410.2216 Algebraic Geometry +1410.4807 Mathematical Finance +1410.4894 +1410.5443 Strongly Correlated Electrons +1410.5965 Probability +1410.5966 Combinatorics +1410.7711 +1411.3675 Social and Information Networks +1411.3991 Theory +1412.0046 Mesoscale and Nanoscale Physics +1412.0064 Risk Management +1412.1183 Risk Management +1412.2348 Complex Variables +1412.4272 Theory +1412.7367 Physics and Society +1412.7564 Statistical Mechanics +1412.8231 Fluid Dynamics +1501.01388 Number Theory +1501.02041 +1501.03132 Chaotic Dynamics +1501.04612 Combinatorics +1501.04991 Experiment +1501.06640 Subcellular Processes +1502.01489 +1502.01592 Cosmology and Nongalactic Astrophysics +1502.03520 Learning +1502.05727 Group Theory +1503.03449 Information Theory +1503.05268 +1503.05769 Optimization and Control +1504.04048 Mesoscale and Nanoscale Physics +1504.04226 Superconductivity +1504.04312 Soft Condensed Matter +1504.05322 Combinatorics +1504.05400 Optimization and Control +1504.06145 Combinatorics +1504.06748 Combinatorics +1504.06805 Solar and Stellar Astrophysics +1505.00857 +1505.02259 +1505.07225 +1506.00187 Combinatorics +1506.02106 Computer Vision and Pattern Recognition +1506.04488 Computation and Language +1506.05753 Algebraic Geometry +1506.08129 Soft Condensed Matter +1506.08837 +1506.08909 Computation and Language +1506.08973 Algebraic Geometry +1507.00029 Information Theory +1507.00687 Numerical Analysis +1507.01499 Mesoscale and Nanoscale Physics +1507.01816 Applications +1507.06529 Physics and Society +1507.07119 Number Theory +1507.07873 Atmospheric and Oceanic Physics +1507.07968 Number Theory +1508.01280 Methodology +1508.01739 Functional Analysis +1508.02987 Theory +1508.04213 Lattice +1508.04386 Complex Variables +1508.04887 Computer Vision and Pattern Recognition +1508.05492 Logic +1508.05804 Artificial Intelligence +1508.07111 +1508.07191 Classical Analysis and ODEs +1509.01262 +1509.02279 Analysis of PDEs +1509.02323 Earth and Planetary Astrophysics +1509.02452 Phenomenology +1509.02776 Fluid Dynamics +1509.02777 Fluid Dynamics +1509.03945 Theory +1509.04543 Quantum Gases +1509.05061 Mesoscale and Nanoscale Physics +1509.05104 Commutative Algebra +1509.06543 +1509.06743 Astrophysics of Galaxies +1509.07444 Chemical Physics +1509.07764 Differential Geometry +1509.08526 Atmospheric and Oceanic Physics +1510.00440 Emerging Technologies +1510.00859 Probability +1510.00860 Probability +1510.01265 Soft Condensed Matter +1510.03133 Group Theory +1510.03145 Distributed, Parallel, and Cluster Computing +1510.06290 Atmospheric and Oceanic Physics +1510.06326 Physics and Society +1510.06480 Information Theory +1510.06793 Materials Science +1510.07252 Emerging Technologies +1510.07368 Phenomenology +1510.08056 Theory +1510.08158 Analysis of PDEs +1511.00230 Functional Analysis +1511.00622 Combinatorics +1511.02387 Combinatorics +1511.02677 Representation Theory +1511.03126 Analysis of PDEs +1511.03910 +1511.03927 Distributed, Parallel, and Cluster Computing +1511.06457 Computer Vision and Pattern Recognition +1511.06653 Computer Vision and Pattern Recognition +1511.06798 Computation and Language +1511.07709 +1511.08544 Phenomenology +1511.08734 Combinatorics +1511.09185 Classical Physics +1511.09405 Formal Languages and Automata Theory +1512.00025 Theory +1512.00060 Logic +1512.00465 Strongly Correlated Electrons +1512.01483 Combinatorics +1512.02610 General Topology +1512.03594 Statistical Mechanics +1512.04123 Combinatorics +1512.06070 General Topology +1512.06093 +1512.07122 Functional Analysis +1512.08290 Phenomenology +1512.08382 Number Theory +1512.09158 Group Theory +1601.00259 Phenomenology +1601.01695 Strongly Correlated Electrons +1601.02439 Instrumentation and Detectors +1601.02616 Phenomenology +1601.02797 +1601.03226 +1601.03727 Plasma Physics +1601.04536 General Physics +1601.04798 Computer Vision and Pattern Recognition +1601.06229 Information Theory +1601.07204 Superconductivity +1601.07629 Optimization and Control +1601.08170 Statistical Mechanics +1602.00500 Quantum Gases +1602.00631 Physics and Society +1602.01110 Phenomenology +1602.01491 Mesoscale and Nanoscale Physics +1602.01707 Classical Analysis and ODEs +1602.01939 Differential Geometry +1602.02342 Number Theory +1602.03223 +1602.03366 Classical Analysis and ODEs +1602.03535 Theory +1602.03812 +1602.06947 Solar and Stellar Astrophysics +1602.07260 Algebraic Topology +1602.07765 Optics +1602.07909 Phenomenology +1603.00602 Theory +1603.01305 Theory +1603.01624 +1603.02739 Chemical Physics +1603.03570 +1603.03810 Materials Science +1603.03904 Cosmology and Nongalactic Astrophysics +1603.04331 Strongly Correlated Electrons +1603.04349 Phenomenology +1603.04619 Computer Vision and Pattern Recognition +1603.04629 Complex Variables +1603.05027 Computer Vision and Pattern Recognition +1603.05471 +1603.06413 Optimization and Control +1603.06693 Superconductivity +1603.07410 Databases +1603.07679 Theory +1603.07693 Networking and Internet Architecture +1603.07721 Astrophysics of Galaxies +1603.07894 +1603.08006 High Energy Astrophysical Phenomena +1603.08693 Algebraic Geometry +1603.09156 Combinatorics +1604.00484 Representation Theory +1604.01842 Astrophysics of Galaxies +1604.02626 Mesoscale and Nanoscale Physics +1604.03487 Cosmology and Nongalactic Astrophysics +1604.03662 +1604.03920 Experiment +1604.04160 Materials Science +1604.04977 Optics +1604.05101 Information Theory +1604.06514 +1604.06556 Instrumentation and Detectors +1604.06770 Databases +1604.06942 Statistical Mechanics +1604.07565 Chemical Physics +1604.07652 +1604.08393 +1605.00259 Atomic Physics +1605.01014 Computer Vision and Pattern Recognition +1605.01223 Materials Science +1605.01225 +1605.01456 Theory +1605.02076 Astrophysics of Galaxies +1605.02629 High Energy Astrophysical Phenomena +1605.02634 Number Theory +1605.03318 Materials Science +1605.04025 Cryptography and Security +1605.05034 Computer Vision and Pattern Recognition +1605.05046 +1605.05388 Computational Physics +1605.05414 Computation and Language +1605.05453 Earth and Planetary Astrophysics +1605.05822 Physics and Society +1605.06113 High Energy Astrophysical Phenomena +1605.06131 Theory +1605.07542 Statistical Mechanics +1605.07809 Sound +1605.07938 Earth and Planetary Astrophysics +1605.08480 Mesoscale and Nanoscale Physics +1605.09013 +1605.09270 +1606.00130 Mesoscale and Nanoscale Physics +1606.00852 +1606.01332 Analysis of PDEs +1606.01673 Algebraic Topology +1606.02265 Experiment +1606.02343 Complex Variables +1606.02603 Robotics +1606.02950 Theory +1606.02952 +1606.03614 Optics +1606.03921 Classical Physics +1606.04199 Computation and Language +1606.04245 Strongly Correlated Electrons +1606.04983 Cosmology and Nongalactic Astrophysics +1606.05632 Theory +1606.05656 Computation +1606.05767 Artificial Intelligence +1606.06083 Artificial Intelligence +1606.06565 Artificial Intelligence +1606.06684 Classical Analysis and ODEs +1606.07703 Classical Analysis and ODEs +1606.08373 Computation +1606.08574 Mesoscale and Nanoscale Physics +1606.08969 Populations and Evolution +1606.09041 Differential Geometry +1606.09241 +1606.09615 Astrophysics of Galaxies +1606.09622 Optics +1607.00215 Machine Learning +1607.00642 Materials Science +1607.00720 Social and Information Networks +1607.01123 Statistical Mechanics +1607.01419 Robotics +1607.01795 Solar and Stellar Astrophysics +1607.01843 Complex Variables +1607.02607 Geophysics +1607.03070 Neural and Evolutionary Computing +1607.03135 Symplectic Geometry +1607.03348 Combinatorics +1607.03789 Mesoscale and Nanoscale Physics +1607.04115 Combinatorics +1607.04146 Materials Science +1607.04400 +1607.04404 Optics +1607.04703 Combinatorics +1607.04815 Information Theory +1607.04907 Robotics +1607.05088 Information Retrieval +1607.05185 Information Theory +1607.05371 Superconductivity +1607.05609 Programming Languages +1607.05637 +1607.05696 Fluid Dynamics +1607.05776 Combinatorics +1607.06022 Networking and Internet Architecture +1607.06023 Networking and Internet Architecture +1607.06071 Classical Analysis and ODEs +1607.06221 Computation and Language +1607.06341 Physics and Society +1607.06400 Instrumentation and Methods for Astrophysics +1607.06535 +1607.06554 Optimization and Control +1607.06557 Optimization and Control +1607.06666 +1607.06669 High Energy Astrophysical Phenomena +1607.06720 Tissues and Organs +1607.06808 Combinatorics +1607.06809 Combinatorics +1607.06813 Phenomenology +1607.06820 Astrophysics of Galaxies +1607.06822 Mesoscale and Nanoscale Physics +1607.06833 Information Theory +1607.06834 Computational Engineering, Finance, and Science +1607.06835 Other Quantitative Biology +1607.06836 Biological Physics +1607.06837 Information Theory +1607.06839 Social and Information Networks +1607.06842 Superconductivity +1607.06843 +1607.06844 Theory +1607.06846 Analysis of PDEs +1607.06847 Computer Science and Game Theory +1607.06849 Methodology +1607.06850 +1607.06852 Computation and Language +1607.06853 Phenomenology +1607.06855 Mesoscale and Nanoscale Physics +1607.06857 Software Engineering +1607.06862 Analysis of PDEs +1607.06864 Discrete Mathematics +1607.06874 Earth and Planetary Astrophysics +1607.06876 Instrumentation and Detectors +1607.06879 Information Theory +1607.06880 Other Condensed Matter +1607.06881 Analysis of PDEs +1607.06884 Information Retrieval +1607.06885 Soft Condensed Matter +1607.06887 Information Theory +1607.06889 Materials Science +1607.06890 Systems and Control +1607.06894 Statistical Mechanics +1607.06896 Human-Computer Interaction +1607.06897 Numerical Analysis +1607.06899 Numerical Analysis +1607.06901 Rings and Algebras +1607.06902 Computer Vision and Pattern Recognition +1607.06907 Algebraic Geometry +1607.06908 Materials Science +1607.06909 Cellular Automata and Lattice Gases +1607.06910 Data Analysis, Statistics and Probability +1607.06911 Discrete Mathematics +1607.06913 Classical Analysis and ODEs +1607.06914 Information Theory +1607.06915 +1607.06916 Cosmology and Nongalactic Astrophysics +1607.06917 Mesoscale and Nanoscale Physics +1607.06918 Differential Geometry +1607.06924 Analysis of PDEs +1607.06926 Quantum Algebra +1607.06927 Programming Languages +1607.06928 Atomic and Molecular Clusters +1607.06929 Statistics Theory +1607.06930 Solar and Stellar Astrophysics +1607.06931 Geometric Topology +1607.06933 +1607.06934 Phenomenology +1607.06935 Algebraic Geometry +1607.06936 Combinatorics +1607.06938 Metric Geometry +1607.06941 +1607.06942 Algebraic Topology +1607.06947 Complex Variables +1607.06950 +1607.06952 Computation and Language +1607.06953 Analysis of PDEs +1607.06959 Disordered Systems and Neural Networks +1607.06960 Classical Analysis and ODEs +1607.06962 Combinatorics +1607.06965 Systems and Control +1607.06967 +1607.06973 Computer Vision and Pattern Recognition +1607.06977 Rings and Algebras +1607.06978 Combinatorics +1607.06979 Human-Computer Interaction +1607.06980 Neurons and Cognition +1607.06981 High Energy Astrophysical Phenomena +1607.06982 Combinatorics +1607.06983 Exactly Solvable and Integrable Systems +1607.06984 Phenomenology +1607.06985 Combinatorics +1607.06988 Learning +1607.06989 Differential Geometry +1607.06992 Cryptography and Security +1607.06993 Statistics Theory +1607.06994 Classical Analysis and ODEs +1607.06999 Computer Vision and Pattern Recognition +1607.07000 Probability +1607.07001 Solar and Stellar Astrophysics +1607.07002 Methodology +1607.07003 Information Theory +1607.07005 Quantum Gases +1607.07006 Computer Vision and Pattern Recognition +1607.07010 Mesoscale and Nanoscale Physics +1607.07011 Number Theory +1607.07013 +1607.07014 Soft Condensed Matter +1607.07015 Information Theory +1607.07018 Differential Geometry +1607.07020 +1607.07021 Networking and Internet Architecture +1607.07023 Representation Theory +1607.07024 Information Theory +1607.07027 Artificial Intelligence +1607.07028 Methodology +1607.07030 Logic +1607.07031 Group Theory +1607.07033 Logic +1607.07034 Learning +1607.07035 Algebraic Geometry +1607.07036 Combinatorics +1607.07037 Earth and Planetary Astrophysics +1607.07038 Data Analysis, Statistics and Probability +1607.07042 Phenomenology +1607.07045 Quantum Gases +1607.07047 Fluid Dynamics +1607.07050 Number Theory +1607.07051 Analysis of PDEs +1607.07052 Analysis of PDEs +1607.07053 Theory +1607.07054 Algebraic Topology +1607.07055 Group Theory +1607.07056 Phenomenology +1607.07061 General Topology +1607.07062 Theory +1607.07063 Probability +1607.07069 Combinatorics +1607.07071 +1607.07073 Data Structures and Algorithms +1607.07076 Pattern Formation and Solitons +1607.07077 Theory +1607.07078 Neural and Evolutionary Computing +1607.07079 Functional Analysis +1607.07080 Optimization and Control +1607.07081 Quantum Algebra +1607.07082 Discrete Mathematics +1607.07083 Methodology +1607.07084 Combinatorics +1607.07085 Exactly Solvable and Integrable Systems +1607.07087 Information Theory +1607.07088 Classical Analysis and ODEs +1607.07091 Mesoscale and Nanoscale Physics +1607.07092 Phenomenology +1607.07096 Numerical Analysis +1607.07097 Statistical Mechanics +1607.07098 Numerical Analysis +1607.07099 Optimization and Control +1607.07101 Materials Science +1607.07102 Analysis of PDEs +1607.07104 Numerical Analysis +1607.07105 Computer Science and Game Theory +1607.07108 Pricing of Securities +1607.07109 Analysis of PDEs +1607.07110 Learning +1607.07112 Algebraic Geometry +1607.07113 +1607.07114 Algebraic Geometry +1607.07117 Rings and Algebras +1607.07119 +1607.07120 Mesoscale and Nanoscale Physics +1607.07128 Numerical Analysis +1607.07130 Computational Complexity +1607.07131 Superconductivity +1607.07132 Combinatorics +1607.07136 Analysis of PDEs +1607.07138 Theory +1607.07141 Metric Geometry +1607.07143 K-Theory and Homology +1607.07144 Geometric Topology +1607.07145 Superconductivity +1607.07153 Differential Geometry +1607.07155 Computer Vision and Pattern Recognition +1607.07156 Group Theory +1607.07157 Combinatorics +1607.07158 Information Theory +1607.07159 Analysis of PDEs +1607.07160 Computer Vision and Pattern Recognition +1607.07162 Atomic and Molecular Clusters +1607.07164 Number Theory +1607.07165 Dynamical Systems +1607.07171 Information Theory +1607.07174 Combinatorics +1607.07175 Combinatorics +1607.07178 Adaptation and Self-Organizing Systems +1607.07182 Probability +1607.07185 Geometric Topology +1607.07186 Learning +1607.07187 Information Theory +1607.07188 Logic +1607.07193 Algebraic Geometry +1607.07194 Analysis of PDEs +1607.07196 Subcellular Processes +1607.07197 Probability +1607.07199 Differential Geometry +1607.07202 Differential Geometry +1607.07203 Methodology +1607.07204 Combinatorics +1607.07207 Algebraic Geometry +1607.07208 Exactly Solvable and Integrable Systems +1607.07209 Optimization and Control +1607.07211 +1607.07212 Number Theory +1607.07213 Complex Variables +1607.07216 Computer Vision and Pattern Recognition +1607.07217 +1607.07219 Analysis of PDEs +1607.07220 Computer Vision and Pattern Recognition +1607.07221 Numerical Analysis +1607.07226 Instrumentation and Methods for Astrophysics +1607.07229 Functional Analysis +1607.07233 Optics +1607.07234 Information Theory +1607.07238 Probability +1607.07239 Materials Science +1607.07241 Commutative Algebra +1607.07243 Social and Information Networks +1607.07244 Molecular Networks +1607.07246 Earth and Planetary Astrophysics +1607.07251 Soft Condensed Matter +1607.07252 Information Theory +1607.07259 Optimization and Control +1607.07260 Statistics Theory +1607.07262 Computer Vision and Pattern Recognition +1607.07265 Number Theory +1607.07267 Optimization and Control +1607.07270 Learning +1607.07271 Phenomenology +1607.07272 General Mathematics +1607.07274 Mesoscale and Nanoscale Physics +1607.07278 Other Quantitative Biology +1607.07279 Geophysics +1607.07282 Analysis of PDEs +1607.07283 Classical Analysis and ODEs +1607.07284 Computers and Society +1607.07287 Statistical Mechanics +1607.07288 Artificial Intelligence +1607.07290 Soft Condensed Matter +1607.07292 Instrumentation and Detectors +1607.07293 Phenomenology +1607.07295 Computer Vision and Pattern Recognition +1607.07298 Systems and Control +1607.07300 Mesoscale and Nanoscale Physics +1607.07303 Optimization and Control +1607.07304 Computer Vision and Pattern Recognition +1607.07305 Classical Analysis and ODEs +1607.07306 Computer Science and Game Theory +1607.07311 Artificial Intelligence +1607.07313 Combinatorics +1607.07314 +1607.07318 Phenomenology +1607.07319 Numerical Analysis +1607.07324 Phenomenology +1607.07326 Information Retrieval +1607.07329 Optimization and Control +1607.07330 Social and Information Networks +1607.07342 Combinatorics +1607.07343 Statistics Theory +1607.07344 Functional Analysis +1607.07348 Distributed, Parallel, and Cluster Computing +1607.07350 Optimization and Control +1607.07353 +1607.07354 Classical Analysis and ODEs +1607.07356 Mesoscale and Nanoscale Physics +1607.07358 Plasma Physics +1607.07364 Computational Geometry +1607.07368 Information Theory +1607.07373 Physics and Society +1607.07374 Fluid Dynamics +1607.07375 +1607.07378 Computational Geometry +1607.07383 Dynamical Systems +1607.07384 Social and Information Networks +1607.07385 Classical Physics +1607.07386 Number Theory +1607.07387 Optimization and Control +1607.07388 History and Philosophy of Physics +1607.07389 Soft Condensed Matter +1607.07390 Phenomenology +1607.07391 Materials Science +1607.07392 Probability +1607.07396 +1607.07398 Economics +1607.07399 Instrumentation and Methods for Astrophysics +1607.07402 Systems and Control +1607.07407 Category Theory +1607.07409 Numerical Analysis +1607.07411 Combinatorics +1607.07415 Functional Analysis +1607.07416 Analysis of PDEs +1607.07417 Superconductivity +1607.07422 Theory +1607.07426 Group Theory +1607.07427 Computer Vision and Pattern Recognition +1607.07430 Computational Physics +1606.02473 Materials Science +1608.04062 Learning +1609.00506 Applications +1609.00538 Instrumentation and Methods for Astrophysics +1609.00689 Information Retrieval +1609.00927 Analysis of PDEs +1609.01500 Mesoscale and Nanoscale Physics +1609.02183 Solar and Stellar Astrophysics +1609.02690 Soft Condensed Matter +1609.03176 Information Retrieval +1609.03605 Computer Vision and Pattern Recognition +1609.04060 Computers and Society +1609.04073 Optics +1609.04477 Combinatorics +1609.05520 Optimization and Control +1609.05802 Algebraic Topology +1609.06007 Solar and Stellar Astrophysics +1609.06049 Computation and Language +1609.07387 Statistical Mechanics +1609.07584 Mesoscale and Nanoscale Physics +1609.08391 Machine Learning +1609.08948 Probability +0706.1512 Dynamical Systems +0711.1180 Dynamical Systems +1004.4941 Algebraic Topology +1103.5657 Combinatorics +1103.5849 Combinatorics +1108.1102 Combinatorics +1109.2539 Probability +1110.2362 Optics +1111.2413 Combinatorics +1112.0675 Mesoscale and Nanoscale Physics +1202.4778 Algebraic Geometry +1203.0498 Dynamical Systems +1205.6222 Differential Geometry +1206.6939 Algebraic Geometry +1208.5169 Chemical Physics +1301.1836 +1301.2002 Analysis of PDEs +1303.2480 Algebraic Geometry +1307.2192 Algebraic Geometry +1307.2645 Dynamical Systems +1308.1490 Algebraic Geometry +1309.0191 Algebraic Topology +1309.5010 K-Theory and Homology +1310.2526 Differential Geometry +1311.7001 Combinatorics +1312.0831 +1401.7009 +1402.6112 Differential Geometry +1403.4168 Functional Analysis +1403.6288 Combinatorics +1404.4442 Combinatorics +1404.6037 Logic in Computer Science +1406.2871 Information Theory +1407.5374 Discrete Mathematics +1408.2049 Learning +1408.2390 Fluid Dynamics +1409.3049 Phenomenology +1409.4360 Chaotic Dynamics +1410.7908 Differential Geometry +1412.2099 Dynamical Systems +1412.7854 Computer Vision and Pattern Recognition +1501.00049 Methodology +1501.02348 Quantum Gases +1502.04727 Information Theory +1502.06029 Information Theory +1502.07823 Computer Science and Game Theory +1503.00694 Computer Science and Game Theory +1504.02285 Cosmology and Nongalactic Astrophysics +1504.02606 Phenomenology +1504.04173 +1504.04301 Algebraic Geometry +1504.06814 Biological Physics +1505.07857 Optimization and Control +1506.01257 Adaptation and Self-Organizing Systems +1506.02291 Numerical Analysis +1506.03741 Number Theory +1506.08055 +1506.08478 Information Theory +1506.08665 Numerical Analysis +1507.00238 Metric Geometry +1507.00768 Optimization and Control +1507.06385 +1507.07265 Data Analysis, Statistics and Probability +1507.08775 +1508.00606 Spectral Theory +1508.00714 Classical Analysis and ODEs +1508.02741 Quantum Algebra +1508.05869 Numerical Analysis +1508.07028 Metric Geometry +1509.02045 Molecular Networks +1509.02195 Systems and Control +1509.03257 Algebraic Geometry +1509.05715 Optimization and Control +1509.08870 Computation +1510.01198 +1510.01466 Number Theory +1510.01528 Number Theory +1510.03312 Soft Condensed Matter +1510.03382 Rings and Algebras +1510.04728 Information Theory +1510.05261 Statistics Theory +1510.09119 Distributed, Parallel, and Cluster Computing +1510.09188 Probability +1511.00116 Probability +1511.01952 +1511.02633 Information Theory +1511.04906 Learning +1511.05120 Probability +1511.05684 Differential Geometry +1511.06684 Mesoscale and Nanoscale Physics +1511.06737 Phenomenology +1511.09264 Theory +1512.00507 Combinatorics +1512.00784 Mesoscale and Nanoscale Physics +1512.01308 Operator Algebras +1512.01710 Classical Analysis and ODEs +1512.03886 Analysis of PDEs +1512.04093 Methodology +1512.04199 Lattice +1512.05016 Materials Science +1512.08796 Phenomenology +1512.09266 Phenomenology +1601.00175 Portfolio Management +1601.01151 Group Theory +1601.01978 Statistical Mechanics +1601.02925 Functional Analysis +1601.05257 Systems and Control +1602.01581 Computer Science and Game Theory +1602.03549 Disordered Systems and Neural Networks +1602.04205 Materials Science +1602.04642 Dynamical Systems +1602.07546 +1602.08586 +1603.02216 Differential Geometry +1603.02272 High Energy Astrophysical Phenomena +1603.02602 Statistical Mechanics +1603.04295 +1603.04398 Mesoscale and Nanoscale Physics +1603.04720 +1603.06116 Probability +1603.06194 High Energy Astrophysical Phenomena +1603.06416 Dynamical Systems +1603.07166 Theory +1603.07271 Group Theory +1604.00522 Mesoscale and Nanoscale Physics +1604.00529 +1604.01440 Theory +1604.01640 Experiment +1604.02834 Theory +1604.04372 Algebraic Geometry +1604.04428 Learning +1604.05096 Computer Vision and Pattern Recognition +1604.05471 Artificial Intelligence +1604.07114 Strongly Correlated Electrons +1604.07128 Discrete Mathematics +1604.08094 +1605.00037 Phenomenology +1605.00068 Experiment +1605.00512 +1605.00565 Computational Complexity +1605.01042 Computer Vision and Pattern Recognition +1605.01529 Statistical Mechanics +1605.01717 Data Structures and Algorithms +1605.03607 +1605.04906 Astrophysics of Galaxies +1605.04926 High Energy Astrophysical Phenomena +1605.08007 Mesoscale and Nanoscale Physics +1605.08027 +1605.08137 Mesoscale and Nanoscale Physics +1605.08605 Probability +1605.08994 Information Theory +1606.00304 Statistics Theory +1606.02121 Rings and Algebras +1606.04846 +1606.04957 Phenomenology +1606.04984 Software Engineering +1606.05131 Metric Geometry +1606.05262 Computer Vision and Pattern Recognition +1606.06815 Astrophysics of Galaxies +1606.07203 Materials Science +1606.07656 Mesoscale and Nanoscale Physics +1606.08265 Phenomenology +1606.08581 Combinatorics +1606.08733 Computation and Language +1606.09381 Strongly Correlated Electrons +1607.00506 Analysis of PDEs +1607.00710 Machine Learning +1607.01061 Strongly Correlated Electrons +1607.01074 Cosmology and Nongalactic Astrophysics +1607.01088 Numerical Analysis +1607.01353 Strongly Correlated Electrons +1607.02501 Computation and Language +1607.02576 Computation and Language +1607.02706 Atomic Physics +1607.02834 Learning +1607.03222 Computer Vision and Pattern Recognition +1607.03297 Number Theory +1607.03346 Mesoscale and Nanoscale Physics +1607.03422 Dynamical Systems +1607.03479 Systems and Control +1607.03483 Social and Information Networks +1607.03568 Materials Science +1607.03569 Statistics Theory +1607.03828 History and Philosophy of Physics +1607.03868 Analysis of PDEs +1607.03882 Physics Education +1607.03895 Computation and Language +1607.03897 Theory +1607.03898 High Energy Astrophysical Phenomena +1607.03902 Quantum Gases +1607.03916 Theory +1607.03920 +1607.03921 Quantum Gases +1607.03922 Human-Computer Interaction +1607.03923 +1607.03926 Soft Condensed Matter +1607.03929 Astrophysics of Galaxies +1607.03935 +1607.03943 Numerical Analysis +1607.03944 Analysis of PDEs +1607.03947 Exactly Solvable and Integrable Systems +1607.03951 Mesoscale and Nanoscale Physics +1607.03954 Methodology +1607.03955 Genomics +1607.03958 Optimization and Control +1607.03964 Optics +1607.03967 Learning +1607.03969 Numerical Analysis +1607.03971 Other Computer Science +1607.03972 Commutative Algebra +1607.03975 Machine Learning +1607.03976 +1607.03978 +1607.03979 Artificial Intelligence +1607.03980 Earth and Planetary Astrophysics +1607.03981 Combinatorics +1607.03983 Quantum Gases +1607.03986 +1607.03990 Learning +1607.03995 Optimization and Control +1607.03996 Analysis of PDEs +1607.03997 Number Theory +1607.03998 Probability +1607.04001 Combinatorics +1607.04002 Data Structures and Algorithms +1607.04008 Computational Physics +1607.04010 Logic +1607.04012 Numerical Analysis +1607.04014 Analysis of PDEs +1607.04017 Numerical Analysis +1607.04019 +1607.04021 Analysis of PDEs +1607.04022 +1607.04023 Phenomenology +1607.04025 Formal Languages and Automata Theory +1607.04026 Classical Analysis and ODEs +1607.04028 Analysis of PDEs +1607.04031 Formal Languages and Automata Theory +1607.04032 Computer Vision and Pattern Recognition +1607.04033 Logic in Computer Science +1607.04034 Representation Theory +1607.04035 High Energy Astrophysical Phenomena +1607.04038 Superconductivity +1607.04039 Methodology +1607.04044 Number Theory +1607.04046 Phenomenology +1607.04048 Number Theory +1607.04049 Lattice +1607.04055 Logic +1607.04057 Materials Science +1607.04060 Atomic Physics +1607.04066 Rings and Algebras +1607.04069 Plasma Physics +1607.04072 Information Theory +1607.04074 Combinatorics +1607.04075 Probability +1607.04076 Commutative Algebra +1607.04077 Distributed, Parallel, and Cluster Computing +1607.04078 Differential Geometry +1607.04080 Classical Analysis and ODEs +1607.04082 Differential Geometry +1607.04083 Combinatorics +1607.04084 Probability +1607.04086 Dynamical Systems +1607.04087 Exactly Solvable and Integrable Systems +1607.04088 Group Theory +1607.04092 Probability +1607.04093 Algebraic Topology +1607.04096 Algebraic Geometry +1607.04100 Risk Management +1607.04101 Analysis of PDEs +1607.04102 Probability +1607.04105 General Topology +1607.04106 Instrumentation and Methods for Astrophysics +1607.04108 Optimization and Control +1607.04110 Computation and Language +1607.04111 Differential Geometry +1607.04113 Algebraic Topology +1607.04116 +1607.04118 +1607.04123 +1607.04125 Digital Libraries +1607.04128 Logic in Computer Science +1607.04129 Theory +1607.04130 Group Theory +1607.04131 Rings and Algebras +1607.04132 Theory +1607.04134 Differential Geometry +1607.04136 General Finance +1607.04138 Robotics +1607.04139 Fluid Dynamics +1607.04142 Fluid Dynamics +1607.04143 Information Theory +1607.04144 Combinatorics +1607.04149 Computer Science and Game Theory +1607.04152 Quantitative Methods +1607.04153 Optimization and Control +1607.04154 +1607.04155 Economics +1607.04156 Logic in Computer Science +1607.04157 Applications +1607.04158 Populations and Evolution +1607.04163 Spectral Theory +1607.04165 Statistical Mechanics +1607.04166 Numerical Analysis +1607.04169 Neurons and Cognition +1607.04170 Number Theory +1607.04171 Spectral Theory +1607.04174 Computer Vision and Pattern Recognition +1607.04175 Analysis of PDEs +1607.04183 Probability +1607.04184 Optimization and Control +1607.04185 High Energy Astrophysical Phenomena +1607.04186 Artificial Intelligence +1607.04193 Astrophysics of Galaxies +1607.04194 Analysis of PDEs +1607.04195 Theory +1607.04197 Programming Languages +1607.04198 Optics +1607.04200 Data Structures and Algorithms +1607.04201 Probability +1607.04202 +1607.04204 Methodology +1607.04206 Information Theory +1607.04209 Other Statistics +1607.04215 Applications +1607.04216 Experiment +1607.04219 Numerical Analysis +1607.04220 Computational Complexity +1607.04222 Theory +1607.04223 Dynamical Systems +1607.04224 Plasma Physics +1607.04228 Learning +1607.04232 Logic +1607.04235 Phenomenology +1607.04238 Strongly Correlated Electrons +1607.04240 Logic +1607.04243 Robotics +1607.04244 Geometric Topology +1607.04245 Mathematical Software +1607.04246 Algebraic Geometry +1607.04249 +1607.04250 +1607.04252 +1607.04253 Theory +1607.04254 Numerical Analysis +1607.04255 Systems and Control +1607.04257 Numerical Analysis +1607.04259 Differential Geometry +1607.04261 Materials Science +1607.04262 High Energy Astrophysical Phenomena +1607.04263 Social and Information Networks +1607.04267 Neural and Evolutionary Computing +1107.5499 Group Theory +1208.2153 Solar and Stellar Astrophysics +1208.6109 Computation and Language +1209.1087 Algebraic Topology +1210.2870 Solar and Stellar Astrophysics +1211.4397 Chemical Physics +1303.1126 Solar and Stellar Astrophysics +1306.5388 Group Theory +1307.6381 Complex Variables +1308.5656 Operator Algebras +1311.5708 High Energy Astrophysical Phenomena +1312.5201 Symplectic Geometry +1401.4520 Spectral Theory +1401.6788 Quantum Algebra +1403.1020 Algebraic Geometry +1405.0668 Strongly Correlated Electrons +1405.1012 Logic +1406.3428 Dynamical Systems +1406.4233 Solar and Stellar Astrophysics +1407.4675 Metric Geometry +1408.4934 Number Theory +1408.7033 Data Structures and Algorithms +1409.5335 Quantum Algebra +1409.6237 Strongly Correlated Electrons +1409.8180 Theory +1410.2174 Statistics Theory +1410.5293 Number Theory +1410.6203 Number Theory +1411.0815 Atmospheric and Oceanic Physics +1411.1477 Combinatorics +1411.2747 Metric Geometry +1412.1499 Differential Geometry +1412.1912 Probability +1501.04038 Databases +1502.02070 Combinatorics +1502.04178 Probability +1503.04401 Chemical Physics +1503.05557 Chemical Physics +1503.06496 Logic +1504.04696 Statistics Theory +1504.04853 Commutative Algebra +1505.02279 Number Theory +1505.02364 +1505.03591 Atomic Physics +1505.07040 Combinatorics +1505.07498 Numerical Analysis +1506.00345 Geometric Topology +1506.02157 Machine Learning +1506.03877 Learning +1506.05061 Complex Variables +1506.08301 Computer Vision and Pattern Recognition +1507.01200 Strongly Correlated Electrons +1507.01704 Complex Variables +1507.02740 Commutative Algebra +1507.03429 Statistics Theory +1507.04387 Pricing of Securities +1507.04404 Optimization and Control +1507.04962 Phenomenology +1507.04994 Probability +1507.07128 Functional Analysis +1507.08367 Populations and Evolution +1508.00393 Quantum Gases +1508.02886 +1508.05036 Superconductivity +1508.05059 Functional Analysis +1508.06250 Algebraic Geometry +1508.06656 Information Theory +1508.07672 +1508.07762 Operator Algebras +1509.01627 Number Theory +1509.04159 General Physics +1509.04341 +1509.05594 +1509.07022 Optimization and Control +1509.08598 Algebraic Geometry +1510.04142 Numerical Analysis +1510.04314 Cosmology and Nongalactic Astrophysics +1510.04718 Solar and Stellar Astrophysics +1510.05054 +1510.05056 Classical Analysis and ODEs +1510.05311 Information Theory +1510.05574 Soft Condensed Matter +1510.06508 Optics +1510.06995 +1510.08112 Mesoscale and Nanoscale Physics +1510.08498 Logic in Computer Science +1510.09127 Optimization and Control +1511.00418 Information Theory +1511.01714 Physics Education +1511.02674 Computer Vision and Pattern Recognition +1511.03601 Adaptation and Self-Organizing Systems +1511.03796 Methodology +1511.05057 Spectral Theory +1511.05644 Learning +1511.05857 Phenomenology +1511.06143 Analysis of PDEs +1511.06150 Theory +1511.06335 Learning +1512.01948 Superconductivity +1512.02608 Solar and Stellar Astrophysics +1512.02820 Phenomenology +1512.03724 Classical Analysis and ODEs +1512.04193 +1512.05268 +1512.06635 Databases +1512.07997 Superconductivity +1512.08273 Strongly Correlated Electrons +1601.00927 Phenomenology +1601.01645 Human-Computer Interaction +1601.02883 Theory +1601.03954 Number Theory +1601.04592 +1601.07880 Phenomenology +1602.00287 Machine Learning +1602.01483 Optimization and Control +1602.01732 Networking and Internet Architecture +1602.02166 Theory +1602.02218 Learning +1602.03001 Learning +1602.03004 Statistical Mechanics +1602.03273 Distributed, Parallel, and Cluster Computing +1602.06175 Materials Science +1602.06693 Machine Learning +1602.06992 Soft Condensed Matter +1602.07155 Statistical Mechanics +1603.00250 Mesoscale and Nanoscale Physics +1603.00553 Phenomenology +1603.00580 Computational Geometry +1603.00707 Cryptography and Security +1603.00721 Materials Science +1603.02274 Mesoscale and Nanoscale Physics +1603.04186 Computer Vision and Pattern Recognition +1603.05106 Machine Learning +1603.05146 Phenomenology +1603.05181 Physics and Society +1603.05207 Superconductivity +1603.05401 Algebraic Geometry +1603.05918 +1603.06671 Theory +1603.07142 Instrumentation and Methods for Astrophysics +1603.08017 Optics +1603.08679 Phenomenology +1603.09729 Theory +1604.00359 Artificial Intelligence +1604.00755 Operator Algebras +1604.01173 Number Theory +1604.02432 Optimization and Control +1604.04147 Optics +1604.04198 Machine Learning +1604.04650 Statistical Mechanics +1604.05734 Statistics Theory +1604.05921 Computer Vision and Pattern Recognition +1604.06479 Earth and Planetary Astrophysics +1604.07289 Rings and Algebras +1605.01662 +1605.01971 Optimization and Control +1605.02710 Social and Information Networks +1605.03245 Theory +1605.04276 Group Theory +1605.04682 Distributed, Parallel, and Cluster Computing +1605.04687 Computers and Society +1605.04693 Computers and Society +1605.04695 Computers and Society +1605.04714 Computers and Society +1605.04717 Computers and Society +1605.04725 Computers and Society +1605.04909 Cosmology and Nongalactic Astrophysics +1605.05102 Data Structures and Algorithms +1605.05443 Combinatorics +1605.05854 +1605.05887 Cryptography and Security +1605.06252 Systems and Control +1605.06310 General Physics +1605.06359 Machine Learning +1605.06518 +1605.06638 Combinatorics +1605.06844 Distributed, Parallel, and Cluster Computing +1605.06892 Optimization and Control +1605.07151 Probability +1605.07162 Learning +1605.07273 Combinatorics +1605.07460 Mesoscale and Nanoscale Physics +1605.07512 Networking and Internet Architecture +1605.07608 Combinatorics +1605.07609 +1605.07610 +1605.07611 +1605.07613 Combinatorics +1605.07614 +1605.07626 Astrophysics of Galaxies +1605.07634 Numerical Analysis +1605.07639 Theory +1605.07645 Numerical Analysis +1605.07651 Computer Vision and Pattern Recognition +1605.07652 Mesoscale and Nanoscale Physics +1605.07653 Computational Physics +1605.07654 Operator Algebras +1605.07655 Metric Geometry +1605.07656 Populations and Evolution +1605.07657 Methodology +1605.07659 Learning +1605.07661 Information Theory +1605.07662 Materials Science +1605.07663 Applications +1605.07664 +1605.07675 Subcellular Processes +1605.07676 Number Theory +1605.07679 Statistics Theory +1605.07680 Statistics Theory +1605.07684 Information Theory +1605.07685 Networking and Internet Architecture +1605.07688 Algebraic Topology +1605.07690 Populations and Evolution +1605.07695 Quantum Gases +1605.07699 Computer Vision and Pattern Recognition +1605.07700 Learning +1605.07701 Analysis of PDEs +1605.07704 Multimedia +1605.07707 Theory +1605.07708 Robotics +1605.07711 Operator Algebras +1605.07715 Differential Geometry +1605.07716 Computer Vision and Pattern Recognition +1605.07718 Earth and Planetary Astrophysics +1605.07726 Number Theory +1605.07727 Commutative Algebra +1605.07731 Biomolecules +1605.07733 Human-Computer Interaction +1605.07734 Networking and Internet Architecture +1605.07735 Computation and Language +1605.07737 Geometric Topology +1605.07740 Neural and Evolutionary Computing +1605.07742 Solar and Stellar Astrophysics +1605.07743 Number Theory +1605.07744 +1605.07745 Category Theory +1605.07751 Chemical Physics +1605.07753 Computer Science and Game Theory +1605.07756 Optics +1605.07758 Group Theory +1605.07762 Combinatorics +1605.07765 Number Theory +1605.07766 Computation and Language +1605.07771 Plasma Physics +1605.07775 Dynamical Systems +1605.07776 Optics +1605.07782 Earth and Planetary Astrophysics +1605.07785 Learning +1605.07786 +1605.07787 Methodology +1605.07788 Dynamical Systems +1605.07789 Biomolecules +1605.07791 Combinatorics +1605.07793 Subcellular Processes +1605.07795 Numerical Analysis +1605.07798 Combinatorics +1605.07799 Dynamical Systems +1605.07806 Algebraic Geometry +1605.07810 +1605.07811 Methodology +1605.07812 Spectral Theory +1605.07819 Cryptography and Security +1605.07820 Materials Science +1605.07821 Numerical Analysis +1605.07824 Computer Vision and Pattern Recognition +1605.07827 Commutative Algebra +1605.07830 Statistics Theory +1605.07832 Combinatorics +1605.07834 Robotics +1605.07840 Astrophysics of Galaxies +1605.07841 Geophysics +1605.07843 Computation and Language +1605.07851 Phenomenology +1605.07854 Applications +1605.07860 Analysis of PDEs +1605.07861 Social and Information Networks +1605.07862 Algebraic Geometry +1605.07864 Dynamical Systems +1605.07867 Logic +1605.07870 Machine Learning +1605.07871 Analysis of PDEs +1605.07872 Theory +1605.07873 Probability +1605.07876 Optimization and Control +1605.07879 Group Theory +1605.07882 Solar and Stellar Astrophysics +1605.07883 Earth and Planetary Astrophysics +1605.07886 Space Physics +1605.07887 +1605.07888 Distributed, Parallel, and Cluster Computing +1605.07889 Geophysics +1605.07892 Symplectic Geometry +1605.07895 Artificial Intelligence +1605.07897 Optimization and Control +1605.07901 Earth and Planetary Astrophysics +1605.07905 Information Theory +1605.07906 Machine Learning +1605.07907 Analysis of PDEs +1605.07910 Optimization and Control +1605.07914 Accelerator Physics +1605.07915 Social and Information Networks +1605.07918 Computation and Language +1605.07919 Methodology +1605.07922 Numerical Analysis +1605.07923 Solar and Stellar Astrophysics +1605.07924 Applications +1605.07930 Analysis of PDEs +1605.07939 Optimization and Control +1605.07943 Information Theory +1605.07944 Superconductivity +1605.07947 Methodology +1605.07951 Numerical Analysis +1605.07952 Materials Science +1605.07960 Computer Vision and Pattern Recognition +1605.07963 Differential Geometry +1605.07974 Numerical Analysis +1605.07976 Operator Algebras +1605.07978 Numerical Analysis +1605.07980 Information Retrieval +1605.07981 Methodology +1605.07982 Optimization and Control +1605.07983 Algebraic Topology +1605.07985 Functional Analysis +1605.07986 Differential Geometry +1605.07988 Cryptography and Security +1605.07991 Machine Learning +1605.07994 Adaptation and Self-Organizing Systems +1605.07995 Complex Variables +1605.07996 Robotics +1605.08001 Quantitative Methods +1605.08005 Algebraic Geometry +1605.08010 Statistics Theory +1605.08012 Phenomenology +1605.08019 Differential Geometry +1605.08024 Soft Condensed Matter +1605.08025 Economics +1605.08029 Information Theory +quant-ph/0410040 +1012.5205 Fluid Dynamics +1106.3102 Probability +1202.5123 Analysis of PDEs +1207.2460 +1304.7655 Differential Geometry +1304.7657 Differential Geometry +1305.1646 Algebraic Geometry +1305.6023 Functional Analysis +1306.1197 Probability +1310.1376 Combinatorics +1312.2888 General Physics +1403.3516 Group Theory +1404.7080 Statistics Theory +1406.7158 Logic +1409.0238 Mesoscale and Nanoscale Physics +1410.5838 Statistical Mechanics +1410.6097 Group Theory +1411.1428 Astrophysics of Galaxies +1411.7039 Algebraic Geometry +1412.5084 Algebraic Topology +1412.6179 Optimization and Control +1412.6844 Analysis of PDEs +1412.7678 Mesoscale and Nanoscale Physics +1412.7907 Statistics Theory +1501.00207 Commutative Algebra +1502.01190 Classical Analysis and ODEs +1502.05708 Differential Geometry +1502.06465 Metric Geometry +1502.07515 Theory +1503.07224 Systems and Control +1504.00127 Analysis of PDEs +1504.06512 Number Theory +1504.06522 Representation Theory +1505.04164 Differential Geometry +1506.01096 Dynamical Systems +1506.02034 High Energy Astrophysical Phenomena +1506.02791 Logic +1506.02852 Optimization and Control +1506.06318 Learning +1506.07827 Probability +1506.08448 Machine Learning +1507.03572 Quantitative Methods +1507.03917 Numerical Analysis +1507.04611 Dynamical Systems +1507.06787 Phenomenology +1508.05253 Computer Science and Game Theory +1508.06676 +1508.07826 Probability +1509.01088 Phenomenology +1509.03197 +1509.06583 Probability +1509.08954 Neurons and Cognition +1509.09103 Statistics Theory +1509.09133 Risk Management +1510.01610 Number Theory +1510.01915 Number Theory +1510.02321 Neurons and Cognition +1510.02430 Methodology +1510.06570 Phenomenology +1510.07384 Differential Geometry +1510.08431 Experiment +1511.03509 +1511.03719 Learning +1511.03827 Combinatorics +1511.04665 +1511.07329 Operator Algebras +1511.08495 Learning +1512.01098 +1512.01143 Dynamical Systems +1512.03348 +1512.05431 Biological Physics +1512.06092 Experiment +1512.07112 Analysis of PDEs +1512.07757 Combinatorics +1512.08322 Solar and Stellar Astrophysics +1512.08643 Machine Learning +1512.09278 +1601.00625 Computational Physics +1601.01176 Theory +1601.02936 Theory +1601.03109 Theory +1601.07381 Data Analysis, Statistics and Probability +1602.00257 Probability +1602.01840 Astrophysics of Galaxies +1602.03290 Phenomenology +1602.04336 Functional Analysis +1602.04773 Populations and Evolution +1602.05086 Phenomenology +1602.06338 Logic +1602.08003 Phenomenology +1602.08777 Cryptography and Security +1603.05474 Computer Vision and Pattern Recognition +1603.05941 Information Theory +1603.07747 Functional Analysis +1603.08952 Biomolecules +1604.00315 Lattice +1604.00651 +1604.00950 Cosmology and Nongalactic Astrophysics +1604.01653 Information Theory +1604.01789 Genomics +1604.02736 Methodology +1604.03033 Geometric Topology +1604.03503 Cosmology and Nongalactic Astrophysics +1604.03535 Differential Geometry +1604.04432 Data Analysis, Statistics and Probability +1604.05068 +1604.07560 Information Theory +1604.08354 Biological Physics +1605.00564 Lattice +1605.00794 Geometric Topology +1605.00795 Geometric Topology +1605.00934 Biomolecules +1605.01121 Theory +1605.04019 Numerical Analysis +1605.04588 Strongly Correlated Electrons +1605.05052 Dynamical Systems +1605.05898 Probability +1605.06055 Atomic Physics +1605.06737 Quantitative Methods +1605.07010 Representation Theory +1605.07374 Mesoscale and Nanoscale Physics +1605.08772 Phenomenology +1605.09332 Learning +1605.09683 Dynamical Systems +1606.01260 Strongly Correlated Electrons +1606.02971 Statistical Mechanics +1606.03582 Astrophysics of Galaxies +1606.04475 +1606.04691 Cosmology and Nongalactic Astrophysics +1606.05811 Optimization and Control +1606.07240 Machine Learning +1606.09234 Superconductivity +1606.09513 Phenomenology +1607.00162 +1607.00661 Earth and Planetary Astrophysics +1607.00922 +1607.01059 Computer Vision and Pattern Recognition +1607.01993 Logic in Computer Science +1607.02648 Soft Condensed Matter +1607.02912 +1607.04430 Statistics Theory +1607.05443 Programming Languages +1607.06671 Human-Computer Interaction +1607.06806 Physics and Society +1607.08064 Computer Vision and Pattern Recognition +1608.00026 Earth and Planetary Astrophysics +1608.00327 Complex Variables +1608.00345 Optics +1608.01641 Representation Theory +1608.02106 Phenomenology +1608.02802 +1608.03109 Methodology +1608.03401 Materials Science +1608.05360 +1608.05449 Number Theory +1608.05704 Mesoscale and Nanoscale Physics +1608.06208 General Topology +1608.06773 Phenomenology +1608.06909 Mesoscale and Nanoscale Physics +1608.07778 Differential Geometry +1608.08644 Information Theory +1608.08713 Cosmology and Nongalactic Astrophysics +1609.00602 Earth and Planetary Astrophysics +1609.00704 Materials Science +1609.02506 Quantum Gases +1609.02695 Algebraic Geometry +1609.04994 Learning +1609.06344 Atomic Physics +1609.07570 Atomic and Molecular Clusters +1609.07898 Biomolecules +1609.08640 Phenomenology +1609.08947 Superconductivity +1610.00462 Disordered Systems and Neural Networks +1610.00568 Cosmology and Nongalactic Astrophysics +1610.01751 Probability +1610.01765 Probability +1610.02286 Probability +1610.02940 Functional Analysis +1610.03559 Theory +1610.04171 Soft Condensed Matter +1610.04215 Information Theory +1610.04630 Rings and Algebras +1610.06204 Computer Vision and Pattern Recognition +1610.06248 Probability +1610.06791 Optics +1610.06864 Group Theory +1610.06929 Theory +1610.07397 Representation Theory +1610.07408 Combinatorics +1610.07527 Instrumentation and Detectors +1610.08055 High Energy Astrophysical Phenomena +1610.08378 Phenomenology +1610.09316 Disordered Systems and Neural Networks +1610.09986 Atomic Physics +1611.00198 Data Structures and Algorithms +1611.00778 Astrophysics of Galaxies +1611.01094 Number Theory +1611.01516 +1611.01682 Populations and Evolution +1611.01753 Astrophysics of Galaxies +1611.02793 Solar and Stellar Astrophysics +1611.02907 +1611.03757 Phenomenology +1611.04023 Neurons and Cognition +1611.04086 Materials Science +1611.04130 Quantum Algebra +1611.04167 Distributed, Parallel, and Cluster Computing +1611.04368 Functional Analysis +1611.04400 Phenomenology +1611.04404 Materials Science +1611.04975 Materials Science +1611.05083 Software Engineering +1611.05093 Quantum Gases +1611.05201 Methodology +1611.05272 Optimization and Control +1611.05515 Phenomenology +1611.05520 Computer Vision and Pattern Recognition +1611.05549 Distributed, Parallel, and Cluster Computing +1611.05748 Dynamical Systems +1611.05819 Computational Complexity +1611.05862 Instrumentation and Detectors +1611.05863 Instrumentation and Detectors +1611.05864 Instrumentation and Detectors +1611.05867 Astrophysics of Galaxies +1611.05869 Astrophysics of Galaxies +1611.05872 Lattice +1611.05873 Phenomenology +1611.05874 Phenomenology +1611.05876 Cosmology and Nongalactic Astrophysics +1611.05877 Strongly Correlated Electrons +1611.05879 Phenomenology +1611.05880 High Energy Astrophysical Phenomena +1611.05883 Cosmology and Nongalactic Astrophysics +1611.05884 Astrophysics of Galaxies +1611.05885 Algebraic Geometry +1611.05887 Strongly Correlated Electrons +1611.05890 +1611.05891 Statistical Mechanics +1611.05893 Mesoscale and Nanoscale Physics +1611.05894 Analysis of PDEs +1611.05895 Disordered Systems and Neural Networks +1611.05896 Computer Vision and Pattern Recognition +1611.05897 General Physics +1611.05898 Learning +1611.05899 Dynamical Systems +1611.05902 Methodology +1611.05903 Probability +1611.05907 Data Structures and Algorithms +1611.05908 Mesoscale and Nanoscale Physics +1611.05909 Statistics Theory +1611.05910 Networking and Internet Architecture +1611.05912 +1611.05913 Dynamical Systems +1611.05914 Instrumentation and Methods for Astrophysics +1611.05915 Computer Vision and Pattern Recognition +1611.05917 Statistics Theory +1611.05918 Neurons and Cognition +1611.05919 Spectral Theory +1611.05920 Theory +1611.05921 Group Theory +1611.05922 +1611.05924 High Energy Astrophysical Phenomena +1611.05926 Materials Science +1611.05927 Computer Vision and Pattern Recognition +1611.05928 Analysis of PDEs +1611.05931 Metric Geometry +1611.05933 Plasma Physics +1611.05934 Machine Learning +1611.05935 Numerical Analysis +1611.05936 Analysis of PDEs +1611.05941 Algebraic Geometry +1611.05943 Networking and Internet Architecture +1611.05944 Data Structures and Algorithms +1611.05945 Geometric Topology +1611.05946 Optics +1611.05947 Algebraic Geometry +1611.05948 Dynamical Systems +1611.05949 Numerical Analysis +1611.05950 Artificial Intelligence +1611.05951 Theory +1611.05953 Optimization and Control +1611.05954 Combinatorics +1611.05955 Learning +1611.05957 Optics +1611.05958 Chemical Physics +1611.05959 Computer Science and Game Theory +1611.05961 Systems and Control +1611.05962 Computation and Language +1611.05965 Functional Analysis +1611.05967 Combinatorics +1611.05969 +1611.05973 Artificial Intelligence +1611.05975 Information Theory +1611.05976 Materials Science +1611.05977 Learning +1611.05978 Solar and Stellar Astrophysics +1611.05981 Algebraic Geometry +1611.05982 Quantum Algebra +1611.05984 Fluid Dynamics +1611.05987 Chemical Physics +1611.05988 Geometric Topology +1611.05989 +1611.05990 Logic in Computer Science +1611.05991 Computational Complexity +1611.05993 Probability +1611.05994 Software Engineering +1611.05995 Information Theory +1611.05998 Data Structures and Algorithms +1611.05999 Probability +1611.06001 Analysis of PDEs +1611.06002 Probability +1611.06003 Strongly Correlated Electrons +1611.06004 Soft Condensed Matter +1611.06007 Experiment +1611.06008 Information Theory +1611.06009 Computer Vision and Pattern Recognition +1611.06010 Risk Management +1611.06011 Computer Vision and Pattern Recognition +1611.06012 Numerical Analysis +1611.06014 Strongly Correlated Electrons +1611.06016 +1611.06017 Classical Analysis and ODEs +1611.06019 +1611.06020 Phenomenology +1611.06021 Fluid Dynamics +1611.06023 High Energy Astrophysical Phenomena +1611.06024 Analysis of PDEs +1611.06026 Computer Vision and Pattern Recognition +1611.06028 +1611.06031 Combinatorics +1611.06037 Complex Variables +1611.06038 Distributed, Parallel, and Cluster Computing +1611.06039 Instrumentation and Methods for Astrophysics +1611.06040 +1611.06044 Solar and Stellar Astrophysics +1611.06045 Chemical Physics +1611.06046 High Energy Astrophysical Phenomena +1611.06047 Plasma Physics +1611.06048 +1611.06049 Physics and Society +1611.06052 Materials Science +1611.06054 Mesoscale and Nanoscale Physics +1611.06055 High Energy Astrophysical Phenomena +1611.06058 Representation Theory +1611.06059 Physics Education +1611.06061 Functional Analysis +1611.06063 Solar and Stellar Astrophysics +1611.06065 Quantitative Methods +1611.06066 Machine Learning +1611.06067 Computer Vision and Pattern Recognition +1611.06068 Lattice +1611.06069 Computer Vision and Pattern Recognition +1611.06070 Robotics +1611.06071 Superconductivity +1611.06072 Biomolecules +1611.06073 Combinatorics +1611.06074 Algebraic Geometry +1611.06076 High Energy Astrophysical Phenomena +1611.06077 Analysis of PDEs +1611.06078 Hardware Architecture +1611.06079 Emerging Technologies +1611.06080 Machine Learning +1611.06082 Commutative Algebra +1611.06084 Number Theory +1611.06085 Phenomenology +1611.06086 Neural and Evolutionary Computing +1611.06090 Logic +1611.06092 Physics and Society +1611.06094 Machine Learning +1611.06095 Phenomenology +1611.06097 Numerical Analysis +1611.06098 Numerical Analysis +1611.06099 K-Theory and Homology +1611.06100 Quantum Algebra +1611.06102 Lattice +1611.06103 Cosmology and Nongalactic Astrophysics +1611.06104 Combinatorics +1611.06105 Group Theory +1611.06107 Instrumentation and Detectors +1611.06110 Mesoscale and Nanoscale Physics +1611.06111 +1611.06112 Analysis of PDEs +1611.06113 Pattern Formation and Solitons +1611.06114 Instrumentation and Detectors +1611.06115 Computer Vision and Pattern Recognition +1611.06116 Number Theory +1611.06117 Mesoscale and Nanoscale Physics +1611.06118 Experiment +1611.06119 Analysis of PDEs +1611.06120 Algebraic Geometry +1611.06122 Other Condensed Matter +1611.06125 Differential Geometry +1611.06127 Disordered Systems and Neural Networks +1611.06128 Databases +1611.06129 Statistics Theory +1611.06131 Rings and Algebras +1611.06132 Learning +1611.06134 Artificial Intelligence +1611.06135 Combinatorics +1611.06136 Phenomenology +1611.06137 Differential Geometry +1611.06138 Functional Analysis +1611.06139 Theory +1611.06142 Combinatorics +1611.06144 Classical Analysis and ODEs +1611.06145 Robotics +1611.06146 Materials Science +1611.06147 Analysis of PDEs +1611.06148 Machine Learning +1611.06149 Solar and Stellar Astrophysics +1611.06151 +1611.06152 Populations and Evolution +1611.06153 Mesoscale and Nanoscale Physics +1611.06154 High Energy Astrophysical Phenomena +1611.06158 Computer Vision and Pattern Recognition +1611.06159 Computer Vision and Pattern Recognition +1611.06161 Functional Analysis +1611.06162 Metric Geometry +1611.06163 Computational Physics +1611.06164 Emerging Technologies +1611.06165 Phenomenology +1611.06166 Analysis of PDEs +1611.06167 Geophysics +1611.06168 Other Statistics +1611.06170 Solar and Stellar Astrophysics +1611.06171 Strongly Correlated Electrons +1611.06173 Statistics Theory +1611.06174 Artificial Intelligence +1611.06175 Machine Learning +1611.06177 Theory +1611.06178 Probability +1611.06180 Atomic Physics +1611.06181 Computational Finance +1611.06184 Materials Science +1611.06185 Biomolecules +1611.06186 Phenomenology +1611.06187 Numerical Analysis +1611.06190 Dynamical Systems +1611.06193 Probability +1611.06194 Computer Vision and Pattern Recognition +1611.06196 Group Theory +1611.06197 Neurons and Cognition +1611.06198 Astrophysics of Galaxies +1611.06200 Theory +1611.06201 Probability +1611.06203 Computer Vision and Pattern Recognition +1611.06204 Computation and Language +1611.06206 Phenomenology +1611.06208 Methodology +1611.06209 High Energy Astrophysical Phenomena +1611.06211 Neural and Evolutionary Computing +1611.06212 Phenomenology +1611.06213 Machine Learning +1611.06215 Algebraic Topology +1611.06216 Computation and Language +1611.06217 Methodology +1611.06218 Functional Analysis +1611.06219 Instrumentation and Methods for Astrophysics +1611.06221 Methodology +1611.06222 Data Structures and Algorithms +1611.06224 Databases +1611.06225 Operator Algebras +physics/0102055 Fluid Dynamics +quant-ph/0012107 +1608.05168 Networking and Internet Architecture +1608.05170 Networking and Internet Architecture +1608.05172 Networking and Internet Architecture +0707.4525 Algebraic Geometry +1001.3642 Analysis of PDEs +1103.0673 Theory +1203.2516 Networking and Internet Architecture +1204.5308 Geometric Topology +1206.2387 Geometric Topology +1207.5979 +1208.3284 Algebraic Geometry +1210.2080 Differential Geometry +1211.6581 Learning +1212.5711 Computer Vision and Pattern Recognition +1303.5366 Rings and Algebras +1304.0891 Algebraic Topology +1305.1240 Cellular Automata and Lattice Gases +1305.3097 Logic +1306.1189 Cellular Automata and Lattice Gases +1308.0038 +1309.0395 Combinatorics +1309.4242 Functional Analysis +1310.0103 Representation Theory +1311.1871 Functional Analysis +1312.1177 Cosmology and Nongalactic Astrophysics +1312.5207 Methodology +1312.7634 Algebraic Geometry +1403.0194 Superconductivity +1403.2089 Differential Geometry +1403.2865 Group Theory +1404.0371 Superconductivity +1404.4058 Mesoscale and Nanoscale Physics +1404.6330 Operator Algebras +1405.5065 Complex Variables +1406.0812 Statistics Theory +1406.7406 Analysis of PDEs +1407.3233 +1407.3973 Materials Science +1408.1373 Algebraic Geometry +1408.5139 Mesoscale and Nanoscale Physics +1408.6511 Quantum Gases +1409.0675 Neurons and Cognition +1409.1102 Social and Information Networks +1409.1393 Mathematical Finance +1409.3900 Information Theory +1410.0788 +1410.3212 Algebraic Geometry +1410.5010 Performance +1410.6744 Physics and Society +1411.0083 +1411.2535 Dynamical Systems +1411.7013 Computation +1412.0255 High Energy Astrophysical Phenomena +1412.0383 Theory +1412.0772 Mesoscale and Nanoscale Physics +1412.2034 Combinatorics +1412.4288 Phenomenology +1412.5250 Methodology +1412.6467 +1412.7981 +1501.01186 Computer Vision and Pattern Recognition +1501.01692 Commutative Algebra +1501.02066 Commutative Algebra +1501.06121 Operator Algebras +1502.00602 Optics +1502.02908 Populations and Evolution +1502.05197 Numerical Analysis +1502.07021 Algebraic Geometry +1502.07586 Information Theory +1503.03705 Computational Finance +1503.05773 +1503.07894 Combinatorics +1503.08589 Mathematical Finance +1504.01177 Algebraic Geometry +1504.01896 Computation +1504.02089 Learning +1504.02763 Computer Vision and Pattern Recognition +1504.02912 +1504.03227 Number Theory +1504.03576 Statistical Mechanics +1504.03951 Superconductivity +1504.05381 Artificial Intelligence +1504.05783 Numerical Analysis +1504.06283 Phenomenology +1504.08141 Cosmology and Nongalactic Astrophysics +1505.00053 +1505.00887 Discrete Mathematics +1505.01791 +1505.02402 Optimization and Control +1505.03894 Differential Geometry +1505.03977 Graphics +1505.04711 Instrumentation and Methods for Astrophysics +1505.05922 Algebraic Geometry +1506.02161 Chemical Physics +1506.02594 Social and Information Networks +1506.03113 Statistics Theory +1506.03120 Experiment +1506.06367 Quantum Gases +1506.06999 Algebraic Geometry +1506.07524 Instrumentation and Methods for Astrophysics +1506.08438 Computer Vision and Pattern Recognition +1507.01425 Artificial Intelligence +1507.02497 Rings and Algebras +1507.02887 Statistics Theory +1507.04894 Phenomenology +1507.06251 Mesoscale and Nanoscale Physics +1507.06377 Rings and Algebras +1507.06439 +1507.07122 Number Theory +1507.08771 Operator Algebras +1508.01665 +1508.01950 Computer Science and Game Theory +1508.02738 Classical Analysis and ODEs +1508.03193 Mesoscale and Nanoscale Physics +1508.03804 +1508.04189 Phenomenology +1508.04475 Classical Analysis and ODEs +1508.04770 Theory +1508.04990 Materials Science +1509.00116 Computer Vision and Pattern Recognition +1509.00668 Statistical Mechanics +1509.01448 Biological Physics +1509.01821 Instrumentation and Detectors +1509.01910 Statistical Mechanics +1509.01957 Quantitative Methods +1509.02147 Strongly Correlated Electrons +1509.04274 Networking and Internet Architecture +1509.06962 Dynamical Systems +1509.07493 +1509.07495 Computer Science and Game Theory +1509.07580 Soft Condensed Matter +1509.07917 Astrophysics of Galaxies +1509.09290 +1510.00286 Adaptation and Self-Organizing Systems +1510.00922 +1510.00972 Theory +1510.01714 Social and Information Networks +1510.05542 Biological Physics +1510.05714 Distributed, Parallel, and Cluster Computing +1510.06323 Algebraic Geometry +1510.06530 Networking and Internet Architecture +1510.06795 Disordered Systems and Neural Networks +1510.06888 +1510.07826 Theory +1511.00038 Quantum Gases +1511.00502 Experiment +1511.00633 +1511.03451 Information Theory +1511.03875 Mesoscale and Nanoscale Physics +1511.03967 Dynamical Systems +1511.03988 Soft Condensed Matter +1511.04314 Pricing of Securities +1511.04888 Phenomenology +1511.05991 Theory +1511.07512 Number Theory +1512.00078 +1512.01544 Lattice +1512.05039 Biomolecules +1512.05251 Combinatorics +1512.06187 +1512.06757 Computer Vision and Pattern Recognition +1512.06768 +1512.07021 Databases +1512.07906 Quantum Algebra +1512.08832 Mesoscale and Nanoscale Physics +1512.08944 Probability +1512.09040 Combinatorics +1601.00109 Chemical Physics +1601.01489 Astrophysics of Galaxies +1601.02067 Phenomenology +1601.02691 Classical Analysis and ODEs +1601.04423 Representation Theory +1601.05035 Logic +1601.05484 Robotics +1601.05609 +1601.05692 Logic +1601.06012 Atomic Physics +1601.06020 Quantum Gases +1601.06145 Theory +1601.06197 Quantum Gases +1601.06206 Cryptography and Security +1601.06292 Social and Information Networks +1601.06319 Computational Complexity +1601.06353 Probability +1601.06383 Information Theory +1601.06639 Strongly Correlated Electrons +1601.06654 Commutative Algebra +1601.06657 Phenomenology +1601.06799 High Energy Astrophysical Phenomena +1601.06828 Materials Science +1601.06992 +1601.07086 Genomics +1601.07159 Computational Physics +1601.07168 Operator Algebras +1601.07171 +1601.07172 +1601.07189 Applications +1601.07191 Molecular Networks +1601.07192 Molecular Networks +1601.07196 Classical Physics +1601.07197 +1601.07200 Social and Information Networks +1601.07202 Instrumentation and Detectors +1601.07205 Metric Geometry +1601.07206 Combinatorics +1601.07207 Information Theory +1601.07210 Optimization and Control +1601.07212 Populations and Evolution +1601.07215 Computation and Language +1601.07221 Geophysics +1601.07223 Information Theory +1601.07224 Artificial Intelligence +1601.07225 Applications +1601.07227 Numerical Analysis +1601.07228 Information Theory +1601.07229 Human-Computer Interaction +1601.07232 Multimedia +1601.07233 Machine Learning +1601.07234 Instrumentation and Detectors +1601.07235 Methodology +1601.07241 Databases +1601.07244 Numerical Analysis +1601.07245 Analysis of PDEs +1601.07249 Accelerator Physics +1601.07250 Human-Computer Interaction +1601.07252 Computer Vision and Pattern Recognition +1601.07254 Information Theory +1601.07256 +1601.07258 Computer Vision and Pattern Recognition +1601.07259 Dynamical Systems +1601.07260 Systems and Control +1601.07262 Multimedia +1601.07264 Human-Computer Interaction +1601.07268 Mesoscale and Nanoscale Physics +1601.07269 General Topology +1601.07270 Computer Vision and Pattern Recognition +1601.07271 +1601.07272 Differential Geometry +1601.07273 Information Retrieval +1601.07275 Systems and Control +1601.07276 Functional Analysis +1601.07277 Optimization and Control +1601.07279 Systems and Control +1601.07280 Representation Theory +1601.07283 Information Theory +1601.07284 Symplectic Geometry +1601.07285 Information Theory +1601.07287 Differential Geometry +1601.07293 Number Theory +1601.07298 Functional Analysis +1601.07301 Algebraic Geometry +1601.07306 Materials Science +1601.07310 +1601.07311 Accelerator Physics +1601.07312 Instrumentation and Detectors +1601.07313 Logic +1601.07316 Number Theory +1601.07319 Classical Analysis and ODEs +1601.07323 Representation Theory +1601.07325 Information Theory +1601.07331 Materials Science +1601.07334 Data Analysis, Statistics and Probability +1601.07336 Computer Vision and Pattern Recognition +1601.07341 Computer Science and Game Theory +1601.07344 Methodology +1601.07346 Symplectic Geometry +1601.07347 +1601.07348 Number Theory +1601.07350 Mesoscale and Nanoscale Physics +1601.07355 Distributed, Parallel, and Cluster Computing +1601.07357 General Physics +1601.07358 +1601.07363 +1601.07366 General Physics +1601.07373 Optics +1601.07374 Solar and Stellar Astrophysics +1601.07377 Systems and Control +1601.07378 Computational Physics +1601.07380 Functional Analysis +1601.07382 +1601.07383 Numerical Analysis +1601.07388 Rings and Algebras +1601.07389 Commutative Algebra +1601.07394 History and Overview +1601.07398 Combinatorics +1601.07400 Distributed, Parallel, and Cluster Computing +1601.07401 Numerical Analysis +1601.07403 Logic in Computer Science +1601.07406 Atomic and Molecular Clusters +1601.07407 Algebraic Geometry +1601.07408 Strongly Correlated Electrons +1601.07416 Cryptography and Security +1601.07417 Information Theory +1601.07419 Number Theory +1601.07420 Distributed, Parallel, and Cluster Computing +1601.07424 Networking and Internet Architecture +1601.07430 Optimization and Control +1601.07434 Complex Variables +1601.07439 Atomic Physics +1601.07445 Physics Education +1601.07446 Neural and Evolutionary Computing +1601.07454 Strongly Correlated Electrons +1601.07456 Operator Algebras +1601.07457 Robotics +1601.07467 Theory +1601.07469 Differential Geometry +1601.07470 Astrophysics of Galaxies +1601.07473 Data Structures and Algorithms +1601.07474 Solar and Stellar Astrophysics +1601.07478 Analysis of PDEs +1601.07480 Representation Theory +1601.07481 Materials Science +1601.07484 Numerical Analysis +1601.07485 Dynamical Systems +1601.07486 Superconductivity +1601.07493 High Energy Astrophysical Phenomena +1601.07496 Methodology +1601.07500 Differential Geometry +1601.07501 Symplectic Geometry +1601.07502 Mesoscale and Nanoscale Physics +1601.07507 Geometric Topology +1601.07509 Spectral Theory +1601.07511 Theory +1601.07513 Information Theory +1601.07515 Optimization and Control +1601.07517 Superconductivity +1601.07522 Algebraic Geometry +1601.07525 Combinatorics +1601.07532 Computer Vision and Pattern Recognition +1601.07538 Group Theory +dg-ga/9712006 Differential Geometry +gr-qc/0107090 +hep-th/0107232 Theory +math/0505413 Algebraic Geometry +math/0609284 Algebraic Geometry +math/0609286 Algebraic Geometry +physics/0310001 History and Philosophy of Physics +0710.3357 Operator Algebras +0811.1830 +0912.1751 Cosmology and Nongalactic Astrophysics +1005.0056 High Energy Astrophysical Phenomena +1007.0075 Phenomenology +1007.0156 Analysis of PDEs +1109.2520 Earth and Planetary Astrophysics +1110.5707 Algebraic Geometry +1212.2566 Analysis of PDEs +1303.3159 Classical Analysis and ODEs +1305.2033 Dynamical Systems +1305.2118 Complex Variables +1305.6042 Geometric Topology +1308.0814 Combinatorics +1308.1562 Probability +1308.5795 Probability +1309.0698 Algebraic Geometry +1310.1570 Combinatorics +1310.6131 Operator Algebras +1311.5535 Symplectic Geometry +1311.6813 Cosmology and Nongalactic Astrophysics +1312.0322 Functional Analysis +1312.0392 Algebraic Geometry +1312.5391 Applications +1401.1894 Logic +1401.4871 Number Theory +1401.5735 Combinatorics +1402.4061 Methodology +1402.4615 Probability +1402.5653 +1403.0177 Classical Analysis and ODEs +1403.3029 Probability +1403.6759 Algebraic Topology +1404.3069 Quantum Algebra +1405.0065 Combinatorics +1405.4426 Probability +1405.6428 Functional Analysis +1405.6634 Probability +1405.6670 Combinatorics +1405.6919 Combinatorics +1406.0073 Computational Complexity +1406.1582 Logic +1406.1713 Algebraic Geometry +1407.3748 Probability +1407.6173 Phenomenology +1408.1464 +1408.1832 Mesoscale and Nanoscale Physics +1409.3179 Mesoscale and Nanoscale Physics +1409.3293 Complex Variables +1409.3435 +1409.4249 Functional Analysis +1409.6107 Dynamical Systems +1409.7885 Plasma Physics +1410.0711 Theory +1410.1234 Analysis of PDEs +1410.3420 Classical Analysis and ODEs +1410.5032 Probability +1410.7267 Experiment +1410.8350 Geometric Topology +1410.8436 Differential Geometry +1411.1552 Computation +1411.4399 Information Theory +1411.4599 +1411.5097 +1411.5536 Phenomenology +1412.2391 Information Theory +1412.3001 Combinatorics +1412.3257 Phenomenology +1412.6888 Number Theory +1412.7062 Computer Vision and Pattern Recognition +1412.7372 Mesoscale and Nanoscale Physics +1501.02509 Instrumentation and Methods for Astrophysics +1501.03205 Populations and Evolution +1501.06438 +1502.03507 Materials Science +1502.05025 Numerical Analysis +1502.08024 Mesoscale and Nanoscale Physics +1503.00022 Sound +1503.01570 Probability +1503.02673 Classical Analysis and ODEs +1503.03324 Logic in Computer Science +1503.05961 Combinatorics +1503.06049 Methodology +1503.06288 Algebraic Geometry +1503.07098 Dynamical Systems +1503.07107 Number Theory +1503.07581 +1504.01581 Combinatorics +1504.04279 Combinatorics +1504.05420 Strongly Correlated Electrons +1504.05435 +1504.07754 Astrophysics of Galaxies +1504.07968 Learning +1505.02417 Methodology +1505.03528 Cosmology and Nongalactic Astrophysics +1505.04364 Computer Vision and Pattern Recognition +1505.05878 +1505.05931 Spectral Theory +1506.00305 Mesoscale and Nanoscale Physics +1506.02489 Probability +1506.02538 Number Theory +1506.02766 Representation Theory +1506.03740 Classical Analysis and ODEs +1506.06148 Number Theory +1506.06229 Representation Theory +1506.07185 High Energy Astrophysical Phenomena +1506.07227 +1506.07654 Statistical Mechanics +1506.07805 +1507.00387 Networking and Internet Architecture +1507.00732 +1507.01483 Algebraic Geometry +1507.02708 Statistical Mechanics +1507.02981 Astrophysics of Galaxies +1507.03536 Complex Variables +1507.05224 Social and Information Networks +1507.05460 Instrumentation and Methods for Astrophysics +1507.05539 Logic in Computer Science +1507.05641 Superconductivity +1507.05690 Probability +1507.05748 Computational Physics +1507.05859 Number Theory +1507.06079 Computational Physics +1507.06339 Quantum Gases +1507.06440 Dynamical Systems +1507.07248 Exactly Solvable and Integrable Systems +1507.08287 Astrophysics of Galaxies +1508.00004 Solar and Stellar Astrophysics +1508.00404 Quantum Gases +1508.00535 Physics Education +1508.01134 Physics and Society +1508.01351 Applications +1508.01594 Biological Physics +1508.01616 Mesoscale and Nanoscale Physics +1508.01832 Materials Science +1508.01885 Soft Condensed Matter +1508.02317 Cosmology and Nongalactic Astrophysics +1508.02736 Materials Science +1508.03164 Solar and Stellar Astrophysics +1508.03655 Strongly Correlated Electrons +1508.04387 Logic +1508.04903 Logic +1508.05611 Optics +1508.05624 Physics and Society +1508.06834 Materials Science +1508.07469 Phenomenology +1508.07734 Functional Analysis +1508.07925 Plasma Physics +1509.00224 Physics and Society +1509.00640 Theory +1509.00747 Cosmology and Nongalactic Astrophysics +1509.00974 Chemical Physics +1509.01897 Algebraic Geometry +1509.03138 Optics +1509.04157 Cosmology and Nongalactic Astrophysics +1509.06268 Analysis of PDEs +1509.06561 High Energy Astrophysical Phenomena +1509.06736 Cosmology and Nongalactic Astrophysics +1509.06875 +1509.07886 Theory +1509.08218 Combinatorics +1509.08305 Information Theory +1509.09196 Physics and Society +1510.01168 Fluid Dynamics +1510.01293 +1510.01322 Phenomenology +1510.01328 Phenomenology +1510.01599 Artificial Intelligence +1510.01837 +1510.03702 Mesoscale and Nanoscale Physics +1510.04696 Astrophysics of Galaxies +1510.05390 Probability +1510.05404 Materials Science +1510.06220 Earth and Planetary Astrophysics +1510.06233 Rings and Algebras +1510.07447 Superconductivity +1510.07816 Strongly Correlated Electrons +1510.07941 +1510.08903 Analysis of PDEs +1510.08910 Optics +1510.09026 Data Analysis, Statistics and Probability +1511.00508 Instrumentation and Methods for Astrophysics +1511.00977 Quantum Gases +1511.01327 Materials Science +1511.01466 High Energy Astrophysical Phenomena +1511.01489 Strongly Correlated Electrons +1511.01865 Neural and Evolutionary Computing +1511.02225 Quantum Gases +1511.02470 Number Theory +1511.02931 Optics +1511.03084 Solar and Stellar Astrophysics +1511.03741 Instrumentation and Detectors +1511.04042 Theory +1511.04219 Optics +1511.04940 Materials Science +1511.05271 Physics and Society +1511.05468 Physics and Society +1511.05726 High Energy Astrophysical Phenomena +1511.05854 +1511.06063 Learning +1511.06338 Strongly Correlated Electrons +1511.06615 +1511.07287 Quantum Gases +1511.07675 Materials Science +1511.08140 Adaptation and Self-Organizing Systems +1511.08204 Solar and Stellar Astrophysics +1511.08424 Instrumentation and Methods for Astrophysics +1511.08765 Chemical Physics +1511.09377 Quantum Gases +1512.00010 Theory +1512.00151 Earth and Planetary Astrophysics +1512.00723 +1512.00910 Cosmology and Nongalactic Astrophysics +1512.00931 Strongly Correlated Electrons +1512.01197 Neurons and Cognition +1512.01887 Optics +1512.02080 Strongly Correlated Electrons +1512.02446 Astrophysics of Galaxies +1512.02562 Soft Condensed Matter +1512.02636 Astrophysics of Galaxies +1512.03139 Discrete Mathematics +1512.03774 +1512.04545 Phenomenology +1512.04550 Quantum Gases +1512.04566 +1512.04657 Phenomenology +1512.05148 Optics +1512.05610 Machine Learning +1512.05862 Chemical Physics +1512.06357 Phenomenology +1512.06734 Materials Science +1512.06990 Soft Condensed Matter +1512.07282 Analysis of PDEs +1512.07295 Cosmology and Nongalactic Astrophysics +1512.07537 Computational Geometry +1512.07630 Cosmology and Nongalactic Astrophysics +1512.07640 Quantum Gases +1512.07843 +1512.08352 Cosmology and Nongalactic Astrophysics +1512.08517 Atmospheric and Oceanic Physics +1512.08804 Quantum Gases +1512.08816 K-Theory and Homology +1512.09223 Phenomenology +1512.09346 +1601.00117 Instrumentation and Methods for Astrophysics +1601.00136 Theory +1601.00345 Soft Condensed Matter +1601.00686 Solar and Stellar Astrophysics +1601.00746 +1601.01212 +1601.01280 Computation and Language +1601.01309 Optics +1601.01324 +1601.01477 Mesoscale and Nanoscale Physics +1601.01553 Trading and Market Microstructure +1601.01637 Statistical Mechanics +1601.01776 Combinatorics +1601.01803 Solar and Stellar Astrophysics +1601.01883 Mesoscale and Nanoscale Physics +1601.02105 +1601.02669 +1601.03161 Phenomenology +1601.03238 +1601.03387 Cosmology and Nongalactic Astrophysics +1601.03624 Statistical Mechanics +1601.03760 Materials Science +1601.03880 Mesoscale and Nanoscale Physics +1601.04206 Statistical Mechanics +1601.05412 Theory +1601.05414 Strongly Correlated Electrons +1601.05425 Astrophysics of Galaxies +1601.05519 Molecular Networks +1601.05524 Strongly Correlated Electrons +1601.05983 History and Overview +1601.06787 High Energy Astrophysical Phenomena +1601.06816 +1601.06955 Instrumentation and Detectors +1601.07295 Metric Geometry +1601.07297 Mesoscale and Nanoscale Physics +1601.07332 Mesoscale and Nanoscale Physics +1601.07844 Earth and Planetary Astrophysics +1601.07845 Chemical Physics +1602.00325 Mesoscale and Nanoscale Physics +1602.00613 Atomic Physics +1602.00785 Disordered Systems and Neural Networks +1602.00809 Cosmology and Nongalactic Astrophysics +1602.01101 Theory +1602.01231 Phenomenology +1602.01785 Superconductivity +1602.02080 Solar and Stellar Astrophysics +1602.02182 Strongly Correlated Electrons +1602.02504 Software Engineering +1602.02731 Operator Algebras +1602.02793 Phenomenology +1602.02805 Strongly Correlated Electrons +1602.02917 Experiment +1602.03029 Mesoscale and Nanoscale Physics +1602.03243 Quantum Gases +1602.03351 Learning +1602.03509 +1602.03527 Astrophysics of Galaxies +1602.03558 Cosmology and Nongalactic Astrophysics +1602.03562 Cosmology and Nongalactic Astrophysics +1602.03787 Materials Science +1602.03953 Materials Science +1602.04198 Cosmology and Nongalactic Astrophysics +1602.04199 High Energy Astrophysical Phenomena +1602.04308 High Energy Astrophysical Phenomena +1602.04427 Computation and Language +1602.04554 High Energy Astrophysical Phenomena +1602.04827 Earth and Planetary Astrophysics +1602.04883 Solar and Stellar Astrophysics +1602.05192 Phenomenology +1602.05577 Mesoscale and Nanoscale Physics +1602.05791 Quantum Gases +1602.05794 Theory +1602.06024 Theory +1602.06290 Theory +1602.06299 Astrophysics of Galaxies +1602.06321 Solar and Stellar Astrophysics +1602.06400 +1602.06829 Materials Science +1602.07292 High Energy Astrophysical Phenomena +1602.07298 +1602.07698 High Energy Astrophysical Phenomena +1602.07815 Solar and Stellar Astrophysics +1602.08993 Theory +1602.09005 Solar and Stellar Astrophysics +1602.09015 Experiment +1602.09073 Mesoscale and Nanoscale Physics +1603.00185 High Energy Astrophysical Phenomena +1603.00347 Optimization and Control +1603.00500 Neurons and Cognition +1603.00620 Strongly Correlated Electrons +1603.00654 Theory +1603.00826 Theory +1603.00844 Mesoscale and Nanoscale Physics +1603.00897 Probability +1603.00925 High Energy Astrophysical Phenomena +1603.01023 Group Theory +1603.01103 Statistical Finance +1603.01275 Cosmology and Nongalactic Astrophysics +1603.01599 Cosmology and Nongalactic Astrophysics +1603.01618 Solar and Stellar Astrophysics +1603.01757 Materials Science +1603.02879 Superconductivity +1603.02886 Computational Physics +1603.03142 Instrumentation and Methods for Astrophysics +1603.03219 Differential Geometry +1603.03280 Materials Science +1603.03300 +1603.03668 +1603.03835 Phenomenology +1603.04022 Earth and Planetary Astrophysics +1603.04859 Phenomenology +1603.04880 High Energy Astrophysical Phenomena +1603.05425 Atomic Physics +1603.05580 High Energy Astrophysical Phenomena +1603.05653 Astrophysics of Galaxies +1603.05674 Solar and Stellar Astrophysics +1603.05776 +1603.05878 Quantum Gases +1603.05913 High Energy Astrophysical Phenomena +1603.05924 Atomic Physics +1603.06076 Computation and Language +1603.06333 Mesoscale and Nanoscale Physics +1603.06659 +1603.06695 Logic +1603.06733 High Energy Astrophysical Phenomena +1603.06895 Astrophysics of Galaxies +1603.06939 Solar and Stellar Astrophysics +1603.06945 Earth and Planetary Astrophysics +1603.07163 High Energy Astrophysical Phenomena +1603.07323 Learning +1603.07429 High Energy Astrophysical Phenomena +1603.07753 Astrophysics of Galaxies +1603.07942 Astrophysics of Galaxies +1603.07983 Solar and Stellar Astrophysics +1603.08626 Astrophysics of Galaxies +1603.08644 Solar and Stellar Astrophysics +1603.08734 Atomic Physics +1603.08985 Instrumentation and Methods for Astrophysics +1603.09073 Cosmology and Nongalactic Astrophysics +1603.09109 High Energy Astrophysical Phenomena +1603.09354 Phenomenology +1603.09367 Materials Science +1603.09427 Materials Science +1603.09566 Mesoscale and Nanoscale Physics +1603.09612 Earth and Planetary Astrophysics +1603.09699 Solar and Stellar Astrophysics +1604.00031 Instrumentation and Methods for Astrophysics +1604.00120 Quantum Gases +1604.00218 Materials Science +1604.00242 Statistical Mechanics +1604.00343 +1604.00382 +1604.00523 Astrophysics of Galaxies +1604.00544 Solar and Stellar Astrophysics +1604.00595 Theory +1604.00631 Atomic Physics +1604.01037 Earth and Planetary Astrophysics +1604.01177 Solar and Stellar Astrophysics +1604.01222 Atomic Physics +1604.01413 Earth and Planetary Astrophysics +1604.01487 Quantum Gases +1604.01614 Strongly Correlated Electrons +1604.01671 Solar and Stellar Astrophysics +1604.01744 Solar and Stellar Astrophysics +1604.01933 Materials Science +1604.01935 Solar and Stellar Astrophysics +1604.02076 Earth and Planetary Astrophysics +1604.02285 High Energy Astrophysical Phenomena +1604.02298 Mesoscale and Nanoscale Physics +1604.02341 Superconductivity +1604.02507 Astrophysics of Galaxies +1604.02680 Solar and Stellar Astrophysics +1604.02987 Astrophysics of Galaxies +1604.03086 Astrophysics of Galaxies +1604.03188 Astrophysics of Galaxies +1604.03444 Earth and Planetary Astrophysics +1604.03554 Astrophysics of Galaxies +1604.03586 Astrophysics of Galaxies +1604.03678 Earth and Planetary Astrophysics +1604.03886 Phenomenology +1604.03967 Astrophysics of Galaxies +1604.04027 Astrophysics of Galaxies +1604.04118 Solar and Stellar Astrophysics +1604.04127 Cosmology and Nongalactic Astrophysics +1604.04290 Astrophysics of Galaxies +1604.04346 High Energy Astrophysical Phenomena +1604.04476 Astrophysics of Galaxies +1604.04636 Solar and Stellar Astrophysics +1604.04651 Astrophysics of Galaxies +1604.04817 High Energy Astrophysical Phenomena +1604.04868 Astrophysics of Galaxies +1604.04982 Solar and Stellar Astrophysics +1604.05031 Astrophysics of Galaxies +1604.05121 Astrophysics of Galaxies +1604.05254 Superconductivity +1604.05300 +1604.05441 Solar and Stellar Astrophysics +1604.05691 Solar and Stellar Astrophysics +1604.05807 Astrophysics of Galaxies +1604.06107 Cosmology and Nongalactic Astrophysics +1604.06344 Solar and Stellar Astrophysics +1604.06494 Solar and Stellar Astrophysics +1604.06667 Instrumentation and Methods for Astrophysics +1604.06719 +1604.06779 High Energy Astrophysical Phenomena +1604.07362 Astrophysics of Galaxies +1604.07418 Solar and Stellar Astrophysics +1604.07433 Astrophysics of Galaxies +1604.07505 Cosmology and Nongalactic Astrophysics +1604.07655 Cosmology and Nongalactic Astrophysics +1604.07659 Solar and Stellar Astrophysics +1604.07706 Learning +1604.07798 Materials Science +1604.08126 Materials Science +1604.08831 Earth and Planetary Astrophysics +1605.00275 Mesoscale and Nanoscale Physics +1605.00405 Dynamical Systems +1605.01024 General Topology +1605.01731 Earth and Planetary Astrophysics +1605.01844 High Energy Astrophysical Phenomena +1605.01918 Solar and Stellar Astrophysics +1605.02058 +1605.02091 Solar and Stellar Astrophysics +1605.02562 Solar and Stellar Astrophysics +1605.02622 Solar and Stellar Astrophysics +1605.02724 Atmospheric and Oceanic Physics +1605.02812 Materials Science +1605.03050 Solar and Stellar Astrophysics +1605.03366 High Energy Astrophysical Phenomena +1605.03413 High Energy Astrophysical Phenomena +1605.03499 Statistical Mechanics +1605.03526 Materials Science +1605.03599 Astrophysics of Galaxies +1605.03691 +1605.03941 Earth and Planetary Astrophysics +1605.04102 Optics +1605.04133 Mesoscale and Nanoscale Physics +1605.04536 +1605.04834 Optics +1605.05078 Astrophysics of Galaxies +1605.05294 Earth and Planetary Astrophysics +1605.05434 Probability +1605.05618 Earth and Planetary Astrophysics +1605.05673 Materials Science +1605.05958 Superconductivity +1605.06283 Earth and Planetary Astrophysics +1605.06603 Atomic Physics +1605.06618 Probability +1605.06679 Combinatorics +1605.06708 Computer Vision and Pattern Recognition +1605.06749 Cosmology and Nongalactic Astrophysics +1605.06799 Computation and Language +1605.06805 Analysis of PDEs +1605.06839 Analysis of PDEs +1605.06877 Atomic Physics +1605.06934 Optics +1605.06935 Earth and Planetary Astrophysics +1605.06950 Machine Learning +1605.06977 Functional Analysis +1605.06994 Astrophysics of Galaxies +1605.07009 Optimization and Control +1605.07075 Experiment +1605.07210 Theory +1605.07352 Earth and Planetary Astrophysics +1605.07379 Astrophysics of Galaxies +1605.07638 High Energy Astrophysical Phenomena +1605.07979 Astrophysics of Galaxies +1605.08022 High Energy Astrophysical Phenomena +1605.08090 Solar and Stellar Astrophysics +1605.08238 Instrumentation and Methods for Astrophysics +1605.08246 High Energy Astrophysical Phenomena +1605.08634 Popular Physics +1605.09020 Molecular Networks +1605.09050 +1605.09054 +1605.09100 High Energy Astrophysical Phenomena +1605.09101 Methodology +1605.09239 Solar and Stellar Astrophysics +1605.09468 Solar and Stellar Astrophysics +1605.09670 Numerical Analysis +1605.09717 Atomic Physics +1606.00006 Astrophysics of Galaxies +1606.00013 Astrophysics of Galaxies +1606.00225 Solar and Stellar Astrophysics +1606.00366 Fluid Dynamics +1606.00406 Soft Condensed Matter +1606.00444 +1606.00780 Solar and Stellar Astrophysics +1606.00819 Computation and Language +1606.00845 +1606.00915 Computer Vision and Pattern Recognition +1606.00926 Plasma Physics +1606.01272 Biological Physics +1606.01387 Distributed, Parallel, and Cluster Computing +1606.01491 Probability +1606.01509 +1606.01520 High Energy Astrophysical Phenomena +1606.01584 Cryptography and Security +1606.01592 Information Theory +1606.01783 Combinatorics +1606.01890 Analysis of PDEs +1606.01897 Mesoscale and Nanoscale Physics +1606.01916 Combinatorics +1606.01918 General Physics +1606.01919 Physics Education +1606.01927 Disordered Systems and Neural Networks +1606.01928 Dynamical Systems +1606.01929 Numerical Analysis +1606.01931 Atomic Physics +1606.01935 Optimization and Control +1606.01937 Networking and Internet Architecture +1606.01939 Dynamical Systems +1606.01940 Classical Physics +1606.01941 Information Theory +1606.01942 Representation Theory +1606.01943 Information Theory +1606.01944 Probability +1606.01945 Phenomenology +1606.01949 Artificial Intelligence +1606.01950 Statistics Theory +1606.01951 Soft Condensed Matter +1606.01953 Networking and Internet Architecture +1606.01955 Algebraic Geometry +1606.01957 Databases +1606.01963 Atomic Physics +1606.01965 Networking and Internet Architecture +1606.01966 Distributed, Parallel, and Cluster Computing +1606.01969 Methodology +1606.01970 Dynamical Systems +1606.01971 Cryptography and Security +1606.01972 Distributed, Parallel, and Cluster Computing +1606.01975 Combinatorics +1606.01977 Algebraic Geometry +1606.01981 Neural and Evolutionary Computing +1606.01982 Rings and Algebras +1606.01985 Information Theory +1606.01986 Number Theory +1606.01990 Computation and Language +1606.01992 Optimization and Control +1606.01996 Atomic Physics +1606.01997 Mesoscale and Nanoscale Physics +1606.01998 Complex Variables +1606.02003 Computation and Language +1606.02007 Distributed, Parallel, and Cluster Computing +1606.02008 Classical Analysis and ODEs +1606.02009 Computer Vision and Pattern Recognition +1606.02012 Computation and Language +1606.02014 Probability +1606.02015 Data Structures and Algorithms +1606.02016 Software Engineering +1606.02017 Other Computer Science +1606.02018 Logic in Computer Science +1606.02019 Logic in Computer Science +1606.02020 Logic in Computer Science +1606.02021 Logic in Computer Science +1606.02022 Programming Languages +1606.02023 Logic in Computer Science +1606.02024 Logic in Computer Science +1606.02025 Software Engineering +1606.02026 Metric Geometry +1606.02028 Combinatorics +1606.02031 Computer Vision and Pattern Recognition +1606.02032 Artificial Intelligence +1606.02034 Algebraic Geometry +1606.02035 Optimization and Control +1606.02040 Functional Analysis +1606.02041 Artificial Intelligence +1606.02043 Mesoscale and Nanoscale Physics +1606.02045 General Finance +1606.02047 Materials Science +1606.02052 Instrumentation and Methods for Astrophysics +1606.02053 Numerical Analysis +1606.02054 Computation +1606.02055 Computational Geometry +1606.02056 Combinatorics +1606.02057 Analysis of PDEs +1606.02059 Commutative Algebra +1606.02060 Combinatorics +1606.02061 Statistical Mechanics +1606.02062 Solar and Stellar Astrophysics +1606.02065 Superconductivity +1606.02066 Optimization and Control +1606.02068 Theory +1606.02069 Strongly Correlated Electrons +1606.02070 Spectral Theory +1606.02071 Operator Algebras +1606.02072 Materials Science +1606.02074 Applications +1606.02077 Learning +1606.02081 Combinatorics +1606.02085 Rings and Algebras +1606.02088 Materials Science +1606.02092 Computer Vision and Pattern Recognition +1606.02094 Algebraic Geometry +1606.02096 Artificial Intelligence +1606.02097 Group Theory +1606.02098 Metric Geometry +1606.02103 Other Condensed Matter +1606.02105 Materials Science +1606.02106 Analysis of PDEs +1606.02107 Networking and Internet Architecture +1606.02109 Machine Learning +1606.02111 Robotics +1606.02112 Phenomenology +1606.02114 Fluid Dynamics +1606.02117 Number Theory +1606.02119 Software Engineering +1606.02122 Mesoscale and Nanoscale Physics +1606.02123 +1606.02125 Functional Analysis +1606.02127 Classical Physics +1606.02129 Classical Analysis and ODEs +1606.02131 Classical Physics +1606.02140 Complex Variables +1606.02141 Representation Theory +1606.02142 Computers and Society +1606.02143 Information Theory +1606.02146 Instrumentation and Detectors +1606.02147 Computer Vision and Pattern Recognition +1606.02154 Combinatorics +1606.02155 Metric Geometry +1606.02158 Analysis of PDEs +1606.02159 +1606.02161 Dynamical Systems +1606.02162 Data Structures and Algorithms +1606.02165 Numerical Analysis +1606.02167 Cell Behavior +1606.02169 Algebraic Geometry +1606.02170 Computer Vision and Pattern Recognition +1606.02172 Classical Physics +1606.02173 +1606.02174 Analysis of PDEs +1606.02175 Differential Geometry +1606.02177 Materials Science +1606.02180 Algebraic Geometry +1606.02184 Combinatorics +1606.02186 Applications +1606.02188 Atomic Physics +1606.02190 Optimization and Control +1606.02194 Optimization and Control +1606.02200 Mesoscale and Nanoscale Physics +1606.02205 Systems and Control +1606.02208 Databases +1606.02210 Computer Vision and Pattern Recognition +1606.02221 Artificial Intelligence +1606.02222 Combinatorics +1606.02223 Numerical Analysis +1606.02224 Optimization and Control +1606.02226 Probability +1606.02227 Group Theory +1606.02230 Networking and Internet Architecture +1606.02231 Artificial Intelligence +1606.02233 Computational Geometry +1606.02234 Methodology +1606.02235 Methodology +1606.02237 Databases +1606.02238 Group Theory +1606.02241 Superconductivity +1606.02242 Physics Education +1606.02247 Group Theory +1606.02248 General Physics +1606.02250 Databases +1606.02252 Quantitative Methods +1606.02254 Computer Vision and Pattern Recognition +1606.02255 Strongly Correlated Electrons +1606.02256 Materials Science +1606.02258 Probability +1606.02261 Machine Learning +1606.02263 +1606.02264 Combinatorics +1606.02267 Number Theory +1606.02274 Methodology +1606.02275 Learning +1606.02280 Computer Vision and Pattern Recognition +1606.02282 Algebraic Geometry +1606.02283 Physics and Society +1606.02284 Superconductivity +astro-ph/9301012 +astro-ph/9304018 +astro-ph/9307014 +astro-ph/9307015 +astro-ph/9308007 +astro-ph/9308040 +astro-ph/9309012 +astro-ph/9310045 +astro-ph/9311025 +astro-ph/9401029 +astro-ph/9401035 +astro-ph/9404056 +astro-ph/9405038 +astro-ph/9406048 +astro-ph/9407076 +astro-ph/9409062 +astro-ph/9410002 +astro-ph/9410047 +astro-ph/9501047 +astro-ph/9501060 +astro-ph/9501102 +astro-ph/9501108 +astro-ph/9502071 +astro-ph/9502099 +astro-ph/9503008 +astro-ph/9503022 +astro-ph/9503085 +astro-ph/9503101 +astro-ph/9503108 +astro-ph/9504088 +astro-ph/9504096 +astro-ph/9505048 +astro-ph/9505052 +astro-ph/9506039 +astro-ph/9506085 +astro-ph/9506089 +astro-ph/9507050 +astro-ph/9507061 +astro-ph/9507085 +astro-ph/9508009 +astro-ph/9508076 +astro-ph/9508079 +astro-ph/9508124 +astro-ph/9509096 +astro-ph/9509128 +astro-ph/9510016 +astro-ph/9510049 +astro-ph/9510148 +astro-ph/9511030 +astro-ph/9601084 +astro-ph/9601085 +astro-ph/9601086 +astro-ph/9601093 +astro-ph/9602008 +astro-ph/9602044 +astro-ph/9603031 +astro-ph/9604118 +astro-ph/9605062 +astro-ph/9605089 +astro-ph/9605130 +astro-ph/9605136 +astro-ph/9606015 +astro-ph/9606058 +astro-ph/9606067 +astro-ph/9607007 +astro-ph/9607056 +astro-ph/9608101 +astro-ph/9608142 +astro-ph/9608144 +astro-ph/9608147 +astro-ph/9609018 +astro-ph/9610097 +astro-ph/9610187 +astro-ph/9612060 +astro-ph/9612067 +astro-ph/9612073 +hep-th/0312158 Theory +0704.3672 General Mathematics +0805.1984 Mesoscale and Nanoscale Physics +1103.4250 Cosmology and Nongalactic Astrophysics +1108.5910 Complex Variables +1111.1690 Dynamical Systems +1111.3020 Algebraic Geometry +1201.3310 Discrete Mathematics +1202.3672 Logic +1202.4909 Number Theory +1203.0995 Algebraic Geometry +1207.0638 Combinatorics +1209.0170 Analysis of PDEs +1210.1244 Complex Variables +1211.1890 Number Theory +1301.1496 Risk Management +1302.2788 Data Structures and Algorithms +1303.3345 Classical Analysis and ODEs +1304.6693 Information Theory +1304.7626 Probability +1306.0056 Algebraic Topology +1307.7816 Quantum Algebra +1309.2050 Commutative Algebra +1310.2099 Algebraic Geometry +1310.3422 Numerical Analysis +1311.0549 Instrumentation and Methods for Astrophysics +1311.2355 Computational Complexity +1312.1609 Classical Analysis and ODEs +1401.7310 Popular Physics +1402.1135 Dynamical Systems +1402.1349 Machine Learning +1402.5506 Representation Theory +1402.5836 Machine Learning +1403.1309 Analysis of PDEs +1404.4329 +1404.5584 Computational Geometry +1405.2424 Discrete Mathematics +1405.5161 Algebraic Geometry +1405.7795 +1406.0281 Machine Learning +1406.4704 Computation +1407.0806 Representation Theory +1407.1970 +1407.2454 Fluid Dynamics +1407.3759 Logic +1407.6167 Soft Condensed Matter +1407.8428 Analysis of PDEs +1408.1477 +1408.3699 Logic +1408.5764 Representation Theory +1408.6497 Numerical Analysis +1408.6794 Symplectic Geometry +1409.0226 Differential Geometry +1409.3040 Learning +1409.5757 Mathematical Software +1409.6615 Superconductivity +1409.7838 Cosmology and Nongalactic Astrophysics +1409.7840 Cosmology and Nongalactic Astrophysics +1409.7996 Representation Theory +1409.8167 Dynamical Systems +1410.2087 Networking and Internet Architecture +1410.6379 Solar and Stellar Astrophysics +1411.3974 Cosmology and Nongalactic Astrophysics +1411.7801 Numerical Analysis +1412.0005 +1412.0212 Category Theory +1412.0464 Numerical Analysis +1412.0556 Optimization and Control +1412.5778 Number Theory +1412.5955 Subcellular Processes +1412.8537 Theory +1501.02377 Numerical Analysis +1501.02757 Mesoscale and Nanoscale Physics +1501.04577 Optics +1501.07800 Distributed, Parallel, and Cluster Computing +1502.00450 Probability +1502.00654 Solar and Stellar Astrophysics +1502.05092 Algebraic Topology +1503.05747 Functional Analysis +1503.06466 Information Theory +1504.00353 Information Theory +1504.00682 +1504.01355 Information Theory +1504.02852 Statistics Theory +1504.02931 Machine Learning +1504.06338 Mesoscale and Nanoscale Physics +1504.06839 Theory +1504.07697 Computational Complexity +1505.00317 Number Theory +1505.01459 Hardware Architecture +1505.03302 Classical Analysis and ODEs +1505.03878 Algebraic Geometry +1505.04269 Combinatorics +1505.04372 +1505.05252 Analysis of PDEs +1505.07036 Mesoscale and Nanoscale Physics +1506.00611 +1506.00623 Phenomenology +1506.01239 Probability +1506.02650 Classical Physics +1506.02659 Strongly Correlated Electrons +1506.02982 Soft Condensed Matter +1506.03374 Learning +1506.04073 Geometric Topology +1506.04646 Number Theory +1506.05665 Phenomenology +1506.05835 Dynamical Systems +1506.05868 Probability +1506.06191 Algebraic Geometry +1507.00326 Superconductivity +1507.01390 Neurons and Cognition +1507.02142 +1507.05341 Symplectic Geometry +1507.05795 Computational Engineering, Finance, and Science +1507.06217 Computational Geometry +1507.06738 Learning +1507.07778 Geometric Topology +1507.07848 Cryptography and Security +1507.08263 Optimization and Control +1508.01152 Theory +1508.02155 Mesoscale and Nanoscale Physics +1508.02232 Representation Theory +1508.07066 Software Engineering +1509.00976 Information Theory +1509.03939 Materials Science +1509.05205 Geometric Topology +1509.05983 Statistical Mechanics +1509.07491 +1509.07766 +1510.00113 +1510.00156 History and Philosophy of Physics +1510.00657 Combinatorics +1510.02594 Methodology +1510.02716 Group Theory +1510.03333 Strongly Correlated Electrons +1510.07224 Combinatorics +1510.07879 Optics +1510.08938 Dynamical Systems +1511.00224 Probability +1511.00545 Dynamical Systems +1511.01368 Logic in Computer Science +1511.02082 Number Theory +1511.03970 Soft Condensed Matter +1511.04500 Geometric Topology +1511.04503 Metric Geometry +1511.05066 Phenomenology +1511.05569 Strongly Correlated Electrons +1511.05871 Earth and Planetary Astrophysics +1511.06282 +1511.06509 Numerical Analysis +1511.06599 Pattern Formation and Solitons +1511.06633 Pattern Formation and Solitons +1511.06695 Statistical Mechanics +1511.09206 Soft Condensed Matter +1511.09220 +1512.00240 Mesoscale and Nanoscale Physics +1512.00549 Mesoscale and Nanoscale Physics +1512.01080 Dynamical Systems +1512.01513 Commutative Algebra +1512.02214 Materials Science +1512.03030 Strongly Correlated Electrons +1512.03407 Quantum Gases +1512.05058 Optimization and Control +1512.05677 Atomic Physics +1512.06463 Strongly Correlated Electrons +1512.07075 Methodology +1512.08293 Symplectic Geometry +1512.08435 Commutative Algebra +1512.08548 Classical Analysis and ODEs +1512.08905 +1512.09082 Theory +1512.09241 Phenomenology +1601.00229 Computational Finance +1601.01352 Mathematical Finance +1601.01633 Group Theory +1601.02261 Mesoscale and Nanoscale Physics +1601.02522 Data Structures and Algorithms +1601.03026 Quantum Gases +1601.03635 Phenomenology +1601.04043 General Finance +1601.04140 Theory +1601.05041 Symplectic Geometry +1601.05541 Phenomenology +1601.05785 Quantum Gases +1601.05856 Information Theory +1601.06048 Information Theory +1601.06294 Methodology +1601.06521 Logic in Computer Science +1601.06684 Information Theory +1601.06980 Adaptation and Self-Organizing Systems +1601.08078 Subcellular Processes +1602.00376 Information Theory +1602.00859 Physics and Society +1602.01124 Optimization and Control +1602.02489 Chaotic Dynamics +1602.03250 Quantum Algebra +1602.03542 Symplectic Geometry +1602.03772 +1602.04097 Number Theory +1602.04229 Information Theory +1602.04274 Discrete Mathematics +1602.04616 Statistical Mechanics +1602.04955 Computational Complexity +1602.05679 Mesoscale and Nanoscale Physics +1602.05867 Mesoscale and Nanoscale Physics +1602.06030 Computation +1602.06143 Phenomenology +1602.06221 Logic in Computer Science +1602.06902 Information Theory +1602.06981 Tissues and Organs +1602.07406 Dynamical Systems +1602.07509 Logic +1602.08483 Strongly Correlated Electrons +1602.08590 Methodology +1602.08886 Learning +1602.09018 High Energy Astrophysical Phenomena +1603.00011 Commutative Algebra +1603.00850 Economics +1603.01191 Discrete Mathematics +1603.01385 High Energy Astrophysical Phenomena +1603.02551 Statistical Mechanics +1603.03041 Strongly Correlated Electrons +1603.03228 Combinatorics +1603.03293 Data Analysis, Statistics and Probability +1603.03705 Probability +1603.04603 +1603.04885 Strongly Correlated Electrons +1603.05696 Atomic Physics +1603.05848 Statistical Mechanics +1603.05921 Materials Science +1603.06376 Other Condensed Matter +1603.06462 Statistics Theory +1603.07058 Differential Geometry +1603.07214 Probability +1603.07550 Mesoscale and Nanoscale Physics +1603.07998 Computer Vision and Pattern Recognition +1603.08011 High Energy Astrophysical Phenomena +1603.08339 Optics +1603.08669 Materials Science +1603.08670 Instrumentation and Methods for Astrophysics +1603.09250 Number Theory +1603.09711 Physics and Society +1604.01008 Phenomenology +1604.01052 Quantum Gases +1604.02131 Materials Science +1604.02443 Number Theory +1604.02857 +1604.03072 Data Structures and Algorithms +1604.03109 Cosmology and Nongalactic Astrophysics +1604.03478 Fluid Dynamics +1604.03838 Soft Condensed Matter +1604.03969 Fluid Dynamics +1604.04552 Phenomenology +1604.04795 Artificial Intelligence +1604.04827 Digital Libraries +1604.04934 Differential Geometry +1604.05635 Theory +1604.05732 +1604.06102 Astrophysics of Galaxies +1604.06135 Combinatorics +1604.06286 Rings and Algebras +1604.07581 Data Structures and Algorithms +1604.08077 +1604.08473 Functional Analysis +1604.08928 Plasma Physics +1605.00474 Cryptography and Security +1605.00726 Dynamical Systems +1605.00896 Strongly Correlated Electrons +1605.02770 Astrophysics of Galaxies +1605.03817 Computers and Society +1605.04609 Discrete Mathematics +1605.05805 Strongly Correlated Electrons +1605.06039 Theory +1605.06534 +1605.06571 Astrophysics of Galaxies +1605.07334 Learning +1605.08877 +1605.09237 Computational Physics +1606.00183 Rings and Algebras +1606.00238 Commutative Algebra +1606.00418 Combinatorics +1606.00448 Astrophysics of Galaxies +1606.01086 Materials Science +1606.01226 Theory +1606.01345 Algebraic Geometry +1606.01400 Programming Languages +1606.01733 +1606.01788 Statistical Mechanics +1606.01823 Statistical Mechanics +1606.02725 Algebraic Geometry +1606.02824 Theory +1606.03075 +1606.03651 Probability +1606.04325 Analysis of PDEs +1606.04626 Differential Geometry +1606.04999 Category Theory +1606.05791 +1606.06412 Combinatorics +1606.06737 Disordered Systems and Neural Networks +1606.06990 +1606.07304 +1606.07400 Materials Science +1606.07552 Mesoscale and Nanoscale Physics +1606.07854 Strongly Correlated Electrons +1606.08111 Differential Geometry +1606.08299 Emerging Technologies +1606.08327 Number Theory +1606.08330 Phenomenology +1606.08467 Complex Variables +1606.08483 +1606.08656 Symplectic Geometry +1606.09171 +1606.09270 Robotics +1606.09336 Phenomenology +1606.09590 +1606.09624 Solar and Stellar Astrophysics +1607.00148 Artificial Intelligence +1607.00476 Discrete Mathematics +1607.01212 Phenomenology +1607.01319 Algebraic Geometry +1607.01393 Astrophysics of Galaxies +1607.01705 +1607.01981 Machine Learning +1607.01997 Numerical Analysis +1607.02196 Computer Vision and Pattern Recognition +1607.02340 Analysis of PDEs +1607.02355 Computation and Language +1607.02409 Analysis of PDEs +1607.02443 Instrumentation and Methods for Astrophysics +1607.02505 Materials Science +1607.02515 Cosmology and Nongalactic Astrophysics +1607.02516 Methodology +1607.02522 Optimization and Control +1607.02524 Information Theory +1607.02527 Phenomenology +1607.02528 Soft Condensed Matter +1607.02534 Analysis of PDEs +1607.02535 Learning +1607.02536 Optimization and Control +1607.02544 Algebraic Geometry +1607.02546 Cosmology and Nongalactic Astrophysics +1607.02547 Computer Vision and Pattern Recognition +1607.02550 Mesoscale and Nanoscale Physics +1607.02553 Mesoscale and Nanoscale Physics +1607.02556 Computer Vision and Pattern Recognition +1607.02557 Dynamical Systems +1607.02559 Learning +1607.02560 Numerical Analysis +1607.02563 Probability +1607.02568 Computer Vision and Pattern Recognition +1607.02569 Materials Science +1607.02571 Classical Analysis and ODEs +1607.02572 Phenomenology +1607.02573 Computational Engineering, Finance, and Science +1607.02574 Physics and Society +1607.02581 Populations and Evolution +1607.02582 Astrophysics of Galaxies +1607.02583 Analysis of PDEs +1607.02584 Numerical Analysis +1607.02586 Computer Vision and Pattern Recognition +1607.02588 Physics and Society +1607.02590 Rings and Algebras +1607.02591 Rings and Algebras +1607.02592 Materials Science +1607.02596 Cosmology and Nongalactic Astrophysics +1607.02598 Computer Science and Game Theory +1607.02603 Spectral Theory +1607.02605 Atomic Physics +1607.02608 Analysis of PDEs +1607.02611 Classical Analysis and ODEs +1607.02612 Mesoscale and Nanoscale Physics +1607.02613 Information Theory +1607.02614 Number Theory +1607.02618 Combinatorics +1607.02620 Classical Analysis and ODEs +1607.02621 Differential Geometry +1607.02622 Classical Analysis and ODEs +1607.02623 Statistics Theory +1607.02624 Optimization and Control +1607.02627 Materials Science +1607.02630 Statistics Theory +1607.02632 Robotics +1607.02634 Analysis of PDEs +1607.02635 High Energy Astrophysical Phenomena +1607.02636 Functional Analysis +1607.02637 Discrete Mathematics +1607.02639 +1607.02640 Materials Science +1607.02641 Information Retrieval +1607.02642 Molecular Networks +1607.02643 Computer Vision and Pattern Recognition +1607.02644 Dynamical Systems +1607.02645 Atmospheric and Oceanic Physics +1607.02646 Distributed, Parallel, and Cluster Computing +1607.02649 Information Theory +1607.02651 Mesoscale and Nanoscale Physics +1607.02652 Human-Computer Interaction +1607.02655 Methodology +1607.02657 Disordered Systems and Neural Networks +1607.02660 Human-Computer Interaction +1607.02661 K-Theory and Homology +1607.02665 Learning +1607.02668 Information Theory +1607.02669 Databases +1607.02670 Machine Learning +1607.02674 Information Theory +1607.02676 Machine Learning +1607.02677 Information Theory +1607.02678 Computer Vision and Pattern Recognition +1607.02680 Dynamical Systems +1607.02681 Information Theory +1607.02682 Databases +1607.02684 Differential Geometry +1607.02689 Statistics Theory +1607.02690 Theory +1607.02691 +1607.02692 +1607.02694 Logic in Computer Science +1607.02698 +1607.02702 Algebraic Topology +1607.02705 Learning +1607.02709 Mesoscale and Nanoscale Physics +1607.02712 Materials Science +1607.02713 Representation Theory +1607.02714 Social and Information Networks +1607.02717 Neural and Evolutionary Computing +1607.02719 Rings and Algebras +1607.02721 Materials Science +1607.02723 Analysis of PDEs +1607.02725 Data Structures and Algorithms +1607.02727 Statistics Theory +1607.02730 Fluid Dynamics +1607.02732 Analysis of PDEs +1607.02734 Distributed, Parallel, and Cluster Computing +1607.02735 Applications +1607.02736 +1607.02738 Machine Learning +1607.02739 +1607.02741 Differential Geometry +1607.02742 +1607.02744 Systems and Control +1607.02746 Dynamical Systems +1607.02751 Phenomenology +1607.02754 Information Retrieval +1607.02755 Complex Variables +1607.02758 Computation +1607.02760 Systems and Control +1607.02762 Complex Variables +1607.02763 Artificial Intelligence +1607.02766 Information Theory +1607.02767 Optimization and Control +1607.02769 Computer Vision and Pattern Recognition +1607.02770 Computational Geometry +1607.02774 Experiment +1607.02777 Earth and Planetary Astrophysics +1607.02780 Chemical Physics +1607.02782 Optics +1607.02784 Computation and Language +1607.02786 Category Theory +1607.02788 Computation +1607.02789 Computation and Language +1607.02790 Logic in Computer Science +1607.02791 Computation and Language +1607.02792 Combinatorics +1607.02795 Atmospheric and Oceanic Physics +1607.02800 Dynamical Systems +1607.02802 Computation and Language +1607.02803 Representation Theory +1607.02805 Cryptography and Security +1607.02808 Materials Science +1607.02809 Information Theory +1607.02815 Computer Vision and Pattern Recognition +1607.02816 Accelerator Physics +1607.02822 Information Theory +1607.02824 +1607.02825 Algebraic Topology +1607.02826 Accelerator Physics +1607.02828 Biological Physics +1607.02829 Computer Vision and Pattern Recognition +1607.02833 Statistics Theory +1607.02835 Mathematical Software +1607.02836 Analysis of PDEs +1607.02838 Optics +1607.02840 Mesoscale and Nanoscale Physics +1607.02841 Physics and Society +1607.02842 Optimization and Control +1607.02843 Theory +1607.02845 +1607.02846 Dynamical Systems +1607.02847 Operator Algebras +1607.02853 Superconductivity +1607.02854 Strongly Correlated Electrons +1607.02855 Complex Variables +1607.02857 Neural and Evolutionary Computing +1607.02858 Learning +1607.02862 Analysis of PDEs +1607.02863 Number Theory +1607.02867 Robotics +1607.02868 Accelerator Physics +1607.02870 Space Physics +1607.02871 +1607.02873 Algebraic Geometry +1607.02877 Theory +1607.02878 Optimization and Control +1607.02880 Logic +1607.02883 Methodology +1607.02886 Superconductivity +1607.02887 Representation Theory +1607.02889 +1607.02890 Theory +1607.02893 Systems and Control +1607.02895 Systems and Control +1607.02897 Physics and Society +1607.02901 Superconductivity +1607.02902 Programming Languages +1607.02904 Computational Engineering, Finance, and Science +1607.02906 Mesoscale and Nanoscale Physics +1607.02907 Differential Geometry +1607.02909 +1607.02910 Number Theory +1607.02911 Data Structures and Algorithms +1607.02914 Information Theory +1607.02915 History and Philosophy of Physics +1607.02916 Classical Physics +1607.02917 Computer Science and Game Theory +1607.02918 Optics +1607.02922 Combinatorics +1607.02923 Differential Geometry +1607.02925 Information Theory +1607.02927 Programming Languages +1607.02928 Accelerator Physics +1607.02929 +1607.02930 Phenomenology +1607.02934 +1607.02935 Strongly Correlated Electrons +1607.02936 Computer Vision and Pattern Recognition +1607.02942 Physics Education +1607.02943 Dynamical Systems +1607.02945 Combinatorics +1607.02946 Physics Education +1607.02949 Mesoscale and Nanoscale Physics +1607.02952 Social and Information Networks +1607.02953 Logic +1607.02955 Data Structures and Algorithms +1607.02956 Number Theory +1607.02957 Applications +1607.02960 +1607.02962 Probability +1607.02963 Multiagent Systems +1607.02964 Cosmology and Nongalactic Astrophysics +1607.02966 Systems and Control +1607.02968 Soft Condensed Matter +1607.02972 Classical Analysis and ODEs +1607.02980 Atmospheric and Oceanic Physics +1607.02986 Computational Complexity +1607.02987 +1607.02989 Theory +1607.02990 Analysis of PDEs +1607.02991 +1607.02993 Methodology +1607.02995 Algebraic Geometry +1607.02997 Theory +1607.02998 Probability +1607.03000 Astrophysics of Galaxies +1607.03001 +1607.03002 Earth and Planetary Astrophysics +1607.03004 Differential Geometry +1607.03007 Number Theory +1607.03010 Group Theory +1607.03011 General Physics +1607.03013 Optimization and Control +1607.03014 Metric Geometry +1607.03015 Combinatorics +1607.03018 Combinatorics +1607.03021 Computer Vision and Pattern Recognition +1607.03022 Dynamical Systems +1607.03026 Machine Learning +1607.03027 Number Theory +1607.03029 Earth and Planetary Astrophysics +1607.03031 Pattern Formation and Solitons +1607.03033 Functional Analysis +1607.03034 Instrumentation and Methods for Astrophysics +1607.03036 Probability +1607.03037 Materials Science +1607.03043 Group Theory +1607.03044 +1607.03050 Learning +1607.03051 Instrumentation and Methods for Astrophysics +1607.03053 Theory +1607.03055 Computation and Language +1607.03056 Dynamical Systems +1607.03057 Social and Information Networks +1607.03062 Mesoscale and Nanoscale Physics +1607.03064 Number Theory +1607.03065 Phenomenology +1607.03067 Mesoscale and Nanoscale Physics +1607.03068 Logic +1607.03072 +1607.03073 Differential Geometry +1607.03074 Probability +1607.03080 Methodology +1607.03081 Numerical Analysis +1607.03082 Probability +1607.03086 Probability +1607.03088 Superconductivity +1607.03089 Differential Geometry +1607.03092 Numerical Analysis +1607.03094 Algebraic Geometry +1607.03096 Probability +1607.03097 Number Theory +cond-mat/0008097 +cond-mat/9302033 +0710.4589 Probability +0711.4317 Number Theory +0908.1649 Optimization and Control +1001.4683 Differential Geometry +1003.3029 Geometric Topology +1006.2771 Cosmology and Nongalactic Astrophysics +1008.2017 Differential Geometry +1008.4495 Group Theory +1110.2077 +1205.2180 General Mathematics +1205.6082 Computational Geometry +1208.5600 Computation +1209.4154 Fluid Dynamics +1210.3021 General Physics +1302.5387 Spectral Theory +1305.5797 Probability +1308.1883 Computation +1308.2128 Dynamical Systems +1310.7697 Numerical Analysis +1310.7863 Differential Geometry +1311.6323 Analysis of PDEs +1312.1724 Combinatorics +1312.4166 High Energy Astrophysical Phenomena +1401.7800 Rings and Algebras +1403.2660 Statistics Theory +1404.2750 Computer Science and Game Theory +1404.3740 Quantum Gases +1404.6677 Probability +1405.1158 Representation Theory +1405.4563 Symplectic Geometry +1406.1404 Databases +1410.0072 Algebraic Geometry +1410.1520 +1410.3076 Analysis of PDEs +1410.5169 Computational Complexity +1410.7120 K-Theory and Homology +1411.1493 +1411.3327 Mesoscale and Nanoscale Physics +1411.4921 +1412.3186 +1412.4338 Probability +1412.6565 Optimization and Control +1501.02601 Cryptography and Security +1501.07585 Classical Analysis and ODEs +1502.00477 Phenomenology +1502.00755 Representation Theory +1503.03258 Neurons and Cognition +1503.07614 Symplectic Geometry +1503.09054 +1504.00866 Instrumentation and Methods for Astrophysics +1504.01079 Computation +1505.00933 High Energy Astrophysical Phenomena +1505.02969 Solar and Stellar Astrophysics +1505.03003 Superconductivity +1505.03472 Optics +1505.03492 +1505.05405 Information Theory +1505.06329 Materials Science +1505.06415 Phenomenology +1506.01692 Analysis of PDEs +1506.02861 Quantum Gases +1506.04538 +1506.06620 +1506.06703 Number Theory +1507.00926 Classical Analysis and ODEs +1507.01707 Probability +1507.02083 Physics Education +1507.02635 Materials Science +1507.02734 General Physics +1507.03532 Instrumentation and Methods for Astrophysics +1507.05746 Networking and Internet Architecture +1507.07743 Phenomenology +1507.07988 Exactly Solvable and Integrable Systems +1508.00248 +1508.02045 Computational Physics +1508.02154 Soft Condensed Matter +1508.04344 Dynamical Systems +1508.05701 Mesoscale and Nanoscale Physics +1508.05976 Algebraic Geometry +1508.05977 Information Theory +1508.07511 Methodology +1509.00302 Probability +1509.00807 Probability +1509.00861 Materials Science +1509.01817 Statistics Theory +1509.06564 Operator Algebras +1509.07118 Phenomenology +1509.07297 Superconductivity +1510.02702 Methodology +1510.04123 +1510.04254 Fluid Dynamics +1510.04985 Quantum Gases +1510.06815 Phenomenology +1510.06852 Methodology +1510.07737 Strongly Correlated Electrons +1510.07969 Strongly Correlated Electrons +1511.01015 Phenomenology +1511.02425 Information Theory +1511.03319 Materials Science +1511.03328 Computer Vision and Pattern Recognition +1511.03339 Computer Vision and Pattern Recognition +1511.03828 Combinatorics +1511.03870 Group Theory +1511.04923 Probability +1511.05864 Machine Learning +1511.06393 Learning +1511.06411 Learning +1511.08382 +1511.09307 Instrumentation and Methods for Astrophysics +1512.01291 Phenomenology +1512.02056 Materials Science +1512.03685 Cryptography and Security +1512.04527 Astrophysics of Galaxies +1512.06038 Genomics +1512.06562 Phenomenology +1512.06715 Phenomenology +1512.07247 Classical Analysis and ODEs +1512.07756 Solar and Stellar Astrophysics +1512.08917 Instrumentation and Methods for Astrophysics +1601.00009 Applications +1601.00415 Materials Science +1601.02637 Statistical Mechanics +1601.02726 Superconductivity +1601.02861 +1601.03106 +1601.03609 Functional Analysis +1601.04277 Lattice +1601.04311 Group Theory +1601.04324 Mesoscale and Nanoscale Physics +1601.04519 +1601.07386 Cosmology and Nongalactic Astrophysics +1601.07427 Optics +1601.08218 Theory +1602.00128 Plasma Physics +1602.00547 Systems and Control +1602.00620 +1602.00860 Cryptography and Security +1602.01333 Theory +1602.01515 K-Theory and Homology +1602.03090 Statistics Theory +1602.03476 Information Theory +1602.03546 Superconductivity +1602.03666 Solar and Stellar Astrophysics +1602.05625 Analysis of PDEs +1602.07726 Data Structures and Algorithms +1602.08126 Phenomenology +1602.08252 Other Condensed Matter +1603.00466 Solar and Stellar Astrophysics +1603.00562 Computer Science and Game Theory +1603.01758 Logic in Computer Science +1603.02145 Phenomenology +1603.02160 Machine Learning +1603.03334 Strongly Correlated Electrons +1603.04446 Mesoscale and Nanoscale Physics +1603.05741 Materials Science +1603.06458 Lattice +1603.07177 Strongly Correlated Electrons +1603.07338 +1603.08160 Chemical Physics +1603.08645 +1603.08925 Theory +1603.08938 Quantum Algebra +1603.09134 Solar and Stellar Astrophysics +1603.09202 Experiment +1604.00971 Data Analysis, Statistics and Probability +1604.02174 General Mathematics +1604.02899 Instrumentation and Detectors +1604.03038 History and Philosophy of Physics +1604.03812 Experiment +1604.03896 Experiment +1604.04481 Number Theory +1604.05109 Computational Physics +1604.05295 Statistical Mechanics +1604.07477 Rings and Algebras +1604.07617 +1604.07832 Astrophysics of Galaxies +1605.00642 Instrumentation and Detectors +1605.01133 Learning +1605.01709 +1605.02177 Numerical Analysis +1605.02437 Spectral Theory +1605.02526 +1605.02783 Computer Vision and Pattern Recognition +1605.03510 Analysis of PDEs +1605.04193 Spectral Theory +1605.04556 Representation Theory +1605.04616 Analysis of PDEs +1605.06166 Theory +1605.06664 Combinatorics +1605.07263 Number Theory +1605.07329 Networking and Internet Architecture +1605.07669 Computation and Language +1605.07713 Analysis of PDEs +1605.08178 Strongly Correlated Electrons +1605.08517 Physics and Society +1605.08767 Probability +1605.09669 Optimization and Control +1605.09766 Representation Theory +1605.09771 Cryptography and Security +1605.09786 Phenomenology +1606.00002 Optimization and Control +1606.00079 Soft Condensed Matter +1606.00111 Operating Systems +1606.00139 Category Theory +1606.00293 Dynamical Systems +1606.00297 Dynamical Systems +1606.00308 Functional Analysis +1606.00428 General Mathematics +1606.00451 Methodology +1606.00456 +1606.00460 Materials Science +1606.00462 Computers and Society +1606.00463 Cell Behavior +1606.00467 Emerging Technologies +1606.00470 Emerging Technologies +1606.00472 Analysis of PDEs +1606.00473 Classical Physics +1606.00474 Computer Vision and Pattern Recognition +1606.00475 Applications +1606.00478 Information Theory +1606.00479 Geometric Topology +1606.00480 Databases +1606.00481 Geometric Topology +1606.00483 Optics +1606.00486 Geometric Topology +1606.00496 Artificial Intelligence +1606.00497 Methodology +1606.00502 Software Engineering +1606.00503 Software Engineering +1606.00504 Software Engineering +1606.00505 Software Engineering +1606.00506 Logic in Computer Science +1606.00507 Algebraic Geometry +1606.00510 Probability +1606.00514 Atomic Physics +1606.00518 Physics Education +1606.00519 Distributed, Parallel, and Cluster Computing +1606.00521 Software Engineering +1606.00522 Mesoscale and Nanoscale Physics +1606.00523 Phenomenology +1606.00525 Probability +1606.00527 Dynamical Systems +1606.00531 Information Theory +1606.00532 Soft Condensed Matter +1606.00533 Optics +1606.00534 Networking and Internet Architecture +1606.00535 Cell Behavior +1606.00537 +1606.00538 Robotics +1606.00540 Neural and Evolutionary Computing +1606.00541 Mathematical Software +1606.00543 Differential Geometry +1606.00545 Mathematical Software +1606.00546 Applications +1606.00548 Computational Engineering, Finance, and Science +1606.00549 Algebraic Geometry +1606.00552 Commutative Algebra +1606.00555 Analysis of PDEs +1606.00561 Software Engineering +1606.00563 Group Theory +1606.00570 +1606.00575 Distributed, Parallel, and Cluster Computing +1606.00581 Data Structures and Algorithms +1606.00583 Methodology +1606.00584 Dynamical Systems +1606.00585 Software Engineering +1606.00587 Space Physics +1606.00589 Computation and Language +1606.00591 Numerical Analysis +1606.00592 +1606.00597 Numerical Analysis +1606.00600 Robotics +1606.00601 Neural and Evolutionary Computing +1606.00603 +1606.00610 Symplectic Geometry +1606.00612 Solar and Stellar Astrophysics +1606.00616 Dynamical Systems +1606.00619 Algebraic Geometry +1606.00620 Biological Physics +1606.00623 Information Theory +1606.00624 Algebraic Topology +1606.00625 Computer Vision and Pattern Recognition +1606.00626 Artificial Intelligence +1606.00627 Solar and Stellar Astrophysics +1606.00629 Cryptography and Security +1606.00630 Probability +1606.00631 Mathematical Finance +1606.00632 Populations and Evolution +1606.00635 Group Theory +1606.00636 Biomolecules +1606.00637 Distributed, Parallel, and Cluster Computing +1606.00642 Theory +1606.00648 Numerical Analysis +1606.00649 Instrumentation and Detectors +1606.00651 Spectral Theory +1606.00652 Artificial Intelligence +1606.00653 Statistical Mechanics +1606.00655 Fluid Dynamics +1606.00658 Soft Condensed Matter +1606.00666 Combinatorics +1606.00667 Geometric Topology +1606.00671 Analysis of PDEs +1606.00673 Phenomenology +1606.00680 Number Theory +1606.00681 High Energy Astrophysical Phenomena +1606.00682 Information Theory +1606.00683 Biological Physics +1606.00686 +1606.00692 Data Analysis, Statistics and Probability +1606.00697 Combinatorics +1606.00699 +1606.00702 +1606.00705 Analysis of PDEs +1606.00706 Number Theory +1606.00708 Theory +1606.00709 Machine Learning +1606.00713 +1606.00716 Dynamical Systems +1606.00717 Networking and Internet Architecture +1606.00720 Machine Learning +1606.00726 Data Structures and Algorithms +1606.00728 Complex Variables +1606.00731 Phenomenology +1606.00732 Analysis of PDEs +1606.00734 Atomic Physics +1606.00738 Functional Analysis +1606.00740 Databases +1606.00741 Probability +1606.00744 Computers and Society +1606.00745 Computers and Society +1606.00746 Computers and Society +1606.00747 Computers and Society +1606.00748 Computers and Society +1606.00749 Computers and Society +1606.00750 Computers and Society +1606.00751 Computers and Society +1606.00752 Computers and Society +1606.00754 Phenomenology +1606.00760 Number Theory +1606.00765 Accelerator Physics +1606.00767 Instrumentation and Methods for Astrophysics +1606.00770 Numerical Analysis +1606.00772 Group Theory +1606.00774 Differential Geometry +1606.00781 Algebraic Geometry +1606.00782 Geometric Topology +1606.00786 Genomics +1606.00787 Machine Learning +1606.00789 Algebraic Geometry +1606.00790 Rings and Algebras +1606.00792 Theory +1606.00794 Phenomenology +1606.00795 Biomolecules +1606.00799 Multiagent Systems +1606.00801 Classical Analysis and ODEs +1606.00803 Numerical Analysis +1606.00804 Emerging Technologies +1606.00806 Differential Geometry +1606.00807 Numerical Analysis +1606.00808 Operator Algebras +1606.00809 +1606.00811 +1606.00812 Methodology +1606.00813 Machine Learning +1606.00814 Commutative Algebra +1606.00815 Information Theory +1606.00820 Materials Science +1606.00822 Computer Vision and Pattern Recognition +1606.00826 Operator Algebras +1606.00827 Accelerator Physics +1606.00828 Commutative Algebra +1606.00829 Probability +1606.00832 Machine Learning +0710.1575 Other Condensed Matter +0905.0199 Analysis of PDEs +0909.3131 Information Theory +1003.0128 Analysis of PDEs +1011.3985 Information Theory +1012.0502 Group Theory +1012.0540 Representation Theory +1105.2719 Analysis of PDEs +1108.0328 Dynamical Systems +1110.5589 Analysis of PDEs +1111.0609 Geometric Topology +1111.2642 Combinatorics +1111.5105 Numerical Analysis +1112.1993 General Topology +1201.6620 Differential Geometry +1202.4027 Spectral Theory +1203.4032 Numerical Analysis +1204.1486 Classical Physics +1204.5513 Adaptation and Self-Organizing Systems +1205.2837 Earth and Planetary Astrophysics +1205.3236 Optimization and Control +1206.2686 Numerical Analysis +1208.1352 Analysis of PDEs +1208.4476 Solar and Stellar Astrophysics +1210.2264 +1210.4747 Number Theory +1210.5912 Cryptography and Security +1211.4668 Analysis of PDEs +1212.0185 Geometric Topology +1301.4279 Commutative Algebra +1302.3811 Combinatorics +1303.1793 Soft Condensed Matter +1304.0916 Instrumentation and Detectors +1304.2795 Other Condensed Matter +1304.3164 Superconductivity +1304.4921 Combinatorics +1305.3370 Differential Geometry +1306.6941 Algebraic Topology +1307.3131 Differential Geometry +1307.5141 +1307.5279 Combinatorics +1307.5509 Combinatorics +1308.0801 Algebraic Topology +1309.3625 Combinatorics +1309.3896 Dynamical Systems +1309.5155 Combinatorics +1310.6487 Phenomenology +1310.7202 Numerical Analysis +1310.7476 Commutative Algebra +1310.8622 Logic +1311.7340 Classical Analysis and ODEs +1311.7683 Computer Science and Game Theory +1312.0963 Algebraic Geometry +1312.1408 Statistical Mechanics +1312.4763 Other Condensed Matter +1401.0818 Information Theory +1402.0451 Cell Behavior +1402.0904 Functional Analysis +1402.2408 Differential Geometry +1402.4960 Classical Analysis and ODEs +1402.6260 Numerical Analysis +1403.3935 Exactly Solvable and Integrable Systems +1403.4080 +1403.7327 Phenomenology +1403.7355 Analysis of PDEs +1404.1311 Hardware Architecture +1404.2216 Classical Analysis and ODEs +1404.2414 Logic +1404.5569 Data Structures and Algorithms +1404.6686 General Topology +1404.6751 Metric Geometry +1405.0627 Physics and Society +1405.3392 Solar and Stellar Astrophysics +1405.6373 Analysis of PDEs +1405.7289 Materials Science +1405.7805 Category Theory +1406.3415 Combinatorics +1406.5108 Information Theory +1406.5337 Lattice +1407.0969 Operator Algebras +1407.5019 Disordered Systems and Neural Networks +1407.5176 Disordered Systems and Neural Networks +1408.2725 Disordered Systems and Neural Networks +1408.4464 Differential Geometry +1408.4610 Fluid Dynamics +1408.4723 Analysis of PDEs +1408.4970 Fluid Dynamics +1408.5638 Fluid Dynamics +1408.6341 Analysis of PDEs +1408.6501 Populations and Evolution +1409.1301 Phenomenology +1409.3187 Theory +1409.4235 +1409.4453 Statistical Mechanics +1409.6469 Fluid Dynamics +1409.8030 Physics and Society +1409.8242 Cosmology and Nongalactic Astrophysics +1409.8447 Algebraic Geometry +1410.3795 Quantum Gases +1410.5159 Functional Analysis +1410.6976 Social and Information Networks +1410.7041 Information Theory +1410.7424 Data Analysis, Statistics and Probability +1410.7714 +1411.0781 Differential Geometry +1411.6249 Analysis of PDEs +1411.7311 +1412.0539 Representation Theory +1412.2730 Theory +1412.4198 Computer Science and Game Theory +1412.4305 Numerical Analysis +1412.6639 Combinatorics +1412.6811 Statistical Mechanics +1412.7657 +1412.8043 Instrumentation and Detectors +1412.8098 +1412.8336 Number Theory +1412.8431 Geometric Topology +1412.8584 Theory +1501.01223 Analysis of PDEs +1501.05467 Statistics Theory +1502.02242 Databases +1502.04191 Category Theory +1502.04279 Materials Science +1502.05359 Theory +1502.05967 +1502.06820 Data Structures and Algorithms +1503.00659 Physics and Society +1503.00838 Mesoscale and Nanoscale Physics +1503.02291 Computer Vision and Pattern Recognition +1503.04217 Experiment +1503.05612 Combinatorics +1503.05824 Astrophysics of Galaxies +1503.06020 Physics and Society +1503.06031 Analysis of PDEs +1503.06876 Methodology +1503.07582 Analysis of PDEs +1503.07976 Quantum Gases +1503.08058 Mesoscale and Nanoscale Physics +1504.01292 Operator Algebras +1504.04774 Risk Management +1504.06551 +1504.07981 Physics and Society +1504.08153 Social and Information Networks +1505.00505 Geometric Topology +1505.01634 Social and Information Networks +1505.02903 Information Theory +1505.03077 Geometric Topology +1505.03642 Atomic Physics +1505.03822 Algebraic Geometry +1505.07113 Phenomenology +1505.07938 Disordered Systems and Neural Networks +1506.02814 Plasma Physics +1506.02905 Statistical Mechanics +1506.03171 Information Theory +1506.04560 Phenomenology +1506.04645 Superconductivity +1506.07491 Information Theory +1506.08192 Theory +1506.08219 Materials Science +1506.08331 Probability +1506.08416 +1507.00342 Cosmology and Nongalactic Astrophysics +1507.00431 Optimization and Control +1507.01043 Fluid Dynamics +1507.01098 Information Theory +1507.01115 Differential Geometry +1507.01961 Strongly Correlated Electrons +1507.03617 Probability +1507.04107 Chemical Physics +1507.04570 +1507.04903 Logic +1507.05613 Instrumentation and Detectors +1507.06089 +1507.06783 Mesoscale and Nanoscale Physics +1507.06853 Numerical Analysis +1507.07167 Optics +1507.07622 Data Structures and Algorithms +1507.07625 Chaotic Dynamics +1508.00057 Quantum Gases +1508.00654 Systems and Control +1508.00774 +1508.00872 Representation Theory +1508.01183 Geometric Topology +1508.01285 Probability +1508.01305 Optics +1508.02694 Number Theory +1508.03203 Strongly Correlated Electrons +1508.03224 Probability +1508.03307 Superconductivity +1508.03326 Learning +1508.03553 Differential Geometry +1508.03745 Dynamical Systems +1508.03943 Instrumentation and Detectors +1508.06111 Theory +1508.06134 Numerical Analysis +1508.07079 Superconductivity +1508.07561 Probability +1508.07748 Optics +1509.00181 Learning +1509.00298 Phenomenology +1509.00461 High Energy Astrophysical Phenomena +1509.01083 Molecular Networks +1509.01846 Systems and Control +1509.02016 Theory +1509.02242 Superconductivity +1509.02554 Fluid Dynamics +1509.03192 Populations and Evolution +1509.03610 Quantum Gases +1509.04208 Atomic Physics +1509.05596 Statistical Mechanics +1509.06020 Analysis of PDEs +1509.06959 Mesoscale and Nanoscale Physics +1509.07374 Group Theory +1509.07525 Phenomenology +1509.08146 Optimization and Control +1509.08353 Computer Science and Game Theory +1509.08694 +1509.08705 +1509.08769 +1509.09312 Theory +1510.00181 Exactly Solvable and Integrable Systems +1510.00793 Spectral Theory +1510.00961 Analysis of PDEs +1510.01549 Number Theory +1510.01689 Group Theory +1510.02146 Optimization and Control +1510.02313 Strongly Correlated Electrons +1510.04044 Dynamical Systems +1510.04065 Strongly Correlated Electrons +1510.04083 Cryptography and Security +1510.04133 Phenomenology +1510.05512 Discrete Mathematics +1510.06000 +1510.06119 Materials Science +1510.06861 Theory +1510.08269 Phenomenology +1510.09091 Information Theory +1511.00774 General Mathematics +1511.00956 +1511.01981 +1511.02073 Numerical Analysis +1511.03101 Theory +1511.03829 Cryptography and Security +1511.04280 Materials Science +1511.04851 Phenomenology +1511.05123 Quantum Gases +1511.05438 Optics +1511.07238 Methodology +1511.08129 Chemical Physics +1511.08253 +1511.08354 +1511.08523 +1511.09212 Differential Geometry +1512.00968 Differential Geometry +1512.01020 +1512.01512 Strongly Correlated Electrons +1512.02861 +1512.04977 Phenomenology +1512.05023 Networking and Internet Architecture +1512.05127 Biological Physics +1512.05512 +1512.05770 Number Theory +1512.06030 Combinatorics +1512.06300 Materials Science +1512.06751 Logic in Computer Science +1512.07439 Rings and Algebras +1512.07833 +1512.08070 Discrete Mathematics +1512.08758 Materials Science +1601.01468 Soft Condensed Matter +1601.02792 Commutative Algebra +1601.02873 Number Theory +1601.03127 Solar and Stellar Astrophysics +1601.03348 Computation and Language +1601.03617 Information Theory +1601.04319 +1601.04600 Populations and Evolution +1601.04610 Solar and Stellar Astrophysics +1601.04722 Mesoscale and Nanoscale Physics +1601.04923 Spectral Theory +1601.04926 Strongly Correlated Electrons +1601.05160 Number Theory +1601.05613 Computer Vision and Pattern Recognition +1601.06253 +1601.06256 Representation Theory +1601.06505 Combinatorics +1601.06850 Differential Geometry +1601.07014 Computer Vision and Pattern Recognition +1601.07216 Computer Science and Game Theory +1601.07238 Rings and Algebras +1601.07267 Computer Science and Game Theory +1601.07616 Theory +1601.07752 Numerical Analysis +1601.07757 Theory +1601.07929 Artificial Intelligence +1601.08092 Atmospheric and Oceanic Physics +1601.08213 Theory +1601.08233 Materials Science +1602.00010 Materials Science +1602.00014 Commutative Algebra +1602.00015 Probability +1602.00023 Data Structures and Algorithms +1602.00027 Combinatorics +1602.00030 Materials Science +1602.00035 Strongly Correlated Electrons +1602.00039 Experiment +1602.00040 Numerical Analysis +1602.00045 Dynamical Systems +1602.00047 Methodology +1602.00048 Optimization and Control +1602.00054 +1602.00055 Cosmology and Nongalactic Astrophysics +1602.00057 Information Theory +1602.00060 +1602.00063 +1602.00064 Computational Physics +1602.00067 Cryptography and Security +1602.00069 Systems and Control +1602.00073 Numerical Analysis +1602.00075 Dynamical Systems +1602.00077 Pattern Formation and Solitons +1602.00078 Data Analysis, Statistics and Probability +1602.00080 Dynamical Systems +1602.00084 Experiment +1602.00090 Economics +1602.00092 Functional Analysis +1602.00094 Mathematical Finance +1602.00095 Information Theory +1602.00096 Molecular Networks +1602.00097 Networking and Internet Architecture +1602.00098 Probability +1602.00099 Classical Analysis and ODEs +1602.00100 Differential Geometry +1602.00104 Information Retrieval +1602.00105 Combinatorics +1602.00107 Soft Condensed Matter +1602.00108 Mesoscale and Nanoscale Physics +1602.00109 Methodology +1602.00110 Social and Information Networks +1602.00112 +1602.00113 Dynamical Systems +1602.00114 Mesoscale and Nanoscale Physics +1602.00115 Theory +1602.00116 Representation Theory +1602.00117 Functional Analysis +1602.00120 Materials Science +1602.00121 +1602.00122 Analysis of PDEs +1602.00124 Operator Algebras +1602.00125 Statistical Finance +1602.00132 Information Theory +1602.00139 Information Theory +1602.00140 Geometric Topology +1602.00144 Group Theory +1602.00149 +1602.00150 Differential Geometry +1602.00154 Phenomenology +1602.00155 +1602.00160 Phenomenology +1602.00161 Complex Variables +1602.00162 Systems and Control +1602.00163 Learning +1602.00164 Algebraic Geometry +1602.00165 Artificial Intelligence +1602.00167 Differential Geometry +1602.00168 Analysis of PDEs +1602.00169 Information Theory +1602.00172 Computer Vision and Pattern Recognition +1602.00174 Networking and Internet Architecture +1602.00175 Statistics Theory +1602.00177 Computer Vision and Pattern Recognition +1602.00182 Numerical Analysis +1602.00183 Numerical Analysis +1602.00188 High Energy Astrophysical Phenomena +1602.00190 +1602.00191 Complex Variables +1602.00194 Differential Geometry +1602.00195 Optimization and Control +1602.00196 Combinatorics +1602.00198 Artificial Intelligence +1602.00202 Applications +1602.00203 Learning +1602.00204 +1602.00206 Computer Vision and Pattern Recognition +1602.00207 Computation +1602.00214 Machine Learning +1602.00215 Phenomenology +1602.00217 Computer Vision and Pattern Recognition +1602.00219 Experiment +1602.00221 Machine Learning +1602.00224 Computer Vision and Pattern Recognition +1602.00225 Information Theory +1602.00229 Machine Learning +1602.00231 Rings and Algebras +1602.00232 Optimization and Control +1602.00236 Machine Learning +1602.00239 High Energy Astrophysical Phenomena +1602.00240 General Topology +1602.00242 Digital Libraries +1602.00243 Other Computer Science +1602.00247 Analysis of PDEs +1602.00248 Social and Information Networks +1602.00249 Algebraic Geometry +1602.00252 Social and Information Networks +1602.00255 Analysis of PDEs +1602.00256 Applications +1602.00258 Neurons and Cognition +1602.00259 Atomic Physics +1602.00263 Instrumentation and Detectors +1602.00264 Analysis of PDEs +1602.00266 Operator Algebras +1602.00268 Instrumentation and Detectors +1602.00269 Artificial Intelligence +1602.00270 Fluid Dynamics +1602.00276 Information Theory +1602.00279 Classical Analysis and ODEs +1602.00280 Functional Analysis +1602.00281 Operator Algebras +1602.00283 Algebraic Geometry +1602.00290 Mesoscale and Nanoscale Physics +1602.00291 Combinatorics +1602.00293 Computation and Language +1602.00294 Numerical Analysis +1602.00296 Rings and Algebras +1602.00299 Mesoscale and Nanoscale Physics +1602.00300 Classical Analysis and ODEs +1602.00302 Cosmology and Nongalactic Astrophysics +1602.00305 +1602.00307 Computer Vision and Pattern Recognition +1602.00309 Learning +1602.00311 Number Theory +1602.00313 Materials Science +1602.00314 Number Theory +1602.00316 Classical Analysis and ODEs +1602.00321 Probability +1602.00326 Computational Physics +1602.00327 Commutative Algebra +1602.00329 Data Structures and Algorithms +1602.00330 Computational Physics +1602.00332 Computational Physics +1602.00336 Number Theory +1602.00337 Theory +1602.00340 Representation Theory +1602.00341 Solar and Stellar Astrophysics +1602.00343 Number Theory +1602.00345 Distributed, Parallel, and Cluster Computing +1602.00346 Methodology +1602.00349 Computational Complexity +1602.00350 Representation Theory +1602.00351 Learning +1602.00352 Logic +1602.00357 Machine Learning +1602.00358 Trading and Market Microstructure +1602.00359 Statistics Theory +1602.00360 Machine Learning +1602.00362 Complex Variables +1602.00366 Information Theory +1602.00367 Computation and Language +1602.00372 Optimization and Control +1602.00374 Learning +1602.00375 Differential Geometry +1602.00380 Mesoscale and Nanoscale Physics +1602.00386 Computer Vision and Pattern Recognition +1602.00390 Differential Geometry +1602.00391 +1602.00392 Statistical Mechanics +1602.00393 +1602.00397 Materials Science +1602.00398 Computational Complexity +1602.00399 Computational Geometry +1602.00400 Combinatorics +1602.00401 +1602.00403 Group Theory +1602.00405 +1602.00406 Probability +1602.00407 Operator Algebras +1602.00409 Group Theory +1602.00410 Materials Science +1602.00414 Optimization and Control +1602.00418 Algebraic Geometry +1602.00419 Digital Libraries +1602.00422 Data Structures and Algorithms +1602.00424 Symbolic Computation +1602.00426 Computation and Language +1602.00430 Information Theory +1602.00436 Classical Analysis and ODEs +1602.00438 Classical Physics +1602.00448 Networking and Internet Architecture +1602.00452 General Topology +1602.00454 Symbolic Computation +1602.00457 Phenomenology +1602.00458 Logic in Computer Science +1602.00462 Robotics +1602.00467 Molecular Networks +1602.00468 +1602.00469 Statistical Mechanics +1602.00471 Metric Geometry +1602.00472 Mesoscale and Nanoscale Physics +1602.00479 Social and Information Networks +1602.00480 Analysis of PDEs +1602.00481 Logic in Computer Science +1602.00482 Systems and Control +1602.00487 Networking and Internet Architecture +1602.00491 +1602.00499 Probability +1602.00503 Databases +1602.00510 Probability +1602.00522 Machine Learning +1602.00524 +1602.00525 Optimization and Control +1602.00526 Statistical Mechanics +1602.00529 Dynamical Systems +1602.00530 Analysis of PDEs +1602.00531 Statistics Theory +1602.00535 Fluid Dynamics +1602.00536 Populations and Evolution +1602.00548 Probability +1602.00549 Classical Analysis and ODEs +1602.00551 Soft Condensed Matter +1602.00554 Learning +1602.00555 Logic +1602.00556 Theory +1602.00557 Systems and Control +1602.00558 +1602.00559 Optimization and Control +1602.00562 Soft Condensed Matter +1602.00564 Methodology +1602.00566 Networking and Internet Architecture +1602.00568 Instrumentation and Detectors +1602.00569 Networking and Internet Architecture +1602.00571 Symplectic Geometry +1602.00572 Social and Information Networks +1602.00576 Analysis of PDEs +1602.00577 Computer Vision and Pattern Recognition +1602.00578 +1602.00579 Neurons and Cognition +1602.00580 +1602.00581 +1602.00582 +1602.00586 Distributed, Parallel, and Cluster Computing +1602.00591 Distributed, Parallel, and Cluster Computing +1602.00593 +1602.00596 Optimization and Control +1602.00597 Commutative Algebra +1602.00600 Genomics +1602.00605 Logic +1602.00615 Networking and Internet Architecture +1602.00617 Dynamical Systems +1602.00624 Fluid Dynamics +1602.00626 Spectral Theory +1602.00629 Statistical Finance +1602.00640 Materials Science +1602.00644 Statistical Mechanics +1602.00649 Numerical Analysis +1602.00650 Molecular Networks +1602.00657 Probability +1602.00662 Theory +1602.00664 Differential Geometry +1602.00665 Analysis of PDEs +1602.00666 Number Theory +1602.00670 Materials Science +1602.00672 Combinatorics +1602.00674 Cosmology and Nongalactic Astrophysics +1602.00675 Numerical Analysis +1602.00677 Classical Analysis and ODEs +math/0505274 Probability +0902.2281 Algebraic Geometry +0905.2240 Analysis of PDEs +0909.1258 Chaotic Dynamics +1002.1119 Analysis of PDEs +1002.4070 Metric Geometry +1004.5458 Quantum Gases +1007.0222 +1007.1844 +1011.1564 Algebraic Geometry +1101.3693 Differential Geometry +1108.4134 +1110.2475 +1111.6202 Algebraic Geometry +1112.5412 Soft Condensed Matter +1201.0250 Dynamical Systems +1201.6021 Soft Condensed Matter +1202.1863 Quantum Gases +1205.3153 Superconductivity +1206.0422 Category Theory +1206.1986 +1206.4200 +1207.0110 Soft Condensed Matter +1208.0556 +1208.0557 +1210.0728 Analysis of PDEs +1210.6303 Analysis of PDEs +1210.7519 Algebraic Geometry +1212.2540 Analysis of PDEs +1212.4491 Subcellular Processes +1301.7511 Combinatorics +1302.1149 Algebraic Geometry +1302.3540 Algebraic Geometry +1302.4459 +1303.1035 Numerical Analysis +1304.4760 Statistical Mechanics +1304.5781 +1304.5987 Metric Geometry +1305.0461 +1305.0703 Soft Condensed Matter +1305.1433 Representation Theory +1305.3349 Algebraic Topology +1305.3660 +1305.4767 Logic +1308.0639 Metric Geometry +1309.2111 Probability +1309.6505 Pricing of Securities +1309.6961 Analysis of PDEs +1310.2919 Spectral Theory +1310.5146 Strongly Correlated Electrons +1310.5258 Lattice +1310.6685 Logic +1311.6429 Algebraic Geometry +1311.7533 Materials Science +1312.0269 Operator Algebras +1312.2202 Complex Variables +1312.4057 History and Philosophy of Physics +1401.1746 +1402.1617 Information Theory +1402.1854 Number Theory +1402.3587 Theory +1402.6918 Group Theory +1403.0115 Analysis of PDEs +1403.3877 Strongly Correlated Electrons +1403.6576 Analysis of PDEs +1404.5206 Differential Geometry +1404.6994 Number Theory +1405.4960 Metric Geometry +1405.7756 Analysis of PDEs +1406.3132 Mesoscale and Nanoscale Physics +1406.3698 Number Theory +1406.3819 Category Theory +1406.3970 Analysis of PDEs +1406.6366 High Energy Astrophysical Phenomena +1406.7577 Social and Information Networks +1407.1479 Analysis of PDEs +1407.2322 Networking and Internet Architecture +1407.3497 Algebraic Geometry +1407.4462 Functional Analysis +1407.5901 Algebraic Geometry +1408.0648 Statistical Mechanics +1408.2273 Representation Theory +1408.6404 +1409.1863 Algebraic Geometry +1409.6860 Atomic Physics +1409.6944 Algebraic Topology +1409.8540 Mesoscale and Nanoscale Physics +1410.0518 Complex Variables +1410.1011 +1410.2790 +1410.5091 Algebraic Geometry +1410.5466 Economics +1411.4173 Probability +1411.4409 Metric Geometry +1411.4444 Optimization and Control +1411.5095 Analysis of PDEs +1411.6357 Theory +1412.1828 Phenomenology +1412.2858 +1412.4938 Algebraic Topology +1412.5391 Metric Geometry +1412.6157 Social and Information Networks +1501.00467 Metric Geometry +1501.01215 Astrophysics of Galaxies +1501.01645 Probability +1501.05621 Number Theory +1502.01359 Information Theory +1502.02393 Combinatorics +1502.02846 Learning +1502.04874 Probability +1502.05722 Instrumentation and Methods for Astrophysics +1502.07491 Classical Analysis and ODEs +1502.07612 Soft Condensed Matter +1503.01008 Discrete Mathematics +1503.01398 Networking and Internet Architecture +1503.02762 Statistical Mechanics +1503.02783 Category Theory +1503.03746 Physics and Society +1503.05444 Classical Analysis and ODEs +1503.05532 Probability +1503.07124 +1503.07566 Materials Science +1503.09154 +1504.00333 +1504.02023 Functional Analysis +1504.03994 Chemical Physics +1504.04683 Logic +1504.04805 Soft Condensed Matter +1504.05271 Representation Theory +1504.06510 Cosmology and Nongalactic Astrophysics +1504.07101 Social and Information Networks +1505.00480 Optics +1505.00759 Algebraic Geometry +1505.01480 +1505.02278 +1505.03269 Optics +1505.04149 Instrumentation and Detectors +1505.04782 +1505.05192 Computer Vision and Pattern Recognition +1505.05455 +1505.05789 Number Theory +1505.06207 Theory +1506.00061 General Mathematics +1506.00203 Mesoscale and Nanoscale Physics +1506.02158 Machine Learning +1506.02539 Biomolecules +1506.03252 Probability +1506.03543 Optics +1506.04620 Materials Science +1506.04889 Physics and Society +1506.05041 Soft Condensed Matter +1506.05144 Analysis of PDEs +1506.05769 Commutative Algebra +1506.07485 +1506.07628 Cosmology and Nongalactic Astrophysics +1506.08283 +1506.08714 Dynamical Systems +1507.00157 Algebraic Geometry +1507.02676 Mesoscale and Nanoscale Physics +1507.03251 Mesoscale and Nanoscale Physics +1507.04340 Number Theory +1507.05551 Cosmology and Nongalactic Astrophysics +1507.05902 Instrumentation and Detectors +1507.06017 Theory +1507.06119 Applications +1507.06147 Theory +1507.07273 Algebraic Geometry +1507.07606 Quantum Gases +1507.08255 +1507.08767 Mesoscale and Nanoscale Physics +1507.08948 Algebraic Geometry +1508.00023 Multiagent Systems +1508.00584 Solar and Stellar Astrophysics +1508.02019 Mesoscale and Nanoscale Physics +1508.02093 Mesoscale and Nanoscale Physics +1508.02169 Combinatorics +1508.03105 Numerical Analysis +1508.03202 Operator Algebras +1508.04137 Phenomenology +1508.04552 Phenomenology +1508.04716 Information Theory +1508.05180 Phenomenology +1508.05796 Experiment +1508.06993 Theory +1508.07122 Mesoscale and Nanoscale Physics +1509.00082 +1509.00184 Mesoscale and Nanoscale Physics +1509.00389 Experiment +1509.00466 Theory +1509.00586 Mesoscale and Nanoscale Physics +1509.00852 Theory +1509.01316 Number Theory +1509.01582 Category Theory +1509.02534 Information Theory +1509.03499 Phenomenology +1509.03728 Rings and Algebras +1509.04479 Plasma Physics +1509.05400 Mesoscale and Nanoscale Physics +1509.06197 Physics and Society +1509.06474 Logic +1509.07382 +1509.07446 Chemical Physics +1509.07485 High Energy Astrophysical Phenomena +1509.08575 Combinatorics +1510.00403 Optimization and Control +1510.00549 Combinatorics +1510.01093 Representation Theory +1510.01104 Quantum Gases +1510.01137 Astrophysics of Galaxies +1510.02638 Group Theory +1510.02742 +1510.03216 Geometric Topology +1510.03280 Phenomenology +1510.03565 Information Theory +1510.04154 +1510.04277 Cosmology and Nongalactic Astrophysics +1510.04328 Phenomenology +1510.04344 Quantum Gases +1510.05905 Mesoscale and Nanoscale Physics +1510.06063 Theory +1510.06246 Numerical Analysis +1510.06266 Phenomenology +1510.07126 Physics and Society +1510.07607 Instrumentation and Detectors +1510.07842 Quantum Gases +1511.00082 Mesoscale and Nanoscale Physics +1511.00203 Theory +1511.00819 Optimization and Control +1511.01691 Cosmology and Nongalactic Astrophysics +1511.02095 +1511.02211 Probability +1511.02381 Information Theory +1511.02554 Neural and Evolutionary Computing +1511.03034 Learning +1511.03212 Phenomenology +1511.03537 Phenomenology +1511.04633 Computational Physics +1511.04874 Information Theory +1511.05034 Mesoscale and Nanoscale Physics +1511.05210 Computational Complexity +1511.05432 Machine Learning +1511.05844 Astrophysics of Galaxies +1511.05868 Differential Geometry +1511.06355 Solar and Stellar Astrophysics +1511.06573 Mesoscale and Nanoscale Physics +1511.06640 Probability +1511.06803 Dynamical Systems +1511.06964 Learning +1511.07009 Geometric Topology +1511.07139 Adaptation and Self-Organizing Systems +1511.07574 Strongly Correlated Electrons +1511.08526 +1511.08720 +1511.09284 Phenomenology +1512.02687 Representation Theory +1512.02733 Astrophysics of Galaxies +1512.02752 Artificial Intelligence +1512.04075 Solar and Stellar Astrophysics +1512.04217 Biological Physics +1512.04436 Probability +1512.04548 Cosmology and Nongalactic Astrophysics +1512.04591 Populations and Evolution +1512.05361 Statistical Mechanics +1512.05372 Materials Science +1512.05582 Computation and Language +1512.06360 Materials Science +1512.06389 Data Structures and Algorithms +1512.06642 Rings and Algebras +1512.06849 Geometric Topology +1512.07357 Analysis of PDEs +1512.07901 Discrete Mathematics +1512.08107 Phenomenology +1512.08120 Learning +1512.08128 Instrumentation and Methods for Astrophysics +1512.08403 Optimization and Control +1512.09200 Symplectic Geometry +1601.01502 Combinatorics +1601.01936 +1601.02151 Soft Condensed Matter +1601.02231 Metric Geometry +1601.02390 +1601.02414 Number Theory +1601.02448 Algebraic Geometry +1601.02462 Theory +1601.02468 Theory +1601.02617 Solar and Stellar Astrophysics +1601.02666 Quantum Gases +1601.02708 Computational Engineering, Finance, and Science +1601.03219 General Topology +1601.03585 Analysis of PDEs +1601.03786 Atomic Physics +1601.04066 Human-Computer Interaction +1601.04067 +1601.04075 Information Retrieval +1601.04076 Quantum Algebra +1601.04079 +1601.04082 Algebraic Geometry +1601.04083 Methodology +1601.04087 Theory +1601.04089 Phenomenology +1601.04091 Numerical Analysis +1601.04093 Economics +1601.04094 Multiagent Systems +1601.04095 Numerical Analysis +1601.04096 Methodology +1601.04097 Optimization and Control +1601.04098 Logic +1601.04101 Phenomenology +1601.04102 Distributed, Parallel, and Cluster Computing +1601.04105 Artificial Intelligence +1601.04113 Instrumentation and Methods for Astrophysics +1601.04117 Group Theory +1601.04119 Dynamical Systems +1601.04121 Numerical Analysis +1601.04122 Information Theory +1601.04125 Computational Complexity +1601.04126 Machine Learning +1601.04127 General Physics +1601.04129 Differential Geometry +1601.04131 Information Theory +1601.04134 Cryptography and Security +1601.04135 Social and Information Networks +1601.04138 Atomic Physics +1601.04141 Logic +1601.04144 Materials Science +1601.04146 Number Theory +1601.04150 Computational Engineering, Finance, and Science +1601.04156 Atomic Physics +1601.04160 Dynamical Systems +1601.04163 Optics +1601.04166 Operator Algebras +1601.04170 Combinatorics +1601.04171 Metric Geometry +1601.04173 Spectral Theory +1601.04175 Optimization and Control +1601.04176 Soft Condensed Matter +1601.04180 Information Theory +1601.04181 Biomolecules +1601.04182 +1601.04183 Neurons and Cognition +1601.04184 Analysis of PDEs +1601.04186 Dynamical Systems +1601.04187 Neural and Evolutionary Computing +1601.04190 Other Condensed Matter +1601.04191 Computers and Society +1601.04192 Other Condensed Matter +1601.04193 Populations and Evolution +1601.04194 Combinatorics +1601.04195 Number Theory +1601.04196 Superconductivity +1601.04201 Number Theory +1601.04202 Dynamical Systems +1601.04207 Computational Engineering, Finance, and Science +1601.04210 Mathematical Finance +1601.04211 Logic +1601.04215 Strongly Correlated Electrons +1601.04224 Probability +1601.04231 Distributed, Parallel, and Cluster Computing +1601.04233 Data Structures and Algorithms +1601.04234 +1601.04235 High Energy Astrophysical Phenomena +1601.04236 High Energy Astrophysical Phenomena +1601.04237 Probability +1601.04238 Algebraic Geometry +1601.04244 Other Computer Science +1601.04245 Systems and Control +1601.04248 Data Structures and Algorithms +1601.04249 Other Computer Science +1601.04251 Systems and Control +1601.04252 Differential Geometry +1601.04253 Neurons and Cognition +1601.04254 Rings and Algebras +1601.04255 Probability +1601.04257 Pattern Formation and Solitons +1601.04259 Quantitative Methods +1601.04263 Cryptography and Security +1601.04264 Optimization and Control +1601.04267 +1601.04268 Symplectic Geometry +1601.04269 Rings and Algebras +1601.04271 Information Theory +1601.04274 Probability +1601.04280 Numerical Analysis +1601.04282 Functional Analysis +1601.04283 Functional Analysis +1601.04285 Strongly Correlated Electrons +1601.04291 Phenomenology +1601.04293 Computer Vision and Pattern Recognition +1601.04296 Neural and Evolutionary Computing +1601.04297 Dynamical Systems +1601.04298 Combinatorics +1601.04299 Logic in Computer Science +1601.04300 Differential Geometry +1601.04301 Cryptography and Security +1601.04304 +1601.04306 Distributed, Parallel, and Cluster Computing +1601.04308 Analysis of PDEs +1601.04312 Metric Geometry +1601.04314 Networking and Internet Architecture +1601.04316 Numerical Analysis +1601.04321 Optimization and Control +1601.04323 High Energy Astrophysical Phenomena +1601.04334 Differential Geometry +1601.04340 Physics Education +1601.04341 Statistical Finance +1601.04346 Solar and Stellar Astrophysics +1601.04348 Instrumentation and Detectors +1601.04351 Risk Management +1601.04354 Physics Education +1601.04357 Physics Education +1601.04359 Materials Science +1601.04365 Mesoscale and Nanoscale Physics +1601.04369 Combinatorics +1601.04370 Number Theory +1601.04371 Combinatorics +1601.04372 Instrumentation and Methods for Astrophysics +1601.04373 Information Theory +1601.04374 +1601.04377 Complex Variables +1601.04380 Complex Variables +1601.04381 Complex Variables +1601.04382 Complex Variables +1601.04383 Complex Variables +1601.04384 Soft Condensed Matter +1601.04385 Instrumentation and Methods for Astrophysics +1601.04386 Computer Vision and Pattern Recognition +1601.04388 Information Theory +1601.04391 Dynamical Systems +1601.04392 Logic +1601.04397 Methodology +1601.04398 Group Theory +1601.04402 Probability +1601.04404 Phenomenology +1601.04406 Computer Vision and Pattern Recognition +1601.04410 Mesoscale and Nanoscale Physics +1601.04411 Materials Science +1601.04412 Classical Analysis and ODEs +1601.04413 Algebraic Topology +1601.04415 Number Theory +1601.04416 Combinatorics +1601.04419 Tissues and Organs +1601.04422 Plasma Physics +1601.04431 Combinatorics +1601.04432 Theory +1601.04433 Logic +1601.04435 Soft Condensed Matter +1601.04436 Human-Computer Interaction +1601.04438 Materials Science +1601.04440 Differential Geometry +1601.04442 +1601.04444 Probability +1601.04446 Materials Science +1601.04450 Graphics +1601.04451 Machine Learning +1601.04453 Information Theory +1601.04454 Commutative Algebra +1601.04455 Probability +1601.04458 Quantitative Methods +1601.04461 High Energy Astrophysical Phenomena +1601.04462 Experiment +1601.04468 Computation and Language +1601.04469 Discrete Mathematics +1601.04473 Multimedia +1601.04477 +1601.04478 Portfolio Management +1601.04479 Materials Science +1601.04481 +1601.04483 Probability +1601.04484 Materials Science +1601.04486 Strongly Correlated Electrons +1601.04491 Fluid Dynamics +1601.04492 Analysis of PDEs +1601.04494 Metric Geometry +1601.04495 Quantum Gases +1601.04496 Numerical Analysis +1601.04498 Instrumentation and Methods for Astrophysics +1601.04499 Instrumentation and Methods for Astrophysics +1601.04507 Information Theory +1601.04511 Solar and Stellar Astrophysics +1601.04512 Instrumentation and Detectors +1601.04514 Differential Geometry +1601.04516 Phenomenology +1601.04518 Soft Condensed Matter +1601.04522 Multimedia +1601.04527 Combinatorics +1601.04530 Machine Learning +1601.04531 Mesoscale and Nanoscale Physics +1601.04532 Differential Geometry +1601.04533 Discrete Mathematics +1601.04534 General Physics +1601.04538 General Physics +1601.04540 Differential Geometry +1601.04546 Probability +1601.04547 Robotics +1601.04548 Medical Physics +1601.04549 Machine Learning +1601.04553 Analysis of PDEs +1601.04558 +1601.04563 Other Computer Science +1601.04565 Representation Theory +1601.04566 Group Theory +1601.04567 Analysis of PDEs +1601.04568 Computer Vision and Pattern Recognition +1601.04571 +1601.04572 Differential Geometry +1601.04573 Number Theory +1601.04574 Artificial Intelligence +1601.04576 Algebraic Geometry +1601.04585 Computational Geometry +1601.04589 Computer Vision and Pattern Recognition +1601.04590 Phenomenology +1601.04595 Distributed, Parallel, and Cluster Computing +1601.04602 Distributed, Parallel, and Cluster Computing +1601.04605 Information Retrieval +1601.04607 Materials Science +1601.04609 Earth and Planetary Astrophysics +1601.04612 Analysis of PDEs +1601.04613 +1601.04614 Differential Geometry +1601.04622 Cryptography and Security +1601.04626 Spectral Theory +1601.04627 Instrumentation and Methods for Astrophysics +1601.04631 Algebraic Geometry +1601.04641 Quantum Gases +1601.04642 Combinatorics +1601.04644 Analysis of PDEs +1601.04653 +1601.04661 Formal Languages and Automata Theory +1601.04662 Information Theory +1601.04664 Numerical Analysis +1601.04665 Commutative Algebra +1601.04667 Artificial Intelligence +1601.04668 +1601.04669 Computer Vision and Pattern Recognition +1601.04670 Lattice +1601.04672 Emerging Technologies +1601.04673 +1601.04675 Distributed, Parallel, and Cluster Computing +1601.04678 Phenomenology +1601.04679 Probability +1601.04682 Superconductivity +1601.04683 Classical Analysis and ODEs +1601.04684 Information Theory +1601.04687 Lattice +1601.04689 Information Theory +1601.04691 +1601.04692 Learning +cs/0205012 Data Structures and Algorithms +cs/0205029 Data Structures and Algorithms +cs/0205039 Data Structures and Algorithms +math/0406227 Complex Variables +solv-int/9412005 Exactly Solvable and Integrable Systems +solv-int/9412006 Exactly Solvable and Integrable Systems +1307.2688 Combinatorics +0704.0375 Chemical Physics +0704.0394 Risk Management +0704.0398 Probability +0704.0512 Statistical Mechanics +0704.0699 Chemical Physics +0704.0700 Chemical Physics +0704.0858 Cryptography and Security +0704.0878 Materials Science +0704.0880 Statistical Mechanics +0704.1148 Statistical Mechanics +0704.1155 Statistical Mechanics +0704.1171 Statistical Mechanics +0704.1175 Statistical Mechanics +0704.1609 +0704.2138 Soft Condensed Matter +0704.2195 +0704.2306 Materials Science +0704.2497 Mesoscale and Nanoscale Physics +0704.2569 +0704.2601 +0704.2846 +0704.3009 +0704.3617 +0704.3692 Statistical Mechanics +0704.3830 Superconductivity +0705.0274 Statistics Theory +0705.0582 Statistical Mechanics +0705.0587 Group Theory +0705.0878 +0705.0922 +0705.1053 Populations and Evolution +0705.1246 +0705.1488 Other Condensed Matter +0705.1526 +0705.1582 Materials Science +0705.2170 Computer Science and Game Theory +0705.2327 Soft Condensed Matter +0705.2482 Optics +0705.2637 Optics +0705.2826 Soft Condensed Matter +0705.3077 +0705.3122 Disordered Systems and Neural Networks +0705.3366 General Mathematics +0705.3665 +0705.3677 Information Theory +0705.3687 +0705.4544 Atomic Physics +0706.0177 Mesoscale and Nanoscale Physics +0706.0203 +0706.1641 +0706.2082 Other Condensed Matter +0706.2157 Materials Science +0706.2378 +0706.2625 Materials Science +0706.3113 +0706.3363 +0707.0132 Representation Theory +0707.0819 +0707.0821 +0707.2979 +0711.4250 +0801.0531 Disordered Systems and Neural Networks +0801.0710 Complex Variables +0801.3737 Strongly Correlated Electrons +0802.2035 Geometric Topology +0802.3259 Theory +0802.3570 Information Theory +0802.3572 Information Theory +0802.3886 +0802.3908 +0803.0799 Soft Condensed Matter +0803.1746 Group Theory +0804.0066 Logic in Computer Science +0805.2550 +0805.3065 +0805.4533 Algebraic Geometry +0805.4676 Probability +0806.3854 +0809.0090 +0809.0444 +0809.0778 +0809.1969 Strongly Correlated Electrons +0809.4581 Experiment +0809.4739 Statistical Mechanics +0810.0197 Lattice +0810.0949 +0810.1874 Experiment +0810.2388 +0810.2691 +0810.2963 +0810.3125 Information Theory +0810.3785 +0810.5055 +0811.0007 Probability +0811.0366 Probability +0811.0503 Statistics Theory +0811.4267 Probability +0812.1161 +0812.4556 Probability +0902.1719 Mesoscale and Nanoscale Physics +0902.4635 Mesoscale and Nanoscale Physics +0903.2114 Probability +0903.3912 Solar and Stellar Astrophysics +0903.4134 Analysis of PDEs +0904.0742 Strongly Correlated Electrons +0904.4544 Theory +0904.4768 Probability +0905.0400 Geophysics +0905.2401 Probability +0905.3961 Phenomenology +0905.4575 Astrophysics of Galaxies +0906.0306 Cosmology and Nongalactic Astrophysics +0906.1686 Quantum Gases +0906.2319 Cosmology and Nongalactic Astrophysics +0907.0587 Astrophysics of Galaxies +0907.1120 Functional Analysis +0907.3262 Probability +0907.3651 Statistical Mechanics +0908.1952 Statistics Theory +0909.2921 Materials Science +0909.5325 Probability +0910.1605 Computational Engineering, Finance, and Science +0911.1088 High Energy Astrophysical Phenomena +0911.4786 Differential Geometry +0911.5318 Probability +0912.0435 Phenomenology +0912.1433 +0912.2946 General Topology +1001.1894 Probability +1001.4986 Instrumentation and Detectors +1002.0436 +1002.2945 Solar and Stellar Astrophysics +1003.0188 Methodology +1003.0705 Experiment +1003.1274 Materials Science +1003.4550 Differential Geometry +1003.4554 Differential Geometry +1003.5121 Solar and Stellar Astrophysics +1004.1485 Discrete Mathematics +1004.1907 +1004.2328 +1004.2387 Materials Science +1004.2466 Astrophysics of Galaxies +1004.3148 Statistics Theory +1004.3754 Theory +1004.4079 +1004.4118 +1004.4126 Mesoscale and Nanoscale Physics +1004.4135 Phenomenology +1004.4282 Strongly Correlated Electrons +1004.4738 Disordered Systems and Neural Networks +1004.4789 Phenomenology +1005.0032 High Energy Astrophysical Phenomena +1005.0509 Cosmology and Nongalactic Astrophysics +1005.1627 +1005.4115 Computational Complexity +1005.4650 +1005.5089 Strongly Correlated Electrons +1005.5454 Materials Science +1005.5524 Mesoscale and Nanoscale Physics +1005.5540 Superconductivity +1006.0819 Data Analysis, Statistics and Probability +1006.0937 Atomic Physics +1006.1175 Functional Analysis +1006.1347 Experiment +1006.1771 Superconductivity +1006.2032 Cosmology and Nongalactic Astrophysics +1006.2139 Solar and Stellar Astrophysics +1006.2919 Phenomenology +1006.3027 Logic in Computer Science +1006.3038 +1006.3132 Differential Geometry +1006.3442 Discrete Mathematics +1006.3455 Discrete Mathematics +1006.4655 Physics Education +1006.4662 Physics Education +1006.4857 Strongly Correlated Electrons +1006.4883 Complex Variables +1006.5558 +1007.0269 Materials Science +1007.0375 Phenomenology +1007.0649 Astrophysics of Galaxies +1007.0957 +1007.0987 Astrophysics of Galaxies +1007.1461 Astrophysics of Galaxies +1007.1564 +1007.2148 Astrophysics of Galaxies +1007.2894 Phenomenology +1007.2969 Probability +1007.3306 +1007.3363 Astrophysics of Galaxies +1007.3373 Chaotic Dynamics +1007.3375 Chaotic Dynamics +1007.3386 Analysis of PDEs +1007.3432 Statistical Mechanics +1007.4350 Statistics Theory +1007.4411 Solar and Stellar Astrophysics +1007.4433 Instrumentation and Detectors +1008.0113 Strongly Correlated Electrons +1008.0512 +1008.0605 Instrumentation and Methods for Astrophysics +1008.0624 Theory +1008.1266 +1008.1601 Solar and Stellar Astrophysics +1008.1751 Numerical Analysis +1008.2398 Metric Geometry +1008.2513 Astrophysics of Galaxies +1008.3291 +1008.3332 Computational Physics +1008.3347 Phenomenology +1008.3541 Solar and Stellar Astrophysics +1008.3642 High Energy Astrophysical Phenomena +1008.4156 Cosmology and Nongalactic Astrophysics +1008.4817 +1008.4848 Theory +1008.5052 Earth and Planetary Astrophysics +1009.0213 Superconductivity +1009.0903 Solar and Stellar Astrophysics +1009.0925 Astrophysics of Galaxies +1009.1326 Theory +1009.1490 Materials Science +1009.1897 Materials Science +1009.1905 Materials Science +1009.1907 Materials Science +1009.2786 Optimization and Control +1009.2899 +1009.4605 Complex Variables +1009.4795 Solar and Stellar Astrophysics +1009.4849 Strongly Correlated Electrons +1009.4933 Astrophysics of Galaxies +1009.5113 Instrumentation and Methods for Astrophysics +1009.5552 Mesoscale and Nanoscale Physics +1009.5686 Experiment +1009.5929 Astrophysics of Galaxies +1010.0327 Logic +1010.0504 Solar and Stellar Astrophysics +1010.0792 Statistics Theory +1010.0934 Molecular Networks +1010.1246 +1010.1357 Applications +1010.1521 +1010.2268 Statistical Mechanics +1010.2309 Astrophysics of Galaxies +1010.2747 Solar and Stellar Astrophysics +1010.2761 Commutative Algebra +1010.2767 Commutative Algebra +1010.4138 Neural and Evolutionary Computing +1010.4627 Classical Analysis and ODEs +1010.5271 Quantum Gases +1010.5474 Lattice +1010.5704 Commutative Algebra +1010.6142 Complex Variables +1011.0026 +1011.0618 High Energy Astrophysical Phenomena +1011.2025 Applications +1011.2028 Solar and Stellar Astrophysics +1011.2165 Algebraic Geometry +1011.2524 Theory +1011.2598 +1011.2635 Statistics Theory +1011.2645 Statistics Theory +1011.2707 High Energy Astrophysical Phenomena +1011.3916 +1011.4214 Logic in Computer Science +1011.6419 Cosmology and Nongalactic Astrophysics +1011.6479 Methodology +1012.0040 Mesoscale and Nanoscale Physics +1012.0042 Computers and Society +1012.0352 Theory +1012.0458 +1012.0460 Mesoscale and Nanoscale Physics +1012.0512 +1012.0709 Computational Physics +1012.1657 +1012.1869 Cosmology and Nongalactic Astrophysics +1012.1997 Chaotic Dynamics +1012.2497 Quantum Gases +1012.2717 Theory +1012.2926 +1012.3135 Lattice +1012.3262 Mesoscale and Nanoscale Physics +1012.3463 Materials Science +1012.4110 Atomic Physics +1012.4245 Functional Analysis +1012.4261 Mesoscale and Nanoscale Physics +1012.4602 +1012.4733 +1012.5221 Solar and Stellar Astrophysics +1012.5778 Phenomenology +1012.5961 Physics and Society +1101.0014 Statistical Mechanics +1101.0728 Quantum Gases +1101.0912 Methodology +1101.0923 Applications +1101.0971 Superconductivity +1101.0990 Methodology +1101.1692 High Energy Astrophysical Phenomena +1101.1721 Cosmology and Nongalactic Astrophysics +1101.1936 Representation Theory +1101.2024 Cosmology and Nongalactic Astrophysics +1101.2027 Cosmology and Nongalactic Astrophysics +1101.2029 Astrophysics of Galaxies +1101.2034 Astrophysics of Galaxies +1101.2035 Astrophysics of Galaxies +1101.2040 Instrumentation and Methods for Astrophysics +1101.2041 Cosmology and Nongalactic Astrophysics +1101.2043 Cosmology and Nongalactic Astrophysics +1101.2045 Cosmology and Nongalactic Astrophysics +1101.2046 Cosmology and Nongalactic Astrophysics +1101.2048 Cosmology and Nongalactic Astrophysics +1101.2329 Solar and Stellar Astrophysics +1101.2401 Materials Science +1101.2966 Analysis of PDEs +1101.3121 Analysis of PDEs +1101.3263 +1101.3349 High Energy Astrophysical Phenomena +1101.3428 Solar and Stellar Astrophysics +1101.3686 Differential Geometry +1101.3932 Combinatorics +1101.3961 Representation Theory +1101.4203 Instrumentation and Detectors +1101.4540 Theory +1101.4835 Probability +1101.4840 Complex Variables +1101.5307 +1101.5439 Mesoscale and Nanoscale Physics +1101.5644 Superconductivity +1102.0171 Materials Science +1102.0206 Experiment +1102.0348 Experiment +1102.0423 Group Theory +1102.0646 Materials Science +1102.0753 +1102.1461 Atomic Physics +1102.1843 +1102.2120 Classical Analysis and ODEs +1102.2722 Strongly Correlated Electrons +1102.2726 Mesoscale and Nanoscale Physics +1102.3515 Combinatorics +1102.4261 Instrumentation and Detectors +1102.4952 High Energy Astrophysical Phenomena +1102.5419 High Energy Astrophysical Phenomena +1102.5597 Numerical Analysis +1103.0684 Differential Geometry +1103.0687 Differential Geometry +1103.0763 High Energy Astrophysical Phenomena +1103.0924 Phenomenology +1103.1333 Mesoscale and Nanoscale Physics +1103.1596 Solar and Stellar Astrophysics +1103.1758 Discrete Mathematics +1103.1759 Differential Geometry +1103.1764 Combinatorics +1103.1880 Earth and Planetary Astrophysics +1103.2200 Rings and Algebras +1103.2511 Rings and Algebras +1103.2975 Functional Analysis +1103.3136 Differential Geometry +1103.4650 Experiment +1103.4821 Experiment +1103.6130 High Energy Astrophysical Phenomena +1103.6215 Statistical Mechanics +1103.6269 +1104.0075 High Energy Astrophysical Phenomena +1104.1078 Theory +1104.1242 Probability +1104.1726 Solar and Stellar Astrophysics +1104.3028 High Energy Astrophysical Phenomena +1104.3072 Strongly Correlated Electrons +1104.3115 Earth and Planetary Astrophysics +1104.3230 Differential Geometry +1104.4506 Discrete Mathematics +1104.4890 Data Structures and Algorithms +1105.0355 Neural and Evolutionary Computing +1105.0547 Mesoscale and Nanoscale Physics +1105.1966 Experiment +1105.1986 Metric Geometry +1105.3629 Astrophysics of Galaxies +1105.3797 Classical Analysis and ODEs +1105.3928 +1105.4315 Metric Geometry +1105.4947 Superconductivity +1105.5112 +1106.0426 Instrumentation and Methods for Astrophysics +1106.1774 Differential Geometry +1106.3202 General Mathematics +1106.5726 Optics +1107.0198 +1107.0745 Probability +1107.0882 Experiment +1107.1732 +1107.2763 Analysis of PDEs +1107.3108 +1107.3977 Data Structures and Algorithms +1107.4194 Statistical Mechanics +1107.4291 Algebraic Topology +1107.4856 Solar and Stellar Astrophysics +1107.5172 Materials Science +1107.5756 Number Theory +1108.0086 +1108.0433 Differential Geometry +1108.1023 High Energy Astrophysical Phenomena +1108.4177 Probability +1108.4539 +1109.0403 Pattern Formation and Solitons +1109.1838 Astrophysics of Galaxies +1109.4354 +1109.6909 General Finance +1110.0099 Combinatorics +1110.0208 +1110.0729 Algebraic Geometry +1110.0804 Probability +1110.1419 Analysis of PDEs +1110.1656 +1110.3833 +1110.4849 Logic +1110.4955 Soft Condensed Matter +1110.5791 Complex Variables +1111.0521 Experiment +1111.0962 Cosmology and Nongalactic Astrophysics +1111.2734 Functional Analysis +1111.4069 +1111.6143 Analysis of PDEs +1111.7212 Probability +1112.0331 Complex Variables +1112.0419 Superconductivity +1112.0436 Numerical Analysis +1112.0551 Probability +1112.2222 +1112.4052 Statistical Mechanics +1112.5004 +1112.5595 Cosmology and Nongalactic Astrophysics +1201.2634 High Energy Astrophysical Phenomena +1201.2827 Differential Geometry +1201.3015 Statistical Mechanics +1201.3125 +1201.4402 Experiment +1201.5841 Artificial Intelligence +1201.6684 Chemical Physics +1202.1493 High Energy Astrophysical Phenomena +1202.1510 Probability +1202.2784 +1202.3587 Number Theory +1202.3607 Solar and Stellar Astrophysics +1202.4615 Solar and Stellar Astrophysics +1202.5087 Experiment +1202.5637 Astrophysics of Galaxies +1202.6251 Experiment +1203.0729 Rings and Algebras +1203.1188 Probability +1203.1760 Software Engineering +1203.1912 Analysis of PDEs +1203.2160 +1203.3370 Networking and Internet Architecture +1203.5245 Statistics Theory +1203.6435 Statistical Mechanics +1203.6490 Classical Physics +1203.6531 Group Theory +1204.0079 Experiment +1204.0754 +1204.1281 Classical Analysis and ODEs +1204.1572 Classical Analysis and ODEs +1204.2001 Number Theory +1204.2419 Materials Science +1204.2703 Category Theory +1204.2869 Solar and Stellar Astrophysics +1204.2935 Classical Analysis and ODEs +1204.2939 Classical Analysis and ODEs +1204.4906 Logic +1204.5146 Combinatorics +1204.5617 Phenomenology +1205.0277 +1205.2842 Combinatorics +1205.3219 Statistical Mechanics +1205.3376 Cosmology and Nongalactic Astrophysics +1205.3452 Experiment +1205.3555 Computational Finance +1205.5441 Instrumentation and Detectors +1206.0230 Disordered Systems and Neural Networks +1206.1671 Probability +1206.2794 Experiment +1206.4408 Metric Geometry +1206.5156 Statistical Mechanics +1206.5326 Statistical Mechanics +1206.6586 Probability +1206.6709 Solar and Stellar Astrophysics +1207.0121 Category Theory +1207.0673 Probability +1207.1858 Quantum Gases +1207.4961 Quantum Gases +1207.5993 Experiment +1207.6016 Experiment +1208.0227 Databases +1208.1509 Probability +1208.6064 Systems and Control +1209.0156 +1209.0703 Statistics Theory +1209.1035 Complex Variables +1209.1993 Plasma Physics +1209.3952 Statistical Mechanics +1209.4474 K-Theory and Homology +1209.5634 Experiment +1209.5711 Complex Variables +1209.6325 +1209.6347 Experiment +1210.0017 Probability +1210.0586 Applications +1210.0662 Materials Science +1210.1359 High Energy Astrophysical Phenomena +1210.1434 Computation +1210.2601 Computation +1210.4492 Experiment +1210.4789 High Energy Astrophysical Phenomena +1210.6324 Superconductivity +1210.6750 Experiment +1210.7639 Probability +1210.7847 Experiment +1211.0299 Probability +1211.0572 High Energy Astrophysical Phenomena +1211.1230 Experiment +1211.1256 Materials Science +1211.2608 High Energy Astrophysical Phenomena +1211.4135 Algebraic Geometry +1211.5691 +1211.6141 Differential Geometry +1211.6424 Differential Geometry +1212.2327 Superconductivity +1212.2356 Superconductivity +1212.3165 Astrophysics of Galaxies +1212.3323 +1212.5016 Instrumentation and Detectors +1212.5205 Experiment +1212.6380 Group Theory +1212.6823 Phenomenology +1311.2140 Materials Science +1403.4918 Logic +1502.07550 Experiment +1510.08654 Experiment +alg-geom/9305006 Algebraic Geometry +alg-geom/9305007 Algebraic Geometry +alg-geom/9305008 Algebraic Geometry +alg-geom/9305009 Algebraic Geometry +alg-geom/9402005 Algebraic Geometry +alg-geom/9409008 Algebraic Geometry +astro-ph/0701179 +astro-ph/0701241 +astro-ph/0701349 +astro-ph/0701425 +astro-ph/0701691 +astro-ph/0701693 +astro-ph/0701700 +astro-ph/0701737 +astro-ph/0701756 +astro-ph/0701862 +astro-ph/0701901 +astro-ph/0702024 +astro-ph/0702061 +astro-ph/0702374 +astro-ph/0702517 +astro-ph/0702523 +astro-ph/0702588 +astro-ph/0702603 +astro-ph/0702647 +astro-ph/0703216 +astro-ph/0703554 +astro-ph/0703612 +astro-ph/0703743 +astro-ph/0703790 +astro-ph/9402015 +chao-dyn/9401007 Chaotic Dynamics +chao-dyn/9405008 Chaotic Dynamics +chao-dyn/9405009 Chaotic Dynamics +chao-dyn/9405011 Chaotic Dynamics +chao-dyn/9408005 Chaotic Dynamics +chao-dyn/9411024 Chaotic Dynamics +cmp-lg/9406023 Computation and Language +comp-gas/9305001 Cellular Automata and Lattice Gases +comp-gas/9305005 Cellular Automata and Lattice Gases +cond-mat/0701136 Other Condensed Matter +cond-mat/0701181 Statistical Mechanics +cond-mat/0701267 Materials Science +cond-mat/0701342 Materials Science +cond-mat/0701347 Superconductivity +cond-mat/0701348 Strongly Correlated Electrons +cond-mat/0701350 Statistical Mechanics +cond-mat/0701352 Materials Science +cond-mat/0701695 Other Condensed Matter +cond-mat/0701764 Other Condensed Matter +cond-mat/0702001 Statistical Mechanics +cond-mat/0702216 Other Condensed Matter +cond-mat/0702311 Materials Science +cond-mat/0702440 Strongly Correlated Electrons +cond-mat/0702548 Materials Science +cond-mat/0702607 Statistical Mechanics +cond-mat/0702656 Other Condensed Matter +cond-mat/0702685 Soft Condensed Matter +cond-mat/0703069 Materials Science +cond-mat/0703337 Materials Science +cond-mat/0703659 Mesoscale and Nanoscale Physics +cond-mat/0703695 Statistical Mechanics +cond-mat/9306052 +cond-mat/9307021 +cond-mat/9307033 +cond-mat/9307034 +cond-mat/9307054 +cond-mat/9309033 +cond-mat/9310070 +cond-mat/9312006 +cond-mat/9312008 +cond-mat/9312061 +cond-mat/9402072 +cond-mat/9403015 +cond-mat/9404022 +cond-mat/9404053 +cond-mat/9404056 +cond-mat/9404061 +cond-mat/9404064 +cond-mat/9404078 +cond-mat/9405011 +cond-mat/9405013 +cond-mat/9405018 +cond-mat/9405019 +cond-mat/9405050 +cond-mat/9405071 +cond-mat/9406018 +cond-mat/9406114 +cond-mat/9407023 +cond-mat/9407048 +cond-mat/9407049 +cond-mat/9407062 +cond-mat/9410069 +cond-mat/9411030 +cs/0701031 Logic in Computer Science +cs/0701070 Information Theory +cs/0701151 Symbolic Computation +cs/0701179 Distributed, Parallel, and Cluster Computing +cs/0701189 Data Structures and Algorithms +cs/0701193 Programming Languages +cs/0702001 Human-Computer Interaction +cs/0702002 Human-Computer Interaction +cs/0702003 Human-Computer Interaction +cs/0702004 Human-Computer Interaction +cs/0702005 Human-Computer Interaction +cs/0702006 Human-Computer Interaction +cs/0702043 Data Structures and Algorithms +cs/0702061 Discrete Mathematics +cs/0702066 Distributed, Parallel, and Cluster Computing +cs/0703008 Human-Computer Interaction +cs/0703009 Human-Computer Interaction +cs/0703053 Computer Vision and Pattern Recognition +cs/0703062 Learning +cs/0703073 Programming Languages +cs/0703074 Programming Languages +cs/0703075 Programming Languages +cs/0703076 Programming Languages +cs/0703077 Programming Languages +cs/0703084 Programming Languages +cs/0703091 Artificial Intelligence +cs/0703107 Networking and Internet Architecture +funct-an/9411005 Functional Analysis +gr-qc/0701158 +gr-qc/9211007 +gr-qc/9302022 +gr-qc/9306019 +gr-qc/9306031 +gr-qc/9307007 +gr-qc/9309009 +gr-qc/9402016 +gr-qc/9406035 +hep-lat/0702009 Lattice +hep-lat/0703010 Lattice +hep-lat/9207009 Lattice +hep-lat/9207010 Lattice +hep-lat/9305015 Lattice +hep-lat/9311041 Lattice +hep-lat/9401018 Lattice +hep-ph/0701092 Phenomenology +hep-ph/0701114 Phenomenology +hep-ph/0701195 Phenomenology +hep-ph/0703052 Phenomenology +hep-ph/0703290 Phenomenology +hep-ph/9204213 Phenomenology +hep-ph/9210237 Phenomenology +hep-ph/9211335 Phenomenology +hep-ph/9212257 Phenomenology +hep-ph/9302264 Phenomenology +hep-ph/9303251 Phenomenology +hep-ph/9303311 Phenomenology +hep-ph/9305240 Phenomenology +hep-ph/9306287 Phenomenology +hep-ph/9307278 Phenomenology +hep-ph/9309211 Phenomenology +hep-ph/9309240 Phenomenology +hep-ph/9309281 Phenomenology +hep-ph/9401202 Phenomenology +hep-ph/9401312 Phenomenology +hep-ph/9402209 Phenomenology +hep-ph/9402287 Phenomenology +hep-ph/9403238 Phenomenology +hep-ph/9405397 Phenomenology +hep-ph/9406305 Phenomenology +hep-ph/9406358 Phenomenology +hep-ph/9409258 Phenomenology +hep-ph/9409259 Phenomenology +hep-ph/9410292 Phenomenology +hep-ph/9411289 Phenomenology +hep-th/9204065 Theory +hep-th/9205076 Theory +hep-th/9207005 Theory +hep-th/9208078 Theory +hep-th/9210026 Theory +hep-th/9211060 Theory +hep-th/9212003 Theory +hep-th/9212046 Theory +hep-th/9303173 Theory +hep-th/9303174 Theory +hep-th/9309099 Theory +hep-th/9310093 Theory +hep-th/9311003 Theory +hep-th/9312068 Theory +hep-th/9312085 Theory +hep-th/9401099 Theory +hep-th/9401161 Theory +hep-th/9404035 Theory +hep-th/9405078 Theory +hep-th/9405161 Theory +hep-th/9407079 Theory +hep-th/9408003 Theory +hep-th/9408117 Theory +hep-th/9410017 Theory +hep-th/9410056 Theory +hep-th/9410069 Theory +hep-th/9410230 Theory +hep-th/9411095 Theory +hep-th/9412209 Theory +math-ph/0703010 +math/0701088 Statistics Theory +math/0701142 Statistics Theory +math/0701272 Complex Variables +math/0701504 K-Theory and Homology +math/0701680 Algebraic Geometry +math/0701845 Optimization and Control +math/0701858 Analysis of PDEs +math/0701910 Probability +math/0701915 Numerical Analysis +math/0701924 Probability +math/0701926 Functional Analysis +math/0702050 Probability +math/0702255 Analysis of PDEs +math/0702318 Analysis of PDEs +math/0702368 Commutative Algebra +math/0702446 Classical Analysis and ODEs +math/0702609 Statistics Theory +math/0702656 Analysis of PDEs +math/0702674 Numerical Analysis +math/0702683 Statistics Theory +math/0702687 Optimization and Control +math/0702694 Analysis of PDEs +math/0702701 Statistics Theory +math/0702706 Statistics Theory +math/0702707 Analysis of PDEs +math/0702794 Functional Analysis +math/0702795 Functional Analysis +math/0702796 Functional Analysis +math/0702866 Statistics Theory +math/0702873 Probability +math/0702875 Probability +math/0703031 Combinatorics +math/0703056 Statistics Theory +math/0703377 Optimization and Control +math/0703415 Metric Geometry +math/0703640 Analysis of PDEs +math/0703765 Algebraic Topology +math/0703787 Probability +math/0703793 Probability +math/0703913 Probability +nucl-ex/0701072 +nucl-th/9210007 +nucl-th/9305013 +nucl-th/9310031 +nucl-th/9312007 +nucl-th/9401013 +nucl-th/9402025 +nucl-th/9403007 +nucl-th/9403017 +nucl-th/9403018 +nucl-th/9405014 +nucl-th/9412015 +patt-sol/9305008 Pattern Formation and Solitons +patt-sol/9403001 Pattern Formation and Solitons +physics/0701032 Classical Physics +physics/0701033 Classical Physics +physics/0701036 Biological Physics +physics/0701047 Classical Physics +physics/0701048 Classical Physics +physics/0701050 Classical Physics +physics/0701064 Classical Physics +physics/0701066 Classical Physics +physics/0701119 Classical Physics +physics/0701121 Classical Physics +physics/0701131 Fluid Dynamics +physics/0701285 Medical Physics +physics/0701303 Atomic Physics +physics/0701341 Classical Physics +physics/0702173 Fluid Dynamics +physics/0702189 Instrumentation and Detectors +physics/0702195 Optics +physics/0702221 General Physics +physics/0702222 General Physics +physics/0702223 General Physics +physics/0703110 Optics +physics/0703131 Atomic Physics +physics/0703147 Atomic Physics +physics/0703169 Optics +physics/0703236 Medical Physics +q-bio/0701016 Other Quantitative Biology +q-bio/0701026 Tissues and Organs +q-bio/0701040 Populations and Evolution +q-bio/0701044 Populations and Evolution +q-bio/0702009 Populations and Evolution +q-bio/0702058 Quantitative Methods +q-bio/0702060 Quantitative Methods +q-bio/0703006 Genomics +quant-ph/0507279 +quant-ph/0611254 +quant-ph/0701049 +quant-ph/0701087 +quant-ph/0701140 +quant-ph/0701176 +quant-ph/0701222 +quant-ph/0703188 +0706.3565 Data Structures and Algorithms +0709.0061 +0710.5578 +0802.4266 Representation Theory +0803.3800 +0811.0692 +0908.3134 Plasma Physics +0911.1960 Populations and Evolution +1002.2062 Cosmology and Nongalactic Astrophysics +1006.1982 Cosmology and Nongalactic Astrophysics +1012.0596 Logic +1103.4979 Databases +1105.0260 Differential Geometry +1105.1430 Statistics Theory +1107.2923 Astrophysics of Galaxies +1110.6178 Instrumentation and Methods for Astrophysics +1202.3788 Cosmology and Nongalactic Astrophysics +1203.1887 Solar and Stellar Astrophysics +1204.0292 Cosmology and Nongalactic Astrophysics +1204.5193 Solar and Stellar Astrophysics +1207.2481 Earth and Planetary Astrophysics +1208.2717 Solar and Stellar Astrophysics +1209.4075 Representation Theory +1211.1203 Representation Theory +1211.4529 Astrophysics of Galaxies +1301.1140 Representation Theory +1302.3281 Combinatorics +1303.5265 Category Theory +1304.0136 Solar and Stellar Astrophysics +1304.1879 Materials Science +1304.3487 Dynamical Systems +1305.2589 Algebraic Topology +1307.1353 Computational Complexity +1308.1459 Theory +1308.6010 Cosmology and Nongalactic Astrophysics +1309.2658 High Energy Astrophysical Phenomena +1309.5382 Cosmology and Nongalactic Astrophysics +1309.6340 Dynamical Systems +1310.4071 Algebraic Geometry +1311.1543 Statistical Mechanics +1311.3240 Combinatorics +1311.3267 Dynamical Systems +1312.2264 Cosmology and Nongalactic Astrophysics +1312.5969 Dynamical Systems +1401.2638 Group Theory +1401.5701 Tissues and Organs +1401.6133 Differential Geometry +1401.6143 Differential Geometry +1401.6329 Number Theory +1401.6451 Algebraic Topology +1401.7292 Dynamical Systems +1402.0969 Probability +1402.3302 Cosmology and Nongalactic Astrophysics +1402.5920 Materials Science +1402.7134 Experiment +1402.7235 Combinatorics +1403.2016 Dynamical Systems +1404.0599 Dynamical Systems +1404.0616 Dynamical Systems +1404.0899 High Energy Astrophysical Phenomena +1404.4188 High Energy Astrophysical Phenomena +1404.6333 Representation Theory +1404.7838 Algebraic Geometry +1405.2487 Probability +1406.0299 Rings and Algebras +1406.1171 Phenomenology +1406.3250 Earth and Planetary Astrophysics +1406.4710 Computation and Language +1406.5594 Chemical Physics +1406.6951 Probability +1407.1177 Analysis of PDEs +1407.2119 Experiment +1407.2841 +1407.4467 Theory +1407.6569 Mesoscale and Nanoscale Physics +1407.6795 Strongly Correlated Electrons +1407.7419 Statistical Mechanics +1407.8025 +1409.3998 +1409.5215 Probability +1409.7201 +1410.4909 Experiment +1410.8535 Strongly Correlated Electrons +1411.1234 Mesoscale and Nanoscale Physics +1411.4502 Mesoscale and Nanoscale Physics +1411.5565 Dynamical Systems +1412.2142 +1412.2527 Superconductivity +1412.5549 Number Theory +1412.6928 Dynamical Systems +1412.7050 Astrophysics of Galaxies +1501.00248 Algebraic Geometry +1501.05378 Theory +1502.02069 Statistics Theory +1502.02619 Group Theory +1502.03273 Computer Vision and Pattern Recognition +1502.04654 Statistics Theory +1502.05014 Commutative Algebra +1502.05972 Statistical Mechanics +1502.06098 Optimization and Control +1502.07334 Machine Learning +1502.07728 Fluid Dynamics +1503.00848 Computer Vision and Pattern Recognition +1503.01932 Statistical Mechanics +1503.04179 Optimization and Control +1503.06117 Superconductivity +1503.07399 Metric Geometry +1504.00044 Analysis of PDEs +1504.00369 Mesoscale and Nanoscale Physics +1504.00404 Astrophysics of Galaxies +1504.00665 Functional Analysis +1504.02759 Theory +1504.03269 Cosmology and Nongalactic Astrophysics +1504.03885 Spectral Theory +1504.05006 Machine Learning +1504.06526 Information Theory +1505.01540 +1505.02014 Statistical Mechanics +1505.02159 Astrophysics of Galaxies +1505.03271 Fluid Dynamics +1505.03503 +1505.04034 High Energy Astrophysical Phenomena +1505.04792 Astrophysics of Galaxies +1505.05666 Mesoscale and Nanoscale Physics +1505.07186 Discrete Mathematics +1505.07865 Numerical Analysis +1506.00682 Computer Science and Game Theory +1506.01119 +1506.01147 Solar and Stellar Astrophysics +1506.01156 Theory +1506.01605 Differential Geometry +1506.02408 Solar and Stellar Astrophysics +1506.02466 +1506.03007 +1506.03542 +1506.05108 +1506.05295 Cosmology and Nongalactic Astrophysics +1506.05354 Number Theory +1506.05766 +1506.05873 Theory +1506.06585 Strongly Correlated Electrons +1506.07048 Strongly Correlated Electrons +1506.07605 +1506.07662 Soft Condensed Matter +1506.07901 Mesoscale and Nanoscale Physics +1506.08074 Statistical Mechanics +1507.01719 Information Theory +1507.02490 Computational Physics +1507.03604 Astrophysics of Galaxies +1507.04118 Statistics Theory +1507.04760 Computer Vision and Pattern Recognition +1507.05587 +1507.05606 Strongly Correlated Electrons +1507.05702 Strongly Correlated Electrons +1507.05745 Mesoscale and Nanoscale Physics +1507.06154 Combinatorics +1507.06625 Theory +1507.06921 Differential Geometry +1507.07567 Phenomenology +1507.07591 +1507.07927 Phenomenology +1507.07992 Computational Physics +1507.08353 Solar and Stellar Astrophysics +1507.08513 Strongly Correlated Electrons +1508.00052 Phenomenology +1508.00094 Computational Complexity +1508.01034 Cosmology and Nongalactic Astrophysics +1508.02271 +1508.02895 Biological Physics +1508.03016 Quantum Gases +1508.04323 Phenomenology +1508.04455 High Energy Astrophysical Phenomena +1508.04590 Strongly Correlated Electrons +1508.04762 Phenomenology +1508.04797 +1508.04966 Astrophysics of Galaxies +1508.05444 Materials Science +1508.07125 Strongly Correlated Electrons +1508.07665 Materials Science +1508.07752 +1508.07924 Biological Physics +1509.00470 Phenomenology +1509.01589 Cosmology and Nongalactic Astrophysics +1509.01935 Mesoscale and Nanoscale Physics +1509.02214 Probability +1509.02258 Mesoscale and Nanoscale Physics +1509.02285 Solar and Stellar Astrophysics +1509.02573 +1509.03323 High Energy Astrophysical Phenomena +1509.03551 Chaotic Dynamics +1509.04550 Strongly Correlated Electrons +1509.04951 Plasma Physics +1509.04968 Phenomenology +1509.05300 Phenomenology +1509.05496 Soft Condensed Matter +1509.05814 Atomic Physics +1509.05824 +1509.05918 +1509.06113 Learning +1509.06408 Metric Geometry +1509.06521 Experiment +1509.06664 Computation and Language +1509.06787 Materials Science +1509.07822 Materials Science +1509.07904 Phenomenology +1509.08433 Strongly Correlated Electrons +1509.08488 Superconductivity +1509.08518 Strongly Correlated Electrons +1509.08720 Phenomenology +1509.08810 Mesoscale and Nanoscale Physics +1509.08929 Phenomenology +1509.09061 Theory +1510.00590 High Energy Astrophysical Phenomena +1510.00895 Mesoscale and Nanoscale Physics +1510.01082 +1510.01227 Pattern Formation and Solitons +1510.01332 Theory +1510.01756 Cosmology and Nongalactic Astrophysics +1510.01969 Theory +1510.02280 +1510.02407 +1510.02725 +1510.03131 +1510.03200 Classical Analysis and ODEs +1510.03254 Plasma Physics +1510.03256 Chemical Physics +1510.03421 Computation and Language +1510.03621 Instrumentation and Methods for Astrophysics +1510.03657 Experiment +1510.03905 +1510.03942 Statistical Mechanics +1510.04262 Mesoscale and Nanoscale Physics +1510.04339 Representation Theory +1510.04531 +1510.05096 Group Theory +1510.05452 Discrete Mathematics +1510.05469 Operator Algebras +1510.05685 Materials Science +1510.05834 +1510.06103 Optics +1510.06113 Robotics +1510.06475 Phenomenology +1510.06742 Phenomenology +1510.06764 +1510.06789 +1510.07395 Lattice +1510.07495 Solar and Stellar Astrophysics +1510.07697 Phenomenology +1510.07946 Mesoscale and Nanoscale Physics +1510.08032 Atomic Physics +1510.08180 Materials Science +1510.08194 Optics +1510.08305 Phenomenology +1510.08391 Materials Science +1510.08412 Strongly Correlated Electrons +1510.08423 Optics +1510.08549 Statistical Mechanics +1510.08864 Theory +1511.00051 Emerging Technologies +1511.00110 +1511.00178 Differential Geometry +1511.00218 Strongly Correlated Electrons +1511.00439 +1511.00866 Mesoscale and Nanoscale Physics +1511.01081 Fluid Dynamics +1511.01504 Strongly Correlated Electrons +1511.02220 +1511.02330 Mesoscale and Nanoscale Physics +1511.02428 Experiment +1511.02593 +1511.02745 Theory +1511.02808 Cosmology and Nongalactic Astrophysics +1511.02915 Theory +1511.03223 +1511.03343 Phenomenology +1511.03856 Strongly Correlated Electrons +1511.03956 Lattice +1511.04335 Cosmology and Nongalactic Astrophysics +1511.04489 +1511.04548 Atomic Physics +1511.04653 Cosmology and Nongalactic Astrophysics +1511.04820 Materials Science +1511.04845 Phenomenology +1511.04910 +1511.04982 Plasma Physics +1511.05255 Quantum Gases +1511.05307 Astrophysics of Galaxies +1511.05320 Quantum Gases +1511.05389 Computation and Language +1511.05584 Phenomenology +1511.05666 Computer Vision and Pattern Recognition +1511.05834 Information Theory +1511.06114 Learning +1511.06281 Learning +1511.06361 Learning +1511.06432 Computer Vision and Pattern Recognition +1511.06448 Learning +1511.06455 Learning +1511.06657 +1511.07433 Phenomenology +1511.07758 Mesoscale and Nanoscale Physics +1511.08503 Solar and Stellar Astrophysics +1511.08633 Mesoscale and Nanoscale Physics +1511.08717 Plasma Physics +1511.08898 Mesoscale and Nanoscale Physics +1511.09260 +1511.09428 Materials Science +1512.00008 Astrophysics of Galaxies +1512.00669 Mesoscale and Nanoscale Physics +1512.01063 Strongly Correlated Electrons +1512.01232 Theory +1512.02480 Number Theory +1512.02516 +1512.02986 Solar and Stellar Astrophysics +1512.03244 Soft Condensed Matter +1512.03425 Functional Analysis +1512.03527 Strongly Correlated Electrons +1512.03876 +1512.04120 Astrophysics of Galaxies +1512.04694 Soft Condensed Matter +1512.04827 +1512.05012 Mesoscale and Nanoscale Physics +1512.05191 +1512.05282 +1512.05286 Lattice +1512.05370 +1512.05873 Lattice +1512.06083 Phenomenology +1512.06676 +1512.06744 Phenomenology +1512.06895 Experiment +1512.06998 Experiment +1512.07708 +1512.07760 Fluid Dynamics +1512.08546 Cryptography and Security +1512.08907 Solar and Stellar Astrophysics +1512.08979 Cosmology and Nongalactic Astrophysics +1512.09224 Materials Science +1601.00376 Cosmology and Nongalactic Astrophysics +1601.00874 Solar and Stellar Astrophysics +1601.01057 Atomic Physics +1601.01599 Solar and Stellar Astrophysics +1601.01696 Astrophysics of Galaxies +1601.01904 Solar and Stellar Astrophysics +1601.02392 Solar and Stellar Astrophysics +1601.03197 Astrophysics of Galaxies +1601.03542 Solar and Stellar Astrophysics +1601.03804 Phenomenology +1601.03818 Statistical Mechanics +1601.04517 Solar and Stellar Astrophysics +1601.04535 Statistical Finance +1601.04727 Instrumentation and Methods for Astrophysics +1601.04728 Biological Physics +1601.04773 +1601.04889 Information Theory +1601.05010 Mesoscale and Nanoscale Physics +1601.05091 Solar and Stellar Astrophysics +1601.05589 Theory +1601.05646 Earth and Planetary Astrophysics +1601.05726 Earth and Planetary Astrophysics +1601.05987 High Energy Astrophysical Phenomena +1601.06196 Mesoscale and Nanoscale Physics +1601.06249 Combinatorics +1601.06970 Astrophysics of Galaxies +1601.06986 Astrophysics of Galaxies +1601.07015 Phenomenology +1601.07064 Classical Physics +1601.07682 Strongly Correlated Electrons +1602.00091 High Energy Astrophysical Phenomena +1602.00211 Phenomenology +1602.00429 Commutative Algebra +1602.00542 Information Theory +1602.00669 Cell Behavior +1602.00893 Mesoscale and Nanoscale Physics +1602.00907 Phenomenology +1602.01030 Phenomenology +1602.01141 +1602.01331 Cosmology and Nongalactic Astrophysics +1602.01405 Instrumentation and Detectors +1602.01433 High Energy Astrophysical Phenomena +1602.01787 Methodology +1602.01788 Methodology +1602.01945 Strongly Correlated Electrons +1602.02121 Cosmology and Nongalactic Astrophysics +1602.02655 Biological Physics +1602.03014 Machine Learning +1602.04266 Superconductivity +1602.04549 Analysis of PDEs +1602.04927 Optics +1602.05084 Probability +1602.05519 Mesoscale and Nanoscale Physics +1602.05875 Machine Learning +1602.06379 +1602.06381 +1602.06623 Instrumentation and Methods for Astrophysics +1602.06709 Distributed, Parallel, and Cluster Computing +1602.07052 +1602.07199 Human-Computer Interaction +1602.07334 Solar and Stellar Astrophysics +1602.07356 +1602.07511 +1602.08057 Optics +1602.08081 Plasma Physics +1602.08127 Computer Vision and Pattern Recognition +1602.08239 Disordered Systems and Neural Networks +1602.08396 Optimization and Control +1602.08543 Plasma Physics +1602.08706 Geophysics +1602.08735 Distributed, Parallel, and Cluster Computing +1602.08796 Probability +1602.08834 Systems and Control +1602.08874 Instrumentation and Detectors +1602.08906 Mesoscale and Nanoscale Physics +1602.08987 Systems and Control +1602.09061 Logic in Computer Science +1602.09078 Pricing of Securities +1602.09114 Superconductivity +1603.00003 +1603.00004 Number Theory +1603.00005 Accelerator Physics +1603.00006 Combinatorics +1603.00007 Dynamical Systems +1603.00010 Instrumentation and Detectors +1603.00012 Combinatorics +1603.00013 Instrumentation and Detectors +1603.00016 Instrumentation and Detectors +1603.00040 Medical Physics +1603.00045 Commutative Algebra +1603.00047 Algebraic Topology +1603.00049 Dynamical Systems +1603.00050 Applications +1603.00051 Combinatorics +1603.00053 Dynamical Systems +1603.00058 Neurons and Cognition +1603.00059 Social and Information Networks +1603.00060 Computational Geometry +1603.00061 Numerical Analysis +1603.00063 Optics +1603.00064 Differential Geometry +1603.00067 Theory +1603.00069 Computation +1603.00072 Pattern Formation and Solitons +1603.00073 Algebraic Geometry +1603.00076 Dynamical Systems +1603.00079 Dynamical Systems +1603.00080 Number Theory +1603.00081 Probability +1603.00085 Combinatorics +1603.00087 Cryptography and Security +1603.00088 Theory +1603.00091 Data Structures and Algorithms +1603.00092 Information Theory +1603.00097 Neurons and Cognition +1603.00100 Cryptography and Security +1603.00103 Algebraic Topology +1603.00107 Dynamical Systems +1603.00108 Quantum Algebra +1603.00109 Rings and Algebras +1603.00111 Materials Science +1603.00113 Dynamical Systems +1603.00115 Solar and Stellar Astrophysics +1603.00122 Dynamical Systems +1603.00124 Computer Vision and Pattern Recognition +1603.00126 Statistics Theory +1603.00128 Computer Vision and Pattern Recognition +1603.00131 Distributed, Parallel, and Cluster Computing +1603.00132 Computer Vision and Pattern Recognition +1603.00133 Information Theory +1603.00136 High Energy Astrophysical Phenomena +1603.00137 Probability +1603.00138 High Energy Astrophysical Phenomena +1603.00139 Dynamical Systems +1603.00140 High Energy Astrophysical Phenomena +1603.00141 Solar and Stellar Astrophysics +1603.00143 High Energy Astrophysical Phenomena +1603.00150 Computer Vision and Pattern Recognition +1603.00153 Mesoscale and Nanoscale Physics +1603.00154 Information Theory +1603.00157 Analysis of PDEs +1603.00161 Number Theory +1603.00163 Strongly Correlated Electrons +1603.00168 Numerical Analysis +1603.00169 Information Theory +1603.00171 Adaptation and Self-Organizing Systems +1603.00178 +1603.00182 Cryptography and Security +1603.00183 Functional Analysis +1603.00186 Commutative Algebra +1603.00188 Optics +1603.00190 Materials Science +1603.00192 Phenomenology +1603.00193 Algebraic Geometry +1603.00194 Soft Condensed Matter +1603.00198 Combinatorics +1603.00200 Neurons and Cognition +1603.00203 Information Theory +1603.00207 Number Theory +1603.00208 Probability +1603.00209 Operator Algebras +1603.00210 Numerical Analysis +1603.00213 Data Structures and Algorithms +1603.00214 Statistics Theory +1603.00215 +1603.00216 Materials Science +1603.00222 Differential Geometry +1603.00228 Phenomenology +1603.00231 High Energy Astrophysical Phenomena +1603.00234 Algebraic Geometry +1603.00240 Materials Science +1603.00242 Group Theory +1603.00254 Computational Complexity +1603.00257 Materials Science +1603.00259 Probability +1603.00260 Information Retrieval +1603.00268 Dynamical Systems +1603.00271 Analysis of PDEs +1603.00273 Information Theory +1603.00274 Theory +1603.00278 Quantitative Methods +1603.00280 Differential Geometry +1603.00282 Combinatorics +1603.00284 Machine Learning +1603.00289 Numerical Analysis +1603.00292 +1603.00294 Differential Geometry +1603.00295 Robotics +1603.00297 Computation +1603.00298 +1603.00299 Popular Physics +1603.00300 Optimization and Control +1603.00302 Information Theory +1603.00303 General Mathematics +1603.00312 Combinatorics +1603.00315 +1603.00317 Numerical Analysis +1603.00318 +1603.00320 Fluid Dynamics +1603.00324 Functional Analysis +1603.00327 Representation Theory +1603.00328 Plasma Physics +1603.00330 Group Theory +1603.00331 Algebraic Geometry +1603.00334 Commutative Algebra +1603.00337 Phenomenology +1603.00340 Dynamical Systems +1603.00342 History and Philosophy of Physics +1603.00343 +1603.00345 +1603.00351 Computation +1603.00353 History and Philosophy of Physics +1603.00354 Spectral Theory +1603.00356 Superconductivity +1603.00365 Probability +1603.00368 Cosmology and Nongalactic Astrophysics +1603.00371 Optics +1603.00372 Materials Science +1603.00373 Representation Theory +1603.00374 Number Theory +1603.00378 Fluid Dynamics +1603.00379 Differential Geometry +1603.00382 Functional Analysis +1603.00384 Metric Geometry +1603.00390 Probability +1603.00393 Methodology +1603.00395 Social and Information Networks +1603.00396 Theory +1603.00397 Neurons and Cognition +1603.00400 Databases +1603.00403 Algebraic Geometry +1603.00406 Networking and Internet Architecture +1603.00407 Geometric Topology +1603.00411 Algebraic Geometry +1603.00415 Neurons and Cognition +1603.00417 Representation Theory +1603.00418 Software Engineering +1603.00423 Artificial Intelligence +1603.00426 Quantum Algebra +1603.00427 Systems and Control +1603.00428 Analysis of PDEs +1603.00429 Numerical Analysis +1603.00430 Analysis of PDEs +1603.00431 Programming Languages +1603.00438 Computer Vision and Pattern Recognition +1603.00441 Human-Computer Interaction +1603.00443 Mesoscale and Nanoscale Physics +1603.00444 Methodology +1603.00456 Solar and Stellar Astrophysics +astro-ph/0610528 +cond-mat/0302539 Strongly Correlated Electrons +math/9908107 Algebraic Geometry +quant-ph/0409148 +1609.01829 Computer Vision and Pattern Recognition +1609.06830 Statistics Theory +1609.07035 Computation and Language +0802.1497 Differential Geometry +0805.4775 Differential Geometry +0810.4478 Differential Geometry +1012.3941 Differential Geometry +1102.4255 Functional Analysis +1107.3822 Differential Geometry +1109.2307 Quantum Gases +1110.2900 +1205.0796 Statistics Theory +1205.2339 +1208.6409 Classical Physics +1209.5993 Computational Complexity +1211.7177 Computational Physics +1304.2899 Optics +1307.7669 Statistical Mechanics +1308.0751 Algebraic Geometry +1309.6260 Differential Geometry +1309.6727 Information Theory +1311.7532 Mesoscale and Nanoscale Physics +1402.2985 Group Theory +1402.4844 Learning +1403.3320 Numerical Analysis +1403.5037 Differential Geometry +1404.7193 Dynamical Systems +1404.7341 Commutative Algebra +1405.0025 Geometric Topology +1405.6707 Social and Information Networks +1406.1568 Populations and Evolution +1406.2290 Theory +1406.3292 Group Theory +1407.4084 Analysis of PDEs +1409.0717 Optics +1409.6659 Combinatorics +1410.1052 Logic +1410.3120 Optimization and Control +1410.5131 Logic in Computer Science +1410.5324 Subcellular Processes +1410.6729 Dynamical Systems +1411.2468 Metric Geometry +1411.6208 Geometric Topology +1412.0703 Combinatorics +1501.02127 Analysis of PDEs +1502.03296 Physics and Society +1503.00526 +1503.00768 Geometric Topology +1503.01676 Networking and Internet Architecture +1503.02343 Probability +1503.03362 Category Theory +1503.06200 Strongly Correlated Electrons +1503.08356 Machine Learning +1504.03685 Astrophysics of Galaxies +1504.05743 Social and Information Networks +1504.06599 +1505.03803 Dynamical Systems +1505.05235 Statistics Theory +1505.06275 Applications +1505.06950 Classical Analysis and ODEs +1505.07818 Machine Learning +1506.02323 Molecular Networks +1506.04180 Spectral Theory +1506.05333 Chaotic Dynamics +1506.05727 Superconductivity +1506.07933 Distributed, Parallel, and Cluster Computing +1507.01870 Theory +1507.02089 Combinatorics +1507.03034 Algebraic Geometry +1507.03913 Category Theory +1507.05995 Optimization and Control +1508.00159 Algebraic Topology +1508.00477 Commutative Algebra +1508.03756 Fluid Dynamics +1508.04763 Cosmology and Nongalactic Astrophysics +1508.05917 Quantum Gases +1508.06229 Group Theory +1508.06265 Numerical Analysis +1508.06678 +1508.07240 Numerical Analysis +1509.00848 Chemical Physics +1509.07689 Algebraic Geometry +1509.07870 Astrophysics of Galaxies +1509.08258 Experiment +1509.08875 +1509.09183 Mesoscale and Nanoscale Physics +1510.00754 +1510.01638 Metric Geometry +1510.02896 Differential Geometry +1510.02954 Probability +1510.03335 Lattice +1510.06619 Numerical Analysis +1510.06991 +1510.08663 Combinatorics +1511.00144 Number Theory +1511.00400 Geometric Topology +1511.00467 Optics +1511.01847 Algebraic Geometry +1511.03722 Learning +1511.04807 Cosmology and Nongalactic Astrophysics +1511.05594 Classical Physics +1511.06247 Learning +1511.06371 Phenomenology +1511.08718 Computational Finance +1512.00185 +1512.00341 Soft Condensed Matter +1512.01345 Cosmology and Nongalactic Astrophysics +1512.01503 Artificial Intelligence +1512.02885 +1512.05540 History and Philosophy of Physics +1512.06461 Experiment +1512.06637 Distributed, Parallel, and Cluster Computing +1512.08002 Experiment +1601.00621 Cosmology and Nongalactic Astrophysics +1601.01664 Materials Science +1601.02171 +1601.02174 +1601.04307 Algebraic Geometry +1601.04809 +1601.06794 Theory +1601.07321 Pattern Formation and Solitons +1601.07443 +1601.07641 Computational Physics +1602.00338 Mesoscale and Nanoscale Physics +1602.00648 Information Theory +1602.00654 Representation Theory +1602.01138 Instrumentation and Detectors +1602.02350 Learning +1602.02373 Machine Learning +1602.02660 Learning +1602.04664 +1602.05113 Logic in Computer Science +1602.05164 Group Theory +1602.05768 Distributed, Parallel, and Cluster Computing +1602.06527 High Energy Astrophysical Phenomena +1602.07653 Theory +1602.07694 High Energy Astrophysical Phenomena +1602.08306 Functional Analysis +1602.08797 Superconductivity +1603.00375 Computation and Language +1603.01450 Data Structures and Algorithms +1603.01912 Machine Learning +1603.02709 Solar and Stellar Astrophysics +1603.02883 Materials Science +1603.05124 Combinatorics +1603.05795 Combinatorics +1603.05954 Probability +1603.06264 Theory +1603.07412 Strongly Correlated Electrons +1603.07419 Systems and Control +1603.07873 Superconductivity +1603.08202 Logic +1603.09392 Analysis of PDEs +1604.00716 Phenomenology +1604.02915 Theory +1604.03853 Learning +1604.08018 Strongly Correlated Electrons +1604.08531 Rings and Algebras +1604.08806 Computer Vision and Pattern Recognition +1604.08822 Logic +1605.01444 Solar and Stellar Astrophysics +1605.01863 Probability +1605.02698 Quantum Gases +1605.03590 +1605.03974 Theory +1605.04348 Differential Geometry +1605.04409 Algebraic Geometry +1605.04676 +1605.04833 Medical Physics +1605.05579 Computer Vision and Pattern Recognition +1605.06151 Optics +1605.06279 Statistical Mechanics +1605.06485 Probability +1605.06573 Earth and Planetary Astrophysics +1605.06866 Statistics Theory +1605.07287 Optics +1605.07360 Phenomenology +1605.07367 Learning +1605.07383 Neurons and Cognition +1605.07588 Learning +1605.07596 Machine Learning +1605.07607 Combinatorics +1605.07696 Machine Learning +1605.07705 Multimedia +1605.07761 Systems and Control +1605.07825 Earth and Planetary Astrophysics +1605.07881 Metric Geometry +1605.07941 Geometric Topology +1605.07969 Artificial Intelligence +1605.08017 +1605.08032 Astrophysics of Galaxies +1605.08033 Optics +1605.08035 Human-Computer Interaction +1605.08058 Plasma Physics +1605.08063 Number Theory +1605.08065 Cryptography and Security +1605.08066 Discrete Mathematics +1605.08068 Computer Vision and Pattern Recognition +1605.08069 Optics +1605.08070 Statistical Mechanics +1605.08075 Theory +1605.08076 Accelerator Physics +1605.08078 Methodology +1605.08079 Materials Science +1605.08080 Chemical Physics +1605.08082 Geometric Topology +1605.08083 Analysis of PDEs +1605.08085 Astrophysics of Galaxies +1605.08087 Theory +1605.08089 Classical Analysis and ODEs +1605.08091 Lattice +1605.08094 Geometric Topology +1605.08095 Numerical Analysis +1605.08096 Logic in Computer Science +1605.08099 Economics +1605.08101 Optimization and Control +1605.08102 Information Theory +1605.08105 Physics Education +1605.08106 Logic in Computer Science +1605.08107 Data Structures and Algorithms +1605.08108 Optimization and Control +1605.08109 Rings and Algebras +1605.08112 History and Overview +1605.08115 Rings and Algebras +1605.08116 Theory +1605.08117 Human-Computer Interaction +1605.08120 Optics +1605.08122 Probability +1605.08123 Combinatorics +1605.08125 Computer Vision and Pattern Recognition +1605.08126 Computational Physics +1605.08127 Geometric Topology +1605.08131 Algebraic Topology +1605.08134 Numerical Analysis +1605.08139 Medical Physics +1605.08142 Analysis of PDEs +1605.08145 Fluid Dynamics +1605.08146 Performance +1605.08147 Category Theory +1605.08149 Hardware Architecture +1605.08150 Artificial Intelligence +1605.08151 Computer Vision and Pattern Recognition +1605.08152 Statistics Theory +1605.08153 Computer Vision and Pattern Recognition +1605.08155 Soft Condensed Matter +1605.08156 +1605.08158 Materials Science +1605.08159 Software Engineering +1605.08160 Complex Variables +1605.08161 Spectral Theory +1605.08163 Computer Vision and Pattern Recognition +1605.08165 Learning +1605.08167 Analysis of PDEs +1605.08169 Number Theory +1605.08171 +1605.08173 Fluid Dynamics +1605.08175 Functional Analysis +1605.08176 Materials Science +1605.08180 Social and Information Networks +1605.08181 +1605.08182 +1605.08184 Cosmology and Nongalactic Astrophysics +1605.08188 Learning +1605.08190 Phenomenology +1605.08191 Analysis of PDEs +1605.08192 Optics +1605.08194 Data Structures and Algorithms +1605.08196 Group Theory +1605.08199 Quantum Gases +1605.08203 Differential Geometry +1605.08204 Complex Variables +1605.08205 Space Physics +1605.08210 Strongly Correlated Electrons +1605.08214 Algebraic Geometry +1605.08218 Phenomenology +1605.08221 Robotics +1605.08239 Space Physics +1605.08242 Learning +1605.08243 Social and Information Networks +1605.08245 Number Theory +1605.08247 Computer Vision and Pattern Recognition +1605.08249 Algebraic Geometry +1605.08252 Materials Science +1605.08255 +1605.08257 Learning +1605.08258 Analysis of PDEs +1605.08260 Functional Analysis +1605.08261 Human-Computer Interaction +1605.08266 Group Theory +1605.08268 General Physics +1605.08270 Probability +1605.08271 General Physics +1605.08272 Cosmology and Nongalactic Astrophysics +1605.08274 General Physics +1605.08275 Probability +1605.08279 Chaotic Dynamics +1605.08280 Rings and Algebras +1605.08284 Optimization and Control +1605.08289 Complex Variables +1605.08290 Numerical Analysis +1605.08291 Strongly Correlated Electrons +1605.08292 Probability +1605.08295 Optics +1605.08297 Geometric Topology +1605.08299 Machine Learning +1605.08300 Information Theory +1605.08302 Phenomenology +1605.08304 Differential Geometry +1605.08305 Algebraic Topology +1605.08306 Materials Science +1605.08307 Algebraic Geometry +1605.08309 Networking and Internet Architecture +1605.08312 Analysis of PDEs +1605.08315 Analysis of PDEs +1605.08316 +1605.08317 Rings and Algebras +1605.08318 Astrophysics of Galaxies +1605.08319 Data Structures and Algorithms +1605.08321 Networking and Internet Architecture +1605.08323 Computer Vision and Pattern Recognition +1605.08325 Learning +1605.08326 Analysis of PDEs +1605.08328 Methodology +1605.08330 Algebraic Geometry +1605.08331 Astrophysics of Galaxies +1605.08332 Numerical Analysis +1605.08335 +1605.08336 Information Theory +1605.08340 Optimization and Control +1605.08344 Number Theory +1605.08348 +1605.08349 +1605.08350 Computer Vision and Pattern Recognition +1605.08351 High Energy Astrophysical Phenomena +1605.08353 Networking and Internet Architecture +1605.08358 Classical Analysis and ODEs +1605.08359 Computer Vision and Pattern Recognition +1605.08363 +1605.08364 Optimization and Control +1605.08365 Mesoscale and Nanoscale Physics +1605.08368 Dynamical Systems +1605.08369 Applications +1605.08370 Learning +1605.08371 Computational Physics +1605.08374 Learning +1605.08375 Learning +1605.08379 Space Physics +1605.08381 Information Theory +1605.08386 Combinatorics +1605.08388 Materials Science +1605.08390 Artificial Intelligence +1605.08391 Optimization and Control +1605.08393 Computational Physics +1605.08396 Sound +1605.08397 Computer Vision and Pattern Recognition +1605.08400 Statistics Theory +1605.08401 Computer Vision and Pattern Recognition +1605.08402 Functional Analysis +1605.08403 Discrete Mathematics +1605.08405 Soft Condensed Matter +1605.08408 Phenomenology +1605.08409 Social and Information Networks +1605.08410 Physics and Society +1605.08412 Computer Vision and Pattern Recognition +1605.08413 Cryptography and Security +1605.08416 Combinatorics +1605.08421 Number Theory +1605.08425 Theory +1605.08427 Information Theory +1605.08429 Mesoscale and Nanoscale Physics +1605.08432 +1608.02188 Numerical Analysis +0807.2716 +0901.4604 Computational Finance +0901.4613 Numerical Analysis +0903.2599 Analysis of PDEs +0903.4254 Dynamical Systems +0906.1956 Complex Variables +1004.2802 Logic in Computer Science +1103.5199 Cryptography and Security +1109.3906 +1202.2589 Differential Geometry +1203.4024 Quantum Algebra +1209.2772 Quantitative Methods +1209.3864 Number Theory +1211.0233 Complex Variables +1301.1120 Numerical Analysis +1301.3276 Spectral Theory +1304.5064 Geometric Topology +1304.5067 Group Theory +1304.5645 Probability +1305.3945 Distributed, Parallel, and Cluster Computing +1307.3302 Geometric Topology +1308.6410 Rings and Algebras +1309.0648 Number Theory +1309.0976 Optimization and Control +1309.4343 Analysis of PDEs +1309.6268 Analysis of PDEs +1310.1166 Computational Geometry +1312.0319 Superconductivity +1312.4614 Optics +1402.0405 Number Theory +1403.2984 +1404.0237 Systems and Control +1404.0766 Information Theory +1404.2433 Symplectic Geometry +1406.2974 Group Theory +1406.6514 Statistics Theory +1406.7364 Functional Analysis +1407.0328 Superconductivity +1407.4711 Combinatorics +1409.3696 Formal Languages and Automata Theory +1409.4679 Analysis of PDEs +1409.7306 Mesoscale and Nanoscale Physics +1409.8534 +1410.0257 +1410.2016 Chaotic Dynamics +1410.3552 Numerical Analysis +1410.5278 +1411.3594 +1411.7144 Optics +1411.7222 +1411.7318 Phenomenology +1412.5777 Quantum Algebra +1501.02061 +1501.02063 Optics +1501.02584 Strongly Correlated Electrons +1501.03526 Number Theory +1501.07812 Numerical Analysis +1502.00692 Numerical Analysis +1502.02235 Optics +1502.02725 Distributed, Parallel, and Cluster Computing +1502.02807 K-Theory and Homology +1502.04217 Numerical Analysis +1502.04357 Representation Theory +1502.06267 Probability +1503.02271 Computation +1503.05143 Algebraic Geometry +1504.01659 Dynamical Systems +1504.01993 Geometric Topology +1504.02500 Number Theory +1504.05620 Strongly Correlated Electrons +1504.06103 Computer Vision and Pattern Recognition +1504.06342 Methodology +1505.03200 Number Theory +1505.04440 Quantum Gases +1505.04462 Analysis of PDEs +1505.04996 Probability +1506.03320 Theory +1506.04922 Probability +1506.05283 Group Theory +1506.08316 Multimedia +1506.08365 Complex Variables +1506.08880 +1507.02401 Algebraic Topology +1507.02551 Chaotic Dynamics +1507.05312 +1507.07790 Theory +1507.08237 Analysis of PDEs +1507.08880 Analysis of PDEs +1508.02479 Learning +1508.05883 Differential Geometry +1509.00647 Mesoscale and Nanoscale Physics +1509.02234 Probability +1509.02339 Chaotic Dynamics +1509.02749 +1509.02805 Machine Learning +1509.03271 Methodology +1509.03744 Experiment +1509.04255 +1509.04542 Classical Analysis and ODEs +1509.06410 Algebraic Topology +1509.06934 +1509.07737 Operator Algebras +1509.08131 Materials Science +1509.08181 +1509.08651 Mesoscale and Nanoscale Physics +1510.00420 Biological Physics +1510.00422 Mesoscale and Nanoscale Physics +1510.01379 Quantum Gases +1510.01840 Superconductivity +1510.04216 Mesoscale and Nanoscale Physics +1510.04549 Mesoscale and Nanoscale Physics +1510.04614 Analysis of PDEs +1510.04646 +1510.05014 Statistics Theory +1510.05841 Optimization and Control +1510.06302 Logic +1510.06384 Computational Physics +1510.06859 Probability +1510.06930 +1510.07589 Theory +1510.09153 Mesoscale and Nanoscale Physics +1511.01018 Phenomenology +1511.01135 Optics +1511.02452 Phenomenology +1511.02723 Probability +1511.03265 Phenomenology +1511.04198 +1511.05122 Computer Vision and Pattern Recognition +1511.05380 Computational Physics +1511.05552 Neural and Evolutionary Computing +1511.06125 Computational Physics +1511.07254 Fluid Dynamics +1511.07954 Differential Geometry +1511.08198 Computation and Language +1511.08822 Algebraic Geometry +1511.09040 Mesoscale and Nanoscale Physics +1512.00472 Phenomenology +1512.01311 Astrophysics of Galaxies +1512.01339 Instrumentation and Detectors +1512.03583 Phenomenology +1512.03660 Other Quantitative Biology +1512.04765 +1512.06376 Phenomenology +1512.06556 Mesoscale and Nanoscale Physics +1512.07171 Analysis of PDEs +1512.08998 Physics Education +1601.00473 Digital Libraries +1601.02716 Quantum Gases +1601.03499 +1601.04132 Differential Geometry +1601.07354 Solar and Stellar Astrophysics +1601.07455 Lattice +1601.07918 Representation Theory +1601.08181 Theory +1601.08189 Social and Information Networks +1602.01277 +1602.01326 Statistical Mechanics +1602.02483 Solar and Stellar Astrophysics +1602.03269 Mesoscale and Nanoscale Physics +1602.04632 Materials Science +1602.04915 Machine Learning +1602.06041 Mesoscale and Nanoscale Physics +1602.06920 Computational Geometry +1602.07191 +1602.07437 Phenomenology +1602.08080 Medical Physics +1602.08325 Computer Vision and Pattern Recognition +1602.08725 +1602.08847 Instrumentation and Methods for Astrophysics +1603.00696 Software Engineering +1603.00775 Representation Theory +1603.01015 Materials Science +1603.01032 Computation and Language +1603.01040 Combinatorics +1603.01079 Exactly Solvable and Integrable Systems +1603.01261 Classical Physics +1603.01262 Instrumentation and Methods for Astrophysics +1603.01263 Geophysics +1603.01268 Mesoscale and Nanoscale Physics +1603.01270 +1603.01273 Phenomenology +1603.01289 Dynamical Systems +1603.01295 Statistics Theory +1603.01297 Tissues and Organs +1603.01299 Superconductivity +1603.01300 Computational Physics +1603.01306 Number Theory +1603.01308 Methodology +1603.01311 Differential Geometry +1603.01312 Artificial Intelligence +1603.01313 Performance +1603.01314 +1603.01315 Cryptography and Security +1603.01317 Atmospheric and Oceanic Physics +1603.01321 Atomic Physics +1603.01324 Robotics +1603.01326 Quantum Algebra +1603.01327 Representation Theory +1603.01331 Commutative Algebra +1603.01333 Computation and Language +1603.01334 Functional Analysis +1603.01335 Computers and Society +1603.01336 Information Retrieval +1603.01337 Phenomenology +1603.01338 Symbolic Computation +1603.01340 Information Theory +1603.01345 +1603.01346 Quantum Algebra +1603.01347 Superconductivity +1603.01349 Number Theory +1603.01352 Distributed, Parallel, and Cluster Computing +1603.01355 Analysis of PDEs +1603.01356 Networking and Internet Architecture +1603.01357 Probability +1603.01359 Machine Learning +1603.01367 Human-Computer Interaction +1603.01368 Combinatorics +1603.01369 Human-Computer Interaction +1603.01370 Functional Analysis +1603.01371 Combinatorics +1603.01372 Numerical Analysis +1603.01374 Learning +1603.01375 Analysis of PDEs +1603.01382 Combinatorics +1603.01384 Distributed, Parallel, and Cluster Computing +1603.01392 Networking and Internet Architecture +1603.01393 Information Theory +1603.01394 Combinatorics +1603.01396 High Energy Astrophysical Phenomena +1603.01397 Applications +1603.01403 Differential Geometry +1603.01404 Probability +1603.01407 Software Engineering +1603.01412 Distributed, Parallel, and Cluster Computing +1603.01415 High Energy Astrophysical Phenomena +1603.01416 Economics +1603.01417 Neural and Evolutionary Computing +1603.01422 Combinatorics +1603.01425 Algebraic Topology +1603.01426 Algebraic Geometry +1603.01429 +1603.01433 +1603.01435 Mesoscale and Nanoscale Physics +1603.01436 +1603.01439 Algebraic Geometry +1603.01443 Computer Science and Game Theory +1603.01444 Computer Science and Game Theory +1603.01448 High Energy Astrophysical Phenomena +1603.01451 +1603.01454 Rings and Algebras +1603.01459 Numerical Analysis +1603.01462 General Mathematics +1603.01463 Instrumentation and Methods for Astrophysics +1603.01468 Information Theory +1603.01469 Numerical Analysis +1603.01475 Algebraic Topology +1603.01476 Applications +1603.01478 +1603.01479 +1603.01481 Probability +1603.01483 +1603.01486 Data Structures and Algorithms +1603.01490 High Energy Astrophysical Phenomena +1603.01494 Number Theory +1603.01496 Combinatorics +1603.01498 Combinatorics +1603.01500 Metric Geometry +1603.01501 Superconductivity +1603.01502 Probability +1603.01506 Plasma Physics +1603.01508 Data Structures and Algorithms +1603.01509 Data Analysis, Statistics and Probability +1603.01510 Superconductivity +1603.01511 Social and Information Networks +1603.01512 Data Structures and Algorithms +1603.01514 Computation and Language +1603.01517 Optimization and Control +1603.01518 +1603.01519 Dynamical Systems +1603.01523 Software Engineering +1603.01529 Distributed, Parallel, and Cluster Computing +1603.01530 +1603.01531 Astrophysics of Galaxies +1603.01536 Distributed, Parallel, and Cluster Computing +1603.01538 Analysis of PDEs +1603.01539 +1603.01541 Computation and Language +1603.01544 Instrumentation and Detectors +1603.01550 Rings and Algebras +1603.01551 Computation +1603.01552 Materials Science +1603.01557 +1603.01561 +1603.01564 Robotics +1603.01569 +1603.01570 Social and Information Networks +1603.01571 Biological Physics +1603.01573 Dynamical Systems +1603.01576 Lattice +1603.01577 Differential Geometry +1603.01579 Cell Behavior +1603.01582 Dynamical Systems +1603.01585 Materials Science +1603.01589 Combinatorics +1603.01590 Materials Science +1603.01591 Lattice +1603.01592 Information Theory +1603.01595 Computation and Language +1603.01597 Computation and Language +1603.01600 Probability +1603.01603 Cosmology and Nongalactic Astrophysics +1603.01605 Mesoscale and Nanoscale Physics +1603.01607 Data Structures and Algorithms +astro-ph/0503608 +hep-th/0307135 Theory +math/0207239 Operator Algebras +math/0401340 Operator Algebras +quant-ph/0504018 +0705.1548 Other Quantitative Biology +0809.4288 Soft Condensed Matter +0811.0508 +0907.3979 Materials Science +0912.4760 Neurons and Cognition +1004.0244 General Topology +1006.1855 Strongly Correlated Electrons +1007.4056 Commutative Algebra +1009.5751 Strongly Correlated Electrons +1012.0350 Number Theory +1102.5399 Phenomenology +1103.2998 Symplectic Geometry +1109.3115 Symplectic Geometry +1110.3517 Classical Analysis and ODEs +1203.2724 Dynamical Systems +1205.0578 Astrophysics of Galaxies +1205.5725 Phenomenology +1207.1651 Commutative Algebra +1207.4977 Symplectic Geometry +1207.5842 Dynamical Systems +1209.5016 Algebraic Geometry +1209.6542 Dynamical Systems +1210.3542 Spectral Theory +1210.5623 Spectral Theory +1211.0942 +1211.1874 Group Theory +1301.4552 Systems and Control +1303.1563 Phenomenology +1304.3810 Phenomenology +1305.1067 Phenomenology +1305.3154 Functional Analysis +1305.3174 Geometric Topology +1305.5954 Commutative Algebra +1306.1977 Methodology +1306.6467 Probability +1308.1819 +1308.1842 +1308.2667 Functional Analysis +1308.3779 Computation +1308.5295 +1308.5376 Portfolio Management +1309.0109 Analysis of PDEs +1309.3861 +1309.5061 Theory +1310.0097 Computer Vision and Pattern Recognition +1310.2085 Computer Vision and Pattern Recognition +1310.2317 Phenomenology +1310.2892 Functional Analysis +1310.4745 +1310.7281 Quantum Algebra +1311.1322 Software Engineering +1311.5872 Group Theory +1311.6022 Materials Science +1312.5330 Phenomenology +1312.6989 +1401.1130 Methodology +1401.6686 Artificial Intelligence +1401.7296 Probability +1402.4257 Algebraic Geometry +1402.5376 Probability +1402.5582 Geometric Topology +1403.0698 Algebraic Geometry +1403.0953 Strongly Correlated Electrons +1403.1418 Symplectic Geometry +1403.7491 Analysis of PDEs +1404.3158 Metric Geometry +1404.3519 Superconductivity +1404.3795 Classical Analysis and ODEs +1404.4410 Mathematical Software +1404.6697 Strongly Correlated Electrons +1405.1877 +1405.3500 Analysis of PDEs +1405.4229 +1406.0201 Complex Variables +1406.2827 Geometric Topology +1406.6242 Analysis of PDEs +1406.7343 Methodology +1407.1427 Differential Geometry +1407.5325 Logic +1407.7968 Phenomenology +1408.2113 +1408.2785 Classical Analysis and ODEs +1408.2982 History and Overview +1408.3662 Plasma Physics +1408.4042 Algebraic Geometry +1408.5118 Theory +1408.5779 Analysis of PDEs +1409.0049 Instrumentation and Detectors +1409.0309 Cryptography and Security +1409.0620 Materials Science +1409.1058 Theory +1409.1071 Risk Management +1409.2332 Systems and Control +1409.8179 Optimization and Control +1409.8326 General Physics +1410.1772 Combinatorics +1410.2704 Mesoscale and Nanoscale Physics +1410.2926 Digital Libraries +1410.4348 Algebraic Geometry +1410.7891 Symplectic Geometry +1410.8084 Analysis of PDEs +1411.1123 Number Theory +1411.2603 Theory +1411.4415 Mesoscale and Nanoscale Physics +1411.4438 Optimization and Control +1411.5646 Probability +1411.5979 Optimization and Control +1411.6517 Algebraic Topology +1411.7451 +1412.0170 Probability +1412.5573 Theory +1412.7072 Algebraic Topology +1501.00201 Complex Variables +1501.00478 Statistics Theory +1501.00982 High Energy Astrophysical Phenomena +1501.01144 Neurons and Cognition +1501.01338 Tissues and Organs +1501.02934 Rings and Algebras +1501.06038 Commutative Algebra +1502.02016 Group Theory +1502.04681 Learning +1502.05593 +1502.06570 Superconductivity +1502.07413 Populations and Evolution +1502.07960 +1503.00673 Other Computer Science +1503.02313 Information Theory +1503.02687 Commutative Algebra +1503.03142 Optimization and Control +1503.03332 Data Analysis, Statistics and Probability +1503.03953 +1503.06006 Soft Condensed Matter +1503.06647 Category Theory +1503.07083 +1503.07390 Theory +1503.08302 Quantum Gases +1503.08713 Analysis of PDEs +1503.08737 Probability +1504.01016 Functional Analysis +1504.01976 Number Theory +1504.03806 Statistical Mechanics +1504.04587 Group Theory +1504.05325 +1504.05882 Mesoscale and Nanoscale Physics +1504.06231 Information Theory +1504.06887 Solar and Stellar Astrophysics +1505.00445 Materials Science +1505.01262 Algebraic Geometry +1505.04014 +1505.04023 Astrophysics of Galaxies +1505.04220 Information Theory +1505.04358 Differential Geometry +1505.05820 Theory +1505.05987 Statistical Mechanics +1505.06036 Combinatorics +1505.06368 Phenomenology +1505.07686 Mesoscale and Nanoscale Physics +1506.01938 Instrumentation and Detectors +1506.02372 Probability +1506.04358 +1506.05006 Disordered Systems and Neural Networks +1506.06168 Materials Science +1506.06320 Numerical Analysis +1506.06500 Optics +1506.07047 Theory +1506.07292 +1506.07692 Quantum Gases +1506.08019 Optimization and Control +1506.08636 Astrophysics of Galaxies +1507.00337 Mesoscale and Nanoscale Physics +1507.01801 Strongly Correlated Electrons +1507.02641 Theory +1507.02827 +1507.04179 Statistical Mechanics +1507.04380 Robotics +1507.05619 Cosmology and Nongalactic Astrophysics +1507.05651 Logic +1507.07602 Robotics +1507.07949 Probability +1508.00109 Information Theory +1508.00442 +1508.01293 Number Theory +1508.01969 Number Theory +1508.02264 +1508.03153 Statistical Mechanics +1508.03380 Theory +1508.03382 Theory +1508.03524 Physics and Society +1508.03742 Number Theory +1508.04431 High Energy Astrophysical Phenomena +1508.04833 Optimization and Control +1508.05407 Phenomenology +1508.05905 Probability +1508.06903 Plasma Physics +1509.00132 Materials Science +1509.00943 Differential Geometry +1509.01016 Materials Science +1509.02164 Astrophysics of Galaxies +1509.02209 Combinatorics +1509.02374 +1509.02699 Solar and Stellar Astrophysics +1509.03472 Logic +1509.03507 +1509.05129 Optimization and Control +1509.05133 Strongly Correlated Electrons +1509.05403 Theory +1509.05405 Phenomenology +1509.05450 +1509.06196 +1509.06710 General Physics +1509.06769 Mesoscale and Nanoscale Physics +1509.06864 Materials Science +1509.06960 Analysis of PDEs +1509.09002 Learning +1509.09059 Information Theory +1510.00053 Differential Geometry +1510.00466 Information Theory +1510.00520 Strongly Correlated Electrons +1510.01357 Algebraic Geometry +1510.01465 Quantum Gases +1510.01920 Social and Information Networks +1510.01976 Mesoscale and Nanoscale Physics +1510.02026 Computational Physics +1510.02357 Superconductivity +1510.02565 Dynamical Systems +1510.02601 Analysis of PDEs +1510.03434 Phenomenology +1510.04673 Theory +1510.06280 Classical Analysis and ODEs +1510.07123 Statistics Theory +1510.07341 Statistical Mechanics +1510.08491 Combinatorics +1511.00149 Strongly Correlated Electrons +1511.00489 Theory +1511.01549 Cryptography and Security +1511.02954 Neural and Evolutionary Computing +1511.03163 Learning +1511.03165 Quantum Gases +1511.03186 Data Structures and Algorithms +1511.03382 Astrophysics of Galaxies +1511.04657 Optimization and Control +1511.05106 Materials Science +1511.06406 Learning +1511.06693 Materials Science +1511.07425 Computer Vision and Pattern Recognition +1511.07962 Neurons and Cognition +1511.08087 Astrophysics of Galaxies +1511.08890 Analysis of PDEs +1512.00450 Biological Physics +1512.02139 Earth and Planetary Astrophysics +1512.02396 Instrumentation and Detectors +1512.02448 Representation Theory +1512.03540 Materials Science +1512.03698 Category Theory +1512.03848 Commutative Algebra +1512.04005 Optics +1512.04429 Disordered Systems and Neural Networks +1512.04761 Adaptation and Self-Organizing Systems +1512.05479 Differential Geometry +1512.06338 Discrete Mathematics +1512.06612 Computation and Language +1512.06758 Classical Analysis and ODEs +1512.07250 Digital Libraries +1512.07411 Optimization and Control +1512.07436 Number Theory +1512.07450 Neural and Evolutionary Computing +1512.07452 Number Theory +1512.08098 Optimization and Control +1512.08333 Chaotic Dynamics +1512.08633 Plasma Physics +1512.08655 Metric Geometry +1512.08842 Theory +1512.08879 Probability +1512.09101 Algebraic Geometry +1601.00003 Astrophysics of Galaxies +1601.00008 Earth and Planetary Astrophysics +1601.00010 Number Theory +1601.00012 Numerical Analysis +1601.00023 Dynamical Systems +1601.00024 Learning +1601.00027 Computer Vision and Pattern Recognition +1601.00028 Networking and Internet Architecture +1601.00032 Discrete Mathematics +1601.00033 Instrumentation and Methods for Astrophysics +1601.00037 Numerical Analysis +1601.00041 Logic +1601.00043 Logic +1601.00047 Differential Geometry +1601.00051 Representation Theory +1601.00052 Combinatorics +1601.00053 Chemical Physics +1601.00054 Astrophysics of Galaxies +1601.00055 +1601.00061 Operator Algebras +1601.00064 Statistical Mechanics +1601.00073 Databases +1601.00077 Materials Science +1601.00080 Representation Theory +1601.00084 Dynamical Systems +1601.00089 Algebraic Geometry +1601.00093 Cosmology and Nongalactic Astrophysics +1601.00094 Mesoscale and Nanoscale Physics +1601.00096 Number Theory +1601.00097 Representation Theory +1601.00098 Optimization and Control +1601.00099 Classical Analysis and ODEs +1601.00100 Differential Geometry +1601.00103 Algebraic Geometry +1601.00104 +1601.00105 Statistical Mechanics +1601.00107 +1601.00108 Dynamical Systems +1601.00112 Numerical Analysis +1601.00118 +1601.00119 Computer Vision and Pattern Recognition +1601.00122 Networking and Internet Architecture +1601.00124 Classical Analysis and ODEs +1601.00125 Instrumentation and Methods for Astrophysics +1601.00126 Information Theory +1601.00128 Rings and Algebras +1601.00131 Dynamical Systems +1601.00132 Numerical Analysis +1601.00139 Social and Information Networks +1601.00142 Machine Learning +1601.00144 Rings and Algebras +1601.00146 Group Theory +1601.00150 +1601.00151 Classical Analysis and ODEs +1601.00153 Number Theory +1601.00157 +1601.00159 Databases +1601.00165 Mesoscale and Nanoscale Physics +1601.00166 Analysis of PDEs +1601.00167 Computer Science and Game Theory +1601.00168 Probability +1601.00169 Operator Algebras +1601.00177 Combinatorics +1601.00184 Cryptography and Security +1601.00193 Numerical Analysis +1601.00194 Optimization and Control +1601.00198 Optimization and Control +1601.00199 Computer Vision and Pattern Recognition +1601.00200 Optics +1601.00205 Dynamical Systems +1601.00206 Functional Analysis +1601.00207 Rings and Algebras +1601.00210 Computer Vision and Pattern Recognition +1601.00211 Computer Vision and Pattern Recognition +1601.00212 Computer Vision and Pattern Recognition +1601.00214 +1601.00216 Mesoscale and Nanoscale Physics +1601.00217 Mesoscale and Nanoscale Physics +1601.00220 Mesoscale and Nanoscale Physics +1601.00221 Distributed, Parallel, and Cluster Computing +1601.00222 Mesoscale and Nanoscale Physics +1601.00224 Mesoscale and Nanoscale Physics +1601.00225 Methodology +1601.00228 Representation Theory +1601.00230 Combinatorics +1601.00233 General Finance +1601.00234 +1601.00236 Learning +1601.00241 Complex Variables +1601.00242 Software Engineering +1601.00250 Astrophysics of Galaxies +1601.00252 Discrete Mathematics +1601.00253 Mesoscale and Nanoscale Physics +1601.00254 Combinatorics +1601.00255 Optimization and Control +1601.00256 Information Theory +1601.00260 Computer Vision and Pattern Recognition +1601.00261 Commutative Algebra +1601.00262 Group Theory +1601.00263 Statistical Finance +1601.00264 Instrumentation and Methods for Astrophysics +1601.00266 Instrumentation and Methods for Astrophysics +1601.00269 Algebraic Topology +1601.00270 Information Theory +1601.00272 Combinatorics +1601.00276 Theory +1601.00279 +1601.00281 Analysis of PDEs +1601.00283 +1601.00286 Social and Information Networks +1601.00287 Sound +1601.00288 Digital Libraries +1601.00289 Distributed, Parallel, and Cluster Computing +1601.00290 Combinatorics +1601.00295 Group Theory +1601.00299 Multimedia +1601.00302 Algebraic Geometry +1601.00310 +1601.00312 Optics +1601.00314 Representation Theory +1601.00317 Analysis of PDEs +1601.00321 Networking and Internet Architecture +1601.00322 +1601.00323 Computational Engineering, Finance, and Science +1601.00325 Differential Geometry +1601.00331 +1601.00332 Commutative Algebra +1601.00333 Representation Theory +1601.00336 Data Analysis, Statistics and Probability +1601.00337 Experiment +1601.00338 Experiment +1601.00339 Representation Theory +1601.00341 Methodology +1601.00350 Machine Learning +1601.00351 Number Theory +1601.00353 +1601.00354 Mathematical Finance +1601.00360 Networking and Internet Architecture +1601.00363 Cryptography and Security +1601.00364 Neurons and Cognition +1601.00365 Materials Science +1601.00367 Artificial Intelligence +1601.00370 Analysis of PDEs +1601.00378 +1601.00380 Numerical Analysis +1601.00383 Earth and Planetary Astrophysics +1601.00384 Combinatorics +1601.00388 Number Theory +1601.00393 Learning +1601.00396 Computer Vision and Pattern Recognition +1601.00398 Rings and Algebras +1601.00399 Statistics Theory +1601.00400 Computer Vision and Pattern Recognition +1601.00402 Logic in Computer Science +1601.00403 Strongly Correlated Electrons +1601.00408 Logic +1601.00410 Probability +1601.00413 Information Theory +1601.00419 Optimization and Control +1601.00422 Materials Science +1601.00423 +1601.00429 Materials Science +1601.00436 +1601.00439 Methodology +1601.00441 Combinatorics +1601.00443 Combinatorics +1601.00444 Strongly Correlated Electrons +1601.00448 Geometric Topology +1601.00449 Learning +1601.00453 Systems and Control +1601.00456 Commutative Algebra +1601.00458 Optimization and Control +1601.00463 Spectral Theory +1601.00465 Dynamical Systems +1601.00472 +1601.00476 Optics +1601.00477 Methodology +1601.00478 Biological Physics +1601.00479 Computational Complexity +1601.00480 Accelerator Physics +1601.00481 Human-Computer Interaction +1601.00483 Phenomenology +1601.00484 Optics +1601.00485 Analysis of PDEs +1601.00488 Logic +1601.00489 Mesoscale and Nanoscale Physics +1601.00490 Functional Analysis +1601.00493 Instrumentation and Detectors +1601.00495 Numerical Analysis +1601.00497 +1601.00498 +1601.00499 Statistical Mechanics +1601.00501 Logic in Computer Science +1601.00504 Machine Learning +1601.00506 Combinatorics +1601.00507 Fluid Dynamics +1601.00508 Dynamical Systems +1601.00513 Probability +1601.00515 Statistical Mechanics +1601.00517 Networking and Internet Architecture +1601.00518 Statistical Mechanics +1601.00519 Instrumentation and Methods for Astrophysics +1601.00521 Chemical Physics +1601.00524 Databases +1601.00526 Computer Science and Game Theory +1601.00527 Numerical Analysis +1601.00533 Other Computer Science +1601.00535 Fluid Dynamics +1601.00536 Mesoscale and Nanoscale Physics +1601.00537 Lattice +1601.00538 Optimization and Control +1601.00541 Soft Condensed Matter +1601.00543 Information Theory +1601.00545 Mesoscale and Nanoscale Physics +1601.00548 Mesoscale and Nanoscale Physics +1601.00554 Rings and Algebras +1601.00555 Astrophysics of Galaxies +1601.00567 +1601.00569 Optics +1601.00574 Learning +1601.00575 Soft Condensed Matter +1601.00576 Number Theory +1601.00577 Phenomenology +1601.00578 Phenomenology +1601.00580 Representation Theory +1601.00582 Probability +1601.00583 Computational Physics +1601.00592 Accelerator Physics +1601.00599 Computer Vision and Pattern Recognition +1601.00603 Materials Science +1601.00605 Spectral Theory +1601.00608 Information Theory +1601.00610 Analysis of PDEs +1601.00611 Algebraic Geometry +1601.00612 Functional Analysis +1601.00618 General Physics +1601.00619 Mesoscale and Nanoscale Physics +1601.00620 Computation and Language +1601.00626 Artificial Intelligence +1601.00630 Discrete Mathematics +1601.00632 Medical Physics +1601.00633 Phenomenology +1601.00635 Combinatorics +1601.00636 Number Theory +1601.00637 Algebraic Geometry +1601.00639 Probability +1003.4486 Metric Geometry +1104.4988 Number Theory +1204.4304 Statistical Mechanics +1210.0010 Information Theory +1301.5890 Soft Condensed Matter +1303.1646 Computer Science and Game Theory +1307.1529 Metric Geometry +1308.5454 +1309.1296 Computation +1309.4211 Complex Variables +1310.7318 Quantum Algebra +1311.4132 Algebraic Geometry +1312.6815 Methodology +1401.3495 Probability +1401.7762 Phenomenology +1402.4163 Probability +1403.3816 Operator Algebras +1403.7495 Discrete Mathematics +1404.7111 Soft Condensed Matter +1405.7144 Probability +1406.3820 Functional Analysis +1406.7773 Statistics Theory +1408.6563 Phenomenology +1409.1662 Information Theory +1409.4950 Algebraic Geometry +1409.8597 Methodology +1412.3313 Logic +1412.8567 Number Theory +1501.03864 Algebraic Geometry +1501.05672 Classical Analysis and ODEs +1501.06043 Combinatorics +1502.00293 Analysis of PDEs +1502.04975 Quantum Gases +1503.00021 Numerical Analysis +1503.03451 Data Analysis, Statistics and Probability +1503.03831 Algebraic Geometry +1503.06807 Astrophysics of Galaxies +1503.08236 +1503.08936 Logic +1504.01368 Physics and Society +1504.03034 Soft Condensed Matter +1504.05923 Theory +1504.08092 Complex Variables +1505.04121 Algebraic Geometry +1505.06961 Algebraic Geometry +1505.07462 +1505.07780 Discrete Mathematics +1505.07986 Functional Analysis +1506.01191 Strongly Correlated Electrons +1506.04474 Data Structures and Algorithms +1506.06413 Lattice +1506.07157 Optics +1507.02127 Materials Science +1507.05997 Materials Science +1507.07920 Strongly Correlated Electrons +1508.01671 Phenomenology +1508.04361 +1508.05226 Tissues and Organs +1508.06611 +1509.01546 Machine Learning +1509.02497 High Energy Astrophysical Phenomena +1509.04180 Strongly Correlated Electrons +1509.05585 Quantum Gases +1509.06579 Theory +1509.07250 Information Theory +1509.08460 Earth and Planetary Astrophysics +1510.07243 High Energy Astrophysical Phenomena +1510.07549 Differential Geometry +1511.02237 Phenomenology +1511.02382 +1511.02594 Materials Science +1511.03150 Subcellular Processes +1511.04465 Chaotic Dynamics +1511.06057 Classical Analysis and ODEs +1511.06788 +1511.08891 Soft Condensed Matter +1512.00039 Symplectic Geometry +1512.00984 Numerical Analysis +1512.01817 Theory +1512.03802 +1512.05463 Neural and Evolutionary Computing +1512.05906 Mesoscale and Nanoscale Physics +1512.06462 Quantum Gases +1512.07674 +1512.09023 Digital Libraries +1601.00342 Mesoscale and Nanoscale Physics +1601.00361 Differential Geometry +1601.00915 Mesoscale and Nanoscale Physics +1601.03271 Logic in Computer Science +1601.07397 Materials Science +1601.07736 Combinatorics +1602.00537 Optics +1602.01222 +1602.01287 +1602.01801 Phenomenology +1602.02309 Theory +1602.03514 Materials Science +1602.03997 Mesoscale and Nanoscale Physics +1602.04174 Commutative Algebra +1602.06325 Chemical Physics +1602.07816 Computational Geometry +1602.08564 Dynamical Systems +1602.08997 Probability +1602.09049 Probability +1603.01274 Theory +1603.01304 Mesoscale and Nanoscale Physics +1603.01583 Data Structures and Algorithms +1603.01835 Complex Variables +1603.02366 Information Theory +1603.03369 Computer Vision and Pattern Recognition +1603.04699 +1603.09302 Computer Vision and Pattern Recognition +1604.00187 Computer Vision and Pattern Recognition +1604.01153 Number Theory +1604.01478 Algebraic Topology +1604.01482 Combinatorics +1604.02690 Analysis of PDEs +1604.02708 Biological Physics +1604.02927 +1604.03265 Computer Vision and Pattern Recognition +1604.03436 Superconductivity +1604.04531 Strongly Correlated Electrons +1604.04542 Pattern Formation and Solitons +1604.07271 Functional Analysis +1604.07331 +1604.07823 High Energy Astrophysical Phenomena +1604.08234 Data Structures and Algorithms +1604.08247 +1604.08317 Geometric Topology +1604.08318 Geometric Topology +1604.08345 Logic in Computer Science +1604.08530 +1604.08575 +1604.08583 Instrumentation and Detectors +1604.08585 Operator Algebras +1604.08593 High Energy Astrophysical Phenomena +1604.08600 Information Theory +1604.08601 Mesoscale and Nanoscale Physics +1604.08603 Data Structures and Algorithms +1604.08607 Materials Science +1604.08608 Information Retrieval +1604.08609 Chaotic Dynamics +1604.08615 Strongly Correlated Electrons +1604.08622 Systems and Control +1604.08623 Operator Algebras +1604.08624 +1604.08625 Networking and Internet Architecture +1604.08631 Earth and Planetary Astrophysics +1604.08632 Networking and Internet Architecture +1604.08636 Optimization and Control +1604.08642 Learning +1604.08643 Classical Analysis and ODEs +1604.08646 Fluid Dynamics +1604.08648 Solar and Stellar Astrophysics +1604.08649 Fluid Dynamics +1604.08650 Numerical Analysis +1604.08651 Optimization and Control +1604.08652 Biological Physics +1604.08654 Methodology +1604.08655 Combinatorics +1604.08660 Computer Vision and Pattern Recognition +1604.08662 Algebraic Geometry +1604.08664 Strongly Correlated Electrons +1604.08665 +1604.08666 Number Theory +1604.08673 Materials Science +1604.08674 +1604.08675 Cryptography and Security +1604.08677 Statistical Finance +1604.08680 Systems and Control +1604.08686 Superconductivity +1604.08689 Phenomenology +1604.08690 +1604.08691 Social and Information Networks +1604.08692 Information Theory +1604.08693 Computers and Society +1604.08695 Classical Analysis and ODEs +1604.08696 Populations and Evolution +1604.08697 Machine Learning +1604.08698 Computational Geometry +1604.08703 Numerical Analysis +1604.08705 Logic +1604.08707 +1604.08711 Theory +1604.08715 Functional Analysis +1604.08718 +1604.08719 Number Theory +1604.08720 Methodology +1604.08721 +1604.08723 Sound +1604.08727 Networking and Internet Architecture +1604.08729 Information Theory +1604.08731 Analysis of PDEs +1604.08733 Combinatorics +1604.08734 Networking and Internet Architecture +1604.08735 Pricing of Securities +1604.08736 Symbolic Computation +1604.08737 Analysis of PDEs +1604.08739 +1604.08742 Robotics +1604.08744 Networking and Internet Architecture +1604.08745 Materials Science +1604.08747 Quantum Gases +1604.08753 Plasma Physics +1604.08754 Plasma Physics +1604.08755 Plasma Physics +1604.08760 Data Structures and Algorithms +1604.08763 Information Theory +1604.08764 Data Structures and Algorithms +1604.08768 Artificial Intelligence +1604.08769 Geometric Topology +1604.08772 Machine Learning +1604.08773 Astrophysics of Galaxies +1604.08775 Combinatorics +1604.08779 Computer Science and Game Theory +1604.08788 Rings and Algebras +1604.08789 Computer Vision and Pattern Recognition +1604.08792 Plasma Physics +1604.08793 Systems and Control +1604.08794 Plasma Physics +1604.08795 Plasma Physics +1604.08796 Plasma Physics +1604.08798 Plasma Physics +1604.08799 Cryptography and Security +1604.08802 Plasma Physics +1604.08803 Plasma Physics +1604.08804 Combinatorics +1604.08807 Instrumentation and Detectors +1604.08808 Analysis of PDEs +1604.08810 Cryptography and Security +1604.08811 Plasma Physics +1604.08813 General Topology +1604.08814 Cryptography and Security +1604.08815 Plasma Physics +1604.08817 Combinatorics +1604.08818 Plasma Physics +1604.08819 Combinatorics +1604.08820 Atomic Physics +1604.08824 Economics +1604.08825 Physics and Society +1604.08826 Computer Vision and Pattern Recognition +1604.08828 Geometric Topology +1604.08834 Algebraic Geometry +1604.08839 Accelerator Physics +1604.08842 Statistical Mechanics +1604.08846 Optimization and Control +1604.08847 Classical Analysis and ODEs +1604.08851 Combinatorics +1604.08852 Sound +1604.08853 Applications +1604.08854 Instrumentation and Detectors +1604.08857 Number Theory +1604.08858 Combinatorics +1604.08863 Numerical Analysis +1604.08864 Earth and Planetary Astrophysics +1604.08866 Robotics +1604.08868 General Topology +1604.08872 General Topology +1604.08874 General Topology +1604.08878 Formal Languages and Automata Theory +1604.08880 Learning +1604.08886 Materials Science +1604.08890 Biomolecules +1604.08892 Chemical Physics +1604.08893 Computer Vision and Pattern Recognition +1604.08895 Economics +1604.08899 Cosmology and Nongalactic Astrophysics +1604.08904 +1604.08909 Rings and Algebras +1604.08912 Neurons and Cognition +1604.08917 Algebraic Geometry +1604.08918 Number Theory +1604.08922 Combinatorics +1604.08923 +1604.08926 Emerging Technologies +1604.08927 Systems and Control +1604.08930 +1604.08931 Materials Science +1604.08936 Computational Complexity +1604.08938 Instrumentation and Detectors +1604.08943 Statistics Theory +1604.08944 Symbolic Computation +1604.08947 Probability +1604.08948 Superconductivity +cond-mat/0307545 Statistical Mechanics +hep-ph/0507187 Phenomenology +hep-th/0407062 Theory +0705.0482 Analysis of PDEs +0711.1583 +0802.2673 Analysis of PDEs +1004.4352 +1011.2083 Group Theory +1101.4754 Mesoscale and Nanoscale Physics +1106.6129 Probability +1109.5822 Representation Theory +1111.2983 Theory +1202.3381 Materials Science +1204.5729 Dynamical Systems +1209.2386 Differential Geometry +1302.4296 K-Theory and Homology +1302.5132 Differential Geometry +1302.5352 Dynamical Systems +1302.5366 Data Structures and Algorithms +1304.6851 Number Theory +1304.8093 Probability +1305.3311 Computers and Society +1305.6676 Cosmology and Nongalactic Astrophysics +1305.7491 Spectral Theory +1309.4278 Differential Geometry +1310.3860 Pricing of Securities +1312.2227 Information Theory +1312.7829 Dynamical Systems +1402.6301 Number Theory +1402.6318 Number Theory +1403.1183 Pricing of Securities +1403.3931 Optimization and Control +1404.0146 Biological Physics +1405.7235 Chemical Physics +1405.7443 Logic +1406.5370 Learning +1407.0605 Quantum Gases +1407.2451 Methodology +1407.3452 Quantum Algebra +1407.6217 Combinatorics +1407.8375 Statistics Theory +1408.1000 Information Theory +1408.3252 Algebraic Topology +1408.4823 General Topology +1409.0513 Cosmology and Nongalactic Astrophysics +1409.1972 Probability +1409.5003 Algebraic Topology +1409.5073 Dynamical Systems +1410.0310 Information Theory +1410.6751 Computer Vision and Pattern Recognition +1410.8386 Phenomenology +1411.0735 Information Theory +1411.4787 +1411.4992 Operator Algebras +1411.5718 +1411.5851 Group Theory +1411.6636 Operator Algebras +1411.6776 General Topology +1411.7854 Dynamical Systems +1412.5348 Differential Geometry +1501.02764 Combinatorics +1502.03655 Computation +1502.03656 Computation +1502.04548 Systems and Control +1502.06234 Analysis of PDEs +1503.01685 Symplectic Geometry +1503.04127 Solar and Stellar Astrophysics +1503.04350 Analysis of PDEs +1503.05655 Risk Management +1503.06058 Computation +1503.07153 Theory +1503.08289 Artificial Intelligence +1504.00846 +1504.02762 Solar and Stellar Astrophysics +1504.02985 Computational Physics +1504.06195 Fluid Dynamics +1504.07116 Learning +1504.08090 Systems and Control +1505.00805 Operator Algebras +1505.03320 Data Analysis, Statistics and Probability +1505.03864 High Energy Astrophysical Phenomena +1505.04688 Operator Algebras +1505.04963 Strongly Correlated Electrons +1505.05525 Analysis of PDEs +1505.07313 Mathematical Finance +1505.07705 Mathematical Finance +1506.00053 Machine Learning +1506.01429 Probability +1506.01878 Exactly Solvable and Integrable Systems +1506.03318 Statistics Theory +1506.05639 Numerical Analysis +1506.06223 Functional Analysis +1507.01079 +1507.07208 Algebraic Topology +1507.07531 Phenomenology +1507.08130 Other Condensed Matter +1507.08578 Probability +1507.08895 Solar and Stellar Astrophysics +1508.00523 Optimization and Control +1508.00782 +1508.03191 +1508.04725 Discrete Mathematics +1508.05005 Mesoscale and Nanoscale Physics +1508.05289 Atomic Physics +1508.05391 Disordered Systems and Neural Networks +1508.06045 Number Theory +1508.07336 Cosmology and Nongalactic Astrophysics +1509.00597 Analysis of PDEs +1509.01180 Probability +1509.02282 +1509.03095 +1509.03920 Strongly Correlated Electrons +1509.04810 +1509.05019 Number Theory +1509.06986 High Energy Astrophysical Phenomena +1509.07949 Mesoscale and Nanoscale Physics +1509.08262 Information Theory +1509.08949 Theory +1509.08989 Probability +1510.01163 Optimization and Control +1510.01684 Phenomenology +1510.04000 Formal Languages and Automata Theory +1510.04411 Social and Information Networks +1510.05884 Theory +1510.06264 General Physics +1510.07090 Computers and Society +1510.07867 Computer Vision and Pattern Recognition +1510.08081 Atomic Physics +1510.08332 Social and Information Networks +1511.00821 Space Physics +1511.01712 Quantum Gases +1511.01718 High Energy Astrophysical Phenomena +1511.04094 Computers and Society +1511.04317 Cryptography and Security +1511.04447 Statistical Mechanics +1511.07550 Atomic Physics +1511.08162 Superconductivity +1511.08965 +1511.09077 Theory +1512.00194 Theory +1512.00197 Experiment +1512.00258 Statistical Mechanics +1512.00656 Theory +1512.00863 Materials Science +1512.00889 Strongly Correlated Electrons +1512.00944 Theory +1512.01162 Soft Condensed Matter +1512.01196 Networking and Internet Architecture +1512.01984 Operating Systems +1512.02661 Algebraic Geometry +1512.03952 Complex Variables +1512.04700 Representation Theory +1512.04735 Theory +1512.05584 Theory +1512.07372 Social and Information Networks +1512.07665 Optics +1512.08920 Materials Science +1601.01871 Analysis of PDEs +1601.02375 Phenomenology +1601.02459 Phenomenology +1601.03284 Number Theory +1601.03466 Learning +1601.04648 Computational Physics +1601.04905 Number Theory +1601.05017 Fluid Dynamics +1601.05131 Instrumentation and Methods for Astrophysics +1601.06805 Applications +1601.07829 Number Theory +1601.08155 Portfolio Management +1602.00383 Operator Algebras +1602.01055 Differential Geometry +1602.02378 +1602.02505 Learning +1602.03726 Quantum Gases +1602.05043 Experiment +1602.06287 Analysis of PDEs +1602.07420 Soft Condensed Matter +1602.08277 Earth and Planetary Astrophysics +1602.09045 Materials Science +1603.00683 Materials Science +1603.00834 Mesoscale and Nanoscale Physics +1603.01208 Phenomenology +1603.01957 Mesoscale and Nanoscale Physics +1603.02840 Classical Analysis and ODEs +1603.02893 Geometric Topology +1603.02905 Computation and Language +1603.03011 Programming Languages +1603.03022 Programming Languages +1603.03030 Machine Learning +1603.03034 Solar and Stellar Astrophysics +1603.03040 Solar and Stellar Astrophysics +1603.03046 +1603.03059 Formal Languages and Automata Theory +1603.03060 +1603.03062 Phenomenology +1603.03065 Lattice +1603.03066 Strongly Correlated Electrons +1603.03070 Physics Education +1603.03076 Representation Theory +1603.03077 Metric Geometry +1603.03078 +1603.03079 Neurons and Cognition +1603.03080 Instrumentation and Methods for Astrophysics +1603.03088 Physics Education +1603.03089 Machine Learning +1603.03092 Logic +1603.03095 Theory +1603.03097 Social and Information Networks +1603.03098 Computational Geometry +1603.03099 Social and Information Networks +1603.03101 Computer Vision and Pattern Recognition +1603.03103 Physics Education +1603.03105 Physics Education +1603.03106 Exactly Solvable and Integrable Systems +1603.03108 Physics Education +1603.03109 Combinatorics +1603.03110 Software Engineering +1603.03111 +1603.03112 Computation and Language +1603.03113 Differential Geometry +1603.03119 Astrophysics of Galaxies +1603.03122 +1603.03125 Rings and Algebras +1603.03126 Software Engineering +1603.03129 Multimedia +1603.03131 Superconductivity +1603.03132 Mesoscale and Nanoscale Physics +1603.03134 Number Theory +1603.03136 +1603.03140 Differential Geometry +1603.03141 Quantitative Methods +1603.03143 +1603.03145 Geometric Topology +1603.03149 Neural and Evolutionary Computing +1603.03152 Information Theory +1603.03154 Optics +1603.03156 Group Theory +1603.03158 Data Structures and Algorithms +1603.03159 Astrophysics of Galaxies +1603.03160 Optimization and Control +1603.03161 Algebraic Geometry +1603.03162 Neurons and Cognition +1603.03163 Optimization and Control +1603.03167 Mesoscale and Nanoscale Physics +1603.03171 Analysis of PDEs +1603.03174 Methodology +1603.03176 Geophysics +1603.03181 Artificial Intelligence +1603.03187 Differential Geometry +1603.03190 Differential Geometry +1603.03191 Algebraic Geometry +1603.03192 Materials Science +1603.03194 Number Theory +1603.03198 Mathematical Finance +1603.03199 Probability +1603.03200 Algebraic Geometry +1603.03201 Commutative Algebra +1603.03203 Data Structures and Algorithms +1603.03207 Mesoscale and Nanoscale Physics +1603.03209 Probability +1603.03211 Analysis of PDEs +1603.03215 Sound +1603.03221 Methodology +1603.03226 +1603.03229 Differential Geometry +1603.03231 Optimization and Control +1603.03241 Number Theory +1603.03247 Quantum Gases +1603.03248 Information Theory +1603.03251 Human-Computer Interaction +1603.03252 Logic in Computer Science +1603.03254 Probability +1603.03266 +1603.03267 Artificial Intelligence +1603.03268 Earth and Planetary Astrophysics +1603.03269 Geometric Topology +1603.03271 Group Theory +1603.03272 Logic +1603.03281 Databases +1603.03284 Logic +1603.03286 Solar and Stellar Astrophysics +1603.03292 Algebraic Topology +1603.03294 Algebraic Geometry +1603.03295 High Energy Astrophysical Phenomena +1603.03297 Solar and Stellar Astrophysics +1603.03303 Social and Information Networks +1603.03306 Instrumentation and Detectors +1603.03308 Mesoscale and Nanoscale Physics +1603.03309 Instrumentation and Methods for Astrophysics +1603.03313 Systems and Control +1603.03314 Complex Variables +1603.03318 Astrophysics of Galaxies +1603.03324 Algebraic Geometry +1603.03327 Plasma Physics +1603.03329 Optimization and Control +1603.03335 Differential Geometry +1603.03336 Learning +1603.03337 Data Analysis, Statistics and Probability +1603.03342 Dynamical Systems +1603.03343 Fluid Dynamics +1603.03348 Physics Education +1603.03349 Computers and Society +1603.03351 Category Theory +1603.03352 Analysis of PDEs +1603.03357 Information Theory +1603.03358 Logic +1603.03364 Sound +1603.03368 +1603.03370 Computers and Society +1603.03372 Systems and Control +1603.03373 +1603.03374 Logic +1603.03387 Geometric Topology +1603.03389 Information Theory +1603.03390 Analysis of PDEs +1603.03391 Fluid Dynamics +1603.03393 Analysis of PDEs +1603.03395 Classical Physics +1603.03396 Algebraic Topology +1603.03397 Analysis of PDEs +1603.03398 Number Theory +1603.03399 Chemical Physics +1603.03408 Soft Condensed Matter +1603.03410 Mesoscale and Nanoscale Physics +1603.03412 Atomic Physics +1603.03415 Metric Geometry +1603.03417 Computer Vision and Pattern Recognition +1603.03418 Methodology +1603.03419 Solar and Stellar Astrophysics +math/0506163 Differential Geometry +0907.1795 Instrumentation and Methods for Astrophysics +0907.3342 Learning +0908.1022 Fluid Dynamics +0908.3112 +1002.3986 +1004.3460 Artificial Intelligence +1012.0633 Superconductivity +1101.2022 Instrumentation and Methods for Astrophysics +1102.0939 Dynamical Systems +1108.0098 Probability +1108.4043 Materials Science +1109.1640 +1109.3908 Portfolio Management +1109.4278 Theory +1201.0164 Logic +1201.0354 Differential Geometry +1201.0355 Differential Geometry +1201.0465 +1201.0564 Artificial Intelligence +1201.2094 Mesoscale and Nanoscale Physics +1201.2479 Superconductivity +1201.2664 +1201.3820 +1201.4397 Algebraic Geometry +1201.4404 Superconductivity +1201.4966 Biological Physics +1201.5174 Superconductivity +1201.5307 +1201.5614 Optimization and Control +1201.6004 Optics +1201.6146 Optics +1201.6153 Optics +1201.6492 Mesoscale and Nanoscale Physics +1202.0679 +1202.2571 Networking and Internet Architecture +1202.4145 Mesoscale and Nanoscale Physics +1202.5436 Solar and Stellar Astrophysics +1202.6167 Atomic Physics +1202.6173 Superconductivity +1202.6632 General Finance +1203.1699 Adaptation and Self-Organizing Systems +1203.1888 Distributed, Parallel, and Cluster Computing +1203.2378 Analysis of PDEs +1204.0698 Complex Variables +1204.0864 Databases +1204.1335 Superconductivity +1204.1380 +1204.1446 Probability +1204.1875 Metric Geometry +1204.1975 Phenomenology +1204.3560 Mesoscale and Nanoscale Physics +1204.3883 Algebraic Geometry +1204.4751 Commutative Algebra +1204.4955 Differential Geometry +1204.5036 Mesoscale and Nanoscale Physics +1204.5715 Solar and Stellar Astrophysics +1204.5903 High Energy Astrophysical Phenomena +1207.0450 Phenomenology +1207.0974 +1207.1073 Strongly Correlated Electrons +1207.1119 Optimization and Control +1207.1637 Mesoscale and Nanoscale Physics +1207.1856 Plasma Physics +1207.2778 Differential Geometry +1207.2782 Dynamical Systems +1207.2971 Category Theory +1207.3273 Instrumentation and Methods for Astrophysics +1207.3372 Materials Science +1207.3996 Materials Science +1207.5195 Analysis of PDEs +1207.5260 +1207.5342 Information Theory +1207.5729 +1207.5829 Strongly Correlated Electrons +1207.6267 Formal Languages and Automata Theory +1207.6369 Programming Languages +1207.6372 Discrete Mathematics +1207.6453 Analysis of PDEs +1209.0095 Optics +1209.0420 Geometric Topology +1209.1740 Methodology +1209.1826 Methodology +1209.2016 +1209.2458 Mesoscale and Nanoscale Physics +1209.2800 Experiment +1209.3218 Instrumentation and Methods for Astrophysics +1209.3338 Optics +1209.3979 K-Theory and Homology +1209.4285 +1209.5581 Analysis of PDEs +1209.5685 Mesoscale and Nanoscale Physics +1209.5690 Mesoscale and Nanoscale Physics +1210.0464 +1210.0750 +1210.2187 Atomic Physics +1210.3100 Mesoscale and Nanoscale Physics +1210.3529 Quantum Algebra +1210.4327 +1210.4764 Optics +1210.4814 Atomic Physics +1210.7575 Logic +1210.8042 +1211.1566 +1211.1603 +1211.1620 Astrophysics of Galaxies +1211.2620 Software Engineering +1211.2671 Statistics Theory +1211.2964 Materials Science +1211.3001 Theory +1211.3667 Probability +1211.4058 K-Theory and Homology +1211.5041 Category Theory +1211.6310 Rings and Algebras +1211.6396 Classical Physics +1211.6499 Analysis of PDEs +1211.6655 Numerical Analysis +1211.7262 Statistics Theory +1212.0212 Materials Science +1212.0566 Soft Condensed Matter +1212.0666 Materials Science +1212.1249 Probability +1212.2544 Functional Analysis +1212.3495 Mesoscale and Nanoscale Physics +1212.4796 +1212.6005 General Physics +1212.6568 Mesoscale and Nanoscale Physics +1212.6588 Combinatorics +1302.4965 Artificial Intelligence +1303.5024 Optics +1303.6256 Number Theory +1304.0071 Analysis of PDEs +1304.0362 Superconductivity +1304.1012 +1304.1308 Materials Science +1304.2187 Plasma Physics +1304.2261 Quantum Gases +1304.2365 Artificial Intelligence +1304.3186 Cosmology and Nongalactic Astrophysics +1304.4300 Statistics Theory +1304.4392 Physics and Society +1304.4618 Computer Science and Game Theory +1304.4625 Quantum Gases +1304.5495 +1304.5682 Dynamical Systems +1304.5851 +1304.6276 Logic in Computer Science +1304.6804 General Physics +1304.6832 Combinatorics +1304.7131 Computational Physics +1304.7445 Materials Science +1304.7662 Probability +1305.0466 Numerical Analysis +1305.0940 Disordered Systems and Neural Networks +1305.1194 Strongly Correlated Electrons +1305.2471 Functional Analysis +1305.2683 Differential Geometry +1305.2712 Numerical Analysis +1305.3135 Optics +1305.3215 Symbolic Computation +1305.3266 Classical Analysis and ODEs +1305.4721 Analysis of PDEs +1305.4789 Mesoscale and Nanoscale Physics +1305.5055 Software Engineering +1305.5244 +1305.5278 +1305.6394 Systems and Control +1305.7007 Methodology +1306.0550 +1306.0964 Methodology +1306.1396 Mesoscale and Nanoscale Physics +1306.1454 Optimization and Control +1306.1736 Statistical Mechanics +1306.1997 Analysis of PDEs +1306.2008 +1306.2231 Functional Analysis +1306.2741 Metric Geometry +1306.2767 +1306.3483 Differential Geometry +1306.4234 Mesoscale and Nanoscale Physics +1306.4410 Machine Learning +1306.4421 Space Physics +1306.4576 +1306.5460 Computational Geometry +1306.6009 Algebraic Geometry +1306.6011 Solar and Stellar Astrophysics +1306.6104 +1306.6510 Information Theory +1307.0123 Numerical Analysis +1307.0313 Numerical Analysis +1307.0990 Solar and Stellar Astrophysics +1307.1697 General Physics +1307.1770 Information Theory +1307.1955 Distributed, Parallel, and Cluster Computing +1307.2052 Statistical Mechanics +1307.2483 Distributed, Parallel, and Cluster Computing +1307.3158 Networking and Internet Architecture +1307.3381 Functional Analysis +1307.3807 Differential Geometry +1307.4498 Optics +1307.5123 Instrumentation and Methods for Astrophysics +1307.5223 Classical Analysis and ODEs +1307.6497 +1307.7329 +1307.8009 +1307.8419 Rings and Algebras +1308.0470 Materials Science +1308.0641 Statistics Theory +1308.1814 Strongly Correlated Electrons +1308.1889 Optimization and Control +1308.2267 Statistical Mechanics +1308.2924 Instrumentation and Detectors +1308.3065 +1308.3307 Optimization and Control +1308.3803 Numerical Analysis +1308.4492 Solar and Stellar Astrophysics +1308.5238 Strongly Correlated Electrons +1308.5491 +1308.6037 Quantitative Methods +1308.6164 Physics Education +1309.1242 Strongly Correlated Electrons +1310.0099 Pricing of Securities +1310.7710 Theory +1311.0834 Methodology +1312.4351 Superconductivity +1401.0698 Astrophysics of Galaxies +1401.1602 Optimization and Control +1401.2558 Functional Analysis +1402.1761 Information Theory +1402.3326 Commutative Algebra +1403.3718 Analysis of PDEs +1403.8120 Methodology +1404.0195 Information Theory +1404.4822 Information Theory +1404.6970 +1405.3621 Biological Physics +1405.5982 +1406.7630 Systems and Control +1407.3436 Phenomenology +1407.7615 High Energy Astrophysical Phenomena +1408.2911 Statistical Mechanics +1409.6641 Materials Science +1409.6871 +1411.7687 Statistics Theory +0704.3486 Lattice +0802.1070 Algebraic Geometry +0803.2554 Theory +0910.4201 Symplectic Geometry +0912.3932 Symplectic Geometry +0912.5453 Combinatorics +1003.5492 Category Theory +1008.0539 Information Theory +1010.2939 Solar and Stellar Astrophysics +1011.3576 Logic +1011.4291 Astrophysics of Galaxies +1102.5316 Solar and Stellar Astrophysics +1103.1354 Combinatorics +1104.1959 Representation Theory +1107.4607 Soft Condensed Matter +1109.2824 Algebraic Geometry +1109.5998 Statistics Theory +1111.3796 Materials Science +1203.1450 Programming Languages +1203.3685 Algebraic Topology +1208.0715 Functional Analysis +1208.5289 Combinatorics +1210.3159 +1211.4629 Data Structures and Algorithms +1212.1978 Dynamical Systems +1212.2321 Phenomenology +1301.4748 Symplectic Geometry +1302.5354 Chaotic Dynamics +1303.3700 Mesoscale and Nanoscale Physics +1304.2668 Group Theory +1304.4885 Representation Theory +1306.0247 K-Theory and Homology +1307.0938 Probability +1307.1037 Optics +1307.1292 Materials Science +1307.3200 Theory +1307.4788 Differential Geometry +1307.6015 Optimization and Control +1309.0271 Group Theory +1309.0563 Computational Complexity +1309.4636 Group Theory +1309.6635 Solar and Stellar Astrophysics +1309.7821 Machine Learning +1311.2044 High Energy Astrophysical Phenomena +1311.2805 Algebraic Topology +1312.0928 Differential Geometry +1402.2167 Algebraic Geometry +1402.2937 Algebraic Geometry +1402.4117 Astrophysics of Galaxies +1402.6163 Probability +1402.6530 Functional Analysis +1403.2279 Algebraic Topology +1404.1199 Algebraic Topology +1404.2035 Functional Analysis +1404.4847 Cosmology and Nongalactic Astrophysics +1404.5565 Computational Complexity +1404.7424 +1405.1092 Category Theory +1406.0684 Functional Analysis +1406.2759 Algebraic Geometry +1406.6539 Chaotic Dynamics +1406.7329 Strongly Correlated Electrons +1406.7510 Superconductivity +1407.2896 Robotics +1407.3778 Soft Condensed Matter +1407.4759 +1407.5286 Software Engineering +1407.6464 Analysis of PDEs +1407.6811 +1407.7515 Mesoscale and Nanoscale Physics +1408.3657 Analysis of PDEs +1408.3767 Materials Science +1408.5780 Information Theory +1408.6224 High Energy Astrophysical Phenomena +1409.0053 Plasma Physics +1409.6363 Instrumentation and Detectors +1409.7454 Applications +1409.7665 +1410.2066 Differential Geometry +1410.4352 K-Theory and Homology +1410.4772 Distributed, Parallel, and Cluster Computing +1410.4816 Algebraic Topology +1411.0505 Dynamical Systems +1411.1398 Emerging Technologies +1411.3288 Differential Geometry +1411.3383 Biomolecules +1411.3680 Phenomenology +1411.3714 Differential Geometry +1411.4365 Strongly Correlated Electrons +1411.4855 Geometric Topology +1411.5533 Algebraic Topology +1411.7046 +1411.7345 Dynamical Systems +1412.0263 Dynamical Systems +1412.0430 +1412.3148 Theory +1412.4747 Phenomenology +1412.5045 +1412.7034 Differential Geometry +1412.7874 +1412.8626 Category Theory +1501.02740 Symplectic Geometry +1501.03317 +1501.05020 Combinatorics +1501.06824 Category Theory +1501.07135 Networking and Internet Architecture +1501.07139 Networking and Internet Architecture +1502.03709 Logic +1502.04251 Number Theory +1502.04443 +1502.06681 Mathematical Finance +1502.06690 Strongly Correlated Electrons +1502.07927 Mesoscale and Nanoscale Physics +1503.00017 Algebraic Geometry +1503.00761 Differential Geometry +1503.03436 +1503.04539 Statistical Mechanics +1503.09074 Theory +1504.00147 Algebraic Geometry +1504.01197 Chaotic Dynamics +1504.02185 Superconductivity +1504.02757 Number Theory +1504.03452 Mesoscale and Nanoscale Physics +1504.04235 Multiagent Systems +1504.04707 Quantum Algebra +1504.05154 Mesoscale and Nanoscale Physics +1504.05418 Metric Geometry +1504.05894 Optimization and Control +1504.06902 Classical Analysis and ODEs +1504.07287 Classical Physics +1504.07925 Probability +1504.08361 Computational Complexity +1505.01651 +1505.01678 Differential Geometry +1505.03147 Mesoscale and Nanoscale Physics +1505.03276 +1505.03908 Computation +1505.04594 Phenomenology +1505.06714 +1505.07889 Analysis of PDEs +1506.00515 Statistics Theory +1506.01674 Other Condensed Matter +1506.02371 Machine Learning +1506.02851 Algebraic Topology +1506.04906 Chaotic Dynamics +1506.05197 Information Theory +1506.05396 High Energy Astrophysical Phenomena +1506.05707 Analysis of PDEs +1506.07455 Operator Algebras +1506.08556 Instrumentation and Methods for Astrophysics +1507.02880 Commutative Algebra +1507.05596 High Energy Astrophysical Phenomena +1507.05724 Cryptography and Security +1507.06019 Combinatorics +1507.06174 Numerical Analysis +1507.06922 Cosmology and Nongalactic Astrophysics +1507.08881 Mesoscale and Nanoscale Physics +1508.00021 Learning +1508.00384 High Energy Astrophysical Phenomena +1508.02527 Theory +1508.03134 Algebraic Geometry +1508.04349 +1508.04463 Phenomenology +1508.05173 Functional Analysis +1508.06013 Databases +1508.06147 Probability +1508.06333 Robotics +1508.07287 Rings and Algebras +1509.00245 Theory +1509.01240 Learning +1509.01264 Quantum Gases +1509.02546 Disordered Systems and Neural Networks +1509.02685 +1509.02772 Chemical Physics +1509.02818 Instrumentation and Detectors +1509.03282 Combinatorics +1509.03571 Combinatorics +1509.04348 Methodology +1509.04583 Strongly Correlated Electrons +1509.05021 Superconductivity +1509.05162 Quantum Gases +1509.05347 Quantum Algebra +1509.06551 Optics +1509.07594 Information Theory +1509.08542 Astrophysics of Galaxies +1510.00083 Systems and Control +1510.00206 +1510.00243 Phenomenology +1510.00556 +1510.00725 Phenomenology +1510.00771 Computer Vision and Pattern Recognition +1510.00901 Mesoscale and Nanoscale Physics +1510.01131 Experiment +1510.01210 Computer Science and Game Theory +1510.01260 Differential Geometry +1510.02777 Learning +1510.03084 +1510.03369 Quantum Gases +1510.03575 Computer Science and Game Theory +1510.06718 Operator Algebras +1510.06731 Applications +1510.06863 Genomics +1510.07102 Optics +1510.07245 Materials Science +1510.07545 Human-Computer Interaction +1510.08011 Numerical Analysis +1510.09128 +1511.01825 Theory +1511.01841 Theory +1511.02948 +1511.03466 Computer Vision and Pattern Recognition +1511.03860 Number Theory +1511.04324 +1511.04355 Numerical Analysis +1511.04839 Learning +1511.05177 Superconductivity +1511.05716 Optics +1511.06118 Disordered Systems and Neural Networks +1511.06485 Learning +1511.07091 Statistics Theory +1511.08849 Differential Geometry +1511.08990 Data Structures and Algorithms +1511.09087 Materials Science +1512.00332 Plasma Physics +1512.00368 Complex Variables +1512.00621 Mesoscale and Nanoscale Physics +1512.00844 Cell Behavior +1512.02309 Quantum Algebra +1512.03313 Cosmology and Nongalactic Astrophysics +1512.03718 Metric Geometry +1512.04590 Populations and Evolution +1512.04623 Group Theory +1512.04734 Statistics Theory +1512.04749 Superconductivity +1512.05294 Artificial Intelligence +1512.06834 Cosmology and Nongalactic Astrophysics +1512.07005 Analysis of PDEs +1512.07489 +1512.08257 +1512.08495 Applications +1512.08825 Theory +1512.08915 Plasma Physics +1601.00607 Algebraic Geometry +1601.01506 Numerical Analysis +1601.02163 Mesoscale and Nanoscale Physics +1601.02363 Probability +1601.03472 Algebraic Topology +1601.04290 Materials Science +1601.04603 Instrumentation and Detectors +1601.05179 Probability +1601.05386 +1601.06301 Logic +1601.06512 Number Theory +1601.06516 Strongly Correlated Electrons +1601.06742 Rings and Algebras +1601.06749 Methodology +1601.06964 Atomic Physics +1601.07129 Statistical Mechanics +1601.07435 Computation and Language +1601.07477 +1602.00157 +1602.00265 Adaptation and Self-Organizing Systems +1602.00741 +1602.01057 Phenomenology +1602.01103 Social and Information Networks +1602.01152 +1602.01158 +1602.01474 +1602.01500 Classical Analysis and ODEs +1602.01803 Number Theory +1602.01806 Strongly Correlated Electrons +1602.01888 Medical Physics +1602.01949 Robotics +1602.01982 Information Theory +1602.02068 Computation and Language +1602.02092 Statistics Theory +1602.02163 Algebraic Topology +1602.02165 Popular Physics +1602.02168 Combinatorics +1602.02169 Artificial Intelligence +1602.02171 Superconductivity +1602.02172 Learning +1602.02178 Information Theory +1602.02180 Metric Geometry +1602.02181 Machine Learning +1602.02186 Combinatorics +1602.02187 Applications +1602.02194 Analysis of PDEs +1602.02196 Learning +1602.02198 Methodology +1602.02200 Methodology +1602.02204 Algebraic Geometry +1602.02205 Information Theory +1602.02206 Information Theory +1602.02207 Probability +1602.02210 Learning +1602.02211 Logic in Computer Science +1602.02215 Computation and Language +1602.02216 Information Theory +1602.02219 Computation +1602.02228 Materials Science +1602.02234 Representation Theory +1602.02235 +1602.02237 Neural and Evolutionary Computing +1602.02238 Social and Information Networks +1602.02240 Theory +1602.02241 Networking and Internet Architecture +1602.02244 Numerical Analysis +1602.02245 Numerical Analysis +1602.02249 Emerging Technologies +1602.02251 Instrumentation and Detectors +1602.02253 History and Philosophy of Physics +1602.02256 Learning +1602.02257 Statistical Mechanics +1602.02258 Commutative Algebra +1602.02260 Algebraic Geometry +1602.02267 Geometric Topology +1602.02268 Networking and Internet Architecture +1602.02277 Materials Science +1602.02283 Learning +1602.02284 Classical Analysis and ODEs +1602.02287 Astrophysics of Galaxies +1602.02288 Mesoscale and Nanoscale Physics +1602.02294 Information Theory +1602.02296 Software Engineering +1602.02297 Combinatorics +1602.02298 Analysis of PDEs +1602.02299 Combinatorics +1602.02301 Logic +1602.02302 Combinatorics +1602.02306 Numerical Analysis +1602.02308 Genomics +1602.02310 Cosmology and Nongalactic Astrophysics +1602.02315 Classical Analysis and ODEs +1602.02319 Theory +1602.02323 Mesoscale and Nanoscale Physics +1602.02324 Statistical Mechanics +1602.02326 Number Theory +1602.02329 Analysis of PDEs +1602.02330 Statistics Theory +1602.02331 +1602.02332 Information Retrieval +1602.02333 Instrumentation and Methods for Astrophysics +1602.02337 Optics +1602.02339 Distributed, Parallel, and Cluster Computing +1602.02341 Analysis of PDEs +1602.02346 Combinatorics +1602.02357 Dynamical Systems +1602.02361 Number Theory +1602.02362 Data Structures and Algorithms +1602.02367 Information Theory +1602.02368 Soft Condensed Matter +1602.02376 Rings and Algebras +1602.02377 Data Structures and Algorithms +1602.02381 Analysis of PDEs +1602.02383 Learning +1602.02384 Information Theory +1602.02386 Machine Learning +1602.02387 Logic in Computer Science +1602.02390 Information Theory +1602.02391 Probability +1602.02393 Algebraic Geometry +1602.02394 Physics and Society +1602.02396 Cryptography and Security +1602.02398 Methodology +1602.02399 Dynamical Systems +1602.02400 Phenomenology +1602.02403 Dynamical Systems +1602.02404 Fluid Dynamics +1602.02406 Combinatorics +1602.02407 Number Theory +1602.02408 Statistics Theory +1602.02409 Distributed, Parallel, and Cluster Computing +1602.02411 Analysis of PDEs +1602.02412 Digital Libraries +1602.02414 Instrumentation and Methods for Astrophysics +1602.02415 Information Theory +1602.02418 +1602.02422 Information Theory +1602.02423 Biological Physics +1602.02424 Group Theory +1602.02428 Probability +1602.02431 Commutative Algebra +1602.02432 Computational Complexity +1602.02437 Analysis of PDEs +1602.02443 Networking and Internet Architecture +1602.02446 +1602.02449 Materials Science +1602.02452 Cryptography and Security +1602.02454 Learning +1602.02455 +1602.02457 Analysis of PDEs +1602.02458 Differential Geometry +1602.02460 Solar and Stellar Astrophysics +1602.02461 Combinatorics +1602.02464 Geometric Topology +1602.02465 Differential Geometry +1602.02466 Methodology +1602.02468 History and Philosophy of Physics +1602.02471 Optics +1602.02472 Optimization and Control +1602.02473 Networking and Internet Architecture +1602.02475 Number Theory +1602.02477 Differential Geometry +1602.02479 Materials Science +1602.02480 Probability +1602.02482 Category Theory +1602.02484 Number Theory +1602.02485 Machine Learning +1602.02488 +1602.02490 Graphics +1602.02492 Biomolecules +1602.02493 Networking and Internet Architecture +1602.02495 Combinatorics +1602.02496 Atmospheric and Oceanic Physics +1602.02497 Optics +1602.02506 Information Retrieval +1602.02508 Operator Algebras +1602.02509 Computers and Society +1602.02510 Materials Science +1602.02512 Complex Variables +1602.02515 Category Theory +1602.02517 Hardware Architecture +1602.02518 Learning +1602.02519 Earth and Planetary Astrophysics +1602.02521 Analysis of PDEs +1602.02522 Computer Vision and Pattern Recognition +1602.02523 Machine Learning +1602.02524 Systems and Control +1602.02525 Complex Variables +1602.02530 Plasma Physics +1602.02531 Combinatorics +1602.02538 Superconductivity +1602.02539 Computation +1602.02540 Popular Physics +1602.02541 Number Theory +1602.02543 Learning +1602.02544 Statistical Mechanics +1602.02546 Functional Analysis +1602.02548 Chaotic Dynamics +1602.02549 +1602.02550 +1602.02552 +1602.02554 Analysis of PDEs +1602.02555 Soft Condensed Matter +1602.02556 Complex Variables +1602.02558 Functional Analysis +1602.02560 Probability +1602.02561 +1602.02562 Physics and Society +1602.02563 Mesoscale and Nanoscale Physics +1602.02566 Phenomenology +1602.02568 +1602.02571 Materials Science +1602.02572 Numerical Analysis +1602.02576 Number Theory +1602.02580 Superconductivity +1602.02586 Computer Vision and Pattern Recognition +1602.02589 Combinatorics +1602.02593 Analysis of PDEs +1602.02594 Social and Information Networks +1602.02597 Probability +1602.02598 Dynamical Systems +1602.02600 +1602.02606 Computation +1602.02607 Metric Geometry +1602.02610 Data Structures and Algorithms +1602.02611 +1602.02612 Information Theory +1602.02614 Chaotic Dynamics +1602.02617 Artificial Intelligence +1602.02618 Numerical Analysis +1602.02619 +1602.02622 Systems and Control +1602.02624 Plasma Physics +1602.02625 Materials Science +1602.02626 Plasma Physics +1602.02629 Discrete Mathematics +1602.02630 Systems and Control +1602.02631 Mesoscale and Nanoscale Physics +1602.02632 Number Theory +1602.02634 Combinatorics +1602.02638 Emerging Technologies +1602.02643 Physics Education +1602.02651 Computer Vision and Pattern Recognition +1602.02656 Sound +1602.02659 Dynamical Systems +1602.02661 Functional Analysis +1602.02663 +1602.02665 Social and Information Networks +1602.02666 Machine Learning +1602.02667 +1602.02669 Materials Science +1602.02670 Data Structures and Algorithms +1602.02672 Artificial Intelligence +1602.02676 +1602.02681 Combinatorics +1602.02683 Materials Science +1602.02684 Phenomenology +1602.02688 Group Theory +1602.02693 Biological Physics +1602.02695 Distributed, Parallel, and Cluster Computing +1602.02698 Distributed, Parallel, and Cluster Computing +1602.02699 Dynamical Systems +1602.02703 Optics +1602.02704 Information Theory +1602.02705 Number Theory +1602.02707 Strongly Correlated Electrons +1602.02710 Computer Science and Game Theory +1602.02711 Analysis of PDEs +1602.02713 Physics and Society +1602.02714 Probability +1602.02719 Combinatorics +1602.02721 Solar and Stellar Astrophysics +1602.02726 Optimization and Control +1602.02730 +1602.02735 Trading and Market Microstructure +1602.02739 Populations and Evolution +1602.02740 Numerical Analysis +astro-ph/0110180 +astro-ph/0312468 +astro-ph/0501252 +astro-ph/9703197 +gr-qc/9602039 +hep-ex/0401014 Experiment +hep-th/0405200 Theory +1511.08040 Rings and Algebras +1512.02195 Dynamical Systems +1603.00102 Numerical Analysis +1603.00125 Algebraic Geometry +1603.00130 Phenomenology +1603.00226 Computer Science and Game Theory +1501.01872 Cosmology and Nongalactic Astrophysics +0705.1560 +0807.2350 Classical Analysis and ODEs +0807.3315 Algebraic Geometry +0809.4221 Algebraic Topology +0811.1284 Atomic Physics +0812.2733 Analysis of PDEs +0901.0555 Cosmology and Nongalactic Astrophysics +0906.1689 Probability +0906.5444 Astrophysics of Galaxies +0908.2324 Combinatorics +0909.0577 Complex Variables +1004.1022 Superconductivity +1004.1194 Data Structures and Algorithms +1004.1530 Superconductivity +1004.1590 Soft Condensed Matter +1004.5130 Logic in Computer Science +1103.0034 +1103.1084 Earth and Planetary Astrophysics +1103.1116 Cosmology and Nongalactic Astrophysics +1103.1448 Information Theory +1103.3680 General Topology +1103.3772 General Topology +1103.4185 +1103.5280 Mesoscale and Nanoscale Physics +1106.0725 Combinatorics +1109.1844 Learning +1109.2323 Computational Geometry +1203.1992 Theory +1203.2243 History and Overview +1203.4053 Complex Variables +1203.4340 Mesoscale and Nanoscale Physics +1203.4645 Combinatorics +1203.5215 Soft Condensed Matter +1203.5834 Soft Condensed Matter +1203.5846 Symbolic Computation +1205.2261 +1208.3155 Differential Geometry +1208.3391 Computer Science and Game Theory +1208.3528 Atomic Physics +1210.6011 Complex Variables +1212.5037 Phenomenology +1303.0051 +1303.0341 Learning +1303.0707 Information Theory +1303.1278 Statistical Mechanics +1303.1429 Accelerator Physics +1303.1936 Mesoscale and Nanoscale Physics +1303.3433 Mesoscale and Nanoscale Physics +1303.4525 Solar and Stellar Astrophysics +1303.4545 Optics +1303.4647 Solar and Stellar Astrophysics +1303.4862 Optics +1303.5639 Quantum Gases +1303.5808 +1303.6091 Social and Information Networks +1303.6168 Symplectic Geometry +1303.7146 Metric Geometry +1303.7411 Mesoscale and Nanoscale Physics +1307.0262 Algebraic Geometry +1307.2893 Physics and Society +1307.4957 +1309.0136 Systems and Control +1309.1600 Number Theory +1309.2551 Algebraic Geometry +1309.4066 +1309.6772 Discrete Mathematics +1309.7454 Combinatorics +1310.8641 Probability +1311.0922 Numerical Analysis +1311.5864 Phenomenology +1312.2627 Numerical Analysis +1312.3015 Cosmology and Nongalactic Astrophysics +1401.5532 Chemical Physics +1403.0571 General Mathematics +1403.0977 Materials Science +1403.1283 Mesoscale and Nanoscale Physics +1403.1295 +1403.1478 Geometric Topology +1403.1670 Optics +1403.1908 Functional Analysis +1403.2197 Quantitative Methods +1403.2332 Methodology +1403.2349 Analysis of PDEs +1403.2621 Cosmology and Nongalactic Astrophysics +1403.3186 Optics +1403.3266 Number Theory +1403.3332 Numerical Analysis +1403.3472 Physics and Society +1403.3883 Geometric Topology +1403.4655 Numerical Analysis +1403.5320 Mesoscale and Nanoscale Physics +1403.5553 Classical Analysis and ODEs +1403.6226 Chaotic Dynamics +1403.6442 Instrumentation and Detectors +1403.6880 Superconductivity +1403.6909 Symplectic Geometry +1403.7875 Optimization and Control +1403.7891 Functional Analysis +1403.7936 General Mathematics +1403.8012 Adaptation and Self-Organizing Systems +1404.0764 Complex Variables +1404.4596 Number Theory +1404.5600 Number Theory +1405.1868 Methodology +1405.2322 Statistics Theory +1407.1525 Data Structures and Algorithms +1407.1941 Number Theory +1407.2134 Logic +1407.4736 Dynamical Systems +1407.5899 Materials Science +1408.5805 Group Theory +1409.3802 Algebraic Geometry +1409.4838 Operator Algebras +1409.8017 Chemical Physics +1410.0066 Complex Variables +1410.6359 Algebraic Geometry +1411.0261 Commutative Algebra +1411.2526 Probability +1411.3078 Economics +1411.6077 Atomic Physics +1412.6419 Number Theory +1412.7503 Representation Theory +1412.8468 Functional Analysis +1501.00178 Number Theory +1501.01256 Dynamical Systems +1501.03130 Materials Science +1501.04652 Quantum Algebra +1501.04816 Combinatorics +1501.06542 Theory +1501.06797 Atomic Physics +1502.00628 Cosmology and Nongalactic Astrophysics +1502.00981 +1502.03021 Mesoscale and Nanoscale Physics +1502.03736 Algebraic Geometry +1502.05164 Analysis of PDEs +1502.05765 Numerical Analysis +1503.00411 Numerical Analysis +1503.02146 +1503.02362 Representation Theory +1503.02380 Combinatorics +1503.02460 Operator Algebras +1503.03827 Group Theory +1503.03859 Theory +1503.04075 Number Theory +1503.04122 Statistical Mechanics +1503.05029 Optimization and Control +1503.05165 Number Theory +1503.06284 Statistics Theory +1503.06401 Statistics Theory +1503.06576 Probability +1503.08453 +1503.08677 Computer Vision and Pattern Recognition +1504.00257 Strongly Correlated Electrons +1504.01097 Methodology +1504.01519 Representation Theory +1504.01604 History and Philosophy of Physics +1504.02930 Information Theory +1504.02996 High Energy Astrophysical Phenomena +1504.03367 Number Theory +1504.04593 Group Theory +1504.05502 Theory +1504.05639 +1504.05642 General Mathematics +1504.05707 Databases +1504.06348 Optimization and Control +1504.07234 Numerical Analysis +1504.07834 Data Structures and Algorithms +1504.07849 Solar and Stellar Astrophysics +1504.07888 Combinatorics +1504.08002 Solar and Stellar Astrophysics +1505.00717 Algebraic Geometry +1505.05412 Astrophysics of Galaxies +1505.05687 Methodology +1505.08003 Data Structures and Algorithms +1506.00212 Logic +1506.02142 Machine Learning +1506.05834 Combinatorics +1506.07513 Algebraic Geometry +1507.00944 Algebraic Geometry +1507.01081 Analysis of PDEs +1507.02222 Computational Geometry +1507.03209 Combinatorics +1507.05004 Computational Physics +1507.05353 Cosmology and Nongalactic Astrophysics +1507.05429 Algebraic Geometry +1507.08101 Distributed, Parallel, and Cluster Computing +1507.08474 Mesoscale and Nanoscale Physics +1507.08653 Methodology +1507.08744 Mesoscale and Nanoscale Physics +1507.08887 +1508.01416 +1508.02480 Atomic Physics +1508.02782 Chemical Physics +1508.03775 Representation Theory +1508.05102 Astrophysics of Galaxies +1508.05971 Plasma Physics +1508.06562 Experiment +1508.07503 Physics and Society +1508.07505 Statistical Finance +1509.02765 High Energy Astrophysical Phenomena +1509.03656 Cosmology and Nongalactic Astrophysics +1509.03674 Classical Analysis and ODEs +1509.03694 Astrophysics of Galaxies +1509.03698 +1509.06372 Astrophysics of Galaxies +1509.06781 Phenomenology +1509.06878 +1509.07796 +1509.07916 +1509.08208 Combinatorics +1509.08843 Commutative Algebra +1509.09162 Functional Analysis +1510.01281 Cosmology and Nongalactic Astrophysics +1510.01707 Experiment +1510.01767 Mesoscale and Nanoscale Physics +1510.06042 Cosmology and Nongalactic Astrophysics +1510.06512 Materials Science +1510.08788 Differential Geometry +1510.08794 Materials Science +1511.01596 Algebraic Topology +1511.01954 Computer Vision and Pattern Recognition +1511.02395 Category Theory +1511.02738 +1511.03298 Combinatorics +1511.03462 +1511.03772 Physics and Society +1511.04235 Metric Geometry +1511.05853 Astrophysics of Galaxies +1511.07033 Programming Languages +1511.07717 Superconductivity +1511.07795 +1511.07943 Dynamical Systems +1511.08966 Algebraic Geometry +1511.09157 Earth and Planetary Astrophysics +1512.00086 Cosmology and Nongalactic Astrophysics +1512.00918 Number Theory +1512.01942 Phenomenology +1512.02310 Statistical Finance +1512.02970 Learning +1512.03819 +1512.04460 Risk Management +1512.05345 +1512.05604 +1512.06115 Theory +1512.06794 Cosmology and Nongalactic Astrophysics +1512.06870 Theory +1512.07142 Cosmology and Nongalactic Astrophysics +1512.07753 Optics +1512.07824 Number Theory +1512.08651 Phenomenology +1512.08935 Materials Science +1512.09078 Optimization and Control +1512.09144 Phenomenology +1601.00950 Algebraic Geometry +1601.01303 Analysis of PDEs +1601.01663 +1601.02972 Functional Analysis +1601.02985 Astrophysics of Galaxies +1601.03822 Statistics Theory +1601.05246 Solar and Stellar Astrophysics +1601.05336 Logic in Computer Science +1601.06434 Cosmology and Nongalactic Astrophysics +1601.07175 Earth and Planetary Astrophysics +1601.07433 Astrophysics of Galaxies +1601.07835 Solar and Stellar Astrophysics +1601.08150 Materials Science +1601.08191 Differential Geometry +1602.00752 Number Theory +1602.01086 Phenomenology +1602.01579 +1602.01599 Computer Vision and Pattern Recognition +1602.01601 Computer Vision and Pattern Recognition +1602.01640 Theory +1602.02070 Learning +1602.02202 Learning +1602.02502 Mesoscale and Nanoscale Physics +1602.02553 Fluid Dynamics +1602.02948 Mesoscale and Nanoscale Physics +1602.03251 +1602.03584 +1602.03872 Strongly Correlated Electrons +1602.04483 Statistical Mechanics +1602.04524 +1602.04650 Social and Information Networks +1602.04712 Robotics +1602.05202 Phenomenology +1602.05369 Classical Analysis and ODEs +1602.05463 Number Theory +1602.05469 Functional Analysis +1602.06142 Solar and Stellar Astrophysics +1602.06244 Number Theory +1602.08162 Data Structures and Algorithms +1602.08890 Statistical Mechanics +1603.00071 Algebraic Geometry +1603.00230 Phenomenology +1603.00665 Materials Science +1603.01045 Materials Science +1603.01280 Solar and Stellar Astrophysics +1603.01362 Soft Condensed Matter +1603.01399 Information Theory +1603.01837 Astrophysics of Galaxies +1603.02079 Strongly Correlated Electrons +1603.02541 +1603.02698 High Energy Astrophysical Phenomena +1603.03082 +1603.03447 High Energy Astrophysical Phenomena +1603.03650 Numerical Analysis +1603.03659 Solar and Stellar Astrophysics +1603.03848 +1603.03960 Combinatorics +1603.05200 Systems and Control +1603.05249 Earth and Planetary Astrophysics +1603.05418 Earth and Planetary Astrophysics +1603.05569 Solar and Stellar Astrophysics +1603.05996 Astrophysics of Galaxies +1603.06336 Analysis of PDEs +1603.06362 Strongly Correlated Electrons +1603.06436 Plasma Physics +1603.06599 Strongly Correlated Electrons +1603.06918 +1603.07001 Atomic Physics +1603.07115 Cosmology and Nongalactic Astrophysics +1603.07134 +1603.07594 Mesoscale and Nanoscale Physics +1603.08530 High Energy Astrophysical Phenomena +1603.08563 Computational Physics +1603.08846 Materials Science +1603.08873 Strongly Correlated Electrons +1603.09072 Materials Science +1604.00028 Astrophysics of Galaxies +1604.00532 +1604.01020 Astrophysics of Galaxies +1604.01270 Mesoscale and Nanoscale Physics +1604.01759 Cosmology and Nongalactic Astrophysics +1604.01856 Algebraic Geometry +1604.02066 Astrophysics of Galaxies +1604.02230 Phenomenology +1604.02621 Statistical Mechanics +1604.02695 Experiment +1604.03180 Earth and Planetary Astrophysics +1604.03945 Astrophysics of Galaxies +1604.04347 Superconductivity +1604.04596 +1604.05475 Materials Science +1604.05533 Number Theory +1604.05970 Cosmology and Nongalactic Astrophysics +1604.06019 Fluid Dynamics +1604.06080 Theory +1604.06212 +1604.06925 Optics +1604.07167 Materials Science +1604.08036 Solar and Stellar Astrophysics +1604.08103 Superconductivity +1604.08160 Computational Physics +1604.08365 +1604.08535 +1604.08637 Quantum Gases +1604.08684 Operator Algebras +1604.08898 Phenomenology +1605.00114 Soft Condensed Matter +1605.00289 Solar and Stellar Astrophysics +1605.00648 Astrophysics of Galaxies +1605.00880 Probability +1605.00920 Biological Physics +1605.01138 Artificial Intelligence +1605.01537 Strongly Correlated Electrons +1605.01705 Earth and Planetary Astrophysics +1605.01725 High Energy Astrophysical Phenomena +1605.01911 Theory +1605.02136 Quantum Gases +1605.02407 Phenomenology +1605.02769 High Energy Astrophysical Phenomena +1605.03131 Soft Condensed Matter +1605.03204 +1605.03464 Phenomenology +1605.03543 Operator Algebras +1605.03617 High Energy Astrophysical Phenomena +1605.03629 Strongly Correlated Electrons +1605.04562 +1605.04675 Phenomenology +1605.04724 Astrophysics of Galaxies +1605.04916 Strongly Correlated Electrons +1605.04920 Cosmology and Nongalactic Astrophysics +1605.05149 Solar and Stellar Astrophysics +1605.05332 Solar and Stellar Astrophysics +1605.05595 Plasma Physics +1605.05600 Geometric Topology +1605.05709 +1605.05731 Astrophysics of Galaxies +1605.05811 Solar and Stellar Astrophysics +1605.06075 Theory +1605.06114 Phenomenology +1605.06159 Solar and Stellar Astrophysics +1605.07190 Mesoscale and Nanoscale Physics +1605.07218 High Energy Astrophysical Phenomena +1605.07428 +1605.07442 +1605.07632 Astrophysics of Galaxies +1605.07754 +1605.08039 Phenomenology +1605.08157 Materials Science +1605.08222 Distributed, Parallel, and Cluster Computing +1605.08313 Computer Vision and Pattern Recognition +1605.08394 Superconductivity +1605.08424 Cosmology and Nongalactic Astrophysics +1605.08942 Mesoscale and Nanoscale Physics +1605.08979 Astrophysics of Galaxies +1605.09017 Astrophysics of Galaxies +1605.09427 Mesoscale and Nanoscale Physics +1605.09501 Optics +1605.09542 Soft Condensed Matter +1606.00342 Phenomenology +1606.00449 High Energy Astrophysical Phenomena +1606.00595 High Energy Astrophysical Phenomena +1606.00606 Analysis of PDEs +1606.00628 Differential Geometry +1606.01558 Earth and Planetary Astrophysics +1606.01628 Phenomenology +1606.01717 Quantum Gases +1606.02078 High Energy Astrophysical Phenomena +1606.02095 Soft Condensed Matter +1606.02178 Phenomenology +1606.02629 Physics Education +1606.02744 High Energy Astrophysical Phenomena +1606.02904 Number Theory +1606.03018 +1606.03134 Earth and Planetary Astrophysics +1606.03387 Statistical Mechanics +1606.03764 Statistical Mechanics +1606.04041 Solar and Stellar Astrophysics +1606.04092 Astrophysics of Galaxies +1606.04186 Phenomenology +1606.04213 Phenomenology +1606.04510 Earth and Planetary Astrophysics +1606.04622 Probability +1606.04769 Quantum Algebra +1606.04782 Experiment +1606.04842 Solar and Stellar Astrophysics +1606.05127 Information Theory +1606.05142 Solar and Stellar Astrophysics +1606.05205 Spectral Theory +1606.05515 +1606.05585 Cosmology and Nongalactic Astrophysics +1606.05738 Superconductivity +1606.05745 Astrophysics of Galaxies +1606.05863 Dynamical Systems +1606.05867 Strongly Correlated Electrons +1606.06063 Phenomenology +1606.06345 Materials Science +1606.06430 Astrophysics of Galaxies +1606.06431 High Energy Astrophysical Phenomena +1606.06448 Solar and Stellar Astrophysics +1606.07030 Mesoscale and Nanoscale Physics +1606.07113 Optics +1606.07173 +1606.07200 Solar and Stellar Astrophysics +1606.07214 Astrophysics of Galaxies +1606.07238 Solar and Stellar Astrophysics +1606.07354 High Energy Astrophysical Phenomena +1606.07356 Computation and Language +1606.08024 Probability +1606.08027 Earth and Planetary Astrophysics +1606.08195 Phenomenology +1606.08251 Probability +1606.08256 Probability +1606.08374 Phenomenology +1606.08409 +1606.08447 Earth and Planetary Astrophysics +1606.08560 Strongly Correlated Electrons +1606.08608 Astrophysics of Galaxies +1606.09036 Mesoscale and Nanoscale Physics +1606.09113 Metric Geometry +1606.09161 Strongly Correlated Electrons +1606.09261 High Energy Astrophysical Phenomena +1606.09352 Earth and Planetary Astrophysics +1607.00010 Astrophysics of Galaxies +1607.00058 Statistical Mechanics +1607.00152 Solar and Stellar Astrophysics +1607.00233 High Energy Astrophysical Phenomena +1607.00306 Solar and Stellar Astrophysics +1607.00672 Astrophysics of Galaxies +1607.00745 +1607.00772 Solar and Stellar Astrophysics +1607.00820 Solar and Stellar Astrophysics +1607.01045 High Energy Astrophysical Phenomena +1607.01072 Materials Science +1607.01392 Solar and Stellar Astrophysics +1607.01522 High Energy Astrophysical Phenomena +1607.01626 +1607.01773 Atomic Physics +1607.02261 +1607.02341 Earth and Planetary Astrophysics +1607.02541 Astrophysics of Galaxies +1607.02707 Astrophysics of Galaxies +1607.03006 High Energy Astrophysical Phenomena +1607.03060 Theory +1607.03326 High Energy Astrophysical Phenomena +1607.03500 Theory +1607.03520 Solar and Stellar Astrophysics +1607.03618 Logic in Computer Science +1607.03632 Earth and Planetary Astrophysics +1607.03699 High Energy Astrophysical Phenomena +1607.03886 Solar and Stellar Astrophysics +1607.03906 Earth and Planetary Astrophysics +1607.03965 Astrophysics of Galaxies +1607.04133 Earth and Planetary Astrophysics +1607.04300 Superconductivity +1607.04325 Astrophysics of Galaxies +1607.04363 Strongly Correlated Electrons +1607.04445 Solar and Stellar Astrophysics +1607.04568 Astrophysics of Galaxies +1607.04687 Earth and Planetary Astrophysics +1607.04689 Materials Science +1607.04937 Phenomenology +1607.05001 Information Theory +1607.05312 Astrophysics of Galaxies +1607.05381 Strongly Correlated Electrons +1607.05535 Earth and Planetary Astrophysics +1607.05736 Solar and Stellar Astrophysics +1607.05902 Mesoscale and Nanoscale Physics +1607.05908 Quantum Gases +1607.06043 Statistical Mechanics +1607.06108 Theory +1607.06164 Solar and Stellar Astrophysics +1607.06287 Solar and Stellar Astrophysics +1607.06386 Mesoscale and Nanoscale Physics +1607.06491 High Energy Astrophysical Phenomena +1607.06811 Astrophysics of Galaxies +1607.06841 Solar and Stellar Astrophysics +1607.07012 Mesoscale and Nanoscale Physics +1607.07316 Phenomenology +1607.07449 Theory +1607.07732 Solar and Stellar Astrophysics +1607.07917 Astrophysics of Galaxies +1607.07919 Solar and Stellar Astrophysics +1607.07965 Materials Science +1607.08028 Symbolic Computation +1607.08059 Materials Science +1607.08191 +1607.08612 Solar and Stellar Astrophysics +1607.08884 Theory +1608.00010 Instrumentation and Methods for Astrophysics +1608.00118 Phenomenology +1608.00262 Theory +1608.00845 Statistical Mechanics +1608.01006 Instrumentation and Methods for Astrophysics +1608.01007 High Energy Astrophysical Phenomena +1608.01099 Astrophysics of Galaxies +1608.01169 Astrophysics of Galaxies +1608.01232 Theory +1608.01375 High Energy Astrophysical Phenomena +1608.01500 Computer Science and Game Theory +1608.01525 +1608.01621 Physics Education +1608.02080 Theory +1608.02277 Astrophysics of Galaxies +1608.02512 Quantum Gases +1608.02631 Solar and Stellar Astrophysics +1608.02828 Category Theory +1608.02872 Solar and Stellar Astrophysics +1608.03028 Phenomenology +1608.03039 Atomic Physics +1608.03147 Earth and Planetary Astrophysics +1608.03242 Astrophysics of Galaxies +1608.03274 Solar and Stellar Astrophysics +1608.03427 High Energy Astrophysical Phenomena +1608.03438 Statistical Mechanics +1608.03604 Physics and Society +1608.04075 Theory +1608.04251 Astrophysics of Galaxies +1608.04393 Theory +1608.04469 Astrophysics of Galaxies +1608.04812 Computational Geometry +1608.04892 Solar and Stellar Astrophysics +1608.04893 Solar and Stellar Astrophysics +1608.05004 High Energy Astrophysical Phenomena +1608.05344 Analysis of PDEs +1608.05487 Astrophysics of Galaxies +1608.05635 Materials Science +1608.06250 Algebraic Topology +1608.06319 Solar and Stellar Astrophysics +1608.06471 Populations and Evolution +1608.06528 Phenomenology +1608.06535 Phenomenology +1608.06561 Optics +1608.06647 High Energy Astrophysical Phenomena +1608.06672 Solar and Stellar Astrophysics +1608.06698 Astrophysics of Galaxies +1608.06701 Plasma Physics +1608.06755 Plasma Physics +1608.06801 High Energy Astrophysical Phenomena +1608.06926 Functional Analysis +1608.07088 Astrophysics of Galaxies +1608.07133 High Energy Astrophysical Phenomena +1608.07208 Statistical Mechanics +1608.07421 High Energy Astrophysical Phenomena +1608.07927 Group Theory +1608.07967 Biomolecules +1608.08332 Optics +1608.08643 Earth and Planetary Astrophysics +1608.08893 Solar and Stellar Astrophysics +1609.00598 Space Physics +1609.00679 Solar and Stellar Astrophysics +1609.00696 Methodology +1609.00750 Data Structures and Algorithms +1609.01142 Soft Condensed Matter +1609.01143 Cosmology and Nongalactic Astrophysics +1609.01538 +1609.01866 +1609.02034 Dynamical Systems +1609.02283 Astrophysics of Galaxies +1609.02406 +1609.02731 Solar and Stellar Astrophysics +1609.03319 Learning +1609.03475 Solar and Stellar Astrophysics +1609.03870 Classical Analysis and ODEs +1609.03957 +1609.04381 Materials Science +1609.04592 High Energy Astrophysical Phenomena +1609.04817 Astrophysics of Galaxies +1609.05046 General Physics +1609.05310 Phenomenology +1609.05412 Solar and Stellar Astrophysics +1609.05720 Algebraic Geometry +1609.05885 Data Structures and Algorithms +1609.05939 Risk Management +1609.06195 High Energy Astrophysical Phenomena +1609.06228 Theory +1609.06305 Materials Science +1609.06403 Data Structures and Algorithms +1609.06615 Functional Analysis +1609.06941 Phenomenology +1609.06967 +1609.07124 Chemical Physics +1609.07297 Astrophysics of Galaxies +1609.07381 Theory +1609.07564 Mesoscale and Nanoscale Physics +1609.07807 Soft Condensed Matter +1609.07855 Populations and Evolution +1609.07998 Materials Science +1609.08215 Earth and Planetary Astrophysics +1609.08682 +1609.08810 Computation and Language +1609.08866 Astrophysics of Galaxies +1609.08963 Astrophysics of Galaxies +1609.09169 Solar and Stellar Astrophysics +1609.09205 Mathematical Finance +1609.09347 Atomic and Molecular Clusters +1609.09392 Geometric Topology +1609.09399 Materials Science +1609.09631 Cosmology and Nongalactic Astrophysics +1609.09693 Soft Condensed Matter +1609.09696 Information Theory +1609.09697 Statistical Mechanics +1609.09780 Algebraic Geometry +1610.00006 Instrumentation and Detectors +1610.00019 Optics +1610.00095 Group Theory +1610.00233 Lattice +1610.00242 Astrophysics of Galaxies +1610.00353 Data Structures and Algorithms +1610.00465 Learning +1610.00496 +1610.00527 Computer Vision and Pattern Recognition +1610.00644 Sound +1610.00659 Optics +1610.00660 Computer Vision and Pattern Recognition +1610.00698 General Mathematics +1610.00701 Robotics +1610.00702 Commutative Algebra +1610.00703 Other Quantitative Biology +1610.00704 Computational Engineering, Finance, and Science +1610.00705 Instrumentation and Detectors +1610.00706 Instrumentation and Detectors +1610.00707 Theory +1610.00710 Phenomenology +1610.00714 Earth and Planetary Astrophysics +1610.00718 Theory +1610.00720 Disordered Systems and Neural Networks +1610.00723 Instrumentation and Methods for Astrophysics +1610.00726 +1610.00728 Formal Languages and Automata Theory +1610.00729 Optics +1610.00730 +1610.00731 Computer Vision and Pattern Recognition +1610.00733 Number Theory +1610.00735 Information Retrieval +1610.00737 Analysis of PDEs +1610.00738 Solar and Stellar Astrophysics +1610.00739 Atmospheric and Oceanic Physics +1610.00740 Theory +1610.00741 Medical Physics +1610.00742 Algebraic Geometry +1610.00743 Analysis of PDEs +1610.00744 +1610.00746 Mesoscale and Nanoscale Physics +1610.00747 Algebraic Topology +1610.00748 Computer Vision and Pattern Recognition +1610.00749 Physics and Society +1610.00750 Classical Physics +1610.00751 Hardware Architecture +1610.00753 General Physics +1610.00754 Algebraic Geometry +1610.00755 Materials Science +1610.00756 Combinatorics +1610.00758 Disordered Systems and Neural Networks +1610.00759 Computer Vision and Pattern Recognition +1610.00761 +1610.00762 Other Condensed Matter +1610.00765 Computation and Language +1610.00766 Biological Physics +1610.00767 Mesoscale and Nanoscale Physics +1610.00771 +1610.00773 Computation +1610.00774 Analysis of PDEs +1610.00775 Materials Science +1610.00776 Rings and Algebras +1610.00777 Combinatorics +1610.00778 Mathematical Finance +1610.00781 Computation +1610.00782 Social and Information Networks +1610.00788 Accelerator Physics +1610.00789 Materials Science +1610.00790 Neural and Evolutionary Computing +1610.00792 Combinatorics +1610.00795 Computational Finance +1610.00796 Dynamical Systems +1610.00798 Numerical Analysis +1610.00799 Analysis of PDEs +1610.00801 Astrophysics of Galaxies +1610.00804 Geophysics +1610.00806 Instrumentation and Methods for Astrophysics +1610.00808 Category Theory +1610.00810 Mesoscale and Nanoscale Physics +1610.00812 Algebraic Geometry +1610.00813 Systems and Control +1610.00815 Combinatorics +1610.00816 Commutative Algebra +1610.00817 Algebraic Geometry +1610.00818 Mathematical Finance +1610.00820 Molecular Networks +1610.00821 Analysis of PDEs +1610.00822 Dynamical Systems +1610.00823 Numerical Analysis +1610.00824 Computer Vision and Pattern Recognition +1610.00825 Molecular Networks +1610.00826 Representation Theory +1610.00827 +1610.00829 Materials Science +1610.00831 Programming Languages +1610.00832 Geometric Topology +1610.00833 Combinatorics +1610.00838 Computer Vision and Pattern Recognition +1610.00839 +1610.00841 Cryptography and Security +1610.00842 Computation and Language +1610.00843 Machine Learning +1610.00845 Information Theory +1610.00846 Information Theory +1610.00848 Solar and Stellar Astrophysics +1610.00849 Strongly Correlated Electrons +1610.00852 Learning +1610.00853 Combinatorics +1610.00857 Information Theory +1610.00859 Chemical Physics +1610.00860 Functional Analysis +1610.00863 Dynamical Systems +1610.00864 Probability +1610.00865 High Energy Astrophysical Phenomena +1610.00867 Information Theory +1610.00871 Strongly Correlated Electrons +1610.00873 Information Theory +1610.00874 High Energy Astrophysical Phenomena +1610.00875 Optimization and Control +1610.00876 Combinatorics +1610.00879 Computation and Language +1610.00881 Probability +1610.00883 Computation and Language +1610.00885 Functional Analysis +1610.00887 High Energy Astrophysical Phenomena +1610.00888 Optimization and Control +1610.00889 Cryptography and Security +1610.00895 Materials Science +1610.00897 +1610.00899 Theory +1610.00900 Information Theory +1610.00901 Computer Science and Game Theory +1610.00903 Combinatorics +1610.00905 Category Theory +1610.00907 Machine Learning +1610.00911 Optimization and Control +1610.00912 Robotics +1610.00915 Materials Science +1610.00918 Astrophysics of Galaxies +1610.00920 Physics and Society +1610.00922 +1610.00923 Representation Theory +1610.00924 Mesoscale and Nanoscale Physics +1610.00931 Mesoscale and Nanoscale Physics +1610.00933 Analysis of PDEs +1610.00935 Combinatorics +1610.00939 Analysis of PDEs +1610.00940 Mesoscale and Nanoscale Physics +1610.00944 High Energy Astrophysical Phenomena +1610.00945 Analysis of PDEs +1610.00947 K-Theory and Homology +1610.00949 +1610.00950 Number Theory +1610.00951 Methodology +1610.00952 Computational Geometry +1610.00953 Optimization and Control +1610.00954 Functional Analysis +1610.00955 General Finance +1610.00956 Computation and Language +1610.00959 Geometric Topology +1610.00960 Machine Learning +1610.00961 Accelerator Physics +1610.00963 Optics +1610.00964 Analysis of PDEs +1610.00965 Number Theory +1610.00967 Instrumentation and Detectors +1610.00973 Analysis of PDEs +1610.00974 Networking and Internet Architecture +1610.00975 Optimization and Control +1610.00976 Artificial Intelligence +1610.00977 Group Theory +1610.00981 Classical Analysis and ODEs +1610.00982 Information Theory +1610.00983 Probability +1610.00984 Computation +1610.00985 Computation +1610.00986 Solar and Stellar Astrophysics +1610.00987 Optics +1610.00988 +1610.00991 Numerical Analysis +1610.00992 General Physics +1610.00996 Strongly Correlated Electrons +1610.00997 Physics and Society +1610.00998 Strongly Correlated Electrons +1610.00999 Portfolio Management +1610.01000 Applications +1610.01003 Chaotic Dynamics +1610.01004 Logic in Computer Science +1610.01005 Strongly Correlated Electrons +1610.01008 Functional Analysis +1610.01009 Solar and Stellar Astrophysics +1610.01011 Algebraic Geometry +1610.01015 Materials Science +1610.01018 Computational Physics +1610.01019 Computational Complexity +1610.01021 +1610.01023 Solar and Stellar Astrophysics +1610.01027 Phenomenology +1610.01028 Metric Geometry +1610.01029 +1610.01031 Astrophysics of Galaxies +1610.01032 Differential Geometry +1610.01033 Optics +1610.01034 Superconductivity +1610.01035 Rings and Algebras +1610.01036 +1610.01039 Numerical Analysis +1610.01040 +1610.01042 Optics +1610.01043 Mesoscale and Nanoscale Physics +1610.01044 Artificial Intelligence +1610.01045 Systems and Control +1610.01047 Optics +1610.01048 Geophysics +1610.01050 Systems and Control +1610.01051 Numerical Analysis +1610.01052 Computer Vision and Pattern Recognition +1610.01053 Mesoscale and Nanoscale Physics +1610.01054 +1610.01056 +1610.01058 Data Structures and Algorithms +1610.01061 Number Theory +1610.01062 Combinatorics +1610.01065 Cryptography and Security +1610.01066 Computer Vision and Pattern Recognition +1610.01068 Computer Vision and Pattern Recognition +1610.01069 +1610.01070 Functional Analysis +1610.01071 Computational Physics +1610.01072 Mesoscale and Nanoscale Physics +1610.01075 Statistical Mechanics +1610.01076 Computer Vision and Pattern Recognition +1610.01078 Representation Theory +1610.01083 Complex Variables +1610.01087 Complex Variables +1610.01089 General Physics +1610.01090 General Physics +1610.01091 Plasma Physics +1610.01093 Analysis of PDEs +1610.01096 Social and Information Networks +1610.01098 Differential Geometry +1610.01099 +1610.01103 Analysis of PDEs +1610.01106 Combinatorics +1610.01107 Systems and Control +1610.01110 Number Theory +1610.01111 Combinatorics +1610.01113 Combinatorics +1610.01114 Quantitative Methods +1610.01115 Fluid Dynamics +1610.01116 Combinatorics +1610.01117 Robotics +1610.01118 Probability +1610.01121 Optics +1610.01122 Geometric Topology +1610.01125 +1610.01126 Lattice +1610.01127 Quantitative Methods +1610.01131 Mesoscale and Nanoscale Physics +1610.01133 Programming Languages +1610.01138 +1610.01140 Distributed, Parallel, and Cluster Computing +cond-mat/0504776 Other Condensed Matter +hep-ph/0406191 Phenomenology +hep-th/0405265 Theory +hep-th/0503100 Theory +math/0105047 Algebraic Topology +math/0401319 Number Theory +0708.3515 Group Theory +0709.3466 Group Theory +1102.3596 Other Quantitative Biology +1104.0536 Group Theory +1204.1664 Machine Learning +1209.0910 Numerical Analysis +1210.2220 Complex Variables +1210.8402 Commutative Algebra +1304.7326 Fluid Dynamics +1305.6644 Numerical Analysis +1306.0458 General Mathematics +1306.4239 Group Theory +1307.4447 Geometric Topology +1308.5522 Differential Geometry +1310.0503 Group Theory +1407.0896 Probability +1407.4861 Analysis of PDEs +1407.7388 Combinatorics +1408.4505 Number Theory +1409.3846 Mesoscale and Nanoscale Physics +1410.1618 Geometric Topology +1412.2708 Dynamical Systems +1412.2899 Complex Variables +1412.5029 Number Theory +1412.5494 Number Theory +1502.05497 +1502.06402 Analysis of PDEs +1502.07200 Solar and Stellar Astrophysics +1503.00484 Cryptography and Security +1503.00969 Differential Geometry +1504.06176 Combinatorics +1504.07363 Combinatorics +1505.00747 Differential Geometry +1505.04602 Combinatorics +1506.01805 Materials Science +1506.02502 Classical Analysis and ODEs +1506.06504 Differential Geometry +1506.08344 +1507.02954 Information Theory +1507.06061 Dynamical Systems +1508.02132 Dynamical Systems +1508.02758 Probability +1508.03419 Combinatorics +1508.06068 Quantum Algebra +1508.07214 Probability +1509.00952 Probability +1509.01033 Group Theory +1509.04601 Theory +1509.05637 Computational Complexity +1509.06683 Phenomenology +1510.04318 Quantum Algebra +1510.06265 Statistical Mechanics +1510.06924 Phenomenology +1511.02649 +1511.03534 Group Theory +1511.03981 Physics and Society +1511.04583 Programming Languages +1511.05435 Probability +1511.06898 Phenomenology +1511.07780 Commutative Algebra +1512.01187 Formal Languages and Automata Theory +1512.01396 Mesoscale and Nanoscale Physics +1512.01818 Computation and Language +1512.01837 Logic in Computer Science +1512.02123 Atomic Physics +1601.01622 Materials Science +1601.02187 Group Theory +1601.03139 Probability +1601.03356 Theory +1601.03569 +1601.04521 Superconductivity +1601.08012 Functional Analysis +1602.01324 +1602.01457 Mesoscale and Nanoscale Physics +1602.03039 Rings and Algebras +1602.04979 Mesoscale and Nanoscale Physics +1602.05338 Rings and Algebras +1602.06811 Algebraic Geometry +1602.07013 Data Structures and Algorithms +1602.07108 Functional Analysis +1602.07230 Mesoscale and Nanoscale Physics +1602.07589 Statistical Mechanics +1602.07866 Phenomenology +1602.08084 Geometric Topology +1602.08093 Superconductivity +1603.00517 Combinatorics +1603.00608 Group Theory +1603.01267 Phenomenology +1603.02236 +1603.02448 Dynamical Systems +1603.02986 Instrumentation and Detectors +1603.03544 Statistical Mechanics +1603.04288 +1603.04689 Strongly Correlated Electrons +1603.05336 Differential Geometry +1603.05616 Cosmology and Nongalactic Astrophysics +1603.05975 High Energy Astrophysical Phenomena +1603.06000 Solar and Stellar Astrophysics +1603.06058 Theory +1603.06108 +1603.07159 Optics +1603.07278 +1603.07634 +1603.08120 Computer Vision and Pattern Recognition +1604.00939 Strongly Correlated Electrons +1604.01132 +1604.02397 Mesoscale and Nanoscale Physics +1604.03706 Mesoscale and Nanoscale Physics +1604.06835 Classical Analysis and ODEs +1605.00484 +1605.01753 High Energy Astrophysical Phenomena +1605.03128 +1605.03185 Astrophysics of Galaxies +1605.03382 Differential Geometry +1605.04211 Chemical Physics +1605.06092 +1605.09084 Materials Science +1605.09325 Mesoscale and Nanoscale Physics +1606.02645 Artificial Intelligence +1606.02727 Solar and Stellar Astrophysics +1606.02853 +1606.03020 Analysis of PDEs +1606.03871 Computer Vision and Pattern Recognition +1606.04627 Solar and Stellar Astrophysics +1606.04818 Mesoscale and Nanoscale Physics +1606.06584 Functional Analysis +1606.06735 Phenomenology +1606.07700 Emerging Technologies +1606.08917 Strongly Correlated Electrons +1606.09172 Earth and Planetary Astrophysics +1606.09254 Astrophysics of Galaxies +1606.09289 Phenomenology +1606.09463 Information Theory +1607.01182 Cosmology and Nongalactic Astrophysics +1607.01744 Probability +1607.02281 Multimedia +1607.02394 Instrumentation and Methods for Astrophysics +1607.03385 Networking and Internet Architecture +1607.04004 Information Theory +1607.04063 Neural and Evolutionary Computing +1607.04181 Algebraic Geometry +1607.04256 Cryptography and Security +1607.04269 Physics and Society +1607.04274 Geophysics +1607.04287 Computational Complexity +1607.04296 Algebraic Geometry +1607.04299 Astrophysics of Galaxies +1607.04302 Instrumentation and Methods for Astrophysics +1607.04303 Strongly Correlated Electrons +1607.04305 Astrophysics of Galaxies +1607.04308 Atmospheric and Oceanic Physics +1607.04311 Cryptography and Security +1607.04312 Materials Science +1607.04318 Social and Information Networks +1607.04320 Computers and Society +1607.04321 Mesoscale and Nanoscale Physics +1607.04322 Information Theory +1607.04324 Neural and Evolutionary Computing +1607.04329 +1607.04332 Logic in Computer Science +1607.04336 Computational Geometry +1607.04340 Systems and Control +1607.04341 Representation Theory +1607.04342 Software Engineering +1607.04345 Optimization and Control +1607.04347 Software Engineering +1607.04349 Optics +1607.04353 +1607.04355 Soft Condensed Matter +1607.04356 Materials Science +1607.04360 Networking and Internet Architecture +1607.04362 Computer Science and Game Theory +1607.04364 General Topology +1607.04366 Systems and Control +1607.04368 Logic +1607.04369 Theory +1607.04370 General Topology +1607.04372 Populations and Evolution +1607.04373 Information Retrieval +1607.04374 Optimization and Control +1607.04376 Robotics +1607.04378 Sound +1607.04379 Artificial Intelligence +1607.04380 +1607.04387 Logic +1607.04390 Analysis of PDEs +1607.04391 Materials Science +1607.04394 Functional Analysis +1607.04395 Probability +1607.04396 +1607.04397 Analysis of PDEs +1607.04401 Metric Geometry +1607.04403 Data Structures and Algorithms +1607.04411 Computer Vision and Pattern Recognition +1607.04413 Superconductivity +1607.04419 Atomic Physics +1607.04420 Networking and Internet Architecture +1607.04421 Cryptography and Security +1607.04424 Applications +1607.04425 Rings and Algebras +1607.04426 +1607.04431 Discrete Mathematics +1607.04432 Mesoscale and Nanoscale Physics +1607.04436 Robotics +1607.04437 Phenomenology +1607.04438 Strongly Correlated Electrons +1607.04439 Robotics +1607.04440 Phenomenology +1607.04441 Robotics +1607.04443 Probability +1607.04452 Software Engineering +1607.04453 Analysis of PDEs +1607.04454 Analysis of PDEs +1607.04455 Physics Education +1607.04456 Logic in Computer Science +1607.04457 Logic in Computer Science +1607.04458 Logic in Computer Science +1607.04459 Programming Languages +1607.04460 Logic in Computer Science +1607.04461 Programming Languages +1607.04462 Analysis of PDEs +1607.04463 Quantitative Methods +1607.04467 Number Theory +1607.04471 Dynamical Systems +1607.04473 +1607.04475 Group Theory +1607.04476 Optics +1607.04477 Theory +1607.04478 Soft Condensed Matter +1607.04484 Economics +1607.04486 Representation Theory +1607.04488 Mathematical Finance +1607.04496 Phenomenology +1607.04500 Logic in Computer Science +1607.04501 Combinatorics +1607.04502 Other Quantitative Biology +1607.04505 +1607.04507 Quantum Gases +1607.04510 Analysis of PDEs +1607.04513 Algebraic Geometry +1607.04514 Numerical Analysis +1607.04515 Computer Vision and Pattern Recognition +1607.04518 Physics and Society +1607.04520 Analysis of PDEs +1607.04521 Analysis of PDEs +1607.04522 Methodology +1607.04525 Information Theory +1607.04526 Optimization and Control +1607.04527 Data Structures and Algorithms +1607.04529 Commutative Algebra +1607.04530 Probability +1607.04535 Mesoscale and Nanoscale Physics +1607.04537 Robotics +1607.04540 Analysis of PDEs +1607.04541 High Energy Astrophysical Phenomena +1607.04543 Computation +1607.04545 Data Structures and Algorithms +1607.04546 Functional Analysis +1607.04547 Numerical Analysis +1607.04548 Analysis of PDEs +1607.04550 Differential Geometry +1607.04551 General Mathematics +1607.04552 Optimization and Control +1607.04554 Experiment +1607.04555 Complex Variables +1607.04557 Data Structures and Algorithms +1607.04558 Number Theory +1607.04559 Information Theory +1607.04560 Cosmology and Nongalactic Astrophysics +1607.04561 Plasma Physics +1607.04565 Functional Analysis +1607.04566 Machine Learning +1607.04576 Computation and Language +1607.04577 Phenomenology +1607.04578 +1607.04580 Phenomenology +1607.04582 Analysis of PDEs +1607.04583 Artificial Intelligence +1607.04585 Other Condensed Matter +1607.04588 Physics Education +1607.04592 Optics +1607.04593 Computer Vision and Pattern Recognition +1607.04594 Numerical Analysis +1607.04595 Statistical Mechanics +1607.04597 Combinatorics +1607.04598 Pattern Formation and Solitons +1607.04603 Dynamical Systems +1607.04606 Computation and Language +1607.04607 Complex Variables +1607.04609 Computer Vision and Pattern Recognition +1607.04611 Logic in Computer Science +1607.04612 Biological Physics +1607.04614 Learning +1607.04616 Materials Science +1607.04618 Neurons and Cognition +1607.04619 Numerical Analysis +1607.04621 Fluid Dynamics +1607.04622 Rings and Algebras +1607.04624 Superconductivity +1607.04625 +1607.04627 Computational Physics +1607.04629 Networking and Internet Architecture +1607.04636 Analysis of PDEs +1607.04638 +0706.2844 Spectral Theory +0707.1089 Probability +0707.3787 +0708.2100 +0911.0885 Combinatorics +1008.3859 Earth and Planetary Astrophysics +1009.5991 Earth and Planetary Astrophysics +1012.1630 Combinatorics +1104.5326 Statistics Theory +1109.6671 Earth and Planetary Astrophysics +1111.6222 +1201.6634 Probability +1209.4267 Logic +1211.1621 Information Theory +1302.2158 Combinatorics +1303.6236 Probability +1303.7134 Phenomenology +1304.4544 +1305.1404 +1306.3935 Rings and Algebras +1307.3168 +1307.7559 Probability +1308.0478 Representation Theory +1308.1165 Dynamical Systems +1308.5200 Mathematical Software +1309.3057 Probability +1311.2136 +1311.7205 Statistical Mechanics +1312.0496 Computational Complexity +1312.4677 Statistical Mechanics +1312.4971 Combinatorics +1312.7667 Logic +1402.1409 +1402.5452 Metric Geometry +1402.5588 Statistical Mechanics +1402.6659 Category Theory +1403.2695 Statistics Theory +1403.4533 Dynamical Systems +1403.7043 Spectral Theory +1405.2861 Networking and Internet Architecture +1405.3625 Fluid Dynamics +1405.6234 Dynamical Systems +1405.6677 Statistics Theory +1406.0428 Populations and Evolution +1408.3264 Computer Vision and Pattern Recognition +1408.4561 +1408.4951 Dynamical Systems +1409.1333 Statistics Theory +1409.1428 Differential Geometry +1409.1858 Probability +1409.3932 +1410.2584 Probability +1410.4462 Statistics Theory +1410.5273 Analysis of PDEs +1410.5530 +1410.5778 Data Structures and Algorithms +1410.6468 Differential Geometry +1410.7299 Strongly Correlated Electrons +1410.8803 Differential Geometry +1412.0222 Operator Algebras +1412.5099 Number Theory +1412.6156 Machine Learning +1501.01127 Phenomenology +1501.03862 +1501.05490 Materials Science +1502.01271 Computation and Language +1502.04955 Combinatorics +1502.05927 Analysis of PDEs +1502.07734 Numerical Analysis +1503.01734 Instrumentation and Methods for Astrophysics +1503.02123 Networking and Internet Architecture +1503.03871 Strongly Correlated Electrons +1503.06780 +1504.01437 Astrophysics of Galaxies +1504.04575 +1504.06735 Probability +1504.07454 +1505.01276 +1505.02069 Theory +1505.02282 Algebraic Geometry +1505.03579 Networking and Internet Architecture +1505.03885 Algebraic Topology +1505.04814 Theory +1505.04831 Probability +1505.05826 Mesoscale and Nanoscale Physics +1505.06258 Networking and Internet Architecture +1505.07148 Cosmology and Nongalactic Astrophysics +1505.07261 Instrumentation and Detectors +1505.07526 Subcellular Processes +1505.07552 +1505.07728 Strongly Correlated Electrons +1506.00575 Optimization and Control +1506.00754 Mesoscale and Nanoscale Physics +1506.01497 Computer Vision and Pattern Recognition +1506.03296 Numerical Analysis +1506.04993 +1506.05044 Probability +1506.06892 +1506.08009 Artificial Intelligence +1506.08971 Materials Science +1507.00237 Astrophysics of Galaxies +1507.02652 Quantum Gases +1507.03436 Disordered Systems and Neural Networks +1507.05048 +1507.05156 Materials Science +1507.05200 Phenomenology +1507.06168 Dynamical Systems +1507.06363 Soft Condensed Matter +1507.07595 Optimization and Control +1507.08710 Category Theory +1508.01562 Fluid Dynamics +1508.02202 Quantum Gases +1508.05320 +1508.05668 Complex Variables +1508.06110 Cryptography and Security +1508.06996 Theory +1509.00234 +1509.04015 Phenomenology +1509.05416 Phenomenology +1509.06247 Strongly Correlated Electrons +1509.07149 Physics and Society +1509.07948 Optics +1509.08993 Differential Geometry +1510.01180 Geophysics +1510.01187 Geophysics +1510.01852 Networking and Internet Architecture +1510.01986 Algebraic Geometry +1510.02693 Neural and Evolutionary Computing +1510.02794 Phenomenology +1510.02872 Symplectic Geometry +1510.07945 Computer Vision and Pattern Recognition +1511.00538 +1511.01367 Fluid Dynamics +1511.02054 +1511.02147 Formal Languages and Automata Theory +1511.02490 Distributed, Parallel, and Cluster Computing +1511.04973 Functional Analysis +1511.05434 Combinatorics +1511.07465 Phenomenology +1511.07614 Mesoscale and Nanoscale Physics +1511.07894 +1511.08076 Exactly Solvable and Integrable Systems +1512.01939 Numerical Analysis +1512.05374 Commutative Algebra +1512.05738 Phenomenology +1512.05919 Computation and Language +1512.06620 Numerical Analysis +1512.06916 Instrumentation and Detectors +1512.08608 Analysis of PDEs +1512.08689 Logic in Computer Science +1512.08823 Formal Languages and Automata Theory +1601.00011 Theory +1601.00130 Instrumentation and Methods for Astrophysics +1601.00475 Theory +1601.00566 Statistical Finance +1601.00731 Physics Education +1601.00732 Computer Vision and Pattern Recognition +1601.00753 Materials Science +1601.00794 +1601.00896 Pattern Formation and Solitons +1601.00964 Astrophysics of Galaxies +1601.00978 Computer Vision and Pattern Recognition +1601.00984 +1601.00987 Neurons and Cognition +1601.00989 General Mathematics +1601.00990 Algebraic Geometry +1601.00992 Methodology +1601.00998 Computer Vision and Pattern Recognition +1601.01001 Logic in Computer Science +1601.01003 Optimization and Control +1601.01007 Classical Analysis and ODEs +1601.01008 Emerging Technologies +1601.01010 General Topology +1601.01017 +1601.01019 Optimization and Control +1601.01022 Optics +1601.01023 Probability +1601.01024 Analysis of PDEs +1601.01025 Optimization and Control +1601.01027 Mesoscale and Nanoscale Physics +1601.01028 Algebraic Geometry +1601.01030 Soft Condensed Matter +1601.01037 Mesoscale and Nanoscale Physics +1601.01038 Symbolic Computation +1601.01039 Methodology +1601.01043 Materials Science +1601.01045 Statistics Theory +1601.01046 Instrumentation and Detectors +1601.01048 Quantitative Methods +1601.01051 Analysis of PDEs +1601.01052 Adaptation and Self-Organizing Systems +1601.01053 Materials Science +1601.01059 Cosmology and Nongalactic Astrophysics +1601.01061 Experiment +1601.01064 Commutative Algebra +1601.01065 History and Philosophy of Physics +1601.01066 Materials Science +1601.01069 Networking and Internet Architecture +1601.01073 Computation and Language +1601.01077 Numerical Analysis +1601.01079 Cryptography and Security +1601.01083 Numerical Analysis +1601.01085 Computation and Language +1601.01087 Information Theory +1601.01092 Human-Computer Interaction +1601.01093 Probability +1601.01096 Analysis of PDEs +1601.01100 Computer Vision and Pattern Recognition +1601.01101 Representation Theory +1601.01103 Commutative Algebra +1601.01104 Distributed, Parallel, and Cluster Computing +1601.01106 Cosmology and Nongalactic Astrophysics +1601.01108 Probability +1601.01109 Probability +1601.01111 Soft Condensed Matter +1601.01113 Logic in Computer Science +1601.01116 Networking and Internet Architecture +1601.01118 Computational Complexity +1601.01121 Learning +1601.01122 Statistics Theory +1601.01123 Soft Condensed Matter +1601.01128 Computational Finance +1601.01129 Combinatorics +1601.01130 +1601.01131 Statistics Theory +1601.01134 Spectral Theory +1601.01135 Probability +1601.01137 Numerical Analysis +1601.01139 Complex Variables +1601.01142 Learning +1601.01143 Probability +1601.01150 Atomic and Molecular Clusters +1601.01153 Probability +1601.01156 Analysis of PDEs +1601.01157 Learning +1601.01158 Number Theory +1601.01161 Number Theory +1601.01164 Differential Geometry +1601.01165 Instrumentation and Methods for Astrophysics +1601.01170 Statistics Theory +1601.01174 Optimization and Control +1601.01180 Methodology +1601.01183 Information Theory +1601.01184 Instrumentation and Methods for Astrophysics +1601.01186 Statistics Theory +1601.01187 +1601.01191 Social and Information Networks +1601.01192 Dynamical Systems +1601.01193 Atmospheric and Oceanic Physics +1601.01194 Biological Physics +1601.01195 Computation and Language +1601.01197 Discrete Mathematics +1601.01206 Astrophysics of Galaxies +1601.01208 Medical Physics +1601.01210 Algebraic Geometry +1601.01211 Combinatorics +1601.01213 Experiment +1601.01215 +1601.01216 Computer Vision and Pattern Recognition +1601.01217 Symplectic Geometry +1601.01218 Learning +1601.01220 Computers and Society +1601.01224 Mesoscale and Nanoscale Physics +1601.01226 Soft Condensed Matter +1601.01228 Cryptography and Security +1601.01230 Cryptography and Security +1601.01231 Combinatorics +1601.01234 Analysis of PDEs +1601.01237 Fluid Dynamics +1601.01238 Commutative Algebra +1601.01240 Astrophysics of Galaxies +1601.01241 Classical Analysis and ODEs +1601.01242 Numerical Analysis +1601.01243 Analysis of PDEs +1601.01244 Materials Science +1601.01245 Networking and Internet Architecture +1601.01247 Mesoscale and Nanoscale Physics +1601.01253 Biological Physics +1601.01254 Optimization and Control +1601.01256 General Mathematics +1601.01257 +1601.01262 +1601.01263 Dynamical Systems +1601.01265 +1601.01267 Analysis of PDEs +1601.01268 Combinatorics +1601.01270 Mesoscale and Nanoscale Physics +1601.01271 Systems and Control +1601.01274 Symbolic Computation +1601.01275 Mesoscale and Nanoscale Physics +1601.01276 Probability +1601.01277 Mesoscale and Nanoscale Physics +1601.01285 Physics Education +1601.01288 Tissues and Organs +1601.01292 Functional Analysis +1601.01293 Functional Analysis +1601.01298 Computational Geometry +1601.01299 Mesoscale and Nanoscale Physics +1601.01301 Physics Education +1601.01302 +1601.01308 Algebraic Geometry +math-ph/0206008 +math-ph/0210047 +math-ph/0308041 +math-ph/0405006 +math-ph/0412078 +math-ph/0510063 +math/0612194 Combinatorics +nucl-th/9803052 +nucl-th/9904047 +1604.08785 General Physics +physics/0601009 General Physics +0712.4374 Optics +0801.0906 Optics +0811.1438 Optics +0901.0809 Optics +0901.1798 Operator Algebras +0910.4382 Geometric Topology +1101.2711 Digital Libraries +1110.3705 Logic in Computer Science +1111.2236 Number Theory +1210.0567 Differential Geometry +1210.7491 Operator Algebras +1301.3550 Quantum Algebra +1303.5840 Symplectic Geometry +1304.2191 Number Theory +1304.6151 Mesoscale and Nanoscale Physics +1305.2238 Machine Learning +1305.6032 Algebraic Geometry +1307.5814 Algebraic Geometry +1309.3581 +1401.1576 Numerical Analysis +1401.2005 Rings and Algebras +1401.4118 +1403.2034 Cosmology and Nongalactic Astrophysics +1403.6290 Computer Vision and Pattern Recognition +1404.1371 Applications +1404.2985 Cosmology and Nongalactic Astrophysics +1404.3982 Commutative Algebra +1406.0204 Dynamical Systems +1406.3829 +1408.0674 Classical Analysis and ODEs +1408.2631 Operator Algebras +1410.1546 Cosmology and Nongalactic Astrophysics +1410.3152 +1410.8537 Phenomenology +1412.4152 Spectral Theory +1501.00902 Materials Science +1501.00999 Mesoscale and Nanoscale Physics +1501.04294 Theory +1502.02034 Theory +1502.02414 Artificial Intelligence +1502.07672 +1502.07821 +1503.01079 Functional Analysis +1504.00476 Statistics Theory +1504.01872 Probability +1504.04893 Dynamical Systems +1505.00420 Metric Geometry +1505.07049 Number Theory +1506.07613 Computer Vision and Pattern Recognition +1506.08415 Software Engineering +1506.08756 Pattern Formation and Solitons +1507.00642 Dynamical Systems +1507.02715 Analysis of PDEs +1508.01032 +1508.01088 Adaptation and Self-Organizing Systems +1508.01171 Databases +1508.01845 Probability +1508.01875 Phenomenology +1508.05687 Cosmology and Nongalactic Astrophysics +1508.06371 Theory +1509.01075 Information Theory +1509.01144 Pricing of Securities +1509.05547 +1509.06034 Dynamical Systems +1509.07360 Software Engineering +1509.08100 Statistics Theory +1509.08386 Classical Analysis and ODEs +1509.08601 Optimization and Control +1510.03815 Differential Geometry +1510.06195 Analysis of PDEs +1510.06391 +1510.06676 +1510.07596 Classical Analysis and ODEs +1510.08208 Lattice +1510.08504 Analysis of PDEs +1511.00176 Algebraic Geometry +1511.02784 Computer Science and Game Theory +1511.04201 Soft Condensed Matter +1511.04511 Computer Vision and Pattern Recognition +1511.06623 +1511.07209 Multiagent Systems +1511.07440 Materials Science +1511.09263 Learning +1512.00221 +1512.00383 Geometric Topology +1512.00993 Analysis of PDEs +1512.01527 Pricing of Securities +1512.02178 Earth and Planetary Astrophysics +1512.05757 +1601.00562 Dynamical Systems +1601.00931 Numerical Analysis +1601.02532 Statistical Mechanics +1601.03217 Phenomenology +1601.07534 Neurons and Cognition +1601.07704 +1602.00041 +1602.00230 +1602.01192 Methodology +1602.03548 Phenomenology +1602.03691 Mesoscale and Nanoscale Physics +1602.05723 Populations and Evolution +1602.06553 Statistical Mechanics +1602.07152 Experiment +1602.08772 Experiment +1602.09126 Phenomenology +1603.00033 High Energy Astrophysical Phenomena +1603.00741 Functional Analysis +1603.04376 Data Structures and Algorithms +1603.04702 Quantum Gases +1603.06221 Experiment +1603.06322 +1603.06668 Computer Vision and Pattern Recognition +1603.06687 Computation +1603.07188 Computer Vision and Pattern Recognition +1603.07649 Statistical Mechanics +1603.07760 Earth and Planetary Astrophysics +1603.08396 +1604.00037 Strongly Correlated Electrons +1604.00239 Computer Vision and Pattern Recognition +1604.00278 Materials Science +1604.01223 +1604.01325 Computer Vision and Pattern Recognition +1604.02265 Mesoscale and Nanoscale Physics +1604.02745 Theory +1604.03068 Analysis of PDEs +1604.03213 Algebraic Topology +1604.04348 Information Theory +1604.04808 Computer Vision and Pattern Recognition +1604.04876 Computer Science and Game Theory +1604.05984 Materials Science +1604.06110 Mesoscale and Nanoscale Physics +1604.06836 Soft Condensed Matter +1604.07006 Spectral Theory +1605.00917 Cellular Automata and Lattice Gases +1605.01525 Optics +1605.03017 Statistics Theory +1605.03484 Soft Condensed Matter +1605.03948 Theory +1605.04432 Dynamical Systems +1605.05554 +1605.05975 +1605.05979 +1605.06155 Learning +1605.06343 Solar and Stellar Astrophysics +1605.07187 Astrophysics of Galaxies +1605.08230 Solar and Stellar Astrophysics +1605.09188 Astrophysics of Galaxies +1606.00170 Optics +1606.04045 +1606.04073 Information Theory +1606.04654 +1606.05002 Computer Vision and Pattern Recognition +1606.06144 +1606.06986 Phenomenology +1606.07069 Phenomenology +1606.08110 Number Theory +1607.00024 Information Retrieval +1607.00025 Commutative Algebra +1607.00289 Differential Geometry +1607.00920 Mesoscale and Nanoscale Physics +1607.01526 Astrophysics of Galaxies +1607.01567 Optics +1607.02745 Methodology +1607.02944 Physics Education +1607.04450 Networking and Internet Architecture +1607.05022 Dynamical Systems +1607.05210 Numerical Analysis +1607.06830 Robotics +1607.06865 Data Structures and Algorithms +1607.07172 Algebraic Geometry +1607.07257 Earth and Planetary Astrophysics +1607.07280 Theory +1607.07322 Analysis of PDEs +1607.07749 General Mathematics +1607.07883 +1607.08032 Differential Geometry +1607.08145 Materials Science +1607.08232 High Energy Astrophysical Phenomena +1607.08233 Fluid Dynamics +1607.08235 +1607.08236 Computer Vision and Pattern Recognition +1607.08247 Astrophysics of Galaxies +1607.08252 Phenomenology +1607.08255 Methodology +1607.08256 +1607.08258 Combinatorics +1607.08259 Data Analysis, Statistics and Probability +1607.08263 Soft Condensed Matter +1607.08267 Numerical Analysis +1607.08270 Geometric Topology +1607.08272 Number Theory +1607.08273 Software Engineering +1607.08274 Methodology +1607.08276 Rings and Algebras +1607.08277 Cryptography and Security +1607.08278 Probability +1607.08280 Numerical Analysis +1607.08282 +1607.08283 Number Theory +1607.08285 Complex Variables +1607.08287 Risk Management +1607.08288 Methodology +1607.08289 Artificial Intelligence +1607.08290 Materials Science +1607.08291 Combinatorics +1607.08294 Algebraic Geometry +1607.08297 Information Theory +1607.08299 Probability +1607.08301 Phenomenology +1607.08302 Classical Analysis and ODEs +1607.08303 Group Theory +1607.08310 Machine Learning +1607.08312 Combinatorics +1607.08314 Classical Analysis and ODEs +1607.08315 Optics +1607.08319 Number Theory +1607.08320 Optimization and Control +1607.08321 Fluid Dynamics +1607.08322 Information Theory +1607.08325 Distributed, Parallel, and Cluster Computing +1607.08326 Algebraic Geometry +1607.08338 Optimization and Control +1607.08340 Analysis of PDEs +1607.08342 Data Structures and Algorithms +1607.08343 Solar and Stellar Astrophysics +1607.08345 Analysis of PDEs +1607.08349 Phenomenology +1607.08350 Computational Physics +1607.08351 Instrumentation and Methods for Astrophysics +1607.08352 Distributed, Parallel, and Cluster Computing +1607.08356 +1607.08358 +1607.08359 +1607.08360 Theory +1607.08364 Astrophysics of Galaxies +1607.08365 Classical Analysis and ODEs +1607.08366 Computer Vision and Pattern Recognition +1607.08367 Numerical Analysis +1607.08368 Computer Vision and Pattern Recognition +1607.08369 Logic +1607.08374 Phenomenology +1607.08376 Numerical Analysis +1607.08380 Materials Science +1607.08381 Computer Vision and Pattern Recognition +1607.08382 Disordered Systems and Neural Networks +1607.08383 Algebraic Geometry +1607.08384 Astrophysics of Galaxies +1607.08390 Classical Analysis and ODEs +1607.08391 Other Condensed Matter +1607.08392 Complex Variables +1607.08395 Analysis of PDEs +1607.08398 Combinatorics +1607.08400 Learning +1607.08401 Cryptography and Security +1607.08402 Differential Geometry +1607.08406 Optimization and Control +1607.08408 Exactly Solvable and Integrable Systems +1607.08409 Fluid Dynamics +1607.08412 Solar and Stellar Astrophysics +1607.08415 Combinatorics +1607.08416 Superconductivity +1607.08417 Instrumentation and Methods for Astrophysics +1607.08418 Number Theory +1607.08419 Commutative Algebra +1607.08420 Numerical Analysis +1607.08421 Computer Vision and Pattern Recognition +1607.08423 Analysis of PDEs +1607.08424 Instrumentation and Methods for Astrophysics +1607.08426 Classical Analysis and ODEs +1607.08428 Differential Geometry +1607.08429 Algebraic Geometry +1607.08433 Information Theory +1607.08434 Computer Vision and Pattern Recognition +1607.08437 Algebraic Geometry +1607.08438 Computer Vision and Pattern Recognition +1607.08441 Dynamical Systems +1607.08442 Exactly Solvable and Integrable Systems +1607.08443 Systems and Control +1607.08444 Genomics +1607.08445 Numerical Analysis +1607.08448 Phenomenology +1607.08450 Performance +1607.08456 Machine Learning +1607.08458 Applications +1607.08461 Phenomenology +1607.08463 Differential Geometry +1607.08464 Dynamical Systems +1607.08466 +1607.08468 Strongly Correlated Electrons +1607.08469 Atmospheric and Oceanic Physics +1607.08470 Analysis of PDEs +1607.08472 Social and Information Networks +1607.08475 Fluid Dynamics +1607.08477 Computer Vision and Pattern Recognition +1607.08479 Digital Libraries +1607.08480 Computer Science and Game Theory +1607.08482 Sound +1607.08483 +1607.08486 Algebraic Geometry +1607.08488 Functional Analysis +1607.08495 Representation Theory +1607.08496 Combinatorics +1607.08497 Social and Information Networks +1607.08500 Differential Geometry +1607.08501 Networking and Internet Architecture +1607.08502 Numerical Analysis +1607.08503 Differential Geometry +1607.08507 Biomolecules +1607.08508 Cryptography and Security +1607.08511 Differential Geometry +1607.08514 Probability +1607.08522 Phenomenology +1607.08523 Hardware Architecture +1607.08525 Robotics +1607.08535 +1607.08536 Analysis of PDEs +1607.08537 +1607.08543 Solar and Stellar Astrophysics +1607.08546 Phenomenology +1607.08547 Information Theory +1607.08551 Cosmology and Nongalactic Astrophysics +1607.08553 Mesoscale and Nanoscale Physics +1607.08555 Differential Geometry +1607.08558 Differential Geometry +1607.08559 Earth and Planetary Astrophysics +1607.08560 +1607.08562 Soft Condensed Matter +1607.08563 Quantum Algebra +1607.08567 Operator Algebras +1607.08569 Computer Vision and Pattern Recognition +1607.08570 Emerging Technologies +1607.08578 Distributed, Parallel, and Cluster Computing +1607.08579 Numerical Analysis +1607.08584 Computer Vision and Pattern Recognition +1607.08589 Quantum Gases +1607.08590 Algebraic Geometry +1607.08592 Computation and Language +1607.08593 Theory +1607.08597 Physics and Society +1607.08601 Machine Learning +physics/0605021 Optics +physics/0610269 Optics +0704.0361 Information Theory +0704.2236 +0704.2259 Information Theory +0704.2353 Information Theory +0705.0543 Information Theory +0705.0999 Information Theory +0705.1787 Information Theory +0705.1788 Information Theory +0706.3752 Information Theory +0706.3753 Information Theory +0706.3846 Information Theory +0707.0050 Information Theory +0707.0463 Information Theory +0707.0476 Information Theory +0707.0500 Information Theory +0707.1063 Information Theory +0707.1241 Information Theory +0707.2436 Other Computer Science +0707.2926 Information Theory +0707.4311 Information Theory +0708.2414 Computers and Society +0710.0694 +0710.1182 Information Theory +0710.1275 Information Theory +0710.4244 +0710.5830 Networking and Internet Architecture +0710.5887 Chemical Physics +0711.1273 Networking and Internet Architecture +0711.3099 Networking and Internet Architecture +0711.3152 Information Theory +0711.4745 Materials Science +0712.0744 Multiagent Systems +0712.1465 Combinatorics +0712.1987 Information Theory +0712.2113 Cryptography and Security +0712.2189 Plasma Physics +0712.2231 Cryptography and Security +0712.2235 Cryptography and Security +0712.4059 Information Theory +0712.4075 Information Theory +0712.4115 +0712.4153 Neural and Evolutionary Computing +0712.4169 Networking and Internet Architecture +0712.4170 Networking and Internet Architecture +0712.4172 Networking and Internet Architecture +0712.4173 Networking and Internet Architecture +0712.4174 Cryptography and Security +0712.4177 Networking and Internet Architecture +0712.4178 Cryptography and Security +0802.4130 Information Theory +0803.0952 Networking and Internet Architecture +0803.2365 Operating Systems +0803.2770 +0803.3448 Cryptography and Security +0804.3254 Functional Analysis +0804.3361 Artificial Intelligence +0804.4455 Information Theory +0805.2812 Information Theory +0806.0905 Information Theory +0806.0909 Information Theory +0806.1659 Information Theory +0806.2572 +0806.4468 Information Theory +0806.4773 Information Theory +0807.0245 Information Theory +0807.2728 Information Theory +0807.3913 Information Theory +0807.3917 Information Theory +0807.4548 Information Theory +0808.0036 Information Theory +0808.0037 Information Theory +0808.1495 Information Theory +0808.2059 Information Theory +0808.2089 Information Theory +0809.0853 Statistics Theory +0809.1344 Information Theory +0809.4019 Information Theory +0809.4058 Information Theory +0809.5140 Optics +0809.5182 Information Theory +0810.0883 Information Theory +0810.1973 Information Theory +0810.2781 Information Theory +0810.3869 Networking and Internet Architecture +0810.4059 Information Theory +0810.5770 Information Theory +0811.0726 Information Theory +0811.3475 Information Theory +0812.0621 Information Theory +0812.1203 Information Theory +0812.1857 Information Theory +0812.2409 Information Theory +0812.3124 Information Theory +0812.3232 Information Theory +0812.3742 Information Theory +0812.4884 Superconductivity +0812.4937 Information Theory +0901.2748 Classical Physics +0901.3987 Information Theory +0901.4467 Information Theory +0901.4642 Networking and Internet Architecture +0902.1996 Information Theory +0902.2559 Information Theory +0902.3026 Digital Libraries +0902.4437 Optimization and Control +0903.0061 Information Theory +0903.0445 Information Theory +0903.0802 Cryptography and Security +0903.4594 Information Theory +0904.0037 Information Theory +0904.1150 Information Theory +0904.1281 Information Theory +0904.2441 Information Theory +0904.4343 Information Theory +0905.0838 Information Theory +0905.2718 Information Theory +0905.3951 Distributed, Parallel, and Cluster Computing +0905.4023 Information Theory +0906.0037 Information Theory +0906.0695 Information Theory +0906.1603 Information Theory +0906.1835 Information Theory +0906.2819 Information Theory +0906.2895 Learning +0906.3200 Information Theory +0906.3667 Information Theory +0906.5394 Information Theory +0907.1888 Information Theory +0907.2222 Networking and Internet Architecture +0907.2455 Information Theory +0907.4885 Information Theory +0907.4919 Cryptography and Security +0907.5024 Information Theory +0908.0497 Networking and Internet Architecture +0908.1198 Pattern Formation and Solitons +0908.1562 Instrumentation and Detectors +0908.1676 Information Theory +0908.2282 Information Theory +0908.2397 Information Theory +0908.3083 Cryptography and Security +0908.3098 Information Theory +0908.4265 Information Theory +0909.1876 Hardware Architecture +0909.5119 Information Theory +0910.0555 Information Theory +0911.1054 Information Theory +0912.2820 Information Theory +0912.3264 Information Theory +0912.3281 Optimization and Control +0912.3441 Networking and Internet Architecture +0912.3907 Information Theory +0912.5391 Cryptography and Security +0912.5393 Cryptography and Security +1001.2195 Artificial Intelligence +1001.3919 Software Engineering +1001.5113 Information Theory +1002.0382 Computer Vision and Pattern Recognition +1002.1559 Information Theory +1002.3492 Distributed, Parallel, and Cluster Computing +1003.0415 Information Theory +1003.0488 Information Theory +1003.1168 Distributed, Parallel, and Cluster Computing +1003.4238 Physics Education +1003.5653 Optimization and Control +1004.0727 Information Theory +1004.4020 Information Theory +1004.5274 Information Theory +1005.3004 Robotics +1005.3143 Cryptography and Security +1005.3198 Cryptography and Security +1006.0109 Information Theory +1006.0160 Optimization and Control +1006.0165 Optimization and Control +1006.1129 Learning +1006.1772 Information Theory +1006.2001 Accelerator Physics +1006.2006 Information Theory +1006.2996 Information Theory +1006.4406 Networking and Internet Architecture +1006.5166 Information Theory +1006.5686 Information Theory +1007.0463 Solar and Stellar Astrophysics +1007.0486 Instrumentation and Detectors +1007.3662 Statistics Theory +1007.4002 Information Theory +1008.1766 Information Theory +1008.1892 Instrumentation and Methods for Astrophysics +1008.2571 Information Theory +1008.3196 Information Theory +1008.3705 Networking and Internet Architecture +1008.3813 Information Theory +1008.4463 Computer Science and Game Theory +1008.5117 Mesoscale and Nanoscale Physics +1008.5133 Learning +1009.1312 Statistics Theory +1009.2221 Information Theory +1009.2275 Cryptography and Security +1009.3041 Information Theory +1009.3052 Information Theory +1009.3083 Information Theory +1009.3090 Information Theory +1009.3186 Information Theory +1010.3956 Cryptography and Security +1011.1261 Information Theory +1011.1607 Information Theory +1011.2809 Information Theory +1011.3101 Cryptography and Security +1011.3272 Information Theory +1011.3594 Networking and Internet Architecture +1011.3717 Information Theory +1011.3754 Information Theory +1011.3761 Information Theory +1011.5033 Instrumentation and Detectors +1011.6639 Information Theory +1012.2901 Instrumentation and Methods for Astrophysics +1012.3189 Data Structures and Algorithms +1012.3198 Information Theory +1012.3674 Complex Variables +1012.3675 Instrumentation and Detectors +1012.4113 Networking and Internet Architecture +1012.4688 Networking and Internet Architecture +1012.4928 Learning +1101.4712 Mesoscale and Nanoscale Physics +1101.5919 Machine Learning +1102.0603 Robotics +1102.1963 +1102.2516 Information Theory +1102.3751 Information Theory +1102.4411 Information Theory +1102.4423 Distributed, Parallel, and Cluster Computing +1102.5314 Information Theory +1103.2177 Information Theory +1103.5447 Methodology +1104.0430 Information Theory +1104.3544 Sound +1104.3662 Information Theory +1105.1459 Quantum Gases +1105.1562 Information Theory +1105.1973 Hardware Architecture +1105.2264 Databases +1105.6009 Information Theory +1105.6065 Networking and Internet Architecture +1106.0541 Information Theory +1106.3616 Neurons and Cognition +1107.1345 Optimization and Control +1107.1752 Optimization and Control +1107.1754 Methodology +1107.2973 +1107.3313 Information Theory +1107.3602 Information Theory +1107.4021 Information Theory +1107.4922 Performance +1107.6004 Information Theory +1108.1572 Information Theory +1108.2234 Information Theory +1108.2237 Information Theory +1108.2829 Information Theory +1108.4152 Information Theory +1108.4172 Cryptography and Security +1108.4475 Information Theory +1108.4696 Instrumentation and Methods for Astrophysics +1108.4709 Information Theory +1108.5316 Optimization and Control +1108.5838 Applications +1109.5396 Information Theory +1110.0194 Information Theory +1110.0517 Social and Information Networks +1110.3267 Information Theory +1110.5144 Computational Finance +1111.2702 Instrumentation and Methods for Astrophysics +1111.4626 Information Theory +1111.6682 Information Theory +1111.7249 Instrumentation and Detectors +1112.0448 Instrumentation and Detectors +1112.1336 Distributed, Parallel, and Cluster Computing +1112.1762 Information Theory +1112.2842 Networking and Internet Architecture +1112.3516 Networking and Internet Architecture +1112.5995 Information Theory +1201.0737 Information Theory +1201.1935 Information Theory +1201.2211 +1201.4522 Distributed, Parallel, and Cluster Computing +1201.6575 +1202.0206 Information Theory +1202.0460 Information Theory +1202.0463 Information Theory +1202.0534 Information Theory +1202.1144 Information Theory +1202.2998 Information Theory +1202.3505 Data Structures and Algorithms +1202.3669 Distributed, Parallel, and Cluster Computing +1202.4720 Systems and Control +1202.6134 Distributed, Parallel, and Cluster Computing +1203.0732 Cryptography and Security +1203.2730 Networking and Internet Architecture +1203.2738 Networking and Internet Architecture +1203.4598 Learning +1203.4693 Information Theory +1203.5395 Information Theory +1204.0034 Networking and Internet Architecture +1204.1091 Information Theory +1204.1632 Methodology +1204.1633 Methodology +1204.2214 Multimedia +1204.2274 Information Theory +1204.2435 Information Theory +1204.4135 Optimization and Control +1204.5320 Information Theory +1204.5347 Information Theory +1205.1720 Systems and Control +1205.2903 Methodology +1205.3225 Information Theory +1205.4206 Representation Theory +1205.5849 Information Theory +1205.6248 Statistics Theory +1205.6361 Software Engineering +1206.0992 Distributed, Parallel, and Cluster Computing +1206.1634 Networking and Internet Architecture +1206.2245 Data Analysis, Statistics and Probability +1206.3582 Optimization and Control +1206.4370 Information Theory +1206.4723 Information Theory +1206.5919 Information Theory +1206.6006 Information Theory +1206.6145 Information Theory +1207.0023 Systems and Control +1207.1345 Information Theory +1207.1469 Performance +1207.2137 Information Theory +1207.3146 Information Theory +1207.3285 Neural and Evolutionary Computing +1207.3448 Differential Geometry +1207.5206 Information Theory +1207.5555 Information Theory +1207.5853 Computer Science and Game Theory +1207.6706 Information Theory +1207.6751 Networking and Internet Architecture +1208.1198 Algebraic Geometry +1208.1350 Other Computer Science +1208.1977 Information Theory +1208.2043 Machine Learning +1208.3206 Instrumentation and Methods for Astrophysics +1208.3718 Multimedia +1208.3723 Computer Vision and Pattern Recognition +1208.4415 Information Theory +1208.5604 Optimization and Control +1208.6308 Networking and Internet Architecture +1209.0599 Dynamical Systems +1209.3760 Representation Theory +1209.4238 Information Theory +1209.4277 Computers and Society +1209.5513 Information Theory +1210.3077 Distributed, Parallel, and Cluster Computing +1210.3552 Networking and Internet Architecture +1210.4211 Social and Information Networks +1210.6168 Information Theory +1210.6673 Information Theory +1210.8062 Algebraic Geometry +1210.8145 General Physics +1211.1819 Information Theory +1211.3719 Networking and Internet Architecture +1211.3828 Information Theory +1211.4264 Computer Vision and Pattern Recognition +1211.4940 Information Theory +1211.7180 Social and Information Networks +1212.0791 Representation Theory +1212.2831 Information Theory +1212.2865 Information Theory +1212.4034 Information Theory +1212.4626 Information Theory +1301.0965 Networking and Internet Architecture +1301.1415 Information Theory +1301.2383 +1301.6471 Information Theory +1301.7630 Information Theory +1301.7657 Information Theory +1302.0756 Information Theory +1302.1459 Information Theory +1302.2167 Information Theory +1302.2178 Information Theory +1302.2185 Information Theory +1302.2330 Information Theory +1302.3114 +1302.4201 Cryptography and Security +1302.4516 Information Theory +1302.5280 Information Theory +1302.6123 Cryptography and Security +1302.6646 Networking and Internet Architecture +1302.7195 Computer Science and Game Theory +1303.0529 Information Theory +1303.0606 +1303.1201 Information Theory +1303.1205 Numerical Analysis +1303.1217 Machine Learning +1303.1778 Networking and Internet Architecture +1303.1858 Information Theory +1303.2447 Networking and Internet Architecture +1303.2506 Learning +1303.2552 Other Computer Science +1303.3626 Distributed, Parallel, and Cluster Computing +1303.3796 Networking and Internet Architecture +1303.4370 Information Theory +1303.4823 Networking and Internet Architecture +1303.4970 Networking and Internet Architecture +1303.5947 Information Theory +1303.6260 Networking and Internet Architecture +1303.6323 Networking and Internet Architecture +1304.0840 Computer Vision and Pattern Recognition +1304.3996 Computer Science and Game Theory +1304.6157 Information Theory +1304.6159 Information Theory +1304.6690 Information Theory +1305.0356 Networking and Internet Architecture +1305.0359 Networking and Internet Architecture +1305.0585 Systems and Control +1305.0983 Systems and Control +1305.2460 Information Theory +1305.2545 Data Structures and Algorithms +1305.3422 Information Theory +1305.3437 Information Theory +1305.3959 Information Theory +1305.4840 Information Theory +1305.5832 Superconductivity +1305.7485 Cryptography and Security +1306.4052 Applications +1306.5268 Social and Information Networks +1307.0067 Information Theory +1307.0444 General Finance +1307.1630 Information Theory +1307.2350 Systems and Control +1307.2421 Information Theory +1307.3121 Information Theory +1307.3544 Information Theory +1307.4318 Physics and Society +1307.4388 Information Theory +1307.4798 Social and Information Networks +1307.4799 Information Theory +1307.4815 Information Theory +1307.5549 Information Theory +1307.6609 Information Theory +1307.7451 Networking and Internet Architecture +1307.7822 Cryptography and Security +1308.0037 Systems and Control +1308.1839 Multimedia +1308.1847 Computation and Language +1308.2401 Information Theory +1308.2565 Social and Information Networks +1308.2592 Systems and Control +1308.3615 Distributed, Parallel, and Cluster Computing +1308.3657 Computers and Society +1308.3662 Social and Information Networks +1308.4948 Plasma Physics +1308.6750 Information Theory +1309.0316 Multimedia +1309.0865 Quantum Algebra +1309.0898 Information Theory +1309.1518 Information Theory +1309.1585 Information Theory +1309.2117 Instrumentation and Detectors +1309.2639 Instrumentation and Methods for Astrophysics +1309.3841 Networking and Internet Architecture +1309.3908 Social and Information Networks +1309.3997 Networking and Internet Architecture +1309.4026 Information Theory +1309.4297 Solar and Stellar Astrophysics +1309.6027 Information Theory +1309.6690 Information Theory +1309.7163 Hardware Architecture +1310.1976 Instrumentation and Methods for Astrophysics +1310.2028 Information Theory +1310.6511 Information Theory +1310.7648 Information Theory +1310.7795 Learning +1311.0404 Information Theory +1311.1187 Information Theory +1311.1329 Information Theory +1311.1991 Atomic Physics +1311.2880 Data Structures and Algorithms +1311.2897 Systems and Control +1311.3979 Robotics +1311.5780 Representation Theory +1311.5917 Physics and Society +1311.5921 Information Theory +1311.6635 Information Theory +1311.7170 Optimization and Control +1311.7302 Information Theory +1312.0825 Networking and Internet Architecture +1312.1024 Information Theory +1312.1492 Computational Geometry +1312.2135 Information Theory +1312.2688 Information Theory +1312.3368 Information Theory +1312.3555 Plasma Physics +1312.3658 Solar and Stellar Astrophysics +1312.3990 Computer Vision and Pattern Recognition +1312.4004 Phenomenology +1312.4074 Computer Vision and Pattern Recognition +1312.4077 Networking and Internet Architecture +1312.4659 Computer Vision and Pattern Recognition +1312.5276 Probability +1312.5349 Systems and Control +1312.5371 Chaotic Dynamics +1312.6748 Optimization and Control +1312.6916 Computer Science and Game Theory +1312.6918 Information Theory +1312.7198 Information Theory +1312.7663 Dynamical Systems +1401.0186 Optimization and Control +1401.1711 Information Theory +1401.1781 Functional Analysis +1401.1888 Trading and Market Microstructure +1401.1891 Trading and Market Microstructure +1401.1892 Trading and Market Microstructure +1401.2952 Information Theory +1401.3674 Multimedia +1401.4907 Information Theory +1401.5528 Networking and Internet Architecture +1401.6846 Information Theory +1401.7032 Operator Algebras +1402.0698 Computers and Society +1402.0808 Neural and Evolutionary Computing +1402.1299 +1402.2231 Networking and Internet Architecture +1402.2699 Cryptography and Security +1402.2783 Instrumentation and Methods for Astrophysics +1402.3352 Systems and Control +1402.3354 Optimization and Control +1402.4109 Applications +1402.4159 Systems and Control +1402.5726 Information Theory +1402.6441 Information Theory +1402.6457 Networking and Internet Architecture +1402.6474 Networking and Internet Architecture +1402.6633 Optimization and Control +1402.6693 Optimization and Control +1402.6720 Applications +1402.7180 Instrumentation and Methods for Astrophysics +1402.7292 Networking and Internet Architecture +1403.0339 Other Computer Science +1403.0957 Information Theory +1403.1596 Information Theory +1403.1615 Information Theory +1403.1647 Representation Theory +1403.2239 Information Theory +1403.3583 Information Theory +1403.3991 Information Theory +1403.4109 Systems and Control +1403.4144 Networking and Internet Architecture +1403.4182 Information Theory +1403.4647 Optimization and Control +1403.4669 Information Theory +1403.7720 Information Theory +1403.7883 Information Theory +1404.0123 Networking and Internet Architecture +1404.0127 Networking and Internet Architecture +1404.0273 Information Theory +1404.1622 Networking and Internet Architecture +1404.2074 Information Theory +1404.2086 Computer Vision and Pattern Recognition +1404.3200 Networking and Internet Architecture +1404.3329 Computational Engineering, Finance, and Science +1404.5605 Information Theory +1404.7055 Populations and Evolution +1404.7604 Information Theory +1404.7665 Optimization and Control +1404.7688 Distributed, Parallel, and Cluster Computing +1405.0766 Optimization and Control +1405.0814 Optimization and Control +1405.0921 Computer Vision and Pattern Recognition +1405.1153 Information Theory +1405.1623 Information Theory +1405.1782 Information Theory +1405.2387 Information Theory +1405.2735 Networking and Internet Architecture +1405.2760 Networking and Internet Architecture +1405.3479 Representation Theory +1405.3941 Networking and Internet Architecture +1405.4201 Computational Engineering, Finance, and Science +1405.4819 Information Theory +1405.5641 Computer Science and Game Theory +1405.5966 Information Theory +1405.6636 Information Theory +1405.6773 Networking and Internet Architecture +1405.6884 Methodology +1405.7812 Information Theory +1406.0928 Networking and Internet Architecture +1406.3103 Information Theory +1406.3147 Networking and Internet Architecture +1406.3164 Information Theory +1406.3380 Geometric Topology +1406.4399 Networking and Internet Architecture +1406.4729 Computer Vision and Pattern Recognition +1406.5706 Statistics Theory +1406.5988 Information Theory +1406.7435 Information Theory +1406.7496 Information Theory +1407.0765 Computer Vision and Pattern Recognition +1407.0848 Information Theory +1407.1540 Information Retrieval +1407.1556 Computer Science and Game Theory +1407.1988 Instrumentation and Methods for Astrophysics +1407.2791 Information Theory +1407.3435 Networking and Internet Architecture +1407.4515 Information Theory +1407.5711 Information Theory +1407.6481 Information Theory +1407.6923 Quantitative Methods +1407.6965 Networking and Internet Architecture +1408.0099 +1408.0240 Analysis of PDEs +1408.0340 +1408.0457 Astrophysics of Galaxies +1408.0532 Systems and Control +1408.0540 Information Theory +1408.1106 Optics +1408.1214 Earth and Planetary Astrophysics +1408.1788 Information Theory +1408.1792 +1408.1899 Atomic and Molecular Clusters +1408.3375 Numerical Analysis +1408.3653 Information Theory +1408.3827 Materials Science +1408.3868 Chaotic Dynamics +1408.4849 Computational Engineering, Finance, and Science +1408.4862 Information Theory +1408.5190 +1408.6331 Lattice +1408.6867 +1409.0112 Information Theory +1409.0177 Methodology +1409.2027 Applications +1409.2095 Information Theory +1409.2943 Astrophysics of Galaxies +1409.3036 Combinatorics +1409.3107 Information Theory +1409.3108 Programming Languages +1409.4609 Group Theory +1409.4822 Computational Engineering, Finance, and Science +1409.4826 Computational Engineering, Finance, and Science +1409.4829 Computational Engineering, Finance, and Science +1409.4831 Computational Engineering, Finance, and Science +1409.5140 Information Theory +1409.5162 Information Theory +1409.5530 Applications +1409.5532 Information Theory +1409.6226 Robotics +1409.6808 Information Theory +1409.6828 Systems and Control +1409.7286 Distributed, Parallel, and Cluster Computing +1409.8125 Information Theory +1409.8650 Information Theory +1410.2609 Information Theory +1410.2620 Cryptography and Security +1410.2707 Computational Engineering, Finance, and Science +1410.3015 Statistical Mechanics +1410.7670 Human-Computer Interaction +1410.7936 +1411.0228 Information Theory +1411.0282 Machine Learning +1411.0435 Information Theory +1411.1102 Robotics +1411.1161 Information Theory +1411.1741 General Physics +1411.2316 Computer Vision and Pattern Recognition +1411.3525 Robotics +1411.3589 +1411.3841 Systems and Control +1411.4214 Emerging Technologies +1411.5415 Networking and Internet Architecture +1411.5461 Information Theory +1411.5712 Computer Science and Game Theory +1411.5739 Data Structures and Algorithms +1411.7121 Information Theory +1411.8003 Learning +1412.1283 Computer Vision and Pattern Recognition +1412.1873 Optics +1412.3788 Information Theory +1412.4840 Computer Science and Game Theory +1412.4957 Networking and Internet Architecture +1412.6030 Phenomenology +1412.6464 Neural and Evolutionary Computing +1412.6586 Machine Learning +1412.6747 Information Theory +1412.6792 Optimization and Control +1412.7070 Classical Analysis and ODEs +1412.7642 +1412.8648 Emerging Technologies +1412.8689 Mesoscale and Nanoscale Physics +1501.00077 Information Theory +1501.00078 Networking and Internet Architecture +1501.01496 Networking and Internet Architecture +1501.02889 Information Theory +1501.03393 +1501.04310 Information Theory +1501.05521 Instrumentation and Detectors +1501.05970 Computer Vision and Pattern Recognition +1501.06241 Machine Learning +1501.06629 Applications +1502.00734 Networking and Internet Architecture +1502.01032 Computer Vision and Pattern Recognition +1502.01539 Databases +1502.01708 Networking and Internet Architecture +1502.01908 Machine Learning +1502.01980 Information Theory +1502.03038 Computers and Society +1502.03057 Space Physics +1502.03469 Networking and Internet Architecture +1502.03666 Information Theory +1502.04117 Information Theory +1502.04165 Information Theory +1502.04186 Networking and Internet Architecture +1502.04344 Information Theory +1502.04458 Combinatorics +1502.04649 Information Theory +1502.06004 Optimization and Control +1502.06076 Computer Vision and Pattern Recognition +1502.06080 Computer Vision and Pattern Recognition +1502.06105 Computer Vision and Pattern Recognition +1502.06189 Machine Learning +1502.06922 Computation and Language +1502.07226 Medical Physics +1502.07456 Instrumentation and Detectors +1503.00237 Multiagent Systems +1503.00759 Machine Learning +1503.01443 Symplectic Geometry +1503.01847 Neural and Evolutionary Computing +1503.02563 Computer Science and Game Theory +1503.02714 Atmospheric and Oceanic Physics +1503.03832 Computer Vision and Pattern Recognition +1503.04877 Social and Information Networks +1503.05601 Optimization and Control +1503.06078 Neurons and Cognition +1503.06324 +1503.06671 Phenomenology +1503.06933 Optimization and Control +1503.06959 Computer Vision and Pattern Recognition +1503.06966 Information Theory +1503.07296 Mesoscale and Nanoscale Physics +1503.07511 Optimization and Control +1503.08244 Systems and Control +1503.08570 Distributed, Parallel, and Cluster Computing +1503.08758 Information Theory +1503.08771 Social and Information Networks +1503.08778 Information Theory +1503.08889 Information Theory +1504.00082 Information Theory +1504.01101 Information Theory +1504.01140 Information Theory +1504.01158 Information Theory +1504.01185 Networking and Internet Architecture +1504.01192 Optics +1504.01320 Information Theory +1504.02168 Information Theory +1504.02307 Information Theory +1504.02366 Numerical Analysis +1504.02954 Networking and Internet Architecture +1504.02980 Information Theory +1504.03516 Information Theory +1504.03536 Networking and Internet Architecture +1504.03542 Networking and Internet Architecture +1504.03573 Computer Vision and Pattern Recognition +1504.03582 Optimization and Control +1504.03725 Information Theory +1504.05059 Machine Learning +1504.05498 Information Theory +1504.05628 +1504.07154 Information Theory +1505.00947 Information Theory +1505.00953 Information Theory +1505.02211 Hardware Architecture +1505.02286 +1505.02871 Optimization and Control +1505.02896 Information Theory +1505.03122 Number Theory +1505.03451 Statistics Theory +1505.06562 Systems and Control +1505.06685 Information Theory +1505.07283 Information Theory +1506.00722 Optimization and Control +1506.01058 Networking and Internet Architecture +1506.01966 Information Theory +1506.03364 Logic +1506.04583 Information Theory +1506.06040 Methodology +1506.07615 Information Theory +1506.08291 Information Theory +1506.08865 Computers and Society +1506.08879 Information Theory +1507.02257 Complex Variables +1507.04401 Robotics +1507.05106 Data Structures and Algorithms +1507.05144 Systems and Control +1507.05154 Systems and Control +1507.05812 Networking and Internet Architecture +1507.06239 Systems and Control +1507.06353 Cryptography and Security +1507.06357 Optimization and Control +1507.06838 Computer Vision and Pattern Recognition +1507.07091 Information Theory +1508.00064 Differential Geometry +1508.00817 Medical Physics +1508.01161 Information Theory +1508.01182 Distributed, Parallel, and Cluster Computing +1508.01572 Distributed, Parallel, and Cluster Computing +1508.02124 Rings and Algebras +1508.02324 Information Theory +1508.03961 Systems and Control +1508.04823 Differential Geometry +1508.05896 Networking and Internet Architecture +1508.07056 Geometric Topology +1508.07333 Information Theory +1508.07343 Networking and Internet Architecture +1508.07839 +1509.00836 Information Theory +1509.01635 Mesoscale and Nanoscale Physics +1509.01668 Complex Variables +1509.01931 Information Theory +1509.02289 Software Engineering +1509.02606 Complex Variables +1509.02655 Information Theory +1509.02768 Information Theory +1509.05856 Information Theory +1509.06029 Information Theory +1509.06089 Information Theory +1509.08961 Dynamical Systems +1510.00060 Combinatorics +1510.00609 Information Theory +1510.00625 +1510.00629 Geometric Topology +1510.00844 Distributed, Parallel, and Cluster Computing +1510.01812 Information Theory +1510.04839 Social and Information Networks +1510.04892 Classical Physics +1510.06736 Symplectic Geometry +1510.06754 Mesoscale and Nanoscale Physics +1510.06826 Information Theory +1510.06827 Information Theory +1510.06828 Information Theory +1510.07917 Computer Science and Game Theory +1510.07932 Networking and Internet Architecture +1510.07970 Networking and Internet Architecture +1510.08496 Networking and Internet Architecture +1511.00743 Analysis of PDEs +1511.02152 Information Theory +1511.02259 Information Theory +1511.02279 Systems and Control +1511.03143 Instrumentation and Detectors +1511.03334 Methodology +1511.04110 Neural and Evolutionary Computing +1511.04192 Computer Vision and Pattern Recognition +1511.04863 Mathematical Finance +1511.05011 Probability +1511.05604 Computation +1511.06061 Networking and Internet Architecture +1511.06911 Computer Vision and Pattern Recognition +1511.06938 Information Theory +1511.06971 Information Theory +1511.08474 Networking and Internet Architecture +1511.08729 +1511.09038 Number Theory +1512.00259 Networking and Internet Architecture +1512.01065 Methodology +1512.01479 Cryptography and Security +1512.01516 Information Theory +1512.01585 Information Theory +1512.02684 Networking and Internet Architecture +1512.03423 Computers and Society +1512.03497 Networking and Internet Architecture +1512.04479 Combinatorics +1512.04602 Networking and Internet Architecture +1512.05272 Systems and Control +1512.05732 Information Theory +1512.06413 Combinatorics +1512.06528 Information Theory +1512.07240 +1512.07839 Learning +1512.08079 +1512.08632 +1601.00040 +1601.00329 Cosmology and Nongalactic Astrophysics +1601.00418 Theory +1601.00428 Networking and Internet Architecture +1601.00445 Information Theory +1601.01082 Statistics Theory +1601.02391 Information Theory +1601.03505 Networking and Internet Architecture +1601.03613 Information Theory +1601.03728 +1601.04014 Materials Science +1601.04217 Networking and Internet Architecture +1601.04583 Systems and Control +1601.04797 Networking and Internet Architecture +1601.04829 Information Theory +1601.05529 High Energy Astrophysical Phenomena +1601.05533 Information Theory +1601.06704 Information Theory +1601.06705 Information Theory +1601.07851 Data Analysis, Statistics and Probability +1601.07865 Information Theory +1602.00661 Social and Information Networks +1602.00721 Probability +1602.01190 Theory +1602.01327 Information Theory +1602.01633 Experiment +1602.01958 Systems and Control +1602.02685 Learning +1602.03641 Numerical Analysis +1602.04493 Cryptography and Security +1602.05671 Information Theory +1602.05702 Sound +1602.06442 Robotics +1602.06888 Distributed, Parallel, and Cluster Computing +1602.07024 Cryptography and Security +1602.07458 +1602.07533 Information Theory +1602.09001 Information Theory +1602.09019 Networking and Internet Architecture +1602.09076 Artificial Intelligence +1603.00149 Distributed, Parallel, and Cluster Computing +1603.00244 Information Theory +1603.00481 Earth and Planetary Astrophysics +1603.01472 Information Theory +1603.02000 Information Theory +1603.02182 Information Theory +1603.03225 Optimization and Control +1603.03366 Optimization and Control +1603.04080 Neural and Evolutionary Computing +1603.04264 Sound +1603.04312 +1603.04574 Information Theory +1603.04874 Phenomenology +1603.04979 Sound +1603.05634 Statistical Mechanics +1603.06432 Computer Vision and Pattern Recognition +1603.06461 Networking and Internet Architecture +1603.07052 Information Theory +1603.07055 Information Theory +1603.07524 Computers and Society +1603.07554 Information Theory +1603.07576 Information Theory +1603.07624 Computation and Language +1603.08128 Rings and Algebras +1603.08244 Information Theory +1603.08554 +1603.09530 Networking and Internet Architecture +1604.00141 Cosmology and Nongalactic Astrophysics +1604.00312 Computer Vision and Pattern Recognition +1604.00457 Neural and Evolutionary Computing +1604.02333 Information Theory +1604.03454 Social and Information Networks +1604.03468 Robotics +1604.04752 Information Theory +1604.04944 +1604.05483 Information Theory +1604.06589 Information Theory +1604.07807 Computer Vision and Pattern Recognition +1604.08197 +1605.00031 Learning +1605.00543 Theory +1605.00660 Methodology +1605.00873 Information Theory +1605.01266 Phenomenology +1605.01556 High Energy Astrophysical Phenomena +1605.02481 Theory +1605.02747 +1605.03160 +1605.03834 +1605.03915 Human-Computer Interaction +1605.04402 Phenomenology +1605.04446 Statistics Theory +1605.04965 Robotics +1605.05132 +1605.06442 Networking and Internet Architecture +1605.06804 Differential Geometry +1605.06899 Quantum Gases +1605.06970 Computational Physics +1605.07972 Optics +1605.08936 Information Theory +1606.00124 Information Theory +1606.00914 Number Theory +1606.01467 Learning +1606.01593 Software Engineering +1606.01759 Information Theory +1606.01799 Information Theory +1606.01903 Cosmology and Nongalactic Astrophysics +1606.01938 Theory +1606.02033 Information Theory +1606.02449 Probability +1606.02766 Numerical Analysis +1606.04025 General Topology +1606.04445 Phenomenology +1606.04492 Optimization and Control +1606.06259 Computation and Language +1606.06757 Superconductivity +1606.07329 Fluid Dynamics +1606.08009 Learning +1606.08150 Distributed, Parallel, and Cluster Computing +1606.08157 Information Retrieval +1606.08752 Complex Variables +1606.09640 Representation Theory +1607.00575 Information Theory +1607.00588 Information Theory +1607.00590 Information Theory +1607.00591 Information Theory +1607.01341 Cryptography and Security +1607.01723 Software Engineering +1607.02538 Statistics Theory +1607.02564 Number Theory +1607.02973 Materials Science +1607.03228 Strongly Correlated Electrons +1607.03492 Statistical Mechanics +1607.03890 Group Theory +1607.03913 Theory +1607.04900 Chemical Physics +1607.05309 Strongly Correlated Electrons +1607.05587 Systems and Control +1607.06305 +1607.06656 +1607.06754 Neurons and Cognition +1607.06792 Information Theory +1607.07161 Superconductivity +1607.07987 Computer Vision and Pattern Recognition +1608.00204 Optics +1608.01427 Geometric Topology +1608.01470 Superconductivity +1608.01679 +1608.02372 Experiment +1608.02413 Data Structures and Algorithms +1608.02594 Rings and Algebras +1608.02820 Phenomenology +1608.03198 Phenomenology +1608.03351 Information Theory +1608.03825 Information Theory +1608.05211 Information Theory +1608.05322 +1608.05768 Information Theory +1608.05868 Medical Physics +1608.06040 Theory +1608.06999 Phenomenology +1608.07605 Machine Learning +1608.08576 Information Theory +1609.00364 Theory +1609.00432 Physics and Society +1609.01310 +1609.01732 Cosmology and Nongalactic Astrophysics +1609.02128 Instrumentation and Detectors +1609.02346 Analysis of PDEs +1609.02493 Earth and Planetary Astrophysics +1609.02617 Chemical Physics +1609.02900 Optics +1609.04044 Instrumentation and Detectors +1609.04371 Logic in Computer Science +1609.05042 Theory +1609.05548 +1609.05807 Learning +1609.05838 Materials Science +1609.06680 Solar and Stellar Astrophysics +1609.08330 Information Theory +1609.08492 Computation and Language +1609.09630 Soft Condensed Matter +1609.09762 Mesoscale and Nanoscale Physics +1609.09807 Computers and Society +1610.00270 Machine Learning +1610.01341 Combinatorics +1610.02396 Instrumentation and Detectors +1610.02915 Computer Vision and Pattern Recognition +1610.03002 Optimization and Control +1610.03250 Phenomenology +1610.03906 Computer Science and Game Theory +1610.04211 Computation and Language +1610.04272 Numerical Analysis +1610.04326 Experiment +1610.04588 Combinatorics +1610.04659 Representation Theory +1610.04778 Theory +1610.05098 +1610.05131 Methodology +1610.05880 Strongly Correlated Electrons +1610.05980 Computational Physics +1610.06619 Dynamical Systems +1610.06835 Methodology +1610.06958 Computational Engineering, Finance, and Science +1610.07465 Superconductivity +1610.07788 +1610.07912 Algebraic Topology +1610.08376 Combinatorics +1610.08529 +1610.08968 Theory +1610.09394 Emerging Technologies +1610.09628 Space Physics +1610.09916 Mesoscale and Nanoscale Physics +1611.00345 Soft Condensed Matter +1611.00413 +1611.00449 Soft Condensed Matter +1611.00484 Databases +1611.00727 Mesoscale and Nanoscale Physics +1611.01058 Mesoscale and Nanoscale Physics +1611.01415 Commutative Algebra +1611.01453 Materials Science +1611.01505 Learning +1611.01507 Programming Languages +1611.01772 +1611.01882 Analysis of PDEs +1611.02065 Numerical Analysis +1611.02341 Combinatorics +1611.02344 Computation and Language +1611.02697 Phenomenology +1611.03095 Earth and Planetary Astrophysics +1611.03524 Logic in Computer Science +1611.03728 +1611.03933 Differential Geometry +1611.04025 +1611.04097 Commutative Algebra +1611.04206 Statistical Mechanics +1611.04385 Number Theory +1611.04714 Strongly Correlated Electrons +1611.04781 Molecular Networks +1611.04945 Mesoscale and Nanoscale Physics +1611.05004 Phenomenology +1611.05054 +1611.05136 Learning +1611.05139 Materials Science +1611.05155 Mesoscale and Nanoscale Physics +1611.05247 Data Structures and Algorithms +1611.05270 Phenomenology +1611.05340 Learning +1611.05345 Computer Vision and Pattern Recognition +1611.05374 Computers and Society +1611.05376 Networking and Internet Architecture +1611.05442 Rings and Algebras +1611.05443 Neurons and Cognition +1611.05444 Materials Science +1611.05449 +1611.05450 +1611.05455 Astrophysics of Galaxies +1611.05457 Astrophysics of Galaxies +1611.05458 +1611.05460 Theory +1611.05467 Information Theory +1611.05468 Cosmology and Nongalactic Astrophysics +1611.05469 Machine Learning +1611.05472 Analysis of PDEs +1611.05474 Biomolecules +1611.05475 Analysis of PDEs +1611.05476 Computer Vision and Pattern Recognition +1611.05479 Computer Vision and Pattern Recognition +1611.05480 Information Retrieval +1611.05481 Materials Science +1611.05482 Combinatorics +1611.05483 Optimization and Control +1611.05486 Solar and Stellar Astrophysics +1611.05488 Analysis of PDEs +1611.05489 Instrumentation and Methods for Astrophysics +1611.05490 Computer Vision and Pattern Recognition +1611.05492 Accelerator Physics +1611.05493 Theory +1611.05494 Numerical Analysis +1611.05497 Artificial Intelligence +1611.05498 Dynamical Systems +1611.05499 Combinatorics +1611.05500 Functional Analysis +1611.05503 Computer Vision and Pattern Recognition +1611.05507 Computer Vision and Pattern Recognition +1611.05508 Algebraic Geometry +1611.05510 Numerical Analysis +1611.05512 Systems and Control +1611.05514 Algebraic Geometry +1611.05518 Pricing of Securities +1611.05519 High Energy Astrophysical Phenomena +1611.05521 Learning +1611.05522 Astrophysics of Galaxies +1611.05525 Cosmology and Nongalactic Astrophysics +1611.05526 Group Theory +1611.05527 Computation and Language +1611.05528 Analysis of PDEs +1611.05529 +1611.05530 Data Structures and Algorithms +1611.05531 Instrumentation and Detectors +1611.05532 Mesoscale and Nanoscale Physics +1611.05537 Information Theory +1611.05542 Optimization and Control +1611.05543 +1611.05547 Plasma Physics +1611.05548 Information Theory +1611.05551 Number Theory +1611.05555 Geometric Topology +1611.05556 Networking and Internet Architecture +1611.05557 Databases +1611.05562 Number Theory +1611.05563 Strongly Correlated Electrons +1611.05565 High Energy Astrophysical Phenomena +1611.05566 Quantum Gases +1611.05568 Strongly Correlated Electrons +1611.05569 Networking and Internet Architecture +1611.05571 Statistical Finance +1611.05572 Probability +1611.05575 Materials Science +1611.05576 Numerical Analysis +1611.05578 Strongly Correlated Electrons +1611.05579 Computers and Society +1611.05581 Quantum Algebra +1611.05582 +1611.05584 Materials Science +1611.05585 Metric Geometry +1611.05587 Medical Physics +1611.05588 Computer Vision and Pattern Recognition +1611.05589 Numerical Analysis +1611.05590 Information Theory +1611.05592 Computer Vision and Pattern Recognition +1611.05593 Solar and Stellar Astrophysics +1611.05594 Computer Vision and Pattern Recognition +1611.05595 Number Theory +1611.05596 Differential Geometry +1611.05597 Information Theory +1611.05598 Materials Science +1611.05599 +1611.05601 +1611.05602 Methodology +1611.05603 Computer Vision and Pattern Recognition +1611.05604 Physics and Society +1611.05611 Experiment +1611.05612 Experiment +1611.05613 Metric Geometry +1611.05614 +1611.05615 Pattern Formation and Solitons +1611.05616 Distributed, Parallel, and Cluster Computing +1611.05618 Number Theory +1611.05619 Networking and Internet Architecture +1611.05620 Algebraic Geometry +1611.05623 Number Theory +1611.05624 Experiment +1611.05625 Earth and Planetary Astrophysics +1611.05626 Software Engineering +1611.05628 Analysis of PDEs +1611.05629 Symplectic Geometry +1611.05630 +1611.05632 Classical Analysis and ODEs +1611.05633 Discrete Mathematics +1611.05635 Phenomenology +1611.05636 Chemical Physics +1611.05638 Multiagent Systems +1611.05639 Disordered Systems and Neural Networks +1611.05640 Logic in Computer Science +1611.05641 +1611.05642 Cryptography and Security +1611.05643 Lattice +1611.05644 Computer Vision and Pattern Recognition +1611.05645 Strongly Correlated Electrons +1611.05646 Data Structures and Algorithms +1611.05647 Algebraic Geometry +1611.05649 Instrumentation and Detectors +1611.05651 Programming Languages +1611.05652 Combinatorics +1611.05653 Information Theory +1611.05654 Instrumentation and Detectors +1611.05655 Combinatorics +1611.05656 Computer Science and Game Theory +1611.05658 Representation Theory +1611.05659 Statistical Mechanics +1611.05660 Data Structures and Algorithms +1611.05661 Strongly Correlated Electrons +1611.05663 Analysis of PDEs +1611.05664 Computer Vision and Pattern Recognition +1611.05667 Complex Variables +1611.05668 Methodology +1611.05670 Fluid Dynamics +1611.05671 Number Theory +1611.05673 Numerical Analysis +1611.05675 Learning +1611.05676 Statistical Mechanics +1611.05678 Earth and Planetary Astrophysics +1611.05679 Commutative Algebra +1611.05685 Geometric Topology +1611.05688 General Finance +1611.05689 Computer Vision and Pattern Recognition +1611.05690 General Finance +1611.05692 Cosmology and Nongalactic Astrophysics +1611.05693 Biological Physics +1611.05695 Plasma Physics +1611.05696 Classical Analysis and ODEs +1611.05697 Accelerator Physics +1611.05699 Methodology +1611.05700 Fluid Dynamics +1611.05701 Materials Science +1611.05702 Number Theory +1611.05703 Numerical Analysis +1611.05705 Computer Vision and Pattern Recognition +1611.05706 Differential Geometry +1611.05707 Tissues and Organs +1611.05709 Computer Vision and Pattern Recognition +1611.05710 Phenomenology +1611.05711 Numerical Analysis +1611.05715 Phenomenology +1611.05716 +1611.05717 Numerical Analysis +1611.05718 Rings and Algebras +1611.05720 Computer Vision and Pattern Recognition +1611.05722 Machine Learning +1611.05723 Information Theory +1611.05725 Computer Vision and Pattern Recognition +1611.05727 General Physics +1611.05728 Probability +1611.05729 Fluid Dynamics +1611.05730 Solar and Stellar Astrophysics +1611.05731 Earth and Planetary Astrophysics +1611.05732 High Energy Astrophysical Phenomena +1611.05734 +1611.05735 Artificial Intelligence +1611.05736 Biological Physics +1611.05737 General Physics +1611.05738 +1611.05739 Astrophysics of Galaxies +1611.05740 Artificial Intelligence +1611.05741 Populations and Evolution +1611.05742 Computer Vision and Pattern Recognition +1611.05743 Learning +1611.05744 Computer Vision and Pattern Recognition +1611.05746 Combinatorics +1611.05747 Lattice +1611.05749 Chaotic Dynamics +1611.05750 Lattice +1611.05751 Learning +1611.05752 +1611.05753 Data Structures and Algorithms +1611.05754 +1611.05755 Computer Vision and Pattern Recognition +1611.05756 Dynamical Systems +1611.05757 Phenomenology +1611.05759 +1611.05760 Computer Vision and Pattern Recognition +1611.05761 +1611.05762 Analysis of PDEs +1611.05764 +1611.05765 Instrumentation and Detectors +1611.05767 Differential Geometry +1611.05768 Combinatorics +1611.05769 Theory +1611.05771 Probability +1611.05772 Probability +1611.05773 Representation Theory +1611.05776 Group Theory +1611.05777 Computer Vision and Pattern Recognition +1611.05780 Machine Learning +1611.05783 Materials Science +1611.05784 Combinatorics +1611.05786 Theory +1611.05787 Networking and Internet Architecture +1611.05788 Applications +1611.05789 Software Engineering +1611.05790 Commutative Algebra +1611.05792 Instrumentation and Detectors +1611.05793 Distributed, Parallel, and Cluster Computing +1611.05795 Computational Physics +1611.05796 Probability +1611.05798 Materials Science +1611.05799 Computer Vision and Pattern Recognition +1611.05800 Numerical Analysis +1611.05801 Group Theory +1611.05803 Other Computer Science +1611.05804 Classical Analysis and ODEs +1611.05805 Populations and Evolution +1611.05806 Instrumentation and Methods for Astrophysics +1611.05807 Functional Analysis +1611.05814 Molecular Networks +1611.05816 Cosmology and Nongalactic Astrophysics +1611.05817 Machine Learning +1611.05818 Logic +1611.05820 Optimization and Control +1611.05822 Lattice +1611.05824 Numerical Analysis +1611.05825 +1611.05828 +1611.05831 Formal Languages and Automata Theory +1611.05833 Theory +1611.05835 Adaptation and Self-Organizing Systems +1611.05836 Strongly Correlated Electrons +1611.05837 Computer Vision and Pattern Recognition +1611.05838 Statistics Theory +1611.05840 Analysis of PDEs +1611.05841 Theory +1611.05842 Computer Vision and Pattern Recognition +1611.05845 Optimization and Control +1611.05846 Instrumentation and Detectors +1611.05848 Theory +1611.05849 Algebraic Geometry +1611.05857 Phenomenology +1611.05859 Solar and Stellar Astrophysics +1611.05860 High Energy Astrophysical Phenomena +1611.05861 +astro-ph/0109247 +astro-ph/0505165 +astro-ph/0608638 +cond-mat/0111254 Materials Science +cond-mat/0211191 Superconductivity +cond-mat/0301382 Superconductivity +cond-mat/0303305 Mesoscale and Nanoscale Physics +cond-mat/0308344 Superconductivity +cond-mat/0410270 Statistical Mechanics +cond-mat/0411708 Superconductivity +cond-mat/0501283 Superconductivity +cond-mat/0507405 Materials Science +cond-mat/0604534 Disordered Systems and Neural Networks +cond-mat/9811141 Superconductivity +cond-mat/9811158 Materials Science +cs/0001007 Networking and Internet Architecture +cs/0009021 Distributed, Parallel, and Cluster Computing +cs/0105006 Software Engineering +cs/0209006 Networking and Internet Architecture +cs/0301014 Learning +cs/0402025 Databases +cs/0407004 Information Theory +cs/0407060 Information Theory +cs/0411006 Information Theory +cs/0411011 Information Theory +cs/0503003 Software Engineering +cs/0503040 Information Theory +cs/0503041 Information Theory +cs/0503042 Information Theory +cs/0503071 Information Theory +cs/0504003 Information Theory +cs/0504016 Discrete Mathematics +cs/0504032 Information Theory +cs/0509010 Information Theory +cs/0509048 Information Theory +cs/0509075 Information Theory +cs/0509089 Computational Engineering, Finance, and Science +cs/0509099 Discrete Mathematics +cs/0510033 Information Theory +cs/0510068 Information Theory +cs/0510071 Information Theory +cs/0511057 Information Theory +cs/0512066 Information Theory +cs/0601107 Information Theory +cs/0605041 Information Theory +cs/0605060 Distributed, Parallel, and Cluster Computing +cs/0605087 Information Theory +cs/0605095 Information Theory +cs/0608111 Software Engineering +cs/0611017 Information Theory +cs/0611028 Discrete Mathematics +cs/0611053 Information Theory +cs/0611072 Software Engineering +math/0207289 Combinatorics +math/0404520 General Mathematics +math/0409548 Probability +math/0508575 Combinatorics +math/0509250 Optimization and Control +math/0509279 Probability +math/0601650 Optimization and Control +math/0610812 Combinatorics +math/0611586 Number Theory +math/0701056 Optimization and Control +physics/0104020 Medical Physics +physics/0104032 Computational Physics +physics/0302067 General Physics +physics/0305094 Instrumentation and Detectors +physics/0408095 Chemical Physics +physics/0509221 Instrumentation and Detectors +physics/0511212 Instrumentation and Detectors +physics/0601138 Instrumentation and Detectors +physics/0608202 Instrumentation and Detectors +physics/0701084 Medical Physics +quant-ph/0012084 +quant-ph/0103098 +quant-ph/0105018 +quant-ph/0112103 +quant-ph/0205128 +quant-ph/0205138 +quant-ph/0205178 +quant-ph/0303113 +quant-ph/0307071 +quant-ph/0601106 +quant-ph/0601157 +quant-ph/0603135 +quant-ph/0604072 +quant-ph/0605030 +quant-ph/0605066 +quant-ph/0608075 +quant-ph/0608195 +quant-ph/0609229 +quant-ph/0701020 +quant-ph/9809010 +quant-ph/9906090 +supr-con/9609001 Superconductivity +0705.1201 Superconductivity +0708.1936 +0805.1270 Number Theory +0806.0009 +0905.1175 Mesoscale and Nanoscale Physics +0906.3807 +0906.3869 Materials Science +0908.1778 Mesoscale and Nanoscale Physics +0910.5894 Mesoscale and Nanoscale Physics +0912.1585 Number Theory +1102.4927 Materials Science +1104.2068 Mesoscale and Nanoscale Physics +1104.3169 Optics +1105.0175 Materials Science +1106.3553 Theory +1107.0109 Materials Science +1112.2132 Mesoscale and Nanoscale Physics +1201.1273 Quantum Algebra +1205.5836 Mesoscale and Nanoscale Physics +1206.2856 Materials Science +1209.1601 Dynamical Systems +1212.1724 +1212.6578 Algebraic Topology +1212.6965 Statistical Mechanics +1301.4637 Dynamical Systems +1303.1784 Group Theory +1304.1753 K-Theory and Homology +1304.5314 K-Theory and Homology +1305.6217 Algebraic Topology +1307.1696 Probability +1308.2442 Algebraic Geometry +1308.3099 Logic +1308.5090 Number Theory +1309.2474 Cosmology and Nongalactic Astrophysics +1309.2667 Geometric Topology +1309.4958 Data Structures and Algorithms +1310.0516 Combinatorics +1401.2452 Dynamical Systems +1401.2648 Geometric Topology +1401.3712 K-Theory and Homology +1401.5778 Algebraic Geometry +1401.7150 Algebraic Topology +1401.7927 Metric Geometry +1402.3504 High Energy Astrophysical Phenomena +1402.3963 Logic +1403.0236 Probability +1403.2012 Dynamical Systems +1403.3143 Geometric Topology +1403.5191 Algebraic Topology +1404.5783 Mesoscale and Nanoscale Physics +1405.0925 Commutative Algebra +1405.5496 Materials Science +1406.1735 Geometric Topology +1406.1737 Geometric Topology +1406.1740 Differential Geometry +1406.1741 Differential Geometry +1406.1743 Differential Geometry +1406.1745 Differential Geometry +1406.1800 Cosmology and Nongalactic Astrophysics +1406.2431 Information Retrieval +1406.6212 +1406.7174 Symplectic Geometry +1406.7467 Algebraic Topology +1407.0693 Dynamical Systems +1407.1258 Exactly Solvable and Integrable Systems +1407.1366 Algebraic Geometry +1407.4638 Dynamical Systems +1407.5247 Quantum Algebra +1407.5987 Geometric Topology +1407.7450 Algebraic Topology +1408.1027 Methodology +1408.1508 Geometric Topology +1408.3557 Logic +1408.4755 Statistics Theory +1408.6349 Algebraic Geometry +1409.6475 Differential Geometry +1410.6297 Geometric Topology +1410.7233 Combinatorics +1411.0508 Dynamical Systems +1411.0902 Group Theory +1411.3581 Probability +1412.4374 Fluid Dynamics +1412.4659 Information Theory +1501.01266 Algebraic Geometry +1501.01713 Metric Geometry +1501.02575 Classical Analysis and ODEs +1501.03425 Algebraic Topology +1501.04470 Dynamical Systems +1501.05110 Lattice +1501.05236 Analysis of PDEs +1501.07055 Functional Analysis +1501.07118 Earth and Planetary Astrophysics +1502.00282 Disordered Systems and Neural Networks +1502.01583 Instrumentation and Methods for Astrophysics +1502.01584 Cosmology and Nongalactic Astrophysics +1502.01586 Instrumentation and Methods for Astrophysics +1502.01587 Cosmology and Nongalactic Astrophysics +1502.01589 Cosmology and Nongalactic Astrophysics +1502.01593 Cosmology and Nongalactic Astrophysics +1502.01596 Cosmology and Nongalactic Astrophysics +1502.01597 Cosmology and Nongalactic Astrophysics +1502.02211 Theory +1502.03094 Strongly Correlated Electrons +1502.03801 Probability +1502.03834 Symplectic Geometry +1502.04016 Quantum Gases +1502.06145 Statistical Mechanics +1502.07331 Computer Vision and Pattern Recognition +1503.01409 Theory +1503.01562 Analysis of PDEs +1503.02045 Information Theory +1503.02375 Probability +1503.02518 Algebraic Topology +1503.03627 Phenomenology +1503.04228 Phenomenology +1503.06374 Geometric Topology +1503.06622 Materials Science +1503.06909 Exactly Solvable and Integrable Systems +1503.07755 +1503.08218 Cosmology and Nongalactic Astrophysics +1503.08320 Algebraic Geometry +1504.00090 Quantum Algebra +1504.00348 Classical Analysis and ODEs +1504.00365 Theory +1504.00388 +1504.01011 Group Theory +1504.02171 +1504.03448 Algebraic Geometry +1504.05379 Solar and Stellar Astrophysics +1505.00046 Phenomenology +1505.00361 Analysis of PDEs +1505.01047 Representation Theory +1505.01382 Analysis of PDEs +1505.01555 Classical Analysis and ODEs +1505.02141 Information Theory +1505.03452 K-Theory and Homology +1505.03716 Phenomenology +1505.04053 Geometric Topology +1505.04380 Phenomenology +1505.04403 Solar and Stellar Astrophysics +1505.04630 Machine Learning +1505.04870 Computer Vision and Pattern Recognition +1505.05409 Symplectic Geometry +1505.05585 Analysis of PDEs +1505.06164 Probability +1505.06316 Instrumentation and Detectors +1505.06327 +1505.06611 Computer Vision and Pattern Recognition +1505.07331 Dynamical Systems +1505.07349 Probability +1505.07693 Numerical Analysis +1505.07795 Numerical Analysis +1505.07921 Analysis of PDEs +1505.08022 Instrumentation and Methods for Astrophysics +1506.01559 Numerical Analysis +1506.02148 Phenomenology +1506.02219 Analysis of PDEs +1506.02298 Probability +1506.02446 Numerical Analysis +1506.02746 Materials Science +1506.02810 Geophysics +1506.03328 Theory +1506.03755 Phenomenology +1506.04870 Optimization and Control +1506.05083 Numerical Analysis +1506.05889 Information Theory +1506.05996 Computational Engineering, Finance, and Science +1506.06401 Physics Education +1506.06660 Astrophysics of Galaxies +1506.07135 Cosmology and Nongalactic Astrophysics +1506.07550 +1506.07636 Exactly Solvable and Integrable Systems +1506.07738 Differential Geometry +1506.08165 +1506.08716 Combinatorics +1506.09144 Differential Geometry +1507.00273 Atomic Physics +1507.00905 +1507.01055 Soft Condensed Matter +1507.01576 Phenomenology +1507.02236 Statistical Mechanics +1507.02704 Cosmology and Nongalactic Astrophysics +1507.02797 Instrumentation and Detectors +1507.03021 Cosmology and Nongalactic Astrophysics +1507.03634 Logic +1507.04099 Quantum Gases +1507.04169 Probability +1507.04176 +1507.04254 Disordered Systems and Neural Networks +1507.04265 +1507.05054 Algebraic Geometry +1507.05382 Instrumentation and Detectors +1507.06075 Physics Education +1507.06263 Geometric Topology +1507.06315 Phenomenology +1507.06348 Theory +1507.06424 Phenomenology +1507.06981 Materials Science +1507.07058 Artificial Intelligence +1507.08182 Astrophysics of Galaxies +1507.08829 Theory +1508.00194 Materials Science +1508.00426 Earth and Planetary Astrophysics +1508.00890 Analysis of PDEs +1508.02073 Optimization and Control +1508.03360 Plasma Physics +1508.03823 Phenomenology +1508.04037 Classical Physics +1508.04448 Statistical Mechanics +1508.05290 +1508.05384 Systems and Control +1508.05966 +1508.06022 +1508.06328 Plasma Physics +1509.01015 Computational Physics +1509.01093 Chaotic Dynamics +1509.01282 Fluid Dynamics +1509.01296 +1509.01336 Analysis of PDEs +1509.01777 Probability +1509.03236 Algebraic Topology +1509.03675 Accelerator Physics +1509.04371 Analysis of PDEs +1509.04491 Information Theory +1509.05108 Information Theory +1509.05512 Information Theory +1509.05538 Atomic Physics +1509.05543 High Energy Astrophysical Phenomena +1509.05617 Materials Science +1509.05938 Functional Analysis +1509.06054 Theory +1509.06223 Phenomenology +1509.06348 Cosmology and Nongalactic Astrophysics +1509.06389 Dynamical Systems +1509.06555 Cosmology and Nongalactic Astrophysics +1509.06577 Phenomenology +1509.06649 Astrophysics of Galaxies +1509.06663 Numerical Analysis +1509.07624 Numerical Analysis +1509.07639 Algebraic Topology +1509.07685 Computational Physics +1509.08451 Information Theory +1509.08951 +1509.08970 Computer Vision and Pattern Recognition +1510.00084 Methodology +1510.00122 Fluid Dynamics +1510.00341 Fluid Dynamics +1510.00709 Theory +1510.00834 High Energy Astrophysical Phenomena +1510.00903 Lattice +1510.01399 +1510.01428 Strongly Correlated Electrons +1510.01644 Materials Science +1510.01720 Cosmology and Nongalactic Astrophysics +1510.01955 +1510.01993 Systems and Control +1510.02634 Materials Science +1510.02738 Earth and Planetary Astrophysics +1510.03099 +1510.03356 Materials Science +1510.03545 Mesoscale and Nanoscale Physics +1510.04321 Phenomenology +1510.04349 +1510.04417 Phenomenology +1510.05176 Systems and Control +1510.05184 Materials Science +1510.05329 Atmospheric and Oceanic Physics +1510.05614 Statistical Mechanics +1510.05665 Mesoscale and Nanoscale Physics +1510.05954 Cosmology and Nongalactic Astrophysics +1510.06410 Astrophysics of Galaxies +1510.06565 +1510.06723 Algebraic Topology +1510.06881 Strongly Correlated Electrons +1510.06941 Superconductivity +1510.07573 Robotics +1510.07698 Mesoscale and Nanoscale Physics +1510.07799 Computational Physics +1510.07856 +1510.09050 Quantum Gases +1511.00034 +1511.00836 Dynamical Systems +1511.00863 Strongly Correlated Electrons +1511.00989 Analysis of PDEs +1511.01247 Analysis of PDEs +1511.01301 +1511.01465 Cosmology and Nongalactic Astrophysics +1511.02099 +1511.02157 Atomic Physics +1511.02532 Strongly Correlated Electrons +1511.02703 Statistical Mechanics +1511.02720 Phenomenology +1511.02855 High Energy Astrophysical Phenomena +1511.02865 Phenomenology +1511.02895 Earth and Planetary Astrophysics +1511.03098 Algebraic Topology +1511.03160 Geometric Topology +1511.03613 Solar and Stellar Astrophysics +1511.03782 Solar and Stellar Astrophysics +1511.04200 Experiment +1511.04331 +1511.04504 Atomic Physics +1511.04757 Superconductivity +1511.04965 Probability +1511.05136 Theory +1511.05225 Phenomenology +1511.05961 Quantum Gases +1511.06770 Astrophysics of Galaxies +1511.07175 Instrumentation and Detectors +1511.07195 Numerical Analysis +1511.07399 Probability +1511.07462 Theory +1511.07639 Statistical Mechanics +1511.07736 Phenomenology +1511.07875 Solar and Stellar Astrophysics +1511.08068 Risk Management +1511.08112 +1511.08145 Fluid Dynamics +1511.08176 Number Theory +1511.08641 Cosmology and Nongalactic Astrophysics +1511.08658 +1511.08806 Astrophysics of Galaxies +1511.08880 Phenomenology +1511.08958 Optics +1511.09035 Theory +1511.09084 +1511.09192 Number Theory +1511.09335 Solar and Stellar Astrophysics +1511.09465 Materials Science +1512.00175 Analysis of PDEs +1512.00214 Quantum Gases +1512.00543 Phenomenology +1512.00555 Theory +1512.00584 Materials Science +1512.00635 Phenomenology +1512.00676 Analysis of PDEs +1512.00825 Computation +1512.00827 Strongly Correlated Electrons +1512.01387 Representation Theory +1512.01457 Logic +1512.01505 Fluid Dynamics +1512.01545 Materials Science +1512.01906 +1512.01949 Superconductivity +1512.02091 Phenomenology +1512.02148 Dynamical Systems +1512.02194 Distributed, Parallel, and Cluster Computing +1512.02404 Combinatorics +1512.02408 Theory +1512.02517 Fluid Dynamics +1512.02816 Theory +1512.03060 Phenomenology +1512.03121 Differential Geometry +1512.03210 Numerical Analysis +1512.03415 +1512.03577 Atomic Physics +1512.03610 Materials Science +1512.04003 Phenomenology +1512.04007 Quantum Gases +1512.04126 Probability +1512.04305 Optics +1512.04528 Statistical Mechanics +1512.04615 Astrophysics of Galaxies +1512.04704 +1512.05089 +1512.05232 +1512.05334 Phenomenology +1512.05464 Plasma Physics +1512.05566 Methodology +1512.05626 Mesoscale and Nanoscale Physics +1512.05658 +1512.05899 Cosmology and Nongalactic Astrophysics +1512.05951 Atomic Physics +1512.06015 +1512.06140 Dynamical Systems +1512.06172 Atomic Physics +1512.06319 +1512.06561 +1512.07383 Dynamical Systems +1512.07457 Atomic Physics +1512.07597 Theory +1512.07827 Social and Information Networks +1512.07899 Optics +1512.07931 Artificial Intelligence +1512.08152 Phenomenology +1512.08364 Statistical Mechanics +1512.08392 Phenomenology +1512.08484 Phenomenology +1512.08756 Learning +1512.08791 Astrophysics of Galaxies +1512.08926 Theory +1512.09176 Computers and Society +1601.00092 General Finance +1601.00219 +1601.00243 Fluid Dynamics +1601.00303 Theory +1601.00437 Mesoscale and Nanoscale Physics +1601.00470 +1601.00725 Theory +1601.00828 Materials Science +1601.00890 Mesoscale and Nanoscale Physics +1601.01060 Computer Vision and Pattern Recognition +1601.01167 Phenomenology +1601.01314 Physics Education +1601.01344 Statistical Mechanics +1601.01461 Numerical Analysis +1601.01576 Physics and Society +1601.01655 +1601.01703 +1601.01745 Dynamical Systems +1601.01748 Atomic Physics +1601.02018 Solar and Stellar Astrophysics +1601.02235 +1601.02244 +1601.02326 Materials Science +1601.02335 Optimization and Control +1601.02611 Astrophysics of Galaxies +1601.02667 Numerical Analysis +1601.02692 Soft Condensed Matter +1601.02780 Instrumentation and Detectors +1601.03022 Human-Computer Interaction +1601.03262 General Mathematics +1601.03340 Physics Education +1601.03415 Physics and Society +1601.03547 High Energy Astrophysical Phenomena +1601.03598 Instrumentation and Detectors +1601.03702 Statistical Mechanics +1601.04426 Phenomenology +1601.04441 +1601.04456 Superconductivity +1601.04457 Theory +1601.05033 Dynamical Systems +1601.05178 Solar and Stellar Astrophysics +1601.05261 Statistics Theory +1601.05280 +1601.05328 Phenomenology +1601.05391 Phenomenology +1601.05611 Theory +1601.05663 Soft Condensed Matter +1601.05714 +1601.06058 +1601.06201 Learning +1601.06566 Theory +1601.06620 +1601.06719 Computer Vision and Pattern Recognition +1601.06852 Analysis of PDEs +1601.06959 Instrumentation and Detectors +1601.07038 Superconductivity +1601.07174 High Energy Astrophysical Phenomena +1601.07487 Combinatorics +1601.07582 Physics and Society +1601.07632 Phenomenology +1601.07691 +1601.07707 Trading and Market Microstructure +1601.08135 Probability +1602.00020 Computer Vision and Pattern Recognition +1602.00611 Cosmology and Nongalactic Astrophysics +1602.00647 Phenomenology +1602.00792 +1602.01076 Theory +1602.01203 Physics and Society +1602.01446 High Energy Astrophysical Phenomena +1602.01541 Computer Vision and Pattern Recognition +1602.01549 Strongly Correlated Electrons +1602.01666 Biological Physics +1602.01738 Instrumentation and Methods for Astrophysics +1602.01906 Information Theory +1602.02020 Numerical Analysis +1602.02125 Accelerator Physics +1602.02164 Machine Learning +1602.02275 High Energy Astrophysical Phenomena +1602.02470 Materials Science +1602.02588 Analysis of PDEs +1602.02649 Mesoscale and Nanoscale Physics +1602.02727 +1602.02768 +1602.02909 Instrumentation and Detectors +1602.02920 Strongly Correlated Electrons +1602.02965 +1602.02968 +1602.03312 Differential Geometry +1602.03414 +1602.03773 Combinatorics +1602.03803 Phenomenology +1602.04045 +1602.04156 High Energy Astrophysical Phenomena +1602.04162 Mesoscale and Nanoscale Physics +1602.04479 Optics +1602.04539 +1602.04553 Category Theory +1602.04699 +1602.04790 Differential Geometry +1602.04815 Cosmology and Nongalactic Astrophysics +1602.04824 Astrophysics of Galaxies +1602.04825 Theory +1602.04885 Quantum Algebra +1602.04999 Plasma Physics +1602.05004 +1602.05126 Theory +1602.05180 +1602.05197 +1602.05350 Learning +1602.05360 Strongly Correlated Electrons +1602.05452 Statistical Mechanics +1602.05478 Probability +1602.05482 +1602.05530 Physics and Society +1602.05905 +1602.05974 Number Theory +1602.06080 Instrumentation and Detectors +1602.06364 +1602.06437 Phenomenology +1602.06826 Plasma Physics +1602.07015 Instrumentation and Detectors +1602.07066 Accelerator Physics +1602.07126 Mesoscale and Nanoscale Physics +1602.07130 Chaotic Dynamics +1602.07204 Materials Science +1602.07223 +1602.07239 +1602.07353 Theory +1602.07368 Logic +1602.07673 Theory +1602.07877 Materials Science +1602.07918 Accelerator Physics +1602.07931 +1602.08202 Atomic Physics +1602.08256 Materials Science +1602.08293 Phenomenology +1602.08530 Neurons and Cognition +1602.08602 Numerical Analysis +1602.08622 Phenomenology +1602.08647 Fluid Dynamics +1602.08677 Mesoscale and Nanoscale Physics +1602.08711 Phenomenology +1602.09120 Statistics Theory +1603.00074 Social and Information Networks +1603.00098 Instrumentation and Detectors +1603.00127 Phenomenology +1603.00247 Optics +1603.00437 Computer Vision and Pattern Recognition +1603.00501 +1603.00513 Quantum Gases +1603.00627 Mesoscale and Nanoscale Physics +1603.00668 Numerical Analysis +1603.00888 Astrophysics of Galaxies +1603.01037 Strongly Correlated Electrons +1603.01221 +1603.01442 Adaptation and Self-Organizing Systems +1603.01614 Astrophysics of Galaxies +1603.01645 Superconductivity +1603.01936 +1603.02045 +1603.02087 Cosmology and Nongalactic Astrophysics +1603.02222 Analysis of PDEs +1603.02345 Computer Vision and Pattern Recognition +1603.02510 Solar and Stellar Astrophysics +1603.02643 Operator Algebras +1603.02722 +1603.02878 Theory +1603.02915 Phenomenology +1603.02953 Fluid Dynamics +1603.02979 Quantum Gases +1603.03291 Theory +1603.03321 +1603.03648 +1603.03807 Mesoscale and Nanoscale Physics +1603.03943 +1603.04082 High Energy Astrophysical Phenomena +1603.04135 Superconductivity +1603.04240 Mesoscale and Nanoscale Physics +1603.04269 Materials Science +1603.04326 Plasma Physics +1603.04355 Phenomenology +1603.04361 Plasma Physics +1603.04369 Theory +1603.04374 Systems and Control +1603.04448 Disordered Systems and Neural Networks +1603.04464 Phenomenology +1603.04505 Statistical Mechanics +1603.04617 Statistical Mechanics +1603.04737 Phenomenology +1603.05009 +1603.05093 Mesoscale and Nanoscale Physics +1603.05164 Numerical Analysis +1603.05364 +1603.05419 Mesoscale and Nanoscale Physics +1603.05503 High Energy Astrophysical Phenomena +1603.05507 Strongly Correlated Electrons +1603.05662 Earth and Planetary Astrophysics +1603.05861 Phenomenology +1603.05919 Statistical Mechanics +1603.05974 Materials Science +1603.06026 Phenomenology +1603.06072 Instrumentation and Methods for Astrophysics +1603.06101 +1603.06107 Solar and Stellar Astrophysics +1603.06457 Strongly Correlated Electrons +1603.06496 Computer Vision and Pattern Recognition +1603.06664 Phenomenology +1603.06926 High Energy Astrophysical Phenomena +1603.06950 Phenomenology +1603.06971 Strongly Correlated Electrons +1603.07317 Theory +1603.07480 +1603.07680 +1603.07724 Theory +1603.07858 Theory +1603.08052 Phenomenology +1603.08058 Theory +1603.08093 Materials Science +1603.08110 Operator Algebras +1603.08226 +1603.08303 Instrumentation and Detectors +1603.08352 Soft Condensed Matter +1603.08380 Physics and Society +1603.08407 General Physics +1603.08459 +1603.08473 Instrumentation and Detectors +1603.08550 Theory +1603.08552 +1603.08906 Phenomenology +1603.08911 Phenomenology +1603.09008 Earth and Planetary Astrophysics +1603.09085 +1603.09315 Algebraic Geometry +1603.09361 Theory +1603.09627 Disordered Systems and Neural Networks +1603.09635 Superconductivity +1604.00015 Astrophysics of Galaxies +1604.00078 Theory +1604.00110 Physics and Society +1604.00161 +1604.00294 Plasma Physics +1604.00344 Plasma Physics +1604.00388 Theory +1604.00476 Materials Science +1604.00567 Optics +1604.00599 High Energy Astrophysical Phenomena +1604.00628 Instrumentation and Detectors +1604.00728 Phenomenology +1604.00838 Astrophysics of Galaxies +1604.00916 +1604.01125 Physics and Society +1604.01823 Fluid Dynamics +1604.01831 Analysis of PDEs +1604.01967 +1604.02085 Adaptation and Self-Organizing Systems +1604.02194 Dynamical Systems +1604.02206 Representation Theory +1604.02344 Phenomenology +1604.02346 Theory +1604.02387 +1604.02411 Materials Science +1604.02445 Phenomenology +1604.02630 Physics and Society +1604.02701 Instrumentation and Detectors +1604.02718 Materials Science +1604.02878 Computer Vision and Pattern Recognition +1604.02978 Materials Science +1604.02991 Chaotic Dynamics +1604.03066 Superconductivity +1604.03179 High Energy Astrophysical Phenomena +1604.03309 Accelerator Physics +1604.03331 Plasma Physics +1604.03340 +1604.03456 Astrophysics of Galaxies +1604.03533 Cosmology and Nongalactic Astrophysics +1604.03560 Theory +1604.03599 Statistical Mechanics +1604.03669 Theory +1604.03760 Materials Science +1604.03879 Statistical Mechanics +1604.03948 Mesoscale and Nanoscale Physics +1604.03966 Phenomenology +1604.04081 Strongly Correlated Electrons +1604.04098 +1604.04104 Numerical Analysis +1604.04110 +1604.04370 Mesoscale and Nanoscale Physics +1604.04534 Instrumentation and Methods for Astrophysics +1604.04584 Emerging Technologies +1604.04605 Mesoscale and Nanoscale Physics +1604.04681 Plasma Physics +1604.04726 Strongly Correlated Electrons +1604.05025 Theory +1604.05032 Analysis of PDEs +1604.05052 +1604.05170 Neural and Evolutionary Computing +1604.05339 Classical Analysis and ODEs +1604.05493 Astrophysics of Galaxies +1604.05554 Mesoscale and Nanoscale Physics +1604.05634 Exactly Solvable and Integrable Systems +1604.05759 Analysis of PDEs +1604.05805 Astrophysics of Galaxies +1604.05810 +1604.05995 Phenomenology +1604.06001 Category Theory +1604.06050 Optics +1604.06185 Phenomenology +1604.06231 Phenomenology +1604.06278 +1604.06390 Strongly Correlated Electrons +1604.06396 Theory +1604.06465 Theory +1604.06478 Optics +1604.06502 Mesoscale and Nanoscale Physics +1604.06539 Mesoscale and Nanoscale Physics +1604.06587 +1604.06679 Atomic and Molecular Clusters +1604.06742 Atomic Physics +1604.06808 Theory +1604.06810 Theory +1604.06974 +1604.07053 Mesoscale and Nanoscale Physics +1604.07056 Disordered Systems and Neural Networks +1604.07274 +1604.07306 +1604.07310 Theory +1604.07405 Earth and Planetary Astrophysics +1604.07412 Astrophysics of Galaxies +1604.07471 Phenomenology +1604.07473 Instrumentation and Detectors +1604.07480 Computer Vision and Pattern Recognition +1604.07583 Superconductivity +1604.07613 Number Theory +1604.07640 Optics +1604.07680 Cosmology and Nongalactic Astrophysics +1604.07714 Mesoscale and Nanoscale Physics +1604.07754 +1604.07812 Superconductivity +1604.07869 Phenomenology +1604.07899 Cosmology and Nongalactic Astrophysics +1604.07907 Solar and Stellar Astrophysics +1604.07942 Solar and Stellar Astrophysics +1604.07968 Strongly Correlated Electrons +1604.08056 +1604.08073 Superconductivity +1604.08133 Solar and Stellar Astrophysics +1604.08206 Phenomenology +1604.08208 Cosmology and Nongalactic Astrophysics +1604.08218 Cosmology and Nongalactic Astrophysics +1604.08219 Cosmology and Nongalactic Astrophysics +1604.08368 Optics +1604.08526 Phenomenology +1604.08538 Information Theory +1604.08761 Strongly Correlated Electrons +1604.08913 Theory +1604.08939 +1605.00145 Chemical Physics +1605.00181 Materials Science +1605.00292 Atomic Physics +1605.00387 Strongly Correlated Electrons +1605.00557 +1605.00563 Theory +1605.00700 Instrumentation and Detectors +1605.00734 Materials Science +1605.00776 Strongly Correlated Electrons +1605.00900 Phenomenology +1605.00919 Theory +1605.00991 Phenomenology +1605.01001 Instrumentation and Methods for Astrophysics +1605.01325 Earth and Planetary Astrophysics +1605.01404 Theory +1605.01650 Biological Physics +1605.01654 Chemical Physics +1605.01691 Instrumentation and Detectors +1605.01736 Astrophysics of Galaxies +1605.01867 Information Theory +1605.01900 Materials Science +1605.01904 Theory +1605.01932 Theory +1605.02097 Learning +1605.02100 Dynamical Systems +1605.02179 Materials Science +1605.02183 +1605.02219 Operator Algebras +1605.02601 Phenomenology +1605.02674 Machine Learning +1605.02675 Theory +1605.02716 Phenomenology +1605.02751 Theory +1605.02829 Mesoscale and Nanoscale Physics +1605.02853 +1605.02903 Soft Condensed Matter +1605.02915 +1605.02922 Theory +1605.03157 Phenomenology +1605.03179 Cosmology and Nongalactic Astrophysics +1605.03241 Populations and Evolution +1605.03254 Mesoscale and Nanoscale Physics +1605.03320 Solar and Stellar Astrophysics +1605.03348 Materials Science +1605.03577 Computational Physics +1605.03602 Phenomenology +1605.03684 Materials Science +1605.03820 Mesoscale and Nanoscale Physics +1605.03845 Biological Physics +1605.03922 Space Physics +1605.04120 Chaotic Dynamics +1605.04143 Theory +1605.04158 Soft Condensed Matter +1605.04272 Mesoscale and Nanoscale Physics +1605.04287 Phenomenology +1605.04304 High Energy Astrophysical Phenomena +1605.04313 Solar and Stellar Astrophysics +1605.04327 Optics +1605.04791 Theory +1605.04816 Probability +1605.04823 Lattice +1605.04904 Solar and Stellar Astrophysics +1605.04935 Phenomenology +1605.05004 Strongly Correlated Electrons +1605.05167 Materials Science +1605.05225 Optimization and Control +1605.05298 Fluid Dynamics +1605.05313 Phenomenology +1605.05359 Learning +1605.05450 Phenomenology +1605.05559 Theory +1605.05668 +1605.05701 Mesoscale and Nanoscale Physics +1605.05729 Earth and Planetary Astrophysics +1605.05733 Cosmology and Nongalactic Astrophysics +1605.05816 +1605.05837 Solar and Stellar Astrophysics +1605.05842 Materials Science +1605.05877 Mesoscale and Nanoscale Physics +1605.05918 Machine Learning +1605.05987 Theory +1605.06019 Materials Science +1605.06035 Experiment +1605.06061 Phenomenology +1605.06124 Cosmology and Nongalactic Astrophysics +1605.06156 Instrumentation and Methods for Astrophysics +1605.06179 Materials Science +1605.06202 Materials Science +1605.06225 +1605.06383 Theory +1605.06496 Chemical Physics +1605.06497 Chemical Physics +1605.06504 High Energy Astrophysical Phenomena +1605.06525 Soft Condensed Matter +1605.06531 Theory +1605.06542 Soft Condensed Matter +1605.06655 Solar and Stellar Astrophysics +1605.06753 Theory +1605.06797 Materials Science +1605.06858 Mesoscale and Nanoscale Physics +1605.06869 Materials Science +1605.06907 Materials Science +1605.06916 Instrumentation and Detectors +1605.06920 Mesoscale and Nanoscale Physics +1605.06952 Materials Science +1605.07012 +1605.07067 Materials Science +1605.07140 Mesoscale and Nanoscale Physics +1605.07169 Chemical Physics +1605.07188 Phenomenology +1605.07215 Solar and Stellar Astrophysics +1605.07236 Astrophysics of Galaxies +1605.07281 Optics +1605.07296 +1605.07378 Solar and Stellar Astrophysics +1605.07496 Learning +1605.07558 Materials Science +1605.07597 Instrumentation and Detectors +1605.07619 Instrumentation and Methods for Astrophysics +1605.07643 Phenomenology +1605.07660 Instrumentation and Detectors +1605.07778 +1605.07836 Theory +1605.07842 High Energy Astrophysical Phenomena +1605.07857 Optics +1605.07875 Instrumentation and Detectors +1605.07942 +1605.07968 Statistical Mechanics +1605.08042 Strongly Correlated Electrons +1605.08050 Astrophysics of Galaxies +1605.08064 Cosmology and Nongalactic Astrophysics +1605.08129 Theory +1605.08208 Theory +1605.08241 Physics and Society +1605.08265 Phenomenology +1605.08362 Phenomenology +1605.08476 Pattern Formation and Solitons +1605.08531 Mesoscale and Nanoscale Physics +1605.08550 Differential Geometry +1605.08596 Mesoscale and Nanoscale Physics +1605.08685 Solar and Stellar Astrophysics +1605.08727 Phenomenology +1605.08959 Optics +1605.09064 +1605.09093 Combinatorics +1605.09099 Geometric Topology +1605.09106 Populations and Evolution +1605.09254 Theory +1605.09308 Phenomenology +1605.09389 High Energy Astrophysical Phenomena +1605.09415 Cosmology and Nongalactic Astrophysics +1605.09418 +1605.09438 Chemical Physics +1605.09483 Superconductivity +1605.09537 Space Physics +1605.09581 Materials Science +1605.09789 +1606.00024 Solar and Stellar Astrophysics +1606.00159 Phenomenology +1606.00212 Fluid Dynamics +1606.00260 Statistical Mechanics +1606.00334 Strongly Correlated Electrons +1606.00335 Materials Science +1606.00402 Instrumentation and Methods for Astrophysics +1606.00434 Astrophysics of Galaxies +1606.00459 Cosmology and Nongalactic Astrophysics +1606.00551 Phenomenology +1606.00593 Disordered Systems and Neural Networks +1606.00609 Soft Condensed Matter +1606.00621 Theory +1606.00654 Theory +1606.00725 Materials Science +1606.00783 Experiment +1606.00817 +1606.00830 Theory +1606.00866 Plasma Physics +1606.00923 Phenomenology +1606.00986 Superconductivity +1606.01002 Lattice +1606.01018 +1606.01090 +1606.01110 +1606.01262 +1606.01304 Astrophysics of Galaxies +1606.01350 Phenomenology +1606.01398 Instrumentation and Detectors +1606.01410 +1606.01462 Probability +1606.01486 Optics +1606.01728 Instrumentation and Detectors +1606.01761 Astrophysics of Galaxies +1606.01767 +1606.01853 Phenomenology +1606.01858 Materials Science +1606.01884 Emerging Technologies +1606.01911 +1606.01956 High Energy Astrophysical Phenomena +1606.02124 Strongly Correlated Electrons +1606.02171 +1606.02244 Phenomenology +1606.02313 Phenomenology +1606.02350 Materials Science +1606.02434 Phenomenology +1606.02869 Theory +1606.02962 Earth and Planetary Astrophysics +1606.02969 Phenomenology +1606.02993 Solar and Stellar Astrophysics +1606.03012 Earth and Planetary Astrophysics +1606.03094 Disordered Systems and Neural Networks +1606.03099 Phenomenology +1606.03112 +1606.03176 Strongly Correlated Electrons +1606.03269 Phenomenology +1606.03287 Phenomenology +1606.03311 Mesoscale and Nanoscale Physics +1606.03314 +1606.03383 +1606.03421 Optics +1606.03449 Phenomenology +1606.03452 Astrophysics of Galaxies +1606.03523 Earth and Planetary Astrophysics +1606.03605 Theory +1606.03689 +1606.03767 Materials Science +1606.03936 Materials Science +1606.03943 Solar and Stellar Astrophysics +1606.04008 Plasma Physics +1606.04068 +1606.04104 Theory +1606.04162 Earth and Planetary Astrophysics +1606.04181 Plasma Physics +1606.04206 Instrumentation and Detectors +1606.04208 Computational Physics +1606.04238 Materials Science +1606.04319 Physics and Society +1606.04527 Cosmology and Nongalactic Astrophysics +1606.04613 Combinatorics +1606.04657 Materials Science +1606.04688 Quantum Algebra +1606.04739 Fluid Dynamics +1606.04852 Instrumentation and Detectors +1606.04926 Theory +1606.04952 Astrophysics of Galaxies +1606.05096 Materials Science +1606.05246 Instrumentation and Detectors +1606.05345 Cosmology and Nongalactic Astrophysics +1606.05438 Solar and Stellar Astrophysics +1606.05521 Phenomenology +1606.05546 Lattice +1606.05547 Soft Condensed Matter +1606.05579 Machine Learning +1606.05580 +1606.05625 Theory +1606.05758 Mesoscale and Nanoscale Physics +1606.05772 Algebraic Geometry +1606.05776 Plasma Physics +1606.05799 Phenomenology +1606.05812 Earth and Planetary Astrophysics +1606.05956 +1606.05977 Atomic Physics +1606.06054 Phenomenology +1606.06375 Phenomenology +1606.06595 Optics +1606.06614 Materials Science +1606.06665 Phenomenology +1606.06687 Theory +1606.06719 Phenomenology +1606.06740 Earth and Planetary Astrophysics +1606.06767 Phenomenology +1606.06868 Chemical Physics +1606.06954 Theory +1606.07058 Theory +1606.07175 Lattice +1606.07225 +1606.07296 Materials Science +1606.07328 Theory +1606.07341 +1606.07402 Mesoscale and Nanoscale Physics +1606.07421 Earth and Planetary Astrophysics +1606.07450 Astrophysics of Galaxies +1606.07466 +1606.07536 Computer Vision and Pattern Recognition +1606.07658 Atomic Physics +1606.07689 Phenomenology +1606.07718 Solar and Stellar Astrophysics +1606.07801 Computational Physics +1606.07806 Instrumentation and Detectors +1606.07933 Mesoscale and Nanoscale Physics +1606.07949 Plasma Physics +1606.07957 Mesoscale and Nanoscale Physics +1606.07963 Phenomenology +1606.08112 Phenomenology +1606.08224 Theory +1606.08247 Superconductivity +1606.08351 Fluid Dynamics +1606.08399 Solar and Stellar Astrophysics +1606.08522 Earth and Planetary Astrophysics +1606.08558 Strongly Correlated Electrons +1606.08640 Phenomenology +1606.08641 Pattern Formation and Solitons +1606.08682 Theory +1606.08785 Phenomenology +1606.08801 +1606.08807 Theory +1606.08860 Disordered Systems and Neural Networks +1606.08862 Cosmology and Nongalactic Astrophysics +1606.08874 Biomolecules +1606.08880 +1606.08913 +1606.08932 Solar and Stellar Astrophysics +1606.09024 Solar and Stellar Astrophysics +1606.09120 Optics +1606.09151 Statistical Mechanics +1606.09174 Earth and Planetary Astrophysics +1606.09211 Mesoscale and Nanoscale Physics +1606.09318 Solar and Stellar Astrophysics +1606.09366 +1606.09385 Lattice +1606.09490 Experiment +1606.09613 Optics +1607.00082 +1607.00092 Quantum Gases +1607.00111 +1607.00341 Mesoscale and Nanoscale Physics +1607.00522 Rings and Algebras +1607.00587 Soft Condensed Matter +1607.00803 Astrophysics of Galaxies +1607.00851 Superconductivity +1607.00891 +1607.00907 Superconductivity +1607.00966 Disordered Systems and Neural Networks +1607.00988 Optics +1607.01028 Astrophysics of Galaxies +1607.01062 High Energy Astrophysical Phenomena +1607.01068 Statistical Mechanics +1607.01122 Statistical Mechanics +1607.01134 Physics and Society +1607.01242 Earth and Planetary Astrophysics +1607.01325 Atomic Physics +1607.01333 Superconductivity +1607.01407 Materials Science +1607.01454 +1607.01607 Materials Science +1607.01694 +1607.01701 Phenomenology +1607.01792 Earth and Planetary Astrophysics +1607.01857 Instrumentation and Detectors +1607.01858 Mesoscale and Nanoscale Physics +1607.01873 Theory +1607.02008 Solar and Stellar Astrophysics +1607.02055 Mesoscale and Nanoscale Physics +1607.02202 High Energy Astrophysical Phenomena +1607.02304 Astrophysics of Galaxies +1607.02350 Earth and Planetary Astrophysics +1607.02369 Instrumentation and Methods for Astrophysics +1607.02513 Solar and Stellar Astrophysics +1607.02542 Theory +1607.02629 Astrophysics of Galaxies +1607.02768 Cosmology and Nongalactic Astrophysics +1607.02799 Phenomenology +1607.02939 Phenomenology +1607.03041 Mesoscale and Nanoscale Physics +1607.03130 Solar and Stellar Astrophysics +1607.03314 Space Physics +1607.03394 +1607.03452 Operator Algebras +1607.03554 Astrophysics of Galaxies +1607.03713 Optics +1607.03753 Solar and Stellar Astrophysics +1607.03763 Theory +1607.03795 Robotics +1607.03917 Solar and Stellar Astrophysics +1607.03931 Phenomenology +1607.04000 Chaotic Dynamics +1607.04018 Phenomenology +1607.04225 Solar and Stellar Astrophysics +1607.04317 Statistical Mechanics +1607.04371 Lattice +1607.04489 +1607.04498 High Energy Astrophysical Phenomena +1607.04508 +1607.04575 Optics +1607.04685 Dynamical Systems +1607.04821 +1607.04863 +1607.04906 Astrophysics of Galaxies +1607.04914 Astrophysics of Galaxies +1607.04918 Phenomenology +1607.04995 High Energy Astrophysical Phenomena +1607.05062 +1607.05081 Classical Analysis and ODEs +1607.05219 Mesoscale and Nanoscale Physics +1607.05230 Materials Science +1607.05248 Earth and Planetary Astrophysics +1607.05263 Earth and Planetary Astrophysics +1607.05276 Phenomenology +1607.05413 +1607.05487 Astrophysics of Galaxies +1607.05540 Multiagent Systems +1607.05747 Quantum Algebra +1607.05872 Atomic and Molecular Clusters +1607.05873 Superconductivity +1607.05903 Cosmology and Nongalactic Astrophysics +1607.06005 Fluid Dynamics +1607.06111 Optics +1607.06265 Astrophysics of Galaxies +1607.06374 Robotics +1607.06452 Astrophysics of Galaxies +1607.06459 Astrophysics of Galaxies +1607.06465 Astrophysics of Galaxies +1607.06593 +1607.06723 Atomic Physics +1607.06736 Instrumentation and Detectors +1607.07008 Phenomenology +1607.07048 Space Physics +1607.07125 High Energy Astrophysical Phenomena +1607.07228 +1607.07258 Astrophysics of Galaxies +1607.07400 Experiment +1607.07435 Atomic Physics +1607.07548 Information Theory +1607.07637 Instrumentation and Methods for Astrophysics +1607.07850 High Energy Astrophysical Phenomena +1607.08022 Computer Vision and Pattern Recognition +1607.08099 Astrophysics of Galaxies +1607.08158 Solar and Stellar Astrophysics +1607.08178 High Energy Astrophysical Phenomena +1607.08193 +1607.08510 Computational Physics +1607.08619 Instrumentation and Methods for Astrophysics +1607.08759 Superconductivity +1607.08829 Strongly Correlated Electrons +1608.00047 Cosmology and Nongalactic Astrophysics +1608.00077 High Energy Astrophysical Phenomena +1608.00416 Adaptation and Self-Organizing Systems +1608.00444 Strongly Correlated Electrons +1608.00456 Solar and Stellar Astrophysics +1608.00626 Soft Condensed Matter +1608.00704 Machine Learning +1608.00706 Earth and Planetary Astrophysics +1608.00750 Instrumentation and Methods for Astrophysics +1608.00762 Computer Vision and Pattern Recognition +1608.00869 Computation and Language +1608.00983 Instrumentation and Methods for Astrophysics +1608.01248 Phenomenology +1608.01324 Cosmology and Nongalactic Astrophysics +1608.01480 +1608.01583 Geometric Topology +1608.01669 High Energy Astrophysical Phenomena +1608.01831 Solar and Stellar Astrophysics +1608.01843 Theory +1608.02073 Atomic Physics +1608.02075 +1608.02207 Differential Geometry +1608.02210 Astrophysics of Galaxies +1608.02212 Soft Condensed Matter +1608.02285 Phenomenology +1608.02304 Strongly Correlated Electrons +1608.02548 Fluid Dynamics +1608.02624 Chemical Physics +1608.02668 Cosmology and Nongalactic Astrophysics +1608.02785 Atomic Physics +1608.02851 +1608.02867 +1608.02920 Solar and Stellar Astrophysics +1608.03018 Strongly Correlated Electrons +1608.03021 +1608.03060 Astrophysics of Galaxies +1608.03093 Soft Condensed Matter +1608.03184 Materials Science +1608.03228 Strongly Correlated Electrons +1608.03271 Solar and Stellar Astrophysics +1608.03275 Strongly Correlated Electrons +1608.03347 Statistical Mechanics +1608.03349 Dynamical Systems +1608.03376 Atomic Physics +1608.03379 Chemical Physics +1608.03437 +1608.03623 Materials Science +1608.03773 Computer Vision and Pattern Recognition +1608.03897 High Energy Astrophysical Phenomena +1608.04013 Statistical Mechanics +1608.04056 Phenomenology +1608.04230 Instrumentation and Detectors +1608.04263 Strongly Correlated Electrons +1608.04277 +1608.04410 Superconductivity +1608.04424 Strongly Correlated Electrons +1608.04427 +1608.04515 Atomic Physics +1608.04521 High Energy Astrophysical Phenomena +1608.04528 Information Theory +1608.04709 Theory +1608.04715 Materials Science +1608.04747 Materials Science +1608.04828 Optics +1608.04898 Rings and Algebras +1608.05080 Astrophysics of Galaxies +1608.05227 Mesoscale and Nanoscale Physics +1608.05276 High Energy Astrophysical Phenomena +1608.05389 +1608.05447 Phenomenology +1608.05529 Classical Physics +1608.05571 Computer Vision and Pattern Recognition +1608.05817 Atomic Physics +1608.05986 Functional Analysis +1608.06087 Earth and Planetary Astrophysics +1608.06122 Mesoscale and Nanoscale Physics +1608.06371 Analysis of PDEs +1608.06387 Optics +1608.06526 Optics +1608.06660 Earth and Planetary Astrophysics +1608.06995 Astrophysics of Galaxies +1608.07139 Biological Physics +1608.07335 Statistical Mechanics +1608.07354 Quantum Gases +1608.07364 Neurons and Cognition +1608.07563 Optics +1608.07598 Applications +1608.07669 +1608.07677 Plasma Physics +1608.07741 +1608.07743 Software Engineering +1608.07782 Astrophysics of Galaxies +1608.07841 Numerical Analysis +1608.07873 Mesoscale and Nanoscale Physics +1608.08107 Mesoscale and Nanoscale Physics +1608.08241 Astrophysics of Galaxies +1608.08269 Soft Condensed Matter +1608.08370 Information Theory +1608.08628 Astrophysics of Galaxies +1608.08642 Solar and Stellar Astrophysics +1608.08682 Networking and Internet Architecture +1608.08719 Mesoscale and Nanoscale Physics +1608.08756 Earth and Planetary Astrophysics +1608.08947 Cosmology and Nongalactic Astrophysics +1608.08963 Cosmology and Nongalactic Astrophysics +1609.00029 Superconductivity +1609.00188 High Energy Astrophysical Phenomena +1609.00200 Instrumentation and Methods for Astrophysics +1609.00271 Rings and Algebras +1609.00305 +1609.00322 Logic in Computer Science +1609.00362 Solar and Stellar Astrophysics +1609.00391 Astrophysics of Galaxies +1609.00398 +1609.00537 Astrophysics of Galaxies +1609.00575 Astrophysics of Galaxies +1609.00601 Solar and Stellar Astrophysics +1609.00619 Soft Condensed Matter +1609.00621 Information Theory +1609.00640 High Energy Astrophysical Phenomena +1609.00761 +1609.00785 Strongly Correlated Electrons +1609.00892 High Energy Astrophysical Phenomena +1609.01005 Probability +1609.01114 Statistical Mechanics +1609.01162 Astrophysics of Galaxies +1609.01209 Astrophysics of Galaxies +1609.01299 Astrophysics of Galaxies +1609.01389 Applications +1609.01506 Astrophysics of Galaxies +1609.01515 Astrophysics of Galaxies +1609.01519 Instrumentation and Methods for Astrophysics +1609.01527 Solar and Stellar Astrophysics +1609.01595 Solar and Stellar Astrophysics +1609.01643 Commutative Algebra +1609.01740 Astrophysics of Galaxies +1609.01754 Soft Condensed Matter +1609.01779 Astrophysics of Galaxies +1609.01800 Astrophysics of Galaxies +1609.01851 Solar and Stellar Astrophysics +1609.01944 Atomic and Molecular Clusters +1609.01947 Chemical Physics +1609.02070 Atomic and Molecular Clusters +1609.02100 Statistical Mechanics +1609.02153 Solar and Stellar Astrophysics +1609.02222 Astrophysics of Galaxies +1609.02311 Astrophysics of Galaxies +1609.02316 Artificial Intelligence +1609.02358 Astrophysics of Galaxies +1609.02367 Astrophysics of Galaxies +1609.02379 Solar and Stellar Astrophysics +1609.02476 Instrumentation and Methods for Astrophysics +1609.02563 Earth and Planetary Astrophysics +1609.02570 Astrophysics of Galaxies +1609.02607 Solar and Stellar Astrophysics +1609.02619 Astrophysics of Galaxies +1609.02632 Astrophysics of Galaxies +1609.02635 Astrophysics of Galaxies +1609.02859 Earth and Planetary Astrophysics +1609.03037 Earth and Planetary Astrophysics +1609.03057 Computer Vision and Pattern Recognition +1609.03065 Instrumentation and Methods for Astrophysics +1609.03085 Mesoscale and Nanoscale Physics +1609.03135 Solar and Stellar Astrophysics +1609.03191 Human-Computer Interaction +1609.03197 Solar and Stellar Astrophysics +1609.03238 Astrophysics of Galaxies +1609.03350 High Energy Astrophysical Phenomena +1609.03397 Phenomenology +1609.03411 General Physics +1609.03453 Solar and Stellar Astrophysics +1609.03516 Mesoscale and Nanoscale Physics +1609.03518 Mesoscale and Nanoscale Physics +1609.03520 Solar and Stellar Astrophysics +1609.03558 Cosmology and Nongalactic Astrophysics +1609.03559 Astrophysics of Galaxies +1609.03571 Astrophysics of Galaxies +1609.03718 Materials Science +1609.03753 Astrophysics of Galaxies +1609.03775 Astrophysics of Galaxies +1609.03833 Astrophysics of Galaxies +1609.03843 Astrophysics of Galaxies +1609.03899 High Energy Astrophysical Phenomena +1609.03969 Solar and Stellar Astrophysics +1609.04170 High Energy Astrophysical Phenomena +1609.04226 Mesoscale and Nanoscale Physics +1609.04229 Mesoscale and Nanoscale Physics +1609.04239 Materials Science +1609.04266 Astrophysics of Galaxies +1609.04352 Astrophysics of Galaxies +1609.04407 Astrophysics of Galaxies +1609.04452 Earth and Planetary Astrophysics +1609.04478 Other Statistics +1609.04513 Metric Geometry +1609.04527 High Energy Astrophysical Phenomena +1609.04568 Mesoscale and Nanoscale Physics +1609.04664 Social and Information Networks +1609.04750 Number Theory +1609.04914 +1609.04937 Optics +1609.05058 Artificial Intelligence +1609.05103 Databases +1609.05124 Fluid Dynamics +1609.05294 Learning +1609.05618 Astrophysics of Galaxies +1609.05698 Instrumentation and Detectors +1609.05779 Dynamical Systems +1609.05803 Statistics Theory +1609.05824 Combinatorics +1609.05869 Lattice +1609.05890 +1609.05891 Geometric Topology +1609.05892 Rings and Algebras +1609.05893 +1609.05896 Physics and Society +1609.05909 Astrophysics of Galaxies +1609.05910 +1609.05913 High Energy Astrophysical Phenomena +1609.05915 +1609.05920 Optimization and Control +1609.05921 Optimization and Control +1609.05925 Dynamical Systems +1609.05927 Cosmology and Nongalactic Astrophysics +1609.05928 Biological Physics +1609.05930 Social and Information Networks +1609.05931 Earth and Planetary Astrophysics +1609.05934 Discrete Mathematics +1609.05936 Software Engineering +1609.05940 Instrumentation and Methods for Astrophysics +1609.05942 Computational Complexity +1609.05944 Information Theory +1609.05945 Differential Geometry +1609.05948 Numerical Analysis +1609.05950 Number Theory +1609.05952 Logic in Computer Science +1609.05954 Classical Analysis and ODEs +1609.05958 Algebraic Geometry +1609.05959 Machine Learning +1609.05960 Robotics +1609.05961 Optics +1609.05962 Physics and Society +1609.05963 +1609.05964 Classical Analysis and ODEs +1609.05965 Classical Analysis and ODEs +1609.05966 Optimization and Control +1609.05969 Populations and Evolution +1609.05970 Strongly Correlated Electrons +1609.05974 Probability +1609.05975 Geometric Topology +1609.05976 Logic +1609.05982 +1609.05985 +1609.05986 Differential Geometry +1609.05987 +1609.05988 Combinatorics +1609.05989 Artificial Intelligence +1609.05990 Optimization and Control +1609.05996 Dynamical Systems +1609.05998 Functional Analysis +1609.06000 Systems and Control +1609.06001 Probability +1609.06002 Analysis of PDEs +1609.06003 Dynamical Systems +1609.06004 Social and Information Networks +1609.06005 Soft Condensed Matter +1609.06009 +1609.06010 Combinatorics +1609.06011 +1609.06012 Networking and Internet Architecture +1609.06013 Accelerator Physics +1609.06015 Instrumentation and Methods for Astrophysics +1609.06016 Optimization and Control +1609.06017 Superconductivity +1609.06018 Computer Vision and Pattern Recognition +1609.06024 Computer Vision and Pattern Recognition +1609.06027 Information Theory +1609.06029 Statistics Theory +1609.06031 Methodology +1609.06032 +1609.06033 Functional Analysis +1609.06040 Fluid Dynamics +1609.06044 Numerical Analysis +1609.06045 Chemical Physics +1609.06050 Plasma Physics +1609.06051 Plasma Physics +1609.06053 Chemical Physics +1609.06055 Genomics +1609.06056 Earth and Planetary Astrophysics +1609.06057 Combinatorics +1609.06058 Algebraic Geometry +1609.06059 Chemical Physics +1609.06060 Differential Geometry +1609.06062 Experiment +1609.06063 Optics +1609.06064 Dynamical Systems +1609.06065 Information Theory +1609.06066 Number Theory +1609.06067 Number Theory +1609.06069 Neurons and Cognition +1609.06070 Applications +1609.06072 Statistical Mechanics +1609.06074 Computer Vision and Pattern Recognition +1609.06076 Computer Vision and Pattern Recognition +1609.06077 Group Theory +1609.06079 Superconductivity +1609.06080 Probability +1609.06081 Complex Variables +1609.06082 Computation and Language +1609.06083 Functional Analysis +1609.06085 Group Theory +1609.06086 Computational Engineering, Finance, and Science +1609.06088 Robotics +1609.06091 Strongly Correlated Electrons +1609.06095 Materials Science +1609.06097 Number Theory +1609.06098 Numerical Analysis +1609.06099 Materials Science +1609.06101 Representation Theory +1609.06102 Analysis of PDEs +1609.06105 Strongly Correlated Electrons +1609.06107 Populations and Evolution +1609.06108 Pattern Formation and Solitons +1609.06110 Materials Science +1609.06111 Combinatorics +1609.06112 Mesoscale and Nanoscale Physics +1609.06118 Computer Vision and Pattern Recognition +1609.06119 Learning +1609.06122 Materials Science +1609.06123 Optics +1609.06125 Differential Geometry +1609.06126 +1609.06127 Computation and Language +1609.06130 History and Philosophy of Physics +1609.06132 Geometric Topology +1609.06133 Classical Analysis and ODEs +1609.06136 Analysis of PDEs +1609.06137 Superconductivity +1609.06140 Fluid Dynamics +1609.06141 Computer Vision and Pattern Recognition +1609.06142 Instrumentation and Methods for Astrophysics +1609.06144 Machine Learning +1609.06145 Statistics Theory +1609.06146 Learning +1609.06147 Combinatorics +1609.06151 Classical Analysis and ODEs +1609.06153 Computational Engineering, Finance, and Science +1609.06157 Classical Analysis and ODEs +1609.06158 Differential Geometry +1609.06159 +1609.06160 Mesoscale and Nanoscale Physics +1609.06163 General Physics +1609.06164 General Physics +1609.06165 Mesoscale and Nanoscale Physics +1609.06166 Geometric Topology +1609.06167 Mesoscale and Nanoscale Physics +1609.06170 Atmospheric and Oceanic Physics +1609.06171 Combinatorics +1609.06172 Metric Geometry +1609.06174 Other Condensed Matter +1609.06175 Superconductivity +1609.06176 Mesoscale and Nanoscale Physics +1609.06178 Classical Physics +1609.06179 Superconductivity +1609.06180 Rings and Algebras +1609.06184 Number Theory +1609.06188 Computer Vision and Pattern Recognition +1609.06189 +1609.06192 Computer Vision and Pattern Recognition +1609.06194 Complex Variables +1609.06196 Statistical Mechanics +1609.06197 Instrumentation and Methods for Astrophysics +1609.06199 Quantum Algebra +1609.06204 Computation and Language +1609.06206 Phenomenology +1609.06208 General Physics +1609.06209 +1609.06214 Functional Analysis +1609.06215 +1609.06217 Optimization and Control +1609.06219 Algebraic Topology +1609.06221 Artificial Intelligence +1609.06223 Optimization and Control +1609.06224 +1609.06226 Quantum Gases +1609.06232 Classical Analysis and ODEs +1609.06233 Strongly Correlated Electrons +1609.06234 Differential Geometry +1609.06236 Numerical Analysis +1609.06238 Other Condensed Matter +1609.06239 Computation and Language +1609.06241 Other Condensed Matter +1609.06244 Optimization and Control +1609.06245 Methodology +1609.06246 General Topology +1609.06252 Robotics +1609.06253 Group Theory +1609.06256 Representation Theory +1609.06257 Combinatorics +1609.06258 Systems and Control +1609.06259 Differential Geometry +1609.06260 Computer Vision and Pattern Recognition +1609.06264 +1609.06266 Software Engineering +1609.06267 Fluid Dynamics +1609.06268 Artificial Intelligence +1609.06269 +1609.06270 Networking and Internet Architecture +1609.06272 +1609.06273 Instrumentation and Detectors +1609.06274 Commutative Algebra +1609.06276 Quantum Algebra +1609.06277 Robotics +1609.06280 Materials Science +1609.06281 Emerging Technologies +1609.06282 +1609.06283 Systems and Control +1609.06286 Analysis of PDEs +1609.06288 Group Theory +1609.06290 Formal Languages and Automata Theory +1609.06297 Logic in Computer Science +1609.06298 Theory +1609.06299 Superconductivity +1609.06301 Mesoscale and Nanoscale Physics +1609.06306 +cond-mat/0004088 +hep-ph/0201299 Phenomenology +math-ph/0403041 +math-ph/9801205 +math/9802076 Quantum Algebra +nlin/0107075 Exactly Solvable and Integrable Systems +nlin/0201040 Exactly Solvable and Integrable Systems +nucl-th/9503007 +physics/0007069 Atomic Physics +quant-ph/0004014 +quant-ph/0006064 +quant-ph/0309169 +0704.3725 Differential Geometry +0712.0087 Other Condensed Matter +0904.1599 Differential Geometry +1007.2892 +1009.0679 Probability +1202.1928 Probability +1209.3619 Probability +1210.3024 Geophysics +1212.4122 Theory +1301.5620 Mesoscale and Nanoscale Physics +1303.1544 +1304.3667 Chaotic Dynamics +1304.6772 Statistics Theory +1305.4669 Methodology +1308.0611 Combinatorics +1308.6306 Statistics Theory +1310.1694 Differential Geometry +1310.8464 Symplectic Geometry +1311.3646 Information Theory +1312.1316 +1312.2690 Optimization and Control +1402.3420 Chaotic Dynamics +1402.5570 Algebraic Geometry +1403.4981 Probability +1404.3749 Probability +1405.3813 Statistical Mechanics +1406.4425 Discrete Mathematics +1406.7180 Probability +1407.1809 Systems and Control +1407.7305 Logic in Computer Science +1408.6821 Combinatorics +1409.0139 Spectral Theory +1409.1748 Physics and Society +1409.1838 Quantitative Methods +1409.1839 Logic +1409.3953 Differential Geometry +1410.2213 Strongly Correlated Electrons +1410.2534 Theory +1411.0149 Artificial Intelligence +1411.1326 Materials Science +1412.0685 K-Theory and Homology +1412.2393 +1412.4055 Systems and Control +1412.4056 Systems and Control +1412.4490 Statistical Mechanics +1501.04608 Geophysics +1501.06860 Theory +1502.02199 Combinatorics +1502.02561 Dynamical Systems +1502.07267 Emerging Technologies +1502.07282 Networking and Internet Architecture +1503.02590 Dynamical Systems +1504.01339 Computational Complexity +1504.02843 Systems and Control +1504.02861 Logic in Computer Science +1504.05134 Probability +1504.08190 Systems and Control +1504.08196 Systems and Control +1504.08226 +1505.02390 Methodology +1505.03601 Theory +1505.03896 Representation Theory +1505.05006 Probability +1505.08034 +1506.00621 Cosmology and Nongalactic Astrophysics +1506.01417 Optimization and Control +1506.02889 +1506.04267 +1506.05764 Statistical Mechanics +1507.00089 Number Theory +1507.04859 Optics +1507.05485 Numerical Analysis +1507.05976 Phenomenology +1507.07605 Discrete Mathematics +1507.08184 Computer Vision and Pattern Recognition +1507.08449 Computation and Language +1507.08457 +1507.08713 Portfolio Management +1508.00836 Mesoscale and Nanoscale Physics +1508.03882 Computational Engineering, Finance, and Science +1508.04841 Methodology +1508.05401 Combinatorics +1508.07145 +1508.07512 Probability +1509.02530 Phenomenology +1509.02872 Statistics Theory +1509.03768 Number Theory +1509.04144 +1509.04928 Theory +1509.05343 Phenomenology +1509.05676 Functional Analysis +1509.06151 Optics +1509.07588 Computational Complexity +1509.08707 Soft Condensed Matter +1509.09314 Geometric Topology +1510.00014 Theory +1510.01069 Classical Analysis and ODEs +1510.01344 Computer Vision and Pattern Recognition +1510.02394 Combinatorics +1510.02455 Analysis of PDEs +1510.02720 +1510.05278 Cryptography and Security +1510.08171 Computational Physics +1510.08475 Phenomenology +1510.09164 +1511.01675 +1511.01742 Mesoscale and Nanoscale Physics +1511.02446 Mesoscale and Nanoscale Physics +1511.04074 Theory +1511.06170 Experiment +1511.06365 Astrophysics of Galaxies +1511.07867 Statistical Mechanics +1512.00257 Physics and Society +1512.00276 Operator Algebras +1512.00713 +1512.00766 Algebraic Geometry +1512.01759 Optimization and Control +1512.02065 +1512.03620 Theory +1512.03898 Classical Analysis and ODEs +1512.04006 +1512.06835 +1512.07769 Cosmology and Nongalactic Astrophysics +1512.08105 Phenomenology +1512.08856 +1601.00977 Phenomenology +1601.00981 Strongly Correlated Electrons +1601.02608 Astrophysics of Galaxies +1601.03376 Materials Science +1601.04593 +1601.04977 Strongly Correlated Electrons +1601.05916 Strongly Correlated Electrons +1601.06101 Information Theory +1601.06407 +1601.07054 Data Analysis, Statistics and Probability +1601.07339 Phenomenology +1602.00974 Optics +1602.01049 Numerical Analysis +1602.03032 Neural and Evolutionary Computing +1602.03230 Combinatorics +1602.03425 Analysis of PDEs +1602.03523 +1602.04821 Phenomenology +1602.04929 Fluid Dynamics +1602.04963 High Energy Astrophysical Phenomena +1602.05588 Phenomenology +1602.05964 Strongly Correlated Electrons +1602.05969 Strongly Correlated Electrons +1602.06130 Materials Science +1602.06265 Materials Science +1602.06456 Information Theory +1602.08027 Quantum Gases +1602.08122 Geometric Topology +1602.08480 Strongly Correlated Electrons +1603.00043 +1603.00165 Cosmology and Nongalactic Astrophysics +1603.00719 Theory +1603.01894 Rings and Algebras +1603.02621 Dynamical Systems +1603.03116 Learning +1603.03744 Accelerator Physics +1603.05158 Soft Condensed Matter +1603.05655 Astrophysics of Galaxies +1603.05703 Atomic Physics +1603.06037 Analysis of PDEs +1603.06240 Data Analysis, Statistics and Probability +1603.06844 Logic in Computer Science +1603.06916 Optimization and Control +1603.07713 Group Theory +1603.07878 Strongly Correlated Electrons +1603.08776 Artificial Intelligence +1604.00227 +1604.01147 Optimization and Control +1604.01267 +1604.01531 Phenomenology +1604.04922 Fluid Dynamics +1604.05964 Information Theory +1604.06454 Metric Geometry +1604.07804 Materials Science +1604.08463 Phenomenology +1604.08910 Computer Science and Game Theory +1605.00746 +1605.01113 Strongly Correlated Electrons +1605.01141 Computer Vision and Pattern Recognition +1605.02534 Logic +1605.04355 Differential Geometry +1605.04474 Phenomenology +1605.04499 +1605.04719 Social and Information Networks +1605.04987 Chemical Physics +1605.05104 Logic in Computer Science +1605.05312 Materials Science +1605.05339 Optimization and Control +1605.05572 Information Theory +1605.05683 Probability +1605.05711 Optimization and Control +1605.05724 Functional Analysis +1605.05728 Astrophysics of Galaxies +1605.05735 Rings and Algebras +1605.05736 Materials Science +1605.05744 Representation Theory +1605.05745 Algebraic Geometry +1605.05750 Numerical Analysis +1605.05751 +1605.05753 Performance +1605.05755 Differential Geometry +1605.05758 Multimedia +1605.05762 Experiment +1605.05764 Combinatorics +1605.05765 Number Theory +1605.05766 Operator Algebras +1605.05767 Emerging Technologies +1605.05768 Quantum Gases +1605.05770 Optics +1605.05771 Astrophysics of Galaxies +1605.05773 Distributed, Parallel, and Cluster Computing +1605.05778 Earth and Planetary Astrophysics +1605.05779 Applications +1605.05780 Chaotic Dynamics +1605.05782 Neural and Evolutionary Computing +1605.05783 Commutative Algebra +1605.05784 Applications +1605.05786 Robotics +1605.05787 Computational Physics +1605.05789 Numerical Analysis +1605.05791 Computer Vision and Pattern Recognition +1605.05798 Statistics Theory +1605.05799 Learning +1605.05801 Algebraic Geometry +1605.05802 Mathematical Finance +1605.05803 Mesoscale and Nanoscale Physics +1605.05809 +1605.05810 Operating Systems +1605.05812 Classical Analysis and ODEs +1605.05814 Computational Finance +1605.05815 Computer Vision and Pattern Recognition +1605.05823 Optimization and Control +1605.05824 General Mathematics +1605.05825 Optimization and Control +1605.05826 Databases +1605.05828 Operator Algebras +1605.05831 Materials Science +1605.05832 Instrumentation and Methods for Astrophysics +1605.05835 Optimization and Control +1605.05836 Computational Complexity +1605.05841 Cryptography and Security +1605.05846 +1605.05847 Cryptography and Security +1605.05850 Software Engineering +1605.05851 Dynamical Systems +1605.05855 Phenomenology +1605.05861 Information Theory +1605.05862 Information Theory +1605.05863 Computer Vision and Pattern Recognition +1605.05865 Exactly Solvable and Integrable Systems +1605.05867 Soft Condensed Matter +1605.05868 Phenomenology +1605.05870 Social and Information Networks +1605.05876 Fluid Dynamics +1605.05878 Probability +1605.05879 Mesoscale and Nanoscale Physics +1605.05882 Theory +1605.05883 Analysis of PDEs +1605.05886 Differential Geometry +1605.05890 High Energy Astrophysical Phenomena +1605.05891 Quantitative Methods +1605.05892 Soft Condensed Matter +1605.05893 Applications +1605.05895 Analysis of PDEs +1605.05896 Materials Science +1605.05901 Information Theory +1605.05903 Materials Science +1605.05906 Computation and Language +1605.05910 Methodology +1605.05911 Theory +1605.05912 Computer Vision and Pattern Recognition +1605.05913 Differential Geometry +1605.05916 Number Theory +1605.05917 Geometric Topology +1605.05923 Computer Vision and Pattern Recognition +1605.05925 Dynamical Systems +1605.05926 Probability +1605.05927 Number Theory +1605.05929 Discrete Mathematics +1605.05936 Optics +1605.05937 Computer Vision and Pattern Recognition +1605.05938 Materials Science +1605.05939 Group Theory +1605.05941 Numerical Analysis +1605.05942 Combinatorics +1605.05947 +1605.05950 Artificial Intelligence +1605.05953 Representation Theory +1605.05955 Commutative Algebra +1605.05959 Analysis of PDEs +1605.05960 Analysis of PDEs +1605.05962 Fluid Dynamics +1605.05963 Formal Languages and Automata Theory +1605.05965 Probability +1605.05966 Artificial Intelligence +1605.05967 Computer Vision and Pattern Recognition +1605.05972 Information Theory +1605.05973 Cosmology and Nongalactic Astrophysics +1605.05977 Computer Vision and Pattern Recognition +1605.05981 Plasma Physics +1605.05985 Methodology +1605.05990 Information Theory +1605.05991 Combinatorics +1605.05994 Group Theory +1605.05996 Dynamical Systems +1605.05997 Materials Science +1605.05998 Computational Physics +1605.06004 Fluid Dynamics +1605.06006 Materials Science +1605.06010 Dynamical Systems +1605.06014 Materials Science +1605.06018 General Mathematics +1605.06020 Networking and Internet Architecture +1605.06021 +1605.06024 +1605.06025 Methodology +1605.06028 +1605.06032 Earth and Planetary Astrophysics +1605.06036 Mesoscale and Nanoscale Physics +1605.06037 Number Theory +1605.06038 Mesoscale and Nanoscale Physics +1605.06041 Optics +1605.06042 Experiment +1605.06046 Materials Science +1605.06047 Artificial Intelligence +1605.06048 Artificial Intelligence +1605.06050 Operator Algebras +1605.06052 Computer Vision and Pattern Recognition +1605.06053 +1605.06058 Mesoscale and Nanoscale Physics +1605.06059 Phenomenology +1605.06064 Methodology +1605.06065 Learning +1605.06067 Materials Science +1605.06068 Chaotic Dynamics +1605.06070 Mesoscale and Nanoscale Physics +1605.06071 Classical Analysis and ODEs +1605.06076 Learning +1605.06079 Number Theory +1605.06082 Statistical Mechanics +1605.06083 Computation and Language +1605.06085 Geophysics +1605.06087 Combinatorics +1605.06090 Algebraic Geometry +1605.06094 Computer Vision and Pattern Recognition +1605.06095 Functional Analysis +1605.06100 Theory +1605.06102 Cosmology and Nongalactic Astrophysics +1605.06105 Geometric Topology +1605.06106 Computer Vision and Pattern Recognition +cond-mat/0212095 Materials Science +hep-th/9305141 Theory +math/0202049 Algebraic Topology +math/0203016 Geometric Topology +math/0210352 Differential Geometry +0903.4544 Differential Geometry +1009.2007 +1011.4084 Geometric Topology +1012.4063 Atomic Physics +1106.0765 Algebraic Geometry +1108.2018 Computer Science and Game Theory +1109.5531 Discrete Mathematics +1205.4756 Phenomenology +1210.5102 Functional Analysis +1211.0873 Algebraic Topology +1212.5324 Computational Complexity +1303.3387 Dynamical Systems +1303.6083 +1304.1307 Computational Complexity +1305.3996 Phenomenology +1306.1931 Combinatorics +1312.1659 +1401.3556 Information Theory +1401.3569 Information Theory +1402.1682 Information Theory +1402.4303 Multiagent Systems +1404.3847 Algebraic Geometry +1405.6349 Number Theory +1405.6992 Representation Theory +1406.0054 +1406.1039 Analysis of PDEs +1406.2477 +1406.5396 Combinatorics +1407.1497 Information Theory +1407.3294 Algebraic Geometry +1407.6673 Classical Analysis and ODEs +1408.5027 Discrete Mathematics +1409.0059 Combinatorics +1410.4230 Analysis of PDEs +1411.0357 Materials Science +1411.2664 Learning +1411.5178 Information Theory +1411.5194 Combinatorics +1412.3759 Commutative Algebra +1412.5225 Materials Science +1412.5466 Information Theory +1412.6165 Functional Analysis +1412.8012 Dynamical Systems +1501.05032 Materials Science +1501.05250 Representation Theory +1501.05363 K-Theory and Homology +1501.05930 Information Theory +1501.06172 Optimization and Control +1501.06871 Strongly Correlated Electrons +1502.00090 Dynamical Systems +1502.00139 Statistics Theory +1502.01013 Probability +1502.01486 Differential Geometry +1502.01714 +1502.07376 Materials Science +1502.07523 Statistics Theory +1503.00190 Discrete Mathematics +1503.00485 +1503.01133 Probability +1503.02311 Analysis of PDEs +1503.02492 Probability +1503.03115 +1503.07108 Mesoscale and Nanoscale Physics +1503.07928 Analysis of PDEs +1503.08365 Number Theory +1504.01600 Analysis of PDEs +1504.02039 Instrumentation and Detectors +1504.02110 Space Physics +1504.03854 Instrumentation and Methods for Astrophysics +1504.04286 Theory +1504.06275 Materials Science +1504.06694 Number Theory +1505.00396 Information Theory +1505.03829 Algebraic Geometry +1505.06595 Geometric Topology +1505.07970 Mesoscale and Nanoscale Physics +1506.02005 Systems and Control +1506.03486 Machine Learning +1506.04464 Materials Science +1506.05011 Machine Learning +1506.06486 Numerical Analysis +1506.07617 +1506.08387 Machine Learning +1506.08404 Analysis of PDEs +1506.08451 Functional Analysis +1506.09167 Materials Science +1506.09200 Numerical Analysis +1507.02268 Data Structures and Algorithms +1507.02455 Information Theory +1507.03962 Statistical Mechanics +1507.04960 Soft Condensed Matter +1507.05703 Optimization and Control +1507.07688 Artificial Intelligence +1508.00123 Data Structures and Algorithms +1508.00283 +1508.01722 Computer Vision and Pattern Recognition +1508.02212 Information Theory +1508.02311 Superconductivity +1508.02828 Materials Science +1508.03168 Operator Algebras +1508.03830 Number Theory +1508.04072 Optics +1508.04288 Phenomenology +1508.04291 Phenomenology +1508.04799 Solar and Stellar Astrophysics +1508.05485 +1508.06575 Instrumentation and Detectors +1508.07091 Learning +1508.07451 Combinatorics +1508.07538 +1509.01600 Information Theory +1509.01992 High Energy Astrophysical Phenomena +1509.02669 Instrumentation and Detectors +1509.03727 Atomic Physics +1509.04088 Group Theory +1509.05568 Superconductivity +1509.06051 Experiment +1509.07146 Theory +1509.07253 Atomic Physics +1509.07643 Analysis of PDEs +1509.08872 Soft Condensed Matter +1510.03049 Materials Science +1510.04087 +1510.05094 Mesoscale and Nanoscale Physics +1510.06405 Phenomenology +1510.08192 Commutative Algebra +1510.08628 Machine Learning +1511.00150 Cryptography and Security +1511.00290 Algebraic Geometry +1511.00556 Instrumentation and Detectors +1511.02379 Logic +1511.03287 Mesoscale and Nanoscale Physics +1511.03429 History and Philosophy of Physics +1511.03547 Commutative Algebra +1511.03572 +1511.05195 Optics +1511.05614 Applications +1511.05939 Machine Learning +1511.06018 Computation and Language +1511.06085 Computer Vision and Pattern Recognition +1511.06226 Phenomenology +1511.06238 Learning +1511.06385 Learning +1511.07069 Computer Vision and Pattern Recognition +1511.07947 Number Theory +1511.08233 Superconductivity +1512.00348 General Topology +1512.00833 Phenomenology +1512.01441 Computational Physics +1512.01486 Dynamical Systems +1512.01779 Computation +1512.02232 Theory +1512.03922 Physics and Society +1512.03981 +1512.04195 Logic +1512.05082 Strongly Correlated Electrons +1512.05663 +1512.05921 Combinatorics +1512.06497 +1512.06897 Geometric Topology +1512.07829 +1601.00079 +1601.00120 Statistical Mechanics +1601.01219 Mesoscale and Nanoscale Physics +1601.01495 Experiment +1601.01646 Fluid Dynamics +1601.02279 Materials Science +1601.02404 Molecular Networks +1601.03370 Logic in Computer Science +1601.03426 Representation Theory +1601.04711 Astrophysics of Galaxies +1601.05198 Differential Geometry +1601.06052 Earth and Planetary Astrophysics +1601.06137 Combinatorics +1601.06176 Adaptation and Self-Organizing Systems +1601.07664 Rings and Algebras +1602.00951 Mesoscale and Nanoscale Physics +1602.01286 Combinatorics +1602.02846 Algebraic Geometry +1602.03711 Theory +1602.04223 Soft Condensed Matter +1602.04245 Number Theory +1602.04923 Instrumentation and Detectors +1602.05149 Machine Learning +1602.07050 +1602.07644 Biological Physics +1602.07946 History and Overview +1602.07952 History and Overview +1602.08035 Phenomenology +1602.08509 Optimization and Control +1602.08745 Differential Geometry +1602.08804 Theory +1602.08820 Data Structures and Algorithms +1602.08827 Number Theory +1602.08949 +1602.08982 History and Overview +1603.00084 +1603.00117 Theory +1603.00123 +1603.00221 Biological Physics +1603.00229 Social and Information Networks +1603.00326 Commutative Algebra +1603.00472 +1603.00475 Astrophysics of Galaxies +1603.00483 Materials Science +1603.00486 Strongly Correlated Electrons +1603.00490 Soft Condensed Matter +1603.00491 Numerical Analysis +1603.00492 Astrophysics of Galaxies +1603.00493 Instrumentation and Detectors +1603.00502 Computer Vision and Pattern Recognition +1603.00503 Geometric Topology +1603.00506 Functional Analysis +1603.00508 Rings and Algebras +1603.00510 Algebraic Geometry +1603.00514 Superconductivity +1603.00515 Plasma Physics +1603.00518 Fluid Dynamics +1603.00520 Differential Geometry +1603.00521 Combinatorics +1603.00522 Learning +1603.00525 Logic +1603.00530 +1603.00532 Human-Computer Interaction +1603.00536 Logic in Computer Science +1603.00539 Atmospheric and Oceanic Physics +1603.00542 Databases +1603.00554 +1603.00556 Dynamical Systems +1603.00564 Learning +1603.00566 Algebraic Geometry +1603.00568 Risk Management +1603.00571 History and Overview +1603.00572 Cryptography and Security +1603.00573 Systems and Control +1603.00576 Optimization and Control +1603.00577 Operator Algebras +1603.00578 Combinatorics +1603.00579 Atmospheric and Oceanic Physics +1603.00581 High Energy Astrophysical Phenomena +1603.00582 Geometric Topology +1603.00583 Robotics +1603.00584 Geometric Topology +1603.00585 Networking and Internet Architecture +1603.00587 Information Theory +1603.00588 Cryptography and Security +1603.00589 Networking and Internet Architecture +1603.00590 Metric Geometry +1603.00592 Biological Physics +1603.00593 Optics +1603.00595 Classical Physics +1603.00596 Statistics Theory +1603.00597 Spectral Theory +1603.00600 Information Theory +1603.00605 Materials Science +1603.00611 Optimization and Control +1603.00612 Analysis of PDEs +1603.00613 Probability +1603.00617 Numerical Analysis +1603.00618 Algebraic Geometry +1603.00619 Robotics +1603.00621 Physics and Society +1603.00623 Materials Science +1603.00628 Differential Geometry +1603.00629 +1603.00630 Atomic and Molecular Clusters +1603.00632 Numerical Analysis +1603.00636 Software Engineering +1603.00646 Computers and Society +1603.00650 General Topology +1603.00656 Robotics +1603.00657 Materials Science +1603.00660 Optimization and Control +1603.00661 Probability +1603.00662 Probability +1603.00666 Algebraic Geometry +1603.00669 Statistical Mechanics +1603.00673 Number Theory +1603.00674 Complex Variables +1603.00675 Fluid Dynamics +1603.00677 Probability +1603.00684 Number Theory +1603.00689 Complex Variables +1603.00690 Probability +1603.00695 Subcellular Processes +1603.00697 Spectral Theory +1603.00698 Medical Physics +1603.00699 +1603.00705 Materials Science +1603.00706 Analysis of PDEs +1603.00708 Phenomenology +1603.00709 Learning +1603.00713 Graphics +1603.00717 Optimization and Control +1603.00724 Theory +1603.00728 +1603.00733 Rings and Algebras +1603.00734 Instrumentation and Detectors +1603.00735 Differential Geometry +1603.00737 Algebraic Geometry +1603.00738 Other Statistics +1603.00739 Number Theory +1603.00740 Metric Geometry +1603.00745 Mesoscale and Nanoscale Physics +1603.00747 Distributed, Parallel, and Cluster Computing +1603.00748 Learning +1603.00751 Learning +1603.00753 Representation Theory +1603.00754 Dynamical Systems +1603.00756 Analysis of PDEs +1603.00760 Number Theory +1603.00762 Information Theory +1603.00764 Analysis of PDEs +1603.00770 Data Structures and Algorithms +1603.00771 Analysis of PDEs +1603.00774 Number Theory +1603.00778 Materials Science +1603.00780 Group Theory +1603.00783 Analysis of PDEs +1603.00784 Statistics Theory +1603.00787 Algebraic Geometry +1603.00788 Machine Learning +1603.00793 Materials Science +1603.00794 Robotics +1603.00795 Chemical Physics +1603.00796 Representation Theory +1603.00798 Materials Science +1603.00800 Statistics Theory +1603.00801 Astrophysics of Galaxies +1603.00803 Differential Geometry +1603.00807 Category Theory +1603.00808 Dynamical Systems +1603.00809 Numerical Analysis +1603.00812 Digital Libraries +1603.00813 Number Theory +1603.00817 Medical Physics +1603.00820 Solar and Stellar Astrophysics +1603.00822 Category Theory +1603.00825 +1603.00829 +1603.00835 Soft Condensed Matter +1603.00836 Instrumentation and Methods for Astrophysics +1603.00837 Soft Condensed Matter +1603.00838 Logic in Computer Science +1603.00840 Superconductivity +1603.00841 Computer Vision and Pattern Recognition +1603.00845 Computer Vision and Pattern Recognition +1603.00848 +1603.00854 Dynamical Systems +1603.00855 Number Theory +1603.00860 Dynamical Systems +1603.00862 Combinatorics +1605.09081 Other Statistics +1610.00504 Plasma Physics +1610.00752 Computational Geometry +1610.03951 Complex Variables +1610.05879 Numerical Analysis +1610.06048 Learning +1610.06723 Phenomenology +1610.06850 Classical Analysis and ODEs +1610.07590 Information Theory +1610.08461 Discrete Mathematics +1610.08713 Software Engineering +1610.08726 Combinatorics +1610.08851 Computer Vision and Pattern Recognition +1610.08973 Mesoscale and Nanoscale Physics +0902.3073 Classical Analysis and ODEs +0903.4970 Complex Variables +1101.5511 Strongly Correlated Electrons +1104.4008 Number Theory +1104.4011 Number Theory +1104.4631 Functional Analysis +1111.6254 Machine Learning +1111.6285 Machine Learning +1201.2711 Artificial Intelligence +1203.3088 Probability +1206.1454 Number Theory +1207.5562 Instrumentation and Methods for Astrophysics +1208.2955 Computational Complexity +1209.4849 General Finance +1210.0671 General Topology +1212.0205 Number Theory +1304.5982 Applications +1305.2082 Dynamical Systems +1305.4825 Statistics Theory +1306.2508 Statistical Finance +1307.3634 Differential Geometry +1307.5577 Algebraic Geometry +1312.7061 Probability +1312.7650 Information Theory +1401.0479 Algebraic Geometry +1401.1219 +1401.1667 Computation +1401.2098 Optics +1401.6418 Combinatorics +1402.3320 Analysis of PDEs +1402.4975 +1403.6637 Computational Geometry +1404.0478 Group Theory +1405.5713 Numerical Analysis +1406.0655 Number Theory +1406.2267 Instrumentation and Methods for Astrophysics +1406.6459 Theory +1409.4055 Geometric Topology +1410.0246 Group Theory +1410.1281 Probability +1410.6120 Classical Analysis and ODEs +1411.0628 Computational Complexity +1411.3102 +1411.3613 Soft Condensed Matter +1411.5649 Learning +1411.7425 Combinatorics +1412.1634 Classical Analysis and ODEs +1412.4077 +1412.4085 Rings and Algebras +1412.7183 Symplectic Geometry +1501.00726 Geometric Topology +1501.01137 Experiment +1501.02609 Mesoscale and Nanoscale Physics +1501.04746 +1501.04849 Applications +1501.05445 Numerical Analysis +1502.00822 Number Theory +1502.05347 Robotics +1502.06014 Functional Analysis +1502.07112 Mesoscale and Nanoscale Physics +1502.07659 Data Structures and Algorithms +1502.08014 Rings and Algebras +1503.02525 Combinatorics +1503.03396 Representation Theory +1503.07674 Strongly Correlated Electrons +1503.08954 Analysis of PDEs +1504.08195 Optimization and Control +1505.05116 Optimization and Control +1506.01629 Functional Analysis +1506.01661 General Topology +1506.02882 +1506.02993 Mesoscale and Nanoscale Physics +1506.04558 Geometric Topology +1506.04908 Learning +1506.06197 K-Theory and Homology +1506.06396 Theory +1506.06885 Statistical Mechanics +1506.09183 Probability +1507.00943 Systems and Control +1507.02863 Complex Variables +1507.03164 Theory +1507.04659 Analysis of PDEs +1507.05769 Optimization and Control +1507.06211 Complex Variables +1507.06960 Statistical Mechanics +1507.07031 Number Theory +1507.07136 Complex Variables +1508.01069 Category Theory +1508.02120 Instrumentation and Methods for Astrophysics +1508.03596 Analysis of PDEs +1508.03715 Optimization and Control +1508.04080 Optimization and Control +1508.05479 +1508.07474 Differential Geometry +1509.01436 Rings and Algebras +1509.01483 General Finance +1509.02439 Programming Languages +1509.04078 Logic +1509.07563 Phenomenology +1509.07801 Materials Science +1509.08443 Distributed, Parallel, and Cluster Computing +1509.09127 Analysis of PDEs +1510.00238 Logic +1510.01654 Data Analysis, Statistics and Probability +1510.02335 Combinatorics +1510.02366 Analysis of PDEs +1510.02976 Quantum Gases +1510.03148 +1510.04176 Classical Analysis and ODEs +1510.04469 Logic in Computer Science +1510.04895 Numerical Analysis +1510.05592 Operator Algebras +1510.06124 Social and Information Networks +1510.06278 Logic +1510.06383 Soft Condensed Matter +1510.07380 Robotics +1510.08666 Group Theory +1510.08876 Classical Analysis and ODEs +1511.00975 Cosmology and Nongalactic Astrophysics +1511.03643 Machine Learning +1511.04046 Theory +1511.05018 Strongly Correlated Electrons +1511.06046 Strongly Correlated Electrons +1511.06797 Cosmology and Nongalactic Astrophysics +1511.06835 Probability +1511.08157 Number Theory +1512.00108 Phenomenology +1512.00296 Human-Computer Interaction +1512.01753 Strongly Correlated Electrons +1512.03118 +1512.04619 Optimization and Control +1512.04841 Atomic and Molecular Clusters +1512.05297 Instrumentation and Detectors +1512.06202 Combinatorics +1512.06231 Optics +1512.06611 General Topology +1512.07208 Applications +1512.07386 Strongly Correlated Electrons +1512.07990 +1512.08246 Mesoscale and Nanoscale Physics +1512.08780 Phenomenology +1512.09292 Phenomenology +1601.01564 Strongly Correlated Electrons +1601.01735 +1601.01913 Number Theory +1601.03936 +1601.04387 Materials Science +1601.04608 Statistical Mechanics +1601.06857 +1601.07294 Materials Science +1601.08057 Computation +1602.00282 Populations and Evolution +1602.00901 Algebraic Geometry +1602.01246 Symbolic Computation +1602.02289 Combinatorics +1602.02427 Exactly Solvable and Integrable Systems +1602.02650 Superconductivity +1602.03330 Strongly Correlated Electrons +1602.03395 Quantum Gases +1602.04304 +1602.05521 Information Theory +1602.07713 Classical Analysis and ODEs +1602.08884 Instrumentation and Detectors +1602.08965 Combinatorics +1603.00077 Combinatorics +1603.00722 Classical Analysis and ODEs +1603.00763 Number Theory +1603.00894 Combinatorics +1603.01699 Cryptography and Security +1603.01935 Strongly Correlated Electrons +1603.02872 Statistical Mechanics +1603.03204 Analysis of PDEs +1603.03713 Learning +1603.03897 +1603.03948 +1603.04134 Robotics +1603.04354 +1603.04688 Theory +1603.04842 Probability +1603.05097 Systems and Control +1603.06287 +1603.06441 Dynamical Systems +1603.06679 Computation and Language +1603.07181 Information Theory +1603.07788 Differential Geometry +1603.07804 Optics +1603.08360 Dynamical Systems +1603.08934 Mesoscale and Nanoscale Physics +1603.08981 Learning +1604.00095 Phenomenology +1604.00448 Analysis of PDEs +1604.00732 Mesoscale and Nanoscale Physics +1604.00738 Algebraic Geometry +1604.00860 Methodology +1604.01210 Applications +1604.02547 Algebraic Geometry +1604.03207 Phenomenology +1604.03336 Learning +1604.04105 Fluid Dynamics +1604.04519 +1604.04671 +1604.04702 Theory +1604.04948 High Energy Astrophysical Phenomena +1604.05012 +1604.05482 Chemical Physics +1604.05967 Mesoscale and Nanoscale Physics +1604.06910 Statistical Mechanics +1604.07106 +1604.07543 Cryptography and Security +1604.08045 Neurons and Cognition +1604.08142 Mesoscale and Nanoscale Physics +1605.00383 +1605.01269 Plasma Physics +1605.01369 Learning +1605.01996 Superconductivity +1605.02329 Experiment +1605.03221 Functional Analysis +1605.03532 Differential Geometry +1605.04329 Quantum Gases +1605.04726 Statistical Mechanics +1605.04835 Formal Languages and Automata Theory +1605.05255 Fluid Dynamics +1605.05411 Computer Vision and Pattern Recognition +1605.05875 Information Theory +1605.06294 Optimization and Control +1605.06369 Cryptography and Security +1605.06440 Number Theory +1605.06884 Networking and Internet Architecture +1605.06960 High Energy Astrophysical Phenomena +1605.07042 Probability +1605.07106 Materials Science +1605.07625 Theory +1605.07633 Phenomenology +1605.07784 Information Theory +1605.08179 Machine Learning +1605.08355 Theory +1605.08761 Cosmology and Nongalactic Astrophysics +1605.09523 Group Theory +1606.00128 Learning +1606.00373 Computer Vision and Pattern Recognition +1606.00839 Cosmology and Nongalactic Astrophysics +1606.01079 Phenomenology +1606.01107 Discrete Mathematics +1606.01531 Phenomenology +1606.01641 High Energy Astrophysical Phenomena +1606.02157 Phenomenology +1606.02704 Phenomenology +1606.02981 Phenomenology +1606.03435 Cosmology and Nongalactic Astrophysics +1606.03494 Physics and Society +1606.03521 Combinatorics +1606.03667 Computation and Language +1606.03893 Information Theory +1606.03912 Networking and Internet Architecture +1606.04410 Theory +1606.04987 Computational Engineering, Finance, and Science +1606.05348 Astrophysics of Galaxies +1606.05573 Differential Geometry +1606.06289 Astrophysics of Galaxies +1606.06294 Astrophysics of Galaxies +1606.06372 Phenomenology +1606.06499 +1606.06578 Portfolio Management +1606.06589 +1606.07206 Networking and Internet Architecture +1606.07307 Dynamical Systems +1606.07833 Combinatorics +1606.08340 Computation and Language +1606.08376 Earth and Planetary Astrophysics +1606.08870 Instrumentation and Detectors +1606.08919 +1606.09429 Dynamical Systems +1607.00216 Fluid Dynamics +1607.00738 Experiment +1607.00837 Experiment +1607.01232 Computer Vision and Pattern Recognition +1607.01473 Instrumentation and Methods for Astrophysics +1607.01753 Theory +1607.01784 Theory +1607.02059 Instrumentation and Methods for Astrophysics +1607.02267 +1607.02374 Mesoscale and Nanoscale Physics +1607.02469 Phenomenology +1607.02594 +1607.02703 Phenomenology +1607.03076 General Physics +1607.03400 Experiment +1607.03518 Numerical Analysis +1607.04104 Programming Languages +1607.04333 Information Theory +1607.04365 Strongly Correlated Electrons +1607.05243 Rings and Algebras +1607.05332 Information Theory +1607.05769 General Physics +1607.06174 Theory +1607.06424 Probability +1607.07335 Information Theory +1607.07526 Learning +1607.07963 +1607.08784 Cosmology and Nongalactic Astrophysics +1608.00490 Analysis of PDEs +1608.00621 Learning +1608.00889 Formal Languages and Automata Theory +1608.01002 +1608.02158 Machine Learning +1608.02621 Other Quantitative Biology +1608.02801 Statistics Theory +1608.03260 Optimization and Control +1608.03525 Solar and Stellar Astrophysics +1608.03707 Cosmology and Nongalactic Astrophysics +1608.04285 +1608.04564 Quantum Gases +1608.04712 Robotics +1608.04803 Quantum Gases +1608.04864 Spectral Theory +1608.05081 Learning +1608.05453 Representation Theory +1608.05515 Methodology +1608.05769 Commutative Algebra +1608.06185 Number Theory +1608.06377 Theory +1608.06419 Physics and Society +1608.07064 Analysis of PDEs +1608.07131 Dynamical Systems +1608.07507 Chemical Physics +1608.07656 Logic +1608.07715 Analysis of PDEs +1608.07730 Information Theory +1608.07833 Soft Condensed Matter +1608.08393 Optics +1608.08888 Materials Science +1608.08955 Differential Geometry +1609.00147 Combinatorics +1609.00263 Combinatorics +1609.00358 Differential Geometry +1609.00786 Superconductivity +1609.01304 Astrophysics of Galaxies +1609.01775 Computer Vision and Pattern Recognition +1609.02227 Information Theory +1609.02895 Probability +1609.03162 Number Theory +1609.03177 Astrophysics of Galaxies +1609.03380 Optics +1609.03403 Phenomenology +1609.03461 Computer Vision and Pattern Recognition +1609.03499 Sound +1609.03651 Theory +1609.03654 +1609.03820 Group Theory +1609.03979 Category Theory +1609.03989 Analysis of PDEs +1609.04069 Networking and Internet Architecture +1609.04117 Multiagent Systems +1609.04267 +1609.04363 Algebraic Geometry +1609.04420 Probability +1609.04643 Optics +1609.04746 Optimization and Control +1609.04794 Robotics +1609.04917 Phenomenology +1609.04956 Economics +1609.04958 Medical Physics +1609.05015 Analysis of PDEs +1609.05017 Metric Geometry +1609.05067 Statistics Theory +1609.05079 Logic in Computer Science +1609.05204 Emerging Technologies +1609.05205 Numerical Analysis +1609.05207 Logic in Computer Science +1609.05212 High Energy Astrophysical Phenomena +1609.05213 Phenomenology +1609.05215 Networking and Internet Architecture +1609.05216 Experiment +1609.05218 General Physics +1609.05219 Algebraic Geometry +1609.05220 Dynamical Systems +1609.05224 Artificial Intelligence +1609.05230 Materials Science +1609.05232 Quantum Gases +1609.05233 Earth and Planetary Astrophysics +1609.05234 Computation and Language +1609.05235 Robotics +1609.05237 Earth and Planetary Astrophysics +1609.05238 Materials Science +1609.05240 Cellular Automata and Lattice Gases +1609.05242 Soft Condensed Matter +1609.05244 Computation and Language +1609.05245 Systems and Control +1609.05247 Robotics +1609.05248 Optimization and Control +1609.05253 Robotics +1609.05255 Combinatorics +1609.05256 Networking and Internet Architecture +1609.05257 Computer Vision and Pattern Recognition +1609.05259 Information Theory +1609.05261 Logic +1609.05266 Other Condensed Matter +1609.05267 Optimization and Control +1609.05268 Human-Computer Interaction +1609.05270 Representation Theory +1609.05271 Statistical Mechanics +1609.05272 Number Theory +1609.05275 Optics +1609.05277 Information Theory +1609.05278 Classical Analysis and ODEs +1609.05280 Classical Analysis and ODEs +1609.05281 Computer Vision and Pattern Recognition +1609.05282 Complex Variables +1609.05284 Learning +1609.05285 +1609.05295 Commutative Algebra +1609.05296 Computer Vision and Pattern Recognition +1609.05300 Systems and Control +1609.05303 High Energy Astrophysical Phenomena +1609.05306 Analysis of PDEs +1609.05308 Astrophysics of Galaxies +1609.05312 Algebraic Geometry +1609.05313 Numerical Analysis +1609.05314 Information Theory +1609.05315 Artificial Intelligence +1609.05316 Mesoscale and Nanoscale Physics +1609.05317 Computer Vision and Pattern Recognition +1609.05320 Computational Complexity +1609.05323 Cryptography and Security +1609.05324 Number Theory +1609.05325 Classical Analysis and ODEs +1609.05326 Functional Analysis +1609.05328 Graphics +1609.05331 Experiment +1609.05332 Mesoscale and Nanoscale Physics +1609.05335 Solar and Stellar Astrophysics +1609.05337 Programming Languages +1609.05341 Optimization and Control +1609.05342 Computer Vision and Pattern Recognition +1609.05343 Logic +1609.05344 Graphics +1609.05345 Multimedia +1609.05347 Combinatorics +1609.05348 Combinatorics +1609.05349 Materials Science +1609.05351 Networking and Internet Architecture +1609.05353 Statistical Mechanics +1609.05355 Optimization and Control +1609.05356 Dynamical Systems +1609.05357 Data Analysis, Statistics and Probability +1609.05358 Soft Condensed Matter +1609.05359 Databases +1609.05361 +1609.05363 Number Theory +1609.05364 Accelerator Physics +1609.05365 Programming Languages +1609.05366 Commutative Algebra +1609.05367 Artificial Intelligence +1609.05368 Classical Analysis and ODEs +1609.05370 Computer Science and Game Theory +1609.05371 Mesoscale and Nanoscale Physics +1609.05373 Analysis of PDEs +1609.05378 Social and Information Networks +1609.05382 Category Theory +1609.05383 +1609.05385 Logic in Computer Science +1609.05386 Number Theory +1609.05388 Machine Learning +1609.05393 Information Theory +1609.05394 Learning +1609.05395 +1609.05396 Computer Vision and Pattern Recognition +1609.05397 Analysis of PDEs +1609.05399 Robotics +1609.05400 Optics +1609.05401 Artificial Intelligence +1609.05402 Social and Information Networks +1609.05405 Superconductivity +1609.05406 Symplectic Geometry +1609.05410 +1609.05411 Logic +1609.05416 +1609.05419 Combinatorics +1609.05420 Computer Vision and Pattern Recognition +1609.05422 +1609.05426 Mesoscale and Nanoscale Physics +1609.05427 Statistical Mechanics +1609.05428 Analysis of PDEs +1609.05429 Robotics +1609.05431 Materials Science +1609.05434 Numerical Analysis +1609.05435 Quantum Gases +1609.05437 Analysis of PDEs +1609.05438 Combinatorics +1609.05439 Chemical Physics +1609.05440 Astrophysics of Galaxies +1609.05441 Phenomenology +1609.05443 Analysis of PDEs +1609.05447 Instrumentation and Detectors +1609.05448 Information Theory +1609.05449 Materials Science +1609.05451 Number Theory +1609.05452 Materials Science +1609.05454 Classical Analysis and ODEs +1609.05456 Instrumentation and Methods for Astrophysics +1609.05458 Combinatorics +1609.05459 Fluid Dynamics +1609.05461 Materials Science +1609.05462 Materials Science +1609.05463 Materials Science +1609.05464 Quantum Gases +1609.05466 Optics +1609.05468 Materials Science +1609.05469 Numerical Analysis +1609.05471 Combinatorics +1609.05478 Astrophysics of Galaxies +1609.05479 Statistics Theory +1609.05481 +1609.05482 General Topology +1609.05483 Systems and Control +1609.05487 Differential Geometry +1609.05488 Quantum Algebra +1609.05489 Quantum Gases +1609.05492 Solar and Stellar Astrophysics +1609.05493 Combinatorics +1609.05498 +1609.05499 Superconductivity +1609.05503 Networking and Internet Architecture +1609.05504 History and Philosophy of Physics +1609.05505 Numerical Analysis +1609.05506 +1609.05507 +1609.05512 Robotics +1609.05513 Cell Behavior +1609.05515 Classical Analysis and ODEs +1609.05516 Algebraic Geometry +1609.05522 Computer Vision and Pattern Recognition +1609.05523 Pricing of Securities +1609.05525 +1609.05527 +1609.05528 Learning +1609.05530 Methodology +1609.05531 Fluid Dynamics +1609.05532 Superconductivity +1609.05533 Functional Analysis +1609.05535 Rings and Algebras +1609.05536 Learning +1609.05540 Phenomenology +1609.05541 Materials Science +1609.05543 Algebraic Geometry +1609.05544 Dynamical Systems +1609.05546 Biological Physics +1609.05547 Superconductivity +1609.05551 Statistics Theory +1609.05552 Algebraic Geometry +1609.05556 Analysis of PDEs +1609.05557 Number Theory +1609.05558 Statistical Mechanics +1609.05559 Learning +1609.05560 Dynamical Systems +1609.05561 Computer Vision and Pattern Recognition +1609.05562 Mesoscale and Nanoscale Physics +1609.05564 Methodology +1609.05566 Artificial Intelligence +1609.05569 Number Theory +1609.05571 Populations and Evolution +1609.05572 Operator Algebras +1609.05574 Combinatorics +1609.05575 Optics +1609.05576 Differential Geometry +1609.05577 Mesoscale and Nanoscale Physics +1609.05579 Group Theory +1609.05580 Combinatorics +1609.05583 Computer Vision and Pattern Recognition +1609.05585 Classical Analysis and ODEs +1609.05586 Information Theory +1609.05588 Dynamical Systems +1609.05590 Computer Vision and Pattern Recognition +1609.05593 Materials Science +1609.05594 Rings and Algebras +1609.05596 Phenomenology +1609.05602 Quantum Gases +1609.05603 Strongly Correlated Electrons +1609.05605 Theory +1609.05606 Computational Physics +1609.05607 +1609.05608 Mesoscale and Nanoscale Physics +1609.05609 Statistics Theory +1609.05610 Information Retrieval +1609.05611 Algebraic Topology +1609.05613 +1609.05615 Computation +1609.05617 Probability +1609.05619 Computer Vision and Pattern Recognition +1609.05620 Mesoscale and Nanoscale Physics +1609.05622 Physics and Society +1609.05625 Computation and Language +1609.05626 Data Structures and Algorithms +1609.05627 Algebraic Geometry +1609.05628 +1609.05630 Algebraic Topology +1609.05631 +1609.05632 Artificial Intelligence +1609.05634 Mesoscale and Nanoscale Physics +1609.05635 Group Theory +1609.05637 Complex Variables +1609.05639 Information Theory +1609.05640 Materials Science +1609.05641 Human-Computer Interaction +1609.05642 Category Theory +1609.05643 +1609.05644 Differential Geometry +1609.05646 Optics +1609.05647 Geometric Topology +1609.05650 Computation and Language +1609.05651 Phenomenology +1609.05655 Symplectic Geometry +1609.05657 Combinatorics +1609.05658 Classical Analysis and ODEs +1609.05660 Differential Geometry +1609.05661 Probability +1609.05662 Discrete Mathematics +1609.05663 Mesoscale and Nanoscale Physics +1609.05665 +1609.05666 Probability +1609.05667 Solar and Stellar Astrophysics +1609.05671 Analysis of PDEs +1609.05673 Group Theory +1609.05675 Combinatorics +1609.05676 Subcellular Processes +1609.05678 Probability +1609.05681 Analysis of PDEs +1609.05682 Analysis of PDEs +1609.05683 Statistical Mechanics +1609.05684 Methodology +1609.05686 Logic in Computer Science +1609.05689 Optics +1609.05690 Materials Science +1609.05691 Astrophysics of Galaxies +1609.05694 Mesoscale and Nanoscale Physics +1609.05699 Probability +1609.05700 Computers and Society +1609.05703 Spectral Theory +1609.05705 Artificial Intelligence +1609.05708 Networking and Internet Architecture +1609.05709 Computational Complexity +1609.05710 Networking and Internet Architecture +1609.05712 Combinatorics +1609.05713 Optimization and Control +1609.05714 Statistics Theory +1609.05715 Data Structures and Algorithms +1609.05716 Quantitative Methods +1609.05717 Quantum Gases +1609.05719 Social and Information Networks +1609.05721 Experiment +1609.05722 Computer Vision and Pattern Recognition +1609.05724 Quantum Algebra +1609.05726 Dynamical Systems +1609.05727 Statistical Mechanics +1609.05728 Analysis of PDEs +1609.05730 Neurons and Cognition +1609.05731 Differential Geometry +1609.05732 Optimization and Control +1609.05733 Soft Condensed Matter +1609.05734 Optics +1609.05735 Cell Behavior +1609.05738 Populations and Evolution +1609.05740 Social and Information Networks +1609.05742 +1609.05744 Number Theory +1609.05745 Lattice +1609.05747 Combinatorics +1609.05749 Classical Analysis and ODEs +1609.05750 Performance +1609.05755 Complex Variables +1609.05757 Pattern Formation and Solitons +1609.05758 Physics Education +1609.05763 Human-Computer Interaction +1609.05767 Distributed, Parallel, and Cluster Computing +1609.05768 Probability +1609.05772 Machine Learning +1609.05774 Quantitative Methods +1609.05776 Number Theory +1609.05777 Optics +1609.05778 Number Theory +1609.05782 Computers and Society +1609.05783 Computers and Society +1609.05784 Classical Analysis and ODEs +1609.05787 Information Retrieval +1609.05791 Dynamical Systems +1609.05792 Discrete Mathematics +1609.05794 Rings and Algebras +1609.05799 Optimization and Control +1609.05801 Optimization and Control +1609.05804 Optics +1609.05805 Methodology +1609.05806 Differential Geometry +1609.05809 Combinatorics +1609.05810 Analysis of PDEs +1609.05811 Artificial Intelligence +1609.05812 Rings and Algebras +1609.05813 Computers and Society +1609.05814 Computers and Society +1609.05815 Information Theory +1609.05817 Analysis of PDEs +1609.05818 Computers and Society +1609.05821 Computers and Society +1609.05822 General Topology +1609.05823 Atomic Physics +1609.05828 Numerical Analysis +1609.05829 Combinatorics +1609.05832 Pricing of Securities +1609.05833 Functional Analysis +1609.05835 Artificial Intelligence +1609.05839 Combinatorics +1609.05840 Optimization and Control +1609.05842 Phenomenology +1609.05843 Number Theory +1609.05846 Commutative Algebra +1609.05851 +1609.05854 Combinatorics +1609.05858 Mesoscale and Nanoscale Physics +1609.05866 Learning +1609.05867 Data Structures and Algorithms +1609.05868 +1609.05872 Theory +1609.05876 Artificial Intelligence +1609.05877 Optimization and Control +1609.05879 Systems and Control +1609.05881 Artificial Intelligence +1609.05884 +1609.05886 Materials Science +cs/0012013 Computational Engineering, Finance, and Science +hep-ph/9903424 Phenomenology +math/0601405 Quantum Algebra +math/0604026 Classical Analysis and ODEs +physics/0411239 Atomic and Molecular Clusters +0801.0798 Combinatorics +0903.5120 +0904.2930 Instrumentation and Methods for Astrophysics +0904.3954 +0910.1641 Space Physics +1105.1818 Mesoscale and Nanoscale Physics +1110.0094 +1112.1455 Operator Algebras +1207.0569 Algebraic Geometry +1209.2828 Algebraic Geometry +1209.5352 Algebraic Geometry +1301.2715 Computer Vision and Pattern Recognition +1302.1065 History and Overview +1302.3994 Analysis of PDEs +1303.0676 Complex Variables +1305.0274 Statistics Theory +1305.5283 Number Theory +1305.6916 Machine Learning +1307.2839 Computational Geometry +1309.2041 Analysis of PDEs +1309.2043 Analysis of PDEs +1309.4322 Functional Analysis +1310.3479 Representation Theory +1310.3635 Complex Variables +1310.5464 Operator Algebras +1310.6202 Functional Analysis +1311.1061 Probability +1312.1948 Probability +1312.4271 Probability +1312.4822 Algebraic Geometry +1401.5816 Algebraic Topology +1402.1304 Functional Analysis +1402.1924 Analysis of PDEs +1404.5366 Algebraic Geometry +1405.1988 Algebraic Geometry +1405.3907 Statistics Theory +1407.1393 Mesoscale and Nanoscale Physics +1407.4546 Statistics Theory +1407.7405 Information Theory +1408.2923 Methodology +1408.3866 Combinatorics +1408.3870 Combinatorics +1408.4119 Phenomenology +1408.5369 Statistics Theory +1408.5935 +1409.2014 Computational Physics +1409.4317 Statistics Theory +1410.1082 Analysis of PDEs +1410.3488 Analysis of PDEs +1410.7189 Information Theory +1411.2391 Statistics Theory +1411.3092 Algebraic Geometry +1412.4523 Algebraic Geometry +1412.7743 Theory +1412.8652 Statistics Theory +1501.04789 Logic in Computer Science +1501.05649 Astrophysics of Galaxies +1501.06668 Quantum Algebra +1502.01067 Earth and Planetary Astrophysics +1502.01535 Functional Analysis +1502.01957 Functional Analysis +1502.05147 Logic in Computer Science +1502.06696 Analysis of PDEs +1503.05578 Logic +1504.05625 Category Theory +1504.05885 +1504.05906 Classical Analysis and ODEs +1504.06624 Phenomenology +1504.07019 Data Structures and Algorithms +1504.07297 Classical Analysis and ODEs +1505.04620 Phenomenology +1506.01174 Geometric Topology +1506.02306 Computation and Language +1506.02761 Computation and Language +1507.00049 Functional Analysis +1507.00606 Representation Theory +1507.00843 Probability +1507.02751 Methodology +1507.04201 Machine Learning +1507.04715 Solar and Stellar Astrophysics +1507.05286 Methodology +1507.08132 Statistical Mechanics +1508.01788 Exactly Solvable and Integrable Systems +1508.05930 Chemical Physics +1508.06182 Computational Finance +1508.07326 +1509.00415 Methodology +1509.00484 +1509.00915 Applications +1509.01337 Systems and Control +1509.02098 Analysis of PDEs +1509.02145 Algebraic Geometry +1509.02701 Mesoscale and Nanoscale Physics +1509.04037 Social and Information Networks +1509.06797 Experiment +1509.07528 Algebraic Geometry +1509.08276 Combinatorics +1510.00914 Physics and Society +1510.03232 Robotics +1510.05331 Classical Analysis and ODEs +1510.05610 Machine Learning +1510.08321 Quantum Algebra +1510.08800 +1511.00876 Data Structures and Algorithms +1511.01138 Data Structures and Algorithms +1511.01995 +1511.02753 Operator Algebras +1511.03851 +1511.05942 Learning +1511.08047 +1511.08237 Atomic Physics +1512.00154 Quantum Gases +1512.01255 Methodology +1512.02203 High Energy Astrophysical Phenomena +1512.02225 Theory +1512.02419 Statistical Mechanics +1512.03409 Algebraic Topology +1512.04676 +1512.05503 Plasma Physics +1512.05930 +1512.06249 Instrumentation and Detectors +1512.08326 Instrumentation and Methods for Astrophysics +1512.09219 Theory +1601.00149 Computer Vision and Pattern Recognition +1601.00571 Physics and Society +1601.00646 Quantum Gases +1601.02254 Metric Geometry +1601.02899 Optics +1601.04178 +1601.04363 Computers and Society +1601.08070 Statistical Mechanics +1602.00192 Data Structures and Algorithms +1602.03191 Phenomenology +1602.03644 Information Theory +1602.04870 +1602.05234 +1602.05756 +1602.08143 Classical Analysis and ODEs +1602.09109 +1602.09130 Computer Vision and Pattern Recognition +1603.00424 Analysis of PDEs +1603.04015 Computer Vision and Pattern Recognition +1603.05667 +1603.07954 Computation and Language +1604.01042 Quantum Gases +1604.01043 Statistical Mechanics +1604.01285 Mesoscale and Nanoscale Physics +1604.01528 Optics +1604.01752 Phenomenology +1604.02319 Analysis of PDEs +1604.02609 Statistical Mechanics +1604.02655 +1604.03110 Theory +1604.03219 Instrumentation and Methods for Astrophysics +1604.05083 Experiment +1604.05112 Chaotic Dynamics +1604.05158 Classical Analysis and ODEs +1604.06162 Learning +1604.08900 Numerical Analysis +1605.00288 Operator Algebras +1605.02086 Statistical Mechanics +1605.02705 Operator Algebras +1605.03851 Solar and Stellar Astrophysics +1605.05162 Mesoscale and Nanoscale Physics +1605.07274 +1605.08918 Strongly Correlated Electrons +1605.09475 Materials Science +1605.09611 +1605.09736 +1606.00351 History and Philosophy of Physics +1606.02211 +1606.02855 Phenomenology +1606.03903 Experiment +1606.05181 Mesoscale and Nanoscale Physics +1606.05553 Strongly Correlated Electrons +1606.06592 Commutative Algebra +1606.06879 Mesoscale and Nanoscale Physics +1606.07391 Phenomenology +1606.08004 Differential Geometry +1606.08397 Analysis of PDEs +1606.08673 Materials Science +1606.08738 Statistical Mechanics +1607.00393 Statistics Theory +1607.01758 Functional Analysis +1607.02187 Cosmology and Nongalactic Astrophysics +1607.02188 Applications +1607.02298 Information Theory +1607.03585 +1607.03586 +1607.03743 +1607.04649 Mesoscale and Nanoscale Physics +1607.05165 Distributed, Parallel, and Cluster Computing +1607.05890 Strongly Correlated Electrons +1607.05942 Disordered Systems and Neural Networks +1607.06209 +1607.07610 Metric Geometry +1607.07994 Algebraic Geometry +1607.08014 +1608.00004 Cosmology and Nongalactic Astrophysics +1608.00408 Phenomenology +1608.01184 Materials Science +1608.02012 Software Engineering +1608.03602 +1608.04332 +1608.04462 Soft Condensed Matter +1608.04808 Social and Information Networks +1608.05221 Systems and Control +1608.05452 Solar and Stellar Astrophysics +1608.07096 Numerical Analysis +1608.08225 Disordered Systems and Neural Networks +1608.08356 Representation Theory +1609.00282 Theory +1609.00771 Dynamical Systems +1609.01667 Theory +1609.02096 Earth and Planetary Astrophysics +1609.02262 Combinatorics +1609.02581 Algebraic Topology +1609.02964 Analysis of PDEs +1609.03292 Algebraic Geometry +1609.03429 Algebraic Topology +1609.04333 Theory +1609.04671 Experiment +1609.05130 Computer Vision and Pattern Recognition +1609.05156 +1609.05182 Phenomenology +1609.05786 Spectral Theory +1609.06235 Complex Variables +1609.06313 Strongly Correlated Electrons +1609.06551 Algebraic Geometry +1609.06674 Numerical Analysis +1609.06733 Classical Analysis and ODEs +1609.06805 Applications +1609.06907 Numerical Analysis +1609.07243 Astrophysics of Galaxies +1609.07550 +1609.07709 Computational Geometry +1609.07845 Multiagent Systems +1609.08086 Category Theory +1609.08104 Mesoscale and Nanoscale Physics +1609.08273 Number Theory +1609.08334 Analysis of PDEs +1609.08372 Operating Systems +1609.08400 Symplectic Geometry +1609.08509 Quantum Gases +1609.08513 Data Structures and Algorithms +1609.08523 Numerical Analysis +1609.08583 Networking and Internet Architecture +1609.08603 Number Theory +1609.08607 Functional Analysis +1609.08608 Theory +1609.08609 +1609.08611 Populations and Evolution +1609.08612 Functional Analysis +1609.08614 Earth and Planetary Astrophysics +1609.08615 High Energy Astrophysical Phenomena +1609.08618 Strongly Correlated Electrons +1609.08621 Instrumentation and Methods for Astrophysics +1609.08622 Astrophysics of Galaxies +1609.08626 Astrophysics of Galaxies +1609.08627 Theory +1609.08628 +1609.08629 Astrophysics of Galaxies +1609.08633 Earth and Planetary Astrophysics +1609.08636 Earth and Planetary Astrophysics +1609.08639 Statistical Mechanics +1609.08641 Applications +1609.08647 History and Philosophy of Physics +1609.08648 Algebraic Geometry +1609.08649 Differential Geometry +1609.08650 Systems and Control +1609.08653 Astrophysics of Galaxies +1609.08654 Solar and Stellar Astrophysics +1609.08656 Information Theory +1609.08658 Functional Analysis +1609.08659 Functional Analysis +1609.08661 Computer Vision and Pattern Recognition +1609.08662 Superconductivity +1609.08663 Neural and Evolutionary Computing +1609.08664 +1609.08668 Analysis of PDEs +1609.08669 Computer Vision and Pattern Recognition +1609.08670 +1609.08672 Probability +1609.08675 Computer Vision and Pattern Recognition +1609.08676 +1609.08677 Computer Vision and Pattern Recognition +1609.08680 Solar and Stellar Astrophysics +1609.08681 Hardware Architecture +1609.08683 Solar and Stellar Astrophysics +1609.08684 +1609.08687 Geometric Topology +1609.08689 Instrumentation and Methods for Astrophysics +1609.08690 Instrumentation and Methods for Astrophysics +1609.08691 Instrumentation and Methods for Astrophysics +1609.08692 Instrumentation and Methods for Astrophysics +1609.08696 Tissues and Organs +1609.08699 Optics +1609.08701 Classical Analysis and ODEs +1609.08702 Logic +1609.08703 Computation and Language +1609.08704 Mesoscale and Nanoscale Physics +1609.08708 Probability +1609.08709 Algebraic Geometry +1609.08710 Probability +1609.08712 Combinatorics +1609.08713 Materials Science +1609.08715 Computers and Society +1609.08716 Computers and Society +1609.08717 Mesoscale and Nanoscale Physics +1609.08719 Geometric Topology +1609.08720 Number Theory +1609.08721 K-Theory and Homology +1609.08723 Data Structures and Algorithms +1609.08724 Number Theory +1609.08725 Methodology +1609.08727 Operator Algebras +1609.08730 Combinatorics +1609.08732 Astrophysics of Galaxies +1609.08733 Optimization and Control +1609.08734 Software Engineering +1609.08735 +1609.08737 Methodology +1609.08739 Computational Geometry +1609.08740 Computer Vision and Pattern Recognition +1609.08742 Number Theory +1609.08743 Classical Analysis and ODEs +1609.08746 Physics and Society +1609.08747 Computers and Society +1609.08749 Experiment +1609.08750 Earth and Planetary Astrophysics +1609.08751 Optimization and Control +1609.08752 Machine Learning +1609.08753 Computers and Society +1609.08754 Computers and Society +1609.08755 Computers and Society +1609.08756 Computers and Society +1609.08757 Computers and Society +1609.08758 Computer Vision and Pattern Recognition +1609.08759 +1609.08760 +1609.08762 Computers and Society +1609.08763 Metric Geometry +1609.08765 Computers and Society +1609.08766 Computers and Society +1609.08768 Social and Information Networks +1609.08769 Exactly Solvable and Integrable Systems +1609.08770 Computers and Society +1609.08774 Superconductivity +1609.08776 Computers and Society +1609.08778 Computers and Society +1609.08779 Computers and Society +1609.08780 Computers and Society +1609.08784 Populations and Evolution +1609.08785 Analysis of PDEs +1609.08786 Materials Science +1609.08787 Information Theory +1609.08788 Number Theory +1609.08796 Phenomenology +1609.08797 Algebraic Geometry +1609.08798 Algebraic Geometry +1609.08799 Algebraic Geometry +1609.08801 Data Structures and Algorithms +1609.08804 History and Philosophy of Physics +1609.08808 Algebraic Geometry +1609.08809 Mesoscale and Nanoscale Physics +1609.08813 Information Theory +1609.08814 Differential Geometry +1609.08815 Group Theory +1609.08818 Optics +1609.08820 Discrete Mathematics +1609.08821 Numerical Analysis +1609.08823 Functional Analysis +1609.08824 Computation and Language +1609.08826 Number Theory +1609.08830 Optimization and Control +1609.08832 Analysis of PDEs +1609.08833 Lattice +1609.08839 Numerical Analysis +1609.08840 Solar and Stellar Astrophysics +1609.08842 Classical Analysis and ODEs +1609.08843 Information Retrieval +1609.08844 General Topology +1609.08845 Information Theory +1609.08849 Differential Geometry +1609.08851 +1609.08852 Number Theory +1609.08853 Numerical Analysis +1609.08854 Robotics +1609.08855 Neurons and Cognition +1609.08856 Materials Science +1609.08860 Geophysics +1609.08861 Analysis of PDEs +1609.08867 Analysis of PDEs +1609.08868 Information Theory +1609.08869 Algebraic Topology +1609.08870 Computer Science and Game Theory +1609.08871 Biological Physics +1609.08872 Number Theory +1609.08874 Emerging Technologies +1609.08875 Astrophysics of Galaxies +1609.08877 Analysis of PDEs +1609.08878 Information Theory +1609.08881 Human-Computer Interaction +1609.08882 Statistics Theory +1609.08883 Strongly Correlated Electrons +1609.08885 Combinatorics +1609.08887 +1609.08888 Networking and Internet Architecture +1609.08891 Symplectic Geometry +1609.08893 Distributed, Parallel, and Cluster Computing +1609.08896 Quantitative Methods +1609.08897 Classical Analysis and ODEs +1609.08898 Statistics Theory +1609.08899 Probability +1609.08900 Group Theory +1609.08901 Materials Science +1609.08902 +1609.08903 Analysis of PDEs +1609.08904 +1609.08906 Differential Geometry +1609.08907 Other Condensed Matter +1609.08908 Representation Theory +1609.08910 Mesoscale and Nanoscale Physics +1609.08913 Machine Learning +1609.08914 Complex Variables +1609.08915 Materials Science +1609.08918 Functional Analysis +1609.08919 Combinatorics +1609.08921 Atmospheric and Oceanic Physics +1609.08922 Phenomenology +1609.08923 Computer Science and Game Theory +1609.08924 Probability +1609.08925 Artificial Intelligence +1609.08926 Atmospheric and Oceanic Physics +1609.08930 Analysis of PDEs +1609.08931 Classical Physics +1609.08933 Earth and Planetary Astrophysics +1609.08934 Computer Science and Game Theory +1609.08935 Information Theory +1609.08936 +1609.08937 Number Theory +1609.08938 Computer Vision and Pattern Recognition +1609.08941 Analysis of PDEs +1609.08946 Mesoscale and Nanoscale Physics +1609.08949 +1609.08951 +1609.08953 Computer Science and Game Theory +1609.08954 Symplectic Geometry +1609.08956 Methodology +1609.08958 Phenomenology +1609.08961 Optimization and Control +1609.08964 Combinatorics +1609.08965 Computer Vision and Pattern Recognition +1609.08968 Cosmology and Nongalactic Astrophysics +1609.08969 Exactly Solvable and Integrable Systems +1609.08970 Methodology +1609.08972 Astrophysics of Galaxies +1609.08973 Optimization and Control +1609.08975 +1609.08976 Machine Learning +1609.08978 Probability +1609.08980 Neurons and Cognition +1609.08982 Mesoscale and Nanoscale Physics +1609.08983 Combinatorics +1609.08988 Analysis of PDEs +1609.08991 Symplectic Geometry +1609.08995 Classical Analysis and ODEs +1609.08997 Statistics Theory +1609.08998 Representation Theory +1609.09002 Number Theory +1609.09005 Biological Physics +1609.09006 Biological Physics +1609.09007 Computation and Language +1609.09008 Algebraic Geometry +1609.09014 Other Computer Science +1609.09015 Metric Geometry +1609.09016 Logic +1609.09018 Computer Vision and Pattern Recognition +1609.09019 Computation and Language +1609.09021 Mesoscale and Nanoscale Physics +1609.09025 Robotics +1609.09026 Combinatorics +1609.09027 Phenomenology +1609.09029 Plasma Physics +1609.09033 Methodology +1609.09034 Commutative Algebra +1609.09035 Statistics Theory +1609.09036 Neurons and Cognition +1609.09038 Quantum Algebra +1609.09039 Computational Physics +1609.09041 Superconductivity +1609.09042 Representation Theory +1609.09046 Differential Geometry +1609.09048 Analysis of PDEs +1609.09050 Theory +1609.09054 Theory +1609.09057 Number Theory +1609.09058 Computer Vision and Pattern Recognition +1609.09060 Disordered Systems and Neural Networks +math/0412075 Algebraic Geometry +math/9804069 Algebraic Geometry +0705.0255 Strongly Correlated Electrons +0904.3997 Combinatorics +1009.0320 +1011.0835 Computation and Language +1104.3103 Computer Science and Game Theory +1105.6154 Methodology +1107.3792 Disordered Systems and Neural Networks +1207.7159 Classical Analysis and ODEs +1208.3278 Optimization and Control +1210.0743 Geometric Topology +1210.2118 General Topology +1210.2120 General Topology +1211.6167 Materials Science +1212.6964 +1302.0857 Cosmology and Nongalactic Astrophysics +1302.3736 Algebraic Geometry +1302.4763 General Topology +1303.4032 Dynamical Systems +1304.0486 General Topology +1309.5310 Statistics Theory +1310.0405 Solar and Stellar Astrophysics +1311.2051 Algebraic Geometry +1311.2285 General Topology +1312.1223 Differential Geometry +1312.2935 Algebraic Geometry +1401.5966 Multimedia +1401.6800 Materials Science +1402.0528 Functional Analysis +1403.2779 Information Theory +1403.7589 Methodology +1404.3360 Differential Geometry +1404.3682 Probability +1405.0111 Functional Analysis +1405.4538 Methodology +1405.5589 Functional Analysis +1405.6072 Geometric Topology +1405.7129 Other Statistics +1406.0964 +1406.1845 Machine Learning +1407.8496 Combinatorics +1408.5461 Populations and Evolution +1408.6136 Functional Analysis +1409.3723 +1409.6324 General Topology +1410.3765 +1410.6144 Mathematical Finance +1410.6794 Classical Physics +1411.1647 Combinatorics +1411.2659 +1411.3113 Dynamical Systems +1411.3322 High Energy Astrophysical Phenomena +1411.4067 Dynamical Systems +1411.5166 Programming Languages +1411.6033 Soft Condensed Matter +1412.0192 +1412.3154 Differential Geometry +1412.3395 Theory +1412.4089 Algebraic Geometry +1412.6688 Populations and Evolution +1412.7211 Quantum Algebra +1501.00675 Category Theory +1502.04470 Geometric Topology +1502.05366 Numerical Analysis +1502.06178 Mesoscale and Nanoscale Physics +1502.06522 Algebraic Topology +1503.02050 Dynamical Systems +1503.02458 Numerical Analysis +1503.03928 Subcellular Processes +1503.05647 +1504.01042 Cryptography and Security +1504.01538 Quantum Algebra +1504.02337 Solar and Stellar Astrophysics +1504.05105 Optics +1504.05854 Learning +1504.07296 Probability +1504.07569 Strongly Correlated Electrons +1504.07628 +1505.01201 Combinatorics +1505.02416 Mathematical Finance +1505.04757 Risk Management +1505.06477 Algebraic Geometry +1506.03323 +1506.06417 Quantum Algebra +1506.07572 Operator Algebras +1506.08095 Theory +1506.08149 Methodology +1507.02404 Experiment +1507.02451 +1507.05773 Functional Analysis +1507.07140 Mesoscale and Nanoscale Physics +1507.07831 Analysis of PDEs +1508.00526 Group Theory +1508.00856 Theory +1508.05772 Soft Condensed Matter +1508.06120 Analysis of PDEs +1508.06253 Probability +1509.01895 Strongly Correlated Electrons +1509.04201 Theory +1509.04209 Theory +1509.04704 Methodology +1509.06305 Discrete Mathematics +1509.08004 Mesoscale and Nanoscale Physics +1509.08155 Robotics +1509.09007 Algebraic Geometry +1510.03779 Dynamical Systems +1510.04495 +1510.06758 Phenomenology +1510.08274 Data Structures and Algorithms +1511.00046 Solar and Stellar Astrophysics +1511.01038 Data Structures and Algorithms +1511.01295 Number Theory +1511.01461 Chemical Physics +1511.04599 Learning +1511.04655 Combinatorics +1511.04698 Networking and Internet Architecture +1511.05544 Strongly Correlated Electrons +1511.07986 Theory +1511.08027 Number Theory +1511.08764 +1512.00169 +1512.00859 +1512.01353 Category Theory +1512.02667 Geometric Topology +1512.03294 Dynamical Systems +1512.06411 Rings and Algebras +1512.06566 Computer Vision and Pattern Recognition +1512.06843 Commutative Algebra +1512.06858 Theory +1512.08533 Theory +1601.00196 +1601.00564 Rings and Algebras +1601.00664 Numerical Analysis +1601.01685 +1601.03422 High Energy Astrophysical Phenomena +1601.04575 Commutative Algebra +1601.05364 Functional Analysis +1601.06579 Computation and Language +1601.06809 +1601.07144 Tissues and Organs +1601.08141 Optimization and Control +1602.00653 Optimization and Control +1602.00976 Classical Analysis and ODEs +1602.01191 Quantitative Methods +1602.01616 Hardware Architecture +1602.02203 Information Theory +1602.04099 Biomolecules +1602.05216 Phenomenology +1602.05448 +1602.05937 Combinatorics +1602.06164 +1602.06231 Algebraic Geometry +1602.06543 Theory +1602.07779 Combinatorics +1602.08290 Networking and Internet Architecture +1602.09035 Algebraic Topology +1603.00598 Phenomenology +1603.02036 Data Analysis, Statistics and Probability +1603.02154 Combinatorics +1603.02199 Learning +1603.02303 Experiment +1603.02720 Computational Physics +1603.03165 Programming Languages +1603.03172 Logic +1603.03305 Probability +1603.03756 Superconductivity +1603.03838 Complex Variables +1603.04311 Strongly Correlated Electrons +1603.05136 +1603.05929 Theory +1603.06470 Computer Vision and Pattern Recognition +1603.06789 Theory +1603.07722 Cosmology and Nongalactic Astrophysics +1603.07893 Neural and Evolutionary Computing +1603.08440 Theory +1603.09299 Theory +1603.09333 Group Theory +1603.09402 Mesoscale and Nanoscale Physics +1603.09474 Analysis of PDEs +1603.09569 Algebraic Geometry +1604.00199 Quantum Algebra +1604.01422 Discrete Mathematics +1604.01471 +1604.02156 Phenomenology +1604.02414 +1604.03141 Solar and Stellar Astrophysics +1604.03895 Soft Condensed Matter +1604.03929 Materials Science +1604.04312 General Finance +1604.04952 Functional Analysis +1604.05222 Geometric Topology +1604.06095 Cosmology and Nongalactic Astrophysics +1604.06184 Theory +1604.06356 Artificial Intelligence +1604.06637 Methodology +1604.06639 Probability +1604.06705 High Energy Astrophysical Phenomena +1604.07995 Disordered Systems and Neural Networks +1604.08253 +1604.08280 Mesoscale and Nanoscale Physics +1604.08339 Cosmology and Nongalactic Astrophysics +1604.08657 Combinatorics +1605.00767 +1605.00985 Probability +1605.01990 Experiment +1605.02083 Soft Condensed Matter +1605.02924 Soft Condensed Matter +1605.03148 Computation and Language +1605.03979 Mesoscale and Nanoscale Physics +1605.04027 Numerical Analysis +1605.04449 Probability +1605.04457 Systems and Control +1605.04500 Mesoscale and Nanoscale Physics +1605.05002 Optimization and Control +1605.06998 Mesoscale and Nanoscale Physics +1605.07005 Disordered Systems and Neural Networks +1605.07577 Logic in Computer Science +1605.08071 Statistical Mechanics +1605.08740 Populations and Evolution +1605.09309 Mesoscale and Nanoscale Physics +1606.00012 Materials Science +1606.00269 Optimization and Control +1606.00850 Computer Vision and Pattern Recognition +1606.00873 Analysis of PDEs +1606.01078 +1606.01154 Differential Geometry +1606.01342 Data Structures and Algorithms +1606.02298 High Energy Astrophysical Phenomena +1606.02357 Dynamical Systems +1606.04087 Artificial Intelligence +1606.04600 Populations and Evolution +1606.05048 Strongly Correlated Electrons +1606.05586 Analysis of PDEs +1606.05670 Classical Analysis and ODEs +1606.06301 +1606.06668 Molecular Networks +1606.06726 Programming Languages +1606.07395 Combinatorics +1606.07541 Group Theory +1606.08451 +1607.00013 Astrophysics of Galaxies +1607.00545 +1607.00669 Machine Learning +1607.00880 Information Theory +1607.00973 Computational Engineering, Finance, and Science +1607.01369 Machine Learning +1607.01867 Representation Theory +1607.02417 Cosmology and Nongalactic Astrophysics +1607.03078 Number Theory +1607.03298 Strongly Correlated Electrons +1607.03599 General Topology +1607.04127 Space Physics +1607.04913 Data Structures and Algorithms +1607.05445 Theory +1607.06254 Probability +1607.06411 Representation Theory +1607.06863 +1607.07312 +1607.07698 Logic in Computer Science +1607.08317 Algebraic Geometry +1607.08494 Instrumentation and Detectors +1607.08580 Artificial Intelligence +1608.00857 Metric Geometry +1608.01496 Combinatorics +1608.01813 Other Condensed Matter +1608.01882 Classical Analysis and ODEs +1608.02181 Differential Geometry +1608.02765 Disordered Systems and Neural Networks +1608.02893 Learning +1608.03421 Probability +1608.03863 Probability +1608.03949 Probability +1608.04057 Phenomenology +1608.04154 Information Theory +1608.04326 Number Theory +1608.04507 Statistics Theory +1608.04651 Theory +1608.04708 Algebraic Topology +1608.05231 Graphics +1608.05810 Statistics Theory +1608.05818 Analysis of PDEs +1608.06142 Data Structures and Algorithms +1608.06148 Computer Vision and Pattern Recognition +1608.06310 Distributed, Parallel, and Cluster Computing +1608.06347 Distributed, Parallel, and Cluster Computing +1608.06512 Classical Physics +1608.06741 Numerical Analysis +1608.06865 Software Engineering +1608.07104 Analysis of PDEs +1608.07140 Materials Science +1608.07255 Combinatorics +1608.07275 Theory +1608.07324 Classical Physics +1608.07340 Instrumentation and Detectors +1608.07392 Instrumentation and Methods for Astrophysics +1608.07414 Phenomenology +1608.07455 Optimization and Control +1608.07458 Phenomenology +1608.07514 Logic in Computer Science +1608.07575 Computer Science and Game Theory +1608.07577 Astrophysics of Galaxies +1608.07581 Cosmology and Nongalactic Astrophysics +1608.07586 Instrumentation and Detectors +1608.07587 Differential Geometry +1608.07588 Chaotic Dynamics +1608.07590 Instrumentation and Detectors +1608.07591 Instrumentation and Detectors +1608.07594 Instrumentation and Detectors +1608.07595 Instrumentation and Detectors +1608.07600 Commutative Algebra +1608.07601 Chemical Physics +1608.07604 Analysis of PDEs +1608.07607 Astrophysics of Galaxies +1608.07608 Solar and Stellar Astrophysics +1608.07610 Solar and Stellar Astrophysics +1608.07611 Theory +1608.07613 Quantum Algebra +1608.07614 Combinatorics +1608.07616 Computer Vision and Pattern Recognition +1608.07617 Software Engineering +1608.07619 Learning +1608.07622 Analysis of PDEs +1608.07625 Learning +1608.07628 Differential Geometry +1608.07630 Statistics Theory +1608.07631 +1608.07632 Information Theory +1608.07634 Discrete Mathematics +1608.07635 Probability +1608.07636 Learning +1608.07639 Computer Vision and Pattern Recognition +1608.07640 Classical Analysis and ODEs +1608.07644 +1608.07645 Algebraic Topology +1608.07646 Mesoscale and Nanoscale Physics +1608.07647 Optimization and Control +1608.07649 Quantum Gases +1608.07650 Atomic Physics +1608.07651 Algebraic Geometry +1608.07652 Data Structures and Algorithms +1608.07658 Networking and Internet Architecture +1608.07659 Analysis of PDEs +1608.07664 Computer Vision and Pattern Recognition +1608.07665 Fluid Dynamics +1608.07666 Information Theory +1608.07667 Differential Geometry +1608.07670 Networking and Internet Architecture +1608.07672 Information Theory +1608.07679 Cryptography and Security +1608.07680 Combinatorics +1608.07681 Statistics Theory +1608.07682 Solar and Stellar Astrophysics +1608.07686 Combinatorics +1608.07689 Analysis of PDEs +1608.07690 Learning +1608.07691 Analysis of PDEs +1608.07692 Analysis of PDEs +1608.07693 Analysis of PDEs +1608.07694 Statistical Finance +1608.07695 Fluid Dynamics +1608.07696 Fluid Dynamics +1608.07698 Analysis of PDEs +1608.07700 Analysis of PDEs +1608.07701 Optimization and Control +1608.07703 Logic +1608.07707 Analysis of PDEs +1608.07710 Learning +1608.07711 Computer Vision and Pattern Recognition +1608.07712 History and Overview +1608.07713 Sound +1608.07716 Optics +1608.07720 Computation and Language +1608.07721 Probability +1608.07724 Computer Vision and Pattern Recognition +1608.07727 Discrete Mathematics +1608.07729 Fluid Dynamics +1608.07731 Functional Analysis +1608.07732 Algebraic Geometry +1608.07735 Number Theory +1608.07740 Physics and Society +1608.07742 Lattice +1608.07745 Software Engineering +1608.07747 Combinatorics +1608.07749 Combinatorics +1608.07750 Functional Analysis +1608.07753 Theory +1608.07755 Representation Theory +1608.07759 Solar and Stellar Astrophysics +1608.07762 Combinatorics +1608.07764 Artificial Intelligence +1608.07768 Phenomenology +1608.07770 Optimization and Control +1608.07771 Quantum Algebra +1608.07774 Chemical Physics +1608.07779 Strongly Correlated Electrons +1608.07780 Chemical Physics +1608.07783 Combinatorics +1608.07784 Functional Analysis +1608.07786 Spectral Theory +1608.07787 Spectral Theory +1608.07788 +1608.07789 Differential Geometry +1608.07792 Logic in Computer Science +1608.07795 Theory +1608.07796 Computational Finance +1608.07799 Information Theory +1608.07802 Computer Vision and Pattern Recognition +1608.07803 Analysis of PDEs +1608.07807 Computer Vision and Pattern Recognition +1608.07809 Other Computer Science +1608.07812 +1608.07813 Computer Vision and Pattern Recognition +1608.07814 Materials Science +1608.07815 Medical Physics +1608.07816 +1608.07820 Mesoscale and Nanoscale Physics +1608.07821 +1608.07825 Algebraic Geometry +1608.07827 Soft Condensed Matter +1608.07829 Plasma Physics +1608.07830 Combinatorics +1608.07831 Risk Management +1608.07832 Phenomenology +1608.07834 Solar and Stellar Astrophysics +1608.07836 Computation and Language +1608.07840 +1608.07843 Optics +1608.07846 Artificial Intelligence +1608.07847 Data Structures and Algorithms +1608.07848 Strongly Correlated Electrons +1608.07850 Instrumentation and Detectors +1608.07851 Mesoscale and Nanoscale Physics +1608.07852 Computation and Language +1608.07853 Experiment +1608.07854 Networking and Internet Architecture +1608.07861 Chemical Physics +1608.07862 +1608.07864 Theory +1608.07866 Optics +1608.07867 Classical Analysis and ODEs +1608.07869 +1608.07870 Populations and Evolution +1608.07874 Algebraic Geometry +1608.07875 Phenomenology +1608.07876 Computer Vision and Pattern Recognition +1608.07878 Digital Libraries +1608.07879 Software Engineering +1608.07880 Logic in Computer Science +1608.07881 Software Engineering +1608.07882 Computers and Society +1608.07883 Logic in Computer Science +1608.07886 Computer Science and Game Theory +1608.07887 Number Theory +1608.07888 Learning +1608.07889 Functional Analysis +1608.07890 Quantum Algebra +1608.07891 Networking and Internet Architecture +1608.07893 Quantum Gases +1608.07894 Mesoscale and Nanoscale Physics +1608.07895 Learning +1608.07896 Representation Theory +1608.07898 Experiment +1608.07901 Physics and Society +1608.07902 Dynamical Systems +1608.07906 Dynamical Systems +1608.07908 Representation Theory +1608.07912 Phenomenology +1608.07913 Analysis of PDEs +1608.07914 Analysis of PDEs +1608.07915 +1608.07916 Computer Vision and Pattern Recognition +1608.07920 +1608.07921 Methodology +1608.07922 Combinatorics +1608.07923 Distributed, Parallel, and Cluster Computing +1608.07929 Machine Learning +1608.07931 Dynamical Systems +1608.07934 Learning +1608.07936 Number Theory +1608.07939 Combinatorics +1608.07940 Phenomenology +1608.07942 Analysis of PDEs +1608.07945 Geometric Topology +1608.07948 Cellular Automata and Lattice Gases +1608.07950 +1608.07951 Computer Vision and Pattern Recognition +1608.07953 Networking and Internet Architecture +1608.07956 Dynamical Systems +1608.07957 Atomic Physics +1608.07958 Probability +1608.07959 Biological Physics +1608.07966 +1608.07968 Differential Geometry +1608.07969 Mesoscale and Nanoscale Physics +1608.07972 Numerical Analysis +1608.07975 Phenomenology +1608.07977 +1608.07979 Probability +1608.07980 +1608.07981 Cryptography and Security +1608.07982 Lattice +1608.07983 +1608.07986 Machine Learning +1608.07987 Number Theory +1608.07988 Symplectic Geometry +1608.07989 Information Theory +1608.07991 Analysis of PDEs +1608.07993 Combinatorics +1608.07996 Analysis of PDEs +1608.07997 Computer Vision and Pattern Recognition +1608.07998 High Energy Astrophysical Phenomena +1608.07999 +1608.08000 Optimization and Control +1608.08001 Fluid Dynamics +1608.08002 Optics +1608.08004 Algebraic Geometry +1608.08009 Numerical Analysis +1608.08012 Astrophysics of Galaxies +1608.08013 Optics +1608.08014 Information Theory +1608.08015 Artificial Intelligence +1608.08016 Instrumentation and Methods for Astrophysics +1608.08020 Cryptography and Security +1608.08022 Materials Science +1608.08023 Earth and Planetary Astrophysics +1608.08024 Earth and Planetary Astrophysics +1608.08027 Data Structures and Algorithms +1608.08028 Artificial Intelligence +1608.08029 Computer Vision and Pattern Recognition +1608.08031 Optimization and Control +1608.08032 Earth and Planetary Astrophysics +1608.08033 Artificial Intelligence +1608.08036 Optics +1608.08037 Algebraic Topology +1608.08038 Earth and Planetary Astrophysics +1608.08042 Networking and Internet Architecture +1608.08043 Materials Science +1608.08044 Number Theory +1608.08045 Combinatorics +1608.08047 Systems and Control +1608.08050 General Physics +1608.08052 Machine Learning +1608.08053 Systems and Control +1608.08057 Cosmology and Nongalactic Astrophysics +1608.08058 Classical Analysis and ODEs +1608.08062 Probability +1608.08063 Machine Learning +1608.08064 Soft Condensed Matter +1608.08066 Computational Physics +1608.08069 High Energy Astrophysical Phenomena +1608.08072 Artificial Intelligence +1608.08073 Classical Analysis and ODEs +1608.08075 Probability +1608.08076 Applications +1608.08077 Superconductivity +1608.08079 Classical Analysis and ODEs +1608.08080 Optimization and Control +1608.08084 High Energy Astrophysical Phenomena +1608.08085 History and Overview +1608.08086 General Mathematics +1608.08087 Metric Geometry +1608.08089 Optics +1608.08094 General Topology +1608.08096 Methodology +1608.08098 Representation Theory +1608.08099 +1608.08101 Plasma Physics +1608.08103 Experiment +1608.08105 Instrumentation and Methods for Astrophysics +1608.08106 Instrumentation and Detectors +1608.08111 Materials Science +1608.08112 Digital Libraries +1608.08113 Functional Analysis +1608.08114 K-Theory and Homology +1608.08117 Numerical Analysis +1608.08118 +1608.08122 Algebraic Geometry +1608.08124 Plasma Physics +1608.08126 Methodology +1608.08127 +1608.08130 Databases +1608.08133 Materials Science +1608.08136 +1608.08137 Numerical Analysis +1608.08138 Cosmology and Nongalactic Astrophysics +1608.08140 Algebraic Topology +1608.08142 Information Theory +1608.08144 Artificial Intelligence +1608.08146 +1608.08149 Computer Vision and Pattern Recognition +1608.08152 Representation Theory +1608.08155 Commutative Algebra +1608.08162 Soft Condensed Matter +1608.08165 Phenomenology +1608.08168 Applications +1608.08175 Accelerator Physics +1608.08178 Algebraic Geometry +1608.08180 Information Retrieval +1608.08186 +1608.08188 Artificial Intelligence +1608.08189 Operator Algebras +1608.08190 Metric Geometry +1608.08192 +1608.08194 +1608.08196 Computers and Society +1608.08197 Computational Physics +1608.08200 Quantum Gases +1608.08204 Optimization and Control +1608.08206 Strongly Correlated Electrons +alg-geom/9606010 Algebraic Geometry +alg-geom/9608016 Algebraic Geometry +alg-geom/9608020 Algebraic Geometry +alg-geom/9610020 Algebraic Geometry +alg-geom/9611010 Algebraic Geometry +alg-geom/9611028 Algebraic Geometry +alg-geom/9611030 Algebraic Geometry +alg-geom/9612017 Algebraic Geometry +alg-geom/9701008 Algebraic Geometry +alg-geom/9702004 Algebraic Geometry +alg-geom/9702010 Algebraic Geometry +alg-geom/9702016 Algebraic Geometry +alg-geom/9703004 Algebraic Geometry +alg-geom/9703007 Algebraic Geometry +alg-geom/9703022 Algebraic Geometry +alg-geom/9703025 Algebraic Geometry +alg-geom/9704012 Algebraic Geometry +alg-geom/9706011 Algebraic Geometry +alg-geom/9707007 Algebraic Geometry +alg-geom/9708009 Algebraic Geometry +alg-geom/9708014 Algebraic Geometry +alg-geom/9709020 Algebraic Geometry +alg-geom/9709033 Algebraic Geometry +alg-geom/9709035 Algebraic Geometry +alg-geom/9710011 Algebraic Geometry +alg-geom/9711004 Algebraic Geometry +alg-geom/9711012 Algebraic Geometry +alg-geom/9712013 Algebraic Geometry +alg-geom/9712024 Algebraic Geometry +ao-sci/9502001 Atmospheric and Oceanic Physics +ao-sci/9502002 Atmospheric and Oceanic Physics +ao-sci/9503001 Atmospheric and Oceanic Physics +ao-sci/9509001 Atmospheric and Oceanic Physics +astro-ph/0001001 +astro-ph/0001008 +astro-ph/0001091 +astro-ph/0001207 +astro-ph/0001221 +astro-ph/0001279 +astro-ph/0001344 +astro-ph/0001364 +astro-ph/0001384 +astro-ph/0001493 +astro-ph/0002053 +astro-ph/0002054 +astro-ph/0002055 +astro-ph/0002067 +astro-ph/0002073 +astro-ph/0002127 +astro-ph/0002129 +astro-ph/0002182 +astro-ph/0002248 +astro-ph/0002260 +astro-ph/0002315 +astro-ph/0002423 +astro-ph/0002518 +astro-ph/0002525 +astro-ph/0003111 +astro-ph/0003149 +astro-ph/0003153 +astro-ph/0003246 +astro-ph/0003313 +astro-ph/0003396 +astro-ph/0003397 +astro-ph/0003411 +astro-ph/0004007 +astro-ph/0004023 +astro-ph/0004069 +astro-ph/0004114 +astro-ph/0004338 +astro-ph/0004342 +astro-ph/0004363 +astro-ph/0004400 +astro-ph/0005023 +astro-ph/0005065 +astro-ph/0005075 +astro-ph/0005102 +astro-ph/0005219 +astro-ph/0005318 +astro-ph/0005461 +astro-ph/0005488 +astro-ph/0005507 +astro-ph/0005516 +astro-ph/0005523 +astro-ph/0005549 +astro-ph/0005572 +astro-ph/0006014 +astro-ph/0006025 +astro-ph/0006054 +astro-ph/0006172 +astro-ph/0006220 +astro-ph/0006357 +astro-ph/0006450 +astro-ph/0007013 +astro-ph/0007042 +astro-ph/0007069 +astro-ph/0007088 +astro-ph/0007096 +astro-ph/0007146 +astro-ph/0007221 +astro-ph/0007223 +astro-ph/0007230 +astro-ph/0007284 +astro-ph/0007334 +astro-ph/0007368 +astro-ph/0007387 +astro-ph/0007394 +astro-ph/0007470 +astro-ph/0008098 +astro-ph/0008165 +astro-ph/0008201 +astro-ph/0008238 +astro-ph/0008274 +astro-ph/0008485 +astro-ph/0008516 +astro-ph/0009008 +astro-ph/0009139 +astro-ph/0009194 +astro-ph/0009222 +astro-ph/0009252 +astro-ph/0009287 +astro-ph/0009322 +astro-ph/0009429 +astro-ph/0010088 +astro-ph/0010096 +astro-ph/0010427 +astro-ph/0010523 +astro-ph/0010565 +astro-ph/0010602 +astro-ph/0010624 +astro-ph/0011054 +astro-ph/0011090 +astro-ph/0011111 +astro-ph/0011134 +astro-ph/0011144 +astro-ph/0011152 +astro-ph/0011203 +astro-ph/0011215 +astro-ph/0011240 +astro-ph/0011245 +astro-ph/0011262 +astro-ph/0011287 +astro-ph/0011298 +astro-ph/0011345 +astro-ph/0011383 +astro-ph/0011390 +astro-ph/0011391 +astro-ph/0011404 +astro-ph/0011474 +astro-ph/0011511 +astro-ph/0011535 +astro-ph/0011539 +astro-ph/0012072 +astro-ph/0012092 +astro-ph/0012098 +astro-ph/0012100 +astro-ph/0012216 +astro-ph/0012250 +astro-ph/0012368 +astro-ph/0012428 +astro-ph/0101139 +astro-ph/0101173 +astro-ph/0101217 +astro-ph/0101272 +astro-ph/0101279 +astro-ph/0101327 +astro-ph/0101330 +astro-ph/0101333 +astro-ph/0101374 +astro-ph/0101416 +astro-ph/0101434 +astro-ph/0101475 +astro-ph/0101493 +astro-ph/0101532 +astro-ph/0101540 +astro-ph/0101558 +astro-ph/0102025 +astro-ph/0102064 +astro-ph/0102096 +astro-ph/0102204 +astro-ph/0102279 +astro-ph/0102281 +astro-ph/0102299 +astro-ph/0102308 +astro-ph/0102379 +astro-ph/0102430 +astro-ph/0102431 +astro-ph/0102500 +astro-ph/0103054 +astro-ph/0103134 +astro-ph/0103171 +astro-ph/0103173 +astro-ph/0103189 +astro-ph/0103230 +astro-ph/0103291 +astro-ph/0103471 +astro-ph/0103516 +astro-ph/0104022 +astro-ph/0104150 +astro-ph/0104183 +astro-ph/0104273 +astro-ph/0104314 +astro-ph/0104321 +astro-ph/0104386 +astro-ph/0105016 +astro-ph/0105042 +astro-ph/0105050 +astro-ph/0105051 +astro-ph/0105053 +astro-ph/0105054 +astro-ph/0105057 +astro-ph/0105126 +astro-ph/0105150 +astro-ph/0105189 +astro-ph/0105236 +astro-ph/0105242 +astro-ph/0105251 +astro-ph/0105350 +astro-ph/0105413 +astro-ph/0105453 +astro-ph/0105483 +astro-ph/0105520 +astro-ph/0105561 +astro-ph/0106078 +astro-ph/0106095 +astro-ph/0106155 +astro-ph/0106164 +astro-ph/0106179 +astro-ph/0106195 +astro-ph/0106222 +astro-ph/0106232 +astro-ph/0106236 +astro-ph/0106254 +astro-ph/0106324 +astro-ph/0106333 +astro-ph/0106360 +astro-ph/0106418 +astro-ph/0106422 +astro-ph/0106452 +astro-ph/0106465 +astro-ph/0107003 +astro-ph/0107044 +astro-ph/0107051 +astro-ph/0107099 +astro-ph/0107152 +astro-ph/0107173 +astro-ph/0107329 +astro-ph/0107397 +astro-ph/0107407 +astro-ph/0107455 +astro-ph/0107492 +astro-ph/0107494 +astro-ph/0108010 +astro-ph/0108132 +astro-ph/0108240 +astro-ph/0108248 +astro-ph/0108281 +astro-ph/0108376 +astro-ph/0108414 +astro-ph/0108417 +astro-ph/0108446 +astro-ph/0108503 +astro-ph/0109013 +astro-ph/0109083 +astro-ph/0109087 +astro-ph/0109154 +astro-ph/0109293 +astro-ph/0109302 +astro-ph/0109391 +astro-ph/0109428 +astro-ph/0109531 +astro-ph/0110010 +astro-ph/0110011 +astro-ph/0110026 +astro-ph/0110066 +astro-ph/0110105 +astro-ph/0110113 +astro-ph/0110152 +astro-ph/0110183 +astro-ph/0110191 +astro-ph/0110280 +astro-ph/0110292 +astro-ph/0110359 +astro-ph/0110443 +astro-ph/0110462 +astro-ph/0110479 +astro-ph/0110568 +astro-ph/0110614 +astro-ph/0110624 +astro-ph/0110691 +astro-ph/0111055 +astro-ph/0111064 +astro-ph/0111107 +astro-ph/0111108 +astro-ph/0111127 +astro-ph/0111181 +astro-ph/0111236 +astro-ph/0111270 +astro-ph/0111408 +astro-ph/0111433 +astro-ph/0111435 +astro-ph/0111548 +astro-ph/0111560 +astro-ph/0112075 +astro-ph/0112108 +astro-ph/0112158 +astro-ph/0112212 +astro-ph/0112445 +astro-ph/0201023 +astro-ph/0201044 +astro-ph/0201071 +astro-ph/0201087 +astro-ph/0201102 +astro-ph/0201168 +astro-ph/0201174 +astro-ph/0201235 +astro-ph/0201281 +astro-ph/0201474 +astro-ph/0202011 +astro-ph/0202018 +astro-ph/0202093 +astro-ph/0202106 +astro-ph/0202142 +astro-ph/0202189 +astro-ph/0202313 +astro-ph/0202524 +astro-ph/0203025 +astro-ph/0203058 +astro-ph/0203231 +astro-ph/0203314 +astro-ph/0203354 +astro-ph/0203363 +astro-ph/0203367 +astro-ph/0203382 +astro-ph/0203398 +astro-ph/0203404 +astro-ph/0203408 +astro-ph/0203451 +astro-ph/0204057 +astro-ph/0204151 +astro-ph/0204173 +astro-ph/0204222 +astro-ph/0204271 +astro-ph/0204361 +astro-ph/0204407 +astro-ph/0204436 +astro-ph/0204455 +astro-ph/0204459 +astro-ph/0204460 +astro-ph/0204481 +astro-ph/0204514 +astro-ph/0205031 +astro-ph/0205055 +astro-ph/0205077 +astro-ph/0205118 +astro-ph/0205120 +astro-ph/0205169 +astro-ph/0205208 +astro-ph/0205211 +astro-ph/0205229 +astro-ph/0205279 +astro-ph/0205282 +astro-ph/0205284 +astro-ph/0205298 +astro-ph/0205341 +astro-ph/0205389 +astro-ph/0205402 +astro-ph/0205549 +astro-ph/0206016 +astro-ph/0206026 +astro-ph/0206051 +astro-ph/0206099 +astro-ph/0206126 +astro-ph/0206208 +astro-ph/0206219 +astro-ph/0206232 +astro-ph/0206278 +astro-ph/0206283 +astro-ph/0207004 +astro-ph/0207078 +astro-ph/0207112 +astro-ph/0207116 +astro-ph/0207119 +astro-ph/0207223 +astro-ph/0207283 +astro-ph/0207425 +astro-ph/0207470 +astro-ph/0207529 +astro-ph/0207552 +astro-ph/0207635 +astro-ph/0207649 +astro-ph/0208073 +astro-ph/0208101 +astro-ph/0208195 +astro-ph/0208321 +astro-ph/0208439 +astro-ph/0208511 +astro-ph/0208516 +astro-ph/0209096 +astro-ph/0209115 +astro-ph/0209271 +astro-ph/0209389 +astro-ph/0209399 +astro-ph/0209421 +astro-ph/0209485 +astro-ph/0209486 +astro-ph/0209507 +astro-ph/0209560 +astro-ph/0210063 +astro-ph/0210194 +astro-ph/0210320 +astro-ph/0210390 +astro-ph/0210578 +astro-ph/0210589 +astro-ph/0210609 +astro-ph/0210626 +astro-ph/0211182 +astro-ph/0211338 +astro-ph/0211370 +astro-ph/0211489 +astro-ph/0211579 +astro-ph/0212026 +astro-ph/0212068 +astro-ph/0212138 +astro-ph/0212250 +astro-ph/0212268 +astro-ph/0212292 +astro-ph/0212342 +astro-ph/0212437 +astro-ph/0212468 +astro-ph/0212515 +astro-ph/0212540 +astro-ph/0212563 +astro-ph/0212576 +astro-ph/0301074 +astro-ph/0301078 +astro-ph/0301080 +astro-ph/0301189 +astro-ph/0301218 +astro-ph/0301242 +astro-ph/0301255 +astro-ph/0301269 +astro-ph/0301274 +astro-ph/0301357 +astro-ph/0301428 +astro-ph/0301429 +astro-ph/0301462 +astro-ph/0301562 +astro-ph/0301568 +astro-ph/0301611 +astro-ph/0302033 +astro-ph/0302137 +astro-ph/0302150 +astro-ph/0302251 +astro-ph/0302291 +astro-ph/0302330 +astro-ph/0302337 +astro-ph/0302393 +astro-ph/0302441 +astro-ph/0302509 +astro-ph/0302524 +astro-ph/0302536 +astro-ph/0303004 +astro-ph/0303123 +astro-ph/0303135 +astro-ph/0303172 +astro-ph/0303204 +astro-ph/0303255 +astro-ph/0303383 +astro-ph/0303443 +astro-ph/0303476 +astro-ph/0303509 +astro-ph/0304141 +astro-ph/0304256 +astro-ph/0304266 +astro-ph/0304438 +astro-ph/0304494 +astro-ph/0304518 +astro-ph/0305012 +astro-ph/0305016 +astro-ph/0305036 +astro-ph/0305139 +astro-ph/0305233 +astro-ph/0305267 +astro-ph/0305273 +astro-ph/0305350 +astro-ph/0305403 +astro-ph/0305405 +astro-ph/0305412 +astro-ph/0305451 +astro-ph/0305488 +astro-ph/0305595 +astro-ph/0306007 +astro-ph/0306017 +astro-ph/0306031 +astro-ph/0306098 +astro-ph/0306177 +astro-ph/0306227 +astro-ph/0306387 +astro-ph/0306430 +astro-ph/0306505 +astro-ph/0306522 +astro-ph/0306549 +astro-ph/0306617 +astro-ph/0306629 +astro-ph/0307054 +astro-ph/0307347 +astro-ph/0307442 +astro-ph/0307526 +astro-ph/0308165 +astro-ph/0308178 +astro-ph/0308185 +astro-ph/0308273 +astro-ph/0308323 +astro-ph/0308479 +astro-ph/0309146 +astro-ph/0309148 +astro-ph/0309320 +astro-ph/0309410 +astro-ph/0309630 +astro-ph/0309631 +astro-ph/0309690 +astro-ph/0309785 +astro-ph/0310027 +astro-ph/0310126 +astro-ph/0310173 +astro-ph/0310200 +astro-ph/0310361 +astro-ph/0310669 +astro-ph/0310789 +astro-ph/0310839 +astro-ph/0310885 +astro-ph/0310901 +astro-ph/0311095 +astro-ph/0311287 +astro-ph/0311312 +astro-ph/0311348 +astro-ph/0311459 +astro-ph/0311462 +astro-ph/0311474 +astro-ph/0311630 +astro-ph/0312038 +astro-ph/0312040 +astro-ph/0312074 +astro-ph/0312248 +astro-ph/0312262 +astro-ph/0312263 +astro-ph/0312333 +astro-ph/0312364 +astro-ph/0312472 +astro-ph/0312638 +astro-ph/0401082 +astro-ph/0401231 +astro-ph/0401245 +astro-ph/0401316 +astro-ph/0401317 +astro-ph/0401392 +astro-ph/0401416 +astro-ph/0401417 +astro-ph/0401469 +astro-ph/0401489 +astro-ph/0401505 +astro-ph/0401511 +astro-ph/0402009 +astro-ph/0402010 +astro-ph/0402035 +astro-ph/0402051 +astro-ph/0402114 +astro-ph/0402119 +astro-ph/0402145 +astro-ph/0402148 +astro-ph/0402202 +astro-ph/0402265 +astro-ph/0402317 +astro-ph/0402326 +astro-ph/0402368 +astro-ph/0402497 +astro-ph/0402500 +astro-ph/0402622 +astro-ph/0403018 +astro-ph/0403027 +astro-ph/0403076 +astro-ph/0403108 +astro-ph/0403196 +astro-ph/0403253 +astro-ph/0403293 +astro-ph/0403329 +astro-ph/0403393 +astro-ph/0403442 +astro-ph/0403475 +astro-ph/0403488 +astro-ph/0403492 +astro-ph/0403647 +astro-ph/0403689 +astro-ph/0404069 +astro-ph/0404105 +astro-ph/0404115 +astro-ph/0404340 +astro-ph/0404385 +astro-ph/0404387 +astro-ph/0404515 +astro-ph/0404588 +astro-ph/0405111 +astro-ph/0405272 +astro-ph/0405428 +astro-ph/0405559 +astro-ph/0405571 +astro-ph/0405593 +astro-ph/0405622 +astro-ph/0405632 +astro-ph/0406027 +astro-ph/0406066 +astro-ph/0406204 +astro-ph/0406453 +astro-ph/0406465 +astro-ph/0406538 +astro-ph/0406631 +astro-ph/0406642 +astro-ph/0406672 +astro-ph/0407176 +astro-ph/0407188 +astro-ph/0407196 +astro-ph/0407270 +astro-ph/0407309 +astro-ph/0407314 +astro-ph/0407407 +astro-ph/0407497 +astro-ph/0407533 +astro-ph/0407592 +astro-ph/0408044 +astro-ph/0408137 +astro-ph/0408174 +astro-ph/0408303 +astro-ph/0408314 +astro-ph/0408373 +astro-ph/0408460 +astro-ph/0408546 +astro-ph/0409030 +astro-ph/0409049 +astro-ph/0409055 +astro-ph/0409079 +astro-ph/0409082 +astro-ph/0409127 +astro-ph/0409159 +astro-ph/0409196 +astro-ph/0409547 +astro-ph/0409578 +astro-ph/0409609 +astro-ph/0409664 +astro-ph/0409737 +astro-ph/0409768 +astro-ph/0410043 +astro-ph/0410055 +astro-ph/0410098 +astro-ph/0410125 +astro-ph/0410168 +astro-ph/0410347 +astro-ph/0410368 +astro-ph/0410463 +astro-ph/0410670 +astro-ph/0410711 +astro-ph/0411017 +astro-ph/0411031 +astro-ph/0411113 +astro-ph/0411126 +astro-ph/0411138 +astro-ph/0411139 +astro-ph/0411164 +astro-ph/0411195 +astro-ph/0411391 +astro-ph/0411418 +astro-ph/0411517 +astro-ph/0411518 +astro-ph/0411568 +astro-ph/0411608 +astro-ph/0411611 +astro-ph/0411626 +astro-ph/0411746 +astro-ph/0411805 +astro-ph/0412049 +astro-ph/0412082 +astro-ph/0412094 +astro-ph/0412151 +astro-ph/0412267 +astro-ph/0412362 +astro-ph/0412370 +astro-ph/0412513 +astro-ph/0501135 +astro-ph/0501243 +astro-ph/0501244 +astro-ph/0501307 +astro-ph/0501381 +astro-ph/0501387 +astro-ph/0501565 +astro-ph/0502017 +astro-ph/0502175 +astro-ph/0502238 +astro-ph/0502284 +astro-ph/0502398 +astro-ph/0503127 +astro-ph/0503153 +astro-ph/0503198 +astro-ph/0503219 +astro-ph/0503237 +astro-ph/0503262 +astro-ph/0503283 +astro-ph/0503291 +astro-ph/0503477 +astro-ph/0503478 +astro-ph/0503494 +astro-ph/0503596 +astro-ph/0503637 +astro-ph/0503657 +astro-ph/0503665 +astro-ph/0503695 +astro-ph/0504007 +astro-ph/0504108 +astro-ph/0504155 +astro-ph/0504170 +astro-ph/0504218 +astro-ph/0504228 +astro-ph/0504249 +astro-ph/0504259 +astro-ph/0504340 +astro-ph/0504366 +astro-ph/0504526 +astro-ph/0504579 +astro-ph/0504635 +astro-ph/0505056 +astro-ph/0505140 +astro-ph/0505163 +astro-ph/0505164 +astro-ph/0505179 +astro-ph/0505274 +astro-ph/0505275 +astro-ph/0505396 +astro-ph/0505402 +astro-ph/0505472 +astro-ph/0505537 +astro-ph/0505569 +astro-ph/0505588 +astro-ph/0505599 +astro-ph/0505621 +astro-ph/0506018 +astro-ph/0506048 +astro-ph/0506231 +astro-ph/0506292 +astro-ph/0506363 +astro-ph/0506370 +astro-ph/0506428 +astro-ph/0506450 +astro-ph/0506523 +astro-ph/0506577 +astro-ph/0506579 +astro-ph/0506584 +astro-ph/0506606 +astro-ph/0506622 +astro-ph/0506669 +astro-ph/0507002 +astro-ph/0507018 +astro-ph/0507027 +astro-ph/0507043 +astro-ph/0507061 +astro-ph/0507076 +astro-ph/0507093 +astro-ph/0507128 +astro-ph/0507133 +astro-ph/0507145 +astro-ph/0507178 +astro-ph/0507287 +astro-ph/0507316 +astro-ph/0507375 +astro-ph/0507395 +astro-ph/0507463 +astro-ph/0507549 +astro-ph/0507554 +astro-ph/0507609 +astro-ph/0507656 +astro-ph/0507691 +astro-ph/0508006 +astro-ph/0508008 +astro-ph/0508015 +astro-ph/0508150 +astro-ph/0508223 +astro-ph/0508224 +astro-ph/0508284 +astro-ph/0508337 +astro-ph/0508410 +astro-ph/0508504 +astro-ph/0508512 +astro-ph/0508582 +astro-ph/0508644 +astro-ph/0509001 +astro-ph/0509074 +astro-ph/0509088 +astro-ph/0509159 +astro-ph/0509161 +astro-ph/0509182 +astro-ph/0509248 +astro-ph/0509292 +astro-ph/0509299 +astro-ph/0509302 +astro-ph/0509316 +astro-ph/0509385 +astro-ph/0509399 +astro-ph/0509404 +astro-ph/0509414 +astro-ph/0509533 +astro-ph/0509572 +astro-ph/0509576 +astro-ph/0509578 +astro-ph/0509588 +astro-ph/0509601 +astro-ph/0509605 +astro-ph/0509606 +astro-ph/0509607 +astro-ph/0509619 +astro-ph/0509623 +astro-ph/0509625 +astro-ph/0509628 +astro-ph/0509634 +astro-ph/0509638 +astro-ph/0509647 +astro-ph/0509649 +astro-ph/0509654 +astro-ph/0509658 +astro-ph/0509661 +astro-ph/0509663 +astro-ph/0509671 +astro-ph/0509672 +astro-ph/0509679 +astro-ph/0509681 +astro-ph/0509684 +astro-ph/0509687 +astro-ph/0509694 +astro-ph/0509698 +astro-ph/0509704 +astro-ph/0509705 +astro-ph/0509706 +astro-ph/0509708 +astro-ph/0509710 +astro-ph/0509712 +astro-ph/0509721 +astro-ph/0509730 +astro-ph/0509739 +astro-ph/0509748 +astro-ph/0509756 +astro-ph/0509759 +astro-ph/0509763 +astro-ph/0509764 +astro-ph/0509768 +astro-ph/0509771 +astro-ph/0509772 +astro-ph/0509780 +astro-ph/0509783 +astro-ph/0509785 +astro-ph/0509798 +astro-ph/0509815 +astro-ph/0509818 +astro-ph/0509823 +astro-ph/0509825 +astro-ph/0509827 +astro-ph/0509846 +astro-ph/0509851 +astro-ph/0509855 +astro-ph/0509858 +astro-ph/0509859 +astro-ph/0509861 +astro-ph/0509862 +astro-ph/0509866 +astro-ph/0509867 +astro-ph/0509869 +astro-ph/0509876 +astro-ph/0509879 +astro-ph/0509883 +astro-ph/0509884 +astro-ph/0509886 +astro-ph/0509894 +astro-ph/0509896 +astro-ph/0509898 +astro-ph/0509899 +astro-ph/0509900 +astro-ph/0509901 +astro-ph/0509906 +astro-ph/0509907 +astro-ph/0509910 +astro-ph/0510001 +astro-ph/0510005 +astro-ph/0510008 +astro-ph/0510009 +astro-ph/0510011 +astro-ph/0510012 +astro-ph/0510019 +astro-ph/0510023 +astro-ph/0510025 +astro-ph/0510034 +astro-ph/0510040 +astro-ph/0510043 +astro-ph/0510045 +astro-ph/0510046 +astro-ph/0510047 +astro-ph/0510048 +astro-ph/0510053 +astro-ph/0510054 +astro-ph/0510056 +astro-ph/0510058 +astro-ph/0510060 +astro-ph/0510062 +astro-ph/0510065 +astro-ph/0510067 +astro-ph/0510072 +astro-ph/0510075 +astro-ph/0510077 +astro-ph/0510079 +astro-ph/0510080 +astro-ph/0510082 +astro-ph/0510083 +astro-ph/0510084 +astro-ph/0510086 +astro-ph/0510090 +astro-ph/0510091 +astro-ph/0510094 +astro-ph/0510096 +astro-ph/0510098 +astro-ph/0510099 +astro-ph/0510103 +astro-ph/0510113 +astro-ph/0510115 +astro-ph/0510119 +astro-ph/0510123 +astro-ph/0510126 +astro-ph/0510128 +astro-ph/0510130 +astro-ph/0510132 +astro-ph/0510134 +astro-ph/0510135 +astro-ph/0510145 +astro-ph/0510146 +astro-ph/0510150 +astro-ph/0510154 +astro-ph/0510155 +astro-ph/0510157 +astro-ph/0510159 +astro-ph/0510161 +astro-ph/0510163 +astro-ph/0510165 +astro-ph/0510167 +astro-ph/0510168 +astro-ph/0510169 +astro-ph/0510170 +astro-ph/0510172 +astro-ph/0510175 +astro-ph/0510177 +astro-ph/0510179 +astro-ph/0510180 +astro-ph/0510181 +astro-ph/0510187 +astro-ph/0510189 +astro-ph/0510191 +astro-ph/0510307 +astro-ph/0510327 +astro-ph/0510761 +astro-ph/0510778 +astro-ph/0511047 +astro-ph/0511111 +astro-ph/0511171 +astro-ph/0511260 +astro-ph/0512214 +astro-ph/0512250 +astro-ph/0512400 +astro-ph/0601165 +astro-ph/0601217 +astro-ph/0601245 +astro-ph/0601319 +astro-ph/0601443 +astro-ph/0602052 +astro-ph/0602132 +astro-ph/0602200 +astro-ph/0602511 +astro-ph/0602516 +astro-ph/0603009 +astro-ph/0603135 +astro-ph/0603341 +astro-ph/0603426 +astro-ph/0603555 +astro-ph/0603558 +astro-ph/0603633 +astro-ph/0604031 +astro-ph/0604044 +astro-ph/0604516 +astro-ph/0604520 +astro-ph/0605084 +astro-ph/0605164 +astro-ph/0605206 +astro-ph/0605248 +astro-ph/0605257 +astro-ph/0605261 +astro-ph/0605318 +astro-ph/0605360 +astro-ph/0605553 +astro-ph/0605585 +astro-ph/0605700 +astro-ph/0606267 +astro-ph/0606315 +astro-ph/0606493 +astro-ph/0606747 +astro-ph/0606749 +astro-ph/0607149 +astro-ph/0607224 +astro-ph/0608418 +astro-ph/0608485 +astro-ph/0608511 +astro-ph/0608580 +astro-ph/0608595 +astro-ph/0608615 +astro-ph/0608653 +astro-ph/0608694 +astro-ph/0609093 +astro-ph/9303009 +astro-ph/9306018 +astro-ph/9307024 +astro-ph/9311024 +astro-ph/9312004 +astro-ph/9401019 +astro-ph/9405014 +astro-ph/9406051 +astro-ph/9406056 +astro-ph/9406064 +astro-ph/9407046 +astro-ph/9408005 +astro-ph/9409040 +astro-ph/9411034 +astro-ph/9411039 +astro-ph/9412082 +astro-ph/9501003 +astro-ph/9501004 +astro-ph/9501006 +astro-ph/9501009 +astro-ph/9501010 +astro-ph/9501011 +astro-ph/9501014 +astro-ph/9501015 +astro-ph/9501016 +astro-ph/9501017 +astro-ph/9501018 +astro-ph/9501019 +astro-ph/9501021 +astro-ph/9501022 +astro-ph/9501023 +astro-ph/9501024 +astro-ph/9501025 +astro-ph/9501027 +astro-ph/9501028 +astro-ph/9501030 +astro-ph/9501031 +astro-ph/9501032 +astro-ph/9501033 +astro-ph/9501034 +astro-ph/9501035 +astro-ph/9501036 +astro-ph/9501037 +astro-ph/9501038 +astro-ph/9501039 +astro-ph/9501043 +astro-ph/9501044 +astro-ph/9501046 +astro-ph/9501052 +astro-ph/9501053 +astro-ph/9501055 +astro-ph/9501056 +astro-ph/9501058 +astro-ph/9501059 +astro-ph/9501062 +astro-ph/9501063 +astro-ph/9501067 +astro-ph/9501068 +astro-ph/9501069 +astro-ph/9501070 +astro-ph/9501075 +astro-ph/9501076 +astro-ph/9501079 +astro-ph/9501080 +astro-ph/9501082 +astro-ph/9501085 +astro-ph/9501086 +astro-ph/9501090 +astro-ph/9501091 +astro-ph/9501095 +astro-ph/9501096 +astro-ph/9501099 +astro-ph/9501106 +astro-ph/9501107 +astro-ph/9501109 +astro-ph/9501110 +astro-ph/9501112 +astro-ph/9501114 +astro-ph/9502003 +astro-ph/9502005 +astro-ph/9502007 +astro-ph/9502008 +astro-ph/9502009 +astro-ph/9502011 +astro-ph/9502013 +astro-ph/9502016 +astro-ph/9502018 +astro-ph/9502021 +astro-ph/9502023 +astro-ph/9502024 +astro-ph/9502025 +astro-ph/9502028 +astro-ph/9502029 +astro-ph/9502030 +astro-ph/9502038 +astro-ph/9502042 +astro-ph/9502043 +astro-ph/9502044 +astro-ph/9502045 +astro-ph/9502047 +astro-ph/9502048 +astro-ph/9502049 +astro-ph/9502051 +astro-ph/9502053 +astro-ph/9502054 +astro-ph/9502055 +astro-ph/9502056 +astro-ph/9502057 +astro-ph/9502058 +astro-ph/9502060 +astro-ph/9502062 +astro-ph/9502063 +astro-ph/9502064 +astro-ph/9502065 +astro-ph/9502067 +astro-ph/9502070 +astro-ph/9502072 +astro-ph/9502074 +astro-ph/9502075 +astro-ph/9502076 +astro-ph/9502077 +astro-ph/9502079 +astro-ph/9502080 +astro-ph/9502081 +astro-ph/9502082 +astro-ph/9502083 +astro-ph/9502084 +astro-ph/9502086 +astro-ph/9502090 +astro-ph/9502091 +astro-ph/9502095 +astro-ph/9502097 +astro-ph/9502098 +astro-ph/9502100 +astro-ph/9502101 +astro-ph/9502102 +astro-ph/9502104 +astro-ph/9502105 +astro-ph/9503003 +astro-ph/9503004 +astro-ph/9503005 +astro-ph/9503006 +astro-ph/9503007 +astro-ph/9503009 +astro-ph/9503010 +astro-ph/9503012 +astro-ph/9503013 +astro-ph/9503016 +astro-ph/9503018 +astro-ph/9503020 +astro-ph/9503023 +astro-ph/9503027 +astro-ph/9503028 +astro-ph/9503029 +astro-ph/9503030 +astro-ph/9503031 +astro-ph/9503032 +astro-ph/9503034 +astro-ph/9503035 +astro-ph/9503038 +astro-ph/9503039 +astro-ph/9503040 +astro-ph/9503043 +astro-ph/9503044 +astro-ph/9503045 +astro-ph/9503046 +astro-ph/9503048 +astro-ph/9503051 +astro-ph/9503053 +astro-ph/9503056 +astro-ph/9503057 +astro-ph/9503058 +astro-ph/9503059 +astro-ph/9503061 +astro-ph/9503062 +astro-ph/9503063 +astro-ph/9503064 +astro-ph/9503065 +astro-ph/9503068 +astro-ph/9503072 +astro-ph/9503073 +astro-ph/9503119 +astro-ph/9504012 +astro-ph/9504073 +astro-ph/9504092 +astro-ph/9505004 +astro-ph/9505010 +astro-ph/9505073 +astro-ph/9505092 +astro-ph/9505096 +astro-ph/9505108 +astro-ph/9505114 +astro-ph/9505122 +astro-ph/9505139 +astro-ph/9506017 +astro-ph/9506032 +astro-ph/9506035 +astro-ph/9506050 +astro-ph/9506070 +astro-ph/9506083 +astro-ph/9507011 +astro-ph/9507014 +astro-ph/9507018 +astro-ph/9507057 +astro-ph/9507084 +astro-ph/9507102 +astro-ph/9508006 +astro-ph/9508035 +astro-ph/9508041 +astro-ph/9508058 +astro-ph/9508099 +astro-ph/9508120 +astro-ph/9508123 +astro-ph/9508144 +astro-ph/9509011 +astro-ph/9509031 +astro-ph/9509111 +astro-ph/9509112 +astro-ph/9509144 +astro-ph/9509152 +astro-ph/9510031 +astro-ph/9510053 +astro-ph/9510071 +astro-ph/9510090 +astro-ph/9510127 +astro-ph/9510134 +astro-ph/9511001 +astro-ph/9511023 +astro-ph/9511026 +astro-ph/9511045 +astro-ph/9511077 +astro-ph/9511100 +astro-ph/9511102 +astro-ph/9511121 +astro-ph/9511123 +astro-ph/9511125 +astro-ph/9511132 +astro-ph/9511141 +astro-ph/9512033 +astro-ph/9512081 +astro-ph/9512091 +astro-ph/9512132 +astro-ph/9601074 +astro-ph/9601095 +astro-ph/9601149 +astro-ph/9601151 +astro-ph/9601155 +astro-ph/9602002 +astro-ph/9602014 +astro-ph/9602017 +astro-ph/9602025 +astro-ph/9602041 +astro-ph/9602064 +astro-ph/9602078 +astro-ph/9602087 +astro-ph/9602120 +astro-ph/9602157 +astro-ph/9603028 +astro-ph/9603060 +astro-ph/9603068 +astro-ph/9603076 +astro-ph/9603082 +astro-ph/9603086 +astro-ph/9603091 +astro-ph/9603100 +astro-ph/9603113 +astro-ph/9603119 +astro-ph/9603120 +astro-ph/9603126 +astro-ph/9604052 +astro-ph/9604063 +astro-ph/9604076 +astro-ph/9604090 +astro-ph/9604107 +astro-ph/9604151 +astro-ph/9604152 +astro-ph/9605034 +astro-ph/9605038 +astro-ph/9605184 +astro-ph/9606003 +astro-ph/9606039 +astro-ph/9606068 +astro-ph/9606132 +astro-ph/9607036 +astro-ph/9607144 +astro-ph/9608020 +astro-ph/9608050 +astro-ph/9608105 +astro-ph/9608116 +astro-ph/9608117 +astro-ph/9608119 +astro-ph/9608150 +astro-ph/9608183 +astro-ph/9608193 +astro-ph/9608202 +astro-ph/9609001 +astro-ph/9609005 +astro-ph/9609031 +astro-ph/9609040 +astro-ph/9609070 +astro-ph/9609075 +astro-ph/9609077 +astro-ph/9609083 +astro-ph/9609089 +astro-ph/9609093 +astro-ph/9609094 +astro-ph/9609115 +astro-ph/9609128 +astro-ph/9609130 +astro-ph/9609143 +astro-ph/9609146 +astro-ph/9609160 +astro-ph/9609163 +astro-ph/9609176 +astro-ph/9609181 +astro-ph/9609183 +astro-ph/9610018 +astro-ph/9610029 +astro-ph/9610030 +astro-ph/9610044 +astro-ph/9610056 +astro-ph/9610058 +astro-ph/9610063 +astro-ph/9610078 +astro-ph/9610101 +astro-ph/9610105 +astro-ph/9610107 +astro-ph/9610123 +astro-ph/9610132 +astro-ph/9610170 +astro-ph/9610178 +astro-ph/9610185 +astro-ph/9610204 +astro-ph/9610230 +astro-ph/9610258 +astro-ph/9611012 +astro-ph/9611015 +astro-ph/9611020 +astro-ph/9611060 +astro-ph/9611068 +astro-ph/9611070 +astro-ph/9611089 +astro-ph/9611112 +astro-ph/9611121 +astro-ph/9611122 +astro-ph/9611123 +astro-ph/9611138 +astro-ph/9611152 +astro-ph/9611177 +astro-ph/9611178 +astro-ph/9611179 +astro-ph/9611185 +astro-ph/9611197 +astro-ph/9611204 +astro-ph/9612007 +astro-ph/9612009 +astro-ph/9612020 +astro-ph/9612041 +astro-ph/9612057 +astro-ph/9612059 +astro-ph/9612062 +astro-ph/9612072 +astro-ph/9612077 +astro-ph/9612080 +astro-ph/9612081 +astro-ph/9612091 +astro-ph/9612095 +astro-ph/9612101 +astro-ph/9612103 +astro-ph/9612162 +astro-ph/9612174 +astro-ph/9612182 +astro-ph/9612202 +astro-ph/9612243 +astro-ph/9701001 +astro-ph/9701002 +astro-ph/9701003 +astro-ph/9701007 +astro-ph/9701019 +astro-ph/9701024 +astro-ph/9701036 +astro-ph/9701039 +astro-ph/9701041 +astro-ph/9701052 +astro-ph/9701063 +astro-ph/9701068 +astro-ph/9701092 +astro-ph/9701100 +astro-ph/9701109 +astro-ph/9701113 +astro-ph/9701120 +astro-ph/9701126 +astro-ph/9701134 +astro-ph/9701163 +astro-ph/9701169 +astro-ph/9701174 +astro-ph/9701178 +astro-ph/9701204 +astro-ph/9701217 +astro-ph/9701228 +astro-ph/9702005 +astro-ph/9702016 +astro-ph/9702049 +astro-ph/9702087 +astro-ph/9702102 +astro-ph/9702103 +astro-ph/9702124 +astro-ph/9702125 +astro-ph/9702142 +astro-ph/9702174 +astro-ph/9702223 +astro-ph/9702225 +astro-ph/9702233 +astro-ph/9703015 +astro-ph/9703025 +astro-ph/9703031 +astro-ph/9703035 +astro-ph/9703037 +astro-ph/9703062 +astro-ph/9703073 +astro-ph/9703074 +astro-ph/9703112 +astro-ph/9703122 +astro-ph/9703189 +astro-ph/9703191 +astro-ph/9703199 +astro-ph/9704022 +astro-ph/9704038 +astro-ph/9704066 +astro-ph/9704079 +astro-ph/9704080 +astro-ph/9704105 +astro-ph/9704139 +astro-ph/9704156 +astro-ph/9704160 +astro-ph/9704212 +astro-ph/9704224 +astro-ph/9704243 +astro-ph/9704244 +astro-ph/9704260 +astro-ph/9705014 +astro-ph/9705015 +astro-ph/9705027 +astro-ph/9705040 +astro-ph/9705061 +astro-ph/9705063 +astro-ph/9705065 +astro-ph/9705067 +astro-ph/9705071 +astro-ph/9705096 +astro-ph/9705097 +astro-ph/9705124 +astro-ph/9705148 +astro-ph/9705182 +astro-ph/9705197 +astro-ph/9705205 +astro-ph/9705221 +astro-ph/9706004 +astro-ph/9706014 +astro-ph/9706049 +astro-ph/9706168 +astro-ph/9706208 +astro-ph/9706257 +astro-ph/9706274 +astro-ph/9707007 +astro-ph/9707019 +astro-ph/9707022 +astro-ph/9707075 +astro-ph/9707117 +astro-ph/9707204 +astro-ph/9707251 +astro-ph/9707284 +astro-ph/9707308 +astro-ph/9708104 +astro-ph/9708124 +astro-ph/9708169 +astro-ph/9708196 +astro-ph/9709002 +astro-ph/9709029 +astro-ph/9709035 +astro-ph/9709037 +astro-ph/9709075 +astro-ph/9709118 +astro-ph/9709142 +astro-ph/9709219 +astro-ph/9709233 +astro-ph/9709243 +astro-ph/9710047 +astro-ph/9710077 +astro-ph/9710191 +astro-ph/9710196 +astro-ph/9710197 +astro-ph/9710245 +astro-ph/9710341 +astro-ph/9710347 +astro-ph/9711020 +astro-ph/9711037 +astro-ph/9711065 +astro-ph/9711169 +astro-ph/9711235 +astro-ph/9711255 +astro-ph/9711303 +astro-ph/9712029 +astro-ph/9712052 +astro-ph/9712137 +astro-ph/9712208 +astro-ph/9712287 +astro-ph/9712304 +astro-ph/9712316 +astro-ph/9801007 +astro-ph/9801030 +astro-ph/9801031 +astro-ph/9801061 +astro-ph/9801115 +astro-ph/9801120 +astro-ph/9801151 +astro-ph/9801203 +astro-ph/9801237 +astro-ph/9802015 +astro-ph/9802016 +astro-ph/9802020 +astro-ph/9802196 +astro-ph/9802286 +astro-ph/9802301 +astro-ph/9803002 +astro-ph/9803006 +astro-ph/9803080 +astro-ph/9803127 +astro-ph/9803147 +astro-ph/9803219 +astro-ph/9803222 +astro-ph/9803231 +astro-ph/9803290 +astro-ph/9803302 +astro-ph/9803339 +astro-ph/9804023 +astro-ph/9804047 +astro-ph/9804048 +astro-ph/9804082 +astro-ph/9804086 +astro-ph/9804111 +astro-ph/9804121 +astro-ph/9804124 +astro-ph/9804181 +astro-ph/9804185 +astro-ph/9804188 +astro-ph/9804189 +astro-ph/9804190 +astro-ph/9804227 +astro-ph/9804232 +astro-ph/9804237 +astro-ph/9804252 +astro-ph/9804258 +astro-ph/9804267 +astro-ph/9804278 +astro-ph/9804314 +astro-ph/9804330 +astro-ph/9804332 +astro-ph/9805069 +astro-ph/9805144 +astro-ph/9805192 +astro-ph/9805195 +astro-ph/9805207 +astro-ph/9805223 +astro-ph/9805266 +astro-ph/9805268 +astro-ph/9805290 +astro-ph/9805299 +astro-ph/9805344 +astro-ph/9805346 +astro-ph/9806016 +astro-ph/9806051 +astro-ph/9806106 +astro-ph/9806162 +astro-ph/9806170 +astro-ph/9806178 +astro-ph/9806210 +astro-ph/9806214 +astro-ph/9806238 +astro-ph/9806294 +astro-ph/9806318 +astro-ph/9806322 +astro-ph/9806374 +astro-ph/9806392 +astro-ph/9807017 +astro-ph/9807036 +astro-ph/9807086 +astro-ph/9807102 +astro-ph/9807170 +astro-ph/9807185 +astro-ph/9807226 +astro-ph/9807235 +astro-ph/9807266 +astro-ph/9807296 +astro-ph/9807319 +astro-ph/9807321 +astro-ph/9807323 +astro-ph/9807333 +astro-ph/9808046 +astro-ph/9808079 +astro-ph/9808173 +astro-ph/9808220 +astro-ph/9808252 +astro-ph/9808258 +astro-ph/9808327 +astro-ph/9808330 +astro-ph/9809008 +astro-ph/9809020 +astro-ph/9809056 +astro-ph/9809090 +astro-ph/9809111 +astro-ph/9809117 +astro-ph/9809137 +astro-ph/9809218 +astro-ph/9809244 +astro-ph/9809263 +astro-ph/9809285 +astro-ph/9809366 +astro-ph/9809383 +astro-ph/9809398 +astro-ph/9810045 +astro-ph/9810066 +astro-ph/9810097 +astro-ph/9810277 +astro-ph/9810305 +astro-ph/9810368 +astro-ph/9810400 +astro-ph/9810420 +astro-ph/9810422 +astro-ph/9811002 +astro-ph/9811016 +astro-ph/9811037 +astro-ph/9811042 +astro-ph/9811047 +astro-ph/9811064 +astro-ph/9811080 +astro-ph/9811114 +astro-ph/9811117 +astro-ph/9811124 +astro-ph/9811165 +astro-ph/9811308 +astro-ph/9811358 +astro-ph/9811378 +astro-ph/9811414 +astro-ph/9811418 +astro-ph/9811437 +astro-ph/9811445 +astro-ph/9811471 +astro-ph/9812061 +astro-ph/9812062 +astro-ph/9812096 +astro-ph/9812269 +astro-ph/9812281 +astro-ph/9812304 +astro-ph/9812320 +astro-ph/9812353 +astro-ph/9812434 +astro-ph/9812438 +astro-ph/9812439 +astro-ph/9901048 +astro-ph/9901186 +astro-ph/9901221 +astro-ph/9901299 +astro-ph/9901312 +astro-ph/9901317 +astro-ph/9901337 +astro-ph/9901350 +astro-ph/9902008 +astro-ph/9902016 +astro-ph/9902043 +astro-ph/9902049 +astro-ph/9902091 +astro-ph/9902250 +astro-ph/9902252 +astro-ph/9902275 +astro-ph/9902321 +astro-ph/9902359 +astro-ph/9903036 +astro-ph/9903106 +astro-ph/9903108 +astro-ph/9903142 +astro-ph/9903265 +astro-ph/9903278 +astro-ph/9903336 +astro-ph/9903428 +astro-ph/9903479 +astro-ph/9904074 +astro-ph/9904075 +astro-ph/9904158 +astro-ph/9904213 +astro-ph/9904227 +astro-ph/9904233 +astro-ph/9904244 +astro-ph/9904418 +astro-ph/9904425 +astro-ph/9905008 +astro-ph/9905233 +astro-ph/9905371 +astro-ph/9906001 +astro-ph/9906012 +astro-ph/9906019 +astro-ph/9906080 +astro-ph/9906159 +astro-ph/9906246 +astro-ph/9906380 +astro-ph/9906392 +astro-ph/9906407 +astro-ph/9906433 +astro-ph/9907038 +astro-ph/9907049 +astro-ph/9907051 +astro-ph/9907122 +astro-ph/9907147 +astro-ph/9907150 +astro-ph/9907224 +astro-ph/9907277 +astro-ph/9907286 +astro-ph/9907306 +astro-ph/9907319 +astro-ph/9907356 +astro-ph/9907365 +astro-ph/9907374 +astro-ph/9907387 +astro-ph/9907396 +astro-ph/9908010 +astro-ph/9908110 +astro-ph/9908120 +astro-ph/9908141 +astro-ph/9908147 +astro-ph/9908175 +astro-ph/9908191 +astro-ph/9908193 +astro-ph/9908197 +astro-ph/9908212 +astro-ph/9908236 +astro-ph/9908241 +astro-ph/9908265 +astro-ph/9908282 +astro-ph/9908284 +astro-ph/9909017 +astro-ph/9909033 +astro-ph/9909082 +astro-ph/9909137 +astro-ph/9909146 +astro-ph/9909152 +astro-ph/9909183 +astro-ph/9909311 +astro-ph/9909388 +astro-ph/9909406 +astro-ph/9909430 +astro-ph/9909513 +astro-ph/9910010 +astro-ph/9910032 +astro-ph/9910047 +astro-ph/9910068 +astro-ph/9910155 +astro-ph/9910173 +astro-ph/9910181 +astro-ph/9910185 +astro-ph/9910256 +astro-ph/9910262 +astro-ph/9910269 +astro-ph/9910270 +astro-ph/9910290 +astro-ph/9910345 +astro-ph/9910350 +astro-ph/9910415 +astro-ph/9910480 +astro-ph/9910512 +astro-ph/9911040 +astro-ph/9911059 +astro-ph/9911081 +astro-ph/9911092 +astro-ph/9911117 +astro-ph/9911135 +astro-ph/9911181 +astro-ph/9911208 +astro-ph/9911237 +astro-ph/9911295 +astro-ph/9911339 +astro-ph/9911399 +astro-ph/9911413 +astro-ph/9911435 +astro-ph/9911503 +astro-ph/9912019 +astro-ph/9912161 +astro-ph/9912162 +astro-ph/9912168 +astro-ph/9912201 +astro-ph/9912222 +astro-ph/9912307 +astro-ph/9912410 +astro-ph/9912425 +astro-ph/9912431 +astro-ph/9912499 +astro-ph/9912545 +astro-ph/9912552 +hep-ph/0011179 Phenomenology +math/0605028 Algebraic Geometry +math/0610013 Quantum Algebra +physics/0602019 Chemical Physics +0801.2912 +0802.0140 Chaotic Dynamics +0802.0631 Strongly Correlated Electrons +0804.2581 Materials Science +0805.2345 Chaotic Dynamics +0805.3128 +0807.3612 Analysis of PDEs +0812.3764 Mesoscale and Nanoscale Physics +0904.0929 Experiment +0906.4170 Soft Condensed Matter +0907.0470 Symplectic Geometry +0910.5715 High Energy Astrophysical Phenomena +1006.0125 +1007.4867 +1011.3823 Cosmology and Nongalactic Astrophysics +1105.3492 Materials Science +1108.1900 Dynamical Systems +1111.4175 High Energy Astrophysical Phenomena +1111.4199 Functional Analysis +1201.0064 +1201.5920 Exactly Solvable and Integrable Systems +1209.2489 Cosmology and Nongalactic Astrophysics +1210.1789 Number Theory +1212.1639 Computation +1212.2412 +1301.7052 Symplectic Geometry +1302.0691 Statistical Mechanics +1303.4783 +1304.2051 Differential Geometry +1305.3679 Earth and Planetary Astrophysics +1306.5250 Algebraic Geometry +1308.2347 Representation Theory +1310.6294 Atomic Physics +1311.2084 Group Theory +1311.4221 Symplectic Geometry +1401.1942 Mathematical Software +1401.6989 Number Theory +1402.1981 Mesoscale and Nanoscale Physics +1404.3250 Information Theory +1405.6441 Representation Theory +1406.5793 Combinatorics +1407.3277 High Energy Astrophysical Phenomena +1407.3902 +1407.5641 Materials Science +1407.6696 Complex Variables +1408.0752 Analysis of PDEs +1408.2895 Complex Variables +1409.0570 Classical Analysis and ODEs +1409.3234 Quantum Gases +1410.1665 Operator Algebras +1410.1703 Computer Science and Game Theory +1410.8124 High Energy Astrophysical Phenomena +1412.1045 Phenomenology +1412.3616 Phenomenology +1412.6872 Phenomenology +1501.03936 Soft Condensed Matter +1501.06246 Classical Physics +1502.01526 Computer Vision and Pattern Recognition +1502.07172 Soft Condensed Matter +1503.00917 Operator Algebras +1503.04814 Astrophysics of Galaxies +1504.00375 +1504.00559 Probability +1504.02814 Algebraic Geometry +1504.04177 +1504.06046 +1504.06287 Phenomenology +1505.00780 High Energy Astrophysical Phenomena +1505.00896 Classical Analysis and ODEs +1505.02121 Theory +1505.02122 Theory +1505.02157 Astrophysics of Galaxies +1505.02172 High Energy Astrophysical Phenomena +1505.03672 +1505.03959 Materials Science +1505.05756 Solar and Stellar Astrophysics +1505.06724 Analysis of PDEs +1506.00006 Astrophysics of Galaxies +1506.02471 Earth and Planetary Astrophysics +1506.02805 +1506.02935 Probability +1506.04891 Computation and Language +1506.05455 Disordered Systems and Neural Networks +1506.05585 High Energy Astrophysical Phenomena +1506.06997 Computational Finance +1506.07009 Classical Analysis and ODEs +1507.00842 Phenomenology +1507.02576 Analysis of PDEs +1507.02768 Superconductivity +1507.03268 Experiment +1507.05826 Theory +1507.06116 Strongly Correlated Electrons +1507.06153 High Energy Astrophysical Phenomena +1507.06696 High Energy Astrophysical Phenomena +1507.08138 +1507.08518 Instrumentation and Methods for Astrophysics +1508.01751 Functional Analysis +1508.03910 Phenomenology +1509.00147 Soft Condensed Matter +1509.01303 +1509.01801 Phenomenology +1509.01990 Data Structures and Algorithms +1509.03082 Statistical Mechanics +1509.03493 +1509.03634 High Energy Astrophysical Phenomena +1509.06070 +1509.06175 Optics +1509.06289 +1509.06741 Statistical Mechanics +1509.08661 Soft Condensed Matter +1509.08930 Cosmology and Nongalactic Astrophysics +1510.00490 Optimization and Control +1510.01016 Statistical Mechanics +1510.01287 Symplectic Geometry +1510.01486 Cosmology and Nongalactic Astrophysics +1510.02106 Astrophysics of Galaxies +1510.02377 Computers and Society +1510.03262 Astrophysics of Galaxies +1510.04196 Instrumentation and Detectors +1510.04286 High Energy Astrophysical Phenomena +1510.05406 Materials Science +1510.07594 High Energy Astrophysical Phenomena +1510.07611 +1510.07649 High Energy Astrophysical Phenomena +1510.08454 High Energy Astrophysical Phenomena +1510.08521 Earth and Planetary Astrophysics +1510.08627 Superconductivity +1510.08793 Cosmology and Nongalactic Astrophysics +1510.08865 Data Structures and Algorithms +1511.00392 Cosmology and Nongalactic Astrophysics +1511.00943 High Energy Astrophysical Phenomena +1511.01107 Cosmology and Nongalactic Astrophysics +1511.01125 Cosmology and Nongalactic Astrophysics +1511.01471 High Energy Astrophysical Phenomena +1511.02549 Earth and Planetary Astrophysics +1511.02866 Strongly Correlated Electrons +1511.03117 Complex Variables +1511.03660 Astrophysics of Galaxies +1511.05161 Mesoscale and Nanoscale Physics +1511.06525 Statistics Theory +1511.07436 Phenomenology +1511.07450 Theory +1511.07631 Mesoscale and Nanoscale Physics +1511.07835 Cosmology and Nongalactic Astrophysics +1511.08813 Solar and Stellar Astrophysics +1512.00189 Earth and Planetary Astrophysics +1512.00338 Quantum Gases +1512.00434 Networking and Internet Architecture +1512.00563 Astrophysics of Galaxies +1512.01778 Soft Condensed Matter +1512.01991 Phenomenology +1512.02211 Theory +1512.02243 Theory +1512.03062 Cosmology and Nongalactic Astrophysics +1512.03101 Astrophysics of Galaxies +1512.03105 Cosmology and Nongalactic Astrophysics +1512.03606 +1512.04918 Mesoscale and Nanoscale Physics +1512.05396 Astrophysics of Galaxies +1512.05524 Complex Variables +1512.06064 Theory +1512.06139 Cosmology and Nongalactic Astrophysics +1512.06344 Cosmology and Nongalactic Astrophysics +1512.07486 +1512.07515 General Topology +1512.07527 Phenomenology +1512.07668 Soft Condensed Matter +1512.08421 Probability +1512.08730 High Energy Astrophysical Phenomena +1601.00160 Cosmology and Nongalactic Astrophysics +1601.00375 Astrophysics of Galaxies +1601.00557 Astrophysics of Galaxies +1601.01049 Differential Geometry +1601.01640 Phenomenology +1601.01717 Astrophysics of Galaxies +1601.02028 Superconductivity +1601.02432 Operator Algebras +1601.02877 Superconductivity +1601.03110 +1601.03455 Earth and Planetary Astrophysics +1601.03643 Materials Science +1601.03711 Strongly Correlated Electrons +1601.03743 Phenomenology +1601.04088 Functional Analysis +1601.04463 Statistical Mechanics +1601.04761 Earth and Planetary Astrophysics +1601.04872 Mesoscale and Nanoscale Physics +1601.05023 Rings and Algebras +1601.05065 Neurons and Cognition +1601.05181 Astrophysics of Galaxies +1601.05703 Theory +1601.05784 Information Theory +1601.05891 Strongly Correlated Electrons +1601.06115 Astrophysics of Galaxies +1601.06324 +1601.06678 High Energy Astrophysical Phenomena +1601.06836 High Energy Astrophysical Phenomena +1601.07230 Cosmology and Nongalactic Astrophysics +1601.07349 High Energy Astrophysical Phenomena +1601.07544 +1601.07549 Astrophysics of Galaxies +1601.08054 Space Physics +1602.00261 Classical Analysis and ODEs +1602.00411 Cosmology and Nongalactic Astrophysics +1602.00496 Phenomenology +1602.00497 Mesoscale and Nanoscale Physics +1602.01858 Theory +1602.02188 High Energy Astrophysical Phenomena +1602.03703 Atomic Physics +1602.03720 Mesoscale and Nanoscale Physics +1602.03762 Materials Science +1602.04030 Atomic Physics +1602.04158 High Energy Astrophysical Phenomena +1602.04195 Strongly Correlated Electrons +1602.04551 +1602.04651 Algebraic Geometry +1602.05321 Computational Physics +1602.05361 Pattern Formation and Solitons +1602.05580 Astrophysics of Galaxies +1602.05957 Astrophysics of Galaxies +1602.06259 Instrumentation and Methods for Astrophysics +1602.06302 Cosmology and Nongalactic Astrophysics +1602.06540 Mesoscale and Nanoscale Physics +1602.07058 Mesoscale and Nanoscale Physics +1602.07355 Lattice +1602.07609 +1602.07710 High Energy Astrophysical Phenomena +1602.07714 Learning +1602.07722 +1602.07791 Atomic Physics +1602.07833 Mesoscale and Nanoscale Physics +1602.08075 +1602.08099 Cosmology and Nongalactic Astrophysics +1602.08180 Differential Geometry +1602.08525 Materials Science +1602.08697 Theory +1602.08766 Phenomenology +1602.09063 Earth and Planetary Astrophysics +1603.00046 Lattice +1603.00360 Phenomenology +1603.00362 +1603.00469 Strongly Correlated Electrons +1603.00918 Cosmology and Nongalactic Astrophysics +1603.01053 +1603.01139 Astrophysics of Galaxies +1603.01546 +1603.01777 Strongly Correlated Electrons +1603.02350 High Energy Astrophysical Phenomena +1603.02891 High Energy Astrophysical Phenomena +1603.03255 Materials Science +1603.03302 Statistical Mechanics +1603.03430 Phenomenology +1603.03443 +1603.03499 +1603.03558 Geometric Topology +1603.03589 +1603.03692 +1603.03739 Superconductivity +1603.03972 Machine Learning +1603.04313 Fluid Dynamics +1603.04730 Cosmology and Nongalactic Astrophysics +1603.05218 High Energy Astrophysical Phenomena +1603.05713 Theory +1603.05753 Atomic Physics +1603.05981 Astrophysics of Galaxies +1603.05997 Instrumentation and Methods for Astrophysics +1603.06146 +1603.06437 Materials Science +1603.06488 Earth and Planetary Astrophysics +1603.06583 Astrophysics of Galaxies +1603.06746 High Energy Astrophysical Phenomena +1603.06795 Cosmology and Nongalactic Astrophysics +1603.07255 Earth and Planetary Astrophysics +1603.07268 Atomic Physics +1603.07572 Cosmology and Nongalactic Astrophysics +1603.07740 +1603.07818 Cosmology and Nongalactic Astrophysics +1603.07872 High Energy Astrophysical Phenomena +1603.08009 Astrophysics of Galaxies +1603.08187 Phenomenology +1603.08250 Phenomenology +1603.08392 Space Physics +1603.08736 Mesoscale and Nanoscale Physics +1603.09010 Atomic Physics +1603.09199 +1603.09475 Astrophysics of Galaxies +1603.09552 +1603.09610 Astrophysics of Galaxies +1603.09688 Strongly Correlated Electrons +1603.09697 High Energy Astrophysical Phenomena +1604.00004 Earth and Planetary Astrophysics +1604.00048 Cosmology and Nongalactic Astrophysics +1604.00203 +1604.00226 Statistical Mechanics +1604.00613 Solar and Stellar Astrophysics +1604.00687 Theory +1604.00958 Solar and Stellar Astrophysics +1604.01044 High Energy Astrophysical Phenomena +1604.01122 Astrophysics of Galaxies +1604.01254 Atomic Physics +1604.01396 +1604.01681 Mesoscale and Nanoscale Physics +1604.01698 Astrophysics of Galaxies +1604.01764 Astrophysics of Galaxies +1604.01765 Astrophysics of Galaxies +1604.01802 Computer Vision and Pattern Recognition +1604.01858 Strongly Correlated Electrons +1604.02129 Computer Vision and Pattern Recognition +1604.02147 Astrophysics of Galaxies +1604.02154 +1604.02394 Materials Science +1604.02513 +1604.02585 Materials Science +1604.02712 Combinatorics +1604.02820 High Energy Astrophysical Phenomena +1604.02995 Theory +1604.03090 Disordered Systems and Neural Networks +1604.03150 Chaotic Dynamics +1604.03511 Earth and Planetary Astrophysics +1604.03593 Instrumentation and Methods for Astrophysics +1604.03789 Astrophysics of Galaxies +1604.03988 Strongly Correlated Electrons +1604.04092 Mesoscale and Nanoscale Physics +1604.04163 Metric Geometry +1604.04287 Mesoscale and Nanoscale Physics +1604.04698 Statistical Mechanics +1604.04776 Solar and Stellar Astrophysics +1604.04820 Astrophysics of Galaxies +1604.05028 Earth and Planetary Astrophysics +1604.05087 +1604.05188 Fluid Dynamics +1604.05190 Strongly Correlated Electrons +1604.05234 Solar and Stellar Astrophysics +1604.05303 Solar and Stellar Astrophysics +1604.05311 Strongly Correlated Electrons +1604.05318 Solar and Stellar Astrophysics +1604.05349 Cosmology and Nongalactic Astrophysics +1604.05437 Mesoscale and Nanoscale Physics +1604.05586 Astrophysics of Galaxies +1604.06202 +1604.06537 +1604.06712 Lattice +1604.06829 Materials Science +1604.07282 Combinatorics +1604.07403 Solar and Stellar Astrophysics +1604.07411 Phenomenology +1604.07577 Plasma Physics +1604.07692 +1604.07808 High Energy Astrophysical Phenomena +1604.07828 Phenomenology +1604.07937 Astrophysics of Galaxies +1604.07971 Mesoscale and Nanoscale Physics +1604.08038 +1604.08184 +1604.08244 Astrophysics of Galaxies +1604.08367 Mesoscale and Nanoscale Physics +1604.08505 High Energy Astrophysical Phenomena +1604.08512 Theory +1604.08576 Phenomenology +1604.08659 Materials Science +1604.08724 +1604.08777 Astrophysics of Galaxies +1604.08786 Theory +1604.08829 Quantum Gases +1605.00004 Astrophysics of Galaxies +1605.00123 +1605.00496 +1605.00579 Earth and Planetary Astrophysics +1605.00646 Astrophysics of Galaxies +1605.00671 Phenomenology +1605.00703 Atomic Physics +1605.00958 Mesoscale and Nanoscale Physics +1605.01060 High Energy Astrophysical Phenomena +1605.01065 Astrophysics of Galaxies +1605.01089 Differential Geometry +1605.01132 Solar and Stellar Astrophysics +1605.01140 Astrophysics of Galaxies +1605.01163 Solar and Stellar Astrophysics +1605.01203 +1605.01382 High Energy Astrophysical Phenomena +1605.01406 Astrophysics of Galaxies +1605.01531 Cosmology and Nongalactic Astrophysics +1605.01649 Solar and Stellar Astrophysics +1605.01765 Cosmology and Nongalactic Astrophysics +1605.01851 Quantum Gases +1605.01922 Quantum Gases +1605.02032 Astrophysics of Galaxies +1605.02071 High Energy Astrophysical Phenomena +1605.02145 Strongly Correlated Electrons +1605.02158 Disordered Systems and Neural Networks +1605.02433 High Energy Astrophysical Phenomena +1605.02491 High Energy Astrophysical Phenomena +1605.02505 Materials Science +1605.02683 Solar and Stellar Astrophysics +1605.02764 Solar and Stellar Astrophysics +1605.02823 Solar and Stellar Astrophysics +1605.02938 Cosmology and Nongalactic Astrophysics +1605.03014 Astrophysics of Galaxies +1605.03088 Phenomenology +1605.03187 Astrophysics of Galaxies +1605.03467 Astrophysics of Galaxies +1605.03567 +1605.03573 High Energy Astrophysical Phenomena +1605.03610 Phenomenology +1605.03668 Solar and Stellar Astrophysics +1605.03675 Solar and Stellar Astrophysics +1605.03839 High Energy Astrophysical Phenomena +1605.03991 Astrophysics of Galaxies +1605.04030 +1605.04053 Data Analysis, Statistics and Probability +1605.04109 Mesoscale and Nanoscale Physics +1605.04149 Mesoscale and Nanoscale Physics +1605.04622 Mesoscale and Nanoscale Physics +1605.04736 Phenomenology +1605.04789 +1605.04818 Mesoscale and Nanoscale Physics +1605.04837 Astrophysics of Galaxies +1605.04918 Mesoscale and Nanoscale Physics +1605.05066 +1605.05088 Astrophysics of Galaxies +1605.05286 Cosmology and Nongalactic Astrophysics +1605.05370 +1605.05390 Solar and Stellar Astrophysics +1605.05408 Solar and Stellar Astrophysics +1605.05427 Instrumentation and Detectors +1605.05769 Astrophysics of Galaxies +1605.05888 Solar and Stellar Astrophysics +1605.05964 Solar and Stellar Astrophysics +1605.06066 High Energy Astrophysical Phenomena +1605.06109 Astrophysics of Galaxies +1605.06356 High Energy Astrophysical Phenomena +1605.06449 Cosmology and Nongalactic Astrophysics +1605.06556 +1605.06598 Astrophysics of Galaxies +1605.06616 High Energy Astrophysical Phenomena +1605.06687 +1605.06728 Solar and Stellar Astrophysics +1605.06777 Solar and Stellar Astrophysics +1605.06812 +1605.06876 Phenomenology +1605.07029 Theory +1605.07044 Mesoscale and Nanoscale Physics +1605.07177 Solar and Stellar Astrophysics +1605.07182 Solar and Stellar Astrophysics +1605.07186 Astrophysics of Galaxies +1605.07199 Mesoscale and Nanoscale Physics +1605.07206 Cosmology and Nongalactic Astrophysics +1605.07207 Theory +1605.07261 Astrophysics of Galaxies +1605.07301 Astrophysics of Galaxies +1605.07603 Earth and Planetary Astrophysics +1605.07606 High Energy Astrophysical Phenomena +1605.07687 Solar and Stellar Astrophysics +1605.07846 Instrumentation and Methods for Astrophysics +1605.07900 Solar and Stellar Astrophysics +1605.07917 Earth and Planetary Astrophysics +1605.08030 Solar and Stellar Astrophysics +1605.08044 Astrophysics of Galaxies +1605.08119 +1605.08132 Astrophysics of Galaxies +1605.08219 Solar and Stellar Astrophysics +1605.08293 +1605.08399 Solar and Stellar Astrophysics +1605.08428 Cosmology and Nongalactic Astrophysics +1605.08488 High Energy Astrophysical Phenomena +1605.08549 Astrophysics of Galaxies +1605.08646 Statistical Mechanics +1605.08785 Earth and Planetary Astrophysics +1605.08789 Solar and Stellar Astrophysics +1605.08907 Solar and Stellar Astrophysics +1605.09186 Computation and Language +1605.09262 High Energy Astrophysical Phenomena +1605.09318 Experiment +1605.09334 Superconductivity +1605.09357 Cosmology and Nongalactic Astrophysics +1605.09382 Phenomenology +1605.09400 High Energy Astrophysical Phenomena +1605.09405 Instrumentation and Detectors +1605.09510 Theory +1605.09689 Subcellular Processes +1605.09742 Cosmology and Nongalactic Astrophysics +1605.09756 High Energy Astrophysical Phenomena +1605.09788 Solar and Stellar Astrophysics +1606.00337 Solar and Stellar Astrophysics +1606.00348 Earth and Planetary Astrophysics +1606.00380 Solar and Stellar Astrophysics +1606.00415 Astrophysics of Galaxies +1606.00512 Quantum Gases +1606.00836 Solar and Stellar Astrophysics +1606.00840 Phenomenology +1606.00919 +1606.00945 Solar and Stellar Astrophysics +1606.01097 +1606.01158 Differential Geometry +1606.01238 Phenomenology +1606.01263 Astrophysics of Galaxies +1606.01268 Astrophysics of Galaxies +1606.01310 Astrophysics of Galaxies +1606.01336 Earth and Planetary Astrophysics +1606.01494 High Energy Astrophysical Phenomena +1606.01598 Theory +1606.01613 +1606.01707 High Energy Astrophysical Phenomena +1606.01757 Astrophysics of Galaxies +1606.01762 Astrophysics of Galaxies +1606.01846 Earth and Planetary Astrophysics +1606.01851 High Energy Astrophysical Phenomena +1606.01878 Solar and Stellar Astrophysics +1606.01896 Solar and Stellar Astrophysics +1606.01899 Solar and Stellar Astrophysics +1606.02038 Cosmology and Nongalactic Astrophysics +1606.02279 Learning +1606.02309 Astrophysics of Galaxies +1606.02310 Instrumentation and Methods for Astrophysics +1606.02362 Astrophysics of Galaxies +1606.02368 Solar and Stellar Astrophysics +1606.02475 Theory +1606.02576 Strongly Correlated Electrons +1606.02696 Phenomenology +1606.02823 Astrophysics of Galaxies +1606.03067 Phenomenology +1606.03148 High Energy Astrophysical Phenomena +1606.03151 Plasma Physics +1606.03173 Astrophysics of Galaxies +1606.03367 Strongly Correlated Electrons +1606.03446 Instrumentation and Methods for Astrophysics +1606.03460 Solar and Stellar Astrophysics +1606.03659 High Energy Astrophysical Phenomena +1606.03908 Soft Condensed Matter +1606.03932 Solar and Stellar Astrophysics +1606.04032 Theory +1606.04090 Astrophysics of Galaxies +1606.04115 Astrophysics of Galaxies +1606.04150 Earth and Planetary Astrophysics +1606.04472 Solar and Stellar Astrophysics +1606.04516 History and Overview +1606.04603 Solar and Stellar Astrophysics +1606.04714 Solar and Stellar Astrophysics +1606.04839 +1606.04843 High Energy Astrophysical Phenomena +1606.04877 Number Theory +1606.04894 +1606.04946 Astrophysics of Galaxies +1606.04959 Solar and Stellar Astrophysics +1606.05001 High Energy Astrophysical Phenomena +1606.05106 +1606.05126 Phenomenology +1606.05146 +1606.05211 +1606.05342 +1606.05349 Astrophysics of Galaxies +1606.05351 Astrophysics of Galaxies +1606.05406 Mesoscale and Nanoscale Physics +1606.05606 Category Theory +1606.05831 Theory +1606.05955 Astrophysics of Galaxies +1606.05974 High Energy Astrophysical Phenomena +1606.06001 Astrophysics of Galaxies +1606.06034 Mesoscale and Nanoscale Physics +1606.06055 Solar and Stellar Astrophysics +1606.06204 Distributed, Parallel, and Cluster Computing +1606.06240 Superconductivity +1606.06307 Cosmology and Nongalactic Astrophysics +1606.06315 Instrumentation and Methods for Astrophysics +1606.06334 Atomic Physics +1606.06415 Solar and Stellar Astrophysics +1606.06744 Earth and Planetary Astrophysics +1606.06785 Astrophysics of Galaxies +1606.06927 Phenomenology +1606.06967 +1606.07002 Mesoscale and Nanoscale Physics +1606.07028 Astrophysics of Galaxies +1606.07349 Phenomenology +1606.07452 Astrophysics of Galaxies +1606.07872 Instrumentation and Methods for Astrophysics +1606.07989 High Energy Astrophysical Phenomena +1606.08441 Earth and Planetary Astrophysics +1606.08445 Solar and Stellar Astrophysics +1606.08511 Cosmology and Nongalactic Astrophysics +1606.08680 Soft Condensed Matter +1606.08826 Solar and Stellar Astrophysics +1606.08859 Phenomenology +1606.08940 High Energy Astrophysical Phenomena +1606.09114 Solar and Stellar Astrophysics +1606.09127 Astrophysics of Galaxies +1606.09139 +1606.09157 +1606.09250 High Energy Astrophysical Phenomena +1606.09285 Solar and Stellar Astrophysics +1606.09580 Solar and Stellar Astrophysics +1607.00323 Solar and Stellar Astrophysics +1607.00375 Astrophysics of Galaxies +1607.00463 Theory +1607.00692 Solar and Stellar Astrophysics +1607.00768 High Energy Astrophysical Phenomena +1607.00936 Solar and Stellar Astrophysics +1607.01253 Earth and Planetary Astrophysics +1607.01406 Cosmology and Nongalactic Astrophysics +1607.01446 Astrophysics of Galaxies +1607.01738 Space Physics +1607.01877 Solar and Stellar Astrophysics +1607.02088 Solar and Stellar Astrophysics +1607.02144 High Energy Astrophysical Phenomena +1607.02145 Astrophysics of Galaxies +1607.02147 Astrophysics of Galaxies +1607.02487 Instrumentation and Methods for Astrophysics +1607.02525 Earth and Planetary Astrophysics +1607.02579 +1607.02628 Astrophysics of Galaxies +1607.02975 Astrophysics of Galaxies +1607.03061 High Energy Astrophysical Phenomena +1607.03124 High Energy Astrophysical Phenomena +1607.03242 Astrophysics of Galaxies +1607.03365 Astrophysics of Galaxies +1607.03438 Astrophysics of Galaxies +1607.03553 Astrophysics of Galaxies +1607.03679 Astrophysics of Galaxies +1607.03684 Earth and Planetary Astrophysics +1607.03853 Solar and Stellar Astrophysics +1607.04040 Astrophysics of Galaxies +1607.04047 Mathematical Finance +1607.04056 Astrophysics of Galaxies +1607.04167 High Energy Astrophysical Phenomena +1607.04279 Astrophysics of Galaxies +1607.04284 Astrophysics of Galaxies +1607.04289 Astrophysics of Galaxies +1607.04402 Astrophysics of Galaxies +1607.04659 Earth and Planetary Astrophysics +1607.04828 Astrophysics of Galaxies +1607.04920 Analysis of PDEs +1607.05049 Astrophysics of Galaxies +1607.05056 Group Theory +1607.05092 High Energy Astrophysical Phenomena +1607.05286 Solar and Stellar Astrophysics +1607.05526 Astrophysics of Galaxies +1607.05639 High Energy Astrophysical Phenomena +1607.05647 Information Theory +1607.05652 High Energy Astrophysical Phenomena +1607.06104 High Energy Astrophysical Phenomena +1607.06435 Mesoscale and Nanoscale Physics +1607.06462 Astrophysics of Galaxies +1607.06561 Astrophysics of Galaxies +1607.06654 Lattice +1607.06810 Solar and Stellar Astrophysics +1607.06937 High Energy Astrophysical Phenomena +1607.07139 Neurons and Cognition +1607.07448 High Energy Astrophysical Phenomena +1607.07575 Operator Algebras +1607.07578 Operator Algebras +1607.07672 Solar and Stellar Astrophysics +1607.07740 Instrumentation and Methods for Astrophysics +1607.07835 +1607.07870 Solar and Stellar Astrophysics +1607.08021 High Energy Astrophysical Phenomena +1607.08113 +1607.08387 Solar and Stellar Astrophysics +1607.08818 Earth and Planetary Astrophysics +1607.08828 Solar and Stellar Astrophysics +1608.00048 Astrophysics of Galaxies +1608.00075 Machine Learning +1608.00113 +1608.00184 Astrophysics of Galaxies +1608.00258 Astrophysics of Galaxies +1608.00291 Astrophysics of Galaxies +1608.00382 Phenomenology +1608.00453 Solar and Stellar Astrophysics +1608.00459 Earth and Planetary Astrophysics +1608.00527 Solar and Stellar Astrophysics +1608.00568 Astrophysics of Galaxies +1608.00576 Solar and Stellar Astrophysics +1608.00578 Instrumentation and Methods for Astrophysics +1608.00580 Instrumentation and Methods for Astrophysics +1608.00582 Instrumentation and Methods for Astrophysics +1608.00588 Astrophysics of Galaxies +1608.00670 Earth and Planetary Astrophysics +1608.00746 Earth and Planetary Astrophysics +1608.00772 Solar and Stellar Astrophysics +1608.00784 Earth and Planetary Astrophysics +1608.00805 Astrophysics of Galaxies +1608.01050 Solar and Stellar Astrophysics +1608.01067 Solar and Stellar Astrophysics +1608.01258 Solar and Stellar Astrophysics +1608.01266 Astrophysics of Galaxies +1608.01321 High Energy Astrophysical Phenomena +1608.01334 Earth and Planetary Astrophysics +1608.01523 Astrophysics of Galaxies +1608.01549 Solar and Stellar Astrophysics +1608.01633 Astrophysics of Galaxies +1608.01639 +1608.01680 Instrumentation and Methods for Astrophysics +1608.01681 Instrumentation and Methods for Astrophysics +1608.01688 Space Physics +1608.01729 Solar and Stellar Astrophysics +1608.01808 Earth and Planetary Astrophysics +1608.01833 Combinatorics +1608.01912 Biomolecules +1608.01923 High Energy Astrophysical Phenomena +1608.01950 High Energy Astrophysical Phenomena +1608.01983 Astrophysics of Galaxies +1608.02034 Statistical Mechanics +1608.02050 Astrophysics of Galaxies +1608.02172 Astrophysics of Galaxies +1608.02252 Solar and Stellar Astrophysics +1608.02269 Quantum Algebra +1608.02286 Robotics +1608.02346 Earth and Planetary Astrophysics +1608.02392 +1608.02419 Analysis of PDEs +1608.02425 +1608.02448 Combinatorics +1608.02493 Solar and Stellar Astrophysics +1608.02545 Differential Geometry +1608.02614 Astrophysics of Galaxies +1608.02648 Astrophysics of Galaxies +1608.02652 Instrumentation and Detectors +1608.02761 Information Retrieval +1608.02847 High Energy Astrophysical Phenomena +1608.02886 High Energy Astrophysical Phenomena +1608.02944 Astrophysics of Galaxies +1608.02945 Solar and Stellar Astrophysics +1608.02980 Solar and Stellar Astrophysics +1608.03041 Solar and Stellar Astrophysics +1608.03064 Solar and Stellar Astrophysics +1608.03216 Earth and Planetary Astrophysics +1608.03223 Strongly Correlated Electrons +1608.03386 Cosmology and Nongalactic Astrophysics +1608.03390 Solar and Stellar Astrophysics +1608.03555 Soft Condensed Matter +1608.03793 Neural and Evolutionary Computing +1608.03809 Number Theory +1608.03810 Number Theory +1608.03870 +1608.03978 +1608.03998 Mesoscale and Nanoscale Physics +1608.04040 Phenomenology +1608.04046 Networking and Internet Architecture +1608.04116 Cryptography and Security +1608.04119 Operator Algebras +1608.04144 Materials Science +1608.04236 Computer Vision and Pattern Recognition +1608.04245 Machine Learning +1608.04289 Solar and Stellar Astrophysics +1608.04309 Systems and Control +1608.04313 Strongly Correlated Electrons +1608.04314 Computer Vision and Pattern Recognition +1608.04361 Numerical Analysis +1608.04382 Numerical Analysis +1608.04383 Chemical Physics +1608.04396 +1608.04397 Soft Condensed Matter +1608.04399 +1608.04401 Chaotic Dynamics +1608.04405 Materials Science +1608.04408 Theory +1608.04409 Earth and Planetary Astrophysics +1608.04411 Networking and Internet Architecture +1608.04412 Fluid Dynamics +1608.04413 High Energy Astrophysical Phenomena +1608.04417 Earth and Planetary Astrophysics +1608.04423 Dynamical Systems +1608.04428 Learning +1608.04430 Optimization and Control +1608.04433 Neurons and Cognition +1608.04434 Computation and Language +1608.04437 Databases +1608.04438 Instrumentation and Methods for Astrophysics +1608.04439 Information Theory +1608.04440 Complex Variables +1608.04442 Databases +1608.04445 Operator Algebras +1608.04451 Systems and Control +1608.04452 Systems and Control +1608.04453 Geometric Topology +1608.04454 Instrumentation and Methods for Astrophysics +1608.04456 Data Structures and Algorithms +1608.04457 Statistics Theory +1608.04458 Complex Variables +1608.04461 +1608.04463 Mesoscale and Nanoscale Physics +1608.04465 Computation and Language +1608.04466 Networking and Internet Architecture +1608.04467 Optimization and Control +1608.04468 Information Retrieval +1608.04470 Phenomenology +1608.04473 Symplectic Geometry +1608.04475 Geometric Topology +1608.04478 Methodology +1608.04479 Materials Science +1608.04480 Solar and Stellar Astrophysics +1608.04481 Data Structures and Algorithms +1608.04483 Number Theory +1608.04484 Information Theory +1608.04485 Computation and Language +1608.04486 Strongly Correlated Electrons +1608.04487 Dynamical Systems +1608.04488 Computers and Society +1608.04489 Computer Vision and Pattern Recognition +1608.04491 Numerical Analysis +1608.04492 Dynamical Systems +1608.04496 K-Theory and Homology +1608.04497 Chemical Physics +1608.04500 Experiment +1608.04502 Representation Theory +1608.04505 +1608.04508 +1608.04509 Computer Vision and Pattern Recognition +1608.04510 Instrumentation and Methods for Astrophysics +1608.04511 Multiagent Systems +1608.04512 Spectral Theory +1608.04516 Metric Geometry +1608.04517 Computer Vision and Pattern Recognition +1608.04518 Mesoscale and Nanoscale Physics +1608.04520 +1608.04522 Portfolio Management +1608.04524 Optics +1608.04525 Algebraic Geometry +1608.04526 Instrumentation and Methods for Astrophysics +1608.04530 Combinatorics +1608.04533 Physics and Society +1608.04534 Analysis of PDEs +1608.04535 Data Structures and Algorithms +1608.04537 Probability +1608.04538 Group Theory +1608.04540 Neurons and Cognition +1608.04541 Molecular Networks +1608.04542 Algebraic Geometry +1608.04544 Optimization and Control +1608.04547 Number Theory +1608.04550 Computational Engineering, Finance, and Science +1608.04551 Space Physics +1608.04553 Optimization and Control +1608.04555 Spectral Theory +1608.04556 Optimization and Control +1608.04558 Dynamical Systems +1608.04560 Combinatorics +1608.04562 Rings and Algebras +1608.04563 Cryptography and Security +1608.04566 Functional Analysis +1608.04570 Group Theory +1608.04571 Numerical Analysis +1608.04573 Analysis of PDEs +1608.04575 Analysis of PDEs +1608.04578 Probability +1608.04579 Networking and Internet Architecture +1608.04581 Learning +1608.04585 Applications +1608.04587 Dynamical Systems +1608.04591 Dynamical Systems +1608.04594 General Physics +1608.04595 General Physics +1608.04598 General Physics +1608.04600 Dynamical Systems +1608.04604 Exactly Solvable and Integrable Systems +1608.04608 +1608.04609 Algebraic Geometry +1608.04611 Instrumentation and Methods for Astrophysics +1608.04613 +1608.04615 Machine Learning +1608.04619 Phenomenology +1608.04620 Popular Physics +1608.04621 Risk Management +1608.04623 Classical Physics +1608.04624 Medical Physics +1608.04625 Quantum Algebra +1608.04626 Soft Condensed Matter +1608.04627 Theory +1608.04628 Chaotic Dynamics +1608.04629 Quantum Gases +1608.04632 Strongly Correlated Electrons +1608.04637 Information Theory +1608.04642 Computer Vision and Pattern Recognition +1608.04649 Rings and Algebras +1608.04650 Probability +1608.04652 Human-Computer Interaction +1608.04653 Theory +1608.04654 Logic +1608.04655 Experiment +1608.04658 Fluid Dynamics +1608.04660 Analysis of PDEs +1608.04661 Computers and Society +1608.04669 +1608.04670 Computation and Language +1608.04672 Artificial Intelligence +1608.04674 Machine Learning +1608.04677 Astrophysics of Galaxies +1608.04682 Optimization and Control +1608.04683 Pricing of Securities +1608.04685 Analysis of PDEs +1608.04686 Databases +1608.04688 Programming Languages +1608.04689 Artificial Intelligence +1608.04694 Computational Engineering, Finance, and Science +1608.04695 Computer Vision and Pattern Recognition +1608.04698 Artificial Intelligence +1608.04700 Quantitative Methods +1608.04701 Instrumentation and Methods for Astrophysics +1608.04703 Chemical Physics +1608.04704 Combinatorics +1608.04705 Information Theory +1608.04706 Algebraic Geometry +1608.04711 Statistical Mechanics +1608.04716 Fluid Dynamics +1608.04717 Methodology +1608.04718 Number Theory +1608.04720 Cryptography and Security +1608.04721 Graphics +1608.04723 +1608.04724 Optics +1608.04725 Geometric Topology +1608.04726 Probability +1608.04727 Information Theory +1608.04728 Information Theory +1608.04731 Mesoscale and Nanoscale Physics +1608.04733 Mesoscale and Nanoscale Physics +1608.04735 Cosmology and Nongalactic Astrophysics +1608.04736 Astrophysics of Galaxies +astro-ph/0207207 +astro-ph/9611047 +astro-ph/9911286 +cond-mat/0701286 Materials Science +cond-mat/0701759 Materials Science +cond-mat/0701772 Statistical Mechanics +cond-mat/0702454 Materials Science +cond-mat/0703252 Strongly Correlated Electrons +cond-mat/9504051 +cond-mat/9608062 +cond-mat/9705204 Mesoscale and Nanoscale Physics +cond-mat/9710066 Soft Condensed Matter +cond-mat/9712159 +cond-mat/9712266 Soft Condensed Matter +cond-mat/9809128 +gr-qc/9207010 +gr-qc/9212012 +hep-ph/9703227 Phenomenology +hep-th/9306040 Theory +hep-th/9507047 Theory +math/0106052 Algebraic Topology +math/0701774 Analysis of PDEs +physics/0701218 Chemical Physics +quant-ph/0703097 +0812.1796 Probability +1010.5810 Risk Management +1011.2348 Optimization and Control +1102.5085 Physics and Society +1107.0222 Chaotic Dynamics +1111.2234 Optimization and Control +1212.1042 Physics Education +1212.2174 Physics Education +1212.5006 Algebraic Geometry +1212.6732 Risk Management +1303.1383 Phenomenology +1304.0347 +1308.3530 Combinatorics +1308.4316 Systems and Control +1308.4940 Category Theory +1308.5537 Number Theory +1309.0041 Solar and Stellar Astrophysics +1309.2918 Computation +1309.3121 Mesoscale and Nanoscale Physics +1309.6973 Probability +1310.2307 Physics Education +1310.2982 Physics Education +1310.4868 Physics Education +1312.0966 Differential Geometry +1312.3274 Phenomenology +1312.4494 Probability +1401.1929 Physics Education +1401.3047 Physics Education +1403.0482 Physics Education +1403.7329 +1404.0597 Probability +1404.2156 Category Theory +1404.2558 Soft Condensed Matter +1404.4472 Theory +1405.1476 Combinatorics +1405.1659 Analysis of PDEs +1405.3526 Mesoscale and Nanoscale Physics +1406.1781 Probability +1406.4248 Optimization and Control +1406.7026 Numerical Analysis +1407.1303 Numerical Analysis +1407.3783 Phenomenology +1408.3871 Combinatorics +1408.4113 Data Structures and Algorithms +1408.4585 +1408.5842 Materials Science +1409.4386 Commutative Algebra +1410.1065 Analysis of PDEs +1410.3690 Metric Geometry +1410.5494 Materials Science +1410.5599 Chaotic Dynamics +1410.7637 Combinatorics +1411.1461 Metric Geometry +1411.2417 Information Theory +1411.4251 Optics +1411.5583 +1411.7866 +1411.7870 +1412.3044 Materials Science +1412.3431 Operator Algebras +1412.3634 +1412.3750 Databases +1501.00333 Combinatorics +1501.00506 Number Theory +1501.03126 Commutative Algebra +1501.05093 Phenomenology +1501.05766 Analysis of PDEs +1501.07319 Information Theory +1502.01218 Statistical Mechanics +1502.02058 +1502.03917 Numerical Analysis +1502.04070 Numerical Analysis +1502.07250 Populations and Evolution +1503.02091 Rings and Algebras +1503.03587 +1503.07553 Theory +1504.02756 Medical Physics +1504.03291 Cosmology and Nongalactic Astrophysics +1504.03607 Theory +1504.04195 Combinatorics +1504.06039 Soft Condensed Matter +1504.06801 Dynamical Systems +1505.01008 Experiment +1505.01272 Quantum Gases +1505.01543 Statistical Mechanics +1505.01797 Astrophysics of Galaxies +1505.05007 Machine Learning +1505.05600 Analysis of PDEs +1505.06053 Statistical Mechanics +1505.06342 Theory +1505.06448 Computation +1505.06875 Classical Analysis and ODEs +1505.06981 Phenomenology +1506.00245 +1506.00363 Materials Science +1506.00413 Astrophysics of Galaxies +1506.01298 Atomic Physics +1506.01457 Optics +1506.02440 +1506.03302 Phenomenology +1506.03310 Combinatorics +1506.03653 Analysis of PDEs +1506.03691 Combinatorics +1506.04194 Optimization and Control +1506.05920 Computer Vision and Pattern Recognition +1506.06442 Computation and Language +1506.08342 Strongly Correlated Electrons +1506.08366 Phenomenology +1506.08669 Learning +1506.09207 +1507.01042 Number Theory +1507.01526 Neural and Evolutionary Computing +1507.02277 Theory +1507.03031 Experiment +1507.03225 Data Structures and Algorithms +1507.03421 Statistical Mechanics +1507.04053 Theory +1507.08346 Materials Science +1507.08520 Disordered Systems and Neural Networks +1508.01016 +1508.01940 +1508.01990 +1508.02291 +1508.03739 Phenomenology +1508.04324 Cryptography and Security +1508.04388 Physics and Society +1508.04412 +1508.05027 +1508.05324 Strongly Correlated Electrons +1508.05461 Combinatorics +1508.06439 Dynamical Systems +1508.06944 Disordered Systems and Neural Networks +1508.07586 Optics +1509.00024 Theory +1509.00481 Phenomenology +1509.01104 Mesoscale and Nanoscale Physics +1509.01888 Quantum Gases +1509.03120 Chemical Physics +1509.03367 Phenomenology +1509.03560 Strongly Correlated Electrons +1509.04476 Mesoscale and Nanoscale Physics +1509.05650 Quantum Gases +1509.06618 +1509.07127 +1509.07295 Lattice +1509.07740 Physics Education +1509.07826 Physics Education +1509.08730 +1510.01624 Learning +1510.02696 Networking and Internet Architecture +1510.03865 Phenomenology +1510.04252 Experiment +1510.04413 Multimedia +1510.04418 Materials Science +1510.05208 Theory +1510.06250 Chemical Physics +1510.07311 +1510.07798 +1511.00021 Data Structures and Algorithms +1511.00671 Optics +1511.01905 Phenomenology +1511.02603 Programming Languages +1511.03515 Classical Physics +1511.04103 Computer Vision and Pattern Recognition +1511.04306 Neural and Evolutionary Computing +1511.04743 Quantum Algebra +1511.04955 +1511.05079 Mesoscale and Nanoscale Physics +1511.06295 Learning +1511.06488 Learning +1511.06536 Phenomenology +1511.06725 Number Theory +1511.07401 Learning +1511.08731 Group Theory +1511.09378 Group Theory +1512.03366 Experiment +1512.04589 Functional Analysis +1512.05729 +1512.05829 +1512.06186 Theory +1512.06377 Materials Science +1512.07371 Probability +1512.08341 Geometric Topology +1512.09053 Phenomenology +1512.09248 High Energy Astrophysical Phenomena +1601.00106 +1601.00293 Phenomenology +1601.00573 Materials Science +1601.00851 Materials Science +1601.00878 +1601.00894 Hardware Architecture +1601.00979 Tissues and Organs +1601.01070 Information Theory +1601.01279 Solar and Stellar Astrophysics +1601.01297 Artificial Intelligence +1601.01305 Spectral Theory +1601.01328 Physics Education +1601.01332 Optics +1601.01336 Data Structures and Algorithms +1601.01339 Computer Vision and Pattern Recognition +1601.01341 Combinatorics +1601.01346 Chemical Physics +1601.01347 Combinatorics +1601.01349 Mesoscale and Nanoscale Physics +1601.01350 Astrophysics of Galaxies +1601.01351 Physics Education +1601.01358 Neurons and Cognition +1601.01360 Information Theory +1601.01361 Number Theory +1601.01363 Information Theory +1601.01365 Combinatorics +1601.01366 Number Theory +1601.01367 Lattice +1601.01372 Data Structures and Algorithms +1601.01374 +1601.01377 Combinatorics +1601.01382 +1601.01385 Rings and Algebras +1601.01386 Multimedia +1601.01387 Rings and Algebras +1601.01390 Representation Theory +1601.01392 Biological Physics +1601.01395 Commutative Algebra +1601.01398 Networking and Internet Architecture +1601.01399 Optimization and Control +1601.01401 Combinatorics +1601.01405 Cryptography and Security +1601.01408 Multimedia +1601.01409 Logic +1601.01410 Systems and Control +1601.01411 Learning +1601.01415 Optics +1601.01418 Materials Science +1601.01419 Networking and Internet Architecture +1601.01420 Data Analysis, Statistics and Probability +1601.01422 Computer Vision and Pattern Recognition +1601.01423 Networking and Internet Architecture +1601.01426 Statistics Theory +1601.01427 Information Theory +1601.01429 Numerical Analysis +1601.01431 Computer Vision and Pattern Recognition +1601.01433 Number Theory +1601.01434 Statistics Theory +1601.01436 Numerical Analysis +1601.01439 Solar and Stellar Astrophysics +1601.01443 Phenomenology +1601.01444 Dynamical Systems +1601.01446 Mesoscale and Nanoscale Physics +1601.01447 Software Engineering +1601.01455 Probability +1601.01456 Commutative Algebra +1601.01457 Statistics Theory +1601.01463 Hardware Architecture +1601.01464 Analysis of PDEs +1601.01465 Data Structures and Algorithms +1601.01466 Instrumentation and Methods for Astrophysics +1601.01470 Statistics Theory +1601.01472 Materials Science +1601.01473 History and Philosophy of Physics +1601.01474 Differential Geometry +1601.01475 Cosmology and Nongalactic Astrophysics +1601.01476 Probability +1601.01478 Logic in Computer Science +1601.01483 Logic in Computer Science +1601.01484 Logic in Computer Science +1601.01487 Logic +1601.01488 Information Theory +1601.01492 Artificial Intelligence +1601.01497 Human-Computer Interaction +1601.01498 Cryptography and Security +1601.01499 Experiment +1601.01500 Software Engineering +1601.01503 Probability +1601.01505 Functional Analysis +1601.01508 Commutative Algebra +1601.01510 Functional Analysis +1601.01511 +1601.01513 Probability +1601.01516 Analysis of PDEs +1601.01517 Software Engineering +1601.01518 Optics +1601.01521 Complex Variables +1601.01523 Discrete Mathematics +1601.01526 Networking and Internet Architecture +1601.01527 Networking and Internet Architecture +1601.01528 Rings and Algebras +1601.01534 Instrumentation and Detectors +1601.01537 Differential Geometry +1601.01539 Networking and Internet Architecture +1601.01540 +1601.01544 Learning +1601.01557 Applications +1601.01563 Analysis of PDEs +1601.01565 Physics and Society +1601.01567 Differential Geometry +1601.01568 Dynamical Systems +1601.01577 Sound +1601.01580 Neurons and Cognition +1601.01582 Physics and Society +1601.01586 Logic in Computer Science +1601.01587 Distributed, Parallel, and Cluster Computing +1601.01590 +1601.01595 Combinatorics +1601.01597 Data Structures and Algorithms +1601.01598 Computational Geometry +1601.01602 Algebraic Geometry +1601.01604 Applications +1601.01606 Optics +1601.01607 Distributed, Parallel, and Cluster Computing +1601.01608 Computers and Society +1601.01611 Information Retrieval +1601.01612 Emerging Technologies +1601.01613 Soft Condensed Matter +1601.01614 Artificial Intelligence +1601.01615 Algebraic Geometry +1601.01616 Functional Analysis +1601.01619 General Physics +1601.01626 Analysis of PDEs +1601.01634 Representation Theory +1601.01639 Dynamical Systems +1601.01641 Representation Theory +1601.01647 Algebraic Geometry +1601.01648 Logic in Computer Science +1601.01650 Classical Analysis and ODEs +1601.01652 Probability +1601.01653 Molecular Networks +1601.01654 Information Theory +1601.01658 Phenomenology +1601.01660 Formal Languages and Automata Theory +1601.01665 Number Theory +1601.01669 Representation Theory +math-ph/0702002 +quant-ph/0209004 +0709.4492 Classical Analysis and ODEs +1003.4337 +1010.1610 Instrumentation and Detectors +1011.4726 Combinatorics +1107.3597 Combinatorics +1108.1221 Classical Analysis and ODEs +1110.2117 Dynamical Systems +1111.0498 Algebraic Geometry +1203.3405 Dynamical Systems +1207.1476 Mesoscale and Nanoscale Physics +1301.0047 Optimization and Control +1302.1157 Optimization and Control +1302.6929 Dynamical Systems +1303.2419 Analysis of PDEs +1306.5522 Dynamical Systems +1307.0364 Geometric Topology +1307.0738 Group Theory +1308.0450 Mesoscale and Nanoscale Physics +1309.3725 Combinatorics +1309.5762 Social and Information Networks +1309.6964 Computer Vision and Pattern Recognition +1310.0239 Numerical Analysis +1310.6155 Probability +1311.2856 Analysis of PDEs +1311.5173 Combinatorics +1312.2376 Mesoscale and Nanoscale Physics +1312.3248 Databases +1312.7452 Statistics Theory +1402.1298 Numerical Analysis +1402.3427 Learning +1402.4503 Group Theory +1403.0554 Algebraic Geometry +1403.0783 Databases +1403.6259 Statistical Mechanics +1404.3131 Databases +1404.4605 Statistics Theory +1405.1326 Probability +1405.2788 Algebraic Geometry +1405.3251 Dynamical Systems +1405.4852 Differential Geometry +1406.3280 Logic in Computer Science +1406.4947 Algebraic Topology +1408.3715 Differential Geometry +1408.5292 +1409.3064 Group Theory +1409.4191 Algebraic Geometry +1409.6282 Rings and Algebras +1410.1089 Solar and Stellar Astrophysics +1410.4885 Data Structures and Algorithms +1410.6167 Mesoscale and Nanoscale Physics +1410.8106 Dynamical Systems +1411.3287 Differential Geometry +1411.4746 +1411.6816 Algebraic Geometry +1412.0164 Pattern Formation and Solitons +1412.3251 +1412.3411 Machine Learning +1501.01345 Information Theory +1501.01754 General Physics +1501.03108 +1501.03398 Differential Geometry +1501.04326 Numerical Analysis +1501.04695 K-Theory and Homology +1501.05527 Complex Variables +1501.05602 Quantum Algebra +1501.05905 Symplectic Geometry +1501.07680 Computer Vision and Pattern Recognition +1502.00592 Methodology +1502.02716 +1502.02770 Quantum Algebra +1502.04383 Computer Vision and Pattern Recognition +1503.00552 Soft Condensed Matter +1503.01097 Mesoscale and Nanoscale Physics +1503.06294 +1503.06855 Computer Science and Game Theory +1503.08592 Theory +1504.00501 +1504.03823 Optics +1504.04487 Metric Geometry +1504.05600 +1504.05617 +1504.05689 Quantum Gases +1505.00841 Databases +1505.04216 Logic in Computer Science +1505.04424 Computer Vision and Pattern Recognition +1505.04629 Applications +1505.07869 Materials Science +1506.00042 Phenomenology +1506.00158 Logic +1506.01317 +1506.01525 Strongly Correlated Electrons +1506.01599 Accelerator Physics +1506.01881 Theory +1506.03883 Computer Science and Game Theory +1506.05258 Theory +1506.05652 +1507.00137 Group Theory +1507.00166 Differential Geometry +1507.00454 Differential Geometry +1507.01542 Methodology +1507.01786 Other Condensed Matter +1507.02958 Classical Analysis and ODEs +1507.03245 Probability +1507.03374 Disordered Systems and Neural Networks +1507.03713 Optimization and Control +1507.04955 Databases +1507.05789 Cellular Automata and Lattice Gases +1507.07047 Number Theory +1507.07921 Theory +1507.08846 Analysis of PDEs +1507.08960 Cosmology and Nongalactic Astrophysics +1508.01244 Computer Vision and Pattern Recognition +1508.02355 Number Theory +1508.02827 +1508.07775 Optimization and Control +1509.00388 Computational Geometry +1509.00531 Algebraic Geometry +1509.01746 Distributed, Parallel, and Cluster Computing +1509.02761 Number Theory +1509.03449 Strongly Correlated Electrons +1509.04106 +1509.04528 Chaotic Dynamics +1509.06102 +1509.06715 Cosmology and Nongalactic Astrophysics +1509.07117 Theory +1509.07215 Statistical Mechanics +1509.08778 Networking and Internet Architecture +1510.00066 Analysis of PDEs +1510.00210 Mesoscale and Nanoscale Physics +1510.00958 Data Structures and Algorithms +1510.01206 Lattice +1510.01334 Geophysics +1510.03242 General Topology +1510.03583 Mesoscale and Nanoscale Physics +1510.03606 Number Theory +1510.03903 Computer Science and Game Theory +1510.05229 Computer Science and Game Theory +1510.05347 Theory +1510.06482 Computational Engineering, Finance, and Science +1510.06600 Strongly Correlated Electrons +1510.07658 Phenomenology +1510.08413 Combinatorics +1511.00019 Classical Analysis and ODEs +1511.02074 Data Structures and Algorithms +1511.02507 Analysis of PDEs +1511.02789 Group Theory +1511.02992 Computer Vision and Pattern Recognition +1511.03295 Strongly Correlated Electrons +1511.04412 Learning +1511.05848 +1511.06175 Cosmology and Nongalactic Astrophysics +1511.07408 Theory +1511.07952 Analysis of PDEs +1511.08083 Cosmology and Nongalactic Astrophysics +1511.08723 Databases +1511.09226 Phenomenology +1511.09436 Group Theory +1512.01646 Dynamical Systems +1512.02285 Computer Science and Game Theory +1512.02290 +1512.04785 Computer Vision and Pattern Recognition +1512.05054 Probability +1512.05391 Adaptation and Self-Organizing Systems +1512.05486 Information Theory +1512.05709 +1512.06180 Cosmology and Nongalactic Astrophysics +1512.06398 Combinatorics +1512.06513 Numerical Analysis +1601.00114 Geophysics +1601.00340 Algebraic Geometry +1601.00642 Phenomenology +1601.01207 +1601.01235 Physics Education +1601.01252 Phenomenology +1601.03273 +1601.03408 Statistical Mechanics +1601.03570 Instrumentation and Detectors +1601.05372 Logic in Computer Science +1601.05501 Algebraic Geometry +1601.06033 Materials Science +1601.07529 +1601.07642 +1602.00008 +1602.00070 Social and Information Networks +1602.01129 Geometric Topology +1602.01836 Strongly Correlated Electrons +1602.02141 +1602.02157 Strongly Correlated Electrons +1602.02430 Functional Analysis +1602.03105 Data Structures and Algorithms +1602.03240 +1602.03755 Discrete Mathematics +1602.05183 Digital Libraries +1602.05758 Mathematical Finance +1602.06040 Metric Geometry +1602.06229 Cryptography and Security +1602.06765 Optimization and Control +1602.08144 Optics +1602.08377 Strongly Correlated Electrons +1602.09115 Information Theory +1603.00001 Optimization and Control +1603.00172 +1603.01902 +1603.02066 Algebraic Topology +1603.02147 Phenomenology +1603.02632 Mesoscale and Nanoscale Physics +1603.02679 Cosmology and Nongalactic Astrophysics +1603.03557 Combinatorics +1603.03998 Phenomenology +1603.04131 Neurons and Cognition +1603.04746 Computer Vision and Pattern Recognition +1603.04903 Mesoscale and Nanoscale Physics +1603.05029 Statistical Mechanics +1603.05586 Symplectic Geometry +1603.05897 Neurons and Cognition +1603.05952 Phenomenology +1603.06770 Theory +1603.06968 Plasma Physics +1603.07138 +1603.07448 +1603.08310 Combinatorics +1603.08368 Statistical Mechanics +1603.08560 Rings and Algebras +1603.08615 Analysis of PDEs +1603.09696 Astrophysics of Galaxies +1604.00145 +1604.00697 Neural and Evolutionary Computing +1604.01260 Combinatorics +1604.02199 Optimization and Control +1604.02761 Databases +1604.03543 +1604.03549 High Energy Astrophysical Phenomena +1604.04391 Materials Science +1604.04631 Cosmology and Nongalactic Astrophysics +1604.05081 Superconductivity +1604.05546 Mesoscale and Nanoscale Physics +1604.05728 Phenomenology +1604.06022 Information Theory +1604.06323 Functional Analysis +1604.06401 Strongly Correlated Electrons +1604.06704 Theory +1604.08326 Probability +1604.08671 Computer Vision and Pattern Recognition +1605.00220 Functional Analysis +1605.00643 Astrophysics of Galaxies +1605.01080 Strongly Correlated Electrons +1605.02912 Symbolic Computation +1605.02973 General Physics +1605.03044 Rings and Algebras +1605.04793 Numerical Analysis +1605.05525 Astrophysics of Galaxies +1605.05970 Differential Geometry +1605.06509 Phenomenology +1605.06656 +1605.07030 Data Structures and Algorithms +1605.07515 Computation and Language +1606.00764 Combinatorics +1606.01156 Methodology +1606.01162 Materials Science +1606.02108 +1606.02214 Phenomenology +1606.03650 Numerical Analysis +1606.03699 Quantum Gases +1606.04462 +1606.04463 +1606.04560 Dynamical Systems +1606.04561 Learning +1606.04993 Probability +1606.05033 Combinatorics +1606.05766 Probability +1606.05994 Computation and Language +1606.06160 Neural and Evolutionary Computing +1606.06722 Strongly Correlated Electrons +1606.06794 Information Theory +1606.06873 Multimedia +1606.06928 Solar and Stellar Astrophysics +1606.07279 Machine Learning +1606.08542 Astrophysics of Galaxies +1606.08570 +1606.08707 Formal Languages and Automata Theory +1606.09340 Strongly Correlated Electrons +1606.09443 Algebraic Topology +1606.09474 Materials Science +1606.09581 Learning +1607.00059 Astrophysics of Galaxies +1607.00157 +1607.00735 Algebraic Geometry +1607.00755 +1607.00874 Solar and Stellar Astrophysics +1607.00886 Optimization and Control +1607.00938 Numerical Analysis +1607.01660 Functional Analysis +1607.02022 Statistical Mechanics +1607.02076 +1607.02077 Probability +1607.02175 Dynamical Systems +1607.02250 Computation and Language +1607.02523 Analysis of PDEs +1607.02820 Materials Science +1607.03084 Learning +1607.03291 Logic +1607.03548 Optics +1607.03650 Geometric Topology +1607.03817 Phenomenology +1607.03927 +1607.03970 Phenomenology +1607.04045 Probability +1607.04188 Atomic and Molecular Clusters +1607.04236 Combinatorics +1607.04429 Combinatorics +1607.04470 Operator Algebras +1607.04542 Probability +1607.04544 Probability +1607.04571 Differential Geometry +1607.04581 Algebraic Geometry +1607.04600 Dynamical Systems +1607.04613 High Energy Astrophysical Phenomena +1607.04646 +1607.04653 Medical Physics +1607.04654 Astrophysics of Galaxies +1607.04656 Populations and Evolution +1607.04657 Strongly Correlated Electrons +1607.04660 Computation and Language +1607.04661 Materials Science +1607.04663 Networking and Internet Architecture +1607.04664 Optics +1607.04669 Instrumentation and Detectors +1607.04675 Biological Physics +1607.04676 Representation Theory +1607.04678 Astrophysics of Galaxies +1607.04680 Chemical Physics +1607.04681 Metric Geometry +1607.04682 Materials Science +1607.04684 Algebraic Geometry +1607.04688 General Topology +1607.04691 +1607.04692 Number Theory +1607.04694 +1607.04700 Information Theory +1607.04704 Materials Science +1607.04709 Analysis of PDEs +1607.04710 Computer Science and Game Theory +1607.04712 Instrumentation and Methods for Astrophysics +1607.04715 Quantum Algebra +1607.04717 Quantum Algebra +1607.04719 Analysis of PDEs +1607.04721 Logic in Computer Science +1607.04722 Numerical Analysis +1607.04723 Optics +1607.04725 Information Theory +1607.04727 Classical Analysis and ODEs +1607.04728 Combinatorics +1607.04729 Information Theory +1607.04730 Computer Vision and Pattern Recognition +1607.04731 Computer Vision and Pattern Recognition +1607.04732 Commutative Algebra +1607.04734 Populations and Evolution +1607.04735 Systems and Control +1607.04736 Applications +1607.04737 Risk Management +1607.04738 Materials Science +1607.04739 Risk Management +1607.04741 Combinatorics +1607.04744 +1607.04745 Numerical Analysis +1607.04748 Optimization and Control +1607.04750 Number Theory +1607.04754 Information Theory +1607.04755 Computational Geometry +1607.04756 General Topology +1607.04758 Metric Geometry +1607.04759 Computer Vision and Pattern Recognition +1607.04760 Computer Vision and Pattern Recognition +1607.04763 Robotics +1607.04764 Number Theory +1607.04765 Human-Computer Interaction +1607.04766 Metric Geometry +1607.04767 Mathematical Software +1607.04768 Combinatorics +1607.04769 Dynamical Systems +1607.04770 Computers and Society +1607.04771 Computers and Society +1607.04773 Computer Vision and Pattern Recognition +1607.04777 Data Structures and Algorithms +1607.04778 Algebraic Geometry +1607.04780 Computer Vision and Pattern Recognition +1607.04781 General Topology +1607.04785 Probability +1607.04786 Dynamical Systems +1607.04788 Robotics +1607.04789 Cryptography and Security +1607.04790 Logic +1607.04791 Earth and Planetary Astrophysics +1607.04796 Methodology +1607.04797 Classical Analysis and ODEs +1607.04798 Optimization and Control +1607.04803 Optimization and Control +1607.04804 Atmospheric and Oceanic Physics +1607.04808 Numerical Analysis +1607.04809 Artificial Intelligence +1607.04810 +1607.04811 Cryptography and Security +1607.04812 Systems and Control +1607.04813 Information Theory +1607.04816 Systems and Control +1607.04817 Optimization and Control +1607.04819 Information Theory +1607.04823 Materials Science +1607.04824 Functional Analysis +1607.04827 Classical Physics +1607.04834 Algebraic Geometry +1607.04836 Other Quantitative Biology +1607.04844 Atomic Physics +1607.04846 Statistical Mechanics +1607.04847 Combinatorics +1607.04848 Methodology +1607.04849 Information Theory +1607.04851 Operator Algebras +1607.04852 Algebraic Geometry +1607.04855 Group Theory +1607.04861 Theory +1607.04862 Metric Geometry +1607.04866 Optics +1607.04868 Combinatorics +1607.04873 Commutative Algebra +1607.04875 Physics and Society +1607.04876 Physics and Society +1607.04879 Numerical Analysis +1607.04880 Classical Analysis and ODEs +1607.04881 Robotics +1607.04885 Group Theory +1607.04888 Combinatorics +1607.04890 Group Theory +1607.04894 Computer Science and Game Theory +1607.04895 Earth and Planetary Astrophysics +1607.04897 Quantum Gases +1607.04901 Instrumentation and Methods for Astrophysics +1607.04908 Logic in Computer Science +1607.04915 Group Theory +1607.04922 Mesoscale and Nanoscale Physics +1607.04923 Numerical Analysis +1607.04927 Combinatorics +1607.04930 Combinatorics +1607.04931 Information Theory +1607.04932 Combinatorics +1607.04933 Quantum Algebra +1607.04934 Accelerator Physics +1607.04936 Quantum Algebra +1607.04939 Computer Vision and Pattern Recognition +1607.04942 Computer Vision and Pattern Recognition +1607.04943 Mesoscale and Nanoscale Physics +1607.04944 Functional Analysis +1607.04945 Optics +1607.04946 Algebraic Geometry +1607.04948 Number Theory +1607.04949 Representation Theory +1607.04950 Cryptography and Security +1607.04951 Algebraic Geometry +1607.04953 +1607.04954 Probability +1607.04957 Systems and Control +1607.04959 +1607.04960 +1607.04963 High Energy Astrophysical Phenomena +1607.04965 Computer Vision and Pattern Recognition +1607.04966 High Energy Astrophysical Phenomena +1607.04967 Physics and Society +1607.04968 Mathematical Finance +1607.04971 Robotics +1607.04975 Number Theory +1607.04976 Symplectic Geometry +1607.04979 Materials Science +1607.04982 Computation and Language +1607.04984 Data Structures and Algorithms +1607.04986 Category Theory +1607.04987 Solar and Stellar Astrophysics +1607.04991 Number Theory +1607.04993 Methodology +1607.04996 Materials Science +1607.05002 Machine Learning +1607.05004 Physics and Society +1607.05009 Plasma Physics +1607.05011 Differential Geometry +1607.05013 Mesoscale and Nanoscale Physics +1607.05015 Systems and Control +1607.05021 Mesoscale and Nanoscale Physics +1607.05023 Artificial Intelligence +1607.05024 Cryptography and Security +1607.05026 Disordered Systems and Neural Networks +1607.05031 Combinatorics +1607.05032 History and Philosophy of Physics +1607.05034 Social and Information Networks +1607.05035 Numerical Analysis +1607.05038 Group Theory +1607.05039 Experiment +1607.05042 Methodology +1607.05045 History and Overview +1607.05046 Computer Vision and Pattern Recognition +1607.05047 Machine Learning +1607.05048 Networking and Internet Architecture +1607.05051 Statistics Theory +1607.05052 Mesoscale and Nanoscale Physics +1607.05054 Analysis of PDEs +1607.05061 Differential Geometry +1607.05064 Information Theory +1607.05066 Computer Vision and Pattern Recognition +1607.05067 Complex Variables +1607.05068 Geophysics +1607.05069 Distributed, Parallel, and Cluster Computing +1607.05071 General Physics +1607.05074 Computer Vision and Pattern Recognition +1607.05075 Distributed, Parallel, and Cluster Computing +1607.05077 Artificial Intelligence +1607.05078 +1607.05079 Chemical Physics +1607.05080 Astrophysics of Galaxies +1607.05082 Lattice +1607.05083 Materials Science +1607.05085 Geophysics +1607.05086 Combinatorics +1607.05091 Statistics Theory +1607.05093 Chemical Physics +1607.05094 Physics Education +1607.05096 Classical Analysis and ODEs +1607.05099 Algebraic Topology +1607.05100 Classical Analysis and ODEs +1607.05101 Classical Analysis and ODEs +1607.05102 Classical Analysis and ODEs +1607.05104 Classical Analysis and ODEs +1607.05105 Mesoscale and Nanoscale Physics +1607.05106 Classical Analysis and ODEs +1607.05107 Computational Physics +1607.05108 Neural and Evolutionary Computing +1607.05112 Data Structures and Algorithms +1607.05113 Cryptography and Security +1607.05116 Analysis of PDEs +1607.05119 Classical Analysis and ODEs +1607.05121 Classical Analysis and ODEs +1607.05122 Data Structures and Algorithms +1607.05123 Cosmology and Nongalactic Astrophysics +1607.05125 General Physics +1607.05128 Geophysics +1607.05129 +1607.05130 Information Theory +1607.05133 Computational Complexity +1607.05136 Statistics Theory +1607.05140 Computer Vision and Pattern Recognition +1607.05142 Computation and Language +1607.05144 Information Theory +1607.05146 +1607.05148 Quantum Algebra +1607.05150 Applications +1607.05154 Machine Learning +1607.05155 +1607.05156 Phenomenology +1607.05157 Data Structures and Algorithms +1607.05159 Networking and Internet Architecture +1607.05161 Optimization and Control +1607.05162 Human-Computer Interaction +1607.05166 Classical Analysis and ODEs +1607.05167 Statistics Theory +1607.05169 Methodology +1607.05171 Cryptography and Security +1607.05172 Instrumentation and Methods for Astrophysics +1607.05173 Software Engineering +1607.05174 Human-Computer Interaction +1607.05175 Populations and Evolution +1607.05176 Analysis of PDEs +1607.05177 Computer Vision and Pattern Recognition +1607.05179 Networking and Internet Architecture +1607.05180 Quantum Gases +1607.05181 Geometric Topology +1607.05183 Networking and Internet Architecture +1607.05191 Materials Science +1607.05192 Dynamical Systems +1607.05194 Computer Vision and Pattern Recognition +1607.05195 +1607.05197 Combinatorics +1607.05198 Earth and Planetary Astrophysics +1607.05199 High Energy Astrophysical Phenomena +1607.05201 Probability +1607.05202 Materials Science +1607.05206 Numerical Analysis +1607.05208 Information Retrieval +1607.05209 Optimization and Control +1607.05213 Neural and Evolutionary Computing +1607.05214 Lattice +1607.05217 Robotics +1607.05225 Soft Condensed Matter +1607.05228 Algebraic Geometry +1607.05229 Cryptography and Security +1607.05231 Statistical Mechanics +1607.05241 Computation and Language +1607.05244 Cryptography and Security +1607.05246 Numerical Analysis +1607.05247 Analysis of PDEs +1607.05250 Solar and Stellar Astrophysics +1607.05251 +1607.05253 Materials Science +1607.05256 +1607.05262 +0810.0162 +1101.6053 Phenomenology +1102.2226 +1106.5287 +1111.0003 General Physics +1201.3223 +1204.4843 Dynamical Systems +1207.4520 General Physics +1207.4845 Numerical Analysis +1210.3163 +1210.8359 Differential Geometry +1303.5486 Geometric Topology +1305.7418 Combinatorics +1306.1951 K-Theory and Homology +1306.5643 Statistical Mechanics +1307.5644 +1309.6039 Category Theory +1311.7148 Quantum Gases +1401.0133 Differential Geometry +1403.1595 Theory +1404.2929 Theory +1405.2140 Numerical Analysis +1405.2859 Logic +1405.4596 Symbolic Computation +1407.0462 Networking and Internet Architecture +1407.3673 Computer Vision and Pattern Recognition +1408.0235 Number Theory +1408.6140 Classical Analysis and ODEs +1408.6726 Classical Analysis and ODEs +1409.1021 +1409.3016 +1409.7657 Analysis of PDEs +1410.0885 Robotics +1410.4410 Robotics +1411.2066 Statistics Theory +1411.6523 Dynamical Systems +1411.6855 Phenomenology +1501.00160 Numerical Analysis +1501.00576 Exactly Solvable and Integrable Systems +1501.03989 Cosmology and Nongalactic Astrophysics +1501.06084 Computational Finance +1501.07257 Solar and Stellar Astrophysics +1502.03901 Mathematical Finance +1502.04520 Operator Algebras +1502.05184 Rings and Algebras +1503.03810 Logic +1505.00454 Logic +1505.01990 +1505.03072 Combinatorics +1506.00567 +1506.01354 Cosmology and Nongalactic Astrophysics +1506.08807 Astrophysics of Galaxies +1507.00173 Combinatorics +1507.01600 +1507.05005 +1507.05706 Numerical Analysis +1507.07108 Complex Variables +1507.08039 +1508.00257 Group Theory +1508.02350 Combinatorics +1508.03785 Algebraic Geometry +1508.04095 Information Theory +1508.07666 +1509.04740 Social and Information Networks +1509.07453 Algebraic Geometry +1509.08672 Dynamical Systems +1510.00006 Theory +1510.02723 +1510.04300 Computational Physics +1510.05562 Quantum Gases +1510.07613 Phenomenology +1510.08093 Analysis of PDEs +1510.08461 Astrophysics of Galaxies +1511.02121 Physics Education +1511.02411 Combinatorics +1511.03738 Combinatorics +1511.04413 Geometric Topology +1511.05257 Dynamical Systems +1511.09189 +1511.09448 Geometric Topology +1512.00264 Materials Science +1512.01843 Information Theory +1512.02984 Number Theory +1512.04482 Number Theory +1512.05534 Statistics Theory +1512.06147 Quantum Gases +1512.06290 Statistics Theory +1512.07550 +1601.01797 +1602.01018 Theory +1602.02382 Symplectic Geometry +1602.03138 Strongly Correlated Electrons +1602.04763 Combinatorics +1602.05505 General Physics +1602.06425 Strongly Correlated Electrons +1602.06440 Metric Geometry +1602.07430 Experiment +1602.08304 Numerical Analysis +1602.08926 Mesoscale and Nanoscale Physics +1603.00440 Statistical Mechanics +1603.00531 Learning +1603.01164 Strongly Correlated Electrons +1603.02626 Optimization and Control +1603.04571 Statistics Theory +1603.07027 Computer Vision and Pattern Recognition +1603.08908 Probability +1603.09546 Materials Science +1604.01562 Number Theory +1604.03378 +1604.03519 Computer Vision and Pattern Recognition +1604.04137 Robotics +1604.04970 Computer Vision and Pattern Recognition +1604.06201 +1604.08401 Representation Theory +1604.08748 Strongly Correlated Electrons +1605.00221 +1605.01124 +1605.01417 Cosmology and Nongalactic Astrophysics +1605.01854 Optics +1605.05168 Representation Theory +1605.07615 Theory +1605.07712 Superconductivity +1605.07932 Strongly Correlated Electrons +1606.00123 Numerical Analysis +1606.00753 Social and Information Networks +1606.02133 Solar and Stellar Astrophysics +1606.03009 Chaotic Dynamics +1606.03360 Geometric Topology +1606.04136 Systems and Control +1606.04812 Fluid Dynamics +1606.05613 Optics +1606.06022 Atomic Physics +1606.06046 Optics +1606.06135 Computer Vision and Pattern Recognition +1606.06360 Geometric Topology +1606.08394 +1606.09230 Analysis of PDEs +1606.09453 Theory +1606.09611 Phenomenology +1607.01222 +1607.01717 Phenomenology +1607.02852 +1607.03236 +1607.03715 +1607.03801 Superconductivity +1607.06240 Numerical Analysis +1607.06586 Operator Algebras +1607.06892 Earth and Planetary Astrophysics +1607.07487 High Energy Astrophysical Phenomena +1607.07999 Materials Science +1607.08396 Combinatorics +1607.08552 Neurons and Cognition +1607.08659 Computer Vision and Pattern Recognition +1607.08729 Robotics +1608.01209 +1608.01872 +1608.01960 +1608.02088 Solar and Stellar Astrophysics +1608.02533 Other Statistics +1608.03180 Information Theory +1608.04636 Learning +1608.04675 Combinatorics +1608.04863 Physics and Society +1608.05230 Dynamical Systems +1608.05510 +1608.05511 Phenomenology +1608.05968 Mesoscale and Nanoscale Physics +1608.06966 Quantum Gases +1608.07909 Theory +1608.08274 Theory +1608.08473 Probability +1609.00241 High Energy Astrophysical Phenomena +1609.00562 Quantum Gases +1609.01147 General Mathematics +1609.01870 Data Structures and Algorithms +1609.02166 Classical Analysis and ODEs +1609.02314 Algebraic Geometry +1609.04139 Analysis of PDEs +1609.04228 Statistics Theory +1609.04481 Probability +1609.04791 Geophysics +1609.04883 Probability +1609.07727 Computer Vision and Pattern Recognition +1609.08423 +1609.08440 Representation Theory +1609.09072 Phenomenology +1610.00601 Statistical Mechanics +1610.01024 Materials Science +1610.02145 Statistics Theory +1610.02153 Probability +1610.02598 Fluid Dynamics +1610.02668 Social and Information Networks +1610.02767 Materials Science +1610.02807 Machine Learning +1610.02836 Differential Geometry +1610.03191 Mesoscale and Nanoscale Physics +1610.03464 Popular Physics +1610.03579 Databases +1610.03858 Algebraic Geometry +1610.04017 High Energy Astrophysical Phenomena +1610.04026 Number Theory +1610.04095 Differential Geometry +1610.04125 Quantum Gases +1610.04344 Number Theory +1610.04717 +1610.05165 Solar and Stellar Astrophysics +1610.05287 Artificial Intelligence +1610.05444 High Energy Astrophysical Phenomena +1610.05481 Quantum Gases +1610.05500 Analysis of PDEs +1610.05806 Theory +1610.05859 Accelerator Physics +1610.05943 Cosmology and Nongalactic Astrophysics +1610.06069 Quantum Algebra +1610.06144 Combinatorics +1610.06271 Atomic Physics +1610.06322 Mesoscale and Nanoscale Physics +1610.06365 Strongly Correlated Electrons +1610.06450 Computers and Society +1610.06537 Exactly Solvable and Integrable Systems +1610.06562 Chemical Physics +1610.06563 Phenomenology +1610.06564 Chemical Physics +1610.06566 Astrophysics of Galaxies +1610.06574 Astrophysics of Galaxies +1610.06575 +1610.06581 Phenomenology +1610.06585 Cosmology and Nongalactic Astrophysics +1610.06586 Algebraic Geometry +1610.06587 Phenomenology +1610.06589 Mesoscale and Nanoscale Physics +1610.06592 Analysis of PDEs +1610.06593 Soft Condensed Matter +1610.06595 Astrophysics of Galaxies +1610.06596 Statistical Mechanics +1610.06599 Optimization and Control +1610.06600 Solar and Stellar Astrophysics +1610.06601 Computation and Language +1610.06605 Fluid Dynamics +1610.06606 Tissues and Organs +1610.06608 Tissues and Organs +1610.06609 Earth and Planetary Astrophysics +1610.06610 Commutative Algebra +1610.06612 Algebraic Geometry +1610.06613 Probability +1610.06615 Mesoscale and Nanoscale Physics +1610.06617 Representation Theory +1610.06622 Strongly Correlated Electrons +1610.06624 Combinatorics +1610.06625 Instrumentation and Methods for Astrophysics +1610.06627 High Energy Astrophysical Phenomena +1610.06628 Soft Condensed Matter +1610.06630 +1610.06631 Systems and Control +1610.06632 Computation +1610.06633 Human-Computer Interaction +1610.06634 Algebraic Geometry +1610.06635 Quantum Gases +1610.06636 Physics and Society +1610.06637 +1610.06639 Analysis of PDEs +1610.06640 Applications +1610.06643 High Energy Astrophysical Phenomena +1610.06644 Combinatorics +1610.06646 +1610.06648 Operator Algebras +1610.06655 Optimization and Control +1610.06657 Optics +1610.06658 Physics Education +1610.06659 Information Theory +1610.06663 Group Theory +1610.06664 Machine Learning +1610.06665 Machine Learning +1610.06666 Computer Vision and Pattern Recognition +1610.06667 Computer Vision and Pattern Recognition +1610.06668 Number Theory +1610.06669 Computer Vision and Pattern Recognition +1610.06670 Probability +1610.06671 Computer Vision and Pattern Recognition +1610.06672 Data Structures and Algorithms +1610.06673 Cosmology and Nongalactic Astrophysics +1610.06674 Mesoscale and Nanoscale Physics +1610.06677 Instrumentation and Methods for Astrophysics +1610.06678 Plasma Physics +1610.06679 Geometric Topology +1610.06681 Data Structures and Algorithms +1610.06683 Methodology +1610.06684 Analysis of PDEs +1610.06687 Optics +1610.06689 Complex Variables +1610.06691 Probability +1610.06698 Instrumentation and Detectors +1610.06700 Computation and Language +1610.06701 Data Structures and Algorithms +1610.06703 Social and Information Networks +1610.06704 Mesoscale and Nanoscale Physics +1610.06705 Physics and Society +1610.06706 Complex Variables +1610.06707 Experiment +1610.06708 Atmospheric and Oceanic Physics +1610.06710 Solar and Stellar Astrophysics +1610.06711 Probability +1610.06712 Information Theory +1610.06714 Differential Geometry +1610.06715 Logic in Computer Science +1610.06718 Computer Science and Game Theory +1610.06719 Phenomenology +1610.06720 Dynamical Systems +1610.06721 Cryptography and Security +1610.06722 K-Theory and Homology +1610.06724 Strongly Correlated Electrons +1610.06725 Soft Condensed Matter +1610.06727 Phenomenology +1610.06728 Group Theory +1610.06729 Instrumentation and Methods for Astrophysics +1610.06731 Machine Learning +1610.06732 Soft Condensed Matter +1610.06733 Soft Condensed Matter +1610.06734 Computer Science and Game Theory +1610.06735 Combinatorics +1610.06738 Materials Science +1610.06739 Materials Science +1610.06740 Computer Vision and Pattern Recognition +1610.06741 Logic +1610.06742 Optics +1610.06743 Numerical Analysis +1610.06746 Algebraic Geometry +1610.06747 Numerical Analysis +1610.06748 Numerical Analysis +1610.06749 Medical Physics +1610.06752 Computation +1610.06754 Networking and Internet Architecture +1610.06755 Optimization and Control +1610.06756 Computer Vision and Pattern Recognition +1610.06759 Distributed, Parallel, and Cluster Computing +1610.06761 Machine Learning +1610.06765 Analysis of PDEs +1610.06766 Computers and Society +1610.06768 Programming Languages +1610.06769 Information Theory +1610.06770 Algebraic Geometry +1610.06772 +1610.06774 Statistics Theory +1610.06775 Complex Variables +1610.06782 Theory +1610.06783 Group Theory +1610.06784 Numerical Analysis +1610.06786 Probability +1610.06790 Numerical Analysis +1610.06792 +1610.06793 Optimization and Control +1610.06798 Lattice +1610.06799 Optics +1610.06800 Numerical Analysis +1610.06801 Category Theory +1610.06806 Learning +1610.06807 Superconductivity +1610.06808 K-Theory and Homology +1610.06809 Social and Information Networks +1610.06810 Cryptography and Security +1610.06811 Learning +1610.06813 Materials Science +1610.06814 Numerical Analysis +1610.06815 Computer Vision and Pattern Recognition +1610.06817 Optics +1610.06821 Mesoscale and Nanoscale Physics +1610.06822 +1610.06823 Probability +1610.06824 Strongly Correlated Electrons +1610.06825 Computers and Society +1610.06826 Cosmology and Nongalactic Astrophysics +1610.06827 Analysis of PDEs +1610.06829 Computers and Society +1610.06831 High Energy Astrophysical Phenomena +1610.06833 Optimization and Control +1610.06834 Optimization and Control +1610.06836 Analysis of PDEs +1610.06837 Number Theory +1610.06840 Computational Physics +1610.06841 Number Theory +1610.06844 Numerical Analysis +1610.06845 Information Theory +1610.06847 Medical Physics +1610.06851 Classical Analysis and ODEs +1610.06852 Analysis of PDEs +1610.06853 Information Theory +1610.06855 Computers and Society +1610.06856 Cryptography and Security +1610.06858 Materials Science +1610.06861 Methodology +1610.06862 Analysis of PDEs +1610.06866 Plasma Physics +1610.06868 Chemical Physics +1610.06869 Functional Analysis +1610.06870 Symplectic Geometry +1610.06871 Algebraic Topology +1610.06875 Fluid Dynamics +1610.06876 +1610.06877 Pattern Formation and Solitons +1610.06878 Algebraic Geometry +1610.06879 Algebraic Geometry +1610.06880 Optimization and Control +1610.06883 +1610.06884 Soft Condensed Matter +1610.06885 Mesoscale and Nanoscale Physics +1610.06888 Analysis of PDEs +1610.06889 +1610.06890 Cosmology and Nongalactic Astrophysics +1610.06891 +1610.06892 Instrumentation and Methods for Astrophysics +1610.06894 Functional Analysis +1610.06895 Computers and Society +1610.06897 +1610.06900 Number Theory +1610.06901 Analysis of PDEs +1610.06902 Machine Learning +1610.06903 Computer Vision and Pattern Recognition +1610.06904 Analysis of PDEs +1610.06907 Computer Vision and Pattern Recognition +1610.06908 Category Theory +1610.06913 Atomic and Molecular Clusters +1610.06915 Rings and Algebras +1610.06918 Cryptography and Security +quant-ph/0504086 +0706.3850 +0711.2145 +0805.0263 +0811.0213 Phenomenology +0812.3219 +0812.3772 +0903.3640 Phenomenology +0905.2547 Applications +0912.4038 Cosmology and Nongalactic Astrophysics +1003.2762 +1005.2883 Operator Algebras +1012.0261 Phenomenology +1102.0335 Disordered Systems and Neural Networks +1102.2254 Machine Learning +1104.0705 Representation Theory +1109.5280 Tissues and Organs +1110.6816 Algebraic Geometry +1201.2719 Artificial Intelligence +1202.5285 Rings and Algebras +1203.1660 Probability +1204.1115 Soft Condensed Matter +1204.1321 Mesoscale and Nanoscale Physics +1206.0345 +1207.6333 Quantum Algebra +1211.5273 Algebraic Geometry +1212.1789 Logic +1302.0232 Mesoscale and Nanoscale Physics +1302.0518 Phenomenology +1302.6564 Statistical Mechanics +1303.5385 Analysis of PDEs +1304.0867 Category Theory +1304.4745 +1304.5616 Rings and Algebras +1305.3464 Algebraic Geometry +1305.7325 Populations and Evolution +1306.3345 +1306.3618 Information Theory +1307.6383 +1308.6681 Rings and Algebras +1309.0171 Rings and Algebras +1310.5520 Physics and Society +1310.7231 Cosmology and Nongalactic Astrophysics +1311.1549 Biological Physics +1311.2501 Logic +1311.6602 Numerical Analysis +1312.4307 Analysis of PDEs +1312.7828 +1401.0326 Analysis of PDEs +1401.1802 Rings and Algebras +1401.3681 Probability +1401.7941 Artificial Intelligence +1402.4549 Combinatorics +1402.4582 Soft Condensed Matter +1403.7988 Combinatorics +1404.7258 Differential Geometry +1405.0699 Geometric Topology +1405.3003 Analysis of PDEs +1405.6291 Logic +1406.1357 Earth and Planetary Astrophysics +1406.2951 Data Structures and Algorithms +1406.3669 Number Theory +1406.5480 Data Structures and Algorithms +1407.6522 +1407.8395 Functional Analysis +1408.0543 Group Theory +1408.1199 Soft Condensed Matter +1408.5269 Biological Physics +1408.5672 Geometric Topology +1409.3210 Group Theory +1409.3559 Group Theory +1409.3888 Algebraic Geometry +1409.5844 Information Theory +1409.6901 Differential Geometry +1409.7248 Probability +1409.7520 Networking and Internet Architecture +1410.1007 Number Theory +1410.1732 Representation Theory +1410.5702 Representation Theory +1411.4513 Materials Science +1411.6797 +1412.0128 +1412.6188 +1412.8716 Strongly Correlated Electrons +1501.01147 Combinatorics +1501.04853 Symplectic Geometry +1501.05202 Numerical Analysis +1501.05865 Superconductivity +1502.00702 Learning +1502.02177 Combinatorics +1502.03661 Theory +1502.04723 +1502.06448 Number Theory +1502.07770 Computer Vision and Pattern Recognition +1503.02207 Combinatorics +1503.02438 Rings and Algebras +1503.02465 Quantum Algebra +1503.03687 +1503.04426 Data Structures and Algorithms +1503.04565 Algebraic Geometry +1503.05074 Genomics +1503.05339 Probability +1503.08139 +1503.08500 Statistical Mechanics +1503.08519 Operator Algebras +1504.01294 Statistics Theory +1504.01750 Strongly Correlated Electrons +1504.03050 Fluid Dynamics +1504.03754 Networking and Internet Architecture +1504.04050 +1504.05714 Applications +1504.08143 Analysis of PDEs +1505.01410 Computational Geometry +1505.02679 Atmospheric and Oceanic Physics +1505.03046 Computer Vision and Pattern Recognition +1505.04526 Representation Theory +1505.06941 Category Theory +1505.07581 Commutative Algebra +1505.07770 +1505.07888 +1505.08054 Differential Geometry +1505.08103 Optics +1506.02565 Computer Vision and Pattern Recognition +1506.02921 Analysis of PDEs +1506.03114 Theory +1506.03196 Algebraic Geometry +1506.03816 Strongly Correlated Electrons +1506.05425 Numerical Analysis +1506.07764 General Physics +1506.08116 Disordered Systems and Neural Networks +1506.08800 Databases +1506.08899 Numerical Analysis +1506.09083 Rings and Algebras +1507.00386 Soft Condensed Matter +1507.00601 +1507.00766 +1507.01017 +1507.01274 Statistical Mechanics +1507.02216 Applications +1507.02254 Theory +1507.02552 Quantum Gases +1507.03513 Programming Languages +1507.03820 Analysis of PDEs +1507.04038 Mesoscale and Nanoscale Physics +1507.04381 Chaotic Dynamics +1507.06125 Mesoscale and Nanoscale Physics +1507.06788 +1507.07505 Computer Vision and Pattern Recognition +1507.08670 Probability +1508.00191 Numerical Analysis +1508.00952 Optimization and Control +1508.02653 Mesoscale and Nanoscale Physics +1508.03913 Probability +1508.04739 Instrumentation and Detectors +1508.05671 Dynamical Systems +1508.05748 Number Theory +1508.05988 Plasma Physics +1508.06496 Optimization and Control +1508.06580 +1508.07951 Social and Information Networks +1509.01598 Phenomenology +1509.02325 Networking and Internet Architecture +1509.02398 +1509.03024 Fluid Dynamics +1509.03294 Differential Geometry +1509.04883 +1509.04949 Representation Theory +1509.06401 Theory +1509.07772 Strongly Correlated Electrons +1509.07915 Algebraic Topology +1509.07983 Information Theory +1509.08506 Disordered Systems and Neural Networks +1509.08999 Computation +1509.09120 Computation +1509.09156 Fluid Dynamics +1510.00221 Algebraic Geometry +1510.00935 Commutative Algebra +1510.01133 Accelerator Physics +1510.01938 Materials Science +1510.02216 Logic +1510.02488 Mesoscale and Nanoscale Physics +1510.02659 Computational Geometry +1510.02899 Computer Vision and Pattern Recognition +1510.03720 Experiment +1510.03910 Mesoscale and Nanoscale Physics +1510.04937 Strongly Correlated Electrons +1510.05384 Superconductivity +1510.05785 +1510.06070 +1510.06096 Optimization and Control +1510.06316 Phenomenology +1510.06423 Machine Learning +1510.06501 Cryptography and Security +1510.07494 Physics and Society +1510.08008 Mesoscale and Nanoscale Physics +1511.00205 Optimization and Control +1511.00523 Computer Science and Game Theory +1511.00853 Theory +1511.01104 Theory +1511.01409 Populations and Evolution +1511.01844 Machine Learning +1511.02138 Experiment +1511.02305 Optics +1511.02690 Quantum Gases +1511.02847 +1511.03961 Information Theory +1511.04101 Cosmology and Nongalactic Astrophysics +1511.04127 +1511.04262 +1511.05149 Astrophysics of Galaxies +1511.05202 Information Retrieval +1511.05641 Learning +1511.06343 Learning +1511.06771 Number Theory +1511.07078 Disordered Systems and Neural Networks +1511.08124 Superconductivity +1511.08715 Information Theory +1511.09175 Classical Analysis and ODEs +1512.00550 Logic in Computer Science +1512.02213 Strongly Correlated Electrons +1512.02876 +1512.03659 General Physics +1512.03820 Mesoscale and Nanoscale Physics +1512.03830 General Physics +1512.04060 Methodology +1512.04851 +1512.05163 Numerical Analysis +1512.05214 Physics and Society +1512.06062 Analysis of PDEs +1512.07016 +1512.07514 Combinatorics +1512.07545 Superconductivity +1512.08183 Computation and Language +1512.09182 Other Condensed Matter +1601.00062 Machine Learning +1601.00238 Machine Learning +1601.00683 Materials Science +1601.03061 Networking and Internet Architecture +1601.03069 Chemical Physics +1601.03845 Mesoscale and Nanoscale Physics +1601.04623 Algebraic Geometry +1601.04775 Rings and Algebras +1601.06370 +1601.07049 Classical Analysis and ODEs +1601.07483 Artificial Intelligence +1601.07490 Strongly Correlated Electrons +1601.07643 Analysis of PDEs +1601.08085 Rings and Algebras +1602.00286 +1602.00616 Atomic Physics +1602.00940 Phenomenology +1602.01702 Instrumentation and Detectors +1602.02154 Cosmology and Nongalactic Astrophysics +1602.02192 Probability +1602.03276 Analysis of PDEs +1602.04259 Artificial Intelligence +1602.04275 Algebraic Geometry +1602.04559 +1602.05049 Analysis of PDEs +1602.05954 Strongly Correlated Electrons +1602.06832 Systems and Control +1602.07328 Category Theory +1602.07443 Astrophysics of Galaxies +1602.08240 Analysis of PDEs +1602.09132 Combinatorics +1603.00056 Cosmology and Nongalactic Astrophysics +1603.00075 +1603.00306 Materials Science +1603.00915 Analysis of PDEs +1603.01580 Statistical Finance +1603.02130 Software Engineering +1603.02251 Theory +1603.02398 +1603.02705 Databases +1603.03261 +1603.03288 Phenomenology +1603.03414 +1603.03549 Experiment +1603.07060 Number Theory +1603.07460 Statistics Theory +1603.08441 Astrophysics of Galaxies +1603.09162 Classical Analysis and ODEs +1604.00119 Computation and Language +1604.00437 Analysis of PDEs +1604.00538 Solar and Stellar Astrophysics +1604.00604 Representation Theory +1604.00655 Algebraic Topology +1604.01550 Data Structures and Algorithms +1604.01567 Materials Science +1604.01626 Chemical Physics +1604.02376 Computer Vision and Pattern Recognition +1604.02898 Computer Vision and Pattern Recognition +1604.02908 Combinatorics +1604.03036 +1604.03578 Phenomenology +1604.03645 Analysis of PDEs +1604.03695 Information Theory +1604.04295 Logic in Computer Science +1604.04343 Optimization and Control +1604.04818 Information Theory +1604.04889 Operator Algebras +1604.04932 Cosmology and Nongalactic Astrophysics +1604.04935 Populations and Evolution +1604.05016 Instrumentation and Detectors +1604.05242 Computer Vision and Pattern Recognition +1604.05519 Computation and Language +1604.05664 Quantum Gases +1604.06224 Analysis of PDEs +1604.06364 Functional Analysis +1604.06381 Theory +1604.06518 Learning +1604.06530 Commutative Algebra +1604.06563 Popular Physics +1604.06564 Popular Physics +1604.06568 Statistics Theory +1604.06611 Analysis of PDEs +1604.06685 Digital Libraries +1604.06773 History and Philosophy of Physics +1604.06794 History and Overview +1604.06796 Medical Physics +1604.06798 Differential Geometry +1604.06809 Theory +1604.06813 Analysis of PDEs +1604.06817 Chemical Physics +1604.06818 Robotics +1604.06824 +1604.06830 Numerical Analysis +1604.06831 Materials Science +1604.06832 Computer Vision and Pattern Recognition +1604.06833 Combinatorics +1604.06837 Methodology +1604.06843 Algebraic Geometry +1604.06845 History and Philosophy of Physics +1604.06846 Probability +1604.06848 Information Theory +1604.06849 Artificial Intelligence +1604.06850 Mesoscale and Nanoscale Physics +1604.06852 Computer Vision and Pattern Recognition +1604.06853 Distributed, Parallel, and Cluster Computing +1604.06854 Chemical Physics +1604.06855 Medical Physics +1604.06862 Combinatorics +1604.06864 Numerical Analysis +1604.06865 Optics +1604.06867 Algebraic Geometry +1604.06870 +1604.06871 Solar and Stellar Astrophysics +1604.06872 Optics +1604.06874 Statistics Theory +1604.06875 Materials Science +1604.06877 Computer Vision and Pattern Recognition +1604.06880 Exactly Solvable and Integrable Systems +1604.06882 Atomic Physics +1604.06886 Classical Analysis and ODEs +1604.06887 Superconductivity +1604.06888 Analysis of PDEs +1604.06892 Portfolio Management +1604.06894 Combinatorics +1604.06897 General Physics +1604.06898 General Mathematics +1604.06901 Logic +1604.06903 Number Theory +1604.06907 Representation Theory +1604.06911 Operator Algebras +1604.06913 Operator Algebras +1604.06914 Algebraic Geometry +1604.06915 Learning +1604.06919 Algebraic Geometry +1604.06922 Biomolecules +1604.06923 Numerical Analysis +1604.06926 Fluid Dynamics +1604.06927 Numerical Analysis +1604.06929 Neural and Evolutionary Computing +1604.06930 Number Theory +1604.06932 +1604.06933 Numerical Analysis +1604.06943 Probability +1604.06946 History and Philosophy of Physics +1604.06948 Phenomenology +1604.06949 History and Philosophy of Physics +1604.06950 Functional Analysis +1604.06951 Dynamical Systems +1604.06954 Artificial Intelligence +1604.06957 Analysis of PDEs +1604.06961 Information Theory +1604.06962 Earth and Planetary Astrophysics +1604.06964 Cryptography and Security +1604.06970 Artificial Intelligence +1604.06971 Information Theory +1604.06972 High Energy Astrophysical Phenomena +1604.06973 +1604.06976 Social and Information Networks +1604.06978 Group Theory +1604.06979 Computer Vision and Pattern Recognition +1604.06981 Analysis of PDEs +1604.06982 Atomic and Molecular Clusters +1604.06983 Information Theory +1604.06988 Algebraic Topology +1604.06989 Materials Science +1604.06991 Dynamical Systems +1604.06992 Classical Analysis and ODEs +1604.06995 History and Overview +1604.06996 Information Theory +1604.06997 Data Structures and Algorithms +1604.07004 Algebraic Geometry +1604.07011 +1604.07012 Fluid Dynamics +1604.07014 Classical Analysis and ODEs +1604.07015 Classical Analysis and ODEs +1604.07017 Geophysics +1604.07018 Differential Geometry +1604.07019 Probability +1604.07020 Classical Analysis and ODEs +1604.07021 Logic +1604.07023 Combinatorics +1604.07025 Materials Science +1604.07026 Information Theory +1604.07029 Classical Analysis and ODEs +1604.07030 Logic in Computer Science +1604.07031 Methodology +1604.07034 Logic +1604.07037 Classical Analysis and ODEs +1604.07038 Data Structures and Algorithms +1604.07039 Statistics Theory +1604.07040 Phenomenology +1604.07041 Analysis of PDEs +1604.07042 Risk Management +1604.07044 Information Retrieval +1604.07047 Complex Variables +1604.07048 Information Theory +1604.07049 Optimization and Control +1604.07051 Multimedia +1604.07054 Astrophysics of Galaxies +1604.07055 Commutative Algebra +1604.07058 Analysis of PDEs +1604.07060 Computer Vision and Pattern Recognition +1604.07062 Computational Complexity +1604.07064 Formal Languages and Automata Theory +1604.07065 Complex Variables +1604.07074 Physics Education +1604.07078 Learning +1604.07080 Computation +1604.07083 Differential Geometry +1604.07084 Computer Science and Game Theory +1604.07085 Phenomenology +1604.07087 Methodology +1604.07093 Computer Vision and Pattern Recognition +1604.07094 Optimization and Control +1604.07095 Artificial Intelligence +1604.07096 Social and Information Networks +1604.07098 Applications +1604.07099 Computational Geometry +1604.07100 Computational Geometry +1604.07102 Computer Vision and Pattern Recognition +1604.07104 Statistics Theory +1604.07105 Operator Algebras +1604.07107 Analysis of PDEs +1604.07108 Neural and Evolutionary Computing +1604.07109 Populations and Evolution +1604.07110 Populations and Evolution +1604.07111 Optimization and Control +1604.07116 Complex Variables +1604.07117 Analysis of PDEs +1604.07119 Physics and Society +1604.07121 Emerging Technologies +1604.07124 Networking and Internet Architecture +1604.07130 Optimization and Control +1604.07133 Group Theory +1604.07136 Fluid Dynamics +1604.07138 Computational Engineering, Finance, and Science +1604.07140 Algebraic Geometry +1604.07142 Dynamical Systems +1604.07143 Machine Learning +1604.07150 Materials Science +1604.07151 Information Theory +1604.07153 Data Structures and Algorithms +1604.07157 Information Theory +1604.07158 Other Condensed Matter +1604.07161 Mesoscale and Nanoscale Physics +1604.07163 Mathematical Software +1604.07168 Materials Science +1604.07169 Programming Languages +1604.07172 Theory +1604.07173 +1604.07174 Probability +1604.07177 Computation +1604.07178 Learning +1604.07179 Networking and Internet Architecture +1604.07180 Databases +1604.07181 Logic +1604.07182 Distributed, Parallel, and Cluster Computing +1604.07184 Phenomenology +1604.07185 Chemical Physics +1604.07188 Numerical Analysis +1604.07189 Probability +1604.07194 Numerical Analysis +1604.07196 Information Theory +1604.07199 Optimization and Control +1604.07202 Databases +1604.07206 Probability +1604.07207 Analysis of PDEs +1604.07208 Phenomenology +1604.07209 Information Retrieval +1604.07211 Multimedia +1604.07215 Numerical Analysis +1604.07216 Number Theory +1604.07217 General Physics +1604.07219 Analysis of PDEs +1604.07220 Dynamical Systems +1604.07224 Robotics +1604.07225 Logic +1604.07226 Earth and Planetary Astrophysics +1604.07227 Group Theory +1604.07228 Numerical Analysis +1604.07231 Instrumentation and Detectors +1604.07232 Instrumentation and Detectors +1604.07234 Information Theory +1604.07235 Fluid Dynamics +1604.07239 Soft Condensed Matter +1604.07240 Complex Variables +1604.07242 Mathematical Software +1604.07245 Metric Geometry +1604.07248 General Mathematics +1604.07256 Numerical Analysis +1604.07257 Functional Analysis +1604.07260 Functional Analysis +1604.07261 Optimization and Control +1604.07266 Soft Condensed Matter +1604.07267 Group Theory +1604.07268 Combinatorics +1604.07269 Neural and Evolutionary Computing +1604.07272 Classical Physics +1604.07273 Combinatorics +1604.07275 Computational Physics +1604.07279 Computer Vision and Pattern Recognition +1604.07283 Combinatorics +1604.07293 Dynamical Systems +1604.07297 Materials Science +1604.07299 Applications +1604.07301 Representation Theory +1604.07305 Complex Variables +1604.07307 Combinatorics +1604.07308 Fluid Dynamics +1604.07311 Methodology +1604.07312 Artificial Intelligence +1604.07315 Information Theory +1604.07316 Computer Vision and Pattern Recognition +1604.07317 Strongly Correlated Electrons +1604.07319 Computer Vision and Pattern Recognition +1604.07329 Logic +1604.07332 Phenomenology +1604.07333 Representation Theory +1604.07335 Computer Vision and Pattern Recognition +1604.07336 Phenomenology +1604.07339 Multimedia +1604.07343 Data Analysis, Statistics and Probability +1604.07345 General Physics +1604.07346 Differential Geometry +1604.07348 +1604.07350 Probability +1604.07352 Probability +1604.07355 +1604.07356 Machine Learning +1604.07358 Phenomenology +1604.07360 Computer Vision and Pattern Recognition +1604.07363 Systems and Control +1604.07366 +1604.07369 Statistical Mechanics +1604.07371 Distributed, Parallel, and Cluster Computing +1604.07374 +1604.07377 Analysis of PDEs +1604.07378 Graphics +1604.07381 Analysis of PDEs +1604.07383 Theory +1604.07386 Information Theory +astro-ph/0310076 +astro-ph/0311612 +astro-ph/0606247 +astro-ph/0607174 +astro-ph/0609192 +astro-ph/0609701 +astro-ph/0610230 +astro-ph/0611607 +gr-qc/0505088 +gr-qc/0508018 +gr-qc/0608083 +hep-ex/0404026 Experiment +hep-ex/0408086 Experiment +hep-lat/9208026 Lattice +hep-ph/0308259 Phenomenology +hep-ph/0603064 Phenomenology +hep-ph/9309303 Phenomenology +hep-th/0109007 Theory +hep-th/0512231 Theory +hep-th/0603112 Theory +hep-th/0611150 Theory +math/0312387 Algebraic Topology +math/0506352 Algebraic Topology +nucl-th/0401025 +physics/0101057 General Physics +physics/0410158 Instrumentation and Detectors +physics/0504142 Instrumentation and Detectors +physics/0612135 Instrumentation and Detectors +quant-ph/0203144 +quant-ph/0310033 +1006.4541 Operator Algebras +1101.1200 Operator Algebras +1202.1617 Statistics Theory +1202.4018 General Topology +1204.2858 +1211.6281 Algebraic Geometry +1301.6112 Optimization and Control +1302.2534 Probability +1302.6416 Optimization and Control +1306.1400 Number Theory +1306.2757 +1308.6134 Probability +1309.5354 Operator Algebras +1310.4783 Statistics Theory +1312.2542 Chaotic Dynamics +1312.3295 Networking and Internet Architecture +1312.4485 Probability +1402.0539 Algebraic Geometry +1402.2880 Chemical Physics +1403.0245 Probability +1403.0527 Statistics Theory +1404.2242 Probability +1404.3658 Probability +1405.4082 Chemical Physics +1405.5024 Information Theory +1406.1675 Populations and Evolution +1406.3325 Statistics Theory +1408.3672 Chemical Physics +1408.3754 +1408.3919 Probability +1409.3671 Chemical Physics +1409.6644 Systems and Control +1410.5654 Commutative Algebra +1410.7440 Number Theory +1411.3557 Algebraic Geometry +1412.2725 Probability +1412.4390 Probability +1501.01148 Strongly Correlated Electrons +1501.03764 Probability +1502.02560 Algebraic Geometry +1502.03955 Statistics Theory +1503.00836 +1503.02950 Combinatorics +1503.05967 Algebraic Geometry +1504.05129 Theory +1504.08113 Quantum Gases +1505.00251 Robotics +1505.00778 Cosmology and Nongalactic Astrophysics +1505.01863 +1505.05451 Artificial Intelligence +1505.06792 Information Retrieval +1506.00165 Learning +1506.01532 Materials Science +1506.02261 Combinatorics +1506.02272 Representation Theory +1506.02286 Quantitative Methods +1506.06998 Methodology +1507.03647 Populations and Evolution +1507.04125 Computer Vision and Pattern Recognition +1507.04126 Computer Vision and Pattern Recognition +1507.04775 Physics and Society +1508.02176 Probability +1508.02281 +1508.02318 Symplectic Geometry +1509.00704 Disordered Systems and Neural Networks +1509.03443 Algebraic Geometry +1509.05394 Instrumentation and Detectors +1509.07162 Algebraic Geometry +1509.08846 Plasma Physics +1510.01987 Solar and Stellar Astrophysics +1510.04740 Statistics Theory +1510.08739 Number Theory +1511.00020 Number Theory +1511.00757 +1511.01482 Theory +1511.03296 Computer Vision and Pattern Recognition +1511.03755 +1511.04971 Theory +1511.07317 Number Theory +1511.08372 Plasma Physics +1511.09120 Robotics +1511.09329 Information Theory +1512.01189 +1512.02704 Superconductivity +1512.03181 Analysis of PDEs +1512.04481 Computation +1512.07262 Probability +1512.07653 +1512.08511 Geophysics +1512.09100 Disordered Systems and Neural Networks +1601.00034 Machine Learning +1601.00156 +1601.00161 +1601.01860 Superconductivity +1601.03523 Data Structures and Algorithms +1601.04465 Algebraic Geometry +1601.06075 Physics and Society +1602.00635 Solar and Stellar Astrophysics +1602.01501 Probability +1602.01798 Theory +1602.02119 Solar and Stellar Astrophysics +1602.02190 Cell Behavior +1602.03377 Phenomenology +1602.04679 Optimization and Control +1602.06157 Robotics +1602.06297 Astrophysics of Galaxies +1602.07923 Accelerator Physics +1602.08305 Mesoscale and Nanoscale Physics +1603.01082 Robotics +1603.01386 Probability +1603.01604 Materials Science +1603.03093 Mesoscale and Nanoscale Physics +1603.04748 Solar and Stellar Astrophysics +1603.04753 Soft Condensed Matter +1603.04873 Mesoscale and Nanoscale Physics +1603.08402 Number Theory +1603.09243 +1603.09399 +1603.09660 Numerical Analysis +1603.09700 Differential Geometry +1604.00308 Dynamical Systems +1604.00381 Networking and Internet Architecture +1604.04500 Materials Science +1604.05271 Soft Condensed Matter +1604.07122 Astrophysics of Galaxies +1604.07370 Computation and Language +1605.01193 Theory +1605.03018 Soft Condensed Matter +1605.03549 Combinatorics +1605.03878 Atomic Physics +1605.04015 Mesoscale and Nanoscale Physics +1605.04425 +1605.04550 Statistical Mechanics +1605.05785 Statistics Theory +1605.06975 +1605.07605 Instrumentation and Detectors +1605.08681 Phenomenology +1606.00102 Representation Theory +1606.02251 General Physics +1606.02686 Performance +1606.02988 +1606.03526 Astrophysics of Galaxies +1606.05301 Quantum Algebra +1606.06161 Functional Analysis +1606.08169 Optics +1606.08335 Differential Geometry +1606.08566 Strongly Correlated Electrons +1606.09475 Materials Science +1607.01259 +1607.01405 Superconductivity +1607.01620 Statistical Mechanics +1607.01903 Combinatorics +1607.02540 +1607.02683 Dynamical Systems +1607.04623 +1607.04911 Data Structures and Algorithms +1607.05037 Networking and Internet Architecture +1607.05679 +1607.05745 High Energy Astrophysical Phenomena +1607.05867 Computational Engineering, Finance, and Science +1607.05889 Number Theory +1607.06067 Optimization and Control +1607.06359 Human-Computer Interaction +1607.06454 Group Theory +1607.06455 Instrumentation and Methods for Astrophysics +1607.06456 Group Theory +1607.06460 +1607.06467 Cosmology and Nongalactic Astrophysics +1607.06469 Optics +1607.06472 High Energy Astrophysical Phenomena +1607.06479 Astrophysics of Galaxies +1607.06480 High Energy Astrophysical Phenomena +1607.06482 Solar and Stellar Astrophysics +1607.06483 Differential Geometry +1607.06486 +1607.06487 Earth and Planetary Astrophysics +1607.06490 Classical Analysis and ODEs +1607.06492 +1607.06500 Theory +1607.06501 Quantum Gases +1607.06502 Probability +1607.06503 Mesoscale and Nanoscale Physics +1607.06506 Theory +1607.06508 Probability +1607.06509 Combinatorics +1607.06510 Biological Physics +1607.06514 Computer Vision and Pattern Recognition +1607.06515 Computers and Society +1607.06520 Computation and Language +1607.06522 Soft Condensed Matter +1607.06525 Learning +1607.06529 K-Theory and Homology +1607.06532 Computation and Language +1607.06539 Computational Geometry +1607.06544 Distributed, Parallel, and Cluster Computing +1607.06545 Number Theory +1607.06548 Superconductivity +1607.06552 Phenomenology +1607.06553 Geometric Topology +1607.06555 Theory +1607.06556 Computation and Language +1607.06559 Phenomenology +1607.06560 Computation and Language +1607.06563 Neurons and Cognition +1607.06564 Statistics Theory +1607.06565 Methodology +1607.06566 Phenomenology +1607.06569 Optimization and Control +1607.06570 Mesoscale and Nanoscale Physics +1607.06575 Superconductivity +1607.06576 Rings and Algebras +1607.06577 +1607.06580 Complex Variables +1607.06581 Systems and Control +1607.06583 Computer Vision and Pattern Recognition +1607.06585 +1607.06587 Human-Computer Interaction +1607.06594 Mesoscale and Nanoscale Physics +1607.06595 Materials Science +1607.06599 Analysis of PDEs +1607.06601 Instrumentation and Methods for Astrophysics +1607.06603 Logic +1607.06607 Number Theory +1607.06609 Experiment +1607.06616 +1607.06617 Artificial Intelligence +1607.06618 Data Structures and Algorithms +1607.06619 Cryptography and Security +1607.06620 Robotics +1607.06623 Optimization and Control +1607.06624 Probability +1607.06625 Number Theory +1607.06630 +1607.06632 Dynamical Systems +1607.06633 +1607.06638 Analysis of PDEs +1607.06640 Biological Physics +1607.06644 Probability +1607.06646 Analysis of PDEs +1607.06647 Representation Theory +1607.06648 Analysis of PDEs +1607.06650 +1607.06651 Optimization and Control +1607.06652 Probability +1607.06653 Analysis of PDEs +1607.06655 Metric Geometry +1607.06658 Distributed, Parallel, and Cluster Computing +1607.06660 Data Structures and Algorithms +1607.06663 +1607.06667 Sound +1607.06670 Theory +1607.06673 Mesoscale and Nanoscale Physics +1607.06674 Distributed, Parallel, and Cluster Computing +1607.06675 +1607.06676 Computer Vision and Pattern Recognition +1607.06677 Analysis of PDEs +1607.06679 Combinatorics +1607.06681 Number Theory +1607.06683 Biological Physics +1607.06685 Applications +1607.06688 Distributed, Parallel, and Cluster Computing +1607.06689 Analysis of PDEs +1607.06690 Mesoscale and Nanoscale Physics +1607.06699 Statistics Theory +1607.06700 Discrete Mathematics +1607.06704 Numerical Analysis +1607.06707 Optics +1607.06709 Cryptography and Security +1607.06711 Computational Complexity +1607.06712 +1607.06714 Logic +1607.06721 Computers and Society +1607.06725 History and Philosophy of Physics +1607.06728 Analysis of PDEs +1607.06733 Probability +1607.06737 Functional Analysis +1607.06740 Physics and Society +1607.06744 Dynamical Systems +1607.06745 Materials Science +1607.06747 Spectral Theory +1607.06748 Probability +1607.06749 Optics +1607.06751 Data Structures and Algorithms +1607.06753 Optics +1607.06759 Artificial Intelligence +1607.06762 Statistics Theory +1607.06763 Methodology +1607.06765 Computer Science and Game Theory +1607.06766 Strongly Correlated Electrons +1607.06774 Differential Geometry +1607.06776 Atomic Physics +1607.06778 Systems and Control +1607.06781 Learning +1607.06783 Computer Vision and Pattern Recognition +1607.06784 Group Theory +1607.06785 Combinatorics +1607.06786 Phenomenology +1607.06787 Computer Vision and Pattern Recognition +1607.06788 Statistical Mechanics +1607.06789 Materials Science +1607.06791 +1607.06793 Information Theory +1607.06795 Social and Information Networks +1607.06796 Analysis of PDEs +1607.06800 Soft Condensed Matter +cond-mat/0606439 Other Condensed Matter +0705.4143 General Physics +0812.3754 Rings and Algebras +0902.1824 Rings and Algebras +0912.1918 Cryptography and Security +1102.1131 Operator Algebras +1201.5880 Symplectic Geometry +1207.0428 +1210.2987 Computational Complexity +1304.3358 Combinatorics +1309.3039 Artificial Intelligence +1312.5059 Logic +1401.6094 Theory +1401.8153 General Topology +1403.2585 Probability +1404.2910 Statistics Theory +1404.7493 Portfolio Management +1407.1636 +1407.8531 Dynamical Systems +1409.5111 Materials Science +1409.6326 Group Theory +1409.7957 +1410.0062 Metric Geometry +1410.3973 Combinatorics +1410.6054 Representation Theory +1410.8715 Mesoscale and Nanoscale Physics +1410.8800 Optics +1411.2368 Spectral Theory +1411.3465 Phenomenology +1412.1005 Numerical Analysis +1412.5308 Algebraic Geometry +1412.5975 Probability +1412.7217 Number Theory +1412.7731 +1412.7868 Learning +1501.00589 Quantum Algebra +1501.00710 Combinatorics +1501.01941 Databases +1501.04295 Differential Geometry +1502.07011 Phenomenology +1503.02300 Systems and Control +1503.09119 Materials Science +1504.00059 Mesoscale and Nanoscale Physics +1504.03674 K-Theory and Homology +1504.03795 Phenomenology +1505.05911 +1506.00961 Classical Analysis and ODEs +1506.01046 Theory +1506.03223 Differential Geometry +1506.05681 Number Theory +1506.07439 Computer Vision and Pattern Recognition +1507.01266 Physics and Society +1507.01488 +1507.03184 +1507.06121 Methodology +1508.03075 Superconductivity +1508.04406 Number Theory +1508.05532 Combinatorics +1508.06285 Quantum Gases +1509.03532 Algebraic Geometry +1509.05683 Algebraic Geometry +1509.06406 Symplectic Geometry +1510.01546 Soft Condensed Matter +1510.01890 Probability +1510.02513 Neural and Evolutionary Computing +1510.04038 Cosmology and Nongalactic Astrophysics +1510.07559 +1511.03159 Mathematical Finance +1511.05579 +1511.09409 Phenomenology +1512.01558 Astrophysics of Galaxies +1512.02902 Computer Vision and Pattern Recognition +1512.03668 Data Analysis, Statistics and Probability +1512.05088 Information Theory +1512.05278 Computer Vision and Pattern Recognition +1512.06040 Commutative Algebra +1512.06509 Analysis of PDEs +1512.07607 Applications +1601.01127 Strongly Correlated Electrons +1601.06733 Computation and Language +1602.00051 +1602.01089 Astrophysics of Galaxies +1602.01098 Astrophysics of Galaxies +1602.01215 Combinatorics +1602.03011 Trading and Market Microstructure +1602.03426 Computation and Language +1602.03861 Statistics Theory +1602.04072 +1602.06346 Machine Learning +1602.06816 Quantum Gases +1602.06922 Data Structures and Algorithms +1602.08604 +1603.00325 Combinatorics +1603.00749 Computer Science and Game Theory +1603.02804 +1603.03056 Number Theory +1603.04328 Probability +1603.04577 Data Analysis, Statistics and Probability +1603.06346 Distributed, Parallel, and Cluster Computing +1603.07991 Distributed, Parallel, and Cluster Computing +1603.08585 Information Theory +1603.09150 Plasma Physics +1604.01248 Algebraic Topology +1604.03055 Probability +1604.04318 Methodology +1604.05829 Disordered Systems and Neural Networks +1604.05909 Mesoscale and Nanoscale Physics +1604.06720 Computer Vision and Pattern Recognition +1604.06815 Machine Learning +1604.07186 Numerical Analysis +1604.07230 +1604.07487 Statistics Theory +1605.00294 Theory +1605.00551 Numerical Analysis +1605.00793 +1605.00869 +1605.01238 Numerical Analysis +1605.03986 Phenomenology +1605.04246 Soft Condensed Matter +1605.04892 Optics +1605.04901 Numerical Analysis +1605.05412 Information Theory +1605.07194 Strongly Correlated Electrons +1605.08162 Strongly Correlated Electrons +1605.08964 Systems and Control +1605.09147 +1605.09682 Populations and Evolution +1606.01133 Experiment +1606.01301 Mesoscale and Nanoscale Physics +1606.01991 +1606.02179 Experiment +1606.02732 Phenomenology +1606.03402 Artificial Intelligence +1606.03481 Theory +1606.04109 Theory +1606.04110 +1606.04116 General Physics +1606.04233 Algebraic Topology +1606.04299 Number Theory +1606.04371 Methodology +1606.04591 Superconductivity +1606.04606 High Energy Astrophysical Phenomena +1606.04910 Operator Algebras +1606.05741 Digital Libraries +1606.06065 +1606.06278 Optics +1606.06904 Phenomenology +1606.07472 Strongly Correlated Electrons +1607.00217 Atmospheric and Oceanic Physics +1607.00761 Strongly Correlated Electrons +1607.01217 Systems and Control +1607.01231 Optimization and Control +1607.01335 Distributed, Parallel, and Cluster Computing +1607.02291 Formal Languages and Automata Theory +1607.02500 Phenomenology +1607.02589 Theory +1607.02881 High Energy Astrophysical Phenomena +1607.03973 Cosmology and Nongalactic Astrophysics +1607.04570 Atomic Physics +1607.06946 Mesoscale and Nanoscale Physics +1607.07616 Phenomenology +1607.08031 Atomic Physics +1608.00553 Information Theory +1608.00647 Learning +1608.00977 Phenomenology +1608.01100 +1608.01101 Social and Information Networks +1608.01203 Materials Science +1608.01977 +1608.03331 Representation Theory +1608.04015 Soft Condensed Matter +1608.04394 Theory +1608.05315 Computer Science and Game Theory +1608.06099 Astrophysics of Galaxies +1608.06677 Applications +1608.06868 +1608.07370 +1608.07733 Phenomenology +1608.08017 Classical Analysis and ODEs +1608.08209 +1608.08453 High Energy Astrophysical Phenomena +1609.00392 High Energy Astrophysical Phenomena +1609.00450 Algebraic Geometry +1609.00889 Networking and Internet Architecture +1609.00976 Classical Analysis and ODEs +1609.01991 General Physics +1609.02119 Number Theory +1609.03290 Analysis of PDEs +1609.03720 Strongly Correlated Electrons +1609.04019 Instrumentation and Detectors +1609.04489 Theory +1609.04577 +1609.05004 Soft Condensed Matter +1609.05036 Probability +1609.05318 +1609.05495 +1609.05664 Solar and Stellar Astrophysics +1609.05825 Theory +1609.05830 Software Engineering +1609.06021 Biomolecules +1609.06149 Materials Science +1609.06265 Artificial Intelligence +1609.06309 Astrophysics of Galaxies +1609.06315 Solar and Stellar Astrophysics +1609.06320 Phenomenology +1609.06324 Earth and Planetary Astrophysics +1609.06326 Phenomenology +1609.06327 Computational Geometry +1609.06330 Numerical Analysis +1609.06331 Optimization and Control +1609.06332 High Energy Astrophysical Phenomena +1609.06335 Molecular Networks +1609.06341 Computer Vision and Pattern Recognition +1609.06342 Number Theory +1609.06343 Differential Geometry +1609.06345 Cryptography and Security +1609.06346 Combinatorics +1609.06347 Chaotic Dynamics +1609.06349 Rings and Algebras +1609.06355 Computational Complexity +1609.06372 Commutative Algebra +1609.06373 +1609.06375 Artificial Intelligence +1609.06377 Learning +1609.06378 Data Structures and Algorithms +1609.06379 Logic in Computer Science +1609.06380 Computation and Language +1609.06382 Software Engineering +1609.06383 +1609.06385 Machine Learning +1609.06386 +1609.06389 +1609.06390 Machine Learning +1609.06393 Experiment +1609.06394 Analysis of PDEs +1609.06396 Commutative Algebra +1609.06397 Superconductivity +1609.06401 Pattern Formation and Solitons +1609.06404 Sound +1609.06406 Astrophysics of Galaxies +1609.06407 Mesoscale and Nanoscale Physics +1609.06411 Mesoscale and Nanoscale Physics +1609.06412 Phenomenology +1609.06414 Number Theory +1609.06415 Soft Condensed Matter +1609.06418 Statistics Theory +1609.06420 Information Theory +1609.06421 Statistics Theory +1609.06424 Populations and Evolution +1609.06430 Distributed, Parallel, and Cluster Computing +1609.06431 Data Analysis, Statistics and Probability +1609.06432 Information Theory +1609.06433 Combinatorics +1609.06434 Computer Vision and Pattern Recognition +1609.06435 Robotics +1609.06436 Algebraic Geometry +1609.06438 Computer Science and Game Theory +1609.06441 Computer Vision and Pattern Recognition +1609.06442 Multimedia +1609.06443 Optics +1609.06447 Cryptography and Security +1609.06450 Solar and Stellar Astrophysics +1609.06451 Materials Science +1609.06454 +1609.06455 Solar and Stellar Astrophysics +1609.06456 Computer Vision and Pattern Recognition +1609.06457 Social and Information Networks +1609.06459 Instrumentation and Detectors +1609.06462 Neurons and Cognition +1609.06463 Physics and Society +1609.06464 Materials Science +1609.06465 Methodology +1609.06467 +1609.06468 +1609.06471 Dynamical Systems +1609.06475 Quantum Algebra +1609.06477 +1609.06478 Algebraic Geometry +1609.06479 Human-Computer Interaction +1609.06480 Genomics +1609.06484 Probability +1609.06485 Mesoscale and Nanoscale Physics +1609.06486 Soft Condensed Matter +1609.06490 Computation and Language +1609.06492 Computer Vision and Pattern Recognition +1609.06493 Rings and Algebras +1609.06494 Dynamical Systems +1609.06495 Theory +1609.06496 +1609.06498 Analysis of PDEs +1609.06500 Computer Vision and Pattern Recognition +1609.06507 Spectral Theory +1609.06508 Computational Complexity +1609.06509 Functional Analysis +1609.06510 Instrumentation and Methods for Astrophysics +1609.06517 Mesoscale and Nanoscale Physics +1609.06518 Spectral Theory +1609.06520 Social and Information Networks +1609.06521 Materials Science +1609.06522 Discrete Mathematics +1609.06523 Materials Science +1609.06526 Databases +1609.06527 Analysis of PDEs +1609.06530 Computation and Language +1609.06531 Number Theory +1609.06532 Digital Libraries +1609.06533 Machine Learning +1609.06534 Mesoscale and Nanoscale Physics +1609.06535 Theory +1609.06536 Computer Vision and Pattern Recognition +1609.06537 Mesoscale and Nanoscale Physics +1609.06542 Materials Science +1609.06545 Statistics Theory +1609.06547 Tissues and Organs +1609.06552 Metric Geometry +1609.06553 Software Engineering +1609.06556 Biomolecules +1609.06558 +1609.06559 Fluid Dynamics +1609.06560 Neural and Evolutionary Computing +1609.06561 Statistics Theory +1609.06563 Number Theory +1609.06564 Other Condensed Matter +1609.06565 Combinatorics +1609.06566 Mesoscale and Nanoscale Physics +1609.06568 Information Retrieval +1609.06569 General Physics +1609.06570 Learning +1609.06571 Theory +1609.06572 +1609.06574 General Physics +1609.06576 Optimization and Control +1609.06577 Computation and Language +1609.06578 Computation and Language +1609.06579 Differential Geometry +1609.06580 Theory +1609.06581 Classical Analysis and ODEs +1609.06583 Computer Vision and Pattern Recognition +1609.06584 +1609.06585 Computer Vision and Pattern Recognition +1609.06588 Number Theory +1609.06589 Probability +1609.06590 Instrumentation and Methods for Astrophysics +1609.06593 Materials Science +1609.06594 Phenomenology +1609.06595 Solar and Stellar Astrophysics +1609.06597 +1609.06598 Cosmology and Nongalactic Astrophysics +1609.06599 Category Theory +1609.06600 Numerical Analysis +1609.06601 Rings and Algebras +1609.06604 Medical Physics +1609.06605 Geometric Topology +1609.06606 Algebraic Topology +1609.06607 Quantum Gases +1609.06610 Instrumentation and Methods for Astrophysics +1609.06612 Multimedia +1609.06613 Representation Theory +1609.06619 Classical Analysis and ODEs +1609.06620 Analysis of PDEs +1609.06621 Number Theory +1609.06623 Phenomenology +1609.06625 General Physics +1609.06626 Probability +1609.06627 Probability +1609.06628 +1609.06633 Chemical Physics +1609.06634 Biomolecules +1609.06636 +1609.06637 Algebraic Topology +1609.06639 Earth and Planetary Astrophysics +1609.06641 Data Structures and Algorithms +1609.06643 +1609.06644 Complex Variables +1609.06646 Combinatorics +1609.06647 Computer Vision and Pattern Recognition +1609.06649 Computation and Language +1609.06651 Probability +1609.06652 Information Theory +1609.06653 Computer Vision and Pattern Recognition +1609.06654 Computer Science and Game Theory +1609.06656 Instrumentation and Detectors +1609.06657 Computer Vision and Pattern Recognition +1609.06658 Analysis of PDEs +1609.06659 Phenomenology +1609.06662 Systems and Control +1609.06663 Representation Theory +1609.06664 Cryptography and Security +1609.06667 +1609.06668 Computer Vision and Pattern Recognition +1609.06669 Computer Vision and Pattern Recognition +1609.06670 Distributed, Parallel, and Cluster Computing +1609.06672 Superconductivity +1609.06673 Geophysics +1609.06675 Statistics Theory +1609.06676 Cryptography and Security +1609.06677 Quantum Algebra +1609.06678 Networking and Internet Architecture +1609.06681 Instrumentation and Methods for Astrophysics +1609.06683 Analysis of PDEs +1609.06686 Computation and Language +1609.06690 K-Theory and Homology +1609.06691 +1609.06694 Computer Vision and Pattern Recognition +1609.06696 Number Theory +1609.06697 Methodology +1609.06698 Geometric Topology +1609.06699 Computational Physics +1609.06700 Systems and Control +1609.06701 Probability +1609.06707 Probability +hep-th/0612129 Theory +0707.1897 General Finance +0710.1307 General Finance +0803.0292 +0904.1034 +0904.1408 Commutative Algebra +0908.3818 +1003.4862 +1106.1363 Cosmology and Nongalactic Astrophysics +1205.2012 Neurons and Cognition +1206.4519 +1304.5633 Information Theory +1304.6950 Methodology +1304.7461 Optimization and Control +1309.3595 Number Theory +1310.5628 +1311.0647 +1311.7318 +1401.5867 Differential Geometry +1402.5926 +1404.1834 Cosmology and Nongalactic Astrophysics +1404.7764 Combinatorics +1406.5780 +1410.3118 Optimization and Control +1410.3804 Dynamical Systems +1410.6040 Probability +1411.5777 Optics +1412.7567 +1501.01649 Probability +1501.05176 Statistical Finance +1501.05873 Probability +1502.07180 Probability +1503.02274 Differential Geometry +1503.04003 Optimization and Control +1503.06143 Analysis of PDEs +1503.07686 Statistics Theory +1504.01068 Number Theory +1504.05296 Operator Algebras +1505.01735 Combinatorics +1505.01796 Probability +1505.07600 Probability +1506.06723 Spectral Theory +1506.07969 Probability +1507.00596 Numerical Analysis +1507.01351 +1507.01953 Cosmology and Nongalactic Astrophysics +1507.04499 Data Structures and Algorithms +1507.07402 Data Structures and Algorithms +1508.00676 Number Theory +1508.00723 Strongly Correlated Electrons +1508.04664 Analysis of PDEs +1508.06315 Computational Physics +1508.07379 +1509.00950 Differential Geometry +1509.03008 Combinatorics +1509.07669 Computational Geometry +1509.07738 Chaotic Dynamics +1509.09177 +1510.00605 Numerical Analysis +1510.00872 Number Theory +1510.03675 Combinatorics +1510.04547 Functional Analysis +1510.06728 +1510.06797 Optimization and Control +1511.07278 +1511.08264 Numerical Analysis +1511.08378 Superconductivity +1512.02348 Number Theory +1512.02877 +1512.06054 Computational Physics +1601.03805 Learning +1601.05389 Combinatorics +1601.05840 Algebraic Geometry +1601.07937 Numerical Analysis +1602.00594 Optimization and Control +1602.01594 +1602.01686 Optimization and Control +1602.02700 Symplectic Geometry +1602.05494 Combinatorics +1603.04339 Computational Physics +1603.05969 Combinatorics +1603.07224 Optics +1603.09707 Information Theory +1604.00075 +1604.00481 Logic +1604.01655 Computer Vision and Pattern Recognition +1604.02622 Number Theory +1604.03898 Analysis of PDEs +1604.05535 Artificial Intelligence +1604.07671 Information Theory +1604.08264 +1605.01559 Statistics Theory +1605.03435 Cosmology and Nongalactic Astrophysics +1605.03872 Applications +1605.04235 Number Theory +1605.06678 Software Engineering +1606.01041 Theory +1606.01274 Formal Languages and Automata Theory +1606.01840 Information Theory +1606.04153 Physics and Society +1606.04249 Soft Condensed Matter +1606.06727 +1606.07774 +1606.09207 Cosmology and Nongalactic Astrophysics +1607.00841 Astrophysics of Galaxies +1607.04211 Number Theory +1607.05621 Experiment +1607.06956 Analysis of PDEs +1607.06972 Computer Vision and Pattern Recognition +1607.07149 +1607.07807 Theory +1607.08574 Analysis of PDEs +1608.00463 Phenomenology +1608.01867 Algebraic Topology +1608.02835 Fluid Dynamics +1608.03496 Chaotic Dynamics +1608.05615 +1608.07037 Materials Science +1608.07805 Solar and Stellar Astrophysics +1608.07819 Mesoscale and Nanoscale Physics +1608.08971 +1609.01553 Methodology +1609.02158 Theory +1609.02443 Computational Geometry +1609.03438 Logic in Computer Science +1609.03677 Computer Vision and Pattern Recognition +1609.03954 Optimization and Control +1609.05473 Learning +1609.06087 Strongly Correlated Electrons +1609.06917 Optimization and Control +1609.07730 Computation and Language +1609.07992 +1609.08242 +1609.09311 History and Philosophy of Physics +1609.09402 Phenomenology +1610.04507 +1610.04532 Phenomenology +1610.04591 Logic in Computer Science +1610.06012 Probability +1610.06177 Mesoscale and Nanoscale Physics +1610.06849 Classical Analysis and ODEs +1610.07399 Statistical Mechanics +1610.07681 Commutative Algebra +1610.07863 Optimization and Control +1610.08678 +1611.00914 +1611.00953 Applications +1611.01231 Functional Analysis +1611.01282 +1611.01316 Phenomenology +1611.02964 Fluid Dynamics +1611.03029 Numerical Analysis +1611.04570 Theory +1611.05775 Combinatorics +1611.06254 Mesoscale and Nanoscale Physics +1611.06261 Functional Analysis +1611.06375 Algebraic Geometry +1611.06826 Medical Physics +1611.07587 Mesoscale and Nanoscale Physics +1611.09008 Statistics Theory +1611.10066 Phenomenology +1611.10303 Representation Theory +1612.00141 Theory +1612.00268 Optics +1612.00377 Computation and Language +1612.00573 +1612.00681 Probability +1612.00836 Theory +1612.01160 Computer Vision and Pattern Recognition +1612.01285 Numerical Analysis +1612.01344 Optimization and Control +1612.01507 Functional Analysis +1612.01686 Software Engineering +1612.02024 Statistics Theory +1612.02086 +1612.02120 Quantitative Methods +1612.02171 Number Theory +1612.02288 Computational Physics +1612.02289 Classical Physics +1612.02334 Information Theory +1612.02418 High Energy Astrophysical Phenomena +1612.02532 High Energy Astrophysical Phenomena +1612.02690 +1612.02798 +1612.02809 Solar and Stellar Astrophysics +1612.02817 Astrophysics of Galaxies +1612.02824 Solar and Stellar Astrophysics +1612.02826 High Energy Astrophysical Phenomena +1612.02828 Instrumentation and Methods for Astrophysics +1612.02829 Cosmology and Nongalactic Astrophysics +1612.02830 +1612.02831 Strongly Correlated Electrons +1612.02832 Astrophysics of Galaxies +1612.02833 Cosmology and Nongalactic Astrophysics +1612.02836 Cosmology and Nongalactic Astrophysics +1612.02837 Quantum Gases +1612.02838 Cosmology and Nongalactic Astrophysics +1612.02839 Superconductivity +1612.02843 Combinatorics +1612.02844 Computer Vision and Pattern Recognition +1612.02845 Number Theory +1612.02847 Number Theory +1612.02848 Methodology +1612.02849 Logic +1612.02852 Analysis of PDEs +1612.02853 +1612.02855 +1612.02858 Instrumentation and Detectors +1612.02859 Computer Vision and Pattern Recognition +1612.02860 Algebraic Topology +1612.02862 Networking and Internet Architecture +1612.02864 Quantum Algebra +1612.02865 Earth and Planetary Astrophysics +1612.02866 Instrumentation and Methods for Astrophysics +1612.02870 Earth and Planetary Astrophysics +1612.02871 Mesoscale and Nanoscale Physics +1612.02873 Dynamical Systems +1612.02876 Number Theory +1612.02878 Rings and Algebras +1612.02880 Computer Vision and Pattern Recognition +1612.02883 Mesoscale and Nanoscale Physics +1612.02884 Combinatorics +1612.02885 Category Theory +1612.02886 Cryptography and Security +1612.02888 Classical Analysis and ODEs +1612.02889 Computer Vision and Pattern Recognition +1612.02890 Materials Science +1612.02892 Information Theory +1612.02893 Learning +1612.02894 Theory +1612.02896 Representation Theory +1612.02897 Learning +1612.02898 Emerging Technologies +1612.02899 +1612.02902 Networking and Internet Architecture +1612.02903 Computer Vision and Pattern Recognition +1612.02904 Artificial Intelligence +1612.02905 Computational Geometry +1612.02906 Commutative Algebra +1612.02907 Materials Science +1612.02908 Social and Information Networks +1612.02909 Theory +1612.02910 Representation Theory +1612.02912 Computer Science and Game Theory +1612.02914 Data Structures and Algorithms +1612.02916 Cryptography and Security +1612.02919 Rings and Algebras +1612.02921 Dynamical Systems +1612.02924 Phenomenology +1612.02925 Information Theory +1612.02926 Networking and Internet Architecture +1612.02927 Networking and Internet Architecture +1612.02929 Strongly Correlated Electrons +1612.02930 Quantum Gases +1612.02932 Dynamical Systems +1612.02933 Optimization and Control +1612.02934 Materials Science +1612.02937 Analysis of PDEs +1612.02938 Number Theory +1612.02940 Soft Condensed Matter +1612.02946 Symplectic Geometry +1612.02948 Computational Complexity +1612.02951 +1612.02954 Information Theory +1612.02955 Lattice +1612.02956 Accelerator Physics +1612.02957 Information Theory +1612.02959 History and Philosophy of Physics +1612.02960 Representation Theory +1612.02961 Analysis of PDEs +1612.02962 Data Structures and Algorithms +1612.02963 +1612.02967 Computational Geometry +1612.02970 Solar and Stellar Astrophysics +1612.02973 Strongly Correlated Electrons +1612.02974 Metric Geometry +1612.02975 Emerging Technologies +1612.02976 Chemical Physics +1612.02977 Strongly Correlated Electrons +1612.02978 Probability +1612.02979 Distributed, Parallel, and Cluster Computing +1612.02980 Chemical Physics +1612.02981 Operator Algebras +1612.02982 Logic +1612.02984 Analysis of PDEs +1612.02985 Risk Management +1612.02986 Combinatorics +1612.02988 Combinatorics +1612.02989 Statistics Theory +1612.02990 Data Structures and Algorithms +1612.02992 Materials Science +1612.02993 Solar and Stellar Astrophysics +1612.02994 Physics and Society +1612.02995 Solar and Stellar Astrophysics +1612.02996 Quantum Gases +1612.02997 Experiment +1612.02998 Mesoscale and Nanoscale Physics +1612.03000 Networking and Internet Architecture +1612.03001 Chemical Physics +1612.03002 Theory +1612.03003 History and Philosophy of Physics +1612.03004 Mesoscale and Nanoscale Physics +1612.03005 Cryptography and Security +1612.03006 Materials Science +1612.03007 Analysis of PDEs +1612.03011 Strongly Correlated Electrons +1612.03012 Classical Analysis and ODEs +1612.03015 Software Engineering +1612.03016 Experiment +1612.03017 Data Structures and Algorithms +1612.03020 Mesoscale and Nanoscale Physics +1612.03021 Rings and Algebras +1612.03022 Dynamical Systems +1612.03023 Theory +1612.03027 Differential Geometry +1612.03028 Classical Analysis and ODEs +1612.03029 Probability +1612.03031 Pricing of Securities +1612.03032 Logic in Computer Science +1612.03035 Fluid Dynamics +1612.03037 Cosmology and Nongalactic Astrophysics +1612.03038 Quantum Gases +1612.03039 Soft Condensed Matter +1612.03041 +1612.03042 Networking and Internet Architecture +1612.03043 Probability +1612.03046 General Physics +1612.03048 Mesoscale and Nanoscale Physics +1612.03049 Mesoscale and Nanoscale Physics +1612.03050 High Energy Astrophysical Phenomena +1612.03052 Computer Vision and Pattern Recognition +1612.03054 Methodology +1612.03055 Artificial Intelligence +1612.03056 +1612.03057 Statistical Mechanics +1612.03058 High Energy Astrophysical Phenomena +1612.03059 Group Theory +1612.03060 Strongly Correlated Electrons +1612.03061 Probability +1612.03062 History and Philosophy of Physics +1612.03063 +1612.03064 Astrophysics of Galaxies +1612.03066 Risk Management +1612.03069 Theory +1612.03071 Information Theory +1612.03073 Applications +1612.03076 Quantum Gases +1612.03080 Machine Learning +1612.03081 Plasma Physics +1612.03082 Systems and Control +1612.03083 Quantum Algebra +1612.03085 Physics and Society +1612.03089 High Energy Astrophysical Phenomena +1612.03090 +1612.03092 Solar and Stellar Astrophysics +1612.03094 Computer Vision and Pattern Recognition +1612.03095 Number Theory +1612.03096 +1612.03097 Data Structures and Algorithms +1612.03098 Statistical Mechanics +1612.03101 Cryptography and Security +1612.03102 Algebraic Geometry +1612.03103 Software Engineering +1612.03105 Exactly Solvable and Integrable Systems +1612.03108 Information Theory +1612.03109 Software Engineering +1612.03110 Phenomenology +1612.03111 Phenomenology +1612.03112 Combinatorics +1612.03114 +1612.03117 Learning +1612.03118 Representation Theory +1612.03119 Differential Geometry +1612.03121 Cosmology and Nongalactic Astrophysics +1612.03122 Statistical Mechanics +1612.03123 Soft Condensed Matter +1612.03124 Numerical Analysis +1612.03125 Populations and Evolution +1612.03128 Analysis of PDEs +1612.03129 Computer Vision and Pattern Recognition +1612.03130 Classical Physics +1612.03132 Disordered Systems and Neural Networks +1612.03134 Subcellular Processes +1612.03135 Solar and Stellar Astrophysics +1612.03136 Number Theory +1612.03137 Phenomenology +1612.03138 Representation Theory +1612.03140 Logic in Computer Science +1612.03141 Algebraic Geometry +1612.03142 Computer Vision and Pattern Recognition +1612.03143 Optics +1612.03144 Computer Vision and Pattern Recognition +1612.03145 Astrophysics of Galaxies +1612.03146 Biological Physics +1612.03148 Computational Complexity +1612.03149 Quantum Gases +1612.03150 Computer Science and Game Theory +1612.03152 Software Engineering +1612.03153 Computer Vision and Pattern Recognition +1612.03154 Instrumentation and Detectors +1612.03155 Logic in Computer Science +1612.03156 Data Structures and Algorithms +1612.03158 Theory +1612.03159 Mesoscale and Nanoscale Physics +1612.03160 High Energy Astrophysical Phenomena +1612.03161 Computer Science and Game Theory +1612.03164 Learning +physics/0609088 Physics and Society +physics/0609245 Physics and Society +quant-ph/0510238 +quant-ph/0604170 +quant-ph/0606045 +0810.2834 Number Theory +1008.2486 Strongly Correlated Electrons +1103.1433 Logic in Computer Science +1112.5014 Group Theory +1205.2572 Combinatorics +1207.5833 +1208.3942 Formal Languages and Automata Theory +1210.6238 Statistical Mechanics +1212.2333 Probability +1301.5004 Combinatorics +1302.1244 Combinatorics +1302.5547 Soft Condensed Matter +1302.6712 +1305.6597 Number Theory +1308.6531 Representation Theory +1309.2119 Superconductivity +1309.3590 Statistical Mechanics +1310.1772 Number Theory +1310.2555 Algebraic Geometry +1311.6370 Optimization and Control +1312.6132 Strongly Correlated Electrons +1401.6847 Number Theory +1402.3694 Metric Geometry +1403.3363 Pattern Formation and Solitons +1405.0248 Metric Geometry +1405.1054 Phenomenology +1405.1335 Probability +1405.3663 Theory +1405.4378 Networking and Internet Architecture +1405.5576 Machine Learning +1406.1065 Information Retrieval +1406.2608 Dynamical Systems +1406.6690 High Energy Astrophysical Phenomena +1407.0105 Algebraic Geometry +1407.2926 +1407.7766 +1408.0265 Functional Analysis +1408.2484 Physics and Society +1409.2537 +1410.0399 +1410.3713 Rings and Algebras +1410.8083 Category Theory +1411.2296 +1411.7991 Mathematical Finance +1412.1744 Phenomenology +1412.2623 +1412.4232 +1412.6349 Combinatorics +1412.6970 Geometric Topology +1412.8457 Cosmology and Nongalactic Astrophysics +1502.00835 Combinatorics +1502.05584 Probability +1502.06026 Analysis of PDEs +1503.00935 Algebraic Geometry +1503.01824 Learning +1503.02955 Networking and Internet Architecture +1503.05124 Logic in Computer Science +1503.06390 Operator Algebras +1503.06767 Quantum Gases +1503.07281 Number Theory +1503.07500 Algebraic Geometry +1503.08517 Operator Algebras +1504.01564 Functional Analysis +1504.03693 Astrophysics of Galaxies +1504.05739 Logic in Computer Science +1504.08327 Methodology +1505.00148 Algebraic Geometry +1505.00433 Operator Algebras +1505.00525 Soft Condensed Matter +1505.02356 Theory +1505.07292 +1506.01102 High Energy Astrophysical Phenomena +1506.02857 Optimization and Control +1506.08303 +1507.03555 Optics +1507.04861 Analysis of PDEs +1507.06290 Rings and Algebras +1507.07586 Cosmology and Nongalactic Astrophysics +1507.08174 Representation Theory +1507.08486 Quantum Algebra +1507.08972 Cosmology and Nongalactic Astrophysics +1508.02330 Phenomenology +1508.02498 Methodology +1508.02560 Algebraic Geometry +1508.04275 Instrumentation and Methods for Astrophysics +1508.07843 Materials Science +1508.07981 Phenomenology +1509.01537 Biological Physics +1509.02203 Algebraic Geometry +1509.03766 High Energy Astrophysical Phenomena +1509.04066 +1509.05840 Optics +1509.05992 Strongly Correlated Electrons +1509.06258 Disordered Systems and Neural Networks +1509.06448 Statistical Mechanics +1509.07641 Combinatorics +1509.08150 Emerging Technologies +1509.08572 Systems and Control +1510.02044 Differential Geometry +1510.02536 Cosmology and Nongalactic Astrophysics +1510.02664 Experiment +1510.03251 +1510.03885 High Energy Astrophysical Phenomena +1510.04803 Chaotic Dynamics +1510.04807 Statistical Mechanics +1510.05702 Statistical Mechanics +1510.06481 Numerical Analysis +1510.08388 +1510.08942 +1510.08978 Quantum Gases +1511.00234 +1511.01197 Algebraic Geometry +1511.01630 Group Theory +1511.02692 Representation Theory +1511.04518 +1511.04781 Optics +1511.06219 Computation and Language +1511.06396 Computation and Language +1511.06582 Theory +1511.07428 Statistics Theory +1512.01057 Statistical Mechanics +1512.01530 Experiment +1512.02441 Instrumentation and Methods for Astrophysics +1512.02601 Mesoscale and Nanoscale Physics +1512.02907 Soft Condensed Matter +1512.05481 Geometric Topology +1512.08096 Probability +1512.08184 Phenomenology +1512.08507 Phenomenology +1512.08649 Instrumentation and Methods for Astrophysics +1601.00551 Instrumentation and Methods for Astrophysics +1601.01035 +1601.03249 Optimization and Control +1601.03412 Tissues and Organs +1601.04081 General Topology +1601.04890 Social and Information Networks +1601.05962 Data Structures and Algorithms +1602.01113 Strongly Correlated Electrons +1602.01398 Artificial Intelligence +1602.01871 Databases +1602.03998 Mesoscale and Nanoscale Physics +1602.04323 Plasma Physics +1602.05509 Space Physics +1602.05701 Differential Geometry +1602.05837 Data Structures and Algorithms +1602.05931 Computer Vision and Pattern Recognition +1602.06479 Algebraic Geometry +1602.06613 Commutative Algebra +1602.06681 Instrumentation and Methods for Astrophysics +1602.07141 Representation Theory +1602.07503 Geometric Topology +1602.07730 Combinatorics +1602.08123 Strongly Correlated Electrons +1602.08179 Logic +1602.08181 Statistics Theory +1602.08709 +1603.00359 Optimization and Control +1603.00499 Computational Physics +1603.00548 Geometric Topology +1603.00551 Materials Science +1603.00871 Popular Physics +1603.00875 Earth and Planetary Astrophysics +1603.00885 Combinatorics +1603.00892 Computation and Language +1603.00895 Optimization and Control +1603.00896 Applications +1603.00902 Atmospheric and Oceanic Physics +1603.00904 Neurons and Cognition +1603.00906 +1603.00908 Mesoscale and Nanoscale Physics +1603.00909 Instrumentation and Detectors +1603.00910 Physics and Society +1603.00912 Computer Vision and Pattern Recognition +1603.00913 Cryptography and Security +1603.00916 +1603.00920 Probability +1603.00921 Methodology +1603.00922 Materials Science +1603.00923 Combinatorics +1603.00924 Theory +1603.00926 Group Theory +1603.00928 Computational Complexity +1603.00932 General Topology +1603.00935 +1603.00944 Computer Vision and Pattern Recognition +1603.00949 Representation Theory +1603.00950 Earth and Planetary Astrophysics +1603.00951 +1603.00953 Representation Theory +1603.00955 Systems and Control +1603.00956 Number Theory +1603.00958 Biomolecules +1603.00963 Data Structures and Algorithms +1603.00966 Symplectic Geometry +1603.00973 Data Structures and Algorithms +1603.00974 Applications +1603.00975 Logic in Computer Science +1603.00976 Logic in Computer Science +1603.00978 Logic in Computer Science +1603.00979 Logic in Computer Science +1603.00980 Robotics +1603.00985 Optics +1603.00986 Differential Geometry +1603.00990 Differential Geometry +1603.00991 Economics +1603.00993 Computer Vision and Pattern Recognition +1603.00995 Solar and Stellar Astrophysics +1603.00997 Lattice +1603.01005 Rings and Algebras +1603.01010 Algebraic Topology +1603.01013 Number Theory +1603.01016 Combinatorics +1603.01018 Number Theory +1603.01022 Probability +1603.01029 Machine Learning +1603.01030 Classical Analysis and ODEs +1603.01033 Rings and Algebras +1603.01035 Differential Geometry +1603.01039 Combinatorics +1603.01041 Risk Management +1603.01043 Combinatorics +1603.01046 Data Analysis, Statistics and Probability +1603.01047 Classical Analysis and ODEs +1603.01049 +1603.01055 Computer Science and Game Theory +1603.01056 Computer Vision and Pattern Recognition +1603.01058 Combinatorics +1603.01059 Dynamical Systems +1603.01060 Data Structures and Algorithms +1603.01067 Learning +1603.01068 Computer Vision and Pattern Recognition +1603.01071 Statistical Mechanics +1603.01075 Classical Analysis and ODEs +1603.01077 Neurons and Cognition +1603.01078 Commutative Algebra +1603.01080 Information Theory +1603.01081 Number Theory +1603.01087 Atomic Physics +1603.01091 Complex Variables +1603.01094 Metric Geometry +1603.01095 Analysis of PDEs +1603.01098 +1603.01100 Analysis of PDEs +1603.01102 Databases +1603.01104 Superconductivity +1603.01106 Optics +1603.01107 Formal Languages and Automata Theory +1603.01109 Solar and Stellar Astrophysics +1603.01112 Distributed, Parallel, and Cluster Computing +1603.01113 Databases +1603.01114 +1603.01118 Phenomenology +1603.01120 Complex Variables +1603.01133 Functional Analysis +1603.01134 Applications +1603.01136 Computation +1603.01140 Machine Learning +1603.01145 Theory +1603.01149 Theory +1603.01150 Group Theory +1603.01152 Number Theory +1603.01155 Chaotic Dynamics +1603.01156 Analysis of PDEs +1603.01157 Strongly Correlated Electrons +1603.01161 Instrumentation and Methods for Astrophysics +1603.01162 +1603.01167 Numerical Analysis +1603.01168 Geophysics +1603.01171 Quantum Algebra +1603.01175 Number Theory +1603.01179 Discrete Mathematics +1603.01180 Operator Algebras +1603.01181 Data Structures and Algorithms +1603.01183 Dynamical Systems +1603.01184 Numerical Analysis +1603.01187 Hardware Architecture +1603.01193 Analysis of PDEs +1603.01194 Probability +1603.01196 +1603.01198 Algebraic Geometry +1603.01202 Systems and Control +1603.01203 Networking and Internet Architecture +1603.01204 Physics and Society +1603.01207 Digital Libraries +1603.01209 Geometric Topology +1603.01210 Phenomenology +1603.01213 Information Theory +1603.01214 Statistics Theory +1603.01215 Combinatorics +1603.01222 Rings and Algebras +1603.01228 Artificial Intelligence +1603.01230 Classical Analysis and ODEs +1603.01231 Computational Finance +1603.01232 Computation and Language +1603.01240 Analysis of PDEs +1603.01244 Cryptography and Security +1603.01248 Atomic Physics +1603.01250 Computer Vision and Pattern Recognition +1603.01251 Instrumentation and Detectors +1603.01257 Computer Science and Game Theory +astro-ph/0512565 +astro-ph/0512568 +cond-mat/0701067 Strongly Correlated Electrons +0802.2839 Information Theory +0805.1000 Spectral Theory +0806.4275 +0905.4774 +0906.2785 Cosmology and Nongalactic Astrophysics +0912.4605 Cosmology and Nongalactic Astrophysics +1009.1981 Functional Analysis +1103.6155 +1104.0935 Cosmology and Nongalactic Astrophysics +1104.5543 Geometric Topology +1108.3717 Cosmology and Nongalactic Astrophysics +1109.1691 Logic in Computer Science +1204.0088 Combinatorics +1206.1049 Cosmology and Nongalactic Astrophysics +1208.5507 Algebraic Geometry +1209.1726 Quantum Algebra +1210.4394 +1211.0418 Computation and Language +1212.3651 Dynamical Systems +1302.0288 Cosmology and Nongalactic Astrophysics +1308.4893 Metric Geometry +1310.1278 Formal Languages and Automata Theory +1310.6275 Logic +1310.7769 Social and Information Networks +1401.6678 Algebraic Geometry +1403.0572 Classical Physics +1403.4861 Data Structures and Algorithms +1406.2400 Computation and Language +1406.3334 Statistics Theory +1406.6844 Computation and Language +1408.2371 Experiment +1409.2545 Rings and Algebras +1409.5684 Mesoscale and Nanoscale Physics +1409.7007 Number Theory +1410.3056 Analysis of PDEs +1410.4624 Information Theory +1410.7453 Pricing of Securities +1411.0583 Numerical Analysis +1411.3951 Analysis of PDEs +1411.5275 Combinatorics +1411.5721 Theory +1411.6346 Number Theory +1411.7573 Symplectic Geometry +1412.5123 Theory +1501.03682 Numerical Analysis +1502.04141 Algebraic Topology +1502.04579 Discrete Mathematics +1502.04706 +1502.05806 Numerical Analysis +1503.02353 Distributed, Parallel, and Cluster Computing +1503.06326 Systems and Control +1503.06797 High Energy Astrophysical Phenomena +1503.06809 Systems and Control +1504.00418 Group Theory +1504.01899 Dynamical Systems +1504.04192 Logic +1504.06208 Superconductivity +1504.06870 Computation +1504.08037 Materials Science +1505.02213 Methodology +1505.02226 Logic +1506.00544 Statistical Mechanics +1506.02528 Quantum Gases +1506.02579 Analysis of PDEs +1506.04854 Methodology +1506.05734 Spectral Theory +1506.06003 Mesoscale and Nanoscale Physics +1507.00267 Combinatorics +1507.02102 Superconductivity +1507.04301 Astrophysics of Galaxies +1507.04734 Optimization and Control +1507.05290 Graphics +1507.06268 Probability +1508.02786 Biological Physics +1508.04006 Physics and Society +1508.05343 Theory +1508.06219 Fluid Dynamics +1508.06508 +1508.06518 +1509.02102 Analysis of PDEs +1509.02109 Strongly Correlated Electrons +1509.03267 +1509.03541 Materials Science +1509.05281 Computation and Language +1509.07391 Spectral Theory +1510.00101 +1510.00699 Theory +1510.01580 +1510.01768 Optics +1510.03994 Logic in Computer Science +1510.04710 Probability +1510.07885 Dynamical Systems +1510.08241 Functional Analysis +1511.00081 Instrumentation and Detectors +1511.00267 +1511.01590 High Energy Astrophysical Phenomena +1511.01693 Statistical Mechanics +1511.02008 Statistical Mechanics +1511.03730 Computational Complexity +1511.03924 Computation and Language +1511.04265 Number Theory +1511.05927 Cosmology and Nongalactic Astrophysics +1511.06591 Computation and Language +1511.07234 +1511.09171 Analysis of PDEs +1512.00004 Solar and Stellar Astrophysics +1512.00471 Phenomenology +1512.04085 Materials Science +1512.04839 Combinatorics +1512.04946 +1512.05079 Quantum Gases +1512.05860 +1512.07082 Methodology +1512.08025 +1512.08737 Operator Algebras +1601.02880 Combinatorics +1601.07466 Number Theory +1602.00502 Phenomenology +1602.00880 Superconductivity +1602.02520 Theory +1602.04418 Machine Learning +1602.04487 Information Theory +1602.06347 Artificial Intelligence +1603.00381 Atomic Physics +1603.00819 Chaotic Dynamics +1603.01012 +1603.01269 Theory +1603.02432 Soft Condensed Matter +1603.03048 Phenomenology +1603.03567 Mesoscale and Nanoscale Physics +1603.03655 +1603.04252 Statistical Mechanics +1603.04342 Solar and Stellar Astrophysics +1603.06256 Astrophysics of Galaxies +1603.06495 Strongly Correlated Electrons +1603.06618 Strongly Correlated Electrons +1603.07486 Quantum Gases +1603.07719 Phenomenology +1603.07979 Phenomenology +1603.09003 Materials Science +1603.09507 Quantum Gases +1604.00169 Machine Learning +1604.00886 Cosmology and Nongalactic Astrophysics +1604.01100 Optics +1604.01455 Other Statistics +1604.01644 Physics and Society +1604.01689 Phenomenology +1604.02739 Optics +1604.02823 Statistical Mechanics +1604.03429 Soft Condensed Matter +1604.03553 Strongly Correlated Electrons +1604.04520 Experiment +1604.05033 Mesoscale and Nanoscale Physics +1604.06912 Rings and Algebras +1604.06938 Populations and Evolution +1604.07244 Adaptation and Self-Organizing Systems +1604.08064 Theory +1604.08417 Algebraic Geometry +1605.00499 Methodology +1605.00826 Physics and Society +1605.01153 Logic in Computer Science +1605.01372 Physics Education +1605.01446 Theory +1605.01766 Group Theory +1605.01959 Mesoscale and Nanoscale Physics +1605.02401 Sound +1605.03003 +1605.04121 Analysis of PDEs +1605.05455 +1605.05499 Combinatorics +1605.06078 Theory +1605.07375 +1605.08840 Computer Science and Game Theory +1605.08929 Number Theory +1606.00336 Theory +1606.00553 Classical Analysis and ODEs +1606.02410 Rings and Algebras +1606.02907 Statistical Mechanics +1606.03251 Analysis of PDEs +1606.03276 Computers and Society +1606.03323 +1606.04399 +1606.04962 Dynamical Systems +1606.06586 Metric Geometry +1606.07775 Computational Physics +1606.08172 Instrumentation and Detectors +1606.08500 Analysis of PDEs +1606.08565 Phenomenology +1606.09099 Combinatorics +1606.09203 Chemical Physics +1606.09426 Solar and Stellar Astrophysics +1607.00345 Optimization and Control +1607.00559 Optimization and Control +1607.00777 High Energy Astrophysical Phenomena +1607.01237 Differential Geometry +1607.01311 Combinatorics +1607.01389 Medical Physics +1607.01390 Experiment +1607.01396 +1607.01398 Atomic Physics +1607.01399 Phenomenology +1607.01401 Strongly Correlated Electrons +1607.01409 Phenomenology +1607.01412 Number Theory +1607.01413 Functional Analysis +1607.01415 Soft Condensed Matter +1607.01416 Astrophysics of Galaxies +1607.01421 Numerical Analysis +1607.01423 Functional Analysis +1607.01425 Solar and Stellar Astrophysics +1607.01428 Number Theory +1607.01430 Probability +1607.01433 Classical Physics +1607.01436 Information Theory +1607.01438 Computational Complexity +1607.01439 Analysis of PDEs +1607.01443 Human-Computer Interaction +1607.01445 Classical Analysis and ODEs +1607.01447 +1607.01449 Biological Physics +1607.01450 Computer Vision and Pattern Recognition +1607.01452 Biomolecules +1607.01456 Combinatorics +1607.01457 Group Theory +1607.01458 Computation +1607.01461 Information Theory +1607.01462 Machine Learning +1607.01464 Phenomenology +1607.01465 +1607.01466 Analysis of PDEs +1607.01474 Logic in Computer Science +1607.01476 Instrumentation and Detectors +1607.01478 Robotics +1607.01481 Dynamical Systems +1607.01482 Systems and Control +1607.01485 Computation and Language +1607.01486 Robotics +1607.01490 Artificial Intelligence +1607.01491 General Topology +1607.01493 Algebraic Geometry +1607.01496 Algebraic Geometry +1607.01497 Classical Analysis and ODEs +1607.01501 +1607.01502 Materials Science +1607.01503 Accelerator Physics +1607.01511 Chemical Physics +1607.01516 Statistics Theory +1607.01517 Computer Science and Game Theory +1607.01518 Soft Condensed Matter +1607.01519 Pricing of Securities +1607.01520 Superconductivity +1607.01521 Theory +1607.01524 Soft Condensed Matter +1607.01527 Analysis of PDEs +1607.01530 Number Theory +1607.01532 Phenomenology +1607.01533 Information Theory +1607.01535 Analysis of PDEs +1607.01537 Information Theory +1607.01538 Accelerator Physics +1607.01539 Logic in Computer Science +1607.01540 Accelerator Physics +1607.01542 Classical Analysis and ODEs +1607.01545 Combinatorics +1607.01549 Combinatorics +1607.01551 Data Structures and Algorithms +1607.01552 +1607.01556 Accelerator Physics +1607.01559 Accelerator Physics +1607.01563 Differential Geometry +1607.01564 Populations and Evolution +1607.01565 Accelerator Physics +1607.01566 Combinatorics +1607.01568 +1607.01570 Accelerator Physics +1607.01572 Accelerator Physics +1607.01573 Accelerator Physics +1607.01574 Accelerator Physics +1607.01575 Optimization and Control +1607.01577 Computer Vision and Pattern Recognition +1607.01578 Accelerator Physics +1607.01579 Numerical Analysis +1607.01581 Accelerator Physics +1607.01582 Learning +1607.01583 Classical Analysis and ODEs +1607.01584 Accelerator Physics +1607.01588 Number Theory +1607.01589 Accelerator Physics +1607.01590 Programming Languages +1607.01591 +1607.01592 Analysis of PDEs +1607.01593 Phenomenology +1607.01594 Accelerator Physics +1607.01595 Accelerator Physics +1607.01596 Accelerator Physics +1607.01597 Accelerator Physics +1607.01598 Information Theory +1607.01602 Functional Analysis +1607.01603 Dynamical Systems +1607.01604 +1607.01605 Combinatorics +1607.01606 Differential Geometry +1607.01608 Soft Condensed Matter +1607.01610 +1607.01611 Superconductivity +1607.01612 Dynamical Systems +1607.01613 Plasma Physics +1607.01614 +1607.01615 Analysis of PDEs +1607.01624 Machine Learning +1607.01625 Logic +1607.01627 Probability +1607.01628 Computation and Language +1607.01630 Accelerator Physics +1607.01631 Methodology +1607.01633 Phenomenology +1607.01634 Artificial Intelligence +1607.01637 Soft Condensed Matter +1607.01639 Cryptography and Security +1607.01640 Mesoscale and Nanoscale Physics +1607.01642 Cryptography and Security +1607.01643 Distributed, Parallel, and Cluster Computing +1607.01648 +1607.01649 Numerical Analysis +1607.01651 Biological Physics +1607.01656 Biomolecules +1607.01664 Computation +1607.01665 Fluid Dynamics +1607.01673 Experiment +1607.01674 Complex Variables +1607.01676 +1607.01677 Cosmology and Nongalactic Astrophysics +1607.01678 Group Theory +1607.01679 Computer Vision and Pattern Recognition +1607.01683 Social and Information Networks +1607.01684 Computational Complexity +1607.01686 Logic in Computer Science +1607.01688 Classical Analysis and ODEs +1607.01690 Learning +1607.01691 Neural and Evolutionary Computing +1607.01695 Mesoscale and Nanoscale Physics +1607.01697 Representation Theory +1607.01702 +1607.01708 Experiment +1607.01715 Phenomenology +1607.01719 Computer Vision and Pattern Recognition +1607.01721 Theory +1607.01722 Geometric Topology +1607.01724 Operator Algebras +1607.01725 Functional Analysis +1607.01726 Numerical Analysis +1607.01728 Optimization and Control +1607.01730 Artificial Intelligence +1607.01731 Commutative Algebra +1607.01734 Soft Condensed Matter +1607.01735 Physics and Society +1607.01736 Information Theory +1607.01741 Functional Analysis +1607.01742 Probability +1607.01749 Phenomenology +1607.01752 Human-Computer Interaction +1607.01755 Earth and Planetary Astrophysics +1607.01756 Applications +1607.01760 Probability +1607.01761 Cosmology and Nongalactic Astrophysics +1607.01762 Probability +1607.01764 +1607.01765 Combinatorics +1607.01768 +1607.01769 Cosmology and Nongalactic Astrophysics +1607.01770 Superconductivity +1607.01772 Astrophysics of Galaxies +1003.1652 Number Theory +1004.3397 Theory +1004.4176 Superconductivity +1009.1648 Symplectic Geometry +1102.5077 General Topology +1108.4248 +1111.0027 Dynamical Systems +1111.6193 Dynamical Systems +1202.3878 Statistics Theory +1205.0600 General Topology +1206.3699 Fluid Dynamics +1210.2231 Dynamical Systems +1211.4611 Optimization and Control +1211.4614 Optimization and Control +1211.4865 Optimization and Control +1301.0802 Statistics Theory +1301.7299 Spectral Theory +1303.5163 Optimization and Control +1304.5286 Optimization and Control +1306.1421 Physics and Society +1306.2813 Differential Geometry +1306.3149 Fluid Dynamics +1307.3280 +1307.4419 Algebraic Geometry +1308.0490 Information Theory +1309.2887 Disordered Systems and Neural Networks +1309.3461 Analysis of PDEs +1310.4621 Probability +1311.3190 Methodology +1311.4567 High Energy Astrophysical Phenomena +1312.7771 Geometric Topology +1402.1211 Optimization and Control +1402.3660 Probability +1404.6312 Computation and Language +1405.1003 History and Overview +1405.1481 Probability +1405.2304 Dynamical Systems +1405.3950 Metric Geometry +1405.6876 Probability +1406.5028 Complex Variables +1406.5301 Data Structures and Algorithms +1406.5547 Fluid Dynamics +1407.8160 +1408.1400 Solar and Stellar Astrophysics +1409.5156 Functional Analysis +1409.5396 Probability +1409.7904 Rings and Algebras +1410.0806 Dynamical Systems +1411.6368 Probability +1411.6518 Analysis of PDEs +1412.4273 Data Structures and Algorithms +1412.6838 Theory +1412.7913 Dynamical Systems +1412.8477 +1501.02023 Probability +1501.04241 Analysis of PDEs +1502.02017 +1502.06642 Chaotic Dynamics +1503.04832 +1503.06333 Information Theory +1503.07024 Computational Physics +1503.07245 +1503.08019 Data Structures and Algorithms +1503.08080 Commutative Algebra +1504.03208 High Energy Astrophysical Phenomena +1504.04107 Numerical Analysis +1504.05965 +1504.06408 Analysis of PDEs +1505.00115 Digital Libraries +1505.01356 Fluid Dynamics +1505.01717 Superconductivity +1505.02047 +1506.00504 Optimization and Control +1506.02057 Superconductivity +1506.02671 Cosmology and Nongalactic Astrophysics +1506.02924 Rings and Algebras +1506.03347 Economics +1506.04169 Quantum Gases +1506.06081 Machine Learning +1506.06323 Optics +1506.06556 Phenomenology +1506.07975 +1506.08066 Theory +1506.08974 Mesoscale and Nanoscale Physics +1507.03428 Phenomenology +1507.03501 Classical Analysis and ODEs +1507.06979 +1507.07474 Statistical Mechanics +1507.07923 Mesoscale and Nanoscale Physics +1508.01156 Optics +1508.06955 Complex Variables +1509.00901 Strongly Correlated Electrons +1509.04487 Materials Science +1509.05686 +1509.07255 +1509.07638 Earth and Planetary Astrophysics +1509.08815 Optics +1509.08847 Systems and Control +1510.02063 +1510.02226 Differential Geometry +1510.03292 Probability +1510.03534 Strongly Correlated Electrons +1510.03855 +1510.04846 Superconductivity +1510.05132 Analysis of PDEs +1510.06277 +1510.06697 Probability +1510.06948 Geometric Topology +1511.00390 Accelerator Physics +1511.00611 +1511.00933 High Energy Astrophysical Phenomena +1511.04330 Mesoscale and Nanoscale Physics +1511.07391 Soft Condensed Matter +1512.00289 Plasma Physics +1512.01172 +1512.02006 Cryptography and Security +1512.02377 Phenomenology +1512.02475 Statistical Mechanics +1512.03704 Experiment +1512.04884 Statistical Mechanics +1512.05314 Experiment +1512.06721 Theory +1601.00392 Physics and Society +1601.00534 Phenomenology +1601.01375 Optics +1601.04971 High Energy Astrophysical Phenomena +1601.05322 Atomic Physics +1601.05602 Geometric Topology +1601.07084 Geometric Topology +1601.07326 Probability +1602.00698 Phenomenology +1602.01106 Soft Condensed Matter +1602.02879 Fluid Dynamics +1602.02901 Optics +1602.04499 Probability +1602.04779 +1602.05242 Learning +1602.06674 Algebraic Topology +1602.07149 Fluid Dynamics +1602.08512 +1603.01390 Chemical Physics +1603.01750 High Energy Astrophysical Phenomena +1603.02213 Solar and Stellar Astrophysics +1603.02733 Materials Science +1603.02762 Superconductivity +1603.03170 Computers and Society +1603.03310 General Mathematics +1603.04531 Computers and Society +1603.05380 Analysis of PDEs +1603.06029 Optimization and Control +1603.06137 Space Physics +1603.06460 Group Theory +1603.06493 Functional Analysis +1603.06516 Atmospheric and Oceanic Physics +1603.07017 Statistical Mechanics +1603.07051 Artificial Intelligence +1603.07326 +1603.07341 Learning +1603.07342 Instrumentation and Methods for Astrophysics +1603.07343 Quantitative Methods +1603.07347 Astrophysics of Galaxies +1603.07348 +1603.07350 Combinatorics +1603.07352 Phenomenology +1603.07353 Fluid Dynamics +1603.07355 Computers and Society +1603.07358 Numerical Analysis +1603.07363 Fluid Dynamics +1603.07366 High Energy Astrophysical Phenomena +1603.07369 Quantitative Methods +1603.07370 Cryptography and Security +1603.07371 Data Structures and Algorithms +1603.07372 Atomic Physics +1603.07374 Analysis of PDEs +1603.07376 Data Structures and Algorithms +1603.07378 Probability +1603.07382 Probability +1603.07383 Optimization and Control +1603.07384 Optimization and Control +1603.07385 Probability +1603.07388 Computer Vision and Pattern Recognition +1603.07394 Machine Learning +1603.07395 Number Theory +1603.07396 Computer Vision and Pattern Recognition +1603.07397 Optimization and Control +1603.07398 Combinatorics +1603.07399 Cryptography and Security +1603.07401 Computational Geometry +1603.07402 Algebraic Geometry +1603.07403 Soft Condensed Matter +1603.07404 Mesoscale and Nanoscale Physics +1603.07405 Combinatorics +1603.07408 Other Statistics +1603.07415 Computer Vision and Pattern Recognition +1603.07416 Atomic Physics +1603.07423 +1603.07424 Earth and Planetary Astrophysics +1603.07425 Cryptography and Security +1603.07427 Methodology +1603.07428 Analysis of PDEs +1603.07430 Optics +1603.07431 Networking and Internet Architecture +1603.07432 Cryptography and Security +1603.07433 Cryptography and Security +1603.07436 Number Theory +1603.07437 Representation Theory +1603.07438 Cryptography and Security +1603.07439 Cryptography and Security +1603.07440 Systems and Control +1603.07443 Phenomenology +1603.07447 Mesoscale and Nanoscale Physics +1603.07449 Symplectic Geometry +1603.07452 +1603.07453 Logic in Computer Science +1603.07454 Learning +1603.07455 Analysis of PDEs +1603.07459 General Topology +1603.07461 Analysis of PDEs +1603.07463 Numerical Analysis +1603.07464 Probability +1603.07465 +1603.07466 Software Engineering +1603.07467 Fluid Dynamics +1603.07468 Quantum Algebra +1603.07471 Combinatorics +1603.07474 Phenomenology +1603.07475 Computer Vision and Pattern Recognition +1603.07476 +1603.07477 Probability +1603.07479 Analysis of PDEs +1603.07481 Physics and Society +1603.07482 Materials Science +1603.07488 Probability +1603.07489 Number Theory +1603.07493 Methodology +1603.07494 Functional Analysis +1603.07496 Exactly Solvable and Integrable Systems +1603.07500 Algebraic Geometry +1603.07501 Logic +1603.07502 Analysis of PDEs +1603.07505 Strongly Correlated Electrons +1603.07506 Plasma Physics +1603.07509 Spectral Theory +1603.07512 +1603.07515 Numerical Analysis +1603.07517 Analysis of PDEs +1603.07520 Dynamical Systems +1603.07522 Analysis of PDEs +1603.07528 Probability +1603.07531 Statistics Theory +1603.07534 Databases +1603.07536 Dynamical Systems +1603.07537 Mesoscale and Nanoscale Physics +1603.07538 Cryptography and Security +1603.07540 Dynamical Systems +1603.07541 Information Theory +1603.07542 Functional Analysis +1603.07543 Dynamical Systems +1603.07549 Numerical Analysis +1603.07552 General Physics +1603.07557 Symplectic Geometry +1603.07558 +1603.07559 Statistics Theory +1603.07562 Mesoscale and Nanoscale Physics +1603.07564 Mesoscale and Nanoscale Physics +1603.07566 Classical Analysis and ODEs +1603.07570 Combinatorics +1603.07571 +1603.07573 Statistics Theory +1603.07577 +1603.07579 Solar and Stellar Astrophysics +1603.07585 Probability +1603.07586 Probability +1603.07587 Probability +1603.07588 Combinatorics +1603.07589 Algebraic Geometry +1603.07590 Dynamical Systems +1603.07595 Cosmology and Nongalactic Astrophysics +1603.07599 Soft Condensed Matter +1603.07600 Biological Physics +1603.07602 Machine Learning +1603.07603 Computation and Language +1603.07604 Computer Vision and Pattern Recognition +1603.07606 Logic +1603.07607 Logic +1603.07608 Logic +1603.07609 Computation and Language +1603.07610 Computers and Society +1603.07611 Algebraic Geometry +1603.07613 Number Theory +1603.07614 +1603.07615 Mathematical Finance +1603.07616 Dynamical Systems +1603.07617 Classical Analysis and ODEs +1603.07618 Classical Analysis and ODEs +1603.07619 Combinatorics +1603.07621 +1603.07622 Optimization and Control +1603.07625 Computer Vision and Pattern Recognition +1603.07626 Analysis of PDEs +1603.07628 Information Theory +1603.07631 Software Engineering +1603.07632 Statistics Theory +1603.07635 Networking and Internet Architecture +1603.07641 Databases +1603.07642 Materials Science +1603.07643 Materials Science +1603.07646 Information Retrieval +1603.07647 Analysis of PDEs +1603.07648 Analysis of PDEs +1603.07650 Information Theory +1603.07653 Systems and Control +1603.07657 Classical Analysis and ODEs +1603.07658 Classical Analysis and ODEs +1603.07661 Symplectic Geometry +1603.07662 Algebraic Geometry +1603.07663 Materials Science +1603.07664 Classical Analysis and ODEs +1603.07668 Applications +1603.07684 Systems and Control +1603.07685 Classical Analysis and ODEs +1603.07686 Optimization and Control +1603.07687 Phenomenology +1603.07688 Optics +1603.07690 Optics +1603.07692 Computers and Society +1603.07694 +1603.07695 Computation and Language +1603.07696 Algebraic Geometry +1603.07699 Cryptography and Security +1603.07703 Classical Analysis and ODEs +1603.07705 Classical Analysis and ODEs +1603.07706 Theory +1603.07709 Social and Information Networks +1603.07710 Geometric Topology +1603.07712 Instrumentation and Detectors +1603.07714 Probability +1603.07716 Representation Theory +1603.07725 Analysis of PDEs +gr-qc/0510066 +0712.4006 Combinatorics +0806.2372 Theory +0907.2137 Differential Geometry +0911.2631 Probability +1001.2893 Theory +1003.2706 +1004.5269 Probability +1103.5775 Spectral Theory +1105.6215 Functional Analysis +1112.5808 Optimization and Control +1201.0037 Commutative Algebra +1203.3345 Chaotic Dynamics +1205.7018 Analysis of PDEs +1208.6073 Algebraic Geometry +1210.3261 +1210.7258 Logic +1210.8097 Spectral Theory +1211.1162 Data Analysis, Statistics and Probability +1301.0805 Physics and Society +1301.0806 Chaotic Dynamics +1301.4437 +1302.1325 Complex Variables +1305.0479 Computational Finance +1308.2844 Differential Geometry +1309.4935 Probability +1309.5847 Algebraic Geometry +1309.7794 Group Theory +1311.3897 Probability +1311.5122 Metric Geometry +1311.5702 +1311.7555 Probability +1312.1380 Analysis of PDEs +1312.2783 Differential Geometry +1312.2963 +1401.5184 +1402.1530 Sound +1402.2706 Applications +1402.3990 Probability +1402.4443 Classical Analysis and ODEs +1402.4635 Number Theory +1402.4912 Combinatorics +1402.6652 Atomic Physics +1403.0788 Algebraic Geometry +1404.1932 +1404.3589 Networking and Internet Architecture +1404.7165 Geometric Topology +1404.7724 Astrophysics of Galaxies +1405.2742 Probability +1405.6229 Classical Analysis and ODEs +1405.6794 Analysis of PDEs +1406.2009 Classical Analysis and ODEs +1406.5418 Theory +1407.6086 Numerical Analysis +1407.8006 Representation Theory +1408.0632 Probability +1408.0892 Rings and Algebras +1408.4522 Information Theory +1408.6799 Probability +1409.2850 Symplectic Geometry +1409.7812 History and Philosophy of Physics +1410.1346 Analysis of PDEs +1410.4778 Methodology +1411.0829 +1411.0884 Analysis of PDEs +1411.3292 Information Theory +1411.3989 Symplectic Geometry +1411.7759 Methodology +1412.3177 Differential Geometry +1412.4749 Classical Analysis and ODEs +1412.5350 Optimization and Control +1501.03440 Complex Variables +1501.05005 Information Theory +1501.05112 Analysis of PDEs +1501.06427 Classical Analysis and ODEs +1501.06696 Functional Analysis +1501.07475 Complex Variables +1502.00595 Representation Theory +1502.02673 +1502.07190 Machine Learning +1503.07855 +1503.07966 K-Theory and Homology +1503.08846 Numerical Analysis +1504.02430 Category Theory +1504.03286 Mesoscale and Nanoscale Physics +1504.03626 Optimization and Control +1504.03930 Numerical Analysis +1504.05061 +1504.06954 Data Structures and Algorithms +1504.07097 Superconductivity +1505.00239 Geometric Topology +1505.00625 Phenomenology +1505.03031 Algebraic Geometry +1505.05263 Metric Geometry +1505.06058 +1505.06615 Information Theory +1506.00502 Classical Analysis and ODEs +1506.01242 Optimization and Control +1506.02465 Artificial Intelligence +1506.03760 Data Structures and Algorithms +1506.04601 +1506.08248 Information Theory +1506.08552 Experiment +1507.01571 Data Analysis, Statistics and Probability +1507.03382 +1507.03553 Phenomenology +1507.06316 Phenomenology +1507.08629 Cosmology and Nongalactic Astrophysics +1507.08662 Astrophysics of Galaxies +1507.08974 Phenomenology +1508.00179 Optics +1508.00963 Theory +1508.01580 Computation and Language +1508.01806 Analysis of PDEs +1508.01895 Algebraic Geometry +1508.02190 +1508.02821 Differential Geometry +1508.04393 High Energy Astrophysical Phenomena +1508.04627 Cryptography and Security +1508.05143 Data Structures and Algorithms +1508.05602 Number Theory +1508.06106 Multimedia +1508.06269 Optimization and Control +1508.07137 +1508.07187 +1508.07544 Computation and Language +1509.01737 Strongly Correlated Electrons +1509.02500 Materials Science +1509.02532 Cosmology and Nongalactic Astrophysics +1509.04132 Algebraic Geometry +1509.04685 Cosmology and Nongalactic Astrophysics +1509.04926 +1509.06142 Numerical Analysis +1509.06770 Cosmology and Nongalactic Astrophysics +1509.08392 Optimization and Control +1509.08570 Numerical Analysis +1510.00017 Cosmology and Nongalactic Astrophysics +1510.00131 Number Theory +1510.00643 Chemical Physics +1510.02683 Probability +1510.04189 Machine Learning +1510.04488 Networking and Internet Architecture +1510.05875 Mathematical Finance +1510.07712 Computer Vision and Pattern Recognition +1510.08920 Probability +1511.00540 Neural and Evolutionary Computing +1511.01411 Computer Science and Game Theory +1511.05681 Combinatorics +1511.06040 Computer Vision and Pattern Recognition +1511.06197 Instrumentation and Detectors +1511.06235 Mesoscale and Nanoscale Physics +1511.06476 Phenomenology +1511.08320 Materials Science +1511.08434 +1511.08479 Probability +1511.09330 Superconductivity +1512.00731 Statistical Mechanics +1512.00754 Complex Variables +1512.00831 Complex Variables +1512.01284 Plasma Physics +1512.02666 Statistics Theory +1512.02952 Mesoscale and Nanoscale Physics +1512.03233 Mesoscale and Nanoscale Physics +1512.03266 Phenomenology +1512.03727 Classical Analysis and ODEs +1512.04370 Quantitative Methods +1512.05645 Quantum Gases +1512.05758 Chemical Physics +1512.06271 Data Structures and Algorithms +1512.06424 Numerical Analysis +1512.07361 Phenomenology +1512.07380 Statistical Mechanics +1512.07902 Theory +1512.08093 Mesoscale and Nanoscale Physics +1601.00627 General Physics +1601.00917 Learning +1601.01086 Commutative Algebra +1601.01097 Analysis of PDEs +1601.02159 Operator Algebras +1601.03637 Numerical Analysis +1601.04326 Algebraic Geometry +1601.04606 Strongly Correlated Electrons +1601.07882 Theory +1602.00712 Atomic Physics +1602.01236 Phenomenology +1602.01470 Theory +1602.01651 Mesoscale and Nanoscale Physics +1602.02009 Neural and Evolutionary Computing +1602.02595 Other Condensed Matter +1602.05677 Probability +1602.07412 Methodology +1602.08135 Networking and Internet Architecture +1602.08166 Computational Complexity +1602.08168 High Energy Astrophysical Phenomena +1603.00090 Plasma Physics +1603.01428 Materials Science +1603.02034 Information Theory +1603.02540 Superconductivity +1603.02714 Social and Information Networks +1603.03283 Soft Condensed Matter +1603.03958 Computer Vision and Pattern Recognition +1603.04262 Superconductivity +1603.04386 Combinatorics +1603.04605 Optimization and Control +1603.04787 Computational Physics +1603.05346 Data Structures and Algorithms +1603.05354 Computation and Language +1603.05366 General Topology +1603.05982 Statistical Mechanics +1603.06708 Learning +1603.06830 Cryptography and Security +1603.07457 Data Structures and Algorithms +1603.08061 +1603.08784 Instrumentation and Detectors +1603.09274 Programming Languages +1603.09279 Machine Learning +1603.09446 Computer Vision and Pattern Recognition +1603.09692 Complex Variables +1604.00163 Group Theory +1604.00610 Number Theory +1604.00739 Distributed, Parallel, and Cluster Computing +1604.00854 Information Theory +1604.00918 Strongly Correlated Electrons +1604.01049 Physics and Society +1604.01271 Theory +1604.01303 Networking and Internet Architecture +1604.01317 Genomics +1604.01339 Applications +1604.01351 Machine Learning +1604.01374 Logic +1604.01399 Solar and Stellar Astrophysics +1604.01405 Phenomenology +1604.01408 Instrumentation and Methods for Astrophysics +1604.01416 Neural and Evolutionary Computing +1604.01420 Computer Vision and Pattern Recognition +1604.01425 Instrumentation and Detectors +1604.01426 Instrumentation and Detectors +1604.01427 Instrumentation and Detectors +1604.01428 Computational Geometry +1604.01430 Materials Science +1604.01432 Complex Variables +1604.01433 Information Theory +1604.01434 Information Theory +1604.01435 Computer Science and Game Theory +1604.01442 Cosmology and Nongalactic Astrophysics +1604.01443 Methodology +1604.01446 Probability +1604.01447 Mathematical Finance +1604.01448 Analysis of PDEs +1604.01449 Algebraic Geometry +1604.01450 Software Engineering +1604.01452 Robotics +1604.01454 Numerical Analysis +1604.01458 Astrophysics of Galaxies +1604.01461 Functional Analysis +1604.01464 Information Theory +1604.01468 Representation Theory +1604.01475 Learning +1604.01476 Information Theory +1604.01477 Representation Theory +1604.01481 +1604.01483 Fluid Dynamics +1604.01484 Strongly Correlated Electrons +1604.01485 Computer Vision and Pattern Recognition +1604.01495 Neural and Evolutionary Computing +1604.01498 Differential Geometry +1604.01500 Computer Vision and Pattern Recognition +1604.01502 Combinatorics +1604.01507 Robotics +1604.01515 Statistics Theory +1604.01517 Category Theory +1604.01518 Learning +1604.01519 Networking and Internet Architecture +1604.01522 Differential Geometry +1604.01524 Optimization and Control +1604.01527 +1604.01530 Solar and Stellar Astrophysics +1604.01533 Solar and Stellar Astrophysics +1604.01537 Computation and Language +1604.01539 +1604.01540 Materials Science +1604.01541 Methodology +1604.01542 Optimization and Control +1604.01545 Computer Vision and Pattern Recognition +1604.01547 Analysis of PDEs +1604.01551 Commutative Algebra +1604.01556 Theory +1604.01564 Logic +1604.01568 Soft Condensed Matter +1604.01570 Representation Theory +1604.01574 Human-Computer Interaction +1604.01578 Functional Analysis +1604.01579 Probability +1604.01580 +1604.01581 Medical Physics +1604.01582 Combinatorics +1604.01583 Information Theory +1604.01584 Probability +1604.01586 +1604.01588 K-Theory and Homology +1604.01590 Chaotic Dynamics +1604.01592 Computational Geometry +1604.01593 Quantum Algebra +1604.01594 Information Theory +1604.01596 Spectral Theory +1604.01598 Instrumentation and Detectors +1604.01603 Probability +1604.01610 Functional Analysis +1604.01611 Chaotic Dynamics +1604.01615 Representation Theory +1604.01616 Functional Analysis +1604.01617 Applications +1604.01620 Probability +1604.01622 Representation Theory +1604.01623 General Physics +1604.01624 Chaotic Dynamics +1604.01628 Probability +1604.01629 High Energy Astrophysical Phenomena +1604.01630 Number Theory +1604.01631 +1604.01632 Computational Physics +1604.01635 +1604.01641 Materials Science +1604.01642 Robotics +1604.01646 Emerging Technologies +1604.01652 Optics +1604.01657 Analysis of PDEs +1604.01661 Quantum Gases +1604.01666 Disordered Systems and Neural Networks +1604.01669 Theory +1604.01672 Computer Science and Game Theory +1604.01675 Networking and Internet Architecture +1604.01677 +1604.01679 Quantum Algebra +1604.01682 Phenomenology +1604.01683 Computer Vision and Pattern Recognition +1604.01684 Computer Vision and Pattern Recognition +1604.01692 Computation and Language +1604.01694 Differential Geometry +1604.01695 Analysis of PDEs +1604.01696 Computation and Language +1604.01697 Data Structures and Algorithms +1604.01700 Algebraic Geometry +1604.01705 Mesoscale and Nanoscale Physics +1604.01706 Materials Science +1604.01707 Strongly Correlated Electrons +1604.01712 Strongly Correlated Electrons +1604.01713 Numerical Analysis +1604.01718 Analysis of PDEs +1604.01720 Computer Vision and Pattern Recognition +1604.01721 Combinatorics +1604.01722 Instrumentation and Methods for Astrophysics +1604.01732 +1604.01733 Machine Learning +1604.01734 Computer Science and Game Theory +1604.01737 Materials Science +1604.01739 Networking and Internet Architecture +1604.01740 Molecular Networks +1604.01741 Networking and Internet Architecture +1604.01745 Systems and Control +1604.01755 Strongly Correlated Electrons +math/9908040 Quantum Algebra +0905.3774 Statistical Mechanics +0909.0551 Theory +0911.4623 Soft Condensed Matter +0912.3421 +1001.0250 +1005.2697 Soft Condensed Matter +1007.0533 Group Theory +1009.2385 +1009.2492 Group Theory +1111.6731 Algebraic Topology +1201.2436 +1203.2520 High Energy Astrophysical Phenomena +1205.1809 Symplectic Geometry +1206.3395 Theory +1207.3066 Geometric Topology +1207.5514 Theory +1209.1385 +1209.1731 Algebraic Topology +1303.2044 Trading and Market Microstructure +1304.0584 High Energy Astrophysical Phenomena +1304.1241 Number Theory +1304.3833 Geometric Topology +1305.2103 Databases +1306.4632 Geometric Topology +1307.0874 Number Theory +1307.6707 General Physics +1307.6807 Fluid Dynamics +1307.8135 Number Theory +1308.1183 Representation Theory +1309.2370 Symplectic Geometry +1310.7856 Phenomenology +1311.2817 Algebraic Topology +1311.5833 K-Theory and Homology +1311.6238 Statistics Theory +1312.1762 Representation Theory +1312.1808 Geometric Topology +1312.2860 +1312.5922 Numerical Analysis +1312.7280 Algebraic Topology +1401.0012 Number Theory +1402.1481 Group Theory +1402.6944 General Physics +1403.2401 Geometric Topology +1403.5355 Lattice +1403.7168 Algebraic Geometry +1403.7319 Geometric Topology +1403.7330 Analysis of PDEs +1404.1249 Fluid Dynamics +1404.1254 Fluid Dynamics +1404.1277 Fluid Dynamics +1404.1337 Fluid Dynamics +1404.1471 Fluid Dynamics +1404.3552 Numerical Analysis +1404.6444 +1405.1956 Geometric Topology +1405.2763 Soft Condensed Matter +1405.4564 Fluid Dynamics +1405.6628 Statistics Theory +1406.0150 Cosmology and Nongalactic Astrophysics +1406.0955 Artificial Intelligence +1406.1194 Number Theory +1406.3030 Phenomenology +1406.3226 Soft Condensed Matter +1406.5557 Spectral Theory +1407.0217 Spectral Theory +1407.0682 Number Theory +1407.5253 Plasma Physics +1407.6175 Numerical Analysis +1408.2880 Number Theory +1408.3872 History and Overview +1408.4348 Quantum Algebra +1408.4428 Analysis of PDEs +1408.6407 +1409.0291 Analysis of PDEs +1409.0854 Numerical Analysis +1409.1352 Symplectic Geometry +1409.1526 Numerical Analysis +1409.2410 Functional Analysis +1409.2472 Solar and Stellar Astrophysics +1409.2556 Numerical Analysis +1409.2789 Numerical Analysis +1409.3116 Phenomenology +1409.3218 Computational Physics +1409.3581 Numerical Analysis +1409.3719 +1409.7423 Numerical Analysis +1409.7711 Cosmology and Nongalactic Astrophysics +1409.8203 Functional Analysis +1410.2810 Applications +1410.5313 Populations and Evolution +1410.7087 Combinatorics +1410.7683 Combinatorics +1410.8274 Representation Theory +1410.8543 Logic +1411.0071 Numerical Analysis +1411.0127 Disordered Systems and Neural Networks +1411.0179 Fluid Dynamics +1411.1364 Symplectic Geometry +1411.1546 Data Structures and Algorithms +1411.5061 Geometric Topology +1411.6913 Analysis of PDEs +1412.0640 Data Structures and Algorithms +1412.2120 General Physics +1412.4117 Fluid Dynamics +1412.4988 Geometric Topology +1412.5390 Phenomenology +1412.5467 Mesoscale and Nanoscale Physics +1412.5877 Geometric Topology +1412.6213 +1412.6637 +1412.7466 Numerical Analysis +1412.7579 +1412.8052 Soft Condensed Matter +1412.8644 Strongly Correlated Electrons +1412.8683 Chemical Physics +1412.8734 Algebraic Geometry +1501.00919 Information Theory +1501.01855 Lattice +1501.02493 Functional Analysis +1501.04347 Strongly Correlated Electrons +1501.04524 Mesoscale and Nanoscale Physics +1501.04926 Materials Science +1501.05638 Strongly Correlated Electrons +1501.07002 Phenomenology +1501.07561 Algebraic Topology +1502.00995 Materials Science +1502.01376 Computational Physics +1502.01387 Plasma Physics +1502.01425 Machine Learning +1502.01874 Fluid Dynamics +1502.02728 Computational Physics +1502.02958 Theory +1502.03453 High Energy Astrophysical Phenomena +1502.04751 Optics +1502.05065 Mesoscale and Nanoscale Physics +1502.05725 Algebraic Topology +1502.06039 Geometric Topology +1502.06258 Algebraic Geometry +1502.06915 General Physics +1502.06973 Mesoscale and Nanoscale Physics +1503.00072 Computer Vision and Pattern Recognition +1503.01005 Theory +1503.01169 Computational Physics +1503.02502 Strongly Correlated Electrons +1503.03438 Learning +1503.03521 Operator Algebras +1503.05660 Geometric Topology +1503.05920 Cosmology and Nongalactic Astrophysics +1503.06047 Rings and Algebras +1503.06358 Information Theory +1503.06361 Information Theory +1503.06415 Differential Geometry +1503.06639 Combinatorics +1503.06882 Information Theory +1503.07540 High Energy Astrophysical Phenomena +1503.07735 Popular Physics +1503.08825 Theory +1504.00126 Information Theory +1504.00659 Theory +1504.01199 Fluid Dynamics +1504.01213 Phenomenology +1504.01258 Information Theory +1504.01406 Theory +1504.02274 Analysis of PDEs +1504.02344 Other Condensed Matter +1504.02468 +1504.03229 Materials Science +1504.03496 Optimization and Control +1504.04480 +1504.04943 Computer Vision and Pattern Recognition +1504.05399 Numerical Analysis +1504.05847 Fluid Dynamics +1504.05970 +1504.06152 +1504.06613 Theory +1504.06838 +1504.07051 High Energy Astrophysical Phenomena +1504.07173 Probability +1504.07390 Statistics Theory +1504.08012 Solar and Stellar Astrophysics +1504.08269 +1505.00023 Robotics +1505.00742 Classical Analysis and ODEs +1505.01234 Dynamical Systems +1505.01385 +1505.01595 Mesoscale and Nanoscale Physics +1505.02239 +1505.02245 Analysis of PDEs +1505.02650 Optics +1505.02696 Numerical Analysis +1505.03249 Materials Science +1505.03432 Complex Variables +1505.03602 Analysis of PDEs +1505.03762 Methodology +1505.03967 Numerical Analysis +1505.04454 Differential Geometry +1505.04561 Geometric Topology +1505.04650 Learning +1505.04889 Algebraic Topology +1505.05358 Mesoscale and Nanoscale Physics +1505.05802 Differential Geometry +1505.06220 High Energy Astrophysical Phenomena +1505.06437 +1505.06821 Computer Vision and Pattern Recognition +1505.07110 Theory +1505.07198 Statistical Mechanics +1505.07340 Soft Condensed Matter +1505.07431 Information Theory +1505.07487 Cryptography and Security +1505.07523 Analysis of PDEs +1505.07529 Numerical Analysis +1505.07534 Information Theory +1506.00315 Mesoscale and Nanoscale Physics +1506.00980 Other Condensed Matter +1506.01610 Numerical Analysis +1506.02056 Chaotic Dynamics +1506.02160 Information Theory +1506.02230 Chemical Physics +1506.02482 Analysis of PDEs +1506.02945 Analysis of PDEs +1506.04061 Fluid Dynamics +1506.04062 Analysis of PDEs +1506.04076 +1506.04239 Materials Science +1506.04762 Superconductivity +1506.05269 Methodology +1506.05367 Information Theory +1506.06133 Experiment +1506.06351 Phenomenology +1506.06479 +1506.06516 Physics and Society +1506.06574 Rings and Algebras +1506.07051 +1506.07106 +1506.07435 +1506.07468 Networking and Internet Architecture +1506.07472 Populations and Evolution +1506.07680 +1506.08397 Theory +1506.08842 Applications +1506.09181 Atmospheric and Oceanic Physics +1507.00511 Biological Physics +1507.00629 Information Theory +1507.00888 Materials Science +1507.01169 Spectral Theory +1507.01734 Fluid Dynamics +1507.01980 Earth and Planetary Astrophysics +1507.02079 Methodology +1507.02707 Operator Algebras +1507.02894 Phenomenology +1507.02932 Quantum Gases +1507.03044 Social and Information Networks +1507.03129 Materials Science +1507.03201 Logic +1507.03235 Theory +1507.03413 +1507.03521 Fluid Dynamics +1507.03762 Information Theory +1507.03862 Representation Theory +1507.04003 Statistical Mechanics +1507.04196 Atomic Physics +1507.04256 Phenomenology +1507.04504 Fluid Dynamics +1507.04790 Plasma Physics +1507.05359 Phenomenology +1507.05965 Theory +1507.06005 Exactly Solvable and Integrable Systems +1507.06479 Statistical Mechanics +1507.06568 Phenomenology +1507.06736 Numerical Analysis +1507.07515 Mesoscale and Nanoscale Physics +1507.07649 Superconductivity +1507.07766 Information Theory +1507.07769 Instrumentation and Methods for Astrophysics +1507.08113 Materials Science +1507.08142 Representation Theory +1507.08165 Theory +1507.08207 Pattern Formation and Solitons +1507.08678 Computational Physics +1508.00673 Phenomenology +1508.00834 Materials Science +1508.00848 Experiment +1508.00889 Optics +1508.01255 Optics +1508.01262 Probability +1508.01342 +1508.01486 Optics +1508.01689 Soft Condensed Matter +1508.01715 Chemical Physics +1508.01720 Information Theory +1508.02431 +1508.02586 Soft Condensed Matter +1508.02811 +1508.03217 Instrumentation and Detectors +1508.03562 +1508.03654 Statistical Mechanics +1508.03740 Superconductivity +1508.04017 +1508.04350 Theory +1508.04383 Phenomenology +1508.04435 Theory +1508.04461 Classical Physics +1508.04599 +1508.04672 Statistical Mechanics +1508.04859 +1508.04951 +1508.05010 +1508.05136 Mesoscale and Nanoscale Physics +1508.05221 Adaptation and Self-Organizing Systems +1508.05374 Mathematical Software +1508.05520 +1508.06029 Cosmology and Nongalactic Astrophysics +1508.06244 Theory +1508.06294 +1508.06322 Theory +1508.06382 History and Philosophy of Physics +1508.06797 Analysis of PDEs +1508.06894 Mesoscale and Nanoscale Physics +1508.07010 Phenomenology +1508.07014 Phenomenology +1508.07209 +1508.07964 Machine Learning +1509.00344 Materials Science +1509.00433 Phenomenology +1509.00724 +1509.00792 Phenomenology +1509.00799 Lattice +1509.00890 Theory +1509.00989 Phenomenology +1509.01017 Optics +1509.01222 Theory +1509.01690 Strongly Correlated Electrons +1509.01751 Astrophysics of Galaxies +1509.01785 Strongly Correlated Electrons +1509.02539 Phenomenology +1509.02547 Theory +1509.02597 Distributed, Parallel, and Cluster Computing +1509.02604 Distributed, Parallel, and Cluster Computing +1509.02700 Strongly Correlated Electrons +1509.03052 Phenomenology +1509.03145 +1509.03148 Phenomenology +1509.03173 +1509.03251 Chemical Physics +1509.03273 Statistical Mechanics +1509.03365 Theory +1509.03797 Analysis of PDEs +1509.03812 +1509.03905 Dynamical Systems +1509.03913 Phenomenology +1509.03943 +1509.03960 Theory +1509.03993 Phenomenology +1509.04067 Classical Physics +1509.04070 Chemical Physics +1509.04101 Algebraic Geometry +1509.04267 +1509.04306 +1509.04390 Physics and Society +1509.04478 Analysis of PDEs +1509.04531 Materials Science +1509.04570 Dynamical Systems +1509.04646 Mesoscale and Nanoscale Physics +1509.04663 Astrophysics of Galaxies +1509.04960 High Energy Astrophysical Phenomena +1509.05076 Phenomenology +1509.05188 Genomics +1509.05551 Phenomenology +1509.05566 Numerical Analysis +1509.05590 Statistical Mechanics +1509.05705 Dynamical Systems +1509.05801 Probability +1509.05908 Optics +1509.06044 Phenomenology +1509.06404 Cosmology and Nongalactic Astrophysics +1509.06657 Atomic Physics +1509.06808 Applications +1509.06826 +1509.07066 Disordered Systems and Neural Networks +1509.07165 Statistical Mechanics +1509.07283 Phenomenology +1509.07460 Atomic Physics +1509.07486 Quantum Gases +1509.07636 Statistics Theory +1509.07799 Analysis of PDEs +1509.08286 Phenomenology +1509.08424 Fluid Dynamics +1509.08549 Optics +1509.09208 Numerical Analysis +1509.09238 +1510.00005 Theory +1510.00280 +1510.00345 Cosmology and Nongalactic Astrophysics +1510.00415 Statistical Mechanics +1510.00670 +1510.01608 Fluid Dynamics +1510.01719 Strongly Correlated Electrons +1510.01881 Probability +1510.01899 Optimization and Control +1510.02018 Adaptation and Self-Organizing Systems +1510.02092 Astrophysics of Galaxies +1510.02165 Earth and Planetary Astrophysics +1510.02311 Statistical Mechanics +1510.02344 Instrumentation and Detectors +1510.02470 Phenomenology +1510.02608 +1510.02641 Phenomenology +1510.03068 +1510.03083 Theory +1510.03089 +1510.03171 Cosmology and Nongalactic Astrophysics +1510.03273 Optics +1510.03283 Computer Vision and Pattern Recognition +1510.03444 Theory +1510.03455 Fluid Dynamics +1510.03543 +1510.03590 Probability +1510.03640 Mesoscale and Nanoscale Physics +1510.03649 Biological Physics +1510.03672 High Energy Astrophysical Phenomena +1510.04028 Phenomenology +1510.04218 Phenomenology +1510.04322 Statistical Mechanics +1510.04543 Materials Science +1510.04562 Computational Physics +1510.04579 Biomolecules +1510.04801 Number Theory +1510.05112 +1510.05374 Representation Theory +1510.05464 Algebraic Geometry +1510.05642 Astrophysics of Galaxies +1510.05857 Strongly Correlated Electrons +1510.05861 Statistical Mechanics +1510.05924 Strongly Correlated Electrons +1510.05993 Theory +1510.06218 Experiment +1510.06219 Statistical Mechanics +1510.06385 Mesoscale and Nanoscale Physics +1510.06433 Classical Analysis and ODEs +1510.06507 Computer Vision and Pattern Recognition +1510.07016 Astrophysics of Galaxies +1510.07249 Phenomenology +1510.07397 Phenomenology +1510.07436 Phenomenology +1510.07572 Strongly Correlated Electrons +1510.07579 Chemical Physics +1510.07687 Chemical Physics +1510.07717 +1510.07899 Phenomenology +1510.07902 Phenomenology +1510.08001 +1510.08015 Phenomenology +1510.08397 Quantitative Methods +1510.08601 Optics +1510.08616 Statistical Mechanics +1510.08626 Instrumentation and Detectors +1510.08823 Theory +1510.09177 Materials Science +1511.00027 Statistical Mechanics +1511.00130 Logic +1511.00241 +1511.00291 Numerical Analysis +1511.00365 Strongly Correlated Electrons +1511.00408 Optics +1511.00491 +1511.00527 +1511.00578 Optics +1511.00660 Instrumentation and Detectors +1511.00761 +1511.00892 Chaotic Dynamics +1511.01162 +1511.01186 Computer Vision and Pattern Recognition +1511.01204 Mesoscale and Nanoscale Physics +1511.01458 Atmospheric and Oceanic Physics +1511.01459 Atomic Physics +1511.01539 Strongly Correlated Electrons +1511.01588 Atomic Physics +1511.01873 Phenomenology +1511.01999 Statistical Mechanics +1511.02055 Theory +1511.02066 Optics +1511.02600 Mesoscale and Nanoscale Physics +1511.02630 Materials Science +1511.02651 Cosmology and Nongalactic Astrophysics +1511.02672 Theory +1511.02800 High Energy Astrophysical Phenomena +1511.02859 Phenomenology +1511.02886 Phenomenology +1511.02995 Methodology +1511.03041 Materials Science +1511.03306 Pattern Formation and Solitons +1511.03384 Medical Physics +1511.03474 Other Condensed Matter +1511.03479 Optics +1511.03497 Earth and Planetary Astrophysics +1511.03498 Earth and Planetary Astrophysics +1511.03580 Materials Science +1511.03724 +1511.03756 Numerical Analysis +1511.03800 Biological Physics +1511.03806 Quantum Algebra +1511.03815 +1511.03931 Chemical Physics +1511.04034 Mesoscale and Nanoscale Physics +1511.04131 +1511.04194 +1511.04405 Cosmology and Nongalactic Astrophysics +1511.04432 Theory +1511.04742 +1511.04749 Biological Physics +1511.04772 Theory +1511.04885 Optics +1511.04969 Other Condensed Matter +1511.04972 Strongly Correlated Electrons +1511.05000 Soft Condensed Matter +1511.05029 Materials Science +1511.05039 Mesoscale and Nanoscale Physics +1511.05072 +1511.05220 Theory +1511.05264 Optics +1511.05386 Phenomenology +1511.05441 Theory +1511.05495 +1511.05583 Information Theory +1511.05596 Mesoscale and Nanoscale Physics +1511.05675 Theory +1511.05851 Theory +1511.05936 Plasma Physics +1511.06036 Machine Learning +1511.06211 Phenomenology +1511.06304 Theory +1511.06606 Learning +1511.06779 Phenomenology +1511.06822 Superconductivity +1511.06854 Analysis of PDEs +1511.06978 Theory +1511.07170 Statistical Mechanics +1511.07286 Materials Science +1511.07449 Theory +1511.07472 Dynamical Systems +1511.07698 Phenomenology +1511.07770 Instrumentation and Detectors +1511.07787 +1511.07878 Theory +1511.07966 Mesoscale and Nanoscale Physics +1511.08165 Strongly Correlated Electrons +1511.08208 Theory +1511.08244 Mesoscale and Nanoscale Physics +1511.08285 Strongly Correlated Electrons +1511.08432 Phenomenology +1511.08496 Theory +1511.08680 +1511.08692 Phenomenology +1511.08859 +1511.08874 Phenomenology +1511.08926 +1511.08959 Instrumentation and Detectors +1511.08995 Numerical Analysis +1511.09004 +1511.09164 Optics +1511.09304 Cosmology and Nongalactic Astrophysics +1511.09357 Statistical Mechanics +1511.09404 Phenomenology +1512.00213 Information Theory +1512.00229 Phenomenology +1512.00440 Phenomenology +1512.00541 Cosmology and Nongalactic Astrophysics +1512.00613 Physics and Society +1512.00652 Theory +1512.00807 Theory +1512.00952 High Energy Astrophysical Phenomena +1512.00963 Fluid Dynamics +1512.00990 +1512.00998 Atomic Physics +1512.01138 Quantum Gases +1512.01178 Phenomenology +1512.01385 Statistical Mechanics +1512.01430 Physics and Society +1512.01444 Optics +1512.01553 Theory +1512.01658 Theory +1512.01743 Optics +1512.01787 Instrumentation and Detectors +1512.01795 Distributed, Parallel, and Cluster Computing +1512.01830 +1512.01974 Soft Condensed Matter +1512.02070 +1512.02077 Statistical Mechanics +1512.02131 Cosmology and Nongalactic Astrophysics +1512.02189 +1512.02260 Materials Science +1512.02354 Phenomenology +1512.02374 Phenomenology +1512.02415 Fluid Dynamics +1512.02469 +1512.02534 Computational Physics +1512.02579 Disordered Systems and Neural Networks +1512.02657 Theory +1512.02962 Materials Science +1512.02969 Theory +1512.03007 Information Theory +1512.03057 Astrophysics of Galaxies +1512.03119 Mesoscale and Nanoscale Physics +1512.03222 Superconductivity +1512.03270 Lattice +1512.03312 Commutative Algebra +1512.03320 Biological Physics +1512.03353 Theory +1512.03360 Phenomenology +1512.03377 Atomic and Molecular Clusters +1512.03431 Quantum Gases +1512.03447 Quantum Gases +1512.03478 Theory +1512.03524 Theory +1512.03600 +1512.03649 Theory +1512.03671 Differential Geometry +1512.03751 Theory +1512.03773 +1512.03852 Phenomenology +1512.03863 Phenomenology +1512.03972 +1512.04056 Soft Condensed Matter +1512.04062 Phenomenology +1512.04078 Statistical Mechanics +1512.04104 Theory +1512.04111 Materials Science +1512.04161 Materials Science +1512.04235 Materials Science +1512.04244 +1512.04356 Phenomenology +1512.04396 Pattern Formation and Solitons +1512.04538 Theory +1512.04698 Theory +1512.04754 Learning +1512.04909 Fluid Dynamics +1512.04953 Theory +1512.05330 Phenomenology +1512.05337 Instrumentation and Detectors +1512.05347 Theory +1512.05353 Phenomenology +1512.05362 Theory +1512.05462 Accelerator Physics +1512.05585 Phenomenology +1512.05623 Phenomenology +1512.05668 Theory +1512.05791 Theory +1512.05815 Mesoscale and Nanoscale Physics +1512.05869 Optics +1512.05879 Representation Theory +1512.05897 Fluid Dynamics +1512.05918 Plasma Physics +1512.05973 Accelerator Physics +1512.06113 Phenomenology +1512.06219 Astrophysics of Galaxies +1512.06348 Physics and Society +1512.06379 Computational Physics +1512.06381 Phenomenology +1512.06493 Phenomenology +1512.06740 Optics +1512.06799 Phenomenology +1512.06876 +1512.06907 +1512.06909 Phenomenology +1512.06949 +1512.07049 +1512.07060 Methodology +1512.07182 Theory +1512.07429 Other Condensed Matter +1512.07472 Theory +1512.07484 Theory +1512.07627 Theory +1512.07643 Fluid Dynamics +1512.07678 Computation +1512.07704 +1512.07706 Materials Science +1512.07773 +1512.07779 +1512.07842 Strongly Correlated Electrons +1512.07865 +1512.07878 Materials Science +1512.07889 Phenomenology +1512.07976 +1512.08081 Mesoscale and Nanoscale Physics +1512.08089 Soft Condensed Matter +1512.08233 Theory +1512.08278 +1512.08286 Strongly Correlated Electrons +1512.08368 +1512.08373 Phenomenology +1512.08375 Theory +1512.08385 +1512.08489 Cosmology and Nongalactic Astrophysics +1512.08642 Plasma Physics +1512.08685 Theory +1512.08719 Mesoscale and Nanoscale Physics +1512.08771 Theory +1512.08821 Mesoscale and Nanoscale Physics +1512.08922 Phenomenology +1512.09153 Theory +1512.09183 +1512.09240 Pattern Formation and Solitons +1512.09330 Lattice +1601.00005 Phenomenology +1601.00081 Phenomenology +1601.00135 Solar and Stellar Astrophysics +1601.00158 Statistical Mechanics +1601.00285 Phenomenology +1601.00373 Phenomenology +1601.00640 Phenomenology +1601.00647 Theory +1601.00650 Instrumentation and Methods for Astrophysics +1601.00766 Quantum Gases +1601.00841 Fluid Dynamics +1601.01074 Information Theory +1601.01227 Fluid Dynamics +1601.01251 Strongly Correlated Electrons +1601.01319 Phenomenology +1601.01326 Phenomenology +1601.01364 Optics +1601.01406 Theory +1601.01558 Computational Physics +1601.01562 Mesoscale and Nanoscale Physics +1601.01659 Superconductivity +1601.01753 Physics and Society +1601.02210 Materials Science +1601.02286 Atomic Physics +1601.02411 Phenomenology +1601.02485 Mesoscale and Nanoscale Physics +1601.02508 Strongly Correlated Electrons +1601.02533 Mesoscale and Nanoscale Physics +1601.02570 Phenomenology +1601.02660 Theory +1601.02714 Phenomenology +1601.02934 Phenomenology +1601.02987 Information Theory +1601.02998 Strongly Correlated Electrons +1601.03001 Mesoscale and Nanoscale Physics +1601.03407 High Energy Astrophysical Phenomena +1601.03488 Theory +1601.03491 Plasma Physics +1601.03571 +1601.03654 Phenomenology +1601.03671 Phenomenology +1601.03696 Phenomenology +1601.03838 Strongly Correlated Electrons +1601.03923 Chemical Physics +1601.03961 +1601.03983 +1601.04008 Accelerator Physics +1601.04046 Theory +1601.04047 Classical Physics +1601.04074 Solar and Stellar Astrophysics +1601.04086 Atomic Physics +1601.04112 +1601.04148 Astrophysics of Galaxies +1601.04265 Strongly Correlated Electrons +1601.04278 Strongly Correlated Electrons +1601.04331 Methodology +1601.04474 Materials Science +1601.04578 +1601.04647 Materials Science +1601.04733 Optics +1601.04764 Optics +1601.04849 Accelerator Physics +1601.04852 Atomic Physics +1601.04853 Optics +1601.04919 Symplectic Geometry +1601.04972 Neurons and Cognition +1601.05099 High Energy Astrophysical Phenomena +1601.05126 Accelerator Physics +1601.05175 Differential Geometry +1601.05288 +1601.05463 +1601.05564 Phenomenology +1601.05588 +1601.05623 Mesoscale and Nanoscale Physics +1601.05719 Theory +1601.05757 +1601.05905 Strongly Correlated Electrons +1601.05957 Statistical Mechanics +1601.06325 Optics +1601.06374 Phenomenology +1601.06415 Strongly Correlated Electrons +1601.06568 Phenomenology +1601.06728 Mesoscale and Nanoscale Physics +1601.06757 Mesoscale and Nanoscale Physics +1601.06768 Theory +1601.06814 Information Theory +1601.06841 Theory +1601.07001 +1601.07076 Strongly Correlated Electrons +1601.07179 Solar and Stellar Astrophysics +1601.07199 Phenomenology +1601.07240 Strongly Correlated Electrons +1601.07340 Information Theory +1601.07342 Phenomenology +1601.07432 High Energy Astrophysical Phenomena +1601.07447 Populations and Evolution +1601.07575 Solar and Stellar Astrophysics +1601.07577 Optics +1601.07636 +1601.07652 +1601.07758 Phenomenology +1601.07863 High Energy Astrophysical Phenomena +1601.07876 Atomic Physics +1601.07890 Cosmology and Nongalactic Astrophysics +1601.07933 +1601.08064 Optics +1601.08081 Phenomenology +1601.08124 Disordered Systems and Neural Networks +1601.08187 Materials Science +1602.00002 Astrophysics of Galaxies +1602.00025 Mesoscale and Nanoscale Physics +1602.00056 Instrumentation and Detectors +1602.00244 Symbolic Computation +1602.00474 Mesoscale and Nanoscale Physics +1602.00523 +1602.00656 Superconductivity +1602.00826 +1602.00872 Analysis of PDEs +1602.00885 Phenomenology +1602.01004 Astrophysics of Galaxies +1602.01081 High Energy Astrophysical Phenomena +1602.01177 Strongly Correlated Electrons +1602.01251 +1602.01319 +1602.01380 Theory +1602.01413 Optics +1602.01460 Phenomenology +1602.01479 Theory +1602.01482 Strongly Correlated Electrons +1602.01528 Computer Vision and Pattern Recognition +1602.01588 +1602.01609 Atomic Physics +1602.01721 Astrophysics of Galaxies +1602.01761 Combinatorics +1602.01767 Lattice +1602.01863 Materials Science +1602.01987 Superconductivity +1602.02104 Chemical Physics +1602.02162 Phenomenology +1602.02276 Instrumentation and Detectors +1602.02325 Mesoscale and Nanoscale Physics +1602.02344 Materials Science +1602.02447 Chemical Physics +1602.02463 Phenomenology +1602.02639 Phenomenology +1602.02782 Phenomenology +1602.02802 Theory +1602.02838 Theory +1602.02967 Analysis of PDEs +1602.03208 Logic +1602.03213 Materials Science +1602.03288 Superconductivity +1602.03613 Strongly Correlated Electrons +1602.03638 Mathematical Software +1602.03645 Statistical Mechanics +1602.03653 Phenomenology +1602.03873 Phenomenology +1602.03907 +1602.04021 +1602.04115 Cryptography and Security +1602.04118 Lattice +1602.04203 Phenomenology +1602.04209 Atmospheric and Oceanic Physics +1602.04242 Statistical Mechanics +1602.04458 Materials Science +1602.04529 Robotics +1602.04543 Mesoscale and Nanoscale Physics +1602.04843 Astrophysics of Galaxies +1602.04925 +1602.04930 Information Retrieval +1602.04992 Optics +1602.05005 Astrophysics of Galaxies +1602.05121 Strongly Correlated Electrons +1602.05198 +1602.05239 High Energy Astrophysical Phenomena +1602.05272 Physics and Society +1602.05294 Soft Condensed Matter +1602.05334 Solar and Stellar Astrophysics +1602.05380 Soft Condensed Matter +1602.05430 Earth and Planetary Astrophysics +1602.05434 Chemical Physics +1602.05623 +1602.05639 Soft Condensed Matter +1602.05672 +1602.05695 Geophysics +1602.05770 Other Condensed Matter +1602.05910 +1602.06011 Optics +1602.06021 Biomolecules +1602.06176 +1602.06588 Soft Condensed Matter +1602.06699 Phenomenology +1602.06704 Theory +1602.06705 Data Structures and Algorithms +1602.06812 Mesoscale and Nanoscale Physics +1602.06939 +1602.06990 +1602.07145 Exactly Solvable and Integrable Systems +1602.07157 Exactly Solvable and Integrable Systems +1602.07164 Exactly Solvable and Integrable Systems +1602.07247 Instrumentation and Detectors +1602.07287 Theory +1602.07297 Phenomenology +1602.07310 Theory +1602.07347 Soft Condensed Matter +1602.07395 +1602.07427 Cosmology and Nongalactic Astrophysics +1602.07524 Mesoscale and Nanoscale Physics +1602.07560 Soft Condensed Matter +1602.07590 Astrophysics of Galaxies +1602.07798 Solar and Stellar Astrophysics +1602.07835 High Energy Astrophysical Phenomena +1602.07848 Earth and Planetary Astrophysics +1602.07882 Mesoscale and Nanoscale Physics +1602.07900 +1602.08014 Cosmology and Nongalactic Astrophysics +1602.08047 +1602.08086 High Energy Astrophysical Phenomena +1602.08223 Strongly Correlated Electrons +1602.08276 Analysis of PDEs +1602.08394 Information Theory +1602.08407 Mesoscale and Nanoscale Physics +1602.08413 Statistical Mechanics +1602.08452 Superconductivity +1602.08464 Pattern Formation and Solitons +1602.08522 High Energy Astrophysical Phenomena +1602.08598 Cosmology and Nongalactic Astrophysics +1602.08642 Phenomenology +1602.08679 +1602.08699 Instrumentation and Detectors +1602.08944 Atomic Physics +1602.08966 Superconductivity +1602.09077 Astrophysics of Galaxies +1602.09139 Combinatorics +1603.00037 +1603.00120 Optics +1603.00158 Atomic Physics +1603.00196 Probability +1603.00364 Theory +1603.00421 Optics +1603.00693 Strongly Correlated Electrons +1603.00732 High Energy Astrophysical Phenomena +1603.00755 Strongly Correlated Electrons +1603.00858 Data Structures and Algorithms +1603.00867 Solar and Stellar Astrophysics +1603.00981 +1603.01014 Instrumentation and Detectors +1603.01061 Solar and Stellar Astrophysics +1603.01116 Dynamical Systems +1603.01237 Optimization and Control +1603.01291 Astrophysics of Galaxies +1603.01325 Cosmology and Nongalactic Astrophysics +1603.01364 +1603.01453 Astrophysics of Galaxies +1603.01513 Materials Science +1603.01575 Superconductivity +1603.01628 Theory +1603.01773 Astrophysics of Galaxies +1603.01942 Computer Vision and Pattern Recognition +1603.01990 Materials Science +1603.02014 High Energy Astrophysical Phenomena +1603.02137 +1603.02337 Soft Condensed Matter +1603.02450 Quantum Gases +1603.02460 Astrophysics of Galaxies +1603.02461 Astrophysics of Galaxies +1603.02529 Astrophysics of Galaxies +1603.02561 Optics +1603.02633 Solar and Stellar Astrophysics +1603.02672 Astrophysics of Galaxies +1603.02689 Astrophysics of Galaxies +1603.02751 Astrophysics of Galaxies +1603.02792 +1603.02876 Earth and Planetary Astrophysics +1603.02978 Chemical Physics +1603.03026 Statistical Mechanics +1603.03036 Astrophysics of Galaxies +1603.03121 Solar and Stellar Astrophysics +1603.03155 Mesoscale and Nanoscale Physics +1603.03208 Soft Condensed Matter +1603.03234 Computer Vision and Pattern Recognition +1603.03246 Atomic Physics +1603.03275 Physics and Society +1603.03278 Optics +1603.03376 Superconductivity +1603.03407 +1603.03438 Instrumentation and Methods for Astrophysics +1603.03540 Plasma Physics +1603.03690 High Energy Astrophysical Phenomena +1603.03694 Quantitative Methods +1603.03712 Mesoscale and Nanoscale Physics +1603.03853 Earth and Planetary Astrophysics +1603.04070 High Energy Astrophysical Phenomena +1603.04356 Analysis of PDEs +1603.04714 Pattern Formation and Solitons +1603.04725 Phenomenology +1603.04770 Computational Physics +1603.04816 Strongly Correlated Electrons +1603.04867 Astrophysics of Galaxies +1603.05138 Chemical Physics +1603.05179 Earth and Planetary Astrophysics +1603.05335 Computer Vision and Pattern Recognition +1603.05387 Theory +1603.05396 Astrophysics of Galaxies +1603.05400 Astrophysics of Galaxies +1603.05403 Statistical Mechanics +1603.05479 Astrophysics of Galaxies +1603.05568 +1603.05575 Optics +1603.05618 Computational Physics +1603.05654 Solar and Stellar Astrophysics +1603.05661 Astrophysics of Galaxies +1603.05825 Chaotic Dynamics +1603.05973 Materials Science +1603.05993 Astrophysics of Galaxies +1603.06332 Optics +1603.06484 Fluid Dynamics +1603.06510 Instrumentation and Detectors +1603.06585 High Energy Astrophysical Phenomena +1603.06689 Solar and Stellar Astrophysics +1603.06922 Optics +1603.07040 Instrumentation and Detectors +1603.07097 Atomic Physics +1603.07121 Strongly Correlated Electrons +1603.07180 Plasma Physics +1603.07247 Earth and Planetary Astrophysics +1603.07264 +1603.07309 Phenomenology +1603.07331 Astrophysics of Galaxies +1603.07413 Optimization and Control +1603.07516 Statistical Mechanics +1603.07598 Materials Science +1603.07612 High Energy Astrophysical Phenomena +1603.07636 +1603.07734 Astrophysics of Galaxies +1603.07921 High Energy Astrophysical Phenomena +1603.08109 Computer Vision and Pattern Recognition +1603.08276 Strongly Correlated Electrons +1603.08291 Phenomenology +1603.08326 Applications +1603.08354 Instrumentation and Methods for Astrophysics +1603.08394 Astrophysics of Galaxies +1603.08483 Instrumentation and Detectors +1603.08653 Fluid Dynamics +1603.08774 +1603.08814 Superconductivity +1603.09023 Soft Condensed Matter +1603.09121 Solar and Stellar Astrophysics +1603.09607 +1603.09633 Fluid Dynamics +1604.00084 Phenomenology +1604.00234 Quantum Gases +1604.00264 +1604.00296 +1604.00390 Theory +1604.00450 Optics +1604.00469 Fluid Dynamics +1604.00515 Information Theory +1604.00530 Analysis of PDEs +1604.00603 Chaotic Dynamics +1604.00780 +1604.00874 +1604.01161 Superconductivity +1604.01167 +1604.01289 Quantum Gases +1604.01441 Phenomenology +1604.01505 Astrophysics of Galaxies +1604.01532 Mesoscale and Nanoscale Physics +1604.01544 Physics and Society +1604.01773 Astrophysics of Galaxies +1604.01832 Phenomenology +1604.01849 Soft Condensed Matter +1604.01902 Number Theory +1604.01973 Materials Science +1604.02022 Algebraic Geometry +1604.02149 Astrophysics of Galaxies +1604.02200 Solar and Stellar Astrophysics +1604.02213 +1604.02222 Materials Science +1604.02241 Optics +1604.02324 Mesoscale and Nanoscale Physics +1604.02538 Statistical Mechanics +1604.02990 +1604.03274 Strongly Correlated Electrons +1604.03329 High Energy Astrophysical Phenomena +1604.03375 +1604.03524 Optics +1604.03550 Solar and Stellar Astrophysics +1604.03785 Exactly Solvable and Integrable Systems +1604.03791 General Physics +1604.03798 Solar and Stellar Astrophysics +1604.03891 Astrophysics of Galaxies +1604.03961 Earth and Planetary Astrophysics +1604.04001 Cosmology and Nongalactic Astrophysics +1604.04020 Mesoscale and Nanoscale Physics +1604.04067 Plasma Physics +1604.04132 +1604.04578 +1604.04580 Functional Analysis +1604.04599 Phenomenology +1604.04882 Probability +1604.04974 Group Theory +1604.05312 Solar and Stellar Astrophysics +1604.05400 Theory +1604.05502 Materials Science +1604.05722 High Energy Astrophysical Phenomena +1604.05727 High Energy Astrophysical Phenomena +1604.05733 Solar and Stellar Astrophysics +1604.05808 Earth and Planetary Astrophysics +1604.05838 Superconductivity +1604.05981 Astrophysics of Galaxies +1604.06094 Solar and Stellar Astrophysics +1604.06303 High Energy Astrophysical Phenomena +1604.06455 Astrophysics of Galaxies +1604.06468 High Energy Astrophysical Phenomena +1604.06475 Astrophysics of Galaxies +1604.06562 Mesoscale and Nanoscale Physics +1604.06654 Complex Variables +1604.06811 Astrophysics of Galaxies +1604.06856 +1604.06879 Astrophysics of Galaxies +1604.06977 Astrophysics of Galaxies +1604.07082 Materials Science +1604.07437 Solar and Stellar Astrophysics +1604.07542 Number Theory +1604.07549 Information Theory +1604.07574 Solar and Stellar Astrophysics +1604.07600 Algebraic Geometry +1604.07674 Plasma Physics +1604.07760 Solar and Stellar Astrophysics +1604.07767 Strongly Correlated Electrons +1604.07921 Phenomenology +1604.07931 +1604.07943 Chaotic Dynamics +1604.08163 Plasma Physics +1604.08306 Earth and Planetary Astrophysics +1604.08355 Instrumentation and Methods for Astrophysics +1604.08555 Astrophysics of Galaxies +1604.08629 Biological Physics +1604.08688 +1604.08725 Mesoscale and Nanoscale Physics +1604.08827 Earth and Planetary Astrophysics +1604.08901 +1605.00011 Phenomenology +1605.00017 Learning +1605.00027 Theory +1605.00042 Optimization and Control +1605.00076 Optimization and Control +1605.00082 Networking and Internet Architecture +1605.00095 Experiment +1605.00108 Computers and Society +1605.00142 +1605.00166 Optics +1605.00167 Computer Science and Game Theory +1605.00184 Information Retrieval +1605.00190 Numerical Analysis +1605.00216 Mesoscale and Nanoscale Physics +1605.00251 Learning +1605.00252 Learning +1605.00264 Materials Science +1605.00280 +1605.00299 Strongly Correlated Electrons +1605.00321 +1605.00328 History and Overview +1605.00332 Optics +1605.00408 High Energy Astrophysical Phenomena +1605.00424 Astrophysics of Galaxies +1605.00426 Fluid Dynamics +1605.00448 Social and Information Networks +1605.00491 Theory +1605.00507 Methodology +1605.00519 Machine Learning +1605.00529 Machine Learning +1605.00584 Dynamical Systems +1605.00619 +1605.00634 General Finance +1605.00650 Astrophysics of Galaxies +1605.00651 Theory +1605.00654 Phenomenology +1605.00666 High Energy Astrophysical Phenomena +1605.00676 Analysis of PDEs +1605.00677 Databases +1605.00678 Mesoscale and Nanoscale Physics +1605.00681 Cryptography and Security +1605.00684 Cryptography and Security +1605.00686 Artificial Intelligence +1605.00687 Analysis of PDEs +1605.00689 Quantum Algebra +1605.00690 Systems and Control +1605.00691 Probability +1605.00693 Information Theory +1605.00695 Information Theory +1605.00697 Theory +1605.00698 Numerical Analysis +1605.00699 Fluid Dynamics +1605.00704 Classical Analysis and ODEs +1605.00705 Information Theory +1605.00706 Algebraic Topology +1605.00707 Computer Vision and Pattern Recognition +1605.00713 +1605.00716 Learning +1605.00718 Mesoscale and Nanoscale Physics +1605.00721 Optimization and Control +1605.00722 Rings and Algebras +1605.00724 Information Theory +1605.00732 Computer Vision and Pattern Recognition +1605.00733 Materials Science +1605.00736 +1605.00737 Robotics +1605.00738 Information Theory +1605.00739 Algebraic Topology +1605.00740 Learning +1605.00743 Computer Vision and Pattern Recognition +1605.00749 Earth and Planetary Astrophysics +1605.00752 High Energy Astrophysical Phenomena +1605.00755 +1605.00762 Mathematical Finance +1605.00763 Computer Vision and Pattern Recognition +1605.00766 Cryptography and Security +1605.00769 Information Theory +1605.00770 Software Engineering +1605.00772 Networking and Internet Architecture +1605.00774 Software Engineering +1605.00775 Computer Vision and Pattern Recognition +1605.00778 Instrumentation and Detectors +1605.00779 Machine Learning +1605.00781 Group Theory +1605.00783 Optics +1605.00784 Phenomenology +1605.00785 Differential Geometry +1605.00787 Artificial Intelligence +1605.00796 +1605.00797 Group Theory +1605.00799 +1605.00801 Analysis of PDEs +1605.00802 Information Theory +1605.00803 Rings and Algebras +1605.00805 Number Theory +1605.00807 Human-Computer Interaction +1605.00809 Phenomenology +1605.00810 Sound +1605.00813 Number Theory +1605.00817 Formal Languages and Automata Theory +1605.00818 Combinatorics +1605.00819 Number Theory +1605.00821 Experiment +1605.00824 Classical Analysis and ODEs +1605.00825 Numerical Analysis +1605.00829 Exactly Solvable and Integrable Systems +1605.00831 Optics +1605.00832 Symbolic Computation +1605.00833 Computers and Society +1605.00834 +1605.00835 Mesoscale and Nanoscale Physics +1605.00836 Analysis of PDEs +1605.00839 Atomic Physics +1605.00840 Group Theory +1605.00842 Category Theory +1605.00843 Theory +1605.00844 +1605.00845 Algebraic Topology +1605.00846 Fluid Dynamics +1605.00848 Rings and Algebras +1605.00854 Computational Engineering, Finance, and Science +1605.00855 Computer Vision and Pattern Recognition +1605.00859 Combinatorics +1605.00860 Computation +1605.00861 Materials Science +1605.00862 +1605.00863 Discrete Mathematics +1605.00867 Fluid Dynamics +1605.00868 Statistics Theory +1605.00871 Analysis of PDEs +1605.00872 Accelerator Physics +1605.00876 Systems and Control +1605.00877 Phenomenology +1605.00878 Soft Condensed Matter +1605.00879 Spectral Theory +1605.00883 Dynamical Systems +1605.00885 Fluid Dynamics +1605.00886 Biomolecules +1605.00887 Symbolic Computation +1605.00888 +1605.00889 Networking and Internet Architecture +1605.00890 History and Overview +1605.00891 Analysis of PDEs +1605.00894 Computer Vision and Pattern Recognition +1605.00895 +1605.00897 Disordered Systems and Neural Networks +1605.00901 Optimization and Control +1605.00903 Computational Complexity +1605.00904 Information Theory +1605.00908 Representation Theory +1605.00910 Human-Computer Interaction +1605.00911 Probability +1605.00914 Data Structures and Algorithms +1605.00916 Differential Geometry +1605.00918 Cryptography and Security +1605.00922 Classical Analysis and ODEs +1605.00926 +1605.00930 Distributed, Parallel, and Cluster Computing +1605.00933 Optimization and Control +1605.00936 Strongly Correlated Electrons +1605.00939 Classical Analysis and ODEs +1605.00945 Logic +1605.00946 Combinatorics +1605.00947 Systems and Control +1605.00950 Logic in Computer Science +1605.00952 Optimization and Control +1605.00953 Rings and Algebras +1605.00954 Metric Geometry +1605.00955 Mesoscale and Nanoscale Physics +1605.00957 Multimedia +1605.00959 Learning +1605.00967 Computational Geometry +1605.00968 Social and Information Networks +1605.00970 +1605.00973 Information Theory +1605.00974 Analysis of PDEs +1605.00976 Differential Geometry +1605.00977 Optimization and Control +1605.00979 Information Theory +1605.00980 K-Theory and Homology +1605.00986 Statistical Mechanics +1605.00987 Cryptography and Security +1605.00992 +1605.00998 Mathematical Software +1605.00999 +1605.01000 Pattern Formation and Solitons +1605.01003 Logic +1605.01004 Logic in Computer Science +1605.01010 Information Retrieval +1605.01011 Statistics Theory +1605.01012 Materials Science +1605.01015 Materials Science +1605.01016 Geometric Topology +1605.01020 Fluid Dynamics +1605.01021 Computer Science and Game Theory +1605.01026 Number Theory +1605.01028 Statistical Finance +1605.01029 Learning +1605.01030 Systems and Control +1605.01031 Optimization and Control +1605.01038 Applications +1605.01039 Populations and Evolution +1605.01041 Spectral Theory +1605.01048 Materials Science +1605.01049 Chemical Physics +1605.01051 +hep-ph/0311024 Phenomenology +0810.2253 Differential Geometry +0907.5571 Complex Variables +1009.4145 Functional Analysis +1212.2326 Differential Geometry +1304.0967 History and Overview +1304.4986 Combinatorics +1305.2721 +1305.6956 Number Theory +1307.0641 Geometric Topology +1311.2242 Number Theory +1401.0083 Analysis of PDEs +1402.6241 Superconductivity +1403.5722 Probability +1405.1725 Cosmology and Nongalactic Astrophysics +1405.2505 Symplectic Geometry +1406.2129 Theory +1407.4456 High Energy Astrophysical Phenomena +1409.2024 Cosmology and Nongalactic Astrophysics +1409.5235 +1410.1025 Neurons and Cognition +1411.0232 Optics +1412.0342 High Energy Astrophysical Phenomena +1412.4021 Computation and Language +1412.5165 Differential Geometry +1412.6702 Representation Theory +1412.7324 Group Theory +1501.05349 Applications +1502.04375 Differential Geometry +1502.04883 High Energy Astrophysical Phenomena +1503.00014 Mesoscale and Nanoscale Physics +1503.01668 Materials Science +1504.00453 +1504.06488 Systems and Control +1505.01417 Probability +1505.03522 High Energy Astrophysical Phenomena +1505.03718 Computer Science and Game Theory +1505.04434 +1506.03378 Learning +1506.04730 Differential Geometry +1506.08028 Algebraic Geometry +1507.01491 Information Theory +1507.02186 Learning +1507.02606 Materials Science +1507.04549 Functional Analysis +1507.06760 Algebraic Geometry +1508.01799 Mesoscale and Nanoscale Physics +1508.04082 Functional Analysis +1508.04744 +1508.05621 Algebraic Geometry +1508.06099 +1508.07467 Numerical Analysis +1509.01061 Experiment +1509.03505 Theory +1509.04565 Discrete Mathematics +1509.04647 Materials Science +1509.04792 +1509.06090 +1509.06220 Logic in Computer Science +1510.01470 Algebraic Topology +1510.02923 Analysis of PDEs +1510.04946 Differential Geometry +1511.02217 Theory +1511.03753 Computer Vision and Pattern Recognition +1511.04071 Phenomenology +1511.04163 Analysis of PDEs +1511.04824 Optics +1511.05393 Numerical Analysis +1511.08052 +1511.08111 Metric Geometry +1512.01039 Networking and Internet Architecture +1512.01936 +1512.04207 Phenomenology +1512.04218 Probability +1512.05138 Astrophysics of Galaxies +1512.05640 +1512.07688 +1512.08645 Optimization and Control +1601.00046 +1601.00777 Rings and Algebras +1601.01067 Symbolic Computation +1601.01261 Numerical Analysis +1601.03764 Computation and Language +1601.04037 Robotics +1601.05847 Optics +1601.05872 Probability +1601.06819 +1601.06949 Strongly Correlated Electrons +1601.07035 Statistical Mechanics +1602.00843 Earth and Planetary Astrophysics +1602.01636 Numerical Analysis +1602.02030 Multimedia +1602.02712 Algebraic Geometry +1602.03868 High Energy Astrophysical Phenomena +1602.04301 Social and Information Networks +1602.04339 Symbolic Computation +1602.04916 Geometric Topology +1602.05201 Mesoscale and Nanoscale Physics +1602.05344 +1602.07245 Theory +1602.07817 Mesoscale and Nanoscale Physics +1602.07983 Strongly Correlated Electrons +1602.08492 High Energy Astrophysical Phenomena +1602.08806 Phenomenology +1603.00041 Mesoscale and Nanoscale Physics +1603.00670 Physics and Society +1603.01970 Neurons and Cognition +1603.02119 Analysis of PDEs +1603.02842 Statistical Mechanics +1603.04865 Cryptography and Security +1603.05297 Applications +1603.05777 Chaotic Dynamics +1603.06233 Solar and Stellar Astrophysics +1603.06646 Strongly Correlated Electrons +1603.08452 Digital Libraries +1603.08578 Statistics Theory +1603.08834 Phenomenology +1603.09355 Theory +1604.00802 Analysis of PDEs +1604.01039 Phenomenology +1604.02029 Phenomenology +1604.02464 Statistical Mechanics +1604.02716 Digital Libraries +1604.05529 Computation and Language +1604.06221 Information Theory +1604.07864 High Energy Astrophysical Phenomena +1604.08066 Distributed, Parallel, and Cluster Computing +1605.01017 Populations and Evolution +1605.01112 Optics +1605.01660 Metric Geometry +1605.01719 Differential Geometry +1605.02024 Cosmology and Nongalactic Astrophysics +1605.03104 Physics and Society +1605.03646 High Energy Astrophysical Phenomena +1605.03753 Computational Geometry +1605.05170 Quantum Gases +1605.05588 Systems and Control +1605.05974 Cosmology and Nongalactic Astrophysics +1605.08411 Phenomenology +1605.09040 +1605.09489 Subcellular Processes +1606.00758 +1606.00825 Neural and Evolutionary Computing +1606.01386 Classical Analysis and ODEs +1606.01409 Theory +1606.02998 +1606.03201 +1606.03938 Discrete Mathematics +1606.04347 Optics +1606.04379 +1606.07589 Rings and Algebras +1606.08731 Optimization and Control +1606.09140 Artificial Intelligence +1606.09189 Dynamical Systems +1606.09488 Discrete Mathematics +1607.00717 +1607.00937 Disordered Systems and Neural Networks +1607.01298 +1607.02115 +1607.02503 Mesoscale and Nanoscale Physics +1607.02567 Cosmology and Nongalactic Astrophysics +1607.03796 Instrumentation and Methods for Astrophysics +1607.04393 Materials Science +1607.04491 Theory +1607.05151 Differential Geometry +1607.05152 Differential Geometry +1607.05314 Combinatorics +1607.05447 Computer Vision and Pattern Recognition +1607.05468 Commutative Algebra +1607.05559 Functional Analysis +1607.05770 Probability +1607.05891 Differential Geometry +1607.06030 Soft Condensed Matter +1607.06079 General Mathematics +1607.06080 History and Philosophy of Physics +1607.06081 Mesoscale and Nanoscale Physics +1607.06082 General Mathematics +1607.06083 Phenomenology +1607.06086 Astrophysics of Galaxies +1607.06090 +1607.06097 Cosmology and Nongalactic Astrophysics +1607.06098 Cosmology and Nongalactic Astrophysics +1607.06106 Formal Languages and Automata Theory +1607.06107 Mesoscale and Nanoscale Physics +1607.06109 Theory +1607.06110 Theory +1607.06113 Neural and Evolutionary Computing +1607.06115 Representation Theory +1607.06116 Functional Analysis +1607.06118 History and Overview +1607.06120 +1607.06122 Combinatorics +1607.06125 Computer Vision and Pattern Recognition +1607.06126 Combinatorics +1607.06127 Functional Analysis +1607.06128 +1607.06129 High Energy Astrophysical Phenomena +1607.06132 Data Structures and Algorithms +1607.06133 Disordered Systems and Neural Networks +1607.06136 Computational Geometry +1607.06139 Distributed, Parallel, and Cluster Computing +1607.06140 Computer Vision and Pattern Recognition +1607.06141 Cryptography and Security +1607.06142 Fluid Dynamics +1607.06143 Information Theory +1607.06144 Computer Vision and Pattern Recognition +1607.06146 Learning +1607.06149 Algebraic Geometry +1607.06153 Computation and Language +1607.06155 Theory +1607.06158 Probability +1607.06160 Numerical Analysis +1607.06166 Computer Vision and Pattern Recognition +1607.06170 Medical Physics +1607.06173 Computational Complexity +1607.06175 Solar and Stellar Astrophysics +1607.06177 Dynamical Systems +1607.06178 Computer Vision and Pattern Recognition +1607.06182 Social and Information Networks +1607.06183 Soft Condensed Matter +1607.06186 Artificial Intelligence +1607.06187 Artificial Intelligence +1607.06189 Commutative Algebra +1607.06191 Instrumentation and Methods for Astrophysics +1607.06196 Classical Analysis and ODEs +1607.06198 Artificial Intelligence +1607.06202 Materials Science +1607.06203 Data Structures and Algorithms +1607.06206 Phenomenology +1607.06207 Superconductivity +1607.06208 Computation and Language +1607.06211 Probability +1607.06212 Materials Science +1607.06213 Logic +1607.06215 Multimedia +1607.06216 Functional Analysis +1607.06217 Solar and Stellar Astrophysics +1607.06219 Social and Information Networks +1607.06224 Probability +1607.06226 Information Theory +1607.06227 +1607.06229 +1607.06231 Information Theory +1607.06232 Human-Computer Interaction +1607.06235 Computer Vision and Pattern Recognition +1607.06236 Mesoscale and Nanoscale Physics +1607.06239 High Energy Astrophysical Phenomena +1607.06244 Geometric Topology +1607.06247 Economics +1607.06250 Computer Vision and Pattern Recognition +1607.06252 Analysis of PDEs +1607.06253 Astrophysics of Galaxies +1607.06255 Information Theory +1607.06256 Cosmology and Nongalactic Astrophysics +1607.06257 Differential Geometry +1607.06259 Phenomenology +1607.06260 Digital Libraries +1607.06266 Differential Geometry +1607.06267 Classical Analysis and ODEs +1607.06270 General Topology +1607.06271 +1607.06273 General Topology +1607.06274 Computational Geometry +1607.06279 Functional Analysis +1607.06281 Geometric Topology +1607.06288 Applications +1607.06290 Computer Vision and Pattern Recognition +1607.06294 Learning +1607.06297 Analysis of PDEs +1607.06298 +1607.06299 Computation and Language +1607.06300 Complex Variables +1607.06301 Statistical Mechanics +1607.06303 Numerical Analysis +1607.06306 Complex Variables +1607.06310 Complex Variables +1607.06312 Solar and Stellar Astrophysics +1607.06313 Information Theory +1607.06315 Combinatorics +1607.06316 Complex Variables +1607.06317 Computer Vision and Pattern Recognition +1607.06318 Computer Vision and Pattern Recognition +1607.06319 Probability +1607.06320 +1607.06323 Phenomenology +1607.06325 Cosmology and Nongalactic Astrophysics +1607.06326 Theory +1607.06329 +1607.06330 Computation and Language +1607.06332 Artificial Intelligence +1607.06334 Group Theory +1607.06335 Learning +1607.06337 Disordered Systems and Neural Networks +1607.06338 Mesoscale and Nanoscale Physics +1607.06339 Learning +1607.06342 Representation Theory +1607.06344 Computational Geometry +1607.06345 Algebraic Geometry +1607.06347 Analysis of PDEs +1607.06348 Atomic Physics +1607.06349 Robotics +1607.06353 Superconductivity +1607.06356 Computer Vision and Pattern Recognition +1607.06357 Superconductivity +1607.06358 Molecular Networks +1607.06361 Rings and Algebras +1607.06364 Machine Learning +1607.06369 Biological Physics +1607.06370 Rings and Algebras +1607.06372 Analysis of PDEs +1607.06373 Mathematical Finance +1607.06377 Cryptography and Security +1607.06380 Number Theory +1607.06383 Adaptation and Self-Organizing Systems +1607.06385 Mesoscale and Nanoscale Physics +1607.06392 Algebraic Geometry +1607.06393 Combinatorics +1607.06397 Instrumentation and Methods for Astrophysics +1607.06398 Phenomenology +1607.06401 Information Theory +1607.06402 Other Computer Science +1607.06404 Materials Science +1607.06406 +1607.06409 Statistics Theory +1607.06410 Materials Science +1607.06412 +1607.06413 Category Theory +1607.06416 Computer Vision and Pattern Recognition +1607.06417 Networking and Internet Architecture +1607.06418 Group Theory +1607.06420 Group Theory +1607.06422 +1607.06426 Analysis of PDEs +1607.06428 Theory +1607.06429 Computers and Society +1607.06430 Algebraic Topology +1607.06432 Classical Analysis and ODEs +1607.06433 Complex Variables +1607.06434 Analysis of PDEs +1607.06439 Information Theory +1607.06442 Data Structures and Algorithms +1607.06444 Computational Complexity +1607.06446 Experiment +1607.06447 Applications +1607.06450 Machine Learning +0812.3347 +0905.3708 Instrumentation and Methods for Astrophysics +0905.4845 Astrophysics of Galaxies +0906.0559 High Energy Astrophysical Phenomena +0906.2093 High Energy Astrophysical Phenomena +0906.2096 High Energy Astrophysical Phenomena +0906.2140 High Energy Astrophysical Phenomena +0906.2420 High Energy Astrophysical Phenomena +0906.4346 High Energy Astrophysical Phenomena +0906.4717 High Energy Astrophysical Phenomena +0906.5440 High Energy Astrophysical Phenomena +0907.2628 High Energy Astrophysical Phenomena +1003.3970 Algebraic Geometry +1105.2045 Commutative Algebra +1203.4352 +1206.1102 Number Theory +1211.0406 Algebraic Geometry +1211.1813 K-Theory and Homology +1301.5572 Instrumentation and Methods for Astrophysics +1302.6664 Classical Analysis and ODEs +1303.6126 Phenomenology +1304.6059 K-Theory and Homology +1307.2868 +1309.3834 Fluid Dynamics +1309.5644 Algebraic Geometry +1310.4292 Complex Variables +1310.5554 Algebraic Geometry +1310.8609 Symplectic Geometry +1311.5787 Optimization and Control +1312.1143 Combinatorics +1401.0791 Algebraic Geometry +1401.1784 Commutative Algebra +1402.2134 Group Theory +1402.2136 Data Structures and Algorithms +1402.4227 Phenomenology +1404.1358 +1405.3163 Algebraic Geometry +1405.5780 Statistical Mechanics +1405.6705 Representation Theory +1406.2958 Statistical Mechanics +1407.2833 Mesoscale and Nanoscale Physics +1407.5221 Phenomenology +1407.6344 Algebraic Geometry +1408.0429 Number Theory +1408.2415 +1409.0835 Analysis of PDEs +1409.3425 Combinatorics +1410.5739 Algebraic Geometry +1410.5935 Complex Variables +1410.7118 Dynamical Systems +1411.0578 Dynamical Systems +1411.6284 +1412.0271 Discrete Mathematics +1412.1520 Information Theory +1412.1700 Algebraic Topology +1412.2030 Functional Analysis +1412.3019 +1412.5709 Dynamical Systems +1412.8654 Statistical Mechanics +1501.00721 Computational Geometry +1501.01310 Theory +1501.05430 Computational Physics +1501.05539 Phenomenology +1501.06812 Strongly Correlated Electrons +1502.02646 Number Theory +1502.03473 Learning +1502.06557 Methodology +1502.06886 Fluid Dynamics +1502.07474 Differential Geometry +1503.02769 Lattice +1503.04635 +1503.06299 Differential Geometry +1503.06427 Probability +1504.00683 Phenomenology +1504.01471 Geometric Topology +1504.04625 Earth and Planetary Astrophysics +1504.05378 Differential Geometry +1504.05592 Astrophysics of Galaxies +1504.06351 Lattice +1504.07959 Data Structures and Algorithms +1505.01205 Statistical Mechanics +1505.01669 Category Theory +1505.01737 Classical Physics +1505.04290 Theory +1505.04911 Data Structures and Algorithms +1505.05634 Phenomenology +1505.06215 +1505.07318 +1506.01006 Analysis of PDEs +1506.01061 Mesoscale and Nanoscale Physics +1506.02153 Formal Languages and Automata Theory +1506.03491 Mesoscale and Nanoscale Physics +1506.04053 Quantum Gases +1506.06906 +1506.07267 Complex Variables +1506.07587 Commutative Algebra +1506.08198 Astrophysics of Galaxies +1506.08786 +1507.00963 Statistical Mechanics +1507.03081 Cosmology and Nongalactic Astrophysics +1507.03113 Computational Complexity +1507.03263 Statistics Theory +1507.03886 Physics and Society +1507.04153 Strongly Correlated Electrons +1507.07551 Disordered Systems and Neural Networks +1508.00621 Superconductivity +1508.01241 Classical Analysis and ODEs +1508.01658 Theory +1508.02734 Analysis of PDEs +1508.02914 Quantum Gases +1508.04320 Strongly Correlated Electrons +1508.04980 High Energy Astrophysical Phenomena +1508.05345 +1508.07162 Geometric Topology +1508.07281 Earth and Planetary Astrophysics +1509.00651 Computer Vision and Pattern Recognition +1509.01780 Mesoscale and Nanoscale Physics +1509.02001 Mesoscale and Nanoscale Physics +1509.03060 Chemical Physics +1509.04939 Experiment +1509.05562 +1509.07034 Astrophysics of Galaxies +1509.07433 Materials Science +1509.08895 Cosmology and Nongalactic Astrophysics +1510.00389 Phenomenology +1510.00400 Phenomenology +1510.00751 Phenomenology +1510.00820 +1510.01244 High Energy Astrophysical Phenomena +1510.01525 Differential Geometry +1510.01691 Phenomenology +1510.01872 Materials Science +1510.02627 +1510.03840 Optimization and Control +1510.04098 Mesoscale and Nanoscale Physics +1510.04102 Phenomenology +1510.04402 Strongly Correlated Electrons +1510.04676 Data Structures and Algorithms +1510.05345 Dynamical Systems +1510.05671 Astrophysics of Galaxies +1510.06028 Astrophysics of Galaxies +1510.06665 Cosmology and Nongalactic Astrophysics +1510.06848 Earth and Planetary Astrophysics +1510.07052 Earth and Planetary Astrophysics +1510.07240 Cosmology and Nongalactic Astrophysics +1510.07635 Solar and Stellar Astrophysics +1510.07801 High Energy Astrophysical Phenomena +1510.08837 Earth and Planetary Astrophysics +1510.08858 Phenomenology +1510.08907 High Energy Astrophysical Phenomena +1510.09134 Phenomenology +1511.00501 Experiment +1511.00560 Theory +1511.00696 Astrophysics of Galaxies +1511.00945 Exactly Solvable and Integrable Systems +1511.01033 Astrophysics of Galaxies +1511.02100 Astrophysics of Galaxies +1511.02386 Machine Learning +1511.02734 Combinatorics +1511.02864 Astrophysics of Galaxies +1511.03058 Mesoscale and Nanoscale Physics +1511.03391 Instrumentation and Methods for Astrophysics +1511.03670 Astrophysics of Galaxies +1511.03818 Astrophysics of Galaxies +1511.03863 Economics +1511.04162 Statistics Theory +1511.04342 Phenomenology +1511.04550 Rings and Algebras +1511.04689 Astrophysics of Galaxies +1511.05017 Superconductivity +1511.05021 General Topology +1511.05061 Solar and Stellar Astrophysics +1511.05534 Cosmology and Nongalactic Astrophysics +1511.05615 Popular Physics +1511.05617 +1511.05758 +1511.05849 Experiment +1511.05934 Analysis of PDEs +1511.06010 Combinatorics +1511.06017 Computer Science and Game Theory +1511.06091 Materials Science +1511.06249 +1511.06500 Solar and Stellar Astrophysics +1511.06512 Statistical Mechanics +1511.06846 Phenomenology +1511.07116 Astrophysics of Galaxies +1511.07625 Theory +1511.07801 Cosmology and Nongalactic Astrophysics +1511.07883 Chemical Physics +1511.08567 Solar and Stellar Astrophysics +1511.08744 Atomic Physics +1511.08985 Geometric Topology +1511.09125 +1511.09198 Instrumentation and Methods for Astrophysics +1511.09246 Instrumentation and Detectors +1512.00131 Algebraic Geometry +1512.00160 Quantum Gases +1512.00509 Mesoscale and Nanoscale Physics +1512.00510 High Energy Astrophysical Phenomena +1512.00814 Mesoscale and Nanoscale Physics +1512.00920 Astrophysics of Galaxies +1512.00945 Optics +1512.01035 +1512.01261 Superconductivity +1512.01371 +1512.01538 +1512.01746 Theory +1512.01988 +1512.02096 +1512.02154 Earth and Planetary Astrophysics +1512.02269 Astrophysics of Galaxies +1512.02544 Superconductivity +1512.02886 Theory +1512.03298 Earth and Planetary Astrophysics +1512.03390 Physics and Society +1512.03560 +1512.03593 +1512.03720 Numerical Analysis +1512.03792 +1512.03945 Earth and Planetary Astrophysics +1512.03973 Pattern Formation and Solitons +1512.03979 Instrumentation and Methods for Astrophysics +1512.04383 Theory +1512.04505 Materials Science +1512.04522 Astrophysics of Galaxies +1512.04622 Earth and Planetary Astrophysics +1512.04757 Quantum Gases +1512.04939 Phenomenology +1512.05426 High Energy Astrophysical Phenomena +1512.05650 +1512.06089 Classical Analysis and ODEs +1512.06120 Chemical Physics +1512.06149 Earth and Planetary Astrophysics +1512.06265 Phenomenology +1512.06731 +1512.06829 +1512.07065 Superconductivity +1512.07223 +1512.07238 +1512.07419 Experiment +1512.07440 Chemical Physics +1512.07616 Phenomenology +1512.07952 Plasma Physics +1512.07975 Statistical Mechanics +1512.08108 High Energy Astrophysical Phenomena +1512.08123 Phenomenology +1512.08449 +1512.08461 Phenomenology +1512.08520 Solar and Stellar Astrophysics +1512.08701 Combinatorics +1512.08761 Theory +1512.08916 Theory +1512.08974 Phenomenology +1512.09151 Theory +1512.09288 +1601.00405 Cosmology and Nongalactic Astrophysics +1601.00638 Phenomenology +1601.00709 Superconductivity +1601.00853 Atomic Physics +1601.00954 Statistical Mechanics +1601.00959 Quantum Gases +1601.00961 Mesoscale and Nanoscale Physics +1601.01088 Optics +1601.01494 +1601.01707 Mesoscale and Nanoscale Physics +1601.01727 Superconductivity +1601.01800 Theory +1601.01844 Statistical Mechanics +1601.02168 +1601.02206 Quantum Gases +1601.02347 Astrophysics of Galaxies +1601.02654 Astrophysics of Galaxies +1601.02740 High Energy Astrophysical Phenomena +1601.03280 Solar and Stellar Astrophysics +1601.03393 High Energy Astrophysical Phenomena +1601.03677 Mesoscale and Nanoscale Physics +1601.03681 High Energy Astrophysical Phenomena +1601.03878 Mesoscale and Nanoscale Physics +1601.03908 +1601.03917 High Energy Astrophysical Phenomena +1601.03964 Theory +1601.04260 Theory +1601.04273 Disordered Systems and Neural Networks +1601.04329 Mesoscale and Nanoscale Physics +1601.04352 Statistical Mechanics +1601.04394 High Energy Astrophysical Phenomena +1601.04434 Mesoscale and Nanoscale Physics +1601.04497 Mesoscale and Nanoscale Physics +1601.04671 +1601.04855 Solar and Stellar Astrophysics +1601.04900 +1601.04940 Disordered Systems and Neural Networks +1601.04944 Theory +1601.04994 +1601.05107 Instrumentation and Methods for Astrophysics +1601.05166 Optics +1601.05396 +1601.05441 +1601.05512 Strongly Correlated Electrons +1601.05730 Superconductivity +1601.05732 Mesoscale and Nanoscale Physics +1601.05894 Strongly Correlated Electrons +1601.05961 Distributed, Parallel, and Cluster Computing +1601.06227 Statistical Mechanics +1601.06247 +1601.06363 High Energy Astrophysical Phenomena +1601.06745 Optics +1601.06782 Astrophysics of Galaxies +1601.06789 +1601.06987 Phenomenology +1601.07067 Mesoscale and Nanoscale Physics +1601.07203 +1601.07531 Instrumentation and Methods for Astrophysics +1601.07956 Astrophysics of Galaxies +1601.08160 +1601.08250 Soft Condensed Matter +1602.00437 Superconductivity +1602.00623 Phenomenology +1602.00686 Astrophysics of Galaxies +1602.00693 Phenomenology +1602.00779 Space Physics +1602.01210 +1602.01397 Classical Analysis and ODEs +1602.01646 Lattice +1602.01679 Strongly Correlated Electrons +1602.02112 Materials Science +1602.02635 Instrumentation and Methods for Astrophysics +1602.02878 Theory +1602.03041 Optimization and Control +1602.03085 Cosmology and Nongalactic Astrophysics +1602.03264 Machine Learning +1602.03309 +1602.03427 Statistics Theory +1602.03444 Phenomenology +1602.04129 Disordered Systems and Neural Networks +1602.04138 Cryptography and Security +1602.04161 Mesoscale and Nanoscale Physics +1602.04224 +1602.04322 +1602.04481 Logic +1602.04488 High Energy Astrophysical Phenomena +1602.04810 High Energy Astrophysical Phenomena +1602.05085 +1602.05138 Superconductivity +1602.05199 Astrophysics of Galaxies +1602.05357 Statistical Mechanics +1602.05525 Lattice +1602.05582 Astrophysics of Galaxies +1602.05961 Cosmology and Nongalactic Astrophysics +1602.06128 Statistical Mechanics +1602.06185 Fluid Dynamics +1602.06243 Strongly Correlated Electrons +1602.06291 Computation and Language +1602.06336 Mesoscale and Nanoscale Physics +1602.06341 Instrumentation and Methods for Astrophysics +1602.06491 Phenomenology +1602.06638 Computational Physics +1602.06782 Mesoscale and Nanoscale Physics +1602.06877 Superconductivity +1602.06961 High Energy Astrophysical Phenomena +1602.06962 Theory +1602.07270 Phenomenology +1602.07303 High Energy Astrophysical Phenomena +1602.07316 Astrophysics of Galaxies +1602.07386 +1602.07436 Solar and Stellar Astrophysics +1602.07665 +1602.07695 Astrophysics of Galaxies +1602.08108 Cosmology and Nongalactic Astrophysics +1602.08189 Atomic Physics +1602.08196 Astrophysics of Galaxies +1602.08261 +1602.08421 Phenomenology +1602.08437 +1602.08505 Astrophysics of Galaxies +1602.08651 Pattern Formation and Solitons +1602.09041 Phenomenology +1602.09084 Theory +1602.09098 Earth and Planetary Astrophysics +1603.00184 Theory +1603.00218 Theory +1603.00262 Astrophysics of Galaxies +1603.00272 Probability +1603.00512 Materials Science +1603.00557 Soft Condensed Matter +1603.00603 High Energy Astrophysical Phenomena +1603.00701 Solar and Stellar Astrophysics +1603.00877 High Energy Astrophysical Phenomena +1603.00947 Astrophysics of Galaxies +1603.00998 High Energy Astrophysical Phenomena +1603.01247 Phenomenology +1603.01893 Phenomenology +1603.01971 High Energy Astrophysical Phenomena +1603.02165 Theory +1603.02403 Phenomenology +1603.02501 Learning +1603.02716 +1603.02741 +1603.02829 Mesoscale and Nanoscale Physics +1603.03367 Superconductivity +1603.03371 Solar and Stellar Astrophysics +1603.03382 Theory +1603.03487 Superconductivity +1603.03517 Solar and Stellar Astrophysics +1603.03561 +1603.04147 Mesoscale and Nanoscale Physics +1603.04294 Astrophysics of Galaxies +1603.04296 Materials Science +1603.04382 Number Theory +1603.04405 Cosmology and Nongalactic Astrophysics +1603.04406 Earth and Planetary Astrophysics +1603.04523 Astrophysics of Galaxies +1603.04534 Astrophysics of Galaxies +1603.04555 Solar and Stellar Astrophysics +1603.04677 Materials Science +1603.04854 Phenomenology +1603.04959 Solar and Stellar Astrophysics +1603.05002 Lattice +1603.05209 Cosmology and Nongalactic Astrophysics +1603.05298 Phenomenology +1603.05617 Astrophysics of Galaxies +1603.05644 Solar and Stellar Astrophysics +1603.05647 Rings and Algebras +1603.05870 Solar and Stellar Astrophysics +1603.05881 Astrophysics of Galaxies +1603.06092 Solar and Stellar Astrophysics +1603.06207 Theory +1603.06589 Astrophysics of Galaxies +1603.06648 +1603.06779 Astrophysics of Galaxies +1603.06832 High Energy Astrophysical Phenomena +1603.06885 Astrophysics of Galaxies +1603.06974 Astrophysics of Galaxies +1603.07270 Statistical Mechanics +1603.07284 Solar and Stellar Astrophysics +1603.07306 Earth and Planetary Astrophysics +1603.07492 Earth and Planetary Astrophysics +1603.07499 Mesoscale and Nanoscale Physics +1603.07563 Solar and Stellar Astrophysics +1603.07596 Solar and Stellar Astrophysics +1603.07675 High Energy Astrophysical Phenomena +1603.07761 Solar and Stellar Astrophysics +1603.08036 Dynamical Systems +1603.08054 +1603.08238 Earth and Planetary Astrophysics +1603.08294 Phenomenology +1603.08327 High Energy Astrophysical Phenomena +1603.08437 High Energy Astrophysical Phenomena +1603.08520 Solar and Stellar Astrophysics +1603.09216 Mesoscale and Nanoscale Physics +1603.09225 Earth and Planetary Astrophysics +1603.09349 Experiment +1603.09442 High Energy Astrophysical Phenomena +1603.09443 +1603.09721 Phenomenology +1604.00019 High Energy Astrophysical Phenomena +1604.00171 Astrophysics of Galaxies +1604.00181 Instrumentation and Detectors +1604.00373 High Energy Astrophysical Phenomena +1604.00426 Astrophysics of Galaxies +1604.00658 Quantum Gases +1604.00715 Solar and Stellar Astrophysics +1604.00729 Cosmology and Nongalactic Astrophysics +1604.00956 Lattice +1604.01034 High Energy Astrophysical Phenomena +1604.01053 Astrophysics of Galaxies +1604.01096 Astrophysics of Galaxies +1604.01103 Solar and Stellar Astrophysics +1604.01118 Operator Algebras +1604.01141 Astrophysics of Galaxies +1604.01156 Astrophysics of Galaxies +1604.01467 Astrophysics of Galaxies +1604.01607 Cosmology and Nongalactic Astrophysics +1604.01735 Plasma Physics +1604.01779 High Energy Astrophysical Phenomena +1604.02146 Solar and Stellar Astrophysics +1604.02163 Cosmology and Nongalactic Astrophysics +1604.02415 Earth and Planetary Astrophysics +1604.02433 Astrophysics of Galaxies +1604.02581 Solar and Stellar Astrophysics +1604.02582 Quantum Gases +1604.03026 Solar and Stellar Astrophysics +1604.03233 High Energy Astrophysical Phenomena +1604.03431 General Physics +1604.03500 Representation Theory +1604.03546 High Energy Astrophysical Phenomena +1604.03551 Astrophysics of Galaxies +1604.03555 Phenomenology +1604.03569 Astrophysics of Galaxies +1604.03718 Strongly Correlated Electrons +1604.03946 High Energy Astrophysical Phenomena +1604.04078 Solar and Stellar Astrophysics +1604.04305 High Energy Astrophysical Phenomena +1604.04469 Solar and Stellar Astrophysics +1604.04628 Solar and Stellar Astrophysics +1604.04872 General Finance +1604.04999 Systems and Control +1604.05153 General Physics +1604.05336 High Energy Astrophysical Phenomena +1604.05389 Software Engineering +1604.05401 Astrophysics of Galaxies +1604.05405 Solar and Stellar Astrophysics +1604.05427 High Energy Astrophysical Phenomena +1604.05684 Operator Algebras +1604.05880 Earth and Planetary Astrophysics +1604.06012 Solar and Stellar Astrophysics +1604.06057 Learning +1604.06092 Earth and Planetary Astrophysics +1604.06371 Earth and Planetary Astrophysics +1604.06569 Strongly Correlated Electrons +1604.06858 Lattice +1604.06902 Earth and Planetary Astrophysics +1604.06990 Theory +1604.07516 Materials Science +1604.07558 Earth and Planetary Astrophysics +1604.07601 Phenomenology +1604.07845 Phenomenology +1604.07927 Strongly Correlated Electrons +1604.08212 Theory +1604.08592 Solar and Stellar Astrophysics +1605.00503 Solar and Stellar Astrophysics +1605.00913 +1605.00960 Phenomenology +1605.01043 High Energy Astrophysical Phenomena +1605.01152 Solar and Stellar Astrophysics +1605.02261 Logic +1605.02299 Solar and Stellar Astrophysics +1605.02925 Theory +1605.03130 Differential Geometry +1605.03298 Quantum Gases +1605.03307 Mesoscale and Nanoscale Physics +1605.03312 +1605.03576 Instrumentation and Methods for Astrophysics +1605.03683 Trading and Market Microstructure +1605.03734 Astrophysics of Galaxies +1605.03775 +1605.04023 Cosmology and Nongalactic Astrophysics +1605.04050 Materials Science +1605.04257 Superconductivity +1605.04461 High Energy Astrophysical Phenomena +1605.04843 +1605.04856 Astrophysics of Galaxies +1605.05125 High Energy Astrophysical Phenomena +1605.05136 Probability +1605.05331 Earth and Planetary Astrophysics +1605.05894 Computation and Language +1605.06074 High Energy Astrophysical Phenomena +1605.06413 High Energy Astrophysical Phenomena +1605.06516 Solar and Stellar Astrophysics +1605.06543 Representation Theory +1605.06692 Discrete Mathematics +1605.06887 Strongly Correlated Electrons +1605.06965 Earth and Planetary Astrophysics +1605.07001 Astrophysics of Galaxies +1605.07054 Number Theory +1605.07134 +1605.07189 Astrophysics of Galaxies +1605.07208 Optics +1605.07389 Disordered Systems and Neural Networks +1605.07490 Materials Science +1605.08434 Representation Theory +1605.08628 Instrumentation and Methods for Astrophysics +1605.08695 Distributed, Parallel, and Cluster Computing +1605.08791 Commutative Algebra +1605.08849 Materials Science +1605.08952 Experiment +1605.08997 Algebraic Geometry +1605.09016 Computer Vision and Pattern Recognition +1605.09023 Neurons and Cognition +1605.09193 Cryptography and Security +1605.09203 History and Overview +1605.09205 Number Theory +1605.09256 Representation Theory +1605.09338 Social and Information Networks +1605.09346 Learning +1605.09373 +1605.09374 +1605.09375 Mesoscale and Nanoscale Physics +1605.09376 Phenomenology +1605.09386 Astrophysics of Galaxies +1605.09390 Strongly Correlated Electrons +1605.09393 Algebraic Geometry +1605.09397 Astrophysics of Galaxies +1605.09399 Computational Physics +1605.09403 Combinatorics +1605.09408 +1605.09409 Information Theory +1605.09412 Classical Analysis and ODEs +1605.09413 Soft Condensed Matter +1605.09416 Optics +1605.09417 Cosmology and Nongalactic Astrophysics +1605.09420 Differential Geometry +1605.09425 Multimedia +1605.09428 Number Theory +1605.09430 Commutative Algebra +1605.09431 Number Theory +1605.09432 Human-Computer Interaction +1605.09436 Optics +1605.09439 Systems and Control +1605.09440 Instrumentation and Detectors +1605.09441 Computer Vision and Pattern Recognition +1605.09444 Systems and Control +1605.09445 Computation +1605.09446 Logic in Computer Science +1605.09447 Soft Condensed Matter +1605.09450 Physics and Society +1605.09451 Graphics +1605.09452 Computer Vision and Pattern Recognition +1605.09453 Analysis of PDEs +1605.09454 Methodology +1605.09457 Statistics Theory +1605.09458 Learning +1605.09464 Plasma Physics +1605.09465 Systems and Control +1605.09466 Computation +1605.09467 Solar and Stellar Astrophysics +1605.09470 +1605.09471 Networking and Internet Architecture +1605.09473 Social and Information Networks +1605.09477 Information Retrieval +1605.09480 +1605.09484 Statistical Finance +1605.09486 Multimedia +1605.09487 Number Theory +1605.09488 Optimization and Control +1605.09492 Algebraic Geometry +1605.09493 Information Theory +1605.09497 Computer Science and Game Theory +1605.09500 Representation Theory +1605.09502 Phenomenology +1605.09505 Artificial Intelligence +1605.09509 Systems and Control +1605.09513 Distributed, Parallel, and Cluster Computing +1605.09514 Solar and Stellar Astrophysics +1605.09515 Digital Libraries +1605.09516 Distributed, Parallel, and Cluster Computing +1605.09518 Discrete Mathematics +1605.09520 Data Structures and Algorithms +1605.09529 High Energy Astrophysical Phenomena +1605.09530 Distributed, Parallel, and Cluster Computing +1605.09531 +1605.09533 Computer Vision and Pattern Recognition +1605.09535 Molecular Networks +1605.09536 +1605.09538 Strongly Correlated Electrons +1605.09539 Mesoscale and Nanoscale Physics +1605.09540 Atomic and Molecular Clusters +1605.09541 Classical Analysis and ODEs +1605.09543 Systems and Control +1605.09544 Atomic and Molecular Clusters +1605.09545 Earth and Planetary Astrophysics +1605.09546 Computer Vision and Pattern Recognition +1605.09547 Atomic and Molecular Clusters +1605.09548 Computer Science and Game Theory +1605.09549 Cosmology and Nongalactic Astrophysics +1605.09551 Information Theory +1605.09554 Computational Physics +1605.09555 +1605.09556 Representation Theory +1605.09557 Systems and Control +1605.09559 Computer Vision and Pattern Recognition +1605.09561 +1605.09562 Dynamical Systems +1605.09564 Computation and Language +1605.09566 Analysis of PDEs +1605.09569 Analysis of PDEs +1605.09570 Analysis of PDEs +1605.09571 Phenomenology +1605.09573 Computational Physics +1605.09574 Analysis of PDEs +1605.09578 Optics +1605.09582 Computer Vision and Pattern Recognition +1605.09583 Chaotic Dynamics +1605.09584 Computer Vision and Pattern Recognition +1605.09585 Rings and Algebras +1605.09587 Combinatorics +1605.09589 Combinatorics +1605.09590 Mesoscale and Nanoscale Physics +1605.09591 Fluid Dynamics +1605.09593 Learning +1605.09595 Space Physics +1605.09596 Differential Geometry +1605.09599 Rings and Algebras +1605.09600 Dynamical Systems +1605.09601 Information Theory +1605.09602 Networking and Internet Architecture +1605.09605 Space Physics +1605.09606 Computational Physics +1605.09608 Space Physics +1605.09609 Differential Geometry +1605.09612 Computer Vision and Pattern Recognition +1605.09615 Medical Physics +1605.09616 Functional Analysis +1605.09617 Number Theory +1605.09619 Machine Learning +1605.09625 Differential Geometry +1605.09626 Computers and Society +1605.09630 Instrumentation and Detectors +1605.09631 Dynamical Systems +1605.09632 Lattice +1605.09635 Combinatorics +1605.09636 Mesoscale and Nanoscale Physics +1605.09641 Systems and Control +1605.09644 Solar and Stellar Astrophysics +1605.09645 Optics +1605.09646 Learning +1605.09648 Fluid Dynamics +1605.09652 Applications +1605.09655 Functional Analysis +1605.09657 Algebraic Geometry +1605.09659 Number Theory +1605.09663 Probability +1605.09664 Fluid Dynamics +1605.09666 Fluid Dynamics +1605.09668 Probability +1605.09671 Phenomenology +1605.09672 Classical Analysis and ODEs +1605.09676 Numerical Analysis +1605.09678 Human-Computer Interaction +1605.09679 Dynamical Systems +1605.09680 Phenomenology +1605.09691 Materials Science +1605.09693 Differential Geometry +1605.09698 Materials Science +1605.09700 Methodology +1605.09702 Analysis of PDEs +1605.09703 Systems and Control +1605.09704 Differential Geometry +1605.09705 Functional Analysis +1605.09706 Analysis of PDEs +1605.09708 Quantum Algebra +1605.09709 Dynamical Systems +1605.09711 Networking and Internet Architecture +1605.09716 Information Theory +1605.09719 General Physics +1605.09720 Trading and Market Microstructure +1605.09721 Machine Learning +1605.09724 Chemical Physics +1605.09725 Chemical Physics +1605.09727 Geophysics +1605.09733 Computer Science and Game Theory +1605.09735 Artificial Intelligence +1605.09737 Graphics +1605.09739 Optimization and Control +1605.09741 Materials Science +1605.09748 Commutative Algebra +1605.09749 Combinatorics +1605.09753 Databases +1605.09757 Information Retrieval +1605.09758 Soft Condensed Matter +1605.09759 Computer Vision and Pattern Recognition +1605.09762 Numerical Analysis +1605.09765 Analysis of PDEs +1605.09770 Soft Condensed Matter +1605.09772 Systems and Control +1605.09773 Methodology +1605.09776 Social and Information Networks +1605.09780 Instrumentation and Methods for Astrophysics +1605.09781 Quantitative Methods +1605.09784 Data Structures and Algorithms +1605.09785 Distributed, Parallel, and Cluster Computing +astro-ph/0309811 +0912.0059 Group Theory +1007.4339 Quantum Gases +1008.4428 Quantum Gases +1104.3098 Computer Science and Game Theory +1105.5828 Materials Science +1207.6994 Disordered Systems and Neural Networks +1208.1329 Computer Science and Game Theory +1211.1872 Numerical Analysis +1309.0765 Molecular Networks +1309.7301 Representation Theory +1311.6511 Combinatorics +1312.3224 Algebraic Geometry +1312.4889 Cosmology and Nongalactic Astrophysics +1401.2493 Computer Science and Game Theory +1404.6842 Optics +1405.7175 Networking and Internet Architecture +1406.4820 Soft Condensed Matter +1407.3567 +1409.2723 Optimization and Control +1409.2931 Algebraic Geometry +1410.3888 Number Theory +1410.4011 Programming Languages +1410.4779 +1410.8597 Methodology +1411.5404 Social and Information Networks +1412.1570 Differential Geometry +1412.4208 Risk Management +1501.05413 Algebraic Topology +1501.06323 Computational Complexity +1501.06645 Dynamical Systems +1502.02099 Algebraic Geometry +1502.04411 Rings and Algebras +1502.06470 Information Theory +1503.07648 Combinatorics +1503.07810 Machine Learning +1504.02047 +1504.07684 Instrumentation and Detectors +1505.04648 Computational Finance +1506.01272 Operator Algebras +1506.03633 Group Theory +1506.03921 Operator Algebras +1506.07261 +1506.07675 Populations and Evolution +1507.01778 Methodology +1507.04309 Emerging Technologies +1507.07836 Phenomenology +1508.00217 Computer Vision and Pattern Recognition +1508.03207 Theory +1509.00902 Materials Science +1509.04261 Experiment +1509.08802 +1510.03447 Quantum Gases +1510.03900 Fluid Dynamics +1510.05039 Group Theory +1510.07523 Rings and Algebras +1510.09193 Computational Complexity +1511.01807 Logic in Computer Science +1511.02136 Learning +1511.02472 Instrumentation and Detectors +1511.02836 High Energy Astrophysical Phenomena +1511.04251 Exactly Solvable and Integrable Systems +1511.04992 Computation +1511.05065 Computer Vision and Pattern Recognition +1511.05292 Computer Vision and Pattern Recognition +1511.05415 +1511.06929 Group Theory +1511.06989 Representation Theory +1512.03749 Quantum Algebra +1512.03780 Number Theory +1512.03829 Mesoscale and Nanoscale Physics +1512.04684 Theory +1512.05537 +1512.08010 +1512.08106 Logic in Computer Science +1601.01667 +1601.02001 +1601.05114 Phenomenology +1601.05604 Combinatorics +1601.05657 +1601.06403 Information Theory +1601.06697 +1602.00050 +1602.00868 +1602.02814 Number Theory +1602.02825 Number Theory +1602.02835 Number Theory +1602.03647 Information Theory +1602.03705 +1602.03789 Mesoscale and Nanoscale Physics +1602.03962 Populations and Evolution +1602.04881 Distributed, Parallel, and Cluster Computing +1602.05039 Mesoscale and Nanoscale Physics +1602.06901 Rings and Algebras +1602.07077 Functional Analysis +1602.07083 Functional Analysis +1602.08739 Category Theory +1603.00637 +1603.01693 Algebraic Geometry +1603.02022 Materials Science +1603.03831 Materials Science +1603.03990 Theory +1603.04601 Statistical Mechanics +1603.04701 Disordered Systems and Neural Networks +1603.05402 +1603.06357 Number Theory +1603.08278 Soft Condensed Matter +1603.08559 Analysis of PDEs +1604.01525 Experiment +1604.01809 Geometric Topology +1604.04246 Quantum Gases +1604.04949 Mesoscale and Nanoscale Physics +1604.06014 Materials Science +1604.06527 Theory +1604.06688 Geometric Topology +1604.06804 Mesoscale and Nanoscale Physics +1604.08865 Computer Vision and Pattern Recognition +1605.00679 +1605.00741 +1605.00822 Plasma Physics +1605.01019 Methodology +1605.02112 Computer Vision and Pattern Recognition +1605.02834 High Energy Astrophysical Phenomena +1605.03417 Mesoscale and Nanoscale Physics +1605.03627 Optimization and Control +1605.04084 Number Theory +1605.04653 Mesoscale and Nanoscale Physics +1605.05218 Physics Education +1605.07171 Other Computer Science +1605.09174 Systems and Control +1606.01121 Optics +1606.01379 Information Theory +1606.01646 Soft Condensed Matter +1606.02198 Superconductivity +1606.02624 Space Physics +1606.06125 Computation and Language +1606.08135 Information Theory +1606.08415 Learning +1606.08845 Solar and Stellar Astrophysics +1606.09107 Discrete Mathematics +1606.09286 +1607.00367 Differential Geometry +1607.00799 +1607.00947 Numerical Analysis +1607.00954 Representation Theory +1607.00977 +1607.01142 Quantum Algebra +1607.01288 Superconductivity +1607.01291 +1607.01492 Computers and Society +1607.01879 Adaptation and Self-Organizing Systems +1607.01890 Statistical Mechanics +1607.01910 Phenomenology +1607.02037 Computer Science and Game Theory +1607.02047 High Energy Astrophysical Phenomena +1607.02113 Pattern Formation and Solitons +1607.02154 Phenomenology +1607.02162 Superconductivity +1607.02164 Populations and Evolution +1607.02165 History and Overview +1607.02166 Accelerator Physics +1607.02167 Earth and Planetary Astrophysics +1607.02168 Emerging Technologies +1607.02170 Operator Algebras +1607.02171 Artificial Intelligence +1607.02173 Learning +1607.02174 Human-Computer Interaction +1607.02176 Plasma Physics +1607.02178 Strongly Correlated Electrons +1607.02179 Networking and Internet Architecture +1607.02180 Chaotic Dynamics +1607.02184 Computational Geometry +1607.02189 Logic in Computer Science +1607.02191 Physics and Society +1607.02193 Fluid Dynamics +1607.02194 Computation +1607.02199 +1607.02200 Systems and Control +1607.02201 Statistics Theory +1607.02205 Dynamical Systems +1607.02207 Spectral Theory +1607.02208 Algebraic Geometry +1607.02209 Algebraic Geometry +1607.02210 Algebraic Geometry +1607.02213 Solar and Stellar Astrophysics +1607.02214 Distributed, Parallel, and Cluster Computing +1607.02216 +1607.02217 Dynamical Systems +1607.02218 Geometric Topology +1607.02220 Materials Science +1607.02223 Algebraic Topology +1607.02224 Analysis of PDEs +1607.02225 Programming Languages +1607.02226 Programming Languages +1607.02227 Software Engineering +1607.02228 Programming Languages +1607.02229 Programming Languages +1607.02230 Programming Languages +1607.02231 Programming Languages +1607.02232 Logic in Computer Science +1607.02233 Logic in Computer Science +1607.02234 Logic in Computer Science +1607.02235 Logic in Computer Science +1607.02236 Commutative Algebra +1607.02237 Functional Analysis +1607.02238 Programming Languages +1607.02241 Learning +1607.02245 Statistics Theory +1607.02247 Group Theory +1607.02251 Atmospheric and Oceanic Physics +1607.02252 Probability +1607.02253 Analysis of PDEs +1607.02257 Computer Vision and Pattern Recognition +1607.02258 Combinatorics +1607.02262 Representation Theory +1607.02263 Symplectic Geometry +1607.02269 Category Theory +1607.02276 Differential Geometry +1607.02277 Mesoscale and Nanoscale Physics +1607.02278 Social and Information Networks +1607.02279 Information Theory +1607.02282 Data Structures and Algorithms +1607.02283 Applications +1607.02290 Robotics +1607.02293 Optics +1607.02297 Soft Condensed Matter +1607.02299 Optimization and Control +1607.02300 Atomic and Molecular Clusters +1607.02301 +1607.02307 Functional Analysis +1607.02308 Strongly Correlated Electrons +1607.02311 Optimization and Control +1607.02316 +1607.02318 Hardware Architecture +1607.02326 Physics and Society +1607.02327 Materials Science +1607.02328 Methodology +1607.02329 Robotics +1607.02333 Operator Algebras +1607.02334 Social and Information Networks +1607.02337 Optimization and Control +1607.02338 Superconductivity +1607.02344 Phenomenology +1607.02346 Computational Complexity +1607.02347 Computational Geometry +1607.02348 Superconductivity +1607.02352 Optics +1607.02361 Information Theory +1607.02363 Solar and Stellar Astrophysics +1607.02366 +1607.02368 Combinatorics +1607.02370 Number Theory +1607.02371 Computer Science and Game Theory +1607.02375 Atomic and Molecular Clusters +1607.02376 Computer Science and Game Theory +1607.02377 Optimization and Control +1607.02378 Economics +1607.02379 Solar and Stellar Astrophysics +1607.02380 +1607.02381 Information Theory +1607.02382 Optimization and Control +1607.02383 Sound +1607.02385 Information Theory +1607.02387 Statistics Theory +1607.02391 Probability +1607.02392 Probability +1607.02396 Combinatorics +1607.02397 Computer Vision and Pattern Recognition +1607.02399 Databases +1607.02402 Phenomenology +1607.02410 General Finance +1607.02411 +1607.02416 Algebraic Geometry +1607.02419 Economics +1607.02420 Computer Science and Game Theory +1607.02421 Economics +1607.02422 Economics +1607.02423 Economics +1607.02424 Cosmology and Nongalactic Astrophysics +1607.02425 Dynamical Systems +1607.02429 Rings and Algebras +1607.02431 Artificial Intelligence +1607.02433 Combinatorics +1607.02434 Information Theory +1607.02437 Data Structures and Algorithms +1607.02438 Category Theory +1607.02444 Learning +1607.02446 Dynamical Systems +1607.02447 Quantitative Methods +1607.02453 Software Engineering +1607.02455 Classical Analysis and ODEs +1607.02456 Rings and Algebras +1607.02459 Software Engineering +1607.02460 +1607.02463 Numerical Analysis +1607.02465 Strongly Correlated Electrons +1607.02468 Analysis of PDEs +1607.02470 Statistical Finance +1607.02472 Computation +1607.02473 Representation Theory +1607.02478 +1607.02480 Artificial Intelligence +1607.02482 Commutative Algebra +1607.02483 Number Theory +1607.02484 Mesoscale and Nanoscale Physics +1607.02491 Quantum Algebra +1607.02492 Accelerator Physics +1607.02493 Lattice +1607.02495 Information Theory +1607.02497 Numerical Analysis +1607.02504 Computer Vision and Pattern Recognition +physics/0608246 Physics Education +1608.02871 Differential Geometry +1609.07506 Differential Geometry +0806.1192 Combinatorics +0807.4719 Computation +1011.6342 Algebraic Geometry +1101.2252 Algebraic Geometry +1105.4864 +1105.5332 Machine Learning +1110.1486 +1203.0566 Theory +1206.3846 +1301.5536 Information Theory +1305.5638 Analysis of PDEs +1307.4947 Probability +1309.0056 Algebraic Geometry +1310.5471 Rings and Algebras +1311.5286 Functional Analysis +1312.4811 Information Theory +1401.2605 +1401.3753 Information Theory +1402.6443 Functional Analysis +1403.3722 Group Theory +1404.6367 Phenomenology +1405.0935 Rings and Algebras +1405.6460 Computation +1406.5468 Optimization and Control +1407.5460 Mesoscale and Nanoscale Physics +1407.6134 Spectral Theory +1408.2217 Portfolio Management +1408.3307 Phenomenology +1410.1096 +1410.4460 Hardware Architecture +1411.4977 Complex Variables +1411.6096 +1411.6785 Computational Physics +1412.3033 Group Theory +1412.4189 +1412.5357 Group Theory +1501.01981 +1501.02997 Formal Languages and Automata Theory +1501.04948 Data Structures and Algorithms +1501.06030 Mesoscale and Nanoscale Physics +1502.00067 +1502.07283 Group Theory +1503.00227 Biological Physics +1503.00973 Soft Condensed Matter +1503.01863 Group Theory +1503.08290 Differential Geometry +1503.08805 Phenomenology +1504.02701 Functional Analysis +1504.02981 Functional Analysis +1504.03405 Materials Science +1504.05709 Algebraic Geometry +1505.00565 Analysis of PDEs +1505.00626 Representation Theory +1505.01917 +1505.04988 High Energy Astrophysical Phenomena +1505.05025 Distributed, Parallel, and Cluster Computing +1505.07695 Phenomenology +1506.01826 Chemical Physics +1506.03762 Machine Learning +1506.04020 Quantum Gases +1506.04153 Statistics Theory +1506.04457 Exactly Solvable and Integrable Systems +1506.05287 +1506.07141 Disordered Systems and Neural Networks +1506.08015 +1507.02202 Mesoscale and Nanoscale Physics +1507.05166 Statistical Mechanics +1507.05187 Mesoscale and Nanoscale Physics +1507.06214 Spectral Theory +1507.07269 Data Analysis, Statistics and Probability +1508.00207 +1508.00293 Probability +1508.01358 Statistics Theory +1508.02356 Functional Analysis +1508.03704 Instrumentation and Detectors +1508.05089 +1508.05299 Discrete Mathematics +1508.05797 +1508.06888 Classical Analysis and ODEs +1508.07167 Classical Analysis and ODEs +1509.00113 Theory +1509.01467 Strongly Correlated Electrons +1509.03959 +1509.04169 Complex Variables +1509.04176 Theory +1509.04177 Experiment +1509.04865 Dynamical Systems +1509.06075 Populations and Evolution +1509.06510 Algebraic Geometry +1509.06654 Operator Algebras +1509.09029 +1510.00069 +1510.00189 Soft Condensed Matter +1510.00687 Materials Science +1510.01519 Strongly Correlated Electrons +1510.01622 Geometric Topology +1510.04089 Algebraic Geometry +1510.04872 Phenomenology +1510.05350 Atomic Physics +1510.05582 Optics +1510.08958 +1511.02052 Numerical Analysis +1511.02611 Algebraic Geometry +1511.03331 +1511.03364 +1511.04606 Optics +1511.04705 Mesoscale and Nanoscale Physics +1511.05592 Theory +1511.06270 Differential Geometry +1511.07622 Theory +1511.07837 Optimization and Control +1511.08343 Learning +1511.08555 Classical Analysis and ODEs +1511.09047 Artificial Intelligence +1512.00473 Chemical Physics +1512.01217 Astrophysics of Galaxies +1512.07992 Phenomenology +1601.01728 Optimization and Control +1601.02110 Earth and Planetary Astrophysics +1601.02114 +1601.03097 Fluid Dynamics +1601.03762 Complex Variables +1601.03890 Computer Vision and Pattern Recognition +1601.04893 Cryptography and Security +1601.05348 Number Theory +1601.05427 Algebraic Geometry +1601.05968 Analysis of PDEs +1601.07085 Numerical Analysis +1601.07448 Optimization and Control +1601.07539 Databases +1601.07967 Cosmology and Nongalactic Astrophysics +1601.08099 Mathematical Finance +1602.00308 Theory +1602.00442 Instrumentation and Methods for Astrophysics +1602.01023 Classical Analysis and ODEs +1602.01900 Complex Variables +1602.02003 Theory +1602.02374 General Topology +1602.02410 Computation and Language +1602.02575 Methodology +1602.02603 Geometric Topology +1602.02745 Complex Variables +1602.02980 Chaotic Dynamics +1602.02991 Distributed, Parallel, and Cluster Computing +1602.03396 Computational Physics +1602.03423 Applications +1602.03506 Artificial Intelligence +1602.03618 Information Theory +1602.03670 Machine Learning +1602.03709 Operator Algebras +1602.03713 Distributed, Parallel, and Cluster Computing +1602.03734 Metric Geometry +1602.03818 +1602.03884 Probability +1602.03886 Networking and Internet Architecture +1602.03888 High Energy Astrophysical Phenomena +1602.03899 Combinatorics +1602.03900 Mesoscale and Nanoscale Physics +1602.03906 Networking and Internet Architecture +1602.03908 Atomic and Molecular Clusters +1602.03910 Spectral Theory +1602.03911 Solar and Stellar Astrophysics +1602.03915 Methodology +1602.03918 Algebraic Geometry +1602.03922 +1602.03923 Differential Geometry +1602.03924 Artificial Intelligence +1602.03927 Statistical Mechanics +1602.03929 Computers and Society +1602.03933 Differential Geometry +1602.03936 Information Theory +1602.03940 Applications +1602.03942 Data Structures and Algorithms +1602.03944 Statistical Finance +1602.03945 Systems and Control +1602.03948 Superconductivity +1602.03950 Machine Learning +1602.03951 +1602.03954 Information Theory +1602.03958 Solar and Stellar Astrophysics +1602.03960 Computation and Language +1602.03964 Functional Analysis +1602.03965 Operator Algebras +1602.03969 Information Theory +1602.03972 Methodology +1602.03974 Algebraic Topology +1602.03976 Lattice +1602.03978 Dynamical Systems +1602.03980 Mesoscale and Nanoscale Physics +1602.03982 Functional Analysis +1602.03984 Functional Analysis +1602.03986 Algebraic Geometry +1602.03995 Computer Vision and Pattern Recognition +1602.03999 Materials Science +1602.04000 Computer Science and Game Theory +1602.04004 Operator Algebras +1602.04005 Quantitative Methods +1602.04006 Populations and Evolution +1602.04007 Software Engineering +1602.04008 Functional Analysis +1602.04009 Cosmology and Nongalactic Astrophysics +1602.04010 Analysis of PDEs +1602.04012 Number Theory +1602.04014 Functional Analysis +1602.04015 Functional Analysis +1602.04017 Functional Analysis +1602.04019 Artificial Intelligence +1602.04024 Atomic Physics +1602.04025 Classical Analysis and ODEs +1602.04026 Information Theory +1602.04027 Atomic Physics +1602.04028 Strongly Correlated Electrons +1602.04032 Artificial Intelligence +1602.04033 Classical Analysis and ODEs +1602.04034 Information Theory +1602.04036 Numerical Analysis +1602.04040 History and Philosophy of Physics +1602.04041 Fluid Dynamics +1602.04043 Classical Physics +1602.04044 Mesoscale and Nanoscale Physics +1602.04046 Superconductivity +1602.04048 +1602.04059 Combinatorics +1602.04061 Discrete Mathematics +1602.04067 +1602.04068 Solar and Stellar Astrophysics +1602.04070 Fluid Dynamics +1602.04071 Analysis of PDEs +1602.04075 Strongly Correlated Electrons +1602.04076 General Mathematics +1602.04078 Soft Condensed Matter +1602.04080 General Mathematics +1602.04081 +1602.04084 General Mathematics +1602.04087 Representation Theory +1602.04089 Combinatorics +1602.04091 Other Statistics +1602.04092 Mesoscale and Nanoscale Physics +1602.04093 Group Theory +1602.04094 Soft Condensed Matter +1602.04101 Computers and Society +1602.04104 Networking and Internet Architecture +1602.04109 Soft Condensed Matter +1602.04111 Materials Science +1602.04112 Functional Analysis +1602.04114 Mesoscale and Nanoscale Physics +1602.04117 Statistics Theory +1602.04120 +1602.04122 Solar and Stellar Astrophysics +1602.04124 Computer Vision and Pattern Recognition +1602.04126 Logic +1602.04131 Algebraic Topology +1602.04133 Machine Learning +1602.04134 Rings and Algebras +1602.04136 General Physics +1602.04137 History and Overview +1602.04139 Methodology +1602.04140 +1602.04145 +1602.04147 Analysis of PDEs +1602.04148 Analysis of PDEs +1602.04149 Combinatorics +1602.04151 Statistical Mechanics +1602.04154 Solar and Stellar Astrophysics +1602.04157 Analysis of PDEs +1602.04159 Differential Geometry +1602.04163 Category Theory +1602.04165 General Mathematics +1602.04167 Classical Analysis and ODEs +1602.04168 +1602.04171 Optimization and Control +1602.04172 Analysis of PDEs +1602.04173 Functional Analysis +1602.04176 Mesoscale and Nanoscale Physics +1602.04178 Differential Geometry +1602.04181 Data Structures and Algorithms +1602.04182 Physics Education +1602.04185 Materials Science +1602.04189 +1602.04190 +1602.04191 Instrumentation and Detectors +1602.04206 Phenomenology +1602.04208 Learning +funct-an/9211006 Functional Analysis +funct-an/9211007 Functional Analysis +funct-an/9211009 Functional Analysis +funct-an/9211010 Functional Analysis +funct-an/9301002 Functional Analysis +funct-an/9301003 Functional Analysis +hep-th/9910030 Theory +quant-ph/0403076 +0704.0431 +0704.0671 Information Theory +0704.0962 History and Philosophy of Physics +0704.1135 +0704.1457 +0704.1731 +0704.2994 +0704.3199 Information Theory +0704.3215 +0704.3301 Theory +0704.3746 Networking and Internet Architecture +0704.3760 +0705.1336 Information Theory +0705.1340 Information Theory +0705.1919 Information Theory +0705.2035 +0705.2222 +0705.2278 Information Theory +0705.3806 +0705.3992 Information Theory +0706.0463 +0706.0585 Learning +0706.1169 Information Theory +0706.1588 Information Theory +0706.2310 Information Theory +0706.2736 +0706.2809 Information Theory +0706.2863 +0706.2894 +0706.3430 Information Theory +0707.1008 Information Theory +0707.1588 Information Theory +0707.2286 Optimization and Control +0707.2305 Theory +0707.3190 +0707.3192 +0707.3193 +0708.0178 +0708.0905 Information Theory +0708.2273 Information Theory +0708.2673 +0708.3899 +0709.4457 +0710.1383 Information Theory +0710.2512 +0710.2515 +0710.3140 +0710.3183 Machine Learning +0710.3279 Networking and Internet Architecture +0710.4905 Information Theory +0711.0655 +0711.0705 Information Theory +0711.2012 +0711.3869 Information Theory +0712.1169 Information Theory +0712.3501 Information Theory +0712.4209 Information Theory +0801.1141 Information Theory +0801.2242 Information Theory +0801.3073 Information Theory +0801.3097 Information Theory +0801.3880 Information Theory +0802.1815 Information Theory +0803.1323 Information Theory +0803.2427 Information Theory +0803.2570 Information Theory +0803.2862 +0803.3363 Artificial Intelligence +0803.3632 Operating Systems +0804.0996 Information Theory +0804.1748 Information Theory +0804.1828 +0804.2249 Information Theory +0804.2386 +0804.2816 +0804.2818 +0804.2821 +0804.2837 +0804.2998 Information Theory +0804.3197 +0804.3983 +0804.4187 Information Theory +0804.4384 Information Theory +0804.4866 Information Theory +0805.0184 Information Theory +0805.0241 Information Theory +0805.1088 Networking and Internet Architecture +0805.1340 Information Theory +0805.2199 Discrete Mathematics +0805.3317 Optics +0806.1819 Information Theory +0806.4695 Networking and Internet Architecture +0807.0060 +0807.0942 Information Theory +0807.1603 Networking and Internet Architecture +0807.2268 Information Theory +0807.2475 Information Theory +0807.2844 Information Theory +0807.3582 Information Theory +0807.4770 Networking and Internet Architecture +0807.5091 Artificial Intelligence +0808.0978 Information Theory +0808.0987 Information Theory +0808.1302 +0808.2004 Differential Geometry +0808.2801 Computer Science and Game Theory +0809.4228 +0809.4666 Other Condensed Matter +0810.1234 Information Theory +0810.2896 +0810.3198 +0810.3199 Computer Science and Game Theory +0810.3202 +0810.3631 Information Theory +0811.0080 Other Computer Science +0811.0133 Other Computer Science +0811.0134 Artificial Intelligence +0811.0135 Other Computer Science +0811.0136 Artificial Intelligence +0811.0137 Other Computer Science +0811.2031 +0811.4397 Information Theory +0812.1007 Instrumentation and Detectors +0812.1030 Optimization and Control +0901.0131 Distributed, Parallel, and Cluster Computing +0901.0134 Distributed, Parallel, and Cluster Computing +0901.0163 Information Theory +0901.1708 Information Theory +0901.1904 Information Theory +0901.2616 Information Theory +0901.2913 Networking and Internet Architecture +0901.3257 Networking and Internet Architecture +0901.3809 Information Theory +0901.3820 Information Theory +0901.4898 Information Theory +0902.0026 Information Theory +0902.0892 Information Theory +0902.1278 Information Theory +0902.2227 Plasma Physics +0902.3076 Information Theory +0903.1700 Phenomenology +0903.2860 Phenomenology +0903.3125 Phenomenology +0903.4735 Phenomenology +0904.0109 Cryptography and Security +0904.2022 Information Theory +0904.2063 Theory +0904.2395 Cosmology and Nongalactic Astrophysics +0904.3293 Cosmology and Nongalactic Astrophysics +0904.4006 Information Theory +0904.4458 Data Structures and Algorithms +0905.0079 Information Theory +0905.0619 Information Theory +0905.0940 Machine Learning +0905.1215 Information Theory +0905.2413 Information Theory +0905.3689 Information Theory +0905.3733 Information Theory +0905.4308 Phenomenology +0906.0578 Astrophysics of Galaxies +0906.1100 Phenomenology +0906.5241 +0906.5407 +0907.1992 Information Theory +0907.4705 Information Theory +0908.0045 Information Theory +0908.0711 Networking and Internet Architecture +0908.0713 Mesoscale and Nanoscale Physics +0908.1264 Information Theory +0908.3815 Adaptation and Self-Organizing Systems +0908.3861 Information Theory +0909.2234 Information Theory +0909.3947 Optimization and Control +0909.4601 Information Theory +0909.4604 Information Theory +0910.0733 Other Computer Science +0910.1511 Information Theory +0910.1979 Distributed, Parallel, and Cluster Computing +0910.2168 Networking and Internet Architecture +0910.2263 Information Theory +0910.2343 Physics and Society +0910.4624 Information Theory +0910.4632 Cryptography and Security +0910.4688 Information Theory +0911.2551 Information Theory +0911.4939 +0912.0756 Information Theory +0912.2572 Distributed, Parallel, and Cluster Computing +0912.2630 Information Theory +0912.3089 Networking and Internet Architecture +0912.3641 +0912.4885 Phenomenology +0912.4925 Cosmology and Nongalactic Astrophysics +1001.1266 +1001.2395 +1001.3087 Information Theory +1001.3421 Information Theory +1001.3475 Information Theory +1001.3555 Software Engineering +1001.3934 Information Theory +1001.4704 Astrophysics of Galaxies +1002.0867 Cosmology and Nongalactic Astrophysics +1002.1465 Information Theory +1002.2964 Information Theory +1002.2971 Information Theory +1002.3234 Information Theory +1002.3312 Information Theory +1002.3528 Cosmology and Nongalactic Astrophysics +1002.3684 Machine Learning +1002.4470 Information Theory +1003.1027 +1003.2392 Optics +1003.5249 Computer Vision and Pattern Recognition +1004.0313 Computer Science and Game Theory +1004.0346 Information Theory +1004.0728 Distributed, Parallel, and Cluster Computing +1004.2285 Optimization and Control +1005.0100 High Energy Astrophysical Phenomena +1005.0340 Learning +1005.0634 +1005.2646 Information Theory +1005.2718 Instrumentation and Methods for Astrophysics +1006.0284 Information Theory +1006.0473 Optimization and Control +1006.0719 Statistics Theory +1006.0763 Information Theory +1006.0871 Information Theory +1006.0890 Information Theory +1006.1435 Information Theory +1006.2380 Information Theory +1006.2423 Phenomenology +1006.3959 Biological Physics +1006.4248 Networking and Internet Architecture +1006.4255 Information Theory +1006.5879 Information Theory +1007.0118 Networking and Internet Architecture +1007.0404 Information Theory +1007.1174 Information Theory +1007.1778 Information Theory +1007.2827 Information Theory +1007.4294 Information Theory +1007.5044 Information Theory +1007.5459 Networking and Internet Architecture +1008.0440 Networking and Internet Architecture +1008.3056 Information Theory +1009.0516 Information Theory +1009.1411 Cosmology and Nongalactic Astrophysics +1010.0244 Theory +1010.0642 Information Theory +1010.1162 Cosmology and Nongalactic Astrophysics +1010.1309 Information Theory +1010.1648 Information Theory +1010.2433 Information Theory +1010.2802 Cryptography and Security +1010.2993 Information Theory +1010.5644 Information Theory +1010.5669 Chemical Physics +1011.0228 Statistics Theory +1011.0792 Cryptography and Security +1011.2115 Information Theory +1011.3867 Information Theory +1011.3879 Cryptography and Security +1011.5274 Information Theory +1011.5287 Information Theory +1012.0112 Information Theory +1012.0726 Networking and Internet Architecture +1012.1539 Information Theory +1012.2148 Artificial Intelligence +1012.2628 Information Theory +1012.3609 Strongly Correlated Electrons +1101.0076 +1101.0250 Networking and Internet Architecture +1101.0906 Information Theory +1101.2007 Information Theory +1101.2172 Instrumentation and Methods for Astrophysics +1101.2678 Distributed, Parallel, and Cluster Computing +1101.3123 Mesoscale and Nanoscale Physics +1101.4626 High Energy Astrophysical Phenomena +1101.4628 +1101.5130 Information Theory +1101.5257 Information Theory +1101.5480 +1102.3561 Networking and Internet Architecture +1102.3902 Information Theory +1102.3944 Information Theory +1102.4652 Information Theory +1103.0205 Information Theory +1103.0789 Instrumentation and Methods for Astrophysics +1103.1453 Information Theory +1103.2635 Databases +1103.2688 Cosmology and Nongalactic Astrophysics +1103.4086 Information Theory +1103.4988 Cosmology and Nongalactic Astrophysics +1103.5738 Information Theory +1104.1014 Information Theory +1104.1057 Information Theory +1104.1664 +1104.2116 Information Theory +1104.2265 Software Engineering +1104.4911 Information Theory +1104.5170 Information Theory +1104.5288 Systems and Control +1105.0149 Distributed, Parallel, and Cluster Computing +1105.1745 Information Theory +1105.4354 Computer Vision and Pattern Recognition +1105.6163 Information Theory +1105.6176 Information Theory +1105.6179 Instrumentation and Methods for Astrophysics +1105.6199 Information Theory +1106.1414 Information Theory +1106.3464 Computer Vision and Pattern Recognition +1106.3870 Statistical Mechanics +1106.6173 Information Theory +1106.6174 Information Theory +1107.0945 Materials Science +1107.3862 Information Theory +1107.4148 Information Theory +1107.5777 Rings and Algebras +1108.0187 Performance +1108.1257 Networking and Internet Architecture +1108.2162 Networking and Internet Architecture +1108.4111 +1108.5705 Networking and Internet Architecture +1109.0847 Information Theory +1109.1604 Information Theory +1109.1648 Software Engineering +1109.1780 Dynamical Systems +1109.2935 Lattice +1109.3952 Information Theory +1109.5959 Networking and Internet Architecture +1110.1193 Information Theory +1110.5353 +1110.5890 Networking and Internet Architecture +1110.6137 Instrumentation and Methods for Astrophysics +1110.6199 Information Theory +1111.0503 Computer Science and Game Theory +1111.1423 Computer Vision and Pattern Recognition +1111.3200 Information Theory +1111.3204 Information Theory +1111.3327 +1111.4034 Computers and Society +1111.5132 Instrumentation and Detectors +1111.5682 Information Theory +1111.5799 Information Theory +1111.6323 Statistics Theory +1111.7101 Networking and Internet Architecture +1112.4553 Information Theory +1201.1174 Networking and Internet Architecture +1201.2334 Information Theory +1201.2937 Networking and Internet Architecture +1201.4793 Information Theory +1201.5422 Information Theory +1201.5434 Networking and Internet Architecture +1201.5608 Information Theory +1201.6313 Information Theory +1201.6379 Instrumentation and Methods for Astrophysics +1202.0253 Robotics +1202.0865 Information Theory +1202.0871 Information Theory +1202.1458 Information Theory +1202.1467 Information Theory +1202.1484 Information Theory +1202.2111 Information Theory +1202.2561 Information Theory +1202.3914 Information Theory +1202.4425 Information Theory +1202.4664 Information Theory +1202.6418 Applications +1202.6420 Applications +1203.1185 Networking and Internet Architecture +1203.2841 Networking and Internet Architecture +1203.4206 Systems and Control +1203.4764 Information Theory +1203.5181 Learning +1203.5924 Information Theory +1203.6606 Systems and Control +1204.0549 Applications +1204.1912 Information Theory +1204.2048 Emerging Technologies +1204.2649 Information Theory +1204.3671 +1204.4561 High Energy Astrophysical Phenomena +1204.5710 Information Theory +1205.0500 +1205.2736 Physics and Society +1205.4208 Information Theory +1205.5016 Geometric Topology +1206.0197 Information Theory +1206.1104 +1206.2466 Disordered Systems and Neural Networks +1206.3350 Information Theory +1206.3392 Information Theory +1206.4588 Neural and Evolutionary Computing +1207.1053 Cosmology and Nongalactic Astrophysics +1207.2542 Cosmology and Nongalactic Astrophysics +1207.2847 Distributed, Parallel, and Cluster Computing +1207.5319 Information Theory +1207.6059 Applications +1207.6377 General Topology +1208.0435 Information Theory +1208.0594 Software Engineering +1208.1784 Information Theory +1208.2331 Networking and Internet Architecture +1208.2335 Networking and Internet Architecture +1208.2351 Networking and Internet Architecture +1208.2376 Systems and Control +1208.2378 Networking and Internet Architecture +1208.2397 Networking and Internet Architecture +1208.2399 Networking and Internet Architecture +1208.2400 Networking and Internet Architecture +1208.2405 Networking and Internet Architecture +1208.2406 Networking and Internet Architecture +1208.2409 Networking and Internet Architecture +1208.2794 +1208.3598 Information Theory +1208.3639 Computational Complexity +1208.3994 Computer Science and Game Theory +1208.4899 Information Theory +1208.5870 Networking and Internet Architecture +1208.6527 History and Philosophy of Physics +1209.2015 +1209.5762 Information Theory +1209.5776 Optimization and Control +1210.0086 Information Theory +1210.0224 High Energy Astrophysical Phenomena +1210.1266 Information Theory +1210.1470 Information Theory +1210.2182 Information Theory +1210.2629 Computer Vision and Pattern Recognition +1210.3101 Information Theory +1210.3234 Social and Information Networks +1210.3252 Cryptography and Security +1210.4329 Information Theory +1210.4596 Information Theory +1210.5183 Information Theory +1210.6423 Information Theory +1210.7443 Information Theory +1210.8176 Performance +1210.8191 Performance +1210.8326 Information Theory +1211.0313 Performance +1211.3940 Instrumentation and Detectors +1211.4206 Multimedia +1211.5094 Instrumentation and Methods for Astrophysics +1211.5837 Social and Information Networks +1211.6205 Neural and Evolutionary Computing +1211.6566 Information Theory +1211.6684 Algebraic Geometry +1212.1969 Information Theory +1212.3844 Information Theory +1212.5792 Information Theory +1212.6952 Information Theory +1301.0123 Data Structures and Algorithms +1301.1747 Information Theory +1301.1748 +1301.2935 Information Theory +1301.2941 Information Theory +1301.5034 Information Theory +1301.5109 Information Theory +1301.6120 Information Theory +1302.0522 Information Theory +1302.0585 Information Theory +1302.0623 Instrumentation and Detectors +1302.0951 Information Theory +1302.1258 Information Theory +1302.1601 Information Theory +1302.3146 Optimization and Control +1302.3660 Information Theory +1302.4706 Information Theory +1302.4773 Machine Learning +1302.4793 Networking and Internet Architecture +1302.5383 Information Theory +1302.5514 Performance +1302.5518 Information Theory +1302.5973 Information Theory +1302.6703 Information Theory +1303.1026 Discrete Mathematics +1303.1029 Instrumentation and Methods for Astrophysics +1303.1038 Information Theory +1303.2108 Computer Vision and Pattern Recognition +1303.2184 Learning +1303.2545 Information Theory +1303.2636 Information Theory +1303.2654 Cryptography and Security +1303.2870 Information Theory +1303.3592 Computation and Language +1303.3734 Networking and Internet Architecture +1303.5243 Networking and Internet Architecture +1303.5762 Hardware Architecture +1303.6680 Optimization and Control +1303.7270 Distributed, Parallel, and Cluster Computing +1304.0153 Networking and Internet Architecture +1304.0154 Networking and Internet Architecture +1304.0156 Other Computer Science +1304.0604 Information Theory +1304.0617 Networking and Internet Architecture +1304.0635 Networking and Internet Architecture +1304.1851 Networking and Internet Architecture +1304.2523 Information Theory +1304.2543 Neural and Evolutionary Computing +1304.5666 +1304.5790 Information Theory +1304.6050 Probability +1304.7966 Information Theory +1304.8102 Information Theory +1305.1885 Optimization and Control +1305.4996 Information Theory +1306.0034 Information Theory +1306.0832 Systems and Control +1306.0846 Distributed, Parallel, and Cluster Computing +1306.1632 Information Theory +1306.3517 Social and Information Networks +1306.5018 Information Theory +1306.5096 Computer Vision and Pattern Recognition +1306.6659 Information Theory +1307.0697 Instrumentation and Methods for Astrophysics +1307.1070 Artificial Intelligence +1307.2089 Optimization and Control +1307.3290 Information Theory +1307.3715 Information Theory +1307.4133 Strongly Correlated Electrons +1307.4463 Information Theory +1307.7102 Networking and Internet Architecture +1307.7105 Networking and Internet Architecture +1307.7107 Networking and Internet Architecture +1307.7111 Networking and Internet Architecture +1307.7185 Networking and Internet Architecture +1307.7211 Information Theory +1307.7238 Networking and Internet Architecture +1307.7240 Networking and Internet Architecture +1307.7241 Networking and Internet Architecture +1307.7242 Networking and Internet Architecture +1307.7245 Networking and Internet Architecture +1307.8242 Systems and Control +1307.8257 Networking and Internet Architecture +1308.2291 Systems and Control +1308.2293 Information Theory +1308.3078 Algebraic Geometry +1308.5304 Information Theory +1308.5369 Optimization and Control +1308.6021 Hardware Architecture +1309.0111 Systems and Control +1309.0364 Networking and Internet Architecture +1309.1188 Theory +1309.1333 Information Theory +1309.1338 Information Theory +1309.2084 Robotics +1309.2354 Optimization and Control +1309.2558 Systems and Control +1309.2915 Information Theory +1309.4251 Systems and Control +1309.4911 Optimization and Control +1309.7009 Information Theory +1310.0154 Information Theory +1310.0557 Information Theory +1310.0744 Information Theory +1310.1635 Information Theory +1310.1638 Information Theory +1310.2055 Information Theory +1310.2884 Mesoscale and Nanoscale Physics +1310.2954 Networking and Internet Architecture +1310.3696 Representation Theory +1310.3793 Information Theory +1310.4803 Soft Condensed Matter +1310.4859 Cryptography and Security +1310.5949 Networking and Internet Architecture +1311.0262 Computer Vision and Pattern Recognition +1311.0385 High Energy Astrophysical Phenomena +1311.0737 Statistics Theory +1311.1363 Information Theory +1311.2146 Information Theory +1311.2507 Information Theory +1311.2602 Optimization and Control +1311.2651 Information Theory +1311.3121 Data Structures and Algorithms +1311.3428 Information Theory +1311.6837 Networking and Internet Architecture +1311.6853 Information Theory +1311.7183 Information Theory +1311.7563 Algebraic Geometry +1312.0054 Information Theory +1312.0499 Networking and Internet Architecture +1312.0835 Probability +1312.1134 Information Theory +1312.1261 Group Theory +1312.2315 Information Theory +1312.2390 Optimization and Control +1312.3134 Data Structures and Algorithms +1312.3307 Geometric Topology +1312.5457 Information Retrieval +1312.7377 Optimization and Control +1401.0764 Computer Vision and Pattern Recognition +1401.0781 Networking and Internet Architecture +1401.1059 Information Theory +1401.1626 Information Theory +1401.3187 Combinatorics +1401.3502 Networking and Internet Architecture +1401.3506 Networking and Internet Architecture +1401.3520 Information Theory +1401.3521 Information Theory +1401.3945 Information Theory +1401.4509 Information Theory +1401.4753 Information Theory +1401.5742 Information Theory +1401.5826 Networking and Internet Architecture +1401.5896 Cryptography and Security +1401.6060 Information Theory +1401.6683 Networking and Internet Architecture +1401.7267 Social and Information Networks +1401.7772 Networking and Internet Architecture +1402.0174 Phenomenology +1402.0752 Phenomenology +1402.2489 Networking and Internet Architecture +1402.3685 Representation Theory +1402.5586 Systems and Control +1403.0738 Numerical Analysis +1403.1476 Information Theory +1403.1734 Systems and Control +1403.2484 Learning +1403.2535 Information Theory +1403.2875 Symplectic Geometry +1403.4331 Instrumentation and Detectors +1403.4583 Information Theory +1403.4883 Logic +1403.5521 Systems and Control +1403.6351 Optimization and Control +1403.6387 +1403.6399 Optimization and Control +1403.6982 Information Theory +1403.6983 +1403.7659 Dynamical Systems +1403.7681 Computer Science and Game Theory +1404.0418 Statistical Mechanics +1404.0715 +1404.0906 Information Theory +1404.0979 Networking and Internet Architecture +1404.2819 Information Theory +1404.2864 Information Theory +1404.2904 Information Theory +1404.2999 Computer Vision and Pattern Recognition +1404.4282 Computational Engineering, Finance, and Science +1404.4761 Information Theory +1404.5381 Statistical Finance +1404.5767 Neural and Evolutionary Computing +1404.5945 Information Theory +1404.6041 Networking and Internet Architecture +1404.6075 Computer Vision and Pattern Recognition +1404.6766 Computer Science and Game Theory +1405.0625 Networking and Internet Architecture +1405.0674 Information Theory +1405.1365 Information Theory +1405.1853 Networking and Internet Architecture +1405.2000 Networking and Internet Architecture +1405.2092 Information Theory +1405.2555 Information Theory +1405.3273 Chemical Physics +1405.3725 Information Theory +1405.4085 Networking and Internet Architecture +1405.4549 Algebraic Geometry +1405.4957 Information Theory +1405.5630 Networking and Internet Architecture +1406.0359 Instrumentation and Methods for Astrophysics +1406.0429 Number Theory +1406.0719 Classical Analysis and ODEs +1406.3950 Soft Condensed Matter +1406.5354 Networking and Internet Architecture +1406.6191 Statistical Mechanics +1406.6542 Information Theory +1406.7054 Networking and Internet Architecture +1406.7092 Information Theory +1406.7098 Networking and Internet Architecture +1407.0004 Information Theory +1407.0005 Information Theory +1407.0640 Networking and Internet Architecture +1407.1925 Data Structures and Algorithms +1407.2793 Analysis of PDEs +1407.3176 Computer Vision and Pattern Recognition +1407.3179 Computer Vision and Pattern Recognition +1407.4443 Machine Learning +1407.4489 Information Theory +1407.6266 Networking and Internet Architecture +1407.7097 Information Theory +1407.7330 Computer Vision and Pattern Recognition +1407.7889 Information Theory +1407.8142 Data Structures and Algorithms +1407.8168 Distributed, Parallel, and Cluster Computing +1407.8510 Networking and Internet Architecture +1408.0228 +1408.0399 +1408.0765 Information Theory +1408.1506 Information Theory +1408.1986 Computer Vision and Pattern Recognition +1408.2779 Networking and Internet Architecture +1408.3967 Computer Vision and Pattern Recognition +1408.4151 Networking and Internet Architecture +1408.4178 Information Theory +1408.4650 Superconductivity +1408.4998 Number Theory +1408.6009 Information Theory +1408.6039 Information Theory +1408.6552 Systems and Control +1408.6966 Information Theory +1409.0261 Information Theory +1409.0454 Information Theory +1409.0768 Learning +1409.0788 Learning +1409.0792 Performance +1409.0966 Performance +1409.1144 Information Theory +1409.1564 Networking and Internet Architecture +1409.1666 Information Theory +1409.2116 Data Structures and Algorithms +1409.2123 Systems and Control +1409.2124 Systems and Control +1409.2153 Human-Computer Interaction +1409.2170 Logic +1409.2195 Computation and Language +1409.2234 Systems and Control +1409.2835 Information Theory +1409.2921 Strongly Correlated Electrons +1409.3307 Systems and Control +1409.3330 Information Theory +1409.3413 Networking and Internet Architecture +1409.3485 Analysis of PDEs +1409.3960 Networking and Internet Architecture +1409.4149 Networking and Internet Architecture +1409.4712 Systems and Control +1409.5886 Information Theory +1409.5995 Discrete Mathematics +1409.6001 Networking and Internet Architecture +1409.6673 Optimization and Control +1409.6932 Software Engineering +1409.7165 Learning +1409.8098 Distributed, Parallel, and Cluster Computing +1409.8102 Analysis of PDEs +1409.8324 Distributed, Parallel, and Cluster Computing +1409.8434 Information Theory +1410.0446 Neural and Evolutionary Computing +1410.1382 Information Theory +1410.2659 Information Theory +1410.2924 Networking and Internet Architecture +1410.2963 Information Theory +1410.3577 Information Theory +1410.3877 Optimization and Control +1410.4249 Information Theory +1410.4258 Emerging Technologies +1410.4421 Systems and Control +1410.4667 Group Theory +1410.5009 Information Theory +1410.5085 Information Theory +1410.5489 Information Theory +1410.6208 Classical Physics +1410.6380 +1410.6420 Fluid Dynamics +1410.6626 +1410.6680 Networking and Internet Architecture +1410.7057 Learning +1410.7893 Instrumentation and Detectors +1410.8862 Classical Analysis and ODEs +1411.0074 Social and Information Networks +1411.0076 Information Theory +1411.0244 Number Theory +1411.0245 Number Theory +1411.0661 Instrumentation and Detectors +1411.1280 Networking and Internet Architecture +1411.1650 Molecular Networks +1411.2181 Soft Condensed Matter +1411.2304 Numerical Analysis +1411.2928 Discrete Mathematics +1411.3651 Information Theory +1411.4103 Symplectic Geometry +1411.5547 Information Theory +1411.6144 Methodology +1411.6719 Statistics Theory +1411.6784 Information Theory +1411.7973 Learning +1412.0765 Information Theory +1412.0929 Networking and Internet Architecture +1412.1285 Populations and Evolution +1412.1395 Networking and Internet Architecture +1412.1468 Multiagent Systems +1412.2268 Networking and Internet Architecture +1412.2651 Information Theory +1412.2817 Statistics Theory +1412.2897 Information Theory +1412.3399 Optimization and Control +1412.3674 Optics +1412.3770 Cosmology and Nongalactic Astrophysics +1412.3860 +1412.4143 Instrumentation and Detectors +1412.4440 Earth and Planetary Astrophysics +1412.5323 Neural and Evolutionary Computing +1412.5731 Networking and Internet Architecture +1412.6485 Instrumentation and Detectors +1412.6828 +1412.7006 Computer Vision and Pattern Recognition +1412.7215 Optimization and Control +1412.8305 Information Theory +1412.8416 Networking and Internet Architecture +1501.00203 Networking and Internet Architecture +1501.02620 Information Theory +1501.03307 Information Theory +1501.03311 Information Theory +1501.04224 Algebraic Geometry +1501.05420 High Energy Astrophysical Phenomena +1501.05738 Networking and Internet Architecture +1501.06076 Information Theory +1501.06133 Physics and Society +1501.06407 Information Theory +1501.06493 Information Theory +1501.06988 Information Theory +1502.00134 Computers and Society +1502.02994 Analysis of PDEs +1502.04407 Phenomenology +1502.04781 Analysis of PDEs +1502.05689 Computer Vision and Pattern Recognition +1502.06359 Logic in Computer Science +1502.06428 Information Theory +1502.07019 Robotics +1502.07063 Information Theory +1502.07541 Other Computer Science +1502.07922 Symplectic Geometry +1503.00877 Information Theory +1503.01102 Information Theory +1503.01187 Information Theory +1503.01191 Information Theory +1503.02292 Networking and Internet Architecture +1503.02391 Computer Vision and Pattern Recognition +1503.02459 Materials Science +1503.03700 Dynamical Systems +1503.03997 Information Theory +1503.04148 Computational Physics +1503.04254 Information Theory +1503.04255 Information Theory +1503.04656 Instrumentation and Detectors +1503.05004 Materials Science +1503.05314 Information Theory +1503.05365 Information Theory +1503.05432 Information Theory +1503.06571 Information Theory +1503.06574 Information Theory +1503.06590 Networking and Internet Architecture +1503.06596 Instrumentation and Detectors +1503.06693 Analysis of PDEs +1503.07321 Information Theory +1503.07372 Information Theory +1503.08434 Information Theory +1503.08479 Cryptography and Security +1504.00315 Phenomenology +1504.06170 Information Theory +1504.06425 Differential Geometry +1505.00077 Computer Vision and Pattern Recognition +1505.00080 Information Theory +1505.00082 Information Theory +1505.00299 Information Theory +1505.01421 Information Theory +1505.01422 Information Theory +1505.01820 Networking and Internet Architecture +1505.01823 Networking and Internet Architecture +1505.01858 Information Theory +1505.03434 +1505.03769 Mesoscale and Nanoscale Physics +1505.04373 Computer Vision and Pattern Recognition +1505.04532 Information Theory +1505.04755 Group Theory +1505.04920 Systems and Control +1505.05212 Computer Vision and Pattern Recognition +1505.05233 Computer Vision and Pattern Recognition +1505.06043 Number Theory +1505.06252 Information Theory +1505.06452 Information Theory +1505.06877 Information Theory +1505.07011 Mesoscale and Nanoscale Physics +1505.07409 Computer Vision and Pattern Recognition +1505.07426 Medical Physics +1505.08153 Computer Vision and Pattern Recognition +1506.00842 Distributed, Parallel, and Cluster Computing +1506.00883 Optimization and Control +1506.01107 High Energy Astrophysical Phenomena +1506.01824 Statistical Mechanics +1506.02420 Information Theory +1506.02484 Other Computer Science +1506.02723 Differential Geometry +1506.02952 Optimization and Control +1506.03249 Combinatorics +1506.03642 Algebraic Geometry +1506.03658 Systems and Control +1506.04028 Mesoscale and Nanoscale Physics +1506.04790 Instrumentation and Methods for Astrophysics +1506.04812 Information Theory +1506.04814 Information Theory +1506.05399 Systems and Control +1506.05857 Networking and Internet Architecture +1506.05858 Networking and Internet Architecture +1506.06151 Analysis of PDEs +1506.06153 +1506.06634 Atmospheric and Oceanic Physics +1506.06787 +1506.07911 Networking and Internet Architecture +1506.07950 Databases +1506.07955 Systems and Control +1506.08648 +1506.08927 Representation Theory +1506.08961 Information Theory +1507.00664 Optimization and Control +1507.00694 Analysis of PDEs +1507.00971 Logic +1507.01053 Neural and Evolutionary Computing +1507.01694 Systems and Control +1507.02280 Theory +1507.02347 Artificial Intelligence +1507.02387 Learning +1507.02761 Information Theory +1507.03510 Social and Information Networks +1507.03625 Number Theory +1507.04204 Information Theory +1507.04244 Information Theory +1507.04292 Networking and Internet Architecture +1507.04913 Multimedia +1507.05002 Algebraic Geometry +1507.05363 Information Theory +1507.05389 Information Theory +1507.05467 Distributed, Parallel, and Cluster Computing +1507.05470 Distributed, Parallel, and Cluster Computing +1507.05487 Information Theory +1507.05869 Machine Learning +1507.06349 Phenomenology +1507.06682 Social and Information Networks +1507.07042 Atomic Physics +1507.07716 Information Theory +1507.08979 Information Theory +1508.00051 Emerging Technologies +1508.00141 Fluid Dynamics +1508.00299 Social and Information Networks +1508.00559 Fluid Dynamics +1508.00618 Software Engineering +1508.00962 Information Theory +1508.01898 Information Theory +1508.02175 Networking and Internet Architecture +1508.02549 +1508.02583 Mesoscale and Nanoscale Physics +1508.02590 Mesoscale and Nanoscale Physics +1508.02900 Numerical Analysis +1508.03351 Information Theory +1508.03728 Information Theory +1508.04022 Information Theory +1508.04554 Learning +1508.04802 General Physics +1508.05490 Fluid Dynamics +1508.06218 Networking and Internet Architecture +1508.06483 Neural and Evolutionary Computing +1508.07211 Probability +1508.07688 Phenomenology +1508.07933 Optimization and Control +1509.00123 Information Theory +1509.00339 Mesoscale and Nanoscale Physics +1509.00436 Information Theory +1509.00527 Probability +1509.00940 Networking and Internet Architecture +1509.01205 Information Theory +1509.01324 Information Theory +1509.01353 Information Theory +1509.01382 Phenomenology +1509.02366 Optimization and Control +1509.02405 Information Theory +1509.02454 Dynamical Systems +1509.03536 Algebraic Geometry +1509.03765 Other Condensed Matter +1509.04262 Chemical Physics +1509.04747 Information Theory +1509.04784 Optimization and Control +1509.05091 Information Theory +1509.05132 Logic +1509.05497 Optimization and Control +1509.05499 Optimization and Control +1509.05755 Symplectic Geometry +1509.06602 Information Theory +1509.06611 Information Theory +1509.07353 Soft Condensed Matter +1509.07450 Learning +1509.08422 +1509.08660 Systems and Control +1509.08692 Optimization and Control +1510.00359 Information Theory +1510.00408 Classical Analysis and ODEs +1510.00419 Neural and Evolutionary Computing +1510.00459 Emerging Technologies +1510.00764 Information Theory +1510.00781 Computer Science and Game Theory +1510.00905 Dynamical Systems +1510.00907 Materials Science +1510.01606 Fluid Dynamics +1510.01989 Distributed, Parallel, and Cluster Computing +1510.02071 Computer Vision and Pattern Recognition +1510.02614 Distributed, Parallel, and Cluster Computing +1510.02826 Networking and Internet Architecture +1510.02845 Information Theory +1510.02894 Information Theory +1510.04144 Group Theory +1510.05338 Networking and Internet Architecture +1510.05396 Optimization and Control +1510.05742 Information Theory +1510.05766 Optimization and Control +1510.05920 Mesoscale and Nanoscale Physics +1510.06516 Systems and Control +1510.06958 Cosmology and Nongalactic Astrophysics +1510.07132 Phenomenology +1510.07262 Human-Computer Interaction +1510.07263 Human-Computer Interaction +1510.07307 +1510.07728 Information Theory +1510.07735 Information Theory +1510.08405 Statistical Mechanics +1510.08487 Social and Information Networks +1510.08544 Information Theory +1511.00037 Algebraic Geometry +1511.00959 +1511.00986 Chemical Physics +1511.01578 Chaotic Dynamics +1511.01659 Theory +1511.02043 Distributed, Parallel, and Cluster Computing +1511.02325 Information Theory +1511.02326 Information Theory +1511.02683 Computer Vision and Pattern Recognition +1511.02977 Representation Theory +1511.03811 Number Theory +1511.03911 Chemical Physics +1511.04183 High Energy Astrophysical Phenomena +1511.04768 Portfolio Management +1511.05186 Robotics +1511.05744 Probability +1511.06039 Phenomenology +1511.06302 +1511.06344 Networking and Internet Architecture +1511.06855 Learning +1511.07359 Trading and Market Microstructure +1511.07556 Information Theory +1511.08084 Information Theory +1511.08359 Representation Theory +1511.08504 Astrophysics of Galaxies +1511.09204 Instrumentation and Detectors +1511.09210 Instrumentation and Detectors +1511.09235 +1512.00031 Probability +1512.00142 Information Theory +1512.00344 Populations and Evolution +1512.01312 Cosmology and Nongalactic Astrophysics +1512.01363 Materials Science +1512.02068 Data Structures and Algorithms +1512.02328 Networking and Internet Architecture +1512.02937 Molecular Networks +1512.03122 Networking and Internet Architecture +1512.03225 Information Theory +1512.03263 Superconductivity +1512.03636 +1512.04750 Probability +1512.04805 Materials Science +1512.05008 Systems and Control +1512.05160 Networking and Internet Architecture +1512.06018 Fluid Dynamics +1512.06332 Pattern Formation and Solitons +1512.06474 Databases +1512.06643 Computation and Language +1512.06704 Theory +1512.06815 Analysis of PDEs +1512.07356 Medical Physics +1512.07887 Optimization and Control +1512.08138 +1512.08263 Geometric Topology +1512.08459 Statistical Mechanics +1512.08902 +1512.09093 Astrophysics of Galaxies +1601.00152 Information Theory +1601.00294 +1601.00374 Information Theory +1601.01029 Fluid Dynamics +1601.01089 Information Theory +1601.01090 Information Theory +1601.01348 Networking and Internet Architecture +1601.01453 Information Theory +1601.01596 Strongly Correlated Electrons +1601.02470 +1601.02483 Algebraic Geometry +1601.02526 Number Theory +1601.02528 Number Theory +1601.02529 Number Theory +1601.02530 Number Theory +1601.02549 Quantum Gases +1601.02847 History and Philosophy of Physics +1601.02935 Mesoscale and Nanoscale Physics +1601.03763 Information Theory +1601.03807 +1601.03872 Distributed, Parallel, and Cluster Computing +1601.04041 Cryptography and Security +1601.04896 +1601.05281 Information Theory +1601.05377 Information Theory +1601.05563 +1601.05603 Networking and Internet Architecture +1601.05677 Information Theory +1601.06109 +1601.06524 Information Theory +1601.06562 Cryptography and Security +1601.06838 Networking and Internet Architecture +1601.06895 Information Theory +1601.06915 Distributed, Parallel, and Cluster Computing +1601.07533 Computer Vision and Pattern Recognition +1601.07647 Combinatorics +1601.07701 Information Theory +1601.07939 Materials Science +1601.08076 Mesoscale and Nanoscale Physics +1601.08082 Cosmology and Nongalactic Astrophysics +1601.08238 Theory +1602.00331 Atomic Physics +1602.00453 Information Theory +1602.00484 Cryptography and Security +1602.00758 Solar and Stellar Astrophysics +1602.00802 Information Theory +1602.00910 Information Theory +1602.00994 Social and Information Networks +1602.01132 Machine Learning +1602.01530 Computational Complexity +1602.01731 Information Theory +1602.01825 +1602.02120 Data Structures and Algorithms +1602.02155 Astrophysics of Galaxies +1602.02542 Methodology +1602.02757 Astrophysics of Galaxies +1602.02850 Machine Learning +1602.02864 Distributed, Parallel, and Cluster Computing +1602.02924 Information Theory +1602.02943 Optimization and Control +1602.03580 Logic +1602.03890 Theory +1602.03968 Materials Science +1602.04179 Solar and Stellar Astrophysics +1602.05330 Functional Analysis +1602.05603 +1602.05659 Computer Vision and Pattern Recognition +1602.05898 Chemical Physics +1602.06181 Atomic Physics +1602.06277 Cosmology and Nongalactic Astrophysics +1602.06469 Optimization and Control +1602.06525 +1602.06555 Statistical Mechanics +1602.06647 Computer Vision and Pattern Recognition +1602.07089 +1602.07120 Learning +1602.07209 Logic +1602.07255 Information Theory +1602.07350 Earth and Planetary Astrophysics +1602.07889 Quantum Gases +1602.07911 +1602.08210 Learning +1602.08368 Chaotic Dynamics +1602.08769 Soft Condensed Matter +1603.00014 Functional Analysis +1603.00505 Astrophysics of Galaxies +1603.00569 Analysis of PDEs +1603.00889 Number Theory +1603.01281 High Energy Astrophysical Phenomena +1603.01485 +1603.01622 Astrophysics of Galaxies +1603.01630 High Energy Astrophysical Phenomena +1603.01659 Information Theory +1603.02200 Computer Vision and Pattern Recognition +1603.03216 Functional Analysis +1603.03515 Artificial Intelligence +1603.03828 Quantitative Methods +1603.04281 Materials Science +1603.04545 Superconductivity +1603.04652 +1603.04861 Mesoscale and Nanoscale Physics +1603.05031 Methodology +1603.05638 Earth and Planetary Astrophysics +1603.06596 Earth and Planetary Astrophysics +1603.06884 Probability +1603.06948 Astrophysics of Galaxies +1603.06966 Symplectic Geometry +1603.07151 Earth and Planetary Astrophysics +1603.07227 Information Theory +1603.07666 +1603.07862 Theory +1603.07905 Atomic Physics +1603.07967 Probability +1603.08025 Networking and Internet Architecture +1603.08049 Instrumentation and Detectors +1603.08123 Information Theory +1603.08405 +1603.08519 Cosmology and Nongalactic Astrophysics +1603.08711 Number Theory +1603.08717 Computer Science and Game Theory +1603.09078 Fluid Dynamics +1603.09242 Solar and Stellar Astrophysics +1603.09386 Networking and Internet Architecture +1604.00016 Astrophysics of Galaxies +1604.00018 Astrophysics of Galaxies +1604.00135 Information Theory +1604.00147 Computer Vision and Pattern Recognition +1604.00399 +1604.00597 Systems and Control +1604.00652 Instrumentation and Methods for Astrophysics +1604.00761 Information Theory +1604.01168 Combinatorics +1604.01181 Theory +1604.01227 Optimization and Control +1604.01287 Classical Analysis and ODEs +1604.01423 Computational Physics +1604.01870 Learning +1604.01899 Phenomenology +1604.01984 Methodology +1604.02041 Theory +1604.02572 Phenomenology +1604.03542 Quantum Algebra +1604.03689 Information Theory +1604.03756 Quantum Algebra +1604.04587 Information Theory +1604.04592 Information Theory +1604.04995 +1604.05053 Information Theory +1604.05189 Quantitative Methods +1604.05696 Networking and Internet Architecture +1604.05714 Astrophysics of Galaxies +1604.06032 Classical Analysis and ODEs +1604.06138 Cosmology and Nongalactic Astrophysics +1604.06409 Information Theory +1604.06427 Computer Vision and Pattern Recognition +1604.06702 +1604.06785 Information Theory +1604.06904 Plasma Physics +1604.07045 Computer Vision and Pattern Recognition +1604.07125 Methodology +1604.07498 +1604.07525 Information Theory +1604.07561 Information Theory +1604.07638 Social and Information Networks +1604.07642 Software Engineering +1604.07665 Information Theory +1604.07712 Phenomenology +1604.07734 Strongly Correlated Electrons +1604.07889 Statistical Mechanics +1604.08225 Materials Science +1604.08263 Systems and Control +1604.08274 Networking and Internet Architecture +1604.08297 Quantum Gases +1604.08577 Differential Geometry +1604.08634 Machine Learning +1604.08716 Sound +1605.00113 Information Theory +1605.00663 Combinatorics +1605.00756 Quantum Gases +1605.00760 Information Theory +1605.00892 Statistical Mechanics +1605.01005 Quantum Gases +1605.01023 Quantum Gases +1605.01172 Metric Geometry +1605.01363 Phenomenology +1605.01422 Astrophysics of Galaxies +1605.01459 Robotics +1605.01473 Information Theory +1605.01748 Distributed, Parallel, and Cluster Computing +1605.01947 Networking and Internet Architecture +1605.01950 Robotics +1605.02005 +1605.02552 Information Theory +1605.02597 Information Theory +1605.02828 Astrophysics of Galaxies +1605.02958 Materials Science +1605.03111 High Energy Astrophysical Phenomena +1605.03117 Number Theory +1605.03197 Superconductivity +1605.03230 Information Theory +1605.03259 Computer Vision and Pattern Recognition +1605.03651 Systems and Control +1605.03693 +1605.03709 Information Theory +1605.03740 Theory +1605.03895 Information Theory +1605.03980 Instrumentation and Methods for Astrophysics +1605.04044 Networking and Internet Architecture +1605.04279 +1605.04296 Superconductivity +1605.04325 Mesoscale and Nanoscale Physics +1605.04335 Theory +1605.04366 Strongly Correlated Electrons +1605.04478 Computer Vision and Pattern Recognition +1605.04670 Theory +1605.04885 Phenomenology +1605.05006 Theory +1605.05061 Information Theory +1605.05217 +1605.05288 Theory +1605.05311 Theory +1605.05485 Superconductivity +1605.05694 +1605.05919 Earth and Planetary Astrophysics +1605.05993 Statistical Mechanics +1605.06022 +1605.06045 Physics and Society +1605.06400 Analysis of PDEs +1605.06502 Phenomenology +1605.06507 Astrophysics of Galaxies +1605.07191 Phenomenology +1605.07457 Atomic Physics +1605.07474 Phenomenology +1605.07571 Machine Learning +1605.07759 Analysis of PDEs +1605.07987 Earth and Planetary Astrophysics +1605.08154 Computer Vision and Pattern Recognition +1605.08296 Information Theory +1605.08310 Rings and Algebras +1605.08437 High Energy Astrophysical Phenomena +1605.08438 Astrophysics of Galaxies +1605.08505 Optics +1605.08647 Plasma Physics +1605.08738 Data Structures and Algorithms +1605.08797 Cryptography and Security +1605.08988 Statistics Theory +1605.09080 Learning +1605.09159 Mesoscale and Nanoscale Physics +1605.09172 Representation Theory +1605.09365 Cosmology and Nongalactic Astrophysics +1605.09395 High Energy Astrophysical Phenomena +1605.09654 Materials Science +1605.09690 +1606.00207 +1606.00377 Theory +1606.00385 Optimization and Control +1606.00579 Quantum Gases +1606.00703 +1606.00918 Strongly Correlated Electrons +1606.01477 Superconductivity +1606.01860 Atomic Physics +1606.01962 Information Theory +1606.02292 Earth and Planetary Astrophysics +1606.02471 Optics +1606.02537 Theory +1606.02541 Combinatorics +1606.02908 +1606.02999 +1606.03013 Earth and Planetary Astrophysics +1606.03137 Artificial Intelligence +1606.03353 Soft Condensed Matter +1606.03424 Statistical Mechanics +1606.04748 Strongly Correlated Electrons +1606.04791 Networking and Internet Architecture +1606.04889 High Energy Astrophysical Phenomena +1606.05309 Astrophysics of Galaxies +1606.05339 Cosmology and Nongalactic Astrophysics +1606.05523 Optics +1606.05909 +1606.06002 Chemical Physics +1606.06167 Cosmology and Nongalactic Astrophysics +1606.06420 Lattice +1606.06480 +1606.06520 Strongly Correlated Electrons +1606.06630 Learning +1606.07027 Earth and Planetary Astrophysics +1606.07398 Neurons and Cognition +1606.07403 General Physics +1606.07454 Chemical Physics +1606.07818 Astrophysics of Galaxies +1606.08030 Phenomenology +1606.08124 Optics +1606.08163 Mesoscale and Nanoscale Physics +1606.08204 Probability +1606.08278 Quantum Gases +1606.08481 Analysis of PDEs +1606.08583 Information Theory +1606.08587 Information Theory +1606.08589 Information Theory +1606.08633 +1606.08841 Cosmology and Nongalactic Astrophysics +1606.08901 Number Theory +1606.09043 Networking and Internet Architecture +1606.09093 Networking and Internet Architecture +1606.09116 Networking and Internet Architecture +1606.09251 Astrophysics of Galaxies +1606.09533 Atmospheric and Oceanic Physics +1607.00006 Earth and Planetary Astrophysics +1607.00180 Cosmology and Nongalactic Astrophysics +1607.00364 +1607.00371 Experiment +1607.00454 Trading and Market Microstructure +1607.00455 Learning +1607.00626 High Energy Astrophysical Phenomena +1607.00648 Numerical Analysis +1607.00818 +1607.01035 Solar and Stellar Astrophysics +1607.01267 Astrophysics of Galaxies +1607.01304 Solar and Stellar Astrophysics +1607.01442 +1607.02136 Strongly Correlated Electrons +1607.02185 Strongly Correlated Electrons +1607.02343 Statistical Mechanics +1607.02395 Instrumentation and Detectors +1607.02458 Statistical Mechanics +1607.02779 Cosmology and Nongalactic Astrophysics +1607.02787 Astrophysics of Galaxies +1607.02992 Statistical Mechanics +1607.03017 Theory +1607.03090 Earth and Planetary Astrophysics +1607.03146 Cosmology and Nongalactic Astrophysics +1607.03147 Cosmology and Nongalactic Astrophysics +1607.03175 +1607.03299 +1607.03301 Materials Science +1607.03341 Information Theory +1607.03344 Networking and Internet Architecture +1607.03442 Combinatorics +1607.03493 Astrophysics of Galaxies +1607.03625 Cosmology and Nongalactic Astrophysics +1607.03666 Statistical Mechanics +1607.03858 Superconductivity +1607.03984 High Energy Astrophysical Phenomena +1607.04109 Information Theory +1607.04147 Computer Vision and Pattern Recognition +1607.04226 +1607.04291 Astrophysics of Galaxies +1607.04309 Strongly Correlated Electrons +1607.04346 Data Structures and Algorithms +1607.04375 Classical Analysis and ODEs +1607.04416 +1607.04497 Phenomenology +1607.04671 Phenomenology +1607.04912 Statistics Theory +1607.04938 Materials Science +1607.04958 +1607.04988 Functional Analysis +1607.05387 Artificial Intelligence +1607.05457 Information Theory +1607.05727 Strongly Correlated Electrons +1607.05895 Human-Computer Interaction +1607.05937 +1607.06096 Solar and Stellar Astrophysics +1607.06390 High Energy Astrophysical Phenomena +1607.06407 Computer Vision and Pattern Recognition +1607.06805 Theory +1607.06825 Atomic Physics +1607.06964 Fluid Dynamics +1607.06990 Chaotic Dynamics +1607.07184 Quantum Gases +1607.07281 Experiment +1607.07362 Optimization and Control +1607.07365 Optimization and Control +1607.07451 Instrumentation and Methods for Astrophysics +1607.07459 +1607.07539 Computer Vision and Pattern Recognition +1607.07625 +1607.07715 Statistical Mechanics +1607.07910 Cosmology and Nongalactic Astrophysics +1607.08160 Lattice +1607.08275 Astrophysics of Galaxies +1607.08526 High Energy Astrophysical Phenomena +1607.08548 Phenomenology +1607.08668 Astrophysics of Galaxies +1607.08733 Solar and Stellar Astrophysics +1607.08801 Mesoscale and Nanoscale Physics +1607.08870 Mesoscale and Nanoscale Physics +1608.00193 Number Theory +1608.00198 Analysis of PDEs +1608.00406 Distributed, Parallel, and Cluster Computing +1608.00583 Phenomenology +1608.00707 Soft Condensed Matter +1608.01030 Earth and Planetary Astrophysics +1608.01161 Neurons and Cognition +1608.01257 Optics +1608.01340 Earth and Planetary Astrophysics +1608.01437 Classical Physics +1608.01763 Cosmology and Nongalactic Astrophysics +1608.01802 +1608.01811 +1608.01848 Information Theory +1608.02069 Chaotic Dynamics +1608.02130 Astrophysics of Galaxies +1608.02202 +1608.02260 Statistical Mechanics +1608.02475 Soft Condensed Matter +1608.02603 Phenomenology +1608.02609 Phenomenology +1608.02634 +1608.02713 Theory +1608.02747 Optics +1608.03118 Data Structures and Algorithms +1608.03373 High Energy Astrophysical Phenomena +1608.03383 High Energy Astrophysical Phenomena +1608.03745 Information Theory +1608.03816 Phenomenology +1608.04287 Molecular Networks +1608.04372 Solar and Stellar Astrophysics +1608.04398 Solar and Stellar Astrophysics +1608.04586 Astrophysics of Galaxies +1608.04771 Information Theory +1608.04836 +1608.04848 Superconductivity +1608.04917 Computation and Language +1608.05111 Mesoscale and Nanoscale Physics +1608.05197 History and Philosophy of Physics +1608.05241 +1608.05253 +1608.05467 Information Theory +1608.05690 Representation Theory +1608.06306 High Energy Astrophysical Phenomena +1608.06324 High Energy Astrophysical Phenomena +1608.06363 Optimization and Control +1608.06699 Cosmology and Nongalactic Astrophysics +1608.06783 +1608.06992 Solar and Stellar Astrophysics +1608.07236 Number Theory +1608.07292 Solar and Stellar Astrophysics +1608.07300 High Energy Astrophysical Phenomena +1608.07620 Solar and Stellar Astrophysics +1608.07723 Combinatorics +1608.07817 Solar and Stellar Astrophysics +1608.07856 Information Theory +1608.07857 Information Theory +1608.07961 Cosmology and Nongalactic Astrophysics +1608.07965 Information Theory +1608.08019 Mesoscale and Nanoscale Physics +1608.08109 Strongly Correlated Electrons +1608.08167 Solar and Stellar Astrophysics +1608.08211 High Energy Astrophysical Phenomena +1608.08328 Atomic Physics +1608.08506 Classical Physics +1608.08564 Solar and Stellar Astrophysics +1608.08594 Solar and Stellar Astrophysics +1608.08634 Solar and Stellar Astrophysics +1608.08775 Materials Science +1608.08978 High Energy Astrophysical Phenomena +1608.08981 Astrophysics of Galaxies +1609.00025 Astrophysics of Galaxies +1609.00247 Representation Theory +1609.00354 +1609.00478 +1609.00593 High Energy Astrophysical Phenomena +1609.00780 High Energy Astrophysical Phenomena +1609.00905 Algebraic Geometry +1609.01098 Quantum Gases +1609.01179 High Energy Astrophysical Phenomena +1609.01340 +1609.01674 High Energy Astrophysical Phenomena +1609.01692 High Energy Astrophysical Phenomena +1609.01765 Solar and Stellar Astrophysics +1609.01908 Analysis of PDEs +1609.01938 Analysis of PDEs +1609.02106 Astrophysics of Galaxies +1609.02130 Geometric Topology +1609.02237 Cosmology and Nongalactic Astrophysics +1609.02291 Algebraic Topology +1609.02396 Earth and Planetary Astrophysics +1609.02446 Information Theory +1609.02576 Earth and Planetary Astrophysics +1609.02625 Solar and Stellar Astrophysics +1609.02783 +1609.02854 Probability +1609.02869 Physics and Society +1609.02961 Solar and Stellar Astrophysics +1609.03058 Computer Vision and Pattern Recognition +1609.03601 Information Theory +1609.03633 Number Theory +1609.03936 High Energy Astrophysical Phenomena +1609.04058 Differential Geometry +1609.04255 Astrophysics of Galaxies +1609.04280 Solar and Stellar Astrophysics +1609.04634 Solar and Stellar Astrophysics +1609.04815 High Energy Astrophysical Phenomena +1609.05048 Earth and Planetary Astrophysics +1609.05092 Solar and Stellar Astrophysics +1609.05211 Cosmology and Nongalactic Astrophysics +1609.05222 Theory +1609.05246 Solar and Stellar Astrophysics +1609.05254 Solar and Stellar Astrophysics +1609.05398 Solar and Stellar Astrophysics +1609.05517 Quantitative Methods +1609.05578 Astrophysics of Galaxies +1609.05592 Symplectic Geometry +1609.05706 High Energy Astrophysical Phenomena +1609.05844 High Energy Astrophysical Phenomena +1609.05849 Phenomenology +1609.05917 Astrophysics of Galaxies +1609.05979 Optics +1609.06036 Algebraic Geometry +1609.06129 Solar and Stellar Astrophysics +1609.06143 Solar and Stellar Astrophysics +1609.06348 Astrophysics of Galaxies +1609.06384 Earth and Planetary Astrophysics +1609.06474 Solar and Stellar Astrophysics +1609.06687 Number Theory +1609.06765 Cosmology and Nongalactic Astrophysics +1609.06801 Earth and Planetary Astrophysics +1609.06859 High Energy Astrophysical Phenomena +1609.07138 Phenomenology +1609.07150 Solar and Stellar Astrophysics +1609.07221 Optimization and Control +1609.07252 Earth and Planetary Astrophysics +1609.07389 Astrophysics of Galaxies +1609.07485 High Energy Astrophysical Phenomena +1609.07489 Solar and Stellar Astrophysics +1609.07573 Instrumentation and Methods for Astrophysics +1609.07609 Astrophysics of Galaxies +1609.07674 Atomic Physics +1609.07698 Solar and Stellar Astrophysics +1609.07773 Phenomenology +1609.07783 Pattern Formation and Solitons +1609.07824 Solar and Stellar Astrophysics +1609.07886 High Energy Astrophysical Phenomena +1609.07930 Earth and Planetary Astrophysics +1609.08159 Earth and Planetary Astrophysics +1609.08207 Number Theory +1609.08247 Cosmology and Nongalactic Astrophysics +1609.08466 Strongly Correlated Electrons +1609.08576 Cosmology and Nongalactic Astrophysics +1609.08601 Differential Geometry +1609.08625 Astrophysics of Galaxies +1609.08686 Neural and Evolutionary Computing +1609.08700 Astrophysics of Galaxies +1609.08831 Statistical Mechanics +1609.08834 Astrophysics of Galaxies +1609.08957 Astrophysics of Galaxies +1609.08999 Analysis of PDEs +1609.09003 Analysis of PDEs +1609.09012 Astrophysics of Galaxies +1609.09094 Solar and Stellar Astrophysics +1609.09301 +1609.09415 Analysis of PDEs +1609.09501 High Energy Astrophysical Phenomena +1609.09579 Astrophysics of Galaxies +1609.09819 Numerical Analysis +1610.00096 Materials Science +1610.00154 Mesoscale and Nanoscale Physics +1610.00217 +1610.00294 Astrophysics of Galaxies +1610.00301 Mesoscale and Nanoscale Physics +1610.00334 Astrophysics of Galaxies +1610.00647 Information Theory +1610.00712 Astrophysics of Galaxies +1610.00783 Materials Science +1610.00928 Mesoscale and Nanoscale Physics +1610.00932 Lattice +1610.01074 Statistical Mechanics +1610.01255 Probability +1610.01597 Earth and Planetary Astrophysics +1610.01688 Solar and Stellar Astrophysics +1610.01707 Optics +1610.01755 Solar and Stellar Astrophysics +1610.01767 Solar and Stellar Astrophysics +1610.01917 Representation Theory +1610.02193 Solar and Stellar Astrophysics +1610.02326 Astrophysics of Galaxies +1610.02457 Astrophysics of Galaxies +1610.02490 Machine Learning +1610.02587 Optimization and Control +1610.03072 Solar and Stellar Astrophysics +1610.03093 Solar and Stellar Astrophysics +1610.03109 Astrophysics of Galaxies +1610.03149 High Energy Astrophysical Phenomena +1610.03243 Solar and Stellar Astrophysics +1610.03371 Cosmology and Nongalactic Astrophysics +1610.04299 Solar and Stellar Astrophysics +1610.04726 +1610.04981 +1610.05017 Numerical Analysis +1610.05057 Populations and Evolution +1610.05196 Solar and Stellar Astrophysics +1610.05201 Astrophysics of Galaxies +1610.05339 Statistical Mechanics +1610.05721 Materials Science +1610.06270 Information Theory +1610.06344 +1610.06435 +1610.06745 Classical Analysis and ODEs +1610.07245 Robotics +1610.07333 Fluid Dynamics +1610.07859 Astrophysics of Galaxies +1610.07904 Number Theory +1610.08043 Instrumentation and Methods for Astrophysics +1610.08278 Methodology +1610.08296 Phenomenology +1610.08308 Mesoscale and Nanoscale Physics +1610.08318 Astrophysics of Galaxies +1610.08355 +1610.08358 Phenomenology +1610.08477 Mesoscale and Nanoscale Physics +1610.09447 Learning +1610.09561 High Energy Astrophysical Phenomena +1610.09581 +1610.09845 Statistical Mechanics +1610.09927 Dynamical Systems +1610.09949 Theory +1610.10003 High Energy Astrophysical Phenomena +1611.00451 Materials Science +1611.00779 Astrophysics of Galaxies +1611.00847 Learning +1611.00906 High Energy Astrophysical Phenomena +1611.00958 Differential Geometry +1611.01000 Materials Science +1611.01116 Computation and Language +1611.01217 Cosmology and Nongalactic Astrophysics +1611.01252 Classical Analysis and ODEs +1611.01464 Number Theory +1611.01638 Differential Geometry +1611.01725 Strongly Correlated Electrons +1611.01843 Machine Learning +1611.01847 Strongly Correlated Electrons +1611.01856 Computational Geometry +1611.01954 Quantum Gases +1611.01983 Phenomenology +1611.02051 Optics +1611.02401 Learning +1611.02431 Optimization and Control +1611.02442 Computer Science and Game Theory +1611.02447 Computer Vision and Pattern Recognition +1611.02449 Fluid Dynamics +1611.02467 +1611.02607 +1611.02618 Astrophysics of Galaxies +1611.02786 Numerical Analysis +1611.03046 Information Theory +1611.03064 Plasma Physics +1611.03105 Systems and Control +1611.03126 Atomic Physics +1611.03139 High Energy Astrophysical Phenomena +1611.03156 Materials Science +1611.03179 Algebraic Geometry +1611.03192 Statistical Mechanics +1611.03255 Phenomenology +1611.03393 +1611.03405 Optimization and Control +1611.03467 Instrumentation and Detectors +1611.03627 Instrumentation and Detectors +1611.03645 Adaptation and Self-Organizing Systems +1611.03647 Analysis of PDEs +1611.03667 Commutative Algebra +1611.03819 Learning +1611.03855 Instrumentation and Detectors +1611.03856 Mesoscale and Nanoscale Physics +1611.03857 Classical Physics +1611.03858 +1611.03860 Phenomenology +1611.03861 High Energy Astrophysical Phenomena +1611.03862 Instrumentation and Methods for Astrophysics +1611.03866 Cosmology and Nongalactic Astrophysics +1611.03868 Astrophysics of Galaxies +1611.03869 Astrophysics of Galaxies +1611.03873 Computer Vision and Pattern Recognition +1611.03876 Other Condensed Matter +1611.03877 Chemical Physics +1611.03879 Machine Learning +1611.03882 +1611.03883 Soft Condensed Matter +1611.03884 Algebraic Geometry +1611.03886 Classical Physics +1611.03887 Materials Science +1611.03889 Data Structures and Algorithms +1611.03890 Physics and Society +1611.03892 Classical Physics +1611.03893 Numerical Analysis +1611.03894 Learning +1611.03895 Networking and Internet Architecture +1611.03896 High Energy Astrophysical Phenomena +1611.03899 Computer Science and Game Theory +1611.03901 Probability +1611.03902 Soft Condensed Matter +1611.03905 Strongly Correlated Electrons +1611.03907 Artificial Intelligence +1611.03908 Theory +1611.03909 Probability +1611.03911 Numerical Analysis +1611.03917 Numerical Analysis +1611.03918 Algebraic Topology +1611.03919 Number Theory +1611.03921 Formal Languages and Automata Theory +1611.03922 Astrophysics of Galaxies +1611.03924 Optimization and Control +1611.03925 Soft Condensed Matter +1611.03926 Superconductivity +1611.03927 Soft Condensed Matter +1611.03929 Operator Algebras +1611.03930 Analysis of PDEs +1611.03932 Computation and Language +1611.03934 Learning +1611.03935 Information Theory +1611.03936 Numerical Analysis +1611.03939 Complex Variables +1611.03940 Combinatorics +1611.03943 Representation Theory +1611.03946 Computational Geometry +1611.03949 Computation and Language +1611.03951 +1611.03953 Algebraic Geometry +1611.03955 Numerical Analysis +1611.03956 Theory +1611.03958 Optimization and Control +1611.03959 Databases +1611.03961 +1611.03962 Algebraic Geometry +1611.03965 Neurons and Cognition +1611.03966 History and Overview +1611.03967 Emerging Technologies +1611.03970 Emerging Technologies +1611.03972 +1611.03973 Lattice +1611.03975 Number Theory +1611.03979 Machine Learning +1611.03980 Fluid Dynamics +1611.03981 Learning +1611.03982 Cryptography and Security +1611.03983 High Energy Astrophysical Phenomena +1611.03986 +1611.03988 Optimization and Control +1611.03989 +1611.03990 Probability +1611.03991 Combinatorics +1611.03994 +1611.03995 Computer Science and Game Theory +1611.03998 Differential Geometry +1611.03999 Computer Vision and Pattern Recognition +1611.04000 Rings and Algebras +1611.04001 Commutative Algebra +1611.04002 +1611.04003 Dynamical Systems +1611.04004 Biomolecules +1611.04005 Representation Theory +1611.04006 Theory +1611.04008 Representation Theory +1611.04010 Computation and Language +1611.04012 Networking and Internet Architecture +1611.04014 Combinatorics +1611.04015 Instrumentation and Detectors +1611.04016 Dynamical Systems +1611.04017 Networking and Internet Architecture +1611.04018 +1611.04020 Geophysics +1611.04024 Strongly Correlated Electrons +1611.04026 Applications +1611.04027 Cosmology and Nongalactic Astrophysics +1611.04028 +1611.04029 Medical Physics +1611.04030 Quantitative Methods +1611.04031 Number Theory +1611.04033 Computation and Language +1611.04034 Computer Science and Game Theory +1611.04036 Exactly Solvable and Integrable Systems +1611.04043 Computational Physics +1611.04049 Learning +1611.04050 Optimization and Control +1611.04052 Computation and Language +1611.04055 Differential Geometry +1611.04057 Group Theory +1611.04058 Strongly Correlated Electrons +1611.04059 Computers and Society +1611.04060 Combinatorics +1611.04062 Classical Analysis and ODEs +1611.04064 Earth and Planetary Astrophysics +1611.04065 Geometric Topology +1611.04066 Pattern Formation and Solitons +1611.04068 Materials Science +1611.04070 Algebraic Geometry +1611.04078 Algebraic Geometry +1611.04079 Combinatorics +1611.04080 Biomolecules +1611.04081 +1611.04083 Instrumentation and Detectors +1611.04085 Lattice +1611.04087 Functional Analysis +1611.04088 Learning +1611.04091 Statistical Finance +1611.04092 +1611.04093 Numerical Analysis +1611.04094 Accelerator Physics +1611.04095 Probability +1611.04098 Combinatorics +1611.04099 Software Engineering +1611.04101 Complex Variables +1611.04102 Number Theory +1611.04103 Number Theory +1611.04104 Numerical Analysis +1611.04105 Mesoscale and Nanoscale Physics +1611.04107 Spectral Theory +1611.04108 +1611.04109 Information Theory +1611.04110 Astrophysics of Galaxies +1611.04111 Optimization and Control +1611.04114 Geometric Topology +1611.04115 Number Theory +1611.04116 Atomic Physics +1611.04117 Phenomenology +1611.04119 Materials Science +1611.04120 Information Theory +1611.04122 Computation and Language +1611.04123 Pattern Formation and Solitons +1611.04125 Computation and Language +1611.04128 Lattice +1611.04129 Geophysics +1611.04131 Analysis of PDEs +1611.04132 Metric Geometry +1611.04133 Dynamical Systems +1611.04134 Geophysics +1611.04136 General Topology +1611.04137 Representation Theory +1611.04138 Computer Vision and Pattern Recognition +1611.04139 +1611.04140 +1611.04141 Numerical Analysis +1611.04144 Computer Vision and Pattern Recognition +1611.04145 Information Theory +1611.04148 Combinatorics +1611.04152 Combinatorics +1611.04153 Numerical Analysis +1611.04154 Chemical Physics +1611.04155 Group Theory +1611.04156 Data Structures and Algorithms +1611.04157 Algebraic Topology +1611.04158 Methodology +1611.04159 Computer Science and Game Theory +1611.04160 Analysis of PDEs +1611.04163 Rings and Algebras +1611.04166 Plasma Physics +1611.04168 Subcellular Processes +1611.04170 Logic +1611.04173 Commutative Algebra +1611.04174 Physics and Society +1611.04175 Multiagent Systems +1611.04176 Fluid Dynamics +1611.04177 Probability +1611.04178 Computational Geometry +1611.04179 Subcellular Processes +1611.04180 Robotics +1611.04181 Logic +1611.04185 Functional Analysis +1611.04186 Algebraic Geometry +1611.04187 Combinatorics +1611.04188 +1611.04190 High Energy Astrophysical Phenomena +1611.04191 Complex Variables +1611.04194 High Energy Astrophysical Phenomena +1611.04195 Analysis of PDEs +1611.04196 Information Theory +1611.04197 Representation Theory +1611.04198 Exactly Solvable and Integrable Systems +1611.04199 Learning +1611.04200 Other Condensed Matter +1611.04204 Populations and Evolution +1611.04207 Optimization and Control +1611.04210 Fluid Dynamics +1611.04211 Multiagent Systems +1611.04212 Information Theory +1611.04214 Numerical Analysis +1611.04216 Cryptography and Security +1611.04217 Strongly Correlated Electrons +1611.04219 Combinatorics +1611.04220 Superconductivity +1611.04224 Information Theory +1611.04225 Combinatorics +1611.04226 Information Theory +1611.04227 Cryptography and Security +1611.04228 Learning +1611.04229 Lattice +1611.04230 Computation and Language +1611.04232 Adaptation and Self-Organizing Systems +1611.04233 Computation and Language +1611.04234 Computation and Language +1611.04235 Networking and Internet Architecture +1611.04236 Analysis of PDEs +1611.04237 Solar and Stellar Astrophysics +1611.04238 Differential Geometry +1611.04240 Solar and Stellar Astrophysics +1611.04242 Mesoscale and Nanoscale Physics +1611.04243 Algebraic Geometry +1611.04245 Combinatorics +1611.04248 Applications +1611.04249 Functional Analysis +1611.04250 Analysis of PDEs +1611.04251 Computer Vision and Pattern Recognition +1611.04252 Mesoscale and Nanoscale Physics +1611.04253 Experiment +1611.04254 Information Theory +1611.04255 Distributed, Parallel, and Cluster Computing +1611.04256 +1611.04265 Geometric Topology +1611.04268 Networking and Internet Architecture +1611.04271 Complex Variables +1611.04272 Differential Geometry +1611.04273 Learning +1611.04274 Operator Algebras +1611.04276 Distributed, Parallel, and Cluster Computing +1611.04278 Networking and Internet Architecture +1611.04279 Discrete Mathematics +1611.04284 +1611.04285 Theory +1611.04286 Optimization and Control +1611.04287 Materials Science +1611.04288 Databases +1611.04289 Chaotic Dynamics +1611.04291 Optimization and Control +1611.04295 Data Analysis, Statistics and Probability +1611.04296 Statistical Mechanics +1611.04298 Computer Vision and Pattern Recognition +1611.04299 +1611.04300 Atomic Physics +1611.04302 Mesoscale and Nanoscale Physics +1611.04304 Atomic Physics +1611.04305 Analysis of PDEs +1611.04306 Rings and Algebras +1611.04309 Cosmology and Nongalactic Astrophysics +1611.04313 Phenomenology +1611.04315 +1611.04317 Representation Theory +1611.04319 Differential Geometry +1611.04321 Analysis of PDEs +1611.04322 Phenomenology +1611.04323 Statistics Theory +1611.04327 Optimization and Control +1611.04328 Mesoscale and Nanoscale Physics +1611.04330 Robotics +1611.04334 Phenomenology +1611.04339 +1611.04341 Information Theory +1611.04343 +1611.04344 Geometric Topology +1611.04345 Algebraic Geometry +1611.04346 Solar and Stellar Astrophysics +1611.04350 Materials Science +1611.04352 Optics +1611.04355 Materials Science +1611.04357 Computer Vision and Pattern Recognition +1611.04359 Systems and Control +1611.04361 Computation and Language +1611.04362 Numerical Analysis +1611.04363 Artificial Intelligence +1611.04364 Neurons and Cognition +1611.04366 Systems and Control +1611.04367 Statistical Mechanics +1611.04371 +1611.04372 Metric Geometry +1611.04376 Data Analysis, Statistics and Probability +1611.04379 Mesoscale and Nanoscale Physics +1611.04381 Phenomenology +1611.04383 Atomic Physics +1611.04384 Materials Science +1611.04387 Complex Variables +1611.04388 +1611.04394 Networking and Internet Architecture +1611.04395 Physics and Society +1611.04397 Analysis of PDEs +1611.04401 High Energy Astrophysical Phenomena +1611.04402 Materials Science +1611.04403 Group Theory +1611.04407 Networking and Internet Architecture +1611.04411 Applications +1611.04412 Commutative Algebra +1611.04413 Computer Vision and Pattern Recognition +1611.04414 Information Theory +1611.04419 Networking and Internet Architecture +1611.04420 Classical Analysis and ODEs +1611.04421 Lattice +1611.04423 Physics and Society +1611.04425 Other Quantitative Biology +1611.04426 Cryptography and Security +1611.04428 High Energy Astrophysical Phenomena +1611.04430 Materials Science +1611.04432 Number Theory +1611.04433 Software Engineering +1611.04436 Metric Geometry +1611.04438 Phenomenology +1611.04439 +1611.04442 Chemical Physics +1611.04443 Functional Analysis +1611.04444 Logic in Computer Science +1611.04447 Combinatorics +1611.04448 Popular Physics +1611.04450 Phenomenology +1611.04452 +1611.04453 Representation Theory +1611.04454 Plasma Physics +1611.04455 Multimedia +1611.04456 Materials Science +1611.04457 Earth and Planetary Astrophysics +1611.04458 Combinatorics +1611.04459 Plasma Physics +1611.04460 Statistics Theory +1611.04461 Classical Analysis and ODEs +1611.04462 General Mathematics +1611.04464 Complex Variables +1611.04465 Emerging Technologies +1611.04466 Instrumentation and Methods for Astrophysics +1611.04467 Materials Science +1611.04470 Analysis of PDEs +1611.04471 +1611.04473 Methodology +1611.04474 Computational Physics +1611.04476 +1611.04478 Exactly Solvable and Integrable Systems +1611.04479 Commutative Algebra +1611.04480 Earth and Planetary Astrophysics +1611.04481 Computer Vision and Pattern Recognition +1611.04483 Rings and Algebras +1611.04484 Metric Geometry +1611.04485 Plasma Physics +1611.04486 Quantum Algebra +1611.04487 Phenomenology +1611.04490 Solar and Stellar Astrophysics +1611.04491 Computation and Language +1611.04492 Experiment +1611.04493 Solar and Stellar Astrophysics +1611.04495 Information Theory +1611.04497 Probability +1611.04498 Number Theory +1611.04501 Mesoscale and Nanoscale Physics +1611.04503 Computation and Language +1611.04504 Cosmology and Nongalactic Astrophysics +1611.04506 Social and Information Networks +1611.04507 Group Theory +1611.04512 Materials Science +1611.04513 Statistics Theory +1611.04514 Geophysics +1611.04515 Analysis of PDEs +1611.04516 Cosmology and Nongalactic Astrophysics +1611.04518 Strongly Correlated Electrons +1611.04522 Lattice +1611.04524 Computer Science and Game Theory +1611.04525 High Energy Astrophysical Phenomena +1611.04527 Rings and Algebras +1611.04528 +1611.04529 Social and Information Networks +1611.04530 Differential Geometry +1611.04531 Systems and Control +1611.04532 High Energy Astrophysical Phenomena +1611.04533 Dynamical Systems +1611.04534 Computer Vision and Pattern Recognition +1611.04535 Data Structures and Algorithms +1611.04536 Lattice +1611.04537 Methodology +1611.04542 +1611.04543 Strongly Correlated Electrons +1611.04544 Commutative Algebra +1611.04547 Dynamical Systems +1611.04548 Data Structures and Algorithms +1611.04549 Instrumentation and Methods for Astrophysics +1611.04550 Strongly Correlated Electrons +1611.04551 Quantum Algebra +1611.04552 Robotics +1611.04553 Systems and Control +1611.04557 Phenomenology +1611.04558 Computation and Language +1611.04560 Strongly Correlated Electrons +1611.04562 Theory +1611.04564 Fluid Dynamics +1611.04566 Phenomenology +1611.04571 Phenomenology +1611.04573 Biomolecules +1611.04575 Strongly Correlated Electrons +1611.04577 Exactly Solvable and Integrable Systems +1611.04578 Learning +1611.04580 Formal Languages and Automata Theory +1611.04581 Learning +adap-org/9912002 Adaptation and Self-Organizing Systems +astro-ph/0612222 +astro-ph/0701039 +astro-ph/0701191 +astro-ph/0701235 +astro-ph/0701237 +astro-ph/0701272 +astro-ph/0701374 +astro-ph/0701491 +astro-ph/0701585 +astro-ph/0701650 +astro-ph/0701660 +astro-ph/0701672 +astro-ph/0701673 +astro-ph/0702080 +astro-ph/0702167 +astro-ph/0702173 +astro-ph/0702428 +astro-ph/0702642 +astro-ph/0703201 +astro-ph/0703673 +cond-mat/0410266 Superconductivity +cond-mat/0509009 Materials Science +cond-mat/0603110 Mesoscale and Nanoscale Physics +cs/0003065 Computer Vision and Pattern Recognition +cs/0109019 Software Engineering +cs/0206036 Computation and Language +cs/0305025 Artificial Intelligence +cs/0405032 Artificial Intelligence +cs/0405072 Databases +cs/0405080 Programming Languages +cs/0406035 Data Structures and Algorithms +cs/0406052 Cryptography and Security +cs/0408055 Artificial Intelligence +cs/0408063 Information Retrieval +cs/0412060 Information Theory +cs/0509096 Information Theory +cs/0511102 Networking and Internet Architecture +cs/0601074 Information Theory +cs/0601089 Learning +cs/0601091 Information Theory +cs/0601092 Information Theory +cs/0606049 Information Theory +cs/0606099 Information Theory +cs/0607014 Information Theory +cs/0609088 Information Theory +cs/0609089 Information Theory +cs/0609090 Information Theory +cs/0609138 Information Theory +cs/0609157 Information Theory +cs/0701118 Information Theory +cs/0701126 Information Theory +cs/0701134 Distributed, Parallel, and Cluster Computing +cs/0701149 Information Theory +cs/0702008 Information Theory +cs/0702014 Information Theory +cs/0702037 Networking and Internet Architecture +cs/0702044 Information Theory +cs/0702068 Information Theory +cs/0702092 Cryptography and Security +cs/0702099 Information Theory +cs/0703149 Neural and Evolutionary Computing +cs/0703154 Information Theory +cs/9809039 Networking and Internet Architecture +cs/9809057 Networking and Internet Architecture +cs/9809065 Networking and Internet Architecture +cs/9809073 Networking and Internet Architecture +cs/9809077 Networking and Internet Architecture +cs/9809087 Networking and Internet Architecture +cs/9809089 Networking and Internet Architecture +cs/9809091 Networking and Internet Architecture +cs/9809096 Networking and Internet Architecture +cs/9912009 Computation and Language +gr-qc/0605059 +gr-qc/0612011 +gr-qc/0701015 +gr-qc/0701033 +gr-qc/0701048 +gr-qc/0701051 +gr-qc/0701056 +gr-qc/0701057 +gr-qc/0701058 +gr-qc/0701063 +gr-qc/0701068 +gr-qc/0701077 +gr-qc/0701082 +gr-qc/0701092 +gr-qc/0701093 +gr-qc/0701094 +gr-qc/0701106 +gr-qc/0701124 +gr-qc/0701145 +gr-qc/0702023 +gr-qc/0702024 +gr-qc/0702025 +gr-qc/0702035 +gr-qc/0702068 +gr-qc/0702085 +gr-qc/0702126 +gr-qc/0702132 +gr-qc/0703021 +gr-qc/0703034 +gr-qc/0703040 +gr-qc/0703041 +gr-qc/0703051 +gr-qc/0703054 +gr-qc/0703084 +gr-qc/0703092 +gr-qc/0703136 +hep-ph/0701095 Phenomenology +hep-th/0610244 Theory +hep-th/0701152 Theory +hep-th/0701162 Theory +hep-th/0701196 Theory +hep-th/0703036 Theory +math-ph/0310054 +math/0207146 Combinatorics +math/0310149 Optimization and Control +math/0401157 Combinatorics +math/0602569 Complex Variables +math/0602588 Optimization and Control +math/0602589 Optimization and Control +math/0602590 Optimization and Control +physics/0011009 Optics +physics/0310117 Classical Physics +physics/0401072 Instrumentation and Detectors +physics/0401121 Instrumentation and Detectors +physics/0408094 Instrumentation and Detectors +physics/0412112 Medical Physics +physics/0509125 Atomic Physics +physics/0511093 Instrumentation and Detectors +physics/0602125 General Physics +physics/0611236 Instrumentation and Detectors +physics/0611269 Plasma Physics +physics/0701299 History and Philosophy of Physics +physics/9705023 Computational Physics +physics/9909054 Computational Physics +quant-ph/0301030 +quant-ph/0302166 +quant-ph/0508072 +quant-ph/0602217 +quant-ph/0608223 +quant-ph/0702061 +quant-ph/9807019 +1005.5483 Statistics Theory +1102.3206 High Energy Astrophysical Phenomena +1104.3750 +1112.5378 Number Theory +1205.1006 Number Theory +1207.0470 +1207.0630 Commutative Algebra +1210.2062 Materials Science +1210.4323 +1210.8355 +1302.0238 Number Theory +1303.2459 Probability +1303.5375 Dynamical Systems +1308.4515 +1309.2388 Optimization and Control +1309.2831 Number Theory +1312.4632 Probability +1312.7305 Logic +1401.1884 Probability +1401.6786 Strongly Correlated Electrons +1403.1060 +1405.3476 Lattice +1405.7790 Geometric Topology +1407.3968 Statistics Theory +1407.3971 Statistics Theory +1408.6581 Earth and Planetary Astrophysics +1409.1472 Number Theory +1409.2407 +1409.3794 Mesoscale and Nanoscale Physics +1409.4545 Computational Geometry +1409.5322 Probability +1410.8546 Computer Vision and Pattern Recognition +1412.6014 Cryptography and Security +1412.7396 Algebraic Geometry +1501.01055 Combinatorics +1501.02864 Phenomenology +1502.02404 Logic in Computer Science +1502.07719 Probability +1503.00448 Social and Information Networks +1503.04610 Group Theory +1503.05888 Quantum Algebra +1503.09011 Statistics Theory +1504.00002 Statistics Theory +1504.03303 Artificial Intelligence +1504.03870 Metric Geometry +1504.05222 Social and Information Networks +1504.05874 Classical Analysis and ODEs +1504.08006 Instrumentation and Methods for Astrophysics +1505.01777 Rings and Algebras +1505.03255 Solar and Stellar Astrophysics +1505.06849 Optimization and Control +1505.08059 Number Theory +1506.00650 Mesoscale and Nanoscale Physics +1506.01343 +1506.02094 Analysis of PDEs +1506.03071 Superconductivity +1506.04788 +1506.06803 Mesoscale and Nanoscale Physics +1506.06880 +1506.06961 Combinatorics +1506.07478 +1506.07502 +1507.00789 Information Theory +1507.00894 Economics +1507.01785 +1507.02472 Dynamical Systems +1507.04345 Strongly Correlated Electrons +1507.04869 Information Theory +1507.06128 Statistics Theory +1507.06545 +1507.07113 Populations and Evolution +1508.00841 Symplectic Geometry +1508.01165 Numerical Analysis +1508.01237 Analysis of PDEs +1508.03175 Instrumentation and Methods for Astrophysics +1508.04638 +1509.00035 Mesoscale and Nanoscale Physics +1509.00304 Complex Variables +1509.00991 Strongly Correlated Electrons +1509.03452 Group Theory +1509.03770 +1509.04860 Mesoscale and Nanoscale Physics +1509.06995 +1509.07212 Phenomenology +1509.07876 Theory +1509.08069 Quantum Algebra +1510.00030 Strongly Correlated Electrons +1510.01165 Discrete Mathematics +1510.01209 Theory +1510.01223 +1510.01247 Statistical Mechanics +1510.02108 Strongly Correlated Electrons +1510.02811 +1510.02850 Combinatorics +1510.03573 Commutative Algebra +1510.05190 Combinatorics +1510.05240 Theory +1510.05433 Data Structures and Algorithms +1510.08013 Lattice +1510.08282 Human-Computer Interaction +1510.08291 Computer Vision and Pattern Recognition +1510.08483 Cosmology and Nongalactic Astrophysics +1510.08906 Machine Learning +1510.09010 Cosmology and Nongalactic Astrophysics +1510.09081 +1511.00190 Quantum Algebra +1511.00844 +1511.00897 +1511.01463 Mesoscale and Nanoscale Physics +1511.02093 Information Theory +1511.05963 +1511.06449 Computer Vision and Pattern Recognition +1511.06864 Statistical Mechanics +1511.08274 Logic +1511.08373 Statistical Mechanics +1512.00080 Combinatorics +1512.00829 Geometric Topology +1512.01181 Strongly Correlated Electrons +1512.01589 +1512.01816 Theory +1512.03144 Number Theory +1512.03302 +1512.04211 Quantum Gases +1512.04993 Theory +1512.05197 Analysis of PDEs +1512.06175 Analysis of PDEs +1512.07177 Combinatorics +1512.07418 Materials Science +1512.08806 Machine Learning +1601.01471 Quantum Gases +1601.03413 Phenomenology +1601.03526 Combinatorics +1601.03777 Theory +1601.04569 Phenomenology +1601.05005 Soft Condensed Matter +1601.06643 Soft Condensed Matter +1601.06826 +1601.07056 Materials Science +1602.00347 Combinatorics +1602.00852 Strongly Correlated Electrons +1602.01570 Optics +1602.01758 Representation Theory +1602.01835 +1602.02892 Group Theory +1602.03973 Chemical Physics +1602.04031 Combinatorics +1602.04051 Space Physics +1602.04357 Chemical Physics +1602.05654 Strongly Correlated Electrons +1602.06200 Combinatorics +1602.07563 Computation and Language +1602.07565 Artificial Intelligence +1602.08114 Social and Information Networks +1603.02324 Data Structures and Algorithms +1603.02750 Strongly Correlated Electrons +1603.03555 +1603.03598 Theory +1603.04440 Theory +1603.06641 +1603.06995 Computer Vision and Pattern Recognition +1603.07555 Analysis of PDEs +1603.07575 Probability +1603.07639 Geometric Topology +1603.07757 Statistical Mechanics +1603.08266 Optics +1603.08344 Economics +1604.00093 +1604.00309 Astrophysics of Galaxies +1604.00648 Information Theory +1604.01395 +1604.01401 Programming Languages +1604.04044 Other Computer Science +1604.04130 Instrumentation and Detectors +1604.04330 Mesoscale and Nanoscale Physics +1604.04777 Probability +1604.05780 Astrophysics of Galaxies +1604.05966 Computer Vision and Pattern Recognition +1604.07743 Logic +1604.08249 Experiment +1604.08258 Analysis of PDEs +1604.08574 Analysis of PDEs +1605.00137 Data Structures and Algorithms +1605.02057 Computer Vision and Pattern Recognition +1605.02068 Networking and Internet Architecture +1605.02280 Functional Analysis +1605.02393 Networking and Internet Architecture +1605.02509 Classical Analysis and ODEs +1605.02741 High Energy Astrophysical Phenomena +1605.02827 Computers and Society +1605.02921 Instrumentation and Detectors +1605.02934 Phenomenology +1605.02945 Computation and Language +1605.02951 Physics and Society +1605.02953 +1605.02998 Soft Condensed Matter +1605.03007 Biological Physics +1605.03043 Discrete Mathematics +1605.03051 Optimization and Control +1605.03057 Probability +1605.03099 Differential Geometry +1605.03108 Combinatorics +1605.03115 Systems and Control +1605.03145 Mesoscale and Nanoscale Physics +1605.03162 Cryptography and Security +1605.03183 Cosmology and Nongalactic Astrophysics +1605.03198 Chaotic Dynamics +1605.03199 Phenomenology +1605.03200 Differential Geometry +1605.03202 Quantum Algebra +1605.03203 Data Structures and Algorithms +1605.03205 Social and Information Networks +1605.03213 Analysis of PDEs +1605.03215 +1605.03217 Functional Analysis +1605.03219 Lattice +1605.03220 Algebraic Geometry +1605.03222 Computer Vision and Pattern Recognition +1605.03223 Numerical Analysis +1605.03226 Geometric Topology +1605.03227 Logic in Computer Science +1605.03228 Numerical Analysis +1605.03229 Hardware Architecture +1605.03235 Experiment +1605.03236 Multimedia +1605.03238 Materials Science +1605.03242 Solar and Stellar Astrophysics +1605.03244 Information Theory +1605.03250 +1605.03253 Mesoscale and Nanoscale Physics +1605.03255 Solar and Stellar Astrophysics +1605.03261 Robotics +1605.03263 Geometric Topology +1605.03266 +1605.03267 Machine Learning +1605.03269 Robotics +1605.03273 Rings and Algebras +1605.03275 General Mathematics +1605.03276 Functional Analysis +1605.03279 Theory +1605.03281 Optimization and Control +1605.03282 Information Theory +1605.03283 Distributed, Parallel, and Cluster Computing +1605.03285 Materials Science +1605.03286 Social and Information Networks +1605.03289 Optimization and Control +1605.03290 Cryptography and Security +1605.03291 Materials Science +1605.03293 Materials Science +1605.03294 Methodology +1605.03295 Materials Science +1605.03296 Differential Geometry +1605.03299 Instrumentation and Detectors +1605.03301 Statistics Theory +1605.03302 Physics Education +1605.03304 Astrophysics of Galaxies +1605.03305 Materials Science +1605.03306 Methodology +1605.03308 Materials Science +1605.03310 Methodology +1605.03311 Methodology +1605.03313 Methodology +1605.03315 Methodology +1605.03316 Information Theory +1605.03317 Materials Science +1605.03319 Combinatorics +1605.03321 Methodology +1605.03322 Combinatorics +1605.03323 Materials Science +1605.03324 Computer Vision and Pattern Recognition +1605.03325 Applications +1605.03327 Materials Science +1605.03328 Computer Vision and Pattern Recognition +1605.03329 Mesoscale and Nanoscale Physics +1605.03330 Statistics Theory +1605.03331 Information Theory +1605.03332 Dynamical Systems +1605.03333 Statistics Theory +1605.03334 Materials Science +1605.03335 Methodology +1605.03337 Information Theory +1605.03340 Materials Science +1605.03342 Mesoscale and Nanoscale Physics +1605.03343 +1605.03344 Computer Vision and Pattern Recognition +1605.03346 Materials Science +1605.03349 +1605.03352 Statistics Theory +1605.03353 Cryptography and Security +1605.03355 Materials Science +1605.03358 Cell Behavior +1605.03360 Optimization and Control +1605.03361 Theory +1605.03367 +1605.03369 +1605.03370 Physics and Society +1605.03372 Differential Geometry +1605.03373 Neurons and Cognition +1605.03374 Combinatorics +1605.03375 Number Theory +1605.03379 Astrophysics of Galaxies +1605.03383 Chemical Physics +1605.03384 Astrophysics of Galaxies +1605.03387 Astrophysics of Galaxies +1605.03391 Machine Learning +1605.03392 Artificial Intelligence +1605.03393 Networking and Internet Architecture +1605.03394 Quantitative Methods +1605.03395 Atmospheric and Oceanic Physics +1605.03397 Computational Physics +1605.03407 +1605.03409 General Physics +1605.03415 Phenomenology +1605.03421 Combinatorics +1605.03422 General Mathematics +1605.03423 Soft Condensed Matter +1605.03426 Information Theory +1605.03427 Number Theory +1605.03428 Computer Vision and Pattern Recognition +1605.03430 General Mathematics +1605.03431 +1605.03437 Phenomenology +1605.03438 Algebraic Geometry +1605.03441 Chemical Physics +1605.03443 Strongly Correlated Electrons +1605.03444 Algebraic Topology +1605.03446 Analysis of PDEs +1605.03453 Differential Geometry +1605.03454 Information Theory +1605.03457 Analysis of PDEs +1605.03460 Information Theory +1605.03465 Mesoscale and Nanoscale Physics +1605.03466 Analysis of PDEs +1605.03470 Dynamical Systems +1605.03471 Methodology +1605.03472 +1605.03474 Number Theory +1605.03477 Computer Vision and Pattern Recognition +1605.03478 Human-Computer Interaction +1605.03480 Logic in Computer Science +1605.03485 Computers and Society +1605.03486 Applications +1605.03491 Probability +1605.03492 +1605.03493 Representation Theory +1605.03500 Instrumentation and Methods for Astrophysics +1605.03501 Logic +1605.03502 Probability +1605.03503 Numerical Analysis +1605.03506 Artificial Intelligence +1605.03509 +1605.03514 Geometric Topology +1605.03516 Functional Analysis +1605.03518 Information Theory +1605.03522 Algebraic Topology +1605.03523 Geometric Topology +1605.03525 Instrumentation and Methods for Astrophysics +1605.03527 Strongly Correlated Electrons +1605.03529 Optimization and Control +1605.03530 Group Theory +1605.03533 Combinatorics +1605.03535 Computers and Society +1605.03538 Functional Analysis +1605.03542 Computational Geometry +1605.03544 Optics +1605.03548 Probability +1605.03551 General Finance +1605.03553 Neurons and Cognition +1605.03555 Populations and Evolution +1605.03556 Soft Condensed Matter +1605.03558 Analysis of PDEs +1605.03559 Statistical Finance +1605.03560 Neural and Evolutionary Computing +1605.03563 Probability +1605.03564 +1605.03565 Instrumentation and Detectors +quant-ph/0602021 +0806.0684 History and Philosophy of Physics +0907.3531 History and Philosophy of Physics +0909.3685 Algebraic Geometry +1104.0153 +1201.4378 Combinatorics +1203.1151 +1208.4884 Representation Theory +1301.1053 Category Theory +1301.6879 Optimization and Control +1302.0634 Optimization and Control +1303.7090 Statistics Theory +1304.2810 Machine Learning +1305.4083 Classical Analysis and ODEs +1305.4567 Exactly Solvable and Integrable Systems +1306.0918 Computer Science and Game Theory +1307.1873 Classical Analysis and ODEs +1308.0815 +1309.5085 Disordered Systems and Neural Networks +1310.0761 Optimization and Control +1310.5920 Classical Analysis and ODEs +1311.0750 Data Structures and Algorithms +1311.1157 Classical Analysis and ODEs +1311.2828 Computer Science and Game Theory +1401.4027 Optimization and Control +1401.6009 Differential Geometry +1403.5750 Numerical Analysis +1403.7673 Complex Variables +1403.8008 Networking and Internet Architecture +1405.2550 Cosmology and Nongalactic Astrophysics +1405.4477 Quantum Algebra +1405.4697 Networking and Internet Architecture +1408.4765 Metric Geometry +1409.4711 Distributed, Parallel, and Cluster Computing +1409.6308 Cosmology and Nongalactic Astrophysics +1410.8567 Complex Variables +1410.8632 Combinatorics +1411.4895 +1411.5105 Dynamical Systems +1411.7471 +1412.3259 Dynamical Systems +1412.3664 Cryptography and Security +1412.4428 Methodology +1412.5863 Analysis of PDEs +1412.7768 Cosmology and Nongalactic Astrophysics +1501.05437 Phenomenology +1501.05519 Optimization and Control +1501.07321 Numerical Analysis +1501.07509 Dynamical Systems +1503.03631 Analysis of PDEs +1503.03964 Artificial Intelligence +1503.06345 Complex Variables +1503.08026 Geometric Topology +1504.06973 Number Theory +1504.08043 Cryptography and Security +1505.01326 Logic in Computer Science +1505.02308 Combinatorics +1505.02365 Algebraic Topology +1505.04360 Soft Condensed Matter +1505.04662 Metric Geometry +1506.02191 Metric Geometry +1506.04596 Differential Geometry +1506.07017 Differential Geometry +1506.07321 Representation Theory +1506.07559 Accelerator Physics +1506.09084 Systems and Control +1507.00255 Cryptography and Security +1507.02172 Theory +1507.06977 Machine Learning +1508.00145 Commutative Algebra +1508.01657 Data Structures and Algorithms +1508.04581 Probability +1508.05316 Optimization and Control +1508.06593 Dynamical Systems +1508.07606 Metric Geometry +1508.07753 Machine Learning +1508.07910 +1509.01508 Operator Algebras +1509.02227 Statistical Mechanics +1509.02314 Numerical Analysis +1509.02834 Numerical Analysis +1509.03546 Analysis of PDEs +1509.04260 +1509.06704 Classical Analysis and ODEs +1509.06771 Geometric Topology +1509.06957 Machine Learning +1509.06990 Algebraic Topology +1510.01196 History and Philosophy of Physics +1510.02360 Discrete Mathematics +1510.06566 Representation Theory +1511.01037 Number Theory +1511.03496 Strongly Correlated Electrons +1511.04512 Computer Vision and Pattern Recognition +1511.04941 Phenomenology +1511.05826 Algebraic Topology +1511.05886 Data Structures and Algorithms +1511.06144 Analysis of PDEs +1511.08404 Statistics Theory +1512.01629 Artificial Intelligence +1512.03515 Cosmology and Nongalactic Astrophysics +1512.04514 Information Theory +1512.05021 Mesoscale and Nanoscale Physics +1512.06472 +1512.08483 Analysis of PDEs +1512.09156 Information Theory +1601.01018 +1601.01603 Exactly Solvable and Integrable Systems +1601.04152 Populations and Evolution +1601.04700 +1601.06759 Computer Vision and Pattern Recognition +1601.07834 Combinatorics +1602.00046 Atomic Physics +1602.00413 Information Theory +1602.02569 Populations and Evolution +1602.02620 Databases +1602.03047 Operator Algebras +1602.04360 Algebraic Geometry +1602.05308 +1602.05387 Mesoscale and Nanoscale Physics +1602.05648 Experiment +1602.05653 +1602.05845 Quantum Gases +1602.05857 Analysis of PDEs +1602.07384 Cosmology and Nongalactic Astrophysics +1602.08503 Cosmology and Nongalactic Astrophysics +1602.08805 Systems and Control +1603.00700 Differential Geometry +1603.00977 Computational Complexity +1603.01409 +1603.01488 Artificial Intelligence +1603.01492 Superconductivity +1603.02078 Computer Vision and Pattern Recognition +1603.02082 +1603.03184 Algebraic Topology +1603.03188 Materials Science +1603.03628 Mesoscale and Nanoscale Physics +1603.03889 Combinatorics +1603.04581 Human-Computer Interaction +1603.09394 Mesoscale and Nanoscale Physics +1603.09677 Materials Science +1604.01063 Information Theory +1604.01184 Programming Languages +1604.03467 Statistical Mechanics +1604.03914 +1604.04030 Mesoscale and Nanoscale Physics +1604.04278 +1604.05007 Mesoscale and Nanoscale Physics +1604.05763 Soft Condensed Matter +1604.06374 Mesoscale and Nanoscale Physics +1604.06415 +1604.06432 +1604.07703 Group Theory +1605.02369 +1605.02519 Theory +1605.02701 Data Structures and Algorithms +1605.03954 +1605.05889 Symbolic Computation +1605.08654 +1605.09419 Instrumentation and Detectors +1606.00296 Dynamical Systems +1606.00392 Materials Science +1606.00590 Data Analysis, Statistics and Probability +1606.01724 Analysis of PDEs +1606.01881 Cryptography and Security +1606.04517 Phenomenology +1606.05239 Theory +1606.06100 Superconductivity +1606.06758 Cosmology and Nongalactic Astrophysics +1606.06929 Number Theory +1606.07453 Chemical Physics +1606.07791 Data Analysis, Statistics and Probability +1606.08352 Classical Analysis and ODEs +1607.00254 Analysis of PDEs +1607.01099 Lattice +1607.04172 +1607.05364 Differential Geometry +1607.05708 Instrumentation and Methods for Astrophysics +1607.07598 Optimization and Control +1608.00448 Phenomenology +1608.01185 Numerical Analysis +1608.01213 Cosmology and Nongalactic Astrophysics +1608.01727 Number Theory +1608.03300 Quantum Gases +1608.03423 Classical Analysis and ODEs +1608.03519 Combinatorics +1608.03760 Algebraic Geometry +1608.03903 +1608.04111 Number Theory +1608.04212 Representation Theory +1608.04381 Medical Physics +1608.04415 Programming Languages +1608.04471 Machine Learning +1608.04539 Phenomenology +1608.04738 Computation and Language +1608.04816 Geometric Topology +1608.04884 Optimization and Control +1608.04891 Number Theory +1608.05008 Number Theory +1608.05019 Theory +1608.05033 Dynamical Systems +1608.05188 +1608.05229 +1608.05259 Cellular Automata and Lattice Gases +1608.05338 Computation +1608.05368 Programming Languages +1608.05384 Information Theory +1608.05404 Computer Vision and Pattern Recognition +1608.05405 Number Theory +1608.05406 Methodology +1608.05408 Instrumentation and Detectors +1608.05416 Astrophysics of Galaxies +1608.05420 Strongly Correlated Electrons +1608.05424 Instrumentation and Detectors +1608.05425 Classical Physics +1608.05427 +1608.05428 Methodology +1608.05431 Information Theory +1608.05432 Algebraic Topology +1608.05433 Biological Physics +1608.05434 Solar and Stellar Astrophysics +1608.05435 History and Overview +1608.05436 Instrumentation and Detectors +1608.05439 Physics and Society +1608.05440 Programming Languages +1608.05442 Computer Vision and Pattern Recognition +1608.05444 Software Engineering +1608.05445 Emerging Technologies +1608.05448 Number Theory +1608.05451 Astrophysics of Galaxies +1608.05455 Statistical Mechanics +1608.05456 Instrumentation and Methods for Astrophysics +1608.05457 Computation and Language +1608.05458 Number Theory +1608.05460 Methodology +1608.05462 Number Theory +1608.05463 Analysis of PDEs +1608.05464 Mesoscale and Nanoscale Physics +1608.05465 Methodology +1608.05466 Rings and Algebras +1608.05468 Information Theory +1608.05469 Cosmology and Nongalactic Astrophysics +1608.05472 Materials Science +1608.05476 Mesoscale and Nanoscale Physics +1608.05479 Discrete Mathematics +1608.05483 +1608.05485 Artificial Intelligence +1608.05486 Materials Science +1608.05488 Optics +1608.05491 +1608.05494 Molecular Networks +1608.05495 Combinatorics +1608.05500 Representation Theory +1608.05502 Analysis of PDEs +1608.05503 +1608.05504 Optics +1608.05505 Digital Libraries +1608.05506 Representation Theory +1608.05507 Representation Theory +1608.05512 Optimization and Control +1608.05514 Probability +1608.05516 Theory +1608.05517 Digital Libraries +1608.05518 Computer Vision and Pattern Recognition +1608.05519 Classical Physics +1608.05521 Programming Languages +1608.05525 Geometric Topology +1608.05528 Computation and Language +1608.05530 Functional Analysis +1608.05533 Applications +1608.05535 Dynamical Systems +1608.05536 Solar and Stellar Astrophysics +1608.05538 Cryptography and Security +1608.05539 Solar and Stellar Astrophysics +1608.05540 Analysis of PDEs +1608.05541 Differential Geometry +1608.05544 Algebraic Geometry +1608.05550 Data Structures and Algorithms +1608.05551 Materials Science +1608.05554 Computation and Language +1608.05555 Dynamical Systems +1608.05556 Chemical Physics +1608.05558 Phenomenology +1608.05560 Learning +1608.05561 Solar and Stellar Astrophysics +1608.05562 Computer Vision and Pattern Recognition +1608.05564 Databases +1608.05567 Representation Theory +1608.05569 Algebraic Geometry +1608.05570 Numerical Analysis +1608.05573 Combinatorics +1608.05574 History and Philosophy of Physics +1608.05577 Combinatorics +1608.05579 Optics +1608.05585 Mathematical Finance +1608.05586 Strongly Correlated Electrons +1608.05587 Soft Condensed Matter +1608.05588 Phenomenology +1608.05589 Dynamical Systems +1608.05590 Complex Variables +1608.05594 Databases +1608.05595 Mesoscale and Nanoscale Physics +1608.05596 Dynamical Systems +1608.05597 Economics +1608.05599 Analysis of PDEs +1608.05601 Optimization and Control +1608.05602 Analysis of PDEs +1608.05603 Soft Condensed Matter +1608.05604 Computation and Language +1608.05605 Computation and Language +1608.05609 Artificial Intelligence +1608.05610 Learning +1608.05611 Strongly Correlated Electrons +1608.05612 Probability +1608.05613 Cryptography and Security +1608.05616 Quantum Gases +1608.05617 Programming Languages +1608.05619 Programming Languages +1608.05620 Dynamical Systems +1608.05624 Astrophysics of Galaxies +1608.05625 +1608.05626 Mesoscale and Nanoscale Physics +1608.05627 Algebraic Geometry +1608.05629 Combinatorics +1608.05634 Distributed, Parallel, and Cluster Computing +1608.05636 Dynamical Systems +1608.05638 Physics Education +1608.05639 Learning +1608.05640 Experiment +1608.05646 Instrumentation and Detectors +1608.05647 Analysis of PDEs +1608.05648 Emerging Technologies +1608.05649 Medical Physics +1608.05651 Number Theory +1608.05652 +1608.05653 Materials Science +1608.05654 Operating Systems +1608.05656 Phenomenology +1608.05657 Combinatorics +1608.05659 Combinatorics +1608.05660 Information Theory +1608.05661 Computers and Society +1608.05663 Materials Science +1608.05664 Information Theory +1608.05665 Neurons and Cognition +1608.05666 Algebraic Geometry +1608.05667 Materials Science +1608.05668 Computers and Society +1608.05669 Algebraic Topology +1608.05670 Methodology +1608.05671 Social and Information Networks +1608.05672 +1608.05676 Programming Languages +1608.05677 Classical Analysis and ODEs +1608.05678 Databases +1608.05683 Geometric Topology +1608.05684 Computer Vision and Pattern Recognition +1608.05686 Optics +1608.05687 Theory +1608.05688 Probability +1608.05689 Differential Geometry +1608.05691 Logic +1608.05692 Dynamical Systems +1608.05694 Artificial Intelligence +1608.05695 Geometric Topology +1608.05698 Logic in Computer Science +1608.05699 Networking and Internet Architecture +1608.05700 Strongly Correlated Electrons +1608.05701 Artificial Intelligence +1608.05705 Combinatorics +1608.05707 Analysis of PDEs +1608.05708 Quantum Gases +hep-th/0411013 Theory +math/0111194 Algebraic Geometry +0704.2858 Algebraic Geometry +0707.4115 Strongly Correlated Electrons +0709.0597 General Mathematics +0809.3234 Rings and Algebras +0905.1078 Materials Science +0910.2531 +0911.3483 +1003.4173 +1003.5671 +1007.5464 +1008.2207 Algebraic Geometry +1010.2991 Metric Geometry +1101.3098 +1104.2275 Data Structures and Algorithms +1107.2319 Metric Geometry +1110.2763 Probability +1112.2347 +1201.1874 Number Theory +1201.2829 Logic in Computer Science +1202.3116 +1204.1435 Number Theory +1207.6334 Theory +1210.4586 Functional Analysis +1212.2575 +1212.5969 Physics and Society +1301.2412 Logic +1304.0065 Optimization and Control +1306.6221 Algebraic Topology +1306.6223 +1308.2720 Number Theory +1308.6126 +1310.2310 Algebraic Geometry +1310.4396 Other Condensed Matter +1311.2657 Numerical Analysis +1312.4269 +1312.5022 Theory +1312.7564 Dynamical Systems +1312.7699 Logic +1401.8009 +1404.1220 +1404.1968 Instrumentation and Detectors +1405.2379 Probability +1405.6002 Solar and Stellar Astrophysics +1405.6255 +1405.7511 Statistics Theory +1406.0833 +1406.3018 Representation Theory +1406.3190 Machine Learning +1406.6210 Information Theory +1406.6997 Classical Analysis and ODEs +1406.7227 Combinatorics +1407.3351 Number Theory +1407.5363 Methodology +1407.6909 Representation Theory +1407.6912 Quantum Algebra +1408.1975 High Energy Astrophysical Phenomena +1408.4257 Combinatorics +1409.2819 Databases +1409.8271 Classical Physics +1410.0445 Combinatorics +1410.3191 Information Theory +1410.4307 Statistics Theory +1411.0015 +1411.0423 Probability +1411.0941 +1411.1510 Dynamical Systems +1411.2133 Spectral Theory +1411.7017 Lattice +1412.1543 Computational Complexity +1412.6133 Information Theory +1501.00781 Optics +1501.04240 Biomolecules +1501.07347 Algebraic Geometry +1502.00112 Logic in Computer Science +1502.02018 +1502.02765 Algebraic Geometry +1502.03970 +1502.06901 Economics +1503.03059 +1503.06898 Mesoscale and Nanoscale Physics +1503.07750 +1503.08091 +1504.00352 Algebraic Geometry +1504.00680 Social and Information Networks +1504.02595 Functional Analysis +1504.03584 Information Theory +1504.07035 Classical Analysis and ODEs +1504.08027 Artificial Intelligence +1505.01177 Methodology +1505.01562 +1505.01824 Instrumentation and Detectors +1505.03103 +1505.03181 Mesoscale and Nanoscale Physics +1505.06431 Analysis of PDEs +1505.06958 Strongly Correlated Electrons +1506.04890 Algebraic Geometry +1506.05228 +1506.05997 Materials Science +1506.06113 Algebraic Geometry +1506.08872 Number Theory +1507.02902 +1507.04556 Commutative Algebra +1507.04964 +1507.05744 Group Theory +1507.06101 Classical Analysis and ODEs +1507.06756 Algebraic Geometry +1507.07021 Biomolecules +1507.07899 General Mathematics +1507.08224 General Physics +1507.08794 Theory +1508.00626 +1508.02755 Differential Geometry +1508.06379 Numerical Analysis +1508.07799 +1509.00010 Cosmology and Nongalactic Astrophysics +1509.01829 Theory +1509.02193 Methodology +1509.02449 Algebraic Geometry +1509.03004 Fluid Dynamics +1509.03543 Computational Complexity +1509.04347 Probability +1509.04659 Commutative Algebra +1509.07835 Dynamical Systems +1509.08293 +1509.08328 Analysis of PDEs +1510.00038 Functional Analysis +1510.00447 Analysis of PDEs +1510.00871 Algebraic Geometry +1510.01199 Mesoscale and Nanoscale Physics +1510.03044 Optimization and Control +1510.03516 Methodology +1510.04933 Soft Condensed Matter +1510.04944 Materials Science +1510.05486 Computational Complexity +1510.07281 Differential Geometry +1510.07470 Theory +1510.08499 K-Theory and Homology +1510.08943 Cryptography and Security +1511.00929 Number Theory +1511.02374 Group Theory +1511.04085 Theory +1511.04607 Group Theory +1511.05731 +1511.05761 Theory +1511.06397 Computation and Language +1511.06839 Phenomenology +1511.07290 Algebraic Geometry +1511.08863 Solar and Stellar Astrophysics +1512.00063 Computational Physics +1512.00366 +1512.01752 Learning +1512.01848 Computer Vision and Pattern Recognition +1512.02023 +1512.02088 Superconductivity +1512.02295 Physics Education +1512.02495 Experiment +1512.02846 Chemical Physics +1512.03506 Cosmology and Nongalactic Astrophysics +1512.03558 Functional Analysis +1512.04387 Artificial Intelligence +1512.04502 Mesoscale and Nanoscale Physics +1512.05168 +1512.06114 +1512.06352 Information Theory +1512.06473 Computer Vision and Pattern Recognition +1512.06888 Systems and Control +1512.08671 Optics +1512.08677 Mesoscale and Nanoscale Physics +1512.08883 Probability +1512.09281 +1601.00306 Applications +1601.02249 Dynamical Systems +1601.04115 Computer Vision and Pattern Recognition +1601.04914 Theory +1601.05014 +1601.05137 Information Theory +1601.05740 Probability +1601.06379 Chemical Physics +1601.06808 Chemical Physics +1601.07792 Computer Science and Game Theory +1601.07912 Earth and Planetary Astrophysics +1602.00459 Numerical Analysis +1602.00916 Theory +1602.01020 Metric Geometry +1602.01052 Applications +1602.02843 Rings and Algebras +1602.03081 +1602.03489 Experiment +1602.03819 Databases +1602.04307 Combinatorics +1602.04333 Optics +1602.04926 Theory +1602.05578 Cosmology and Nongalactic Astrophysics +1602.06828 Mesoscale and Nanoscale Physics +1602.07051 Mesoscale and Nanoscale Physics +1602.07586 Statistics Theory +1602.08630 Statistical Mechanics +1602.08790 Functional Analysis +1602.08818 +1602.08838 Complex Variables +1602.08992 +1602.09058 Experiment +1603.01007 Analysis of PDEs +1603.01960 Analysis of PDEs +1603.02719 Geometric Topology +1603.03311 Dynamical Systems +1603.03644 Geometric Topology +1603.03799 Applications +1603.04067 Distributed, Parallel, and Cluster Computing +1603.04948 Combinatorics +1603.05053 Materials Science +1603.06725 Number Theory +1603.06997 +1603.07727 +1603.08318 Learning +1603.08345 Optics +1603.08960 General Physics +1603.09248 Theory +1603.09631 Computation and Language +1603.09703 Cosmology and Nongalactic Astrophysics +1604.00402 Classical Analysis and ODEs +1604.00616 Classical Analysis and ODEs +1604.01826 Biomolecules +1604.02537 +1604.02944 Materials Science +1604.03457 High Energy Astrophysical Phenomena +1604.03759 Analysis of PDEs +1604.05011 Plasma Physics +1604.05769 Analysis of PDEs +1604.06242 Computer Vision and Pattern Recognition +1604.06301 +1604.06538 Instrumentation and Methods for Astrophysics +1604.06729 +1604.08232 General Physics +1604.08440 Algebraic Geometry +1604.08805 Instrumentation and Detectors +1604.08821 Instrumentation and Detectors +1605.00117 Optimization and Control +1605.00282 Applications +1605.00342 Algebraic Geometry +1605.00981 Statistical Mechanics +1605.01312 Strongly Correlated Electrons +1605.01598 Applications +1605.01664 Databases +1605.01924 Analysis of PDEs +1605.01944 Networking and Internet Architecture +1605.02142 Programming Languages +1605.02292 Theory +1605.02723 Classical Analysis and ODEs +1605.02847 Astrophysics of Galaxies +1605.03151 Combinatorics +1605.03611 Mesoscale and Nanoscale Physics +1605.03648 Optimization and Control +1605.03696 +1605.03805 Machine Learning +1605.04005 Space Physics +1605.04240 Analysis of PDEs +1605.04263 Databases +1605.04306 Mesoscale and Nanoscale Physics +1605.04318 Solar and Stellar Astrophysics +1605.04321 +1605.04322 +1605.04323 Statistics Theory +1605.04324 +1605.04328 Chemical Physics +1605.04330 Combinatorics +1605.04331 Optics +1605.04338 Number Theory +1605.04340 Discrete Mathematics +1605.04342 Phenomenology +1605.04343 Formal Languages and Automata Theory +1605.04344 Systems and Control +1605.04346 Information Theory +1605.04347 Superconductivity +1605.04350 Information Theory +1605.04351 Theory +1605.04353 Combinatorics +1605.04354 Quantum Gases +1605.04358 Methodology +1605.04359 Computation and Language +1605.04360 Multiagent Systems +1605.04361 +1605.04364 Numerical Analysis +1605.04367 Instrumentation and Methods for Astrophysics +1605.04368 Robotics +1605.04369 Computer Vision and Pattern Recognition +1605.04370 Systems and Control +1605.04371 Number Theory +1605.04372 Algebraic Geometry +1605.04373 Strongly Correlated Electrons +1605.04374 Social and Information Networks +1605.04378 Strongly Correlated Electrons +1605.04379 Networking and Internet Architecture +1605.04382 Atmospheric and Oceanic Physics +1605.04383 Materials Science +1605.04384 Fluid Dynamics +1605.04385 Economics +1605.04387 Complex Variables +1605.04388 Numerical Analysis +1605.04392 Optics +1605.04393 Optimization and Control +1605.04394 Metric Geometry +1605.04397 Complex Variables +1605.04399 Computer Science and Game Theory +1605.04400 Logic in Computer Science +1605.04406 Differential Geometry +1605.04407 Differential Geometry +1605.04410 Materials Science +1605.04412 Instrumentation and Detectors +1605.04414 Optimization and Control +1605.04415 Combinatorics +1605.04417 Probability +1605.04418 Information Theory +1605.04419 Numerical Analysis +1605.04420 Accelerator Physics +1605.04421 Data Structures and Algorithms +1605.04422 Numerical Analysis +1605.04423 Spectral Theory +1605.04424 Optics +1605.04428 Phenomenology +1605.04429 Spectral Theory +1605.04433 Algebraic Geometry +1605.04434 Networking and Internet Architecture +1605.04435 Machine Learning +1605.04439 Robotics +1605.04441 Combinatorics +1605.04443 Solar and Stellar Astrophysics +1605.04447 Distributed, Parallel, and Cluster Computing +1605.04448 Quantum Algebra +1605.04450 Plasma Physics +1605.04451 Mesoscale and Nanoscale Physics +1605.04452 Solar and Stellar Astrophysics +1605.04453 Phenomenology +1605.04454 Superconductivity +1605.04455 Solar and Stellar Astrophysics +1605.04459 Algebraic Geometry +1605.04460 Cosmology and Nongalactic Astrophysics +1605.04463 Neurons and Cognition +1605.04465 Machine Learning +1605.04466 Machine Learning +1605.04472 Symbolic Computation +1605.04475 Computation and Language +1605.04479 Group Theory +1605.04484 Logic +1605.04485 Soft Condensed Matter +1605.04486 Cryptography and Security +1605.04487 Information Theory +1605.04489 Category Theory +1605.04491 Data Structures and Algorithms +1605.04492 Quantitative Methods +1605.04493 Mesoscale and Nanoscale Physics +1605.04495 Materials Science +1605.04496 General Topology +1605.04501 Combinatorics +1605.04503 Dynamical Systems +1605.04505 Dynamical Systems +1605.04509 Optics +1605.04510 Networking and Internet Architecture +1605.04511 Physics and Society +1605.04513 Geometric Topology +1605.04517 Differential Geometry +1605.04518 Optimization and Control +1605.04519 Biomolecules +1605.04520 Optimization and Control +1605.04523 Functional Analysis +1605.04527 Earth and Planetary Astrophysics +1605.04528 Numerical Analysis +1605.04529 Operator Algebras +1605.04530 Algebraic Geometry +1605.04532 Geometric Topology +1605.04533 Human-Computer Interaction +1605.04534 Information Theory +1605.04537 Logic +1605.04538 Data Structures and Algorithms +1605.04539 Atomic Physics +1605.04542 Statistics Theory +1605.04543 Materials Science +1605.04544 Experiment +1605.04546 +1605.04548 Number Theory +1605.04549 +1605.04555 Rings and Algebras +1605.04557 Physics and Society +1605.04558 Fluid Dynamics +1605.04560 Dynamical Systems +1605.04561 Combinatorics +1605.04563 Differential Geometry +1605.04565 Methodology +1605.04568 Metric Geometry +1605.04573 Analysis of PDEs +1605.04575 Combinatorics +1605.04578 Differential Geometry +1605.04579 Information Theory +1605.04580 Distributed, Parallel, and Cluster Computing +1605.04581 +1605.04583 +1605.04584 Pricing of Securities +1605.04590 Algebraic Topology +1605.04593 Fluid Dynamics +1605.04596 Cellular Automata and Lattice Gases +1605.04597 Combinatorics +1605.04600 Computational Finance +1605.04602 Networking and Internet Architecture +1605.04603 Computer Vision and Pattern Recognition +1605.04611 Information Theory +1605.04614 Learning +1605.04620 Theory +1605.04624 Information Retrieval +1605.04625 Differential Geometry +1605.04626 Information Theory +1605.04628 Number Theory +1605.04629 +1605.04630 Quantum Algebra +1605.04631 Algebraic Geometry +1605.04632 Mesoscale and Nanoscale Physics +1605.04633 +1605.04636 Robotics +1605.04638 Learning +1605.04639 Learning +1605.04643 Analysis of PDEs +1605.04644 Numerical Analysis +1605.04645 Superconductivity +1605.04649 Classical Analysis and ODEs +1605.04657 Information Theory +1605.04661 Information Theory +1605.04664 Information Theory +1605.04665 Information Theory +1605.04671 Logic +1605.04672 Machine Learning +1605.04674 Computer Science and Game Theory +1605.04677 Commutative Algebra +1605.04678 Other Condensed Matter +1605.04680 Algebraic Geometry +1605.04683 Space Physics +1605.04684 Optimization and Control +1605.04686 Information Theory +1605.04688 Analysis of PDEs +1605.04690 Combinatorics +1605.04691 Artificial Intelligence +1605.04692 Phenomenology +1605.04694 Combinatorics +1605.04696 Networking and Internet Architecture +1605.04697 Combinatorics +1605.04698 Statistical Mechanics +1605.04710 Physics and Society +1605.04712 Theory +1605.04715 Computational Complexity +1605.04718 Quantitative Methods +1605.04722 Commutative Algebra +1605.04728 Number Theory +1605.04731 Computer Vision and Pattern Recognition +1605.04732 Mesoscale and Nanoscale Physics +1605.04735 Logic +1605.04737 Algebraic Topology +1605.04738 Data Analysis, Statistics and Probability +1605.04739 Quantitative Methods +1605.04740 Neurons and Cognition +1605.04744 Logic in Computer Science +1605.04745 Representation Theory +1605.04750 Mesoscale and Nanoscale Physics +1605.04751 Algebraic Topology +1605.04752 Differential Geometry +1605.04756 Phenomenology +1605.04757 Number Theory +1605.04760 Combinatorics +1605.04761 Computers and Society +1605.04764 Learning +1605.04765 Classical Physics +1605.04771 Quantum Gases +1605.04772 Methodology +1605.04773 General Mathematics +1605.04774 Physics and Society +1605.04779 Functional Analysis +1605.04780 Combinatorics +1605.04781 Materials Science +1605.04784 Networking and Internet Architecture +1605.04785 Computer Vision and Pattern Recognition +1605.04786 Superconductivity +1605.04790 Mesoscale and Nanoscale Physics +1605.04792 +1605.04796 Statistics Theory +1605.04801 Number Theory +1605.04805 Information Theory +1605.04806 Computer Vision and Pattern Recognition +1605.04811 +1605.04813 Optics +1605.04814 Information Theory +1605.04817 Combinatorics +1605.04822 Analysis of PDEs +1605.04824 Combinatorics +1605.04829 Group Theory +1605.04830 Group Theory +1605.04832 Commutative Algebra +1605.04836 Materials Science +1605.04840 Analysis of PDEs +1605.04841 Materials Science +1605.04844 Space Physics +1605.04850 Computer Vision and Pattern Recognition +1605.04857 Cosmology and Nongalactic Astrophysics +1605.04859 Learning +1605.04861 Phenomenology +1605.04863 Rings and Algebras +1605.04865 Numerical Analysis +1605.04869 Instrumentation and Methods for Astrophysics +1605.04870 Cryptography and Security +1605.04872 Physics and Society +1605.04877 Combinatorics +1605.04880 Soft Condensed Matter +1605.04891 Mesoscale and Nanoscale Physics +cond-mat/0611319 Strongly Correlated Electrons +quant-ph/9905085 +0907.0568 Geometric Topology +0910.1493 Geometric Topology +0911.1826 Combinatorics +1003.5365 Geometric Topology +1008.0382 +1012.1288 Distributed, Parallel, and Cluster Computing +1012.6025 +1106.4826 Theory +1108.4904 Geometric Topology +1109.3514 +1110.1228 Probability +1112.2687 +1203.4383 High Energy Astrophysical Phenomena +1204.3225 +1205.4462 Algebraic Topology +1205.4855 High Energy Astrophysical Phenomena +1206.0441 +1208.2388 +1212.1087 Cosmology and Nongalactic Astrophysics +1212.6205 Probability +1212.6494 High Energy Astrophysical Phenomena +1301.2953 High Energy Astrophysical Phenomena +1302.4830 Cosmology and Nongalactic Astrophysics +1305.3405 Number Theory +1306.2930 Combinatorics +1306.4760 High Energy Astrophysical Phenomena +1307.1695 Probability +1308.4173 Strongly Correlated Electrons +1308.6143 Geometric Topology +1309.6068 Probability +1311.2505 Information Theory +1311.3008 Geometric Topology +1311.5619 +1311.7505 High Energy Astrophysical Phenomena +1312.0290 +1312.7819 +1401.5210 Analysis of PDEs +1402.2475 Combinatorics +1402.3096 Logic +1402.3130 General Mathematics +1402.5903 Theory +1403.4485 Algebraic Topology +1405.1202 +1405.5118 Exactly Solvable and Integrable Systems +1405.6102 +1405.6338 Algebraic Geometry +1407.4444 +1407.7112 Rings and Algebras +1408.1698 +1408.3925 Analysis of PDEs +1408.5829 Superconductivity +1408.6805 Theory +1409.0813 Computers and Society +1409.1826 Algebraic Geometry +1409.7921 High Energy Astrophysical Phenomena +1409.8455 Complex Variables +1410.0384 Probability +1410.1242 Statistics Theory +1410.7553 High Energy Astrophysical Phenomena +1411.0213 Functional Analysis +1411.2782 Biological Physics +1411.2835 Pricing of Securities +1412.3283 Analysis of PDEs +1412.4178 Probability +1412.5680 Theory +1412.6552 Superconductivity +1501.01217 Cosmology and Nongalactic Astrophysics +1501.01511 Combinatorics +1501.04858 Group Theory +1501.04861 Probability +1501.06287 Information Theory +1501.07227 Learning +1501.07806 Probability +1502.02397 Probability +1502.02678 Theory +1502.04335 Superconductivity +1502.06782 +1503.01436 Learning +1503.03488 Learning +1503.04329 Mesoscale and Nanoscale Physics +1503.04704 Optimization and Control +1503.05858 Combinatorics +1503.06355 Strongly Correlated Electrons +1503.07348 Metric Geometry +1503.08632 Probability +1504.00298 Computation +1504.01618 +1504.02619 Soft Condensed Matter +1504.02773 General Mathematics +1504.04583 Cosmology and Nongalactic Astrophysics +1504.04851 Materials Science +1504.06146 Probability +1504.07422 Neurons and Cognition +1504.08156 +1505.00341 Computer Science and Game Theory +1505.01940 High Energy Astrophysical Phenomena +1505.02454 Rings and Algebras +1505.02616 Theory +1505.07775 +1506.00152 Probability +1506.01696 Fluid Dynamics +1506.01842 Statistics Theory +1506.08161 Soft Condensed Matter +1506.08218 Probability +1507.00069 +1507.00547 Combinatorics +1507.00856 High Energy Astrophysical Phenomena +1507.01831 Operator Algebras +1507.02381 Disordered Systems and Neural Networks +1507.04452 Information Theory +1507.08776 Probability +1508.01774 Machine Learning +1508.02254 Fluid Dynamics +1508.04502 Quantum Gases +1508.07572 Quantum Gases +1509.01601 General Topology +1509.02335 Information Theory +1509.02361 Instrumentation and Detectors +1509.02418 Optics +1509.02625 +1509.03973 +1509.03986 Analysis of PDEs +1509.04117 Superconductivity +1509.04383 Mesoscale and Nanoscale Physics +1509.05345 Mesoscale and Nanoscale Physics +1509.05927 Classical Physics +1509.06772 Dynamical Systems +1509.07314 Systems and Control +1509.09076 Strongly Correlated Electrons +1509.09128 +1510.00767 Populations and Evolution +1510.01017 Analysis of PDEs +1510.01150 Probability +1510.01951 Experiment +1510.02642 Logic in Computer Science +1510.03876 Theory +1510.03897 Mesoscale and Nanoscale Physics +1510.07563 Cryptography and Security +1510.08216 Cosmology and Nongalactic Astrophysics +1510.08702 Strongly Correlated Electrons +1510.08937 Experiment +1511.00094 +1511.01435 +1511.01939 Theory +1511.02286 Solar and Stellar Astrophysics +1511.03050 +1511.03270 Theory +1511.03347 Statistical Mechanics +1511.06566 Optimization and Control +1511.08915 Databases +1511.09261 Mesoscale and Nanoscale Physics +1511.09324 Logic in Computer Science +1512.00176 Materials Science +1512.00274 Cryptography and Security +1512.02050 Lattice +1512.02924 Information Theory +1512.03764 Phenomenology +1512.04226 Computational Geometry +1512.06047 +1512.07581 +1512.07939 Representation Theory +1512.08112 Information Theory +1512.08168 Formal Languages and Automata Theory +1512.09300 Learning +1512.09347 Quantitative Methods +1601.00183 Cosmology and Nongalactic Astrophysics +1601.00606 Analysis of PDEs +1601.01221 Mesoscale and Nanoscale Physics +1601.03732 Astrophysics of Galaxies +1601.04705 Astrophysics of Galaxies +1601.04805 Computer Vision and Pattern Recognition +1601.04822 Optics +1601.05350 Computer Vision and Pattern Recognition +1601.05648 Networking and Internet Architecture +1601.05977 Artificial Intelligence +1601.07041 Quantitative Methods +1601.07564 Phenomenology +1602.00044 Classical Analysis and ODEs +1602.00365 Operator Algebras +1602.00381 Mesoscale and Nanoscale Physics +1602.01239 High Energy Astrophysical Phenomena +1602.01947 Emerging Technologies +1602.02581 +1602.03006 History and Overview +1602.03097 Cryptography and Security +1602.03265 Computation and Language +1602.03413 General Mathematics +1602.03420 Numerical Analysis +1602.03475 History and Philosophy of Physics +1602.03510 Dynamical Systems +1602.03522 Analysis of PDEs +1602.03529 Theory +1602.03536 Information Theory +1602.03537 Group Theory +1602.03540 Distributed, Parallel, and Cluster Computing +1602.03541 Classical Physics +1602.03547 Probability +1602.03550 Combinatorics +1602.03551 Computation and Language +1602.03552 Learning +1602.03554 Rings and Algebras +1602.03555 History and Overview +1602.03556 History and Overview +1602.03557 Databases +1602.03563 Networking and Internet Architecture +1602.03564 Algebraic Geometry +1602.03566 Mesoscale and Nanoscale Physics +1602.03567 Dynamical Systems +1602.03568 Mesoscale and Nanoscale Physics +1602.03569 Combinatorics +1602.03574 Methodology +1602.03575 Group Theory +1602.03576 Materials Science +1602.03578 Algebraic Geometry +1602.03581 Numerical Analysis +1602.03583 Number Theory +1602.03585 Computer Vision and Pattern Recognition +1602.03586 Information Theory +1602.03587 Optics +1602.03588 Commutative Algebra +1602.03589 Methodology +1602.03590 Combinatorics +1602.03591 Programming Languages +1602.03592 Logic in Computer Science +1602.03593 Logic in Computer Science +1602.03594 Programming Languages +1602.03595 Logic in Computer Science +1602.03596 Logic in Computer Science +1602.03597 Logic in Computer Science +1602.03598 Programming Languages +1602.03599 Programming Languages +1602.03600 Machine Learning +1602.03601 Analysis of PDEs +1602.03605 Fluid Dynamics +1602.03606 Computation and Language +1602.03609 Computation and Language +1602.03612 Analysis of PDEs +1602.03615 Complex Variables +1602.03620 Materials Science +1602.03623 Multiagent Systems +1602.03625 Statistical Mechanics +1602.03626 Analysis of PDEs +1602.03632 Materials Science +1602.03636 Social and Information Networks +1602.03639 Rings and Algebras +1602.03643 Mathematical Software +1602.03646 Biological Physics +1602.03649 Applications +1602.03650 Physics and Society +1602.03651 Phenomenology +1602.03656 Strongly Correlated Electrons +1602.03657 Probability +1602.03658 Computation +1602.03661 Physics and Society +1602.03662 Number Theory +1602.03664 Social and Information Networks +1602.03667 Solar and Stellar Astrophysics +1602.03669 Space Physics +1602.03673 Theory +1602.03674 Social and Information Networks +1602.03675 Classical Analysis and ODEs +1602.03678 Materials Science +1602.03681 Social and Information Networks +1602.03682 +1602.03683 Machine Learning +1602.03686 Learning +1602.03688 Astrophysics of Galaxies +1602.03689 Software Engineering +1602.03690 Logic +1602.03694 High Energy Astrophysical Phenomena +1602.03698 Combinatorics +1602.03699 Networking and Internet Architecture +1602.03704 Analysis of PDEs +1602.03706 Networking and Internet Architecture +1602.03707 Analysis of PDEs +1602.03716 Networking and Internet Architecture +1602.03719 Social and Information Networks +1602.03722 Information Theory +1602.03723 Chemical Physics +1602.03725 Computer Vision and Pattern Recognition +1602.03727 Statistics Theory +1602.03728 Combinatorics +1602.03732 History and Overview +1602.03733 Geometric Topology +1602.03735 General Mathematics +1602.03736 History and Overview +1602.03739 Social and Information Networks +1602.03740 +1602.03741 Combinatorics +1602.03742 Human-Computer Interaction +1602.03747 General Mathematics +1602.03749 Medical Physics +1602.03751 Adaptation and Self-Organizing Systems +1602.03753 Fluid Dynamics +1602.03754 Physics Education +1602.03757 Human-Computer Interaction +1602.03758 Data Analysis, Statistics and Probability +1602.03759 Optics +1602.03760 Methodology +1602.03763 Soft Condensed Matter +1602.03764 Neurons and Cognition +1602.03770 Distributed, Parallel, and Cluster Computing +1602.03771 Optimization and Control +1602.03774 Physics and Society +1602.03775 Dynamical Systems +1602.03777 Logic +1602.03783 +1602.03784 Logic +1602.03794 Statistics Theory +1602.03796 Systems and Control +1602.03805 Computer Vision and Pattern Recognition +1602.03807 Machine Learning +1602.03808 Computer Vision and Pattern Recognition +1602.03809 Chemical Physics +1602.03811 Quantum Gases +1602.03814 Robotics +1602.03816 Superconductivity +1602.03820 Materials Science +1602.03821 Solar and Stellar Astrophysics +1602.03825 Geometric Topology +1602.03836 Probability +1602.03848 Complex Variables +1602.03850 Probability +1602.03853 Plasma Physics +1602.03854 Computational Engineering, Finance, and Science +1602.03855 Applications +1602.03858 Materials Science +1602.03860 Computer Vision and Pattern Recognition +1602.03862 Molecular Networks +1602.03865 Computational Geometry +1602.03867 Category Theory +1602.03869 +1602.03871 Group Theory +1602.03882 Optics +astro-ph/0310723 +astro-ph/9806216 +funct-an/9211005 Functional Analysis +gr-qc/0603133 +hep-ex/0410070 Experiment +hep-ph/0401055 Phenomenology +q-bio/0507008 Genomics +0905.0641 +1004.2108 Representation Theory +1006.2183 Distributed, Parallel, and Cluster Computing +1007.2659 Solar and Stellar Astrophysics +1102.3858 Algebraic Geometry +1103.2287 Differential Geometry +1107.5996 Representation Theory +1203.3244 Mesoscale and Nanoscale Physics +1205.5727 Phenomenology +1209.4224 Dynamical Systems +1211.1868 Combinatorics +1211.3576 Probability +1212.1657 Instrumentation and Detectors +1304.7440 Quantum Algebra +1305.0116 Cosmology and Nongalactic Astrophysics +1307.1661 Probability +1308.4899 Geometric Topology +1309.5276 +1309.6697 Methodology +1310.3534 Algebraic Geometry +1312.2831 Differential Geometry +1401.2289 General Topology +1402.1899 Systems and Control +1402.3453 Differential Geometry +1403.0684 Exactly Solvable and Integrable Systems +1403.3855 Probability +1404.1572 Representation Theory +1404.6546 Optimization and Control +1405.2449 Combinatorics +1405.3169 Differential Geometry +1406.2851 +1407.4951 +1408.0507 Mesoscale and Nanoscale Physics +1408.3675 Mesoscale and Nanoscale Physics +1408.3681 Mesoscale and Nanoscale Physics +1409.1370 Category Theory +1410.6432 Quantum Algebra +1411.1124 Data Structures and Algorithms +1412.1581 Combinatorics +1412.2413 Quantum Algebra +1412.7461 Computation +1501.00417 Astrophysics of Galaxies +1501.01044 +1501.04857 General Physics +1501.06763 +1501.07528 Combinatorics +1502.00329 Operator Algebras +1502.00546 Probability +1502.07403 Rings and Algebras +1503.00285 Representation Theory +1503.00576 Distributed, Parallel, and Cluster Computing +1503.01733 Probability +1503.04706 Discrete Mathematics +1503.04708 Algebraic Geometry +1503.06319 +1503.07027 Learning +1503.07627 Combinatorics +1504.00144 Mesoscale and Nanoscale Physics +1504.03730 Information Theory +1504.03742 Dynamical Systems +1504.06125 Exactly Solvable and Integrable Systems +1504.07498 Number Theory +1504.07561 Mesoscale and Nanoscale Physics +1504.08294 Group Theory +1505.03670 +1506.01238 Quantum Gases +1506.03267 Spectral Theory +1506.03475 Computer Vision and Pattern Recognition +1506.05438 Algebraic Geometry +1506.07917 Experiment +1506.08269 Information Theory +1506.08455 Spectral Theory +1506.09096 Data Analysis, Statistics and Probability +1507.00442 Theory +1507.00506 Algebraic Geometry +1507.02135 +1507.02312 Spectral Theory +1507.02485 Methodology +1507.03059 Combinatorics +1507.03496 Methodology +1507.04141 +1507.04398 Methodology +1507.05011 Optimization and Control +1507.08505 Neurons and Cognition +1508.04156 Analysis of PDEs +1508.04778 Quantum Gases +1508.06519 +1508.07468 Computer Vision and Pattern Recognition +1508.07764 Probability +1509.02789 Fluid Dynamics +1509.03801 Optimization and Control +1509.04722 Algebraic Geometry +1509.05572 Data Structures and Algorithms +1509.06535 Neural and Evolutionary Computing +1509.08122 +1509.08221 Algebraic Geometry +1509.09235 Neural and Evolutionary Computing +1510.03159 Combinatorics +1510.04808 Differential Geometry +1510.04976 +1510.05237 Learning +1510.05666 Earth and Planetary Astrophysics +1510.06952 General Mathematics +1510.08029 Statistics Theory +1510.08955 Exactly Solvable and Integrable Systems +1511.00673 Neurons and Cognition +1511.01579 Dynamical Systems +1511.01728 Mesoscale and Nanoscale Physics +1511.02967 Theory +1511.03025 Classical Analysis and ODEs +1511.03029 +1511.03830 Probability +1511.04457 Cosmology and Nongalactic Astrophysics +1511.06183 General Physics +1511.06739 Computer Vision and Pattern Recognition +1511.07710 Computer Vision and Pattern Recognition +1511.08838 Optimization and Control +1511.09051 Algebraic Geometry +1512.00238 +1512.01302 Differential Geometry +1512.01671 Analysis of PDEs +1512.02732 Differential Geometry +1512.02800 Cosmology and Nongalactic Astrophysics +1512.02956 Statistics Theory +1512.03455 K-Theory and Homology +1512.04405 Theory +1512.05807 Cosmology and Nongalactic Astrophysics +1512.06285 Computer Vision and Pattern Recognition +1512.06448 Software Engineering +1512.07719 Combinatorics +1512.08149 Combinatorics +1512.08807 +1601.00029 Spectral Theory +1601.01145 Computer Vision and Pattern Recognition +1601.01229 Cryptography and Security +1601.01678 Superconductivity +1601.01924 Soft Condensed Matter +1601.02339 Sound +1601.02454 Experiment +1601.03233 Phenomenology +1601.04165 Phenomenology +1601.04510 Number Theory +1601.04618 Materials Science +1601.04811 Computation and Language +1601.05394 General Topology +1601.06303 Logic +1601.06381 Mesoscale and Nanoscale Physics +1601.06526 Experiment +1601.06529 +1601.06574 Algebraic Geometry +1601.07318 Analysis of PDEs +1601.07969 Computation and Language +1602.00584 Strongly Correlated Electrons +1602.00979 Quantum Gases +1602.01181 Phenomenology +1602.01232 Probability +1602.02034 Strongly Correlated Electrons +1602.02582 Theory +1602.02734 Computational Physics +1602.04188 +1602.04545 Number Theory +1602.05479 +1602.06502 Quantum Gases +1602.06582 Sound +1602.08216 +1603.00547 Combinatorics +1603.00870 High Energy Astrophysical Phenomena +1603.01227 High Energy Astrophysical Phenomena +1603.01465 +1603.01647 Mesoscale and Nanoscale Physics +1603.01743 Differential Geometry +1603.01848 +1603.02099 Numerical Analysis +1603.02239 Optimization and Control +1603.02882 Probability +1603.03017 Mesoscale and Nanoscale Physics +1603.04469 +1603.05849 Probability +1603.05931 Soft Condensed Matter +1603.05963 Networking and Internet Architecture +1603.06098 Computer Vision and Pattern Recognition +1603.06799 Theory +1604.00286 Strongly Correlated Electrons +1604.00452 Strongly Correlated Electrons +1604.01709 Theory +1604.01995 Quantum Gases +1604.02135 Computer Vision and Pattern Recognition +1604.03039 Phenomenology +1604.03743 +1604.04055 Chaotic Dynamics +1604.04168 Mesoscale and Nanoscale Physics +1604.04661 Distributed, Parallel, and Cluster Computing +1604.05398 Algebraic Geometry +1604.05630 Theory +1604.06015 Functional Analysis +1604.07531 Optics +1604.08185 Materials Science +1604.08186 Materials Science +1604.08214 High Energy Astrophysical Phenomena +1604.08778 Chemical Physics +1605.00054 Soft Condensed Matter +1605.00164 Computer Vision and Pattern Recognition +1605.00942 Computation and Language +1605.01339 Physics Education +1605.01380 Phenomenology +1605.01706 Functional Analysis +1605.02237 Functional Analysis +1605.02384 +1605.02749 High Energy Astrophysical Phenomena +1605.03034 Logic +1605.03214 Numerical Analysis +1605.03424 +1605.04464 Software Engineering +1605.04642 Superconductivity +1605.04704 Optics +1605.05526 Chemical Physics +1605.06410 Strongly Correlated Electrons +1605.07447 Commutative Algebra +1605.08666 Theory +1605.08742 Optimization and Control +1605.08777 Instrumentation and Detectors +1605.08778 Instrumentation and Detectors +1606.00095 Metric Geometry +1606.00375 Classical Analysis and ODEs +1606.01331 Solar and Stellar Astrophysics +1606.02772 Superconductivity +1606.02817 Theory +1606.02979 Computation and Language +1606.03172 Number Theory +1606.04841 Mesoscale and Nanoscale Physics +1606.05274 Theory +1606.05639 Combinatorics +1606.05921 Theory +1606.06021 Information Theory +1606.06216 Neural and Evolutionary Computing +1606.06960 Instrumentation and Methods for Astrophysics +1606.07600 +1606.08650 Computation +1606.09257 Theory +1606.09353 Algebraic Geometry +1607.00277 Instrumentation and Methods for Astrophysics +1607.00945 Computational Complexity +1607.01808 +1607.02073 Fluid Dynamics +1607.02177 Learning +1607.02441 Physics and Society +1607.02720 Computer Vision and Pattern Recognition +1607.03024 +1607.03716 Complex Variables +1607.03876 +1607.03942 Rings and Algebras +1607.04196 +1607.04348 Geometric Topology +1607.04822 Programming Languages +1607.05723 +1607.05743 Algebraic Geometry +1607.06162 Materials Science +1607.06293 Strongly Correlated Electrons +1607.06526 +1607.06598 Plasma Physics +1607.07009 Discrete Mathematics +1607.07179 Phenomenology +1607.07268 Differential Geometry +1607.07819 Machine Learning +1607.08086 Hardware Architecture +1607.08218 Information Theory +1607.08240 Phenomenology +1607.08618 Strongly Correlated Electrons +1607.08876 Algebraic Geometry +1608.00098 Information Theory +1608.00120 Performance +1608.00399 Theory +1608.00494 Instrumentation and Detectors +1608.00862 General Mathematics +1608.01137 Computer Vision and Pattern Recognition +1608.01282 Machine Learning +1608.01285 Analysis of PDEs +1608.01299 Cosmology and Nongalactic Astrophysics +1608.01547 +1608.01577 Combinatorics +1608.01594 Programming Languages +1608.01609 History and Overview +1608.01640 +1608.01671 General Mathematics +1608.01689 Distributed, Parallel, and Cluster Computing +1608.01737 Information Theory +1608.01738 Information Theory +1608.01938 Probability +1608.01951 Lattice +1608.01990 Fluid Dynamics +1608.01992 Number Theory +1608.01993 Computer Vision and Pattern Recognition +1608.02003 +1608.02005 +1608.02008 Software Engineering +1608.02009 Functional Analysis +1608.02010 Learning +1608.02013 Astrophysics of Galaxies +1608.02015 Physics and Society +1608.02016 Probability +1608.02017 Optimization and Control +1608.02019 Mesoscale and Nanoscale Physics +1608.02020 Analysis of PDEs +1608.02021 Social and Information Networks +1608.02024 Physics and Society +1608.02026 Computer Vision and Pattern Recognition +1608.02027 Neurons and Cognition +1608.02029 Logic +1608.02030 Combinatorics +1608.02032 Information Theory +1608.02035 Analysis of PDEs +1608.02037 Geometric Topology +1608.02039 Logic +1608.02041 Analysis of PDEs +1608.02043 Materials Science +1608.02045 +1608.02048 Analysis of PDEs +1608.02049 Algebraic Geometry +1608.02051 Computer Vision and Pattern Recognition +1608.02052 Computer Vision and Pattern Recognition +1608.02053 Physics and Society +1608.02056 Theory +1608.02059 Computer Vision and Pattern Recognition +1608.02060 Machine Learning +1608.02062 Cosmology and Nongalactic Astrophysics +1608.02064 Strongly Correlated Electrons +1608.02065 Materials Science +1608.02066 Numerical Analysis +1608.02071 Learning +1608.02072 Plasma Physics +1608.02074 Analysis of PDEs +1608.02078 +1608.02084 Quantum Algebra +1608.02085 Group Theory +1608.02089 Numerical Analysis +1608.02090 Optimization and Control +1608.02091 Probability +1608.02092 Numerical Analysis +1608.02093 Mesoscale and Nanoscale Physics +1608.02094 Computation and Language +1608.02095 +1608.02101 Phenomenology +1608.02102 +1608.02104 Metric Geometry +1608.02105 Materials Science +1608.02107 Combinatorics +1608.02109 Superconductivity +1608.02117 Computation and Language +1608.02119 Analysis of PDEs +1608.02126 Learning +1608.02128 Cryptography and Security +1608.02135 Analysis of PDEs +1608.02137 Differential Geometry +1608.02139 Classical Analysis and ODEs +1608.02140 +1608.02143 Statistics Theory +1608.02144 Mesoscale and Nanoscale Physics +1608.02146 Learning +1608.02147 Dynamical Systems +1608.02150 Materials Science +1608.02152 Analysis of PDEs +1608.02154 Combinatorics +1608.02156 Differential Geometry +1608.02157 Algebraic Topology +1608.02161 Statistical Mechanics +1608.02164 Computer Vision and Pattern Recognition +1608.02165 Computer Vision and Pattern Recognition +1608.02167 Plasma Physics +1608.02168 +1608.02169 Information Theory +1608.02171 Robotics +1608.02175 Probability +1608.02177 Number Theory +1608.02179 Statistical Mechanics +1608.02180 Fluid Dynamics +1608.02182 Functional Analysis +1608.02184 +1608.02187 Instrumentation and Methods for Astrophysics +1608.02192 Computer Vision and Pattern Recognition +1608.02194 Analysis of PDEs +1608.02195 Social and Information Networks +1608.02196 Cryptography and Security +1608.02197 Combinatorics +1608.02199 Computation +1608.02201 Computer Vision and Pattern Recognition +1608.02204 Dynamical Systems +1608.02205 +1608.02206 Soft Condensed Matter +1608.02215 Plasma Physics +1608.02216 Numerical Analysis +1608.02221 Applications +1608.02222 Logic +1608.02224 Probability +1608.02227 Optimization and Control +1608.02229 Neural and Evolutionary Computing +1608.02230 Superconductivity +1608.02234 Cosmology and Nongalactic Astrophysics +1608.02236 Computer Vision and Pattern Recognition +1608.02240 Optimization and Control +1608.02245 +1608.02246 Probability +1608.02247 Cryptography and Security +1608.02250 Mesoscale and Nanoscale Physics +1608.02253 Chemical Physics +1608.02254 Logic +1608.02255 Computer Vision and Pattern Recognition +1608.02256 Optimization and Control +1608.02259 Quantum Gases +1608.02261 Phenomenology +1608.02263 +1608.02264 Earth and Planetary Astrophysics +1608.02266 Systems and Control +1608.02267 Numerical Analysis +1608.02271 Mesoscale and Nanoscale Physics +1608.02272 Sound +1608.02275 Algebraic Geometry +1608.02276 Robotics +1608.02280 Machine Learning +1608.02281 Probability +1608.02282 Data Structures and Algorithms +1608.02287 Artificial Intelligence +1608.02289 Computer Vision and Pattern Recognition +1608.02290 Differential Geometry +1608.02291 Multimedia +1608.02292 Learning +1608.02295 Dynamical Systems +1608.02296 Number Theory +1608.02299 Probability +1608.02300 Optimization and Control +1608.02301 Learning +1608.02303 Probability +1608.02305 Optimization and Control +1608.02307 Computer Vision and Pattern Recognition +1608.02308 Solar and Stellar Astrophysics +1608.02310 Materials Science +1608.02312 Functional Analysis +1608.02314 Differential Geometry +1608.02316 Systems and Control +1608.02318 Computer Vision and Pattern Recognition +1608.02319 Exactly Solvable and Integrable Systems +1608.02320 Commutative Algebra +1608.02324 Exactly Solvable and Integrable Systems +1608.02325 Superconductivity +1608.02326 Physics and Society +1608.02327 Logic in Computer Science +1608.02330 Materials Science +1608.02332 Combinatorics +1608.02334 Operator Algebras +1608.02336 +1608.02337 Information Theory +1608.02338 Statistical Mechanics +1608.02342 Logic +1608.02344 Experiment +1608.02348 Classical Analysis and ODEs +1608.02349 Materials Science +1608.02355 Information Theory +1608.02359 +1608.02360 Strongly Correlated Electrons +1608.02363 +1608.02364 Social and Information Networks +1608.02365 Mathematical Finance +1608.02366 +1608.02367 Computer Vision and Pattern Recognition +1608.02368 Optimization and Control +1608.02369 Materials Science +1608.02370 Statistical Mechanics +1608.02371 Optimization and Control +1608.02373 Computer Vision and Pattern Recognition +1608.02375 Genomics +1608.02376 Strongly Correlated Electrons +1608.02377 Optimization and Control +1608.02379 Materials Science +1608.02381 Phenomenology +1608.02382 Phenomenology +1608.02383 Materials Science +1608.02385 Computer Vision and Pattern Recognition +1608.02388 Computer Vision and Pattern Recognition +1608.02393 Metric Geometry +1608.02394 Algebraic Geometry +1608.02399 Chemical Physics +1608.02400 Differential Geometry +1608.02402 Computer Science and Game Theory +1608.02403 Plasma Physics +1608.02406 Artificial Intelligence +1608.02407 Instrumentation and Methods for Astrophysics +1608.02408 Instrumentation and Methods for Astrophysics +1608.02411 Mesoscale and Nanoscale Physics +1608.02415 Probability +1608.02417 Number Theory +1608.02418 Representation Theory +1608.02420 Combinatorics +1608.02421 +1608.02426 Accelerator Physics +1608.02430 +1608.02431 Group Theory +1608.02432 Distributed, Parallel, and Cluster Computing +1608.02433 Accelerator Physics +1608.02439 Combinatorics +1608.02441 Artificial Intelligence +1608.02442 Distributed, Parallel, and Cluster Computing +1608.02443 Geometric Topology +1608.02444 Differential Geometry +1608.02445 Operator Algebras +1608.02446 Mathematical Finance +1608.02449 Accelerator Physics +1608.02450 Artificial Intelligence +1608.02451 Data Structures and Algorithms +1608.02456 Accelerator Physics +1608.02458 +1608.02460 Mesoscale and Nanoscale Physics +1608.02461 Numerical Analysis +1608.02462 Accelerator Physics +1608.02463 Functional Analysis +1608.02464 Fluid Dynamics +1608.02466 Classical Physics +1608.02467 Materials Science +1608.02469 +1608.02470 Representation Theory +1608.02472 Number Theory +1608.02473 +1608.02476 Accelerator Physics +1608.02482 Materials Science +1608.02483 Geophysics +1608.02484 Learning +1608.02485 Machine Learning +1608.02487 Cosmology and Nongalactic Astrophysics +1608.02488 Geophysics +1608.02490 Instrumentation and Detectors +1608.02494 Atmospheric and Oceanic Physics +1608.02495 Symplectic Geometry +1608.02497 Materials Science +1608.02499 Computers and Society +1608.02502 Instrumentation and Methods for Astrophysics +1608.02503 Rings and Algebras +1608.02504 +1608.02505 Systems and Control +1608.02508 Systems and Control +1608.02509 Algebraic Topology +1608.02510 Combinatorics +1608.02513 Plasma Physics +1608.02515 Data Structures and Algorithms +1608.02519 Social and Information Networks +1608.02522 Algebraic Geometry +1608.02524 Algebraic Geometry +1608.02526 Fluid Dynamics +1608.02527 Optimization and Control +1608.02531 Combinatorics +1608.02535 Chemical Physics +1608.02536 Earth and Planetary Astrophysics +1608.02540 Phenomenology +1608.02547 Materials Science +1608.02549 Machine Learning +1608.02550 Optimization and Control +1608.02551 Biological Physics +1608.02553 Chemical Physics +1608.02554 Machine Learning +1608.02559 Chemical Physics +1608.02562 Mesoscale and Nanoscale Physics +1608.02563 +1608.02565 Programming Languages +1608.02567 Numerical Analysis +1608.02569 Theory +1608.02572 Group Theory +1608.02574 Molecular Networks +hep-ph/0412178 Phenomenology +nucl-th/9804051 +quant-ph/0311072 +0804.0365 +0904.2437 Geometric Topology +1001.2490 Representation Theory +1003.0793 General Finance +1101.5845 Phenomenology +1105.3167 Algebraic Topology +1105.5279 Mesoscale and Nanoscale Physics +1106.0454 Representation Theory +1109.4374 Representation Theory +1110.0826 Mesoscale and Nanoscale Physics +1110.4178 Geometric Topology +1111.0729 Logic +1204.1683 Optimization and Control +1204.6693 Mesoscale and Nanoscale Physics +1210.4064 Representation Theory +1210.5389 Representation Theory +1211.4208 Combinatorics +1302.3812 Geometric Topology +1303.1057 Representation Theory +1304.3502 Operator Algebras +1306.4203 Dynamical Systems +1306.5701 +1307.0767 Number Theory +1308.5866 Geometric Topology +1309.3636 Logic +1310.3244 +1310.5729 Number Theory +1311.6111 Representation Theory +1312.4424 Numerical Analysis +1402.0604 Analysis of PDEs +1402.4759 Number Theory +1402.4775 Algebraic Topology +1402.5835 Mathematical Software +1403.6401 Analysis of PDEs +1404.3383 Representation Theory +1404.4593 Theory +1405.0056 Analysis of PDEs +1405.2540 Representation Theory +1405.2713 Representation Theory +1405.6797 Differential Geometry +1406.2030 Geometric Topology +1406.7639 Optimization and Control +1408.0640 Quantitative Methods +1408.1866 Group Theory +1409.4882 Metric Geometry +1409.7588 +1410.3022 Computational Geometry +1410.6071 Optimization and Control +1411.2482 Statistics Theory +1411.4065 Mesoscale and Nanoscale Physics +1412.4564 Computer Vision and Pattern Recognition +1412.6455 Computer Science and Game Theory +1412.6871 Analysis of PDEs +1412.7437 +1501.05226 Classical Analysis and ODEs +1502.04455 Neurons and Cognition +1502.05573 Operator Algebras +1502.05618 Combinatorics +1502.05966 Operator Algebras +1503.02991 Classical Analysis and ODEs +1503.04622 +1503.09152 Representation Theory +1505.04153 Materials Science +1505.04851 Commutative Algebra +1505.05124 Information Theory +1505.05617 Instrumentation and Methods for Astrophysics +1505.06793 Quantum Gases +1505.07005 Phenomenology +1506.02187 Theory +1506.02533 Analysis of PDEs +1506.03362 Functional Analysis +1506.03535 Differential Geometry +1506.05555 Computation +1506.06967 Algebraic Topology +1507.02999 Information Theory +1507.05249 Neurons and Cognition +1507.05699 Computer Vision and Pattern Recognition +1507.06616 Data Structures and Algorithms +1508.03949 Probability +1508.04051 Analysis of PDEs +1508.04143 Astrophysics of Galaxies +1508.05774 Information Theory +1508.07899 +1509.00239 Cryptography and Security +1509.02878 +1509.03593 Mesoscale and Nanoscale Physics +1509.04789 Classical Analysis and ODEs +1509.05486 Information Theory +1509.07699 Analysis of PDEs +1510.01509 Combinatorics +1510.02315 Analysis of PDEs +1510.06366 Algebraic Topology +1510.07187 +1510.07207 Analysis of PDEs +1510.07277 Algebraic Geometry +1510.08152 Strongly Correlated Electrons +1510.08290 Analysis of PDEs +1510.08432 +1510.09072 Methodology +1511.05026 Quantum Gases +1511.05163 Phenomenology +1511.08391 Differential Geometry +1512.02238 Phenomenology +1512.04165 Analysis of PDEs +1512.05158 Plasma Physics +1512.05632 Probability +1512.07061 Atomic Physics +1601.00462 Instrumentation and Methods for Astrophysics +1601.00584 Logic in Computer Science +1601.02895 +1601.04110 Cell Behavior +1601.04721 +1601.06598 Phenomenology +1601.07755 Mesoscale and Nanoscale Physics +1601.08192 Theory +1601.08199 Combinatorics +1602.00262 Mesoscale and Nanoscale Physics +1602.02481 Computer Vision and Pattern Recognition +1602.02641 Mesoscale and Nanoscale Physics +1602.03140 Number Theory +1602.03573 Robotics +1602.04251 Strongly Correlated Electrons +1602.04850 Statistics Theory +1602.05928 Logic in Computer Science +1602.08936 Superconductivity +1603.00155 Mesoscale and Nanoscale Physics +1603.00658 Logic in Computer Science +1603.00931 Materials Science +1603.02585 Rings and Algebras +1603.02985 +1603.03150 +1603.04389 Information Theory +1603.04491 Phenomenology +1603.05980 Superconductivity +1603.06224 Earth and Planetary Astrophysics +1603.06883 Statistical Mechanics +1603.07966 Chemical Physics +1603.08745 Phenomenology +1603.09272 Computation +1604.00674 Theory +1604.01187 Logic in Computer Science +1604.01888 Theory +1604.02418 Probability +1604.03257 Optimization and Control +1604.04019 Strongly Correlated Electrons +1604.04689 Computational Geometry +1604.05574 Statistical Mechanics +1604.05988 Algebraic Topology +1604.07576 Optimization and Control +1604.08458 Accelerator Physics +1605.00019 Information Theory +1605.00020 Information Theory +1605.00243 Optics +1605.00350 Biological Physics +1605.00764 +1605.00912 Information Theory +1605.00961 Computer Vision and Pattern Recognition +1605.00965 Differential Geometry +1605.00971 Distributed, Parallel, and Cluster Computing +1605.00972 Computer Vision and Pattern Recognition +1605.00982 Distributed, Parallel, and Cluster Computing +1605.00983 Distributed, Parallel, and Cluster Computing +1605.01045 Functional Analysis +1605.01208 Numerical Analysis +1605.01366 Biological Physics +1605.01410 Algebraic Geometry +1605.01421 Populations and Evolution +1605.01424 Information Theory +1605.01425 Complex Variables +1605.01426 +1605.01429 Databases +1605.01430 Differential Geometry +1605.01432 Combinatorics +1605.01433 Accelerator Physics +1605.01434 Information Theory +1605.01437 Earth and Planetary Astrophysics +1605.01438 Methodology +1605.01440 Statistics Theory +1605.01441 Neurons and Cognition +1605.01450 Optimization and Control +1605.01451 Networking and Internet Architecture +1605.01452 Atmospheric and Oceanic Physics +1605.01455 Combinatorics +1605.01460 Fluid Dynamics +1605.01462 Solar and Stellar Astrophysics +1605.01464 Analysis of PDEs +1605.01465 Analysis of PDEs +1605.01469 Combinatorics +1605.01470 Classical Analysis and ODEs +1605.01478 Computation and Language +1605.01480 Programming Languages +1605.01481 Number Theory +1605.01482 Probability +1605.01483 Discrete Mathematics +1605.01484 Analysis of PDEs +1605.01485 Methodology +1605.01486 Optimization and Control +1605.01490 Analysis of PDEs +1605.01491 Social and Information Networks +1605.01494 Analysis of PDEs +1605.01496 Computational Physics +1605.01498 Instrumentation and Methods for Astrophysics +1605.01501 Information Theory +1605.01502 Experiment +1605.01505 Discrete Mathematics +1605.01511 Logic in Computer Science +1605.01513 Classical Analysis and ODEs +1605.01514 Neural and Evolutionary Computing +1605.01515 Phenomenology +1605.01517 +1605.01519 Computational Complexity +1605.01521 Optimization and Control +1605.01527 Fluid Dynamics +1605.01530 Formal Languages and Automata Theory +1605.01533 Cosmology and Nongalactic Astrophysics +1605.01534 Artificial Intelligence +1605.01535 Superconductivity +1605.01536 Cosmology and Nongalactic Astrophysics +1605.01540 Materials Science +1605.01542 Optics +1605.01543 Functional Analysis +1605.01544 +1605.01546 Statistical Mechanics +1605.01554 Analysis of PDEs +1605.01555 Category Theory +1605.01557 Information Theory +1605.01558 Probability +1605.01560 Representation Theory +1605.01565 Instrumentation and Detectors +1605.01566 Metric Geometry +1605.01568 Soft Condensed Matter +1605.01569 Learning +1605.01570 Materials Science +1605.01571 Chaotic Dynamics +1605.01573 Machine Learning +1605.01574 Materials Science +1605.01575 Number Theory +1605.01576 Computer Vision and Pattern Recognition +1605.01577 Solar and Stellar Astrophysics +1605.01578 Combinatorics +1605.01580 Computers and Society +1605.01583 Computational Engineering, Finance, and Science +1605.01585 Group Theory +1605.01586 Logic +1605.01593 Materials Science +1605.01596 Artificial Intelligence +1605.01597 +1605.01599 Quantum Algebra +1605.01602 Computers and Society +1605.01606 Optimization and Control +1605.01608 Optimization and Control +1605.01613 Materials Science +1605.01616 Accelerator Physics +1605.01617 Analysis of PDEs +1605.01619 Instrumentation and Methods for Astrophysics +1605.01622 Logic in Computer Science +1605.01623 Learning +1605.01626 Experiment +1605.01629 Phenomenology +1605.01630 Phenomenology +1605.01635 Computation and Language +1605.01641 Information Theory +1605.01643 Machine Learning +1605.01647 Phenomenology +1605.01652 Artificial Intelligence +1605.01655 Computation and Language +1605.01656 Machine Learning +1605.01658 Combinatorics +1605.01659 +1605.01661 Neurons and Cognition +1605.01663 Software Engineering +1605.01665 High Energy Astrophysical Phenomena +1605.01666 Optimization and Control +1605.01671 Fluid Dynamics +1605.01675 Functional Analysis +1605.01679 Computer Vision and Pattern Recognition +1605.01681 Artificial Intelligence +1605.01685 Combinatorics +1605.01686 Logic +1605.01687 Discrete Mathematics +1605.01689 Strongly Correlated Electrons +1605.01692 Instrumentation and Detectors +1605.01696 Information Theory +1605.01701 Distributed, Parallel, and Cluster Computing +1605.01703 Learning +1605.01708 Combinatorics +1605.01714 +1605.01720 Strongly Correlated Electrons +cond-mat/0611715 Disordered Systems and Neural Networks +0912.1512 Representation Theory +1010.5737 Optics +1110.1614 Logic in Computer Science +1111.4662 Probability +1206.1555 +1206.6789 Probability +1208.5872 Probability +1210.3039 Optimization and Control +1211.0174 Computation +1302.1494 Algebraic Topology +1304.3623 Physics and Society +1306.3403 Group Theory +1307.3718 Numerical Analysis +1308.6137 Geometric Topology +1309.3210 Data Structures and Algorithms +1310.3487 Networking and Internet Architecture +1310.5507 Classical Analysis and ODEs +1312.0933 Complex Variables +1401.0869 Optimization and Control +1401.2630 Materials Science +1402.0036 Analysis of PDEs +1402.0465 Quantum Gases +1402.0490 Symplectic Geometry +1403.1332 Rings and Algebras +1404.5443 Machine Learning +1405.3980 Information Theory +1405.6276 Group Theory +1405.6303 +1406.0712 Superconductivity +1406.3555 Theory +1407.0752 Geometric Topology +1407.7304 Representation Theory +1407.8360 Phenomenology +1407.8498 Combinatorics +1408.0018 Differential Geometry +1408.1858 K-Theory and Homology +1408.3142 History and Philosophy of Physics +1408.3427 Dynamical Systems +1409.1670 Commutative Algebra +1409.6106 Representation Theory +1410.4753 Dynamical Systems +1410.8046 +1410.8817 +1411.1345 Fluid Dynamics +1411.2158 Machine Learning +1411.2940 Numerical Analysis +1411.6207 Differential Geometry +1412.3708 Computer Vision and Pattern Recognition +1412.4139 Numerical Analysis +1412.8690 Learning +1501.00190 Probability +1501.03579 Probability +1501.05077 +1501.06511 General Mathematics +1501.07221 Fluid Dynamics +1502.01241 Neurons and Cognition +1502.02279 Algebraic Topology +1502.03391 Machine Learning +1502.05666 Optimization and Control +1502.07335 Probability +1502.07588 Differential Geometry +1503.02792 Combinatorics +1503.02819 Phenomenology +1503.03744 Physics and Society +1503.06115 Cryptography and Security +1504.00771 Geometric Topology +1504.03232 Economics +1504.03408 +1504.06013 Rings and Algebras +1505.02203 Differential Geometry +1505.02415 Complex Variables +1505.05477 Dynamical Systems +1505.07197 Analysis of PDEs +1505.07906 Operator Algebras +1506.00868 Combinatorics +1506.02341 Analysis of PDEs +1506.03163 Learning +1506.06184 Representation Theory +1506.07734 Dynamical Systems +1506.07749 Mathematical Software +1506.08152 Differential Geometry +1507.01739 Phenomenology +1507.01888 Mathematical Software +1507.02333 Solar and Stellar Astrophysics +1507.03452 Group Theory +1507.03528 Cryptography and Security +1507.04708 Theory +1507.07457 Algebraic Geometry +1508.00129 Applications +1508.02952 Numerical Analysis +1508.03444 Differential Geometry +1508.03812 Artificial Intelligence +1508.04265 Distributed, Parallel, and Cluster Computing +1508.07141 Differential Geometry +1508.07716 Algebraic Geometry +1509.00045 Combinatorics +1509.01490 +1509.01836 Functional Analysis +1509.01882 +1509.02018 Functional Analysis +1509.03453 Computer Vision and Pattern Recognition +1509.03991 Numerical Analysis +1509.05910 Astrophysics of Galaxies +1509.07058 Combinatorics +1510.00653 Phenomenology +1510.01046 Probability +1510.01419 Networking and Internet Architecture +1510.01611 +1510.01984 Algebraic Topology +1510.04085 Group Theory +1510.04942 Lattice +1510.05306 +1510.05369 Algebraic Geometry +1510.05860 Information Theory +1510.05979 Dynamical Systems +1510.07076 Differential Geometry +1510.09083 Computer Vision and Pattern Recognition +1511.00572 +1511.02403 Algebraic Geometry +1511.03955 Symplectic Geometry +1511.04160 Physics and Society +1511.04529 Probability +1511.05933 Learning +1511.06382 Learning +1511.06962 +1511.07974 Optimization and Control +1511.08097 Biomolecules +1511.08610 Information Theory +1511.09169 Rings and Algebras +1511.09464 Combinatorics +1512.01155 Instrumentation and Detectors +1512.01303 High Energy Astrophysical Phenomena +1512.02008 Number Theory +1512.02363 Robotics +1512.02503 Representation Theory +1512.03397 Methodology +1512.03543 Computer Science and Game Theory +1512.04168 Combinatorics +1512.04862 Algebraic Geometry +1512.07059 Statistics Theory +1512.07391 Probability +1512.07446 Learning +1512.07822 Soft Condensed Matter +1512.08026 Operator Algebras +1512.08239 Theory +1512.08394 Mesoscale and Nanoscale Physics +1512.08899 Artificial Intelligence +1601.01638 Spectral Theory +1601.03093 Phenomenology +1601.03186 Probability +1601.03927 Probability +1601.04219 Networking and Internet Architecture +1601.04309 Representation Theory +1601.06878 Optimization and Control +1601.07122 Information Theory +1601.07413 Differential Geometry +1602.00355 Methodology +1602.00473 Functional Analysis +1602.00512 Analysis of PDEs +1602.00683 +1602.00742 Analysis of PDEs +1602.01305 Algebraic Geometry +1602.01908 Probability +1602.02269 Functional Analysis +1602.03331 Earth and Planetary Astrophysics +1602.03938 Computation +1602.04398 Machine Learning +1602.04830 +1602.05433 Superconductivity +1602.05779 Mesoscale and Nanoscale Physics +1602.05901 Computational Engineering, Finance, and Science +1602.06322 Probability +1602.06578 Representation Theory +1602.07916 Number Theory +1602.07958 Optics +1602.08778 Logic in Computer Science +1602.09053 Applications +1603.00336 Numerical Analysis +1603.00954 Learning +1603.01467 Number Theory +1603.01655 +1603.02480 Optimization and Control +1603.03315 Data Structures and Algorithms +1603.03388 Analysis of PDEs +1603.04023 Quantitative Methods +1603.04937 Complex Variables +1603.05121 General Mathematics +1603.05722 Numerical Analysis +1603.08243 Dynamical Systems +1603.08576 Commutative Algebra +1603.08599 Materials Science +1603.08778 Analysis of PDEs +1604.00113 Algebraic Topology +1604.00540 Methodology +1604.00638 Classical Analysis and ODEs +1604.01081 Numerical Analysis +1604.01627 Computer Science and Game Theory +1604.03799 Logic in Computer Science +1604.04478 Methodology +1604.04616 +1604.05404 Pricing of Securities +1604.05406 Pricing of Securities +1604.05432 Solar and Stellar Astrophysics +1604.05616 Analysis of PDEs +1604.05800 Computation and Language +1604.06250 Mesoscale and Nanoscale Physics +1604.08041 Hardware Architecture +1604.08386 Geometric Topology +1604.08672 Computation and Language +1605.03483 Computer Vision and Pattern Recognition +1605.03613 Data Structures and Algorithms +1605.03798 Materials Science +1605.04282 General Physics +1605.04547 Soft Condensed Matter +1605.04601 +1605.05038 Analysis of PDEs +1605.05289 Phenomenology +1605.05413 Phenomenology +1605.05584 Number Theory +1605.05757 Computer Vision and Pattern Recognition +1605.05774 +1605.06412 Geometric Topology +1605.06665 Probability +1605.06734 Classical Analysis and ODEs +1605.06995 Learning +1605.07148 Learning +1605.07166 Mesoscale and Nanoscale Physics +1605.07214 Mesoscale and Nanoscale Physics +1605.07736 Learning +1605.07750 Instrumentation and Detectors +1605.08028 Phenomenology +1605.08677 +1605.09251 +1605.09345 General Topology +1605.09610 Superconductivity +1605.09744 Analysis of PDEs +1606.00461 Number Theory +1606.00487 Computer Vision and Pattern Recognition +1606.00640 Number Theory +1606.01111 Systems and Control +1606.01328 Combinatorics +1606.01695 +1606.01979 Networking and Internet Architecture +1606.02664 +1606.02890 Phenomenology +1606.02973 Probability +1606.03136 Functional Analysis +1606.03168 Optimization and Control +1606.03558 Computer Vision and Pattern Recognition +1606.03577 Experiment +1606.03809 Programming Languages +1606.03873 +1606.04108 Theory +1606.04131 Phenomenology +1606.04443 Machine Learning +1606.04888 +1606.05285 Robotics +1606.05484 Strongly Correlated Electrons +1606.05796 Strongly Correlated Electrons +1606.05846 Theory +1606.05888 History and Philosophy of Physics +1606.08463 Phenomenology +1606.08758 +1606.08850 Astrophysics of Galaxies +1607.00751 Logic +1607.01949 Phenomenology +1607.02330 Information Theory +1607.02606 Cosmology and Nongalactic Astrophysics +1607.02729 +1607.02937 Computer Vision and Pattern Recognition +1607.03389 +1607.03462 Astrophysics of Galaxies +1607.04073 +1607.04350 +1607.04499 Numerical Analysis +1607.04800 Robotics +1607.05290 High Energy Astrophysical Phenomena +1607.05789 Solar and Stellar Astrophysics +1607.05834 Mesoscale and Nanoscale Physics +1607.06087 Strongly Correlated Electrons +1607.06278 +1607.07224 Theory +1607.07455 Solar and Stellar Astrophysics +1607.07694 Instrumentation and Detectors +1607.07976 Plasma Physics +1607.08271 Networking and Internet Architecture +1607.08554 Methodology +1607.08673 Social and Information Networks +1607.08800 Mesoscale and Nanoscale Physics +1608.00404 Materials Science +1608.00506 Mesoscale and Nanoscale Physics +1608.00808 Soft Condensed Matter +1608.00897 Representation Theory +1608.01157 Superconductivity +1608.02440 Probability +1608.03007 Materials Science +1608.03727 Metric Geometry +1608.03910 Solar and Stellar Astrophysics +1608.04597 Statistical Mechanics +1608.05162 Representation Theory +1608.05335 Differential Geometry +1608.05524 Category Theory +1608.06174 Methodology +1608.06393 Phenomenology +1608.06799 Geometric Topology +1608.07704 Algebraic Topology +1608.07781 Distributed, Parallel, and Cluster Computing +1608.08156 Algebraic Geometry +1608.08213 Algebraic Geometry +1608.08761 Learning +1608.08794 Phenomenology +1609.00856 Information Theory +1609.01208 Theory +1609.02458 Chemical Physics +1609.02958 Phenomenology +1609.03143 Algebraic Topology +1609.03168 Dynamical Systems +1609.03694 Number Theory +1609.03955 Phenomenology +1609.04337 Computer Vision and Pattern Recognition +1609.04458 Number Theory +1609.04658 Chemical Physics +1609.04984 Superconductivity +1609.05090 General Physics +1609.06134 Phenomenology +1609.07053 Computation and Language +1609.07264 Other Condensed Matter +1609.07410 Machine Learning +1609.07486 Materials Science +1609.07685 Optimization and Control +1609.08490 Instrumentation and Detectors +1610.00416 High Energy Astrophysical Phenomena +1610.00479 Computation and Language +1610.01199 Computational Complexity +1610.01530 Mesoscale and Nanoscale Physics +1610.02098 Materials Science +1610.02325 Algebraic Geometry +1610.02439 Number Theory +1610.02504 Combinatorics +1610.03408 Methodology +1610.03908 Combinatorics +1610.04418 Geometric Topology +1610.04834 Computer Vision and Pattern Recognition +1610.04852 Logic +1610.05114 Programming Languages +1610.05722 Analysis of PDEs +1610.05921 Number Theory +1610.06061 Physics and Society +1610.06171 Soft Condensed Matter +1610.06280 +1610.06299 Phenomenology +1610.06448 Number Theory +1610.06512 +1610.06571 Phenomenology +1610.06984 Logic in Computer Science +1610.07011 Lattice +1610.07016 Complex Variables +1610.07054 Dynamical Systems +1610.07056 Solar and Stellar Astrophysics +1610.07100 Data Structures and Algorithms +1610.07310 Computation +1610.07349 Differential Geometry +1610.07368 Graphics +1610.07431 Probability +1610.07466 Phenomenology +1610.07523 Astrophysics of Galaxies +1610.07781 Representation Theory +1610.07885 Space Physics +1610.07955 High Energy Astrophysical Phenomena +1610.08509 Experiment +1610.08566 Neurons and Cognition +1610.08705 Hardware Architecture +1610.08707 +1610.08775 Experiment +1610.08793 +1610.08831 Numerical Analysis +1610.08975 Strongly Correlated Electrons +1610.09014 Instrumentation and Methods for Astrophysics +1610.09082 High Energy Astrophysical Phenomena +1610.09299 +1610.09305 Logic +1610.09307 Learning +1610.09352 Fluid Dynamics +1610.09367 Mesoscale and Nanoscale Physics +1610.09369 Learning +1610.09370 Numerical Analysis +1610.09371 History and Overview +1610.09372 Artificial Intelligence +1610.09378 Theory +1610.09379 High Energy Astrophysical Phenomena +1610.09381 High Energy Astrophysical Phenomena +1610.09382 High Energy Astrophysical Phenomena +1610.09384 Mathematical Finance +1610.09386 Computer Vision and Pattern Recognition +1610.09387 Probability +1610.09389 Astrophysics of Galaxies +1610.09390 Earth and Planetary Astrophysics +1610.09392 Phenomenology +1610.09395 Instrumentation and Detectors +1610.09400 Computation +1610.09404 General Finance +1610.09405 Software Engineering +1610.09406 Subcellular Processes +1610.09407 Information Theory +1610.09409 Artificial Intelligence +1610.09411 Social and Information Networks +1610.09414 Computer Vision and Pattern Recognition +1610.09415 Pattern Formation and Solitons +1610.09417 Cryptography and Security +1610.09418 Dynamical Systems +1610.09419 Differential Geometry +1610.09420 Machine Learning +1610.09421 Probability +1610.09422 Dynamical Systems +1610.09425 Atomic Physics +1610.09426 Statistical Mechanics +1610.09427 Quantitative Methods +1610.09430 Phenomenology +1610.09431 Neurons and Cognition +1610.09433 Statistics Theory +1610.09434 +1610.09436 Optics +1610.09437 Information Theory +1610.09438 Probability +1610.09440 Earth and Planetary Astrophysics +1610.09441 Superconductivity +1610.09443 Quantum Algebra +1610.09444 Statistical Mechanics +1610.09445 Differential Geometry +1610.09449 Networking and Internet Architecture +1610.09451 Learning +1610.09453 Information Theory +1610.09454 Optics +1610.09455 Computer Vision and Pattern Recognition +1610.09456 Optimization and Control +1610.09460 Neural and Evolutionary Computing +1610.09462 Computers and Society +1610.09463 Information Theory +1610.09464 Analysis of PDEs +1610.09466 Dynamical Systems +1610.09467 Number Theory +1610.09469 Group Theory +1610.09470 Combinatorics +1610.09471 Fluid Dynamics +1610.09472 Probability +1610.09473 Emerging Technologies +1610.09474 Differential Geometry +1610.09475 Differential Geometry +1610.09477 +1610.09480 Computers and Society +1610.09482 Systems and Control +1610.09483 Instrumentation and Detectors +1610.09485 Applications +1610.09486 Data Structures and Algorithms +1610.09488 Dynamical Systems +1610.09489 Combinatorics +1610.09490 Machine Learning +1610.09491 Learning +1610.09492 +1610.09493 Computer Vision and Pattern Recognition +1610.09495 Classical Analysis and ODEs +1610.09497 Analysis of PDEs +1610.09498 Computer Vision and Pattern Recognition +1610.09500 Databases +1610.09501 Superconductivity +1610.09502 Statistics Theory +1610.09503 Cryptography and Security +1610.09504 Dynamical Systems +1610.09506 Databases +1610.09507 Exactly Solvable and Integrable Systems +1610.09511 Computers and Society +1610.09513 Learning +1610.09514 Human-Computer Interaction +1610.09515 Mesoscale and Nanoscale Physics +1610.09516 Social and Information Networks +1610.09517 Differential Geometry +1610.09519 Statistical Finance +1610.09522 Accelerator Physics +1610.09523 Category Theory +1610.09524 Atomic and Molecular Clusters +1610.09525 +1610.09530 Information Theory +1610.09532 Chemical Physics +1610.09537 Theory +1610.09538 Probability +1610.09539 Instrumentation and Detectors +1610.09540 Information Theory +1610.09542 Risk Management +1610.09543 Programming Languages +1610.09545 Plasma Physics +1610.09546 Information Theory +1610.09547 Differential Geometry +1610.09548 Algebraic Geometry +1610.09550 +1610.09551 Experiment +1610.09552 +1610.09553 Analysis of PDEs +1610.09554 Materials Science +1610.09556 +1610.09562 Mesoscale and Nanoscale Physics +1610.09564 Complex Variables +1610.09565 Computation and Language +1610.09568 +1610.09569 Probability +1610.09570 Optics +1610.09571 Differential Geometry +1610.09573 +1610.09576 Combinatorics +1610.09577 Differential Geometry +1610.09578 Fluid Dynamics +1610.09579 Dynamical Systems +1610.09580 Systems and Control +1610.09582 Computer Vision and Pattern Recognition +1610.09584 Differential Geometry +1610.09586 Analysis of PDEs +1610.09587 Combinatorics +1610.09588 Number Theory +1610.09589 Algebraic Geometry +1610.09590 Computer Vision and Pattern Recognition +1610.09593 Optics +1610.09594 Strongly Correlated Electrons +1610.09595 Analysis of PDEs +1610.09599 Plasma Physics +1610.09601 +1610.09603 Hardware Architecture +1610.09604 Hardware Architecture +1610.09605 Phenomenology +1610.09606 Systems and Control +1610.09608 Learning +1610.09609 Computer Vision and Pattern Recognition +1610.09610 Computers and Society +1610.09611 Numerical Analysis +1610.09612 Algebraic Topology +1610.09613 Optics +1610.09615 Computer Vision and Pattern Recognition +1610.09616 Probability +1610.09617 Materials Science +1610.09618 Phenomenology +1610.09621 +1610.09622 Computational Finance +1610.09623 Data Structures and Algorithms +1610.09624 Optics +1610.09625 Neurons and Cognition +1610.09626 Information Theory +1610.09627 Number Theory +1610.09632 Differential Geometry +1610.09633 High Energy Astrophysical Phenomena +1610.09635 Software Engineering +1610.09637 Molecular Networks +1610.09639 Learning +1610.09640 Category Theory +1610.09641 Machine Learning +1610.09644 Differential Geometry +1610.09645 Computer Vision and Pattern Recognition +1610.09646 +1610.09649 Representation Theory +1610.09651 Optimization and Control +1610.09652 Computer Vision and Pattern Recognition +1610.09655 +1610.09656 Combinatorics +1610.09657 Quantum Algebra +1610.09658 Geometric Topology +1610.09659 Machine Learning +1610.09660 Combinatorics +1610.09664 Geometric Topology +1610.09665 Group Theory +1610.09666 Combinatorics +1610.09668 Lattice +1610.09669 +1610.09672 Geometric Topology +1610.09673 +1610.09674 Number Theory +1610.09676 +1610.09677 Phenomenology +1610.09678 Algebraic Topology +1610.09682 Differential Geometry +1610.09683 Information Theory +1610.09686 Materials Science +1610.09687 Probability +1610.09688 Cosmology and Nongalactic Astrophysics +1610.09690 Number Theory +1610.09692 Theory +1610.09693 Theory +1610.09694 High Energy Astrophysical Phenomena +1610.09696 Biomolecules +1610.09698 Methodology +1610.09700 +1610.09702 +1610.09703 Systems and Control +1610.09704 Computation and Language +1610.09705 Soft Condensed Matter +1610.09708 Lattice +1610.09709 Solar and Stellar Astrophysics +1610.09711 Number Theory +1610.09712 Computer Vision and Pattern Recognition +1610.09714 Pricing of Securities +1610.09715 Differential Geometry +1610.09716 Learning +1610.09718 Symplectic Geometry +1610.09721 Group Theory +1610.09722 Computation and Language +1610.09723 Accelerator Physics +1610.09724 Computation +1610.09725 Group Theory +1610.09726 Learning +1610.09728 Optimization and Control +1610.09730 Learning +1610.09733 Biological Physics +1610.09737 Combinatorics +1610.09739 Numerical Analysis +1610.09740 Rings and Algebras +1610.09742 Rings and Algebras +1610.09743 Human-Computer Interaction +1610.09745 Probability +1610.09747 Analysis of PDEs +1610.09750 Applications +1610.09752 +1610.09753 Differential Geometry +1610.09754 Number Theory +1610.09757 Classical Analysis and ODEs +1610.09759 +1610.09761 Hardware Architecture +1610.09764 Symplectic Geometry +1610.09765 Analysis of PDEs +1610.09766 Computer Vision and Pattern Recognition +1610.09767 Information Theory +1610.09768 Materials Science +1610.09769 Social and Information Networks +1610.09770 Combinatorics +1610.09771 Combinatorics +1610.09772 +1610.09773 Lattice +1610.09774 Combinatorics +1610.09776 +1610.09777 Quantum Gases +1610.09778 Learning +1610.09780 Methodology +1610.09782 Information Theory +1610.09783 Combinatorics +1610.09785 Information Theory +1610.09786 Social and Information Networks +1610.09788 Methodology +1610.09789 Analysis of PDEs +1610.09790 Superconductivity +1610.09792 Theory +1610.09793 Theory +1610.09794 Differential Geometry +1610.09795 Formal Languages and Automata Theory +1610.09796 Analysis of PDEs +1610.09799 Computation and Language +1610.09800 Data Structures and Algorithms +1610.09804 Materials Science +1610.09806 Combinatorics +1610.09807 Atomic Physics +1610.09808 Differential Geometry +1610.09809 Algebraic Geometry +1610.09810 Solar and Stellar Astrophysics +1610.09812 Statistical Finance +1610.09813 Differential Geometry +1610.09815 Other Quantitative Biology +1610.09816 Computer Vision and Pattern Recognition +1610.09821 Number Theory +1610.09822 Number Theory +1610.09825 Strongly Correlated Electrons +1610.09826 Instrumentation and Methods for Astrophysics +1610.09827 Analysis of PDEs +1610.09828 Cosmology and Nongalactic Astrophysics +1610.09829 Group Theory +1610.09830 Number Theory +1610.09831 Mesoscale and Nanoscale Physics +1610.09832 Algebraic Geometry +1610.09834 Computational Complexity +1610.09835 Phenomenology +1610.09836 Differential Geometry +1610.09838 Machine Learning +1610.09841 Solar and Stellar Astrophysics +1610.09842 Materials Science +1610.09843 Astrophysics of Galaxies +1610.09846 +1610.09847 Combinatorics +1610.09850 Functional Analysis +1610.09853 Phenomenology +1610.09857 Materials Science +1610.09859 Dynamical Systems +1610.09860 Solar and Stellar Astrophysics +1610.09861 Atomic Physics +1610.09863 Probability +1610.09865 Numerical Analysis +1610.09866 Optimization and Control +1610.09867 Analysis of PDEs +1610.09871 Differential Geometry +1610.09872 Fluid Dynamics +1610.09874 Numerical Analysis +1610.09875 Mathematical Finance +1610.09876 Mesoscale and Nanoscale Physics +1610.09877 Information Theory +1610.09878 Applications +1610.09879 Functional Analysis +1610.09880 Differential Geometry +1610.09882 Artificial Intelligence +1610.09883 Analysis of PDEs +1610.09884 Disordered Systems and Neural Networks +1610.09885 Cosmology and Nongalactic Astrophysics +1610.09886 +1610.09888 Combinatorics +1610.09891 +1610.09892 +1610.09893 Computation and Language +1610.09894 Computers and Society +1610.09897 Solar and Stellar Astrophysics +1610.09899 Mesoscale and Nanoscale Physics +1610.09901 Geometric Topology +1610.09903 Learning +1610.09904 Trading and Market Microstructure +1610.09905 +1610.09906 Computational Engineering, Finance, and Science +1610.09907 K-Theory and Homology +1610.09908 Computer Vision and Pattern Recognition +1610.09909 Analysis of PDEs +1610.09911 Solar and Stellar Astrophysics +1610.09912 +1610.09914 Computation and Language +1610.09915 Machine Learning +1610.09918 Numerical Analysis +1610.09919 Other Condensed Matter +1610.09920 Number Theory +1610.09921 Physics and Society +1610.09922 +1610.09923 History and Overview +1610.09925 Analysis of PDEs +1610.09926 Quantitative Methods +1610.09929 Information Theory +1610.09931 Symplectic Geometry +1610.09933 Physics and Society +1610.09934 Numerical Analysis +1610.09937 Populations and Evolution +1610.09940 Phenomenology +1610.09943 Theory +1610.09950 Social and Information Networks +1610.09951 Materials Science +1610.09955 +1610.09957 Statistics Theory +1610.09958 Digital Libraries +1610.09960 +1610.09963 Mesoscale and Nanoscale Physics +1610.09964 Artificial Intelligence +1610.09967 +1610.09968 Statistical Mechanics +1610.09970 +1610.09971 Phenomenology +1610.09973 Phenomenology +1610.09974 Computers and Society +1610.09975 Computation and Language +1610.09976 Computer Science and Game Theory +1610.09977 Phenomenology +1610.09978 Experiment +1610.09979 Lattice +1610.09981 +1610.09982 Information Retrieval +1610.09983 Theory +1610.09984 Data Structures and Algorithms +1610.09988 Graphics +1610.09990 Neurons and Cognition +1610.09992 Graphics +1610.09993 Optimization and Control +1610.09994 Phenomenology +1610.09995 Computation and Language +1610.09997 Dynamical Systems +1610.09999 +1610.10001 Information Retrieval +1610.10002 Combinatorics +1610.10004 Lattice +1610.10006 Instrumentation and Detectors +1610.10007 Mesoscale and Nanoscale Physics +1610.10008 Networking and Internet Architecture +1610.10009 Classical Analysis and ODEs +1610.10010 Dynamical Systems +1610.10011 Mesoscale and Nanoscale Physics +1610.10014 Optimization and Control +1610.10017 Number Theory +1610.10018 Probability +1610.10019 Geometric Topology +1610.10021 Quantitative Methods +1610.10022 Optimization and Control +1610.10023 Commutative Algebra +1610.10026 Soft Condensed Matter +1610.10027 Materials Science +1610.10028 Statistics Theory +1610.10029 Portfolio Management +1610.10030 Dynamical Systems +1610.10031 Social and Information Networks +1610.10032 Geometric Topology +1610.10033 Computer Vision and Pattern Recognition +1610.10036 High Energy Astrophysical Phenomena +1610.10040 Methodology +1610.10041 Computers and Society +1610.10043 K-Theory and Homology +1610.10044 K-Theory and Homology +1610.10046 Phenomenology +1610.10048 Computer Vision and Pattern Recognition +1610.10054 Strongly Correlated Electrons +1610.10055 +1610.10056 Human-Computer Interaction +1610.10057 Computational Engineering, Finance, and Science +1610.10058 Logic +1610.10060 Machine Learning +1610.10063 Materials Science +1610.10064 Machine Learning +1610.10065 +1610.10068 Lattice +1610.10070 Lattice +1610.10073 Analysis of PDEs +1610.10077 Commutative Algebra +1610.10078 Mathematical Finance +1610.10079 Software Engineering +1610.10080 Probability +1610.10082 Fluid Dynamics +1610.10085 Algebraic Topology +1610.10086 Soft Condensed Matter +1610.10087 Neural and Evolutionary Computing +1610.10090 Fluid Dynamics +1610.10091 Strongly Correlated Electrons +1610.10095 Astrophysics of Galaxies +1610.10096 Lattice +1610.10097 Lattice +hep-th/0307242 Theory +math/9704231 Probability +math/9804158 Probability +math/9807184 Probability +quant-ph/0701118 +0801.0395 Combinatorics +0803.2331 Numerical Analysis +0804.2466 +0807.3062 Geometric Topology +0808.1349 +0808.2790 +0903.0699 Geometric Topology +0903.5134 Solar and Stellar Astrophysics +0910.3750 High Energy Astrophysical Phenomena +0911.4495 Instrumentation and Methods for Astrophysics +0912.0730 Cosmology and Nongalactic Astrophysics +1010.5280 Dynamical Systems +1011.1537 High Energy Astrophysical Phenomena +1012.2398 Plasma Physics +1107.4000 Instrumentation and Methods for Astrophysics +1110.4252 Algebraic Topology +1110.4527 Algebraic Topology +1110.5153 Statistical Mechanics +1111.2174 Geometric Topology +1111.2550 Algebraic Geometry +1202.0732 Theory +1207.0207 +1209.1557 Machine Learning +1210.5301 Algebraic Geometry +1211.1240 Fluid Dynamics +1304.4913 Number Theory +1305.0707 +1305.1180 +1305.3682 Differential Geometry +1305.4638 Differential Geometry +1305.6249 Performance +1307.5303 +1309.0260 Statistical Finance +1309.3199 Mesoscale and Nanoscale Physics +1309.5416 High Energy Astrophysical Phenomena +1310.1078 Statistical Mechanics +1310.5606 Analysis of PDEs +1311.1051 Algebraic Topology +1311.1149 Solar and Stellar Astrophysics +1311.4045 Discrete Mathematics +1311.4523 Phenomenology +1312.4829 High Energy Astrophysical Phenomena +1401.5140 Differential Geometry +1401.6467 Materials Science +1402.1023 Phenomenology +1402.4665 Superconductivity +1403.0675 +1403.4908 Atmospheric and Oceanic Physics +1403.6313 Analysis of PDEs +1405.0031 +1405.2248 +1406.1964 +1407.1346 Mesoscale and Nanoscale Physics +1407.3907 Theory +1407.8414 Cosmology and Nongalactic Astrophysics +1409.1234 Strongly Correlated Electrons +1409.3341 +1409.4522 +1409.6433 Spectral Theory +1409.8566 Combinatorics +1410.2230 Probability +1410.3116 Atmospheric and Oceanic Physics +1410.3978 Networking and Internet Architecture +1411.1018 Functional Analysis +1411.2130 Analysis of PDEs +1411.3617 Statistical Mechanics +1411.3909 Dynamical Systems +1411.4198 Materials Science +1411.4295 Solar and Stellar Astrophysics +1412.3364 Cosmology and Nongalactic Astrophysics +1412.3375 Superconductivity +1412.3508 Probability +1412.3518 Artificial Intelligence +1412.3968 Atomic Physics +1412.4230 Statistical Mechanics +1412.4958 Information Theory +1412.5700 +1412.7890 Information Theory +1412.7921 +1412.8385 +1412.8577 +1501.00250 Strongly Correlated Electrons +1501.00738 Physics and Society +1501.00887 Differential Geometry +1501.01670 Dynamical Systems +1501.02520 +1501.02678 Cosmology and Nongalactic Astrophysics +1501.03253 Fluid Dynamics +1501.03414 Differential Geometry +1501.03699 Phenomenology +1501.05090 Materials Science +1501.05191 Fluid Dynamics +1501.05403 Optics +1501.05404 Representation Theory +1501.06139 Soft Condensed Matter +1501.06212 Probability +1501.06336 Superconductivity +1501.06337 Phenomenology +1501.06848 Chaotic Dynamics +1501.06911 +1501.07780 Analysis of PDEs +1502.00244 Physics and Society +1502.00528 Physics and Society +1502.00535 Optics +1502.00538 Accelerator Physics +1502.00899 Phenomenology +1502.00964 Analysis of PDEs +1502.00984 +1502.01064 High Energy Astrophysical Phenomena +1502.01114 +1502.01225 +1502.01451 Experiment +1502.01559 +1502.01867 Differential Geometry +1502.02263 Phenomenology +1502.02974 +1502.03180 Phenomenology +1502.03274 Quantum Gases +1502.03303 Analysis of PDEs +1502.03338 Physics and Society +1502.03896 Phenomenology +1502.03996 Statistical Mechanics +1502.04319 Analysis of PDEs +1502.04330 Mesoscale and Nanoscale Physics +1502.04463 +1502.04577 Materials Science +1502.04588 Data Structures and Algorithms +1502.05468 +1502.05632 Logic +1502.05842 Statistical Mechanics +1502.05846 Statistical Mechanics +1502.05875 +1502.05920 Mathematical Finance +1502.05976 Theory +1502.06082 Plasma Physics +1502.06180 Analysis of PDEs +1502.06921 Lattice +1502.07013 Analysis of PDEs +1502.07047 +1502.07196 Chemical Physics +1502.07574 Phenomenology +1503.00117 Analysis of PDEs +1503.01222 +1503.01467 High Energy Astrophysical Phenomena +1503.02058 Analysis of PDEs +1503.02132 Quantum Gases +1503.02181 +1503.02709 Disordered Systems and Neural Networks +1503.03049 Algebraic Geometry +1503.03053 Spectral Theory +1503.03304 Dynamical Systems +1503.03422 Spectral Theory +1503.03518 Phenomenology +1503.03922 Analysis of PDEs +1503.04133 +1503.04184 Phenomenology +1503.04898 Analysis of PDEs +1503.05217 Differential Geometry +1503.05233 +1503.05266 +1503.05313 Chaotic Dynamics +1503.05883 +1503.06295 Mesoscale and Nanoscale Physics +1503.06362 Statistical Mechanics +1503.06661 Dynamical Systems +1503.07019 Disordered Systems and Neural Networks +1503.07271 Strongly Correlated Electrons +1503.07277 Theory +1503.07892 Strongly Correlated Electrons +1503.08330 +1503.08484 Theory +1503.08607 Theory +1503.08903 Mesoscale and Nanoscale Physics +1503.08910 Algebraic Geometry +1503.09153 Phenomenology +1504.00177 +1504.00458 Physics and Society +1504.00548 Computation and Language +1504.00726 Dynamical Systems +1504.00817 Cell Behavior +1504.00892 Phenomenology +1504.01045 Number Theory +1504.01080 Analysis of PDEs +1504.01598 Experiment +1504.01851 Mesoscale and Nanoscale Physics +1504.02648 Computer Vision and Pattern Recognition +1504.03126 +1504.03525 Analysis of PDEs +1504.03546 Quantum Algebra +1504.03566 Theory +1504.03572 +1504.04356 Materials Science +1504.04411 Mesoscale and Nanoscale Physics +1504.04471 Lattice +1504.04488 Number Theory +1504.04732 +1504.04872 +1504.05253 Mesoscale and Nanoscale Physics +1504.05264 Phenomenology +1504.05375 Fluid Dynamics +1504.05602 Mesoscale and Nanoscale Physics +1504.05687 Theory +1504.05726 Phenomenology +1504.05978 Analysis of PDEs +1504.06038 Theory +1504.06272 Theory +1504.06395 Networking and Internet Architecture +1504.06492 +1504.06561 Combinatorics +1504.06601 Phenomenology +1504.06669 Differential Geometry +1504.07114 +1504.07293 Phenomenology +1504.07611 Theory +1504.07632 Astrophysics of Galaxies +1504.07761 Populations and Evolution +1505.00045 Methodology +1505.00442 Cosmology and Nongalactic Astrophysics +1505.01108 Soft Condensed Matter +1505.01224 Soft Condensed Matter +1505.01330 Accelerator Physics +1505.01332 Physics and Society +1505.01348 Instrumentation and Methods for Astrophysics +1505.01722 +1505.01826 Phenomenology +1505.01831 Accelerator Physics +1505.01874 Systems and Control +1505.02024 Atomic Physics +1505.02055 Strongly Correlated Electrons +1505.02079 Chemical Physics +1505.02165 Cosmology and Nongalactic Astrophysics +1505.02347 +1505.02706 +1505.02727 Optics +1505.02754 General Physics +1505.02831 Quantitative Methods +1505.02840 +1505.02885 Accelerator Physics +1505.03058 Experiment +1505.03272 Strongly Correlated Electrons +1505.03603 Phenomenology +1505.03646 Quantum Gases +1505.03739 Theory +1505.03845 Dynamical Systems +1505.03863 +1505.04044 Mesoscale and Nanoscale Physics +1505.04312 Theory +1505.04486 Materials Science +1505.04654 Analysis of PDEs +1505.04678 +1505.04955 +1505.05114 Information Theory +1505.05155 High Energy Astrophysical Phenomena +1505.05389 Dynamical Systems +1505.05569 Analysis of PDEs +1505.06260 +1505.06361 Superconductivity +1505.07098 Cosmology and Nongalactic Astrophysics +1505.07220 Atmospheric and Oceanic Physics +1505.07357 Theory +1505.07360 Statistical Mechanics +1505.07505 Materials Science +1505.07541 Methodology +1505.07982 Materials Science +1506.00054 Quantitative Methods +1506.00343 Computation +1506.00531 Phenomenology +1506.00666 Theory +1506.00676 Dynamical Systems +1506.00755 Solar and Stellar Astrophysics +1506.00987 Theory +1506.01016 Phenomenology +1506.01303 Mesoscale and Nanoscale Physics +1506.01329 +1506.01748 Analysis of PDEs +1506.01890 Theory +1506.01921 +1506.01986 Category Theory +1506.02038 Theory +1506.02088 Neurons and Cognition +1506.02339 Statistical Mechanics +1506.02606 +1506.02798 Theory +1506.02938 +1506.03097 Instrumentation and Methods for Astrophysics +1506.03129 Superconductivity +1506.03289 Physics and Society +1506.03327 Phenomenology +1506.03422 Mesoscale and Nanoscale Physics +1506.03945 Analysis of PDEs +1506.03970 Phenomenology +1506.03977 Statistical Mechanics +1506.03981 +1506.04010 Analysis of PDEs +1506.04033 Spectral Theory +1506.04166 Instrumentation and Methods for Astrophysics +1506.04197 +1506.04213 +1506.04237 Mesoscale and Nanoscale Physics +1506.04308 Materials Science +1506.04410 Theory +1506.04446 +1506.04617 Phenomenology +1506.04626 Mesoscale and Nanoscale Physics +1506.04983 Theory +1506.05023 Phenomenology +1506.05053 Mesoscale and Nanoscale Physics +1506.05147 Astrophysics of Galaxies +1506.05696 Strongly Correlated Electrons +1506.05706 Strongly Correlated Electrons +1506.06692 +1506.06698 Biological Physics +1506.06873 Quantum Gases +1506.07085 Earth and Planetary Astrophysics +1506.07088 Optics +1506.07210 Pattern Formation and Solitons +1506.07241 Soft Condensed Matter +1506.07325 Probability +1506.07371 Probability +1506.07427 Probability +1506.07432 Physics and Society +1506.07508 Theory +1506.07523 Cosmology and Nongalactic Astrophysics +1506.07526 Cosmology and Nongalactic Astrophysics +1506.07649 Analysis of PDEs +1506.08007 Phenomenology +1506.08042 +1506.08196 Astrophysics of Galaxies +1506.08358 +1506.08583 Theory +1506.08591 Operator Algebras +1506.08611 Statistical Mechanics +1506.08764 +1506.08767 Optics +1506.09086 Theory +1507.00014 Theory +1507.00107 Theory +1507.00465 Mesoscale and Nanoscale Physics +1507.00508 Phenomenology +1507.00755 Optics +1507.00869 Mesoscale and Nanoscale Physics +1507.00975 Numerical Analysis +1507.01099 Analysis of PDEs +1507.01355 Optics +1507.01457 Pattern Formation and Solitons +1507.01478 Probability +1507.01537 Statistical Mechanics +1507.01556 +1507.01651 Superconductivity +1507.01813 Analysis of PDEs +1507.01893 +1507.02070 Phenomenology +1507.02174 Theory +1507.02264 Fluid Dynamics +1507.02306 +1507.02309 Theory +1507.02644 Phenomenology +1507.02702 Adaptation and Self-Organizing Systems +1507.03001 Cosmology and Nongalactic Astrophysics +1507.03137 Programming Languages +1507.03242 +1507.03333 +1507.03370 +1507.03377 Mesoscale and Nanoscale Physics +1507.03527 Phenomenology +1507.03561 Strongly Correlated Electrons +1507.03791 Theory +1507.04052 Computational Physics +1507.04070 Dynamical Systems +1507.04182 Instrumentation and Detectors +1507.04273 Quantum Gases +1507.04286 Mesoscale and Nanoscale Physics +1507.04352 Theory +1507.04361 Theory +1507.04467 Phenomenology +1507.04676 Phenomenology +1507.04710 Geophysics +1507.04864 Materials Science +1507.05064 +1507.05072 Disordered Systems and Neural Networks +1507.05091 Mesoscale and Nanoscale Physics +1507.05139 Quantum Algebra +1507.05251 Information Theory +1507.05252 Mesoscale and Nanoscale Physics +1507.05465 Mesoscale and Nanoscale Physics +1507.05504 Mesoscale and Nanoscale Physics +1507.05565 Cosmology and Nongalactic Astrophysics +1507.05620 Theory +1507.05623 Theory +1507.05809 Phenomenology +1507.05830 High Energy Astrophysical Phenomena +1507.05838 +1507.06041 Numerical Analysis +1507.06113 Logic +1507.06207 +1507.06288 Theory +1507.06448 +1507.06591 +1507.06709 Numerical Analysis +1507.06831 +1507.07134 Systems and Control +1507.07249 Quantum Gases +1507.07379 Optics +1507.07408 Phenomenology +1507.07421 Soft Condensed Matter +1507.07491 Biological Physics +1507.07571 +1507.07650 Theory +1507.07840 +1507.07971 Analysis of PDEs +1507.08000 Strongly Correlated Electrons +1507.08047 Astrophysics of Galaxies +1507.08122 Optics +1507.08127 Materials Science +1507.08442 Soft Condensed Matter +1507.08585 Plasma Physics +1507.08639 Superconductivity +1507.08649 Phenomenology +1507.08870 Mesoscale and Nanoscale Physics +1507.08902 Earth and Planetary Astrophysics +1507.08982 Theory +1508.00016 Phenomenology +1508.00110 Theory +1508.00164 Mesoscale and Nanoscale Physics +1508.00165 Neurons and Cognition +1508.00180 Theory +1508.00251 Cosmology and Nongalactic Astrophysics +1508.00355 Differential Geometry +1508.00499 Materials Science +1508.00701 Numerical Analysis +1508.00757 Superconductivity +1508.01029 +1508.01157 Fluid Dynamics +1508.01298 Mesoscale and Nanoscale Physics +1508.01327 +1508.01374 Superconductivity +1508.01508 +1508.01659 +1508.01673 Quantum Gases +1508.02010 Applications +1508.02080 Optimization and Control +1508.02159 Fluid Dynamics +1508.02177 Social and Information Networks +1508.02216 Mesoscale and Nanoscale Physics +1508.02391 Theory +1508.02614 Phenomenology +1508.02698 +1508.02945 Molecular Networks +1508.03055 Materials Science +1508.03072 Optics +1508.03118 Strongly Correlated Electrons +1508.03141 Solar and Stellar Astrophysics +1508.03144 Phenomenology +1508.03182 Functional Analysis +1508.03232 Theory +1508.03306 +1508.03355 Chemical Physics +1508.03367 Theory +1508.03383 Strongly Correlated Electrons +1508.03407 Pattern Formation and Solitons +1508.03603 Theory +1508.03864 Mesoscale and Nanoscale Physics +1508.04038 Theory +1508.04059 Materials Science +1508.04136 Phenomenology +1508.04293 +1508.04331 +1508.04378 +1508.04396 Biological Physics +1508.04432 Theory +1508.04434 Earth and Planetary Astrophysics +1508.04449 High Energy Astrophysical Phenomena +1508.04510 Optics +1508.04512 Statistical Finance +1508.04623 Phenomenology +1508.04704 Materials Science +1508.04793 Strongly Correlated Electrons +1508.04908 +1508.04918 Probability +1508.04939 Physics and Society +1508.04941 Soft Condensed Matter +1508.04944 Physics and Society +1508.05268 Fluid Dynamics +1508.05382 Phenomenology +1508.05387 Theory +1508.05700 +1508.05849 +1508.05884 Lattice +1508.05951 Phenomenology +1508.06148 +1508.06169 Atomic Physics +1508.06212 Phenomenology +1508.06324 Pattern Formation and Solitons +1508.06325 Theory +1508.06427 Chemical Physics +1508.06452 Computation +1508.06467 Physics and Society +1508.06500 High Energy Astrophysical Phenomena +1508.06524 Phenomenology +1508.06557 Theory +1508.06577 Theory +1508.06644 Theory +1508.06727 +1508.06808 Representation Theory +1508.06819 Analysis of PDEs +1508.06879 Theory +1508.07007 +1508.07017 +1508.07072 Statistical Mechanics +1508.07263 +1508.07344 Computational Physics +1508.07458 Superconductivity +1508.07459 Phenomenology +1508.07547 Programming Languages +1508.07632 Numerical Analysis +1508.07754 +1508.07782 Mesoscale and Nanoscale Physics +1508.07831 +1508.07956 Theory +1509.00046 Mesoscale and Nanoscale Physics +1509.00047 Phenomenology +1509.00287 Superconductivity +1509.00567 +1509.00591 Mesoscale and Nanoscale Physics +1509.00712 Soft Condensed Matter +1509.00732 Theory +1509.00843 +1509.00951 Fluid Dynamics +1509.01151 Analysis of PDEs +1509.01152 Theory +1509.01162 Statistical Mechanics +1509.01169 Plasma Physics +1509.01278 +1509.01317 Analysis of PDEs +1509.01399 Numerical Analysis +1509.01496 Phenomenology +1509.01577 Quantitative Methods +1509.01636 Theory +1509.01940 Physics and Society +1509.01995 Statistical Mechanics +1509.02131 Solar and Stellar Astrophysics +1509.02134 Solar and Stellar Astrophysics +1509.02186 Astrophysics of Galaxies +1509.02196 Theory +1509.02204 Probability +1509.02397 Astrophysics of Galaxies +1509.02401 Astrophysics of Galaxies +1509.02476 +1509.02519 Mesoscale and Nanoscale Physics +1509.02723 +1509.02728 Phenomenology +1509.02795 Computational Physics +1509.02853 Experiment +1509.02901 +1509.02904 Phenomenology +1509.02928 High Energy Astrophysical Phenomena +1509.02930 Theory +1509.03076 Soft Condensed Matter +1509.03102 Materials Science +1509.03107 Subcellular Processes +1509.03195 Theory +1509.03409 Phenomenology +1509.03439 Statistical Mechanics +1509.03481 Mesoscale and Nanoscale Physics +1509.03720 +1509.03802 Probability +1509.03829 Theory +1509.04011 +1509.04149 Soft Condensed Matter +1509.04236 +1509.04283 Astrophysics of Galaxies +1509.04431 Numerical Analysis +1509.04534 Theory +1509.04548 +1509.04558 Physics and Society +1509.04568 Populations and Evolution +1509.04596 Phenomenology +1509.04868 Statistical Mechanics +1509.04908 Mesoscale and Nanoscale Physics +1509.05030 Phenomenology +1509.05041 Theory +1509.05063 Numerical Analysis +1509.05081 Superconductivity +1509.05165 +1509.05215 Biological Physics +1509.05220 Dynamical Systems +1509.05258 +1509.05296 Materials Science +1509.05297 +1509.05327 Phenomenology +1509.05402 Theory +1509.05460 +1509.05564 Phenomenology +1509.05615 Phenomenology +1509.05644 +1509.05656 +1509.05785 Phenomenology +1509.06211 +1509.06239 +1509.06266 Instrumentation and Methods for Astrophysics +1509.06329 Instrumentation and Detectors +1509.06388 Strongly Correlated Electrons +1509.06417 Cosmology and Nongalactic Astrophysics +1509.06469 +1509.06601 Fluid Dynamics +1509.06656 Instrumentation and Detectors +1509.06700 Quantum Gases +1509.06726 Fluid Dynamics +1509.06803 Soft Condensed Matter +1509.06832 +1509.06876 High Energy Astrophysical Phenomena +1509.06949 Geophysics +1509.07305 Plasma Physics +1509.07358 +1509.07375 Phenomenology +1509.07516 Theory +1509.07587 Theory +1509.07690 Mesoscale and Nanoscale Physics +1509.07814 Disordered Systems and Neural Networks +1509.07875 Cosmology and Nongalactic Astrophysics +1509.07921 Plasma Physics +1509.07959 Lattice +1509.08020 Statistical Mechanics +1509.08237 Earth and Planetary Astrophysics +1509.08467 Mesoscale and Nanoscale Physics +1509.08477 Phenomenology +1509.08511 Theory +1509.08516 Optimization and Control +1509.08583 Materials Science +1509.08622 Phenomenology +1509.08819 Cosmology and Nongalactic Astrophysics +1509.08820 Mesoscale and Nanoscale Physics +1509.08865 Chemical Physics +1509.08867 +1509.08905 Superconductivity +1509.08908 Theory +1509.09091 Accelerator Physics +1510.00020 Strongly Correlated Electrons +1510.00021 Theory +1510.00035 Quantum Gases +1510.00118 +1510.00222 Phenomenology +1510.00317 Instrumentation and Detectors +1510.00372 Phenomenology +1510.00375 Phenomenology +1510.00455 Systems and Control +1510.00534 Statistical Mechanics +1510.00597 Statistical Mechanics +1510.00612 Mesoscale and Nanoscale Physics +1510.00663 +1510.00742 Phenomenology +1510.00765 Mesoscale and Nanoscale Physics +1510.00869 Physics and Society +1510.00991 Plasma Physics +1510.01001 Strongly Correlated Electrons +1510.01029 Plasma Physics +1510.01078 Medical Physics +1510.01147 Probability +1510.01153 Optimization and Control +1510.01185 Materials Science +1510.01190 +1510.01217 Mesoscale and Nanoscale Physics +1510.01242 Theory +1510.01402 Accelerator Physics +1510.01555 Atomic Physics +1510.01737 Cosmology and Nongalactic Astrophysics +1510.01754 Mesoscale and Nanoscale Physics +1510.02005 Theory +1510.02142 Theory +1510.02185 Mesoscale and Nanoscale Physics +1510.02200 Theory +1510.02209 Phenomenology +1510.02400 Materials Science +1510.02494 Theory +1510.02517 Phenomenology +1510.02600 +1510.02671 Strongly Correlated Electrons +1510.02699 Complex Variables +1510.02737 +1510.02908 Plasma Physics +1510.02916 +1510.03019 Data Structures and Algorithms +1510.03230 +1510.03281 Theory +1510.03300 Medical Physics +1510.03306 Materials Science +1510.03315 Mesoscale and Nanoscale Physics +1510.03458 Strongly Correlated Electrons +1510.03498 Phenomenology +1510.03512 Soft Condensed Matter +1510.03660 Analysis of PDEs +1510.03682 Astrophysics of Galaxies +1510.03690 Statistical Mechanics +1510.03742 +1510.03754 Materials Science +1510.03784 Theory +1510.03825 Disordered Systems and Neural Networks +1510.03837 Theory +1510.03851 Quantum Gases +1510.03861 Phenomenology +1510.04186 +1510.04307 Astrophysics of Galaxies +1510.04329 Atomic Physics +1510.04414 Phenomenology +1510.04432 +1510.04505 Plasma Physics +1510.04552 Phenomenology +1510.04659 Phenomenology +1510.04871 Phenomenology +1510.04893 Statistical Mechanics +1510.04896 +1510.04902 Strongly Correlated Electrons +1510.05164 +1510.05316 Mesoscale and Nanoscale Physics +1510.05378 Phenomenology +1510.05415 Instrumentation and Detectors +1510.05425 Theory +1510.05439 Numerical Analysis +1510.05478 Astrophysics of Galaxies +1510.05550 +1510.05644 Astrophysics of Galaxies +1510.05758 Earth and Planetary Astrophysics +1510.05764 Plasma Physics +1510.05805 Mesoscale and Nanoscale Physics +1510.05853 Mesoscale and Nanoscale Physics +1510.05903 Mesoscale and Nanoscale Physics +1510.05921 High Energy Astrophysical Phenomena +1510.05941 Populations and Evolution +1510.05969 Theory +1510.05987 Combinatorics +1510.06012 +1510.06029 Solar and Stellar Astrophysics +1510.06098 +1510.06099 +1510.06109 Mesoscale and Nanoscale Physics +1510.06162 +1510.06252 Chemical Physics +1510.06306 +1510.06361 Phenomenology +1510.06364 Theory +1510.06371 High Energy Astrophysical Phenomena +1510.06400 Astrophysics of Galaxies +1510.06447 +1510.06466 +1510.06505 Fluid Dynamics +1510.06544 Astrophysics of Galaxies +1510.06657 Phenomenology +1510.06687 Mesoscale and Nanoscale Physics +1510.06733 Atomic Physics +1510.06810 Astrophysics of Galaxies +1510.06876 Rings and Algebras +1510.06962 High Energy Astrophysical Phenomena +1510.07012 Lattice +1510.07038 Theory +1510.07051 +1510.07077 Theory +1510.07108 Differential Geometry +1510.07257 Biological Physics +1510.07261 +1510.07282 Data Analysis, Statistics and Probability +1510.07374 Plasma Physics +1510.07527 Phenomenology +1510.07690 Astrophysics of Galaxies +1510.07716 +1510.07809 Solar and Stellar Astrophysics +1510.07819 Social and Information Networks +1510.07855 Atomic Physics +1510.07859 Theory +1510.07868 Statistical Mechanics +1510.07876 Statistical Mechanics +1510.07877 +1510.07935 Theory +1510.08063 Phenomenology +1510.08071 Phenomenology +1510.08083 Phenomenology +1510.08095 +1510.08106 Physics and Society +1510.08164 Plasma Physics +1510.08206 Instrumentation and Detectors +1510.08287 Statistical Mechanics +1510.08310 Astrophysics of Galaxies +1510.08351 Atomic Physics +1510.08376 +1510.08593 Strongly Correlated Electrons +1510.08728 Statistical Mechanics +1510.08742 Phenomenology +1510.08763 Phenomenology +1510.08783 Mesoscale and Nanoscale Physics +1510.08784 Theory +1510.08822 Exactly Solvable and Integrable Systems +1510.08835 Theory +1510.08844 Cosmology and Nongalactic Astrophysics +1510.09003 Strongly Correlated Electrons +1510.09024 Fluid Dynamics +1510.09027 +1510.09052 Fluid Dynamics +1510.09080 Optics +1510.09089 Theory +1510.09183 Quantum Gases +1510.09194 Instrumentation and Methods for Astrophysics +1510.09196 Phenomenology +1511.00003 Probability +1511.00036 Mesoscale and Nanoscale Physics +1511.00239 Accelerator Physics +1511.00260 Instrumentation and Detectors +1511.00338 Phenomenology +1511.00404 Theory +1511.00441 Physics and Society +1511.00495 +1511.00532 Cosmology and Nongalactic Astrophysics +1511.00595 Quantum Gases +1511.00610 Materials Science +1511.00616 Theory +1511.00675 Computational Physics +1511.00786 Statistical Mechanics +1511.00847 Phenomenology +1511.00851 Mesoscale and Nanoscale Physics +1511.01011 Phenomenology +1511.01014 Superconductivity +1511.01072 Chemical Physics +1511.01091 Theory +1511.01101 Phenomenology +1511.01229 High Energy Astrophysical Phenomena +1511.01278 +1511.01309 +1511.01330 Theory +1511.01347 Populations and Evolution +1511.01377 +1511.01422 +1511.01454 Cosmology and Nongalactic Astrophysics +1511.01473 Data Structures and Algorithms +1511.01548 +1511.01599 Plasma Physics +1511.01624 Quantum Gases +1511.01711 Soft Condensed Matter +1511.01743 Plasma Physics +1511.01811 Phenomenology +1511.01875 Theory +1511.01908 Theory +1511.01915 High Energy Astrophysical Phenomena +1511.01927 Fluid Dynamics +1511.01950 Lattice +1511.02042 Statistical Mechanics +1511.02077 High Energy Astrophysical Phenomena +1511.02155 Computational Physics +1511.02161 Optics +1511.02168 Physics and Society +1511.02193 Mesoscale and Nanoscale Physics +1511.02213 Strongly Correlated Electrons +1511.02231 Cosmology and Nongalactic Astrophysics +1511.02313 Solar and Stellar Astrophysics +1511.02317 +1511.02359 Plasma Physics +1511.02502 Experiment +1511.02524 Phenomenology +1511.02697 Operator Algebras +1511.02758 Instrumentation and Methods for Astrophysics +1511.02880 Theory +1511.02914 Mesoscale and Nanoscale Physics +1511.02944 Superconductivity +1511.03002 Mesoscale and Nanoscale Physics +1511.03024 Theory +1511.03107 Theory +1511.03113 Chaotic Dynamics +1511.03142 Theory +1511.03154 Robotics +1511.03175 Accelerator Physics +1511.03191 +1511.03207 Phenomenology +1511.03218 Cosmology and Nongalactic Astrophysics +1511.03278 Phenomenology +1511.03312 Materials Science +1511.03400 Optics +1511.03433 Materials Science +1511.03535 Statistical Mechanics +1511.03541 Instrumentation and Detectors +1511.03553 +1511.03700 Metric Geometry +1511.03709 Cellular Automata and Lattice Gases +1511.03752 Algebraic Geometry +1511.03805 Phenomenology +1511.03957 Theory +1511.04017 Theory +1511.04021 Theory +1511.04031 Computer Vision and Pattern Recognition +1511.04050 Phenomenology +1511.04084 Computational Physics +1511.04146 Superconductivity +1511.04231 Instrumentation and Detectors +1511.04319 Phenomenology +1511.04321 Statistical Mechanics +1511.04425 +1511.04446 Astrophysics of Galaxies +1511.04464 Accelerator Physics +1511.04474 Phenomenology +1511.04501 Instrumentation and Detectors +1511.04533 +1511.04539 Statistical Mechanics +1511.04563 Theory +1511.04596 Statistical Mechanics +1511.04609 Statistical Mechanics +1511.04620 Analysis of PDEs +1511.04630 Mesoscale and Nanoscale Physics +1511.04702 Mesoscale and Nanoscale Physics +1511.04736 Superconductivity +1511.04746 Soft Condensed Matter +1511.04825 Soft Condensed Matter +1511.04859 +1511.05016 Theory +1511.05035 Phenomenology +1511.05146 Cosmology and Nongalactic Astrophysics +1511.05155 Astrophysics of Galaxies +1511.05157 Strongly Correlated Electrons +1511.05162 Phenomenology +1511.05237 Differential Geometry +1511.05258 Strongly Correlated Electrons +1511.05387 Statistical Mechanics +1511.05420 +1511.05436 Instrumentation and Detectors +1511.05452 Theory +1511.05459 Statistical Mechanics +1511.05485 Fluid Dynamics +1511.05555 Theory +1511.05603 Soft Condensed Matter +1511.05655 Phenomenology +1511.05687 Astrophysics of Galaxies +1511.05752 Chemical Physics +1511.05881 +1511.05940 Theory +1511.05989 Phenomenology +1511.06011 Instrumentation and Detectors +1511.06080 Solar and Stellar Astrophysics +1511.06089 +1511.06126 Lattice +1511.06164 Geophysics +1511.06223 Instrumentation and Detectors +1511.06283 +1511.06357 Phenomenology +1511.06363 Emerging Technologies +1511.06532 +1511.06590 Soft Condensed Matter +1511.06743 Plasma Physics +1511.06784 Phenomenology +1511.06836 Mesoscale and Nanoscale Physics +1511.06879 Statistical Mechanics +1511.06976 Dynamical Systems +1511.07016 Optics +1511.07132 +1511.07141 +1511.07155 +1511.07205 +1511.07371 +1511.07382 Lattice +1511.07434 Phenomenology +1511.07444 Instrumentation and Methods for Astrophysics +1511.07507 Mesoscale and Nanoscale Physics +1511.07565 Atomic Physics +1511.07703 Probability +1511.07805 Theory +1511.07876 Astrophysics of Galaxies +1511.07886 Phenomenology +1511.08000 Numerical Analysis +1511.08026 Phenomenology +1511.08168 High Energy Astrophysical Phenomena +1511.08185 Phenomenology +1511.08439 Phenomenology +1511.08444 +1511.08521 Statistical Mechanics +1511.08530 +1511.08623 Materials Science +1511.08636 Mesoscale and Nanoscale Physics +1511.08701 Mesoscale and Nanoscale Physics +1511.08702 Mesoscale and Nanoscale Physics +1511.08712 Physics and Society +1511.08809 Astrophysics of Galaxies +1511.08817 Phenomenology +1511.08821 Earth and Planetary Astrophysics +1511.08906 +1511.09036 Phenomenology +1511.09052 Disordered Systems and Neural Networks +1511.09093 Experiment +1511.09129 Classical Analysis and ODEs +1511.09184 +1511.09240 +1511.09255 Soft Condensed Matter +1511.09256 Phenomenology +1511.09334 Phenomenology +1511.09342 Materials Science +1511.09353 Phenomenology +1511.09393 Theory +1512.00019 Theory +1512.00161 Theory +1512.00206 Biological Physics +1512.00208 Theory +1512.00222 Theory +1512.00396 Phenomenology +1512.00437 Phenomenology +1512.00456 Cosmology and Nongalactic Astrophysics +1512.00491 Differential Geometry +1512.00546 Theory +1512.00557 Mesoscale and Nanoscale Physics +1512.00693 Strongly Correlated Electrons +1512.00733 High Energy Astrophysical Phenomena +1512.00791 Theory +1512.00803 Theory +1512.00841 Theory +1512.00862 Quantum Gases +1512.00869 Phenomenology +1512.00891 +1512.01004 Mesoscale and Nanoscale Physics +1512.01005 Biological Physics +1512.01140 Statistical Mechanics +1512.01165 Phenomenology +1512.01239 High Energy Astrophysical Phenomena +1512.01276 Phenomenology +1512.01292 Biological Physics +1512.01296 Theory +1512.01300 Superconductivity +1512.01327 Phenomenology +1512.01340 Strongly Correlated Electrons +1512.01343 Plasma Physics +1512.01471 Theory +1512.01554 Theory +1512.01559 High Energy Astrophysical Phenomena +1512.01560 Phenomenology +1512.01566 +1512.01576 Theory +1512.01620 Astrophysics of Galaxies +1512.01654 +1512.01756 Numerical Analysis +1512.01860 Materials Science +1512.01881 Computer Vision and Pattern Recognition +1512.01952 Logic in Computer Science +1512.01954 Mesoscale and Nanoscale Physics +1512.01963 Phenomenology +1512.01986 Probability +1512.02045 Phenomenology +1512.02058 Soft Condensed Matter +1512.02073 Physics and Society +1512.02158 Theory +1512.02163 Theory +1512.02184 Phenomenology +1512.02186 Statistical Mechanics +1512.02191 Theory +1512.02201 Phenomenology +1512.02222 Phenomenology +1512.02229 Phenomenology +1512.02235 High Energy Astrophysical Phenomena +1512.02248 +1512.02250 Theory +1512.02392 +1512.02412 Mesoscale and Nanoscale Physics +1512.02426 +1512.02470 Pattern Formation and Solitons +1512.02532 Theory +1512.02553 Mesoscale and Nanoscale Physics +1512.02611 Theory +1512.02705 Phenomenology +1512.02731 High Energy Astrophysical Phenomena +1512.02738 High Energy Astrophysical Phenomena +1512.02811 Adaptation and Self-Organizing Systems +1512.02854 Materials Science +1512.02858 Theory +1512.02869 Phenomenology +1512.02905 Chemical Physics +1512.02934 Theory +1512.03123 Phenomenology +1512.03135 Operator Algebras +1512.03147 +1512.03150 +1512.03239 +1512.03422 Earth and Planetary Astrophysics +1512.03439 Astrophysics of Galaxies +1512.03603 Phenomenology +1512.03638 Phenomenology +1512.03651 Theory +1512.03653 Mesoscale and Nanoscale Physics +1512.03692 Solar and Stellar Astrophysics +1512.03750 Theory +1512.03762 Solar and Stellar Astrophysics +1512.03765 +1512.03854 Astrophysics of Galaxies +1512.03906 Statistical Mechanics +1512.03962 Phenomenology +1512.03977 Optics +1512.04048 Phenomenology +1512.04072 +1512.04074 Superconductivity +1512.04095 +1512.04189 Cosmology and Nongalactic Astrophysics +1512.04259 Phenomenology +1512.04275 Adaptation and Self-Organizing Systems +1512.04281 Phenomenology +1512.04294 Other Condensed Matter +1512.04399 Strongly Correlated Electrons +1512.04449 Solar and Stellar Astrophysics +1512.04459 Phenomenology +1512.04535 Cosmology and Nongalactic Astrophysics +1512.04666 Differential Geometry +1512.04693 +1512.04747 Other Condensed Matter +1512.04793 Mesoscale and Nanoscale Physics +1512.04865 High Energy Astrophysical Phenomena +1512.04897 Cosmology and Nongalactic Astrophysics +1512.04913 Phenomenology +1512.04929 Phenomenology +1512.04934 Superconductivity +1512.04954 Theory +1512.05061 Phenomenology +1512.05155 Theory +1512.05178 Probability +1512.05218 Chemical Physics +1512.05265 Phenomenology +1512.05275 Statistical Mechanics +1512.05291 Experiment +1512.05320 Instrumentation and Detectors +1512.05326 Phenomenology +1512.05384 Rings and Algebras +1512.05400 Experiment +1512.05472 Theory +1512.05525 Phenomenology +1512.05576 Soft Condensed Matter +1512.05605 +1512.05679 Astrophysics of Galaxies +1512.05724 Cosmology and Nongalactic Astrophysics +1512.05733 Fluid Dynamics +1512.05734 Cosmology and Nongalactic Astrophysics +1512.05790 Materials Science +1512.05833 Theory +1512.05837 Theory +1512.05861 Phenomenology +1512.05896 Biological Physics +1512.05903 +1512.06094 Solar and Stellar Astrophysics +1512.06110 Computation and Language +1512.06256 Superconductivity +1512.06280 Theory +1512.06316 Atomic Physics +1512.06420 Theory +1512.06426 Phenomenology +1512.06504 +1512.06523 Theory +1512.06550 Strongly Correlated Electrons +1512.06647 Phenomenology +1512.06685 Earth and Planetary Astrophysics +1512.06686 Theory +1512.06712 +1512.06795 Phenomenology +1512.06926 Theory +1512.07055 Atmospheric and Oceanic Physics +1512.07066 Theory +1512.07176 Quantum Gases +1512.07184 Theory +1512.07212 Phenomenology +1512.07225 Phenomenology +1512.07233 Phenomenology +1512.07236 +1512.07270 Optics +1512.07378 Phenomenology +1512.07482 Phenomenology +1512.07485 Quantum Gases +1512.07531 Phenomenology +1512.07600 Theory +1512.07667 Astrophysics of Galaxies +1512.07671 High Energy Astrophysical Phenomena +1512.07841 +1512.07844 Solar and Stellar Astrophysics +1512.07850 Theory +1512.07883 Theory +1512.07904 Phenomenology +1512.07949 Solar and Stellar Astrophysics +1512.07961 Phenomenology +1512.07999 Phenomenology +1512.08036 Superconductivity +1512.08197 Experiment +1512.08242 Lattice +1512.08289 High Energy Astrophysical Phenomena +1512.08302 High Energy Astrophysical Phenomena +1512.08439 Theory +1512.08447 +1512.08574 Theory +1512.08614 Astrophysics of Galaxies +1512.08718 General Mathematics +1512.08789 +1512.08801 Astrophysics of Galaxies +1512.08817 Mesoscale and Nanoscale Physics +1512.08896 Theory +1512.09026 Phenomenology +1512.09113 Phenomenology +1512.09135 Phenomenology +1512.09208 Astrophysics of Galaxies +1512.09306 Solar and Stellar Astrophysics +1512.09332 Materials Science +1601.00070 Astrophysics of Galaxies +1601.00138 Phenomenology +1601.00192 Phenomenology +1601.00209 Optics +1601.00213 Mesoscale and Nanoscale Physics +1601.00420 Materials Science +1601.00427 Quantum Gases +1601.00446 Quantum Gases +1601.00455 Emerging Technologies +1601.00459 Instrumentation and Detectors +1601.00631 +1601.00648 Strongly Correlated Electrons +1601.00819 Instrumentation and Detectors +1601.00862 Phenomenology +1601.00903 General Finance +1601.00933 Materials Science +1601.01002 Plasma Physics +1601.01107 Experiment +1601.01110 Mesoscale and Nanoscale Physics +1601.01169 Strongly Correlated Electrons +1601.01175 Lattice +1601.01300 Earth and Planetary Astrophysics +1601.01362 Quantum Gases +1601.01381 Phenomenology +1601.01389 Computational Physics +1601.01519 Quantum Gases +1601.01572 Solar and Stellar Astrophysics +1601.01573 Lattice +1601.01578 Lattice +1601.01651 Instrumentation and Detectors +1601.01657 Mesoscale and Nanoscale Physics +1601.01677 Theory +1601.01690 Astrophysics of Galaxies +1601.01772 Soft Condensed Matter +1601.01790 +1601.01839 Optics +1601.01874 Astrophysics of Galaxies +1601.01906 Theory +1601.01914 Numerical Analysis +1601.01953 Materials Science +1601.01999 +1601.02004 Phenomenology +1601.02017 Astrophysics of Galaxies +1601.02029 +1601.02055 High Energy Astrophysical Phenomena +1601.02091 Astrophysics of Galaxies +1601.02095 Soft Condensed Matter +1601.02179 Soft Condensed Matter +1601.02301 Numerical Analysis +1601.02396 Instrumentation and Methods for Astrophysics +1601.02409 +1601.02444 High Energy Astrophysical Phenomena +1601.02494 Phenomenology +1601.02554 Quantum Gases +1601.02615 High Energy Astrophysical Phenomena +1601.02621 Astrophysics of Galaxies +1601.02661 High Energy Astrophysical Phenomena +1601.02675 Cosmology and Nongalactic Astrophysics +1601.02718 Solar and Stellar Astrophysics +1601.02735 Materials Science +1601.02784 Instrumentation and Detectors +1601.02795 Atomic Physics +1601.02811 +1601.02824 Theory +1601.02860 High Energy Astrophysical Phenomena +1601.02870 Disordered Systems and Neural Networks +1601.02962 Optics +1601.03029 Theory +1601.03035 Astrophysics of Galaxies +1601.03156 Statistical Mechanics +1601.03160 +1601.03215 Theory +1601.03266 Analysis of PDEs +1601.03305 Solar and Stellar Astrophysics +1601.03319 Earth and Planetary Astrophysics +1601.03372 Astrophysics of Galaxies +1601.03385 Solar and Stellar Astrophysics +1601.03396 Solar and Stellar Astrophysics +1601.03427 Astrophysics of Galaxies +1601.03469 Phenomenology +1601.03480 Mesoscale and Nanoscale Physics +1601.03484 Phenomenology +1601.03490 Materials Science +1601.03495 Strongly Correlated Electrons +1601.03538 Statistical Mechanics +1601.03551 Astrophysics of Galaxies +1601.03606 Atomic and Molecular Clusters +1601.03662 Earth and Planetary Astrophysics +1601.03718 Solar and Stellar Astrophysics +1601.03734 +1601.03801 Fluid Dynamics +1601.03802 Materials Science +1601.03860 Mesoscale and Nanoscale Physics +1601.03903 High Energy Astrophysical Phenomena +1601.03969 Instrumentation and Methods for Astrophysics +1601.03972 Phenomenology +1601.03973 Phenomenology +1601.04116 Mesoscale and Nanoscale Physics +1601.04154 Phenomenology +1601.04209 +1601.04214 Materials Science +1601.04225 Solar and Stellar Astrophysics +1601.04361 Astrophysics of Galaxies +1601.04367 Experiment +1601.04439 Astrophysics of Galaxies +1601.04537 Phenomenology +1601.04611 Optics +1601.04658 Theory +1601.04712 Astrophysics of Galaxies +1601.04717 Solar and Stellar Astrophysics +1601.04776 Statistical Mechanics +1601.04777 Superconductivity +1601.04783 Astrophysics of Galaxies +1601.04792 Solar and Stellar Astrophysics +1601.04823 Astrophysics of Galaxies +1601.04833 Solar and Stellar Astrophysics +1601.04839 Phenomenology +1601.04874 Solar and Stellar Astrophysics +1601.04894 High Energy Astrophysical Phenomena +1601.04921 Other Condensed Matter +1601.04976 Earth and Planetary Astrophysics +1601.05056 Astrophysics of Galaxies +1601.05172 +1601.05229 Solar and Stellar Astrophysics +1601.05240 Plasma Physics +1601.05282 Phenomenology +1601.05293 Superconductivity +1601.05302 Earth and Planetary Astrophysics +1601.05385 Astrophysics of Galaxies +1601.05422 Instrumentation and Methods for Astrophysics +1601.05473 Astrophysics of Galaxies +1601.05475 Theory +1601.05517 Mesoscale and Nanoscale Physics +1601.05518 +1601.05544 Mesoscale and Nanoscale Physics +1601.05606 Earth and Planetary Astrophysics +1601.05659 Astrophysics of Galaxies +1601.05671 Soft Condensed Matter +1601.05672 Earth and Planetary Astrophysics +1601.05674 Geophysics +1601.05787 Plasma Physics +1601.05845 Plasma Physics +1601.05855 Materials Science +1601.05947 Astrophysics of Galaxies +1601.05953 Astrophysics of Galaxies +1601.05958 High Energy Astrophysical Phenomena +1601.05963 Quantum Gases +1601.05995 Phenomenology +1601.06092 +1601.06194 Instrumentation and Methods for Astrophysics +1601.06385 +1601.06397 +1601.06401 Materials Science +1601.06441 Solar and Stellar Astrophysics +1601.06540 Soft Condensed Matter +1601.06567 Phenomenology +1601.06577 Theory +1601.06617 +1601.06673 Optics +1601.06754 Astrophysics of Galaxies +1601.06769 Astrophysics of Galaxies +1601.06848 Operator Algebras +1601.06874 Astrophysics of Galaxies +1601.06875 Astrophysics of Galaxies +1601.06897 Cosmology and Nongalactic Astrophysics +1601.06910 Theory +1601.06912 Cosmology and Nongalactic Astrophysics +1601.06937 +1601.06940 Subcellular Processes +1601.06954 Superconductivity +1601.06973 Differential Geometry +1601.07063 Quantitative Methods +1601.07105 Solar and Stellar Astrophysics +1601.07120 +1601.07165 Solar and Stellar Astrophysics +1601.07180 High Energy Astrophysical Phenomena +1601.07274 Solar and Stellar Astrophysics +1601.07351 Materials Science +1601.07360 Strongly Correlated Electrons +1601.07422 Atomic Physics +1601.07429 Mesoscale and Nanoscale Physics +1601.07464 Phenomenology +1601.07537 Astrophysics of Galaxies +1601.07548 Instrumentation and Methods for Astrophysics +1601.07560 Materials Science +1601.07573 Materials Science +1601.07689 Mesoscale and Nanoscale Physics +1601.07694 Cosmology and Nongalactic Astrophysics +1601.07706 Soft Condensed Matter +1601.07773 Mesoscale and Nanoscale Physics +1601.07774 Phenomenology +1601.07819 Instrumentation and Methods for Astrophysics +1601.07889 Quantum Gases +1601.07903 High Energy Astrophysical Phenomena +1601.07971 Optics +1601.07990 +1601.08060 Mesoscale and Nanoscale Physics +1601.08066 +1601.08089 Solar and Stellar Astrophysics +1601.08131 +1601.08134 Adaptation and Self-Organizing Systems +1602.00028 Materials Science +1602.00062 Phenomenology +1602.00102 Materials Science +1602.00288 Phenomenology +1602.00364 Instrumentation and Detectors +1602.00385 High Energy Astrophysical Phenomena +1602.00388 +1602.00463 High Energy Astrophysical Phenomena +1602.00538 Astrophysics of Galaxies +1602.00633 High Energy Astrophysical Phenomena +1602.00663 Quantum Gases +1602.00702 High Energy Astrophysical Phenomena +1602.00706 Phenomenology +1602.00737 Astrophysics of Galaxies +1602.00740 Earth and Planetary Astrophysics +1602.00787 Solar and Stellar Astrophysics +1602.00817 Adaptation and Self-Organizing Systems +1602.00892 Astrophysics of Galaxies +1602.01090 Astrophysics of Galaxies +1602.01095 Astrophysics of Galaxies +1602.01199 Astrophysics of Galaxies +1602.01219 Solar and Stellar Astrophysics +1602.01229 High Energy Astrophysical Phenomena +1602.01320 Solar and Stellar Astrophysics +1602.01338 Statistical Mechanics +1602.01349 Phenomenology +1602.01363 Quantum Gases +1602.01414 Atomic and Molecular Clusters +1602.01468 High Energy Astrophysical Phenomena +1602.01472 Solar and Stellar Astrophysics +1602.01485 +1602.01493 Earth and Planetary Astrophysics +1602.01589 Materials Science +1602.01669 Astrophysics of Galaxies +1602.01693 Statistical Mechanics +1602.01705 +1602.01744 Solar and Stellar Astrophysics +1602.01796 Materials Science +1602.01838 Astrophysics of Galaxies +1602.01851 Earth and Planetary Astrophysics +1602.01873 Astrophysics of Galaxies +1602.01877 Solar and Stellar Astrophysics +1602.01922 Astrophysics of Galaxies +1602.01965 Earth and Planetary Astrophysics +1602.01968 High Energy Astrophysical Phenomena +1602.02053 Fluid Dynamics +1602.02061 Fluid Dynamics +1602.02149 Astrophysics of Galaxies +1602.02153 Physics and Society +1602.02217 Solar and Stellar Astrophysics +1602.02231 Cosmology and Nongalactic Astrophysics +1602.02305 Statistical Mechanics +1602.02500 Astrophysics of Galaxies +1602.02528 Mesoscale and Nanoscale Physics +1602.02529 Astrophysics of Galaxies +1602.02559 High Energy Astrophysical Phenomena +1602.02564 Astrophysics of Galaxies +1602.02682 Mesoscale and Nanoscale Physics +1602.02709 Mesoscale and Nanoscale Physics +1602.02806 Solar and Stellar Astrophysics +1602.02832 Instrumentation and Methods for Astrophysics +1602.02833 +1602.02848 High Energy Astrophysical Phenomena +1602.02856 Earth and Planetary Astrophysics +1602.02918 High Energy Astrophysical Phenomena +1602.02971 Group Theory +1602.03022 Solar and Stellar Astrophysics +1602.03157 Solar and Stellar Astrophysics +1602.03180 Astrophysics of Galaxies +1602.03181 Astrophysics of Galaxies +1602.03272 Mesoscale and Nanoscale Physics +1602.03304 Instrumentation and Methods for Astrophysics +1602.03325 Solar and Stellar Astrophysics +1602.03422 Solar and Stellar Astrophysics +1602.03437 +1602.03440 Space Physics +1602.03461 Superconductivity +1602.03531 High Energy Astrophysical Phenomena +1602.03543 Chemical Physics +1602.03565 Phenomenology +1602.03624 Strongly Correlated Electrons +1602.03634 High Energy Astrophysical Phenomena +1602.03668 Astrophysics of Galaxies +1602.03714 Phenomenology +1602.03909 Astrophysics of Galaxies +1602.03917 High Energy Astrophysical Phenomena +1602.03939 Phenomenology +1602.04054 Materials Science +1602.04284 High Energy Astrophysical Phenomena +1602.04313 Mesoscale and Nanoscale Physics +1602.04413 +1602.04428 Earth and Planetary Astrophysics +1602.04512 Instrumentation and Methods for Astrophysics +1602.04525 +1602.04564 Superconductivity +1602.04640 Solar and Stellar Astrophysics +1602.04672 Astrophysics of Galaxies +1602.04682 Solar and Stellar Astrophysics +1602.04683 Earth and Planetary Astrophysics +1602.04940 Solar and Stellar Astrophysics +1602.05042 Solar and Stellar Astrophysics +1602.05060 Theory +1602.05064 High Energy Astrophysical Phenomena +1602.05098 Solar and Stellar Astrophysics +1602.05107 Accelerator Physics +1602.05114 Solar and Stellar Astrophysics +1602.05193 Solar and Stellar Astrophysics +1602.05221 Machine Learning +1602.05249 Instrumentation and Methods for Astrophysics +1602.05362 Astrophysics of Galaxies +1602.05363 Astrophysics of Galaxies +1602.05389 +1602.05458 Astrophysics of Galaxies +1602.05518 Materials Science +1602.05587 Astrophysics of Galaxies +1602.05666 +1602.05680 Superconductivity +1602.05692 Materials Science +1602.05711 Astrophysics of Galaxies +1602.05814 Phenomenology +1602.05824 +1602.05854 Materials Science +1602.06076 Astrophysics of Galaxies +1602.06116 Earth and Planetary Astrophysics +1602.06309 +1602.06412 Solar and Stellar Astrophysics +1602.06482 High Energy Astrophysical Phenomena +1602.06573 Earth and Planetary Astrophysics +1602.06639 Materials Science +1602.06668 Astrophysics of Galaxies +1602.06671 Solar and Stellar Astrophysics +1602.06684 Materials Science +1602.06758 +1602.06789 Statistical Mechanics +1602.06860 Superconductivity +1602.06983 Astrophysics of Galaxies +1602.07055 Superconductivity +1602.07078 Earth and Planetary Astrophysics +1602.07305 Astrophysics of Galaxies +1602.07306 Astrophysics of Galaxies +1602.07397 Solar and Stellar Astrophysics +1602.07454 Phenomenology +1602.07469 Chemical Physics +1602.07474 Physics and Society +1602.07528 Instrumentation and Detectors +1602.07664 High Energy Astrophysical Phenomena +1602.07785 Astrophysics of Galaxies +1602.07822 +1602.07832 Quantum Gases +1602.07870 Astrophysics of Galaxies +1602.07980 +1602.07984 Materials Science +1602.07986 Strongly Correlated Electrons +1602.08050 Cosmology and Nongalactic Astrophysics +1602.08054 Astrophysics of Galaxies +1602.08131 High Energy Astrophysical Phenomena +1602.08243 Mesoscale and Nanoscale Physics +1602.08470 Mesoscale and Nanoscale Physics +1602.08511 High Energy Astrophysical Phenomena +1602.08551 High Energy Astrophysical Phenomena +1602.08674 Astrophysics of Galaxies +1602.08932 Cosmology and Nongalactic Astrophysics +1602.08969 High Energy Astrophysical Phenomena +1602.09014 High Energy Astrophysical Phenomena +1603.00029 Earth and Planetary Astrophysics +1603.00032 Astrophysics of Galaxies +1603.00044 Astrophysics of Galaxies +1603.00086 Earth and Planetary Astrophysics +1603.00142 Solar and Stellar Astrophysics +1603.00332 Solar and Stellar Astrophysics +1603.00335 High Energy Astrophysical Phenomena +1603.00344 Astrophysics of Galaxies +1603.00388 High Energy Astrophysical Phenomena +1603.00414 Earth and Planetary Astrophysics +1603.00439 Astrophysics of Galaxies +1603.00445 Plasma Physics +1603.00452 General Topology +1603.00457 Solar and Stellar Astrophysics +1603.00458 High Energy Astrophysical Phenomena +1603.00460 Astrophysics of Galaxies +1603.00462 Astrophysics of Galaxies +1603.00468 Astrophysics of Galaxies +1603.00471 Solar and Stellar Astrophysics +1603.00477 Astrophysics of Galaxies +1603.00487 Earth and Planetary Astrophysics +1603.00488 Astrophysics of Galaxies +1603.00528 Astrophysics of Galaxies +1603.00552 High Energy Astrophysical Phenomena +1603.00625 Astrophysics of Galaxies +1603.00653 Earth and Planetary Astrophysics +1603.00659 Astrophysics of Galaxies +1603.00729 Instrumentation and Methods for Astrophysics +1603.00818 Earth and Planetary Astrophysics +1603.00824 High Energy Astrophysical Phenomena +1603.00878 Astrophysics of Galaxies +1603.00881 Solar and Stellar Astrophysics +1603.00883 High Energy Astrophysical Phenomena +1603.00900 High Energy Astrophysical Phenomena +1603.00917 Soft Condensed Matter +1603.01017 Solar and Stellar Astrophysics +1603.01097 Astrophysics of Galaxies +1603.01158 Instrumentation and Methods for Astrophysics +1603.01199 High Energy Astrophysical Phenomena +1603.01201 Phenomenology +1603.01229 Earth and Planetary Astrophysics +1603.01264 High Energy Astrophysical Phenomena +1603.01265 Astrophysics of Galaxies +1603.01271 High Energy Astrophysical Phenomena +1603.01309 Solar and Stellar Astrophysics +1603.01348 High Energy Astrophysical Phenomena +1603.01373 Mesoscale and Nanoscale Physics +1603.01441 Solar and Stellar Astrophysics +1603.01505 High Energy Astrophysical Phenomena +1603.01534 High Energy Astrophysical Phenomena +1603.01543 High Energy Astrophysical Phenomena +1603.01548 Earth and Planetary Astrophysics +1603.01549 Phenomenology +1603.01749 Soft Condensed Matter +1603.01906 Optics +1603.01941 Mesoscale and Nanoscale Physics +1603.01998 Materials Science +1603.02012 Solar and Stellar Astrophysics +1603.02054 Mesoscale and Nanoscale Physics +1603.02358 High Energy Astrophysical Phenomena +1603.02418 Astrophysics of Galaxies +1603.02423 Solar and Stellar Astrophysics +1603.02507 Quantum Gases +1603.02544 Earth and Planetary Astrophysics +1603.02552 Solar and Stellar Astrophysics +1603.02582 Astrophysics of Galaxies +1603.02587 Earth and Planetary Astrophysics +1603.02622 +1603.02634 High Energy Astrophysical Phenomena +1603.02685 Astrophysics of Galaxies +1603.02688 Astrophysics of Galaxies +1603.02786 Astrophysics of Galaxies +1603.02811 Other Condensed Matter +1603.02818 Astrophysics of Galaxies +1603.02821 Mesoscale and Nanoscale Physics +1603.02908 Instrumentation and Methods for Astrophysics +1603.02919 Quantum Gases +1603.02970 Astrophysics of Galaxies +1603.02973 Astrophysics of Galaxies +1603.03021 +1603.03094 Astrophysics of Galaxies +1603.03135 Earth and Planetary Astrophysics +1603.03362 Probability +1603.03380 +1603.03424 Earth and Planetary Astrophysics +1603.03434 High Energy Astrophysical Phenomena +1603.03449 Methodology +1603.03450 Methodology +1603.03493 Solar and Stellar Astrophysics +1603.03500 Solar and Stellar Astrophysics +1603.03524 Astrophysics of Galaxies +1603.03539 Astrophysics of Galaxies +1603.03774 Astrophysics of Galaxies +1603.03776 Solar and Stellar Astrophysics +1603.03785 Strongly Correlated Electrons +1603.03922 Medical Physics +1603.03937 Solar and Stellar Astrophysics +1603.04011 Solar and Stellar Astrophysics +1603.04127 +1603.04171 High Energy Astrophysical Phenomena +1603.04227 Solar and Stellar Astrophysics +1603.04235 Astrophysics of Galaxies +1603.04324 Representation Theory +1603.04461 High Energy Astrophysical Phenomena +1603.04474 Astrophysics of Galaxies +1603.04544 Astrophysics of Galaxies +1603.04602 Astrophysics of Galaxies +1603.04656 Astrophysics of Galaxies +1603.04707 Optimization and Control +1603.04708 Physics and Society +1603.04749 Solar and Stellar Astrophysics +1603.04755 Solar and Stellar Astrophysics +1603.04803 Methodology +1603.04815 Optics +1603.05080 +1603.05287 Astrophysics of Galaxies +1603.05510 Classical Analysis and ODEs +1603.05690 Cosmology and Nongalactic Astrophysics +1603.05843 Social and Information Networks +1603.05989 Soft Condensed Matter +1603.06169 Computer Vision and Pattern Recognition +1603.06375 Phenomenology +1603.06555 Mesoscale and Nanoscale Physics +1603.06563 Cosmology and Nongalactic Astrophysics +1603.06569 Functional Analysis +1603.06573 Phenomenology +1603.06597 Cryptography and Security +1603.06600 Analysis of PDEs +1603.06605 Chemical Physics +1603.06617 Analysis of PDEs +1603.06620 +1603.06621 Logic +1603.06622 Differential Geometry +1603.06624 Learning +1603.06625 Combinatorics +1603.06627 Systems and Control +1603.06630 Number Theory +1603.06632 Fluid Dynamics +1603.06633 +1603.06635 Cryptography and Security +1603.06639 Commutative Algebra +1603.06640 Materials Science +1603.06645 Earth and Planetary Astrophysics +1603.06647 Physics Education +1603.06649 Applications +1603.06653 Learning +1603.06655 Computer Vision and Pattern Recognition +1603.06656 History and Overview +1603.06657 Classical Analysis and ODEs +1603.06658 Numerical Analysis +1603.06663 Methodology +1603.06665 Neural and Evolutionary Computing +1603.06667 Solar and Stellar Astrophysics +1603.06669 Computer Vision and Pattern Recognition +1603.06673 Solar and Stellar Astrophysics +1603.06674 Human-Computer Interaction +1603.06675 Cryptography and Security +1603.06677 Computation and Language +1603.06678 Computer Vision and Pattern Recognition +1603.06680 Computer Vision and Pattern Recognition +1603.06683 Algebraic Geometry +1603.06685 +1603.06686 Dynamical Systems +1603.06688 Optimization and Control +1603.06691 Algebraic Geometry +1603.06692 Phenomenology +1603.06694 Probability +1603.06701 +1603.06702 Mesoscale and Nanoscale Physics +1603.06704 Solar and Stellar Astrophysics +1603.06705 Representation Theory +1603.06706 Algebraic Geometry +1603.06709 Classical Analysis and ODEs +1603.06710 +1603.06711 Experiment +1603.06713 Solar and Stellar Astrophysics +1603.06714 Combinatorics +1603.06716 Systems and Control +1603.06717 Algebraic Geometry +1603.06718 Analysis of PDEs +1603.06719 Networking and Internet Architecture +1603.06722 Combinatorics +1603.06723 Algebraic Topology +1603.06727 Statistics Theory +1603.06729 Databases +1603.06731 Algebraic Geometry +1603.06732 Databases +1603.06734 Adaptation and Self-Organizing Systems +1603.06736 Networking and Internet Architecture +1603.06739 Functional Analysis +1603.06740 K-Theory and Homology +1603.06742 Operator Algebras +1603.06747 Probability +1603.06750 Analysis of PDEs +1603.06751 Systems and Control +1603.06754 Information Theory +1603.06756 Systems and Control +1603.06759 Computer Vision and Pattern Recognition +1603.06762 Analysis of PDEs +1603.06763 Chaotic Dynamics +1603.06766 Materials Science +1603.06768 Chemical Physics +1603.06771 Number Theory +1603.06775 Probability +1603.06780 Social and Information Networks +1603.06781 Functional Analysis +1603.06782 Learning +1603.06783 Optics +1603.06785 Computation and Language +1603.06786 Statistics Theory +1603.06787 Fluid Dynamics +1603.06788 Neural and Evolutionary Computing +1603.06790 Neurons and Cognition +1603.06791 +1603.06797 Commutative Algebra +1603.06798 Information Theory +1603.06801 +1603.06802 Phenomenology +1603.06804 Group Theory +1603.06805 Trading and Market Microstructure +1603.06806 Statistics Theory +1603.06809 Distributed, Parallel, and Cluster Computing +1603.06813 Algebraic Geometry +1603.06818 Complex Variables +1603.06819 Analysis of PDEs +1603.06821 Graphics +1603.06824 Experiment +1603.06829 Computer Vision and Pattern Recognition +1603.06833 Complex Variables +1603.06837 Number Theory +1603.06838 Numerical Analysis +1603.06842 +1603.06843 Materials Science +1603.06848 Information Theory +1603.06849 Data Analysis, Statistics and Probability +1603.06852 Analysis of PDEs +1603.06853 Algebraic Geometry +1603.06856 Soft Condensed Matter +1603.06859 Neural and Evolutionary Computing +1603.06861 Machine Learning +1603.06867 +1603.06870 Computer Science and Game Theory +1603.06871 Combinatorics +1603.06872 Systems and Control +1603.06873 Materials Science +1603.06874 Number Theory +1603.06878 Social and Information Networks +1603.06879 Neurons and Cognition +1603.06881 Learning +1603.06886 Information Theory +1603.06889 High Energy Astrophysical Phenomena +1603.06892 Statistical Mechanics +1603.06894 Systems and Control +1603.06898 Statistics Theory +1603.06901 Soft Condensed Matter +1603.06904 Probability +1603.06905 Dynamical Systems +1603.06906 Statistical Mechanics +1603.06910 Information Theory +1603.06912 Numerical Analysis +1603.06913 Differential Geometry +1603.06915 Machine Learning +1603.06923 Statistics Theory +1603.06927 Other Computer Science +1603.06928 Information Theory +1603.06929 Atmospheric and Oceanic Physics +1603.06930 Differential Geometry +1603.06933 Soft Condensed Matter +1603.06934 Information Theory +astro-ph/0011558 +astro-ph/0011561 +astro-ph/0012037 +astro-ph/0012222 +astro-ph/0112131 +astro-ph/0311423 +astro-ph/0406489 +astro-ph/9801261 +astro-ph/9912064 +cond-mat/0009126 Superconductivity +cond-mat/0012245 Disordered Systems and Neural Networks +cond-mat/9707167 +cond-mat/9709294 Strongly Correlated Electrons +cond-mat/9709325 Superconductivity +cond-mat/9710181 Superconductivity +cond-mat/9712311 Superconductivity +cond-mat/9802109 Strongly Correlated Electrons +gr-qc/0012049 +gr-qc/9511001 +hep-th/9112012 Theory +nlin/0307004 Chaotic Dynamics +0908.2178 Number Theory +1004.1998 Numerical Analysis +1101.3905 Geometric Topology +1102.1848 Algebraic Geometry +1111.0931 Number Theory +1201.5090 Algebraic Geometry +1202.2994 Operator Algebras +1204.4754 Numerical Analysis +1206.0960 Other Condensed Matter +1207.1477 Symplectic Geometry +1207.1533 Classical Analysis and ODEs +1207.2984 Dynamical Systems +1207.3958 Geometric Topology +1207.4079 Data Structures and Algorithms +1209.0812 Representation Theory +1209.2160 Computation +1210.8357 General Physics +1211.3915 Methodology +1211.5191 Number Theory +1212.1389 Number Theory +1301.0772 Geophysics +1303.7462 Data Structures and Algorithms +1304.6738 Data Analysis, Statistics and Probability +1305.1183 Distributed, Parallel, and Cluster Computing +1307.2108 Group Theory +1307.2225 Computer Science and Game Theory +1307.8196 Symplectic Geometry +1308.0177 Metric Geometry +1308.2010 Algebraic Topology +1308.3113 Number Theory +1308.3188 Metric Geometry +1309.5277 Dynamical Systems +1309.6108 Statistics Theory +1309.7884 Differential Geometry +1310.6804 Algebraic Topology +1310.7823 Geometric Topology +1310.8537 Geometric Topology +1311.7167 Differential Geometry +1312.1367 +1401.0876 K-Theory and Homology +1401.1836 Geometric Topology +1401.4114 Soft Condensed Matter +1401.4759 Geometric Topology +1402.0801 Geometric Topology +1402.4253 Geometric Topology +1403.0518 Analysis of PDEs +1403.2963 Computation +1403.4376 Functional Analysis +1404.1417 Algebraic Topology +1404.6821 Combinatorics +1405.2899 +1405.3008 +1405.4778 Chaotic Dynamics +1405.6238 Algebraic Geometry +1405.6487 Geometric Topology +1406.3272 Algebraic Topology +1407.0279 Number Theory +1407.0967 Number Theory +1407.2975 Dynamical Systems +1407.3072 Probability +1407.3554 Geometric Topology +1408.2955 Logic in Computer Science +1409.1314 Combinatorics +1409.7120 Classical Analysis and ODEs +1409.7441 Statistics Theory +1409.7564 Algebraic Geometry +1410.1189 Operator Algebras +1410.3236 Algebraic Topology +1410.6199 Algebraic Topology +1410.6454 Geometric Topology +1410.6703 Algebraic Geometry +1410.8329 Algebraic Geometry +1410.8542 Dynamical Systems +1411.2293 Number Theory +1411.2525 Portfolio Management +1411.2950 +1411.6413 Geometric Topology +1411.7235 Atmospheric and Oceanic Physics +1412.2599 Differential Geometry +1412.3839 Probability +1501.00533 Probability +1501.00930 Algebraic Geometry +1501.01551 High Energy Astrophysical Phenomena +1501.03034 Disordered Systems and Neural Networks +1501.03234 Differential Geometry +1501.03492 Cosmology and Nongalactic Astrophysics +1501.05622 Theory +1501.07251 Spectral Theory +1502.00644 High Energy Astrophysical Phenomena +1502.01516 Operator Algebras +1502.02333 Quantum Gases +1502.02548 Superconductivity +1502.02753 Computational Geometry +1502.03067 Geophysics +1502.03104 High Energy Astrophysical Phenomena +1502.03532 Computer Vision and Pattern Recognition +1502.04702 Cosmology and Nongalactic Astrophysics +1502.05318 Theory +1502.06666 Instrumentation and Methods for Astrophysics +1502.07569 Phenomenology +1503.00319 Algebraic Geometry +1503.01423 Dynamical Systems +1503.03346 Statistical Mechanics +1503.05512 High Energy Astrophysical Phenomena +1503.05734 Probability +1503.05735 Probability +1503.05744 Dynamical Systems +1503.06616 Phenomenology +1503.06938 Phenomenology +1503.07858 +1503.08492 Dynamical Systems +1504.00160 Methodology +1504.00292 Strongly Correlated Electrons +1504.00355 Phenomenology +1504.01382 Phenomenology +1504.03860 Strongly Correlated Electrons +1504.04079 +1504.06327 Theory +1504.06644 Fluid Dynamics +1504.07053 Probability +1504.07534 High Energy Astrophysical Phenomena +1505.00943 +1505.01148 Mesoscale and Nanoscale Physics +1505.01519 Numerical Analysis +1505.01766 Operator Algebras +1505.01977 Materials Science +1505.06331 Theory +1505.06392 Instrumentation and Methods for Astrophysics +1505.07046 Computational Physics +1505.07150 +1506.00785 Information Theory +1506.00945 Algebraic Topology +1506.01451 Astrophysics of Galaxies +1506.01737 +1506.04056 +1506.04578 Statistical Mechanics +1506.04659 Theory +1506.05373 Group Theory +1506.05381 Theory +1506.06093 Quantum Algebra +1506.06179 Machine Learning +1506.06271 Information Theory +1506.07307 Theory +1506.08782 +1507.01772 Statistics Theory +1507.03092 Machine Learning +1507.04316 Algebraic Geometry +1507.05919 +1507.06386 +1507.07448 +1507.07579 Fluid Dynamics +1507.07729 Phenomenology +1507.07951 Computer Science and Game Theory +1507.08013 Experiment +1507.08723 Category Theory +1507.08798 +1508.00799 Instrumentation and Methods for Astrophysics +1508.00911 Phenomenology +1508.01095 Phenomenology +1508.01364 Materials Science +1508.04024 Physics and Society +1508.04506 Materials Science +1508.04521 Discrete Mathematics +1508.04666 Optics +1508.04796 Metric Geometry +1508.04836 Probability +1508.05533 +1508.05680 Statistics Theory +1508.05837 Risk Management +1508.06490 Phenomenology +1508.06624 +1508.06700 Numerical Analysis +1508.06777 Optimization and Control +1508.07308 Materials Science +1509.00978 Phenomenology +1509.01141 Probability +1509.01664 +1509.01956 +1509.02313 Superconductivity +1509.02605 Dynamical Systems +1509.02931 Phenomenology +1509.03201 Probability +1509.03512 Soft Condensed Matter +1509.03828 Pattern Formation and Solitons +1509.04749 Theory +1509.04766 Phenomenology +1509.04918 Probability +1509.05000 Differential Geometry +1509.05020 Phenomenology +1509.05509 Strongly Correlated Electrons +1509.05848 Geometric Topology +1509.06150 +1509.06276 General Topology +1509.06402 Logic +1509.06905 Lattice +1509.06930 Phenomenology +1509.07144 Astrophysics of Galaxies +1509.08064 Theory +1509.08271 Accelerator Physics +1509.08507 Lattice +1509.08910 Fluid Dynamics +1509.09098 Strongly Correlated Electrons +1509.09173 High Energy Astrophysical Phenomena +1510.00794 +1510.01445 Plasma Physics +1510.02129 Theory +1510.02235 Phenomenology +1510.02567 Phenomenology +1510.02900 Exactly Solvable and Integrable Systems +1510.03488 Theory +1510.04239 Phenomenology +1510.04281 Theory +1510.05139 Geometric Topology +1510.05482 Theory +1510.05948 Differential Geometry +1510.06139 Theory +1510.07055 Analysis of PDEs +1510.07064 Physics and Society +1510.07567 Instrumentation and Methods for Astrophysics +1510.07751 +1510.07753 +1510.07779 Cosmology and Nongalactic Astrophysics +1510.07852 Algebraic Geometry +1510.08145 Strongly Correlated Electrons +1510.08737 +1511.00512 +1511.01007 +1511.01606 Earth and Planetary Astrophysics +1511.01936 +1511.02140 Geophysics +1511.02346 Analysis of PDEs +1511.02585 Statistical Mechanics +1511.02756 Numerical Analysis +1511.03220 Phenomenology +1511.03227 +1511.03518 Information Retrieval +1511.04535 Phenomenology +1511.04949 Mesoscale and Nanoscale Physics +1511.05287 +1511.05314 +1511.05342 Theory +1511.05538 Materials Science +1511.05541 Logic +1511.05685 Strongly Correlated Electrons +1511.06129 Instrumentation and Detectors +1511.06574 Mesoscale and Nanoscale Physics +1511.06694 Theory +1511.06924 Phenomenology +1511.07104 +1511.07445 Strongly Correlated Electrons +1511.07802 Mesoscale and Nanoscale Physics +1511.08214 Theory +1511.08220 Theory +1511.08294 +1511.08308 Computation and Language +1511.08406 Theory +1511.08638 Probability +1511.08737 Theory +1511.09247 Phenomenology +1512.00029 Phenomenology +1512.00098 Phenomenology +1512.00166 +1512.00524 Cryptography and Security +1512.00631 Quantum Gases +1512.00794 +1512.01464 Adaptation and Self-Organizing Systems +1512.01644 Theory +1512.01692 Phenomenology +1512.01857 Phenomenology +1512.02333 High Energy Astrophysical Phenomena +1512.02604 Theory +1512.02915 Analysis of PDEs +1512.02928 Data Analysis, Statistics and Probability +1512.03056 Phenomenology +1512.03605 Experiment +1512.03640 Phenomenology +1512.03680 +1512.03682 Phenomenology +1512.03850 Neurons and Cognition +1512.03974 Phenomenology +1512.04068 Methodology +1512.04079 Quantum Gases +1512.04169 Number Theory +1512.04241 High Energy Astrophysical Phenomena +1512.04301 Experiment +1512.04335 Theory +1512.04724 Representation Theory +1512.05379 Phenomenology +1512.05408 Other Condensed Matter +1512.05473 +1512.05756 Quantum Gases +1512.05775 Phenomenology +1512.05786 Phenomenology +1512.05988 High Energy Astrophysical Phenomena +1512.05993 Combinatorics +1512.06107 Phenomenology +1512.06109 Theory +1512.06127 Mesoscale and Nanoscale Physics +1512.06263 Theory +1512.06397 +1512.06456 +1512.06820 +1512.06823 +1512.06933 Soft Condensed Matter +1512.06951 Superconductivity +1512.06954 +1512.07110 +1512.07117 Theory +1512.07157 Phenomenology +1512.07442 Instrumentation and Detectors +1512.07632 Theory +1512.07918 Theory +1512.08254 Phenomenology +1512.08297 +1512.08305 Tissues and Organs +1512.08478 Phenomenology +1512.08497 Phenomenology +1512.08591 Theory +1512.08601 Dynamical Systems +1512.09124 Plasma Physics +1601.00197 Mesoscale and Nanoscale Physics +1601.00387 +1601.00426 Atomic Physics +1601.00525 Theory +1601.00658 Phenomenology +1601.01173 Algebraic Geometry +1601.01236 +1601.01307 Solar and Stellar Astrophysics +1601.01670 +1601.01784 Theory +1601.01828 Phenomenology +1601.02488 +1601.02945 High Energy Astrophysical Phenomena +1601.03148 +1601.03302 Lattice +1601.03343 Logic +1601.03725 Theory +1601.03736 Phenomenology +1601.03944 Fluid Dynamics +1601.03982 Phenomenology +1601.04005 Instrumentation and Detectors +1601.04016 Superconductivity +1601.04061 Mesoscale and Nanoscale Physics +1601.04447 Cosmology and Nongalactic Astrophysics +1601.04751 Phenomenology +1601.04931 Strongly Correlated Electrons +1601.05136 Phenomenology +1601.05456 Atmospheric and Oceanic Physics +1601.06386 High Energy Astrophysical Phenomena +1601.06483 +1601.06645 Theory +1601.06708 Materials Science +1601.06795 Theory +1601.06984 Computational Physics +1601.07166 Phenomenology +1601.07170 Chaotic Dynamics +1601.07181 Phenomenology +1601.07369 Mesoscale and Nanoscale Physics +1601.07410 Statistics Theory +1601.07411 Statistical Mechanics +1601.07886 Mesoscale and Nanoscale Physics +1601.07927 +1601.07934 Phenomenology +1601.08018 Mesoscale and Nanoscale Physics +1602.00068 Strongly Correlated Electrons +1602.00076 Lattice +1602.00297 Phenomenology +1602.00560 Dynamical Systems +1602.00754 Mesoscale and Nanoscale Physics +1602.01039 Mesoscale and Nanoscale Physics +1602.01111 Optics +1602.01284 Cosmology and Nongalactic Astrophysics +1602.01448 Data Analysis, Statistics and Probability +1602.01487 Theory +1602.01527 Theory +1602.01592 Representation Theory +1602.01831 High Energy Astrophysical Phenomena +1602.01848 Quantitative Methods +1602.02370 Instrumentation and Methods for Astrophysics +1602.02467 Cosmology and Nongalactic Astrophysics +1602.02728 Instrumentation and Methods for Astrophysics +1602.02742 Disordered Systems and Neural Networks +1602.02752 Astrophysics of Galaxies +1602.02763 Phenomenology +1602.02962 Theory +1602.03102 Disordered Systems and Neural Networks +1602.03159 Lattice +1602.03216 Instrumentation and Detectors +1602.03447 Physics and Society +1602.03462 Phenomenology +1602.03530 Theory +1602.03893 Theory +1602.03920 High Energy Astrophysical Phenomena +1602.04146 Systems and Control +1602.04160 +1602.04599 Geometric Topology +1602.04859 Phenomenology +1602.04899 Phenomenology +1602.04928 Theory +1602.04968 +1602.05324 +1602.05735 Theory +1602.05752 Theory +1602.05808 Statistical Mechanics +1602.05851 Phenomenology +1602.05940 Formal Languages and Automata Theory +1602.06112 Phenomenology +1602.06184 Strongly Correlated Electrons +1602.06478 Strongly Correlated Electrons +1602.06592 High Energy Astrophysical Phenomena +1602.06625 High Energy Astrophysical Phenomena +1602.06670 Other Condensed Matter +1602.06721 Materials Science +1602.06761 +1602.06825 High Energy Astrophysical Phenomena +1602.06884 Phenomenology +1602.06982 Astrophysics of Galaxies +1602.07211 Theory +1602.07214 Phenomenology +1602.07263 Theory +1602.07354 Superconductivity +1602.07540 Phenomenology +1602.07801 +1602.07821 Phenomenology +1602.07869 +1602.07879 +1602.07926 Disordered Systems and Neural Networks +1602.07940 Data Analysis, Statistics and Probability +1602.08436 High Energy Astrophysical Phenomena +1602.08626 Classical Analysis and ODEs +1602.08946 Chemical Physics +1602.09093 Geometric Topology +1603.00164 +1603.00293 Computation +1603.00296 Cosmology and Nongalactic Astrophysics +1603.00712 +1603.00718 Phenomenology +1603.00746 Data Analysis, Statistics and Probability +1603.00806 Information Retrieval +1603.01124 +1603.01138 Phenomenology +1603.01282 Phenomenology +1603.01620 Phenomenology +1603.01746 Statistical Mechanics +1603.01762 +1603.01812 Mesoscale and Nanoscale Physics +1603.01827 Materials Science +1603.02002 Phenomenology +1603.02017 Earth and Planetary Astrophysics +1603.02085 Theory +1603.02090 Phenomenology +1603.02103 +1603.02135 Chaotic Dynamics +1603.02136 Theory +1603.02289 Theory +1603.02306 Fluid Dynamics +1603.02333 +1603.02342 +1603.02583 Theory +1603.02647 Quantum Gases +1603.02687 +1603.02797 Computational Physics +1603.02833 +1603.02943 Phenomenology +1603.03029 Theory +1603.03054 Statistical Mechanics +1603.03263 Mesoscale and Nanoscale Physics +1603.03273 Strongly Correlated Electrons +1603.03512 Statistical Mechanics +1603.03591 Atomic Physics +1603.03880 +1603.03957 Computational Physics +1603.04048 Optics +1603.04165 Theory +1603.04248 Phenomenology +1603.04291 +1603.04470 Theory +1603.04684 Theory +1603.05025 +1603.05101 Disordered Systems and Neural Networks +1603.05201 Learning +1603.05228 Theory +1603.05246 Strongly Correlated Electrons +1603.05255 Cosmology and Nongalactic Astrophysics +1603.05404 +1603.05439 Atomic Physics +1603.05466 Quantum Gases +1603.05546 Phenomenology +1603.05682 Phenomenology +1603.05685 Phenomenology +1603.05750 Cosmology and Nongalactic Astrophysics +1603.05781 Physics and Society +1603.05940 Statistical Mechanics +1603.05976 Instrumentation and Methods for Astrophysics +1603.05998 Solar and Stellar Astrophysics +1603.06064 Statistical Mechanics +1603.06126 General Physics +1603.06172 Theory +1603.06253 Materials Science +1603.06343 +1603.06379 Solar and Stellar Astrophysics +1603.06449 Experiment +1603.06548 Phenomenology +1603.06577 Astrophysics of Galaxies +1603.06826 Pattern Formation and Solitons +1603.06931 Fluid Dynamics +1603.06981 Phenomenology +1603.06996 Human-Computer Interaction +1603.07155 Accelerator Physics +1603.07335 Phenomenology +1603.07426 Phenomenology +1603.07483 +1603.07544 Strongly Correlated Electrons +1603.07551 Mesoscale and Nanoscale Physics +1603.07672 Phenomenology +1603.07786 Computational Complexity +1603.08337 Theory +1603.08694 +1603.08718 +1603.08805 Superconductivity +1603.08939 Theory +1603.08973 Human-Computer Interaction +1603.09140 Optics +1603.09244 Theory +1604.00005 Cosmology and Nongalactic Astrophysics +1604.00251 +1604.00361 Classical Physics +1604.00383 Theory +1604.00619 Chaotic Dynamics +1604.00748 Astrophysics of Galaxies +1604.00853 Phenomenology +1604.00953 Statistical Mechanics +1604.00977 Materials Science +1604.01030 Theory +1604.01144 Strongly Correlated Electrons +1604.01419 Phenomenology +1604.01439 Soft Condensed Matter +1604.01834 +1604.01883 Astrophysics of Galaxies +1604.01900 Materials Science +1604.01932 Phenomenology +1604.02017 Phenomenology +1604.02079 Mesoscale and Nanoscale Physics +1604.02091 Theory +1604.02470 Theory +1604.02479 Materials Science +1604.02551 +1604.02872 Physics and Society +1604.02977 Lattice +1604.03064 Materials Science +1604.03073 Neural and Evolutionary Computing +1604.03120 Theory +1604.03134 Solar and Stellar Astrophysics +1604.03385 Mesoscale and Nanoscale Physics +1604.03724 Solar and Stellar Astrophysics +1604.03777 Quantum Gases +1604.03784 Strongly Correlated Electrons +1604.03842 Solar and Stellar Astrophysics +1604.04000 Theory +1604.04181 Theory +1604.04283 Strongly Correlated Electrons +1604.04365 Strongly Correlated Electrons +1604.04565 Strongly Correlated Electrons +1604.04617 Theory +1604.05100 +1604.05187 Soft Condensed Matter +1604.05308 Theory +1604.05382 Fluid Dynamics +1604.05409 High Energy Astrophysical Phenomena +1604.05641 Solar and Stellar Astrophysics +1604.05651 Phenomenology +1604.05737 Cosmology and Nongalactic Astrophysics +1604.05762 Astrophysics of Galaxies +1604.05824 +1604.05978 Neural and Evolutionary Computing +1604.06186 Theory +1604.06214 Astrophysics of Galaxies +1604.06216 +1604.06218 Astrophysics of Galaxies +1604.06235 Materials Science +1604.06276 Combinatorics +1604.06330 Plasma Physics +1604.06467 Phenomenology +1604.06470 Statistical Mechanics +1604.06497 Astrophysics of Galaxies +1604.06579 Cosmology and Nongalactic Astrophysics +1604.06631 Theory +1604.06661 Superconductivity +1604.06805 Astrophysics of Galaxies +1604.06814 Astrophysics of Galaxies +1604.06999 Differential Geometry +1604.07156 Solar and Stellar Astrophysics +1604.07416 Theory +1604.07501 Astrophysics of Galaxies +1604.07749 Solar and Stellar Astrophysics +1604.07777 Phenomenology +1604.07936 Chaotic Dynamics +1604.08093 +1604.08157 Earth and Planetary Astrophysics +1604.08203 Theory +1604.08286 Earth and Planetary Astrophysics +1604.08436 Atomic and Molecular Clusters +1604.08570 Solar and Stellar Astrophysics +1604.08706 +1604.08765 Theory +1604.08894 Materials Science +1605.00454 Theory +1605.00692 Phenomenology +1605.00742 High Energy Astrophysical Phenomena +1605.00866 Quantum Algebra +1605.00881 Theory +1605.00909 Solar and Stellar Astrophysics +1605.01077 Fluid Dynamics +1605.01183 Solar and Stellar Astrophysics +1605.01306 Astrophysics of Galaxies +1605.01307 High Energy Astrophysical Phenomena +1605.01316 +1605.01355 Solar and Stellar Astrophysics +1605.01409 Phenomenology +1605.01461 Instrumentation and Methods for Astrophysics +1605.01618 Earth and Planetary Astrophysics +1605.01646 Instrumentation and Methods for Astrophysics +1605.01694 Mesoscale and Nanoscale Physics +1605.01726 Theory +1605.01738 Solar and Stellar Astrophysics +1605.01739 Astrophysics of Galaxies +1605.01812 Solar and Stellar Astrophysics +1605.01883 Astrophysics of Galaxies +1605.01902 Mesoscale and Nanoscale Physics +1605.01957 Astrophysics of Galaxies +1605.02025 Materials Science +1605.02059 Phenomenology +1605.02111 Cosmology and Nongalactic Astrophysics +1605.02149 Cosmology and Nongalactic Astrophysics +1605.02409 Instrumentation and Methods for Astrophysics +1605.02708 Earth and Planetary Astrophysics +1605.02726 +1605.02733 +1605.02786 High Energy Astrophysical Phenomena +1605.02802 Astrophysics of Galaxies +1605.02807 Phenomenology +1605.02822 Astrophysics of Galaxies +1605.03006 Strongly Correlated Electrons +1605.03237 Phenomenology +1605.03442 Materials Science +1605.03459 Experiment +1605.03672 High Energy Astrophysical Phenomena +1605.03882 High Energy Astrophysical Phenomena +1605.03925 Phenomenology +1605.04187 Solar and Stellar Astrophysics +1605.04258 Theory +1605.04488 High Energy Astrophysical Phenomena +1605.04490 Theory +1605.04733 Disordered Systems and Neural Networks +1605.04810 Probability +1605.04839 Phenomenology +1605.04878 Solar and Stellar Astrophysics +1605.04884 Theory +1605.04908 Earth and Planetary Astrophysics +1605.05148 +1605.05189 Operator Algebras +1605.05205 Earth and Planetary Astrophysics +1605.05417 Astrophysics of Galaxies +1605.05449 +1605.05792 Astrophysics of Galaxies +1605.05934 Instrumentation and Detectors +1605.05946 Cosmology and Nongalactic Astrophysics +1605.05952 Statistical Mechanics +1605.05976 +1605.06012 +1605.06129 Strongly Correlated Electrons +1605.06133 High Energy Astrophysical Phenomena +1605.06221 Solar and Stellar Astrophysics +1605.06460 Operator Algebras +1605.06622 High Energy Astrophysical Phenomena +1605.06854 Mesoscale and Nanoscale Physics +1605.06978 Instrumentation and Methods for Astrophysics +1605.07017 Superconductivity +1605.07225 Plasma Physics +1605.07631 Theory +1605.07730 Numerical Analysis +1605.07741 Solar and Stellar Astrophysics +1605.07929 +1605.07955 Phenomenology +1605.08231 Earth and Planetary Astrophysics +1605.08298 +1605.08324 Phenomenology +1605.08474 Classical Analysis and ODEs +1605.08733 Materials Science +1605.09246 Phenomenology +1605.09380 Cosmology and Nongalactic Astrophysics +1605.09558 Data Structures and Algorithms +1605.09633 Exactly Solvable and Integrable Systems +1606.00146 Plasma Physics +1606.00928 Molecular Networks +1606.01047 Phenomenology +1606.01291 High Energy Astrophysical Phenomena +1606.01468 High Energy Astrophysical Phenomena +1606.01661 Plasma Physics +1606.02049 Solar and Stellar Astrophysics +1606.02398 Earth and Planetary Astrophysics +1606.02409 Computer Science and Game Theory +1606.02429 Superconductivity +1606.02697 Cryptography and Security +1606.02834 Statistical Mechanics +1606.02883 +1606.02895 Mesoscale and Nanoscale Physics +1606.03050 Materials Science +1606.03169 +1606.03426 Data Analysis, Statistics and Probability +1606.03756 Phenomenology +1606.04007 Fluid Dynamics +1606.04069 Algebraic Geometry +1606.04148 Phenomenology +1606.04280 Solar and Stellar Astrophysics +1606.04572 Astrophysics of Galaxies +1606.04768 Classical Analysis and ODEs +1606.04796 General Finance +1606.04851 Solar and Stellar Astrophysics +1606.04939 History and Philosophy of Physics +1606.05147 Materials Science +1606.05178 Materials Science +1606.05414 Atomic Physics +1606.05653 Theory +1606.05890 Quantum Gases +1606.05999 Functional Analysis +1606.06200 Solar and Stellar Astrophysics +1606.06400 Superconductivity +1606.06441 Phenomenology +1606.06527 Strongly Correlated Electrons +1606.06619 Mesoscale and Nanoscale Physics +1606.06641 Mesoscale and Nanoscale Physics +1606.06824 Earth and Planetary Astrophysics +1606.06838 Numerical Analysis +1606.06919 Theory +1606.07229 Solar and Stellar Astrophysics +1606.07374 Learning +1606.07999 Materials Science +1606.09256 Solar and Stellar Astrophysics +1607.00247 Strongly Correlated Electrons +1607.00316 Biological Physics +1607.00327 Differential Geometry +1607.00403 Mesoscale and Nanoscale Physics +1607.00838 Phenomenology +1607.01067 Dynamical Systems +1607.01089 Probability +1607.01290 Astrophysics of Galaxies +1607.01437 Computer Vision and Pattern Recognition +1607.01580 Geometric Topology +1607.02479 Subcellular Processes +1607.02510 +1607.02529 Phenomenology +1607.02747 High Energy Astrophysical Phenomena +1607.02771 +1607.02958 Materials Science +1607.02961 +1607.03091 Astrophysics of Galaxies +1607.03638 Materials Science +1607.03642 Systems and Control +1607.03647 Optics +1607.03749 Phenomenology +1607.03946 Cryptography and Security +1607.03994 Superconductivity +1607.04098 Dynamical Systems +1607.04135 Algebraic Geometry +1607.04487 Astrophysics of Galaxies +1607.04648 Computer Vision and Pattern Recognition +1607.04693 Classical Analysis and ODEs +1607.04742 Classical Analysis and ODEs +1607.04772 Logic +1607.04775 Social and Information Networks +1607.04867 Learning +1607.04872 Analysis of PDEs +1607.04889 Computer Vision and Pattern Recognition +1607.04902 Logic +1607.04910 Formal Languages and Automata Theory +1607.04962 +1607.04985 Plasma Physics +1607.05028 Human-Computer Interaction +1607.05163 Mesoscale and Nanoscale Physics +1607.05264 Instrumentation and Detectors +1607.05266 Chemical Physics +1607.05267 Number Theory +1607.05268 +1607.05269 Instrumentation and Detectors +1607.05270 Instrumentation and Detectors +1607.05271 Learning +1607.05274 Astrophysics of Galaxies +1607.05280 Theory +1607.05291 Phenomenology +1607.05294 +1607.05295 Strongly Correlated Electrons +1607.05296 Strongly Correlated Electrons +1607.05298 Logic +1607.05300 General Physics +1607.05302 Robotics +1607.05305 Theory +1607.05310 Dynamical Systems +1607.05313 Atmospheric and Oceanic Physics +1607.05319 Instrumentation and Methods for Astrophysics +1607.05320 Combinatorics +1607.05321 Chaotic Dynamics +1607.05322 Statistical Mechanics +1607.05323 Probability +1607.05324 Astrophysics of Galaxies +1607.05325 Metric Geometry +1607.05327 Robotics +1607.05334 Neurons and Cognition +1607.05335 Information Theory +1607.05336 Computation +1607.05337 Algebraic Geometry +1607.05338 Computer Vision and Pattern Recognition +1607.05340 Optics +1607.05341 Commutative Algebra +1607.05344 Distributed, Parallel, and Cluster Computing +1607.05345 Information Theory +1607.05347 Computational Geometry +1607.05348 Optics +1607.05350 Functional Analysis +1607.05352 History and Overview +1607.05353 Cell Behavior +1607.05357 Analysis of PDEs +1607.05358 Strongly Correlated Electrons +1607.05363 Solar and Stellar Astrophysics +1607.05367 +1607.05372 Operator Algebras +1607.05373 +1607.05374 Analysis of PDEs +1607.05375 Optimization and Control +1607.05383 Cosmology and Nongalactic Astrophysics +1607.05384 Materials Science +1607.05386 Tissues and Organs +1607.05388 Pattern Formation and Solitons +1607.05390 Neural and Evolutionary Computing +1607.05391 Geophysics +1607.05392 Combinatorics +1607.05393 Group Theory +1607.05394 Number Theory +1607.05396 Computer Vision and Pattern Recognition +1607.05398 Populations and Evolution +1607.05402 Robotics +1607.05403 Phenomenology +1607.05404 +1607.05407 Mesoscale and Nanoscale Physics +1607.05408 Computation and Language +1607.05411 Group Theory +1607.05414 +1607.05415 Statistics Theory +1607.05417 Numerical Analysis +1607.05419 +1607.05421 Statistics Theory +1607.05422 Information Retrieval +1607.05423 Computer Vision and Pattern Recognition +1607.05424 Methodology +1607.05425 Networking and Internet Architecture +1607.05426 Dynamical Systems +1607.05427 Computer Vision and Pattern Recognition +1607.05430 Statistics Theory +1607.05431 Group Theory +1607.05433 Analysis of PDEs +1607.05439 Analysis of PDEs +1607.05440 Computer Vision and Pattern Recognition +1607.05441 Optimization and Control +1607.05446 Accelerator Physics +1607.05448 Systems and Control +1607.05449 Solar and Stellar Astrophysics +1607.05452 Probability +1607.05453 Complex Variables +1607.05454 Statistics Theory +1607.05456 Materials Science +1607.05458 Theory +1607.05460 Combinatorics +1607.05462 Information Theory +1607.05466 Combinatorics +1607.05467 Probability +1607.05475 Optics +1607.05476 Optics +1607.05477 Computer Vision and Pattern Recognition +1607.05478 Astrophysics of Galaxies +1607.05484 Combinatorics +1607.05485 Systems and Control +1607.05489 Probability +1607.05490 +1607.05491 Strongly Correlated Electrons +1607.05492 Chemical Physics +1607.05494 Computational Complexity +1607.05496 Classical Physics +1607.05498 Soft Condensed Matter +1607.05501 Probability +1607.05502 Functional Analysis +1607.05504 Analysis of PDEs +1607.05505 Logic +1607.05508 Materials Science +1607.05512 Software Engineering +1607.05514 General Finance +1607.05515 Logic +1607.05516 Data Structures and Algorithms +1607.05519 Superconductivity +1607.05521 Algebraic Topology +1607.05522 +1607.05523 Computer Vision and Pattern Recognition +1607.05527 Computational Geometry +1607.05529 Computer Vision and Pattern Recognition +1607.05536 Statistics Theory +1607.05538 Databases +1607.05539 Distributed, Parallel, and Cluster Computing +1607.05543 Information Theory +1607.05545 Chemical Physics +1607.05546 Theory +1607.05547 Computational Geometry +1607.05552 Commutative Algebra +1607.05554 Complex Variables +1607.05557 Optics +1607.05558 Materials Science +1607.05560 Probability +1607.05561 Combinatorics +1607.05564 Optimization and Control +1607.05568 Optimization and Control +1607.05574 Probability +1607.05575 Instrumentation and Methods for Astrophysics +1607.05578 Analysis of PDEs +1607.05579 Theory +1607.05581 General Physics +1607.05583 General Physics +1607.05584 Numerical Analysis +1607.05590 Systems and Control +1607.05593 Differential Geometry +1607.05594 Commutative Algebra +1607.05595 Number Theory +1607.05597 Data Structures and Algorithms +1607.05601 Artificial Intelligence +1607.05602 Information Theory +1607.05603 Mesoscale and Nanoscale Physics +1607.05604 Differential Geometry +1607.05605 +1607.05606 Digital Libraries +1607.05607 Mesoscale and Nanoscale Physics +1607.05608 Statistical Finance +1607.05610 Logic +1607.05613 +1607.05620 Computer Vision and Pattern Recognition +1607.05622 Numerical Analysis +1607.05624 Complex Variables +1607.05625 Optimization and Control +1607.05627 Analysis of PDEs +1607.05629 Number Theory +1607.05636 Statistics Theory +1607.05638 Analysis of PDEs +1607.05640 Representation Theory +1607.05642 Lattice +1607.05644 Differential Geometry +1607.05645 Distributed, Parallel, and Cluster Computing +1607.05648 Spectral Theory +1607.05651 Number Theory +1607.05653 Information Theory +1607.05655 Strongly Correlated Electrons +1607.05657 Mesoscale and Nanoscale Physics +1607.05658 Materials Science +1607.05659 Analysis of PDEs +1607.05660 Statistical Finance +1607.05662 Differential Geometry +1607.05666 Computation and Language +1607.05671 Logic in Computer Science +1607.05672 Strongly Correlated Electrons +1607.05675 Combinatorics +1607.05678 Analysis of PDEs +1607.05681 Solar and Stellar Astrophysics +1607.05685 Geometric Topology +1607.05688 Optics +1607.05689 Materials Science +1607.05690 Neural and Evolutionary Computing +1607.05691 Computer Vision and Pattern Recognition +1607.05693 Superconductivity +1607.05694 Dynamical Systems +1607.05697 Data Structures and Algorithms +1607.05698 Dynamical Systems +1607.05699 Computer Science and Game Theory +1607.05702 Databases +1607.05704 Robotics +1607.05707 Programming Languages +1607.05709 Statistics Theory +1607.05712 Statistics Theory +1607.05716 Probability +1607.05718 Number Theory +1607.05719 +astro-ph/0702301 +physics/0106051 General Physics +1001.3090 Information Theory +1006.1694 Information Theory +1009.4466 Mesoscale and Nanoscale Physics +1202.1574 Information Theory +1204.5487 Astrophysics of Galaxies +1210.2251 Probability +1210.7593 Number Theory +1212.4340 High Energy Astrophysical Phenomena +1301.2126 Mesoscale and Nanoscale Physics +1303.1034 Mesoscale and Nanoscale Physics +1303.2533 Mesoscale and Nanoscale Physics +1307.1759 Learning +1307.4517 High Energy Astrophysical Phenomena +1307.4532 Information Theory +1307.5371 Cosmology and Nongalactic Astrophysics +1307.7091 Spectral Theory +1310.8531 Classical Analysis and ODEs +1312.3670 Dynamical Systems +1401.0881 Mesoscale and Nanoscale Physics +1401.5457 Classical Analysis and ODEs +1401.6549 Rings and Algebras +1402.4600 Optimization and Control +1402.4618 Systems and Control +1403.6218 Algebraic Geometry +1404.5402 Mesoscale and Nanoscale Physics +1404.6710 Algebraic Geometry +1405.0539 Algebraic Geometry +1405.2268 Rings and Algebras +1405.4867 High Energy Astrophysical Phenomena +1405.5228 Methodology +1405.6297 Numerical Analysis +1406.2588 Combinatorics +1406.5961 Mesoscale and Nanoscale Physics +1407.0615 +1407.4777 Performance +1407.6651 Probability +1408.0856 Methodology +1408.2700 Sound +1409.0131 Quantum Algebra +1409.0777 Combinatorics +1409.0779 Combinatorics +1409.1558 +1409.4555 +1409.8584 Number Theory +1410.6294 Combinatorics +1411.2909 +1412.0480 Numerical Analysis +1412.4126 +1412.6065 Computational Geometry +1501.05432 Computer Vision and Pattern Recognition +1501.07900 Numerical Analysis +1502.00410 Algebraic Topology +1502.07054 Quantum Gases +1502.07386 Optimization and Control +1503.02643 Quantum Gases +1503.03992 Algebraic Geometry +1504.05225 Information Theory +1504.05863 Algebraic Geometry +1504.06050 Quantum Gases +1504.06280 Probability +1504.06288 Logic +1505.00452 Populations and Evolution +1505.01287 Statistical Mechanics +1505.03026 +1505.03833 Differential Geometry +1505.04572 Statistical Mechanics +1505.05786 Fluid Dynamics +1506.01333 Databases +1506.02267 Computation +1506.03227 Information Theory +1506.04942 Probability +1506.05423 Quantum Gases +1506.08405 Algebraic Geometry +1507.00206 Combinatorics +1507.00536 Instrumentation and Detectors +1507.01541 +1507.02085 +1507.02773 Mesoscale and Nanoscale Physics +1507.03238 Geometric Topology +1507.07289 Probability +1508.01699 Optics +1508.03323 Statistics Theory +1508.04161 Analysis of PDEs +1508.07616 Populations and Evolution +1508.07617 Analysis of PDEs +1508.07619 Analysis of PDEs +1508.07936 Algebraic Geometry +1509.00197 Phenomenology +1509.01392 Statistical Mechanics +1509.01531 Systems and Control +1509.01622 Quantum Algebra +1509.02061 Functional Analysis +1509.03038 Theory +1509.03286 Cosmology and Nongalactic Astrophysics +1509.03623 Materials Science +1509.03786 Cosmology and Nongalactic Astrophysics +1509.04809 Quantum Gases +1509.05115 Combinatorics +1509.06014 Dynamical Systems +1509.06179 Soft Condensed Matter +1509.06456 Optics +1509.07657 Algebraic Geometry +1510.00217 Physics and Society +1510.00277 Physics and Society +1510.03625 Algebraic Geometry +1510.05351 Numerical Analysis +1510.05565 High Energy Astrophysical Phenomena +1510.05967 Superconductivity +1510.07863 Numerical Analysis +1510.08705 Algebraic Geometry +1511.02291 +1511.03396 +1511.03995 Computer Vision and Pattern Recognition +1511.05409 Phenomenology +1511.07184 Materials Science +1511.07240 Dynamical Systems +1511.08125 +1511.09174 Information Theory +1511.09364 Neurons and Cognition +1512.02623 Spectral Theory +1512.04033 Quantum Gases +1512.04445 Chaotic Dynamics +1512.05588 +1512.07764 +1512.08925 Optimization and Control +1601.00972 Phenomenology +1601.01620 Solar and Stellar Astrophysics +1601.03925 Computer Science and Game Theory +1601.05599 Soft Condensed Matter +1601.07030 General Physics +1601.07187 Phenomenology +1601.07281 Number Theory +1601.07379 +1602.01874 Statistical Mechanics +1602.02185 Statistical Finance +1602.02312 Probability +1602.02935 +1602.05153 Combinatorics +1602.05235 Mesoscale and Nanoscale Physics +1602.06586 Learning +1602.07293 Optics +1602.07455 Neural and Evolutionary Computing +1602.08409 Digital Libraries +1602.08905 +1602.08972 Phenomenology +1603.00839 Theory +1603.01169 High Energy Astrophysical Phenomena +1603.02301 Algebraic Geometry +1603.03117 Dynamical Systems +1603.03786 Statistical Mechanics +1603.04017 Machine Learning +1603.04095 Dynamical Systems +1603.08179 Information Theory +1603.08731 Astrophysics of Galaxies +1604.00153 Algebraic Geometry +1604.00777 Logic +1604.01511 Strongly Correlated Electrons +1604.01749 Mesoscale and Nanoscale Physics +1604.01824 Trading and Market Microstructure +1604.02328 +1604.02567 Algebraic Geometry +1604.02686 Soft Condensed Matter +1604.03169 Computer Vision and Pattern Recognition +1604.03596 Algebraic Topology +1604.03952 Mesoscale and Nanoscale Physics +1604.04061 Theory +1604.04208 +1604.04213 Learning +1604.04245 Classical Analysis and ODEs +1604.04282 Optimization and Control +1604.04291 Information Theory +1604.04293 Computer Vision and Pattern Recognition +1604.04297 Optimization and Control +1604.04298 Soft Condensed Matter +1604.04304 Mesoscale and Nanoscale Physics +1604.04306 Mesoscale and Nanoscale Physics +1604.04309 Fluid Dynamics +1604.04310 Phenomenology +1604.04320 Distributed, Parallel, and Cluster Computing +1604.04321 Information Theory +1604.04325 Information Theory +1604.04326 Computer Vision and Pattern Recognition +1604.04328 Number Theory +1604.04329 Phenomenology +1604.04331 +1604.04334 Computer Vision and Pattern Recognition +1604.04336 +1604.04337 Computer Vision and Pattern Recognition +1604.04338 Optimization and Control +1604.04339 Computer Vision and Pattern Recognition +1604.04340 +1604.04341 Dynamical Systems +1604.04344 Logic in Computer Science +1604.04355 Fluid Dynamics +1604.04356 Algebraic Geometry +1604.04358 Computation and Language +1604.04359 Multiagent Systems +1604.04361 Functional Analysis +1604.04362 Information Theory +1604.04366 High Energy Astrophysical Phenomena +1604.04367 Optics +1604.04368 Probability +1604.04371 Soft Condensed Matter +1604.04373 Optics +1604.04374 Numerical Analysis +1604.04375 Functional Analysis +1604.04376 Differential Geometry +1604.04377 Computer Vision and Pattern Recognition +1604.04380 Atomic Physics +1604.04381 Probability +1604.04382 Computer Vision and Pattern Recognition +1604.04387 Analysis of PDEs +1604.04389 Human-Computer Interaction +1604.04394 +1604.04396 Number Theory +1604.04398 Genomics +1604.04399 +1604.04400 High Energy Astrophysical Phenomena +1604.04402 Cellular Automata and Lattice Gases +1604.04403 Computer Science and Game Theory +1604.04405 Statistics Theory +1604.04407 Materials Science +1604.04410 Fluid Dynamics +1604.04411 Mesoscale and Nanoscale Physics +1604.04413 Information Theory +1604.04415 Group Theory +1604.04416 Optics +1604.04417 Operator Algebras +1604.04418 Numerical Analysis +1604.04419 Numerical Analysis +1604.04420 Numerical Analysis +1604.04421 Systems and Control +1604.04422 Fluid Dynamics +1604.04423 Dynamical Systems +1604.04424 Information Theory +1604.04425 Algebraic Geometry +1604.04426 Mesoscale and Nanoscale Physics +1604.04427 Numerical Analysis +1604.04429 Group Theory +1604.04430 Functional Analysis +1604.04431 Plasma Physics +1604.04434 Learning +1604.04435 Logic in Computer Science +1604.04436 Combinatorics +1604.04437 Representation Theory +1604.04438 Mesoscale and Nanoscale Physics +1604.04442 Analysis of PDEs +1604.04443 Numerical Analysis +1604.04444 Earth and Planetary Astrophysics +1604.04447 Instrumentation and Methods for Astrophysics +1604.04448 Combinatorics +1604.04450 Theory +1604.04452 Algebraic Geometry +1604.04454 Emerging Technologies +1604.04457 Information Theory +1604.04459 Analysis of PDEs +1604.04460 +1604.04465 Cryptography and Security +1604.04466 Physics and Society +1604.04467 Plasma Physics +1604.04468 Theory +1604.04470 Quantum Algebra +1604.04471 Data Structures and Algorithms +1604.04473 Computer Vision and Pattern Recognition +1604.04474 Group Theory +1604.04475 Rings and Algebras +1604.04480 Optimization and Control +1604.04482 Distributed, Parallel, and Cluster Computing +1604.04483 Numerical Analysis +1604.04484 Quantitative Methods +1604.04488 Group Theory +1604.04489 Numerical Analysis +1604.04490 +1604.04493 Numerical Analysis +1604.04494 Computer Vision and Pattern Recognition +1604.04495 Cryptography and Security +1604.04496 Physics and Society +1604.04497 Probability +1604.04498 Systems and Control +1604.04499 Analysis of PDEs +1604.04501 Optics +1604.04505 Machine Learning +1604.04506 Artificial Intelligence +1604.04507 Atomic Physics +1604.04509 Combinatorics +1604.04512 Analysis of PDEs +1604.04514 Probability +1604.04515 Astrophysics of Galaxies +1604.04521 Analysis of PDEs +1604.04523 Combinatorics +1604.04526 Phenomenology +1604.04528 Computer Vision and Pattern Recognition +1604.04529 Numerical Analysis +1604.04532 Numerical Analysis +1604.04543 Solar and Stellar Astrophysics +1604.04546 Analysis of PDEs +1604.04548 Plasma Physics +1604.04549 Computational Complexity +1604.04553 Populations and Evolution +1604.04555 Other Condensed Matter +1604.04556 Phenomenology +1604.04557 Number Theory +1604.04561 Rings and Algebras +1604.04563 Number Theory +1604.04564 Number Theory +1604.04569 Numerical Analysis +1604.04570 Social and Information Networks +1604.04573 Computer Vision and Pattern Recognition +1604.04574 Computer Vision and Pattern Recognition +1604.04576 Optics +1604.04577 Astrophysics of Galaxies +1604.04579 Computer Science and Game Theory +1604.04581 Materials Science +1604.04582 Computation +1604.04583 Earth and Planetary Astrophysics +1604.04585 Numerical Analysis +1604.04586 Systems and Control +1604.04590 Analysis of PDEs +1604.04593 Optimization and Control +1604.04600 Machine Learning +1604.04602 +1604.04606 Functional Analysis +1604.04608 Mathematical Finance +1604.04609 General Topology +1604.04613 Astrophysics of Galaxies +1604.04615 Information Theory +1604.04618 Cryptography and Security +1604.04619 Other Condensed Matter +1604.04620 Mesoscale and Nanoscale Physics +1604.04622 Astrophysics of Galaxies +0710.0122 Algebraic Geometry +0805.0770 +0810.3075 Pattern Formation and Solitons +0904.0484 +0905.1424 Computers and Society +1001.3368 Logic in Computer Science +1110.6534 Optimization and Control +1111.7292 Dynamical Systems +1202.4517 Differential Geometry +1203.6397 Data Structures and Algorithms +1205.2788 +1205.2789 +1208.2462 Algebraic Geometry +1208.4584 Algebraic Geometry +1210.6149 +1210.7260 Optimization and Control +1212.4420 Algebraic Topology +1301.2514 +1301.5605 Probability +1302.0795 +1302.6975 Differential Geometry +1302.6979 Differential Geometry +1303.6879 Algebraic Geometry +1306.1377 +1309.1657 Phenomenology +1310.0567 Superconductivity +1312.0811 Probability +1312.7015 Strongly Correlated Electrons +1401.2924 +1401.8286 Complex Variables +1402.0196 Combinatorics +1402.1641 Algebraic Geometry +1403.3265 Molecular Networks +1404.2098 Probability +1405.2614 Analysis of PDEs +1405.4676 +1407.1945 Cosmology and Nongalactic Astrophysics +1407.3749 Economics +1407.4949 Probability +1408.1897 Probability +1408.6571 +1409.0118 Computational Finance +1409.8535 Combinatorics +1410.1349 Functional Analysis +1410.2271 Cosmology and Nongalactic Astrophysics +1410.7854 Group Theory +1410.8182 Geometric Topology +1412.0356 Computational Complexity +1412.3498 Combinatorics +1412.3938 Materials Science +1501.07021 +1501.07342 Molecular Networks +1502.06187 Learning +1503.07502 Number Theory +1503.08560 Rings and Algebras +1504.00690 Algebraic Geometry +1504.02550 Populations and Evolution +1504.03215 +1504.04140 Cosmology and Nongalactic Astrophysics +1505.00064 Functional Analysis +1505.05810 +1506.00046 Probability +1506.01752 Populations and Evolution +1506.04598 Representation Theory +1506.06067 Probability +1506.06976 +1506.07403 Atomic Physics +1506.08069 Metric Geometry +1506.08758 Probability +1506.09138 Cosmology and Nongalactic Astrophysics +1507.00001 Biological Physics +1507.00815 +1507.02166 Numerical Analysis +1507.02454 Information Theory +1507.02638 Spectral Theory +1507.03331 Numerical Analysis +1507.05538 Mesoscale and Nanoscale Physics +1507.05883 Dynamical Systems +1507.08413 Optimization and Control +1508.01836 Commutative Algebra +1508.02695 +1508.03002 Methodology +1508.07183 Phenomenology +1509.04553 Physics and Society +1509.05149 Probability +1509.05668 Information Theory +1509.06544 Physics and Society +1509.07634 Geometric Topology +1510.00152 Dynamical Systems +1510.01780 Probability +1510.03210 Logic +1510.05217 Social and Information Networks +1510.06845 +1511.00833 +1511.01507 Solar and Stellar Astrophysics +1511.01618 Probability +1511.01880 Probability +1511.03115 Metric Geometry +1511.03225 Learning +1511.03483 Neural and Evolutionary Computing +1511.03538 Probability +1511.04925 Social and Information Networks +1511.05414 Numerical Analysis +1511.06461 Dynamical Systems +1511.07734 Probability +1511.07821 Applications +1511.08180 Other Statistics +1511.08997 Computational Finance +1512.01915 Artificial Intelligence +1512.03572 Combinatorics +1512.04715 Soft Condensed Matter +1512.05562 +1512.05978 Combinatorics +1512.09376 Mesoscale and Nanoscale Physics +1601.01054 Systems and Control +1601.03535 Probability +1601.04009 Strongly Correlated Electrons +1601.04062 Astrophysics of Galaxies +1601.04503 Information Theory +1601.04557 Risk Management +1601.05838 +1601.07399 Information Theory +1601.07479 Superconductivity +1601.07966 Mesoscale and Nanoscale Physics +1602.00274 Mesoscale and Nanoscale Physics +1602.00466 Soft Condensed Matter +1602.00508 Statistical Mechanics +1602.01981 Commutative Algebra +1602.02491 Statistics Theory +1602.05102 Quantum Gases +1602.05989 +1602.06949 Strongly Correlated Electrons +1602.07290 Applications +1602.08499 Mesoscale and Nanoscale Physics +1602.08995 Optimization and Control +1603.00118 Methodology +1603.00159 Computational Physics +1603.00398 Mesoscale and Nanoscale Physics +1603.01363 Functional Analysis +1603.02514 Computation and Language +1603.02992 +1603.03528 Exactly Solvable and Integrable Systems +1603.03708 Algebraic Geometry +1603.03867 Neurons and Cognition +1603.04644 Soft Condensed Matter +1603.04827 Mesoscale and Nanoscale Physics +1603.04922 Computer Vision and Pattern Recognition +1603.05493 Atomic and Molecular Clusters +1603.05740 Superconductivity +1603.05988 Lattice +1603.06435 Category Theory +1603.06828 Data Structures and Algorithms +1603.07556 Physics and Society +1603.07887 +1603.08114 Computational Finance +1603.08742 Statistical Mechanics +1603.09060 Trading and Market Microstructure +1603.09230 Phenomenology +1604.00475 Computer Vision and Pattern Recognition +1604.01387 +1604.03127 Theory +1604.03322 Information Theory +1604.03328 Probability +1604.04109 Computational Physics +1604.05131 +1604.05206 Strongly Correlated Electrons +1604.05352 +1604.06599 Classical Physics +1604.06838 Computer Vision and Pattern Recognition +1604.07900 Analysis of PDEs +1604.07947 Mesoscale and Nanoscale Physics +1605.01859 Functional Analysis +1605.02697 Computer Vision and Pattern Recognition +1605.03546 Computational Complexity +1605.03656 +1605.03694 Physics and Society +1605.04043 Theory +1605.04208 +1605.04456 +1605.05708 Mesoscale and Nanoscale Physics +1605.07040 Phenomenology +1605.07671 Group Theory +1605.07746 Cryptography and Security +1605.07874 Computation and Language +1605.09124 Information Theory +1605.09695 Fluid Dynamics +1605.09774 Machine Learning +1605.09790 Statistical Mechanics +1606.00014 Cosmology and Nongalactic Astrophysics +1606.00560 Phenomenology +1606.01925 Data Structures and Algorithms +1606.03022 Superconductivity +1606.03930 Adaptation and Self-Organizing Systems +1606.04264 Mesoscale and Nanoscale Physics +1606.04433 Phenomenology +1606.04621 Computer Vision and Pattern Recognition +1606.04713 Theory +1606.04826 +1606.05219 Representation Theory +1606.05251 Solar and Stellar Astrophysics +1606.05364 Instrumentation and Detectors +1606.05682 Superconductivity +1606.06436 Analysis of PDEs +1606.06850 Biological Physics +1606.06899 Mesoscale and Nanoscale Physics +1606.07321 Strongly Correlated Electrons +1606.07618 Soft Condensed Matter +1606.07905 Theory +1606.07992 Computational Geometry +1606.08419 Disordered Systems and Neural Networks +1606.08926 Cosmology and Nongalactic Astrophysics +1606.09407 +1607.00057 Soft Condensed Matter +1607.00847 Learning +1607.00958 Phenomenology +1607.01195 Statistical Mechanics +1607.01800 Astrophysics of Galaxies +1607.02050 Phenomenology +1607.02075 +1607.02358 Materials Science +1607.02401 +1607.02708 Superconductivity +1607.02716 Superconductivity +1607.03304 Biological Physics +1607.04067 Statistical Mechanics +1607.04339 Information Theory +1607.05285 +1607.05301 Other Condensed Matter +1607.05369 Computer Vision and Pattern Recognition +1607.06760 Phenomenology +1607.07266 Superconductivity +1607.07320 Mesoscale and Nanoscale Physics +1607.07361 Materials Science +1607.07491 Combinatorics +1607.08662 Atomic Physics +1608.00400 Cosmology and Nongalactic Astrophysics +1608.00461 Group Theory +1608.00837 Strongly Correlated Electrons +1608.01817 Quantum Gases +1608.02506 Operator Algebras +1608.02742 Plasma Physics +1608.02983 Strongly Correlated Electrons +1608.03071 Strongly Correlated Electrons +1608.03195 Optimization and Control +1608.03359 Mesoscale and Nanoscale Physics +1608.03578 Instrumentation and Methods for Astrophysics +1608.03693 Statistical Mechanics +1608.03789 Solar and Stellar Astrophysics +1608.04223 Data Structures and Algorithms +1608.04755 Phenomenology +1608.04788 Materials Science +1608.05246 Computer Vision and Pattern Recognition +1608.05771 Phenomenology +1608.06172 Other Computer Science +1608.06432 Analysis of PDEs +1608.06673 Cryptography and Security +1608.06725 Atomic Physics +1608.08261 Robotics +1608.08409 Phenomenology +1608.08494 +1608.08810 Physics and Society +1609.00159 Probability +1609.00166 +1609.00249 Instrumentation and Detectors +1609.00507 Logic in Computer Science +1609.01455 Physics and Society +1609.01487 Mesoscale and Nanoscale Physics +1609.01659 Phenomenology +1609.01806 Experiment +1609.02126 Probability +1609.02167 Theory +1609.02245 +1609.03122 Metric Geometry +1609.03366 Soft Condensed Matter +1609.03854 Quantum Gases +1609.05135 Other Computer Science +1609.05887 Numerical Analysis +1609.06213 +1609.06216 Materials Science +1609.06284 Combinatorics +1609.06529 Theory +1609.06635 Phenomenology +1609.06910 Theory +1609.07048 Computer Science and Game Theory +1609.07289 Geometric Topology +1609.07684 Logic in Computer Science +1609.09295 Computational Physics +1609.09665 Differential Geometry +1610.00369 Computation and Language +1610.00494 Machine Learning +1610.00763 Quantitative Methods +1610.00856 Mesoscale and Nanoscale Physics +1610.01333 Earth and Planetary Astrophysics +1610.01484 Pattern Formation and Solitons +1610.01853 Materials Science +1610.02827 Experiment +1610.04032 Computer Vision and Pattern Recognition +1610.04311 +1610.04762 Functional Analysis +1610.04871 Robotics +1610.04926 Theory +1610.05215 Analysis of PDEs +1610.06726 Analysis of PDEs +1610.06758 Mesoscale and Nanoscale Physics +1610.06916 Probability +1610.07480 Instrumentation and Detectors +1610.07938 Group Theory +1610.08059 Phenomenology +1610.08109 Number Theory +1610.08113 Materials Science +1610.08998 Mesoscale and Nanoscale Physics +1610.09028 Information Theory +1610.09185 Instrumentation and Detectors +1610.09487 Adaptation and Self-Organizing Systems +1610.09629 Logic in Computer Science +1610.09671 Lattice +1610.09763 Lattice +1610.09797 Disordered Systems and Neural Networks +1611.00152 Rings and Algebras +1611.00284 Computer Vision and Pattern Recognition +1611.00513 High Energy Astrophysical Phenomena +1611.00547 Social and Information Networks +1611.00892 Cosmology and Nongalactic Astrophysics +1611.00973 Mesoscale and Nanoscale Physics +1611.01408 Computer Vision and Pattern Recognition +1611.01440 Mathematical Finance +1611.01448 Tissues and Organs +1611.01553 Logic in Computer Science +1611.02112 Logic in Computer Science +1611.02349 Dynamical Systems +1611.02489 +1611.02519 +1611.03239 Pricing of Securities +1611.03304 Quantum Gases +1611.03363 Neural and Evolutionary Computing +1611.03381 +1611.03444 +1611.03718 Computer Vision and Pattern Recognition +1611.03852 Learning +1611.03977 Artificial Intelligence +1611.04193 Quantitative Methods +1611.04292 Combinatorics +1611.04320 Pricing of Securities +1611.04325 Differential Geometry +1611.04336 +1611.04769 Phenomenology +1611.04953 Computation and Language +1611.04980 Mesoscale and Nanoscale Physics +1611.05160 +1611.05253 Numerical Analysis +1611.05308 Solar and Stellar Astrophysics +1611.05487 Machine Learning +1611.05539 Distributed, Parallel, and Cluster Computing +1611.05567 Number Theory +1611.05812 Theory +1611.05940 Machine Learning +1611.06043 +1611.06337 Numerical Analysis +1611.06347 Theory +1611.06380 Numerical Analysis +1611.06391 Computer Vision and Pattern Recognition +1611.06406 Numerical Analysis +1611.06419 Soft Condensed Matter +1611.06491 Number Theory +1611.06600 Combinatorics +1611.06612 Computer Vision and Pattern Recognition +1611.06952 Cryptography and Security +1611.06974 Combinatorics +1611.06999 +1611.07050 Astrophysics of Galaxies +1611.07067 Software Engineering +1611.07100 Machine Learning +1611.07177 Group Theory +1611.07222 Statistics Theory +1611.07237 Statistics Theory +1611.07243 Theory +1611.07247 Methodology +1611.07289 Computer Vision and Pattern Recognition +1611.07435 Computational Physics +1611.07583 Computer Vision and Pattern Recognition +1611.07588 Machine Learning +1611.07703 Computer Vision and Pattern Recognition +1611.07800 Learning +1611.07802 +1611.07805 Experiment +1611.07855 Materials Science +1611.07919 +1611.07947 High Energy Astrophysical Phenomena +1611.07961 Cosmology and Nongalactic Astrophysics +1611.07972 Materials Science +1611.07973 Superconductivity +1611.07975 Phenomenology +1611.07977 Phenomenology +1611.07978 Theory +1611.07980 Phenomenology +1611.07982 Combinatorics +1611.07984 Theory +1611.07988 Solar and Stellar Astrophysics +1611.07989 Populations and Evolution +1611.07990 Astrophysics of Galaxies +1611.07991 Astrophysics of Galaxies +1611.07992 Optimization and Control +1611.07993 Statistical Mechanics +1611.07994 Probability +1611.07995 +1611.07996 Astrophysics of Galaxies +1611.07998 Theory +1611.07999 Neurons and Cognition +1611.08001 Geometric Topology +1611.08004 Software Engineering +1611.08005 Software Engineering +1611.08006 Optimization and Control +1611.08007 +1611.08008 Algebraic Geometry +1611.08010 Geometric Topology +1611.08011 Theory +1611.08012 +1611.08013 Geometric Topology +1611.08014 Classical Physics +1611.08015 Other Condensed Matter +1611.08016 Optics +1611.08018 General Physics +1611.08019 Dynamical Systems +1611.08022 Optimization and Control +1611.08024 Learning +1611.08025 Theory +1611.08026 Group Theory +1611.08027 Analysis of PDEs +1611.08028 Numerical Analysis +1611.08029 Phenomenology +1611.08034 Computation and Language +1611.08035 Mathematical Software +1611.08037 Artificial Intelligence +1611.08038 Numerical Analysis +1611.08039 Combinatorics +1611.08041 Soft Condensed Matter +1611.08042 Accelerator Physics +1611.08043 +1611.08044 Number Theory +1611.08045 Algebraic Geometry +1611.08048 +1611.08050 Computer Vision and Pattern Recognition +1611.08053 +1611.08054 Cosmology and Nongalactic Astrophysics +1611.08056 Systems and Control +1611.08057 Numerical Analysis +1611.08059 Strongly Correlated Electrons +1611.08060 Discrete Mathematics +1611.08061 Computer Vision and Pattern Recognition +1611.08062 +1611.08063 Phenomenology +1611.08066 Discrete Mathematics +1611.08068 Combinatorics +1611.08070 Learning +1611.08072 Numerical Analysis +1611.08073 +1611.08077 Lattice +1611.08079 Software Engineering +1611.08081 Phenomenology +1611.08082 Experiment +1611.08083 Machine Learning +1611.08084 Computational Physics +1611.08086 Networking and Internet Architecture +1611.08087 Functional Analysis +1611.08088 Statistical Finance +1611.08089 Group Theory +1611.08090 +1611.08091 Computer Vision and Pattern Recognition +1611.08092 Optics +1611.08094 Medical Physics +1611.08096 Information Retrieval +1611.08097 Computer Vision and Pattern Recognition +1611.08098 Cryptography and Security +1611.08100 Dynamical Systems +1611.08101 +1611.08102 Theory +1611.08103 Artificial Intelligence +1611.08104 Machine Learning +1611.08105 Analysis of PDEs +1611.08107 Computer Vision and Pattern Recognition +1611.08110 High Energy Astrophysical Phenomena +1611.08113 Dynamical Systems +1611.08114 Materials Science +1611.08115 Phenomenology +1611.08117 Numerical Analysis +1611.08118 Other Statistics +1611.08119 Phenomenology +1611.08120 Information Theory +1611.08122 Numerical Analysis +1611.08123 +1611.08124 Analysis of PDEs +1611.08126 Number Theory +1611.08127 Numerical Analysis +1611.08128 Number Theory +1611.08129 Mesoscale and Nanoscale Physics +1611.08131 Computer Vision and Pattern Recognition +1611.08135 Information Retrieval +1611.08137 Functional Analysis +1611.08138 Quantum Algebra +1611.08139 Representation Theory +1611.08140 Logic +1611.08141 Atomic Physics +1611.08142 Space Physics +1611.08143 Logic +1611.08144 Computers and Society +1611.08146 +1611.08147 Representation Theory +1611.08148 Materials Science +1611.08150 Logic +1611.08152 Logic +1611.08153 Materials Science +1611.08154 Human-Computer Interaction +1611.08155 Materials Science +1611.08158 Optimization and Control +1611.08159 Astrophysics of Galaxies +1611.08160 Statistical Mechanics +1611.08162 Accelerator Physics +1611.08163 Medical Physics +1611.08164 +1611.08166 Phenomenology +1611.08167 Solar and Stellar Astrophysics +1611.08168 Mesoscale and Nanoscale Physics +1611.08171 Space Physics +1611.08173 Probability +1611.08174 Analysis of PDEs +1611.08176 Numerical Analysis +1611.08177 Functional Analysis +1611.08180 Number Theory +1611.08181 Number Theory +1611.08182 Theory +1611.08184 Analysis of PDEs +1611.08185 Differential Geometry +1611.08187 Phenomenology +1611.08190 Geometric Topology +1611.08191 Machine Learning +1611.08192 Statistical Mechanics +1611.08193 History and Philosophy of Physics +1611.08194 Computer Vision and Pattern Recognition +1611.08195 Computer Vision and Pattern Recognition +1611.08196 Cosmology and Nongalactic Astrophysics +1611.08197 High Energy Astrophysical Phenomena +1611.08198 Data Structures and Algorithms +1611.08200 Materials Science +1611.08201 Statistical Mechanics +1611.08202 Optimization and Control +1611.08204 Discrete Mathematics +1611.08205 Materials Science +1611.08206 Optimization and Control +1611.08208 Logic in Computer Science +1611.08209 Data Structures and Algorithms +1611.08210 Phenomenology +1611.08212 Networking and Internet Architecture +1611.08213 Classical Analysis and ODEs +1611.08214 Optics +1611.08215 Computer Vision and Pattern Recognition +1611.08217 Rings and Algebras +1611.08219 Artificial Intelligence +1611.08220 Networking and Internet Architecture +1611.08221 Statistical Mechanics +1611.08223 Lattice +1611.08224 Cell Behavior +1611.08226 Combinatorics +1611.08227 Optimization and Control +1611.08228 Differential Geometry +1611.08230 Learning +1611.08231 Plasma Physics +1611.08232 Analysis of PDEs +1611.08233 Group Theory +1611.08235 Adaptation and Self-Organizing Systems +1611.08236 Optimization and Control +1611.08237 +1611.08243 Earth and Planetary Astrophysics +1611.08244 Number Theory +1611.08245 Space Physics +1611.08246 Mesoscale and Nanoscale Physics +1611.08247 Combinatorics +1611.08249 Representation Theory +1611.08250 Experiment +1611.08251 +1611.08252 Cryptography and Security +1611.08253 Algebraic Topology +1611.08254 Differential Geometry +1611.08256 Machine Learning +1611.08257 Optimization and Control +1611.08258 Computer Vision and Pattern Recognition +1611.08259 Biomolecules +1611.08260 Optimization and Control +1611.08261 Methodology +1611.08262 Social and Information Networks +1611.08263 Operator Algebras +1611.08266 Computational Engineering, Finance, and Science +1611.08267 Information Theory +1611.08268 Robotics +1611.08269 Databases +1611.08270 Combinatorics +1611.08271 Discrete Mathematics +1611.08272 Computer Vision and Pattern Recognition +1611.08273 Systems and Control +1611.08274 Physics and Society +1611.08276 Phenomenology +1611.08277 Analysis of PDEs +1611.08278 Phenomenology +1611.08281 Pattern Formation and Solitons +1611.08283 Analysis of PDEs +1611.08285 Lattice +1611.08286 +1611.08287 Biological Physics +1611.08288 Strongly Correlated Electrons +1611.08289 General Topology +1611.08290 General Topology +1611.08292 Machine Learning +1611.08293 Statistics Theory +1611.08294 Cryptography and Security +1611.08295 Superconductivity +1611.08300 Solar and Stellar Astrophysics +1611.08301 Rings and Algebras +1611.08303 Computer Vision and Pattern Recognition +1611.08305 Astrophysics of Galaxies +1611.08306 Biological Physics +1611.08307 Neural and Evolutionary Computing +1611.08308 Computer Science and Game Theory +1611.08309 Learning +1611.08310 Neurons and Cognition +1611.08312 Number Theory +1611.08313 Numerical Analysis +1611.08316 Information Theory +1611.08317 Fluid Dynamics +1611.08318 Probability +1611.08319 Networking and Internet Architecture +1611.08321 Learning +1611.08322 Systems and Control +1611.08324 Numerical Analysis +1611.08326 Computational Complexity +1611.08327 Systems and Control +1611.08328 Geometric Topology +1611.08330 General Finance +1611.08331 Learning +1611.08333 Statistical Mechanics +1611.08335 Analysis of PDEs +1611.08336 Analysis of PDEs +1611.08337 Materials Science +1611.08338 Numerical Analysis +1611.08339 Combinatorics +1611.08340 Algebraic Geometry +1611.08342 +1611.08343 Optimization and Control +1611.08344 Lattice +1611.08345 Differential Geometry +1611.08348 Statistical Mechanics +1611.08350 Computer Vision and Pattern Recognition +1611.08351 Social and Information Networks +1611.08352 Optimization and Control +1611.08353 Biological Physics +1611.08355 Analysis of PDEs +1611.08357 Instrumentation and Detectors +1611.08358 Computation and Language +1611.08362 Disordered Systems and Neural Networks +1611.08364 Multiagent Systems +1611.08366 Machine Learning +1611.08367 Information Theory +1611.08368 Solar and Stellar Astrophysics +1611.08370 Representation Theory +1611.08372 Machine Learning +1611.08373 Machine Learning +1611.08374 Artificial Intelligence +1611.08375 Mesoscale and Nanoscale Physics +1611.08380 Operator Algebras +1611.08381 Plasma Physics +1611.08382 Operator Algebras +1611.08386 Algebraic Geometry +1611.08387 Computer Vision and Pattern Recognition +1611.08388 Lattice +1611.08389 Computer Vision and Pattern Recognition +1611.08390 Materials Science +1611.08392 Dynamical Systems +1611.08393 Portfolio Management +1611.08395 Mesoscale and Nanoscale Physics +1611.08397 Multimedia +1611.08401 Distributed, Parallel, and Cluster Computing +1611.08403 Cosmology and Nongalactic Astrophysics +1611.08404 +1611.08405 Experiment +1611.08406 Mesoscale and Nanoscale Physics +1611.08407 Theory +1611.08408 Computer Vision and Pattern Recognition +1611.08409 Solar and Stellar Astrophysics +1611.08410 Cryptography and Security +1611.08411 Fluid Dynamics +1611.08412 Solar and Stellar Astrophysics +1611.08414 Atomic Physics +1611.08415 Algebraic Topology +1611.08417 Cryptography and Security +1611.08418 Software Engineering +1611.08420 Information Theory +1611.08421 Representation Theory +1611.08422 Chaotic Dynamics +1611.08423 Classical Analysis and ODEs +1611.08425 Metric Geometry +1611.08427 Differential Geometry +1611.08430 +1611.08432 Networking and Internet Architecture +1611.08434 Optimization and Control +1611.08435 Functional Analysis +1611.08436 Probability +1611.08437 K-Theory and Homology +1611.08441 Experiment +1611.08443 Experiment +1611.08444 Statistics Theory +1611.08445 Disordered Systems and Neural Networks +1611.08446 Astrophysics of Galaxies +1611.08447 Superconductivity +1611.08448 Materials Science +1611.08451 Group Theory +1611.08452 Fluid Dynamics +1611.08454 Solar and Stellar Astrophysics +1611.08455 Superconductivity +1611.08458 Cosmology and Nongalactic Astrophysics +1611.08459 Computation and Language +1611.08461 Computer Vision and Pattern Recognition +1611.08464 Statistics Theory +1611.08465 Fluid Dynamics +1611.08467 Instrumentation and Methods for Astrophysics +1611.08468 +1611.08471 +1611.08472 Computer Vision and Pattern Recognition +1611.08473 Representation Theory +1611.08474 +1611.08477 Number Theory +1611.08478 Analysis of PDEs +1611.08479 Strongly Correlated Electrons +1611.08482 Analysis of PDEs +1611.08483 Statistics Theory +1611.08484 Social and Information Networks +1611.08486 Functional Analysis +1611.08487 Computer Science and Game Theory +1611.08488 Dynamical Systems +1611.08489 Astrophysics of Galaxies +1611.08490 Dynamical Systems +1611.08491 Numerical Analysis +1611.08492 Human-Computer Interaction +1611.08494 Instrumentation and Methods for Astrophysics +1611.08496 Combinatorics +1611.08498 Combinatorics +1611.08499 Artificial Intelligence +1611.08500 General Physics +1611.08501 General Physics +1611.08503 Analysis of PDEs +1611.08504 Phenomenology +1611.08505 Instrumentation and Detectors +1611.08506 Statistical Mechanics +1611.08507 Solar and Stellar Astrophysics +1611.08508 Cosmology and Nongalactic Astrophysics +1611.08509 Materials Science +1611.08510 Computational Finance +1611.08514 Information Theory +1611.08515 Algebraic Geometry +1611.08519 Strongly Correlated Electrons +1611.08520 Human-Computer Interaction +1611.08521 Plasma Physics +1611.08525 Operator Algebras +1611.08526 Plasma Physics +1611.08527 Computer Vision and Pattern Recognition +1611.08528 Experiment +1611.08529 Number Theory +1611.08533 Phenomenology +1611.08534 Phenomenology +1611.08536 Statistical Mechanics +1611.08537 Medical Physics +1611.08538 +1611.08540 Materials Science +1611.08542 +1611.08543 Statistics Theory +1611.08547 Cryptography and Security +1611.08548 Strongly Correlated Electrons +1611.08549 Probability +1611.08550 Digital Libraries +1611.08551 Computational Physics +1611.08552 Astrophysics of Galaxies +1611.08553 Computational Physics +1611.08555 Artificial Intelligence +1611.08556 Representation Theory +1611.08557 Analysis of PDEs +1611.08560 Information Theory +1611.08564 Dynamical Systems +1611.08565 Number Theory +1611.08566 Representation Theory +1611.08569 Phenomenology +1611.08573 Distributed, Parallel, and Cluster Computing +1611.08574 Data Structures and Algorithms +1611.08575 Data Analysis, Statistics and Probability +1611.08577 +1611.08578 Fluid Dynamics +1611.08580 Numerical Analysis +1611.08581 Theory +1611.08584 +1611.08585 Number Theory +1611.08587 Space Physics +cond-mat/0412662 Strongly Correlated Electrons +nlin/0607023 Adaptation and Self-Organizing Systems +quant-ph/0702092 +1104.2530 Representation Theory +1606.02935 General Physics +1002.1356 Combinatorics +1002.3010 General Topology +1209.2090 Statistical Mechanics +1211.1257 +1301.7712 +1303.1928 Atomic and Molecular Clusters +1303.6372 Social and Information Networks +1306.6240 Atomic Physics +1307.0717 Analysis of PDEs +1309.2052 Social and Information Networks +1310.2167 Complex Variables +1311.6216 Dynamical Systems +1312.2026 Solar and Stellar Astrophysics +1401.1651 Numerical Analysis +1402.5990 Statistical Mechanics +1402.6928 Computation +1403.0904 Methodology +1403.0989 Social and Information Networks +1403.4622 Group Theory +1404.0221 Computation +1404.3984 Systems and Control +1405.2273 Chemical Physics +1405.4501 Functional Analysis +1405.6593 +1406.1714 Combinatorics +1406.1814 Numerical Analysis +1406.2106 Physics and Society +1407.0900 Numerical Analysis +1407.3251 Differential Geometry +1409.0350 Optimization and Control +1409.6486 Commutative Algebra +1410.4126 Metric Geometry +1410.6660 Atomic and Molecular Clusters +1410.7876 Computer Vision and Pattern Recognition +1410.8595 Computational Finance +1411.4541 Number Theory +1412.3607 Algebraic Geometry +1501.07421 +1502.01631 +1502.06417 Functional Analysis +1503.05486 Soft Condensed Matter +1503.07125 Optimization and Control +1504.00253 Functional Analysis +1504.05872 Data Analysis, Statistics and Probability +1504.06381 Quantum Algebra +1504.08147 +1505.00180 Soft Condensed Matter +1505.02049 Statistical Mechanics +1506.00113 Quantum Algebra +1506.02222 Methodology +1506.03862 K-Theory and Homology +1506.05074 Experiment +1506.05995 Mesoscale and Nanoscale Physics +1506.06036 +1506.09197 Probability +1507.00886 Phenomenology +1507.04001 Social and Information Networks +1507.04211 Strongly Correlated Electrons +1507.04393 Plasma Physics +1507.04548 Experiment +1507.04769 Optimization and Control +1508.00633 Analysis of PDEs +1508.06968 Statistical Mechanics +1509.01423 Robotics +1509.01996 Soft Condensed Matter +1509.02185 Quantum Gases +1509.04090 Biomolecules +1509.04974 +1509.05735 Optics +1509.05781 Astrophysics of Galaxies +1509.06445 Functional Analysis +1510.02460 Information Theory +1510.04702 +1510.08509 Mesoscale and Nanoscale Physics +1511.00381 Fluid Dynamics +1511.03641 Data Structures and Algorithms +1511.03954 Theory +1511.04530 Numerical Analysis +1511.05561 Phenomenology +1511.06733 Methodology +1511.07957 Numerical Analysis +1511.08352 Experiment +1512.00177 Computation and Language +1512.00247 Representation Theory +1512.00932 Computer Vision and Pattern Recognition +1512.01655 Computer Vision and Pattern Recognition +1512.02117 Cosmology and Nongalactic Astrophysics +1512.03657 Experiment +1512.05220 Neurons and Cognition +1512.05953 Number Theory +1512.07006 +1512.07699 Instrumentation and Detectors +1512.07923 Theory +1512.08362 Representation Theory +1512.08936 Materials Science +1601.00838 +1601.01095 +1601.01148 Commutative Algebra +1601.03112 Chaotic Dynamics +1601.03510 Materials Science +1601.04768 Experiment +1601.04821 +1601.04831 Superconductivity +1601.05148 +1601.06025 Plasma Physics +1601.06066 +1601.07680 Earth and Planetary Astrophysics +1601.07733 Cosmology and Nongalactic Astrophysics +1602.00005 Phenomenology +1602.00420 +1602.00795 Social and Information Networks +1602.00874 Mesoscale and Nanoscale Physics +1602.01783 Learning +1602.01792 Information Retrieval +1602.02876 Statistical Mechanics +1602.03064 Disordered Systems and Neural Networks +1602.03319 Mesoscale and Nanoscale Physics +1602.03832 Phenomenology +1602.04749 Functional Analysis +1602.05473 Machine Learning +1602.06056 Robotics +1602.07161 Strongly Correlated Electrons +1602.07237 Analysis of PDEs +1602.08351 Strongly Correlated Electrons +1603.00204 Differential Geometry +1603.02238 Neural and Evolutionary Computing +1603.03673 Phenomenology +1603.04600 Analysis of PDEs +1603.05119 Combinatorics +1603.07473 Materials Science +1603.08330 Superconductivity +1603.08796 High Energy Astrophysical Phenomena +1603.08864 Theory +1603.09388 Statistics Theory +1604.00375 Quantum Algebra +1604.00395 Theory +1604.00611 Dynamical Systems +1604.01306 Experiment +1604.03856 Astrophysics of Galaxies +1604.03859 Analysis of PDEs +1604.04322 Applications +1604.05232 Experiment +1604.05239 Experiment +1604.05676 Computers and Society +1604.05692 Computer Science and Game Theory +1604.06321 Theory +1604.06881 Soft Condensed Matter +1604.07002 Robotics +1604.07214 Combinatorics +1604.07545 Robotics +1604.07687 Popular Physics +1604.07898 Robotics +1604.07930 Superconductivity +1604.08098 Computation +1605.00782 +1605.01115 Computer Vision and Pattern Recognition +1605.01192 Group Theory +1605.02781 +1605.04006 Computer Vision and Pattern Recognition +1605.04060 Optics +1605.04619 Genomics +1605.05157 Robotics +1605.05860 Machine Learning +1605.06185 Algebraic Geometry +1605.06484 Number Theory +1605.07637 Quantum Gases +1605.07717 Learning +1605.07767 Software Engineering +1605.07937 Representation Theory +1605.07949 Representation Theory +1605.08061 Dynamical Systems +1605.08463 Strongly Correlated Electrons +1605.08478 Learning +1605.08657 Numerical Analysis +1605.08696 Fluid Dynamics +1605.09638 +1606.01488 Dynamical Systems +1606.01910 Cosmology and Nongalactic Astrophysics +1606.02104 Number Theory +1606.02466 Materials Science +1606.03177 Statistical Mechanics +1606.03180 Logic in Computer Science +1606.03259 Combinatorics +1606.03790 Combinatorics +1606.04197 +1606.04289 Computation and Language +1606.04435 Cryptography and Security +1606.04465 +1606.04531 Commutative Algebra +1606.04601 Information Theory +1606.04801 Computer Vision and Pattern Recognition +1606.04825 Probability +1606.04844 Statistical Mechanics +1606.04893 Materials Science +1606.04903 Physics and Society +1606.04940 Medical Physics +1606.04943 Phenomenology +1606.04945 Theory +1606.04948 Theory +1606.04953 Phenomenology +1606.04954 High Energy Astrophysical Phenomena +1606.04956 Artificial Intelligence +1606.04960 Computer Science and Game Theory +1606.04963 Computation and Language +1606.04964 +1606.04967 Geometric Topology +1606.04971 Physics and Society +1606.04972 Physics and Society +1606.04974 +1606.04978 Data Structures and Algorithms +1606.04980 +1606.04985 Computer Vision and Pattern Recognition +1606.04986 Combinatorics +1606.04991 Learning +1606.04992 Computer Vision and Pattern Recognition +1606.04995 Networking and Internet Architecture +1606.04997 Networking and Internet Architecture +1606.05000 Methodology +1606.05004 Neurons and Cognition +1606.05006 Neurons and Cognition +1606.05007 Computation and Language +1606.05008 Soft Condensed Matter +1606.05012 +1606.05013 Analysis of PDEs +1606.05014 Analysis of PDEs +1606.05017 Human-Computer Interaction +1606.05018 Machine Learning +1606.05019 Information Theory +1606.05020 Metric Geometry +1606.05022 Methodology +1606.05025 Information Theory +1606.05026 Functional Analysis +1606.05029 Computation and Language +1606.05031 Data Structures and Algorithms +1606.05032 Computer Vision and Pattern Recognition +1606.05034 Networking and Internet Architecture +1606.05035 Fluid Dynamics +1606.05037 Classical Physics +1606.05038 Analysis of PDEs +1606.05039 Number Theory +1606.05040 Analysis of PDEs +1606.05041 Classical Physics +1606.05043 Information Theory +1606.05046 Statistics Theory +1606.05047 Networking and Internet Architecture +1606.05049 Methodology +1606.05050 Computational Complexity +1606.05051 Accelerator Physics +1606.05052 Mesoscale and Nanoscale Physics +1606.05053 Databases +1606.05055 Plasma Physics +1606.05057 Information Theory +1606.05058 Category Theory +1606.05060 Machine Learning +1606.05062 Probability +1606.05063 Commutative Algebra +1606.05064 Differential Geometry +1606.05065 Social and Information Networks +1606.05066 Statistical Mechanics +1606.05068 +1606.05070 Numerical Analysis +1606.05072 Mesoscale and Nanoscale Physics +1606.05073 Superconductivity +1606.05077 Combinatorics +1606.05079 Mathematical Finance +1606.05081 Optics +1606.05085 Numerical Analysis +1606.05086 +1606.05087 Phenomenology +1606.05090 Mesoscale and Nanoscale Physics +1606.05092 Software Engineering +1606.05093 Numerical Analysis +1606.05094 Hardware Architecture +1606.05095 Complex Variables +1606.05099 Dynamical Systems +1606.05100 Statistics Theory +1606.05101 Analysis of PDEs +1606.05103 Analysis of PDEs +1606.05105 Machine Learning +1606.05107 Applications +1606.05110 Machine Learning +1606.05112 Software Engineering +1606.05114 Fluid Dynamics +1606.05117 Solar and Stellar Astrophysics +1606.05118 Phenomenology +1606.05119 Discrete Mathematics +1606.05122 Cellular Automata and Lattice Gases +1606.05123 Data Structures and Algorithms +1606.05124 Robotics +1606.05128 Mesoscale and Nanoscale Physics +1606.05130 Cosmology and Nongalactic Astrophysics +1606.05132 Materials Science +1606.05133 Group Theory +1606.05134 Distributed, Parallel, and Cluster Computing +1606.05135 Information Theory +1606.05139 Probability +1606.05140 Logic +1606.05141 Theory +1606.05144 Combinatorics +1606.05145 Optics +1606.05148 Other Condensed Matter +1606.05149 +1606.05150 Dynamical Systems +1606.05153 Quantitative Methods +1606.05155 Number Theory +1606.05159 Dynamical Systems +1606.05161 Representation Theory +1606.05162 Complex Variables +1606.05165 Materials Science +1606.05167 Statistics Theory +1606.05168 Systems and Control +1606.05169 Neural and Evolutionary Computing +1606.05172 Discrete Mathematics +1606.05173 Analysis of PDEs +1606.05174 Artificial Intelligence +1606.05177 Information Theory +1606.05179 Social and Information Networks +1606.05182 Information Theory +1606.05185 Differential Geometry +1606.05190 Earth and Planetary Astrophysics +1606.05191 Algebraic Topology +1606.05193 Solar and Stellar Astrophysics +1606.05194 Other Condensed Matter +1606.05195 Number Theory +1606.05197 Classical Analysis and ODEs +1606.05199 Optics +1606.05200 Computer Vision and Pattern Recognition +1606.05203 Methodology +1606.05206 Functional Analysis +1606.05207 Numerical Analysis +1606.05208 Functional Analysis +1606.05209 Social and Information Networks +1606.05210 Data Structures and Algorithms +1606.05212 Mesoscale and Nanoscale Physics +1606.05213 Astrophysics of Galaxies +1606.05214 Spectral Theory +1606.05216 Analysis of PDEs +1606.05217 Instrumentation and Methods for Astrophysics +1606.05220 Strongly Correlated Electrons +1606.05221 Theory +1606.05224 Earth and Planetary Astrophysics +1606.05225 Data Structures and Algorithms +1606.05228 Machine Learning +1606.05231 Atomic Physics +1606.05232 +1606.05233 Computer Vision and Pattern Recognition +1606.05235 Complex Variables +1606.05236 Functional Analysis +1606.05237 Analysis of PDEs +1606.05238 Soft Condensed Matter +1606.05241 Machine Learning +1606.05242 Social and Information Networks +1606.05243 Complex Variables +1606.05244 Statistical Mechanics +1606.05245 Systems and Control +1606.05248 Social and Information Networks +1606.05253 Soft Condensed Matter +1606.05255 Computer Vision and Pattern Recognition +1606.05256 Geophysics +1606.05266 Cosmology and Nongalactic Astrophysics +1606.05267 Cosmology and Nongalactic Astrophysics +1606.05268 Information Theory +1606.05272 Systems and Control +1606.05273 Machine Learning +1606.05275 Machine Learning +1606.05276 Representation Theory +1606.05277 Methodology +1606.05279 Methodology +1606.05281 Materials Science +1606.05286 Computation and Language +1606.05287 Functional Analysis +1606.05288 Soft Condensed Matter +1606.05289 Data Structures and Algorithms +1606.05290 General Mathematics +1606.05293 Distributed, Parallel, and Cluster Computing +1606.05294 Multimedia +1606.05298 General Mathematics +1606.05299 General Mathematics +1606.05302 Statistics Theory +1606.05303 Representation Theory +1606.05304 Operator Algebras +1606.05305 Representation Theory +1606.05306 Numerical Analysis +1606.05310 Computer Vision and Pattern Recognition +1606.05311 General Topology +1606.05312 Artificial Intelligence +1606.05313 Learning +1606.05314 History and Philosophy of Physics +1606.05315 Analysis of PDEs +1606.05316 Learning +1606.05317 Probability +1606.05319 Materials Science +1606.05323 Fluid Dynamics +1606.05325 Machine Learning +1606.05326 Phenomenology +1606.05327 Symplectic Geometry +1606.05331 Computational Complexity +1606.05332 Information Theory +math-ph/0702042 +math/0405269 Geometric Topology +math/0702036 Probability +1501.00315 Cosmology and Nongalactic Astrophysics +1501.00963 Instrumentation and Methods for Astrophysics +1501.01128 Geometric Topology +1501.01188 High Energy Astrophysical Phenomena +1501.01504 Portfolio Management +1501.01519 Analysis of PDEs +1501.02800 Astrophysics of Galaxies +1501.02849 Combinatorics +1501.02938 Strongly Correlated Electrons +1501.03038 Experiment +1501.03336 Distributed, Parallel, and Cluster Computing +1501.04461 Optics +1501.04479 Optics +1501.04724 Probability +1501.04782 Computer Vision and Pattern Recognition +1501.04929 +1501.05087 High Energy Astrophysical Phenomena +1501.05138 Digital Libraries +1501.05140 Information Retrieval +1501.05194 Machine Learning +1501.05269 Physics and Society +1501.05498 Astrophysics of Galaxies +1501.05550 Materials Science +1501.05694 Astrophysics of Galaxies +1501.05911 Earth and Planetary Astrophysics +1501.06352 Astrophysics of Galaxies +1501.06405 High Energy Astrophysical Phenomena +1501.06578 High Energy Astrophysical Phenomena +1501.06858 Instrumentation and Detectors +1501.07068 +1501.07105 Strongly Correlated Electrons +1501.07897 Instrumentation and Methods for Astrophysics +1502.00309 Materials Science +1502.00394 Astrophysics of Galaxies +1502.00513 +1502.00638 Instrumentation and Methods for Astrophysics +1502.01040 Algebraic Geometry +1502.01161 Instrumentation and Detectors +1502.01727 Phenomenology +1502.01747 +1502.01904 +1502.02360 Mesoscale and Nanoscale Physics +1502.02650 High Energy Astrophysical Phenomena +1502.02773 +1502.03033 Mesoscale and Nanoscale Physics +1502.03231 Astrophysics of Galaxies +1502.03244 High Energy Astrophysical Phenomena +1502.03315 Astrophysics of Galaxies +1502.03383 General Topology +1502.04045 +1502.04261 +1502.04609 Information Retrieval +1502.05051 Solar and Stellar Astrophysics +1502.05070 Dynamical Systems +1502.05858 Astrophysics of Galaxies +1502.06771 Astrophysics of Galaxies +1502.07120 Systems and Control +1502.07240 Atomic Physics +1502.07328 Optimization and Control +1502.07573 Superconductivity +1509.00560 Earth and Planetary Astrophysics +1509.00702 Algebraic Topology +1509.00933 Solar and Stellar Astrophysics +1509.01291 Statistics Theory +1509.01906 Statistics Theory +1509.02020 Mesoscale and Nanoscale Physics +1509.02113 Atomic Physics +1509.02823 Mesoscale and Nanoscale Physics +1509.02917 Earth and Planetary Astrophysics +1509.03090 High Energy Astrophysical Phenomena +1509.03322 High Energy Astrophysical Phenomena +1509.03464 Cosmology and Nongalactic Astrophysics +1509.04312 Solar and Stellar Astrophysics +1509.04396 Astrophysics of Galaxies +1509.04458 High Energy Astrophysical Phenomena +1509.04513 Artificial Intelligence +1509.05581 Statistics Theory +1509.06206 Superconductivity +1509.06212 High Energy Astrophysical Phenomena +1509.07147 Astrophysics of Galaxies +1509.07432 Astrophysics of Galaxies +1509.08296 Mesoscale and Nanoscale Physics +1509.08378 Materials Science +1509.09197 +1509.09234 High Energy Astrophysical Phenomena +1510.00004 High Energy Astrophysical Phenomena +1510.01723 Statistical Mechanics +1510.02126 Instrumentation and Detectors +1510.02381 Astrophysics of Galaxies +1510.02623 Probability +1510.02681 Astrophysics of Galaxies +1510.03184 Strongly Correlated Electrons +1510.03402 Dynamical Systems +1510.03474 +1510.04973 Astrophysics of Galaxies +1510.05480 Dynamical Systems +1510.06244 Strongly Correlated Electrons +1510.06248 Earth and Planetary Astrophysics +1510.06709 Quantum Gases +1510.06902 Optics +1510.06926 Analysis of PDEs +1510.07003 Atomic Physics +1510.07422 Earth and Planetary Astrophysics +1510.08450 Astrophysics of Galaxies +1510.09157 High Energy Astrophysical Phenomena +1510.09167 +0803.1639 K-Theory and Homology +0808.1395 Geometric Topology +0901.0164 Superconductivity +0905.1225 Superconductivity +0905.4210 Strongly Correlated Electrons +0906.0658 Pricing of Securities +0911.1631 Strongly Correlated Electrons +1005.1458 Number Theory +1008.3126 Operator Algebras +1105.2709 +1205.5651 Sound +1205.6298 Differential Geometry +1206.0384 General Finance +1210.5065 Logic in Computer Science +1303.0536 Fluid Dynamics +1303.0537 Fluid Dynamics +1303.4465 Strongly Correlated Electrons +1303.5441 Social and Information Networks +1303.6378 Information Theory +1306.0437 Symplectic Geometry +1309.3458 Data Structures and Algorithms +1310.0958 Chaotic Dynamics +1311.1391 Group Theory +1311.1664 Materials Science +1311.5328 Probability +1312.6718 Dynamical Systems +1401.2590 Theory +1401.3973 Learning +1401.6054 Discrete Mathematics +1402.3141 Functional Analysis +1402.3699 Rings and Algebras +1404.6238 Probability +1405.5159 Chaotic Dynamics +1405.5184 Category Theory +1405.7689 Strongly Correlated Electrons +1405.7943 Cosmology and Nongalactic Astrophysics +1408.3518 Optimization and Control +1408.3898 Optimization and Control +1408.4312 Operator Algebras +1409.0285 Probability +1409.1025 Statistics Theory +1409.1829 Logic +1409.3232 Theory +1409.4025 Superconductivity +1409.4346 Functional Analysis +1409.4531 Disordered Systems and Neural Networks +1410.3491 +1410.4815 Theory +1411.4685 Number Theory +1412.1079 +1412.2388 Dynamical Systems +1412.3662 +1501.00300 Differential Geometry +1501.01770 High Energy Astrophysical Phenomena +1501.01948 Solar and Stellar Astrophysics +1501.02779 +1501.03535 +1501.05956 Physics and Society +1501.07399 Learning +1502.02693 Dynamical Systems +1502.02748 Combinatorics +1502.03600 Fluid Dynamics +1502.05302 Analysis of PDEs +1502.05690 Dynamical Systems +1502.06179 Dynamical Systems +1503.01883 Learning +1503.04749 Combinatorics +1503.08062 Theory +1503.08107 Biological Physics +1504.01926 Dynamical Systems +1504.03186 +1504.06183 General Physics +1504.06546 Cosmology and Nongalactic Astrophysics +1504.07871 Atomic Physics +1505.00136 Systems and Control +1505.01426 Combinatorics +1505.02435 Distributed, Parallel, and Cluster Computing +1505.02564 Complex Variables +1505.02932 Commutative Algebra +1505.05397 Group Theory +1505.07106 Strongly Correlated Electrons +1506.01319 Materials Science +1506.01324 Materials Science +1506.02367 Logic in Computer Science +1506.02429 +1506.04108 +1506.04327 Statistical Mechanics +1506.05479 Strongly Correlated Electrons +1506.06577 Materials Science +1506.06919 Classical Physics +1506.06937 Analysis of PDEs +1506.06986 Phenomenology +1506.08502 Optics +1506.08608 +1506.08836 Statistical Mechanics +1507.00068 +1507.00254 Algebraic Geometry +1507.00831 Atomic Physics +1507.02234 Superconductivity +1507.02607 +1507.04281 Phenomenology +1507.06317 Cosmology and Nongalactic Astrophysics +1507.07504 Mesoscale and Nanoscale Physics +1507.08245 Populations and Evolution +1507.08778 Astrophysics of Galaxies +1508.00744 Strongly Correlated Electrons +1508.03364 Theory +1508.04018 Chemical Physics +1508.05210 Phenomenology +1508.06645 Phenomenology +1508.06905 Statistical Mechanics +1508.07413 Phenomenology +1508.07628 Experiment +1509.00494 Superconductivity +1509.01396 Networking and Internet Architecture +1509.01869 +1509.01891 Chemical Physics +1509.02119 Dynamical Systems +1509.02466 +1509.02560 Chemical Physics +1509.04217 Quantum Gases +1509.04718 Theory +1509.05100 Programming Languages +1509.06374 Theory +1509.07316 Optics +1509.07697 +1509.07865 Strongly Correlated Electrons +1509.07885 Theory +1509.07888 Optics +1509.08436 Phenomenology +1509.08646 Optics +1509.09016 Materials Science +1509.09035 +1510.01203 +1510.01311 +1510.01505 Geometric Topology +1510.02423 Representation Theory +1510.03448 Theory +1510.04938 Atomic Physics +1510.05473 Chemical Physics +1510.05587 Disordered Systems and Neural Networks +1510.05975 Mesoscale and Nanoscale Physics +1510.06966 +1510.07280 Statistical Finance +1510.07466 Phenomenology +1510.07533 Superconductivity +1510.08047 Operator Algebras +1510.08354 Theory +1510.09031 +1510.09121 Complex Variables +1511.01198 Mesoscale and Nanoscale Physics +1511.01510 Strongly Correlated Electrons +1511.01731 Logic +1511.01910 Phenomenology +1511.02479 +1511.02733 Dynamical Systems +1511.02876 +1511.03484 Phenomenology +1511.03574 Theory +1511.04429 Phenomenology +1511.04461 Phenomenology +1511.05418 Superconductivity +1511.05449 Data Structures and Algorithms +1511.05686 Mesoscale and Nanoscale Physics +1511.05947 Cosmology and Nongalactic Astrophysics +1511.06359 Learning +1511.07114 Operator Algebras +1511.07173 Materials Science +1511.07220 Chaotic Dynamics +1511.07410 Algebraic Geometry +1511.08463 Numerical Analysis +1512.00385 Atomic Physics +1512.00418 Solar and Stellar Astrophysics +1512.00591 Cosmology and Nongalactic Astrophysics +1512.00785 Statistical Mechanics +1512.00805 Strongly Correlated Electrons +1512.01381 Theory +1512.02029 +1512.03071 Phenomenology +1512.03178 +1512.03635 Statistical Mechanics +1512.03683 Fluid Dynamics +1512.04299 Theory +1512.04678 Superconductivity +1512.05083 +1512.05239 Theory +1512.05563 High Energy Astrophysical Phenomena +1512.05866 +1512.05907 Astrophysics of Galaxies +1512.07168 Strongly Correlated Electrons +1512.07426 +1512.07473 +1512.07562 +1512.07789 Phenomenology +1512.07881 +1512.07912 Theory +1512.08087 +1512.08191 Applications +1512.08211 Statistical Mechanics +1512.09111 Strongly Correlated Electrons +1512.09121 Theory +1601.00075 Phenomenology +1601.00311 Computer Vision and Pattern Recognition +1601.00379 Mesoscale and Nanoscale Physics +1601.01036 Soft Condensed Matter +1601.01094 Strongly Correlated Electrons +1601.01973 +1601.02336 Mesoscale and Nanoscale Physics +1601.02974 Neurons and Cognition +1601.02988 +1601.03771 High Energy Astrophysical Phenomena +1601.03837 Cosmology and Nongalactic Astrophysics +1601.03844 Materials Science +1601.03887 Fluid Dynamics +1601.04015 +1601.04470 Chemical Physics +1601.04587 Lattice +1601.04596 Phenomenology +1601.04755 Computational Geometry +1601.04846 Strongly Correlated Electrons +1601.05169 Differential Geometry +1601.05440 Statistical Mechanics +1601.05459 Superconductivity +1601.05720 Cosmology and Nongalactic Astrophysics +1601.05883 Numerical Analysis +1601.06175 Materials Science +1601.06349 High Energy Astrophysical Phenomena +1601.06399 Phenomenology +1601.06482 Materials Science +1601.06587 +1601.06758 Dynamical Systems +1601.08063 Phenomenology +1602.00103 Strongly Correlated Electrons +1602.00123 Superconductivity +1602.00324 Lattice +1602.00371 +1602.02754 Astrophysics of Galaxies +1602.02773 Astrophysics of Galaxies +1602.02818 +1602.02870 Soft Condensed Matter +1602.03152 Materials Science +1602.03344 Phenomenology +1602.03380 +1602.03525 Quantum Gases +1602.04302 Databases +1602.04327 Number Theory +1602.04569 Soft Condensed Matter +1602.04819 Astrophysics of Galaxies +1602.05122 Phenomenology +1602.05674 Earth and Planetary Astrophysics +1602.06027 +1602.06304 Astrophysics of Galaxies +1602.06419 Theory +1602.06742 Strongly Correlated Electrons +1602.07369 Fluid Dynamics +1602.08077 Strongly Correlated Electrons +1603.00225 Optics +1603.00277 Materials Science +1603.01177 Solar and Stellar Astrophysics +1603.01447 Phenomenology +1603.01724 Theory +1603.01927 +1603.02151 Experiment +1603.02623 Statistical Mechanics +1603.02661 Theory +1603.03189 Materials Science +1603.03423 Theory +1603.04110 Artificial Intelligence +1603.04463 Materials Science +1603.04468 Phenomenology +1603.04696 Cosmology and Nongalactic Astrophysics +1603.04838 Computer Vision and Pattern Recognition +1603.04853 Earth and Planetary Astrophysics +1603.05288 Superconductivity +1603.05491 Astrophysics of Galaxies +1603.05844 Astrophysics of Galaxies +1603.05854 +1603.05871 Fluid Dynamics +1603.06127 Computation and Language +1603.06550 Superconductivity +1603.07667 Phenomenology +1603.08348 Quantum Gases +1603.08436 Phenomenology +1603.08506 High Energy Astrophysical Phenomena +1603.08942 Earth and Planetary Astrophysics +1603.09112 Materials Science +1603.09116 Atomic Physics +1603.09682 Soft Condensed Matter +1604.00720 Mesoscale and Nanoscale Physics +1604.01313 High Energy Astrophysical Phenomena +1604.01329 Subcellular Processes +1604.01521 Instrumentation and Methods for Astrophysics +1604.01636 Phenomenology +1604.01724 Operator Algebras +1604.01903 Phenomenology +1604.02053 Probability +1604.02462 High Energy Astrophysical Phenomena +1604.03060 Classical Physics +1604.03251 Soft Condensed Matter +1604.03440 Fluid Dynamics +1604.03719 High Energy Astrophysical Phenomena +1604.03906 Optimization and Control +1604.04878 Biological Physics +1604.05166 Strongly Correlated Electrons +1604.05484 Cosmology and Nongalactic Astrophysics +1604.05527 Soft Condensed Matter +1604.06271 General Physics +1604.06438 Physics and Society +1604.07580 Solar and Stellar Astrophysics +1604.08223 Cosmology and Nongalactic Astrophysics +1604.08444 +1604.08783 Solar and Stellar Astrophysics +1605.00773 Combinatorics +1605.00924 +1605.01729 Theory +1605.01775 Computer Vision and Pattern Recognition +1605.02126 +1605.02503 Strongly Correlated Electrons +1605.02618 Combinatorics +1605.02859 Representation Theory +1605.03029 Algebraic Geometry +1605.03147 Group Theory +1605.03481 Learning +1605.03782 Optimization and Control +1605.03908 +1605.03931 Functional Analysis +1605.03938 Cosmology and Nongalactic Astrophysics +1605.03947 Cosmology and Nongalactic Astrophysics +1605.04268 Theory +1605.04345 Phenomenology +1605.04389 Optics +1605.04403 Representation Theory +1605.04483 Analysis of PDEs +1605.04673 Analysis of PDEs +1605.04730 Combinatorics +1605.04851 Information Theory +1605.04895 Chemical Physics +1605.04897 Emerging Technologies +1605.04898 Analysis of PDEs +1605.04915 Instrumentation and Methods for Astrophysics +1605.04924 Earth and Planetary Astrophysics +1605.04929 +1605.04930 Multimedia +1605.04931 Materials Science +1605.04932 Data Analysis, Statistics and Probability +1605.04934 Robotics +1605.04936 Materials Science +1605.04940 Risk Management +1605.04941 Pricing of Securities +1605.04942 Materials Science +1605.04945 Statistical Finance +1605.04949 Trading and Market Microstructure +1605.04950 Optics +1605.04957 Superconductivity +1605.04961 Functional Analysis +1605.04963 Computation +1605.04966 Networking and Internet Architecture +1605.04968 +1605.04969 Combinatorics +1605.04971 Networking and Internet Architecture +1605.04976 +1605.04977 +1605.04979 Solar and Stellar Astrophysics +1605.04980 Earth and Planetary Astrophysics +1605.04982 Data Structures and Algorithms +1605.04983 Combinatorics +1605.04984 Computational Engineering, Finance, and Science +1605.04985 +1605.04986 Learning +1605.04991 Group Theory +1605.04994 +1605.04995 Optimization and Control +1605.04996 Computer Vision and Pattern Recognition +1605.05001 Soft Condensed Matter +1605.05003 Earth and Planetary Astrophysics +1605.05007 Analysis of PDEs +1605.05009 Rings and Algebras +1605.05011 Learning +1605.05013 +1605.05015 Atomic Physics +1605.05017 Materials Science +1605.05021 Accelerator Physics +1605.05022 Phenomenology +1605.05023 Numerical Analysis +1605.05024 Cryptography and Security +1605.05027 Strongly Correlated Electrons +1605.05030 Dynamical Systems +1605.05031 +1605.05036 Metric Geometry +1605.05037 Information Theory +1605.05039 +1605.05041 +1605.05042 Numerical Analysis +1605.05043 Materials Science +1605.05047 Materials Science +1605.05050 Probability +1605.05053 +1605.05054 Computer Vision and Pattern Recognition +1605.05055 Statistics Theory +1605.05056 Combinatorics +1605.05057 Mathematical Software +1605.05059 Phenomenology +1605.05060 Numerical Analysis +1605.05062 Representation Theory +1605.05063 Analysis of PDEs +1605.05065 Number Theory +1605.05067 Data Structures and Algorithms +1605.05069 Statistics Theory +1605.05070 Information Theory +1605.05071 +1605.05076 Differential Geometry +1605.05079 Logic in Computer Science +1605.05082 Symbolic Computation +1605.05083 +1605.05084 Probability +1605.05086 Mesoscale and Nanoscale Physics +1605.05089 Representation Theory +1605.05091 Earth and Planetary Astrophysics +1605.05094 Probability +1605.05096 Optimization and Control +1605.05097 Optimization and Control +1605.05099 Mesoscale and Nanoscale Physics +1605.05100 Mathematical Finance +1605.05101 Computation and Language +1605.05105 Theory +1605.05109 Distributed, Parallel, and Cluster Computing +1605.05111 Materials Science +1605.05112 Category Theory +1605.05114 Computer Science and Game Theory +1605.05115 Analysis of PDEs +1605.05117 Operator Algebras +1605.05118 Multimedia +1605.05119 +1605.05120 Human-Computer Interaction +1605.05122 Human-Computer Interaction +1605.05123 Information Theory +1605.05126 Soft Condensed Matter +1605.05130 Representation Theory +1605.05131 Rings and Algebras +1605.05135 Materials Science +1605.05139 Physics and Society +1605.05142 Learning +1605.05144 +1605.05153 Optimization and Control +1605.05154 Phenomenology +1605.05159 +1605.05163 Group Theory +1605.05173 Information Theory +1605.05174 Optics +1605.05180 Computer Vision and Pattern Recognition +1605.05181 Classical Analysis and ODEs +1605.05188 Materials Science +1605.05190 Operator Algebras +1605.05191 Probability +1605.05192 Probability +1605.05193 Phenomenology +1605.05197 Computer Vision and Pattern Recognition +1605.05198 Number Theory +1605.05201 Numerical Analysis +1605.05202 Phenomenology +1605.05203 Other Condensed Matter +1605.05204 Number Theory +1605.05206 Probability +1605.05211 Mesoscale and Nanoscale Physics +1605.05212 Learning +1605.05215 Strongly Correlated Electrons +1605.05216 Neural and Evolutionary Computing +1605.05222 Data Analysis, Statistics and Probability +1605.05223 Learning +1605.05229 Functional Analysis +1605.05231 Data Structures and Algorithms +1605.05233 Exactly Solvable and Integrable Systems +1605.05236 Data Structures and Algorithms +1605.05238 Algebraic Geometry +1605.05239 Machine Learning +1605.05240 Number Theory +1605.05241 Experiment +1605.05245 Numerical Analysis +1605.05246 General Physics +1605.05247 Quantitative Methods +1605.05248 Classical Analysis and ODEs +1605.05251 Information Theory +1605.05252 Analysis of PDEs +1605.05253 Analysis of PDEs +1605.05258 Computer Vision and Pattern Recognition +1605.05260 Combinatorics +1605.05265 Number Theory +1605.05266 Analysis of PDEs +1605.05267 Differential Geometry +1605.05269 Information Theory +1605.05272 Computer Vision and Pattern Recognition +1605.05276 General Topology +1605.05279 General Topology +1605.05280 Cryptography and Security +1605.05281 Information Theory +1605.05287 Combinatorics +1605.05295 Phenomenology +1605.05296 Neural and Evolutionary Computing +1605.05297 Numerical Analysis +1605.05299 Representation Theory +1605.05300 Representation Theory +1605.05301 Probability +1605.05302 Plasma Physics +1605.05303 Artificial Intelligence +1605.05305 Artificial Intelligence +1605.05308 Analysis of PDEs +1605.05309 Methodology +hep-ph/0501132 Phenomenology +math/0201091 Differential Geometry +math/0306054 Geometric Topology +math/0509053 Geometric Topology +0901.2344 Earth and Planetary Astrophysics +0906.3414 Earth and Planetary Astrophysics +0910.1070 Representation Theory +1007.0882 Representation Theory +1010.3797 Operator Algebras +1101.2432 Earth and Planetary Astrophysics +1108.5757 Discrete Mathematics +1110.5313 Earth and Planetary Astrophysics +1201.6350 Algebraic Geometry +1203.6017 Earth and Planetary Astrophysics +1205.1552 Networking and Internet Architecture +1205.1912 Quantitative Methods +1205.2229 Solar and Stellar Astrophysics +1205.2231 Quantum Gases +1205.2813 Quantum Gases +1205.3908 Experiment +1205.3915 General Topology +1205.3949 Superconductivity +1205.3982 Computer Science and Game Theory +1205.5323 Numerical Analysis +1205.5398 Probability +1205.5689 Astrophysics of Galaxies +1205.6216 Solar and Stellar Astrophysics +1205.6282 Theory +1205.6385 General Physics +1205.6787 Data Structures and Algorithms +1205.6843 Methodology +1206.0302 Human-Computer Interaction +1206.0356 +1206.1374 Metric Geometry +1206.1520 Solar and Stellar Astrophysics +1206.1752 Quantum Gases +1206.1795 Strongly Correlated Electrons +1206.3240 Data Structures and Algorithms +1206.3755 Physics and Society +1206.3982 Theory +1206.4994 Superconductivity +1206.5221 Combinatorics +1206.5946 Biological Physics +1206.6406 Learning +1206.6672 Materials Science +1208.0036 Functional Analysis +1208.0177 +1208.0503 Materials Science +1208.0745 +1208.0968 Number Theory +1208.1070 Information Theory +1208.1470 Analysis of PDEs +1208.1943 Differential Geometry +1208.3326 Strongly Correlated Electrons +1208.4129 Algebraic Geometry +1208.4145 Databases +1208.4522 Optics +1208.4583 Neural and Evolutionary Computing +1208.5425 +1208.5827 +1208.5934 Commutative Algebra +1208.6299 Instrumentation and Methods for Astrophysics +1208.6441 Materials Science +1211.3045 Earth and Planetary Astrophysics +1305.1821 Group Theory +1308.2818 Complex Variables +1309.2326 Algebraic Geometry +1310.4613 Combinatorics +1312.1474 Physics and Society +1403.1499 Quantum Gases +1403.7922 Cryptography and Security +1405.2164 Differential Geometry +1406.5287 Representation Theory +1407.5760 +1408.3008 +1408.3758 +1408.4394 +1409.5895 Cell Behavior +1410.0911 Probability +1411.3405 +1412.3743 Probability +1412.4010 +1412.4405 Combinatorics +1501.01228 Fluid Dynamics +1502.01023 High Energy Astrophysical Phenomena +1502.01748 Instrumentation and Detectors +1502.02454 Artificial Intelligence +1502.04795 Probability +1502.06947 Differential Geometry +1503.02227 Representation Theory +1504.00936 Experiment +1504.01287 Cryptography and Security +1504.03189 Solar and Stellar Astrophysics +1504.05174 +1505.06391 Classical Physics +1505.06748 Differential Geometry +1506.01608 Earth and Planetary Astrophysics +1506.02495 +1506.02995 Superconductivity +1506.07045 Phenomenology +1508.01688 Combinatorics +1508.02973 Statistics Theory +1508.03819 Artificial Intelligence +1508.03831 Logic +1508.04368 Mesoscale and Nanoscale Physics +1508.07372 Data Structures and Algorithms +1509.00814 Statistical Mechanics +1509.02937 Quantum Algebra +1509.08226 Lattice +1510.02821 Probability +1510.03225 Methodology +1510.05210 Algebraic Geometry +1511.01517 Operator Algebras +1511.02400 Superconductivity +1511.04068 Probability +1511.04809 Algebraic Topology +1511.07414 Cosmology and Nongalactic Astrophysics +1511.07890 Quantum Gases +1512.00799 Category Theory +1512.04295 Computer Vision and Pattern Recognition +1512.07160 Computational Geometry +1512.08504 General Physics +1512.08849 Computation and Language +1601.00593 Operator Algebras +1601.00671 Quantum Gases +1601.00799 Phenomenology +1601.03851 Mesoscale and Nanoscale Physics +1601.03859 High Energy Astrophysical Phenomena +1601.04997 +1601.05616 Differential Geometry +1601.06006 +1601.06276 Analysis of PDEs +1602.00187 Strongly Correlated Electrons +1602.01341 Analysis of PDEs +1602.02946 Differential Geometry +1602.03311 Optimization and Control +1602.04273 Group Theory +1602.05112 Learning +1602.05213 Analysis of PDEs +1602.05593 Theory +1602.06334 General Physics +1602.06590 Statistical Mechanics +1602.07112 Networking and Internet Architecture +1602.07468 Analysis of PDEs +1602.09119 Number Theory +1603.01205 Operator Algebras +1603.03800 Number Theory +1603.07368 +1603.08301 Analysis of PDEs +1603.08666 Other Computer Science +1603.09629 Optimization and Control +1604.03620 Strongly Correlated Electrons +1604.04536 Analysis of PDEs +1604.04551 Materials Science +1604.07288 Theory +1604.07820 Statistical Mechanics +1604.08295 +1605.00168 Analysis of PDEs +1605.01082 Experiment +1605.01673 Statistical Mechanics +1605.02918 Phenomenology +1605.03042 Functional Analysis +1605.03085 Computational Physics +1605.03795 Machine Learning +1605.04285 Experiment +1605.05016 Optics +1605.06630 Materials Science +1605.06988 +1606.01214 Probability +1606.01643 Differential Geometry +1606.02960 Computation and Language +1606.03097 Phenomenology +1606.04143 Algebraic Geometry +1606.07060 +1606.07210 +1606.07401 Dynamical Systems +1606.07423 Mesoscale and Nanoscale Physics +1606.08127 Optics +1606.08550 Optics +1606.08753 Phenomenology +1607.00685 +1607.01204 Rings and Algebras +1607.01216 +1607.01666 Functional Analysis +1607.02312 Materials Science +1607.02508 Theory +1607.02679 Strongly Correlated Electrons +1607.02757 Robotics +1607.02994 Logic +1607.03908 Theory +1607.04408 Disordered Systems and Neural Networks +1607.04634 Differential Geometry +1607.05097 Soft Condensed Matter +1607.05798 Materials Science +1607.06626 Soft Condensed Matter +1607.07355 Quantum Gases +1607.07410 Cosmology and Nongalactic Astrophysics +1608.00540 Algebraic Geometry +1608.00554 Data Structures and Algorithms +1608.00957 Instrumentation and Methods for Astrophysics +1608.02641 +1608.03231 +1608.03399 Statistical Mechanics +1608.04395 Quantum Gases +1608.04493 Neural and Evolutionary Computing +1608.04890 +1608.05207 Phenomenology +1608.05365 Theory +1608.05785 Soft Condensed Matter +1608.06161 Classical Analysis and ODEs +1608.06751 Mesoscale and Nanoscale Physics +1608.07073 Algebraic Geometry +1608.07466 +1608.07858 +1608.08338 Superconductivity +1608.08879 Phenomenology +1609.00802 +1609.00820 Algebraic Topology +1609.01121 Disordered Systems and Neural Networks +1609.02011 Earth and Planetary Astrophysics +1609.02545 Neurons and Cognition +1609.04042 Astrophysics of Galaxies +1609.04551 Analysis of PDEs +1609.04795 Classical Analysis and ODEs +1609.05497 Instrumentation and Detectors +1609.06113 Phenomenology +1609.07043 Probability +1609.08494 Combinatorics +1609.08561 +1609.08665 Optimization and Control +1609.09577 Information Theory +1610.00135 +1610.01376 Computer Vision and Pattern Recognition +1610.01572 Theory +1610.01659 Functional Analysis +1610.02438 Algebraic Topology +1610.03426 Analysis of PDEs +1610.03642 Phenomenology +1610.04932 Combinatorics +1610.05838 Learning +1610.06873 Soft Condensed Matter +1610.07389 Combinatorics +1610.08011 Classical Physics +1610.08141 Differential Geometry +1610.08887 Optimization and Control +1610.09073 Earth and Planetary Astrophysics +1610.09196 Analysis of PDEs +1610.09239 Soft Condensed Matter +1610.09267 Other Computer Science +1610.10067 Earth and Planetary Astrophysics +1611.00543 Phenomenology +1611.00957 Combinatorics +1611.00990 Optimization and Control +1611.01124 Algebraic Geometry +1611.01201 Strongly Correlated Electrons +1611.01297 Materials Science +1611.01584 Computer Vision and Pattern Recognition +1611.01594 Distributed, Parallel, and Cluster Computing +1611.01811 +1611.01880 Computers and Society +1611.01901 Combinatorics +1611.01917 Numerical Analysis +1611.02024 Neural and Evolutionary Computing +1611.02093 Combinatorics +1611.02106 Phenomenology +1611.02317 Tissues and Organs +1611.02319 Networking and Internet Architecture +1611.02407 Probability +1611.02546 Networking and Internet Architecture +1611.02710 Astrophysics of Galaxies +1611.02714 Cosmology and Nongalactic Astrophysics +1611.02779 Artificial Intelligence +1611.02987 Instrumentation and Detectors +1611.03006 Cryptography and Security +1611.03079 Graphics +1611.03081 Sound +1611.03083 Earth and Planetary Astrophysics +1611.03085 Earth and Planetary Astrophysics +1611.03087 Cosmology and Nongalactic Astrophysics +1611.03090 History and Overview +1611.03099 Other Computer Science +1611.03108 Classical Physics +1611.03109 Learning +1611.03110 Statistical Finance +1611.03112 Computation +1611.03113 Networking and Internet Architecture +1611.03114 Operator Algebras +1611.03116 Theory +1611.03117 Complex Variables +1611.03118 Combinatorics +1611.03119 Genomics +1611.03121 Materials Science +1611.03122 Superconductivity +1611.03125 Learning +1611.03127 +1611.03129 Combinatorics +1611.03130 Computer Vision and Pattern Recognition +1611.03132 Superconductivity +1611.03133 History and Philosophy of Physics +1611.03136 +1611.03138 Mesoscale and Nanoscale Physics +1611.03140 Chemical Physics +1611.03141 Probability +1611.03142 Theory +1611.03143 Disordered Systems and Neural Networks +1611.03144 Molecular Networks +1611.03145 Pattern Formation and Solitons +1611.03146 Methodology +1611.03147 +1611.03149 Materials Science +1611.03151 Materials Science +1611.03152 Atomic Physics +1611.03154 Materials Science +1611.03155 Methodology +1611.03159 Data Structures and Algorithms +1611.03160 Astrophysics of Galaxies +1611.03161 +1611.03162 Adaptation and Self-Organizing Systems +1611.03163 Theory +1611.03165 Disordered Systems and Neural Networks +1611.03166 Combinatorics +1611.03167 Optimization and Control +1611.03168 Social and Information Networks +1611.03169 Information Theory +1611.03170 Solar and Stellar Astrophysics +1611.03171 Instrumentation and Methods for Astrophysics +1611.03172 Number Theory +1611.03174 Functional Analysis +1611.03176 Information Theory +1611.03177 Computation +1611.03178 Sound +1611.03181 Combinatorics +1611.03183 Information Theory +1611.03185 Strongly Correlated Electrons +1611.03186 Cryptography and Security +1611.03187 Computational Geometry +1611.03195 +1611.03196 Combinatorics +1611.03197 Networking and Internet Architecture +1611.03198 Quantum Gases +1611.03199 Learning +1611.03202 Human-Computer Interaction +1611.03204 Databases +1611.03205 +1611.03209 +1611.03213 Other Computer Science +1611.03214 Learning +1611.03215 Instrumentation and Detectors +1611.03216 Materials Science +1611.03217 Computer Vision and Pattern Recognition +1611.03219 Applications +1611.03221 Combinatorics +1611.03223 Soft Condensed Matter +1611.03226 Distributed, Parallel, and Cluster Computing +1611.03227 Machine Learning +1611.03228 Lattice +1611.03229 Computational Physics +1611.03230 Materials Science +1611.03231 Machine Learning +1611.03234 Strongly Correlated Electrons +1611.03235 Solar and Stellar Astrophysics +1611.03236 Combinatorics +1611.03237 Analysis of PDEs +1611.03241 Combinatorics +1611.03242 Theory +1611.03243 Soft Condensed Matter +1611.03244 Combinatorics +1611.03247 Statistical Mechanics +1611.03248 Algebraic Geometry +1611.03252 Cryptography and Security +1611.03253 Data Structures and Algorithms +1611.03254 Social and Information Networks +1611.03256 Phenomenology +1611.03258 Classical Physics +1611.03259 Combinatorics +1611.03260 Computational Geometry +1611.03261 Analysis of PDEs +1611.03263 Commutative Algebra +1611.03265 Representation Theory +1611.03266 +1611.03267 Logic in Computer Science +1611.03268 Computer Vision and Pattern Recognition +1611.03270 Computer Vision and Pattern Recognition +1611.03272 +1611.03274 Information Theory +1611.03275 Experiment +1611.03278 Experiment +1611.03279 Computation and Language +1611.03280 Commutative Algebra +1611.03285 Solar and Stellar Astrophysics +1611.03288 Statistical Mechanics +1611.03292 Complex Variables +1611.03293 +1611.03294 Probability +1611.03295 Atmospheric and Oceanic Physics +1611.03296 Analysis of PDEs +1611.03297 Phenomenology +1611.03298 Social and Information Networks +1611.03299 +1611.03300 Phenomenology +1611.03301 Functional Analysis +1611.03302 Group Theory +1611.03303 +1611.03305 Information Retrieval +1611.03307 Networking and Internet Architecture +1611.03308 Experiment +1611.03309 Methodology +1611.03310 Number Theory +1611.03312 Phenomenology +1611.03313 Computer Vision and Pattern Recognition +1611.03315 Strongly Correlated Electrons +1611.03318 Computer Vision and Pattern Recognition +1611.03320 Applications +1611.03321 Neural and Evolutionary Computing +1611.03322 Robotics +1611.03323 +1611.03324 General Physics +1611.03328 Applications +1611.03330 Superconductivity +1611.03333 General Physics +1611.03334 Solar and Stellar Astrophysics +1611.03335 Data Analysis, Statistics and Probability +1611.03340 Computers and Society +1611.03341 Computer Vision and Pattern Recognition +1611.03343 Cryptography and Security +1611.03344 Mesoscale and Nanoscale Physics +1611.03345 Metric Geometry +1611.03346 Combinatorics +1611.03348 Adaptation and Self-Organizing Systems +1611.03350 Information Retrieval +1611.03351 Phenomenology +1611.03353 Discrete Mathematics +1611.03355 Robotics +1611.03356 Computational Geometry +1611.03358 Computational Geometry +1611.03361 Quantitative Methods +1611.03362 Differential Geometry +1611.03364 Probability +1611.03365 Instrumentation and Methods for Astrophysics +1611.03366 Dynamical Systems +1611.03367 Phenomenology +1611.03368 Numerical Analysis +1611.03370 Phenomenology +1611.03372 Robotics +1611.03373 Complex Variables +1611.03374 Analysis of PDEs +1611.03376 Astrophysics of Galaxies +1611.03382 Computation and Language +1611.03383 Learning +1611.03384 Soft Condensed Matter +1611.03387 Combinatorics +1611.03388 Mesoscale and Nanoscale Physics +1611.03391 Numerical Analysis +1611.03392 Materials Science +1611.03394 Computational Physics +1611.03395 Probability +1611.03396 Operator Algebras +1611.03398 Artificial Intelligence +1611.03399 Experiment +1611.03401 Optics +1611.03402 Strongly Correlated Electrons +1611.03403 Dynamical Systems +1611.03404 Distributed, Parallel, and Cluster Computing +1611.03407 Networking and Internet Architecture +1611.03409 Phenomenology +1611.03410 Programming Languages +1611.03411 Materials Science +1611.03412 Other Condensed Matter +1611.03413 Fluid Dynamics +1611.03416 Programming Languages +1611.03417 Probability +1611.03419 Materials Science +1611.03420 Networking and Internet Architecture +1611.03422 Solar and Stellar Astrophysics +1611.03423 Mathematical Software +1611.03424 Cryptography and Security +1611.03426 Computers and Society +1611.03428 Materials Science +1611.03429 Programming Languages +1611.03431 Commutative Algebra +1611.03432 Adaptation and Self-Organizing Systems +1611.03433 Phenomenology +1611.03434 Quantum Algebra +1611.03436 Strongly Correlated Electrons +1611.03438 Fluid Dynamics +1611.03439 Methodology +1611.03440 Plasma Physics +1611.03441 Neurons and Cognition +1611.03442 Group Theory +1611.03445 +1611.03446 Fluid Dynamics +1611.03447 Differential Geometry +1611.03448 Physics Education +1611.03450 Classical Physics +1611.03451 Learning +1611.03452 Materials Science +1611.03453 Networking and Internet Architecture +1611.03454 Combinatorics +1611.03456 Methodology +1611.03458 +1611.03459 Theory +1611.03461 Chaotic Dynamics +1611.03463 +1611.03464 Phenomenology +1611.03465 Representation Theory +1611.03466 Computation and Language +1611.03469 Computer Vision and Pattern Recognition +1611.03470 Theory +1611.03472 +1611.03473 Learning +1611.03474 Numerical Analysis +1611.03475 Optics +1611.03476 +1611.03479 +1611.03480 Rings and Algebras +1611.03482 Information Theory +1611.03483 Theory +1611.03484 +1611.03485 Classical Analysis and ODEs +1611.03487 Quantum Algebra +cs/0611165 Distributed, Parallel, and Cluster Computing +0805.1692 Adaptation and Self-Organizing Systems +0906.1606 Group Theory +1102.4002 Analysis of PDEs +1110.3453 Astrophysics of Galaxies +1208.5036 +1305.1819 Optimization and Control +1305.2806 Superconductivity +1306.4434 Combinatorics +1306.5076 Data Structures and Algorithms +1307.3878 Strongly Correlated Electrons +1308.6065 +1310.4446 Cosmology and Nongalactic Astrophysics +1310.4715 Numerical Analysis +1310.7233 +1310.7523 Quantum Algebra +1312.4237 +1312.6673 Theory +1401.4023 Systems and Control +1401.4335 Systems and Control +1402.2700 Combinatorics +1402.3224 Differential Geometry +1402.5380 Artificial Intelligence +1402.6671 Phenomenology +1403.6873 Algebraic Topology +1404.4239 Combinatorics +1404.5510 Data Structures and Algorithms +1405.2343 Algebraic Topology +1405.2476 Learning +1405.3499 Dynamical Systems +1405.5725 Geometric Topology +1407.2062 Geometric Topology +1407.3882 +1408.1630 Algebraic Geometry +1408.3297 Digital Libraries +1408.3979 Methodology +1408.4180 Neurons and Cognition +1408.4562 Mesoscale and Nanoscale Physics +1409.5884 Analysis of PDEs +1409.7662 Functional Analysis +1410.0468 +1410.0474 Systems and Control +1410.1508 Differential Geometry +1410.7738 Combinatorics +1410.8158 Information Theory +1411.2868 Group Theory +1411.7654 Logic +1412.2198 +1412.4420 Quantum Gases +1412.4917 Probability +1412.7911 Systems and Control +1501.02114 +1501.05196 Classical Analysis and ODEs +1501.05729 +1503.01154 Analysis of PDEs +1503.01897 Geometric Topology +1503.02596 Machine Learning +1503.05007 Theory +1503.08153 Phenomenology +1503.08998 Strongly Correlated Electrons +1504.01540 Mesoscale and Nanoscale Physics +1504.04442 Quantum Algebra +1504.05515 Data Structures and Algorithms +1504.06155 Phenomenology +1504.07083 Exactly Solvable and Integrable Systems +1504.07217 Phenomenology +1504.07581 Differential Geometry +1505.00686 Dynamical Systems +1505.00719 Probability +1505.02519 Optics +1505.02688 Phenomenology +1505.04436 Algebraic Geometry +1505.04809 +1505.06168 Algebraic Topology +1505.06546 +1505.06621 Instrumentation and Methods for Astrophysics +1505.06776 +1505.07074 +1505.07116 Theory +1505.07356 Analysis of PDEs +1505.07385 Atomic Physics +1506.01128 Dynamical Systems +1506.03147 Numerical Analysis +1506.04361 Analysis of PDEs +1506.04990 Cellular Automata and Lattice Gases +1506.05407 Experiment +1506.05807 High Energy Astrophysical Phenomena +1506.07164 Phenomenology +1506.07701 +1506.08277 Phenomenology +1507.00510 Cosmology and Nongalactic Astrophysics +1507.00685 Theory +1507.00867 Phenomenology +1507.01069 Analysis of PDEs +1507.01114 Differential Geometry +1507.01454 Statistics Theory +1507.02577 Superconductivity +1507.02582 Phenomenology +1507.04376 Astrophysics of Galaxies +1507.05031 Numerical Analysis +1507.05362 Strongly Correlated Electrons +1507.06024 +1507.07956 Atomic Physics +1508.00448 Chaotic Dynamics +1508.01193 Theory +1508.01988 Materials Science +1508.02266 Functional Analysis +1508.03045 Theory +1508.04231 Lattice +1508.04371 Algebraic Geometry +1508.04436 Disordered Systems and Neural Networks +1508.04687 Medical Physics +1508.04961 Analysis of PDEs +1508.05190 High Energy Astrophysical Phenomena +1508.06401 Lattice +1508.06898 Numerical Analysis +1508.07147 +1508.07814 Dynamical Systems +1509.00399 Systems and Control +1509.00892 High Energy Astrophysical Phenomena +1509.01266 Mesoscale and Nanoscale Physics +1509.01696 Dynamical Systems +1509.02453 Phenomenology +1509.03158 Statistical Mechanics +1509.04121 Plasma Physics +1509.05106 Classical Analysis and ODEs +1509.06000 Astrophysics of Galaxies +1509.06315 Statistical Finance +1509.06966 Phenomenology +1509.07327 Probability +1509.07363 K-Theory and Homology +1509.07530 Geometric Topology +1509.07589 +1509.08117 +1509.08287 Analysis of PDEs +1509.08859 Metric Geometry +1509.09082 Classical Physics +1509.09288 General Physics +1510.00493 Instrumentation and Detectors +1510.02553 Number Theory +1510.03154 Phenomenology +1510.03169 Experiment +1510.03697 Strongly Correlated Electrons +1510.03831 Atmospheric and Oceanic Physics +1510.04127 Probability +1510.04324 Theory +1510.05971 Plasma Physics +1510.06557 +1510.06743 +1510.07513 Operator Algebras +1510.07738 Accelerator Physics +1510.08020 Phenomenology +1510.08104 Statistical Mechanics +1510.09035 Neurons and Cognition +1511.00129 Materials Science +1511.00561 Computer Vision and Pattern Recognition +1511.00745 Quantum Gases +1511.01859 Soft Condensed Matter +1511.02085 +1511.02680 Computer Vision and Pattern Recognition +1511.03326 +1511.03835 Phenomenology +1511.04353 Statistical Mechanics +1511.04568 Functional Analysis +1511.04716 Experiment +1511.04730 +1511.05605 Analysis of PDEs +1511.06495 Phenomenology +1511.06768 Phenomenology +1511.07186 +1511.09031 Algebraic Topology +1511.09168 +1512.00088 +1512.00220 Phenomenology +1512.00670 Probability +1512.00804 Probability +1512.01146 Analysis of PDEs +1512.01248 Mesoscale and Nanoscale Physics +1512.01482 Representation Theory +1512.01687 Statistical Mechanics +1512.02420 +1512.02786 Optimization and Control +1512.03212 Theory +1512.03427 Phenomenology +1512.03988 Molecular Networks +1512.04382 Dynamical Systems +1512.04432 Dynamical Systems +1512.04810 Materials Science +1512.04859 Theory +1512.05000 High Energy Astrophysical Phenomena +1512.05034 +1512.05187 Exactly Solvable and Integrable Systems +1512.05241 Phenomenology +1512.05249 Classical Analysis and ODEs +1512.05359 Phenomenology +1512.05595 Astrophysics of Galaxies +1512.05617 Phenomenology +1512.05749 Geometric Topology +1512.05874 Probability +1512.07192 Theory +1512.07237 Theory +1512.07309 Instrumentation and Methods for Astrophysics +1512.08027 Statistical Mechanics +1512.08172 Phenomenology +1512.08739 +1512.09260 Probability +1601.00231 Theory +1601.00469 +1601.00511 +1601.00765 +1601.00958 Quantum Gases +1601.01437 Mesoscale and Nanoscale Physics +1601.01593 Mesoscale and Nanoscale Physics +1601.02607 Phenomenology +1601.02655 Instrumentation and Methods for Astrophysics +1601.03017 Chaotic Dynamics +1601.04011 Learning +1601.05165 Materials Science +1601.05457 Theory +1601.05790 Mesoscale and Nanoscale Physics +1601.05808 High Energy Astrophysical Phenomena +1601.05901 Instrumentation and Methods for Astrophysics +1601.07100 +1601.07198 Theory +1601.07584 Theory +1601.07635 Earth and Planetary Astrophysics +1601.07968 Quantum Gases +1601.08101 Plasma Physics +1602.00977 Phenomenology +1602.01169 +1602.01503 Theory +1602.01872 Analysis of PDEs +1602.02005 Mesoscale and Nanoscale Physics +1602.03455 Experiment +1602.03994 Superconductivity +1602.04153 Materials Science +1602.04812 Phenomenology +1602.05194 Strongly Correlated Electrons +1602.05247 Probability +1602.05253 Strongly Correlated Electrons +1602.05275 Fluid Dynamics +1602.05599 Theory +1602.05788 Theory +1602.05803 Numerical Analysis +1602.06014 Soft Condensed Matter +1602.06266 Atomic Physics +1602.06288 Classical Analysis and ODEs +1602.06880 Fluid Dynamics +1602.07284 +1602.07413 Fluid Dynamics +1602.07892 Plasma Physics +1602.08036 Strongly Correlated Electrons +1602.08138 Geometric Topology +1602.08353 Chaotic Dynamics +1602.08440 Fluid Dynamics +1602.08531 +1602.08824 Mesoscale and Nanoscale Physics +1602.08914 +1603.00021 Astrophysics of Galaxies +1603.00030 Phenomenology +1603.00405 Superconductivity +1603.00410 Operator Algebras +1603.00591 Dynamical Systems +1603.00594 Spectral Theory +1603.00785 Algebraic Geometry +1603.00792 +1603.00919 +1603.01290 Theory +1603.01330 Superconductivity +1603.01528 Theory +1603.02158 +1603.02237 Rings and Algebras +1603.02279 Strongly Correlated Electrons +1603.02588 Theory +1603.02624 Theory +1603.03044 Theory +1603.03289 Exactly Solvable and Integrable Systems +1603.04181 Statistical Mechanics +1603.04193 Algebraic Geometry +1603.05272 Theory +1603.05774 Phenomenology +1603.05817 Statistical Mechanics +1603.05994 Phenomenology +1603.06549 Databases +1603.06567 Mesoscale and Nanoscale Physics +1603.06636 Representation Theory +1603.06896 Experiment +1603.07148 Theory +1603.07203 Materials Science +1603.07207 Quantum Gases +1603.07244 Soft Condensed Matter +1603.07530 Materials Science +1603.07548 Pattern Formation and Solitons +1603.07582 Theory +1603.07837 Cosmology and Nongalactic Astrophysics +1603.07913 Physics Education +1603.08269 Cellular Automata and Lattice Gases +1603.08927 Phenomenology +1603.08947 Materials Science +1603.08975 Probability +1603.09098 Earth and Planetary Astrophysics +1604.00029 +1604.00132 Materials Science +1604.00160 +1604.00210 Spectral Theory +1604.00440 Phenomenology +1604.00705 Analysis of PDEs +1604.00868 Systems and Control +1604.01080 Earth and Planetary Astrophysics +1604.01109 Computer Vision and Pattern Recognition +1604.01244 +1604.01406 Phenomenology +1604.01415 Instrumentation and Detectors +1604.01667 Analysis of PDEs +1604.01711 Phenomenology +1604.01897 Theory +1604.01937 Phenomenology +1604.01944 Solar and Stellar Astrophysics +1604.02042 Statistical Mechanics +1604.02090 Physics Education +1604.02169 Numerical Analysis +1604.02198 Mesoscale and Nanoscale Physics +1604.02297 Optics +1604.02299 Phenomenology +1604.02444 Social and Information Networks +1604.02446 Instrumentation and Methods for Astrophysics +1604.02452 +1604.02482 Experiment +1604.02552 Data Structures and Algorithms +1604.02756 +1604.02785 +1604.02788 Soft Condensed Matter +1604.02988 +1604.03595 Fluid Dynamics +1604.03606 Theory +1604.03622 Applications +1604.03668 Instrumentation and Detectors +1604.03697 Strongly Correlated Electrons +1604.03782 Phenomenology +1604.03903 Instrumentation and Detectors +1604.03936 High Energy Astrophysical Phenomena +1604.04012 +1604.04106 Instrumentation and Detectors +1604.04215 Theory +1604.04294 Theory +1604.04300 Instrumentation and Detectors +1604.04317 Pattern Formation and Solitons +1604.04333 Computer Vision and Pattern Recognition +1604.04709 Phenomenology +1604.05241 Analysis of PDEs +1604.05286 Phenomenology +1604.05434 +1604.05596 Instrumentation and Detectors +1604.05835 Mesoscale and Nanoscale Physics +1604.06025 Theory +1604.06169 Instrumentation and Detectors +1604.06239 Astrophysics of Galaxies +1604.06305 Plasma Physics +1604.06823 Optimization and Control +1604.06963 Artificial Intelligence +1604.06966 Atomic Physics +1604.07135 Plasma Physics +1604.07237 +1604.07277 Mesoscale and Nanoscale Physics +1604.07327 Phenomenology +1604.07439 Solar and Stellar Astrophysics +1604.07465 +1604.07871 Cosmology and Nongalactic Astrophysics +1604.07985 Plasma Physics +1604.08023 Mesoscale and Nanoscale Physics +1604.08024 Astrophysics of Galaxies +1604.08028 Plasma Physics +1604.08254 Statistical Mechanics +1604.08327 Theory +1604.08382 Learning +1604.08581 Phenomenology +1604.08630 Mesoscale and Nanoscale Physics +1604.08800 Astrophysics of Galaxies +1604.08838 Phenomenology +1604.08861 Statistical Mechanics +1605.00115 Pattern Formation and Solitons +1605.00436 Phenomenology +1605.00518 Theory +1605.00728 Soft Condensed Matter +1605.01025 Theory +1605.01209 Phenomenology +1605.01445 +1605.01612 Astrophysics of Galaxies +1605.01631 Phenomenology +1605.01800 Fluid Dynamics +1605.01826 Mesoscale and Nanoscale Physics +1605.01916 +1605.01917 Soft Condensed Matter +1605.01933 Theory +1605.01934 Theory +1605.01967 Theory +1605.02064 +1605.02127 Mesoscale and Nanoscale Physics +1605.02295 Disordered Systems and Neural Networks +1605.02348 Mesoscale and Nanoscale Physics +1605.02558 Instrumentation and Detectors +1605.02631 High Energy Astrophysical Phenomena +1605.02835 Theory +1605.03092 Fluid Dynamics +1605.03126 +1605.03270 Solar and Stellar Astrophysics +1605.03277 Optics +1605.03774 +1605.04022 Solar and Stellar Astrophysics +1605.04375 Materials Science +1605.04390 Materials Science +1605.04741 Astrophysics of Galaxies +1605.04853 Phenomenology +1605.04910 Cosmology and Nongalactic Astrophysics +1605.04911 Theory +1605.05058 Materials Science +1605.05177 Superconductivity +1605.05186 Mesoscale and Nanoscale Physics +1605.05344 Theory +1605.05357 +1605.05544 High Energy Astrophysical Phenomena +1605.05567 +1605.05672 Quantum Gases +1605.05752 Solar and Stellar Astrophysics +1605.05761 Phenomenology +1605.06044 Information Theory +1605.06128 Theory +1605.06206 Quantum Gases +1605.06510 Cosmology and Nongalactic Astrophysics +1605.06612 Phenomenology +1605.06793 Theory +1605.07024 Materials Science +1605.07033 +1605.07085 Quantum Gases +1605.07212 Differential Geometry +1605.07586 Computer Vision and Pattern Recognition +1605.07617 Astrophysics of Galaxies +1605.07620 Cosmology and Nongalactic Astrophysics +1605.07641 Disordered Systems and Neural Networks +1605.07828 Disordered Systems and Neural Networks +1605.08056 Phenomenology +1605.08072 Theory +1605.08121 Optics +1605.08168 Chaotic Dynamics +1605.08172 Instrumentation and Detectors +1605.08253 Strongly Correlated Electrons +1605.08347 Instrumentation and Methods for Astrophysics +1605.08352 Phenomenology +1605.08422 Numerical Analysis +1605.08499 Applications +1605.08588 Theory +1605.08621 +1605.08814 +1605.08850 Phenomenology +1605.09043 Lattice +1605.09166 Instrumentation and Methods for Astrophysics +1605.09263 Instrumentation and Methods for Astrophysics +1605.09313 Strongly Correlated Electrons +1605.09411 Phenomenology +1605.09433 +1605.09479 Phenomenology +1605.09498 Mesoscale and Nanoscale Physics +1605.09651 Astrophysics of Galaxies +1605.09747 Theory +1606.00009 Astrophysics of Galaxies +1606.00023 Earth and Planetary Astrophysics +1606.00081 Solar and Stellar Astrophysics +1606.00435 Phenomenology +1606.00508 Theory +1606.00670 Theory +1606.00684 Theory +1606.00951 Phenomenology +1606.01119 Theory +1606.01125 Strongly Correlated Electrons +1606.01298 Phenomenology +1606.01397 Materials Science +1606.01701 Methodology +1606.01712 Theory +1606.01798 Soft Condensed Matter +1606.01871 Adaptation and Self-Organizing Systems +1606.01898 +1606.01960 Instrumentation and Detectors +1606.02082 Theory +1606.02149 Phenomenology +1606.02334 Solar and Stellar Astrophysics +1606.02390 +1606.02420 Theory +1606.02443 +1606.02464 Mesoscale and Nanoscale Physics +1606.02561 Superconductivity +1606.02598 Strongly Correlated Electrons +1606.02637 Operator Algebras +1606.02701 Earth and Planetary Astrophysics +1606.02822 +1606.02888 Phenomenology +1606.02991 Group Theory +1606.03036 Theory +1606.03095 Theory +1606.03126 Computation and Language +1606.03235 Molecular Networks +1606.03240 Instrumentation and Detectors +1606.03391 Computation and Language +1606.03830 Instrumentation and Methods for Astrophysics +1606.03910 Tissues and Organs +1606.04026 Fluid Dynamics +1606.04161 Instrumentation and Methods for Astrophysics +1606.04192 Phenomenology +1606.04269 Data Structures and Algorithms +1606.04291 Instrumentation and Detectors +1606.04303 +1606.04328 Theory +1606.04448 Theory +1606.04481 +1606.04594 +1606.04619 Plasma Physics +1606.04700 Disordered Systems and Neural Networks +1606.04732 +1606.04792 Solar and Stellar Astrophysics +1606.04863 Earth and Planetary Astrophysics +1606.04890 History and Philosophy of Physics +1606.04913 Physics and Society +1606.05091 +1606.05160 Theory +1606.05230 Theory +1606.05250 Computation and Language +1606.05261 High Energy Astrophysical Phenomena +1606.05365 Chemical Physics +1606.05366 Theory +1606.05367 Number Theory +1606.05452 Phenomenology +1606.05513 Mesoscale and Nanoscale Physics +1606.05561 Lattice +1606.05646 Astrophysics of Galaxies +1606.05716 Computational Physics +1606.05782 Materials Science +1606.05865 Phenomenology +1606.05914 Plasma Physics +1606.05965 Cosmology and Nongalactic Astrophysics +1606.06020 Earth and Planetary Astrophysics +1606.06175 Phenomenology +1606.06226 Earth and Planetary Astrophysics +1606.06393 Chemical Physics +1606.06443 Neurons and Cognition +1606.06446 Solar and Stellar Astrophysics +1606.06467 +1606.06531 +1606.06654 Earth and Planetary Astrophysics +1606.06691 Analysis of PDEs +1606.06696 Phenomenology +1606.06867 +1606.06870 Soft Condensed Matter +1606.06951 Phenomenology +1606.06952 Strongly Correlated Electrons +1606.07062 Phenomenology +1606.07155 High Energy Astrophysical Phenomena +1606.07220 +1606.07221 Biomolecules +1606.07436 Astrophysics of Galaxies +1606.07437 High Energy Astrophysical Phenomena +1606.07448 Astrophysics of Galaxies +1606.07449 Statistical Mechanics +1606.07612 Computational Physics +1606.07672 Computational Physics +1606.07759 Experiment +1606.07764 Phenomenology +1606.07879 Theory +1606.08205 Theory +1606.08234 Mesoscale and Nanoscale Physics +1606.08272 Instrumentation and Methods for Astrophysics +1606.08317 Phenomenology +1606.08388 Phenomenology +1606.08453 Cosmology and Nongalactic Astrophysics +1606.08497 Superconductivity +1606.08745 Soft Condensed Matter +1606.08856 Quantum Gases +1606.08898 Phenomenology +1606.08980 +1606.08983 Astrophysics of Galaxies +1606.09033 Phenomenology +1606.09039 Lattice +1606.09104 Soft Condensed Matter +1606.09259 Astrophysics of Galaxies +1606.09292 Phenomenology +1606.09351 Optics +1606.09406 Superconductivity +1606.09420 +1606.09422 Materials Science +1606.09519 Phenomenology +1606.09559 Soft Condensed Matter +1606.09602 Phenomenology +1607.00222 +1607.00252 Statistical Mechanics +1607.00272 Fluid Dynamics +1607.00293 Phenomenology +1607.00313 Theory +1607.00335 Chemical Physics +1607.00524 Earth and Planetary Astrophysics +1607.00526 Theory +1607.00646 Soft Condensed Matter +1607.00860 History and Overview +1607.00941 +1607.01174 Experiment +1607.01184 Information Theory +1607.01363 Cosmology and Nongalactic Astrophysics +1607.01379 Phenomenology +1607.01395 Theory +1607.01420 +1607.01513 Theory +1607.01541 Theory +1607.01558 Mesoscale and Nanoscale Physics +1607.01636 Chemical Physics +1607.01658 Dynamical Systems +1607.01680 Theory +1607.01692 Computational Physics +1607.01813 Analysis of PDEs +1607.01844 Instrumentation and Methods for Astrophysics +1607.01896 Information Theory +1607.01933 Phenomenology +1607.02048 Phenomenology +1607.02246 High Energy Astrophysical Phenomena +1607.02296 Physics and Society +1607.02388 Solar and Stellar Astrophysics +1607.02587 Instrumentation and Detectors +1607.02693 Theory +1607.02783 Quantum Gases +1607.02812 Phenomenology +1607.02859 Materials Science +1607.03019 Physics Education +1607.03648 Atomic and Molecular Clusters +1607.03657 Algebraic Topology +1607.03678 +1607.03732 +1607.03738 Computer Vision and Pattern Recognition +1607.03831 Lattice +1607.03910 Phenomenology +1607.03999 Earth and Planetary Astrophysics +1607.04029 Phenomenology +1607.04097 Geometric Topology +1607.04208 Theory +1607.04230 Theory +1607.04241 +1607.04316 Astrophysics of Galaxies +1607.04406 Mesoscale and Nanoscale Physics +1607.04409 +1607.04449 Phenomenology +1607.04504 Pattern Formation and Solitons +1607.04531 Instrumentation and Detectors +1607.04635 Phenomenology +1607.04677 Earth and Planetary Astrophysics +1607.04839 Theory +1607.04856 Materials Science +1607.04887 Phenomenology +1607.05014 Computation and Language +1607.05273 Theory +1607.05284 Solar and Stellar Astrophysics +1607.05303 Phenomenology +1607.05385 High Energy Astrophysical Phenomena +1607.05405 Theory +1607.05500 Solar and Stellar Astrophysics +1607.05570 Phenomenology +1607.05589 Quantum Gases +1607.05703 Theory +1607.05726 Astrophysics of Galaxies +1607.05733 Cosmology and Nongalactic Astrophysics +1607.06157 Theory +1607.06204 Medical Physics +1607.06225 Populations and Evolution +1607.06379 Theory +1607.06381 +1607.06436 Instrumentation and Methods for Astrophysics +1607.06582 Mesoscale and Nanoscale Physics +1607.06589 +1607.06606 Instrumentation and Methods for Astrophysics +1607.06610 Statistical Mechanics +1607.06621 Solar and Stellar Astrophysics +1607.06694 Information Theory +1607.06697 Earth and Planetary Astrophysics +1607.06755 Astrophysics of Galaxies +1607.06790 Statistical Mechanics +1607.06817 Theory +1607.07067 Representation Theory +1607.07302 Theory +1607.07457 Theory +1607.07505 Theory +1607.07524 Quantum Gases +1607.07540 Earth and Planetary Astrophysics +1607.07576 Materials Science +1607.07596 Strongly Correlated Electrons +1607.07642 Accelerator Physics +1607.07645 Mesoscale and Nanoscale Physics +1607.07882 Earth and Planetary Astrophysics +1607.08036 Astrophysics of Galaxies +1607.08054 High Energy Astrophysical Phenomena +1607.08079 Experiment +1607.08354 Optics +1607.08386 Solar and Stellar Astrophysics +1607.08451 +1607.08460 Theory +1607.08516 Theory +1607.08623 Astrophysics of Galaxies +1607.08658 Solar and Stellar Astrophysics +1607.08911 Phenomenology +1608.00006 Theory +1608.00360 Instrumentation and Methods for Astrophysics +1608.00414 Phenomenology +1608.00491 +1608.00619 Learning +1608.00620 Earth and Planetary Astrophysics +1608.00694 Astrophysics of Galaxies +1608.00709 Algebraic Geometry +1608.00870 Logic in Computer Science +1608.00896 Fluid Dynamics +1608.00970 High Energy Astrophysical Phenomena +1608.00999 Mesoscale and Nanoscale Physics +1608.01260 Phenomenology +1608.01311 Strongly Correlated Electrons +1608.01454 Phenomenology +1608.01475 Strongly Correlated Electrons +1608.01477 Quantum Gases +1608.01617 Mesoscale and Nanoscale Physics +1608.01652 Theory +1608.01706 High Energy Astrophysical Phenomena +1608.01880 Phenomenology +1608.01979 Phenomenology +1608.01981 Materials Science +1608.01997 Solar and Stellar Astrophysics +1608.02362 Phenomenology +1608.02599 Instrumentation and Methods for Astrophysics +1608.02766 +1608.02814 Theory +1608.02950 Strongly Correlated Electrons +1608.03179 Instrumentation and Detectors +1608.03272 +1608.03345 Optics +1608.03853 Earth and Planetary Astrophysics +1608.03891 Earth and Planetary Astrophysics +1608.04031 Mesoscale and Nanoscale Physics +1608.04128 Physics Education +1608.04178 Astrophysics of Galaxies +1608.04359 +1608.04748 Theory +1608.05086 Astrophysics of Galaxies +1608.05181 Materials Science +1608.05281 +1608.05633 Materials Science +1608.06044 Mesoscale and Nanoscale Physics +1608.06118 High Energy Astrophysical Phenomena +1608.06150 Accelerator Physics +1608.06443 +1608.06494 Cosmology and Nongalactic Astrophysics +1608.06527 Phenomenology +1608.06551 Phenomenology +1608.06618 Phenomenology +1608.06733 Strongly Correlated Electrons +1608.06826 General Physics +1608.07284 Astrophysics of Galaxies +1608.07355 Materials Science +1608.07460 Quantum Gases +1608.07475 +1608.07487 +1608.07758 Accelerator Physics +1608.07804 Solar and Stellar Astrophysics +1608.07838 Combinatorics +1608.07844 Earth and Planetary Astrophysics +1608.08205 Phenomenology +1608.08315 Materials Science +1608.08611 Soft Condensed Matter +1608.08653 Materials Science +1608.08745 High Energy Astrophysical Phenomena +1609.00348 Instrumentation and Detectors +1609.00403 Atomic Physics +1609.00455 Astrophysics of Galaxies +1609.00532 Cosmology and Nongalactic Astrophysics +1609.00634 Instrumentation and Methods for Astrophysics +1609.00660 +1609.00789 +1609.00870 Mesoscale and Nanoscale Physics +1609.01052 Statistical Mechanics +1609.01164 Superconductivity +1609.01356 Theory +1609.01715 Astrophysics of Galaxies +1609.01827 Optics +1609.01849 Strongly Correlated Electrons +1609.01882 Computer Vision and Pattern Recognition +1609.02425 Statistical Mechanics +1609.02708 +1609.02765 Commutative Algebra +1609.02841 +1609.02843 Materials Science +1609.03117 Solar and Stellar Astrophysics +1609.03488 Optimization and Control +1609.03494 Mesoscale and Nanoscale Physics +1609.03771 Instrumentation and Methods for Astrophysics +1609.04157 +1609.04219 +1609.04227 Disordered Systems and Neural Networks +1609.04263 Solar and Stellar Astrophysics +1609.04295 Instrumentation and Methods for Astrophysics +1609.04488 +1609.04574 Statistical Mechanics +1609.04775 Classical Analysis and ODEs +1609.05045 Solar and Stellar Astrophysics +1609.05065 Plasma Physics +1609.05298 Other Condensed Matter +1609.05511 Computation and Language +1609.05621 Logic in Computer Science +1609.05697 High Energy Astrophysical Phenomena +1609.05918 Astrophysics of Galaxies +1609.06135 +1609.06177 High Energy Astrophysical Phenomena +1609.06333 Chemical Physics +1609.06513 Logic in Computer Science +1609.06544 +1609.06546 Solar and Stellar Astrophysics +1609.06715 Astrophysics of Galaxies +1609.06728 Instrumentation and Methods for Astrophysics +1609.06787 Solar and Stellar Astrophysics +1609.06863 Theory +1609.07212 Strongly Correlated Electrons +1609.07254 Logic in Computer Science +1609.07413 Phenomenology +1609.07468 K-Theory and Homology +1609.07515 Instrumentation and Detectors +1609.07544 Astrophysics of Galaxies +1609.08060 +1609.08123 +1609.08344 High Energy Astrophysical Phenomena +1609.08461 General Physics +1609.08463 +1609.08465 Solar and Stellar Astrophysics +1609.08728 Astrophysics of Galaxies +1609.08771 Astrophysics of Galaxies +1609.08792 Astrophysics of Galaxies +1609.08794 Astrophysics of Galaxies +1609.08838 Astrophysics of Galaxies +1609.09028 Computation and Language +1609.09082 Astrophysics of Galaxies +1609.09091 Cosmology and Nongalactic Astrophysics +1609.09099 Earth and Planetary Astrophysics +1609.09105 Atomic Physics +1609.09383 Astrophysics of Galaxies +1609.09389 Information Theory +1609.09391 Materials Science +1609.09456 High Energy Astrophysical Phenomena +1609.09502 High Energy Astrophysical Phenomena +1609.09511 High Energy Astrophysical Phenomena +1609.09613 +1609.09706 Astrophysics of Galaxies +1609.09722 Atomic Physics +1609.09761 Human-Computer Interaction +1609.09811 Solar and Stellar Astrophysics +1610.00013 Solar and Stellar Astrophysics +1610.00082 Data Structures and Algorithms +1610.00083 Solar and Stellar Astrophysics +1610.00232 +1610.00355 Networking and Internet Architecture +1610.00451 Solar and Stellar Astrophysics +1610.00474 Instrumentation and Methods for Astrophysics +1610.00543 Solar and Stellar Astrophysics +1610.00565 Commutative Algebra +1610.00606 Instrumentation and Methods for Astrophysics +1610.00645 Functional Analysis +1610.00685 Lattice +1610.00722 Instrumentation and Methods for Astrophysics +1610.00769 Solar and Stellar Astrophysics +1610.00914 Solar and Stellar Astrophysics +1610.00926 Commutative Algebra +1610.00937 Portfolio Management +1610.01086 High Energy Astrophysical Phenomena +1610.01144 Astrophysics of Galaxies +1610.01215 Applications +1610.01331 Logic in Computer Science +1610.01545 +1610.01690 Learning +1610.01775 Superconductivity +1610.01834 Astrophysics of Galaxies +1610.01844 High Energy Astrophysical Phenomena +1610.02012 Strongly Correlated Electrons +1610.02091 Emerging Technologies +1610.02201 High Energy Astrophysical Phenomena +1610.02217 Statistical Mechanics +1610.02243 Combinatorics +1610.02324 Probability +1610.02349 +1610.02357 Computer Vision and Pattern Recognition +1610.02366 Astrophysics of Galaxies +1610.02425 +1610.02522 General Topology +1610.02523 Group Theory +1610.02747 Phenomenology +1610.02752 Cosmology and Nongalactic Astrophysics +1610.02786 Functional Analysis +1610.02788 Functional Analysis +1610.02831 Sound +1610.03008 Differential Geometry +1610.03025 Numerical Analysis +1610.03040 +1610.03053 Instrumentation and Detectors +1610.03054 Instrumentation and Detectors +1610.03056 Information Theory +1610.03064 Mesoscale and Nanoscale Physics +1610.03065 Theory +1610.03069 +1610.03076 Astrophysics of Galaxies +1610.03078 Disordered Systems and Neural Networks +1610.03079 +1610.03082 Information Theory +1610.03083 Statistics Theory +1610.03084 Discrete Mathematics +1610.03085 Strongly Correlated Electrons +1610.03087 Complex Variables +1610.03089 Information Theory +1610.03090 Learning +1610.03094 Instrumentation and Detectors +1610.03095 Numerical Analysis +1610.03096 Geophysics +1610.03097 High Energy Astrophysical Phenomena +1610.03099 Mesoscale and Nanoscale Physics +1610.03102 +1610.03103 Probability +1610.03105 Distributed, Parallel, and Cluster Computing +1610.03106 Computation and Language +1610.03107 Geophysics +1610.03110 Neurons and Cognition +1610.03111 Numerical Analysis +1610.03112 Computation and Language +1610.03113 Machine Learning +1610.03114 Algebraic Topology +1610.03115 Combinatorics +1610.03117 Metric Geometry +1610.03118 Functional Analysis +1610.03120 Computation and Language +1610.03121 Physics and Society +1610.03122 Strongly Correlated Electrons +1610.03123 Cosmology and Nongalactic Astrophysics +1610.03124 Physics and Society +1610.03125 Data Structures and Algorithms +1610.03126 Group Theory +1610.03129 Computer Vision and Pattern Recognition +1610.03130 Phenomenology +1610.03133 +1610.03134 Solar and Stellar Astrophysics +1610.03138 Artificial Intelligence +1610.03140 Dynamical Systems +1610.03141 Optics +1610.03142 Functional Analysis +1610.03143 Optimization and Control +1610.03145 Physics and Society +1610.03148 Programming Languages +1610.03150 Logic +1610.03151 Computer Vision and Pattern Recognition +1610.03152 Optics +1610.03153 Statistics Theory +1610.03154 Numerical Analysis +1610.03155 Computer Vision and Pattern Recognition +1610.03156 Geometric Topology +1610.03157 Commutative Algebra +1610.03158 Algebraic Geometry +1610.03159 Instrumentation and Methods for Astrophysics +1610.03160 Strongly Correlated Electrons +1610.03162 Optimization and Control +1610.03164 Robotics +1610.03165 Computation and Language +1610.03166 Theory +1610.03167 Computation and Language +1610.03168 Metric Geometry +1610.03173 Plasma Physics +1610.03174 Theory +1610.03175 Systems and Control +1610.03176 Social and Information Networks +1610.03177 Methodology +1610.03178 Phenomenology +1610.03179 Computers and Society +1610.03180 Software Engineering +1610.03181 Fluid Dynamics +1610.03182 Computation +1610.03184 Formal Languages and Automata Theory +1610.03185 Materials Science +1610.03186 Classical Analysis and ODEs +1610.03187 Representation Theory +1610.03190 Sound +1610.03192 Numerical Analysis +1610.03193 Optimization and Control +1610.03194 Analysis of PDEs +1610.03195 Numerical Analysis +1610.03196 Numerical Analysis +1610.03198 Differential Geometry +1610.03201 Classical Analysis and ODEs +1610.03203 Atomic Physics +1610.03204 Information Theory +1610.03206 Analysis of PDEs +1610.03207 Neurons and Cognition +1610.03208 Biological Physics +1610.03211 Superconductivity +1610.03213 Dynamical Systems +1610.03215 Statistics Theory +1610.03216 Earth and Planetary Astrophysics +1610.03217 Populations and Evolution +1610.03218 Probability +1610.03219 Astrophysics of Galaxies +1610.03220 Strongly Correlated Electrons +1610.03221 Strongly Correlated Electrons +1610.03223 Mesoscale and Nanoscale Physics +1610.03225 Applications +1610.03227 Plasma Physics +1610.03228 Optimization and Control +1610.03229 Computers and Society +1610.03230 Probability +1610.03231 Plasma Physics +1610.03232 Numerical Analysis +1610.03233 Classical Analysis and ODEs +1610.03235 Systems and Control +1610.03238 Soft Condensed Matter +1610.03241 Geometric Topology +1610.03244 Phenomenology +1610.03245 Networking and Internet Architecture +1610.03246 Computation and Language +1610.03248 +1610.03251 Theory +1610.03252 Phenomenology +1610.03253 +1610.03255 Dynamical Systems +1610.03258 High Energy Astrophysical Phenomena +1610.03260 Information Theory +1610.03261 Analysis of PDEs +1610.03263 Artificial Intelligence +1610.03266 Computational Complexity +1610.03269 +1610.03271 Chemical Physics +1610.03275 Lattice +1610.03276 Machine Learning +1610.03277 Number Theory +1610.03278 Probability +1610.03279 Numerical Analysis +1610.03282 Rings and Algebras +1610.03283 Geometric Topology +1610.03285 Analysis of PDEs +1610.03287 Methodology +1610.03288 Geometric Topology +1610.03289 Plasma Physics +1610.03290 Analysis of PDEs +1610.03291 +1610.03295 Artificial Intelligence +1610.03296 +1610.03297 Complex Variables +1610.03298 Data Structures and Algorithms +1610.03300 Probability +1610.03301 Group Theory +1610.03306 Commutative Algebra +1610.03307 Metric Geometry +1610.03309 +1610.03313 Materials Science +1610.03316 Statistics Theory +1610.03317 Data Structures and Algorithms +1610.03319 Fluid Dynamics +1610.03320 Solar and Stellar Astrophysics +1610.03321 Computation and Language +1610.03322 Classical Physics +1610.03327 +1610.03328 Probability +1610.03329 Mesoscale and Nanoscale Physics +1610.03330 Methodology +1610.03331 Logic +1610.03334 Strongly Correlated Electrons +1610.03336 Astrophysics of Galaxies +1610.03337 Data Structures and Algorithms +1610.03338 Lattice +1610.03339 Differential Geometry +1610.03342 Computation and Language +1610.03343 Computational Physics +1610.03344 Robotics +1610.03345 Cosmology and Nongalactic Astrophysics +1610.03347 Instrumentation and Methods for Astrophysics +1610.03348 Networking and Internet Architecture +1610.03349 Computation and Language +1610.03350 +1610.03353 Geometric Topology +1610.03354 Algebraic Geometry +1610.03355 +1610.03356 Algebraic Geometry +1610.03357 Algebraic Geometry +1610.03358 Numerical Analysis +1610.03361 High Energy Astrophysical Phenomena +1610.03362 Information Theory +1610.03363 Dynamical Systems +1610.03364 Logic +1610.03365 High Energy Astrophysical Phenomena +1610.03367 Statistical Mechanics +1610.03369 Analysis of PDEs +1610.03372 Phenomenology +1610.03376 Group Theory +1610.03377 Analysis of PDEs +1610.03380 History and Overview +1610.03381 +1610.03382 Materials Science +1610.03386 Chemical Physics +1610.03387 Complex Variables +1610.03389 Atomic Physics +1610.03390 Algebraic Geometry +1610.03392 Complex Variables +1610.03393 Computer Vision and Pattern Recognition +1610.03394 Atomic Physics +1610.03395 Commutative Algebra +1610.03396 Combinatorics +1610.03397 Geophysics +1610.03398 Analysis of PDEs +1610.03401 Soft Condensed Matter +1610.03403 Algebraic Geometry +1610.03404 Numerical Analysis +1610.03405 Combinatorics +1610.03406 Logic +1610.03409 Complex Variables +1610.03411 Functional Analysis +1610.03412 Data Structures and Algorithms +1610.03413 Complex Variables +1610.03414 Machine Learning +1610.03415 Probability +1610.03416 Biological Physics +1610.03418 Probability +1610.03420 Functional Analysis +1610.03427 Tissues and Organs +1610.03430 Number Theory +1610.03433 Complex Variables +1610.03434 Computation +1610.03435 Representation Theory +1610.03437 Computer Vision and Pattern Recognition +1610.03438 +1610.03440 Theory +1610.03443 Genomics +1610.03446 Optimization and Control +1610.03447 Solar and Stellar Astrophysics +1610.03448 Analysis of PDEs +1610.03450 Distributed, Parallel, and Cluster Computing +1610.03451 Fluid Dynamics +1610.03455 Algebraic Geometry +1610.03457 Numerical Analysis +1610.03458 Methodology +1610.03461 Systems and Control +1610.03462 Functional Analysis +1610.03463 +1610.03465 Number Theory +1610.03466 Computer Vision and Pattern Recognition +1610.03467 Computer Vision and Pattern Recognition +1610.03468 Fluid Dynamics +1610.03470 Fluid Dynamics +1610.03471 Instrumentation and Detectors +1610.03472 Systems and Control +1610.03476 Combinatorics +1610.03477 Data Structures and Algorithms +1610.03478 Exactly Solvable and Integrable Systems +1610.03479 Analysis of PDEs +astro-ph/0106241 +cond-mat/0410611 Materials Science +0810.5186 +1009.4148 Earth and Planetary Astrophysics +1202.6649 Computer Science and Game Theory +1203.0411 Computer Science and Game Theory +1205.5447 Analysis of PDEs +1210.2259 Information Theory +1210.4520 +1301.4465 Functional Analysis +1302.0125 Optimization and Control +1302.0888 Probability +1305.1514 Combinatorics +1305.5779 Probability +1307.0661 Classical Analysis and ODEs +1308.2817 +1311.0934 Analysis of PDEs +1312.2615 Superconductivity +1401.1036 Probability +1402.2043 Machine Learning +1402.2589 Discrete Mathematics +1402.5652 Group Theory +1403.1505 Functional Analysis +1403.1913 Methodology +1403.5624 Analysis of PDEs +1404.3220 Quantum Gases +1404.6886 Algebraic Topology +1405.4371 Optimization and Control +1405.6162 Distributed, Parallel, and Cluster Computing +1405.7305 Earth and Planetary Astrophysics +1406.6486 Strongly Correlated Electrons +1407.0864 Analysis of PDEs +1407.3645 Probability +1408.5797 Analysis of PDEs +1408.6580 Symplectic Geometry +1409.5657 Materials Science +1409.6009 Symplectic Geometry +1411.0190 +1411.3308 Geometric Topology +1411.6970 Computer Vision and Pattern Recognition +1411.7983 Numerical Analysis +1412.3972 Statistics Theory +1412.6635 Probability +1503.02344 Applications +1503.08754 Solar and Stellar Astrophysics +1504.04364 Earth and Planetary Astrophysics +1504.08344 +1505.00174 +1505.00486 Representation Theory +1505.05054 Commutative Algebra +1505.06233 Soft Condensed Matter +1505.06453 +1505.07068 Commutative Algebra +1505.07519 Computation +1506.02098 Number Theory +1506.02801 Mesoscale and Nanoscale Physics +1506.05209 Classical Analysis and ODEs +1506.09137 Theory +1507.00630 Theory +1507.01145 Robotics +1507.02178 Data Structures and Algorithms +1507.02506 Instrumentation and Methods for Astrophysics +1507.03082 Differential Geometry +1507.06269 Statistical Mechanics +1508.00690 Data Structures and Algorithms +1508.03667 Quantitative Methods +1508.04164 +1508.06072 Complex Variables +1508.07271 Dynamical Systems +1508.07353 Functional Analysis +1509.00457 General Mathematics +1509.01441 Representation Theory +1509.02077 Phenomenology +1509.04305 Astrophysics of Galaxies +1509.04915 Strongly Correlated Electrons +1509.06644 High Energy Astrophysical Phenomena +1509.08183 Physics and Society +1509.08806 Other Computer Science +1510.00140 Combinatorics +1510.01497 Optimization and Control +1510.03379 +1510.03404 Materials Science +1510.06425 Algebraic Geometry +1510.06651 +1510.08845 High Energy Astrophysical Phenomena +1511.00220 Phenomenology +1511.01154 Computer Vision and Pattern Recognition +1511.01161 Computer Vision and Pattern Recognition +1511.02341 Optics +1511.03786 Quantum Gases +1511.03825 +1511.03898 +1511.05319 Strongly Correlated Electrons +1511.05690 Data Structures and Algorithms +1511.06163 Popular Physics +1511.06424 Atomic Physics +1511.06727 Learning +1511.08409 Optimization and Control +1511.09361 Quantum Gases +1512.00284 Algebraic Topology +1512.01071 Phenomenology +1512.01594 Computational Geometry +1512.03531 Computational Complexity +1512.05871 Statistics Theory +1512.06479 Statistical Mechanics +1512.06745 Instrumentation and Methods for Astrophysics +1512.06790 Computer Vision and Pattern Recognition +1512.07645 Phenomenology +1512.08223 Mesoscale and Nanoscale Physics +1512.08695 Dynamical Systems +1512.09234 Quantum Algebra +1601.00622 Theory +1601.02092 Phenomenology +1601.03228 Superconductivity +1601.03575 Phenomenology +1601.03747 Strongly Correlated Electrons +1601.05828 Instrumentation and Detectors +1601.08036 +1602.00197 Statistics Theory +1602.05784 Combinatorics +1602.06154 +1602.07182 Statistics Theory +1602.07312 Dynamical Systems +1602.07415 Learning +1603.00094 +1603.00905 Differential Geometry +1603.00914 +1603.02083 +1603.02728 Superconductivity +1603.03151 Computer Science and Game Theory +1603.03684 Physics Education +1603.04008 Cosmology and Nongalactic Astrophysics +1603.05663 Phenomenology +1603.06027 Mesoscale and Nanoscale Physics +1603.06369 Mesoscale and Nanoscale Physics +1603.07871 Machine Learning +1603.08532 +1603.08657 Instrumentation and Detectors +1603.08944 +1604.00196 Phenomenology +1604.00627 Applications +1604.02994 Analysis of PDEs +1604.03950 Strongly Correlated Electrons +1604.04690 Pattern Formation and Solitons +1604.04933 Commutative Algebra +1604.07148 Soft Condensed Matter +1604.07466 Differential Geometry +1604.07664 Number Theory +1605.00723 Discrete Mathematics +1605.00837 Combinatorics +1605.01499 +1605.02703 Physics Education +1605.03448 Representation Theory +1605.04553 Computation and Language +1605.05128 Materials Science +1605.07099 Mathematical Finance +1605.07422 Distributed, Parallel, and Cluster Computing +1605.08580 Operator Algebras +1605.08861 Probability +1606.00800 Machine Learning +1606.01198 Materials Science +1606.01395 Superconductivity +1606.01603 Computation and Language +1606.02311 Software Engineering +1606.02604 +1606.03556 Computer Vision and Pattern Recognition +1606.03661 Differential Geometry +1606.03713 Human-Computer Interaction +1606.03726 Combinatorics +1606.03872 Combinatorics +1606.04497 Phenomenology +1606.04504 Instrumentation and Methods for Astrophysics +1606.04532 Representation Theory +1606.04544 Strongly Correlated Electrons +1606.04707 Physics and Society +1606.05011 Number Theory +1606.05016 Astrophysics of Galaxies +1606.05069 Statistical Mechanics +1606.05136 Social and Information Networks +1606.05341 Digital Libraries +1606.05343 Astrophysics of Galaxies +1606.05344 Phenomenology +1606.05347 Solar and Stellar Astrophysics +1606.05353 Strongly Correlated Electrons +1606.05355 Computer Vision and Pattern Recognition +1606.05360 Methodology +1606.05361 Optimization and Control +1606.05363 Machine Learning +1606.05368 Mesoscale and Nanoscale Physics +1606.05370 Materials Science +1606.05371 Solar and Stellar Astrophysics +1606.05373 Biomolecules +1606.05374 Human-Computer Interaction +1606.05375 Mesoscale and Nanoscale Physics +1606.05378 Computation and Language +1606.05380 Combinatorics +1606.05386 Machine Learning +1606.05390 Machine Learning +1606.05391 Networking and Internet Architecture +1606.05393 Mesoscale and Nanoscale Physics +1606.05396 Information Theory +1606.05397 Rings and Algebras +1606.05398 Number Theory +1606.05400 Physics and Society +1606.05401 Materials Science +1606.05402 Optics +1606.05403 Distributed, Parallel, and Cluster Computing +1606.05405 Physics and Society +1606.05408 Physics and Society +1606.05411 Representation Theory +1606.05413 Computer Vision and Pattern Recognition +1606.05416 Programming Languages +1606.05417 Numerical Analysis +1606.05419 Numerical Analysis +1606.05422 Dynamical Systems +1606.05425 Representation Theory +1606.05426 Computer Vision and Pattern Recognition +1606.05427 Logic in Computer Science +1606.05428 Biological Physics +1606.05431 Software Engineering +1606.05432 Numerical Analysis +1606.05435 Logic in Computer Science +1606.05439 Computers and Society +1606.05441 Analysis of PDEs +1606.05442 Strongly Correlated Electrons +1606.05443 Complex Variables +1606.05446 Artificial Intelligence +1606.05449 Dynamical Systems +1606.05450 Statistical Mechanics +1606.05453 Metric Geometry +1606.05455 Materials Science +1606.05457 Information Theory +1606.05458 Probability +1606.05461 Quantum Gases +1606.05463 Analysis of PDEs +1606.05468 Social and Information Networks +1606.05472 Statistical Mechanics +1606.05477 Networking and Internet Architecture +1606.05480 Combinatorics +1606.05481 Statistics Theory +1606.05482 Materials Science +1606.05483 Mesoscale and Nanoscale Physics +1606.05486 Classical Analysis and ODEs +1606.05488 Mathematical Finance +1606.05493 Differential Geometry +1606.05494 Mesoscale and Nanoscale Physics +1606.05498 Earth and Planetary Astrophysics +1606.05502 Number Theory +1606.05505 Numerical Analysis +1606.05512 Differential Geometry +1606.05516 Analysis of PDEs +1606.05517 Strongly Correlated Electrons +1606.05518 Classical Analysis and ODEs +1606.05519 Networking and Internet Architecture +1606.05522 Neurons and Cognition +1606.05527 Category Theory +1606.05530 Combinatorics +1606.05532 +1606.05533 Phenomenology +1606.05534 Phenomenology +1606.05535 Numerical Analysis +1606.05538 Data Structures and Algorithms +1606.05539 Group Theory +1606.05540 Numerical Analysis +1606.05541 Instrumentation and Detectors +1606.05542 Representation Theory +1606.05544 Instrumentation and Detectors +1606.05551 Neural and Evolutionary Computing +1606.05554 Computation and Language +1606.05555 Optimization and Control +1606.05559 Instrumentation and Detectors +1606.05560 Machine Learning +1606.05562 Information Theory +1606.05563 Symbolic Computation +1606.05564 Geometric Topology +1606.05566 Mesoscale and Nanoscale Physics +1606.05568 Functional Analysis +1606.05572 Machine Learning +1606.05574 +1606.05576 Computers and Society +1606.05577 Analysis of PDEs +1606.05578 Multiagent Systems +1606.05583 Combinatorics +1606.05589 Machine Learning +1606.05593 Artificial Intelligence +1606.05594 Algebraic Geometry +1606.05597 Artificial Intelligence +1606.05601 Analysis of PDEs +1606.05602 Dynamical Systems +1606.05605 +1606.05609 Digital Libraries +1606.05614 Computer Vision and Pattern Recognition +1606.05616 Combinatorics +1606.05617 Algebraic Topology +1606.05618 +1606.05619 Applications +1606.05620 Group Theory +1606.05621 Hardware Architecture +1606.05623 Mesoscale and Nanoscale Physics +1606.05626 +1606.05628 Combinatorics +1606.05633 Databases +1606.05637 +1606.05638 Group Theory +1606.05641 Physics and Society +astro-ph/0112429 +astro-ph/0308055 +astro-ph/0309236 +astro-ph/0512292 +0903.3071 Classical Analysis and ODEs +1101.4698 Classical Analysis and ODEs +1102.3853 Atomic Physics +1105.1358 +1110.6529 Atomic Physics +1201.3404 Solar and Stellar Astrophysics +1202.2896 Quantum Algebra +1205.7016 Number Theory +1301.4864 Quantum Algebra +1302.5991 Number Theory +1304.5900 Algebraic Geometry +1306.4483 Algebraic Geometry +1307.3627 Differential Geometry +1308.5560 Algebraic Geometry +1309.6031 History and Philosophy of Physics +1310.2308 Atomic Physics +1310.5404 +1310.5750 +1311.6854 +1402.1381 Other Condensed Matter +1402.2795 Complex Variables +1402.3816 +1402.4561 Classical Analysis and ODEs +1404.3333 +1405.5256 +1405.7630 Optimization and Control +1405.7680 Algebraic Geometry +1406.6982 Astrophysics of Galaxies +1407.7799 Computational Complexity +1408.1610 +1408.2501 Strongly Correlated Electrons +1408.5521 Instrumentation and Methods for Astrophysics +1409.0628 Probability +1409.3142 Differential Geometry +1409.4194 Software Engineering +1409.4471 Differential Geometry +1409.6498 Computer Vision and Pattern Recognition +1410.4275 Methodology +1410.4422 Computers and Society +1410.6059 Applications +1411.0021 Analysis of PDEs +1411.1586 Symplectic Geometry +1411.3562 Group Theory +1501.01739 Category Theory +1501.02547 Algebraic Topology +1501.02695 Combinatorics +1501.07804 Chaotic Dynamics +1502.00011 Differential Geometry +1502.00837 Algebraic Geometry +1502.00973 Methodology +1502.01660 Disordered Systems and Neural Networks +1502.04347 +1502.05007 Dynamical Systems +1502.06069 Numerical Analysis +1503.02919 Algebraic Geometry +1503.06033 Commutative Algebra +1504.02673 Analysis of PDEs +1504.07896 Dynamical Systems +1505.01756 Physics and Society +1505.02164 Differential Geometry +1505.03311 Probability +1505.07521 Differential Geometry +1505.07866 Neurons and Cognition +1505.08149 Computation and Language +1506.00960 Astrophysics of Galaxies +1506.03800 Differential Geometry +1506.06650 Information Theory +1506.07699 Algebraic Geometry +1507.01259 Combinatorics +1507.04604 Astrophysics of Galaxies +1507.08106 Group Theory +1507.08136 +1508.00622 Group Theory +1508.01793 Classical Analysis and ODEs +1508.02574 +1508.04933 Materials Science +1508.04949 Combinatorics +1509.02675 Mesoscale and Nanoscale Physics +1509.03393 Pattern Formation and Solitons +1509.04771 Artificial Intelligence +1509.05443 Group Theory +1509.06218 Numerical Analysis +1510.02461 Pattern Formation and Solitons +1510.04351 Statistics Theory +1510.04528 Optimization and Control +1510.05262 Phenomenology +1510.07292 Metric Geometry +1510.08842 Optimization and Control +1511.05116 Cosmology and Nongalactic Astrophysics +1511.05966 Fluid Dynamics +1511.07067 Computer Vision and Pattern Recognition +1512.00235 Strongly Correlated Electrons +1512.01079 Solar and Stellar Astrophysics +1512.05593 Materials Science +1512.05984 +1512.07536 +1512.09232 Combinatorics +1601.01630 +1601.02711 Complex Variables +1601.04360 +1601.04414 Cosmology and Nongalactic Astrophysics +1601.04509 Combinatorics +1601.05243 Analysis of PDEs +1601.05430 Phenomenology +1601.06343 Combinatorics +1601.07838 Number Theory +1602.01610 Number Theory +1602.02809 High Energy Astrophysical Phenomena +1602.03956 Computers and Society +1602.04201 Mesoscale and Nanoscale Physics +1602.06630 Neurons and Cognition +1602.07289 Astrophysics of Galaxies +1602.07442 Materials Science +1602.08524 Instrumentation and Detectors +1602.08915 Strongly Correlated Electrons +1603.01341 Trading and Market Microstructure +1603.01866 Computational Engineering, Finance, and Science +1603.02053 +1603.02704 +1603.04744 Materials Science +1603.05460 Phenomenology +1603.05567 Experiment +1603.07359 +1603.07458 Logic in Computer Science +1603.07917 Superconductivity +1603.08064 Mesoscale and Nanoscale Physics +1603.08689 Soft Condensed Matter +1603.09479 Functional Analysis +1603.09497 Functional Analysis +1603.09555 +1604.00197 Analysis of PDEs +1604.01385 +1604.01896 Optimization and Control +1604.02366 Phenomenology +1604.03291 Quantum Gases +1604.03337 Computational Finance +1604.04991 Mesoscale and Nanoscale Physics +1604.05679 +1604.05831 Materials Science +1604.06768 Strongly Correlated Electrons +1604.07193 Information Theory +1605.00304 +1605.00624 Geometric Topology +1605.00672 +1605.01145 Number Theory +1605.03009 Artificial Intelligence +1605.03714 Soft Condensed Matter +1605.04881 Theory +1605.05534 Optimization and Control +1605.05553 +1605.05909 Instrumentation and Detectors +1605.05930 Cryptography and Security +1605.07129 Statistics Theory +1605.07295 +1605.07702 Symplectic Geometry +1605.08525 Probability +1605.08651 Statistics Theory +1605.08926 Optimization and Control +1605.09662 Algebraic Geometry +1606.00083 Combinatorics +1606.01094 +1606.01114 Geometric Topology +1606.01954 Strongly Correlated Electrons +1606.02567 Differential Geometry +1606.03565 Biomolecules +1606.03892 Cosmology and Nongalactic Astrophysics +1606.04033 Human-Computer Interaction +1606.04226 +1606.04520 +1606.04915 High Energy Astrophysical Phenomena +1606.05204 Methodology +1606.05271 Rings and Algebras +1606.05358 +1606.05543 Combinatorics +1606.06230 Chemical Physics +1606.06555 Biological Physics +1606.07168 Quantum Gases +1606.07733 +1606.07814 High Energy Astrophysical Phenomena +1606.07871 Numerical Analysis +1606.07981 Information Theory +1606.08081 Theory +1606.08183 +1606.08208 Probability +1606.08457 +1606.08588 Theory +1606.08609 Astrophysics of Galaxies +1606.08652 Experiment +1606.08660 Machine Learning +1606.08705 Mesoscale and Nanoscale Physics +1606.08732 Astrophysics of Galaxies +1606.08805 Computer Vision and Pattern Recognition +1606.08814 Solar and Stellar Astrophysics +1606.08844 Analysis of PDEs +1606.08846 Instrumentation and Methods for Astrophysics +1606.08849 Phenomenology +1606.08857 Strongly Correlated Electrons +1606.08861 Probability +1606.08863 Statistical Mechanics +1606.08864 Instrumentation and Methods for Astrophysics +1606.08866 Programming Languages +1606.08867 Numerical Analysis +1606.08868 Materials Science +1606.08872 Representation Theory +1606.08875 Probability +1606.08876 Metric Geometry +1606.08881 Distributed, Parallel, and Cluster Computing +1606.08883 Distributed, Parallel, and Cluster Computing +1606.08884 Databases +1606.08887 Dynamical Systems +1606.08888 Metric Geometry +1606.08892 Phenomenology +1606.08896 Artificial Intelligence +1606.08900 Representation Theory +1606.08902 Quantitative Methods +1606.08903 Methodology +1606.08904 Distributed, Parallel, and Cluster Computing +1606.08906 Artificial Intelligence +1606.08907 Phenomenology +1606.08909 Combinatorics +1606.08910 Numerical Analysis +1606.08911 Quantum Gases +1606.08916 Physics and Society +1606.08920 Learning +1606.08922 Cosmology and Nongalactic Astrophysics +1606.08925 Methodology +1606.08927 Social and Information Networks +1606.08928 Learning +1606.08929 +1606.08930 Category Theory +1606.08931 Phenomenology +1606.08933 Differential Geometry +1606.08934 Differential Geometry +1606.08935 Analysis of PDEs +1606.08936 Networking and Internet Architecture +1606.08937 Classical Analysis and ODEs +1606.08938 Dynamical Systems +1606.08939 Systems and Control +1606.08941 Genomics +1606.08943 Combinatorics +1606.08944 Number Theory +1606.08947 Materials Science +1606.08950 Information Theory +1606.08951 Optimization and Control +1606.08952 Information Theory +1606.08954 Computation and Language +1606.08955 Multimedia +1606.08957 Machine Learning +1606.08958 Differential Geometry +1606.08961 Functional Analysis +1606.08963 Artificial Intelligence +1606.08964 Quantum Gases +1606.08967 History and Overview +1606.08968 Networking and Internet Architecture +1606.08971 Information Theory +1606.08972 Discrete Mathematics +1606.08973 Information Theory +1606.08974 Statistics Theory +1606.08978 Probability +1606.08981 Functional Analysis +1606.08984 Economics +1606.08985 Spectral Theory +1606.08986 Probability +1606.08989 Astrophysics of Galaxies +1606.08990 Information Theory +1606.08993 Chaotic Dynamics +1606.08997 Probability +1606.08999 Multimedia +1606.09001 Mesoscale and Nanoscale Physics +1606.09003 Phenomenology +1606.09004 Applications +1606.09005 Optics +1606.09006 Algebraic Geometry +1606.09012 Networking and Internet Architecture +1606.09014 Biological Physics +1606.09017 Other Statistics +1606.09021 Materials Science +1606.09022 Learning +1606.09027 Mesoscale and Nanoscale Physics +1606.09029 Computer Vision and Pattern Recognition +1606.09034 Disordered Systems and Neural Networks +1606.09038 Phenomenology +1606.09040 Algebraic Geometry +1606.09042 Cryptography and Security +1606.09044 Phenomenology +1606.09046 Phenomenology +1606.09047 Multimedia +1606.09049 +1606.09058 Computation and Language +1606.09059 Mesoscale and Nanoscale Physics +1606.09060 Differential Geometry +1606.09062 Combinatorics +1606.09064 Analysis of PDEs +1606.09065 Combinatorics +1606.09067 Phenomenology +1606.09068 Combinatorics +1606.09069 Representation Theory +1606.09073 Information Theory +1606.09076 Information Theory +1606.09080 Category Theory +1606.09081 Combinatorics +1606.09082 Physics and Society +1606.09083 General Mathematics +1606.09086 Solar and Stellar Astrophysics +1606.09087 Statistics Theory +1606.09092 Classical Analysis and ODEs +1606.09094 Soft Condensed Matter +1606.09096 Representation Theory +1606.09097 Group Theory +1606.09100 Solar and Stellar Astrophysics +1606.09101 Combinatorics +1606.09102 Chemical Physics +1606.09106 Information Theory +1606.09109 Spectral Theory +1606.09111 Optimization and Control +1606.09117 Accelerator Physics +1606.09118 Computer Vision and Pattern Recognition +1606.09123 Methodology +1606.09124 Fluid Dynamics +1606.09126 Statistics Theory +1606.09131 Information Theory +1606.09132 Combinatorics +1606.09133 Biological Physics +1606.09135 Information Theory +1606.09136 Digital Libraries +1606.09141 Differential Geometry +1606.09144 Complex Variables +1606.09145 Complex Variables +1606.09150 Experiment +1606.09154 Metric Geometry +1606.09155 Optimization and Control +1606.09163 Computation and Language +1606.09167 Fluid Dynamics +1606.09169 Group Theory +1606.09173 Computational Physics +1606.09175 Combinatorics +1606.09184 Machine Learning +1606.09185 Neurons and Cognition +1606.09188 Computational Geometry +1606.09190 Machine Learning +1606.09191 Phenomenology +1606.09192 Strongly Correlated Electrons +1606.09193 Statistics Theory +1606.09194 Trading and Market Microstructure +1606.09195 Cosmology and Nongalactic Astrophysics +1606.09196 Solar and Stellar Astrophysics +1606.09197 Learning +1606.09198 Differential Geometry +1606.09200 +1606.09205 Computers and Society +1606.09208 Combinatorics +1606.09215 Solar and Stellar Astrophysics +1606.09220 +1606.09222 Sound +1606.09224 Cosmology and Nongalactic Astrophysics +1606.09225 +1606.09227 Solar and Stellar Astrophysics +1606.09228 Probability +1606.09233 Information Theory +1606.09235 Mesoscale and Nanoscale Physics +1606.09236 Computers and Society +1606.09239 Computation and Language +hep-th/0110122 Theory +0710.4526 +0812.1385 Computational Complexity +1011.1635 Algebraic Topology +1105.2714 Functional Analysis +1109.1885 Theory +1203.0373 Analysis of PDEs +1204.2532 Dynamical Systems +1204.5236 Analysis of PDEs +1206.3900 Differential Geometry +1207.4839 Differential Geometry +1207.6440 Functional Analysis +1208.4055 Algebraic Geometry +1211.7023 Algebraic Geometry +1301.6238 Probability +1303.7018 Geometric Topology +1304.3172 Data Structures and Algorithms +1305.1978 +1306.6055 Symplectic Geometry +1306.6150 Dynamical Systems +1307.3012 +1308.3152 Geometric Topology +1311.0846 Differential Geometry +1311.5152 Symplectic Geometry +1312.2543 Number Theory +1312.4997 Probability +1312.6050 Functional Analysis +1312.6947 Computation and Language +1312.7450 Algebraic Topology +1401.0350 Algebraic Geometry +1401.1039 Geometric Topology +1401.1082 Solar and Stellar Astrophysics +1401.3234 Dynamical Systems +1401.5166 Classical Analysis and ODEs +1401.7194 Combinatorics +1402.4517 Superconductivity +1403.0406 Logic in Computer Science +1403.1855 K-Theory and Homology +1403.2125 Metric Geometry +1403.2313 +1403.2412 Instrumentation and Detectors +1403.6101 Algebraic Topology +1403.6820 Instrumentation and Methods for Astrophysics +1403.6841 Instrumentation and Methods for Astrophysics +1404.0065 Combinatorics +1404.1465 Complex Variables +1404.2225 Algebraic Geometry +1404.2736 Geometric Topology +1404.5249 Differential Geometry +1404.6190 Pricing of Securities +1404.6593 Instrumentation and Methods for Astrophysics +1405.0228 High Energy Astrophysical Phenomena +1405.3645 Instrumentation and Detectors +1405.6372 Differential Geometry +1406.2133 Pricing of Securities +1406.2382 Operator Algebras +1406.2722 Geometric Topology +1406.2742 Data Analysis, Statistics and Probability +1406.4531 +1406.5900 Geometric Topology +1406.6730 Information Theory +1407.1469 Analysis of PDEs +1407.3216 Soft Condensed Matter +1407.4603 Mesoscale and Nanoscale Physics +1407.4993 Algebraic Topology +1407.5389 +1407.5749 Classical Analysis and ODEs +1408.0382 Analysis of PDEs +1408.1555 Geometric Topology +1408.5097 Instrumentation and Methods for Astrophysics +1408.5479 Geometric Topology +1409.1248 +1409.1409 Materials Science +1409.1690 Solar and Stellar Astrophysics +1409.4784 Geometric Topology +1409.5212 Functional Analysis +1409.6566 Dynamical Systems +1410.0670 +1410.2782 Classical Analysis and ODEs +1410.3484 Phenomenology +1410.3574 Algebraic Geometry +1410.5359 Differential Geometry +1410.7740 Mesoscale and Nanoscale Physics +1411.1782 Metric Geometry +1411.2300 Geometric Topology +1411.2734 Commutative Algebra +1411.4164 Functional Analysis +1412.0012 Astrophysics of Galaxies +1412.0186 Geometric Topology +1412.1341 Phenomenology +1412.3315 Combinatorics +1412.3322 Probability +1412.3661 Statistics Theory +1412.3831 Data Analysis, Statistics and Probability +1412.8612 Strongly Correlated Electrons +1501.00165 Combinatorics +1501.00296 Earth and Planetary Astrophysics +1501.00328 Instrumentation and Methods for Astrophysics +1501.00595 +1501.03738 Disordered Systems and Neural Networks +1501.03985 +1501.05582 +1501.05786 Cosmology and Nongalactic Astrophysics +1501.06330 High Energy Astrophysical Phenomena +1502.01084 +1502.02218 Information Theory +1502.04476 +1502.04669 Soft Condensed Matter +1502.05456 Theory +1502.06960 Solar and Stellar Astrophysics +1502.07991 Geometric Topology +1503.00733 Theory +1503.03100 +1503.04688 Discrete Mathematics +1503.05234 Quantum Gases +1503.09017 Mesoscale and Nanoscale Physics +1504.00140 Optimization and Control +1504.00715 Representation Theory +1504.01074 Phenomenology +1504.01103 Phenomenology +1504.03170 Data Structures and Algorithms +1504.03378 Superconductivity +1504.03503 Networking and Internet Architecture +1504.04914 Neural and Evolutionary Computing +1504.05201 Solar and Stellar Astrophysics +1504.06157 Representation Theory +1504.08342 Computation and Language +1505.00198 Cosmology and Nongalactic Astrophysics +1505.00346 Information Theory +1505.01067 Phenomenology +1505.01155 Solar and Stellar Astrophysics +1505.01559 Statistical Mechanics +1505.02775 Strongly Correlated Electrons +1505.03370 Mesoscale and Nanoscale Physics +1505.03924 Data Structures and Algorithms +1505.04187 Functional Analysis +1505.04475 Solar and Stellar Astrophysics +1505.05022 Logic in Computer Science +1505.05137 Operator Algebras +1505.05920 +1505.07020 Physics and Society +1506.01013 Atomic Physics +1506.01474 Differential Geometry +1506.01558 Representation Theory +1506.02140 Astrophysics of Galaxies +1506.03559 Strongly Correlated Electrons +1506.04312 Strongly Correlated Electrons +1506.04341 Operator Algebras +1506.04572 Solar and Stellar Astrophysics +1506.05231 Information Theory +1506.05250 Phenomenology +1506.05967 Machine Learning +1506.07443 Phenomenology +1506.07644 Strongly Correlated Electrons +1506.07801 High Energy Astrophysical Phenomena +1506.07826 Lattice +1506.08832 Phenomenology +1507.00672 Statistical Mechanics +1507.01340 Number Theory +1507.02105 Instrumentation and Methods for Astrophysics +1507.02537 Methodology +1507.02881 Mesoscale and Nanoscale Physics +1507.03449 Strongly Correlated Electrons +1507.03961 Instrumentation and Methods for Astrophysics +1507.03966 Earth and Planetary Astrophysics +1507.04652 +1507.04758 Solar and Stellar Astrophysics +1507.06051 Earth and Planetary Astrophysics +1507.06486 Phenomenology +1507.06605 Phenomenology +1507.07002 Astrophysics of Galaxies +1507.07802 Phenomenology +1507.07926 Phenomenology +1507.08200 Strongly Correlated Electrons +1507.08641 Information Theory +1507.08805 Numerical Analysis +1508.00321 Earth and Planetary Astrophysics +1508.00585 Phenomenology +1508.00646 Earth and Planetary Astrophysics +1508.00659 +1508.00881 Phenomenology +1508.01501 Phenomenology +1508.01823 Combinatorics +1508.02141 +1508.02712 High Energy Astrophysical Phenomena +1508.02999 +1508.03322 Experiment +1508.03988 Plasma Physics +1508.04328 +1508.04482 Superconductivity +1508.05082 Logic +1508.05088 High Energy Astrophysical Phenomena +1508.05584 Atomic Physics +1508.06249 Phenomenology +1508.06506 Analysis of PDEs +1508.06536 Strongly Correlated Electrons +1508.07434 Logic +1508.07596 Lattice +1509.00020 Instrumentation and Methods for Astrophysics +1509.00860 +1509.00973 Materials Science +1509.01082 Astrophysics of Galaxies +1509.01248 High Energy Astrophysical Phenomena +1509.01411 Instrumentation and Methods for Astrophysics +1509.01735 +1509.01740 Information Theory +1509.01911 Quantum Gases +1509.01985 Strongly Correlated Electrons +1509.02160 Theory +1509.02562 +1509.03314 Strongly Correlated Electrons +1509.03426 +1509.03658 Strongly Correlated Electrons +1509.03662 K-Theory and Homology +1509.03725 +1509.04028 Optics +1509.04212 Superconductivity +1509.04579 +1509.04910 Probability +1509.05183 Physics and Society +1509.05777 Theory +1509.05933 Combinatorics +1509.05956 +1509.06021 Differential Geometry +1509.06360 +1509.06379 Solar and Stellar Astrophysics +1509.06466 Solar and Stellar Astrophysics +1509.06476 Mesoscale and Nanoscale Physics +1509.06591 +1509.06762 Astrophysics of Galaxies +1509.07829 +1509.07872 Theory +1509.08389 +1509.08450 +1509.08822 +1510.00180 +1510.00194 Theory +1510.00654 Experiment +1510.01323 Earth and Planetary Astrophysics +1510.01532 Superconductivity +1510.01641 Experiment +1510.01745 Cosmology and Nongalactic Astrophysics +1510.01884 +1510.01916 Cosmology and Nongalactic Astrophysics +1510.02116 Strongly Correlated Electrons +1510.02168 Phenomenology +1510.02603 Superconductivity +1510.02688 Materials Science +1510.02980 Quantum Gases +1510.03417 +1510.03579 Solar and Stellar Astrophysics +1510.03644 +1510.03818 Experiment +1510.03847 Optics +1510.03958 +1510.04145 Number Theory +1510.04278 Strongly Correlated Electrons +1510.04405 Mesoscale and Nanoscale Physics +1510.04625 +1510.05341 Adaptation and Self-Organizing Systems +1510.05397 High Energy Astrophysical Phenomena +1510.05401 Astrophysics of Galaxies +1510.05637 Earth and Planetary Astrophysics +1510.05791 +1510.05839 Optics +1510.05878 Earth and Planetary Astrophysics +1510.05895 Phenomenology +1510.05977 +1510.06196 +1510.06205 Instrumentation and Methods for Astrophysics +1510.06242 High Energy Astrophysical Phenomena +1510.06499 +1510.06575 Earth and Planetary Astrophysics +1510.06621 Genomics +1510.06711 Solar and Stellar Astrophysics +1510.06819 Algebraic Geometry +1510.07223 Earth and Planetary Astrophysics +1510.07490 +1510.07518 Atomic Physics +1510.07532 +1510.08030 +1510.08394 Earth and Planetary Astrophysics +1510.08414 Earth and Planetary Astrophysics +1510.08430 Materials Science +1510.08536 Astrophysics of Galaxies +1510.08655 Strongly Correlated Electrons +1510.08672 Theory +1511.00419 +1511.00726 Representation Theory +1511.00904 Astrophysics of Galaxies +1511.00912 Strongly Correlated Electrons +1511.00958 Optics +1511.00992 Superconductivity +1511.01027 +1511.01417 Earth and Planetary Astrophysics +1511.01520 Astrophysics of Galaxies +1511.01537 Astrophysics of Galaxies +1511.01857 +1511.02088 Molecular Networks +1511.02390 Optimization and Control +1511.02421 Optics +1511.02541 Theory +1511.02728 +1511.03280 Cosmology and Nongalactic Astrophysics +1511.03620 Phenomenology +1511.03682 Phenomenology +1511.03715 Instrumentation and Methods for Astrophysics +1511.03735 Earth and Planetary Astrophysics +1511.03768 Quantum Gases +1511.03862 +1511.04022 +1511.04025 Physics and Society +1511.04064 Statistical Mechanics +1511.04822 Earth and Planetary Astrophysics +1511.05193 Quantum Gases +1511.05564 Instrumentation and Methods for Astrophysics +1511.05590 Phenomenology +1511.05897 Learning +1511.05954 Earth and Planetary Astrophysics +1511.06030 Artificial Intelligence +1511.06157 Statistical Mechanics +1511.06769 Earth and Planetary Astrophysics +1511.07405 Other Condensed Matter +1511.07455 Theory +1511.08010 Quantum Gases +1511.08148 +1511.08153 +1511.08637 Quantum Gases +1511.08687 Theory +1511.09383 High Energy Astrophysical Phenomena +1511.09400 Superconductivity +1512.00253 Astrophysics of Galaxies +1512.00493 Theory +1512.00673 Analysis of PDEs +1512.00680 Mesoscale and Nanoscale Physics +1512.00687 Mesoscale and Nanoscale Physics +1512.00817 Phenomenology +1512.00855 High Energy Astrophysical Phenomena +1512.00860 Astrophysics of Galaxies +1512.00991 Astrophysics of Galaxies +1512.01200 +1512.01375 Computer Science and Game Theory +1512.01532 High Energy Astrophysical Phenomena +1512.01833 High Energy Astrophysical Phenomena +1512.02108 Solar and Stellar Astrophysics +1512.02150 Atomic Physics +1512.02152 Phenomenology +1512.02327 Astrophysics of Galaxies +1512.02706 Earth and Planetary Astrophysics +1512.03066 High Energy Astrophysical Phenomena +1512.03331 Theory +1512.03349 Solar and Stellar Astrophysics +1512.03434 Astrophysics of Galaxies +1512.03467 Astrophysics of Galaxies +1512.03596 Earth and Planetary Astrophysics +1512.03693 Solar and Stellar Astrophysics +1512.03872 Phenomenology +1512.04034 Phenomenology +1512.04206 Mesoscale and Nanoscale Physics +1512.04378 Atomic Physics +1512.04413 Quantum Gases +1512.04442 Experiment +1512.04613 Numerical Analysis +1512.04770 Probability +1512.04861 Strongly Correlated Electrons +1512.04908 Earth and Planetary Astrophysics +1512.04921 Phenomenology +1512.05108 Theory +1512.05368 High Energy Astrophysical Phenomena +1512.05692 Solar and Stellar Astrophysics +1512.05750 Theory +1512.05961 Phenomenology +1512.06102 Strongly Correlated Electrons +1512.06124 High Energy Astrophysical Phenomena +1512.06134 Theory +1512.06508 Phenomenology +1512.06664 Phenomenology +1512.06728 Phenomenology +1512.06733 Phenomenology +1512.06805 Theory +1512.06952 High Energy Astrophysical Phenomena +1512.06969 Astrophysics of Galaxies +1512.07084 +1512.07107 Solar and Stellar Astrophysics +1512.07232 Phenomenology +1512.07394 Cosmology and Nongalactic Astrophysics +1512.07481 Statistical Mechanics +1512.07672 Phenomenology +1512.07860 +1512.07905 Chemical Physics +1512.08015 Cosmology and Nongalactic Astrophysics +1512.08600 Cosmology and Nongalactic Astrophysics +1512.08793 Solar and Stellar Astrophysics +1512.08802 +1512.09138 Theory +1512.09301 Systems and Control +1601.00344 Astrophysics of Galaxies +1601.00347 High Energy Astrophysical Phenomena +1601.00474 Solar and Stellar Astrophysics +1601.00505 Earth and Planetary Astrophysics +1601.00540 Theory +1601.00544 Astrophysics of Galaxies +1601.00644 Astrophysics of Galaxies +1601.00749 Solar and Stellar Astrophysics +1601.00791 Solar and Stellar Astrophysics +1601.00907 Earth and Planetary Astrophysics +1601.00937 Astrophysics of Galaxies +1601.01000 Classical Analysis and ODEs +1601.01020 High Energy Astrophysical Phenomena +1601.01154 +1601.01264 High Energy Astrophysical Phenomena +1601.01687 Astrophysics of Galaxies +1601.01756 Solar and Stellar Astrophysics +1601.02073 Instrumentation and Methods for Astrophysics +1601.02116 Materials Science +1601.02170 Solar and Stellar Astrophysics +1601.02176 Quantum Gases +1601.02292 Earth and Planetary Astrophysics +1601.02311 Computational Complexity +1601.02395 Earth and Planetary Astrophysics +1601.02400 Phenomenology +1601.02506 Solar and Stellar Astrophysics +1601.02535 Atomic Physics +1601.02606 Solar and Stellar Astrophysics +1601.02614 Instrumentation and Methods for Astrophysics +1601.02664 Astrophysics of Galaxies +1601.02690 Atomic Physics +1601.03050 Earth and Planetary Astrophysics +1601.03056 Astrophysics of Galaxies +1601.03077 Astrophysics of Galaxies +1601.03331 High Energy Astrophysical Phenomena +1601.03349 Astrophysics of Galaxies +1601.03395 Solar and Stellar Astrophysics +1601.03556 Cosmology and Nongalactic Astrophysics +1601.03668 Astrophysics of Galaxies +1601.03687 Astrophysics of Galaxies +1601.03739 High Energy Astrophysical Phenomena +1601.03741 Cosmology and Nongalactic Astrophysics +1601.03806 Solar and Stellar Astrophysics +1601.03894 +1601.04069 Solar and Stellar Astrophysics +1601.04266 Instrumentation and Methods for Astrophysics +1601.04430 Strongly Correlated Electrons +1601.04490 High Energy Astrophysical Phenomena +1601.04599 Solar and Stellar Astrophysics +1601.04681 Astrophysics of Galaxies +1601.04709 Astrophysics of Galaxies +1601.04814 Databases +1601.04978 Astrophysics of Galaxies +1601.04983 Solar and Stellar Astrophysics +1601.05020 Data Structures and Algorithms +1601.05090 Astrophysics of Galaxies +1601.05139 Strongly Correlated Electrons +1601.05168 Solar and Stellar Astrophysics +1601.05309 Instrumentation and Methods for Astrophysics +1601.05433 Cosmology and Nongalactic Astrophysics +1601.05464 Instrumentation and Methods for Astrophysics +1601.05665 Earth and Planetary Astrophysics +1601.05736 Solar and Stellar Astrophysics +1601.05811 Solar and Stellar Astrophysics +1601.05949 Atomic Physics +1601.06002 Astrophysics of Galaxies +1601.06155 Astrophysics of Galaxies +1601.06162 Earth and Planetary Astrophysics +1601.06628 Solar and Stellar Astrophysics +1601.06786 Astrophysics of Galaxies +1601.06801 Solar and Stellar Astrophysics +1601.06892 Computer Vision and Pattern Recognition +1601.06947 Astrophysics of Galaxies +1601.07177 Astrophysics of Galaxies +1601.07307 Combinatorics +1601.07368 High Energy Astrophysical Phenomena +1601.07475 +1601.07746 Quantum Gases +1601.07837 Earth and Planetary Astrophysics +1601.07909 Astrophysics of Galaxies +1601.08045 Phenomenology +1602.00450 Materials Science +1602.00637 Phenomenology +1602.00806 High Energy Astrophysical Phenomena +1602.00966 Solar and Stellar Astrophysics +1602.00987 Instrumentation and Methods for Astrophysics +1602.01001 Optics +1602.01087 Astrophysics of Galaxies +1602.01105 Astrophysics of Galaxies +1602.01322 Phenomenology +1602.01400 Astrophysics of Galaxies +1602.01461 Phenomenology +1602.01509 Networking and Internet Architecture +1602.01526 Atomic Physics +1602.01978 Phenomenology +1602.02145 Solar and Stellar Astrophysics +1602.02365 Materials Science +1602.02397 +1602.02596 Cosmology and Nongalactic Astrophysics +1602.02783 Astrophysics of Galaxies +1602.02816 Astrophysics of Galaxies +1602.02844 Number Theory +1602.03079 Solar and Stellar Astrophysics +1602.03252 Materials Science +1602.03270 Theory +1602.03281 Strongly Correlated Electrons +1602.03528 High Energy Astrophysical Phenomena +1602.04558 High Energy Astrophysical Phenomena +1602.04831 Astrophysics of Galaxies +1602.04964 Solar and Stellar Astrophysics +1602.05000 Solar and Stellar Astrophysics +1602.05262 High Energy Astrophysical Phenomena +1602.05346 Solar and Stellar Astrophysics +1602.05412 Astrophysics of Galaxies +1602.05570 Instrumentation and Methods for Astrophysics +1602.05579 Astrophysics of Galaxies +1602.05777 Instrumentation and Methods for Astrophysics +1602.05789 Solar and Stellar Astrophysics +1602.05816 High Energy Astrophysical Phenomena +1602.05864 High Energy Astrophysical Phenomena +1602.05868 Solar and Stellar Astrophysics +1602.05893 Cosmology and Nongalactic Astrophysics +1602.05904 Astrophysics of Galaxies +1602.05923 Cosmology and Nongalactic Astrophysics +1602.05962 Astrophysics of Galaxies +1602.06013 Solar and Stellar Astrophysics +1602.06196 Astrophysics of Galaxies +1602.06280 Solar and Stellar Astrophysics +1602.06343 Cosmology and Nongalactic Astrophysics +1602.06357 Solar and Stellar Astrophysics +1602.06385 +1602.06691 High Energy Astrophysical Phenomena +1602.06798 Astrophysics of Galaxies +1602.06806 Fluid Dynamics +1602.06866 Social and Information Networks +1602.06927 Astrophysics of Galaxies +1602.07135 +1602.07168 Cryptography and Security +1602.07308 Astrophysics of Galaxies +1602.07431 Number Theory +1602.07637 Software Engineering +1602.07651 Astrophysics of Galaxies +1602.08083 Phenomenology +1602.08174 Strongly Correlated Electrons +1602.08641 Astrophysics of Galaxies +1602.08704 Solar and Stellar Astrophysics +1602.09031 Computational Physics +1603.00009 Instrumentation and Detectors +1603.00028 +1603.00219 Instrumentation and Methods for Astrophysics +1603.00224 High Energy Astrophysical Phenomena +1603.00454 Logic +1603.00715 Astrophysics of Galaxies +1603.00759 Data Structures and Algorithms +1603.00853 +1603.00893 Databases +1603.00903 +1603.00911 Soft Condensed Matter +1603.01086 Logic +1603.01170 Plasma Physics +1603.01192 Plasma Physics +1603.01243 +1603.01670 Learning +1603.01917 Solar and Stellar Astrophysics +1603.02032 Combinatorics +1603.02218 Optics +1603.02257 +1603.02260 Other Computer Science +1603.02261 Software Engineering +1603.02262 Software Engineering +1603.02263 Differential Geometry +1603.02269 +1603.02270 Solar and Stellar Astrophysics +1603.02276 Solar and Stellar Astrophysics +1603.02288 Complex Variables +1603.02290 Instrumentation and Detectors +1603.02293 Networking and Internet Architecture +1603.02295 Differential Geometry +1603.02297 Mathematical Software +1603.02298 Cellular Automata and Lattice Gases +1603.02304 Analysis of PDEs +1603.02305 Materials Science +1603.02308 Software Engineering +1603.02310 Combinatorics +1603.02313 Physics Education +1603.02314 Statistical Mechanics +1603.02316 Probability +1603.02318 Materials Science +1603.02319 Algebraic Geometry +1603.02320 Strongly Correlated Electrons +1603.02321 Data Structures and Algorithms +1603.02323 Functional Analysis +1603.02327 Quantum Gases +1603.02328 Group Theory +1603.02330 Classical Analysis and ODEs +1603.02335 Optimization and Control +1603.02339 Distributed, Parallel, and Cluster Computing +1603.02341 Robotics +1603.02344 Information Theory +1603.02347 Robotics +1603.02351 Robotics +1603.02352 Instrumentation and Methods for Astrophysics +1603.02353 Algebraic Geometry +1603.02354 Portfolio Management +1603.02355 Algebraic Geometry +1603.02357 Superconductivity +1603.02360 Instrumentation and Detectors +1603.02361 Analysis of PDEs +1603.02362 Probability +1603.02365 Information Theory +1603.02372 Geometric Topology +1603.02373 Other Statistics +1603.02380 Geometric Topology +1603.02381 Robotics +1603.02382 Algebraic Geometry +1603.02384 Optimization and Control +1603.02387 Differential Geometry +1603.02388 Information Theory +1603.02389 Cosmology and Nongalactic Astrophysics +1603.02391 Number Theory +1603.02393 Other Computer Science +1603.02394 Mesoscale and Nanoscale Physics +1603.02396 Other Computer Science +1603.02399 Analysis of PDEs +1603.02400 Optimization and Control +1603.02401 Probability +1603.02402 Analysis of PDEs +1603.02406 Dynamical Systems +1603.02412 Optimization and Control +1603.02413 Social and Information Networks +1603.02414 Populations and Evolution +1603.02416 +1603.02419 Networking and Internet Architecture +1603.02420 Optics +1603.02421 Fluid Dynamics +1603.02422 Probability +1603.02424 +1603.02425 Materials Science +1603.02426 Systems and Control +1603.02428 Combinatorics +1603.02429 Numerical Analysis +1603.02430 Combinatorics +1603.02433 Combinatorics +1603.02434 Machine Learning +1603.02437 Soft Condensed Matter +1603.02438 Economics +1603.02440 Soft Condensed Matter +1603.02441 Soft Condensed Matter +1603.02442 Theory +1603.02445 Soft Condensed Matter +1603.02447 Computer Vision and Pattern Recognition +1603.02452 Phenomenology +1603.02454 Optimization and Control +1603.02457 Data Structures and Algorithms +1603.02458 Systems and Control +1603.02464 Geometric Topology +1603.02465 High Energy Astrophysical Phenomena +1603.02466 Computer Vision and Pattern Recognition +1603.02467 Discrete Mathematics +1603.02469 Logic +1603.02471 Functional Analysis +1603.02472 Networking and Internet Architecture +1603.02474 Combinatorics +1603.02476 Networking and Internet Architecture +1603.02482 Atomic Physics +1603.02484 Computers and Society +1603.02487 Physics and Society +1603.02488 Computation and Language +1603.02489 Logic +1603.02491 Information Theory +1603.02492 Solar and Stellar Astrophysics +1603.02494 Applications +1603.02497 Dynamical Systems +1603.02499 Materials Science +1603.02503 Instrumentation and Detectors +1603.02506 Probability +1603.02512 Solar and Stellar Astrophysics +1603.02515 +1603.02516 Computational Physics +1603.02519 Materials Science +1603.02526 Distributed, Parallel, and Cluster Computing +1603.02527 Probability +1603.02528 Mesoscale and Nanoscale Physics +1603.02532 Learning +1603.02533 Dynamical Systems +1603.02534 Functional Analysis +1603.02535 Dynamical Systems +1603.02536 Number Theory +1603.02539 Fluid Dynamics +1603.02542 Dynamical Systems +1603.02545 Mesoscale and Nanoscale Physics +1603.02547 Materials Science +1603.02550 Materials Science +1603.02556 Analysis of PDEs +1603.02558 Information Theory +1603.02559 Mesoscale and Nanoscale Physics +1603.02560 General Physics +1603.02563 Systems and Control +1603.02566 Optimization and Control +1603.02568 General Physics +1603.02570 Quantum Gases +1603.02576 Materials Science +1603.02578 Learning +1603.02579 Plasma Physics +1603.02584 Networking and Internet Architecture +1603.02586 Theory +1603.02589 Statistics Theory +1603.02592 Representation Theory +1603.02593 Chemical Physics +1603.02594 Combinatorics +1603.02596 Optimization and Control +1603.02597 Formal Languages and Automata Theory +1603.02598 Superconductivity +1603.02599 Group Theory +1603.02604 Computation and Language +1603.02605 Computational Complexity +1603.02607 Solar and Stellar Astrophysics +1603.02612 Soft Condensed Matter +1603.02613 Networking and Internet Architecture +1603.02614 Category Theory +1603.02627 +1603.02631 Numerical Analysis +1603.02638 Optimization and Control +1603.02641 Logic in Computer Science +1603.02642 Human-Computer Interaction +1603.02645 Astrophysics of Galaxies +1603.02646 Dynamical Systems +1603.02648 Classical Analysis and ODEs +1603.02649 Computer Vision and Pattern Recognition +1603.02650 Systems and Control +1603.02651 Information Theory +1603.02652 Numerical Analysis +1603.02655 Distributed, Parallel, and Cluster Computing +1603.02658 Numerical Analysis +1603.02665 Statistics Theory +1603.02666 Algebraic Geometry +1603.02667 Materials Science +1603.02668 Complex Variables +1603.02671 Cryptography and Security +1603.02675 Superconductivity +astro-ph/0505311 +math/0507526 Probability +0709.2303 Strongly Correlated Electrons +0804.2779 Strongly Correlated Electrons +0807.1903 General Physics +0903.2347 Strongly Correlated Electrons +1001.2687 Cosmology and Nongalactic Astrophysics +1003.4415 Strongly Correlated Electrons +1011.2703 Phenomenology +1011.2748 Instrumentation and Detectors +1101.3481 Algebraic Geometry +1103.4850 Strongly Correlated Electrons +1104.3255 Analysis of PDEs +1109.4923 +1203.3779 Pattern Formation and Solitons +1205.0239 Strongly Correlated Electrons +1205.4530 +1205.5754 Theory +1206.0252 Number Theory +1208.6574 High Energy Astrophysical Phenomena +1210.1903 Algebraic Geometry +1210.8070 Differential Geometry +1210.8244 Cosmology and Nongalactic Astrophysics +1212.0182 Group Theory +1304.4043 Earth and Planetary Astrophysics +1306.0706 Computational Geometry +1306.2117 +1308.2481 Strongly Correlated Electrons +1308.2915 Algebraic Geometry +1308.3028 Complex Variables +1308.3080 Neural and Evolutionary Computing +1309.0477 Analysis of PDEs +1309.4213 Differential Geometry +1309.5666 Algebraic Geometry +1310.6257 Databases +1311.1545 Pricing of Securities +1311.7371 Instrumentation and Methods for Astrophysics +1402.5426 Differential Geometry +1402.7057 Statistical Mechanics +1403.0268 Optimization and Control +1405.1018 Number Theory +1406.3328 Algebraic Geometry +1406.5395 Group Theory +1406.5955 Statistical Mechanics +1406.7564 Social and Information Networks +1407.0604 +1407.2861 Number Theory +1407.4093 Classical Analysis and ODEs +1407.5021 +1407.6989 Computational Geometry +1408.1577 Computer Science and Game Theory +1408.6148 Mesoscale and Nanoscale Physics +1410.1056 Dynamical Systems +1410.4684 Cosmology and Nongalactic Astrophysics +1410.5921 Strongly Correlated Electrons +1410.8097 +1411.0962 Differential Geometry +1411.4001 Cosmology and Nongalactic Astrophysics +1412.4698 Mathematical Finance +1412.5746 +1501.02077 Superconductivity +1501.03178 Metric Geometry +1501.04086 Quantum Gases +1502.01800 Strongly Correlated Electrons +1502.02607 Superconductivity +1502.03198 Differential Geometry +1502.03386 +1503.01641 Classical Physics +1503.01884 +1503.04453 Quantum Gases +1503.05256 Algebraic Geometry +1503.05731 Strongly Correlated Electrons +1503.07869 Instrumentation and Methods for Astrophysics +1503.08725 +1504.02311 Cosmology and Nongalactic Astrophysics +1504.03980 Representation Theory +1504.06726 Combinatorics +1504.06958 +1505.04211 Neural and Evolutionary Computing +1505.04342 Computation and Language +1505.04470 Probability +1505.04949 Probability +1505.05222 Differential Geometry +1505.05393 Theory +1505.05770 Machine Learning +1505.06192 +1505.06511 Classical Analysis and ODEs +1505.06909 Atomic Physics +1505.08151 Quantum Gases +1506.00465 Strongly Correlated Electrons +1506.01377 Astrophysics of Galaxies +1506.02215 Number Theory +1506.03834 Solar and Stellar Astrophysics +1506.05525 Information Theory +1506.06011 Performance +1506.06878 +1506.08113 Dynamical Systems +1506.08804 +1507.01859 Optimization and Control +1507.01945 Astrophysics of Galaxies +1507.02041 +1507.02081 Robotics +1507.05007 +1507.05123 +1507.05337 Populations and Evolution +1507.07878 Physics and Society +1507.08293 Theory +1507.08365 Representation Theory +1507.08528 Statistical Mechanics +1508.00298 Methodology +1508.00845 Probability +1508.02236 +1508.02757 Statistics Theory +1508.03089 Strongly Correlated Electrons +1508.03682 Medical Physics +1508.03829 +1508.04077 Cosmology and Nongalactic Astrophysics +1508.04422 Machine Learning +1508.04478 Cosmology and Nongalactic Astrophysics +1508.05001 Solar and Stellar Astrophysics +1508.05055 Theory +1508.05762 Astrophysics of Galaxies +1508.06418 Differential Geometry +1508.07350 Cosmology and Nongalactic Astrophysics +1508.07857 Disordered Systems and Neural Networks +1509.00050 Phenomenology +1509.00074 Theory +1509.00806 Soft Condensed Matter +1509.02431 Number Theory +1509.03071 Chemical Physics +1509.03296 High Energy Astrophysical Phenomena +1509.03348 Materials Science +1509.04073 +1509.04768 Probability +1509.05610 Instrumentation and Detectors +1509.06278 Quantitative Methods +1509.07126 +1509.07585 Cosmology and Nongalactic Astrophysics +1509.07705 Mesoscale and Nanoscale Physics +1509.09167 Probability +1510.01033 +1510.01380 Theory +1510.01857 Superconductivity +1510.02545 Mathematical Software +1510.02907 Cosmology and Nongalactic Astrophysics +1510.03011 Biological Physics +1510.03136 Solar and Stellar Astrophysics +1510.03240 +1510.03355 Quantum Gases +1510.03988 Strongly Correlated Electrons +1510.05059 Theory +1510.05848 +1510.06118 Algebraic Geometry +1510.06851 Phenomenology +1510.06977 Fluid Dynamics +1510.07059 Mesoscale and Nanoscale Physics +1510.08232 Theory +1510.08766 +1510.08797 Metric Geometry +1511.00313 Theory +1511.00581 +1511.00885 Metric Geometry +1511.01983 Astrophysics of Galaxies +1511.02111 Combinatorics +1511.02522 Cosmology and Nongalactic Astrophysics +1511.03380 High Energy Astrophysical Phenomena +1511.03439 Phenomenology +1511.04210 Learning +1511.04482 Combinatorics +1511.04795 Theory +1511.04967 Theory +1511.05602 Astrophysics of Galaxies +1511.06176 +1511.06255 Phenomenology +1511.06892 Computer Science and Game Theory +1511.06897 +1511.07379 +1511.07572 +1511.07841 Theory +1511.08211 Cosmology and Nongalactic Astrophysics +1511.08469 Strongly Correlated Electrons +1511.08690 Cosmology and Nongalactic Astrophysics +1511.08741 Astrophysics of Galaxies +1512.00038 Mesoscale and Nanoscale Physics +1512.00309 Cosmology and Nongalactic Astrophysics +1512.00489 Mesoscale and Nanoscale Physics +1512.00535 Strongly Correlated Electrons +1512.00660 +1512.00830 Statistical Mechanics +1512.00955 Optics +1512.01912 Instrumentation and Methods for Astrophysics +1512.01919 +1512.02941 Analysis of PDEs +1512.03026 Mesoscale and Nanoscale Physics +1512.03283 Strongly Correlated Electrons +1512.03303 Mesoscale and Nanoscale Physics +1512.03309 Materials Science +1512.03382 Other Condensed Matter +1512.03708 Solar and Stellar Astrophysics +1512.03760 Chaotic Dynamics +1512.03903 Astrophysics of Galaxies +1512.04342 Astrophysics of Galaxies +1512.04531 Astrophysics of Galaxies +1512.04707 Pattern Formation and Solitons +1512.05305 Theory +1512.06297 Phenomenology +1512.06346 Astrophysics of Galaxies +1512.06458 Phenomenology +1512.07253 Superconductivity +1512.07606 Optics +1512.07915 Cosmology and Nongalactic Astrophysics +1512.08213 +1512.08224 Dynamical Systems +1512.08349 +1512.08420 Solar and Stellar Astrophysics +1512.08963 Phenomenology +1512.08984 Phenomenology +1512.08992 Phenomenology +1512.09054 Lattice +1512.09126 Phenomenology +1601.00357 Cosmology and Nongalactic Astrophysics +1601.00433 Atomic Physics +1601.00759 Materials Science +1601.00921 Theory +1601.01569 Phenomenology +1601.02045 Symplectic Geometry +1601.02140 Phenomenology +1601.02172 Strongly Correlated Electrons +1601.02609 Phenomenology +1601.02956 +1601.03138 Instrumentation and Methods for Astrophysics +1601.03203 Fluid Dynamics +1601.03990 Strongly Correlated Electrons +1601.04347 Phenomenology +1601.05062 Phenomenology +1601.05317 +1601.05431 Quantum Gases +1601.05575 Social and Information Networks +1601.05701 Representation Theory +1601.05881 Mesoscale and Nanoscale Physics +1601.05903 Instrumentation and Methods for Astrophysics +1601.05955 High Energy Astrophysical Phenomena +1601.06172 Quantum Gases +1601.06554 Phenomenology +1601.06571 Astrophysics of Galaxies +1601.07396 Phenomenology +1601.07524 Mesoscale and Nanoscale Physics +1601.08108 Mesoscale and Nanoscale Physics +1602.00423 Mesoscale and Nanoscale Physics +1602.01005 +1602.01367 Mesoscale and Nanoscale Physics +1602.01422 Strongly Correlated Electrons +1602.01696 Quantum Gases +1602.01740 Earth and Planetary Astrophysics +1602.02328 Quantum Gases +1602.02340 Mesoscale and Nanoscale Physics +1602.02476 Disordered Systems and Neural Networks +1602.02537 Materials Science +1602.02729 Solar and Stellar Astrophysics +1602.02761 Astrophysics of Galaxies +1602.02978 Strongly Correlated Electrons +1602.02997 Phenomenology +1602.03056 Solar and Stellar Astrophysics +1602.03062 Plasma Physics +1602.03504 Atomic Physics +1602.03971 +1602.03989 +1602.04142 Lattice +1602.05406 Algebraic Topology +1602.05592 Astrophysics of Galaxies +1602.05849 Phenomenology +1602.06054 Strongly Correlated Electrons +1602.06481 Mesoscale and Nanoscale Physics +1602.06951 +1602.07007 Statistical Mechanics +1602.07109 Machine Learning +1602.07144 +1602.07213 Solar and Stellar Astrophysics +1602.07627 Optics +1602.07922 +1602.08200 Atomic Physics +1602.08500 Astrophysics of Galaxies +1602.08513 +1602.08957 Physics and Society +1602.09048 +1602.09086 Statistical Mechanics +1603.00236 +1603.00290 Phenomenology +1603.00308 Theory +1603.00498 Mesoscale and Nanoscale Physics +1603.00511 High Energy Astrophysical Phenomena +1603.00642 +1603.00648 Information Theory +1603.00725 Soft Condensed Matter +1603.00744 High Energy Astrophysical Phenomena +1603.01006 Computer Vision and Pattern Recognition +1603.01704 +1603.01788 Phenomenology +1603.01880 Neurons and Cognition +1603.01898 High Energy Astrophysical Phenomena +1603.01980 Physics and Society +1603.02156 Superconductivity +1603.02243 Cosmology and Nongalactic Astrophysics +1603.02376 Phenomenology +1603.02455 Quantum Gases +1603.02546 Astrophysics of Galaxies +1603.02756 +1603.03240 Astrophysics of Galaxies +1603.03383 Earth and Planetary Astrophysics +1603.03490 Data Structures and Algorithms +1603.03581 Optics +1603.04149 +1603.04239 Mesoscale and Nanoscale Physics +1603.04249 Cosmology and Nongalactic Astrophysics +1603.04306 Lattice +1603.04420 Astrophysics of Galaxies +1603.04429 Populations and Evolution +1603.04437 Astrophysics of Galaxies +1603.04552 Representation Theory +1603.04837 Mesoscale and Nanoscale Physics +1603.05066 Soft Condensed Matter +1603.05277 Astrophysics of Galaxies +1603.05508 High Energy Astrophysical Phenomena +1603.05577 Strongly Correlated Electrons +1603.05660 Astrophysics of Galaxies +1603.05708 +1603.05748 Combinatorics +1603.05783 Phenomenology +1603.05950 Theory +1603.06792 Soft Condensed Matter +1603.06814 Cosmology and Nongalactic Astrophysics +1603.06947 Astrophysics of Galaxies +1603.07627 Soft Condensed Matter +1603.07700 Statistical Mechanics +1603.07808 Astrophysics of Galaxies +1603.07977 Materials Science +1603.08224 Solar and Stellar Astrophysics +1603.08335 Solar and Stellar Astrophysics +1603.08658 +1603.08741 Astrophysics of Galaxies +1603.08756 Probability +1603.08811 Materials Science +1603.08837 Astrophysics of Galaxies +1603.08882 High Energy Astrophysical Phenomena +1603.08977 Solar and Stellar Astrophysics +1603.09340 Astrophysics of Galaxies +1603.09341 Astrophysics of Galaxies +1603.09346 Theory +1603.09400 Solar and Stellar Astrophysics +1603.09650 Astrophysics of Galaxies +1604.00026 Theory +1604.00027 Theory +1604.00232 High Energy Astrophysical Phenomena +1604.00914 High Energy Astrophysical Phenomena +1604.01022 Solar and Stellar Astrophysics +1604.01099 Astrophysics of Galaxies +1604.01127 Phenomenology +1604.01703 +1604.01767 Astrophysics of Galaxies +1604.01917 Solar and Stellar Astrophysics +1604.02087 Number Theory +1604.02219 +1604.02340 Earth and Planetary Astrophysics +1604.02350 Astrophysics of Galaxies +1604.02382 Phenomenology +1604.02455 High Energy Astrophysical Phenomena +1604.02460 Astrophysics of Galaxies +1604.02574 Phenomenology +1604.02697 Mesoscale and Nanoscale Physics +1604.02965 Solar and Stellar Astrophysics +1604.03121 Earth and Planetary Astrophysics +1604.03128 Solar and Stellar Astrophysics +1604.03205 Solar and Stellar Astrophysics +1604.03530 Phenomenology +1604.03548 Astrophysics of Galaxies +1604.03761 Phenomenology +1604.03793 Logic in Computer Science +1604.03803 Solar and Stellar Astrophysics +1604.04043 Phenomenology +1604.04196 High Energy Astrophysical Phenomena +1604.04252 High Energy Astrophysical Phenomena +1604.04254 High Energy Astrophysical Phenomena +1604.04269 Solar and Stellar Astrophysics +1604.04624 Astrophysics of Galaxies +1604.04626 Astrophysics of Galaxies +1604.04635 Solar and Stellar Astrophysics +1604.04864 Atomic Physics +1604.04900 Atomic Physics +1604.05193 Astrophysics of Galaxies +1604.05892 Astrophysics of Galaxies +1604.05952 Quantum Gases +1604.05980 High Energy Astrophysical Phenomena +1604.05994 Logic in Computer Science +1604.06005 Earth and Planetary Astrophysics +1604.06007 Theory +1604.06293 Information Theory +1604.06462 Astrophysics of Galaxies +1604.06725 Astrophysics of Galaxies +1604.07291 Cosmology and Nongalactic Astrophysics +1604.07340 Solar and Stellar Astrophysics +1604.07425 +1604.07562 High Energy Astrophysical Phenomena +1604.07647 Solar and Stellar Astrophysics +1604.07785 Materials Science +1604.07966 High Energy Astrophysical Phenomena +1604.08321 Superconductivity +1604.08329 Atomic Physics +1604.08590 Astrophysics of Galaxies +1604.08873 Logic in Computer Science +1605.00152 Phenomenology +1605.00504 Solar and Stellar Astrophysics +1605.01489 Astrophysics of Galaxies +1605.01548 Group Theory +1605.01796 Solar and Stellar Astrophysics +1605.01945 Solar and Stellar Astrophysics +1605.02079 Astrophysics of Galaxies +1605.02225 Astrophysics of Galaxies +1605.02450 High Energy Astrophysical Phenomena +1605.02794 Phenomenology +1605.02911 Cosmology and Nongalactic Astrophysics +1605.02946 Materials Science +1605.03109 Astrophysics of Galaxies +1605.03191 Astrophysics of Galaxies +1605.03201 Instrumentation and Methods for Astrophysics +1605.03451 Astrophysics of Galaxies +1605.03562 Disordered Systems and Neural Networks +1605.03580 Astrophysics of Galaxies +1605.03786 Astrophysics of Galaxies +1605.03955 Solar and Stellar Astrophysics +1605.03964 Astrophysics of Galaxies +1605.04056 Learning +1605.04336 Mesoscale and Nanoscale Physics +1605.04396 Superconductivity +1605.04899 Astrophysics of Galaxies +1605.04912 Astrophysics of Galaxies +1605.05032 Materials Science +1605.05858 Programming Languages +1605.05915 Soft Condensed Matter +1605.06069 Computation and Language +1605.06558 Analysis of PDEs +1605.07256 Cosmology and Nongalactic Astrophysics +1605.07482 Chemical Physics +1605.07506 Superconductivity +1605.07550 Solar and Stellar Astrophysics +1605.07945 Computational Finance +1605.08187 Artificial Intelligence +1605.08215 +1605.08267 Phenomenology +1605.08329 Earth and Planetary Astrophysics +1605.08614 Optics +1605.08763 Computers and Society +1605.08802 High Energy Astrophysical Phenomena +1605.08828 Astrophysics of Galaxies +1605.09024 Astrophysics of Galaxies +1605.09076 Solar and Stellar Astrophysics +1605.09504 Astrophysics of Galaxies +1605.09572 Solar and Stellar Astrophysics +1605.09675 Databases +1605.09687 Solar and Stellar Astrophysics +1606.00311 High Energy Astrophysical Phenomena +1606.00356 Solar and Stellar Astrophysics +1606.00388 Strongly Correlated Electrons +1606.00407 +1606.00438 High Energy Astrophysical Phenomena +1606.00440 Earth and Planetary Astrophysics +1606.00526 High Energy Astrophysical Phenomena +1606.00661 Operator Algebras +1606.00663 Strongly Correlated Electrons +1606.00776 Computation and Language +1606.00833 Instrumentation and Methods for Astrophysics +1606.00844 High Energy Astrophysical Phenomena +1606.00967 Astrophysics of Galaxies +1606.00977 Astrophysics of Galaxies +1606.01059 High Energy Astrophysical Phenomena +1606.01138 High Energy Astrophysical Phenomena +1606.01143 High Energy Astrophysical Phenomena +1606.01181 Solar and Stellar Astrophysics +1606.01184 Astrophysics of Galaxies +1606.01191 Representation Theory +1606.01201 Solar and Stellar Astrophysics +1606.01240 High Energy Astrophysical Phenomena +1606.01247 Earth and Planetary Astrophysics +1606.01251 Astrophysics of Galaxies +1606.01264 Earth and Planetary Astrophysics +1606.01340 Databases +1606.01482 Instrumentation and Methods for Astrophysics +1606.01514 Astrophysics of Galaxies +1606.01698 Materials Science +1606.01769 +1606.01775 Solar and Stellar Astrophysics +1606.01777 Solar and Stellar Astrophysics +1606.01854 Analysis of PDEs +1606.01917 Solar and Stellar Astrophysics +1606.02010 Strongly Correlated Electrons +1606.02083 Combinatorics +1606.02128 History and Philosophy of Physics +1606.02342 Computation and Language +1606.02351 Astrophysics of Galaxies +1606.02436 Astrophysics of Galaxies +1606.02706 Astrophysics of Galaxies +1606.02741 Dynamical Systems +1606.02761 Earth and Planetary Astrophysics +1606.02806 Dynamical Systems +1606.02897 Quantum Gases +1606.02929 Instrumentation and Methods for Astrophysics +1606.02956 Phenomenology +1606.03072 Earth and Planetary Astrophysics +1606.03244 Artificial Intelligence +1606.03278 Space Physics +1606.03430 Physics and Society +1606.03553 Computers and Society +1606.03563 Geometric Topology +1606.03855 Computational Engineering, Finance, and Science +1606.03858 Learning +1606.03864 Neural and Evolutionary Computing +1606.03886 +1606.04014 Differential Geometry +1606.04095 Differential Geometry +1606.04099 Instrumentation and Detectors +1606.04106 Instrumentation and Methods for Astrophysics +1606.04114 General Physics +1606.04119 Number Theory +1606.04122 Dynamical Systems +1606.04125 Combinatorics +1606.04126 Logic in Computer Science +1606.04129 Strongly Correlated Electrons +1606.04132 Materials Science +1606.04133 Optimization and Control +1606.04141 History and Overview +1606.04145 Learning +1606.04146 Methodology +1606.04151 Analysis of PDEs +1606.04156 Systems and Control +1606.04163 Systems and Control +1606.04164 Computation and Language +1606.04165 Human-Computer Interaction +1606.04166 Machine Learning +1606.04167 Mesoscale and Nanoscale Physics +1606.04169 Algebraic Geometry +1606.04170 History and Overview +1606.04171 Networking and Internet Architecture +1606.04175 Representation Theory +1606.04176 Systems and Control +1606.04177 Rings and Algebras +1606.04178 Probability +1606.04182 Computation +1606.04184 Quantum Gases +1606.04185 Mesoscale and Nanoscale Physics +1606.04187 Theory +1606.04188 +1606.04194 Logic +1606.04195 Multimedia +1606.04198 Information Theory +1606.04200 Computational Complexity +1606.04202 Information Theory +1606.04203 Applications +1606.04205 Networking and Internet Architecture +1606.04207 Group Theory +1606.04209 Distributed, Parallel, and Cluster Computing +1606.04211 Numerical Analysis +1606.04216 Artificial Intelligence +1606.04217 Neural and Evolutionary Computing +1606.04218 Learning +1606.04219 +1606.04221 Mesoscale and Nanoscale Physics +1606.04223 Information Retrieval +1606.04224 Metric Geometry +1606.04225 Tissues and Organs +1606.04228 Probability +1606.04229 +1606.04231 Functional Analysis +1606.04232 Computer Vision and Pattern Recognition +1606.04235 Combinatorics +1606.04239 +1606.04240 Programming Languages +1606.04241 Physics and Society +1606.04242 Astrophysics of Galaxies +1606.04247 Molecular Networks +1606.04252 Analysis of PDEs +1606.04254 Instrumentation and Detectors +1606.04255 History and Overview +1606.04257 Materials Science +1606.04258 Mesoscale and Nanoscale Physics +1606.04259 Theory +1606.04261 Mesoscale and Nanoscale Physics +1606.04265 Classical Analysis and ODEs +1606.04266 Popular Physics +1606.04267 Quantum Gases +1606.04268 Learning +1606.04270 High Energy Astrophysical Phenomena +1606.04274 +1606.04275 Learning +1606.04276 Statistics Theory +1606.04277 Computers and Society +1606.04278 Information Retrieval +1606.04279 Computation and Language +1606.04281 Algebraic Geometry +1606.04282 Distributed, Parallel, and Cluster Computing +1606.04283 Numerical Analysis +1606.04284 Materials Science +1606.04287 Software Engineering +1606.04288 Distributed, Parallel, and Cluster Computing +1606.04292 Accelerator Physics +1606.04296 Distributed, Parallel, and Cluster Computing +1606.04298 Biomolecules +1606.04301 Solar and Stellar Astrophysics +1606.04305 Fluid Dynamics +1606.04306 Neural and Evolutionary Computing +1606.04307 Probability +1606.04308 Computer Vision and Pattern Recognition +1606.04309 Classical Analysis and ODEs +1606.04310 Soft Condensed Matter +1606.04311 Probability +1606.04317 Machine Learning +1606.04320 Category Theory +1606.04321 Cosmology and Nongalactic Astrophysics +1606.04331 Functional Analysis +1606.04332 +1606.04335 Machine Learning +1606.04337 Mesoscale and Nanoscale Physics +1606.04338 Number Theory +1606.04342 Physics and Society +1606.04343 +1606.04344 Neurons and Cognition +1606.04346 +1606.04350 Probability +1606.04351 Computation and Language +1606.04357 Analysis of PDEs +1606.04358 +1606.04361 +1606.04363 Cellular Automata and Lattice Gases +1606.04365 Analysis of PDEs +1606.04366 Machine Learning +1606.04368 Algebraic Geometry +1606.04370 Algebraic Geometry +1606.04372 Algebraic Geometry +1606.04374 Number Theory +1606.04377 Functional Analysis +1606.04381 Chemical Physics +1606.04382 Physics and Society +1606.04383 Computational Complexity +1606.04385 Physics and Society +1606.04386 Distributed, Parallel, and Cluster Computing +1606.04389 General Physics +1606.04390 Statistical Mechanics +1606.04394 Discrete Mathematics +1606.04396 Strongly Correlated Electrons +1606.04397 Artificial Intelligence +1606.04402 Astrophysics of Galaxies +1606.04403 Phenomenology +1606.04404 Computer Vision and Pattern Recognition +1606.04407 +1606.04412 Social and Information Networks +1606.04415 Analysis of PDEs +1606.04421 Atmospheric and Oceanic Physics +1606.04423 Analysis of PDEs +1606.04424 Representation Theory +1606.04425 Statistics Theory +1606.04427 Distributed, Parallel, and Cluster Computing +1606.04429 Information Retrieval +1606.04432 Information Theory +1606.04444 +1606.04446 Computer Vision and Pattern Recognition +1606.04447 Combinatorics +1606.04450 Computer Vision and Pattern Recognition +1606.04451 Mesoscale and Nanoscale Physics +1606.04453 +1606.04455 Algebraic Geometry +1606.04456 Distributed, Parallel, and Cluster Computing +1606.04458 Information Theory +1606.04459 History and Overview +1606.04460 Machine Learning +1606.04461 Combinatorics +1606.04466 Neural and Evolutionary Computing +1606.04467 Information Theory +1606.04468 Algebraic Geometry +1606.04469 Systems and Control +1606.04473 Distributed, Parallel, and Cluster Computing +1606.04476 Information Theory +1606.04478 Computation +1606.04479 Probability +1606.04480 Optics +1606.04484 Mesoscale and Nanoscale Physics +1606.04486 Artificial Intelligence +1606.04490 Superconductivity +1606.04491 Superconductivity +1606.04495 Data Structures and Algorithms +1606.04496 General Topology +1606.04501 Functional Analysis +1606.04502 Combinatorics +1606.04503 Computation and Language +1606.04506 Learning +1606.04511 Strongly Correlated Electrons +1606.04512 Artificial Intelligence +1606.04513 +1606.04514 K-Theory and Homology +1606.04515 Rings and Algebras +1606.04518 Learning +1606.04521 Learning +1606.04523 +1606.04524 Analysis of PDEs +1606.04525 Analysis of PDEs +1606.04526 Solar and Stellar Astrophysics +1606.04528 Astrophysics of Galaxies +1606.04530 Quantum Algebra +1603.09396 Multimedia +0704.0189 Group Theory +0710.5430 +0711.1667 Algebraic Geometry +0711.4912 +0802.2874 Geometric Topology +0809.2405 +0810.4143 +0810.5194 +0902.3669 Astrophysics of Galaxies +0906.1674 Cosmology and Nongalactic Astrophysics +0906.3965 Solar and Stellar Astrophysics +0909.3793 Astrophysics of Galaxies +0912.3107 Cosmology and Nongalactic Astrophysics +1001.2248 Number Theory +1005.2308 Digital Libraries +1008.0826 Physics and Society +1009.1557 Cosmology and Nongalactic Astrophysics +1009.2018 Instrumentation and Methods for Astrophysics +1012.0449 Cosmology and Nongalactic Astrophysics +1012.3326 Cosmology and Nongalactic Astrophysics +1103.4295 Instrumentation and Methods for Astrophysics +1103.5474 Instrumentation and Methods for Astrophysics +1104.1184 Instrumentation and Methods for Astrophysics +1108.3890 Algebraic Topology +1109.3475 Information Theory +1111.2723 Algebraic Topology +1111.3053 High Energy Astrophysical Phenomena +1201.1575 Algebraic Topology +1204.0311 Algebraic Topology +1204.1946 Cosmology and Nongalactic Astrophysics +1204.6716 Instrumentation and Methods for Astrophysics +1206.0332 Cosmology and Nongalactic Astrophysics +1206.4087 Biomolecules +1207.4381 Probability +1212.2328 Phenomenology +1301.3087 Number Theory +1301.5451 Computer Vision and Pattern Recognition +1302.5683 Computational Geometry +1303.0852 Geometric Topology +1305.2973 Geometric Topology +1305.4550 Algebraic Topology +1306.3065 Mesoscale and Nanoscale Physics +1307.6970 +1308.6212 +1308.6264 +1309.0163 Superconductivity +1310.3579 Analysis of PDEs +1311.4217 Geometric Topology +1312.0467 Mesoscale and Nanoscale Physics +1312.3541 Mesoscale and Nanoscale Physics +1401.0232 Dynamical Systems +1401.0737 Cosmology and Nongalactic Astrophysics +1401.6454 Instrumentation and Detectors +1401.7781 Metric Geometry +1402.4394 +1402.4683 Probability +1402.5463 High Energy Astrophysical Phenomena +1403.0945 Number Theory +1403.1668 Analysis of PDEs +1403.4556 Analysis of PDEs +1403.6803 Statistics Theory +1404.0066 Geometric Topology +1404.0922 Spectral Theory +1404.2214 Analysis of PDEs +1404.3245 Metric Geometry +1404.3394 Information Theory +1404.5207 Phenomenology +1404.6494 Lattice +1405.0391 Functional Analysis +1405.4351 Geometric Topology +1405.7344 Fluid Dynamics +1405.7553 Representation Theory +1406.0245 Atomic Physics +1406.0901 +1406.3519 Dynamical Systems +1406.4652 Differential Geometry +1406.4702 Probability +1406.5387 Statistics Theory +1406.5460 Geometric Topology +1406.6414 High Energy Astrophysical Phenomena +1406.7631 +1406.7807 Information Theory +1407.0964 Representation Theory +1407.2071 Differential Geometry +1407.3658 Algebraic Geometry +1407.5152 Numerical Analysis +1407.5446 Algebraic Geometry +1407.6483 Algebraic Geometry +1407.7003 Symplectic Geometry +1407.8203 Strongly Correlated Electrons +1408.0418 Group Theory +1408.5030 Analysis of PDEs +1408.6048 Geometric Topology +1408.6108 Multiagent Systems +1408.6371 Analysis of PDEs +1409.0944 Probability +1409.1214 Astrophysics of Galaxies +1409.1420 Combinatorics +1409.1429 Statistics Theory +1409.1832 Astrophysics of Galaxies +1409.4947 Phenomenology +1409.5724 Probability +1409.7381 Phenomenology +1409.8371 +1410.3719 Analysis of PDEs +1410.3809 Differential Geometry +1410.4483 Probability +1410.5289 Mesoscale and Nanoscale Physics +1410.6652 Logic +1410.8383 Computational Physics +1411.0491 Differential Geometry +1411.0758 Geometric Topology +1411.0944 Computer Science and Game Theory +1411.1349 Algebraic Topology +1411.2007 Analysis of PDEs +1411.2292 Geometric Topology +1411.3668 Analysis of PDEs +1411.3835 Spectral Theory +1411.5205 Probability +1411.5285 Accelerator Physics +1411.5786 Theory +1411.5871 Number Theory +1411.5897 Rings and Algebras +1411.7775 Number Theory +1411.7957 Rings and Algebras +1412.0370 Phenomenology +1412.0574 Number Theory +1412.1412 Optimization and Control +1412.1489 Theory +1412.1923 +1412.2127 Classical Analysis and ODEs +1412.2225 +1412.2690 Statistical Mechanics +1412.2822 Algebraic Topology +1412.5722 +1412.6209 Fluid Dynamics +1412.6237 Combinatorics +1412.6405 Representation Theory +1412.8073 Spectral Theory +1412.8369 Systems and Control +1501.00038 +1501.00294 Dynamical Systems +1501.00348 Geometric Topology +1501.01014 Theory +1501.01909 Social and Information Networks +1501.02287 Computational Engineering, Finance, and Science +1501.03111 General Physics +1501.03201 Algebraic Topology +1501.04490 Information Theory +1501.05499 Computer Vision and Pattern Recognition +1501.06364 Graphics +1501.07614 +1502.00965 Combinatorics +1502.01751 Theory +1502.03077 Mesoscale and Nanoscale Physics +1502.03110 Mesoscale and Nanoscale Physics +1502.03470 Probability +1502.03672 +1502.04269 Machine Learning +1502.04513 Logic +1502.05426 Strongly Correlated Electrons +1502.06526 Category Theory +1502.06727 Probability +1502.07212 Number Theory +1502.07357 Cosmology and Nongalactic Astrophysics +1502.07389 Cosmology and Nongalactic Astrophysics +1502.07493 Analysis of PDEs +1502.07707 Theory +1503.00005 Phenomenology +1503.00245 Databases +1503.01618 Phenomenology +1503.02635 Strongly Correlated Electrons +1503.02945 Computer Vision and Pattern Recognition +1503.03212 Statistics Theory +1503.03300 +1503.03834 High Energy Astrophysical Phenomena +1503.04088 Superconductivity +1503.04221 +1503.04412 Cosmology and Nongalactic Astrophysics +1503.04646 Accelerator Physics +1503.04770 +1503.05823 Astrophysics of Galaxies +1503.05902 Algebraic Topology +1503.06588 Metric Geometry +1503.06658 Statistical Mechanics +1503.07181 Theory +1503.07262 Probability +1503.07279 Numerical Analysis +1503.07984 Quantum Algebra +1503.08207 Theory +1503.08809 Distributed, Parallel, and Cluster Computing +1503.08971 Differential Geometry +1503.09133 Astrophysics of Galaxies +1504.01400 Theory +1504.01458 Materials Science +1504.01620 +1504.01700 Theory +1504.01784 Strongly Correlated Electrons +1504.02097 Astrophysics of Galaxies +1504.02099 Astrophysics of Galaxies +1504.02769 Probability +1504.02778 Cosmology and Nongalactic Astrophysics +1504.02983 Astrophysics of Galaxies +1504.03329 Astrophysics of Galaxies +1504.03656 Superconductivity +1504.04022 Phenomenology +1504.04366 Cosmology and Nongalactic Astrophysics +1504.05126 Differential Geometry +1504.05183 Cosmology and Nongalactic Astrophysics +1504.05475 Instrumentation and Detectors +1504.05817 +1504.06800 +1504.07123 +1504.07556 Theory +1504.07786 Medical Physics +1504.07904 Theory +1505.00242 Probability +1505.00745 Theory +1505.00804 Strongly Correlated Electrons +1505.00998 +1505.01186 High Energy Astrophysical Phenomena +1505.01297 Instrumentation and Detectors +1505.01402 Materials Science +1505.01537 Theory +1505.01934 Phenomenology +1505.02257 Solar and Stellar Astrophysics +1505.02513 High Energy Astrophysical Phenomena +1505.03166 Disordered Systems and Neural Networks +1505.03650 Phenomenology +1505.03658 Cosmology and Nongalactic Astrophysics +1505.03861 Cosmology and Nongalactic Astrophysics +1505.03862 Phenomenology +1505.04081 Other Condensed Matter +1505.04517 Theory +1505.04790 Astrophysics of Galaxies +1505.04793 Theory +1505.05053 Theory +1505.05270 +1505.05584 Strongly Correlated Electrons +1505.05904 Materials Science +1505.06439 Complex Variables +1505.07126 Astrophysics of Galaxies +1505.07365 Chaotic Dynamics +1505.07473 Phenomenology +1505.07875 Cosmology and Nongalactic Astrophysics +1506.00416 Statistical Mechanics +1506.00455 Phenomenology +1506.00470 Analysis of PDEs +1506.01034 Solar and Stellar Astrophysics +1506.01337 Theory +1506.01400 Solar and Stellar Astrophysics +1506.01423 Space Physics +1506.01639 +1506.01844 Instrumentation and Detectors +1506.02059 Computer Vision and Pattern Recognition +1506.02255 Statistical Mechanics +1506.02692 Mesoscale and Nanoscale Physics +1506.02887 Statistics Theory +1506.03285 Phenomenology +1506.03317 Quantum Gases +1506.03321 Phenomenology +1506.03341 Mesoscale and Nanoscale Physics +1506.03447 Theory +1506.03469 Astrophysics of Galaxies +1506.03707 Quantum Gases +1506.03817 Cosmology and Nongalactic Astrophysics +1506.03878 Mesoscale and Nanoscale Physics +1506.04037 Phenomenology +1506.04241 +1506.04856 Probability +1506.04914 Instrumentation and Methods for Astrophysics +1506.05103 Superconductivity +1506.05356 Cosmology and Nongalactic Astrophysics +1506.05412 Theory +1506.05501 Earth and Planetary Astrophysics +1506.05774 Theory +1506.05875 +1506.05914 Algebraic Geometry +1506.06501 Information Theory +1506.06818 Probability +1506.07065 Statistical Mechanics +1506.07323 Theory +1506.07389 Classical Analysis and ODEs +1506.07448 Phenomenology +1506.07528 Theory +1506.07551 Theory +1506.07834 +1506.07902 Machine Learning +1506.08047 Applications +1506.08343 Statistical Mechanics +1506.08618 Phenomenology +1506.08619 Theory +1506.08850 Earth and Planetary Astrophysics +1506.09201 Phenomenology +1507.00015 Theory +1507.00325 +1507.00343 Theory +1507.00478 Phenomenology +1507.00938 Theory +1507.01076 Atomic Physics +1507.01143 Analysis of PDEs +1507.01583 Cosmology and Nongalactic Astrophysics +1507.01595 Theory +1507.01612 Theory +1507.01632 Phenomenology +1507.01723 Astrophysics of Galaxies +1507.01749 Lattice +1507.01822 Methodology +1507.01858 Cosmology and Nongalactic Astrophysics +1507.01960 Theory +1507.02207 Theory +1507.02211 Phenomenology +1507.02288 Phenomenology +1507.02662 Theory +1507.02781 High Energy Astrophysical Phenomena +1507.02787 Theory +1507.02820 Mesoscale and Nanoscale Physics +1507.02943 Phenomenology +1507.02956 +1507.02965 Phenomenology +1507.03086 Cosmology and Nongalactic Astrophysics +1507.03157 Methodology +1507.03508 Phenomenology +1507.03630 Phenomenology +1507.03742 Astrophysics of Galaxies +1507.03860 Theory +1507.03992 Cosmology and Nongalactic Astrophysics +1507.04063 Theory +1507.04093 Theory +1507.04235 Optics +1507.04302 Classical Analysis and ODEs +1507.04460 Statistical Mechanics +1507.04633 Theory +1507.04744 Cosmology and Nongalactic Astrophysics +1507.05067 Probability +1507.05149 Quantum Gases +1507.05207 +1507.05237 Astrophysics of Galaxies +1507.05330 Theory +1507.05627 Cosmology and Nongalactic Astrophysics +1507.05633 Strongly Correlated Electrons +1507.05637 Theory +1507.05667 Algebraic Geometry +1507.05770 +1507.05900 +1507.05954 Theory +1507.05971 Astrophysics of Galaxies +1507.05975 Quantum Gases +1507.05977 Cosmology and Nongalactic Astrophysics +1507.06221 Phenomenology +1507.06310 Theory +1507.06326 Phenomenology +1507.06345 Phenomenology +1507.06403 Quantum Gases +1507.06793 Theory +1507.06937 Phenomenology +1507.06971 Materials Science +1507.07183 Theory +1507.07550 Phenomenology +1507.07556 Theory +1507.07626 Quantum Gases +1507.07942 Theory +1507.08038 Strongly Correlated Electrons +1507.08250 Theory +1507.08252 Phenomenology +1507.08284 Theory +1507.08424 High Energy Astrophysical Phenomena +1507.08659 Theory +1507.08660 Phenomenology +1507.08728 Networking and Internet Architecture +1507.08808 +1507.08871 Dynamical Systems +1507.08915 +1507.08949 Theory +1508.00469 Theory +1508.00583 Cosmology and Nongalactic Astrophysics +1508.00587 Theory +1508.00930 Materials Science +1508.01093 +1508.01112 Phenomenology +1508.01207 Theory +1508.01210 Theory +1508.01518 Phenomenology +1508.01955 Theory +1508.02229 Exactly Solvable and Integrable Systems +1508.02481 Theory +1508.02494 Theory +1508.02622 +1508.02721 High Energy Astrophysical Phenomena +1508.02795 Phenomenology +1508.03049 Theory +1508.03077 Theory +1508.03128 Group Theory +1508.03288 Phenomenology +1508.03387 Computation +1508.03585 Phenomenology +1508.03611 Theory +1508.03705 Phenomenology +1508.03727 Phenomenology +1508.03777 Strongly Correlated Electrons +1508.03800 Discrete Mathematics +1508.03867 Theory +1508.04010 Adaptation and Self-Organizing Systems +1508.04083 Phenomenology +1508.04421 Theory +1508.04437 Theory +1508.04496 Theory +1508.04735 Experiment +1508.04814 Phenomenology +1508.04987 Theory +1508.05006 Theory +1508.05043 Phenomenology +1508.05118 Materials Science +1508.05202 Statistical Mechanics +1508.05271 Phenomenology +1508.05332 Phenomenology +1508.05404 Phenomenology +1508.05924 Earth and Planetary Astrophysics +1508.05964 +1508.06133 Phenomenology +1508.06283 Astrophysics of Galaxies +1508.06489 Cosmology and Nongalactic Astrophysics +1508.06503 Cosmology and Nongalactic Astrophysics +1508.06568 Theory +1508.06633 Strongly Correlated Electrons +1508.06680 Phenomenology +1508.06735 Phenomenology +1508.06767 Theory +1508.06925 Phenomenology +1508.06954 Experiment +1508.07002 Phenomenology +1508.07016 Phenomenology +1508.07025 Instrumentation and Detectors +1508.07098 Quantum Gases +1508.07224 Strongly Correlated Electrons +1508.07305 Theory +1508.07331 Theory +1508.07332 Theory +1508.07599 Lattice +1508.07790 +1508.07917 Superconductivity +1508.07962 Phenomenology +1509.00044 Theory +1509.00195 Phenomenology +1509.00455 Theory +1509.00474 Theory +1509.00486 Astrophysics of Galaxies +1509.00491 Phenomenology +1509.00543 Theory +1509.00716 Theory +1509.00834 Phenomenology +1509.00855 Theory +1509.00858 Solar and Stellar Astrophysics +1509.01294 Theory +1509.01406 Theory +1509.01583 Astrophysics of Galaxies +1509.01673 Mesoscale and Nanoscale Physics +1509.01800 Phenomenology +1509.01885 Experiment +1509.01982 Lattice +1509.02062 Theory +1509.02223 Computer Vision and Pattern Recognition +1509.02426 Theory +1509.02526 Theory +1509.02854 +1509.02938 Cosmology and Nongalactic Astrophysics +1509.02941 Cosmology and Nongalactic Astrophysics +1509.03241 Phenomenology +1509.03250 Atomic and Molecular Clusters +1509.03297 Phenomenology +1509.03494 Phenomenology +1509.03524 Cosmology and Nongalactic Astrophysics +1509.03630 Instrumentation and Methods for Astrophysics +1509.03645 Solar and Stellar Astrophysics +1509.03987 Mesoscale and Nanoscale Physics +1509.04286 Theory +1509.04330 +1509.04658 Instrumentation and Methods for Astrophysics +1509.04676 Theory +1509.04909 Strongly Correlated Electrons +1509.05090 +1509.05350 Atomic Physics +1509.05401 High Energy Astrophysical Phenomena +1509.05604 Phenomenology +1509.05692 +1509.05704 Theory +1509.05846 Quantum Gases +1509.05890 Theory +1509.06091 +1509.06255 +1509.06423 Instrumentation and Methods for Astrophysics +1509.06433 Lattice +1509.06481 Statistical Mechanics +1509.06719 Theory +1509.06742 Probability +1509.06918 Theory +1509.07063 Functional Analysis +1509.07106 +1509.07142 Theory +1509.07270 Theory +1509.07366 Phenomenology +1509.07488 Quantum Gases +1509.07501 Cosmology and Nongalactic Astrophysics +1509.07521 Cosmology and Nongalactic Astrophysics +1509.07524 Earth and Planetary Astrophysics +1509.07676 Theory +1509.07678 Theory +1509.07787 Theory +1509.07827 +1509.07840 Theory +1509.07869 Phenomenology +1509.07929 Lattice +1509.08027 Theory +1509.08199 Cosmology and Nongalactic Astrophysics +1509.08397 +1509.08680 Solar and Stellar Astrophysics +1509.08710 High Energy Astrophysical Phenomena +1509.08838 Phenomenology +1509.08925 Superconductivity +1509.08926 Statistical Mechanics +1509.08933 Cosmology and Nongalactic Astrophysics +1509.08963 Classical Analysis and ODEs +1509.09071 Phenomenology +1509.09151 Statistical Mechanics +1510.00126 Cosmology and Nongalactic Astrophysics +1510.00242 Cosmology and Nongalactic Astrophysics +1510.00349 Theory +1510.00442 +1510.00583 Theory +1510.00716 Strongly Correlated Electrons +1510.00721 Solar and Stellar Astrophysics +1510.00736 Theory +1510.00906 Solar and Stellar Astrophysics +1510.01074 Disordered Systems and Neural Networks +1510.01321 Solar and Stellar Astrophysics +1510.01427 Theory +1510.01667 Theory +1510.01735 Statistical Mechanics +1510.01763 Theory +1510.01842 Optimization and Control +1510.01864 Quantum Gases +1510.02153 Phenomenology +1510.02172 Applications +1510.02298 Theory +1510.02406 Phenomenology +1510.02409 Theory +1510.02472 Theory +1510.02480 Theory +1510.02700 Social and Information Networks +1510.02712 Theory +1510.02957 Theory +1510.03118 High Energy Astrophysical Phenomena +1510.03175 Phenomenology +1510.03188 Phenomenology +1510.03213 Theory +1510.03258 Lattice +1510.03392 Phenomenology +1510.03437 Phenomenology +1510.03439 Theory +1510.03685 Superconductivity +1510.03812 Phenomenology +1510.03978 Numerical Analysis +1510.04018 Mesoscale and Nanoscale Physics +1510.04208 High Energy Astrophysical Phenomena +1510.04261 Optics +1510.04431 High Energy Astrophysical Phenomena +1510.04478 Theory +1510.04637 Number Theory +1510.05245 +1510.05299 Strongly Correlated Electrons +1510.05395 Astrophysics of Galaxies +1510.05399 Astrophysics of Galaxies +1510.05418 +1510.05566 Optics +1510.05586 Mesoscale and Nanoscale Physics +1510.05750 Cosmology and Nongalactic Astrophysics +1510.05779 Theory +1510.05909 Mesoscale and Nanoscale Physics +1510.05910 Phenomenology +1510.05951 Astrophysics of Galaxies +1510.06025 High Energy Astrophysical Phenomena +1510.06087 Quantum Gases +1510.06309 Phenomenology +1510.06347 Earth and Planetary Astrophysics +1510.06363 Theory +1510.06428 Solar and Stellar Astrophysics +1510.06497 Phenomenology +1510.06569 Theory +1510.06596 Solar and Stellar Astrophysics +1510.06858 Theory +1510.06975 Theory +1510.07590 Superconductivity +1510.07695 Astrophysics of Galaxies +1510.07978 Mesoscale and Nanoscale Physics +1510.08003 +1510.08144 Atomic Physics +1510.08345 Numerical Analysis +1510.08459 Phenomenology +1510.08463 Astrophysics of Galaxies +1510.08468 Phenomenology +1510.08734 Quantum Gases +1510.08738 Phenomenology +1510.08855 Earth and Planetary Astrophysics +1510.09180 Solar and Stellar Astrophysics +1510.09222 Fluid Dynamics +1511.00421 Quantum Gases +1511.00559 +1511.01002 Theory +1511.01052 Theory +1511.01085 High Energy Astrophysical Phenomena +1511.01110 Astrophysics of Galaxies +1511.01117 Cosmology and Nongalactic Astrophysics +1511.01120 Astrophysics of Galaxies +1511.01131 Cosmology and Nongalactic Astrophysics +1511.01133 Astrophysics of Galaxies +1511.01145 Astrophysics of Galaxies +1511.01188 Cosmology and Nongalactic Astrophysics +1511.01218 Cosmology and Nongalactic Astrophysics +1511.01582 High Energy Astrophysical Phenomena +1511.01587 Phenomenology +1511.01647 Astrophysics of Galaxies +1511.01672 Mesoscale and Nanoscale Physics +1511.01695 Solar and Stellar Astrophysics +1511.01896 Instrumentation and Methods for Astrophysics +1511.01913 Theory +1511.02029 Solar and Stellar Astrophysics +1511.02105 Solar and Stellar Astrophysics +1511.02122 +1511.02274 Learning +1511.02310 Experiment +1511.02329 Functional Analysis +1511.02456 High Energy Astrophysical Phenomena +1511.02471 +1511.02539 Pattern Formation and Solitons +1511.02854 Astrophysics of Galaxies +1511.02862 Astrophysics of Galaxies +1511.03040 Solar and Stellar Astrophysics +1511.03045 Atmospheric and Oceanic Physics +1511.03136 Solar and Stellar Astrophysics +1511.03209 Theory +1511.03286 Astrophysics of Galaxies +1511.03502 Quantum Gases +1511.03635 Cosmology and Nongalactic Astrophysics +1511.03764 Solar and Stellar Astrophysics +1511.03896 +1511.03945 Phenomenology +1511.04002 Cosmology and Nongalactic Astrophysics +1511.04077 Strongly Correlated Electrons +1511.04088 Astrophysics of Galaxies +1511.04161 Solar and Stellar Astrophysics +1511.04228 Atomic Physics +1511.04243 +1511.04310 Astrophysics of Galaxies +1511.04443 Astrophysics of Galaxies +1511.04455 Astrophysics of Galaxies +1511.04488 Instrumentation and Methods for Astrophysics +1511.04797 High Energy Astrophysical Phenomena +1511.04849 Cosmology and Nongalactic Astrophysics +1511.04887 Phenomenology +1511.05003 Cosmology and Nongalactic Astrophysics +1511.05032 High Energy Astrophysical Phenomena +1511.05036 Instrumentation and Methods for Astrophysics +1511.05150 Astrophysics of Galaxies +1511.05275 High Energy Astrophysical Phenomena +1511.05395 Theory +1511.05428 Astrophysics of Galaxies +1511.05445 Astrophysics of Galaxies +1511.05447 Theory +1511.05451 Solar and Stellar Astrophysics +1511.05481 High Energy Astrophysical Phenomena +1511.05527 Astrophysics of Galaxies +1511.05528 Earth and Planetary Astrophysics +1511.05566 Astrophysics of Galaxies +1511.05576 Astrophysics of Galaxies +1511.05654 Astrophysics of Galaxies +1511.05696 Theory +1511.05736 High Energy Astrophysical Phenomena +1511.05813 Solar and Stellar Astrophysics +1511.05858 Physics Education +1511.05938 Astrophysics of Galaxies +1511.05969 Cosmology and Nongalactic Astrophysics +1511.05978 Astrophysics of Galaxies +1511.05985 Solar and Stellar Astrophysics +1511.06007 Astrophysics of Galaxies +1511.06021 Astrophysics of Galaxies +1511.06134 Solar and Stellar Astrophysics +1511.06156 High Energy Astrophysical Phenomena +1511.06160 Solar and Stellar Astrophysics +1511.06162 Astrophysics of Galaxies +1511.06167 Astrophysics of Galaxies +1511.06188 Astrophysics of Galaxies +1511.06415 Astrophysics of Galaxies +1511.06471 Earth and Planetary Astrophysics +1511.06497 Solar and Stellar Astrophysics +1511.06584 Earth and Planetary Astrophysics +1511.06597 Instrumentation and Methods for Astrophysics +1511.06616 Astrophysics of Galaxies +1511.06626 Astrophysics of Galaxies +1511.06636 Differential Geometry +1511.06647 Mesoscale and Nanoscale Physics +1511.06652 Theory +1511.06670 Cosmology and Nongalactic Astrophysics +1511.06673 Astrophysics of Galaxies +1511.06696 Astrophysics of Galaxies +1511.06765 High Energy Astrophysical Phenomena +1511.07131 Computer Vision and Pattern Recognition +1511.07152 Instrumentation and Methods for Astrophysics +1511.07169 Astrophysics of Galaxies +1511.07179 Theory +1511.07270 Solar and Stellar Astrophysics +1511.07328 General Physics +1511.07330 Astrophysics of Galaxies +1511.07364 Solar and Stellar Astrophysics +1511.07390 High Energy Astrophysical Phenomena +1511.07437 Astrophysics of Galaxies +1511.07457 Astrophysics of Galaxies +1511.07641 High Energy Astrophysical Phenomena +1511.07701 Solar and Stellar Astrophysics +1511.07754 Astrophysics of Galaxies +1511.07762 Solar and Stellar Astrophysics +1511.07884 Astrophysics of Galaxies +1511.07900 Solar and Stellar Astrophysics +1511.07925 High Energy Astrophysical Phenomena +1511.07946 Earth and Planetary Astrophysics +1511.07971 Solar and Stellar Astrophysics +1511.08018 Astrophysics of Galaxies +1511.08199 Astrophysics of Galaxies +1511.08227 Astrophysics of Galaxies +1511.08243 Astrophysics of Galaxies +1511.08289 Astrophysics of Galaxies +1511.08325 Solar and Stellar Astrophysics +1511.08365 Solar and Stellar Astrophysics +1511.08481 Astrophysics of Galaxies +1511.08493 Astrophysics of Galaxies +1511.08566 +1511.08617 Phenomenology +1511.08767 Lattice +1511.08805 Astrophysics of Galaxies +1511.08892 Solar and Stellar Astrophysics +1511.08900 Solar and Stellar Astrophysics +1511.08991 Solar and Stellar Astrophysics +1511.09097 Earth and Planetary Astrophysics +1511.09109 Mesoscale and Nanoscale Physics +1511.09115 Solar and Stellar Astrophysics +1511.09119 Solar and Stellar Astrophysics +1511.09121 Astrophysics of Galaxies +1511.09205 Solar and Stellar Astrophysics +1511.09211 Earth and Planetary Astrophysics +1511.09341 Earth and Planetary Astrophysics +1511.09426 Neurons and Cognition +1511.09472 Earth and Planetary Astrophysics +1512.00005 Astrophysics of Galaxies +1512.00007 Cosmology and Nongalactic Astrophysics +1512.00017 Astrophysics of Galaxies +1512.00043 High Energy Astrophysical Phenomena +1512.00090 Astrophysics of Galaxies +1512.00124 High Energy Astrophysical Phenomena +1512.00146 Solar and Stellar Astrophysics +1512.00203 High Energy Astrophysical Phenomena +1512.00278 Solar and Stellar Astrophysics +1512.00285 Earth and Planetary Astrophysics +1512.00322 Experiment +1512.00461 Astrophysics of Galaxies +1512.00467 High Energy Astrophysical Phenomena +1512.00592 Astrophysics of Galaxies +1512.00628 Solar and Stellar Astrophysics +1512.00691 Solar and Stellar Astrophysics +1512.00786 Astrophysics of Galaxies +1512.00851 High Energy Astrophysical Phenomena +1512.00864 Solar and Stellar Astrophysics +1512.00865 Solar and Stellar Astrophysics +1512.00916 Superconductivity +1512.00987 Astrophysics of Galaxies +1512.01052 Strongly Correlated Electrons +1512.01099 Instrumentation and Methods for Astrophysics +1512.01105 Astrophysics of Galaxies +1512.01106 High Energy Astrophysical Phenomena +1512.01159 Astrophysics of Galaxies +1512.01185 Astrophysics of Galaxies +1512.01242 Astrophysics of Galaxies +1512.01246 Solar and Stellar Astrophysics +1512.01253 Astrophysics of Galaxies +1512.01273 Earth and Planetary Astrophysics +1512.01297 Solar and Stellar Astrophysics +1512.01307 High Energy Astrophysical Phenomena +1512.01320 Computer Vision and Pattern Recognition +1512.01330 Solar and Stellar Astrophysics +1512.01410 Mesoscale and Nanoscale Physics +1512.01458 Earth and Planetary Astrophysics +1512.01549 Instrumentation and Methods for Astrophysics +1512.01555 Earth and Planetary Astrophysics +1512.01582 Astrophysics of Galaxies +1512.01825 High Energy Astrophysical Phenomena +1512.01847 Instrumentation and Methods for Astrophysics +1512.01875 High Energy Astrophysical Phenomena +1512.01941 High Energy Astrophysical Phenomena +1512.02000 Astrophysics of Galaxies +1512.02076 Instrumentation and Methods for Astrophysics +1512.02141 Earth and Planetary Astrophysics +1512.02220 Solar and Stellar Astrophysics +1512.02227 Astrophysics of Galaxies +1512.02228 Astrophysics of Galaxies +1512.02236 Cosmology and Nongalactic Astrophysics +1512.02245 Astrophysics of Galaxies +1512.02308 Earth and Planetary Astrophysics +1512.02481 Solar and Stellar Astrophysics +1512.02538 Earth and Planetary Astrophysics +1512.02541 Solar and Stellar Astrophysics +1512.02555 Physics and Society +1512.02587 Astrophysics of Galaxies +1512.02635 Astrophysics of Galaxies +1512.02640 Astrophysics of Galaxies +1512.02651 Astrophysics of Galaxies +1512.02680 Astrophysics of Galaxies +1512.02686 Analysis of PDEs +1512.02746 +1512.02874 Astrophysics of Galaxies +1512.02901 High Energy Astrophysical Phenomena +1512.02998 Earth and Planetary Astrophysics +1512.03016 High Energy Astrophysical Phenomena +1512.03063 Astrophysics of Galaxies +1512.03070 Earth and Planetary Astrophysics +1512.03166 Solar and Stellar Astrophysics +1512.03194 Astrophysics of Galaxies +1512.03209 Solar and Stellar Astrophysics +1512.03234 Astrophysics of Galaxies +1512.03256 Phenomenology +1512.03262 Earth and Planetary Astrophysics +1512.03428 Earth and Planetary Astrophysics +1512.03631 Discrete Mathematics +1512.03817 Astrophysics of Galaxies +1512.03821 Solar and Stellar Astrophysics +1512.03836 Cosmology and Nongalactic Astrophysics +1512.03892 Solar and Stellar Astrophysics +1512.04336 Geophysics +1512.04410 Strongly Correlated Electrons +1512.04425 Solar and Stellar Astrophysics +1512.04534 Cosmology and Nongalactic Astrophysics +1512.04655 Instrumentation and Methods for Astrophysics +1512.04662 Cosmology and Nongalactic Astrophysics +1512.04690 High Energy Astrophysical Phenomena +1512.04695 Solar and Stellar Astrophysics +1512.04840 Theory +1512.04986 Solar and Stellar Astrophysics +1512.05069 Chaotic Dynamics +1512.05115 Astrophysics of Galaxies +1512.05416 Solar and Stellar Astrophysics +1512.05530 Soft Condensed Matter +1512.05661 Astrophysics of Galaxies +1512.05710 Earth and Planetary Astrophysics +1512.05712 Astrophysics of Galaxies +1512.05730 Astrophysics of Galaxies +1512.05754 +1512.05805 High Energy Astrophysical Phenomena +1512.05885 Lattice +1512.06032 Solar and Stellar Astrophysics +1512.06130 Astrophysics of Galaxies +1512.06188 High Energy Astrophysical Phenomena +1512.06191 Astrophysics of Galaxies +1512.06194 Earth and Planetary Astrophysics +1512.06226 Theory +1512.06359 Probability +1512.06378 Solar and Stellar Astrophysics +1512.06392 Mesoscale and Nanoscale Physics +1512.06471 Astrophysics of Galaxies +1512.06524 Solar and Stellar Astrophysics +1512.06630 Astrophysics of Galaxies +1512.07088 Earth and Planetary Astrophysics +1512.07103 Information Theory +1512.07148 Quantum Gases +1512.07151 Solar and Stellar Astrophysics +1512.07528 Phenomenology +1512.07614 Fluid Dynamics +1512.08299 Networking and Internet Architecture +1512.08638 Solar and Stellar Astrophysics +1512.09218 +1512.09333 Information Theory +1601.00162 Astrophysics of Galaxies +1601.00203 Theory +1601.00409 Cosmology and Nongalactic Astrophysics +1601.00491 Space Physics +1601.00684 Solar and Stellar Astrophysics +1601.00782 Phenomenology +1601.00811 Medical Physics +1601.01021 High Energy Astrophysical Phenomena +1601.01323 Astrophysics of Galaxies +1601.01340 Atomic Physics +1601.01548 Solar and Stellar Astrophysics +1601.01656 Probability +1601.02016 Astrophysics of Galaxies +1601.02090 High Energy Astrophysical Phenomena +1601.02983 Astrophysics of Galaxies +1601.03111 Mesoscale and Nanoscale Physics +1601.03389 High Energy Astrophysical Phenomena +1601.03631 Fluid Dynamics +1601.03638 Classical Analysis and ODEs +1601.03929 +1601.03935 Solar and Stellar Astrophysics +1601.04158 Mesoscale and Nanoscale Physics +1601.04213 Data Structures and Algorithms +1601.04421 Mesoscale and Nanoscale Physics +1601.04713 Astrophysics of Galaxies +1601.04723 Theory +1601.04763 Optics +1601.04803 +1601.04903 Superconductivity +1601.05015 Astrophysics of Galaxies +1601.05330 Software Engineering +1601.05669 Materials Science +1601.05776 Information Theory +1601.05874 Phenomenology +1601.05971 High Energy Astrophysical Phenomena +1601.06148 Numerical Analysis +1601.06330 Pattern Formation and Solitons +1601.06375 Information Theory +1601.06410 Information Theory +1601.06416 Optimization and Control +1601.06436 +1601.06451 Quantum Algebra +1601.06460 +1601.06473 Robotics +1601.06595 Differential Geometry +1601.06634 Numerical Analysis +1601.06660 +1601.06772 +1601.06774 Analysis of PDEs +1601.06775 Combinatorics +1601.06776 Functional Analysis +1601.06777 Functional Analysis +1601.06778 Optics +1601.06800 Probability +1601.06804 Theory +1601.06807 Dynamical Systems +1601.06810 Information Theory +1601.06812 Numerical Analysis +1601.06815 Neural and Evolutionary Computing +1601.06817 Quantum Gases +1601.06820 Medical Physics +1601.06822 Fluid Dynamics +1601.06823 Computer Vision and Pattern Recognition +1601.06825 Computers and Society +1601.06829 Populations and Evolution +1601.06830 Superconductivity +1601.06833 Number Theory +1601.06834 Data Structures and Algorithms +1601.06843 Fluid Dynamics +1601.06844 Statistics Theory +1601.06846 +1601.06853 Analysis of PDEs +1601.06858 Statistics Theory +1601.06862 Artificial Intelligence +1601.06864 +1601.06865 Computational Geometry +1601.06867 Number Theory +1601.06868 Methodology +1601.06869 Human-Computer Interaction +1601.06870 Optics +1601.06871 Geometric Topology +1601.06872 Rings and Algebras +1601.06873 Information Theory +1601.06880 Information Theory +1601.06882 Information Theory +1601.06887 Information Theory +1601.06899 Information Theory +1601.06900 +1601.06901 Atomic Physics +1601.06902 Number Theory +1601.06903 Hardware Architecture +1601.06906 Human-Computer Interaction +1601.06908 Information Theory +1601.06909 Dynamical Systems +1601.06919 Information Retrieval +1601.06920 Combinatorics +1601.06921 Optics +1601.06927 +1601.06928 Commutative Algebra +1601.06929 Phenomenology +1601.06931 Computer Vision and Pattern Recognition +1601.06932 +1601.06933 Learning +1601.06934 Fluid Dynamics +1601.06941 Fluid Dynamics +1601.06943 Populations and Evolution +1601.06946 Plasma Physics +1601.06948 Differential Geometry +1601.06950 Computer Vision and Pattern Recognition +1601.06951 Fluid Dynamics +1601.06953 Fluid Dynamics +1601.06957 Soft Condensed Matter +1601.06961 Fluid Dynamics +1601.06962 Quantitative Methods +1601.06965 Combinatorics +1601.06967 Earth and Planetary Astrophysics +1601.06969 Fluid Dynamics +1601.06977 Numerical Analysis +1601.06979 Risk Management +1601.06985 Experiment +1601.06990 Solar and Stellar Astrophysics +1601.06991 Probability +1601.06993 Information Theory +1601.06994 Analysis of PDEs +1601.06996 Number Theory +1601.06999 Neurons and Cognition +1601.07002 Networking and Internet Architecture +1601.07004 Fluid Dynamics +1601.07005 Operator Algebras +1601.07006 Theory +1601.07007 Fluid Dynamics +1601.07009 Social and Information Networks +1601.07011 Multiagent Systems +1601.07012 Combinatorics +1601.07013 Instrumentation and Detectors +1601.07016 Representation Theory +1601.07018 Category Theory +1601.07021 Computer Vision and Pattern Recognition +1601.07023 Analysis of PDEs +1601.07024 Information Theory +1601.07025 Solar and Stellar Astrophysics +1601.07027 Astrophysics of Galaxies +1601.07028 Distributed, Parallel, and Cluster Computing +1601.07029 Pattern Formation and Solitons +1601.07033 General Physics +1601.07034 Strongly Correlated Electrons +1601.07036 Information Theory +1601.07037 +1601.07039 Number Theory +1601.07050 Instrumentation and Methods for Astrophysics +1601.07051 +1601.07052 +1601.07053 +1601.07055 Theory +1601.07058 Number Theory +1601.07059 Information Theory +1601.07060 Physics and Society +1601.07062 Genomics +1601.07065 Artificial Intelligence +1601.07070 Dynamical Systems +1601.07074 Algebraic Geometry +1601.07077 Other Computer Science +1601.07078 Mesoscale and Nanoscale Physics +1601.07079 Dynamical Systems +1601.07081 Algebraic Geometry +1601.07082 Algebraic Geometry +1601.07087 Information Theory +1601.07089 Distributed, Parallel, and Cluster Computing +1601.07090 Systems and Control +1601.07093 Analysis of PDEs +1601.07094 Algebraic Topology +1601.07095 Category Theory +1601.07096 Category Theory +1601.07097 Systems and Control +1601.07104 Category Theory +1601.07109 Number Theory +1601.07110 Information Theory +1601.07111 Dynamical Systems +1601.07113 Optimization and Control +1601.07114 Functional Analysis +1601.07116 Analysis of PDEs +1601.07119 Analysis of PDEs +1601.07121 Fluid Dynamics +1601.07123 Probability +1601.07124 Computation and Language +1601.07125 History and Overview +1601.07128 Superconductivity +1601.07131 Group Theory +1601.07132 Number Theory +1601.07136 Commutative Algebra +1601.07139 Differential Geometry +1601.07141 Statistics Theory +1601.07143 Algebraic Geometry +1601.07145 Fluid Dynamics +1601.07146 Representation Theory +1601.07149 Combinatorics +1601.07152 Experiment +1601.07153 Geometric Topology +1601.07158 Number Theory +1601.07160 Complex Variables +1601.07161 Combinatorics +1601.07163 Computer Science and Game Theory +astro-ph/0001002 +astro-ph/0001029 +astro-ph/0001245 +astro-ph/0001253 +astro-ph/0001365 +astro-ph/0001426 +astro-ph/0001457 +astro-ph/0002069 +astro-ph/0002178 +astro-ph/0002231 +astro-ph/0002498 +astro-ph/0002509 +astro-ph/0002524 +astro-ph/0003341 +astro-ph/0003386 +astro-ph/0004029 +astro-ph/0010207 +astro-ph/0010208 +astro-ph/0010237 +astro-ph/0010513 +astro-ph/0010540 +astro-ph/0010568 +astro-ph/0012160 +astro-ph/0101200 +astro-ph/0102383 +astro-ph/0102471 +astro-ph/0102495 +astro-ph/0103004 +astro-ph/0103495 +astro-ph/0104096 +astro-ph/0104466 +astro-ph/0105294 +astro-ph/0105351 +astro-ph/0105400 +astro-ph/0105428 +astro-ph/0105495 +astro-ph/0105562 +astro-ph/0106009 +astro-ph/0106467 +astro-ph/0106483 +astro-ph/0107105 +astro-ph/0107273 +astro-ph/0107285 +astro-ph/0108233 +astro-ph/0205518 +astro-ph/0206451 +astro-ph/0207168 +astro-ph/0207194 +astro-ph/0207513 +astro-ph/0207609 +astro-ph/0207619 +astro-ph/0208009 +astro-ph/0208051 +astro-ph/0208052 +astro-ph/0208317 +astro-ph/0208329 +astro-ph/0209066 +astro-ph/0209256 +astro-ph/0209279 +astro-ph/0209321 +astro-ph/0209387 +astro-ph/0209521 +astro-ph/0209539 +astro-ph/0209558 +astro-ph/0210137 +astro-ph/0210243 +astro-ph/0210575 +astro-ph/0210608 +astro-ph/0211288 +astro-ph/0211293 +astro-ph/0211295 +astro-ph/0211563 +astro-ph/0212016 +astro-ph/0212020 +astro-ph/0212055 +astro-ph/0212090 +astro-ph/0212272 +astro-ph/0212395 +astro-ph/0301183 +astro-ph/0301313 +astro-ph/0301559 +astro-ph/0302584 +astro-ph/0303046 +astro-ph/0303511 +astro-ph/0303552 +astro-ph/0305424 +astro-ph/0305567 +astro-ph/0306146 +astro-ph/0311386 +astro-ph/0403184 +astro-ph/0403225 +astro-ph/0403373 +astro-ph/0403618 +astro-ph/0403693 +astro-ph/0404504 +astro-ph/0405144 +astro-ph/0405170 +astro-ph/0405497 +astro-ph/0405541 +astro-ph/0406306 +astro-ph/0406492 +astro-ph/0406494 +astro-ph/0406512 +astro-ph/0406578 +astro-ph/0406583 +astro-ph/0406616 +astro-ph/0406667 +astro-ph/0406669 +astro-ph/0407004 +astro-ph/0407068 +astro-ph/0407273 +astro-ph/0407322 +astro-ph/0407323 +astro-ph/0407358 +astro-ph/0407434 +astro-ph/0407463 +astro-ph/0407564 +astro-ph/0407582 +astro-ph/0408165 +astro-ph/0408176 +astro-ph/0408267 +astro-ph/0409103 +astro-ph/0409540 +astro-ph/0409625 +astro-ph/0409661 +astro-ph/0410094 +astro-ph/0509791 +astro-ph/9306015 +astro-ph/9509003 +astro-ph/9509156 +astro-ph/9511035 +astro-ph/9511092 +astro-ph/9512002 +astro-ph/9512016 +astro-ph/9512068 +astro-ph/9512069 +astro-ph/9512134 +astro-ph/9601169 +astro-ph/9602139 +astro-ph/9602144 +astro-ph/9602145 +astro-ph/9603005 +astro-ph/9604029 +astro-ph/9604033 +astro-ph/9604039 +astro-ph/9606002 +astro-ph/9607101 +astro-ph/9607176 +astro-ph/9610164 +astro-ph/9611092 +astro-ph/9611129 +astro-ph/9612181 +astro-ph/9701022 +astro-ph/9702104 +astro-ph/9702218 +astro-ph/9702230 +astro-ph/9703038 +astro-ph/9703050 +astro-ph/9703141 +astro-ph/9703142 +astro-ph/9703143 +astro-ph/9703198 +astro-ph/9704003 +astro-ph/9704136 +astro-ph/9704151 +astro-ph/9704163 +astro-ph/9705056 +astro-ph/9706039 +astro-ph/9707255 +astro-ph/9708021 +astro-ph/9708102 +astro-ph/9710016 +astro-ph/9711226 +astro-ph/9711232 +astro-ph/9711297 +astro-ph/9803034 +astro-ph/9803043 +astro-ph/9805160 +astro-ph/9805328 +astro-ph/9806330 +astro-ph/9807104 +astro-ph/9807105 +astro-ph/9807106 +astro-ph/9807121 +astro-ph/9807124 +astro-ph/9807129 +astro-ph/9807237 +astro-ph/9807239 +astro-ph/9808006 +astro-ph/9808080 +astro-ph/9808116 +astro-ph/9808198 +astro-ph/9808202 +astro-ph/9808336 +astro-ph/9809394 +astro-ph/9810052 +astro-ph/9810112 +astro-ph/9901222 +astro-ph/9910522 +astro-ph/9911075 +astro-ph/9911090 +astro-ph/9911382 +astro-ph/9911393 +astro-ph/9911495 +astro-ph/9912126 +astro-ph/9912309 +astro-ph/9912314 +astro-ph/9912323 +astro-ph/9912341 +astro-ph/9912370 +astro-ph/9912469 +astro-ph/9912522 +gr-qc/9603049 +gr-qc/9604048 +gr-qc/9604051 +gr-qc/9605027 +gr-qc/9605053 +gr-qc/9606061 +gr-qc/9607067 +gr-qc/9608062 +hep-lat/9605021 Lattice +hep-ph/9603401 Phenomenology +hep-th/0312225 Theory +hep-th/9210066 Theory +hep-th/9603141 Theory +hep-th/9603166 Theory +hep-th/9607191 Theory +math/0611715 Number Theory +0810.3412 Geometric Topology +0811.0296 Number Theory +0903.3154 Geometric Topology +0906.1372 Metric Geometry +0909.1053 Algebraic Topology +1010.1492 Chemical Physics +1103.1166 Cosmology and Nongalactic Astrophysics +1104.5185 Dynamical Systems +1106.3956 +1109.2749 Analysis of PDEs +1110.1699 Representation Theory +1111.0475 +1112.0920 Logic +1112.4519 Statistics Theory +1206.2797 Materials Science +1207.5147 Numerical Analysis +1208.3370 Algebraic Topology +1208.3542 Algebraic Topology +1209.2770 Quantum Algebra +1211.2899 Differential Geometry +1212.0255 Probability +1212.1019 Metric Geometry +1212.2043 Phenomenology +1212.3122 Category Theory +1302.1490 General Physics +1304.4607 +1306.0801 Combinatorics +1306.2680 Cosmology and Nongalactic Astrophysics +1306.4286 Rings and Algebras +1307.0599 Combinatorics +1307.2862 Probability +1307.6625 Metric Geometry +1307.7762 +1308.5248 Combinatorics +1308.5824 Numerical Analysis +1309.0989 Group Theory +1309.2800 Number Theory +1309.3845 Statistics Theory +1309.5381 Cosmology and Nongalactic Astrophysics +1309.7424 Functional Analysis +1310.0909 Analysis of PDEs +1310.1780 Statistics Theory +1310.1783 Statistics Theory +1311.1697 Solar and Stellar Astrophysics +1311.2189 Representation Theory +1311.6765 Statistics Theory +1312.1407 Numerical Analysis +1401.0808 Probability +1401.7790 Statistics Theory +1402.3333 Dynamical Systems +1402.4723 Superconductivity +1402.6703 High Energy Astrophysical Phenomena +1403.1488 +1404.0107 Number Theory +1404.7425 Cosmology and Nongalactic Astrophysics +1405.0298 Theory +1405.4783 Group Theory +1406.0597 Machine Learning +1406.1527 Analysis of PDEs +1406.2228 Combinatorics +1406.3739 +1407.1411 Superconductivity +1407.7505 +1407.7785 Algebraic Geometry +1408.0348 Geometric Topology +1408.0891 Quantum Gases +1408.1086 Quantum Gases +1408.4796 General Physics +1409.2046 Medical Physics +1409.7005 +1409.8651 Number Theory +1410.1233 Computational Engineering, Finance, and Science +1410.4079 Analysis of PDEs +1410.5692 Metric Geometry +1410.5701 Complex Variables +1410.6290 Rings and Algebras +1410.6600 Statistical Mechanics +1410.7696 Quantum Algebra +1410.8499 Quantitative Methods +1411.4594 Number Theory +1411.4612 Phenomenology +1411.4816 Number Theory +1411.5273 High Energy Astrophysical Phenomena +1411.5770 Mesoscale and Nanoscale Physics +1412.0494 Computer Vision and Pattern Recognition +1412.1650 Cosmology and Nongalactic Astrophysics +1412.2760 Astrophysics of Galaxies +1412.2765 Phenomenology +1412.3252 Number Theory +1412.4808 +1412.7310 Cosmology and Nongalactic Astrophysics +1412.7548 Number Theory +1501.01447 Theory +1501.04798 Geometric Topology +1501.05387 Distributed, Parallel, and Cluster Computing +1501.05880 Quantitative Methods +1501.06267 Information Theory +1501.06928 Astrophysics of Galaxies +1502.03762 Optimization and Control +1502.07309 Statistical Mechanics +1503.01701 Fluid Dynamics +1503.01735 Mesoscale and Nanoscale Physics +1503.02689 Cosmology and Nongalactic Astrophysics +1503.03654 +1503.04840 Algebraic Topology +1503.07522 Solar and Stellar Astrophysics +1503.07574 Classical Analysis and ODEs +1503.08059 +1503.08916 Representation Theory +1504.00013 Strongly Correlated Electrons +1504.01613 Mesoscale and Nanoscale Physics +1504.01787 Quantum Gases +1504.02277 Soft Condensed Matter +1504.02713 Solar and Stellar Astrophysics +1504.03831 Number Theory +1504.03909 +1504.05107 Statistical Mechanics +1504.05263 General Topology +1504.06143 +1504.06809 Number Theory +1504.06987 +1504.07618 Number Theory +1504.07808 Strongly Correlated Electrons +1504.07853 Cosmology and Nongalactic Astrophysics +1504.07989 +1505.00008 Cosmology and Nongalactic Astrophysics +1505.01507 Optics +1505.01972 Functional Analysis +1505.02413 Theory +1505.02721 Analysis of PDEs +1505.02902 +1505.02910 Machine Learning +1505.06626 Soft Condensed Matter +1505.06634 Theory +1506.00444 Classical Analysis and ODEs +1506.00525 Materials Science +1506.00895 +1506.00984 +1506.01027 High Energy Astrophysical Phenomena +1506.01182 Atomic Physics +1506.04018 Superconductivity +1506.05353 +1506.06049 Materials Science +1506.06116 +1506.06597 Combinatorics +1506.07375 K-Theory and Homology +1506.08097 +1506.08287 Metric Geometry +1506.08457 +1507.00115 +1507.00731 Astrophysics of Galaxies +1507.00946 Phenomenology +1507.01614 Computation +1507.01628 Information Theory +1507.01937 Solar and Stellar Astrophysics +1507.02156 +1507.02645 Representation Theory +1507.03190 Information Theory +1507.03271 +1507.04546 Theory +1507.06311 Solar and Stellar Astrophysics +1507.06478 Phenomenology +1507.06920 Populations and Evolution +1507.07385 Information Theory +1507.08170 Optics +1508.00096 Geometric Topology +1508.01124 Theory +1508.01469 Populations and Evolution +1508.01856 Materials Science +1508.02051 Analysis of PDEs +1508.02540 +1508.02723 Quantum Gases +1508.03848 Mesoscale and Nanoscale Physics +1508.03862 Experiment +1508.04356 Algebraic Geometry +1508.05045 Disordered Systems and Neural Networks +1508.05215 Fluid Dynamics +1508.06423 Pattern Formation and Solitons +1508.06498 Mesoscale and Nanoscale Physics +1508.06757 Experiment +1508.07189 Strongly Correlated Electrons +1508.07420 Number Theory +1508.07863 Mesoscale and Nanoscale Physics +1508.07959 Lattice +1509.00325 Numerical Analysis +1509.00620 Superconductivity +1509.00736 Phenomenology +1509.01729 Phenomenology +1509.02067 Probability +1509.02168 Quantum Gases +1509.02349 Atomic Physics +1509.02529 Astrophysics of Galaxies +1509.02775 Mesoscale and Nanoscale Physics +1509.02929 Phenomenology +1509.02949 Strongly Correlated Electrons +1509.03050 Differential Geometry +1509.03073 Cosmology and Nongalactic Astrophysics +1509.03491 Probability +1509.03508 Fluid Dynamics +1509.04063 Numerical Analysis +1509.04373 Complex Variables +1509.05143 Astrophysics of Galaxies +1509.05201 Mesoscale and Nanoscale Physics +1509.05361 Atomic Physics +1509.05858 +1509.06316 +1509.06370 Solar and Stellar Astrophysics +1509.06642 +1509.06681 Theory +1509.06727 +1509.06998 Phenomenology +1509.07339 Theory +1509.07401 Statistical Mechanics +1509.07841 +1509.07883 Rings and Algebras +1509.08335 Astrophysics of Galaxies +1509.08354 +1509.08670 Mesoscale and Nanoscale Physics +1510.00235 Algebraic Topology +1510.00394 High Energy Astrophysical Phenomena +1510.00688 Cosmology and Nongalactic Astrophysics +1510.00782 Metric Geometry +1510.01028 General Mathematics +1510.01738 Strongly Correlated Electrons +1510.01896 Theory +1510.02144 Superconductivity +1510.02251 Solar and Stellar Astrophysics +1510.02566 +1510.02796 Instrumentation and Methods for Astrophysics +1510.03327 Superconductivity +1510.03436 Cosmology and Nongalactic Astrophysics +1510.03748 Mesoscale and Nanoscale Physics +1510.04404 Materials Science +1510.04693 High Energy Astrophysical Phenomena +1510.04711 +1510.04790 Phenomenology +1510.04854 Logic in Computer Science +1510.04909 Atomic Physics +1510.05008 Phenomenology +1510.05830 Learning +1510.06470 Lattice +1510.06625 Mesoscale and Nanoscale Physics +1510.07065 Phenomenology +1510.07598 +1510.08005 Statistical Mechanics +1510.08069 Phenomenology +1510.08215 +1510.08436 Solar and Stellar Astrophysics +1510.08650 Strongly Correlated Electrons +1510.08840 Phenomenology +1510.08935 +1510.09181 Materials Science +1511.00012 Cosmology and Nongalactic Astrophysics +1511.00055 Cosmology and Nongalactic Astrophysics +1511.00359 Dynamical Systems +1511.00394 Learning +1511.00699 +1511.00886 Quantum Gases +1511.00910 Physics and Society +1511.01004 +1511.01286 Solar and Stellar Astrophysics +1511.01288 Instrumentation and Detectors +1511.01993 Statistical Mechanics +1511.03014 Solar and Stellar Astrophysics +1511.03545 Materials Science +1511.03712 Space Physics +1511.04072 Earth and Planetary Astrophysics +1511.04083 Earth and Planetary Astrophysics +1511.04104 Mesoscale and Nanoscale Physics +1511.04206 +1511.04441 Cosmology and Nongalactic Astrophysics +1511.04673 Superconductivity +1511.05087 Phenomenology +1511.05141 Disordered Systems and Neural Networks +1511.05147 Astrophysics of Galaxies +1511.05406 Astrophysics of Galaxies +1511.05513 +1511.05542 Experiment +1511.05971 Cosmology and Nongalactic Astrophysics +1511.06155 +1511.06370 Astrophysics of Galaxies +1511.06629 Atomic Physics +1511.06958 Cosmology and Nongalactic Astrophysics +1511.07056 Classical Analysis and ODEs +1511.07158 Mesoscale and Nanoscale Physics +1511.07930 Strongly Correlated Electrons +1511.08008 Statistical Mechanics +1511.08197 Solar and Stellar Astrophysics +1511.08255 Astrophysics of Galaxies +1511.08472 Soft Condensed Matter +1511.08601 Mesoscale and Nanoscale Physics +1511.08984 Mesoscale and Nanoscale Physics +1512.00202 Chaotic Dynamics +1512.00281 Theory +1512.00301 High Energy Astrophysical Phenomena +1512.00455 Phenomenology +1512.00466 Solar and Stellar Astrophysics +1512.00615 +1512.00623 Materials Science +1512.00681 Atomic Physics +1512.00746 Materials Science +1512.01078 Materials Science +1512.01224 Experiment +1512.01965 Quantum Gases +1512.02120 +1512.02146 Solar and Stellar Astrophysics +1512.02157 Data Structures and Algorithms +1512.02252 Phenomenology +1512.02434 High Energy Astrophysical Phenomena +1512.02801 Phenomenology +1512.02856 Pattern Formation and Solitons +1512.02993 Lattice +1512.03437 Mesoscale and Nanoscale Physics +1512.03578 +1512.04187 Materials Science +1512.04437 Earth and Planetary Astrophysics +1512.04532 Theory +1512.04555 Cosmology and Nongalactic Astrophysics +1512.04876 Mesoscale and Nanoscale Physics +1512.04940 Astrophysics of Galaxies +1512.05301 Astrophysics of Galaxies +1512.05360 +1512.05523 Astrophysics of Galaxies +1512.05606 High Energy Astrophysical Phenomena +1512.05715 Atomic Physics +1512.05796 Astrophysics of Galaxies +1512.05797 Materials Science +1512.05894 +1512.06002 Astrophysics of Galaxies +1512.06041 Astrophysics of Galaxies +1512.06579 Algebraic Topology +1512.06692 Lattice +1512.06698 Earth and Planetary Astrophysics +1512.06777 Solar and Stellar Astrophysics +1512.06873 Solar and Stellar Astrophysics +1512.07639 Solar and Stellar Astrophysics +1512.08228 High Energy Astrophysical Phenomena +1512.08502 Phenomenology +1512.09027 Solar and Stellar Astrophysics +1601.00091 Solar and Stellar Astrophysics +1601.00356 High Energy Astrophysical Phenomena +1601.00386 Phenomenology +1601.00757 High Energy Astrophysical Phenomena +1601.01098 Superconductivity +1601.01114 Astrophysics of Galaxies +1601.01316 Solar and Stellar Astrophysics +1601.01440 Mesoscale and Nanoscale Physics +1601.01542 Astrophysics of Galaxies +1601.01750 Computer Vision and Pattern Recognition +1601.02087 Earth and Planetary Astrophysics +1601.02196 Soft Condensed Matter +1601.02542 High Energy Astrophysical Phenomena +1601.02610 High Energy Astrophysical Phenomena +1601.02618 Cosmology and Nongalactic Astrophysics +1601.02677 Economics +1601.02971 Mesoscale and Nanoscale Physics +1601.03216 Earth and Planetary Astrophysics +1601.03326 Solar and Stellar Astrophysics +1601.03327 Astrophysics of Galaxies +1601.03527 Astrophysics of Galaxies +1601.04051 High Energy Astrophysical Phenomena +1601.04452 Instrumentation and Methods for Astrophysics +1601.04870 High Energy Astrophysical Phenomena +1601.04962 High Energy Astrophysical Phenomena +1601.05054 Solar and Stellar Astrophysics +1601.05215 High Energy Astrophysical Phenomena +1601.05237 Phenomenology +1601.05304 Astrophysics of Galaxies +1601.05367 Astrophysics of Galaxies +1601.05965 +1601.06267 Astrophysics of Galaxies +1601.06369 Astrophysics of Galaxies +1601.07376 Optimization and Control +1601.07428 Astrophysics of Galaxies +1601.07983 Dynamical Systems +1601.08049 Digital Libraries +1602.00031 +1602.00361 Quantum Algebra +1602.00378 Solar and Stellar Astrophysics +1602.01097 Astrophysics of Galaxies +1602.01100 High Energy Astrophysical Phenomena +1602.01104 Astrophysics of Galaxies +1602.02106 Representation Theory +1602.02668 Materials Science +1602.02758 Earth and Planetary Astrophysics +1602.02765 Astrophysics of Galaxies +1602.02810 Theory +1602.02939 High Energy Astrophysical Phenomena +1602.02969 Astrophysics of Galaxies +1602.03130 Solar and Stellar Astrophysics +1602.03218 Learning +1602.03233 Optics +1602.03533 Astrophysics of Galaxies +1602.03629 High Energy Astrophysical Phenomena +1602.03640 Instrumentation and Methods for Astrophysics +1602.03756 Cosmology and Nongalactic Astrophysics +1602.03837 +1602.03919 Cosmology and Nongalactic Astrophysics +1602.04023 High Energy Astrophysical Phenomena +1602.04085 Astrophysics of Galaxies +1602.04127 Atomic Physics +1602.04200 High Energy Astrophysical Phenomena +1602.04263 Space Physics +1602.04290 Artificial Intelligence +1602.04468 Dynamical Systems +1602.04522 Algebraic Geometry +1602.04736 Earth and Planetary Astrophysics +1602.04835 Information Theory +1602.04875 Artificial Intelligence +1602.05203 Solar and Stellar Astrophysics +1602.05219 Statistical Mechanics +1602.05555 Formal Languages and Automata Theory +1602.06058 Data Structures and Algorithms +1602.06100 +1602.06134 +1602.06223 Digital Libraries +1602.06225 Machine Learning +1602.06316 Applications +1602.06340 Strongly Correlated Electrons +1602.06406 Information Theory +1602.06408 Statistical Mechanics +1602.06421 Combinatorics +1602.06454 Social and Information Networks +1602.06461 Social and Information Networks +1602.06483 Robotics +1602.06504 Genomics +1602.06508 Social and Information Networks +1602.06510 Cryptography and Security +1602.06528 Spectral Theory +1602.06561 Learning +1602.06570 Applications +1602.06585 Risk Management +1602.06620 Numerical Analysis +1602.06631 Representation Theory +1602.06642 +1602.06649 Fluid Dynamics +1602.06686 Networking and Internet Architecture +1602.06687 Learning +1602.06700 Human-Computer Interaction +1602.06703 Robotics +1602.06714 Fluid Dynamics +1602.06719 Classical Analysis and ODEs +1602.06750 Plasma Physics +1602.06787 Emerging Technologies +1602.06793 Mesoscale and Nanoscale Physics +1602.06795 Representation Theory +1602.06821 +1602.06833 Instrumentation and Methods for Astrophysics +1602.06852 Fluid Dynamics +1602.06858 Physics Education +1602.06868 History and Philosophy of Physics +1602.06889 Optimization and Control +1602.06937 Tissues and Organs +1602.06946 History and Overview +1602.06958 +1602.06963 Physics Education +1602.06967 Computation and Language +1602.06971 Fluid Dynamics +1602.06972 Applications +1602.06974 Optics +1602.06975 Instrumentation and Detectors +1602.06976 Superconductivity +1602.06978 +1602.06979 Computation and Language +1602.06989 Machine Learning +1602.06994 Other Computer Science +1602.06999 Fluid Dynamics +1602.07004 Probability +1602.07008 Data Structures and Algorithms +1602.07012 Dynamical Systems +1602.07017 Computer Vision and Pattern Recognition +1602.07018 Optimization and Control +1602.07019 Computation and Language +1602.07025 Rings and Algebras +1602.07026 Numerical Analysis +1602.07027 Phenomenology +1602.07029 Learning +1602.07030 Materials Science +1602.07033 Analysis of PDEs +1602.07034 Numerical Analysis +1602.07035 Commutative Algebra +1602.07036 Materials Science +1602.07037 +1602.07039 Combinatorics +1602.07040 Networking and Internet Architecture +1602.07041 Commutative Algebra +1602.07042 Atomic Physics +1602.07044 Biological Physics +1602.07045 Statistical Mechanics +1602.07047 Optics +1602.07048 Social and Information Networks +1602.07049 Numerical Analysis +1602.07056 Methodology +1602.07057 Artificial Intelligence +1602.07059 Algebraic Geometry +1602.07060 Algebraic Geometry +1602.07061 Algebraic Geometry +1602.07062 Numerical Analysis +1602.07064 Databases +1602.07065 Software Engineering +1602.07073 History and Overview +1602.07074 Soft Condensed Matter +1602.07084 Functional Analysis +1602.07085 Combinatorics +1602.07086 Analysis of PDEs +1602.07087 +1602.07090 Functional Analysis +1602.07091 Chemical Physics +1602.07092 Software Engineering +1602.07093 Commutative Algebra +1602.07094 Astrophysics of Galaxies +1602.07095 +1602.07097 Theory +1602.07100 Quantitative Methods +1602.07101 +1602.07103 Genomics +1602.07106 Data Structures and Algorithms +1602.07107 Machine Learning +1602.07111 +1602.07115 Logic in Computer Science +1602.07117 Optics +1602.07118 General Topology +1602.07123 Optimization and Control +1602.07127 Software Engineering +1602.07132 Combinatorics +1602.07133 Statistical Mechanics +1602.07134 Commutative Algebra +1602.07137 Optimization and Control +1602.07139 +1602.07147 Combinatorics +1602.07151 Fluid Dynamics +1602.07156 Exactly Solvable and Integrable Systems +1602.07158 Functional Analysis +1602.07160 +1602.07162 Number Theory +1602.07165 Formal Languages and Automata Theory +1602.07171 Combinatorics +1602.07175 Astrophysics of Galaxies +1602.07176 Analysis of PDEs +1602.07179 Soft Condensed Matter +1602.07180 Probability +1602.07183 Biomolecules +1602.07185 Human-Computer Interaction +1602.07187 Algebraic Geometry +1602.07193 General Physics +1602.07194 Machine Learning +1602.07195 Data Structures and Algorithms +1602.07201 Probability +1602.07208 History and Overview +1602.07215 High Energy Astrophysical Phenomena +1602.07218 +1602.07221 +1602.07225 Information Theory +1602.07227 Mesoscale and Nanoscale Physics +1602.07232 +1602.07233 Algebraic Geometry +1602.07236 Computation and Language +1602.07238 Complex Variables +1602.07241 Data Structures and Algorithms +1602.07243 Combinatorics +1602.07250 Information Theory +1602.07251 +1602.07253 Physics Education +1602.07254 Solar and Stellar Astrophysics +1602.07262 Probability +1602.07264 Learning +1602.07268 Probability +1602.07271 Differential Geometry +1602.07272 Probability +1602.07274 Medical Physics +1602.07275 Physics and Society +1602.07276 Representation Theory +1602.07278 Mesoscale and Nanoscale Physics +1602.07280 Applications +1602.07281 +1602.07283 Optimization and Control +1602.07285 Programming Languages +1602.07291 Sound +math/0406508 Number Theory +quant-ph/9810048 +0907.1548 Rings and Algebras +1012.2281 Analysis of PDEs +1108.5424 +1110.1302 Classical Analysis and ODEs +1112.1677 Algebraic Geometry +1112.3849 Classical Analysis and ODEs +1203.2089 Differential Geometry +1209.6518 Rings and Algebras +1301.2529 Classical Analysis and ODEs +1303.4630 Algebraic Geometry +1304.3191 Probability +1304.3873 Classical Analysis and ODEs +1305.5300 Analysis of PDEs +1307.0836 Computational Complexity +1309.6242 Classical Analysis and ODEs +1401.3382 Classical Analysis and ODEs +1401.6863 Classical Analysis and ODEs +1405.4794 Representation Theory +1406.2396 Rings and Algebras +1407.6636 Metric Geometry +1408.5602 Dynamical Systems +1409.7077 Geometric Topology +1410.4455 Quantum Algebra +1411.3971 Optimization and Control +1411.3981 Optimization and Control +1412.1720 Atomic Physics +1501.02501 Optimization and Control +1501.04272 Information Theory +1501.07820 +1502.01730 Combinatorics +1502.02463 Group Theory +1502.02890 Quantum Gases +1502.07961 Risk Management +1503.03692 Functional Analysis +1504.06182 General Physics +1505.01616 Combinatorics +1505.01638 Physics and Society +1505.04179 +1506.06877 Materials Science +1507.00312 Statistical Mechanics +1507.01847 Risk Management +1507.03048 +1508.01749 Spectral Theory +1508.02393 Cosmology and Nongalactic Astrophysics +1508.06131 Phenomenology +1509.01548 Quantum Algebra +1509.01776 Probability +1509.02380 Sound +1509.03130 Analysis of PDEs +1510.04891 +1510.07770 Theory +1511.00636 +1511.01971 +1511.03436 +1511.04647 Cosmology and Nongalactic Astrophysics +1511.08004 Representation Theory +1512.03761 Dynamical Systems +1512.06800 +1512.07890 Theory +1601.00069 Earth and Planetary Astrophysics +1601.01836 Group Theory +1601.02492 Probability +1601.06141 Symplectic Geometry +1601.06879 Number Theory +1602.00931 General Finance +1602.01245 Optics +1602.03943 Machine Learning +1602.04826 Astrophysics of Galaxies +1602.07358 Methodology +1602.07699 Cosmology and Nongalactic Astrophysics +1602.08140 Phenomenology +1602.08729 Optimization and Control +1602.08822 Mesoscale and Nanoscale Physics +1603.00635 Atomic Physics +1603.00886 Physics and Society +1603.03250 Phenomenology +1603.05561 Metric Geometry +1603.06143 Graphics +1603.06294 Atomic Physics +1603.06743 Machine Learning +1603.07038 Probability +1603.07257 Physics and Society +1603.07266 +1603.08165 Dynamical Systems +1603.08751 Instrumentation and Detectors +1603.09257 +1604.02307 Probability +1604.04384 Robotics +1604.04905 +1604.07349 Combinatorics +1604.08076 Algebraic Geometry +1605.00931 +1605.01288 Learning +1605.02108 Quantum Gases +1605.04928 Quantum Gases +1605.05718 Phenomenology +1605.05790 Theory +1605.07245 Solar and Stellar Astrophysics +1605.07686 Computer Vision and Pattern Recognition +1605.09125 Information Theory +1605.09463 Optimization and Control +1605.09532 High Energy Astrophysical Phenomena +1606.00033 Methodology +1606.00188 Quantum Gases +1606.00688 Theory +1606.01151 Computation and Language +1606.01637 Classical Analysis and ODEs +1606.02504 Phenomenology +1606.02673 Representation Theory +1606.02972 Statistical Mechanics +1606.03338 Mesoscale and Nanoscale Physics +1606.04016 Computational Complexity +1606.04256 Materials Science +1606.07013 +1606.07177 +1606.07413 +1606.08295 +1606.08667 Data Structures and Algorithms +1606.08715 Popular Physics +1607.00957 Analysis of PDEs +1607.01310 +1607.02521 Experiment +1607.03145 Cosmology and Nongalactic Astrophysics +1607.04150 Superconductivity +1607.05630 Materials Science +1607.06034 Category Theory +1607.06333 Machine Learning +1607.06775 Medical Physics +1607.06856 Materials Science +1607.07195 Machine Learning +1607.07463 +1607.07690 Mesoscale and Nanoscale Physics +1607.08528 Fluid Dynamics +1607.08817 Phenomenology +1608.00219 Classical Analysis and ODEs +1608.04702 Algebraic Topology +1608.05608 Dynamical Systems +1608.06238 +1608.06531 Numerical Analysis +1608.06874 Combinatorics +1608.06946 +1608.07192 Human-Computer Interaction +1608.07930 Numerical Analysis +1608.08249 Strongly Correlated Electrons +1608.08449 Geometric Topology +1609.00037 Software Engineering +1609.00433 +1609.01159 General Mathematics +1609.02363 Mesoscale and Nanoscale Physics +1609.02779 Classical Analysis and ODEs +1609.02967 Number Theory +1609.03696 Information Theory +1609.04476 Mesoscale and Nanoscale Physics +1609.04722 Artificial Intelligence +1609.05390 Solar and Stellar Astrophysics +1609.07317 Computation and Language +1609.07444 Numerical Analysis +1609.07593 Logic in Computer Science +1609.09139 Materials Science +1610.00484 Mesoscale and Nanoscale Physics +1610.00612 Optics +1610.00872 Probability +1610.00891 Probability +1610.00898 Geometric Topology +1610.01055 Earth and Planetary Astrophysics +1610.01240 Optics +1610.01644 Machine Learning +1610.01839 Combinatorics +1610.02835 Dynamical Systems +1610.02959 Medical Physics +1610.03146 Dynamical Systems +1610.03341 Computer Vision and Pattern Recognition +1610.03373 Systems and Control +1610.03474 Computer Science and Game Theory +1610.03507 +1610.03541 Information Theory +1610.03604 Computer Vision and Pattern Recognition +1610.03640 Computer Vision and Pattern Recognition +1610.03667 Information Theory +1610.03672 High Energy Astrophysical Phenomena +1610.03725 Machine Learning +1610.03780 Solar and Stellar Astrophysics +1610.03881 +1610.03890 Cosmology and Nongalactic Astrophysics +1610.03974 Disordered Systems and Neural Networks +1610.03995 Machine Learning +1610.04000 +1610.04092 Geometric Topology +1610.04123 Biomolecules +1610.04199 Statistics Theory +1610.04224 Other Quantitative Biology +1610.04225 +1610.04226 Cosmology and Nongalactic Astrophysics +1610.04227 Theory +1610.04229 Mesoscale and Nanoscale Physics +1610.04230 Theory +1610.04231 Cosmology and Nongalactic Astrophysics +1610.04233 Theory +1610.04241 Optics +1610.04242 Chemical Physics +1610.04248 Fluid Dynamics +1610.04250 Operator Algebras +1610.04254 Biological Physics +1610.04255 Neurons and Cognition +1610.04256 Computer Vision and Pattern Recognition +1610.04257 Functional Analysis +1610.04258 Neurons and Cognition +1610.04259 Combinatorics +1610.04260 Networking and Internet Architecture +1610.04261 Computer Vision and Pattern Recognition +1610.04262 Classical Physics +1610.04263 Materials Science +1610.04267 Dynamical Systems +1610.04268 Theory +1610.04271 Number Theory +1610.04274 Social and Information Networks +1610.04276 Computers and Society +1610.04278 Geometric Topology +1610.04279 Materials Science +1610.04281 Graphics +1610.04285 +1610.04286 Robotics +1610.04290 Biomolecules +1610.04293 Probability +1610.04294 Algebraic Geometry +1610.04295 Number Theory +1610.04296 +1610.04297 Applications +1610.04298 +1610.04300 Strongly Correlated Electrons +1610.04301 Probability +1610.04302 Representation Theory +1610.04303 Computational Engineering, Finance, and Science +1610.04304 Computational Engineering, Finance, and Science +1610.04306 Cryptography and Security +1610.04308 Computer Vision and Pattern Recognition +1610.04309 Distributed, Parallel, and Cluster Computing +1610.04310 Numerical Analysis +1610.04312 Computer Science and Game Theory +1610.04315 Databases +1610.04321 Atomic Physics +1610.04322 Computer Vision and Pattern Recognition +1610.04324 Optics +1610.04327 +1610.04329 Optimization and Control +1610.04332 Statistical Mechanics +1610.04333 Strongly Correlated Electrons +1610.04334 Statistical Finance +1610.04335 Optics +1610.04337 Disordered Systems and Neural Networks +1610.04338 Chemical Physics +1610.04340 Information Theory +1610.04342 Dynamical Systems +1610.04343 Phenomenology +1610.04345 Computation and Language +1610.04346 Multimedia +1610.04347 History and Overview +1610.04348 Optics +1610.04349 +1610.04350 Quantum Gases +1610.04351 Machine Learning +1610.04352 +1610.04354 Mesoscale and Nanoscale Physics +1610.04359 +1610.04360 +1610.04361 Strongly Correlated Electrons +1610.04362 Networking and Internet Architecture +1610.04364 Information Theory +1610.04367 K-Theory and Homology +1610.04368 Algebraic Geometry +1610.04371 Machine Learning +1610.04373 Analysis of PDEs +1610.04374 Differential Geometry +1610.04375 Social and Information Networks +1610.04377 Computation and Language +1610.04378 Information Theory +1610.04379 Materials Science +1610.04382 Statistical Mechanics +1610.04383 Mesoscale and Nanoscale Physics +1610.04384 Numerical Analysis +1610.04389 Experiment +1610.04390 Instrumentation and Methods for Astrophysics +1610.04392 Instrumentation and Methods for Astrophysics +1610.04393 Phenomenology +1610.04395 Optimization and Control +1610.04396 +1610.04397 Methodology +1610.04398 Fluid Dynamics +1610.04399 Analysis of PDEs +1610.04403 Instrumentation and Methods for Astrophysics +1610.04404 Soft Condensed Matter +1610.04405 Cryptography and Security +1610.04407 Combinatorics +1610.04408 Differential Geometry +1610.04414 Geometric Topology +1610.04415 Number Theory +1610.04416 Computation and Language +1610.04421 Networking and Internet Architecture +1610.04424 Algebraic Geometry +1610.04426 Computers and Society +1610.04427 Solar and Stellar Astrophysics +1610.04429 Human-Computer Interaction +1610.04430 Data Structures and Algorithms +1610.04432 Fluid Dynamics +1610.04434 Dynamical Systems +1610.04435 Experiment +1610.04436 Chemical Physics +1610.04437 Materials Science +1610.04438 Algebraic Geometry +1610.04439 Discrete Mathematics +1610.04440 Quantum Gases +1610.04441 Information Theory +1610.04443 +1610.04444 High Energy Astrophysical Phenomena +1610.04447 Theory +1610.04449 Analysis of PDEs +1610.04450 Numerical Analysis +1610.04454 Computer Science and Game Theory +1610.04456 General Physics +1610.04457 Popular Physics +1610.04458 Trading and Market Microstructure +1610.04459 Computers and Society +1610.04460 Computer Vision and Pattern Recognition +1610.04461 Programming Languages +1610.04462 +1610.04464 +1610.04465 Methodology +1610.04466 Fluid Dynamics +1610.04467 Information Theory +1610.04468 General Physics +1610.04470 Biomolecules +1610.04471 Probability +1610.04476 Mesoscale and Nanoscale Physics +1610.04478 Analysis of PDEs +1610.04480 Phenomenology +1610.04482 Numerical Analysis +1610.04483 Networking and Internet Architecture +1610.04484 +1610.04487 Mesoscale and Nanoscale Physics +1610.04488 Classical Analysis and ODEs +1610.04489 Phenomenology +1610.04491 Machine Learning +1610.04493 Distributed, Parallel, and Cluster Computing +1610.04494 Networking and Internet Architecture +1610.04496 +1610.04497 Differential Geometry +1610.04499 Combinatorics +1610.04501 Phenomenology +1610.04502 Optics +1610.04505 Number Theory +1610.04506 General Topology +1610.04511 Materials Science +1610.04512 +1610.04513 Networking and Internet Architecture +1610.04514 Optimization and Control +1610.04517 Materials Science +1610.04518 +1610.04521 Analysis of PDEs +1610.04522 Medical Physics +1610.04523 Computational Complexity +1610.04524 +1610.04525 Theory +1610.04527 Strongly Correlated Electrons +1610.04530 Information Theory +1610.04531 Graphics +1610.04533 Information Retrieval +1610.04534 Geometric Topology +1610.04537 Materials Science +1610.04539 Pattern Formation and Solitons +1610.04542 Computer Vision and Pattern Recognition +1610.04544 Discrete Mathematics +1610.04545 Lattice +1610.04552 Dynamical Systems +1610.04554 Functional Analysis +1610.04555 Mesoscale and Nanoscale Physics +1610.04556 Chemical Physics +1610.04557 Differential Geometry +1610.04558 Algebraic Geometry +1610.04559 Complex Variables +1610.04560 +1610.04564 Theory +1610.04568 Neurons and Cognition +1610.04570 +1610.04571 Representation Theory +1610.04572 Distributed, Parallel, and Cluster Computing +1610.04573 Probability +1610.04574 Machine Learning +1610.04575 Computer Vision and Pattern Recognition +1610.04576 Learning +1610.04577 Databases +1610.04579 Neurons and Cognition +1610.04580 Statistics Theory +1610.04581 Combinatorics +1610.04582 Geometric Topology +1610.04583 Information Theory +1610.04584 Algebraic Geometry +1610.04586 Networking and Internet Architecture +1610.04590 Classical Analysis and ODEs +1610.04592 Logic in Computer Science +1610.04593 Lattice +1610.04594 Software Engineering +1610.04596 Mesoscale and Nanoscale Physics +1610.04597 Data Structures and Algorithms +1610.04599 Learning +1610.04602 Emerging Technologies +1610.04606 Cosmology and Nongalactic Astrophysics +gr-qc/0409082 +gr-qc/0511139 +quant-ph/0610200 +0904.1766 Algebraic Geometry +0907.3779 Mesoscale and Nanoscale Physics +1112.0487 Algebraic Geometry +1211.4115 Representation Theory +1301.1277 Probability +1304.6172 Information Theory +1306.0364 Other Statistics +1307.4553 Functional Analysis +1311.5796 Systems and Control +1401.1704 Adaptation and Self-Organizing Systems +1402.6422 Information Theory +1403.6526 Optimization and Control +1407.0571 Soft Condensed Matter +1408.6911 Computer Vision and Pattern Recognition +1411.0723 Phenomenology +1411.3318 Number Theory +1411.7477 Information Theory +1411.7879 Combinatorics +1412.1529 Cosmology and Nongalactic Astrophysics +1412.4889 Theory +1501.00596 Pattern Formation and Solitons +1501.01123 Differential Geometry +1502.04468 +1503.04957 Software Engineering +1504.02715 +1504.03502 Combinatorics +1504.03534 Optimization and Control +1504.04606 Probability +1505.00616 Quantum Gases +1505.02124 Complex Variables +1505.05656 +1505.05668 Applications +1505.06351 Number Theory +1506.01449 Operating Systems +1506.05031 Mesoscale and Nanoscale Physics +1507.00740 Soft Condensed Matter +1507.02032 Information Theory +1507.03163 Combinatorics +1507.04755 Theory +1507.05350 Optimization and Control +1507.05719 Operator Algebras +1508.01142 Metric Geometry +1508.02122 Classical Analysis and ODEs +1508.02819 Combinatorics +1508.04673 Soft Condensed Matter +1509.01050 Rings and Algebras +1509.03731 Combinatorics +1509.05591 Group Theory +1510.00478 +1510.06823 Optimization and Control +1510.07186 Combinatorics +1510.07539 Rings and Algebras +1510.07733 Pattern Formation and Solitons +1510.08214 +1511.00078 +1511.04644 Analysis of PDEs +1511.05165 Astrophysics of Galaxies +1511.06250 Probability +1511.08013 Algebraic Geometry +1511.08569 Metric Geometry +1512.00562 Astrophysics of Galaxies +1512.04180 Social and Information Networks +1512.04628 Metric Geometry +1512.09324 Theory +1601.03451 Number Theory +1601.07092 +1602.00189 Quantum Gases +1602.00435 Data Structures and Algorithms +1602.02279 Methodology +1602.02851 Combinatorics +1602.03921 Optics +1602.04430 +1602.04661 Combinatorics +1602.06531 Machine Learning +1602.07309 +1602.07684 Cosmology and Nongalactic Astrophysics +1602.07887 Dynamical Systems +1602.08104 +1603.00319 Algebraic Geometry +1603.02530 Theory +1603.03179 Probability +1603.06443 Systems and Control +1603.08000 Phenomenology +1603.09611 Mesoscale and Nanoscale Physics +1604.01503 Instrumentation and Detectors +1604.01864 Materials Science +1604.01924 Experiment +1604.02007 Complex Variables +1604.04062 +1604.07187 Distributed, Parallel, and Cluster Computing +1604.08310 +1604.08413 Theory +1604.08493 +1604.08626 High Energy Astrophysical Phenomena +1605.00747 Soft Condensed Matter +1605.01311 Applications +1605.04404 Strongly Correlated Electrons +1605.05531 Geometric Topology +1605.05982 Soft Condensed Matter +1605.06121 +1605.06856 Databases +1605.06946 Probability +1605.07359 Earth and Planetary Astrophysics +1605.08648 +1606.00273 +1606.00363 Mesoscale and Nanoscale Physics +1606.00429 Optics +1606.01230 Combinatorics +1606.01321 Number Theory +1606.02316 Networking and Internet Architecture +1606.03592 Neurons and Cognition +1606.05520 Classical Analysis and ODEs +1606.06902 High Energy Astrophysical Phenomena +1606.07922 Strongly Correlated Electrons +1606.08915 Strongly Correlated Electrons +1607.00896 Statistics Theory +1607.01621 Algebraic Geometry +1607.02548 Numerical Analysis +1607.02776 Differential Geometry +1607.03592 Computation +1607.04641 High Energy Astrophysical Phenomena +1607.04898 Classical Analysis and ODEs +1607.05999 History and Overview +1607.06588 Optimization and Control +1607.06705 Commutative Algebra +1607.08207 Mesoscale and Nanoscale Physics +1608.00436 Soft Condensed Matter +1608.00903 Subcellular Processes +1608.01627 +1608.01877 Mesoscale and Nanoscale Physics +1608.02258 Rings and Algebras +1608.02391 Materials Science +1608.02737 Differential Geometry +1608.03045 Statistics Theory +1608.03599 Statistical Mechanics +1608.04170 Computer Vision and Pattern Recognition +1608.04187 Computer Vision and Pattern Recognition +1608.04248 Soft Condensed Matter +1608.04308 High Energy Astrophysical Phenomena +1608.04647 Machine Learning +1608.04846 Machine Learning +1608.04915 Fluid Dynamics +1608.05024 Portfolio Management +1608.05074 Strongly Correlated Electrons +1608.05078 Solar and Stellar Astrophysics +1608.05089 +1608.05094 Information Theory +1608.05095 Probability +1608.05097 Cryptography and Security +1608.05098 Information Theory +1608.05102 Information Theory +1608.05103 Group Theory +1608.05104 Computer Vision and Pattern Recognition +1608.05105 Disordered Systems and Neural Networks +1608.05109 Optimization and Control +1608.05110 Geometric Topology +1608.05113 Mesoscale and Nanoscale Physics +1608.05114 Analysis of PDEs +1608.05115 Instrumentation and Methods for Astrophysics +1608.05117 Systems and Control +1608.05123 Earth and Planetary Astrophysics +1608.05125 Exactly Solvable and Integrable Systems +1608.05127 Learning +1608.05129 Computation and Language +1608.05131 Computers and Society +1608.05132 Mesoscale and Nanoscale Physics +1608.05135 +1608.05136 Chemical Physics +1608.05137 Computer Vision and Pattern Recognition +1608.05140 Networking and Internet Architecture +1608.05142 Methodology +1608.05145 Computational Finance +1608.05146 Exactly Solvable and Integrable Systems +1608.05148 Computer Vision and Pattern Recognition +1608.05150 Information Theory +1608.05151 Artificial Intelligence +1608.05152 Learning +1608.05155 +1608.05157 Number Theory +1608.05159 Computer Vision and Pattern Recognition +1608.05160 Logic +1608.05165 Rings and Algebras +1608.05166 Populations and Evolution +1608.05167 Computer Vision and Pattern Recognition +1608.05169 Discrete Mathematics +1608.05171 Mesoscale and Nanoscale Physics +1608.05173 Computation +1608.05174 Distributed, Parallel, and Cluster Computing +1608.05175 Probability +1608.05176 Information Theory +1608.05177 Computer Vision and Pattern Recognition +1608.05183 Optics +1608.05186 Computer Vision and Pattern Recognition +1608.05187 Cryptography and Security +1608.05189 Theory +1608.05190 Solar and Stellar Astrophysics +1608.05191 Earth and Planetary Astrophysics +1608.05192 +1608.05193 Combinatorics +1608.05194 Astrophysics of Galaxies +1608.05195 Chemical Physics +1608.05203 Computer Vision and Pattern Recognition +1608.05204 Computer Vision and Pattern Recognition +1608.05206 Chaotic Dynamics +1608.05209 Computer Vision and Pattern Recognition +1608.05210 Mesoscale and Nanoscale Physics +1608.05215 Materials Science +1608.05217 Probability +1608.05223 +1608.05224 +1608.05225 Learning +1608.05232 Soft Condensed Matter +1608.05235 Discrete Mathematics +1608.05236 Disordered Systems and Neural Networks +1608.05240 Phenomenology +1608.05243 Computation and Language +1608.05245 Atmospheric and Oceanic Physics +1608.05248 Software Engineering +1608.05249 +1608.05251 Earth and Planetary Astrophysics +1608.05254 Medical Physics +1608.05255 Analysis of PDEs +1608.05256 Phenomenology +1608.05258 Machine Learning +1608.05260 General Physics +1608.05261 Solar and Stellar Astrophysics +1608.05262 Astrophysics of Galaxies +1608.05266 Physics and Society +1608.05269 Optimization and Control +1608.05270 Theory +1608.05271 Atmospheric and Oceanic Physics +1608.05272 Computer Science and Game Theory +1608.05273 Systems and Control +1608.05275 Learning +1608.05282 +1608.05283 Strongly Correlated Electrons +1608.05285 Number Theory +1608.05288 Artificial Intelligence +1608.05289 Methodology +1608.05290 Combinatorics +1608.05292 Computation +1608.05296 Phenomenology +1608.05302 Medical Physics +1608.05303 Atomic Physics +1608.05304 Soft Condensed Matter +1608.05305 +1608.05306 Dynamical Systems +1608.05307 Algebraic Topology +1608.05308 Computer Science and Game Theory +1608.05311 Theory +1608.05312 Instrumentation and Methods for Astrophysics +1608.05313 Computational Physics +1608.05314 Category Theory +1608.05317 +1608.05319 Optics +1608.05320 High Energy Astrophysical Phenomena +1608.05321 Complex Variables +1608.05323 Soft Condensed Matter +1608.05324 +1608.05326 +1608.05328 Algebraic Geometry +1608.05329 Astrophysics of Galaxies +1608.05332 Group Theory +1608.05337 Superconductivity +1608.05340 +1608.05342 Astrophysics of Galaxies +1608.05343 Learning +1608.05346 Information Retrieval +1608.05347 Artificial Intelligence +1608.05349 Mesoscale and Nanoscale Physics +1608.05352 Combinatorics +1608.05354 +1608.05356 Cosmology and Nongalactic Astrophysics +1608.05357 Mesoscale and Nanoscale Physics +1608.05358 Computational Complexity +1608.05359 Probability +1608.05364 Biological Physics +1608.05367 Populations and Evolution +1608.05371 Number Theory +1608.05374 Computation and Language +1608.05376 Symbolic Computation +1608.05378 Pricing of Securities +1608.05379 Phenomenology +1608.05380 Information Retrieval +1608.05382 Number Theory +1608.05385 Analysis of PDEs +1608.05386 Atmospheric and Oceanic Physics +1608.05387 Mesoscale and Nanoscale Physics +1608.05388 Mesoscale and Nanoscale Physics +1608.05390 Optimization and Control +1608.05391 Probability +1608.05394 Differential Geometry +1608.05400 Numerical Analysis +1608.05401 Distributed, Parallel, and Cluster Computing +1608.05403 Solar and Stellar Astrophysics +cond-mat/0208081 Disordered Systems and Neural Networks +cond-mat/0402010 Disordered Systems and Neural Networks +quant-ph/0105057 +0802.0955 Analysis of PDEs +0907.0397 Analysis of PDEs +0908.2107 Functional Analysis +1002.4374 Algebraic Geometry +1109.4281 Probability +1201.1732 +1201.2483 Information Theory +1201.3137 Probability +1201.5163 Theory +1208.1229 Algebraic Geometry +1208.2983 Representation Theory +1212.3511 Algebraic Geometry +1302.2192 Materials Science +1308.2525 Algebraic Geometry +1309.0705 Probability +1310.3864 Probability +1403.4877 Analysis of PDEs +1403.5779 Analysis of PDEs +1403.6242 Analysis of PDEs +1403.6972 Commutative Algebra +1404.3924 Algebraic Geometry +1404.4009 Applications +1405.0502 Functional Analysis +1408.0475 Probability +1408.3722 Soft Condensed Matter +1408.4996 Differential Geometry +1409.6084 Analysis of PDEs +1409.7485 Algebraic Geometry +1410.3368 Geometric Topology +1411.2332 Algebraic Geometry +1412.2171 Geometric Topology +1501.00942 +1501.04250 +1501.04793 Probability +1502.01595 Cosmology and Nongalactic Astrophysics +1502.06923 Algebraic Geometry +1502.07110 Molecular Networks +1503.05023 Functional Analysis +1504.08056 Geometric Topology +1504.08214 Algebraic Geometry +1505.04163 Algebraic Geometry +1506.05675 Analysis of PDEs +1506.06317 Number Theory +1506.06722 Computation +1506.08032 +1507.00399 Differential Geometry +1507.01110 Differential Geometry +1507.06728 Representation Theory +1507.08044 Numerical Analysis +1508.01902 Statistics Theory +1508.04924 Learning +1510.00595 +1510.04130 Machine Learning +1510.05818 Number Theory +1510.07715 Geometric Topology +1511.00731 Combinatorics +1511.02696 Populations and Evolution +1511.04491 Computer Vision and Pattern Recognition +1511.04587 Computer Vision and Pattern Recognition +1511.06551 +1511.06705 Combinatorics +1511.07221 Number Theory +1511.08332 Phenomenology +1512.00370 Probability +1512.01299 Number Theory +1512.02745 Geometric Topology +1512.05502 Number Theory +1512.05558 Software Engineering +1512.06008 Strongly Correlated Electrons +1512.06496 +1512.06962 Spectral Theory +1601.00528 Theory +1601.03074 Tissues and Organs +1601.03183 Functional Analysis +1601.04802 Logic in Computer Science +1601.07491 Mesoscale and Nanoscale Physics +1601.08159 Chemical Physics +1602.04842 Group Theory +1602.05012 Machine Learning +1602.05449 Materials Science +1602.05775 Materials Science +1602.06158 Optics +1602.08384 Quantum Gases +1603.00416 Algebraic Geometry +1603.01401 Quantum Gases +1603.03205 Combinatorics +1603.06396 Phenomenology +1603.08992 Solar and Stellar Astrophysics +1603.09308 Chemical Physics +1604.00855 Mesoscale and Nanoscale Physics +1604.02060 Quantum Gases +1604.04221 Theory +1604.04930 Analysis of PDEs +1604.05069 Complex Variables +1604.05595 Theory +1604.05834 +1604.06311 +1604.07254 Classical Physics +1604.08905 Theory +1605.00327 Classical Physics +1605.01624 Statistical Mechanics +1605.01710 Computer Vision and Pattern Recognition +1605.02042 Metric Geometry +1605.03804 Computer Vision and Pattern Recognition +1605.05341 +1605.05653 Quantum Gases +1605.05788 +1605.07956 Cryptography and Security +1605.08910 Quantum Gases +1605.09208 Experiment +1606.01061 Analysis of PDEs +1606.02816 Sound +1606.02840 Neurons and Cognition +1606.03515 Astrophysics of Galaxies +1606.03874 Cosmology and Nongalactic Astrophysics +1606.04130 Learning +1606.05735 Learning +1606.05996 Spectral Theory +1606.09000 Computational Complexity +1606.09061 Probability +1607.00108 Quantum Gases +1607.03210 Phenomenology +1607.05626 Data Structures and Algorithms +1607.06743 Quantum Gases +1607.07100 Strongly Correlated Electrons +1608.01093 Artificial Intelligence +1608.02198 Learning +1608.02558 Classical Analysis and ODEs +1608.03005 High Energy Astrophysical Phenomena +1608.03575 +1608.04912 Theory +1608.05370 Phenomenology +1608.05566 Statistical Mechanics +1608.06134 Computation and Language +1608.06198 +1608.07143 Mesoscale and Nanoscale Physics +1608.07418 +1609.00394 Optics +1609.00623 Soft Condensed Matter +1609.01025 Statistics Theory +1609.01286 +1609.03012 Number Theory +1609.03570 Theory +1609.03574 Phenomenology +1609.05228 Artificial Intelligence +1609.05771 Medical Physics +1610.00053 Neural and Evolutionary Computing +1610.00117 Combinatorics +1610.00359 Statistical Mechanics +1610.00492 Physics Education +1610.02008 Classical Analysis and ODEs +1610.03210 Instrumentation and Detectors +1610.04128 Algebraic Geometry +1610.05260 +1610.05271 Analysis of PDEs +1610.05335 Dynamical Systems +1610.05712 Computer Vision and Pattern Recognition +1610.06027 Formal Languages and Automata Theory +1610.06654 Functional Analysis +1610.06995 Information Theory +1610.07409 Geometric Topology +1610.07611 Quantum Gases +1610.07666 Mesoscale and Nanoscale Physics +1610.07751 +1610.07757 Mesoscale and Nanoscale Physics +1610.09009 Representation Theory +1610.09010 Representation Theory +1610.09026 Digital Libraries +1610.09285 Differential Geometry +1610.09928 Phenomenology +1611.00116 Instrumentation and Methods for Astrophysics +1611.00131 +1611.00204 +1611.01141 Information Theory +1611.01418 Materials Science +1611.01457 Learning +1611.01515 Mesoscale and Nanoscale Physics +1611.01541 Machine Learning +1611.01823 Computational Complexity +1611.01873 Discrete Mathematics +1611.01879 Data Structures and Algorithms +1611.01911 Social and Information Networks +1611.02016 Biological Physics +1611.02101 Machine Learning +1611.02108 Logic in Computer Science +1611.02166 +1611.02258 Machine Learning +1611.02269 Theory +1611.02520 Optics +1611.02526 Earth and Planetary Astrophysics +1611.02541 Computational Geometry +1611.02588 Computation and Language +1611.02590 Computation and Language +1611.02643 Superconductivity +1611.02704 Phenomenology +1611.02956 Computation and Language +1611.03120 Mesoscale and Nanoscale Physics +1611.03225 Data Structures and Algorithms +1611.03360 Materials Science +1611.03389 +1611.03477 Sound +1611.03486 Solar and Stellar Astrophysics +1611.03488 Tissues and Organs +1611.03497 Astrophysics of Galaxies +1611.03502 Phenomenology +1611.03503 High Energy Astrophysical Phenomena +1611.03505 +1611.03506 +1611.03513 Geometric Topology +1611.03514 Dynamical Systems +1611.03515 Mesoscale and Nanoscale Physics +1611.03516 Earth and Planetary Astrophysics +1611.03518 Analysis of PDEs +1611.03519 Materials Science +1611.03520 Chemical Physics +1611.03523 +1611.03525 Theory +1611.03526 Mesoscale and Nanoscale Physics +1611.03527 Medical Physics +1611.03528 Statistical Mechanics +1611.03529 Optics +1611.03531 Machine Learning +1611.03532 Analysis of PDEs +1611.03533 Computation and Language +1611.03535 Combinatorics +1611.03536 Experiment +1611.03537 Optimization and Control +1611.03538 Robotics +1611.03539 +1611.03540 Dynamical Systems +1611.03541 Materials Science +1611.03543 Databases +1611.03544 Optics +1611.03547 Classical Analysis and ODEs +1611.03548 Instrumentation and Detectors +1611.03549 Analysis of PDEs +1611.03552 Fluid Dynamics +1611.03553 Learning +1611.03556 Optics +1611.03557 Rings and Algebras +1611.03558 Computation and Language +1611.03559 Geophysics +1611.03564 Differential Geometry +1611.03565 Experiment +1611.03567 Optimization and Control +1611.03571 Number Theory +1611.03572 Representation Theory +1611.03574 Geometric Topology +1611.03575 Probability +1611.03578 Machine Learning +1611.03579 Data Structures and Algorithms +1611.03580 Analysis of PDEs +1611.03581 Analysis of PDEs +1611.03582 Mesoscale and Nanoscale Physics +1611.03583 Combinatorics +1611.03584 Analysis of PDEs +1611.03585 Instrumentation and Detectors +1611.03586 Disordered Systems and Neural Networks +1611.03589 Computer Vision and Pattern Recognition +1611.03590 Cosmology and Nongalactic Astrophysics +1611.03591 Computer Vision and Pattern Recognition +1611.03592 Systems and Control +1611.03593 Solar and Stellar Astrophysics +1611.03594 Differential Geometry +1611.03595 Materials Science +1611.03599 Computation and Language +1611.03600 Probability +1611.03601 Algebraic Geometry +1611.03603 Superconductivity +1611.03604 +1611.03605 Neurons and Cognition +1611.03606 Materials Science +1611.03607 Computer Vision and Pattern Recognition +1611.03608 Learning +1611.03609 Neurons and Cognition +1611.03611 Strongly Correlated Electrons +1611.03613 Cosmology and Nongalactic Astrophysics +1611.03614 Strongly Correlated Electrons +1611.03615 Other Condensed Matter +1611.03616 Computers and Society +1611.03618 Computers and Society +1611.03619 Cosmology and Nongalactic Astrophysics +1611.03620 Superconductivity +1611.03621 Superconductivity +1611.03624 Discrete Mathematics +1611.03625 Classical Analysis and ODEs +1611.03626 High Energy Astrophysical Phenomena +1611.03631 Robotics +1611.03634 Differential Geometry +1611.03635 Phenomenology +1611.03636 Probability +1611.03637 Biological Physics +1611.03639 Probability +1611.03644 Algebraic Topology +1611.03646 Applications +1611.03651 Phenomenology +1611.03652 Artificial Intelligence +1611.03653 Phenomenology +1611.03655 Information Theory +1611.03656 Logic in Computer Science +1611.03657 High Energy Astrophysical Phenomena +1611.03663 Functional Analysis +1611.03665 Methodology +1611.03666 Graphics +1611.03668 +1611.03669 Algebraic Geometry +1611.03671 Combinatorics +1611.03674 Probability +1611.03675 Phenomenology +1611.03676 Analysis of PDEs +1611.03677 Graphics +1611.03679 Computer Vision and Pattern Recognition +1611.03680 Databases +1611.03681 Optimization and Control +1611.03682 +1611.03684 Phenomenology +1611.03685 Algebraic Geometry +1611.03692 Classical Analysis and ODEs +1611.03693 Strongly Correlated Electrons +1611.03694 Analysis of PDEs +1611.03695 Soft Condensed Matter +1611.03697 Algebraic Geometry +1611.03698 Neurons and Cognition +1611.03699 Information Theory +1611.03700 Numerical Analysis +1611.03701 Atomic Physics +1611.03702 Theory +1611.03706 Solar and Stellar Astrophysics +1611.03710 Phenomenology +1611.03712 Phenomenology +1611.03713 Strongly Correlated Electrons +1611.03715 Other Computer Science +1611.03716 +1611.03717 +1611.03721 Information Theory +1611.03724 Superconductivity +1611.03725 Computational Engineering, Finance, and Science +1611.03727 +1611.03730 Commutative Algebra +1611.03731 Analysis of PDEs +1611.03732 +1611.03733 Astrophysics of Galaxies +1611.03735 High Energy Astrophysical Phenomena +1611.03736 Databases +1611.03737 Instrumentation and Detectors +1611.03738 Optimization and Control +1611.03739 Computational Complexity +1611.03740 General Finance +1611.03741 Soft Condensed Matter +1611.03742 Differential Geometry +1611.03743 +1611.03745 Data Structures and Algorithms +1611.03746 +1611.03747 Chemical Physics +1611.03749 Computer Vision and Pattern Recognition +1611.03752 +1611.03753 Astrophysics of Galaxies +1611.03755 Numerical Analysis +1611.03756 Analysis of PDEs +1611.03758 Fluid Dynamics +1611.03759 Group Theory +1611.03761 Soft Condensed Matter +1611.03763 Phenomenology +1611.03764 Geometric Topology +1611.03765 Systems and Control +1611.03766 Combinatorics +1611.03768 Optimization and Control +1611.03770 Dynamical Systems +1611.03771 Adaptation and Self-Organizing Systems +1611.03772 Functional Analysis +1611.03774 +1611.03775 Earth and Planetary Astrophysics +1611.03777 Learning +1611.03778 Plasma Physics +1611.03779 Strongly Correlated Electrons +1611.03780 Social and Information Networks +1611.03781 K-Theory and Homology +1611.03782 Risk Management +1611.03784 Dynamical Systems +1611.03785 Mesoscale and Nanoscale Physics +1611.03786 Computers and Society +1611.03787 Applications +1611.03790 +1611.03791 Functional Analysis +1611.03794 +1611.03795 Optics +1611.03796 Information Theory +1611.03801 Mesoscale and Nanoscale Physics +1611.03802 Lattice +1611.03804 Number Theory +1611.03806 History and Overview +1611.03807 +1611.03810 Accelerator Physics +1611.03811 Cryptography and Security +1611.03812 +1611.03814 Cryptography and Security +1611.03815 Phenomenology +1611.03818 Other Quantitative Biology +1611.03820 Theory +1611.03822 Phenomenology +1611.03823 Combinatorics +1611.03825 Experiment +1611.03826 +1611.03827 Phenomenology +1611.03829 Astrophysics of Galaxies +1611.03830 Soft Condensed Matter +1611.03831 Theory +1611.03832 Methodology +1611.03833 +1611.03834 Fluid Dynamics +1611.03835 Methodology +1611.03836 Representation Theory +1611.03839 Logic +1611.03841 Computer Science and Game Theory +1611.03842 Mesoscale and Nanoscale Physics +1611.03843 Theory +1611.03844 Experiment +1611.03845 Geometric Topology +1611.03853 +math/0605089 Probability +0705.0491 Analysis of PDEs +0803.4377 +0804.4819 Data Structures and Algorithms +0806.0778 Analysis of PDEs +0806.2779 Combinatorics +0807.2280 Analysis of PDEs +0902.4366 Number Theory +1007.1875 +1009.2735 +1011.6256 Statistics Theory +1101.1112 Rings and Algebras +1106.1445 +1203.3609 Algebraic Geometry +1205.5172 Complex Variables +1206.2865 Algebraic Geometry +1206.5366 Analysis of PDEs +1207.0330 Functional Analysis +1207.5188 Dynamical Systems +1302.6930 Algebraic Geometry +1304.0634 Algebraic Geometry +1305.1291 General Physics +1306.1720 Probability +1307.2652 Functional Analysis +1307.6428 Analysis of PDEs +1309.0911 Methodology +1309.1244 Classical Analysis and ODEs +1309.3746 +1310.7843 Rings and Algebras +1312.6411 Algebraic Geometry +1401.4206 Dynamical Systems +1402.2930 Algebraic Geometry +1402.3606 Computer Science and Game Theory +1402.6605 Analysis of PDEs +1403.0505 Optimization and Control +1404.0397 Classical Analysis and ODEs +1404.0641 Earth and Planetary Astrophysics +1404.2411 Probability +1405.1174 +1405.1784 Analysis of PDEs +1406.5743 Classical Analysis and ODEs +1407.4145 Spectral Theory +1409.1889 Systems and Control +1409.3231 +1409.4204 Algebraic Geometry +1409.5302 Tissues and Organs +1409.5873 Geometric Topology +1409.6506 Algebraic Geometry +1410.2878 Soft Condensed Matter +1410.6458 Algebraic Topology +1411.2217 Functional Analysis +1411.4271 Information Theory +1411.6411 +1412.0182 Optics +1412.0602 Analysis of PDEs +1412.0722 Geophysics +1412.1895 Theory +1412.3496 +1412.5125 +1412.5666 Combinatorics +1501.01407 +1501.02356 Classical Analysis and ODEs +1501.02592 Neural and Evolutionary Computing +1501.03394 Classical Analysis and ODEs +1501.04194 Complex Variables +1501.05023 Dynamical Systems +1501.06925 Commutative Algebra +1502.01739 Disordered Systems and Neural Networks +1502.05045 Cosmology and Nongalactic Astrophysics +1502.05289 Differential Geometry +1503.00766 Classical Analysis and ODEs +1503.06140 Theory +1503.07784 Mesoscale and Nanoscale Physics +1504.00580 +1504.02199 Strongly Correlated Electrons +1504.04623 Cosmology and Nongalactic Astrophysics +1504.06106 Classical Analysis and ODEs +1504.07165 Combinatorics +1504.07599 Numerical Analysis +1504.07780 Mesoscale and Nanoscale Physics +1505.01553 Dynamical Systems +1505.02510 Information Theory +1505.02583 Theory +1505.03033 Spectral Theory +1505.03380 Mesoscale and Nanoscale Physics +1505.03962 Combinatorics +1505.05259 Networking and Internet Architecture +1505.05604 Chemical Physics +1505.05830 General Physics +1506.00362 Algebraic Geometry +1506.01250 Analysis of PDEs +1506.01355 Information Theory +1506.03116 Phenomenology +1506.04632 Atomic Physics +1506.05966 Geometric Topology +1506.05998 Algebraic Topology +1506.08691 Computational Engineering, Finance, and Science +1506.09173 Experiment +1507.00368 Neurons and Cognition +1507.00433 Methodology +1507.01019 Cosmology and Nongalactic Astrophysics +1507.03299 Analysis of PDEs +1507.03898 Mesoscale and Nanoscale Physics +1507.05979 +1507.06945 Probability +1507.06963 Optimization and Control +1507.07425 Fluid Dynamics +1507.07869 Phenomenology +1507.07970 History and Overview +1507.08896 +1508.00315 Optimization and Control +1508.00464 Probability +1508.00472 Quantum Gases +1508.00588 Superconductivity +1508.01548 Logic +1508.01732 +1508.03007 Algebraic Geometry +1508.03417 Differential Geometry +1508.05605 Materials Science +1508.06187 Number Theory +1508.06734 +1508.06838 Statistical Mechanics +1509.00227 Atomic Physics +1509.01543 Analysis of PDEs +1509.03260 Classical Analysis and ODEs +1509.03274 Algebraic Geometry +1509.03758 Combinatorics +1509.05228 Algebraic Geometry +1509.05537 +1509.05928 Analysis of PDEs +1510.02334 Quantum Gases +1510.05656 Astrophysics of Galaxies +1510.05821 Experiment +1510.05918 Populations and Evolution +1510.06039 Phenomenology +1510.08181 Numerical Analysis +1510.08678 Statistical Mechanics +1510.08693 Phenomenology +1511.01271 Soft Condensed Matter +1511.01829 Phenomenology +1511.03522 Mesoscale and Nanoscale Physics +1511.04323 Quantum Gases +1511.05980 Experiment +1511.06621 +1511.07958 Mesoscale and Nanoscale Physics +1511.08484 Complex Variables +1511.08711 Analysis of PDEs +1512.01739 Algebraic Geometry +1512.02505 Data Structures and Algorithms +1512.02814 Numerical Analysis +1512.03401 Optimization and Control +1512.04594 Statistics Theory +1512.05401 Phenomenology +1512.06020 Disordered Systems and Neural Networks +1512.07458 Theory +1512.07508 Optics +1512.08530 Theory +1512.08568 Soft Condensed Matter +1512.09139 +1601.00372 Computation and Language +1601.02180 Theory +1601.02652 Soft Condensed Matter +1601.03128 Computer Vision and Pattern Recognition +1601.04588 Molecular Networks +1601.04630 Mesoscale and Nanoscale Physics +1601.05159 Group Theory +1601.06939 Data Structures and Algorithms +1601.07031 Theory +1601.07462 Phenomenology +1602.00320 Mesoscale and Nanoscale Physics +1602.01768 Numerical Analysis +1602.03524 Astrophysics of Galaxies +1602.04538 Solar and Stellar Astrophysics +1602.06004 +1602.08467 General Finance +1603.00307 Software Engineering +1603.00370 Computer Vision and Pattern Recognition +1603.02317 Systems and Control +1603.02385 Metric Geometry +1603.03083 Optimization and Control +1603.03259 Combinatorics +1603.03457 +1603.04330 Data Structures and Algorithms +1603.04380 Data Structures and Algorithms +1603.04722 Astrophysics of Galaxies +1603.05043 General Mathematics +1603.05256 Phenomenology +1603.05324 Statistics Theory +1603.05326 Optics +1603.05351 Mesoscale and Nanoscale Physics +1603.05611 Quantum Gases +1603.06345 Materials Science +1603.06354 Phenomenology +1603.06404 +1603.06475 Fluid Dynamics +1603.06545 Differential Geometry +1603.06572 Instrumentation and Detectors +1603.06737 Probability +1603.06738 Analysis of PDEs +1603.06877 Information Theory +1603.06940 Optics +1603.06941 Subcellular Processes +1603.06955 Cosmology and Nongalactic Astrophysics +1603.06957 Geometric Topology +1603.06960 Optics +1603.06964 Combinatorics +1603.06967 Combinatorics +1603.06972 Computational Geometry +1603.06976 Combinatorics +1603.06977 Superconductivity +1603.06979 Operator Algebras +1603.06985 +1603.06988 Methodology +1603.06990 Instrumentation and Detectors +1603.06991 Algebraic Geometry +1603.06992 +1603.06994 Differential Geometry +1603.06998 Numerical Analysis +1603.06999 Numerical Analysis +1603.07002 Functional Analysis +1603.07005 Differential Geometry +1603.07006 Combinatorics +1603.07007 Information Theory +1603.07010 Information Theory +1603.07011 Graphics +1603.07014 Mesoscale and Nanoscale Physics +1603.07022 Computer Vision and Pattern Recognition +1603.07023 Rings and Algebras +1603.07026 Symplectic Geometry +1603.07028 Materials Science +1603.07031 Information Theory +1603.07033 Classical Analysis and ODEs +1603.07035 Number Theory +1603.07036 +1603.07039 Differential Geometry +1603.07041 Methodology +1603.07044 Computation and Language +1603.07046 Computational Complexity +1603.07053 Phenomenology +1603.07056 Combinatorics +1603.07059 Operator Algebras +1603.07061 Differential Geometry +1603.07063 Computer Vision and Pattern Recognition +1603.07064 Distributed, Parallel, and Cluster Computing +1603.07066 Methodology +1603.07070 Optimization and Control +1603.07072 Information Theory +1603.07073 Functional Analysis +1603.07077 Computational Geometry +1603.07079 Number Theory +1603.07080 Networking and Internet Architecture +1603.07081 +1603.07082 Quantitative Methods +1603.07085 Phenomenology +1603.07086 Cryptography and Security +1603.07089 Analysis of PDEs +1603.07094 Machine Learning +1603.07098 Theory +1603.07099 Numerical Analysis +1603.07102 Statistical Mechanics +1603.07104 Analysis of PDEs +1603.07105 Solar and Stellar Astrophysics +1603.07106 Soft Condensed Matter +1603.07112 Earth and Planetary Astrophysics +1603.07113 Complex Variables +1603.07114 Soft Condensed Matter +1603.07116 Complex Variables +1603.07123 Computer Vision and Pattern Recognition +1603.07124 Fluid Dynamics +1603.07125 Quantum Algebra +1603.07126 Soft Condensed Matter +1603.07127 Functional Analysis +1603.07131 Dynamical Systems +1603.07132 Soft Condensed Matter +1603.07133 Optimization and Control +1603.07135 Information Theory +1603.07139 Algebraic Geometry +1603.07141 Computer Vision and Pattern Recognition +1603.07144 Soft Condensed Matter +1603.07147 Soft Condensed Matter +1603.07149 Soft Condensed Matter +1603.07150 Digital Libraries +1603.07152 Soft Condensed Matter +1603.07154 Combinatorics +1603.07156 General Physics +1603.07158 Analysis of PDEs +1603.07160 +1603.07164 Dynamical Systems +1603.07168 Discrete Mathematics +1603.07169 Instrumentation and Detectors +1603.07170 Classical Analysis and ODEs +1603.07173 Sound +1603.07175 Analysis of PDEs +1603.07178 Chemical Physics +1603.07182 Biological Physics +1603.07185 Computation and Language +1603.07186 Optics +1603.07187 Group Theory +1603.07190 Phenomenology +1603.07191 Astrophysics of Galaxies +1603.07192 Analysis of PDEs +1603.07193 Quantum Algebra +1603.07194 Optics +1603.07195 Optimization and Control +1603.07197 Geometric Topology +1603.07198 Instrumentation and Detectors +1603.07201 Probability +1603.07211 Neurons and Cognition +1603.07213 Analysis of PDEs +1603.07215 Discrete Mathematics +1603.07216 Complex Variables +1603.07217 Formal Languages and Automata Theory +1603.07218 Logic in Computer Science +1603.07222 Probability +1603.07225 Computational Finance +1603.07226 Representation Theory +1603.07230 Classical Analysis and ODEs +1603.07234 Computer Vision and Pattern Recognition +1603.07237 Statistics Theory +1603.07239 Numerical Analysis +1603.07241 Analysis of PDEs +1603.07242 Chemical Physics +1603.07243 Discrete Mathematics +1603.07245 High Energy Astrophysical Phenomena +1603.07246 Phenomenology +1603.07249 Neural and Evolutionary Computing +1603.07251 Probability +1603.07254 Computer Vision and Pattern Recognition +1603.07261 Classical Analysis and ODEs +1603.07262 +1603.07269 Computational Geometry +1603.07275 Chemical Physics +1603.07276 Systems and Control +1603.07277 Methodology +1603.07279 Applications +1603.07280 Analysis of PDEs +1603.07282 Computational Geometry +1603.07285 Machine Learning +1603.07292 Learning +1603.07298 Complex Variables +1603.07300 Earth and Planetary Astrophysics +1603.07304 Robotics +1603.07310 Functional Analysis +1603.07311 Theory +1603.07313 Digital Libraries +1603.07315 Strongly Correlated Electrons +1603.07316 Information Theory +1603.07319 Computer Science and Game Theory +1603.07320 Probability +math/0701148 Analysis of PDEs +physics/0607056 General Physics +physics/0611099 Classical Physics +0909.0710 History and Overview +1003.2662 Instrumentation and Detectors +1004.4270 General Physics +1005.2654 Logic +1008.0225 Logic +1012.4305 Instrumentation and Detectors +1107.2083 Phenomenology +1107.5757 Soft Condensed Matter +1110.1848 Logic +1112.0826 Learning +1112.1163 Algebraic Geometry +1112.5671 Software Engineering +1202.1856 Geometric Topology +1203.6065 Quantum Gases +1211.2999 Strongly Correlated Electrons +1211.7308 Logic +1212.2797 +1212.3667 +1303.0730 Logic +1304.7535 General Finance +1306.4994 Statistical Finance +1306.5446 Probability +1309.7088 Complex Variables +1310.7888 Analysis of PDEs +1311.3999 Analysis of PDEs +1312.2055 Statistical Mechanics +1312.4227 Pricing of Securities +1312.4644 Physics and Society +1312.4994 Algebraic Topology +1312.5975 +1312.5998 Theory +1401.0345 Analysis of PDEs +1401.4718 Methodology +1401.5798 Quantum Gases +1402.0190 Theory +1402.5979 Multimedia +1404.0751 Machine Learning +1404.4178 Methodology +1404.4790 Analysis of PDEs +1404.7408 Probability +1406.3408 Functional Analysis +1406.3476 Algebraic Topology +1407.2742 Physics and Society +1407.4066 Combinatorics +1407.6796 Number Theory +1408.5760 Analysis of PDEs +1409.6899 Algebraic Geometry +1409.8188 Quantum Algebra +1410.1396 Analysis of PDEs +1410.5527 Numerical Analysis +1412.8096 +1501.01394 Theory +1501.04681 Differential Geometry +1501.07880 Classical Analysis and ODEs +1502.00447 Data Structures and Algorithms +1503.04326 Number Theory +1503.05865 Combinatorics +1503.06463 Number Theory +1503.07177 Complex Variables +1503.08395 Learning +1504.01227 Statistics Theory +1504.03052 Geometric Topology +1504.05159 Formal Languages and Automata Theory +1504.05549 Number Theory +1505.06052 Numerical Analysis +1506.00334 Differential Geometry +1506.01726 Geometric Topology +1506.02727 Dynamical Systems +1506.02790 Logic +1506.05830 Applications +1506.07912 Quantum Algebra +1507.00947 Quantitative Methods +1507.02318 Data Structures and Algorithms +1507.04344 Theory +1507.04545 Probability +1507.07214 General Finance +1507.07544 Statistical Mechanics +1508.02652 Analysis of PDEs +1508.02843 Representation Theory +1508.03158 Probability +1508.03397 Analysis of PDEs +1508.05564 Quantum Gases +1508.06049 Representation Theory +1508.06639 Materials Science +1508.07891 Trading and Market Microstructure +1509.01173 Machine Learning +1509.01852 Discrete Mathematics +1509.03059 Algebraic Geometry +1509.04900 Dynamical Systems +1510.01811 Applications +1510.02808 Portfolio Management +1510.03943 Probability +1510.04850 Machine Learning +1510.07041 Theory +1510.07376 Methodology +1511.00505 Chaotic Dynamics +1511.01240 Dynamical Systems +1511.02616 Strongly Correlated Electrons +1511.03174 Sound +1511.05820 General Physics +1511.07108 Theory +1511.08739 Computational Physics +1511.09194 Dynamical Systems +1511.09425 +1512.00319 Statistics Theory +1512.00420 Logic +1512.00439 +1512.01194 Fluid Dynamics +1512.01514 Rings and Algebras +1512.01828 +1512.02368 Analysis of PDEs +1512.02781 +1512.02807 Numerical Analysis +1512.04205 Computer Vision and Pattern Recognition +1512.05744 Differential Geometry +1512.06112 Combinatorics +1512.06281 Spectral Theory +1512.06565 +1512.06935 Number Theory +1512.07568 Methodology +1512.07612 +1512.07790 Numerical Analysis +1512.08236 Theory +1512.09072 Algebraic Geometry +1601.00057 Theory +1601.01834 Optics +1601.02557 Computation +1601.03512 Functional Analysis +1601.05066 Geometric Topology +1601.06064 Probability +1601.07592 Optimization and Control +1601.08122 +1601.08225 +1602.00133 Machine Learning +1602.00727 Probability +1602.01119 +1602.01365 Logic in Computer Science +1602.03391 Materials Science +1602.03442 Machine Learning +1602.03520 Theory +1602.04130 Group Theory +1602.04973 Plasma Physics +1602.05337 Dynamical Systems +1602.08786 Algebraic Geometry +1602.08879 Combinatorics +1602.09133 +1603.00145 Social and Information Networks +1603.00565 History and Overview +1603.01008 Algebraic Geometry +1603.01876 Performance +1603.02517 Strongly Correlated Electrons +1603.04179 Sound +1603.06603 Symplectic Geometry +1603.08281 Complex Variables +1603.08562 Combinatorics +1603.09587 Probability +1604.00288 Analysis of PDEs +1604.00635 Information Theory +1604.02767 Materials Science +1604.03138 Algebraic Topology +1604.03390 Computer Vision and Pattern Recognition +1604.04190 Mesoscale and Nanoscale Physics +1604.04266 Numerical Analysis +1604.05085 Artificial Intelligence +1604.05991 Information Theory +1604.06555 Analysis of PDEs +1604.07149 Differential Geometry +1604.07243 Learning +1604.07334 Materials Science +1604.07476 Computational Geometry +1604.07786 Analysis of PDEs +1604.07884 Information Theory +1604.08105 General Physics +1605.01233 Information Theory +1605.02004 Strongly Correlated Electrons +1605.02052 Strongly Correlated Electrons +1605.03020 Geometric Topology +1605.04618 Plasma Physics +1605.05775 Machine Learning +1605.07039 Probability +1605.07407 Strongly Correlated Electrons +1605.07878 Geometric Topology +1605.08067 High Energy Astrophysical Phenomena +1605.08445 Quantum Gases +1605.08826 +1606.00239 Geometric Topology +1606.00594 +1606.01173 Optics +1606.01315 Molecular Networks +1606.01696 Quantitative Methods +1606.01806 Probability +1606.02181 Experiment +1606.02370 Combinatorics +1606.03042 Phenomenology +1606.03937 Quantum Gases +1606.03969 Strongly Correlated Electrons +1606.04315 +1606.04406 Methodology +1606.04596 Computation and Language +1606.05433 Computer Vision and Pattern Recognition +1606.05790 Mathematical Software +1606.05794 Distributed, Parallel, and Cluster Computing +1606.05797 Databases +1606.07085 Databases +1606.07847 Biological Physics +1606.07927 Combinatorics +1606.08029 Algebraic Geometry +1606.08452 Mesoscale and Nanoscale Physics +1606.08482 Strongly Correlated Electrons +1606.08575 +1606.09264 Computer Vision and Pattern Recognition +1606.09319 Theory +1607.00793 Theory +1607.01004 Combinatorics +1607.01275 Statistical Mechanics +1607.01345 Information Theory +1607.02633 Applications +1607.02722 Materials Science +1607.02982 Distributed, Parallel, and Cluster Computing +1607.03129 Theory +1607.03364 +1607.03561 Experiment +1607.04090 Logic +1607.04268 Mesoscale and Nanoscale Physics +1607.05483 Analysis of PDEs +1607.05914 Materials Science +1607.06388 Geometric Topology +1607.06531 Classical Analysis and ODEs +1607.06541 Distributed, Parallel, and Cluster Computing +1607.06543 Distributed, Parallel, and Cluster Computing +1607.06568 Soft Condensed Matter +1607.06757 Data Structures and Algorithms +1607.07126 +1607.08228 Programming Languages +1607.08582 Phenomenology +1607.08861 Superconductivity +1608.00156 Classical Analysis and ODEs +1608.01091 Disordered Systems and Neural Networks +1608.01109 Instrumentation and Detectors +1608.01576 Numerical Analysis +1608.01664 Statistical Mechanics +1608.02705 +1608.02911 Networking and Internet Architecture +1608.02928 Strongly Correlated Electrons +1608.03264 Statistical Mechanics +1608.03502 Astrophysics of Galaxies +1608.03612 Soft Condensed Matter +1608.03675 +1608.03830 +1608.04002 Networking and Internet Architecture +1608.04012 Symplectic Geometry +1608.04041 Mathematical Software +1608.04270 Metric Geometry +1608.04527 Mesoscale and Nanoscale Physics +1608.04995 Dynamical Systems +1608.05182 Learning +1608.05297 Strongly Correlated Electrons +1608.05572 Atomic and Molecular Clusters +1608.06060 Plasma Physics +1608.06281 Instrumentation and Methods for Astrophysics +1608.06846 History and Overview +1608.07321 Atomic Physics +1608.07386 Soft Condensed Matter +1608.07907 Phenomenology +1608.07917 Algebraic Geometry +1608.08131 Phenomenology +1608.08157 Optics +1608.08614 Computer Vision and Pattern Recognition +1608.08650 High Energy Astrophysical Phenomena +1609.00363 Quantum Gases +1609.00512 Data Structures and Algorithms +1609.00703 Pattern Formation and Solitons +1609.01012 Accelerator Physics +1609.01258 Theory +1609.02288 Information Theory +1609.02335 Quantum Gases +1609.02927 High Energy Astrophysical Phenomena +1609.03061 Plasma Physics +1609.03598 Atomic Physics +1609.03607 Instrumentation and Detectors +1609.04741 Robotics +1609.05104 Sound +1609.05110 Data Structures and Algorithms +1609.06723 Theory +1609.07116 Theory +1609.07203 Mesoscale and Nanoscale Physics +1609.07352 Probability +1609.07545 Databases +1609.07548 Databases +1609.07977 Chaotic Dynamics +1609.08439 Artificial Intelligence +1609.08642 Databases +1609.09224 Distributed, Parallel, and Cluster Computing +1609.09291 Information Theory +1609.09859 Mesoscale and Nanoscale Physics +1610.00521 Other Condensed Matter +1610.00530 Statistical Mechanics +1610.00995 Optics +1610.02377 Robotics +1610.02472 +1610.02777 Phenomenology +1610.03429 Computational Physics +1610.03710 Materials Science +1610.03847 Fluid Dynamics +1610.03972 Combinatorics +1610.03998 Dynamical Systems +1610.04941 Solar and Stellar Astrophysics +1610.05330 Theory +1610.07881 Geophysics +1610.08156 Rings and Algebras +1610.08515 Astrophysics of Galaxies +1610.08543 Computational Geometry +1610.08812 Optics +1610.09064 Artificial Intelligence +1610.09198 Complex Variables +1610.09249 Analysis of PDEs +1610.09331 Phenomenology +1610.09410 Cosmology and Nongalactic Astrophysics +1610.09727 Analysis of PDEs +1610.09734 Risk Management +1610.09735 Methodology +1610.09811 Solar and Stellar Astrophysics +1610.09837 Combinatorics +1611.00032 Phenomenology +1611.00225 Quantum Gases +1611.00405 Statistical Mechanics +1611.00686 Geometric Topology +1611.01871 +1611.02073 Phenomenology +1611.02162 Instrumentation and Methods for Astrophysics +1611.02435 Numerical Analysis +1611.02532 Phenomenology +1611.03443 +1611.03650 +1611.04009 Theory +1611.04089 Statistical Mechanics +1611.04231 Learning +1611.04280 Combinatorics +1611.05381 Analysis of PDEs +1611.05439 Algebraic Geometry +1611.06338 High Energy Astrophysical Phenomena +1611.06690 Probability +1611.07033 Phenomenology +1611.07043 +1611.07277 Theory +1611.07279 Algebraic Geometry +1611.08049 Statistics Theory +1611.08165 Instrumentation and Methods for Astrophysics +1611.08359 Phenomenology +1611.08588 Computer Vision and Pattern Recognition +1611.08674 Soft Condensed Matter +1611.08961 +1611.09086 Quantitative Methods +1611.09128 Instrumentation and Detectors +1611.09351 Artificial Intelligence +1611.09477 Applications +1611.09620 +1611.09839 Mesoscale and Nanoscale Physics +1611.09882 Analysis of PDEs +1611.09973 Representation Theory +1611.10146 Logic in Computer Science +1611.10272 Accelerator Physics +1612.00196 Statistics Theory +1612.00324 +1612.00361 Mesoscale and Nanoscale Physics +1612.00409 +1612.00435 Combinatorics +1612.00634 Solar and Stellar Astrophysics +1612.00959 Artificial Intelligence +1612.00961 Soft Condensed Matter +1612.01100 Geometric Topology +1612.01121 +1612.01172 Atmospheric and Oceanic Physics +1612.01226 Number Theory +1612.01258 Optics +1612.01290 Complex Variables +1612.01527 Computational Complexity +1612.01581 Solar and Stellar Astrophysics +1612.01693 Data Structures and Algorithms +1612.01728 Logic in Computer Science +1612.01739 Solar and Stellar Astrophysics +1612.01931 +1612.01969 Phenomenology +1612.02020 Analysis of PDEs +1612.02069 Theory +1612.02073 +1612.02173 Instrumentation and Methods for Astrophysics +1612.02182 Complex Variables +1612.02589 Computer Vision and Pattern Recognition +1612.02590 Computer Vision and Pattern Recognition +1612.02618 Quantum Gases +1612.02623 Instrumentation and Detectors +1612.02721 Medical Physics +1612.02762 Category Theory +1612.02805 High Energy Astrophysical Phenomena +1612.02840 Instrumentation and Detectors +1612.02861 Algebraic Topology +1612.02877 Differential Geometry +1612.02879 Learning +1612.02887 Mesoscale and Nanoscale Physics +1612.02941 Experiment +1612.02944 Phenomenology +1612.02947 +1612.03013 Statistical Mechanics +1612.03026 Instrumentation and Detectors +1612.03074 Algebraic Geometry +1612.03165 High Energy Astrophysical Phenomena +1612.03166 Materials Science +1612.03167 +1612.03168 Tissues and Organs +1612.03174 Solar and Stellar Astrophysics +1612.03175 High Energy Astrophysical Phenomena +1612.03176 Phenomenology +1612.03182 Hardware Architecture +1612.03183 Functional Analysis +1612.03184 Networking and Internet Architecture +1612.03186 Optimization and Control +1612.03187 High Energy Astrophysical Phenomena +1612.03188 Algebraic Topology +1612.03191 Logic in Computer Science +1612.03192 History and Philosophy of Physics +1612.03194 Classical Physics +1612.03195 Pattern Formation and Solitons +1612.03197 Classical Physics +1612.03198 +1612.03199 Classical Physics +1612.03200 Mesoscale and Nanoscale Physics +1612.03202 Classical Physics +1612.03204 Networking and Internet Architecture +1612.03205 Computation and Language +1612.03206 Dynamical Systems +1612.03208 Spectral Theory +1612.03209 Probability +1612.03210 Probability +1612.03212 Materials Science +1612.03213 Probability +1612.03215 Functional Analysis +1612.03216 Computation and Language +1612.03217 Computer Vision and Pattern Recognition +1612.03218 Functional Analysis +1612.03220 Information Theory +1612.03221 Geophysics +1612.03224 Software Engineering +1612.03226 Computation and Language +1612.03227 Information Theory +1612.03228 Materials Science +1612.03229 Number Theory +1612.03230 +1612.03231 Information Retrieval +1612.03232 Robotics +1612.03233 Statistics Theory +1612.03237 Materials Science +1612.03238 Popular Physics +1612.03240 Software Engineering +1612.03241 Differential Geometry +1612.03242 Computer Vision and Pattern Recognition +1612.03243 Fluid Dynamics +1612.03244 Soft Condensed Matter +1612.03245 Mesoscale and Nanoscale Physics +1612.03246 Robotics +1612.03247 Computational Engineering, Finance, and Science +1612.03248 +1612.03249 +1612.03250 +1612.03251 +1612.03252 Plasma Physics +1612.03255 Instrumentation and Methods for Astrophysics +1612.03256 Materials Science +1612.03257 Statistics Theory +1612.03258 Statistical Mechanics +1612.03265 Algebraic Topology +1612.03266 Computation and Language +1612.03268 Computer Vision and Pattern Recognition +1612.03269 Phenomenology +1612.03270 Neurons and Cognition +1612.03271 Information Theory +1612.03273 Computer Vision and Pattern Recognition +1612.03274 Solar and Stellar Astrophysics +1612.03277 Information Retrieval +1612.03278 Applications +1612.03279 Information Theory +1612.03280 Combinatorics +1612.03282 Operator Algebras +1612.03285 Digital Libraries +1612.03287 Operator Algebras +1612.03288 Mesoscale and Nanoscale Physics +1612.03290 +1612.03293 Combinatorics +1612.03294 Solar and Stellar Astrophysics +1612.03295 Analysis of PDEs +1612.03296 Soft Condensed Matter +1612.03297 Differential Geometry +1612.03298 Combinatorics +1612.03300 Numerical Analysis +1612.03302 Methodology +1612.03303 +1612.03304 Analysis of PDEs +1612.03306 Instrumentation and Detectors +1612.03308 Data Structures and Algorithms +1612.03309 Operator Algebras +1612.03310 Computational Physics +1612.03312 Cryptography and Security +1612.03315 Algebraic Geometry +1612.03316 Information Retrieval +1612.03317 Materials Science +1612.03319 Computation +1612.03320 High Energy Astrophysical Phenomena +1612.03321 Earth and Planetary Astrophysics +1612.03322 +1612.03323 Number Theory +1612.03324 +1612.03325 Geometric Topology +1612.03327 Functional Analysis +1612.03328 Artificial Intelligence +1612.03329 Analysis of PDEs +1612.03330 Disordered Systems and Neural Networks +1612.03331 Phenomenology +1612.03332 Number Theory +1612.03333 Numerical Analysis +1612.03334 Statistical Mechanics +1612.03335 Algebraic Topology +1612.03336 Optimization and Control +1612.03339 Data Structures and Algorithms +1612.03340 Number Theory +1612.03341 Statistics Theory +1612.03343 Data Structures and Algorithms +1612.03344 Analysis of PDEs +1612.03345 Cryptography and Security +1612.03346 Functional Analysis +1612.03348 Astrophysics of Galaxies +1612.03349 Optimization and Control +1612.03351 Number Theory +1612.03352 Fluid Dynamics +1612.03353 Artificial Intelligence +1612.03354 Materials Science +1612.03355 Dynamical Systems +1612.03356 Superconductivity +1612.03357 Information Theory +1612.03358 Number Theory +1612.03359 Computational Physics +1612.03360 Information Theory +1612.03361 Emerging Technologies +1612.03362 Social and Information Networks +1612.03363 +1612.03365 Computer Vision and Pattern Recognition +1612.03367 Number Theory +1612.03368 Geometric Topology +1612.03369 Numerical Analysis +1612.03371 Networking and Internet Architecture +1612.03372 Combinatorics +1612.03373 Applications +1612.03374 Atmospheric and Oceanic Physics +1612.03375 Statistics Theory +1612.03376 Materials Science +1612.03377 Dynamical Systems +1612.03380 Quantum Gases +1612.03383 Group Theory +1612.03386 Numerical Analysis +1612.03388 Solar and Stellar Astrophysics +1612.03389 Probability +1612.03390 Classical Analysis and ODEs +1612.03398 Instrumentation and Detectors +1612.03399 Fluid Dynamics +1612.03400 Lattice +1612.03401 Cosmology and Nongalactic Astrophysics +1612.03403 Tissues and Organs +1612.03404 Soft Condensed Matter +1612.03408 Commutative Algebra +1612.03409 Machine Learning +1612.03410 Logic +1612.03411 Number Theory +1612.03413 Distributed, Parallel, and Cluster Computing +1612.03414 Mesoscale and Nanoscale Physics +1612.03415 Superconductivity +1612.03416 Commutative Algebra +1612.03419 Theory +1612.03420 Algebraic Topology +1612.03421 Strongly Correlated Electrons +1612.03422 Mesoscale and Nanoscale Physics +1612.03424 Combinatorics +1612.03425 Strongly Correlated Electrons +1612.03426 Statistical Mechanics +1612.03427 +1612.03429 Pattern Formation and Solitons +1612.03430 +1612.03431 Classical Analysis and ODEs +1612.03432 Soft Condensed Matter +1612.03433 Multiagent Systems +1612.03434 Chemical Physics +1612.03435 Combinatorics +1612.03436 Materials Science +1612.03437 Phenomenology +1612.03438 Phenomenology +1612.03442 Statistical Mechanics +1612.03445 Classical Analysis and ODEs +1612.03446 Soft Condensed Matter +1612.03450 Learning +1612.03451 Methodology +1612.03452 Networking and Internet Architecture +1612.03453 Dynamical Systems +1612.03454 Dynamical Systems +1612.03455 Information Theory +1612.03456 Symbolic Computation +1612.03457 Distributed, Parallel, and Cluster Computing +1612.03458 Algebraic Geometry +1612.03459 Information Theory +1612.03460 Operator Algebras +1612.03461 Multimedia +1612.03463 +1612.03464 Chemical Physics +1612.03470 Strongly Correlated Electrons +1612.03472 Cryptography and Security +1612.03477 Computer Vision and Pattern Recognition +1612.03478 Materials Science +1612.03484 Probability +1612.03485 Group Theory +1612.03486 Geometric Topology +1612.03487 +1612.03488 Programming Languages +1612.03489 Algebraic Geometry +1612.03490 Cosmology and Nongalactic Astrophysics +1612.03491 Group Theory +1612.03492 Group Theory +1612.03496 Phenomenology +1612.03497 Group Theory +1612.03501 Geometric Topology +1612.03502 Pattern Formation and Solitons +1612.03504 Solar and Stellar Astrophysics +1612.03505 Sound +1612.03507 Differential Geometry +1612.03508 Analysis of PDEs +1612.03510 Analysis of PDEs +1612.03511 Earth and Planetary Astrophysics +1612.03512 Combinatorics +1612.03513 Theory +1612.03514 Combinatorics +1612.03515 Solar and Stellar Astrophysics +1612.03516 High Energy Astrophysical Phenomena +1612.03518 Theory +1612.03519 Algebraic Topology +1612.03520 Plasma Physics +1612.03522 Algebraic Topology +1612.03523 Chemical Physics +1612.03525 Soft Condensed Matter +1612.03526 Materials Science +1612.03527 Statistical Mechanics +1612.03531 Materials Science +1612.03534 Number Theory +1612.03535 Dynamical Systems +1612.03538 Combinatorics +1612.03539 Algebraic Geometry +1612.03541 Populations and Evolution +1612.03542 Systems and Control +1612.03543 Combinatorics +1612.03544 Commutative Algebra +1612.03545 Disordered Systems and Neural Networks +1612.03546 Astrophysics of Galaxies +1612.03547 Information Theory +1612.03548 Probability +1612.03550 Computer Vision and Pattern Recognition +1612.03552 Optics +1612.03555 Optics +1612.03556 Earth and Planetary Astrophysics +1612.03557 Computer Vision and Pattern Recognition +1612.03558 Mesoscale and Nanoscale Physics +1612.03560 Information Theory +1612.03561 Applications +1612.03563 Algebraic Topology +1612.03569 Materials Science +1612.03570 Optimization and Control +1612.03571 Strongly Correlated Electrons +1612.03572 Functional Analysis +1612.03573 Group Theory +1612.03574 Numerical Analysis +1612.03576 Differential Geometry +1612.03577 Phenomenology +1612.03578 Classical Analysis and ODEs +1612.03579 Combinatorics +1612.03580 Materials Science +1612.03583 Software Engineering +1612.03584 Mesoscale and Nanoscale Physics +1612.03585 Mesoscale and Nanoscale Physics +1612.03586 Numerical Analysis +1612.03588 Probability +1612.03592 Combinatorics +1612.03593 Superconductivity +1612.03594 Materials Science +1612.03596 Mesoscale and Nanoscale Physics +1612.03597 Information Retrieval +1612.03598 Pattern Formation and Solitons +1612.03599 Probability +1612.03601 +1612.03605 Instrumentation and Detectors +1612.03607 Data Structures and Algorithms +1612.03608 Methodology +1612.03609 Materials Science +1612.03611 +1612.03614 Instrumentation and Detectors +1612.03615 Learning +1612.03617 Quantum Gases +1612.03618 Software Engineering +1612.03620 Combinatorics +1612.03621 +1612.03622 Spectral Theory +1612.03623 Representation Theory +1612.03624 Rings and Algebras +1612.03625 +1612.03626 High Energy Astrophysical Phenomena +1612.03628 Computer Vision and Pattern Recognition +1612.03629 Phenomenology +1612.03630 Computer Vision and Pattern Recognition +1612.03631 Theory +1612.03632 Solar and Stellar Astrophysics +1612.03633 Astrophysics of Galaxies +1612.03634 Algebraic Geometry +1612.03637 Optics +1612.03638 Discrete Mathematics +1612.03641 Cryptography and Security +1612.03642 Instrumentation and Detectors +1612.03643 Algebraic Geometry +1612.03645 Numerical Analysis +1612.03649 Neurons and Cognition +1612.03650 Optimization and Control +1612.03652 Exactly Solvable and Integrable Systems +1612.03654 Chaotic Dynamics +1612.03656 Fluid Dynamics +1612.03658 Statistical Mechanics +1612.03659 Computation and Language +1612.03660 Functional Analysis +1612.03662 Analysis of PDEs +1612.03665 +1612.03666 +1612.03667 Exactly Solvable and Integrable Systems +1612.03669 Solar and Stellar Astrophysics +1612.03670 Dynamical Systems +1612.03672 Solar and Stellar Astrophysics +1612.03673 +1612.03674 Classical Analysis and ODEs +1612.03675 High Energy Astrophysical Phenomena +1612.03676 Functional Analysis +1612.03677 Functional Analysis +1612.03678 Category Theory +1612.03681 Strongly Correlated Electrons +1612.03682 Phenomenology +1612.03683 Fluid Dynamics +1612.03684 Analysis of PDEs +1612.03685 Complex Variables +1612.03688 +1612.03689 Statistics Theory +1612.03690 +1612.03691 Probability +1612.03693 Algebraic Geometry +1612.03694 Networking and Internet Architecture +1612.03695 Algebraic Geometry +1612.03696 Solar and Stellar Astrophysics +1612.03697 Optics +1612.03700 Probability +1612.03701 Combinatorics +1612.03702 Combinatorics +1612.03703 Group Theory +1612.03704 Solar and Stellar Astrophysics +1612.03705 Computer Vision and Pattern Recognition +1612.03707 Neural and Evolutionary Computing +1612.03709 Performance +1612.03710 Optimization and Control +1612.03711 Category Theory +1612.03712 Rings and Algebras +1612.03714 Probability +1612.03715 Probability +1612.03717 Analysis of PDEs +1612.03718 Classical Analysis and ODEs +1612.03719 Solar and Stellar Astrophysics +1612.03720 Strongly Correlated Electrons +1612.03722 Probability +1612.03723 Mesoscale and Nanoscale Physics +1612.03725 Functional Analysis +1612.03729 Physics and Society +1612.03731 Information Theory +1612.03732 Algebraic Topology +1612.03733 Other Condensed Matter +1612.03735 Data Structures and Algorithms +1612.03736 Combinatorics +1612.03737 Numerical Analysis +1612.03738 Algebraic Geometry +1612.03741 Representation Theory +1612.03744 Cryptography and Security +1612.03745 Representation Theory +1612.03746 Differential Geometry +1612.03748 Accelerator Physics +1612.03750 Functional Analysis +1612.03751 Spectral Theory +1612.03755 Differential Geometry +1612.03757 Information Theory +1612.03759 Combinatorics +1612.03760 Neurons and Cognition +1612.03761 Systems and Control +1612.03762 Computation and Language +1612.03763 Instrumentation and Detectors +1612.03764 Combinatorics +1612.03765 Phenomenology +1612.03766 Classical Analysis and ODEs +1612.03767 +1612.03771 Combinatorics +1612.03772 Mathematical Software +1612.03773 Chemical Physics +1612.03775 Functional Analysis +1612.03776 Instrumentation and Detectors +1612.03777 Computer Vision and Pattern Recognition +1612.03779 Computer Vision and Pattern Recognition +1612.03782 K-Theory and Homology +1612.03784 Robotics +1612.03785 Software Engineering +1612.03787 Quantum Gases +1612.03790 Phenomenology +1612.03793 Numerical Analysis +1612.03795 Theory +1612.03796 +1612.03797 Social and Information Networks +1612.03799 Software Engineering +1612.03800 Algebraic Topology +1612.03803 Phenomenology +1612.03804 Strongly Correlated Electrons +1612.03807 Phenomenology +1612.03808 Functional Analysis +1612.03809 Machine Learning +1612.03810 Number Theory +1612.03811 Phenomenology +1612.03814 Logic in Computer Science +1612.03815 Optimization and Control +1612.03816 Probability +1612.03818 Plasma Physics +1612.03819 Accelerator Physics +1612.03823 Differential Geometry +1612.03824 Probability +1612.03825 Phenomenology +1612.03826 Classical Analysis and ODEs +1612.03827 Phenomenology +1612.03829 Plasma Physics +1612.03830 Algebraic Geometry +1612.03834 Populations and Evolution +1612.03835 Optics +1612.03836 High Energy Astrophysical Phenomena +1612.03837 Combinatorics +1612.03838 Combinatorics +1612.03839 Learning +1612.03840 Theory +1612.03841 Number Theory +1612.03842 Atomic Physics +1612.03844 Earth and Planetary Astrophysics +1612.03845 Disordered Systems and Neural Networks +1612.03846 Soft Condensed Matter +1612.03847 Fluid Dynamics +1612.03850 Mesoscale and Nanoscale Physics +1612.03851 Theory +1612.03852 Distributed, Parallel, and Cluster Computing +1612.03853 Probability +1612.03854 Computational Geometry +1612.03856 Data Structures and Algorithms +1612.03857 Operator Algebras +1612.03858 Methodology +1612.03860 High Energy Astrophysical Phenomena +1612.03862 Algebraic Topology +1612.03863 Analysis of PDEs +1612.03864 Social and Information Networks +1612.03867 Analysis of PDEs +1612.03868 Combinatorics +1612.03869 Mesoscale and Nanoscale Physics +1612.03870 Social and Information Networks +1612.03872 Networking and Internet Architecture +1612.03875 +1612.03876 Materials Science +1612.03877 Experiment +1612.03878 Phenomenology +1612.03882 Information Theory +1612.03884 +1612.03886 Theory +1612.03888 Phenomenology +1612.03890 +1612.03891 Theory +1612.03893 Instrumentation and Detectors +1612.03895 Optics +1612.03896 Social and Information Networks +1612.03897 Computer Vision and Pattern Recognition +1612.03898 Cosmology and Nongalactic Astrophysics +1612.03900 Computer Vision and Pattern Recognition +1612.03903 Astrophysics of Galaxies +cond-mat/0612224 Statistical Mechanics +0704.0345 Physics and Society +0704.0449 Theory +0704.1675 Artificial Intelligence +0704.3155 Chaotic Dynamics +0704.3591 Information Theory +0705.0011 Fluid Dynamics +0705.0425 Networking and Internet Architecture +0705.0863 Statistical Mechanics +0705.1254 +0705.1281 Atmospheric and Oceanic Physics +0705.1388 +0705.1951 Statistical Mechanics +0705.2139 +0705.3197 Disordered Systems and Neural Networks +0705.3198 Disordered Systems and Neural Networks +0705.3548 Classical Physics +0706.0230 Theory +0706.0687 Other Condensed Matter +0706.1854 Other Condensed Matter +0706.3789 Pattern Formation and Solitons +0706.4057 +0707.0433 +0707.0733 Phenomenology +0707.1831 Algebraic Geometry +0707.2014 Information Theory +0707.2189 Rings and Algebras +0707.2246 Differential Geometry +0707.2631 Phenomenology +0707.3899 Phenomenology +0707.4576 Analysis of PDEs +0708.0654 Data Analysis, Statistics and Probability +0708.0890 +0708.0895 Mesoscale and Nanoscale Physics +0708.0900 +0708.1207 Statistical Mechanics +0708.1593 Data Analysis, Statistics and Probability +0708.1833 Materials Science +0709.1718 Statistical Mechanics +0709.2727 Theory +0709.4320 +0710.0317 Computational Physics +0710.0602 +0710.1068 Data Analysis, Statistics and Probability +0710.3609 Soft Condensed Matter +0710.3829 Other Condensed Matter +0710.5573 Exactly Solvable and Integrable Systems +0711.0724 +0711.0784 Computer Vision and Pattern Recognition +0711.2314 Statistical Mechanics +0711.2518 Statistical Mechanics +0711.3437 Differential Geometry +0711.3625 +0712.0220 Probability +0712.0989 Dynamical Systems +0712.1380 Data Analysis, Statistics and Probability +0712.1564 Strongly Correlated Electrons +0712.1729 Superconductivity +0712.2870 Information Theory +0712.4290 Methodology +0801.0085 Operator Algebras +0801.1256 Phenomenology +0801.2421 Logic +0801.3127 Superconductivity +0801.4113 Metric Geometry +0801.4572 +0802.0625 Chemical Physics +0802.0834 Cryptography and Security +0802.1265 Soft Condensed Matter +0802.1685 Data Structures and Algorithms +0802.1852 Fluid Dynamics +0802.3851 Information Theory +0802.4352 Analysis of PDEs +0803.0047 History and Philosophy of Physics +0803.0244 Complex Variables +0803.4356 Other Condensed Matter +0804.0379 Quantitative Methods +0804.1086 Fluid Dynamics +0804.1308 Analysis of PDEs +0804.1968 +0804.2960 Information Theory +0804.4726 Probability +0805.0012 Information Theory +0805.0229 History and Philosophy of Physics +0805.0498 Logic in Computer Science +0805.1281 Superconductivity +0805.3022 Theory +0805.3242 +0805.3431 Number Theory +0806.1203 Strongly Correlated Electrons +0806.2215 Functional Analysis +0806.2826 Materials Science +0806.3423 Materials Science +0806.4108 Analysis of PDEs +0807.0671 Soft Condensed Matter +0807.1870 Statistical Mechanics +0807.4268 Networking and Internet Architecture +0807.4729 Populations and Evolution +0808.0012 Data Analysis, Statistics and Probability +0808.0939 Superconductivity +0808.1260 Classical Physics +0808.1417 Information Theory +0808.1664 Representation Theory +0808.1665 Soft Condensed Matter +0808.2562 Information Theory +0808.2723 Spectral Theory +0808.2861 Atmospheric and Oceanic Physics +0808.3559 +0809.2835 Information Theory +0809.4004 Popular Physics +0809.4244 Applications +0810.0509 Soft Condensed Matter +0810.1179 +0810.2041 +0810.4705 Logic +0810.5400 +0811.1344 Superconductivity +0811.1947 Software Engineering +0812.1455 +0901.0401 Statistical Finance +0901.1391 Rings and Algebras +0901.1449 Classical Physics +0901.2000 Data Analysis, Statistics and Probability +0901.2326 Mesoscale and Nanoscale Physics +0901.2753 Genomics +0901.3287 Mesoscale and Nanoscale Physics +0901.3812 Trading and Market Microstructure +0902.0784 +0902.0897 Statistical Mechanics +0902.3788 Physics and Society +0902.3947 Phenomenology +0903.0887 Algebraic Geometry +0903.2970 Rings and Algebras +0903.4829 Soft Condensed Matter +0903.4884 High Energy Astrophysical Phenomena +0903.5012 Materials Science +0904.0633 Instrumentation and Methods for Astrophysics +0904.1043 Mesoscale and Nanoscale Physics +0904.2058 Computational Complexity +0904.4692 High Energy Astrophysical Phenomena +0905.0213 Theory +0905.1458 Neurons and Cognition +0905.1636 Biological Physics +0905.1857 Strongly Correlated Electrons +0906.1569 Strongly Correlated Electrons +0906.1640 Chemical Physics +0906.1684 Statistical Mechanics +0906.2118 Classical Physics +0906.2156 Cosmology and Nongalactic Astrophysics +0906.3424 Distributed, Parallel, and Cluster Computing +0906.4614 Fluid Dynamics +0906.5062 Data Structures and Algorithms +0907.4250 Quantum Gases +0907.5490 Instrumentation and Detectors +0908.0582 Number Theory +0908.0609 Mesoscale and Nanoscale Physics +0908.0895 Mesoscale and Nanoscale Physics +0908.1742 Theory +0908.3028 Materials Science +0908.3889 +0909.0990 +0909.2058 Databases +0909.2292 Information Theory +0909.3110 Astrophysics of Galaxies +0909.3214 +0909.4485 Populations and Evolution +0909.4569 Computer Science and Game Theory +0910.0087 Statistical Finance +0910.0239 Information Theory +0910.0262 Lattice +0910.0382 Disordered Systems and Neural Networks +0910.0669 Strongly Correlated Electrons +0910.0789 Quantitative Methods +0910.0797 Geophysics +0910.0826 Physics and Society +0910.0847 Instrumentation and Detectors +0910.0949 Machine Learning +0910.1862 Computational Complexity +0910.2150 Optics +0910.2162 Soft Condensed Matter +0910.2422 Phenomenology +0910.2434 Fluid Dynamics +0910.2489 Mesoscale and Nanoscale Physics +0910.2745 Probability +0910.2797 Adaptation and Self-Organizing Systems +0910.2903 Biomolecules +0910.3011 +0910.3043 Solar and Stellar Astrophysics +0910.3046 Mesoscale and Nanoscale Physics +0910.3127 Discrete Mathematics +0910.3736 Hardware Architecture +0910.3916 Probability +0910.4072 Probability +0910.4642 General Physics +0910.5041 Astrophysics of Galaxies +0910.5513 Strongly Correlated Electrons +0910.5567 Solar and Stellar Astrophysics +0910.5893 Statistical Mechanics +0910.5947 Computational Geometry +0911.0457 Chaotic Dynamics +0911.0575 Phenomenology +0911.0626 Discrete Mathematics +0911.0837 Medical Physics +0911.1081 General Physics +0911.1599 Other Condensed Matter +0911.1765 Data Structures and Algorithms +0911.2331 Accelerator Physics +0911.2336 Accelerator Physics +0911.2362 Chaotic Dynamics +0911.3199 +0911.3258 Materials Science +0911.3375 General Physics +0911.3746 +0911.4212 Differential Geometry +0911.4496 Superconductivity +0911.4514 General Physics +0911.4940 Data Structures and Algorithms +0911.5042 Medical Physics +0911.5048 Statistical Finance +0911.5482 Machine Learning +0912.0483 Mesoscale and Nanoscale Physics +0912.1178 Numerical Analysis +0912.1328 Soft Condensed Matter +0912.1682 Mesoscale and Nanoscale Physics +0912.1905 Distributed, Parallel, and Cluster Computing +0912.2199 Cryptography and Security +0912.2333 General Physics +0912.2373 Soft Condensed Matter +0912.2540 Geophysics +0912.3539 High Energy Astrophysical Phenomena +0912.3644 Optics +0912.3953 Digital Libraries +0912.4109 +0912.4182 Functional Analysis +0912.4284 Soft Condensed Matter +0912.4382 Instrumentation and Detectors +0912.4441 Instrumentation and Methods for Astrophysics +0912.4601 Materials Science +0912.4866 Biological Physics +0912.5160 Phenomenology +0912.5241 Databases +0912.5492 Differential Geometry +1001.0097 General Physics +1001.0208 Computational Complexity +1001.0284 Biological Physics +1001.0681 Statistical Mechanics +1001.0721 Geometric Topology +1001.0734 Solar and Stellar Astrophysics +1001.0854 Astrophysics of Galaxies +1001.1096 Astrophysics of Galaxies +1001.1140 +1001.1257 Artificial Intelligence +1001.1260 Materials Science +1001.1365 Experiment +1001.1465 Mesoscale and Nanoscale Physics +1001.1637 Disordered Systems and Neural Networks +1001.1695 Mesoscale and Nanoscale Physics +1001.1863 Theory +1001.2331 Information Theory +1001.2394 Soft Condensed Matter +1001.2430 Solar and Stellar Astrophysics +1001.2464 Information Theory +1001.2481 Fluid Dynamics +1001.2563 Phenomenology +1001.2753 Machine Learning +1001.2928 +1001.3241 Experiment +1001.3350 Optics +1001.3460 Information Theory +1001.3473 Software Engineering +1001.3529 Biological Physics +1001.3533 Networking and Internet Architecture +1001.3539 Software Engineering +1001.3552 Software Engineering +1001.3572 Materials Science +1001.3576 Geophysics +1001.3613 Cosmology and Nongalactic Astrophysics +1001.3716 Hardware Architecture +1001.3718 Distributed, Parallel, and Cluster Computing +1001.3725 Software Engineering +1001.3727 Operating Systems +1001.3734 Software Engineering +1001.3735 Computer Vision and Pattern Recognition +1001.3740 Networking and Internet Architecture +1001.3741 Neural and Evolutionary Computing +1001.3744 Multimedia +1001.3748 Computers and Society +1001.3756 Performance +1001.3757 History and Philosophy of Physics +1001.3771 Other Computer Science +1001.3774 Multimedia +1001.3777 Networking and Internet Architecture +1001.3781 Hardware Architecture +1001.3918 Software Engineering +1001.3920 Neural and Evolutionary Computing +1001.3928 Cryptography and Security +1001.3932 Computers and Society +1001.3962 Chemical Physics +1001.4096 Mesoscale and Nanoscale Physics +1001.4129 Software Engineering +1001.4135 Multimedia +1001.4258 Geophysics +1001.4459 Computers and Society +1001.4671 Disordered Systems and Neural Networks +1001.4686 Instrumentation and Methods for Astrophysics +1001.5001 +1001.5334 Networking and Internet Architecture +1001.5339 Networking and Internet Architecture +1001.5348 Neural and Evolutionary Computing +1001.5352 Computer Vision and Pattern Recognition +1001.5358 Software Engineering +1001.5359 Computer Vision and Pattern Recognition +1002.0048 Other Quantitative Biology +1002.0051 Biomolecules +1002.0151 Physics and Society +1002.0199 Chemical Physics +1002.0902 +1002.1117 Solar and Stellar Astrophysics +1002.1328 Accelerator Physics +1002.2027 Cosmology and Nongalactic Astrophysics +1002.2243 Applications +1002.2281 General Finance +1002.2282 General Finance +1002.2306 Superconductivity +1002.2369 Solar and Stellar Astrophysics +1002.2686 Software Engineering +1002.2687 Other Computer Science +1002.2700 Instrumentation and Detectors +1002.2829 Software Engineering +1002.3008 Software Engineering +1002.3011 Cryptography and Security +1002.3015 Software Engineering +1002.3031 Software Engineering +1002.3074 Digital Libraries +1002.3190 Cryptography and Security +1002.3557 Physics and Society +1002.3584 Superconductivity +1002.4334 Logic in Computer Science +1002.4670 Classical Physics +1002.4738 Distributed, Parallel, and Cluster Computing +1003.0140 Mesoscale and Nanoscale Physics +1003.0369 Materials Science +1003.0445 Information Theory +1003.0756 +1003.0821 Atomic Physics +1003.0836 Neurons and Cognition +1003.1090 +1007.4942 +1102.4070 Mesoscale and Nanoscale Physics +1203.5833 +1207.6499 +1303.1128 Differential Geometry +1307.7641 Number Theory +1311.0100 Information Theory +1401.7660 Differential Geometry +1402.5326 Information Theory +1403.1436 Differential Geometry +1403.4134 Optimization and Control +1404.6194 Differential Geometry +1404.7036 +1404.7445 +1405.1619 Operator Algebras +1405.1890 Algebraic Geometry +1405.7408 Disordered Systems and Neural Networks +1406.5063 Theory +1408.4466 +1410.1934 Numerical Analysis +1410.4265 Operator Algebras +1410.6339 Information Theory +1411.6302 Group Theory +1412.0564 Differential Geometry +1412.1943 Optics +1502.02926 Mathematical Finance +1502.04139 Classical Analysis and ODEs +1504.01917 +1504.02534 Differential Geometry +1504.03732 Algebraic Geometry +1504.04825 Operator Algebras +1505.02150 Number Theory +1505.04458 Combinatorics +1505.06770 Learning +1505.08035 Materials Science +1506.02895 Probability +1507.03029 Algebraic Geometry +1507.03444 Theory +1507.08452 Computation and Language +1507.08816 Differential Geometry +1508.00435 Differential Geometry +1508.01698 Phenomenology +1508.02766 Computation +1508.03564 Mesoscale and Nanoscale Physics +1508.05494 Optimization and Control +1509.02117 Combinatorics +1509.03205 Sound +1509.08521 +1509.09271 +1510.01672 Functional Analysis +1510.03384 Algebraic Geometry +1510.03896 Operator Algebras +1510.05078 Machine Learning +1511.03069 Combinatorics +1511.04019 Differential Geometry +1511.04516 +1511.06350 Learning +1511.06352 Neurons and Cognition +1512.00531 Computation and Language +1512.04015 Plasma Physics +1512.06868 Commutative Algebra +1601.04205 Chemical Physics +1601.06885 Information Theory +1602.01521 Logic +1602.02780 Cosmology and Nongalactic Astrophysics +1602.03291 Artificial Intelligence +1602.03349 Analysis of PDEs +1602.09066 +1603.00882 Instrumentation and Methods for Astrophysics +1603.01092 Theory +1603.04475 Numerical Analysis +1603.05261 Neurons and Cognition +1603.05786 Number Theory +1603.07989 Strongly Correlated Electrons +1603.09142 Probability +1603.09359 Strongly Correlated Electrons +1603.09663 Phenomenology +1604.00986 Classical Physics +1604.01024 Cosmology and Nongalactic Astrophysics +1604.01201 Numerical Analysis +1604.02426 Computer Vision and Pattern Recognition +1604.02809 Cosmology and Nongalactic Astrophysics +1604.03383 Materials Science +1604.05280 Learning +1604.06444 Phenomenology +1604.07155 Superconductivity +1604.07233 Astrophysics of Galaxies +1604.08450 Quantum Algebra +1605.00882 Quantum Gases +1605.00902 +1605.01027 Quantum Gases +1605.01581 Theory +1605.04640 High Energy Astrophysical Phenomena +1605.05515 Mesoscale and Nanoscale Physics +1605.06148 Instrumentation and Methods for Astrophysics +1605.06371 Exactly Solvable and Integrable Systems +1605.06830 Phenomenology +1605.07020 Chemical Physics +1605.07081 Computer Vision and Pattern Recognition +1605.07627 Strongly Correlated Electrons +1605.08891 +1605.09604 Quantum Gases +1605.09640 Atomic Physics +1606.00223 Soft Condensed Matter +1606.01135 Mesoscale and Nanoscale Physics +1606.03753 Computational Geometry +1606.03833 Experiment +1606.04230 Optimization and Control +1606.04671 Learning +1606.05654 Quantum Gases +1606.05847 Phenomenology +1606.05879 +1606.08644 Applications +1606.08992 Astrophysics of Galaxies +1606.09436 Mesoscale and Nanoscale Physics +1607.00321 Multimedia +1607.00332 Plasma Physics +1607.00373 Theory +1607.00960 Soft Condensed Matter +1607.01562 High Energy Astrophysical Phenomena +1607.03591 Probability +1607.05370 Theory +1607.05650 Computation and Language +1607.07832 Numerical Analysis +1607.08628 Astrophysics of Galaxies +1608.00908 Cosmology and Nongalactic Astrophysics +1608.01425 Commutative Algebra +1608.04679 Information Theory +1608.06307 Materials Science +1608.06639 Strongly Correlated Electrons +1608.07243 +1608.08005 Solar and Stellar Astrophysics +1608.08256 Theory +1608.08546 Combinatorics +1608.08551 Algebraic Topology +1609.00260 +1609.00408 Cryptography and Security +1609.00496 Computer Vision and Pattern Recognition +1609.00723 Theory +1609.00836 Computer Vision and Pattern Recognition +1609.01050 Earth and Planetary Astrophysics +1609.01118 Methodology +1609.01397 +1609.01398 +1609.01438 Strongly Correlated Electrons +1609.01496 +1609.01677 Combinatorics +1609.01705 Combinatorics +1609.01710 Computer Vision and Pattern Recognition +1609.01711 +1609.01712 +1609.01717 Astrophysics of Galaxies +1609.01720 Astrophysics of Galaxies +1609.01722 High Energy Astrophysical Phenomena +1609.01725 Theory +1609.01733 +1609.01736 Theory +1609.01743 Computer Vision and Pattern Recognition +1609.01744 Algebraic Geometry +1609.01745 +1609.01746 +1609.01747 +1609.01748 +1609.01749 Analysis of PDEs +1609.01750 Combinatorics +1609.01753 +1609.01755 Data Structures and Algorithms +1609.01756 +1609.01760 Optics +1609.01762 Phenomenology +1609.01771 Representation Theory +1609.01773 Representation Theory +1609.01774 Methodology +1609.01778 Social and Information Networks +1609.01780 Analysis of PDEs +1609.01782 Combinatorics +1609.01783 Representation Theory +1609.01784 +1609.01788 Genomics +1609.01789 Logic in Computer Science +1609.01790 Neurons and Cognition +1609.01793 +1609.01795 Information Theory +1609.01798 Pattern Formation and Solitons +1609.01799 Statistics Theory +1609.01804 Analysis of PDEs +1609.01805 Computer Vision and Pattern Recognition +1609.01807 Probability +1609.01808 Multiagent Systems +1609.01809 Information Theory +1609.01810 Computer Vision and Pattern Recognition +1609.01812 Physics and Society +1609.01813 Medical Physics +1609.01817 Number Theory +1609.01819 Learning +1609.01821 Cryptography and Security +1609.01822 Computers and Society +1609.01823 Computers and Society +1609.01825 Analysis of PDEs +1609.01828 Computer Vision and Pattern Recognition +1609.01830 Robotics +1609.01832 Theory +1609.01833 +1609.01834 Differential Geometry +1609.01835 +1609.01836 Adaptation and Self-Organizing Systems +1609.01837 Strongly Correlated Electrons +1609.01839 Computer Vision and Pattern Recognition +1609.01840 Learning +1609.01841 High Energy Astrophysical Phenomena +1609.01843 +1609.01844 Solar and Stellar Astrophysics +1609.01846 Phenomenology +1609.01848 Phenomenology +1609.01852 Complex Variables +1609.01853 Materials Science +1609.01854 +1609.01855 Fluid Dynamics +1609.01856 Information Theory +1609.01857 Strongly Correlated Electrons +1609.01859 Computer Vision and Pattern Recognition +1609.01860 Networking and Internet Architecture +1609.01862 High Energy Astrophysical Phenomena +1609.01867 Biological Physics +1609.01871 Analysis of PDEs +1609.01872 Machine Learning +1609.01877 Algebraic Geometry +1609.01880 Rings and Algebras +1609.01881 Phenomenology +1609.01883 Networking and Internet Architecture +1609.01884 Combinatorics +1609.01886 Combinatorics +1609.01888 Strongly Correlated Electrons +1609.01891 Geometric Topology +1609.01893 Databases +1609.01897 Optimization and Control +1609.01898 Combinatorics +1609.01900 General Finance +1609.01903 Mesoscale and Nanoscale Physics +1609.01905 Quantum Algebra +1609.01906 Strongly Correlated Electrons +1609.01907 Probability +1609.01910 Methodology +1609.01911 Analysis of PDEs +1609.01913 K-Theory and Homology +1609.01914 Representation Theory +1609.01916 +1609.01921 Computer Science and Game Theory +1609.01922 Strongly Correlated Electrons +1609.01923 Theory +1609.01926 Neural and Evolutionary Computing +1609.01927 Functional Analysis +1609.01928 Number Theory +1609.01930 Rings and Algebras +1609.01932 Computer Vision and Pattern Recognition +1609.01933 Computation and Language +1609.01934 Combinatorics +1609.01935 Robotics +1609.01939 Metric Geometry +1609.01940 Classical Analysis and ODEs +1609.01942 Solar and Stellar Astrophysics +1609.01950 Number Theory +1609.01953 Analysis of PDEs +1609.01954 Quantum Gases +1609.01956 Computational Physics +1609.01958 Computer Vision and Pattern Recognition +1609.01959 Mesoscale and Nanoscale Physics +1609.01962 Computation and Language +1609.01965 +1609.01966 History and Philosophy of Physics +1609.01967 Distributed, Parallel, and Cluster Computing +1609.01969 Group Theory +1609.01970 Phenomenology +1609.01972 +1609.01973 Strongly Correlated Electrons +1609.01975 Disordered Systems and Neural Networks +1609.01977 Learning +1609.01978 Differential Geometry +1609.01980 Soft Condensed Matter +1609.01982 Neural and Evolutionary Computing +1609.01983 Plasma Physics +1609.01984 Robotics +1609.01985 Programming Languages +1609.01986 Computers and Society +1609.01987 Computational Engineering, Finance, and Science +1609.01988 Theory +1609.01989 Materials Science +1609.01990 Spectral Theory +1609.01996 Computers and Society +1609.01997 +1609.01999 +1609.02000 Adaptation and Self-Organizing Systems +1609.02002 Theory +1609.02003 General Physics +1609.02004 Digital Libraries +1609.02005 Information Theory +1609.02007 +1609.02008 Mesoscale and Nanoscale Physics +1609.02009 Artificial Intelligence +1609.02010 Artificial Intelligence +1609.02012 Instrumentation and Detectors +1609.02014 Instrumentation and Detectors +1609.02016 Human-Computer Interaction +1609.02018 Lattice +1609.02021 Experiment +1609.02022 Classical Analysis and ODEs +1609.02024 Number Theory +1609.02027 Superconductivity +1609.02028 General Physics +1609.02030 Analysis of PDEs +1609.02036 Computer Vision and Pattern Recognition +1609.02040 +1609.02041 Instrumentation and Detectors +1609.02043 Artificial Intelligence +1609.02046 Combinatorics +1609.02047 Differential Geometry +1609.02048 Strongly Correlated Electrons +1609.02049 Quantitative Methods +1609.02050 Metric Geometry +1609.02052 Spectral Theory +1609.02053 Neural and Evolutionary Computing +1609.02058 Complex Variables +1609.02059 Biological Physics +1609.02064 Soft Condensed Matter +1609.02066 Instrumentation and Detectors +1609.02067 Hardware Architecture +1609.02069 Experiment +1609.02071 Information Theory +1609.02072 Graphics +1609.02074 +1609.02075 Computation and Language +1609.02078 Mesoscale and Nanoscale Physics +1609.02081 Neurons and Cognition +1609.02082 Learning +1609.02083 Commutative Algebra +1609.02089 Theory +1609.02090 Number Theory +1609.02093 K-Theory and Homology +1609.02094 Information Theory +1609.02098 Differential Geometry +1609.02102 Statistical Mechanics +1609.02103 Algebraic Geometry +1609.02105 Differential Geometry +1609.02108 Mathematical Finance +1609.02109 Information Theory +1609.02110 +1609.02113 Algebraic Geometry +1609.02114 Neurons and Cognition +1609.02118 Algebraic Topology +1609.02120 Probability +1609.02123 Computation +1609.02125 Materials Science +1609.02127 Instrumentation and Detectors +1609.02129 Statistical Mechanics +1609.02132 Computer Vision and Pattern Recognition +1609.02133 Biological Physics +1609.02135 Computer Vision and Pattern Recognition +1609.02136 +nlin/0105028 Chaotic Dynamics +nlin/0106028 Adaptation and Self-Organizing Systems +nlin/0108037 Exactly Solvable and Integrable Systems +nlin/0108041 Exactly Solvable and Integrable Systems +nlin/0109023 Chaotic Dynamics +nlin/0111052 Pattern Formation and Solitons +nlin/0111061 Chaotic Dynamics +nlin/0112014 Chaotic Dynamics +nlin/0112048 Chaotic Dynamics +nlin/0201023 Exactly Solvable and Integrable Systems +nlin/0202009 Exactly Solvable and Integrable Systems +nlin/0202018 Exactly Solvable and Integrable Systems +nlin/0202035 Exactly Solvable and Integrable Systems +nlin/0203014 Exactly Solvable and Integrable Systems +nlin/0203045 Chaotic Dynamics +nlin/0205061 Exactly Solvable and Integrable Systems +nlin/0207002 Chaotic Dynamics +nlin/0207020 Adaptation and Self-Organizing Systems +nlin/0207037 Exactly Solvable and Integrable Systems +nlin/0208013 Chaotic Dynamics +nlin/0208039 Chaotic Dynamics +nlin/0210035 Chaotic Dynamics +nlin/0210050 Exactly Solvable and Integrable Systems +nlin/0212052 Pattern Formation and Solitons +nlin/0301035 Chaotic Dynamics +nlin/0302037 Chaotic Dynamics +nlin/0302041 Pattern Formation and Solitons +nlin/0302043 Pattern Formation and Solitons +nlin/0302045 Chaotic Dynamics +nlin/0303065 Chaotic Dynamics +nlin/0306028 Chaotic Dynamics +nlin/0307012 Chaotic Dynamics +nlin/0307019 Chaotic Dynamics +nlin/0307028 Cellular Automata and Lattice Gases +nlin/0307044 Exactly Solvable and Integrable Systems +nlin/0308001 Chaotic Dynamics +nlin/0309009 Pattern Formation and Solitons +nlin/0309036 Chaotic Dynamics +nlin/0309073 Exactly Solvable and Integrable Systems +nlin/0310016 Pattern Formation and Solitons +nlin/0311019 Pattern Formation and Solitons +nlin/0311025 Chaotic Dynamics +nlin/0312044 Chaotic Dynamics +nlin/0312056 Adaptation and Self-Organizing Systems +nlin/0401010 Exactly Solvable and Integrable Systems +nlin/0402027 Chaotic Dynamics +nlin/0403032 Adaptation and Self-Organizing Systems +nlin/0404009 Adaptation and Self-Organizing Systems +nlin/0405003 Chaotic Dynamics +nlin/0406028 Pattern Formation and Solitons +nlin/0406045 Exactly Solvable and Integrable Systems +nlin/0408045 Chaotic Dynamics +nlin/0411014 Exactly Solvable and Integrable Systems +nlin/0412002 Pattern Formation and Solitons +nlin/0412019 Exactly Solvable and Integrable Systems +nlin/0412049 Chaotic Dynamics +nlin/0502020 Exactly Solvable and Integrable Systems +nlin/0502024 Pattern Formation and Solitons +nlin/0502042 Chaotic Dynamics +nlin/0503030 Exactly Solvable and Integrable Systems +nlin/0503062 Pattern Formation and Solitons +nlin/0503070 Chaotic Dynamics +nlin/0504011 Adaptation and Self-Organizing Systems +nlin/0504053 Exactly Solvable and Integrable Systems +nlin/0505024 Chaotic Dynamics +nlin/0506060 Chaotic Dynamics +nlin/0507017 Chaotic Dynamics +nlin/0508007 Exactly Solvable and Integrable Systems +nlin/0509007 Adaptation and Self-Organizing Systems +nlin/0509046 Chaotic Dynamics +nlin/0509056 Chaotic Dynamics +nlin/0511018 Adaptation and Self-Organizing Systems +nlin/0511022 Chaotic Dynamics +nlin/0512072 Exactly Solvable and Integrable Systems +nlin/0601033 Chaotic Dynamics +nlin/0602015 Exactly Solvable and Integrable Systems +nlin/0602016 Pattern Formation and Solitons +nlin/0602043 Exactly Solvable and Integrable Systems +nlin/0604053 Exactly Solvable and Integrable Systems +nlin/0604066 Exactly Solvable and Integrable Systems +nlin/0605050 Chaotic Dynamics +nlin/0608028 Adaptation and Self-Organizing Systems +nlin/0611056 Chaotic Dynamics +nucl-ex/0006008 +nucl-ex/0007002 +nucl-ex/0102009 +nucl-ex/0109017 +nucl-ex/0110015 +nucl-ex/0203001 +nucl-ex/0203003 +nucl-ex/0204014 +nucl-ex/0210022 +nucl-ex/0210023 +nucl-ex/0212003 +nucl-ex/0302017 +nucl-ex/0305005 +nucl-ex/0306026 +nucl-ex/0309001 +nucl-ex/0311011 +nucl-ex/0402020 +nucl-ex/0410002 +nucl-ex/0412017 +nucl-ex/0412018 +nucl-ex/0502006 +nucl-ex/0508001 +nucl-ex/0508023 +nucl-ex/0508034 +nucl-ex/0509015 +nucl-ex/0509035 +nucl-ex/0509040 +nucl-ex/0510002 +nucl-ex/0510005 +nucl-ex/0510007 +nucl-ex/0510015 +nucl-ex/0510020 +nucl-ex/0510021 +nucl-ex/0605020 +nucl-ex/9502001 +nucl-ex/9502002 +nucl-ex/9607003 +nucl-ex/9610011 +nucl-ex/9612001 +nucl-ex/9805001 +nucl-ex/9805004 +nucl-ex/9805005 +nucl-ex/9810008 +nucl-ex/9905002 +nucl-th/0001060 +nucl-th/0002019 +nucl-th/0002044 +nucl-th/0002048 +nucl-th/0003020 +nucl-th/0003028 +nucl-th/0003035 +nucl-th/0004012 +nucl-th/0004054 +nucl-th/0005008 +nucl-th/0005023 +nucl-th/0005032 +nucl-th/0005040 +nucl-th/0005049 +nucl-th/0005053 +nucl-th/0005058 +nucl-th/0006041 +nucl-th/0007049 +nucl-th/0008007 +nucl-th/0008044 +nucl-th/0009065 +nucl-th/0009074 +nucl-th/0010092 +nucl-th/0012028 +nucl-th/0012040 +nucl-th/0012068 +nucl-th/0012071 +nucl-th/0012080 +nucl-th/0101019 +nucl-th/0102037 +nucl-th/0103009 +nucl-th/0103084 +nucl-th/0104076 +nucl-th/0105005 +nucl-th/0105066 +nucl-th/0106060 +nucl-th/0107019 +nucl-th/0107024 +nucl-th/0109021 +nucl-th/0109039 +nucl-th/0109076 +nucl-th/0110009 +nucl-th/0110055 +nucl-th/0110062 +nucl-th/0111008 +nucl-th/0111065 +nucl-th/0111073 +nucl-th/0112007 +nucl-th/0112040 +nucl-th/0112046 +nucl-th/0112051 +nucl-th/0201001 +nucl-th/0201048 +nucl-th/0201063 +nucl-th/0202040 +nucl-th/0202057 +nucl-th/0202084 +nucl-th/0203003 +nucl-th/0203014 +nucl-th/0203029 +nucl-th/0203056 +nucl-th/0204009 +nucl-th/0204032 +nucl-th/0205011 +nucl-th/0205015 +nucl-th/0205046 +nucl-th/0206007 +nucl-th/0206067 +nucl-th/0207001 +nucl-th/0207013 +nucl-th/0207014 +nucl-th/0207079 +nucl-th/0208046 +nucl-th/0208066 +nucl-th/0209009 +nucl-th/0209028 +nucl-th/0210036 +nucl-th/0210070 +nucl-th/0211001 +nucl-th/0212024 +nucl-th/0212025 +nucl-th/0212055 +nucl-th/0212075 +nucl-th/0212079 +nucl-th/0212085 +nucl-th/0212087 +nucl-th/0212106 +nucl-th/0212110 +nucl-th/0301097 +nucl-th/0302015 +nucl-th/0302069 +nucl-th/0304002 +nucl-th/0304008 +nucl-th/0304058 +nucl-th/0305015 +nucl-th/0305057 +nucl-th/0306037 +nucl-th/0308008 +nucl-th/0308024 +nucl-th/0309067 +nucl-th/0309077 +nucl-th/0310057 +nucl-th/0310089 +nucl-th/0312023 +nucl-th/0312099 +nucl-th/0312120 +nucl-th/0402022 +nucl-th/0403004 +nucl-th/0403018 +nucl-th/0403064 +nucl-th/0404001 +nucl-th/0404009 +nucl-th/0405071 +nucl-th/0406023 +nucl-th/0406031 +nucl-th/0406058 +nucl-th/0407010 +nucl-th/0407018 +nucl-th/0407080 +nucl-th/0408063 +nucl-th/0409016 +nucl-th/0410067 +nucl-th/0410082 +nucl-th/0410107 +nucl-th/0410113 +nucl-th/0411008 +nucl-th/0411044 +nucl-th/0411114 +nucl-th/0412034 +nucl-th/0501012 +nucl-th/0501042 +nucl-th/0501072 +nucl-th/0502058 +nucl-th/0503009 +nucl-th/0503037 +nucl-th/0504003 +nucl-th/0504076 +nucl-th/0505004 +nucl-th/0505048 +nucl-th/0506044 +nucl-th/0506083 +nucl-th/0507014 +nucl-th/0507016 +nucl-th/0507046 +nucl-th/0507057 +nucl-th/0508002 +nucl-th/0509011 +nucl-th/0509024 +nucl-th/0509053 +nucl-th/0509056 +nucl-th/0509067 +nucl-th/0509071 +nucl-th/0509090 +nucl-th/0509091 +nucl-th/0509096 +nucl-th/0509097 +nucl-th/0509104 +nucl-th/0509105 +nucl-th/0510001 +nucl-th/0510003 +nucl-th/0510007 +nucl-th/0510011 +nucl-th/0510024 +nucl-th/0601079 +nucl-th/0602013 +nucl-th/0602065 +nucl-th/0605010 +nucl-th/0605071 +nucl-th/0606046 +nucl-th/0608012 +nucl-th/0610032 +nucl-th/0610100 +nucl-th/0612016 +nucl-th/9212010 +nucl-th/9212016 +nucl-th/9301013 +nucl-th/9305012 +nucl-th/9309027 +nucl-th/9310017 +nucl-th/9311023 +nucl-th/9311030 +nucl-th/9405024 +nucl-th/9501001 +nucl-th/9501002 +nucl-th/9501003 +nucl-th/9501006 +nucl-th/9501007 +nucl-th/9501008 +nucl-th/9501012 +nucl-th/9501013 +nucl-th/9501014 +nucl-th/9501017 +nucl-th/9501018 +nucl-th/9501019 +nucl-th/9501021 +nucl-th/9501024 +nucl-th/9501027 +nucl-th/9501028 +nucl-th/9501031 +nucl-th/9501033 +nucl-th/9501036 +nucl-th/9502001 +nucl-th/9502002 +nucl-th/9502003 +nucl-th/9502004 +nucl-th/9502005 +nucl-th/9502006 +nucl-th/9502007 +nucl-th/9502009 +nucl-th/9502010 +nucl-th/9502011 +nucl-th/9502013 +nucl-th/9502015 +nucl-th/9502016 +nucl-th/9502017 +nucl-th/9502018 +nucl-th/9502019 +nucl-th/9502020 +nucl-th/9502021 +nucl-th/9502022 +nucl-th/9502023 +nucl-th/9502024 +nucl-th/9502025 +nucl-th/9502026 +nucl-th/9502028 +nucl-th/9502029 +nucl-th/9502030 +nucl-th/9502031 +nucl-th/9502032 +nucl-th/9502033 +nucl-th/9502034 +nucl-th/9502035 +nucl-th/9502036 +nucl-th/9502037 +nucl-th/9502038 +nucl-th/9502039 +nucl-th/9502041 +nucl-th/9502043 +nucl-th/9502044 +nucl-th/9502046 +nucl-th/9502047 +nucl-th/9503002 +nucl-th/9503003 +nucl-th/9503004 +nucl-th/9503005 +nucl-th/9503008 +nucl-th/9503009 +nucl-th/9503011 +nucl-th/9503012 +nucl-th/9503016 +nucl-th/9503017 +nucl-th/9503025 +nucl-th/9505023 +nucl-th/9505029 +nucl-th/9506033 +nucl-th/9508018 +nucl-th/9509022 +nucl-th/9510004 +nucl-th/9511001 +nucl-th/9603020 +nucl-th/9606014 +nucl-th/9606042 +nucl-th/9607008 +nucl-th/9607055 +nucl-th/9608058 +nucl-th/9608059 +nucl-th/9609009 +nucl-th/9609018 +nucl-th/9609025 +nucl-th/9609045 +nucl-th/9609064 +nucl-th/9609065 +nucl-th/9610015 +nucl-th/9610017 +nucl-th/9610034 +nucl-th/9611001 +nucl-th/9611002 +nucl-th/9611005 +nucl-th/9611009 +nucl-th/9611010 +nucl-th/9612009 +nucl-th/9612017 +nucl-th/9612032 +nucl-th/9612039 +nucl-th/9612051 +nucl-th/9612057 +nucl-th/9701008 +nucl-th/9701011 +nucl-th/9701043 +nucl-th/9701050 +nucl-th/9701052 +nucl-th/9701056 +nucl-th/9702002 +nucl-th/9702004 +nucl-th/9702005 +nucl-th/9702038 +nucl-th/9702040 +nucl-th/9703018 +nucl-th/9703025 +nucl-th/9703031 +nucl-th/9703032 +nucl-th/9704018 +nucl-th/9704021 +nucl-th/9704037 +nucl-th/9704038 +nucl-th/9704039 +nucl-th/9704040 +nucl-th/9704047 +nucl-th/9704055 +nucl-th/9704063 +nucl-th/9705002 +nucl-th/9705003 +nucl-th/9705005 +nucl-th/9705011 +nucl-th/9706005 +nucl-th/9706010 +nucl-th/9706052 +nucl-th/9706069 +nucl-th/9706075 +nucl-th/9706082 +nucl-th/9706083 +nucl-th/9707009 +nucl-th/9707050 +nucl-th/9708056 +nucl-th/9709021 +nucl-th/9710022 +nucl-th/9710026 +nucl-th/9710060 +nucl-th/9710066 +nucl-th/9711008 +nucl-th/9711049 +nucl-th/9712039 +nucl-th/9712061 +nucl-th/9712078 +nucl-th/9801001 +nucl-th/9801043 +nucl-th/9802059 +nucl-th/9802061 +nucl-th/9802079 +nucl-th/9803005 +nucl-th/9803010 +nucl-th/9803048 +nucl-th/9803049 +nucl-th/9803051 +nucl-th/9804064 +nucl-th/9804074 +nucl-th/9805048 +nucl-th/9806002 +nucl-th/9806021 +nucl-th/9807029 +nucl-th/9808020 +nucl-th/9809028 +nucl-th/9809061 +nucl-th/9810035 +nucl-th/9810036 +nucl-th/9810059 +nucl-th/9810061 +nucl-th/9811037 +nucl-th/9811049 +nucl-th/9811071 +nucl-th/9812030 +nucl-th/9812074 +nucl-th/9812076 +nucl-th/9901023 +nucl-th/9901092 +nucl-th/9901097 +nucl-th/9903008 +nucl-th/9904011 +nucl-th/9904022 +nucl-th/9905052 +nucl-th/9906014 +nucl-th/9906070 +nucl-th/9907001 +nucl-th/9907009 +nucl-th/9907022 +nucl-th/9907050 +nucl-th/9907072 +nucl-th/9908012 +nucl-th/9908068 +nucl-th/9908085 +nucl-th/9909007 +nucl-th/9910068 +nucl-th/9911002 +nucl-th/9911019 +nucl-th/9911027 +nucl-th/9911054 +nucl-th/9912001 +nucl-th/9912005 +nucl-th/9912039 +nucl-th/9912049 +patt-sol/9502001 Pattern Formation and Solitons +patt-sol/9502003 Pattern Formation and Solitons +patt-sol/9502007 Pattern Formation and Solitons +patt-sol/9504001 Pattern Formation and Solitons +patt-sol/9506002 Pattern Formation and Solitons +patt-sol/9509001 Pattern Formation and Solitons +patt-sol/9604004 Pattern Formation and Solitons +patt-sol/9607002 Pattern Formation and Solitons +patt-sol/9609004 Pattern Formation and Solitons +patt-sol/9611001 Pattern Formation and Solitons +patt-sol/9701001 Pattern Formation and Solitons +patt-sol/9702006 Pattern Formation and Solitons +patt-sol/9703003 Pattern Formation and Solitons +patt-sol/9703009 Pattern Formation and Solitons +patt-sol/9705009 Pattern Formation and Solitons +patt-sol/9706007 Pattern Formation and Solitons +patt-sol/9709005 Pattern Formation and Solitons +patt-sol/9710002 Pattern Formation and Solitons +patt-sol/9712004 Pattern Formation and Solitons +patt-sol/9802004 Pattern Formation and Solitons +patt-sol/9804005 Pattern Formation and Solitons +patt-sol/9808004 Pattern Formation and Solitons +patt-sol/9808005 Pattern Formation and Solitons +patt-sol/9810005 Pattern Formation and Solitons +physics/0001005 Classical Physics +physics/0001024 Atomic Physics +physics/0001027 Classical Physics +physics/0004045 Atomic Physics +physics/0004062 Atomic Physics +physics/0004072 Physics Education +physics/0004073 Atomic Physics +physics/0005034 General Physics +physics/0005036 Chemical Physics +physics/0005050 Plasma Physics +physics/0005054 Fluid Dynamics +physics/0005058 Computational Physics +physics/0005073 Computational Physics +physics/0005074 Biological Physics +physics/0006023 Physics Education +physics/0006025 Atomic Physics +physics/0006065 History and Philosophy of Physics +physics/0006066 Atomic Physics +physics/0007007 Fluid Dynamics +physics/0007015 Computational Physics +physics/0007054 Atomic Physics +physics/0007072 Accelerator Physics +physics/0007078 General Physics +physics/0007087 Biological Physics +physics/0008016 Biological Physics +physics/0008030 Accelerator Physics +physics/0008033 Accelerator Physics +physics/0008086 Accelerator Physics +physics/0008112 Accelerator Physics +physics/0008121 Accelerator Physics +physics/0008129 Accelerator Physics +physics/0008134 Accelerator Physics +physics/0009037 Classical Physics +physics/0009091 Atomic Physics +physics/0009095 Accelerator Physics +physics/0010021 Fluid Dynamics +physics/0010025 Chemical Physics +physics/0011002 Biological Physics +physics/0011038 General Physics +physics/0011059 Plasma Physics +physics/0012030 Computational Physics +physics/0101036 Fluid Dynamics +physics/0101090 Accelerator Physics +physics/0102038 Optics +physics/0104009 General Physics +physics/0104043 Atomic Physics +physics/0104072 Plasma Physics +physics/0104077 Fluid Dynamics +physics/0105048 Physics Education +physics/0105076 Atomic Physics +physics/0105078 Atomic and Molecular Clusters +physics/0106004 Plasma Physics +physics/0106073 General Physics +physics/0107024 Atomic Physics +physics/0108007 Chemical Physics +physics/0108018 Optics +physics/0108031 General Physics +physics/0110048 Geophysics +physics/0110052 Accelerator Physics +physics/0110056 Atomic Physics +physics/0111033 Accelerator Physics +physics/0111039 Accelerator Physics +physics/0111043 Instrumentation and Detectors +physics/0111086 Chemical Physics +physics/0111140 Plasma Physics +physics/0111142 Accelerator Physics +physics/0111157 Chemical Physics +physics/0111164 Accelerator Physics +physics/0111178 Atomic Physics +physics/0111196 Classical Physics +physics/0111209 Accelerator Physics +physics/0112079 Chemical Physics +physics/0201020 General Physics +physics/0201040 General Physics +physics/0202032 Computational Physics +physics/0203042 Plasma Physics +physics/0204081 Atomic Physics +physics/0205043 Biological Physics +physics/0205051 Atomic Physics +physics/0205060 Chemical Physics +physics/0205075 Plasma Physics +physics/0206028 Atomic Physics +physics/0206038 Chemical Physics +physics/0207007 Atomic Physics +physics/0207024 Biological Physics +physics/0207025 Computational Physics +physics/0207035 Plasma Physics +physics/0207046 Plasma Physics +physics/0207119 Plasma Physics +physics/0208041 Plasma Physics +physics/0208053 Plasma Physics +physics/0209016 Classical Physics +physics/0209071 Atomic Physics +physics/0209078 Chemical Physics +physics/0209083 Atomic Physics +physics/0209099 Biological Physics +physics/0210031 Classical Physics +physics/0210036 Atomic Physics +physics/0210037 General Physics +physics/0210047 Classical Physics +physics/0210059 Instrumentation and Detectors +physics/0210081 Classical Physics +physics/0210114 Plasma Physics +physics/0210131 Atomic Physics +physics/0211009 Plasma Physics +physics/0211064 Medical Physics +physics/0211067 Optics +physics/0211123 Classical Physics +physics/0212040 Atomic Physics +physics/0212111 Atomic Physics +physics/0301045 Optics +physics/0302009 Chemical Physics +physics/0302023 Atomic Physics +physics/0302069 Accelerator Physics +physics/0302078 Atomic and Molecular Clusters +physics/0302086 Chemical Physics +physics/0303027 Biological Physics +physics/0303036 Physics Education +physics/0303044 Fluid Dynamics +physics/0303112 Computational Physics +physics/0304012 Atomic Physics +physics/0304073 Chemical Physics +physics/0304080 Fluid Dynamics +physics/0304112 Atomic Physics +physics/0305043 Optics +physics/0305057 Atomic Physics +physics/0306008 Data Analysis, Statistics and Probability +physics/0306050 Space Physics +physics/0306125 Chemical Physics +physics/0306137 Plasma Physics +physics/0307031 Biological Physics +physics/0307061 Computational Physics +physics/0307072 Biological Physics +physics/0307117 Data Analysis, Statistics and Probability +physics/0308071 Plasma Physics +physics/0308081 Fluid Dynamics +physics/0308095 Optics +physics/0308109 Physics Education +physics/0309026 Biological Physics +physics/0309030 Optics +physics/0309103 Atomic and Molecular Clusters +physics/0309107 Atomic Physics +physics/0311006 Optics +physics/0311085 Chemical Physics +physics/0312042 Accelerator Physics +physics/0401112 Classical Physics +physics/0403035 Classical Physics +physics/0403051 Atomic Physics +physics/0403071 Atomic and Molecular Clusters +physics/0403131 Plasma Physics +physics/0404043 Accelerator Physics +physics/0404053 Optics +physics/0404122 Optics +physics/0405134 Biological Physics +physics/0405137 Atomic Physics +physics/0405145 Geophysics +physics/0406003 Instrumentation and Detectors +physics/0406015 Atomic Physics +physics/0406021 Classical Physics +physics/0406034 Fluid Dynamics +physics/0406074 Atomic Physics +physics/0406077 Atomic Physics +physics/0406126 Chemical Physics +physics/0406132 Plasma Physics +physics/0406158 Physics Education +physics/0407031 Atomic and Molecular Clusters +physics/0407129 Chemical Physics +physics/0407141 Atomic Physics +physics/0408130 Instrumentation and Detectors +physics/0409060 Atomic Physics +physics/0409075 Instrumentation and Detectors +physics/0409094 Optics +physics/0409144 Atomic Physics +physics/0410010 Atomic and Molecular Clusters +physics/0410073 Space Physics +physics/0410150 Physics Education +physics/0410185 Plasma Physics +physics/0410262 Classical Physics +physics/0410268 Plasma Physics +physics/0410276 Plasma Physics +physics/0411027 Chemical Physics +physics/0412048 Atomic Physics +physics/0412071 Optics +physics/0501106 Atmospheric and Oceanic Physics +physics/0501145 Atomic Physics +physics/0501154 Atomic Physics +physics/0501165 Atomic Physics +physics/0502068 Data Analysis, Statistics and Probability +physics/0502113 Atomic Physics +physics/0502120 Accelerator Physics +physics/0503010 Optics +physics/0503023 Physics and Society +physics/0503198 Physics Education +physics/0504016 Physics Education +physics/0504054 Biological Physics +physics/0505015 Geophysics +physics/0505024 Optics +physics/0506060 Classical Physics +physics/0506083 General Physics +physics/0506099 Plasma Physics +physics/0506171 Instrumentation and Detectors +physics/0506204 Physics and Society +physics/0506216 Chemical Physics +physics/0507026 Fluid Dynamics +physics/0507077 Atomic Physics +physics/0508025 Physics and Society +physics/0508046 Accelerator Physics +physics/0508123 Popular Physics +physics/0508158 Physics and Society +physics/0508183 Popular Physics +physics/0508226 Atmospheric and Oceanic Physics +physics/0508228 Physics and Society +physics/0509037 Data Analysis, Statistics and Probability +physics/0509067 Optics +physics/0509167 General Physics +physics/0509177 Atmospheric and Oceanic Physics +physics/0509197 Atomic Physics +physics/0509204 Atomic Physics +physics/0509219 General Physics +physics/0509223 General Physics +physics/0509233 Instrumentation and Detectors +physics/0509239 Atomic Physics +physics/0509240 Physics and Society +physics/0509241 Fluid Dynamics +physics/0509245 Physics and Society +physics/0509250 Physics and Society +physics/0509251 Data Analysis, Statistics and Probability +physics/0509253 Atomic Physics +physics/0509263 Optics +physics/0510001 Optics +physics/0510002 Optics +physics/0510013 Classical Physics +physics/0510024 Chemical Physics +physics/0510026 Classical Physics +physics/0510032 Optics +physics/0510033 Optics +physics/0510047 Data Analysis, Statistics and Probability +physics/0511144 Classical Physics +physics/0511208 Atmospheric and Oceanic Physics +physics/0512023 Classical Physics +physics/0512078 Physics and Society +physics/0601114 Physics and Society +physics/0601205 Data Analysis, Statistics and Probability +physics/0603010 Chemical Physics +physics/0603093 Atomic Physics +physics/0604017 Chemical Physics +physics/0607240 Data Analysis, Statistics and Probability +physics/0608135 Accelerator Physics +physics/0612124 Physics and Society +physics/0701190 Data Analysis, Statistics and Probability +physics/0702011 Classical Physics +physics/9610013 Popular Physics +physics/9610023 Geophysics +physics/9611001 Accelerator Physics +physics/9611004 Atomic Physics +physics/9611005 Atomic Physics +physics/9611013 Chemical Physics +physics/9612013 Computational Physics +physics/9612018 Plasma Physics +physics/9701022 Accelerator Physics +physics/9702012 Chemical Physics +physics/9703021 Plasma Physics +physics/9704019 Atomic Physics +physics/9705001 General Physics +physics/9705008 Biological Physics +physics/9705016 General Physics +physics/9705024 Fluid Dynamics +physics/9707021 Space Physics +physics/9708026 Biological Physics +physics/9710035 Accelerator Physics +physics/9710044 Atomic Physics +physics/9711014 Optics +physics/9801002 Atomic and Molecular Clusters +physics/9801005 Instrumentation and Detectors +physics/9803011 Computational Physics +physics/9804030 Medical Physics +physics/9805014 Classical Physics +physics/9805019 Atomic Physics +physics/9805020 Atomic Physics +physics/9805021 Atomic Physics +physics/9805024 Physics Education +physics/9806015 Biological Physics +physics/9807005 Plasma Physics +physics/9807012 History and Philosophy of Physics +physics/9807027 Atomic Physics +physics/9807042 Plasma Physics +physics/9808048 Atomic Physics +physics/9809013 Atomic Physics +physics/9809020 Atomic Physics +physics/9809024 Fluid Dynamics +physics/9810012 Accelerator Physics +physics/9810014 Plasma Physics +physics/9810052 Biological Physics +physics/9811024 Geophysics +physics/9811039 Computational Physics +physics/9901017 Atomic Physics +physics/9901027 Computational Physics +physics/9903020 Atomic Physics +physics/9903037 Atomic Physics +physics/9904016 General Physics +physics/9909017 Biological Physics +physics/9909040 General Physics +physics/9910023 Atomic Physics +physics/9910050 General Physics +physics/9911002 Fluid Dynamics +physics/9911005 Chemical Physics +physics/9911045 Optics +physics/9911052 Atomic and Molecular Clusters +physics/9912003 Chemical Physics +physics/9912012 Biological Physics +physics/9912026 Fluid Dynamics +physics/9912042 Computational Physics +physics/9912052 Atomic Physics +plasm-ph/9502003 Plasma Physics +plasm-ph/9511001 Plasma Physics +q-alg/9501002 Quantum Algebra +q-alg/9501006 Quantum Algebra +q-alg/9501007 Quantum Algebra +q-alg/9501010 Quantum Algebra +q-alg/9501011 Quantum Algebra +q-alg/9501012 Quantum Algebra +q-alg/9501013 Quantum Algebra +q-alg/9501015 Quantum Algebra +q-alg/9501019 Quantum Algebra +q-alg/9501025 Quantum Algebra +q-alg/9501029 Quantum Algebra +q-alg/9501030 Quantum Algebra +q-alg/9501031 Quantum Algebra +q-alg/9502001 Quantum Algebra +q-alg/9502004 Quantum Algebra +q-alg/9502006 Quantum Algebra +q-alg/9502007 Quantum Algebra +q-alg/9502010 Quantum Algebra +q-alg/9502012 Quantum Algebra +q-alg/9502014 Quantum Algebra +q-alg/9502016 Quantum Algebra +q-alg/9503003 Quantum Algebra +q-alg/9503004 Quantum Algebra +q-alg/9503005 Quantum Algebra +q-alg/9503008 Quantum Algebra +q-alg/9503009 Quantum Algebra +q-alg/9503010 Quantum Algebra +q-alg/9503012 Quantum Algebra +q-alg/9503018 Quantum Algebra +q-alg/9504025 Quantum Algebra +q-alg/9505013 Quantum Algebra +q-alg/9506017 Quantum Algebra +q-alg/9508013 Quantum Algebra +q-alg/9508017 Quantum Algebra +q-alg/9508019 Quantum Algebra +q-alg/9601008 Quantum Algebra +q-alg/9601016 Quantum Algebra +q-alg/9601021 Quantum Algebra +q-alg/9602017 Quantum Algebra +q-alg/9603021 Quantum Algebra +q-alg/9604008 Quantum Algebra +q-alg/9604021 Quantum Algebra +q-alg/9605013 Quantum Algebra +q-alg/9606001 Quantum Algebra +q-alg/9607004 Quantum Algebra +q-alg/9607020 Quantum Algebra +q-alg/9608006 Quantum Algebra +q-alg/9609012 Quantum Algebra +q-alg/9609022 Quantum Algebra +q-alg/9609031 Quantum Algebra +q-alg/9610009 Quantum Algebra +q-alg/9610028 Quantum Algebra +q-alg/9611005 Quantum Algebra +q-alg/9612004 Quantum Algebra +q-alg/9612009 Quantum Algebra +q-alg/9612029 Quantum Algebra +q-alg/9701004 Quantum Algebra +q-alg/9701040 Quantum Algebra +q-alg/9702024 Quantum Algebra +q-alg/9703006 Quantum Algebra +q-alg/9703019 Quantum Algebra +q-alg/9703022 Quantum Algebra +q-alg/9703030 Quantum Algebra +q-alg/9703041 Quantum Algebra +q-alg/9703045 Quantum Algebra +q-alg/9704001 Quantum Algebra +q-alg/9704012 Quantum Algebra +q-alg/9705004 Quantum Algebra +q-alg/9705012 Quantum Algebra +q-alg/9706002 Quantum Algebra +q-alg/9707020 Quantum Algebra +q-alg/9707033 Quantum Algebra +q-alg/9710005 Quantum Algebra +q-alg/9710025 Quantum Algebra +q-alg/9710033 Quantum Algebra +q-alg/9711004 Quantum Algebra +q-alg/9711024 Quantum Algebra +q-alg/9712038 Quantum Algebra +q-bio/0310013 Biomolecules +q-bio/0312024 Other Quantitative Biology +q-bio/0401030 Biomolecules +q-bio/0408018 Biomolecules +q-bio/0409029 Biomolecules +q-bio/0409032 Neurons and Cognition +q-bio/0410013 Populations and Evolution +q-bio/0411010 Biomolecules +q-bio/0502013 Molecular Networks +q-bio/0503015 Populations and Evolution +q-bio/0504002 Genomics +q-bio/0504027 Neurons and Cognition +q-bio/0505044 Quantitative Methods +q-bio/0505056 Populations and Evolution +q-bio/0506027 Populations and Evolution +q-bio/0506039 Tissues and Organs +q-bio/0509037 Populations and Evolution +q-bio/0509039 Populations and Evolution +q-bio/0509043 Genomics +q-bio/0510004 Populations and Evolution +q-bio/0510008 Populations and Evolution +q-bio/0605020 Populations and Evolution +quant-ph/0001080 +quant-ph/0002070 +quant-ph/0002086 +quant-ph/0003007 +quant-ph/0003013 +quant-ph/0003073 +quant-ph/0003129 +quant-ph/0003134 +quant-ph/0004003 +quant-ph/0004009 +quant-ph/0004038 +quant-ph/0004039 +quant-ph/0004082 +quant-ph/0005065 +quant-ph/0005089 +quant-ph/0005119 +quant-ph/0005120 +quant-ph/0005125 +quant-ph/0006091 +quant-ph/0007007 +quant-ph/0007013 +quant-ph/0007052 +quant-ph/0007063 +quant-ph/0007081 +quant-ph/0007093 +quant-ph/0008051 +quant-ph/0008082 +quant-ph/0008126 +quant-ph/0008127 +quant-ph/0008131 +quant-ph/0008133 +quant-ph/0009012 +quant-ph/0009035 +quant-ph/0009036 +quant-ph/0009051 +quant-ph/0009064 +quant-ph/0009065 +quant-ph/0009079 +quant-ph/0010077 +quant-ph/0010107 +quant-ph/0011024 +quant-ph/0011056 +quant-ph/0011066 +quant-ph/0011076 +quant-ph/0011123 +quant-ph/0012023 +quant-ph/0012026 +quant-ph/0012090 +quant-ph/0012110 +quant-ph/0012117 +quant-ph/0012118 +quant-ph/0012121 +quant-ph/0012122 +quant-ph/0101004 +quant-ph/0101030 +quant-ph/0101033 +quant-ph/0101037 +quant-ph/0101040 +quant-ph/0101057 +quant-ph/0101063 +quant-ph/0102010 +quant-ph/0102051 +quant-ph/0102124 +quant-ph/0102140 +quant-ph/0103039 +quant-ph/0103064 +quant-ph/0103121 +quant-ph/0103142 +quant-ph/0104047 +quant-ph/0105020 +quant-ph/0105135 +quant-ph/0106011 +quant-ph/0106017 +quant-ph/0106041 +quant-ph/0106044 +quant-ph/0106117 +quant-ph/0107008 +quant-ph/0107019 +quant-ph/0107028 +quant-ph/0107056 +quant-ph/0107079 +quant-ph/0107094 +quant-ph/0107139 +quant-ph/0108009 +quant-ph/0108032 +quant-ph/0108055 +quant-ph/0108073 +quant-ph/0108118 +quant-ph/0109008 +quant-ph/0109021 +quant-ph/0109025 +quant-ph/0109032 +quant-ph/0109042 +quant-ph/0109052 +quant-ph/0109078 +quant-ph/0109084 +quant-ph/0110034 +quant-ph/0110041 +quant-ph/0110061 +quant-ph/0110071 +quant-ph/0110072 +quant-ph/0110126 +quant-ph/0110169 +quant-ph/0111001 +quant-ph/0111139 +quant-ph/0111154 +quant-ph/0112028 +quant-ph/0112062 +quant-ph/0112144 +quant-ph/0112152 +quant-ph/0112162 +quant-ph/0201021 +quant-ph/0201042 +quant-ph/0201072 +quant-ph/0201105 +quant-ph/0201109 +quant-ph/0202026 +quant-ph/0202057 +quant-ph/0202135 +quant-ph/0202168 +quant-ph/0203015 +quant-ph/0203131 +quant-ph/0204124 +quant-ph/0204127 +quant-ph/0204163 +quant-ph/0205095 +quant-ph/0205127 +quant-ph/0205132 +quant-ph/0205144 +quant-ph/0205194 +quant-ph/0206007 +quant-ph/0206025 +quant-ph/0206125 +quant-ph/0206136 +quant-ph/0206148 +quant-ph/0206150 +quant-ph/0206165 +quant-ph/0206192 +quant-ph/0207028 +quant-ph/0207050 +quant-ph/0207112 +quant-ph/0207129 +quant-ph/0207165 +quant-ph/0208004 +quant-ph/0208059 +quant-ph/0208118 +quant-ph/0208131 +quant-ph/0208172 +quant-ph/0209063 +quant-ph/0209085 +quant-ph/0209115 +quant-ph/0209159 +quant-ph/0210028 +quant-ph/0210194 +quant-ph/0211048 +quant-ph/0211050 +quant-ph/0211051 +quant-ph/0211079 +quant-ph/0211088 +quant-ph/0211107 +quant-ph/0211160 +quant-ph/0211195 +quant-ph/0211197 +quant-ph/0212036 +quant-ph/0212048 +quant-ph/0212096 +quant-ph/0212126 +quant-ph/0212162 +quant-ph/0301001 +quant-ph/0301014 +quant-ph/0301026 +quant-ph/0301032 +quant-ph/0301063 +quant-ph/0301118 +quant-ph/0301143 +quant-ph/0301144 +quant-ph/0302007 +quant-ph/0302020 +quant-ph/0302033 +quant-ph/0302046 +quant-ph/0302085 +quant-ph/0302119 +quant-ph/0302198 +quant-ph/0303157 +quant-ph/0304049 +quant-ph/0304073 +quant-ph/0304108 +quant-ph/0305003 +quant-ph/0305050 +quant-ph/0305099 +quant-ph/0305141 +quant-ph/0306065 +quant-ph/0306107 +quant-ph/0306141 +quant-ph/0306156 +quant-ph/0306170 +quant-ph/0306194 +quant-ph/0307023 +quant-ph/0307054 +quant-ph/0307102 +quant-ph/0307152 +quant-ph/0307153 +quant-ph/0307155 +quant-ph/0307202 +quant-ph/0308092 +quant-ph/0308133 +quant-ph/0308156 +quant-ph/0309022 +quant-ph/0309036 +quant-ph/0309131 +quant-ph/0309187 +quant-ph/0309188 +quant-ph/0310042 +quant-ph/0310188 +quant-ph/0311055 +quant-ph/0311107 +quant-ph/0311164 +quant-ph/0311167 +quant-ph/0312033 +quant-ph/0312101 +quant-ph/0312106 +quant-ph/0312109 +quant-ph/0312184 +quant-ph/0312211 +quant-ph/0312212 +quant-ph/0312223 +quant-ph/0401046 +quant-ph/0401060 +quant-ph/0401080 +quant-ph/0401115 +quant-ph/0402025 +quant-ph/0402054 +quant-ph/0402074 +quant-ph/0402100 +quant-ph/0402124 +quant-ph/0402156 +quant-ph/0403033 +quant-ph/0403051 +quant-ph/0403187 +quant-ph/0403227 +quant-ph/0404059 +quant-ph/0404112 +quant-ph/0405040 +quant-ph/0405060 +quant-ph/0405085 +quant-ph/0405106 +quant-ph/0405164 +quant-ph/0405171 +quant-ph/0405184 +quant-ph/0405190 +quant-ph/0406009 +quant-ph/0406010 +quant-ph/0406081 +quant-ph/0406097 +quant-ph/0406110 +quant-ph/0406166 +quant-ph/0407013 +quant-ph/0407040 +quant-ph/0407093 +quant-ph/0407108 +quant-ph/0407125 +quant-ph/0407136 +quant-ph/0407164 +quant-ph/0407198 +quant-ph/0407201 +quant-ph/0407237 +quant-ph/0407254 +quant-ph/0408025 +quant-ph/0408037 +quant-ph/0408075 +quant-ph/0408082 +quant-ph/0408135 +quant-ph/0408162 +quant-ph/0408164 +quant-ph/0408187 +quant-ph/0409022 +quant-ph/0409038 +quant-ph/0409090 +quant-ph/0409164 +quant-ph/0409187 +quant-ph/0410069 +quant-ph/0410071 +quant-ph/0410077 +quant-ph/0410086 +quant-ph/0410154 +quant-ph/0410233 +quant-ph/0411046 +quant-ph/0411135 +quant-ph/0412088 +quant-ph/0412091 +quant-ph/0412153 +quant-ph/0412168 +quant-ph/0412190 +quant-ph/0412205 +quant-ph/0501054 +quant-ph/0501066 +quant-ph/0501120 +quant-ph/0501128 +quant-ph/0502015 +quant-ph/0502020 +quant-ph/0502021 +quant-ph/0502083 +quant-ph/0502183 +quant-ph/0503040 +quant-ph/0503188 +quant-ph/0503226 +quant-ph/0503233 +quant-ph/0504010 +quant-ph/0504013 +quant-ph/0504108 +quant-ph/0504217 +quant-ph/0505048 +quant-ph/0505086 +quant-ph/0505107 +quant-ph/0505112 +quant-ph/0505170 +quant-ph/0505203 +quant-ph/0505211 +quant-ph/0506041 +quant-ph/0506043 +quant-ph/0506172 +quant-ph/0506262 +quant-ph/0507030 +quant-ph/0507203 +quant-ph/0507220 +quant-ph/0507236 +quant-ph/0507256 +quant-ph/0508043 +quant-ph/0508113 +quant-ph/0509084 +quant-ph/0509138 +quant-ph/0509145 +quant-ph/0509155 +quant-ph/0509191 +quant-ph/0509213 +quant-ph/0510006 +quant-ph/0510021 +quant-ph/0510032 +quant-ph/0510034 +quant-ph/0510043 +quant-ph/0510103 +quant-ph/0510112 +quant-ph/0511142 +quant-ph/0512239 +quant-ph/0602063 +quant-ph/0602207 +quant-ph/0603226 +quant-ph/0604075 +quant-ph/0604085 +quant-ph/0604206 +quant-ph/0606246 +quant-ph/0608027 +quant-ph/0608201 +quant-ph/0608225 +quant-ph/0609093 +quant-ph/0609159 +quant-ph/0610012 +quant-ph/0610075 +quant-ph/0610206 +quant-ph/0702069 +quant-ph/9501002 +quant-ph/9501003 +quant-ph/9501004 +quant-ph/9501006 +quant-ph/9501009 +quant-ph/9501010 +quant-ph/9501013 +quant-ph/9501015 +quant-ph/9501016 +quant-ph/9501018 +quant-ph/9501020 +quant-ph/9501021 +quant-ph/9501023 +quant-ph/9502002 +quant-ph/9502003 +quant-ph/9502004 +quant-ph/9502005 +quant-ph/9502007 +quant-ph/9502008 +quant-ph/9502009 +quant-ph/9502010 +quant-ph/9502012 +quant-ph/9502013 +quant-ph/9502014 +quant-ph/9502016 +quant-ph/9502017 +quant-ph/9502021 +quant-ph/9502023 +quant-ph/9502024 +quant-ph/9502025 +quant-ph/9502026 +quant-ph/9502028 +quant-ph/9503001 +quant-ph/9503002 +quant-ph/9503003 +quant-ph/9503006 +quant-ph/9503007 +quant-ph/9503010 +quant-ph/9503012 +quant-ph/9503016 +quant-ph/9504013 +quant-ph/9506015 +quant-ph/9508005 +quant-ph/9508023 +quant-ph/9509020 +quant-ph/9510002 +quant-ph/9601011 +quant-ph/9601012 +quant-ph/9601014 +quant-ph/9603005 +quant-ph/9603014 +quant-ph/9605007 +quant-ph/9605014 +quant-ph/9605032 +quant-ph/9606001 +quant-ph/9607003 +quant-ph/9607017 +quant-ph/9608008 +quant-ph/9608041 +quant-ph/9609027 +quant-ph/9610022 +quant-ph/9610027 +quant-ph/9611035 +quant-ph/9611052 +quant-ph/9612006 +quant-ph/9612035 +quant-ph/9701018 +quant-ph/9701029 +quant-ph/9702008 +quant-ph/9703001 +quant-ph/9703005 +quant-ph/9703024 +quant-ph/9703026 +quant-ph/9703027 +quant-ph/9704014 +quant-ph/9704020 +quant-ph/9705020 +quant-ph/9705023 +quant-ph/9706008 +quant-ph/9706021 +quant-ph/9707039 +quant-ph/9709016 +quant-ph/9709038 +quant-ph/9709041 +quant-ph/9710009 +quant-ph/9711007 +quant-ph/9711011 +quant-ph/9711064 +quant-ph/9712047 +quant-ph/9712057 +quant-ph/9801066 +quant-ph/9802071 +quant-ph/9803074 +quant-ph/9804007 +quant-ph/9804012 +quant-ph/9805084 +quant-ph/9806011 +quant-ph/9806037 +quant-ph/9806050 +quant-ph/9806072 +quant-ph/9806093 +quant-ph/9807004 +quant-ph/9807014 +quant-ph/9807016 +quant-ph/9807020 +quant-ph/9807025 +quant-ph/9807027 +quant-ph/9807037 +quant-ph/9807055 +quant-ph/9807059 +quant-ph/9808002 +quant-ph/9808021 +quant-ph/9809017 +quant-ph/9809034 +quant-ph/9809049 +quant-ph/9809080 +quant-ph/9809081 +quant-ph/9810012 +quant-ph/9810023 +quant-ph/9810068 +quant-ph/9810077 +quant-ph/9811028 +quant-ph/9811056 +quant-ph/9812025 +quant-ph/9812085 +quant-ph/9902066 +quant-ph/9902079 +quant-ph/9903090 +quant-ph/9904024 +quant-ph/9904101 +quant-ph/9906012 +quant-ph/9906049 +quant-ph/9906082 +quant-ph/9906102 +quant-ph/9907053 +quant-ph/9907096 +quant-ph/9907109 +quant-ph/9908025 +quant-ph/9908040 +quant-ph/9908048 +quant-ph/9908064 +quant-ph/9908079 +quant-ph/9909036 +quant-ph/9909058 +quant-ph/9910044 +quant-ph/9910081 +quant-ph/9911061 +quant-ph/9912061 +quant-ph/9912098 +quant-ph/9912107 +solv-int/9501005 Exactly Solvable and Integrable Systems +solv-int/9501006 Exactly Solvable and Integrable Systems +solv-int/9501007 Exactly Solvable and Integrable Systems +solv-int/9501008 Exactly Solvable and Integrable Systems +solv-int/9501009 Exactly Solvable and Integrable Systems +solv-int/9502001 Exactly Solvable and Integrable Systems +solv-int/9502002 Exactly Solvable and Integrable Systems +solv-int/9502006 Exactly Solvable and Integrable Systems +solv-int/9503001 Exactly Solvable and Integrable Systems +solv-int/9504001 Exactly Solvable and Integrable Systems +solv-int/9504002 Exactly Solvable and Integrable Systems +solv-int/9504003 Exactly Solvable and Integrable Systems +solv-int/9505002 Exactly Solvable and Integrable Systems +solv-int/9505003 Exactly Solvable and Integrable Systems +solv-int/9505005 Exactly Solvable and Integrable Systems +solv-int/9505006 Exactly Solvable and Integrable Systems +solv-int/9506001 Exactly Solvable and Integrable Systems +solv-int/9507001 Exactly Solvable and Integrable Systems +solv-int/9507004 Exactly Solvable and Integrable Systems +solv-int/9507005 Exactly Solvable and Integrable Systems +solv-int/9510008 Exactly Solvable and Integrable Systems +solv-int/9511008 Exactly Solvable and Integrable Systems +solv-int/9608001 Exactly Solvable and Integrable Systems +solv-int/9608002 Exactly Solvable and Integrable Systems +solv-int/9609001 Exactly Solvable and Integrable Systems +solv-int/9609004 Exactly Solvable and Integrable Systems +solv-int/9609005 Exactly Solvable and Integrable Systems +solv-int/9609009 Exactly Solvable and Integrable Systems +solv-int/9609010 Exactly Solvable and Integrable Systems +solv-int/9610005 Exactly Solvable and Integrable Systems +solv-int/9610012 Exactly Solvable and Integrable Systems +solv-int/9612004 Exactly Solvable and Integrable Systems +solv-int/9702003 Exactly Solvable and Integrable Systems +solv-int/9703003 Exactly Solvable and Integrable Systems +solv-int/9703006 Exactly Solvable and Integrable Systems +solv-int/9703007 Exactly Solvable and Integrable Systems +solv-int/9703009 Exactly Solvable and Integrable Systems +solv-int/9704001 Exactly Solvable and Integrable Systems +solv-int/9704002 Exactly Solvable and Integrable Systems +solv-int/9704010 Exactly Solvable and Integrable Systems +solv-int/9705006 Exactly Solvable and Integrable Systems +solv-int/9712001 Exactly Solvable and Integrable Systems +solv-int/9801011 Exactly Solvable and Integrable Systems +solv-int/9801022 Exactly Solvable and Integrable Systems +solv-int/9804008 Exactly Solvable and Integrable Systems +solv-int/9805003 Exactly Solvable and Integrable Systems +solv-int/9807002 Exactly Solvable and Integrable Systems +solv-int/9808001 Exactly Solvable and Integrable Systems +solv-int/9901005 Exactly Solvable and Integrable Systems +solv-int/9902010 Exactly Solvable and Integrable Systems +solv-int/9909028 Exactly Solvable and Integrable Systems +solv-int/9910003 Exactly Solvable and Integrable Systems +supr-con/9502001 Superconductivity +supr-con/9502002 Superconductivity +supr-con/9502003 Superconductivity +supr-con/9504001 Superconductivity +supr-con/9602001 Superconductivity +supr-con/9608004 Superconductivity +0706.1203 +1105.2036 Theory +1202.2475 Dynamical Systems +1205.5361 Dynamical Systems +1209.1219 Materials Science +1303.7143 Probability +1306.0894 General Physics +1306.2291 Programming Languages +1307.3761 Number Theory +1307.3763 Algebraic Geometry +1308.1538 Disordered Systems and Neural Networks +1308.2273 Populations and Evolution +1308.5738 Statistics Theory +1309.5026 Quantum Algebra +1310.0414 Symplectic Geometry +1310.3237 Number Theory +1310.8608 Group Theory +1312.4171 Algebraic Geometry +1312.7731 Superconductivity +1401.0310 Classical Analysis and ODEs +1401.3325 Logic in Computer Science +1401.5354 Combinatorics +1401.7107 Geometric Topology +1401.7824 Numerical Analysis +1401.7829 Numerical Analysis +1402.4846 Analysis of PDEs +1402.5763 Statistics Theory +1403.1922 Methodology +1403.2854 Probability +1403.3307 Symplectic Geometry +1404.1022 Symplectic Geometry +1405.6374 Probability +1406.4460 Differential Geometry +1406.6770 Metric Geometry +1407.1030 +1407.2392 Phenomenology +1407.4348 Cosmology and Nongalactic Astrophysics +1407.6598 Populations and Evolution +1407.6921 Phenomenology +1407.7689 Superconductivity +1408.4778 Algebraic Geometry +1409.3401 Algebraic Geometry +1409.7586 Optimization and Control +1410.3623 Number Theory +1410.7632 Computer Vision and Pattern Recognition +1411.0574 Phenomenology +1411.3892 Dynamical Systems +1411.7182 Number Theory +1412.4352 Optimization and Control +1501.01892 Optimization and Control +1501.03344 +1501.04837 Theory +1501.05707 Optics +1501.06423 Analysis of PDEs +1502.04242 Probability +1502.07086 +1503.00681 +1503.02683 Theory +1503.07179 +1503.08429 Theory +1503.09177 +1504.00790 +1504.02176 Phenomenology +1504.04933 Symplectic Geometry +1504.05108 Materials Science +1504.06430 +1504.07407 Dynamical Systems +1505.00304 Classical Analysis and ODEs +1505.00560 Probability +1505.02265 Analysis of PDEs +1505.04193 Strongly Correlated Electrons +1505.07543 Social and Information Networks +1506.00070 Superconductivity +1506.00139 Group Theory +1506.00143 Group Theory +1506.00741 Optimization and Control +1506.01040 General Physics +1506.02126 Numerical Analysis +1506.03040 Information Theory +1506.05820 Probability +1506.06561 Mesoscale and Nanoscale Physics +1506.06604 +1506.07884 +1506.08453 +1506.08808 +1506.08998 Phenomenology +1507.03476 Probability +1507.03983 Materials Science +1507.04712 Superconductivity +1507.04717 Machine Learning +1507.06253 Materials Science +1507.06842 +1507.08860 Biological Physics +1507.08885 Differential Geometry +1507.08909 +1508.03121 Theory +1508.03643 Number Theory +1508.05076 +1508.06073 Computer Vision and Pattern Recognition +1508.06966 Cell Behavior +1509.00996 Programming Languages +1509.01947 Computer Vision and Pattern Recognition +1509.03979 Data Structures and Algorithms +1509.06189 Optimization and Control +1509.07299 +1509.07324 +1509.07334 +1509.08053 Combinatorics +1509.08260 Atomic Physics +1509.08689 Optimization and Control +1509.08734 +1510.00097 Methodology +1510.01051 Superconductivity +1510.02448 Information Theory +1510.04519 Instrumentation and Detectors +1510.04550 Economics +1510.05409 Mesoscale and Nanoscale Physics +1510.05558 Quantum Gases +1510.05613 Computer Vision and Pattern Recognition +1510.05669 Phenomenology +1510.06183 Statistical Mechanics +1510.07019 +1510.07653 Statistical Mechanics +1510.08085 +1510.08821 +1510.08952 Information Theory +1510.09085 Physics and Society +1511.00371 Differential Geometry +1511.02806 +1511.02835 +1511.02917 Computer Vision and Pattern Recognition +1511.04346 Atomic Physics +1511.05111 Physics and Society +1511.05783 Algebraic Topology +1511.06528 Instrumentation and Detectors +1511.08855 Artificial Intelligence +1511.09351 Materials Science +1512.00568 Phenomenology +1512.01807 Mesoscale and Nanoscale Physics +1512.03367 +1512.03697 Data Structures and Algorithms +1512.04240 +1512.05192 General Physics +1512.05594 Dynamical Systems +1512.05910 Experiment +1512.06380 Number Theory +1512.07258 Social and Information Networks +1512.09133 Neurons and Cognition +1601.01063 Combinatorics +1601.01185 Quantum Gases +1601.03091 Phenomenology +1601.03479 Systems and Control +1601.03792 Algebraic Geometry +1601.03884 Cosmology and Nongalactic Astrophysics +1601.04256 Differential Geometry +1601.06905 Materials Science +1602.01161 Information Theory +1602.01607 High Energy Astrophysical Phenomena +1602.02356 Phenomenology +1602.02405 Combinatorics +1602.02830 Learning +1602.04003 Numerical Analysis +1602.04495 Classical Analysis and ODEs +1602.05836 Instrumentation and Methods for Astrophysics +1602.06307 Classical Analysis and ODEs +1602.06451 Number Theory +1602.06500 Information Theory +1602.06792 High Energy Astrophysical Phenomena +1602.07190 Plasma Physics +1602.07258 +1602.08395 Mesoscale and Nanoscale Physics +1602.08403 Mesoscale and Nanoscale Physics +1602.09003 Superconductivity +1603.00442 Populations and Evolution +1603.00461 Astrophysics of Galaxies +1603.01025 Neural and Evolutionary Computing +1603.01283 Number Theory +1603.01350 Differential Geometry +1603.01542 Cryptography and Security +1603.02346 Rings and Algebras +1603.03114 +1603.03217 Mesoscale and Nanoscale Physics +1603.03456 Geometric Topology +1603.03637 Probability +1603.03741 Combinatorics +1603.03966 Instrumentation and Methods for Astrophysics +1603.04566 Algebraic Geometry +1603.04700 Quantum Gases +1603.04751 +1603.04870 Numerical Analysis +1603.04933 Statistics Theory +1603.05145 Computer Vision and Pattern Recognition +1603.05243 Combinatorics +1603.05245 Theory +1603.05257 High Energy Astrophysical Phenomena +1603.05260 Atmospheric and Oceanic Physics +1603.05262 Theory +1603.05264 Differential Geometry +1603.05265 Applications +1603.05267 Optics +1603.05269 Information Theory +1603.05271 Combinatorics +1603.05274 Information Theory +1603.05290 Statistics Theory +1603.05291 Statistical Mechanics +1603.05292 +1603.05294 General Finance +1603.05300 Statistical Mechanics +1603.05303 Number Theory +1603.05306 Optics +1603.05307 Systems and Control +1603.05308 Probability +1603.05310 Computational Geometry +1603.05311 Populations and Evolution +1603.05314 Artificial Intelligence +1603.05318 Analysis of PDEs +1603.05319 Quantitative Methods +1603.05321 Functional Analysis +1603.05322 Probability +1603.05323 Theory +1603.05329 Analysis of PDEs +1603.05330 Group Theory +1603.05332 Numerical Analysis +1603.05333 History and Overview +1603.05334 Methodology +1603.05337 +1603.05339 +1603.05340 Dynamical Systems +1603.05341 Applications +1603.05342 Materials Science +1603.05345 Molecular Networks +1603.05347 Systems and Control +1603.05349 +1603.05352 Number Theory +1603.05353 Networking and Internet Architecture +1603.05355 Databases +1603.05356 Numerical Analysis +1603.05357 Complex Variables +1603.05358 Information Theory +1603.05360 Soft Condensed Matter +1603.05361 Systems and Control +1603.05362 Optimization and Control +1603.05365 Information Theory +1603.05367 Analysis of PDEs +1603.05368 Information Theory +1603.05369 Cryptography and Security +1603.05372 Numerical Analysis +1603.05374 Fluid Dynamics +1603.05378 Geometric Topology +1603.05379 Classical Analysis and ODEs +1603.05382 +1603.05384 Group Theory +1603.05389 Solar and Stellar Astrophysics +1603.05390 Metric Geometry +1603.05393 Physics and Society +1603.05394 Materials Science +1603.05395 Analysis of PDEs +1603.05399 Information Theory +1603.05406 Statistics Theory +1603.05407 Materials Science +1603.05408 Combinatorics +1603.05410 Information Theory +1603.05413 Instrumentation and Methods for Astrophysics +1603.05414 Computer Vision and Pattern Recognition +1603.05416 Statistics Theory +1603.05420 Pattern Formation and Solitons +1603.05422 Databases +1603.05424 Group Theory +1603.05426 Formal Languages and Automata Theory +1603.05428 +1603.05429 Combinatorics +1603.05430 Algebraic Geometry +1603.05431 Symplectic Geometry +1603.05434 Differential Geometry +1603.05435 Sound +1603.05436 +1603.05437 Probability +1603.05438 Mesoscale and Nanoscale Physics +1603.05441 Exactly Solvable and Integrable Systems +1603.05442 Soft Condensed Matter +1603.05444 Operator Algebras +1603.05445 Optimization and Control +1603.05447 Soft Condensed Matter +1603.05448 Category Theory +1603.05449 +1603.05451 Algebraic Geometry +1603.05457 Dynamical Systems +1603.05459 Distributed, Parallel, and Cluster Computing +1603.05461 Statistics Theory +1603.05462 Cryptography and Security +1603.05464 Dynamical Systems +1603.05465 Statistics Theory +1603.05468 Phenomenology +1603.05470 Social and Information Networks +1603.05475 Number Theory +1603.05480 Materials Science +1603.05481 Analysis of PDEs +1603.05482 Strongly Correlated Electrons +1603.05483 Spectral Theory +1603.05484 Statistics Theory +1603.05487 Distributed, Parallel, and Cluster Computing +1603.05489 Functional Analysis +1603.05490 Robotics +1603.05494 +1603.05496 Probability +1603.05499 Optimization and Control +1603.05506 High Energy Astrophysical Phenomena +1603.05515 General Mathematics +1603.05519 Quantum Algebra +1603.05520 Data Structures and Algorithms +1603.05522 Applications +1603.05526 Logic +1603.05527 Algebraic Geometry +1603.05528 Atomic Physics +1603.05530 +1603.05531 Probability +1603.05539 Number Theory +1603.05540 Information Theory +1603.05541 Algebraic Topology +1603.05543 Algebraic Geometry +1603.05547 Materials Science +1603.05550 Algebraic Geometry +1603.05553 Combinatorics +1603.05556 Logic +1603.05558 Mesoscale and Nanoscale Physics +1603.05559 Numerical Analysis +1603.05563 Instrumentation and Methods for Astrophysics +1603.05565 Analysis of PDEs +1603.05570 Computation and Language +1603.05573 Functional Analysis +1603.05574 Phenomenology +1603.05581 Other Computer Science +1603.05583 Other Computer Science +1603.05589 Mesoscale and Nanoscale Physics +1603.05594 Neural and Evolutionary Computing +1603.05596 Plasma Physics +1603.05599 Robotics +1603.05600 Computer Vision and Pattern Recognition +1603.05603 Materials Science +1603.05605 Subcellular Processes +1603.05606 Representation Theory +1603.05610 Analysis of PDEs +1603.05613 Algebraic Geometry +1603.05615 Cryptography and Security +1603.05620 Functional Analysis +1603.05623 Social and Information Networks +1603.05624 Optics +1603.05625 Logic in Computer Science +1603.05626 Representation Theory +1603.05627 Distributed, Parallel, and Cluster Computing +1603.05628 Networking and Internet Architecture +1603.05633 Fluid Dynamics +1603.05636 Operating Systems +1603.05637 Fluid Dynamics +1603.05639 Probability +1603.05641 Analysis of PDEs +gr-qc/0701012 +0707.1078 Soft Condensed Matter +0709.0349 Dynamical Systems +0804.0800 +0810.4414 +0902.4805 Phenomenology +0904.1275 +0906.3393 Algebraic Geometry +0910.2184 +0912.1214 Commutative Algebra +1002.4126 +1009.2603 +1012.5764 +1101.0475 +1104.5114 Optics +1112.1099 Combinatorics +1202.0254 Numerical Analysis +1205.4500 Numerical Analysis +1205.5029 Astrophysics of Galaxies +1207.1705 Combinatorics +1209.1116 Astrophysics of Galaxies +1209.1648 Analysis of PDEs +1209.2637 Cosmology and Nongalactic Astrophysics +1211.5525 Mesoscale and Nanoscale Physics +1211.5804 Analysis of PDEs +1212.1587 Dynamical Systems +1212.2130 Optics +1305.2740 Numerical Analysis +1305.4221 Mesoscale and Nanoscale Physics +1306.0386 Optimization and Control +1306.2428 Analysis of PDEs +1307.3460 Probability +1307.5574 Populations and Evolution +1308.6519 Probability +1311.2629 Algebraic Geometry +1312.1675 Geometric Topology +1401.0367 Optics +1401.2797 Statistical Mechanics +1401.3710 Statistical Mechanics +1402.3647 Applications +1402.5861 Probability +1403.1708 +1404.0925 Dynamical Systems +1404.2732 Mesoscale and Nanoscale Physics +1404.3592 Numerical Analysis +1404.5557 Statistics Theory +1405.6413 Optics +1406.3947 Analysis of PDEs +1406.6823 Mesoscale and Nanoscale Physics +1406.6853 Mesoscale and Nanoscale Physics +1407.1746 Data Structures and Algorithms +1407.5345 Optics +1407.6658 Analysis of PDEs +1408.1415 Atomic Physics +1408.2300 Mesoscale and Nanoscale Physics +1408.4092 Classical Analysis and ODEs +1409.2837 Statistical Mechanics +1409.5614 Number Theory +1409.8219 Probability +1410.1699 Numerical Analysis +1410.4526 +1410.6895 Numerical Analysis +1411.5083 Spectral Theory +1411.6796 Dynamical Systems +1412.1878 Mesoscale and Nanoscale Physics +1412.2465 Materials Science +1412.2615 Dynamical Systems +1412.2904 Strongly Correlated Electrons +1412.3280 Information Theory +1501.01473 Mesoscale and Nanoscale Physics +1501.03843 Materials Science +1501.04356 Strongly Correlated Electrons +1501.05568 Dynamical Systems +1501.07684 High Energy Astrophysical Phenomena +1502.01629 Numerical Analysis +1502.04969 Numerical Analysis +1502.05331 Genomics +1502.05420 Differential Geometry +1502.06575 Analysis of PDEs +1503.00221 Mesoscale and Nanoscale Physics +1503.02397 Analysis of PDEs +1503.04017 +1503.04428 Number Theory +1503.05649 Analysis of PDEs +1503.06461 +1504.00181 Cosmology and Nongalactic Astrophysics +1504.02094 Theory +1504.02409 Phenomenology +1504.06532 Analysis of PDEs +1504.07986 Commutative Algebra +1505.01135 Data Analysis, Statistics and Probability +1505.01452 +1505.02115 Strongly Correlated Electrons +1505.06490 Complex Variables +1505.07141 Number Theory +1505.07362 +1505.07894 Theory +1506.00094 +1506.00668 Mesoscale and Nanoscale Physics +1506.00852 Learning +1506.01911 Computer Vision and Pattern Recognition +1506.02208 Neurons and Cognition +1506.02914 Disordered Systems and Neural Networks +1506.03498 Disordered Systems and Neural Networks +1506.04804 Probability +1506.06823 Data Analysis, Statistics and Probability +1506.07913 Operator Algebras +1506.08752 Optimization and Control +1507.01722 Fluid Dynamics +1507.03967 Superconductivity +1507.04543 Phenomenology +1507.04764 Phenomenology +1507.05618 Cosmology and Nongalactic Astrophysics +1507.05870 Machine Learning +1508.00236 Statistical Mechanics +1508.02607 Phenomenology +1508.02940 Optimization and Control +1508.03273 +1508.04967 +1508.07605 Operator Algebras +1509.01021 Mesoscale and Nanoscale Physics +1509.01025 Mesoscale and Nanoscale Physics +1509.02111 Statistical Mechanics +1509.02541 Cosmology and Nongalactic Astrophysics +1509.02695 Probability +1509.03883 Algebraic Geometry +1509.04027 Optics +1509.04786 Phenomenology +1509.05762 +1509.06031 +1509.06691 +1509.07183 Mesoscale and Nanoscale Physics +1509.07304 Quantitative Methods +1509.08632 Functional Analysis +1510.01556 Representation Theory +1510.02261 Neurons and Cognition +1510.03158 +1510.03321 Phenomenology +1510.03480 Algebraic Geometry +1510.03581 +1510.03787 Quantum Gases +1510.06108 Systems and Control +1510.06745 Astrophysics of Galaxies +1510.07022 Mesoscale and Nanoscale Physics +1510.07229 Mesoscale and Nanoscale Physics +1510.08556 Algebraic Geometry +1510.08622 Physics and Society +1510.08673 Atomic Physics +1510.09113 +1511.01483 Phenomenology +1511.03255 Materials Science +1511.04300 Instrumentation and Detectors +1511.06271 Algebraic Geometry +1511.06392 Learning +1511.06429 Learning +1511.07086 Optimization and Control +1512.01894 Strongly Correlated Electrons +1512.02133 Group Theory +1512.02294 Strongly Correlated Electrons +1512.02385 Information Theory +1512.02711 +1512.03176 +1512.07048 Artificial Intelligence +1512.07056 Artificial Intelligence +1512.07690 Theory +1512.08736 Analysis of PDEs +1512.09066 Numerical Analysis +1601.01202 Symplectic Geometry +1601.03400 Astrophysics of Galaxies +1601.03435 Risk Management +1601.05274 Social and Information Networks +1601.05337 +1601.07107 Numerical Analysis +1601.07935 +1601.08107 Materials Science +1602.00334 Commutative Algebra +1602.01212 Differential Geometry +1602.01383 Symplectic Geometry +1602.01608 Robotics +1602.01990 Optics +1602.02335 Instrumentation and Detectors +1602.02450 Learning +1602.02623 Differential Geometry +1602.02744 Emerging Technologies +1602.03096 Optics +1602.03158 Combinatorics +1602.03171 Classical Physics +1602.03174 Chemical Physics +1602.03175 Theory +1602.03178 Instrumentation and Methods for Astrophysics +1602.03179 Mesoscale and Nanoscale Physics +1602.03186 Cosmology and Nongalactic Astrophysics +1602.03192 Cosmology and Nongalactic Astrophysics +1602.03193 Analysis of PDEs +1602.03194 Superconductivity +1602.03199 Cryptography and Security +1602.03201 Astrophysics of Galaxies +1602.03203 Artificial Intelligence +1602.03205 Cryptography and Security +1602.03207 Numerical Analysis +1602.03209 Logic +1602.03210 +1602.03214 Tissues and Organs +1602.03217 +1602.03221 Number Theory +1602.03228 Formal Languages and Automata Theory +1602.03231 Discrete Mathematics +1602.03236 Combinatorics +1602.03239 Logic +1602.03244 Cell Behavior +1602.03246 Combinatorics +1602.03247 Robotics +1602.03249 Instrumentation and Methods for Astrophysics +1602.03254 Programming Languages +1602.03255 Probability +1602.03256 Computer Vision and Pattern Recognition +1602.03263 Number Theory +1602.03267 Chemical Physics +1602.03271 Statistical Finance +1602.03274 Differential Geometry +1602.03277 Human-Computer Interaction +1602.03279 Geometric Topology +1602.03280 Optimization and Control +1602.03283 Information Theory +1602.03292 Number Theory +1602.03293 Analysis of PDEs +1602.03295 +1602.03298 Rings and Algebras +1602.03300 Analysis of PDEs +1602.03301 Analysis of PDEs +1602.03303 Distributed, Parallel, and Cluster Computing +1602.03307 Numerical Analysis +1602.03310 Strongly Correlated Electrons +1602.03313 Information Theory +1602.03314 Theory +1602.03316 Cryptography and Security +1602.03318 Numerical Analysis +1602.03322 Optics +1602.03323 Complex Variables +1602.03324 +1602.03328 Information Theory +1602.03332 Computational Complexity +1602.03333 Data Structures and Algorithms +1602.03334 Analysis of PDEs +1602.03337 Computers and Society +1602.03346 Computer Vision and Pattern Recognition +1602.03350 Networking and Internet Architecture +1602.03352 Optics +1602.03353 Soft Condensed Matter +1602.03354 Analysis of PDEs +1602.03356 Symplectic Geometry +1602.03357 Numerical Analysis +1602.03360 Numerical Analysis +1602.03361 History and Overview +1602.03363 Functional Analysis +1602.03364 Formal Languages and Automata Theory +1602.03365 History and Overview +1602.03367 Optimization and Control +1602.03368 Machine Learning +1602.03371 Differential Geometry +1602.03372 Mesoscale and Nanoscale Physics +1602.03378 Fluid Dynamics +1602.03379 Quantitative Methods +1602.03381 Strongly Correlated Electrons +1602.03382 General Mathematics +1602.03383 +1602.03384 Number Theory +1602.03386 Applications +1602.03387 Number Theory +1602.03388 Soft Condensed Matter +1602.03389 General Mathematics +1602.03390 General Mathematics +1602.03392 History and Overview +1602.03393 Analysis of PDEs +1602.03394 Spectral Theory +1602.03397 Materials Science +1602.03401 Phenomenology +1602.03402 Mathematical Finance +1602.03404 Distributed, Parallel, and Cluster Computing +1602.03406 Spectral Theory +1602.03407 Computational Geometry +1602.03408 General Mathematics +1602.03409 Computer Vision and Pattern Recognition +1602.03412 Category Theory +1602.03415 Soft Condensed Matter +1602.03416 Probability +1602.03419 Formal Languages and Automata Theory +1602.03424 Probability +1602.03428 Theory +1602.03429 Applications +1602.03432 Mesoscale and Nanoscale Physics +1602.03434 Physics and Society +1602.03435 General Mathematics +1602.03439 Dynamical Systems +1602.03441 +1602.03445 Group Theory +1602.03446 Complex Variables +1602.03449 Solar and Stellar Astrophysics +1602.03451 Algebraic Geometry +1602.03452 Solar and Stellar Astrophysics +1602.03453 Number Theory +1602.03454 Numerical Analysis +1602.03457 Solar and Stellar Astrophysics +1602.03458 Computer Vision and Pattern Recognition +1602.03464 Phenomenology +1602.03466 Mesoscale and Nanoscale Physics +1602.03472 Astrophysics of Galaxies +1602.03473 Combinatorics +1602.03478 +1602.03479 Group Theory +1602.03480 Geometric Topology +1602.03482 Plasma Physics +1602.03483 Computation and Language +1602.03490 Functional Analysis +1602.03493 Neurons and Cognition +1602.03495 +1602.03499 Probability +1602.03500 Number Theory +1602.03502 Computational Physics +1602.03503 Classical Analysis and ODEs +1602.03507 Statistical Mechanics +1602.03508 Information Theory +1602.03511 Optimization and Control +1602.03512 Cosmology and Nongalactic Astrophysics +1602.03513 Phenomenology +1602.03519 Analysis of PDEs +math-ph/0607023 +math-ph/0611076 +math-ph/0611077 +0704.3334 Quantum Algebra +0704.3515 Artificial Intelligence +0709.2113 Group Theory +0802.1150 Disordered Systems and Neural Networks +0808.0140 Algebraic Geometry +0811.0125 Metric Geometry +0811.4001 Group Theory +0812.3120 Information Theory +0902.0732 Algebraic Geometry +0909.3340 Lattice +0909.3966 Information Theory +0910.4667 Information Theory +0911.2558 Mesoscale and Nanoscale Physics +1005.1623 Metric Geometry +1009.4139 Theory +1010.4488 Mesoscale and Nanoscale Physics +1012.0299 Theory +1101.5052 Experiment +1106.2547 High Energy Astrophysical Phenomena +1108.4030 Algebraic Geometry +1109.0285 Cosmology and Nongalactic Astrophysics +1109.0998 Cosmology and Nongalactic Astrophysics +1109.5555 Theory +1109.6691 +1110.0470 Phenomenology +1203.6552 Number Theory +1203.6842 Solar and Stellar Astrophysics +1205.0005 Disordered Systems and Neural Networks +1206.1859 Cosmology and Nongalactic Astrophysics +1206.5923 Algebraic Geometry +1209.1596 Mesoscale and Nanoscale Physics +1210.7727 Differential Geometry +1211.5624 Rings and Algebras +1302.4769 Dynamical Systems +1302.5154 Classical Analysis and ODEs +1304.6579 Differential Geometry +1305.0440 Differential Geometry +1307.1920 +1307.7521 Information Theory +1307.7929 Group Theory +1308.6689 Combinatorics +1310.4626 Commutative Algebra +1310.5626 Probability +1310.8644 K-Theory and Homology +1311.0582 Computational Physics +1312.6803 Differential Geometry +1401.1296 Probability +1402.0126 Physics and Society +1402.2655 Cosmology and Nongalactic Astrophysics +1402.4563 Mesoscale and Nanoscale Physics +1402.6094 Plasma Physics +1402.6868 Analysis of PDEs +1403.1070 Human-Computer Interaction +1403.1232 Theory +1403.3027 +1403.4099 Computational Finance +1403.4779 Strongly Correlated Electrons +1403.7446 Computational Physics +1403.7448 Computational Physics +1404.0300 Social and Information Networks +1404.0611 +1404.0738 +1404.5513 Discrete Mathematics +1404.5841 Dynamical Systems +1404.5880 Materials Science +1404.6006 Dynamical Systems +1404.6275 Numerical Analysis +1404.7294 +1405.5110 Number Theory +1405.6400 Physics and Society +1405.6656 Functional Analysis +1406.3234 Probability +1406.5817 Risk Management +1407.0229 Complex Variables +1407.0369 Geophysics +1407.2602 Medical Physics +1407.3727 Optics +1407.5105 Neurons and Cognition +1407.6836 Systems and Control +1407.6888 Populations and Evolution +1407.7413 Statistical Mechanics +1408.0204 Machine Learning +1408.0423 +1408.1815 Dynamical Systems +1408.3028 Neurons and Cognition +1408.3236 Genomics +1408.5420 Physics and Society +1408.5558 Physics and Society +1409.1168 Dynamical Systems +1409.2495 Astrophysics of Galaxies +1409.3272 Genomics +1409.4927 Neurons and Cognition +1409.5155 Differential Geometry +1409.5648 Probability +1409.6007 Analysis of PDEs +1409.6336 Social and Information Networks +1409.6384 Genomics +1409.7035 Optics +1409.7211 Populations and Evolution +1409.7555 +1410.2184 Numerical Analysis +1410.2283 +1410.2445 Spectral Theory +1410.2496 Plasma Physics +1410.5357 Numerical Analysis +1410.5612 +1410.6140 Superconductivity +1410.7038 Soft Condensed Matter +1410.7277 +1410.7350 Populations and Evolution +1410.7671 Probability +1410.7996 Theory +1410.8072 Dynamical Systems +1410.8596 Quantitative Methods +1411.0548 Mesoscale and Nanoscale Physics +1411.1231 Analysis of PDEs +1411.1753 Mesoscale and Nanoscale Physics +1411.1942 Quantum Algebra +1411.2170 Astrophysics of Galaxies +1411.2957 +1411.3084 Social and Information Networks +1411.3131 Differential Geometry +1411.3831 Mesoscale and Nanoscale Physics +1411.3959 +1411.4334 Neurons and Cognition +1411.4770 Neurons and Cognition +1411.5746 Disordered Systems and Neural Networks +1411.6427 Representation Theory +1411.6554 Combinatorics +1411.7181 Combinatorics +1411.7782 Applications +1412.0203 Geophysics +1412.0304 Analysis of PDEs +1412.0306 Analysis of PDEs +1412.0794 Atomic Physics +1412.1292 Fluid Dynamics +1412.1509 Analysis of PDEs +1412.2153 Molecular Networks +1412.2620 Artificial Intelligence +1412.2958 Physics and Society +1412.3883 Exactly Solvable and Integrable Systems +1412.4639 Social and Information Networks +1412.5026 Populations and Evolution +1412.5434 Rings and Algebras +1412.5534 Analysis of PDEs +1412.7296 +1412.8307 Neural and Evolutionary Computing +1412.8435 +1412.8634 Molecular Networks +1412.8647 Numerical Analysis +1412.8667 Mesoscale and Nanoscale Physics +1501.00689 +1501.00727 Neurons and Cognition +1501.00752 Computer Vision and Pattern Recognition +1501.00970 +1501.01259 Geometric Topology +1501.01520 +1501.01677 Cell Behavior +1501.01765 +1501.02578 Phenomenology +1501.02694 Analysis of PDEs +1501.02719 Dynamical Systems +1501.02781 +1501.02883 Biological Physics +1501.03408 Number Theory +1501.03471 Computers and Society +1501.03550 Metric Geometry +1501.03621 +1501.03666 Exactly Solvable and Integrable Systems +1501.03693 Phenomenology +1501.03979 Phenomenology +1501.04320 Analysis of PDEs +1501.04711 Computer Vision and Pattern Recognition +1501.04753 Phenomenology +1501.04771 Mesoscale and Nanoscale Physics +1501.04992 General Finance +1501.05034 +1501.05362 +1501.05573 Theory +1501.06090 +1501.06149 Quantitative Methods +1501.06367 Phenomenology +1501.06414 Quantum Gases +1501.06516 Lattice +1501.06590 Biological Physics +1501.07152 Combinatorics +1501.07249 Phenomenology +1501.07378 Quantum Algebra +1501.07520 Phenomenology +1501.07541 +1501.07542 Analysis of PDEs +1501.07583 Analysis of PDEs +1501.07841 +1502.00086 Phenomenology +1502.00162 Materials Science +1502.00168 +1502.00456 Phenomenology +1502.01093 Representation Theory +1502.01219 Lattice +1502.01817 Quantum Gases +1502.01900 Disordered Systems and Neural Networks +1502.02000 Strongly Correlated Electrons +1502.02012 Algebraic Geometry +1502.02210 Phenomenology +1502.03034 Theory +1502.03344 +1502.03372 Distributed, Parallel, and Cluster Computing +1502.03608 Phenomenology +1502.03881 +1502.03906 Phenomenology +1502.04031 Phenomenology +1502.04230 +1502.04842 Analysis of PDEs +1502.04924 Number Theory +1502.05436 Soft Condensed Matter +1502.05812 Soft Condensed Matter +1502.05884 Computational Physics +1502.05917 +1502.06051 Strongly Correlated Electrons +1502.06191 Lattice +1502.06453 +1502.06508 Phenomenology +1502.06620 Theory +1502.06645 Theory +1502.06863 Strongly Correlated Electrons +1502.06866 Physics and Society +1502.06920 Strongly Correlated Electrons +1502.06928 Dynamical Systems +1502.07018 Fluid Dynamics +1502.07094 Mesoscale and Nanoscale Physics +1502.07766 Methodology +1502.07816 Neurons and Cognition +1502.07935 Materials Science +1503.00166 Fluid Dynamics +1503.00421 Physics and Society +1503.00447 +1503.00492 Analysis of PDEs +1503.00529 Populations and Evolution +1503.00616 +1503.00832 Physics and Society +1503.00862 Optics +1503.00924 Soft Condensed Matter +1503.00932 +1503.01036 Dynamical Systems +1503.01074 Instrumentation and Detectors +1503.01246 Analysis of PDEs +1503.01474 Theory +1503.01924 Mesoscale and Nanoscale Physics +1503.02610 Soft Condensed Matter +1503.02672 Phenomenology +1503.02676 Chaotic Dynamics +1503.03778 Statistical Mechanics +1503.04130 Soft Condensed Matter +1503.04224 Populations and Evolution +1503.04266 Plasma Physics +1503.04441 Superconductivity +1503.04459 Phenomenology +1503.04795 Physics and Society +1503.04969 Superconductivity +1503.05009 Phenomenology +1503.05211 Phenomenology +1503.05274 Soft Condensed Matter +1503.05465 Optics +1503.05752 Lattice +1503.05968 Optimization and Control +1503.05971 Populations and Evolution +1503.06065 Cosmology and Nongalactic Astrophysics +1503.06337 Spectral Theory +1503.06348 Cosmology and Nongalactic Astrophysics +1503.06552 Strongly Correlated Electrons +1503.06735 Materials Science +1503.06757 Probability +1503.06859 Functional Analysis +1503.07116 Populations and Evolution +1503.07446 Mesoscale and Nanoscale Physics +1503.07602 Materials Science +1503.07662 +1503.07743 Computational Physics +1503.07749 High Energy Astrophysical Phenomena +1503.07757 Physics and Society +1503.07930 Soft Condensed Matter +1503.08178 Materials Science +1503.08190 Mesoscale and Nanoscale Physics +1503.08324 Quantitative Methods +1503.08465 Computational Finance +1503.08521 Geometric Topology +1503.08591 Materials Science +1503.08608 +1503.08859 +1503.08893 Astrophysics of Galaxies +1503.09070 Data Analysis, Statistics and Probability +1503.09096 Materials Science +1503.09100 Physics and Society +1503.09185 Rings and Algebras +1504.00026 Quantum Gases +1504.00625 Probability +1504.00830 Analysis of PDEs +1504.01010 Analysis of PDEs +1504.01218 Information Theory +1504.01512 Materials Science +1504.01738 Theory +1504.01751 Astrophysics of Galaxies +1504.01857 Risk Management +1504.02031 Physics and Society +1504.02306 Data Structures and Algorithms +1504.02327 Soft Condensed Matter +1504.02631 Experiment +1504.02751 Populations and Evolution +1504.02776 Computational Physics +1504.02977 Metric Geometry +1504.03339 Cosmology and Nongalactic Astrophysics +1504.03432 Differential Geometry +1504.03463 Strongly Correlated Electrons +1504.03510 Phenomenology +1504.04124 Analysis of PDEs +1504.04387 Social and Information Networks +1504.04430 Biological Physics +1504.04946 Optics +1504.05063 +1504.05068 Soft Condensed Matter +1504.05143 Neural and Evolutionary Computing +1504.05163 Social and Information Networks +1504.05343 Mesoscale and Nanoscale Physics +1504.05571 +1504.05631 Biological Physics +1504.05746 +1504.05973 Quantum Gases +1504.05993 Cosmology and Nongalactic Astrophysics +1504.06034 Plasma Physics +1504.06091 Cell Behavior +1504.06497 Theory +1504.06956 Mesoscale and Nanoscale Physics +1504.07673 Phenomenology +1504.07709 Disordered Systems and Neural Networks +1504.07749 Phenomenology +1504.07781 Pattern Formation and Solitons +1504.07866 +1504.08207 Superconductivity +1504.08283 +1505.00052 Materials Science +1505.00127 Optics +1505.00134 Phenomenology +1505.00221 Theory +1505.00385 Mesoscale and Nanoscale Physics +1505.00403 Differential Geometry +1505.00673 Theory +1505.00890 Physics and Society +1505.00907 +1505.01400 Phenomenology +1505.01432 Materials Science +1505.01656 Strongly Correlated Electrons +1505.01723 Social and Information Networks +1505.02037 Computational Physics +1505.02042 +1505.02057 +1505.02198 Molecular Networks +1505.02275 Solar and Stellar Astrophysics +1505.02474 Molecular Networks +1505.02677 Phenomenology +1505.02704 Computational Physics +1505.02761 Physics and Society +1505.03095 Cell Behavior +1505.03504 Statistical Mechanics +1505.03515 Cosmology and Nongalactic Astrophysics +1505.03537 Physics and Society +1505.03778 Phenomenology +1505.03804 Physics and Society +1505.03856 Atomic Physics +1505.04330 Logic in Computer Science +1505.04453 Chaotic Dynamics +1505.04500 Materials Science +1505.04546 Distributed, Parallel, and Cluster Computing +1505.04568 +1505.04613 Molecular Networks +1505.04638 +1505.05230 Instrumentation and Methods for Astrophysics +1505.05304 Analysis of PDEs +1505.05320 Solar and Stellar Astrophysics +1505.05535 High Energy Astrophysical Phenomena +1505.05554 Phenomenology +1505.05618 Optics +1505.05828 Classical Physics +1505.06255 Fluid Dynamics +1505.06394 Exactly Solvable and Integrable Systems +1505.06436 Cosmology and Nongalactic Astrophysics +1505.06942 Phenomenology +1505.07105 Solar and Stellar Astrophysics +1505.07133 Biological Physics +1505.07166 Instrumentation and Detectors +1505.07433 Physics and Society +1505.07509 +1505.07706 Optics +1505.07748 Atmospheric and Oceanic Physics +1505.07978 Phenomenology +1505.08068 Mesoscale and Nanoscale Physics +1506.00234 Experiment +1506.00265 Theory +1506.00355 Soft Condensed Matter +1506.00524 +1506.00593 High Energy Astrophysical Phenomena +1506.00681 Biological Physics +1506.00773 Strongly Correlated Electrons +1506.00849 Astrophysics of Galaxies +1506.01175 High Energy Astrophysical Phenomena +1506.01258 Superconductivity +1506.01326 Numerical Analysis +1506.01593 Fluid Dynamics +1506.01637 +1506.01926 +1506.01994 Superconductivity +1506.02257 Phenomenology +1506.02421 Theory +1506.02609 Mesoscale and Nanoscale Physics +1506.02840 +1506.03199 +1506.03384 Fluid Dynamics +1506.03388 Theory +1506.03536 Cosmology and Nongalactic Astrophysics +1506.03793 Earth and Planetary Astrophysics +1506.03855 Numerical Analysis +1506.04285 Phenomenology +1506.04311 +1506.04322 Social and Information Networks +1506.04550 +1506.04727 Statistical Mechanics +1506.04768 +1506.05038 Soft Condensed Matter +1506.05177 Cosmology and Nongalactic Astrophysics +1506.05301 Phenomenology +1506.05463 High Energy Astrophysical Phenomena +1506.05515 +1506.05622 Strongly Correlated Electrons +1506.05659 Social and Information Networks +1506.06043 Soft Condensed Matter +1506.06244 Operator Algebras +1506.06375 Analysis of PDEs +1506.06465 Statistical Mechanics +1506.06658 Phenomenology +1506.06725 Atomic Physics +1506.06854 Soft Condensed Matter +1506.06928 Soft Condensed Matter +1506.06930 Analysis of PDEs +1506.07032 Physics and Society +1506.07315 Mesoscale and Nanoscale Physics +1506.07355 Cellular Automata and Lattice Gases +1506.07488 Probability +1506.07686 Probability +1506.07877 Cosmology and Nongalactic Astrophysics +1506.07894 Strongly Correlated Electrons +1506.08130 Theory +1506.08267 Optics +1506.08391 Neurons and Cognition +1506.08491 Phenomenology +1506.08829 Astrophysics of Galaxies +1506.08945 Pattern Formation and Solitons +1506.09014 Analysis of PDEs +1507.00028 +1507.00037 Materials Science +1507.00085 Fluid Dynamics +1507.00242 Mesoscale and Nanoscale Physics +1507.00330 +1507.00366 Populations and Evolution +1507.00423 +1507.00632 Optics +1507.00713 Astrophysics of Galaxies +1507.00739 +1507.00822 Statistical Mechanics +1507.00884 Solar and Stellar Astrophysics +1507.00927 Mesoscale and Nanoscale Physics +1507.00964 Computation +1507.00987 Theory +1507.01022 Theory +1507.01092 High Energy Astrophysical Phenomena +1507.01380 Physics and Society +1507.01458 Physics and Society +1507.01468 Biomolecules +1507.01487 Optics +1507.01681 Phenomenology +1507.01807 Optics +1507.02046 Solar and Stellar Astrophysics +1507.02167 Phenomenology +1507.02320 Superconductivity +1507.02371 Chaotic Dynamics +1507.02441 Superconductivity +1507.02448 Soft Condensed Matter +1507.02804 Soft Condensed Matter +1507.03035 K-Theory and Homology +1507.03072 Computational Physics +1507.03437 Operator Algebras +1507.03658 +1507.03690 Materials Science +1507.03695 Mesoscale and Nanoscale Physics +1507.03709 +1507.03972 Genomics +1507.03987 Quantum Gases +1507.04068 +1507.04192 Social and Information Networks +1507.04365 Cosmology and Nongalactic Astrophysics +1507.04424 Theory +1507.04476 Theory +1507.04524 Optics +1507.04690 Phenomenology +1507.04723 Materials Science +1507.04826 +1507.04936 Lattice +1507.05033 Computer Vision and Pattern Recognition +1507.05047 +1507.05058 Statistical Mechanics +1507.05142 Representation Theory +1507.05170 Phenomenology +1507.05247 +1507.05279 Strongly Correlated Electrons +1507.05340 Materials Science +1507.05403 Materials Science +1507.05433 Phenomenology +1507.05572 Computational Physics +1507.06192 Superconductivity +1507.06244 Computation +1507.06304 Cosmology and Nongalactic Astrophysics +1507.06325 Soft Condensed Matter +1507.06373 Quantum Gases +1507.06643 Computational Physics +1507.06657 Astrophysics of Galaxies +1507.06701 Astrophysics of Galaxies +1507.06730 Computational Physics +1507.06746 Physics and Society +1507.06759 Computation +1507.06795 Soft Condensed Matter +1507.06909 Quantum Gases +1507.06932 +1507.06942 Phenomenology +1507.06993 Phenomenology +1507.07224 Phenomenology +1507.07250 Theory +1507.07274 +1507.07373 Computational Physics +1507.07388 Classical Analysis and ODEs +1507.07543 Optics +1507.07585 Theory +1507.07765 Probability +1507.07774 Populations and Evolution +1507.08011 Solar and Stellar Astrophysics +1507.08078 Computational Physics +1507.08134 Experiment +1507.08169 Phenomenology +1507.08204 Phenomenology +1507.08307 Probability +1507.08508 +1507.08605 Materials Science +1507.08628 Theory +1507.08640 High Energy Astrophysical Phenomena +1507.08762 Mesoscale and Nanoscale Physics +1507.08831 Statistical Mechanics +1507.08851 Statistical Mechanics +1507.08966 Strongly Correlated Electrons +1508.00013 Astrophysics of Galaxies +1508.00084 Strongly Correlated Electrons +1508.00113 Strongly Correlated Electrons +1508.00162 Theory +1508.00197 Materials Science +1508.00314 Phenomenology +1508.00361 Probability +1508.00399 Data Analysis, Statistics and Probability +1508.00429 Neurons and Cognition +1508.00501 Theory +1508.00569 Phenomenology +1508.00575 High Energy Astrophysical Phenomena +1508.00619 Statistical Mechanics +1508.00819 Mesoscale and Nanoscale Physics +1508.00862 History and Philosophy of Physics +1508.00885 Phenomenology +1508.01107 Instrumentation and Detectors +1508.01200 Phenomenology +1508.01319 Superconductivity +1508.01645 Phenomenology +1508.01764 +1508.01781 Soft Condensed Matter +1508.02011 Quantum Gases +1508.02104 Cosmology and Nongalactic Astrophysics +1508.02119 High Energy Astrophysical Phenomena +1508.02221 +1508.02253 Information Theory +1508.02273 Combinatorics +1508.02381 Astrophysics of Galaxies +1508.02455 +1508.02544 Phenomenology +1508.02676 Theory +1508.02921 Optics +1508.02924 Materials Science +1508.03046 Astrophysics of Galaxies +1508.03095 Earth and Planetary Astrophysics +1508.03100 Cosmology and Nongalactic Astrophysics +1508.03120 Optics +1508.03125 Atomic and Molecular Clusters +1508.03143 Phenomenology +1508.03356 +1508.03413 Theory +1508.03542 Physics and Society +1508.03581 +1508.03887 +1508.04085 Plasma Physics +1508.04139 Theory +1508.04165 Lattice +1508.04194 Numerical Analysis +1508.04233 Experiment +1508.04277 Theory +1508.04357 Strongly Correlated Electrons +1508.04473 Cosmology and Nongalactic Astrophysics +1508.04563 Materials Science +1508.04569 Cosmology and Nongalactic Astrophysics +1508.04621 Astrophysics of Galaxies +1508.04699 +1508.04708 +1508.04825 Mesoscale and Nanoscale Physics +1508.05067 Cosmology and Nongalactic Astrophysics +1508.05093 High Energy Astrophysical Phenomena +1508.05127 Quantum Gases +1508.05184 Mesoscale and Nanoscale Physics +1508.05191 Optics +1508.05245 +1508.05338 +1508.05349 Optics +1508.05451 +1508.05478 Statistical Mechanics +1508.05484 Physics and Society +1508.05499 Biomolecules +1508.05552 Lattice +1508.05560 Astrophysics of Galaxies +1508.05632 Phenomenology +1508.05744 Phenomenology +1508.05899 Analysis of PDEs +1508.05925 Superconductivity +1508.06281 Astrophysics of Galaxies +1508.06348 Superconductivity +1508.06349 +1508.06375 Algebraic Geometry +1508.06590 Dynamical Systems +1508.06748 +1508.06761 Quantum Gases +1508.06820 Instrumentation and Detectors +1508.06841 Phenomenology +1508.06938 Lattice +1508.06941 Applications +1508.06970 Optics +1508.07021 +1508.07046 Instrumentation and Detectors +1508.07323 +1508.07339 Optics +1508.07471 Phenomenology +1508.07495 Materials Science +1508.07664 +1508.07686 Phenomenology +1508.07728 Theory +1508.07811 Phenomenology +1508.07858 Materials Science +1508.07868 Phenomenology +1509.00031 Theory +1509.00034 Astrophysics of Galaxies +1509.00052 Computational Physics +1509.00097 +1509.00194 +1509.00217 Statistical Finance +1509.00305 Phenomenology +1509.00356 +1509.00365 +1509.00411 Other Quantitative Biology +1509.00468 Statistical Mechanics +1509.00499 Phenomenology +1509.00698 Biological Physics +1509.00750 Instrumentation and Detectors +1509.00755 Populations and Evolution +1509.00770 Instrumentation and Detectors +1509.00790 Mesoscale and Nanoscale Physics +1509.00856 Astrophysics of Galaxies +1509.00908 Instrumentation and Methods for Astrophysics +1509.00968 Theory +1509.01069 +1509.01114 Instrumentation and Detectors +1509.01416 Phenomenology +1509.01424 Quantum Gases +1509.01452 +1509.01507 Materials Science +1509.01585 Phenomenology +1509.01639 Strongly Correlated Electrons +1509.01720 Strongly Correlated Electrons +1509.01835 +1509.01855 Superconductivity +1509.01896 +1509.01907 Solar and Stellar Astrophysics +1509.02014 +1509.02024 Experiment +1509.02051 Astrophysics of Galaxies +1509.02082 Phenomenology +1509.02105 Phenomenology +1509.02162 Cosmology and Nongalactic Astrophysics +1509.02169 Theory +1509.02175 Cosmology and Nongalactic Astrophysics +1509.02240 +1509.02274 Phenomenology +1509.02388 +1509.02499 Instrumentation and Detectors +1509.02829 Probability +1509.02899 Exactly Solvable and Integrable Systems +1509.03011 Fluid Dynamics +1509.03178 Instrumentation and Detectors +1509.03190 Phenomenology +1509.03373 Mesoscale and Nanoscale Physics +1509.03376 Optics +1509.03392 Phenomenology +1509.03433 Statistical Mechanics +1509.03440 Disordered Systems and Neural Networks +1509.03450 +1509.03583 Phenomenology +1509.03587 +1509.03601 Materials Science +1509.03678 Physics and Society +1509.03715 Lattice +1509.03886 Materials Science +1509.03929 Solar and Stellar Astrophysics +1509.03930 Cosmology and Nongalactic Astrophysics +1509.03985 Systems and Control +1509.04061 Theory +1509.04134 Materials Science +1509.04182 Solar and Stellar Astrophysics +1509.04293 Cosmology and Nongalactic Astrophysics +1509.04307 Commutative Algebra +1509.04361 Materials Science +1509.04455 +1509.04459 +1509.04486 Applications +1509.04512 Materials Science +1509.04530 Phenomenology +1509.04616 Lattice +1509.04778 Mesoscale and Nanoscale Physics +1509.04890 Theory +1509.05117 Social and Information Networks +1509.05218 Phenomenology +1509.05231 Statistical Mechanics +1509.05252 Phenomenology +1509.05253 +1509.05379 +1509.05383 +1509.05419 Cosmology and Nongalactic Astrophysics +1509.05440 Materials Science +1509.05482 +1509.05549 Atomic Physics +1509.05560 Superconductivity +1509.05607 Cosmology and Nongalactic Astrophysics +1509.05630 Solar and Stellar Astrophysics +1509.05734 Differential Geometry +1509.05798 Physics and Society +1509.05887 Phenomenology +1509.05889 +1509.05893 Soft Condensed Matter +1509.06120 Mesoscale and Nanoscale Physics +1509.06122 Phenomenology +1509.06244 Statistical Mechanics +1509.06248 Phenomenology +1509.06312 +1509.06371 Cosmology and Nongalactic Astrophysics +1509.06391 Astrophysics of Galaxies +1509.06455 Superconductivity +1509.06487 Solar and Stellar Astrophysics +1509.06526 Mesoscale and Nanoscale Physics +1509.06527 Optics +1509.06539 Plasma Physics +1509.06613 +1509.06623 Materials Science +1509.06630 Complex Variables +1509.06648 +1509.06680 Phenomenology +1509.06744 Soft Condensed Matter +1509.06754 Solar and Stellar Astrophysics +1509.06761 Theory +1509.06791 Learning +1509.06936 +1509.06944 +1509.07002 Materials Science +1509.07072 Phenomenology +1509.07143 +1509.07151 Physics and Society +1509.07159 +1509.07259 Phenomenology +1509.07271 Physics and Society +1509.07351 +1509.07439 Quantum Gases +1509.07475 Theory +1509.07633 +1509.07654 Mesoscale and Nanoscale Physics +1509.07701 +1509.07850 Astrophysics of Galaxies +1509.07854 Theory +1509.07895 +1509.07940 Differential Geometry +1509.07979 Computer Vision and Pattern Recognition +1509.08060 Mesoscale and Nanoscale Physics +1509.08077 Solar and Stellar Astrophysics +1509.08078 +1509.08092 Fluid Dynamics +1509.08099 Phenomenology +1509.08109 Soft Condensed Matter +1509.08134 Mesoscale and Nanoscale Physics +1509.08164 Theory +1509.08250 Astrophysics of Galaxies +1509.08350 Statistical Mechanics +1509.08426 Phenomenology +1509.08465 Social and Information Networks +1509.08481 Phenomenology +1509.08625 +1509.08854 Phenomenology +1509.08914 Astrophysics of Galaxies +1509.08982 Astrophysics of Galaxies +1509.08986 Theory +1509.09001 Astrophysics of Galaxies +1509.09150 Phenomenology +1509.09262 Computational Physics +1509.09263 Differential Geometry +1509.09291 Theory +1510.00009 Phenomenology +1510.00015 Earth and Planetary Astrophysics +1510.00016 Optics +1510.00063 +1510.00067 Earth and Planetary Astrophysics +1510.00079 Optics +1510.00130 Medical Physics +1510.00147 Cosmology and Nongalactic Astrophysics +1510.00232 Theory +1510.00246 Phenomenology +1510.00299 Atomic and Molecular Clusters +1510.00361 Materials Science +1510.00472 Phenomenology +1510.00650 Phenomenology +1510.00652 Quantum Gases +1510.00666 Phenomenology +1510.00825 +1510.00835 Theory +1510.00847 +1510.00852 Astrophysics of Galaxies +1510.00867 +1510.00947 Instrumentation and Detectors +1510.01099 Theory +1510.01136 Astrophysics of Galaxies +1510.01151 Solar and Stellar Astrophysics +1510.01338 High Energy Astrophysical Phenomena +1510.01390 Probability +1510.01517 Phenomenology +1510.01575 Theory +1510.01578 +1510.01587 Materials Science +1510.01600 Strongly Correlated Electrons +1510.01652 +1510.01774 Theory +1510.01818 +1510.01828 Statistical Mechanics +1510.01876 Instrumentation and Detectors +1510.01945 Plasma Physics +1510.01990 Theory +1510.02001 Quantum Gases +1510.02080 Phenomenology +1510.02136 +1510.02227 Statistical Mechanics +1510.02262 Lattice +1510.02265 Lattice +1510.02468 Chemical Physics +1510.02507 Cosmology and Nongalactic Astrophysics +1510.02511 Solar and Stellar Astrophysics +1510.02534 Mesoscale and Nanoscale Physics +1510.02537 Instrumentation and Methods for Astrophysics +1510.02543 Solar and Stellar Astrophysics +1510.02548 Statistical Mechanics +1510.02651 Solar and Stellar Astrophysics +1510.02788 Astrophysics of Galaxies +1510.02802 Astrophysics of Galaxies +1510.02878 Exactly Solvable and Integrable Systems +1510.02883 +1510.02953 Phenomenology +1510.03017 +1510.03105 Computation +1510.03107 Instrumentation and Methods for Astrophysics +1510.03116 Instrumentation and Detectors +1510.03120 Phenomenology +1510.03124 High Energy Astrophysical Phenomena +1510.03313 Theory +1510.03352 +1510.03358 Algebraic Geometry +1510.03486 Cosmology and Nongalactic Astrophysics +1510.03524 Theory +1510.03540 +1510.03553 Theory +1510.03582 Theory +1510.03674 Pattern Formation and Solitons +1510.03778 Theory +1510.03806 Cosmology and Nongalactic Astrophysics +1510.03813 Solar and Stellar Astrophysics +1510.03874 Instrumentation and Detectors +1510.03893 Numerical Analysis +1510.03911 +1510.03954 Theory +1510.04138 Mesoscale and Nanoscale Physics +1510.04150 Statistical Mechanics +1510.04153 Lattice +1510.04211 Solar and Stellar Astrophysics +1510.04248 Phenomenology +1510.04433 Astrophysics of Galaxies +1510.04459 Strongly Correlated Electrons +1510.04468 Phenomenology +1510.04502 Mesoscale and Nanoscale Physics +1510.04651 +1510.04694 Phenomenology +1510.04730 Biomolecules +1510.04749 Strongly Correlated Electrons +1510.04757 Quantum Gases +1510.04788 Strongly Correlated Electrons +1510.04792 Mesoscale and Nanoscale Physics +1510.04978 Theory +1510.04999 Theory +1510.05002 Optics +1510.05005 High Energy Astrophysical Phenomena +1510.05040 Solar and Stellar Astrophysics +1510.05083 Statistical Mechanics +1510.05119 Differential Geometry +1510.05321 Statistical Mechanics +1510.05447 +1510.05451 Phenomenology +1510.05499 +1510.05580 Statistical Mechanics +1510.05599 Mesoscale and Nanoscale Physics +1510.05743 Plasma Physics +1510.05840 Solar and Stellar Astrophysics +1510.05913 Mesoscale and Nanoscale Physics +1510.05939 +1510.06045 Solar and Stellar Astrophysics +1510.06069 Phenomenology +1510.06135 High Energy Astrophysical Phenomena +1510.06279 Analysis of PDEs +1510.06286 Solar and Stellar Astrophysics +1510.06398 High Energy Astrophysical Phenomena +1510.06631 Astrophysics of Galaxies +1510.06685 Theory +1510.06698 Statistical Mechanics +1510.06740 Astrophysics of Galaxies +1510.06808 Phenomenology +1510.06824 +1510.06901 Materials Science +1510.06922 Mesoscale and Nanoscale Physics +1510.07050 Astrophysics of Galaxies +1510.07078 Quantum Gases +1510.07114 Plasma Physics +1510.07149 +1510.07265 Phenomenology +1510.07348 Optics +1510.07639 High Energy Astrophysical Phenomena +1510.07642 High Energy Astrophysical Phenomena +1510.07659 Astrophysics of Galaxies +1510.07688 Phenomenology +1510.07803 Phenomenology +1510.07815 +1510.07827 Solar and Stellar Astrophysics +1510.07872 Phenomenology +1510.07892 Astrophysics of Galaxies +1510.07911 Theory +1510.08033 Phenomenology +1510.08052 Optics +1510.08059 Theory +1510.08184 Phenomenology +1510.08462 Phenomenology +1510.08476 Solar and Stellar Astrophysics +1510.08486 Theory +1510.08514 Phenomenology +1510.08516 +1510.08561 Materials Science +1510.08615 Statistical Finance +1510.08617 Statistical Mechanics +1510.08645 +1510.08676 Solar and Stellar Astrophysics +1510.08696 Phenomenology +1510.08721 +1510.08744 +1510.08850 Phenomenology +1510.08852 Cosmology and Nongalactic Astrophysics +1510.08869 High Energy Astrophysical Phenomena +1510.08872 Theory +1510.09030 Atomic Physics +1510.09074 Superconductivity +1510.09125 Theory +1511.00067 Sound +1511.00210 +1511.00416 Instrumentation and Detectors +1511.00589 Cosmology and Nongalactic Astrophysics +1511.00624 Materials Science +1511.00643 Earth and Planetary Astrophysics +1511.00683 Phenomenology +1511.00713 Theory +1511.00716 Physics and Society +1511.00865 Phenomenology +1511.00880 Mesoscale and Nanoscale Physics +1511.00907 Phenomenology +1511.00930 Atomic Physics +1511.01055 Optics +1511.01098 Astrophysics of Galaxies +1511.01164 Phenomenology +1511.01256 Solar and Stellar Astrophysics +1511.01283 Instrumentation and Detectors +1511.01434 High Energy Astrophysical Phenomena +1511.01485 Theory +1511.01491 Theory +1511.01521 Cosmology and Nongalactic Astrophysics +1511.01524 +1511.01785 High Energy Astrophysical Phenomena +1511.01926 Astrophysics of Galaxies +1511.01948 High Energy Astrophysical Phenomena +1511.02003 Solar and Stellar Astrophysics +1511.02026 Biological Physics +1511.02078 Theory +1511.02137 +1511.02164 +1511.02167 Theory +1511.02232 High Energy Astrophysical Phenomena +1511.02255 Materials Science +1511.02396 Solar and Stellar Astrophysics +1511.02438 +1511.02571 Phenomenology +1511.02628 Mesoscale and Nanoscale Physics +1511.02634 +1511.02635 Theory +1511.02645 Mesoscale and Nanoscale Physics +1511.02663 High Energy Astrophysical Phenomena +1511.02671 Theory +1511.02736 Mesoscale and Nanoscale Physics +1511.02764 Phenomenology +1511.02827 Mesoscale and Nanoscale Physics +1511.02883 Astrophysics of Galaxies +1511.02884 Algebraic Geometry +1511.02936 +1511.03274 Earth and Planetary Astrophysics +1511.03290 Phenomenology +1511.03332 Optics +1511.03636 Statistical Mechanics +1511.03637 Theory +1511.03661 Solar and Stellar Astrophysics +1511.03681 Theory +1511.03758 Strongly Correlated Electrons +1511.03787 Superconductivity +1511.03792 Soft Condensed Matter +1511.03868 Theory +1511.03884 Instrumentation and Detectors +1511.03964 Representation Theory +1511.03986 +1511.04010 Classical Analysis and ODEs +1511.04044 Mesoscale and Nanoscale Physics +1511.04076 Earth and Planetary Astrophysics +1511.04082 Earth and Planetary Astrophysics +1511.04133 Soft Condensed Matter +1511.04143 Artificial Intelligence +1511.04147 Astrophysics of Galaxies +1511.04205 Astrophysics of Galaxies +1511.04283 Phenomenology +1511.04284 +1511.04341 General Physics +1511.04358 +1511.04390 Instrumentation and Detectors +1511.04452 Phenomenology +1511.04521 Materials Science +1511.04559 +1511.04567 Rings and Algebras +1511.04611 Instrumentation and Detectors +1511.04756 Instrumentation and Detectors +1511.04832 Mesoscale and Nanoscale Physics +1511.04842 Lattice +1511.04860 Phenomenology +1511.04873 Quantum Gases +1511.04974 Fluid Dynamics +1511.05030 Phenomenology +1511.05113 Experiment +1511.05119 Theory +1511.05128 Theory +1511.05138 Astrophysics of Galaxies +1511.05207 Earth and Planetary Astrophysics +1511.05230 Dynamical Systems +1511.05348 Astrophysics of Galaxies +1511.05373 Fluid Dynamics +1511.05408 Phenomenology +1511.05471 Theory +1511.05473 Phenomenology +1511.05482 +1511.05494 Astrophysics of Galaxies +1511.05496 Earth and Planetary Astrophysics +1511.05560 Theory +1511.05570 Earth and Planetary Astrophysics +1511.05574 Astrophysics of Galaxies +1511.05586 Solar and Stellar Astrophysics +1511.05608 Astrophysics of Galaxies +1511.05805 +1511.05855 Instrumentation and Detectors +1511.05975 Theory +1511.05990 Phenomenology +1511.05999 +1511.06009 Optics +1511.06042 Materials Science +1511.06079 Theory +1511.06151 Materials Science +1511.06152 +1511.06194 Theory +1511.06241 Learning +1511.06261 Phenomenology +1511.06362 Learning +1511.06369 Astrophysics of Galaxies +1511.06556 Earth and Planetary Astrophysics +1511.06596 Solar and Stellar Astrophysics +1511.06655 Computational Physics +1511.06775 Physics and Society +1511.06908 Statistical Mechanics +1511.07081 +1511.07107 High Energy Astrophysical Phenomena +1511.07189 Instrumentation and Detectors +1511.07191 Materials Science +1511.07260 Solar and Stellar Astrophysics +1511.07377 Cosmology and Nongalactic Astrophysics +1511.07468 Earth and Planetary Astrophysics +1511.07619 Materials Science +1511.07681 High Energy Astrophysical Phenomena +1511.07856 Cosmology and Nongalactic Astrophysics +1511.07887 Materials Science +1511.08016 Phenomenology +1511.08067 Superconductivity +1511.08109 Optics +1511.08160 +1511.08213 Astrophysics of Galaxies +1511.08219 Astrophysics of Galaxies +1511.08221 Theory +1511.08252 Astrophysics of Galaxies +1511.08266 +1511.08345 Probability +1511.08367 Physics and Society +1511.08513 Physics and Society +1511.08597 Chemical Physics +1511.08612 Phenomenology +1511.08615 Statistical Mechanics +1511.08706 Theory +1511.08909 +1511.08919 Chemical Physics +1511.08924 High Energy Astrophysical Phenomena +1511.09082 Solar and Stellar Astrophysics +1511.09118 Earth and Planetary Astrophysics +1511.09183 Earth and Planetary Astrophysics +1511.09215 Solar and Stellar Astrophysics +1511.09275 Commutative Algebra +1511.09308 Instrumentation and Detectors +1511.09401 Earth and Planetary Astrophysics +1512.00020 High Energy Astrophysical Phenomena +1512.00032 +1512.00033 Neurons and Cognition +1512.00132 Solar and Stellar Astrophysics +1512.00200 Materials Science +1512.00390 Mesoscale and Nanoscale Physics +1512.00410 Cosmology and Nongalactic Astrophysics +1512.00416 Solar and Stellar Astrophysics +1512.00419 +1512.00483 Earth and Planetary Astrophysics +1512.00498 Materials Science +1512.00528 Materials Science +1512.00545 Theory +1512.00749 High Energy Astrophysical Phenomena +1512.00778 High Energy Astrophysical Phenomena +1512.00846 High Energy Astrophysical Phenomena +1512.00852 Cosmology and Nongalactic Astrophysics +1512.00893 Solar and Stellar Astrophysics +1512.00923 High Energy Astrophysical Phenomena +1512.00974 Strongly Correlated Electrons +1512.00981 Phenomenology +1512.01019 Soft Condensed Matter +1512.01082 Phenomenology +1512.01164 Solar and Stellar Astrophysics +1512.01244 Astrophysics of Galaxies +1512.01298 Cosmology and Nongalactic Astrophysics +1512.01315 High Energy Astrophysical Phenomena +1512.01338 Chemical Physics +1512.01344 Social and Information Networks +1512.01380 Theory +1512.01404 Phenomenology +1512.01501 Superconductivity +1512.01520 Plasma Physics +1512.01529 Solar and Stellar Astrophysics +1512.01546 Instrumentation and Methods for Astrophysics +1512.01599 Phenomenology +1512.01611 Instrumentation and Methods for Astrophysics +1512.01718 Analysis of PDEs +1512.01943 Cell Behavior +1512.01960 Solar and Stellar Astrophysics +1512.02064 Earth and Planetary Astrophysics +1512.02142 +1512.02185 Theory +1512.02234 Earth and Planetary Astrophysics +1512.02287 Theory +1512.02293 Theory +1512.02342 Astrophysics of Galaxies +1512.02353 Strongly Correlated Electrons +1512.02370 Quantum Algebra +1512.02501 Phenomenology +1512.02616 High Energy Astrophysical Phenomena +1512.02629 Astrophysics of Galaxies +1512.02655 High Energy Astrophysical Phenomena +1512.02659 Theory +1512.02682 Astrophysics of Galaxies +1512.02692 +1512.02724 Earth and Planetary Astrophysics +1512.02768 Astrophysics of Galaxies +1512.02799 Optics +1512.02815 Atomic Physics +1512.02841 +1512.02917 Space Physics +1512.02935 Numerical Analysis +1512.02965 Earth and Planetary Astrophysics +1512.02980 Solar and Stellar Astrophysics +1512.02999 +1512.03053 Cosmology and Nongalactic Astrophysics +1512.03065 High Energy Astrophysical Phenomena +1512.03108 Solar and Stellar Astrophysics +1512.03154 Phenomenology +1512.03193 Earth and Planetary Astrophysics +1512.03240 +1512.03243 Solar and Stellar Astrophysics +1512.03260 Astrophysics of Galaxies +1512.03346 Materials Science +1512.03438 Astrophysics of Galaxies +1512.03454 Solar and Stellar Astrophysics +1512.03535 Earth and Planetary Astrophysics +1512.03662 Instrumentation and Methods for Astrophysics +1512.03722 Earth and Planetary Astrophysics +1512.03831 Solar and Stellar Astrophysics +1512.03895 Mesoscale and Nanoscale Physics +1512.03960 +1512.03961 Phenomenology +1512.04080 Theory +1512.04086 Computer Vision and Pattern Recognition +1512.04139 +1512.04148 Solar and Stellar Astrophysics +1512.04198 Solar and Stellar Astrophysics +1512.04256 Astrophysics of Galaxies +1512.04308 +1512.04417 Solar and Stellar Astrophysics +1512.04422 Atomic Physics +1512.04443 Theory +1512.04450 Earth and Planetary Astrophysics +1512.04464 High Energy Astrophysical Phenomena +1512.04537 Cosmology and Nongalactic Astrophysics +1512.04540 Earth and Planetary Astrophysics +1512.04559 Astrophysics of Galaxies +1512.04561 Astrophysics of Galaxies +1512.04571 Strongly Correlated Electrons +1512.04584 Instrumentation and Detectors +1512.04727 Solar and Stellar Astrophysics +1512.04843 Atomic Physics +1512.04854 Astrophysics of Galaxies +1512.04916 Computational Finance +1512.04992 Solar and Stellar Astrophysics +1512.05026 High Energy Astrophysical Phenomena +1512.05046 Instrumentation and Methods for Astrophysics +1512.05049 High Energy Astrophysical Phenomena +1512.05133 Astrophysics of Galaxies +1512.05147 Solar and Stellar Astrophysics +1512.05154 Earth and Planetary Astrophysics +1512.05240 +1512.05296 Solar and Stellar Astrophysics +1512.05352 High Energy Astrophysical Phenomena +1512.05371 Solar and Stellar Astrophysics +1512.05386 Physics and Society +1512.05393 Solar and Stellar Astrophysics +1512.05452 Astrophysics of Galaxies +1512.05459 Solar and Stellar Astrophysics +1512.05485 Physics and Society +1512.05493 Phenomenology +1512.05497 Human-Computer Interaction +1512.05589 Astrophysics of Galaxies +1512.05736 Solar and Stellar Astrophysics +1512.05784 Astrophysics of Galaxies +1512.05877 Astrophysics of Galaxies +1512.05964 Superconductivity +1512.06043 Solar and Stellar Astrophysics +1512.06052 Theory +1512.06077 High Energy Astrophysical Phenomena +1512.06279 Astrophysics of Galaxies +1512.06340 Superconductivity +1512.06373 Theory +1512.06453 +1512.06467 Astrophysics of Galaxies +1512.06470 Earth and Planetary Astrophysics +1512.06535 High Energy Astrophysical Phenomena +1512.06552 Chemical Physics +1512.06568 Theory +1512.06700 Phenomenology +1512.06816 +1512.07047 Astrophysics of Galaxies +1512.07058 Astrophysics of Galaxies +1512.07093 +1512.07141 Phenomenology +1512.07197 Solar and Stellar Astrophysics +1512.07224 Cosmology and Nongalactic Astrophysics +1512.07259 Earth and Planetary Astrophysics +1512.07299 Instrumentation and Methods for Astrophysics +1512.07316 Earth and Planetary Astrophysics +1512.07327 Superconductivity +1512.07335 Astrophysics of Galaxies +1512.07398 Experiment +1512.07504 Phenomenology +1512.07509 Astrophysics of Galaxies +1512.07525 Solar and Stellar Astrophysics +1512.07558 High Energy Astrophysical Phenomena +1512.07656 Quantum Gases +1512.07663 Instrumentation and Methods for Astrophysics +1512.07746 Strongly Correlated Electrons +1512.07816 +1512.07846 +1512.08072 Astrophysics of Galaxies +1512.08101 Biomolecules +1512.08126 +1512.08145 Astrophysics of Galaxies +1512.08182 Earth and Planetary Astrophysics +1512.08196 High Energy Astrophysical Phenomena +1512.08313 Mesoscale and Nanoscale Physics +1512.08398 Pattern Formation and Solitons +1512.08443 Phenomenology +1512.08463 Solar and Stellar Astrophysics +1512.08538 Neurons and Cognition +1512.08543 Astrophysics of Galaxies +1512.08558 Solar and Stellar Astrophysics +1512.08582 Solar and Stellar Astrophysics +1512.08653 Statistical Mechanics +1512.08659 Solar and Stellar Astrophysics +1512.08687 Solar and Stellar Astrophysics +1512.08692 Strongly Correlated Electrons +1512.08698 Strongly Correlated Electrons +1512.08797 Earth and Planetary Astrophysics +1512.08908 Solar and Stellar Astrophysics +1512.08909 Materials Science +1512.08955 Theory +1512.08978 Solar and Stellar Astrophysics +1512.08999 Solar and Stellar Astrophysics +1512.09015 High Energy Astrophysical Phenomena +1512.09150 Earth and Planetary Astrophysics +1601.00002 Solar and Stellar Astrophysics +1601.00018 Solar and Stellar Astrophysics +1601.00038 Solar and Stellar Astrophysics +1601.00066 Earth and Planetary Astrophysics +1601.00201 Astrophysics of Galaxies +1601.00208 Astrophysics of Galaxies +1601.00218 Solar and Stellar Astrophysics +1601.00282 Astrophysics of Galaxies +1601.00297 Phenomenology +1601.00358 Earth and Planetary Astrophysics +1601.00366 Soft Condensed Matter +1601.00391 Mesoscale and Nanoscale Physics +1601.00394 Astrophysics of Galaxies +1601.00494 Astrophysics of Galaxies +1601.00542 Optics +1601.00585 +1601.00594 +1601.00649 Astrophysics of Galaxies +1601.00651 Solar and Stellar Astrophysics +1601.00659 Astrophysics of Galaxies +1601.00692 Solar and Stellar Astrophysics +1601.00789 Earth and Planetary Astrophysics +1601.00906 Astrophysics of Galaxies +1601.00953 Astrophysics of Galaxies +1601.00974 Astrophysics of Galaxies +1601.00976 Solar and Stellar Astrophysics +1601.01084 Astrophysics of Galaxies +1601.01138 Strongly Correlated Electrons +1601.01141 Optics +1601.01155 Mesoscale and Nanoscale Physics +1601.01163 Phenomenology +1601.01171 Instrumentation and Detectors +1601.01199 Digital Libraries +1601.01258 Astrophysics of Galaxies +1601.01317 Astrophysics of Galaxies +1601.01359 Solar and Stellar Astrophysics +1601.01391 Astrophysics of Galaxies +1601.01407 High Energy Astrophysical Phenomena +1601.01459 Solar and Stellar Astrophysics +1601.01479 Astrophysics of Galaxies +1601.01486 Earth and Planetary Astrophysics +1601.01524 Solar and Stellar Astrophysics +1601.01535 Solar and Stellar Astrophysics +1601.01555 Solar and Stellar Astrophysics +1601.01589 Astrophysics of Galaxies +1601.01635 Artificial Intelligence +1601.01686 Astrophysics of Galaxies +1601.01689 Astrophysics of Galaxies +1601.01693 High Energy Astrophysical Phenomena +1601.01698 Astrophysics of Galaxies +1601.01752 Astrophysics of Galaxies +1601.01801 +1601.01820 Cosmology and Nongalactic Astrophysics +1601.01829 Solar and Stellar Astrophysics +1601.01845 Solar and Stellar Astrophysics +1601.01877 Solar and Stellar Astrophysics +1601.01896 Solar and Stellar Astrophysics +1601.01905 +1601.01969 Solar and Stellar Astrophysics +1601.01989 Astrophysics of Galaxies +1601.02019 Solar and Stellar Astrophysics +1601.02021 Astrophysics of Galaxies +1601.02022 Astrophysics of Galaxies +1601.02058 Earth and Planetary Astrophysics +1601.02070 Atomic Physics +1601.02101 Fluid Dynamics +1601.02209 Solar and Stellar Astrophysics +1601.02228 Solar and Stellar Astrophysics +1601.02256 Earth and Planetary Astrophysics +1601.02266 Astrophysics of Galaxies +1601.02268 Solar and Stellar Astrophysics +1601.02272 Earth and Planetary Astrophysics +1601.02282 Astrophysics of Galaxies +1601.02302 Astrophysics of Galaxies +1601.02355 Medical Physics +1601.02368 Solar and Stellar Astrophysics +1601.02386 Astrophysics of Galaxies +1601.02406 Solar and Stellar Astrophysics +1601.02580 Instrumentation and Methods for Astrophysics +1601.02597 Astrophysics of Galaxies +1601.02613 Astrophysics of Galaxies +1601.02629 Astrophysics of Galaxies +1601.02636 Superconductivity +1601.02638 High Energy Astrophysical Phenomena +1601.02642 Solar and Stellar Astrophysics +1601.02702 High Energy Astrophysical Phenomena +1601.02706 Earth and Planetary Astrophysics +1601.02713 Chemical Physics +1601.02715 High Energy Astrophysical Phenomena +1601.02736 Optics +1601.02816 High Energy Astrophysical Phenomena +1601.02833 Earth and Planetary Astrophysics +1601.02837 +1601.02841 Solar and Stellar Astrophysics +1601.02855 +1601.02868 Materials Science +1601.02892 Solar and Stellar Astrophysics +1601.02909 Earth and Planetary Astrophysics +1601.03039 Astrophysics of Galaxies +1601.03053 Solar and Stellar Astrophysics +1601.03054 Solar and Stellar Astrophysics +1601.03090 Astrophysics of Galaxies +1601.03198 Solar and Stellar Astrophysics +1601.03208 High Energy Astrophysical Phenomena +1601.03292 Astrophysics of Galaxies +1601.03377 Solar and Stellar Astrophysics +1601.03392 High Energy Astrophysical Phenomena +1601.03398 High Energy Astrophysical Phenomena +1601.03402 Solar and Stellar Astrophysics +1601.03442 Astrophysics of Galaxies +1601.03541 Information Retrieval +1601.03591 Astrophysics of Galaxies +1601.03608 Earth and Planetary Astrophysics +1601.03709 Earth and Planetary Astrophysics +1601.03713 Earth and Planetary Astrophysics +1601.03738 High Energy Astrophysical Phenomena +1601.03869 Plasma Physics +1601.03920 Astrophysics of Galaxies +1601.04085 Solar and Stellar Astrophysics +1601.04145 High Energy Astrophysical Phenomena +1601.04177 +1601.04279 High Energy Astrophysical Phenomena +1601.04292 Mesoscale and Nanoscale Physics +1601.04327 Mesoscale and Nanoscale Physics +1601.04330 Pattern Formation and Solitons +1601.04408 Accelerator Physics +1601.04541 Soft Condensed Matter +1601.04550 High Energy Astrophysical Phenomena +1601.04579 Instrumentation and Detectors +1601.04629 Algebraic Geometry +1601.04638 Probability +1601.04660 Cosmology and Nongalactic Astrophysics +1601.04704 Astrophysics of Galaxies +1601.04750 High Energy Astrophysical Phenomena +1601.04806 +1601.04969 Solar and Stellar Astrophysics +1601.04985 High Energy Astrophysical Phenomena +1601.05008 Atomic Physics +1601.05031 +1601.05084 Solar and Stellar Astrophysics +1601.05182 Earth and Planetary Astrophysics +1601.05236 Solar and Stellar Astrophysics +1601.05255 Phenomenology +1601.05395 +1601.05410 High Energy Astrophysical Phenomena +1601.05442 Instrumentation and Detectors +1601.05478 High Energy Astrophysical Phenomena +1601.05492 Solar and Stellar Astrophysics +1601.05866 +1601.05926 High Energy Astrophysical Phenomena +1601.05986 Solar and Stellar Astrophysics +1601.06560 Earth and Planetary Astrophysics +1601.06586 +1601.06590 High Energy Astrophysical Phenomena +1601.06793 Cosmology and Nongalactic Astrophysics +1601.06797 Astrophysics of Galaxies +1601.07162 Astrophysics of Galaxies +1601.07220 Plasma Physics +1601.07248 Earth and Planetary Astrophysics +1601.07390 Computational Physics +1601.07554 Astrophysics of Galaxies +1601.07578 Astrophysics of Galaxies +1601.07669 Astrophysics of Galaxies +1601.07725 Mesoscale and Nanoscale Physics +1601.07857 Cosmology and Nongalactic Astrophysics +1601.07919 Solar and Stellar Astrophysics +1601.08052 Astrophysics of Galaxies +1601.08069 Solar and Stellar Astrophysics +1601.08137 +1601.08171 Earth and Planetary Astrophysics +1601.08200 Solar and Stellar Astrophysics +1601.08228 Astrophysics of Galaxies +1602.00003 Astrophysics of Galaxies +1602.00273 Theory +1602.00342 Dynamical Systems +1602.00379 Phenomenology +1602.00427 Superconductivity +1602.00505 High Energy Astrophysical Phenomena +1602.00550 Solar and Stellar Astrophysics +1602.00652 Astrophysics of Galaxies +1602.00667 Physics and Society +1602.00751 Earth and Planetary Astrophysics +1602.00899 Probability +1602.00939 Strongly Correlated Electrons +1602.01008 Cosmology and Nongalactic Astrophysics +1602.01053 Category Theory +1602.01091 High Energy Astrophysical Phenomena +1602.01094 High Energy Astrophysical Phenomena +1602.01096 Astrophysics of Galaxies +1602.01123 Astrophysics of Galaxies +1602.01368 Earth and Planetary Astrophysics +1602.01467 Solar and Stellar Astrophysics +1602.01628 Artificial Intelligence +1602.01746 Cosmology and Nongalactic Astrophysics +1602.01813 Materials Science +1602.01881 Astrophysics of Galaxies +1602.01976 Mesoscale and Nanoscale Physics +1602.02052 Software Engineering +1602.02105 Instrumentation and Methods for Astrophysics +1602.02247 Instrumentation and Methods for Astrophysics +1602.02358 Databases +1602.02534 Astrophysics of Galaxies +1602.02535 Solar and Stellar Astrophysics +1602.02585 Solar and Stellar Astrophysics +1602.02753 Astrophysics of Galaxies +1602.02755 Astrophysics of Galaxies +1602.02756 Astrophysics of Galaxies +1602.02762 Astrophysics of Galaxies +1602.02789 Astrophysics of Galaxies +1602.02871 Classical Analysis and ODEs +1602.02872 Instrumentation and Detectors +1602.02922 Astrophysics of Galaxies +1602.02977 Solar and Stellar Astrophysics +1602.03183 Solar and Stellar Astrophysics +1602.03187 Astrophysics of Galaxies +1602.03219 Soft Condensed Matter +1602.03242 High Energy Astrophysical Phenomena +1602.03262 Computational Physics +1602.03467 Earth and Planetary Astrophysics +1602.03485 Soft Condensed Matter +1602.03488 Earth and Planetary Astrophysics +1602.03695 Cosmology and Nongalactic Astrophysics +1602.03717 Materials Science +1602.03730 Databases +1602.03846 High Energy Astrophysical Phenomena +1602.04013 Mesoscale and Nanoscale Physics +1602.04434 Learning +1602.04446 Theory +1602.04789 Classical Analysis and ODEs +1602.04807 Operator Algebras +1602.04822 Phenomenology +1602.04828 +1602.04829 Theory +1602.04832 Astrophysics of Galaxies +1602.04833 Optics +1602.04834 Classical Analysis and ODEs +1602.04836 Classical Analysis and ODEs +1602.04838 Phenomenology +1602.04839 Classical Analysis and ODEs +1602.04840 +1602.04841 Human-Computer Interaction +1602.04846 Algebraic Topology +1602.04847 Optimization and Control +1602.04851 Optimization and Control +1602.04853 Physics and Society +1602.04855 Numerical Analysis +1602.04862 Methodology +1602.04868 Computer Vision and Pattern Recognition +1602.04869 Physics Education +1602.04871 Physics Education +1602.04872 Physics Education +1602.04873 Distributed, Parallel, and Cluster Computing +1602.04877 Information Theory +1602.04878 Computers and Society +1602.04880 Fluid Dynamics +1602.04882 Functional Analysis +1602.04886 Computer Vision and Pattern Recognition +1602.04887 Probability +1602.04891 Soft Condensed Matter +1602.04893 Fluid Dynamics +1602.04894 Geometric Topology +1602.04896 Mesoscale and Nanoscale Physics +1602.04903 Optics +1602.04905 +1602.04906 Computer Vision and Pattern Recognition +1602.04908 Symplectic Geometry +1602.04909 Combinatorics +1602.04910 Methodology +1602.04914 Soft Condensed Matter +1602.04917 Materials Science +1602.04918 Robotics +1602.04919 Rings and Algebras +1602.04920 Number Theory +1602.04922 Computational Geometry +1602.04924 Information Retrieval +1602.04931 Materials Science +1602.04933 Neural and Evolutionary Computing +1602.04934 Logic in Computer Science +1602.04935 Optimization and Control +1602.04936 Artificial Intelligence +1602.04937 Superconductivity +1602.04939 Numerical Analysis +1602.04941 Statistics Theory +1602.04943 Algebraic Topology +1602.04944 Algebraic Geometry +1602.04945 Algebraic Geometry +1602.04946 Mathematical Finance +1602.04947 Algebraic Geometry +1602.04948 Algebraic Geometry +1602.04949 Superconductivity +1602.04957 Probability +1602.04966 +1602.04974 Other Computer Science +1602.04975 Portfolio Management +1602.04977 Astrophysics of Galaxies +1602.04978 Differential Geometry +1602.04980 Networking and Internet Architecture +1602.04981 Robotics +1602.04982 Mesoscale and Nanoscale Physics +1602.04983 Information Retrieval +1602.04989 Operator Algebras +1602.04990 +1602.04994 Classical Analysis and ODEs +1602.04998 Number Theory +1602.05001 Classical Analysis and ODEs +1602.05006 +1602.05007 Analysis of PDEs +1602.05008 Statistical Mechanics +1602.05010 Logic in Computer Science +1602.05011 Dynamical Systems +1602.05016 Data Structures and Algorithms +1602.05018 Analysis of PDEs +1602.05019 Analysis of PDEs +1602.05021 Instrumentation and Methods for Astrophysics +1602.05023 Computation +1602.05026 Theory +1602.05034 Complex Variables +1602.05035 Strongly Correlated Electrons +1602.05036 Classical Analysis and ODEs +1602.05037 Representation Theory +1602.05040 Logic in Computer Science +1602.05044 Chemical Physics +1602.05046 +1602.05048 Applications +1602.05051 Rings and Algebras +1602.05054 Materials Science +1602.05055 Algebraic Geometry +1602.05056 Information Theory +1602.05057 Mesoscale and Nanoscale Physics +1602.05059 Computational Complexity +1602.05062 Geometric Topology +1602.05063 Information Theory +1602.05066 Analysis of PDEs +1602.05067 Computers and Society +1602.05072 Information Theory +1602.05073 Metric Geometry +1602.05074 +1602.05079 Functional Analysis +1602.05080 Numerical Analysis +1602.05081 Functional Analysis +1602.05082 Category Theory +1602.05091 Differential Geometry +1602.05093 Analysis of PDEs +1602.05109 Computers and Society +1602.05111 +1602.05115 +1602.05117 Classical Analysis and ODEs +1602.05119 Chaotic Dynamics +1602.05124 Data Analysis, Statistics and Probability +1602.05127 Learning +1602.05130 Optimization and Control +1602.05131 Probability +1602.05132 Combinatorics +1602.05134 Robotics +1602.05137 Phenomenology +1602.05139 Group Theory +1602.05141 Phenomenology +1602.05142 Computers and Society +1602.05151 Logic in Computer Science +1602.05154 Instrumentation and Detectors +1602.05156 Category Theory +1602.05159 Astrophysics of Galaxies +1602.05161 Learning +1602.05162 Statistics Theory +1602.05165 High Energy Astrophysical Phenomena +1602.05166 +1602.05167 Molecular Networks +1602.05168 Computer Vision and Pattern Recognition +1602.05169 Combinatorics +1602.05170 Computers and Society +1602.05171 +1602.05172 Dynamical Systems +1602.05174 Plasma Physics +1602.05175 Populations and Evolution +1602.05177 Quantitative Methods +1602.05178 Cosmology and Nongalactic Astrophysics +1602.05181 Discrete Mathematics +1602.05182 Combinatorics +1602.05184 Combinatorics +alg-geom/9412006 Algebraic Geometry +astro-ph/0406425 +astro-ph/0407053 +astro-ph/0503374 +astro-ph/9511017 +astro-ph/9711241 +astro-ph/9802112 +cs/0010017 Sound +cs/0502053 Information Theory +hep-ph/0209113 Phenomenology +hep-ph/9711308 Phenomenology +hep-th/0101153 Theory +hep-th/0212035 Theory +hep-th/0306050 Theory +hep-th/0312193 Theory +nucl-th/9410036 +q-bio/0607013 Neurons and Cognition +quant-ph/0010084 +quant-ph/0110134 +quant-ph/9911081 +quant-ph/9911089 +0810.3156 Plasma Physics +0902.4902 Algebraic Geometry +0909.1738 Cosmology and Nongalactic Astrophysics +1003.3971 Algebraic Geometry +1009.5285 Analysis of PDEs +1103.4763 Fluid Dynamics +1108.0948 Analysis of PDEs +1201.2331 Rings and Algebras +1201.5797 +1205.6448 Representation Theory +1212.0568 Analysis of PDEs +1301.0232 High Energy Astrophysical Phenomena +1301.3362 High Energy Astrophysical Phenomena +1301.7143 Differential Geometry +1309.3290 Earth and Planetary Astrophysics +1309.6903 Logic +1310.1020 Pricing of Securities +1310.3262 +1401.5298 +1403.6542 Symplectic Geometry +1404.4531 Plasma Physics +1404.7347 Information Theory +1405.4896 Probability +1406.0881 +1406.2002 Astrophysics of Galaxies +1409.1096 Quantitative Methods +1409.6323 Analysis of PDEs +1410.0313 Complex Variables +1410.1132 Numerical Analysis +1410.2438 Algebraic Geometry +1410.2661 Classical Analysis and ODEs +1410.3435 Mesoscale and Nanoscale Physics +1410.5385 Dynamical Systems +1410.6576 Dynamical Systems +1410.7894 Number Theory +1411.0217 Neural and Evolutionary Computing +1411.1252 Functional Analysis +1411.7387 Cosmology and Nongalactic Astrophysics +1411.7981 Algebraic Topology +1412.3701 Computer Science and Game Theory +1412.7540 Phenomenology +1501.02602 K-Theory and Homology +1501.04176 Cosmology and Nongalactic Astrophysics +1501.06204 Earth and Planetary Astrophysics +1501.06900 +1501.07440 Information Theory +1502.00877 Spectral Theory +1502.00961 Earth and Planetary Astrophysics +1502.01249 Earth and Planetary Astrophysics +1502.01383 Algebraic Geometry +1502.01628 Earth and Planetary Astrophysics +1502.02240 Algebraic Topology +1502.02361 Earth and Planetary Astrophysics +1502.03307 Earth and Planetary Astrophysics +1502.03929 Earth and Planetary Astrophysics +1502.04646 +1502.04816 Earth and Planetary Astrophysics +1502.04995 Algebraic Topology +1502.05008 Earth and Planetary Astrophysics +1502.06302 Earth and Planetary Astrophysics +1502.06442 Earth and Planetary Astrophysics +1502.07362 Mesoscale and Nanoscale Physics +1502.07831 Methodology +1503.01931 Earth and Planetary Astrophysics +1503.04272 Earth and Planetary Astrophysics +1504.00034 Earth and Planetary Astrophysics +1504.02389 Earth and Planetary Astrophysics +1504.03848 Strongly Correlated Electrons +1504.04037 +1504.04889 Probability +1504.06643 Phenomenology +1504.07346 Phenomenology +1504.08157 Functional Analysis +1505.00336 +1505.01632 Numerical Analysis +1505.02941 Earth and Planetary Astrophysics +1505.03598 Analysis of PDEs +1505.03926 Mesoscale and Nanoscale Physics +1506.00150 Earth and Planetary Astrophysics +1506.00351 Geometric Topology +1506.01267 High Energy Astrophysical Phenomena +1506.01658 Earth and Planetary Astrophysics +1506.02044 Cosmology and Nongalactic Astrophysics +1506.04691 Strongly Correlated Electrons +1506.04805 Earth and Planetary Astrophysics +1506.06689 Earth and Planetary Astrophysics +1506.07297 Optimization and Control +1506.07346 Functional Analysis +1507.02892 Dynamical Systems +1507.03999 Astrophysics of Galaxies +1507.05530 Dynamical Systems +1507.08764 Experiment +1507.08834 Networking and Internet Architecture +1508.00386 Combinatorics +1508.01848 Strongly Correlated Electrons +1508.03014 Geometric Topology +1508.03330 +1508.03954 Mathematical Software +1508.05323 High Energy Astrophysical Phenomena +1508.05575 Earth and Planetary Astrophysics +1508.05779 Materials Science +1508.06300 Analysis of PDEs +1508.07670 Combinatorics +1509.02085 +1509.02283 Complex Variables +1509.02475 Combinatorics +1509.03752 Physics and Society +1509.03893 Experiment +1509.04755 Earth and Planetary Astrophysics +1509.04999 Dynamical Systems +1509.05059 +1509.05504 Instrumentation and Methods for Astrophysics +1509.05850 Cosmology and Nongalactic Astrophysics +1509.05979 Analysis of PDEs +1509.06343 +1509.07228 Earth and Planetary Astrophysics +1509.07285 Physics and Society +1509.07396 Optics +1509.08172 Probability +1509.08236 Disordered Systems and Neural Networks +1509.08748 Number Theory +1509.08861 Representation Theory +1510.00434 Earth and Planetary Astrophysics +1510.01740 Cosmology and Nongalactic Astrophysics +1510.01980 Solar and Stellar Astrophysics +1510.02547 Mesoscale and Nanoscale Physics +1510.04081 +1510.04737 Phenomenology +1510.05123 Portfolio Management +1510.05442 Soft Condensed Matter +1510.06560 +1510.06587 Multiagent Systems +1510.06984 Rings and Algebras +1510.07024 Cosmology and Nongalactic Astrophysics +1510.07685 Instrumentation and Methods for Astrophysics +1511.01371 Strongly Correlated Electrons +1511.01932 Numerical Analysis +1511.03282 Superconductivity +1511.03877 Mesoscale and Nanoscale Physics +1511.04930 Information Theory +1511.05860 Information Theory +1511.07314 Combinatorics +1511.07495 Strongly Correlated Electrons +1511.08506 +1511.08646 Materials Science +1511.08752 +1511.09295 Networking and Internet Architecture +1512.00174 Computational Geometry +1512.00672 Superconductivity +1512.01403 Statistical Mechanics +1512.01497 +1512.02270 +1512.02386 +1512.02848 Strongly Correlated Electrons +1512.03472 Combinatorics +1512.04213 Atomic Physics +1512.05010 Analysis of PDEs +1512.05697 Statistical Mechanics +1512.06422 Phenomenology +1512.06871 Theory +1512.07437 Quantitative Methods +1512.07540 Mesoscale and Nanoscale Physics +1512.07655 Combinatorics +1512.07853 Phenomenology +1512.08129 +1512.08151 Fluid Dynamics +1512.09030 Strongly Correlated Electrons +1601.00280 Astrophysics of Galaxies +1601.01762 Strongly Correlated Electrons +1601.02619 Mesoscale and Nanoscale Physics +1601.03234 High Energy Astrophysical Phenomena +1601.04227 Instrumentation and Methods for Astrophysics +1601.04464 Cosmology and Nongalactic Astrophysics +1601.05158 Quantitative Methods +1601.05577 Number Theory +1601.05826 Algebraic Geometry +1601.06053 Mesoscale and Nanoscale Physics +1601.06183 Logic in Computer Science +1601.06302 Quantum Gases +1601.06958 Statistical Mechanics +1601.07499 Other Condensed Matter +1601.07796 +1601.07840 Theory +1601.07955 Earth and Planetary Astrophysics +1602.00208 Number Theory +1602.00838 Instrumentation and Methods for Astrophysics +1602.01313 Cosmology and Nongalactic Astrophysics +1602.01410 Computer Vision and Pattern Recognition +1602.01477 Mesoscale and Nanoscale Physics +1602.01878 Statistical Mechanics +1602.01894 Number Theory +1602.01924 Algebraic Geometry +1602.02224 Fluid Dynamics +1602.03088 Earth and Planetary Astrophysics +1602.03177 High Energy Astrophysical Phenomena +1602.03358 Complex Variables +1602.04240 Metric Geometry +1602.04995 Computational Geometry +1602.05041 Number Theory +1602.05673 Cosmology and Nongalactic Astrophysics +1602.05978 Classical Analysis and ODEs +1602.07021 Number Theory +1603.00018 Phenomenology +1603.00066 +1603.00101 Cosmology and Nongalactic Astrophysics +1603.00212 Disordered Systems and Neural Networks +1603.00402 +1603.00476 Cosmology and Nongalactic Astrophysics +1603.00711 Algebraic Geometry +1603.01137 Algebraic Topology +1603.01755 Atomic Physics +1603.01958 +1603.01984 +1603.02300 Astrophysics of Galaxies +1603.02815 Optics +1603.02850 Materials Science +1603.02913 Experiment +1603.02976 Accelerator Physics +1603.03085 Astrophysics of Galaxies +1603.03249 Biological Physics +1603.03264 Instrumentation and Methods for Astrophysics +1603.03754 Mesoscale and Nanoscale Physics +1603.03832 Number Theory +1603.03974 Materials Science +1603.04610 Robotics +1603.04679 Phenomenology +1603.04806 Materials Science +1603.04956 +1603.04972 Logic +1603.05040 Cosmology and Nongalactic Astrophysics +1603.05056 Quantum Gases +1603.05194 High Energy Astrophysical Phenomena +1603.05281 Astrophysics of Galaxies +1603.05601 Phenomenology +1603.05747 Quantum Gases +1603.05797 Astrophysics of Galaxies +1603.05827 +1603.05992 Astrophysics of Galaxies +1603.06350 Phenomenology +1603.06519 Cosmology and Nongalactic Astrophysics +1603.06570 High Energy Astrophysical Phenomena +1603.06587 Cosmology and Nongalactic Astrophysics +1603.06607 +1603.06761 +1603.06952 Astrophysics of Galaxies +1603.07013 Soft Condensed Matter +1603.07325 Astrophysics of Galaxies +1603.07417 Artificial Intelligence +1603.07623 High Energy Astrophysical Phenomena +1603.08001 Disordered Systems and Neural Networks +1603.08510 Theory +1603.08932 Phenomenology +1603.09024 Soft Condensed Matter +1603.09296 Phenomenology +1603.09298 Theory +1603.09351 Cosmology and Nongalactic Astrophysics +1603.09397 Populations and Evolution +1603.09619 Phenomenology +1604.00112 Solar and Stellar Astrophysics +1604.00124 +1604.00724 Materials Science +1604.01216 Astrophysics of Galaxies +1604.01314 Astrophysics of Galaxies +1604.01382 Cosmology and Nongalactic Astrophysics +1604.01479 Quantum Gases +1604.01613 Solar and Stellar Astrophysics +1604.01731 Phenomenology +1604.01746 +1604.01766 Theory +1604.01772 Theory +1604.01991 Algebraic Geometry +1604.02157 Phenomenology +1604.02367 Solar and Stellar Astrophysics +1604.03148 Soft Condensed Matter +1604.03455 Superconductivity +1604.03940 Phenomenology +1604.04352 Phenomenology +1604.04601 Earth and Planetary Astrophysics +1604.04987 +1604.05099 Cosmology and Nongalactic Astrophysics +1604.05145 Mesoscale and Nanoscale Physics +1604.05323 Astrophysics of Galaxies +1604.05346 Solar and Stellar Astrophysics +1604.05716 High Energy Astrophysical Phenomena +1604.05982 Phenomenology +1604.06082 Quantum Gases +1604.06165 Earth and Planetary Astrophysics +1604.06273 Theory +1604.06289 Solar and Stellar Astrophysics +1604.06312 +1604.06326 Strongly Correlated Electrons +1604.06506 Computer Vision and Pattern Recognition +1604.06700 Strongly Correlated Electrons +1604.07438 Phenomenology +1604.07455 Strongly Correlated Electrons +1604.07512 Strongly Correlated Electrons +1604.07548 +1604.07589 Solar and Stellar Astrophysics +1604.07716 Phenomenology +1604.07773 Experiment +1604.07838 Phenomenology +1604.08427 Phenomenology +1604.08490 Cryptography and Security +1604.08587 Astrophysics of Galaxies +1604.08598 Strongly Correlated Electrons +1604.08611 Astrophysics of Galaxies +1604.08644 High Energy Astrophysical Phenomena +1604.08797 Computational Geometry +1605.00008 Cosmology and Nongalactic Astrophysics +1605.00427 Soft Condensed Matter +1605.00789 +1605.01538 Plasma Physics +1605.01562 Adaptation and Self-Organizing Systems +1605.02023 Mesoscale and Nanoscale Physics +1605.02028 Populations and Evolution +1605.02137 High Energy Astrophysical Phenomena +1605.02156 Computational Complexity +1605.02253 High Energy Astrophysical Phenomena +1605.02325 +1605.02578 Cosmology and Nongalactic Astrophysics +1605.02745 Theory +1605.02982 Quantum Gases +1605.03195 Instrumentation and Methods for Astrophysics +1605.03297 +1605.03489 Optics +1605.03561 Phenomenology +1605.03673 Mesoscale and Nanoscale Physics +1605.03812 Superconductivity +1605.03951 High Energy Astrophysical Phenomena +1605.03994 High Energy Astrophysical Phenomena +1605.04155 Cosmology and Nongalactic Astrophysics +1605.04165 Astrophysics of Galaxies +1605.04314 Astrophysics of Galaxies +1605.04437 Earth and Planetary Astrophysics +1605.04508 Phenomenology +1605.04526 Theory +1605.04646 Cosmology and Nongalactic Astrophysics +1605.04743 Mesoscale and Nanoscale Physics +1605.04820 Astrophysics of Galaxies +1605.04867 Astrophysics of Galaxies +1605.05263 +1605.05501 Cosmology and Nongalactic Astrophysics +1605.05638 Theory +1605.05662 Cosmology and Nongalactic Astrophysics +1605.05670 Astrophysics of Galaxies +1605.05722 Differential Geometry +1605.05772 Earth and Planetary Astrophysics +1605.05839 Materials Science +1605.05900 Phenomenology +1605.05983 Fluid Dynamics +1605.05992 Theory +1605.06123 Phenomenology +1605.06268 +1605.06426 Cosmology and Nongalactic Astrophysics +1605.06803 Phenomenology +1605.06945 Disordered Systems and Neural Networks +1605.07073 Superconductivity +1605.07205 +1605.07307 Optics +1605.07348 Cosmology and Nongalactic Astrophysics +1605.07470 Phenomenology +1605.07749 Number Theory +1605.07847 Optics +1605.08360 Astrophysics of Galaxies +1605.08383 Probability +1605.08644 Mesoscale and Nanoscale Physics +1605.09014 Strongly Correlated Electrons +1605.09018 Phenomenology +1605.09032 +1605.09097 +1605.09111 Theory +1605.09144 Astrophysics of Galaxies +1605.09368 Instrumentation and Methods for Astrophysics +1605.09383 Phenomenology +1605.09723 +1606.00039 Solar and Stellar Astrophysics +1606.00143 Mesoscale and Nanoscale Physics +1606.00244 Optics +1606.00393 Instrumentation and Methods for Astrophysics +1606.00604 Solar and Stellar Astrophysics +1606.00669 Solar and Stellar Astrophysics +1606.00742 Mesoscale and Nanoscale Physics +1606.00793 Strongly Correlated Electrons +1606.01391 High Energy Astrophysical Phenomena +1606.01697 Phenomenology +1606.01838 Instrumentation and Methods for Astrophysics +1606.02073 Cosmology and Nongalactic Astrophysics +1606.02130 Quantum Gases +1606.02323 Cosmology and Nongalactic Astrophysics +1606.02520 Cosmology and Nongalactic Astrophysics +1606.02713 Solar and Stellar Astrophysics +1606.02722 Phenomenology +1606.02757 Atomic Physics +1606.02758 Quantum Gases +1606.02762 Optics +1606.03428 High Energy Astrophysical Phenomena +1606.03518 High Energy Astrophysical Phenomena +1606.03559 Soft Condensed Matter +1606.03958 Statistical Mechanics +1606.04349 +1606.04477 High Energy Astrophysical Phenomena +1606.04550 Computational Complexity +1606.04644 +1606.04668 Theory +1606.04795 High Energy Astrophysical Phenomena +1606.04815 Solar and Stellar Astrophysics +1606.04823 Astrophysics of Galaxies +1606.04938 Combinatorics +1606.04996 +1606.05056 Solar and Stellar Astrophysics +1606.05444 Theory +1606.05873 Earth and Planetary Astrophysics +1606.06059 Solar and Stellar Astrophysics +1606.06232 Solar and Stellar Astrophysics +1606.06291 Astrophysics of Galaxies +1606.06324 Solar and Stellar Astrophysics +1606.06481 Experiment +1606.06643 Theory +1606.06813 Astrophysics of Galaxies +1606.06823 Experiment +1606.07021 +1606.07065 Solar and Stellar Astrophysics +1606.07068 Earth and Planetary Astrophysics +1606.07108 Phenomenology +1606.07252 Theory +1606.07299 +1606.07435 Astrophysics of Galaxies +1606.07443 Astrophysics of Galaxies +1606.07577 Probability +1606.07645 Astrophysics of Galaxies +1606.07709 Discrete Mathematics +1606.07755 Numerical Analysis +1606.07810 Astrophysics of Galaxies +1606.07837 Cosmology and Nongalactic Astrophysics +1606.07870 Theory +1606.08068 Solar and Stellar Astrophysics +1606.08088 Earth and Planetary Astrophysics +1606.08126 Analysis of PDEs +1606.08264 Solar and Stellar Astrophysics +1606.08285 Astrophysics of Galaxies +1606.08343 Optics +1606.08448 Cosmology and Nongalactic Astrophysics +1606.08742 High Energy Astrophysical Phenomena +1606.08748 High Energy Astrophysical Phenomena +1606.08783 Astrophysics of Galaxies +1606.08848 Phenomenology +1606.08921 Computer Vision and Pattern Recognition +1606.08923 Earth and Planetary Astrophysics +1606.09055 Phenomenology +1606.09380 Phenomenology +1606.09437 Astrophysics of Galaxies +1606.09579 Data Analysis, Statistics and Probability +1607.00002 Cosmology and Nongalactic Astrophysics +1607.00109 Superconductivity +1607.00197 Optimization and Control +1607.00309 High Energy Astrophysical Phenomena +1607.00387 Earth and Planetary Astrophysics +1607.00536 +1607.00585 Astrophysics of Galaxies +1607.00774 Earth and Planetary Astrophysics +1607.00897 High Energy Astrophysical Phenomena +1607.01189 Cosmology and Nongalactic Astrophysics +1607.01414 Soft Condensed Matter +1607.01431 Statistical Mechanics +1607.01453 Solar and Stellar Astrophysics +1607.01585 Solar and Stellar Astrophysics +1607.01587 High Energy Astrophysical Phenomena +1607.02198 +1607.02450 Machine Learning +1607.02616 High Energy Astrophysical Phenomena +1607.02781 Astrophysics of Galaxies +1607.02950 Astrophysics of Galaxies +1607.03038 Solar and Stellar Astrophysics +1607.03117 Solar and Stellar Astrophysics +1607.03134 Earth and Planetary Astrophysics +1607.03303 Phenomenology +1607.03318 Astrophysics of Galaxies +1607.03436 Exactly Solvable and Integrable Systems +1607.03523 +1607.03709 Astrophysics of Galaxies +1607.03811 Solar and Stellar Astrophysics +1607.03893 Astrophysics of Galaxies +1607.03905 Lattice +1607.03915 Astrophysics of Galaxies +1607.04280 Solar and Stellar Astrophysics +1607.04292 High Energy Astrophysical Phenomena +1607.04328 Astrophysics of Galaxies +1607.04601 Astrophysics of Galaxies +1607.04639 Solar and Stellar Astrophysics +1607.05289 Astrophysics of Galaxies +1607.05343 Astrophysics of Galaxies +1607.05472 Astrophysics of Galaxies +1607.05612 Solar and Stellar Astrophysics +1607.05795 Astrophysics of Galaxies +1607.05797 Earth and Planetary Astrophysics +1607.05995 Astrophysics of Galaxies +1607.06088 Astrophysics of Galaxies +1607.06163 Statistics Theory +1607.06296 Cosmology and Nongalactic Astrophysics +1607.06365 Astrophysics of Galaxies +1607.06458 Cosmology and Nongalactic Astrophysics +1607.06466 Astrophysics of Galaxies +1607.06684 Solar and Stellar Astrophysics +1607.06804 Solar and Stellar Astrophysics +1607.06903 Methodology +1607.07106 Phenomenology +1607.07190 Astrophysics of Galaxies +1607.07206 High Energy Astrophysical Phenomena +1607.07245 Astrophysics of Galaxies +1607.07248 High Energy Astrophysical Phenomena +1607.07323 High Energy Astrophysical Phenomena +1607.07626 Astrophysics of Galaxies +1607.07628 Cosmology and Nongalactic Astrophysics +1607.07783 High Energy Astrophysical Phenomena +1607.07918 Astrophysics of Galaxies +1607.07960 +1607.08035 +1607.08170 Earth and Planetary Astrophysics +1607.08242 Superconductivity +1607.08253 Astrophysics of Galaxies +1607.08279 Earth and Planetary Astrophysics +1607.08324 High Energy Astrophysical Phenomena +1607.08453 Combinatorics +1607.08591 Earth and Planetary Astrophysics +1607.08616 Astrophysics of Galaxies +1607.08773 Solar and Stellar Astrophysics +1608.00340 +1608.00573 Earth and Planetary Astrophysics +1608.00809 Atomic Physics +1608.01131 +1608.01207 Plasma Physics +1608.01677 Astrophysics of Galaxies +1608.01901 High Energy Astrophysical Phenomena +1608.02163 High Energy Astrophysical Phenomena +1608.02191 Performance +1608.02278 Solar and Stellar Astrophysics +1608.02309 Astrophysics of Galaxies +1608.02518 Algebraic Geometry +1608.02573 Phenomenology +1608.02591 Astrophysics of Galaxies +1608.02792 Information Theory +1608.03592 Earth and Planetary Astrophysics +1608.03852 Solar and Stellar Astrophysics +1608.04095 Solar and Stellar Astrophysics +1608.04120 Statistics Theory +1608.04419 Number Theory +1608.04495 Strongly Correlated Electrons +1608.04554 Astrophysics of Galaxies +1608.04862 Social and Information Networks +1608.04969 High Energy Astrophysical Phenomena +1608.05082 Astrophysics of Galaxies +1608.05091 Dynamical Systems +1608.05244 High Energy Astrophysical Phenomena +1608.05280 Solar and Stellar Astrophysics +1608.05417 Astrophysics of Galaxies +1608.05418 Astrophysics of Galaxies +1608.05421 Mesoscale and Nanoscale Physics +1608.05422 Astrophysics of Galaxies +1608.05474 Superconductivity +1608.05834 Mesoscale and Nanoscale Physics +1608.05838 Cryptography and Security +1608.05945 Chaotic Dynamics +1608.05978 +1608.05979 Astrophysics of Galaxies +1608.06264 Astrophysics of Galaxies +1608.06294 High Energy Astrophysical Phenomena +1608.06295 Solar and Stellar Astrophysics +1608.06297 High Energy Astrophysical Phenomena +1608.06418 Solar and Stellar Astrophysics +1608.06429 High Energy Astrophysical Phenomena +1608.06574 Networking and Internet Architecture +1608.06622 Machine Learning +1608.06626 Astrophysics of Galaxies +1608.06684 High Energy Astrophysical Phenomena +1608.06704 Astrophysics of Galaxies +1608.06706 Astrophysics of Galaxies +1608.06714 Astrophysics of Galaxies +1608.06734 Solar and Stellar Astrophysics +1608.06735 Astrophysics of Galaxies +1608.06840 General Physics +1608.06906 Phenomenology +1608.07030 Classical Analysis and ODEs +1608.07042 Astrophysics of Galaxies +1608.07187 Artificial Intelligence +1608.07375 Materials Science +1608.07379 Theory +1608.07436 Geometric Topology +1608.07445 High Energy Astrophysical Phenomena +1608.07492 Computer Science and Game Theory +1608.07531 Programming Languages +1608.07550 Instrumentation and Methods for Astrophysics +1608.07596 Data Structures and Algorithms +1608.07708 Logic in Computer Science +1608.07835 Representation Theory +1608.07837 +1608.07855 Computational Geometry +1608.07872 Cryptography and Security +1608.07897 Computer Vision and Pattern Recognition +1608.07938 Dynamical Systems +1608.07949 Networking and Internet Architecture +1608.08055 General Physics +1608.08108 Accelerator Physics +1608.08148 Databases +1608.08208 Classical Physics +1608.08210 General Finance +1608.08212 Geometric Topology +1608.08219 Programming Languages +1608.08228 +1608.08234 Instrumentation and Methods for Astrophysics +1608.08242 Computer Vision and Pattern Recognition +1608.08245 Combinatorics +1608.08246 Logic +1608.08251 Computer Vision and Pattern Recognition +1608.08252 Artificial Intelligence +1608.08253 Systems and Control +1608.08254 +1608.08258 Databases +1608.08262 Artificial Intelligence +1608.08265 Neural and Evolutionary Computing +1608.08268 Portfolio Management +1608.08270 Number Theory +1608.08273 Representation Theory +1608.08278 Social and Information Networks +1608.08282 Rings and Algebras +1608.08283 Risk Management +1608.08284 Astrophysics of Galaxies +1608.08285 Numerical Analysis +1608.08288 Combinatorics +1608.08291 Applications +1608.08294 Dynamical Systems +1608.08296 Number Theory +1608.08298 Cosmology and Nongalactic Astrophysics +1608.08299 Analysis of PDEs +1608.08301 Analysis of PDEs +1608.08302 Number Theory +1608.08304 Theory +1608.08305 Computer Vision and Pattern Recognition +1608.08306 Machine Learning +1608.08311 Optimization and Control +1608.08318 Methodology +1608.08319 Number Theory +1608.08322 Number Theory +1608.08325 Symplectic Geometry +1608.08329 +1608.08335 Strongly Correlated Electrons +1608.08339 Computation and Language +1608.08341 Biomolecules +1608.08342 Software Engineering +1608.08343 Combinatorics +1608.08344 Materials Science +1608.08346 Data Structures and Algorithms +1608.08347 Methodology +1608.08348 Statistics Theory +1608.08355 Classical Analysis and ODEs +1608.08358 Optimization and Control +1608.08359 +1608.08362 Machine Learning +1608.08363 Classical Physics +1608.08365 Networking and Internet Architecture +1608.08368 Networking and Internet Architecture +1608.08373 Phenomenology +1608.08374 Number Theory +1608.08375 Solar and Stellar Astrophysics +1608.08376 Hardware Architecture +1608.08377 Probability +1608.08379 Probability +1608.08383 +1608.08384 Systems and Control +1608.08385 Computational Geometry +1608.08386 Cryptography and Security +1608.08388 Algebraic Topology +1608.08391 Differential Geometry +1608.08395 Computer Vision and Pattern Recognition +1608.08396 Probability +1608.08397 Cryptography and Security +1608.08399 Group Theory +1608.08402 Strongly Correlated Electrons +1608.08406 Phenomenology +1608.08413 Optimization and Control +1608.08416 Numerical Analysis +1608.08418 Computational Geometry +1608.08422 Optimization and Control +1608.08423 Algebraic Geometry +1608.08424 Probability +1608.08425 Computational Geometry +1608.08426 Number Theory +1608.08427 Computational Geometry +1608.08428 Functional Analysis +1608.08431 Numerical Analysis +1608.08433 Number Theory +1608.08434 Computer Vision and Pattern Recognition +1608.08436 Functional Analysis +1608.08437 Materials Science +1608.08438 Logic +1608.08439 Atomic and Molecular Clusters +1608.08441 +1608.08442 Dynamical Systems +1608.08444 Superconductivity +1608.08445 Information Theory +1608.08447 Artificial Intelligence +1608.08452 +1608.08455 +1608.08456 Physics and Society +1608.08459 Information Theory +1608.08463 Rings and Algebras +1608.08464 Analysis of PDEs +1608.08465 Systems and Control +1608.08466 Probability +1608.08468 Methodology +1608.08469 Multimedia +1608.08471 Computer Vision and Pattern Recognition +1608.08474 Information Theory +1608.08475 Representation Theory +1608.08479 +1608.08480 Combinatorics +1608.08481 Materials Science +1608.08482 Statistics Theory +1608.08484 Computer Science and Game Theory +1608.08485 Applications +1608.08486 Cosmology and Nongalactic Astrophysics +1608.08487 Earth and Planetary Astrophysics +1608.08488 Geophysics +1608.08489 Group Theory +1608.08491 Combinatorics +1608.08493 Number Theory +1608.08495 Soft Condensed Matter +1608.08497 Artificial Intelligence +1608.08498 Cell Behavior +1608.08500 Data Structures and Algorithms +1608.08502 +1608.08505 Data Structures and Algorithms +1608.08508 Combinatorics +1608.08512 Classical Physics +1608.08513 Fluid Dynamics +1608.08514 Representation Theory +1608.08515 Computation and Language +1608.08516 General Physics +1608.08518 Analysis of PDEs +1608.08519 Phenomenology +1608.08521 Networking and Internet Architecture +1608.08524 Plasma Physics +1608.08525 General Physics +1608.08527 Data Structures and Algorithms +1608.08528 Number Theory +1608.08530 +1608.08531 General Physics +1608.08533 Algebraic Topology +1608.08534 Statistical Mechanics +1608.08535 Statistics Theory +1608.08537 +1608.08541 Optimization and Control +1608.08543 Functional Analysis +1608.08545 Data Structures and Algorithms +1608.08547 +1608.08548 Physics Education +1608.08553 Exactly Solvable and Integrable Systems +1608.08554 Number Theory +1608.08555 Number Theory +1608.08556 Materials Science +1608.08558 Numerical Analysis +1608.08559 Combinatorics +1608.08560 Algebraic Geometry +1608.08561 Mesoscale and Nanoscale Physics +1608.08562 Operator Algebras +1608.08565 Cell Behavior +1608.08567 Instrumentation and Detectors +1608.08568 Instrumentation and Detectors +1608.08570 Graphics +1608.08572 Metric Geometry +1608.08575 Phenomenology +1608.08577 Combinatorics +1608.08578 Data Structures and Algorithms +1608.08580 Commutative Algebra +1608.08581 Algebraic Geometry +1608.08583 Spectral Theory +1608.08584 Software Engineering +1608.08586 Optimization and Control +1608.08587 Strongly Correlated Electrons +1608.08589 Artificial Intelligence +1608.08591 Commutative Algebra +1608.08592 Formal Languages and Automata Theory +1608.08598 Quantum Algebra +1608.08599 Differential Geometry +1608.08600 Rings and Algebras +1608.08603 Instrumentation and Methods for Astrophysics +1608.08604 Number Theory +1608.08609 Physics and Society +1608.08610 Earth and Planetary Astrophysics +1608.08612 Populations and Evolution +1608.08615 +1608.08618 +1608.08620 Earth and Planetary Astrophysics +1608.08622 Information Theory +1608.08623 Combinatorics +astro-ph/0609444 +astro-ph/0609450 +astro-ph/0609490 +astro-ph/0609624 +astro-ph/0609744 +astro-ph/0610207 +astro-ph/0610288 +astro-ph/0610348 +astro-ph/0610720 +astro-ph/0610872 +astro-ph/0611182 +astro-ph/0611387 +astro-ph/0611417 +astro-ph/0612078 +astro-ph/9911343 +atom-ph/9604001 Atomic Physics +atom-ph/9608002 Atomic Physics +bayes-an/9512001 Data Analysis, Statistics and Probability +chao-dyn/9308005 Chaotic Dynamics +chao-dyn/9401002 Chaotic Dynamics +chao-dyn/9412003 Chaotic Dynamics +chao-dyn/9501017 Chaotic Dynamics +chao-dyn/9501024 Chaotic Dynamics +chao-dyn/9501027 Chaotic Dynamics +chao-dyn/9501028 Chaotic Dynamics +chao-dyn/9502005 Chaotic Dynamics +chao-dyn/9502006 Chaotic Dynamics +chao-dyn/9502010 Chaotic Dynamics +chao-dyn/9502011 Chaotic Dynamics +chao-dyn/9502012 Chaotic Dynamics +chao-dyn/9502021 Chaotic Dynamics +chao-dyn/9503010 Chaotic Dynamics +chao-dyn/9503011 Chaotic Dynamics +chao-dyn/9504007 Chaotic Dynamics +chao-dyn/9504009 Chaotic Dynamics +chao-dyn/9504010 Chaotic Dynamics +chao-dyn/9504011 Chaotic Dynamics +chao-dyn/9504013 Chaotic Dynamics +chao-dyn/9505005 Chaotic Dynamics +chao-dyn/9505008 Chaotic Dynamics +chao-dyn/9505011 Chaotic Dynamics +chao-dyn/9505012 Chaotic Dynamics +chao-dyn/9506001 Chaotic Dynamics +chao-dyn/9506002 Chaotic Dynamics +chao-dyn/9506003 Chaotic Dynamics +chao-dyn/9506007 Chaotic Dynamics +chao-dyn/9506008 Chaotic Dynamics +chao-dyn/9506009 Chaotic Dynamics +chao-dyn/9506010 Chaotic Dynamics +chao-dyn/9507011 Chaotic Dynamics +chao-dyn/9507012 Chaotic Dynamics +chao-dyn/9509013 Chaotic Dynamics +chao-dyn/9603011 Chaotic Dynamics +chao-dyn/9603014 Chaotic Dynamics +chao-dyn/9607009 Chaotic Dynamics +chao-dyn/9607011 Chaotic Dynamics +chao-dyn/9607012 Chaotic Dynamics +chao-dyn/9607020 Chaotic Dynamics +chao-dyn/9610014 Chaotic Dynamics +chao-dyn/9610016 Chaotic Dynamics +chao-dyn/9611002 Chaotic Dynamics +chao-dyn/9611003 Chaotic Dynamics +chao-dyn/9611008 Chaotic Dynamics +chao-dyn/9611019 Chaotic Dynamics +chao-dyn/9612002 Chaotic Dynamics +chao-dyn/9612008 Chaotic Dynamics +chao-dyn/9701007 Chaotic Dynamics +chao-dyn/9701012 Chaotic Dynamics +chao-dyn/9701015 Chaotic Dynamics +chao-dyn/9702012 Chaotic Dynamics +chao-dyn/9703016 Chaotic Dynamics +chao-dyn/9704003 Chaotic Dynamics +chao-dyn/9704022 Chaotic Dynamics +chao-dyn/9705004 Chaotic Dynamics +chao-dyn/9705010 Chaotic Dynamics +chao-dyn/9706013 Chaotic Dynamics +chao-dyn/9707011 Chaotic Dynamics +chao-dyn/9708004 Chaotic Dynamics +chao-dyn/9709010 Chaotic Dynamics +chao-dyn/9709035 Chaotic Dynamics +chao-dyn/9710022 Chaotic Dynamics +chao-dyn/9712001 Chaotic Dynamics +chao-dyn/9801002 Chaotic Dynamics +chao-dyn/9802006 Chaotic Dynamics +chao-dyn/9803007 Chaotic Dynamics +chao-dyn/9804001 Chaotic Dynamics +chao-dyn/9804033 Chaotic Dynamics +chao-dyn/9807017 Chaotic Dynamics +chao-dyn/9809001 Chaotic Dynamics +chao-dyn/9810008 Chaotic Dynamics +chao-dyn/9810010 Chaotic Dynamics +chao-dyn/9811024 Chaotic Dynamics +chao-dyn/9902010 Chaotic Dynamics +chao-dyn/9904025 Chaotic Dynamics +chao-dyn/9904026 Chaotic Dynamics +chao-dyn/9904047 Chaotic Dynamics +chao-dyn/9905038 Chaotic Dynamics +chao-dyn/9906027 Chaotic Dynamics +chao-dyn/9906036 Chaotic Dynamics +chao-dyn/9907026 Chaotic Dynamics +chao-dyn/9909002 Chaotic Dynamics +chao-dyn/9909038 Chaotic Dynamics +chao-dyn/9910005 Chaotic Dynamics +chao-dyn/9911020 Chaotic Dynamics +chao-dyn/9912019 Chaotic Dynamics +chao-dyn/9912020 Chaotic Dynamics +chao-dyn/9912021 Chaotic Dynamics +chem-ph/9502001 Chemical Physics +chem-ph/9502002 Chemical Physics +chem-ph/9502003 Chemical Physics +chem-ph/9502004 Chemical Physics +chem-ph/9502005 Chemical Physics +chem-ph/9502006 Chemical Physics +chem-ph/9502007 Chemical Physics +chem-ph/9502008 Chemical Physics +chem-ph/9502010 Chemical Physics +chem-ph/9502011 Chemical Physics +chem-ph/9506002 Chemical Physics +chem-ph/9605002 Chemical Physics +cmp-lg/9405009 Computation and Language +cmp-lg/9406007 Computation and Language +cmp-lg/9408005 Computation and Language +cmp-lg/9411018 Computation and Language +cmp-lg/9501001 Computation and Language +cmp-lg/9501002 Computation and Language +cmp-lg/9501003 Computation and Language +cmp-lg/9501004 Computation and Language +cmp-lg/9502002 Computation and Language +cmp-lg/9502003 Computation and Language +cmp-lg/9502004 Computation and Language +cmp-lg/9502005 Computation and Language +cmp-lg/9502006 Computation and Language +cmp-lg/9502007 Computation and Language +cmp-lg/9502008 Computation and Language +cmp-lg/9502009 Computation and Language +cmp-lg/9502010 Computation and Language +cmp-lg/9502011 Computation and Language +cmp-lg/9502012 Computation and Language +cmp-lg/9502014 Computation and Language +cmp-lg/9502015 Computation and Language +cmp-lg/9502016 Computation and Language +cmp-lg/9502017 Computation and Language +cmp-lg/9502018 Computation and Language +cmp-lg/9502020 Computation and Language +cmp-lg/9502022 Computation and Language +cmp-lg/9502023 Computation and Language +cmp-lg/9502024 Computation and Language +cmp-lg/9502027 Computation and Language +cmp-lg/9502028 Computation and Language +cmp-lg/9502029 Computation and Language +cmp-lg/9502030 Computation and Language +cmp-lg/9502031 Computation and Language +cmp-lg/9502032 Computation and Language +cmp-lg/9502033 Computation and Language +cmp-lg/9502036 Computation and Language +cmp-lg/9502037 Computation and Language +cmp-lg/9502038 Computation and Language +cmp-lg/9502039 Computation and Language +cmp-lg/9503001 Computation and Language +cmp-lg/9503002 Computation and Language +cmp-lg/9503003 Computation and Language +cmp-lg/9503005 Computation and Language +cmp-lg/9503006 Computation and Language +cmp-lg/9503007 Computation and Language +cmp-lg/9503008 Computation and Language +cmp-lg/9503010 Computation and Language +cmp-lg/9503011 Computation and Language +cmp-lg/9503013 Computation and Language +cmp-lg/9503014 Computation and Language +cmp-lg/9503015 Computation and Language +cmp-lg/9503016 Computation and Language +cmp-lg/9503017 Computation and Language +cmp-lg/9503018 Computation and Language +cmp-lg/9503019 Computation and Language +cmp-lg/9503025 Computation and Language +cmp-lg/9504020 Computation and Language +cmp-lg/9504029 Computation and Language +cmp-lg/9505031 Computation and Language +cmp-lg/9505032 Computation and Language +cmp-lg/9506014 Computation and Language +cmp-lg/9506019 Computation and Language +cmp-lg/9506022 Computation and Language +cmp-lg/9507003 Computation and Language +cmp-lg/9507007 Computation and Language +cmp-lg/9507008 Computation and Language +cmp-lg/9508002 Computation and Language +cmp-lg/9510004 Computation and Language +cmp-lg/9510008 Computation and Language +cmp-lg/9601010 Computation and Language +cmp-lg/9601011 Computation and Language +cmp-lg/9605031 Computation and Language +cmp-lg/9607017 Computation and Language +cmp-lg/9607032 Computation and Language +cmp-lg/9608020 Computation and Language +cmp-lg/9609004 Computation and Language +cmp-lg/9611005 Computation and Language +cmp-lg/9702001 Computation and Language +cmp-lg/9702002 Computation and Language +cmp-lg/9702016 Computation and Language +cmp-lg/9703002 Computation and Language +cmp-lg/9704011 Computation and Language +cmp-lg/9706014 Computation and Language +cmp-lg/9709015 Computation and Language +cmp-lg/9805008 Computation and Language +comp-gas/9306003 Cellular Automata and Lattice Gases +comp-gas/9307004 Cellular Automata and Lattice Gases +comp-gas/9403003 Cellular Automata and Lattice Gases +comp-gas/9407003 Cellular Automata and Lattice Gases +comp-gas/9501001 Cellular Automata and Lattice Gases +comp-gas/9501002 Cellular Automata and Lattice Gases +comp-gas/9503002 Cellular Automata and Lattice Gases +comp-gas/9505002 Cellular Automata and Lattice Gases +comp-gas/9506001 Cellular Automata and Lattice Gases +comp-gas/9507002 Cellular Automata and Lattice Gases +comp-gas/9609001 Cellular Automata and Lattice Gases +comp-gas/9612001 Cellular Automata and Lattice Gases +comp-gas/9702001 Cellular Automata and Lattice Gases +cond-mat/0001007 Strongly Correlated Electrons +cond-mat/0001018 +cond-mat/0001082 Mesoscale and Nanoscale Physics +cond-mat/0001165 +cond-mat/0001218 Superconductivity +cond-mat/0001260 Strongly Correlated Electrons +cond-mat/0001282 Strongly Correlated Electrons +cond-mat/0001298 Materials Science +cond-mat/0001309 Statistical Mechanics +cond-mat/0001361 Statistical Mechanics +cond-mat/0001367 Statistical Mechanics +cond-mat/0001442 Strongly Correlated Electrons +cond-mat/0002030 Mesoscale and Nanoscale Physics +cond-mat/0002037 +cond-mat/0002118 +cond-mat/0002145 +cond-mat/0002166 Soft Condensed Matter +cond-mat/0002191 Materials Science +cond-mat/0002211 Strongly Correlated Electrons +cond-mat/0002221 Superconductivity +cond-mat/0002231 Strongly Correlated Electrons +cond-mat/0002274 Strongly Correlated Electrons +cond-mat/0002320 Materials Science +cond-mat/0002323 Statistical Mechanics +cond-mat/0002364 Mesoscale and Nanoscale Physics +cond-mat/0002386 Mesoscale and Nanoscale Physics +cond-mat/0002401 Materials Science +cond-mat/0002403 Mesoscale and Nanoscale Physics +cond-mat/0002462 Statistical Mechanics +cond-mat/0003006 +cond-mat/0003018 Superconductivity +cond-mat/0003019 Mesoscale and Nanoscale Physics +cond-mat/0003078 Strongly Correlated Electrons +cond-mat/0003127 Strongly Correlated Electrons +cond-mat/0003167 Statistical Mechanics +cond-mat/0003200 Strongly Correlated Electrons +cond-mat/0003216 Statistical Mechanics +cond-mat/0003227 Materials Science +cond-mat/0003272 Superconductivity +cond-mat/0003285 Statistical Mechanics +cond-mat/0003312 Statistical Mechanics +cond-mat/0003342 Statistical Mechanics +cond-mat/0003355 +cond-mat/0003388 Superconductivity +cond-mat/0003419 Strongly Correlated Electrons +cond-mat/0003439 Soft Condensed Matter +cond-mat/0003487 Superconductivity +cond-mat/0003501 Statistical Mechanics +cond-mat/0003513 Mesoscale and Nanoscale Physics +cond-mat/0004007 Strongly Correlated Electrons +cond-mat/0004034 +cond-mat/0004036 Superconductivity +cond-mat/0004038 Statistical Mechanics +cond-mat/0004138 +cond-mat/0004145 Statistical Mechanics +cond-mat/0004154 Materials Science +cond-mat/0004168 Disordered Systems and Neural Networks +cond-mat/0004177 Superconductivity +cond-mat/0004179 Statistical Mechanics +cond-mat/0004282 Statistical Mechanics +cond-mat/0004449 Statistical Mechanics +cond-mat/0004472 +cond-mat/0004486 Statistical Mechanics +cond-mat/0005056 Materials Science +cond-mat/0005069 Superconductivity +cond-mat/0005104 Materials Science +cond-mat/0005141 Superconductivity +cond-mat/0005149 Disordered Systems and Neural Networks +cond-mat/0005160 Statistical Mechanics +cond-mat/0005194 Strongly Correlated Electrons +cond-mat/0005206 Strongly Correlated Electrons +cond-mat/0005209 Materials Science +cond-mat/0005227 Statistical Mechanics +cond-mat/0005237 Statistical Mechanics +cond-mat/0005283 Mesoscale and Nanoscale Physics +cond-mat/0005285 Materials Science +cond-mat/0005290 Superconductivity +cond-mat/0005296 +cond-mat/0005307 Soft Condensed Matter +cond-mat/0005309 Strongly Correlated Electrons +cond-mat/0005319 Statistical Mechanics +cond-mat/0005326 Superconductivity +cond-mat/0005404 Superconductivity +cond-mat/0005446 Disordered Systems and Neural Networks +cond-mat/0005499 Statistical Mechanics +cond-mat/0006101 Superconductivity +cond-mat/0006102 Superconductivity +cond-mat/0006136 Disordered Systems and Neural Networks +cond-mat/0006170 Disordered Systems and Neural Networks +cond-mat/0006181 Soft Condensed Matter +cond-mat/0006195 Statistical Mechanics +cond-mat/0006197 Superconductivity +cond-mat/0006209 Materials Science +cond-mat/0006240 Soft Condensed Matter +cond-mat/0006252 +cond-mat/0006264 Soft Condensed Matter +cond-mat/0006266 Soft Condensed Matter +cond-mat/0006296 Superconductivity +cond-mat/0006298 Materials Science +cond-mat/0006307 Strongly Correlated Electrons +cond-mat/0006366 Superconductivity +cond-mat/0006383 Statistical Mechanics +cond-mat/0006475 Statistical Mechanics +cond-mat/0007014 Statistical Mechanics +cond-mat/0007027 Disordered Systems and Neural Networks +cond-mat/0007043 Mesoscale and Nanoscale Physics +cond-mat/0007075 Disordered Systems and Neural Networks +cond-mat/0007142 Disordered Systems and Neural Networks +cond-mat/0007162 Mesoscale and Nanoscale Physics +cond-mat/0007204 Disordered Systems and Neural Networks +cond-mat/0007276 Disordered Systems and Neural Networks +cond-mat/0007360 Statistical Mechanics +cond-mat/0007401 Mesoscale and Nanoscale Physics +cond-mat/0007415 Superconductivity +cond-mat/0007452 Statistical Mechanics +cond-mat/0007499 +cond-mat/0008008 Mesoscale and Nanoscale Physics +cond-mat/0008010 Statistical Mechanics +cond-mat/0008080 Materials Science +cond-mat/0008176 Statistical Mechanics +cond-mat/0008180 Statistical Mechanics +cond-mat/0008197 Superconductivity +cond-mat/0008236 Materials Science +cond-mat/0008250 Statistical Mechanics +cond-mat/0008273 +cond-mat/0008318 +cond-mat/0008323 Materials Science +cond-mat/0008342 Strongly Correlated Electrons +cond-mat/0008349 Superconductivity +cond-mat/0009019 Disordered Systems and Neural Networks +cond-mat/0009035 Strongly Correlated Electrons +cond-mat/0009038 Statistical Mechanics +cond-mat/0009041 Strongly Correlated Electrons +cond-mat/0009051 Superconductivity +cond-mat/0009064 Soft Condensed Matter +cond-mat/0009142 Statistical Mechanics +cond-mat/0009159 Soft Condensed Matter +cond-mat/0009171 Mesoscale and Nanoscale Physics +cond-mat/0009177 Statistical Mechanics +cond-mat/0009215 +cond-mat/0009276 Statistical Mechanics +cond-mat/0009356 +cond-mat/0009419 Statistical Mechanics +cond-mat/0010043 Materials Science +cond-mat/0010107 +cond-mat/0010125 Statistical Mechanics +cond-mat/0010191 +cond-mat/0010201 Mesoscale and Nanoscale Physics +cond-mat/0010246 Statistical Mechanics +cond-mat/0010273 Strongly Correlated Electrons +cond-mat/0010281 Strongly Correlated Electrons +cond-mat/0010299 +cond-mat/0010334 Statistical Mechanics +cond-mat/0010369 Statistical Mechanics +cond-mat/0010389 Materials Science +cond-mat/0010403 Superconductivity +cond-mat/0010453 Statistical Mechanics +cond-mat/0010476 Statistical Mechanics +cond-mat/0010481 Soft Condensed Matter +cond-mat/0010502 Materials Science +cond-mat/0011004 Superconductivity +cond-mat/0011006 Statistical Mechanics +cond-mat/0011109 +cond-mat/0011157 Disordered Systems and Neural Networks +cond-mat/0011164 Statistical Mechanics +cond-mat/0011193 Mesoscale and Nanoscale Physics +cond-mat/0011194 Materials Science +cond-mat/0011204 +cond-mat/0011205 Mesoscale and Nanoscale Physics +cond-mat/0011217 Materials Science +cond-mat/0011243 Materials Science +cond-mat/0011268 Strongly Correlated Electrons +cond-mat/0011273 Strongly Correlated Electrons +cond-mat/0011305 Statistical Mechanics +cond-mat/0011347 Superconductivity +cond-mat/0011367 Statistical Mechanics +cond-mat/0011415 Mesoscale and Nanoscale Physics +cond-mat/0011440 Statistical Mechanics +cond-mat/0011447 +cond-mat/0011485 +cond-mat/0012017 Statistical Mechanics +cond-mat/0012037 Materials Science +cond-mat/0012069 Strongly Correlated Electrons +cond-mat/0012095 Statistical Mechanics +cond-mat/0012134 Soft Condensed Matter +cond-mat/0012159 Statistical Mechanics +cond-mat/0012170 Soft Condensed Matter +cond-mat/0012193 +cond-mat/0012211 Mesoscale and Nanoscale Physics +cond-mat/0012236 Superconductivity +cond-mat/0012255 Statistical Mechanics +cond-mat/0012271 Soft Condensed Matter +cond-mat/0012332 Disordered Systems and Neural Networks +cond-mat/0012349 +cond-mat/0012356 Statistical Mechanics +cond-mat/0012364 +cond-mat/0012416 Statistical Mechanics +cond-mat/0012472 Strongly Correlated Electrons +cond-mat/0012498 Superconductivity +cond-mat/0012506 Soft Condensed Matter +cond-mat/0101059 Disordered Systems and Neural Networks +cond-mat/0101074 Superconductivity +cond-mat/0101078 Statistical Mechanics +cond-mat/0101086 Statistical Mechanics +cond-mat/0101112 Statistical Mechanics +cond-mat/0101113 +cond-mat/0101165 Soft Condensed Matter +cond-mat/0101186 Materials Science +cond-mat/0101190 Statistical Mechanics +cond-mat/0101193 Materials Science +cond-mat/0101202 Statistical Mechanics +cond-mat/0101253 Statistical Mechanics +cond-mat/0101257 Materials Science +cond-mat/0101292 Soft Condensed Matter +cond-mat/0101352 +cond-mat/0101370 Superconductivity +cond-mat/0101413 Statistical Mechanics +cond-mat/0101414 Strongly Correlated Electrons +cond-mat/0102039 Mesoscale and Nanoscale Physics +cond-mat/0102071 Statistical Mechanics +cond-mat/0102099 Soft Condensed Matter +cond-mat/0102212 Statistical Mechanics +cond-mat/0102284 Superconductivity +cond-mat/0102286 +cond-mat/0102322 Statistical Mechanics +cond-mat/0102354 +cond-mat/0102356 Superconductivity +cond-mat/0102375 Statistical Mechanics +cond-mat/0102380 Mesoscale and Nanoscale Physics +cond-mat/0102399 Materials Science +cond-mat/0102428 Statistical Mechanics +cond-mat/0102456 +cond-mat/0102496 Materials Science +cond-mat/0102512 Statistical Mechanics +cond-mat/0103051 Statistical Mechanics +cond-mat/0103084 Materials Science +cond-mat/0103191 Strongly Correlated Electrons +cond-mat/0103209 Mesoscale and Nanoscale Physics +cond-mat/0103214 Strongly Correlated Electrons +cond-mat/0103223 Materials Science +cond-mat/0103225 Statistical Mechanics +cond-mat/0103234 +cond-mat/0103236 Mesoscale and Nanoscale Physics +cond-mat/0103253 Strongly Correlated Electrons +cond-mat/0103267 Soft Condensed Matter +cond-mat/0103289 Materials Science +cond-mat/0103346 Statistical Mechanics +cond-mat/0103350 Superconductivity +cond-mat/0103358 Materials Science +cond-mat/0103359 Statistical Mechanics +cond-mat/0103368 Statistical Mechanics +cond-mat/0103403 Statistical Mechanics +cond-mat/0103404 Statistical Mechanics +cond-mat/0103451 Soft Condensed Matter +cond-mat/0103509 Soft Condensed Matter +cond-mat/0103513 Soft Condensed Matter +cond-mat/0103519 Superconductivity +cond-mat/0103535 +cond-mat/0103536 Superconductivity +cond-mat/0103566 Statistical Mechanics +cond-mat/0103622 Materials Science +cond-mat/0103625 Statistical Mechanics +cond-mat/0104005 Superconductivity +cond-mat/0104022 Statistical Mechanics +cond-mat/0104040 Materials Science +cond-mat/0104054 +cond-mat/0104099 Strongly Correlated Electrons +cond-mat/0104167 Statistical Mechanics +cond-mat/0104187 Superconductivity +cond-mat/0104333 Materials Science +cond-mat/0104392 Statistical Mechanics +cond-mat/0104393 Statistical Mechanics +cond-mat/0104400 Statistical Mechanics +cond-mat/0104500 Superconductivity +cond-mat/0104503 +cond-mat/0104522 +cond-mat/0105022 Materials Science +cond-mat/0105068 Strongly Correlated Electrons +cond-mat/0105091 Superconductivity +cond-mat/0105103 Mesoscale and Nanoscale Physics +cond-mat/0105141 Superconductivity +cond-mat/0105183 +cond-mat/0105286 Mesoscale and Nanoscale Physics +cond-mat/0105304 Soft Condensed Matter +cond-mat/0105370 Superconductivity +cond-mat/0105399 Strongly Correlated Electrons +cond-mat/0105445 Superconductivity +cond-mat/0105477 Strongly Correlated Electrons +cond-mat/0105520 Mesoscale and Nanoscale Physics +cond-mat/0105540 Strongly Correlated Electrons +cond-mat/0105569 Mesoscale and Nanoscale Physics +cond-mat/0105591 +cond-mat/0105597 Soft Condensed Matter +cond-mat/0106048 +cond-mat/0106076 Statistical Mechanics +cond-mat/0106081 Statistical Mechanics +cond-mat/0106094 Strongly Correlated Electrons +cond-mat/0106096 Statistical Mechanics +cond-mat/0106100 Mesoscale and Nanoscale Physics +cond-mat/0106115 Statistical Mechanics +cond-mat/0106145 Statistical Mechanics +cond-mat/0106178 Statistical Mechanics +cond-mat/0106184 Materials Science +cond-mat/0106196 +cond-mat/0106202 Mesoscale and Nanoscale Physics +cond-mat/0106318 Materials Science +cond-mat/0106322 Superconductivity +cond-mat/0106353 Superconductivity +cond-mat/0106435 Materials Science +cond-mat/0106447 Materials Science +cond-mat/0106463 Statistical Mechanics +cond-mat/0106468 Disordered Systems and Neural Networks +cond-mat/0106470 +cond-mat/0106489 Statistical Mechanics +cond-mat/0106570 +cond-mat/0106606 Materials Science +cond-mat/0106608 Strongly Correlated Electrons +cond-mat/0107117 +cond-mat/0107144 Mesoscale and Nanoscale Physics +cond-mat/0107175 Mesoscale and Nanoscale Physics +cond-mat/0107191 Disordered Systems and Neural Networks +cond-mat/0107218 Superconductivity +cond-mat/0107235 Statistical Mechanics +cond-mat/0107242 Strongly Correlated Electrons +cond-mat/0107248 +cond-mat/0107283 Mesoscale and Nanoscale Physics +cond-mat/0107318 Mesoscale and Nanoscale Physics +cond-mat/0107398 +cond-mat/0107413 Soft Condensed Matter +cond-mat/0107427 Statistical Mechanics +cond-mat/0107443 Soft Condensed Matter +cond-mat/0107468 +cond-mat/0107506 Strongly Correlated Electrons +cond-mat/0107542 Materials Science +cond-mat/0107554 Statistical Mechanics +cond-mat/0107557 Superconductivity +cond-mat/0108070 Strongly Correlated Electrons +cond-mat/0108078 Materials Science +cond-mat/0108088 Superconductivity +cond-mat/0108095 Mesoscale and Nanoscale Physics +cond-mat/0108120 Statistical Mechanics +cond-mat/0108129 Strongly Correlated Electrons +cond-mat/0108142 Materials Science +cond-mat/0108198 Strongly Correlated Electrons +cond-mat/0108200 Mesoscale and Nanoscale Physics +cond-mat/0108224 Soft Condensed Matter +cond-mat/0108250 Soft Condensed Matter +cond-mat/0108251 Superconductivity +cond-mat/0108256 Soft Condensed Matter +cond-mat/0108258 Materials Science +cond-mat/0108267 Superconductivity +cond-mat/0108375 Soft Condensed Matter +cond-mat/0108402 Strongly Correlated Electrons +cond-mat/0108407 Strongly Correlated Electrons +cond-mat/0108488 Strongly Correlated Electrons +cond-mat/0108499 Materials Science +cond-mat/0108522 Superconductivity +cond-mat/0109011 Soft Condensed Matter +cond-mat/0109019 Materials Science +cond-mat/0109044 Statistical Mechanics +cond-mat/0109052 Materials Science +cond-mat/0109069 Superconductivity +cond-mat/0109075 Materials Science +cond-mat/0109076 Soft Condensed Matter +cond-mat/0109129 Superconductivity +cond-mat/0109302 Statistical Mechanics +cond-mat/0109305 Soft Condensed Matter +cond-mat/0109325 Mesoscale and Nanoscale Physics +cond-mat/0109344 Mesoscale and Nanoscale Physics +cond-mat/0109353 Mesoscale and Nanoscale Physics +cond-mat/0109354 Mesoscale and Nanoscale Physics +cond-mat/0109358 Statistical Mechanics +cond-mat/0109367 Strongly Correlated Electrons +cond-mat/0109403 Superconductivity +cond-mat/0109413 Mesoscale and Nanoscale Physics +cond-mat/0109495 Disordered Systems and Neural Networks +cond-mat/0109542 Statistical Mechanics +cond-mat/0110049 Mesoscale and Nanoscale Physics +cond-mat/0110054 Mesoscale and Nanoscale Physics +cond-mat/0110074 Mesoscale and Nanoscale Physics +cond-mat/0110121 Statistical Mechanics +cond-mat/0110154 Statistical Mechanics +cond-mat/0110157 Materials Science +cond-mat/0110216 +cond-mat/0110232 Superconductivity +cond-mat/0110340 Strongly Correlated Electrons +cond-mat/0110354 Statistical Mechanics +cond-mat/0110411 Statistical Mechanics +cond-mat/0110454 Mesoscale and Nanoscale Physics +cond-mat/0110456 Statistical Mechanics +cond-mat/0110489 Statistical Mechanics +cond-mat/0110548 Superconductivity +cond-mat/0110607 Statistical Mechanics +cond-mat/0110626 Superconductivity +cond-mat/0110638 Superconductivity +cond-mat/0111018 Disordered Systems and Neural Networks +cond-mat/0111021 Strongly Correlated Electrons +cond-mat/0111032 Soft Condensed Matter +cond-mat/0111051 Strongly Correlated Electrons +cond-mat/0111152 Superconductivity +cond-mat/0111158 Disordered Systems and Neural Networks +cond-mat/0111160 Statistical Mechanics +cond-mat/0111245 Materials Science +cond-mat/0111255 Materials Science +cond-mat/0111371 Superconductivity +cond-mat/0111405 Strongly Correlated Electrons +cond-mat/0111406 Mesoscale and Nanoscale Physics +cond-mat/0111418 Soft Condensed Matter +cond-mat/0111518 Soft Condensed Matter +cond-mat/0111551 Superconductivity +cond-mat/0111562 Statistical Mechanics +cond-mat/0112022 Statistical Mechanics +cond-mat/0112034 Superconductivity +cond-mat/0112062 Mesoscale and Nanoscale Physics +cond-mat/0112063 Statistical Mechanics +cond-mat/0112067 +cond-mat/0112068 Soft Condensed Matter +cond-mat/0112085 Superconductivity +cond-mat/0112086 Strongly Correlated Electrons +cond-mat/0112089 Statistical Mechanics +cond-mat/0112121 Superconductivity +cond-mat/0112177 Mesoscale and Nanoscale Physics +cond-mat/0112195 Statistical Mechanics +cond-mat/0112262 Superconductivity +cond-mat/0112358 Strongly Correlated Electrons +cond-mat/0112389 Disordered Systems and Neural Networks +cond-mat/0112499 Mesoscale and Nanoscale Physics +cond-mat/0201024 Superconductivity +cond-mat/0201072 Strongly Correlated Electrons +cond-mat/0201082 Mesoscale and Nanoscale Physics +cond-mat/0201083 Statistical Mechanics +cond-mat/0201095 Mesoscale and Nanoscale Physics +cond-mat/0201126 Superconductivity +cond-mat/0201166 Strongly Correlated Electrons +cond-mat/0201258 Soft Condensed Matter +cond-mat/0201262 Soft Condensed Matter +cond-mat/0201327 Strongly Correlated Electrons +cond-mat/0201374 Soft Condensed Matter +cond-mat/0201393 Statistical Mechanics +cond-mat/0201407 Strongly Correlated Electrons +cond-mat/0201419 Materials Science +cond-mat/0201455 Strongly Correlated Electrons +cond-mat/0201482 Statistical Mechanics +cond-mat/0201487 Mesoscale and Nanoscale Physics +cond-mat/0201531 Materials Science +cond-mat/0201545 +cond-mat/0201576 Statistical Mechanics +cond-mat/0201589 Soft Condensed Matter +cond-mat/0202010 Superconductivity +cond-mat/0202047 Statistical Mechanics +cond-mat/0202239 Mesoscale and Nanoscale Physics +cond-mat/0202261 Strongly Correlated Electrons +cond-mat/0202263 Strongly Correlated Electrons +cond-mat/0202344 +cond-mat/0202347 Strongly Correlated Electrons +cond-mat/0202420 +cond-mat/0202428 Soft Condensed Matter +cond-mat/0202499 Soft Condensed Matter +cond-mat/0202519 Mesoscale and Nanoscale Physics +cond-mat/0203015 Materials Science +cond-mat/0203023 Mesoscale and Nanoscale Physics +cond-mat/0203056 Materials Science +cond-mat/0203079 Soft Condensed Matter +cond-mat/0203124 Superconductivity +cond-mat/0203141 Strongly Correlated Electrons +cond-mat/0203186 Mesoscale and Nanoscale Physics +cond-mat/0203189 Materials Science +cond-mat/0203226 Materials Science +cond-mat/0203227 Statistical Mechanics +cond-mat/0203237 Soft Condensed Matter +cond-mat/0203279 +cond-mat/0203293 Strongly Correlated Electrons +cond-mat/0203458 Materials Science +cond-mat/0203460 Statistical Mechanics +cond-mat/0203509 Mesoscale and Nanoscale Physics +cond-mat/0203534 +cond-mat/0203592 Materials Science +cond-mat/0203609 Statistical Mechanics +cond-mat/0204034 Statistical Mechanics +cond-mat/0204046 Materials Science +cond-mat/0204123 Superconductivity +cond-mat/0204148 Statistical Mechanics +cond-mat/0204152 Strongly Correlated Electrons +cond-mat/0204153 Superconductivity +cond-mat/0204166 Strongly Correlated Electrons +cond-mat/0204225 Disordered Systems and Neural Networks +cond-mat/0204231 +cond-mat/0204238 Superconductivity +cond-mat/0204349 Statistical Mechanics +cond-mat/0204351 Strongly Correlated Electrons +cond-mat/0204375 Statistical Mechanics +cond-mat/0204443 Statistical Mechanics +cond-mat/0204516 Mesoscale and Nanoscale Physics +cond-mat/0204551 Statistical Mechanics +cond-mat/0204607 Materials Science +cond-mat/0204615 Disordered Systems and Neural Networks +cond-mat/0204620 Mesoscale and Nanoscale Physics +cond-mat/0205012 Superconductivity +cond-mat/0205029 Strongly Correlated Electrons +cond-mat/0205051 Disordered Systems and Neural Networks +cond-mat/0205071 Soft Condensed Matter +cond-mat/0205072 Strongly Correlated Electrons +cond-mat/0205080 Soft Condensed Matter +cond-mat/0205152 Strongly Correlated Electrons +cond-mat/0205179 Soft Condensed Matter +cond-mat/0205187 Materials Science +cond-mat/0205219 Statistical Mechanics +cond-mat/0205367 Soft Condensed Matter +cond-mat/0205402 Materials Science +cond-mat/0205427 Statistical Mechanics +cond-mat/0205467 Statistical Mechanics +cond-mat/0205525 Statistical Mechanics +cond-mat/0205535 Soft Condensed Matter +cond-mat/0205579 Materials Science +cond-mat/0205603 Materials Science +cond-mat/0205644 Statistical Mechanics +cond-mat/0205648 Soft Condensed Matter +cond-mat/0206032 Superconductivity +cond-mat/0206044 Statistical Mechanics +cond-mat/0206151 Strongly Correlated Electrons +cond-mat/0206163 Statistical Mechanics +cond-mat/0206173 Statistical Mechanics +cond-mat/0206177 Strongly Correlated Electrons +cond-mat/0206205 Statistical Mechanics +cond-mat/0206220 Mesoscale and Nanoscale Physics +cond-mat/0206249 Statistical Mechanics +cond-mat/0206343 Soft Condensed Matter +cond-mat/0206416 Materials Science +cond-mat/0206438 Disordered Systems and Neural Networks +cond-mat/0206446 Statistical Mechanics +cond-mat/0206475 Disordered Systems and Neural Networks +cond-mat/0206493 Soft Condensed Matter +cond-mat/0206496 Soft Condensed Matter +cond-mat/0206551 Mesoscale and Nanoscale Physics +cond-mat/0206578 Materials Science +cond-mat/0207081 Materials Science +cond-mat/0207097 Superconductivity +cond-mat/0207120 Materials Science +cond-mat/0207122 Statistical Mechanics +cond-mat/0207136 Disordered Systems and Neural Networks +cond-mat/0207158 +cond-mat/0207174 Mesoscale and Nanoscale Physics +cond-mat/0207183 Mesoscale and Nanoscale Physics +cond-mat/0207193 +cond-mat/0207211 Statistical Mechanics +cond-mat/0207266 Mesoscale and Nanoscale Physics +cond-mat/0207397 Materials Science +cond-mat/0207491 Superconductivity +cond-mat/0207500 Superconductivity +cond-mat/0207586 +cond-mat/0207643 Superconductivity +cond-mat/0207663 Materials Science +cond-mat/0207672 Materials Science +cond-mat/0207674 Statistical Mechanics +cond-mat/0207704 Superconductivity +cond-mat/0207743 Statistical Mechanics +cond-mat/0207753 Mesoscale and Nanoscale Physics +cond-mat/0208095 Soft Condensed Matter +cond-mat/0208123 Materials Science +cond-mat/0208208 +cond-mat/0208226 Superconductivity +cond-mat/0208237 Materials Science +cond-mat/0208238 Statistical Mechanics +cond-mat/0208249 Mesoscale and Nanoscale Physics +cond-mat/0208276 Superconductivity +cond-mat/0208323 Materials Science +cond-mat/0208421 Statistical Mechanics +cond-mat/0208424 Superconductivity +cond-mat/0208588 Mesoscale and Nanoscale Physics +cond-mat/0209028 Materials Science +cond-mat/0209141 +cond-mat/0209195 Soft Condensed Matter +cond-mat/0209215 Mesoscale and Nanoscale Physics +cond-mat/0209220 Soft Condensed Matter +cond-mat/0209264 Materials Science +cond-mat/0209288 Strongly Correlated Electrons +cond-mat/0209307 Strongly Correlated Electrons +cond-mat/0209332 Soft Condensed Matter +cond-mat/0209377 Mesoscale and Nanoscale Physics +cond-mat/0209395 Soft Condensed Matter +cond-mat/0209398 Statistical Mechanics +cond-mat/0209404 Materials Science +cond-mat/0209405 Strongly Correlated Electrons +cond-mat/0209438 Mesoscale and Nanoscale Physics +cond-mat/0209590 +cond-mat/0209630 Statistical Mechanics +cond-mat/0209658 Soft Condensed Matter +cond-mat/0209659 Soft Condensed Matter +cond-mat/0209673 Strongly Correlated Electrons +cond-mat/0209674 Statistical Mechanics +cond-mat/0210036 Statistical Mechanics +cond-mat/0210061 Materials Science +cond-mat/0210066 Disordered Systems and Neural Networks +cond-mat/0210148 Superconductivity +cond-mat/0210185 Soft Condensed Matter +cond-mat/0210277 Mesoscale and Nanoscale Physics +cond-mat/0210364 Superconductivity +cond-mat/0210387 Statistical Mechanics +cond-mat/0210471 Statistical Mechanics +cond-mat/0210481 Statistical Mechanics +cond-mat/0210490 Materials Science +cond-mat/0210492 Mesoscale and Nanoscale Physics +cond-mat/0210602 Strongly Correlated Electrons +cond-mat/0210673 Other Condensed Matter +cond-mat/0211046 Statistical Mechanics +cond-mat/0211090 Strongly Correlated Electrons +cond-mat/0211156 Mesoscale and Nanoscale Physics +cond-mat/0211162 Statistical Mechanics +cond-mat/0211166 Statistical Mechanics +cond-mat/0211192 Statistical Mechanics +cond-mat/0211234 +cond-mat/0211241 Superconductivity +cond-mat/0211245 Superconductivity +cond-mat/0211284 Strongly Correlated Electrons +cond-mat/0211346 Strongly Correlated Electrons +cond-mat/0211349 Superconductivity +cond-mat/0211354 Statistical Mechanics +cond-mat/0211373 Statistical Mechanics +cond-mat/0211380 Strongly Correlated Electrons +cond-mat/0211398 Soft Condensed Matter +cond-mat/0211403 Statistical Mechanics +cond-mat/0211404 Strongly Correlated Electrons +cond-mat/0211406 Strongly Correlated Electrons +cond-mat/0211463 Statistical Mechanics +cond-mat/0211504 Soft Condensed Matter +cond-mat/0211598 Strongly Correlated Electrons +cond-mat/0211636 Superconductivity +cond-mat/0211649 Mesoscale and Nanoscale Physics +cond-mat/0211678 Mesoscale and Nanoscale Physics +cond-mat/0211683 Statistical Mechanics +cond-mat/0212017 Mesoscale and Nanoscale Physics +cond-mat/0212021 Mesoscale and Nanoscale Physics +cond-mat/0212055 +cond-mat/0212156 Materials Science +cond-mat/0212161 +cond-mat/0212166 Mesoscale and Nanoscale Physics +cond-mat/0212212 +cond-mat/0212256 Strongly Correlated Electrons +cond-mat/0212290 Statistical Mechanics +cond-mat/0212310 Soft Condensed Matter +cond-mat/0212319 Disordered Systems and Neural Networks +cond-mat/0212357 Statistical Mechanics +cond-mat/0212376 Soft Condensed Matter +cond-mat/0212415 Soft Condensed Matter +cond-mat/0212491 Superconductivity +cond-mat/0212530 Statistical Mechanics +cond-mat/0212561 Mesoscale and Nanoscale Physics +cond-mat/0212572 Soft Condensed Matter +cond-mat/0212604 +cond-mat/0301004 Statistical Mechanics +cond-mat/0301025 Superconductivity +cond-mat/0301039 Soft Condensed Matter +cond-mat/0301061 Soft Condensed Matter +cond-mat/0301103 +cond-mat/0301155 Soft Condensed Matter +cond-mat/0301156 Statistical Mechanics +cond-mat/0301191 Superconductivity +cond-mat/0301311 Superconductivity +cond-mat/0301334 Materials Science +cond-mat/0301381 Superconductivity +cond-mat/0301383 Disordered Systems and Neural Networks +cond-mat/0301395 Disordered Systems and Neural Networks +cond-mat/0301483 Materials Science +cond-mat/0301498 Mesoscale and Nanoscale Physics +cond-mat/0301522 +cond-mat/0301548 Statistical Mechanics +cond-mat/0301620 Mesoscale and Nanoscale Physics +cond-mat/0302005 Disordered Systems and Neural Networks +cond-mat/0302018 Strongly Correlated Electrons +cond-mat/0302046 Superconductivity +cond-mat/0302048 Statistical Mechanics +cond-mat/0302163 Strongly Correlated Electrons +cond-mat/0302166 Statistical Mechanics +cond-mat/0302226 Strongly Correlated Electrons +cond-mat/0302242 Superconductivity +cond-mat/0302268 Materials Science +cond-mat/0302276 Soft Condensed Matter +cond-mat/0302279 Mesoscale and Nanoscale Physics +cond-mat/0302285 Statistical Mechanics +cond-mat/0302317 Mesoscale and Nanoscale Physics +cond-mat/0302342 Statistical Mechanics +cond-mat/0302433 +cond-mat/0302443 Superconductivity +cond-mat/0302475 Strongly Correlated Electrons +cond-mat/0302482 Statistical Mechanics +cond-mat/0302501 Mesoscale and Nanoscale Physics +cond-mat/0302542 Materials Science +cond-mat/0302603 Statistical Mechanics +cond-mat/0302608 Strongly Correlated Electrons +cond-mat/0303011 Mesoscale and Nanoscale Physics +cond-mat/0303050 Statistical Mechanics +cond-mat/0303055 Other Condensed Matter +cond-mat/0303068 Mesoscale and Nanoscale Physics +cond-mat/0303087 Superconductivity +cond-mat/0303120 Mesoscale and Nanoscale Physics +cond-mat/0303171 Mesoscale and Nanoscale Physics +cond-mat/0303185 +cond-mat/0303202 Superconductivity +cond-mat/0303286 Statistical Mechanics +cond-mat/0303342 Superconductivity +cond-mat/0303371 Superconductivity +cond-mat/0303469 Superconductivity +cond-mat/0303474 Mesoscale and Nanoscale Physics +cond-mat/0303482 +cond-mat/0303493 Superconductivity +cond-mat/0303537 +cond-mat/0303539 Strongly Correlated Electrons +cond-mat/0303547 Statistical Mechanics +cond-mat/0303585 Superconductivity +cond-mat/0303608 Superconductivity +cond-mat/0303630 Mesoscale and Nanoscale Physics +cond-mat/0304071 Statistical Mechanics +cond-mat/0304107 Materials Science +cond-mat/0304122 Strongly Correlated Electrons +cond-mat/0304151 +cond-mat/0304179 +cond-mat/0304205 Mesoscale and Nanoscale Physics +cond-mat/0304209 Soft Condensed Matter +cond-mat/0304264 Superconductivity +cond-mat/0304320 Statistical Mechanics +cond-mat/0304409 Strongly Correlated Electrons +cond-mat/0304418 +cond-mat/0304459 Materials Science +cond-mat/0304469 Disordered Systems and Neural Networks +cond-mat/0304508 Mesoscale and Nanoscale Physics +cond-mat/0304520 Disordered Systems and Neural Networks +cond-mat/0304549 Materials Science +cond-mat/0304556 Disordered Systems and Neural Networks +cond-mat/0304656 Superconductivity +cond-mat/0304658 Superconductivity +cond-mat/0304663 Mesoscale and Nanoscale Physics +cond-mat/0304675 Superconductivity +cond-mat/0304685 Statistical Mechanics +cond-mat/0305100 Strongly Correlated Electrons +cond-mat/0305149 Mesoscale and Nanoscale Physics +cond-mat/0305168 Superconductivity +cond-mat/0305170 Superconductivity +cond-mat/0305203 Superconductivity +cond-mat/0305213 +cond-mat/0305262 Statistical Mechanics +cond-mat/0305282 Materials Science +cond-mat/0305287 Statistical Mechanics +cond-mat/0305318 Statistical Mechanics +cond-mat/0305330 Disordered Systems and Neural Networks +cond-mat/0305335 Strongly Correlated Electrons +cond-mat/0305432 Statistical Mechanics +cond-mat/0305543 Mesoscale and Nanoscale Physics +cond-mat/0305555 Superconductivity +cond-mat/0305599 Statistical Mechanics +cond-mat/0305675 +cond-mat/0306028 Statistical Mechanics +cond-mat/0306084 Superconductivity +cond-mat/0306157 Strongly Correlated Electrons +cond-mat/0306184 +cond-mat/0306211 Strongly Correlated Electrons +cond-mat/0306217 Statistical Mechanics +cond-mat/0306247 Statistical Mechanics +cond-mat/0306255 Statistical Mechanics +cond-mat/0306257 Strongly Correlated Electrons +cond-mat/0306335 Disordered Systems and Neural Networks +cond-mat/0306374 Statistical Mechanics +cond-mat/0306618 Materials Science +cond-mat/0306636 +cond-mat/0306637 Strongly Correlated Electrons +cond-mat/0306640 Soft Condensed Matter +cond-mat/0306657 Materials Science +cond-mat/0307004 Strongly Correlated Electrons +cond-mat/0307076 Materials Science +cond-mat/0307142 +cond-mat/0307153 Strongly Correlated Electrons +cond-mat/0307167 Soft Condensed Matter +cond-mat/0307182 Mesoscale and Nanoscale Physics +cond-mat/0307300 Statistical Mechanics +cond-mat/0307306 Statistical Mechanics +cond-mat/0307359 Materials Science +cond-mat/0307406 Statistical Mechanics +cond-mat/0307472 Statistical Mechanics +cond-mat/0307475 Strongly Correlated Electrons +cond-mat/0307481 Disordered Systems and Neural Networks +cond-mat/0307538 +cond-mat/0307649 Statistical Mechanics +cond-mat/0307699 Statistical Mechanics +cond-mat/0308037 Statistical Mechanics +cond-mat/0308056 +cond-mat/0308077 +cond-mat/0308123 Superconductivity +cond-mat/0308177 Statistical Mechanics +cond-mat/0308227 Superconductivity +cond-mat/0308241 Mesoscale and Nanoscale Physics +cond-mat/0308316 Statistical Mechanics +cond-mat/0308332 Superconductivity +cond-mat/0308464 Mesoscale and Nanoscale Physics +cond-mat/0308517 Strongly Correlated Electrons +cond-mat/0308524 Materials Science +cond-mat/0308527 Materials Science +cond-mat/0308593 Soft Condensed Matter +cond-mat/0309105 Statistical Mechanics +cond-mat/0309107 Soft Condensed Matter +cond-mat/0309184 Statistical Mechanics +cond-mat/0309225 Statistical Mechanics +cond-mat/0309254 Superconductivity +cond-mat/0309256 Disordered Systems and Neural Networks +cond-mat/0309330 Soft Condensed Matter +cond-mat/0309357 Superconductivity +cond-mat/0309370 Strongly Correlated Electrons +cond-mat/0309386 Statistical Mechanics +cond-mat/0309403 Strongly Correlated Electrons +cond-mat/0309495 +cond-mat/0309548 Disordered Systems and Neural Networks +cond-mat/0309556 Statistical Mechanics +cond-mat/0309565 Mesoscale and Nanoscale Physics +cond-mat/0309570 Mesoscale and Nanoscale Physics +cond-mat/0309575 Superconductivity +cond-mat/0309665 Statistical Mechanics +cond-mat/0309711 Soft Condensed Matter +cond-mat/0310037 Statistical Mechanics +cond-mat/0310070 Soft Condensed Matter +cond-mat/0310124 Strongly Correlated Electrons +cond-mat/0310229 Mesoscale and Nanoscale Physics +cond-mat/0310294 Strongly Correlated Electrons +cond-mat/0310320 Strongly Correlated Electrons +cond-mat/0310354 Superconductivity +cond-mat/0310393 Superconductivity +cond-mat/0310563 +cond-mat/0310655 Mesoscale and Nanoscale Physics +cond-mat/0310684 Materials Science +cond-mat/0310694 Statistical Mechanics +cond-mat/0310708 Mesoscale and Nanoscale Physics +cond-mat/0310715 Mesoscale and Nanoscale Physics +cond-mat/0311051 Mesoscale and Nanoscale Physics +cond-mat/0311062 Mesoscale and Nanoscale Physics +cond-mat/0311156 Statistical Mechanics +cond-mat/0311202 Disordered Systems and Neural Networks +cond-mat/0311209 Mesoscale and Nanoscale Physics +cond-mat/0311240 Materials Science +cond-mat/0311253 Statistical Mechanics +cond-mat/0311273 Statistical Mechanics +cond-mat/0311433 Materials Science +cond-mat/0311444 Statistical Mechanics +cond-mat/0311539 Materials Science +cond-mat/0311652 Strongly Correlated Electrons +cond-mat/0312148 Superconductivity +cond-mat/0312156 Strongly Correlated Electrons +cond-mat/0312324 Mesoscale and Nanoscale Physics +cond-mat/0312340 Statistical Mechanics +cond-mat/0312372 Soft Condensed Matter +cond-mat/0312384 Statistical Mechanics +cond-mat/0312453 Soft Condensed Matter +cond-mat/0312461 Statistical Mechanics +cond-mat/0312487 Strongly Correlated Electrons +cond-mat/0312597 Strongly Correlated Electrons +cond-mat/0312615 Strongly Correlated Electrons +cond-mat/0312626 Mesoscale and Nanoscale Physics +cond-mat/0401124 Superconductivity +cond-mat/0401148 Statistical Mechanics +cond-mat/0401206 Superconductivity +cond-mat/0401378 Other Condensed Matter +cond-mat/0401385 Statistical Mechanics +cond-mat/0401399 Mesoscale and Nanoscale Physics +cond-mat/0401422 Other Condensed Matter +cond-mat/0401497 Statistical Mechanics +cond-mat/0401572 Superconductivity +cond-mat/0401613 Materials Science +cond-mat/0402017 Strongly Correlated Electrons +cond-mat/0402031 Soft Condensed Matter +cond-mat/0402035 Soft Condensed Matter +cond-mat/0402057 Mesoscale and Nanoscale Physics +cond-mat/0402060 Disordered Systems and Neural Networks +cond-mat/0402142 Other Condensed Matter +cond-mat/0402271 Other Condensed Matter +cond-mat/0402347 Other Condensed Matter +cond-mat/0402357 Materials Science +cond-mat/0402395 Statistical Mechanics +cond-mat/0402472 Strongly Correlated Electrons +cond-mat/0402475 Other Condensed Matter +cond-mat/0402502 Statistical Mechanics +cond-mat/0402505 Materials Science +cond-mat/0402513 Disordered Systems and Neural Networks +cond-mat/0402613 Statistical Mechanics +cond-mat/0402622 Statistical Mechanics +cond-mat/0402641 Materials Science +cond-mat/0402646 Other Condensed Matter +cond-mat/0402686 Materials Science +cond-mat/0403047 Materials Science +cond-mat/0403084 Disordered Systems and Neural Networks +cond-mat/0403095 Superconductivity +cond-mat/0403103 Superconductivity +cond-mat/0403133 Soft Condensed Matter +cond-mat/0403135 Superconductivity +cond-mat/0403169 Strongly Correlated Electrons +cond-mat/0403190 Materials Science +cond-mat/0403230 Superconductivity +cond-mat/0403270 Statistical Mechanics +cond-mat/0403316 Mesoscale and Nanoscale Physics +cond-mat/0403389 Disordered Systems and Neural Networks +cond-mat/0403402 Statistical Mechanics +cond-mat/0403428 Mesoscale and Nanoscale Physics +cond-mat/0403476 Mesoscale and Nanoscale Physics +cond-mat/0403506 Disordered Systems and Neural Networks +cond-mat/0403549 Disordered Systems and Neural Networks +cond-mat/0403605 Strongly Correlated Electrons +cond-mat/0403722 Soft Condensed Matter +cond-mat/0403763 Strongly Correlated Electrons +cond-mat/0404047 Materials Science +cond-mat/0404099 Strongly Correlated Electrons +cond-mat/0404102 Soft Condensed Matter +cond-mat/0404122 Strongly Correlated Electrons +cond-mat/0404143 Statistical Mechanics +cond-mat/0404186 Materials Science +cond-mat/0404205 Soft Condensed Matter +cond-mat/0404278 Statistical Mechanics +cond-mat/0404338 Mesoscale and Nanoscale Physics +cond-mat/0404459 Superconductivity +cond-mat/0404478 Superconductivity +cond-mat/0404498 Strongly Correlated Electrons +cond-mat/0404578 Other Condensed Matter +cond-mat/0404582 Statistical Mechanics +cond-mat/0404608 Soft Condensed Matter +cond-mat/0404674 Strongly Correlated Electrons +cond-mat/0404742 Disordered Systems and Neural Networks +cond-mat/0405115 Statistical Mechanics +cond-mat/0405138 Disordered Systems and Neural Networks +cond-mat/0405195 Mesoscale and Nanoscale Physics +cond-mat/0405208 Soft Condensed Matter +cond-mat/0405257 Other Condensed Matter +cond-mat/0405290 Superconductivity +cond-mat/0405342 Mesoscale and Nanoscale Physics +cond-mat/0405364 Mesoscale and Nanoscale Physics +cond-mat/0405414 Disordered Systems and Neural Networks +cond-mat/0405444 Strongly Correlated Electrons +cond-mat/0405452 Strongly Correlated Electrons +cond-mat/0405633 Superconductivity +cond-mat/0405667 Statistical Mechanics +cond-mat/0406064 Mesoscale and Nanoscale Physics +cond-mat/0406088 Soft Condensed Matter +cond-mat/0406101 Statistical Mechanics +cond-mat/0406118 Mesoscale and Nanoscale Physics +cond-mat/0406138 Other Condensed Matter +cond-mat/0406178 Statistical Mechanics +cond-mat/0406198 Statistical Mechanics +cond-mat/0406302 Strongly Correlated Electrons +cond-mat/0406317 Statistical Mechanics +cond-mat/0406339 Mesoscale and Nanoscale Physics +cond-mat/0406356 Materials Science +cond-mat/0406365 Statistical Mechanics +cond-mat/0406367 Superconductivity +cond-mat/0406370 Materials Science +cond-mat/0406417 Mesoscale and Nanoscale Physics +cond-mat/0406432 Other Condensed Matter +cond-mat/0406455 Statistical Mechanics +cond-mat/0406478 Mesoscale and Nanoscale Physics +cond-mat/0406503 Soft Condensed Matter +cond-mat/0406567 Statistical Mechanics +cond-mat/0406580 Disordered Systems and Neural Networks +cond-mat/0406598 Statistical Mechanics +cond-mat/0406616 Materials Science +cond-mat/0406620 Superconductivity +cond-mat/0406649 Statistical Mechanics +cond-mat/0406678 Materials Science +cond-mat/0406742 Statistical Mechanics +cond-mat/0407004 Disordered Systems and Neural Networks +cond-mat/0407098 Disordered Systems and Neural Networks +cond-mat/0407116 Mesoscale and Nanoscale Physics +cond-mat/0407134 Statistical Mechanics +cond-mat/0407172 Strongly Correlated Electrons +cond-mat/0407243 Materials Science +cond-mat/0407307 Strongly Correlated Electrons +cond-mat/0407346 Statistical Mechanics +cond-mat/0407369 Materials Science +cond-mat/0407530 Other Condensed Matter +cond-mat/0407532 Soft Condensed Matter +cond-mat/0407557 Strongly Correlated Electrons +cond-mat/0407616 Strongly Correlated Electrons +cond-mat/0407720 Mesoscale and Nanoscale Physics +cond-mat/0407738 Mesoscale and Nanoscale Physics +cond-mat/0407778 Superconductivity +cond-mat/0407801 Statistical Mechanics +cond-mat/0408112 Mesoscale and Nanoscale Physics +cond-mat/0408130 Statistical Mechanics +cond-mat/0408216 Other Condensed Matter +cond-mat/0408287 Superconductivity +cond-mat/0408289 Statistical Mechanics +cond-mat/0408347 Statistical Mechanics +cond-mat/0408349 Disordered Systems and Neural Networks +cond-mat/0408364 Other Condensed Matter +cond-mat/0408391 Statistical Mechanics +cond-mat/0408445 Soft Condensed Matter +cond-mat/0408508 Mesoscale and Nanoscale Physics +cond-mat/0408513 Strongly Correlated Electrons +cond-mat/0408605 Materials Science +cond-mat/0408675 Mesoscale and Nanoscale Physics +cond-mat/0409075 Mesoscale and Nanoscale Physics +cond-mat/0409090 Superconductivity +cond-mat/0409138 Statistical Mechanics +cond-mat/0409208 Statistical Mechanics +cond-mat/0409234 Statistical Mechanics +cond-mat/0409323 Disordered Systems and Neural Networks +cond-mat/0409329 Statistical Mechanics +cond-mat/0409364 Materials Science +cond-mat/0409394 Other Condensed Matter +cond-mat/0409429 Materials Science +cond-mat/0409443 Strongly Correlated Electrons +cond-mat/0409446 Mesoscale and Nanoscale Physics +cond-mat/0409475 Statistical Mechanics +cond-mat/0409493 Statistical Mechanics +cond-mat/0409513 Materials Science +cond-mat/0409580 Mesoscale and Nanoscale Physics +cond-mat/0409685 Mesoscale and Nanoscale Physics +cond-mat/0409710 Statistical Mechanics +cond-mat/0409744 Soft Condensed Matter +cond-mat/0410054 Mesoscale and Nanoscale Physics +cond-mat/0410070 Other Condensed Matter +cond-mat/0410075 Superconductivity +cond-mat/0410134 Disordered Systems and Neural Networks +cond-mat/0410186 Materials Science +cond-mat/0410213 Statistical Mechanics +cond-mat/0410252 Other Condensed Matter +cond-mat/0410282 Statistical Mechanics +cond-mat/0410295 Mesoscale and Nanoscale Physics +cond-mat/0410320 Mesoscale and Nanoscale Physics +cond-mat/0410390 Disordered Systems and Neural Networks +cond-mat/0410467 Mesoscale and Nanoscale Physics +cond-mat/0410490 Statistical Mechanics +cond-mat/0410590 Materials Science +cond-mat/0410652 Superconductivity +cond-mat/0410726 Other Condensed Matter +cond-mat/0411007 Superconductivity +cond-mat/0411015 Soft Condensed Matter +cond-mat/0411039 Strongly Correlated Electrons +cond-mat/0411071 Mesoscale and Nanoscale Physics +cond-mat/0411166 Statistical Mechanics +cond-mat/0411201 Superconductivity +cond-mat/0411204 Strongly Correlated Electrons +cond-mat/0411250 Mesoscale and Nanoscale Physics +cond-mat/0411321 Superconductivity +cond-mat/0411339 Other Condensed Matter +cond-mat/0411431 Materials Science +cond-mat/0411470 Other Condensed Matter +cond-mat/0411491 Materials Science +cond-mat/0411510 Other Condensed Matter +cond-mat/0411553 Statistical Mechanics +cond-mat/0411574 Superconductivity +cond-mat/0411601 Strongly Correlated Electrons +cond-mat/0411681 Superconductivity +cond-mat/0411757 Other Condensed Matter +cond-mat/0412011 Statistical Mechanics +cond-mat/0412135 Other Condensed Matter +cond-mat/0412211 Statistical Mechanics +cond-mat/0412274 Strongly Correlated Electrons +cond-mat/0412307 Materials Science +cond-mat/0412342 Materials Science +cond-mat/0412358 Strongly Correlated Electrons +cond-mat/0412459 Other Condensed Matter +cond-mat/0412527 Strongly Correlated Electrons +cond-mat/0412565 Strongly Correlated Electrons +cond-mat/0412634 Other Condensed Matter +cond-mat/0412744 Statistical Mechanics +cond-mat/0412759 Statistical Mechanics +cond-mat/0501181 Materials Science +cond-mat/0501219 Statistical Mechanics +cond-mat/0501222 Statistical Mechanics +cond-mat/0501282 Statistical Mechanics +cond-mat/0501395 Other Condensed Matter +cond-mat/0501442 Statistical Mechanics +cond-mat/0501570 Mesoscale and Nanoscale Physics +cond-mat/0501601 Strongly Correlated Electrons +cond-mat/0501623 Mesoscale and Nanoscale Physics +cond-mat/0502008 Materials Science +cond-mat/0502073 Superconductivity +cond-mat/0502090 Materials Science +cond-mat/0502115 Materials Science +cond-mat/0502167 Statistical Mechanics +cond-mat/0502187 Other Condensed Matter +cond-mat/0502302 Strongly Correlated Electrons +cond-mat/0502355 Strongly Correlated Electrons +cond-mat/0502363 Strongly Correlated Electrons +cond-mat/0502372 Statistical Mechanics +cond-mat/0502400 Mesoscale and Nanoscale Physics +cond-mat/0502489 Strongly Correlated Electrons +cond-mat/0502561 Mesoscale and Nanoscale Physics +cond-mat/0502663 Disordered Systems and Neural Networks +cond-mat/0502675 Mesoscale and Nanoscale Physics +cond-mat/0503054 Materials Science +cond-mat/0503145 Strongly Correlated Electrons +cond-mat/0503194 Materials Science +cond-mat/0503280 Soft Condensed Matter +cond-mat/0503323 Mesoscale and Nanoscale Physics +cond-mat/0503512 Superconductivity +cond-mat/0503553 Disordered Systems and Neural Networks +cond-mat/0503596 Statistical Mechanics +cond-mat/0503742 Statistical Mechanics +cond-mat/0504025 Statistical Mechanics +cond-mat/0504031 Soft Condensed Matter +cond-mat/0504115 Statistical Mechanics +cond-mat/0504158 Soft Condensed Matter +cond-mat/0504176 Superconductivity +cond-mat/0504189 Soft Condensed Matter +cond-mat/0504194 Soft Condensed Matter +cond-mat/0504200 Materials Science +cond-mat/0504250 Superconductivity +cond-mat/0504270 Statistical Mechanics +cond-mat/0504279 Materials Science +cond-mat/0504286 Materials Science +cond-mat/0504434 Soft Condensed Matter +cond-mat/0504452 Disordered Systems and Neural Networks +cond-mat/0504584 Materials Science +cond-mat/0504669 Materials Science +cond-mat/0504708 Soft Condensed Matter +cond-mat/0504771 Mesoscale and Nanoscale Physics +cond-mat/0504778 Strongly Correlated Electrons +cond-mat/0504791 Mesoscale and Nanoscale Physics +cond-mat/0505005 Mesoscale and Nanoscale Physics +cond-mat/0505013 Materials Science +cond-mat/0505027 Statistical Mechanics +cond-mat/0505108 Superconductivity +cond-mat/0505114 Soft Condensed Matter +cond-mat/0505139 Statistical Mechanics +cond-mat/0505149 Materials Science +cond-mat/0505230 Strongly Correlated Electrons +cond-mat/0505257 Strongly Correlated Electrons +cond-mat/0505304 Strongly Correlated Electrons +cond-mat/0505307 Other Condensed Matter +cond-mat/0505331 Mesoscale and Nanoscale Physics +cond-mat/0505355 Statistical Mechanics +cond-mat/0505363 Other Condensed Matter +cond-mat/0505364 Other Condensed Matter +cond-mat/0505392 Mesoscale and Nanoscale Physics +cond-mat/0505402 Statistical Mechanics +cond-mat/0506007 Materials Science +cond-mat/0506137 Disordered Systems and Neural Networks +cond-mat/0506213 Strongly Correlated Electrons +cond-mat/0506214 Statistical Mechanics +cond-mat/0506260 Mesoscale and Nanoscale Physics +cond-mat/0506265 Superconductivity +cond-mat/0506314 Materials Science +cond-mat/0506341 Statistical Mechanics +cond-mat/0506363 Statistical Mechanics +cond-mat/0506395 Statistical Mechanics +cond-mat/0506453 Statistical Mechanics +cond-mat/0506490 Superconductivity +cond-mat/0506591 Soft Condensed Matter +cond-mat/0506675 Soft Condensed Matter +cond-mat/0506748 Other Condensed Matter +cond-mat/0506774 Materials Science +cond-mat/0507031 Superconductivity +cond-mat/0507269 Superconductivity +cond-mat/0507562 Strongly Correlated Electrons +cond-mat/0507603 Mesoscale and Nanoscale Physics +cond-mat/0507640 Statistical Mechanics +cond-mat/0508009 Statistical Mechanics +cond-mat/0508061 Statistical Mechanics +cond-mat/0508115 Mesoscale and Nanoscale Physics +cond-mat/0508324 Soft Condensed Matter +cond-mat/0508343 Statistical Mechanics +cond-mat/0508388 Other Condensed Matter +cond-mat/0508393 Mesoscale and Nanoscale Physics +cond-mat/0508403 Soft Condensed Matter +cond-mat/0508504 Strongly Correlated Electrons +cond-mat/0508510 Materials Science +cond-mat/0508533 Materials Science +cond-mat/0508551 Other Condensed Matter +cond-mat/0508666 Statistical Mechanics +cond-mat/0508693 Soft Condensed Matter +cond-mat/0508709 Strongly Correlated Electrons +cond-mat/0508728 Mesoscale and Nanoscale Physics +cond-mat/0509020 Statistical Mechanics +cond-mat/0509232 Mesoscale and Nanoscale Physics +cond-mat/0509277 Superconductivity +cond-mat/0509291 Other Condensed Matter +cond-mat/0509296 Strongly Correlated Electrons +cond-mat/0509346 Superconductivity +cond-mat/0509352 Strongly Correlated Electrons +cond-mat/0509404 Soft Condensed Matter +cond-mat/0509415 Statistical Mechanics +cond-mat/0509528 Materials Science +cond-mat/0509532 Materials Science +cond-mat/0509542 Strongly Correlated Electrons +cond-mat/0509545 Other Condensed Matter +cond-mat/0509547 Superconductivity +cond-mat/0509558 Strongly Correlated Electrons +cond-mat/0509573 Statistical Mechanics +cond-mat/0509579 Superconductivity +cond-mat/0509588 Strongly Correlated Electrons +cond-mat/0509600 Soft Condensed Matter +cond-mat/0509602 Other Condensed Matter +cond-mat/0509608 Statistical Mechanics +cond-mat/0509616 Statistical Mechanics +cond-mat/0509643 Strongly Correlated Electrons +cond-mat/0509666 Other Condensed Matter +cond-mat/0509673 Strongly Correlated Electrons +cond-mat/0509680 Mesoscale and Nanoscale Physics +cond-mat/0509684 Soft Condensed Matter +cond-mat/0509695 Strongly Correlated Electrons +cond-mat/0509710 Mesoscale and Nanoscale Physics +cond-mat/0509746 Mesoscale and Nanoscale Physics +cond-mat/0509751 Statistical Mechanics +cond-mat/0509754 Statistical Mechanics +cond-mat/0509755 Superconductivity +cond-mat/0509757 Soft Condensed Matter +cond-mat/0509759 Soft Condensed Matter +cond-mat/0509760 Materials Science +cond-mat/0509769 Superconductivity +cond-mat/0509774 Statistical Mechanics +cond-mat/0509780 Superconductivity +cond-mat/0509795 Statistical Mechanics +cond-mat/0509796 Statistical Mechanics +cond-mat/0509802 Statistical Mechanics +cond-mat/0509805 Strongly Correlated Electrons +cond-mat/0510003 Superconductivity +cond-mat/0510005 Materials Science +cond-mat/0510007 Superconductivity +cond-mat/0510012 Soft Condensed Matter +cond-mat/0510016 Strongly Correlated Electrons +cond-mat/0510019 Strongly Correlated Electrons +cond-mat/0510020 Materials Science +cond-mat/0510024 Mesoscale and Nanoscale Physics +cond-mat/0510029 Soft Condensed Matter +cond-mat/0510032 Soft Condensed Matter +cond-mat/0510035 Materials Science +cond-mat/0510038 Statistical Mechanics +cond-mat/0510039 Superconductivity +cond-mat/0510045 Statistical Mechanics +cond-mat/0510048 Mesoscale and Nanoscale Physics +cond-mat/0510055 Statistical Mechanics +cond-mat/0510057 Superconductivity +cond-mat/0510058 Statistical Mechanics +cond-mat/0510060 Strongly Correlated Electrons +cond-mat/0510062 Mesoscale and Nanoscale Physics +cond-mat/0510068 Soft Condensed Matter +cond-mat/0510074 Other Condensed Matter +cond-mat/0510075 Disordered Systems and Neural Networks +cond-mat/0510091 Superconductivity +cond-mat/0510096 Other Condensed Matter +cond-mat/0510097 Other Condensed Matter +cond-mat/0510098 Superconductivity +cond-mat/0510101 Mesoscale and Nanoscale Physics +cond-mat/0510112 Mesoscale and Nanoscale Physics +cond-mat/0510117 Superconductivity +cond-mat/0510118 Materials Science +cond-mat/0510122 Mesoscale and Nanoscale Physics +cond-mat/0510128 Statistical Mechanics +cond-mat/0510132 Strongly Correlated Electrons +cond-mat/0510135 Soft Condensed Matter +cond-mat/0510139 Mesoscale and Nanoscale Physics +cond-mat/0510141 Other Condensed Matter +cond-mat/0510144 Materials Science +cond-mat/0510148 Soft Condensed Matter +cond-mat/0510205 Materials Science +cond-mat/0510473 Disordered Systems and Neural Networks +cond-mat/0510546 Superconductivity +cond-mat/0510547 Superconductivity +cond-mat/0510548 Superconductivity +cond-mat/0510609 Strongly Correlated Electrons +cond-mat/0510683 Statistical Mechanics +cond-mat/0510704 Superconductivity +cond-mat/0510826 Soft Condensed Matter +cond-mat/0510832 Strongly Correlated Electrons +cond-mat/0511255 Soft Condensed Matter +cond-mat/0511503 Materials Science +cond-mat/0511584 Superconductivity +cond-mat/0511635 Other Condensed Matter +cond-mat/0512045 Mesoscale and Nanoscale Physics +cond-mat/0512680 Superconductivity +cond-mat/0601143 Statistical Mechanics +cond-mat/0601147 Superconductivity +cond-mat/0601258 Statistical Mechanics +cond-mat/0601315 Mesoscale and Nanoscale Physics +cond-mat/0601398 Soft Condensed Matter +cond-mat/0601701 Strongly Correlated Electrons +cond-mat/0601702 Disordered Systems and Neural Networks +cond-mat/0602010 Strongly Correlated Electrons +cond-mat/0602252 Superconductivity +cond-mat/0602367 Statistical Mechanics +cond-mat/0602379 Strongly Correlated Electrons +cond-mat/0603425 Strongly Correlated Electrons +cond-mat/0603683 Superconductivity +cond-mat/0603697 Soft Condensed Matter +cond-mat/0603799 Superconductivity +cond-mat/0603814 Disordered Systems and Neural Networks +cond-mat/0604140 Superconductivity +cond-mat/0604242 Disordered Systems and Neural Networks +cond-mat/0604243 Materials Science +cond-mat/0604375 Soft Condensed Matter +cond-mat/0604397 Other Condensed Matter +cond-mat/0605178 Materials Science +cond-mat/0605360 Mesoscale and Nanoscale Physics +cond-mat/0606165 Strongly Correlated Electrons +cond-mat/0606322 Superconductivity +cond-mat/0606566 Disordered Systems and Neural Networks +cond-mat/0607141 Strongly Correlated Electrons +cond-mat/0607220 Disordered Systems and Neural Networks +cond-mat/0607621 Mesoscale and Nanoscale Physics +cond-mat/0607640 Strongly Correlated Electrons +cond-mat/0607669 Mesoscale and Nanoscale Physics +cond-mat/0607764 Strongly Correlated Electrons +cond-mat/0607824 Strongly Correlated Electrons +cond-mat/0607833 Materials Science +cond-mat/0608091 Superconductivity +cond-mat/0608550 Mesoscale and Nanoscale Physics +cond-mat/0609102 Strongly Correlated Electrons +cond-mat/0609231 Strongly Correlated Electrons +cond-mat/0609378 Soft Condensed Matter +cond-mat/0609661 Materials Science +cond-mat/0610004 Statistical Mechanics +cond-mat/0610037 Superconductivity +cond-mat/0610122 Materials Science +cond-mat/0610307 Strongly Correlated Electrons +cond-mat/0611013 Mesoscale and Nanoscale Physics +cond-mat/0611076 Soft Condensed Matter +cond-mat/0611354 Superconductivity +cond-mat/0611431 Superconductivity +cond-mat/0611748 Superconductivity +cond-mat/0701266 Superconductivity +cond-mat/0703696 Statistical Mechanics +cond-mat/9204016 +cond-mat/9206009 +cond-mat/9209019 +cond-mat/9211008 +cond-mat/9211017 +cond-mat/9301035 +cond-mat/9302020 +cond-mat/9304031 +cond-mat/9306012 +cond-mat/9306028 +cond-mat/9307055 +cond-mat/9308002 +cond-mat/9308026 +cond-mat/9309016 +cond-mat/9309030 +cond-mat/9310057 +cond-mat/9311004 +cond-mat/9312014 +cond-mat/9401001 +cond-mat/9401022 +cond-mat/9401053 +cond-mat/9402080 Disordered Systems and Neural Networks +cond-mat/9403039 +cond-mat/9403065 Statistical Mechanics +cond-mat/9404040 +cond-mat/9404092 +cond-mat/9405039 +cond-mat/9406023 +cond-mat/9406026 +cond-mat/9406055 +cond-mat/9407047 +cond-mat/9407053 +cond-mat/9407085 +cond-mat/9408003 +cond-mat/9408013 +cond-mat/9408033 +cond-mat/9409040 +cond-mat/9409052 +cond-mat/9409075 +cond-mat/9409095 +cond-mat/9410020 Superconductivity +cond-mat/9410081 +cond-mat/9410116 +cond-mat/9411012 +cond-mat/9411094 +cond-mat/9412019 +cond-mat/9412023 +cond-mat/9412035 +cond-mat/9412085 +cond-mat/9501002 +cond-mat/9501004 +cond-mat/9501006 +cond-mat/9501007 +cond-mat/9501010 +cond-mat/9501011 +cond-mat/9501012 +cond-mat/9501013 +cond-mat/9501014 +cond-mat/9501016 +cond-mat/9501017 +cond-mat/9501018 +cond-mat/9501020 +cond-mat/9501021 +cond-mat/9501022 +cond-mat/9501024 +cond-mat/9501025 +cond-mat/9501026 +cond-mat/9501028 +cond-mat/9501029 +cond-mat/9501030 +cond-mat/9501031 +cond-mat/9501032 +cond-mat/9501033 +cond-mat/9501036 +cond-mat/9501039 +cond-mat/9501040 +cond-mat/9501041 +cond-mat/9501042 +cond-mat/9501043 +cond-mat/9501048 +cond-mat/9501049 +cond-mat/9501050 +cond-mat/9501051 +cond-mat/9501053 +cond-mat/9501054 +cond-mat/9501056 +cond-mat/9501057 +cond-mat/9501058 +cond-mat/9501061 +cond-mat/9501064 +cond-mat/9501066 +cond-mat/9501067 +cond-mat/9501068 +cond-mat/9501070 +cond-mat/9501071 +cond-mat/9501072 +cond-mat/9501073 +cond-mat/9501075 +cond-mat/9501076 +cond-mat/9501080 +cond-mat/9501081 +cond-mat/9501082 +cond-mat/9501083 +cond-mat/9501084 +cond-mat/9501086 +cond-mat/9501087 +cond-mat/9501088 +cond-mat/9501090 +cond-mat/9501091 +cond-mat/9501093 +cond-mat/9501094 +cond-mat/9501096 +cond-mat/9501099 +cond-mat/9501102 +cond-mat/9501105 +cond-mat/9501106 +cond-mat/9501107 +cond-mat/9501109 +cond-mat/9501110 +cond-mat/9501111 +cond-mat/9501112 +cond-mat/9501113 +cond-mat/9501114 +cond-mat/9501116 +cond-mat/9501119 +cond-mat/9501120 +cond-mat/9501121 +cond-mat/9501123 +cond-mat/9501126 +cond-mat/9501127 +cond-mat/9501128 +cond-mat/9501132 +cond-mat/9501134 +cond-mat/9501138 +cond-mat/9502002 +cond-mat/9502004 +cond-mat/9502005 +cond-mat/9502006 +cond-mat/9502007 +cond-mat/9502008 +cond-mat/9502009 +cond-mat/9502010 +cond-mat/9502012 +cond-mat/9502013 +cond-mat/9502014 +cond-mat/9502015 +cond-mat/9502016 +cond-mat/9502018 +cond-mat/9502019 +cond-mat/9502033 +cond-mat/9502035 +cond-mat/9502036 +cond-mat/9502043 +cond-mat/9502045 +cond-mat/9502048 +cond-mat/9502050 +cond-mat/9502051 +cond-mat/9502053 +cond-mat/9502054 +cond-mat/9502055 +cond-mat/9502057 +cond-mat/9502059 +cond-mat/9502060 +cond-mat/9502061 +cond-mat/9502062 +cond-mat/9502065 +cond-mat/9502066 +cond-mat/9502067 +cond-mat/9502068 +cond-mat/9502069 +cond-mat/9502070 +cond-mat/9502073 +cond-mat/9502074 +cond-mat/9502075 +cond-mat/9502077 +cond-mat/9502078 +cond-mat/9502079 +cond-mat/9502081 +cond-mat/9502082 +cond-mat/9502083 +cond-mat/9502084 +cond-mat/9502085 +cond-mat/9502086 +cond-mat/9502088 +cond-mat/9502089 +cond-mat/9502091 +cond-mat/9502093 +cond-mat/9502094 +cond-mat/9502095 +cond-mat/9502096 +cond-mat/9502097 +cond-mat/9502098 +cond-mat/9502100 +cond-mat/9502101 +cond-mat/9502102 +cond-mat/9502103 +cond-mat/9502104 +cond-mat/9502105 +cond-mat/9502106 +cond-mat/9502107 +cond-mat/9502108 +cond-mat/9502109 +cond-mat/9502110 +cond-mat/9502111 +cond-mat/9502112 +cond-mat/9502117 +cond-mat/9502118 +cond-mat/9502119 +cond-mat/9502120 +cond-mat/9503001 +cond-mat/9503002 +cond-mat/9503003 +cond-mat/9503005 +cond-mat/9503006 +cond-mat/9503007 +cond-mat/9503008 +cond-mat/9503010 +cond-mat/9503011 +cond-mat/9503012 +cond-mat/9503014 +cond-mat/9503017 +cond-mat/9503018 +cond-mat/9503019 +cond-mat/9503020 +cond-mat/9503023 +cond-mat/9503024 +cond-mat/9503025 +cond-mat/9503026 +cond-mat/9503027 +cond-mat/9503029 +cond-mat/9503035 +cond-mat/9503036 +cond-mat/9503037 +cond-mat/9503039 +cond-mat/9503043 +cond-mat/9503044 +cond-mat/9503045 +cond-mat/9503047 +cond-mat/9503048 +cond-mat/9503049 +cond-mat/9503050 +cond-mat/9503051 +cond-mat/9503052 +cond-mat/9503054 +cond-mat/9503055 +cond-mat/9503056 +cond-mat/9503058 +cond-mat/9503059 +cond-mat/9503060 +cond-mat/9503066 +cond-mat/9503067 +cond-mat/9503069 +cond-mat/9503071 +cond-mat/9503072 +cond-mat/9503073 +cond-mat/9503075 +cond-mat/9503076 +cond-mat/9503077 +cond-mat/9503079 +cond-mat/9503083 +cond-mat/9503084 +cond-mat/9503087 +cond-mat/9503088 +cond-mat/9503089 +cond-mat/9503090 +cond-mat/9503091 +cond-mat/9503095 +cond-mat/9503096 +cond-mat/9503097 +cond-mat/9503098 +cond-mat/9503102 +cond-mat/9503103 +cond-mat/9503104 +cond-mat/9503105 +cond-mat/9503107 +cond-mat/9503108 +cond-mat/9503109 +cond-mat/9503118 +cond-mat/9503128 +cond-mat/9503141 +cond-mat/9504021 Statistical Mechanics +cond-mat/9504031 +cond-mat/9504086 +cond-mat/9504119 +cond-mat/9505008 +cond-mat/9505009 +cond-mat/9505012 Superconductivity +cond-mat/9505045 +cond-mat/9505054 +cond-mat/9505073 +cond-mat/9505106 +cond-mat/9505144 +cond-mat/9505156 +cond-mat/9505158 +cond-mat/9506007 +cond-mat/9506012 +cond-mat/9506024 +cond-mat/9506046 +cond-mat/9506048 +cond-mat/9506052 +cond-mat/9506059 +cond-mat/9506060 +cond-mat/9506101 +cond-mat/9506130 +cond-mat/9507098 +cond-mat/9507120 +cond-mat/9508020 +cond-mat/9508055 +cond-mat/9508062 +cond-mat/9508081 +cond-mat/9508095 +cond-mat/9508144 +cond-mat/9509007 +cond-mat/9509010 +cond-mat/9509012 +cond-mat/9509015 +cond-mat/9509027 +cond-mat/9509071 +cond-mat/9509095 +cond-mat/9510004 +cond-mat/9510022 +cond-mat/9510037 +cond-mat/9510047 +cond-mat/9510059 +cond-mat/9510069 +cond-mat/9510079 +cond-mat/9510081 +cond-mat/9510111 +cond-mat/9511011 +cond-mat/9511035 +cond-mat/9511094 +cond-mat/9511112 +cond-mat/9511124 +cond-mat/9512008 +cond-mat/9512010 +cond-mat/9512144 +cond-mat/9512168 +cond-mat/9601045 +cond-mat/9601091 +cond-mat/9601151 +cond-mat/9601154 +cond-mat/9602009 +cond-mat/9602043 +cond-mat/9602052 +cond-mat/9602077 +cond-mat/9602158 +cond-mat/9603009 +cond-mat/9603165 +cond-mat/9603179 +cond-mat/9604033 Disordered Systems and Neural Networks +cond-mat/9604035 +cond-mat/9604058 +cond-mat/9604083 +cond-mat/9604093 +cond-mat/9604112 +cond-mat/9604113 Materials Science +cond-mat/9605105 Statistical Mechanics +cond-mat/9605106 +cond-mat/9605141 +cond-mat/9605151 +cond-mat/9605180 +cond-mat/9605195 +cond-mat/9606040 +cond-mat/9606072 +cond-mat/9606080 +cond-mat/9606119 +cond-mat/9606144 +cond-mat/9606150 +cond-mat/9606173 +cond-mat/9607014 +cond-mat/9607097 +cond-mat/9607105 Strongly Correlated Electrons +cond-mat/9607133 +cond-mat/9607160 +cond-mat/9607171 +cond-mat/9608001 +cond-mat/9608037 +cond-mat/9608039 +cond-mat/9608065 Statistical Mechanics +cond-mat/9608082 +cond-mat/9608084 +cond-mat/9608086 +cond-mat/9608088 +cond-mat/9608135 +cond-mat/9608142 +cond-mat/9609002 +cond-mat/9609005 +cond-mat/9609036 +cond-mat/9609043 +cond-mat/9609048 Mesoscale and Nanoscale Physics +cond-mat/9609057 Strongly Correlated Electrons +cond-mat/9609069 +cond-mat/9609084 +cond-mat/9609088 +cond-mat/9609099 Superconductivity +cond-mat/9609103 +cond-mat/9609111 +cond-mat/9609124 +cond-mat/9609141 +cond-mat/9609148 +cond-mat/9609149 +cond-mat/9609181 +cond-mat/9609185 +cond-mat/9609196 +cond-mat/9609200 +cond-mat/9609201 +cond-mat/9609203 +cond-mat/9609205 +cond-mat/9609220 +cond-mat/9609228 +cond-mat/9609231 +cond-mat/9609240 +cond-mat/9609245 Statistical Mechanics +cond-mat/9609259 +cond-mat/9609286 +cond-mat/9610005 +cond-mat/9610007 Statistical Mechanics +cond-mat/9610026 Strongly Correlated Electrons +cond-mat/9610032 Superconductivity +cond-mat/9610044 Materials Science +cond-mat/9610064 Statistical Mechanics +cond-mat/9610074 Mesoscale and Nanoscale Physics +cond-mat/9610078 Mesoscale and Nanoscale Physics +cond-mat/9610079 Statistical Mechanics +cond-mat/9610080 +cond-mat/9610094 Strongly Correlated Electrons +cond-mat/9610124 Soft Condensed Matter +cond-mat/9610137 +cond-mat/9610142 Strongly Correlated Electrons +cond-mat/9610149 Materials Science +cond-mat/9610155 +cond-mat/9610159 Statistical Mechanics +cond-mat/9610168 Strongly Correlated Electrons +cond-mat/9610177 Mesoscale and Nanoscale Physics +cond-mat/9610198 Superconductivity +cond-mat/9610201 Statistical Mechanics +cond-mat/9610207 Superconductivity +cond-mat/9610208 +cond-mat/9611001 +cond-mat/9611005 Statistical Mechanics +cond-mat/9611007 Strongly Correlated Electrons +cond-mat/9611009 Statistical Mechanics +cond-mat/9611013 Strongly Correlated Electrons +cond-mat/9611026 Statistical Mechanics +cond-mat/9611030 Materials Science +cond-mat/9611042 Statistical Mechanics +cond-mat/9611043 Statistical Mechanics +cond-mat/9611047 Superconductivity +cond-mat/9611049 +cond-mat/9611053 Strongly Correlated Electrons +cond-mat/9611077 Statistical Mechanics +cond-mat/9611084 Mesoscale and Nanoscale Physics +cond-mat/9611092 Mesoscale and Nanoscale Physics +cond-mat/9611098 +cond-mat/9611111 +cond-mat/9611114 Statistical Mechanics +cond-mat/9611125 Strongly Correlated Electrons +cond-mat/9611130 Disordered Systems and Neural Networks +cond-mat/9611135 Superconductivity +cond-mat/9611149 +cond-mat/9611153 Superconductivity +cond-mat/9611157 Superconductivity +cond-mat/9611165 Strongly Correlated Electrons +cond-mat/9611168 Disordered Systems and Neural Networks +cond-mat/9611198 Strongly Correlated Electrons +cond-mat/9611207 +cond-mat/9611214 +cond-mat/9611218 Statistical Mechanics +cond-mat/9611233 Disordered Systems and Neural Networks +cond-mat/9611238 Superconductivity +cond-mat/9612013 Strongly Correlated Electrons +cond-mat/9612014 +cond-mat/9612021 Mesoscale and Nanoscale Physics +cond-mat/9612027 Superconductivity +cond-mat/9612039 Superconductivity +cond-mat/9612046 Strongly Correlated Electrons +cond-mat/9612049 +cond-mat/9612067 Mesoscale and Nanoscale Physics +cond-mat/9612081 Disordered Systems and Neural Networks +cond-mat/9612098 Strongly Correlated Electrons +cond-mat/9612120 Statistical Mechanics +cond-mat/9612123 Strongly Correlated Electrons +cond-mat/9612131 Superconductivity +cond-mat/9612138 Mesoscale and Nanoscale Physics +cond-mat/9612139 +cond-mat/9612149 +cond-mat/9612153 Mesoscale and Nanoscale Physics +cond-mat/9612166 Superconductivity +cond-mat/9612172 Strongly Correlated Electrons +cond-mat/9612181 +cond-mat/9612188 Superconductivity +cond-mat/9612205 Statistical Mechanics +cond-mat/9612207 Mesoscale and Nanoscale Physics +cond-mat/9612210 Mesoscale and Nanoscale Physics +cond-mat/9612239 Statistical Mechanics +cond-mat/9612242 Statistical Mechanics +cond-mat/9612247 Materials Science +cond-mat/9701001 Statistical Mechanics +cond-mat/9701016 Disordered Systems and Neural Networks +cond-mat/9701017 Strongly Correlated Electrons +cond-mat/9701034 Disordered Systems and Neural Networks +cond-mat/9701037 Mesoscale and Nanoscale Physics +cond-mat/9701042 +cond-mat/9701046 Superconductivity +cond-mat/9701058 Strongly Correlated Electrons +cond-mat/9701061 Mesoscale and Nanoscale Physics +cond-mat/9701072 Statistical Mechanics +cond-mat/9701083 Strongly Correlated Electrons +cond-mat/9701110 Soft Condensed Matter +cond-mat/9701122 Disordered Systems and Neural Networks +cond-mat/9701126 Mesoscale and Nanoscale Physics +cond-mat/9701135 Mesoscale and Nanoscale Physics +cond-mat/9701139 Soft Condensed Matter +cond-mat/9701167 +cond-mat/9701168 Strongly Correlated Electrons +cond-mat/9701169 Strongly Correlated Electrons +cond-mat/9701214 Strongly Correlated Electrons +cond-mat/9701224 +cond-mat/9701225 Materials Science +cond-mat/9702001 Mesoscale and Nanoscale Physics +cond-mat/9702008 Materials Science +cond-mat/9702014 Superconductivity +cond-mat/9702015 +cond-mat/9702016 Strongly Correlated Electrons +cond-mat/9702021 Strongly Correlated Electrons +cond-mat/9702032 Strongly Correlated Electrons +cond-mat/9702039 Mesoscale and Nanoscale Physics +cond-mat/9702046 +cond-mat/9702051 +cond-mat/9702076 Mesoscale and Nanoscale Physics +cond-mat/9702082 Statistical Mechanics +cond-mat/9702103 +cond-mat/9702133 Disordered Systems and Neural Networks +cond-mat/9702140 +cond-mat/9702145 +cond-mat/9702148 Superconductivity +cond-mat/9702194 Superconductivity +cond-mat/9702210 Strongly Correlated Electrons +cond-mat/9702219 Strongly Correlated Electrons +cond-mat/9702240 Disordered Systems and Neural Networks +cond-mat/9703009 Strongly Correlated Electrons +cond-mat/9703011 +cond-mat/9703022 Strongly Correlated Electrons +cond-mat/9703023 Statistical Mechanics +cond-mat/9703052 Strongly Correlated Electrons +cond-mat/9703073 Strongly Correlated Electrons +cond-mat/9703089 +cond-mat/9703090 +cond-mat/9703097 Statistical Mechanics +cond-mat/9703099 Superconductivity +cond-mat/9703109 Disordered Systems and Neural Networks +cond-mat/9703116 Mesoscale and Nanoscale Physics +cond-mat/9703117 Mesoscale and Nanoscale Physics +cond-mat/9703128 Mesoscale and Nanoscale Physics +cond-mat/9703132 Disordered Systems and Neural Networks +cond-mat/9703133 +cond-mat/9703138 Strongly Correlated Electrons +cond-mat/9703141 Superconductivity +cond-mat/9703152 +cond-mat/9703161 Statistical Mechanics +cond-mat/9703162 Disordered Systems and Neural Networks +cond-mat/9703175 Statistical Mechanics +cond-mat/9703176 Statistical Mechanics +cond-mat/9703253 Disordered Systems and Neural Networks +cond-mat/9704022 Superconductivity +cond-mat/9704092 +cond-mat/9704093 +cond-mat/9704099 Statistical Mechanics +cond-mat/9704101 Superconductivity +cond-mat/9704132 Superconductivity +cond-mat/9704137 Materials Science +cond-mat/9704152 Disordered Systems and Neural Networks +cond-mat/9704154 Statistical Mechanics +cond-mat/9704159 Superconductivity +cond-mat/9704161 Superconductivity +cond-mat/9704162 Disordered Systems and Neural Networks +cond-mat/9704180 Superconductivity +cond-mat/9704188 Superconductivity +cond-mat/9704190 Materials Science +cond-mat/9704199 Statistical Mechanics +cond-mat/9704205 Mesoscale and Nanoscale Physics +cond-mat/9704214 Statistical Mechanics +cond-mat/9704236 Statistical Mechanics +cond-mat/9705008 +cond-mat/9705020 +cond-mat/9705036 Strongly Correlated Electrons +cond-mat/9705042 Statistical Mechanics +cond-mat/9705047 +cond-mat/9705068 Strongly Correlated Electrons +cond-mat/9705071 +cond-mat/9705073 Materials Science +cond-mat/9705082 Statistical Mechanics +cond-mat/9705093 Superconductivity +cond-mat/9705110 Materials Science +cond-mat/9705135 Statistical Mechanics +cond-mat/9705144 Superconductivity +cond-mat/9705148 Statistical Mechanics +cond-mat/9705192 +cond-mat/9705214 Materials Science +cond-mat/9705216 Superconductivity +cond-mat/9705264 Statistical Mechanics +cond-mat/9705266 Strongly Correlated Electrons +cond-mat/9705283 +cond-mat/9705296 Strongly Correlated Electrons +cond-mat/9705305 Strongly Correlated Electrons +cond-mat/9706014 Strongly Correlated Electrons +cond-mat/9706050 Soft Condensed Matter +cond-mat/9706078 Statistical Mechanics +cond-mat/9706081 Strongly Correlated Electrons +cond-mat/9706093 Soft Condensed Matter +cond-mat/9706105 +cond-mat/9706113 Strongly Correlated Electrons +cond-mat/9706198 Strongly Correlated Electrons +cond-mat/9706199 Superconductivity +cond-mat/9706204 +cond-mat/9706220 Soft Condensed Matter +cond-mat/9706230 Strongly Correlated Electrons +cond-mat/9706296 Statistical Mechanics +cond-mat/9706298 Statistical Mechanics +cond-mat/9707017 Superconductivity +cond-mat/9707085 Statistical Mechanics +cond-mat/9707137 Statistical Mechanics +cond-mat/9707150 Superconductivity +cond-mat/9707261 Strongly Correlated Electrons +cond-mat/9707262 Strongly Correlated Electrons +cond-mat/9707301 +cond-mat/9707315 +cond-mat/9707328 +cond-mat/9708025 Disordered Systems and Neural Networks +cond-mat/9708036 Statistical Mechanics +cond-mat/9708066 Statistical Mechanics +cond-mat/9708103 Strongly Correlated Electrons +cond-mat/9708147 Disordered Systems and Neural Networks +cond-mat/9708154 +cond-mat/9708204 Strongly Correlated Electrons +cond-mat/9708234 Strongly Correlated Electrons +cond-mat/9709016 Mesoscale and Nanoscale Physics +cond-mat/9709030 Superconductivity +cond-mat/9709090 Strongly Correlated Electrons +cond-mat/9709108 Strongly Correlated Electrons +cond-mat/9709123 Strongly Correlated Electrons +cond-mat/9709150 +cond-mat/9709164 Disordered Systems and Neural Networks +cond-mat/9709184 Mesoscale and Nanoscale Physics +cond-mat/9709198 Statistical Mechanics +cond-mat/9709199 Strongly Correlated Electrons +cond-mat/9709204 Statistical Mechanics +cond-mat/9709226 Statistical Mechanics +cond-mat/9709247 Statistical Mechanics +cond-mat/9709302 +cond-mat/9709311 +cond-mat/9709342 Mesoscale and Nanoscale Physics +cond-mat/9709345 Statistical Mechanics +cond-mat/9710002 +cond-mat/9710033 +cond-mat/9710090 +cond-mat/9710153 +cond-mat/9710157 Strongly Correlated Electrons +cond-mat/9710168 Strongly Correlated Electrons +cond-mat/9710175 Superconductivity +cond-mat/9710257 Strongly Correlated Electrons +cond-mat/9710262 +cond-mat/9710292 Superconductivity +cond-mat/9710327 Statistical Mechanics +cond-mat/9710336 Statistical Mechanics +cond-mat/9710350 Mesoscale and Nanoscale Physics +cond-mat/9711024 Soft Condensed Matter +cond-mat/9711099 Superconductivity +cond-mat/9711100 +cond-mat/9711125 Superconductivity +cond-mat/9711162 +cond-mat/9711185 +cond-mat/9711211 Superconductivity +cond-mat/9711213 Statistical Mechanics +cond-mat/9711217 +cond-mat/9711236 Superconductivity +cond-mat/9711290 +cond-mat/9711309 Statistical Mechanics +cond-mat/9712056 Strongly Correlated Electrons +cond-mat/9712058 Materials Science +cond-mat/9712140 Statistical Mechanics +cond-mat/9712143 Strongly Correlated Electrons +cond-mat/9712164 Statistical Mechanics +cond-mat/9712189 Superconductivity +cond-mat/9712287 Soft Condensed Matter +cond-mat/9712296 Strongly Correlated Electrons +cond-mat/9712326 Superconductivity +cond-mat/9801008 Statistical Mechanics +cond-mat/9801038 Disordered Systems and Neural Networks +cond-mat/9801046 Strongly Correlated Electrons +cond-mat/9801071 Superconductivity +cond-mat/9801072 +cond-mat/9801127 +cond-mat/9801166 Superconductivity +cond-mat/9801275 Soft Condensed Matter +cond-mat/9801288 Statistical Mechanics +cond-mat/9801317 Strongly Correlated Electrons +cond-mat/9802066 Statistical Mechanics +cond-mat/9802081 Strongly Correlated Electrons +cond-mat/9802108 Disordered Systems and Neural Networks +cond-mat/9802113 +cond-mat/9802136 Statistical Mechanics +cond-mat/9802143 Soft Condensed Matter +cond-mat/9802144 Soft Condensed Matter +cond-mat/9802158 Mesoscale and Nanoscale Physics +cond-mat/9802189 +cond-mat/9802236 Strongly Correlated Electrons +cond-mat/9802241 +cond-mat/9802279 Strongly Correlated Electrons +cond-mat/9802304 Materials Science +cond-mat/9803001 Statistical Mechanics +cond-mat/9803006 Superconductivity +cond-mat/9803021 Superconductivity +cond-mat/9803040 Disordered Systems and Neural Networks +cond-mat/9803194 +cond-mat/9803205 Soft Condensed Matter +cond-mat/9803217 +cond-mat/9803218 +cond-mat/9803243 +cond-mat/9803351 Soft Condensed Matter +cond-mat/9804037 Statistical Mechanics +cond-mat/9804121 Superconductivity +cond-mat/9804145 Strongly Correlated Electrons +cond-mat/9804149 Statistical Mechanics +cond-mat/9804248 +cond-mat/9804249 Statistical Mechanics +cond-mat/9804261 Strongly Correlated Electrons +cond-mat/9804276 Materials Science +cond-mat/9804326 Statistical Mechanics +cond-mat/9805086 Mesoscale and Nanoscale Physics +cond-mat/9805273 Superconductivity +cond-mat/9805330 Statistical Mechanics +cond-mat/9805349 Mesoscale and Nanoscale Physics +cond-mat/9805366 Soft Condensed Matter +cond-mat/9805382 Soft Condensed Matter +cond-mat/9806013 Superconductivity +cond-mat/9806017 Strongly Correlated Electrons +cond-mat/9806021 +cond-mat/9806030 Strongly Correlated Electrons +cond-mat/9806053 Superconductivity +cond-mat/9806071 Statistical Mechanics +cond-mat/9806119 Strongly Correlated Electrons +cond-mat/9806138 Statistical Mechanics +cond-mat/9806140 Statistical Mechanics +cond-mat/9806173 Mesoscale and Nanoscale Physics +cond-mat/9806268 Disordered Systems and Neural Networks +cond-mat/9806297 Superconductivity +cond-mat/9806309 Superconductivity +cond-mat/9806324 Strongly Correlated Electrons +cond-mat/9806354 Mesoscale and Nanoscale Physics +cond-mat/9806374 Strongly Correlated Electrons +cond-mat/9807019 Strongly Correlated Electrons +cond-mat/9807188 Statistical Mechanics +cond-mat/9807257 +cond-mat/9807285 Statistical Mechanics +cond-mat/9807294 Strongly Correlated Electrons +cond-mat/9807308 Strongly Correlated Electrons +cond-mat/9807335 Superconductivity +cond-mat/9807348 Materials Science +cond-mat/9807373 Superconductivity +cond-mat/9807376 Mesoscale and Nanoscale Physics +cond-mat/9807393 Strongly Correlated Electrons +cond-mat/9807397 Statistical Mechanics +cond-mat/9807409 Mesoscale and Nanoscale Physics +cond-mat/9807420 +cond-mat/9807422 Mesoscale and Nanoscale Physics +cond-mat/9808005 Soft Condensed Matter +cond-mat/9808056 Materials Science +cond-mat/9808068 Statistical Mechanics +cond-mat/9808130 Soft Condensed Matter +cond-mat/9808133 +cond-mat/9808202 Soft Condensed Matter +cond-mat/9808220 Statistical Mechanics +cond-mat/9808222 Strongly Correlated Electrons +cond-mat/9808338 Mesoscale and Nanoscale Physics +cond-mat/9809004 Materials Science +cond-mat/9809061 Statistical Mechanics +cond-mat/9809112 Strongly Correlated Electrons +cond-mat/9809137 Materials Science +cond-mat/9809205 Soft Condensed Matter +cond-mat/9809244 Statistical Mechanics +cond-mat/9809260 Materials Science +cond-mat/9809294 Mesoscale and Nanoscale Physics +cond-mat/9809365 Statistical Mechanics +cond-mat/9809415 Soft Condensed Matter +cond-mat/9810047 Soft Condensed Matter +cond-mat/9810094 Mesoscale and Nanoscale Physics +cond-mat/9810099 Statistical Mechanics +cond-mat/9810119 Disordered Systems and Neural Networks +cond-mat/9810154 Disordered Systems and Neural Networks +cond-mat/9810158 Superconductivity +cond-mat/9810169 Superconductivity +cond-mat/9810210 +cond-mat/9810231 Statistical Mechanics +cond-mat/9810264 Soft Condensed Matter +cond-mat/9810336 Strongly Correlated Electrons +cond-mat/9810366 Statistical Mechanics +cond-mat/9810403 Statistical Mechanics +cond-mat/9811045 +cond-mat/9811059 Superconductivity +cond-mat/9811062 Materials Science +cond-mat/9811072 +cond-mat/9811079 Materials Science +cond-mat/9811089 Strongly Correlated Electrons +cond-mat/9811095 Strongly Correlated Electrons +cond-mat/9811102 Statistical Mechanics +cond-mat/9811113 Mesoscale and Nanoscale Physics +cond-mat/9811266 Materials Science +cond-mat/9811303 Superconductivity +cond-mat/9811318 +cond-mat/9811331 Disordered Systems and Neural Networks +cond-mat/9812119 +cond-mat/9812124 Statistical Mechanics +cond-mat/9812161 Statistical Mechanics +cond-mat/9812180 +cond-mat/9812181 Mesoscale and Nanoscale Physics +cond-mat/9812275 Mesoscale and Nanoscale Physics +cond-mat/9812278 Superconductivity +cond-mat/9812352 +cond-mat/9812355 Strongly Correlated Electrons +cond-mat/9812361 Disordered Systems and Neural Networks +cond-mat/9812417 Statistical Mechanics +cond-mat/9901038 Materials Science +cond-mat/9901040 Superconductivity +cond-mat/9901046 +cond-mat/9901141 Strongly Correlated Electrons +cond-mat/9901183 +cond-mat/9901223 Statistical Mechanics +cond-mat/9901228 Statistical Mechanics +cond-mat/9901235 Strongly Correlated Electrons +cond-mat/9901257 Superconductivity +cond-mat/9901308 Mesoscale and Nanoscale Physics +cond-mat/9902011 Disordered Systems and Neural Networks +cond-mat/9902035 Mesoscale and Nanoscale Physics +cond-mat/9902121 Statistical Mechanics +cond-mat/9902162 Superconductivity +cond-mat/9902206 Mesoscale and Nanoscale Physics +cond-mat/9902207 +cond-mat/9902223 Statistical Mechanics +cond-mat/9902239 +cond-mat/9902308 Superconductivity +cond-mat/9903072 Materials Science +cond-mat/9903170 Superconductivity +cond-mat/9903187 Mesoscale and Nanoscale Physics +cond-mat/9903189 Strongly Correlated Electrons +cond-mat/9903251 Strongly Correlated Electrons +cond-mat/9903403 Statistical Mechanics +cond-mat/9903423 Soft Condensed Matter +cond-mat/9904008 Statistical Mechanics +cond-mat/9904040 Statistical Mechanics +cond-mat/9904068 Strongly Correlated Electrons +cond-mat/9904125 Disordered Systems and Neural Networks +cond-mat/9904133 Strongly Correlated Electrons +cond-mat/9904225 Materials Science +cond-mat/9904272 Mesoscale and Nanoscale Physics +cond-mat/9904333 Statistical Mechanics +cond-mat/9904415 Soft Condensed Matter +cond-mat/9904442 +cond-mat/9905004 +cond-mat/9905009 Statistical Mechanics +cond-mat/9905059 Statistical Mechanics +cond-mat/9905072 Strongly Correlated Electrons +cond-mat/9905219 Superconductivity +cond-mat/9905265 Mesoscale and Nanoscale Physics +cond-mat/9905286 Superconductivity +cond-mat/9905391 Strongly Correlated Electrons +cond-mat/9905400 Materials Science +cond-mat/9905432 +cond-mat/9906001 Superconductivity +cond-mat/9906006 Mesoscale and Nanoscale Physics +cond-mat/9906075 Strongly Correlated Electrons +cond-mat/9906101 +cond-mat/9906129 Strongly Correlated Electrons +cond-mat/9906303 +cond-mat/9906315 Materials Science +cond-mat/9906350 Statistical Mechanics +cond-mat/9906365 Strongly Correlated Electrons +cond-mat/9906369 Strongly Correlated Electrons +cond-mat/9906412 Strongly Correlated Electrons +cond-mat/9907017 Superconductivity +cond-mat/9907038 Disordered Systems and Neural Networks +cond-mat/9907042 Statistical Mechanics +cond-mat/9907068 Disordered Systems and Neural Networks +cond-mat/9907081 Superconductivity +cond-mat/9907086 Mesoscale and Nanoscale Physics +cond-mat/9907091 Superconductivity +cond-mat/9907203 +cond-mat/9907284 Strongly Correlated Electrons +cond-mat/9907412 Statistical Mechanics +cond-mat/9907441 Superconductivity +cond-mat/9907464 Statistical Mechanics +cond-mat/9907492 Superconductivity +cond-mat/9908075 +cond-mat/9908077 Materials Science +cond-mat/9908090 Mesoscale and Nanoscale Physics +cond-mat/9908093 Statistical Mechanics +cond-mat/9908118 Statistical Mechanics +cond-mat/9908240 Materials Science +cond-mat/9908258 Strongly Correlated Electrons +cond-mat/9908260 Mesoscale and Nanoscale Physics +cond-mat/9908278 +cond-mat/9908309 Disordered Systems and Neural Networks +cond-mat/9908317 Superconductivity +cond-mat/9908318 Mesoscale and Nanoscale Physics +cond-mat/9908336 Statistical Mechanics +cond-mat/9908358 Disordered Systems and Neural Networks +cond-mat/9908378 +cond-mat/9908401 Strongly Correlated Electrons +cond-mat/9908450 +cond-mat/9909037 Superconductivity +cond-mat/9909108 Superconductivity +cond-mat/9909121 +cond-mat/9909149 Statistical Mechanics +cond-mat/9909160 Statistical Mechanics +cond-mat/9909207 Statistical Mechanics +cond-mat/9909225 Statistical Mechanics +cond-mat/9909267 Superconductivity +cond-mat/9909275 Disordered Systems and Neural Networks +cond-mat/9909277 Strongly Correlated Electrons +cond-mat/9909296 Strongly Correlated Electrons +cond-mat/9909306 Statistical Mechanics +cond-mat/9909346 Strongly Correlated Electrons +cond-mat/9909409 Superconductivity +cond-mat/9909459 Soft Condensed Matter +cond-mat/9910043 +cond-mat/9910099 Soft Condensed Matter +cond-mat/9910105 Mesoscale and Nanoscale Physics +cond-mat/9910110 Mesoscale and Nanoscale Physics +cond-mat/9910158 Mesoscale and Nanoscale Physics +cond-mat/9910184 Superconductivity +cond-mat/9910219 Materials Science +cond-mat/9910222 Superconductivity +cond-mat/9910251 Superconductivity +cond-mat/9910267 Soft Condensed Matter +cond-mat/9910269 Soft Condensed Matter +cond-mat/9910271 +cond-mat/9910283 +cond-mat/9910307 Materials Science +cond-mat/9910392 +cond-mat/9910395 +cond-mat/9910437 Superconductivity +cond-mat/9910529 Soft Condensed Matter +cond-mat/9911015 +cond-mat/9911069 Soft Condensed Matter +cond-mat/9911088 Strongly Correlated Electrons +cond-mat/9911098 Strongly Correlated Electrons +cond-mat/9911118 Strongly Correlated Electrons +cond-mat/9911151 Materials Science +cond-mat/9911189 Strongly Correlated Electrons +cond-mat/9911223 Strongly Correlated Electrons +cond-mat/9911224 Mesoscale and Nanoscale Physics +cond-mat/9911230 Statistical Mechanics +cond-mat/9911266 Strongly Correlated Electrons +cond-mat/9911303 Strongly Correlated Electrons +cond-mat/9911315 Materials Science +cond-mat/9911469 Soft Condensed Matter +cond-mat/9911487 Statistical Mechanics +cond-mat/9912039 Mesoscale and Nanoscale Physics +cond-mat/9912049 Strongly Correlated Electrons +cond-mat/9912061 Disordered Systems and Neural Networks +cond-mat/9912070 Strongly Correlated Electrons +cond-mat/9912072 Superconductivity +cond-mat/9912133 Superconductivity +cond-mat/9912162 Statistical Mechanics +cond-mat/9912185 Statistical Mechanics +cond-mat/9912220 Disordered Systems and Neural Networks +cond-mat/9912274 Soft Condensed Matter +cond-mat/9912275 Statistical Mechanics +cond-mat/9912301 +cond-mat/9912374 Statistical Mechanics +cond-mat/9912465 Statistical Mechanics +cond-mat/9912472 Statistical Mechanics +cond-mat/9912483 +cs/0003021 Artificial Intelligence +cs/0004010 Distributed, Parallel, and Cluster Computing +cs/0006012 Computation and Language +cs/0012002 Data Structures and Algorithms +cs/0105004 Computational Engineering, Finance, and Science +cs/0105018 Software Engineering +cs/0105029 Data Structures and Algorithms +cs/0109054 Computers and Society +cs/0111059 Logic in Computer Science +cs/0201017 Computer Science and Game Theory +cs/0206028 Information Retrieval +cs/0207032 Artificial Intelligence +cs/0207069 Networking and Internet Architecture +cs/0212008 Learning +cs/0212022 Robotics +cs/0303025 Sound +cs/0304046 Logic in Computer Science +cs/0305014 Artificial Intelligence +cs/0306096 Distributed, Parallel, and Cluster Computing +cs/0306109 Distributed, Parallel, and Cluster Computing +cs/0307059 Cryptography and Security +cs/0307072 Computer Vision and Pattern Recognition +cs/0308003 Computer Vision and Pattern Recognition +cs/0312006 Graphics +cs/0312039 Computational Complexity +cs/0402003 Databases +cs/0402050 Neural and Evolutionary Computing +cs/0402059 Logic in Computer Science +cs/0403002 Artificial Intelligence +cs/0404037 Software Engineering +cs/0404049 Computation and Language +cs/0405060 Symbolic Computation +cs/0408012 Computer Vision and Pattern Recognition +cs/0408064 Artificial Intelligence +cs/0409047 Artificial Intelligence +cs/0410014 Artificial Intelligence +cs/0410017 Computer Vision and Pattern Recognition +cs/0410044 Mathematical Software +cs/0410074 Distributed, Parallel, and Cluster Computing +cs/0411016 Artificial Intelligence +cs/0502058 Computational Complexity +cs/0502065 Data Structures and Algorithms +cs/0503012 Databases +cs/0503015 Software Engineering +cs/0503052 Computational Complexity +cs/0503066 Hardware Architecture +cs/0504014 Information Theory +cs/0504052 Neural and Evolutionary Computing +cs/0505004 Software Engineering +cs/0505022 Information Theory +cs/0505033 Logic in Computer Science +cs/0505058 Computer Vision and Pattern Recognition +cs/0505085 Programming Languages +cs/0506065 Cryptography and Security +cs/0506089 Computer Vision and Pattern Recognition +cs/0507026 Information Theory +cs/0508023 Software Engineering +cs/0509032 Artificial Intelligence +cs/0509062 Information Theory +cs/0509080 Information Theory +cs/0509088 Databases +cs/0509095 Networking and Internet Architecture +cs/0510004 Computational Geometry +cs/0510006 Networking and Internet Architecture +cs/0510008 Computer Vision and Pattern Recognition +cs/0510012 Logic in Computer Science +cs/0511089 Information Theory +cs/0511094 Distributed, Parallel, and Cluster Computing +cs/0512090 Data Structures and Algorithms +cs/0605141 Distributed, Parallel, and Cluster Computing +cs/0607045 Data Structures and Algorithms +cs/0607104 Cryptography and Security +cs/0607135 Computational Complexity +cs/0610003 Discrete Mathematics +cs/0703114 Databases +cs/9301108 Logic in Computer Science +cs/9301109 Logic in Computer Science +cs/9301110 Logic in Computer Science +cs/9511103 Logic in Computer Science +cs/9601101 Artificial Intelligence +cs/9612104 Logic in Computer Science +cs/9707103 Artificial Intelligence +cs/9711106 Logic in Computer Science +cs/9808007 Artificial Intelligence +cs/9809015 Logic in Computer Science +cs/9810025 Software Engineering +cs/9811012 Programming Languages +cs/9811032 Neural and Evolutionary Computing +cs/9901007 Programming Languages +cs/9902007 Digital Libraries +cs/9903004 Distributed, Parallel, and Cluster Computing +cs/9906026 Computation and Language +cs/9907009 Databases +cs/9909007 Computational Geometry +cs/9912018 Software Engineering +dg-ga/9408002 Differential Geometry +dg-ga/9409005 Differential Geometry +dg-ga/9410004 Differential Geometry +dg-ga/9411002 Differential Geometry +dg-ga/9501002 Differential Geometry +dg-ga/9501003 Differential Geometry +dg-ga/9501004 Differential Geometry +dg-ga/9501005 Differential Geometry +dg-ga/9502004 Differential Geometry +dg-ga/9502005 Differential Geometry +dg-ga/9502006 Differential Geometry +dg-ga/9502008 Differential Geometry +dg-ga/9502009 Differential Geometry +dg-ga/9503002 Differential Geometry +dg-ga/9503005 Differential Geometry +dg-ga/9503013 Differential Geometry +dg-ga/9503016 Differential Geometry +dg-ga/9506010 Differential Geometry +dg-ga/9508005 Differential Geometry +dg-ga/9508006 Differential Geometry +dg-ga/9508009 Differential Geometry +dg-ga/9510005 Differential Geometry +dg-ga/9510008 Differential Geometry +dg-ga/9512011 Differential Geometry +dg-ga/9601012 Differential Geometry +dg-ga/9603015 Differential Geometry +dg-ga/9604003 Differential Geometry +dg-ga/9610005 Differential Geometry +dg-ga/9612004 Differential Geometry +dg-ga/9701009 Differential Geometry +dg-ga/9702004 Differential Geometry +dg-ga/9703019 Differential Geometry +dg-ga/9704011 Differential Geometry +dg-ga/9710032 Differential Geometry +dg-ga/9711002 Differential Geometry +dg-ga/9711020 Differential Geometry +funct-an/9209001 Functional Analysis +funct-an/9211001 Functional Analysis +funct-an/9211011 Functional Analysis +funct-an/9302003 Functional Analysis +funct-an/9302005 Functional Analysis +funct-an/9302006 Functional Analysis +funct-an/9303002 Functional Analysis +funct-an/9303004 Functional Analysis +funct-an/9305002 Functional Analysis +funct-an/9311001 Functional Analysis +funct-an/9312001 Functional Analysis +funct-an/9312006 Functional Analysis +funct-an/9401001 Functional Analysis +funct-an/9401003 Functional Analysis +funct-an/9402001 Functional Analysis +funct-an/9403001 Functional Analysis +funct-an/9409002 Functional Analysis +funct-an/9410003 Functional Analysis +funct-an/9501002 Functional Analysis +funct-an/9501004 Functional Analysis +funct-an/9501006 Functional Analysis +funct-an/9502003 Functional Analysis +funct-an/9502004 Functional Analysis +funct-an/9506007 Functional Analysis +funct-an/9601004 Functional Analysis +funct-an/9602005 Functional Analysis +funct-an/9701006 Functional Analysis +funct-an/9702007 Functional Analysis +funct-an/9705002 Functional Analysis +funct-an/9712007 Functional Analysis +gr-qc/0001020 +gr-qc/0001101 +gr-qc/0002050 +gr-qc/0003087 +gr-qc/0003102 +gr-qc/0003104 +gr-qc/0003110 +gr-qc/0004044 +gr-qc/0005061 +gr-qc/0005063 +gr-qc/0005077 +gr-qc/0005086 +gr-qc/0005105 +gr-qc/0005124 +gr-qc/0005133 +gr-qc/0007040 +gr-qc/0009054 +gr-qc/0009075 +gr-qc/0010049 +gr-qc/0010075 +gr-qc/0011017 +gr-qc/0011041 +gr-qc/0011081 +gr-qc/0011111 +gr-qc/0012034 +gr-qc/0012072 +gr-qc/0012095 +gr-qc/0012106 +gr-qc/0101006 +gr-qc/0101024 +gr-qc/0101092 +gr-qc/0101097 +gr-qc/0102005 +gr-qc/0102100 +gr-qc/0104016 +gr-qc/0104027 +gr-qc/0104095 +gr-qc/0105050 +gr-qc/0105054 +gr-qc/0106028 +gr-qc/0107072 +gr-qc/0109009 +gr-qc/0109075 +gr-qc/0110030 +gr-qc/0110062 +gr-qc/0110068 +gr-qc/0110110 +gr-qc/0111016 +gr-qc/0111048 +gr-qc/0111052 +gr-qc/0111107 +gr-qc/0111114 +gr-qc/0112065 +gr-qc/0201018 +gr-qc/0201026 +gr-qc/0202078 +gr-qc/0202080 +gr-qc/0202104 +gr-qc/0203072 +gr-qc/0204022 +gr-qc/0204052 +gr-qc/0204081 +gr-qc/0204089 +gr-qc/0204091 +gr-qc/0205084 +gr-qc/0206005 +gr-qc/0206032 +gr-qc/0206044 +gr-qc/0206052 +gr-qc/0207068 +gr-qc/0207088 +gr-qc/0208009 +gr-qc/0208039 +gr-qc/0210020 +gr-qc/0210026 +gr-qc/0210082 +gr-qc/0211039 +gr-qc/0211042 +gr-qc/0211048 +gr-qc/0211060 +gr-qc/0212041 +gr-qc/0212078 +gr-qc/0212126 +gr-qc/0301058 +gr-qc/0301078 +gr-qc/0302015 +gr-qc/0302053 +gr-qc/0302119 +gr-qc/0303003 +gr-qc/0303024 +gr-qc/0303063 +gr-qc/0304048 +gr-qc/0304076 +gr-qc/0305044 +gr-qc/0305090 +gr-qc/0305096 +gr-qc/0306067 +gr-qc/0307010 +gr-qc/0307020 +gr-qc/0307093 +gr-qc/0308033 +gr-qc/0308047 +gr-qc/0308060 +gr-qc/0309068 +gr-qc/0310030 +gr-qc/0310031 +gr-qc/0312045 +gr-qc/0312067 +gr-qc/0401099 +gr-qc/0402058 +gr-qc/0402112 +gr-qc/0402120 +gr-qc/0403041 +gr-qc/0403097 +gr-qc/0403116 +gr-qc/0404008 +gr-qc/0404024 +gr-qc/0404108 +gr-qc/0406067 +gr-qc/0406100 +gr-qc/0408020 +gr-qc/0408029 +gr-qc/0408040 +gr-qc/0408099 +gr-qc/0409046 +gr-qc/0410045 +gr-qc/0410062 +gr-qc/0410072 +gr-qc/0410138 +gr-qc/0411003 +gr-qc/0411018 +gr-qc/0411063 +gr-qc/0411101 +gr-qc/0412095 +gr-qc/0412111 +gr-qc/0501081 +gr-qc/0501093 +gr-qc/0502007 +gr-qc/0502122 +gr-qc/0503086 +gr-qc/0504059 +gr-qc/0504092 +gr-qc/0504135 +gr-qc/0505063 +gr-qc/0505106 +gr-qc/0506051 +gr-qc/0506054 +gr-qc/0506138 +gr-qc/0507005 +gr-qc/0507022 +gr-qc/0509005 +gr-qc/0509089 +gr-qc/0509091 +gr-qc/0509105 +gr-qc/0509114 +gr-qc/0509120 +gr-qc/0510001 +gr-qc/0510021 +gr-qc/0510030 +gr-qc/0510055 +gr-qc/0512035 +gr-qc/0601020 +gr-qc/0601080 +gr-qc/0602108 +gr-qc/0602119 +gr-qc/0603071 +gr-qc/0603088 +gr-qc/0606056 +gr-qc/0609045 +gr-qc/0611131 +gr-qc/9207004 +gr-qc/9301024 +gr-qc/9302004 +gr-qc/9303002 +gr-qc/9303035 +gr-qc/9304043 +gr-qc/9308032 +gr-qc/9309016 +gr-qc/9311006 +gr-qc/9311010 +gr-qc/9311028 +gr-qc/9312036 +gr-qc/9403031 +gr-qc/9403063 +gr-qc/9404063 +gr-qc/9406049 +gr-qc/9408042 +gr-qc/9408043 +gr-qc/9410038 +gr-qc/9412076 +gr-qc/9501001 +gr-qc/9501003 +gr-qc/9501004 +gr-qc/9501005 +gr-qc/9501006 +gr-qc/9501007 +gr-qc/9501009 +gr-qc/9501010 +gr-qc/9501014 +gr-qc/9501015 +gr-qc/9501021 +gr-qc/9501025 +gr-qc/9501034 +gr-qc/9501037 +gr-qc/9501038 +gr-qc/9501039 +gr-qc/9502001 +gr-qc/9502002 +gr-qc/9502004 +gr-qc/9502008 +gr-qc/9502009 +gr-qc/9502013 +gr-qc/9502014 +gr-qc/9502015 +gr-qc/9502016 +gr-qc/9502017 +gr-qc/9502022 +gr-qc/9502024 +gr-qc/9502026 +gr-qc/9502027 +gr-qc/9502031 +gr-qc/9502032 +gr-qc/9502033 +gr-qc/9502037 +gr-qc/9502040 +gr-qc/9502041 +gr-qc/9502042 +gr-qc/9502044 +gr-qc/9502045 +gr-qc/9503001 +gr-qc/9503002 +gr-qc/9503004 +gr-qc/9503006 +gr-qc/9503007 +gr-qc/9503010 +gr-qc/9503011 +gr-qc/9503018 +gr-qc/9503019 +gr-qc/9503023 +gr-qc/9503025 +gr-qc/9503027 +gr-qc/9503028 +gr-qc/9503029 +gr-qc/9503030 +gr-qc/9503031 +gr-qc/9503032 +gr-qc/9504031 +gr-qc/9505018 +gr-qc/9505032 +gr-qc/9505034 +gr-qc/9505044 +gr-qc/9507020 +gr-qc/9507040 +gr-qc/9507048 +gr-qc/9508007 +gr-qc/9508025 +gr-qc/9508039 +gr-qc/9508068 +gr-qc/9509002 +gr-qc/9509058 +gr-qc/9510014 +gr-qc/9510015 +gr-qc/9510017 +gr-qc/9510038 +gr-qc/9510041 +gr-qc/9511016 +gr-qc/9511030 +gr-qc/9511045 +gr-qc/9511067 +gr-qc/9511075 +gr-qc/9601012 +gr-qc/9602001 +gr-qc/9602032 +gr-qc/9602059 +gr-qc/9603004 +gr-qc/9604017 +gr-qc/9604037 +gr-qc/9604057 +gr-qc/9605026 +gr-qc/9606044 +gr-qc/9606045 +gr-qc/9607007 +gr-qc/9607010 +gr-qc/9607026 +gr-qc/9607070 +gr-qc/9608015 +gr-qc/9608058 +gr-qc/9609003 +gr-qc/9609008 +gr-qc/9609014 +gr-qc/9609029 +gr-qc/9609030 +gr-qc/9609063 +gr-qc/9610002 +gr-qc/9611003 +gr-qc/9611006 +gr-qc/9611012 +gr-qc/9611049 +gr-qc/9611051 +gr-qc/9612064 +gr-qc/9702006 +gr-qc/9702010 +gr-qc/9702037 +gr-qc/9702045 +gr-qc/9703015 +gr-qc/9703037 +gr-qc/9703045 +gr-qc/9704007 +gr-qc/9704019 +gr-qc/9704034 +gr-qc/9704084 +gr-qc/9705008 +gr-qc/9705011 +gr-qc/9705018 +gr-qc/9705021 +gr-qc/9705070 +gr-qc/9707060 +gr-qc/9708019 +gr-qc/9708054 +gr-qc/9709014 +gr-qc/9710002 +gr-qc/9712012 +gr-qc/9801010 +gr-qc/9801019 +gr-qc/9801026 +gr-qc/9801031 +gr-qc/9801093 +gr-qc/9802052 +gr-qc/9803008 +gr-qc/9803036 +gr-qc/9804061 +gr-qc/9805030 +gr-qc/9805054 +gr-qc/9805100 +gr-qc/9806001 +gr-qc/9806078 +gr-qc/9806100 +gr-qc/9806115 +gr-qc/9807064 +gr-qc/9808045 +gr-qc/9808055 +gr-qc/9808074 +gr-qc/9809011 +gr-qc/9810053 +gr-qc/9810058 +gr-qc/9810069 +gr-qc/9811060 +gr-qc/9811061 +gr-qc/9811072 +gr-qc/9811077 +gr-qc/9811087 +gr-qc/9812021 +gr-qc/9812073 +gr-qc/9812080 +gr-qc/9901082 +gr-qc/9902010 +gr-qc/9902036 +gr-qc/9903006 +gr-qc/9903013 +gr-qc/9903063 +gr-qc/9903096 +gr-qc/9904026 +gr-qc/9905042 +gr-qc/9905108 +gr-qc/9906029 +gr-qc/9906105 +gr-qc/9906110 +gr-qc/9906118 +gr-qc/9907008 +gr-qc/9908020 +gr-qc/9908034 +gr-qc/9908056 +gr-qc/9908058 +gr-qc/9908061 +gr-qc/9908066 +gr-qc/9908071 +gr-qc/9909023 +gr-qc/9909024 +gr-qc/9909034 +gr-qc/9910017 +gr-qc/9910107 +gr-qc/9911074 +gr-qc/9911095 +gr-qc/9911100 +gr-qc/9911108 +gr-qc/9911123 +gr-qc/9912089 +hep-ex/0001030 Experiment +hep-ex/0002021 Experiment +hep-ex/0005040 Experiment +hep-ex/0008073 Experiment +hep-ex/0008075 Experiment +hep-ex/0009012 Experiment +hep-ex/0011054 Experiment +hep-ex/0011066 Experiment +hep-ex/0011076 Experiment +hep-ex/0012005 Experiment +hep-ex/0012045 Experiment +hep-ex/0012048 Experiment +hep-ex/0012062 Experiment +hep-ex/0103019 Experiment +hep-ex/0104019 Experiment +hep-ex/0106017 Experiment +hep-ex/0106094 Experiment +hep-ex/0108029 Experiment +hep-ex/0112012 Experiment +hep-ex/0202002 Experiment +hep-ex/0202009 Experiment +hep-ex/0202016 Experiment +hep-ex/0202038 Experiment +hep-ex/0205092 Experiment +hep-ex/0206001 Experiment +hep-ex/0206062 Experiment +hep-ex/0210005 Experiment +hep-ex/0210042 Experiment +hep-ex/0210062 Experiment +hep-ex/0210063 Experiment +hep-ex/0210068 Experiment +hep-ex/0211072 Experiment +hep-ex/0304018 Experiment +hep-ex/0305003 Experiment +hep-ex/0305013 Experiment +hep-ex/0305063 Experiment +hep-ex/0307058 Experiment +hep-ex/0309003 Experiment +hep-ex/0309070 Experiment +hep-ex/0310060 Experiment +hep-ex/0312022 Experiment +hep-ex/0403026 Experiment +hep-ex/0404014 Experiment +hep-ex/0405003 Experiment +hep-ex/0405032 Experiment +hep-ex/0406044 Experiment +hep-ex/0407011 Experiment +hep-ex/0407036 Experiment +hep-ex/0408089 Experiment +hep-ex/0410028 Experiment +hep-ex/0410033 Experiment +hep-ex/0411038 Experiment +hep-ex/0411047 Experiment +hep-ex/0411053 Experiment +hep-ex/0501019 Experiment +hep-ex/0501020 Experiment +hep-ex/0503007 Experiment +hep-ex/0504027 Experiment +hep-ex/0505031 Experiment +hep-ex/0505094 Experiment +hep-ex/0506067 Experiment +hep-ex/0507017 Experiment +hep-ex/0509035 Experiment +hep-ex/0510002 Experiment +hep-ex/0510007 Experiment +hep-ex/0510010 Experiment +hep-ex/0510011 Experiment +hep-ex/0510012 Experiment +hep-ex/0510018 Experiment +hep-ex/0510020 Experiment +hep-ex/0510066 Experiment +hep-ex/0511036 Experiment +hep-ex/0601015 Experiment +hep-ex/0603037 Experiment +hep-ex/0605104 Experiment +hep-ex/0606015 Experiment +hep-ex/9412002 Experiment +hep-ex/9501009 Experiment +hep-ex/9501010 Experiment +hep-ex/9502005 Experiment +hep-ex/9502007 Experiment +hep-ex/9503004 Experiment +hep-ex/9503005 Experiment +hep-ex/9503008 Experiment +hep-ex/9503011 Experiment +hep-ex/9504009 Experiment +hep-ex/9511011 Experiment +hep-ex/9603007 Experiment +hep-ex/9608001 Experiment +hep-ex/9610004 Experiment +hep-ex/9611009 Experiment +hep-ex/9701010 Experiment +hep-ex/9703001 Experiment +hep-ex/9705002 Experiment +hep-ex/9708005 Experiment +hep-ex/9710017 Experiment +hep-ex/9710029 Experiment +hep-ex/9711003 Experiment +hep-ex/9711009 Experiment +hep-ex/9805011 Experiment +hep-ex/9805012 Experiment +hep-ex/9805013 Experiment +hep-ex/9805014 Experiment +hep-ex/9805015 Experiment +hep-ex/9805029 Experiment +hep-ex/9806003 Experiment +hep-ex/9807011 Experiment +hep-ex/9807025 Experiment +hep-ex/9807026 Experiment +hep-ex/9809014 Experiment +hep-ex/9809029 Experiment +hep-ex/9811024 Experiment +hep-ex/9812010 Experiment +hep-ex/9901019 Experiment +hep-ex/9902012 Experiment +hep-ex/9903013 Experiment +hep-ex/9903067 Experiment +hep-ex/9904033 Experiment +hep-ex/9907013 Experiment +hep-ex/9907049 Experiment +hep-ex/9907051 Experiment +hep-ex/9908056 Experiment +hep-ex/9909016 Experiment +hep-ex/9909023 Experiment +hep-ex/9909051 Experiment +hep-ex/9911035 Experiment +hep-ex/9911050 Experiment +hep-ex/9912020 Experiment +hep-ex/9912043 Experiment +hep-ex/9912066 Experiment +hep-lat/9204010 Lattice +hep-lat/9206001 Lattice +hep-lat/9207032 Lattice +hep-lat/9208022 Lattice +hep-lat/9208028 Lattice +hep-lat/9210038 Lattice +hep-lat/9211008 Lattice +hep-lat/9211025 Lattice +hep-lat/9212034 Lattice +hep-lat/9305026 Lattice +hep-lat/9306005 Lattice +hep-lat/9306014 Lattice +hep-lat/9309013 Lattice +hep-lat/9310029 Lattice +hep-lat/9312074 Lattice +hep-lat/9312079 Lattice +hep-lat/9405015 Lattice +hep-lat/9406021 Lattice +hep-lat/9407012 Lattice +hep-lat/9407024 Lattice +hep-lat/9411034 Lattice +hep-lat/9411040 Lattice +hep-lat/9411071 Lattice +hep-lat/9412031 Lattice +hep-lat/9501001 Lattice +hep-lat/9501003 Lattice +hep-lat/9501004 Lattice +hep-lat/9501007 Lattice +hep-lat/9501008 Lattice +hep-lat/9501011 Lattice +hep-lat/9501012 Lattice +hep-lat/9501014 Lattice +hep-lat/9501017 Lattice +hep-lat/9501018 Lattice +hep-lat/9501019 Lattice +hep-lat/9501021 Lattice +hep-lat/9501024 Lattice +hep-lat/9501025 Lattice +hep-lat/9501027 Lattice +hep-lat/9501032 Lattice +hep-lat/9501033 Lattice +hep-lat/9501034 Lattice +hep-lat/9502001 Lattice +hep-lat/9502003 Lattice +hep-lat/9502004 Lattice +hep-lat/9502005 Lattice +hep-lat/9502006 Lattice +hep-lat/9502008 Lattice +hep-lat/9502011 Lattice +hep-lat/9502014 Lattice +hep-lat/9502017 Lattice +hep-lat/9502018 Lattice +hep-lat/9502019 Lattice +hep-lat/9502020 Lattice +hep-lat/9502021 Lattice +hep-lat/9503003 Lattice +hep-lat/9503005 Lattice +hep-lat/9503007 Lattice +hep-lat/9503008 Lattice +hep-lat/9503009 Lattice +hep-lat/9503011 Lattice +0905.4054 Differential Geometry +1106.3772 Algebraic Topology +1111.4774 Algebraic Topology +1111.6098 Phenomenology +1202.4626 Discrete Mathematics +1212.4082 General Mathematics +1301.5994 Analysis of PDEs +1302.3672 Computational Geometry +1304.5763 Group Theory +1309.2308 +1310.2090 Statistical Mechanics +1312.6699 Analysis of PDEs +1401.0152 Phenomenology +1401.5125 Information Theory +1401.7541 Operator Algebras +1402.5419 Phenomenology +1403.6298 Differential Geometry +1404.2894 Geometric Topology +1404.5240 Representation Theory +1404.5646 Materials Science +1405.5820 Operator Algebras +1406.5394 Statistical Mechanics +1407.4295 Probability +1407.7534 Phenomenology +1408.5238 Group Theory +1408.6699 Phenomenology +1410.2427 Fluid Dynamics +1410.4708 Dynamical Systems +1410.7589 +1410.8512 Group Theory +1411.3618 Mathematical Finance +1412.5587 Phenomenology +1412.5622 Discrete Mathematics +1501.00696 Numerical Analysis +1501.01346 Number Theory +1501.02137 +1501.04742 Algebraic Geometry +1501.06960 +1502.04884 Fluid Dynamics +1503.00301 Databases +1503.02712 Analysis of PDEs +1503.02735 Distributed, Parallel, and Cluster Computing +1503.05990 Probability +1503.06932 Superconductivity +1503.07617 Dynamical Systems +1503.07689 Methodology +1504.00337 Computational Complexity +1504.05318 Information Theory +1504.05732 Dynamical Systems +1504.06714 Analysis of PDEs +1504.07851 Data Structures and Algorithms +1505.01364 Group Theory +1505.04118 +1505.04863 Mesoscale and Nanoscale Physics +1505.05558 Dynamical Systems +1506.01889 +1506.08107 Combinatorics +1507.00324 Differential Geometry +1507.01766 +1507.08181 Combinatorics +1507.08211 Metric Geometry +1508.00277 Computational Physics +1508.03711 +1508.04377 Phenomenology +1508.05540 Number Theory +1509.01706 Information Theory +1509.03851 Optics +1509.04584 Representation Theory +1509.05145 Theory +1509.07356 Symplectic Geometry +1509.08878 Theory +1510.03059 Social and Information Networks +1510.07080 Soft Condensed Matter +1511.01441 Number Theory +1511.06272 Numerical Analysis +1511.06809 Probability +1511.07613 Statistics Theory +1511.07832 Combinatorics +1511.08338 Dynamical Systems +1511.08881 +1511.09225 Quantum Gases +1512.00970 General Mathematics +1512.03055 Theory +1512.03507 Optics +1512.04058 +1512.05259 Adaptation and Self-Organizing Systems +1512.05519 Computational Physics +1512.05818 Superconductivity +1512.05941 Numerical Analysis +1512.06308 Number Theory +1512.06347 Analysis of PDEs +1512.06646 Theory +1512.07868 Probability +1512.09230 Superconductivity +1601.00137 Numerical Analysis +1601.01047 Phenomenology +1601.02344 Optics +1601.03581 Representation Theory +1601.03584 Statistical Mechanics +1601.05361 Fluid Dynamics +1601.06437 Information Theory +1601.08093 Mesoscale and Nanoscale Physics +1602.00180 Statistics Theory +1602.01224 Graphics +1602.01241 Numerical Analysis +1602.01650 Methodology +1602.04610 +1602.04636 Theory +1602.07279 Strongly Correlated Electrons +1602.07317 Strongly Correlated Electrons +1603.01636 High Energy Astrophysical Phenomena +1603.01881 +1603.02580 Computational Complexity +1603.03196 Numerical Analysis +1603.05167 Analysis of PDEs +1603.05463 Dynamical Systems +1603.05516 Classical Physics +1603.05518 Operator Algebras +1603.08781 Mesoscale and Nanoscale Physics +1604.02599 Analysis of PDEs +1604.04084 Group Theory +1604.05893 +1604.06131 Biological Physics +1604.07720 Mesoscale and Nanoscale Physics +1605.01795 Group Theory +1605.01964 Optimization and Control +1605.02403 Cosmology and Nongalactic Astrophysics +1605.02782 Mesoscale and Nanoscale Physics +1605.02803 Theory +1605.02820 Probability +1605.04395 Strongly Correlated Electrons +1605.04964 Quantum Gases +1605.05940 Astrophysics of Galaxies +1605.06089 Fluid Dynamics +1605.06161 Earth and Planetary Astrophysics +1605.06347 Strongly Correlated Electrons +1605.07209 Mesoscale and Nanoscale Physics +1605.07801 Analysis of PDEs +1605.08059 Phenomenology +1606.00229 Methodology +1606.01044 +1606.01574 Statistical Mechanics +1606.01915 Phenomenology +1606.02560 Artificial Intelligence +1606.05436 Optics +1606.06233 Operator Algebras +1606.06525 +1606.06864 Computation and Language +1606.07216 Number Theory +1606.08117 Learning +1606.09032 Phenomenology +1606.09493 Emerging Technologies +1607.02219 Probability +1607.02686 Materials Science +1607.02759 +1607.03383 +1607.04126 Solar and Stellar Astrophysics +1607.04213 Quantum Gases +1607.04428 Networking and Internet Architecture +1607.05060 Superconductivity +1607.05530 Neurons and Cognition +1607.06161 Algebraic Geometry +1607.06505 Other Condensed Matter +1607.07874 High Energy Astrophysical Phenomena +1608.00035 Chemical Physics +1608.01139 Mesoscale and Nanoscale Physics +1608.01320 Strongly Correlated Electrons +1608.01409 Computer Vision and Pattern Recognition +1608.03378 Materials Science +1608.04316 Superconductivity +1608.04630 Materials Science +1608.05180 Computer Vision and Pattern Recognition +1608.06669 Computer Vision and Pattern Recognition +1608.07433 Computer Vision and Pattern Recognition +1608.08287 Quantum Algebra +1608.08649 Functional Analysis +1609.00227 General Physics +1609.00335 Materials Science +1609.00626 Computation and Language +1609.00822 +1609.00851 Statistical Mechanics +1609.00928 Strongly Correlated Electrons +1609.00998 Materials Science +1609.01177 Symplectic Geometry +1609.01974 Differential Geometry +1609.02065 Statistical Mechanics +1609.03219 Machine Learning +1609.03650 +1609.03798 Probability +1609.03869 Optics +1609.04002 Number Theory +1609.04047 Mesoscale and Nanoscale Physics +1609.04119 +1609.04125 Spectral Theory +1609.04450 Mesoscale and Nanoscale Physics +1609.04756 Solar and Stellar Astrophysics +1609.04809 Mathematical Software +1609.04810 Computational Engineering, Finance, and Science +1609.04818 Disordered Systems and Neural Networks +1609.04821 Phenomenology +1609.04822 Astrophysics of Galaxies +1609.04826 High Energy Astrophysical Phenomena +1609.04829 High Energy Astrophysical Phenomena +1609.04833 Phenomenology +1609.04835 Phenomenology +1609.04837 Soft Condensed Matter +1609.04839 Materials Science +1609.04842 Representation Theory +1609.04844 Networking and Internet Architecture +1609.04846 Neural and Evolutionary Computing +1609.04847 Optics +1609.04848 Mesoscale and Nanoscale Physics +1609.04850 Optics +1609.04852 General Mathematics +1609.04853 +1609.04854 Group Theory +1609.04856 Populations and Evolution +1609.04857 Geometric Topology +1609.04859 Social and Information Networks +1609.04860 Instrumentation and Detectors +1609.04862 Methodology +1609.04865 Combinatorics +1609.04869 Numerical Analysis +1609.04874 Group Theory +1609.04875 Algebraic Geometry +1609.04879 Artificial Intelligence +1609.04881 Popular Physics +1609.04882 Solar and Stellar Astrophysics +1609.04887 Algebraic Geometry +1609.04889 Classical Analysis and ODEs +1609.04890 Trading and Market Microstructure +1609.04891 Information Theory +1609.04895 Algebraic Geometry +1609.04898 Algebraic Geometry +1609.04899 Rings and Algebras +1609.04900 Differential Geometry +1609.04902 Genomics +1609.04903 Social and Information Networks +1609.04905 Optimization and Control +1609.04906 Networking and Internet Architecture +1609.04907 Mathematical Finance +1609.04912 Analysis of PDEs +1609.04913 Hardware Architecture +1609.04915 Solar and Stellar Astrophysics +1609.04918 Computational Complexity +1609.04919 Emerging Technologies +1609.04921 Emerging Technologies +1609.04924 Number Theory +1609.04925 Plasma Physics +1609.04926 Molecular Networks +1609.04928 Differential Geometry +1609.04929 Number Theory +1609.04930 Optics +1609.04932 Mesoscale and Nanoscale Physics +1609.04933 Complex Variables +1609.04934 Plasma Physics +1609.04935 Plasma Physics +1609.04936 Plasma Physics +1609.04938 Computer Vision and Pattern Recognition +1609.04939 Differential Geometry +1609.04942 +1609.04946 Robotics +1609.04947 Robotics +1609.04949 Classical Analysis and ODEs +1609.04951 Data Structures and Algorithms +1609.04952 Optimization and Control +1609.04953 +1609.04955 Cryptography and Security +1609.04960 Computer Science and Game Theory +1609.04961 Statistics Theory +1609.04962 Combinatorics +1609.04965 +1609.04966 Phenomenology +1609.04967 Methodology +1609.04969 Classical Physics +1609.04972 Materials Science +1609.04975 Combinatorics +1609.04976 Materials Science +1609.04977 Optimization and Control +1609.04982 Optimization and Control +1609.04985 Methodology +1609.04987 Geometric Topology +1609.04992 Theory +1609.04993 Atomic Physics +1609.04996 Materials Science +1609.04998 Phenomenology +1609.04999 Chemical Physics +1609.05000 Number Theory +1609.05001 Computer Vision and Pattern Recognition +1609.05002 Distributed, Parallel, and Cluster Computing +1609.05005 Algebraic Geometry +1609.05008 Soft Condensed Matter +1609.05009 Information Theory +1609.05010 Mesoscale and Nanoscale Physics +1609.05012 Data Analysis, Statistics and Probability +1609.05013 Group Theory +1609.05018 +1609.05020 Databases +1609.05025 Geometric Topology +1609.05027 Soft Condensed Matter +1609.05033 +1609.05035 Optimization and Control +1609.05041 +1609.05043 Optimization and Control +1609.05044 Geometric Topology +1609.05049 Analysis of PDEs +1609.05051 Populations and Evolution +1609.05054 Optimization and Control +1609.05055 General Finance +1609.05056 General Finance +1609.05057 Machine Learning +1609.05059 Combinatorics +1609.05063 Computers and Society +1609.05064 Optimization and Control +1609.05066 Optics +1609.05069 +1609.05072 Phenomenology +1609.05073 Chemical Physics +1609.05074 Differential Geometry +1609.05076 Chemical Physics +1609.05078 Information Theory +1609.05080 Information Theory +1609.05081 Social and Information Networks +1609.05082 Logic +1609.05083 Analysis of PDEs +1609.05084 Computer Science and Game Theory +1609.05086 Operator Algebras +1609.05087 Distributed, Parallel, and Cluster Computing +1609.05091 Algebraic Geometry +1609.05093 Theory +1609.05094 Geometric Topology +1609.05096 Databases +1609.05097 Numerical Analysis +1609.05098 Atmospheric and Oceanic Physics +1609.05099 Fluid Dynamics +1609.05100 +1609.05101 Numerical Analysis +1609.05102 +1609.05105 Phenomenology +1609.05107 Numerical Analysis +1609.05109 Fluid Dynamics +1609.05111 Information Theory +1609.05112 Computer Vision and Pattern Recognition +1609.05113 Databases +1609.05115 Computer Vision and Pattern Recognition +1609.05116 Information Theory +1609.05117 Algebraic Geometry +1609.05118 Computer Vision and Pattern Recognition +1609.05123 Learning +1609.05125 Exactly Solvable and Integrable Systems +1609.05126 Complex Variables +1609.05127 Number Theory +1609.05128 Optimization and Control +1609.05129 +1609.05131 Tissues and Organs +1609.05133 Algebraic Geometry +1609.05136 Computer Science and Game Theory +1609.05141 Emerging Technologies +1609.05142 Spectral Theory +1609.05143 Computer Vision and Pattern Recognition +1609.05144 Phenomenology +1609.05145 Lattice +1609.05147 Instrumentation and Methods for Astrophysics +1609.05150 General Topology +1609.05152 Artificial Intelligence +1609.05154 Group Theory +1609.05155 Materials Science +1609.05157 Cosmology and Nongalactic Astrophysics +1609.05159 Plasma Physics +1609.05160 Information Theory +1609.05162 Robotics +1609.05167 Optimization and Control +1609.05168 Optics +1609.05170 Artificial Intelligence +1609.05172 Chemical Physics +1609.05173 Networking and Internet Architecture +1609.05174 Probability +1609.05177 Trading and Market Microstructure +1609.05179 Networking and Internet Architecture +1609.05181 Information Theory +1609.05183 +1609.05184 Functional Analysis +1609.05185 Classical Analysis and ODEs +1609.05186 Methodology +1609.05187 Mesoscale and Nanoscale Physics +1609.05188 Methodology +1609.05189 Algebraic Geometry +1609.05190 Phenomenology +1609.05191 Learning +1609.05194 Combinatorics +1609.05195 Data Analysis, Statistics and Probability +1609.05196 Rings and Algebras +1609.05198 Networking and Internet Architecture +1609.05199 Networking and Internet Architecture +1609.05200 Economics +0806.4135 Group Theory +0812.1629 Group Theory +0903.2817 Number Theory +0904.0474 Number Theory +0909.1626 Discrete Mathematics +1011.5470 Distributed, Parallel, and Cluster Computing +1102.3882 Cryptography and Security +1102.4186 Commutative Algebra +1105.0259 Cryptography and Security +1106.2720 Commutative Algebra +1204.3869 Combinatorics +1206.0668 Phenomenology +1207.1492 Cosmology and Nongalactic Astrophysics +1208.1627 Commutative Algebra +1208.1684 Superconductivity +1208.4219 Dynamical Systems +1209.1880 Combinatorics +1212.5802 Commutative Algebra +1303.4904 Dynamical Systems +1304.0527 K-Theory and Homology +1304.0571 Number Theory +1305.6098 K-Theory and Homology +1306.4849 Information Theory +1307.4041 Algebraic Geometry +1309.2414 Number Theory +1310.3786 Combinatorics +1310.5335 +1311.0686 Computation +1311.1652 Analysis of PDEs +1311.4359 Algebraic Geometry +1311.6321 +1312.3829 Algebraic Topology +1401.5991 Fluid Dynamics +1402.0197 Adaptation and Self-Organizing Systems +1402.2827 Computers and Society +1402.3829 Commutative Algebra +1403.2334 Algebraic Topology +1404.0985 Analysis of PDEs +1404.2458 Optimization and Control +1404.5007 Information Theory +1404.5710 Group Theory +1406.4433 Optimization and Control +1406.6067 Combinatorics +1407.0990 Quantum Gases +1408.0191 Algebraic Geometry +1408.2761 Populations and Evolution +1408.4637 Combinatorics +1408.6201 General Physics +1409.0215 Dynamical Systems +1409.2818 Differential Geometry +1409.5583 Information Theory +1409.7475 Adaptation and Self-Organizing Systems +1410.2170 Algebraic Topology +1410.3477 Astrophysics of Galaxies +1410.5940 Functional Analysis +1411.2853 Probability +1411.4024 Discrete Mathematics +1411.4486 +1411.5661 Discrete Mathematics +1412.1394 Methodology +1412.3504 Software Engineering +1412.4234 Cryptography and Security +1412.4706 Analysis of PDEs +1412.6044 Mesoscale and Nanoscale Physics +1412.6453 Algebraic Geometry +1412.7901 Strongly Correlated Electrons +1501.00234 +1501.06046 Commutative Algebra +1501.06999 Combinatorics +1502.02857 Phenomenology +1503.04108 Information Theory +1503.07724 Strongly Correlated Electrons +1503.07991 Emerging Technologies +1503.08060 Computation +1504.00758 Instrumentation and Detectors +1504.02476 Strongly Correlated Electrons +1504.03037 Logic +1504.04158 Strongly Correlated Electrons +1504.04197 Superconductivity +1504.04947 Materials Science +1504.08122 Combinatorics +1505.02004 Functional Analysis +1505.02041 Phenomenology +1505.03587 Pricing of Securities +1505.07984 Fluid Dynamics +1505.08087 Soft Condensed Matter +1506.00009 Complex Variables +1506.01635 Number Theory +1506.03259 Strongly Correlated Electrons +1506.04952 History and Philosophy of Physics +1506.06796 Adaptation and Self-Organizing Systems +1506.06857 Computers and Society +1506.07451 Differential Geometry +1506.07630 Number Theory +1506.08024 Phenomenology +1507.01234 Information Theory +1507.03265 +1507.05206 Cryptography and Security +1507.05617 Cosmology and Nongalactic Astrophysics +1507.06688 Combinatorics +1507.07139 Applications +1507.08554 Probability +1507.08580 High Energy Astrophysical Phenomena +1508.00811 Statistical Mechanics +1508.01050 Computation +1508.02851 Discrete Mathematics +1508.05239 Differential Geometry +1508.05328 Multiagent Systems +1508.06817 Group Theory +1508.06946 Mesoscale and Nanoscale Physics +1509.00349 Computation +1509.02358 Experiment +1509.02455 Symplectic Geometry +1509.05511 Representation Theory +1509.06164 Materials Science +1509.06368 Theory +1509.06883 Number Theory +1509.08256 Materials Science +1510.00318 Rings and Algebras +1510.00717 Analysis of PDEs +1510.01444 Learning +1510.01710 Analysis of PDEs +1510.02770 Differential Geometry +1510.03138 +1510.03619 +1510.03783 Materials Science +1510.04036 Combinatorics +1510.05365 +1510.05937 Sound +1510.05940 Sound +1510.06340 +1510.07044 Theory +1510.07082 Combinatorics +1510.07351 Mesoscale and Nanoscale Physics +1510.07700 Geometric Topology +1510.07873 Systems and Control +1511.00529 Adaptation and Self-Organizing Systems +1511.00701 +1511.01707 Computation +1511.01982 Mesoscale and Nanoscale Physics +1511.06909 Learning +1511.06974 Commutative Algebra +1511.07660 Phenomenology +1511.08025 Theory +1511.08819 Statistical Mechanics +1511.08942 Combinatorics +1512.00357 Algebraic Topology +1512.01235 Astrophysics of Galaxies +1512.01632 Dynamical Systems +1512.02063 Machine Learning +1512.02672 Experiment +1512.04238 Disordered Systems and Neural Networks +1512.05792 +1512.07018 Theory +1512.08993 +1601.00248 Computation and Language +1601.00274 Complex Variables +1601.00579 Commutative Algebra +1601.00641 Cosmology and Nongalactic Astrophysics +1601.01081 Mesoscale and Nanoscale Physics +1601.01200 Strongly Correlated Electrons +1601.02493 Strongly Correlated Electrons +1601.07489 Strongly Correlated Electrons +1601.07505 Computer Science and Game Theory +1601.07760 Combinatorics +1601.08232 Soft Condensed Matter +1602.01117 Metric Geometry +1602.02225 Medical Physics +1602.02896 +1602.02910 Mesoscale and Nanoscale Physics +1602.03206 Graphics +1602.04155 +1602.04541 +1602.04628 Combinatorics +1602.04932 +1602.05569 Strongly Correlated Electrons +1602.06807 Cryptography and Security +1602.07891 Other Computer Science +1602.08771 Learning +1602.08809 Software Engineering +1602.08991 Mathematical Software +1603.00399 Combinatorics +1603.01723 +1603.01816 Optics +1603.02063 Data Structures and Algorithms +1603.02862 +1603.03107 Mesoscale and Nanoscale Physics +1603.03400 +1603.04206 Quantum Gases +1603.04357 Mesoscale and Nanoscale Physics +1603.04945 Physics and Society +1603.05082 +1603.05107 Differential Geometry +1603.05392 Superconductivity +1603.05595 Phenomenology +1603.05866 Instrumentation and Methods for Astrophysics +1603.06104 Dynamical Systems +1603.06324 Robotics +1603.06604 High Energy Astrophysical Phenomena +1603.06816 Instrumentation and Detectors +1603.08275 Functional Analysis +1603.08516 Analysis of PDEs +1603.08538 Neural and Evolutionary Computing +1603.09016 Computer Vision and Pattern Recognition +1603.09106 +1603.09334 Logic +1603.09337 Distributed, Parallel, and Cluster Computing +1603.09344 Earth and Planetary Astrophysics +1603.09357 Solar and Stellar Astrophysics +1603.09360 +1603.09362 +1603.09363 Dynamical Systems +1603.09365 Combinatorics +1603.09366 Phenomenology +1603.09370 Solar and Stellar Astrophysics +1603.09371 Theory +1603.09374 Instrumentation and Methods for Astrophysics +1603.09376 Information Theory +1603.09378 Fluid Dynamics +1603.09379 Representation Theory +1603.09380 Geophysics +1603.09381 Learning +1603.09384 Combinatorics +1603.09387 Quantum Algebra +1603.09389 Algebraic Geometry +1603.09390 Computational Complexity +1603.09395 Optics +1603.09398 Analysis of PDEs +1603.09401 Commutative Algebra +1603.09404 Algebraic Geometry +1603.09405 Computation and Language +1603.09407 Algebraic Geometry +1603.09409 +1603.09411 Algebraic Geometry +1603.09413 Algebraic Geometry +1603.09415 Populations and Evolution +1603.09416 Instrumentation and Methods for Astrophysics +1603.09418 Optimization and Control +1603.09420 Neural and Evolutionary Computing +1603.09421 +1603.09423 Computer Vision and Pattern Recognition +1603.09425 +1603.09428 Earth and Planetary Astrophysics +1603.09429 Artificial Intelligence +1603.09434 Information Retrieval +1603.09435 Differential Geometry +1603.09436 Social and Information Networks +1603.09438 Instrumentation and Methods for Astrophysics +1603.09441 Learning +1603.09445 Combinatorics +1603.09448 Combinatorics +1603.09449 Social and Information Networks +1603.09453 Other Statistics +1603.09454 Computer Vision and Pattern Recognition +1603.09457 Computation and Language +1603.09462 Computer Vision and Pattern Recognition +1603.09464 Analysis of PDEs +1603.09469 Computer Vision and Pattern Recognition +1603.09470 +1603.09471 Analysis of PDEs +1603.09472 Probability +1603.09476 Analysis of PDEs +1603.09478 Strongly Correlated Electrons +1603.09481 Classical Analysis and ODEs +1603.09482 Rings and Algebras +1603.09484 Other Condensed Matter +1603.09486 Probability +1603.09487 Combinatorics +1603.09488 Logic in Computer Science +1603.09492 Optimization and Control +1603.09494 +1603.09495 Artificial Intelligence +1603.09496 Popular Physics +1603.09499 +1603.09500 Optics +1603.09502 Artificial Intelligence +1603.09503 Representation Theory +1603.09506 Earth and Planetary Astrophysics +1603.09510 General Topology +1603.09511 Artificial Intelligence +1603.09513 Classical Analysis and ODEs +1603.09518 Combinatorics +1603.09519 Optimization and Control +1603.09520 Human-Computer Interaction +1603.09522 Information Retrieval +1603.09524 Cryptography and Security +1603.09526 Cryptography and Security +1603.09531 Computational Complexity +1603.09533 Human-Computer Interaction +1603.09537 Networking and Internet Architecture +1603.09545 Artificial Intelligence +1603.09550 Phenomenology +1603.09556 Number Theory +1603.09557 Combinatorics +1603.09558 Computer Vision and Pattern Recognition +1603.09561 Discrete Mathematics +1603.09563 +1603.09564 High Energy Astrophysical Phenomena +1603.09565 Information Theory +1603.09568 Algebraic Geometry +1603.09570 Discrete Mathematics +1603.09571 Quantum Gases +1603.09573 High Energy Astrophysical Phenomena +1603.09574 Information Theory +1603.09576 Strongly Correlated Electrons +1603.09577 Computational Physics +1603.09578 Networking and Internet Architecture +1603.09579 Functional Analysis +1603.09580 Mesoscale and Nanoscale Physics +1603.09581 Analysis of PDEs +1603.09583 Statistical Mechanics +1603.09584 Machine Learning +1603.09585 Classical Analysis and ODEs +1603.09590 Popular Physics +1603.09595 Optimization and Control +1603.09596 Computational Geometry +1603.09598 Computers and Society +1603.09599 Computer Vision and Pattern Recognition +1603.09602 Chaotic Dynamics +1603.09608 Materials Science +1603.09614 Dynamical Systems +1603.09615 Chaotic Dynamics +1603.09618 Materials Science +1603.09622 Classical Analysis and ODEs +1603.09624 Materials Science +1603.09626 +1603.09636 Group Theory +1603.09640 +1603.09641 Representation Theory +1603.09642 Distributed, Parallel, and Cluster Computing +1603.09645 Combinatorics +1603.09646 Number Theory +1603.09647 Analysis of PDEs +1603.09649 Optimization and Control +1603.09651 General Mathematics +1603.09652 Analysis of PDEs +1603.09657 +1603.09658 Physics and Society +1603.09659 Chaotic Dynamics +1603.09661 Geometric Topology +1603.09666 Probability +1603.09667 +1603.09668 +1603.09671 +1603.09673 Representation Theory +1603.09674 +1603.09675 +1603.09679 Distributed, Parallel, and Cluster Computing +1603.09691 Phenomenology +1603.09695 Rings and Algebras +1603.09698 Logic +1603.09704 Chaotic Dynamics +1603.09705 Algebraic Geometry +1603.09709 Rings and Algebras +1603.09712 Computer Vision and Pattern Recognition +1603.09713 Combinatorics +1603.09715 General Topology +1603.09716 Applications +1603.09720 Strongly Correlated Electrons +1603.09723 Popular Physics +1603.09726 Dynamical Systems +1603.09727 Computation and Language +1603.09728 Artificial Intelligence +1603.09733 General Physics +1603.09736 Spectral Theory +1603.09738 Learning +1603.09739 Learning +1603.09744 Combinatorics +1603.09746 Astrophysics of Galaxies +cond-mat/9508063 +math/0510166 Group Theory +0912.1872 Optics +1005.3656 Solar and Stellar Astrophysics +1104.1409 Algebraic Geometry +1107.4685 +1108.1245 Representation Theory +1111.3304 Computational Engineering, Finance, and Science +1202.6408 Operator Algebras +1204.4429 Classical Analysis and ODEs +1208.0267 High Energy Astrophysical Phenomena +1209.6574 Classical Analysis and ODEs +1211.0745 Probability +1301.5378 Geometric Topology +1302.0879 Solar and Stellar Astrophysics +1303.1062 Operator Algebras +1303.3375 Solar and Stellar Astrophysics +1303.3766 Group Theory +1304.6459 Social and Information Networks +1306.3598 Classical Analysis and ODEs +1307.5313 Differential Geometry +1307.5801 Operator Algebras +1308.0613 Materials Science +1310.4616 Analysis of PDEs +1311.0395 Probability +1401.6642 Information Theory +1404.5504 +1405.1465 Geometric Topology +1405.2296 Cosmology and Nongalactic Astrophysics +1405.3066 +1406.1602 +1406.5906 Group Theory +1407.0657 +1407.6701 Group Theory +1407.7612 Quantitative Methods +1409.6701 Combinatorics +1409.8345 +1410.0262 +1410.0435 Representation Theory +1411.3873 Probability +1411.7417 Group Theory +1412.2488 Symplectic Geometry +1412.5079 +1412.7676 Metric Geometry +1501.02193 Probability +1501.02408 Combinatorics +1501.04449 Astrophysics of Galaxies +1501.07332 Analysis of PDEs +1501.07410 Number Theory +1502.03346 Cryptography and Security +1502.06737 Numerical Analysis +1502.07904 Rings and Algebras +1503.00238 +1503.01233 Tissues and Organs +1503.02008 +1503.02330 Computer Vision and Pattern Recognition +1503.05941 Complex Variables +1503.08117 Quantum Algebra +1504.01541 Instrumentation and Methods for Astrophysics +1504.01891 Databases +1504.07183 Group Theory +1505.00550 Phenomenology +1505.02702 Materials Science +1505.03325 Probability +1505.04634 +1505.06365 +1505.06852 Analysis of PDEs +1506.00385 Numerical Analysis +1506.00829 Methodology +1506.01513 Social and Information Networks +1506.01652 Computational Complexity +1506.01746 Complex Variables +1506.03361 Combinatorics +1506.09076 +1507.05338 Combinatorics +1508.01097 Computational Geometry +1508.01235 Machine Learning +1508.05048 Operator Algebras +1508.05414 Applications +1508.06346 Systems and Control +1509.02192 High Energy Astrophysical Phenomena +1509.02787 Phenomenology +1509.04415 Numerical Analysis +1509.05896 Computational Complexity +1509.06326 Atmospheric and Oceanic Physics +1509.06617 Geometric Topology +1509.06693 Robotics +1509.07115 Numerical Analysis +1509.08998 Differential Geometry +1510.00468 Operator Algebras +1510.00603 +1510.00853 Dynamical Systems +1510.02284 +1510.04691 Solar and Stellar Astrophysics +1510.06453 Number Theory +1510.06682 Numerical Analysis +1510.07512 Chemical Physics +1510.07551 Theory +1510.09087 +1511.00456 Accelerator Physics +1511.01475 Analysis of PDEs +1511.01727 Mesoscale and Nanoscale Physics +1511.01871 Materials Science +1511.03488 Systems and Control +1511.04466 Data Structures and Algorithms +1511.06848 Optics +1511.07448 Cosmology and Nongalactic Astrophysics +1511.07482 Computation +1511.08579 Phenomenology +1511.08613 Strongly Correlated Electrons +1511.08777 Combinatorics +1511.09346 +1512.00552 Solar and Stellar Astrophysics +1512.01120 Commutative Algebra +1512.01211 Differential Geometry +1512.02049 Dynamical Systems +1512.03633 Chemical Physics +1512.03755 Materials Science +1512.04344 Soft Condensed Matter +1512.04850 Phenomenology +1512.07496 Analysis of PDEs +1512.07644 Tissues and Organs +1512.08567 Soft Condensed Matter +1512.08644 Plasma Physics +1601.00970 Phenomenology +1601.01189 Statistical Mechanics +1601.04879 Applications +1601.08246 Instrumentation and Methods for Astrophysics +1602.00176 Number Theory +1602.00212 Computer Vision and Pattern Recognition +1602.00710 Symbolic Computation +1602.01807 Number Theory +1602.02038 Theory +1602.03160 Experiment +1602.03885 Computer Science and Game Theory +1602.04596 Astrophysics of Galaxies +1602.05627 Soft Condensed Matter +1602.05797 Superconductivity +1602.06541 Computer Vision and Pattern Recognition +1602.06581 Experiment +1602.07178 Theory +1602.07217 Information Retrieval +1602.07555 History and Overview +1602.07927 +1602.08606 Theory +1603.00647 Group Theory +1603.00716 Lattice +1603.01249 Computer Vision and Pattern Recognition +1603.01878 Complex Variables +1603.02557 Theory +1603.03425 Theory +1603.03779 Phenomenology +1603.05176 Plasma Physics +1603.06850 Formal Languages and Automata Theory +1603.07946 Cosmology and Nongalactic Astrophysics +1603.08222 Soft Condensed Matter +1603.09184 Analysis of PDEs +1604.00754 Representation Theory +1604.00917 Earth and Planetary Astrophysics +1604.02318 Methodology +1604.03963 Dynamical Systems +1604.04660 Artificial Intelligence +1604.05164 General Physics +1605.00151 Mesoscale and Nanoscale Physics +1605.00394 +1605.01539 Data Structures and Algorithms +1605.01541 +1605.01625 Instrumentation and Detectors +1605.02686 Computer Vision and Pattern Recognition +1605.02713 Combinatorics +1605.03060 Neurons and Cognition +1605.03189 Superconductivity +1605.03210 Dynamical Systems +1605.03249 Materials Science +1605.03403 +1605.03416 Artificial Intelligence +1605.03445 Probability +1605.03568 Operator Algebras +1605.03569 Discrete Mathematics +1605.03571 Solar and Stellar Astrophysics +1605.03572 Astrophysics of Galaxies +1605.03578 Solar and Stellar Astrophysics +1605.03592 Materials Science +1605.03593 Digital Libraries +1605.03594 Materials Science +1605.03596 Cryptography and Security +1605.03603 Operator Algebras +1605.03609 Phenomenology +1605.03612 Combinatorics +1605.03614 Analysis of PDEs +1605.03615 Physics and Society +1605.03622 Distributed, Parallel, and Cluster Computing +1605.03624 Computer Vision and Pattern Recognition +1605.03634 Solar and Stellar Astrophysics +1605.03635 Information Theory +1605.03636 Programming Languages +1605.03638 Number Theory +1605.03643 Data Structures and Algorithms +1605.03644 Social and Information Networks +1605.03647 Optimization and Control +1605.03652 Systems and Control +1605.03654 Combinatorics +1605.03655 Atomic Physics +1605.03657 +1605.03658 Experiment +1605.03662 Statistics Theory +1605.03663 Computer Vision and Pattern Recognition +1605.03664 Computation and Language +1605.03666 Optimization and Control +1605.03667 Optimization and Control +1605.03670 Optimization and Control +1605.03674 +1605.03678 Networking and Internet Architecture +1605.03680 Materials Science +1605.03682 Group Theory +1605.03687 Mesoscale and Nanoscale Physics +1605.03688 Computer Vision and Pattern Recognition +1605.03689 Robotics +1605.03690 Solar and Stellar Astrophysics +1605.03695 Number Theory +1605.03697 Methodology +1605.03698 Analysis of PDEs +1605.03700 Optics +1605.03702 Applications +1605.03704 Rings and Algebras +1605.03705 Computer Vision and Pattern Recognition +1605.03706 Analysis of PDEs +1605.03707 Statistics Theory +1605.03708 Functional Analysis +1605.03711 Mesoscale and Nanoscale Physics +1605.03713 Mesoscale and Nanoscale Physics +1605.03715 Mesoscale and Nanoscale Physics +1605.03716 Analysis of PDEs +1605.03717 Algebraic Geometry +1605.03719 Distributed, Parallel, and Cluster Computing +1605.03720 Computer Vision and Pattern Recognition +1605.03722 Classical Analysis and ODEs +1605.03723 Optics +1605.03724 Sound +1605.03726 Quantitative Methods +1605.03727 +1605.03729 Solar and Stellar Astrophysics +1605.03730 Computer Vision and Pattern Recognition +1605.03735 Geometric Topology +1605.03737 Probability +1605.03738 Optimization and Control +1605.03741 Physics and Society +1605.03744 Representation Theory +1605.03746 Computer Vision and Pattern Recognition +1605.03747 Optics +1605.03751 Statistics Theory +1605.03754 Multimedia +1605.03755 Information Theory +1605.03756 Number Theory +1605.03760 Quantum Algebra +1605.03761 Information Theory +1605.03762 Fluid Dynamics +1605.03764 Neural and Evolutionary Computing +1605.03768 Information Theory +1605.03769 Functional Analysis +1605.03770 Hardware Architecture +1605.03771 Hardware Architecture +1605.03772 Cryptography and Security +1605.03773 Soft Condensed Matter +1605.03776 Analysis of PDEs +1605.03779 Information Theory +1605.03783 Software Engineering +1605.03785 Information Theory +1605.03787 Plasma Physics +1605.03790 Theory +1605.03791 Numerical Analysis +1605.03792 Number Theory +1605.03793 Space Physics +1605.03794 Analysis of PDEs +1605.03797 Data Structures and Algorithms +1605.03801 Analysis of PDEs +1605.03802 Materials Science +1605.03803 Fluid Dynamics +1605.03807 Representation Theory +1605.03808 Probability +1605.03811 Computer Science and Game Theory +1605.03813 Computational Physics +1605.03815 Multimedia +1605.03816 Dynamical Systems +1605.03818 Quantum Gases +1605.03819 Statistical Mechanics +1605.03821 Computer Vision and Pattern Recognition +1605.03823 Dynamical Systems +1605.03824 Methodology +1605.03825 Algebraic Geometry +1605.03826 Computer Science and Game Theory +1605.03829 Cosmology and Nongalactic Astrophysics +1605.03830 Numerical Analysis +1605.03832 Computation and Language +1605.03833 Group Theory +1605.03835 Computation and Language +1605.03837 Rings and Algebras +1605.03842 +1605.03843 Learning +1605.03848 Machine Learning +1605.03850 Differential Geometry +1605.03853 Combinatorics +1605.03854 Symplectic Geometry +1605.03860 Phenomenology +1605.03862 Phenomenology +1605.03863 Differential Geometry +1605.03865 Computer Vision and Pattern Recognition +1605.03866 Classical Analysis and ODEs +1605.03868 Methodology +1605.03870 Differential Geometry +1605.03871 Data Structures and Algorithms +1605.03875 Differential Geometry +1605.03881 Numerical Analysis +1605.03883 Software Engineering +1605.03887 +1605.03888 +1605.03891 Numerical Analysis +1605.03892 Distributed, Parallel, and Cluster Computing +1605.03893 +1605.03894 Probability +1605.03896 Probability +1605.03897 Materials Science +1605.03900 Group Theory +1605.03902 Phenomenology +1605.03904 Chemical Physics +1605.03905 Probability +1605.03906 Theory +1605.03907 Combinatorics +1605.03909 Phenomenology +1605.03912 Analysis of PDEs +1605.03918 Combinatorics +1605.03919 Molecular Networks +1605.03921 Materials Science +1605.03923 +1605.03927 Numerical Analysis +1605.03930 Other Computer Science +1605.03932 Cryptography and Security +1605.03933 Data Structures and Algorithms +1605.03935 Analysis of PDEs +1605.03943 Number Theory +1605.03949 Data Structures and Algorithms +1605.03950 Functional Analysis +1605.03956 Computation and Language +math/0609604 Operator Algebras +0905.4851 Soft Condensed Matter +0910.4357 Data Analysis, Statistics and Probability +1105.3739 Algebraic Geometry +1109.4088 Algebraic Geometry +1111.5866 Computation +1208.1487 Other Statistics +1208.1948 Experiment +1209.3427 Algebraic Geometry +1209.3744 Biological Physics +1212.1660 Dynamical Systems +1304.2549 Algebraic Geometry +1311.5017 Dynamical Systems +1402.7271 Phenomenology +1404.3232 Dynamical Systems +1404.4927 Information Theory +1406.0040 Analysis of PDEs +1406.6246 Algebraic Geometry +1407.2983 Number Theory +1408.1391 Information Theory +1409.0607 Data Structures and Algorithms +1409.5880 Instrumentation and Methods for Astrophysics +1411.4828 +1411.5869 Robotics +1411.6213 Theory +1412.6114 Cosmology and Nongalactic Astrophysics +1501.00816 Analysis of PDEs +1501.02007 Risk Management +1501.02585 Analysis of PDEs +1502.00911 Data Structures and Algorithms +1502.04307 Molecular Networks +1502.05687 Materials Science +1503.02481 Materials Science +1503.02841 Plasma Physics +1503.03305 Methodology +1503.04548 Optimization and Control +1503.05259 Optimization and Control +1503.06504 Algebraic Topology +1504.06164 Numerical Analysis +1504.07635 Theory +1505.00641 Learning +1505.02935 +1505.03735 Algebraic Geometry +1505.04536 Numerical Analysis +1505.06182 General Mathematics +1505.06627 Quantum Algebra +1505.06747 Social and Information Networks +1506.02696 Number Theory +1506.04530 Plasma Physics +1506.05591 Probability +1506.06082 Algebraic Geometry +1506.06790 Group Theory +1506.08781 Neural and Evolutionary Computing +1507.00811 Mesoscale and Nanoscale Physics +1507.03167 +1507.04609 +1507.04928 Artificial Intelligence +1507.05296 Geometric Topology +1507.05840 Number Theory +1507.06885 Group Theory +1508.02728 Theory +1508.03337 Data Structures and Algorithms +1508.06155 Numerical Analysis +1509.03641 +1509.03853 Logic in Computer Science +1509.03884 +1509.04711 +1510.01164 +1510.01880 Plasma Physics +1510.02593 Probability +1510.03228 Plasma Physics +1510.04073 Probability +1510.06165 Phenomenology +1510.08758 Differential Geometry +1511.00539 Analysis of PDEs +1511.00715 Data Structures and Algorithms +1511.00859 Theory +1511.01460 Computational Finance +1511.01609 Methodology +1511.04261 Probability +1511.06324 Optimization and Control +1512.02457 +1512.04184 Tissues and Organs +1512.05696 +1512.07392 Probability +1512.08968 Chemical Physics +1601.05982 Information Theory +1601.06147 Instrumentation and Detectors +1601.06334 Probability +1601.07803 Probability +1602.00528 +1602.02372 Algebraic Geometry +1602.02732 High Energy Astrophysical Phenomena +1602.03015 Plasma Physics +1602.03021 Plasma Physics +1602.03197 Differential Geometry +1602.04334 Experiment +1602.06160 Number Theory +1603.01764 +1603.02826 Cryptography and Security +1603.03330 Information Theory +1603.04977 Number Theory +1603.05535 +1603.05749 Probability +1603.06189 +1603.06208 Computer Vision and Pattern Recognition +1603.06560 Learning +1603.07162 Algebraic Topology +1603.07485 Computer Vision and Pattern Recognition +1603.08254 +1603.08416 Plasma Physics +1603.08654 Mesoscale and Nanoscale Physics +1603.09345 Astrophysics of Galaxies +1604.00419 Statistics Theory +1604.01845 Algebraic Geometry +1604.02284 Logic in Computer Science +1604.03346 Learning +1604.03474 Optics +1604.05640 Information Theory +1604.06098 Number Theory +1604.06640 Phenomenology +1604.07066 Metric Geometry +1604.08406 Statistical Mechanics +1604.08790 Plasma Physics +1605.00923 Classical Physics +1605.01035 Phenomenology +1605.01953 Statistical Mechanics +1605.01995 Artificial Intelligence +1605.02256 Methodology +1605.02370 Fluid Dynamics +1605.03579 Strongly Correlated Electrons +1605.03718 Computer Vision and Pattern Recognition +1605.04808 +1605.05548 Analysis of PDEs +1605.05864 +1605.06228 Phenomenology +1605.06515 Phenomenology +1605.06563 Chemical Physics +1605.08555 +1605.09189 +1605.09230 Biological Physics +1605.09304 Neural and Evolutionary Computing +1605.09512 Materials Science +1605.09553 Computer Vision and Pattern Recognition +1605.09658 Machine Learning +1606.00248 Experiment +1606.00403 Biological Physics +1606.00495 Populations and Evolution +1606.00582 Plasma Physics +1606.01193 General Topology +1606.01242 Astrophysics of Galaxies +1606.01626 Pattern Formation and Solitons +1606.02039 Mesoscale and Nanoscale Physics +1606.02319 Social and Information Networks +1606.02662 Optics +1606.04002 Logic +1606.04059 Group Theory +1606.04262 Plasma Physics +1606.04902 Phenomenology +1606.05510 +1606.06442 +1606.08390 Computer Vision and Pattern Recognition +1606.08586 +1606.08666 Soft Condensed Matter +1606.09355 Optics +1607.01179 Methodology +1607.01945 Statistical Mechanics +1607.02561 Databases +1607.02638 Experiment +1607.02969 Neurons and Cognition +1607.03645 Classical Analysis and ODEs +1607.04091 Mathematical Software +1607.04591 +1607.04978 +1607.05550 Group Theory +1607.07568 Instrumentation and Methods for Astrophysics +1607.07885 Theory +1607.08539 Computer Vision and Pattern Recognition +1607.08819 Soft Condensed Matter +1608.00403 Quantum Gases +1608.00524 Statistics Theory +1608.00602 Phenomenology +1608.00716 Mesoscale and Nanoscale Physics +1608.00890 Experiment +1608.01607 Instrumentation and Detectors +1608.02262 Combinatorics +1608.02427 Networking and Internet Architecture +1608.02511 Mesoscale and Nanoscale Physics +1608.04268 Materials Science +1608.04746 Phenomenology +1608.04857 Computer Science and Game Theory +1608.05351 Theory +1608.05413 Cosmology and Nongalactic Astrophysics +1608.07728 +1609.00737 Instrumentation and Methods for Astrophysics +1609.00831 Data Structures and Algorithms +1609.01063 Analysis of PDEs +1609.02391 Networking and Internet Architecture +1609.03233 Astrophysics of Galaxies +1609.03917 +1609.04432 +1609.05019 Optics +1609.05339 Computers and Society +1609.05693 Information Theory +1609.05820 Information Theory +1609.06294 Phenomenology +1609.07632 Functional Analysis +1609.07919 Combinatorics +1609.08567 High Energy Astrophysical Phenomena +1609.08880 Populations and Evolution +1609.09694 Superconductivity +1610.00633 Robotics +1610.02774 Number Theory +1610.04236 Cosmology and Nongalactic Astrophysics +1610.04252 +1610.04707 Logic in Computer Science +1610.06528 Soft Condensed Matter +1610.06898 Algebraic Topology +1610.07490 Dynamical Systems +1610.08852 Mesoscale and Nanoscale Physics +1610.08929 Statistics Theory +1610.09191 Strongly Correlated Electrons +1610.09509 Analysis of PDEs +1611.00226 General Physics +1611.00572 +1611.00680 Phenomenology +1611.02321 Theory +1611.02360 Computation and Language +1611.02823 Distributed, Parallel, and Cluster Computing +1611.03751 Information Retrieval +1611.04007 Analysis of PDEs +1611.04209 Probability +1611.04519 Computer Vision and Pattern Recognition +1611.04804 Theory +1611.05002 Information Theory +1611.05023 Algebraic Geometry +1611.05068 Disordered Systems and Neural Networks +1611.05214 Phenomenology +1611.05303 Materials Science +1611.05553 Optics +1611.06169 +1611.06459 Social and Information Networks +1611.06567 Optics +1611.06903 Plasma Physics +1611.06972 Machine Learning +1611.06991 Representation Theory +1611.06995 Probability +1611.07019 +1611.07073 Computational Geometry +1611.07092 Materials Science +1611.07118 Number Theory +1611.07184 Algebraic Geometry +1611.07202 Solar and Stellar Astrophysics +1611.07255 Logic in Computer Science +1611.07311 Materials Science +1611.07378 Statistics Theory +1611.07512 Representation Theory +1611.07521 Computation +1611.07522 Theory +1611.07523 Strongly Correlated Electrons +1611.07529 +1611.07530 +1611.07531 +1611.07534 Theory +1611.07537 Computation +1611.07538 Materials Science +1611.07540 Optics +1611.07541 Data Structures and Algorithms +1611.07543 Group Theory +1611.07544 Computer Vision and Pattern Recognition +1611.07545 Geometric Topology +1611.07547 +1611.07548 Complex Variables +1611.07549 Software Engineering +1611.07550 Dynamical Systems +1611.07551 Probability +1611.07552 +1611.07553 Quantum Gases +1611.07555 Distributed, Parallel, and Cluster Computing +1611.07556 Performance +1611.07557 Theory +1611.07558 Systems and Control +1611.07559 Computer Vision and Pattern Recognition +1611.07560 Software Engineering +1611.07565 Chaotic Dynamics +1611.07567 Artificial Intelligence +1611.07570 +1611.07571 Computer Vision and Pattern Recognition +1611.07573 Computer Vision and Pattern Recognition +1611.07575 Biological Physics +1611.07576 Complex Variables +1611.07577 Fluid Dynamics +1611.07579 Machine Learning +1611.07581 Functional Analysis +1611.07584 Phenomenology +1611.07586 +1611.07589 +1611.07591 Category Theory +1611.07592 Combinatorics +1611.07594 Strongly Correlated Electrons +1611.07597 Differential Geometry +1611.07599 Data Structures and Algorithms +1611.07600 Fluid Dynamics +1611.07601 Networking and Internet Architecture +1611.07604 Solar and Stellar Astrophysics +1611.07605 Computer Science and Game Theory +1611.07606 Analysis of PDEs +1611.07607 Dynamical Systems +1611.07608 Robotics +1611.07609 Optimization and Control +1611.07610 Programming Languages +1611.07611 Classical Physics +1611.07613 Analysis of PDEs +1611.07614 Earth and Planetary Astrophysics +1611.07618 Numerical Analysis +1611.07619 Computer Science and Game Theory +1611.07620 Programming Languages +1611.07621 Logic in Computer Science +1611.07622 Logic in Computer Science +1611.07623 Programming Languages +1611.07624 Software Engineering +1611.07625 Logic in Computer Science +1611.07626 Logic in Computer Science +1611.07627 Software Engineering +1611.07628 Information Theory +1611.07629 Programming Languages +1611.07630 Information Theory +1611.07631 Materials Science +1611.07633 Cryptography and Security +1611.07634 Machine Learning +1611.07636 Computer Science and Game Theory +1611.07638 +1611.07639 Materials Science +1611.07640 Optimization and Control +1611.07641 Information Theory +1611.07646 Number Theory +1611.07647 Number Theory +1611.07649 Cryptography and Security +1611.07650 Robotics +1611.07654 Optics +1611.07656 Geometric Topology +1611.07657 Statistical Mechanics +1611.07658 Physics and Society +1611.07660 Rings and Algebras +1611.07661 Computer Vision and Pattern Recognition +1611.07662 Algebraic Topology +1611.07663 Machine Learning +1611.07664 Quantum Gases +1611.07665 Statistical Mechanics +1611.07667 Classical Analysis and ODEs +1611.07668 Phenomenology +1611.07669 Earth and Planetary Astrophysics +1611.07670 Phenomenology +1611.07671 Algebraic Geometry +1611.07673 Optics +1611.07674 Superconductivity +1611.07675 Computer Vision and Pattern Recognition +1611.07676 Differential Geometry +1611.07677 Quantitative Methods +1611.07678 +1611.07680 Statistical Mechanics +1611.07682 Optimization and Control +1611.07684 Rings and Algebras +1611.07685 Analysis of PDEs +1611.07687 Chemical Physics +1611.07689 Earth and Planetary Astrophysics +1611.07690 Materials Science +1611.07692 Classical Analysis and ODEs +1611.07696 Classical Analysis and ODEs +1611.07697 +1611.07698 Analysis of PDEs +1611.07699 Exactly Solvable and Integrable Systems +1611.07700 Computer Vision and Pattern Recognition +1611.07701 Data Structures and Algorithms +1611.07702 Information Theory +1611.07706 +1611.07709 Computer Vision and Pattern Recognition +1611.07710 Social and Information Networks +1611.07711 Soft Condensed Matter +1611.07712 Statistics Theory +1611.07713 Number Theory +1611.07715 Computer Vision and Pattern Recognition +1611.07718 Computer Vision and Pattern Recognition +1611.07720 Optics +1611.07721 Soft Condensed Matter +1611.07722 Cryptography and Security +1611.07723 High Energy Astrophysical Phenomena +1611.07724 Computational Complexity +1611.07725 Computer Vision and Pattern Recognition +1611.07726 Logic in Computer Science +1611.07728 Dynamical Systems +1611.07730 +1611.07732 Numerical Analysis +1611.07733 Earth and Planetary Astrophysics +1611.07734 Complex Variables +1611.07735 Algebraic Geometry +1611.07736 Materials Science +1611.07738 Emerging Technologies +1611.07739 Disordered Systems and Neural Networks +1611.07740 +1611.07741 Portfolio Management +1611.07743 Machine Learning +1611.07745 Data Structures and Algorithms +1611.07747 +1611.07748 Optics +1611.07750 Optics +1611.07751 Solar and Stellar Astrophysics +1611.07752 Computer Vision and Pattern Recognition +1611.07753 Logic in Computer Science +1611.07754 Soft Condensed Matter +1611.07755 Phenomenology +1611.07756 Phenomenology +1611.07758 Complex Variables +1611.07759 Computer Vision and Pattern Recognition +1611.07761 Differential Geometry +1611.07762 Lattice +1611.07763 Superconductivity +1611.07765 Soft Condensed Matter +1611.07767 Computer Vision and Pattern Recognition +1611.07770 Phenomenology +1611.07771 Algebraic Geometry +1611.07772 Soft Condensed Matter +1611.07773 Mesoscale and Nanoscale Physics +1611.07774 Numerical Analysis +1611.07776 Biomolecules +1611.07778 Phenomenology +1611.07779 +1611.07781 Computer Vision and Pattern Recognition +1611.07782 Networking and Internet Architecture +1611.07784 High Energy Astrophysical Phenomena +1611.07785 Mesoscale and Nanoscale Physics +1611.07786 Data Structures and Algorithms +1611.07787 Instrumentation and Detectors +1611.07788 Statistical Mechanics +1611.07789 Lattice +1611.07790 Information Theory +1611.07791 Computer Vision and Pattern Recognition +1611.07793 Discrete Mathematics +1611.07794 Solar and Stellar Astrophysics +1611.07795 Exactly Solvable and Integrable Systems +1611.07796 Classical Physics +1611.07797 Physics and Society +1611.07798 +1611.07801 Quantitative Methods +1611.07804 Computation and Language +1611.07806 Algebraic Geometry +1611.07808 Computational Geometry +1611.07809 Probability +1611.07811 Information Theory +1611.07814 +1611.07815 Algebraic Geometry +1611.07816 Numerical Analysis +1611.07818 Phenomenology +1611.07819 Distributed, Parallel, and Cluster Computing +1611.07820 +1611.07821 Strongly Correlated Electrons +1611.07824 Multiagent Systems +1611.07825 Optimization and Control +1611.07826 Metric Geometry +1611.07828 Computer Vision and Pattern Recognition +1611.07829 Information Theory +1611.07831 Neurons and Cognition +1611.07834 Differential Geometry +1611.07836 Plasma Physics +1611.07837 Computer Vision and Pattern Recognition +1611.07838 Instrumentation and Methods for Astrophysics +1611.07839 Physics and Society +1611.07840 Number Theory +1611.07842 Operator Algebras +1611.07844 Phenomenology +1611.07847 Cosmology and Nongalactic Astrophysics +1611.07849 Theory +1611.07850 Machine Learning +1611.07851 +1611.07853 Optimization and Control +1611.07854 +1611.07857 Fluid Dynamics +1611.07858 Rings and Algebras +1611.07860 Chemical Physics +1611.07861 Strongly Correlated Electrons +1611.07862 Operating Systems +1611.07863 +1611.07865 Computer Vision and Pattern Recognition +1611.07866 Data Structures and Algorithms +1611.07867 Information Theory +1611.07870 +1611.07871 +1611.07872 Astrophysics of Galaxies +1611.07873 Computation +1611.07875 Analysis of PDEs +1611.07876 Probability +1611.07877 Algebraic Geometry +1611.07878 +1611.07879 Data Structures and Algorithms +1611.07882 K-Theory and Homology +1611.07887 Optimization and Control +1611.07889 Computer Vision and Pattern Recognition +1611.07891 Optimization and Control +1611.07893 Strongly Correlated Electrons +1611.07894 +1611.07895 +1611.07897 Computation and Language +1611.07898 +1611.07899 Combinatorics +1611.07900 Representation Theory +1611.07905 High Energy Astrophysical Phenomena +1611.07907 Functional Analysis +1611.07908 Representation Theory +1611.07910 Cryptography and Security +1611.07911 Applications +1611.07912 History and Philosophy of Physics +1611.07915 Cosmology and Nongalactic Astrophysics +1611.07916 Geometric Topology +1611.07917 Learning +1611.07922 Combinatorics +1611.07924 +1611.07925 Mesoscale and Nanoscale Physics +1611.07926 Materials Science +1611.07927 Materials Science +1611.07929 Analysis of PDEs +1611.07931 Materials Science +1611.07932 Computer Vision and Pattern Recognition +1611.07933 Discrete Mathematics +1611.07934 Experiment +1611.07936 Geometric Topology +1611.07938 Statistical Mechanics +1611.07940 Astrophysics of Galaxies +1611.07941 Computer Vision and Pattern Recognition +1611.07943 Optimization and Control +1611.07944 Analysis of PDEs +1611.07945 Optimization and Control +1611.07946 Emerging Technologies +1611.07948 Disordered Systems and Neural Networks +1611.07949 +1611.07951 History and Philosophy of Physics +1611.07952 +1611.07953 Algebraic Geometry +1611.07954 Computation and Language +1611.07957 Plasma Physics +1611.07962 Neurons and Cognition +1611.07963 +1611.07964 Strongly Correlated Electrons +1611.07967 Optics +1611.07969 Quantum Algebra +1611.07970 Mesoscale and Nanoscale Physics +1611.07971 Information Theory +cond-mat/9804061 Strongly Correlated Electrons +hep-th/0611170 Theory +physics/0102063 Fluid Dynamics +0710.1525 Data Structures and Algorithms +0909.1866 Computational Geometry +0912.0537 Computational Geometry +1105.0398 Computational Geometry +1109.2368 Algebraic Geometry +1111.2448 Group Theory +1301.1663 Differential Geometry +1302.2931 Differential Geometry +1305.7516 General Physics +1307.5880 General Physics +1307.8007 Information Theory +1308.6824 Computational Geometry +1309.6011 Combinatorics +1309.7064 Algebraic Geometry +1401.7569 Optimization and Control +1403.1149 Group Theory +1404.5684 Numerical Analysis +1406.6766 Statistics Theory +1407.2820 Group Theory +1408.1809 Statistics Theory +1408.3105 Algebraic Geometry +1410.6906 Phenomenology +1411.0359 Artificial Intelligence +1411.3198 K-Theory and Homology +1412.1038 +1502.04809 Optimization and Control +1502.07291 Accelerator Physics +1504.03623 Logic +1504.05194 Solar and Stellar Astrophysics +1505.05855 +1506.00516 Algebraic Geometry +1506.01427 Combinatorics +1506.01821 Other Computer Science +1506.02593 Phenomenology +1506.02623 Combinatorics +1506.08127 Mathematical Finance +1507.01066 Databases +1507.01644 Metric Geometry +1507.06584 Theory +1507.08916 Lattice +1508.02189 Optics +1509.02050 Commutative Algebra +1509.02148 Group Theory +1509.02369 Statistical Mechanics +1509.04853 Computer Vision and Pattern Recognition +1509.05388 Classical Analysis and ODEs +1509.06310 Statistics Theory +1509.06367 Biological Physics +1509.06491 +1509.06694 Complex Variables +1509.06841 Learning +1509.06928 Computation and Language +1509.07263 Analysis of PDEs +1509.08384 Numerical Analysis +1510.03215 +1510.03591 Machine Learning +1510.06989 Computation +1511.00531 +1511.01048 Number Theory +1511.01502 Strongly Correlated Electrons +1511.02083 Classical Physics +1511.06260 Logic +1511.07473 Instrumentation and Detectors +1511.09319 Computer Vision and Pattern Recognition +1512.01765 Atomic Physics +1512.02267 Logic +1512.04029 +1512.06680 Superconductivity +1512.06695 Analysis of PDEs +1512.08162 Operator Algebras +1512.08794 High Energy Astrophysical Phenomena +1601.00180 High Energy Astrophysical Phenomena +1601.04167 Analysis of PDEs +1601.05101 Instrumentation and Methods for Astrophysics +1601.05497 Cosmology and Nongalactic Astrophysics +1601.05906 Representation Theory +1601.06723 +1602.00625 Computational Physics +1602.03126 Plasma Physics +1602.04460 High Energy Astrophysical Phenomena +1602.04534 Disordered Systems and Neural Networks +1602.04951 Artificial Intelligence +1602.05032 Discrete Mathematics +1602.05894 Methodology +1602.06778 Computational Geometry +1603.00450 Materials Science +1603.01066 Applications +1603.02395 Quantum Gases +1603.02478 Logic in Computer Science +1603.04675 Materials Science +1603.05672 +1603.07637 Dynamical Systems +1603.08504 Classical Analysis and ODEs +1603.08862 Functional Analysis +1603.09335 Computer Vision and Pattern Recognition +1604.00717 Dynamical Systems +1604.00725 Chaotic Dynamics +1604.01305 Phenomenology +1604.01381 Computational Physics +1604.01438 Phenomenology +1604.01456 Instrumentation and Methods for Astrophysics +1604.01488 Atomic Physics +1604.01535 Theory +1604.01702 Strongly Correlated Electrons +1604.01714 Materials Science +1604.01912 Statistical Mechanics +1604.02109 Information Theory +1604.02385 Instrumentation and Detectors +1604.02798 Materials Science +1604.04446 +1604.05690 Phenomenology +1604.06437 Theory +1604.06574 Information Theory +1604.08176 +1605.00649 Cosmology and Nongalactic Astrophysics +1605.01776 Robotics +1605.01891 +1605.03800 Superconductivity +1605.05249 General Physics +1605.06482 Statistical Finance +1605.08049 Phenomenology +1605.08447 Optics +1606.01513 Operator Algebras +1606.01544 Materials Science +1606.03389 Materials Science +1606.03398 Computation and Language +1606.03990 Disordered Systems and Neural Networks +1606.04174 Accelerator Physics +1606.04720 Networking and Internet Architecture +1606.05466 Theory +1606.06358 Phenomenology +1606.07596 Dynamical Systems +1606.07867 Number Theory +1607.02537 Computer Vision and Pattern Recognition +1607.03856 Computer Vision and Pattern Recognition +1607.04679 Logic +1607.05304 Biological Physics +1607.07619 Astrophysics of Galaxies +1607.07847 Artificial Intelligence +1607.08042 Materials Science +1607.08052 +1607.08330 Theory +1608.01215 Instrumentation and Detectors +1608.01371 Number Theory +1608.02116 Classical Analysis and ODEs +1608.02341 Learning +1608.02923 Logic +1608.03013 Robotics +1608.03089 +1608.03199 General Mathematics +1608.03214 Operator Algebras +1608.03278 Strongly Correlated Electrons +1608.03281 +1608.03284 Theory +1608.03285 +1608.03287 Learning +1608.03290 +1608.03295 Statistical Mechanics +1608.03297 Combinatorics +1608.03298 General Mathematics +1608.03299 Data Structures and Algorithms +1608.03301 Functional Analysis +1608.03302 Computation +1608.03304 Dynamical Systems +1608.03305 Soft Condensed Matter +1608.03306 Strongly Correlated Electrons +1608.03308 Computer Vision and Pattern Recognition +1608.03310 Statistics Theory +1608.03311 Functional Analysis +1608.03312 Functional Analysis +1608.03315 Number Theory +1608.03317 Functional Analysis +1608.03319 Formal Languages and Automata Theory +1608.03320 Formal Languages and Automata Theory +1608.03321 Programming Languages +1608.03322 Distributed, Parallel, and Cluster Computing +1608.03323 Logic in Computer Science +1608.03324 Software Engineering +1608.03325 Logic in Computer Science +1608.03326 Distributed, Parallel, and Cluster Computing +1608.03327 Programming Languages +1608.03328 Number Theory +1608.03332 Geophysics +1608.03335 Optimization and Control +1608.03336 Group Theory +1608.03342 Combinatorics +1608.03343 Applications +1608.03344 Databases +1608.03350 Programming Languages +1608.03352 Computation +1608.03353 Group Theory +1608.03357 Materials Science +1608.03358 Geophysics +1608.03360 Optimization and Control +1608.03361 Geophysics +1608.03363 Geophysics +1608.03364 Quantum Gases +1608.03366 Instrumentation and Methods for Astrophysics +1608.03367 Instrumentation and Methods for Astrophysics +1608.03369 Computer Vision and Pattern Recognition +1608.03371 Social and Information Networks +1608.03374 Computer Vision and Pattern Recognition +1608.03377 Information Theory +1608.03380 Networking and Internet Architecture +1608.03381 General Topology +1608.03382 Number Theory +1608.03387 Quantum Gases +1608.03388 Phenomenology +1608.03389 Analysis of PDEs +1608.03391 Theory +1608.03394 Chaotic Dynamics +1608.03396 Computer Vision and Pattern Recognition +1608.03397 Computer Science and Game Theory +1608.03405 Computers and Society +1608.03406 Algebraic Geometry +1608.03408 Instrumentation and Methods for Astrophysics +1608.03410 Computer Vision and Pattern Recognition +1608.03414 Functional Analysis +1608.03415 Cryptography and Security +1608.03416 Number Theory +1608.03417 Sound +1608.03419 Representation Theory +1608.03422 Functional Analysis +1608.03424 Programming Languages +1608.03425 Neurons and Cognition +1608.03426 Statistical Mechanics +1608.03428 Mathematical Finance +1608.03429 Networking and Internet Architecture +1608.03430 Human-Computer Interaction +1608.03431 Cryptography and Security +1608.03435 Metric Geometry +1608.03436 Chemical Physics +1608.03439 Data Structures and Algorithms +1608.03442 Representation Theory +1608.03444 +1608.03445 Cryptography and Security +1608.03446 Representation Theory +1608.03448 Computation and Language +1608.03450 Optimization and Control +1608.03451 Numerical Analysis +1608.03452 Optimization and Control +1608.03453 Accelerator Physics +1608.03454 Accelerator Physics +1608.03460 Phenomenology +1608.03461 Neurons and Cognition +1608.03462 Computer Vision and Pattern Recognition +1608.03463 Neurons and Cognition +1608.03465 Neurons and Cognition +1608.03466 Phenomenology +1608.03467 Neurons and Cognition +1608.03468 +1608.03473 Functional Analysis +1608.03474 Computer Vision and Pattern Recognition +1608.03475 Computer Science and Game Theory +1608.03479 Soft Condensed Matter +1608.03481 General Physics +1608.03482 Group Theory +1608.03484 Earth and Planetary Astrophysics +1608.03487 Optimization and Control +1608.03488 Dynamical Systems +1608.03489 +1608.03490 Strongly Correlated Electrons +1608.03491 Optimization and Control +1608.03492 +1608.03499 Commutative Algebra +1608.03500 Dynamical Systems +1608.03503 Instrumentation and Detectors +1608.03504 Theory +1608.03505 Rings and Algebras +1608.03508 History and Overview +1608.03510 Analysis of PDEs +1608.03513 Logic +1608.03515 Operator Algebras +1608.03521 General Finance +1608.03522 Number Theory +1608.03524 Numerical Analysis +1608.03528 Complex Variables +1608.03532 Artificial Intelligence +1608.03534 Number Theory +1608.03536 Networking and Internet Architecture +1608.03538 Group Theory +1608.03540 Earth and Planetary Astrophysics +1608.03547 Differential Geometry +1608.03548 Algebraic Topology +1608.03550 +1608.03551 Combinatorics +1608.03554 Group Theory +1608.03556 Databases +1608.03557 Analysis of PDEs +1608.03558 Theory +1608.03559 Phenomenology +1608.03561 Materials Science +1608.03563 Strongly Correlated Electrons +1608.03564 Phenomenology +1608.03567 Representation Theory +1608.03568 Mesoscale and Nanoscale Physics +1608.03569 Human-Computer Interaction +1608.03573 Earth and Planetary Astrophysics +1608.03576 Soft Condensed Matter +1608.03579 Representation Theory +1608.03580 Data Structures and Algorithms +1608.03581 Analysis of PDEs +1608.03582 Materials Science +1608.03584 Probability +1608.03585 Machine Learning +cs/0610092 Computational Geometry +0805.2192 Differential Geometry +1004.3316 Analysis of PDEs +1004.3318 Spectral Theory +1112.4716 Solar and Stellar Astrophysics +1112.4738 Solar and Stellar Astrophysics +1112.4750 Solar and Stellar Astrophysics +1112.4778 Solar and Stellar Astrophysics +1205.1008 Algebraic Geometry +1212.0196 Number Theory +1304.1869 Differential Geometry +1304.2251 Algebraic Geometry +1306.6043 Differential Geometry +1309.2151 Classical Analysis and ODEs +1310.1382 Data Analysis, Statistics and Probability +1310.7369 Algebraic Geometry +1311.2281 Computation +1311.5293 Classical Analysis and ODEs +1401.7688 Materials Science +1403.7688 Dynamical Systems +1404.3249 Data Analysis, Statistics and Probability +1405.1582 Complex Variables +1405.3214 Statistical Mechanics +1406.4129 Astrophysics of Galaxies +1406.7426 Numerical Analysis +1407.2283 Information Theory +1407.6139 Analysis of PDEs +1407.8444 Algebraic Geometry +1408.0517 Databases +1408.2608 Number Theory +1408.6702 Adaptation and Self-Organizing Systems +1409.0676 Algebraic Geometry +1409.5826 Computational Physics +1409.6951 Probability +1410.8195 Group Theory +1411.4761 Dynamical Systems +1411.5905 Geometric Topology +1412.1611 Combinatorics +1412.1631 Soft Condensed Matter +1412.1859 Cryptography and Security +1412.4969 Lattice +1412.5166 Algebraic Geometry +1412.7448 Cryptography and Security +1501.00002 Strongly Correlated Electrons +1501.02250 Logic in Computer Science +1501.07838 Differential Geometry +1503.01600 Probability +1503.02859 Optimization and Control +1503.05943 +1503.06473 Group Theory +1504.04165 Analysis of PDEs +1504.05051 Analysis of PDEs +1505.04573 Pricing of Securities +1505.05587 Number Theory +1506.00680 Formal Languages and Automata Theory +1506.05417 Instrumentation and Detectors +1506.07706 Theory +1506.08778 Statistical Mechanics +1507.01072 Operator Algebras +1507.01379 Algebraic Geometry +1507.01495 Number Theory +1507.01819 Cosmology and Nongalactic Astrophysics +1507.02990 Combinatorics +1507.05357 Dynamical Systems +1507.06340 Operator Algebras +1507.06664 +1507.07745 +1508.02980 Molecular Networks +1508.03584 Strongly Correlated Electrons +1508.05339 +1508.06025 Information Theory +1509.02757 Soft Condensed Matter +1509.02992 Logic +1509.05422 Number Theory +1509.06198 Phenomenology +1509.06585 Computation and Language +1510.00003 Operator Algebras +1510.00548 +1510.01868 Rings and Algebras +1510.03018 Algebraic Geometry +1510.03072 Experiment +1510.03331 Representation Theory +1510.03546 Algebraic Topology +1510.05215 Probability +1511.00042 Materials Science +1511.01984 Systems and Control +1511.06483 Information Theory +1511.07888 Optimization and Control +1511.07899 Differential Geometry +1511.08119 Computer Vision and Pattern Recognition +1512.00768 +1512.01667 +1512.01935 Optics +1512.04242 Probability +1512.04803 +1512.04855 Phenomenology +1512.06374 Mesoscale and Nanoscale Physics +1512.06677 Operator Algebras +1512.07337 Pricing of Securities +1512.07340 Pricing of Securities +1512.07745 Group Theory +1512.07848 Statistics Theory +1601.00963 Physics and Society +1601.00991 Portfolio Management +1601.02108 Strongly Correlated Electrons +1601.02388 Discrete Mathematics +1601.02413 Algebraic Geometry +1601.02910 Instrumentation and Detectors +1601.03446 Atmospheric and Oceanic Physics +1601.05347 Computer Vision and Pattern Recognition +1601.06312 Information Theory +1601.07213 Learning +1602.01917 +1602.02820 Strongly Correlated Electrons +1602.03060 Classical Physics +1602.04382 Logic in Computer Science +1602.05225 Numerical Analysis +1602.06248 +1602.06916 Machine Learning +1602.08124 Distributed, Parallel, and Cluster Computing +1602.08631 Combinatorics +1602.08690 Phenomenology +1602.08762 Experiment +1603.00509 Computer Science and Game Theory +1603.00939 Multiagent Systems +1603.01021 Superconductivity +1603.01495 Number Theory +1603.01526 Strongly Correlated Electrons +1603.02683 Statistical Mechanics +1603.03010 Atomic and Molecular Clusters +1603.03680 High Energy Astrophysical Phenomena +1603.04276 Software Engineering +1603.04378 Algebraic Geometry +1603.04537 Probability +1603.04992 Computer Vision and Pattern Recognition +1603.06021 Computation and Language +1603.06661 Analysis of PDEs +1603.09114 Computer Vision and Pattern Recognition +1603.09382 Learning +1603.09424 Theory +1603.09452 Mesoscale and Nanoscale Physics +1604.01088 Neural and Evolutionary Computing +1604.01513 Algebraic Geometry +1604.03353 Mesoscale and Nanoscale Physics +1604.03762 Probability +1604.03822 Materials Science +1604.05555 Logic in Computer Science +1604.05916 Strongly Correlated Electrons +1604.07246 Disordered Systems and Neural Networks +1604.07372 Mesoscale and Nanoscale Physics +1604.07544 Lattice +1604.08205 Astrophysics of Galaxies +1604.08238 Cosmology and Nongalactic Astrophysics +1604.08424 Lattice +1604.08498 Materials Science +1605.00683 +1605.02964 Computer Vision and Pattern Recognition +1605.03608 General Topology +1605.04256 High Energy Astrophysical Phenomena +1605.05081 Experiment +1605.05143 Algebraic Geometry +1605.08110 Computer Vision and Pattern Recognition +1605.08693 Optics +1606.00659 +1606.01367 Plasma Physics +1606.01845 +1606.02876 Mesoscale and Nanoscale Physics +1606.03750 Optics +1606.05506 Computer Vision and Pattern Recognition +1606.05598 Other Statistics +1606.07282 Methodology +1606.07640 Theory +1606.07644 +1606.07713 +1607.00567 Machine Learning +1607.00794 Phenomenology +1607.01650 Medical Physics +1607.01866 +1607.04707 High Energy Astrophysical Phenomena +1607.04859 Analysis of PDEs +1607.05596 Distributed, Parallel, and Cluster Computing +1607.06343 Databases +1607.06471 Astrophysics of Galaxies +1607.06750 Theory +1607.07200 Discrete Mathematics +1607.07321 Instrumentation and Detectors +1607.07403 Social and Information Networks +1607.07421 Computational Geometry +1607.07470 Robotics +1607.07881 Astrophysics of Galaxies +1607.08066 Probability +1607.08150 Algebraic Geometry +1607.08254 Optimization and Control +1607.08353 Materials Science +1607.08377 Soft Condensed Matter +1607.08403 Analysis of PDEs +1607.08414 Computer Vision and Pattern Recognition +1607.08440 Dynamical Systems +1607.08491 Superconductivity +1607.08608 +1607.08620 Instrumentation and Methods for Astrophysics +1607.08621 Cosmology and Nongalactic Astrophysics +1607.08622 Phenomenology +1607.08625 Soft Condensed Matter +1607.08626 Materials Science +1607.08627 Materials Science +1607.08629 +1607.08634 Cryptography and Security +1607.08635 Computer Vision and Pattern Recognition +1607.08638 History and Philosophy of Physics +1607.08639 Mesoscale and Nanoscale Physics +1607.08641 Combinatorics +1607.08642 Materials Science +1607.08644 Robotics +1607.08647 Statistics Theory +1607.08648 Number Theory +1607.08650 Analysis of PDEs +1607.08656 Applications +1607.08661 +1607.08663 Mesoscale and Nanoscale Physics +1607.08665 Robotics +1607.08666 Number Theory +1607.08667 +1607.08669 Probability +1607.08674 Probability +1607.08675 Plasma Physics +1607.08678 Applications +1607.08681 Databases +1607.08683 Probability +1607.08684 Probability +1607.08686 K-Theory and Homology +1607.08687 Logic +1607.08689 Strongly Correlated Electrons +1607.08695 Social and Information Networks +1607.08704 Representation Theory +1607.08705 Algebraic Geometry +1607.08706 Mesoscale and Nanoscale Physics +1607.08708 Strongly Correlated Electrons +1607.08709 Analysis of PDEs +1607.08710 Numerical Analysis +1607.08711 Dynamical Systems +1607.08712 Information Theory +1607.08713 Number Theory +1607.08718 Analysis of PDEs +1607.08719 Theory +1607.08721 Differential Geometry +1607.08725 Computation and Language +1607.08727 Phenomenology +1607.08728 Optimization and Control +1607.08735 Analysis of PDEs +1607.08737 Information Theory +1607.08739 Materials Science +1607.08741 Atomic Physics +1607.08742 Combinatorics +1607.08745 Number Theory +1607.08748 Dynamical Systems +1607.08751 Instrumentation and Methods for Astrophysics +1607.08752 +1607.08753 +1607.08758 Algebraic Geometry +1607.08762 Soft Condensed Matter +1607.08764 Computer Vision and Pattern Recognition +1607.08765 Instrumentation and Methods for Astrophysics +1607.08766 Probability +1607.08769 Operator Algebras +1607.08770 Earth and Planetary Astrophysics +1607.08771 Differential Geometry +1607.08772 Mesoscale and Nanoscale Physics +1607.08774 Cryptography and Security +1607.08775 Phenomenology +1607.08780 Combinatorics +1607.08782 Combinatorics +1607.08783 Materials Science +1607.08789 Superconductivity +1607.08791 Other Computer Science +1607.08792 Differential Geometry +1607.08794 Probability +1607.08795 Representation Theory +1607.08796 Exactly Solvable and Integrable Systems +1607.08802 Analysis of PDEs +1607.08803 Analysis of PDEs +1607.08805 Data Structures and Algorithms +1607.08807 Computers and Society +1607.08809 Computational Geometry +1607.08810 Machine Learning +1607.08815 Algebraic Geometry +1607.08816 Number Theory +1607.08822 Computer Vision and Pattern Recognition +1607.08824 Instrumentation and Detectors +1607.08826 Statistics Theory +1607.08827 Applications +1607.08831 Mesoscale and Nanoscale Physics +1607.08832 Combinatorics +1607.08837 Combinatorics +1607.08838 +1607.08839 Classical Analysis and ODEs +1607.08841 Information Theory +1607.08843 Systems and Control +1607.08844 Astrophysics of Galaxies +1607.08845 Computation +1607.08848 Solar and Stellar Astrophysics +1607.08850 Combinatorics +1607.08851 Analysis of PDEs +1607.08852 Analysis of PDEs +1607.08855 Complex Variables +1607.08856 Geophysics +1607.08857 Strongly Correlated Electrons +1607.08858 Algebraic Topology +1607.08859 Optics +1607.08863 Computer Science and Game Theory +1607.08867 Fluid Dynamics +1607.08871 +1607.08872 Cosmology and Nongalactic Astrophysics +1607.08874 Instrumentation and Methods for Astrophysics +1607.08875 Numerical Analysis +1607.08877 Machine Learning +1607.08878 Neural and Evolutionary Computing +1607.08880 Algebraic Geometry +1607.08882 Methodology +1607.08883 Information Retrieval +1607.08885 Computation and Language +1607.08886 Biomolecules +1607.08889 Combinatorics +1607.08890 Optics +1607.08891 Machine Learning +1607.08896 Optimization and Control +1607.08898 Artificial Intelligence +1607.08899 Group Theory +1607.08901 Phenomenology +1607.08902 +1607.08903 Analysis of PDEs +1607.08904 Combinatorics +1607.08905 Computer Vision and Pattern Recognition +1607.08908 Quantum Algebra +1607.08909 Probability +1607.08910 Physics and Society +0910.5527 Representation Theory +1001.4030 Dynamical Systems +1004.2902 Optics +1009.4203 Mesoscale and Nanoscale Physics +1010.1490 Probability +1010.4679 Mesoscale and Nanoscale Physics +1011.6026 Geometric Topology +1012.3896 Neurons and Cognition +1012.4218 Symplectic Geometry +1101.1069 Symplectic Geometry +1102.0989 Computer Science and Game Theory +1102.2169 Geometric Topology +1102.3160 Symplectic Geometry +1103.6263 Geometric Topology +1107.2256 Computational Complexity +1202.2282 Dynamical Systems +1203.6863 Probability +1204.1011 Soft Condensed Matter +1206.3767 Spectral Theory +1207.5005 +1208.6091 Logic +1212.3219 General Physics +1304.4506 +1305.0250 +1307.5394 Differential Geometry +1311.2352 Rings and Algebras +1312.7832 Logic +1401.7464 Phenomenology +1402.4393 +1402.4799 Information Theory +1403.4418 Dynamical Systems +1403.4539 Computational Complexity +1404.1105 Differential Geometry +1404.5163 Number Theory +1404.7496 Theory +1405.4059 Biological Physics +1405.4586 Commutative Algebra +1405.5785 Group Theory +1406.0900 Physics and Society +1406.5620 Algebraic Topology +1407.0981 Networking and Internet Architecture +1407.6720 Atomic Physics +1408.0037 Algebraic Geometry +1408.2796 Theory +1408.6896 Neurons and Cognition +1409.0507 Physics and Society +1409.1262 Analysis of PDEs +1411.1960 Differential Geometry +1412.0714 Representation Theory +1412.4146 +1412.4434 Strongly Correlated Electrons +1412.6761 Formal Languages and Automata Theory +1501.00327 Combinatorics +1501.04671 Applications +1501.05522 +1501.05869 Functional Analysis +1501.07511 Algebraic Geometry +1502.01006 Number Theory +1502.01640 Algebraic Topology +1502.01765 Biological Physics +1502.03788 Dynamical Systems +1502.05095 +1503.00124 Quantum Algebra +1503.00433 Atomic Physics +1503.02967 Materials Science +1503.05740 +1503.06501 Dynamical Systems +1503.07155 Dynamical Systems +1503.07650 Fluid Dynamics +1504.00225 Theory +1504.01143 Combinatorics +1504.02343 Number Theory +1504.02669 Algebraic Geometry +1504.04144 Solar and Stellar Astrophysics +1504.06684 Differential Geometry +1504.06729 Data Structures and Algorithms +1505.02219 Algebraic Topology +1505.02293 Analysis of PDEs +1505.03621 Superconductivity +1505.04363 Machine Learning +1505.07742 Dynamical Systems +1506.00973 Theory +1506.01246 Representation Theory +1506.01527 Physics and Society +1506.03831 Group Theory +1506.05136 Mesoscale and Nanoscale Physics +1506.05347 Dynamical Systems +1506.07800 Methodology +1507.02106 Quantum Gases +1507.02647 Mesoscale and Nanoscale Physics +1507.02850 Phenomenology +1507.05552 Cosmology and Nongalactic Astrophysics +1507.08563 Computation +1507.08682 Materials Science +1508.00242 Complex Variables +1508.00546 Atomic Physics +1508.00752 Logic +1508.03266 +1508.03268 Theory +1508.03541 Optics +1508.03576 Solar and Stellar Astrophysics +1508.03884 Computation +1508.04133 Instrumentation and Detectors +1508.04858 +1508.05882 +1508.06192 Optics +1508.06276 High Energy Astrophysical Phenomena +1509.02076 Theory +1509.03215 Theory +1509.05216 +1509.05871 Cosmology and Nongalactic Astrophysics +1509.07458 +1509.07662 Mesoscale and Nanoscale Physics +1509.08478 Theory +1510.00027 Numerical Analysis +1510.04908 Computer Vision and Pattern Recognition +1510.07353 Strongly Correlated Electrons +1510.07585 Atomic Physics +1510.07839 Networking and Internet Architecture +1510.07934 Strongly Correlated Electrons +1510.08355 Strongly Correlated Electrons +1511.00670 Phenomenology +1511.00979 Phenomenology +1511.02652 Instrumentation and Methods for Astrophysics +1511.03176 Statistical Mechanics +1511.03684 Mesoscale and Nanoscale Physics +1511.03923 +1511.04477 +1511.04480 Algebraic Geometry +1511.04778 Materials Science +1511.05846 Medical Physics +1511.05945 Dynamical Systems +1511.08427 Mesoscale and Nanoscale Physics +1511.08807 High Energy Astrophysical Phenomena +1511.09332 Category Theory +1512.00134 Earth and Planetary Astrophysics +1512.00250 Artificial Intelligence +1512.00269 Mesoscale and Nanoscale Physics +1512.01392 Quantum Gases +1512.02069 Analysis of PDEs +1512.02129 Mesoscale and Nanoscale Physics +1512.02151 Strongly Correlated Electrons +1512.02391 Strongly Correlated Electrons +1512.02518 Commutative Algebra +1512.02558 Analysis of PDEs +1512.03365 Dynamical Systems +1512.04309 +1512.04886 +1512.05257 Theory +1512.05737 Lattice +1512.07186 +1512.07242 Phenomenology +1512.07605 +1512.07691 Probability +1512.08940 Mesoscale and Nanoscale Physics +1512.09037 Theory +1601.00328 Solar and Stellar Astrophysics +1601.00510 Strongly Correlated Electrons +1601.00739 +1601.01172 Theory +1601.01954 Commutative Algebra +1601.03267 Phenomenology +1601.04239 Materials Science +1601.04688 Algebraic Topology +1601.05067 Strongly Correlated Electrons +1601.05095 Earth and Planetary Astrophysics +1601.05325 Theory +1601.05570 Materials Science +1601.05605 Mesoscale and Nanoscale Physics +1601.05687 Materials Science +1601.05827 Theory +1601.06082 Atomic Physics +1601.06132 +1601.06546 +1601.06613 Soft Condensed Matter +1601.07022 Optics +1601.07188 Astrophysics of Galaxies +1601.07247 Mesoscale and Nanoscale Physics +1601.07451 +1601.07662 Other Condensed Matter +1601.07928 +1601.08211 Theory +1602.00053 Earth and Planetary Astrophysics +1602.00404 +1602.00805 Physics and Society +1602.00842 Solar and Stellar Astrophysics +1602.00988 Experiment +1602.01455 +1602.01469 Mesoscale and Nanoscale Physics +1602.01931 Strongly Correlated Electrons +1602.02054 Superconductivity +1602.03660 Mesoscale and Nanoscale Physics +1602.04057 Probability +1602.04170 Phenomenology +1602.04367 +1602.04531 High Energy Astrophysical Phenomena +1602.05485 Instrumentation and Methods for Astrophysics +1602.05529 High Energy Astrophysical Phenomena +1602.05624 Quantum Gases +1602.06255 Astrophysics of Galaxies +1602.06655 Materials Science +1602.06759 High Energy Astrophysical Phenomena +1602.06875 Strongly Correlated Electrons +1602.06988 Earth and Planetary Astrophysics +1602.07294 Pattern Formation and Solitons +1602.07525 Mesoscale and Nanoscale Physics +1602.07770 Phenomenology +1602.07823 Optics +1602.08110 +1602.08578 Instrumentation and Detectors +1602.08707 Phenomenology +1602.08955 +1602.08973 +1602.09099 Phenomenology +1602.09141 Astrophysics of Galaxies +1603.00408 +1603.00726 Optics +1603.00942 Mesoscale and Nanoscale Physics +1603.01376 Applications +1603.01395 Strongly Correlated Electrons +1603.01431 Machine Learning +1603.01578 Mesoscale and Nanoscale Physics +1603.01915 Astrophysics of Galaxies +1603.02051 +1603.02191 Instrumentation and Methods for Astrophysics +1603.02404 High Energy Astrophysical Phenomena +1603.02619 Materials Science +1603.02794 Earth and Planetary Astrophysics +1603.03296 Solar and Stellar Astrophysics +1603.03696 Phenomenology +1603.03852 Solar and Stellar Astrophysics +1603.04170 +1603.04216 Theory +1603.04304 Solar and Stellar Astrophysics +1603.04363 Optics +1603.04772 Theory +1603.04889 +1603.04902 +1603.05587 Methodology +1603.05684 High Energy Astrophysical Phenomena +1603.05709 Soft Condensed Matter +1603.05826 +1603.06023 Mesoscale and Nanoscale Physics +1603.06166 Cosmology and Nongalactic Astrophysics +1603.06509 +1603.06980 Phenomenology +1603.07083 +1603.07258 +1603.07670 Theory +1603.07729 Cosmology and Nongalactic Astrophysics +1603.08066 Materials Science +1603.08072 Cosmology and Nongalactic Astrophysics +1603.08088 Probability +1603.08729 +1603.08849 Phenomenology +1603.08961 Multiagent Systems +1603.09033 +1603.09040 Phenomenology +1603.09222 Experiment +1603.09312 Atomic Physics +1603.09350 Phenomenology +1603.09426 Physics and Society +1604.00302 Solar and Stellar Astrophysics +1604.00413 Astrophysics of Galaxies +1604.00458 Quantum Gases +1604.00509 Phenomenology +1604.00722 Theory +1604.00751 Materials Science +1604.00961 Strongly Correlated Electrons +1604.00973 Accelerator Physics +1604.01025 Phenomenology +1604.01027 Astrophysics of Galaxies +1604.01192 High Energy Astrophysical Phenomena +1604.01388 Phenomenology +1604.01410 Cosmology and Nongalactic Astrophysics +1604.01777 High Energy Astrophysical Phenomena +1604.01859 Chaotic Dynamics +1604.01948 Phenomenology +1604.02075 Geometric Topology +1604.02220 Experiment +1604.02227 +1604.02282 Statistical Mechanics +1604.03472 Strongly Correlated Electrons +1604.03652 +1604.03665 Theory +1604.03754 Probability +1604.03773 Computer Science and Game Theory +1604.03820 Disordered Systems and Neural Networks +1604.04059 +1604.04229 Astrophysics of Galaxies +1604.04244 Statistical Mechanics +1604.04537 Solar and Stellar Astrophysics +1604.04550 Instrumentation and Detectors +1604.04924 Computational Physics +1604.05050 Solar and Stellar Astrophysics +1604.05718 Solar and Stellar Astrophysics +1604.05724 Mesoscale and Nanoscale Physics +1604.05859 Superconductivity +1604.05911 Astrophysics of Galaxies +1604.06027 Optics +1604.06130 Data Analysis, Statistics and Probability +1604.06320 High Energy Astrophysical Phenomena +1604.06821 Solar and Stellar Astrophysics +1604.07373 Quantum Gases +1604.07415 +1604.07594 Atomic Physics +1604.07609 Astrophysics of Galaxies +1604.07624 Astrophysics of Galaxies +1604.07662 Mesoscale and Nanoscale Physics +1604.07776 Phenomenology +1604.07825 High Energy Astrophysical Phenomena +1604.07826 Astrophysics of Galaxies +1604.07831 High Energy Astrophysical Phenomena +1604.07835 Phenomenology +1604.07939 Multimedia +1604.08063 Quantum Gases +1604.08196 Phenomenology +1604.08217 Theory +1604.08279 Earth and Planetary Astrophysics +1604.08483 Solar and Stellar Astrophysics +1604.08554 Other Condensed Matter +1604.08597 Astrophysics of Galaxies +1604.08888 Phenomenology +1605.00098 Mesoscale and Nanoscale Physics +1605.00106 Statistical Mechanics +1605.00360 High Energy Astrophysical Phenomena +1605.00594 Lattice +1605.00622 Phenomenology +1605.01123 Phenomenology +1605.01293 Statistical Mechanics +1605.01322 Algebraic Topology +1605.01334 High Energy Astrophysical Phenomena +1605.01412 Cosmology and Nongalactic Astrophysics +1605.01653 Theory +1605.01682 Earth and Planetary Astrophysics +1605.01712 Cosmology and Nongalactic Astrophysics +1605.01818 Materials Science +1605.01938 +1605.02161 Astrophysics of Galaxies +1605.02732 Astrophysics of Galaxies +1605.02791 Solar and Stellar Astrophysics +1605.03182 Astrophysics of Galaxies +1605.03239 Solar and Stellar Astrophysics +1605.03589 Astrophysics of Galaxies +1605.03595 Solar and Stellar Astrophysics +1605.03623 Materials Science +1605.03869 Atomic Physics +1605.04220 +1605.05210 Atomic Physics +1605.05642 Astrophysics of Galaxies +1605.05827 Atomic Physics +1605.06088 Phenomenology +1605.06189 Astrophysics of Galaxies +1605.06320 Optics +1605.06350 Cosmology and Nongalactic Astrophysics +1605.06403 Astrophysics of Galaxies +1605.06591 Solar and Stellar Astrophysics +1605.06723 Analysis of PDEs +1605.07048 Solar and Stellar Astrophysics +1605.07738 Phenomenology +1605.07835 Phenomenology +1605.08026 Astrophysics of Galaxies +1605.08111 Atomic Physics +1605.08250 High Energy Astrophysical Phenomena +1605.08356 Superconductivity +1605.08449 Theory +1605.08459 Soft Condensed Matter +1605.08530 Geometric Topology +1605.08537 Instrumentation and Detectors +1605.08556 Earth and Planetary Astrophysics +1605.08710 Analysis of PDEs +1605.09011 Systems and Control +1605.09236 General Physics +1605.09406 Astrophysics of Galaxies +1605.09623 Dynamical Systems +1606.00276 Lattice +1606.00657 Biological Physics +1606.00834 Solar and Stellar Astrophysics +1606.01441 Databases +1606.01710 Mesoscale and Nanoscale Physics +1606.01892 Materials Science +1606.01999 Mesoscale and Nanoscale Physics +1606.02168 Cosmology and Nongalactic Astrophysics +1606.02193 Networking and Internet Architecture +1606.02286 Instrumentation and Detectors +1606.02412 Instrumentation and Methods for Astrophysics +1606.02871 Statistical Finance +1606.03170 Materials Science +1606.03213 High Energy Astrophysical Phenomena +1606.03957 Instrumentation and Methods for Astrophysics +1606.03988 Probability +1606.04107 Astrophysics of Galaxies +1606.04914 Materials Science +1606.05028 Solar and Stellar Astrophysics +1606.05171 Phenomenology +1606.05247 Earth and Planetary Astrophysics +1606.05418 Methodology +1606.05495 Number Theory +1606.05777 Distributed, Parallel, and Cluster Computing +1606.06626 Physics and Society +1606.07953 Computation and Language +1606.08310 Solar and Stellar Astrophysics +1606.08613 Chaotic Dynamics +1606.08622 Earth and Planetary Astrophysics +1606.08700 High Energy Astrophysical Phenomena +1606.08771 Astrophysics of Galaxies +1606.09278 Robotics +1606.09344 +1607.00333 Probability +1607.00984 Soft Condensed Matter +1607.00995 Strongly Correlated Electrons +1607.01187 Analysis of PDEs +1607.01248 General Finance +1607.01272 Information Theory +1607.01280 Numerical Analysis +1607.01364 Solar and Stellar Astrophysics +1607.01444 Social and Information Networks +1607.01647 +1607.01669 Accelerator Physics +1607.02172 Differential Geometry +1607.02449 Superconductivity +1607.02477 Astrophysics of Galaxies +1607.02502 Social and Information Networks +1607.02580 Group Theory +1607.02602 Representation Theory +1607.02654 Computer Vision and Pattern Recognition +1607.02673 +1607.02733 Physics and Society +1607.02806 Optimization and Control +1607.02856 Materials Science +1607.02874 Fluid Dynamics +1607.02898 Plasma Physics +1607.03102 Instrumentation and Detectors +1607.03104 +1607.03105 Computer Vision and Pattern Recognition +1607.03106 +1607.03109 Cosmology and Nongalactic Astrophysics +1607.03131 Optics +1607.03139 Logic +1607.03140 Cryptography and Security +1607.03141 Materials Science +1607.03144 Cosmology and Nongalactic Astrophysics +1607.03152 Cosmology and Nongalactic Astrophysics +1607.03155 Cosmology and Nongalactic Astrophysics +1607.03156 Algebraic Geometry +1607.03157 Algebraic Geometry +1607.03160 +1607.03161 Computer Science and Game Theory +1607.03164 Computer Vision and Pattern Recognition +1607.03166 Probability +1607.03167 Symplectic Geometry +1607.03170 Materials Science +1607.03172 Probability +1607.03176 Theory +1607.03177 Plasma Physics +1607.03180 Quantitative Methods +1607.03182 Learning +1607.03183 Learning +1607.03188 Computation +1607.03191 Information Theory +1607.03193 Optimization and Control +1607.03195 Optimization and Control +1607.03196 Number Theory +1607.03198 Strongly Correlated Electrons +1607.03199 Number Theory +1607.03200 Digital Libraries +1607.03201 Materials Science +1607.03202 Machine Learning +1607.03204 Machine Learning +1607.03206 Probability +1607.03208 General Topology +1607.03211 Probability +1607.03212 Category Theory +1607.03213 +1607.03214 Functional Analysis +1607.03215 Algebraic Geometry +1607.03217 Dynamical Systems +1607.03220 Geometric Topology +1607.03224 Instrumentation and Methods for Astrophysics +1607.03226 Computer Vision and Pattern Recognition +1607.03227 Information Theory +1607.03234 Combinatorics +1607.03237 Representation Theory +1607.03239 Networking and Internet Architecture +1607.03240 Computer Vision and Pattern Recognition +1607.03241 Experiment +1607.03243 Networking and Internet Architecture +1607.03244 Instrumentation and Methods for Astrophysics +1607.03245 Software Engineering +1607.03246 Biological Physics +1607.03247 Chemical Physics +1607.03249 +1607.03250 Neural and Evolutionary Computing +1607.03251 Classical Analysis and ODEs +1607.03252 Computational Engineering, Finance, and Science +1607.03253 Biomolecules +1607.03254 Networking and Internet Architecture +1607.03255 Numerical Analysis +1607.03257 Multimedia +1607.03258 Software Engineering +1607.03260 Information Theory +1607.03261 Number Theory +1607.03265 Complex Variables +1607.03266 Soft Condensed Matter +1607.03270 Information Theory +1607.03271 Representation Theory +1607.03273 Cryptography and Security +1607.03274 Information Retrieval +1607.03276 Physics and Society +1607.03277 Solar and Stellar Astrophysics +1607.03278 Numerical Analysis +1607.03280 Information Theory +1607.03281 Experiment +1607.03284 Computer Vision and Pattern Recognition +1607.03286 Logic in Computer Science +1607.03287 Materials Science +1607.03288 Number Theory +1607.03289 Computer Vision and Pattern Recognition +1607.03290 Artificial Intelligence +1607.03292 Data Structures and Algorithms +1607.03295 Numerical Analysis +1607.03300 Machine Learning +1607.03302 Methodology +1607.03305 Computer Vision and Pattern Recognition +1607.03307 Multiagent Systems +1607.03310 Symplectic Geometry +1607.03312 Probability +1607.03313 Machine Learning +1607.03315 Logic +1607.03317 Neural and Evolutionary Computing +1607.03320 Social and Information Networks +1607.03321 Solar and Stellar Astrophysics +1607.03322 Rings and Algebras +1607.03323 Experiment +1607.03324 History and Philosophy of Physics +1607.03327 Numerical Analysis +1607.03331 Superconductivity +1607.03332 Differential Geometry +1607.03333 Computer Vision and Pattern Recognition +1607.03339 High Energy Astrophysical Phenomena +1607.03340 Multiagent Systems +1607.03345 Probability +1607.03349 Information Theory +1607.03350 Phenomenology +1607.03351 Spectral Theory +1607.03352 Mesoscale and Nanoscale Physics +1607.03353 Information Theory +1607.03354 Computer Science and Game Theory +1607.03355 Logic in Computer Science +1607.03356 Computer Science and Game Theory +1607.03357 Mesoscale and Nanoscale Physics +1607.03358 High Energy Astrophysical Phenomena +1607.03359 Soft Condensed Matter +1607.03360 Learning +1607.03366 Human-Computer Interaction +1607.03369 Distributed, Parallel, and Cluster Computing +1607.03370 Space Physics +1607.03372 Combinatorics +1607.03374 Phenomenology +1607.03378 Information Theory +1607.03380 Information Theory +1607.03384 +1607.03386 Astrophysics of Galaxies +1607.03391 Optics +1607.03393 Quantum Algebra +1607.03401 Human-Computer Interaction +1607.03402 General Physics +1607.03404 Geometric Topology +1607.03405 Algebraic Topology +1607.03408 Networking and Internet Architecture +1607.03410 Probability +1607.03413 General Physics +1607.03414 Number Theory +1607.03417 Human-Computer Interaction +1607.03418 Cosmology and Nongalactic Astrophysics +1607.03420 Classical Physics +1607.03423 Algebraic Geometry +1607.03424 Geometric Topology +1607.03425 Computer Vision and Pattern Recognition +1607.03426 Optimization and Control +1607.03430 Risk Management +1607.03431 Algebraic Geometry +1607.03433 Soft Condensed Matter +1607.03435 Differential Geometry +1607.03439 +1607.03440 Earth and Planetary Astrophysics +1607.03441 +1607.03443 Networking and Internet Architecture +1607.03444 Group Theory +1607.03445 Programming Languages +1607.03450 Distributed, Parallel, and Cluster Computing +1607.03451 Differential Geometry +1607.03454 Numerical Analysis +1607.03456 Learning +1607.03458 Classical Analysis and ODEs +1607.03459 Instrumentation and Methods for Astrophysics +1607.03460 Solar and Stellar Astrophysics +1607.03464 Computer Vision and Pattern Recognition +1607.03465 Dynamical Systems +1607.03468 Computer Vision and Pattern Recognition +1607.03469 Phenomenology +1607.03475 Machine Learning +1607.03477 Superconductivity +1607.03478 +1607.03481 Optics +1607.03482 diff --git a/Sub_Cat[0]R.ipynb b/Sub_Cat[0]R.ipynb new file mode 100644 index 0000000..0ad7372 --- /dev/null +++ b/Sub_Cat[0]R.ipynb @@ -0,0 +1,597 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Read and play with Sub_Cat[0]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Import Pacjage" + ] + }, + { + "cell_type": "code", + "execution_count": 51, + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "import numpy as np" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Var" + ] + }, + { + "cell_type": "code", + "execution_count": 154, + "metadata": {}, + "outputs": [], + "source": [ + "#Sub_Cat = pd.read_csv('/home/mohammad/Documents/ML-Sharif/arxiv/Sub_Cat[0].csv',sep='\\t',index_col=0 )" + ] + }, + { + "cell_type": "code", + "execution_count": 152, + "metadata": {}, + "outputs": [], + "source": [ + "Sub_Cat = pd.read_table('/home/mohammad/Documents/ML-Sharif/arxiv/Sub_Cat[0].csv',index_col=0)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Main Code" + ] + }, + { + "cell_type": "code", + "execution_count": 153, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
subject
0705.1532Dynamical Systems
0706.1373Exactly Solvable and Integrable Systems
0706.2509Theory
0708.1339Mesoscale and Nanoscale Physics
0709.1272Mathematical Software
\n", + "
" + ], + "text/plain": [ + " subject\n", + "0705.1532 Dynamical Systems\n", + "0706.1373 Exactly Solvable and Integrable Systems\n", + "0706.2509 Theory\n", + "0708.1339 Mesoscale and Nanoscale Physics\n", + "0709.1272 Mathematical Software" + ] + }, + "execution_count": 153, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "Sub_Cat.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 156, + "metadata": {}, + "outputs": [], + "source": [ + "Sub_Cat.dropna(inplace=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 157, + "metadata": {}, + "outputs": [], + "source": [ + "Dum_Sub_Cat = pd.get_dummies(Sub_Cat['subject'])" + ] + }, + { + "cell_type": "code", + "execution_count": 160, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "825007" + ] + }, + "execution_count": 160, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "len(Dum_Sub_Cat)" + ] + }, + { + "cell_type": "code", + "execution_count": 161, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Accelerator PhysicsAdaptation and Self-Organizing SystemsAlgebraic GeometryAlgebraic TopologyAnalysis of PDEsApplicationsArtificial IntelligenceAstrophysics of GalaxiesAtmospheric and Oceanic PhysicsAtomic Physics...Statistics TheoryStrongly Correlated ElectronsSubcellular ProcessesSuperconductivitySymbolic ComputationSymplectic GeometrySystems and ControlTheoryTissues and OrgansTrading and Market Microstructure
0705.15320000000000...0000000000
0706.13730000000000...0000000000
0706.25090000000000...0000000100
0708.13390000000000...0000000000
0709.12720000000000...0000000000
\n", + "

5 rows × 138 columns

\n", + "
" + ], + "text/plain": [ + " Accelerator Physics Adaptation and Self-Organizing Systems \\\n", + "0705.1532 0 0 \n", + "0706.1373 0 0 \n", + "0706.2509 0 0 \n", + "0708.1339 0 0 \n", + "0709.1272 0 0 \n", + "\n", + " Algebraic Geometry Algebraic Topology Analysis of PDEs \\\n", + "0705.1532 0 0 0 \n", + "0706.1373 0 0 0 \n", + "0706.2509 0 0 0 \n", + "0708.1339 0 0 0 \n", + "0709.1272 0 0 0 \n", + "\n", + " Applications Artificial Intelligence Astrophysics of Galaxies \\\n", + "0705.1532 0 0 0 \n", + "0706.1373 0 0 0 \n", + "0706.2509 0 0 0 \n", + "0708.1339 0 0 0 \n", + "0709.1272 0 0 0 \n", + "\n", + " Atmospheric and Oceanic Physics Atomic Physics \\\n", + "0705.1532 0 0 \n", + "0706.1373 0 0 \n", + "0706.2509 0 0 \n", + "0708.1339 0 0 \n", + "0709.1272 0 0 \n", + "\n", + " ... Statistics Theory \\\n", + "0705.1532 ... 0 \n", + "0706.1373 ... 0 \n", + "0706.2509 ... 0 \n", + "0708.1339 ... 0 \n", + "0709.1272 ... 0 \n", + "\n", + " Strongly Correlated Electrons Subcellular Processes \\\n", + "0705.1532 0 0 \n", + "0706.1373 0 0 \n", + "0706.2509 0 0 \n", + "0708.1339 0 0 \n", + "0709.1272 0 0 \n", + "\n", + " Superconductivity Symbolic Computation Symplectic Geometry \\\n", + "0705.1532 0 0 0 \n", + "0706.1373 0 0 0 \n", + "0706.2509 0 0 0 \n", + "0708.1339 0 0 0 \n", + "0709.1272 0 0 0 \n", + "\n", + " Systems and Control Theory Tissues and Organs \\\n", + "0705.1532 0 0 0 \n", + "0706.1373 0 0 0 \n", + "0706.2509 0 1 0 \n", + "0708.1339 0 0 0 \n", + "0709.1272 0 0 0 \n", + "\n", + " Trading and Market Microstructure \n", + "0705.1532 0 \n", + "0706.1373 0 \n", + "0706.2509 0 \n", + "0708.1339 0 \n", + "0709.1272 0 \n", + "\n", + "[5 rows x 138 columns]" + ] + }, + "execution_count": 161, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "Dum_Sub_Cat.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 162, + "metadata": {}, + "outputs": [], + "source": [ + "List_Index = Dum_Sub_Cat.index.tolist()" + ] + }, + { + "cell_type": "code", + "execution_count": 163, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "825007" + ] + }, + "execution_count": 163, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "len(List_Index)" + ] + }, + { + "cell_type": "code", + "execution_count": 164, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'0706.1373'" + ] + }, + "execution_count": 164, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "List_Index[1]" + ] + }, + { + "cell_type": "code", + "execution_count": 165, + "metadata": {}, + "outputs": [], + "source": [ + "Val = np.array(Dum_Sub_Cat)" + ] + }, + { + "cell_type": "code", + "execution_count": 166, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "array([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n", + " 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n", + " 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n", + " 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n", + " 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n", + " 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n", + " 0, 0, 0, 0, 0, 0], dtype=uint8)" + ] + }, + "execution_count": 166, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "Val[1]" + ] + }, + { + "cell_type": "code", + "execution_count": 167, + "metadata": {}, + "outputs": [], + "source": [ + "np.savez_compressed('Cat_Vector', Id=List_Index , labels = Val )" + ] + }, + { + "cell_type": "code", + "execution_count": 171, + "metadata": {}, + "outputs": [], + "source": [ + "Cat_Vector = np.load('Cat_Vector.npz')\n" + ] + }, + { + "cell_type": "code", + "execution_count": 172, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "array([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n", + " 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n", + " 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n", + " 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n", + " 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n", + " 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n", + " 0, 0, 0, 0, 0, 0], dtype=uint8)" + ] + }, + "execution_count": 172, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "Cat_Vector['labels'][1]" + ] + }, + { + "cell_type": "code", + "execution_count": 174, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'0706.1373'" + ] + }, + "execution_count": 174, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "Cat_Vector['Id'][1]" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.7" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} From 2a5e6a919c4421f2f6ef6171076094fd8e56ff66 Mon Sep 17 00:00:00 2001 From: "M. Sherafati" Date: Thu, 7 Feb 2019 17:49:25 +0330 Subject: [PATCH 6/6] :D --- .../Sub_Cat[0]R-checkpoint.ipynb | 567 +++++++++++++++--- 1 file changed, 500 insertions(+), 67 deletions(-) diff --git a/.ipynb_checkpoints/Sub_Cat[0]R-checkpoint.ipynb b/.ipynb_checkpoints/Sub_Cat[0]R-checkpoint.ipynb index c96d639..0ad7372 100644 --- a/.ipynb_checkpoints/Sub_Cat[0]R-checkpoint.ipynb +++ b/.ipynb_checkpoints/Sub_Cat[0]R-checkpoint.ipynb @@ -1,130 +1,576 @@ { "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Read and play with Sub_Cat[0]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Import Pacjage" + ] + }, { "cell_type": "code", - "execution_count": 2, + "execution_count": 51, "metadata": {}, "outputs": [], "source": [ - "import numpy as np\n", "import pandas as pd\n", - "import matplotlib.pyplot as plt\n", - "#from nltk import " + "import numpy as np" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ - "### Importing data" + "### Var" ] }, { "cell_type": "code", - "execution_count": 12, + "execution_count": 154, "metadata": {}, "outputs": [], "source": [ - "# sample_records = np.load('sample_abs.npz')\n", - "sample_abs_list = np.load('sample_abs_list.npz')\n", - "sample_abstract = sample_abs_list['abs_list'][1]" + "#Sub_Cat = pd.read_csv('/home/mohammad/Documents/ML-Sharif/arxiv/Sub_Cat[0].csv',sep='\\t',index_col=0 )" ] }, { "cell_type": "code", - "execution_count": 13, + "execution_count": 152, + "metadata": {}, + "outputs": [], + "source": [ + "Sub_Cat = pd.read_table('/home/mohammad/Documents/ML-Sharif/arxiv/Sub_Cat[0].csv',index_col=0)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Main Code" + ] + }, + { + "cell_type": "code", + "execution_count": 153, "metadata": {}, "outputs": [ { "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
subject
0705.1532Dynamical Systems
0706.1373Exactly Solvable and Integrable Systems
0706.2509Theory
0708.1339Mesoscale and Nanoscale Physics
0709.1272Mathematical Software
\n", + "
" + ], "text/plain": [ - "'[\\' The issue is the expediency of the QCD notions use in the low energy region\\\\ndown to the confinement scale, and, in particular, the efficacy of the QCD\\\\ninvariant coupling \\\\\\\\bar{\\\\\\\\alpha}_s(Q^2) with a minimal analytic modification in\\\\nthis domain. To this goal, we overview a quite recent progress in application\\\\nof the ghost-free Analytic Perturbative Theory approach (with no adjustable\\\\nparameters) for QCD in the region below 1 GeV. Among them the Bethe--Salpeter\\\\nanalysis of the meson spectra and spin-dependent (polarization) Bjorken sum\\\\nrule. The impression is that there is a chance for the theoretically consistent\\\\nand numerically correlated description of hadronic events from Z_0 till a few\\\\nhundred MeV scale by combination of analytic pQCD and some explicit\\\\nnon-perturbative contribution in the spirit of duality. This is an invitation\\\\nto the practitioner community for a more courageous use of ghost-free QCD\\\\ncoupling models for data analysis in the low energy region.\\\\n\\', \"Comment: 12 pages, 5 figures, to be published in ``Quantum Field Theory and\\\\n Beyond\\'\\' (Essays in honor of Wolfhart Zimmermann on the occasion of his 80th\\\\n birthday), WS(Singapore)\"]'" + " subject\n", + "0705.1532 Dynamical Systems\n", + "0706.1373 Exactly Solvable and Integrable Systems\n", + "0706.2509 Theory\n", + "0708.1339 Mesoscale and Nanoscale Physics\n", + "0709.1272 Mathematical Software" ] }, - "execution_count": 13, + "execution_count": 153, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "sample_abstract" + "Sub_Cat.head()" ] }, { - "cell_type": "markdown", + "cell_type": "code", + "execution_count": 156, "metadata": {}, + "outputs": [], "source": [ - "### Conditionor" + "Sub_Cat.dropna(inplace=True)" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 157, "metadata": {}, "outputs": [], "source": [ - "\"\"\"\n", - "The objective of this function is to get an abstract and return \n", - "a list of words in the abstract. \n", - "The idea is to get rid of some non-neccessary words and turn \n", - "everything into their roots, also get rid of the latex and numbers\n", - "and ...\n", - "This function is to be used for making the dictionary and also in \n", - "the vectorizer. \n", - "\"\"\"\n", - "\n", - "def abstract_tokenizor(abstract):\n", - " \"\"\"\n", - " 1. Tokenize, \n", - " 2. Lemetize\n", - " 3. get rid of stop words\n", - " 4. get rid of latex and extra commands\n", - " \n", - " \"\"\"\n", - " return abstract_tl\n", - " " + "Dum_Sub_Cat = pd.get_dummies(Sub_Cat['subject'])" ] }, { - "cell_type": "markdown", + "cell_type": "code", + "execution_count": 160, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "825007" + ] + }, + "execution_count": 160, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "len(Dum_Sub_Cat)" + ] + }, + { + "cell_type": "code", + "execution_count": 161, "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Accelerator PhysicsAdaptation and Self-Organizing SystemsAlgebraic GeometryAlgebraic TopologyAnalysis of PDEsApplicationsArtificial IntelligenceAstrophysics of GalaxiesAtmospheric and Oceanic PhysicsAtomic Physics...Statistics TheoryStrongly Correlated ElectronsSubcellular ProcessesSuperconductivitySymbolic ComputationSymplectic GeometrySystems and ControlTheoryTissues and OrgansTrading and Market Microstructure
0705.15320000000000...0000000000
0706.13730000000000...0000000000
0706.25090000000000...0000000100
0708.13390000000000...0000000000
0709.12720000000000...0000000000
\n", + "

5 rows × 138 columns

\n", + "
" + ], + "text/plain": [ + " Accelerator Physics Adaptation and Self-Organizing Systems \\\n", + "0705.1532 0 0 \n", + "0706.1373 0 0 \n", + "0706.2509 0 0 \n", + "0708.1339 0 0 \n", + "0709.1272 0 0 \n", + "\n", + " Algebraic Geometry Algebraic Topology Analysis of PDEs \\\n", + "0705.1532 0 0 0 \n", + "0706.1373 0 0 0 \n", + "0706.2509 0 0 0 \n", + "0708.1339 0 0 0 \n", + "0709.1272 0 0 0 \n", + "\n", + " Applications Artificial Intelligence Astrophysics of Galaxies \\\n", + "0705.1532 0 0 0 \n", + "0706.1373 0 0 0 \n", + "0706.2509 0 0 0 \n", + "0708.1339 0 0 0 \n", + "0709.1272 0 0 0 \n", + "\n", + " Atmospheric and Oceanic Physics Atomic Physics \\\n", + "0705.1532 0 0 \n", + "0706.1373 0 0 \n", + "0706.2509 0 0 \n", + "0708.1339 0 0 \n", + "0709.1272 0 0 \n", + "\n", + " ... Statistics Theory \\\n", + "0705.1532 ... 0 \n", + "0706.1373 ... 0 \n", + "0706.2509 ... 0 \n", + "0708.1339 ... 0 \n", + "0709.1272 ... 0 \n", + "\n", + " Strongly Correlated Electrons Subcellular Processes \\\n", + "0705.1532 0 0 \n", + "0706.1373 0 0 \n", + "0706.2509 0 0 \n", + "0708.1339 0 0 \n", + "0709.1272 0 0 \n", + "\n", + " Superconductivity Symbolic Computation Symplectic Geometry \\\n", + "0705.1532 0 0 0 \n", + "0706.1373 0 0 0 \n", + "0706.2509 0 0 0 \n", + "0708.1339 0 0 0 \n", + "0709.1272 0 0 0 \n", + "\n", + " Systems and Control Theory Tissues and Organs \\\n", + "0705.1532 0 0 0 \n", + "0706.1373 0 0 0 \n", + "0706.2509 0 1 0 \n", + "0708.1339 0 0 0 \n", + "0709.1272 0 0 0 \n", + "\n", + " Trading and Market Microstructure \n", + "0705.1532 0 \n", + "0706.1373 0 \n", + "0706.2509 0 \n", + "0708.1339 0 \n", + "0709.1272 0 \n", + "\n", + "[5 rows x 138 columns]" + ] + }, + "execution_count": 161, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "### Dictator" + "Dum_Sub_Cat.head()" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 162, "metadata": {}, "outputs": [], "source": [ - "def dictator(abs_list):\n", - " '''\n", - " Make a dictionary from all the abstract in the list\n", - " '''\n", - " return dictionary" + "List_Index = Dum_Sub_Cat.index.tolist()" ] }, { - "cell_type": "markdown", + "cell_type": "code", + "execution_count": 163, "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "825007" + ] + }, + "execution_count": 163, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "### Vectorizor" + "len(List_Index)" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 164, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'0706.1373'" + ] + }, + "execution_count": 164, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "List_Index[1]" + ] + }, + { + "cell_type": "code", + "execution_count": 165, + "metadata": {}, + "outputs": [], + "source": [ + "Val = np.array(Dum_Sub_Cat)" + ] + }, + { + "cell_type": "code", + "execution_count": 166, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "array([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n", + " 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n", + " 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n", + " 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n", + " 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n", + " 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n", + " 0, 0, 0, 0, 0, 0], dtype=uint8)" + ] + }, + "execution_count": 166, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "Val[1]" + ] + }, + { + "cell_type": "code", + "execution_count": 167, + "metadata": {}, + "outputs": [], + "source": [ + "np.savez_compressed('Cat_Vector', Id=List_Index , labels = Val )" + ] + }, + { + "cell_type": "code", + "execution_count": 171, "metadata": {}, "outputs": [], "source": [ - "def vectorizer(abs_list, dictionary):\n", - " '''\n", - " Takes an input abstract and returns the \n", - " vector corresponding to that.\n", - " '''\n", - " return vec" + "Cat_Vector = np.load('Cat_Vector.npz')\n" ] + }, + { + "cell_type": "code", + "execution_count": 172, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "array([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n", + " 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n", + " 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n", + " 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n", + " 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n", + " 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,\n", + " 0, 0, 0, 0, 0, 0], dtype=uint8)" + ] + }, + "execution_count": 172, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "Cat_Vector['labels'][1]" + ] + }, + { + "cell_type": "code", + "execution_count": 174, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'0706.1373'" + ] + }, + "execution_count": 174, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "Cat_Vector['Id'][1]" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] } ], "metadata": { @@ -143,20 +589,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.6.6" - }, - "toc": { - "base_numbering": 1, - "nav_menu": {}, - "number_sections": true, - "sideBar": true, - "skip_h1_title": false, - "title_cell": "Table of Contents", - "title_sidebar": "Contents", - "toc_cell": false, - "toc_position": {}, - "toc_section_display": true, - "toc_window_display": false + "version": "3.6.7" } }, "nbformat": 4,